diff --git a/.gitignore b/.gitignore index dbf67902588d..d57365426513 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,6 @@ # See the License for the specific language governing permissions and # limitations under the License. # -*.ipynb *.bak *.db *.pyc diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6aa8b240eaea..8731b8aa3d1b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -49,4 +49,5 @@ repos: rev: v2.4.1 # Use the sha or tag you want to point at hooks: - id: prettier + args: ['--ignore-path=./superset-frontend/.prettierignore'] files: 'superset-frontend' diff --git a/.rat-excludes b/.rat-excludes index cb1048419e14..a3ba1ece6f9f 100644 --- a/.rat-excludes +++ b/.rat-excludes @@ -59,5 +59,5 @@ tsconfig.tsbuildinfo .*iml .esprintrc .prettierignore -superset-frontend/packages/generator-superset -superset-frontend/temporary_superset_ui +generator-superset/* +temporary_superset_ui/* diff --git a/superset-frontend/.eslintignore b/superset-frontend/.eslintignore index 7d3533acb1f8..3f03d59f316c 100644 --- a/superset-frontend/.eslintignore +++ b/superset-frontend/.eslintignore @@ -28,3 +28,4 @@ src/dashboard/deprecated/* src/temp/* **/node_modules *.d.ts +temporary_superset_ui/**/* diff --git a/superset-frontend/.prettierignore b/superset-frontend/.prettierignore new file mode 100644 index 000000000000..ce9d951a69a3 --- /dev/null +++ b/superset-frontend/.prettierignore @@ -0,0 +1,26 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +coverage/ +esm/ +lib/ +tmp/ +node_modules/ +tsconfig.json +CHANGELOG.md +*.geojson +*-topo.json +temporary_superset_ui/ diff --git a/superset-frontend/jest.config.js b/superset-frontend/jest.config.js index 2d9529f69dd1..2347928dc25c 100644 --- a/superset-frontend/jest.config.js +++ b/superset-frontend/jest.config.js @@ -26,6 +26,7 @@ module.exports = { '^spec/(.*)$': '/spec/$1', }, testEnvironment: 'jsdom', + modulePathIgnorePatterns: ['/temporary_superset_ui'], setupFilesAfterEnv: ['/spec/helpers/setup.ts'], testURL: 'http://localhost', collectCoverageFrom: ['src/**/*.{js,jsx,ts,tsx}', '!**/*.stories.*'], diff --git a/superset-frontend/lerna.json b/superset-frontend/lerna.json new file mode 100644 index 000000000000..826c45d4419a --- /dev/null +++ b/superset-frontend/lerna.json @@ -0,0 +1,13 @@ +{ + "lerna": "3.2.1", + "npmClient": "npm", + "packages": ["packages/*", "plugins/*", "temporary_superset_ui/*"], + "useWorkspaces": true, + "version": "0.0.0", + "ignoreChanges": [ + "**/*.md", + "**/*.spec.tsx?", + "**/*.spec.jsx?", + "**/__mocks__/**" + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.eslintignore b/superset-frontend/temporary_superset_ui/superset-ui/.eslintignore new file mode 100644 index 000000000000..16544aacedef --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.eslintignore @@ -0,0 +1,9 @@ +coverage/ +node_modules/ +public/ +esm/ +lib/ +tmp/ +dist/ +temporary-plugins/ +storybook-static/ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.eslintrc.js b/superset-frontend/temporary_superset_ui/superset-ui/.eslintrc.js new file mode 100644 index 000000000000..5a0a24833176 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.eslintrc.js @@ -0,0 +1,297 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +module.exports = { + extends: [ + 'airbnb', + 'prettier', + 'prettier/react', + 'plugin:react-hooks/recommended', + ], + parser: '@babel/eslint-parser', + parserOptions: { + ecmaFeatures: { + experimentalObjectRestSpread: true, + }, + }, + env: { + browser: true, + }, + settings: { + 'import/resolver': { + webpack: {}, + node: { + extensions: ['.js', '.jsx', '.ts', '.tsx'], + }, + }, + // Allow core/src and core/test, not import modules from lib + 'import/internal-regex': /^@superset-ui\/core\/(src|test)/, + 'import/core-modules': [ + '@superset-ui/core', + '@superset-ui/chart-controls', + '@superset-ui/legacy-plugin-chart-calendar', + '@superset-ui/legacy-plugin-chart-chord', + '@superset-ui/legacy-plugin-chart-country-map', + '@superset-ui/legacy-plugin-chart-event-flow', + '@superset-ui/legacy-plugin-chart-force-directed', + '@superset-ui/legacy-plugin-chart-heatmap', + '@superset-ui/legacy-plugin-chart-histogram', + '@superset-ui/legacy-plugin-chart-horizon', + '@superset-ui/legacy-plugin-chart-map-box', + '@superset-ui/legacy-plugin-chart-paired-t-test', + '@superset-ui/legacy-plugin-chart-parallel-coordinates', + '@superset-ui/legacy-plugin-chart-partition', + '@superset-ui/legacy-plugin-chart-pivot-table', + '@superset-ui/legacy-plugin-chart-rose', + '@superset-ui/legacy-plugin-chart-sankey', + '@superset-ui/legacy-plugin-chart-sankey-loop', + '@superset-ui/legacy-plugin-chart-sunburst', + '@superset-ui/legacy-plugin-chart-time-table', + '@superset-ui/legacy-plugin-chart-treemap', + '@superset-ui/legacy-plugin-chart-world-map', + '@superset-ui/legacy-preset-chart-big-number', + '@superset-ui/legacy-preset-chart-nvd3', + '@superset-ui/plugin-chart-echarts', + '@superset-ui/plugin-chart-table', + '@superset-ui/plugin-chart-word-cloud', + '@superset-ui/preset-chart-xy', + ], + react: { + version: 'detect', + }, + }, + plugins: ['prettier', 'react'], + rules: { + camelcase: [ + 'error', + { + allow: ['^UNSAFE_'], + properties: 'never', + }, + ], + curly: 2, + 'class-methods-use-this': 0, + 'func-names': 0, + 'guard-for-in': 0, + 'import/extensions': [ + 'error', + { + '.js': 'always', + '.jsx': 'always', + '.ts': 'always', + '.tsx': 'always', + '.json': 'always', + }, + ], + 'import/no-cycle': 0, // re-enable up for discussion, might require some major refactors + 'import/prefer-default-export': 0, + indent: 0, + 'jsx-a11y/anchor-is-valid': 0, // disabled temporarily + 'jsx-a11y/click-events-have-key-events': 0, // re-enable up for discussion + 'jsx-a11y/mouse-events-have-key-events': 0, // re-enable up for discussion + 'new-cap': 0, + 'no-bitwise': 0, + 'no-continue': 0, + 'no-mixed-operators': 0, + 'no-multi-assign': 0, + 'no-multi-spaces': 0, + 'no-nested-ternary': 0, + 'no-prototype-builtins': 0, + 'no-restricted-properties': 0, + 'no-restricted-imports': [ + 'error', + { + paths: [ + { + name: 'antd', + message: + 'Please import Ant components from the index of common/components', + }, + ], + }, + ], + 'no-shadow': 0, // re-enable up for discussion + 'padded-blocks': 0, + 'prefer-arrow-callback': 0, + 'prefer-object-spread': 1, + 'prefer-destructuring': ['error', { object: true, array: false }], + 'react/destructuring-assignment': 0, // re-enable up for discussion + 'react/forbid-prop-types': 0, + 'react/jsx-filename-extension': [1, { extensions: ['.jsx', '.tsx'] }], + 'react/jsx-fragments': 1, + 'react/jsx-no-bind': 0, + 'react/jsx-props-no-spreading': 0, // re-enable up for discussion + 'react/no-array-index-key': 0, + 'react/no-string-refs': 0, + 'react/no-unescaped-entities': 0, + 'react/no-unused-prop-types': 0, + 'react/prop-types': 0, + 'react/require-default-props': 0, + 'react/static-property-placement': 0, // disabled temporarily + 'prettier/prettier': 'error', + }, + overrides: [ + { + files: ['*.ts', '*.tsx'], + parser: '@typescript-eslint/parser', + extends: [ + 'airbnb', + 'plugin:@typescript-eslint/recommended', + 'prettier', + 'prettier/@typescript-eslint', + 'prettier/react', + ], + plugins: ['@typescript-eslint/eslint-plugin', 'prettier', 'react'], + rules: { + '@typescript-eslint/ban-ts-ignore': 0, + '@typescript-eslint/ban-ts-comment': 0, // disabled temporarily + '@typescript-eslint/ban-types': 0, // disabled temporarily + '@typescript-eslint/no-empty-function': 0, + '@typescript-eslint/no-explicit-any': 0, + '@typescript-eslint/no-use-before-define': 1, + '@typescript-eslint/no-non-null-assertion': 0, // disabled temporarily + '@typescript-eslint/explicit-function-return-type': 0, + '@typescript-eslint/explicit-module-boundary-types': 0, // re-enable up for discussion + camelcase: 0, + 'class-methods-use-this': 0, + 'func-names': 0, + 'guard-for-in': 0, + // there is a bug related to re-exports with this rule + // which doesn't seem to have been fixed: https://github.com/benmosher/eslint-plugin-import/issues/1460 + 'import/named': 0, + 'import/no-cycle': 0, // re-enable up for discussion, might require some major refactors + 'import/extensions': [ + 'error', + { + '.ts': 'always', + '.tsx': 'always', + '.json': 'always', + }, + ], + 'import/no-named-as-default-member': 0, + 'import/prefer-default-export': 0, + indent: 0, + 'jsx-a11y/anchor-is-valid': 0, // disabled temporarily + 'jsx-a11y/click-events-have-key-events': 0, // re-enable up for discussion + 'jsx-a11y/mouse-events-have-key-events': 0, // re-enable up for discussion + 'new-cap': 0, + 'no-bitwise': 0, + 'no-continue': 0, + 'no-mixed-operators': 0, + 'no-multi-assign': 0, + 'no-multi-spaces': 0, + 'no-nested-ternary': 0, + 'no-prototype-builtins': 0, + 'no-restricted-properties': 0, + 'no-shadow': 0, // re-enable up for discussion + 'no-use-before-define': 0, // disabled temporarily + 'padded-blocks': 0, + 'prefer-arrow-callback': 0, + 'prefer-destructuring': ['error', { object: true, array: false }], + 'react/destructuring-assignment': 0, // re-enable up for discussion + 'react/forbid-prop-types': 0, + 'react/jsx-filename-extension': [1, { extensions: ['.jsx', '.tsx'] }], + 'react/jsx-fragments': 1, + 'react/jsx-no-bind': 0, + 'react/jsx-props-no-spreading': 0, // re-enable up for discussion + 'react/no-array-index-key': 0, + 'react/no-string-refs': 0, + 'react/no-unescaped-entities': 0, + 'react/no-unused-prop-types': 0, + 'react/prop-types': 0, + 'react/require-default-props': 0, + 'react/static-property-placement': 0, // re-enable up for discussion + 'react/sort-comp': 0, + 'prettier/prettier': 'error', + }, + settings: { + 'import/resolver': { + webpack: {}, + typescript: {}, + }, + react: { + version: 'detect', + }, + }, + }, + { + files: ['*.stories.jsx', '*.stories.tsx'], + rules: { + // this is to keep eslint from complaining about storybook addons, + // since they are included as dev dependencies rather than direct dependencies. + 'import/no-extraneous-dependencies': [ + 'error', + { devDependencies: true }, + ], + }, + }, + { + files: ['*.d.ts'], + rules: { + 'max-classes-per-file': 0, + }, + }, + { + files: [ + '*.test.ts', + '*.test.tsx', + '*.test.js', + '*.test.jsx', + 'fixtures.*', + ], + plugins: ['jest', 'jest-dom', 'no-only-tests', 'testing-library'], + env: { + 'jest/globals': true, + }, + extends: ['plugin:jest/recommended', 'plugin:testing-library/react'], + rules: { + 'import/no-extraneous-dependencies': 0, + 'jest/consistent-test-it': 'error', + 'jest/no-try-expect': 0, + 'max-classes-per-file': 0, + 'no-only-tests/no-only-tests': 'error', + 'prefer-promise-reject-errors': 0, + }, + }, + { + files: ['webpack*.js', '.*rc.js', '*.config.js'], + env: { + node: true, + }, + settings: { + 'import/resolver': { + node: {}, + }, + }, + }, + { + files: './packages/generator-superset/**/*.test.*', + env: { + node: true, + }, + settings: { + 'import/resolver': { + node: {}, + }, + }, + rules: { + 'jest/expect-expect': 0, + }, + }, + ], +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.github/CODEOWNERS b/superset-frontend/temporary_superset_ui/superset-ui/.github/CODEOWNERS new file mode 100644 index 000000000000..552e0ade96a9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.github/CODEOWNERS @@ -0,0 +1,12 @@ +# See https://help.github.com/articles/about-codeowners/ +# for more info about CODEOWNERS file + +# It uses the same pattern rule for gitignore file +# https://git-scm.com/docs/gitignore#_pattern_format + +# These owners will be the default owners for everything in +# the repo. Unless a later match takes precedence, +# these users/team will be requested for review +# when someone opens a pull request. + +* @apache-superset/embeddable-charts-team diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.github/ISSUE_TEMPLATE/bug_report.md b/superset-frontend/temporary_superset_ui/superset-ui/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000000..e255a1a44a38 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,35 @@ +--- +name: Bug report +about: Create a report to help us improve +--- + +### Describe the bug + +A clear and concise description of what the bug is. + +### To Reproduce + +Steps to reproduce the behavior: + +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +### Expected behavior + +A clear and concise description of what you expected to happen. + +### Screenshots + +If applicable, add screenshots to help explain your problem. + +### Environment (please complete the following information): + +- superset-ui version: [e.g. v0.5.0] +- Node version: `node -v` +- npm version: `npm -v` + +### Additional context + +Add any other context about the problem here. diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.github/ISSUE_TEMPLATE/feature_request.md b/superset-frontend/temporary_superset_ui/superset-ui/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000000..71e1041b340a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,18 @@ +--- +name: Feature request +about: Suggest an idea for this project +--- + +### Is your feature request related to a problem? Please describe. + +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +### Describe the solution you'd like + +A clear and concise description of what you want to happen. + +### Describe alternatives you've considered + +A clear and concise description of any alternative solutions or features you've considered. + +### Additional context\*\* Add any other context or screenshots about the feature request here. diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.github/ISSUE_TEMPLATE/question.md b/superset-frontend/temporary_superset_ui/superset-ui/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 000000000000..ea12e70ebe6c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,8 @@ +--- +name: Question +about: Ask for help with something. +--- + +Your question. + +- How do I xxx? diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.github/PULL_REQUEST_TEMPLATE.md b/superset-frontend/temporary_superset_ui/superset-ui/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000000..f982aa397d5f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,9 @@ +💔 Breaking Changes + +🏆 Enhancements + +📜 Documentation + +🐛 Bug Fix + +🏠 Internal diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.github/config.yml b/superset-frontend/temporary_superset_ui/superset-ui/.github/config.yml new file mode 100644 index 000000000000..47ca920e29ac --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.github/config.yml @@ -0,0 +1,14 @@ +# Configuration for request-info - https://github.com/behaviorbot/request-info + +# *Required* Comment to reply with +requestInfoReplyComment: > + We would appreciate it if you could provide us with more info about this issue/pr! + +# *OPTIONAL* default titles to check against for lack of descriptiveness +# MUST BE ALL LOWERCASE +requestInfoDefaultTitles: + - update readme.md + - updates + +# *OPTIONAL* Label to be added to Issues and Pull Requests with insufficient information given +requestInfoLabelToAdd: needs-more-info diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.github/dependabot.yml b/superset-frontend/temporary_superset_ui/superset-ui/.github/dependabot.yml new file mode 100644 index 000000000000..2aebc6c40c67 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.github/dependabot.yml @@ -0,0 +1,53 @@ +version: 2 +updates: + - package-ecosystem: npm + directory: '/' + schedule: + interval: daily + open-pull-requests-limit: 10 + ignore: + - dependency-name: bootstrap + versions: + - '>= 4.a, < 5' + - dependency-name: d3 + versions: + - '>= 6.a, < 7' + - dependency-name: '@types/jsdom' + versions: + - '> 12.2.4' + - dependency-name: '@types/react' + versions: + - 17.0.1 + - 17.0.2 + - 17.0.3 + - dependency-name: '@babel/preset-env' + versions: + - 7.12.13 + - 7.13.10 + - 7.13.12 + - 7.13.9 + - dependency-name: '@babel/compat-data' + versions: + - 7.12.13 + - 7.13.0 + - 7.13.11 + - 7.13.12 + - 7.13.6 + - 7.13.8 + - dependency-name: elliptic + versions: + - 6.5.3 + - 6.5.4 + - dependency-name: yeoman-test + versions: + - 4.0.0 + - 5.0.1 + - dependency-name: '@emotion/core' + versions: + - 11.0.0 + - dependency-name: react-error-boundary + versions: + - 3.1.0 + - dependency-name: jquery + versions: + - 3.5.0 diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.github/issue_label_bot.yaml b/superset-frontend/temporary_superset_ui/superset-ui/.github/issue_label_bot.yaml new file mode 100644 index 000000000000..0e99f5fd897b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.github/issue_label_bot.yaml @@ -0,0 +1,4 @@ +label-alias: + bug: '#bug' + feature_request: '#enhancement' + question: '#question' diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.github/semantic.yml b/superset-frontend/temporary_superset_ui/superset-ui/.github/semantic.yml new file mode 100644 index 000000000000..4168a3cdeed9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.github/semantic.yml @@ -0,0 +1,2 @@ +# Always validate the PR title, and ignore the commits +titleOnly: true diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/chromatic.yml b/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/chromatic.yml new file mode 100644 index 000000000000..7366d500e767 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/chromatic.yml @@ -0,0 +1,44 @@ +name: Upload Chomatic Build + +on: + workflow_run: + workflows: ['build-and-test-workflow'] + types: + - completed + +jobs: + upload: + runs-on: ubuntu-latest + if: > + ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion + == 'success' }} + steps: + - name: 'Download artifact' + uses: actions/github-script@v3.1.0 + with: + script: | + var artifacts = await github.actions.listWorkflowRunArtifacts({ + owner: context.repo.owner, + repo: context.repo.repo, + run_id: ${{github.event.workflow_run.id }}, + }); + var matchArtifact = artifacts.data.artifacts.filter((artifact) => { + return artifact.name == "storybookBuild" + })[0]; + var download = await github.actions.downloadArtifact({ + owner: context.repo.owner, + repo: context.repo.repo, + artifact_id: matchArtifact.id, + archive_format: 'zip', + }); + var fs = require('fs'); + fs.writeFileSync('${{github.workspace}}/storybookBuild.zip', Buffer.from(download.data)); + - run: unzip storybookBuild.zip + - name: Deploy to Chromatic + uses: chromaui/action@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} + storybookBuildDir: storybookBuild + # uncomment to automatically accept all chromatic changes + # autoAcceptChanges: true diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/ci.yml b/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/ci.yml new file mode 100644 index 000000000000..83e56a9b81d8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/ci.yml @@ -0,0 +1,69 @@ +name: build-and-test-workflow + +on: + push: + branches: + - '*' + tags-ignore: + - 'trigger-patch-test.*' + pull_request: + +jobs: + build: + name: Build and test + runs-on: ubuntu-20.04 + env: + CODECOV_TOKEN: '${{ secrets.CODECOV_TOKEN }}' + strategy: + matrix: + node-version: [16] + + steps: + - uses: actions/checkout@v2 + with: + # pulls all commits (needed for lerna / semantic release to correctly version) + fetch-depth: '0' + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + + - name: Cache npm + uses: actions/cache@v1 + with: + path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS + key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.OS }}-node- + ${{ runner.OS }}- + + - name: Get npm cache directory path + id: npm-cache-dir-path + run: echo "::set-output name=dir::$(npm config get cache)" + - name: Cache npm + uses: actions/cache@v1 + id: npm-cache # use this to check for `cache-hit` (`steps.npm-cache.outputs.cache-hit != 'true'`) + with: + path: ${{ steps.npm-cache-dir-path.outputs.dir }} + key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-npm- + + - name: Install dependencies + run: npm ci + - name: Run ESLint + run: npm run lint --quiet + - name: Build packages + run: npm run build + - name: Run unit tests + run: npm run test + - name: Build Storybook + run: npm run build-storybook + - uses: actions/upload-artifact@v2 + with: + name: storybookBuild + path: ./packages/superset-ui-demo/storybook-static/ + + - name: Report code coverage + run: .github/workflows/codecov.sh diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/codecov.sh b/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/codecov.sh new file mode 100755 index 000000000000..5e9f12438421 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/codecov.sh @@ -0,0 +1,1903 @@ +#!/usr/bin/env bash +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +# +# Note: this script was fetched from https://codecov.io/bash in response +# to a breach that occurred around it in Jan 2021 (https://about.codecov.io/security-update/) +# This script should probably be periodically updated and reviewed from the above URL :) +# + +set -e +o pipefail + +VERSION="1.0.1" + +codecov_flags=( ) +url="https://codecov.io" +env="$CODECOV_ENV" +service="" +token="" +search_in="" +# shellcheck disable=SC2153 +flags="$CODECOV_FLAGS" +exit_with=0 +curlargs="" +curlawsargs="" +dump="0" +clean="0" +curl_s="-s" +name="$CODECOV_NAME" +include_cov="" +exclude_cov="" +ddp="$HOME/Library/Developer/Xcode/DerivedData" +xp="" +files="" +save_to="" +direct_file_upload="" +cacert="$CODECOV_CA_BUNDLE" +gcov_ignore="-not -path './bower_components/**' -not -path './node_modules/**' -not -path './vendor/**'" +gcov_include="" + +ft_gcov="1" +ft_coveragepy="1" +ft_fix="1" +ft_search="1" +ft_s3="1" +ft_network="1" +ft_xcodellvm="1" +ft_xcodeplist="0" +ft_gcovout="1" +ft_html="0" +ft_yaml="0" + +_git_root=$(git rev-parse --show-toplevel 2>/dev/null || hg root 2>/dev/null || echo "$PWD") +git_root="$_git_root" +remote_addr="" +if [ "$git_root" = "$PWD" ]; +then + git_root="." +fi + +branch_o="" +build_o="" +commit_o="" +pr_o="" +prefix_o="" +network_filter_o="" +search_in_o="" +slug_o="" +tag_o="" +url_o="" +git_ls_files_recurse_submodules_o="" +package="bash" + +commit="$VCS_COMMIT_ID" +branch="$VCS_BRANCH_NAME" +pr="$VCS_PULL_REQUEST" +slug="$VCS_SLUG" +tag="$VCS_TAG" +build_url="$CI_BUILD_URL" +build="$CI_BUILD_ID" +job="$CI_JOB_ID" + +beta_xcode_partials="" + +proj_root="$git_root" +gcov_exe="gcov" +gcov_arg="" + +b="\033[0;36m" +g="\033[0;32m" +r="\033[0;31m" +e="\033[0;90m" +y="\033[0;33m" +x="\033[0m" + +show_help() { +cat << EOF + + Codecov Bash $VERSION + + Global report uploading tool for Codecov + Documentation at https://docs.codecov.io/docs + Contribute at https://github.com/codecov/codecov-bash + + + -h Display this help and exit + -f FILE Target file(s) to upload + + -f "path/to/file" only upload this file + skips searching unless provided patterns below + + -f '!*.bar' ignore all files at pattern *.bar + -f '*.foo' include all files at pattern *.foo + Must use single quotes. + This is non-exclusive, use -s "*.foo" to match specific paths. + + -s DIR Directory to search for coverage reports. + Already searches project root and artifact folders. + -t TOKEN Set the private repository token + (option) set environment variable CODECOV_TOKEN=:uuid + + -t @/path/to/token_file + -t uuid + + -n NAME Custom defined name of the upload. Visible in Codecov UI + + -e ENV Specify environment variables to be included with this build + Also accepting environment variables: CODECOV_ENV=VAR,VAR2 + + -e VAR,VAR2 + + -k prefix Prefix filepaths to help resolve path fixing + + -i prefix Only include files in the network with a certain prefix. Useful for upload-specific path fixing + + -X feature Toggle functionalities + + -X gcov Disable gcov + -X coveragepy Disable python coverage + -X fix Disable report fixing + -X search Disable searching for reports + -X xcode Disable xcode processing + -X network Disable uploading the file network + -X gcovout Disable gcov output + -X html Enable coverage for HTML files + -X recursesubs Enable recurse submodules in git projects when searching for source files + -X yaml Enable coverage for YAML files + + -N The commit SHA of the parent for which you are uploading coverage. If not present, + the parent will be determined using the API of your repository provider. + When using the repository provider's API, the parent is determined via finding + the closest ancestor to the commit. + + -R root dir Used when not in git/hg project to identify project root directory + -F flag Flag the upload to group coverage metrics + + -F unittests This upload is only unittests + -F integration This upload is only integration tests + -F ui,chrome This upload is Chrome - UI tests + + -c Move discovered coverage reports to the trash + -z FILE Upload specified file directly to Codecov and bypass all report generation. + This is inteded to be used only with a pre-formatted Codecov report and is not + expected to work under any other circumstances. + -Z Exit with 1 if not successful. Default will Exit with 0 + + -- xcode -- + -D Custom Derived Data Path for Coverage.profdata and gcov processing + Default '~/Library/Developer/Xcode/DerivedData' + -J Specify packages to build coverage. Uploader will only build these packages. + This can significantly reduces time to build coverage reports. + + -J 'MyAppName' Will match "MyAppName" and "MyAppNameTests" + -J '^ExampleApp$' Will match only "ExampleApp" not "ExampleAppTests" + + -- gcov -- + -g GLOB Paths to ignore during gcov gathering + -G GLOB Paths to include during gcov gathering + -p dir Project root directory + Also used when preparing gcov + -x gcovexe gcov executable to run. Defaults to 'gcov' + -a gcovargs extra arguments to pass to gcov + + -- Override CI Environment Variables -- + These variables are automatically detected by popular CI providers + + -B branch Specify the branch name + -C sha Specify the commit sha + -P pr Specify the pull request number + -b build Specify the build number + -T tag Specify the git tag + + -- Enterprise -- + -u URL Set the target url for Enterprise customers + Not required when retrieving the bash uploader from your CCE + (option) Set environment variable CODECOV_URL=https://my-hosted-codecov.com + -r SLUG owner/repo slug used instead of the private repo token in Enterprise + (option) set environment variable CODECOV_SLUG=:owner/:repo + (option) set in your codecov.yml "codecov.slug" + -S PATH File path to your cacert.pem file used to verify ssl with Codecov Enterprise (optional) + (option) Set environment variable: CODECOV_CA_BUNDLE="/path/to/ca.pem" + -U curlargs Extra curl arguments to communicate with Codecov. e.g., -U "--proxy http://http-proxy" + -A curlargs Extra curl arguments to communicate with AWS. + + -- Debugging -- + -d Don't upload, but dump upload file to stdout + -q PATH Write upload file to path + -K Remove color from the output + -v Verbose mode + +EOF +} + + +say() { + echo -e "$1" +} + + +urlencode() { + echo "$1" | curl -Gso /dev/null -w "%{url_effective}" --data-urlencode @- "" | cut -c 3- | sed -e 's/%0A//' +} + +swiftcov() { + _dir=$(dirname "$1" | sed 's/\(Build\).*/\1/g') + for _type in app framework xctest + do + find "$_dir" -name "*.$_type" | while read -r f + do + _proj=${f##*/} + _proj=${_proj%."$_type"} + if [ "$2" = "" ] || [ "$(echo "$_proj" | grep -i "$2")" != "" ]; + then + say " $g+$x Building reports for $_proj $_type" + dest=$([ -f "$f/$_proj" ] && echo "$f/$_proj" || echo "$f/Contents/MacOS/$_proj") + # shellcheck disable=SC2001 + _proj_name=$(echo "$_proj" | sed -e 's/[[:space:]]//g') + # shellcheck disable=SC2086 + xcrun llvm-cov show $beta_xcode_partials -instr-profile "$1" "$dest" > "$_proj_name.$_type.coverage.txt" \ + || say " ${r}x>${x} llvm-cov failed to produce results for $dest" + fi + done + done +} + + +# Credits to: https://gist.github.com/pkuczynski/8665367 +parse_yaml() { + local prefix=$2 + local s='[[:space:]]*' w='[a-zA-Z0-9_]*' + local fs + fs=$(echo @|tr @ '\034') + sed -ne "s|^\($s\)\($w\)$s:$s\"\(.*\)\"$s\$|\1$fs\2$fs\3|p" \ + -e "s|^\($s\)\($w\)$s:$s\(.*\)$s\$|\1$fs\2$fs\3|p" "$1" | + awk -F"$fs" '{ + indent = length($1)/2; + vname[indent] = $2; + for (i in vname) {if (i > indent) {delete vname[i]}} + if (length($3) > 0) { + vn=""; if (indent > 0) {vn=(vn)(vname[0])("_")} + printf("%s%s%s=\"%s\"\n", "'"$prefix"'",vn, $2, $3); + } + }' +} + +if [ $# != 0 ]; +then + while getopts "a:A:b:B:cC:dD:e:f:F:g:G:hi:J:k:Kn:p:P:Q:q:r:R:s:S:t:T:u:U:vx:X:Zz:N:-" o + do + codecov_flags+=( "$o" ) + case "$o" in + "-") + echo -e "${r}Long options are not supported${x}" + exit 2 + ;; + "?") + ;; + "N") + parent=$OPTARG + ;; + "a") + gcov_arg=$OPTARG + ;; + "A") + curlawsargs="$OPTARG" + ;; + "b") + build_o="$OPTARG" + ;; + "B") + branch_o="$OPTARG" + ;; + "c") + clean="1" + ;; + "C") + commit_o="$OPTARG" + ;; + "d") + dump="1" + ;; + "D") + ddp="$OPTARG" + ;; + "e") + env="$env,$OPTARG" + ;; + "f") + if [ "${OPTARG::1}" = "!" ]; + then + exclude_cov="$exclude_cov -not -path '${OPTARG:1}'" + + elif [[ "$OPTARG" = *"*"* ]]; + then + include_cov="$include_cov -or -path '$OPTARG'" + + else + ft_search=0 + if [ "$files" = "" ]; + then + files="$OPTARG" + else + files="$files +$OPTARG" + fi + fi + ;; + "F") + if [ "$flags" = "" ]; + then + flags="$OPTARG" + else + flags="$flags,$OPTARG" + fi + ;; + "g") + gcov_ignore="$gcov_ignore -not -path '$OPTARG'" + ;; + "G") + gcov_include="$gcov_include -path '$OPTARG'" + ;; + "h") + show_help + exit 0; + ;; + "i") + network_filter_o="$OPTARG" + ;; + "J") + ft_xcodellvm="1" + ft_xcodeplist="0" + if [ "$xp" = "" ]; + then + xp="$OPTARG" + else + xp="$xp\|$OPTARG" + fi + ;; + "k") + prefix_o=$(echo "$OPTARG" | sed -e 's:^/*::' -e 's:/*$::') + ;; + "K") + b="" + g="" + r="" + e="" + x="" + ;; + "n") + name="$OPTARG" + ;; + "p") + proj_root="$OPTARG" + ;; + "P") + pr_o="$OPTARG" + ;; + "Q") + # this is only meant for Codecov packages to overwrite + package="$OPTARG" + ;; + "q") + save_to="$OPTARG" + ;; + "r") + slug_o="$OPTARG" + ;; + "R") + git_root="$OPTARG" + ;; + "s") + if [ "$search_in_o" = "" ]; + then + search_in_o="$OPTARG" + else + search_in_o="$search_in_o $OPTARG" + fi + ;; + "S") + # shellcheck disable=SC2089 + cacert="--cacert \"$OPTARG\"" + ;; + "t") + if [ "${OPTARG::1}" = "@" ]; + then + token=$(< "${OPTARG:1}" tr -d ' \n') + else + token="$OPTARG" + fi + ;; + "T") + tag_o="$OPTARG" + ;; + "u") + url_o=$(echo "$OPTARG" | sed -e 's/\/$//') + ;; + "U") + curlargs="$OPTARG" + ;; + "v") + set -x + curl_s="" + ;; + "x") + gcov_exe=$OPTARG + ;; + "X") + if [ "$OPTARG" = "gcov" ]; + then + ft_gcov="0" + elif [ "$OPTARG" = "coveragepy" ] || [ "$OPTARG" = "py" ]; + then + ft_coveragepy="0" + elif [ "$OPTARG" = "gcovout" ]; + then + ft_gcovout="0" + elif [ "$OPTARG" = "xcodellvm" ]; + then + ft_xcodellvm="1" + ft_xcodeplist="0" + elif [ "$OPTARG" = "fix" ] || [ "$OPTARG" = "fixes" ]; + then + ft_fix="0" + elif [ "$OPTARG" = "xcode" ]; + then + ft_xcodellvm="0" + ft_xcodeplist="0" + elif [ "$OPTARG" = "search" ]; + then + ft_search="0" + elif [ "$OPTARG" = "xcodepartials" ]; + then + beta_xcode_partials="-use-color" + elif [ "$OPTARG" = "network" ]; + then + ft_network="0" + elif [ "$OPTARG" = "s3" ]; + then + ft_s3="0" + elif [ "$OPTARG" = "html" ]; + then + ft_html="1" + elif [ "$OPTARG" = "recursesubs" ]; + then + git_ls_files_recurse_submodules_o="--recurse-submodules" + elif [ "$OPTARG" = "yaml" ]; + then + ft_yaml="1" + fi + ;; + "Z") + exit_with=1 + ;; + "z") + direct_file_upload="$OPTARG" + ft_gcov="0" + ft_coveragepy="0" + ft_fix="0" + ft_search="0" + ft_network="0" + ft_xcodellvm="0" + ft_gcovout="0" + include_cov="" + ;; + *) + echo -e "${r}Unexpected flag not supported${x}" + ;; + esac + done +fi + +say " + _____ _ + / ____| | | +| | ___ __| | ___ ___ _____ __ +| | / _ \\ / _\` |/ _ \\/ __/ _ \\ \\ / / +| |___| (_) | (_| | __/ (_| (_) \\ V / + \\_____\\___/ \\__,_|\\___|\\___\\___/ \\_/ + Bash-$VERSION + +" + +# check for installed tools +# git/hg +if [ "$direct_file_upload" = "" ]; +then + if [ -x "$(command -v git)" ]; + then + say "$b==>$x $(git --version) found" + else + say "$y==>$x git not installed, testing for mercurial" + if [ -x "$(command -v hg)" ]; + then + say "$b==>$x $(hg --version) found" + else + say "$r==>$x git nor mercurial are installed. Uploader may fail or have unintended consequences" + fi + fi +fi +# curl +if [ -x "$(command -v curl)" ]; +then + say "$b==>$x $(curl --version)" +else + say "$r==>$x curl not installed. Exiting." + exit ${exit_with}; +fi + +search_in="$proj_root" + +#shellcheck disable=SC2154 +if [ "$JENKINS_URL" != "" ]; +then + say "$e==>$x Jenkins CI detected." + # https://wiki.jenkins-ci.org/display/JENKINS/Building+a+software+project + # https://wiki.jenkins-ci.org/display/JENKINS/GitHub+pull+request+builder+plugin#GitHubpullrequestbuilderplugin-EnvironmentVariables + service="jenkins" + + # shellcheck disable=SC2154 + if [ "$ghprbSourceBranch" != "" ]; + then + branch="$ghprbSourceBranch" + elif [ "$GIT_BRANCH" != "" ]; + then + branch="$GIT_BRANCH" + elif [ "$BRANCH_NAME" != "" ]; + then + branch="$BRANCH_NAME" + fi + + # shellcheck disable=SC2154 + if [ "$ghprbActualCommit" != "" ]; + then + commit="$ghprbActualCommit" + elif [ "$GIT_COMMIT" != "" ]; + then + commit="$GIT_COMMIT" + fi + + # shellcheck disable=SC2154 + if [ "$ghprbPullId" != "" ]; + then + pr="$ghprbPullId" + elif [ "$CHANGE_ID" != "" ]; + then + pr="$CHANGE_ID" + fi + + build="$BUILD_NUMBER" + # shellcheck disable=SC2153 + build_url=$(urlencode "$BUILD_URL") + +elif [ "$CI" = "true" ] && [ "$TRAVIS" = "true" ] && [ "$SHIPPABLE" != "true" ]; +then + say "$e==>$x Travis CI detected." + # https://docs.travis-ci.com/user/environment-variables/ + service="travis" + commit="${TRAVIS_PULL_REQUEST_SHA:-$TRAVIS_COMMIT}" + build="$TRAVIS_JOB_NUMBER" + pr="$TRAVIS_PULL_REQUEST" + job="$TRAVIS_JOB_ID" + slug="$TRAVIS_REPO_SLUG" + env="$env,TRAVIS_OS_NAME" + tag="$TRAVIS_TAG" + if [ "$TRAVIS_BRANCH" != "$TRAVIS_TAG" ]; + then + branch="${TRAVIS_PULL_REQUEST_BRANCH:-$TRAVIS_BRANCH}" + fi + + language=$(compgen -A variable | grep "^TRAVIS_.*_VERSION$" | head -1) + if [ "$language" != "" ]; + then + env="$env,${!language}" + fi + +elif [ "$CODEBUILD_CI" = "true" ]; +then + say "$e==>$x AWS Codebuild detected." + # https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-env-vars.html + service="codebuild" + commit="$CODEBUILD_RESOLVED_SOURCE_VERSION" + build="$CODEBUILD_BUILD_ID" + branch="$(echo "$CODEBUILD_WEBHOOK_HEAD_REF" | sed 's/^refs\/heads\///')" + if [ "${CODEBUILD_SOURCE_VERSION/pr}" = "$CODEBUILD_SOURCE_VERSION" ] ; then + pr="false" + else + pr="$(echo "$CODEBUILD_SOURCE_VERSION" | sed 's/^pr\///')" + fi + job="$CODEBUILD_BUILD_ID" + slug="$(echo "$CODEBUILD_SOURCE_REPO_URL" | sed 's/^.*:\/\/[^\/]*\///' | sed 's/\.git$//')" + +elif [ "$CI" = "true" ] && [ "$CI_NAME" = "codeship" ]; +then + say "$e==>$x Codeship CI detected." + # https://www.codeship.io/documentation/continuous-integration/set-environment-variables/ + service="codeship" + branch="$CI_BRANCH" + build="$CI_BUILD_NUMBER" + build_url=$(urlencode "$CI_BUILD_URL") + commit="$CI_COMMIT_ID" + +elif [ -n "$CF_BUILD_URL" ] && [ -n "$CF_BUILD_ID" ]; +then + say "$e==>$x Codefresh CI detected." + # https://docs.codefresh.io/v1.0/docs/variables + service="codefresh" + branch="$CF_BRANCH" + build="$CF_BUILD_ID" + build_url=$(urlencode "$CF_BUILD_URL") + commit="$CF_REVISION" + +elif [ "$TEAMCITY_VERSION" != "" ]; +then + say "$e==>$x TeamCity CI detected." + # https://confluence.jetbrains.com/display/TCD8/Predefined+Build+Parameters + # https://confluence.jetbrains.com/plugins/servlet/mobile#content/view/74847298 + if [ "$TEAMCITY_BUILD_BRANCH" = '' ]; + then + echo " Teamcity does not automatically make build parameters available as environment variables." + echo " Add the following environment parameters to the build configuration" + echo " env.TEAMCITY_BUILD_BRANCH = %teamcity.build.branch%" + echo " env.TEAMCITY_BUILD_ID = %teamcity.build.id%" + echo " env.TEAMCITY_BUILD_URL = %teamcity.serverUrl%/viewLog.html?buildId=%teamcity.build.id%" + echo " env.TEAMCITY_BUILD_COMMIT = %system.build.vcs.number%" + echo " env.TEAMCITY_BUILD_REPOSITORY = %vcsroot..url%" + fi + service="teamcity" + branch="$TEAMCITY_BUILD_BRANCH" + build="$TEAMCITY_BUILD_ID" + build_url=$(urlencode "$TEAMCITY_BUILD_URL") + if [ "$TEAMCITY_BUILD_COMMIT" != "" ]; + then + commit="$TEAMCITY_BUILD_COMMIT" + else + commit="$BUILD_VCS_NUMBER" + fi + remote_addr="$TEAMCITY_BUILD_REPOSITORY" + +elif [ "$CI" = "true" ] && [ "$CIRCLECI" = "true" ]; +then + say "$e==>$x Circle CI detected." + # https://circleci.com/docs/environment-variables + service="circleci" + branch="$CIRCLE_BRANCH" + build="$CIRCLE_BUILD_NUM" + job="$CIRCLE_NODE_INDEX" + if [ "$CIRCLE_PROJECT_REPONAME" != "" ]; + then + slug="$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME" + else + # git@github.com:owner/repo.git + slug="${CIRCLE_REPOSITORY_URL##*:}" + # owner/repo.git + slug="${slug%%.git}" + fi + pr="${CIRCLE_PULL_REQUEST##*/}" + commit="$CIRCLE_SHA1" + search_in="$search_in $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS" + +elif [ "$BUDDYBUILD_BRANCH" != "" ]; +then + say "$e==>$x buddybuild detected" + # http://docs.buddybuild.com/v6/docs/custom-prebuild-and-postbuild-steps + service="buddybuild" + branch="$BUDDYBUILD_BRANCH" + build="$BUDDYBUILD_BUILD_NUMBER" + build_url="https://dashboard.buddybuild.com/public/apps/$BUDDYBUILD_APP_ID/build/$BUDDYBUILD_BUILD_ID" + # BUDDYBUILD_TRIGGERED_BY + if [ "$ddp" = "$HOME/Library/Developer/Xcode/DerivedData" ]; + then + ddp="/private/tmp/sandbox/${BUDDYBUILD_APP_ID}/bbtest" + fi + +elif [ "${bamboo_planRepository_revision}" != "" ]; +then + say "$e==>$x Bamboo detected" + # https://confluence.atlassian.com/bamboo/bamboo-variables-289277087.html#Bamboovariables-Build-specificvariables + service="bamboo" + commit="${bamboo_planRepository_revision}" + # shellcheck disable=SC2154 + branch="${bamboo_planRepository_branch}" + # shellcheck disable=SC2154 + build="${bamboo_buildNumber}" + # shellcheck disable=SC2154 + build_url="${bamboo_buildResultsUrl}" + # shellcheck disable=SC2154 + remote_addr="${bamboo_planRepository_repositoryUrl}" + +elif [ "$CI" = "true" ] && [ "$BITRISE_IO" = "true" ]; +then + # http://devcenter.bitrise.io/faq/available-environment-variables/ + say "$e==>$x Bitrise CI detected." + service="bitrise" + branch="$BITRISE_GIT_BRANCH" + build="$BITRISE_BUILD_NUMBER" + build_url=$(urlencode "$BITRISE_BUILD_URL") + pr="$BITRISE_PULL_REQUEST" + if [ "$GIT_CLONE_COMMIT_HASH" != "" ]; + then + commit="$GIT_CLONE_COMMIT_HASH" + fi + +elif [ "$CI" = "true" ] && [ "$SEMAPHORE" = "true" ]; +then + say "$e==>$x Semaphore CI detected." +# https://docs.semaphoreci.com/ci-cd-environment/environment-variables/#semaphore-related + service="semaphore" + branch="$SEMAPHORE_GIT_BRANCH" + build="$SEMAPHORE_WORKFLOW_NUMBER" + job="$SEMAPHORE_JOB_ID" + pr="$PULL_REQUEST_NUMBER" + slug="$SEMAPHORE_REPO_SLUG" + commit="$REVISION" + env="$env,SEMAPHORE_TRIGGER_SOURCE" + +elif [ "$CI" = "true" ] && [ "$BUILDKITE" = "true" ]; +then + say "$e==>$x Buildkite CI detected." + # https://buildkite.com/docs/guides/environment-variables + service="buildkite" + branch="$BUILDKITE_BRANCH" + build="$BUILDKITE_BUILD_NUMBER" + job="$BUILDKITE_JOB_ID" + build_url=$(urlencode "$BUILDKITE_BUILD_URL") + slug="$BUILDKITE_PROJECT_SLUG" + commit="$BUILDKITE_COMMIT" + if [[ "$BUILDKITE_PULL_REQUEST" != "false" ]]; then + pr="$BUILDKITE_PULL_REQUEST" + fi + tag="$BUILDKITE_TAG" + +elif [ "$CI" = "drone" ] || [ "$DRONE" = "true" ]; +then + say "$e==>$x Drone CI detected." + # http://docs.drone.io/env.html + # drone commits are not full shas + service="drone.io" + branch="$DRONE_BRANCH" + build="$DRONE_BUILD_NUMBER" + build_url=$(urlencode "${DRONE_BUILD_LINK}") + pr="$DRONE_PULL_REQUEST" + job="$DRONE_JOB_NUMBER" + tag="$DRONE_TAG" + +elif [ "$CI" = "true" ] && [ "$HEROKU_TEST_RUN_BRANCH" != "" ]; +then + say "$e==>$x Heroku CI detected." + # https://devcenter.heroku.com/articles/heroku-ci#environment-variables + service="heroku" + branch="$HEROKU_TEST_RUN_BRANCH" + build="$HEROKU_TEST_RUN_ID" + commit="$HEROKU_TEST_RUN_COMMIT_VERSION" + +elif [[ "$CI" = "true" || "$CI" = "True" ]] && [[ "$APPVEYOR" = "true" || "$APPVEYOR" = "True" ]]; +then + say "$e==>$x Appveyor CI detected." + # http://www.appveyor.com/docs/environment-variables + service="appveyor" + branch="$APPVEYOR_REPO_BRANCH" + build=$(urlencode "$APPVEYOR_JOB_ID") + pr="$APPVEYOR_PULL_REQUEST_NUMBER" + job="$APPVEYOR_ACCOUNT_NAME%2F$APPVEYOR_PROJECT_SLUG%2F$APPVEYOR_BUILD_VERSION" + slug="$APPVEYOR_REPO_NAME" + commit="$APPVEYOR_REPO_COMMIT" + build_url=$(urlencode "${APPVEYOR_URL}/project/${APPVEYOR_REPO_NAME}/builds/$APPVEYOR_BUILD_ID/job/${APPVEYOR_JOB_ID}") + +elif [ "$CI" = "true" ] && [ "$WERCKER_GIT_BRANCH" != "" ]; +then + say "$e==>$x Wercker CI detected." + # http://devcenter.wercker.com/articles/steps/variables.html + service="wercker" + branch="$WERCKER_GIT_BRANCH" + build="$WERCKER_MAIN_PIPELINE_STARTED" + slug="$WERCKER_GIT_OWNER/$WERCKER_GIT_REPOSITORY" + commit="$WERCKER_GIT_COMMIT" + +elif [ "$CI" = "true" ] && [ "$MAGNUM" = "true" ]; +then + say "$e==>$x Magnum CI detected." + # https://magnum-ci.com/docs/environment + service="magnum" + branch="$CI_BRANCH" + build="$CI_BUILD_NUMBER" + commit="$CI_COMMIT" + +elif [ "$SHIPPABLE" = "true" ]; +then + say "$e==>$x Shippable CI detected." + # http://docs.shippable.com/ci_configure/ + service="shippable" + # shellcheck disable=SC2153 + branch=$([ "$HEAD_BRANCH" != "" ] && echo "$HEAD_BRANCH" || echo "$BRANCH") + build="$BUILD_NUMBER" + build_url=$(urlencode "$BUILD_URL") + pr="$PULL_REQUEST" + slug="$REPO_FULL_NAME" + # shellcheck disable=SC2153 + commit="$COMMIT" + +elif [ "$TDDIUM" = "true" ]; +then + say "Solano CI detected." + # http://docs.solanolabs.com/Setup/tddium-set-environment-variables/ + service="solano" + commit="$TDDIUM_CURRENT_COMMIT" + branch="$TDDIUM_CURRENT_BRANCH" + build="$TDDIUM_TID" + pr="$TDDIUM_PR_ID" + +elif [ "$GREENHOUSE" = "true" ]; +then + say "$e==>$x Greenhouse CI detected." + # http://docs.greenhouseci.com/docs/environment-variables-files + service="greenhouse" + branch="$GREENHOUSE_BRANCH" + build="$GREENHOUSE_BUILD_NUMBER" + build_url=$(urlencode "$GREENHOUSE_BUILD_URL") + pr="$GREENHOUSE_PULL_REQUEST" + commit="$GREENHOUSE_COMMIT" + search_in="$search_in $GREENHOUSE_EXPORT_DIR" + +elif [ "$GITLAB_CI" != "" ]; +then + say "$e==>$x GitLab CI detected." + # http://doc.gitlab.com/ce/ci/variables/README.html + service="gitlab" + branch="${CI_BUILD_REF_NAME:-$CI_COMMIT_REF_NAME}" + build="${CI_BUILD_ID:-$CI_JOB_ID}" + remote_addr="${CI_BUILD_REPO:-$CI_REPOSITORY_URL}" + commit="${CI_BUILD_REF:-$CI_COMMIT_SHA}" + slug="${CI_PROJECT_PATH}" + +elif [ "$GITHUB_ACTIONS" != "" ]; +then + say "$e==>$x GitHub Actions detected." + say " Env vars used:" + say " -> GITHUB_ACTIONS: ${GITHUB_ACTIONS}" + say " -> GITHUB_HEAD_REF: ${GITHUB_HEAD_REF}" + say " -> GITHUB_REF: ${GITHUB_REF}" + say " -> GITHUB_REPOSITORY: ${GITHUB_REPOSITORY}" + say " -> GITHUB_RUN_ID: ${GITHUB_RUN_ID}" + say " -> GITHUB_SHA: ${GITHUB_SHA}" + say " -> GITHUB_WORKFLOW: ${GITHUB_WORKFLOW}" + + # https://github.com/features/actions + service="github-actions" + + # https://help.github.com/en/articles/virtual-environments-for-github-actions#environment-variables + branch="${GITHUB_REF#refs/heads/}" + if [ "$GITHUB_HEAD_REF" != "" ]; + then + # PR refs are in the format: refs/pull/7/merge + pr="${GITHUB_REF#refs/pull/}" + pr="${pr%/merge}" + branch="${GITHUB_HEAD_REF}" + fi + commit="${GITHUB_SHA}" + slug="${GITHUB_REPOSITORY}" + build="${GITHUB_RUN_ID}" + build_url=$(urlencode "http://github.com/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}") + job="$(urlencode "${GITHUB_WORKFLOW}")" + + # actions/checkout runs in detached HEAD + mc= + if [ -n "$pr" ] && [ "$pr" != false ] && [ "$commit_o" == "" ]; + then + mc=$(git show --no-patch --format="%P" 2>/dev/null || echo "") + + if [[ "$mc" =~ ^[a-z0-9]{40}[[:space:]][a-z0-9]{40}$ ]]; + then + mc=$(echo "$mc" | cut -d' ' -f2) + say " Fixing merge commit SHA $commit -> $mc" + commit=$mc + elif [[ "$mc" = "" ]]; + then + say "$r-> Issue detecting commit SHA. Please run actions/checkout with fetch-depth > 1 or set to 0$x" + fi + fi + +elif [ "$SYSTEM_TEAMFOUNDATIONSERVERURI" != "" ]; +then + say "$e==>$x Azure Pipelines detected." + # https://docs.microsoft.com/en-us/azure/devops/pipelines/build/variables?view=vsts + # https://docs.microsoft.com/en-us/azure/devops/pipelines/build/variables?view=azure-devops&viewFallbackFrom=vsts&tabs=yaml + service="azure_pipelines" + commit="$BUILD_SOURCEVERSION" + build="$BUILD_BUILDNUMBER" + if [ -z "$SYSTEM_PULLREQUEST_PULLREQUESTNUMBER" ]; + then + pr="$SYSTEM_PULLREQUEST_PULLREQUESTID" + else + pr="$SYSTEM_PULLREQUEST_PULLREQUESTNUMBER" + fi + project="${SYSTEM_TEAMPROJECT}" + server_uri="${SYSTEM_TEAMFOUNDATIONSERVERURI}" + job="${BUILD_BUILDID}" + branch="${BUILD_SOURCEBRANCH#"refs/heads/"}" + build_url=$(urlencode "${SYSTEM_TEAMFOUNDATIONSERVERURI}${SYSTEM_TEAMPROJECT}/_build/results?buildId=${BUILD_BUILDID}") + + # azure/pipelines runs in detached HEAD + mc= + if [ -n "$pr" ] && [ "$pr" != false ]; + then + mc=$(git show --no-patch --format="%P" 2>/dev/null || echo "") + + if [[ "$mc" =~ ^[a-z0-9]{40}[[:space:]][a-z0-9]{40}$ ]]; + then + mc=$(echo "$mc" | cut -d' ' -f2) + say " Fixing merge commit SHA $commit -> $mc" + commit=$mc + fi + fi + +elif [ "$CI" = "true" ] && [ "$BITBUCKET_BUILD_NUMBER" != "" ]; +then + say "$e==>$x Bitbucket detected." + # https://confluence.atlassian.com/bitbucket/variables-in-pipelines-794502608.html + service="bitbucket" + branch="$BITBUCKET_BRANCH" + build="$BITBUCKET_BUILD_NUMBER" + slug="$BITBUCKET_REPO_OWNER/$BITBUCKET_REPO_SLUG" + job="$BITBUCKET_BUILD_NUMBER" + pr="$BITBUCKET_PR_ID" + commit="$BITBUCKET_COMMIT" + # See https://jira.atlassian.com/browse/BCLOUD-19393 + if [ "${#commit}" = 12 ]; + then + commit=$(git rev-parse "$BITBUCKET_COMMIT") + fi + +elif [ "$CI" = "true" ] && [ "$BUDDY" = "true" ]; +then + say "$e==>$x Buddy CI detected." + # https://buddy.works/docs/pipelines/environment-variables + service="buddy" + branch="$BUDDY_EXECUTION_BRANCH" + build="$BUDDY_EXECUTION_ID" + build_url=$(urlencode "$BUDDY_EXECUTION_URL") + commit="$BUDDY_EXECUTION_REVISION" + pr="$BUDDY_EXECUTION_PULL_REQUEST_NO" + tag="$BUDDY_EXECUTION_TAG" + slug="$BUDDY_REPO_SLUG" + +elif [ "$CIRRUS_CI" != "" ]; +then + say "$e==>$x Cirrus CI detected." + # https://cirrus-ci.org/guide/writing-tasks/#environment-variables + service="cirrus-ci" + slug="$CIRRUS_REPO_FULL_NAME" + branch="$CIRRUS_BRANCH" + pr="$CIRRUS_PR" + commit="$CIRRUS_CHANGE_IN_REPO" + build="$CIRRUS_BUILD_ID" + build_url=$(urlencode "https://cirrus-ci.com/task/$CIRRUS_TASK_ID") + job="$CIRRUS_TASK_NAME" + +elif [ "$DOCKER_REPO" != "" ]; +then + say "$e==>$x Docker detected." + # https://docs.docker.com/docker-cloud/builds/advanced/ + service="docker" + branch="$SOURCE_BRANCH" + commit="$SOURCE_COMMIT" + slug="$DOCKER_REPO" + tag="$CACHE_TAG" + env="$env,IMAGE_NAME" + +else + say "${r}x>${x} No CI provider detected." + say " Testing inside Docker? ${b}http://docs.codecov.io/docs/testing-with-docker${x}" + say " Testing with Tox? ${b}https://docs.codecov.io/docs/python#section-testing-with-tox${x}" + +fi + +say " ${e}project root:${x} $git_root" + +# find branch, commit, repo from git command +if [ "$GIT_BRANCH" != "" ]; +then + branch="$GIT_BRANCH" + +elif [ "$branch" = "" ]; +then + branch=$(git rev-parse --abbrev-ref HEAD 2>/dev/null || hg branch 2>/dev/null || echo "") + if [ "$branch" = "HEAD" ]; + then + branch="" + fi +fi + +if [ "$commit_o" = "" ]; +then + if [ "$GIT_COMMIT" != "" ]; + then + commit="$GIT_COMMIT" + elif [ "$commit" = "" ]; + then + commit=$(git log -1 --format="%H" 2>/dev/null || hg id -i --debug 2>/dev/null | tr -d '+' || echo "") + fi +else + commit="$commit_o" +fi + +if [ "$CODECOV_TOKEN" != "" ] && [ "$token" = "" ]; +then + say "${e}-->${x} token set from env" + token="$CODECOV_TOKEN" +fi + +if [ "$CODECOV_URL" != "" ] && [ "$url_o" = "" ]; +then + say "${e}-->${x} url set from env" + url_o=$(echo "$CODECOV_URL" | sed -e 's/\/$//') +fi + +if [ "$CODECOV_SLUG" != "" ]; +then + say "${e}-->${x} slug set from env" + slug_o="$CODECOV_SLUG" + +elif [ "$slug" = "" ]; +then + if [ "$remote_addr" = "" ]; + then + remote_addr=$(git config --get remote.origin.url || hg paths default || echo '') + fi + if [ "$remote_addr" != "" ]; + then + if echo "$remote_addr" | grep -q "//"; then + # https + slug=$(echo "$remote_addr" | cut -d / -f 4,5 | sed -e 's/\.git$//') + else + # ssh + slug=$(echo "$remote_addr" | cut -d : -f 2 | sed -e 's/\.git$//') + fi + fi + if [ "$slug" = "/" ]; + then + slug="" + fi +fi + +yaml=$(cd "$git_root" && \ + git ls-files "*codecov.yml" "*codecov.yaml" 2>/dev/null \ + || hg locate "*codecov.yml" "*codecov.yaml" 2>/dev/null \ + || cd "$proj_root" && find . -maxdepth 1 -type f -name '*codecov.y*ml' 2>/dev/null \ + || echo '') +yaml=$(echo "$yaml" | head -1) + +if [ "$yaml" != "" ]; +then + say " ${e}Yaml found at:${x} $yaml" + if [[ "$yaml" != /* ]]; then + # relative path for yaml file given, assume relative to the repo root + yaml="$git_root/$yaml" + fi + config=$(parse_yaml "$yaml" || echo '') + + # TODO validate the yaml here + + if [ "$(echo "$config" | grep 'codecov_token="')" != "" ] && [ "$token" = "" ]; + then + say "${e}-->${x} token set from yaml" + token="$(echo "$config" | grep 'codecov_token="' | sed -e 's/codecov_token="//' | sed -e 's/"\.*//')" + fi + + if [ "$(echo "$config" | grep 'codecov_url="')" != "" ] && [ "$url_o" = "" ]; + then + say "${e}-->${x} url set from yaml" + url_o="$(echo "$config" | grep 'codecov_url="' | sed -e 's/codecov_url="//' | sed -e 's/"\.*//')" + fi + + if [ "$(echo "$config" | grep 'codecov_slug="')" != "" ] && [ "$slug_o" = "" ]; + then + say "${e}-->${x} slug set from yaml" + slug_o="$(echo "$config" | grep 'codecov_slug="' | sed -e 's/codecov_slug="//' | sed -e 's/"\.*//')" + fi +else + say " ${g}Yaml not found, that's ok! Learn more at${x} ${b}http://docs.codecov.io/docs/codecov-yaml${x}" +fi + +if [ "$branch_o" != "" ]; +then + branch=$(urlencode "$branch_o") +else + branch=$(urlencode "$branch") +fi + +if [ "$slug_o" = "" ]; +then + urlencoded_slug=$(urlencode "$slug") +else + urlencoded_slug=$(urlencode "$slug_o") +fi + +query="branch=$branch\ + &commit=$commit\ + &build=$([ "$build_o" = "" ] && echo "$build" || echo "$build_o")\ + &build_url=$build_url\ + &name=$(urlencode "$name")\ + &tag=$([ "$tag_o" = "" ] && echo "$tag" || echo "$tag_o")\ + &slug=$urlencoded_slug\ + &service=$service\ + &flags=$flags\ + &pr=$([ "$pr_o" = "" ] && echo "${pr##\#}" || echo "${pr_o##\#}")\ + &job=$job\ + &cmd_args=$(IFS=,; echo "${codecov_flags[*]}")" + +if [ -n "$project" ] && [ -n "$server_uri" ]; +then + query=$(echo "$query&project=$project&server_uri=$server_uri" | tr -d ' ') +fi + +if [ "$parent" != "" ]; +then + query=$(echo "parent=$parent&$query" | tr -d ' ') +fi + +if [ "$ft_search" = "1" ]; +then + # detect bower comoponents location + bower_components="bower_components" + bower_rc=$(cd "$git_root" && cat .bowerrc 2>/dev/null || echo "") + if [ "$bower_rc" != "" ]; + then + bower_components=$(echo "$bower_rc" | tr -d '\n' | grep '"directory"' | cut -d'"' -f4 | sed -e 's/\/$//') + if [ "$bower_components" = "" ]; + then + bower_components="bower_components" + fi + fi + + # Swift Coverage + if [ "$ft_xcodellvm" = "1" ] && [ -d "$ddp" ]; + then + say "${e}==>${x} Processing Xcode reports via llvm-cov" + say " DerivedData folder: $ddp" + profdata_files=$(find "$ddp" -name '*.profdata' 2>/dev/null || echo '') + if [ "$profdata_files" != "" ]; + then + # xcode via profdata + if [ "$xp" = "" ]; + then + # xp=$(xcodebuild -showBuildSettings 2>/dev/null | grep -i "^\s*PRODUCT_NAME" | sed -e 's/.*= \(.*\)/\1/') + # say " ${e}->${x} Speed up Xcode processing by adding ${e}-J '$xp'${x}" + say " ${g}hint${x} Speed up Swift processing by using use ${g}-J 'AppName'${x} (regexp accepted)" + say " ${g}hint${x} This will remove Pods/ from your report. Also ${b}https://docs.codecov.io/docs/ignoring-paths${x}" + fi + while read -r profdata; + do + if [ "$profdata" != "" ]; + then + swiftcov "$profdata" "$xp" + fi + done <<< "$profdata_files" + else + say " ${e}->${x} No Swift coverage found" + fi + + # Obj-C Gcov Coverage + if [ "$ft_gcov" = "1" ]; + then + say " ${e}->${x} Running $gcov_exe for Obj-C" + if [ "$ft_gcovout" = "0" ]; + then + # suppress gcov output + bash -c "find $ddp -type f -name '*.gcda' $gcov_include $gcov_ignore -exec $gcov_exe -p $gcov_arg {} +" >/dev/null 2>&1 || true + else + bash -c "find $ddp -type f -name '*.gcda' $gcov_include $gcov_ignore -exec $gcov_exe -p $gcov_arg {} +" || true + fi + fi + fi + + if [ "$ft_xcodeplist" = "1" ] && [ -d "$ddp" ]; + then + say "${e}==>${x} Processing Xcode plists" + plists_files=$(find "$ddp" -name '*.xccoverage' 2>/dev/null || echo '') + if [ "$plists_files" != "" ]; + then + while read -r plist; + do + if [ "$plist" != "" ]; + then + say " ${g}Found${x} plist file at $plist" + plutil -convert xml1 -o "$(basename "$plist").plist" -- "$plist" + fi + done <<< "$plists_files" + fi + fi + + # Gcov Coverage + if [ "$ft_gcov" = "1" ]; + then + say "${e}==>${x} Running $gcov_exe in $proj_root ${e}(disable via -X gcov)${x}" + if [ "$ft_gcovout" = "0" ]; + then + # suppress gcov output + bash -c "find $proj_root -type f -name '*.gcno' $gcov_include $gcov_ignore -exec $gcov_exe -pb $gcov_arg {} +" >/dev/null 2>&1 || true + else + bash -c "find $proj_root -type f -name '*.gcno' $gcov_include $gcov_ignore -exec $gcov_exe -pb $gcov_arg {} +" || true + fi + else + say "${e}==>${x} gcov disabled" + fi + + # Python Coverage + if [ "$ft_coveragepy" = "1" ]; + then + if [ ! -f coverage.xml ]; + then + if command -v coverage >/dev/null 2>&1; + then + say "${e}==>${x} Python coveragepy exists ${e}disable via -X coveragepy${x}" + + dotcoverage=$(find "$git_root" -name '.coverage' -or -name '.coverage.*' | head -1 || echo '') + if [ "$dotcoverage" != "" ]; + then + cd "$(dirname "$dotcoverage")" + if [ ! -f .coverage ]; + then + say " ${e}->${x} Running coverage combine" + coverage combine -a + fi + say " ${e}->${x} Running coverage xml" + if [ "$(coverage xml -i)" != "No data to report." ]; + then + files="$files +$PWD/coverage.xml" + else + say " ${r}No data to report.${x}" + fi + cd "$proj_root" + else + say " ${r}No .coverage file found.${x}" + fi + else + say "${e}==>${x} Python coveragepy not found" + fi + fi + else + say "${e}==>${x} Python coveragepy disabled" + fi + + if [ "$search_in_o" != "" ]; + then + # location override + search_in="$search_in_o" + fi + + say "$e==>$x Searching for coverage reports in:" + for _path in $search_in + do + say " ${g}+${x} $_path" + done + + patterns="find $search_in \( \ + -name vendor \ + -or -name '$bower_components' \ + -or -name '.egg-info*' \ + -or -name 'conftest_*.c.gcov' \ + -or -name .env \ + -or -name .envs \ + -or -name .git \ + -or -name .hg \ + -or -name .tox \ + -or -name .venv \ + -or -name .venvs \ + -or -name .virtualenv \ + -or -name .virtualenvs \ + -or -name .npm-cache \ + -or -name __pycache__ \ + -or -name env \ + -or -name envs \ + -or -name htmlcov \ + -or -name js/generated/coverage \ + -or -name node_modules \ + -or -name venv \ + -or -name venvs \ + -or -name virtualenv \ + -or -name virtualenvs \ + \) -prune -or \ + -type f \( -name '*coverage*.*' \ + -or -name '*.clover' \ + -or -name '*.codecov.*' \ + -or -name '*.gcov' \ + -or -name '*.lcov' \ + -or -name '*.lst' \ + -or -name 'clover.xml' \ + -or -name 'cobertura.xml' \ + -or -name 'codecov.*' \ + -or -name 'cover.out' \ + -or -name 'codecov-result.json' \ + -or -name 'coverage-final.json' \ + -or -name 'excoveralls.json' \ + -or -name 'gcov.info' \ + -or -name 'jacoco*.xml' \ + -or -name '*Jacoco*.xml' \ + -or -name 'lcov.dat' \ + -or -name 'lcov.info' \ + -or -name 'luacov.report.out' \ + -or -name 'naxsi.info' \ + -or -name 'nosetests.xml' \ + -or -name 'report.xml' \ + $include_cov \) \ + $exclude_cov \ + -not -name '*.am' \ + -not -name '*.bash' \ + -not -name '*.bat' \ + -not -name '*.bw' \ + -not -name '*.cfg' \ + -not -name '*.class' \ + -not -name '*.cmake' \ + -not -name '*.cmake' \ + -not -name '*.conf' \ + -not -name '*.coverage' \ + -not -name '*.cp' \ + -not -name '*.cpp' \ + -not -name '*.crt' \ + -not -name '*.css' \ + -not -name '*.csv' \ + -not -name '*.csv' \ + -not -name '*.data' \ + -not -name '*.db' \ + -not -name '*.dox' \ + -not -name '*.ec' \ + -not -name '*.ec' \ + -not -name '*.egg' \ + -not -name '*.el' \ + -not -name '*.env' \ + -not -name '*.erb' \ + -not -name '*.exe' \ + -not -name '*.ftl' \ + -not -name '*.gif' \ + -not -name '*.gradle' \ + -not -name '*.gz' \ + -not -name '*.h' \ + -not -name '*.html' \ + -not -name '*.in' \ + -not -name '*.jade' \ + -not -name '*.jar*' \ + -not -name '*.jpeg' \ + -not -name '*.jpg' \ + -not -name '*.js' \ + -not -name '*.less' \ + -not -name '*.log' \ + -not -name '*.m4' \ + -not -name '*.mak*' \ + -not -name '*.md' \ + -not -name '*.o' \ + -not -name '*.p12' \ + -not -name '*.pem' \ + -not -name '*.png' \ + -not -name '*.pom*' \ + -not -name '*.profdata' \ + -not -name '*.proto' \ + -not -name '*.ps1' \ + -not -name '*.pth' \ + -not -name '*.py' \ + -not -name '*.pyc' \ + -not -name '*.pyo' \ + -not -name '*.rb' \ + -not -name '*.rsp' \ + -not -name '*.rst' \ + -not -name '*.ru' \ + -not -name '*.sbt' \ + -not -name '*.scss' \ + -not -name '*.scss' \ + -not -name '*.serialized' \ + -not -name '*.sh' \ + -not -name '*.snapshot' \ + -not -name '*.sql' \ + -not -name '*.svg' \ + -not -name '*.tar.tz' \ + -not -name '*.template' \ + -not -name '*.whl' \ + -not -name '*.xcconfig' \ + -not -name '*.xcoverage.*' \ + -not -name '*/classycle/report.xml' \ + -not -name '*codecov.yml' \ + -not -name '*~' \ + -not -name '.*coveragerc' \ + -not -name '.coverage*' \ + -not -name 'coverage-summary.json' \ + -not -name 'createdFiles.lst' \ + -not -name 'fullLocaleNames.lst' \ + -not -name 'include.lst' \ + -not -name 'inputFiles.lst' \ + -not -name 'phpunit-code-coverage.xml' \ + -not -name 'phpunit-coverage.xml' \ + -not -name 'remapInstanbul.coverage*.json' \ + -not -name 'scoverage.measurements.*' \ + -not -name 'test_*_coverage.txt' \ + -not -name 'testrunner-coverage*' \ + -print 2>/dev/null" + files=$(eval "$patterns" || echo '') + +elif [ "$include_cov" != "" ]; +then + files=$(eval "find $search_in -type f \( ${include_cov:5} \)$exclude_cov 2>/dev/null" || echo '') +elif [ "$direct_file_upload" != "" ]; +then + files=$direct_file_upload +fi + +num_of_files=$(echo "$files" | wc -l | tr -d ' ') +if [ "$num_of_files" != '' ] && [ "$files" != '' ]; +then + say " ${e}->${x} Found $num_of_files reports" +fi + +# no files found +if [ "$files" = "" ]; +then + say "${r}-->${x} No coverage report found." + say " Please visit ${b}http://docs.codecov.io/docs/supported-languages${x}" + exit ${exit_with}; +fi + +if [ "$ft_network" == "1" ]; +then + say "${e}==>${x} Detecting git/mercurial file structure" + network=$(cd "$git_root" && git ls-files $git_ls_files_recurse_submodules_o 2>/dev/null || hg locate 2>/dev/null || echo "") + if [ "$network" = "" ]; + then + network=$(find "$git_root" \( \ + -name virtualenv \ + -name .virtualenv \ + -name virtualenvs \ + -name .virtualenvs \ + -name '*.png' \ + -name '*.gif' \ + -name '*.jpg' \ + -name '*.jpeg' \ + -name '*.md' \ + -name .env \ + -name .envs \ + -name env \ + -name envs \ + -name .venv \ + -name .venvs \ + -name venv \ + -name venvs \ + -name .git \ + -name .egg-info \ + -name shunit2-2.1.6 \ + -name vendor \ + -name __pycache__ \ + -name node_modules \ + -path "*/$bower_components/*" \ + -path '*/target/delombok/*' \ + -path '*/build/lib/*' \ + -path '*/js/generated/coverage/*' \ + \) -prune -or \ + -type f -print 2>/dev/null || echo '') + fi + + if [ "$network_filter_o" != "" ]; + then + network=$(echo "$network" | grep -e "$network_filter_o/*") + fi + if [ "$prefix_o" != "" ]; + then + network=$(echo "$network" | awk "{print \"$prefix_o/\"\$0}") + fi +fi + +upload_file=$(mktemp /tmp/codecov.XXXXXX) +adjustments_file=$(mktemp /tmp/codecov.adjustments.XXXXXX) + +cleanup() { + rm -f "$upload_file" "$adjustments_file" "$upload_file.gz" +} + +trap cleanup INT ABRT TERM + + +if [ "$env" != "" ]; +then + inc_env="" + say "${e}==>${x} Appending build variables" + for varname in $(echo "$env" | tr ',' ' ') + do + if [ "$varname" != "" ]; + then + say " ${g}+${x} $varname" + inc_env="${inc_env}${varname}=$(eval echo "\$${varname}") +" + fi + done + echo "$inc_env<<<<<< ENV" >> "$upload_file" +fi + +# Append git file list +# write discovered yaml location +if [ "$direct_file_upload" = "" ]; +then + echo "$yaml" >> "$upload_file" +fi + +if [ "$ft_network" == "1" ]; +then + i="woff|eot|otf" # fonts + i="$i|gif|png|jpg|jpeg|psd" # images + i="$i|ptt|pptx|numbers|pages|md|txt|xlsx|docx|doc|pdf|csv" # docs + i="$i|.gitignore" # supporting docs + + if [ "$ft_html" != "1" ]; + then + i="$i|html" + fi + + if [ "$ft_yaml" != "1" ]; + then + i="$i|yml|yaml" + fi + + echo "$network" | grep -vwE "($i)$" >> "$upload_file" +fi +echo "<<<<<< network" >> "$upload_file" + +if [ "$direct_file_upload" = "" ]; +then + fr=0 + say "${e}==>${x} Reading reports" + while IFS='' read -r file; + do + # read the coverage file + if [ "$(echo "$file" | tr -d ' ')" != '' ]; + then + if [ -f "$file" ]; + then + report_len=$(wc -c < "$file") + if [ "$report_len" -ne 0 ]; + then + say " ${g}+${x} $file ${e}bytes=$(echo "$report_len" | tr -d ' ')${x}" + # append to to upload + _filename=$(basename "$file") + if [ "${_filename##*.}" = 'gcov' ]; + then + { + echo "# path=$(echo "$file.reduced" | sed "s|^$git_root/||")"; + # get file name + head -1 "$file"; + } >> "$upload_file" + # 1. remove source code + # 2. remove ending bracket lines + # 3. remove whitespace + # 4. remove contextual lines + # 5. remove function names + awk -F': *' '{print $1":"$2":"}' "$file" \ + | sed '\/: *} *$/d' \ + | sed 's/^ *//' \ + | sed '/^-/d' \ + | sed 's/^function.*/func/' >> "$upload_file" + else + { + echo "# path=${file//^$git_root/||}"; + cat "$file"; + } >> "$upload_file" + fi + echo "<<<<<< EOF" >> "$upload_file" + fr=1 + if [ "$clean" = "1" ]; + then + rm "$file" + fi + else + say " ${r}-${x} Skipping empty file $file" + fi + else + say " ${r}-${x} file not found at $file" + fi + fi + done <<< "$(echo -e "$files")" + + if [ "$fr" = "0" ]; + then + say "${r}-->${x} No coverage data found." + say " Please visit ${b}http://docs.codecov.io/docs/supported-languages${x}" + say " search for your projects language to learn how to collect reports." + exit ${exit_with}; + fi +else + cp "$direct_file_upload" "$upload_file" + if [ "$clean" = "1" ]; + then + rm "$direct_file_upload" + fi +fi + +if [ "$ft_fix" = "1" ]; +then + say "${e}==>${x} Appending adjustments" + say " ${b}https://docs.codecov.io/docs/fixing-reports${x}" + + empty_line='^[[:space:]]*$' + # // + syntax_comment='^[[:space:]]*//.*' + # /* or */ + syntax_comment_block='^[[:space:]]*(\/\*|\*\/)[[:space:]]*$' + # { or } + syntax_bracket='^[[:space:]]*[\{\}][[:space:]]*(//.*)?$' + # [ or ] + syntax_list='^[[:space:]]*[][][[:space:]]*(//.*)?$' + # func ... { + syntax_go_func='^[[:space:]]*[func].*[\{][[:space:]]*$' + + # shellcheck disable=SC2089 + skip_dirs="-not -path '*/$bower_components/*' \ + -not -path '*/node_modules/*'" + + cut_and_join() { + awk 'BEGIN { FS=":" } + $3 ~ /\/\*/ || $3 ~ /\*\// { print $0 ; next } + $1!=key { if (key!="") print out ; key=$1 ; out=$1":"$2 ; next } + { out=out","$2 } + END { print out }' 2>/dev/null + } + + if echo "$network" | grep -m1 '.kt$' 1>/dev/null; + then + # skip brackets and comments + cd "$git_root" && \ + find . -type f \ + -name '*.kt' \ + -exec \ + grep -nIHE -e "$syntax_bracket" \ + -e "$syntax_comment_block" {} \; \ + | cut_and_join \ + >> "$adjustments_file" \ + || echo '' + + # last line in file + cd "$git_root" && \ + find . -type f \ + -name '*.kt' -exec \ + wc -l {} \; \ + | while read -r l; do echo "EOF: $l"; done \ + 2>/dev/null \ + >> "$adjustments_file" \ + || echo '' + fi + + if echo "$network" | grep -m1 '.go$' 1>/dev/null; + then + # skip empty lines, comments, and brackets + cd "$git_root" && \ + find . -type f \ + -not -path '*/vendor/*' \ + -not -path '*/caches/*' \ + -name '*.go' \ + -exec \ + grep -nIHE \ + -e "$empty_line" \ + -e "$syntax_comment" \ + -e "$syntax_comment_block" \ + -e "$syntax_bracket" \ + -e "$syntax_go_func" \ + {} \; \ + | cut_and_join \ + >> "$adjustments_file" \ + || echo '' + fi + + if echo "$network" | grep -m1 '.dart$' 1>/dev/null; + then + # skip brackets + cd "$git_root" && \ + find . -type f \ + -name '*.dart' \ + -exec \ + grep -nIHE \ + -e "$syntax_bracket" \ + {} \; \ + | cut_and_join \ + >> "$adjustments_file" \ + || echo '' + fi + + if echo "$network" | grep -m1 '.php$' 1>/dev/null; + then + # skip empty lines, comments, and brackets + cd "$git_root" && \ + find . -type f \ + -not -path "*/vendor/*" \ + -name '*.php' \ + -exec \ + grep -nIHE \ + -e "$syntax_list" \ + -e "$syntax_bracket" \ + -e '^[[:space:]]*\);[[:space:]]*(//.*)?$' \ + {} \; \ + | cut_and_join \ + >> "$adjustments_file" \ + || echo '' + fi + + if echo "$network" | grep -m1 '\(.c\.cpp\|.cxx\|.h\|.hpp\|.m\|.swift\|.vala\)$' 1>/dev/null; + then + # skip brackets + # shellcheck disable=SC2086,SC2090 + cd "$git_root" && \ + find . -type f \ + $skip_dirs \ + \( \ + -name '*.c' \ + -or -name '*.cpp' \ + -or -name '*.cxx' \ + -or -name '*.h' \ + -or -name '*.hpp' \ + -or -name '*.m' \ + -or -name '*.swift' \ + -or -name '*.vala' \ + \) -exec \ + grep -nIHE \ + -e "$empty_line" \ + -e "$syntax_bracket" \ + -e '// LCOV_EXCL' \ + {} \; \ + | cut_and_join \ + >> "$adjustments_file" \ + || echo '' + + # skip brackets + # shellcheck disable=SC2086,SC2090 + cd "$git_root" && \ + find . -type f \ + $skip_dirs \ + \( \ + -name '*.c' \ + -or -name '*.cpp' \ + -or -name '*.cxx' \ + -or -name '*.h' \ + -or -name '*.hpp' \ + -or -name '*.m' \ + -or -name '*.swift' \ + -or -name '*.vala' \ + \) -exec \ + grep -nIH '// LCOV_EXCL' \ + {} \; \ + >> "$adjustments_file" \ + || echo '' + + fi + + found=$(< "$adjustments_file" tr -d ' ') + + if [ "$found" != "" ]; + then + say " ${g}+${x} Found adjustments" + { + echo "# path=fixes"; + cat "$adjustments_file"; + echo "<<<<<< EOF"; + } >> "$upload_file" + rm -rf "$adjustments_file" + else + say " ${e}->${x} No adjustments found" + fi +fi + +if [ "$url_o" != "" ]; +then + url="$url_o" +fi + +if [ "$dump" != "0" ]; +then + # trim whitespace from query + say " ${e}->${x} Dumping upload file (no upload)" + echo "$url/upload/v4?$(echo "package=$package-$VERSION&token=$token&$query" | tr -d ' ')" + cat "$upload_file" +else + if [ "$save_to" != "" ]; + then + say "${e}==>${x} Copying upload file to ${save_to}" + mkdir -p "$(dirname "$save_to")" + cp "$upload_file" "$save_to" + fi + + say "${e}==>${x} Gzipping contents" + gzip -nf9 "$upload_file" + say " $(du -h "$upload_file.gz")" + + query=$(echo "${query}" | tr -d ' ') + say "${e}==>${x} Uploading reports" + say " ${e}url:${x} $url" + say " ${e}query:${x} $query" + + # Full query without token (to display on terminal output) + queryNoToken=$(echo "package=$package-$VERSION&token=secret&$query" | tr -d ' ') + # now add token to query + query=$(echo "package=$package-$VERSION&token=$token&$query" | tr -d ' ') + + if [ "$ft_s3" = "1" ]; + then + say "${e}->${x} Pinging Codecov" + say "$url/upload/v4?$queryNoToken" + # shellcheck disable=SC2086,2090 + res=$(curl $curl_s -X POST $cacert \ + --retry 5 --retry-delay 2 --connect-timeout 2 \ + -H 'X-Reduced-Redundancy: false' \ + -H 'X-Content-Type: application/x-gzip' \ + -H 'Content-Length: 0' \ + --write-out "\n%{response_code}\n" \ + $curlargs \ + "$url/upload/v4?$query" || true) + # a good reply is "https://codecov.io" + "\n" + "https://storage.googleapis.com/codecov/..." + s3target=$(echo "$res" | sed -n 2p) + status=$(tail -n1 <<< "$res") + + if [ "$status" = "200" ] && [ "$s3target" != "" ]; + then + say "${e}->${x} Uploading to" + say "${s3target}" + + # shellcheck disable=SC2086 + s3=$(curl -fiX PUT \ + --data-binary @"$upload_file.gz" \ + -H 'Content-Type: application/x-gzip' \ + -H 'Content-Encoding: gzip' \ + $curlawsargs \ + "$s3target" || true) + + if [ "$s3" != "" ]; + then + say " ${g}->${x} Reports have been successfully queued for processing at ${b}$(echo "$res" | sed -n 1p)${x}" + exit 0 + else + say " ${r}X>${x} Failed to upload" + fi + elif [ "$status" = "400" ]; + then + # 400 Error + say "${r}${res}${x}" + exit ${exit_with} + else + say "${r}${res}${x}" + fi + fi + + say "${e}==>${x} Uploading to Codecov" + + # shellcheck disable=SC2086,2090 + res=$(curl -X POST $cacert \ + --data-binary @"$upload_file.gz" \ + --retry 5 --retry-delay 2 --connect-timeout 2 \ + -H 'Content-Type: text/plain' \ + -H 'Content-Encoding: gzip' \ + -H 'X-Content-Encoding: gzip' \ + -H 'Accept: text/plain' \ + $curlargs \ + "$url/upload/v2?$query&attempt=$i" || echo 'HTTP 500') + # HTTP 200 + # http://.... + status=$(echo "$res" | head -1 | cut -d' ' -f2) + if [ "$status" = "" ] || [ "$status" = "200" ]; + then + say " Reports have been successfully queued for processing at ${b}$(echo "$res" | head -2 | tail -1)${x}" + exit 0 + else + say " ${g}${res}${x}" + exit ${exit_with} + fi + + say " ${r}X> Failed to upload coverage reports${x}" +fi + +exit ${exit_with} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/release.yml b/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/release.yml new file mode 100644 index 000000000000..933e34c8e09f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/release.yml @@ -0,0 +1,82 @@ +name: release-workflow + +on: + push: + branches: + - 'master' + +jobs: + build: + name: Bump version and publish package(s) + + runs-on: ubuntu-20.04 + + strategy: + matrix: + node-version: [16] + + steps: + - uses: actions/checkout@v2 + with: + # pulls all commits (needed for lerna / semantic release to correctly version) + fetch-depth: 0 + - name: Get tags and filter trigger tags + run: | + git fetch --depth=1 origin "+refs/tags/*:refs/tags/*" + git fetch --prune --unshallow + git tag -d `git tag | grep -E '^trigger-'` + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + + - name: Cache npm + uses: actions/cache@v1 + with: + path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS + key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.OS }}-node- + ${{ runner.OS }}- + + - name: Get npm cache directory path + id: npm-cache-dir-path + run: echo "::set-output name=dir::$(npm config get cache)" + - name: Cache npm + uses: actions/cache@v1 + id: npm-cache # use this to check for `cache-hit` (`steps.npm-cache.outputs.cache-hit != 'true'`) + with: + path: ${{ steps.npm-cache-dir-path.outputs.dir }} + key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-npm- + + - name: Install dependencies + run: npm ci + - name: Build packages + run: npm run build + - name: Run unit tests + run: npm run test + + - name: Configure npm and git + run: | + echo "@superset-ui:registry=https://registry.npmjs.org/" > .npmrc + echo "registry=https://registry.npmjs.org/" >> .npmrc + echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" >> $HOME/.npmrc 2> /dev/null + npm whoami + git config --local user.email "action@github.com" + git config --local user.name "GitHub Action" + git remote set-url origin "https://${GITHUB_TOKEN}@github.com/apache-superset/superset-ui.git" > /dev/null 2>&1 + env: + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Bump version and publish package(s) + run: | + git tag -d `git tag | grep -E '^trigger-'` + npm run ci:release-from-tag + env: + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.gitignore b/superset-frontend/temporary_superset_ui/superset-ui/.gitignore new file mode 100644 index 000000000000..90f910904495 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.gitignore @@ -0,0 +1,49 @@ +.DS_Store +*.DS_Store + +# Logs +logs/ +*.log + +# Cache +.bundle/ +.happo/ +.idea/ +.next/ +.cache +.eslintcache +.idea +*.iml +.npm +.npmrc +.vscode +.yarnclean + +# Directories +build/ +coverage/ +dist/ +esm/ +lib/ +public/ +node_modules/ +tmp/ +_gh-pages/ + +# Custom +*.map +*.min.js +test-changelog.md + +*.tsbuildinfo + +# Ignore package-lock in packages +plugins/*/package-lock.json +packages/*/package-lock.json + +# For country map geojson conversion script +.ipynb_checkpoints/ +scripts/*.zip + +**/storybook-static +rat-results.txt diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.nvmrc b/superset-frontend/temporary_superset_ui/superset-ui/.nvmrc new file mode 100644 index 000000000000..ab155ce138b8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.nvmrc @@ -0,0 +1 @@ +v14.15.5 diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.prettierignore b/superset-frontend/temporary_superset_ui/superset-ui/.prettierignore new file mode 100644 index 000000000000..d3169634d5b0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.prettierignore @@ -0,0 +1,17 @@ +_gh-pages/ +coverage/ +node_modules/ +public/ +esm/ +lib/ +tmp/ +dist/ +lerna.json +npm-shrinkwrap.json +package-lock.json +tsconfig.json +tsconfig.options.json +tsconfig.eslint.json +CHANGELOG.md +*.geojson +*-topo.json diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.rat-excludes b/superset-frontend/temporary_superset_ui/superset-ui/.rat-excludes new file mode 100644 index 000000000000..48d53fada47f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/.rat-excludes @@ -0,0 +1,66 @@ +# Note: these patterns are applied to single files or directories, not full paths +.gitignore +docs/README.md +.gitattributes +.gitkeep +.coverage +.coveragerc +.codecov.yml +.eslintrc +.eslintignore +.flake8 +.nvmrc +.prettierrc +.rat-excludes +.*log +.*pyc +.*lock +.*geojson +DISCLAIMER +licenses/* +node_modules/* +rat-results.txt +babel-node +dist +superset/static/* +build +superset.egg-info +apache_superset.egg-info +.idea +.*sql +.*zip +.*lock +# json and csv in general cannot have comments +.*json +.*csv +# Generated doc files +env/* +docs/README.md +docs/.htaccess* +_build/* +_static/* +.buildinfo +searchindex.js +# auto generated +requirements/* +# vendorized +vendor/* +# github configuration +.github/* +.*mdx +coverage/* +.*.md +.*.txt + +# skip license check in superset-ui +tmp/* +lib/* +esm/* +tsconfig.tsbuildinfo +.*ipynb +.*yml +.*iml +.esprintrc +.prettierignore +README.erb +package.erb diff --git a/superset-frontend/temporary_superset_ui/superset-ui/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/CHANGELOG.md new file mode 100644 index 000000000000..f5343effef17 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/CHANGELOG.md @@ -0,0 +1,1313 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + + +### Bug Fixes + +* Make the scrollbar appear inside the table ([#1310](https://github.com/apache-superset/superset-ui/issues/1310)) ([1aad2d1](https://github.com/apache-superset/superset-ui/commit/1aad2d11af95f5046f2b67d86b30c9581de4994b)) + + +### Features + +* add certified icon to columoption ([#1330](https://github.com/apache-superset/superset-ui/issues/1330)) ([a415c41](https://github.com/apache-superset/superset-ui/commit/a415c413954bc9c093ab5dfde62d458cf3224073)) + + + + + +## [0.17.63](https://github.com/apache-superset/superset-ui/compare/v0.17.62...v0.17.63) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/monorepo + + + + + +## [0.17.62](https://github.com/apache-superset/superset-ui/compare/v0.17.61...v0.17.62) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/monorepo + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + + +### Bug Fixes + +* **legacy-preset-chart-big-number:** example images got mixed up ([#1196](https://github.com/apache-superset/superset-ui/issues/1196)) ([60215b5](https://github.com/apache-superset/superset-ui/commit/60215b5a4c5ae416fc27418c276276ed38ab7f19)) +* **plugin-chart-echarts:** enable animation to clear old nodes ([#1200](https://github.com/apache-superset/superset-ui/issues/1200)) ([1ee7f4e](https://github.com/apache-superset/superset-ui/commit/1ee7f4e36e1245917e61999f190a84425e82ea38)) +* **plugin-chart-echarts:** sanitize series from html tags ([#1126](https://github.com/apache-superset/superset-ui/issues/1126)) ([fcd6fde](https://github.com/apache-superset/superset-ui/commit/fcd6fde44bb45df3aab5ac5bb990504e7dbde324)) + + + + + +## [0.13.26](https://github.com/apache-superset/superset-ui/compare/v0.13.25...v0.13.26) (2020-06-03) + + +### Features + +* **demo:** add helpers for resizable chart demo ([#557](https://github.com/apache-superset/superset-ui/issues/557)) ([af7421d](https://github.com/apache-superset/superset-ui/commit/af7421d5b7a478ed8a9f0a952f4a111bdc3fec66)) +* **query:** add functions to wrap api calls with typings ([#555](https://github.com/apache-superset/superset-ui/issues/555)) ([9137580](https://github.com/apache-superset/superset-ui/commit/9137580d7e73c73d47bdd6d7ff905365e87d9a61)) +* **superset-ui-style:** export ThemeProvider and useTheme ([#553](https://github.com/apache-superset/superset-ui/issues/553)) ([f6a8949](https://github.com/apache-superset/superset-ui/commit/f6a8949e38eabe8c34e21419fb2f8d4c44bb7ad2)) + + + +## [0.13.25](https://github.com/apache-superset/superset-ui/compare/v0.13.24...v0.13.25) (2020-05-30) + + +### Features + +* **chart:** adjust chartclient to point to new endpoints ([#551](https://github.com/apache-superset/superset-ui/issues/551)) ([bbc42c2](https://github.com/apache-superset/superset-ui/commit/bbc42c2ff074a107f6ed563cd5ab6935a3fb92a0)) +* **connection:** allow developer to get supersetclient instance ([#552](https://github.com/apache-superset/superset-ui/issues/552)) ([c075070](https://github.com/apache-superset/superset-ui/commit/c075070e3cf9f535c81a4964e7ed97b0daf86179)) + + + +## [0.13.24](https://github.com/apache-superset/superset-ui/compare/v0.13.23...v0.13.24) (2020-05-29) + + +### Features + +* **color:** support better color interpolation for sequential schemes ([#547](https://github.com/apache-superset/superset-ui/issues/547)) ([f7d4648](https://github.com/apache-superset/superset-ui/commit/f7d4648fae7eb11032953987dca6736cc7547380)) +* Word cloud typography update ([#518](https://github.com/apache-superset/superset-ui/issues/518)) ([873973b](https://github.com/apache-superset/superset-ui/commit/873973b8a3b0b1b6aa8c8bfa4677d4a614c83500)) + + + +## [0.13.23](https://github.com/apache-superset/superset-ui/compare/v0.13.22...v0.13.23) (2020-05-26) + + +### Bug Fixes + +* nvd3 annotation tooltip ([#540](https://github.com/apache-superset/superset-ui/issues/540)) ([6ea134d](https://github.com/apache-superset/superset-ui/commit/6ea134d9e63d9cf55b2797b8732cc99853b6b77a)) + + + +## [0.13.22](https://github.com/apache-superset/superset-ui/compare/v0.13.21...v0.13.22) (2020-05-26) + + +### Features + +* **time-format:** improve support for formatting with granularity in mind ([#509](https://github.com/apache-superset/superset-ui/issues/509)) ([2d8afa8](https://github.com/apache-superset/superset-ui/commit/2d8afa87b4b34ab1990ecbeaab4060688e86554b)) + + +## [0.13.21](https://github.com/apache-superset/superset-ui/compare/v0.13.20...v0.13.21) (2020-05-21) + + +### Bug Fixes + +* **legacy-plugin-chart-table:** parse numeric pageLength ([#522](https://github.com/apache-superset/superset-ui/issues/522)) ([4831f7f](https://github.com/apache-superset/superset-ui/commit/4831f7fbe4954b5acfb05176f8fd807c4c5e8339)) + + +### Features + +* **legacy-plugin-chart-event-flow:** migrate package ([#514](https://github.com/apache-superset/superset-ui/issues/514)) ([3589e31](https://github.com/apache-superset/superset-ui/commit/3589e31dec2279b9b032f5cb654cd069e1d13611)) + + + +## [0.13.20](https://github.com/apache-superset/superset-ui/compare/v0.13.19...v0.13.20) (2020-05-21) + + + +## [0.13.19](https://github.com/apache-superset/superset-ui/compare/v0.13.18...v0.13.19) (2020-05-21) + + +### Bug Fixes + +* missing bracket, little linty things ([#517](https://github.com/apache-superset/superset-ui/issues/517)) ([b8c91ba](https://github.com/apache-superset/superset-ui/commit/b8c91ba93a29943b6f599b7eb6cb8cb49637d3c8)) + + + +## [0.13.18](https://github.com/apache-superset/superset-ui/compare/v0.13.17...v0.13.18) (2020-05-21) + + +### Features + +* **legacy-plugin-chart-parallel-coordinates:** add control panels ([#510](https://github.com/apache-superset/superset-ui/issues/510)) ([b9bc48d](https://github.com/apache-superset/superset-ui/commit/b9bc48d16e9b5fe06c2d9638deeb11ffeade94eb)) +* **legacy-preset-big-number:** use emotion styling ([#455](https://github.com/apache-superset/superset-ui/issues/455)) ([46eb663](https://github.com/apache-superset/superset-ui/commit/46eb663665c7cd7d45cfe495556a1e54dfeb54dd)) + + + +## [0.13.17](https://github.com/apache-superset/superset-ui/compare/v0.13.16...v0.13.17) (2020-05-20) + + +### Features + +* add control grouping functionality ([#485](https://github.com/apache-superset/superset-ui/issues/485)) ([4ceacfb](https://github.com/apache-superset/superset-ui/commit/4ceacfb1da28ec58695bfa7417b0157518e89cad)) + + + +## [0.13.16](https://github.com/apache-superset/superset-ui/compare/v0.13.15...v0.13.16) (2020-05-19) + + +### Features + +* **legacy-plugin-chart-event-flow:** control panel ([#501](https://github.com/apache-superset/superset-ui/issues/501)) ([34541df](https://github.com/apache-superset/superset-ui/commit/34541df50e335eccfc5b34240587d6ae16f09977)) +* **legacy-plugin-chart-force-directed:** control panel ([#502](https://github.com/apache-superset/superset-ui/issues/502)) ([bf573a0](https://github.com/apache-superset/superset-ui/commit/bf573a0240a8c05697d98d47921b5ed71ba2d2cd)) +* **legacy-plugin-chart-heatmap:** control panel ([#503](https://github.com/apache-superset/superset-ui/issues/503)) ([0111fa7](https://github.com/apache-superset/superset-ui/commit/0111fa7ed4f98a1e48b0858533ed23df1b670ecc)) +* **legacy-plugin-chart-histogram:** control panel ([#504](https://github.com/apache-superset/superset-ui/issues/504)) ([e5106ee](https://github.com/apache-superset/superset-ui/commit/e5106ee54fa12942f09f71558af7e80e7da5b26e)) +* **legacy-plugin-chart-horizon:** control panel ([#505](https://github.com/apache-superset/superset-ui/issues/505)) ([e63b079](https://github.com/apache-superset/superset-ui/commit/e63b079a43b4cc07f35321d10d530574c942c033)) +* **legacy-plugin-chart-iframe:** control panel ([#506](https://github.com/apache-superset/superset-ui/issues/506)) ([51d0894](https://github.com/apache-superset/superset-ui/commit/51d0894581542977230fceeb41e2017114b8724e)) +* **legacy-plugin-chart-map-box:** control panel ([#507](https://github.com/apache-superset/superset-ui/issues/507)) ([9f79870](https://github.com/apache-superset/superset-ui/commit/9f798709892525d8c85106d33d4d08eef05fd0fd)) + + + +## [0.13.15](https://github.com/apache-superset/superset-ui/compare/v0.13.14...v0.13.15) (2020-05-18) + + +### Bug Fixes + +* **time-format:** remove week number ([#493](https://github.com/apache-superset/superset-ui/issues/493)) ([0d13ff0](https://github.com/apache-superset/superset-ui/commit/0d13ff0f7ad13d565933a52f910278177d9318f3)) + + +### Features + +* **query:** remove redundant metric label truncation ([#492](https://github.com/apache-superset/superset-ui/issues/492)) ([5b42bc1](https://github.com/apache-superset/superset-ui/commit/5b42bc17f78d0c32ea69f9351f3f25e054911222)) + + + +## [0.13.14](https://github.com/apache-superset/superset-ui/compare/v0.13.13...v0.13.14) (2020-05-14) + + +### Features + +* **time-format:** add full-date to weekly time formatter ([#486](https://github.com/apache-superset/superset-ui/issues/486)) ([b2d0426](https://github.com/apache-superset/superset-ui/commit/b2d04267b60760f76373fc2d5d094e6102b676fe)) + + + +## [0.13.13](https://github.com/apache-superset/superset-ui/compare/v0.13.12...v0.13.13) (2020-05-13) + + +### Bug Fixes + +* **legacy-plugin-chart-nvd3:** disable bad linting rule ([#488](https://github.com/apache-superset/superset-ui/issues/488)) ([9b6d611](https://github.com/apache-superset/superset-ui/commit/9b6d61194326c8d2d2996aad7b20648f95f8a804)) + + +### Features + +* **generator-superset:** add scaffolder for chart plugin ([#456](https://github.com/apache-superset/superset-ui/issues/456)) ([f339466](https://github.com/apache-superset/superset-ui/commit/f3394666fdfe5472d353cfb83540868b7185c9df)) +* **legacy-plugin-chart-chord:** control panel ([#481](https://github.com/apache-superset/superset-ui/issues/481)) ([d82d948](https://github.com/apache-superset/superset-ui/commit/d82d948145c2fa642d62bd65ab9b9a844b5a6aff)) +* **plugin-chart-word-cloud:** allow minimum size ([#487](https://github.com/apache-superset/superset-ui/issues/487)) ([356229b](https://github.com/apache-superset/superset-ui/commit/356229be1bb620b2e98e13e72a8a5071655489b4)) + + + +## [0.13.12](https://github.com/apache-superset/superset-ui/compare/v0.13.11...v0.13.12) (2020-05-13) + + +### Features + +* **control-utils:** add shared controls + dependencies, convert to typescript ([#459](https://github.com/apache-superset/superset-ui/issues/459)) ([befe0c7](https://github.com/apache-superset/superset-ui/commit/befe0c767378d14d0e18bb690deee913274840a6)) +* **legacy-plugin-chart-markup:** add controls to markup chart ([#479](https://github.com/apache-superset/superset-ui/issues/479)) ([7801121](https://github.com/apache-superset/superset-ui/commit/780112118afd6e52b988139bf608acbf1e90cc9f)) + + + +## [0.13.11](https://github.com/apache-superset/superset-ui/compare/v0.13.10...v0.13.11) (2020-05-12) + + +### Features + +* **legacy-plugin-chart-nvd3:** add control panels ([#469](https://github.com/apache-superset/superset-ui/issues/469)) ([ad267db](https://github.com/apache-superset/superset-ui/commit/ad267dbd19637cf3988bf5732b2018d748ab7b3e)) +* **legacy-plugin-chart-partition:** add control panel ([#470](https://github.com/apache-superset/superset-ui/issues/470)) ([b569c34](https://github.com/apache-superset/superset-ui/commit/b569c34db5b8d810154dcaa695eed8ef163ff08a)) +* **plugin-chart-boxplot:** add control panel ([#464](https://github.com/apache-superset/superset-ui/issues/464)) ([1c8b257](https://github.com/apache-superset/superset-ui/commit/1c8b257a6c081575070abf54cc52538d03b21f9f)) +* **style:** adding typographic variables to theme ([#463](https://github.com/apache-superset/superset-ui/issues/463)) ([f06cb4a](https://github.com/apache-superset/superset-ui/commit/f06cb4a98f4e79bc52be91741cf522ae2cdc328d)) + + + +## [0.13.10](https://github.com/apache-superset/superset-ui/compare/v0.13.9...v0.13.10) (2020-05-08) + + +### Features + +* **plugin-chart-treemap:** add control panel ([#461](https://github.com/apache-superset/superset-ui/issues/461)) ([8964341](https://github.com/apache-superset/superset-ui/commit/89643415da095a08dc3385c117a727bbb430c35d)) +* **plugin-chart-world-map:** add control panel ([#462](https://github.com/apache-superset/superset-ui/issues/462)) ([e914a2b](https://github.com/apache-superset/superset-ui/commit/e914a2bd71be7f87197f5505ff052606eb7b97cb)) + + + +## [0.13.9](https://github.com/apache-superset/superset-ui/compare/v0.13.8...v0.13.9) (2020-05-08) + + +### Bug Fixes + +* hundreds lint warning ([#447](https://github.com/apache-superset/superset-ui/issues/447)) ([ce0e23c](https://github.com/apache-superset/superset-ui/commit/ce0e23c65390441df7acd2f5d70f4e1797eebdca)) + + +### Features + +* **control-utils:** add infotooltipwithtrigger ([#442](https://github.com/apache-superset/superset-ui/issues/442)) ([488e945](https://github.com/apache-superset/superset-ui/commit/488e9459794b3e81d29ebe295d5c643014c7f954)) +* **plugin-chart-word-cloud:** add control panel ([#454](https://github.com/apache-superset/superset-ui/issues/454)) ([18375db](https://github.com/apache-superset/superset-ui/commit/18375db48968899e6e48a69c0014c1fd51f1e924)) + + + +## [0.13.8](https://github.com/apache-superset/superset-ui/compare/v0.13.7...v0.13.8) (2020-05-07) + + +### Bug Fixes + +* Remove .ts suffix from NVD3 imports ([#453](https://github.com/apache-superset/superset-ui/issues/453)) ([b80372d](https://github.com/apache-superset/superset-ui/commit/b80372da4c4aebe3161e5e04f245004840eca907)) + + + +## [0.13.7](https://github.com/apache-superset/superset-ui/compare/v0.13.6...v0.13.7) (2020-05-06) + + +### Features + +* **plugin-chart-sunburst:** migrate control panel from incubator-superset ([#443](https://github.com/apache-superset/superset-ui/issues/443)) ([a8a9e9c](https://github.com/apache-superset/superset-ui/commit/a8a9e9c12e074140c371abaf12eb9d6307c314a9)) + + + +## [0.13.6](https://github.com/apache-superset/superset-ui/compare/v0.13.5...v0.13.6) (2020-05-06) + + +### Bug Fixes + +* **legacy-plugin-world-map:** set useLegacyApi to true by default ([#444](https://github.com/apache-superset/superset-ui/issues/444)) ([3b9c478](https://github.com/apache-superset/superset-ui/commit/3b9c478e2190e90979f9b9982ca7a0dfa0c5a2ba)) + + +### Features + +* **query:** Add force to QueryContext ([#445](https://github.com/apache-superset/superset-ui/issues/445)) ([a243911](https://github.com/apache-superset/superset-ui/commit/a24391159dfcc4a6ce3d48ce42f98669b8b189b3)) + + + +## [0.13.5](https://github.com/apache-superset/superset-ui/compare/v0.13.4...v0.13.5) (2020-04-30) + + +### Bug Fixes + +* lint errors ([#420](https://github.com/apache-superset/superset-ui/issues/420)) ([cb54e5a](https://github.com/apache-superset/superset-ui/commit/cb54e5af5c2a2f75f5d6484da9a1c2bf3b4a81f0)) +* **plugin-chart-word-cloud:** make wordcloud take current formdata ([#428](https://github.com/apache-superset/superset-ui/issues/428)) ([80b4c3f](https://github.com/apache-superset/superset-ui/commit/80b4c3faddf611e5a0d7c9d8a8c3706a3f0779fd)) + + +### Features + +* **superset-ui:** include control utils in the umbrella package ([#421](https://github.com/apache-superset/superset-ui/issues/421)) ([c2e0bdd](https://github.com/apache-superset/superset-ui/commit/c2e0bddde251a4738c34bbc642e31b814a25576a)) + + + +## [0.13.4](https://github.com/apache-superset/superset-ui/compare/v0.13.3...v0.13.4) (2020-04-30) + + +### Features + +* **legacy-plugin-chart-big-number:** add control panel config for the BigNumber charts ([#419](https://github.com/apache-superset/superset-ui/issues/419)) ([590c4f4](https://github.com/apache-superset/superset-ui/commit/590c4f4efe3fea028f5709e3ac5a234fd95d6e92)) + + + +## [0.13.3](https://github.com/apache-superset/superset-ui/compare/v0.13.2...v0.13.3) (2020-04-30) + + + +## [0.13.2](https://github.com/apache-superset/superset-ui/compare/v0.13.1...v0.13.2) (2020-04-29) + + +### Bug Fixes + +* peer dependencies ([a3029b9](https://github.com/apache-superset/superset-ui/commit/a3029b9ddfcae1678058a73e38ab4b73220b4fb5)) + + + +## [0.13.1](https://github.com/apache-superset/superset-ui/compare/v0.13.0...v0.13.1) (2020-04-29) + + +### Bug Fixes + +* bump peer dependencies ([f873d3c](https://github.com/apache-superset/superset-ui/commit/f873d3ccdda12fc5e79503ddf18d07177d8368a1)) + + +# [0.13.0](https://github.com/apache-superset/superset-ui/compare/v0.12.23...v0.13.0) (2020-04-29) + + +### Bug Fixes + +* **superset-ui-style:** export superset theme props ([#391](https://github.com/apache-superset/superset-ui/issues/391)) ([8ebe0d1](https://github.com/apache-superset/superset-ui/commit/8ebe0d1709a85e28d89d52db7d97c7cb712d20e2)) +* **superset-ui-query:** add unit tests for [#387](https://github.com/apache-superset/superset-ui/issues/387) ([#390](https://github.com/apache-superset/superset-ui/issues/390)) ([7b5e5d2](https://github.com/apache-superset/superset-ui/commit/7b5e5d2f830ff8be479b0b568b05eaf8d70db552)) +* **superset-ui-query:** make all filter operators uppercase ([#378](https://github.com/apache-superset/superset-ui/issues/378)) ([1f9e493](https://github.com/apache-superset/superset-ui/commit/1f9e49307666a1c5c75b720001fe7e8f28fc77e0)) + + +### Features + +* **control-utils:** add packages control-utils ([#417](https://github.com/apache-superset/superset-ui/issues/417)) ([2f83074](https://github.com/apache-superset/superset-ui/commit/2f8307485b6c7884e0fd2e4178e6217255749aec)) +* **preset-chart-nvd3:** migration from plugins repo ([#399](https://github.com/apache-superset/superset-ui/issues/399)) ([dbd84f2](https://github.com/apache-superset/superset-ui/commit/dbd84f272b814c7b97d06a79cea0b6c2e9e2f5d4)) + +### BREAKING CHANGES + +* **plugin-word-cloud:** change how wordcloud is exported ([#418](https://github.com/apache-superset/superset-ui/issues/418)) ([c5d3893](https://github.com/apache-superset/superset-ui/commit/c5d389392681869a17be5b1922ef9f42b91eb37a)) + +#### Old behavior + +exports default `WordCloudChartPlugin` from index. + +```ts +import WordCloudChartPlugin from '@superset-ui/plugin-chart-word-cloud'; +``` + +users need to deep import `/esm/legacy` to get the legacy version. + +```ts +import LegacyWordCloudChartPlugin from '@superset-ui/plugin-chart-word-cloud/esm/legacy'; +``` + +#### New behavior + +exports both `WordCloudChartPlugin` and `LegacyWordCloudChartPlugin` from `index`. + +```ts +import { WordCloudChartPlugin, LegacyWordCloudChartPlugin } from '@superset-ui/plugin-chart-word-cloud'; +``` + +* **preset-chart-xy:** migrate from plugins repo ([#377](https://github.com/apache-superset/superset-ui/issues/377)) ([fb5370e](https://github.com/apache-superset/superset-ui/commit/fb5370e64d4bfeb1ccd0a6f753b187a2ea95b445)) + +Signatures of the custom renderers for legend has changed. + +## [0.12.23](https://github.com/apache-superset/superset-ui/compare/v0.12.22...v0.12.23) (2020-04-22) + + +### Bug Fixes + +* unset row_limit when it's not a number ([#387](https://github.com/apache-superset/superset-ui/issues/387)) ([98b6117](https://github.com/apache-superset/superset-ui/commit/98b611792723d02d04f6b840a6c74413343a35be)) + + + +## [0.12.22](https://github.com/apache-superset/superset-ui/compare/v0.12.21...v0.12.22) (2020-04-21) + + +### Features + +* add retry to callApi ([#384](https://github.com/apache-superset/superset-ui/issues/384)) ([f4fdeb0](https://github.com/apache-superset/superset-ui/commit/f4fdeb0eb0e8abb183a0777268676faed9710013)) +* **table:** enable table filter and better typing ([#344](https://github.com/apache-superset/superset-ui/issues/344)) ([fdf6514](https://github.com/apache-superset/superset-ui/commit/fdf651408e616a99799771f267dfc5eb05fc2a01)) + + + +## [0.12.21](https://github.com/apache-superset/superset-ui/compare/v0.12.20...v0.12.21) (2020-04-18) + + +### Features + +* **legacy-plugin-chart-country-map:** migrate and replace india map ([#376](https://github.com/apache-superset/superset-ui/issues/376)) ([21a35f3](https://github.com/apache-superset/superset-ui/commit/21a35f307cd1d7310b1cd7e22dfd7262947b2bb4)) +* migrate chart plugins ([#375](https://github.com/apache-superset/superset-ui/issues/375)) ([7c8cbd8](https://github.com/apache-superset/superset-ui/commit/7c8cbd849d778b0f6dd1fab8549fc4332fc55523)) + + + +## [0.12.20](https://github.com/apache-superset/superset-ui/compare/v0.12.19...v0.12.20) (2020-04-17) + + +### Bug Fixes + +* compatible with window ([#426](https://github.com/apache-superset/superset-ui/issues/426)) ([f95e0df](https://github.com/apache-superset/superset-ui/commit/f95e0df95163b13baf6fcfd34a03481a00208d77)) +* **legacy-table:** adjust sort icon position ([#399](https://github.com/apache-superset/superset-ui/issues/399)) ([6e26242](https://github.com/apache-superset/superset-ui/commit/6e262429c2749059376422014fbeecc5ec47602b)) +* **legacy-table:** avoid React DOM ([#392](https://github.com/apache-superset/superset-ui/issues/392)) ([a1a7896](https://github.com/apache-superset/superset-ui/commit/a1a78964c26a4f1b6cf4d9b51800730e636382c9)) +* **legacy-table:** container height on tall headers ([#398](https://github.com/apache-superset/superset-ui/issues/398)) ([dece6b4](https://github.com/apache-superset/superset-ui/commit/dece6b4f930b384ab5c83a4c53ff47e17d6d8ecc)) +* **legacy-table-chart:** when data is empty ([#397](https://github.com/apache-superset/superset-ui/issues/397)) ([8829bdf](https://github.com/apache-superset/superset-ui/commit/8829bdf9d97018d292242bf10d0757cdb74b8a0e)) +* add container css for interval type annotation ([#372](https://github.com/apache-superset/superset-ui/issues/372)) ([a2cd547](https://github.com/apache-superset/superset-ui/commit/a2cd54781240156e7f2dd47940719a0a537c7605)) +* add typings for @storybook/react ([#203](https://github.com/apache-superset/superset-ui/issues/203)) ([a357487](https://github.com/apache-superset/superset-ui/commit/a3574879dfbaaa1d2bd5ab3b03f2004f25c381c6)) +* apply margins in nvd3 ([#283](https://github.com/apache-superset/superset-ui/issues/283)) ([1239052](https://github.com/apache-superset/superset-ui/commit/12390522d9af7e7a48e11b83025174cf7e86e335)) +* both the CSS and className were expecting true/false strings ([#286](https://github.com/apache-superset/superset-ui/issues/286)) ([ceb3c60](https://github.com/apache-superset/superset-ui/commit/ceb3c60b45fc2d8b377a93bdfbdee1cf2f90a2b2)) +* change world map color scheme ([#215](https://github.com/apache-superset/superset-ui/issues/215)) ([0c5b4c3](https://github.com/apache-superset/superset-ui/commit/0c5b4c39d77b9fce0b4be39a563ba63ad01d745b)) +* disable lint error ([#150](https://github.com/apache-superset/superset-ui/issues/150)) ([c490a7d](https://github.com/apache-superset/superset-ui/commit/c490a7d79abd0815bd2fd6fd4414f9ec4d75caa2)) +* fixing tooltip for expanded area chart ([#134](https://github.com/apache-superset/superset-ui/issues/134)) ([7ca5e6c](https://github.com/apache-superset/superset-ui/commit/7ca5e6c08546f2784e79e21c7947ddf08572b01e)) +* GH issue 8669 NVD3 tooltip overflow ([#278](https://github.com/apache-superset/superset-ui/issues/278)) ([e5a8dd1](https://github.com/apache-superset/superset-ui/commit/e5a8dd172cd6c05a006326cec8d78dfa970dd682)) +* JS exception: Cannot read property "dispatch" of undefined ([#287](https://github.com/apache-superset/superset-ui/issues/287)) ([52ab79c](https://github.com/apache-superset/superset-ui/commit/52ab79c24e7e7bb7fe9b314d3440abed30a5025e)) +* Line not hidden after legend selection ([#204](https://github.com/apache-superset/superset-ui/issues/204)) ([ac814f9](https://github.com/apache-superset/superset-ui/commit/ac814f99afdc0258e23cd588dd4f2a52e0facb10)) +* lint ([4d30c83](https://github.com/apache-superset/superset-ui/commit/4d30c830b8b6cff22fb4da292a3c1d7120733b50)) +* lint ([3df2999](https://github.com/apache-superset/superset-ui/commit/3df29993623fe1797aeb8b7943ee7be89f4561dc)) +* Making viz components respect D3 Format from metric ([#280](https://github.com/apache-superset/superset-ui/issues/280)) ([d38dcb9](https://github.com/apache-superset/superset-ui/commit/d38dcb91ea98d3ae2bdd34a427370708852f9d67)) +* minor wordcloud update ([e269636](https://github.com/apache-superset/superset-ui/commit/e2696367d8bcd5a6b7a6c92460bf7df9c13286bc)) +* nvd3 charts break on stateChange dispatch ([#159](https://github.com/apache-superset/superset-ui/issues/159)) ([525779d](https://github.com/apache-superset/superset-ui/commit/525779d31bf8c94c6b64936d60a518350e1ebd75)) +* nvd3 tooltip bolding/non-linebreak on ONLY header row ([#291](https://github.com/apache-superset/superset-ui/issues/291)) ([e49f082](https://github.com/apache-superset/superset-ui/commit/e49f0820e33094d6ce913132742344e0432c5205)) +* only remove tooltips relating to a single vis ([#167](https://github.com/apache-superset/superset-ui/issues/167)) ([1a58394](https://github.com/apache-superset/superset-ui/commit/1a583943d3704ead6a099dd429711e51732821a6)) +* pass all props to transformProps in LineMulti chart ([#247](https://github.com/apache-superset/superset-ui/issues/247)) ([54aec5b](https://github.com/apache-superset/superset-ui/commit/54aec5b397591d319dcf6c52892c2ea0403d526a)) +* remove redundant target from sankey tooltip ([#193](https://github.com/apache-superset/superset-ui/issues/193)) ([c4b6ed2](https://github.com/apache-superset/superset-ui/commit/c4b6ed20747a0a4e6b63dd49a0d9bcf353ee9c4e)) +* Replace unsafe lifecycle methods ([#285](https://github.com/apache-superset/superset-ui/issues/285)) ([06051ef](https://github.com/apache-superset/superset-ui/commit/06051efbfbb7b113b871d1e03742a01dda5d97b7)) +* Sunburst chart respects and prefers Metric's D3 Format ([#282](https://github.com/apache-superset/superset-ui/issues/282)) ([ee4deb2](https://github.com/apache-superset/superset-ui/commit/ee4deb2e7dbc59488bb08ed0b50eafba33cb5a6e)) +* **adjusted upstream break change:** adjusted upstream break change ([bc198a6](https://github.com/apache-superset/superset-ui/commit/bc198a6342e31171746bf92af335415e7736831b)) +* **bump lunar version of datatable:** bump lunar version of datatable ([3bd5c4a](https://github.com/apache-superset/superset-ui/commit/3bd5c4ac07f986d6c21ba00bf7f8c6867193b840)) +* **datatable:** adding the consideration of padding ([#198](https://github.com/apache-superset/superset-ui/issues/198)) ([8b1305f](https://github.com/apache-superset/superset-ui/commit/8b1305f4fbe8ac1e34d20bb0fc46b312defd634d)) +* **fix issues in superset:** fix issues in superset ([efb6ad9](https://github.com/apache-superset/superset-ui/commit/efb6ad95335e3d059d82468936bb5833258a430e)) +* **fix types:** fix types ([1163b50](https://github.com/apache-superset/superset-ui/commit/1163b504878d5911bd06faaaf97b44653d02ef33)) +* **force to publish new version:** force to publish new version ([55c7510](https://github.com/apache-superset/superset-ui/commit/55c7510f804608ae94424c7b2f6c0c401011f99a)) +* **legacy-plugin-chart-horizon:** horizon chart should scroll when overflowing ([#180](https://github.com/apache-superset/superset-ui/issues/180)) ([38506b9](https://github.com/apache-superset/superset-ui/commit/38506b9166fb687bc4cbd256f93e107cfbd1ce4a)) +* **memorize filter in state:** memorize filter in state ([880d18c](https://github.com/apache-superset/superset-ui/commit/880d18c4f1396fe2941f6db0555848c36b5d8bc0)) +* **table:** fix rendering boolean ([#256](https://github.com/apache-superset/superset-ui/issues/256)) ([faa11ac](https://github.com/apache-superset/superset-ui/commit/faa11ac96a58a80e91ca20e98f7e078b10099119)) +* **table:** fix sorting, column width calculation, and text wrapping ([#253](https://github.com/apache-superset/superset-ui/issues/253)) ([12dd847](https://github.com/apache-superset/superset-ui/commit/12dd847851acd97fe531f0b97784e437773a4596)) +* **table:** fixed performance issue ([#241](https://github.com/apache-superset/superset-ui/issues/241)) ([c68f9d7](https://github.com/apache-superset/superset-ui/commit/c68f9d7fa8990d2010b3a824de912e43ace1bf58)) +* **table:** TableVis dynamic height enabled ([#229](https://github.com/apache-superset/superset-ui/issues/229)) ([bd4efa3](https://github.com/apache-superset/superset-ui/commit/bd4efa3d963268b4e57fb63874449a39c6819c33)), closes [#233](https://github.com/apache-superset/superset-ui/issues/233) +* **tablevis:** Set proper width for each column ([#189](https://github.com/apache-superset/superset-ui/issues/189)) ([1a28e7f](https://github.com/apache-superset/superset-ui/commit/1a28e7f1d6e1169e82d53ba2de59bdb9718f012d)) +* 🐛 broken unit test due to missing babel-polyfill ([b6c62df](https://github.com/apache-superset/superset-ui/commit/b6c62dff2f7f1182c96389772cb77483ffdd6786)) +* bar label for many bars and long labels ([#21](https://github.com/apache-superset/superset-ui/issues/21)) ([97a35dd](https://github.com/apache-superset/superset-ui/commit/97a35dd5d8889097e4e9e04857d88d4f8dd49689)) +* big number with trendline fix ([#34](https://github.com/apache-superset/superset-ui/issues/34)) ([912d076](https://github.com/apache-superset/superset-ui/commit/912d0765922cd9e16a2879bcd89f2a0c44174e6a)) +* broken build due to file rename in vega-lite ([#37](https://github.com/apache-superset/superset-ui/issues/37)) ([8722dad](https://github.com/apache-superset/superset-ui/commit/8722dad9ca34f6ff4c2e47710d89867c894b847e)) +* broken build due to vega type ([#96](https://github.com/apache-superset/superset-ui/issues/96)) ([1bcaa7f](https://github.com/apache-superset/superset-ui/commit/1bcaa7faaded6bbfe60c43afcb6131f29088b506)) +* convert scale config to data-ui's config correctly ([#115](https://github.com/apache-superset/superset-ui/issues/115)) ([8e8b724](https://github.com/apache-superset/superset-ui/commit/8e8b724e9cde80d9867b5b7b7c187aa5702c2f54)) +* disable lazy import for line chart and box plot ([#82](https://github.com/apache-superset/superset-ui/issues/82)) ([a254f68](https://github.com/apache-superset/superset-ui/commit/a254f68654e211d33510505db6f14108764b827c)) +* dual line chart color consistency for secondary y axis ([#18](https://github.com/apache-superset/superset-ui/issues/18)) ([41701b9](https://github.com/apache-superset/superset-ui/commit/41701b997ce9a17b0474e596cccb04ae552eacc2)) +* exception thrown for charts without a x-axis ([#36](https://github.com/apache-superset/superset-ui/issues/36)) ([3e45f2e](https://github.com/apache-superset/superset-ui/commit/3e45f2e3048a0683b98e947e685e92a4bd4c320b)) +* fine tune time pivot chart tooltip ([#33](https://github.com/apache-superset/superset-ui/issues/33)) ([088c5bb](https://github.com/apache-superset/superset-ui/commit/088c5bb19c706417159efdf185b0e5f7eff441a1)) +* gradient not working when y axis title has space ([#98](https://github.com/apache-superset/superset-ui/issues/98)) ([b0a342a](https://github.com/apache-superset/superset-ui/commit/b0a342afca75d159615c3a72e7be070f5ce40cb5)) +* gridlines ([a788b48](https://github.com/apache-superset/superset-ui/commit/a788b48ff601022c320576f429ec08bb2f1d0445)) +* heatmap errors with null data ([d773983](https://github.com/apache-superset/superset-ui/commit/d7739832079237c510dada44d9438f27e263719b)) +* ignore disabled series in stacked bar values ([#116](https://github.com/apache-superset/superset-ui/issues/116)) ([6d56d92](https://github.com/apache-superset/superset-ui/commit/6d56d92825e484fb6f5d564868638f9d60a3179d)) +* invalid margin breaking chart ([#102](https://github.com/apache-superset/superset-ui/issues/102)) ([6aa8d00](https://github.com/apache-superset/superset-ui/commit/6aa8d0058216b95b52db5c1b9db1a327c6cf2a5a)) +* lazily create metadata ([#74](https://github.com/apache-superset/superset-ui/issues/74)) ([9b8c83b](https://github.com/apache-superset/superset-ui/commit/9b8c83b23af912615e0a1752a068c283a64b8895)) +* legend types ([2309c44](https://github.com/apache-superset/superset-ui/commit/2309c44a46bea260dd4d563629a0bbb4d9870384)) +* line chart tooltip should use full datetime format ([#24](https://github.com/apache-superset/superset-ui/issues/24)) ([dfb6599](https://github.com/apache-superset/superset-ui/commit/dfb65994138e60f7ce562799c35bcc1b6af73a2e)) +* line chart tooltip when there is only one lien ([#103](https://github.com/apache-superset/superset-ui/issues/103)) ([c1ac4ab](https://github.com/apache-superset/superset-ui/commit/c1ac4ab5430ce5e16c9b65c9f4a6dff45efdc323)) +* lint ([3cb3b8e](https://github.com/apache-superset/superset-ui/commit/3cb3b8ea51322b6824e7f74173010b1aac6b0c1b)) +* lint ([#79](https://github.com/apache-superset/superset-ui/issues/79)) ([67e30a6](https://github.com/apache-superset/superset-ui/commit/67e30a65595a8a949cca7f7b524d203b709ad993)) +* list css as side effects ([#57](https://github.com/apache-superset/superset-ui/issues/57)) ([b743960](https://github.com/apache-superset/superset-ui/commit/b743960ce1f054bb43f805970d61a55a65adcd71)) +* make pivot table handle null string ([#23](https://github.com/apache-superset/superset-ui/issues/23)) ([5746975](https://github.com/apache-superset/superset-ui/commit/5746975fd85c50a296b018d32e1ce35a80bfe5b3)) +* move react to table peerdependency ([#179](https://github.com/apache-superset/superset-ui/issues/179)) ([92028c2](https://github.com/apache-superset/superset-ui/commit/92028c2ce6fe381724d7b6e6d942149cc93e612b)) +* move series in front of xy gridlines ([#119](https://github.com/apache-superset/superset-ui/issues/119)) ([32850ef](https://github.com/apache-superset/superset-ui/commit/32850efb828cd9a5865f92c7a4a08325120f6396)) +* **preset-chart-xy:** Pick LegendRenderer ([#118](https://github.com/apache-superset/superset-ui/issues/118)) ([d10eba0](https://github.com/apache-superset/superset-ui/commit/d10eba0631445f127532c3b1de0379d075a110df)) +* **tablevis:** update datatable change ([9846de5](https://github.com/apache-superset/superset-ui/commit/9846de551744987964d801649f8c82973a856936)) +* line chart does not handle temporal field correctly ([#68](https://github.com/apache-superset/superset-ui/issues/68)) ([93e040f](https://github.com/apache-superset/superset-ui/commit/93e040f1955f17f2c79f2554848ff94b4e5ae152)) +* make line chart query operate in time series mode ([#71](https://github.com/apache-superset/superset-ui/issues/71)) ([b732022](https://github.com/apache-superset/superset-ui/commit/b732022ce10102c64497c0d718ea88a63959d750)) +* move padding ([b5f00a5](https://github.com/apache-superset/superset-ui/commit/b5f00a58b030f5b89b64cb8e153427fcb6e265cc)) +* nvd3 line chart y axis bounds ([#17](https://github.com/apache-superset/superset-ui/issues/17)) ([d8655c7](https://github.com/apache-superset/superset-ui/commit/d8655c7d38f0424012fc3747bb6c1dfbda2fa540)) +* remove sticky tooltip when query returns no data in explore view ([#42](https://github.com/apache-superset/superset-ui/issues/42)) ([4e5b8d3](https://github.com/apache-superset/superset-ui/commit/4e5b8d3c4ad8a30dbbaeed2dcb56b1518de6012d)) +* rename file from js to ts ([#75](https://github.com/apache-superset/superset-ui/issues/75)) ([b9f5059](https://github.com/apache-superset/superset-ui/commit/b9f5059ed2ca4da901a58e90068ac6abe220f38f)) +* resolve issues post `0.10.0` ([bdd647a](https://github.com/apache-superset/superset-ui/commit/bdd647ad78c0a4e7a56830da214be333a10c407c)) +* responsive y-axis on stacked charts ([#141](https://github.com/apache-superset/superset-ui/issues/141)) ([c85b149](https://github.com/apache-superset/superset-ui/commit/c85b14984d62fa79228fb742bbf06e2028da4a0d)) +* scale type category missing ordinal ([9d0b2da](https://github.com/apache-superset/superset-ui/commit/9d0b2da69dcf6b4d482043cdb3617e6961190f7f)) +* show only necessary tick labels on log scale ([#19](https://github.com/apache-superset/superset-ui/issues/19)) ([f642031](https://github.com/apache-superset/superset-ui/commit/f642031ea18b0933d2609b1834db2a5da2da8424)) +* single y axis bounds ([#148](https://github.com/apache-superset/superset-ui/issues/148)) ([c58270b](https://github.com/apache-superset/superset-ui/commit/c58270bed03d1ff4f453d1e95d83b8317f7e51c4)) +* use correct number format ([#47](https://github.com/apache-superset/superset-ui/issues/47)) ([2ea399d](https://github.com/apache-superset/superset-ui/commit/2ea399d616177c1a935027f6c26562a85674f65d)) +* word cloud import bug ([#65](https://github.com/apache-superset/superset-ui/issues/65)) ([eeb722e](https://github.com/apache-superset/superset-ui/commit/eeb722e0e33bd365de84b87ac7fc7c4b798156ef)) +* y axis bounds when input are nan ([#22](https://github.com/apache-superset/superset-ui/issues/22)) ([545fd81](https://github.com/apache-superset/superset-ui/commit/545fd813caa5817109466590b060a81a27237f71)) +* y-axis bounds for stacked viz types ([#45](https://github.com/apache-superset/superset-ui/issues/45)) ([eaa2425](https://github.com/apache-superset/superset-ui/commit/eaa24256ea5a287e3021b628e5be352a54ab1da0)) +* **legacy-preset-chart-nvd3:** redraw bar values after legend change ([#7](https://github.com/apache-superset/superset-ui/issues/7)) ([620ad2f](https://github.com/apache-superset/superset-ui/commit/620ad2f2bfe5e4f4848810bedd3061d76f68f600)) +* **legacy-preset-chart-nvd3:** redraw markers after legend interaction ([#6](https://github.com/apache-superset/superset-ui/issues/6)) ([c5df555](https://github.com/apache-superset/superset-ui/commit/c5df555d801f03a30b22dafdb7d30d4e4ec971cd)) +* **legacy-preset-chart-nvd3:** stacked bar charts labels ([#40](https://github.com/apache-superset/superset-ui/issues/40)) ([744f7c8](https://github.com/apache-superset/superset-ui/commit/744f7c8f7234ffaebb31134750b69369a21e5a62)) +* **legacy-preset-chart-nvd3:** tooltip's disappearance and stickiness ([#1](https://github.com/apache-superset/superset-ui/issues/1)) ([d1a2a59](https://github.com/apache-superset/superset-ui/commit/d1a2a597a55f94a87c82fef62d048f25e4eff125)) + + +### Features + +* migrate xy-chart to use encodable ([#438](https://github.com/apache-superset/superset-ui/issues/438)) ([500e0c2](https://github.com/apache-superset/superset-ui/commit/500e0c2e7f9f4543922b1cd8f56435d28c0dc161)), closes [#420](https://github.com/apache-superset/superset-ui/issues/420) [#421](https://github.com/apache-superset/superset-ui/issues/421) [#427](https://github.com/apache-superset/superset-ui/issues/427) [#430](https://github.com/apache-superset/superset-ui/issues/430) [#432](https://github.com/apache-superset/superset-ui/issues/432) [#433](https://github.com/apache-superset/superset-ui/issues/433) [#436](https://github.com/apache-superset/superset-ui/issues/436) +* **big-number:** allow fallback to last available value and fix time range for trend lines ([#403](https://github.com/apache-superset/superset-ui/issues/403)) ([c839ee7](https://github.com/apache-superset/superset-ui/commit/c839ee7617f5ece0f3cc91dfa7f6a9f8a8b816cd)) +* **big-number:** format datetime according to granularity ([#402](https://github.com/apache-superset/superset-ui/issues/402)) ([b17a363](https://github.com/apache-superset/superset-ui/commit/b17a363a6e8d093381f496801eb9eee486cdcab8)) +* 🎸 line chart makes first appearance ([df727b6](https://github.com/apache-superset/superset-ui/commit/df727b6d1a4e35d3e08f13884737d88a3922945f)) +* add box plot ([#78](https://github.com/apache-superset/superset-ui/issues/78)) ([5f21ffd](https://github.com/apache-superset/superset-ui/commit/5f21ffd11177ad44a0a6e0bc35f6986b6babee37)) +* add country map of bulgaria in superset-ui-legacy-plugin-chart-country-map ([#2](https://github.com/apache-superset/superset-ui/issues/2)) ([ba113c2](https://github.com/apache-superset/superset-ui/commit/ba113c2056958ec0c0a84dafff74952377a45c53)) +* add encodeable utilities for chart ([#15](https://github.com/apache-superset/superset-ui/issues/15)) ([3f68efb](https://github.com/apache-superset/superset-ui/commit/3f68efb593553f9315b6c5f40500a2b80212971a)) +* add india to country_map visualization ([#182](https://github.com/apache-superset/superset-ui/issues/182)) ([e16a967](https://github.com/apache-superset/superset-ui/commit/e16a96724b3e3679667b09a7aa0c608b0d7d047d)) +* Add Iran to countries ([#306](https://github.com/apache-superset/superset-ui/issues/306)) ([5cb5c6d](https://github.com/apache-superset/superset-ui/commit/5cb5c6d96c872e44ad632b0d9cd2f69ef8ea3f5a)) +* add Korea(South) to Country Maps ([#230](https://github.com/apache-superset/superset-ui/issues/230)) ([7ca4b8d](https://github.com/apache-superset/superset-ui/commit/7ca4b8dec0ce044a79f06f63f7dcd7cd12180c02)) +* add Liechtenstein to country map chart ([#263](https://github.com/apache-superset/superset-ui/issues/263)) ([fd1c7af](https://github.com/apache-superset/superset-ui/commit/fd1c7afe8aabd5e86026763810797ebebc205887)) +* add properties for font sizing ([#10](https://github.com/apache-superset/superset-ui/issues/10)) ([47b5eff](https://github.com/apache-superset/superset-ui/commit/47b5eff678de2f437fdc4edb3ce67626e2565087)) +* add sankey chart with loops ([#77](https://github.com/apache-superset/superset-ui/issues/77)) ([246c336](https://github.com/apache-superset/superset-ui/commit/246c33659521e5e349c8e0a0aabdb46e5592d306)) +* add scatter plot ([#90](https://github.com/apache-superset/superset-ui/issues/90)) ([1ffeb77](https://github.com/apache-superset/superset-ui/commit/1ffeb7713dbe2f42f55f7ef690593e8434ee98bf)) +* add tooltip and layout components for charts ([#13](https://github.com/apache-superset/superset-ui/issues/13)) ([27227eb](https://github.com/apache-superset/superset-ui/commit/27227ebddceee461a3b22e432bf6d589df8a49e4)) +* add typescript declaration for external packages ([#12](https://github.com/apache-superset/superset-ui/issues/12)) ([79ae24d](https://github.com/apache-superset/superset-ui/commit/79ae24db979d395095743bd712fbcb864c7e2dd6)) +* adding Canada into the list of country map choices ([#48](https://github.com/apache-superset/superset-ui/issues/48)) ([9b91465](https://github.com/apache-superset/superset-ui/commit/9b914654879d277932562d775a6956e64d3566e3)) +* customize no data message in nvd3 charts ([#330](https://github.com/apache-superset/superset-ui/issues/330)) ([4e60731](https://github.com/apache-superset/superset-ui/commit/4e607314951483472a698f7f57c5a0636352d6ca)) +* simply the data processing logic ([604fd44](https://github.com/apache-superset/superset-ui/commit/604fd442ad77d6e8a0fe2f5684552565f065441f)) +* support no data within BigNumber viz ([#327](https://github.com/apache-superset/superset-ui/issues/327)) ([6cc5619](https://github.com/apache-superset/superset-ui/commit/6cc56195f834c652a0fc4edeb934b23e84206641)) +* **added search bar:** added search bar ([f4afc22](https://github.com/apache-superset/superset-ui/commit/f4afc226640c2f8d45823c3ea322cde1328ef3b9)) +* **code refactoring:** code refactoring ([e46c829](https://github.com/apache-superset/superset-ui/commit/e46c8291ac9066f8f41450e3b1b8e590ca19159d)) +* **datatable:** render html correctly ([#199](https://github.com/apache-superset/superset-ui/issues/199)) ([589024b](https://github.com/apache-superset/superset-ui/commit/589024bea68f512871502c31faa54970688bc5ca)) +* **legacy-plugin-chart-country-map:** add Switzerland to country map chart ([#260](https://github.com/apache-superset/superset-ui/issues/260)) ([046c102](https://github.com/apache-superset/superset-ui/commit/046c102f95e268a7427e03dda32f9f09ba0eb3c6)) +* **plugin-chart-word-cloud:** convert word cloud to use encodable ([#258](https://github.com/apache-superset/superset-ui/issues/258)) ([75141fe](https://github.com/apache-superset/superset-ui/commit/75141fe30046bb12621921b5d44c90f257323a89)) +* add basic functionality for icicle chart to display static data ([#165](https://github.com/apache-superset/superset-ui/issues/165)) ([50e9df5](https://github.com/apache-superset/superset-ui/commit/50e9df5dd1dd10a51e6bc75eb80433a747f8c0a6)) +* add getDomain to ChannelEncoder ([2321aaf](https://github.com/apache-superset/superset-ui/commit/2321aaf370856ae8d6343d9215232bab910f1dd3)) +* add types to published list ([0624be5](https://github.com/apache-superset/superset-ui/commit/0624be53f82b9579b9a75e115898e6753194ee99)) +* allow boolean as axis config ([ab0cc0b](https://github.com/apache-superset/superset-ui/commit/ab0cc0b91b9ec26c6ccf7b40e6ccd148bac1e5c6)) +* allow legend overrides at multiple levels ([#81](https://github.com/apache-superset/superset-ui/issues/81)) ([034eda1](https://github.com/apache-superset/superset-ui/commit/034eda1fac618f22c1c8450e5b8ab53642b75098)) +* allow overriding ChartLegend, its style and LegendGroup style ([#112](https://github.com/apache-superset/superset-ui/issues/112)) ([105cf0f](https://github.com/apache-superset/superset-ui/commit/105cf0f6b70e8c28408c2004c01dafa8c373af5b)) +* bring lazy import back ([#84](https://github.com/apache-superset/superset-ui/issues/84)) ([d14e5ba](https://github.com/apache-superset/superset-ui/commit/d14e5bad8364aaf3ecaf7975079f98c0e51c2b79)) +* bump data-ui/xy-chart version ([2111e3a](https://github.com/apache-superset/superset-ui/commit/2111e3a1264d63d8c6eafc7d564fd947bc6854ec)) +* bump dependencies ([814966f](https://github.com/apache-superset/superset-ui/commit/814966fff149c16aa147d77951cff854f3856348)) +* channels can take array of definitions ([2a04891](https://github.com/apache-superset/superset-ui/commit/2a048910aaf09c3218517b42dd13dba6219e596e)) +* create reusable selector factory for Encoder ([a0097fc](https://github.com/apache-superset/superset-ui/commit/a0097fc6d4c0f2627ce24829f13b1b5f48fcd695)) +* file skeleton necessary for icicle chart visualization ([#162](https://github.com/apache-superset/superset-ui/issues/162)) ([83190f0](https://github.com/apache-superset/superset-ui/commit/83190f05afd0156810e6b77b6d5dd8be6b39872d)) +* implement labelFlush behavior for continuous axes ([#117](https://github.com/apache-superset/superset-ui/issues/117)) ([a747ea4](https://github.com/apache-superset/superset-ui/commit/a747ea4c222f9a4b1dab5958b29524112bd34ba4)) +* improve line chart margin/axis and add buildquery ([#66](https://github.com/apache-superset/superset-ui/issues/66)) ([5887ade](https://github.com/apache-superset/superset-ui/commit/5887adec71ff1edd2e1cf72ee140ac9eb5662b0b)) +* improve table performance ([#246](https://github.com/apache-superset/superset-ui/issues/246)) ([082ff23](https://github.com/apache-superset/superset-ui/commit/082ff2345ba676c3e592d9d6b2d5dd98c32c71ec)) +* improve the tooltip for the time pivot chart ([#30](https://github.com/apache-superset/superset-ui/issues/30)) ([ff06cb5](https://github.com/apache-superset/superset-ui/commit/ff06cb5704772b78242e53aa2f23e30cce346037)) +* increment the version number ([#44](https://github.com/apache-superset/superset-ui/issues/44)) ([db64322](https://github.com/apache-superset/superset-ui/commit/db6432272a46e0d20d0fb5b7c781db25a3a5b51d)) +* integrate line chart with build query and update typings ([#73](https://github.com/apache-superset/superset-ui/issues/73)) ([9cbbe6e](https://github.com/apache-superset/superset-ui/commit/9cbbe6ed6bf0d6fb48711bef822652fe34eaca46)) +* line chart with revised encodeable utilities ([#26](https://github.com/apache-superset/superset-ui/issues/26)) ([8380c93](https://github.com/apache-superset/superset-ui/commit/8380c934db72fb9e17c5379d50b63f28c740f061)) +* remove children from XYChartLayout parameter ([3a889d2](https://github.com/apache-superset/superset-ui/commit/3a889d25a7ff4c352a3125e633912c2d77a64324)) +* simplify Encoder creation ([e858bcc](https://github.com/apache-superset/superset-ui/commit/e858bcc76584b06c17bda9116b4c9a8cde6bab5b)) +* support custom tooltip for scatterplot and box plot ([8733c01](https://github.com/apache-superset/superset-ui/commit/8733c01481ce31a52a44f799a06683cbb61960c1)) +* support line strokeWidth ([#105](https://github.com/apache-superset/superset-ui/issues/105)) ([cbd7368](https://github.com/apache-superset/superset-ui/commit/cbd736869c03029314c6f000b9e6cb19d5d8a7fc)) +* support tooltip and legend overrides ([#101](https://github.com/apache-superset/superset-ui/issues/101)) ([c63edcd](https://github.com/apache-superset/superset-ui/commit/c63edcd65b8fb2a5d76a15f492515008407069d3)) +* update dependencies to make plugins compatible with 0.11 ([#38](https://github.com/apache-superset/superset-ui/issues/38)) ([93379f4](https://github.com/apache-superset/superset-ui/commit/93379f47f3a4b2b95cf92d0e783f7284b265ab3b)) +* update line chart thumbnail and scale extraction ([#61](https://github.com/apache-superset/superset-ui/issues/61)) ([11ef47e](https://github.com/apache-superset/superset-ui/commit/11ef47e609382c6d23a93674acd0ea0ac2712c62)) +* update type for line chart series ([#175](https://github.com/apache-superset/superset-ui/issues/175)) ([826dad9](https://github.com/apache-superset/superset-ui/commit/826dad99e5b5b0af6de2509e935f6c2b35d52414)) +* upgrade [@superset-ui](https://github.com/superset-ui) to v0.12 ([#183](https://github.com/apache-superset/superset-ui/issues/183)) ([c0133f7](https://github.com/apache-superset/superset-ui/commit/c0133f7f240fb10c77bdf24a9475175b0dae0ea3)) +* **legacy-preset-chart-nvd3:** show negative values on bars ([#8](https://github.com/apache-superset/superset-ui/issues/8)) ([39cfe71](https://github.com/apache-superset/superset-ui/commit/39cfe718be658a045c445325071b079587cc1555)) +* **remove unused package:** remove corejs and other unused package ([2cdf2f6](https://github.com/apache-superset/superset-ui/commit/2cdf2f663f1403381da41eab4eb8a75f2b9274ef)) +* **tablevis:** this pr is to add a new tablevis plguin to the system ([66a9d26](https://github.com/apache-superset/superset-ui/commit/66a9d269e28b5289363da9902f11c5ea01c47e2a)) +* update data format returned from query api and add getGroupBys ([#72](https://github.com/apache-superset/superset-ui/issues/72)) ([084ea37](https://github.com/apache-superset/superset-ui/commit/084ea377669709752aa5af5f89fd5950b2a131ee)) +* update tooltip and use selector ([#31](https://github.com/apache-superset/superset-ui/issues/31)) ([1cf7a22](https://github.com/apache-superset/superset-ui/commit/1cf7a22442540e00a5365c79aa3bf358b285c060)) + + +### Performance Improvements + +* faster legacy table chart ([#385](https://github.com/apache-superset/superset-ui/issues/385)) ([42fa821](https://github.com/apache-superset/superset-ui/commit/42fa821232c2c4ab350ff6c27b76bac706e56749)), closes [/github.com/DataTables/DataTables/blob/83657a29e33ce93ee940ce25684940eb3acb2913/media/js/jquery.dataTables.js#L3113-L3117](https://github.com//github.com/DataTables/DataTables/blob/83657a29e33ce93ee940ce25684940eb3acb2913/media/js/jquery.dataTables.js/issues/L3113-L3117) + + + +## [0.12.19](https://github.com/apache-superset/superset-ui/compare/v0.12.18...v0.12.19) (2020-04-17) + + +### Bug Fixes + +* lint ([ec73623](https://github.com/apache-superset/superset-ui/commit/ec73623181d24241abe5e484d26a61ae17f99689)) + + +### Features + +* **legacy-plugin-chart-paired-t-test:** migrate from another repo ([7cd0363](https://github.com/apache-superset/superset-ui/commit/7cd0363c70f294f9127f672eb4e464320d6e8243)) +* **legacy-plugin-chart-parallel-coordinates:** migrate from another repo ([52e7119](https://github.com/apache-superset/superset-ui/commit/52e711950a01e96a36530cb77b5388b205ee251e)) +* **legacy-plugin-chart-partition:** migrate from another repo ([1ab9fea](https://github.com/apache-superset/superset-ui/commit/1ab9feac7f9d52435ce61690abd30540442e477e)) +* **legacy-plugin-chart-pivot-table:** migrate from another repo ([d631b17](https://github.com/apache-superset/superset-ui/commit/d631b17597483f981f5de67d2c482e8fae94dc55)) +* **style:** add style to umbrella package ([#366](https://github.com/apache-superset/superset-ui/issues/366)) ([4ab96f3](https://github.com/apache-superset/superset-ui/commit/4ab96f34b3dd5768a6f40d777147b9b8e6f13222)) +* migrate heatmap, horizon, iframe and markup ([#367](https://github.com/apache-superset/superset-ui/issues/367)) ([152e457](https://github.com/apache-superset/superset-ui/commit/152e4577ab7c8aedc76a3b1e83bf7f2867c6de79)) + + + +## [0.12.18](https://github.com/apache-superset/superset-ui/compare/v0.12.17...v0.12.18) (2020-04-15) + + +### Features + +* migrate legacy-plugin-chart-chord ([#365](https://github.com/apache-superset/superset-ui/issues/365)) ([ea31f9f](https://github.com/apache-superset/superset-ui/commit/ea31f9f46b260e347907c3b6cbf27ceed9ed219d)) + + + +## [0.12.17](https://github.com/apache-superset/superset-ui/compare/v0.12.16...v0.12.17) (2020-04-15) + + +### Bug Fixes + +* publish settings ([341c122](https://github.com/apache-superset/superset-ui/commit/341c122cb4f2b59c31b590a9146cf9976597888d)) + + + +## [0.12.16](https://github.com/apache-superset/superset-ui/compare/v0.12.15...v0.12.16) (2020-04-15) + + +### Features + +* style package for theming and styled components ([#362](https://github.com/apache-superset/superset-ui/issues/362)) ([316c913](https://github.com/apache-superset/superset-ui/commit/316c913afc8d571bf2d30004b3254c977bf59d2b)) + + +## [0.12.15](https://github.com/apache-superset/superset-ui/compare/v0.12.14...v0.12.15) (2020-04-13) + + +### Features + +* make CategoricalScale compatible with D3 ScaleOrdinal ([#357](https://github.com/apache-superset/superset-ui/issues/357)) ([b802974](https://github.com/apache-superset/superset-ui/commit/b8029741d87b97f93d8bf43c649983f14693635d)) +* make time formatter handle number and fix formatters type warnings ([#358](https://github.com/apache-superset/superset-ui/issues/358)) ([aaf17ac](https://github.com/apache-superset/superset-ui/commit/aaf17ac0a5da7895796ca4f3dde75e7c259b1d9b)) + + + +## [0.12.14](https://github.com/apache-superset/superset-ui/compare/v0.12.13...v0.12.14) (2020-04-13) + + +### Features + +* add calendar package and storybook ([#356](https://github.com/apache-superset/superset-ui/issues/356)) ([daf47bd](https://github.com/apache-superset/superset-ui/commit/daf47bd03f78adde3d5eb003cda0d7071c3473da)) +* allow toggling of table viz's bar chart backgrounds ([#352](https://github.com/apache-superset/superset-ui/issues/352)) ([5d5ade9](https://github.com/apache-superset/superset-ui/commit/5d5ade93d4f2fd3d5b8ae52823d26d51aef6fead)) + + + +## [0.12.13](https://github.com/apache-superset/superset-ui/compare/v0.12.12...v0.12.13) (2020-04-07) + + +### Bug Fixes + +* **legacy-plugin-chart-table:** time column formating ([#340](https://github.com/apache-superset/superset-ui/issues/340)) ([6c7f710](https://github.com/apache-superset/superset-ui/commit/6c7f7106cc0e84eacd16f7f2e86ffc619ffe075a)) +* new line at end ([e8d59e5](https://github.com/apache-superset/superset-ui/commit/e8d59e532c0e7f0ecccebaed26ee6b9d4e309f28)) + + +### Features + +* add validator to umbrella package ([#327](https://github.com/apache-superset/superset-ui/issues/327)) ([b1a02b9](https://github.com/apache-superset/superset-ui/commit/b1a02b9ef64a70b7fb3d5dc9a599ea337866aba4)) + + +### Reverts + +* Revert "build: try to merge superset-ui-plugins" ([6be7b2f](https://github.com/apache-superset/superset-ui/commit/6be7b2f007fc241fbf641553d5852db778588fda)) +* Revert "build: clean up tsbuild.info, too" ([39d983a](https://github.com/apache-superset/superset-ui/commit/39d983a9a5ac1819f23cd1a547a8d0fbe54d29a8)) + + + +## [0.12.12](https://github.com/apache-superset/superset-ui/compare/v0.12.11...v0.12.12) (2020-04-01) + + +### Features + +* add validator package ([#322](https://github.com/apache-superset/superset-ui/issues/322)) ([ea78a4e](https://github.com/apache-superset/superset-ui/commit/ea78a4e41a9e1e4b7f3fb86c9d61020c89652804)) + + + +## [0.12.11](https://github.com/apache-superset/superset-ui/compare/v0.12.10...v0.12.11) (2020-03-06) + + +### Bug Fixes + +* small rendering for no results message ([#309](https://github.com/apache-superset/superset-ui/issues/309)) ([e7ff68c](https://github.com/apache-superset/superset-ui/commit/e7ff68c48d2d3e1a7df30967a74c7695d3837894)) + + + +## [0.12.10](https://github.com/apache-superset/superset-ui/compare/v0.12.9...v0.12.10) (2020-03-04) + + +### Features + +* add more support for undefined format to number and time formatters ([#308](https://github.com/apache-superset/superset-ui/issues/308)) ([44ad062](https://github.com/apache-superset/superset-ui/commit/44ad062dd02d080362dac28782c0327cc9fa3445)) + + + +## [0.12.9](https://github.com/apache-superset/superset-ui/compare/v0.12.8...v0.12.9) (2020-03-04) + + +### Features + +* make formatTime and formatNumber handle undefined format ([#307](https://github.com/apache-superset/superset-ui/issues/307)) ([768cfd5](https://github.com/apache-superset/superset-ui/commit/768cfd5f627a82b5dfcc0546001a54aa0ff0323c)) + + + +## [0.12.8](https://github.com/apache-superset/superset-ui/compare/v0.12.7...v0.12.8) (2020-03-04) + + +### Features + +* add NoResultsComponent to charts ([#305](https://github.com/apache-superset/superset-ui/issues/305)) ([42060a0](https://github.com/apache-superset/superset-ui/commit/42060a0e7addd808153f13a27947310f2a7a477d)) +* **number-format:** bump pretty-ms to 5.1.0 ([#262](https://github.com/apache-superset/superset-ui/issues/262)) ([0d3746e](https://github.com/apache-superset/superset-ui/commit/0d3746ea254d8d957cc3a3ba21dfd4cbc405c55a)) + + + +## [0.12.7](https://github.com/apache-superset/superset-ui/compare/v0.12.6...v0.12.7) (2019-11-20) + + +### Bug Fixes + +* **dimension:** set 0 width/height in createHiddenSvgNode ([#261](https://github.com/apache-superset/superset-ui/issues/261)) ([7170f48](https://github.com/apache-superset/superset-ui/commit/7170f4826a79c5cf90ffc45247821872785d2f66)) + + + +## [0.12.6](https://github.com/apache-superset/superset-ui/compare/v0.12.5...v0.12.6) (2019-11-20) + + +### Bug Fixes + +* typing issues surfaced by typescript 3.7 ([#260](https://github.com/apache-superset/superset-ui/issues/260)) ([a72c3dd](https://github.com/apache-superset/superset-ui/commit/a72c3dd491d63e16434453d21b2307cc0598130c)) + + + +## [0.12.5](https://github.com/apache-superset/superset-ui/compare/v0.12.4...v0.12.5) (2019-11-19) + + +### Bug Fixes + +* d3 scale types ([#246](https://github.com/apache-superset/superset-ui/issues/246)) ([1bb49a8](https://github.com/apache-superset/superset-ui/commit/1bb49a8f1d2d8b4ea10676091a40cf12686b8cb6)) + + +### Features + +* add @superset-ui/superset-ui package as one-stop install ([#255](https://github.com/apache-superset/superset-ui/issues/255)) ([f0899d8](https://github.com/apache-superset/superset-ui/commit/f0899d85999dee620563597e13b480b85059cc53)) + + + +## [0.12.4](https://github.com/apache-superset/superset-ui/compare/v0.12.3...v0.12.4) (2019-11-12) + + +### Bug Fixes + +* build error ([#235](https://github.com/apache-superset/superset-ui/issues/235)) ([f8e5dda](https://github.com/apache-superset/superset-ui/commit/f8e5ddad1431e2ca243c3ef5a66d30a2bfb3366c)) + + +### Features + +* add promiseTimeout ([#223](https://github.com/apache-superset/superset-ui/issues/223)) ([d02bb82](https://github.com/apache-superset/superset-ui/commit/d02bb82d3e220f5e7b23545fffa64a5292cc7987)) +* **time-format:** bump d3-time-format ([#244](https://github.com/apache-superset/superset-ui/issues/244)) ([c31a085](https://github.com/apache-superset/superset-ui/commit/c31a085b1c9dab6ca9a389b97f35fffc682f7c34)) + + +## [0.12.3](https://github.com/apache-superset/superset-ui/compare/v0.12.2...v0.12.3) (2019-09-04) + + +### Bug Fixes + +* fix React.Fragment complaining about width/height ([#219](https://github.com/apache-superset/superset-ui/issues/219)) ([3e8ca39](https://github.com/apache-superset/superset-ui/commit/3e8ca39)) + + +### Features + +* add functions for parsing scales ([#207](https://github.com/apache-superset/superset-ui/issues/207)) ([6f56ed9](https://github.com/apache-superset/superset-ui/commit/6f56ed9)) +* add Wrapper support and bounding box for dynamic width/height ([#215](https://github.com/apache-superset/superset-ui/issues/215)) ([c83ba1f](https://github.com/apache-superset/superset-ui/commit/c83ba1f)) + + + +## [0.12.2](https://github.com/apache-superset/superset-ui/compare/v0.12.1...v0.12.2) (2019-08-26) + + +### Bug Fixes + +* remove is_prequery and prequeries ([#208](https://github.com/apache-superset/superset-ui/issues/208)) ([ddaf104](https://github.com/apache-superset/superset-ui/commit/ddaf104)) + + + +## [0.12.1](https://github.com/apache-superset/superset-ui/compare/v0.12.0...v0.12.1) (2019-08-26) + + +### Bug Fixes + +* peerDependencies version ([#210](https://github.com/apache-superset/superset-ui/issues/210)) ([4d79dff](https://github.com/apache-superset/superset-ui/commit/4d79dff)) + + +### Features + +* add duration formatter ([#209](https://github.com/apache-superset/superset-ui/issues/209)) ([dcf89a2](https://github.com/apache-superset/superset-ui/commit/dcf89a2)) + + + +# [0.12.0](https://github.com/apache-superset/superset-ui/compare/v0.11.15...v0.12.0) (2019-08-23) + + +### Features + +* add control panel support to chart plugin ([#203](https://github.com/apache-superset/superset-ui/issues/203)) ([920d389](https://github.com/apache-superset/superset-ui/commit/920d389)) +* add functions for parsing formatters from encoding ([#205](https://github.com/apache-superset/superset-ui/issues/205)) ([8906aa0](https://github.com/apache-superset/superset-ui/commit/8906aa0)) +* Add types and type guards for encodable ([#201](https://github.com/apache-superset/superset-ui/issues/201)) ([6cff25f](https://github.com/apache-superset/superset-ui/commit/6cff25f)) + + +### BREAKING CHANGES + +* **chart:** deprecate old SuperChart API that accepts chartProps ([#202](https://github.com/apache-superset/superset-ui/issues/202)) ([af877c6](https://github.com/apache-superset/superset-ui/commit/af877c6)) + + * No longer accept `chartProps` as a single prop in ``. Developers must specify each field in chartProps individually. + +* **chart:** split superset-ui/query from superset-ui/chart ([#178](https://github.com/apache-superset/superset-ui/issues/178)) ([630d3e5](https://github.com/apache-superset/superset-ui/commit/630d3e5)) + + * some api and types are removed from `@superset-ui/chart` and moved to `/query` + +* **chart:** remove and rename fields in ChartProps ([#174](https://github.com/apache-superset/superset-ui/issues/174)) ([b53b839](https://github.com/apache-superset/superset-ui/commit/b53b839)) + + +## [0.11.15](https://github.com/apache-superset/superset-ui/compare/v0.11.14...v0.11.15) (2019-08-06) + + +### Features + +* optimize functions for getting text dimension ([#199](https://github.com/apache-superset/superset-ui/issues/199)) ([ad0fa42](https://github.com/apache-superset/superset-ui/commit/ad0fa42)) + + + +## [0.11.14](https://github.com/apache-superset/superset-ui/compare/v0.11.13...v0.11.14) (2019-08-05) + + +### Bug Fixes + +* eslint issues ([#198](https://github.com/apache-superset/superset-ui/issues/198)) ([12aeb4a](https://github.com/apache-superset/superset-ui/commit/12aeb4a)) +* **connection:** disable caching when on an insecure connection ([#194](https://github.com/apache-superset/superset-ui/issues/194)) ([ca256cd](https://github.com/apache-superset/superset-ui/commit/ca256cd)), closes [#193](https://github.com/apache-superset/superset-ui/issues/193) +* clean up unneeded Promise.resolves() ([#185](https://github.com/apache-superset/superset-ui/issues/185)) ([06382a5](https://github.com/apache-superset/superset-ui/commit/06382a5)) +* move eslint disable comment in reactify test ([#184](https://github.com/apache-superset/superset-ui/issues/184)) ([795d2ed](https://github.com/apache-superset/superset-ui/commit/795d2ed)) + + +### Features + +* allow reactify callbacks to access props ([#200](https://github.com/apache-superset/superset-ui/issues/200)) ([9d6f5c0](https://github.com/apache-superset/superset-ui/commit/9d6f5c0)) +* support locale in number and time format ([#182](https://github.com/apache-superset/superset-ui/issues/182)) ([e1f8773](https://github.com/apache-superset/superset-ui/commit/e1f8773)) + + + +## [0.11.13](https://github.com/apache-superset/superset-ui/compare/v0.11.12...v0.11.13) (2019-06-19) + + +### Bug Fixes + +* wrong type for filters field ([#183](https://github.com/apache-superset/superset-ui/issues/183)) ([18ef7d9](https://github.com/apache-superset/superset-ui/commit/18ef7d9)) + + + +## [0.11.12](https://github.com/apache-superset/superset-ui/compare/v0.11.11...v0.11.12) (2019-06-18) + + +### Features + +* store reference to container and update bindings ([#180](https://github.com/apache-superset/superset-ui/issues/180)) ([00e9a40](https://github.com/apache-superset/superset-ui/commit/00e9a40)) + + + +## [0.11.11](https://github.com/apache-superset/superset-ui/compare/v0.11.10...v0.11.11) (2019-06-18) + + +### Features + +* add error boundary and responsiveness to SuperChart ([#175](https://github.com/apache-superset/superset-ui/issues/175)) ([c17b13d](https://github.com/apache-superset/superset-ui/commit/c17b13d)) + + + +## [0.11.10](https://github.com/apache-superset/superset-ui/compare/v0.11.9...v0.11.10) (2019-06-13) + + +### Features + +* add parseLength function to @superset-ui/dimension ([#171](https://github.com/apache-superset/superset-ui/issues/171)) ([c0ef45f](https://github.com/apache-superset/superset-ui/commit/c0ef45f)) +* allow chart plugin to be unregistered ([#168](https://github.com/apache-superset/superset-ui/issues/168)) ([32f8dd3](https://github.com/apache-superset/superset-ui/commit/32f8dd3)) + + + +## [0.11.9](https://github.com/apache-superset/superset-ui/compare/v0.11.8...v0.11.9) (2019-05-25) + + +### Bug Fixes + +* remove padding in WithLegend ([2f0a400](https://github.com/apache-superset/superset-ui/commit/2f0a400)) + + + +## [0.11.8](https://github.com/apache-superset/superset-ui/compare/v0.11.7...v0.11.8) (2019-05-23) + + +### Features + +* update ChartFormData and QueryObject to support filters. ([#164](https://github.com/apache-superset/superset-ui/issues/164)) ([025d5bc](https://github.com/apache-superset/superset-ui/commit/025d5bc)) + + + +## [0.11.7](https://github.com/apache-superset/superset-ui/compare/v0.11.6...v0.11.7) (2019-05-17) + + +### Features + +* improve margin merging ([#159](https://github.com/apache-superset/superset-ui/issues/159)) ([7832747](https://github.com/apache-superset/superset-ui/commit/7832747)) + + + +## [0.11.6](https://github.com/apache-superset/superset-ui/compare/v0.11.5...v0.11.6) (2019-05-16) + + +### Bug Fixes + +* lint ([#144](https://github.com/apache-superset/superset-ui/issues/144)) ([bf24316](https://github.com/apache-superset/superset-ui/commit/bf24316)) + + +### Features + +* add hooks ([#158](https://github.com/apache-superset/superset-ui/issues/158)) ([7b3ab5f](https://github.com/apache-superset/superset-ui/commit/7b3ab5f)) + + + +## [0.11.12](https://github.com/apache-superset/superset-ui/compare/v0.11.11...v0.11.12) (2019-06-18) + + +### ✨ Features + +* store reference to container and update bindings ([#180](https://github.com/apache-superset/superset-ui/issues/180)) ([00e9a40](https://github.com/apache-superset/superset-ui/commit/00e9a40)) + + + +## [0.11.11](https://github.com/apache-superset/superset-ui/compare/v0.11.10...v0.11.11) (2019-06-18) + + +### ✨ Features + +* add error boundary and responsiveness to SuperChart ([#175](https://github.com/apache-superset/superset-ui/issues/175)) ([c17b13d](https://github.com/apache-superset/superset-ui/commit/c17b13d)) + + + +## [0.11.10](https://github.com/apache-superset/superset-ui/compare/v0.11.9...v0.11.10) (2019-06-13) + + +### ✨ Features + +* add parseLength function to @superset-ui/dimension ([#171](https://github.com/apache-superset/superset-ui/issues/171)) ([c0ef45f](https://github.com/apache-superset/superset-ui/commit/c0ef45f)) +* allow chart plugin to be unregistered ([#168](https://github.com/apache-superset/superset-ui/issues/168)) ([32f8dd3](https://github.com/apache-superset/superset-ui/commit/32f8dd3)) + + + +## [0.11.9](https://github.com/apache-superset/superset-ui/compare/v0.11.8...v0.11.9) (2019-05-25) + + +### 🐞 Bug Fixes + +* remove padding in WithLegend ([2f0a400](https://github.com/apache-superset/superset-ui/commit/2f0a400)) + + + +## [0.11.8](https://github.com/apache-superset/superset-ui/compare/v0.11.7...v0.11.8) (2019-05-23) + + +### ✨ Features + +* update ChartFormData and QueryObject to support filters. ([#164](https://github.com/apache-superset/superset-ui/issues/164)) ([025d5bc](https://github.com/apache-superset/superset-ui/commit/025d5bc)) + + + +## [0.11.7](https://github.com/apache-superset/superset-ui/compare/v0.11.6...v0.11.7) (2019-05-17) + + +### ✨ Features + +* improve margin merging ([#159](https://github.com/apache-superset/superset-ui/issues/159)) ([7832747](https://github.com/apache-superset/superset-ui/commit/7832747)) + + + +## [0.11.6](https://github.com/apache-superset/superset-ui/compare/v0.11.5...v0.11.6) (2019-05-16) + + +### 🐞 Bug Fixes + +* lint ([#144](https://github.com/apache-superset/superset-ui/issues/144)) ([bf24316](https://github.com/apache-superset/superset-ui/commit/bf24316)) + + +### ✨ Features + +* add hooks ([#158](https://github.com/apache-superset/superset-ui/issues/158)) ([7b3ab5f](https://github.com/apache-superset/superset-ui/commit/7b3ab5f)) + + + +## [0.11.5](https://github.com/apache-superset/superset-ui/compare/v0.11.4...v0.11.5) (2019-04-27) + + +### 🐞 Bug Fixes + +* broken build due to failing unit tests ([#141](https://github.com/apache-superset/superset-ui/issues/141)) ([58d56d5](https://github.com/apache-superset/superset-ui/commit/58d56d5)) + + +### ✨ Features + +* add chart companion components ([#139](https://github.com/apache-superset/superset-ui/issues/139)) ([a82faec](https://github.com/apache-superset/superset-ui/commit/a82faec)) + + + +## [0.11.4](https://github.com/apache-superset/superset-ui/compare/v0.11.3...v0.11.4) (2019-04-26) + + +### 🐞 Bug Fixes + +* make translation module type check correctly ([#140](https://github.com/apache-superset/superset-ui/issues/140)) ([c05fe3a](https://github.com/apache-superset/superset-ui/commit/c05fe3a)) + + +## [0.11.3](https://github.com/apache-superset/superset-ui/compare/v0.11.2...v0.11.3) (2019-04-16) + + +### 🐞 Bug Fixes + +* bump peer dependencies ([#136](https://github.com/apache-superset/superset-ui/issues/136)) ([ca3000d](https://github.com/apache-superset/superset-ui/commit/ca3000d)) + + +## [0.11.2](https://github.com/apache-superset/superset-ui/compare/v0.11.1...v0.11.2) (2019-04-08) + + +### 🐞 Bug Fixes + +* smartDateVerbose at seconds ([#132](https://github.com/apache-superset/superset-ui/issues/132)) ([d29bfd0](https://github.com/apache-superset/superset-ui/commit/d29bfd0)) + + +## [0.11.1](https://github.com/apache-superset/superset-ui/compare/v0.11.0...v0.11.1) (2019-04-08) + + +### ✨ Features + +* callback hooks for Reactified components ([#131](https://github.com/apache-superset/superset-ui/issues/131)) ([7603520](https://github.com/apache-superset/superset-ui/commit/7603520)) + + +# [0.11.0](https://github.com/apache-superset/superset-ui/compare/v0.10.10...v0.11.0) (2019-04-02) + + +### 💔 BREAKING CHANGE + +* Revert "Handle BigNumber conversions in JSON properly (without loss of precision) (#71)" (#126) + +This reverts commit e3866129b2b3cbd6e099fe4ab66319c4fe6ae485. It should not cause critical issue or require additional migration from `0.10.x`. However, since this is a change in the expected output, we bump the version to be safe. + +## [0.10.10](https://github.com/apache-superset/superset-ui/compare/v0.10.9...v0.10.10) (2019-04-02) + + +### ✨ Features + +* add support for conditional get requests ([#119](https://github.com/apache-superset/superset-ui/issues/119)) ([2ca55ed](https://github.com/apache-superset/superset-ui/commit/2ca55ed)) + + +## [0.10.9](https://github.com/apache-superset/superset-ui/compare/v0.10.8...v0.10.9) (2019-03-29) + + +### ✨ Features + +* add labels to color scheme ([#125](https://github.com/apache-superset/superset-ui/issues/125)) ([98a14a2](https://github.com/apache-superset/superset-ui/commit/98a14a2)) + + +## [0.10.8](https://github.com/apache-superset/superset-ui/compare/v0.10.7...v0.10.8) (2019-03-26) + + +### 🐞 Bug Fixes + +* Fixed type definition for chart plugin ([#123](https://github.com/apache-superset/superset-ui/issues/123)) ([6230a3b](https://github.com/apache-superset/superset-ui/commit/6230a3b)) + + +### ✨ Features + +* getter function to return color mapping ([#124](https://github.com/apache-superset/superset-ui/issues/124)) ([46e78ad](https://github.com/apache-superset/superset-ui/commit/46e78ad)) + + +## [0.10.7](https://github.com/apache-superset/superset-ui/compare/v0.10.6...v0.10.7) (2019-03-22) + +### 🐞 Bug Fixes + +* import types from package, not monorepo ([#122](https://github.com/apache-superset/superset-ui/pull/122)) + +## [0.10.6](https://github.com/apache-superset/superset-ui/compare/v0.10.5...v0.10.6) (2019-03-22) + +### 🛠️ Internal + +* remove faux `@superset-ui/core` TS declaration ([#121](https://github.com/apache-superset/superset-ui/pull/121)) + +## 0.10.5 (2019-03-21) + +### ✨ Features + +* 🎸 Improved QueryObject to handle more fields (#116) ([57a64b1](https://github.com/apache-superset/superset-ui/commit/57a64b1)), closes [#116](https://github.com/apache-superset/superset-ui/issues/116) +* Add `` (#120) ([ade9dbe](https://github.com/apache-superset/superset-ui/commit/ade9dbe)), closes [#120](https://github.com/apache-superset/superset-ui/issues/120) + +### 📜 Documentation +* Add TS support + CORS demo (#118) ([34581f3](https://github.com/apache-superset/superset-ui/commit/34581f3)), closes [#118](https://github.com/apache-superset/superset-ui/issues/118) + + +## 0.10.4 (2019-03-11) + +### ✨ Features + +* add dimension type (#117) ([e4a22ade305fd6ea962648b86ff88431d77ea41e](https://github.com/apache-superset/superset-ui/commit/e4a22ade305fd6ea962648b86ff88431d77ea41e)), closes [#117](https://github.com/apache-superset/superset-ui/issues/117) +* re-export types from @superset-ui/dimension (#115) ([8c3f8b0f5f2edb558cb8e9f708a17d3d3b4b92aa](https://github.com/apache-superset/superset-ui/commit/8c3f8b0f5f2edb558cb8e9f708a17d3d3b4b92aa)), closes [#115](https://github.com/apache-superset/superset-ui/issues/115) + + + +## v0.10.3 (2019-03-07) + +### ✨ Features + +* feat(superset-ui-dimension): add `mergeMargin()` function (#114) ([c5589384c12f5ff2480e3614cf44b33d85b1299e](https://github.com/apache-superset/superset-ui/commit/c5589384c12f5ff2480e3614cf44b33d85b1299e)), closes [#114](https://github.com/apache-superset/superset-ui/issues/114) + +## v0.10.2 + +### ✨ Features + +* feat(superset-ui-chart): add `.clone()` function to `ChartMetadata` (#112) ([1c1ef3b](https://github.com/apache-superset/superset-ui/commit/1c1ef3b)), closes [#112](https://github.com/apache-superset/superset-ui/issues/112) +* feat(superset-ui-connection): Allow `PUT` and `PATCH` in call API ([efcfd1a](https://github.com/apache-superset/superset-ui/commit/efcfd1a)) + +## v0.10.1 + +### 💔 BREAKING CHANGE + +* `@superset-ui/core` becomes peer dependency + +### 🛠️ Internal + +* refactor: make `@superset-ui/core` peer dependency (#111) ([e9c7b91](https://github.com/apache-superset/superset-ui/commit/e9c7b91)), closes [#111](https://github.com/apache-superset/superset-ui/issues/111) +* chore: add `commitlint` and `commitizen` config ([cae32ce](https://github.com/apache-superset/superset-ui/commit/cae32ce)) +* docs: update changelog ([4d70053](https://github.com/apache-superset/superset-ui/commit/4d70053)) + +## v0.10.0 + +### 💔 BREAKING CHANGES + +* Rename `FormData ` to `ChartFormData` to avoid naming collision with native JS (#100) +* Rename constants in `NumberFormats` changing `_CHANGE` to `_SIGNED`. +* Default number format is now `SMART_NUMBER` instead of `D3` `.3~s`. + +### ✨ Features + +* Add SMART_NUMBER formatter and make it default (#109) +* Enable warnings when values are overwritten in registries (#107) + +### 🛠️ Internal + +* Migrate `plugin-chart-word-cloud` to `@superset-ui-plugins` repo. + +## v0.9.6 + +### 🛠️ Internal + +* Update `@superset-ui/chart` dependency. + +## v0.9.5 + +### 🛠️ Internal + +* Remove unnecessary export types and remove warning when using `esm` output in target application. + +## v0.9.4 + +### 🐞 Bug fixes + +* Make `id` an optional prop for `SuperChart`. + +## v0.9.3 + +### ✨ Features + +* Add new package `@superset-ui/dimension` +* Add new package `@superset-ui/plugin-chart-word-cloud` + +### 🛠️ Internal + +* Minor update and additional unit tests for generator + +## v0.9.2 + +### ✨ Features + +* Add more subgenerators to create package and demo in `superset-ui-legacy` +* Support put and delete HTTP methods in `SupersetClient` + +## v0.9.1 + +### 🐞 Bug fixes + +* Fix TypeScript declaration for package `jed` with `@superset-ui/translation` distribution. + +## v0.9.0 + +### ✨ Features + +* Add `useLegacyApi` field to `ChartMetadata`. This flag will help us determine whether to use the new `/api/v1/query` endpoint or the legacy one. +* Add two generics to `Registry` + * `V` is type of value in the registry + * `W` is type of value returned from `loader` function when using `.registerLoader(key, loader)`. + * `W` can be either `V`, `Promise` or `V | Promise` + * Set `W=V` when does not support asynchronous loader. Making return type of `.get()` become `V` instead of `Promise` + * By default, `W` is set to `V | Promise` to support both synchronous and asynchronous loaders. +* Include and link TypeScript declaration for package `jed` with `@superset-ui/translation` distribution. + +### 🛠️ Internal + +* Convert `@superset-ui/number-format` to TypeScript +* Convert `@superset-ui/time-format` to TypeScript +* Convert `@superset-ui/translation` to TypeScript + +### 💔 BREAKING CHANGES + +* Make number formatter always returns `string`. This is different from previous behavior. + +|Value|formatted value (before)|formatted value (after)| +|------------|------------|-----------| +| `null` | `null` | `'null'` | +| `undefined` | `undefined` | `'undefined'` | +| `NaN` | `NaN` | `'NaN'` | + +* Make time formatter always returns `string`. This is different from previous behavior. + +|Value|formatted value (before)|formatted value (after)| +|------------|------------|-----------| +| `null` | `null` | `'null'` | +| `undefined` | `undefined` | `'undefined'` | +| `NaN` | `NaN` | `'NaN'` | + +## v0.8.0 + +### ✨ Features + +* Add SuperChart and convert to TypeScript +* Allow metrics arrays in form data +* Moved query module from `incubator-superset` into `superset-ui` +* Add `reactify` function from `incubator-superset` + +### 🐞 Bug fixes + +* Handle `BigNumber` conversions to/from JSON without loss of precision + +### 🛠️ Internal + +* Use DefinitelyTyped's `fetch-mock` type def +* Improved type def for `json-bigint` +* Migrated `@superset-ui/chart` to TypeScript +* Migrated `@superset-ui/color` to TypeScript +* Migrated `@superset-ui/core` to TypeScript +* Made `connection` and `color` packages peer dependencies + +## v0.7.2 + +### ✨ Features + +* Make `@superset-ui/time-format` and `@superset-ui/number-format` ignore leading and trailing spaces when looking for formatters. + +## v0.7.1 + +### ✨ Features + +* Add new APIs to `@superset-ui/time-format` + - `createD3TimeFormatter` + - `createMultiFormatter` +* Add new APIs to `@superset-ui/number-format` + - `createD3NumberFormatter` + - `createSiAtMostNDigitFormatter` + +## v0.7.0 + +### ✨ Features + +* Add `@superset-ui/time-format` package +* Add `@superset-ui/number-format` package +* Use the recently added `ExtensibleFunction` to make an instance of `CategoricalColorScale` be a function +* Add `overwritePolicy` for `Registry` so developer can customize whether overwriting is `ALLOW`, `WARN` or `PROHIBIT`. + +### 🐞 Bug fixes + +* Transform input value before setting color. + +### 🛠️ Internal + +* Rewrite `@superset-ui/connection` in TypeScript + +### 💔 BREAKING CHANGES + +* Remove `categoricalColorScale.toFunction()`. Now `categoricalColorScale` itself is already a function. +* The color scales no longer convert input to lowercase before finding color. +* Rename `ColorScheme` field `name` to `id`. +* Change `Registry` constructor API to take object instead of single string name. + +----- + +## v0.6.0 + +### ✨ Features + +* Add `@superset-ui/generator-superset` +* Add `RegistryWithDefaultKey` and `ExtensibleFunction` to `@superset-ui/core` + +### 💔 BREAKING CHANGES + +* `getDefaultSchemeName()` and `setDefaultSchemeName()` are renamed to `getDefaultKey()` and `setDefaultKey()` + +----- + +## v0.5.0 + +### ✨ Features + +* Add `@superset-ui/chart` + +### 🐞 Bug fixes + +* Use simple js to create range + +----- + +## v0.4.0 + +### ✨ Features + +* Add `@superset-ui/color` for color management + +----- + +## v0.3.0 + +### ✨ Features + +* Add new `@superset-ui/core` with data structures and utilities. + +### 💔 BREAKING CHANGES + +* Rename former `@superset-ui/core` to `@superset-ui/connection`. diff --git a/superset-frontend/temporary_superset_ui/superset-ui/CONTRIBUTING.md b/superset-frontend/temporary_superset_ui/superset-ui/CONTRIBUTING.md new file mode 100644 index 000000000000..2361a36c13af --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/CONTRIBUTING.md @@ -0,0 +1,71 @@ +## Contributing guidelines + +### Setup local development + +1. clone this repo +2. have `npm` install package dependencies and manage the symlinking between packages for you + +```sh +git clone ...superset-ui && cd superset-ui +npm ci +npm build +``` + +To build only selected packages or plugins, + +```bash +npm build "*chart-table" +``` + +### File organization + +[lerna](https://github.com/lerna/lerna/) and [npm](https://www.npmjs.com/) are used to manage +versions and dependencies between packages in this monorepo. + +``` +superset-ui/ + lerna.json + package.json + ... + packages/ + package1/ + package.json + ... + src/ + test/ # unit tests + types/ # typescript type declarations + ... + lib/ # commonjs output + esm/ # es module output + ... + ... +``` + +### Builds, linting, and testing + +Each package defines its own build config, linting, and testing. You can have lerna run commands +across all packages using the syntax `npm run test` (or `npm run test:watch` for watch mode) from +the root `@superset-ui` directory. + +- [Using Storybook](docs/storybook.md) - You can test your components independently from Superset + app. +- [Debugging Superset plugins in Superset app](docs/debugging.md) - Sometimes something went wrong + and you have to do it. + +### Committing + +This repository follows +[conventional commits](https://www.conventionalcommits.org/en/v1.0.0-beta.3/) guideline for commit +messages and has a `commitlint` hook which will require you to have the valid commit message before +committing. You can use `npm run commit` to help you create a commit message. + +### Publishing + +**Prerequisite:** You'll need to be a committer on the `apache-superset` organization to be able to +publish new versions of `superset-ui`. + +1. Checkout the `master` branch from the main repo at `apache-superset/superset-ui` - NOT A FORK! +2. run `npm run ci:create-patch-version` to bump the patch version (the most common case) or + `npm run ci:create-minor-version` to bump the minor version. Once the process finishes and the + commit has been pushed to GitHub, CI will complete publishing the release to npm (takes some time + to complete). diff --git a/superset-frontend/temporary_superset_ui/superset-ui/LICENSE b/superset-frontend/temporary_superset_ui/superset-ui/LICENSE new file mode 100644 index 000000000000..11069edd7901 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/superset-frontend/temporary_superset_ui/superset-ui/README.md b/superset-frontend/temporary_superset_ui/superset-ui/README.md new file mode 100644 index 000000000000..28375e94d215 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/README.md @@ -0,0 +1,80 @@ +# @superset-ui + +[![Codecov branch](https://img.shields.io/codecov/c/github/apache-superset/superset-ui/master.svg?style=flat-square)](https://codecov.io/gh/apache-superset/superset-ui/branch/master) +[![Build Status](https://img.shields.io/travis/com/apache-superset/superset-ui/master.svg?style=flat-square)](https://travis-ci.com/apache-superset/superset-ui) +[![David](https://img.shields.io/david/dev/apache-superset/superset-ui.svg?style=flat-square)](https://david-dm.org/apache-superset/superset-ui?type=dev) + +Collection of packages that power the +[Apache Superset](https://github.com/apache/incubator-superset) UI, and can be used to craft custom +data applications that leverage a Superset backend :chart_with_upwards_trend: + +## Demo + +Most recent release: https://apache-superset.github.io/superset-ui/ + +Current master: https://superset-ui.now.sh/ + +## Packages + +### Core packages + +| Package | Version | +| ----------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [@superset-ui/core](https://github.com/apache-superset/superset-ui/tree/master/packages/superset-ui-core) | [![Version](https://img.shields.io/npm/v/@superset-ui/core.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/core) | +| [@superset-ui/chart-controls](https://github.com/apache-superset/superset-ui/tree/master/packages/superset-ui-chart-controls) | [![Version](https://img.shields.io/npm/v/@superset-ui/core.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/chart-controls) | +| [@superset-ui/generator-superset](https://github.com/apache-superset/superset-ui/tree/master/packages/generator-superset) | [![Version](https://img.shields.io/npm/v/@superset-ui/generator-superset.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/generator-superset) | + +### Chart plugin packages + +`@superset-ui/legacy-*` packages are extracted from the classic +[Apache Superset](https://github.com/apache/incubator-superset) and converted into plugins. These +packages are extracted with minimal changes (almost as-is). They also depend on legacy API +(`viz.py`) to function. + +| Package | Version | +| -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [@superset-ui/legacy-preset-chart-big-number](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-preset-chart-big-number) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-preset-chart-big-number.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-preset-chart-big-number) | +| [@superset-ui/legacy-preset-chart-nvd3](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-preset-chart-nvd3) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-preset-chart-nvd3.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-preset-chart-nvd3) | +| [@superset-ui/legacy-plugin-chart-calendar](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-calendar) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-calendar.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-calendar) | +| [@superset-ui/legacy-plugin-chart-chord](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-chord) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-chord.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-chord) | +| [@superset-ui/legacy-plugin-chart-country-map](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-country-map) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-country-map.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-country-map) | +| [@superset-ui/legacy-plugin-chart-event-flow](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-event-flow) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-event-flow.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-event-flow) | +| [@superset-ui/legacy-plugin-chart-force-directed](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-force-directed) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-force-directed.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-force-directed) | +| [@superset-ui/legacy-plugin-chart-heatmap](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-heatmap) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-heatmap.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-heatmap) | +| [@superset-ui/legacy-plugin-chart-histogram](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-histogram) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-histogram.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-histogram) | +| [@superset-ui/legacy-plugin-chart-horizon](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-horizon) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-horizon.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-horizon) | +| [@superset-ui/legacy-plugin-chart-iframe](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-iframe) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-iframe.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-iframe) | +| [@superset-ui/legacy-plugin-chart-markup](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-markup) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-markup.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-markup) | +| [@superset-ui/legacy-plugin-chart-map-box](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-map-box) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-map-box.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-map-box) | +| [@superset-ui/legacy-plugin-chart-paired-t-test](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-paired-t-test) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-paired-t-test.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-paired-t-test) | +| [@superset-ui/legacy-plugin-chart-parallel-coordinates](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-parallel-coordinates) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-parallel-coordinates.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-parallel-coordinates) | +| [@superset-ui/legacy-plugin-chart-partition](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-partition) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-partition.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-partition) | +| [@superset-ui/legacy-plugin-chart-pivot-table](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-pivot-table) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-pivot-table.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-pivot-table) | +| [@superset-ui/legacy-plugin-chart-rose](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-rose) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-rose.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-rose) | +| [@superset-ui/legacy-plugin-chart-sankey](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-sankey) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-sankey.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-sankey) | +| [@superset-ui/legacy-plugin-chart-sankey-loop](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-sankey-loop) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-sankey-loop.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-sankey-loop) | +| [@superset-ui/legacy-plugin-chart-sunburst](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-sunburst) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-sunburst.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-sunburst) | +| [@superset-ui/legacy-plugin-chart-treemap](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-treemap) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-treemap.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-treemap) | +| [@superset-ui/legacy-plugin-chart-world-map](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-world-map) | [![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-world-map.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-world-map) | + +`@superset-ui/plugin-*` packages are newer and higher quality in general. A key difference that they +do not depend on `viz.py` (which contain visualization-specific python code) and interface with +`/api/v1/query/`, a new generic endpoint instead meant to serve all visualizations, instead. Also +should be written in Typescript. + +| Package | Version | Note | +| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---- | +| [@superset-ui/plugin-chart-word-cloud](https://github.com/apache-superset/superset-ui/tree/master/plugins/plugin-chart-word-cloud) | [![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-word-cloud.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-word-cloud) | | +| [@superset-ui/plugin-chart-table](https://github.com/apache-superset/superset-ui/tree/master/plugins/plugin-chart-table) | [![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-table.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-table) | | +| [@superset-ui/preset-chart-xy](https://github.com/apache-superset/superset-ui/tree/master/plugins/preset-chart-xy) | [![Version](https://img.shields.io/npm/v/@superset-ui/preset-chart-xy.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/preset-chart-xy) | | +| [@superset-ui/plugin-chart-echarts](https://github.com/apache-superset/superset-ui/tree/master/plugins/plugin-chart-echarts) | [![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-echarts.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-echarts) | | +| [@superset-ui/plugin-filter-antd](https://github.com/apache-superset/superset-ui/tree/master/plugins/plugin-filter-antd) | [![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-echarts.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-filter-antd) | | + +## Contribution and development guide + +Please read the [contributing guidelines](CONTRIBUTING.md) which include development environment +setup and other things you should know about coding in this repo. + +### License + +Apache-2.0 diff --git a/superset-frontend/temporary_superset_ui/superset-ui/babel.config.js b/superset-frontend/temporary_superset_ui/superset-ui/babel.config.js new file mode 100644 index 000000000000..6bcdcb4abf66 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/babel.config.js @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +const { getConfig } = require('@airbnb/config-babel'); + +const config = getConfig({ + library: true, + react: true, + next: true, + esm: process.env.BABEL_OUTPUT === 'esm', + node: process.env.NODE_ENV === 'test', + typescript: true, + env: { + targets: false, + }, +}); + +// Override to allow transpile es modules inside vega-lite +config.ignore = config.ignore.filter(item => item !== 'node_modules/'); +config.ignore.push('node_modules/(?!(vega-lite|lodash-es))'); +config.plugins = [ + ['babel-plugin-transform-dev', { evaluate: false }], + ['babel-plugin-typescript-to-proptypes', { loose: true }], + ['@babel/plugin-proposal-class-properties', { loose: true }], +]; +config.presets.push([ + '@emotion/babel-preset-css-prop', + { + autoLabel: 'dev-only', + labelFormat: '[local]', + }, +]); +module.exports = config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/codecov.yml b/superset-frontend/temporary_superset_ui/superset-ui/codecov.yml new file mode 100644 index 000000000000..cfd7e0d00798 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/codecov.yml @@ -0,0 +1,22 @@ +coverage: + status: + patch: off + project: + default: + target: 0% + threshold: 10% + core-packages-ts: + target: 100% + paths: + - 'packages' + - '!packages/**/*.jsx' + - '!packages/**/*.tsx' + core-packages-tsx: + target: 50% + paths: + - 'packages/**/*.jsx' + - 'packages/**/*.tsx' + plugins: + target: 0 + paths: + - plugins diff --git a/superset-frontend/temporary_superset_ui/superset-ui/commitlint.config.js b/superset-frontend/temporary_superset_ui/superset-ui/commitlint.config.js new file mode 100644 index 000000000000..00101d3f45bb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/commitlint.config.js @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +module.exports = { + extends: [ + '@commitlint/config-conventional', + '@commitlint/config-lerna-scopes', + ], +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/docs/debugging.md b/superset-frontend/temporary_superset_ui/superset-ui/docs/debugging.md new file mode 100644 index 000000000000..71397255311e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/docs/debugging.md @@ -0,0 +1,27 @@ +# Debug Superset plugins in Superset app + +## Activate plugins for local development + +1. First, make sure you have run `npm ci` and `npm run build` in `superset-ui` or your own plugin + repo. +2. Go to [superset-frontend](https://github.com/apache/superset/tree/master/superset-frontend), use + `npm link` to create a symlink of the plugin source code in `node_modules`: + + ```sh + cd superset/superset-frontend + # npm link ~/path/to/your/plugin + npm link ../../superset-ui/plugins/plugin-chart-word-cloud + ``` + +3. Start developing with webpack dev server: + + ```sh + npm run dev-server + ``` + + The dev server will automatically build from the source code under `path/to/your-plugin/src` and + watch the changes. + +## Deactivate plugins + +To deactivate a plugin, simply run `npm ci` in `superset/superset-frontend` again. diff --git a/superset-frontend/temporary_superset_ui/superset-ui/docs/storybook.md b/superset-frontend/temporary_superset_ui/superset-ui/docs/storybook.md new file mode 100644 index 000000000000..f31d867a25f5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/docs/storybook.md @@ -0,0 +1,13 @@ +## Using Storybook + +You can demo your changes by running the storybook demo locally with the following commands: + +```sh +npm ci +npm run build +npm run storybook +``` + +The Storybook will +[automatically build from the source code](https://github.com/apache-superset/superset-ui/blob/master/packages/superset-ui-demo/.storybook/main.js#L49-L58) +when package names start with `@superset-ui/`. diff --git a/superset-frontend/temporary_superset_ui/superset-ui/jest.config.js b/superset-frontend/temporary_superset_ui/superset-ui/jest.config.js new file mode 100644 index 000000000000..21826fa4cb64 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/jest.config.js @@ -0,0 +1,77 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +module.exports = { + bail: false, + collectCoverageFrom: [ + '**/src/**/*.{ts,tsx,js,jsx}', + '**/test/**/*.{ts,tsx,js,jsx}', + ], + coverageDirectory: './coverage', + coveragePathIgnorePatterns: [ + 'coverage/', + 'node_modules/', + 'public/', + 'esm/', + 'lib/', + 'tmp/', + 'dist/', + ], + coverageReporters: ['lcov', 'json-summary', 'html'], + coverageThreshold: { + global: { + branches: 0, + functions: 0, + lines: 0, + statements: 0, + }, + }, + globals: { + __DEV__: true, + caches: true, + }, + moduleFileExtensions: ['mock.js', 'ts', 'tsx', 'js', 'jsx', 'json', 'node'], + moduleNameMapper: { + '\\.(css|less|geojson)$': '/test/__mocks__/mockExportObject.js', + '\\.(gif|ttf|eot|png|jpg)$': '/test/__mocks__/mockExportString.js', + '\\.svg$': '/test/__mocks__/svgrMock.tsx', + '@superset-ui/(((?!(legacy-preset-chart-deckgl|core/src)).)*)$': + '/node_modules/@superset-ui/$1/src', + '@superset-ui/core/src/(.*)$': + '/node_modules/@superset-ui/core/src/$1', + }, + roots: ['/packages', '/plugins'], + setupFiles: ['/test/setup.ts'], + testEnvironment: 'jsdom', + testURL: 'http://localhost', + timers: 'real', + verbose: false, + transformIgnorePatterns: ['node_modules/(?!(vega-lite|lodash-es))'], + testPathIgnorePatterns: ['packages/generator-superset/generators'], + projects: [ + '', + { + displayName: 'node', + rootDir: '/packages/generator-superset', + testMatch: ['/test/**/?(*.)+(spec|test).{js,jsx,ts,tsx}'], + testEnvironment: 'node', + }, + ], + snapshotSerializers: ['@emotion/jest/enzyme-serializer'], +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/lerna.json b/superset-frontend/temporary_superset_ui/superset-ui/lerna.json new file mode 100644 index 000000000000..2c532c58b2d1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/lerna.json @@ -0,0 +1,26 @@ +{ + "lerna": "3.2.1", + "npmClient": "npm", + "packages": [ + "packages/*", + "plugins/*" + ], + "useWorkspaces": true, + "version": "0.18.25", + "ignoreChanges": [ + "**/*.md", + "**/*.spec.tsx?", + "**/*.spec.jsx?", + "**/__mocks__/**" + ], + "command": { + "publish": { + "message": "chore: publish %s", + "graphType": "all" + }, + "version": { + "message": "chore: publish %s", + "exact": true + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/package-lock.json b/superset-frontend/temporary_superset_ui/superset-ui/package-lock.json new file mode 100644 index 000000000000..60990320d9e2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/package-lock.json @@ -0,0 +1,83384 @@ +{ + "name": "@superset-ui/monorepo", + "version": "0.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "@superset-ui/monorepo", + "version": "0.0.0", + "license": "Apache-2.0", + "workspaces": [ + "./packages/*", + "./plugins/*" + ], + "dependencies": { + "@airbnb/config-babel": "^3.1.0", + "@airbnb/config-jest": "^3.0.2", + "@airbnb/config-webpack": "^3.3.1", + "@babel/cli": "^7.11.5", + "@babel/compat-data": "^7.9.6", + "@babel/core": "^7.8.7", + "@babel/eslint-parser": "^7.16.0", + "@babel/node": "^7.8.7", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-proposal-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.8.3", + "@babel/preset-env": "^7.8.7", + "@babel/preset-react": "^7.8.3", + "@babel/preset-typescript": "^7.12.7", + "@babel/register": "^7.8.6", + "@emotion/babel-preset-css-prop": "^11.2.0", + "@emotion/jest": "^11.3.0", + "@storybook/preset-typescript": "^3.0.0", + "@superset-ui/commit-config": "^0.0.9", + "@types/enzyme": "^3.10.3", + "@types/jest": "^26.0.4", + "@types/jsdom": "^12.2.4", + "@types/react": "^16.13.1", + "@types/react-test-renderer": "^16.9.2", + "@typescript-eslint/eslint-plugin": "^5.3.0", + "@typescript-eslint/parser": "^5.3.0", + "babel-eslint": "^10.1.0", + "babel-jest": "^26.6.3", + "babel-loader": "^8.2.2", + "babel-plugin-dynamic-import-node": "^2.3.3", + "babel-plugin-jsx-remove-data-test-id": "^2.1.3", + "babel-plugin-lodash": "^3.3.4", + "babel-plugin-typescript-to-proptypes": "^1.4.2", + "enzyme": "^3.11.0", + "enzyme-adapter-react-16": "^1.15.1", + "enzyme-to-json": "^3.4.3", + "eslint": "^7.32.0", + "eslint-config-airbnb": "^18.2.1", + "eslint-config-prettier": "^7.1.0", + "eslint-import-resolver-typescript": "^2.3.0", + "eslint-import-resolver-webpack": "^0.13.0", + "eslint-plugin-cypress": "^2.11.2", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-jest": "^24.1.3", + "eslint-plugin-jest-dom": "^3.6.5", + "eslint-plugin-jsx-a11y": "^6.4.1", + "eslint-plugin-no-only-tests": "^2.4.0", + "eslint-plugin-prettier": "^3.3.1", + "eslint-plugin-react": "^7.22.0", + "eslint-plugin-react-hooks": "^4.2.0", + "eslint-plugin-testing-library": "^3.10.1", + "eslint-plugin-unicorn": "^25.0.1", + "esprint": "^0.7.0", + "fast-glob": "^3.2.4", + "fs-extra": "^9.0.0", + "global-box": "^1.2.0", + "husky": "^4.2.5", + "identity-obj-proxy": "^3.0.0", + "jest": "^26.6.3", + "jest-environment-enzyme": "^7.1.2", + "jest-enzyme": "^7.1.2", + "jest-mock-console": "^1.0.0", + "jsdom": "^16.4.0", + "lerna": "^3.15.0", + "lint-staged": "^10.0.3", + "npm": "^7.5.4", + "prettier": "^2.4.1", + "react": "^16.13.1", + "react-dom": "^16.13.1", + "react-loadable": "^5.5.0", + "react-test-renderer": "^16.13.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "ts-jest": "^26.4.2", + "ts-loader": "^8.0.7", + "typescript": "^4.1.2", + "webpack": "^4.42.0", + "webpack-bundle-analyzer": "^3.6.1", + "webpack-cli": "^3.3.11", + "webpack-dev-server": "^3.11.0", + "webpack-manifest-plugin": "^2.2.0", + "webpack-sources": "^1.4.3", + "yargs": "^15.4.1" + }, + "engines": { + "node": "14.x || 16.x", + "npm": "^7.5.4" + } + }, + "node_modules/@actions/core": { + "version": "1.6.0", + "integrity": "sha512-NB1UAZomZlCV/LmJqkLhNTqtKfFXJZAUPcfl/zqG7EfsQdeUJtaWO98SGbuQ3pydJ3fHl2CvI/51OKYlCYYcaw==", + "dev": true, + "dependencies": { + "@actions/http-client": "^1.0.11" + } + }, + "node_modules/@actions/github": { + "version": "5.0.0", + "integrity": "sha512-QvE9eAAfEsS+yOOk0cylLBIO/d6WyWIOvsxxzdrPFaud39G6BOkUwScXZn1iBzQzHyu9SBkkLSWlohDWdsasAQ==", + "dev": true, + "dependencies": { + "@actions/http-client": "^1.0.11", + "@octokit/core": "^3.4.0", + "@octokit/plugin-paginate-rest": "^2.13.3", + "@octokit/plugin-rest-endpoint-methods": "^5.1.1" + } + }, + "node_modules/@actions/http-client": { + "version": "1.0.11", + "integrity": "sha512-VRYHGQV1rqnROJqdMvGUbY/Kn8vriQe/F9HR2AlYHzmKuM/p3kjNuXhmdBfcVgsvRWTz5C5XW5xvndZrVBuAYg==", + "dev": true, + "dependencies": { + "tunnel": "0.0.6" + } + }, + "node_modules/@airbnb/config-babel": { + "version": "3.1.0", + "integrity": "sha512-pznP4jI9r17lb8W9+3EMmsFQRD18JjDZVwxCleZ1wWKpirVHZuKuXruXiJhCkGHR8pkPRda3P9WMzq7qc9GIEA==", + "dependencies": { + "@airbnb/nimbus-common": "^3.0.1", + "@babel/cli": "^7.8.4", + "@babel/core": "^7.9.0", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-react-jsx-self": "^7.9.0", + "@babel/plugin-transform-react-jsx-source": "^7.9.0", + "@babel/plugin-transform-runtime": "^7.9.0", + "@babel/preset-env": "^7.9.0", + "@babel/preset-react": "^7.9.4", + "@babel/preset-typescript": "^7.9.0", + "@beemo/core": "^1.1.6", + "@beemo/driver-babel": "^1.2.3", + "babel-plugin-graphql-tag": "^2.5.0", + "babel-plugin-transform-dev": "^2.0.1", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24", + "babel-plugin-typescript-to-proptypes": "^1.3.2" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/@airbnb/config-jest": { + "version": "3.0.2", + "integrity": "sha512-1NmUNz85gEZGRe7MjeHAREDxt73zKRQaDVTPmy+z8FlavC1AH8ugkUGa/cdnTkD+SVZ5q/Y/1G0f5e8lspMVOQ==", + "dependencies": { + "@airbnb/nimbus-common": "^3.0.1", + "@babel/core": "^7.9.0", + "@beemo/core": "^1.1.6", + "@beemo/driver-babel": "^1.2.3", + "@beemo/driver-jest": "^1.2.1", + "airbnb-js-shims": "^2.2.1", + "dom-storage": "^2.1.0", + "jest": "^25.5.4" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/@beemo/driver-jest": { + "version": "1.2.3", + "integrity": "sha512-cj8dSz1kNv+v4ygUTRtnOAoqZUbTfqrJ595OgtXqvtgxUmA6JPJ0QQq38yH4HJjPYlw9a2ENc76snzZjZIxJOg==", + "dependencies": { + "@jest/types": "^25.4.0" + }, + "engines": { + "node": ">=8.9.0" + }, + "peerDependencies": { + "@beemo/core": "^1.0.0", + "@beemo/driver-babel": "^1.0.0", + "jest": "^24.0.0 || ^25.0.0 || ^26.0.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/@jest/console": { + "version": "25.5.0", + "integrity": "sha512-T48kZa6MK1Y6k4b89sexwmSF4YLeZS/Udqg3Jj3jG/cHH+N/sLFCEoXEDMOKugJQ9FxPN1osxIknvKkxt6MKyw==", + "dependencies": { + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "jest-message-util": "^25.5.0", + "jest-util": "^25.5.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/@jest/core": { + "version": "25.5.4", + "integrity": "sha512-3uSo7laYxF00Dg/DMgbn4xMJKmDdWvZnf89n8Xj/5/AeQ2dOQmn6b6Hkj/MleyzZWXpwv+WSdYWl4cLsy2JsoA==", + "dependencies": { + "@jest/console": "^25.5.0", + "@jest/reporters": "^25.5.1", + "@jest/test-result": "^25.5.0", + "@jest/transform": "^25.5.1", + "@jest/types": "^25.5.0", + "ansi-escapes": "^4.2.1", + "chalk": "^3.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^25.5.0", + "jest-config": "^25.5.4", + "jest-haste-map": "^25.5.1", + "jest-message-util": "^25.5.0", + "jest-regex-util": "^25.2.6", + "jest-resolve": "^25.5.1", + "jest-resolve-dependencies": "^25.5.4", + "jest-runner": "^25.5.4", + "jest-runtime": "^25.5.4", + "jest-snapshot": "^25.5.1", + "jest-util": "^25.5.0", + "jest-validate": "^25.5.0", + "jest-watcher": "^25.5.0", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "realpath-native": "^2.0.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/@jest/environment": { + "version": "25.5.0", + "integrity": "sha512-U2VXPEqL07E/V7pSZMSQCvV5Ea4lqOlT+0ZFijl/i316cRMHvZ4qC+jBdryd+lmRetjQo0YIQr6cVPNxxK87mA==", + "dependencies": { + "@jest/fake-timers": "^25.5.0", + "@jest/types": "^25.5.0", + "jest-mock": "^25.5.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/@jest/fake-timers": { + "version": "25.5.0", + "integrity": "sha512-9y2+uGnESw/oyOI3eww9yaxdZyHq7XvprfP/eeoCsjqKYts2yRlsHS/SgjPDV8FyMfn2nbMy8YzUk6nyvdLOpQ==", + "dependencies": { + "@jest/types": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-util": "^25.5.0", + "lolex": "^5.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/@jest/globals": { + "version": "25.5.2", + "integrity": "sha512-AgAS/Ny7Q2RCIj5kZ+0MuKM1wbF0WMLxbCVl/GOMoCNbODRdJ541IxJ98xnZdVSZXivKpJlNPIWa3QmY0l4CXA==", + "dependencies": { + "@jest/environment": "^25.5.0", + "@jest/types": "^25.5.0", + "expect": "^25.5.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/@jest/reporters": { + "version": "25.5.1", + "integrity": "sha512-3jbd8pPDTuhYJ7vqiHXbSwTJQNavczPs+f1kRprRDxETeE3u6srJ+f0NPuwvOmk+lmunZzPkYWIFZDLHQPkviw==", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^25.5.0", + "@jest/test-result": "^25.5.0", + "@jest/transform": "^25.5.1", + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^25.5.1", + "jest-resolve": "^25.5.1", + "jest-util": "^25.5.0", + "jest-worker": "^25.5.0", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^3.1.0", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^4.1.3" + }, + "engines": { + "node": ">= 8.3" + }, + "optionalDependencies": { + "node-notifier": "^6.0.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/@jest/source-map": { + "version": "25.5.0", + "integrity": "sha512-eIGx0xN12yVpMcPaVpjXPnn3N30QGJCJQSkEDUt9x1fI1Gdvb07Ml6K5iN2hG7NmMP6FDmtPEssE3z6doOYUwQ==", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/@jest/test-result": { + "version": "25.5.0", + "integrity": "sha512-oV+hPJgXN7IQf/fHWkcS99y0smKLU2czLBJ9WA0jHITLst58HpQMtzSYxzaBvYc6U5U6jfoMthqsUlUlbRXs0A==", + "dependencies": { + "@jest/console": "^25.5.0", + "@jest/types": "^25.5.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/@jest/test-sequencer": { + "version": "25.5.4", + "integrity": "sha512-pTJGEkSeg1EkCO2YWq6hbFvKNXk8ejqlxiOg1jBNLnWrgXOkdY6UmqZpwGFXNnRt9B8nO1uWMzLLZ4eCmhkPNA==", + "dependencies": { + "@jest/test-result": "^25.5.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^25.5.1", + "jest-runner": "^25.5.4", + "jest-runtime": "^25.5.4" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/@jest/transform": { + "version": "25.5.1", + "integrity": "sha512-Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^25.5.0", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^3.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^25.5.1", + "jest-regex-util": "^25.2.6", + "jest-util": "^25.5.0", + "micromatch": "^4.0.2", + "pirates": "^4.0.1", + "realpath-native": "^2.0.0", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/@jest/types": { + "version": "25.5.0", + "integrity": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@airbnb/config-jest/node_modules/@types/prettier": { + "version": "1.19.1", + "integrity": "sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==" + }, + "node_modules/@airbnb/config-jest/node_modules/@types/stack-utils": { + "version": "1.0.1", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==" + }, + "node_modules/@airbnb/config-jest/node_modules/acorn-globals": { + "version": "4.3.4", + "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", + "dependencies": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + } + }, + "node_modules/@airbnb/config-jest/node_modules/acorn-globals/node_modules/acorn": { + "version": "6.4.2", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/acorn-walk": { + "version": "6.2.0", + "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@airbnb/config-jest/node_modules/astral-regex": { + "version": "1.0.0", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@airbnb/config-jest/node_modules/babel-jest": { + "version": "25.5.1", + "integrity": "sha512-9dA9+GmMjIzgPnYtkhBg73gOo/RHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ==", + "dependencies": { + "@jest/transform": "^25.5.1", + "@jest/types": "^25.5.0", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^25.5.0", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/babel-plugin-jest-hoist": { + "version": "25.5.0", + "integrity": "sha512-u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g==", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/babel-preset-current-node-syntax": { + "version": "0.1.4", + "integrity": "sha512-5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w==", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/babel-preset-jest": { + "version": "25.5.0", + "integrity": "sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a/r+LGn6Y705PA6whHQ3T1XuB/PmpfNYf8Fw==", + "dependencies": { + "babel-plugin-jest-hoist": "^25.5.0", + "babel-preset-current-node-syntax": "^0.1.2" + }, + "engines": { + "node": ">= 8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/chalk": { + "version": "3.0.0", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@airbnb/config-jest/node_modules/data-urls": { + "version": "1.1.0", + "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", + "dependencies": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/diff-sequences": { + "version": "25.2.6", + "integrity": "sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==", + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/domexception": { + "version": "1.0.1", + "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "dependencies": { + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/@airbnb/config-jest/node_modules/escape-string-regexp": { + "version": "2.0.0", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@airbnb/config-jest/node_modules/escodegen": { + "version": "1.14.3", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/@airbnb/config-jest/node_modules/estraverse": { + "version": "4.3.0", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/execa": { + "version": "3.4.0", + "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==", + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": "^8.12.0 || >=9.7.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/expect": { + "version": "25.5.0", + "integrity": "sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA==", + "dependencies": { + "@jest/types": "^25.5.0", + "ansi-styles": "^4.0.0", + "jest-get-type": "^25.2.6", + "jest-matcher-utils": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-regex-util": "^25.2.6" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@airbnb/config-jest/node_modules/html-encoding-sniffer": { + "version": "1.0.2", + "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", + "dependencies": { + "whatwg-encoding": "^1.0.1" + } + }, + "node_modules/@airbnb/config-jest/node_modules/istanbul-lib-instrument": { + "version": "4.0.3", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "dependencies": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest": { + "version": "25.5.4", + "integrity": "sha512-hHFJROBTqZahnO+X+PMtT6G2/ztqAZJveGqz//FnWWHurizkD05PQGzRZOhF3XP6z7SJmL+5tCfW8qV06JypwQ==", + "dependencies": { + "@jest/core": "^25.5.4", + "import-local": "^3.0.2", + "jest-cli": "^25.5.4" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-changed-files": { + "version": "25.5.0", + "integrity": "sha512-EOw9QEqapsDT7mKF162m8HFzRPbmP8qJQny6ldVOdOVBz3ACgPm/1nAn5fPQ/NDaYhX/AHkrGwwkCncpAVSXcw==", + "dependencies": { + "@jest/types": "^25.5.0", + "execa": "^3.2.0", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-cli": { + "version": "25.5.4", + "integrity": "sha512-rG8uJkIiOUpnREh1768/N3n27Cm+xPFkSNFO91tgg+8o2rXeVLStz+vkXkGr4UtzH6t1SNbjwoiswd7p4AhHTw==", + "dependencies": { + "@jest/core": "^25.5.4", + "@jest/test-result": "^25.5.0", + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^25.5.4", + "jest-util": "^25.5.0", + "jest-validate": "^25.5.0", + "prompts": "^2.0.1", + "realpath-native": "^2.0.0", + "yargs": "^15.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-config": { + "version": "25.5.4", + "integrity": "sha512-SZwR91SwcdK6bz7Gco8qL7YY2sx8tFJYzvg216DLihTWf+LKY/DoJXpM9nTzYakSyfblbqeU48p/p7Jzy05Atg==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^25.5.4", + "@jest/types": "^25.5.0", + "babel-jest": "^25.5.1", + "chalk": "^3.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-environment-jsdom": "^25.5.0", + "jest-environment-node": "^25.5.0", + "jest-get-type": "^25.2.6", + "jest-jasmine2": "^25.5.4", + "jest-regex-util": "^25.2.6", + "jest-resolve": "^25.5.1", + "jest-util": "^25.5.0", + "jest-validate": "^25.5.0", + "micromatch": "^4.0.2", + "pretty-format": "^25.5.0", + "realpath-native": "^2.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-diff": { + "version": "25.5.0", + "integrity": "sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==", + "dependencies": { + "chalk": "^3.0.0", + "diff-sequences": "^25.2.6", + "jest-get-type": "^25.2.6", + "pretty-format": "^25.5.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-docblock": { + "version": "25.3.0", + "integrity": "sha512-aktF0kCar8+zxRHxQZwxMy70stc9R1mOmrLsT5VO3pIT0uzGRSDAXxSlz4NqQWpuLjPpuMhPRl7H+5FRsvIQAg==", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-each": { + "version": "25.5.0", + "integrity": "sha512-QBogUxna3D8vtiItvn54xXde7+vuzqRrEeaw8r1s+1TG9eZLVJE5ZkKoSUlqFwRjnlaA4hyKGiu9OlkFIuKnjA==", + "dependencies": { + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "jest-get-type": "^25.2.6", + "jest-util": "^25.5.0", + "pretty-format": "^25.5.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-environment-jsdom": { + "version": "25.5.0", + "integrity": "sha512-7Jr02ydaq4jaWMZLY+Skn8wL5nVIYpWvmeatOHL3tOcV3Zw8sjnPpx+ZdeBfc457p8jCR9J6YCc+Lga0oIy62A==", + "dependencies": { + "@jest/environment": "^25.5.0", + "@jest/fake-timers": "^25.5.0", + "@jest/types": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-util": "^25.5.0", + "jsdom": "^15.2.1" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-environment-node": { + "version": "25.5.0", + "integrity": "sha512-iuxK6rQR2En9EID+2k+IBs5fCFd919gVVK5BeND82fYeLWPqvRcFNPKu9+gxTwfB5XwBGBvZ0HFQa+cHtIoslA==", + "dependencies": { + "@jest/environment": "^25.5.0", + "@jest/fake-timers": "^25.5.0", + "@jest/types": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-util": "^25.5.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-get-type": { + "version": "25.2.6", + "integrity": "sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==", + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-haste-map": { + "version": "25.5.1", + "integrity": "sha512-dddgh9UZjV7SCDQUrQ+5t9yy8iEgKc1AKqZR9YDww8xsVOtzPQSMVLDChc21+g29oTRexb9/B0bIlZL+sWmvAQ==", + "dependencies": { + "@jest/types": "^25.5.0", + "@types/graceful-fs": "^4.1.2", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-serializer": "^25.5.0", + "jest-util": "^25.5.0", + "jest-worker": "^25.5.0", + "micromatch": "^4.0.2", + "sane": "^4.0.3", + "walker": "^1.0.7", + "which": "^2.0.2" + }, + "engines": { + "node": ">= 8.3" + }, + "optionalDependencies": { + "fsevents": "^2.1.2" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-jasmine2": { + "version": "25.5.4", + "integrity": "sha512-9acbWEfbmS8UpdcfqnDO+uBUgKa/9hcRh983IHdM+pKmJPL77G0sWAAK0V0kr5LK3a8cSBfkFSoncXwQlRZfkQ==", + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^25.5.0", + "@jest/source-map": "^25.5.0", + "@jest/test-result": "^25.5.0", + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "co": "^4.6.0", + "expect": "^25.5.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^25.5.0", + "jest-matcher-utils": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-runtime": "^25.5.4", + "jest-snapshot": "^25.5.1", + "jest-util": "^25.5.0", + "pretty-format": "^25.5.0", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-leak-detector": { + "version": "25.5.0", + "integrity": "sha512-rV7JdLsanS8OkdDpZtgBf61L5xZ4NnYLBq72r6ldxahJWWczZjXawRsoHyXzibM5ed7C2QRjpp6ypgwGdKyoVA==", + "dependencies": { + "jest-get-type": "^25.2.6", + "pretty-format": "^25.5.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-matcher-utils": { + "version": "25.5.0", + "integrity": "sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==", + "dependencies": { + "chalk": "^3.0.0", + "jest-diff": "^25.5.0", + "jest-get-type": "^25.2.6", + "pretty-format": "^25.5.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-message-util": { + "version": "25.5.0", + "integrity": "sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^25.5.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "slash": "^3.0.0", + "stack-utils": "^1.0.1" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-mock": { + "version": "25.5.0", + "integrity": "sha512-eXWuTV8mKzp/ovHc5+3USJMYsTBhyQ+5A1Mak35dey/RG8GlM4YWVylZuGgVXinaW6tpvk/RSecmF37FKUlpXA==", + "dependencies": { + "@jest/types": "^25.5.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-regex-util": { + "version": "25.2.6", + "integrity": "sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw==", + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-resolve": { + "version": "25.5.1", + "integrity": "sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ==", + "dependencies": { + "@jest/types": "^25.5.0", + "browser-resolve": "^1.11.3", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.1", + "read-pkg-up": "^7.0.1", + "realpath-native": "^2.0.0", + "resolve": "^1.17.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-resolve-dependencies": { + "version": "25.5.4", + "integrity": "sha512-yFmbPd+DAQjJQg88HveObcGBA32nqNZ02fjYmtL16t1xw9bAttSn5UGRRhzMHIQbsep7znWvAvnD4kDqOFM0Uw==", + "dependencies": { + "@jest/types": "^25.5.0", + "jest-regex-util": "^25.2.6", + "jest-snapshot": "^25.5.1" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-runner": { + "version": "25.5.4", + "integrity": "sha512-V/2R7fKZo6blP8E9BL9vJ8aTU4TH2beuqGNxHbxi6t14XzTb+x90B3FRgdvuHm41GY8ch4xxvf0ATH4hdpjTqg==", + "dependencies": { + "@jest/console": "^25.5.0", + "@jest/environment": "^25.5.0", + "@jest/test-result": "^25.5.0", + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-config": "^25.5.4", + "jest-docblock": "^25.3.0", + "jest-haste-map": "^25.5.1", + "jest-jasmine2": "^25.5.4", + "jest-leak-detector": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-resolve": "^25.5.1", + "jest-runtime": "^25.5.4", + "jest-util": "^25.5.0", + "jest-worker": "^25.5.0", + "source-map-support": "^0.5.6", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-runtime": { + "version": "25.5.4", + "integrity": "sha512-RWTt8LeWh3GvjYtASH2eezkc8AehVoWKK20udV6n3/gC87wlTbE1kIA+opCvNWyyPeBs6ptYsc6nyHUb1GlUVQ==", + "dependencies": { + "@jest/console": "^25.5.0", + "@jest/environment": "^25.5.0", + "@jest/globals": "^25.5.2", + "@jest/source-map": "^25.5.0", + "@jest/test-result": "^25.5.0", + "@jest/transform": "^25.5.1", + "@jest/types": "^25.5.0", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-config": "^25.5.4", + "jest-haste-map": "^25.5.1", + "jest-message-util": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-regex-util": "^25.2.6", + "jest-resolve": "^25.5.1", + "jest-snapshot": "^25.5.1", + "jest-util": "^25.5.0", + "jest-validate": "^25.5.0", + "realpath-native": "^2.0.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^15.3.1" + }, + "bin": { + "jest-runtime": "bin/jest-runtime.js" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-serializer": { + "version": "25.5.0", + "integrity": "sha512-LxD8fY1lByomEPflwur9o4e2a5twSQ7TaVNLlFUuToIdoJuBt8tzHfCsZ42Ok6LkKXWzFWf3AGmheuLAA7LcCA==", + "dependencies": { + "graceful-fs": "^4.2.4" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-snapshot": { + "version": "25.5.1", + "integrity": "sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==", + "dependencies": { + "@babel/types": "^7.0.0", + "@jest/types": "^25.5.0", + "@types/prettier": "^1.19.0", + "chalk": "^3.0.0", + "expect": "^25.5.0", + "graceful-fs": "^4.2.4", + "jest-diff": "^25.5.0", + "jest-get-type": "^25.2.6", + "jest-matcher-utils": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-resolve": "^25.5.1", + "make-dir": "^3.0.0", + "natural-compare": "^1.4.0", + "pretty-format": "^25.5.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-util": { + "version": "25.5.0", + "integrity": "sha512-KVlX+WWg1zUTB9ktvhsg2PXZVdkI1NBevOJSkTKYAyXyH4QSvh+Lay/e/v+bmaFfrkfx43xD8QTfgobzlEXdIA==", + "dependencies": { + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "make-dir": "^3.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-validate": { + "version": "25.5.0", + "integrity": "sha512-okUFKqhZIpo3jDdtUXUZ2LxGUZJIlfdYBvZb1aczzxrlyMlqdnnws9MOxezoLGhSaFc2XYaHNReNQfj5zPIWyQ==", + "dependencies": { + "@jest/types": "^25.5.0", + "camelcase": "^5.3.1", + "chalk": "^3.0.0", + "jest-get-type": "^25.2.6", + "leven": "^3.1.0", + "pretty-format": "^25.5.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-watcher": { + "version": "25.5.0", + "integrity": "sha512-XrSfJnVASEl+5+bb51V0Q7WQx65dTSk7NL4yDdVjPnRNpM0hG+ncFmDYJo9O8jaSRcAitVbuVawyXCRoxGrT5Q==", + "dependencies": { + "@jest/test-result": "^25.5.0", + "@jest/types": "^25.5.0", + "ansi-escapes": "^4.2.1", + "chalk": "^3.0.0", + "jest-util": "^25.5.0", + "string-length": "^3.1.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jest-worker": { + "version": "25.5.0", + "integrity": "sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/jsdom": { + "version": "15.2.1", + "integrity": "sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g==", + "dependencies": { + "abab": "^2.0.0", + "acorn": "^7.1.0", + "acorn-globals": "^4.3.2", + "array-equal": "^1.0.0", + "cssom": "^0.4.1", + "cssstyle": "^2.0.0", + "data-urls": "^1.1.0", + "domexception": "^1.0.1", + "escodegen": "^1.11.1", + "html-encoding-sniffer": "^1.0.2", + "nwsapi": "^2.2.0", + "parse5": "5.1.0", + "pn": "^1.1.0", + "request": "^2.88.0", + "request-promise-native": "^1.0.7", + "saxes": "^3.1.9", + "symbol-tree": "^3.2.2", + "tough-cookie": "^3.0.1", + "w3c-hr-time": "^1.0.1", + "w3c-xmlserializer": "^1.1.2", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^7.0.0", + "ws": "^7.0.0", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/@airbnb/config-jest/node_modules/levn": { + "version": "0.3.0", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/make-dir": { + "version": "3.1.0", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@airbnb/config-jest/node_modules/node-notifier": { + "version": "6.0.0", + "integrity": "sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==", + "optional": true, + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^2.1.1", + "semver": "^6.3.0", + "shellwords": "^0.1.1", + "which": "^1.3.1" + } + }, + "node_modules/@airbnb/config-jest/node_modules/node-notifier/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/@airbnb/config-jest/node_modules/optionator": { + "version": "0.8.3", + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/p-finally": { + "version": "2.0.1", + "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@airbnb/config-jest/node_modules/parse5": { + "version": "5.1.0", + "integrity": "sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==" + }, + "node_modules/@airbnb/config-jest/node_modules/prelude-ls": { + "version": "1.1.2", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/pretty-format": { + "version": "25.5.0", + "integrity": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==", + "dependencies": { + "@jest/types": "^25.5.0", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^16.12.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@airbnb/config-jest/node_modules/saxes": { + "version": "3.1.11", + "integrity": "sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==", + "dependencies": { + "xmlchars": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@airbnb/config-jest/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@airbnb/config-jest/node_modules/slash": { + "version": "3.0.0", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@airbnb/config-jest/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/stack-utils": { + "version": "1.0.5", + "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@airbnb/config-jest/node_modules/string-length": { + "version": "3.1.0", + "integrity": "sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA==", + "dependencies": { + "astral-regex": "^1.0.0", + "strip-ansi": "^5.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@airbnb/config-jest/node_modules/string-length/node_modules/ansi-regex": { + "version": "4.1.0", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@airbnb/config-jest/node_modules/string-length/node_modules/strip-ansi": { + "version": "5.2.0", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@airbnb/config-jest/node_modules/strip-bom": { + "version": "4.0.0", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@airbnb/config-jest/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@airbnb/config-jest/node_modules/tough-cookie": { + "version": "3.0.1", + "integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==", + "dependencies": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@airbnb/config-jest/node_modules/tr46": { + "version": "1.0.1", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/type-check": { + "version": "0.3.2", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/v8-to-istanbul": { + "version": "4.1.4", + "integrity": "sha512-Rw6vJHj1mbdK8edjR7+zuJrpDtKIgNdAvTSAcpYfgMIw+u2dPDntD3dgN4XQFLU2/fvFQdzj+EeSGfd/jnY5fQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": "8.x.x || >=10.10.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.3", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@airbnb/config-jest/node_modules/w3c-xmlserializer": { + "version": "1.1.2", + "integrity": "sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==", + "dependencies": { + "domexception": "^1.0.1", + "webidl-conversions": "^4.0.2", + "xml-name-validator": "^3.0.0" + } + }, + "node_modules/@airbnb/config-jest/node_modules/webidl-conversions": { + "version": "4.0.2", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "node_modules/@airbnb/config-jest/node_modules/whatwg-url": { + "version": "7.1.0", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/@airbnb/config-webpack": { + "version": "3.3.1", + "integrity": "sha512-LduFte4q12yMJJoTyH0sYHsgKNpEoTgfMyApPqUZEezl0ikBbvXGvLXzWnHF5wLVH6lS5ns1AV9DrdfE3EZnew==", + "dependencies": { + "@airbnb/nimbus-common": "^3.0.1", + "@babel/core": "^7.9.0", + "@beemo/core": "^1.1.6", + "@beemo/driver-webpack": "^1.2.4", + "babel-loader": "^8.1.0", + "execa": "^4.0.0", + "fast-glob": "^3.2.2", + "file-loader": "^6.0.0", + "html-webpack-plugin": "^4.0.1", + "is-docker": "^2.0.0", + "terser-webpack-plugin": "^2.3.5", + "url-loader": "^4.0.0", + "webpack": "^4.42.1", + "webpack-bundle-analyzer": "^3.6.1", + "webpack-cli": "^3.3.11", + "webpack-dev-server": "^3.10.3", + "webpack-graphql-loader": "^1.0.2" + }, + "bin": { + "nimbus-webpack-server": "bin/server" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/braces": { + "version": "2.3.2", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "peer": true, + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "peer": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/enhanced-resolve": { + "version": "4.5.0", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "peer": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/fill-range": { + "version": "4.0.0", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "peer": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "peer": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "peer": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "peer": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "peer": true + }, + "node_modules/@airbnb/config-webpack/node_modules/memory-fs": { + "version": "0.5.0", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "peer": true, + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/micromatch": { + "version": "3.1.10", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "peer": true, + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/pify": { + "version": "3.0.0", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "engines": { + "node": ">=4" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/readable-stream": { + "version": "2.3.7", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "peer": true, + "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" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "peer": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "peer": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/tapable": { + "version": "1.1.3", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "peer": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/ts-loader": { + "version": "4.5.0", + "integrity": "sha512-ihgVaSmgrX4crGV4n7yuoHPoCHbDzj9aepCZR9TgIx4SgJ9gdnB6xLHgUBb7bsFM/f0K6x9iXa65KY/Fu1Klkw==", + "peer": true, + "dependencies": { + "chalk": "^2.3.0", + "enhanced-resolve": "^4.0.0", + "loader-utils": "^1.0.2", + "micromatch": "^3.1.4", + "semver": "^5.0.1" + }, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/@airbnb/config-webpack/node_modules/webpack-graphql-loader": { + "version": "1.0.2", + "integrity": "sha512-tMcfC/IPMYO8RXsihjMcOplOnyTFqVUHXYZN5mRNIuDy8ADNvqYWVqs3Qi/YBP+U05uesdy9UUvf7N8QZtkc5Q==", + "dependencies": { + "apollo-codegen": "^0.19.1", + "loader-utils": "^1.1.0", + "pify": "^3.0.0" + }, + "peerDependencies": { + "graphql": ">=0.11.7", + "ts-loader": "^4.4.1" + } + }, + "node_modules/@airbnb/nimbus-common": { + "version": "3.0.1", + "integrity": "sha512-Qa/cPOcFktW36UL1RScVvrX06Ybv5/EJ1UBPtLHPi9POMAtq7bV0xe0Q3qSdAHrUp+4a1K4Gt3pjk3OnDAcbBg==", + "dependencies": { + "@beemo/core": "^1.1.6", + "@boost/common": "^1.8.3", + "execa": "^4.0.0", + "fast-glob": "^3.2.2" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/@ant-design/colors": { + "version": "6.0.0", + "integrity": "sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==", + "dependencies": { + "@ctrl/tinycolor": "^3.4.0" + } + }, + "node_modules/@ant-design/icons": { + "version": "4.7.0", + "integrity": "sha512-aoB4Z7JA431rt6d4u+8xcNPPCrdufSRMUOpxa1ab6mz1JCQZOEVolj2WVs/tDFmN62zzK30mNelEsprLYsSF3g==", + "dependencies": { + "@ant-design/colors": "^6.0.0", + "@ant-design/icons-svg": "^4.2.1", + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-util": "^5.9.4" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "react": ">=16.0.0", + "react-dom": ">=16.0.0" + } + }, + "node_modules/@ant-design/icons-svg": { + "version": "4.2.1", + "integrity": "sha512-EB0iwlKDGpG93hW8f85CTJTs4SvMX7tt5ceupvhALp1IF44SeUFOMhKUOYqpsoYWQKAOuTRDMqn75rEaKDp0Xw==" + }, + "node_modules/@ant-design/icons/node_modules/rc-util": { + "version": "5.14.0", + "integrity": "sha512-2vy6/Z1BJUcwLjm/UEJb/htjUTQPigITUIemCcFEo1fQevAumc9sA32x2z5qyWoa9uhrXbiAjSDpPIUqyg65sA==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "react-is": "^16.12.0", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@babel/cli": { + "version": "7.15.7", + "integrity": "sha512-YW5wOprO2LzMjoWZ5ZG6jfbY9JnkDxuHDwvnrThnuYtByorova/I0HNXJedrUfwuXFQfYOjcqDA4PU3qlZGZjg==", + "dependencies": { + "commander": "^4.0.1", + "convert-source-map": "^1.1.0", + "fs-readdir-recursive": "^1.1.0", + "glob": "^7.0.0", + "make-dir": "^2.1.0", + "slash": "^2.0.0", + "source-map": "^0.5.0" + }, + "bin": { + "babel": "bin/babel.js", + "babel-external-helpers": "bin/babel-external-helpers.js" + }, + "engines": { + "node": ">=6.9.0" + }, + "optionalDependencies": { + "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3", + "chokidar": "^3.4.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.15.8", + "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", + "dependencies": { + "@babel/highlight": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.15.0", + "integrity": "sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.15.8", + "integrity": "sha512-3UG9dsxvYBMYwRv+gS41WKHno4K60/9GPy1CJaH6xy3Elq8CTtvtjT5R5jmNhXfCYLX2mTw+7/aq5ak/gOE0og==", + "dependencies": { + "@babel/code-frame": "^7.15.8", + "@babel/generator": "^7.15.8", + "@babel/helper-compilation-targets": "^7.15.4", + "@babel/helper-module-transforms": "^7.15.8", + "@babel/helpers": "^7.15.4", + "@babel/parser": "^7.15.8", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.6", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/eslint-parser": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.16.3.tgz", + "integrity": "sha512-iB4ElZT0jAt7PKVaeVulOECdGe6UnmA/O0P9jlF5g5GBOwDVbna8AXhHRu4s27xQf6OkveyA8iTDv1jHdDejgQ==", + "dependencies": { + "eslint-scope": "^5.1.1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.11.0", + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "node_modules/@babel/eslint-parser/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.15.8", + "integrity": "sha512-ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g==", + "dependencies": { + "@babel/types": "^7.15.6", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.15.4", + "integrity": "sha512-QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.15.4", + "integrity": "sha512-P8o7JP2Mzi0SdC6eWr1zF+AEYvrsZa7GSY1lTayjF5XJhVH0kjLYUZPvTMflP7tBgZoe9gIhTa60QwFpqh/E0Q==", + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.15.4", + "integrity": "sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ==", + "dependencies": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.15.4", + "integrity": "sha512-7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-member-expression-to-functions": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "integrity": "sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "integrity": "sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-explode-assignable-expression": { + "version": "7.15.4", + "integrity": "sha512-J14f/vq8+hdC2KoWLIQSsGrC9EFBKE4NFts8pfMpymfApds+fPqR30AOUWc4tyr56h9l/GA1Sxv2q3dLZWbQ/g==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.15.4", + "integrity": "sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==", + "dependencies": { + "@babel/helper-get-function-arity": "^7.15.4", + "@babel/template": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-get-function-arity": { + "version": "7.15.4", + "integrity": "sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.15.4", + "integrity": "sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.15.4", + "integrity": "sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.15.4", + "integrity": "sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.15.8", + "integrity": "sha512-DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg==", + "dependencies": { + "@babel/helper-module-imports": "^7.15.4", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-simple-access": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "@babel/helper-validator-identifier": "^7.15.7", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.15.4", + "integrity": "sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.14.5", + "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.15.4", + "integrity": "sha512-v53MxgvMK/HCwckJ1bZrq6dNKlmwlyRNYM6ypaRTdXWGOE2c1/SCa6dL/HimhPulGhZKw9W0QhREM583F/t0vQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-wrap-function": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.15.4", + "integrity": "sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw==", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.15.4", + "integrity": "sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.15.4", + "integrity": "sha512-BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.15.4", + "integrity": "sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.15.7", + "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.14.5", + "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.15.4", + "integrity": "sha512-Y2o+H/hRV5W8QhIfTpRIBwl57y8PrZt6JM3V8FOo5qarjshHItyH5lXlpMfBfmBefOqSCpKZs/6Dxqp0E/U+uw==", + "dependencies": { + "@babel/helper-function-name": "^7.15.4", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.15.4", + "integrity": "sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ==", + "dependencies": { + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.14.5", + "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/node": { + "version": "7.15.8", + "integrity": "sha512-JbgTCrnx6IUECznEbQ7e2rbVYtrXKixSbEG2bxxbMkV648WdUf3tdc+ZUW2++dvnnAswcpwc76cRwf0xEQqsrw==", + "dependencies": { + "@babel/register": "^7.15.3", + "commander": "^4.0.1", + "core-js": "^3.16.0", + "node-environment-flags": "^1.0.5", + "regenerator-runtime": "^0.13.4", + "v8flags": "^3.1.1" + }, + "bin": { + "babel-node": "bin/babel-node.js" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/node/node_modules/core-js": { + "version": "3.18.3", + "integrity": "sha512-tReEhtMReZaPFVw7dajMx0vlsz3oOb8ajgPoHVYGxr8ErnZ6PcYEvvmjGmXlfpnxpkYSdOQttjB+MvVbCGfvLw==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/@babel/parser": { + "version": "7.15.8", + "integrity": "sha512-BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.15.4", + "integrity": "sha512-eBnpsl9tlhPhpI10kU06JHnrYXwg3+V6CaP2idsCXNef0aeslpqyITXQ74Vfk5uHgY7IG7XP0yIH8b42KSzHog==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.15.4", + "@babel/plugin-proposal-optional-chaining": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.15.8", + "integrity": "sha512-2Z5F2R2ibINTc63mY7FLqGfEbmofrHU9FitJW1Q7aPaKFhiPvSq6QEt/BoWN5oME3GVyjcRuNNSRbb9LC0CSWA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.15.4", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.14.5", + "integrity": "sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.15.4", + "integrity": "sha512-M682XWrrLNk3chXCjoPUQWOyYsB93B9z3mRyjtqqYJWDf2mfCdIYgDrA11cgNVhAQieaq6F2fn2f3wI0U4aTjA==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.15.8", + "integrity": "sha512-5n8+xGK7YDrXF+WAORg3P7LlCCdiaAyKLZi22eP2BwTy4kJ0kFUMMDCj4nQ8YrKyNZgjhU/9eRVqONnjB3us8g==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-decorators": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.14.5", + "integrity": "sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-default-from": { + "version": "7.14.5", + "integrity": "sha512-T8KZ5abXvKMjF6JcoXjgac3ElmXf0AWzJwi2O/42Jk+HmCky3D9+i1B7NPP1FblyceqTevKeV/9szeikFoaMDg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-default-from": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.14.5", + "integrity": "sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.14.5", + "integrity": "sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.14.5", + "integrity": "sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.14.5", + "integrity": "sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.14.5", + "integrity": "sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.15.6", + "integrity": "sha512-qtOHo7A1Vt+O23qEAX+GdBpqaIuD3i9VRrWgCJeq7WO6H2d14EK3q11urj5Te2MAeK97nMiIdRpwd/ST4JFbNg==", + "dependencies": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-compilation-targets": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.14.5", + "integrity": "sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.14.5", + "integrity": "sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.14.5", + "integrity": "sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.15.4", + "integrity": "sha512-X0UTixkLf0PCCffxgu5/1RQyGGbgZuKoI+vXP4iSbJSYwPb7hu06omsFGBvQ9lJEvwgrxHdS8B5nbfcd8GyUNA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-create-class-features-plugin": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.14.5", + "integrity": "sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.14.5", + "integrity": "sha512-c4sZMRWL4GSvP1EXy0woIP7m4jkVcEuG8R1TOZxPBPtp4FSM/kiPZub9UIs/Jrb5ZAOzvTUSGYrWsrSu1JvoPw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-default-from": { + "version": "7.14.5", + "integrity": "sha512-snWDxjuaPEobRBnhpqEfZ8RMxDbHt8+87fiEioGuE+Uc0xAKgSD8QiuL3lF93hPVQfZFAcYwrrf+H5qUhike3Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.14.5", + "integrity": "sha512-9WK5ZwKCdWHxVuU13XNT6X73FGmutAXeor5lGFq6qhOFtMFUF4jkbijuyUdZZlpYq6E2hZeZf/u3959X9wsv0Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "integrity": "sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.14.5", + "integrity": "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.14.5", + "integrity": "sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.14.5", + "integrity": "sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==", + "dependencies": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.14.5", + "integrity": "sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.15.3", + "integrity": "sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.15.4", + "integrity": "sha512-Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.14.5", + "integrity": "sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.14.7", + "integrity": "sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.14.5", + "integrity": "sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.14.5", + "integrity": "sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.14.5", + "integrity": "sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==", + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.14.5", + "integrity": "sha512-KhcolBKfXbvjwI3TV7r7TkYm8oNXHNBqGOy6JDVwtecFaRoKYsUUqJdS10q0YDKW1c6aZQgO+Ys3LfGkox8pXA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-flow": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.15.4", + "integrity": "sha512-DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.14.5", + "integrity": "sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==", + "dependencies": { + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.14.5", + "integrity": "sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.14.5", + "integrity": "sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.14.5", + "integrity": "sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==", + "dependencies": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.15.4", + "integrity": "sha512-qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA==", + "dependencies": { + "@babel/helper-module-transforms": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-simple-access": "^7.15.4", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.15.4", + "integrity": "sha512-fJUnlQrl/mezMneR72CKCgtOoahqGJNVKpompKwzv3BrEXdlPspTcyxrZ1XmDTIr9PpULrgEQo3qNKp6dW7ssw==", + "dependencies": { + "@babel/helper-hoist-variables": "^7.15.4", + "@babel/helper-module-transforms": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.9", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.14.5", + "integrity": "sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==", + "dependencies": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.14.9", + "integrity": "sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.14.5", + "integrity": "sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.14.5", + "integrity": "sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.15.4", + "integrity": "sha512-9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.14.5", + "integrity": "sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.15.1", + "integrity": "sha512-yQZ/i/pUCJAHI/LbtZr413S3VT26qNrEm0M5RRxQJA947/YNYwbZbBaXGDrq6CG5QsZycI1VIP6d7pQaBfP+8Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.14.9", + "integrity": "sha512-30PeETvS+AeD1f58i1OVyoDlVYQhap/K20ZrMjLmmzmC2AYR/G43D4sdJAaDAqCD3MYpSWbmrz3kES158QSLjw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-jsx": "^7.14.5", + "@babel/types": "^7.14.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.14.5", + "integrity": "sha512-rdwG/9jC6QybWxVe2UVOa7q6cnTpw8JRRHOxntG/h6g/guAOe6AhtQHJuJh5FwmnXIT1bdm5vC2/5huV8ZOorQ==", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.14.9", + "integrity": "sha512-Fqqu0f8zv9W+RyOnx29BX/RlEsBRANbOf5xs5oxb2aHP4FKbLXxIaVPUiCti56LAR1IixMH4EyaixhUsKqoBHw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.14.5", + "integrity": "sha512-1TpSDnD9XR/rQ2tzunBVPThF5poaYT9GqP+of8fAtguYuI/dm2RkrMBDemsxtY0XBzvW7nXjYM0hRyKX9QYj7Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.14.5", + "integrity": "sha512-3X4HpBJimNxW4rhUy/SONPyNQHp5YRr0HhJdT2OH1BRp0of7u3Dkirc7x9FRJMKMqTBI079VZ1hzv7Ouuz///g==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.14.5", + "integrity": "sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==", + "dependencies": { + "regenerator-transform": "^0.14.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.14.5", + "integrity": "sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.15.8", + "integrity": "sha512-+6zsde91jMzzvkzuEA3k63zCw+tm/GvuuabkpisgbDMTPQsIMHllE3XczJFFtEHLjjhKQFZmGQVRdELetlWpVw==", + "dependencies": { + "@babel/helper-module-imports": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.5", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.14.5", + "integrity": "sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.15.8", + "integrity": "sha512-/daZ8s2tNaRekl9YJa9X4bzjpeRZLt122cpgFnQPLGUe61PH8zMEBmYqKkW5xF5JUEh5buEGXJoQpqBmIbpmEQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.14.5", + "integrity": "sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.14.5", + "integrity": "sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.14.5", + "integrity": "sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.15.8", + "integrity": "sha512-ZXIkJpbaf6/EsmjeTbiJN/yMxWPFWvlr7sEG1P95Xb4S4IBcrf2n7s/fItIhsAmOf8oSh3VJPDppO6ExfAfKRQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-typescript": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.14.5", + "integrity": "sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.14.5", + "integrity": "sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/polyfill": { + "version": "7.12.1", + "integrity": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==", + "deprecated": "🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information.", + "dependencies": { + "core-js": "^2.6.5", + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/@babel/polyfill/node_modules/core-js": { + "version": "2.6.12", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.", + "hasInstallScript": true + }, + "node_modules/@babel/preset-env": { + "version": "7.15.8", + "integrity": "sha512-rCC0wH8husJgY4FPbHsiYyiLxSY8oMDJH7Rl6RQMknbN9oDDHhM9RDFvnGM2MgkbUJzSQB4gtuwygY5mCqGSsA==", + "dependencies": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-compilation-targets": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.15.4", + "@babel/plugin-proposal-async-generator-functions": "^7.15.8", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-class-static-block": "^7.15.4", + "@babel/plugin-proposal-dynamic-import": "^7.14.5", + "@babel/plugin-proposal-export-namespace-from": "^7.14.5", + "@babel/plugin-proposal-json-strings": "^7.14.5", + "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", + "@babel/plugin-proposal-numeric-separator": "^7.14.5", + "@babel/plugin-proposal-object-rest-spread": "^7.15.6", + "@babel/plugin-proposal-optional-catch-binding": "^7.14.5", + "@babel/plugin-proposal-optional-chaining": "^7.14.5", + "@babel/plugin-proposal-private-methods": "^7.14.5", + "@babel/plugin-proposal-private-property-in-object": "^7.15.4", + "@babel/plugin-proposal-unicode-property-regex": "^7.14.5", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.14.5", + "@babel/plugin-transform-async-to-generator": "^7.14.5", + "@babel/plugin-transform-block-scoped-functions": "^7.14.5", + "@babel/plugin-transform-block-scoping": "^7.15.3", + "@babel/plugin-transform-classes": "^7.15.4", + "@babel/plugin-transform-computed-properties": "^7.14.5", + "@babel/plugin-transform-destructuring": "^7.14.7", + "@babel/plugin-transform-dotall-regex": "^7.14.5", + "@babel/plugin-transform-duplicate-keys": "^7.14.5", + "@babel/plugin-transform-exponentiation-operator": "^7.14.5", + "@babel/plugin-transform-for-of": "^7.15.4", + "@babel/plugin-transform-function-name": "^7.14.5", + "@babel/plugin-transform-literals": "^7.14.5", + "@babel/plugin-transform-member-expression-literals": "^7.14.5", + "@babel/plugin-transform-modules-amd": "^7.14.5", + "@babel/plugin-transform-modules-commonjs": "^7.15.4", + "@babel/plugin-transform-modules-systemjs": "^7.15.4", + "@babel/plugin-transform-modules-umd": "^7.14.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.9", + "@babel/plugin-transform-new-target": "^7.14.5", + "@babel/plugin-transform-object-super": "^7.14.5", + "@babel/plugin-transform-parameters": "^7.15.4", + "@babel/plugin-transform-property-literals": "^7.14.5", + "@babel/plugin-transform-regenerator": "^7.14.5", + "@babel/plugin-transform-reserved-words": "^7.14.5", + "@babel/plugin-transform-shorthand-properties": "^7.14.5", + "@babel/plugin-transform-spread": "^7.15.8", + "@babel/plugin-transform-sticky-regex": "^7.14.5", + "@babel/plugin-transform-template-literals": "^7.14.5", + "@babel/plugin-transform-typeof-symbol": "^7.14.5", + "@babel/plugin-transform-unicode-escapes": "^7.14.5", + "@babel/plugin-transform-unicode-regex": "^7.14.5", + "@babel/preset-modules": "^0.1.4", + "@babel/types": "^7.15.6", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.5", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "core-js-compat": "^3.16.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-flow": { + "version": "7.14.5", + "integrity": "sha512-pP5QEb4qRUSVGzzKx9xqRuHUrM/jEzMqdrZpdMA+oUCRgd5zM1qGr5y5+ZgAL/1tVv1H0dyk5t4SKJntqyiVtg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-transform-flow-strip-types": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.4", + "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", + "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" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.14.5", + "integrity": "sha512-XFxBkjyObLvBaAvkx1Ie95Iaq4S/GUEIrejyrntQ/VCMKUYvKLoyKxOBzJ2kjA3b6rC9/KL6KXfDC2GqvLiNqQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-transform-react-display-name": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.5", + "@babel/plugin-transform-react-jsx-development": "^7.14.5", + "@babel/plugin-transform-react-pure-annotations": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.15.0", + "integrity": "sha512-lt0Y/8V3y06Wq/8H/u0WakrqciZ7Fz7mwPDHWUJAXlABL5hiUG42BNlRXiELNjeWjO5rWmnNKlx+yzJvxezHow==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-transform-typescript": "^7.15.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/register": { + "version": "7.15.3", + "integrity": "sha512-mj4IY1ZJkorClxKTImccn4T81+UKTo4Ux0+OFSV9hME1ooqS9UV+pJ6BjD0qXPK4T3XW/KNa79XByjeEMZz+fw==", + "dependencies": { + "clone-deep": "^4.0.1", + "find-cache-dir": "^2.0.0", + "make-dir": "^2.1.0", + "pirates": "^4.0.0", + "source-map-support": "^0.5.16" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.15.4", + "integrity": "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==", + "dependencies": { + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime-corejs2": { + "version": "7.15.4", + "integrity": "sha512-TmuTI+n5HsMesW6Ah2WjvBwix9fBMXwbMxQV3c0ETLAzlmwN4OeRVbYMYwp9P4LEOlAxwGKdd9e8pMiLMAg/Mg==", + "dependencies": { + "core-js": "^2.6.5", + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime-corejs2/node_modules/core-js": { + "version": "2.6.12", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.", + "hasInstallScript": true + }, + "node_modules/@babel/runtime-corejs3": { + "version": "7.15.4", + "integrity": "sha512-lWcAqKeB624/twtTc3w6w/2o9RqJPaNBhPGK6DKLSiwuVWC7WFkypWyNg+CpZoyJH0jVzv1uMtXZ/5/lQOLtCg==", + "dependencies": { + "core-js-pure": "^3.16.0", + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.15.4", + "integrity": "sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg==", + "dependencies": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.15.4", + "integrity": "sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==", + "dependencies": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-hoist-variables": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "@babel/parser": "^7.15.4", + "@babel/types": "^7.15.4", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.15.6", + "integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.14.9", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@base2/pretty-print-object": { + "version": "1.0.1", + "integrity": "sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==" + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + }, + "node_modules/@beemo/core": { + "version": "1.1.8", + "integrity": "sha512-mZfPEXoIwUQeAIHYt97c27cHk/xacIO/STOT29/lnzp4sbJiN1BtGcMa9+6zulVgiC2abeKuneSuXKXSu+LF3Q==", + "dependencies": { + "@beemo/dependency-graph": "^1.1.1", + "@boost/common": "^1.8.5", + "@boost/core": "^1.18.6", + "@boost/event": "^1.3.1", + "@types/micromatch": "^4.0.1", + "@types/yargs": "^15.0.5", + "@types/yargs-parser": "^15.0.0", + "chalk": "^3.0.0", + "execa": "^3.4.0", + "fast-glob": "^3.0.4", + "fs-extra": "^8.1.0", + "hygen": "^5.0.3", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "micromatch": "^4.0.2", + "optimal": "^4.2.0", + "yargs": "^15.3.1", + "yargs-parser": "^18.1.3" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/@beemo/core/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@beemo/core/node_modules/chalk": { + "version": "3.0.0", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@beemo/core/node_modules/execa": { + "version": "3.4.0", + "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==", + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": "^8.12.0 || >=9.7.0" + } + }, + "node_modules/@beemo/core/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@beemo/core/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@beemo/core/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@beemo/core/node_modules/p-finally": { + "version": "2.0.1", + "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@beemo/core/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@beemo/core/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@beemo/dependency-graph": { + "version": "1.1.1", + "integrity": "sha512-fGPazlIZmBfqC/ayoPm2jahdurssiYZV9HXb/MOYXmF6WdP6MIMALx6k18kjAxJflv5FcmvS6ESKU+eBrrh0ug==", + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/@beemo/driver-babel": { + "version": "1.2.6", + "integrity": "sha512-ZQTi87HDBkJwsmtBsL2RYKJ7LH3z/tcxTtkrEBGPCeElBUdQ9Drr1adqQP1AWim9/vq6U/PmiLHl7a+nIBV8Sg==", + "dependencies": { + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=8.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@beemo/core": "^1.0.0" + } + }, + "node_modules/@beemo/driver-webpack": { + "version": "1.2.6", + "integrity": "sha512-2sPD+rrkYJlB4fnKB7QKAc2txb/3h/RLljfTJjpOSC2iOTi2/3c9FaefhMOKNRnT2SMNuBPGpuITxvekvJOXhQ==", + "dependencies": { + "@types/webpack": "^4.41.13" + }, + "engines": { + "node": ">=8.9.0" + }, + "peerDependencies": { + "@beemo/core": "^1.0.0", + "webpack": "^4.0.0" + } + }, + "node_modules/@boost/common": { + "version": "1.9.0", + "integrity": "sha512-noa7rTHvOjEz+RBAiQetD3/I3vBgj4ssrmcN4ElMXrFEDgcrHeWWnJ/iMx8JeSUAtedyh6XNSjiwgjToS67x5w==", + "dependencies": { + "@boost/internal": "^1.2.0", + "json5": "^2.1.3", + "optimal": "^4.2.0", + "pretty-ms": "^5.1.0", + "yaml": "^1.9.2" + }, + "engines": { + "node": ">=8.9.0" + }, + "funding": { + "type": "ko-fi", + "url": "https://ko-fi.com/milesjohnson" + } + }, + "node_modules/@boost/core": { + "version": "1.18.7", + "integrity": "sha512-ixlcsu0tIA9Q3hoXQDip2NFHFQdBPjnRrmEMbFXaF2rUJD4ZA51EkKXfQWLFLIErDlJNwrorSWHXaHoJuSfNag==", + "deprecated": "Package has been deprecated. Core has been split into multiple stand-alone packages. https://github.com/milesj/boost", + "dependencies": { + "@boost/common": "^1.9.0", + "@boost/debug": "^1.4.7", + "@boost/event": "^1.3.1", + "@boost/internal": "^1.2.0", + "@boost/log": "^1.2.1", + "@boost/terminal": "^1.0.3", + "@boost/translate": "^1.3.10", + "@types/debug": "^4.1.5", + "@types/yargs": "^15.0.4", + "@types/yargs-parser": "^15.0.0", + "debug": "^4.1.1", + "env-ci": "^4.5.1", + "execa": "^3.4.0", + "exit": "^0.1.2", + "fast-glob": "^3.2.2", + "fs-extra": "^8.1.0", + "json5": "^2.1.3", + "lodash": "^4.17.15", + "optimal": "^4.2.0", + "pluralize": "^8.0.0", + "split": "^1.0.1", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8.9.0" + }, + "funding": { + "type": "ko-fi", + "url": "https://ko-fi.com/milesjohnson" + } + }, + "node_modules/@boost/core/node_modules/execa": { + "version": "3.4.0", + "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==", + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": "^8.12.0 || >=9.7.0" + } + }, + "node_modules/@boost/core/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@boost/core/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@boost/core/node_modules/p-finally": { + "version": "2.0.1", + "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@boost/core/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@boost/debug": { + "version": "1.4.7", + "integrity": "sha512-Vw+4r6K17T0yLVIunpnjWOcbs5K4qFx98tEaXawE2PFicaR+DPPPXTihAZWkzTuZxM7Lh2s8RI8s+70HfsOc0Q==", + "dependencies": { + "@boost/common": "^1.9.0", + "@boost/internal": "^1.2.0", + "@types/debug": "^4.1.5", + "debug": "^4.1.1", + "execa": "^3.4.0", + "fast-glob": "^3.2.2" + }, + "engines": { + "node": ">=8.9.0" + }, + "funding": { + "type": "ko-fi", + "url": "https://ko-fi.com/milesjohnson" + } + }, + "node_modules/@boost/debug/node_modules/execa": { + "version": "3.4.0", + "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==", + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": "^8.12.0 || >=9.7.0" + } + }, + "node_modules/@boost/debug/node_modules/p-finally": { + "version": "2.0.1", + "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@boost/event": { + "version": "1.3.1", + "integrity": "sha512-DjXS55vhBswRZQ5DDL592PZRsTfjgkpEAQCFrUmdNEIi3wUCmrc2BrGg1FdxNtln8FAsGYmLy+s0IyFIyYpUxA==", + "dependencies": { + "@boost/internal": "^1.2.0" + }, + "engines": { + "node": ">=8.9.0" + }, + "funding": { + "type": "ko-fi", + "url": "https://ko-fi.com/milesjohnson" + } + }, + "node_modules/@boost/internal": { + "version": "1.2.0", + "integrity": "sha512-G+F62WMOReCD/tXC1gQgvhfbVXEtorNJZFcYZ0sG4KHWlJK0gw6DZpoFG8tCrUKQuZ5aXmA783w3iypRTCZzpg==", + "dependencies": { + "chalk": "^3.0.0", + "debug": "^4.1.1" + }, + "engines": { + "node": ">=8.9.0" + }, + "funding": { + "type": "ko-fi", + "url": "https://ko-fi.com/milesjohnson" + } + }, + "node_modules/@boost/internal/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@boost/internal/node_modules/chalk": { + "version": "3.0.0", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@boost/internal/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@boost/internal/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@boost/log": { + "version": "1.2.1", + "integrity": "sha512-76He+uVCY1DDa28/TaGddBQhQ3uIlndasH7+y139M/J8+l6e0TZgQtBHFJY74mkrUmg0h4GfJ0oyiJ91ysrwYw==", + "dependencies": { + "@boost/internal": "^1.2.0", + "@boost/translate": "^1.3.10", + "chalk": "^3.0.0" + }, + "engines": { + "node": ">=8.9.0" + }, + "funding": { + "type": "ko-fi", + "url": "https://ko-fi.com/milesjohnson" + } + }, + "node_modules/@boost/log/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@boost/log/node_modules/chalk": { + "version": "3.0.0", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@boost/log/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@boost/log/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@boost/terminal": { + "version": "1.0.3", + "integrity": "sha512-r9PRBWzW5JBlfMkB0aVh/ighrxpFE/lQriQCBKqAYWFdglHCZtewkz8Bjxu8fPUuAR6dp/SqvFbS5S7Pukpo2Q==", + "dependencies": { + "ansi-escapes": "^4.3.1", + "ansi-regex": "^5.0.0", + "chalk": "^3.0.0", + "cli-truncate": "^2.1.0", + "figures": "^3.2.0", + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "supports-hyperlinks": "^2.1.0", + "term-size": "^2.2.0", + "wrap-ansi": "^6.2.0" + }, + "engines": { + "node": ">=8.9.0" + }, + "funding": { + "type": "ko-fi", + "url": "https://ko-fi.com/milesjohnson" + } + }, + "node_modules/@boost/terminal/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@boost/terminal/node_modules/chalk": { + "version": "3.0.0", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@boost/terminal/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@boost/terminal/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@boost/translate": { + "version": "1.3.10", + "integrity": "sha512-wbFDQCKoy1iCukzUsbt4IUJayTCj0tJRvkOQ6yk4fNhVoHvfGFUSdI774bdi0uMwpU+RGdxZS22nxhv+d1P8Fw==", + "dependencies": { + "@boost/common": "^1.9.0", + "@boost/internal": "^1.2.0", + "i18next": "^19.4.2", + "os-locale": "^4.0.0" + }, + "engines": { + "node": ">=8.9.0" + }, + "funding": { + "type": "ko-fi", + "url": "https://ko-fi.com/milesjohnson" + } + }, + "node_modules/@chromaui/localtunnel": { + "version": "2.0.4", + "integrity": "sha512-92AI1cIzI8XmKnsuKhIOysdZ+ecc8iCqRnoUnZ4/6Nr9PEd/CStJtK6OBAanw1QYPiojzegfeAW3uBSVFxLm4g==", + "dev": true, + "dependencies": { + "axios": "0.21.4", + "debug": "4.3.1", + "openurl": "1.1.1", + "yargs": "16.2.0" + }, + "bin": { + "lt": "bin/lt.js" + }, + "engines": { + "node": ">=8.3.0" + } + }, + "node_modules/@chromaui/localtunnel/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@chromaui/localtunnel/node_modules/cliui": { + "version": "7.0.4", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/@chromaui/localtunnel/node_modules/debug": { + "version": "4.3.1", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@chromaui/localtunnel/node_modules/wrap-ansi": { + "version": "7.0.0", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@chromaui/localtunnel/node_modules/y18n": { + "version": "5.0.8", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@chromaui/localtunnel/node_modules/yargs": { + "version": "16.2.0", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@chromaui/localtunnel/node_modules/yargs-parser": { + "version": "20.2.9", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@cnakazawa/watch": { + "version": "1.0.4", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "dependencies": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "bin": { + "watch": "cli.js" + }, + "engines": { + "node": ">=0.1.95" + } + }, + "node_modules/@commitlint/cli": { + "version": "7.6.1", + "integrity": "sha512-HEJwQ/aK0AOcAwn77ZKbb/GZhlGxBSPhtVp07uoJFVqM12l2Ia2JHA+MTpfHCFdVahKyYGREZgxde6LyKyG8aQ==", + "dependencies": { + "@commitlint/format": "^7.6.1", + "@commitlint/lint": "^7.6.0", + "@commitlint/load": "^7.6.1", + "@commitlint/read": "^7.6.0", + "babel-polyfill": "6.26.0", + "chalk": "2.3.1", + "get-stdin": "7.0.0", + "lodash": "4.17.11", + "meow": "5.0.0", + "resolve-from": "5.0.0", + "resolve-global": "1.0.0" + }, + "bin": { + "commitlint": "lib/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/cli/node_modules/chalk": { + "version": "2.3.1", + "integrity": "sha512-QUU4ofkDoMIVO7hcx1iPTISs88wsO8jA92RQIm4JAwZvFGGAV2hSAA1NX7oVj2Ej2Q6NDTcRDjPTFrMCRZoJ6g==", + "dependencies": { + "ansi-styles": "^3.2.0", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/cli/node_modules/escape-string-regexp": { + "version": "1.0.5", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@commitlint/cli/node_modules/lodash": { + "version": "4.17.11", + "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" + }, + "node_modules/@commitlint/config-conventional": { + "version": "7.6.0", + "integrity": "sha512-1Gnv5p3tc1VsEK25oTIRBO86czLtX6s/jeLNPAQRzdCnyEmsxkbx/sfoUJ1dwv7v8W++xckVnnuvdZv2Hp8yCw==" + }, + "node_modules/@commitlint/config-lerna-scopes": { + "version": "7.6.0", + "integrity": "sha512-cp/gIi47in0VShYpI2cc0vG/TBriai2EZE5CUaun6LLl6++8vn8OF/2W/oJ0e8L43zX7T2v90yFoWNbFcLssIw==", + "dependencies": { + "import-from": "3.0.0", + "resolve-pkg": "2.0.0", + "semver": "6.0.0" + }, + "peerDependencies": { + "lerna": "^3.0.0" + } + }, + "node_modules/@commitlint/config-lerna-scopes/node_modules/semver": { + "version": "6.0.0", + "integrity": "sha512-0UewU+9rFapKFnlbirLi3byoOuhrSsli/z/ihNnvM24vgF+8sNBiI1LZPBSH9wJKUwaUbw+s3hToDLCXkrghrQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@commitlint/ensure": { + "version": "7.6.0", + "integrity": "sha512-pSUrNud5L/8y+cLWo3LEa8Ce4bAAR33xMderFUhuNPHj7TwpNS7L4ROMnhL4ZlCYRazCRDlnPaJLPikMoWThfA==", + "dependencies": { + "lodash": "4.17.11" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/ensure/node_modules/lodash": { + "version": "4.17.11", + "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" + }, + "node_modules/@commitlint/execute-rule": { + "version": "7.6.0", + "integrity": "sha512-0inGOIlLefPDtiDOaZ6WoE1p+GEZZIj2VwUftUozD3C71TiwP9UfKAVVtUDFPIeL6RgSqCkCf7zsy6NKNxwkBg==", + "dependencies": { + "babel-runtime": "6.26.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/format": { + "version": "7.6.1", + "integrity": "sha512-Ldzf5N2Sr9RQqvlYwaQn4vz1WOZ7byYinspC/WCrbfcETGy28j7QE4OueZU6nNB9TjwwEorKm13uy7tDWPR7dg==", + "dependencies": { + "babel-runtime": "^6.23.0", + "chalk": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/is-ignored": { + "version": "7.6.0", + "integrity": "sha512-By/mLNhz+6Rtix9+Kyof1gdKiELchAnQHpdeKIHIOe9sjbvd3HqDoFHh/mGMMRnGIPMZOX5TO8Fqy3A/2HqlTw==", + "dependencies": { + "semver": "6.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/is-ignored/node_modules/semver": { + "version": "6.0.0", + "integrity": "sha512-0UewU+9rFapKFnlbirLi3byoOuhrSsli/z/ihNnvM24vgF+8sNBiI1LZPBSH9wJKUwaUbw+s3hToDLCXkrghrQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@commitlint/lint": { + "version": "7.6.0", + "integrity": "sha512-aUIFX0lPRZL7WmT8W8qzogJD4LmHk6JPG3XUAX+K0pOHGjC/0ALvSAytvoLXy4fvmSnGJkXmWhzSW7c0Spa14Q==", + "dependencies": { + "@commitlint/is-ignored": "^7.6.0", + "@commitlint/parse": "^7.6.0", + "@commitlint/rules": "^7.6.0", + "babel-runtime": "^6.23.0", + "lodash": "4.17.11" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/lint/node_modules/lodash": { + "version": "4.17.11", + "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" + }, + "node_modules/@commitlint/load": { + "version": "7.6.2", + "integrity": "sha512-I+xk+BkXAG1roXNrPsR1eOd5hEa+oLc6HLYnHAT/HLGKKB3E01IGg3O5SGlg7lpf1yiAaYI+wAnNTr3f3sIbWQ==", + "dependencies": { + "@commitlint/execute-rule": "^7.6.0", + "@commitlint/resolve-extends": "^7.6.0", + "babel-runtime": "^6.23.0", + "cosmiconfig": "^5.2.0", + "lodash": "4.17.11", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/load/node_modules/lodash": { + "version": "4.17.11", + "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" + }, + "node_modules/@commitlint/message": { + "version": "7.6.0", + "integrity": "sha512-PtP4jhBYGXLaQQC5jel+RQczG2tS3Cy6rRxQioUfCUaEg/LV029ao/KcL1kHEBJ8hSW/SUmnvDaD9Y6nozLQMA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/parse": { + "version": "7.6.0", + "integrity": "sha512-1x60kTqz2VBCjYE+8MV5BhE+ShPo7MgVlrMWSlxiiJDWP5CvWa+SBbUayDJ7rtOXimjTASZ9ZNZTuFPdJE/Y7A==", + "dependencies": { + "conventional-changelog-angular": "^1.3.3", + "conventional-commits-parser": "^2.1.0", + "lodash": "^4.17.11" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/read": { + "version": "7.6.0", + "integrity": "sha512-OyligtK/e4xnQklrQqTcSMM27eNhq+LqXfoeVouuPx059oDEw9wZYNN4HGzyxs4Pb6GdMpzRHLdeMQ24M+AiYw==", + "dependencies": { + "@commitlint/top-level": "^7.6.0", + "@marionebl/sander": "^0.6.0", + "babel-runtime": "^6.23.0", + "git-raw-commits": "^1.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/resolve-extends": { + "version": "7.6.0", + "integrity": "sha512-fk8KvNiEbRc+p8nPFuysVP2O95+sb8vlIDTjqtGVObqrzFINRfERXwqBmTBtcu556BoDAR2hwRVXmuwhns+Duw==", + "dependencies": { + "babel-runtime": "6.26.0", + "import-fresh": "^3.0.0", + "lodash": "4.17.11", + "resolve-from": "^5.0.0", + "resolve-global": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/resolve-extends/node_modules/lodash": { + "version": "4.17.11", + "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" + }, + "node_modules/@commitlint/rules": { + "version": "7.6.0", + "integrity": "sha512-shLJdMUwdVeE5UgOE8E+c+PFS7+0FFGfheMa3s6ZK+xX8pTUxseXZu9iCF4mwF+WWkVk518xPuNLvmYE96salQ==", + "dependencies": { + "@commitlint/ensure": "^7.6.0", + "@commitlint/message": "^7.6.0", + "@commitlint/to-lines": "^7.6.0", + "babel-runtime": "^6.23.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/to-lines": { + "version": "7.6.0", + "integrity": "sha512-L/Vl5ThRuBHnSNZBtc+p2LCs2ayxWodC+I/X3NKUywSmr6kKpJJCFqHHHqPu+yXwGUPwqCMQhogIGLuv9TtWWw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/top-level": { + "version": "7.6.0", + "integrity": "sha512-R2RzJZDuT2TU2dZMrRd7olax5IDVcUB/O8k76d1LW13CQ9/2ArJi3TCFXSZIaGpCUnyAYA5KiCZ+c1opnyQuog==", + "dependencies": { + "find-up": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/top-level/node_modules/find-up": { + "version": "2.1.0", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/top-level/node_modules/locate-path": { + "version": "2.0.0", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/top-level/node_modules/p-limit": { + "version": "1.3.0", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/top-level/node_modules/p-locate": { + "version": "2.0.0", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/top-level/node_modules/p-try": { + "version": "1.0.0", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "engines": { + "node": ">=4" + } + }, + "node_modules/@commitlint/top-level/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/@ctrl/tinycolor": { + "version": "3.4.0", + "integrity": "sha512-JZButFdZ1+/xAfpguQHoabIXkcqRRKpMrWKBkpEZZyxfY9C1DpADFB8PEqGSTeFr135SaTRfKqGKx5xSCLI7ZQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@data-ui/event-flow": { + "version": "0.0.84", + "integrity": "sha512-XOOYvpRMAT1r66dnGsrnQ+VEZVtY56np/wxzHcW7iqvvvxefvbkjGMUe0rAbMeSg17hjUfDQTBIBvf3uiVIQTA==", + "dependencies": { + "@babel/polyfill": "^7.0.0", + "@babel/runtime-corejs2": "^7.1.5", + "@data-ui/forms": "^0.0.84", + "@data-ui/radial-chart": "^0.0.84", + "@data-ui/theme": "^0.0.84", + "@vx/axis": "0.0.140", + "@vx/bounds": "0.0.140", + "@vx/clip-path": "0.0.140", + "@vx/glyph": "0.0.140", + "@vx/gradient": "0.0.140", + "@vx/grid": "0.0.140", + "@vx/group": "0.0.140", + "@vx/legend": "0.0.140", + "@vx/pattern": "0.0.140", + "@vx/point": "0.0.136", + "@vx/responsive": "0.0.140", + "@vx/scale": "0.0.140", + "@vx/shape": "0.0.140", + "@vx/tooltip": "0.0.140", + "aphrodite": "^1.2.0", + "d3-array": "^1.2.0", + "d3-format": "^1.2.0", + "d3-selection": "^1.1.0", + "d3-zoom": "^1.3.0", + "immutable": "^3.8.1", + "prop-types": "^15.5.10", + "react-split-pane": "^0.1.63", + "react-with-styles": "^1.3.0", + "react-with-styles-interface-aphrodite": "^1.2.0", + "recompose": "^0.23.5" + }, + "peerDependencies": { + "aphrodite": "^1.2.0", + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/event-flow/node_modules/@vx/responsive": { + "version": "0.0.140", + "integrity": "sha1-xz7Gi56JoYFgXxrJ7MCfNSFneag=", + "dependencies": { + "lodash": "^4.0.8" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/event-flow/node_modules/hoist-non-react-statics": { + "version": "1.2.0", + "integrity": "sha1-qkSM8JhtVcxAdzsXF0t90GbLfPs=" + }, + "node_modules/@data-ui/event-flow/node_modules/recompose": { + "version": "0.23.5", + "integrity": "sha1-cqyCYSRr7DeCNdGHRn0CpyHosd4=", + "dependencies": { + "change-emitter": "^0.1.2", + "fbjs": "^0.8.1", + "hoist-non-react-statics": "^1.0.0", + "symbol-observable": "^1.0.4" + }, + "peerDependencies": { + "react": "^0.14.0 || ^15.0.0" + } + }, + "node_modules/@data-ui/forms": { + "version": "0.0.84", + "integrity": "sha512-c6AEV4XDsIGT0+gwe8MNfRldtZfZaCs+ge2R1p9fkRwQd/nu8dJFVspuu0/EyHBtjm1F9y+6Drs3yyLFK3M+ug==", + "dependencies": { + "prop-types": "^15.5.10", + "react-select": "^1.2.1" + }, + "peerDependencies": { + "aphrodite": "^1.2.0", + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/histogram": { + "version": "0.0.84", + "integrity": "sha512-JuAUd3cgbDvXd1PKddB3L3SvZj5VFXTLG9za0RlqgbEsddR2dgUfJJQ5GacJ7a3o/SpmJ0zRGJVXb5VZozjj2Q==", + "dependencies": { + "@data-ui/shared": "^0.0.84", + "@data-ui/theme": "^0.0.84", + "@vx/axis": "^0.0.179", + "@vx/curve": "^0.0.165", + "@vx/event": "^0.0.179", + "@vx/glyph": "^0.0.179", + "@vx/gradient": "^0.0.165", + "@vx/group": "^0.0.170", + "@vx/pattern": "^0.0.179", + "@vx/responsive": "^0.0.192", + "@vx/scale": "^0.0.179", + "@vx/shape": "^0.0.179", + "@vx/tooltip": "0.0.179", + "d3-array": "^1.2.0", + "d3-scale": "^1.0.6", + "prop-types": "^15.5.10", + "react-move": "^2.1.0" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0", + "react-dom": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/histogram/node_modules/@vx/axis": { + "version": "0.0.179", + "integrity": "sha512-FtUcdJxejYn5jgixSgSk9AdA96VwP9sCRATVfGvugEL0gtTKWYDbJEgSgqXfKqpeUdsDdf/JT7NVbLMc1hzrZg==", + "dependencies": { + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "@vx/shape": "0.0.179", + "@vx/text": "0.0.179", + "classnames": "^2.2.5", + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/histogram/node_modules/@vx/bounds": { + "version": "0.0.165", + "integrity": "sha512-ZvRb72/4QNs1ZrytZTZxd0hfAb/KKfhsdkcYtIQkmdF6dTsjigMQZ+h2bLvLnbZb/RxyCCoxdiZSGXd+T1c//Q==", + "dependencies": { + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0", + "react-dom": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/histogram/node_modules/@vx/glyph": { + "version": "0.0.179", + "integrity": "sha512-RO7adwyG+9gGzjFdfmplrojgWCT+gsOnIFcRgJNJjx41+P6hWdI9X4OpsLx8VVqNhp7g+hxBDZWte8AxTvLQGw==", + "dependencies": { + "@vx/group": "0.0.170", + "classnames": "^2.2.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/histogram/node_modules/@vx/gradient": { + "version": "0.0.165", + "integrity": "sha512-FjRXMTmcy7k0TWsfDzWWXw6T9WXKP+6LS/GRgnguq271pab/P+AdOJThsVxtBgUc8ZOAPbub3/2Gggz9d8tocg==", + "dependencies": { + "classnames": "^2.2.5", + "prop-types": "^15.5.7" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/histogram/node_modules/@vx/group": { + "version": "0.0.170", + "integrity": "sha512-RnDdRoy0YI5hokk+YWXc8t39Kp51i4BdCpiwkDJU4YypGycTYnDFjicam6jigUmZ/6wyMirDf/aQboWviFLt2Q==", + "dependencies": { + "classnames": "^2.2.5" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/histogram/node_modules/@vx/pattern": { + "version": "0.0.179", + "integrity": "sha512-qvJsK07oUnSbuzj9jo7b/1Up13DknIeTlj9FDIhg0UNmz90ikVN2CZIWtdJyc2I1AFDEg0odOqYXzUx9aEBRfg==", + "dependencies": { + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/histogram/node_modules/@vx/point": { + "version": "0.0.165", + "integrity": "sha512-spoHilhjcWNgccrSzBUPw+PXV81tYxeyEWBkgr35aGVU4m7YT86Ywvfemwp7AVVGPn+XJHrhB0ujAhDoyqFPoA==" + }, + "node_modules/@data-ui/histogram/node_modules/@vx/responsive": { + "version": "0.0.192", + "integrity": "sha512-HaXVwhSJXUfRbzRV+glxsX0ki2Hi1mdpz42iuGArVQgDPJEmBHjkXyoiXU8U6v66M7FAH+OyKgtc5j2bfhyYzA==", + "dependencies": { + "lodash": "^4.17.10", + "prop-types": "^15.6.1", + "resize-observer-polyfill": "1.5.0" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/histogram/node_modules/@vx/scale": { + "version": "0.0.179", + "integrity": "sha512-j40WiGu4VcHZdaSQAl12ig2w5c4Q9EVn7qqYf9PX7uoS5PbxRYNnHeKZ7e5Bf8O6b57iv5jFTfUV7HkpNF4vvg==", + "dependencies": { + "d3-scale": "^2.0.0" + } + }, + "node_modules/@data-ui/histogram/node_modules/@vx/scale/node_modules/d3-scale": { + "version": "2.2.2", + "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" + } + }, + "node_modules/@data-ui/histogram/node_modules/@vx/shape": { + "version": "0.0.179", + "integrity": "sha512-YHVNx4xGpbjolkW3Lb5pEgJB0+u349vfnLI976DJlinY0hRNa4TZbWXOB4ywLIrYzQEXXPMUR8WtdubNxg6g0w==", + "dependencies": { + "@vx/curve": "0.0.165", + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/histogram/node_modules/@vx/text": { + "version": "0.0.179", + "integrity": "sha512-UD3/8o15+AQfjDI8LQ1Zj3EdQCwA3cfuQMR/M2F/Le4+JXQNMheeWz4xGyF4ZDs6r7c5cUI9Cd1RaPmGhYsX9g==", + "dependencies": { + "babel-plugin-lodash": "^3.3.2", + "classnames": "^2.2.5", + "lodash": "^4.17.4", + "prop-types": "^15.6.2", + "reduce-css-calc": "^1.3.0" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/histogram/node_modules/@vx/tooltip": { + "version": "0.0.179", + "integrity": "sha512-BjMURtNpc1g3Li00iHt4bA9lbhk1FnsxCemYI1OF5tSSKHHal2ZAdxRS7o1sR9+jIa3RyD9flfIa1ibtrJh2Ew==", + "dependencies": { + "@vx/bounds": "0.0.165", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/histogram/node_modules/d3-scale": { + "version": "1.0.7", + "integrity": "sha512-KvU92czp2/qse5tUfGms6Kjig0AhHOwkzXG0+PqIJB3ke0WUv088AHMZI0OssO9NCkXt4RP8yju9rpH8aGB7Lw==", + "dependencies": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-color": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + }, + "node_modules/@data-ui/histogram/node_modules/resize-observer-polyfill": { + "version": "1.5.0", + "integrity": "sha512-M2AelyJDVR/oLnToJLtuDJRBBWUGUvvGigj1411hXhAdyFWqMaqHp7TixW3FpiLuVaikIcR1QL+zqoJoZlOgpg==" + }, + "node_modules/@data-ui/radial-chart": { + "version": "0.0.84", + "integrity": "sha512-YKvcrtXD+RnZIngB398exuGICIwbQeVbV3Sbqg6txd4dVN9ixsvOFHCaNO5ugqMcyVeFGpMZAtGeau5kUZa73Q==", + "dependencies": { + "@data-ui/shared": "^0.0.84", + "@data-ui/theme": "^0.0.84", + "@vx/event": "0.0.140", + "@vx/group": "0.0.140", + "@vx/scale": "0.0.140", + "@vx/shape": "0.0.140", + "@vx/tooltip": "0.0.140", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0", + "react-dom": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/radial-chart/node_modules/@vx/event": { + "version": "0.0.140", + "integrity": "sha1-ZY7E3pLNYd9AuIMpYWjU4IJAFb8=", + "dependencies": { + "@vx/point": "0.0.136" + } + }, + "node_modules/@data-ui/shared": { + "version": "0.0.84", + "integrity": "sha512-MsDLsFzBHFEREr/eF2/RX1o/cXioEg+VQTsM8gViW5ywGQ7Xo5+EqUOaBSrwqKAkvp3e8PaEZVkchPC54IBhrA==", + "dependencies": { + "@data-ui/theme": "^0.0.84", + "@vx/event": "^0.0.165", + "@vx/group": "^0.0.165", + "@vx/shape": "^0.0.168", + "@vx/tooltip": "0.0.165", + "d3-array": "^1.2.1", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0", + "react-dom": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/shared/node_modules/@vx/bounds": { + "version": "0.0.165", + "integrity": "sha512-ZvRb72/4QNs1ZrytZTZxd0hfAb/KKfhsdkcYtIQkmdF6dTsjigMQZ+h2bLvLnbZb/RxyCCoxdiZSGXd+T1c//Q==", + "dependencies": { + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0", + "react-dom": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/shared/node_modules/@vx/event": { + "version": "0.0.165", + "integrity": "sha512-FsQiw0f3s5DQB6aBQmBcoWk9e4q65LcDobHIyV8qrmpW2QgV2NvQFM1w0Q300ohpRMgJDzGk68HHHQgFOJvApw==", + "dependencies": { + "@vx/point": "0.0.165" + } + }, + "node_modules/@data-ui/shared/node_modules/@vx/group": { + "version": "0.0.165", + "integrity": "sha512-gi1DSg8AAaVRseyWiq8y4bzyvKiQIXT6vDUYBVRmv2LBcpHocBGaxNiNK0X602RgLG0XmNyRv6qSCWLOaBs3Mg==", + "dependencies": { + "classnames": "^2.2.5" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/shared/node_modules/@vx/point": { + "version": "0.0.165", + "integrity": "sha512-spoHilhjcWNgccrSzBUPw+PXV81tYxeyEWBkgr35aGVU4m7YT86Ywvfemwp7AVVGPn+XJHrhB0ujAhDoyqFPoA==" + }, + "node_modules/@data-ui/shared/node_modules/@vx/shape": { + "version": "0.0.168", + "integrity": "sha512-urKZkwSafMpPQ0wI/L5FJmufRiAR4UsgYUCKxROjfE1Cf4jWNlK6mlVIIASxCdHlh9CGBbIrRMdl5Yv5lzqhjA==", + "dependencies": { + "@vx/curve": "0.0.165", + "@vx/group": "0.0.165", + "@vx/point": "0.0.165", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/shared/node_modules/@vx/tooltip": { + "version": "0.0.165", + "integrity": "sha512-/x1NZc67QGQ4e/WNT7Ks5LYRyeLSqp8lG04gX5J6leUS0zscAVzo3aE5u65Qqbc0cnMyMPRZ2Qtb4klWTLg+eQ==", + "dependencies": { + "@vx/bounds": "0.0.165", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/sparkline": { + "version": "0.0.84", + "integrity": "sha512-Ja7T2JjioZtnoy0PEXF72qv/J8xIotu+oS1Z+ygVGZni6aN/DUY35eGpg/DDeemEFDMoifcx+kYa5LU7hQCnJg==", + "dependencies": { + "@data-ui/shared": "^0.0.84", + "@data-ui/theme": "^0.0.8", + "@vx/axis": "^0.0.179", + "@vx/curve": "^0.0.165", + "@vx/event": "^0.0.179", + "@vx/glyph": "^0.0.179", + "@vx/gradient": "^0.0.165", + "@vx/group": "^0.0.170", + "@vx/pattern": "^0.0.179", + "@vx/point": "^0.0.165", + "@vx/responsive": "^0.0.192", + "@vx/scale": "^0.0.179", + "@vx/shape": "^0.0.179", + "d3-array": "^1.2.0", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0", + "react-dom": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/sparkline/node_modules/@data-ui/theme": { + "version": "0.0.8", + "integrity": "sha1-MRZyPQS5n2XHdQ+BpQDpYItIN8M=" + }, + "node_modules/@data-ui/sparkline/node_modules/@vx/axis": { + "version": "0.0.179", + "integrity": "sha512-FtUcdJxejYn5jgixSgSk9AdA96VwP9sCRATVfGvugEL0gtTKWYDbJEgSgqXfKqpeUdsDdf/JT7NVbLMc1hzrZg==", + "dependencies": { + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "@vx/shape": "0.0.179", + "@vx/text": "0.0.179", + "classnames": "^2.2.5", + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/sparkline/node_modules/@vx/glyph": { + "version": "0.0.179", + "integrity": "sha512-RO7adwyG+9gGzjFdfmplrojgWCT+gsOnIFcRgJNJjx41+P6hWdI9X4OpsLx8VVqNhp7g+hxBDZWte8AxTvLQGw==", + "dependencies": { + "@vx/group": "0.0.170", + "classnames": "^2.2.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/sparkline/node_modules/@vx/gradient": { + "version": "0.0.165", + "integrity": "sha512-FjRXMTmcy7k0TWsfDzWWXw6T9WXKP+6LS/GRgnguq271pab/P+AdOJThsVxtBgUc8ZOAPbub3/2Gggz9d8tocg==", + "dependencies": { + "classnames": "^2.2.5", + "prop-types": "^15.5.7" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/sparkline/node_modules/@vx/group": { + "version": "0.0.170", + "integrity": "sha512-RnDdRoy0YI5hokk+YWXc8t39Kp51i4BdCpiwkDJU4YypGycTYnDFjicam6jigUmZ/6wyMirDf/aQboWviFLt2Q==", + "dependencies": { + "classnames": "^2.2.5" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/sparkline/node_modules/@vx/pattern": { + "version": "0.0.179", + "integrity": "sha512-qvJsK07oUnSbuzj9jo7b/1Up13DknIeTlj9FDIhg0UNmz90ikVN2CZIWtdJyc2I1AFDEg0odOqYXzUx9aEBRfg==", + "dependencies": { + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/sparkline/node_modules/@vx/point": { + "version": "0.0.165", + "integrity": "sha512-spoHilhjcWNgccrSzBUPw+PXV81tYxeyEWBkgr35aGVU4m7YT86Ywvfemwp7AVVGPn+XJHrhB0ujAhDoyqFPoA==" + }, + "node_modules/@data-ui/sparkline/node_modules/@vx/responsive": { + "version": "0.0.192", + "integrity": "sha512-HaXVwhSJXUfRbzRV+glxsX0ki2Hi1mdpz42iuGArVQgDPJEmBHjkXyoiXU8U6v66M7FAH+OyKgtc5j2bfhyYzA==", + "dependencies": { + "lodash": "^4.17.10", + "prop-types": "^15.6.1", + "resize-observer-polyfill": "1.5.0" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/sparkline/node_modules/@vx/scale": { + "version": "0.0.179", + "integrity": "sha512-j40WiGu4VcHZdaSQAl12ig2w5c4Q9EVn7qqYf9PX7uoS5PbxRYNnHeKZ7e5Bf8O6b57iv5jFTfUV7HkpNF4vvg==", + "dependencies": { + "d3-scale": "^2.0.0" + } + }, + "node_modules/@data-ui/sparkline/node_modules/@vx/shape": { + "version": "0.0.179", + "integrity": "sha512-YHVNx4xGpbjolkW3Lb5pEgJB0+u349vfnLI976DJlinY0hRNa4TZbWXOB4ywLIrYzQEXXPMUR8WtdubNxg6g0w==", + "dependencies": { + "@vx/curve": "0.0.165", + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/sparkline/node_modules/@vx/text": { + "version": "0.0.179", + "integrity": "sha512-UD3/8o15+AQfjDI8LQ1Zj3EdQCwA3cfuQMR/M2F/Le4+JXQNMheeWz4xGyF4ZDs6r7c5cUI9Cd1RaPmGhYsX9g==", + "dependencies": { + "babel-plugin-lodash": "^3.3.2", + "classnames": "^2.2.5", + "lodash": "^4.17.4", + "prop-types": "^15.6.2", + "reduce-css-calc": "^1.3.0" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/sparkline/node_modules/d3-scale": { + "version": "2.2.2", + "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" + } + }, + "node_modules/@data-ui/sparkline/node_modules/resize-observer-polyfill": { + "version": "1.5.0", + "integrity": "sha512-M2AelyJDVR/oLnToJLtuDJRBBWUGUvvGigj1411hXhAdyFWqMaqHp7TixW3FpiLuVaikIcR1QL+zqoJoZlOgpg==" + }, + "node_modules/@data-ui/theme": { + "version": "0.0.84", + "integrity": "sha512-jIoHftC/5c/LVJYF4VSBjjVjrjc0yj4mLkGe8p0eVO7qUYKVvlWx7PrpM7ucyefvuAaKIwlr+Nh2xPGPdADjaA==" + }, + "node_modules/@data-ui/xy-chart": { + "version": "0.0.84", + "integrity": "sha512-4mRWEGfeQJ2kFXmQ81k1gDPx2zdkty6lt0+srui4zleSyhnBv1dmm9J03dq+qwr7+bpzjfq77nINV5HXWb31Bg==", + "dependencies": { + "@data-ui/shared": "^0.0.84", + "@data-ui/theme": "^0.0.84", + "@vx/axis": "^0.0.175", + "@vx/curve": "^0.0.165", + "@vx/event": "^0.0.165", + "@vx/glyph": "^0.0.165", + "@vx/gradient": "^0.0.165", + "@vx/grid": "^0.0.180", + "@vx/group": "^0.0.165", + "@vx/pattern": "^0.0.165", + "@vx/point": "^0.0.165", + "@vx/responsive": "^0.0.192", + "@vx/scale": "^0.0.165", + "@vx/shape": "^0.0.165", + "@vx/stats": "^0.0.165", + "@vx/text": "^0.0.192", + "@vx/threshold": "0.0.170", + "@vx/tooltip": "^0.0.165", + "@vx/voronoi": "^0.0.165", + "d3-array": "^1.2.0", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0", + "react-dom": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/axis": { + "version": "0.0.175", + "integrity": "sha512-qVRIHurnbPnRF4p0KQITArOUSF564tWW1pc48giLz+DJGlcJ4H9RfOSTpV6rnnP15xto6pQdQehBgBAvFRmoig==", + "dependencies": { + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "@vx/shape": "0.0.175", + "@vx/text": "0.0.175", + "classnames": "^2.2.5", + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/axis/node_modules/@vx/group": { + "version": "0.0.170", + "integrity": "sha512-RnDdRoy0YI5hokk+YWXc8t39Kp51i4BdCpiwkDJU4YypGycTYnDFjicam6jigUmZ/6wyMirDf/aQboWviFLt2Q==", + "dependencies": { + "classnames": "^2.2.5" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/axis/node_modules/@vx/shape": { + "version": "0.0.175", + "integrity": "sha512-bjAJoIIpKjUEPDV2xmTYGUvSvwRztv+6rd1c6NPZG/nIuqsMHFnFig/2xTcQJEQhRg6aKzvxIUo43zPSSq3fWA==", + "dependencies": { + "@vx/curve": "0.0.165", + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/axis/node_modules/@vx/text": { + "version": "0.0.175", + "integrity": "sha512-SOBhctXXAGhhpCOiTjxOM/8NDaDqGRk3OGfsJ714Mt1UJX6VQaKxFocZJwn6IMw3mNG6/p7O4Eao/gGDcoM6+A==", + "dependencies": { + "babel-plugin-lodash": "^3.3.2", + "classnames": "^2.2.5", + "lodash": "^4.17.4", + "reduce-css-calc": "^1.3.0" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/bounds": { + "version": "0.0.165", + "integrity": "sha512-ZvRb72/4QNs1ZrytZTZxd0hfAb/KKfhsdkcYtIQkmdF6dTsjigMQZ+h2bLvLnbZb/RxyCCoxdiZSGXd+T1c//Q==", + "dependencies": { + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0", + "react-dom": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/event": { + "version": "0.0.165", + "integrity": "sha512-FsQiw0f3s5DQB6aBQmBcoWk9e4q65LcDobHIyV8qrmpW2QgV2NvQFM1w0Q300ohpRMgJDzGk68HHHQgFOJvApw==", + "dependencies": { + "@vx/point": "0.0.165" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/glyph": { + "version": "0.0.165", + "integrity": "sha512-kccUm40e/VCtayxqvcwc2K2M6oNXO7IafwIfw1RRv6Fj4Iutto9ZpI+PGOf/zPnYVueoLnWBXT/HE7IRS+C2gw==", + "dependencies": { + "@vx/group": "0.0.165", + "classnames": "^2.2.5", + "d3-shape": "^1.2.0" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/gradient": { + "version": "0.0.165", + "integrity": "sha512-FjRXMTmcy7k0TWsfDzWWXw6T9WXKP+6LS/GRgnguq271pab/P+AdOJThsVxtBgUc8ZOAPbub3/2Gggz9d8tocg==", + "dependencies": { + "classnames": "^2.2.5", + "prop-types": "^15.5.7" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/grid": { + "version": "0.0.180", + "integrity": "sha512-+ugS0c6GbwHr6pFU0znnOG3/zTwRRadvWwj3E4ZOHmKUSz6ZEN6JNo+rD3WSZckYwLis6UivmYfJ5cV6AM4ufg==", + "dependencies": { + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "@vx/shape": "0.0.179", + "classnames": "^2.2.5", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/grid/node_modules/@vx/group": { + "version": "0.0.170", + "integrity": "sha512-RnDdRoy0YI5hokk+YWXc8t39Kp51i4BdCpiwkDJU4YypGycTYnDFjicam6jigUmZ/6wyMirDf/aQboWviFLt2Q==", + "dependencies": { + "classnames": "^2.2.5" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/grid/node_modules/@vx/shape": { + "version": "0.0.179", + "integrity": "sha512-YHVNx4xGpbjolkW3Lb5pEgJB0+u349vfnLI976DJlinY0hRNa4TZbWXOB4ywLIrYzQEXXPMUR8WtdubNxg6g0w==", + "dependencies": { + "@vx/curve": "0.0.165", + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/group": { + "version": "0.0.165", + "integrity": "sha512-gi1DSg8AAaVRseyWiq8y4bzyvKiQIXT6vDUYBVRmv2LBcpHocBGaxNiNK0X602RgLG0XmNyRv6qSCWLOaBs3Mg==", + "dependencies": { + "classnames": "^2.2.5" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/pattern": { + "version": "0.0.165", + "integrity": "sha512-h5nmfcYlQYYzNhlhqaYUvVnkmGnC0yWv5yU1snjHweGmIHTovV3RAbKgVFAP7kB3i2rbEtC3O8WkJN++cZdLzA==", + "dependencies": { + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/point": { + "version": "0.0.165", + "integrity": "sha512-spoHilhjcWNgccrSzBUPw+PXV81tYxeyEWBkgr35aGVU4m7YT86Ywvfemwp7AVVGPn+XJHrhB0ujAhDoyqFPoA==" + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/responsive": { + "version": "0.0.192", + "integrity": "sha512-HaXVwhSJXUfRbzRV+glxsX0ki2Hi1mdpz42iuGArVQgDPJEmBHjkXyoiXU8U6v66M7FAH+OyKgtc5j2bfhyYzA==", + "dependencies": { + "lodash": "^4.17.10", + "prop-types": "^15.6.1", + "resize-observer-polyfill": "1.5.0" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/scale": { + "version": "0.0.165", + "integrity": "sha512-5jSgXJDU6J/KWIyCbpjHqysPCddp7tG3LbTV7UmtB1Qleb4m4slShTVSE7+EKU+zgiQPDGm0+E2ht4cet+7F7A==", + "dependencies": { + "d3-scale": "^2.0.0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/shape": { + "version": "0.0.165", + "integrity": "sha512-D9naH/glDtw8J8IcdumpRz1ihaoCAYMwFNh2KTv73HiTKrLQSXvIjwYFv9C0b8BCPNOXkDZS8s+AlgMSqGlZNQ==", + "dependencies": { + "@vx/curve": "0.0.165", + "@vx/group": "0.0.165", + "@vx/point": "0.0.165", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/@vx/tooltip": { + "version": "0.0.165", + "integrity": "sha512-/x1NZc67QGQ4e/WNT7Ks5LYRyeLSqp8lG04gX5J6leUS0zscAVzo3aE5u65Qqbc0cnMyMPRZ2Qtb4klWTLg+eQ==", + "dependencies": { + "@vx/bounds": "0.0.165", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/d3-scale": { + "version": "2.2.2", + "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" + } + }, + "node_modules/@data-ui/xy-chart/node_modules/resize-observer-polyfill": { + "version": "1.5.0", + "integrity": "sha512-M2AelyJDVR/oLnToJLtuDJRBBWUGUvvGigj1411hXhAdyFWqMaqHp7TixW3FpiLuVaikIcR1QL+zqoJoZlOgpg==" + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.5", + "integrity": "sha512-6nFkfkmSeV/rqSaS4oWHgmpnYw194f6hmWF5is6b0J1naJZoiD0NTc9AiUwPHvWsowkjuHErCZT1wa0jg+BLIA==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@emotion/babel-plugin": { + "version": "11.3.0", + "integrity": "sha512-UZKwBV2rADuhRp+ZOGgNWg2eYgbzKzQXfQPtJbu/PLy8onurxlNCLvxMQEvlr1/GudguPI5IU9qIY1+2z1M5bA==", + "dependencies": { + "@babel/helper-module-imports": "^7.12.13", + "@babel/plugin-syntax-jsx": "^7.12.13", + "@babel/runtime": "^7.13.10", + "@emotion/hash": "^0.8.0", + "@emotion/memoize": "^0.7.5", + "@emotion/serialize": "^1.0.2", + "babel-plugin-macros": "^2.6.1", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "^4.0.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@emotion/babel-plugin-jsx-pragmatic": { + "version": "0.1.5", + "integrity": "sha512-y+3AJ0SItMDaAgGPVkQBC/S/BaqaPACkQ6MyCI2CUlrjTxKttTVfD3TMtcs7vLEcLxqzZ1xiG0vzwCXjhopawQ==", + "dependencies": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@emotion/babel-preset-css-prop": { + "version": "11.2.0", + "integrity": "sha512-9XLQm2eLPYTho+Cx1LQTDA1rATjoAaB4O+ds55XDvoAa+Z16Hhg8y5Vihj3C8E6+ilDM8SV5A9Z6z+yj0YIRBg==", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.12.1", + "@babel/runtime": "^7.7.2", + "@emotion/babel-plugin": "^11.2.0", + "@emotion/babel-plugin-jsx-pragmatic": "^0.1.5" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@emotion/cache": { + "version": "11.5.0", + "integrity": "sha512-mAZ5QRpLriBtaj/k2qyrXwck6yeoz1V5lMt/jfj6igWU35yYlNKs2LziXVgvH81gnJZ+9QQNGelSsnuoAy6uIw==", + "dependencies": { + "@emotion/memoize": "^0.7.4", + "@emotion/sheet": "^1.0.3", + "@emotion/utils": "^1.0.0", + "@emotion/weak-memoize": "^0.2.5", + "stylis": "^4.0.10" + } + }, + "node_modules/@emotion/css": { + "version": "10.0.27", + "integrity": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==", + "dependencies": { + "@emotion/serialize": "^0.11.15", + "@emotion/utils": "0.11.3", + "babel-plugin-emotion": "^10.0.27" + } + }, + "node_modules/@emotion/css-prettifier": { + "version": "1.0.0", + "integrity": "sha512-efxSrRTiTqHTQVKW15Gz5H4pNAw8OqcG8NaiwkJIkqIdNXTD4Qr1zC1Ou6r2acd1oJJ2s56nb1ClnXMiWoj6gQ==", + "dependencies": { + "@emotion/memoize": "^0.7.4", + "stylis": "^4.0.3" + } + }, + "node_modules/@emotion/css/node_modules/@emotion/memoize": { + "version": "0.7.4", + "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + }, + "node_modules/@emotion/css/node_modules/@emotion/serialize": { + "version": "0.11.16", + "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", + "dependencies": { + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/unitless": "0.7.5", + "@emotion/utils": "0.11.3", + "csstype": "^2.5.7" + } + }, + "node_modules/@emotion/css/node_modules/@emotion/utils": { + "version": "0.11.3", + "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + }, + "node_modules/@emotion/hash": { + "version": "0.8.0", + "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" + }, + "node_modules/@emotion/is-prop-valid": { + "version": "1.1.0", + "integrity": "sha512-9RkilvXAufQHsSsjQ3PIzSns+pxuX4EW8EbGeSPjZMHuMx6z/MOzb9LpqNieQX4F3mre3NWS2+X3JNRHTQztUQ==", + "dependencies": { + "@emotion/memoize": "^0.7.4" + } + }, + "node_modules/@emotion/jest": { + "version": "11.5.0", + "integrity": "sha512-bz791yTD1I9lyB+h0+nDahmMv4kf3d+hGj85QncY3qB8VwGe03zVxdKutgaTNg7gvsRFh3ovhQGbsbwOJZMXqQ==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@emotion/css-prettifier": "^1.0.0", + "chalk": "^4.1.0", + "specificity": "^0.4.1", + "stylis": "^4.0.10" + }, + "peerDependencies": { + "@types/jest": "^26.0.14 || ^27.0.0", + "enzyme-to-json": "^3.2.1" + }, + "peerDependenciesMeta": { + "@types/jest": { + "optional": true + }, + "enzyme-to-json": { + "optional": true + } + } + }, + "node_modules/@emotion/jest/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@emotion/jest/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@emotion/jest/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@emotion/jest/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@emotion/memoize": { + "version": "0.7.5", + "integrity": "sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==" + }, + "node_modules/@emotion/react": { + "version": "11.5.0", + "integrity": "sha512-MYq/bzp3rYbee4EMBORCn4duPQfgpiEB5XzrZEBnUZAL80Qdfr7CEv/T80jwaTl/dnZmt9SnTa8NkTrwFNpLlw==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@emotion/cache": "^11.5.0", + "@emotion/serialize": "^1.0.2", + "@emotion/sheet": "^1.0.3", + "@emotion/utils": "^1.0.0", + "@emotion/weak-memoize": "^0.2.5", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/serialize": { + "version": "1.0.2", + "integrity": "sha512-95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A==", + "dependencies": { + "@emotion/hash": "^0.8.0", + "@emotion/memoize": "^0.7.4", + "@emotion/unitless": "^0.7.5", + "@emotion/utils": "^1.0.0", + "csstype": "^3.0.2" + } + }, + "node_modules/@emotion/serialize/node_modules/csstype": { + "version": "3.0.9", + "integrity": "sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==" + }, + "node_modules/@emotion/sheet": { + "version": "1.0.3", + "integrity": "sha512-YoX5GyQ4db7LpbmXHMuc8kebtBGP6nZfRC5Z13OKJMixBEwdZrJ914D6yJv/P+ZH/YY3F5s89NYX2hlZAf3SRQ==" + }, + "node_modules/@emotion/styled": { + "version": "11.3.0", + "integrity": "sha512-fUoLcN3BfMiLlRhJ8CuPUMEyKkLEoM+n+UyAbnqGEsCd5IzKQ7VQFLtzpJOaCD2/VR2+1hXQTnSZXVJeiTNltA==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@emotion/babel-plugin": "^11.3.0", + "@emotion/is-prop-valid": "^1.1.0", + "@emotion/serialize": "^1.0.2", + "@emotion/utils": "^1.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@emotion/react": "^11.0.0-rc.0", + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/stylis": { + "version": "0.8.5", + "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" + }, + "node_modules/@emotion/unitless": { + "version": "0.7.5", + "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" + }, + "node_modules/@emotion/utils": { + "version": "1.0.0", + "integrity": "sha512-mQC2b3XLDs6QCW+pDQDiyO/EdGZYOygE8s5N5rrzjSI4M3IejPE/JPndCBwRT9z982aqQNi6beWs1UeayrQxxA==" + }, + "node_modules/@emotion/weak-memoize": { + "version": "0.2.5", + "integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==" + }, + "node_modules/@encodable/color": { + "version": "1.1.1", + "integrity": "sha512-3QlHqsaD+D4W4T6E4Wq4mp7MBpt5yCkCmgTh6AfsoUfJeAEogA92d8r3Y67Zuppcs/eepHW0ip8zfehS2jZNkQ==", + "dependencies": { + "@encodable/registry": "^1.0.3", + "@types/d3-interpolate": "^1.3.1", + "@types/d3-scale": "^3.1.0", + "@types/d3-scale-chromatic": "^1.2.0", + "d3-interpolate": "^2.0.1", + "d3-scale": "^3.2.1", + "d3-scale-chromatic": "^2.0.0" + } + }, + "node_modules/@encodable/color/node_modules/@types/d3-scale": { + "version": "3.3.2", + "integrity": "sha512-gGqr7x1ost9px3FvIfUMi5XA/F/yAf4UkUDtdQhpH92XCT0Oa7zkkRzY61gPVJq+DxpHn/btouw5ohWkbBsCzQ==", + "dependencies": { + "@types/d3-time": "^2" + } + }, + "node_modules/@encodable/color/node_modules/@types/d3-time": { + "version": "2.1.1", + "integrity": "sha512-9MVYlmIgmRR31C5b4FVSWtuMmBHh2mOWQYfl7XAYOa8dsnb7iEmUmRSWSFgXFtkjxO65d7hTUHQC+RhR/9IWFg==" + }, + "node_modules/@encodable/color/node_modules/d3-interpolate": { + "version": "2.0.1", + "integrity": "sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ==", + "dependencies": { + "d3-color": "1 - 2" + } + }, + "node_modules/@encodable/format": { + "version": "1.0.6", + "integrity": "sha512-gtzLMQyw4AJ7m3TIANm2z2QfzZJLGLdhVmKbizRRu9MRMlYIVXhk+46zPm10RNxGv4ybpsfcCfkCd4nL3RlZRg==", + "dependencies": { + "@encodable/registry": "^1.0.3", + "@types/d3-format": "^1.3.1", + "@types/d3-time": "^1.0.10", + "@types/d3-time-format": "^2.1.1", + "d3-format": "^2.0.0", + "d3-time": "^2.0.0", + "d3-time-format": "^3.0.0" + } + }, + "node_modules/@encodable/format/node_modules/d3-array": { + "version": "2.12.1", + "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", + "dependencies": { + "internmap": "^1.0.0" + } + }, + "node_modules/@encodable/format/node_modules/d3-format": { + "version": "2.0.0", + "integrity": "sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA==" + }, + "node_modules/@encodable/format/node_modules/d3-time": { + "version": "2.1.1", + "integrity": "sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==", + "dependencies": { + "d3-array": "2" + } + }, + "node_modules/@encodable/format/node_modules/d3-time-format": { + "version": "3.0.0", + "integrity": "sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==", + "dependencies": { + "d3-time": "1 - 2" + } + }, + "node_modules/@encodable/registry": { + "version": "1.0.3", + "integrity": "sha512-YH2nSBZJKgbH/9MkQXzAEE9UwTaVcWiKgVFyEU/gvrfmNWqecYaHMTyObo+ADSTGF4kk0cZZkr7VqZgIQbvrUw==", + "peerDependencies": { + "global-box": "*" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "0.4.3", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.11.0", + "integrity": "sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/ignore": { + "version": "4.0.6", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@eslint/eslintrc/node_modules/strip-json-comments": { + "version": "3.1.1", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@evocateur/libnpmaccess": { + "version": "3.1.2", + "integrity": "sha512-KSCAHwNWro0CF2ukxufCitT9K5LjL/KuMmNzSu8wuwN2rjyKHD8+cmOsiybK+W5hdnwc5M1SmRlVCaMHQo+3rg==", + "dependencies": { + "@evocateur/npm-registry-fetch": "^4.0.0", + "aproba": "^2.0.0", + "figgy-pudding": "^3.5.1", + "get-stream": "^4.0.0", + "npm-package-arg": "^6.1.0" + } + }, + "node_modules/@evocateur/libnpmaccess/node_modules/get-stream": { + "version": "4.1.0", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@evocateur/libnpmpublish": { + "version": "1.2.2", + "integrity": "sha512-MJrrk9ct1FeY9zRlyeoyMieBjGDG9ihyyD9/Ft6MMrTxql9NyoEx2hw9casTIP4CdqEVu+3nQ2nXxoJ8RCXyFg==", + "dependencies": { + "@evocateur/npm-registry-fetch": "^4.0.0", + "aproba": "^2.0.0", + "figgy-pudding": "^3.5.1", + "get-stream": "^4.0.0", + "lodash.clonedeep": "^4.5.0", + "normalize-package-data": "^2.4.0", + "npm-package-arg": "^6.1.0", + "semver": "^5.5.1", + "ssri": "^6.0.1" + } + }, + "node_modules/@evocateur/libnpmpublish/node_modules/get-stream": { + "version": "4.1.0", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@evocateur/libnpmpublish/node_modules/hosted-git-info": { + "version": "2.8.9", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/@evocateur/libnpmpublish/node_modules/normalize-package-data": { + "version": "2.5.0", + "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" + } + }, + "node_modules/@evocateur/libnpmpublish/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@evocateur/npm-registry-fetch": { + "version": "4.0.0", + "integrity": "sha512-k1WGfKRQyhJpIr+P17O5vLIo2ko1PFLKwoetatdduUSt/aQ4J2sJrJwwatdI5Z3SiYk/mRH9S3JpdmMFd/IK4g==", + "dependencies": { + "bluebird": "^3.5.1", + "figgy-pudding": "^3.4.1", + "JSONStream": "^1.3.4", + "lru-cache": "^5.1.1", + "make-fetch-happen": "^5.0.0", + "npm-package-arg": "^6.1.0", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/@evocateur/npm-registry-fetch/node_modules/lru-cache": { + "version": "5.1.1", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/@evocateur/npm-registry-fetch/node_modules/yallist": { + "version": "3.1.1", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/@evocateur/pacote": { + "version": "9.6.5", + "integrity": "sha512-EI552lf0aG2nOV8NnZpTxNo2PcXKPmDbF9K8eCBFQdIZwHNGN/mi815fxtmUMa2wTa1yndotICIDt/V0vpEx2w==", + "dependencies": { + "@evocateur/npm-registry-fetch": "^4.0.0", + "bluebird": "^3.5.3", + "cacache": "^12.0.3", + "chownr": "^1.1.2", + "figgy-pudding": "^3.5.1", + "get-stream": "^4.1.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^5.1.1", + "make-fetch-happen": "^5.0.0", + "minimatch": "^3.0.4", + "minipass": "^2.3.5", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "normalize-package-data": "^2.5.0", + "npm-package-arg": "^6.1.0", + "npm-packlist": "^1.4.4", + "npm-pick-manifest": "^3.0.0", + "osenv": "^0.1.5", + "promise-inflight": "^1.0.1", + "promise-retry": "^1.1.1", + "protoduck": "^5.0.1", + "rimraf": "^2.6.3", + "safe-buffer": "^5.2.0", + "semver": "^5.7.0", + "ssri": "^6.0.1", + "tar": "^4.4.10", + "unique-filename": "^1.1.1", + "which": "^1.3.1" + } + }, + "node_modules/@evocateur/pacote/node_modules/get-stream": { + "version": "4.1.0", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@evocateur/pacote/node_modules/hosted-git-info": { + "version": "2.8.9", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/@evocateur/pacote/node_modules/lru-cache": { + "version": "5.1.1", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/@evocateur/pacote/node_modules/normalize-package-data": { + "version": "2.5.0", + "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" + } + }, + "node_modules/@evocateur/pacote/node_modules/rimraf": { + "version": "2.7.1", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/@evocateur/pacote/node_modules/safe-buffer": { + "version": "5.2.1", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/@evocateur/pacote/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@evocateur/pacote/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/@evocateur/pacote/node_modules/yallist": { + "version": "3.1.1", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/@gar/promisify": { + "version": "1.1.2", + "integrity": "sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==" + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.5.0", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.0", + "integrity": "sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==" + }, + "node_modules/@hutson/parse-repository-url": { + "version": "3.0.2", + "integrity": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "26.6.2", + "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^26.6.2", + "jest-util": "^26.6.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/console/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console/node_modules/slash": { + "version": "3.0.0", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core": { + "version": "26.6.3", + "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/reporters": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^26.6.2", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-resolve-dependencies": "^26.6.3", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "jest-watcher": "^26.6.2", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/slash": { + "version": "3.0.0", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment": { + "version": "26.6.2", + "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==", + "dependencies": { + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/fake-timers": { + "version": "26.6.2", + "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==", + "dependencies": { + "@jest/types": "^26.6.2", + "@sinonjs/fake-timers": "^6.0.1", + "@types/node": "*", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/globals": { + "version": "26.6.2", + "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==", + "dependencies": { + "@jest/environment": "^26.6.2", + "@jest/types": "^26.6.2", + "expect": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/reporters": { + "version": "26.6.2", + "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^7.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "optionalDependencies": { + "node-notifier": "^8.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { + "version": "4.0.3", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "dependencies": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@jest/reporters/node_modules/slash": { + "version": "3.0.0", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/source-map": { + "version": "26.6.2", + "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/source-map/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/test-result": { + "version": "26.6.2", + "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "26.6.3", + "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==", + "dependencies": { + "@jest/test-result": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/transform": { + "version": "26.6.2", + "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^26.6.2", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-util": "^26.6.2", + "micromatch": "^4.0.2", + "pirates": "^4.0.1", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/transform/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/slash": { + "version": "3.0.0", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/transform/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types": { + "version": "26.6.2", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@lerna/add": { + "version": "3.21.0", + "integrity": "sha512-vhUXXF6SpufBE1EkNEXwz1VLW03f177G9uMOFMQkp6OJ30/PWg4Ekifuz9/3YfgB2/GH8Tu4Lk3O51P2Hskg/A==", + "dependencies": { + "@evocateur/pacote": "^9.6.3", + "@lerna/bootstrap": "3.21.0", + "@lerna/command": "3.21.0", + "@lerna/filter-options": "3.20.0", + "@lerna/npm-conf": "3.16.0", + "@lerna/validation-error": "3.13.0", + "dedent": "^0.7.0", + "npm-package-arg": "^6.1.0", + "p-map": "^2.1.0", + "semver": "^6.2.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/add/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@lerna/bootstrap": { + "version": "3.21.0", + "integrity": "sha512-mtNHlXpmvJn6JTu0KcuTTPl2jLsDNud0QacV/h++qsaKbhAaJr/FElNZ5s7MwZFUM3XaDmvWzHKaszeBMHIbBw==", + "dependencies": { + "@lerna/command": "3.21.0", + "@lerna/filter-options": "3.20.0", + "@lerna/has-npm-version": "3.16.5", + "@lerna/npm-install": "3.16.5", + "@lerna/package-graph": "3.18.5", + "@lerna/pulse-till-done": "3.13.0", + "@lerna/rimraf-dir": "3.16.5", + "@lerna/run-lifecycle": "3.16.2", + "@lerna/run-topologically": "3.18.5", + "@lerna/symlink-binary": "3.17.0", + "@lerna/symlink-dependencies": "3.17.0", + "@lerna/validation-error": "3.13.0", + "dedent": "^0.7.0", + "get-port": "^4.2.0", + "multimatch": "^3.0.0", + "npm-package-arg": "^6.1.0", + "npmlog": "^4.1.2", + "p-finally": "^1.0.0", + "p-map": "^2.1.0", + "p-map-series": "^1.0.0", + "p-waterfall": "^1.0.0", + "read-package-tree": "^5.1.6", + "semver": "^6.2.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/bootstrap/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@lerna/changed": { + "version": "3.21.0", + "integrity": "sha512-hzqoyf8MSHVjZp0gfJ7G8jaz+++mgXYiNs9iViQGA8JlN/dnWLI5sWDptEH3/B30Izo+fdVz0S0s7ydVE3pWIw==", + "dependencies": { + "@lerna/collect-updates": "3.20.0", + "@lerna/command": "3.21.0", + "@lerna/listable": "3.18.5", + "@lerna/output": "3.13.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/check-working-tree": { + "version": "3.16.5", + "integrity": "sha512-xWjVBcuhvB8+UmCSb5tKVLB5OuzSpw96WEhS2uz6hkWVa/Euh1A0/HJwn2cemyK47wUrCQXtczBUiqnq9yX5VQ==", + "dependencies": { + "@lerna/collect-uncommitted": "3.16.5", + "@lerna/describe-ref": "3.16.5", + "@lerna/validation-error": "3.13.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/child-process": { + "version": "3.16.5", + "integrity": "sha512-vdcI7mzei9ERRV4oO8Y1LHBZ3A5+ampRKg1wq5nutLsUA4mEBN6H7JqjWOMY9xZemv6+kATm2ofjJ3lW5TszQg==", + "dependencies": { + "chalk": "^2.3.1", + "execa": "^1.0.0", + "strong-log-transformer": "^2.0.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/child-process/node_modules/cross-spawn": { + "version": "6.0.5", + "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" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/@lerna/child-process/node_modules/execa": { + "version": "1.0.0", + "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" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/child-process/node_modules/get-stream": { + "version": "4.1.0", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/child-process/node_modules/is-stream": { + "version": "1.1.0", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/child-process/node_modules/npm-run-path": { + "version": "2.0.2", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/child-process/node_modules/path-key": { + "version": "2.0.1", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/child-process/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@lerna/child-process/node_modules/shebang-command": { + "version": "1.2.0", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/child-process/node_modules/shebang-regex": { + "version": "1.0.0", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/child-process/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/@lerna/clean": { + "version": "3.21.0", + "integrity": "sha512-b/L9l+MDgE/7oGbrav6rG8RTQvRiZLO1zTcG17zgJAAuhlsPxJExMlh2DFwJEVi2les70vMhHfST3Ue1IMMjpg==", + "dependencies": { + "@lerna/command": "3.21.0", + "@lerna/filter-options": "3.20.0", + "@lerna/prompt": "3.18.5", + "@lerna/pulse-till-done": "3.13.0", + "@lerna/rimraf-dir": "3.16.5", + "p-map": "^2.1.0", + "p-map-series": "^1.0.0", + "p-waterfall": "^1.0.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/cli": { + "version": "3.18.5", + "integrity": "sha512-erkbxkj9jfc89vVs/jBLY/fM0I80oLmJkFUV3Q3wk9J3miYhP14zgVEBsPZY68IZlEjT6T3Xlq2xO1AVaatHsA==", + "dependencies": { + "@lerna/global-options": "3.13.0", + "dedent": "^0.7.0", + "npmlog": "^4.1.2", + "yargs": "^14.2.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/cli/node_modules/ansi-regex": { + "version": "4.1.0", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/cli/node_modules/cliui": { + "version": "5.0.0", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/@lerna/cli/node_modules/emoji-regex": { + "version": "7.0.3", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "node_modules/@lerna/cli/node_modules/find-up": { + "version": "3.0.0", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/cli/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/cli/node_modules/locate-path": { + "version": "3.0.0", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/cli/node_modules/p-limit": { + "version": "2.3.0", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@lerna/cli/node_modules/p-locate": { + "version": "3.0.0", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/cli/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/cli/node_modules/string-width": { + "version": "3.1.0", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/cli/node_modules/strip-ansi": { + "version": "5.2.0", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/cli/node_modules/wrap-ansi": { + "version": "5.1.0", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/cli/node_modules/yargs": { + "version": "14.2.3", + "integrity": "sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==", + "dependencies": { + "cliui": "^5.0.0", + "decamelize": "^1.2.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": "^15.0.1" + } + }, + "node_modules/@lerna/cli/node_modules/yargs-parser": { + "version": "15.0.3", + "integrity": "sha512-/MVEVjTXy/cGAjdtQf8dW3V9b97bPN7rNn8ETj6BmAQL7ibC7O1Q9SPJbGjgh3SlwoBNXMzj/ZGIj8mBgl12YA==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/@lerna/collect-uncommitted": { + "version": "3.16.5", + "integrity": "sha512-ZgqnGwpDZiWyzIQVZtQaj9tRizsL4dUOhuOStWgTAw1EMe47cvAY2kL709DzxFhjr6JpJSjXV5rZEAeU3VE0Hg==", + "dependencies": { + "@lerna/child-process": "3.16.5", + "chalk": "^2.3.1", + "figgy-pudding": "^3.5.1", + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/collect-updates": { + "version": "3.20.0", + "integrity": "sha512-qBTVT5g4fupVhBFuY4nI/3FSJtQVcDh7/gEPOpRxoXB/yCSnT38MFHXWl+y4einLciCjt/+0x6/4AG80fjay2Q==", + "dependencies": { + "@lerna/child-process": "3.16.5", + "@lerna/describe-ref": "3.16.5", + "minimatch": "^3.0.4", + "npmlog": "^4.1.2", + "slash": "^2.0.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/command": { + "version": "3.21.0", + "integrity": "sha512-T2bu6R8R3KkH5YoCKdutKv123iUgUbW8efVjdGCDnCMthAQzoentOJfDeodBwn0P2OqCl3ohsiNVtSn9h78fyQ==", + "dependencies": { + "@lerna/child-process": "3.16.5", + "@lerna/package-graph": "3.18.5", + "@lerna/project": "3.21.0", + "@lerna/validation-error": "3.13.0", + "@lerna/write-log-file": "3.13.0", + "clone-deep": "^4.0.1", + "dedent": "^0.7.0", + "execa": "^1.0.0", + "is-ci": "^2.0.0", + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/command/node_modules/cross-spawn": { + "version": "6.0.5", + "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" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/@lerna/command/node_modules/execa": { + "version": "1.0.0", + "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" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/command/node_modules/get-stream": { + "version": "4.1.0", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/command/node_modules/is-stream": { + "version": "1.1.0", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/command/node_modules/npm-run-path": { + "version": "2.0.2", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/command/node_modules/path-key": { + "version": "2.0.1", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/command/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@lerna/command/node_modules/shebang-command": { + "version": "1.2.0", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/command/node_modules/shebang-regex": { + "version": "1.0.0", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/command/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/@lerna/conventional-commits": { + "version": "3.22.0", + "integrity": "sha512-z4ZZk1e8Mhz7+IS8NxHr64wyklHctCJyWpJKEZZPJiLFJ8yKto/x38O80R10pIzC0rr8Sy/OsjSH4bl0TbbgqA==", + "dependencies": { + "@lerna/validation-error": "3.13.0", + "conventional-changelog-angular": "^5.0.3", + "conventional-changelog-core": "^3.1.6", + "conventional-recommended-bump": "^5.0.0", + "fs-extra": "^8.1.0", + "get-stream": "^4.0.0", + "lodash.template": "^4.5.0", + "npm-package-arg": "^6.1.0", + "npmlog": "^4.1.2", + "pify": "^4.0.1", + "semver": "^6.2.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/compare-func": { + "version": "2.0.0", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "dependencies": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/conventional-changelog-angular": { + "version": "5.0.13", + "integrity": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==", + "dependencies": { + "compare-func": "^2.0.0", + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/conventional-changelog-core": { + "version": "3.2.3", + "integrity": "sha512-LMMX1JlxPIq/Ez5aYAYS5CpuwbOk6QFp8O4HLAcZxe3vxoCtABkhfjetk8IYdRB9CDQGwJFLR3Dr55Za6XKgUQ==", + "dependencies": { + "conventional-changelog-writer": "^4.0.6", + "conventional-commits-parser": "^3.0.3", + "dateformat": "^3.0.0", + "get-pkg-repo": "^1.0.0", + "git-raw-commits": "2.0.0", + "git-remote-origin-url": "^2.0.0", + "git-semver-tags": "^2.0.3", + "lodash": "^4.2.1", + "normalize-package-data": "^2.3.5", + "q": "^1.5.1", + "read-pkg": "^3.0.0", + "read-pkg-up": "^3.0.0", + "through2": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/conventional-changelog-core/node_modules/through2": { + "version": "3.0.2", + "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/conventional-changelog-writer": { + "version": "4.1.0", + "integrity": "sha512-WwKcUp7WyXYGQmkLsX4QmU42AZ1lqlvRW9mqoyiQzdD+rJWbTepdWoKJuwXTS+yq79XKnQNa93/roViPQrAQgw==", + "dependencies": { + "compare-func": "^2.0.0", + "conventional-commits-filter": "^2.0.7", + "dateformat": "^3.0.0", + "handlebars": "^4.7.6", + "json-stringify-safe": "^5.0.1", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "semver": "^6.0.0", + "split": "^1.0.0", + "through2": "^4.0.0" + }, + "bin": { + "conventional-changelog-writer": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/conventional-commits-parser": { + "version": "3.2.2", + "integrity": "sha512-Jr9KAKgqAkwXMRHjxDwO/zOCDKod1XdAESHAGuJX38iZ7ZzVti/tvVoysO0suMsdAObp9NQ2rHSsSbnAqZ5f5g==", + "dependencies": { + "is-text-path": "^1.0.1", + "JSONStream": "^1.0.4", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + }, + "bin": { + "conventional-commits-parser": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/conventional-commits-parser/node_modules/split2": { + "version": "3.2.2", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", + "dependencies": { + "readable-stream": "^3.0.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/dot-prop": { + "version": "5.3.0", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/get-pkg-repo": { + "version": "1.4.0", + "integrity": "sha1-xztInAbYDMVTbCyFP54FIyBWly0=", + "dependencies": { + "hosted-git-info": "^2.1.4", + "meow": "^3.3.0", + "normalize-package-data": "^2.3.0", + "parse-github-repo-url": "^1.3.0", + "through2": "^2.0.0" + }, + "bin": { + "get-pkg-repo": "cli.js" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/get-pkg-repo/node_modules/camelcase": { + "version": "2.1.1", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/get-pkg-repo/node_modules/camelcase-keys": { + "version": "2.1.0", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "dependencies": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/get-pkg-repo/node_modules/find-up": { + "version": "1.1.2", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dependencies": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/get-pkg-repo/node_modules/meow": { + "version": "3.7.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/get-pkg-repo/node_modules/read-pkg": { + "version": "1.1.0", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dependencies": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/get-pkg-repo/node_modules/read-pkg-up": { + "version": "1.0.1", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dependencies": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/get-pkg-repo/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/get-pkg-repo/node_modules/redent": { + "version": "1.0.0", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "dependencies": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/get-pkg-repo/node_modules/strip-indent": { + "version": "1.0.1", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "dependencies": { + "get-stdin": "^4.0.1" + }, + "bin": { + "strip-indent": "cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/get-pkg-repo/node_modules/through2": { + "version": "2.0.5", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/get-pkg-repo/node_modules/trim-newlines": { + "version": "1.0.0", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/get-stdin": { + "version": "4.0.1", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/get-stream": { + "version": "4.1.0", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/git-raw-commits": { + "version": "2.0.0", + "integrity": "sha512-w4jFEJFgKXMQJ0H0ikBk2S+4KP2VEjhCvLCNqbNRQC8BgGWgLKNCO7a9K9LI+TVT7Gfoloje502sEnctibffgg==", + "dependencies": { + "dargs": "^4.0.1", + "lodash.template": "^4.0.2", + "meow": "^4.0.0", + "split2": "^2.0.0", + "through2": "^2.0.0" + }, + "bin": { + "git-raw-commits": "cli.js" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/git-raw-commits/node_modules/meow": { + "version": "4.0.1", + "integrity": "sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A==", + "dependencies": { + "camelcase-keys": "^4.0.0", + "decamelize-keys": "^1.0.0", + "loud-rejection": "^1.0.0", + "minimist": "^1.1.3", + "minimist-options": "^3.0.1", + "normalize-package-data": "^2.3.4", + "read-pkg-up": "^3.0.0", + "redent": "^2.0.0", + "trim-newlines": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/git-raw-commits/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/git-raw-commits/node_modules/through2": { + "version": "2.0.5", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/git-semver-tags": { + "version": "2.0.3", + "integrity": "sha512-tj4FD4ww2RX2ae//jSrXZzrocla9db5h0V7ikPl1P/WwoZar9epdUhwR7XHXSgc+ZkNq72BEEerqQuicoEQfzA==", + "dependencies": { + "meow": "^4.0.0", + "semver": "^6.0.0" + }, + "bin": { + "git-semver-tags": "cli.js" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/git-semver-tags/node_modules/meow": { + "version": "4.0.1", + "integrity": "sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A==", + "dependencies": { + "camelcase-keys": "^4.0.0", + "decamelize-keys": "^1.0.0", + "loud-rejection": "^1.0.0", + "minimist": "^1.1.3", + "minimist-options": "^3.0.1", + "normalize-package-data": "^2.3.4", + "read-pkg-up": "^3.0.0", + "redent": "^2.0.0", + "trim-newlines": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/hosted-git-info": { + "version": "2.8.9", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/@lerna/conventional-commits/node_modules/indent-string": { + "version": "2.1.0", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "dependencies": { + "repeating": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/is-obj": { + "version": "2.0.0", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/@lerna/conventional-commits/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/load-json-file": { + "version": "1.1.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/load-json-file/node_modules/pify": { + "version": "2.3.0", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/locate-path": { + "version": "2.0.0", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/locate-path/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/map-obj": { + "version": "1.0.1", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow": { + "version": "8.1.2", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/camelcase-keys": { + "version": "6.2.2", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dependencies": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/hosted-git-info": { + "version": "4.0.2", + "integrity": "sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/indent-string": { + "version": "4.0.0", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/map-obj": { + "version": "4.3.0", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/minimist-options": { + "version": "4.1.0", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/normalize-package-data": { + "version": "3.0.3", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/parse-json": { + "version": "5.2.0", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/read-pkg": { + "version": "5.2.0", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/read-pkg-up": { + "version": "7.0.1", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "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" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/read-pkg/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/redent": { + "version": "3.0.0", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/meow/node_modules/trim-newlines": { + "version": "3.0.1", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/normalize-package-data": { + "version": "2.5.0", + "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" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/p-limit": { + "version": "1.3.0", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/p-locate": { + "version": "2.0.0", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/p-try": { + "version": "1.0.0", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/parse-json": { + "version": "2.2.0", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dependencies": { + "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/path-exists": { + "version": "2.1.0", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dependencies": { + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/path-type": { + "version": "1.1.0", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "dependencies": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/path-type/node_modules/pify": { + "version": "2.3.0", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/pify": { + "version": "4.0.1", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/quick-lru": { + "version": "4.0.1", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/read-pkg-up": { + "version": "3.0.0", + "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", + "dependencies": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/read-pkg-up/node_modules/find-up": { + "version": "2.1.0", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/strip-bom": { + "version": "2.0.0", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dependencies": { + "is-utf8": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/type-fest": { + "version": "0.18.1", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@lerna/conventional-commits/node_modules/yargs-parser": { + "version": "20.2.9", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@lerna/create": { + "version": "3.22.0", + "integrity": "sha512-MdiQQzCcB4E9fBF1TyMOaAEz9lUjIHp1Ju9H7f3lXze5JK6Fl5NYkouAvsLgY6YSIhXMY8AHW2zzXeBDY4yWkw==", + "dependencies": { + "@evocateur/pacote": "^9.6.3", + "@lerna/child-process": "3.16.5", + "@lerna/command": "3.21.0", + "@lerna/npm-conf": "3.16.0", + "@lerna/validation-error": "3.13.0", + "camelcase": "^5.0.0", + "dedent": "^0.7.0", + "fs-extra": "^8.1.0", + "globby": "^9.2.0", + "init-package-json": "^1.10.3", + "npm-package-arg": "^6.1.0", + "p-reduce": "^1.0.0", + "pify": "^4.0.1", + "semver": "^6.2.0", + "slash": "^2.0.0", + "validate-npm-package-license": "^3.0.3", + "validate-npm-package-name": "^3.0.0", + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/create-symlink": { + "version": "3.16.2", + "integrity": "sha512-pzXIJp6av15P325sgiIRpsPXLFmkisLhMBCy4764d+7yjf2bzrJ4gkWVMhsv4AdF0NN3OyZ5jjzzTtLNqfR+Jw==", + "dependencies": { + "@zkochan/cmd-shim": "^3.1.0", + "fs-extra": "^8.1.0", + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/create-symlink/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@lerna/create-symlink/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@lerna/create-symlink/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@lerna/create/node_modules/@nodelib/fs.stat": { + "version": "1.1.3", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@lerna/create/node_modules/array-union": { + "version": "1.0.2", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/create/node_modules/braces": { + "version": "2.3.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/create/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/create/node_modules/dir-glob": { + "version": "2.2.2", + "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", + "dependencies": { + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/create/node_modules/fast-glob": { + "version": "2.2.7", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", + "dependencies": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@lerna/create/node_modules/fill-range": { + "version": "4.0.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/create/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/create/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@lerna/create/node_modules/glob-parent": { + "version": "3.1.0", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/@lerna/create/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/create/node_modules/globby": { + "version": "9.2.0", + "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==", + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/create/node_modules/ignore": { + "version": "4.0.6", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@lerna/create/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/create/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/create/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/create/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@lerna/create/node_modules/micromatch": { + "version": "3.1.10", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/create/node_modules/path-type": { + "version": "3.0.0", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/create/node_modules/path-type/node_modules/pify": { + "version": "3.0.0", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/create/node_modules/pify": { + "version": "4.0.1", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/create/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@lerna/create/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/create/node_modules/tr46": { + "version": "1.0.1", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/@lerna/create/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@lerna/create/node_modules/webidl-conversions": { + "version": "4.0.2", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "node_modules/@lerna/create/node_modules/whatwg-url": { + "version": "7.1.0", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/@lerna/describe-ref": { + "version": "3.16.5", + "integrity": "sha512-c01+4gUF0saOOtDBzbLMFOTJDHTKbDFNErEY6q6i9QaXuzy9LNN62z+Hw4acAAZuJQhrVWncVathcmkkjvSVGw==", + "dependencies": { + "@lerna/child-process": "3.16.5", + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/diff": { + "version": "3.21.0", + "integrity": "sha512-5viTR33QV3S7O+bjruo1SaR40m7F2aUHJaDAC7fL9Ca6xji+aw1KFkpCtVlISS0G8vikUREGMJh+c/VMSc8Usw==", + "dependencies": { + "@lerna/child-process": "3.16.5", + "@lerna/command": "3.21.0", + "@lerna/validation-error": "3.13.0", + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/exec": { + "version": "3.21.0", + "integrity": "sha512-iLvDBrIE6rpdd4GIKTY9mkXyhwsJ2RvQdB9ZU+/NhR3okXfqKc6py/24tV111jqpXTtZUW6HNydT4dMao2hi1Q==", + "dependencies": { + "@lerna/child-process": "3.16.5", + "@lerna/command": "3.21.0", + "@lerna/filter-options": "3.20.0", + "@lerna/profiler": "3.20.0", + "@lerna/run-topologically": "3.18.5", + "@lerna/validation-error": "3.13.0", + "p-map": "^2.1.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/filter-options": { + "version": "3.20.0", + "integrity": "sha512-bmcHtvxn7SIl/R9gpiNMVG7yjx7WyT0HSGw34YVZ9B+3xF/83N3r5Rgtjh4hheLZ+Q91Or0Jyu5O3Nr+AwZe2g==", + "dependencies": { + "@lerna/collect-updates": "3.20.0", + "@lerna/filter-packages": "3.18.0", + "dedent": "^0.7.0", + "figgy-pudding": "^3.5.1", + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/filter-packages": { + "version": "3.18.0", + "integrity": "sha512-6/0pMM04bCHNATIOkouuYmPg6KH3VkPCIgTfQmdkPJTullERyEQfNUKikrefjxo1vHOoCACDpy65JYyKiAbdwQ==", + "dependencies": { + "@lerna/validation-error": "3.13.0", + "multimatch": "^3.0.0", + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/get-npm-exec-opts": { + "version": "3.13.0", + "integrity": "sha512-Y0xWL0rg3boVyJk6An/vurKzubyJKtrxYv2sj4bB8Mc5zZ3tqtv0ccbOkmkXKqbzvNNF7VeUt1OJ3DRgtC/QZw==", + "dependencies": { + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/get-packed": { + "version": "3.16.0", + "integrity": "sha512-AjsFiaJzo1GCPnJUJZiTW6J1EihrPkc2y3nMu6m3uWFxoleklsSCyImumzVZJssxMi3CPpztj8LmADLedl9kXw==", + "dependencies": { + "fs-extra": "^8.1.0", + "ssri": "^6.0.1", + "tar": "^4.4.8" + } + }, + "node_modules/@lerna/get-packed/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@lerna/get-packed/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@lerna/get-packed/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@lerna/github-client": { + "version": "3.22.0", + "integrity": "sha512-O/GwPW+Gzr3Eb5bk+nTzTJ3uv+jh5jGho9BOqKlajXaOkMYGBELEAqV5+uARNGWZFvYAiF4PgqHb6aCUu7XdXg==", + "dependencies": { + "@lerna/child-process": "3.16.5", + "@octokit/plugin-enterprise-rest": "^6.0.1", + "@octokit/rest": "^16.28.4", + "git-url-parse": "^11.1.2", + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/gitlab-client": { + "version": "3.15.0", + "integrity": "sha512-OsBvRSejHXUBMgwWQqNoioB8sgzL/Pf1pOUhHKtkiMl6aAWjklaaq5HPMvTIsZPfS6DJ9L5OK2GGZuooP/5c8Q==", + "dependencies": { + "node-fetch": "^2.5.0", + "npmlog": "^4.1.2", + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/gitlab-client/node_modules/tr46": { + "version": "1.0.1", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/@lerna/gitlab-client/node_modules/webidl-conversions": { + "version": "4.0.2", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "node_modules/@lerna/gitlab-client/node_modules/whatwg-url": { + "version": "7.1.0", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/@lerna/global-options": { + "version": "3.13.0", + "integrity": "sha512-SlZvh1gVRRzYLVluz9fryY1nJpZ0FHDGB66U9tFfvnnxmueckRQxLopn3tXj3NU1kc3QANT2I5BsQkOqZ4TEFQ==", + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/has-npm-version": { + "version": "3.16.5", + "integrity": "sha512-WL7LycR9bkftyqbYop5rEGJ9sRFIV55tSGmbN1HLrF9idwOCD7CLrT64t235t3t4O5gehDnwKI5h2U3oxTrF8Q==", + "dependencies": { + "@lerna/child-process": "3.16.5", + "semver": "^6.2.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/has-npm-version/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@lerna/import": { + "version": "3.22.0", + "integrity": "sha512-uWOlexasM5XR6tXi4YehODtH9Y3OZrFht3mGUFFT3OIl2s+V85xIGFfqFGMTipMPAGb2oF1UBLL48kR43hRsOg==", + "dependencies": { + "@lerna/child-process": "3.16.5", + "@lerna/command": "3.21.0", + "@lerna/prompt": "3.18.5", + "@lerna/pulse-till-done": "3.13.0", + "@lerna/validation-error": "3.13.0", + "dedent": "^0.7.0", + "fs-extra": "^8.1.0", + "p-map-series": "^1.0.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/import/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@lerna/import/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@lerna/import/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@lerna/info": { + "version": "3.21.0", + "integrity": "sha512-0XDqGYVBgWxUquFaIptW2bYSIu6jOs1BtkvRTWDDhw4zyEdp6q4eaMvqdSap1CG+7wM5jeLCi6z94wS0AuiuwA==", + "dependencies": { + "@lerna/command": "3.21.0", + "@lerna/output": "3.13.0", + "envinfo": "^7.3.1" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/init": { + "version": "3.21.0", + "integrity": "sha512-6CM0z+EFUkFfurwdJCR+LQQF6MqHbYDCBPyhu/d086LRf58GtYZYj49J8mKG9ktayp/TOIxL/pKKjgLD8QBPOg==", + "dependencies": { + "@lerna/child-process": "3.16.5", + "@lerna/command": "3.21.0", + "fs-extra": "^8.1.0", + "p-map": "^2.1.0", + "write-json-file": "^3.2.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/init/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@lerna/init/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@lerna/init/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@lerna/link": { + "version": "3.21.0", + "integrity": "sha512-tGu9GxrX7Ivs+Wl3w1+jrLi1nQ36kNI32dcOssij6bg0oZ2M2MDEFI9UF2gmoypTaN9uO5TSsjCFS7aR79HbdQ==", + "dependencies": { + "@lerna/command": "3.21.0", + "@lerna/package-graph": "3.18.5", + "@lerna/symlink-dependencies": "3.17.0", + "p-map": "^2.1.0", + "slash": "^2.0.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/list": { + "version": "3.21.0", + "integrity": "sha512-KehRjE83B1VaAbRRkRy6jLX1Cin8ltsrQ7FHf2bhwhRHK0S54YuA6LOoBnY/NtA8bHDX/Z+G5sMY78X30NS9tg==", + "dependencies": { + "@lerna/command": "3.21.0", + "@lerna/filter-options": "3.20.0", + "@lerna/listable": "3.18.5", + "@lerna/output": "3.13.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/listable": { + "version": "3.18.5", + "integrity": "sha512-Sdr3pVyaEv5A7ZkGGYR7zN+tTl2iDcinryBPvtuv20VJrXBE8wYcOks1edBTcOWsPjCE/rMP4bo1pseyk3UTsg==", + "dependencies": { + "@lerna/query-graph": "3.18.5", + "chalk": "^2.3.1", + "columnify": "^1.5.4" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/log-packed": { + "version": "3.16.0", + "integrity": "sha512-Fp+McSNBV/P2mnLUYTaSlG8GSmpXM7krKWcllqElGxvAqv6chk2K3c2k80MeVB4WvJ9tRjUUf+i7HUTiQ9/ckQ==", + "dependencies": { + "byte-size": "^5.0.1", + "columnify": "^1.5.4", + "has-unicode": "^2.0.1", + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/npm-conf": { + "version": "3.16.0", + "integrity": "sha512-HbO3DUrTkCAn2iQ9+FF/eisDpWY5POQAOF1m7q//CZjdC2HSW3UYbKEGsSisFxSfaF9Z4jtrV+F/wX6qWs3CuA==", + "dependencies": { + "config-chain": "^1.1.11", + "pify": "^4.0.1" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/npm-conf/node_modules/pify": { + "version": "4.0.1", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/npm-dist-tag": { + "version": "3.18.5", + "integrity": "sha512-xw0HDoIG6HreVsJND9/dGls1c+lf6vhu7yJoo56Sz5bvncTloYGLUppIfDHQr4ZvmPCK8rsh0euCVh2giPxzKQ==", + "dependencies": { + "@evocateur/npm-registry-fetch": "^4.0.0", + "@lerna/otplease": "3.18.5", + "figgy-pudding": "^3.5.1", + "npm-package-arg": "^6.1.0", + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/npm-install": { + "version": "3.16.5", + "integrity": "sha512-hfiKk8Eku6rB9uApqsalHHTHY+mOrrHeWEs+gtg7+meQZMTS3kzv4oVp5cBZigndQr3knTLjwthT/FX4KvseFg==", + "dependencies": { + "@lerna/child-process": "3.16.5", + "@lerna/get-npm-exec-opts": "3.13.0", + "fs-extra": "^8.1.0", + "npm-package-arg": "^6.1.0", + "npmlog": "^4.1.2", + "signal-exit": "^3.0.2", + "write-pkg": "^3.1.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/npm-install/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@lerna/npm-install/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@lerna/npm-install/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@lerna/npm-publish": { + "version": "3.18.5", + "integrity": "sha512-3etLT9+2L8JAx5F8uf7qp6iAtOLSMj+ZYWY6oUgozPi/uLqU0/gsMsEXh3F0+YVW33q0M61RpduBoAlOOZnaTg==", + "dependencies": { + "@evocateur/libnpmpublish": "^1.2.2", + "@lerna/otplease": "3.18.5", + "@lerna/run-lifecycle": "3.16.2", + "figgy-pudding": "^3.5.1", + "fs-extra": "^8.1.0", + "npm-package-arg": "^6.1.0", + "npmlog": "^4.1.2", + "pify": "^4.0.1", + "read-package-json": "^2.0.13" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/npm-publish/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@lerna/npm-publish/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@lerna/npm-publish/node_modules/pify": { + "version": "4.0.1", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/npm-publish/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@lerna/npm-run-script": { + "version": "3.16.5", + "integrity": "sha512-1asRi+LjmVn3pMjEdpqKJZFT/3ZNpb+VVeJMwrJaV/3DivdNg7XlPK9LTrORuKU4PSvhdEZvJmSlxCKyDpiXsQ==", + "dependencies": { + "@lerna/child-process": "3.16.5", + "@lerna/get-npm-exec-opts": "3.13.0", + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/otplease": { + "version": "3.18.5", + "integrity": "sha512-S+SldXAbcXTEDhzdxYLU0ZBKuYyURP/ND2/dK6IpKgLxQYh/z4ScljPDMyKymmEvgiEJmBsPZAAPfmNPEzxjog==", + "dependencies": { + "@lerna/prompt": "3.18.5", + "figgy-pudding": "^3.5.1" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/output": { + "version": "3.13.0", + "integrity": "sha512-7ZnQ9nvUDu/WD+bNsypmPG5MwZBwu86iRoiW6C1WBuXXDxM5cnIAC1m2WxHeFnjyMrYlRXM9PzOQ9VDD+C15Rg==", + "dependencies": { + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/pack-directory": { + "version": "3.16.4", + "integrity": "sha512-uxSF0HZeGyKaaVHz5FroDY9A5NDDiCibrbYR6+khmrhZtY0Bgn6hWq8Gswl9iIlymA+VzCbshWIMX4o2O8C8ng==", + "dependencies": { + "@lerna/get-packed": "3.16.0", + "@lerna/package": "3.16.0", + "@lerna/run-lifecycle": "3.16.2", + "figgy-pudding": "^3.5.1", + "npm-packlist": "^1.4.4", + "npmlog": "^4.1.2", + "tar": "^4.4.10", + "temp-write": "^3.4.0" + } + }, + "node_modules/@lerna/package": { + "version": "3.16.0", + "integrity": "sha512-2lHBWpaxcBoiNVbtyLtPUuTYEaB/Z+eEqRS9duxpZs6D+mTTZMNy6/5vpEVSCBmzvdYpyqhqaYjjSLvjjr5Riw==", + "dependencies": { + "load-json-file": "^5.3.0", + "npm-package-arg": "^6.1.0", + "write-pkg": "^3.1.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/package-graph": { + "version": "3.18.5", + "integrity": "sha512-8QDrR9T+dBegjeLr+n9WZTVxUYUhIUjUgZ0gvNxUBN8S1WB9r6H5Yk56/MVaB64tA3oGAN9IIxX6w0WvTfFudA==", + "dependencies": { + "@lerna/prerelease-id-from-version": "3.16.0", + "@lerna/validation-error": "3.13.0", + "npm-package-arg": "^6.1.0", + "npmlog": "^4.1.2", + "semver": "^6.2.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/package-graph/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@lerna/prerelease-id-from-version": { + "version": "3.16.0", + "integrity": "sha512-qZyeUyrE59uOK8rKdGn7jQz+9uOpAaF/3hbslJVFL1NqF9ELDTqjCPXivuejMX/lN4OgD6BugTO4cR7UTq/sZA==", + "dependencies": { + "semver": "^6.2.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/prerelease-id-from-version/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@lerna/profiler": { + "version": "3.20.0", + "integrity": "sha512-bh8hKxAlm6yu8WEOvbLENm42i2v9SsR4WbrCWSbsmOElx3foRnMlYk7NkGECa+U5c3K4C6GeBbwgqs54PP7Ljg==", + "dependencies": { + "figgy-pudding": "^3.5.1", + "fs-extra": "^8.1.0", + "npmlog": "^4.1.2", + "upath": "^1.2.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/profiler/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@lerna/profiler/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@lerna/profiler/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@lerna/project": { + "version": "3.21.0", + "integrity": "sha512-xT1mrpET2BF11CY32uypV2GPtPVm6Hgtha7D81GQP9iAitk9EccrdNjYGt5UBYASl4CIDXBRxwmTTVGfrCx82A==", + "dependencies": { + "@lerna/package": "3.16.0", + "@lerna/validation-error": "3.13.0", + "cosmiconfig": "^5.1.0", + "dedent": "^0.7.0", + "dot-prop": "^4.2.0", + "glob-parent": "^5.0.0", + "globby": "^9.2.0", + "load-json-file": "^5.3.0", + "npmlog": "^4.1.2", + "p-map": "^2.1.0", + "resolve-from": "^4.0.0", + "write-json-file": "^3.2.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/project/node_modules/@nodelib/fs.stat": { + "version": "1.1.3", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@lerna/project/node_modules/array-union": { + "version": "1.0.2", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/project/node_modules/braces": { + "version": "2.3.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/project/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/project/node_modules/dir-glob": { + "version": "2.2.2", + "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", + "dependencies": { + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/project/node_modules/dot-prop": { + "version": "4.2.1", + "integrity": "sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ==", + "dependencies": { + "is-obj": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/project/node_modules/fast-glob": { + "version": "2.2.7", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", + "dependencies": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@lerna/project/node_modules/fast-glob/node_modules/glob-parent": { + "version": "3.1.0", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/@lerna/project/node_modules/fast-glob/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/project/node_modules/fill-range": { + "version": "4.0.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/project/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/project/node_modules/globby": { + "version": "9.2.0", + "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==", + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/project/node_modules/ignore": { + "version": "4.0.6", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@lerna/project/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/project/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/project/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/project/node_modules/micromatch": { + "version": "3.1.10", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/project/node_modules/path-type": { + "version": "3.0.0", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/project/node_modules/path-type/node_modules/pify": { + "version": "3.0.0", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/project/node_modules/pify": { + "version": "4.0.1", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@lerna/project/node_modules/resolve-from": { + "version": "4.0.0", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/project/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@lerna/prompt": { + "version": "3.18.5", + "integrity": "sha512-rkKj4nm1twSbBEb69+Em/2jAERK8htUuV8/xSjN0NPC+6UjzAwY52/x9n5cfmpa9lyKf/uItp7chCI7eDmNTKQ==", + "dependencies": { + "inquirer": "^6.2.0", + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/publish": { + "version": "3.22.1", + "integrity": "sha512-PG9CM9HUYDreb1FbJwFg90TCBQooGjj+n/pb3gw/eH5mEDq0p8wKdLFe0qkiqUkm/Ub5C8DbVFertIo0Vd0zcw==", + "dependencies": { + "@evocateur/libnpmaccess": "^3.1.2", + "@evocateur/npm-registry-fetch": "^4.0.0", + "@evocateur/pacote": "^9.6.3", + "@lerna/check-working-tree": "3.16.5", + "@lerna/child-process": "3.16.5", + "@lerna/collect-updates": "3.20.0", + "@lerna/command": "3.21.0", + "@lerna/describe-ref": "3.16.5", + "@lerna/log-packed": "3.16.0", + "@lerna/npm-conf": "3.16.0", + "@lerna/npm-dist-tag": "3.18.5", + "@lerna/npm-publish": "3.18.5", + "@lerna/otplease": "3.18.5", + "@lerna/output": "3.13.0", + "@lerna/pack-directory": "3.16.4", + "@lerna/prerelease-id-from-version": "3.16.0", + "@lerna/prompt": "3.18.5", + "@lerna/pulse-till-done": "3.13.0", + "@lerna/run-lifecycle": "3.16.2", + "@lerna/run-topologically": "3.18.5", + "@lerna/validation-error": "3.13.0", + "@lerna/version": "3.22.1", + "figgy-pudding": "^3.5.1", + "fs-extra": "^8.1.0", + "npm-package-arg": "^6.1.0", + "npmlog": "^4.1.2", + "p-finally": "^1.0.0", + "p-map": "^2.1.0", + "p-pipe": "^1.2.0", + "semver": "^6.2.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/publish/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@lerna/publish/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@lerna/publish/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@lerna/publish/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@lerna/pulse-till-done": { + "version": "3.13.0", + "integrity": "sha512-1SOHpy7ZNTPulzIbargrgaJX387csN7cF1cLOGZiJQA6VqnS5eWs2CIrG8i8wmaUavj2QlQ5oEbRMVVXSsGrzA==", + "dependencies": { + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/query-graph": { + "version": "3.18.5", + "integrity": "sha512-50Lf4uuMpMWvJ306be3oQDHrWV42nai9gbIVByPBYJuVW8dT8O8pA3EzitNYBUdLL9/qEVbrR0ry1HD7EXwtRA==", + "dependencies": { + "@lerna/package-graph": "3.18.5", + "figgy-pudding": "^3.5.1" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/resolve-symlink": { + "version": "3.16.0", + "integrity": "sha512-Ibj5e7njVHNJ/NOqT4HlEgPFPtPLWsO7iu59AM5bJDcAJcR96mLZ7KGVIsS2tvaO7akMEJvt2P+ErwCdloG3jQ==", + "dependencies": { + "fs-extra": "^8.1.0", + "npmlog": "^4.1.2", + "read-cmd-shim": "^1.0.1" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/resolve-symlink/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@lerna/resolve-symlink/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@lerna/resolve-symlink/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@lerna/rimraf-dir": { + "version": "3.16.5", + "integrity": "sha512-bQlKmO0pXUsXoF8lOLknhyQjOZsCc0bosQDoX4lujBXSWxHVTg1VxURtWf2lUjz/ACsJVDfvHZbDm8kyBk5okA==", + "dependencies": { + "@lerna/child-process": "3.16.5", + "npmlog": "^4.1.2", + "path-exists": "^3.0.0", + "rimraf": "^2.6.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/rimraf-dir/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/@lerna/rimraf-dir/node_modules/rimraf": { + "version": "2.7.1", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/@lerna/run": { + "version": "3.21.0", + "integrity": "sha512-fJF68rT3veh+hkToFsBmUJ9MHc9yGXA7LSDvhziAojzOb0AI/jBDp6cEcDQyJ7dbnplba2Lj02IH61QUf9oW0Q==", + "dependencies": { + "@lerna/command": "3.21.0", + "@lerna/filter-options": "3.20.0", + "@lerna/npm-run-script": "3.16.5", + "@lerna/output": "3.13.0", + "@lerna/profiler": "3.20.0", + "@lerna/run-topologically": "3.18.5", + "@lerna/timer": "3.13.0", + "@lerna/validation-error": "3.13.0", + "p-map": "^2.1.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/run-lifecycle": { + "version": "3.16.2", + "integrity": "sha512-RqFoznE8rDpyyF0rOJy3+KjZCeTkO8y/OB9orPauR7G2xQ7PTdCpgo7EO6ZNdz3Al+k1BydClZz/j78gNCmL2A==", + "dependencies": { + "@lerna/npm-conf": "3.16.0", + "figgy-pudding": "^3.5.1", + "npm-lifecycle": "^3.1.2", + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/run-topologically": { + "version": "3.18.5", + "integrity": "sha512-6N1I+6wf4hLOnPW+XDZqwufyIQ6gqoPfHZFkfWlvTQ+Ue7CuF8qIVQ1Eddw5HKQMkxqN10thKOFfq/9NQZ4NUg==", + "dependencies": { + "@lerna/query-graph": "3.18.5", + "figgy-pudding": "^3.5.1", + "p-queue": "^4.0.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/symlink-binary": { + "version": "3.17.0", + "integrity": "sha512-RLpy9UY6+3nT5J+5jkM5MZyMmjNHxZIZvXLV+Q3MXrf7Eaa1hNqyynyj4RO95fxbS+EZc4XVSk25DGFQbcRNSQ==", + "dependencies": { + "@lerna/create-symlink": "3.16.2", + "@lerna/package": "3.16.0", + "fs-extra": "^8.1.0", + "p-map": "^2.1.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/symlink-binary/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@lerna/symlink-binary/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@lerna/symlink-binary/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@lerna/symlink-dependencies": { + "version": "3.17.0", + "integrity": "sha512-KmjU5YT1bpt6coOmdFueTJ7DFJL4H1w5eF8yAQ2zsGNTtZ+i5SGFBWpb9AQaw168dydc3s4eu0W0Sirda+F59Q==", + "dependencies": { + "@lerna/create-symlink": "3.16.2", + "@lerna/resolve-symlink": "3.16.0", + "@lerna/symlink-binary": "3.17.0", + "fs-extra": "^8.1.0", + "p-finally": "^1.0.0", + "p-map": "^2.1.0", + "p-map-series": "^1.0.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/symlink-dependencies/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@lerna/symlink-dependencies/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@lerna/symlink-dependencies/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@lerna/timer": { + "version": "3.13.0", + "integrity": "sha512-RHWrDl8U4XNPqY5MQHkToWS9jHPnkLZEt5VD+uunCKTfzlxGnRCr3/zVr8VGy/uENMYpVP3wJa4RKGY6M0vkRw==", + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/validation-error": { + "version": "3.13.0", + "integrity": "sha512-SiJP75nwB8GhgwLKQfdkSnDufAaCbkZWJqEDlKOUPUvVOplRGnfL+BPQZH5nvq2BYSRXsksXWZ4UHVnQZI/HYA==", + "dependencies": { + "npmlog": "^4.1.2" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/version": { + "version": "3.22.1", + "integrity": "sha512-PSGt/K1hVqreAFoi3zjD0VEDupQ2WZVlVIwesrE5GbrL2BjXowjCsTDPqblahDUPy0hp6h7E2kG855yLTp62+g==", + "dependencies": { + "@lerna/check-working-tree": "3.16.5", + "@lerna/child-process": "3.16.5", + "@lerna/collect-updates": "3.20.0", + "@lerna/command": "3.21.0", + "@lerna/conventional-commits": "3.22.0", + "@lerna/github-client": "3.22.0", + "@lerna/gitlab-client": "3.15.0", + "@lerna/output": "3.13.0", + "@lerna/prerelease-id-from-version": "3.16.0", + "@lerna/prompt": "3.18.5", + "@lerna/run-lifecycle": "3.16.2", + "@lerna/run-topologically": "3.18.5", + "@lerna/validation-error": "3.13.0", + "chalk": "^2.3.1", + "dedent": "^0.7.0", + "load-json-file": "^5.3.0", + "minimatch": "^3.0.4", + "npmlog": "^4.1.2", + "p-map": "^2.1.0", + "p-pipe": "^1.2.0", + "p-reduce": "^1.0.0", + "p-waterfall": "^1.0.0", + "semver": "^6.2.0", + "slash": "^2.0.0", + "temp-write": "^3.4.0", + "write-json-file": "^3.2.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/version/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@lerna/write-log-file": { + "version": "3.13.0", + "integrity": "sha512-RibeMnDPvlL8bFYW5C8cs4mbI3AHfQef73tnJCQ/SgrXZHehmHnsyWUiE7qDQCAo+B1RfTapvSyFF69iPj326A==", + "dependencies": { + "npmlog": "^4.1.2", + "write-file-atomic": "^2.3.0" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/@lerna/write-log-file/node_modules/write-file-atomic": { + "version": "2.4.3", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/@mapbox/geojson-area": { + "version": "0.2.2", + "integrity": "sha1-GNeBSqNr8j+7zDefjiaiKSfevxA=", + "dependencies": { + "wgs84": "0.0.0" + } + }, + "node_modules/@mapbox/geojson-rewind": { + "version": "0.4.1", + "integrity": "sha512-mxo2MEr7izA1uOXcDsw99Kgg6xW3P4H2j4n1lmldsgviIelpssvP+jQDivFKOHrOVJDpTTi5oZJvRcHtU9Uufw==", + "dependencies": { + "@mapbox/geojson-area": "0.2.2", + "concat-stream": "~1.6.0", + "minimist": "^1.2.5", + "sharkdown": "^0.1.0" + }, + "bin": { + "geojson-rewind": "geojson-rewind" + } + }, + "node_modules/@mapbox/geojson-rewind/node_modules/concat-stream": { + "version": "1.6.2", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/@mapbox/geojson-rewind/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/@mapbox/geojson-rewind/node_modules/minimist": { + "version": "1.2.5", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "node_modules/@mapbox/geojson-rewind/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/@mapbox/geojson-rewind/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/@mapbox/geojson-types": { + "version": "1.0.2", + "integrity": "sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw==" + }, + "node_modules/@mapbox/jsonlint-lines-primitives": { + "version": "2.0.2", + "integrity": "sha1-zlblOfg1UrWNENZy6k1vya3HsjQ=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@mapbox/mapbox-gl-supported": { + "version": "1.5.0", + "integrity": "sha512-/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg==", + "peerDependencies": { + "mapbox-gl": ">=0.32.1 <2.0.0" + } + }, + "node_modules/@mapbox/point-geometry": { + "version": "0.1.0", + "integrity": "sha1-ioP5M1x4YO/6Lu7KJUMyqgru2PI=" + }, + "node_modules/@mapbox/tiny-sdf": { + "version": "1.2.5", + "integrity": "sha512-cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw==" + }, + "node_modules/@mapbox/unitbezier": { + "version": "0.0.0", + "integrity": "sha1-FWUb1VOme4WB+zmIEMmK2Go0Uk4=" + }, + "node_modules/@mapbox/vector-tile": { + "version": "1.3.1", + "integrity": "sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==", + "dependencies": { + "@mapbox/point-geometry": "~0.1.0" + } + }, + "node_modules/@mapbox/whoots-js": { + "version": "3.1.0", + "integrity": "sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@marionebl/sander": { + "version": "0.6.1", + "integrity": "sha1-GViWWHTyS8Ub5Ih1/rUNZC/EH3s=", + "dependencies": { + "graceful-fs": "^4.1.3", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.2" + } + }, + "node_modules/@marionebl/sander/node_modules/rimraf": { + "version": "2.7.1", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/@mdx-js/mdx": { + "version": "1.6.22", + "integrity": "sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==", + "dependencies": { + "@babel/core": "7.12.9", + "@babel/plugin-syntax-jsx": "7.12.1", + "@babel/plugin-syntax-object-rest-spread": "7.8.3", + "@mdx-js/util": "1.6.22", + "babel-plugin-apply-mdx-type-prop": "1.6.22", + "babel-plugin-extract-import-names": "1.6.22", + "camelcase-css": "2.0.1", + "detab": "2.0.4", + "hast-util-raw": "6.0.1", + "lodash.uniq": "4.5.0", + "mdast-util-to-hast": "10.0.1", + "remark-footnotes": "2.0.0", + "remark-mdx": "1.6.22", + "remark-parse": "8.0.3", + "remark-squeeze-paragraphs": "4.0.0", + "style-to-object": "0.3.0", + "unified": "9.2.0", + "unist-builder": "2.0.3", + "unist-util-visit": "2.0.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/@mdx-js/mdx/node_modules/@babel/core": { + "version": "7.12.9", + "integrity": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.5", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.5", + "@babel/parser": "^7.12.7", + "@babel/template": "^7.12.7", + "@babel/traverse": "^7.12.9", + "@babel/types": "^7.12.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@mdx-js/mdx/node_modules/@babel/plugin-syntax-jsx": { + "version": "7.12.1", + "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@mdx-js/mdx/node_modules/is-buffer": { + "version": "2.0.5", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } + }, + "node_modules/@mdx-js/mdx/node_modules/is-plain-obj": { + "version": "2.1.0", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@mdx-js/mdx/node_modules/parse-entities": { + "version": "2.0.0", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/@mdx-js/mdx/node_modules/remark-parse": { + "version": "8.0.3", + "integrity": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==", + "dependencies": { + "ccount": "^1.0.0", + "collapse-white-space": "^1.0.2", + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-whitespace-character": "^1.0.0", + "is-word-character": "^1.0.0", + "markdown-escapes": "^1.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.5.4", + "state-toggle": "^1.0.0", + "trim": "0.0.1", + "trim-trailing-lines": "^1.0.0", + "unherit": "^1.0.4", + "unist-util-remove-position": "^2.0.0", + "vfile-location": "^3.0.0", + "xtend": "^4.0.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/@mdx-js/mdx/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@mdx-js/mdx/node_modules/unified": { + "version": "9.2.0", + "integrity": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==", + "dependencies": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^2.0.0", + "trough": "^1.0.0", + "vfile": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/@mdx-js/mdx/node_modules/unist-util-is": { + "version": "4.1.0", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/@mdx-js/mdx/node_modules/unist-util-remove-position": { + "version": "2.0.1", + "integrity": "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==", + "dependencies": { + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/@mdx-js/mdx/node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dependencies": { + "@types/unist": "^2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/@mdx-js/mdx/node_modules/unist-util-visit": { + "version": "2.0.3", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/@mdx-js/mdx/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/@mdx-js/mdx/node_modules/vfile": { + "version": "4.2.1", + "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/@mdx-js/mdx/node_modules/vfile-location": { + "version": "3.2.0", + "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/@mdx-js/mdx/node_modules/vfile-message": { + "version": "2.0.4", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/@mdx-js/util": { + "version": "1.6.22", + "integrity": "sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", + "dependencies": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@mrmlnc/readdir-enhanced/node_modules/glob-to-regexp": { + "version": "0.3.0", + "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=" + }, + "node_modules/@nicolo-ribaudo/chokidar-2": { + "version": "2.1.8-no-fsevents.3", + "integrity": "sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==", + "optional": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@npmcli/fs": { + "version": "1.0.0", + "integrity": "sha512-8ltnOpRR/oJbOp8vaGUnipOi3bqkcW+sLHFlyXIr08OGHmVJLB1Hn7QtGXbYcpVtH1gAYZTlmDXtE4YV0+AMMQ==", + "dependencies": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "node_modules/@npmcli/move-file": { + "version": "1.1.2", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/move-file/node_modules/mkdirp": { + "version": "1.0.4", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@octokit/auth-token": { + "version": "2.5.0", + "integrity": "sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==", + "dependencies": { + "@octokit/types": "^6.0.3" + } + }, + "node_modules/@octokit/core": { + "version": "3.5.1", + "integrity": "sha512-omncwpLVxMP+GLpLPgeGJBF6IWJFjXDS5flY5VbppePYX9XehevbDykRH9PdCdvqt9TS5AOTiDide7h0qrkHjw==", + "dependencies": { + "@octokit/auth-token": "^2.4.4", + "@octokit/graphql": "^4.5.8", + "@octokit/request": "^5.6.0", + "@octokit/request-error": "^2.0.5", + "@octokit/types": "^6.0.3", + "before-after-hook": "^2.2.0", + "universal-user-agent": "^6.0.0" + } + }, + "node_modules/@octokit/endpoint": { + "version": "6.0.12", + "integrity": "sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==", + "dependencies": { + "@octokit/types": "^6.0.3", + "is-plain-object": "^5.0.0", + "universal-user-agent": "^6.0.0" + } + }, + "node_modules/@octokit/graphql": { + "version": "4.8.0", + "integrity": "sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==", + "dependencies": { + "@octokit/request": "^5.6.0", + "@octokit/types": "^6.0.3", + "universal-user-agent": "^6.0.0" + } + }, + "node_modules/@octokit/openapi-types": { + "version": "11.2.0", + "integrity": "sha512-PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==" + }, + "node_modules/@octokit/plugin-enterprise-rest": { + "version": "6.0.1", + "integrity": "sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==" + }, + "node_modules/@octokit/plugin-paginate-rest": { + "version": "2.17.0", + "integrity": "sha512-tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw==", + "dev": true, + "dependencies": { + "@octokit/types": "^6.34.0" + }, + "peerDependencies": { + "@octokit/core": ">=2" + } + }, + "node_modules/@octokit/plugin-request-log": { + "version": "1.0.4", + "integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", + "peerDependencies": { + "@octokit/core": ">=3" + } + }, + "node_modules/@octokit/plugin-rest-endpoint-methods": { + "version": "5.13.0", + "integrity": "sha512-uJjMTkN1KaOIgNtUPMtIXDOjx6dGYysdIFhgA52x4xSadQCz3b/zJexvITDVpANnfKPW/+E0xkOvLntqMYpviA==", + "dev": true, + "dependencies": { + "@octokit/types": "^6.34.0", + "deprecation": "^2.3.1" + }, + "peerDependencies": { + "@octokit/core": ">=3" + } + }, + "node_modules/@octokit/request": { + "version": "5.6.2", + "integrity": "sha512-je66CvSEVf0jCpRISxkUcCa0UkxmFs6eGDRSbfJtAVwbLH5ceqF+YEyC8lj8ystKyZTy8adWr0qmkY52EfOeLA==", + "dependencies": { + "@octokit/endpoint": "^6.0.1", + "@octokit/request-error": "^2.1.0", + "@octokit/types": "^6.16.1", + "is-plain-object": "^5.0.0", + "node-fetch": "^2.6.1", + "universal-user-agent": "^6.0.0" + } + }, + "node_modules/@octokit/request-error": { + "version": "2.1.0", + "integrity": "sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==", + "dependencies": { + "@octokit/types": "^6.0.3", + "deprecation": "^2.0.0", + "once": "^1.4.0" + } + }, + "node_modules/@octokit/request/node_modules/node-fetch": { + "version": "2.6.5", + "integrity": "sha512-mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + } + }, + "node_modules/@octokit/request/node_modules/tr46": { + "version": "0.0.3", + "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" + }, + "node_modules/@octokit/request/node_modules/webidl-conversions": { + "version": "3.0.1", + "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" + }, + "node_modules/@octokit/request/node_modules/whatwg-url": { + "version": "5.0.0", + "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/@octokit/rest": { + "version": "16.43.2", + "integrity": "sha512-ngDBevLbBTFfrHZeiS7SAMAZ6ssuVmXuya+F/7RaVvlysgGa1JKJkKWY+jV6TCJYcW0OALfJ7nTIGXcBXzycfQ==", + "dependencies": { + "@octokit/auth-token": "^2.4.0", + "@octokit/plugin-paginate-rest": "^1.1.1", + "@octokit/plugin-request-log": "^1.0.0", + "@octokit/plugin-rest-endpoint-methods": "2.4.0", + "@octokit/request": "^5.2.0", + "@octokit/request-error": "^1.0.2", + "atob-lite": "^2.0.0", + "before-after-hook": "^2.0.0", + "btoa-lite": "^1.0.0", + "deprecation": "^2.0.0", + "lodash.get": "^4.4.2", + "lodash.set": "^4.3.2", + "lodash.uniq": "^4.5.0", + "octokit-pagination-methods": "^1.1.0", + "once": "^1.4.0", + "universal-user-agent": "^4.0.0" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/plugin-paginate-rest": { + "version": "1.1.2", + "integrity": "sha512-jbsSoi5Q1pj63sC16XIUboklNw+8tL9VOnJsWycWYR78TKss5PVpIPb1TUUcMQ+bBh7cY579cVAWmf5qG+dw+Q==", + "dependencies": { + "@octokit/types": "^2.0.1" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/plugin-rest-endpoint-methods": { + "version": "2.4.0", + "integrity": "sha512-EZi/AWhtkdfAYi01obpX0DF7U6b1VRr30QNQ5xSFPITMdLSfhcBqjamE3F+sKcxPbD7eZuMHu3Qkk2V+JGxBDQ==", + "dependencies": { + "@octokit/types": "^2.0.1", + "deprecation": "^2.3.1" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/request-error": { + "version": "1.2.1", + "integrity": "sha512-+6yDyk1EES6WK+l3viRDElw96MvwfJxCt45GvmjDUKWjYIb3PJZQkq3i46TwGwoPD4h8NmTrENmtyA1FwbmhRA==", + "dependencies": { + "@octokit/types": "^2.0.0", + "deprecation": "^2.0.0", + "once": "^1.4.0" + } + }, + "node_modules/@octokit/rest/node_modules/@octokit/types": { + "version": "2.16.2", + "integrity": "sha512-O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q==", + "dependencies": { + "@types/node": ">= 8" + } + }, + "node_modules/@octokit/rest/node_modules/universal-user-agent": { + "version": "4.0.1", + "integrity": "sha512-LnST3ebHwVL2aNe4mejI9IQh2HfZ1RLo8Io2HugSif8ekzD1TlWpHpColOB/eh8JHMLkGH3Akqf040I+4ylNxg==", + "dependencies": { + "os-name": "^3.1.0" + } + }, + "node_modules/@octokit/types": { + "version": "6.34.0", + "integrity": "sha512-s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw==", + "dependencies": { + "@octokit/openapi-types": "^11.2.0" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.4.3", + "integrity": "sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==", + "dependencies": { + "ansi-html": "^0.0.7", + "error-stack-parser": "^2.0.6", + "html-entities": "^1.2.1", + "native-url": "^0.2.6", + "schema-utils": "^2.6.5", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.x" + }, + "peerDependencies": { + "@types/webpack": "4.x", + "react-refresh": ">=0.8.3 <0.10.0", + "sockjs-client": "^1.4.0", + "type-fest": "^0.13.1", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { + "version": "0.7.3", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@popperjs/core": { + "version": "2.10.2", + "integrity": "sha512-IXf3XA7+XyN7CP9gGh/XB0UxVMlvARGEgGXLubFICsUMGz6Q+DU+i4gGlpOxTjKvXjkJDJC8YdqdKkDj9qZHEQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@reach/router": { + "version": "1.3.4", + "integrity": "sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA==", + "dependencies": { + "create-react-context": "0.3.0", + "invariant": "^2.2.3", + "prop-types": "^15.6.1", + "react-lifecycles-compat": "^3.0.4" + }, + "peerDependencies": { + "react": "15.x || 16.x || 16.4.0-alpha.0911da3", + "react-dom": "15.x || 16.x || 16.4.0-alpha.0911da3" + } + }, + "node_modules/@react-icons/all-files": { + "version": "4.1.0", + "integrity": "sha512-hxBI2UOuVaI3O/BhQfhtb4kcGn9ft12RWAFVMUeNjqqhLsHvFtzIkFaptBJpFDANTKoDfdVoHTKZDlwKCACbMQ==", + "peerDependencies": { + "react": "*" + } + }, + "node_modules/@samverschueren/stream-to-observable": { + "version": "0.3.1", + "integrity": "sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==", + "dev": true, + "dependencies": { + "any-observable": "^0.3.0" + }, + "engines": { + "node": ">=6" + }, + "peerDependenciesMeta": { + "rxjs": { + "optional": true + }, + "zen-observable": { + "optional": true + } + } + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.3", + "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "6.0.1", + "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@sinonjs/samsam": { + "version": "5.3.1", + "integrity": "sha512-1Hc0b1TtyfBu8ixF/tpfSHTVWKwCBLY4QJbkgnE7HcwyvT2xArDxb4K7dMgqRm3szI+LJbzmW/s4xxEhv6hwDg==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^1.6.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "node_modules/@sinonjs/text-encoding": { + "version": "0.7.1", + "integrity": "sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==", + "dev": true + }, + "node_modules/@storybook/addon-actions": { + "version": "6.3.12", + "integrity": "sha512-mzuN4Ano4eyicwycM2PueGzzUCAEzt9/6vyptWEIVJu0sjK0J9KtBRlqFi1xGQxmCfimDR/n/vWBBkc7fp2uJA==", + "dependencies": { + "@storybook/addons": "6.3.12", + "@storybook/api": "6.3.12", + "@storybook/client-api": "6.3.12", + "@storybook/components": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/theming": "6.3.12", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "polished": "^4.0.5", + "prop-types": "^15.7.2", + "react-inspector": "^5.1.0", + "regenerator-runtime": "^0.13.7", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2", + "uuid-browser": "^3.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } + } + }, + "node_modules/@storybook/addon-actions/node_modules/@storybook/client-api": { + "version": "6.3.12", + "integrity": "sha512-xnW+lKKK2T774z+rOr9Wopt1aYTStfb86PSs9p3Fpnc2Btcftln+C3NtiHZl8Ccqft8Mz/chLGgewRui6tNI8g==", + "dependencies": { + "@storybook/addons": "6.3.12", + "@storybook/channel-postmessage": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/csf": "0.0.1", + "@types/qs": "^6.9.5", + "@types/webpack-env": "^1.16.0", + "core-js": "^3.8.2", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "regenerator-runtime": "^0.13.7", + "stable": "^0.1.8", + "store2": "^2.12.0", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/addon-actions/node_modules/react-inspector": { + "version": "5.1.1", + "integrity": "sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==", + "dependencies": { + "@babel/runtime": "^7.0.0", + "is-dom": "^1.0.0", + "prop-types": "^15.0.0" + }, + "peerDependencies": { + "react": "^16.8.4 || ^17.0.0" + } + }, + "node_modules/@storybook/addon-knobs": { + "version": "6.3.1", + "integrity": "sha512-2GGGnQSPXXUhHHYv4IW6pkyQlCPYXKYiyGzfhV7Zhs95M2Ban08OA6KLmliMptWCt7U9tqTO8dB5u0C2cWmCTw==", + "dependencies": { + "copy-to-clipboard": "^3.3.1", + "core-js": "^3.8.2", + "escape-html": "^1.0.3", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "prop-types": "^15.7.2", + "qs": "^6.10.0", + "react-colorful": "^5.1.2", + "react-lifecycles-compat": "^3.0.4", + "react-select": "^3.2.0" + }, + "peerDependencies": { + "@storybook/addons": "^6.3.0", + "@storybook/api": "^6.3.0", + "@storybook/components": "^6.3.0", + "@storybook/core-events": "^6.3.0", + "@storybook/theming": "^6.3.0", + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } + } + }, + "node_modules/@storybook/addon-knobs/node_modules/@emotion/cache": { + "version": "10.0.29", + "integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==", + "dependencies": { + "@emotion/sheet": "0.9.4", + "@emotion/stylis": "0.8.5", + "@emotion/utils": "0.11.3", + "@emotion/weak-memoize": "0.2.5" + } + }, + "node_modules/@storybook/addon-knobs/node_modules/@emotion/memoize": { + "version": "0.7.4", + "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + }, + "node_modules/@storybook/addon-knobs/node_modules/@emotion/serialize": { + "version": "0.11.16", + "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", + "dependencies": { + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/unitless": "0.7.5", + "@emotion/utils": "0.11.3", + "csstype": "^2.5.7" + } + }, + "node_modules/@storybook/addon-knobs/node_modules/@emotion/sheet": { + "version": "0.9.4", + "integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==" + }, + "node_modules/@storybook/addon-knobs/node_modules/@emotion/utils": { + "version": "0.11.3", + "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + }, + "node_modules/@storybook/addon-knobs/node_modules/react-colorful": { + "version": "5.5.0", + "integrity": "sha512-BuzrlrM0ylg7coPkXOrRqlf2BgHLw5L44sybbr9Lg4xy7w9e5N7fGYbojOO0s8J0nvrM3PERN2rVFkvSa24lnQ==", + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@storybook/addon-knobs/node_modules/react-select": { + "version": "3.2.0", + "integrity": "sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "@emotion/cache": "^10.0.9", + "@emotion/core": "^10.0.9", + "@emotion/css": "^10.0.9", + "memoize-one": "^5.0.0", + "prop-types": "^15.6.0", + "react-input-autosize": "^3.0.0", + "react-transition-group": "^4.3.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/addon-knobs/node_modules/react-select/node_modules/@emotion/core": { + "version": "10.1.1", + "integrity": "sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@emotion/cache": "^10.0.27", + "@emotion/css": "^10.0.27", + "@emotion/serialize": "^0.11.15", + "@emotion/sheet": "0.9.4", + "@emotion/utils": "0.11.3" + }, + "peerDependencies": { + "react": ">=16.3.0" + } + }, + "node_modules/@storybook/addon-knobs/node_modules/react-select/node_modules/react-input-autosize": { + "version": "3.0.0", + "integrity": "sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==", + "dependencies": { + "prop-types": "^15.5.8" + }, + "peerDependencies": { + "react": "^16.3.0 || ^17.0.0" + } + }, + "node_modules/@storybook/addon-knobs/node_modules/react-select/node_modules/react-transition-group": { + "version": "4.4.2", + "integrity": "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/@storybook/addon-links": { + "version": "6.3.12", + "integrity": "sha512-NfOGEm0+QxIrAXCa05LOXmxLtI+RlcDqHXZ1jNNj8mjeRoG1nX3qhkB8PWWIBbPuz+bktLV9ox8UZj0W6+ZPOQ==", + "dependencies": { + "@storybook/addons": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/csf": "0.0.1", + "@storybook/router": "6.3.12", + "@types/qs": "^6.9.5", + "core-js": "^3.8.2", + "global": "^4.4.0", + "prop-types": "^15.7.2", + "qs": "^6.10.0", + "regenerator-runtime": "^0.13.7", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } + } + }, + "node_modules/@storybook/addon-links/node_modules/@storybook/router": { + "version": "6.3.12", + "integrity": "sha512-G/pNGCnrJRetCwyEZulHPT+YOcqEj/vkPVDTUfii2qgqukup6K0cjwgd7IukAURnAnnzTi1gmgFuEKUi8GE/KA==", + "dependencies": { + "@reach/router": "^1.3.4", + "@storybook/client-logger": "6.3.12", + "@types/reach__router": "^1.3.7", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/addons": { + "version": "6.3.12", + "integrity": "sha512-UgoMyr7Qr0FS3ezt8u6hMEcHgyynQS9ucr5mAwZky3wpXRPFyUTmMto9r4BBUdqyUvTUj/LRKIcmLBfj+/l0Fg==", + "dependencies": { + "@storybook/api": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/router": "6.3.12", + "@storybook/theming": "6.3.12", + "core-js": "^3.8.2", + "global": "^4.4.0", + "regenerator-runtime": "^0.13.7" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/addons/node_modules/@storybook/router": { + "version": "6.3.12", + "integrity": "sha512-G/pNGCnrJRetCwyEZulHPT+YOcqEj/vkPVDTUfii2qgqukup6K0cjwgd7IukAURnAnnzTi1gmgFuEKUi8GE/KA==", + "dependencies": { + "@reach/router": "^1.3.4", + "@storybook/client-logger": "6.3.12", + "@types/reach__router": "^1.3.7", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/api": { + "version": "6.3.12", + "integrity": "sha512-LScRXUeCWEW/OP+jiooNMQICVdusv7azTmULxtm72fhkXFRiQs2CdRNTiqNg46JLLC9z95f1W+pGK66X6HiiQA==", + "dependencies": { + "@reach/router": "^1.3.4", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/csf": "0.0.1", + "@storybook/router": "6.3.12", + "@storybook/semver": "^7.3.2", + "@storybook/theming": "6.3.12", + "@types/reach__router": "^1.3.7", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "regenerator-runtime": "^0.13.7", + "store2": "^2.12.0", + "telejson": "^5.3.2", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/api/node_modules/@storybook/router": { + "version": "6.3.12", + "integrity": "sha512-G/pNGCnrJRetCwyEZulHPT+YOcqEj/vkPVDTUfii2qgqukup6K0cjwgd7IukAURnAnnzTi1gmgFuEKUi8GE/KA==", + "dependencies": { + "@reach/router": "^1.3.4", + "@storybook/client-logger": "6.3.12", + "@types/reach__router": "^1.3.7", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/channel-postmessage": { + "version": "6.3.12", + "integrity": "sha512-Ou/2Ga3JRTZ/4sSv7ikMgUgLTeZMsXXWLXuscz4oaYhmOqAU9CrJw0G1NitwBgK/+qC83lEFSLujHkWcoQDOKg==", + "dependencies": { + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "core-js": "^3.8.2", + "global": "^4.4.0", + "qs": "^6.10.0", + "telejson": "^5.3.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/channels": { + "version": "6.3.12", + "integrity": "sha512-l4sA+g1PdUV8YCbgs47fIKREdEQAKNdQIZw0b7BfTvY9t0x5yfBywgQhYON/lIeiNGz2OlIuD+VUtqYfCtNSyw==", + "dependencies": { + "core-js": "^3.8.2", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/client-logger": { + "version": "6.3.12", + "integrity": "sha512-zNDsamZvHnuqLznDdP9dUeGgQ9TyFh4ray3t1VGO7ZqWVZ2xtVCCXjDvMnOXI2ifMpX5UsrOvshIPeE9fMBmiQ==", + "dependencies": { + "core-js": "^3.8.2", + "global": "^4.4.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/components": { + "version": "6.3.12", + "integrity": "sha512-kdQt8toUjynYAxDLrJzuG7YSNL6as1wJoyzNUaCfG06YPhvIAlKo7le9tS2mThVFN5e9nbKrW3N1V1sp6ypZXQ==", + "dependencies": { + "@popperjs/core": "^2.6.0", + "@storybook/client-logger": "6.3.12", + "@storybook/csf": "0.0.1", + "@storybook/theming": "6.3.12", + "@types/color-convert": "^2.0.0", + "@types/overlayscrollbars": "^1.12.0", + "@types/react-syntax-highlighter": "11.0.5", + "color-convert": "^2.0.1", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "markdown-to-jsx": "^7.1.3", + "memoizerific": "^1.11.3", + "overlayscrollbars": "^1.13.1", + "polished": "^4.0.5", + "prop-types": "^15.7.2", + "react-colorful": "^5.1.2", + "react-popper-tooltip": "^3.1.1", + "react-syntax-highlighter": "^13.5.3", + "react-textarea-autosize": "^8.3.0", + "regenerator-runtime": "^0.13.7", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/components/node_modules/markdown-to-jsx": { + "version": "7.1.3", + "integrity": "sha512-jtQ6VyT7rMT5tPV0g2EJakEnXLiPksnvlYtwQsVVZ611JsWGN8bQ1tVSDX4s6JllfEH6wmsYxNjTUAMrPmNA8w==", + "engines": { + "node": ">= 10" + }, + "peerDependencies": { + "react": ">= 0.14.0" + } + }, + "node_modules/@storybook/components/node_modules/react-colorful": { + "version": "5.5.0", + "integrity": "sha512-BuzrlrM0ylg7coPkXOrRqlf2BgHLw5L44sybbr9Lg4xy7w9e5N7fGYbojOO0s8J0nvrM3PERN2rVFkvSa24lnQ==", + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@storybook/components/node_modules/react-popper-tooltip": { + "version": "3.1.1", + "integrity": "sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "@popperjs/core": "^2.5.4", + "react-popper": "^2.2.4" + }, + "peerDependencies": { + "react": "^16.6.0 || ^17.0.0", + "react-dom": "^16.6.0 || ^17.0.0" + } + }, + "node_modules/@storybook/components/node_modules/react-popper-tooltip/node_modules/react-popper": { + "version": "2.2.5", + "integrity": "sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==", + "dependencies": { + "react-fast-compare": "^3.0.1", + "warning": "^4.0.2" + }, + "peerDependencies": { + "@popperjs/core": "^2.0.0", + "react": "^16.8.0 || ^17" + } + }, + "node_modules/@storybook/components/node_modules/react-syntax-highlighter": { + "version": "13.5.3", + "integrity": "sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "highlight.js": "^10.1.1", + "lowlight": "^1.14.0", + "prismjs": "^1.21.0", + "refractor": "^3.1.0" + }, + "peerDependencies": { + "react": ">= 0.14.0" + } + }, + "node_modules/@storybook/components/node_modules/react-textarea-autosize": { + "version": "8.3.3", + "integrity": "sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==", + "dependencies": { + "@babel/runtime": "^7.10.2", + "use-composed-ref": "^1.0.0", + "use-latest": "^1.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/components/node_modules/react-textarea-autosize/node_modules/use-composed-ref": { + "version": "1.1.0", + "integrity": "sha512-my1lNHGWsSDAhhVAT4MKs6IjBUtG6ZG11uUqexPH9PptiIZDQOzaF4f5tEbJ2+7qvNbtXNBbU3SfmN+fXlWDhg==", + "dependencies": { + "ts-essentials": "^2.0.3" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/components/node_modules/react-textarea-autosize/node_modules/use-latest": { + "version": "1.2.0", + "integrity": "sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==", + "dependencies": { + "use-isomorphic-layout-effect": "^1.0.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@storybook/components/node_modules/react-textarea-autosize/node_modules/use-latest/node_modules/use-isomorphic-layout-effect": { + "version": "1.1.1", + "integrity": "sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@storybook/core-events": { + "version": "6.3.12", + "integrity": "sha512-SXfD7xUUMazaeFkB92qOTUV8Y/RghE4SkEYe5slAdjeocSaH7Nz2WV0rqNEgChg0AQc+JUI66no8L9g0+lw4Gw==", + "dependencies": { + "core-js": "^3.8.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/csf": { + "version": "0.0.1", + "integrity": "sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==", + "dependencies": { + "lodash": "^4.17.15" + } + }, + "node_modules/@storybook/csf-tools": { + "version": "6.3.12", + "integrity": "sha512-wNrX+99ajAXxLo0iRwrqw65MLvCV6SFC0XoPLYrtBvyKr+hXOOnzIhO2f5BNEii8velpC2gl2gcLKeacpVYLqA==", + "dependencies": { + "@babel/generator": "^7.12.11", + "@babel/parser": "^7.12.11", + "@babel/plugin-transform-react-jsx": "^7.12.12", + "@babel/preset-env": "^7.12.11", + "@babel/traverse": "^7.12.11", + "@babel/types": "^7.12.11", + "@mdx-js/mdx": "^1.6.22", + "@storybook/csf": "^0.0.1", + "core-js": "^3.8.2", + "fs-extra": "^9.0.1", + "js-string-escape": "^1.0.1", + "lodash": "^4.17.20", + "prettier": "~2.2.1", + "regenerator-runtime": "^0.13.7" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/csf-tools/node_modules/prettier": { + "version": "2.2.1", + "integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==", + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@storybook/node-logger": { + "version": "5.3.21", + "integrity": "sha512-8xibncy873JXePCK5MC0qem1MKtWI1Lc4hv6rwURSwYpZtkO7yElay3XAFGUSfz8qFJkoDBmMTxBR3fp4Dln7g==", + "dependencies": { + "@types/npmlog": "^4.1.2", + "chalk": "^3.0.0", + "core-js": "^3.0.1", + "npmlog": "^4.1.2", + "pretty-hrtime": "^1.0.3", + "regenerator-runtime": "^0.13.3" + } + }, + "node_modules/@storybook/node-logger/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@storybook/node-logger/node_modules/chalk": { + "version": "3.0.0", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/node-logger/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/node-logger/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/preset-typescript": { + "version": "3.0.0", + "integrity": "sha512-tEbFWg5h/8SPfSCNXPxyqY418704K14q5H/xb9t0ARMXK3kZPTkKqKvdTvYg3UEKBBYbc+GA57UWaL+9b+DbDg==", + "dependencies": { + "@babel/preset-typescript": "^7.8.3", + "@storybook/node-logger": "^5.3.17", + "@types/babel__core": "^7.1.6", + "babel-preset-typescript-vue": "^1.0.3", + "fork-ts-checker-webpack-plugin": "^4.1.0" + }, + "peerDependencies": { + "typescript": ">=3.4" + } + }, + "node_modules/@storybook/preset-typescript/node_modules/braces": { + "version": "2.3.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/preset-typescript/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/preset-typescript/node_modules/fill-range": { + "version": "4.0.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/preset-typescript/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/preset-typescript/node_modules/fork-ts-checker-webpack-plugin": { + "version": "4.1.6", + "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==", + "dependencies": { + "@babel/code-frame": "^7.5.5", + "chalk": "^2.4.1", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + }, + "engines": { + "node": ">=6.11.5", + "yarn": ">=1.0.0" + } + }, + "node_modules/@storybook/preset-typescript/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/preset-typescript/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/preset-typescript/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/preset-typescript/node_modules/micromatch": { + "version": "3.1.10", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/preset-typescript/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@storybook/preset-typescript/node_modules/tapable": { + "version": "1.1.3", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@storybook/preset-typescript/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/react": { + "version": "6.3.12", + "integrity": "sha512-c1Y/3/eNzye+ZRwQ3BXJux6pUMVt3lhv1/M9Qagl9JItP3jDSj5Ed3JHCgwEqpprP8mvNNXwEJ8+M7vEQyDuHg==", + "dependencies": { + "@babel/preset-flow": "^7.12.1", + "@babel/preset-react": "^7.12.10", + "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", + "@storybook/addons": "6.3.12", + "@storybook/core": "6.3.12", + "@storybook/core-common": "6.3.12", + "@storybook/node-logger": "6.3.12", + "@storybook/react-docgen-typescript-plugin": "1.0.2-canary.253f8c1.0", + "@storybook/semver": "^7.3.2", + "@types/webpack-env": "^1.16.0", + "babel-plugin-add-react-displayname": "^0.0.5", + "babel-plugin-named-asset-import": "^0.3.1", + "babel-plugin-react-docgen": "^4.2.1", + "core-js": "^3.8.2", + "global": "^4.4.0", + "lodash": "^4.17.20", + "prop-types": "^15.7.2", + "react-dev-utils": "^11.0.3", + "react-refresh": "^0.8.3", + "read-pkg-up": "^7.0.1", + "regenerator-runtime": "^0.13.7", + "ts-dedent": "^2.0.0", + "webpack": "4" + }, + "bin": { + "build-storybook": "bin/build.js", + "start-storybook": "bin/index.js", + "storybook-server": "bin/index.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "@babel/core": "^7.11.5", + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/react-docgen-typescript-plugin": { + "version": "1.0.2-canary.253f8c1.0", + "integrity": "sha512-mmoRG/rNzAiTbh+vGP8d57dfcR2aP+5/Ll03KKFyfy5FqWFm/Gh7u27ikx1I3LmVMI8n6jh5SdWMkMKon7/tDw==", + "dependencies": { + "debug": "^4.1.1", + "endent": "^2.0.1", + "find-cache-dir": "^3.3.1", + "flat-cache": "^3.0.4", + "micromatch": "^4.0.2", + "react-docgen-typescript": "^2.0.0", + "tslib": "^2.0.0" + }, + "peerDependencies": { + "typescript": ">= 3.x", + "webpack": ">= 4" + } + }, + "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/find-cache-dir": { + "version": "3.3.2", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/make-dir": { + "version": "3.1.0", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/pkg-dir": { + "version": "4.2.0", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/react-docgen-typescript-plugin/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@storybook/react/node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.1.5", + "integrity": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "node_modules/@storybook/react/node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@storybook/react/node_modules/@emotion/cache": { + "version": "10.0.29", + "integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==", + "dependencies": { + "@emotion/sheet": "0.9.4", + "@emotion/stylis": "0.8.5", + "@emotion/utils": "0.11.3", + "@emotion/weak-memoize": "0.2.5" + } + }, + "node_modules/@storybook/react/node_modules/@emotion/memoize": { + "version": "0.7.4", + "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + }, + "node_modules/@storybook/react/node_modules/@emotion/serialize": { + "version": "0.11.16", + "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", + "dependencies": { + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/unitless": "0.7.5", + "@emotion/utils": "0.11.3", + "csstype": "^2.5.7" + } + }, + "node_modules/@storybook/react/node_modules/@emotion/sheet": { + "version": "0.9.4", + "integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==" + }, + "node_modules/@storybook/react/node_modules/@emotion/utils": { + "version": "0.11.3", + "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + }, + "node_modules/@storybook/react/node_modules/@storybook/core": { + "version": "6.3.12", + "integrity": "sha512-FJm2ns8wk85hXWKslLWiUWRWwS9KWRq7jlkN6M9p57ghFseSGr4W71Orcoab4P3M7jI97l5yqBfppbscinE74g==", + "dependencies": { + "@storybook/core-client": "6.3.12", + "@storybook/core-server": "6.3.12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "@storybook/builder-webpack5": "6.3.12", + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "@storybook/builder-webpack5": { + "optional": true + }, + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core-common": { + "version": "6.3.12", + "integrity": "sha512-xlHs2QXELq/moB4MuXjYOczaxU64BIseHsnFBLyboJYN6Yso3qihW5RB7cuJlGohkjb4JwY74dvfT4Ww66rkBA==", + "dependencies": { + "@babel/core": "^7.12.10", + "@babel/plugin-proposal-class-properties": "^7.12.1", + "@babel/plugin-proposal-decorators": "^7.12.12", + "@babel/plugin-proposal-export-default-from": "^7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", + "@babel/plugin-proposal-object-rest-spread": "^7.12.1", + "@babel/plugin-proposal-optional-chaining": "^7.12.7", + "@babel/plugin-proposal-private-methods": "^7.12.1", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-arrow-functions": "^7.12.1", + "@babel/plugin-transform-block-scoping": "^7.12.12", + "@babel/plugin-transform-classes": "^7.12.1", + "@babel/plugin-transform-destructuring": "^7.12.1", + "@babel/plugin-transform-for-of": "^7.12.1", + "@babel/plugin-transform-parameters": "^7.12.1", + "@babel/plugin-transform-shorthand-properties": "^7.12.1", + "@babel/plugin-transform-spread": "^7.12.1", + "@babel/preset-env": "^7.12.11", + "@babel/preset-react": "^7.12.10", + "@babel/preset-typescript": "^7.12.7", + "@babel/register": "^7.12.1", + "@storybook/node-logger": "6.3.12", + "@storybook/semver": "^7.3.2", + "@types/glob-base": "^0.3.0", + "@types/micromatch": "^4.0.1", + "@types/node": "^14.0.10", + "@types/pretty-hrtime": "^1.0.0", + "babel-loader": "^8.2.2", + "babel-plugin-macros": "^3.0.1", + "babel-plugin-polyfill-corejs3": "^0.1.0", + "chalk": "^4.1.0", + "core-js": "^3.8.2", + "express": "^4.17.1", + "file-system-cache": "^1.0.5", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.0.4", + "glob": "^7.1.6", + "glob-base": "^0.3.0", + "interpret": "^2.2.0", + "json5": "^2.1.3", + "lazy-universal-dotenv": "^3.0.1", + "micromatch": "^4.0.2", + "pkg-dir": "^5.0.0", + "pretty-hrtime": "^1.0.3", + "resolve-from": "^5.0.0", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2", + "webpack": "4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-client": { + "version": "6.3.12", + "integrity": "sha512-8Smd9BgZHJpAdevLKQYinwtjSyCZAuBMoetP4P5hnn53mWl0NFbrHFaAdT+yNchDLZQUbf7Y18VmIqEH+RCR5w==", + "dependencies": { + "@storybook/addons": "6.3.12", + "@storybook/channel-postmessage": "6.3.12", + "@storybook/client-api": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/csf": "0.0.1", + "@storybook/ui": "6.3.12", + "airbnb-js-shims": "^2.2.1", + "ansi-to-html": "^0.6.11", + "core-js": "^3.8.2", + "global": "^4.4.0", + "lodash": "^4.17.20", + "qs": "^6.10.0", + "regenerator-runtime": "^0.13.7", + "ts-dedent": "^2.0.0", + "unfetch": "^4.2.0", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0", + "webpack": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-client/node_modules/@storybook/client-api": { + "version": "6.3.12", + "integrity": "sha512-xnW+lKKK2T774z+rOr9Wopt1aYTStfb86PSs9p3Fpnc2Btcftln+C3NtiHZl8Ccqft8Mz/chLGgewRui6tNI8g==", + "dependencies": { + "@storybook/addons": "6.3.12", + "@storybook/channel-postmessage": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/csf": "0.0.1", + "@types/qs": "^6.9.5", + "@types/webpack-env": "^1.16.0", + "core-js": "^3.8.2", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "regenerator-runtime": "^0.13.7", + "stable": "^0.1.8", + "store2": "^2.12.0", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-client/node_modules/@storybook/ui": { + "version": "6.3.12", + "integrity": "sha512-PC2yEz4JMfarq7rUFbeA3hCA+31p5es7YPEtxLRvRwIZhtL0P4zQUfHpotb3KgWdoAIfZesAuoIQwMPQmEFYrw==", + "dependencies": { + "@emotion/core": "^10.1.1", + "@storybook/addons": "6.3.12", + "@storybook/api": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/components": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/router": "6.3.12", + "@storybook/semver": "^7.3.2", + "@storybook/theming": "6.3.12", + "@types/markdown-to-jsx": "^6.11.3", + "copy-to-clipboard": "^3.3.1", + "core-js": "^3.8.2", + "core-js-pure": "^3.8.2", + "downshift": "^6.0.15", + "emotion-theming": "^10.0.27", + "fuse.js": "^3.6.1", + "global": "^4.4.0", + "lodash": "^4.17.20", + "markdown-to-jsx": "^6.11.4", + "memoizerific": "^1.11.3", + "polished": "^4.0.5", + "qs": "^6.10.0", + "react-draggable": "^4.4.3", + "react-helmet-async": "^1.0.7", + "react-sizeme": "^3.0.1", + "regenerator-runtime": "^0.13.7", + "resolve-from": "^5.0.0", + "store2": "^2.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-client/node_modules/@storybook/ui/node_modules/@emotion/core": { + "version": "10.1.1", + "integrity": "sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@emotion/cache": "^10.0.27", + "@emotion/css": "^10.0.27", + "@emotion/serialize": "^0.11.15", + "@emotion/sheet": "0.9.4", + "@emotion/utils": "0.11.3" + }, + "peerDependencies": { + "react": ">=16.3.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-client/node_modules/@storybook/ui/node_modules/@storybook/router": { + "version": "6.3.12", + "integrity": "sha512-G/pNGCnrJRetCwyEZulHPT+YOcqEj/vkPVDTUfii2qgqukup6K0cjwgd7IukAURnAnnzTi1gmgFuEKUi8GE/KA==", + "dependencies": { + "@reach/router": "^1.3.4", + "@storybook/client-logger": "6.3.12", + "@types/reach__router": "^1.3.7", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-client/node_modules/@storybook/ui/node_modules/downshift": { + "version": "6.1.7", + "integrity": "sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==", + "dependencies": { + "@babel/runtime": "^7.14.8", + "compute-scroll-into-view": "^1.0.17", + "prop-types": "^15.7.2", + "react-is": "^17.0.2", + "tslib": "^2.3.0" + }, + "peerDependencies": { + "react": ">=16.12.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-client/node_modules/@storybook/ui/node_modules/emotion-theming": { + "version": "10.0.27", + "integrity": "sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@emotion/weak-memoize": "0.2.5", + "hoist-non-react-statics": "^3.3.0" + }, + "peerDependencies": { + "@emotion/core": "^10.0.27", + "react": ">=16.3.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-client/node_modules/@storybook/ui/node_modules/markdown-to-jsx": { + "version": "6.11.4", + "integrity": "sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==", + "dependencies": { + "prop-types": "^15.6.2", + "unquote": "^1.1.0" + }, + "engines": { + "node": ">= 4" + }, + "peerDependencies": { + "react": ">= 0.14.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-client/node_modules/@storybook/ui/node_modules/react-draggable": { + "version": "4.4.4", + "integrity": "sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==", + "dependencies": { + "clsx": "^1.1.1", + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "react": ">= 16.3.0", + "react-dom": ">= 16.3.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-client/node_modules/@storybook/ui/node_modules/react-helmet-async": { + "version": "1.1.2", + "integrity": "sha512-LTTzDDkyIleT/JJ6T/uqx7Y8qi1EuPPSiJawQY/nHHz0h7SPDT6HxP1YDDQx/fzcVxCqpWEEMS3QdrSrNkJYhg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "invariant": "^2.2.4", + "prop-types": "^15.7.2", + "react-fast-compare": "^3.2.0", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": "^16.6.0 || ^17.0.0", + "react-dom": "^16.6.0 || ^17.0.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server": { + "version": "6.3.12", + "integrity": "sha512-T/Mdyi1FVkUycdyOnhXvoo3d9nYXLQFkmaJkltxBFLzAePAJUSgAsPL9odNC3+p8Nr2/UDsDzvu/Ow0IF0mzLQ==", + "dependencies": { + "@discoveryjs/json-ext": "^0.5.3", + "@storybook/builder-webpack4": "6.3.12", + "@storybook/core-client": "6.3.12", + "@storybook/core-common": "6.3.12", + "@storybook/csf-tools": "6.3.12", + "@storybook/manager-webpack4": "6.3.12", + "@storybook/node-logger": "6.3.12", + "@storybook/semver": "^7.3.2", + "@types/node": "^14.0.10", + "@types/node-fetch": "^2.5.7", + "@types/pretty-hrtime": "^1.0.0", + "@types/webpack": "^4.41.26", + "better-opn": "^2.1.1", + "boxen": "^4.2.0", + "chalk": "^4.1.0", + "cli-table3": "0.6.0", + "commander": "^6.2.1", + "compression": "^1.7.4", + "core-js": "^3.8.2", + "cpy": "^8.1.1", + "detect-port": "^1.3.0", + "express": "^4.17.1", + "file-system-cache": "^1.0.5", + "fs-extra": "^9.0.1", + "globby": "^11.0.2", + "ip": "^1.1.5", + "node-fetch": "^2.6.1", + "pretty-hrtime": "^1.0.3", + "prompts": "^2.4.0", + "regenerator-runtime": "^0.13.7", + "serve-favicon": "^2.5.0", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2", + "webpack": "4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "@storybook/builder-webpack5": "6.3.12", + "@storybook/manager-webpack5": "6.3.12", + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "@storybook/builder-webpack5": { + "optional": true + }, + "@storybook/manager-webpack5": { + "optional": true + }, + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/builder-webpack4": { + "version": "6.3.12", + "integrity": "sha512-Dlm5Fc1svqpFDnVPZdAaEBiM/IDZHMV3RfEGbUTY/ZC0q8b/Ug1czzp/w0aTIjOFRuBDcG6IcplikaqHL8CJLg==", + "dependencies": { + "@babel/core": "^7.12.10", + "@babel/plugin-proposal-class-properties": "^7.12.1", + "@babel/plugin-proposal-decorators": "^7.12.12", + "@babel/plugin-proposal-export-default-from": "^7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", + "@babel/plugin-proposal-object-rest-spread": "^7.12.1", + "@babel/plugin-proposal-optional-chaining": "^7.12.7", + "@babel/plugin-proposal-private-methods": "^7.12.1", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-arrow-functions": "^7.12.1", + "@babel/plugin-transform-block-scoping": "^7.12.12", + "@babel/plugin-transform-classes": "^7.12.1", + "@babel/plugin-transform-destructuring": "^7.12.1", + "@babel/plugin-transform-for-of": "^7.12.1", + "@babel/plugin-transform-parameters": "^7.12.1", + "@babel/plugin-transform-shorthand-properties": "^7.12.1", + "@babel/plugin-transform-spread": "^7.12.1", + "@babel/plugin-transform-template-literals": "^7.12.1", + "@babel/preset-env": "^7.12.11", + "@babel/preset-react": "^7.12.10", + "@babel/preset-typescript": "^7.12.7", + "@storybook/addons": "6.3.12", + "@storybook/api": "6.3.12", + "@storybook/channel-postmessage": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-api": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/components": "6.3.12", + "@storybook/core-common": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/node-logger": "6.3.12", + "@storybook/router": "6.3.12", + "@storybook/semver": "^7.3.2", + "@storybook/theming": "6.3.12", + "@storybook/ui": "6.3.12", + "@types/node": "^14.0.10", + "@types/webpack": "^4.41.26", + "autoprefixer": "^9.8.6", + "babel-loader": "^8.2.2", + "babel-plugin-macros": "^2.8.0", + "babel-plugin-polyfill-corejs3": "^0.1.0", + "case-sensitive-paths-webpack-plugin": "^2.3.0", + "core-js": "^3.8.2", + "css-loader": "^3.6.0", + "dotenv-webpack": "^1.8.0", + "file-loader": "^6.2.0", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^4.1.6", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "glob-promise": "^3.4.0", + "global": "^4.4.0", + "html-webpack-plugin": "^4.0.0", + "pnp-webpack-plugin": "1.6.4", + "postcss": "^7.0.36", + "postcss-flexbugs-fixes": "^4.2.1", + "postcss-loader": "^4.2.0", + "raw-loader": "^4.0.2", + "react-dev-utils": "^11.0.3", + "stable": "^0.1.8", + "style-loader": "^1.3.0", + "terser-webpack-plugin": "^4.2.3", + "ts-dedent": "^2.0.0", + "url-loader": "^4.1.1", + "util-deprecate": "^1.0.2", + "webpack": "4", + "webpack-dev-middleware": "^3.7.3", + "webpack-filter-warnings-plugin": "^1.2.1", + "webpack-hot-middleware": "^2.25.0", + "webpack-virtual-modules": "^0.2.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/builder-webpack4/node_modules/@storybook/client-api": { + "version": "6.3.12", + "integrity": "sha512-xnW+lKKK2T774z+rOr9Wopt1aYTStfb86PSs9p3Fpnc2Btcftln+C3NtiHZl8Ccqft8Mz/chLGgewRui6tNI8g==", + "dependencies": { + "@storybook/addons": "6.3.12", + "@storybook/channel-postmessage": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/csf": "0.0.1", + "@types/qs": "^6.9.5", + "@types/webpack-env": "^1.16.0", + "core-js": "^3.8.2", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "regenerator-runtime": "^0.13.7", + "stable": "^0.1.8", + "store2": "^2.12.0", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/builder-webpack4/node_modules/@storybook/router": { + "version": "6.3.12", + "integrity": "sha512-G/pNGCnrJRetCwyEZulHPT+YOcqEj/vkPVDTUfii2qgqukup6K0cjwgd7IukAURnAnnzTi1gmgFuEKUi8GE/KA==", + "dependencies": { + "@reach/router": "^1.3.4", + "@storybook/client-logger": "6.3.12", + "@types/reach__router": "^1.3.7", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/builder-webpack4/node_modules/@storybook/ui": { + "version": "6.3.12", + "integrity": "sha512-PC2yEz4JMfarq7rUFbeA3hCA+31p5es7YPEtxLRvRwIZhtL0P4zQUfHpotb3KgWdoAIfZesAuoIQwMPQmEFYrw==", + "dependencies": { + "@emotion/core": "^10.1.1", + "@storybook/addons": "6.3.12", + "@storybook/api": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/components": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/router": "6.3.12", + "@storybook/semver": "^7.3.2", + "@storybook/theming": "6.3.12", + "@types/markdown-to-jsx": "^6.11.3", + "copy-to-clipboard": "^3.3.1", + "core-js": "^3.8.2", + "core-js-pure": "^3.8.2", + "downshift": "^6.0.15", + "emotion-theming": "^10.0.27", + "fuse.js": "^3.6.1", + "global": "^4.4.0", + "lodash": "^4.17.20", + "markdown-to-jsx": "^6.11.4", + "memoizerific": "^1.11.3", + "polished": "^4.0.5", + "qs": "^6.10.0", + "react-draggable": "^4.4.3", + "react-helmet-async": "^1.0.7", + "react-sizeme": "^3.0.1", + "regenerator-runtime": "^0.13.7", + "resolve-from": "^5.0.0", + "store2": "^2.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/builder-webpack4/node_modules/@storybook/ui/node_modules/@emotion/core": { + "version": "10.1.1", + "integrity": "sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@emotion/cache": "^10.0.27", + "@emotion/css": "^10.0.27", + "@emotion/serialize": "^0.11.15", + "@emotion/sheet": "0.9.4", + "@emotion/utils": "0.11.3" + }, + "peerDependencies": { + "react": ">=16.3.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/builder-webpack4/node_modules/@storybook/ui/node_modules/downshift": { + "version": "6.1.7", + "integrity": "sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==", + "dependencies": { + "@babel/runtime": "^7.14.8", + "compute-scroll-into-view": "^1.0.17", + "prop-types": "^15.7.2", + "react-is": "^17.0.2", + "tslib": "^2.3.0" + }, + "peerDependencies": { + "react": ">=16.12.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/builder-webpack4/node_modules/@storybook/ui/node_modules/emotion-theming": { + "version": "10.0.27", + "integrity": "sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@emotion/weak-memoize": "0.2.5", + "hoist-non-react-statics": "^3.3.0" + }, + "peerDependencies": { + "@emotion/core": "^10.0.27", + "react": ">=16.3.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/builder-webpack4/node_modules/@storybook/ui/node_modules/markdown-to-jsx": { + "version": "6.11.4", + "integrity": "sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==", + "dependencies": { + "prop-types": "^15.6.2", + "unquote": "^1.1.0" + }, + "engines": { + "node": ">= 4" + }, + "peerDependencies": { + "react": ">= 0.14.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/builder-webpack4/node_modules/@storybook/ui/node_modules/react-draggable": { + "version": "4.4.4", + "integrity": "sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==", + "dependencies": { + "clsx": "^1.1.1", + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "react": ">= 16.3.0", + "react-dom": ">= 16.3.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/builder-webpack4/node_modules/@storybook/ui/node_modules/react-helmet-async": { + "version": "1.1.2", + "integrity": "sha512-LTTzDDkyIleT/JJ6T/uqx7Y8qi1EuPPSiJawQY/nHHz0h7SPDT6HxP1YDDQx/fzcVxCqpWEEMS3QdrSrNkJYhg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "invariant": "^2.2.4", + "prop-types": "^15.7.2", + "react-fast-compare": "^3.2.0", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": "^16.6.0 || ^17.0.0", + "react-dom": "^16.6.0 || ^17.0.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/manager-webpack4": { + "version": "6.3.12", + "integrity": "sha512-OkPYNrHXg2yZfKmEfTokP6iKx4OLTr0gdI5yehi/bLEuQCSHeruxBc70Dxm1GBk1Mrf821wD9WqMXNDjY5Qtug==", + "dependencies": { + "@babel/core": "^7.12.10", + "@babel/plugin-transform-template-literals": "^7.12.1", + "@babel/preset-react": "^7.12.10", + "@storybook/addons": "6.3.12", + "@storybook/core-client": "6.3.12", + "@storybook/core-common": "6.3.12", + "@storybook/node-logger": "6.3.12", + "@storybook/theming": "6.3.12", + "@storybook/ui": "6.3.12", + "@types/node": "^14.0.10", + "@types/webpack": "^4.41.26", + "babel-loader": "^8.2.2", + "case-sensitive-paths-webpack-plugin": "^2.3.0", + "chalk": "^4.1.0", + "core-js": "^3.8.2", + "css-loader": "^3.6.0", + "dotenv-webpack": "^1.8.0", + "express": "^4.17.1", + "file-loader": "^6.2.0", + "file-system-cache": "^1.0.5", + "find-up": "^5.0.0", + "fs-extra": "^9.0.1", + "html-webpack-plugin": "^4.0.0", + "node-fetch": "^2.6.1", + "pnp-webpack-plugin": "1.6.4", + "read-pkg-up": "^7.0.1", + "regenerator-runtime": "^0.13.7", + "resolve-from": "^5.0.0", + "style-loader": "^1.3.0", + "telejson": "^5.3.2", + "terser-webpack-plugin": "^4.2.3", + "ts-dedent": "^2.0.0", + "url-loader": "^4.1.1", + "util-deprecate": "^1.0.2", + "webpack": "4", + "webpack-dev-middleware": "^3.7.3", + "webpack-virtual-modules": "^0.2.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/manager-webpack4/node_modules/@storybook/ui": { + "version": "6.3.12", + "integrity": "sha512-PC2yEz4JMfarq7rUFbeA3hCA+31p5es7YPEtxLRvRwIZhtL0P4zQUfHpotb3KgWdoAIfZesAuoIQwMPQmEFYrw==", + "dependencies": { + "@emotion/core": "^10.1.1", + "@storybook/addons": "6.3.12", + "@storybook/api": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/components": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/router": "6.3.12", + "@storybook/semver": "^7.3.2", + "@storybook/theming": "6.3.12", + "@types/markdown-to-jsx": "^6.11.3", + "copy-to-clipboard": "^3.3.1", + "core-js": "^3.8.2", + "core-js-pure": "^3.8.2", + "downshift": "^6.0.15", + "emotion-theming": "^10.0.27", + "fuse.js": "^3.6.1", + "global": "^4.4.0", + "lodash": "^4.17.20", + "markdown-to-jsx": "^6.11.4", + "memoizerific": "^1.11.3", + "polished": "^4.0.5", + "qs": "^6.10.0", + "react-draggable": "^4.4.3", + "react-helmet-async": "^1.0.7", + "react-sizeme": "^3.0.1", + "regenerator-runtime": "^0.13.7", + "resolve-from": "^5.0.0", + "store2": "^2.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/manager-webpack4/node_modules/@storybook/ui/node_modules/@emotion/core": { + "version": "10.1.1", + "integrity": "sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@emotion/cache": "^10.0.27", + "@emotion/css": "^10.0.27", + "@emotion/serialize": "^0.11.15", + "@emotion/sheet": "0.9.4", + "@emotion/utils": "0.11.3" + }, + "peerDependencies": { + "react": ">=16.3.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/manager-webpack4/node_modules/@storybook/ui/node_modules/@storybook/router": { + "version": "6.3.12", + "integrity": "sha512-G/pNGCnrJRetCwyEZulHPT+YOcqEj/vkPVDTUfii2qgqukup6K0cjwgd7IukAURnAnnzTi1gmgFuEKUi8GE/KA==", + "dependencies": { + "@reach/router": "^1.3.4", + "@storybook/client-logger": "6.3.12", + "@types/reach__router": "^1.3.7", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/manager-webpack4/node_modules/@storybook/ui/node_modules/downshift": { + "version": "6.1.7", + "integrity": "sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==", + "dependencies": { + "@babel/runtime": "^7.14.8", + "compute-scroll-into-view": "^1.0.17", + "prop-types": "^15.7.2", + "react-is": "^17.0.2", + "tslib": "^2.3.0" + }, + "peerDependencies": { + "react": ">=16.12.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/manager-webpack4/node_modules/@storybook/ui/node_modules/emotion-theming": { + "version": "10.0.27", + "integrity": "sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@emotion/weak-memoize": "0.2.5", + "hoist-non-react-statics": "^3.3.0" + }, + "peerDependencies": { + "@emotion/core": "^10.0.27", + "react": ">=16.3.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/manager-webpack4/node_modules/@storybook/ui/node_modules/markdown-to-jsx": { + "version": "6.11.4", + "integrity": "sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==", + "dependencies": { + "prop-types": "^15.6.2", + "unquote": "^1.1.0" + }, + "engines": { + "node": ">= 4" + }, + "peerDependencies": { + "react": ">= 0.14.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/manager-webpack4/node_modules/@storybook/ui/node_modules/react-draggable": { + "version": "4.4.4", + "integrity": "sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==", + "dependencies": { + "clsx": "^1.1.1", + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "react": ">= 16.3.0", + "react-dom": ">= 16.3.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/@storybook/core-server/node_modules/@storybook/manager-webpack4/node_modules/@storybook/ui/node_modules/react-helmet-async": { + "version": "1.1.2", + "integrity": "sha512-LTTzDDkyIleT/JJ6T/uqx7Y8qi1EuPPSiJawQY/nHHz0h7SPDT6HxP1YDDQx/fzcVxCqpWEEMS3QdrSrNkJYhg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "invariant": "^2.2.4", + "prop-types": "^15.7.2", + "react-fast-compare": "^3.2.0", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": "^16.6.0 || ^17.0.0", + "react-dom": "^16.6.0 || ^17.0.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/ansi-styles": { + "version": "3.2.1", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/babel-plugin-macros": { + "version": "2.8.0", + "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "dependencies": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/color-convert": { + "version": "1.9.3", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/cosmiconfig": { + "version": "6.0.0", + "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" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/fork-ts-checker-webpack-plugin": { + "version": "4.1.6", + "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==", + "dependencies": { + "@babel/code-frame": "^7.5.5", + "chalk": "^2.4.1", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + }, + "engines": { + "node": ">=6.11.5", + "yarn": ">=1.0.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "2.4.2", + "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" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/has-flag": { + "version": "3.0.0", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/micromatch": { + "version": "3.1.10", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/core/node_modules/supports-color": { + "version": "5.5.0", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@storybook/react/node_modules/@storybook/node-logger": { + "version": "6.3.12", + "integrity": "sha512-iktOem/Ls2+dsZY9PhPeC6T1QhX/y7OInP88neLsqEPEbB2UXca3Ydv7OZBhBVbvN25W45b05MRzbtNUxYLNRw==", + "dependencies": { + "@types/npmlog": "^4.1.2", + "chalk": "^4.1.0", + "core-js": "^3.8.2", + "npmlog": "^4.1.2", + "pretty-hrtime": "^1.0.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/react/node_modules/@types/node": { + "version": "14.17.27", + "integrity": "sha512-94+Ahf9IcaDuJTle/2b+wzvjmutxXAEXU6O81JHblYXUg2BDG+dnBy7VxIPHKAyEEDHzCMQydTJuWvrE+Aanzw==" + }, + "node_modules/@storybook/react/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@storybook/react/node_modules/babel-plugin-macros": { + "version": "3.1.0", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/@storybook/react/node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.1.7", + "integrity": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.1.5", + "core-js-compat": "^3.8.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@storybook/react/node_modules/braces": { + "version": "2.3.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/react/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/react/node_modules/cacache": { + "version": "15.3.0", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "dependencies": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@storybook/react/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@storybook/react/node_modules/chownr": { + "version": "2.0.0", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/react/node_modules/color-name": { + "version": "1.1.3", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "node_modules/@storybook/react/node_modules/commander": { + "version": "6.2.1", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@storybook/react/node_modules/cosmiconfig": { + "version": "7.0.1", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/react/node_modules/escape-string-regexp": { + "version": "1.0.5", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@storybook/react/node_modules/fill-range": { + "version": "4.0.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/react/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/react/node_modules/find-cache-dir": { + "version": "3.3.2", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/@storybook/react/node_modules/find-cache-dir/node_modules/find-up": { + "version": "4.1.0", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/react/node_modules/find-cache-dir/node_modules/locate-path": { + "version": "5.0.0", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/react/node_modules/find-cache-dir/node_modules/p-limit": { + "version": "2.3.0", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/react/node_modules/find-cache-dir/node_modules/p-locate": { + "version": "4.1.0", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/react/node_modules/find-cache-dir/node_modules/pkg-dir": { + "version": "4.2.0", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/react/node_modules/find-up": { + "version": "5.0.0", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/react/node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.3.5", + "integrity": "sha512-B0yvzgiVN/LerXUvqcVAgjFCJD4R6h460ULJ+pl+oaiYfZM0Cq03uL6sxMHXqp/CVDm0QznHsNjtYwBBYpe0Pw==", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "node_modules/@storybook/react/node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "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" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/react/node_modules/fs-minipass": { + "version": "2.1.0", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@storybook/react/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/react/node_modules/interpret": { + "version": "2.2.0", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/@storybook/react/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/react/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/react/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/react/node_modules/locate-path": { + "version": "6.0.0", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/react/node_modules/make-dir": { + "version": "3.1.0", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/react/node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@storybook/react/node_modules/minipass": { + "version": "3.1.5", + "integrity": "sha512-+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/react/node_modules/minizlib": { + "version": "2.1.2", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@storybook/react/node_modules/mkdirp": { + "version": "1.0.4", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/react/node_modules/node-fetch": { + "version": "2.6.5", + "integrity": "sha512-mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + } + }, + "node_modules/@storybook/react/node_modules/p-locate": { + "version": "5.0.0", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/react/node_modules/p-map": { + "version": "4.0.0", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/react/node_modules/parse-json": { + "version": "5.2.0", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/react/node_modules/pkg-dir": { + "version": "5.0.0", + "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", + "dependencies": { + "find-up": "^5.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/react/node_modules/react-is": { + "version": "17.0.2", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "node_modules/@storybook/react/node_modules/schema-utils": { + "version": "2.7.0", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/@storybook/react/node_modules/serialize-javascript": { + "version": "5.0.1", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/@storybook/react/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/react/node_modules/ssri": { + "version": "8.0.1", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@storybook/react/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/react/node_modules/tapable": { + "version": "1.1.3", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@storybook/react/node_modules/tar": { + "version": "6.1.11", + "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@storybook/react/node_modules/terser": { + "version": "5.9.0", + "integrity": "sha512-h5hxa23sCdpzcye/7b8YqbE5OwKca/ni0RQz1uRX3tGh8haaGHqcuSqbGRybuAKNdntZ0mDgFNXPJ48xQ2RXKQ==", + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/react/node_modules/terser-webpack-plugin": { + "version": "4.2.3", + "integrity": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==", + "dependencies": { + "cacache": "^15.0.5", + "find-cache-dir": "^3.3.1", + "jest-worker": "^26.5.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1", + "terser": "^5.3.4", + "webpack-sources": "^1.4.3" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/@storybook/react/node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/@storybook/react/node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/@storybook/react/node_modules/terser/node_modules/source-map": { + "version": "0.7.3", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@storybook/react/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@storybook/react/node_modules/tr46": { + "version": "0.0.3", + "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" + }, + "node_modules/@storybook/react/node_modules/webidl-conversions": { + "version": "3.0.1", + "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" + }, + "node_modules/@storybook/react/node_modules/whatwg-url": { + "version": "5.0.0", + "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/@storybook/semver": { + "version": "7.3.2", + "integrity": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==", + "dependencies": { + "core-js": "^3.6.5", + "find-up": "^4.1.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/theming": { + "version": "6.3.12", + "integrity": "sha512-wOJdTEa/VFyFB2UyoqyYGaZdym6EN7RALuQOAMT6zHA282FBmKw8nL5DETHEbctpnHdcrMC/391teK4nNSrdOA==", + "dependencies": { + "@emotion/core": "^10.1.1", + "@emotion/is-prop-valid": "^0.8.6", + "@emotion/styled": "^10.0.27", + "@storybook/client-logger": "6.3.12", + "core-js": "^3.8.2", + "deep-object-diff": "^1.1.0", + "emotion-theming": "^10.0.27", + "global": "^4.4.0", + "memoizerific": "^1.11.3", + "polished": "^4.0.5", + "resolve-from": "^5.0.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@storybook/theming/node_modules/@emotion/cache": { + "version": "10.0.29", + "integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==", + "dependencies": { + "@emotion/sheet": "0.9.4", + "@emotion/stylis": "0.8.5", + "@emotion/utils": "0.11.3", + "@emotion/weak-memoize": "0.2.5" + } + }, + "node_modules/@storybook/theming/node_modules/@emotion/core": { + "version": "10.1.1", + "integrity": "sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@emotion/cache": "^10.0.27", + "@emotion/css": "^10.0.27", + "@emotion/serialize": "^0.11.15", + "@emotion/sheet": "0.9.4", + "@emotion/utils": "0.11.3" + }, + "peerDependencies": { + "react": ">=16.3.0" + } + }, + "node_modules/@storybook/theming/node_modules/@emotion/is-prop-valid": { + "version": "0.8.8", + "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", + "dependencies": { + "@emotion/memoize": "0.7.4" + } + }, + "node_modules/@storybook/theming/node_modules/@emotion/memoize": { + "version": "0.7.4", + "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + }, + "node_modules/@storybook/theming/node_modules/@emotion/serialize": { + "version": "0.11.16", + "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", + "dependencies": { + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/unitless": "0.7.5", + "@emotion/utils": "0.11.3", + "csstype": "^2.5.7" + } + }, + "node_modules/@storybook/theming/node_modules/@emotion/sheet": { + "version": "0.9.4", + "integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==" + }, + "node_modules/@storybook/theming/node_modules/@emotion/styled": { + "version": "10.0.27", + "integrity": "sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==", + "dependencies": { + "@emotion/styled-base": "^10.0.27", + "babel-plugin-emotion": "^10.0.27" + }, + "peerDependencies": { + "@emotion/core": "^10.0.27", + "react": ">=16.3.0" + } + }, + "node_modules/@storybook/theming/node_modules/@emotion/styled/node_modules/@emotion/styled-base": { + "version": "10.0.31", + "integrity": "sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@emotion/is-prop-valid": "0.8.8", + "@emotion/serialize": "^0.11.15", + "@emotion/utils": "0.11.3" + }, + "peerDependencies": { + "@emotion/core": "^10.0.28", + "react": ">=16.3.0" + } + }, + "node_modules/@storybook/theming/node_modules/@emotion/utils": { + "version": "0.11.3", + "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + }, + "node_modules/@storybook/theming/node_modules/emotion-theming": { + "version": "10.0.27", + "integrity": "sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@emotion/weak-memoize": "0.2.5", + "hoist-non-react-statics": "^3.3.0" + }, + "peerDependencies": { + "@emotion/core": "^10.0.27", + "react": ">=16.3.0" + } + }, + "node_modules/@superset-ui/chart-controls": { + "resolved": "packages/superset-ui-chart-controls", + "link": true + }, + "node_modules/@superset-ui/commit-config": { + "version": "0.0.9", + "integrity": "sha512-5gOGvjvPEz1oyemLBLB9eYpbuVAPiSgiqcs42rv7yUx49+RiA1ijql0n+4G8HHp5Zg+Qjtn8cjhDYZXRdy4P3w==", + "dependencies": { + "@commitlint/cli": "^7.5.2", + "@commitlint/config-conventional": "^7.5.0", + "@commitlint/config-lerna-scopes": "^7.5.1", + "commitizen": "^3.0.7", + "conventional-changelog": "^3.0.6", + "conventional-changelog-cli": "^2.0.12", + "cz-conventional-changelog": "^2.1.0" + }, + "bin": { + "superset-commit": "commit-cli.js" + } + }, + "node_modules/@superset-ui/core": { + "resolved": "packages/superset-ui-core", + "link": true + }, + "node_modules/@superset-ui/demo": { + "resolved": "packages/superset-ui-demo", + "link": true + }, + "node_modules/@superset-ui/generator-superset": { + "resolved": "packages/generator-superset", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-calendar": { + "resolved": "plugins/legacy-plugin-chart-calendar", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-chord": { + "resolved": "plugins/legacy-plugin-chart-chord", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-country-map": { + "resolved": "plugins/legacy-plugin-chart-country-map", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-event-flow": { + "resolved": "plugins/legacy-plugin-chart-event-flow", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-force-directed": { + "resolved": "plugins/legacy-plugin-chart-force-directed", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-heatmap": { + "resolved": "plugins/legacy-plugin-chart-heatmap", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-histogram": { + "resolved": "plugins/legacy-plugin-chart-histogram", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-horizon": { + "resolved": "plugins/legacy-plugin-chart-horizon", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-map-box": { + "resolved": "plugins/legacy-plugin-chart-map-box", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-paired-t-test": { + "resolved": "plugins/legacy-plugin-chart-paired-t-test", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-parallel-coordinates": { + "resolved": "plugins/legacy-plugin-chart-parallel-coordinates", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-partition": { + "resolved": "plugins/legacy-plugin-chart-partition", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-pivot-table": { + "resolved": "plugins/legacy-plugin-chart-pivot-table", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-rose": { + "resolved": "plugins/legacy-plugin-chart-rose", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-sankey": { + "resolved": "plugins/legacy-plugin-chart-sankey", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-sankey-loop": { + "resolved": "plugins/legacy-plugin-chart-sankey-loop", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-sunburst": { + "resolved": "plugins/legacy-plugin-chart-sunburst", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-time-table": { + "resolved": "plugins/legacy-plugin-chart-time-table", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-treemap": { + "resolved": "plugins/legacy-plugin-chart-treemap", + "link": true + }, + "node_modules/@superset-ui/legacy-plugin-chart-world-map": { + "resolved": "plugins/legacy-plugin-chart-world-map", + "link": true + }, + "node_modules/@superset-ui/legacy-preset-chart-big-number": { + "resolved": "plugins/legacy-preset-chart-big-number", + "link": true + }, + "node_modules/@superset-ui/legacy-preset-chart-nvd3": { + "resolved": "plugins/legacy-preset-chart-nvd3", + "link": true + }, + "node_modules/@superset-ui/plugin-chart-echarts": { + "resolved": "plugins/plugin-chart-echarts", + "link": true + }, + "node_modules/@superset-ui/plugin-chart-pivot-table": { + "resolved": "plugins/plugin-chart-pivot-table", + "link": true + }, + "node_modules/@superset-ui/plugin-chart-table": { + "resolved": "plugins/plugin-chart-table", + "link": true + }, + "node_modules/@superset-ui/plugin-chart-word-cloud": { + "resolved": "plugins/plugin-chart-word-cloud", + "link": true + }, + "node_modules/@superset-ui/preset-chart-xy": { + "resolved": "plugins/preset-chart-xy", + "link": true + }, + "node_modules/@superset-ui/react-pivottable": { + "version": "0.12.12", + "integrity": "sha512-4+wx2kQy3IRKoWHTf2bIkXjlzDA0u/eN2k0FfLfJ5bdER2GuqZErWuKtiZzARsn5kSS9hPIrvt77uv52R3FnfQ==", + "dependencies": { + "immutability-helper": "^3.1.1", + "prop-types": "^15.7.2", + "react-draggable": "^4.4.3", + "react-sortablejs": "^6.0.0", + "sortablejs": "^1.13.0" + }, + "peerDependencies": { + "react": ">=15.0.0", + "react-dom": ">=15.0.0" + } + }, + "node_modules/@superset-ui/react-pivottable/node_modules/react-draggable": { + "version": "4.4.4", + "integrity": "sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==", + "dependencies": { + "clsx": "^1.1.1", + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "react": ">= 16.3.0", + "react-dom": ">= 16.3.0" + } + }, + "node_modules/@testing-library/dom": { + "version": "7.31.2", + "integrity": "sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^4.2.0", + "aria-query": "^4.2.2", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.6", + "lz-string": "^1.4.4", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@testing-library/dom/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@testing-library/dom/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@testing-library/dom/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/dom/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@types/aria-query": { + "version": "4.2.2", + "integrity": "sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==" + }, + "node_modules/@types/babel__core": { + "version": "7.1.16", + "integrity": "sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.3", + "integrity": "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.14.2", + "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==", + "dependencies": { + "@babel/types": "^7.3.0" + } + }, + "node_modules/@types/braces": { + "version": "3.0.1", + "integrity": "sha512-+euflG6ygo4bn0JHtn4pYqcXwRtLvElQ7/nnjDu7iYG56H0+OhCd7d6Ug0IE3WcFpZozBKW2+80FUbv5QGk5AQ==" + }, + "node_modules/@types/cheerio": { + "version": "0.22.30", + "integrity": "sha512-t7ZVArWZlq3dFa9Yt33qFBQIK4CQd1Q3UJp0V+UhP6vgLWLM6Qug7vZuRSGXg45zXeB1Fm5X2vmBkEX58LV2Tw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/classnames": { + "version": "2.3.1", + "integrity": "sha512-zeOWb0JGBoVmlQoznvqXbE0tEC/HONsnoUNH19Hc96NFsTAwTXbTqb8FMYkru1F/iqp7a18Ws3nWJvtA1sHD1A==", + "deprecated": "This is a stub types definition. classnames provides its own type definitions, so you do not need this installed.", + "dependencies": { + "classnames": "*" + } + }, + "node_modules/@types/color-convert": { + "version": "2.0.0", + "integrity": "sha512-m7GG7IKKGuJUXvkZ1qqG3ChccdIM/qBBo913z+Xft0nKCX4hAU/IxKwZBU4cpRZ7GS5kV4vOblUkILtSShCPXQ==", + "dependencies": { + "@types/color-name": "*" + } + }, + "node_modules/@types/color-name": { + "version": "1.1.1", + "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" + }, + "node_modules/@types/d3": { + "version": "3.5.38", + "integrity": "sha1-dvjy6RWa5WKWWy+g5vvuGqZDobw=" + }, + "node_modules/@types/d3-array": { + "version": "2.12.3", + "integrity": "sha512-hN879HLPTVqZV3FQEXy7ptt083UXwguNbnxdTGzVW4y4KjX5uyNKljrQixZcSJfLyFirbpUokxpXtvR+N5+KIg==" + }, + "node_modules/@types/d3-cloud": { + "version": "1.2.5", + "integrity": "sha512-vEIER9DsEBUOdpRiwCh3n1qE+cV6h4e1LhxhY2sLt+m8LPNAIkOOhTlqk0JDiBwD+ZPM8ynFAOU3AuPuVYBFBA==", + "dependencies": { + "@types/d3": "^3" + } + }, + "node_modules/@types/d3-color": { + "version": "1.4.2", + "integrity": "sha512-fYtiVLBYy7VQX+Kx7wU/uOIkGQn8aAEY8oWMoyja3N4dLd8Yf6XgSIR/4yWvMuveNOH5VShnqCgRqqh/UNanBA==" + }, + "node_modules/@types/d3-format": { + "version": "1.4.2", + "integrity": "sha512-WeGCHAs7PHdZYq6lwl/+jsl+Nfc1J2W1kNcMeIMYzQsT6mtBDBgtJ/rcdjZ0k0rVIvqEZqhhuD5TK/v3P2gFHQ==" + }, + "node_modules/@types/d3-interpolate": { + "version": "1.4.2", + "integrity": "sha512-ylycts6llFf8yAEs1tXzx2loxxzDZHseuhPokrqKprTQSTcD3JbJI1omZP1rphsELZO3Q+of3ff0ZS7+O6yVzg==", + "dependencies": { + "@types/d3-color": "^1" + } + }, + "node_modules/@types/d3-path": { + "version": "1.0.9", + "integrity": "sha512-NaIeSIBiFgSC6IGUBjZWcscUJEq7vpVu7KthHN8eieTV9d9MqkSOZLH4chq1PmcKy06PNe3axLeKmRIyxJ+PZQ==" + }, + "node_modules/@types/d3-scale": { + "version": "2.2.6", + "integrity": "sha512-CHu34T5bGrJOeuhGxyiz9Xvaa9PlsIaQoOqjDg7zqeGj2x0rwPhGquiy03unigvcMxmvY0hEaAouT0LOFTLpIw==", + "dependencies": { + "@types/d3-time": "^1" + } + }, + "node_modules/@types/d3-scale-chromatic": { + "version": "1.5.1", + "integrity": "sha512-7FtJYrmXTEWLykShjYhoGuDNR/Bda0+tstZMkFj4RRxUEryv16AGh3be21tqg84B6KfEwiZyEpBcTyPyU+GWjg==" + }, + "node_modules/@types/d3-shape": { + "version": "1.3.8", + "integrity": "sha512-gqfnMz6Fd5H6GOLYixOZP/xlrMtJms9BaS+6oWxTKHNqPGZ93BkWWupQSCYm6YHqx6h9wjRupuJb90bun6ZaYg==", + "dependencies": { + "@types/d3-path": "^1" + } + }, + "node_modules/@types/d3-time": { + "version": "1.1.1", + "integrity": "sha512-ULX7LoqXTCYtM+tLYOaeAJK7IwCT+4Gxlm2MaH0ErKLi07R5lh8NHCAyWcDkCCmx1AfRcBEV6H9QE9R25uP7jw==" + }, + "node_modules/@types/d3-time-format": { + "version": "2.3.1", + "integrity": "sha512-fck0Z9RGfIQn3GJIEKVrp15h9m6Vlg0d5XXeiE/6+CQiBmMDZxfR21XtjEPuDeg7gC3bBM0SdieA5XF3GW1wKA==" + }, + "node_modules/@types/debug": { + "version": "4.1.7", + "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/enzyme": { + "version": "3.10.9", + "integrity": "sha512-dx5UvcWe2Vtye6S9Hw2rFB7Ul9uMXOAje2FAbXvVYieQDNle9qPAo7DfvFMSztZ9NFiD3dVZ4JsRYGTrSLynJg==", + "dependencies": { + "@types/cheerio": "*", + "@types/react": "*" + } + }, + "node_modules/@types/fetch-mock": { + "version": "7.3.5", + "integrity": "sha512-sLecm9ohBdGIpYUP9rWk5/XIKY2xHMYTBJIcJuBBM8IJWnYoQ1DAj8F4OVjnfD0API1drlkWEV0LPNk+ACuhsg==", + "dev": true + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/glob-base": { + "version": "0.3.0", + "integrity": "sha1-pYHWiDR+EOUN18F9byiAoQNUMZ0=" + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.5", + "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/hast": { + "version": "2.3.4", + "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "5.1.2", + "integrity": "sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==" + }, + "node_modules/@types/is-function": { + "version": "1.0.1", + "integrity": "sha512-A79HEEiwXTFtfY+Bcbo58M2GRYzCr9itHWzbzHVFNEYCcoU/MMGwYYf721gBrnhpj1s6RGVVha/IgNFnR0Iw/Q==" + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.3", + "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "26.0.24", + "integrity": "sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==", + "dependencies": { + "jest-diff": "^26.0.0", + "pretty-format": "^26.0.0" + } + }, + "node_modules/@types/jsdom": { + "version": "12.2.4", + "integrity": "sha512-q+De3S/Ri6U9uPx89YA1XuC+QIBgndIfvBaaJG0pRT8Oqa75k4Mr7G9CRZjIvlbLGIukO/31DFGFJYlQBmXf/A==", + "dependencies": { + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^4.0.0" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.9", + "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" + }, + "node_modules/@types/lodash": { + "version": "4.14.175", + "integrity": "sha512-XmdEOrKQ8a1Y/yxQFOMbC47G/V2VDO1GvMRnl4O75M4GW/abC5tnfzadQYkqEveqRM1dEJGFFegfPNA2vvx2iw==" + }, + "node_modules/@types/lodash.get": { + "version": "4.4.6", + "integrity": "sha512-E6zzjR3GtNig8UJG/yodBeJeIOtgPkMgsLjDU3CbgCAPC++vJ0eCMnJhVpRZb/ENqEFlov1+3K9TKtY4UdWKtQ==", + "dependencies": { + "@types/lodash": "*" + } + }, + "node_modules/@types/markdown-to-jsx": { + "version": "6.11.3", + "integrity": "sha512-30nFYpceM/ZEvhGiqWjm5quLUxNeld0HCzJEXMZZDpq53FPkS85mTwkWtCXzCqq8s5JYLgM5W392a02xn8Bdaw==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/math-expression-evaluator": { + "version": "1.2.1", + "integrity": "sha512-H6IG9R0jU16nR3N24UpL7X40aDcUl5eTncBSd/itwz6rWI4nNzMcNYreHj0MnKlHSga1Iq1AqjSuY67EhiN+Zw==" + }, + "node_modules/@types/mdast": { + "version": "3.0.10", + "integrity": "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/micromatch": { + "version": "4.0.2", + "integrity": "sha512-oqXqVb0ci19GtH0vOA/U2TmHTcRY9kuZl4mqUxe0QmJAlIW13kzhuK5pi1i9+ngav8FjpSb9FVS/GE00GLX1VA==", + "dependencies": { + "@types/braces": "*" + } + }, + "node_modules/@types/minimatch": { + "version": "3.0.5", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" + }, + "node_modules/@types/minimist": { + "version": "1.2.2", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==" + }, + "node_modules/@types/ms": { + "version": "0.7.31", + "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" + }, + "node_modules/@types/node": { + "version": "16.11.1", + "integrity": "sha512-PYGcJHL9mwl1Ek3PLiYgyEKtwTMmkMw4vbiyz/ps3pfdRYLVv+SN7qHVAImrjdAXxgluDEw6Ph4lyv+m9UpRmA==" + }, + "node_modules/@types/node-fetch": { + "version": "2.5.12", + "integrity": "sha512-MKgC4dlq4kKNa/mYrwpKfzQMB5X3ee5U6fSprkKpToBqBmX4nFZL9cW5jl6sWn+xpRJ7ypWh2yyqqr8UUCstSw==", + "dependencies": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.1", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==" + }, + "node_modules/@types/npmlog": { + "version": "4.1.3", + "integrity": "sha512-1TcL7YDYCtnHmLhTWbum+IIwLlvpaHoEKS2KNIngEwLzwgDeHaebaEHHbQp8IqzNQ9IYiboLKUjAf7MZqG63+w==" + }, + "node_modules/@types/overlayscrollbars": { + "version": "1.12.1", + "integrity": "sha512-V25YHbSoKQN35UasHf0EKD9U2vcmexRSp78qa8UglxFH8H3D+adEa9zGZwrqpH4TdvqeMrgMqVqsLB4woAryrQ==" + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + }, + "node_modules/@types/parse5": { + "version": "5.0.3", + "integrity": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==" + }, + "node_modules/@types/prettier": { + "version": "2.4.1", + "integrity": "sha512-Fo79ojj3vdEZOHg3wR9ksAMRz4P3S5fDB5e/YWZiFnyFQI1WY2Vftu9XoXVVtJfxB7Bpce/QTqWSSntkz2Znrw==" + }, + "node_modules/@types/pretty-hrtime": { + "version": "1.0.1", + "integrity": "sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.4", + "integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==" + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + }, + "node_modules/@types/reach__router": { + "version": "1.3.9", + "integrity": "sha512-N6rqQqTTAV/zKLfK3iq9Ww3wqCEhTZvsilhl0zI09zETdVq1QGmJH6+/xnj8AFUWIrle2Cqo+PGM/Ltr1vBb9w==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react": { + "version": "16.14.17", + "integrity": "sha512-pMLc/7+7SEdQa9A+hN9ujI8blkjFqYAZVqh3iNXqdZ0cQ8TIR502HMkNJniaOGv9SAgc47jxVKoiBJ7c0AakvQ==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-loadable": { + "version": "5.5.6", + "integrity": "sha512-2M7xH/wawZxNybbs/a76JkpUsMk4z6AxBh92cUtIBy2vK7EYYuitQbC4laY0hGz0e05R+mQ44YeHMtH2U+gMsw==", + "dependencies": { + "@types/react": "*", + "@types/webpack": "^4" + } + }, + "node_modules/@types/react-syntax-highlighter": { + "version": "11.0.5", + "integrity": "sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-table": { + "version": "7.7.7", + "integrity": "sha512-3l2TP4detx9n5Jt44XhdH7Ku6PYwz6kB83P8W+YcBMUkIHtiw2gsCCcq9c4wyCIcdSwcTlWZ9WqH4PF7Yfbprg==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-test-renderer": { + "version": "16.9.5", + "integrity": "sha512-C4cN7C2uSSGOYelp2XfdtJb5TsCP+QiZ+0Bm4U3ZfUswN8oN9O/l86XO/OvBSFCmWY7w75fzsQvZ50eGkFN34A==", + "dependencies": { + "@types/react": "^16" + } + }, + "node_modules/@types/react/node_modules/csstype": { + "version": "3.0.9", + "integrity": "sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==" + }, + "node_modules/@types/rison": { + "version": "0.0.6", + "integrity": "sha512-mE3eRK0fpTN/GnNBOIg2tGq2cFhchQXF6fCbrLxus75TgnoOECbdHikr948FGO/UAml7/ZhLMa5FbGkF5PKvmw==" + }, + "node_modules/@types/scheduler": { + "version": "0.16.2", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + }, + "node_modules/@types/seedrandom": { + "version": "2.4.30", + "integrity": "sha512-AnxLHewubLVzoF/A4qdxBGHCKifw8cY32iro3DQX9TPcetE95zBeVt3jnsvtvAUf1vwzMfwzp4t/L2yqPlnjkQ==" + }, + "node_modules/@types/shortid": { + "version": "0.0.29", + "integrity": "sha1-gJPuBBam4r8qpjOBCRFLP7/6Dps=" + }, + "node_modules/@types/sortablejs": { + "version": "1.10.7", + "integrity": "sha512-lGCwwgpj8zW/ZmaueoPVSP7nnc9t8VqVWXS+ASX3eoUUENmiazv0rlXyTRludXzuX9ALjPsMqBu85TgJNWbTOg==", + "peer": true + }, + "node_modules/@types/source-list-map": { + "version": "0.1.2", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" + }, + "node_modules/@types/tapable": { + "version": "1.0.8", + "integrity": "sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==" + }, + "node_modules/@types/tough-cookie": { + "version": "4.0.1", + "integrity": "sha512-Y0K95ThC3esLEYD6ZuqNek29lNX2EM1qxV8y2FTLUB0ff5wWrk7az+mLrnNFUnaXcgKye22+sFBRXOgpPILZNg==" + }, + "node_modules/@types/uglify-js": { + "version": "3.13.1", + "integrity": "sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==", + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/@types/uglify-js/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/unist": { + "version": "2.0.6", + "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==" + }, + "node_modules/@types/webpack": { + "version": "4.41.31", + "integrity": "sha512-/i0J7sepXFIp1ZT7FjUGi1eXMCg8HCCzLJEQkKsOtbJFontsJLolBcDC+3qxn5pPwiCt1G0ZdRmYRzNBtvpuGQ==", + "dependencies": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/@types/webpack-env": { + "version": "1.16.3", + "integrity": "sha512-9gtOPPkfyNoEqCQgx4qJKkuNm/x0R2hKR7fdl7zvTJyHnIisuE/LfvXOsYWL0o3qq6uiBnKZNNNzi3l0y/X+xw==" + }, + "node_modules/@types/webpack-sources": { + "version": "3.2.0", + "integrity": "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==", + "dependencies": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + } + }, + "node_modules/@types/webpack-sources/node_modules/source-map": { + "version": "0.7.3", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@types/webpack/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/yargs": { + "version": "15.0.14", + "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "15.0.0", + "integrity": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.3.1.tgz", + "integrity": "sha512-cFImaoIr5Ojj358xI/SDhjog57OK2NqlpxwdcgyxDA3bJlZcJq5CPzUXtpD7CxI2Hm6ATU7w5fQnnkVnmwpHqw==", + "dependencies": { + "@typescript-eslint/experimental-utils": "5.3.1", + "@typescript-eslint/scope-manager": "5.3.1", + "debug": "^4.3.2", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.1.8", + "regexpp": "^3.2.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/experimental-utils": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.3.1.tgz", + "integrity": "sha512-RgFn5asjZ5daUhbK5Sp0peq0SSMytqcrkNfU4pnDma2D8P3ElZ6JbYjY8IMSFfZAJ0f3x3tnO3vXHweYg0g59w==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.3.1", + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/typescript-estree": "5.3.1", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/experimental-utils/node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/scope-manager": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.3.1.tgz", + "integrity": "sha512-XksFVBgAq0Y9H40BDbuPOTUIp7dn4u8oOuhcgGq7EoDP50eqcafkMVGrypyVGvDYHzjhdUCUwuwVUK4JhkMAMg==", + "dependencies": { + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/visitor-keys": "5.3.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/types": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.3.1.tgz", + "integrity": "sha512-bG7HeBLolxKHtdHG54Uac750eXuQQPpdJfCYuw4ZI3bZ7+GgKClMWM8jExBtp7NSP4m8PmLRM8+lhzkYnSmSxQ==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.3.1.tgz", + "integrity": "sha512-PwFbh/PKDVo/Wct6N3w+E4rLZxUDgsoII/GrWM2A62ETOzJd4M6s0Mu7w4CWsZraTbaC5UQI+dLeyOIFF1PquQ==", + "dependencies": { + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/visitor-keys": "5.3.1", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.3.1.tgz", + "integrity": "sha512-3cHUzUuVTuNHx0Gjjt5pEHa87+lzyqOiHXy/Gz+SJOCW1mpw9xQHIIEwnKn+Thph1mgWyZ90nboOcSuZr/jTTQ==", + "dependencies": { + "@typescript-eslint/types": "5.3.1", + "eslint-visitor-keys": "^3.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz", + "integrity": "sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "4.33.0", + "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", + "dependencies": { + "@types/json-schema": "^7.0.7", + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/eslint-utils": { + "version": "3.0.0", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.3.1.tgz", + "integrity": "sha512-TD+ONlx5c+Qhk21x9gsJAMRohWAUMavSOmJgv3JGy9dgPhuBd5Wok0lmMClZDyJNLLZK1JRKiATzCKZNUmoyfw==", + "dependencies": { + "@typescript-eslint/scope-manager": "5.3.1", + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/typescript-estree": "5.3.1", + "debug": "^4.3.2" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/scope-manager": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.3.1.tgz", + "integrity": "sha512-XksFVBgAq0Y9H40BDbuPOTUIp7dn4u8oOuhcgGq7EoDP50eqcafkMVGrypyVGvDYHzjhdUCUwuwVUK4JhkMAMg==", + "dependencies": { + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/visitor-keys": "5.3.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/types": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.3.1.tgz", + "integrity": "sha512-bG7HeBLolxKHtdHG54Uac750eXuQQPpdJfCYuw4ZI3bZ7+GgKClMWM8jExBtp7NSP4m8PmLRM8+lhzkYnSmSxQ==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.3.1.tgz", + "integrity": "sha512-PwFbh/PKDVo/Wct6N3w+E4rLZxUDgsoII/GrWM2A62ETOzJd4M6s0Mu7w4CWsZraTbaC5UQI+dLeyOIFF1PquQ==", + "dependencies": { + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/visitor-keys": "5.3.1", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.3.1.tgz", + "integrity": "sha512-3cHUzUuVTuNHx0Gjjt5pEHa87+lzyqOiHXy/Gz+SJOCW1mpw9xQHIIEwnKn+Thph1mgWyZ90nboOcSuZr/jTTQ==", + "dependencies": { + "@typescript-eslint/types": "5.3.1", + "eslint-visitor-keys": "^3.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/parser/node_modules/eslint-visitor-keys": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz", + "integrity": "sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "4.33.0", + "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "4.33.0", + "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "4.33.0", + "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0", + "debug": "^4.3.1", + "globby": "^11.0.3", + "is-glob": "^4.0.1", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "4.33.0", + "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vx/axis": { + "version": "0.0.140", + "integrity": "sha1-qtVXwoHGzCHBUWl3MBVSxwUuUiQ=", + "dependencies": { + "@vx/group": "0.0.140", + "@vx/point": "0.0.136", + "@vx/shape": "0.0.140", + "classnames": "^2.2.5", + "prop-types": "15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/axis/node_modules/prop-types": { + "version": "15.5.10", + "integrity": "sha1-J5ffwxJhguOpXj37suiT3ddFYVQ=", + "dependencies": { + "fbjs": "^0.8.9", + "loose-envify": "^1.3.1" + } + }, + "node_modules/@vx/bounds": { + "version": "0.0.140", + "integrity": "sha1-Tt6XZqq7QbeRpPv0wn/MGe2D+RA=", + "dependencies": { + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0", + "react-dom": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/clip-path": { + "version": "0.0.140", + "integrity": "sha1-smI9AE3Vw8imr+jQYN5Z31FHLZQ=", + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/curve": { + "version": "0.0.165", + "integrity": "sha512-fiQAGrKNGjJbL+eixUckJqIZDWXH/1NtIyyDbSz3J7ksk0QpYr5BgWcNJN76HLNt7wfcLwNzCHeNs4iVYyFGTg==", + "dependencies": { + "d3-shape": "^1.0.6" + } + }, + "node_modules/@vx/event": { + "version": "0.0.179", + "integrity": "sha512-wEwqKsxrzoRV/A9Va/f/CHPmV9asrTH/kW/f88jCydsVXd5W/nrJZiVpozN2Zr1Ernv0i1gW5896FWo/LHRg0A==", + "dependencies": { + "@vx/point": "0.0.165" + } + }, + "node_modules/@vx/event/node_modules/@vx/point": { + "version": "0.0.165", + "integrity": "sha512-spoHilhjcWNgccrSzBUPw+PXV81tYxeyEWBkgr35aGVU4m7YT86Ywvfemwp7AVVGPn+XJHrhB0ujAhDoyqFPoA==" + }, + "node_modules/@vx/glyph": { + "version": "0.0.140", + "integrity": "sha1-+DI/gq7iIZK2db7yV4m7t9dGkbo=", + "dependencies": { + "@vx/group": "0.0.140", + "classnames": "^2.2.5", + "d3-shape": "^1.2.0" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/gradient": { + "version": "0.0.140", + "integrity": "sha1-VrQhAWy64NywAZDP/7noYKKP6/Q=", + "dependencies": { + "classnames": "^2.2.5", + "prop-types": "^15.5.7" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/grid": { + "version": "0.0.140", + "integrity": "sha1-nf0wcbxdkNS0V91V1/eVaZIzsjA=", + "dependencies": { + "@vx/group": "0.0.140", + "@vx/point": "0.0.136", + "@vx/shape": "0.0.140", + "classnames": "^2.2.5" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/group": { + "version": "0.0.140", + "integrity": "sha1-y6mws/LwB+W+c0bzyG9z9w4DiiM=", + "dependencies": { + "classnames": "^2.2.5" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/legend": { + "version": "0.0.140", + "integrity": "sha1-QGLCfWvJxNYHMJ137/ErhEcnrpk=", + "dependencies": { + "@vx/group": "0.0.140", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/pattern": { + "version": "0.0.140", + "integrity": "sha1-9J9XxvE8tbO6qlu+wXTF06p4Lac=", + "dependencies": { + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/point": { + "version": "0.0.136", + "integrity": "sha1-k7MltLlcnVuW33QPQgQBf1c5ZVk=" + }, + "node_modules/@vx/responsive": { + "version": "0.0.199", + "integrity": "sha512-ONrmLUAG+8wzD3cn/EmsuZh6JHeyejqup3ZsV25t04VaVJAVQAJukAfNdH8YiwSJu0zSo+txkBTfrnOmFyQLOw==", + "dependencies": { + "@types/lodash": "^4.14.146", + "@types/react": "*", + "lodash": "^4.17.10", + "prop-types": "^15.6.1", + "resize-observer-polyfill": "1.5.1" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/scale": { + "version": "0.0.140", + "integrity": "sha1-HrCH0R0AALJQws3EBhueIhLtsQ0=", + "dependencies": { + "d3-scale": "^1.0.5" + } + }, + "node_modules/@vx/scale/node_modules/d3-scale": { + "version": "1.0.7", + "integrity": "sha512-KvU92czp2/qse5tUfGms6Kjig0AhHOwkzXG0+PqIJB3ke0WUv088AHMZI0OssO9NCkXt4RP8yju9rpH8aGB7Lw==", + "dependencies": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-color": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + }, + "node_modules/@vx/shape": { + "version": "0.0.140", + "integrity": "sha1-aigtX986V1K26Ti7Pevpg+if9tM=", + "dependencies": { + "@vx/curve": "0.0.140", + "@vx/group": "0.0.140", + "@vx/point": "0.0.136", + "classnames": "^2.2.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/shape/node_modules/@vx/curve": { + "version": "0.0.140", + "integrity": "sha1-Ke84jos3GCE9ZqiW1WncHryO34k=", + "dependencies": { + "d3-shape": "^1.0.6" + } + }, + "node_modules/@vx/stats": { + "version": "0.0.165", + "integrity": "sha512-FRW5N+7pXLZrQxT8JA8OH28PGKq7YfiycmnSG7jzXOnvw+sPm9MRKCoyRDTpFrCiggcOhHhvqhE8RiO2qF7d3Q==", + "dependencies": { + "@vx/group": "0.0.165", + "@vx/scale": "0.0.165", + "classnames": "^2.2.5", + "d3-shape": "^1.2.0" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/stats/node_modules/@vx/group": { + "version": "0.0.165", + "integrity": "sha512-gi1DSg8AAaVRseyWiq8y4bzyvKiQIXT6vDUYBVRmv2LBcpHocBGaxNiNK0X602RgLG0XmNyRv6qSCWLOaBs3Mg==", + "dependencies": { + "classnames": "^2.2.5" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/stats/node_modules/@vx/scale": { + "version": "0.0.165", + "integrity": "sha512-5jSgXJDU6J/KWIyCbpjHqysPCddp7tG3LbTV7UmtB1Qleb4m4slShTVSE7+EKU+zgiQPDGm0+E2ht4cet+7F7A==", + "dependencies": { + "d3-scale": "^2.0.0" + } + }, + "node_modules/@vx/stats/node_modules/d3-scale": { + "version": "2.2.2", + "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" + } + }, + "node_modules/@vx/text": { + "version": "0.0.192", + "integrity": "sha512-lyy7eXfmQ8SJF7Qx+bCRcaEgvVSa18Lp6eRMo3GMANumUh9kSe7LwgqRFSdBJ85WkPqX+UOkJVyCH7AOlt0IWA==", + "dependencies": { + "classnames": "^2.2.5", + "lodash": "^4.17.15", + "prop-types": "^15.7.2", + "reduce-css-calc": "^1.3.0" + }, + "peerDependencies": { + "react": "^16.3.0-0" + } + }, + "node_modules/@vx/threshold": { + "version": "0.0.170", + "integrity": "sha512-A3yWJrFqckbleXg3Q3iSsU6mdtHbMxEnE4jGZd8og4m9r2RDVTvFVP6ZRo4vunlfWj5YuMnNsKhx4ZSWKVMtXg==", + "dependencies": { + "@vx/clip-path": "0.0.165", + "@vx/shape": "0.0.170", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/threshold/node_modules/@vx/clip-path": { + "version": "0.0.165", + "integrity": "sha512-mBCbgguLMVyGvar5FbxqyyY4NQFlnXoSLF0TrhgWYkF/FCXdE1CzBC+Y4iXIJOY0ZTtluqL9XrNdIDpx49AmuA==", + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/threshold/node_modules/@vx/group": { + "version": "0.0.170", + "integrity": "sha512-RnDdRoy0YI5hokk+YWXc8t39Kp51i4BdCpiwkDJU4YypGycTYnDFjicam6jigUmZ/6wyMirDf/aQboWviFLt2Q==", + "dependencies": { + "classnames": "^2.2.5" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/threshold/node_modules/@vx/point": { + "version": "0.0.165", + "integrity": "sha512-spoHilhjcWNgccrSzBUPw+PXV81tYxeyEWBkgr35aGVU4m7YT86Ywvfemwp7AVVGPn+XJHrhB0ujAhDoyqFPoA==" + }, + "node_modules/@vx/threshold/node_modules/@vx/shape": { + "version": "0.0.170", + "integrity": "sha512-rm8oVRP0ejgwGhQTVhqP5awqphWX60FgbnRt9X+YBUqgv7Qyedfgs/CHd/5QFZX3aPp8d4F+b4+lghbIYiMgmQ==", + "dependencies": { + "@vx/curve": "0.0.165", + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/tooltip": { + "version": "0.0.140", + "integrity": "sha1-xcgwYnKHfBu9TotHjqUpHxAZ/+M=", + "dependencies": { + "@vx/bounds": "0.0.140", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/voronoi": { + "version": "0.0.165", + "integrity": "sha512-oZT9KBAjDLCEcOrrqW01TPz8pLtrNNAFPa7mB9ignXvgntqEd3yVXCBkxXScfZLS+O8UQc+7/pawu0PPkE2eMw==", + "dependencies": { + "@vx/group": "0.0.165", + "classnames": "^2.2.5", + "d3-voronoi": "^1.1.2", + "prop-types": "^15.6.1" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@vx/voronoi/node_modules/@vx/group": { + "version": "0.0.165", + "integrity": "sha512-gi1DSg8AAaVRseyWiq8y4bzyvKiQIXT6vDUYBVRmv2LBcpHocBGaxNiNK0X602RgLG0XmNyRv6qSCWLOaBs3Mg==", + "dependencies": { + "classnames": "^2.2.5" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.9.0", + "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" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" + }, + "node_modules/@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "dependencies": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" + }, + "node_modules/@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "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" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.9.0", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.9.0", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.9.0", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "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" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "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" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "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" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "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" + } + }, + "node_modules/@webassemblyjs/wast-parser": { + "version": "1.9.0", + "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" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.9.0", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/@zkochan/cmd-shim": { + "version": "3.1.0", + "integrity": "sha512-o8l0+x7C7sMZU3v9GuJIAU10qQLtwR1dtRQIOmlNMtyaqhmpXOzx1HWiYoWfmmf9HHZoAkXpc9TM9PQYF9d4Jg==", + "dependencies": { + "is-windows": "^1.0.0", + "mkdirp-promise": "^5.0.1", + "mz": "^2.5.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/abab": { + "version": "2.0.5", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==" + }, + "node_modules/abbrev": { + "version": "1.1.1", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "node_modules/accepts": { + "version": "1.3.7", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "dependencies": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "7.4.1", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/add-stream": { + "version": "1.0.0", + "integrity": "sha1-anmQQ3ynNtXhKI25K9MmbV9csqo=" + }, + "node_modules/address": { + "version": "1.1.2", + "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==", + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/agentkeepalive": { + "version": "3.5.2", + "integrity": "sha512-e0L/HNe6qkQ7H19kTlRRqUibEAwDK5AFk6y3PtMsuut2VAH6+Q4xZml1tNDJD7kSAyqmbG/K08K5WEJYtUrSlQ==", + "dependencies": { + "humanize-ms": "^1.2.1" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/aggregate-error/node_modules/indent-string": { + "version": "4.0.0", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/airbnb-js-shims": { + "version": "2.2.1", + "integrity": "sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==", + "dependencies": { + "array-includes": "^3.0.3", + "array.prototype.flat": "^1.2.1", + "array.prototype.flatmap": "^1.2.1", + "es5-shim": "^4.5.13", + "es6-shim": "^0.35.5", + "function.prototype.name": "^1.1.0", + "globalthis": "^1.0.0", + "object.entries": "^1.1.0", + "object.fromentries": "^2.0.0 || ^1.0.0", + "object.getownpropertydescriptors": "^2.0.3", + "object.values": "^1.1.0", + "promise.allsettled": "^1.0.0", + "promise.prototype.finally": "^3.1.0", + "string.prototype.matchall": "^4.0.0 || ^3.0.1", + "string.prototype.padend": "^3.0.0", + "string.prototype.padstart": "^3.0.0", + "symbol.prototype.description": "^1.0.0" + } + }, + "node_modules/airbnb-prop-types": { + "version": "2.16.0", + "integrity": "sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==", + "dependencies": { + "array.prototype.find": "^2.1.1", + "function.prototype.name": "^1.1.2", + "is-regex": "^1.1.0", + "object-is": "^1.1.2", + "object.assign": "^4.1.0", + "object.entries": "^1.1.2", + "prop-types": "^15.7.2", + "prop-types-exact": "^1.2.0", + "react-is": "^16.13.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "peerDependencies": { + "react": "^0.14 || ^15.0.0 || ^16.0.0-alpha" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "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" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-errors": { + "version": "1.0.1", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "peerDependencies": { + "ajv": ">=5.0.0" + } + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.1", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html": { + "version": "0.0.7", + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ansi-styles/node_modules/color-convert": { + "version": "1.9.3", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/ansi-styles/node_modules/color-name": { + "version": "1.1.3", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "node_modules/ansi-to-html": { + "version": "0.6.15", + "integrity": "sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==", + "dependencies": { + "entities": "^2.0.0" + }, + "bin": { + "ansi-to-html": "bin/ansi-to-html" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/ansicolors": { + "version": "0.2.1", + "integrity": "sha1-vgiVmQl7dKXJxKhKDNvNtivYeu8=" + }, + "node_modules/antd": { + "version": "4.16.13", + "integrity": "sha512-EMPD3fzKe7oayx9keD/GA1oKatcx7j5CGlkJj5eLS0/eEDDEkxVj3DFmKOPuHYt4BK7ltTzMFS+quSTmqUXPiw==", + "dependencies": { + "@ant-design/colors": "^6.0.0", + "@ant-design/icons": "^4.6.3", + "@ant-design/react-slick": "~0.28.1", + "@babel/runtime": "^7.12.5", + "array-tree-filter": "^2.1.0", + "classnames": "^2.2.6", + "copy-to-clipboard": "^3.2.0", + "lodash": "^4.17.21", + "moment": "^2.25.3", + "rc-cascader": "~1.4.0", + "rc-checkbox": "~2.3.0", + "rc-collapse": "~3.1.0", + "rc-dialog": "~8.6.0", + "rc-drawer": "~4.3.0", + "rc-dropdown": "~3.2.0", + "rc-field-form": "~1.20.0", + "rc-image": "~5.2.5", + "rc-input-number": "~7.1.0", + "rc-mentions": "~1.6.1", + "rc-menu": "~9.0.12", + "rc-motion": "^2.4.0", + "rc-notification": "~4.5.7", + "rc-pagination": "~3.1.9", + "rc-picker": "~2.5.10", + "rc-progress": "~3.1.0", + "rc-rate": "~2.9.0", + "rc-resize-observer": "^1.0.0", + "rc-select": "~12.1.6", + "rc-slider": "~9.7.1", + "rc-steps": "~4.1.0", + "rc-switch": "~3.2.0", + "rc-table": "~7.15.1", + "rc-tabs": "~11.10.0", + "rc-textarea": "~0.3.0", + "rc-tooltip": "~5.1.1", + "rc-tree": "~4.2.1", + "rc-tree-select": "~4.3.0", + "rc-trigger": "^5.2.10", + "rc-upload": "~4.3.0", + "rc-util": "^5.13.1", + "scroll-into-view-if-needed": "^2.2.25" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/ant-design" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/@ant-design/react-slick": { + "version": "0.28.4", + "integrity": "sha512-j9eAHTn7GxbXUFNknJoHS2ceAsqrQi2j8XykjZE1IXCD8kJF+t28EvhBLniDpbOsBk/3kjalnhriTfZcjBHNqg==", + "dependencies": { + "@babel/runtime": "^7.10.4", + "classnames": "^2.2.5", + "json2mq": "^0.2.0", + "lodash": "^4.17.21", + "resize-observer-polyfill": "^1.5.0" + }, + "peerDependencies": { + "react": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/date-fns": { + "version": "2.25.0", + "integrity": "sha512-ovYRFnTrbGPD4nqaEqescPEv1mNwvt+UTqI3Ay9SzNtey9NZnYu6E2qCcBBgJ6/2VF1zGGygpyTDITqpQQ5e+w==", + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, + "node_modules/antd/node_modules/rc-cascader": { + "version": "1.4.3", + "integrity": "sha512-Q4l9Mv8aaISJ+giVnM9IaXxDeMqHUGLvi4F+LksS6pHlaKlN4awop/L+IMjIXpL+ug/ojaCyv/ixcVopJYYCVA==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "array-tree-filter": "^2.1.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.0.1", + "warning": "^4.0.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-checkbox": { + "version": "2.3.2", + "integrity": "sha512-afVi1FYiGv1U0JlpNH/UaEXdh6WUJjcWokj/nUN2TgG80bfG+MDdbfHKlLcNNba94mbjy2/SXJ1HDgrOkXGAjg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-collapse": { + "version": "3.1.2", + "integrity": "sha512-HujcKq7mghk/gVKeI6EjzTbb8e19XUZpakrYazu1MblEZ3Hu3WBMSN4A3QmvbF6n1g7x6lUlZvsHZ5shABWYOQ==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.3.4", + "rc-util": "^5.2.1", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-dialog": { + "version": "8.6.0", + "integrity": "sha512-GSbkfqjqxpZC5/zc+8H332+q5l/DKUhpQr0vdX2uDsxo5K0PhvaMEVjyoJUTkZ3+JstEADQji1PVLVb/2bJeOQ==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-motion": "^2.3.0", + "rc-util": "^5.6.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-drawer": { + "version": "4.3.1", + "integrity": "sha512-GMfFy4maqxS9faYXEhQ+0cA1xtkddEQzraf6SAdzWbn444DrrLogwYPk1NXSpdXjLCLxgxOj9MYtyYG42JsfXg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-util": "^5.7.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-dropdown": { + "version": "3.2.0", + "integrity": "sha512-j1HSw+/QqlhxyTEF6BArVZnTmezw2LnSmRk6I9W7BCqNCKaRwleRmMMs1PHbuaG8dKHVqP6e21RQ7vPBLVnnNw==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-trigger": "^5.0.4" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/antd/node_modules/rc-field-form": { + "version": "1.20.1", + "integrity": "sha512-f64KEZop7zSlrG4ef/PLlH12SLn6iHDQ3sTG+RfKBM45hikwV1i8qMf53xoX12NvXXWg1VwchggX/FSso4bWaA==", + "dependencies": { + "@babel/runtime": "^7.8.4", + "async-validator": "^3.0.3", + "rc-util": "^5.8.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">= 16.9.0", + "react-dom": ">= 16.9.0" + } + }, + "node_modules/antd/node_modules/rc-image": { + "version": "5.2.5", + "integrity": "sha512-qUfZjYIODxO0c8a8P5GeuclYXZjzW4hV/5hyo27XqSFo1DmTCs2HkVeQObkcIk5kNsJtgsj1KoPThVsSc/PXOw==", + "dependencies": { + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-dialog": "~8.6.0", + "rc-util": "^5.0.6" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-input-number": { + "version": "7.1.4", + "integrity": "sha512-EG4iqkqyqzLRu/Dq+fw2od7nlgvXLEatE+J6uhi3HXE1qlM3C7L6a7o/hL9Ly9nimkES2IeQoj3Qda3I0izj3Q==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.9.8" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-mentions": { + "version": "1.6.1", + "integrity": "sha512-LDzGI8jJVGnkhpTZxZuYBhMz3avcZZqPGejikchh97xPni/g4ht714Flh7DVvuzHQ+BoKHhIjobHnw1rcP8erg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-menu": "^9.0.0", + "rc-textarea": "^0.3.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.0.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-menu": { + "version": "9.0.14", + "integrity": "sha512-CIox5mZeLDAi32SlHrV7UeSjv7tmJJhwRyxQtZCKt351w3q59XlL4WMFOmtT9gwIfP9h0XoxdBZUMe/xzkp78A==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.4.3", + "rc-overflow": "^1.2.0", + "rc-trigger": "^5.1.2", + "rc-util": "^5.12.0", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-menu/node_modules/rc-overflow": { + "version": "1.2.2", + "integrity": "sha512-X5kj9LDU1ue5wHkqvCprJWLKC+ZLs3p4He/oxjZ1Q4NKaqKBaYf5OdSzRSgh3WH8kSdrfU8LjvlbWnHgJOEkNQ==", + "dependencies": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.5.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-motion": { + "version": "2.4.4", + "integrity": "sha512-ms7n1+/TZQBS0Ydd2Q5P4+wJTSOrhIrwNxLXCZpR7Fa3/oac7Yi803HDALc2hLAKaCTQtw9LmQeB58zcwOsqlQ==", + "dependencies": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-util": "^5.2.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-notification": { + "version": "4.5.7", + "integrity": "sha512-zhTGUjBIItbx96SiRu3KVURcLOydLUHZCPpYEn1zvh+re//Tnq/wSxN4FKgp38n4HOgHSVxcLEeSxBMTeBBDdw==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.2.0", + "rc-util": "^5.0.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-pagination": { + "version": "3.1.9", + "integrity": "sha512-IKBKaJ4icVPeEk9qRHrFBJmHxBUrCp3+nENBYob4Ofqsu3RXjBOy4N36zONO7oubgLyiG3PxVmyAuVlTkoc7Jg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-picker": { + "version": "2.5.19", + "integrity": "sha512-u6myoCu/qiQ0vLbNzSzNrzTQhs7mldArCpPHrEI6OUiifs+IPXmbesqSm0zilJjfzrZJLgYeyyOMSznSlh0GKA==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "date-fns": "2.x", + "dayjs": "1.x", + "moment": "^2.24.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.4.0", + "shallowequal": "^1.1.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-progress": { + "version": "3.1.4", + "integrity": "sha512-XBAif08eunHssGeIdxMXOmRQRULdHaDdIFENQ578CMb4dyewahmmfJRyab+hw4KH4XssEzzYOkAInTLS7JJG+Q==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-rate": { + "version": "2.9.1", + "integrity": "sha512-MmIU7FT8W4LYRRHJD1sgG366qKtSaKb67D0/vVvJYR0lrCuRrCiVQ5qhfT5ghVO4wuVIORGpZs7ZKaYu+KMUzA==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.0.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-resize-observer": { + "version": "1.0.1", + "integrity": "sha512-OxO2mJI9e8610CAWBFfm52SPvWib0eNKjaSsRbbKHmLaJIxw944P+D61DlLJ/w2vuOjGNcalJu8VdqyNm/XCRg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-util": "^5.0.0", + "resize-observer-polyfill": "^1.5.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-select": { + "version": "12.1.13", + "integrity": "sha512-cPI+aesP6dgCAaey4t4upDbEukJe+XN0DK6oO/6flcCX5o28o7KNZD7JAiVtC/6fCwqwI/kSs7S/43dvHmBl+A==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.0.1", + "rc-overflow": "^1.0.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.9.8", + "rc-virtual-list": "^3.2.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/antd/node_modules/rc-select/node_modules/rc-overflow": { + "version": "1.2.2", + "integrity": "sha512-X5kj9LDU1ue5wHkqvCprJWLKC+ZLs3p4He/oxjZ1Q4NKaqKBaYf5OdSzRSgh3WH8kSdrfU8LjvlbWnHgJOEkNQ==", + "dependencies": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.5.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-select/node_modules/rc-virtual-list": { + "version": "3.4.1", + "integrity": "sha512-YexJy+Cx8qjnQdV8+0JBeM65VF2kvO9lnsfrIvHsL3lIH1adMZ85HqmePGUzKkKMZC+CRAJc2K4g2iJS1dOjPw==", + "dependencies": { + "classnames": "^2.2.6", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.0.7" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/antd/node_modules/rc-slider": { + "version": "9.7.4", + "integrity": "sha512-pjLKLiDKiaL7/pNywfIBD+lDo5TtVo05KuIBSWEIoqu6FHh6IMWvthCiaODuYaVs3RLeF2nXOP5AjkD2Lt2Rwg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-tooltip": "^5.0.1", + "rc-util": "^5.0.0", + "shallowequal": "^1.1.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-steps": { + "version": "4.1.4", + "integrity": "sha512-qoCqKZWSpkh/b03ASGx1WhpKnuZcRWmvuW+ZUu4mvMdfvFzVxblTwUM+9aBd0mlEUFmt6GW8FXhMpHkK3Uzp3w==", + "dependencies": { + "@babel/runtime": "^7.10.2", + "classnames": "^2.2.3", + "rc-util": "^5.0.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-switch": { + "version": "3.2.2", + "integrity": "sha512-+gUJClsZZzvAHGy1vZfnwySxj+MjLlGRyXKXScrtCTcmiYNPzxDFOxdQ/3pK1Kt/0POvwJ/6ALOR8gwdXGhs+A==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-util": "^5.0.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-table": { + "version": "7.15.2", + "integrity": "sha512-TAs7kCpIZwc2mtvD8CMrXSM6TqJDUsy0rUEV1YgRru33T8bjtAtc+9xW/KC1VWROJlHSpU0R0kXjFs9h/6+IzQ==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.13.0", + "shallowequal": "^1.1.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-tabs": { + "version": "11.10.1", + "integrity": "sha512-ey1i2uMyfnRNYbViLcUYGH+Y7hueJbdCVSLaXnXki9hxBcGqxJMPy9t5xR0n/3QFQspj7Tf6+2VTXVtmO7Yaug==", + "dependencies": { + "@babel/runtime": "^7.11.2", + "classnames": "2.x", + "rc-dropdown": "^3.2.0", + "rc-menu": "^9.0.0", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.5.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-textarea": { + "version": "0.3.5", + "integrity": "sha512-qa+k5vDn9ct65qr+SgD2KwJ9Xz6P84lG2z+TDht/RBr71WnM/K61PqHUAcUyU6YqTJD26IXgjPuuhZR7HMw7eA==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.7.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-tooltip": { + "version": "5.1.1", + "integrity": "sha512-alt8eGMJulio6+4/uDm7nvV+rJq9bsfxFDCI0ljPdbuoygUscbsMYb6EQgwib/uqsXQUvzk+S7A59uYHmEgmDA==", + "dependencies": { + "@babel/runtime": "^7.11.2", + "rc-trigger": "^5.0.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-tree": { + "version": "4.2.2", + "integrity": "sha512-V1hkJt092VrOVjNyfj5IYbZKRMHxWihZarvA5hPL/eqm7o2+0SNkeidFYm7LVVBrAKBpOpa0l8xt04uiqOd+6w==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.0.1", + "rc-util": "^5.0.0", + "rc-virtual-list": "^3.0.1" + }, + "engines": { + "node": ">=10.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/antd/node_modules/rc-tree-select": { + "version": "4.3.3", + "integrity": "sha512-0tilOHLJA6p+TNg4kD559XnDX3PTEYuoSF7m7ryzFLAYvdEEPtjn0QZc5z6L0sMKBiBlj8a2kf0auw8XyHU3lA==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-select": "^12.0.0", + "rc-tree": "^4.0.0", + "rc-util": "^5.0.5" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/antd/node_modules/rc-tree/node_modules/rc-virtual-list": { + "version": "3.4.1", + "integrity": "sha512-YexJy+Cx8qjnQdV8+0JBeM65VF2kvO9lnsfrIvHsL3lIH1adMZ85HqmePGUzKkKMZC+CRAJc2K4g2iJS1dOjPw==", + "dependencies": { + "classnames": "^2.2.6", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.0.7" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/antd/node_modules/rc-trigger": { + "version": "5.2.10", + "integrity": "sha512-FkUf4H9BOFDaIwu42fvRycXMAvkttph9AlbCZXssZDVzz2L+QZ0ERvfB/4nX3ZFPh1Zd+uVGr1DEDeXxq4J1TA==", + "dependencies": { + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-align": "^4.0.0", + "rc-motion": "^2.0.0", + "rc-util": "^5.5.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-trigger/node_modules/rc-align": { + "version": "4.0.11", + "integrity": "sha512-n9mQfIYQbbNTbefyQnRHZPWuTEwG1rY4a9yKlIWHSTbgwI+XUMGRYd0uJ5pE2UbrNX0WvnMBA1zJ3Lrecpra/A==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "dom-align": "^1.7.0", + "lodash": "^4.17.21", + "rc-util": "^5.3.0", + "resize-observer-polyfill": "^1.5.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-upload": { + "version": "4.3.1", + "integrity": "sha512-W8Iyv0LRyEnFEzpv90ET/i1XG2jlPzPxKkkOVtDfgh9c3f4lZV770vgpUfiyQza+iLtQLVco3qIvgue8aDiOsQ==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.2.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/antd/node_modules/rc-util": { + "version": "5.14.0", + "integrity": "sha512-2vy6/Z1BJUcwLjm/UEJb/htjUTQPigITUIemCcFEo1fQevAumc9sA32x2z5qyWoa9uhrXbiAjSDpPIUqyg65sA==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "react-is": "^16.12.0", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/any-observable": { + "version": "0.3.0", + "integrity": "sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=" + }, + "node_modules/anymatch": { + "version": "3.1.2", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/aphrodite": { + "version": "1.2.5", + "integrity": "sha1-g1jDbIC7A67puXFlqqcBhiJbSYM=", + "dependencies": { + "asap": "^2.0.3", + "inline-style-prefixer": "^3.0.1", + "string-hash": "^1.1.3" + } + }, + "node_modules/apollo-codegen": { + "version": "0.19.1", + "integrity": "sha512-jlxz/b5iinRWfh48hXdmMtrjTPn/rDok0Z3b7icvkiaD6I30w4sq9B+JDkFbLnkldzsFLV2BZtBDa/dkZhx8Ng==", + "deprecated": "The 'apollo-codegen' command has been replaced with the more-powerful 'apollo' CLI. Switch to 'apollo' to ensure future updates and visit https://npm.im/apollo#code-generation for more information.", + "dependencies": { + "@babel/generator": "7.0.0-beta.38", + "@babel/types": "7.0.0-beta.38", + "change-case": "^3.0.1", + "common-tags": "^1.5.1", + "core-js": "^2.5.3", + "glob": "^7.1.2", + "graphql": "^0.13.1", + "graphql-config": "^1.1.1", + "inflected": "^2.0.3", + "node-fetch": "^1.7.3", + "rimraf": "^2.6.2", + "source-map-support": "^0.5.0", + "yargs": "^10.0.3" + }, + "bin": { + "apollo-codegen": "lib/cli.js" + }, + "engines": { + "node": ">=6.0", + "npm": ">=5.0" + } + }, + "node_modules/apollo-codegen/node_modules/@babel/generator": { + "version": "7.0.0-beta.38", + "integrity": "sha512-aOHQPhsEyaB6p2n+AK981+onHoc+Ork9rcAQVSUJR33wUkGiWRpu6/C685knRyIZVsKeSdG5Q4xMiYeFUhuLzA==", + "dependencies": { + "@babel/types": "7.0.0-beta.38", + "jsesc": "^2.5.1", + "lodash": "^4.2.0", + "source-map": "^0.5.0", + "trim-right": "^1.0.1" + } + }, + "node_modules/apollo-codegen/node_modules/@babel/types": { + "version": "7.0.0-beta.38", + "integrity": "sha512-SAtyEjmA7KiEoL2eAOAUM6M9arQJGWxJKK0S9x0WyPOosHS420RXoxPhn57u/8orRnK8Kxm0nHQQNTX203cP1Q==", + "dependencies": { + "esutils": "^2.0.2", + "lodash": "^4.2.0", + "to-fast-properties": "^2.0.0" + } + }, + "node_modules/apollo-codegen/node_modules/ansi-regex": { + "version": "3.0.0", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/camelcase": { + "version": "4.1.0", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/cliui": { + "version": "4.1.0", + "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", + "dependencies": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0", + "wrap-ansi": "^2.0.0" + } + }, + "node_modules/apollo-codegen/node_modules/core-js": { + "version": "2.6.12", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.", + "hasInstallScript": true + }, + "node_modules/apollo-codegen/node_modules/cross-spawn": { + "version": "5.1.0", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/apollo-codegen/node_modules/execa": { + "version": "0.7.0", + "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "dependencies": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.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" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/find-up": { + "version": "2.1.0", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/get-caller-file": { + "version": "1.0.3", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" + }, + "node_modules/apollo-codegen/node_modules/get-stream": { + "version": "3.0.0", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/graphql": { + "version": "0.13.2", + "integrity": "sha512-QZ5BL8ZO/B20VA8APauGBg3GyEgZ19eduvpLWoq5x7gMmWnHoy8rlQWPLmWgFvo1yNgjSEFMesmS4R6pPr7xog==", + "dependencies": { + "iterall": "^1.2.1" + } + }, + "node_modules/apollo-codegen/node_modules/invert-kv": { + "version": "1.0.0", + "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/apollo-codegen/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/is-stream": { + "version": "1.1.0", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/apollo-codegen/node_modules/iterall": { + "version": "1.3.0", + "integrity": "sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==" + }, + "node_modules/apollo-codegen/node_modules/lcid": { + "version": "1.0.0", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "dependencies": { + "invert-kv": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/apollo-codegen/node_modules/locate-path": { + "version": "2.0.0", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/lru-cache": { + "version": "4.1.5", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/apollo-codegen/node_modules/mem": { + "version": "1.1.0", + "integrity": "sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=", + "dependencies": { + "mimic-fn": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/mimic-fn": { + "version": "1.2.0", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/node-fetch": { + "version": "1.7.3", + "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", + "dependencies": { + "encoding": "^0.1.11", + "is-stream": "^1.0.1" + } + }, + "node_modules/apollo-codegen/node_modules/npm-run-path": { + "version": "2.0.2", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/os-locale": { + "version": "2.1.0", + "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==", + "dependencies": { + "execa": "^0.7.0", + "lcid": "^1.0.0", + "mem": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/p-limit": { + "version": "1.3.0", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/p-locate": { + "version": "2.0.0", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/p-try": { + "version": "1.0.0", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/path-key": { + "version": "2.0.1", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/require-main-filename": { + "version": "1.0.1", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" + }, + "node_modules/apollo-codegen/node_modules/rimraf": { + "version": "2.7.1", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/apollo-codegen/node_modules/shebang-command": { + "version": "1.2.0", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/apollo-codegen/node_modules/shebang-regex": { + "version": "1.0.0", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/apollo-codegen/node_modules/string-width": { + "version": "2.1.1", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/strip-ansi": { + "version": "4.0.0", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/apollo-codegen/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/apollo-codegen/node_modules/wrap-ansi": { + "version": "2.1.0", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/apollo-codegen/node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/apollo-codegen/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/apollo-codegen/node_modules/wrap-ansi/node_modules/string-width": { + "version": "1.0.2", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/apollo-codegen/node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "3.0.1", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/apollo-codegen/node_modules/y18n": { + "version": "3.2.2", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==" + }, + "node_modules/apollo-codegen/node_modules/yallist": { + "version": "2.1.2", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" + }, + "node_modules/apollo-codegen/node_modules/yargs": { + "version": "10.1.2", + "integrity": "sha512-ivSoxqBGYOqQVruxD35+EyCFDYNEFL/Uo6FcOnz+9xZdZzK0Zzw4r4KhbrME1Oo2gOggwJod2MnsdamSG7H9ig==", + "dependencies": { + "cliui": "^4.0.0", + "decamelize": "^1.1.1", + "find-up": "^2.1.0", + "get-caller-file": "^1.0.1", + "os-locale": "^2.0.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^8.1.0" + } + }, + "node_modules/apollo-codegen/node_modules/yargs-parser": { + "version": "8.1.0", + "integrity": "sha512-yP+6QqN8BmrgW2ggLtTbdrOyBNSI7zBa4IykmiV5R1wl1JWNxQvWhMfMdmzIYtKU7oP3OOInY/tl2ov3BDjnJQ==", + "dependencies": { + "camelcase": "^4.1.0" + } + }, + "node_modules/app-root-dir": { + "version": "1.0.2", + "integrity": "sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=" + }, + "node_modules/aproba": { + "version": "2.0.0", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" + }, + "node_modules/are-we-there-yet": { + "version": "1.1.7", + "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, + "node_modules/are-we-there-yet/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/are-we-there-yet/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/are-we-there-yet/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "4.2.2", + "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "dependencies": { + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-differ": { + "version": "2.1.0", + "integrity": "sha512-KbUpJgx909ZscOc/7CLATBFam7P1Z1QRQInvgT0UztM9Q72aGKCunKASAl7WNW0tnPmPyEMeMhdsfWhfmW037w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/array-equal": { + "version": "1.0.0", + "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=" + }, + "node_modules/array-find": { + "version": "1.0.0", + "integrity": "sha1-bI4obRHtdoMn+OYuzuhzU8o+eLg=" + }, + "node_modules/array-find-index": { + "version": "1.0.2", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + }, + "node_modules/array-ify": { + "version": "1.0.0", + "integrity": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=" + }, + "node_modules/array-includes": { + "version": "3.1.4", + "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-tree-filter": { + "version": "2.1.0", + "integrity": "sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==" + }, + "node_modules/array-union": { + "version": "2.1.0", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.filter": { + "version": "1.0.1", + "integrity": "sha512-Dk3Ty7N42Odk7PjU/Ci3zT4pLj20YvuVnneG/58ICM6bt4Ij5kZaJTVQ9TSaWaIECX2sFyz4KItkVZqHNnciqw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.find": { + "version": "2.1.2", + "integrity": "sha512-00S1O4ewO95OmmJW7EesWfQlrCrLEL8kZ40w3+GkLX2yTt0m2ggcePPa2uHPJ9KUmJvwRq+lCV9bD8Yim23x/Q==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.2.5", + "integrity": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.2.5", + "integrity": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.map": { + "version": "1.0.4", + "integrity": "sha512-Qds9QnX7A0qISY7JT5WuJO0NJPE9CMlC6JzHQfhpqAAQQzufVRoeH7EzUY5GcPTx72voG8LV/5eo+b8Qi8hmhA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arrify": { + "version": "1.0.1", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "node_modules/asn1": { + "version": "0.2.4", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/asn1.js": { + "version": "5.4.1", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/asn1.js/node_modules/bn.js": { + "version": "4.12.0", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/assert": { + "version": "1.5.0", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dependencies": { + "object-assign": "^4.1.1", + "util": "0.10.3" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/assert/node_modules/inherits": { + "version": "2.0.1", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + }, + "node_modules/assert/node_modules/util": { + "version": "0.10.3", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dependencies": { + "inherits": "2.0.1" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ast-types": { + "version": "0.14.2", + "integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==", + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "2.6.3", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/async-each": { + "version": "1.0.3", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" + }, + "node_modules/async-limiter": { + "version": "1.0.1", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + }, + "node_modules/async-retry": { + "version": "1.3.3", + "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", + "dev": true, + "dependencies": { + "retry": "0.13.1" + } + }, + "node_modules/async-validator": { + "version": "3.5.2", + "integrity": "sha512-8eLCg00W9pIRZSB781UUX/H6Oskmm8xloZfr09lz5bikRpBVDlJ3hRVuxxP1SxcwsEYfJ4IU8Q19Y8/893r3rQ==" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/atob": { + "version": "2.1.2", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/atob-lite": { + "version": "2.0.0", + "integrity": "sha1-D+9a1G8b16hQLGVyfwNn1e5D1pY=" + }, + "node_modules/autoprefixer": { + "version": "9.8.8", + "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", + "dependencies": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + }, + "node_modules/autoprefixer/node_modules/picocolors": { + "version": "0.2.1", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.11.0", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" + }, + "node_modules/axe-core": { + "version": "4.3.3", + "integrity": "sha512-/lqqLAmuIPi79WYfRpy2i8z+x+vxU3zX2uAm0gs1q52qTuKwolOj1P8XbufpXcsydrpKx2yGn2wzAnxCMV86QA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/axios": { + "version": "0.21.4", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "devOptional": true, + "dependencies": { + "follow-redirects": "^1.14.0" + } + }, + "node_modules/axobject-query": { + "version": "2.2.0", + "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" + }, + "node_modules/babel-eslint": { + "version": "10.1.0", + "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", + "deprecated": "babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "eslint": ">= 4.12.1" + } + }, + "node_modules/babel-eslint/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-jest": { + "version": "26.6.3", + "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", + "dependencies": { + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/slash": { + "version": "3.0.0", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-literal-to-ast": { + "version": "2.1.0", + "integrity": "sha512-CxfpQ0ysQ0bZOhlaPgcWjl79Em16Rhqc6++UAFn0A3duiXmuyhhj8yyl9PYbj0I0CyjrHovdDbp2QEKT7uIMxw==", + "dependencies": { + "@babel/parser": "^7.1.6", + "@babel/traverse": "^7.1.6", + "@babel/types": "^7.1.6" + }, + "peerDependencies": { + "@babel/core": "^7.1.2" + } + }, + "node_modules/babel-loader": { + "version": "8.2.2", + "integrity": "sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/find-cache-dir": { + "version": "3.3.2", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/babel-loader/node_modules/make-dir": { + "version": "3.1.0", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/pkg-dir": { + "version": "4.2.0", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-loader/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-add-react-displayname": { + "version": "0.0.5", + "integrity": "sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=" + }, + "node_modules/babel-plugin-apply-mdx-type-prop": { + "version": "1.6.22", + "integrity": "sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==", + "dependencies": { + "@babel/helper-plugin-utils": "7.10.4", + "@mdx-js/util": "1.6.22" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "@babel/core": "^7.11.6" + } + }, + "node_modules/babel-plugin-apply-mdx-type-prop/node_modules/@babel/helper-plugin-utils": { + "version": "7.10.4", + "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + }, + "node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/babel-plugin-emotion": { + "version": "10.2.2", + "integrity": "sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==", + "dependencies": { + "@babel/helper-module-imports": "^7.0.0", + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/serialize": "^0.11.16", + "babel-plugin-macros": "^2.0.0", + "babel-plugin-syntax-jsx": "^6.18.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^1.0.5", + "find-root": "^1.1.0", + "source-map": "^0.5.7" + } + }, + "node_modules/babel-plugin-emotion/node_modules/@emotion/memoize": { + "version": "0.7.4", + "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + }, + "node_modules/babel-plugin-emotion/node_modules/@emotion/serialize": { + "version": "0.11.16", + "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", + "dependencies": { + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/unitless": "0.7.5", + "@emotion/utils": "0.11.3", + "csstype": "^2.5.7" + } + }, + "node_modules/babel-plugin-emotion/node_modules/@emotion/utils": { + "version": "0.11.3", + "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + }, + "node_modules/babel-plugin-emotion/node_modules/escape-string-regexp": { + "version": "1.0.5", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/babel-plugin-extract-import-names": { + "version": "1.6.22", + "integrity": "sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==", + "dependencies": { + "@babel/helper-plugin-utils": "7.10.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/babel-plugin-extract-import-names/node_modules/@babel/helper-plugin-utils": { + "version": "7.10.4", + "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + }, + "node_modules/babel-plugin-graphql-tag": { + "version": "2.5.0", + "integrity": "sha512-X6qczBVs/UtB8evDgOizGuQJNDBkvXZy5kZd4c0SU14L986RR+p4EXtK/T31HkpYoYOjvrcp+QO82qjL3/nHoQ==", + "dependencies": { + "@babel/parser": "^7.3.2", + "babel-literal-to-ast": "^2.1.0", + "debug": "^4.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "graphql-tag": "^2.10.1" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "26.6.2", + "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/babel-plugin-jsx-remove-data-test-id": { + "version": "2.1.3", + "integrity": "sha512-FTpcmzr3avLVStllCT4BceTTZNEb+1mJVtLpsicvXDqjojEkyrga1GGOxWj768Ra3tev6KWgNOhZ/Lrucb+MuQ==", + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-plugin-lodash": { + "version": "3.3.4", + "integrity": "sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==", + "dependencies": { + "@babel/helper-module-imports": "^7.0.0-beta.49", + "@babel/types": "^7.0.0-beta.49", + "glob": "^7.1.1", + "lodash": "^4.17.10", + "require-package-name": "^2.0.1" + } + }, + "node_modules/babel-plugin-macros": { + "version": "2.8.0", + "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "dependencies": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" + } + }, + "node_modules/babel-plugin-macros/node_modules/cosmiconfig": { + "version": "6.0.0", + "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" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-macros/node_modules/parse-json": { + "version": "5.2.0", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-plugin-named-asset-import": { + "version": "0.3.7", + "integrity": "sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.2.2", + "integrity": "sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==", + "dependencies": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.2.2", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.2.5", + "integrity": "sha512-ninF5MQNwAX9Z7c9ED+H2pGt1mXdP4TqzlHKyPIYmJIYz0N+++uwdM7RnJukklhzJ54Q84vA4ZJkgs7lu5vqcw==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.2.2", + "core-js-compat": "^3.16.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.2.2", + "integrity": "sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.2.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-react-docgen": { + "version": "4.2.1", + "integrity": "sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==", + "dependencies": { + "ast-types": "^0.14.2", + "lodash": "^4.17.15", + "react-docgen": "^5.0.0" + } + }, + "node_modules/babel-plugin-syntax-jsx": { + "version": "6.18.0", + "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" + }, + "node_modules/babel-plugin-transform-dev": { + "version": "2.0.1", + "integrity": "sha512-Otu4LeO02yk+KIsDIwOPmI40TjOLT78NKmGlBxQRyq15Gqost9meZKszdi4LIrIWYAQ3plWXTLclK+IWv1DIQg==", + "engines": { + "node": ">=0.12" + } + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "node_modules/babel-plugin-typescript-to-proptypes": { + "version": "1.4.2", + "integrity": "sha512-mcDkmEwxQ0HivEAMZ82HidppYQGiISp3bcgjtRWFFG0WzwVsJ3eQCgAoD3mSXDc9ehU8xZ7ItxCo9XRgeYQ5bQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.12.5", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-typescript": "^7.12.1", + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10.10.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "typescript": "^3.0.0 || ^4.0.0" + } + }, + "node_modules/babel-polyfill": { + "version": "6.26.0", + "integrity": "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=", + "dependencies": { + "babel-runtime": "^6.26.0", + "core-js": "^2.5.0", + "regenerator-runtime": "^0.10.5" + } + }, + "node_modules/babel-polyfill/node_modules/core-js": { + "version": "2.6.12", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.", + "hasInstallScript": true + }, + "node_modules/babel-polyfill/node_modules/regenerator-runtime": { + "version": "0.10.5", + "integrity": "sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=" + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "26.6.2", + "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", + "dependencies": { + "babel-plugin-jest-hoist": "^26.6.2", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-typescript-vue": { + "version": "1.1.1", + "integrity": "sha512-wXeR7Y4xCsRUEdm4t4qlpv4wnxolS6jU0c7P2E6zJRWeG1sR0e6NL7DRN0tNuUwkUt0PU8bqVo4vzoA2VEuxnw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-transform-typescript": "^7.3.2", + "@babel/preset-typescript": "^7.3.3", + "vue-template-compiler": "^2.6.11" + }, + "engines": { + "node": ">=8.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-runtime": { + "version": "6.26.0", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "dependencies": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "node_modules/babel-runtime/node_modules/core-js": { + "version": "2.6.12", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.", + "hasInstallScript": true + }, + "node_modules/babel-runtime/node_modules/regenerator-runtime": { + "version": "0.11.1", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + }, + "node_modules/bail": { + "version": "1.0.5", + "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base": { + "version": "0.11.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/batch": { + "version": "0.6.1", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + }, + "node_modules/batch-processor": { + "version": "1.0.0", + "integrity": "sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg=" + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/before-after-hook": { + "version": "2.2.2", + "integrity": "sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==" + }, + "node_modules/better-opn": { + "version": "2.1.1", + "integrity": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==", + "dependencies": { + "open": "^7.0.3" + }, + "engines": { + "node": ">8.0.0" + } + }, + "node_modules/bfj": { + "version": "6.1.2", + "integrity": "sha512-BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw==", + "dependencies": { + "bluebird": "^3.5.5", + "check-types": "^8.0.3", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/binaryextensions": { + "version": "2.3.0", + "integrity": "sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg==", + "engines": { + "node": ">=0.8" + }, + "funding": { + "url": "https://bevry.me/fund" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/bn.js": { + "version": "5.2.0", + "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==" + }, + "node_modules/body-parser": { + "version": "1.19.0", + "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" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/body-parser/node_modules/qs": { + "version": "6.7.0", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/bonjour": { + "version": "3.5.0", + "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" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + }, + "node_modules/bootstrap": { + "version": "3.4.1", + "integrity": "sha512-yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/bowser": { + "version": "1.9.4", + "integrity": "sha512-9IdMmj2KjigRq6oWhmwv1W36pDuA4STQZ8q6YO9um+x07xgYNCD3Oou+WP/3L1HNz7iqythGet3/p4wvc8AAwQ==" + }, + "node_modules/boxen": { + "version": "4.2.0", + "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^5.3.1", + "chalk": "^3.0.0", + "cli-boxes": "^2.2.0", + "string-width": "^4.1.0", + "term-size": "^2.1.0", + "type-fest": "^0.8.1", + "widest-line": "^3.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/boxen/node_modules/chalk": { + "version": "3.0.0", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/cli-boxes": { + "version": "2.2.1", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/type-fest": { + "version": "0.8.1", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brfs": { + "version": "1.6.1", + "integrity": "sha512-OfZpABRQQf+Xsmju8XE9bDjs+uU4vLREGolP7bDgcpsI17QREyZ4Bl+2KLxxx1kCgA0fAIhKQBaBYh+PEcCqYQ==", + "dependencies": { + "quote-stream": "^1.0.1", + "resolve": "^1.1.5", + "static-module": "^2.2.0", + "through2": "^2.0.0" + }, + "bin": { + "brfs": "bin/cmd.js" + } + }, + "node_modules/brfs/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/brfs/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/brfs/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/brfs/node_modules/through2": { + "version": "2.0.5", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + }, + "node_modules/browser-resolve": { + "version": "1.11.3", + "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", + "dependencies": { + "resolve": "1.1.7" + } + }, + "node_modules/browser-resolve/node_modules/resolve": { + "version": "1.1.7", + "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=" + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "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" + } + }, + "node_modules/browserify-cipher": { + "version": "1.0.1", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "node_modules/browserify-des": { + "version": "1.0.2", + "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" + } + }, + "node_modules/browserify-rsa": { + "version": "4.1.0", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dependencies": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "node_modules/browserify-sign": { + "version": "4.2.1", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dependencies": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + } + }, + "node_modules/browserify-sign/node_modules/safe-buffer": { + "version": "5.2.1", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/browserify-zlib": { + "version": "0.2.0", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dependencies": { + "pako": "~1.0.5" + } + }, + "node_modules/browserslist": { + "version": "4.17.4", + "integrity": "sha512-Zg7RpbZpIJRW3am9Lyckue7PLytvVxxhJj1CaJVlCWENsGEAOlnlt8X0ZxGRPp7Bt9o8tIRM5SEXy4BCPMJjLQ==", + "dependencies": { + "caniuse-lite": "^1.0.30001265", + "electron-to-chromium": "^1.3.867", + "escalade": "^3.1.1", + "node-releases": "^2.0.0", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/btoa-lite": { + "version": "1.0.0", + "integrity": "sha1-M3dm2hWAEhD92VbCLpxokaudAzc=" + }, + "node_modules/buffer": { + "version": "4.9.2", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/buffer-equal": { + "version": "0.0.1", + "integrity": "sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs=", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/buffer-indexof": { + "version": "1.1.1", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + }, + "node_modules/buffer/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + }, + "node_modules/builtins": { + "version": "1.0.3", + "integrity": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=" + }, + "node_modules/byline": { + "version": "5.0.0", + "integrity": "sha1-dBxSFkaOrcRXsDQQEYrXfejB3bE=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/byte-size": { + "version": "5.0.1", + "integrity": "sha512-/XuKeqWocKsYa/cBY1YbSJSWWqTi4cFgr9S6OyM7PBaPbr9zvNGwWP33vt0uqGhwDdN+y3yhbXVILEUpnwEWGw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/bytes": { + "version": "3.1.0", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/c8": { + "version": "7.10.0", + "integrity": "sha512-OAwfC5+emvA6R7pkYFVBTOtI5ruf9DahffGmIqUc9l6wEh0h7iAFP6dt/V9Ioqlr2zW5avX9U9/w1I4alTRHkA==", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@istanbuljs/schema": "^0.1.2", + "find-up": "^5.0.0", + "foreground-child": "^2.0.0", + "istanbul-lib-coverage": "^3.0.1", + "istanbul-lib-report": "^3.0.0", + "istanbul-reports": "^3.0.2", + "rimraf": "^3.0.0", + "test-exclude": "^6.0.0", + "v8-to-istanbul": "^8.0.0", + "yargs": "^16.2.0", + "yargs-parser": "^20.2.7" + }, + "bin": { + "c8": "bin/c8.js" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/c8/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/c8/node_modules/cliui": { + "version": "7.0.4", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/c8/node_modules/find-up": { + "version": "5.0.0", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/c8/node_modules/locate-path": { + "version": "6.0.0", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/c8/node_modules/p-locate": { + "version": "5.0.0", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/c8/node_modules/source-map": { + "version": "0.7.3", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/c8/node_modules/v8-to-istanbul": { + "version": "8.1.0", + "integrity": "sha512-/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/c8/node_modules/wrap-ansi": { + "version": "7.0.0", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/c8/node_modules/y18n": { + "version": "5.0.8", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/c8/node_modules/yargs": { + "version": "16.2.0", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/c8/node_modules/yargs-parser": { + "version": "20.2.9", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/cacache": { + "version": "12.0.4", + "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" + } + }, + "node_modules/cacache/node_modules/lru-cache": { + "version": "5.1.1", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/cacache/node_modules/rimraf": { + "version": "2.7.1", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/cacache/node_modules/yallist": { + "version": "3.1.1", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/cache-base": { + "version": "1.0.1", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cachedir": { + "version": "2.1.0", + "integrity": "sha512-xGBpPqoBvn3unBW7oxgb8aJn42K0m9m1/wyjmazah10Fq7bROGG3kRAE6OIyr3U3PIJUqGuebhCEdMk9OKJG0A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-me-maybe": { + "version": "1.0.1", + "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=" + }, + "node_modules/caller-callsite": { + "version": "2.0.0", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "dependencies": { + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-callsite/node_modules/callsites": { + "version": "2.0.0", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-path": { + "version": "2.0.0", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "dependencies": { + "caller-callsite": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/camelcase-keys": { + "version": "4.2.0", + "integrity": "sha1-oqpfsa9oh1glnDLBQUJteJI7m3c=", + "dependencies": { + "camelcase": "^4.1.0", + "map-obj": "^2.0.0", + "quick-lru": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/camelcase-keys/node_modules/camelcase": { + "version": "4.1.0", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001269", + "integrity": "sha512-UOy8okEVs48MyHYgV+RdW1Oiudl1H6KolybD6ZquD0VcrPSgj25omXO1S7rDydjpqaISCwA8Pyx+jUQKZwWO5w==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "node_modules/capture-exit": { + "version": "2.0.0", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dependencies": { + "rsvp": "^4.8.4" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/capture-stack-trace": { + "version": "1.0.1", + "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cardinal": { + "version": "0.4.4", + "integrity": "sha1-ylu2iltRG5D+k7ms6km97lwyv+I=", + "dependencies": { + "ansicolors": "~0.2.1", + "redeyed": "~0.4.0" + }, + "bin": { + "cdl": "bin/cdl.js" + } + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "node_modules/ccount": { + "version": "1.1.0", + "integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "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" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk/node_modules/escape-string-regexp": { + "version": "1.0.5", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/change-case": { + "version": "3.1.0", + "integrity": "sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==", + "dependencies": { + "camel-case": "^3.0.0", + "constant-case": "^2.0.0", + "dot-case": "^2.1.0", + "header-case": "^1.0.0", + "is-lower-case": "^1.1.0", + "is-upper-case": "^1.1.0", + "lower-case": "^1.1.1", + "lower-case-first": "^1.0.0", + "no-case": "^2.3.2", + "param-case": "^2.1.0", + "pascal-case": "^2.0.0", + "path-case": "^2.1.0", + "sentence-case": "^2.1.0", + "snake-case": "^2.1.0", + "swap-case": "^1.1.0", + "title-case": "^2.1.0", + "upper-case": "^1.1.1", + "upper-case-first": "^1.1.0" + } + }, + "node_modules/change-case/node_modules/camel-case": { + "version": "3.0.0", + "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=", + "dependencies": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } + }, + "node_modules/change-case/node_modules/param-case": { + "version": "2.1.1", + "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=", + "dependencies": { + "no-case": "^2.2.0" + } + }, + "node_modules/change-case/node_modules/pascal-case": { + "version": "2.0.1", + "integrity": "sha1-LVeNNFX2YNpl7KGO+VtODekSdh4=", + "dependencies": { + "camel-case": "^3.0.0", + "upper-case-first": "^1.1.0" + } + }, + "node_modules/change-emitter": { + "version": "0.1.6", + "integrity": "sha1-6LL+PX8at9aaMhma/5HqaTFAlRU=" + }, + "node_modules/char-regex": { + "version": "1.0.2", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/character-entities": { + "version": "1.2.4", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "1.1.4", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-reference-invalid": { + "version": "1.1.4", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" + }, + "node_modules/check-types": { + "version": "8.0.3", + "integrity": "sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ==" + }, + "node_modules/cheerio": { + "version": "1.0.0-rc.10", + "integrity": "sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==", + "dependencies": { + "cheerio-select": "^1.5.0", + "dom-serializer": "^1.3.2", + "domhandler": "^4.2.0", + "htmlparser2": "^6.1.0", + "parse5": "^6.0.1", + "parse5-htmlparser2-tree-adapter": "^6.0.1", + "tslib": "^2.2.0" + }, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/cheeriojs/cheerio?sponsor=1" + } + }, + "node_modules/cheerio-select": { + "version": "1.5.0", + "integrity": "sha512-qocaHPv5ypefh6YNxvnbABM07KMxExbtbfuJoIie3iZXX1ERwYmJcIiRrr9H05ucQP1k28dav8rpdDgjQd8drg==", + "dependencies": { + "css-select": "^4.1.3", + "css-what": "^5.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0", + "domutils": "^2.7.0" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cheerio/node_modules/parse5": { + "version": "6.0.1", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/chokidar": { + "version": "3.5.2", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "node_modules/chromatic": { + "version": "5.10.2", + "integrity": "sha512-JHFtZ16VanQX0X9qjacIJOrH9rVUJACilPs8dBwwQgJTZzgCZAdwgmE+WwLcxe/LuK7vM56BDTHbxC+XcnTsjw==", + "dev": true, + "dependencies": { + "@actions/core": "^1.5.0", + "@actions/github": "^5.0.0", + "@babel/preset-typescript": "^7.15.0", + "@babel/runtime": "^7.15.3", + "@chromaui/localtunnel": "^2.0.3", + "async-retry": "^1.3.3", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "dotenv": "^8.2.0", + "env-ci": "^5.0.2", + "esm": "^3.2.25", + "execa": "^5.0.0", + "fake-tag": "^2.0.0", + "fs-extra": "^10.0.0", + "https-proxy-agent": "^5.0.0", + "jsonfile": "^6.0.1", + "junit-report-builder": "2.1.0", + "listr": "0.14.3", + "meow": "^8.0.0", + "no-proxy": "^1.0.3", + "node-ask": "^1.0.1", + "node-fetch": "2.6.0", + "node-loggly-bulk": "^2.2.4", + "p-limit": "3.1.0", + "picomatch": "2.2.2", + "pkg-up": "^3.1.0", + "pluralize": "^8.0.0", + "progress-stream": "^2.0.0", + "semver": "^7.3.5", + "slash": "^3.0.0", + "string-argv": "^0.3.1", + "strip-ansi": "6.0.0", + "tmp-promise": "3.0.2", + "tree-kill": "^1.2.2", + "ts-dedent": "^1.0.0", + "util-deprecate": "^1.0.2", + "uuid": "^8.3.2", + "yarn-or-npm": "^3.0.1" + }, + "bin": { + "chroma": "bin/register.js", + "chromatic": "bin/register.js", + "chromatic-cli": "bin/register.js" + } + }, + "node_modules/chromatic/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/chromatic/node_modules/camelcase-keys": { + "version": "6.2.2", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/chromatic/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chromatic/node_modules/env-ci": { + "version": "5.3.0", + "integrity": "sha512-NLNLgoTQl/BLaCJ1zr/X8ngFE3GIOOp4+2tWTFe3nzoH7SnzOCXVDCFUjzen/+nWEtuWa4N/bV9DtatncNuDMA==", + "dev": true, + "dependencies": { + "execa": "^4.0.0", + "java-properties": "^1.0.0" + }, + "engines": { + "node": ">=10.13" + } + }, + "node_modules/chromatic/node_modules/env-ci/node_modules/execa": { + "version": "4.1.0", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/chromatic/node_modules/execa": { + "version": "5.1.1", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/chromatic/node_modules/execa/node_modules/get-stream": { + "version": "6.0.1", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/chromatic/node_modules/execa/node_modules/human-signals": { + "version": "2.1.0", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/chromatic/node_modules/fs-extra": { + "version": "10.0.0", + "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/chromatic/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/chromatic/node_modules/indent-string": { + "version": "4.0.0", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/chromatic/node_modules/map-obj": { + "version": "4.3.0", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/chromatic/node_modules/meow": { + "version": "8.1.2", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dev": true, + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/chromatic/node_modules/minimist-options": { + "version": "4.1.0", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/chromatic/node_modules/picomatch": { + "version": "2.2.2", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/chromatic/node_modules/quick-lru": { + "version": "4.0.1", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/chromatic/node_modules/redent": { + "version": "3.0.0", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chromatic/node_modules/slash": { + "version": "3.0.0", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/chromatic/node_modules/strip-ansi": { + "version": "6.0.0", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chromatic/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chromatic/node_modules/trim-newlines": { + "version": "3.0.1", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/chromatic/node_modules/ts-dedent": { + "version": "1.2.0", + "integrity": "sha512-6zSJp23uQI+Txyz5LlXMXAHpUhY4Hi0oluXny0OgIR7g/Cromq4vDBnhtbBdyIV34g0pgwxUvnvg+jLJe4c1NA==", + "dev": true, + "engines": { + "node": ">=6.10" + } + }, + "node_modules/chromatic/node_modules/type-fest": { + "version": "0.18.1", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/chromatic/node_modules/yargs-parser": { + "version": "20.2.9", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "2.0.0", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/circular-json-es6": { + "version": "2.0.2", + "integrity": "sha512-ODYONMMNb3p658Zv+Pp+/XPa5s6q7afhz3Tzyvo+VRh9WIrJ64J76ZC4GQxnlye/NesTn09jvOiuE8+xxfpwhQ==" + }, + "node_modules/cjs-module-lexer": { + "version": "0.6.0", + "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==" + }, + "node_modules/class-utils": { + "version": "0.3.6", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor": { + "version": "0.1.4", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.6", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/kind-of": { + "version": "5.1.0", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/classnames": { + "version": "2.3.1", + "integrity": "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==" + }, + "node_modules/clean-css": { + "version": "4.2.3", + "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-regexp": { + "version": "1.0.0", + "integrity": "sha1-jffHquUf02h06PjQW5GAvBGj/tc=", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/clean-regexp/node_modules/escape-string-regexp": { + "version": "1.0.5", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-boxes": { + "version": "1.0.0", + "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cli-cursor": { + "version": "2.1.0", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dependencies": { + "restore-cursor": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cli-table": { + "version": "0.3.6", + "integrity": "sha512-ZkNZbnZjKERTY5NwC2SeMeLeifSPq/pubeRoTpdr3WchLlnZg6hEgvHkK5zL7KNFdd9PmHN8lxrENUwI3cE8vQ==", + "dependencies": { + "colors": "1.0.3" + }, + "engines": { + "node": ">= 0.2.0" + } + }, + "node_modules/cli-table3": { + "version": "0.6.0", + "integrity": "sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ==", + "dependencies": { + "object-assign": "^4.1.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "colors": "^1.1.2" + } + }, + "node_modules/cli-table3/node_modules/colors": { + "version": "1.4.0", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/cli-truncate": { + "version": "2.1.0", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "dependencies": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-width": { + "version": "2.2.1", + "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==" + }, + "node_modules/cliui": { + "version": "6.0.0", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-buffer": { + "version": "1.0.0", + "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clone-stats": { + "version": "1.0.0", + "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=" + }, + "node_modules/cloneable-readable": { + "version": "1.1.3", + "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "dependencies": { + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + } + }, + "node_modules/cloneable-readable/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/cloneable-readable/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/cloneable-readable/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/clsx": { + "version": "1.1.1", + "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/co": { + "version": "4.6.0", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/code-point-at": { + "version": "1.1.0", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collapse-white-space": { + "version": "1.0.6", + "integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/colorette": { + "version": "1.4.0", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" + }, + "node_modules/colors": { + "version": "1.0.3", + "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=", + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/columnify": { + "version": "1.5.4", + "integrity": "sha1-Rzfd8ce2mop8NAVweC6UfuyOeLs=", + "dependencies": { + "strip-ansi": "^3.0.0", + "wcwidth": "^1.0.0" + } + }, + "node_modules/columnify/node_modules/ansi-regex": { + "version": "2.1.1", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/columnify/node_modules/strip-ansi": { + "version": "3.0.1", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/comma-separated-tokens": { + "version": "1.0.8", + "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/commander": { + "version": "4.1.1", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/commitizen": { + "version": "3.1.2", + "integrity": "sha512-eD0uTUsogu8ksFjFFYq75LLfXeLXsCIa27TPfOqvBI+tCx1Pp5QfKqC9oC+qTpSz3nTn9/+7TL5mE/wurB22JQ==", + "dependencies": { + "cachedir": "2.1.0", + "cz-conventional-changelog": "2.1.0", + "dedent": "0.7.0", + "detect-indent": "^5.0.0", + "find-node-modules": "2.0.0", + "find-root": "1.1.0", + "fs-extra": "^7.0.0", + "glob": "7.1.3", + "inquirer": "6.2.0", + "is-utf8": "^0.2.1", + "lodash": "4.17.14", + "minimist": "1.2.0", + "shelljs": "0.7.6", + "strip-bom": "3.0.0", + "strip-json-comments": "2.0.1" + }, + "bin": { + "commitizen": "bin/commitizen", + "git-cz": "bin/git-cz" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/commitizen/node_modules/fs-extra": { + "version": "7.0.1", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/commitizen/node_modules/glob": { + "version": "7.1.3", + "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "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" + }, + "engines": { + "node": "*" + } + }, + "node_modules/commitizen/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/commitizen/node_modules/lodash": { + "version": "4.17.14", + "integrity": "sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw==" + }, + "node_modules/commitizen/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/common-tags": { + "version": "1.8.0", + "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + }, + "node_modules/compare-func": { + "version": "1.3.4", + "integrity": "sha512-sq2sWtrqKPkEXAC8tEJA1+BqAH9GbFkGBtUOqrUX57VSfwp8xyktctk+uLoRy5eccTdxzDcVIztlYDpKs3Jv1Q==", + "dependencies": { + "array-ify": "^1.0.0", + "dot-prop": "^3.0.0" + } + }, + "node_modules/compare-versions": { + "version": "3.6.0", + "integrity": "sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==" + }, + "node_modules/component-emitter": { + "version": "1.3.0", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + }, + "node_modules/compressible": { + "version": "2.0.18", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/bytes": { + "version": "3.0.0", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/compute-scroll-into-view": { + "version": "1.0.17", + "integrity": "sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "node_modules/concat-stream": { + "version": "2.0.0", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "engines": [ + "node >= 6.0" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.0.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/config-chain": { + "version": "1.1.13", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.10", + "integrity": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==" + }, + "node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/console-browserify": { + "version": "1.2.0", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" + }, + "node_modules/constant-case": { + "version": "2.0.0", + "integrity": "sha1-QXV2TTidP6nI7NKRhu1gBSQ7akY=", + "dependencies": { + "snake-case": "^2.1.0", + "upper-case": "^1.1.1" + } + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + }, + "node_modules/content-disposition": { + "version": "0.5.3", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dependencies": { + "safe-buffer": "5.1.2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.4", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/conventional-changelog": { + "version": "3.1.24", + "integrity": "sha512-ed6k8PO00UVvhExYohroVPXcOJ/K1N0/drJHx/faTH37OIZthlecuLIRX/T6uOp682CAoVoFpu+sSEaeuH6Asg==", + "dependencies": { + "conventional-changelog-angular": "^5.0.12", + "conventional-changelog-atom": "^2.0.8", + "conventional-changelog-codemirror": "^2.0.8", + "conventional-changelog-conventionalcommits": "^4.5.0", + "conventional-changelog-core": "^4.2.1", + "conventional-changelog-ember": "^2.0.9", + "conventional-changelog-eslint": "^3.0.9", + "conventional-changelog-express": "^2.0.6", + "conventional-changelog-jquery": "^3.0.11", + "conventional-changelog-jshint": "^2.0.9", + "conventional-changelog-preset-loader": "^2.3.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-angular": { + "version": "1.6.6", + "integrity": "sha512-suQnFSqCxRwyBxY68pYTsFkG0taIdinHLNEAX5ivtw8bCRnIgnpvcHmlR/yjUyZIrNPYAoXlY1WiEKWgSE4BNg==", + "dependencies": { + "compare-func": "^1.3.1", + "q": "^1.5.1" + } + }, + "node_modules/conventional-changelog-atom": { + "version": "2.0.8", + "integrity": "sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==", + "dependencies": { + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-cli": { + "version": "2.1.1", + "integrity": "sha512-xMGQdKJ+4XFDDgfX5aK7UNFduvJMbvF5BB+g0OdVhA3rYdYyhctrIE2Al+WYdZeKTdg9YzMWF2iFPT8MupIwng==", + "dependencies": { + "add-stream": "^1.0.0", + "conventional-changelog": "^3.1.24", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "tempfile": "^3.0.0" + }, + "bin": { + "conventional-changelog": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-cli/node_modules/camelcase-keys": { + "version": "6.2.2", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dependencies": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-changelog-cli/node_modules/indent-string": { + "version": "4.0.0", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-cli/node_modules/map-obj": { + "version": "4.3.0", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-changelog-cli/node_modules/meow": { + "version": "8.1.2", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-changelog-cli/node_modules/minimist-options": { + "version": "4.1.0", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/conventional-changelog-cli/node_modules/quick-lru": { + "version": "4.0.1", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-cli/node_modules/redent": { + "version": "3.0.0", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-cli/node_modules/trim-newlines": { + "version": "3.0.1", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-cli/node_modules/type-fest": { + "version": "0.18.1", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-changelog-cli/node_modules/yargs-parser": { + "version": "20.2.9", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-codemirror": { + "version": "2.0.8", + "integrity": "sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==", + "dependencies": { + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-conventionalcommits": { + "version": "4.6.1", + "integrity": "sha512-lzWJpPZhbM1R0PIzkwzGBCnAkH5RKJzJfFQZcl/D+2lsJxAwGnDKBqn/F4C1RD31GJNn8NuKWQzAZDAVXPp2Mw==", + "dependencies": { + "compare-func": "^2.0.0", + "lodash": "^4.17.15", + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-conventionalcommits/node_modules/compare-func": { + "version": "2.0.0", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "dependencies": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "node_modules/conventional-changelog-conventionalcommits/node_modules/dot-prop": { + "version": "5.3.0", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-conventionalcommits/node_modules/is-obj": { + "version": "2.0.0", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-core": { + "version": "4.2.4", + "integrity": "sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==", + "dependencies": { + "add-stream": "^1.0.0", + "conventional-changelog-writer": "^5.0.0", + "conventional-commits-parser": "^3.2.0", + "dateformat": "^3.0.0", + "get-pkg-repo": "^4.0.0", + "git-raw-commits": "^2.0.8", + "git-remote-origin-url": "^2.0.0", + "git-semver-tags": "^4.1.1", + "lodash": "^4.17.15", + "normalize-package-data": "^3.0.0", + "q": "^1.5.1", + "read-pkg": "^3.0.0", + "read-pkg-up": "^3.0.0", + "through2": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-core/node_modules/camelcase-keys": { + "version": "6.2.2", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dependencies": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-changelog-core/node_modules/conventional-commits-parser": { + "version": "3.2.2", + "integrity": "sha512-Jr9KAKgqAkwXMRHjxDwO/zOCDKod1XdAESHAGuJX38iZ7ZzVti/tvVoysO0suMsdAObp9NQ2rHSsSbnAqZ5f5g==", + "dependencies": { + "is-text-path": "^1.0.1", + "JSONStream": "^1.0.4", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + }, + "bin": { + "conventional-commits-parser": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-core/node_modules/dargs": { + "version": "7.0.0", + "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-core/node_modules/git-raw-commits": { + "version": "2.0.10", + "integrity": "sha512-sHhX5lsbG9SOO6yXdlwgEMQ/ljIn7qMpAbJZCGfXX2fq5T8M5SrDnpYk9/4HswTildcIqatsWa91vty6VhWSaQ==", + "dependencies": { + "dargs": "^7.0.0", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + }, + "bin": { + "git-raw-commits": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-core/node_modules/hosted-git-info": { + "version": "2.8.9", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/conventional-changelog-core/node_modules/indent-string": { + "version": "4.0.0", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-core/node_modules/locate-path": { + "version": "2.0.0", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-changelog-core/node_modules/map-obj": { + "version": "4.3.0", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-changelog-core/node_modules/meow": { + "version": "8.1.2", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg": { + "version": "5.2.0", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg-up": { + "version": "7.0.1", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "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" + } + }, + "node_modules/conventional-changelog-core/node_modules/meow/node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-core/node_modules/minimist-options": { + "version": "4.1.0", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/conventional-changelog-core/node_modules/p-limit": { + "version": "1.3.0", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-changelog-core/node_modules/p-locate": { + "version": "2.0.0", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-changelog-core/node_modules/p-try": { + "version": "1.0.0", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-changelog-core/node_modules/parse-json": { + "version": "5.2.0", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-changelog-core/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-changelog-core/node_modules/quick-lru": { + "version": "4.0.1", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-core/node_modules/read-pkg-up": { + "version": "3.0.0", + "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", + "dependencies": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-changelog-core/node_modules/read-pkg-up/node_modules/find-up": { + "version": "2.1.0", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-changelog-core/node_modules/redent": { + "version": "3.0.0", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-core/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/conventional-changelog-core/node_modules/split2": { + "version": "3.2.2", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", + "dependencies": { + "readable-stream": "^3.0.0" + } + }, + "node_modules/conventional-changelog-core/node_modules/trim-newlines": { + "version": "3.0.1", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-core/node_modules/type-fest": { + "version": "0.18.1", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-changelog-core/node_modules/yargs-parser": { + "version": "20.2.9", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-ember": { + "version": "2.0.9", + "integrity": "sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==", + "dependencies": { + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-eslint": { + "version": "3.0.9", + "integrity": "sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==", + "dependencies": { + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-express": { + "version": "2.0.6", + "integrity": "sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==", + "dependencies": { + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-jquery": { + "version": "3.0.11", + "integrity": "sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==", + "dependencies": { + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-jshint": { + "version": "2.0.9", + "integrity": "sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==", + "dependencies": { + "compare-func": "^2.0.0", + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-jshint/node_modules/compare-func": { + "version": "2.0.0", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "dependencies": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "node_modules/conventional-changelog-jshint/node_modules/dot-prop": { + "version": "5.3.0", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-jshint/node_modules/is-obj": { + "version": "2.0.0", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-preset-loader": { + "version": "2.3.4", + "integrity": "sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==", + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-writer": { + "version": "5.0.0", + "integrity": "sha512-HnDh9QHLNWfL6E1uHz6krZEQOgm8hN7z/m7tT16xwd802fwgMN0Wqd7AQYVkhpsjDUx/99oo+nGgvKF657XP5g==", + "dependencies": { + "conventional-commits-filter": "^2.0.7", + "dateformat": "^3.0.0", + "handlebars": "^4.7.6", + "json-stringify-safe": "^5.0.1", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "semver": "^6.0.0", + "split": "^1.0.0", + "through2": "^4.0.0" + }, + "bin": { + "conventional-changelog-writer": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog-writer/node_modules/camelcase-keys": { + "version": "6.2.2", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dependencies": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-changelog-writer/node_modules/indent-string": { + "version": "4.0.0", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-writer/node_modules/map-obj": { + "version": "4.3.0", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-changelog-writer/node_modules/meow": { + "version": "8.1.2", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-changelog-writer/node_modules/minimist-options": { + "version": "4.1.0", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/conventional-changelog-writer/node_modules/quick-lru": { + "version": "4.0.1", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-writer/node_modules/redent": { + "version": "3.0.0", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-writer/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/conventional-changelog-writer/node_modules/trim-newlines": { + "version": "3.0.1", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog-writer/node_modules/type-fest": { + "version": "0.18.1", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-changelog-writer/node_modules/yargs-parser": { + "version": "20.2.9", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog/node_modules/compare-func": { + "version": "2.0.0", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "dependencies": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "node_modules/conventional-changelog/node_modules/conventional-changelog-angular": { + "version": "5.0.13", + "integrity": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==", + "dependencies": { + "compare-func": "^2.0.0", + "q": "^1.5.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-changelog/node_modules/dot-prop": { + "version": "5.3.0", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-changelog/node_modules/is-obj": { + "version": "2.0.0", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-commit-types": { + "version": "2.3.0", + "integrity": "sha512-6iB39PrcGYdz0n3z31kj6/Km6mK9hm9oMRhwcLnKxE7WNoeRKZbTAobliKrbYZ5jqyCvtcVEfjCiaEzhL3AVmQ==" + }, + "node_modules/conventional-commits-filter": { + "version": "2.0.7", + "integrity": "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==", + "dependencies": { + "lodash.ismatch": "^4.4.0", + "modify-values": "^1.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-commits-parser": { + "version": "2.1.7", + "integrity": "sha512-BoMaddIEJ6B4QVMSDu9IkVImlGOSGA1I2BQyOZHeLQ6qVOJLcLKn97+fL6dGbzWEiqDzfH4OkcveULmeq2MHFQ==", + "dependencies": { + "is-text-path": "^1.0.0", + "JSONStream": "^1.0.4", + "lodash": "^4.2.1", + "meow": "^4.0.0", + "split2": "^2.0.0", + "through2": "^2.0.0", + "trim-off-newlines": "^1.0.0" + }, + "bin": { + "conventional-commits-parser": "cli.js" + } + }, + "node_modules/conventional-commits-parser/node_modules/find-up": { + "version": "2.1.0", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-commits-parser/node_modules/hosted-git-info": { + "version": "2.8.9", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/conventional-commits-parser/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/conventional-commits-parser/node_modules/locate-path": { + "version": "2.0.0", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-commits-parser/node_modules/meow": { + "version": "4.0.1", + "integrity": "sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A==", + "dependencies": { + "camelcase-keys": "^4.0.0", + "decamelize-keys": "^1.0.0", + "loud-rejection": "^1.0.0", + "minimist": "^1.1.3", + "minimist-options": "^3.0.1", + "normalize-package-data": "^2.3.4", + "read-pkg-up": "^3.0.0", + "redent": "^2.0.0", + "trim-newlines": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-commits-parser/node_modules/normalize-package-data": { + "version": "2.5.0", + "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" + } + }, + "node_modules/conventional-commits-parser/node_modules/p-limit": { + "version": "1.3.0", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-commits-parser/node_modules/p-locate": { + "version": "2.0.0", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-commits-parser/node_modules/p-try": { + "version": "1.0.0", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-commits-parser/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-commits-parser/node_modules/read-pkg-up": { + "version": "3.0.0", + "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", + "dependencies": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-commits-parser/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/conventional-commits-parser/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/conventional-commits-parser/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/conventional-commits-parser/node_modules/through2": { + "version": "2.0.5", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/conventional-recommended-bump": { + "version": "5.0.1", + "integrity": "sha512-RVdt0elRcCxL90IrNP0fYCpq1uGt2MALko0eyeQ+zQuDVWtMGAy9ng6yYn3kax42lCj9+XBxQ8ZN6S9bdKxDhQ==", + "dependencies": { + "concat-stream": "^2.0.0", + "conventional-changelog-preset-loader": "^2.1.1", + "conventional-commits-filter": "^2.0.2", + "conventional-commits-parser": "^3.0.3", + "git-raw-commits": "2.0.0", + "git-semver-tags": "^2.0.3", + "meow": "^4.0.0", + "q": "^1.5.1" + }, + "bin": { + "conventional-recommended-bump": "cli.js" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/conventional-recommended-bump/node_modules/conventional-commits-parser": { + "version": "3.2.2", + "integrity": "sha512-Jr9KAKgqAkwXMRHjxDwO/zOCDKod1XdAESHAGuJX38iZ7ZzVti/tvVoysO0suMsdAObp9NQ2rHSsSbnAqZ5f5g==", + "dependencies": { + "is-text-path": "^1.0.1", + "JSONStream": "^1.0.4", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + }, + "bin": { + "conventional-commits-parser": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-recommended-bump/node_modules/conventional-commits-parser/node_modules/camelcase-keys": { + "version": "6.2.2", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dependencies": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-recommended-bump/node_modules/conventional-commits-parser/node_modules/meow": { + "version": "8.1.2", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-recommended-bump/node_modules/conventional-commits-parser/node_modules/minimist-options": { + "version": "4.1.0", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/conventional-recommended-bump/node_modules/conventional-commits-parser/node_modules/redent": { + "version": "3.0.0", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-recommended-bump/node_modules/conventional-commits-parser/node_modules/split2": { + "version": "3.2.2", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", + "dependencies": { + "readable-stream": "^3.0.0" + } + }, + "node_modules/conventional-recommended-bump/node_modules/conventional-commits-parser/node_modules/trim-newlines": { + "version": "3.0.1", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-recommended-bump/node_modules/find-up": { + "version": "2.1.0", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-recommended-bump/node_modules/git-raw-commits": { + "version": "2.0.0", + "integrity": "sha512-w4jFEJFgKXMQJ0H0ikBk2S+4KP2VEjhCvLCNqbNRQC8BgGWgLKNCO7a9K9LI+TVT7Gfoloje502sEnctibffgg==", + "dependencies": { + "dargs": "^4.0.1", + "lodash.template": "^4.0.2", + "meow": "^4.0.0", + "split2": "^2.0.0", + "through2": "^2.0.0" + }, + "bin": { + "git-raw-commits": "cli.js" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/conventional-recommended-bump/node_modules/git-raw-commits/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/conventional-recommended-bump/node_modules/git-raw-commits/node_modules/through2": { + "version": "2.0.5", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/conventional-recommended-bump/node_modules/git-semver-tags": { + "version": "2.0.3", + "integrity": "sha512-tj4FD4ww2RX2ae//jSrXZzrocla9db5h0V7ikPl1P/WwoZar9epdUhwR7XHXSgc+ZkNq72BEEerqQuicoEQfzA==", + "dependencies": { + "meow": "^4.0.0", + "semver": "^6.0.0" + }, + "bin": { + "git-semver-tags": "cli.js" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/conventional-recommended-bump/node_modules/hosted-git-info": { + "version": "2.8.9", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/conventional-recommended-bump/node_modules/indent-string": { + "version": "4.0.0", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-recommended-bump/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/conventional-recommended-bump/node_modules/locate-path": { + "version": "2.0.0", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-recommended-bump/node_modules/map-obj": { + "version": "4.3.0", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-recommended-bump/node_modules/meow": { + "version": "4.0.1", + "integrity": "sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A==", + "dependencies": { + "camelcase-keys": "^4.0.0", + "decamelize-keys": "^1.0.0", + "loud-rejection": "^1.0.0", + "minimist": "^1.1.3", + "minimist-options": "^3.0.1", + "normalize-package-data": "^2.3.4", + "read-pkg-up": "^3.0.0", + "redent": "^2.0.0", + "trim-newlines": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-recommended-bump/node_modules/meow/node_modules/normalize-package-data": { + "version": "2.5.0", + "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" + } + }, + "node_modules/conventional-recommended-bump/node_modules/meow/node_modules/read-pkg-up": { + "version": "3.0.0", + "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", + "dependencies": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-recommended-bump/node_modules/meow/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/conventional-recommended-bump/node_modules/p-limit": { + "version": "1.3.0", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-recommended-bump/node_modules/p-locate": { + "version": "2.0.0", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-recommended-bump/node_modules/p-try": { + "version": "1.0.0", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-recommended-bump/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/conventional-recommended-bump/node_modules/quick-lru": { + "version": "4.0.1", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "engines": { + "node": ">=8" + } + }, + "node_modules/conventional-recommended-bump/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/conventional-recommended-bump/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/conventional-recommended-bump/node_modules/type-fest": { + "version": "0.18.1", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-recommended-bump/node_modules/yargs-parser": { + "version": "20.2.9", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/convert-source-map": { + "version": "1.8.0", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/cookie": { + "version": "0.4.0", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "node_modules/copy-concurrently": { + "version": "1.0.5", + "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" + } + }, + "node_modules/copy-concurrently/node_modules/aproba": { + "version": "1.2.0", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "node_modules/copy-concurrently/node_modules/rimraf": { + "version": "2.7.1", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/copy-to-clipboard": { + "version": "3.3.1", + "integrity": "sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==", + "dependencies": { + "toggle-selection": "^1.0.6" + } + }, + "node_modules/core-js": { + "version": "3.8.3", + "integrity": "sha512-KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.18.3", + "integrity": "sha512-4zP6/y0a2RTHN5bRGT7PTq9lVt3WzvffTNjqnTKsXhkAYNDTkdCLOIfAdOLcQ/7TDdyRj3c+NeHe1NmF1eDScw==", + "dependencies": { + "browserslist": "^4.17.3", + "semver": "7.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat/node_modules/semver": { + "version": "7.0.0", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/core-js-pure": { + "version": "3.18.3", + "integrity": "sha512-qfskyO/KjtbYn09bn1IPkuhHl5PlJ6IzJ9s9sraJ1EqcuGyLGKzhSM1cY0zgyL9hx42eulQLZ6WaeK5ycJCkqw==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "node_modules/cosmiconfig": { + "version": "5.2.1", + "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" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cosmiconfig/node_modules/import-fresh": { + "version": "2.0.0", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cosmiconfig/node_modules/resolve-from": { + "version": "3.0.0", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "engines": { + "node": ">=4" + } + }, + "node_modules/cp-file": { + "version": "7.0.0", + "integrity": "sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==", + "dependencies": { + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "nested-error-stacks": "^2.0.0", + "p-event": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cp-file/node_modules/make-dir": { + "version": "3.1.0", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cp-file/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/cpy": { + "version": "8.1.2", + "integrity": "sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==", + "dependencies": { + "arrify": "^2.0.1", + "cp-file": "^7.0.0", + "globby": "^9.2.0", + "has-glob": "^1.0.0", + "junk": "^3.1.0", + "nested-error-stacks": "^2.1.0", + "p-all": "^2.1.0", + "p-filter": "^2.1.0", + "p-map": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cpy/node_modules/@nodelib/fs.stat": { + "version": "1.1.3", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/cpy/node_modules/array-union": { + "version": "1.0.2", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/arrify": { + "version": "2.0.1", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "engines": { + "node": ">=8" + } + }, + "node_modules/cpy/node_modules/braces": { + "version": "2.3.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/dir-glob": { + "version": "2.2.2", + "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", + "dependencies": { + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cpy/node_modules/fast-glob": { + "version": "2.2.7", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", + "dependencies": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/cpy/node_modules/fill-range": { + "version": "4.0.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/glob-parent": { + "version": "3.1.0", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/cpy/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/globby": { + "version": "9.2.0", + "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==", + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/cpy/node_modules/ignore": { + "version": "4.0.6", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/cpy/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/micromatch": { + "version": "3.1.10", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/p-map": { + "version": "3.0.0", + "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cpy/node_modules/path-type": { + "version": "3.0.0", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cpy/node_modules/path-type/node_modules/pify": { + "version": "3.0.0", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "engines": { + "node": ">=4" + } + }, + "node_modules/cpy/node_modules/pify": { + "version": "4.0.1", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/cpy/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/create-ecdh": { + "version": "4.0.4", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + } + }, + "node_modules/create-ecdh/node_modules/bn.js": { + "version": "4.12.0", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/create-error-class": { + "version": "3.0.2", + "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", + "dependencies": { + "capture-stack-trace": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/create-hash": { + "version": "1.2.0", + "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" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "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" + } + }, + "node_modules/create-react-context": { + "version": "0.3.0", + "integrity": "sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==", + "dependencies": { + "gud": "^1.0.0", + "warning": "^4.0.3" + }, + "peerDependencies": { + "prop-types": "^15.0.0", + "react": "^0.14.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/cross-fetch": { + "version": "2.2.2", + "integrity": "sha1-pH/09/xxLauo9qaVoRyUhEDUVyM=", + "dependencies": { + "node-fetch": "2.1.2", + "whatwg-fetch": "2.0.4" + } + }, + "node_modules/cross-fetch/node_modules/node-fetch": { + "version": "2.1.2", + "integrity": "sha1-q4hOjn5X44qUR1POxwb3iNF2i7U=", + "engines": { + "node": "4.x || >=6.0.0" + } + }, + "node_modules/cross-fetch/node_modules/whatwg-fetch": { + "version": "2.0.4", + "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-browserify": { + "version": "3.12.0", + "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" + }, + "engines": { + "node": "*" + } + }, + "node_modules/css-in-js-utils": { + "version": "2.0.1", + "integrity": "sha512-PJF0SpJT+WdbVVt0AOYp9C8GnuruRlL/UFW7932nLWmFLQTaWEzTBQEx7/hn4BuV+WON75iAViSUJLiU3PKbpA==", + "dependencies": { + "hyphenate-style-name": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "node_modules/css-loader": { + "version": "3.6.0", + "integrity": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==", + "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.32", + "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.1.0", + "schema-utils": "^2.7.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/css-loader/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/css-select": { + "version": "4.1.3", + "integrity": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-what": { + "version": "5.1.0", + "integrity": "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/csscolorparser": { + "version": "1.0.3", + "integrity": "sha1-s085HupNqPPpgjHizNjfnAQfFxs=" + }, + "node_modules/cssesc": { + "version": "3.0.0", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssfilter": { + "version": "0.0.10", + "integrity": "sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=" + }, + "node_modules/cssom": { + "version": "0.4.4", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + }, + "node_modules/csstype": { + "version": "2.6.18", + "integrity": "sha512-RSU6Hyeg14am3Ah4VZEmeX8H7kLwEEirXe6aU2IPfKNvhXwTflK5HQRDNI0ypQXoqmm+QPyG2IaPuQE5zMwSIQ==" + }, + "node_modules/currently-unhandled": { + "version": "0.4.1", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "dependencies": { + "array-find-index": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cyclist": { + "version": "1.0.1", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=" + }, + "node_modules/cz-conventional-changelog": { + "version": "2.1.0", + "integrity": "sha1-L0vHOQ4yROTfKT5ro1Hkx0Cnx2Q=", + "dependencies": { + "conventional-commit-types": "^2.0.0", + "lodash.map": "^4.5.1", + "longest": "^1.0.1", + "right-pad": "^1.0.1", + "word-wrap": "^1.0.3" + } + }, + "node_modules/d3": { + "version": "3.5.17", + "integrity": "sha1-vEZ0gAQ3iyGjYMn8fPUjF5B2L7g=" + }, + "node_modules/d3-array": { + "version": "1.2.4", + "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" + }, + "node_modules/d3-cloud": { + "version": "1.2.5", + "integrity": "sha512-4s2hXZgvs0CoUIw31oBAGrHt9Kt/7P9Ik5HIVzISFiWkD0Ga2VLAuO/emO/z1tYIpE7KG2smB4PhMPfFMJpahw==", + "dependencies": { + "d3-dispatch": "^1.0.3" + } + }, + "node_modules/d3-collection": { + "version": "1.0.7", + "integrity": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==" + }, + "node_modules/d3-color": { + "version": "1.4.1", + "integrity": "sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==" + }, + "node_modules/d3-dispatch": { + "version": "1.0.6", + "integrity": "sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA==" + }, + "node_modules/d3-drag": { + "version": "1.2.5", + "integrity": "sha512-rD1ohlkKQwMZYkQlYVCrSFxsWPzI97+W+PaEIBNTMxRuxz9RF0Hi5nJWHGVJ3Om9d2fRTe1yOBINJyy/ahV95w==", + "dependencies": { + "d3-dispatch": "1", + "d3-selection": "1" + } + }, + "node_modules/d3-ease": { + "version": "1.0.7", + "integrity": "sha512-lx14ZPYkhNx0s/2HX5sLFUI3mbasHjSSpwO/KaaNACweVwxUruKyWVcb293wMv1RqTPZyZ8kSZ2NogUZNcLOFQ==" + }, + "node_modules/d3-format": { + "version": "1.4.5", + "integrity": "sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==" + }, + "node_modules/d3-geo-projection": { + "version": "0.2.16", + "integrity": "sha1-SZTs0QM92xUztsTFUoocgdzClCc=", + "dependencies": { + "brfs": "^1.3.0" + } + }, + "node_modules/d3-hierarchy": { + "version": "1.1.9", + "integrity": "sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ==" + }, + "node_modules/d3-interpolate": { + "version": "1.4.0", + "integrity": "sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==", + "dependencies": { + "d3-color": "1" + } + }, + "node_modules/d3-path": { + "version": "1.0.9", + "integrity": "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==" + }, + "node_modules/d3-queue": { + "version": "2.0.3", + "integrity": "sha1-B/vaOsrlNYqcUpmq+ICt8JU+0sI=" + }, + "node_modules/d3-sankey": { + "version": "0.4.2", + "integrity": "sha1-NKFRLytEBqNfgOrH/rz1gi2+xa0=", + "dependencies": { + "d3-array": "1", + "d3-collection": "1", + "d3-interpolate": "1" + } + }, + "node_modules/d3-sankey-diagram": { + "version": "0.7.3", + "integrity": "sha512-k9DOe7MaLWhWV6J/aqY/CGw88Briu8drTQ+uGGyQg55MIR2WXjKUXryLs0ONFmRQkOSH1F+TSz5XiMc4KwKtuA==", + "dependencies": { + "d3-array": "^1.0.2", + "d3-collection": "^1.0.2", + "d3-dispatch": "^1.0.3", + "d3-format": "^1.1.1", + "d3-interpolate": "^1.1.3", + "d3-selection": "^1.0.3", + "d3-transition": "^1.0.4", + "graphlib": "~2.1.0" + } + }, + "node_modules/d3-scale": { + "version": "3.3.0", + "integrity": "sha512-1JGp44NQCt5d1g+Yy+GeOnZP7xHo0ii8zsQp6PGzd+C1/dl0KGsp9A7Mxwp+1D1o4unbTTxVdU/ZOIEBoeZPbQ==", + "dependencies": { + "d3-array": "^2.3.0", + "d3-format": "1 - 2", + "d3-interpolate": "1.2.0 - 2", + "d3-time": "^2.1.1", + "d3-time-format": "2 - 3" + } + }, + "node_modules/d3-scale-chromatic": { + "version": "2.0.0", + "integrity": "sha512-LLqy7dJSL8yDy7NRmf6xSlsFZ6zYvJ4BcWFE4zBrOPnQERv9zj24ohnXKRbyi9YHnYV+HN1oEO3iFK971/gkzA==", + "dependencies": { + "d3-color": "1 - 2", + "d3-interpolate": "1 - 2" + } + }, + "node_modules/d3-scale/node_modules/d3-array": { + "version": "2.12.1", + "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", + "dependencies": { + "internmap": "^1.0.0" + } + }, + "node_modules/d3-scale/node_modules/d3-time": { + "version": "2.1.1", + "integrity": "sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==", + "dependencies": { + "d3-array": "2" + } + }, + "node_modules/d3-selection": { + "version": "1.4.2", + "integrity": "sha512-SJ0BqYihzOjDnnlfyeHT0e30k0K1+5sR3d5fNueCNeuhZTnGw4M4o8mqJchSwgKMXCNFo+e2VTChiSJ0vYtXkg==" + }, + "node_modules/d3-shape": { + "version": "1.3.7", + "integrity": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==", + "dependencies": { + "d3-path": "1" + } + }, + "node_modules/d3-svg-legend": { + "version": "1.13.0", + "integrity": "sha1-YhdHjJrdnWLLMzYX4ZYTEaQaTbM=", + "peerDependencies": { + "d3": "^3.0.0" + } + }, + "node_modules/d3-time": { + "version": "1.1.0", + "integrity": "sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==" + }, + "node_modules/d3-time-format": { + "version": "2.3.0", + "integrity": "sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ==", + "dependencies": { + "d3-time": "1" + } + }, + "node_modules/d3-timer": { + "version": "1.0.10", + "integrity": "sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw==" + }, + "node_modules/d3-tip": { + "version": "0.9.1", + "integrity": "sha512-EVBfG9d+HnjIoyVXfhpytWxlF59JaobwizqMX9EBXtsFmJytjwHeYiUs74ldHQjE7S9vzfKTx2LCtvUrIbuFYg==", + "dependencies": { + "d3-collection": "^1.0.4", + "d3-selection": "^1.3.0" + }, + "engines": { + "node": ">=4.2.6" + } + }, + "node_modules/d3-transition": { + "version": "1.3.2", + "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" + } + }, + "node_modules/d3-voronoi": { + "version": "1.1.4", + "integrity": "sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg==" + }, + "node_modules/d3-zoom": { + "version": "1.8.3", + "integrity": "sha512-VoLXTK4wvy1a0JpH2Il+F2CiOhVu7VRXWF5M/LroMIh3/zBAC3WAt7QoIvPibOavVo20hN6/37vwAsdBejLyKQ==", + "dependencies": { + "d3-dispatch": "1", + "d3-drag": "1", + "d3-interpolate": "1", + "d3-selection": "1", + "d3-transition": "1" + } + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.7", + "integrity": "sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw==" + }, + "node_modules/dargs": { + "version": "4.1.0", + "integrity": "sha1-A6nbtLXC8Tm/FK5T8LiipqhvThc=", + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dashdash": { + "version": "1.14.1", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/data-urls": { + "version": "2.0.0", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/datamaps": { + "version": "0.5.9", + "integrity": "sha512-GUXpO713URNzaExVUgBtqA5fr2UuxUG/fVitI04zEFHVL2FHSjd672alHq8E16oQqRNzF0m1bmx8WlTnDrGSqQ==", + "dependencies": { + "@types/d3": "3.5.38", + "d3": "^3.5.6", + "topojson": "^1.6.19" + } + }, + "node_modules/datatables.net": { + "version": "1.11.3", + "integrity": "sha512-VMj5qEaTebpNurySkM6jy6sGpl+s6onPK8xJhYr296R/vUBnz1+id16NVqNf9z5aR076OGcpGHCuiTuy4E05oQ==", + "dependencies": { + "jquery": ">=1.7" + } + }, + "node_modules/datatables.net-bs": { + "version": "1.11.3", + "integrity": "sha512-Db1YwAhO0QAWQbZTsKriUrOInT66+xaA+fV616KTKpQt5Zt+p6OsEKK+xv8LxLgG8qu5dPwMBlkhqSiS/hV2sg==", + "dependencies": { + "datatables.net": ">=1.10.25", + "jquery": ">=1.7" + } + }, + "node_modules/date-fns": { + "version": "1.30.1", + "integrity": "sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==", + "dev": true + }, + "node_modules/date-format": { + "version": "0.0.2", + "integrity": "sha1-+v1Ej3IRXvHitzkVWukvK+bCjdE=", + "dev": true + }, + "node_modules/dateformat": { + "version": "3.0.3", + "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==", + "engines": { + "node": "*" + } + }, + "node_modules/dayjs": { + "version": "1.10.7", + "integrity": "sha512-P6twpd70BcPK34K26uJ1KT3wlhpuOAPoMwJzpsIWUxHZ7wpmbdZL/hQqBDfz7hGurYSa5PhzdhDHtt319hL3ig==" + }, + "node_modules/de-indent": { + "version": "1.0.2", + "integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=" + }, + "node_modules/debug": { + "version": "4.3.2", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/debuglog": { + "version": "1.0.1", + "integrity": "sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=", + "engines": { + "node": "*" + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decamelize-keys": { + "version": "1.1.0", + "integrity": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=", + "dependencies": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decimal.js": { + "version": "10.3.1", + "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==" + }, + "node_modules/decode-uri-component": { + "version": "0.2.0", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" + }, + "node_modules/deep-equal": { + "version": "1.1.1", + "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" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-equal-ident": { + "version": "1.1.1", + "integrity": "sha1-BvS4nlNxDNbOpKd4HHqVZkLejck=", + "dependencies": { + "lodash.isequal": "^3.0" + } + }, + "node_modules/deep-equal-ident/node_modules/lodash.isequal": { + "version": "3.0.4", + "integrity": "sha1-HDXrO27wzR/1F0Pj6jz3/f/ay2Q=", + "dependencies": { + "lodash._baseisequal": "^3.0.0", + "lodash._bindcallback": "^3.0.0" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "node_modules/deep-object-diff": { + "version": "1.1.0", + "integrity": "sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw==" + }, + "node_modules/deepmerge": { + "version": "4.2.2", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "4.2.0", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/cross-spawn": { + "version": "6.0.5", + "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" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/default-gateway/node_modules/execa": { + "version": "1.0.0", + "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" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/get-stream": { + "version": "4.1.0", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/is-stream": { + "version": "1.1.0", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/npm-run-path": { + "version": "2.0.2", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/default-gateway/node_modules/path-key": { + "version": "2.0.1", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "engines": { + "node": ">=4" + } + }, + "node_modules/default-gateway/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/default-gateway/node_modules/shebang-command": { + "version": "1.2.0", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/shebang-regex": { + "version": "1.0.0", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/defaults": { + "version": "1.0.3", + "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "dependencies": { + "clone": "^1.0.2" + } + }, + "node_modules/define-properties": { + "version": "1.1.3", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del": { + "version": "4.1.1", + "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" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/array-union": { + "version": "1.0.2", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby": { + "version": "6.1.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/pify": { + "version": "4.0.1", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/rimraf": { + "version": "2.7.1", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/delegates": { + "version": "1.0.0", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" + }, + "node_modules/depd": { + "version": "1.1.2", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/deprecation": { + "version": "2.3.1", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" + }, + "node_modules/des.js": { + "version": "1.0.1", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/destroy": { + "version": "1.0.4", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "node_modules/detab": { + "version": "2.0.4", + "integrity": "sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==", + "dependencies": { + "repeat-string": "^1.5.4" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/detect-file": { + "version": "1.0.0", + "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-indent": { + "version": "5.0.0", + "integrity": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=", + "engines": { + "node": ">=4" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + }, + "node_modules/detect-port": { + "version": "1.3.0", + "integrity": "sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/detect-port/node_modules/debug": { + "version": "2.6.9", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port/node_modules/ms": { + "version": "2.0.0", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/dezalgo": { + "version": "1.0.3", + "integrity": "sha1-f3Qt4Gb8dIvI24IFad3c5Jvw1FY=", + "dependencies": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "node_modules/diff": { + "version": "4.0.2", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/diff-sequences": { + "version": "26.6.2", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/diffie-hellman": { + "version": "5.0.3", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dependencies": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "node_modules/diffie-hellman/node_modules/bn.js": { + "version": "4.12.0", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/discontinuous-range": { + "version": "1.0.0", + "integrity": "sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=" + }, + "node_modules/distributions": { + "version": "1.1.0", + "integrity": "sha512-mufW9T1kRlzLVAaekUhgdfcMgX2r/zYQmJx3sGdUAwe0/JSQWey0XgqiDtfUUqYcr/QWHCnBd2M/v45tS/+YAQ==", + "dependencies": { + "mathfn": "^1.0.0" + } + }, + "node_modules/dnode-protocol": { + "version": "0.2.2", + "integrity": "sha1-URUdFvw7X4SBXuC5SXoQYdDRlJ0=", + "dependencies": { + "jsonify": "~0.0.0", + "traverse": "~0.6.3" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/dnode-weak-napi": { + "version": "1.2.2", + "integrity": "sha512-xn/HTB0C5gA7bW12SCkYbkqWoTdQquR7kxInjnZYh3egkEj/ys02fDDAw/7XVq+0fYWFgD7ewuV8w9K5LAr+zw==", + "dependencies": { + "dnode-protocol": "~0.2.2", + "jsonify": "~0.0.0" + }, + "optionalDependencies": { + "weak-napi": "^1.0.3" + } + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + }, + "node_modules/dns-packet": { + "version": "1.3.4", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dependencies": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/dns-txt": { + "version": "2.0.2", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dependencies": { + "buffer-indexof": "^1.0.0" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-accessibility-api": { + "version": "0.5.9", + "integrity": "sha512-+KPF4o71fl6NrdnqIrJc6m44NA+Rhf1h7In2MRznejSQasWkjqmHOBUlk+pXJ77cVOSYyZeNHFwn/sjotB6+Sw==" + }, + "node_modules/dom-align": { + "version": "1.12.2", + "integrity": "sha512-pHuazgqrsTFrGU2WLDdXxCFabkdQDx72ddkraZNih1KsMcN5qsRSTR9O4VJRlwTPCPb5COYg3LOfiMHHcPInHg==" + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/dom-helpers/node_modules/csstype": { + "version": "3.0.9", + "integrity": "sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==" + }, + "node_modules/dom-serializer": { + "version": "1.3.2", + "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom-storage": { + "version": "2.1.0", + "integrity": "sha512-g6RpyWXzl0RR6OTElHKBl7nwnK87GUyZMYC7JWsB/IA73vpqK2K6LT39x4VepLxlSsWBFrPVLnsSR5Jyty0+2Q==", + "engines": { + "node": "*" + } + }, + "node_modules/dom-walk": { + "version": "0.1.2", + "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" + }, + "node_modules/domain-browser": { + "version": "1.2.0", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "engines": { + "node": ">=0.4", + "npm": ">=1.2" + } + }, + "node_modules/domelementtype": { + "version": "2.2.0", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domexception": { + "version": "2.0.1", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/domhandler": { + "version": "4.2.2", + "integrity": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/dompurify": { + "version": "2.3.3", + "integrity": "sha512-dqnqRkPMAjOZE0FogZ+ceJNM2dZ3V/yNOuFB7+39qpO93hHhfRpHw3heYQC7DPK9FqbQTfBKUJhiSfz4MvXYwg==" + }, + "node_modules/domutils": { + "version": "2.8.0", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "2.1.1", + "integrity": "sha1-NNzzf1Co6TwrO8qLt/uRVcfaO+4=", + "dependencies": { + "no-case": "^2.2.0" + } + }, + "node_modules/dot-prop": { + "version": "3.0.0", + "integrity": "sha1-G3CK8JSknJoOfbyteQq6U52sEXc=", + "dependencies": { + "is-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dotenv": { + "version": "8.6.0", + "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==", + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-defaults": { + "version": "1.1.1", + "integrity": "sha512-6fPRo9o/3MxKvmRZBD3oNFdxODdhJtIy1zcJeUSCs6HCy4tarUpd+G67UTU9tF6OWXeSPqsm4fPAB+2eY9Rt9Q==", + "dependencies": { + "dotenv": "^6.2.0" + } + }, + "node_modules/dotenv-defaults/node_modules/dotenv": { + "version": "6.2.0", + "integrity": "sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "node_modules/dotenv-webpack": { + "version": "1.8.0", + "integrity": "sha512-o8pq6NLBehtrqA8Jv8jFQNtG9nhRtVqmoD4yWbgUyoU3+9WBlPe+c2EAiaJok9RB28QvrWvdWLZGeTT5aATDMg==", + "dependencies": { + "dotenv-defaults": "^1.0.2" + }, + "peerDependencies": { + "webpack": "^1 || ^2 || ^3 || ^4" + } + }, + "node_modules/download-stats": { + "version": "0.3.4", + "integrity": "sha512-ic2BigbyUWx7/CBbsfGjf71zUNZB4edBGC3oRliSzsoNmvyVx3Ycfp1w3vp2Y78Ee0eIIkjIEO5KzW0zThDGaA==", + "devOptional": true, + "dependencies": { + "JSONStream": "^1.2.1", + "lazy-cache": "^2.0.1", + "moment": "^2.15.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/duplexer": { + "version": "0.1.2", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "node_modules/duplexer2": { + "version": "0.1.4", + "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", + "dependencies": { + "readable-stream": "^2.0.2" + } + }, + "node_modules/duplexer2/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/duplexer2/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/duplexer2/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/duplexer3": { + "version": "0.1.4", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" + }, + "node_modules/duplexify": { + "version": "3.7.1", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/duplexify/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/duplexify/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/duplexify/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/earcut": { + "version": "2.2.3", + "integrity": "sha512-iRDI1QeCQIhMCZk48DRDMVgQSSBDmbzzNhnxIo+pwx3swkfjMh6vh0nWLq1NdvGHLKH6wIrAM3vQWeTj6qeoug==" + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/echarts": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/echarts/-/echarts-5.2.2.tgz", + "integrity": "sha512-yxuBfeIH5c+0FsoRP60w4De6omXhA06c7eUYBsC1ykB6Ys2yK5fSteIYWvkJ4xJVLQgCvAdO8C4mN6MLeJpBaw==", + "dependencies": { + "tslib": "2.3.0", + "zrender": "5.2.1" + } + }, + "node_modules/echarts/node_modules/tslib": { + "version": "2.3.0", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + }, + "node_modules/editions": { + "version": "2.3.1", + "integrity": "sha512-ptGvkwTvGdGfC0hfhKg0MT+TRLRKGtUiWGBInxOm5pz7ssADezahjCUaYuZ8Dr+C05FW0AECIIPt4WBxVINEhA==", + "dependencies": { + "errlop": "^2.0.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=0.8" + }, + "funding": { + "url": "https://bevry.me/fund" + } + }, + "node_modules/editions/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/editorconfig": { + "version": "0.15.3", + "integrity": "sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==", + "dependencies": { + "commander": "^2.19.0", + "lru-cache": "^4.1.5", + "semver": "^5.6.0", + "sigmund": "^1.0.1" + }, + "bin": { + "editorconfig": "bin/editorconfig" + } + }, + "node_modules/editorconfig/node_modules/commander": { + "version": "2.20.3", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/editorconfig/node_modules/lru-cache": { + "version": "4.1.5", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/editorconfig/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/editorconfig/node_modules/yallist": { + "version": "2.1.2", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "node_modules/ejs": { + "version": "2.7.4", + "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==", + "hasInstallScript": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.3.873", + "integrity": "sha512-TiHlCgl2uP26Z0c67u442c0a2MZCWZNCRnPTQDPhVJ4h9G6z2zU0lApD9H0K9R5yFL5SfdaiVsVD2izOY24xBQ==" + }, + "node_modules/elegant-spinner": { + "version": "1.0.1", + "integrity": "sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/element-resize-detector": { + "version": "1.2.3", + "integrity": "sha512-+dhNzUgLpq9ol5tyhoG7YLoXL3ssjfFW+0gpszXPwRU6NjGr1fVHMEAF8fVzIiRJq57Nre0RFeIjJwI8Nh2NmQ==", + "dependencies": { + "batch-processor": "1.0.0" + } + }, + "node_modules/elliptic": { + "version": "6.5.4", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/email-addresses": { + "version": "3.1.0", + "integrity": "sha512-k0/r7GrWVL32kZlGwfPNgB2Y/mMXVTq/decgLczm/j34whdaspNrZO8CnXPf1laaHxI6ptUlsnAxN+UAPw+fzg==" + }, + "node_modules/emittery": { + "version": "0.7.2", + "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodable": { + "version": "0.7.8", + "integrity": "sha512-rh5isin1c3ZJuultMyJZGBRbGIh8IrVHQuwlEG3lPMGZQ5yQUb2STIbXGGEbSifxT4POnojKjTxhm3ITTSdriw==", + "dependencies": { + "@encodable/color": "^1.1.0", + "@encodable/format": "^1.0.5", + "@types/d3-array": "^2.0.0", + "@types/d3-interpolate": "^1.3.1", + "@types/d3-scale": "^2.1.1", + "@types/d3-time": "^1.0.10", + "@types/lodash.get": "^4.4.6", + "d3-array": "^2.3.1", + "d3-interpolate": "^2.0.1", + "d3-scale": "^3.0.1", + "d3-time": "^2.0.0", + "lodash.get": "^4.4.2", + "reselect": "^4.0.0" + }, + "peerDependencies": { + "global-box": "*" + } + }, + "node_modules/encodable/node_modules/d3-array": { + "version": "2.12.1", + "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", + "dependencies": { + "internmap": "^1.0.0" + } + }, + "node_modules/encodable/node_modules/d3-interpolate": { + "version": "2.0.1", + "integrity": "sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ==", + "dependencies": { + "d3-color": "1 - 2" + } + }, + "node_modules/encodable/node_modules/d3-time": { + "version": "2.1.1", + "integrity": "sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==", + "dependencies": { + "d3-array": "2" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/encoding": { + "version": "0.1.13", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/endent": { + "version": "2.1.0", + "integrity": "sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==", + "dependencies": { + "dedent": "^0.7.0", + "fast-json-parse": "^1.0.3", + "objectorarray": "^1.0.5" + } + }, + "node_modules/enhanced-resolve": { + "version": "0.9.1", + "integrity": "sha1-TW5omzcl+GCQknzMhs2fFjW4ni4=", + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.2.0", + "tapable": "^0.1.8" + }, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/enquirer": { + "version": "2.3.6", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dependencies": { + "ansi-colors": "^4.1.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/env-ci": { + "version": "4.5.2", + "integrity": "sha512-lS+edpNp2+QXEPkx6raEMIjKxKKWnJ4+VWzovYJ2NLYiJAYenSAXotFfVdgaFxdbVnvAbUI8epQDa1u12ERxfQ==", + "dependencies": { + "execa": "^3.2.0", + "java-properties": "^1.0.0" + }, + "engines": { + "node": ">=8.3" + } + }, + "node_modules/env-ci/node_modules/execa": { + "version": "3.4.0", + "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==", + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": "^8.12.0 || >=9.7.0" + } + }, + "node_modules/env-ci/node_modules/p-finally": { + "version": "2.0.1", + "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/env-paths": { + "version": "2.2.1", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/envinfo": { + "version": "7.8.1", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/enzyme": { + "version": "3.11.0", + "integrity": "sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==", + "dependencies": { + "array.prototype.flat": "^1.2.3", + "cheerio": "^1.0.0-rc.3", + "enzyme-shallow-equal": "^1.0.1", + "function.prototype.name": "^1.1.2", + "has": "^1.0.3", + "html-element-map": "^1.2.0", + "is-boolean-object": "^1.0.1", + "is-callable": "^1.1.5", + "is-number-object": "^1.0.4", + "is-regex": "^1.0.5", + "is-string": "^1.0.5", + "is-subset": "^0.1.1", + "lodash.escape": "^4.0.1", + "lodash.isequal": "^4.5.0", + "object-inspect": "^1.7.0", + "object-is": "^1.0.2", + "object.assign": "^4.1.0", + "object.entries": "^1.1.1", + "object.values": "^1.1.1", + "raf": "^3.4.1", + "rst-selector-parser": "^2.2.3", + "string.prototype.trim": "^1.2.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/enzyme-adapter-react-16": { + "version": "1.15.6", + "integrity": "sha512-yFlVJCXh8T+mcQo8M6my9sPgeGzj85HSHi6Apgf1Cvq/7EL/J9+1JoJmJsRxZgyTvPMAqOEpRSu/Ii/ZpyOk0g==", + "dependencies": { + "enzyme-adapter-utils": "^1.14.0", + "enzyme-shallow-equal": "^1.0.4", + "has": "^1.0.3", + "object.assign": "^4.1.2", + "object.values": "^1.1.2", + "prop-types": "^15.7.2", + "react-is": "^16.13.1", + "react-test-renderer": "^16.0.0-0", + "semver": "^5.7.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "peerDependencies": { + "enzyme": "^3.0.0", + "react": "^16.0.0-0", + "react-dom": "^16.0.0-0" + } + }, + "node_modules/enzyme-adapter-react-16/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/enzyme-adapter-utils": { + "version": "1.14.0", + "integrity": "sha512-F/z/7SeLt+reKFcb7597IThpDp0bmzcH1E9Oabqv+o01cID2/YInlqHbFl7HzWBl4h3OdZYedtwNDOmSKkk0bg==", + "dependencies": { + "airbnb-prop-types": "^2.16.0", + "function.prototype.name": "^1.1.3", + "has": "^1.0.3", + "object.assign": "^4.1.2", + "object.fromentries": "^2.0.3", + "prop-types": "^15.7.2", + "semver": "^5.7.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "peerDependencies": { + "react": "0.13.x || 0.14.x || ^15.0.0-0 || ^16.0.0-0" + } + }, + "node_modules/enzyme-adapter-utils/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/enzyme-matchers": { + "version": "7.1.2", + "integrity": "sha512-03WqAg2XDl7id9rARIO97HQ1JIw9F2heJ3R4meGu/13hx0ULTDEgl0E67MGl2Uq1jq1DyRnJfto1/VSzskdV5A==", + "dependencies": { + "circular-json-es6": "^2.0.1", + "deep-equal-ident": "^1.1.1" + }, + "peerDependencies": { + "enzyme": ">=3.4.0" + } + }, + "node_modules/enzyme-shallow-equal": { + "version": "1.0.4", + "integrity": "sha512-MttIwB8kKxypwHvRynuC3ahyNc+cFbR8mjVIltnmzQ0uKGqmsfO4bfBuLxb0beLNPhjblUEYvEbsg+VSygvF1Q==", + "dependencies": { + "has": "^1.0.3", + "object-is": "^1.1.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/enzyme-to-json": { + "version": "3.6.2", + "integrity": "sha512-Ynm6Z6R6iwQ0g2g1YToz6DWhxVnt8Dy1ijR2zynRKxTyBGA8rCDXU3rs2Qc4OKvUvc2Qoe1bcFK6bnPs20TrTg==", + "dependencies": { + "@types/cheerio": "^0.22.22", + "lodash": "^4.17.21", + "react-is": "^16.12.0" + }, + "engines": { + "node": ">=6.0.0" + }, + "peerDependencies": { + "enzyme": "^3.4.0" + } + }, + "node_modules/err-code": { + "version": "1.1.2", + "integrity": "sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA=" + }, + "node_modules/errlop": { + "version": "2.2.0", + "integrity": "sha512-e64Qj9+4aZzjzzFpZC7p5kmm/ccCrbLhAJplhsDXQFs87XTsXwOpH4s1Io2s90Tau/8r2j9f4l/thhDevRjzxw==", + "engines": { + "node": ">=0.8" + }, + "funding": { + "url": "https://bevry.me/fund" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error": { + "version": "7.2.1", + "integrity": "sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==", + "dependencies": { + "string-template": "~0.2.1" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.0.6", + "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==", + "dependencies": { + "stackframe": "^1.1.1" + } + }, + "node_modules/es-abstract": { + "version": "1.19.1", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" + }, + "node_modules/es-get-iterator": { + "version": "1.1.2", + "integrity": "sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.0", + "has-symbols": "^1.0.1", + "is-arguments": "^1.1.0", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.5", + "isarray": "^2.0.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es5-shim": { + "version": "4.6.2", + "integrity": "sha512-n0XTVMGps+Deyr38jtqKPR5F5hb9owYeRQcKJW39eFvzUk/u/9Ww315werRzbiNMnHCUw/YHDPBphTlEnzdi+A==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/es6-promise": { + "version": "4.2.8", + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" + }, + "node_modules/es6-promisify": { + "version": "5.0.0", + "integrity": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=", + "dependencies": { + "es6-promise": "^4.0.3" + } + }, + "node_modules/es6-shim": { + "version": "0.35.6", + "integrity": "sha512-EmTr31wppcaIAgblChZiuN/l9Y7DPyw8Xtbg7fIVngn6zMW+IEBJDJngeKC3x6wr0V/vcA2wqeFnaw1bFJbDdA==" + }, + "node_modules/escalade": { + "version": "3.1.1", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/escodegen": { + "version": "2.0.0", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/levn": { + "version": "0.3.0", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/optionator": { + "version": "0.8.3", + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/prelude-ls": { + "version": "1.1.2", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/escodegen/node_modules/type-check": { + "version": "0.3.2", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/eslint": { + "version": "7.32.0", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "dependencies": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-ast-utils": { + "version": "1.1.0", + "integrity": "sha512-otzzTim2/1+lVrlH19EfQQJEhVJSu0zOb9ygb3iapN6UlyaDtyRq4b5U1FuW0v1lRa9Fp/GJyHkSwm6NqABgCA==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.zip": "^4.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-config-airbnb": { + "version": "18.2.1", + "integrity": "sha512-glZNDEZ36VdlZWoxn/bUR1r/sdFKPd1mHPbqUtkctgNG4yT2DLLtJ3D+yCV+jzZCc2V1nBVkmdknOJBZ5Hc0fg==", + "dependencies": { + "eslint-config-airbnb-base": "^14.2.1", + "object.assign": "^4.1.2", + "object.entries": "^1.1.2" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "eslint": "^5.16.0 || ^6.8.0 || ^7.2.0", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-jsx-a11y": "^6.4.1", + "eslint-plugin-react": "^7.21.5", + "eslint-plugin-react-hooks": "^4 || ^3 || ^2.3.0 || ^1.7.0" + } + }, + "node_modules/eslint-config-airbnb-base": { + "version": "14.2.1", + "integrity": "sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==", + "dependencies": { + "confusing-browser-globals": "^1.0.10", + "object.assign": "^4.1.2", + "object.entries": "^1.1.2" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "eslint": "^5.16.0 || ^6.8.0 || ^7.2.0", + "eslint-plugin-import": "^2.22.1" + } + }, + "node_modules/eslint-config-prettier": { + "version": "7.2.0", + "integrity": "sha512-rV4Qu0C3nfJKPOAhFujFxB7RMP+URFyQqqOZW9DMRD7ZDTFyjaIlETU3xzHELt++4ugC0+Jm084HQYkkJe+Ivg==", + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.6", + "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "dependencies": { + "debug": "^3.2.7", + "resolve": "^1.20.0" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "2.5.0", + "integrity": "sha512-qZ6e5CFr+I7K4VVhQu3M/9xGv9/YmwsEXrsm3nimw8vWaVHRDrQRp26BgCypTxBp3vUp4o5aVEJRiy0F2DFddQ==", + "dependencies": { + "debug": "^4.3.1", + "glob": "^7.1.7", + "is-glob": "^4.0.1", + "resolve": "^1.20.0", + "tsconfig-paths": "^3.9.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*" + } + }, + "node_modules/eslint-import-resolver-webpack": { + "version": "0.13.1", + "integrity": "sha512-O/8mG6AHmaKYSMb4lWxiXPpaARxOJ4rMQEHJ8vTgjS1MXooJA3KPgBPPAdOPoV17v5ML5120qod5FBLM+DtgEw==", + "dependencies": { + "array-find": "^1.0.0", + "debug": "^3.2.7", + "enhanced-resolve": "^0.9.1", + "find-root": "^1.1.0", + "has": "^1.0.3", + "interpret": "^1.4.0", + "is-core-module": "^2.4.0", + "is-regex": "^1.1.3", + "lodash": "^4.17.21", + "resolve": "^1.20.0", + "semver": "^5.7.1" + }, + "engines": { + "node": "^16 || ^15 || ^14 || ^13 || ^12 || ^11 || ^10 || ^9 || ^8 || ^7 || ^6" + }, + "peerDependencies": { + "eslint-plugin-import": ">=1.4.0", + "webpack": ">=1.11.0" + } + }, + "node_modules/eslint-import-resolver-webpack/node_modules/debug": { + "version": "3.2.7", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-webpack/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.7.1", + "integrity": "sha512-fjoetBXQZq2tSTWZ9yWVl2KuFrTZZH3V+9iD1V1RfpDgxzJR+mPd/KZmMiA8gbPqdBzpNiEHOuT7IYEWxrH0zQ==", + "dependencies": { + "debug": "^3.2.7", + "find-up": "^2.1.0", + "pkg-dir": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils/node_modules/find-up": { + "version": "2.1.0", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/locate-path": { + "version": "2.0.0", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/p-limit": { + "version": "1.3.0", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/p-locate": { + "version": "2.0.0", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/p-try": { + "version": "1.0.0", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-cypress": { + "version": "2.12.1", + "integrity": "sha512-c2W/uPADl5kospNDihgiLc7n87t5XhUbFDoTl6CfVkmG+kDAb5Ux10V9PoLPu9N+r7znpc+iQlcmAqT1A/89HA==", + "dependencies": { + "globals": "^11.12.0" + }, + "peerDependencies": { + "eslint": ">= 3.2.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.25.2", + "integrity": "sha512-qCwQr9TYfoBHOFcVGKY9C9unq05uOxxdklmBXLVvcwo68y5Hta6/GzCZEMx2zQiu0woKNEER0LE7ZgaOfBU14g==", + "dependencies": { + "array-includes": "^3.1.4", + "array.prototype.flat": "^1.2.5", + "debug": "^2.6.9", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-module-utils": "^2.7.0", + "has": "^1.0.3", + "is-core-module": "^2.7.0", + "is-glob": "^4.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.5", + "resolve": "^1.20.0", + "tsconfig-paths": "^3.11.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "2.6.9", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/ms": { + "version": "2.0.0", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/eslint-plugin-jest": { + "version": "24.7.0", + "integrity": "sha512-wUxdF2bAZiYSKBclsUMrYHH6WxiBreNjyDxbRv345TIvPeoCEgPNEn3Sa+ZrSqsf1Dl9SqqSREXMHExlMMu1DA==", + "dependencies": { + "@typescript-eslint/experimental-utils": "^4.0.1" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": ">= 4", + "eslint": ">=5" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-jest-dom": { + "version": "3.9.2", + "integrity": "sha512-DKNW6nxYkBvwv36WcYFxapCalGjOGSWUu5PREpDVuXGbEns3S5jhr+mZ5W2N6MxbOWw/2U61C1JVLH31gwVjOQ==", + "dependencies": { + "@babel/runtime": "^7.9.6", + "@testing-library/dom": "^7.28.1", + "requireindex": "^1.2.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0", + "npm": ">=6", + "yarn": ">=1" + }, + "peerDependencies": { + "eslint": ">=6.8" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.4.1", + "integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==", + "dependencies": { + "@babel/runtime": "^7.11.2", + "aria-query": "^4.2.2", + "array-includes": "^3.1.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.0.2", + "axobject-query": "^2.2.0", + "damerau-levenshtein": "^1.0.6", + "emoji-regex": "^9.0.0", + "has": "^1.0.3", + "jsx-ast-utils": "^3.1.0", + "language-tags": "^1.0.5" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7" + } + }, + "node_modules/eslint-plugin-no-only-tests": { + "version": "2.6.0", + "integrity": "sha512-T9SmE/g6UV1uZo1oHAqOvL86XWl7Pl2EpRpnLI8g/bkJu+h7XBCB+1LnubRZ2CUQXj805vh4/CYZdnqtVaEo2Q==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/eslint-plugin-prettier": { + "version": "3.4.1", + "integrity": "sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==", + "dependencies": { + "prettier-linter-helpers": "^1.0.0" + }, + "engines": { + "node": ">=6.0.0" + }, + "peerDependencies": { + "eslint": ">=5.0.0", + "prettier": ">=1.13.0" + }, + "peerDependenciesMeta": { + "eslint-config-prettier": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.26.1", + "integrity": "sha512-Lug0+NOFXeOE+ORZ5pbsh6mSKjBKXDXItUD2sQoT+5Yl0eoT82DqnXeTMfUare4QVCn9QwXbfzO/dBLjLXwVjQ==", + "dependencies": { + "array-includes": "^3.1.3", + "array.prototype.flatmap": "^1.2.4", + "doctrine": "^2.1.0", + "estraverse": "^5.2.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.0.4", + "object.entries": "^1.1.4", + "object.fromentries": "^2.0.4", + "object.hasown": "^1.0.0", + "object.values": "^1.1.4", + "prop-types": "^15.7.2", + "resolve": "^2.0.0-next.3", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.5" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.2.0", + "integrity": "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.3", + "integrity": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==", + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-testing-library": { + "version": "3.10.2", + "integrity": "sha512-WAmOCt7EbF1XM8XfbCKAEzAPnShkNSwcIsAD2jHdsMUT9mZJPjLCG7pMzbcC8kK366NOuGip8HKLDC+Xk4yIdA==", + "dependencies": { + "@typescript-eslint/experimental-utils": "^3.10.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^5 || ^6 || ^7" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/experimental-utils": { + "version": "3.10.1", + "integrity": "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==", + "dependencies": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/typescript-estree": "3.10.1", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/types": { + "version": "3.10.1", + "integrity": "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==", + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/typescript-estree": { + "version": "3.10.1", + "integrity": "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==", + "dependencies": { + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/visitor-keys": "3.10.1", + "debug": "^4.1.1", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/visitor-keys": { + "version": "3.10.1", + "integrity": "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-unicorn": { + "version": "25.0.1", + "integrity": "sha512-MEyEWoyou/qhJH6rEER9YHACtCsQT+eewc6Fdxbi2eiTvsGrBR8JZMA6qaeof3oMQeRxOpaERoBKzU7R5c4A/w==", + "dependencies": { + "ci-info": "^2.0.0", + "clean-regexp": "^1.0.0", + "eslint-ast-utils": "^1.1.0", + "eslint-template-visitor": "^2.2.1", + "eslint-utils": "^2.1.0", + "import-modules": "^2.0.0", + "lodash": "^4.17.20", + "pluralize": "^8.0.0", + "read-pkg-up": "^7.0.1", + "regexp-tree": "^0.1.21", + "reserved-words": "^0.1.2", + "safe-regex": "^2.1.1", + "semver": "^7.3.4" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/eslint-plugin-unicorn?sponsor=1" + }, + "peerDependencies": { + "eslint": ">=7.15.0" + } + }, + "node_modules/eslint-plugin-unicorn/node_modules/eslint-template-visitor": { + "version": "2.3.2", + "integrity": "sha512-3ydhqFpuV7x1M9EK52BPNj6V0Kwu0KKkcIAfpUhwHbR8ocRln/oUHgfxQupY8O1h4Qv/POHDumb/BwwNfxbtnA==", + "dependencies": { + "@babel/core": "^7.12.16", + "@babel/eslint-parser": "^7.12.16", + "eslint-visitor-keys": "^2.0.0", + "esquery": "^1.3.1", + "multimap": "^1.1.0" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-utils": { + "version": "2.1.0", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/@babel/code-frame": { + "version": "7.12.11", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.11.0", + "integrity": "sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/ignore": { + "version": "4.0.6", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/eslint/node_modules/strip-json-comments": { + "version": "3.1.1", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/esm": { + "version": "3.2.25", + "integrity": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/espree": { + "version": "7.3.1", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dependencies": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esprint": { + "version": "0.7.0", + "integrity": "sha512-9EbgelpgCdiHRnTzAHbG+cyKN0ruUBfu9NTxxehQOh+1RVly1xvZPArqzc2DD95YtdOVX1qLqaKZI9qngmq+fQ==", + "dependencies": { + "dnode-weak-napi": "1.2.2", + "fb-watchman": "^2.0.0", + "glob": "^7.1.4", + "sane": "^4.1.0", + "worker-farm": "^1.7.0", + "yargs": "^14.0.0" + }, + "bin": { + "esprint": "build/cli.js" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "eslint": ">=3" + } + }, + "node_modules/esprint/node_modules/ansi-regex": { + "version": "4.1.0", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/esprint/node_modules/cliui": { + "version": "5.0.0", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/esprint/node_modules/emoji-regex": { + "version": "7.0.3", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "node_modules/esprint/node_modules/find-up": { + "version": "3.0.0", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/esprint/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "engines": { + "node": ">=4" + } + }, + "node_modules/esprint/node_modules/locate-path": { + "version": "3.0.0", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/esprint/node_modules/p-limit": { + "version": "2.3.0", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/esprint/node_modules/p-locate": { + "version": "3.0.0", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/esprint/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/esprint/node_modules/string-width": { + "version": "3.1.0", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/esprint/node_modules/strip-ansi": { + "version": "5.2.0", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/esprint/node_modules/wrap-ansi": { + "version": "5.1.0", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/esprint/node_modules/yargs": { + "version": "14.2.3", + "integrity": "sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==", + "dependencies": { + "cliui": "^5.0.0", + "decamelize": "^1.2.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": "^15.0.1" + } + }, + "node_modules/esprint/node_modules/yargs-parser": { + "version": "15.0.3", + "integrity": "sha512-/MVEVjTXy/cGAjdtQf8dW3V9b97bPN7rNn8ETj6BmAQL7ibC7O1Q9SPJbGjgh3SlwoBNXMzj/ZGIj8mBgl12YA==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/esquery": { + "version": "1.4.0", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.2.0", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-to-babel": { + "version": "3.2.1", + "integrity": "sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==", + "dependencies": { + "@babel/traverse": "^7.1.6", + "@babel/types": "^7.2.0", + "c8": "^7.6.0" + }, + "engines": { + "node": ">=8.3.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "3.1.2", + "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==" + }, + "node_modules/events": { + "version": "3.3.0", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/eventsource": { + "version": "1.1.0", + "integrity": "sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==", + "dependencies": { + "original": "^1.0.0" + }, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/exec-sh": { + "version": "0.3.6", + "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==" + }, + "node_modules/execa": { + "version": "4.1.0", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor": { + "version": "0.1.4", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.6", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/kind-of": { + "version": "5.1.0", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/expand-tilde": { + "version": "2.0.2", + "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expect": { + "version": "26.6.2", + "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-styles": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/expect/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/express": { + "version": "4.17.1", + "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" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/express/node_modules/path-to-regexp": { + "version": "0.1.7", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "node_modules/express/node_modules/qs": { + "version": "6.7.0", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/extend-shallow": { + "version": "3.0.2", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/external-editor": { + "version": "3.1.0", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "engines": [ + "node >=0.6.0" + ] + }, + "node_modules/fake-tag": { + "version": "2.0.0", + "integrity": "sha512-QDz+8qiNQ9AfBZ31EXlID5JIbUkU3e1nXDWk4tidFzd2gy8XJaEUW1HCuDY6DUy6t2Y0nvhD6PsUc+2WYy5w0w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/jaydenseric" + } + }, + "node_modules/falafel": { + "version": "2.2.4", + "integrity": "sha512-0HXjo8XASWRmsS0X1EkhwEMZaD3Qvp7FfURwjLKjG1ghfRm/MGZl2r4cWUTv41KdNghTw4OUMmVtdGQp3+H+uQ==", + "dependencies": { + "acorn": "^7.1.1", + "foreach": "^2.0.5", + "isarray": "^2.0.1", + "object-keys": "^1.0.6" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-diff": { + "version": "1.2.0", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==" + }, + "node_modules/fast-glob": { + "version": "3.2.7", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fast-json-parse": { + "version": "1.0.3", + "integrity": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + }, + "node_modules/fast-safe-stringify": { + "version": "2.1.1", + "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" + }, + "node_modules/fastq": { + "version": "1.13.0", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fault": { + "version": "1.0.4", + "integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==", + "dependencies": { + "format": "^0.2.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.1", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fbjs": { + "version": "0.8.17", + "integrity": "sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=", + "dependencies": { + "core-js": "^1.0.0", + "isomorphic-fetch": "^2.1.1", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^0.7.18" + } + }, + "node_modules/fbjs/node_modules/core-js": { + "version": "1.2.7", + "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=", + "deprecated": "core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js." + }, + "node_modules/fetch-mock": { + "version": "6.5.2", + "integrity": "sha512-EIvbpCLBTYyDLu4HJiqD7wC8psDwTUaPaWXNKZbhNO/peUYKiNp5PkZGKRJtnTxaPQu71ivqafvjpM7aL+MofQ==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "babel-polyfill": "^6.26.0", + "glob-to-regexp": "^0.4.0", + "path-to-regexp": "^2.2.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/fetch-retry": { + "version": "4.1.1", + "integrity": "sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==" + }, + "node_modules/figgy-pudding": { + "version": "3.5.2", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" + }, + "node_modules/figures": { + "version": "3.2.0", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/figures/node_modules/escape-string-regexp": { + "version": "1.0.5", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/loader-utils": { + "version": "2.0.0", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.1.1", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/file-system-cache": { + "version": "1.0.5", + "integrity": "sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=", + "dependencies": { + "bluebird": "^3.3.5", + "fs-extra": "^0.30.0", + "ramda": "^0.21.0" + } + }, + "node_modules/file-system-cache/node_modules/fs-extra": { + "version": "0.30.0", + "integrity": "sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^2.1.0", + "klaw": "^1.0.0", + "path-is-absolute": "^1.0.0", + "rimraf": "^2.2.8" + } + }, + "node_modules/file-system-cache/node_modules/jsonfile": { + "version": "2.4.0", + "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/file-system-cache/node_modules/ramda": { + "version": "0.21.0", + "integrity": "sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=" + }, + "node_modules/file-system-cache/node_modules/rimraf": { + "version": "2.7.1", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "optional": true + }, + "node_modules/filelist": { + "version": "1.0.2", + "integrity": "sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ==", + "dependencies": { + "minimatch": "^3.0.4" + } + }, + "node_modules/filename-reserved-regex": { + "version": "2.0.0", + "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=", + "engines": { + "node": ">=4" + } + }, + "node_modules/filenamify": { + "version": "4.3.0", + "integrity": "sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==", + "dependencies": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.1", + "trim-repeated": "^1.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/filesize": { + "version": "6.1.0", + "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/filter-obj": { + "version": "1.1.0", + "integrity": "sha1-mzERErxsYSehbgFsbF1/GeCAXFs=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.1.2", + "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" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/find-cache-dir": { + "version": "2.1.0", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/find-up": { + "version": "3.0.0", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/locate-path": { + "version": "3.0.0", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/p-limit": { + "version": "2.3.0", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-cache-dir/node_modules/p-locate": { + "version": "3.0.0", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/find-cache-dir/node_modules/pkg-dir": { + "version": "3.0.0", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-node-modules": { + "version": "2.0.0", + "integrity": "sha512-8MWIBRgJi/WpjjfVXumjPKCtmQ10B+fjx6zmSA+770GMJirLhWIzg8l763rhjl9xaeaHbnxPNRQKq2mgMhr+aw==", + "dependencies": { + "findup-sync": "^3.0.0", + "merge": "^1.2.1" + } + }, + "node_modules/find-root": { + "version": "1.1.0", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + }, + "node_modules/find-up": { + "version": "4.1.0", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-versions": { + "version": "4.0.0", + "integrity": "sha512-wgpWy002tA+wgmO27buH/9KzyEOQnKsG/R0yrcjPT9BOFm0zRBVQbZ95nRGXWMywS8YR5knRbpohio0bcJABxQ==", + "dependencies": { + "semver-regex": "^3.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/findup-sync": { + "version": "3.0.0", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/findup-sync/node_modules/braces": { + "version": "2.3.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/fill-range": { + "version": "4.0.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/micromatch": { + "version": "3.1.10", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/first-chunk-stream": { + "version": "2.0.0", + "integrity": "sha1-G97NuOCDwGZLkZRVgVd6Q6nzHXA=", + "devOptional": true, + "dependencies": { + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/first-chunk-stream/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "devOptional": true + }, + "node_modules/first-chunk-stream/node_modules/readable-stream": { + "version": "2.3.7", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "devOptional": true, + "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" + } + }, + "node_modules/first-chunk-stream/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "devOptional": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.2", + "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==" + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/flush-write-stream/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/flush-write-stream/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/flush-write-stream/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/follow-redirects": { + "version": "1.14.4", + "integrity": "sha512-zwGkiSXC1MUJG/qmeIFH2HBJx9u0V46QGUe3YR1fXG8bXQxq7fLj0RjLZQ5nubr9qNJUZrH+xUcwXEoXNpfS+g==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/foreach": { + "version": "2.0.5", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" + }, + "node_modules/foreground-child": { + "version": "2.0.0", + "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/forever-agent": { + "version": "0.6.1", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "engines": { + "node": "*" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "5.2.1", + "integrity": "sha512-SVi+ZAQOGbtAsUWrZvGzz38ga2YqjWvca1pXQFUArIVXqli0lLoDQ8uS0wg0kSpcwpZmaW5jVCZXQebkyUQSsw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dev": true, + "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" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/parse-json": { + "version": "5.2.0", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/form-data": { + "version": "3.0.1", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/format": { + "version": "0.2.2", + "integrity": "sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/from2/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/from2/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/from2/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/front-matter": { + "version": "2.3.0", + "integrity": "sha1-cgOviWzjV+4E4qpFFp6pHtf2dQQ=", + "dependencies": { + "js-yaml": "^3.10.0" + } + }, + "node_modules/fs-extra": { + "version": "9.1.0", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fs-minipass": { + "version": "1.2.7", + "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", + "dependencies": { + "minipass": "^2.6.0" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.3", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" + }, + "node_modules/fs-readdir-recursive": { + "version": "1.1.0", + "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==" + }, + "node_modules/fs-write-stream-atomic": { + "version": "1.0.10", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "dependencies": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "node_modules/fs-write-stream-atomic/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/fs-write-stream-atomic/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/fs-write-stream-atomic/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "node_modules/fsevents": { + "version": "2.3.2", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + }, + "node_modules/functions-have-names": { + "version": "1.2.2", + "integrity": "sha512-bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/fuse.js": { + "version": "3.6.1", + "integrity": "sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/gauge": { + "version": "2.7.4", + "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" + } + }, + "node_modules/gauge/node_modules/ansi-regex": { + "version": "2.1.1", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gauge/node_modules/aproba": { + "version": "1.2.0", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "node_modules/gauge/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gauge/node_modules/string-width": { + "version": "1.0.2", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gauge/node_modules/strip-ansi": { + "version": "3.0.1", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/genfun": { + "version": "5.0.0", + "integrity": "sha512-KGDOARWVga7+rnB3z9Sd2Letx515owfk0hSxHGuqjANb1M+x2bGZGqHLiozPsYMdM2OubeMni/Hpwmjq6qIUhA==" + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/geojson-vt": { + "version": "3.2.1", + "integrity": "sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==" + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.1", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-pkg-repo": { + "version": "4.2.1", + "integrity": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==", + "dependencies": { + "@hutson/parse-repository-url": "^3.0.0", + "hosted-git-info": "^4.0.0", + "through2": "^2.0.0", + "yargs": "^16.2.0" + }, + "bin": { + "get-pkg-repo": "src/cli.js" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-pkg-repo/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/get-pkg-repo/node_modules/cliui": { + "version": "7.0.4", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/get-pkg-repo/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/get-pkg-repo/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/get-pkg-repo/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/get-pkg-repo/node_modules/through2": { + "version": "2.0.5", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/get-pkg-repo/node_modules/wrap-ansi": { + "version": "7.0.0", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/get-pkg-repo/node_modules/y18n": { + "version": "5.0.8", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/get-pkg-repo/node_modules/yargs": { + "version": "16.2.0", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/get-pkg-repo/node_modules/yargs-parser": { + "version": "20.2.9", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/get-port": { + "version": "4.2.0", + "integrity": "sha512-/b3jarXkH8KJoOMQc3uVGHASwGLPq3gSFJ7tgJm2diza+bydJPTGOibin2steecKeOylE8oY2JERlVWkAJO6yw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/get-stdin": { + "version": "7.0.0", + "integrity": "sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/get-stream": { + "version": "5.2.0", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/gh-got": { + "version": "5.0.0", + "integrity": "sha1-7pW+NxBv2HSKlvjR20uuqJ4b+oo=", + "dependencies": { + "got": "^6.2.0", + "is-plain-obj": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/gh-pages": { + "version": "3.2.3", + "integrity": "sha512-jA1PbapQ1jqzacECfjUaO9gV8uBgU6XNMV0oXLtfCX3haGLe5Atq8BxlrADhbD6/UdG9j6tZLWAkAybndOXTJg==", + "dependencies": { + "async": "^2.6.1", + "commander": "^2.18.0", + "email-addresses": "^3.0.1", + "filenamify": "^4.3.0", + "find-cache-dir": "^3.3.1", + "fs-extra": "^8.1.0", + "globby": "^6.1.0" + }, + "bin": { + "gh-pages": "bin/gh-pages.js", + "gh-pages-clean": "bin/gh-pages-clean.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gh-pages/node_modules/array-union": { + "version": "1.0.2", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gh-pages/node_modules/commander": { + "version": "2.20.3", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/gh-pages/node_modules/find-cache-dir": { + "version": "3.3.2", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/gh-pages/node_modules/fs-extra": { + "version": "8.1.0", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/gh-pages/node_modules/globby": { + "version": "6.1.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gh-pages/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/gh-pages/node_modules/make-dir": { + "version": "3.1.0", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gh-pages/node_modules/pkg-dir": { + "version": "4.2.0", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/gh-pages/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/gh-pages/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/git-raw-commits": { + "version": "1.3.6", + "integrity": "sha512-svsK26tQ8vEKnMshTDatSIQSMDdz8CxIIqKsvPqbtV23Etmw6VNaFAitu8zwZ0VrOne7FztwPyRLxK7/DIUTQg==", + "dependencies": { + "dargs": "^4.0.1", + "lodash.template": "^4.0.2", + "meow": "^4.0.0", + "split2": "^2.0.0", + "through2": "^2.0.0" + }, + "bin": { + "git-raw-commits": "cli.js" + } + }, + "node_modules/git-raw-commits/node_modules/find-up": { + "version": "2.1.0", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/git-raw-commits/node_modules/hosted-git-info": { + "version": "2.8.9", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/git-raw-commits/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/git-raw-commits/node_modules/locate-path": { + "version": "2.0.0", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/git-raw-commits/node_modules/meow": { + "version": "4.0.1", + "integrity": "sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A==", + "dependencies": { + "camelcase-keys": "^4.0.0", + "decamelize-keys": "^1.0.0", + "loud-rejection": "^1.0.0", + "minimist": "^1.1.3", + "minimist-options": "^3.0.1", + "normalize-package-data": "^2.3.4", + "read-pkg-up": "^3.0.0", + "redent": "^2.0.0", + "trim-newlines": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/git-raw-commits/node_modules/normalize-package-data": { + "version": "2.5.0", + "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" + } + }, + "node_modules/git-raw-commits/node_modules/p-limit": { + "version": "1.3.0", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/git-raw-commits/node_modules/p-locate": { + "version": "2.0.0", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/git-raw-commits/node_modules/p-try": { + "version": "1.0.0", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "engines": { + "node": ">=4" + } + }, + "node_modules/git-raw-commits/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/git-raw-commits/node_modules/read-pkg-up": { + "version": "3.0.0", + "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", + "dependencies": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/git-raw-commits/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/git-raw-commits/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/git-raw-commits/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/git-raw-commits/node_modules/through2": { + "version": "2.0.5", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/git-remote-origin-url": { + "version": "2.0.0", + "integrity": "sha1-UoJlna4hBxRaERJhEq0yFuxfpl8=", + "dependencies": { + "gitconfiglocal": "^1.0.0", + "pify": "^2.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/git-semver-tags": { + "version": "4.1.1", + "integrity": "sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==", + "dependencies": { + "meow": "^8.0.0", + "semver": "^6.0.0" + }, + "bin": { + "git-semver-tags": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/git-semver-tags/node_modules/camelcase-keys": { + "version": "6.2.2", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dependencies": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/git-semver-tags/node_modules/indent-string": { + "version": "4.0.0", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/git-semver-tags/node_modules/map-obj": { + "version": "4.3.0", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/git-semver-tags/node_modules/meow": { + "version": "8.1.2", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/git-semver-tags/node_modules/minimist-options": { + "version": "4.1.0", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/git-semver-tags/node_modules/quick-lru": { + "version": "4.0.1", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "engines": { + "node": ">=8" + } + }, + "node_modules/git-semver-tags/node_modules/redent": { + "version": "3.0.0", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/git-semver-tags/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/git-semver-tags/node_modules/trim-newlines": { + "version": "3.0.1", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/git-semver-tags/node_modules/type-fest": { + "version": "0.18.1", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/git-semver-tags/node_modules/yargs-parser": { + "version": "20.2.9", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/git-up": { + "version": "4.0.5", + "integrity": "sha512-YUvVDg/vX3d0syBsk/CKUTib0srcQME0JyHkL5BaYdwLsiCslPWmDSi8PUMo9pXYjrryMcmsCoCgsTpSCJEQaA==", + "dependencies": { + "is-ssh": "^1.3.0", + "parse-url": "^6.0.0" + } + }, + "node_modules/git-url-parse": { + "version": "11.6.0", + "integrity": "sha512-WWUxvJs5HsyHL6L08wOusa/IXYtMuCAhrMmnTjQPpBU0TTHyDhnOATNH3xNQz7YOQUsqIIPTGr4xiVti1Hsk5g==", + "dependencies": { + "git-up": "^4.0.0" + } + }, + "node_modules/gitconfiglocal": { + "version": "1.0.0", + "integrity": "sha1-QdBF84UaXqiPA/JMocYXgRRGS5s=", + "dependencies": { + "ini": "^1.3.2" + } + }, + "node_modules/github-username": { + "version": "3.0.0", + "integrity": "sha1-CnciGbMTB0NCnyRW0L3T21Xc57E=", + "dependencies": { + "gh-got": "^5.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/gl-matrix": { + "version": "3.4.3", + "integrity": "sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==" + }, + "node_modules/glob": { + "version": "7.2.0", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "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" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-base": { + "version": "0.3.0", + "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", + "dependencies": { + "glob-parent": "^2.0.0", + "is-glob": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-base/node_modules/glob-parent": { + "version": "2.0.0", + "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "dependencies": { + "is-glob": "^2.0.0" + } + }, + "node_modules/glob-base/node_modules/is-extglob": { + "version": "1.0.0", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-base/node_modules/is-glob": { + "version": "2.0.1", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dependencies": { + "is-extglob": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-promise": { + "version": "3.4.0", + "integrity": "sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==", + "dependencies": { + "@types/glob": "*" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "glob": "*" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/global": { + "version": "4.4.0", + "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", + "dependencies": { + "min-document": "^2.19.0", + "process": "^0.11.10" + } + }, + "node_modules/global-box": { + "version": "1.2.0", + "integrity": "sha512-IgpqqAYWNG3eluK1tsCkI8Uxff16+OYWLEhDS/QrfkfmbRQ/tVlBXZfURn5tSoPPT6wtmeJp7VKhXrcc5jl/1A==" + }, + "node_modules/global-cache": { + "version": "1.2.1", + "integrity": "sha512-EOeUaup5DgWKlCMhA9YFqNRIlZwoxt731jCh47WBV9fQqHgXhr3Fa55hfgIUqilIcPsfdNKN7LHjrNY+Km40KA==", + "dependencies": { + "define-properties": "^1.1.2", + "is-symbol": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/global-dirs": { + "version": "0.1.1", + "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", + "dependencies": { + "ini": "^1.3.4" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/global-modules": { + "version": "2.0.0", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.2", + "integrity": "sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ==", + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.0.4", + "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby/node_modules/slash": { + "version": "3.0.0", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/got": { + "version": "6.7.1", + "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", + "dependencies": { + "create-error-class": "^3.0.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-redirect": "^1.0.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "lowercase-keys": "^1.0.0", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "unzip-response": "^2.0.1", + "url-parse-lax": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/got/node_modules/get-stream": { + "version": "3.0.0", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "engines": { + "node": ">=4" + } + }, + "node_modules/got/node_modules/is-stream": { + "version": "1.1.0", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.8", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" + }, + "node_modules/graphlib": { + "version": "2.1.8", + "integrity": "sha512-jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==", + "dependencies": { + "lodash": "^4.17.15" + } + }, + "node_modules/graphql": { + "version": "0.12.3", + "integrity": "sha512-Hn9rdu4zacplKXNrLCvR8YFiTGnbM4Zw/UH8FDmzBDsH7ou40lSNH4tIlsxcYnz2TGNVJCpu1WxCM23yd6kzhA==", + "dependencies": { + "iterall": "1.1.3" + } + }, + "node_modules/graphql-config": { + "version": "1.2.1", + "integrity": "sha512-BOtbEOn/fD13jT0peCy3Fzp1DSTsA/1AcZp266AQ5Sk3wFndKCEa/H7donbu5UriOw1V/N1WDirYPnr7rd8E7Q==", + "dependencies": { + "graphql": "^0.12.3", + "graphql-import": "^0.4.0", + "graphql-request": "^1.4.0", + "js-yaml": "^3.10.0", + "lodash": "^4.17.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/graphql-import": { + "version": "0.4.5", + "integrity": "sha512-G/+I08Qp6/QGTb9qapknCm3yPHV0ZL7wbaalWFpxsfR8ZhZoTBe//LsbsCKlbALQpcMegchpJhpTSKiJjhaVqQ==", + "deprecated": "GraphQL Import has been deprecated and merged into GraphQL Tools, so it will no longer get updates. Use GraphQL Tools instead to stay up-to-date! Check out https://www.graphql-tools.com/docs/migration-from-import for migration and https://the-guild.dev/blog/graphql-tools-v6 for new changes.", + "dependencies": { + "lodash": "^4.17.4" + }, + "engines": { + "node": ">=4.0.0" + }, + "peerDependencies": { + "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0" + } + }, + "node_modules/graphql-request": { + "version": "1.8.2", + "integrity": "sha512-dDX2M+VMsxXFCmUX0Vo0TopIZIX4ggzOtiCsThgtrKR4niiaagsGTDIHj3fsOMFETpa064vzovI+4YV4QnMbcg==", + "dependencies": { + "cross-fetch": "2.2.2" + } + }, + "node_modules/graphql-tag": { + "version": "2.12.5", + "integrity": "sha512-5xNhP4063d16Pz3HBtKprutsPrmHZi5IdUGOWRxA2B6VF7BIRGOHZ5WQvDmJXZuPcBg7rYwaFxvQYjqkSdR3TQ==", + "peer": true, + "dependencies": { + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" + } + }, + "node_modules/grid-index": { + "version": "1.1.0", + "integrity": "sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA==" + }, + "node_modules/grouped-queue": { + "version": "1.1.0", + "integrity": "sha512-rZOFKfCqLhsu5VqjBjEWiwrYqJR07KxIkH4mLZlNlGDfntbb4FbMyGFP14TlvRPrU9S3Hnn/sgxbC5ZeN0no3Q==", + "devOptional": true, + "dependencies": { + "lodash": "^4.17.15" + } + }, + "node_modules/growly": { + "version": "1.3.0", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=" + }, + "node_modules/gud": { + "version": "1.0.0", + "integrity": "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==" + }, + "node_modules/gzip-size": { + "version": "5.1.1", + "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "dependencies": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/gzip-size/node_modules/pify": { + "version": "4.0.1", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/hammerjs": { + "version": "2.0.8", + "integrity": "sha1-BO93hiz/K7edMPdpIJWTAiK/YPE=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "node_modules/handlebars": { + "version": "4.7.7", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.0", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" + } + }, + "node_modules/handlebars/node_modules/minimist": { + "version": "1.2.5", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "node_modules/handlebars/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/har-schema": { + "version": "2.0.0", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hard-rejection": { + "version": "2.1.0", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/harmony-reflect": { + "version": "1.6.2", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + }, + "node_modules/has": { + "version": "1.0.3", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-ansi": { + "version": "2.0.0", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.1", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-glob": { + "version": "1.0.0", + "integrity": "sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=", + "dependencies": { + "is-glob": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-glob/node_modules/is-glob": { + "version": "3.1.0", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-symbols": { + "version": "1.0.2", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-unicode": { + "version": "2.0.1", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" + }, + "node_modules/has-value": { + "version": "1.0.0", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hash-base": { + "version": "3.1.0", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash-base/node_modules/safe-buffer": { + "version": "5.2.1", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/hash.js": { + "version": "1.1.7", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/hast-to-hyperscript": { + "version": "9.0.1", + "integrity": "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==", + "dependencies": { + "@types/unist": "^2.0.3", + "comma-separated-tokens": "^1.0.0", + "property-information": "^5.3.0", + "space-separated-tokens": "^1.0.0", + "style-to-object": "^0.3.0", + "unist-util-is": "^4.0.0", + "web-namespaces": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-to-hyperscript/node_modules/unist-util-is": { + "version": "4.1.0", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-from-parse5": { + "version": "6.0.1", + "integrity": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==", + "dependencies": { + "@types/parse5": "^5.0.0", + "hastscript": "^6.0.0", + "property-information": "^5.0.0", + "vfile": "^4.0.0", + "vfile-location": "^3.2.0", + "web-namespaces": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-from-parse5/node_modules/is-buffer": { + "version": "2.0.5", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } + }, + "node_modules/hast-util-from-parse5/node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dependencies": { + "@types/unist": "^2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-from-parse5/node_modules/vfile": { + "version": "4.2.1", + "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-from-parse5/node_modules/vfile-location": { + "version": "3.2.0", + "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-from-parse5/node_modules/vfile-message": { + "version": "2.0.4", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-parse-selector": { + "version": "2.2.5", + "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-raw": { + "version": "6.0.1", + "integrity": "sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==", + "dependencies": { + "@types/hast": "^2.0.0", + "hast-util-from-parse5": "^6.0.0", + "hast-util-to-parse5": "^6.0.0", + "html-void-elements": "^1.0.0", + "parse5": "^6.0.0", + "unist-util-position": "^3.0.0", + "vfile": "^4.0.0", + "web-namespaces": "^1.0.0", + "xtend": "^4.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-raw/node_modules/is-buffer": { + "version": "2.0.5", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } + }, + "node_modules/hast-util-raw/node_modules/parse5": { + "version": "6.0.1", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/hast-util-raw/node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dependencies": { + "@types/unist": "^2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-raw/node_modules/vfile": { + "version": "4.2.1", + "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-raw/node_modules/vfile-message": { + "version": "2.0.4", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-parse5": { + "version": "6.0.0", + "integrity": "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==", + "dependencies": { + "hast-to-hyperscript": "^9.0.0", + "property-information": "^5.0.0", + "web-namespaces": "^1.0.0", + "xtend": "^4.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hastscript": { + "version": "6.0.0", + "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==", + "dependencies": { + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^1.0.0", + "hast-util-parse-selector": "^2.0.0", + "property-information": "^5.0.0", + "space-separated-tokens": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/he": { + "version": "1.2.0", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" + } + }, + "node_modules/header-case": { + "version": "1.0.1", + "integrity": "sha1-lTWXMZfBRLCWE81l0xfvGZY70C0=", + "dependencies": { + "no-case": "^2.2.0", + "upper-case": "^1.1.3" + } + }, + "node_modules/highlight.js": { + "version": "10.7.3", + "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==", + "engines": { + "node": "*" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dependencies": { + "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hoopy": { + "version": "0.1.4", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/hosted-git-info": { + "version": "4.0.2", + "integrity": "sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-element-map": { + "version": "1.3.1", + "integrity": "sha512-6XMlxrAFX4UEEGxctfFnmrFaaZFNf9i5fNuV5wZ3WWQ4FVaNP1aX1LkX9j2mfEx1NpjeE/rL3nmgEn23GdFmrg==", + "dependencies": { + "array.prototype.filter": "^1.0.0", + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-entities": { + "version": "1.4.0", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==" + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "node_modules/html-minifier-terser": { + "version": "5.1.1", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "dependencies": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/html-to-react": { + "version": "1.4.7", + "integrity": "sha512-adtKiee5AtnuUhdB8bxbASRP2bW/A0OrlwysEuqZxXdURb0/1XR0m/woE1V5cJA1U5nyzAvk/PdFNO9S73DE/g==", + "dependencies": { + "domhandler": "^4.0", + "htmlparser2": "^7.0", + "lodash.camelcase": "^4.3.0", + "ramda": "^0.27.1" + }, + "peerDependencies": { + "react": "^16.0 || ^17.0" + } + }, + "node_modules/html-to-react/node_modules/entities": { + "version": "3.0.1", + "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/html-to-react/node_modules/htmlparser2": { + "version": "7.1.2", + "integrity": "sha512-d6cqsbJba2nRdg8WW2okyD4ceonFHn9jLFxhwlNcLhQWcFPdxXeJulgOLjLKtAK9T6ahd+GQNZwG9fjmGW7lyg==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.2", + "domutils": "^2.8.0", + "entities": "^3.0.1" + } + }, + "node_modules/html-void-elements": { + "version": "1.0.5", + "integrity": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/html-webpack-plugin": { + "version": "4.5.2", + "integrity": "sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==", + "dependencies": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.20", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + }, + "engines": { + "node": ">=6.9" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/html-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/http-cache-semantics": { + "version": "3.8.1", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==" + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + }, + "node_modules/http-errors": { + "version": "1.7.2", + "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" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/http-errors/node_modules/inherits": { + "version": "2.0.3", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "node_modules/http-parser-js": { + "version": "0.5.3", + "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-proxy-middleware": { + "version": "0.19.1", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dependencies": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/braces": { + "version": "2.3.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/fill-range": { + "version": "4.0.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/micromatch": { + "version": "3.1.10", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy/node_modules/eventemitter3": { + "version": "4.0.7", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "node_modules/http-signature": { + "version": "1.2.0", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/https-browserify": { + "version": "1.0.0", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + }, + "node_modules/https-proxy-agent": { + "version": "5.0.0", + "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "1.1.1", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "engines": { + "node": ">=8.12.0" + } + }, + "node_modules/humanize-ms": { + "version": "1.2.1", + "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", + "dependencies": { + "ms": "^2.0.0" + } + }, + "node_modules/husky": { + "version": "4.3.8", + "integrity": "sha512-LCqqsB0PzJQ/AlCgfrfzRe3e3+NvmefAdKQhRYpxS4u6clblBoDdzzvHi8fmxKRzvMxPY/1WZWzomPZww0Anow==", + "hasInstallScript": true, + "dependencies": { + "chalk": "^4.0.0", + "ci-info": "^2.0.0", + "compare-versions": "^3.6.0", + "cosmiconfig": "^7.0.0", + "find-versions": "^4.0.0", + "opencollective-postinstall": "^2.0.2", + "pkg-dir": "^5.0.0", + "please-upgrade-node": "^3.2.0", + "slash": "^3.0.0", + "which-pm-runs": "^1.0.0" + }, + "bin": { + "husky-run": "bin/run.js", + "husky-upgrade": "lib/upgrader/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/husky" + } + }, + "node_modules/husky/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/husky/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/husky/node_modules/cosmiconfig": { + "version": "7.0.1", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/husky/node_modules/find-up": { + "version": "5.0.0", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/husky/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/husky/node_modules/locate-path": { + "version": "6.0.0", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/husky/node_modules/p-locate": { + "version": "5.0.0", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/husky/node_modules/parse-json": { + "version": "5.2.0", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/husky/node_modules/pkg-dir": { + "version": "5.0.0", + "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", + "dependencies": { + "find-up": "^5.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/husky/node_modules/slash": { + "version": "3.0.0", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/husky/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/hygen": { + "version": "5.0.3", + "integrity": "sha512-tepicT366of7FZKfuT/YtTOZ1mU7txQix2EgYEGOCBD4SN3+vf2tRITB/yA7Amd9NPhzijgCYkW/MlIsdXEEEQ==", + "dependencies": { + "chalk": "^2.4.2", + "change-case": "^3.1.0", + "ejs": "^2.6.1", + "enquirer": "^2.3.0", + "execa": "^1.0.0", + "front-matter": "^2.3.0", + "fs-extra": "^7.0.1", + "ignore-walk": "^3.0.2", + "inflection": "^1.12.0", + "ts-jest": "^24.1.0", + "yargs-parser": "^13.0.0" + }, + "bin": { + "hygen": "dist/bin.js" + } + }, + "node_modules/hygen/node_modules/@jest/console": { + "version": "24.9.0", + "integrity": "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==", + "peer": true, + "dependencies": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/@jest/core": { + "version": "24.9.0", + "integrity": "sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A==", + "peer": true, + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/reporters": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-changed-files": "^24.9.0", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-resolve-dependencies": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "jest-watcher": "^24.9.0", + "micromatch": "^3.1.10", + "p-each-series": "^1.0.0", + "realpath-native": "^1.1.0", + "rimraf": "^2.5.4", + "slash": "^2.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/@jest/environment": { + "version": "24.9.0", + "integrity": "sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==", + "peer": true, + "dependencies": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/@jest/fake-timers": { + "version": "24.9.0", + "integrity": "sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==", + "peer": true, + "dependencies": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/@jest/reporters": { + "version": "24.9.0", + "integrity": "sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw==", + "peer": true, + "dependencies": { + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.2", + "istanbul-lib-coverage": "^2.0.2", + "istanbul-lib-instrument": "^3.0.1", + "istanbul-lib-report": "^2.0.4", + "istanbul-lib-source-maps": "^3.0.1", + "istanbul-reports": "^2.2.6", + "jest-haste-map": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "node-notifier": "^5.4.2", + "slash": "^2.0.0", + "source-map": "^0.6.0", + "string-length": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/@jest/source-map": { + "version": "24.9.0", + "integrity": "sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==", + "peer": true, + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/@jest/test-result": { + "version": "24.9.0", + "integrity": "sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==", + "peer": true, + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/@jest/test-sequencer": { + "version": "24.9.0", + "integrity": "sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A==", + "peer": true, + "dependencies": { + "@jest/test-result": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/@jest/transform": { + "version": "24.9.0", + "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", + "peer": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/@jest/types": { + "version": "24.9.0", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "peer": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "peer": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/hygen/node_modules/@types/stack-utils": { + "version": "1.0.1", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "peer": true + }, + "node_modules/hygen/node_modules/@types/yargs": { + "version": "13.0.12", + "integrity": "sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==", + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/hygen/node_modules/acorn": { + "version": "5.7.4", + "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", + "peer": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/hygen/node_modules/acorn-globals": { + "version": "4.3.4", + "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", + "peer": true, + "dependencies": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + } + }, + "node_modules/hygen/node_modules/acorn-globals/node_modules/acorn": { + "version": "6.4.2", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "peer": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/hygen/node_modules/acorn-walk": { + "version": "6.2.0", + "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", + "peer": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/hygen/node_modules/ansi-escapes": { + "version": "3.2.0", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/hygen/node_modules/ansi-regex": { + "version": "4.1.0", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/anymatch": { + "version": "2.0.0", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "peer": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/hygen/node_modules/astral-regex": { + "version": "1.0.0", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/hygen/node_modules/babel-jest": { + "version": "24.9.0", + "integrity": "sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==", + "peer": true, + "dependencies": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/hygen/node_modules/babel-plugin-istanbul": { + "version": "5.2.0", + "integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/babel-plugin-jest-hoist": { + "version": "24.9.0", + "integrity": "sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==", + "peer": true, + "dependencies": { + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/babel-preset-jest": { + "version": "24.9.0", + "integrity": "sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==", + "peer": true, + "dependencies": { + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.9.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/hygen/node_modules/braces": { + "version": "2.3.2", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "peer": true, + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hygen/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "peer": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hygen/node_modules/cliui": { + "version": "5.0.0", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "peer": true, + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/hygen/node_modules/cross-spawn": { + "version": "6.0.5", + "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" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/hygen/node_modules/cssom": { + "version": "0.3.8", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "peer": true + }, + "node_modules/hygen/node_modules/cssstyle": { + "version": "1.4.0", + "integrity": "sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==", + "peer": true, + "dependencies": { + "cssom": "0.3.x" + } + }, + "node_modules/hygen/node_modules/data-urls": { + "version": "1.1.0", + "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", + "peer": true, + "dependencies": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + } + }, + "node_modules/hygen/node_modules/data-urls/node_modules/whatwg-url": { + "version": "7.1.0", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "peer": true, + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/hygen/node_modules/detect-newline": { + "version": "2.1.0", + "integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hygen/node_modules/diff-sequences": { + "version": "24.9.0", + "integrity": "sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==", + "peer": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/domexception": { + "version": "1.0.1", + "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "peer": true, + "dependencies": { + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/hygen/node_modules/emoji-regex": { + "version": "7.0.3", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "peer": true + }, + "node_modules/hygen/node_modules/escape-string-regexp": { + "version": "2.0.0", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/hygen/node_modules/escodegen": { + "version": "1.14.3", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "peer": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/hygen/node_modules/estraverse": { + "version": "4.3.0", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "peer": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/hygen/node_modules/execa": { + "version": "1.0.0", + "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" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/expect": { + "version": "24.9.0", + "integrity": "sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==", + "peer": true, + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/fill-range": { + "version": "4.0.0", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "peer": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hygen/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "peer": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hygen/node_modules/find-up": { + "version": "3.0.0", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "peer": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/fs-extra": { + "version": "7.0.1", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/hygen/node_modules/fsevents": { + "version": "1.2.13", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "peer": true, + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/hygen/node_modules/get-stream": { + "version": "4.1.0", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/html-encoding-sniffer": { + "version": "1.0.2", + "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", + "peer": true, + "dependencies": { + "whatwg-encoding": "^1.0.1" + } + }, + "node_modules/hygen/node_modules/import-local": { + "version": "2.0.0", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "peer": true, + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hygen/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/hygen/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "peer": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hygen/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "peer": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hygen/node_modules/is-stream": { + "version": "1.1.0", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hygen/node_modules/is-wsl": { + "version": "1.1.0", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/hygen/node_modules/istanbul-lib-coverage": { + "version": "2.0.5", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/istanbul-lib-instrument": { + "version": "3.3.0", + "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", + "peer": true, + "dependencies": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.0", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "peer": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/hygen/node_modules/istanbul-lib-report": { + "version": "2.0.8", + "integrity": "sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==", + "peer": true, + "dependencies": { + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/istanbul-lib-source-maps": { + "version": "3.0.6", + "integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==", + "peer": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "rimraf": "^2.6.3", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/istanbul-reports": { + "version": "2.2.7", + "integrity": "sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg==", + "peer": true, + "dependencies": { + "html-escaper": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/jest": { + "version": "24.9.0", + "integrity": "sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw==", + "peer": true, + "dependencies": { + "import-local": "^2.0.0", + "jest-cli": "^24.9.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-changed-files": { + "version": "24.9.0", + "integrity": "sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg==", + "peer": true, + "dependencies": { + "@jest/types": "^24.9.0", + "execa": "^1.0.0", + "throat": "^4.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-cli": { + "version": "24.9.0", + "integrity": "sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg==", + "peer": true, + "dependencies": { + "@jest/core": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "import-local": "^2.0.0", + "is-ci": "^2.0.0", + "jest-config": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "prompts": "^2.0.1", + "realpath-native": "^1.1.0", + "yargs": "^13.3.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-config": { + "version": "24.9.0", + "integrity": "sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==", + "peer": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-diff": { + "version": "24.9.0", + "integrity": "sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==", + "peer": true, + "dependencies": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-docblock": { + "version": "24.9.0", + "integrity": "sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA==", + "peer": true, + "dependencies": { + "detect-newline": "^2.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-each": { + "version": "24.9.0", + "integrity": "sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog==", + "peer": true, + "dependencies": { + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-environment-jsdom": { + "version": "24.9.0", + "integrity": "sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==", + "peer": true, + "dependencies": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-environment-node": { + "version": "24.9.0", + "integrity": "sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA==", + "peer": true, + "dependencies": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-get-type": { + "version": "24.9.0", + "integrity": "sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==", + "peer": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-haste-map": { + "version": "24.9.0", + "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", + "peer": true, + "dependencies": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 6" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/hygen/node_modules/jest-jasmine2": { + "version": "24.9.0", + "integrity": "sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==", + "peer": true, + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-leak-detector": { + "version": "24.9.0", + "integrity": "sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA==", + "peer": true, + "dependencies": { + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-matcher-utils": { + "version": "24.9.0", + "integrity": "sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==", + "peer": true, + "dependencies": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-message-util": { + "version": "24.9.0", + "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-mock": { + "version": "24.9.0", + "integrity": "sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==", + "peer": true, + "dependencies": { + "@jest/types": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-regex-util": { + "version": "24.9.0", + "integrity": "sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==", + "peer": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-resolve": { + "version": "24.9.0", + "integrity": "sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ==", + "peer": true, + "dependencies": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-resolve-dependencies": { + "version": "24.9.0", + "integrity": "sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g==", + "peer": true, + "dependencies": { + "@jest/types": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-snapshot": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-runner": { + "version": "24.9.0", + "integrity": "sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg==", + "peer": true, + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.4.2", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-docblock": "^24.3.0", + "jest-haste-map": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-leak-detector": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "source-map-support": "^0.5.6", + "throat": "^4.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-runtime": { + "version": "24.9.0", + "integrity": "sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==", + "peer": true, + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + }, + "bin": { + "jest-runtime": "bin/jest-runtime.js" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-serializer": { + "version": "24.9.0", + "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==", + "peer": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-snapshot": { + "version": "24.9.0", + "integrity": "sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==", + "peer": true, + "dependencies": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-snapshot/node_modules/semver": { + "version": "6.3.0", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "peer": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/hygen/node_modules/jest-util": { + "version": "24.9.0", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", + "peer": true, + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-validate": { + "version": "24.9.0", + "integrity": "sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ==", + "peer": true, + "dependencies": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-watcher": { + "version": "24.9.0", + "integrity": "sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw==", + "peer": true, + "dependencies": { + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "jest-util": "^24.9.0", + "string-length": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jest-worker": { + "version": "24.9.0", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "peer": true, + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/jsdom": { + "version": "11.12.0", + "integrity": "sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==", + "peer": true, + "dependencies": { + "abab": "^2.0.0", + "acorn": "^5.5.3", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": "^1.0.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.1", + "escodegen": "^1.9.1", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.3.0", + "nwsapi": "^2.0.7", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.87.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.4", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^5.2.0", + "xml-name-validator": "^3.0.0" + } + }, + "node_modules/hygen/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/hygen/node_modules/levn": { + "version": "0.3.0", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "peer": true, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/hygen/node_modules/locate-path": { + "version": "3.0.0", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "peer": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/micromatch": { + "version": "3.1.10", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "peer": true, + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hygen/node_modules/node-notifier": { + "version": "5.4.5", + "integrity": "sha512-tVbHs7DyTLtzOiN78izLA85zRqB9NvEXkAf014Vx3jtSvn/xBl6bR8ZYifj+dFcFrKI21huSQgJZ6ZtL3B4HfQ==", + "peer": true, + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^1.1.0", + "semver": "^5.5.0", + "shellwords": "^0.1.1", + "which": "^1.3.0" + } + }, + "node_modules/hygen/node_modules/normalize-path": { + "version": "2.1.1", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "peer": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hygen/node_modules/npm-run-path": { + "version": "2.0.2", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hygen/node_modules/optionator": { + "version": "0.8.3", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "peer": true, + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/hygen/node_modules/p-each-series": { + "version": "1.0.0", + "integrity": "sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=", + "peer": true, + "dependencies": { + "p-reduce": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hygen/node_modules/p-limit": { + "version": "2.3.0", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "peer": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/hygen/node_modules/p-locate": { + "version": "3.0.0", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "peer": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/hygen/node_modules/path-key": { + "version": "2.0.1", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "engines": { + "node": ">=4" + } + }, + "node_modules/hygen/node_modules/pkg-dir": { + "version": "3.0.0", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "peer": true, + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/prelude-ls": { + "version": "1.1.2", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "peer": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/hygen/node_modules/pretty-format": { + "version": "24.9.0", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "peer": true, + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hygen/node_modules/read-pkg-up": { + "version": "4.0.0", + "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", + "peer": true, + "dependencies": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/realpath-native": { + "version": "1.1.0", + "integrity": "sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==", + "peer": true, + "dependencies": { + "util.promisify": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hygen/node_modules/resolve-cwd": { + "version": "2.0.0", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "peer": true, + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hygen/node_modules/resolve-from": { + "version": "3.0.0", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/hygen/node_modules/rimraf": { + "version": "2.7.1", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "peer": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/hygen/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/hygen/node_modules/shebang-command": { + "version": "1.2.0", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hygen/node_modules/shebang-regex": { + "version": "1.0.0", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hygen/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hygen/node_modules/stack-utils": { + "version": "1.0.5", + "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", + "peer": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/hygen/node_modules/string-length": { + "version": "2.0.0", + "integrity": "sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=", + "peer": true, + "dependencies": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hygen/node_modules/string-length/node_modules/ansi-regex": { + "version": "3.0.0", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/hygen/node_modules/string-length/node_modules/strip-ansi": { + "version": "4.0.0", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "peer": true, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hygen/node_modules/string-width": { + "version": "3.1.0", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "peer": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/strip-ansi": { + "version": "5.2.0", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "peer": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/supports-color": { + "version": "6.1.0", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "peer": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/test-exclude": { + "version": "5.2.3", + "integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==", + "peer": true, + "dependencies": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/throat": { + "version": "4.1.0", + "integrity": "sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=", + "peer": true + }, + "node_modules/hygen/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "peer": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hygen/node_modules/tough-cookie": { + "version": "2.5.0", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "peer": true, + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/hygen/node_modules/tr46": { + "version": "1.0.1", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "peer": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/hygen/node_modules/ts-jest": { + "version": "24.3.0", + "integrity": "sha512-Hb94C/+QRIgjVZlJyiWwouYUF+siNJHJHknyspaOcZ+OQAIdFG/UrdQVXw/0B8Z3No34xkUXZJpOTy9alOWdVQ==", + "dependencies": { + "bs-logger": "0.x", + "buffer-from": "1.x", + "fast-json-stable-stringify": "2.x", + "json5": "2.x", + "lodash.memoize": "4.x", + "make-error": "1.x", + "mkdirp": "0.x", + "resolve": "1.x", + "semver": "^5.5", + "yargs-parser": "10.x" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "jest": ">=24 <25" + } + }, + "node_modules/hygen/node_modules/ts-jest/node_modules/camelcase": { + "version": "4.1.0", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/hygen/node_modules/ts-jest/node_modules/yargs-parser": { + "version": "10.1.0", + "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==", + "dependencies": { + "camelcase": "^4.1.0" + } + }, + "node_modules/hygen/node_modules/type-check": { + "version": "0.3.2", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "peer": true, + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/hygen/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/hygen/node_modules/webidl-conversions": { + "version": "4.0.2", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "peer": true + }, + "node_modules/hygen/node_modules/whatwg-url": { + "version": "6.5.0", + "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", + "peer": true, + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/hygen/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/hygen/node_modules/wrap-ansi": { + "version": "5.1.0", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "peer": true, + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hygen/node_modules/write-file-atomic": { + "version": "2.4.1", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "peer": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/hygen/node_modules/ws": { + "version": "5.2.3", + "integrity": "sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA==", + "peer": true, + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/hygen/node_modules/yargs": { + "version": "13.3.2", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "peer": true, + "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" + } + }, + "node_modules/hygen/node_modules/yargs-parser": { + "version": "13.1.2", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/hyphenate-style-name": { + "version": "1.0.4", + "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" + }, + "node_modules/i18next": { + "version": "19.9.2", + "integrity": "sha512-0i6cuo6ER6usEOtKajUUDj92zlG+KArFia0857xxiEHAQcUwh/RtOQocui1LPJwunSYT574Pk64aNva1kwtxZg==", + "dependencies": { + "@babel/runtime": "^7.12.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "4.1.1", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "dependencies": { + "postcss": "^7.0.14" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=", + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/iferr": { + "version": "0.1.5", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" + }, + "node_modules/ignore": { + "version": "5.1.8", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/ignore-walk": { + "version": "3.0.4", + "integrity": "sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==", + "dependencies": { + "minimatch": "^3.0.4" + } + }, + "node_modules/immer": { + "version": "8.0.1", + "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/immutability-helper": { + "version": "3.1.1", + "integrity": "sha512-Q0QaXjPjwIju/28TsugCHNEASwoCcJSyJV3uO1sOIQGI0jKgm9f41Lvz0DZj3n46cNCyAZTsEYoY4C2bVRUzyQ==" + }, + "node_modules/immutable": { + "version": "3.8.2", + "integrity": "sha1-wkOZUUVbs5kT2vKBN28VMOEErfM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-from": { + "version": "3.0.0", + "integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local": { + "version": "3.0.3", + "integrity": "sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA==", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/pkg-dir": { + "version": "4.2.0", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-modules": { + "version": "2.1.0", + "integrity": "sha512-8HEWcnkbGpovH9yInoisxaSoIg9Brbul+Ju3Kqe2UsYDUBJD/iQjSgEj0zPcTDPKfPp2fs5xlv1i+JSye/m1/A==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "3.2.0", + "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=", + "engines": { + "node": ">=4" + } + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + }, + "node_modules/inflected": { + "version": "2.1.0", + "integrity": "sha512-hAEKNxvHf2Iq3H60oMBHkB4wl5jn3TPF3+fXek/sRwAB5gP9xWs4r7aweSF95f99HFoz69pnZTcu8f0SIHV18w==" + }, + "node_modules/inflection": { + "version": "1.13.1", + "integrity": "sha512-dldYtl2WlN0QDkIDtg8+xFwOS2Tbmp12t1cHa5/YClU6ZQjTFm7B66UcVbh9NQB+HvT5BAd2t5+yKsBkw5pcqA==", + "engines": [ + "node >= 0.4.0" + ] + }, + "node_modules/inflight": { + "version": "1.0.6", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/init-package-json": { + "version": "1.10.3", + "integrity": "sha512-zKSiXKhQveNteyhcj1CoOP8tqp1QuxPIPBl8Bid99DGLFqA1p87M6lNgfjJHSBoWJJlidGOv5rWjyYKEB3g2Jw==", + "dependencies": { + "glob": "^7.1.1", + "npm-package-arg": "^4.0.0 || ^5.0.0 || ^6.0.0", + "promzard": "^0.3.0", + "read": "~1.0.1", + "read-package-json": "1 || 2", + "semver": "2.x || 3.x || 4 || 5", + "validate-npm-package-license": "^3.0.1", + "validate-npm-package-name": "^3.0.0" + } + }, + "node_modules/init-package-json/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/inline-style-parser": { + "version": "0.1.1", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" + }, + "node_modules/inline-style-prefixer": { + "version": "3.0.8", + "integrity": "sha1-hVG45bTVcyROZqNLBPfTIHaitTQ=", + "dependencies": { + "bowser": "^1.7.3", + "css-in-js-utils": "^2.0.0" + } + }, + "node_modules/inquirer": { + "version": "6.2.0", + "integrity": "sha512-QIEQG4YyQ2UYZGDC4srMZ7BjHOmNk1lR2JQj5UknBapklm6WHA+VVH7N+sUdX3A7NeCfGF8o4X1S3Ao7nAcIeg==", + "dependencies": { + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.0", + "cli-cursor": "^2.1.0", + "cli-width": "^2.0.0", + "external-editor": "^3.0.0", + "figures": "^2.0.0", + "lodash": "^4.17.10", + "mute-stream": "0.0.7", + "run-async": "^2.2.0", + "rxjs": "^6.1.0", + "string-width": "^2.1.0", + "strip-ansi": "^4.0.0", + "through": "^2.3.6" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/inquirer/node_modules/ansi-escapes": { + "version": "3.2.0", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/inquirer/node_modules/ansi-regex": { + "version": "3.0.0", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "engines": { + "node": ">=4" + } + }, + "node_modules/inquirer/node_modules/escape-string-regexp": { + "version": "1.0.5", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/inquirer/node_modules/figures": { + "version": "2.0.0", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/inquirer/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "engines": { + "node": ">=4" + } + }, + "node_modules/inquirer/node_modules/string-width": { + "version": "2.1.1", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/inquirer/node_modules/strip-ansi": { + "version": "4.0.0", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-slot": { + "version": "1.0.3", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/internmap": { + "version": "1.0.1", + "integrity": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==" + }, + "node_modules/interpret": { + "version": "1.4.0", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/invert-kv": { + "version": "3.0.1", + "integrity": "sha512-CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sindresorhus/invert-kv?sponsor=1" + } + }, + "node_modules/ip": { + "version": "1.1.5", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute-url": { + "version": "3.0.3", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-alphabetical": { + "version": "1.0.4", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "1.0.4", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "node_modules/is-callable": { + "version": "1.2.4", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-ci": { + "version": "2.0.0", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-core-module": { + "version": "2.8.0", + "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.0", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-decimal": { + "version": "1.0.4", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-descriptor": { + "version": "1.0.2", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-directory": { + "version": "0.3.1", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-dom": { + "version": "1.1.0", + "integrity": "sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==", + "dependencies": { + "is-object": "^1.0.1", + "is-window": "^1.0.2" + } + }, + "node_modules/is-extendable": { + "version": "1.0.1", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extendable/node_modules/is-plain-object": { + "version": "2.0.4", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finite": { + "version": "1.1.0", + "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-function": { + "version": "1.0.2", + "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-hexadecimal": { + "version": "1.0.4", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-lower-case": { + "version": "1.1.3", + "integrity": "sha1-fhR75HaNxGbbO/shzGCzHmrWk5M=", + "dependencies": { + "lower-case": "^1.1.0" + } + }, + "node_modules/is-map": { + "version": "2.0.2", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.1", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.6", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "1.0.1", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-object": { + "version": "1.0.2", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-observable": { + "version": "1.1.0", + "integrity": "sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==", + "dev": true, + "dependencies": { + "symbol-observable": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd": { + "version": "2.1.0", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "2.1.0", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "5.0.0", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + }, + "node_modules/is-promise": { + "version": "2.2.2", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", + "dev": true + }, + "node_modules/is-redirect": { + "version": "1.0.0", + "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regexp": { + "version": "1.0.0", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-retry-allowed": { + "version": "1.2.0", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-root": { + "version": "2.1.0", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-scoped": { + "version": "1.0.0", + "integrity": "sha1-RJypgpnnEwOCViieyytUDcQ3yzA=", + "devOptional": true, + "dependencies": { + "scoped-regex": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.1", + "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-ssh": { + "version": "1.3.3", + "integrity": "sha512-NKzJmQzJfEEma3w5cJNcUMxoXfDjz0Zj0eyCalHn2E6VOwlzjZo0yuO2fcBSf8zhFuVCL/82/r5gRcoi6aEPVQ==", + "dependencies": { + "protocols": "^1.1.0" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-subset": { + "version": "0.1.1", + "integrity": "sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=" + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-text-path": { + "version": "1.0.1", + "integrity": "sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=", + "dependencies": { + "text-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-upper-case": { + "version": "1.1.2", + "integrity": "sha1-jQsfp+eTOh5YSDYA7H2WYcuvdW8=", + "dependencies": { + "upper-case": "^1.1.0" + } + }, + "node_modules/is-utf8": { + "version": "0.2.1", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + }, + "node_modules/is-weakref": { + "version": "1.0.1", + "integrity": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==", + "dependencies": { + "call-bind": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-whitespace-character": { + "version": "1.0.4", + "integrity": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-window": { + "version": "1.0.2", + "integrity": "sha1-LIlspT25feRdPDMTOmXYyfVjSA0=" + }, + "node_modules/is-windows": { + "version": "1.0.2", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-word-character": { + "version": "1.0.4", + "integrity": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "node_modules/isbinaryfile": { + "version": "4.0.8", + "integrity": "sha512-53h6XFniq77YdW+spoRrebh0mnmTxRPTlcuIArO57lmMdq4uBKFKaeTjnb92oYWrSn/LVL+LT+Hap2tFQj8V+w==", + "engines": { + "node": ">= 8.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/gjtorikian/" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "node_modules/isobject": { + "version": "3.0.1", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isomorphic-fetch": { + "version": "2.2.1", + "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", + "dependencies": { + "node-fetch": "^1.0.1", + "whatwg-fetch": ">=0.10.0" + } + }, + "node_modules/isomorphic-fetch/node_modules/is-stream": { + "version": "1.1.0", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isomorphic-fetch/node_modules/node-fetch": { + "version": "1.7.3", + "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", + "dependencies": { + "encoding": "^0.1.11", + "is-stream": "^1.0.1" + } + }, + "node_modules/isstream": { + "version": "0.1.2", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.0.4", + "integrity": "sha512-W6jJF9rLGEISGoCyXRqa/JCGQGmmxPO10TMu7izaUTynxvBvTjqzAIIGCK9USBmIbQAaSWD6XJPrM9Pv5INknw==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "3.1.0", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/istanbul-lib-report/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-reports": { + "version": "3.0.5", + "integrity": "sha512-5+19PlhnGabNWB7kOFnuxT8H3T/iIyQzIbQMxXsURmmvKg86P2sbkrGOT77VnHw0Qr0gc2XzRaRfMZYYbSQCJQ==", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istextorbinary": { + "version": "2.6.0", + "integrity": "sha512-+XRlFseT8B3L9KyjxxLjfXSLMuErKDsd8DBNrsaxoViABMEZlOSCstwmw0qpoFX3+U6yWU1yhLudAe6/lETGGA==", + "dependencies": { + "binaryextensions": "^2.1.2", + "editions": "^2.2.0", + "textextensions": "^2.5.0" + }, + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://bevry.me/fund" + } + }, + "node_modules/iterall": { + "version": "1.1.3", + "integrity": "sha512-Cu/kb+4HiNSejAPhSaN1VukdNTTi/r4/e+yykqjlG/IW+1gZH5b4+Bq3whDX4tvbYugta3r8KTMUiqT3fIGxuQ==" + }, + "node_modules/iterate-iterator": { + "version": "1.0.2", + "integrity": "sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/iterate-value": { + "version": "1.0.2", + "integrity": "sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==", + "dependencies": { + "es-get-iterator": "^1.0.2", + "iterate-iterator": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/jake": { + "version": "10.8.2", + "integrity": "sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A==", + "dependencies": { + "async": "0.9.x", + "chalk": "^2.4.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": "*" + } + }, + "node_modules/jake/node_modules/async": { + "version": "0.9.2", + "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=" + }, + "node_modules/java-properties": { + "version": "1.0.2", + "integrity": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/jed": { + "version": "1.1.1", + "integrity": "sha1-elSbvZ/+FYWwzQoZHiAwVb7ldLQ=" + }, + "node_modules/jest": { + "version": "26.6.3", + "integrity": "sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==", + "dependencies": { + "@jest/core": "^26.6.3", + "import-local": "^3.0.2", + "jest-cli": "^26.6.3" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-changed-files": { + "version": "26.6.2", + "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "execa": "^4.0.0", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-cli": { + "version": "26.6.3", + "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==", + "dependencies": { + "@jest/core": "^26.6.3", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^26.6.3", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "prompts": "^2.0.1", + "yargs": "^15.4.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config": { + "version": "26.6.3", + "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^26.6.3", + "@jest/types": "^26.6.2", + "babel-jest": "^26.6.3", + "chalk": "^4.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-environment-jsdom": "^26.6.2", + "jest-environment-node": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-jasmine2": "^26.6.3", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff": { + "version": "26.6.2", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-docblock": { + "version": "26.0.0", + "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-each": { + "version": "26.6.2", + "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-enzyme": { + "version": "7.1.2", + "integrity": "sha512-3tfaYAzO7qZSRrv+srQnfK16Vu5XwH/pHi8FpoqSHjKKngbHzXf7aBCBuWh8y3w0OtknHRfDMFrC60Khj+g1hA==", + "dependencies": { + "jest-environment-jsdom": "^24.0.0" + }, + "peerDependencies": { + "enzyme": "3.x", + "jest": ">=22.0.0", + "react": "^0.13.0 || ^0.14.0 || ^15.0.0 || >=16.x" + } + }, + "node_modules/jest-environment-enzyme/node_modules/@jest/console": { + "version": "24.9.0", + "integrity": "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==", + "dependencies": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/@jest/environment": { + "version": "24.9.0", + "integrity": "sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==", + "dependencies": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/@jest/fake-timers": { + "version": "24.9.0", + "integrity": "sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==", + "dependencies": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/@jest/source-map": { + "version": "24.9.0", + "integrity": "sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/@jest/test-result": { + "version": "24.9.0", + "integrity": "sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==", + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/@jest/transform": { + "version": "24.9.0", + "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/@jest/types": { + "version": "24.9.0", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-environment-enzyme/node_modules/@types/stack-utils": { + "version": "1.0.1", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==" + }, + "node_modules/jest-environment-enzyme/node_modules/@types/yargs": { + "version": "13.0.12", + "integrity": "sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-environment-enzyme/node_modules/acorn": { + "version": "5.7.4", + "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/acorn-globals": { + "version": "4.3.4", + "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", + "dependencies": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + } + }, + "node_modules/jest-environment-enzyme/node_modules/acorn-globals/node_modules/acorn": { + "version": "6.4.2", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/acorn-walk": { + "version": "6.2.0", + "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/anymatch": { + "version": "2.0.0", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/jest-environment-enzyme/node_modules/babel-plugin-istanbul": { + "version": "5.2.0", + "integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/braces": { + "version": "2.3.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/cssom": { + "version": "0.3.8", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + }, + "node_modules/jest-environment-enzyme/node_modules/cssstyle": { + "version": "1.4.0", + "integrity": "sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==", + "dependencies": { + "cssom": "0.3.x" + } + }, + "node_modules/jest-environment-enzyme/node_modules/data-urls": { + "version": "1.1.0", + "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", + "dependencies": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/data-urls/node_modules/whatwg-url": { + "version": "7.1.0", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/jest-environment-enzyme/node_modules/domexception": { + "version": "1.0.1", + "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "dependencies": { + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/jest-environment-enzyme/node_modules/escape-string-regexp": { + "version": "2.0.0", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-enzyme/node_modules/escodegen": { + "version": "1.14.3", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/jest-environment-enzyme/node_modules/estraverse": { + "version": "4.3.0", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/fill-range": { + "version": "4.0.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/find-up": { + "version": "3.0.0", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/fsevents": { + "version": "1.2.13", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/html-encoding-sniffer": { + "version": "1.0.2", + "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", + "dependencies": { + "whatwg-encoding": "^1.0.1" + } + }, + "node_modules/jest-environment-enzyme/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/istanbul-lib-coverage": { + "version": "2.0.5", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/istanbul-lib-instrument": { + "version": "3.3.0", + "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", + "dependencies": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/jest-environment-jsdom": { + "version": "24.9.0", + "integrity": "sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==", + "dependencies": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/jest-haste-map": { + "version": "24.9.0", + "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", + "dependencies": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 6" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/jest-environment-enzyme/node_modules/jest-message-util": { + "version": "24.9.0", + "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/jest-mock": { + "version": "24.9.0", + "integrity": "sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==", + "dependencies": { + "@jest/types": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/jest-regex-util": { + "version": "24.9.0", + "integrity": "sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/jest-serializer": { + "version": "24.9.0", + "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/jest-util": { + "version": "24.9.0", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/jest-worker": { + "version": "24.9.0", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/jsdom": { + "version": "11.12.0", + "integrity": "sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==", + "dependencies": { + "abab": "^2.0.0", + "acorn": "^5.5.3", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": "^1.0.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.1", + "escodegen": "^1.9.1", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.3.0", + "nwsapi": "^2.0.7", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.87.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.4", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^5.2.0", + "xml-name-validator": "^3.0.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/levn": { + "version": "0.3.0", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/locate-path": { + "version": "3.0.0", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/micromatch": { + "version": "3.1.10", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/normalize-path": { + "version": "2.1.1", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/optionator": { + "version": "0.8.3", + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/p-limit": { + "version": "2.3.0", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-environment-enzyme/node_modules/p-locate": { + "version": "3.0.0", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-environment-enzyme/node_modules/prelude-ls": { + "version": "1.1.2", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/read-pkg-up": { + "version": "4.0.0", + "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", + "dependencies": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/realpath-native": { + "version": "1.1.0", + "integrity": "sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==", + "dependencies": { + "util.promisify": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-environment-enzyme/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/jest-environment-enzyme/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/stack-utils": { + "version": "1.0.5", + "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-enzyme/node_modules/supports-color": { + "version": "6.1.0", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/test-exclude": { + "version": "5.2.3", + "integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==", + "dependencies": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-environment-enzyme/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/tough-cookie": { + "version": "2.5.0", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/jest-environment-enzyme/node_modules/tr46": { + "version": "1.0.1", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/type-check": { + "version": "0.3.2", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/jest-environment-enzyme/node_modules/webidl-conversions": { + "version": "4.0.2", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "node_modules/jest-environment-enzyme/node_modules/whatwg-url": { + "version": "6.5.0", + "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/jest-environment-enzyme/node_modules/write-file-atomic": { + "version": "2.4.1", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/jest-environment-enzyme/node_modules/ws": { + "version": "5.2.3", + "integrity": "sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA==", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "26.6.2", + "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==", + "dependencies": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2", + "jsdom": "^16.4.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-environment-node": { + "version": "26.6.2", + "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==", + "dependencies": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-enzyme": { + "version": "7.1.2", + "integrity": "sha512-j+jkph3t5hGBS12eOldpfsnERYRCHi4c/0KWPMnqRPoJJXvCpLIc5th1MHl0xDznQDXVU0AHUXg3rqMrf8vGpA==", + "dependencies": { + "enzyme-matchers": "^7.1.2", + "enzyme-to-json": "^3.3.0", + "jest-environment-enzyme": "^7.1.2" + }, + "peerDependencies": { + "enzyme": ">=3.4.0", + "jest": ">=22.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "26.3.0", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-haste-map": { + "version": "26.6.2", + "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-regex-util": "^26.0.0", + "jest-serializer": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 10.14.2" + }, + "optionalDependencies": { + "fsevents": "^2.1.2" + } + }, + "node_modules/jest-jasmine2": { + "version": "26.6.3", + "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==", + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^26.6.2", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-jasmine2/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-jasmine2/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-jasmine2/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-leak-detector": { + "version": "26.6.2", + "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==", + "dependencies": { + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-matcher-utils": { + "version": "26.6.2", + "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util": { + "version": "26.6.2", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util/node_modules/slash": { + "version": "3.0.0", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-mock": { + "version": "26.6.2", + "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-mock-console": { + "version": "1.2.3", + "integrity": "sha512-q4jfuHW3V3tYzwtKTF6nxjRNriUC2/D2SVfxW88lNeG1qO1mVarBUqgOAvZjTEmxuTsjzGlHQsDIgvlOZaLccg==", + "peerDependencies": { + "jest": ">= 22.4.2" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.2", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "26.0.0", + "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-resolve": { + "version": "26.6.2", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "26.6.3", + "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==", + "dependencies": { + "@jest/types": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-snapshot": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-resolve/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/slash": { + "version": "3.0.0", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner": { + "version": "26.6.3", + "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.7.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-docblock": "^26.0.0", + "jest-haste-map": "^26.6.2", + "jest-leak-detector": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "source-map-support": "^0.5.6", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runner/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime": { + "version": "26.6.3", + "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/globals": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0", + "cjs-module-lexer": "^0.6.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^15.4.1" + }, + "bin": { + "jest-runtime": "bin/jest-runtime.js" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/slash": { + "version": "3.0.0", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/strip-bom": { + "version": "4.0.0", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-serializer": { + "version": "26.6.2", + "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.4" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot": { + "version": "26.6.2", + "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==", + "dependencies": { + "@babel/types": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.0.0", + "chalk": "^4.0.0", + "expect": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-haste-map": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "natural-compare": "^1.4.0", + "pretty-format": "^26.6.2", + "semver": "^7.3.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util": { + "version": "26.6.2", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate": { + "version": "26.6.2", + "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "camelcase": "^6.0.0", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "leven": "^3.1.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.2.0", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher": { + "version": "26.6.2", + "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==", + "dependencies": { + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^26.6.2", + "string-length": "^4.0.1" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker": { + "version": "26.6.2", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jquery": { + "version": "3.6.0", + "integrity": "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw==" + }, + "node_modules/js-beautify": { + "version": "1.14.0", + "integrity": "sha512-yuck9KirNSCAwyNJbqW+BxJqJ0NLJ4PwBUzQQACl5O3qHMBXVkXb/rD0ilh/Lat/tn88zSZ+CAHOlk0DsY7GuQ==", + "dependencies": { + "config-chain": "^1.1.12", + "editorconfig": "^0.15.3", + "glob": "^7.1.3", + "nopt": "^5.0.0" + }, + "bin": { + "css-beautify": "js/bin/css-beautify.js", + "html-beautify": "js/bin/html-beautify.js", + "js-beautify": "js/bin/js-beautify.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/js-beautify/node_modules/nopt": { + "version": "5.0.0", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/js-string-escape": { + "version": "1.0.1", + "integrity": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsbn": { + "version": "0.1.1", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "node_modules/jsdom": { + "version": "16.7.0", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/acorn": { + "version": "8.5.0", + "integrity": "sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jsdom/node_modules/parse5": { + "version": "6.0.1", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/jsesc": { + "version": "2.5.2", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema": { + "version": "0.2.3", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "node_modules/json2mq": { + "version": "0.2.0", + "integrity": "sha1-tje9O6nqvhIsg+lyBIOusQ0skEo=", + "dependencies": { + "string-convert": "^0.2.0" + } + }, + "node_modules/json3": { + "version": "3.3.3", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==" + }, + "node_modules/json5": { + "version": "2.2.0", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json5/node_modules/minimist": { + "version": "1.2.5", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonify": { + "version": "0.0.0", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", + "engines": { + "node": "*" + } + }, + "node_modules/jsonparse": { + "version": "1.3.1", + "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=", + "engines": [ + "node >= 0.2.0" + ] + }, + "node_modules/JSONStream": { + "version": "1.3.5", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "dependencies": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + }, + "bin": { + "JSONStream": "bin.js" + }, + "engines": { + "node": "*" + } + }, + "node_modules/jsprim": { + "version": "1.4.1", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.2.1", + "integrity": "sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==", + "dependencies": { + "array-includes": "^3.1.3", + "object.assign": "^4.1.2" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/junit-report-builder": { + "version": "2.1.0", + "integrity": "sha512-Ioj5I4w18ZcHFaaisqCKdh1z+ipzN7sA2JB+h+WOlGcOMWm0FFN1dfxkgc2I4EXfhSP/mOfM3W43uFzEdz4sTw==", + "dev": true, + "dependencies": { + "date-format": "0.0.2", + "lodash": "^4.17.15", + "make-dir": "^1.3.0", + "xmlbuilder": "^10.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/junit-report-builder/node_modules/make-dir": { + "version": "1.3.0", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/junit-report-builder/node_modules/pify": { + "version": "3.0.0", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/junk": { + "version": "3.1.0", + "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/just-extend": { + "version": "4.2.1", + "integrity": "sha512-g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg==", + "dev": true + }, + "node_modules/kdbush": { + "version": "2.0.1", + "integrity": "sha512-9KqSdmWCkBIisFIGclT0FRagKhI7IVbMyUjsxCFG0Ly1Dg6whlxJ7b9lrq8ifk3X/fGeJzok1R75LQfZTfA5zQ==" + }, + "node_modules/killable": { + "version": "1.0.1", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" + }, + "node_modules/kind-of": { + "version": "6.0.3", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/klaw": { + "version": "1.3.1", + "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=", + "optionalDependencies": { + "graceful-fs": "^4.1.9" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.4", + "integrity": "sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.21", + "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + }, + "node_modules/language-tags": { + "version": "1.0.5", + "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", + "dependencies": { + "language-subtag-registry": "~0.3.2" + } + }, + "node_modules/lazy-cache": { + "version": "2.0.2", + "integrity": "sha1-uRkKT5EzVGlIQIWfio9whNiCImQ=", + "devOptional": true, + "dependencies": { + "set-getter": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lazy-universal-dotenv": { + "version": "3.0.1", + "integrity": "sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==", + "dependencies": { + "@babel/runtime": "^7.5.0", + "app-root-dir": "^1.0.2", + "core-js": "^3.0.4", + "dotenv": "^8.0.0", + "dotenv-expand": "^5.1.0" + }, + "engines": { + "node": ">=6.0.0", + "npm": ">=6.0.0", + "yarn": ">=1.0.0" + } + }, + "node_modules/lcid": { + "version": "3.1.1", + "integrity": "sha512-M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg==", + "dependencies": { + "invert-kv": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/left-pad": { + "version": "1.3.0", + "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==", + "deprecated": "use String.prototype.padStart()" + }, + "node_modules/lerna": { + "version": "3.22.1", + "integrity": "sha512-vk1lfVRFm+UuEFA7wkLKeSF7Iz13W+N/vFd48aW2yuS7Kv0RbNm2/qcDPV863056LMfkRlsEe+QYOw3palj5Lg==", + "dependencies": { + "@lerna/add": "3.21.0", + "@lerna/bootstrap": "3.21.0", + "@lerna/changed": "3.21.0", + "@lerna/clean": "3.21.0", + "@lerna/cli": "3.18.5", + "@lerna/create": "3.22.0", + "@lerna/diff": "3.21.0", + "@lerna/exec": "3.21.0", + "@lerna/import": "3.22.0", + "@lerna/info": "3.21.0", + "@lerna/init": "3.21.0", + "@lerna/link": "3.21.0", + "@lerna/list": "3.21.0", + "@lerna/publish": "3.22.1", + "@lerna/run": "3.21.0", + "@lerna/version": "3.22.1", + "import-local": "^2.0.0", + "npmlog": "^4.1.2" + }, + "bin": { + "lerna": "cli.js" + }, + "engines": { + "node": ">= 6.9.0" + } + }, + "node_modules/lerna/node_modules/find-up": { + "version": "3.0.0", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lerna/node_modules/import-local": { + "version": "2.0.0", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lerna/node_modules/locate-path": { + "version": "3.0.0", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lerna/node_modules/p-limit": { + "version": "2.3.0", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lerna/node_modules/p-locate": { + "version": "3.0.0", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lerna/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/lerna/node_modules/pkg-dir": { + "version": "3.0.0", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lerna/node_modules/resolve-cwd": { + "version": "2.0.0", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/lerna/node_modules/resolve-from": { + "version": "3.0.0", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "engines": { + "node": ">=4" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.1.6", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" + }, + "node_modules/lint-staged": { + "version": "10.5.4", + "integrity": "sha512-EechC3DdFic/TdOPgj/RB3FicqE6932LTHCUm0Y2fsD9KGlLB+RwJl2q1IYBIvEsKzDOgn0D4gll+YxG5RsrKg==", + "dependencies": { + "chalk": "^4.1.0", + "cli-truncate": "^2.1.0", + "commander": "^6.2.0", + "cosmiconfig": "^7.0.0", + "debug": "^4.2.0", + "dedent": "^0.7.0", + "enquirer": "^2.3.6", + "execa": "^4.1.0", + "listr2": "^3.2.2", + "log-symbols": "^4.0.0", + "micromatch": "^4.0.2", + "normalize-path": "^3.0.0", + "please-upgrade-node": "^3.2.0", + "string-argv": "0.3.1", + "stringify-object": "^3.3.0" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" + }, + "funding": { + "url": "https://opencollective.com/lint-staged" + } + }, + "node_modules/lint-staged/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/lint-staged/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/lint-staged/node_modules/commander": { + "version": "6.2.1", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/lint-staged/node_modules/cosmiconfig": { + "version": "7.0.1", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/lint-staged/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/lint-staged/node_modules/parse-json": { + "version": "5.2.0", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/listr": { + "version": "0.14.3", + "integrity": "sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==", + "dev": true, + "dependencies": { + "@samverschueren/stream-to-observable": "^0.3.0", + "is-observable": "^1.1.0", + "is-promise": "^2.1.0", + "is-stream": "^1.1.0", + "listr-silent-renderer": "^1.1.1", + "listr-update-renderer": "^0.5.0", + "listr-verbose-renderer": "^0.5.0", + "p-map": "^2.0.0", + "rxjs": "^6.3.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/listr-silent-renderer": { + "version": "1.1.1", + "integrity": "sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/listr-update-renderer": { + "version": "0.5.0", + "integrity": "sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==", + "dev": true, + "dependencies": { + "chalk": "^1.1.3", + "cli-truncate": "^0.2.1", + "elegant-spinner": "^1.0.1", + "figures": "^1.7.0", + "indent-string": "^3.0.0", + "log-symbols": "^1.0.2", + "log-update": "^2.3.0", + "strip-ansi": "^3.0.1" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "listr": "^0.14.2" + } + }, + "node_modules/listr-update-renderer/node_modules/ansi-regex": { + "version": "2.1.1", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/listr-update-renderer/node_modules/ansi-styles": { + "version": "2.2.1", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/listr-update-renderer/node_modules/chalk": { + "version": "1.1.3", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/listr-update-renderer/node_modules/cli-truncate": { + "version": "0.2.1", + "integrity": "sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=", + "dev": true, + "dependencies": { + "slice-ansi": "0.0.4", + "string-width": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/listr-update-renderer/node_modules/escape-string-regexp": { + "version": "1.0.5", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/listr-update-renderer/node_modules/figures": { + "version": "1.7.0", + "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5", + "object-assign": "^4.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/listr-update-renderer/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/listr-update-renderer/node_modules/log-symbols": { + "version": "1.0.2", + "integrity": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=", + "dev": true, + "dependencies": { + "chalk": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/listr-update-renderer/node_modules/slice-ansi": { + "version": "0.0.4", + "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/listr-update-renderer/node_modules/string-width": { + "version": "1.0.2", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/listr-update-renderer/node_modules/strip-ansi": { + "version": "3.0.1", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/listr-update-renderer/node_modules/supports-color": { + "version": "2.0.0", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/listr-verbose-renderer": { + "version": "0.5.0", + "integrity": "sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "cli-cursor": "^2.1.0", + "date-fns": "^1.27.2", + "figures": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/listr-verbose-renderer/node_modules/escape-string-regexp": { + "version": "1.0.5", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/listr-verbose-renderer/node_modules/figures": { + "version": "2.0.0", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/listr/node_modules/is-stream": { + "version": "1.1.0", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/listr2": { + "version": "3.12.2", + "integrity": "sha512-64xC2CJ/As/xgVI3wbhlPWVPx0wfTqbUAkpb7bjDi0thSWMqrf07UFhrfsGoo8YSXmF049Rp9C0cjLC8rZxK9A==", + "dependencies": { + "cli-truncate": "^2.1.0", + "colorette": "^1.4.0", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rxjs": "^6.6.7", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "enquirer": ">= 2.3.0 < 3" + } + }, + "node_modules/listr2/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/listr2/node_modules/cli-cursor": { + "version": "3.1.0", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/listr2/node_modules/log-update": { + "version": "4.0.0", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", + "dependencies": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/listr2/node_modules/log-update/node_modules/wrap-ansi": { + "version": "6.2.0", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/listr2/node_modules/p-map": { + "version": "4.0.0", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/listr2/node_modules/restore-cursor": { + "version": "3.1.0", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/listr2/node_modules/slice-ansi": { + "version": "4.0.0", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/listr2/node_modules/wrap-ansi": { + "version": "7.0.0", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/load-json-file": { + "version": "5.3.0", + "integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==", + "dependencies": { + "graceful-fs": "^4.1.15", + "parse-json": "^4.0.0", + "pify": "^4.0.1", + "strip-bom": "^3.0.0", + "type-fest": "^0.3.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/load-json-file/node_modules/pify": { + "version": "4.0.1", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/load-json-file/node_modules/type-fest": { + "version": "0.3.1", + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/loader-runner": { + "version": "2.4.0", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/loader-utils": { + "version": "1.4.0", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/loader-utils/node_modules/json5": { + "version": "1.0.1", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash._baseisequal": { + "version": "3.0.7", + "integrity": "sha1-2AJfdjOdKTQnZ9zIh85cuVpbUfE=", + "dependencies": { + "lodash.isarray": "^3.0.0", + "lodash.istypedarray": "^3.0.0", + "lodash.keys": "^3.0.0" + } + }, + "node_modules/lodash._bindcallback": { + "version": "3.0.1", + "integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4=" + }, + "node_modules/lodash._getnative": { + "version": "3.9.1", + "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=" + }, + "node_modules/lodash._reinterpolate": { + "version": "3.0.0", + "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" + }, + "node_modules/lodash.clonedeep": { + "version": "4.5.0", + "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + }, + "node_modules/lodash.escape": { + "version": "4.0.1", + "integrity": "sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg=" + }, + "node_modules/lodash.flattendeep": { + "version": "4.4.0", + "integrity": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=" + }, + "node_modules/lodash.get": { + "version": "4.4.2", + "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" + }, + "node_modules/lodash.isarguments": { + "version": "3.1.0", + "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=" + }, + "node_modules/lodash.isarray": { + "version": "3.0.4", + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=" + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" + }, + "node_modules/lodash.ismatch": { + "version": "4.4.0", + "integrity": "sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=" + }, + "node_modules/lodash.istypedarray": { + "version": "3.0.6", + "integrity": "sha1-yaR3SYYHUB2OhJTSg7h8OSgc72I=" + }, + "node_modules/lodash.keys": { + "version": "3.1.2", + "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", + "dependencies": { + "lodash._getnative": "^3.0.0", + "lodash.isarguments": "^3.0.0", + "lodash.isarray": "^3.0.0" + } + }, + "node_modules/lodash.map": { + "version": "4.6.0", + "integrity": "sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "node_modules/lodash.set": { + "version": "4.3.2", + "integrity": "sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM=" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" + }, + "node_modules/lodash.template": { + "version": "4.5.0", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "dependencies": { + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" + } + }, + "node_modules/lodash.templatesettings": { + "version": "4.2.0", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "dependencies": { + "lodash._reinterpolate": "^3.0.0" + } + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", + "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + }, + "node_modules/lodash.zip": { + "version": "4.2.0", + "integrity": "sha1-7GZi5IlkCO1KtsVCo5kLcswIACA=" + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-update": { + "version": "2.3.0", + "integrity": "sha1-iDKP19HOeTiykoN0bwsbwSayRwg=", + "dev": true, + "dependencies": { + "ansi-escapes": "^3.0.0", + "cli-cursor": "^2.0.0", + "wrap-ansi": "^3.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/ansi-escapes": { + "version": "3.2.0", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/ansi-regex": { + "version": "3.0.0", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/string-width": { + "version": "2.1.1", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/strip-ansi": { + "version": "4.0.0", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "3.0.1", + "integrity": "sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo=", + "dev": true, + "dependencies": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/loglevel": { + "version": "1.7.1", + "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==", + "engines": { + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" + } + }, + "node_modules/lolex": { + "version": "5.1.2", + "integrity": "sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A==", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/longest": { + "version": "1.0.1", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/loud-rejection": { + "version": "1.6.0", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", + "dependencies": { + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lower-case": { + "version": "1.1.4", + "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=" + }, + "node_modules/lower-case-first": { + "version": "1.0.2", + "integrity": "sha1-5dp8JvKacHO+AtUrrJmA5ZIq36E=", + "dependencies": { + "lower-case": "^1.1.2" + } + }, + "node_modules/lowercase-keys": { + "version": "1.0.1", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lowlight": { + "version": "1.20.0", + "integrity": "sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==", + "dependencies": { + "fault": "^1.0.0", + "highlight.js": "~10.7.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/lz-string": { + "version": "1.4.4", + "integrity": "sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=", + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/macos-release": { + "version": "2.5.0", + "integrity": "sha512-EIgv+QZ9r+814gjJj0Bt5vSLJLzswGmSUbUpbi9AIr/fsN2IWFBl2NucV9PAiek+U1STK468tEkxmVYUtuAN3g==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/magic-string": { + "version": "0.22.5", + "integrity": "sha512-oreip9rJZkzvA8Qzk9HFs8fZGF/u7H/gtrE8EN6RjKJ9kh2HlC+yQ2QezifqTZfGyiuAV0dRv5a+y/8gBb1m9w==", + "dependencies": { + "vlq": "^0.2.2" + } + }, + "node_modules/make-dir": { + "version": "2.1.0", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/pify": { + "version": "4.0.1", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" + }, + "node_modules/make-fetch-happen": { + "version": "5.0.2", + "integrity": "sha512-07JHC0r1ykIoruKO8ifMXu+xEU8qOXDFETylktdug6vJDACnP+HKevOu3PXyNPzFyTSlz8vrBYlBO1JZRe8Cag==", + "dependencies": { + "agentkeepalive": "^3.4.1", + "cacache": "^12.0.0", + "http-cache-semantics": "^3.8.1", + "http-proxy-agent": "^2.1.0", + "https-proxy-agent": "^2.2.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "node-fetch-npm": "^2.0.2", + "promise-retry": "^1.1.1", + "socks-proxy-agent": "^4.0.0", + "ssri": "^6.0.0" + } + }, + "node_modules/make-fetch-happen/node_modules/agent-base": { + "version": "4.3.0", + "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", + "dependencies": { + "es6-promisify": "^5.0.0" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/make-fetch-happen/node_modules/debug": { + "version": "3.1.0", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/make-fetch-happen/node_modules/http-proxy-agent": { + "version": "2.1.0", + "integrity": "sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==", + "dependencies": { + "agent-base": "4", + "debug": "3.1.0" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/make-fetch-happen/node_modules/https-proxy-agent": { + "version": "2.2.4", + "integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==", + "dependencies": { + "agent-base": "^4.3.0", + "debug": "^3.1.0" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/make-fetch-happen/node_modules/lru-cache": { + "version": "5.1.1", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-fetch-happen/node_modules/ms": { + "version": "2.0.0", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/make-fetch-happen/node_modules/yallist": { + "version": "3.1.1", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/makeerror": { + "version": "1.0.11", + "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "dependencies": { + "tmpl": "1.0.x" + } + }, + "node_modules/map-age-cleaner": { + "version": "0.1.3", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "dependencies": { + "p-defer": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-obj": { + "version": "2.0.0", + "integrity": "sha1-plzSkIepJZi4eRJXpSPgISIqwfk=", + "engines": { + "node": ">=4" + } + }, + "node_modules/map-or-similar": { + "version": "1.5.0", + "integrity": "sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=" + }, + "node_modules/map-visit": { + "version": "1.0.0", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mapbox-gl": { + "version": "0.53.1", + "integrity": "sha512-dTtW/qlkUowKGlqOhE8fqII2Tj4lcokvlZwUDLnkjy4uQ9zMFnVBULGeSzzTVkj9HtQZ3Zbey10/jmoVPV9t5w==", + "dependencies": { + "@mapbox/geojson-rewind": "^0.4.0", + "@mapbox/geojson-types": "^1.0.2", + "@mapbox/jsonlint-lines-primitives": "^2.0.2", + "@mapbox/mapbox-gl-supported": "^1.4.0", + "@mapbox/point-geometry": "^0.1.0", + "@mapbox/tiny-sdf": "^1.1.0", + "@mapbox/unitbezier": "^0.0.0", + "@mapbox/vector-tile": "^1.3.1", + "@mapbox/whoots-js": "^3.1.0", + "csscolorparser": "~1.0.2", + "earcut": "^2.1.5", + "esm": "^3.0.84", + "geojson-vt": "^3.2.1", + "gl-matrix": "^3.0.0", + "grid-index": "^1.1.0", + "minimist": "0.0.8", + "murmurhash-js": "^1.0.0", + "pbf": "^3.0.5", + "potpack": "^1.0.1", + "quickselect": "^2.0.0", + "rw": "^1.3.3", + "supercluster": "^6.0.1", + "tinyqueue": "^2.0.0", + "vt-pbf": "^3.1.1" + }, + "engines": { + "node": ">=6.4.0" + } + }, + "node_modules/mapbox-gl/node_modules/kdbush": { + "version": "3.0.0", + "integrity": "sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew==" + }, + "node_modules/mapbox-gl/node_modules/minimist": { + "version": "0.0.8", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, + "node_modules/mapbox-gl/node_modules/supercluster": { + "version": "6.0.2", + "integrity": "sha512-aa0v2HURjBTOpbcknilcfxGDuArM8khklKSmZ/T8ZXL0BuRwb5aRw95lz+2bmWpFvCXDX/+FzqHxmg0TIaJErw==", + "dependencies": { + "kdbush": "^3.0.0" + } + }, + "node_modules/markdown-escapes": { + "version": "1.0.4", + "integrity": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/match-sorter": { + "version": "6.3.1", + "integrity": "sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "remove-accents": "0.4.2" + } + }, + "node_modules/math-expression-evaluator": { + "version": "1.3.8", + "integrity": "sha512-9FbRY3i6U+CbHgrdNbAUaisjWTozkm1ZfupYQJiZ87NtYHk2Zh9DvxMgp/fifxVhqTLpd5fCCLossUbpZxGeKw==" + }, + "node_modules/mathfn": { + "version": "1.2.0", + "integrity": "sha512-QBcepxkFxuGk12q4G0KuNbuU3UCXhDROxWZllaNZSpBivkHl2z8qNvi7UGE/WLJt+c7GTC4jigYtur+JDL+40A==", + "deprecated": "Use cephes instead, for a more complete and well-tested module" + }, + "node_modules/md5.js": { + "version": "1.3.5", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/mdast-add-list-metadata": { + "version": "1.0.1", + "integrity": "sha512-fB/VP4MJ0LaRsog7hGPxgOrSL3gE/2uEdZyDuSEnKCv/8IkYHiDkIQSbChiJoHyxZZXZ9bzckyRk+vNxFzh8rA==", + "dependencies": { + "unist-util-visit-parents": "1.1.2" + } + }, + "node_modules/mdast-squeeze-paragraphs": { + "version": "4.0.0", + "integrity": "sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==", + "dependencies": { + "unist-util-remove": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-definitions": { + "version": "4.0.0", + "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==", + "dependencies": { + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-definitions/node_modules/unist-util-is": { + "version": "4.1.0", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-definitions/node_modules/unist-util-visit": { + "version": "2.0.3", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-definitions/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "10.0.1", + "integrity": "sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "mdast-util-definitions": "^4.0.0", + "mdurl": "^1.0.0", + "unist-builder": "^2.0.0", + "unist-util-generated": "^1.0.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast/node_modules/unist-util-is": { + "version": "4.1.0", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast/node_modules/unist-util-visit": { + "version": "2.0.3", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdurl": { + "version": "1.0.1", + "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mem": { + "version": "5.1.1", + "integrity": "sha512-qvwipnozMohxLXG1pOqoLiZKNkC4r4qqRucSoDwXowsNGDSULiqFTRUF05vcZWnwJSG22qTsynQhxbaMtnX9gw==", + "dependencies": { + "map-age-cleaner": "^0.1.3", + "mimic-fn": "^2.1.0", + "p-is-promise": "^2.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mem-fs": { + "version": "1.2.0", + "integrity": "sha512-b8g0jWKdl8pM0LqAPdK9i8ERL7nYrzmJfRhxMiWH2uYdfYnb7uXnmwVb0ZGe7xyEl4lj+nLIU3yf4zPUT+XsVQ==", + "devOptional": true, + "dependencies": { + "through2": "^3.0.0", + "vinyl": "^2.0.1", + "vinyl-file": "^3.0.0" + } + }, + "node_modules/mem-fs-editor": { + "version": "7.1.0", + "integrity": "sha512-BH6QEqCXSqGeX48V7zu+e3cMwHU7x640NB8Zk8VNvVZniz+p4FK60pMx/3yfkzo6miI6G3a8pH6z7FeuIzqrzA==", + "dependencies": { + "commondir": "^1.0.1", + "deep-extend": "^0.6.0", + "ejs": "^3.1.5", + "glob": "^7.1.4", + "globby": "^9.2.0", + "isbinaryfile": "^4.0.0", + "mkdirp": "^1.0.0", + "multimatch": "^4.0.0", + "rimraf": "^3.0.0", + "through2": "^3.0.2", + "vinyl": "^2.2.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/mem-fs-editor/node_modules/@nodelib/fs.stat": { + "version": "1.1.3", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/mem-fs-editor/node_modules/array-differ": { + "version": "3.0.0", + "integrity": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/mem-fs-editor/node_modules/arrify": { + "version": "2.0.1", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "engines": { + "node": ">=8" + } + }, + "node_modules/mem-fs-editor/node_modules/braces": { + "version": "2.3.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mem-fs-editor/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mem-fs-editor/node_modules/dir-glob": { + "version": "2.2.2", + "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", + "dependencies": { + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mem-fs-editor/node_modules/ejs": { + "version": "3.1.6", + "integrity": "sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==", + "dependencies": { + "jake": "^10.6.1" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mem-fs-editor/node_modules/fast-glob": { + "version": "2.2.7", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", + "dependencies": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mem-fs-editor/node_modules/fill-range": { + "version": "4.0.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mem-fs-editor/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mem-fs-editor/node_modules/glob-parent": { + "version": "3.1.0", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/mem-fs-editor/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mem-fs-editor/node_modules/globby": { + "version": "9.2.0", + "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==", + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/mem-fs-editor/node_modules/globby/node_modules/array-union": { + "version": "1.0.2", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mem-fs-editor/node_modules/ignore": { + "version": "4.0.6", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/mem-fs-editor/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mem-fs-editor/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mem-fs-editor/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mem-fs-editor/node_modules/micromatch": { + "version": "3.1.10", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mem-fs-editor/node_modules/mkdirp": { + "version": "1.0.4", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mem-fs-editor/node_modules/multimatch": { + "version": "4.0.0", + "integrity": "sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==", + "dependencies": { + "@types/minimatch": "^3.0.3", + "array-differ": "^3.0.0", + "array-union": "^2.1.0", + "arrify": "^2.0.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mem-fs-editor/node_modules/path-type": { + "version": "3.0.0", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mem-fs-editor/node_modules/path-type/node_modules/pify": { + "version": "3.0.0", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "engines": { + "node": ">=4" + } + }, + "node_modules/mem-fs-editor/node_modules/pify": { + "version": "4.0.1", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/mem-fs-editor/node_modules/through2": { + "version": "3.0.2", + "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" + } + }, + "node_modules/mem-fs-editor/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mem-fs/node_modules/through2": { + "version": "3.0.2", + "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", + "devOptional": true, + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" + } + }, + "node_modules/memfs": { + "version": "3.3.0", + "integrity": "sha512-BEE62uMfKOavX3iG7GYX43QJ+hAeeWnwIAuJ/R6q96jaMtiLzhsxHJC8B1L7fK7Pt/vXDRwb3SG/yBpNGDPqzg==", + "dependencies": { + "fs-monkey": "1.0.3" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/memoize-one": { + "version": "5.2.1", + "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==" + }, + "node_modules/memoizerific": { + "version": "1.11.3", + "integrity": "sha1-fIekZGREwy11Q4VwkF8tvRsagFo=", + "dependencies": { + "map-or-similar": "^1.5.0" + } + }, + "node_modules/memory-fs": { + "version": "0.2.0", + "integrity": "sha1-8rslNovBIeORwlIN6Slpyu4KApA=" + }, + "node_modules/meow": { + "version": "5.0.0", + "integrity": "sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig==", + "dependencies": { + "camelcase-keys": "^4.0.0", + "decamelize-keys": "^1.0.0", + "loud-rejection": "^1.0.0", + "minimist-options": "^3.0.1", + "normalize-package-data": "^2.3.4", + "read-pkg-up": "^3.0.0", + "redent": "^2.0.0", + "trim-newlines": "^2.0.0", + "yargs-parser": "^10.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/meow/node_modules/camelcase": { + "version": "4.1.0", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/meow/node_modules/find-up": { + "version": "2.1.0", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/meow/node_modules/hosted-git-info": { + "version": "2.8.9", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/meow/node_modules/locate-path": { + "version": "2.0.0", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/meow/node_modules/normalize-package-data": { + "version": "2.5.0", + "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" + } + }, + "node_modules/meow/node_modules/p-limit": { + "version": "1.3.0", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/meow/node_modules/p-locate": { + "version": "2.0.0", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/meow/node_modules/p-try": { + "version": "1.0.0", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "engines": { + "node": ">=4" + } + }, + "node_modules/meow/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/meow/node_modules/read-pkg-up": { + "version": "3.0.0", + "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", + "dependencies": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/meow/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/meow/node_modules/yargs-parser": { + "version": "10.1.0", + "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==", + "dependencies": { + "camelcase": "^4.1.0" + } + }, + "node_modules/merge": { + "version": "1.2.1", + "integrity": "sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==" + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "node_modules/merge-source-map": { + "version": "1.0.4", + "integrity": "sha1-pd5GU42uhNQRTMXqArR3KmNGcB8=", + "dependencies": { + "source-map": "^0.5.6" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/microevent.ts": { + "version": "0.1.1", + "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" + }, + "node_modules/micromatch": { + "version": "4.0.4", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dependencies": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/miller-rabin": { + "version": "4.0.1", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.0", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/mime": { + "version": "1.6.0", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.50.0", + "integrity": "sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.33", + "integrity": "sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==", + "dependencies": { + "mime-db": "1.50.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/min-document": { + "version": "2.19.0", + "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", + "dependencies": { + "dom-walk": "^0.1.0" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + }, + "node_modules/minimatch": { + "version": "3.0.4", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.0", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" + }, + "node_modules/minimist-options": { + "version": "3.0.2", + "integrity": "sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==", + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/minipass": { + "version": "2.9.0", + "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", + "dependencies": { + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-collect/node_modules/minipass": { + "version": "3.1.5", + "integrity": "sha512-+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush/node_modules/minipass": { + "version": "3.1.5", + "integrity": "sha512-+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.1.5", + "integrity": "sha512-+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass/node_modules/yallist": { + "version": "3.1.1", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/minizlib": { + "version": "1.3.3", + "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", + "dependencies": { + "minipass": "^2.9.0" + } + }, + "node_modules/mississippi": { + "version": "3.0.0", + "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" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mississippi/node_modules/concat-stream": { + "version": "1.6.2", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/mississippi/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/mississippi/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/mississippi/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/mississippi/node_modules/through2": { + "version": "2.0.5", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mjolnir.js": { + "version": "2.6.0", + "integrity": "sha512-rGA7+BJKvXI0ypxQD/+rQE/sW26kmc8UIZWhmQrjhwCf/zvhbcBlsu2vPB6w0Kv/rVnVFEONTSQqC0vFEpQvIA==", + "dependencies": { + "@babel/runtime": "^7.0.0", + "hammerjs": "^2.0.8" + }, + "engines": { + "node": ">= 4", + "npm": ">= 3" + } + }, + "node_modules/mkdirp": { + "version": "0.5.5", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/mkdirp-promise": { + "version": "5.0.1", + "integrity": "sha1-6bj2jlUsaKnBcTuEiD96HdA5uKE=", + "deprecated": "This package is broken and no longer maintained. 'mkdirp' itself supports promises now, please switch to that.", + "dependencies": { + "mkdirp": "*" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mkdirp/node_modules/minimist": { + "version": "1.2.5", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "node_modules/modify-values": { + "version": "1.0.1", + "integrity": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/moment": { + "version": "2.29.1", + "integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==", + "engines": { + "node": "*" + } + }, + "node_modules/moo": { + "version": "0.5.1", + "integrity": "sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w==" + }, + "node_modules/move-concurrently": { + "version": "1.0.1", + "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" + } + }, + "node_modules/move-concurrently/node_modules/aproba": { + "version": "1.2.0", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "node_modules/move-concurrently/node_modules/rimraf": { + "version": "2.7.1", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/multicast-dns": { + "version": "6.2.3", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dependencies": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multicast-dns-service-types": { + "version": "1.1.0", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" + }, + "node_modules/multimap": { + "version": "1.1.0", + "integrity": "sha512-0ZIR9PasPxGXmRsEF8jsDzndzHDj7tIav+JUmvIFB/WHswliFnquxECT/De7GR4yg99ky/NlRKJT82G1y271bw==" + }, + "node_modules/multimatch": { + "version": "3.0.0", + "integrity": "sha512-22foS/gqQfANZ3o+W7ST2x25ueHDVNWl/b9OlGcLpy/iKxjCpvcNCM51YCenUi7Mt/jAjjqv8JwZRs8YP5sRjA==", + "dependencies": { + "array-differ": "^2.0.3", + "array-union": "^1.0.2", + "arrify": "^1.0.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/multimatch/node_modules/array-union": { + "version": "1.0.2", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/murmurhash-js": { + "version": "1.0.0", + "integrity": "sha1-sGJ44h/Gw3+lMTcysEEry2rhX1E=" + }, + "node_modules/mustache": { + "version": "4.2.0", + "integrity": "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==", + "bin": { + "mustache": "bin/mustache" + } + }, + "node_modules/mute-stream": { + "version": "0.0.7", + "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=" + }, + "node_modules/mz": { + "version": "2.7.0", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nan": { + "version": "2.15.0", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", + "optional": true + }, + "node_modules/nanoid": { + "version": "2.1.11", + "integrity": "sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==" + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/native-url": { + "version": "0.2.6", + "integrity": "sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==", + "dependencies": { + "querystring": "^0.2.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + }, + "node_modules/nearley": { + "version": "2.20.1", + "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", + "dependencies": { + "commander": "^2.19.0", + "moo": "^0.5.0", + "railroad-diagrams": "^1.0.0", + "randexp": "0.4.6" + }, + "bin": { + "nearley-railroad": "bin/nearley-railroad.js", + "nearley-test": "bin/nearley-test.js", + "nearley-unparse": "bin/nearley-unparse.js", + "nearleyc": "bin/nearleyc.js" + }, + "funding": { + "type": "individual", + "url": "https://nearley.js.org/#give-to-nearley" + } + }, + "node_modules/nearley/node_modules/commander": { + "version": "2.20.3", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/negotiator": { + "version": "0.6.2", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "node_modules/nested-error-stacks": { + "version": "2.1.0", + "integrity": "sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==" + }, + "node_modules/nice-try": { + "version": "1.0.5", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + }, + "node_modules/nise": { + "version": "4.1.0", + "integrity": "sha512-eQMEmGN/8arp0xsvGoQ+B1qvSkR73B1nWSCh7nOt5neMCtwcQVYQGdzQMhcNscktTsWB54xnlSQFzOAPJD8nXA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^1.7.0", + "@sinonjs/fake-timers": "^6.0.0", + "@sinonjs/text-encoding": "^0.7.1", + "just-extend": "^4.0.2", + "path-to-regexp": "^1.7.0" + } + }, + "node_modules/nise/node_modules/isarray": { + "version": "0.0.1", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "node_modules/nise/node_modules/path-to-regexp": { + "version": "1.8.0", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dev": true, + "dependencies": { + "isarray": "0.0.1" + } + }, + "node_modules/no-case": { + "version": "2.3.2", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "dependencies": { + "lower-case": "^1.1.1" + } + }, + "node_modules/no-proxy": { + "version": "1.0.3", + "integrity": "sha512-JPr13PIb/cENY5+WjuxzhQH74guHYPpyfk+7f7lR7SIpDE1kH0BL9jO7yztANg3jFT8jf58UEimbCBflW5UiTw==", + "dev": true, + "dependencies": { + "wildcard": "^1.1.2" + }, + "optionalDependencies": { + "url-parse": "^1.2.0" + } + }, + "node_modules/node-ask": { + "version": "1.0.1", + "integrity": "sha1-yqoQdsxY4DZCZ6CQPj6t+sFYOWs=", + "dev": true + }, + "node_modules/node-dir": { + "version": "0.1.17", + "integrity": "sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=", + "dependencies": { + "minimatch": "^3.0.2" + }, + "engines": { + "node": ">= 0.10.5" + } + }, + "node_modules/node-environment-flags": { + "version": "1.0.6", + "integrity": "sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw==", + "dependencies": { + "object.getownpropertydescriptors": "^2.0.3", + "semver": "^5.7.0" + } + }, + "node_modules/node-environment-flags/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/node-fetch": { + "version": "2.6.0", + "integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==", + "engines": { + "node": "4.x || >=6.0.0" + } + }, + "node_modules/node-fetch-npm": { + "version": "2.0.4", + "integrity": "sha512-iOuIQDWDyjhv9qSDrj9aq/klt6F9z1p2otB3AV7v3zBDcL/x+OfGsvGQZZCcMZbUf4Ujw1xGNQkjvGnVT22cKg==", + "dependencies": { + "encoding": "^0.1.11", + "json-parse-better-errors": "^1.0.0", + "safe-buffer": "^5.1.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/node-forge": { + "version": "0.10.0", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-gyp": { + "version": "5.1.1", + "integrity": "sha512-WH0WKGi+a4i4DUt2mHnvocex/xPLp9pYt5R6M2JdFB7pJ7Z34hveZ4nDTGTiLXCkitA9T8HFZjhinBCiVHYcWw==", + "dependencies": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.2", + "mkdirp": "^0.5.1", + "nopt": "^4.0.1", + "npmlog": "^4.1.2", + "request": "^2.88.0", + "rimraf": "^2.6.3", + "semver": "^5.7.1", + "tar": "^4.4.12", + "which": "^1.3.1" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-gyp/node_modules/rimraf": { + "version": "2.7.1", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/node-gyp/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/node-gyp/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" + }, + "node_modules/node-libs-browser": { + "version": "2.2.1", + "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_modules/node-libs-browser/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/node-libs-browser/node_modules/punycode": { + "version": "1.4.1", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + }, + "node_modules/node-libs-browser/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/node-libs-browser/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/node-loggly-bulk": { + "version": "2.2.5", + "integrity": "sha512-N6RjZfjqwhAYwT9nM8PFKXpWfaGFaDHnzwj2JBgsNq04xsEZNGMlI+rds90p5/TTkYAS8Ya6tbJChXFRqTSmiA==", + "dev": true, + "dependencies": { + "json-stringify-safe": "5.0.x", + "moment": "^2.18.1", + "request": ">=2.76.0 <3.0.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/node-modules-regexp": { + "version": "1.0.0", + "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/node-notifier": { + "version": "8.0.2", + "integrity": "sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==", + "optional": true, + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.2", + "shellwords": "^0.1.1", + "uuid": "^8.3.0", + "which": "^2.0.2" + } + }, + "node_modules/node-releases": { + "version": "2.0.0", + "integrity": "sha512-aA87l0flFYMzCHpTM3DERFSYxc6lv/BltdbRTOMZuxZ0cwZCD3mejE5n9vLhSJCN++/eOqr77G1IO5uXxlQYWA==" + }, + "node_modules/nopt": { + "version": "4.0.3", + "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==", + "dependencies": { + "abbrev": "1", + "osenv": "^0.1.4" + }, + "bin": { + "nopt": "bin/nopt.js" + } + }, + "node_modules/normalize-package-data": { + "version": "3.0.3", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm": { + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/npm/-/npm-7.24.2.tgz", + "integrity": "sha512-120p116CE8VMMZ+hk8IAb1inCPk4Dj3VZw29/n2g6UI77urJKVYb7FZUDW8hY+EBnfsjI/2yrobBgFyzo7YpVQ==", + "bundleDependencies": [ + "@isaacs/string-locale-compare", + "@npmcli/arborist", + "@npmcli/ci-detect", + "@npmcli/config", + "@npmcli/map-workspaces", + "@npmcli/package-json", + "@npmcli/run-script", + "abbrev", + "ansicolors", + "ansistyles", + "archy", + "cacache", + "chalk", + "chownr", + "cli-columns", + "cli-table3", + "columnify", + "fastest-levenshtein", + "glob", + "graceful-fs", + "hosted-git-info", + "ini", + "init-package-json", + "is-cidr", + "json-parse-even-better-errors", + "libnpmaccess", + "libnpmdiff", + "libnpmexec", + "libnpmfund", + "libnpmhook", + "libnpmorg", + "libnpmpack", + "libnpmpublish", + "libnpmsearch", + "libnpmteam", + "libnpmversion", + "make-fetch-happen", + "minipass", + "minipass-pipeline", + "mkdirp", + "mkdirp-infer-owner", + "ms", + "node-gyp", + "nopt", + "npm-audit-report", + "npm-install-checks", + "npm-package-arg", + "npm-pick-manifest", + "npm-profile", + "npm-registry-fetch", + "npm-user-validate", + "npmlog", + "opener", + "pacote", + "parse-conflict-json", + "qrcode-terminal", + "read", + "read-package-json", + "read-package-json-fast", + "readdir-scoped-modules", + "rimraf", + "semver", + "ssri", + "tar", + "text-table", + "tiny-relative-date", + "treeverse", + "validate-npm-package-name", + "which", + "write-file-atomic" + ], + "dependencies": { + "@isaacs/string-locale-compare": "*", + "@npmcli/arborist": "*", + "@npmcli/ci-detect": "*", + "@npmcli/config": "*", + "@npmcli/map-workspaces": "*", + "@npmcli/package-json": "*", + "@npmcli/run-script": "*", + "abbrev": "*", + "ansicolors": "*", + "ansistyles": "*", + "archy": "*", + "cacache": "*", + "chalk": "*", + "chownr": "*", + "cli-columns": "*", + "cli-table3": "*", + "columnify": "*", + "fastest-levenshtein": "*", + "glob": "*", + "graceful-fs": "*", + "hosted-git-info": "*", + "ini": "*", + "init-package-json": "*", + "is-cidr": "*", + "json-parse-even-better-errors": "*", + "libnpmaccess": "*", + "libnpmdiff": "*", + "libnpmexec": "*", + "libnpmfund": "*", + "libnpmhook": "*", + "libnpmorg": "*", + "libnpmpack": "*", + "libnpmpublish": "*", + "libnpmsearch": "*", + "libnpmteam": "*", + "libnpmversion": "*", + "make-fetch-happen": "*", + "minipass": "*", + "minipass-pipeline": "*", + "mkdirp": "*", + "mkdirp-infer-owner": "*", + "ms": "*", + "node-gyp": "*", + "nopt": "*", + "npm-audit-report": "*", + "npm-install-checks": "*", + "npm-package-arg": "*", + "npm-pick-manifest": "*", + "npm-profile": "*", + "npm-registry-fetch": "*", + "npm-user-validate": "*", + "npmlog": "*", + "opener": "*", + "pacote": "*", + "parse-conflict-json": "*", + "qrcode-terminal": "*", + "read": "*", + "read-package-json": "*", + "read-package-json-fast": "*", + "readdir-scoped-modules": "*", + "rimraf": "*", + "semver": "*", + "ssri": "*", + "tar": "*", + "text-table": "*", + "tiny-relative-date": "*", + "treeverse": "*", + "validate-npm-package-name": "*", + "which": "*", + "write-file-atomic": "*" + }, + "bin": { + "npm": "bin/npm-cli.js", + "npx": "bin/npx-cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-api": { + "version": "1.0.1", + "integrity": "sha512-4sITrrzEbPcr0aNV28QyOmgn6C9yKiF8k92jn4buYAK8wmA5xo1qL3II5/gT1r7wxbXBflSduZ2K3FbtOrtGkA==", + "devOptional": true, + "dependencies": { + "clone-deep": "^4.0.1", + "download-stats": "^0.3.4", + "JSONStream": "^1.3.5", + "moment": "^2.24.0", + "node-fetch": "^2.6.0", + "paged-request": "^2.0.1" + }, + "engines": { + "node": ">=10.0" + } + }, + "node_modules/npm-bundled": { + "version": "1.1.2", + "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", + "dependencies": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "node_modules/npm-lifecycle": { + "version": "3.1.5", + "integrity": "sha512-lDLVkjfZmvmfvpvBzA4vzee9cn+Me4orq0QF8glbswJVEbIcSNWib7qGOffolysc3teCqbbPZZkzbr3GQZTL1g==", + "dependencies": { + "byline": "^5.0.0", + "graceful-fs": "^4.1.15", + "node-gyp": "^5.0.2", + "resolve-from": "^4.0.0", + "slide": "^1.1.6", + "uid-number": "0.0.6", + "umask": "^1.1.0", + "which": "^1.3.1" + } + }, + "node_modules/npm-lifecycle/node_modules/resolve-from": { + "version": "4.0.0", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-lifecycle/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/npm-normalize-package-bin": { + "version": "1.0.1", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" + }, + "node_modules/npm-package-arg": { + "version": "6.1.1", + "integrity": "sha512-qBpssaL3IOZWi5vEKUKW0cO7kzLeT+EQO9W8RsLOZf76KF9E/K9+wH0C7t06HXPpaH8WH5xF1MExLuCwbTqRUg==", + "dependencies": { + "hosted-git-info": "^2.7.1", + "osenv": "^0.1.5", + "semver": "^5.6.0", + "validate-npm-package-name": "^3.0.0" + } + }, + "node_modules/npm-package-arg/node_modules/hosted-git-info": { + "version": "2.8.9", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/npm-package-arg/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/npm-packlist": { + "version": "1.4.8", + "integrity": "sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A==", + "dependencies": { + "ignore-walk": "^3.0.1", + "npm-bundled": "^1.0.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "node_modules/npm-pick-manifest": { + "version": "3.0.2", + "integrity": "sha512-wNprTNg+X5nf+tDi+hbjdHhM4bX+mKqv6XmPh7B5eG+QY9VARfQPfCEH013H5GqfNj6ee8Ij2fg8yk0mzps1Vw==", + "dependencies": { + "figgy-pudding": "^3.5.1", + "npm-package-arg": "^6.0.0", + "semver": "^5.4.1" + } + }, + "node_modules/npm-pick-manifest/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/@gar/promisify": { + "version": "1.1.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/@isaacs/string-locale-compare": { + "version": "1.1.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/@npmcli/arborist": { + "version": "2.9.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@isaacs/string-locale-compare": "^1.0.1", + "@npmcli/installed-package-contents": "^1.0.7", + "@npmcli/map-workspaces": "^1.0.2", + "@npmcli/metavuln-calculator": "^1.1.0", + "@npmcli/move-file": "^1.1.0", + "@npmcli/name-from-folder": "^1.0.1", + "@npmcli/node-gyp": "^1.0.1", + "@npmcli/package-json": "^1.0.1", + "@npmcli/run-script": "^1.8.2", + "bin-links": "^2.2.1", + "cacache": "^15.0.3", + "common-ancestor-path": "^1.0.1", + "json-parse-even-better-errors": "^2.3.1", + "json-stringify-nice": "^1.1.4", + "mkdirp": "^1.0.4", + "mkdirp-infer-owner": "^2.0.0", + "npm-install-checks": "^4.0.0", + "npm-package-arg": "^8.1.5", + "npm-pick-manifest": "^6.1.0", + "npm-registry-fetch": "^11.0.0", + "pacote": "^11.3.5", + "parse-conflict-json": "^1.1.1", + "proc-log": "^1.0.0", + "promise-all-reject-late": "^1.0.0", + "promise-call-limit": "^1.0.1", + "read-package-json-fast": "^2.0.2", + "readdir-scoped-modules": "^1.1.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "ssri": "^8.0.1", + "treeverse": "^1.0.4", + "walk-up-path": "^1.0.0" + }, + "bin": { + "arborist": "bin/index.js" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm/node_modules/@npmcli/ci-detect": { + "version": "1.3.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/@npmcli/config": { + "version": "2.3.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "ini": "^2.0.0", + "mkdirp-infer-owner": "^2.0.0", + "nopt": "^5.0.0", + "semver": "^7.3.4", + "walk-up-path": "^1.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/@npmcli/disparity-colors": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "ansi-styles": "^4.3.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/@npmcli/fs": { + "version": "1.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "node_modules/npm/node_modules/@npmcli/git": { + "version": "2.1.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/promise-spawn": "^1.3.2", + "lru-cache": "^6.0.0", + "mkdirp": "^1.0.4", + "npm-pick-manifest": "^6.1.1", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^2.0.2" + } + }, + "node_modules/npm/node_modules/@npmcli/installed-package-contents": { + "version": "1.0.7", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + }, + "bin": { + "installed-package-contents": "index.js" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm/node_modules/@npmcli/map-workspaces": { + "version": "1.0.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/name-from-folder": "^1.0.1", + "glob": "^7.1.6", + "minimatch": "^3.0.4", + "read-package-json-fast": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/@npmcli/metavuln-calculator": { + "version": "1.1.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "cacache": "^15.0.5", + "pacote": "^11.1.11", + "semver": "^7.3.2" + } + }, + "node_modules/npm/node_modules/@npmcli/move-file": { + "version": "1.1.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/@npmcli/name-from-folder": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/@npmcli/node-gyp": { + "version": "1.0.2", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/@npmcli/package-json": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "json-parse-even-better-errors": "^2.3.1" + } + }, + "node_modules/npm/node_modules/@npmcli/promise-spawn": { + "version": "1.3.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "infer-owner": "^1.0.4" + } + }, + "node_modules/npm/node_modules/@npmcli/run-script": { + "version": "1.8.6", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/node-gyp": "^1.0.2", + "@npmcli/promise-spawn": "^1.3.2", + "node-gyp": "^7.1.0", + "read-package-json-fast": "^2.0.1" + } + }, + "node_modules/npm/node_modules/@tootallnate/once": { + "version": "1.1.2", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/npm/node_modules/abbrev": { + "version": "1.1.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/agent-base": { + "version": "6.0.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/npm/node_modules/agentkeepalive": { + "version": "4.1.4", + "inBundle": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "depd": "^1.1.2", + "humanize-ms": "^1.2.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/npm/node_modules/aggregate-error": { + "version": "3.1.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/ajv": { + "version": "6.12.6", + "inBundle": true, + "license": "MIT", + "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" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/npm/node_modules/ansi-regex": { + "version": "2.1.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/ansi-styles": { + "version": "4.3.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/npm/node_modules/ansicolors": { + "version": "0.3.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/ansistyles": { + "version": "0.1.3", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/aproba": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/archy": { + "version": "1.0.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/are-we-there-yet": { + "version": "1.1.6", + "inBundle": true, + "license": "ISC", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/asap": { + "version": "2.0.6", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/asn1": { + "version": "0.2.4", + "inBundle": true, + "license": "MIT", + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/npm/node_modules/assert-plus": { + "version": "1.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/npm/node_modules/asynckit": { + "version": "0.4.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/aws-sign2": { + "version": "0.7.0", + "inBundle": true, + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/npm/node_modules/aws4": { + "version": "1.11.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/balanced-match": { + "version": "1.0.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "inBundle": true, + "license": "BSD-3-Clause", + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/npm/node_modules/bin-links": { + "version": "2.2.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "cmd-shim": "^4.0.1", + "mkdirp": "^1.0.3", + "npm-normalize-package-bin": "^1.0.0", + "read-cmd-shim": "^2.0.0", + "rimraf": "^3.0.0", + "write-file-atomic": "^3.0.3" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/binary-extensions": { + "version": "2.2.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/brace-expansion": { + "version": "1.1.11", + "inBundle": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/npm/node_modules/builtins": { + "version": "1.0.3", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/cacache": { + "version": "15.3.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm/node_modules/caseless": { + "version": "0.12.0", + "inBundle": true, + "license": "Apache-2.0" + }, + "node_modules/npm/node_modules/chalk": { + "version": "4.1.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/npm/node_modules/chownr": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/cidr-regex": { + "version": "3.1.1", + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "ip-regex": "^4.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/clean-stack": { + "version": "2.2.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/cli-columns": { + "version": "3.1.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "string-width": "^2.0.0", + "strip-ansi": "^3.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/npm/node_modules/cli-table3": { + "version": "0.6.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "colors": "^1.1.2" + } + }, + "node_modules/npm/node_modules/cli-table3/node_modules/ansi-regex": { + "version": "5.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/cli-table3/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/cli-table3/node_modules/string-width": { + "version": "4.2.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/cli-table3/node_modules/strip-ansi": { + "version": "6.0.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/clone": { + "version": "1.0.4", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/npm/node_modules/cmd-shim": { + "version": "4.1.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "mkdirp-infer-owner": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/code-point-at": { + "version": "1.1.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/color-convert": { + "version": "2.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/npm/node_modules/color-name": { + "version": "1.1.4", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/color-support": { + "version": "1.1.3", + "inBundle": true, + "license": "ISC", + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/npm/node_modules/colors": { + "version": "1.4.0", + "inBundle": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/npm/node_modules/columnify": { + "version": "1.5.4", + "inBundle": true, + "license": "MIT", + "dependencies": { + "strip-ansi": "^3.0.0", + "wcwidth": "^1.0.0" + } + }, + "node_modules/npm/node_modules/combined-stream": { + "version": "1.0.8", + "inBundle": true, + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/npm/node_modules/common-ancestor-path": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/concat-map": { + "version": "0.0.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/console-control-strings": { + "version": "1.1.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/core-util-is": { + "version": "1.0.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/dashdash": { + "version": "1.14.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/npm/node_modules/debug": { + "version": "4.3.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/npm/node_modules/debug/node_modules/ms": { + "version": "2.1.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/debuglog": { + "version": "1.0.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/npm/node_modules/defaults": { + "version": "1.0.3", + "inBundle": true, + "license": "MIT", + "dependencies": { + "clone": "^1.0.2" + } + }, + "node_modules/npm/node_modules/delayed-stream": { + "version": "1.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/npm/node_modules/delegates": { + "version": "1.0.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/depd": { + "version": "1.1.2", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/npm/node_modules/dezalgo": { + "version": "1.0.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "node_modules/npm/node_modules/diff": { + "version": "5.0.0", + "inBundle": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/npm/node_modules/ecc-jsbn": { + "version": "0.1.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/npm/node_modules/emoji-regex": { + "version": "8.0.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/encoding": { + "version": "0.1.13", + "inBundle": true, + "license": "MIT", + "optional": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/npm/node_modules/env-paths": { + "version": "2.2.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/err-code": { + "version": "2.0.3", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/extend": { + "version": "3.0.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/extsprintf": { + "version": "1.3.0", + "engines": [ + "node >=0.6.0" + ], + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/fast-deep-equal": { + "version": "3.1.3", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/fastest-levenshtein": { + "version": "1.0.12", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/forever-agent": { + "version": "0.6.1", + "inBundle": true, + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/npm/node_modules/fs-minipass": { + "version": "2.1.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/fs.realpath": { + "version": "1.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/function-bind": { + "version": "1.1.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/gauge": { + "version": "3.0.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1 || ^2.0.0", + "strip-ansi": "^3.0.1 || ^4.0.0", + "wide-align": "^1.1.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/getpass": { + "version": "0.1.7", + "inBundle": true, + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/npm/node_modules/glob": { + "version": "7.2.0", + "inBundle": true, + "license": "ISC", + "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" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/graceful-fs": { + "version": "4.2.8", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/har-schema": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=4" + } + }, + "node_modules/npm/node_modules/har-validator": { + "version": "5.1.5", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/has": { + "version": "1.0.3", + "inBundle": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/npm/node_modules/has-flag": { + "version": "4.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/has-unicode": { + "version": "2.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/hosted-git-info": { + "version": "4.0.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/http-cache-semantics": { + "version": "4.1.0", + "inBundle": true, + "license": "BSD-2-Clause" + }, + "node_modules/npm/node_modules/http-proxy-agent": { + "version": "4.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/npm/node_modules/http-signature": { + "version": "1.2.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/npm/node_modules/https-proxy-agent": { + "version": "5.0.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/npm/node_modules/humanize-ms": { + "version": "1.2.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ms": "^2.0.0" + } + }, + "node_modules/npm/node_modules/iconv-lite": { + "version": "0.6.3", + "inBundle": true, + "license": "MIT", + "optional": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/ignore-walk": { + "version": "3.0.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minimatch": "^3.0.4" + } + }, + "node_modules/npm/node_modules/imurmurhash": { + "version": "0.1.4", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/npm/node_modules/indent-string": { + "version": "4.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/infer-owner": { + "version": "1.0.4", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/inflight": { + "version": "1.0.6", + "inBundle": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/npm/node_modules/inherits": { + "version": "2.0.4", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/ini": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/init-package-json": { + "version": "2.0.5", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-package-arg": "^8.1.5", + "promzard": "^0.3.0", + "read": "~1.0.1", + "read-package-json": "^4.1.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4", + "validate-npm-package-name": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/ip": { + "version": "1.1.5", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/ip-regex": { + "version": "4.3.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/is-cidr": { + "version": "4.0.2", + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "cidr-regex": "^3.1.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/is-core-module": { + "version": "2.7.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/npm/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/npm/node_modules/is-lambda": { + "version": "1.0.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/is-typedarray": { + "version": "1.0.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/isexe": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/isstream": { + "version": "0.1.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/jsbn": { + "version": "0.1.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/json-schema": { + "version": "0.2.3", + "inBundle": true + }, + "node_modules/npm/node_modules/json-schema-traverse": { + "version": "0.4.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/json-stringify-nice": { + "version": "1.1.4", + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/json-stringify-safe": { + "version": "5.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/jsonparse": { + "version": "1.3.1", + "engines": [ + "node >= 0.2.0" + ], + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/jsprim": { + "version": "1.4.1", + "engines": [ + "node >=0.6.0" + ], + "inBundle": true, + "license": "MIT", + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "node_modules/npm/node_modules/just-diff": { + "version": "3.1.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/just-diff-apply": { + "version": "3.0.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/libnpmaccess": { + "version": "4.0.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^2.0.0", + "minipass": "^3.1.1", + "npm-package-arg": "^8.1.2", + "npm-registry-fetch": "^11.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmdiff": { + "version": "2.0.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/disparity-colors": "^1.0.1", + "@npmcli/installed-package-contents": "^1.0.7", + "binary-extensions": "^2.2.0", + "diff": "^5.0.0", + "minimatch": "^3.0.4", + "npm-package-arg": "^8.1.4", + "pacote": "^11.3.4", + "tar": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmexec": { + "version": "2.0.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/arborist": "^2.3.0", + "@npmcli/ci-detect": "^1.3.0", + "@npmcli/run-script": "^1.8.4", + "chalk": "^4.1.0", + "mkdirp-infer-owner": "^2.0.0", + "npm-package-arg": "^8.1.2", + "pacote": "^11.3.1", + "proc-log": "^1.0.0", + "read": "^1.0.7", + "read-package-json-fast": "^2.0.2", + "walk-up-path": "^1.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmfund": { + "version": "1.1.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/arborist": "^2.5.0" + } + }, + "node_modules/npm/node_modules/libnpmhook": { + "version": "6.0.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^11.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmorg": { + "version": "2.0.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^11.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmpack": { + "version": "2.0.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/run-script": "^1.8.3", + "npm-package-arg": "^8.1.0", + "pacote": "^11.2.6" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmpublish": { + "version": "4.0.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "normalize-package-data": "^3.0.2", + "npm-package-arg": "^8.1.2", + "npm-registry-fetch": "^11.0.0", + "semver": "^7.1.3", + "ssri": "^8.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmsearch": { + "version": "3.1.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-registry-fetch": "^11.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmteam": { + "version": "2.0.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^11.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmversion": { + "version": "1.2.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/git": "^2.0.7", + "@npmcli/run-script": "^1.8.4", + "json-parse-even-better-errors": "^2.3.1", + "semver": "^7.3.5", + "stringify-package": "^1.0.1" + } + }, + "node_modules/npm/node_modules/lru-cache": { + "version": "6.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/make-fetch-happen": { + "version": "9.1.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "agentkeepalive": "^4.1.3", + "cacache": "^15.2.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^6.0.0", + "minipass": "^3.1.3", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^1.3.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.2", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^6.0.0", + "ssri": "^8.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm/node_modules/mime-db": { + "version": "1.49.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/npm/node_modules/mime-types": { + "version": "2.1.32", + "inBundle": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.49.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/npm/node_modules/minimatch": { + "version": "3.0.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/npm/node_modules/minipass": { + "version": "3.1.5", + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minipass-collect": { + "version": "1.0.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/minipass-fetch": { + "version": "1.4.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "minipass": "^3.1.0", + "minipass-sized": "^1.0.3", + "minizlib": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "optionalDependencies": { + "encoding": "^0.1.12" + } + }, + "node_modules/npm/node_modules/minipass-flush": { + "version": "1.0.5", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/minipass-json-stream": { + "version": "1.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" + } + }, + "node_modules/npm/node_modules/minipass-pipeline": { + "version": "1.2.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minipass-sized": { + "version": "1.0.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minizlib": { + "version": "2.1.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/mkdirp": { + "version": "1.0.4", + "inBundle": true, + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/mkdirp-infer-owner": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "infer-owner": "^1.0.4", + "mkdirp": "^1.0.3" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/ms": { + "version": "2.1.3", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/mute-stream": { + "version": "0.0.8", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/negotiator": { + "version": "0.6.2", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/npm/node_modules/node-gyp": { + "version": "7.1.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.3", + "nopt": "^5.0.0", + "npmlog": "^4.1.2", + "request": "^2.88.2", + "rimraf": "^3.0.2", + "semver": "^7.3.2", + "tar": "^6.0.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": ">= 10.12.0" + } + }, + "node_modules/npm/node_modules/node-gyp/node_modules/aproba": { + "version": "1.2.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/node-gyp/node_modules/gauge": { + "version": "2.7.4", + "inBundle": true, + "license": "ISC", + "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" + } + }, + "node_modules/npm/node_modules/node-gyp/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/node-gyp/node_modules/npmlog": { + "version": "4.1.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "node_modules/npm/node_modules/node-gyp/node_modules/string-width": { + "version": "1.0.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/nopt": { + "version": "5.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/normalize-package-data": { + "version": "3.0.3", + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/npm-audit-report": { + "version": "2.1.5", + "inBundle": true, + "license": "ISC", + "dependencies": { + "chalk": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/npm-bundled": { + "version": "1.1.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "node_modules/npm/node_modules/npm-install-checks": { + "version": "4.0.0", + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "semver": "^7.1.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/npm-normalize-package-bin": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/npm-package-arg": { + "version": "8.1.5", + "inBundle": true, + "license": "ISC", + "dependencies": { + "hosted-git-info": "^4.0.1", + "semver": "^7.3.4", + "validate-npm-package-name": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/npm-packlist": { + "version": "2.2.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.6", + "ignore-walk": "^3.0.3", + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + }, + "bin": { + "npm-packlist": "bin/index.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/npm-pick-manifest": { + "version": "6.1.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-install-checks": "^4.0.0", + "npm-normalize-package-bin": "^1.0.1", + "npm-package-arg": "^8.1.2", + "semver": "^7.3.4" + } + }, + "node_modules/npm/node_modules/npm-profile": { + "version": "5.0.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-registry-fetch": "^11.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/npm-registry-fetch": { + "version": "11.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "make-fetch-happen": "^9.0.1", + "minipass": "^3.1.3", + "minipass-fetch": "^1.3.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.0.0", + "npm-package-arg": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/npm-user-validate": { + "version": "1.0.1", + "inBundle": true, + "license": "BSD-2-Clause" + }, + "node_modules/npm/node_modules/npmlog": { + "version": "5.0.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } + }, + "node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/number-is-nan": { + "version": "1.0.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/oauth-sign": { + "version": "0.9.0", + "inBundle": true, + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/npm/node_modules/object-assign": { + "version": "4.1.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/once": { + "version": "1.4.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/npm/node_modules/opener": { + "version": "1.5.2", + "inBundle": true, + "license": "(WTFPL OR MIT)", + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/npm/node_modules/p-map": { + "version": "4.0.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm/node_modules/pacote": { + "version": "11.3.5", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/git": "^2.1.0", + "@npmcli/installed-package-contents": "^1.0.6", + "@npmcli/promise-spawn": "^1.2.0", + "@npmcli/run-script": "^1.8.2", + "cacache": "^15.0.5", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "infer-owner": "^1.0.4", + "minipass": "^3.1.3", + "mkdirp": "^1.0.3", + "npm-package-arg": "^8.0.1", + "npm-packlist": "^2.1.4", + "npm-pick-manifest": "^6.0.0", + "npm-registry-fetch": "^11.0.0", + "promise-retry": "^2.0.1", + "read-package-json-fast": "^2.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.1.0" + }, + "bin": { + "pacote": "lib/bin.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/parse-conflict-json": { + "version": "1.1.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "json-parse-even-better-errors": "^2.3.0", + "just-diff": "^3.0.1", + "just-diff-apply": "^3.0.0" + } + }, + "node_modules/npm/node_modules/path-is-absolute": { + "version": "1.0.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/performance-now": { + "version": "2.1.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/proc-log": { + "version": "1.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/promise-all-reject-late": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/promise-call-limit": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/promise-inflight": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/promise-retry": { + "version": "2.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/promzard": { + "version": "0.3.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "read": "1" + } + }, + "node_modules/npm/node_modules/psl": { + "version": "1.8.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/punycode": { + "version": "2.1.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/qrcode-terminal": { + "version": "0.12.0", + "inBundle": true, + "bin": { + "qrcode-terminal": "bin/qrcode-terminal.js" + } + }, + "node_modules/npm/node_modules/qs": { + "version": "6.5.2", + "inBundle": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/npm/node_modules/read": { + "version": "1.0.7", + "inBundle": true, + "license": "ISC", + "dependencies": { + "mute-stream": "~0.0.4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/npm/node_modules/read-cmd-shim": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/read-package-json": { + "version": "4.1.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.1", + "json-parse-even-better-errors": "^2.3.0", + "normalize-package-data": "^3.0.0", + "npm-normalize-package-bin": "^1.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/read-package-json-fast": { + "version": "2.0.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "json-parse-even-better-errors": "^2.3.0", + "npm-normalize-package-bin": "^1.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/readable-stream": { + "version": "3.6.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/npm/node_modules/readdir-scoped-modules": { + "version": "1.1.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "graceful-fs": "^4.1.2", + "once": "^1.3.0" + } + }, + "node_modules/npm/node_modules/request": { + "version": "2.88.2", + "inBundle": true, + "license": "Apache-2.0", + "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" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/npm/node_modules/request/node_modules/form-data": { + "version": "2.3.3", + "inBundle": true, + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/npm/node_modules/request/node_modules/tough-cookie": { + "version": "2.5.0", + "inBundle": true, + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/npm/node_modules/retry": { + "version": "0.12.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/npm/node_modules/rimraf": { + "version": "3.0.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/safe-buffer": { + "version": "5.2.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/safer-buffer": { + "version": "2.1.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/semver": { + "version": "7.3.5", + "inBundle": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/set-blocking": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/signal-exit": { + "version": "3.0.3", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/smart-buffer": { + "version": "4.2.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/npm/node_modules/socks": { + "version": "2.6.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ip": "^1.1.5", + "smart-buffer": "^4.1.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/npm/node_modules/socks-proxy-agent": { + "version": "6.1.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.1", + "socks": "^2.6.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm/node_modules/spdx-correct": { + "version": "3.1.1", + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/npm/node_modules/spdx-exceptions": { + "version": "2.3.0", + "inBundle": true, + "license": "CC-BY-3.0" + }, + "node_modules/npm/node_modules/spdx-expression-parse": { + "version": "3.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/npm/node_modules/spdx-license-ids": { + "version": "3.0.10", + "inBundle": true, + "license": "CC0-1.0" + }, + "node_modules/npm/node_modules/sshpk": { + "version": "1.16.1", + "inBundle": true, + "license": "MIT", + "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" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/ssri": { + "version": "8.0.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/string_decoder": { + "version": "1.3.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/npm/node_modules/string-width": { + "version": "2.1.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm/node_modules/string-width/node_modules/ansi-regex": { + "version": "3.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/npm/node_modules/string-width/node_modules/strip-ansi": { + "version": "4.0.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm/node_modules/stringify-package": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/strip-ansi": { + "version": "3.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/supports-color": { + "version": "7.2.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/tar": { + "version": "6.1.11", + "inBundle": true, + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm/node_modules/text-table": { + "version": "0.2.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/tiny-relative-date": { + "version": "1.3.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/treeverse": { + "version": "1.0.4", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/tunnel-agent": { + "version": "0.6.0", + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/npm/node_modules/tweetnacl": { + "version": "0.14.5", + "inBundle": true, + "license": "Unlicense" + }, + "node_modules/npm/node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "inBundle": true, + "license": "MIT", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/npm/node_modules/unique-filename": { + "version": "1.1.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/npm/node_modules/unique-slug": { + "version": "2.0.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/npm/node_modules/uri-js": { + "version": "4.4.1", + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/npm/node_modules/util-deprecate": { + "version": "1.0.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/uuid": { + "version": "3.4.0", + "inBundle": true, + "license": "MIT", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/npm/node_modules/validate-npm-package-license": { + "version": "3.0.4", + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/npm/node_modules/validate-npm-package-name": { + "version": "3.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "builtins": "^1.0.3" + } + }, + "node_modules/npm/node_modules/verror": { + "version": "1.10.0", + "engines": [ + "node >=0.6.0" + ], + "inBundle": true, + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/npm/node_modules/walk-up-path": { + "version": "1.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/wcwidth": { + "version": "1.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/npm/node_modules/which": { + "version": "2.0.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/wide-align": { + "version": "1.1.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "string-width": "^1.0.2 || 2" + } + }, + "node_modules/npm/node_modules/wrappy": { + "version": "1.0.2", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/write-file-atomic": { + "version": "3.0.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/npm/node_modules/yallist": { + "version": "4.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npmlog": { + "version": "4.1.2", + "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" + } + }, + "node_modules/nth-check": { + "version": "2.0.1", + "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/num2fraction": { + "version": "1.2.2", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nvd3": { + "version": "1.8.6", + "integrity": "sha1-LT66dL8zNjtRAevx0JPFmlOuc8Q=", + "peerDependencies": { + "d3": "^3.4.4" + } + }, + "node_modules/nvd3-fork": { + "version": "2.0.5", + "integrity": "sha512-Sq3q2rvR/9FJ35LVmqdQJAnfmD15BaIHSBg5wZZL/WLcq/nthff8ukabwFdbW0zeE1c/yPq+DKl6MxnUTR45DA==", + "peerDependencies": { + "d3": "^3.4.4" + } + }, + "node_modules/nwsapi": { + "version": "2.2.0", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==" + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "engines": { + "node": "*" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-data-descriptor": { + "version": "0.1.4", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.6", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.11.0", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.2", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.5", + "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.5", + "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.3", + "integrity": "sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.hasown": { + "version": "1.1.0", + "integrity": "sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.values": { + "version": "1.1.5", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/objectorarray": { + "version": "1.0.5", + "integrity": "sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==" + }, + "node_modules/obuf": { + "version": "1.1.2", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "node_modules/octokit-pagination-methods": { + "version": "1.1.0", + "integrity": "sha512-fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ==" + }, + "node_modules/on-finished": { + "version": "2.3.0", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "7.4.2", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/opencollective-postinstall": { + "version": "2.0.3", + "integrity": "sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==", + "bin": { + "opencollective-postinstall": "index.js" + } + }, + "node_modules/opener": { + "version": "1.5.2", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/openurl": { + "version": "1.1.1", + "integrity": "sha1-OHW0sO96UsFW8NtB1GCduw+Us4c=", + "dev": true + }, + "node_modules/opn": { + "version": "5.5.0", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/opn/node_modules/is-wsl": { + "version": "1.1.0", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/optimal": { + "version": "4.3.0", + "integrity": "sha512-WzIbrg0hR3rZPspTIhYlTI2pFXo0+vsderjkJ4nuYj3FsHrdY6Q8EBaC5xhAb9vzwofZADLdSLqju+SlfxBD5w==", + "engines": { + "node": ">=10.10.0" + }, + "funding": { + "type": "ko-fi", + "url": "https://ko-fi.com/milesjohnson" + } + }, + "node_modules/optimist": { + "version": "0.3.7", + "integrity": "sha1-yQlBrVnkJzMokjB00s8ufLxuwNk=", + "dependencies": { + "wordwrap": "~0.0.2" + } + }, + "node_modules/optimist/node_modules/wordwrap": { + "version": "0.0.3", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/original": { + "version": "1.0.2", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "dependencies": { + "url-parse": "^1.4.3" + } + }, + "node_modules/os-browserify": { + "version": "0.3.0", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" + }, + "node_modules/os-homedir": { + "version": "1.0.2", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-locale": { + "version": "4.0.0", + "integrity": "sha512-HsSR1+2l6as4Wp2SGZxqLnuFHxVvh1Ir9pvZxyujsC13egZVe7P0YeBLN0ijQzM/twrO5To3ia3jzBXAvpMTEA==", + "dependencies": { + "execa": "^1.0.0", + "lcid": "^3.0.0", + "mem": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/os-locale/node_modules/cross-spawn": { + "version": "6.0.5", + "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" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/os-locale/node_modules/execa": { + "version": "1.0.0", + "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" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/os-locale/node_modules/get-stream": { + "version": "4.1.0", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/os-locale/node_modules/is-stream": { + "version": "1.1.0", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-locale/node_modules/npm-run-path": { + "version": "2.0.2", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/os-locale/node_modules/path-key": { + "version": "2.0.1", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "engines": { + "node": ">=4" + } + }, + "node_modules/os-locale/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/os-locale/node_modules/shebang-command": { + "version": "1.2.0", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-locale/node_modules/shebang-regex": { + "version": "1.0.0", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-locale/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/os-name": { + "version": "3.1.0", + "integrity": "sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==", + "dependencies": { + "macos-release": "^2.2.0", + "windows-release": "^3.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/osenv": { + "version": "0.1.5", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "dependencies": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "node_modules/overlayscrollbars": { + "version": "1.13.1", + "integrity": "sha512-gIQfzgGgu1wy80EB4/6DaJGHMEGmizq27xHIESrzXq0Y/J0Ay1P3DWk6tuVmEPIZH15zaBlxeEJOqdJKmowHCQ==" + }, + "node_modules/p-all": { + "version": "2.1.0", + "integrity": "sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==", + "dependencies": { + "p-map": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-defer": { + "version": "1.0.0", + "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-each-series": { + "version": "2.2.0", + "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-event": { + "version": "4.2.0", + "integrity": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==", + "dependencies": { + "p-timeout": "^3.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-filter": { + "version": "2.1.0", + "integrity": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==", + "dependencies": { + "p-map": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-is-promise": { + "version": "2.1.0", + "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "2.1.0", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/p-map-series": { + "version": "1.0.0", + "integrity": "sha1-v5j+V1cFZYqeE1G++4WuTB8Hvco=", + "dependencies": { + "p-reduce": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-pipe": { + "version": "1.2.0", + "integrity": "sha1-SxoROZoRUgpneQ7loMHViB1r7+k=", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-queue": { + "version": "4.0.0", + "integrity": "sha512-3cRXXn3/O0o3+eVmUroJPSj/esxoEFIm0ZOno/T+NzG/VZgPOqQ8WKmlNqubSEpZmCIngEy34unkHGg83ZIBmg==", + "dependencies": { + "eventemitter3": "^3.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-reduce": { + "version": "1.0.0", + "integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-retry": { + "version": "3.0.1", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dependencies": { + "retry": "^0.12.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-retry/node_modules/retry": { + "version": "0.12.0", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "engines": { + "node": ">= 4" + } + }, + "node_modules/p-timeout": { + "version": "3.2.0", + "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/p-waterfall": { + "version": "1.0.0", + "integrity": "sha1-ftlLPOszMngjU69qrhGqn8I1uwA=", + "dependencies": { + "p-reduce": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pad-component": { + "version": "0.0.1", + "integrity": "sha1-rR8izhvw/cDW3dkIrxfzUaQEuKw=" + }, + "node_modules/paged-request": { + "version": "2.0.2", + "integrity": "sha512-NWrGqneZImDdcMU/7vMcAOo1bIi5h/pmpJqe7/jdsy85BA/s5MSaU/KlpxwW/IVPmIwBcq2uKPrBWWhEWhtxag==", + "devOptional": true, + "dependencies": { + "axios": "^0.21.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pako": { + "version": "1.0.11", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "node_modules/parallel-transform": { + "version": "1.2.0", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "dependencies": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "node_modules/parallel-transform/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/parallel-transform/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/parallel-transform/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/param-case/node_modules/dot-case": { + "version": "3.0.4", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/param-case/node_modules/lower-case": { + "version": "2.0.2", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/param-case/node_modules/no-case": { + "version": "3.0.4", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-asn1": { + "version": "5.1.6", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dependencies": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/parse-entities": { + "version": "1.2.2", + "integrity": "sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + } + }, + "node_modules/parse-github-repo-url": { + "version": "1.4.1", + "integrity": "sha1-nn2LslKmy2ukJZUGC3v23z28H1A=" + }, + "node_modules/parse-json": { + "version": "4.0.0", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/parse-ms": { + "version": "2.1.0", + "integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse-path": { + "version": "4.0.3", + "integrity": "sha512-9Cepbp2asKnWTJ9x2kpw6Fe8y9JDbqwahGCTvklzd/cEq5C5JC59x2Xb0Kx+x0QZ8bvNquGO8/BWP0cwBHzSAA==", + "dependencies": { + "is-ssh": "^1.3.0", + "protocols": "^1.4.0", + "qs": "^6.9.4", + "query-string": "^6.13.8" + } + }, + "node_modules/parse-url": { + "version": "6.0.0", + "integrity": "sha512-cYyojeX7yIIwuJzledIHeLUBVJ6COVLeT4eF+2P6aKVzwvgKQPndCBv3+yQ7pcWjqToYwaligxzSYNNmGoMAvw==", + "dependencies": { + "is-ssh": "^1.3.0", + "normalize-url": "^6.1.0", + "parse-path": "^4.0.0", + "protocols": "^1.4.0" + } + }, + "node_modules/parse5": { + "version": "4.0.0", + "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" + }, + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "dependencies": { + "parse5": "^6.0.1" + } + }, + "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": { + "version": "6.0.1", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascal-case/node_modules/lower-case": { + "version": "2.0.2", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/pascal-case/node_modules/no-case": { + "version": "3.0.4", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-browserify": { + "version": "0.0.1", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + }, + "node_modules/path-case": { + "version": "2.1.1", + "integrity": "sha1-lLgDfDctP+KQbkZbtF4l0ibo7qU=", + "dependencies": { + "no-case": "^2.2.0" + } + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + }, + "node_modules/path-exists": { + "version": "4.0.0", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + }, + "node_modules/path-key": { + "version": "3.1.1", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-to-regexp": { + "version": "2.4.0", + "integrity": "sha512-G6zHoVqC6GGTQkZwF4lkuEyMbVOjoBKAEybQUypI1WTkqinCOrq2x6U2+phkJ1XsEMTy4LjtwPI7HW+NVrRR2w==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/pbf": { + "version": "3.2.1", + "integrity": "sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==", + "dependencies": { + "ieee754": "^1.1.12", + "resolve-protobuf-schema": "^2.1.0" + }, + "bin": { + "pbf": "bin/pbf" + } + }, + "node_modules/pbkdf2": { + "version": "3.1.2", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "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" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/performance-now": { + "version": "2.1.0", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "node_modules/picocolors": { + "version": "1.0.0", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.0", + "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.1", + "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "dependencies": { + "node-modules-regexp": "^1.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "2.0.0", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "dependencies": { + "find-up": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "2.1.0", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "2.0.0", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "1.3.0", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "2.0.0", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/p-try": { + "version": "1.0.0", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/please-upgrade-node": { + "version": "3.2.0", + "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", + "dependencies": { + "semver-compare": "^1.0.0" + } + }, + "node_modules/pluralize": { + "version": "8.0.0", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/pn": { + "version": "1.1.0", + "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==" + }, + "node_modules/pnp-webpack-plugin": { + "version": "1.6.4", + "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", + "dependencies": { + "ts-pnp": "^1.1.6" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/polished": { + "version": "4.1.3", + "integrity": "sha512-ocPAcVBUOryJEKe0z2KLd1l9EBa1r5mSwlKpExmrLzsnIzJo4axsoU9O2BjOTkDGDT4mZ0WFE5XKTlR3nLnZOA==", + "dependencies": { + "@babel/runtime": "^7.14.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/portfinder": { + "version": "1.0.28", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dependencies": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "7.0.39", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-flexbugs-fixes": { + "version": "4.2.1", + "integrity": "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==", + "dependencies": { + "postcss": "^7.0.26" + } + }, + "node_modules/postcss-loader": { + "version": "4.3.0", + "integrity": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.4", + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.4" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/postcss-loader/node_modules/cosmiconfig": { + "version": "7.0.1", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-loader/node_modules/loader-utils": { + "version": "2.0.0", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/postcss-loader/node_modules/parse-json": { + "version": "5.2.0", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/postcss-loader/node_modules/schema-utils": { + "version": "3.1.1", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "2.0.0", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "dependencies": { + "postcss": "^7.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "3.0.3", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "dependencies": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-scope": { + "version": "2.2.0", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "dependencies": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-values": { + "version": "3.0.0", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "dependencies": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.6", + "integrity": "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.1.0", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + }, + "node_modules/postcss/node_modules/picocolors": { + "version": "0.2.1", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/potpack": { + "version": "1.0.1", + "integrity": "sha512-15vItUAbViaYrmaB/Pbw7z6qX2xENbFSTA7Ii4tgbPtasxm5v6ryKhKtL91tpWovDJzTiZqdwzhcFBCwiMVdVw==" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prepend-http": { + "version": "1.0.4", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/prettier": { + "version": "2.4.1", + "integrity": "sha512-9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA==", + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-error": { + "version": "2.1.2", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "node_modules/pretty-format": { + "version": "26.6.2", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/pretty-format/node_modules/react-is": { + "version": "17.0.2", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "node_modules/pretty-hrtime": { + "version": "1.0.3", + "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pretty-ms": { + "version": "5.1.0", + "integrity": "sha512-4gaK1skD2gwscCfkswYQRmddUb2GJZtzDGRjHWadVHtK/DIKFufa12MvES6/xu1tVbUYeia5bmLcwJtZJQUqnw==", + "dependencies": { + "parse-ms": "^2.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/prismjs": { + "version": "1.25.0", + "integrity": "sha512-WCjJHl1KEWbnkQom1+SzftbtXMKQoezOCYs5rECqMN+jP+apI7ftoflyqigqzopSO3hMhTEb0mFClA8lkolgEg==" + }, + "node_modules/process": { + "version": "0.11.10", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/progress": { + "version": "2.0.3", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/progress-stream": { + "version": "2.0.0", + "integrity": "sha1-+sY6Cz0R3qy7CWmrzJOyFLzhntU=", + "dev": true, + "dependencies": { + "speedometer": "~1.0.0", + "through2": "~2.0.3" + } + }, + "node_modules/progress-stream/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "node_modules/progress-stream/node_modules/readable-stream": { + "version": "2.3.7", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "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" + } + }, + "node_modules/progress-stream/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/progress-stream/node_modules/through2": { + "version": "2.0.5", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/promise": { + "version": "7.3.1", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "dependencies": { + "asap": "~2.0.3" + } + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + }, + "node_modules/promise-retry": { + "version": "1.1.1", + "integrity": "sha1-ZznpaOMFHaIM5kl/srUPaRHfPW0=", + "dependencies": { + "err-code": "^1.0.0", + "retry": "^0.10.0" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/promise-retry/node_modules/retry": { + "version": "0.10.1", + "integrity": "sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q=", + "engines": { + "node": "*" + } + }, + "node_modules/promise.allsettled": { + "version": "1.0.5", + "integrity": "sha512-tVDqeZPoBC0SlzJHzWGZ2NKAguVq2oiYj7gbggbiTvH2itHohijTp7njOUA0aQ/nl+0lr/r6egmhoYu63UZ/pQ==", + "dependencies": { + "array.prototype.map": "^1.0.4", + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "iterate-value": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/promise.prototype.finally": { + "version": "3.1.3", + "integrity": "sha512-EXRF3fC9/0gz4qkt/f5EP5iW4kj9oFpBICNpCNOb/52+8nlHIX07FPLbi/q4qYBQ1xZqivMzTpNQSnArVASolQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/promzard": { + "version": "0.3.0", + "integrity": "sha1-JqXW7ox97kyxIggwWs+5O6OCqe4=", + "dependencies": { + "read": "1" + } + }, + "node_modules/prop-types": { + "version": "15.7.2", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" + } + }, + "node_modules/prop-types-exact": { + "version": "1.2.0", + "integrity": "sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==", + "dependencies": { + "has": "^1.0.3", + "object.assign": "^4.1.0", + "reflect.ownkeys": "^0.2.0" + } + }, + "node_modules/property-information": { + "version": "5.6.0", + "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==", + "dependencies": { + "xtend": "^4.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/proto-list": { + "version": "1.2.4", + "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=" + }, + "node_modules/protocol-buffers-schema": { + "version": "3.6.0", + "integrity": "sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==" + }, + "node_modules/protocols": { + "version": "1.4.8", + "integrity": "sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==" + }, + "node_modules/protoduck": { + "version": "5.0.1", + "integrity": "sha512-WxoCeDCoCBY55BMvj4cAEjdVUFGRWed9ZxPlqTKYyw1nDDTQ4pqmnIMAGfJlg7Dx35uB/M+PHJPTmGOvaCaPTg==", + "dependencies": { + "genfun": "^5.0.0" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" + }, + "node_modules/psl": { + "version": "1.8.0", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + }, + "node_modules/public-encrypt": { + "version": "4.0.3", + "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" + } + }, + "node_modules/public-encrypt/node_modules/bn.js": { + "version": "4.12.0", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/pump": { + "version": "3.0.0", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.10.1", + "integrity": "sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/query-string": { + "version": "6.14.1", + "integrity": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==", + "dependencies": { + "decode-uri-component": "^0.2.0", + "filter-obj": "^1.1.0", + "split-on-first": "^1.0.0", + "strict-uri-encode": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/querystring": { + "version": "0.2.1", + "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystring-es3": { + "version": "0.2.1", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/quick-lru": { + "version": "1.1.0", + "integrity": "sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g=", + "engines": { + "node": ">=4" + } + }, + "node_modules/quickselect": { + "version": "2.0.0", + "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==" + }, + "node_modules/quote-stream": { + "version": "1.0.2", + "integrity": "sha1-hJY/jJwmuULhU/7rU6rnRlK34LI=", + "dependencies": { + "buffer-equal": "0.0.1", + "minimist": "^1.1.3", + "through2": "^2.0.0" + }, + "bin": { + "quote-stream": "bin/cmd.js" + } + }, + "node_modules/quote-stream/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/quote-stream/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/quote-stream/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/quote-stream/node_modules/through2": { + "version": "2.0.5", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/raf": { + "version": "3.4.1", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "node_modules/railroad-diagrams": { + "version": "1.0.0", + "integrity": "sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=" + }, + "node_modules/ramda": { + "version": "0.27.1", + "integrity": "sha512-PgIdVpn5y5Yns8vqb8FzBUEYn98V3xcPgawAkkgj0YJ0qDsnHCiNmZYfOGMgOvoB0eWFLpYbhxUR3mxfDIMvpw==" + }, + "node_modules/randexp": { + "version": "0.4.6", + "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", + "dependencies": { + "discontinuous-range": "1.0.0", + "ret": "~0.1.10" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/randomfill": { + "version": "1.0.4", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dependencies": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.4.0", + "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" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-loader": { + "version": "4.0.2", + "integrity": "sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/raw-loader/node_modules/loader-utils": { + "version": "2.0.0", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/raw-loader/node_modules/schema-utils": { + "version": "3.1.1", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/react": { + "version": "16.14.0", + "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dev-utils": { + "version": "11.0.4", + "integrity": "sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==", + "dependencies": { + "@babel/code-frame": "7.10.4", + "address": "1.1.2", + "browserslist": "4.14.2", + "chalk": "2.4.2", + "cross-spawn": "7.0.3", + "detect-port-alt": "1.1.6", + "escape-string-regexp": "2.0.0", + "filesize": "6.1.0", + "find-up": "4.1.0", + "fork-ts-checker-webpack-plugin": "4.1.6", + "global-modules": "2.0.0", + "globby": "11.0.1", + "gzip-size": "5.1.1", + "immer": "8.0.1", + "is-root": "2.1.0", + "loader-utils": "2.0.0", + "open": "^7.0.2", + "pkg-up": "3.1.0", + "prompts": "2.4.0", + "react-error-overlay": "^6.0.9", + "recursive-readdir": "2.2.2", + "shell-quote": "1.7.2", + "strip-ansi": "6.0.0", + "text-table": "0.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-dev-utils/node_modules/@babel/code-frame": { + "version": "7.10.4", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/react-dev-utils/node_modules/braces": { + "version": "2.3.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dev-utils/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dev-utils/node_modules/browserslist": { + "version": "4.14.2", + "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==", + "dependencies": { + "caniuse-lite": "^1.0.30001125", + "electron-to-chromium": "^1.3.564", + "escalade": "^3.0.2", + "node-releases": "^1.1.61" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + }, + "node_modules/react-dev-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/fill-range": { + "version": "4.0.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dev-utils/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dev-utils/node_modules/fork-ts-checker-webpack-plugin": { + "version": "4.1.6", + "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==", + "dependencies": { + "@babel/code-frame": "^7.5.5", + "chalk": "^2.4.1", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + }, + "engines": { + "node": ">=6.11.5", + "yarn": ">=1.0.0" + } + }, + "node_modules/react-dev-utils/node_modules/globby": { + "version": "11.0.1", + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dev-utils/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dev-utils/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "2.0.0", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/react-dev-utils/node_modules/micromatch": { + "version": "3.1.10", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dev-utils/node_modules/node-releases": { + "version": "1.1.77", + "integrity": "sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==" + }, + "node_modules/react-dev-utils/node_modules/prompts": { + "version": "2.4.0", + "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-dev-utils/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/react-dev-utils/node_modules/slash": { + "version": "3.0.0", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/strip-ansi": { + "version": "6.0.0", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dependencies": { + "ansi-regex": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/tapable": { + "version": "1.1.3", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/react-dev-utils/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-docgen": { + "version": "5.4.0", + "integrity": "sha512-JBjVQ9cahmNlfjMGxWUxJg919xBBKAoy3hgDgKERbR+BcF4ANpDuzWAScC7j27hZfd8sJNmMPOLWo9+vB/XJEQ==", + "dependencies": { + "@babel/core": "^7.7.5", + "@babel/generator": "^7.12.11", + "@babel/runtime": "^7.7.6", + "ast-types": "^0.14.2", + "commander": "^2.19.0", + "doctrine": "^3.0.0", + "estree-to-babel": "^3.1.0", + "neo-async": "^2.6.1", + "node-dir": "^0.1.10", + "strip-indent": "^3.0.0" + }, + "bin": { + "react-docgen": "bin/react-docgen.js" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/react-docgen-typescript": { + "version": "2.1.1", + "integrity": "sha512-XWe8bsYqVjxciKdpNoufaHiB7FgUHIOnVQgxUolRL3Zlof2zkdTzuQH6SU2n3Ek9kfy3O1c63ojMtNfpiuNeZQ==", + "peerDependencies": { + "typescript": ">= 4.3.x" + } + }, + "node_modules/react-docgen/node_modules/commander": { + "version": "2.20.3", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/react-dom": { + "version": "16.14.0", + "integrity": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "scheduler": "^0.19.1" + }, + "peerDependencies": { + "react": "^16.14.0" + } + }, + "node_modules/react-error-boundary": { + "version": "1.2.5", + "integrity": "sha512-5CPSeLJA2igJNppAgFRwnTL9aK3ojenk65enNzhVyoxYNbHpIJXnChUO7+4vPhkncRA9wvQMXq6Azp2XeXd+iQ==", + "peerDependencies": { + "react": "^16.0.0-beta.1" + } + }, + "node_modules/react-error-overlay": { + "version": "6.0.9", + "integrity": "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==" + }, + "node_modules/react-fast-compare": { + "version": "3.2.0", + "integrity": "sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==" + }, + "node_modules/react-input-autosize": { + "version": "2.2.2", + "integrity": "sha512-jQJgYCA3S0j+cuOwzuCd1OjmBmnZLdqQdiLKRYrsMMzbjUrVDS5RvJUDwJqA7sKuksDuzFtm6hZGKFu7Mjk5aw==", + "dependencies": { + "prop-types": "^15.5.8" + }, + "peerDependencies": { + "react": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "node_modules/react-loadable": { + "version": "5.5.0", + "integrity": "sha512-C8Aui0ZpMd4KokxRdVAm2bQtI03k2RMRNzOB+IipV3yxFTSVICv7WoUr5L9ALB5BmKO1iHgZtWM8EvYG83otdg==", + "dependencies": { + "prop-types": "^15.5.0" + }, + "peerDependencies": { + "react": "*" + } + }, + "node_modules/react-map-gl": { + "version": "4.1.16", + "integrity": "sha512-EtiHCeqM69wKR9RDyLvtk6pTPS5+OFeAPIsYw6afnlGTauFAq3iD40SHuAOElgoJmm7J+cjPfHqu7m7tB4/FfA==", + "dependencies": { + "@babel/runtime": "^7.0.0", + "mapbox-gl": "~0.54.0", + "mjolnir.js": "^2.2.0", + "prop-types": "^15.7.2", + "react-virtualized-auto-sizer": "^1.0.2", + "viewport-mercator-project": "^6.2.1" + }, + "engines": { + "node": ">= 4", + "npm": ">= 3" + }, + "peerDependencies": { + "react": ">=16.3.0" + } + }, + "node_modules/react-map-gl/node_modules/esm": { + "version": "3.0.84", + "integrity": "sha512-SzSGoZc17S7P+12R9cg21Bdb7eybX25RnIeRZ80xZs+VZ3kdQKzqTp2k4hZJjR7p9l0186TTXSgrxzlMDBktlw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/react-map-gl/node_modules/kdbush": { + "version": "3.0.0", + "integrity": "sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew==" + }, + "node_modules/react-map-gl/node_modules/mapbox-gl": { + "version": "0.54.1", + "integrity": "sha512-HtY+HobYTHTsFOJ3buTHtNvZv/Tjfp0vararhEWCjI7wQq8XxK16sEpsXucokrAhuu94js4KJylo13bKJx6l0Q==", + "dependencies": { + "@mapbox/geojson-rewind": "^0.4.0", + "@mapbox/geojson-types": "^1.0.2", + "@mapbox/jsonlint-lines-primitives": "^2.0.2", + "@mapbox/mapbox-gl-supported": "^1.4.0", + "@mapbox/point-geometry": "^0.1.0", + "@mapbox/tiny-sdf": "^1.1.0", + "@mapbox/unitbezier": "^0.0.0", + "@mapbox/vector-tile": "^1.3.1", + "@mapbox/whoots-js": "^3.1.0", + "csscolorparser": "~1.0.2", + "earcut": "^2.1.5", + "esm": "~3.0.84", + "geojson-vt": "^3.2.1", + "gl-matrix": "^3.0.0", + "grid-index": "^1.1.0", + "minimist": "0.0.8", + "murmurhash-js": "^1.0.0", + "pbf": "^3.0.5", + "potpack": "^1.0.1", + "quickselect": "^2.0.0", + "rw": "^1.3.3", + "supercluster": "^6.0.1", + "tinyqueue": "^2.0.0", + "vt-pbf": "^3.1.1" + }, + "engines": { + "node": ">=6.4.0" + } + }, + "node_modules/react-map-gl/node_modules/minimist": { + "version": "0.0.8", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, + "node_modules/react-map-gl/node_modules/react-virtualized-auto-sizer": { + "version": "1.0.6", + "integrity": "sha512-7tQ0BmZqfVF6YYEWcIGuoR3OdYe8I/ZFbNclFlGOC3pMqunkYF/oL30NCjSGl9sMEb17AnzixDz98Kqc3N76HQ==", + "engines": { + "node": ">8.0.0" + }, + "peerDependencies": { + "react": "^15.3.0 || ^16.0.0-alpha || ^17.0.0", + "react-dom": "^15.3.0 || ^16.0.0-alpha || ^17.0.0" + } + }, + "node_modules/react-map-gl/node_modules/supercluster": { + "version": "6.0.2", + "integrity": "sha512-aa0v2HURjBTOpbcknilcfxGDuArM8khklKSmZ/T8ZXL0BuRwb5aRw95lz+2bmWpFvCXDX/+FzqHxmg0TIaJErw==", + "dependencies": { + "kdbush": "^3.0.0" + } + }, + "node_modules/react-markdown": { + "version": "4.3.1", + "integrity": "sha512-HQlWFTbDxTtNY6bjgp3C3uv1h2xcjCSi1zAEzfBW9OwJJvENSYiLXWNXN5hHLsoqai7RnZiiHzcnWdXk2Splzw==", + "dependencies": { + "html-to-react": "^1.3.4", + "mdast-add-list-metadata": "1.0.1", + "prop-types": "^15.7.2", + "react-is": "^16.8.6", + "remark-parse": "^5.0.0", + "unified": "^6.1.5", + "unist-util-visit": "^1.3.0", + "xtend": "^4.0.1" + }, + "peerDependencies": { + "react": "^15.0.0 || ^16.0.0" + } + }, + "node_modules/react-move": { + "version": "2.9.1", + "integrity": "sha512-5qKYsJrKKpSypEaaYyR2HBbBgX65htRqKDa8o5OGDkq2VfklmTCbLawtYFpdmcJRqbz4jCYpzo2Rrsazq9HA8Q==", + "dependencies": { + "@babel/runtime": "^7.2.0", + "d3-interpolate": "^1.3.2", + "d3-timer": "^1.0.9", + "prop-types": "^15.6.2", + "react-lifecycles-compat": "^3.0.4" + }, + "peerDependencies": { + "react": "^15.4.0 || ^16.0.0" + } + }, + "node_modules/react-refresh": { + "version": "0.8.3", + "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-resizable": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-resizable/-/react-resizable-3.0.4.tgz", + "integrity": "sha512-StnwmiESiamNzdRHbSSvA65b0ZQJ7eVQpPusrSmcpyGKzC0gojhtO62xxH6YOBmepk9dQTBi9yxidL3W4s3EBA==", + "dependencies": { + "prop-types": "15.x", + "react-draggable": "^4.0.3" + }, + "peerDependencies": { + "react": ">= 16.3" + } + }, + "node_modules/react-resizable/node_modules/react-draggable": { + "version": "4.4.4", + "integrity": "sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==", + "dependencies": { + "clsx": "^1.1.1", + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "react": ">= 16.3.0", + "react-dom": ">= 16.3.0" + } + }, + "node_modules/react-select": { + "version": "1.3.0", + "integrity": "sha512-g/QAU1HZrzSfxkwMAo/wzi6/ezdWye302RGZevsATec07hI/iSxcpB1hejFIp7V63DJ8mwuign6KmB3VjdlinQ==", + "dependencies": { + "classnames": "^2.2.4", + "prop-types": "^15.5.8", + "react-input-autosize": "^2.1.2" + }, + "peerDependencies": { + "react": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0", + "react-dom": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0" + } + }, + "node_modules/react-sizeme": { + "version": "3.0.2", + "integrity": "sha512-xOIAOqqSSmKlKFJLO3inBQBdymzDuXx4iuwkNcJmC96jeiOg5ojByvL+g3MW9LPEsojLbC6pf68zOfobK8IPlw==", + "dependencies": { + "element-resize-detector": "^1.2.2", + "invariant": "^2.2.4", + "shallowequal": "^1.1.0", + "throttle-debounce": "^3.0.1" + } + }, + "node_modules/react-sortablejs": { + "version": "6.0.0", + "integrity": "sha512-vzi+TWOnofcYg+dYnC/Iz/ZZkBGG76uM6KaLwuAqBk0349JQxIy3PZizbK0TJdLlK6NnLt4CiEyyQXSSnVYvEw==", + "dependencies": { + "classnames": "^2.2.6", + "tiny-invariant": "^1.1.0" + }, + "peerDependencies": { + "@types/sortablejs": "^1.10.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", + "sortablejs": "^1.10.0" + } + }, + "node_modules/react-split-pane": { + "version": "0.1.92", + "integrity": "sha512-GfXP1xSzLMcLJI5BM36Vh7GgZBpy+U/X0no+VM3fxayv+p1Jly5HpMofZJraeaMl73b3hvlr+N9zJKvLB/uz9w==", + "dependencies": { + "prop-types": "^15.7.2", + "react-lifecycles-compat": "^3.0.4", + "react-style-proptype": "^3.2.2" + }, + "peerDependencies": { + "react": "^16.0.0-0", + "react-dom": "^16.0.0-0" + } + }, + "node_modules/react-style-proptype": { + "version": "3.2.2", + "integrity": "sha512-ywYLSjNkxKHiZOqNlso9PZByNEY+FTyh3C+7uuziK0xFXu9xzdyfHwg4S9iyiRRoPCR4k2LqaBBsWVmSBwCWYQ==", + "dependencies": { + "prop-types": "^15.5.4" + } + }, + "node_modules/react-table": { + "version": "7.7.0", + "integrity": "sha512-jBlj70iBwOTvvImsU9t01LjFjy4sXEtclBovl3mTiqjz23Reu0DKnRza4zlLtOPACx6j2/7MrQIthIK1Wi+LIA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, + "peerDependencies": { + "react": "^16.8.3 || ^17.0.0-0" + } + }, + "node_modules/react-test-renderer": { + "version": "16.14.0", + "integrity": "sha512-L8yPjqPE5CZO6rKsKXRO/rVPiaCOy0tQQJbC+UjPNlobl5mad59lvPjwFsQHTvL03caVDIVr9x9/OSgDe6I5Eg==", + "dependencies": { + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "react-is": "^16.8.6", + "scheduler": "^0.19.1" + }, + "peerDependencies": { + "react": "^16.14.0" + } + }, + "node_modules/react-with-styles": { + "version": "1.4.0", + "integrity": "sha1-oFsxHoK0mx5pt4evgtCinG4rBzE=", + "dependencies": { + "deepmerge": "^1.3.2", + "global-cache": "^1.2.0", + "hoist-non-react-statics": "^1.2.0", + "prop-types": "^15.5.8" + }, + "peerDependencies": { + "react": ">=0.14" + } + }, + "node_modules/react-with-styles-interface-aphrodite": { + "version": "1.2.0", + "integrity": "sha1-IqCn05LY+RqJH3ItTJkvTID1oSk=", + "dependencies": { + "array-flatten": "^2.1.0", + "has": "^1.0.1" + }, + "peerDependencies": { + "aphrodite": ">=0.5.0" + } + }, + "node_modules/react-with-styles/node_modules/deepmerge": { + "version": "1.5.2", + "integrity": "sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-with-styles/node_modules/hoist-non-react-statics": { + "version": "1.2.0", + "integrity": "sha1-qkSM8JhtVcxAdzsXF0t90GbLfPs=" + }, + "node_modules/reactable": { + "version": "1.1.0", + "integrity": "sha512-SnvZ3CXyFFxGotw9cqNiVUGb2oW16UlIypGQZRJGgPiJuFqW22jO7A+Y/Tvv8no8F/bZoLdZ+QJP7eZfcc9kCw==", + "peerDependencies": { + "react": "* || ^0.14.0" + } + }, + "node_modules/reactable-arc": { + "version": "0.15.0", + "integrity": "sha512-XH1mryI/xvbYb3lCVOU3rx/KRacDE0PDa45KazL/PPTM0AgPZ/awVmCAxRi179BpjbStk7cgCyFjI2oYJ28E8A==", + "peerDependencies": { + "react": "* || ^0.14.0" + } + }, + "node_modules/read": { + "version": "1.0.7", + "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", + "dependencies": { + "mute-stream": "~0.0.4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/read-chunk": { + "version": "3.2.0", + "integrity": "sha512-CEjy9LCzhmD7nUpJ1oVOE6s/hBkejlcJEgLQHVnQznOSilOPb+kpKktlLfFDK3/WP43+F80xkUTM2VOkYoSYvQ==", + "dependencies": { + "pify": "^4.0.1", + "with-open-file": "^0.1.6" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/read-chunk/node_modules/pify": { + "version": "4.0.1", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/read-cmd-shim": { + "version": "1.0.5", + "integrity": "sha512-v5yCqQ/7okKoZZkBQUAfTsQ3sVJtXdNfbPnI5cceppoxEVLYA3k+VtV2omkeo8MS94JCy4fSiUwlRBAwCVRPUA==", + "dependencies": { + "graceful-fs": "^4.1.2" + } + }, + "node_modules/read-package-json": { + "version": "2.1.2", + "integrity": "sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA==", + "dependencies": { + "glob": "^7.1.1", + "json-parse-even-better-errors": "^2.3.0", + "normalize-package-data": "^2.0.0", + "npm-normalize-package-bin": "^1.0.0" + } + }, + "node_modules/read-package-json/node_modules/hosted-git-info": { + "version": "2.8.9", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/read-package-json/node_modules/normalize-package-data": { + "version": "2.5.0", + "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" + } + }, + "node_modules/read-package-json/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/read-package-tree": { + "version": "5.3.1", + "integrity": "sha512-mLUDsD5JVtlZxjSlPPx1RETkNjjvQYuweKwNVt1Sn8kP5Jh44pvYuUHCp6xSVDZWbNxVxG5lyZJ921aJH61sTw==", + "dependencies": { + "read-package-json": "^2.0.0", + "readdir-scoped-modules": "^1.0.0", + "util-promisify": "^2.1.0" + } + }, + "node_modules/read-pkg": { + "version": "3.0.0", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "dependencies": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up": { + "version": "7.0.1", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/hosted-git-info": { + "version": "2.8.9", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/read-pkg-up/node_modules/normalize-package-data": { + "version": "2.5.0", + "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" + } + }, + "node_modules/read-pkg-up/node_modules/parse-json": { + "version": "5.2.0", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/read-pkg": { + "version": "5.2.0", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/read-pkg/node_modules/load-json-file": { + "version": "4.0.0", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "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" + } + }, + "node_modules/read-pkg/node_modules/path-type": { + "version": "3.0.0", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg/node_modules/pify": { + "version": "3.0.0", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/readable-stream": { + "version": "3.6.0", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdir-scoped-modules": { + "version": "1.1.0", + "integrity": "sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==", + "dependencies": { + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "graceful-fs": "^4.1.2", + "once": "^1.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/realpath-native": { + "version": "2.0.0", + "integrity": "sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/rechoir": { + "version": "0.6.2", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.2", + "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", + "dependencies": { + "minimatch": "3.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/redent": { + "version": "2.0.0", + "integrity": "sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo=", + "dependencies": { + "indent-string": "^3.0.0", + "strip-indent": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/redent/node_modules/strip-indent": { + "version": "2.0.0", + "integrity": "sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=", + "engines": { + "node": ">=4" + } + }, + "node_modules/redeyed": { + "version": "0.4.4", + "integrity": "sha1-N+mQpvKyGyoRwuakj9QTVpjLqX8=", + "dependencies": { + "esprima": "~1.0.4" + } + }, + "node_modules/redeyed/node_modules/esprima": { + "version": "1.0.4", + "integrity": "sha1-n1V+CPw7TSbs6d00+Pv0drYlha0=", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/reduce-css-calc": { + "version": "1.3.0", + "integrity": "sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=", + "dependencies": { + "balanced-match": "^0.4.2", + "math-expression-evaluator": "^1.2.14", + "reduce-function-call": "^1.0.1" + } + }, + "node_modules/reduce-css-calc/node_modules/balanced-match": { + "version": "0.4.2", + "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=" + }, + "node_modules/reduce-function-call": { + "version": "1.0.3", + "integrity": "sha512-Hl/tuV2VDgWgCSEeWMLwxLZqX7OK59eU1guxXsRKTAyeYimivsKdtcV4fu3r710tpG5GmDKDhQ0HSZLExnNmyQ==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/reflect.ownkeys": { + "version": "0.2.0", + "integrity": "sha1-dJrO7H8/34tj+SegSAnpDFwLNGA=" + }, + "node_modules/refractor": { + "version": "3.5.0", + "integrity": "sha512-QwPJd3ferTZ4cSPPjdP5bsYHMytwWYnAN5EEnLtGvkqp/FCCnGsBgxrm9EuIDnjUC3Uc/kETtvVi7fSIVC74Dg==", + "dependencies": { + "hastscript": "^6.0.0", + "parse-entities": "^2.0.0", + "prismjs": "~1.25.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/refractor/node_modules/parse-entities": { + "version": "2.0.0", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "node_modules/regenerate-unicode-properties": { + "version": "9.0.0", + "integrity": "sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.9", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + }, + "node_modules/regenerator-transform": { + "version": "0.14.5", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/safe-regex": { + "version": "1.1.0", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/regexp-tree": { + "version": "0.1.24", + "integrity": "sha512-s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw==", + "bin": { + "regexp-tree": "bin/regexp-tree" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.3.1", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpp": { + "version": "3.2.0", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/regexpu-core": { + "version": "4.8.0", + "integrity": "sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==", + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^9.0.0", + "regjsgen": "^0.5.2", + "regjsparser": "^0.7.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.5.2", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==" + }, + "node_modules/regjsparser": { + "version": "0.7.0", + "integrity": "sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remark-footnotes": { + "version": "2.0.0", + "integrity": "sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx": { + "version": "1.6.22", + "integrity": "sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==", + "dependencies": { + "@babel/core": "7.12.9", + "@babel/helper-plugin-utils": "7.10.4", + "@babel/plugin-proposal-object-rest-spread": "7.12.1", + "@babel/plugin-syntax-jsx": "7.12.1", + "@mdx-js/util": "1.6.22", + "is-alphabetical": "1.0.4", + "remark-parse": "8.0.3", + "unified": "9.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/@babel/core": { + "version": "7.12.9", + "integrity": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.5", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.5", + "@babel/parser": "^7.12.7", + "@babel/template": "^7.12.7", + "@babel/traverse": "^7.12.9", + "@babel/types": "^7.12.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/remark-mdx/node_modules/@babel/helper-plugin-utils": { + "version": "7.10.4", + "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + }, + "node_modules/remark-mdx/node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.12.1", + "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-transform-parameters": "^7.12.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/remark-mdx/node_modules/@babel/plugin-syntax-jsx": { + "version": "7.12.1", + "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/remark-mdx/node_modules/is-buffer": { + "version": "2.0.5", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } + }, + "node_modules/remark-mdx/node_modules/is-plain-obj": { + "version": "2.1.0", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/remark-mdx/node_modules/parse-entities": { + "version": "2.0.0", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/remark-mdx/node_modules/remark-parse": { + "version": "8.0.3", + "integrity": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==", + "dependencies": { + "ccount": "^1.0.0", + "collapse-white-space": "^1.0.2", + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-whitespace-character": "^1.0.0", + "is-word-character": "^1.0.0", + "markdown-escapes": "^1.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.5.4", + "state-toggle": "^1.0.0", + "trim": "0.0.1", + "trim-trailing-lines": "^1.0.0", + "unherit": "^1.0.4", + "unist-util-remove-position": "^2.0.0", + "vfile-location": "^3.0.0", + "xtend": "^4.0.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/remark-mdx/node_modules/unified": { + "version": "9.2.0", + "integrity": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==", + "dependencies": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^2.0.0", + "trough": "^1.0.0", + "vfile": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/unist-util-is": { + "version": "4.1.0", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/unist-util-remove-position": { + "version": "2.0.1", + "integrity": "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==", + "dependencies": { + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dependencies": { + "@types/unist": "^2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/unist-util-visit": { + "version": "2.0.3", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/vfile": { + "version": "4.2.1", + "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/vfile-location": { + "version": "3.2.0", + "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/vfile-message": { + "version": "2.0.4", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-parse": { + "version": "5.0.0", + "integrity": "sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==", + "dependencies": { + "collapse-white-space": "^1.0.2", + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-whitespace-character": "^1.0.0", + "is-word-character": "^1.0.0", + "markdown-escapes": "^1.0.0", + "parse-entities": "^1.1.0", + "repeat-string": "^1.5.4", + "state-toggle": "^1.0.0", + "trim": "0.0.1", + "trim-trailing-lines": "^1.0.0", + "unherit": "^1.0.4", + "unist-util-remove-position": "^1.0.0", + "vfile-location": "^2.0.0", + "xtend": "^4.0.1" + } + }, + "node_modules/remark-squeeze-paragraphs": { + "version": "4.0.0", + "integrity": "sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==", + "dependencies": { + "mdast-squeeze-paragraphs": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remove-accents": { + "version": "0.4.2", + "integrity": "sha1-CkPTqq4egNuRngeuJUsoXZ4ce7U=" + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + }, + "node_modules/renderkid": { + "version": "2.0.7", + "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^3.0.1" + } + }, + "node_modules/renderkid/node_modules/ansi-regex": { + "version": "2.1.1", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/renderkid/node_modules/strip-ansi": { + "version": "3.0.1", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/repeating": { + "version": "2.0.1", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "dependencies": { + "is-finite": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/replace-ext": { + "version": "1.0.0", + "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/request": { + "version": "2.88.2", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "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" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/request-promise-core": { + "version": "1.1.4", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "dependencies": { + "lodash": "^4.17.19" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "request": "^2.34" + } + }, + "node_modules/request-promise-native": { + "version": "1.0.9", + "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "deprecated": "request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142", + "dependencies": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "engines": { + "node": ">=0.12.0" + }, + "peerDependencies": { + "request": "^2.34" + } + }, + "node_modules/request-promise-native/node_modules/tough-cookie": { + "version": "2.5.0", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/request/node_modules/form-data": { + "version": "2.3.3", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/request/node_modules/qs": { + "version": "6.5.2", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/request/node_modules/tough-cookie": { + "version": "2.5.0", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/request/node_modules/uuid": { + "version": "3.4.0", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "node_modules/require-package-name": { + "version": "2.0.1", + "integrity": "sha1-wR6XJ2tluOKSP3Xav1+y7ww4Qbk=" + }, + "node_modules/requireindex": { + "version": "1.2.0", + "integrity": "sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==", + "engines": { + "node": ">=0.10.5" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + }, + "node_modules/reselect": { + "version": "4.0.0", + "integrity": "sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA==" + }, + "node_modules/reserved-words": { + "version": "0.1.2", + "integrity": "sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE=" + }, + "node_modules/resize-observer-polyfill": { + "version": "1.5.1", + "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" + }, + "node_modules/resolve": { + "version": "1.20.0", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-dir": { + "version": "1.0.1", + "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "dependencies": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/global-modules": { + "version": "1.0.0", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/global-prefix": { + "version": "1.0.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-global": { + "version": "1.0.0", + "integrity": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==", + "dependencies": { + "global-dirs": "^0.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-pkg": { + "version": "2.0.0", + "integrity": "sha512-+1lzwXehGCXSeryaISr6WujZzowloigEofRB+dj75y9RRa/obVcYgbHJd53tdYw8pvZj8GojXaaENws8Ktw/hQ==", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-protobuf-schema": { + "version": "2.1.0", + "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==", + "dependencies": { + "protocol-buffers-schema": "^3.3.1" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "deprecated": "https://github.com/lydell/resolve-url#deprecated" + }, + "node_modules/restore-cursor": { + "version": "2.0.0", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dependencies": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/restore-cursor/node_modules/mimic-fn": { + "version": "1.2.0", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/restore-cursor/node_modules/onetime": { + "version": "2.0.1", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "dependencies": { + "mimic-fn": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ret": { + "version": "0.1.15", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/right-pad": { + "version": "1.0.1", + "integrity": "sha1-jKCMLLtbVedNr6lr9/0aJ9VoyNA=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/rison": { + "version": "0.1.1", + "integrity": "sha1-TcwFV7JBr/YOdheOd5ITVxPzMSA=" + }, + "node_modules/rst-selector-parser": { + "version": "2.2.3", + "integrity": "sha1-gbIw6i/MYGbInjRy3nlChdmwPZE=", + "dependencies": { + "lodash.flattendeep": "^4.4.0", + "nearley": "^2.7.10" + } + }, + "node_modules/rsvp": { + "version": "4.8.5", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "engines": { + "node": "6.* || >= 7.*" + } + }, + "node_modules/run-async": { + "version": "2.4.1", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/run-queue": { + "version": "1.0.3", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "dependencies": { + "aproba": "^1.1.1" + } + }, + "node_modules/run-queue/node_modules/aproba": { + "version": "1.2.0", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "node_modules/rw": { + "version": "1.3.3", + "integrity": "sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=" + }, + "node_modules/rxjs": { + "version": "6.6.7", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" + } + }, + "node_modules/rxjs/node_modules/tslib": { + "version": "1.14.1", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/safe-regex": { + "version": "2.1.1", + "integrity": "sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==", + "dependencies": { + "regexp-tree": "~0.1.1" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/sane": { + "version": "4.1.0", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "deprecated": "some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added", + "dependencies": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "bin": { + "sane": "src/cli.js" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/sane/node_modules/anymatch": { + "version": "2.0.0", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/sane/node_modules/braces": { + "version": "2.3.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/cross-spawn": { + "version": "6.0.5", + "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" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/sane/node_modules/execa": { + "version": "1.0.0", + "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" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/sane/node_modules/fill-range": { + "version": "4.0.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/get-stream": { + "version": "4.1.0", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/sane/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/is-stream": { + "version": "1.1.0", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/micromatch": { + "version": "3.1.10", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/normalize-path": { + "version": "2.1.1", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/npm-run-path": { + "version": "2.0.2", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/sane/node_modules/path-key": { + "version": "2.0.1", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "engines": { + "node": ">=4" + } + }, + "node_modules/sane/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/sane/node_modules/shebang-command": { + "version": "1.2.0", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/shebang-regex": { + "version": "1.0.0", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/sax": { + "version": "1.2.4", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "node_modules/saxes": { + "version": "5.0.1", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/scheduler": { + "version": "0.19.1", + "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "node_modules/schema-utils": { + "version": "2.7.1", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/scoped-regex": { + "version": "1.0.0", + "integrity": "sha1-o0a7Gs1CB65wvXwMfKnlZra63bg=", + "devOptional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/scroll-into-view-if-needed": { + "version": "2.2.28", + "integrity": "sha512-8LuxJSuFVc92+0AdNv4QOxRL4Abeo1DgLnGNkn1XlaujPH/3cCFz3QI60r2VNu4obJJROzgnIUw5TKQkZvZI1w==", + "dependencies": { + "compute-scroll-into-view": "^1.0.17" + } + }, + "node_modules/seedrandom": { + "version": "3.0.5", + "integrity": "sha512-8OwmbklUNzwezjGInmZ+2clQmExQPvomqjL7LFqOYqtmuxRgQYqOD3mHaU+MvZn5FLUeVxVfQjwLZW/n/JFuqg==" + }, + "node_modules/select-hose": { + "version": "2.0.0", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + }, + "node_modules/selfsigned": { + "version": "1.10.11", + "integrity": "sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==", + "dependencies": { + "node-forge": "^0.10.0" + } + }, + "node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-compare": { + "version": "1.0.0", + "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=" + }, + "node_modules/semver-regex": { + "version": "3.1.3", + "integrity": "sha512-Aqi54Mk9uYTjVexLnR67rTyBusmwd04cLkHy9hNvk3+G3nT2Oyg7E0l4XVbOaNwIvQ3hHeYxGcyEy+mKreyBFQ==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/send": { + "version": "0.17.1", + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.1", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + }, + "node_modules/sentence-case": { + "version": "2.1.1", + "integrity": "sha1-H24t2jnBaL+S0T+G1KkYkz9mftQ=", + "dependencies": { + "no-case": "^2.2.0", + "upper-case-first": "^1.1.2" + } + }, + "node_modules/serialize-javascript": { + "version": "4.0.0", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-favicon": { + "version": "2.5.0", + "integrity": "sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=", + "dependencies": { + "etag": "~1.8.1", + "fresh": "0.5.2", + "ms": "2.1.1", + "parseurl": "~1.3.2", + "safe-buffer": "5.1.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-favicon/node_modules/ms": { + "version": "2.1.1", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + }, + "node_modules/serve-favicon/node_modules/safe-buffer": { + "version": "5.1.1", + "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" + }, + "node_modules/serve-index": { + "version": "1.9.1", + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + }, + "node_modules/serve-static": { + "version": "1.14.1", + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "node_modules/set-getter": { + "version": "0.1.1", + "integrity": "sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==", + "devOptional": true, + "dependencies": { + "to-object-path": "^0.3.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value": { + "version": "2.0.1", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-plain-object": { + "version": "2.0.4", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + }, + "node_modules/setprototypeof": { + "version": "1.1.1", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "node_modules/sha.js": { + "version": "2.4.11", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shallow-copy": { + "version": "0.0.1", + "integrity": "sha1-QV9CcC1z2BAzApLMXuhurhoRoXA=" + }, + "node_modules/shallowequal": { + "version": "1.1.0", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + }, + "node_modules/shapefile": { + "version": "0.3.1", + "integrity": "sha1-m7mkKb1ghqDPsDli0Uz99CD/uhI=", + "dependencies": { + "d3-queue": "1", + "iconv-lite": "0.2", + "optimist": "0.3" + }, + "bin": { + "dbfcat": "bin/dbfcat", + "shp2json": "bin/shp2json", + "shpcat": "bin/shpcat" + } + }, + "node_modules/shapefile/node_modules/d3-queue": { + "version": "1.2.3", + "integrity": "sha1-FDpwHPpl/gISkvMhwQ0U6Yq9SRs=" + }, + "node_modules/shapefile/node_modules/iconv-lite": { + "version": "0.2.11", + "integrity": "sha1-HOYKOleGSiktEyH/RgnKS7llrcg=", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/sharkdown": { + "version": "0.1.1", + "integrity": "sha512-exwooSpmo5s45lrexgz6Q0rFQM574wYIX3iDZ7RLLqOb7IAoQZu9nxlZODU972g19sR69OIpKP2cpHTzU+PHIg==", + "dependencies": { + "cardinal": "~0.4.2", + "minimist": "0.0.5", + "split": "~0.2.10" + }, + "bin": { + "sharkdown": "sharkdown" + } + }, + "node_modules/sharkdown/node_modules/minimist": { + "version": "0.0.5", + "integrity": "sha1-16oye87PUY+RBqxrjwA/o7zqhWY=" + }, + "node_modules/sharkdown/node_modules/split": { + "version": "0.2.10", + "integrity": "sha1-Zwl8YB1pfOE2j0GPBs0gHPBSGlc=", + "dependencies": { + "through": "2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.7.2", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" + }, + "node_modules/shelljs": { + "version": "0.7.6", + "integrity": "sha1-N5zM+1a5HIYB5HkzVutTgpJN6a0=", + "dependencies": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "iojs": "*", + "node": ">=0.11.0" + } + }, + "node_modules/shellwords": { + "version": "0.1.1", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==" + }, + "node_modules/shortid": { + "version": "2.2.16", + "integrity": "sha512-Ugt+GIZqvGXCIItnsL+lvFJOiN7RYqlGy7QE41O3YC1xbNSeDGIRO7xg2JJXIAj1cAGnOeC1r7/T9pgrtQbv4g==", + "dependencies": { + "nanoid": "^2.1.0" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sigmund": { + "version": "1.0.1", + "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=" + }, + "node_modules/signal-exit": { + "version": "3.0.5", + "integrity": "sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==" + }, + "node_modules/sinon": { + "version": "9.2.4", + "integrity": "sha512-zljcULZQsJxVra28qIAL6ow1Z9tpattkCTEJR4RBP3TGc00FcttsP5pK284Nas5WjMZU5Yzy3kAIp3B3KRf5Yg==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^1.8.1", + "@sinonjs/fake-timers": "^6.0.1", + "@sinonjs/samsam": "^5.3.1", + "diff": "^4.0.2", + "nise": "^4.0.4", + "supports-color": "^7.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/sinon" + } + }, + "node_modules/sinon/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/sinon/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "node_modules/slash": { + "version": "2.0.0", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/slice-ansi": { + "version": "3.0.0", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/slide": { + "version": "1.1.6", + "integrity": "sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=", + "engines": { + "node": "*" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/snake-case": { + "version": "2.1.0", + "integrity": "sha1-Qb2xtz8w7GagTU4srRt2OH1NbZ8=", + "dependencies": { + "no-case": "^2.2.0" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor": { + "version": "0.1.4", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.6", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/kind-of": { + "version": "5.1.0", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/sockjs": { + "version": "0.3.21", + "integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/sockjs-client": { + "version": "1.5.2", + "integrity": "sha512-ZzRxPBISQE7RpzlH4tKJMQbHM9pabHluk0WBaxAQ+wm/UieeBVBou0p4wVnSQGN9QmpAZygQ0cDIypWuqOFmFQ==", + "dependencies": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.5.3" + } + }, + "node_modules/sockjs-client/node_modules/debug": { + "version": "3.2.7", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/sockjs/node_modules/uuid": { + "version": "3.4.0", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/socks": { + "version": "2.3.3", + "integrity": "sha512-o5t52PCNtVdiOvzMry7wU4aOqYWL0PeCXRWBEiJow4/i/wr+wpsJQ9awEu1EonLIqsfGd5qSgDdxEOvCdmBEpA==", + "dependencies": { + "ip": "1.1.5", + "smart-buffer": "^4.1.0" + }, + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks-proxy-agent": { + "version": "4.0.2", + "integrity": "sha512-NT6syHhI9LmuEMSK6Kd2V7gNv5KFZoLE7V5udWmn0de+3Mkj3UMA/AJPLyeNUVmElCurSHtUdM3ETpR3z770Wg==", + "dependencies": { + "agent-base": "~4.2.1", + "socks": "~2.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/socks-proxy-agent/node_modules/agent-base": { + "version": "4.2.1", + "integrity": "sha512-JVwXMr9nHYTUXsBFKUqhJwvlcYU/blreOEUkhNR2eXZIvwd+c+o5V4MgDPKWnMS/56awN3TRzIP+KoPn+roQtg==", + "dependencies": { + "es6-promisify": "^5.0.0" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/sort-keys": { + "version": "2.0.0", + "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=", + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/sortablejs": { + "version": "1.14.0", + "integrity": "sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==" + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "node_modules/source-map": { + "version": "0.5.7", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "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" + } + }, + "node_modules/source-map-support": { + "version": "0.5.20", + "integrity": "sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==" + }, + "node_modules/space-separated-tokens": { + "version": "1.1.5", + "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/spdx-correct": { + "version": "3.1.1", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.10", + "integrity": "sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==" + }, + "node_modules/spdy": { + "version": "4.0.2", + "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" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "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" + } + }, + "node_modules/specificity": { + "version": "0.4.1", + "integrity": "sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg==", + "bin": { + "specificity": "bin/specificity" + } + }, + "node_modules/speedometer": { + "version": "1.0.0", + "integrity": "sha1-zWccsGdSwivKM3Di8zREC+T8YuI=", + "dev": true + }, + "node_modules/split": { + "version": "1.0.1", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", + "dependencies": { + "through": "2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/split-on-first": { + "version": "1.1.0", + "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/split-string": { + "version": "3.1.0", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split2": { + "version": "2.2.0", + "integrity": "sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw==", + "dependencies": { + "through2": "^2.0.2" + } + }, + "node_modules/split2/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/split2/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/split2/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/split2/node_modules/through2": { + "version": "2.0.5", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "node_modules/sshpk": { + "version": "1.16.1", + "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" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ssri": { + "version": "6.0.2", + "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", + "dependencies": { + "figgy-pudding": "^3.5.1" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "node_modules/stack-utils": { + "version": "2.0.5", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.2.0", + "integrity": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==" + }, + "node_modules/state-toggle": { + "version": "1.0.3", + "integrity": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/static-eval": { + "version": "2.1.0", + "integrity": "sha512-agtxZ/kWSsCkI5E4QifRwsaPs0P0JmZV6dkLz6ILYfFYQGn+5plctanRN+IC8dJRiFkyXHrwEE3W9Wmx67uDbw==", + "dependencies": { + "escodegen": "^1.11.1" + } + }, + "node_modules/static-eval/node_modules/escodegen": { + "version": "1.14.3", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/static-eval/node_modules/estraverse": { + "version": "4.3.0", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/static-eval/node_modules/levn": { + "version": "0.3.0", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/optionator": { + "version": "0.8.3", + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/prelude-ls": { + "version": "1.1.2", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-eval/node_modules/type-check": { + "version": "0.3.2", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-extend": { + "version": "0.1.2", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor": { + "version": "0.1.4", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-descriptor": { + "version": "0.1.6", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/kind-of": { + "version": "5.1.0", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-module": { + "version": "2.2.5", + "integrity": "sha512-D8vv82E/Kpmz3TXHKG8PPsCPg+RAX6cbCOyvjM6x04qZtQ47EtJFVwRsdov3n5d6/6ynrOY9XB4JkaZwB2xoRQ==", + "dependencies": { + "concat-stream": "~1.6.0", + "convert-source-map": "^1.5.1", + "duplexer2": "~0.1.4", + "escodegen": "~1.9.0", + "falafel": "^2.1.0", + "has": "^1.0.1", + "magic-string": "^0.22.4", + "merge-source-map": "1.0.4", + "object-inspect": "~1.4.0", + "quote-stream": "~1.0.2", + "readable-stream": "~2.3.3", + "shallow-copy": "~0.0.1", + "static-eval": "^2.0.0", + "through2": "~2.0.3" + } + }, + "node_modules/static-module/node_modules/concat-stream": { + "version": "1.6.2", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/static-module/node_modules/escodegen": { + "version": "1.9.1", + "integrity": "sha512-6hTjO1NAWkHnDk3OqQ4YrCuwwmGHL9S3nPlzBOUG/R44rda3wLNrfvQ5fkSGjyhHFKM7ALPKcKGrwvCLe0lC7Q==", + "dependencies": { + "esprima": "^3.1.3", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/static-module/node_modules/esprima": { + "version": "3.1.3", + "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/static-module/node_modules/estraverse": { + "version": "4.3.0", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/static-module/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/static-module/node_modules/levn": { + "version": "0.3.0", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-module/node_modules/object-inspect": { + "version": "1.4.1", + "integrity": "sha512-wqdhLpfCUbEsoEwl3FXwGyv8ief1k/1aUdIPCqVnupM6e8l63BEJdiF/0swtn04/8p05tG/T0FrpTlfwvljOdw==" + }, + "node_modules/static-module/node_modules/optionator": { + "version": "0.8.3", + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-module/node_modules/prelude-ls": { + "version": "1.1.2", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-module/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/static-module/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-module/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/static-module/node_modules/through2": { + "version": "2.0.5", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/static-module/node_modules/type-check": { + "version": "0.3.2", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/statuses": { + "version": "1.5.0", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/stealthy-require": { + "version": "1.1.1", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/store2": { + "version": "2.12.0", + "integrity": "sha512-7t+/wpKLanLzSnQPX8WAcuLCCeuSHoWdQuh9SB3xD0kNOM38DNf+0Oa+wmvxmYueRzkmh6IcdKFtvTa+ecgPDw==" + }, + "node_modules/storybook-addon-jsx": { + "version": "7.3.14", + "integrity": "sha512-ierjcn0nxjjOuNcnLkorXQnfXlYmyQxFXvmWV88T9V8VAnsWd4yclTtSOV/gPtB83FefmyO/8dm1qQBG0f+2pA==", + "dependencies": { + "copy-to-clipboard": "^3.0.8", + "js-beautify": "^1.8.8", + "react-element-to-jsx-string": "^14.3.1", + "storybook-pretty-props": "^1.0.3" + }, + "peerDependencies": { + "@storybook/addons": ">= 5.x", + "@storybook/channels": ">= 5.x", + "@storybook/components": ">= 5.x", + "@storybook/core-events": ">= 5.x", + "@storybook/theming": ">= 5.x", + "react": "^16.2.0 || ^17.0.0", + "react-dom": "^16.2.0 || ^17.0.0" + } + }, + "node_modules/storybook-addon-jsx/node_modules/react-element-to-jsx-string": { + "version": "14.3.4", + "integrity": "sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==", + "dependencies": { + "@base2/pretty-print-object": "1.0.1", + "is-plain-object": "5.0.0", + "react-is": "17.0.2" + }, + "peerDependencies": { + "react": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1", + "react-dom": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1" + } + }, + "node_modules/storybook-addon-jsx/node_modules/react-is": { + "version": "17.0.2", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "node_modules/storybook-addon-jsx/node_modules/storybook-pretty-props": { + "version": "1.2.1", + "integrity": "sha512-3dUtu0UbBA6idA3Qo0i+CYGGz8GiqlXzhgCJdT065jnuJ3y9intKxZpv05ZbnQXCPnsPVSDos+hgOZ444hf6xA==", + "peerDependencies": { + "react": "*" + } + }, + "node_modules/stream-browserify": { + "version": "2.0.2", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "node_modules/stream-browserify/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/stream-browserify/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/stream-browserify/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/stream-each": { + "version": "1.2.3", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dependencies": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/stream-http": { + "version": "2.8.3", + "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" + } + }, + "node_modules/stream-http/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/stream-http/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/stream-http/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + }, + "node_modules/strict-uri-encode": { + "version": "2.0.0", + "integrity": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=", + "engines": { + "node": ">=4" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.2.1", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/string-argv": { + "version": "0.3.1", + "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==", + "engines": { + "node": ">=0.6.19" + } + }, + "node_modules/string-convert": { + "version": "0.2.1", + "integrity": "sha1-aYLMMEn7tM2F+LJFaLnZvznu/5c=" + }, + "node_modules/string-hash": { + "version": "1.1.3", + "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=" + }, + "node_modules/string-length": { + "version": "4.0.2", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-template": { + "version": "0.2.1", + "integrity": "sha1-QpMuWYo1LQH8IuwzZ9nYTuxsmt0=" + }, + "node_modules/string-width": { + "version": "4.2.3", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.6", + "integrity": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.3.1", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.padend": { + "version": "3.1.3", + "integrity": "sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.padstart": { + "version": "3.1.3", + "integrity": "sha512-NZydyOMtYxpTjGqp0VN5PYUF/tsU15yDMZnUdj16qRUIUiMJkHHSDElYyQFrMu+/WloTpA7MQSiADhBicDfaoA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.5", + "integrity": "sha512-Lnh17webJVsD6ECeovpVN17RlAKjmz4rF9S+8Y45CkMc/ufVpTkU3vZIyIC7sllQ1FCvObZnnCdNs/HXTUOTlg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.4", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.4", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringify-object": { + "version": "3.3.0", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-bom-buf": { + "version": "1.0.0", + "integrity": "sha1-HLRar1dTD0yvhsf3UXnSyaUd1XI=", + "devOptional": true, + "dependencies": { + "is-utf8": "^0.2.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-bom-stream": { + "version": "2.0.0", + "integrity": "sha1-+H217yYT9paKpUWr/h7HKLaoKco=", + "devOptional": true, + "dependencies": { + "first-chunk-stream": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-bom-stream/node_modules/strip-bom": { + "version": "2.0.0", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "devOptional": true, + "dependencies": { + "is-utf8": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "2.0.1", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-outer": { + "version": "1.0.1", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-outer/node_modules/escape-string-regexp": { + "version": "1.0.5", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/strong-log-transformer": { + "version": "2.1.0", + "integrity": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==", + "dependencies": { + "duplexer": "^0.1.1", + "minimist": "^1.2.0", + "through": "^2.3.4" + }, + "bin": { + "sl-log-transformer": "bin/sl-log-transformer.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/style-loader": { + "version": "1.3.0", + "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.0" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/style-loader/node_modules/loader-utils": { + "version": "2.0.0", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/style-to-object": { + "version": "0.3.0", + "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==", + "dependencies": { + "inline-style-parser": "0.1.1" + } + }, + "node_modules/stylis": { + "version": "4.0.10", + "integrity": "sha512-m3k+dk7QeJw660eIKRRn3xPF6uuvHs/FFzjX3HQ5ove0qYsiygoAhwn5a3IYKaZPo5LrYD0rfVmtv1gNY1uYwg==" + }, + "node_modules/supercluster": { + "version": "4.1.1", + "integrity": "sha512-sF0FfUOPFp96DKzwWFLeQOEqqKu2PpcesxAFeFsknA/q7g7igVVn/p3NI2XHEghNSyDAqunKNKqAbqNO8+7NDQ==", + "dependencies": { + "kdbush": "^2.0.1" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.2.0", + "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/swap-case": { + "version": "1.1.2", + "integrity": "sha1-w5IDpFhzhfrTyFCgvRvK+ggZdOM=", + "dependencies": { + "lower-case": "^1.1.1", + "upper-case": "^1.1.1" + } + }, + "node_modules/symbol-observable": { + "version": "1.2.0", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + }, + "node_modules/symbol.prototype.description": { + "version": "1.0.5", + "integrity": "sha512-x738iXRYsrAt9WBhRCVG5BtIC3B7CUkFwbHW2zOvGtwM33s7JjrCDyq8V0zgMYVb5ymsL8+qkzzpANH63CPQaQ==", + "dependencies": { + "call-bind": "^1.0.2", + "get-symbol-description": "^1.0.0", + "has-symbols": "^1.0.2", + "object.getownpropertydescriptors": "^2.1.2" + }, + "engines": { + "node": ">= 0.11.15" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/table": { + "version": "6.7.2", + "integrity": "sha512-UFZK67uvyNivLeQbVtkiUs8Uuuxv24aSL4/Vil2PJVtMgU8Lx0CYkP12uCGa3kjyQzOSgV1+z9Wkb82fCGsO0g==", + "dependencies": { + "ajv": "^8.0.1", + "lodash.clonedeep": "^4.5.0", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/table/node_modules/ajv": { + "version": "8.6.3", + "integrity": "sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/table/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/table/node_modules/json-schema-traverse": { + "version": "1.0.0", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/table/node_modules/slice-ansi": { + "version": "4.0.0", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/taketalk": { + "version": "1.0.0", + "integrity": "sha1-tNTw3u0gauffd1sSnqLKbeUvJt0=", + "dependencies": { + "get-stdin": "^4.0.1", + "minimist": "^1.1.0" + } + }, + "node_modules/taketalk/node_modules/get-stdin": { + "version": "4.0.1", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tapable": { + "version": "0.1.10", + "integrity": "sha1-KcNXB8K3DlDQdIK10gLo7URtr9Q=", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tar": { + "version": "4.4.19", + "integrity": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==", + "dependencies": { + "chownr": "^1.1.4", + "fs-minipass": "^1.2.7", + "minipass": "^2.9.0", + "minizlib": "^1.3.3", + "mkdirp": "^0.5.5", + "safe-buffer": "^5.2.1", + "yallist": "^3.1.1" + }, + "engines": { + "node": ">=4.5" + } + }, + "node_modules/tar/node_modules/safe-buffer": { + "version": "5.2.1", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/tar/node_modules/yallist": { + "version": "3.1.1", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/telejson": { + "version": "5.3.3", + "integrity": "sha512-PjqkJZpzEggA9TBpVtJi1LVptP7tYtXB6rEubwlHap76AMjzvOdKX41CxyaW7ahhzDU1aftXnMCx5kAPDZTQBA==", + "dependencies": { + "@types/is-function": "^1.0.0", + "global": "^4.4.0", + "is-function": "^1.0.2", + "is-regex": "^1.1.2", + "is-symbol": "^1.0.3", + "isobject": "^4.0.0", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3" + } + }, + "node_modules/telejson/node_modules/isobject": { + "version": "4.0.0", + "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/temp-dir": { + "version": "1.0.0", + "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/temp-write": { + "version": "3.4.0", + "integrity": "sha1-jP9jD7fp2gXwR8dM5M5NaFRX1JI=", + "dependencies": { + "graceful-fs": "^4.1.2", + "is-stream": "^1.1.0", + "make-dir": "^1.0.0", + "pify": "^3.0.0", + "temp-dir": "^1.0.0", + "uuid": "^3.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/temp-write/node_modules/is-stream": { + "version": "1.1.0", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/temp-write/node_modules/make-dir": { + "version": "1.3.0", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/temp-write/node_modules/pify": { + "version": "3.0.0", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "engines": { + "node": ">=4" + } + }, + "node_modules/temp-write/node_modules/uuid": { + "version": "3.4.0", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/tempfile": { + "version": "3.0.0", + "integrity": "sha512-uNFCg478XovRi85iD42egu+eSFUmmka750Jy7L5tfHI5hQKKtbPnxaSaXAbBqCDYrw3wx4tXjKwci4/QmsZJxw==", + "dependencies": { + "temp-dir": "^2.0.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tempfile/node_modules/temp-dir": { + "version": "2.0.0", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/tempfile/node_modules/uuid": { + "version": "3.4.0", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/term-size": { + "version": "2.2.1", + "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "4.8.0", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "2.3.8", + "integrity": "sha512-/fKw3R+hWyHfYx7Bv6oPqmk4HGQcrWLtV3X6ggvPuwPNHSnzvVV51z6OaaCOus4YLjutYGOz3pEpbhe6Up2s1w==", + "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": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.6.12", + "webpack-sources": "^1.4.3" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/cacache": { + "version": "13.0.1", + "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" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/find-cache-dir": { + "version": "3.3.2", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/terser-webpack-plugin/node_modules/fs-minipass": { + "version": "2.1.0", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "25.5.0", + "integrity": "sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/terser-webpack-plugin/node_modules/lru-cache": { + "version": "5.1.1", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/terser-webpack-plugin/node_modules/lru-cache/node_modules/yallist": { + "version": "3.1.1", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/terser-webpack-plugin/node_modules/make-dir": { + "version": "3.1.0", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser-webpack-plugin/node_modules/minipass": { + "version": "3.1.5", + "integrity": "sha512-+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/p-limit": { + "version": "2.3.0", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser-webpack-plugin/node_modules/p-map": { + "version": "3.0.0", + "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/pkg-dir": { + "version": "4.2.0", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/rimraf": { + "version": "2.7.1", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/terser-webpack-plugin/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/terser-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/ssri": { + "version": "7.1.1", + "integrity": "sha512-w+daCzXN89PseTL99MkA+fxJEcU3wfaE/ah0i0lnOlpG1CYLJ2ZjzEry68YBKfLs4JfoTShrTEsJkAZuNZ/stw==", + "dependencies": { + "figgy-pudding": "^3.5.1", + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/terser/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-extensions": { + "version": "1.9.0", + "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + }, + "node_modules/textextensions": { + "version": "2.6.0", + "integrity": "sha512-49WtAWS+tcsy93dRt6P0P3AMD2m5PvXRhuEA0kaXos5ZLlujtYmpmFsB+QvWUSxE1ZsstmYXfQ7L40+EcQgpAQ==", + "engines": { + "node": ">=0.8" + }, + "funding": { + "url": "https://bevry.me/fund" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "integrity": "sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/throat": { + "version": "5.0.0", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==" + }, + "node_modules/throttle-debounce": { + "version": "3.0.1", + "integrity": "sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/through": { + "version": "2.3.8", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + }, + "node_modules/through2": { + "version": "4.0.2", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dependencies": { + "readable-stream": "3" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "node_modules/timed-out": { + "version": "4.0.1", + "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/timers-browserify": { + "version": "2.0.12", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dependencies": { + "setimmediate": "^1.0.4" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/tiny-invariant": { + "version": "1.1.0", + "integrity": "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" + }, + "node_modules/tinyqueue": { + "version": "2.0.3", + "integrity": "sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==" + }, + "node_modules/title-case": { + "version": "2.1.1", + "integrity": "sha1-PhJyFtpY0rxb7PE3q5Ha46fNj6o=", + "dependencies": { + "no-case": "^2.2.0", + "upper-case": "^1.0.3" + } + }, + "node_modules/tmp": { + "version": "0.0.33", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/tmp-promise": { + "version": "3.0.2", + "integrity": "sha512-OyCLAKU1HzBjL6Ev3gxUeraJNlbNingmi8IrHHEsYH8LTmEuhvYfqvhn2F/je+mjf4N58UmZ96OMEy1JanSCpA==", + "dev": true, + "dependencies": { + "tmp": "^0.2.0" + } + }, + "node_modules/tmp-promise/node_modules/tmp": { + "version": "0.2.1", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "dev": true, + "dependencies": { + "rimraf": "^3.0.0" + }, + "engines": { + "node": ">=8.17.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + }, + "node_modules/to-arraybuffer": { + "version": "1.0.1", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/to-regex/node_modules/safe-regex": { + "version": "1.1.0", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/toggle-selection": { + "version": "1.0.6", + "integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=" + }, + "node_modules/toidentifier": { + "version": "1.0.0", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/topojson": { + "version": "1.6.27", + "integrity": "sha1-rb4zpn4vFnPTON8SZErSD8ILQu0=", + "deprecated": "Use topojson-client, topojson-server or topojson-simplify directly.", + "dependencies": { + "d3": "3", + "d3-geo-projection": "0.2", + "d3-queue": "2", + "optimist": "0.3", + "rw": "1", + "shapefile": "0.3" + }, + "bin": { + "topojson": "bin/topojson", + "topojson-geojson": "bin/topojson-geojson", + "topojson-group": "bin/topojson-group", + "topojson-merge": "bin/topojson-merge", + "topojson-svg": "bin/topojson-svg" + } + }, + "node_modules/tough-cookie": { + "version": "4.0.0", + "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.1.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "2.1.0", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/traverse": { + "version": "0.6.6", + "integrity": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=" + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true, + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/trim": { + "version": "0.0.1", + "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=" + }, + "node_modules/trim-newlines": { + "version": "2.0.0", + "integrity": "sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA=", + "engines": { + "node": ">=4" + } + }, + "node_modules/trim-off-newlines": { + "version": "1.0.2", + "integrity": "sha512-DAnbtY4lNoOTLw05HLuvPoBFAGV4zOKQ9d1Q45JB+bcDwYIEkCr0xNgwKtygtKFBbRlFA/8ytkAM1V09QGWksg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/trim-repeated": { + "version": "1.0.0", + "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=", + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/trim-repeated/node_modules/escape-string-regexp": { + "version": "1.0.5", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/trim-right": { + "version": "1.0.1", + "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/trim-trailing-lines": { + "version": "1.1.4", + "integrity": "sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/trough": { + "version": "1.0.5", + "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/tryer": { + "version": "1.0.1", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + }, + "node_modules/ts-dedent": { + "version": "2.2.0", + "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==", + "engines": { + "node": ">=6.10" + } + }, + "node_modules/ts-essentials": { + "version": "2.0.12", + "integrity": "sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w==" + }, + "node_modules/ts-jest": { + "version": "26.5.6", + "integrity": "sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA==", + "dependencies": { + "bs-logger": "0.x", + "buffer-from": "1.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^26.1.0", + "json5": "2.x", + "lodash": "4.x", + "make-error": "1.x", + "mkdirp": "1.x", + "semver": "7.x", + "yargs-parser": "20.x" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": ">= 10" + }, + "peerDependencies": { + "jest": ">=26 <27", + "typescript": ">=3.8 <5.0" + } + }, + "node_modules/ts-jest/node_modules/mkdirp": { + "version": "1.0.4", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/yargs-parser": { + "version": "20.2.9", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-loader": { + "version": "8.3.0", + "integrity": "sha512-MgGly4I6cStsJy27ViE32UoqxPTN9Xly4anxxVyaIWR+9BGxboV4EyJBGfR3RePV7Ksjj3rHmPZJeIt+7o4Vag==", + "dependencies": { + "chalk": "^4.1.0", + "enhanced-resolve": "^4.0.0", + "loader-utils": "^2.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "typescript": "*", + "webpack": "*" + } + }, + "node_modules/ts-loader/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ts-loader/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ts-loader/node_modules/enhanced-resolve": { + "version": "4.5.0", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/ts-loader/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-loader/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/ts-loader/node_modules/loader-utils": { + "version": "2.0.0", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/ts-loader/node_modules/memory-fs": { + "version": "0.5.0", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/ts-loader/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/ts-loader/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/ts-loader/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-loader/node_modules/tapable": { + "version": "1.1.3", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/ts-pnp": { + "version": "1.2.0", + "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==", + "engines": { + "node": ">=6" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/tsconfig-paths": { + "version": "3.11.0", + "integrity": "sha512-7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.0", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.1", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tslib": { + "version": "2.3.1", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/tty-browserify": { + "version": "0.0.0", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" + }, + "node_modules/tunnel": { + "version": "0.0.6", + "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==", + "dev": true, + "engines": { + "node": ">=0.6.11 <=0.7.0 || >=0.7.3" + } + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "node_modules/type-check": { + "version": "0.4.0", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "4.4.4", + "integrity": "sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/ua-parser-js": { + "version": "0.7.28", + "integrity": "sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + } + ], + "engines": { + "node": "*" + } + }, + "node_modules/uglify-js": { + "version": "3.14.2", + "integrity": "sha512-rtPMlmcO4agTUfz10CbgJ1k6UAoXM2gWb3GoMPPZB/+/Ackf8lNWk11K4rYi2D0apgoFRLtQOZhb+/iGNJq26A==", + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/uid-number": { + "version": "0.0.6", + "integrity": "sha1-DqEOgDXo61uOREnwbaHHMGY7qoE=", + "engines": { + "node": "*" + } + }, + "node_modules/umask": { + "version": "1.1.0", + "integrity": "sha1-8pzr8B31F5ErtY/5xOUP3o4zMg0=" + }, + "node_modules/unbox-primitive": { + "version": "1.0.1", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", + "dependencies": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unfetch": { + "version": "4.2.0", + "integrity": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==" + }, + "node_modules/unherit": { + "version": "1.1.3", + "integrity": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==", + "dependencies": { + "inherits": "^2.0.0", + "xtend": "^4.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unified": { + "version": "6.2.0", + "integrity": "sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==", + "dependencies": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^1.1.0", + "trough": "^1.0.0", + "vfile": "^2.0.0", + "x-is-string": "^0.1.0" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/union-value/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unique-filename": { + "version": "1.1.1", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.2", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/unist-builder": { + "version": "2.0.3", + "integrity": "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-generated": { + "version": "1.1.6", + "integrity": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-is": { + "version": "3.0.0", + "integrity": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==" + }, + "node_modules/unist-util-position": { + "version": "3.1.0", + "integrity": "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-remove": { + "version": "2.1.0", + "integrity": "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==", + "dependencies": { + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-remove-position": { + "version": "1.1.4", + "integrity": "sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==", + "dependencies": { + "unist-util-visit": "^1.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-remove/node_modules/unist-util-is": { + "version": "4.1.0", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "1.1.2", + "integrity": "sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==" + }, + "node_modules/unist-util-visit": { + "version": "1.4.1", + "integrity": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==", + "dependencies": { + "unist-util-visit-parents": "^2.0.0" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "1.1.2", + "integrity": "sha512-yvo+MMLjEwdc3RhhPYSximset7rwjMrdt9E41Smmvg25UQIenzrN83cRnF1JMzoMi9zZOQeYXHSDf7p+IQkW3Q==" + }, + "node_modules/unist-util-visit/node_modules/unist-util-visit-parents": { + "version": "2.1.2", + "integrity": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==", + "dependencies": { + "unist-util-is": "^3.0.0" + } + }, + "node_modules/universal-user-agent": { + "version": "6.0.0", + "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==" + }, + "node_modules/universalify": { + "version": "2.0.0", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + }, + "node_modules/unset-value": { + "version": "1.0.0", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/untildify": { + "version": "3.0.3", + "integrity": "sha512-iSk/J8efr8uPT/Z4eSUywnqyrQU7DSdMfdqK4iWEaUVVmcP5JcnpRqmVMwcwcnmI1ATFNgC5V90u09tBynNFKA==", + "devOptional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unzip-response": { + "version": "2.0.1", + "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=", + "engines": { + "node": ">=4" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/upper-case": { + "version": "1.1.3", + "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=" + }, + "node_modules/upper-case-first": { + "version": "1.1.2", + "integrity": "sha1-XXm+3P8UQZUY/S7bCgUHybaFkRU=", + "dependencies": { + "upper-case": "^1.1.1" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urijs": { + "version": "1.19.7", + "integrity": "sha512-Id+IKjdU0Hx+7Zx717jwLPsPeUqz7rAtuVBRLLs+qn+J2nf9NGITWVCxcijgYxBqe83C7sqsQPs6H1pyz3x9gA==" + }, + "node_modules/urix": { + "version": "0.1.0", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "deprecated": "Please see https://github.com/lydell/urix#deprecated" + }, + "node_modules/url": { + "version": "0.11.0", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dependencies": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "node_modules/url-loader": { + "version": "4.1.1", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "dependencies": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "file-loader": "*", + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "file-loader": { + "optional": true + } + } + }, + "node_modules/url-loader/node_modules/loader-utils": { + "version": "2.0.0", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/url-loader/node_modules/schema-utils": { + "version": "3.1.1", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/url-parse": { + "version": "1.5.3", + "integrity": "sha512-IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ==", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/url-parse-lax": { + "version": "1.0.0", + "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", + "dependencies": { + "prepend-http": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.3.2", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + }, + "node_modules/url/node_modules/querystring": { + "version": "0.2.0", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/use": { + "version": "3.1.1", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util": { + "version": "0.11.1", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "node_modules/util-promisify": { + "version": "2.1.0", + "integrity": "sha1-PCI2R2xNMsX/PEcAKt18E7moKlM=", + "dependencies": { + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "node_modules/util.promisify": { + "version": "1.0.0", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "dependencies": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "node_modules/utila": { + "version": "0.4.0", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "devOptional": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/uuid-browser": { + "version": "3.1.0", + "integrity": "sha1-DwWkCu90+eWVHiDvv0SxGHHlZBA=" + }, + "node_modules/v8-compile-cache": { + "version": "2.3.0", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + }, + "node_modules/v8-to-istanbul": { + "version": "7.1.2", + "integrity": "sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.3", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/v8flags": { + "version": "3.2.0", + "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/validate-npm-package-name": { + "version": "3.0.0", + "integrity": "sha1-X6kS2B630MdK/BQN5zF/DKffQ34=", + "dependencies": { + "builtins": "^1.0.3" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/verror": { + "version": "1.10.0", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/vfile": { + "version": "2.3.0", + "integrity": "sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==", + "dependencies": { + "is-buffer": "^1.1.4", + "replace-ext": "1.0.0", + "unist-util-stringify-position": "^1.0.0", + "vfile-message": "^1.0.0" + } + }, + "node_modules/vfile-location": { + "version": "2.0.6", + "integrity": "sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "1.1.1", + "integrity": "sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==", + "dependencies": { + "unist-util-stringify-position": "^1.1.1" + } + }, + "node_modules/viewport-mercator-project": { + "version": "6.2.3", + "integrity": "sha512-QQb0/qCLlP4DdfbHHSWVYXpghB2wkLIiiZQnoelOB59mXKQSyZVxjreq1S+gaBJFpcGkWEcyVtre0+2y2DTl/Q==", + "dependencies": { + "@babel/runtime": "^7.0.0", + "gl-matrix": "^3.0.0" + } + }, + "node_modules/vinyl": { + "version": "2.2.1", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dependencies": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-file": { + "version": "3.0.0", + "integrity": "sha1-sQTZ5ECf+jJfqt1SBkLQo7SIs2U=", + "devOptional": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "pify": "^2.3.0", + "strip-bom-buf": "^1.0.0", + "strip-bom-stream": "^2.0.0", + "vinyl": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/vinyl/node_modules/clone": { + "version": "2.1.2", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/vlq": { + "version": "0.2.3", + "integrity": "sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow==" + }, + "node_modules/vm-browserify": { + "version": "1.1.2", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + }, + "node_modules/vt-pbf": { + "version": "3.1.3", + "integrity": "sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==", + "dependencies": { + "@mapbox/point-geometry": "0.1.0", + "@mapbox/vector-tile": "^1.3.1", + "pbf": "^3.2.1" + } + }, + "node_modules/vue-template-compiler": { + "version": "2.6.14", + "integrity": "sha512-ODQS1SyMbjKoO1JBJZojSw6FE4qnh9rIpUZn2EUT86FKizx9uH5z6uXiIrm4/Nb/gwxTi/o17ZDEGWAXHvtC7g==", + "dependencies": { + "de-indent": "^1.0.2", + "he": "^1.1.0" + } + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/walker": { + "version": "1.0.7", + "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "dependencies": { + "makeerror": "1.0.x" + } + }, + "node_modules/warning": { + "version": "4.0.3", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/watchpack": { + "version": "1.7.5", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "dependencies": { + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0" + }, + "optionalDependencies": { + "chokidar": "^3.4.1", + "watchpack-chokidar2": "^2.0.1" + } + }, + "node_modules/watchpack-chokidar2": { + "version": "2.0.1", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "optional": true, + "dependencies": { + "chokidar": "^2.1.8" + } + }, + "node_modules/watchpack-chokidar2/node_modules/anymatch": { + "version": "2.0.0", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "optional": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/watchpack-chokidar2/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "optional": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/binary-extensions": { + "version": "1.13.1", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/braces": { + "version": "2.3.2", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "optional": true, + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/chokidar": { + "version": "2.1.8", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.", + "optional": true, + "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" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fill-range": { + "version": "4.0.0", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "optional": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fsevents": { + "version": "1.2.13", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent": { + "version": "3.1.0", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "optional": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "optional": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-binary-path": { + "version": "1.0.1", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "optional": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "optional": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "optional": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "optional": true + }, + "node_modules/watchpack-chokidar2/node_modules/micromatch": { + "version": "3.1.10", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "optional": true, + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/readable-stream": { + "version": "2.3.7", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "optional": true, + "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" + } + }, + "node_modules/watchpack-chokidar2/node_modules/readdirp": { + "version": "2.2.1", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "optional": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/watchpack-chokidar2/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "optional": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "optional": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/web-namespaces": { + "version": "1.1.4", + "integrity": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/webidl-conversions": { + "version": "6.1.0", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "engines": { + "node": ">=10.4" + } + }, + "node_modules/webpack": { + "version": "4.46.0", + "integrity": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==", + "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.5.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.7.4", + "webpack-sources": "^1.4.1" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + }, + "webpack-command": { + "optional": true + } + } + }, + "node_modules/webpack-bundle-analyzer": { + "version": "3.9.0", + "integrity": "sha512-Ob8amZfCm3rMB1ScjQVlbYYUEJyEjdEtQ92jqiFUYt5VkEeO2v5UMbv49P/gnmCZm3A6yaFQzCBvpZqN4MUsdA==", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1", + "bfj": "^6.1.1", + "chalk": "^2.4.1", + "commander": "^2.18.0", + "ejs": "^2.6.1", + "express": "^4.16.3", + "filesize": "^3.6.1", + "gzip-size": "^5.0.0", + "lodash": "^4.17.19", + "mkdirp": "^0.5.1", + "opener": "^1.5.1", + "ws": "^6.0.0" + }, + "bin": { + "webpack-bundle-analyzer": "lib/bin/analyzer.js" + }, + "engines": { + "node": ">= 6.14.4" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/commander": { + "version": "2.20.3", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/webpack-bundle-analyzer/node_modules/filesize": { + "version": "3.6.1", + "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/ws": { + "version": "6.2.2", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/webpack-cli": { + "version": "3.3.12", + "integrity": "sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==", + "dependencies": { + "chalk": "^2.4.2", + "cross-spawn": "^6.0.5", + "enhanced-resolve": "^4.1.1", + "findup-sync": "^3.0.0", + "global-modules": "^2.0.0", + "import-local": "^2.0.0", + "interpret": "^1.4.0", + "loader-utils": "^1.4.0", + "supports-color": "^6.1.0", + "v8-compile-cache": "^2.1.1", + "yargs": "^13.3.2" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=6.11.5" + }, + "peerDependencies": { + "webpack": "4.x.x" + } + }, + "node_modules/webpack-cli/node_modules/ansi-regex": { + "version": "4.1.0", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-cli/node_modules/cliui": { + "version": "5.0.0", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/webpack-cli/node_modules/cross-spawn": { + "version": "6.0.5", + "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" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/webpack-cli/node_modules/emoji-regex": { + "version": "7.0.3", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "node_modules/webpack-cli/node_modules/enhanced-resolve": { + "version": "4.5.0", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/webpack-cli/node_modules/find-up": { + "version": "3.0.0", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-cli/node_modules/import-local": { + "version": "2.0.0", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-cli/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-cli/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/webpack-cli/node_modules/locate-path": { + "version": "3.0.0", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-cli/node_modules/memory-fs": { + "version": "0.5.0", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/webpack-cli/node_modules/p-limit": { + "version": "2.3.0", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-cli/node_modules/p-locate": { + "version": "3.0.0", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-cli/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-cli/node_modules/path-key": { + "version": "2.0.1", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-cli/node_modules/pkg-dir": { + "version": "3.0.0", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-cli/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/webpack-cli/node_modules/resolve-cwd": { + "version": "2.0.0", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-cli/node_modules/resolve-from": { + "version": "3.0.0", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-cli/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/webpack-cli/node_modules/shebang-command": { + "version": "1.2.0", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-cli/node_modules/shebang-regex": { + "version": "1.0.0", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-cli/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/webpack-cli/node_modules/string-width": { + "version": "3.1.0", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-cli/node_modules/strip-ansi": { + "version": "5.2.0", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-cli/node_modules/supports-color": { + "version": "6.1.0", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-cli/node_modules/tapable": { + "version": "1.1.3", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-cli/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/webpack-cli/node_modules/wrap-ansi": { + "version": "5.1.0", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-cli/node_modules/yargs": { + "version": "13.3.2", + "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" + } + }, + "node_modules/webpack-cli/node_modules/yargs-parser": { + "version": "13.1.2", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/webpack-dev-middleware": { + "version": "3.7.3", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dependencies": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/webpack-dev-middleware/node_modules/memory-fs": { + "version": "0.4.1", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node_modules/webpack-dev-middleware/node_modules/mime": { + "version": "2.5.2", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/webpack-dev-middleware/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/webpack-dev-server": { + "version": "3.11.2", + "integrity": "sha512-A80BkuHRQfCiNtGBS1EMf2ChTUs0x+B3wGDFmOeT4rmJOHhHTCH2naNxIHhmkr0/UillP4U3yeIyv1pNp+QDLQ==", + "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.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.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" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 6.11.5" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-regex": { + "version": "2.1.1", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/anymatch": { + "version": "2.0.0", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/webpack-dev-server/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/binary-extensions": { + "version": "1.13.1", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/braces": { + "version": "2.3.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/chokidar": { + "version": "2.1.8", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.", + "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" + } + }, + "node_modules/webpack-dev-server/node_modules/cliui": { + "version": "5.0.0", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/webpack-dev-server/node_modules/cliui/node_modules/ansi-regex": { + "version": "4.1.0", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/cliui/node_modules/strip-ansi": { + "version": "5.2.0", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/emoji-regex": { + "version": "7.0.3", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "node_modules/webpack-dev-server/node_modules/fill-range": { + "version": "4.0.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/find-up": { + "version": "3.0.0", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/fsevents": { + "version": "1.2.13", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/webpack-dev-server/node_modules/glob-parent": { + "version": "3.1.0", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/webpack-dev-server/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/import-local": { + "version": "2.0.0", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/is-binary-path": { + "version": "1.0.1", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/webpack-dev-server/node_modules/locate-path": { + "version": "3.0.0", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/micromatch": { + "version": "3.1.10", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/p-limit": { + "version": "2.3.0", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-dev-server/node_modules/p-locate": { + "version": "3.0.0", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/pkg-dir": { + "version": "3.0.0", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/webpack-dev-server/node_modules/readdirp": { + "version": "2.2.1", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/webpack-dev-server/node_modules/resolve-cwd": { + "version": "2.0.0", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/resolve-from": { + "version": "3.0.0", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "1.0.0", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/webpack-dev-server/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/webpack-dev-server/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/webpack-dev-server/node_modules/string-width": { + "version": "3.1.0", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/string-width/node_modules/ansi-regex": { + "version": "4.1.0", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/string-width/node_modules/strip-ansi": { + "version": "5.2.0", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/strip-ansi": { + "version": "3.0.1", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/supports-color": { + "version": "6.1.0", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/wrap-ansi": { + "version": "5.1.0", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "4.1.0", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "5.2.0", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "6.2.2", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/webpack-dev-server/node_modules/yargs": { + "version": "13.3.2", + "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" + } + }, + "node_modules/webpack-dev-server/node_modules/yargs-parser": { + "version": "13.1.2", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/webpack-filter-warnings-plugin": { + "version": "1.2.1", + "integrity": "sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==", + "engines": { + "node": ">= 4.3 < 5.0.0 || >= 5.10" + }, + "peerDependencies": { + "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0" + } + }, + "node_modules/webpack-hot-middleware": { + "version": "2.25.1", + "integrity": "sha512-Koh0KyU/RPYwel/khxbsDz9ibDivmUbrRuKSSQvW42KSDdO4w23WI3SkHpSUKHE76LrFnnM/L7JCrpBwu8AXYw==", + "dependencies": { + "ansi-html-community": "0.0.8", + "html-entities": "^2.1.0", + "querystring": "^0.2.0", + "strip-ansi": "^6.0.0" + } + }, + "node_modules/webpack-hot-middleware/node_modules/html-entities": { + "version": "2.3.2", + "integrity": "sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==" + }, + "node_modules/webpack-log": { + "version": "2.0.0", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dependencies": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/webpack-log/node_modules/ansi-colors": { + "version": "3.2.4", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-log/node_modules/uuid": { + "version": "3.4.0", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/webpack-manifest-plugin": { + "version": "2.2.0", + "integrity": "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==", + "dependencies": { + "fs-extra": "^7.0.0", + "lodash": ">=3.5 <5", + "object.entries": "^1.1.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.11.5" + }, + "peerDependencies": { + "webpack": "2 || 3 || 4" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/fs-extra": { + "version": "7.0.1", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/jsonfile": { + "version": "4.0.0", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/tapable": { + "version": "1.1.3", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/universalify": { + "version": "0.1.2", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/webpack-sources": { + "version": "1.4.3", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack-sources/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-virtual-modules": { + "version": "0.2.2", + "integrity": "sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==", + "dependencies": { + "debug": "^3.0.0" + } + }, + "node_modules/webpack-virtual-modules/node_modules/debug": { + "version": "3.2.7", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/webpack/node_modules/acorn": { + "version": "6.4.2", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/webpack/node_modules/braces": { + "version": "2.3.2", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/enhanced-resolve": { + "version": "4.5.0", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/webpack/node_modules/enhanced-resolve/node_modules/memory-fs": { + "version": "0.5.0", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "4.0.3", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dependencies": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/webpack/node_modules/fill-range": { + "version": "4.0.0", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-wsl": { + "version": "1.1.0", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/webpack/node_modules/memory-fs": { + "version": "0.4.1", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node_modules/webpack/node_modules/micromatch": { + "version": "3.1.10", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/readable-stream": { + "version": "2.3.7", + "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" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "1.0.0", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/webpack/node_modules/source-map": { + "version": "0.6.1", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/webpack/node_modules/tapable": { + "version": "1.1.3", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack/node_modules/terser-webpack-plugin": { + "version": "1.4.5", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "dependencies": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/webpack/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/wgs84": { + "version": "0.0.0", + "integrity": "sha1-NP3FVZF7blfPKigu0ENxDASc3HY=" + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.2", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + }, + "node_modules/whatwg-url": { + "version": "8.7.0", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/which": { + "version": "2.0.2", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.0", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + }, + "node_modules/which-pm-runs": { + "version": "1.0.0", + "integrity": "sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=" + }, + "node_modules/wide-align": { + "version": "1.1.5", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/widest-line": { + "version": "3.1.0", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "dependencies": { + "string-width": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wildcard": { + "version": "1.1.2", + "integrity": "sha1-pwIEUwhNjNLv5wup02liY94XEKU=", + "dev": true + }, + "node_modules/windows-release": { + "version": "3.3.3", + "integrity": "sha512-OSOGH1QYiW5yVor9TtmXKQvt2vjQqbYS+DqmsZw+r7xDwLXEeT3JGW0ZppFmHx4diyXmxt238KFR3N9jzevBRg==", + "dependencies": { + "execa": "^1.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/windows-release/node_modules/cross-spawn": { + "version": "6.0.5", + "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" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/windows-release/node_modules/execa": { + "version": "1.0.0", + "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" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/windows-release/node_modules/get-stream": { + "version": "4.1.0", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/windows-release/node_modules/is-stream": { + "version": "1.1.0", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/windows-release/node_modules/npm-run-path": { + "version": "2.0.2", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/windows-release/node_modules/path-key": { + "version": "2.0.1", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "engines": { + "node": ">=4" + } + }, + "node_modules/windows-release/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/windows-release/node_modules/shebang-command": { + "version": "1.2.0", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/windows-release/node_modules/shebang-regex": { + "version": "1.0.0", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/windows-release/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/with-open-file": { + "version": "0.1.7", + "integrity": "sha512-ecJS2/oHtESJ1t3ZfMI3B7KIDKyfN0O16miWxdn30zdh66Yd3LsRFebXZXq6GU4xfxLf6nVxp9kIqElb5fqczA==", + "dependencies": { + "p-finally": "^1.0.0", + "p-try": "^2.1.0", + "pify": "^4.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/with-open-file/node_modules/pify": { + "version": "4.0.1", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" + }, + "node_modules/worker-farm": { + "version": "1.7.0", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dependencies": { + "errno": "~0.1.7" + } + }, + "node_modules/worker-rpc": { + "version": "0.1.1", + "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==", + "dependencies": { + "microevent.ts": "~0.1.1" + } + }, + "node_modules/wrap-ansi": { + "version": "6.2.0", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/write-json-file": { + "version": "3.2.0", + "integrity": "sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==", + "dependencies": { + "detect-indent": "^5.0.0", + "graceful-fs": "^4.1.15", + "make-dir": "^2.1.0", + "pify": "^4.0.1", + "sort-keys": "^2.0.0", + "write-file-atomic": "^2.4.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/write-json-file/node_modules/pify": { + "version": "4.0.1", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/write-json-file/node_modules/write-file-atomic": { + "version": "2.4.3", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/write-pkg": { + "version": "3.2.0", + "integrity": "sha512-tX2ifZ0YqEFOF1wjRW2Pk93NLsj02+n1UP5RvO6rCs0K6R2g1padvf006cY74PQJKMGS2r42NK7FD0dG6Y6paw==", + "dependencies": { + "sort-keys": "^2.0.0", + "write-json-file": "^2.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/write-pkg/node_modules/make-dir": { + "version": "1.3.0", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/write-pkg/node_modules/pify": { + "version": "3.0.0", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "engines": { + "node": ">=4" + } + }, + "node_modules/write-pkg/node_modules/write-file-atomic": { + "version": "2.4.3", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/write-pkg/node_modules/write-json-file": { + "version": "2.3.0", + "integrity": "sha1-K2TIozAE1UuGmMdtWFp3zrYdoy8=", + "dependencies": { + "detect-indent": "^5.0.0", + "graceful-fs": "^4.1.2", + "make-dir": "^1.0.0", + "pify": "^3.0.0", + "sort-keys": "^2.0.0", + "write-file-atomic": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ws": { + "version": "7.5.5", + "integrity": "sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w==", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/x-is-string": { + "version": "0.1.0", + "integrity": "sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI=" + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, + "node_modules/xmlbuilder": { + "version": "10.1.1", + "integrity": "sha512-OyzrcFLL/nb6fMGHbiRDuPup9ljBycsdCypwuyg5AAHvyWzGfChJpCXMG88AGTIMFhGZ9RccFN1e6lhg3hkwKg==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "node_modules/xss": { + "version": "1.0.10", + "integrity": "sha512-qmoqrRksmzqSKvgqzN0055UFWY7OKx1/9JWeRswwEVX9fCG5jcYRxa/A2DHcmZX6VJvjzHRQ2STeeVcQkrmLSw==", + "dependencies": { + "commander": "^2.20.3", + "cssfilter": "0.0.10" + }, + "bin": { + "xss": "bin/xss" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/xss/node_modules/commander": { + "version": "2.20.3", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/xtend": { + "version": "4.0.2", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "4.0.3", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + }, + "node_modules/yallist": { + "version": "4.0.0", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/yaml": { + "version": "1.10.2", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "15.4.1", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.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": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs-parser": { + "version": "18.1.3", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yarn-or-npm": { + "version": "3.0.1", + "integrity": "sha512-fTiQP6WbDAh5QZAVdbMQkecZoahnbOjClTQhzv74WX5h2Uaidj1isf9FDes11TKtsZ0/ZVfZsqZ+O3x6aLERHQ==", + "dev": true, + "dependencies": { + "cross-spawn": "^6.0.5", + "pkg-dir": "^4.2.0" + }, + "bin": { + "yarn-or-npm": "bin/index.js", + "yon": "bin/index.js" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/yarn-or-npm/node_modules/cross-spawn": { + "version": "6.0.5", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/yarn-or-npm/node_modules/path-key": { + "version": "2.0.1", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/yarn-or-npm/node_modules/pkg-dir": { + "version": "4.2.0", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yarn-or-npm/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/yarn-or-npm/node_modules/shebang-command": { + "version": "1.2.0", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yarn-or-npm/node_modules/shebang-regex": { + "version": "1.0.0", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yarn-or-npm/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/yeoman-assert": { + "version": "3.1.1", + "integrity": "sha512-bCuLb/j/WzpvrJZCTdJJLFzm7KK8IYQJ3+dF9dYtNs2CUYyezFJDuULiZ2neM4eqjf45GN1KH/MzCTT3i90wUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/yeoman-environment": { + "version": "2.10.3", + "integrity": "sha512-pLIhhU9z/G+kjOXmJ2bPFm3nejfbH+f1fjYRSOteEXDBrv1EoJE/e+kuHixSXfCYfTkxjYsvRaDX+1QykLCnpQ==", + "devOptional": true, + "dependencies": { + "chalk": "^2.4.1", + "debug": "^3.1.0", + "diff": "^3.5.0", + "escape-string-regexp": "^1.0.2", + "execa": "^4.0.0", + "globby": "^8.0.1", + "grouped-queue": "^1.1.0", + "inquirer": "^7.1.0", + "is-scoped": "^1.0.0", + "lodash": "^4.17.10", + "log-symbols": "^2.2.0", + "mem-fs": "^1.1.0", + "mem-fs-editor": "^6.0.0", + "npm-api": "^1.0.0", + "semver": "^7.1.3", + "strip-ansi": "^4.0.0", + "text-table": "^0.2.0", + "untildify": "^3.0.3", + "yeoman-generator": "^4.8.2" + } + }, + "node_modules/yeoman-environment/node_modules/@nodelib/fs.stat": { + "version": "1.1.3", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", + "devOptional": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/yeoman-environment/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "devOptional": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/yeoman-environment/node_modules/array-differ": { + "version": "3.0.0", + "integrity": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==", + "devOptional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/yeoman-environment/node_modules/array-union": { + "version": "1.0.2", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "devOptional": true, + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yeoman-environment/node_modules/braces": { + "version": "2.3.2", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "devOptional": true, + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yeoman-environment/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "devOptional": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yeoman-environment/node_modules/cli-cursor": { + "version": "3.1.0", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "devOptional": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yeoman-environment/node_modules/cli-width": { + "version": "3.0.0", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "devOptional": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/yeoman-environment/node_modules/debug": { + "version": "3.2.7", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "devOptional": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/yeoman-environment/node_modules/diff": { + "version": "3.5.0", + "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", + "devOptional": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/yeoman-environment/node_modules/dir-glob": { + "version": "2.0.0", + "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==", + "devOptional": true, + "dependencies": { + "arrify": "^1.0.1", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yeoman-environment/node_modules/escape-string-regexp": { + "version": "1.0.5", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "devOptional": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/yeoman-environment/node_modules/fast-glob": { + "version": "2.2.7", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", + "devOptional": true, + "dependencies": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/yeoman-environment/node_modules/fill-range": { + "version": "4.0.0", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "devOptional": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yeoman-environment/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "devOptional": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yeoman-environment/node_modules/glob-parent": { + "version": "3.1.0", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "devOptional": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/yeoman-environment/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "devOptional": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yeoman-environment/node_modules/globby": { + "version": "8.0.2", + "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", + "devOptional": true, + "dependencies": { + "array-union": "^1.0.1", + "dir-glob": "2.0.0", + "fast-glob": "^2.0.2", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yeoman-environment/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "devOptional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/yeoman-environment/node_modules/ignore": { + "version": "3.3.10", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", + "devOptional": true + }, + "node_modules/yeoman-environment/node_modules/inquirer": { + "version": "7.3.3", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "devOptional": true, + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/yeoman-environment/node_modules/inquirer/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "devOptional": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/yeoman-environment/node_modules/inquirer/node_modules/strip-ansi": { + "version": "6.0.1", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "devOptional": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yeoman-environment/node_modules/is-extendable": { + "version": "0.1.1", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "devOptional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yeoman-environment/node_modules/is-number": { + "version": "3.0.0", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "devOptional": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yeoman-environment/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "devOptional": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yeoman-environment/node_modules/log-symbols": { + "version": "2.2.0", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "devOptional": true, + "dependencies": { + "chalk": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yeoman-environment/node_modules/mem-fs-editor": { + "version": "6.0.0", + "integrity": "sha512-e0WfJAMm8Gv1mP5fEq/Blzy6Lt1VbLg7gNnZmZak7nhrBTibs+c6nQ4SKs/ZyJYHS1mFgDJeopsLAv7Ow0FMFg==", + "devOptional": true, + "dependencies": { + "commondir": "^1.0.1", + "deep-extend": "^0.6.0", + "ejs": "^2.6.1", + "glob": "^7.1.4", + "globby": "^9.2.0", + "isbinaryfile": "^4.0.0", + "mkdirp": "^0.5.0", + "multimatch": "^4.0.0", + "rimraf": "^2.6.3", + "through2": "^3.0.1", + "vinyl": "^2.2.0" + } + }, + "node_modules/yeoman-environment/node_modules/mem-fs-editor/node_modules/dir-glob": { + "version": "2.2.2", + "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", + "devOptional": true, + "dependencies": { + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yeoman-environment/node_modules/mem-fs-editor/node_modules/globby": { + "version": "9.2.0", + "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==", + "devOptional": true, + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yeoman-environment/node_modules/mem-fs-editor/node_modules/ignore": { + "version": "4.0.6", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "devOptional": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/yeoman-environment/node_modules/mem-fs-editor/node_modules/pify": { + "version": "4.0.1", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "devOptional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yeoman-environment/node_modules/mem-fs-editor/node_modules/slash": { + "version": "2.0.0", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "devOptional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yeoman-environment/node_modules/micromatch": { + "version": "3.1.10", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "devOptional": true, + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yeoman-environment/node_modules/multimatch": { + "version": "4.0.0", + "integrity": "sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==", + "devOptional": true, + "dependencies": { + "@types/minimatch": "^3.0.3", + "array-differ": "^3.0.0", + "array-union": "^2.1.0", + "arrify": "^2.0.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yeoman-environment/node_modules/multimatch/node_modules/array-union": { + "version": "2.1.0", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "devOptional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/yeoman-environment/node_modules/multimatch/node_modules/arrify": { + "version": "2.0.1", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "devOptional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/yeoman-environment/node_modules/mute-stream": { + "version": "0.0.8", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "devOptional": true + }, + "node_modules/yeoman-environment/node_modules/path-type": { + "version": "3.0.0", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "devOptional": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yeoman-environment/node_modules/pify": { + "version": "3.0.0", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "devOptional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/yeoman-environment/node_modules/restore-cursor": { + "version": "3.1.0", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "devOptional": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yeoman-environment/node_modules/rimraf": { + "version": "2.7.1", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "devOptional": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/yeoman-environment/node_modules/slash": { + "version": "1.0.0", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", + "devOptional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yeoman-environment/node_modules/strip-ansi": { + "version": "4.0.0", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "devOptional": true, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yeoman-environment/node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "3.0.0", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "devOptional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/yeoman-environment/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "devOptional": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yeoman-environment/node_modules/through2": { + "version": "3.0.2", + "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", + "devOptional": true, + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" + } + }, + "node_modules/yeoman-environment/node_modules/to-regex-range": { + "version": "2.1.1", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "devOptional": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yeoman-generator": { + "version": "4.13.0", + "integrity": "sha512-f2/5N5IR3M2Ozm+QocvZQudlQITv2DwI6Mcxfy7R7gTTzaKgvUpgo/pQMJ+WQKm0KN0YMWCFOZpj0xFGxevc1w==", + "dependencies": { + "async": "^2.6.2", + "chalk": "^2.4.2", + "cli-table": "^0.3.1", + "cross-spawn": "^6.0.5", + "dargs": "^6.1.0", + "dateformat": "^3.0.3", + "debug": "^4.1.1", + "diff": "^4.0.1", + "error": "^7.0.2", + "find-up": "^3.0.0", + "github-username": "^3.0.0", + "istextorbinary": "^2.5.1", + "lodash": "^4.17.11", + "make-dir": "^3.0.0", + "mem-fs-editor": "^7.0.1", + "minimist": "^1.2.5", + "pretty-bytes": "^5.2.0", + "read-chunk": "^3.2.0", + "read-pkg-up": "^5.0.0", + "rimraf": "^2.6.3", + "run-async": "^2.0.0", + "semver": "^7.2.1", + "shelljs": "^0.8.4", + "text-table": "^0.2.0", + "through2": "^3.0.1" + }, + "engines": { + "node": ">=10" + }, + "optionalDependencies": { + "grouped-queue": "^1.1.0", + "yeoman-environment": "^2.9.5" + } + }, + "node_modules/yeoman-generator/node_modules/cross-spawn": { + "version": "6.0.5", + "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" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/yeoman-generator/node_modules/cross-spawn/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/yeoman-generator/node_modules/dargs": { + "version": "6.1.0", + "integrity": "sha512-5dVBvpBLBnPwSsYXqfybFyehMmC/EenKEcf23AhCTgTf48JFBbmJKqoZBsERDnjL0FyiVTYWdFsRfTLHxLyKdQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/yeoman-generator/node_modules/find-up": { + "version": "3.0.0", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yeoman-generator/node_modules/hosted-git-info": { + "version": "2.8.9", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/yeoman-generator/node_modules/locate-path": { + "version": "3.0.0", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yeoman-generator/node_modules/make-dir": { + "version": "3.1.0", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yeoman-generator/node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/yeoman-generator/node_modules/minimist": { + "version": "1.2.5", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "node_modules/yeoman-generator/node_modules/normalize-package-data": { + "version": "2.5.0", + "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" + } + }, + "node_modules/yeoman-generator/node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.1", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/yeoman-generator/node_modules/p-limit": { + "version": "2.3.0", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yeoman-generator/node_modules/p-locate": { + "version": "3.0.0", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yeoman-generator/node_modules/parse-json": { + "version": "5.2.0", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yeoman-generator/node_modules/path-exists": { + "version": "3.0.0", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/yeoman-generator/node_modules/path-key": { + "version": "2.0.1", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "engines": { + "node": ">=4" + } + }, + "node_modules/yeoman-generator/node_modules/read-pkg": { + "version": "5.2.0", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yeoman-generator/node_modules/read-pkg-up": { + "version": "5.0.0", + "integrity": "sha512-XBQjqOBtTzyol2CpsQOw8LHV0XbDZVG7xMMjmXAJomlVY03WOBRmYgDJETlvcg0H63AJvPRwT7GFi5rvOzUOKg==", + "dependencies": { + "find-up": "^3.0.0", + "read-pkg": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yeoman-generator/node_modules/rimraf": { + "version": "2.7.1", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/yeoman-generator/node_modules/shebang-command": { + "version": "1.2.0", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yeoman-generator/node_modules/shebang-regex": { + "version": "1.0.0", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yeoman-generator/node_modules/shelljs": { + "version": "0.8.4", + "integrity": "sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==", + "dependencies": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yeoman-generator/node_modules/through2": { + "version": "3.0.2", + "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" + } + }, + "node_modules/yeoman-generator/node_modules/type-fest": { + "version": "0.6.0", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/yeoman-generator/node_modules/which": { + "version": "1.3.1", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/yeoman-test": { + "version": "2.7.0", + "integrity": "sha512-NNH3XYaeiYO9gWdQ2B02kZuLZnbYZhGqcqrUjyS5VW/r1xOuJ9t6FIzw7uE35/yCx+U9R0kzeTbxkQ6Iwsv3DA==", + "dev": true, + "dependencies": { + "inquirer": "^7.1.0", + "lodash": "^4.17.15", + "mem-fs": "^1.2.0", + "mem-fs-editor": "^7.0.1", + "mkdirp": "^1.0.3", + "rimraf": "^3.0.2", + "sinon": "^9.0.1", + "yeoman-environment": "^2.10.0", + "yeoman-generator": "^4.10.0" + } + }, + "node_modules/yeoman-test/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/yeoman-test/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/yeoman-test/node_modules/cli-cursor": { + "version": "3.1.0", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yeoman-test/node_modules/cli-width": { + "version": "3.0.0", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/yeoman-test/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/yeoman-test/node_modules/inquirer": { + "version": "7.3.3", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/yeoman-test/node_modules/mkdirp": { + "version": "1.0.4", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yeoman-test/node_modules/mute-stream": { + "version": "0.0.8", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "node_modules/yeoman-test/node_modules/restore-cursor": { + "version": "3.1.0", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yeoman-test/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yosay": { + "version": "2.0.2", + "integrity": "sha512-avX6nz2esp7IMXGag4gu6OyQBsMh/SEn+ZybGu3yKPlOTE6z9qJrzG/0X5vCq/e0rPFy0CUYCze0G5hL310ibA==", + "dependencies": { + "ansi-regex": "^2.0.0", + "ansi-styles": "^3.0.0", + "chalk": "^1.0.0", + "cli-boxes": "^1.0.0", + "pad-component": "0.0.1", + "string-width": "^2.0.0", + "strip-ansi": "^3.0.0", + "taketalk": "^1.0.0", + "wrap-ansi": "^2.0.0" + }, + "bin": { + "yosay": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yosay/node_modules/ansi-regex": { + "version": "2.1.1", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yosay/node_modules/chalk": { + "version": "1.1.3", + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yosay/node_modules/chalk/node_modules/ansi-styles": { + "version": "2.2.1", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yosay/node_modules/escape-string-regexp": { + "version": "1.0.5", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/yosay/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "engines": { + "node": ">=4" + } + }, + "node_modules/yosay/node_modules/string-width": { + "version": "2.1.1", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yosay/node_modules/string-width/node_modules/ansi-regex": { + "version": "3.0.0", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "engines": { + "node": ">=4" + } + }, + "node_modules/yosay/node_modules/string-width/node_modules/strip-ansi": { + "version": "4.0.0", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yosay/node_modules/strip-ansi": { + "version": "3.0.1", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yosay/node_modules/supports-color": { + "version": "2.0.0", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/yosay/node_modules/wrap-ansi": { + "version": "2.1.0", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yosay/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yosay/node_modules/wrap-ansi/node_modules/string-width": { + "version": "1.0.2", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/zrender": { + "version": "5.2.1", + "integrity": "sha512-M3bPGZuyLTNBC6LiNKXJwSCtglMp8XUEqEBG+2MdICDI3d1s500Y4P0CzldQGsqpRVB7fkvf3BKQQRxsEaTlsw==", + "dependencies": { + "tslib": "2.3.0" + } + }, + "node_modules/zrender/node_modules/tslib": { + "version": "2.3.0", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + }, + "node_modules/zwitch": { + "version": "1.0.5", + "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "packages/generator-superset": { + "name": "@superset-ui/generator-superset", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "chalk": "^4.0.0", + "lodash": "^4.17.11", + "yeoman-generator": "^4.0.0", + "yosay": "^2.0.2" + }, + "devDependencies": { + "yeoman-assert": "^3.1.0", + "yeoman-test": "^2.0.0" + }, + "engines": { + "npm": ">= 4.0.0" + } + }, + "packages/generator-superset/node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "packages/generator-superset/node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "packages/generator-superset/node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "packages/generator-superset/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "packages/superset-ui-chart-controls": { + "name": "@superset-ui/chart-controls", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@react-icons/all-files": "^4.1.0", + "@superset-ui/core": "0.18.25", + "lodash": "^4.17.15", + "prop-types": "^15.7.2" + }, + "peerDependencies": { + "@emotion/react": "^11.4.1", + "@types/react": "*", + "antd": "^4.9.4", + "react": "^16.13.1", + "react-dom": "^16.13.1" + } + }, + "packages/superset-ui-core": { + "name": "@superset-ui/core", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@babel/runtime": "^7.1.2", + "@types/d3-format": "^1.3.0", + "@types/d3-interpolate": "^1.3.1", + "@types/d3-scale": "^2.1.1", + "@types/d3-time": "^1.0.9", + "@types/d3-time-format": "^2.1.0", + "@types/lodash": "^4.14.149", + "@types/math-expression-evaluator": "^1.2.1", + "@types/rison": "0.0.6", + "@types/seedrandom": "^2.4.28", + "@vx/responsive": "^0.0.199", + "csstype": "^2.6.4", + "d3-format": "^1.3.2", + "d3-interpolate": "^1.4.0", + "d3-scale": "^3.0.0", + "d3-time": "^1.0.10", + "d3-time-format": "^2.2.0", + "fetch-retry": "^4.0.1", + "jed": "^1.1.1", + "lodash": "^4.17.11", + "math-expression-evaluator": "^1.3.8", + "pretty-ms": "^7.0.0", + "react-error-boundary": "^1.2.5", + "react-markdown": "^4.3.1", + "reselect": "^4.0.0", + "rison": "^0.1.1", + "seedrandom": "^3.0.5", + "whatwg-fetch": "^3.0.0" + }, + "devDependencies": { + "@emotion/styled": "^11.3.0", + "@types/fetch-mock": "^7.3.3", + "fetch-mock": "^6.5.2", + "jest-mock-console": "^1.0.0" + }, + "peerDependencies": { + "@emotion/cache": "^11.4.0", + "@emotion/react": "^11.4.1", + "@emotion/styled": "^11.3.0", + "@types/react": "*", + "@types/react-loadable": "*", + "react": "^16.13.1", + "react-loadable": "^5.5.0" + } + }, + "packages/superset-ui-core/node_modules/pretty-ms": { + "version": "7.0.1", + "integrity": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==", + "dependencies": { + "parse-ms": "^2.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "packages/superset-ui-demo": { + "name": "@superset-ui/demo", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@data-ui/event-flow": "^0.0.84", + "@emotion/cache": "^11.4.0", + "@emotion/react": "^11.4.1", + "@emotion/styled": "^11.3.0", + "@react-icons/all-files": "^4.1.0", + "@storybook/addon-actions": "^6.3.12", + "@storybook/addon-knobs": "^6.3.1", + "@storybook/addon-links": "^6.3.12", + "@storybook/addons": "^6.3.12", + "@storybook/react": "^6.3.12", + "@superset-ui/core": "0.18.25", + "@superset-ui/legacy-plugin-chart-calendar": "0.18.25", + "@superset-ui/legacy-plugin-chart-chord": "0.18.25", + "@superset-ui/legacy-plugin-chart-country-map": "0.18.25", + "@superset-ui/legacy-plugin-chart-event-flow": "0.18.25", + "@superset-ui/legacy-plugin-chart-force-directed": "0.18.25", + "@superset-ui/legacy-plugin-chart-heatmap": "0.18.25", + "@superset-ui/legacy-plugin-chart-histogram": "0.18.25", + "@superset-ui/legacy-plugin-chart-horizon": "0.18.25", + "@superset-ui/legacy-plugin-chart-map-box": "0.18.25", + "@superset-ui/legacy-plugin-chart-paired-t-test": "0.18.25", + "@superset-ui/legacy-plugin-chart-parallel-coordinates": "0.18.25", + "@superset-ui/legacy-plugin-chart-partition": "0.18.25", + "@superset-ui/legacy-plugin-chart-pivot-table": "0.18.25", + "@superset-ui/legacy-plugin-chart-rose": "0.18.25", + "@superset-ui/legacy-plugin-chart-sankey": "0.18.25", + "@superset-ui/legacy-plugin-chart-sankey-loop": "0.18.25", + "@superset-ui/legacy-plugin-chart-sunburst": "0.18.25", + "@superset-ui/legacy-plugin-chart-time-table": "0.18.25", + "@superset-ui/legacy-plugin-chart-treemap": "0.18.25", + "@superset-ui/legacy-plugin-chart-world-map": "0.18.25", + "@superset-ui/legacy-preset-chart-big-number": "0.18.25", + "@superset-ui/legacy-preset-chart-nvd3": "0.18.25", + "@superset-ui/plugin-chart-echarts": "0.18.25", + "@superset-ui/plugin-chart-table": "0.18.25", + "@superset-ui/plugin-chart-word-cloud": "0.18.25", + "@superset-ui/preset-chart-xy": "0.18.25", + "@types/react-loadable": "^5.5.3", + "antd": "^4.9.4", + "bootstrap": "^3.4.1", + "core-js": "3.8.3", + "gh-pages": "^3.0.0", + "global-box": "^1.2.0", + "jquery": "^3.4.1", + "memoize-one": "^5.1.1", + "react": "^16.13.1", + "react-dom": "^16.13.1", + "react-loadable": "^5.5.0", + "react-resizable": "^3.0.4", + "storybook-addon-jsx": "^7.3.14" + }, + "devDependencies": { + "@babel/core": "^7.9.0", + "babel-loader": "^8.1.0", + "chromatic": "^5.4.0", + "fork-ts-checker-webpack-plugin": "^5.0.7", + "ts-loader": "^7.0.4", + "typescript": "^3.8.3" + }, + "peerDependencies": { + "@encodable/color": "=1.1.1" + } + }, + "packages/superset-ui-demo/node_modules/enhanced-resolve": { + "version": "4.5.0", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "packages/superset-ui-demo/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "packages/superset-ui-demo/node_modules/memory-fs": { + "version": "0.5.0", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "packages/superset-ui-demo/node_modules/readable-stream": { + "version": "2.3.7", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "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" + } + }, + "packages/superset-ui-demo/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "packages/superset-ui-demo/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "packages/superset-ui-demo/node_modules/tapable": { + "version": "1.1.3", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "packages/superset-ui-demo/node_modules/ts-loader": { + "version": "7.0.5", + "integrity": "sha512-zXypEIT6k3oTc+OZNx/cqElrsbBtYqDknf48OZos0NQ3RTt045fBIU8RRSu+suObBzYB355aIPGOe/3kj9h7Ig==", + "dev": true, + "dependencies": { + "chalk": "^2.3.0", + "enhanced-resolve": "^4.0.0", + "loader-utils": "^1.0.2", + "micromatch": "^4.0.0", + "semver": "^6.0.0" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "typescript": "*" + } + }, + "packages/superset-ui-demo/node_modules/typescript": { + "version": "3.9.10", + "integrity": "sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "plugins/legacy-plugin-chart-calendar": { + "name": "@superset-ui/legacy-plugin-chart-calendar", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3-array": "^2.0.3", + "d3-selection": "^1.4.0", + "d3-tip": "^0.9.1", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^16.13.1" + } + }, + "plugins/legacy-plugin-chart-calendar/node_modules/d3-array": { + "version": "2.12.1", + "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", + "dependencies": { + "internmap": "^1.0.0" + } + }, + "plugins/legacy-plugin-chart-chord": { + "name": "@superset-ui/legacy-plugin-chart-chord", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "prop-types": "^15.6.2", + "react": "^16.13.1" + } + }, + "plugins/legacy-plugin-chart-country-map": { + "name": "@superset-ui/legacy-plugin-chart-country-map", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-array": "^2.0.3", + "prop-types": "^15.6.2" + } + }, + "plugins/legacy-plugin-chart-country-map/node_modules/d3-array": { + "version": "2.12.1", + "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", + "dependencies": { + "internmap": "^1.0.0" + } + }, + "plugins/legacy-plugin-chart-event-flow": { + "name": "@superset-ui/legacy-plugin-chart-event-flow", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@data-ui/event-flow": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^15 || ^16" + } + }, + "plugins/legacy-plugin-chart-force-directed": { + "name": "@superset-ui/legacy-plugin-chart-force-directed", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "prop-types": "^15.7.2" + }, + "peerDependencies": { + "react": "^16.13.1" + } + }, + "plugins/legacy-plugin-chart-heatmap": { + "name": "@superset-ui/legacy-plugin-chart-heatmap", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-svg-legend": "^1.x", + "d3-tip": "^0.9.1", + "prop-types": "^15.6.2" + } + }, + "plugins/legacy-plugin-chart-histogram": { + "name": "@superset-ui/legacy-plugin-chart-histogram", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@data-ui/histogram": "^0.0.84", + "@data-ui/theme": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@vx/legend": "^0.0.198", + "@vx/responsive": "^0.0.199", + "@vx/scale": "^0.0.197", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^15 || ^16" + } + }, + "plugins/legacy-plugin-chart-histogram/node_modules/@vx/group": { + "version": "0.0.198", + "integrity": "sha512-0PivE+fWZlPkSzFO/is5m4VSSv3pg+sS1yxYAZHbNffUvn472WDWptriHvoUIPQe0lOXhTSrc73UQzew9GtW/g==", + "dependencies": { + "@types/classnames": "^2.2.9", + "@types/react": "*", + "classnames": "^2.2.5", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "plugins/legacy-plugin-chart-histogram/node_modules/@vx/legend": { + "version": "0.0.198", + "integrity": "sha512-3S2/yP6IvkkhUlTj6In5M1OrzY1OaT1D06hRxuiOLAbaXTerhbUGwIjGSNoovQM6JebFlbWnnA5xH1SKgw5GGA==", + "dependencies": { + "@types/classnames": "^2.2.9", + "@types/d3-scale": "^2.1.1", + "@types/react": "*", + "@vx/group": "0.0.198", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^16.3.0-0" + } + }, + "plugins/legacy-plugin-chart-histogram/node_modules/@vx/scale": { + "version": "0.0.197", + "integrity": "sha512-FF0POm9rh66I3Om5DsuxynwWU+Q645aTF47vgP2dVDeOOq3Oet7CZzmXLDh3W6nVcxvzq1UdPwu94dto2PUfhg==", + "dependencies": { + "@types/d3-scale": "^2.1.1", + "d3-scale": "^2.2.2" + } + }, + "plugins/legacy-plugin-chart-histogram/node_modules/d3-scale": { + "version": "2.2.2", + "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" + } + }, + "plugins/legacy-plugin-chart-horizon": { + "name": "@superset-ui/legacy-plugin-chart-horizon", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3-array": "^2.0.3", + "d3-scale": "^3.0.1", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^15 || ^16" + } + }, + "plugins/legacy-plugin-chart-horizon/node_modules/d3-array": { + "version": "2.12.1", + "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", + "dependencies": { + "internmap": "^1.0.0" + } + }, + "plugins/legacy-plugin-chart-map-box": { + "name": "@superset-ui/legacy-plugin-chart-map-box", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "mapbox-gl": "^0.53.0", + "prop-types": "^15.6.2", + "react-map-gl": "^4.0.10", + "supercluster": "^4.1.1", + "viewport-mercator-project": "^6.1.1" + }, + "peerDependencies": { + "react": "^15 || ^16" + } + }, + "plugins/legacy-plugin-chart-paired-t-test": { + "name": "@superset-ui/legacy-plugin-chart-paired-t-test", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "distributions": "^1.0.0", + "prop-types": "^15.6.2", + "reactable": "^1.1.0" + }, + "peerDependencies": { + "react": "^15 || ^16" + } + }, + "plugins/legacy-plugin-chart-parallel-coordinates": { + "name": "@superset-ui/legacy-plugin-chart-parallel-coordinates", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "prop-types": "^15.7.2" + }, + "peerDependencies": { + "react": "^16.13.1" + } + }, + "plugins/legacy-plugin-chart-partition": { + "name": "@superset-ui/legacy-plugin-chart-partition", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-hierarchy": "^1.1.8", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^16.13.1" + } + }, + "plugins/legacy-plugin-chart-pivot-table": { + "name": "@superset-ui/legacy-plugin-chart-pivot-table", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "datatables.net-bs": "^1.11.3", + "prop-types": "^15.6.2" + } + }, + "plugins/legacy-plugin-chart-rose": { + "name": "@superset-ui/legacy-plugin-chart-rose", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "nvd3": "1.8.6", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^16.13.1" + } + }, + "plugins/legacy-plugin-chart-sankey": { + "name": "@superset-ui/legacy-plugin-chart-sankey", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-sankey": "^0.4.2", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^16.13.1" + } + }, + "plugins/legacy-plugin-chart-sankey-loop": { + "name": "@superset-ui/legacy-plugin-chart-sankey-loop", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3-sankey-diagram": "^0.7.3", + "d3-selection": "^1.4.0", + "prop-types": "^15.6.2" + } + }, + "plugins/legacy-plugin-chart-sunburst": { + "name": "@superset-ui/legacy-plugin-chart-sunburst", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "prop-types": "^15.6.2" + } + }, + "plugins/legacy-plugin-chart-time-table": { + "name": "@superset-ui/legacy-plugin-chart-time-table", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@data-ui/sparkline": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@types/d3-scale": "^2.0.2", + "d3-scale": "^3.2.1", + "moment": "^2.26.0", + "mustache": "^4.0.1", + "prop-types": "^15.7.2", + "reactable-arc": "^0.15.0" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.3.1" + } + }, + "plugins/legacy-plugin-chart-treemap": { + "name": "@superset-ui/legacy-plugin-chart-treemap", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3-hierarchy": "^1.1.8", + "d3-selection": "^1.4.0", + "prop-types": "^15.6.2" + } + }, + "plugins/legacy-plugin-chart-world-map": { + "name": "@superset-ui/legacy-plugin-chart-world-map", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-array": "^2.4.0", + "d3-color": "^1.4.1", + "datamaps": "^0.5.8", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^16.13.1" + } + }, + "plugins/legacy-plugin-chart-world-map/node_modules/d3-array": { + "version": "2.12.1", + "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", + "dependencies": { + "internmap": "^1.0.0" + } + }, + "plugins/legacy-preset-chart-big-number": { + "name": "@superset-ui/legacy-preset-chart-big-number", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@data-ui/xy-chart": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@types/d3-color": "^1.2.2", + "@types/shortid": "^0.0.29", + "d3-color": "^1.2.3", + "shortid": "^2.2.14" + }, + "peerDependencies": { + "react": "^15 || ^16" + } + }, + "plugins/legacy-preset-chart-nvd3": { + "name": "@superset-ui/legacy-preset-chart-nvd3", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@data-ui/xy-chart": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-tip": "^0.9.1", + "dompurify": "^2.0.6", + "fast-safe-stringify": "^2.0.6", + "lodash": "^4.17.11", + "moment": "^2.20.1", + "nvd3-fork": "^2.0.5", + "prop-types": "^15.6.2", + "urijs": "^1.18.10" + }, + "peerDependencies": { + "react": "^15 || ^16" + } + }, + "plugins/plugin-chart-echarts": { + "name": "@superset-ui/plugin-chart-echarts", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3-array": "^1.2.0", + "echarts": "^5.2.2", + "lodash": "^4.17.15" + }, + "peerDependencies": { + "react": "^16.13.1" + } + }, + "plugins/plugin-chart-pivot-table": { + "name": "@superset-ui/plugin-chart-pivot-table", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@superset-ui/react-pivottable": "^0.12.12" + }, + "devDependencies": { + "@babel/types": "^7.13.12", + "@types/jest": "^26.0.0", + "jest": "^26.0.1" + }, + "peerDependencies": { + "@ant-design/icons": "^4.2.2", + "react": "^16.13.1", + "react-dom": "^16.13.1" + } + }, + "plugins/plugin-chart-table": { + "name": "@superset-ui/plugin-chart-table", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@react-icons/all-files": "^4.1.0", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@types/d3-array": "^2.9.0", + "@types/react-table": "^7.0.29", + "d3-array": "^2.4.0", + "match-sorter": "^6.3.0", + "memoize-one": "^5.1.1", + "react-table": "^7.6.3", + "regenerator-runtime": "^0.13.7", + "xss": "^1.0.8" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.13.1", + "react-dom": "^16.13.1" + } + }, + "plugins/plugin-chart-table/node_modules/d3-array": { + "version": "2.12.1", + "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", + "dependencies": { + "internmap": "^1.0.0" + } + }, + "plugins/plugin-chart-word-cloud": { + "name": "@superset-ui/plugin-chart-word-cloud", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@types/d3-cloud": "^1.2.1", + "@types/d3-scale": "^2.0.2", + "d3-cloud": "^1.2.5", + "d3-scale": "^3.0.1", + "encodable": "^0.7.6" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.13.1" + } + }, + "plugins/preset-chart-xy": { + "name": "@superset-ui/preset-chart-xy", + "version": "0.18.25", + "license": "Apache-2.0", + "dependencies": { + "@data-ui/theme": "^0.0.84", + "@data-ui/xy-chart": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@vx/axis": "^0.0.198", + "@vx/legend": "^0.0.198", + "@vx/scale": "^0.0.197", + "csstype": "^2.6.3", + "encodable": "^0.7.6", + "lodash": "^4.17.11", + "reselect": "^4.0.0" + }, + "peerDependencies": { + "react": "^16.2" + } + }, + "plugins/preset-chart-xy/node_modules/@vx/axis": { + "version": "0.0.198", + "integrity": "sha512-XqHzGOBgkJD8gR1g9F7uOhT4Sjlwpl/H3xLehtDooRmKf3J0hy8C7L5rCgh7n8ARi+vYg+3A1zUo0JBIO5k4PQ==", + "dependencies": { + "@types/classnames": "^2.2.9", + "@types/react": "*", + "@vx/group": "0.0.198", + "@vx/point": "0.0.198", + "@vx/shape": "0.0.198", + "@vx/text": "0.0.198", + "classnames": "^2.2.5", + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "react": "^16.3.0-0" + } + }, + "plugins/preset-chart-xy/node_modules/@vx/curve": { + "version": "0.0.198", + "integrity": "sha512-ZINtD0t5eLu3bEeaOWZxGXrHK5WCbGoxDdou7yPWD6xg8kpTD4/Vq0adRFNCxS1TZUlUjCJ2KqY2PmewO+Hdcw==", + "dependencies": { + "@types/d3-shape": "^1.3.1", + "d3-shape": "^1.0.6" + } + }, + "plugins/preset-chart-xy/node_modules/@vx/group": { + "version": "0.0.198", + "integrity": "sha512-0PivE+fWZlPkSzFO/is5m4VSSv3pg+sS1yxYAZHbNffUvn472WDWptriHvoUIPQe0lOXhTSrc73UQzew9GtW/g==", + "dependencies": { + "@types/classnames": "^2.2.9", + "@types/react": "*", + "classnames": "^2.2.5", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^15.0.0-0 || ^16.0.0-0" + } + }, + "plugins/preset-chart-xy/node_modules/@vx/legend": { + "version": "0.0.198", + "integrity": "sha512-3S2/yP6IvkkhUlTj6In5M1OrzY1OaT1D06hRxuiOLAbaXTerhbUGwIjGSNoovQM6JebFlbWnnA5xH1SKgw5GGA==", + "dependencies": { + "@types/classnames": "^2.2.9", + "@types/d3-scale": "^2.1.1", + "@types/react": "*", + "@vx/group": "0.0.198", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^16.3.0-0" + } + }, + "plugins/preset-chart-xy/node_modules/@vx/point": { + "version": "0.0.198", + "integrity": "sha512-oFlw8uBLf4JDX7OJc+7eQXcnlLszdQgEs531u0t6HNpARQY/jTeeMLVUlp8sNF0XBOC+iVHU8Qe8TJdz/ONBAA==" + }, + "plugins/preset-chart-xy/node_modules/@vx/scale": { + "version": "0.0.197", + "integrity": "sha512-FF0POm9rh66I3Om5DsuxynwWU+Q645aTF47vgP2dVDeOOq3Oet7CZzmXLDh3W6nVcxvzq1UdPwu94dto2PUfhg==", + "dependencies": { + "@types/d3-scale": "^2.1.1", + "d3-scale": "^2.2.2" + } + }, + "plugins/preset-chart-xy/node_modules/@vx/shape": { + "version": "0.0.198", + "integrity": "sha512-3Ky2PlSXYmh/Wt+tT4OBmsLpTe8Vu5pZ1EwbMQ0H/NNl6d4BsNqBUzr++0WC/kLsuNs5NENDvG77N9u2ztMrYA==", + "dependencies": { + "@types/classnames": "^2.2.9", + "@types/d3-path": "^1.0.8", + "@types/d3-shape": "^1.3.1", + "@types/react": "*", + "@vx/curve": "0.0.198", + "@vx/group": "0.0.198", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": "^16.3.0-0" + } + }, + "plugins/preset-chart-xy/node_modules/@vx/text": { + "version": "0.0.198", + "integrity": "sha512-MZhLeIhjbPlAeq+heUFXzrAztkjpfhAjeg+RXDg1dTJTtkbBD0w1bwadSPHuC7Rzj6yNQChzVDYl51dO/k4ExQ==", + "dependencies": { + "@types/classnames": "^2.2.9", + "@types/lodash": "^4.14.146", + "@types/react": "*", + "classnames": "^2.2.5", + "lodash": "^4.17.15", + "prop-types": "^15.7.2", + "reduce-css-calc": "^1.3.0" + }, + "peerDependencies": { + "react": "^16.3.0-0" + } + }, + "plugins/preset-chart-xy/node_modules/d3-scale": { + "version": "2.2.2", + "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" + } + } + }, + "dependencies": { + "@actions/core": { + "version": "1.6.0", + "dev": true, + "requires": { + "@actions/http-client": "^1.0.11" + } + }, + "@actions/github": { + "version": "5.0.0", + "dev": true, + "requires": { + "@actions/http-client": "^1.0.11", + "@octokit/core": "^3.4.0", + "@octokit/plugin-paginate-rest": "^2.13.3", + "@octokit/plugin-rest-endpoint-methods": "^5.1.1" + } + }, + "@actions/http-client": { + "version": "1.0.11", + "dev": true, + "requires": { + "tunnel": "0.0.6" + } + }, + "@airbnb/config-babel": { + "version": "3.1.0", + "requires": { + "@airbnb/nimbus-common": "^3.0.1", + "@babel/cli": "^7.8.4", + "@babel/core": "^7.9.0", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-react-jsx-self": "^7.9.0", + "@babel/plugin-transform-react-jsx-source": "^7.9.0", + "@babel/plugin-transform-runtime": "^7.9.0", + "@babel/preset-env": "^7.9.0", + "@babel/preset-react": "^7.9.4", + "@babel/preset-typescript": "^7.9.0", + "@beemo/core": "^1.1.6", + "@beemo/driver-babel": "^1.2.3", + "babel-plugin-graphql-tag": "^2.5.0", + "babel-plugin-transform-dev": "^2.0.1", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24", + "babel-plugin-typescript-to-proptypes": "^1.3.2" + } + }, + "@airbnb/config-jest": { + "version": "3.0.2", + "requires": { + "@airbnb/nimbus-common": "^3.0.1", + "@babel/core": "^7.9.0", + "@beemo/core": "^1.1.6", + "@beemo/driver-babel": "^1.2.3", + "@beemo/driver-jest": "^1.2.1", + "airbnb-js-shims": "^2.2.1", + "dom-storage": "^2.1.0", + "jest": "^25.5.4" + }, + "dependencies": { + "@beemo/driver-jest": { + "version": "1.2.3", + "requires": { + "@jest/types": "^25.4.0" + } + }, + "@jest/console": { + "version": "25.5.0", + "requires": { + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "jest-message-util": "^25.5.0", + "jest-util": "^25.5.0", + "slash": "^3.0.0" + } + }, + "@jest/core": { + "version": "25.5.4", + "requires": { + "@jest/console": "^25.5.0", + "@jest/reporters": "^25.5.1", + "@jest/test-result": "^25.5.0", + "@jest/transform": "^25.5.1", + "@jest/types": "^25.5.0", + "ansi-escapes": "^4.2.1", + "chalk": "^3.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^25.5.0", + "jest-config": "^25.5.4", + "jest-haste-map": "^25.5.1", + "jest-message-util": "^25.5.0", + "jest-regex-util": "^25.2.6", + "jest-resolve": "^25.5.1", + "jest-resolve-dependencies": "^25.5.4", + "jest-runner": "^25.5.4", + "jest-runtime": "^25.5.4", + "jest-snapshot": "^25.5.1", + "jest-util": "^25.5.0", + "jest-validate": "^25.5.0", + "jest-watcher": "^25.5.0", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "realpath-native": "^2.0.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "@jest/environment": { + "version": "25.5.0", + "requires": { + "@jest/fake-timers": "^25.5.0", + "@jest/types": "^25.5.0", + "jest-mock": "^25.5.0" + } + }, + "@jest/fake-timers": { + "version": "25.5.0", + "requires": { + "@jest/types": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-util": "^25.5.0", + "lolex": "^5.0.0" + } + }, + "@jest/globals": { + "version": "25.5.2", + "requires": { + "@jest/environment": "^25.5.0", + "@jest/types": "^25.5.0", + "expect": "^25.5.0" + } + }, + "@jest/reporters": { + "version": "25.5.1", + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^25.5.0", + "@jest/test-result": "^25.5.0", + "@jest/transform": "^25.5.1", + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^25.5.1", + "jest-resolve": "^25.5.1", + "jest-util": "^25.5.0", + "jest-worker": "^25.5.0", + "node-notifier": "^6.0.0", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^3.1.0", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^4.1.3" + } + }, + "@jest/source-map": { + "version": "25.5.0", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + } + }, + "@jest/test-result": { + "version": "25.5.0", + "requires": { + "@jest/console": "^25.5.0", + "@jest/types": "^25.5.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "25.5.4", + "requires": { + "@jest/test-result": "^25.5.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^25.5.1", + "jest-runner": "^25.5.4", + "jest-runtime": "^25.5.4" + } + }, + "@jest/transform": { + "version": "25.5.1", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^25.5.0", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^3.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^25.5.1", + "jest-regex-util": "^25.2.6", + "jest-util": "^25.5.0", + "micromatch": "^4.0.2", + "pirates": "^4.0.1", + "realpath-native": "^2.0.0", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + } + }, + "@jest/types": { + "version": "25.5.0", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0" + } + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "@types/prettier": { + "version": "1.19.1" + }, + "@types/stack-utils": { + "version": "1.0.1" + }, + "acorn-globals": { + "version": "4.3.4", + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2" + } + } + }, + "acorn-walk": { + "version": "6.2.0" + }, + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "astral-regex": { + "version": "1.0.0" + }, + "babel-jest": { + "version": "25.5.1", + "requires": { + "@jest/transform": "^25.5.1", + "@jest/types": "^25.5.0", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^25.5.0", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "25.5.0", + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-preset-current-node-syntax": { + "version": "0.1.4", + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "25.5.0", + "requires": { + "babel-plugin-jest-hoist": "^25.5.0", + "babel-preset-current-node-syntax": "^0.1.2" + } + }, + "chalk": { + "version": "3.0.0", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "data-urls": { + "version": "1.1.0", + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + } + }, + "diff-sequences": { + "version": "25.2.6" + }, + "domexception": { + "version": "1.0.1", + "requires": { + "webidl-conversions": "^4.0.2" + } + }, + "escape-string-regexp": { + "version": "2.0.0" + }, + "escodegen": { + "version": "1.14.3", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, + "estraverse": { + "version": "4.3.0" + }, + "execa": { + "version": "3.4.0", + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "expect": { + "version": "25.5.0", + "requires": { + "@jest/types": "^25.5.0", + "ansi-styles": "^4.0.0", + "jest-get-type": "^25.2.6", + "jest-matcher-utils": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-regex-util": "^25.2.6" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "html-encoding-sniffer": { + "version": "1.0.2", + "requires": { + "whatwg-encoding": "^1.0.1" + } + }, + "istanbul-lib-instrument": { + "version": "4.0.3", + "requires": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + } + }, + "jest": { + "version": "25.5.4", + "requires": { + "@jest/core": "^25.5.4", + "import-local": "^3.0.2", + "jest-cli": "^25.5.4" + } + }, + "jest-changed-files": { + "version": "25.5.0", + "requires": { + "@jest/types": "^25.5.0", + "execa": "^3.2.0", + "throat": "^5.0.0" + } + }, + "jest-cli": { + "version": "25.5.4", + "requires": { + "@jest/core": "^25.5.4", + "@jest/test-result": "^25.5.0", + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^25.5.4", + "jest-util": "^25.5.0", + "jest-validate": "^25.5.0", + "prompts": "^2.0.1", + "realpath-native": "^2.0.0", + "yargs": "^15.3.1" + } + }, + "jest-config": { + "version": "25.5.4", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^25.5.4", + "@jest/types": "^25.5.0", + "babel-jest": "^25.5.1", + "chalk": "^3.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-environment-jsdom": "^25.5.0", + "jest-environment-node": "^25.5.0", + "jest-get-type": "^25.2.6", + "jest-jasmine2": "^25.5.4", + "jest-regex-util": "^25.2.6", + "jest-resolve": "^25.5.1", + "jest-util": "^25.5.0", + "jest-validate": "^25.5.0", + "micromatch": "^4.0.2", + "pretty-format": "^25.5.0", + "realpath-native": "^2.0.0" + } + }, + "jest-diff": { + "version": "25.5.0", + "requires": { + "chalk": "^3.0.0", + "diff-sequences": "^25.2.6", + "jest-get-type": "^25.2.6", + "pretty-format": "^25.5.0" + } + }, + "jest-docblock": { + "version": "25.3.0", + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-each": { + "version": "25.5.0", + "requires": { + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "jest-get-type": "^25.2.6", + "jest-util": "^25.5.0", + "pretty-format": "^25.5.0" + } + }, + "jest-environment-jsdom": { + "version": "25.5.0", + "requires": { + "@jest/environment": "^25.5.0", + "@jest/fake-timers": "^25.5.0", + "@jest/types": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-util": "^25.5.0", + "jsdom": "^15.2.1" + } + }, + "jest-environment-node": { + "version": "25.5.0", + "requires": { + "@jest/environment": "^25.5.0", + "@jest/fake-timers": "^25.5.0", + "@jest/types": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-util": "^25.5.0", + "semver": "^6.3.0" + } + }, + "jest-get-type": { + "version": "25.2.6" + }, + "jest-haste-map": { + "version": "25.5.1", + "requires": { + "@jest/types": "^25.5.0", + "@types/graceful-fs": "^4.1.2", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.1.2", + "graceful-fs": "^4.2.4", + "jest-serializer": "^25.5.0", + "jest-util": "^25.5.0", + "jest-worker": "^25.5.0", + "micromatch": "^4.0.2", + "sane": "^4.0.3", + "walker": "^1.0.7", + "which": "^2.0.2" + } + }, + "jest-jasmine2": { + "version": "25.5.4", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^25.5.0", + "@jest/source-map": "^25.5.0", + "@jest/test-result": "^25.5.0", + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "co": "^4.6.0", + "expect": "^25.5.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^25.5.0", + "jest-matcher-utils": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-runtime": "^25.5.4", + "jest-snapshot": "^25.5.1", + "jest-util": "^25.5.0", + "pretty-format": "^25.5.0", + "throat": "^5.0.0" + } + }, + "jest-leak-detector": { + "version": "25.5.0", + "requires": { + "jest-get-type": "^25.2.6", + "pretty-format": "^25.5.0" + } + }, + "jest-matcher-utils": { + "version": "25.5.0", + "requires": { + "chalk": "^3.0.0", + "jest-diff": "^25.5.0", + "jest-get-type": "^25.2.6", + "pretty-format": "^25.5.0" + } + }, + "jest-message-util": { + "version": "25.5.0", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^25.5.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "slash": "^3.0.0", + "stack-utils": "^1.0.1" + } + }, + "jest-mock": { + "version": "25.5.0", + "requires": { + "@jest/types": "^25.5.0" + } + }, + "jest-regex-util": { + "version": "25.2.6" + }, + "jest-resolve": { + "version": "25.5.1", + "requires": { + "@jest/types": "^25.5.0", + "browser-resolve": "^1.11.3", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.1", + "read-pkg-up": "^7.0.1", + "realpath-native": "^2.0.0", + "resolve": "^1.17.0", + "slash": "^3.0.0" + } + }, + "jest-resolve-dependencies": { + "version": "25.5.4", + "requires": { + "@jest/types": "^25.5.0", + "jest-regex-util": "^25.2.6", + "jest-snapshot": "^25.5.1" + } + }, + "jest-runner": { + "version": "25.5.4", + "requires": { + "@jest/console": "^25.5.0", + "@jest/environment": "^25.5.0", + "@jest/test-result": "^25.5.0", + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-config": "^25.5.4", + "jest-docblock": "^25.3.0", + "jest-haste-map": "^25.5.1", + "jest-jasmine2": "^25.5.4", + "jest-leak-detector": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-resolve": "^25.5.1", + "jest-runtime": "^25.5.4", + "jest-util": "^25.5.0", + "jest-worker": "^25.5.0", + "source-map-support": "^0.5.6", + "throat": "^5.0.0" + } + }, + "jest-runtime": { + "version": "25.5.4", + "requires": { + "@jest/console": "^25.5.0", + "@jest/environment": "^25.5.0", + "@jest/globals": "^25.5.2", + "@jest/source-map": "^25.5.0", + "@jest/test-result": "^25.5.0", + "@jest/transform": "^25.5.1", + "@jest/types": "^25.5.0", + "@types/yargs": "^15.0.0", + "chalk": "^3.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-config": "^25.5.4", + "jest-haste-map": "^25.5.1", + "jest-message-util": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-regex-util": "^25.2.6", + "jest-resolve": "^25.5.1", + "jest-snapshot": "^25.5.1", + "jest-util": "^25.5.0", + "jest-validate": "^25.5.0", + "realpath-native": "^2.0.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^15.3.1" + } + }, + "jest-serializer": { + "version": "25.5.0", + "requires": { + "graceful-fs": "^4.2.4" + } + }, + "jest-snapshot": { + "version": "25.5.1", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^25.5.0", + "@types/prettier": "^1.19.0", + "chalk": "^3.0.0", + "expect": "^25.5.0", + "graceful-fs": "^4.2.4", + "jest-diff": "^25.5.0", + "jest-get-type": "^25.2.6", + "jest-matcher-utils": "^25.5.0", + "jest-message-util": "^25.5.0", + "jest-resolve": "^25.5.1", + "make-dir": "^3.0.0", + "natural-compare": "^1.4.0", + "pretty-format": "^25.5.0", + "semver": "^6.3.0" + } + }, + "jest-util": { + "version": "25.5.0", + "requires": { + "@jest/types": "^25.5.0", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "make-dir": "^3.0.0" + } + }, + "jest-validate": { + "version": "25.5.0", + "requires": { + "@jest/types": "^25.5.0", + "camelcase": "^5.3.1", + "chalk": "^3.0.0", + "jest-get-type": "^25.2.6", + "leven": "^3.1.0", + "pretty-format": "^25.5.0" + } + }, + "jest-watcher": { + "version": "25.5.0", + "requires": { + "@jest/test-result": "^25.5.0", + "@jest/types": "^25.5.0", + "ansi-escapes": "^4.2.1", + "chalk": "^3.0.0", + "jest-util": "^25.5.0", + "string-length": "^3.1.0" + } + }, + "jest-worker": { + "version": "25.5.0", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + } + }, + "jsdom": { + "version": "15.2.1", + "requires": { + "abab": "^2.0.0", + "acorn": "^7.1.0", + "acorn-globals": "^4.3.2", + "array-equal": "^1.0.0", + "cssom": "^0.4.1", + "cssstyle": "^2.0.0", + "data-urls": "^1.1.0", + "domexception": "^1.0.1", + "escodegen": "^1.11.1", + "html-encoding-sniffer": "^1.0.2", + "nwsapi": "^2.2.0", + "parse5": "5.1.0", + "pn": "^1.1.0", + "request": "^2.88.0", + "request-promise-native": "^1.0.7", + "saxes": "^3.1.9", + "symbol-tree": "^3.2.2", + "tough-cookie": "^3.0.1", + "w3c-hr-time": "^1.0.1", + "w3c-xmlserializer": "^1.1.2", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^7.0.0", + "ws": "^7.0.0", + "xml-name-validator": "^3.0.0" + } + }, + "levn": { + "version": "0.3.0", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "make-dir": { + "version": "3.1.0", + "requires": { + "semver": "^6.0.0" + } + }, + "node-notifier": { + "version": "6.0.0", + "optional": true, + "requires": { + "growly": "^1.3.0", + "is-wsl": "^2.1.1", + "semver": "^6.3.0", + "shellwords": "^0.1.1", + "which": "^1.3.1" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "optional": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "optionator": { + "version": "0.8.3", + "requires": { + "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" + } + }, + "p-finally": { + "version": "2.0.1" + }, + "parse5": { + "version": "5.1.0" + }, + "prelude-ls": { + "version": "1.1.2" + }, + "pretty-format": { + "version": "25.5.0", + "requires": { + "@jest/types": "^25.5.0", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^16.12.0" + } + }, + "saxes": { + "version": "3.1.11", + "requires": { + "xmlchars": "^2.1.1" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "slash": { + "version": "3.0.0" + }, + "source-map": { + "version": "0.6.1" + }, + "stack-utils": { + "version": "1.0.5", + "requires": { + "escape-string-regexp": "^2.0.0" + } + }, + "string-length": { + "version": "3.1.0", + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^5.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0" + }, + "strip-ansi": { + "version": "5.2.0", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "strip-bom": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + }, + "tough-cookie": { + "version": "3.0.1", + "requires": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tr46": { + "version": "1.0.1", + "requires": { + "punycode": "^2.1.0" + } + }, + "type-check": { + "version": "0.3.2", + "requires": { + "prelude-ls": "~1.1.2" + } + }, + "v8-to-istanbul": { + "version": "4.1.4", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3" + } + } + }, + "w3c-xmlserializer": { + "version": "1.1.2", + "requires": { + "domexception": "^1.0.1", + "webidl-conversions": "^4.0.2", + "xml-name-validator": "^3.0.0" + } + }, + "webidl-conversions": { + "version": "4.0.2" + }, + "whatwg-url": { + "version": "7.1.0", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "@airbnb/config-webpack": { + "version": "3.3.1", + "requires": { + "@airbnb/nimbus-common": "^3.0.1", + "@babel/core": "^7.9.0", + "@beemo/core": "^1.1.6", + "@beemo/driver-webpack": "^1.2.4", + "babel-loader": "^8.1.0", + "execa": "^4.0.0", + "fast-glob": "^3.2.2", + "file-loader": "^6.0.0", + "html-webpack-plugin": "^4.0.1", + "is-docker": "^2.0.0", + "terser-webpack-plugin": "^2.3.5", + "url-loader": "^4.0.0", + "webpack": "^4.42.1", + "webpack-bundle-analyzer": "^3.6.1", + "webpack-cli": "^3.3.11", + "webpack-dev-server": "^3.10.3", + "webpack-graphql-loader": "^1.0.2" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "peer": true, + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "peer": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "enhanced-resolve": { + "version": "4.5.0", + "peer": true, + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + } + }, + "fill-range": { + "version": "4.0.0", + "peer": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "peer": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-extendable": { + "version": "0.1.1", + "peer": true + }, + "is-number": { + "version": "3.0.0", + "peer": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "peer": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "isarray": { + "version": "1.0.0", + "peer": true + }, + "memory-fs": { + "version": "0.5.0", + "peer": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "micromatch": { + "version": "3.1.10", + "peer": true, + "requires": { + "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" + } + }, + "pify": { + "version": "3.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "peer": true, + "requires": { + "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" + } + }, + "semver": { + "version": "5.7.1", + "peer": true + }, + "string_decoder": { + "version": "1.1.1", + "peer": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "tapable": { + "version": "1.1.3", + "peer": true + }, + "to-regex-range": { + "version": "2.1.1", + "peer": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "ts-loader": { + "version": "4.5.0", + "peer": true, + "requires": { + "chalk": "^2.3.0", + "enhanced-resolve": "^4.0.0", + "loader-utils": "^1.0.2", + "micromatch": "^3.1.4", + "semver": "^5.0.1" + } + }, + "webpack-graphql-loader": { + "version": "1.0.2", + "requires": { + "apollo-codegen": "^0.19.1", + "loader-utils": "^1.1.0", + "pify": "^3.0.0" + } + } + } + }, + "@airbnb/nimbus-common": { + "version": "3.0.1", + "requires": { + "@beemo/core": "^1.1.6", + "@boost/common": "^1.8.3", + "execa": "^4.0.0", + "fast-glob": "^3.2.2" + } + }, + "@ant-design/colors": { + "version": "6.0.0", + "requires": { + "@ctrl/tinycolor": "^3.4.0" + } + }, + "@ant-design/icons": { + "version": "4.7.0", + "requires": { + "@ant-design/colors": "^6.0.0", + "@ant-design/icons-svg": "^4.2.1", + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-util": "^5.9.4" + }, + "dependencies": { + "rc-util": { + "version": "5.14.0", + "requires": { + "@babel/runtime": "^7.12.5", + "react-is": "^16.12.0", + "shallowequal": "^1.1.0" + } + } + } + }, + "@ant-design/icons-svg": { + "version": "4.2.1" + }, + "@babel/cli": { + "version": "7.15.7", + "requires": { + "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3", + "chokidar": "^3.4.0", + "commander": "^4.0.1", + "convert-source-map": "^1.1.0", + "fs-readdir-recursive": "^1.1.0", + "glob": "^7.0.0", + "make-dir": "^2.1.0", + "slash": "^2.0.0", + "source-map": "^0.5.0" + } + }, + "@babel/code-frame": { + "version": "7.15.8", + "requires": { + "@babel/highlight": "^7.14.5" + } + }, + "@babel/compat-data": { + "version": "7.15.0" + }, + "@babel/core": { + "version": "7.15.8", + "requires": { + "@babel/code-frame": "^7.15.8", + "@babel/generator": "^7.15.8", + "@babel/helper-compilation-targets": "^7.15.4", + "@babel/helper-module-transforms": "^7.15.8", + "@babel/helpers": "^7.15.4", + "@babel/parser": "^7.15.8", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.6", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/eslint-parser": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.16.3.tgz", + "integrity": "sha512-iB4ElZT0jAt7PKVaeVulOECdGe6UnmA/O0P9jlF5g5GBOwDVbna8AXhHRu4s27xQf6OkveyA8iTDv1jHdDejgQ==", + "requires": { + "eslint-scope": "^5.1.1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/generator": { + "version": "7.15.8", + "requires": { + "@babel/types": "^7.15.6", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.15.4", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.15.4", + "requires": { + "@babel/helper-explode-assignable-expression": "^7.15.4", + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.15.4", + "requires": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.15.4", + "requires": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-member-expression-to-functions": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.15.4", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-function-name": { + "version": "7.15.4", + "requires": { + "@babel/helper-get-function-arity": "^7.15.4", + "@babel/template": "^7.15.4", + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.15.4", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.15.4", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.15.4", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-module-imports": { + "version": "7.15.4", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-module-transforms": { + "version": "7.15.8", + "requires": { + "@babel/helper-module-imports": "^7.15.4", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-simple-access": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "@babel/helper-validator-identifier": "^7.15.7", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.6" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.15.4", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5" + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.15.4", + "requires": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-wrap-function": "^7.15.4", + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-replace-supers": { + "version": "7.15.4", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-simple-access": { + "version": "7.15.4", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.15.4", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.15.4", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.15.7" + }, + "@babel/helper-validator-option": { + "version": "7.14.5" + }, + "@babel/helper-wrap-function": { + "version": "7.15.4", + "requires": { + "@babel/helper-function-name": "^7.15.4", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" + } + }, + "@babel/helpers": { + "version": "7.15.4", + "requires": { + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" + } + }, + "@babel/highlight": { + "version": "7.14.5", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/node": { + "version": "7.15.8", + "requires": { + "@babel/register": "^7.15.3", + "commander": "^4.0.1", + "core-js": "^3.16.0", + "node-environment-flags": "^1.0.5", + "regenerator-runtime": "^0.13.4", + "v8flags": "^3.1.1" + }, + "dependencies": { + "core-js": { + "version": "3.18.3" + } + } + }, + "@babel/parser": { + "version": "7.15.8" + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.15.4", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.15.4", + "@babel/plugin-proposal-optional-chaining": "^7.14.5" + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.15.8", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.15.4", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.14.5", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.15.4", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-proposal-decorators": { + "version": "7.15.8", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-decorators": "^7.14.5" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-default-from": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-default-from": "^7.14.5" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.15.6", + "requires": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-compilation-targets": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.15.4" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.14.5", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.15.4", + "requires": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-create-class-features-plugin": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.14.5", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-decorators": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-default-from": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-flow": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.14.5", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.14.5" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.15.3", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.15.4", + "requires": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.14.7", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.14.5", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.14.5", + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-flow-strip-types": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-flow": "^7.14.5" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.15.4", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.14.5", + "requires": { + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.14.5", + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.15.4", + "requires": { + "@babel/helper-module-transforms": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-simple-access": "^7.15.4", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.15.4", + "requires": { + "@babel/helper-hoist-variables": "^7.15.4", + "@babel/helper-module-transforms": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.9", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.14.5", + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.14.9", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.15.4", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.15.1", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.14.9", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-jsx": "^7.14.5", + "@babel/types": "^7.14.9" + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.14.5", + "requires": { + "@babel/plugin-transform-react-jsx": "^7.14.5" + } + }, + "@babel/plugin-transform-react-jsx-self": { + "version": "7.14.9", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-react-jsx-source": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-react-pure-annotations": { + "version": "7.14.5", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.14.5", + "requires": { + "regenerator-transform": "^0.14.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.15.8", + "requires": { + "@babel/helper-module-imports": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.5", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.15.8", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.15.4" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.15.8", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-typescript": "^7.14.5" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.14.5", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/polyfill": { + "version": "7.12.1", + "requires": { + "core-js": "^2.6.5", + "regenerator-runtime": "^0.13.4" + }, + "dependencies": { + "core-js": { + "version": "2.6.12" + } + } + }, + "@babel/preset-env": { + "version": "7.15.8", + "requires": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-compilation-targets": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.15.4", + "@babel/plugin-proposal-async-generator-functions": "^7.15.8", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-class-static-block": "^7.15.4", + "@babel/plugin-proposal-dynamic-import": "^7.14.5", + "@babel/plugin-proposal-export-namespace-from": "^7.14.5", + "@babel/plugin-proposal-json-strings": "^7.14.5", + "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", + "@babel/plugin-proposal-numeric-separator": "^7.14.5", + "@babel/plugin-proposal-object-rest-spread": "^7.15.6", + "@babel/plugin-proposal-optional-catch-binding": "^7.14.5", + "@babel/plugin-proposal-optional-chaining": "^7.14.5", + "@babel/plugin-proposal-private-methods": "^7.14.5", + "@babel/plugin-proposal-private-property-in-object": "^7.15.4", + "@babel/plugin-proposal-unicode-property-regex": "^7.14.5", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.14.5", + "@babel/plugin-transform-async-to-generator": "^7.14.5", + "@babel/plugin-transform-block-scoped-functions": "^7.14.5", + "@babel/plugin-transform-block-scoping": "^7.15.3", + "@babel/plugin-transform-classes": "^7.15.4", + "@babel/plugin-transform-computed-properties": "^7.14.5", + "@babel/plugin-transform-destructuring": "^7.14.7", + "@babel/plugin-transform-dotall-regex": "^7.14.5", + "@babel/plugin-transform-duplicate-keys": "^7.14.5", + "@babel/plugin-transform-exponentiation-operator": "^7.14.5", + "@babel/plugin-transform-for-of": "^7.15.4", + "@babel/plugin-transform-function-name": "^7.14.5", + "@babel/plugin-transform-literals": "^7.14.5", + "@babel/plugin-transform-member-expression-literals": "^7.14.5", + "@babel/plugin-transform-modules-amd": "^7.14.5", + "@babel/plugin-transform-modules-commonjs": "^7.15.4", + "@babel/plugin-transform-modules-systemjs": "^7.15.4", + "@babel/plugin-transform-modules-umd": "^7.14.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.9", + "@babel/plugin-transform-new-target": "^7.14.5", + "@babel/plugin-transform-object-super": "^7.14.5", + "@babel/plugin-transform-parameters": "^7.15.4", + "@babel/plugin-transform-property-literals": "^7.14.5", + "@babel/plugin-transform-regenerator": "^7.14.5", + "@babel/plugin-transform-reserved-words": "^7.14.5", + "@babel/plugin-transform-shorthand-properties": "^7.14.5", + "@babel/plugin-transform-spread": "^7.15.8", + "@babel/plugin-transform-sticky-regex": "^7.14.5", + "@babel/plugin-transform-template-literals": "^7.14.5", + "@babel/plugin-transform-typeof-symbol": "^7.14.5", + "@babel/plugin-transform-unicode-escapes": "^7.14.5", + "@babel/plugin-transform-unicode-regex": "^7.14.5", + "@babel/preset-modules": "^0.1.4", + "@babel/types": "^7.15.6", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.5", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "core-js-compat": "^3.16.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/preset-flow": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-transform-flow-strip-types": "^7.14.5" + } + }, + "@babel/preset-modules": { + "version": "0.1.4", + "requires": { + "@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/preset-react": { + "version": "7.14.5", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-transform-react-display-name": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.5", + "@babel/plugin-transform-react-jsx-development": "^7.14.5", + "@babel/plugin-transform-react-pure-annotations": "^7.14.5" + } + }, + "@babel/preset-typescript": { + "version": "7.15.0", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-transform-typescript": "^7.15.0" + } + }, + "@babel/register": { + "version": "7.15.3", + "requires": { + "clone-deep": "^4.0.1", + "find-cache-dir": "^2.0.0", + "make-dir": "^2.1.0", + "pirates": "^4.0.0", + "source-map-support": "^0.5.16" + } + }, + "@babel/runtime": { + "version": "7.15.4", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/runtime-corejs2": { + "version": "7.15.4", + "requires": { + "core-js": "^2.6.5", + "regenerator-runtime": "^0.13.4" + }, + "dependencies": { + "core-js": { + "version": "2.6.12" + } + } + }, + "@babel/runtime-corejs3": { + "version": "7.15.4", + "requires": { + "core-js-pure": "^3.16.0", + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.15.4", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.15.4", + "@babel/types": "^7.15.4" + } + }, + "@babel/traverse": { + "version": "7.15.4", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-hoist-variables": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "@babel/parser": "^7.15.4", + "@babel/types": "^7.15.4", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.15.6", + "requires": { + "@babel/helper-validator-identifier": "^7.14.9", + "to-fast-properties": "^2.0.0" + } + }, + "@base2/pretty-print-object": { + "version": "1.0.1" + }, + "@bcoe/v8-coverage": { + "version": "0.2.3" + }, + "@beemo/core": { + "version": "1.1.8", + "requires": { + "@beemo/dependency-graph": "^1.1.1", + "@boost/common": "^1.8.5", + "@boost/core": "^1.18.6", + "@boost/event": "^1.3.1", + "@types/micromatch": "^4.0.1", + "@types/yargs": "^15.0.5", + "@types/yargs-parser": "^15.0.0", + "chalk": "^3.0.0", + "execa": "^3.4.0", + "fast-glob": "^3.0.4", + "fs-extra": "^8.1.0", + "hygen": "^5.0.3", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "micromatch": "^4.0.2", + "optimal": "^4.2.0", + "yargs": "^15.3.1", + "yargs-parser": "^18.1.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "execa": { + "version": "3.4.0", + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "p-finally": { + "version": "2.0.1" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "@beemo/dependency-graph": { + "version": "1.1.1" + }, + "@beemo/driver-babel": { + "version": "1.2.6", + "requires": { + "rimraf": "^3.0.2" + } + }, + "@beemo/driver-webpack": { + "version": "1.2.6", + "requires": { + "@types/webpack": "^4.41.13" + } + }, + "@boost/common": { + "version": "1.9.0", + "requires": { + "@boost/internal": "^1.2.0", + "json5": "^2.1.3", + "optimal": "^4.2.0", + "pretty-ms": "^5.1.0", + "yaml": "^1.9.2" + } + }, + "@boost/core": { + "version": "1.18.7", + "requires": { + "@boost/common": "^1.9.0", + "@boost/debug": "^1.4.7", + "@boost/event": "^1.3.1", + "@boost/internal": "^1.2.0", + "@boost/log": "^1.2.1", + "@boost/terminal": "^1.0.3", + "@boost/translate": "^1.3.10", + "@types/debug": "^4.1.5", + "@types/yargs": "^15.0.4", + "@types/yargs-parser": "^15.0.0", + "debug": "^4.1.1", + "env-ci": "^4.5.1", + "execa": "^3.4.0", + "exit": "^0.1.2", + "fast-glob": "^3.2.2", + "fs-extra": "^8.1.0", + "json5": "^2.1.3", + "lodash": "^4.17.15", + "optimal": "^4.2.0", + "pluralize": "^8.0.0", + "split": "^1.0.1", + "yargs-parser": "^18.1.2" + }, + "dependencies": { + "execa": { + "version": "3.4.0", + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "p-finally": { + "version": "2.0.1" + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "@boost/debug": { + "version": "1.4.7", + "requires": { + "@boost/common": "^1.9.0", + "@boost/internal": "^1.2.0", + "@types/debug": "^4.1.5", + "debug": "^4.1.1", + "execa": "^3.4.0", + "fast-glob": "^3.2.2" + }, + "dependencies": { + "execa": { + "version": "3.4.0", + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "p-finally": { + "version": "2.0.1" + } + } + }, + "@boost/event": { + "version": "1.3.1", + "requires": { + "@boost/internal": "^1.2.0" + } + }, + "@boost/internal": { + "version": "1.2.0", + "requires": { + "chalk": "^3.0.0", + "debug": "^4.1.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@boost/log": { + "version": "1.2.1", + "requires": { + "@boost/internal": "^1.2.0", + "@boost/translate": "^1.3.10", + "chalk": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@boost/terminal": { + "version": "1.0.3", + "requires": { + "ansi-escapes": "^4.3.1", + "ansi-regex": "^5.0.0", + "chalk": "^3.0.0", + "cli-truncate": "^2.1.0", + "figures": "^3.2.0", + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "supports-hyperlinks": "^2.1.0", + "term-size": "^2.2.0", + "wrap-ansi": "^6.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@boost/translate": { + "version": "1.3.10", + "requires": { + "@boost/common": "^1.9.0", + "@boost/internal": "^1.2.0", + "i18next": "^19.4.2", + "os-locale": "^4.0.0" + } + }, + "@chromaui/localtunnel": { + "version": "2.0.4", + "dev": true, + "requires": { + "axios": "0.21.4", + "debug": "4.3.1", + "openurl": "1.1.1", + "yargs": "16.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "cliui": { + "version": "7.0.4", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "debug": { + "version": "4.3.1", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "5.0.8", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9", + "dev": true + } + } + }, + "@cnakazawa/watch": { + "version": "1.0.4", + "requires": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + } + }, + "@commitlint/cli": { + "version": "7.6.1", + "requires": { + "@commitlint/format": "^7.6.1", + "@commitlint/lint": "^7.6.0", + "@commitlint/load": "^7.6.1", + "@commitlint/read": "^7.6.0", + "babel-polyfill": "6.26.0", + "chalk": "2.3.1", + "get-stdin": "7.0.0", + "lodash": "4.17.11", + "meow": "5.0.0", + "resolve-from": "5.0.0", + "resolve-global": "1.0.0" + }, + "dependencies": { + "chalk": { + "version": "2.3.1", + "requires": { + "ansi-styles": "^3.2.0", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.2.0" + } + }, + "escape-string-regexp": { + "version": "1.0.5" + }, + "lodash": { + "version": "4.17.11" + } + } + }, + "@commitlint/config-conventional": { + "version": "7.6.0" + }, + "@commitlint/config-lerna-scopes": { + "version": "7.6.0", + "requires": { + "import-from": "3.0.0", + "resolve-pkg": "2.0.0", + "semver": "6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.0.0" + } + } + }, + "@commitlint/ensure": { + "version": "7.6.0", + "requires": { + "lodash": "4.17.11" + }, + "dependencies": { + "lodash": { + "version": "4.17.11" + } + } + }, + "@commitlint/execute-rule": { + "version": "7.6.0", + "requires": { + "babel-runtime": "6.26.0" + } + }, + "@commitlint/format": { + "version": "7.6.1", + "requires": { + "babel-runtime": "^6.23.0", + "chalk": "^2.0.1" + } + }, + "@commitlint/is-ignored": { + "version": "7.6.0", + "requires": { + "semver": "6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.0.0" + } + } + }, + "@commitlint/lint": { + "version": "7.6.0", + "requires": { + "@commitlint/is-ignored": "^7.6.0", + "@commitlint/parse": "^7.6.0", + "@commitlint/rules": "^7.6.0", + "babel-runtime": "^6.23.0", + "lodash": "4.17.11" + }, + "dependencies": { + "lodash": { + "version": "4.17.11" + } + } + }, + "@commitlint/load": { + "version": "7.6.2", + "requires": { + "@commitlint/execute-rule": "^7.6.0", + "@commitlint/resolve-extends": "^7.6.0", + "babel-runtime": "^6.23.0", + "cosmiconfig": "^5.2.0", + "lodash": "4.17.11", + "resolve-from": "^5.0.0" + }, + "dependencies": { + "lodash": { + "version": "4.17.11" + } + } + }, + "@commitlint/message": { + "version": "7.6.0" + }, + "@commitlint/parse": { + "version": "7.6.0", + "requires": { + "conventional-changelog-angular": "^1.3.3", + "conventional-commits-parser": "^2.1.0", + "lodash": "^4.17.11" + } + }, + "@commitlint/read": { + "version": "7.6.0", + "requires": { + "@commitlint/top-level": "^7.6.0", + "@marionebl/sander": "^0.6.0", + "babel-runtime": "^6.23.0", + "git-raw-commits": "^1.3.0" + } + }, + "@commitlint/resolve-extends": { + "version": "7.6.0", + "requires": { + "babel-runtime": "6.26.0", + "import-fresh": "^3.0.0", + "lodash": "4.17.11", + "resolve-from": "^5.0.0", + "resolve-global": "^1.0.0" + }, + "dependencies": { + "lodash": { + "version": "4.17.11" + } + } + }, + "@commitlint/rules": { + "version": "7.6.0", + "requires": { + "@commitlint/ensure": "^7.6.0", + "@commitlint/message": "^7.6.0", + "@commitlint/to-lines": "^7.6.0", + "babel-runtime": "^6.23.0" + } + }, + "@commitlint/to-lines": { + "version": "7.6.0" + }, + "@commitlint/top-level": { + "version": "7.6.0", + "requires": { + "find-up": "^2.1.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "requires": { + "locate-path": "^2.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "1.3.0", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0" + }, + "path-exists": { + "version": "3.0.0" + } + } + }, + "@ctrl/tinycolor": { + "version": "3.4.0" + }, + "@data-ui/event-flow": { + "version": "0.0.84", + "requires": { + "@babel/polyfill": "^7.0.0", + "@babel/runtime-corejs2": "^7.1.5", + "@data-ui/forms": "^0.0.84", + "@data-ui/radial-chart": "^0.0.84", + "@data-ui/theme": "^0.0.84", + "@vx/axis": "0.0.140", + "@vx/bounds": "0.0.140", + "@vx/clip-path": "0.0.140", + "@vx/glyph": "0.0.140", + "@vx/gradient": "0.0.140", + "@vx/grid": "0.0.140", + "@vx/group": "0.0.140", + "@vx/legend": "0.0.140", + "@vx/pattern": "0.0.140", + "@vx/point": "0.0.136", + "@vx/responsive": "0.0.140", + "@vx/scale": "0.0.140", + "@vx/shape": "0.0.140", + "@vx/tooltip": "0.0.140", + "aphrodite": "^1.2.0", + "d3-array": "^1.2.0", + "d3-format": "^1.2.0", + "d3-selection": "^1.1.0", + "d3-zoom": "^1.3.0", + "immutable": "^3.8.1", + "prop-types": "^15.5.10", + "react-split-pane": "^0.1.63", + "react-with-styles": "^1.3.0", + "react-with-styles-interface-aphrodite": "^1.2.0", + "recompose": "^0.23.5" + }, + "dependencies": { + "@vx/responsive": { + "version": "0.0.140", + "requires": { + "lodash": "^4.0.8" + } + }, + "hoist-non-react-statics": { + "version": "1.2.0" + }, + "recompose": { + "version": "0.23.5", + "requires": { + "change-emitter": "^0.1.2", + "fbjs": "^0.8.1", + "hoist-non-react-statics": "^1.0.0", + "symbol-observable": "^1.0.4" + } + } + } + }, + "@data-ui/forms": { + "version": "0.0.84", + "requires": { + "prop-types": "^15.5.10", + "react-select": "^1.2.1" + } + }, + "@data-ui/histogram": { + "version": "0.0.84", + "requires": { + "@data-ui/shared": "^0.0.84", + "@data-ui/theme": "^0.0.84", + "@vx/axis": "^0.0.179", + "@vx/curve": "^0.0.165", + "@vx/event": "^0.0.179", + "@vx/glyph": "^0.0.179", + "@vx/gradient": "^0.0.165", + "@vx/group": "^0.0.170", + "@vx/pattern": "^0.0.179", + "@vx/responsive": "^0.0.192", + "@vx/scale": "^0.0.179", + "@vx/shape": "^0.0.179", + "@vx/tooltip": "0.0.179", + "d3-array": "^1.2.0", + "d3-scale": "^1.0.6", + "prop-types": "^15.5.10", + "react-move": "^2.1.0" + }, + "dependencies": { + "@vx/axis": { + "version": "0.0.179", + "requires": { + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "@vx/shape": "0.0.179", + "@vx/text": "0.0.179", + "classnames": "^2.2.5", + "prop-types": "^15.6.0" + } + }, + "@vx/bounds": { + "version": "0.0.165", + "requires": { + "prop-types": "^15.5.10" + } + }, + "@vx/glyph": { + "version": "0.0.179", + "requires": { + "@vx/group": "0.0.170", + "classnames": "^2.2.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.6.2" + } + }, + "@vx/gradient": { + "version": "0.0.165", + "requires": { + "classnames": "^2.2.5", + "prop-types": "^15.5.7" + } + }, + "@vx/group": { + "version": "0.0.170", + "requires": { + "classnames": "^2.2.5" + } + }, + "@vx/pattern": { + "version": "0.0.179", + "requires": { + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + } + }, + "@vx/point": { + "version": "0.0.165" + }, + "@vx/responsive": { + "version": "0.0.192", + "requires": { + "lodash": "^4.17.10", + "prop-types": "^15.6.1", + "resize-observer-polyfill": "1.5.0" + } + }, + "@vx/scale": { + "version": "0.0.179", + "requires": { + "d3-scale": "^2.0.0" + }, + "dependencies": { + "d3-scale": { + "version": "2.2.2", + "requires": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + } + } + }, + "@vx/shape": { + "version": "0.0.179", + "requires": { + "@vx/curve": "0.0.165", + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + } + }, + "@vx/text": { + "version": "0.0.179", + "requires": { + "babel-plugin-lodash": "^3.3.2", + "classnames": "^2.2.5", + "lodash": "^4.17.4", + "prop-types": "^15.6.2", + "reduce-css-calc": "^1.3.0" + } + }, + "@vx/tooltip": { + "version": "0.0.179", + "requires": { + "@vx/bounds": "0.0.165", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + } + }, + "d3-scale": { + "version": "1.0.7", + "requires": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-color": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + }, + "resize-observer-polyfill": { + "version": "1.5.0" + } + } + }, + "@data-ui/radial-chart": { + "version": "0.0.84", + "requires": { + "@data-ui/shared": "^0.0.84", + "@data-ui/theme": "^0.0.84", + "@vx/event": "0.0.140", + "@vx/group": "0.0.140", + "@vx/scale": "0.0.140", + "@vx/shape": "0.0.140", + "@vx/tooltip": "0.0.140", + "prop-types": "^15.5.10" + }, + "dependencies": { + "@vx/event": { + "version": "0.0.140", + "requires": { + "@vx/point": "0.0.136" + } + } + } + }, + "@data-ui/shared": { + "version": "0.0.84", + "requires": { + "@data-ui/theme": "^0.0.84", + "@vx/event": "^0.0.165", + "@vx/group": "^0.0.165", + "@vx/shape": "^0.0.168", + "@vx/tooltip": "0.0.165", + "d3-array": "^1.2.1", + "prop-types": "^15.5.10" + }, + "dependencies": { + "@vx/bounds": { + "version": "0.0.165", + "requires": { + "prop-types": "^15.5.10" + } + }, + "@vx/event": { + "version": "0.0.165", + "requires": { + "@vx/point": "0.0.165" + } + }, + "@vx/group": { + "version": "0.0.165", + "requires": { + "classnames": "^2.2.5" + } + }, + "@vx/point": { + "version": "0.0.165" + }, + "@vx/shape": { + "version": "0.0.168", + "requires": { + "@vx/curve": "0.0.165", + "@vx/group": "0.0.165", + "@vx/point": "0.0.165", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + } + }, + "@vx/tooltip": { + "version": "0.0.165", + "requires": { + "@vx/bounds": "0.0.165", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + } + } + } + }, + "@data-ui/sparkline": { + "version": "0.0.84", + "requires": { + "@data-ui/shared": "^0.0.84", + "@data-ui/theme": "^0.0.8", + "@vx/axis": "^0.0.179", + "@vx/curve": "^0.0.165", + "@vx/event": "^0.0.179", + "@vx/glyph": "^0.0.179", + "@vx/gradient": "^0.0.165", + "@vx/group": "^0.0.170", + "@vx/pattern": "^0.0.179", + "@vx/point": "^0.0.165", + "@vx/responsive": "^0.0.192", + "@vx/scale": "^0.0.179", + "@vx/shape": "^0.0.179", + "d3-array": "^1.2.0", + "prop-types": "^15.5.10" + }, + "dependencies": { + "@data-ui/theme": { + "version": "0.0.8" + }, + "@vx/axis": { + "version": "0.0.179", + "requires": { + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "@vx/shape": "0.0.179", + "@vx/text": "0.0.179", + "classnames": "^2.2.5", + "prop-types": "^15.6.0" + } + }, + "@vx/glyph": { + "version": "0.0.179", + "requires": { + "@vx/group": "0.0.170", + "classnames": "^2.2.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.6.2" + } + }, + "@vx/gradient": { + "version": "0.0.165", + "requires": { + "classnames": "^2.2.5", + "prop-types": "^15.5.7" + } + }, + "@vx/group": { + "version": "0.0.170", + "requires": { + "classnames": "^2.2.5" + } + }, + "@vx/pattern": { + "version": "0.0.179", + "requires": { + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + } + }, + "@vx/point": { + "version": "0.0.165" + }, + "@vx/responsive": { + "version": "0.0.192", + "requires": { + "lodash": "^4.17.10", + "prop-types": "^15.6.1", + "resize-observer-polyfill": "1.5.0" + } + }, + "@vx/scale": { + "version": "0.0.179", + "requires": { + "d3-scale": "^2.0.0" + } + }, + "@vx/shape": { + "version": "0.0.179", + "requires": { + "@vx/curve": "0.0.165", + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + } + }, + "@vx/text": { + "version": "0.0.179", + "requires": { + "babel-plugin-lodash": "^3.3.2", + "classnames": "^2.2.5", + "lodash": "^4.17.4", + "prop-types": "^15.6.2", + "reduce-css-calc": "^1.3.0" + } + }, + "d3-scale": { + "version": "2.2.2", + "requires": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + }, + "resize-observer-polyfill": { + "version": "1.5.0" + } + } + }, + "@data-ui/theme": { + "version": "0.0.84" + }, + "@data-ui/xy-chart": { + "version": "0.0.84", + "requires": { + "@data-ui/shared": "^0.0.84", + "@data-ui/theme": "^0.0.84", + "@vx/axis": "^0.0.175", + "@vx/curve": "^0.0.165", + "@vx/event": "^0.0.165", + "@vx/glyph": "^0.0.165", + "@vx/gradient": "^0.0.165", + "@vx/grid": "^0.0.180", + "@vx/group": "^0.0.165", + "@vx/pattern": "^0.0.165", + "@vx/point": "^0.0.165", + "@vx/responsive": "^0.0.192", + "@vx/scale": "^0.0.165", + "@vx/shape": "^0.0.165", + "@vx/stats": "^0.0.165", + "@vx/text": "^0.0.192", + "@vx/threshold": "0.0.170", + "@vx/tooltip": "^0.0.165", + "@vx/voronoi": "^0.0.165", + "d3-array": "^1.2.0", + "prop-types": "^15.5.10" + }, + "dependencies": { + "@vx/axis": { + "version": "0.0.175", + "requires": { + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "@vx/shape": "0.0.175", + "@vx/text": "0.0.175", + "classnames": "^2.2.5", + "prop-types": "^15.6.0" + }, + "dependencies": { + "@vx/group": { + "version": "0.0.170", + "requires": { + "classnames": "^2.2.5" + } + }, + "@vx/shape": { + "version": "0.0.175", + "requires": { + "@vx/curve": "0.0.165", + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + } + }, + "@vx/text": { + "version": "0.0.175", + "requires": { + "babel-plugin-lodash": "^3.3.2", + "classnames": "^2.2.5", + "lodash": "^4.17.4", + "reduce-css-calc": "^1.3.0" + } + } + } + }, + "@vx/bounds": { + "version": "0.0.165", + "requires": { + "prop-types": "^15.5.10" + } + }, + "@vx/event": { + "version": "0.0.165", + "requires": { + "@vx/point": "0.0.165" + } + }, + "@vx/glyph": { + "version": "0.0.165", + "requires": { + "@vx/group": "0.0.165", + "classnames": "^2.2.5", + "d3-shape": "^1.2.0" + } + }, + "@vx/gradient": { + "version": "0.0.165", + "requires": { + "classnames": "^2.2.5", + "prop-types": "^15.5.7" + } + }, + "@vx/grid": { + "version": "0.0.180", + "requires": { + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "@vx/shape": "0.0.179", + "classnames": "^2.2.5", + "prop-types": "^15.6.2" + }, + "dependencies": { + "@vx/group": { + "version": "0.0.170", + "requires": { + "classnames": "^2.2.5" + } + }, + "@vx/shape": { + "version": "0.0.179", + "requires": { + "@vx/curve": "0.0.165", + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + } + } + } + }, + "@vx/group": { + "version": "0.0.165", + "requires": { + "classnames": "^2.2.5" + } + }, + "@vx/pattern": { + "version": "0.0.165", + "requires": { + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + } + }, + "@vx/point": { + "version": "0.0.165" + }, + "@vx/responsive": { + "version": "0.0.192", + "requires": { + "lodash": "^4.17.10", + "prop-types": "^15.6.1", + "resize-observer-polyfill": "1.5.0" + } + }, + "@vx/scale": { + "version": "0.0.165", + "requires": { + "d3-scale": "^2.0.0" + } + }, + "@vx/shape": { + "version": "0.0.165", + "requires": { + "@vx/curve": "0.0.165", + "@vx/group": "0.0.165", + "@vx/point": "0.0.165", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + } + }, + "@vx/tooltip": { + "version": "0.0.165", + "requires": { + "@vx/bounds": "0.0.165", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + } + }, + "d3-scale": { + "version": "2.2.2", + "requires": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + }, + "resize-observer-polyfill": { + "version": "1.5.0" + } + } + }, + "@discoveryjs/json-ext": { + "version": "0.5.5" + }, + "@emotion/babel-plugin": { + "version": "11.3.0", + "requires": { + "@babel/helper-module-imports": "^7.12.13", + "@babel/plugin-syntax-jsx": "^7.12.13", + "@babel/runtime": "^7.13.10", + "@emotion/hash": "^0.8.0", + "@emotion/memoize": "^0.7.5", + "@emotion/serialize": "^1.0.2", + "babel-plugin-macros": "^2.6.1", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "^4.0.3" + } + }, + "@emotion/babel-plugin-jsx-pragmatic": { + "version": "0.1.5", + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + } + }, + "@emotion/babel-preset-css-prop": { + "version": "11.2.0", + "requires": { + "@babel/plugin-transform-react-jsx": "^7.12.1", + "@babel/runtime": "^7.7.2", + "@emotion/babel-plugin": "^11.2.0", + "@emotion/babel-plugin-jsx-pragmatic": "^0.1.5" + } + }, + "@emotion/cache": { + "version": "11.5.0", + "requires": { + "@emotion/memoize": "^0.7.4", + "@emotion/sheet": "^1.0.3", + "@emotion/utils": "^1.0.0", + "@emotion/weak-memoize": "^0.2.5", + "stylis": "^4.0.10" + } + }, + "@emotion/css": { + "version": "10.0.27", + "requires": { + "@emotion/serialize": "^0.11.15", + "@emotion/utils": "0.11.3", + "babel-plugin-emotion": "^10.0.27" + }, + "dependencies": { + "@emotion/memoize": { + "version": "0.7.4" + }, + "@emotion/serialize": { + "version": "0.11.16", + "requires": { + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/unitless": "0.7.5", + "@emotion/utils": "0.11.3", + "csstype": "^2.5.7" + } + }, + "@emotion/utils": { + "version": "0.11.3" + } + } + }, + "@emotion/css-prettifier": { + "version": "1.0.0", + "requires": { + "@emotion/memoize": "^0.7.4", + "stylis": "^4.0.3" + } + }, + "@emotion/hash": { + "version": "0.8.0" + }, + "@emotion/is-prop-valid": { + "version": "1.1.0", + "requires": { + "@emotion/memoize": "^0.7.4" + } + }, + "@emotion/jest": { + "version": "11.5.0", + "requires": { + "@babel/runtime": "^7.13.10", + "@emotion/css-prettifier": "^1.0.0", + "chalk": "^4.1.0", + "specificity": "^0.4.1", + "stylis": "^4.0.10" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@emotion/memoize": { + "version": "0.7.5" + }, + "@emotion/react": { + "version": "11.5.0", + "requires": { + "@babel/runtime": "^7.13.10", + "@emotion/cache": "^11.5.0", + "@emotion/serialize": "^1.0.2", + "@emotion/sheet": "^1.0.3", + "@emotion/utils": "^1.0.0", + "@emotion/weak-memoize": "^0.2.5", + "hoist-non-react-statics": "^3.3.1" + } + }, + "@emotion/serialize": { + "version": "1.0.2", + "requires": { + "@emotion/hash": "^0.8.0", + "@emotion/memoize": "^0.7.4", + "@emotion/unitless": "^0.7.5", + "@emotion/utils": "^1.0.0", + "csstype": "^3.0.2" + }, + "dependencies": { + "csstype": { + "version": "3.0.9" + } + } + }, + "@emotion/sheet": { + "version": "1.0.3" + }, + "@emotion/styled": { + "version": "11.3.0", + "requires": { + "@babel/runtime": "^7.13.10", + "@emotion/babel-plugin": "^11.3.0", + "@emotion/is-prop-valid": "^1.1.0", + "@emotion/serialize": "^1.0.2", + "@emotion/utils": "^1.0.0" + } + }, + "@emotion/stylis": { + "version": "0.8.5" + }, + "@emotion/unitless": { + "version": "0.7.5" + }, + "@emotion/utils": { + "version": "1.0.0" + }, + "@emotion/weak-memoize": { + "version": "0.2.5" + }, + "@encodable/color": { + "version": "1.1.1", + "requires": { + "@encodable/registry": "^1.0.3", + "@types/d3-interpolate": "^1.3.1", + "@types/d3-scale": "^3.1.0", + "@types/d3-scale-chromatic": "^1.2.0", + "d3-interpolate": "^2.0.1", + "d3-scale": "^3.2.1", + "d3-scale-chromatic": "^2.0.0" + }, + "dependencies": { + "@types/d3-scale": { + "version": "3.3.2", + "requires": { + "@types/d3-time": "^2" + } + }, + "@types/d3-time": { + "version": "2.1.1" + }, + "d3-interpolate": { + "version": "2.0.1", + "requires": { + "d3-color": "1 - 2" + } + } + } + }, + "@encodable/format": { + "version": "1.0.6", + "requires": { + "@encodable/registry": "^1.0.3", + "@types/d3-format": "^1.3.1", + "@types/d3-time": "^1.0.10", + "@types/d3-time-format": "^2.1.1", + "d3-format": "^2.0.0", + "d3-time": "^2.0.0", + "d3-time-format": "^3.0.0" + }, + "dependencies": { + "d3-array": { + "version": "2.12.1", + "requires": { + "internmap": "^1.0.0" + } + }, + "d3-format": { + "version": "2.0.0" + }, + "d3-time": { + "version": "2.1.1", + "requires": { + "d3-array": "2" + } + }, + "d3-time-format": { + "version": "3.0.0", + "requires": { + "d3-time": "1 - 2" + } + } + } + }, + "@encodable/registry": { + "version": "1.0.3", + "requires": {} + }, + "@eslint/eslintrc": { + "version": "0.4.3", + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "globals": { + "version": "13.11.0", + "requires": { + "type-fest": "^0.20.2" + } + }, + "ignore": { + "version": "4.0.6" + }, + "strip-json-comments": { + "version": "3.1.1" + }, + "type-fest": { + "version": "0.20.2" + } + } + }, + "@evocateur/libnpmaccess": { + "version": "3.1.2", + "requires": { + "@evocateur/npm-registry-fetch": "^4.0.0", + "aproba": "^2.0.0", + "figgy-pudding": "^3.5.1", + "get-stream": "^4.0.0", + "npm-package-arg": "^6.1.0" + }, + "dependencies": { + "get-stream": { + "version": "4.1.0", + "requires": { + "pump": "^3.0.0" + } + } + } + }, + "@evocateur/libnpmpublish": { + "version": "1.2.2", + "requires": { + "@evocateur/npm-registry-fetch": "^4.0.0", + "aproba": "^2.0.0", + "figgy-pudding": "^3.5.1", + "get-stream": "^4.0.0", + "lodash.clonedeep": "^4.5.0", + "normalize-package-data": "^2.4.0", + "npm-package-arg": "^6.1.0", + "semver": "^5.5.1", + "ssri": "^6.0.1" + }, + "dependencies": { + "get-stream": { + "version": "4.1.0", + "requires": { + "pump": "^3.0.0" + } + }, + "hosted-git-info": { + "version": "2.8.9" + }, + "normalize-package-data": { + "version": "2.5.0", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "semver": { + "version": "5.7.1" + } + } + }, + "@evocateur/npm-registry-fetch": { + "version": "4.0.0", + "requires": { + "bluebird": "^3.5.1", + "figgy-pudding": "^3.4.1", + "JSONStream": "^1.3.4", + "lru-cache": "^5.1.1", + "make-fetch-happen": "^5.0.0", + "npm-package-arg": "^6.1.0", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "lru-cache": { + "version": "5.1.1", + "requires": { + "yallist": "^3.0.2" + } + }, + "yallist": { + "version": "3.1.1" + } + } + }, + "@evocateur/pacote": { + "version": "9.6.5", + "requires": { + "@evocateur/npm-registry-fetch": "^4.0.0", + "bluebird": "^3.5.3", + "cacache": "^12.0.3", + "chownr": "^1.1.2", + "figgy-pudding": "^3.5.1", + "get-stream": "^4.1.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^5.1.1", + "make-fetch-happen": "^5.0.0", + "minimatch": "^3.0.4", + "minipass": "^2.3.5", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "normalize-package-data": "^2.5.0", + "npm-package-arg": "^6.1.0", + "npm-packlist": "^1.4.4", + "npm-pick-manifest": "^3.0.0", + "osenv": "^0.1.5", + "promise-inflight": "^1.0.1", + "promise-retry": "^1.1.1", + "protoduck": "^5.0.1", + "rimraf": "^2.6.3", + "safe-buffer": "^5.2.0", + "semver": "^5.7.0", + "ssri": "^6.0.1", + "tar": "^4.4.10", + "unique-filename": "^1.1.1", + "which": "^1.3.1" + }, + "dependencies": { + "get-stream": { + "version": "4.1.0", + "requires": { + "pump": "^3.0.0" + } + }, + "hosted-git-info": { + "version": "2.8.9" + }, + "lru-cache": { + "version": "5.1.1", + "requires": { + "yallist": "^3.0.2" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "rimraf": { + "version": "2.7.1", + "requires": { + "glob": "^7.1.3" + } + }, + "safe-buffer": { + "version": "5.2.1" + }, + "semver": { + "version": "5.7.1" + }, + "which": { + "version": "1.3.1", + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "3.1.1" + } + } + }, + "@gar/promisify": { + "version": "1.1.2" + }, + "@humanwhocodes/config-array": { + "version": "0.5.0", + "requires": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + } + }, + "@humanwhocodes/object-schema": { + "version": "1.2.0" + }, + "@hutson/parse-repository-url": { + "version": "3.0.2" + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + } + }, + "@istanbuljs/schema": { + "version": "0.1.3" + }, + "@jest/console": { + "version": "26.6.2", + "requires": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^26.6.2", + "jest-util": "^26.6.2", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "slash": { + "version": "3.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/core": { + "version": "26.6.3", + "requires": { + "@jest/console": "^26.6.2", + "@jest/reporters": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^26.6.2", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-resolve-dependencies": "^26.6.3", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "jest-watcher": "^26.6.2", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "slash": { + "version": "3.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/environment": { + "version": "26.6.2", + "requires": { + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2" + } + }, + "@jest/fake-timers": { + "version": "26.6.2", + "requires": { + "@jest/types": "^26.6.2", + "@sinonjs/fake-timers": "^6.0.1", + "@types/node": "*", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + } + }, + "@jest/globals": { + "version": "26.6.2", + "requires": { + "@jest/environment": "^26.6.2", + "@jest/types": "^26.6.2", + "expect": "^26.6.2" + } + }, + "@jest/reporters": { + "version": "26.6.2", + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "node-notifier": "^8.0.0", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^7.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "istanbul-lib-instrument": { + "version": "4.0.3", + "requires": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "slash": { + "version": "3.0.0" + }, + "source-map": { + "version": "0.6.1" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/source-map": { + "version": "26.6.2", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1" + } + } + }, + "@jest/test-result": { + "version": "26.6.2", + "requires": { + "@jest/console": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "26.6.3", + "requires": { + "@jest/test-result": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3" + } + }, + "@jest/transform": { + "version": "26.6.2", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^26.6.2", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-util": "^26.6.2", + "micromatch": "^4.0.2", + "pirates": "^4.0.1", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "slash": { + "version": "3.0.0" + }, + "source-map": { + "version": "0.6.1" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/types": { + "version": "26.6.2", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@lerna/add": { + "version": "3.21.0", + "requires": { + "@evocateur/pacote": "^9.6.3", + "@lerna/bootstrap": "3.21.0", + "@lerna/command": "3.21.0", + "@lerna/filter-options": "3.20.0", + "@lerna/npm-conf": "3.16.0", + "@lerna/validation-error": "3.13.0", + "dedent": "^0.7.0", + "npm-package-arg": "^6.1.0", + "p-map": "^2.1.0", + "semver": "^6.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@lerna/bootstrap": { + "version": "3.21.0", + "requires": { + "@lerna/command": "3.21.0", + "@lerna/filter-options": "3.20.0", + "@lerna/has-npm-version": "3.16.5", + "@lerna/npm-install": "3.16.5", + "@lerna/package-graph": "3.18.5", + "@lerna/pulse-till-done": "3.13.0", + "@lerna/rimraf-dir": "3.16.5", + "@lerna/run-lifecycle": "3.16.2", + "@lerna/run-topologically": "3.18.5", + "@lerna/symlink-binary": "3.17.0", + "@lerna/symlink-dependencies": "3.17.0", + "@lerna/validation-error": "3.13.0", + "dedent": "^0.7.0", + "get-port": "^4.2.0", + "multimatch": "^3.0.0", + "npm-package-arg": "^6.1.0", + "npmlog": "^4.1.2", + "p-finally": "^1.0.0", + "p-map": "^2.1.0", + "p-map-series": "^1.0.0", + "p-waterfall": "^1.0.0", + "read-package-tree": "^5.1.6", + "semver": "^6.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@lerna/changed": { + "version": "3.21.0", + "requires": { + "@lerna/collect-updates": "3.20.0", + "@lerna/command": "3.21.0", + "@lerna/listable": "3.18.5", + "@lerna/output": "3.13.0" + } + }, + "@lerna/check-working-tree": { + "version": "3.16.5", + "requires": { + "@lerna/collect-uncommitted": "3.16.5", + "@lerna/describe-ref": "3.16.5", + "@lerna/validation-error": "3.13.0" + } + }, + "@lerna/child-process": { + "version": "3.16.5", + "requires": { + "chalk": "^2.3.1", + "execa": "^1.0.0", + "strong-log-transformer": "^2.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "requires": { + "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" + } + }, + "get-stream": { + "version": "4.1.0", + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "1.1.0" + }, + "npm-run-path": { + "version": "2.0.2", + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1" + }, + "semver": { + "version": "5.7.1" + }, + "shebang-command": { + "version": "1.2.0", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0" + }, + "which": { + "version": "1.3.1", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "@lerna/clean": { + "version": "3.21.0", + "requires": { + "@lerna/command": "3.21.0", + "@lerna/filter-options": "3.20.0", + "@lerna/prompt": "3.18.5", + "@lerna/pulse-till-done": "3.13.0", + "@lerna/rimraf-dir": "3.16.5", + "p-map": "^2.1.0", + "p-map-series": "^1.0.0", + "p-waterfall": "^1.0.0" + } + }, + "@lerna/cli": { + "version": "3.18.5", + "requires": { + "@lerna/global-options": "3.13.0", + "dedent": "^0.7.0", + "npmlog": "^4.1.2", + "yargs": "^14.2.2" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0" + }, + "cliui": { + "version": "5.0.0", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "emoji-regex": { + "version": "7.0.3" + }, + "find-up": { + "version": "3.0.0", + "requires": { + "locate-path": "^3.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0" + }, + "locate-path": { + "version": "3.0.0", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0" + }, + "string-width": { + "version": "3.1.0", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "yargs": { + "version": "14.2.3", + "requires": { + "cliui": "^5.0.0", + "decamelize": "^1.2.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": "^15.0.1" + } + }, + "yargs-parser": { + "version": "15.0.3", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "@lerna/collect-uncommitted": { + "version": "3.16.5", + "requires": { + "@lerna/child-process": "3.16.5", + "chalk": "^2.3.1", + "figgy-pudding": "^3.5.1", + "npmlog": "^4.1.2" + } + }, + "@lerna/collect-updates": { + "version": "3.20.0", + "requires": { + "@lerna/child-process": "3.16.5", + "@lerna/describe-ref": "3.16.5", + "minimatch": "^3.0.4", + "npmlog": "^4.1.2", + "slash": "^2.0.0" + } + }, + "@lerna/command": { + "version": "3.21.0", + "requires": { + "@lerna/child-process": "3.16.5", + "@lerna/package-graph": "3.18.5", + "@lerna/project": "3.21.0", + "@lerna/validation-error": "3.13.0", + "@lerna/write-log-file": "3.13.0", + "clone-deep": "^4.0.1", + "dedent": "^0.7.0", + "execa": "^1.0.0", + "is-ci": "^2.0.0", + "npmlog": "^4.1.2" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "requires": { + "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" + } + }, + "get-stream": { + "version": "4.1.0", + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "1.1.0" + }, + "npm-run-path": { + "version": "2.0.2", + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1" + }, + "semver": { + "version": "5.7.1" + }, + "shebang-command": { + "version": "1.2.0", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0" + }, + "which": { + "version": "1.3.1", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "@lerna/conventional-commits": { + "version": "3.22.0", + "requires": { + "@lerna/validation-error": "3.13.0", + "conventional-changelog-angular": "^5.0.3", + "conventional-changelog-core": "^3.1.6", + "conventional-recommended-bump": "^5.0.0", + "fs-extra": "^8.1.0", + "get-stream": "^4.0.0", + "lodash.template": "^4.5.0", + "npm-package-arg": "^6.1.0", + "npmlog": "^4.1.2", + "pify": "^4.0.1", + "semver": "^6.2.0" + }, + "dependencies": { + "compare-func": { + "version": "2.0.0", + "requires": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "conventional-changelog-angular": { + "version": "5.0.13", + "requires": { + "compare-func": "^2.0.0", + "q": "^1.5.1" + } + }, + "conventional-changelog-core": { + "version": "3.2.3", + "requires": { + "conventional-changelog-writer": "^4.0.6", + "conventional-commits-parser": "^3.0.3", + "dateformat": "^3.0.0", + "get-pkg-repo": "^1.0.0", + "git-raw-commits": "2.0.0", + "git-remote-origin-url": "^2.0.0", + "git-semver-tags": "^2.0.3", + "lodash": "^4.2.1", + "normalize-package-data": "^2.3.5", + "q": "^1.5.1", + "read-pkg": "^3.0.0", + "read-pkg-up": "^3.0.0", + "through2": "^3.0.0" + }, + "dependencies": { + "through2": { + "version": "3.0.2", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" + } + } + } + }, + "conventional-changelog-writer": { + "version": "4.1.0", + "requires": { + "compare-func": "^2.0.0", + "conventional-commits-filter": "^2.0.7", + "dateformat": "^3.0.0", + "handlebars": "^4.7.6", + "json-stringify-safe": "^5.0.1", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "semver": "^6.0.0", + "split": "^1.0.0", + "through2": "^4.0.0" + } + }, + "conventional-commits-parser": { + "version": "3.2.2", + "requires": { + "is-text-path": "^1.0.1", + "JSONStream": "^1.0.4", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + }, + "dependencies": { + "split2": { + "version": "3.2.2", + "requires": { + "readable-stream": "^3.0.0" + } + } + } + }, + "dot-prop": { + "version": "5.3.0", + "requires": { + "is-obj": "^2.0.0" + } + }, + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "get-pkg-repo": { + "version": "1.4.0", + "requires": { + "hosted-git-info": "^2.1.4", + "meow": "^3.3.0", + "normalize-package-data": "^2.3.0", + "parse-github-repo-url": "^1.3.0", + "through2": "^2.0.0" + }, + "dependencies": { + "camelcase": { + "version": "2.1.1" + }, + "camelcase-keys": { + "version": "2.1.0", + "requires": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + } + }, + "find-up": { + "version": "1.1.2", + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "meow": { + "version": "3.7.0", + "requires": { + "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" + } + }, + "read-pkg": { + "version": "1.1.0", + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "redent": { + "version": "1.0.0", + "requires": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + } + }, + "strip-indent": { + "version": "1.0.1", + "requires": { + "get-stdin": "^4.0.1" + } + }, + "through2": { + "version": "2.0.5", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "trim-newlines": { + "version": "1.0.0" + } + } + }, + "get-stdin": { + "version": "4.0.1" + }, + "get-stream": { + "version": "4.1.0", + "requires": { + "pump": "^3.0.0" + } + }, + "git-raw-commits": { + "version": "2.0.0", + "requires": { + "dargs": "^4.0.1", + "lodash.template": "^4.0.2", + "meow": "^4.0.0", + "split2": "^2.0.0", + "through2": "^2.0.0" + }, + "dependencies": { + "meow": { + "version": "4.0.1", + "requires": { + "camelcase-keys": "^4.0.0", + "decamelize-keys": "^1.0.0", + "loud-rejection": "^1.0.0", + "minimist": "^1.1.3", + "minimist-options": "^3.0.1", + "normalize-package-data": "^2.3.4", + "read-pkg-up": "^3.0.0", + "redent": "^2.0.0", + "trim-newlines": "^2.0.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "through2": { + "version": "2.0.5", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + } + } + }, + "git-semver-tags": { + "version": "2.0.3", + "requires": { + "meow": "^4.0.0", + "semver": "^6.0.0" + }, + "dependencies": { + "meow": { + "version": "4.0.1", + "requires": { + "camelcase-keys": "^4.0.0", + "decamelize-keys": "^1.0.0", + "loud-rejection": "^1.0.0", + "minimist": "^1.1.3", + "minimist-options": "^3.0.1", + "normalize-package-data": "^2.3.4", + "read-pkg-up": "^3.0.0", + "redent": "^2.0.0", + "trim-newlines": "^2.0.0" + } + } + } + }, + "hosted-git-info": { + "version": "2.8.9" + }, + "indent-string": { + "version": "2.1.0", + "requires": { + "repeating": "^2.0.0" + } + }, + "is-obj": { + "version": "2.0.0" + }, + "isarray": { + "version": "1.0.0" + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "load-json-file": { + "version": "1.1.0", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0" + } + } + }, + "locate-path": { + "version": "2.0.0", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "dependencies": { + "path-exists": { + "version": "3.0.0" + } + } + }, + "map-obj": { + "version": "1.0.1" + }, + "meow": { + "version": "8.1.2", + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "dependencies": { + "camelcase-keys": { + "version": "6.2.2", + "requires": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + } + }, + "hosted-git-info": { + "version": "4.0.2", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "indent-string": { + "version": "4.0.0" + }, + "map-obj": { + "version": "4.3.0" + }, + "minimist-options": { + "version": "4.1.0", + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + } + }, + "normalize-package-data": { + "version": "3.0.3", + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, + "parse-json": { + "version": "5.2.0", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "read-pkg": { + "version": "5.2.0", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9" + }, + "normalize-package-data": { + "version": "2.5.0", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "semver": { + "version": "5.7.1" + }, + "type-fest": { + "version": "0.6.0" + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "dependencies": { + "type-fest": { + "version": "0.8.1" + } + } + }, + "redent": { + "version": "3.0.0", + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "trim-newlines": { + "version": "3.0.1" + } + } + }, + "normalize-package-data": { + "version": "2.5.0", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1" + } + } + }, + "p-limit": { + "version": "1.3.0", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0" + }, + "parse-json": { + "version": "2.2.0", + "requires": { + "error-ex": "^1.2.0" + } + }, + "path-exists": { + "version": "2.1.0", + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "path-type": { + "version": "1.1.0", + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0" + } + } + }, + "pify": { + "version": "4.0.1" + }, + "quick-lru": { + "version": "4.0.1" + }, + "read-pkg-up": { + "version": "3.0.0", + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "requires": { + "locate-path": "^2.0.0" + } + } + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "strip-bom": { + "version": "2.0.0", + "requires": { + "is-utf8": "^0.2.0" + } + }, + "type-fest": { + "version": "0.18.1" + }, + "universalify": { + "version": "0.1.2" + }, + "yargs-parser": { + "version": "20.2.9" + } + } + }, + "@lerna/create": { + "version": "3.22.0", + "requires": { + "@evocateur/pacote": "^9.6.3", + "@lerna/child-process": "3.16.5", + "@lerna/command": "3.21.0", + "@lerna/npm-conf": "3.16.0", + "@lerna/validation-error": "3.13.0", + "camelcase": "^5.0.0", + "dedent": "^0.7.0", + "fs-extra": "^8.1.0", + "globby": "^9.2.0", + "init-package-json": "^1.10.3", + "npm-package-arg": "^6.1.0", + "p-reduce": "^1.0.0", + "pify": "^4.0.1", + "semver": "^6.2.0", + "slash": "^2.0.0", + "validate-npm-package-license": "^3.0.3", + "validate-npm-package-name": "^3.0.0", + "whatwg-url": "^7.0.0" + }, + "dependencies": { + "@nodelib/fs.stat": { + "version": "1.1.3" + }, + "array-union": { + "version": "1.0.2", + "requires": { + "array-uniq": "^1.0.1" + } + }, + "braces": { + "version": "2.3.2", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "dir-glob": { + "version": "2.2.2", + "requires": { + "path-type": "^3.0.0" + } + }, + "fast-glob": { + "version": "2.2.7", + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + } + }, + "fill-range": { + "version": "4.0.0", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "glob-parent": { + "version": "3.1.0", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "globby": { + "version": "9.2.0", + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + } + }, + "ignore": { + "version": "4.0.6" + }, + "is-extendable": { + "version": "0.1.1" + }, + "is-number": { + "version": "3.0.0", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "micromatch": { + "version": "3.1.10", + "requires": { + "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" + } + }, + "path-type": { + "version": "3.0.0", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0" + } + } + }, + "pify": { + "version": "4.0.1" + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "to-regex-range": { + "version": "2.1.1", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "tr46": { + "version": "1.0.1", + "requires": { + "punycode": "^2.1.0" + } + }, + "universalify": { + "version": "0.1.2" + }, + "webidl-conversions": { + "version": "4.0.2" + }, + "whatwg-url": { + "version": "7.1.0", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "@lerna/create-symlink": { + "version": "3.16.2", + "requires": { + "@zkochan/cmd-shim": "^3.1.0", + "fs-extra": "^8.1.0", + "npmlog": "^4.1.2" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "@lerna/describe-ref": { + "version": "3.16.5", + "requires": { + "@lerna/child-process": "3.16.5", + "npmlog": "^4.1.2" + } + }, + "@lerna/diff": { + "version": "3.21.0", + "requires": { + "@lerna/child-process": "3.16.5", + "@lerna/command": "3.21.0", + "@lerna/validation-error": "3.13.0", + "npmlog": "^4.1.2" + } + }, + "@lerna/exec": { + "version": "3.21.0", + "requires": { + "@lerna/child-process": "3.16.5", + "@lerna/command": "3.21.0", + "@lerna/filter-options": "3.20.0", + "@lerna/profiler": "3.20.0", + "@lerna/run-topologically": "3.18.5", + "@lerna/validation-error": "3.13.0", + "p-map": "^2.1.0" + } + }, + "@lerna/filter-options": { + "version": "3.20.0", + "requires": { + "@lerna/collect-updates": "3.20.0", + "@lerna/filter-packages": "3.18.0", + "dedent": "^0.7.0", + "figgy-pudding": "^3.5.1", + "npmlog": "^4.1.2" + } + }, + "@lerna/filter-packages": { + "version": "3.18.0", + "requires": { + "@lerna/validation-error": "3.13.0", + "multimatch": "^3.0.0", + "npmlog": "^4.1.2" + } + }, + "@lerna/get-npm-exec-opts": { + "version": "3.13.0", + "requires": { + "npmlog": "^4.1.2" + } + }, + "@lerna/get-packed": { + "version": "3.16.0", + "requires": { + "fs-extra": "^8.1.0", + "ssri": "^6.0.1", + "tar": "^4.4.8" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "@lerna/github-client": { + "version": "3.22.0", + "requires": { + "@lerna/child-process": "3.16.5", + "@octokit/plugin-enterprise-rest": "^6.0.1", + "@octokit/rest": "^16.28.4", + "git-url-parse": "^11.1.2", + "npmlog": "^4.1.2" + } + }, + "@lerna/gitlab-client": { + "version": "3.15.0", + "requires": { + "node-fetch": "^2.5.0", + "npmlog": "^4.1.2", + "whatwg-url": "^7.0.0" + }, + "dependencies": { + "tr46": { + "version": "1.0.1", + "requires": { + "punycode": "^2.1.0" + } + }, + "webidl-conversions": { + "version": "4.0.2" + }, + "whatwg-url": { + "version": "7.1.0", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "@lerna/global-options": { + "version": "3.13.0" + }, + "@lerna/has-npm-version": { + "version": "3.16.5", + "requires": { + "@lerna/child-process": "3.16.5", + "semver": "^6.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@lerna/import": { + "version": "3.22.0", + "requires": { + "@lerna/child-process": "3.16.5", + "@lerna/command": "3.21.0", + "@lerna/prompt": "3.18.5", + "@lerna/pulse-till-done": "3.13.0", + "@lerna/validation-error": "3.13.0", + "dedent": "^0.7.0", + "fs-extra": "^8.1.0", + "p-map-series": "^1.0.0" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "@lerna/info": { + "version": "3.21.0", + "requires": { + "@lerna/command": "3.21.0", + "@lerna/output": "3.13.0", + "envinfo": "^7.3.1" + } + }, + "@lerna/init": { + "version": "3.21.0", + "requires": { + "@lerna/child-process": "3.16.5", + "@lerna/command": "3.21.0", + "fs-extra": "^8.1.0", + "p-map": "^2.1.0", + "write-json-file": "^3.2.0" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "@lerna/link": { + "version": "3.21.0", + "requires": { + "@lerna/command": "3.21.0", + "@lerna/package-graph": "3.18.5", + "@lerna/symlink-dependencies": "3.17.0", + "p-map": "^2.1.0", + "slash": "^2.0.0" + } + }, + "@lerna/list": { + "version": "3.21.0", + "requires": { + "@lerna/command": "3.21.0", + "@lerna/filter-options": "3.20.0", + "@lerna/listable": "3.18.5", + "@lerna/output": "3.13.0" + } + }, + "@lerna/listable": { + "version": "3.18.5", + "requires": { + "@lerna/query-graph": "3.18.5", + "chalk": "^2.3.1", + "columnify": "^1.5.4" + } + }, + "@lerna/log-packed": { + "version": "3.16.0", + "requires": { + "byte-size": "^5.0.1", + "columnify": "^1.5.4", + "has-unicode": "^2.0.1", + "npmlog": "^4.1.2" + } + }, + "@lerna/npm-conf": { + "version": "3.16.0", + "requires": { + "config-chain": "^1.1.11", + "pify": "^4.0.1" + }, + "dependencies": { + "pify": { + "version": "4.0.1" + } + } + }, + "@lerna/npm-dist-tag": { + "version": "3.18.5", + "requires": { + "@evocateur/npm-registry-fetch": "^4.0.0", + "@lerna/otplease": "3.18.5", + "figgy-pudding": "^3.5.1", + "npm-package-arg": "^6.1.0", + "npmlog": "^4.1.2" + } + }, + "@lerna/npm-install": { + "version": "3.16.5", + "requires": { + "@lerna/child-process": "3.16.5", + "@lerna/get-npm-exec-opts": "3.13.0", + "fs-extra": "^8.1.0", + "npm-package-arg": "^6.1.0", + "npmlog": "^4.1.2", + "signal-exit": "^3.0.2", + "write-pkg": "^3.1.0" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "@lerna/npm-publish": { + "version": "3.18.5", + "requires": { + "@evocateur/libnpmpublish": "^1.2.2", + "@lerna/otplease": "3.18.5", + "@lerna/run-lifecycle": "3.16.2", + "figgy-pudding": "^3.5.1", + "fs-extra": "^8.1.0", + "npm-package-arg": "^6.1.0", + "npmlog": "^4.1.2", + "pify": "^4.0.1", + "read-package-json": "^2.0.13" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "pify": { + "version": "4.0.1" + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "@lerna/npm-run-script": { + "version": "3.16.5", + "requires": { + "@lerna/child-process": "3.16.5", + "@lerna/get-npm-exec-opts": "3.13.0", + "npmlog": "^4.1.2" + } + }, + "@lerna/otplease": { + "version": "3.18.5", + "requires": { + "@lerna/prompt": "3.18.5", + "figgy-pudding": "^3.5.1" + } + }, + "@lerna/output": { + "version": "3.13.0", + "requires": { + "npmlog": "^4.1.2" + } + }, + "@lerna/pack-directory": { + "version": "3.16.4", + "requires": { + "@lerna/get-packed": "3.16.0", + "@lerna/package": "3.16.0", + "@lerna/run-lifecycle": "3.16.2", + "figgy-pudding": "^3.5.1", + "npm-packlist": "^1.4.4", + "npmlog": "^4.1.2", + "tar": "^4.4.10", + "temp-write": "^3.4.0" + } + }, + "@lerna/package": { + "version": "3.16.0", + "requires": { + "load-json-file": "^5.3.0", + "npm-package-arg": "^6.1.0", + "write-pkg": "^3.1.0" + } + }, + "@lerna/package-graph": { + "version": "3.18.5", + "requires": { + "@lerna/prerelease-id-from-version": "3.16.0", + "@lerna/validation-error": "3.13.0", + "npm-package-arg": "^6.1.0", + "npmlog": "^4.1.2", + "semver": "^6.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@lerna/prerelease-id-from-version": { + "version": "3.16.0", + "requires": { + "semver": "^6.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@lerna/profiler": { + "version": "3.20.0", + "requires": { + "figgy-pudding": "^3.5.1", + "fs-extra": "^8.1.0", + "npmlog": "^4.1.2", + "upath": "^1.2.0" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "@lerna/project": { + "version": "3.21.0", + "requires": { + "@lerna/package": "3.16.0", + "@lerna/validation-error": "3.13.0", + "cosmiconfig": "^5.1.0", + "dedent": "^0.7.0", + "dot-prop": "^4.2.0", + "glob-parent": "^5.0.0", + "globby": "^9.2.0", + "load-json-file": "^5.3.0", + "npmlog": "^4.1.2", + "p-map": "^2.1.0", + "resolve-from": "^4.0.0", + "write-json-file": "^3.2.0" + }, + "dependencies": { + "@nodelib/fs.stat": { + "version": "1.1.3" + }, + "array-union": { + "version": "1.0.2", + "requires": { + "array-uniq": "^1.0.1" + } + }, + "braces": { + "version": "2.3.2", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "dir-glob": { + "version": "2.2.2", + "requires": { + "path-type": "^3.0.0" + } + }, + "dot-prop": { + "version": "4.2.1", + "requires": { + "is-obj": "^1.0.0" + } + }, + "fast-glob": { + "version": "2.2.7", + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "dependencies": { + "glob-parent": { + "version": "3.1.0", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "requires": { + "is-extglob": "^2.1.0" + } + } + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "globby": { + "version": "9.2.0", + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + } + }, + "ignore": { + "version": "4.0.6" + }, + "is-extendable": { + "version": "0.1.1" + }, + "is-number": { + "version": "3.0.0", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "requires": { + "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" + } + }, + "path-type": { + "version": "3.0.0", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0" + } + } + }, + "pify": { + "version": "4.0.1" + }, + "resolve-from": { + "version": "4.0.0" + }, + "to-regex-range": { + "version": "2.1.1", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "@lerna/prompt": { + "version": "3.18.5", + "requires": { + "inquirer": "^6.2.0", + "npmlog": "^4.1.2" + } + }, + "@lerna/publish": { + "version": "3.22.1", + "requires": { + "@evocateur/libnpmaccess": "^3.1.2", + "@evocateur/npm-registry-fetch": "^4.0.0", + "@evocateur/pacote": "^9.6.3", + "@lerna/check-working-tree": "3.16.5", + "@lerna/child-process": "3.16.5", + "@lerna/collect-updates": "3.20.0", + "@lerna/command": "3.21.0", + "@lerna/describe-ref": "3.16.5", + "@lerna/log-packed": "3.16.0", + "@lerna/npm-conf": "3.16.0", + "@lerna/npm-dist-tag": "3.18.5", + "@lerna/npm-publish": "3.18.5", + "@lerna/otplease": "3.18.5", + "@lerna/output": "3.13.0", + "@lerna/pack-directory": "3.16.4", + "@lerna/prerelease-id-from-version": "3.16.0", + "@lerna/prompt": "3.18.5", + "@lerna/pulse-till-done": "3.13.0", + "@lerna/run-lifecycle": "3.16.2", + "@lerna/run-topologically": "3.18.5", + "@lerna/validation-error": "3.13.0", + "@lerna/version": "3.22.1", + "figgy-pudding": "^3.5.1", + "fs-extra": "^8.1.0", + "npm-package-arg": "^6.1.0", + "npmlog": "^4.1.2", + "p-finally": "^1.0.0", + "p-map": "^2.1.0", + "p-pipe": "^1.2.0", + "semver": "^6.2.0" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "@lerna/pulse-till-done": { + "version": "3.13.0", + "requires": { + "npmlog": "^4.1.2" + } + }, + "@lerna/query-graph": { + "version": "3.18.5", + "requires": { + "@lerna/package-graph": "3.18.5", + "figgy-pudding": "^3.5.1" + } + }, + "@lerna/resolve-symlink": { + "version": "3.16.0", + "requires": { + "fs-extra": "^8.1.0", + "npmlog": "^4.1.2", + "read-cmd-shim": "^1.0.1" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "@lerna/rimraf-dir": { + "version": "3.16.5", + "requires": { + "@lerna/child-process": "3.16.5", + "npmlog": "^4.1.2", + "path-exists": "^3.0.0", + "rimraf": "^2.6.2" + }, + "dependencies": { + "path-exists": { + "version": "3.0.0" + }, + "rimraf": { + "version": "2.7.1", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "@lerna/run": { + "version": "3.21.0", + "requires": { + "@lerna/command": "3.21.0", + "@lerna/filter-options": "3.20.0", + "@lerna/npm-run-script": "3.16.5", + "@lerna/output": "3.13.0", + "@lerna/profiler": "3.20.0", + "@lerna/run-topologically": "3.18.5", + "@lerna/timer": "3.13.0", + "@lerna/validation-error": "3.13.0", + "p-map": "^2.1.0" + } + }, + "@lerna/run-lifecycle": { + "version": "3.16.2", + "requires": { + "@lerna/npm-conf": "3.16.0", + "figgy-pudding": "^3.5.1", + "npm-lifecycle": "^3.1.2", + "npmlog": "^4.1.2" + } + }, + "@lerna/run-topologically": { + "version": "3.18.5", + "requires": { + "@lerna/query-graph": "3.18.5", + "figgy-pudding": "^3.5.1", + "p-queue": "^4.0.0" + } + }, + "@lerna/symlink-binary": { + "version": "3.17.0", + "requires": { + "@lerna/create-symlink": "3.16.2", + "@lerna/package": "3.16.0", + "fs-extra": "^8.1.0", + "p-map": "^2.1.0" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "@lerna/symlink-dependencies": { + "version": "3.17.0", + "requires": { + "@lerna/create-symlink": "3.16.2", + "@lerna/resolve-symlink": "3.16.0", + "@lerna/symlink-binary": "3.17.0", + "fs-extra": "^8.1.0", + "p-finally": "^1.0.0", + "p-map": "^2.1.0", + "p-map-series": "^1.0.0" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "@lerna/timer": { + "version": "3.13.0" + }, + "@lerna/validation-error": { + "version": "3.13.0", + "requires": { + "npmlog": "^4.1.2" + } + }, + "@lerna/version": { + "version": "3.22.1", + "requires": { + "@lerna/check-working-tree": "3.16.5", + "@lerna/child-process": "3.16.5", + "@lerna/collect-updates": "3.20.0", + "@lerna/command": "3.21.0", + "@lerna/conventional-commits": "3.22.0", + "@lerna/github-client": "3.22.0", + "@lerna/gitlab-client": "3.15.0", + "@lerna/output": "3.13.0", + "@lerna/prerelease-id-from-version": "3.16.0", + "@lerna/prompt": "3.18.5", + "@lerna/run-lifecycle": "3.16.2", + "@lerna/run-topologically": "3.18.5", + "@lerna/validation-error": "3.13.0", + "chalk": "^2.3.1", + "dedent": "^0.7.0", + "load-json-file": "^5.3.0", + "minimatch": "^3.0.4", + "npmlog": "^4.1.2", + "p-map": "^2.1.0", + "p-pipe": "^1.2.0", + "p-reduce": "^1.0.0", + "p-waterfall": "^1.0.0", + "semver": "^6.2.0", + "slash": "^2.0.0", + "temp-write": "^3.4.0", + "write-json-file": "^3.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@lerna/write-log-file": { + "version": "3.13.0", + "requires": { + "npmlog": "^4.1.2", + "write-file-atomic": "^2.3.0" + }, + "dependencies": { + "write-file-atomic": { + "version": "2.4.3", + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + } + } + }, + "@mapbox/geojson-area": { + "version": "0.2.2", + "requires": { + "wgs84": "0.0.0" + } + }, + "@mapbox/geojson-rewind": { + "version": "0.4.1", + "requires": { + "@mapbox/geojson-area": "0.2.2", + "concat-stream": "~1.6.0", + "minimist": "^1.2.5", + "sharkdown": "^0.1.0" + }, + "dependencies": { + "concat-stream": { + "version": "1.6.2", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "isarray": { + "version": "1.0.0" + }, + "minimist": { + "version": "1.2.5" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "@mapbox/geojson-types": { + "version": "1.0.2" + }, + "@mapbox/jsonlint-lines-primitives": { + "version": "2.0.2" + }, + "@mapbox/mapbox-gl-supported": { + "version": "1.5.0", + "requires": {} + }, + "@mapbox/point-geometry": { + "version": "0.1.0" + }, + "@mapbox/tiny-sdf": { + "version": "1.2.5" + }, + "@mapbox/unitbezier": { + "version": "0.0.0" + }, + "@mapbox/vector-tile": { + "version": "1.3.1", + "requires": { + "@mapbox/point-geometry": "~0.1.0" + } + }, + "@mapbox/whoots-js": { + "version": "3.1.0" + }, + "@marionebl/sander": { + "version": "0.6.1", + "requires": { + "graceful-fs": "^4.1.3", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.2" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "@mdx-js/mdx": { + "version": "1.6.22", + "requires": { + "@babel/core": "7.12.9", + "@babel/plugin-syntax-jsx": "7.12.1", + "@babel/plugin-syntax-object-rest-spread": "7.8.3", + "@mdx-js/util": "1.6.22", + "babel-plugin-apply-mdx-type-prop": "1.6.22", + "babel-plugin-extract-import-names": "1.6.22", + "camelcase-css": "2.0.1", + "detab": "2.0.4", + "hast-util-raw": "6.0.1", + "lodash.uniq": "4.5.0", + "mdast-util-to-hast": "10.0.1", + "remark-footnotes": "2.0.0", + "remark-mdx": "1.6.22", + "remark-parse": "8.0.3", + "remark-squeeze-paragraphs": "4.0.0", + "style-to-object": "0.3.0", + "unified": "9.2.0", + "unist-builder": "2.0.3", + "unist-util-visit": "2.0.3" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.9", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.5", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.5", + "@babel/parser": "^7.12.7", + "@babel/template": "^7.12.7", + "@babel/traverse": "^7.12.9", + "@babel/types": "^7.12.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.12.1", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "is-buffer": { + "version": "2.0.5" + }, + "is-plain-obj": { + "version": "2.1.0" + }, + "parse-entities": { + "version": "2.0.0", + "requires": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + } + }, + "remark-parse": { + "version": "8.0.3", + "requires": { + "ccount": "^1.0.0", + "collapse-white-space": "^1.0.2", + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-whitespace-character": "^1.0.0", + "is-word-character": "^1.0.0", + "markdown-escapes": "^1.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.5.4", + "state-toggle": "^1.0.0", + "trim": "0.0.1", + "trim-trailing-lines": "^1.0.0", + "unherit": "^1.0.4", + "unist-util-remove-position": "^2.0.0", + "vfile-location": "^3.0.0", + "xtend": "^4.0.1" + } + }, + "semver": { + "version": "5.7.1" + }, + "unified": { + "version": "9.2.0", + "requires": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^2.0.0", + "trough": "^1.0.0", + "vfile": "^4.0.0" + } + }, + "unist-util-is": { + "version": "4.1.0" + }, + "unist-util-remove-position": { + "version": "2.0.1", + "requires": { + "unist-util-visit": "^2.0.0" + } + }, + "unist-util-stringify-position": { + "version": "2.0.3", + "requires": { + "@types/unist": "^2.0.2" + } + }, + "unist-util-visit": { + "version": "2.0.3", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + } + }, + "unist-util-visit-parents": { + "version": "3.1.1", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + } + }, + "vfile": { + "version": "4.2.1", + "requires": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + } + }, + "vfile-location": { + "version": "3.2.0" + }, + "vfile-message": { + "version": "2.0.4", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + } + } + } + }, + "@mdx-js/util": { + "version": "1.6.22" + }, + "@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "requires": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + }, + "dependencies": { + "glob-to-regexp": { + "version": "0.3.0" + } + } + }, + "@nicolo-ribaudo/chokidar-2": { + "version": "2.1.8-no-fsevents.3", + "optional": true + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5" + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@npmcli/fs": { + "version": "1.0.0", + "requires": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "@npmcli/move-file": { + "version": "1.1.2", + "requires": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4" + } + } + }, + "@octokit/auth-token": { + "version": "2.5.0", + "requires": { + "@octokit/types": "^6.0.3" + } + }, + "@octokit/core": { + "version": "3.5.1", + "requires": { + "@octokit/auth-token": "^2.4.4", + "@octokit/graphql": "^4.5.8", + "@octokit/request": "^5.6.0", + "@octokit/request-error": "^2.0.5", + "@octokit/types": "^6.0.3", + "before-after-hook": "^2.2.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/endpoint": { + "version": "6.0.12", + "requires": { + "@octokit/types": "^6.0.3", + "is-plain-object": "^5.0.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/graphql": { + "version": "4.8.0", + "requires": { + "@octokit/request": "^5.6.0", + "@octokit/types": "^6.0.3", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/openapi-types": { + "version": "11.2.0" + }, + "@octokit/plugin-enterprise-rest": { + "version": "6.0.1" + }, + "@octokit/plugin-paginate-rest": { + "version": "2.17.0", + "dev": true, + "requires": { + "@octokit/types": "^6.34.0" + } + }, + "@octokit/plugin-request-log": { + "version": "1.0.4", + "requires": {} + }, + "@octokit/plugin-rest-endpoint-methods": { + "version": "5.13.0", + "dev": true, + "requires": { + "@octokit/types": "^6.34.0", + "deprecation": "^2.3.1" + } + }, + "@octokit/request": { + "version": "5.6.2", + "requires": { + "@octokit/endpoint": "^6.0.1", + "@octokit/request-error": "^2.1.0", + "@octokit/types": "^6.16.1", + "is-plain-object": "^5.0.0", + "node-fetch": "^2.6.1", + "universal-user-agent": "^6.0.0" + }, + "dependencies": { + "node-fetch": { + "version": "2.6.5", + "requires": { + "whatwg-url": "^5.0.0" + } + }, + "tr46": { + "version": "0.0.3" + }, + "webidl-conversions": { + "version": "3.0.1" + }, + "whatwg-url": { + "version": "5.0.0", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + } + } + }, + "@octokit/request-error": { + "version": "2.1.0", + "requires": { + "@octokit/types": "^6.0.3", + "deprecation": "^2.0.0", + "once": "^1.4.0" + } + }, + "@octokit/rest": { + "version": "16.43.2", + "requires": { + "@octokit/auth-token": "^2.4.0", + "@octokit/plugin-paginate-rest": "^1.1.1", + "@octokit/plugin-request-log": "^1.0.0", + "@octokit/plugin-rest-endpoint-methods": "2.4.0", + "@octokit/request": "^5.2.0", + "@octokit/request-error": "^1.0.2", + "atob-lite": "^2.0.0", + "before-after-hook": "^2.0.0", + "btoa-lite": "^1.0.0", + "deprecation": "^2.0.0", + "lodash.get": "^4.4.2", + "lodash.set": "^4.3.2", + "lodash.uniq": "^4.5.0", + "octokit-pagination-methods": "^1.1.0", + "once": "^1.4.0", + "universal-user-agent": "^4.0.0" + }, + "dependencies": { + "@octokit/plugin-paginate-rest": { + "version": "1.1.2", + "requires": { + "@octokit/types": "^2.0.1" + } + }, + "@octokit/plugin-rest-endpoint-methods": { + "version": "2.4.0", + "requires": { + "@octokit/types": "^2.0.1", + "deprecation": "^2.3.1" + } + }, + "@octokit/request-error": { + "version": "1.2.1", + "requires": { + "@octokit/types": "^2.0.0", + "deprecation": "^2.0.0", + "once": "^1.4.0" + } + }, + "@octokit/types": { + "version": "2.16.2", + "requires": { + "@types/node": ">= 8" + } + }, + "universal-user-agent": { + "version": "4.0.1", + "requires": { + "os-name": "^3.1.0" + } + } + } + }, + "@octokit/types": { + "version": "6.34.0", + "requires": { + "@octokit/openapi-types": "^11.2.0" + } + }, + "@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.4.3", + "requires": { + "ansi-html": "^0.0.7", + "error-stack-parser": "^2.0.6", + "html-entities": "^1.2.1", + "native-url": "^0.2.6", + "schema-utils": "^2.6.5", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3" + } + } + }, + "@popperjs/core": { + "version": "2.10.2" + }, + "@reach/router": { + "version": "1.3.4", + "requires": { + "create-react-context": "0.3.0", + "invariant": "^2.2.3", + "prop-types": "^15.6.1", + "react-lifecycles-compat": "^3.0.4" + } + }, + "@react-icons/all-files": { + "version": "4.1.0", + "requires": {} + }, + "@samverschueren/stream-to-observable": { + "version": "0.3.1", + "dev": true, + "requires": { + "any-observable": "^0.3.0" + } + }, + "@sinonjs/commons": { + "version": "1.8.3", + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "6.0.1", + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "@sinonjs/samsam": { + "version": "5.3.1", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.6.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "@sinonjs/text-encoding": { + "version": "0.7.1", + "dev": true + }, + "@storybook/addon-actions": { + "version": "6.3.12", + "requires": { + "@storybook/addons": "6.3.12", + "@storybook/api": "6.3.12", + "@storybook/client-api": "6.3.12", + "@storybook/components": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/theming": "6.3.12", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "polished": "^4.0.5", + "prop-types": "^15.7.2", + "react-inspector": "^5.1.0", + "regenerator-runtime": "^0.13.7", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2", + "uuid-browser": "^3.1.0" + }, + "dependencies": { + "@storybook/client-api": { + "version": "6.3.12", + "requires": { + "@storybook/addons": "6.3.12", + "@storybook/channel-postmessage": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/csf": "0.0.1", + "@types/qs": "^6.9.5", + "@types/webpack-env": "^1.16.0", + "core-js": "^3.8.2", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "regenerator-runtime": "^0.13.7", + "stable": "^0.1.8", + "store2": "^2.12.0", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + } + }, + "react-inspector": { + "version": "5.1.1", + "requires": { + "@babel/runtime": "^7.0.0", + "is-dom": "^1.0.0", + "prop-types": "^15.0.0" + } + } + } + }, + "@storybook/addon-knobs": { + "version": "6.3.1", + "requires": { + "copy-to-clipboard": "^3.3.1", + "core-js": "^3.8.2", + "escape-html": "^1.0.3", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "prop-types": "^15.7.2", + "qs": "^6.10.0", + "react-colorful": "^5.1.2", + "react-lifecycles-compat": "^3.0.4", + "react-select": "^3.2.0" + }, + "dependencies": { + "@emotion/cache": { + "version": "10.0.29", + "requires": { + "@emotion/sheet": "0.9.4", + "@emotion/stylis": "0.8.5", + "@emotion/utils": "0.11.3", + "@emotion/weak-memoize": "0.2.5" + } + }, + "@emotion/memoize": { + "version": "0.7.4" + }, + "@emotion/serialize": { + "version": "0.11.16", + "requires": { + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/unitless": "0.7.5", + "@emotion/utils": "0.11.3", + "csstype": "^2.5.7" + } + }, + "@emotion/sheet": { + "version": "0.9.4" + }, + "@emotion/utils": { + "version": "0.11.3" + }, + "react-colorful": { + "version": "5.5.0", + "requires": {} + }, + "react-select": { + "version": "3.2.0", + "requires": { + "@babel/runtime": "^7.4.4", + "@emotion/cache": "^10.0.9", + "@emotion/core": "^10.0.9", + "@emotion/css": "^10.0.9", + "memoize-one": "^5.0.0", + "prop-types": "^15.6.0", + "react-input-autosize": "^3.0.0", + "react-transition-group": "^4.3.0" + }, + "dependencies": { + "@emotion/core": { + "version": "10.1.1", + "requires": { + "@babel/runtime": "^7.5.5", + "@emotion/cache": "^10.0.27", + "@emotion/css": "^10.0.27", + "@emotion/serialize": "^0.11.15", + "@emotion/sheet": "0.9.4", + "@emotion/utils": "0.11.3" + } + }, + "react-input-autosize": { + "version": "3.0.0", + "requires": { + "prop-types": "^15.5.8" + } + }, + "react-transition-group": { + "version": "4.4.2", + "requires": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + } + } + } + } + } + }, + "@storybook/addon-links": { + "version": "6.3.12", + "requires": { + "@storybook/addons": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/csf": "0.0.1", + "@storybook/router": "6.3.12", + "@types/qs": "^6.9.5", + "core-js": "^3.8.2", + "global": "^4.4.0", + "prop-types": "^15.7.2", + "qs": "^6.10.0", + "regenerator-runtime": "^0.13.7", + "ts-dedent": "^2.0.0" + }, + "dependencies": { + "@storybook/router": { + "version": "6.3.12", + "requires": { + "@reach/router": "^1.3.4", + "@storybook/client-logger": "6.3.12", + "@types/reach__router": "^1.3.7", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "ts-dedent": "^2.0.0" + } + } + } + }, + "@storybook/addons": { + "version": "6.3.12", + "requires": { + "@storybook/api": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/router": "6.3.12", + "@storybook/theming": "6.3.12", + "core-js": "^3.8.2", + "global": "^4.4.0", + "regenerator-runtime": "^0.13.7" + }, + "dependencies": { + "@storybook/router": { + "version": "6.3.12", + "requires": { + "@reach/router": "^1.3.4", + "@storybook/client-logger": "6.3.12", + "@types/reach__router": "^1.3.7", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "ts-dedent": "^2.0.0" + } + } + } + }, + "@storybook/api": { + "version": "6.3.12", + "requires": { + "@reach/router": "^1.3.4", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/csf": "0.0.1", + "@storybook/router": "6.3.12", + "@storybook/semver": "^7.3.2", + "@storybook/theming": "6.3.12", + "@types/reach__router": "^1.3.7", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "regenerator-runtime": "^0.13.7", + "store2": "^2.12.0", + "telejson": "^5.3.2", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": { + "@storybook/router": { + "version": "6.3.12", + "requires": { + "@reach/router": "^1.3.4", + "@storybook/client-logger": "6.3.12", + "@types/reach__router": "^1.3.7", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "ts-dedent": "^2.0.0" + } + } + } + }, + "@storybook/channel-postmessage": { + "version": "6.3.12", + "requires": { + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "core-js": "^3.8.2", + "global": "^4.4.0", + "qs": "^6.10.0", + "telejson": "^5.3.2" + } + }, + "@storybook/channels": { + "version": "6.3.12", + "requires": { + "core-js": "^3.8.2", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + } + }, + "@storybook/client-logger": { + "version": "6.3.12", + "requires": { + "core-js": "^3.8.2", + "global": "^4.4.0" + } + }, + "@storybook/components": { + "version": "6.3.12", + "requires": { + "@popperjs/core": "^2.6.0", + "@storybook/client-logger": "6.3.12", + "@storybook/csf": "0.0.1", + "@storybook/theming": "6.3.12", + "@types/color-convert": "^2.0.0", + "@types/overlayscrollbars": "^1.12.0", + "@types/react-syntax-highlighter": "11.0.5", + "color-convert": "^2.0.1", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "markdown-to-jsx": "^7.1.3", + "memoizerific": "^1.11.3", + "overlayscrollbars": "^1.13.1", + "polished": "^4.0.5", + "prop-types": "^15.7.2", + "react-colorful": "^5.1.2", + "react-popper-tooltip": "^3.1.1", + "react-syntax-highlighter": "^13.5.3", + "react-textarea-autosize": "^8.3.0", + "regenerator-runtime": "^0.13.7", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": { + "markdown-to-jsx": { + "version": "7.1.3", + "requires": {} + }, + "react-colorful": { + "version": "5.5.0", + "requires": {} + }, + "react-popper-tooltip": { + "version": "3.1.1", + "requires": { + "@babel/runtime": "^7.12.5", + "@popperjs/core": "^2.5.4", + "react-popper": "^2.2.4" + }, + "dependencies": { + "react-popper": { + "version": "2.2.5", + "requires": { + "react-fast-compare": "^3.0.1", + "warning": "^4.0.2" + } + } + } + }, + "react-syntax-highlighter": { + "version": "13.5.3", + "requires": { + "@babel/runtime": "^7.3.1", + "highlight.js": "^10.1.1", + "lowlight": "^1.14.0", + "prismjs": "^1.21.0", + "refractor": "^3.1.0" + } + }, + "react-textarea-autosize": { + "version": "8.3.3", + "requires": { + "@babel/runtime": "^7.10.2", + "use-composed-ref": "^1.0.0", + "use-latest": "^1.0.0" + }, + "dependencies": { + "use-composed-ref": { + "version": "1.1.0", + "requires": { + "ts-essentials": "^2.0.3" + } + }, + "use-latest": { + "version": "1.2.0", + "requires": { + "use-isomorphic-layout-effect": "^1.0.0" + }, + "dependencies": { + "use-isomorphic-layout-effect": { + "version": "1.1.1", + "requires": {} + } + } + } + } + } + } + }, + "@storybook/core-events": { + "version": "6.3.12", + "requires": { + "core-js": "^3.8.2" + } + }, + "@storybook/csf": { + "version": "0.0.1", + "requires": { + "lodash": "^4.17.15" + } + }, + "@storybook/csf-tools": { + "version": "6.3.12", + "requires": { + "@babel/generator": "^7.12.11", + "@babel/parser": "^7.12.11", + "@babel/plugin-transform-react-jsx": "^7.12.12", + "@babel/preset-env": "^7.12.11", + "@babel/traverse": "^7.12.11", + "@babel/types": "^7.12.11", + "@mdx-js/mdx": "^1.6.22", + "@storybook/csf": "^0.0.1", + "core-js": "^3.8.2", + "fs-extra": "^9.0.1", + "js-string-escape": "^1.0.1", + "lodash": "^4.17.20", + "prettier": "~2.2.1", + "regenerator-runtime": "^0.13.7" + }, + "dependencies": { + "prettier": { + "version": "2.2.1" + } + } + }, + "@storybook/node-logger": { + "version": "5.3.21", + "requires": { + "@types/npmlog": "^4.1.2", + "chalk": "^3.0.0", + "core-js": "^3.0.1", + "npmlog": "^4.1.2", + "pretty-hrtime": "^1.0.3", + "regenerator-runtime": "^0.13.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@storybook/preset-typescript": { + "version": "3.0.0", + "requires": { + "@babel/preset-typescript": "^7.8.3", + "@storybook/node-logger": "^5.3.17", + "@types/babel__core": "^7.1.6", + "babel-preset-typescript-vue": "^1.0.3", + "fork-ts-checker-webpack-plugin": "^4.1.0" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fork-ts-checker-webpack-plugin": { + "version": "4.1.6", + "requires": { + "@babel/code-frame": "^7.5.5", + "chalk": "^2.4.1", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + } + }, + "is-extendable": { + "version": "0.1.1" + }, + "is-number": { + "version": "3.0.0", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "requires": { + "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" + } + }, + "semver": { + "version": "5.7.1" + }, + "tapable": { + "version": "1.1.3" + }, + "to-regex-range": { + "version": "2.1.1", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "@storybook/react": { + "version": "6.3.12", + "requires": { + "@babel/preset-flow": "^7.12.1", + "@babel/preset-react": "^7.12.10", + "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", + "@storybook/addons": "6.3.12", + "@storybook/core": "6.3.12", + "@storybook/core-common": "6.3.12", + "@storybook/node-logger": "6.3.12", + "@storybook/react-docgen-typescript-plugin": "1.0.2-canary.253f8c1.0", + "@storybook/semver": "^7.3.2", + "@types/webpack-env": "^1.16.0", + "babel-plugin-add-react-displayname": "^0.0.5", + "babel-plugin-named-asset-import": "^0.3.1", + "babel-plugin-react-docgen": "^4.2.1", + "core-js": "^3.8.2", + "global": "^4.4.0", + "lodash": "^4.17.20", + "prop-types": "^15.7.2", + "react-dev-utils": "^11.0.3", + "react-refresh": "^0.8.3", + "read-pkg-up": "^7.0.1", + "regenerator-runtime": "^0.13.7", + "ts-dedent": "^2.0.0", + "webpack": "4" + }, + "dependencies": { + "@babel/helper-define-polyfill-provider": { + "version": "0.1.5", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@emotion/cache": { + "version": "10.0.29", + "requires": { + "@emotion/sheet": "0.9.4", + "@emotion/stylis": "0.8.5", + "@emotion/utils": "0.11.3", + "@emotion/weak-memoize": "0.2.5" + } + }, + "@emotion/memoize": { + "version": "0.7.4" + }, + "@emotion/serialize": { + "version": "0.11.16", + "requires": { + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/unitless": "0.7.5", + "@emotion/utils": "0.11.3", + "csstype": "^2.5.7" + } + }, + "@emotion/sheet": { + "version": "0.9.4" + }, + "@emotion/utils": { + "version": "0.11.3" + }, + "@storybook/core": { + "version": "6.3.12", + "requires": { + "@storybook/core-client": "6.3.12", + "@storybook/core-server": "6.3.12" + }, + "dependencies": { + "@storybook/core-client": { + "version": "6.3.12", + "requires": { + "@storybook/addons": "6.3.12", + "@storybook/channel-postmessage": "6.3.12", + "@storybook/client-api": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/csf": "0.0.1", + "@storybook/ui": "6.3.12", + "airbnb-js-shims": "^2.2.1", + "ansi-to-html": "^0.6.11", + "core-js": "^3.8.2", + "global": "^4.4.0", + "lodash": "^4.17.20", + "qs": "^6.10.0", + "regenerator-runtime": "^0.13.7", + "ts-dedent": "^2.0.0", + "unfetch": "^4.2.0", + "util-deprecate": "^1.0.2" + }, + "dependencies": { + "@storybook/client-api": { + "version": "6.3.12", + "requires": { + "@storybook/addons": "6.3.12", + "@storybook/channel-postmessage": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/csf": "0.0.1", + "@types/qs": "^6.9.5", + "@types/webpack-env": "^1.16.0", + "core-js": "^3.8.2", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "regenerator-runtime": "^0.13.7", + "stable": "^0.1.8", + "store2": "^2.12.0", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + } + }, + "@storybook/ui": { + "version": "6.3.12", + "requires": { + "@emotion/core": "^10.1.1", + "@storybook/addons": "6.3.12", + "@storybook/api": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/components": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/router": "6.3.12", + "@storybook/semver": "^7.3.2", + "@storybook/theming": "6.3.12", + "@types/markdown-to-jsx": "^6.11.3", + "copy-to-clipboard": "^3.3.1", + "core-js": "^3.8.2", + "core-js-pure": "^3.8.2", + "downshift": "^6.0.15", + "emotion-theming": "^10.0.27", + "fuse.js": "^3.6.1", + "global": "^4.4.0", + "lodash": "^4.17.20", + "markdown-to-jsx": "^6.11.4", + "memoizerific": "^1.11.3", + "polished": "^4.0.5", + "qs": "^6.10.0", + "react-draggable": "^4.4.3", + "react-helmet-async": "^1.0.7", + "react-sizeme": "^3.0.1", + "regenerator-runtime": "^0.13.7", + "resolve-from": "^5.0.0", + "store2": "^2.12.0" + }, + "dependencies": { + "@emotion/core": { + "version": "10.1.1", + "requires": { + "@babel/runtime": "^7.5.5", + "@emotion/cache": "^10.0.27", + "@emotion/css": "^10.0.27", + "@emotion/serialize": "^0.11.15", + "@emotion/sheet": "0.9.4", + "@emotion/utils": "0.11.3" + } + }, + "@storybook/router": { + "version": "6.3.12", + "requires": { + "@reach/router": "^1.3.4", + "@storybook/client-logger": "6.3.12", + "@types/reach__router": "^1.3.7", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "ts-dedent": "^2.0.0" + } + }, + "downshift": { + "version": "6.1.7", + "requires": { + "@babel/runtime": "^7.14.8", + "compute-scroll-into-view": "^1.0.17", + "prop-types": "^15.7.2", + "react-is": "^17.0.2", + "tslib": "^2.3.0" + } + }, + "emotion-theming": { + "version": "10.0.27", + "requires": { + "@babel/runtime": "^7.5.5", + "@emotion/weak-memoize": "0.2.5", + "hoist-non-react-statics": "^3.3.0" + } + }, + "markdown-to-jsx": { + "version": "6.11.4", + "requires": { + "prop-types": "^15.6.2", + "unquote": "^1.1.0" + } + }, + "react-draggable": { + "version": "4.4.4", + "requires": { + "clsx": "^1.1.1", + "prop-types": "^15.6.0" + } + }, + "react-helmet-async": { + "version": "1.1.2", + "requires": { + "@babel/runtime": "^7.12.5", + "invariant": "^2.2.4", + "prop-types": "^15.7.2", + "react-fast-compare": "^3.2.0", + "shallowequal": "^1.1.0" + } + } + } + } + } + }, + "@storybook/core-server": { + "version": "6.3.12", + "requires": { + "@discoveryjs/json-ext": "^0.5.3", + "@storybook/builder-webpack4": "6.3.12", + "@storybook/core-client": "6.3.12", + "@storybook/core-common": "6.3.12", + "@storybook/csf-tools": "6.3.12", + "@storybook/manager-webpack4": "6.3.12", + "@storybook/node-logger": "6.3.12", + "@storybook/semver": "^7.3.2", + "@types/node": "^14.0.10", + "@types/node-fetch": "^2.5.7", + "@types/pretty-hrtime": "^1.0.0", + "@types/webpack": "^4.41.26", + "better-opn": "^2.1.1", + "boxen": "^4.2.0", + "chalk": "^4.1.0", + "cli-table3": "0.6.0", + "commander": "^6.2.1", + "compression": "^1.7.4", + "core-js": "^3.8.2", + "cpy": "^8.1.1", + "detect-port": "^1.3.0", + "express": "^4.17.1", + "file-system-cache": "^1.0.5", + "fs-extra": "^9.0.1", + "globby": "^11.0.2", + "ip": "^1.1.5", + "node-fetch": "^2.6.1", + "pretty-hrtime": "^1.0.3", + "prompts": "^2.4.0", + "regenerator-runtime": "^0.13.7", + "serve-favicon": "^2.5.0", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2", + "webpack": "4" + }, + "dependencies": { + "@storybook/builder-webpack4": { + "version": "6.3.12", + "requires": { + "@babel/core": "^7.12.10", + "@babel/plugin-proposal-class-properties": "^7.12.1", + "@babel/plugin-proposal-decorators": "^7.12.12", + "@babel/plugin-proposal-export-default-from": "^7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", + "@babel/plugin-proposal-object-rest-spread": "^7.12.1", + "@babel/plugin-proposal-optional-chaining": "^7.12.7", + "@babel/plugin-proposal-private-methods": "^7.12.1", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-arrow-functions": "^7.12.1", + "@babel/plugin-transform-block-scoping": "^7.12.12", + "@babel/plugin-transform-classes": "^7.12.1", + "@babel/plugin-transform-destructuring": "^7.12.1", + "@babel/plugin-transform-for-of": "^7.12.1", + "@babel/plugin-transform-parameters": "^7.12.1", + "@babel/plugin-transform-shorthand-properties": "^7.12.1", + "@babel/plugin-transform-spread": "^7.12.1", + "@babel/plugin-transform-template-literals": "^7.12.1", + "@babel/preset-env": "^7.12.11", + "@babel/preset-react": "^7.12.10", + "@babel/preset-typescript": "^7.12.7", + "@storybook/addons": "6.3.12", + "@storybook/api": "6.3.12", + "@storybook/channel-postmessage": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-api": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/components": "6.3.12", + "@storybook/core-common": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/node-logger": "6.3.12", + "@storybook/router": "6.3.12", + "@storybook/semver": "^7.3.2", + "@storybook/theming": "6.3.12", + "@storybook/ui": "6.3.12", + "@types/node": "^14.0.10", + "@types/webpack": "^4.41.26", + "autoprefixer": "^9.8.6", + "babel-loader": "^8.2.2", + "babel-plugin-macros": "^2.8.0", + "babel-plugin-polyfill-corejs3": "^0.1.0", + "case-sensitive-paths-webpack-plugin": "^2.3.0", + "core-js": "^3.8.2", + "css-loader": "^3.6.0", + "dotenv-webpack": "^1.8.0", + "file-loader": "^6.2.0", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^4.1.6", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "glob-promise": "^3.4.0", + "global": "^4.4.0", + "html-webpack-plugin": "^4.0.0", + "pnp-webpack-plugin": "1.6.4", + "postcss": "^7.0.36", + "postcss-flexbugs-fixes": "^4.2.1", + "postcss-loader": "^4.2.0", + "raw-loader": "^4.0.2", + "react-dev-utils": "^11.0.3", + "stable": "^0.1.8", + "style-loader": "^1.3.0", + "terser-webpack-plugin": "^4.2.3", + "ts-dedent": "^2.0.0", + "url-loader": "^4.1.1", + "util-deprecate": "^1.0.2", + "webpack": "4", + "webpack-dev-middleware": "^3.7.3", + "webpack-filter-warnings-plugin": "^1.2.1", + "webpack-hot-middleware": "^2.25.0", + "webpack-virtual-modules": "^0.2.2" + }, + "dependencies": { + "@storybook/client-api": { + "version": "6.3.12", + "requires": { + "@storybook/addons": "6.3.12", + "@storybook/channel-postmessage": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/csf": "0.0.1", + "@types/qs": "^6.9.5", + "@types/webpack-env": "^1.16.0", + "core-js": "^3.8.2", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "regenerator-runtime": "^0.13.7", + "stable": "^0.1.8", + "store2": "^2.12.0", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + } + }, + "@storybook/router": { + "version": "6.3.12", + "requires": { + "@reach/router": "^1.3.4", + "@storybook/client-logger": "6.3.12", + "@types/reach__router": "^1.3.7", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "ts-dedent": "^2.0.0" + } + }, + "@storybook/ui": { + "version": "6.3.12", + "requires": { + "@emotion/core": "^10.1.1", + "@storybook/addons": "6.3.12", + "@storybook/api": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/components": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/router": "6.3.12", + "@storybook/semver": "^7.3.2", + "@storybook/theming": "6.3.12", + "@types/markdown-to-jsx": "^6.11.3", + "copy-to-clipboard": "^3.3.1", + "core-js": "^3.8.2", + "core-js-pure": "^3.8.2", + "downshift": "^6.0.15", + "emotion-theming": "^10.0.27", + "fuse.js": "^3.6.1", + "global": "^4.4.0", + "lodash": "^4.17.20", + "markdown-to-jsx": "^6.11.4", + "memoizerific": "^1.11.3", + "polished": "^4.0.5", + "qs": "^6.10.0", + "react-draggable": "^4.4.3", + "react-helmet-async": "^1.0.7", + "react-sizeme": "^3.0.1", + "regenerator-runtime": "^0.13.7", + "resolve-from": "^5.0.0", + "store2": "^2.12.0" + }, + "dependencies": { + "@emotion/core": { + "version": "10.1.1", + "requires": { + "@babel/runtime": "^7.5.5", + "@emotion/cache": "^10.0.27", + "@emotion/css": "^10.0.27", + "@emotion/serialize": "^0.11.15", + "@emotion/sheet": "0.9.4", + "@emotion/utils": "0.11.3" + } + }, + "downshift": { + "version": "6.1.7", + "requires": { + "@babel/runtime": "^7.14.8", + "compute-scroll-into-view": "^1.0.17", + "prop-types": "^15.7.2", + "react-is": "^17.0.2", + "tslib": "^2.3.0" + } + }, + "emotion-theming": { + "version": "10.0.27", + "requires": { + "@babel/runtime": "^7.5.5", + "@emotion/weak-memoize": "0.2.5", + "hoist-non-react-statics": "^3.3.0" + } + }, + "markdown-to-jsx": { + "version": "6.11.4", + "requires": { + "prop-types": "^15.6.2", + "unquote": "^1.1.0" + } + }, + "react-draggable": { + "version": "4.4.4", + "requires": { + "clsx": "^1.1.1", + "prop-types": "^15.6.0" + } + }, + "react-helmet-async": { + "version": "1.1.2", + "requires": { + "@babel/runtime": "^7.12.5", + "invariant": "^2.2.4", + "prop-types": "^15.7.2", + "react-fast-compare": "^3.2.0", + "shallowequal": "^1.1.0" + } + } + } + } + } + }, + "@storybook/manager-webpack4": { + "version": "6.3.12", + "requires": { + "@babel/core": "^7.12.10", + "@babel/plugin-transform-template-literals": "^7.12.1", + "@babel/preset-react": "^7.12.10", + "@storybook/addons": "6.3.12", + "@storybook/core-client": "6.3.12", + "@storybook/core-common": "6.3.12", + "@storybook/node-logger": "6.3.12", + "@storybook/theming": "6.3.12", + "@storybook/ui": "6.3.12", + "@types/node": "^14.0.10", + "@types/webpack": "^4.41.26", + "babel-loader": "^8.2.2", + "case-sensitive-paths-webpack-plugin": "^2.3.0", + "chalk": "^4.1.0", + "core-js": "^3.8.2", + "css-loader": "^3.6.0", + "dotenv-webpack": "^1.8.0", + "express": "^4.17.1", + "file-loader": "^6.2.0", + "file-system-cache": "^1.0.5", + "find-up": "^5.0.0", + "fs-extra": "^9.0.1", + "html-webpack-plugin": "^4.0.0", + "node-fetch": "^2.6.1", + "pnp-webpack-plugin": "1.6.4", + "read-pkg-up": "^7.0.1", + "regenerator-runtime": "^0.13.7", + "resolve-from": "^5.0.0", + "style-loader": "^1.3.0", + "telejson": "^5.3.2", + "terser-webpack-plugin": "^4.2.3", + "ts-dedent": "^2.0.0", + "url-loader": "^4.1.1", + "util-deprecate": "^1.0.2", + "webpack": "4", + "webpack-dev-middleware": "^3.7.3", + "webpack-virtual-modules": "^0.2.2" + }, + "dependencies": { + "@storybook/ui": { + "version": "6.3.12", + "requires": { + "@emotion/core": "^10.1.1", + "@storybook/addons": "6.3.12", + "@storybook/api": "6.3.12", + "@storybook/channels": "6.3.12", + "@storybook/client-logger": "6.3.12", + "@storybook/components": "6.3.12", + "@storybook/core-events": "6.3.12", + "@storybook/router": "6.3.12", + "@storybook/semver": "^7.3.2", + "@storybook/theming": "6.3.12", + "@types/markdown-to-jsx": "^6.11.3", + "copy-to-clipboard": "^3.3.1", + "core-js": "^3.8.2", + "core-js-pure": "^3.8.2", + "downshift": "^6.0.15", + "emotion-theming": "^10.0.27", + "fuse.js": "^3.6.1", + "global": "^4.4.0", + "lodash": "^4.17.20", + "markdown-to-jsx": "^6.11.4", + "memoizerific": "^1.11.3", + "polished": "^4.0.5", + "qs": "^6.10.0", + "react-draggable": "^4.4.3", + "react-helmet-async": "^1.0.7", + "react-sizeme": "^3.0.1", + "regenerator-runtime": "^0.13.7", + "resolve-from": "^5.0.0", + "store2": "^2.12.0" + }, + "dependencies": { + "@emotion/core": { + "version": "10.1.1", + "requires": { + "@babel/runtime": "^7.5.5", + "@emotion/cache": "^10.0.27", + "@emotion/css": "^10.0.27", + "@emotion/serialize": "^0.11.15", + "@emotion/sheet": "0.9.4", + "@emotion/utils": "0.11.3" + } + }, + "@storybook/router": { + "version": "6.3.12", + "requires": { + "@reach/router": "^1.3.4", + "@storybook/client-logger": "6.3.12", + "@types/reach__router": "^1.3.7", + "core-js": "^3.8.2", + "fast-deep-equal": "^3.1.3", + "global": "^4.4.0", + "lodash": "^4.17.20", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "ts-dedent": "^2.0.0" + } + }, + "downshift": { + "version": "6.1.7", + "requires": { + "@babel/runtime": "^7.14.8", + "compute-scroll-into-view": "^1.0.17", + "prop-types": "^15.7.2", + "react-is": "^17.0.2", + "tslib": "^2.3.0" + } + }, + "emotion-theming": { + "version": "10.0.27", + "requires": { + "@babel/runtime": "^7.5.5", + "@emotion/weak-memoize": "0.2.5", + "hoist-non-react-statics": "^3.3.0" + } + }, + "markdown-to-jsx": { + "version": "6.11.4", + "requires": { + "prop-types": "^15.6.2", + "unquote": "^1.1.0" + } + }, + "react-draggable": { + "version": "4.4.4", + "requires": { + "clsx": "^1.1.1", + "prop-types": "^15.6.0" + } + }, + "react-helmet-async": { + "version": "1.1.2", + "requires": { + "@babel/runtime": "^7.12.5", + "invariant": "^2.2.4", + "prop-types": "^15.7.2", + "react-fast-compare": "^3.2.0", + "shallowequal": "^1.1.0" + } + } + } + } + } + } + } + }, + "ansi-styles": { + "version": "3.2.1", + "requires": { + "color-convert": "^1.9.0" + } + }, + "babel-plugin-macros": { + "version": "2.8.0", + "requires": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" + } + }, + "color-convert": { + "version": "1.9.3", + "requires": { + "color-name": "1.1.3" + } + }, + "cosmiconfig": { + "version": "6.0.0", + "requires": { + "@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" + } + }, + "fork-ts-checker-webpack-plugin": { + "version": "4.1.6", + "requires": { + "@babel/code-frame": "^7.5.5", + "chalk": "^2.4.1", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + } + } + }, + "has-flag": { + "version": "3.0.0" + }, + "micromatch": { + "version": "3.1.10", + "requires": { + "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" + } + }, + "semver": { + "version": "5.7.1" + }, + "supports-color": { + "version": "5.5.0", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@storybook/core-common": { + "version": "6.3.12", + "requires": { + "@babel/core": "^7.12.10", + "@babel/plugin-proposal-class-properties": "^7.12.1", + "@babel/plugin-proposal-decorators": "^7.12.12", + "@babel/plugin-proposal-export-default-from": "^7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", + "@babel/plugin-proposal-object-rest-spread": "^7.12.1", + "@babel/plugin-proposal-optional-chaining": "^7.12.7", + "@babel/plugin-proposal-private-methods": "^7.12.1", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-arrow-functions": "^7.12.1", + "@babel/plugin-transform-block-scoping": "^7.12.12", + "@babel/plugin-transform-classes": "^7.12.1", + "@babel/plugin-transform-destructuring": "^7.12.1", + "@babel/plugin-transform-for-of": "^7.12.1", + "@babel/plugin-transform-parameters": "^7.12.1", + "@babel/plugin-transform-shorthand-properties": "^7.12.1", + "@babel/plugin-transform-spread": "^7.12.1", + "@babel/preset-env": "^7.12.11", + "@babel/preset-react": "^7.12.10", + "@babel/preset-typescript": "^7.12.7", + "@babel/register": "^7.12.1", + "@storybook/node-logger": "6.3.12", + "@storybook/semver": "^7.3.2", + "@types/glob-base": "^0.3.0", + "@types/micromatch": "^4.0.1", + "@types/node": "^14.0.10", + "@types/pretty-hrtime": "^1.0.0", + "babel-loader": "^8.2.2", + "babel-plugin-macros": "^3.0.1", + "babel-plugin-polyfill-corejs3": "^0.1.0", + "chalk": "^4.1.0", + "core-js": "^3.8.2", + "express": "^4.17.1", + "file-system-cache": "^1.0.5", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.0.4", + "glob": "^7.1.6", + "glob-base": "^0.3.0", + "interpret": "^2.2.0", + "json5": "^2.1.3", + "lazy-universal-dotenv": "^3.0.1", + "micromatch": "^4.0.2", + "pkg-dir": "^5.0.0", + "pretty-hrtime": "^1.0.3", + "resolve-from": "^5.0.0", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2", + "webpack": "4" + } + }, + "@storybook/node-logger": { + "version": "6.3.12", + "requires": { + "@types/npmlog": "^4.1.2", + "chalk": "^4.1.0", + "core-js": "^3.8.2", + "npmlog": "^4.1.2", + "pretty-hrtime": "^1.0.3" + } + }, + "@types/node": { + "version": "14.17.27" + }, + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "babel-plugin-macros": { + "version": "3.1.0", + "requires": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.1.7", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.1.5", + "core-js-compat": "^3.8.1" + } + }, + "braces": { + "version": "2.3.2", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "cacache": { + "version": "15.3.0", + "requires": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "chownr": { + "version": "2.0.0" + }, + "color-name": { + "version": "1.1.3" + }, + "commander": { + "version": "6.2.1" + }, + "cosmiconfig": { + "version": "7.0.1", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "escape-string-regexp": { + "version": "1.0.5" + }, + "fill-range": { + "version": "4.0.0", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "find-cache-dir": { + "version": "3.3.2", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "requires": { + "p-limit": "^2.2.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "requires": { + "find-up": "^4.0.0" + } + } + } + }, + "find-up": { + "version": "5.0.0", + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "fork-ts-checker-webpack-plugin": { + "version": "6.3.5", + "requires": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "6.0.0", + "requires": { + "@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" + } + } + } + }, + "fs-minipass": { + "version": "2.1.0", + "requires": { + "minipass": "^3.0.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "interpret": { + "version": "2.2.0" + }, + "is-extendable": { + "version": "0.1.1" + }, + "is-number": { + "version": "3.0.0", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "locate-path": { + "version": "6.0.0", + "requires": { + "p-locate": "^5.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "minipass": { + "version": "3.1.5", + "requires": { + "yallist": "^4.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mkdirp": { + "version": "1.0.4" + }, + "node-fetch": { + "version": "2.6.5", + "requires": { + "whatwg-url": "^5.0.0" + } + }, + "p-locate": { + "version": "5.0.0", + "requires": { + "p-limit": "^3.0.2" + } + }, + "p-map": { + "version": "4.0.0", + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "parse-json": { + "version": "5.2.0", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "pkg-dir": { + "version": "5.0.0", + "requires": { + "find-up": "^5.0.0" + } + }, + "react-is": { + "version": "17.0.2" + }, + "schema-utils": { + "version": "2.7.0", + "requires": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + } + }, + "serialize-javascript": { + "version": "5.0.1", + "requires": { + "randombytes": "^2.1.0" + } + }, + "source-map": { + "version": "0.6.1" + }, + "ssri": { + "version": "8.0.1", + "requires": { + "minipass": "^3.1.1" + } + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + }, + "tapable": { + "version": "1.1.3" + }, + "tar": { + "version": "6.1.11", + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + } + }, + "terser": { + "version": "5.9.0", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.20" + }, + "dependencies": { + "commander": { + "version": "2.20.3" + }, + "source-map": { + "version": "0.7.3" + } + } + }, + "terser-webpack-plugin": { + "version": "4.2.3", + "requires": { + "cacache": "^15.0.5", + "find-cache-dir": "^3.3.1", + "jest-worker": "^26.5.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1", + "terser": "^5.3.4", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "schema-utils": { + "version": "3.1.1", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "to-regex-range": { + "version": "2.1.1", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "tr46": { + "version": "0.0.3" + }, + "webidl-conversions": { + "version": "3.0.1" + }, + "whatwg-url": { + "version": "5.0.0", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + } + } + }, + "@storybook/react-docgen-typescript-plugin": { + "version": "1.0.2-canary.253f8c1.0", + "requires": { + "debug": "^4.1.1", + "endent": "^2.0.1", + "find-cache-dir": "^3.3.1", + "flat-cache": "^3.0.4", + "micromatch": "^4.0.2", + "react-docgen-typescript": "^2.0.0", + "tslib": "^2.0.0" + }, + "dependencies": { + "find-cache-dir": { + "version": "3.3.2", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "make-dir": { + "version": "3.1.0", + "requires": { + "semver": "^6.0.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "requires": { + "find-up": "^4.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@storybook/semver": { + "version": "7.3.2", + "requires": { + "core-js": "^3.6.5", + "find-up": "^4.1.0" + } + }, + "@storybook/theming": { + "version": "6.3.12", + "requires": { + "@emotion/core": "^10.1.1", + "@emotion/is-prop-valid": "^0.8.6", + "@emotion/styled": "^10.0.27", + "@storybook/client-logger": "6.3.12", + "core-js": "^3.8.2", + "deep-object-diff": "^1.1.0", + "emotion-theming": "^10.0.27", + "global": "^4.4.0", + "memoizerific": "^1.11.3", + "polished": "^4.0.5", + "resolve-from": "^5.0.0", + "ts-dedent": "^2.0.0" + }, + "dependencies": { + "@emotion/cache": { + "version": "10.0.29", + "requires": { + "@emotion/sheet": "0.9.4", + "@emotion/stylis": "0.8.5", + "@emotion/utils": "0.11.3", + "@emotion/weak-memoize": "0.2.5" + } + }, + "@emotion/core": { + "version": "10.1.1", + "requires": { + "@babel/runtime": "^7.5.5", + "@emotion/cache": "^10.0.27", + "@emotion/css": "^10.0.27", + "@emotion/serialize": "^0.11.15", + "@emotion/sheet": "0.9.4", + "@emotion/utils": "0.11.3" + } + }, + "@emotion/is-prop-valid": { + "version": "0.8.8", + "requires": { + "@emotion/memoize": "0.7.4" + } + }, + "@emotion/memoize": { + "version": "0.7.4" + }, + "@emotion/serialize": { + "version": "0.11.16", + "requires": { + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/unitless": "0.7.5", + "@emotion/utils": "0.11.3", + "csstype": "^2.5.7" + } + }, + "@emotion/sheet": { + "version": "0.9.4" + }, + "@emotion/styled": { + "version": "10.0.27", + "requires": { + "@emotion/styled-base": "^10.0.27", + "babel-plugin-emotion": "^10.0.27" + }, + "dependencies": { + "@emotion/styled-base": { + "version": "10.0.31", + "requires": { + "@babel/runtime": "^7.5.5", + "@emotion/is-prop-valid": "0.8.8", + "@emotion/serialize": "^0.11.15", + "@emotion/utils": "0.11.3" + } + } + } + }, + "@emotion/utils": { + "version": "0.11.3" + }, + "emotion-theming": { + "version": "10.0.27", + "requires": { + "@babel/runtime": "^7.5.5", + "@emotion/weak-memoize": "0.2.5", + "hoist-non-react-statics": "^3.3.0" + } + } + } + }, + "@superset-ui/chart-controls": { + "version": "file:packages/superset-ui-chart-controls", + "requires": { + "@react-icons/all-files": "^4.1.0", + "@superset-ui/core": "0.18.25", + "lodash": "^4.17.15", + "prop-types": "^15.7.2" + } + }, + "@superset-ui/commit-config": { + "version": "0.0.9", + "requires": { + "@commitlint/cli": "^7.5.2", + "@commitlint/config-conventional": "^7.5.0", + "@commitlint/config-lerna-scopes": "^7.5.1", + "commitizen": "^3.0.7", + "conventional-changelog": "^3.0.6", + "conventional-changelog-cli": "^2.0.12", + "cz-conventional-changelog": "^2.1.0" + } + }, + "@superset-ui/core": { + "version": "file:packages/superset-ui-core", + "requires": { + "@babel/runtime": "^7.1.2", + "@emotion/styled": "^11.3.0", + "@types/d3-format": "^1.3.0", + "@types/d3-interpolate": "^1.3.1", + "@types/d3-scale": "^2.1.1", + "@types/d3-time": "^1.0.9", + "@types/d3-time-format": "^2.1.0", + "@types/fetch-mock": "^7.3.3", + "@types/lodash": "^4.14.149", + "@types/math-expression-evaluator": "^1.2.1", + "@types/rison": "0.0.6", + "@types/seedrandom": "^2.4.28", + "@vx/responsive": "^0.0.199", + "csstype": "^2.6.4", + "d3-format": "^1.3.2", + "d3-interpolate": "^1.4.0", + "d3-scale": "^3.0.0", + "d3-time": "^1.0.10", + "d3-time-format": "^2.2.0", + "fetch-mock": "^6.5.2", + "fetch-retry": "^4.0.1", + "jed": "^1.1.1", + "jest-mock-console": "^1.0.0", + "lodash": "^4.17.11", + "math-expression-evaluator": "^1.3.8", + "pretty-ms": "^7.0.0", + "react-error-boundary": "^1.2.5", + "react-markdown": "^4.3.1", + "reselect": "^4.0.0", + "rison": "^0.1.1", + "seedrandom": "^3.0.5", + "whatwg-fetch": "^3.0.0" + }, + "dependencies": { + "pretty-ms": { + "version": "7.0.1", + "requires": { + "parse-ms": "^2.1.0" + } + } + } + }, + "@superset-ui/demo": { + "version": "file:packages/superset-ui-demo", + "requires": { + "@babel/core": "^7.9.0", + "@data-ui/event-flow": "^0.0.84", + "@emotion/cache": "^11.4.0", + "@emotion/react": "^11.4.1", + "@emotion/styled": "^11.3.0", + "@react-icons/all-files": "^4.1.0", + "@storybook/addon-actions": "^6.3.12", + "@storybook/addon-knobs": "^6.3.1", + "@storybook/addon-links": "^6.3.12", + "@storybook/addons": "^6.3.12", + "@storybook/react": "^6.3.12", + "@superset-ui/core": "0.18.25", + "@superset-ui/legacy-plugin-chart-calendar": "0.18.25", + "@superset-ui/legacy-plugin-chart-chord": "0.18.25", + "@superset-ui/legacy-plugin-chart-country-map": "0.18.25", + "@superset-ui/legacy-plugin-chart-event-flow": "0.18.25", + "@superset-ui/legacy-plugin-chart-force-directed": "0.18.25", + "@superset-ui/legacy-plugin-chart-heatmap": "0.18.25", + "@superset-ui/legacy-plugin-chart-histogram": "0.18.25", + "@superset-ui/legacy-plugin-chart-horizon": "0.18.25", + "@superset-ui/legacy-plugin-chart-map-box": "0.18.25", + "@superset-ui/legacy-plugin-chart-paired-t-test": "0.18.25", + "@superset-ui/legacy-plugin-chart-parallel-coordinates": "0.18.25", + "@superset-ui/legacy-plugin-chart-partition": "0.18.25", + "@superset-ui/legacy-plugin-chart-pivot-table": "0.18.25", + "@superset-ui/legacy-plugin-chart-rose": "0.18.25", + "@superset-ui/legacy-plugin-chart-sankey": "0.18.25", + "@superset-ui/legacy-plugin-chart-sankey-loop": "0.18.25", + "@superset-ui/legacy-plugin-chart-sunburst": "0.18.25", + "@superset-ui/legacy-plugin-chart-time-table": "0.18.25", + "@superset-ui/legacy-plugin-chart-treemap": "0.18.25", + "@superset-ui/legacy-plugin-chart-world-map": "0.18.25", + "@superset-ui/legacy-preset-chart-big-number": "0.18.25", + "@superset-ui/legacy-preset-chart-nvd3": "0.18.25", + "@superset-ui/plugin-chart-echarts": "0.18.25", + "@superset-ui/plugin-chart-table": "0.18.25", + "@superset-ui/plugin-chart-word-cloud": "0.18.25", + "@superset-ui/preset-chart-xy": "0.18.25", + "@types/react-loadable": "^5.5.3", + "antd": "^4.9.4", + "babel-loader": "^8.1.0", + "bootstrap": "^3.4.1", + "chromatic": "^5.4.0", + "core-js": "3.8.3", + "fork-ts-checker-webpack-plugin": "^5.0.7", + "gh-pages": "^3.0.0", + "global-box": "^1.2.0", + "jquery": "^3.4.1", + "memoize-one": "^5.1.1", + "react": "^16.13.1", + "react-dom": "^16.13.1", + "react-loadable": "^5.5.0", + "react-resizable": "^3.0.4", + "storybook-addon-jsx": "^7.3.14", + "ts-loader": "^7.0.4", + "typescript": "^3.8.3" + }, + "dependencies": { + "enhanced-resolve": { + "version": "4.5.0", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "dev": true + }, + "memory-fs": { + "version": "0.5.0", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "readable-stream": { + "version": "2.3.7", + "dev": true, + "requires": { + "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" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "tapable": { + "version": "1.1.3", + "dev": true + }, + "ts-loader": { + "version": "7.0.5", + "dev": true, + "requires": { + "chalk": "^2.3.0", + "enhanced-resolve": "^4.0.0", + "loader-utils": "^1.0.2", + "micromatch": "^4.0.0", + "semver": "^6.0.0" + } + }, + "typescript": { + "version": "3.9.10", + "dev": true + } + } + }, + "@superset-ui/generator-superset": { + "version": "file:packages/generator-superset", + "requires": { + "chalk": "^4.0.0", + "lodash": "^4.17.11", + "yeoman-assert": "^3.1.0", + "yeoman-generator": "^4.0.0", + "yeoman-test": "^2.0.0", + "yosay": "^2.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@superset-ui/legacy-plugin-chart-calendar": { + "version": "file:plugins/legacy-plugin-chart-calendar", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3-array": "^2.0.3", + "d3-selection": "^1.4.0", + "d3-tip": "^0.9.1", + "prop-types": "^15.6.2" + }, + "dependencies": { + "d3-array": { + "version": "2.12.1", + "requires": { + "internmap": "^1.0.0" + } + } + } + }, + "@superset-ui/legacy-plugin-chart-chord": { + "version": "file:plugins/legacy-plugin-chart-chord", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "prop-types": "^15.6.2", + "react": "^16.13.1" + } + }, + "@superset-ui/legacy-plugin-chart-country-map": { + "version": "file:plugins/legacy-plugin-chart-country-map", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-array": "^2.0.3", + "prop-types": "^15.6.2" + }, + "dependencies": { + "d3-array": { + "version": "2.12.1", + "requires": { + "internmap": "^1.0.0" + } + } + } + }, + "@superset-ui/legacy-plugin-chart-event-flow": { + "version": "file:plugins/legacy-plugin-chart-event-flow", + "requires": { + "@data-ui/event-flow": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "prop-types": "^15.6.2" + } + }, + "@superset-ui/legacy-plugin-chart-force-directed": { + "version": "file:plugins/legacy-plugin-chart-force-directed", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "prop-types": "^15.7.2" + } + }, + "@superset-ui/legacy-plugin-chart-heatmap": { + "version": "file:plugins/legacy-plugin-chart-heatmap", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-svg-legend": "^1.x", + "d3-tip": "^0.9.1", + "prop-types": "^15.6.2" + } + }, + "@superset-ui/legacy-plugin-chart-histogram": { + "version": "file:plugins/legacy-plugin-chart-histogram", + "requires": { + "@data-ui/histogram": "^0.0.84", + "@data-ui/theme": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@vx/legend": "^0.0.198", + "@vx/responsive": "^0.0.199", + "@vx/scale": "^0.0.197", + "prop-types": "^15.6.2" + }, + "dependencies": { + "@vx/group": { + "version": "0.0.198", + "requires": { + "@types/classnames": "^2.2.9", + "@types/react": "*", + "classnames": "^2.2.5", + "prop-types": "^15.6.2" + } + }, + "@vx/legend": { + "version": "0.0.198", + "requires": { + "@types/classnames": "^2.2.9", + "@types/d3-scale": "^2.1.1", + "@types/react": "*", + "@vx/group": "0.0.198", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + } + }, + "@vx/scale": { + "version": "0.0.197", + "requires": { + "@types/d3-scale": "^2.1.1", + "d3-scale": "^2.2.2" + } + }, + "d3-scale": { + "version": "2.2.2", + "requires": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + } + } + }, + "@superset-ui/legacy-plugin-chart-horizon": { + "version": "file:plugins/legacy-plugin-chart-horizon", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3-array": "^2.0.3", + "d3-scale": "^3.0.1", + "prop-types": "^15.6.2" + }, + "dependencies": { + "d3-array": { + "version": "2.12.1", + "requires": { + "internmap": "^1.0.0" + } + } + } + }, + "@superset-ui/legacy-plugin-chart-map-box": { + "version": "file:plugins/legacy-plugin-chart-map-box", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "mapbox-gl": "^0.53.0", + "prop-types": "^15.6.2", + "react-map-gl": "^4.0.10", + "supercluster": "^4.1.1", + "viewport-mercator-project": "^6.1.1" + } + }, + "@superset-ui/legacy-plugin-chart-paired-t-test": { + "version": "file:plugins/legacy-plugin-chart-paired-t-test", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "distributions": "^1.0.0", + "prop-types": "^15.6.2", + "reactable": "^1.1.0" + } + }, + "@superset-ui/legacy-plugin-chart-parallel-coordinates": { + "version": "file:plugins/legacy-plugin-chart-parallel-coordinates", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "prop-types": "^15.7.2" + } + }, + "@superset-ui/legacy-plugin-chart-partition": { + "version": "file:plugins/legacy-plugin-chart-partition", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-hierarchy": "^1.1.8", + "prop-types": "^15.6.2" + } + }, + "@superset-ui/legacy-plugin-chart-pivot-table": { + "version": "file:plugins/legacy-plugin-chart-pivot-table", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "datatables.net-bs": "^1.11.3", + "prop-types": "^15.6.2" + } + }, + "@superset-ui/legacy-plugin-chart-rose": { + "version": "file:plugins/legacy-plugin-chart-rose", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "nvd3": "1.8.6", + "prop-types": "^15.6.2" + } + }, + "@superset-ui/legacy-plugin-chart-sankey": { + "version": "file:plugins/legacy-plugin-chart-sankey", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-sankey": "^0.4.2", + "prop-types": "^15.6.2" + } + }, + "@superset-ui/legacy-plugin-chart-sankey-loop": { + "version": "file:plugins/legacy-plugin-chart-sankey-loop", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3-sankey-diagram": "^0.7.3", + "d3-selection": "^1.4.0", + "prop-types": "^15.6.2" + } + }, + "@superset-ui/legacy-plugin-chart-sunburst": { + "version": "file:plugins/legacy-plugin-chart-sunburst", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "prop-types": "^15.6.2" + } + }, + "@superset-ui/legacy-plugin-chart-time-table": { + "version": "file:plugins/legacy-plugin-chart-time-table", + "requires": { + "@data-ui/sparkline": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@types/d3-scale": "^2.0.2", + "d3-scale": "^3.2.1", + "moment": "^2.26.0", + "mustache": "^4.0.1", + "prop-types": "^15.7.2", + "reactable-arc": "^0.15.0" + } + }, + "@superset-ui/legacy-plugin-chart-treemap": { + "version": "file:plugins/legacy-plugin-chart-treemap", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3-hierarchy": "^1.1.8", + "d3-selection": "^1.4.0", + "prop-types": "^15.6.2" + } + }, + "@superset-ui/legacy-plugin-chart-world-map": { + "version": "file:plugins/legacy-plugin-chart-world-map", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-array": "^2.4.0", + "d3-color": "^1.4.1", + "datamaps": "^0.5.8", + "prop-types": "^15.6.2" + }, + "dependencies": { + "d3-array": { + "version": "2.12.1", + "requires": { + "internmap": "^1.0.0" + } + } + } + }, + "@superset-ui/legacy-preset-chart-big-number": { + "version": "file:plugins/legacy-preset-chart-big-number", + "requires": { + "@data-ui/xy-chart": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@types/d3-color": "^1.2.2", + "@types/shortid": "^0.0.29", + "d3-color": "^1.2.3", + "shortid": "^2.2.14" + } + }, + "@superset-ui/legacy-preset-chart-nvd3": { + "version": "file:plugins/legacy-preset-chart-nvd3", + "requires": { + "@data-ui/xy-chart": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-tip": "^0.9.1", + "dompurify": "^2.0.6", + "fast-safe-stringify": "^2.0.6", + "lodash": "^4.17.11", + "moment": "^2.20.1", + "nvd3-fork": "^2.0.5", + "prop-types": "^15.6.2", + "urijs": "^1.18.10" + } + }, + "@superset-ui/plugin-chart-echarts": { + "version": "file:plugins/plugin-chart-echarts", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3-array": "^1.2.0", + "echarts": "^5.2.2", + "lodash": "^4.17.15" + } + }, + "@superset-ui/plugin-chart-pivot-table": { + "version": "file:plugins/plugin-chart-pivot-table", + "requires": { + "@babel/types": "^7.13.12", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@superset-ui/react-pivottable": "^0.12.12", + "@types/jest": "^26.0.0", + "jest": "^26.0.1" + } + }, + "@superset-ui/plugin-chart-table": { + "version": "file:plugins/plugin-chart-table", + "requires": { + "@react-icons/all-files": "^4.1.0", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@types/d3-array": "^2.9.0", + "@types/react-table": "^7.0.29", + "d3-array": "^2.4.0", + "match-sorter": "^6.3.0", + "memoize-one": "^5.1.1", + "react-table": "^7.6.3", + "regenerator-runtime": "^0.13.7", + "xss": "^1.0.8" + }, + "dependencies": { + "d3-array": { + "version": "2.12.1", + "requires": { + "internmap": "^1.0.0" + } + } + } + }, + "@superset-ui/plugin-chart-word-cloud": { + "version": "file:plugins/plugin-chart-word-cloud", + "requires": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@types/d3-cloud": "^1.2.1", + "@types/d3-scale": "^2.0.2", + "d3-cloud": "^1.2.5", + "d3-scale": "^3.0.1", + "encodable": "^0.7.6" + } + }, + "@superset-ui/preset-chart-xy": { + "version": "file:plugins/preset-chart-xy", + "requires": { + "@data-ui/theme": "^0.0.84", + "@data-ui/xy-chart": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@vx/axis": "^0.0.198", + "@vx/legend": "^0.0.198", + "@vx/scale": "^0.0.197", + "csstype": "^2.6.3", + "encodable": "^0.7.6", + "lodash": "^4.17.11", + "reselect": "^4.0.0" + }, + "dependencies": { + "@vx/axis": { + "version": "0.0.198", + "requires": { + "@types/classnames": "^2.2.9", + "@types/react": "*", + "@vx/group": "0.0.198", + "@vx/point": "0.0.198", + "@vx/shape": "0.0.198", + "@vx/text": "0.0.198", + "classnames": "^2.2.5", + "prop-types": "^15.6.0" + } + }, + "@vx/curve": { + "version": "0.0.198", + "requires": { + "@types/d3-shape": "^1.3.1", + "d3-shape": "^1.0.6" + } + }, + "@vx/group": { + "version": "0.0.198", + "requires": { + "@types/classnames": "^2.2.9", + "@types/react": "*", + "classnames": "^2.2.5", + "prop-types": "^15.6.2" + } + }, + "@vx/legend": { + "version": "0.0.198", + "requires": { + "@types/classnames": "^2.2.9", + "@types/d3-scale": "^2.1.1", + "@types/react": "*", + "@vx/group": "0.0.198", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + } + }, + "@vx/point": { + "version": "0.0.198" + }, + "@vx/scale": { + "version": "0.0.197", + "requires": { + "@types/d3-scale": "^2.1.1", + "d3-scale": "^2.2.2" + } + }, + "@vx/shape": { + "version": "0.0.198", + "requires": { + "@types/classnames": "^2.2.9", + "@types/d3-path": "^1.0.8", + "@types/d3-shape": "^1.3.1", + "@types/react": "*", + "@vx/curve": "0.0.198", + "@vx/group": "0.0.198", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + } + }, + "@vx/text": { + "version": "0.0.198", + "requires": { + "@types/classnames": "^2.2.9", + "@types/lodash": "^4.14.146", + "@types/react": "*", + "classnames": "^2.2.5", + "lodash": "^4.17.15", + "prop-types": "^15.7.2", + "reduce-css-calc": "^1.3.0" + } + }, + "d3-scale": { + "version": "2.2.2", + "requires": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + } + } + }, + "@superset-ui/react-pivottable": { + "version": "0.12.12", + "requires": { + "immutability-helper": "^3.1.1", + "prop-types": "^15.7.2", + "react-draggable": "^4.4.3", + "react-sortablejs": "^6.0.0", + "sortablejs": "^1.13.0" + }, + "dependencies": { + "react-draggable": { + "version": "4.4.4", + "requires": { + "clsx": "^1.1.1", + "prop-types": "^15.6.0" + } + } + } + }, + "@testing-library/dom": { + "version": "7.31.2", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^4.2.0", + "aria-query": "^4.2.2", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.6", + "lz-string": "^1.4.4", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@tootallnate/once": { + "version": "1.1.2" + }, + "@types/aria-query": { + "version": "4.2.2" + }, + "@types/babel__core": { + "version": "7.1.16", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.3", + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.1", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.14.2", + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/braces": { + "version": "3.0.1" + }, + "@types/cheerio": { + "version": "0.22.30", + "requires": { + "@types/node": "*" + } + }, + "@types/classnames": { + "version": "2.3.1", + "requires": { + "classnames": "*" + } + }, + "@types/color-convert": { + "version": "2.0.0", + "requires": { + "@types/color-name": "*" + } + }, + "@types/color-name": { + "version": "1.1.1" + }, + "@types/d3": { + "version": "3.5.38" + }, + "@types/d3-array": { + "version": "2.12.3" + }, + "@types/d3-cloud": { + "version": "1.2.5", + "requires": { + "@types/d3": "^3" + } + }, + "@types/d3-color": { + "version": "1.4.2" + }, + "@types/d3-format": { + "version": "1.4.2" + }, + "@types/d3-interpolate": { + "version": "1.4.2", + "requires": { + "@types/d3-color": "^1" + } + }, + "@types/d3-path": { + "version": "1.0.9" + }, + "@types/d3-scale": { + "version": "2.2.6", + "requires": { + "@types/d3-time": "^1" + } + }, + "@types/d3-scale-chromatic": { + "version": "1.5.1" + }, + "@types/d3-shape": { + "version": "1.3.8", + "requires": { + "@types/d3-path": "^1" + } + }, + "@types/d3-time": { + "version": "1.1.1" + }, + "@types/d3-time-format": { + "version": "2.3.1" + }, + "@types/debug": { + "version": "4.1.7", + "requires": { + "@types/ms": "*" + } + }, + "@types/enzyme": { + "version": "3.10.9", + "requires": { + "@types/cheerio": "*", + "@types/react": "*" + } + }, + "@types/fetch-mock": { + "version": "7.3.5", + "dev": true + }, + "@types/glob": { + "version": "7.2.0", + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/glob-base": { + "version": "0.3.0" + }, + "@types/graceful-fs": { + "version": "4.1.5", + "requires": { + "@types/node": "*" + } + }, + "@types/hast": { + "version": "2.3.4", + "requires": { + "@types/unist": "*" + } + }, + "@types/html-minifier-terser": { + "version": "5.1.2" + }, + "@types/is-function": { + "version": "1.0.1" + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3" + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.1", + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "26.0.24", + "requires": { + "jest-diff": "^26.0.0", + "pretty-format": "^26.0.0" + } + }, + "@types/jsdom": { + "version": "12.2.4", + "requires": { + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^4.0.0" + } + }, + "@types/json-schema": { + "version": "7.0.9" + }, + "@types/json5": { + "version": "0.0.29" + }, + "@types/lodash": { + "version": "4.14.175" + }, + "@types/lodash.get": { + "version": "4.4.6", + "requires": { + "@types/lodash": "*" + } + }, + "@types/markdown-to-jsx": { + "version": "6.11.3", + "requires": { + "@types/react": "*" + } + }, + "@types/math-expression-evaluator": { + "version": "1.2.1" + }, + "@types/mdast": { + "version": "3.0.10", + "requires": { + "@types/unist": "*" + } + }, + "@types/micromatch": { + "version": "4.0.2", + "requires": { + "@types/braces": "*" + } + }, + "@types/minimatch": { + "version": "3.0.5" + }, + "@types/minimist": { + "version": "1.2.2" + }, + "@types/ms": { + "version": "0.7.31" + }, + "@types/node": { + "version": "16.11.1" + }, + "@types/node-fetch": { + "version": "2.5.12", + "requires": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "@types/normalize-package-data": { + "version": "2.4.1" + }, + "@types/npmlog": { + "version": "4.1.3" + }, + "@types/overlayscrollbars": { + "version": "1.12.1" + }, + "@types/parse-json": { + "version": "4.0.0" + }, + "@types/parse5": { + "version": "5.0.3" + }, + "@types/prettier": { + "version": "2.4.1" + }, + "@types/pretty-hrtime": { + "version": "1.0.1" + }, + "@types/prop-types": { + "version": "15.7.4" + }, + "@types/qs": { + "version": "6.9.7" + }, + "@types/reach__router": { + "version": "1.3.9", + "requires": { + "@types/react": "*" + } + }, + "@types/react": { + "version": "16.14.17", + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + }, + "dependencies": { + "csstype": { + "version": "3.0.9" + } + } + }, + "@types/react-loadable": { + "version": "5.5.6", + "requires": { + "@types/react": "*", + "@types/webpack": "^4" + } + }, + "@types/react-syntax-highlighter": { + "version": "11.0.5", + "requires": { + "@types/react": "*" + } + }, + "@types/react-table": { + "version": "7.7.7", + "requires": { + "@types/react": "*" + } + }, + "@types/react-test-renderer": { + "version": "16.9.5", + "requires": { + "@types/react": "^16" + } + }, + "@types/rison": { + "version": "0.0.6" + }, + "@types/scheduler": { + "version": "0.16.2" + }, + "@types/seedrandom": { + "version": "2.4.30" + }, + "@types/shortid": { + "version": "0.0.29" + }, + "@types/sortablejs": { + "version": "1.10.7", + "peer": true + }, + "@types/source-list-map": { + "version": "0.1.2" + }, + "@types/stack-utils": { + "version": "2.0.1" + }, + "@types/tapable": { + "version": "1.0.8" + }, + "@types/tough-cookie": { + "version": "4.0.1" + }, + "@types/uglify-js": { + "version": "3.13.1", + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1" + } + } + }, + "@types/unist": { + "version": "2.0.6" + }, + "@types/webpack": { + "version": "4.41.31", + "requires": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1" + } + } + }, + "@types/webpack-env": { + "version": "1.16.3" + }, + "@types/webpack-sources": { + "version": "3.2.0", + "requires": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3" + } + } + }, + "@types/yargs": { + "version": "15.0.14", + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "15.0.0" + }, + "@typescript-eslint/eslint-plugin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.3.1.tgz", + "integrity": "sha512-cFImaoIr5Ojj358xI/SDhjog57OK2NqlpxwdcgyxDA3bJlZcJq5CPzUXtpD7CxI2Hm6ATU7w5fQnnkVnmwpHqw==", + "requires": { + "@typescript-eslint/experimental-utils": "5.3.1", + "@typescript-eslint/scope-manager": "5.3.1", + "debug": "^4.3.2", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.1.8", + "regexpp": "^3.2.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "dependencies": { + "@typescript-eslint/experimental-utils": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.3.1.tgz", + "integrity": "sha512-RgFn5asjZ5daUhbK5Sp0peq0SSMytqcrkNfU4pnDma2D8P3ElZ6JbYjY8IMSFfZAJ0f3x3tnO3vXHweYg0g59w==", + "requires": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.3.1", + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/typescript-estree": "5.3.1", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "dependencies": { + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "requires": { + "eslint-visitor-keys": "^2.0.0" + } + } + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.3.1.tgz", + "integrity": "sha512-XksFVBgAq0Y9H40BDbuPOTUIp7dn4u8oOuhcgGq7EoDP50eqcafkMVGrypyVGvDYHzjhdUCUwuwVUK4JhkMAMg==", + "requires": { + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/visitor-keys": "5.3.1" + } + }, + "@typescript-eslint/types": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.3.1.tgz", + "integrity": "sha512-bG7HeBLolxKHtdHG54Uac750eXuQQPpdJfCYuw4ZI3bZ7+GgKClMWM8jExBtp7NSP4m8PmLRM8+lhzkYnSmSxQ==" + }, + "@typescript-eslint/typescript-estree": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.3.1.tgz", + "integrity": "sha512-PwFbh/PKDVo/Wct6N3w+E4rLZxUDgsoII/GrWM2A62ETOzJd4M6s0Mu7w4CWsZraTbaC5UQI+dLeyOIFF1PquQ==", + "requires": { + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/visitor-keys": "5.3.1", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.3.1.tgz", + "integrity": "sha512-3cHUzUuVTuNHx0Gjjt5pEHa87+lzyqOiHXy/Gz+SJOCW1mpw9xQHIIEwnKn+Thph1mgWyZ90nboOcSuZr/jTTQ==", + "requires": { + "@typescript-eslint/types": "5.3.1", + "eslint-visitor-keys": "^3.0.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz", + "integrity": "sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==" + } + } + } + } + }, + "@typescript-eslint/experimental-utils": { + "version": "4.33.0", + "requires": { + "@types/json-schema": "^7.0.7", + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "dependencies": { + "eslint-utils": { + "version": "3.0.0", + "requires": { + "eslint-visitor-keys": "^2.0.0" + } + } + } + }, + "@typescript-eslint/parser": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.3.1.tgz", + "integrity": "sha512-TD+ONlx5c+Qhk21x9gsJAMRohWAUMavSOmJgv3JGy9dgPhuBd5Wok0lmMClZDyJNLLZK1JRKiATzCKZNUmoyfw==", + "requires": { + "@typescript-eslint/scope-manager": "5.3.1", + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/typescript-estree": "5.3.1", + "debug": "^4.3.2" + }, + "dependencies": { + "@typescript-eslint/scope-manager": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.3.1.tgz", + "integrity": "sha512-XksFVBgAq0Y9H40BDbuPOTUIp7dn4u8oOuhcgGq7EoDP50eqcafkMVGrypyVGvDYHzjhdUCUwuwVUK4JhkMAMg==", + "requires": { + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/visitor-keys": "5.3.1" + } + }, + "@typescript-eslint/types": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.3.1.tgz", + "integrity": "sha512-bG7HeBLolxKHtdHG54Uac750eXuQQPpdJfCYuw4ZI3bZ7+GgKClMWM8jExBtp7NSP4m8PmLRM8+lhzkYnSmSxQ==" + }, + "@typescript-eslint/typescript-estree": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.3.1.tgz", + "integrity": "sha512-PwFbh/PKDVo/Wct6N3w+E4rLZxUDgsoII/GrWM2A62ETOzJd4M6s0Mu7w4CWsZraTbaC5UQI+dLeyOIFF1PquQ==", + "requires": { + "@typescript-eslint/types": "5.3.1", + "@typescript-eslint/visitor-keys": "5.3.1", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.3.1.tgz", + "integrity": "sha512-3cHUzUuVTuNHx0Gjjt5pEHa87+lzyqOiHXy/Gz+SJOCW1mpw9xQHIIEwnKn+Thph1mgWyZ90nboOcSuZr/jTTQ==", + "requires": { + "@typescript-eslint/types": "5.3.1", + "eslint-visitor-keys": "^3.0.0" + } + }, + "eslint-visitor-keys": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz", + "integrity": "sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==" + } + } + }, + "@typescript-eslint/scope-manager": { + "version": "4.33.0", + "requires": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0" + } + }, + "@typescript-eslint/types": { + "version": "4.33.0" + }, + "@typescript-eslint/typescript-estree": { + "version": "4.33.0", + "requires": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0", + "debug": "^4.3.1", + "globby": "^11.0.3", + "is-glob": "^4.0.1", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "4.33.0", + "requires": { + "@typescript-eslint/types": "4.33.0", + "eslint-visitor-keys": "^2.0.0" + } + }, + "@vx/axis": { + "version": "0.0.140", + "requires": { + "@vx/group": "0.0.140", + "@vx/point": "0.0.136", + "@vx/shape": "0.0.140", + "classnames": "^2.2.5", + "prop-types": "15.5.10" + }, + "dependencies": { + "prop-types": { + "version": "15.5.10", + "requires": { + "fbjs": "^0.8.9", + "loose-envify": "^1.3.1" + } + } + } + }, + "@vx/bounds": { + "version": "0.0.140", + "requires": { + "prop-types": "^15.5.10" + } + }, + "@vx/clip-path": { + "version": "0.0.140", + "requires": {} + }, + "@vx/curve": { + "version": "0.0.165", + "requires": { + "d3-shape": "^1.0.6" + } + }, + "@vx/event": { + "version": "0.0.179", + "requires": { + "@vx/point": "0.0.165" + }, + "dependencies": { + "@vx/point": { + "version": "0.0.165" + } + } + }, + "@vx/glyph": { + "version": "0.0.140", + "requires": { + "@vx/group": "0.0.140", + "classnames": "^2.2.5", + "d3-shape": "^1.2.0" + } + }, + "@vx/gradient": { + "version": "0.0.140", + "requires": { + "classnames": "^2.2.5", + "prop-types": "^15.5.7" + } + }, + "@vx/grid": { + "version": "0.0.140", + "requires": { + "@vx/group": "0.0.140", + "@vx/point": "0.0.136", + "@vx/shape": "0.0.140", + "classnames": "^2.2.5" + } + }, + "@vx/group": { + "version": "0.0.140", + "requires": { + "classnames": "^2.2.5" + } + }, + "@vx/legend": { + "version": "0.0.140", + "requires": { + "@vx/group": "0.0.140", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + } + }, + "@vx/pattern": { + "version": "0.0.140", + "requires": { + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + } + }, + "@vx/point": { + "version": "0.0.136" + }, + "@vx/responsive": { + "version": "0.0.199", + "requires": { + "@types/lodash": "^4.14.146", + "@types/react": "*", + "lodash": "^4.17.10", + "prop-types": "^15.6.1", + "resize-observer-polyfill": "1.5.1" + } + }, + "@vx/scale": { + "version": "0.0.140", + "requires": { + "d3-scale": "^1.0.5" + }, + "dependencies": { + "d3-scale": { + "version": "1.0.7", + "requires": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-color": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + } + } + }, + "@vx/shape": { + "version": "0.0.140", + "requires": { + "@vx/curve": "0.0.140", + "@vx/group": "0.0.140", + "@vx/point": "0.0.136", + "classnames": "^2.2.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + }, + "dependencies": { + "@vx/curve": { + "version": "0.0.140", + "requires": { + "d3-shape": "^1.0.6" + } + } + } + }, + "@vx/stats": { + "version": "0.0.165", + "requires": { + "@vx/group": "0.0.165", + "@vx/scale": "0.0.165", + "classnames": "^2.2.5", + "d3-shape": "^1.2.0" + }, + "dependencies": { + "@vx/group": { + "version": "0.0.165", + "requires": { + "classnames": "^2.2.5" + } + }, + "@vx/scale": { + "version": "0.0.165", + "requires": { + "d3-scale": "^2.0.0" + } + }, + "d3-scale": { + "version": "2.2.2", + "requires": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + } + } + }, + "@vx/text": { + "version": "0.0.192", + "requires": { + "classnames": "^2.2.5", + "lodash": "^4.17.15", + "prop-types": "^15.7.2", + "reduce-css-calc": "^1.3.0" + } + }, + "@vx/threshold": { + "version": "0.0.170", + "requires": { + "@vx/clip-path": "0.0.165", + "@vx/shape": "0.0.170", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + }, + "dependencies": { + "@vx/clip-path": { + "version": "0.0.165", + "requires": {} + }, + "@vx/group": { + "version": "0.0.170", + "requires": { + "classnames": "^2.2.5" + } + }, + "@vx/point": { + "version": "0.0.165" + }, + "@vx/shape": { + "version": "0.0.170", + "requires": { + "@vx/curve": "0.0.165", + "@vx/group": "0.0.170", + "@vx/point": "0.0.165", + "classnames": "^2.2.5", + "d3-path": "^1.0.5", + "d3-shape": "^1.2.0", + "prop-types": "^15.5.10" + } + } + } + }, + "@vx/tooltip": { + "version": "0.0.140", + "requires": { + "@vx/bounds": "0.0.140", + "classnames": "^2.2.5", + "prop-types": "^15.5.10" + } + }, + "@vx/voronoi": { + "version": "0.0.165", + "requires": { + "@vx/group": "0.0.165", + "classnames": "^2.2.5", + "d3-voronoi": "^1.1.2", + "prop-types": "^15.6.1" + }, + "dependencies": { + "@vx/group": { + "version": "0.0.165", + "requires": { + "classnames": "^2.2.5" + } + } + } + }, + "@webassemblyjs/ast": { + "version": "1.9.0", + "requires": { + "@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": { + "version": "1.9.0" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0" + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0" + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0" + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "requires": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "requires": { + "@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": { + "version": "1.9.0", + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.9.0" + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "requires": { + "@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": { + "version": "1.9.0", + "requires": { + "@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": { + "version": "1.9.0", + "requires": { + "@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": { + "version": "1.9.0", + "requires": { + "@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": { + "version": "1.9.0", + "requires": { + "@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": { + "version": "1.9.0", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0" + }, + "@xtuc/long": { + "version": "4.2.2" + }, + "@zkochan/cmd-shim": { + "version": "3.1.0", + "requires": { + "is-windows": "^1.0.0", + "mkdirp-promise": "^5.0.1", + "mz": "^2.5.0" + } + }, + "abab": { + "version": "2.0.5" + }, + "abbrev": { + "version": "1.1.1" + }, + "accepts": { + "version": "1.3.7", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "7.4.1" + }, + "acorn-globals": { + "version": "6.0.0", + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "acorn-jsx": { + "version": "5.3.2", + "requires": {} + }, + "acorn-walk": { + "version": "7.2.0" + }, + "add-stream": { + "version": "1.0.0" + }, + "address": { + "version": "1.1.2" + }, + "agent-base": { + "version": "6.0.2", + "requires": { + "debug": "4" + } + }, + "agentkeepalive": { + "version": "3.5.2", + "requires": { + "humanize-ms": "^1.2.1" + } + }, + "aggregate-error": { + "version": "3.1.0", + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "dependencies": { + "indent-string": { + "version": "4.0.0" + } + } + }, + "airbnb-js-shims": { + "version": "2.2.1", + "requires": { + "array-includes": "^3.0.3", + "array.prototype.flat": "^1.2.1", + "array.prototype.flatmap": "^1.2.1", + "es5-shim": "^4.5.13", + "es6-shim": "^0.35.5", + "function.prototype.name": "^1.1.0", + "globalthis": "^1.0.0", + "object.entries": "^1.1.0", + "object.fromentries": "^2.0.0 || ^1.0.0", + "object.getownpropertydescriptors": "^2.0.3", + "object.values": "^1.1.0", + "promise.allsettled": "^1.0.0", + "promise.prototype.finally": "^3.1.0", + "string.prototype.matchall": "^4.0.0 || ^3.0.1", + "string.prototype.padend": "^3.0.0", + "string.prototype.padstart": "^3.0.0", + "symbol.prototype.description": "^1.0.0" + } + }, + "airbnb-prop-types": { + "version": "2.16.0", + "requires": { + "array.prototype.find": "^2.1.1", + "function.prototype.name": "^1.1.2", + "is-regex": "^1.1.0", + "object-is": "^1.1.2", + "object.assign": "^4.1.0", + "object.entries": "^1.1.2", + "prop-types": "^15.7.2", + "prop-types-exact": "^1.2.0", + "react-is": "^16.13.1" + } + }, + "ajv": { + "version": "6.12.6", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "requires": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "requires": {} + }, + "ansi-align": { + "version": "3.0.1", + "requires": { + "string-width": "^4.1.0" + } + }, + "ansi-colors": { + "version": "4.1.1" + }, + "ansi-escapes": { + "version": "4.3.2", + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-html": { + "version": "0.0.7" + }, + "ansi-html-community": { + "version": "0.0.8" + }, + "ansi-regex": { + "version": "5.0.1" + }, + "ansi-styles": { + "version": "3.2.1", + "requires": { + "color-convert": "^1.9.0" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3" + } + } + }, + "ansi-to-html": { + "version": "0.6.15", + "requires": { + "entities": "^2.0.0" + } + }, + "ansicolors": { + "version": "0.2.1" + }, + "antd": { + "version": "4.16.13", + "requires": { + "@ant-design/colors": "^6.0.0", + "@ant-design/icons": "^4.6.3", + "@ant-design/react-slick": "~0.28.1", + "@babel/runtime": "^7.12.5", + "array-tree-filter": "^2.1.0", + "classnames": "^2.2.6", + "copy-to-clipboard": "^3.2.0", + "lodash": "^4.17.21", + "moment": "^2.25.3", + "rc-cascader": "~1.4.0", + "rc-checkbox": "~2.3.0", + "rc-collapse": "~3.1.0", + "rc-dialog": "~8.6.0", + "rc-drawer": "~4.3.0", + "rc-dropdown": "~3.2.0", + "rc-field-form": "~1.20.0", + "rc-image": "~5.2.5", + "rc-input-number": "~7.1.0", + "rc-mentions": "~1.6.1", + "rc-menu": "~9.0.12", + "rc-motion": "^2.4.0", + "rc-notification": "~4.5.7", + "rc-pagination": "~3.1.9", + "rc-picker": "~2.5.10", + "rc-progress": "~3.1.0", + "rc-rate": "~2.9.0", + "rc-resize-observer": "^1.0.0", + "rc-select": "~12.1.6", + "rc-slider": "~9.7.1", + "rc-steps": "~4.1.0", + "rc-switch": "~3.2.0", + "rc-table": "~7.15.1", + "rc-tabs": "~11.10.0", + "rc-textarea": "~0.3.0", + "rc-tooltip": "~5.1.1", + "rc-tree": "~4.2.1", + "rc-tree-select": "~4.3.0", + "rc-trigger": "^5.2.10", + "rc-upload": "~4.3.0", + "rc-util": "^5.13.1", + "scroll-into-view-if-needed": "^2.2.25" + }, + "dependencies": { + "@ant-design/react-slick": { + "version": "0.28.4", + "requires": { + "@babel/runtime": "^7.10.4", + "classnames": "^2.2.5", + "json2mq": "^0.2.0", + "lodash": "^4.17.21", + "resize-observer-polyfill": "^1.5.0" + } + }, + "date-fns": { + "version": "2.25.0" + }, + "rc-cascader": { + "version": "1.4.3", + "requires": { + "@babel/runtime": "^7.12.5", + "array-tree-filter": "^2.1.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.0.1", + "warning": "^4.0.1" + } + }, + "rc-checkbox": { + "version": "2.3.2", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1" + } + }, + "rc-collapse": { + "version": "3.1.2", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.3.4", + "rc-util": "^5.2.1", + "shallowequal": "^1.1.0" + } + }, + "rc-dialog": { + "version": "8.6.0", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-motion": "^2.3.0", + "rc-util": "^5.6.1" + } + }, + "rc-drawer": { + "version": "4.3.1", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-util": "^5.7.0" + } + }, + "rc-dropdown": { + "version": "3.2.0", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-trigger": "^5.0.4" + } + }, + "rc-field-form": { + "version": "1.20.1", + "requires": { + "@babel/runtime": "^7.8.4", + "async-validator": "^3.0.3", + "rc-util": "^5.8.0" + } + }, + "rc-image": { + "version": "5.2.5", + "requires": { + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-dialog": "~8.6.0", + "rc-util": "^5.0.6" + } + }, + "rc-input-number": { + "version": "7.1.4", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.9.8" + } + }, + "rc-mentions": { + "version": "1.6.1", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-menu": "^9.0.0", + "rc-textarea": "^0.3.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.0.1" + } + }, + "rc-menu": { + "version": "9.0.14", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.4.3", + "rc-overflow": "^1.2.0", + "rc-trigger": "^5.1.2", + "rc-util": "^5.12.0", + "shallowequal": "^1.1.0" + }, + "dependencies": { + "rc-overflow": { + "version": "1.2.2", + "requires": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.5.1" + } + } + } + }, + "rc-motion": { + "version": "2.4.4", + "requires": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-util": "^5.2.1" + } + }, + "rc-notification": { + "version": "4.5.7", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.2.0", + "rc-util": "^5.0.1" + } + }, + "rc-pagination": { + "version": "3.1.9", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1" + } + }, + "rc-picker": { + "version": "2.5.19", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "date-fns": "2.x", + "dayjs": "1.x", + "moment": "^2.24.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.4.0", + "shallowequal": "^1.1.0" + } + }, + "rc-progress": { + "version": "3.1.4", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6" + } + }, + "rc-rate": { + "version": "2.9.1", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.0.1" + } + }, + "rc-resize-observer": { + "version": "1.0.1", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-util": "^5.0.0", + "resize-observer-polyfill": "^1.5.1" + } + }, + "rc-select": { + "version": "12.1.13", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.0.1", + "rc-overflow": "^1.0.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.9.8", + "rc-virtual-list": "^3.2.0" + }, + "dependencies": { + "rc-overflow": { + "version": "1.2.2", + "requires": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.5.1" + } + }, + "rc-virtual-list": { + "version": "3.4.1", + "requires": { + "classnames": "^2.2.6", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.0.7" + } + } + } + }, + "rc-slider": { + "version": "9.7.4", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-tooltip": "^5.0.1", + "rc-util": "^5.0.0", + "shallowequal": "^1.1.0" + } + }, + "rc-steps": { + "version": "4.1.4", + "requires": { + "@babel/runtime": "^7.10.2", + "classnames": "^2.2.3", + "rc-util": "^5.0.1" + } + }, + "rc-switch": { + "version": "3.2.2", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-util": "^5.0.1" + } + }, + "rc-table": { + "version": "7.15.2", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.13.0", + "shallowequal": "^1.1.0" + } + }, + "rc-tabs": { + "version": "11.10.1", + "requires": { + "@babel/runtime": "^7.11.2", + "classnames": "2.x", + "rc-dropdown": "^3.2.0", + "rc-menu": "^9.0.0", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.5.0" + } + }, + "rc-textarea": { + "version": "0.3.5", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.7.0" + } + }, + "rc-tooltip": { + "version": "5.1.1", + "requires": { + "@babel/runtime": "^7.11.2", + "rc-trigger": "^5.0.0" + } + }, + "rc-tree": { + "version": "4.2.2", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.0.1", + "rc-util": "^5.0.0", + "rc-virtual-list": "^3.0.1" + }, + "dependencies": { + "rc-virtual-list": { + "version": "3.4.1", + "requires": { + "classnames": "^2.2.6", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.0.7" + } + } + } + }, + "rc-tree-select": { + "version": "4.3.3", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-select": "^12.0.0", + "rc-tree": "^4.0.0", + "rc-util": "^5.0.5" + } + }, + "rc-trigger": { + "version": "5.2.10", + "requires": { + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-align": "^4.0.0", + "rc-motion": "^2.0.0", + "rc-util": "^5.5.0" + }, + "dependencies": { + "rc-align": { + "version": "4.0.11", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "dom-align": "^1.7.0", + "lodash": "^4.17.21", + "rc-util": "^5.3.0", + "resize-observer-polyfill": "^1.5.1" + } + } + } + }, + "rc-upload": { + "version": "4.3.1", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.2.0" + } + }, + "rc-util": { + "version": "5.14.0", + "requires": { + "@babel/runtime": "^7.12.5", + "react-is": "^16.12.0", + "shallowequal": "^1.1.0" + } + } + } + }, + "any-observable": { + "version": "0.3.0", + "dev": true + }, + "any-promise": { + "version": "1.3.0" + }, + "anymatch": { + "version": "3.1.2", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "aphrodite": { + "version": "1.2.5", + "requires": { + "asap": "^2.0.3", + "inline-style-prefixer": "^3.0.1", + "string-hash": "^1.1.3" + } + }, + "apollo-codegen": { + "version": "0.19.1", + "requires": { + "@babel/generator": "7.0.0-beta.38", + "@babel/types": "7.0.0-beta.38", + "change-case": "^3.0.1", + "common-tags": "^1.5.1", + "core-js": "^2.5.3", + "glob": "^7.1.2", + "graphql": "^0.13.1", + "graphql-config": "^1.1.1", + "inflected": "^2.0.3", + "node-fetch": "^1.7.3", + "rimraf": "^2.6.2", + "source-map-support": "^0.5.0", + "yargs": "^10.0.3" + }, + "dependencies": { + "@babel/generator": { + "version": "7.0.0-beta.38", + "requires": { + "@babel/types": "7.0.0-beta.38", + "jsesc": "^2.5.1", + "lodash": "^4.2.0", + "source-map": "^0.5.0", + "trim-right": "^1.0.1" + } + }, + "@babel/types": { + "version": "7.0.0-beta.38", + "requires": { + "esutils": "^2.0.2", + "lodash": "^4.2.0", + "to-fast-properties": "^2.0.0" + } + }, + "ansi-regex": { + "version": "3.0.0" + }, + "camelcase": { + "version": "4.1.0" + }, + "cliui": { + "version": "4.1.0", + "requires": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0", + "wrap-ansi": "^2.0.0" + } + }, + "core-js": { + "version": "2.6.12" + }, + "cross-spawn": { + "version": "5.1.0", + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "0.7.0", + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.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" + } + }, + "find-up": { + "version": "2.1.0", + "requires": { + "locate-path": "^2.0.0" + } + }, + "get-caller-file": { + "version": "1.0.3" + }, + "get-stream": { + "version": "3.0.0" + }, + "graphql": { + "version": "0.13.2", + "requires": { + "iterall": "^1.2.1" + } + }, + "invert-kv": { + "version": "1.0.0" + }, + "is-fullwidth-code-point": { + "version": "2.0.0" + }, + "is-stream": { + "version": "1.1.0" + }, + "iterall": { + "version": "1.3.0" + }, + "lcid": { + "version": "1.0.0", + "requires": { + "invert-kv": "^1.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "lru-cache": { + "version": "4.1.5", + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "mem": { + "version": "1.1.0", + "requires": { + "mimic-fn": "^1.0.0" + } + }, + "mimic-fn": { + "version": "1.2.0" + }, + "node-fetch": { + "version": "1.7.3", + "requires": { + "encoding": "^0.1.11", + "is-stream": "^1.0.1" + } + }, + "npm-run-path": { + "version": "2.0.2", + "requires": { + "path-key": "^2.0.0" + } + }, + "os-locale": { + "version": "2.1.0", + "requires": { + "execa": "^0.7.0", + "lcid": "^1.0.0", + "mem": "^1.1.0" + } + }, + "p-limit": { + "version": "1.3.0", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0" + }, + "path-exists": { + "version": "3.0.0" + }, + "path-key": { + "version": "2.0.1" + }, + "require-main-filename": { + "version": "1.0.1" + }, + "rimraf": { + "version": "2.7.1", + "requires": { + "glob": "^7.1.3" + } + }, + "shebang-command": { + "version": "1.2.0", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0" + }, + "string-width": { + "version": "2.1.1", + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "requires": { + "ansi-regex": "^3.0.0" + } + }, + "which": { + "version": "1.3.1", + "requires": { + "isexe": "^2.0.0" + } + }, + "wrap-ansi": { + "version": "2.1.0", + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1" + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "y18n": { + "version": "3.2.2" + }, + "yallist": { + "version": "2.1.2" + }, + "yargs": { + "version": "10.1.2", + "requires": { + "cliui": "^4.0.0", + "decamelize": "^1.1.1", + "find-up": "^2.1.0", + "get-caller-file": "^1.0.1", + "os-locale": "^2.0.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^8.1.0" + } + }, + "yargs-parser": { + "version": "8.1.0", + "requires": { + "camelcase": "^4.1.0" + } + } + } + }, + "app-root-dir": { + "version": "1.0.2" + }, + "aproba": { + "version": "2.0.0" + }, + "are-we-there-yet": { + "version": "1.1.7", + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "argparse": { + "version": "1.0.10", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "aria-query": { + "version": "4.2.2", + "requires": { + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + } + }, + "arr-diff": { + "version": "4.0.0" + }, + "arr-flatten": { + "version": "1.1.0" + }, + "arr-union": { + "version": "3.1.0" + }, + "array-differ": { + "version": "2.1.0" + }, + "array-equal": { + "version": "1.0.0" + }, + "array-find": { + "version": "1.0.0" + }, + "array-find-index": { + "version": "1.0.2" + }, + "array-flatten": { + "version": "2.1.2" + }, + "array-ify": { + "version": "1.0.0" + }, + "array-includes": { + "version": "3.1.4", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + } + }, + "array-tree-filter": { + "version": "2.1.0" + }, + "array-union": { + "version": "2.1.0" + }, + "array-uniq": { + "version": "1.0.3" + }, + "array-unique": { + "version": "0.3.2" + }, + "array.prototype.filter": { + "version": "1.0.1", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + } + }, + "array.prototype.find": { + "version": "2.1.2", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + } + }, + "array.prototype.flat": { + "version": "1.2.5", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + } + }, + "array.prototype.flatmap": { + "version": "1.2.5", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + } + }, + "array.prototype.map": { + "version": "1.0.4", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + } + }, + "arrify": { + "version": "1.0.1" + }, + "asap": { + "version": "2.0.6" + }, + "asn1": { + "version": "0.2.4", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "asn1.js": { + "version": "5.4.1", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0" + } + } + }, + "assert": { + "version": "1.5.0", + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1" + }, + "util": { + "version": "0.10.3", + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "assert-plus": { + "version": "1.0.0" + }, + "assign-symbols": { + "version": "1.0.0" + }, + "ast-types": { + "version": "0.14.2", + "requires": { + "tslib": "^2.0.1" + } + }, + "ast-types-flow": { + "version": "0.0.7" + }, + "astral-regex": { + "version": "2.0.0" + }, + "async": { + "version": "2.6.3", + "requires": { + "lodash": "^4.17.14" + } + }, + "async-each": { + "version": "1.0.3" + }, + "async-limiter": { + "version": "1.0.1" + }, + "async-retry": { + "version": "1.3.3", + "dev": true, + "requires": { + "retry": "0.13.1" + } + }, + "async-validator": { + "version": "3.5.2" + }, + "asynckit": { + "version": "0.4.0" + }, + "at-least-node": { + "version": "1.0.0" + }, + "atob": { + "version": "2.1.2" + }, + "atob-lite": { + "version": "2.0.0" + }, + "autoprefixer": { + "version": "9.8.8", + "requires": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1" + } + } + }, + "aws-sign2": { + "version": "0.7.0" + }, + "aws4": { + "version": "1.11.0" + }, + "axe-core": { + "version": "4.3.3" + }, + "axios": { + "version": "0.21.4", + "devOptional": true, + "requires": { + "follow-redirects": "^1.14.0" + } + }, + "axobject-query": { + "version": "2.2.0" + }, + "babel-eslint": { + "version": "10.1.0", + "requires": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0" + } + } + }, + "babel-jest": { + "version": "26.6.3", + "requires": { + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "slash": { + "version": "3.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "babel-literal-to-ast": { + "version": "2.1.0", + "requires": { + "@babel/parser": "^7.1.6", + "@babel/traverse": "^7.1.6", + "@babel/types": "^7.1.6" + } + }, + "babel-loader": { + "version": "8.2.2", + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "find-cache-dir": { + "version": "3.3.2", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "make-dir": { + "version": "3.1.0", + "requires": { + "semver": "^6.0.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "requires": { + "find-up": "^4.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "babel-plugin-add-react-displayname": { + "version": "0.0.5" + }, + "babel-plugin-apply-mdx-type-prop": { + "version": "1.6.22", + "requires": { + "@babel/helper-plugin-utils": "7.10.4", + "@mdx-js/util": "1.6.22" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.10.4" + } + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "requires": { + "object.assign": "^4.1.0" + } + }, + "babel-plugin-emotion": { + "version": "10.2.2", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/serialize": "^0.11.16", + "babel-plugin-macros": "^2.0.0", + "babel-plugin-syntax-jsx": "^6.18.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^1.0.5", + "find-root": "^1.1.0", + "source-map": "^0.5.7" + }, + "dependencies": { + "@emotion/memoize": { + "version": "0.7.4" + }, + "@emotion/serialize": { + "version": "0.11.16", + "requires": { + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/unitless": "0.7.5", + "@emotion/utils": "0.11.3", + "csstype": "^2.5.7" + } + }, + "@emotion/utils": { + "version": "0.11.3" + }, + "escape-string-regexp": { + "version": "1.0.5" + } + } + }, + "babel-plugin-extract-import-names": { + "version": "1.6.22", + "requires": { + "@babel/helper-plugin-utils": "7.10.4" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.10.4" + } + } + }, + "babel-plugin-graphql-tag": { + "version": "2.5.0", + "requires": { + "@babel/parser": "^7.3.2", + "babel-literal-to-ast": "^2.1.0", + "debug": "^4.1.1" + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "26.6.2", + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-plugin-jsx-remove-data-test-id": { + "version": "2.1.3", + "requires": {} + }, + "babel-plugin-lodash": { + "version": "3.3.4", + "requires": { + "@babel/helper-module-imports": "^7.0.0-beta.49", + "@babel/types": "^7.0.0-beta.49", + "glob": "^7.1.1", + "lodash": "^4.17.10", + "require-package-name": "^2.0.1" + } + }, + "babel-plugin-macros": { + "version": "2.8.0", + "requires": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "6.0.0", + "requires": { + "@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" + } + }, + "parse-json": { + "version": "5.2.0", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + } + } + }, + "babel-plugin-named-asset-import": { + "version": "0.3.7", + "requires": {} + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.2.2", + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.2.2", + "semver": "^6.1.1" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.2.5", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2", + "core-js-compat": "^3.16.2" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.2.2", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2" + } + }, + "babel-plugin-react-docgen": { + "version": "4.2.1", + "requires": { + "ast-types": "^0.14.2", + "lodash": "^4.17.15", + "react-docgen": "^5.0.0" + } + }, + "babel-plugin-syntax-jsx": { + "version": "6.18.0" + }, + "babel-plugin-transform-dev": { + "version": "2.0.1" + }, + "babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24" + }, + "babel-plugin-typescript-to-proptypes": { + "version": "1.4.2", + "requires": { + "@babel/helper-module-imports": "^7.12.5", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-typescript": "^7.12.1", + "@babel/types": "^7.12.6" + } + }, + "babel-polyfill": { + "version": "6.26.0", + "requires": { + "babel-runtime": "^6.26.0", + "core-js": "^2.5.0", + "regenerator-runtime": "^0.10.5" + }, + "dependencies": { + "core-js": { + "version": "2.6.12" + }, + "regenerator-runtime": { + "version": "0.10.5" + } + } + }, + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "26.6.2", + "requires": { + "babel-plugin-jest-hoist": "^26.6.2", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "babel-preset-typescript-vue": { + "version": "1.1.1", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-transform-typescript": "^7.3.2", + "@babel/preset-typescript": "^7.3.3", + "vue-template-compiler": "^2.6.11" + } + }, + "babel-runtime": { + "version": "6.26.0", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12" + }, + "regenerator-runtime": { + "version": "0.11.1" + } + } + }, + "bail": { + "version": "1.0.5" + }, + "balanced-match": { + "version": "1.0.2" + }, + "base": { + "version": "0.11.2", + "requires": { + "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" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "base64-js": { + "version": "1.5.1" + }, + "batch": { + "version": "0.6.1" + }, + "batch-processor": { + "version": "1.0.0" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "before-after-hook": { + "version": "2.2.2" + }, + "better-opn": { + "version": "2.1.1", + "requires": { + "open": "^7.0.3" + } + }, + "bfj": { + "version": "6.1.2", + "requires": { + "bluebird": "^3.5.5", + "check-types": "^8.0.3", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + } + }, + "big.js": { + "version": "5.2.2" + }, + "binary-extensions": { + "version": "2.2.0" + }, + "binaryextensions": { + "version": "2.3.0" + }, + "bindings": { + "version": "1.5.0", + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bluebird": { + "version": "3.7.2" + }, + "bn.js": { + "version": "5.2.0" + }, + "body-parser": { + "version": "1.19.0", + "requires": { + "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" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0" + }, + "qs": { + "version": "6.7.0" + } + } + }, + "bonjour": { + "version": "3.5.0", + "requires": { + "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": { + "version": "1.0.0" + }, + "bootstrap": { + "version": "3.4.1" + }, + "bowser": { + "version": "1.9.4" + }, + "boxen": { + "version": "4.2.0", + "requires": { + "ansi-align": "^3.0.0", + "camelcase": "^5.3.1", + "chalk": "^3.0.0", + "cli-boxes": "^2.2.0", + "string-width": "^4.1.0", + "term-size": "^2.1.0", + "type-fest": "^0.8.1", + "widest-line": "^3.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "cli-boxes": { + "version": "2.2.1" + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "0.8.1" + } + } + }, + "brace-expansion": { + "version": "1.1.11", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "requires": { + "fill-range": "^7.0.1" + } + }, + "brfs": { + "version": "1.6.1", + "requires": { + "quote-stream": "^1.0.1", + "resolve": "^1.1.5", + "static-module": "^2.2.0", + "through2": "^2.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "through2": { + "version": "2.0.5", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + } + } + }, + "brorand": { + "version": "1.1.0" + }, + "browser-process-hrtime": { + "version": "1.0.0" + }, + "browser-resolve": { + "version": "1.11.3", + "requires": { + "resolve": "1.1.7" + }, + "dependencies": { + "resolve": { + "version": "1.1.7" + } + } + }, + "browserify-aes": { + "version": "1.2.0", + "requires": { + "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": { + "version": "1.0.1", + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.1.0", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.2.1", + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1" + } + } + }, + "browserify-zlib": { + "version": "0.2.0", + "requires": { + "pako": "~1.0.5" + } + }, + "browserslist": { + "version": "4.17.4", + "requires": { + "caniuse-lite": "^1.0.30001265", + "electron-to-chromium": "^1.3.867", + "escalade": "^3.1.1", + "node-releases": "^2.0.0", + "picocolors": "^1.0.0" + } + }, + "bs-logger": { + "version": "0.2.6", + "requires": { + "fast-json-stable-stringify": "2.x" + } + }, + "bser": { + "version": "2.1.1", + "requires": { + "node-int64": "^0.4.0" + } + }, + "btoa-lite": { + "version": "1.0.0" + }, + "buffer": { + "version": "4.9.2", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + } + } + }, + "buffer-equal": { + "version": "0.0.1" + }, + "buffer-from": { + "version": "1.1.2" + }, + "buffer-indexof": { + "version": "1.1.1" + }, + "buffer-xor": { + "version": "1.0.3" + }, + "builtin-status-codes": { + "version": "3.0.0" + }, + "builtins": { + "version": "1.0.3" + }, + "byline": { + "version": "5.0.0" + }, + "byte-size": { + "version": "5.0.1" + }, + "bytes": { + "version": "3.1.0" + }, + "c8": { + "version": "7.10.0", + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@istanbuljs/schema": "^0.1.2", + "find-up": "^5.0.0", + "foreground-child": "^2.0.0", + "istanbul-lib-coverage": "^3.0.1", + "istanbul-lib-report": "^3.0.0", + "istanbul-reports": "^3.0.2", + "rimraf": "^3.0.0", + "test-exclude": "^6.0.0", + "v8-to-istanbul": "^8.0.0", + "yargs": "^16.2.0", + "yargs-parser": "^20.2.7" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "cliui": { + "version": "7.0.4", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "find-up": { + "version": "5.0.0", + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "6.0.0", + "requires": { + "p-locate": "^5.0.0" + } + }, + "p-locate": { + "version": "5.0.0", + "requires": { + "p-limit": "^3.0.2" + } + }, + "source-map": { + "version": "0.7.3" + }, + "v8-to-istanbul": { + "version": "8.1.0", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "5.0.8" + }, + "yargs": { + "version": "16.2.0", + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9" + } + } + }, + "cacache": { + "version": "12.0.4", + "requires": { + "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" + }, + "dependencies": { + "lru-cache": { + "version": "5.1.1", + "requires": { + "yallist": "^3.0.2" + } + }, + "rimraf": { + "version": "2.7.1", + "requires": { + "glob": "^7.1.3" + } + }, + "yallist": { + "version": "3.1.1" + } + } + }, + "cache-base": { + "version": "1.0.1", + "requires": { + "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" + } + }, + "cachedir": { + "version": "2.1.0" + }, + "call-bind": { + "version": "1.0.2", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "call-me-maybe": { + "version": "1.0.1" + }, + "caller-callsite": { + "version": "2.0.0", + "requires": { + "callsites": "^2.0.0" + }, + "dependencies": { + "callsites": { + "version": "2.0.0" + } + } + }, + "caller-path": { + "version": "2.0.0", + "requires": { + "caller-callsite": "^2.0.0" + } + }, + "callsites": { + "version": "3.1.0" + }, + "camel-case": { + "version": "4.1.2", + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "camelcase": { + "version": "5.3.1" + }, + "camelcase-css": { + "version": "2.0.1" + }, + "camelcase-keys": { + "version": "4.2.0", + "requires": { + "camelcase": "^4.1.0", + "map-obj": "^2.0.0", + "quick-lru": "^1.0.0" + }, + "dependencies": { + "camelcase": { + "version": "4.1.0" + } + } + }, + "caniuse-lite": { + "version": "1.0.30001269" + }, + "capture-exit": { + "version": "2.0.0", + "requires": { + "rsvp": "^4.8.4" + } + }, + "capture-stack-trace": { + "version": "1.0.1" + }, + "cardinal": { + "version": "0.4.4", + "requires": { + "ansicolors": "~0.2.1", + "redeyed": "~0.4.0" + } + }, + "case-sensitive-paths-webpack-plugin": { + "version": "2.4.0" + }, + "caseless": { + "version": "0.12.0" + }, + "ccount": { + "version": "1.1.0" + }, + "chalk": { + "version": "2.4.2", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5" + } + } + }, + "change-case": { + "version": "3.1.0", + "requires": { + "camel-case": "^3.0.0", + "constant-case": "^2.0.0", + "dot-case": "^2.1.0", + "header-case": "^1.0.0", + "is-lower-case": "^1.1.0", + "is-upper-case": "^1.1.0", + "lower-case": "^1.1.1", + "lower-case-first": "^1.0.0", + "no-case": "^2.3.2", + "param-case": "^2.1.0", + "pascal-case": "^2.0.0", + "path-case": "^2.1.0", + "sentence-case": "^2.1.0", + "snake-case": "^2.1.0", + "swap-case": "^1.1.0", + "title-case": "^2.1.0", + "upper-case": "^1.1.1", + "upper-case-first": "^1.1.0" + }, + "dependencies": { + "camel-case": { + "version": "3.0.0", + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } + }, + "param-case": { + "version": "2.1.1", + "requires": { + "no-case": "^2.2.0" + } + }, + "pascal-case": { + "version": "2.0.1", + "requires": { + "camel-case": "^3.0.0", + "upper-case-first": "^1.1.0" + } + } + } + }, + "change-emitter": { + "version": "0.1.6" + }, + "char-regex": { + "version": "1.0.2" + }, + "character-entities": { + "version": "1.2.4" + }, + "character-entities-legacy": { + "version": "1.1.4" + }, + "character-reference-invalid": { + "version": "1.1.4" + }, + "chardet": { + "version": "0.7.0" + }, + "check-types": { + "version": "8.0.3" + }, + "cheerio": { + "version": "1.0.0-rc.10", + "requires": { + "cheerio-select": "^1.5.0", + "dom-serializer": "^1.3.2", + "domhandler": "^4.2.0", + "htmlparser2": "^6.1.0", + "parse5": "^6.0.1", + "parse5-htmlparser2-tree-adapter": "^6.0.1", + "tslib": "^2.2.0" + }, + "dependencies": { + "parse5": { + "version": "6.0.1" + } + } + }, + "cheerio-select": { + "version": "1.5.0", + "requires": { + "css-select": "^4.1.3", + "css-what": "^5.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0", + "domutils": "^2.7.0" + } + }, + "chokidar": { + "version": "3.5.2", + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "chownr": { + "version": "1.1.4" + }, + "chromatic": { + "version": "5.10.2", + "dev": true, + "requires": { + "@actions/core": "^1.5.0", + "@actions/github": "^5.0.0", + "@babel/preset-typescript": "^7.15.0", + "@babel/runtime": "^7.15.3", + "@chromaui/localtunnel": "^2.0.3", + "async-retry": "^1.3.3", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "dotenv": "^8.2.0", + "env-ci": "^5.0.2", + "esm": "^3.2.25", + "execa": "^5.0.0", + "fake-tag": "^2.0.0", + "fs-extra": "^10.0.0", + "https-proxy-agent": "^5.0.0", + "jsonfile": "^6.0.1", + "junit-report-builder": "2.1.0", + "listr": "0.14.3", + "meow": "^8.0.0", + "no-proxy": "^1.0.3", + "node-ask": "^1.0.1", + "node-fetch": "2.6.0", + "node-loggly-bulk": "^2.2.4", + "p-limit": "3.1.0", + "picomatch": "2.2.2", + "pkg-up": "^3.1.0", + "pluralize": "^8.0.0", + "progress-stream": "^2.0.0", + "semver": "^7.3.5", + "slash": "^3.0.0", + "string-argv": "^0.3.1", + "strip-ansi": "6.0.0", + "tmp-promise": "3.0.2", + "tree-kill": "^1.2.2", + "ts-dedent": "^1.0.0", + "util-deprecate": "^1.0.2", + "uuid": "^8.3.2", + "yarn-or-npm": "^3.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "camelcase-keys": { + "version": "6.2.2", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "env-ci": { + "version": "5.3.0", + "dev": true, + "requires": { + "execa": "^4.0.0", + "java-properties": "^1.0.0" + }, + "dependencies": { + "execa": { + "version": "4.1.0", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + } + } + }, + "execa": { + "version": "5.1.1", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "dependencies": { + "get-stream": { + "version": "6.0.1", + "dev": true + }, + "human-signals": { + "version": "2.1.0", + "dev": true + } + } + }, + "fs-extra": { + "version": "10.0.0", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "indent-string": { + "version": "4.0.0", + "dev": true + }, + "map-obj": { + "version": "4.3.0", + "dev": true + }, + "meow": { + "version": "8.1.2", + "dev": true, + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + } + }, + "minimist-options": { + "version": "4.1.0", + "dev": true, + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + } + }, + "picomatch": { + "version": "2.2.2", + "dev": true + }, + "quick-lru": { + "version": "4.0.1", + "dev": true + }, + "redent": { + "version": "3.0.0", + "dev": true, + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "slash": { + "version": "3.0.0", + "dev": true + }, + "strip-ansi": { + "version": "6.0.0", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "trim-newlines": { + "version": "3.0.1", + "dev": true + }, + "ts-dedent": { + "version": "1.2.0", + "dev": true + }, + "type-fest": { + "version": "0.18.1", + "dev": true + }, + "yargs-parser": { + "version": "20.2.9", + "dev": true + } + } + }, + "chrome-trace-event": { + "version": "1.0.3" + }, + "ci-info": { + "version": "2.0.0" + }, + "cipher-base": { + "version": "1.0.4", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "circular-json-es6": { + "version": "2.0.2" + }, + "cjs-module-lexer": { + "version": "0.6.0" + }, + "class-utils": { + "version": "0.3.6", + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0" + } + } + }, + "classnames": { + "version": "2.3.1" + }, + "clean-css": { + "version": "4.2.3", + "requires": { + "source-map": "~0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1" + } + } + }, + "clean-regexp": { + "version": "1.0.0", + "requires": { + "escape-string-regexp": "^1.0.5" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5" + } + } + }, + "clean-stack": { + "version": "2.2.0" + }, + "cli-boxes": { + "version": "1.0.0" + }, + "cli-cursor": { + "version": "2.1.0", + "requires": { + "restore-cursor": "^2.0.0" + } + }, + "cli-table": { + "version": "0.3.6", + "requires": { + "colors": "1.0.3" + } + }, + "cli-table3": { + "version": "0.6.0", + "requires": { + "colors": "^1.1.2", + "object-assign": "^4.1.0", + "string-width": "^4.2.0" + }, + "dependencies": { + "colors": { + "version": "1.4.0", + "optional": true + } + } + }, + "cli-truncate": { + "version": "2.1.0", + "requires": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + } + }, + "cli-width": { + "version": "2.2.1" + }, + "cliui": { + "version": "6.0.0", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "clone": { + "version": "1.0.4" + }, + "clone-buffer": { + "version": "1.0.0" + }, + "clone-deep": { + "version": "4.0.1", + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "clone-stats": { + "version": "1.0.0" + }, + "cloneable-readable": { + "version": "1.1.3", + "requires": { + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "clsx": { + "version": "1.1.1" + }, + "co": { + "version": "4.6.0" + }, + "code-point-at": { + "version": "1.1.0" + }, + "collapse-white-space": { + "version": "1.0.6" + }, + "collect-v8-coverage": { + "version": "1.0.1" + }, + "collection-visit": { + "version": "1.0.0", + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4" + }, + "colorette": { + "version": "1.4.0" + }, + "colors": { + "version": "1.0.3" + }, + "columnify": { + "version": "1.5.4", + "requires": { + "strip-ansi": "^3.0.0", + "wcwidth": "^1.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1" + }, + "strip-ansi": { + "version": "3.0.1", + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "combined-stream": { + "version": "1.0.8", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "comma-separated-tokens": { + "version": "1.0.8" + }, + "commander": { + "version": "4.1.1" + }, + "commitizen": { + "version": "3.1.2", + "requires": { + "cachedir": "2.1.0", + "cz-conventional-changelog": "2.1.0", + "dedent": "0.7.0", + "detect-indent": "^5.0.0", + "find-node-modules": "2.0.0", + "find-root": "1.1.0", + "fs-extra": "^7.0.0", + "glob": "7.1.3", + "inquirer": "6.2.0", + "is-utf8": "^0.2.1", + "lodash": "4.17.14", + "minimist": "1.2.0", + "shelljs": "0.7.6", + "strip-bom": "3.0.0", + "strip-json-comments": "2.0.1" + }, + "dependencies": { + "fs-extra": { + "version": "7.0.1", + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "glob": { + "version": "7.1.3", + "requires": { + "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" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "lodash": { + "version": "4.17.14" + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "common-tags": { + "version": "1.8.0" + }, + "commondir": { + "version": "1.0.1" + }, + "compare-func": { + "version": "1.3.4", + "requires": { + "array-ify": "^1.0.0", + "dot-prop": "^3.0.0" + } + }, + "compare-versions": { + "version": "3.6.0" + }, + "component-emitter": { + "version": "1.3.0" + }, + "compressible": { + "version": "2.0.18", + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "requires": { + "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" + }, + "dependencies": { + "bytes": { + "version": "3.0.0" + }, + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0" + } + } + }, + "compute-scroll-into-view": { + "version": "1.0.17" + }, + "concat-map": { + "version": "0.0.1" + }, + "concat-stream": { + "version": "2.0.0", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.0.2", + "typedarray": "^0.0.6" + } + }, + "config-chain": { + "version": "1.1.13", + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "confusing-browser-globals": { + "version": "1.0.10" + }, + "connect-history-api-fallback": { + "version": "1.6.0" + }, + "console-browserify": { + "version": "1.2.0" + }, + "console-control-strings": { + "version": "1.1.0" + }, + "constant-case": { + "version": "2.0.0", + "requires": { + "snake-case": "^2.1.0", + "upper-case": "^1.1.1" + } + }, + "constants-browserify": { + "version": "1.0.0" + }, + "content-disposition": { + "version": "0.5.3", + "requires": { + "safe-buffer": "5.1.2" + } + }, + "content-type": { + "version": "1.0.4" + }, + "conventional-changelog": { + "version": "3.1.24", + "requires": { + "conventional-changelog-angular": "^5.0.12", + "conventional-changelog-atom": "^2.0.8", + "conventional-changelog-codemirror": "^2.0.8", + "conventional-changelog-conventionalcommits": "^4.5.0", + "conventional-changelog-core": "^4.2.1", + "conventional-changelog-ember": "^2.0.9", + "conventional-changelog-eslint": "^3.0.9", + "conventional-changelog-express": "^2.0.6", + "conventional-changelog-jquery": "^3.0.11", + "conventional-changelog-jshint": "^2.0.9", + "conventional-changelog-preset-loader": "^2.3.4" + }, + "dependencies": { + "compare-func": { + "version": "2.0.0", + "requires": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "conventional-changelog-angular": { + "version": "5.0.13", + "requires": { + "compare-func": "^2.0.0", + "q": "^1.5.1" + } + }, + "dot-prop": { + "version": "5.3.0", + "requires": { + "is-obj": "^2.0.0" + } + }, + "is-obj": { + "version": "2.0.0" + } + } + }, + "conventional-changelog-angular": { + "version": "1.6.6", + "requires": { + "compare-func": "^1.3.1", + "q": "^1.5.1" + } + }, + "conventional-changelog-atom": { + "version": "2.0.8", + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-cli": { + "version": "2.1.1", + "requires": { + "add-stream": "^1.0.0", + "conventional-changelog": "^3.1.24", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "tempfile": "^3.0.0" + }, + "dependencies": { + "camelcase-keys": { + "version": "6.2.2", + "requires": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + } + }, + "indent-string": { + "version": "4.0.0" + }, + "map-obj": { + "version": "4.3.0" + }, + "meow": { + "version": "8.1.2", + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + } + }, + "minimist-options": { + "version": "4.1.0", + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + } + }, + "quick-lru": { + "version": "4.0.1" + }, + "redent": { + "version": "3.0.0", + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "trim-newlines": { + "version": "3.0.1" + }, + "type-fest": { + "version": "0.18.1" + }, + "yargs-parser": { + "version": "20.2.9" + } + } + }, + "conventional-changelog-codemirror": { + "version": "2.0.8", + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-conventionalcommits": { + "version": "4.6.1", + "requires": { + "compare-func": "^2.0.0", + "lodash": "^4.17.15", + "q": "^1.5.1" + }, + "dependencies": { + "compare-func": { + "version": "2.0.0", + "requires": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "dot-prop": { + "version": "5.3.0", + "requires": { + "is-obj": "^2.0.0" + } + }, + "is-obj": { + "version": "2.0.0" + } + } + }, + "conventional-changelog-core": { + "version": "4.2.4", + "requires": { + "add-stream": "^1.0.0", + "conventional-changelog-writer": "^5.0.0", + "conventional-commits-parser": "^3.2.0", + "dateformat": "^3.0.0", + "get-pkg-repo": "^4.0.0", + "git-raw-commits": "^2.0.8", + "git-remote-origin-url": "^2.0.0", + "git-semver-tags": "^4.1.1", + "lodash": "^4.17.15", + "normalize-package-data": "^3.0.0", + "q": "^1.5.1", + "read-pkg": "^3.0.0", + "read-pkg-up": "^3.0.0", + "through2": "^4.0.0" + }, + "dependencies": { + "camelcase-keys": { + "version": "6.2.2", + "requires": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + } + }, + "conventional-commits-parser": { + "version": "3.2.2", + "requires": { + "is-text-path": "^1.0.1", + "JSONStream": "^1.0.4", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + } + }, + "dargs": { + "version": "7.0.0" + }, + "git-raw-commits": { + "version": "2.0.10", + "requires": { + "dargs": "^7.0.0", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + } + }, + "hosted-git-info": { + "version": "2.8.9" + }, + "indent-string": { + "version": "4.0.0" + }, + "locate-path": { + "version": "2.0.0", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "map-obj": { + "version": "4.3.0" + }, + "meow": { + "version": "8.1.2", + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "dependencies": { + "read-pkg": { + "version": "5.2.0", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "normalize-package-data": { + "version": "2.5.0", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "type-fest": { + "version": "0.6.0" + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "dependencies": { + "type-fest": { + "version": "0.8.1" + } + } + } + } + }, + "minimist-options": { + "version": "4.1.0", + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + } + }, + "p-limit": { + "version": "1.3.0", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0" + }, + "parse-json": { + "version": "5.2.0", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "path-exists": { + "version": "3.0.0" + }, + "quick-lru": { + "version": "4.0.1" + }, + "read-pkg-up": { + "version": "3.0.0", + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "requires": { + "locate-path": "^2.0.0" + } + } + } + }, + "redent": { + "version": "3.0.0", + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "semver": { + "version": "5.7.1" + }, + "split2": { + "version": "3.2.2", + "requires": { + "readable-stream": "^3.0.0" + } + }, + "trim-newlines": { + "version": "3.0.1" + }, + "type-fest": { + "version": "0.18.1" + }, + "yargs-parser": { + "version": "20.2.9" + } + } + }, + "conventional-changelog-ember": { + "version": "2.0.9", + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-eslint": { + "version": "3.0.9", + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-express": { + "version": "2.0.6", + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-jquery": { + "version": "3.0.11", + "requires": { + "q": "^1.5.1" + } + }, + "conventional-changelog-jshint": { + "version": "2.0.9", + "requires": { + "compare-func": "^2.0.0", + "q": "^1.5.1" + }, + "dependencies": { + "compare-func": { + "version": "2.0.0", + "requires": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "dot-prop": { + "version": "5.3.0", + "requires": { + "is-obj": "^2.0.0" + } + }, + "is-obj": { + "version": "2.0.0" + } + } + }, + "conventional-changelog-preset-loader": { + "version": "2.3.4" + }, + "conventional-changelog-writer": { + "version": "5.0.0", + "requires": { + "conventional-commits-filter": "^2.0.7", + "dateformat": "^3.0.0", + "handlebars": "^4.7.6", + "json-stringify-safe": "^5.0.1", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "semver": "^6.0.0", + "split": "^1.0.0", + "through2": "^4.0.0" + }, + "dependencies": { + "camelcase-keys": { + "version": "6.2.2", + "requires": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + } + }, + "indent-string": { + "version": "4.0.0" + }, + "map-obj": { + "version": "4.3.0" + }, + "meow": { + "version": "8.1.2", + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + } + }, + "minimist-options": { + "version": "4.1.0", + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + } + }, + "quick-lru": { + "version": "4.0.1" + }, + "redent": { + "version": "3.0.0", + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "trim-newlines": { + "version": "3.0.1" + }, + "type-fest": { + "version": "0.18.1" + }, + "yargs-parser": { + "version": "20.2.9" + } + } + }, + "conventional-commit-types": { + "version": "2.3.0" + }, + "conventional-commits-filter": { + "version": "2.0.7", + "requires": { + "lodash.ismatch": "^4.4.0", + "modify-values": "^1.0.0" + } + }, + "conventional-commits-parser": { + "version": "2.1.7", + "requires": { + "is-text-path": "^1.0.0", + "JSONStream": "^1.0.4", + "lodash": "^4.2.1", + "meow": "^4.0.0", + "split2": "^2.0.0", + "through2": "^2.0.0", + "trim-off-newlines": "^1.0.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "requires": { + "locate-path": "^2.0.0" + } + }, + "hosted-git-info": { + "version": "2.8.9" + }, + "isarray": { + "version": "1.0.0" + }, + "locate-path": { + "version": "2.0.0", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "meow": { + "version": "4.0.1", + "requires": { + "camelcase-keys": "^4.0.0", + "decamelize-keys": "^1.0.0", + "loud-rejection": "^1.0.0", + "minimist": "^1.1.3", + "minimist-options": "^3.0.1", + "normalize-package-data": "^2.3.4", + "read-pkg-up": "^3.0.0", + "redent": "^2.0.0", + "trim-newlines": "^2.0.0" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "p-limit": { + "version": "1.3.0", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0" + }, + "path-exists": { + "version": "3.0.0" + }, + "read-pkg-up": { + "version": "3.0.0", + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "semver": { + "version": "5.7.1" + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "through2": { + "version": "2.0.5", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + } + } + }, + "conventional-recommended-bump": { + "version": "5.0.1", + "requires": { + "concat-stream": "^2.0.0", + "conventional-changelog-preset-loader": "^2.1.1", + "conventional-commits-filter": "^2.0.2", + "conventional-commits-parser": "^3.0.3", + "git-raw-commits": "2.0.0", + "git-semver-tags": "^2.0.3", + "meow": "^4.0.0", + "q": "^1.5.1" + }, + "dependencies": { + "conventional-commits-parser": { + "version": "3.2.2", + "requires": { + "is-text-path": "^1.0.1", + "JSONStream": "^1.0.4", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + }, + "dependencies": { + "camelcase-keys": { + "version": "6.2.2", + "requires": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + } + }, + "meow": { + "version": "8.1.2", + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + } + }, + "minimist-options": { + "version": "4.1.0", + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + } + }, + "redent": { + "version": "3.0.0", + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "split2": { + "version": "3.2.2", + "requires": { + "readable-stream": "^3.0.0" + } + }, + "trim-newlines": { + "version": "3.0.1" + } + } + }, + "find-up": { + "version": "2.1.0", + "requires": { + "locate-path": "^2.0.0" + } + }, + "git-raw-commits": { + "version": "2.0.0", + "requires": { + "dargs": "^4.0.1", + "lodash.template": "^4.0.2", + "meow": "^4.0.0", + "split2": "^2.0.0", + "through2": "^2.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "through2": { + "version": "2.0.5", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + } + } + }, + "git-semver-tags": { + "version": "2.0.3", + "requires": { + "meow": "^4.0.0", + "semver": "^6.0.0" + } + }, + "hosted-git-info": { + "version": "2.8.9" + }, + "indent-string": { + "version": "4.0.0" + }, + "isarray": { + "version": "1.0.0" + }, + "locate-path": { + "version": "2.0.0", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "map-obj": { + "version": "4.3.0" + }, + "meow": { + "version": "4.0.1", + "requires": { + "camelcase-keys": "^4.0.0", + "decamelize-keys": "^1.0.0", + "loud-rejection": "^1.0.0", + "minimist": "^1.1.3", + "minimist-options": "^3.0.1", + "normalize-package-data": "^2.3.4", + "read-pkg-up": "^3.0.0", + "redent": "^2.0.0", + "trim-newlines": "^2.0.0" + }, + "dependencies": { + "normalize-package-data": { + "version": "2.5.0", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "read-pkg-up": { + "version": "3.0.0", + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + } + }, + "semver": { + "version": "5.7.1" + } + } + }, + "p-limit": { + "version": "1.3.0", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0" + }, + "path-exists": { + "version": "3.0.0" + }, + "quick-lru": { + "version": "4.0.1" + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "type-fest": { + "version": "0.18.1" + }, + "yargs-parser": { + "version": "20.2.9" + } + } + }, + "convert-source-map": { + "version": "1.8.0", + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "cookie": { + "version": "0.4.0" + }, + "cookie-signature": { + "version": "1.0.6" + }, + "copy-concurrently": { + "version": "1.0.5", + "requires": { + "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" + }, + "dependencies": { + "aproba": { + "version": "1.2.0" + }, + "rimraf": { + "version": "2.7.1", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "copy-descriptor": { + "version": "0.1.1" + }, + "copy-to-clipboard": { + "version": "3.3.1", + "requires": { + "toggle-selection": "^1.0.6" + } + }, + "core-js": { + "version": "3.8.3" + }, + "core-js-compat": { + "version": "3.18.3", + "requires": { + "browserslist": "^4.17.3", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0" + } + } + }, + "core-js-pure": { + "version": "3.18.3" + }, + "core-util-is": { + "version": "1.0.2" + }, + "cosmiconfig": { + "version": "5.2.1", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "dependencies": { + "import-fresh": { + "version": "2.0.0", + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "resolve-from": { + "version": "3.0.0" + } + } + }, + "cp-file": { + "version": "7.0.0", + "requires": { + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "nested-error-stacks": "^2.0.0", + "p-event": "^4.1.0" + }, + "dependencies": { + "make-dir": { + "version": "3.1.0", + "requires": { + "semver": "^6.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "cpy": { + "version": "8.1.2", + "requires": { + "arrify": "^2.0.1", + "cp-file": "^7.0.0", + "globby": "^9.2.0", + "has-glob": "^1.0.0", + "junk": "^3.1.0", + "nested-error-stacks": "^2.1.0", + "p-all": "^2.1.0", + "p-filter": "^2.1.0", + "p-map": "^3.0.0" + }, + "dependencies": { + "@nodelib/fs.stat": { + "version": "1.1.3" + }, + "array-union": { + "version": "1.0.2", + "requires": { + "array-uniq": "^1.0.1" + } + }, + "arrify": { + "version": "2.0.1" + }, + "braces": { + "version": "2.3.2", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "dir-glob": { + "version": "2.2.2", + "requires": { + "path-type": "^3.0.0" + } + }, + "fast-glob": { + "version": "2.2.7", + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + } + }, + "fill-range": { + "version": "4.0.0", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "glob-parent": { + "version": "3.1.0", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "globby": { + "version": "9.2.0", + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + } + }, + "ignore": { + "version": "4.0.6" + }, + "is-extendable": { + "version": "0.1.1" + }, + "is-number": { + "version": "3.0.0", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "requires": { + "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" + } + }, + "p-map": { + "version": "3.0.0", + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "path-type": { + "version": "3.0.0", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0" + } + } + }, + "pify": { + "version": "4.0.1" + }, + "to-regex-range": { + "version": "2.1.1", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "create-ecdh": { + "version": "4.0.4", + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0" + } + } + }, + "create-error-class": { + "version": "3.0.2", + "requires": { + "capture-stack-trace": "^1.0.0" + } + }, + "create-hash": { + "version": "1.2.0", + "requires": { + "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": { + "version": "1.1.7", + "requires": { + "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" + } + }, + "create-react-context": { + "version": "0.3.0", + "requires": { + "gud": "^1.0.0", + "warning": "^4.0.3" + } + }, + "cross-fetch": { + "version": "2.2.2", + "requires": { + "node-fetch": "2.1.2", + "whatwg-fetch": "2.0.4" + }, + "dependencies": { + "node-fetch": { + "version": "2.1.2" + }, + "whatwg-fetch": { + "version": "2.0.4" + } + } + }, + "cross-spawn": { + "version": "7.0.3", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-browserify": { + "version": "3.12.0", + "requires": { + "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-in-js-utils": { + "version": "2.0.1", + "requires": { + "hyphenate-style-name": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "css-loader": { + "version": "3.6.0", + "requires": { + "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.32", + "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.1.0", + "schema-utils": "^2.7.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "css-select": { + "version": "4.1.3", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + } + }, + "css-what": { + "version": "5.1.0" + }, + "csscolorparser": { + "version": "1.0.3" + }, + "cssesc": { + "version": "3.0.0" + }, + "cssfilter": { + "version": "0.0.10" + }, + "cssom": { + "version": "0.4.4" + }, + "cssstyle": { + "version": "2.3.0", + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8" + } + } + }, + "csstype": { + "version": "2.6.18" + }, + "currently-unhandled": { + "version": "0.4.1", + "requires": { + "array-find-index": "^1.0.1" + } + }, + "cyclist": { + "version": "1.0.1" + }, + "cz-conventional-changelog": { + "version": "2.1.0", + "requires": { + "conventional-commit-types": "^2.0.0", + "lodash.map": "^4.5.1", + "longest": "^1.0.1", + "right-pad": "^1.0.1", + "word-wrap": "^1.0.3" + } + }, + "d3": { + "version": "3.5.17" + }, + "d3-array": { + "version": "1.2.4" + }, + "d3-cloud": { + "version": "1.2.5", + "requires": { + "d3-dispatch": "^1.0.3" + } + }, + "d3-collection": { + "version": "1.0.7" + }, + "d3-color": { + "version": "1.4.1" + }, + "d3-dispatch": { + "version": "1.0.6" + }, + "d3-drag": { + "version": "1.2.5", + "requires": { + "d3-dispatch": "1", + "d3-selection": "1" + } + }, + "d3-ease": { + "version": "1.0.7" + }, + "d3-format": { + "version": "1.4.5" + }, + "d3-geo-projection": { + "version": "0.2.16", + "requires": { + "brfs": "^1.3.0" + } + }, + "d3-hierarchy": { + "version": "1.1.9" + }, + "d3-interpolate": { + "version": "1.4.0", + "requires": { + "d3-color": "1" + } + }, + "d3-path": { + "version": "1.0.9" + }, + "d3-queue": { + "version": "2.0.3" + }, + "d3-sankey": { + "version": "0.4.2", + "requires": { + "d3-array": "1", + "d3-collection": "1", + "d3-interpolate": "1" + } + }, + "d3-sankey-diagram": { + "version": "0.7.3", + "requires": { + "d3-array": "^1.0.2", + "d3-collection": "^1.0.2", + "d3-dispatch": "^1.0.3", + "d3-format": "^1.1.1", + "d3-interpolate": "^1.1.3", + "d3-selection": "^1.0.3", + "d3-transition": "^1.0.4", + "graphlib": "~2.1.0" + } + }, + "d3-scale": { + "version": "3.3.0", + "requires": { + "d3-array": "^2.3.0", + "d3-format": "1 - 2", + "d3-interpolate": "1.2.0 - 2", + "d3-time": "^2.1.1", + "d3-time-format": "2 - 3" + }, + "dependencies": { + "d3-array": { + "version": "2.12.1", + "requires": { + "internmap": "^1.0.0" + } + }, + "d3-time": { + "version": "2.1.1", + "requires": { + "d3-array": "2" + } + } + } + }, + "d3-scale-chromatic": { + "version": "2.0.0", + "requires": { + "d3-color": "1 - 2", + "d3-interpolate": "1 - 2" + } + }, + "d3-selection": { + "version": "1.4.2" + }, + "d3-shape": { + "version": "1.3.7", + "requires": { + "d3-path": "1" + } + }, + "d3-svg-legend": { + "version": "1.13.0", + "requires": {} + }, + "d3-time": { + "version": "1.1.0" + }, + "d3-time-format": { + "version": "2.3.0", + "requires": { + "d3-time": "1" + } + }, + "d3-timer": { + "version": "1.0.10" + }, + "d3-tip": { + "version": "0.9.1", + "requires": { + "d3-collection": "^1.0.4", + "d3-selection": "^1.3.0" + } + }, + "d3-transition": { + "version": "1.3.2", + "requires": { + "d3-color": "1", + "d3-dispatch": "1", + "d3-ease": "1", + "d3-interpolate": "1", + "d3-selection": "^1.1.0", + "d3-timer": "1" + } + }, + "d3-voronoi": { + "version": "1.1.4" + }, + "d3-zoom": { + "version": "1.8.3", + "requires": { + "d3-dispatch": "1", + "d3-drag": "1", + "d3-interpolate": "1", + "d3-selection": "1", + "d3-transition": "1" + } + }, + "damerau-levenshtein": { + "version": "1.0.7" + }, + "dargs": { + "version": "4.1.0", + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "dashdash": { + "version": "1.14.1", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "data-urls": { + "version": "2.0.0", + "requires": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + } + }, + "datamaps": { + "version": "0.5.9", + "requires": { + "@types/d3": "3.5.38", + "d3": "^3.5.6", + "topojson": "^1.6.19" + } + }, + "datatables.net": { + "version": "1.11.3", + "requires": { + "jquery": ">=1.7" + } + }, + "datatables.net-bs": { + "version": "1.11.3", + "requires": { + "datatables.net": ">=1.10.25", + "jquery": ">=1.7" + } + }, + "date-fns": { + "version": "1.30.1", + "dev": true + }, + "date-format": { + "version": "0.0.2", + "dev": true + }, + "dateformat": { + "version": "3.0.3" + }, + "dayjs": { + "version": "1.10.7" + }, + "de-indent": { + "version": "1.0.2" + }, + "debug": { + "version": "4.3.2", + "requires": { + "ms": "2.1.2" + } + }, + "debuglog": { + "version": "1.0.1" + }, + "decamelize": { + "version": "1.2.0" + }, + "decamelize-keys": { + "version": "1.1.0", + "requires": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "dependencies": { + "map-obj": { + "version": "1.0.1" + } + } + }, + "decimal.js": { + "version": "10.3.1" + }, + "decode-uri-component": { + "version": "0.2.0" + }, + "dedent": { + "version": "0.7.0" + }, + "deep-equal": { + "version": "1.1.1", + "requires": { + "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-equal-ident": { + "version": "1.1.1", + "requires": { + "lodash.isequal": "^3.0" + }, + "dependencies": { + "lodash.isequal": { + "version": "3.0.4", + "requires": { + "lodash._baseisequal": "^3.0.0", + "lodash._bindcallback": "^3.0.0" + } + } + } + }, + "deep-extend": { + "version": "0.6.0" + }, + "deep-is": { + "version": "0.1.4" + }, + "deep-object-diff": { + "version": "1.1.0" + }, + "deepmerge": { + "version": "4.2.2" + }, + "default-gateway": { + "version": "4.2.0", + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "requires": { + "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" + } + }, + "get-stream": { + "version": "4.1.0", + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "1.1.0" + }, + "npm-run-path": { + "version": "2.0.2", + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1" + }, + "semver": { + "version": "5.7.1" + }, + "shebang-command": { + "version": "1.2.0", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0" + }, + "which": { + "version": "1.3.1", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "defaults": { + "version": "1.0.3", + "requires": { + "clone": "^1.0.2" + } + }, + "define-properties": { + "version": "1.1.3", + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "2.0.2", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "del": { + "version": "4.1.1", + "requires": { + "@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" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "requires": { + "array-uniq": "^1.0.1" + } + }, + "globby": { + "version": "6.1.0", + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0" + } + } + }, + "pify": { + "version": "4.0.1" + }, + "rimraf": { + "version": "2.7.1", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "delayed-stream": { + "version": "1.0.0" + }, + "delegates": { + "version": "1.0.0" + }, + "depd": { + "version": "1.1.2" + }, + "deprecation": { + "version": "2.3.1" + }, + "des.js": { + "version": "1.0.1", + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "destroy": { + "version": "1.0.4" + }, + "detab": { + "version": "2.0.4", + "requires": { + "repeat-string": "^1.5.4" + } + }, + "detect-file": { + "version": "1.0.0" + }, + "detect-indent": { + "version": "5.0.0" + }, + "detect-newline": { + "version": "3.1.0" + }, + "detect-node": { + "version": "2.1.0" + }, + "detect-port": { + "version": "1.3.0", + "requires": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0" + } + } + }, + "detect-port-alt": { + "version": "1.1.6", + "requires": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0" + } + } + }, + "dezalgo": { + "version": "1.0.3", + "requires": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "diff": { + "version": "4.0.2" + }, + "diff-sequences": { + "version": "26.6.2" + }, + "diffie-hellman": { + "version": "5.0.3", + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0" + } + } + }, + "dir-glob": { + "version": "3.0.1", + "requires": { + "path-type": "^4.0.0" + } + }, + "discontinuous-range": { + "version": "1.0.0" + }, + "distributions": { + "version": "1.1.0", + "requires": { + "mathfn": "^1.0.0" + } + }, + "dnode-protocol": { + "version": "0.2.2", + "requires": { + "jsonify": "~0.0.0", + "traverse": "~0.6.3" + } + }, + "dnode-weak-napi": { + "version": "1.2.2", + "requires": { + "dnode-protocol": "~0.2.2", + "jsonify": "~0.0.0", + "weak-napi": "^1.0.3" + } + }, + "dns-equal": { + "version": "1.0.0" + }, + "dns-packet": { + "version": "1.3.4", + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-accessibility-api": { + "version": "0.5.9" + }, + "dom-align": { + "version": "1.12.2" + }, + "dom-converter": { + "version": "0.2.0", + "requires": { + "utila": "~0.4" + } + }, + "dom-helpers": { + "version": "5.2.1", + "requires": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + }, + "dependencies": { + "csstype": { + "version": "3.0.9" + } + } + }, + "dom-serializer": { + "version": "1.3.2", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "dom-storage": { + "version": "2.1.0" + }, + "dom-walk": { + "version": "0.1.2" + }, + "domain-browser": { + "version": "1.2.0" + }, + "domelementtype": { + "version": "2.2.0" + }, + "domexception": { + "version": "2.0.1", + "requires": { + "webidl-conversions": "^5.0.0" + }, + "dependencies": { + "webidl-conversions": { + "version": "5.0.0" + } + } + }, + "domhandler": { + "version": "4.2.2", + "requires": { + "domelementtype": "^2.2.0" + } + }, + "dompurify": { + "version": "2.3.3" + }, + "domutils": { + "version": "2.8.0", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "dot-case": { + "version": "2.1.1", + "requires": { + "no-case": "^2.2.0" + } + }, + "dot-prop": { + "version": "3.0.0", + "requires": { + "is-obj": "^1.0.0" + } + }, + "dotenv": { + "version": "8.6.0" + }, + "dotenv-defaults": { + "version": "1.1.1", + "requires": { + "dotenv": "^6.2.0" + }, + "dependencies": { + "dotenv": { + "version": "6.2.0" + } + } + }, + "dotenv-expand": { + "version": "5.1.0" + }, + "dotenv-webpack": { + "version": "1.8.0", + "requires": { + "dotenv-defaults": "^1.0.2" + } + }, + "download-stats": { + "version": "0.3.4", + "devOptional": true, + "requires": { + "JSONStream": "^1.2.1", + "lazy-cache": "^2.0.1", + "moment": "^2.15.1" + } + }, + "duplexer": { + "version": "0.1.2" + }, + "duplexer2": { + "version": "0.1.4", + "requires": { + "readable-stream": "^2.0.2" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "duplexer3": { + "version": "0.1.4" + }, + "duplexify": { + "version": "3.7.1", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "earcut": { + "version": "2.2.3" + }, + "ecc-jsbn": { + "version": "0.1.2", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "echarts": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/echarts/-/echarts-5.2.2.tgz", + "integrity": "sha512-yxuBfeIH5c+0FsoRP60w4De6omXhA06c7eUYBsC1ykB6Ys2yK5fSteIYWvkJ4xJVLQgCvAdO8C4mN6MLeJpBaw==", + "requires": { + "tslib": "2.3.0", + "zrender": "5.2.1" + }, + "dependencies": { + "tslib": { + "version": "2.3.0", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + } + } + }, + "editions": { + "version": "2.3.1", + "requires": { + "errlop": "^2.0.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "editorconfig": { + "version": "0.15.3", + "requires": { + "commander": "^2.19.0", + "lru-cache": "^4.1.5", + "semver": "^5.6.0", + "sigmund": "^1.0.1" + }, + "dependencies": { + "commander": { + "version": "2.20.3" + }, + "lru-cache": { + "version": "4.1.5", + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "semver": { + "version": "5.7.1" + }, + "yallist": { + "version": "2.1.2" + } + } + }, + "ee-first": { + "version": "1.1.1" + }, + "ejs": { + "version": "2.7.4" + }, + "electron-to-chromium": { + "version": "1.3.873" + }, + "elegant-spinner": { + "version": "1.0.1", + "dev": true + }, + "element-resize-detector": { + "version": "1.2.3", + "requires": { + "batch-processor": "1.0.0" + } + }, + "elliptic": { + "version": "6.5.4", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0" + } + } + }, + "email-addresses": { + "version": "3.1.0" + }, + "emittery": { + "version": "0.7.2" + }, + "emoji-regex": { + "version": "9.2.2" + }, + "emojis-list": { + "version": "3.0.0" + }, + "encodable": { + "version": "0.7.8", + "requires": { + "@encodable/color": "^1.1.0", + "@encodable/format": "^1.0.5", + "@types/d3-array": "^2.0.0", + "@types/d3-interpolate": "^1.3.1", + "@types/d3-scale": "^2.1.1", + "@types/d3-time": "^1.0.10", + "@types/lodash.get": "^4.4.6", + "d3-array": "^2.3.1", + "d3-interpolate": "^2.0.1", + "d3-scale": "^3.0.1", + "d3-time": "^2.0.0", + "lodash.get": "^4.4.2", + "reselect": "^4.0.0" + }, + "dependencies": { + "d3-array": { + "version": "2.12.1", + "requires": { + "internmap": "^1.0.0" + } + }, + "d3-interpolate": { + "version": "2.0.1", + "requires": { + "d3-color": "1 - 2" + } + }, + "d3-time": { + "version": "2.1.1", + "requires": { + "d3-array": "2" + } + } + } + }, + "encodeurl": { + "version": "1.0.2" + }, + "encoding": { + "version": "0.1.13", + "requires": { + "iconv-lite": "^0.6.2" + }, + "dependencies": { + "iconv-lite": { + "version": "0.6.3", + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + } + } + }, + "end-of-stream": { + "version": "1.4.4", + "requires": { + "once": "^1.4.0" + } + }, + "endent": { + "version": "2.1.0", + "requires": { + "dedent": "^0.7.0", + "fast-json-parse": "^1.0.3", + "objectorarray": "^1.0.5" + } + }, + "enhanced-resolve": { + "version": "0.9.1", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.2.0", + "tapable": "^0.1.8" + } + }, + "enquirer": { + "version": "2.3.6", + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "entities": { + "version": "2.2.0" + }, + "env-ci": { + "version": "4.5.2", + "requires": { + "execa": "^3.2.0", + "java-properties": "^1.0.0" + }, + "dependencies": { + "execa": { + "version": "3.4.0", + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "p-finally": { + "version": "2.0.1" + } + } + }, + "env-paths": { + "version": "2.2.1" + }, + "envinfo": { + "version": "7.8.1" + }, + "enzyme": { + "version": "3.11.0", + "requires": { + "array.prototype.flat": "^1.2.3", + "cheerio": "^1.0.0-rc.3", + "enzyme-shallow-equal": "^1.0.1", + "function.prototype.name": "^1.1.2", + "has": "^1.0.3", + "html-element-map": "^1.2.0", + "is-boolean-object": "^1.0.1", + "is-callable": "^1.1.5", + "is-number-object": "^1.0.4", + "is-regex": "^1.0.5", + "is-string": "^1.0.5", + "is-subset": "^0.1.1", + "lodash.escape": "^4.0.1", + "lodash.isequal": "^4.5.0", + "object-inspect": "^1.7.0", + "object-is": "^1.0.2", + "object.assign": "^4.1.0", + "object.entries": "^1.1.1", + "object.values": "^1.1.1", + "raf": "^3.4.1", + "rst-selector-parser": "^2.2.3", + "string.prototype.trim": "^1.2.1" + } + }, + "enzyme-adapter-react-16": { + "version": "1.15.6", + "requires": { + "enzyme-adapter-utils": "^1.14.0", + "enzyme-shallow-equal": "^1.0.4", + "has": "^1.0.3", + "object.assign": "^4.1.2", + "object.values": "^1.1.2", + "prop-types": "^15.7.2", + "react-is": "^16.13.1", + "react-test-renderer": "^16.0.0-0", + "semver": "^5.7.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1" + } + } + }, + "enzyme-adapter-utils": { + "version": "1.14.0", + "requires": { + "airbnb-prop-types": "^2.16.0", + "function.prototype.name": "^1.1.3", + "has": "^1.0.3", + "object.assign": "^4.1.2", + "object.fromentries": "^2.0.3", + "prop-types": "^15.7.2", + "semver": "^5.7.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1" + } + } + }, + "enzyme-matchers": { + "version": "7.1.2", + "requires": { + "circular-json-es6": "^2.0.1", + "deep-equal-ident": "^1.1.1" + } + }, + "enzyme-shallow-equal": { + "version": "1.0.4", + "requires": { + "has": "^1.0.3", + "object-is": "^1.1.2" + } + }, + "enzyme-to-json": { + "version": "3.6.2", + "requires": { + "@types/cheerio": "^0.22.22", + "lodash": "^4.17.21", + "react-is": "^16.12.0" + } + }, + "err-code": { + "version": "1.1.2" + }, + "errlop": { + "version": "2.2.0" + }, + "errno": { + "version": "0.1.8", + "requires": { + "prr": "~1.0.1" + } + }, + "error": { + "version": "7.2.1", + "requires": { + "string-template": "~0.2.1" + } + }, + "error-ex": { + "version": "1.3.2", + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "error-stack-parser": { + "version": "2.0.6", + "requires": { + "stackframe": "^1.1.1" + } + }, + "es-abstract": { + "version": "1.19.1", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "es-array-method-boxes-properly": { + "version": "1.0.0" + }, + "es-get-iterator": { + "version": "1.1.2", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.0", + "has-symbols": "^1.0.1", + "is-arguments": "^1.1.0", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.5", + "isarray": "^2.0.5" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "es5-shim": { + "version": "4.6.2" + }, + "es6-promise": { + "version": "4.2.8" + }, + "es6-promisify": { + "version": "5.0.0", + "requires": { + "es6-promise": "^4.0.3" + } + }, + "es6-shim": { + "version": "0.35.6" + }, + "escalade": { + "version": "3.1.1" + }, + "escape-html": { + "version": "1.0.3" + }, + "escape-string-regexp": { + "version": "4.0.0" + }, + "escodegen": { + "version": "2.0.0", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": { + "levn": { + "version": "0.3.0", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "optionator": { + "version": "0.8.3", + "requires": { + "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" + } + }, + "prelude-ls": { + "version": "1.1.2" + }, + "source-map": { + "version": "0.6.1", + "optional": true + }, + "type-check": { + "version": "0.3.2", + "requires": { + "prelude-ls": "~1.1.2" + } + } + } + }, + "eslint": { + "version": "7.32.0", + "requires": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "globals": { + "version": "13.11.0", + "requires": { + "type-fest": "^0.20.2" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "ignore": { + "version": "4.0.6" + }, + "strip-json-comments": { + "version": "3.1.1" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "0.20.2" + } + } + }, + "eslint-ast-utils": { + "version": "1.1.0", + "requires": { + "lodash.get": "^4.4.2", + "lodash.zip": "^4.2.0" + } + }, + "eslint-config-airbnb": { + "version": "18.2.1", + "requires": { + "eslint-config-airbnb-base": "^14.2.1", + "object.assign": "^4.1.2", + "object.entries": "^1.1.2" + } + }, + "eslint-config-airbnb-base": { + "version": "14.2.1", + "requires": { + "confusing-browser-globals": "^1.0.10", + "object.assign": "^4.1.2", + "object.entries": "^1.1.2" + } + }, + "eslint-config-prettier": { + "version": "7.2.0", + "requires": {} + }, + "eslint-import-resolver-node": { + "version": "0.3.6", + "requires": { + "debug": "^3.2.7", + "resolve": "^1.20.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-import-resolver-typescript": { + "version": "2.5.0", + "requires": { + "debug": "^4.3.1", + "glob": "^7.1.7", + "is-glob": "^4.0.1", + "resolve": "^1.20.0", + "tsconfig-paths": "^3.9.0" + } + }, + "eslint-import-resolver-webpack": { + "version": "0.13.1", + "requires": { + "array-find": "^1.0.0", + "debug": "^3.2.7", + "enhanced-resolve": "^0.9.1", + "find-root": "^1.1.0", + "has": "^1.0.3", + "interpret": "^1.4.0", + "is-core-module": "^2.4.0", + "is-regex": "^1.1.3", + "lodash": "^4.17.21", + "resolve": "^1.20.0", + "semver": "^5.7.1" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "requires": { + "ms": "^2.1.1" + } + }, + "semver": { + "version": "5.7.1" + } + } + }, + "eslint-module-utils": { + "version": "2.7.1", + "requires": { + "debug": "^3.2.7", + "find-up": "^2.1.0", + "pkg-dir": "^2.0.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "requires": { + "ms": "^2.1.1" + } + }, + "find-up": { + "version": "2.1.0", + "requires": { + "locate-path": "^2.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "1.3.0", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0" + }, + "path-exists": { + "version": "3.0.0" + } + } + }, + "eslint-plugin-cypress": { + "version": "2.12.1", + "requires": { + "globals": "^11.12.0" + } + }, + "eslint-plugin-import": { + "version": "2.25.2", + "requires": { + "array-includes": "^3.1.4", + "array.prototype.flat": "^1.2.5", + "debug": "^2.6.9", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-module-utils": "^2.7.0", + "has": "^1.0.3", + "is-core-module": "^2.7.0", + "is-glob": "^4.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.5", + "resolve": "^1.20.0", + "tsconfig-paths": "^3.11.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "doctrine": { + "version": "2.1.0", + "requires": { + "esutils": "^2.0.2" + } + }, + "ms": { + "version": "2.0.0" + } + } + }, + "eslint-plugin-jest": { + "version": "24.7.0", + "requires": { + "@typescript-eslint/experimental-utils": "^4.0.1" + } + }, + "eslint-plugin-jest-dom": { + "version": "3.9.2", + "requires": { + "@babel/runtime": "^7.9.6", + "@testing-library/dom": "^7.28.1", + "requireindex": "^1.2.0" + } + }, + "eslint-plugin-jsx-a11y": { + "version": "6.4.1", + "requires": { + "@babel/runtime": "^7.11.2", + "aria-query": "^4.2.2", + "array-includes": "^3.1.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.0.2", + "axobject-query": "^2.2.0", + "damerau-levenshtein": "^1.0.6", + "emoji-regex": "^9.0.0", + "has": "^1.0.3", + "jsx-ast-utils": "^3.1.0", + "language-tags": "^1.0.5" + } + }, + "eslint-plugin-no-only-tests": { + "version": "2.6.0" + }, + "eslint-plugin-prettier": { + "version": "3.4.1", + "requires": { + "prettier-linter-helpers": "^1.0.0" + } + }, + "eslint-plugin-react": { + "version": "7.26.1", + "requires": { + "array-includes": "^3.1.3", + "array.prototype.flatmap": "^1.2.4", + "doctrine": "^2.1.0", + "estraverse": "^5.2.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.0.4", + "object.entries": "^1.1.4", + "object.fromentries": "^2.0.4", + "object.hasown": "^1.0.0", + "object.values": "^1.1.4", + "prop-types": "^15.7.2", + "resolve": "^2.0.0-next.3", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.5" + }, + "dependencies": { + "doctrine": { + "version": "2.1.0", + "requires": { + "esutils": "^2.0.2" + } + }, + "resolve": { + "version": "2.0.0-next.3", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "eslint-plugin-react-hooks": { + "version": "4.2.0", + "requires": {} + }, + "eslint-plugin-testing-library": { + "version": "3.10.2", + "requires": { + "@typescript-eslint/experimental-utils": "^3.10.1" + }, + "dependencies": { + "@typescript-eslint/experimental-utils": { + "version": "3.10.1", + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/typescript-estree": "3.10.1", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + }, + "@typescript-eslint/types": { + "version": "3.10.1" + }, + "@typescript-eslint/typescript-estree": { + "version": "3.10.1", + "requires": { + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/visitor-keys": "3.10.1", + "debug": "^4.1.1", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "3.10.1", + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "eslint-visitor-keys": { + "version": "1.3.0" + } + } + }, + "eslint-plugin-unicorn": { + "version": "25.0.1", + "requires": { + "ci-info": "^2.0.0", + "clean-regexp": "^1.0.0", + "eslint-ast-utils": "^1.1.0", + "eslint-template-visitor": "^2.2.1", + "eslint-utils": "^2.1.0", + "import-modules": "^2.0.0", + "lodash": "^4.17.20", + "pluralize": "^8.0.0", + "read-pkg-up": "^7.0.1", + "regexp-tree": "^0.1.21", + "reserved-words": "^0.1.2", + "safe-regex": "^2.1.1", + "semver": "^7.3.4" + }, + "dependencies": { + "eslint-template-visitor": { + "version": "2.3.2", + "requires": { + "@babel/core": "^7.12.16", + "@babel/eslint-parser": "^7.12.16", + "eslint-visitor-keys": "^2.0.0", + "esquery": "^1.3.1", + "multimap": "^1.1.0" + } + } + } + }, + "eslint-scope": { + "version": "5.1.1", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "dependencies": { + "estraverse": { + "version": "4.3.0" + } + } + }, + "eslint-utils": { + "version": "2.1.0", + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0" + } + } + }, + "eslint-visitor-keys": { + "version": "2.1.0" + }, + "esm": { + "version": "3.2.25" + }, + "espree": { + "version": "7.3.1", + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0" + } + } + }, + "esprima": { + "version": "4.0.1" + }, + "esprint": { + "version": "0.7.0", + "requires": { + "dnode-weak-napi": "1.2.2", + "fb-watchman": "^2.0.0", + "glob": "^7.1.4", + "sane": "^4.1.0", + "worker-farm": "^1.7.0", + "yargs": "^14.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0" + }, + "cliui": { + "version": "5.0.0", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "emoji-regex": { + "version": "7.0.3" + }, + "find-up": { + "version": "3.0.0", + "requires": { + "locate-path": "^3.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0" + }, + "locate-path": { + "version": "3.0.0", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0" + }, + "string-width": { + "version": "3.1.0", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "yargs": { + "version": "14.2.3", + "requires": { + "cliui": "^5.0.0", + "decamelize": "^1.2.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": "^15.0.1" + } + }, + "yargs-parser": { + "version": "15.0.3", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "esquery": { + "version": "1.4.0", + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.2.0" + }, + "estree-to-babel": { + "version": "3.2.1", + "requires": { + "@babel/traverse": "^7.1.6", + "@babel/types": "^7.2.0", + "c8": "^7.6.0" + } + }, + "esutils": { + "version": "2.0.3" + }, + "etag": { + "version": "1.8.1" + }, + "eventemitter3": { + "version": "3.1.2" + }, + "events": { + "version": "3.3.0" + }, + "eventsource": { + "version": "1.1.0", + "requires": { + "original": "^1.0.0" + } + }, + "evp_bytestokey": { + "version": "1.0.3", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "exec-sh": { + "version": "0.3.6" + }, + "execa": { + "version": "4.1.0", + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "exit": { + "version": "0.1.2" + }, + "expand-brackets": { + "version": "2.1.4", + "requires": { + "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" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "is-extendable": { + "version": "0.1.1" + }, + "kind-of": { + "version": "5.1.0" + }, + "ms": { + "version": "2.0.0" + } + } + }, + "expand-tilde": { + "version": "2.0.2", + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "expect": { + "version": "26.6.2", + "requires": { + "@jest/types": "^26.6.2", + "ansi-styles": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + } + } + }, + "express": { + "version": "4.17.1", + "requires": { + "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" + }, + "dependencies": { + "array-flatten": { + "version": "1.1.1" + }, + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0" + }, + "path-to-regexp": { + "version": "0.1.7" + }, + "qs": { + "version": "6.7.0" + } + } + }, + "extend": { + "version": "3.0.2" + }, + "extend-shallow": { + "version": "3.0.2", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "external-editor": { + "version": "3.1.0", + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + } + }, + "extglob": { + "version": "2.0.4", + "requires": { + "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" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-extendable": { + "version": "0.1.1" + } + } + }, + "extsprintf": { + "version": "1.3.0" + }, + "fake-tag": { + "version": "2.0.0", + "dev": true + }, + "falafel": { + "version": "2.2.4", + "requires": { + "acorn": "^7.1.1", + "foreach": "^2.0.5", + "isarray": "^2.0.1", + "object-keys": "^1.0.6" + } + }, + "fast-deep-equal": { + "version": "3.1.3" + }, + "fast-diff": { + "version": "1.2.0" + }, + "fast-glob": { + "version": "3.2.7", + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fast-json-parse": { + "version": "1.0.3" + }, + "fast-json-stable-stringify": { + "version": "2.1.0" + }, + "fast-levenshtein": { + "version": "2.0.6" + }, + "fast-safe-stringify": { + "version": "2.1.1" + }, + "fastq": { + "version": "1.13.0", + "requires": { + "reusify": "^1.0.4" + } + }, + "fault": { + "version": "1.0.4", + "requires": { + "format": "^0.2.0" + } + }, + "faye-websocket": { + "version": "0.11.4", + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "fb-watchman": { + "version": "2.0.1", + "requires": { + "bser": "2.1.1" + } + }, + "fbjs": { + "version": "0.8.17", + "requires": { + "core-js": "^1.0.0", + "isomorphic-fetch": "^2.1.1", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^0.7.18" + }, + "dependencies": { + "core-js": { + "version": "1.2.7" + } + } + }, + "fetch-mock": { + "version": "6.5.2", + "dev": true, + "requires": { + "babel-polyfill": "^6.26.0", + "glob-to-regexp": "^0.4.0", + "path-to-regexp": "^2.2.1" + } + }, + "fetch-retry": { + "version": "4.1.1" + }, + "figgy-pudding": { + "version": "3.5.2" + }, + "figures": { + "version": "3.2.0", + "requires": { + "escape-string-regexp": "^1.0.5" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5" + } + } + }, + "file-entry-cache": { + "version": "6.0.1", + "requires": { + "flat-cache": "^3.0.4" + } + }, + "file-loader": { + "version": "6.2.0", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.0", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "file-system-cache": { + "version": "1.0.5", + "requires": { + "bluebird": "^3.3.5", + "fs-extra": "^0.30.0", + "ramda": "^0.21.0" + }, + "dependencies": { + "fs-extra": { + "version": "0.30.0", + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^2.1.0", + "klaw": "^1.0.0", + "path-is-absolute": "^1.0.0", + "rimraf": "^2.2.8" + } + }, + "jsonfile": { + "version": "2.4.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "ramda": { + "version": "0.21.0" + }, + "rimraf": { + "version": "2.7.1", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "optional": true + }, + "filelist": { + "version": "1.0.2", + "requires": { + "minimatch": "^3.0.4" + } + }, + "filename-reserved-regex": { + "version": "2.0.0" + }, + "filenamify": { + "version": "4.3.0", + "requires": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.1", + "trim-repeated": "^1.0.0" + } + }, + "filesize": { + "version": "6.1.0" + }, + "fill-range": { + "version": "7.0.1", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "filter-obj": { + "version": "1.1.0" + }, + "finalhandler": { + "version": "1.1.2", + "requires": { + "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" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0" + } + } + }, + "find-cache-dir": { + "version": "2.1.0", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0" + }, + "pkg-dir": { + "version": "3.0.0", + "requires": { + "find-up": "^3.0.0" + } + } + } + }, + "find-node-modules": { + "version": "2.0.0", + "requires": { + "findup-sync": "^3.0.0", + "merge": "^1.2.1" + } + }, + "find-root": { + "version": "1.1.0" + }, + "find-up": { + "version": "4.1.0", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "find-versions": { + "version": "4.0.0", + "requires": { + "semver-regex": "^3.1.2" + } + }, + "findup-sync": { + "version": "3.0.0", + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-extendable": { + "version": "0.1.1" + }, + "is-number": { + "version": "3.0.0", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "requires": { + "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" + } + }, + "to-regex-range": { + "version": "2.1.1", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "first-chunk-stream": { + "version": "2.0.0", + "devOptional": true, + "requires": { + "readable-stream": "^2.0.2" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "devOptional": true + }, + "readable-stream": { + "version": "2.3.7", + "devOptional": true, + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "devOptional": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "flat-cache": { + "version": "3.0.4", + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.2" + }, + "flush-write-stream": { + "version": "1.1.1", + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "follow-redirects": { + "version": "1.14.4" + }, + "for-in": { + "version": "1.0.2" + }, + "foreach": { + "version": "2.0.5" + }, + "foreground-child": { + "version": "2.0.0", + "requires": { + "cross-spawn": "^7.0.0", + "signal-exit": "^3.0.2" + } + }, + "forever-agent": { + "version": "0.6.1" + }, + "fork-ts-checker-webpack-plugin": { + "version": "5.2.1", + "dev": true, + "requires": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "cosmiconfig": { + "version": "6.0.0", + "dev": true, + "requires": { + "@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" + } + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "parse-json": { + "version": "5.2.0", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "schema-utils": { + "version": "2.7.0", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tapable": { + "version": "1.1.3", + "dev": true + } + } + }, + "form-data": { + "version": "3.0.1", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "format": { + "version": "0.2.2" + }, + "forwarded": { + "version": "0.2.0" + }, + "fragment-cache": { + "version": "0.2.1", + "requires": { + "map-cache": "^0.2.2" + } + }, + "fresh": { + "version": "0.5.2" + }, + "from2": { + "version": "2.3.0", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "front-matter": { + "version": "2.3.0", + "requires": { + "js-yaml": "^3.10.0" + } + }, + "fs-extra": { + "version": "9.1.0", + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs-minipass": { + "version": "1.2.7", + "requires": { + "minipass": "^2.6.0" + } + }, + "fs-monkey": { + "version": "1.0.3" + }, + "fs-readdir-recursive": { + "version": "1.1.0" + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "fs.realpath": { + "version": "1.0.0" + }, + "fsevents": { + "version": "2.3.2", + "optional": true + }, + "function-bind": { + "version": "1.1.1" + }, + "function.prototype.name": { + "version": "1.1.5", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + } + }, + "functional-red-black-tree": { + "version": "1.0.1" + }, + "functions-have-names": { + "version": "1.2.2" + }, + "fuse.js": { + "version": "3.6.1" + }, + "gauge": { + "version": "2.7.4", + "requires": { + "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" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1" + }, + "aproba": { + "version": "1.2.0" + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "genfun": { + "version": "5.0.0" + }, + "gensync": { + "version": "1.0.0-beta.2" + }, + "geojson-vt": { + "version": "3.2.1" + }, + "get-caller-file": { + "version": "2.0.5" + }, + "get-intrinsic": { + "version": "1.1.1", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-own-enumerable-property-symbols": { + "version": "3.0.2" + }, + "get-package-type": { + "version": "0.1.0" + }, + "get-pkg-repo": { + "version": "4.2.1", + "requires": { + "@hutson/parse-repository-url": "^3.0.0", + "hosted-git-info": "^4.0.0", + "through2": "^2.0.0", + "yargs": "^16.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "cliui": { + "version": "7.0.4", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "through2": { + "version": "2.0.5", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "5.0.8" + }, + "yargs": { + "version": "16.2.0", + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9" + } + } + }, + "get-port": { + "version": "4.2.0" + }, + "get-stdin": { + "version": "7.0.0" + }, + "get-stream": { + "version": "5.2.0", + "requires": { + "pump": "^3.0.0" + } + }, + "get-symbol-description": { + "version": "1.0.0", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "get-value": { + "version": "2.0.6" + }, + "getpass": { + "version": "0.1.7", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "gh-got": { + "version": "5.0.0", + "requires": { + "got": "^6.2.0", + "is-plain-obj": "^1.1.0" + } + }, + "gh-pages": { + "version": "3.2.3", + "requires": { + "async": "^2.6.1", + "commander": "^2.18.0", + "email-addresses": "^3.0.1", + "filenamify": "^4.3.0", + "find-cache-dir": "^3.3.1", + "fs-extra": "^8.1.0", + "globby": "^6.1.0" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "requires": { + "array-uniq": "^1.0.1" + } + }, + "commander": { + "version": "2.20.3" + }, + "find-cache-dir": { + "version": "3.3.2", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "fs-extra": { + "version": "8.1.0", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "globby": { + "version": "6.1.0", + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "make-dir": { + "version": "3.1.0", + "requires": { + "semver": "^6.0.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "requires": { + "find-up": "^4.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "git-raw-commits": { + "version": "1.3.6", + "requires": { + "dargs": "^4.0.1", + "lodash.template": "^4.0.2", + "meow": "^4.0.0", + "split2": "^2.0.0", + "through2": "^2.0.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "requires": { + "locate-path": "^2.0.0" + } + }, + "hosted-git-info": { + "version": "2.8.9" + }, + "isarray": { + "version": "1.0.0" + }, + "locate-path": { + "version": "2.0.0", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "meow": { + "version": "4.0.1", + "requires": { + "camelcase-keys": "^4.0.0", + "decamelize-keys": "^1.0.0", + "loud-rejection": "^1.0.0", + "minimist": "^1.1.3", + "minimist-options": "^3.0.1", + "normalize-package-data": "^2.3.4", + "read-pkg-up": "^3.0.0", + "redent": "^2.0.0", + "trim-newlines": "^2.0.0" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "p-limit": { + "version": "1.3.0", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0" + }, + "path-exists": { + "version": "3.0.0" + }, + "read-pkg-up": { + "version": "3.0.0", + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "semver": { + "version": "5.7.1" + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "through2": { + "version": "2.0.5", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + } + } + }, + "git-remote-origin-url": { + "version": "2.0.0", + "requires": { + "gitconfiglocal": "^1.0.0", + "pify": "^2.3.0" + } + }, + "git-semver-tags": { + "version": "4.1.1", + "requires": { + "meow": "^8.0.0", + "semver": "^6.0.0" + }, + "dependencies": { + "camelcase-keys": { + "version": "6.2.2", + "requires": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + } + }, + "indent-string": { + "version": "4.0.0" + }, + "map-obj": { + "version": "4.3.0" + }, + "meow": { + "version": "8.1.2", + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + } + }, + "minimist-options": { + "version": "4.1.0", + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + } + }, + "quick-lru": { + "version": "4.0.1" + }, + "redent": { + "version": "3.0.0", + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "trim-newlines": { + "version": "3.0.1" + }, + "type-fest": { + "version": "0.18.1" + }, + "yargs-parser": { + "version": "20.2.9" + } + } + }, + "git-up": { + "version": "4.0.5", + "requires": { + "is-ssh": "^1.3.0", + "parse-url": "^6.0.0" + } + }, + "git-url-parse": { + "version": "11.6.0", + "requires": { + "git-up": "^4.0.0" + } + }, + "gitconfiglocal": { + "version": "1.0.0", + "requires": { + "ini": "^1.3.2" + } + }, + "github-username": { + "version": "3.0.0", + "requires": { + "gh-got": "^5.0.0" + } + }, + "gl-matrix": { + "version": "3.4.3" + }, + "glob": { + "version": "7.2.0", + "requires": { + "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" + } + }, + "glob-base": { + "version": "0.3.0", + "requires": { + "glob-parent": "^2.0.0", + "is-glob": "^2.0.0" + }, + "dependencies": { + "glob-parent": { + "version": "2.0.0", + "requires": { + "is-glob": "^2.0.0" + } + }, + "is-extglob": { + "version": "1.0.0" + }, + "is-glob": { + "version": "2.0.1", + "requires": { + "is-extglob": "^1.0.0" + } + } + } + }, + "glob-parent": { + "version": "5.1.2", + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-promise": { + "version": "3.4.0", + "requires": { + "@types/glob": "*" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "dev": true + }, + "global": { + "version": "4.4.0", + "requires": { + "min-document": "^2.19.0", + "process": "^0.11.10" + } + }, + "global-box": { + "version": "1.2.0" + }, + "global-cache": { + "version": "1.2.1", + "requires": { + "define-properties": "^1.1.2", + "is-symbol": "^1.0.1" + } + }, + "global-dirs": { + "version": "0.1.1", + "requires": { + "ini": "^1.3.4" + } + }, + "global-modules": { + "version": "2.0.0", + "requires": { + "global-prefix": "^3.0.0" + } + }, + "global-prefix": { + "version": "3.0.0", + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "globals": { + "version": "11.12.0" + }, + "globalthis": { + "version": "1.0.2", + "requires": { + "define-properties": "^1.1.3" + } + }, + "globby": { + "version": "11.0.4", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "dependencies": { + "slash": { + "version": "3.0.0" + } + } + }, + "got": { + "version": "6.7.1", + "requires": { + "create-error-class": "^3.0.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-redirect": "^1.0.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "lowercase-keys": "^1.0.0", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "unzip-response": "^2.0.1", + "url-parse-lax": "^1.0.0" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0" + }, + "is-stream": { + "version": "1.1.0" + } + } + }, + "graceful-fs": { + "version": "4.2.8" + }, + "graphlib": { + "version": "2.1.8", + "requires": { + "lodash": "^4.17.15" + } + }, + "graphql": { + "version": "0.12.3", + "requires": { + "iterall": "1.1.3" + } + }, + "graphql-config": { + "version": "1.2.1", + "requires": { + "graphql": "^0.12.3", + "graphql-import": "^0.4.0", + "graphql-request": "^1.4.0", + "js-yaml": "^3.10.0", + "lodash": "^4.17.4", + "minimatch": "^3.0.4" + } + }, + "graphql-import": { + "version": "0.4.5", + "requires": { + "lodash": "^4.17.4" + } + }, + "graphql-request": { + "version": "1.8.2", + "requires": { + "cross-fetch": "2.2.2" + } + }, + "graphql-tag": { + "version": "2.12.5", + "peer": true, + "requires": { + "tslib": "^2.1.0" + } + }, + "grid-index": { + "version": "1.1.0" + }, + "grouped-queue": { + "version": "1.1.0", + "devOptional": true, + "requires": { + "lodash": "^4.17.15" + } + }, + "growly": { + "version": "1.3.0" + }, + "gud": { + "version": "1.0.0" + }, + "gzip-size": { + "version": "5.1.1", + "requires": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + }, + "dependencies": { + "pify": { + "version": "4.0.1" + } + } + }, + "hammerjs": { + "version": "2.0.8" + }, + "handle-thing": { + "version": "2.0.1" + }, + "handlebars": { + "version": "4.7.7", + "requires": { + "minimist": "^1.2.5", + "neo-async": "^2.6.0", + "source-map": "^0.6.1", + "uglify-js": "^3.1.4", + "wordwrap": "^1.0.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.5" + }, + "source-map": { + "version": "0.6.1" + } + } + }, + "har-schema": { + "version": "2.0.0" + }, + "har-validator": { + "version": "5.1.5", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "hard-rejection": { + "version": "2.1.0" + }, + "harmony-reflect": { + "version": "1.6.2" + }, + "has": { + "version": "1.0.3", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-ansi": { + "version": "2.0.0", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1" + } + } + }, + "has-bigints": { + "version": "1.0.1" + }, + "has-flag": { + "version": "3.0.0" + }, + "has-glob": { + "version": "1.0.0", + "requires": { + "is-glob": "^3.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "has-symbols": { + "version": "1.0.2" + }, + "has-tostringtag": { + "version": "1.0.0", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-unicode": { + "version": "2.0.1" + }, + "has-value": { + "version": "1.0.0", + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hash-base": { + "version": "3.1.0", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1" + } + } + }, + "hash.js": { + "version": "1.1.7", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "hast-to-hyperscript": { + "version": "9.0.1", + "requires": { + "@types/unist": "^2.0.3", + "comma-separated-tokens": "^1.0.0", + "property-information": "^5.3.0", + "space-separated-tokens": "^1.0.0", + "style-to-object": "^0.3.0", + "unist-util-is": "^4.0.0", + "web-namespaces": "^1.0.0" + }, + "dependencies": { + "unist-util-is": { + "version": "4.1.0" + } + } + }, + "hast-util-from-parse5": { + "version": "6.0.1", + "requires": { + "@types/parse5": "^5.0.0", + "hastscript": "^6.0.0", + "property-information": "^5.0.0", + "vfile": "^4.0.0", + "vfile-location": "^3.2.0", + "web-namespaces": "^1.0.0" + }, + "dependencies": { + "is-buffer": { + "version": "2.0.5" + }, + "unist-util-stringify-position": { + "version": "2.0.3", + "requires": { + "@types/unist": "^2.0.2" + } + }, + "vfile": { + "version": "4.2.1", + "requires": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + } + }, + "vfile-location": { + "version": "3.2.0" + }, + "vfile-message": { + "version": "2.0.4", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + } + } + } + }, + "hast-util-parse-selector": { + "version": "2.2.5" + }, + "hast-util-raw": { + "version": "6.0.1", + "requires": { + "@types/hast": "^2.0.0", + "hast-util-from-parse5": "^6.0.0", + "hast-util-to-parse5": "^6.0.0", + "html-void-elements": "^1.0.0", + "parse5": "^6.0.0", + "unist-util-position": "^3.0.0", + "vfile": "^4.0.0", + "web-namespaces": "^1.0.0", + "xtend": "^4.0.0", + "zwitch": "^1.0.0" + }, + "dependencies": { + "is-buffer": { + "version": "2.0.5" + }, + "parse5": { + "version": "6.0.1" + }, + "unist-util-stringify-position": { + "version": "2.0.3", + "requires": { + "@types/unist": "^2.0.2" + } + }, + "vfile": { + "version": "4.2.1", + "requires": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + } + }, + "vfile-message": { + "version": "2.0.4", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + } + } + } + }, + "hast-util-to-parse5": { + "version": "6.0.0", + "requires": { + "hast-to-hyperscript": "^9.0.0", + "property-information": "^5.0.0", + "web-namespaces": "^1.0.0", + "xtend": "^4.0.0", + "zwitch": "^1.0.0" + } + }, + "hastscript": { + "version": "6.0.0", + "requires": { + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^1.0.0", + "hast-util-parse-selector": "^2.0.0", + "property-information": "^5.0.0", + "space-separated-tokens": "^1.0.0" + } + }, + "he": { + "version": "1.2.0" + }, + "header-case": { + "version": "1.0.1", + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.1.3" + } + }, + "highlight.js": { + "version": "10.7.3" + }, + "hmac-drbg": { + "version": "1.0.1", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "hoist-non-react-statics": { + "version": "3.3.2", + "requires": { + "react-is": "^16.7.0" + } + }, + "homedir-polyfill": { + "version": "1.0.3", + "requires": { + "parse-passwd": "^1.0.0" + } + }, + "hoopy": { + "version": "0.1.4" + }, + "hosted-git-info": { + "version": "4.0.2", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "hpack.js": { + "version": "2.1.6", + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "html-element-map": { + "version": "1.3.1", + "requires": { + "array.prototype.filter": "^1.0.0", + "call-bind": "^1.0.2" + } + }, + "html-encoding-sniffer": { + "version": "2.0.1", + "requires": { + "whatwg-encoding": "^1.0.5" + } + }, + "html-entities": { + "version": "1.4.0" + }, + "html-escaper": { + "version": "2.0.2" + }, + "html-minifier-terser": { + "version": "5.1.1", + "requires": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + } + }, + "html-to-react": { + "version": "1.4.7", + "requires": { + "domhandler": "^4.0", + "htmlparser2": "^7.0", + "lodash.camelcase": "^4.3.0", + "ramda": "^0.27.1" + }, + "dependencies": { + "entities": { + "version": "3.0.1" + }, + "htmlparser2": { + "version": "7.1.2", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.2", + "domutils": "^2.8.0", + "entities": "^3.0.1" + } + } + } + }, + "html-void-elements": { + "version": "1.0.5" + }, + "html-webpack-plugin": { + "version": "4.5.2", + "requires": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.20", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + }, + "dependencies": { + "tapable": { + "version": "1.1.3" + } + } + }, + "htmlparser2": { + "version": "6.1.0", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "http-cache-semantics": { + "version": "3.8.1" + }, + "http-deceiver": { + "version": "1.2.7" + }, + "http-errors": { + "version": "1.7.2", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.3" + } + } + }, + "http-parser-js": { + "version": "0.5.3" + }, + "http-proxy": { + "version": "1.18.1", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "dependencies": { + "eventemitter3": { + "version": "4.0.7" + } + } + }, + "http-proxy-agent": { + "version": "4.0.1", + "requires": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + } + }, + "http-proxy-middleware": { + "version": "0.19.1", + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-extendable": { + "version": "0.1.1" + }, + "is-number": { + "version": "3.0.0", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "requires": { + "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" + } + }, + "to-regex-range": { + "version": "2.1.1", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "http-signature": { + "version": "1.2.0", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-browserify": { + "version": "1.0.0" + }, + "https-proxy-agent": { + "version": "5.0.0", + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "human-signals": { + "version": "1.1.1" + }, + "humanize-ms": { + "version": "1.2.1", + "requires": { + "ms": "^2.0.0" + } + }, + "husky": { + "version": "4.3.8", + "requires": { + "chalk": "^4.0.0", + "ci-info": "^2.0.0", + "compare-versions": "^3.6.0", + "cosmiconfig": "^7.0.0", + "find-versions": "^4.0.0", + "opencollective-postinstall": "^2.0.2", + "pkg-dir": "^5.0.0", + "please-upgrade-node": "^3.2.0", + "slash": "^3.0.0", + "which-pm-runs": "^1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "cosmiconfig": { + "version": "7.0.1", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "find-up": { + "version": "5.0.0", + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "locate-path": { + "version": "6.0.0", + "requires": { + "p-locate": "^5.0.0" + } + }, + "p-locate": { + "version": "5.0.0", + "requires": { + "p-limit": "^3.0.2" + } + }, + "parse-json": { + "version": "5.2.0", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "pkg-dir": { + "version": "5.0.0", + "requires": { + "find-up": "^5.0.0" + } + }, + "slash": { + "version": "3.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "hygen": { + "version": "5.0.3", + "requires": { + "chalk": "^2.4.2", + "change-case": "^3.1.0", + "ejs": "^2.6.1", + "enquirer": "^2.3.0", + "execa": "^1.0.0", + "front-matter": "^2.3.0", + "fs-extra": "^7.0.1", + "ignore-walk": "^3.0.2", + "inflection": "^1.12.0", + "ts-jest": "^24.1.0", + "yargs-parser": "^13.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + } + }, + "@jest/core": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/console": "^24.7.1", + "@jest/reporters": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-changed-files": "^24.9.0", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-resolve-dependencies": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "jest-watcher": "^24.9.0", + "micromatch": "^3.1.10", + "p-each-series": "^1.0.0", + "realpath-native": "^1.1.0", + "rimraf": "^2.5.4", + "slash": "^2.0.0", + "strip-ansi": "^5.0.0" + } + }, + "@jest/environment": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + } + }, + "@jest/fake-timers": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + } + }, + "@jest/reporters": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.2", + "istanbul-lib-coverage": "^2.0.2", + "istanbul-lib-instrument": "^3.0.1", + "istanbul-lib-report": "^2.0.4", + "istanbul-lib-source-maps": "^3.0.1", + "istanbul-reports": "^2.2.6", + "jest-haste-map": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "node-notifier": "^5.4.2", + "slash": "^2.0.0", + "source-map": "^0.6.0", + "string-length": "^2.0.0" + } + }, + "@jest/source-map": { + "version": "24.9.0", + "peer": true, + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + } + }, + "@jest/test-result": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + } + }, + "@jest/test-sequencer": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/test-result": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0" + } + }, + "@jest/transform": { + "version": "24.9.0", + "peer": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + } + }, + "@jest/types": { + "version": "24.9.0", + "peer": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + } + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "peer": true, + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "@types/stack-utils": { + "version": "1.0.1", + "peer": true + }, + "@types/yargs": { + "version": "13.0.12", + "peer": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "acorn": { + "version": "5.7.4", + "peer": true + }, + "acorn-globals": { + "version": "4.3.4", + "peer": true, + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "peer": true + } + } + }, + "acorn-walk": { + "version": "6.2.0", + "peer": true + }, + "ansi-escapes": { + "version": "3.2.0", + "peer": true + }, + "ansi-regex": { + "version": "4.1.0", + "peer": true + }, + "anymatch": { + "version": "2.0.0", + "peer": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "astral-regex": { + "version": "1.0.0", + "peer": true + }, + "babel-jest": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + } + }, + "babel-plugin-istanbul": { + "version": "5.2.0", + "peer": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + } + }, + "babel-plugin-jest-hoist": { + "version": "24.9.0", + "peer": true, + "requires": { + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-preset-jest": { + "version": "24.9.0", + "peer": true, + "requires": { + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.9.0" + } + }, + "braces": { + "version": "2.3.2", + "peer": true, + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "peer": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "cliui": { + "version": "5.0.0", + "peer": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "cross-spawn": { + "version": "6.0.5", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "cssom": { + "version": "0.3.8", + "peer": true + }, + "cssstyle": { + "version": "1.4.0", + "peer": true, + "requires": { + "cssom": "0.3.x" + } + }, + "data-urls": { + "version": "1.1.0", + "peer": true, + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + }, + "dependencies": { + "whatwg-url": { + "version": "7.1.0", + "peer": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "detect-newline": { + "version": "2.1.0", + "peer": true + }, + "diff-sequences": { + "version": "24.9.0", + "peer": true + }, + "domexception": { + "version": "1.0.1", + "peer": true, + "requires": { + "webidl-conversions": "^4.0.2" + } + }, + "emoji-regex": { + "version": "7.0.3", + "peer": true + }, + "escape-string-regexp": { + "version": "2.0.0", + "peer": true + }, + "escodegen": { + "version": "1.14.3", + "peer": true, + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, + "estraverse": { + "version": "4.3.0", + "peer": true + }, + "execa": { + "version": "1.0.0", + "requires": { + "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" + } + }, + "expect": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/types": "^24.9.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" + } + }, + "fill-range": { + "version": "4.0.0", + "peer": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "peer": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "find-up": { + "version": "3.0.0", + "peer": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "fs-extra": { + "version": "7.0.1", + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fsevents": { + "version": "1.2.13", + "optional": true, + "peer": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "get-stream": { + "version": "4.1.0", + "requires": { + "pump": "^3.0.0" + } + }, + "html-encoding-sniffer": { + "version": "1.0.2", + "peer": true, + "requires": { + "whatwg-encoding": "^1.0.1" + } + }, + "import-local": { + "version": "2.0.0", + "peer": true, + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "peer": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "peer": true + }, + "is-number": { + "version": "3.0.0", + "peer": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "peer": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-stream": { + "version": "1.1.0" + }, + "is-wsl": { + "version": "1.1.0", + "peer": true + }, + "istanbul-lib-coverage": { + "version": "2.0.5", + "peer": true + }, + "istanbul-lib-instrument": { + "version": "3.3.0", + "peer": true, + "requires": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "peer": true + } + } + }, + "istanbul-lib-report": { + "version": "2.0.8", + "peer": true, + "requires": { + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "supports-color": "^6.1.0" + } + }, + "istanbul-lib-source-maps": { + "version": "3.0.6", + "peer": true, + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "rimraf": "^2.6.3", + "source-map": "^0.6.1" + } + }, + "istanbul-reports": { + "version": "2.2.7", + "peer": true, + "requires": { + "html-escaper": "^2.0.0" + } + }, + "jest": { + "version": "24.9.0", + "peer": true, + "requires": { + "import-local": "^2.0.0", + "jest-cli": "^24.9.0" + } + }, + "jest-changed-files": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/types": "^24.9.0", + "execa": "^1.0.0", + "throat": "^4.0.0" + } + }, + "jest-cli": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/core": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "import-local": "^2.0.0", + "is-ci": "^2.0.0", + "jest-config": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "prompts": "^2.0.1", + "realpath-native": "^1.1.0", + "yargs": "^13.3.0" + } + }, + "jest-config": { + "version": "24.9.0", + "peer": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.9.0", + "realpath-native": "^1.1.0" + } + }, + "jest-diff": { + "version": "24.9.0", + "peer": true, + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + } + }, + "jest-docblock": { + "version": "24.9.0", + "peer": true, + "requires": { + "detect-newline": "^2.1.0" + } + }, + "jest-each": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0" + } + }, + "jest-environment-jsdom": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + } + }, + "jest-environment-node": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" + } + }, + "jest-get-type": { + "version": "24.9.0", + "peer": true + }, + "jest-haste-map": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "fsevents": "^1.2.7", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + } + }, + "jest-jasmine2": { + "version": "24.9.0", + "peer": true, + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.9.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", + "throat": "^4.0.0" + } + }, + "jest-leak-detector": { + "version": "24.9.0", + "peer": true, + "requires": { + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + } + }, + "jest-matcher-utils": { + "version": "24.9.0", + "peer": true, + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" + } + }, + "jest-message-util": { + "version": "24.9.0", + "peer": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + } + }, + "jest-mock": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/types": "^24.9.0" + } + }, + "jest-regex-util": { + "version": "24.9.0", + "peer": true + }, + "jest-resolve": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/types": "^24.9.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + } + }, + "jest-resolve-dependencies": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/types": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-snapshot": "^24.9.0" + } + }, + "jest-runner": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "chalk": "^2.4.2", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-docblock": "^24.3.0", + "jest-haste-map": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-leak-detector": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.6.0", + "source-map-support": "^0.5.6", + "throat": "^4.0.0" + } + }, + "jest-runtime": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.9.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^13.3.0" + } + }, + "jest-serializer": { + "version": "24.9.0", + "peer": true + }, + "jest-snapshot": { + "version": "24.9.0", + "peer": true, + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.9.0", + "chalk": "^2.0.1", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.9.0", + "semver": "^6.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "peer": true + } + } + }, + "jest-util": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + } + }, + "jest-validate": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", + "chalk": "^2.0.1", + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" + } + }, + "jest-watcher": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "jest-util": "^24.9.0", + "string-length": "^2.0.0" + } + }, + "jest-worker": { + "version": "24.9.0", + "peer": true, + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + } + }, + "jsdom": { + "version": "11.12.0", + "peer": true, + "requires": { + "abab": "^2.0.0", + "acorn": "^5.5.3", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": "^1.0.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.1", + "escodegen": "^1.9.1", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.3.0", + "nwsapi": "^2.0.7", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.87.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.4", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^5.2.0", + "xml-name-validator": "^3.0.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "levn": { + "version": "0.3.0", + "peer": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "locate-path": { + "version": "3.0.0", + "peer": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "micromatch": { + "version": "3.1.10", + "peer": true, + "requires": { + "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" + } + }, + "node-notifier": { + "version": "5.4.5", + "peer": true, + "requires": { + "growly": "^1.3.0", + "is-wsl": "^1.1.0", + "semver": "^5.5.0", + "shellwords": "^0.1.1", + "which": "^1.3.0" + } + }, + "normalize-path": { + "version": "2.1.1", + "peer": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + }, + "npm-run-path": { + "version": "2.0.2", + "requires": { + "path-key": "^2.0.0" + } + }, + "optionator": { + "version": "0.8.3", + "peer": true, + "requires": { + "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" + } + }, + "p-each-series": { + "version": "1.0.0", + "peer": true, + "requires": { + "p-reduce": "^1.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "peer": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "peer": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "peer": true + }, + "path-key": { + "version": "2.0.1" + }, + "pkg-dir": { + "version": "3.0.0", + "peer": true, + "requires": { + "find-up": "^3.0.0" + } + }, + "prelude-ls": { + "version": "1.1.2", + "peer": true + }, + "pretty-format": { + "version": "24.9.0", + "peer": true, + "requires": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + } + }, + "read-pkg-up": { + "version": "4.0.0", + "peer": true, + "requires": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + } + }, + "realpath-native": { + "version": "1.1.0", + "peer": true, + "requires": { + "util.promisify": "^1.0.0" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "peer": true, + "requires": { + "resolve-from": "^3.0.0" + } + }, + "resolve-from": { + "version": "3.0.0", + "peer": true + }, + "rimraf": { + "version": "2.7.1", + "peer": true, + "requires": { + "glob": "^7.1.3" + } + }, + "semver": { + "version": "5.7.1" + }, + "shebang-command": { + "version": "1.2.0", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0" + }, + "source-map": { + "version": "0.6.1", + "peer": true + }, + "stack-utils": { + "version": "1.0.5", + "peer": true, + "requires": { + "escape-string-regexp": "^2.0.0" + } + }, + "string-length": { + "version": "2.0.0", + "peer": true, + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "peer": true + }, + "strip-ansi": { + "version": "4.0.0", + "peer": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "string-width": { + "version": "3.1.0", + "peer": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "peer": true, + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "peer": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "test-exclude": { + "version": "5.2.3", + "peer": true, + "requires": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + } + }, + "throat": { + "version": "4.1.0", + "peer": true + }, + "to-regex-range": { + "version": "2.1.1", + "peer": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "tough-cookie": { + "version": "2.5.0", + "peer": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tr46": { + "version": "1.0.1", + "peer": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "ts-jest": { + "version": "24.3.0", + "requires": { + "bs-logger": "0.x", + "buffer-from": "1.x", + "fast-json-stable-stringify": "2.x", + "json5": "2.x", + "lodash.memoize": "4.x", + "make-error": "1.x", + "mkdirp": "0.x", + "resolve": "1.x", + "semver": "^5.5", + "yargs-parser": "10.x" + }, + "dependencies": { + "camelcase": { + "version": "4.1.0" + }, + "yargs-parser": { + "version": "10.1.0", + "requires": { + "camelcase": "^4.1.0" + } + } + } + }, + "type-check": { + "version": "0.3.2", + "peer": true, + "requires": { + "prelude-ls": "~1.1.2" + } + }, + "universalify": { + "version": "0.1.2" + }, + "webidl-conversions": { + "version": "4.0.2", + "peer": true + }, + "whatwg-url": { + "version": "6.5.0", + "peer": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "which": { + "version": "1.3.1", + "requires": { + "isexe": "^2.0.0" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "peer": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "write-file-atomic": { + "version": "2.4.1", + "peer": true, + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "ws": { + "version": "5.2.3", + "peer": true, + "requires": { + "async-limiter": "~1.0.0" + } + }, + "yargs": { + "version": "13.3.2", + "peer": true, + "requires": { + "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" + } + }, + "yargs-parser": { + "version": "13.1.2", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "hyphenate-style-name": { + "version": "1.0.4" + }, + "i18next": { + "version": "19.9.2", + "requires": { + "@babel/runtime": "^7.12.0" + } + }, + "iconv-lite": { + "version": "0.4.24", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-utils": { + "version": "4.1.1", + "requires": { + "postcss": "^7.0.14" + } + }, + "identity-obj-proxy": { + "version": "3.0.0", + "requires": { + "harmony-reflect": "^1.4.6" + } + }, + "ieee754": { + "version": "1.2.1" + }, + "iferr": { + "version": "0.1.5" + }, + "ignore": { + "version": "5.1.8" + }, + "ignore-walk": { + "version": "3.0.4", + "requires": { + "minimatch": "^3.0.4" + } + }, + "immer": { + "version": "8.0.1" + }, + "immutability-helper": { + "version": "3.1.1" + }, + "immutable": { + "version": "3.8.2" + }, + "import-fresh": { + "version": "3.3.0", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0" + } + } + }, + "import-from": { + "version": "3.0.0", + "requires": { + "resolve-from": "^5.0.0" + } + }, + "import-local": { + "version": "3.0.3", + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "dependencies": { + "pkg-dir": { + "version": "4.2.0", + "requires": { + "find-up": "^4.0.0" + } + } + } + }, + "import-modules": { + "version": "2.1.0" + }, + "imurmurhash": { + "version": "0.1.4" + }, + "indent-string": { + "version": "3.2.0" + }, + "infer-owner": { + "version": "1.0.4" + }, + "inflected": { + "version": "2.1.0" + }, + "inflection": { + "version": "1.13.1" + }, + "inflight": { + "version": "1.0.6", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4" + }, + "ini": { + "version": "1.3.8" + }, + "init-package-json": { + "version": "1.10.3", + "requires": { + "glob": "^7.1.1", + "npm-package-arg": "^4.0.0 || ^5.0.0 || ^6.0.0", + "promzard": "^0.3.0", + "read": "~1.0.1", + "read-package-json": "1 || 2", + "semver": "2.x || 3.x || 4 || 5", + "validate-npm-package-license": "^3.0.1", + "validate-npm-package-name": "^3.0.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1" + } + } + }, + "inline-style-parser": { + "version": "0.1.1" + }, + "inline-style-prefixer": { + "version": "3.0.8", + "requires": { + "bowser": "^1.7.3", + "css-in-js-utils": "^2.0.0" + } + }, + "inquirer": { + "version": "6.2.0", + "requires": { + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.0", + "cli-cursor": "^2.1.0", + "cli-width": "^2.0.0", + "external-editor": "^3.0.0", + "figures": "^2.0.0", + "lodash": "^4.17.10", + "mute-stream": "0.0.7", + "run-async": "^2.2.0", + "rxjs": "^6.1.0", + "string-width": "^2.1.0", + "strip-ansi": "^4.0.0", + "through": "^2.3.6" + }, + "dependencies": { + "ansi-escapes": { + "version": "3.2.0" + }, + "ansi-regex": { + "version": "3.0.0" + }, + "escape-string-regexp": { + "version": "1.0.5" + }, + "figures": { + "version": "2.0.0", + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0" + }, + "string-width": { + "version": "2.1.1", + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "internal-ip": { + "version": "4.3.0", + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + } + }, + "internal-slot": { + "version": "1.0.3", + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "internmap": { + "version": "1.0.1" + }, + "interpret": { + "version": "1.4.0" + }, + "invariant": { + "version": "2.2.4", + "requires": { + "loose-envify": "^1.0.0" + } + }, + "invert-kv": { + "version": "3.0.1" + }, + "ip": { + "version": "1.1.5" + }, + "ip-regex": { + "version": "2.1.0" + }, + "ipaddr.js": { + "version": "1.9.1" + }, + "is-absolute-url": { + "version": "3.0.3" + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-alphabetical": { + "version": "1.0.4" + }, + "is-alphanumerical": { + "version": "1.0.4", + "requires": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + } + }, + "is-arguments": { + "version": "1.1.1", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1" + }, + "is-bigint": { + "version": "1.0.4", + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6" + }, + "is-callable": { + "version": "1.2.4" + }, + "is-ci": { + "version": "2.0.0", + "requires": { + "ci-info": "^2.0.0" + } + }, + "is-core-module": { + "version": "2.8.0", + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-date-object": { + "version": "1.0.5", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-decimal": { + "version": "1.0.4" + }, + "is-descriptor": { + "version": "1.0.2", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-directory": { + "version": "0.3.1" + }, + "is-docker": { + "version": "2.2.1" + }, + "is-dom": { + "version": "1.1.0", + "requires": { + "is-object": "^1.0.1", + "is-window": "^1.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "requires": { + "is-plain-object": "^2.0.4" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "is-extglob": { + "version": "2.1.1" + }, + "is-finite": { + "version": "1.1.0" + }, + "is-fullwidth-code-point": { + "version": "3.0.0" + }, + "is-function": { + "version": "1.0.2" + }, + "is-generator-fn": { + "version": "2.1.0" + }, + "is-glob": { + "version": "4.0.3", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-hexadecimal": { + "version": "1.0.4" + }, + "is-lower-case": { + "version": "1.1.3", + "requires": { + "lower-case": "^1.1.0" + } + }, + "is-map": { + "version": "2.0.2" + }, + "is-negative-zero": { + "version": "2.0.1" + }, + "is-number": { + "version": "7.0.0" + }, + "is-number-object": { + "version": "1.0.6", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "1.0.1" + }, + "is-object": { + "version": "1.0.2" + }, + "is-observable": { + "version": "1.1.0", + "dev": true, + "requires": { + "symbol-observable": "^1.1.0" + } + }, + "is-path-cwd": { + "version": "2.2.0" + }, + "is-path-in-cwd": { + "version": "2.1.0", + "requires": { + "is-path-inside": "^2.1.0" + } + }, + "is-path-inside": { + "version": "2.1.0", + "requires": { + "path-is-inside": "^1.0.2" + } + }, + "is-plain-obj": { + "version": "1.1.0" + }, + "is-plain-object": { + "version": "5.0.0" + }, + "is-potential-custom-element-name": { + "version": "1.0.1" + }, + "is-promise": { + "version": "2.2.2", + "dev": true + }, + "is-redirect": { + "version": "1.0.0" + }, + "is-regex": { + "version": "1.1.4", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-regexp": { + "version": "1.0.0" + }, + "is-retry-allowed": { + "version": "1.2.0" + }, + "is-root": { + "version": "2.1.0" + }, + "is-scoped": { + "version": "1.0.0", + "devOptional": true, + "requires": { + "scoped-regex": "^1.0.0" + } + }, + "is-set": { + "version": "2.0.2" + }, + "is-shared-array-buffer": { + "version": "1.0.1" + }, + "is-ssh": { + "version": "1.3.3", + "requires": { + "protocols": "^1.1.0" + } + }, + "is-stream": { + "version": "2.0.1" + }, + "is-string": { + "version": "1.0.7", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-subset": { + "version": "0.1.1" + }, + "is-symbol": { + "version": "1.0.4", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-text-path": { + "version": "1.0.1", + "requires": { + "text-extensions": "^1.0.0" + } + }, + "is-typedarray": { + "version": "1.0.0" + }, + "is-unicode-supported": { + "version": "0.1.0" + }, + "is-upper-case": { + "version": "1.1.2", + "requires": { + "upper-case": "^1.1.0" + } + }, + "is-utf8": { + "version": "0.2.1" + }, + "is-weakref": { + "version": "1.0.1", + "requires": { + "call-bind": "^1.0.0" + } + }, + "is-whitespace-character": { + "version": "1.0.4" + }, + "is-window": { + "version": "1.0.2" + }, + "is-windows": { + "version": "1.0.2" + }, + "is-word-character": { + "version": "1.0.4" + }, + "is-wsl": { + "version": "2.2.0", + "requires": { + "is-docker": "^2.0.0" + } + }, + "isarray": { + "version": "2.0.5" + }, + "isbinaryfile": { + "version": "4.0.8" + }, + "isexe": { + "version": "2.0.0" + }, + "isobject": { + "version": "3.0.1" + }, + "isomorphic-fetch": { + "version": "2.2.1", + "requires": { + "node-fetch": "^1.0.1", + "whatwg-fetch": ">=0.10.0" + }, + "dependencies": { + "is-stream": { + "version": "1.1.0" + }, + "node-fetch": { + "version": "1.7.3", + "requires": { + "encoding": "^0.1.11", + "is-stream": "^1.0.1" + } + } + } + }, + "isstream": { + "version": "0.1.2" + }, + "istanbul-lib-coverage": { + "version": "3.2.0" + }, + "istanbul-lib-instrument": { + "version": "5.0.4", + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0" + }, + "make-dir": { + "version": "3.1.0", + "requires": { + "semver": "^6.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.1", + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1" + } + } + }, + "istanbul-reports": { + "version": "3.0.5", + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "istextorbinary": { + "version": "2.6.0", + "requires": { + "binaryextensions": "^2.1.2", + "editions": "^2.2.0", + "textextensions": "^2.5.0" + } + }, + "iterall": { + "version": "1.1.3" + }, + "iterate-iterator": { + "version": "1.0.2" + }, + "iterate-value": { + "version": "1.0.2", + "requires": { + "es-get-iterator": "^1.0.2", + "iterate-iterator": "^1.0.1" + } + }, + "jake": { + "version": "10.8.2", + "requires": { + "async": "0.9.x", + "chalk": "^2.4.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "dependencies": { + "async": { + "version": "0.9.2" + } + } + }, + "java-properties": { + "version": "1.0.2" + }, + "jed": { + "version": "1.1.1" + }, + "jest": { + "version": "26.6.3", + "requires": { + "@jest/core": "^26.6.3", + "import-local": "^3.0.2", + "jest-cli": "^26.6.3" + } + }, + "jest-changed-files": { + "version": "26.6.2", + "requires": { + "@jest/types": "^26.6.2", + "execa": "^4.0.0", + "throat": "^5.0.0" + } + }, + "jest-cli": { + "version": "26.6.3", + "requires": { + "@jest/core": "^26.6.3", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^26.6.3", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "prompts": "^2.0.1", + "yargs": "^15.4.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-config": { + "version": "26.6.3", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^26.6.3", + "@jest/types": "^26.6.2", + "babel-jest": "^26.6.3", + "chalk": "^4.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-environment-jsdom": "^26.6.2", + "jest-environment-node": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-jasmine2": "^26.6.3", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-diff": { + "version": "26.6.2", + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-docblock": { + "version": "26.0.0", + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-each": { + "version": "26.6.2", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-environment-enzyme": { + "version": "7.1.2", + "requires": { + "jest-environment-jsdom": "^24.0.0" + }, + "dependencies": { + "@jest/console": { + "version": "24.9.0", + "requires": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + } + }, + "@jest/environment": { + "version": "24.9.0", + "requires": { + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" + } + }, + "@jest/fake-timers": { + "version": "24.9.0", + "requires": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + } + }, + "@jest/source-map": { + "version": "24.9.0", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + } + }, + "@jest/test-result": { + "version": "24.9.0", + "requires": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + } + }, + "@jest/transform": { + "version": "24.9.0", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + } + }, + "@jest/types": { + "version": "24.9.0", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + } + }, + "@types/istanbul-reports": { + "version": "1.1.2", + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "@types/stack-utils": { + "version": "1.0.1" + }, + "@types/yargs": { + "version": "13.0.12", + "requires": { + "@types/yargs-parser": "*" + } + }, + "acorn": { + "version": "5.7.4" + }, + "acorn-globals": { + "version": "4.3.4", + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2" + } + } + }, + "acorn-walk": { + "version": "6.2.0" + }, + "anymatch": { + "version": "2.0.0", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "babel-plugin-istanbul": { + "version": "5.2.0", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + } + }, + "braces": { + "version": "2.3.2", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "cssom": { + "version": "0.3.8" + }, + "cssstyle": { + "version": "1.4.0", + "requires": { + "cssom": "0.3.x" + } + }, + "data-urls": { + "version": "1.1.0", + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + }, + "dependencies": { + "whatwg-url": { + "version": "7.1.0", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "domexception": { + "version": "1.0.1", + "requires": { + "webidl-conversions": "^4.0.2" + } + }, + "escape-string-regexp": { + "version": "2.0.0" + }, + "escodegen": { + "version": "1.14.3", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, + "estraverse": { + "version": "4.3.0" + }, + "fill-range": { + "version": "4.0.0", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "find-up": { + "version": "3.0.0", + "requires": { + "locate-path": "^3.0.0" + } + }, + "fsevents": { + "version": "1.2.13", + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "html-encoding-sniffer": { + "version": "1.0.2", + "requires": { + "whatwg-encoding": "^1.0.1" + } + }, + "is-extendable": { + "version": "0.1.1" + }, + "is-number": { + "version": "3.0.0", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "istanbul-lib-coverage": { + "version": "2.0.5" + }, + "istanbul-lib-instrument": { + "version": "3.3.0", + "requires": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + } + }, + "jest-environment-jsdom": { + "version": "24.9.0", + "requires": { + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", + "jsdom": "^11.5.1" + } + }, + "jest-haste-map": { + "version": "24.9.0", + "requires": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "fsevents": "^1.2.7", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + } + }, + "jest-message-util": { + "version": "24.9.0", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + } + }, + "jest-mock": { + "version": "24.9.0", + "requires": { + "@jest/types": "^24.9.0" + } + }, + "jest-regex-util": { + "version": "24.9.0" + }, + "jest-serializer": { + "version": "24.9.0" + }, + "jest-util": { + "version": "24.9.0", + "requires": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + } + }, + "jest-worker": { + "version": "24.9.0", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + } + }, + "jsdom": { + "version": "11.12.0", + "requires": { + "abab": "^2.0.0", + "acorn": "^5.5.3", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": "^1.0.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.1", + "escodegen": "^1.9.1", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.3.0", + "nwsapi": "^2.0.7", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.87.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.4", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^5.2.0", + "xml-name-validator": "^3.0.0" + } + }, + "levn": { + "version": "0.3.0", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "locate-path": { + "version": "3.0.0", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "micromatch": { + "version": "3.1.10", + "requires": { + "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" + } + }, + "normalize-path": { + "version": "2.1.1", + "requires": { + "remove-trailing-separator": "^1.0.1" + } + }, + "optionator": { + "version": "0.8.3", + "requires": { + "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" + } + }, + "p-limit": { + "version": "2.3.0", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0" + }, + "prelude-ls": { + "version": "1.1.2" + }, + "read-pkg-up": { + "version": "4.0.0", + "requires": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + } + }, + "realpath-native": { + "version": "1.1.0", + "requires": { + "util.promisify": "^1.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "source-map": { + "version": "0.6.1" + }, + "stack-utils": { + "version": "1.0.5", + "requires": { + "escape-string-regexp": "^2.0.0" + } + }, + "supports-color": { + "version": "6.1.0", + "requires": { + "has-flag": "^3.0.0" + } + }, + "test-exclude": { + "version": "5.2.3", + "requires": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "tough-cookie": { + "version": "2.5.0", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tr46": { + "version": "1.0.1", + "requires": { + "punycode": "^2.1.0" + } + }, + "type-check": { + "version": "0.3.2", + "requires": { + "prelude-ls": "~1.1.2" + } + }, + "webidl-conversions": { + "version": "4.0.2" + }, + "whatwg-url": { + "version": "6.5.0", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "write-file-atomic": { + "version": "2.4.1", + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "ws": { + "version": "5.2.3", + "requires": { + "async-limiter": "~1.0.0" + } + } + } + }, + "jest-environment-jsdom": { + "version": "26.6.2", + "requires": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2", + "jsdom": "^16.4.0" + } + }, + "jest-environment-node": { + "version": "26.6.2", + "requires": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + } + }, + "jest-enzyme": { + "version": "7.1.2", + "requires": { + "enzyme-matchers": "^7.1.2", + "enzyme-to-json": "^3.3.0", + "jest-environment-enzyme": "^7.1.2" + } + }, + "jest-get-type": { + "version": "26.3.0" + }, + "jest-haste-map": { + "version": "26.6.2", + "requires": { + "@jest/types": "^26.6.2", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.1.2", + "graceful-fs": "^4.2.4", + "jest-regex-util": "^26.0.0", + "jest-serializer": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "sane": "^4.0.3", + "walker": "^1.0.7" + } + }, + "jest-jasmine2": { + "version": "26.6.3", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^26.6.2", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2", + "throat": "^5.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-leak-detector": { + "version": "26.6.2", + "requires": { + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + } + }, + "jest-matcher-utils": { + "version": "26.6.2", + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-message-util": { + "version": "26.6.2", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "slash": { + "version": "3.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-mock": { + "version": "26.6.2", + "requires": { + "@jest/types": "^26.6.2", + "@types/node": "*" + } + }, + "jest-mock-console": { + "version": "1.2.3", + "requires": {} + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "requires": {} + }, + "jest-regex-util": { + "version": "26.0.0" + }, + "jest-resolve": { + "version": "26.6.2", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "slash": { + "version": "3.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-resolve-dependencies": { + "version": "26.6.3", + "requires": { + "@jest/types": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-snapshot": "^26.6.2" + } + }, + "jest-runner": { + "version": "26.6.3", + "requires": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.7.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-docblock": "^26.0.0", + "jest-haste-map": "^26.6.2", + "jest-leak-detector": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "source-map-support": "^0.5.6", + "throat": "^5.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-runtime": { + "version": "26.6.3", + "requires": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/globals": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0", + "cjs-module-lexer": "^0.6.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^15.4.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "slash": { + "version": "3.0.0" + }, + "strip-bom": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-serializer": { + "version": "26.6.2", + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.4" + } + }, + "jest-snapshot": { + "version": "26.6.2", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.0.0", + "chalk": "^4.0.0", + "expect": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-haste-map": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "natural-compare": "^1.4.0", + "pretty-format": "^26.6.2", + "semver": "^7.3.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-util": { + "version": "26.6.2", + "requires": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-validate": { + "version": "26.6.2", + "requires": { + "@jest/types": "^26.6.2", + "camelcase": "^6.0.0", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "leven": "^3.1.0", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "camelcase": { + "version": "6.2.0" + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-watcher": { + "version": "26.6.2", + "requires": { + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^26.6.2", + "string-length": "^4.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-worker": { + "version": "26.6.2", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jquery": { + "version": "3.6.0" + }, + "js-beautify": { + "version": "1.14.0", + "requires": { + "config-chain": "^1.1.12", + "editorconfig": "^0.15.3", + "glob": "^7.1.3", + "nopt": "^5.0.0" + }, + "dependencies": { + "nopt": { + "version": "5.0.0", + "requires": { + "abbrev": "1" + } + } + } + }, + "js-string-escape": { + "version": "1.0.1" + }, + "js-tokens": { + "version": "4.0.0" + }, + "js-yaml": { + "version": "3.14.1", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1" + }, + "jsdom": { + "version": "16.7.0", + "requires": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "acorn": { + "version": "8.5.0" + }, + "parse5": { + "version": "6.0.1" + } + } + }, + "jsesc": { + "version": "2.5.2" + }, + "json-parse-better-errors": { + "version": "1.0.2" + }, + "json-parse-even-better-errors": { + "version": "2.3.1" + }, + "json-schema": { + "version": "0.2.3" + }, + "json-schema-traverse": { + "version": "0.4.1" + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1" + }, + "json-stringify-safe": { + "version": "5.0.1" + }, + "json2mq": { + "version": "0.2.0", + "requires": { + "string-convert": "^0.2.0" + } + }, + "json3": { + "version": "3.3.3" + }, + "json5": { + "version": "2.2.0", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5" + } + } + }, + "jsonfile": { + "version": "6.1.0", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "jsonify": { + "version": "0.0.0" + }, + "jsonparse": { + "version": "1.3.1" + }, + "JSONStream": { + "version": "1.3.5", + "requires": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + } + }, + "jsprim": { + "version": "1.4.1", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "jsx-ast-utils": { + "version": "3.2.1", + "requires": { + "array-includes": "^3.1.3", + "object.assign": "^4.1.2" + } + }, + "junit-report-builder": { + "version": "2.1.0", + "dev": true, + "requires": { + "date-format": "0.0.2", + "lodash": "^4.17.15", + "make-dir": "^1.3.0", + "xmlbuilder": "^10.0.0" + }, + "dependencies": { + "make-dir": { + "version": "1.3.0", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "dev": true + } + } + }, + "junk": { + "version": "3.1.0" + }, + "just-extend": { + "version": "4.2.1", + "dev": true + }, + "kdbush": { + "version": "2.0.1" + }, + "killable": { + "version": "1.0.1" + }, + "kind-of": { + "version": "6.0.3" + }, + "klaw": { + "version": "1.3.1", + "requires": { + "graceful-fs": "^4.1.9" + } + }, + "kleur": { + "version": "3.0.3" + }, + "klona": { + "version": "2.0.4" + }, + "language-subtag-registry": { + "version": "0.3.21" + }, + "language-tags": { + "version": "1.0.5", + "requires": { + "language-subtag-registry": "~0.3.2" + } + }, + "lazy-cache": { + "version": "2.0.2", + "devOptional": true, + "requires": { + "set-getter": "^0.1.0" + } + }, + "lazy-universal-dotenv": { + "version": "3.0.1", + "requires": { + "@babel/runtime": "^7.5.0", + "app-root-dir": "^1.0.2", + "core-js": "^3.0.4", + "dotenv": "^8.0.0", + "dotenv-expand": "^5.1.0" + } + }, + "lcid": { + "version": "3.1.1", + "requires": { + "invert-kv": "^3.0.0" + } + }, + "left-pad": { + "version": "1.3.0" + }, + "lerna": { + "version": "3.22.1", + "requires": { + "@lerna/add": "3.21.0", + "@lerna/bootstrap": "3.21.0", + "@lerna/changed": "3.21.0", + "@lerna/clean": "3.21.0", + "@lerna/cli": "3.18.5", + "@lerna/create": "3.22.0", + "@lerna/diff": "3.21.0", + "@lerna/exec": "3.21.0", + "@lerna/import": "3.22.0", + "@lerna/info": "3.21.0", + "@lerna/init": "3.21.0", + "@lerna/link": "3.21.0", + "@lerna/list": "3.21.0", + "@lerna/publish": "3.22.1", + "@lerna/run": "3.21.0", + "@lerna/version": "3.22.1", + "import-local": "^2.0.0", + "npmlog": "^4.1.2" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "requires": { + "locate-path": "^3.0.0" + } + }, + "import-local": { + "version": "2.0.0", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0" + }, + "pkg-dir": { + "version": "3.0.0", + "requires": { + "find-up": "^3.0.0" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "requires": { + "resolve-from": "^3.0.0" + } + }, + "resolve-from": { + "version": "3.0.0" + } + } + }, + "leven": { + "version": "3.1.0" + }, + "levn": { + "version": "0.4.1", + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lines-and-columns": { + "version": "1.1.6" + }, + "lint-staged": { + "version": "10.5.4", + "requires": { + "chalk": "^4.1.0", + "cli-truncate": "^2.1.0", + "commander": "^6.2.0", + "cosmiconfig": "^7.0.0", + "debug": "^4.2.0", + "dedent": "^0.7.0", + "enquirer": "^2.3.6", + "execa": "^4.1.0", + "listr2": "^3.2.2", + "log-symbols": "^4.0.0", + "micromatch": "^4.0.2", + "normalize-path": "^3.0.0", + "please-upgrade-node": "^3.2.0", + "string-argv": "0.3.1", + "stringify-object": "^3.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "commander": { + "version": "6.2.1" + }, + "cosmiconfig": { + "version": "7.0.1", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "parse-json": { + "version": "5.2.0", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "listr": { + "version": "0.14.3", + "dev": true, + "requires": { + "@samverschueren/stream-to-observable": "^0.3.0", + "is-observable": "^1.1.0", + "is-promise": "^2.1.0", + "is-stream": "^1.1.0", + "listr-silent-renderer": "^1.1.1", + "listr-update-renderer": "^0.5.0", + "listr-verbose-renderer": "^0.5.0", + "p-map": "^2.0.0", + "rxjs": "^6.3.3" + }, + "dependencies": { + "is-stream": { + "version": "1.1.0", + "dev": true + } + } + }, + "listr-silent-renderer": { + "version": "1.1.1", + "dev": true + }, + "listr-update-renderer": { + "version": "0.5.0", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "cli-truncate": "^0.2.1", + "elegant-spinner": "^1.0.1", + "figures": "^1.7.0", + "indent-string": "^3.0.0", + "log-symbols": "^1.0.2", + "log-update": "^2.3.0", + "strip-ansi": "^3.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "dev": true, + "requires": { + "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" + } + }, + "cli-truncate": { + "version": "0.2.1", + "dev": true, + "requires": { + "slice-ansi": "0.0.4", + "string-width": "^1.0.1" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "dev": true + }, + "figures": { + "version": "1.7.0", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5", + "object-assign": "^4.1.0" + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "log-symbols": { + "version": "1.0.2", + "dev": true, + "requires": { + "chalk": "^1.0.0" + } + }, + "slice-ansi": { + "version": "0.0.4", + "dev": true + }, + "string-width": { + "version": "1.0.2", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "dev": true + } + } + }, + "listr-verbose-renderer": { + "version": "0.5.0", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "cli-cursor": "^2.1.0", + "date-fns": "^1.27.2", + "figures": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "dev": true + }, + "figures": { + "version": "2.0.0", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + } + } + }, + "listr2": { + "version": "3.12.2", + "requires": { + "cli-truncate": "^2.1.0", + "colorette": "^1.4.0", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rxjs": "^6.6.7", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "cli-cursor": { + "version": "3.1.0", + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "log-update": { + "version": "4.0.0", + "requires": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "dependencies": { + "wrap-ansi": { + "version": "6.2.0", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "p-map": { + "version": "4.0.0", + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "restore-cursor": { + "version": "3.1.0", + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "slice-ansi": { + "version": "4.0.0", + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "load-json-file": { + "version": "5.3.0", + "requires": { + "graceful-fs": "^4.1.15", + "parse-json": "^4.0.0", + "pify": "^4.0.1", + "strip-bom": "^3.0.0", + "type-fest": "^0.3.0" + }, + "dependencies": { + "pify": { + "version": "4.0.1" + }, + "type-fest": { + "version": "0.3.1" + } + } + }, + "loader-runner": { + "version": "2.4.0" + }, + "loader-utils": { + "version": "1.4.0", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "locate-path": { + "version": "5.0.0", + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.21" + }, + "lodash._baseisequal": { + "version": "3.0.7", + "requires": { + "lodash.isarray": "^3.0.0", + "lodash.istypedarray": "^3.0.0", + "lodash.keys": "^3.0.0" + } + }, + "lodash._bindcallback": { + "version": "3.0.1" + }, + "lodash._getnative": { + "version": "3.9.1" + }, + "lodash._reinterpolate": { + "version": "3.0.0" + }, + "lodash.camelcase": { + "version": "4.3.0" + }, + "lodash.clonedeep": { + "version": "4.5.0" + }, + "lodash.debounce": { + "version": "4.0.8" + }, + "lodash.escape": { + "version": "4.0.1" + }, + "lodash.flattendeep": { + "version": "4.4.0" + }, + "lodash.get": { + "version": "4.4.2" + }, + "lodash.isarguments": { + "version": "3.1.0" + }, + "lodash.isarray": { + "version": "3.0.4" + }, + "lodash.isequal": { + "version": "4.5.0" + }, + "lodash.ismatch": { + "version": "4.4.0" + }, + "lodash.istypedarray": { + "version": "3.0.6" + }, + "lodash.keys": { + "version": "3.1.2", + "requires": { + "lodash._getnative": "^3.0.0", + "lodash.isarguments": "^3.0.0", + "lodash.isarray": "^3.0.0" + } + }, + "lodash.map": { + "version": "4.6.0" + }, + "lodash.memoize": { + "version": "4.1.2" + }, + "lodash.merge": { + "version": "4.6.2" + }, + "lodash.set": { + "version": "4.3.2" + }, + "lodash.sortby": { + "version": "4.7.0" + }, + "lodash.template": { + "version": "4.5.0", + "requires": { + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" + } + }, + "lodash.templatesettings": { + "version": "4.2.0", + "requires": { + "lodash._reinterpolate": "^3.0.0" + } + }, + "lodash.truncate": { + "version": "4.4.2" + }, + "lodash.uniq": { + "version": "4.5.0" + }, + "lodash.zip": { + "version": "4.2.0" + }, + "log-symbols": { + "version": "4.1.0", + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "log-update": { + "version": "2.3.0", + "dev": true, + "requires": { + "ansi-escapes": "^3.0.0", + "cli-cursor": "^2.0.0", + "wrap-ansi": "^3.0.1" + }, + "dependencies": { + "ansi-escapes": { + "version": "3.2.0", + "dev": true + }, + "ansi-regex": { + "version": "3.0.0", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + }, + "wrap-ansi": { + "version": "3.0.1", + "dev": true, + "requires": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0" + } + } + } + }, + "loglevel": { + "version": "1.7.1" + }, + "lolex": { + "version": "5.1.2", + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "longest": { + "version": "1.0.1" + }, + "loose-envify": { + "version": "1.4.0", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "loud-rejection": { + "version": "1.6.0", + "requires": { + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" + } + }, + "lower-case": { + "version": "1.1.4" + }, + "lower-case-first": { + "version": "1.0.2", + "requires": { + "lower-case": "^1.1.2" + } + }, + "lowercase-keys": { + "version": "1.0.1" + }, + "lowlight": { + "version": "1.20.0", + "requires": { + "fault": "^1.0.0", + "highlight.js": "~10.7.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "requires": { + "yallist": "^4.0.0" + } + }, + "lz-string": { + "version": "1.4.4" + }, + "macos-release": { + "version": "2.5.0" + }, + "magic-string": { + "version": "0.22.5", + "requires": { + "vlq": "^0.2.2" + } + }, + "make-dir": { + "version": "2.1.0", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "pify": { + "version": "4.0.1" + }, + "semver": { + "version": "5.7.1" + } + } + }, + "make-error": { + "version": "1.3.6" + }, + "make-fetch-happen": { + "version": "5.0.2", + "requires": { + "agentkeepalive": "^3.4.1", + "cacache": "^12.0.0", + "http-cache-semantics": "^3.8.1", + "http-proxy-agent": "^2.1.0", + "https-proxy-agent": "^2.2.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "node-fetch-npm": "^2.0.2", + "promise-retry": "^1.1.1", + "socks-proxy-agent": "^4.0.0", + "ssri": "^6.0.0" + }, + "dependencies": { + "agent-base": { + "version": "4.3.0", + "requires": { + "es6-promisify": "^5.0.0" + } + }, + "debug": { + "version": "3.1.0", + "requires": { + "ms": "2.0.0" + } + }, + "http-proxy-agent": { + "version": "2.1.0", + "requires": { + "agent-base": "4", + "debug": "3.1.0" + } + }, + "https-proxy-agent": { + "version": "2.2.4", + "requires": { + "agent-base": "^4.3.0", + "debug": "^3.1.0" + } + }, + "lru-cache": { + "version": "5.1.1", + "requires": { + "yallist": "^3.0.2" + } + }, + "ms": { + "version": "2.0.0" + }, + "yallist": { + "version": "3.1.1" + } + } + }, + "makeerror": { + "version": "1.0.11", + "requires": { + "tmpl": "1.0.x" + } + }, + "map-age-cleaner": { + "version": "0.1.3", + "requires": { + "p-defer": "^1.0.0" + } + }, + "map-cache": { + "version": "0.2.2" + }, + "map-obj": { + "version": "2.0.0" + }, + "map-or-similar": { + "version": "1.5.0" + }, + "map-visit": { + "version": "1.0.0", + "requires": { + "object-visit": "^1.0.0" + } + }, + "mapbox-gl": { + "version": "0.53.1", + "requires": { + "@mapbox/geojson-rewind": "^0.4.0", + "@mapbox/geojson-types": "^1.0.2", + "@mapbox/jsonlint-lines-primitives": "^2.0.2", + "@mapbox/mapbox-gl-supported": "^1.4.0", + "@mapbox/point-geometry": "^0.1.0", + "@mapbox/tiny-sdf": "^1.1.0", + "@mapbox/unitbezier": "^0.0.0", + "@mapbox/vector-tile": "^1.3.1", + "@mapbox/whoots-js": "^3.1.0", + "csscolorparser": "~1.0.2", + "earcut": "^2.1.5", + "esm": "^3.0.84", + "geojson-vt": "^3.2.1", + "gl-matrix": "^3.0.0", + "grid-index": "^1.1.0", + "minimist": "0.0.8", + "murmurhash-js": "^1.0.0", + "pbf": "^3.0.5", + "potpack": "^1.0.1", + "quickselect": "^2.0.0", + "rw": "^1.3.3", + "supercluster": "^6.0.1", + "tinyqueue": "^2.0.0", + "vt-pbf": "^3.1.1" + }, + "dependencies": { + "kdbush": { + "version": "3.0.0" + }, + "minimist": { + "version": "0.0.8" + }, + "supercluster": { + "version": "6.0.2", + "requires": { + "kdbush": "^3.0.0" + } + } + } + }, + "markdown-escapes": { + "version": "1.0.4" + }, + "match-sorter": { + "version": "6.3.1", + "requires": { + "@babel/runtime": "^7.12.5", + "remove-accents": "0.4.2" + } + }, + "math-expression-evaluator": { + "version": "1.3.8" + }, + "mathfn": { + "version": "1.2.0" + }, + "md5.js": { + "version": "1.3.5", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "mdast-add-list-metadata": { + "version": "1.0.1", + "requires": { + "unist-util-visit-parents": "1.1.2" + } + }, + "mdast-squeeze-paragraphs": { + "version": "4.0.0", + "requires": { + "unist-util-remove": "^2.0.0" + } + }, + "mdast-util-definitions": { + "version": "4.0.0", + "requires": { + "unist-util-visit": "^2.0.0" + }, + "dependencies": { + "unist-util-is": { + "version": "4.1.0" + }, + "unist-util-visit": { + "version": "2.0.3", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + } + }, + "unist-util-visit-parents": { + "version": "3.1.1", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + } + } + } + }, + "mdast-util-to-hast": { + "version": "10.0.1", + "requires": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "mdast-util-definitions": "^4.0.0", + "mdurl": "^1.0.0", + "unist-builder": "^2.0.0", + "unist-util-generated": "^1.0.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "dependencies": { + "unist-util-is": { + "version": "4.1.0" + }, + "unist-util-visit": { + "version": "2.0.3", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + } + }, + "unist-util-visit-parents": { + "version": "3.1.1", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + } + } + } + }, + "mdurl": { + "version": "1.0.1" + }, + "media-typer": { + "version": "0.3.0" + }, + "mem": { + "version": "5.1.1", + "requires": { + "map-age-cleaner": "^0.1.3", + "mimic-fn": "^2.1.0", + "p-is-promise": "^2.1.0" + } + }, + "mem-fs": { + "version": "1.2.0", + "devOptional": true, + "requires": { + "through2": "^3.0.0", + "vinyl": "^2.0.1", + "vinyl-file": "^3.0.0" + }, + "dependencies": { + "through2": { + "version": "3.0.2", + "devOptional": true, + "requires": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" + } + } + } + }, + "mem-fs-editor": { + "version": "7.1.0", + "requires": { + "commondir": "^1.0.1", + "deep-extend": "^0.6.0", + "ejs": "^3.1.5", + "glob": "^7.1.4", + "globby": "^9.2.0", + "isbinaryfile": "^4.0.0", + "mkdirp": "^1.0.0", + "multimatch": "^4.0.0", + "rimraf": "^3.0.0", + "through2": "^3.0.2", + "vinyl": "^2.2.1" + }, + "dependencies": { + "@nodelib/fs.stat": { + "version": "1.1.3" + }, + "array-differ": { + "version": "3.0.0" + }, + "arrify": { + "version": "2.0.1" + }, + "braces": { + "version": "2.3.2", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "dir-glob": { + "version": "2.2.2", + "requires": { + "path-type": "^3.0.0" + } + }, + "ejs": { + "version": "3.1.6", + "requires": { + "jake": "^10.6.1" + } + }, + "fast-glob": { + "version": "2.2.7", + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + } + }, + "fill-range": { + "version": "4.0.0", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "glob-parent": { + "version": "3.1.0", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "globby": { + "version": "9.2.0", + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "requires": { + "array-uniq": "^1.0.1" + } + } + } + }, + "ignore": { + "version": "4.0.6" + }, + "is-extendable": { + "version": "0.1.1" + }, + "is-number": { + "version": "3.0.0", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "requires": { + "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" + } + }, + "mkdirp": { + "version": "1.0.4" + }, + "multimatch": { + "version": "4.0.0", + "requires": { + "@types/minimatch": "^3.0.3", + "array-differ": "^3.0.0", + "array-union": "^2.1.0", + "arrify": "^2.0.1", + "minimatch": "^3.0.4" + } + }, + "path-type": { + "version": "3.0.0", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0" + } + } + }, + "pify": { + "version": "4.0.1" + }, + "through2": { + "version": "3.0.2", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" + } + }, + "to-regex-range": { + "version": "2.1.1", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "memfs": { + "version": "3.3.0", + "requires": { + "fs-monkey": "1.0.3" + } + }, + "memoize-one": { + "version": "5.2.1" + }, + "memoizerific": { + "version": "1.11.3", + "requires": { + "map-or-similar": "^1.5.0" + } + }, + "memory-fs": { + "version": "0.2.0" + }, + "meow": { + "version": "5.0.0", + "requires": { + "camelcase-keys": "^4.0.0", + "decamelize-keys": "^1.0.0", + "loud-rejection": "^1.0.0", + "minimist-options": "^3.0.1", + "normalize-package-data": "^2.3.4", + "read-pkg-up": "^3.0.0", + "redent": "^2.0.0", + "trim-newlines": "^2.0.0", + "yargs-parser": "^10.0.0" + }, + "dependencies": { + "camelcase": { + "version": "4.1.0" + }, + "find-up": { + "version": "2.1.0", + "requires": { + "locate-path": "^2.0.0" + } + }, + "hosted-git-info": { + "version": "2.8.9" + }, + "locate-path": { + "version": "2.0.0", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "p-limit": { + "version": "1.3.0", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0" + }, + "path-exists": { + "version": "3.0.0" + }, + "read-pkg-up": { + "version": "3.0.0", + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + } + }, + "semver": { + "version": "5.7.1" + }, + "yargs-parser": { + "version": "10.1.0", + "requires": { + "camelcase": "^4.1.0" + } + } + } + }, + "merge": { + "version": "1.2.1" + }, + "merge-descriptors": { + "version": "1.0.1" + }, + "merge-source-map": { + "version": "1.0.4", + "requires": { + "source-map": "^0.5.6" + } + }, + "merge-stream": { + "version": "2.0.0" + }, + "merge2": { + "version": "1.4.1" + }, + "methods": { + "version": "1.1.2" + }, + "microevent.ts": { + "version": "0.1.1" + }, + "micromatch": { + "version": "4.0.4", + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "miller-rabin": { + "version": "4.0.1", + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0" + } + } + }, + "mime": { + "version": "1.6.0" + }, + "mime-db": { + "version": "1.50.0" + }, + "mime-types": { + "version": "2.1.33", + "requires": { + "mime-db": "1.50.0" + } + }, + "mimic-fn": { + "version": "2.1.0" + }, + "min-document": { + "version": "2.19.0", + "requires": { + "dom-walk": "^0.1.0" + } + }, + "min-indent": { + "version": "1.0.1" + }, + "minimalistic-assert": { + "version": "1.0.1" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1" + }, + "minimatch": { + "version": "3.0.4", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.0" + }, + "minimist-options": { + "version": "3.0.2", + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0" + } + }, + "minipass": { + "version": "2.9.0", + "requires": { + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" + }, + "dependencies": { + "yallist": { + "version": "3.1.1" + } + } + }, + "minipass-collect": { + "version": "1.0.2", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.5", + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "minipass-flush": { + "version": "1.0.5", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.5", + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.5", + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "minizlib": { + "version": "1.3.3", + "requires": { + "minipass": "^2.9.0" + } + }, + "mississippi": { + "version": "3.0.0", + "requires": { + "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" + }, + "dependencies": { + "concat-stream": { + "version": "1.6.2", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "through2": { + "version": "2.0.5", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + } + } + }, + "mixin-deep": { + "version": "1.3.2", + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + } + }, + "mjolnir.js": { + "version": "2.6.0", + "requires": { + "@babel/runtime": "^7.0.0", + "hammerjs": "^2.0.8" + } + }, + "mkdirp": { + "version": "0.5.5", + "requires": { + "minimist": "^1.2.5" + }, + "dependencies": { + "minimist": { + "version": "1.2.5" + } + } + }, + "mkdirp-promise": { + "version": "5.0.1", + "requires": { + "mkdirp": "*" + } + }, + "modify-values": { + "version": "1.0.1" + }, + "moment": { + "version": "2.29.1" + }, + "moo": { + "version": "0.5.1" + }, + "move-concurrently": { + "version": "1.0.1", + "requires": { + "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" + }, + "dependencies": { + "aproba": { + "version": "1.2.0" + }, + "rimraf": { + "version": "2.7.1", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "ms": { + "version": "2.1.2" + }, + "multicast-dns": { + "version": "6.2.3", + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0" + }, + "multimap": { + "version": "1.1.0" + }, + "multimatch": { + "version": "3.0.0", + "requires": { + "array-differ": "^2.0.3", + "array-union": "^1.0.2", + "arrify": "^1.0.1", + "minimatch": "^3.0.4" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "requires": { + "array-uniq": "^1.0.1" + } + } + } + }, + "murmurhash-js": { + "version": "1.0.0" + }, + "mustache": { + "version": "4.2.0" + }, + "mute-stream": { + "version": "0.0.7" + }, + "mz": { + "version": "2.7.0", + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "nan": { + "version": "2.15.0", + "optional": true + }, + "nanoid": { + "version": "2.1.11" + }, + "nanomatch": { + "version": "1.2.13", + "requires": { + "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" + } + }, + "native-url": { + "version": "0.2.6", + "requires": { + "querystring": "^0.2.0" + } + }, + "natural-compare": { + "version": "1.4.0" + }, + "nearley": { + "version": "2.20.1", + "requires": { + "commander": "^2.19.0", + "moo": "^0.5.0", + "railroad-diagrams": "^1.0.0", + "randexp": "0.4.6" + }, + "dependencies": { + "commander": { + "version": "2.20.3" + } + } + }, + "negotiator": { + "version": "0.6.2" + }, + "neo-async": { + "version": "2.6.2" + }, + "nested-error-stacks": { + "version": "2.1.0" + }, + "nice-try": { + "version": "1.0.5" + }, + "nise": { + "version": "4.1.0", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.7.0", + "@sinonjs/fake-timers": "^6.0.0", + "@sinonjs/text-encoding": "^0.7.1", + "just-extend": "^4.0.2", + "path-to-regexp": "^1.7.0" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "dev": true + }, + "path-to-regexp": { + "version": "1.8.0", + "dev": true, + "requires": { + "isarray": "0.0.1" + } + } + } + }, + "no-case": { + "version": "2.3.2", + "requires": { + "lower-case": "^1.1.1" + } + }, + "no-proxy": { + "version": "1.0.3", + "dev": true, + "requires": { + "url-parse": "^1.2.0", + "wildcard": "^1.1.2" + } + }, + "node-ask": { + "version": "1.0.1", + "dev": true + }, + "node-dir": { + "version": "0.1.17", + "requires": { + "minimatch": "^3.0.2" + } + }, + "node-environment-flags": { + "version": "1.0.6", + "requires": { + "object.getownpropertydescriptors": "^2.0.3", + "semver": "^5.7.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1" + } + } + }, + "node-fetch": { + "version": "2.6.0" + }, + "node-fetch-npm": { + "version": "2.0.4", + "requires": { + "encoding": "^0.1.11", + "json-parse-better-errors": "^1.0.0", + "safe-buffer": "^5.1.1" + } + }, + "node-forge": { + "version": "0.10.0" + }, + "node-gyp": { + "version": "5.1.1", + "requires": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.2", + "mkdirp": "^0.5.1", + "nopt": "^4.0.1", + "npmlog": "^4.1.2", + "request": "^2.88.0", + "rimraf": "^2.6.3", + "semver": "^5.7.1", + "tar": "^4.4.12", + "which": "^1.3.1" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "requires": { + "glob": "^7.1.3" + } + }, + "semver": { + "version": "5.7.1" + }, + "which": { + "version": "1.3.1", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "node-int64": { + "version": "0.4.0" + }, + "node-libs-browser": { + "version": "2.2.1", + "requires": { + "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" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "punycode": { + "version": "1.4.1" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "node-loggly-bulk": { + "version": "2.2.5", + "dev": true, + "requires": { + "json-stringify-safe": "5.0.x", + "moment": "^2.18.1", + "request": ">=2.76.0 <3.0.0" + } + }, + "node-modules-regexp": { + "version": "1.0.0" + }, + "node-notifier": { + "version": "8.0.2", + "optional": true, + "requires": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.2", + "shellwords": "^0.1.1", + "uuid": "^8.3.0", + "which": "^2.0.2" + } + }, + "node-releases": { + "version": "2.0.0" + }, + "nopt": { + "version": "4.0.3", + "requires": { + "abbrev": "1", + "osenv": "^0.1.4" + } + }, + "normalize-package-data": { + "version": "3.0.3", + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, + "normalize-path": { + "version": "3.0.0" + }, + "normalize-range": { + "version": "0.1.2" + }, + "normalize-url": { + "version": "6.1.0" + }, + "npm": { + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/npm/-/npm-7.24.2.tgz", + "integrity": "sha512-120p116CE8VMMZ+hk8IAb1inCPk4Dj3VZw29/n2g6UI77urJKVYb7FZUDW8hY+EBnfsjI/2yrobBgFyzo7YpVQ==", + "requires": { + "@isaacs/string-locale-compare": "*", + "@npmcli/arborist": "*", + "@npmcli/ci-detect": "*", + "@npmcli/config": "*", + "@npmcli/map-workspaces": "*", + "@npmcli/package-json": "*", + "@npmcli/run-script": "*", + "abbrev": "*", + "ansicolors": "*", + "ansistyles": "*", + "archy": "*", + "cacache": "*", + "chalk": "*", + "chownr": "*", + "cli-columns": "*", + "cli-table3": "*", + "columnify": "*", + "fastest-levenshtein": "*", + "glob": "*", + "graceful-fs": "*", + "hosted-git-info": "*", + "ini": "*", + "init-package-json": "*", + "is-cidr": "*", + "json-parse-even-better-errors": "*", + "libnpmaccess": "*", + "libnpmdiff": "*", + "libnpmexec": "*", + "libnpmfund": "*", + "libnpmhook": "*", + "libnpmorg": "*", + "libnpmpack": "*", + "libnpmpublish": "*", + "libnpmsearch": "*", + "libnpmteam": "*", + "libnpmversion": "*", + "make-fetch-happen": "*", + "minipass": "*", + "minipass-pipeline": "*", + "mkdirp": "*", + "mkdirp-infer-owner": "*", + "ms": "*", + "node-gyp": "*", + "nopt": "*", + "npm-audit-report": "*", + "npm-install-checks": "*", + "npm-package-arg": "*", + "npm-pick-manifest": "*", + "npm-profile": "*", + "npm-registry-fetch": "*", + "npm-user-validate": "*", + "npmlog": "*", + "opener": "*", + "pacote": "*", + "parse-conflict-json": "*", + "qrcode-terminal": "*", + "read": "*", + "read-package-json": "*", + "read-package-json-fast": "*", + "readdir-scoped-modules": "*", + "rimraf": "*", + "semver": "*", + "ssri": "*", + "tar": "*", + "text-table": "*", + "tiny-relative-date": "*", + "treeverse": "*", + "validate-npm-package-name": "*", + "which": "*", + "write-file-atomic": "*" + }, + "dependencies": { + "@gar/promisify": { + "version": "1.1.2", + "bundled": true + }, + "@isaacs/string-locale-compare": { + "version": "1.1.0", + "bundled": true + }, + "@npmcli/arborist": { + "version": "2.9.0", + "bundled": true, + "requires": { + "@isaacs/string-locale-compare": "^1.0.1", + "@npmcli/installed-package-contents": "^1.0.7", + "@npmcli/map-workspaces": "^1.0.2", + "@npmcli/metavuln-calculator": "^1.1.0", + "@npmcli/move-file": "^1.1.0", + "@npmcli/name-from-folder": "^1.0.1", + "@npmcli/node-gyp": "^1.0.1", + "@npmcli/package-json": "^1.0.1", + "@npmcli/run-script": "^1.8.2", + "bin-links": "^2.2.1", + "cacache": "^15.0.3", + "common-ancestor-path": "^1.0.1", + "json-parse-even-better-errors": "^2.3.1", + "json-stringify-nice": "^1.1.4", + "mkdirp": "^1.0.4", + "mkdirp-infer-owner": "^2.0.0", + "npm-install-checks": "^4.0.0", + "npm-package-arg": "^8.1.5", + "npm-pick-manifest": "^6.1.0", + "npm-registry-fetch": "^11.0.0", + "pacote": "^11.3.5", + "parse-conflict-json": "^1.1.1", + "proc-log": "^1.0.0", + "promise-all-reject-late": "^1.0.0", + "promise-call-limit": "^1.0.1", + "read-package-json-fast": "^2.0.2", + "readdir-scoped-modules": "^1.1.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "ssri": "^8.0.1", + "treeverse": "^1.0.4", + "walk-up-path": "^1.0.0" + } + }, + "@npmcli/ci-detect": { + "version": "1.3.0", + "bundled": true + }, + "@npmcli/config": { + "version": "2.3.0", + "bundled": true, + "requires": { + "ini": "^2.0.0", + "mkdirp-infer-owner": "^2.0.0", + "nopt": "^5.0.0", + "semver": "^7.3.4", + "walk-up-path": "^1.0.0" + } + }, + "@npmcli/disparity-colors": { + "version": "1.0.1", + "bundled": true, + "requires": { + "ansi-styles": "^4.3.0" + } + }, + "@npmcli/fs": { + "version": "1.0.0", + "bundled": true, + "requires": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "@npmcli/git": { + "version": "2.1.0", + "bundled": true, + "requires": { + "@npmcli/promise-spawn": "^1.3.2", + "lru-cache": "^6.0.0", + "mkdirp": "^1.0.4", + "npm-pick-manifest": "^6.1.1", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^2.0.2" + } + }, + "@npmcli/installed-package-contents": { + "version": "1.0.7", + "bundled": true, + "requires": { + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "@npmcli/map-workspaces": { + "version": "1.0.4", + "bundled": true, + "requires": { + "@npmcli/name-from-folder": "^1.0.1", + "glob": "^7.1.6", + "minimatch": "^3.0.4", + "read-package-json-fast": "^2.0.1" + } + }, + "@npmcli/metavuln-calculator": { + "version": "1.1.1", + "bundled": true, + "requires": { + "cacache": "^15.0.5", + "pacote": "^11.1.11", + "semver": "^7.3.2" + } + }, + "@npmcli/move-file": { + "version": "1.1.2", + "bundled": true, + "requires": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + } + }, + "@npmcli/name-from-folder": { + "version": "1.0.1", + "bundled": true + }, + "@npmcli/node-gyp": { + "version": "1.0.2", + "bundled": true + }, + "@npmcli/package-json": { + "version": "1.0.1", + "bundled": true, + "requires": { + "json-parse-even-better-errors": "^2.3.1" + } + }, + "@npmcli/promise-spawn": { + "version": "1.3.2", + "bundled": true, + "requires": { + "infer-owner": "^1.0.4" + } + }, + "@npmcli/run-script": { + "version": "1.8.6", + "bundled": true, + "requires": { + "@npmcli/node-gyp": "^1.0.2", + "@npmcli/promise-spawn": "^1.3.2", + "node-gyp": "^7.1.0", + "read-package-json-fast": "^2.0.1" + } + }, + "@tootallnate/once": { + "version": "1.1.2", + "bundled": true + }, + "abbrev": { + "version": "1.1.1", + "bundled": true + }, + "agent-base": { + "version": "6.0.2", + "bundled": true, + "requires": { + "debug": "4" + } + }, + "agentkeepalive": { + "version": "4.1.4", + "bundled": true, + "requires": { + "debug": "^4.1.0", + "depd": "^1.1.2", + "humanize-ms": "^1.2.1" + } + }, + "aggregate-error": { + "version": "3.1.0", + "bundled": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "bundled": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-regex": { + "version": "2.1.1", + "bundled": true + }, + "ansi-styles": { + "version": "4.3.0", + "bundled": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "ansicolors": { + "version": "0.3.2", + "bundled": true + }, + "ansistyles": { + "version": "0.1.3", + "bundled": true + }, + "aproba": { + "version": "2.0.0", + "bundled": true + }, + "archy": { + "version": "1.0.0", + "bundled": true + }, + "are-we-there-yet": { + "version": "1.1.6", + "bundled": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + } + }, + "asap": { + "version": "2.0.6", + "bundled": true + }, + "asn1": { + "version": "0.2.4", + "bundled": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "bundled": true + }, + "asynckit": { + "version": "0.4.0", + "bundled": true + }, + "aws-sign2": { + "version": "0.7.0", + "bundled": true + }, + "aws4": { + "version": "1.11.0", + "bundled": true + }, + "balanced-match": { + "version": "1.0.2", + "bundled": true + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "bundled": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bin-links": { + "version": "2.2.1", + "bundled": true, + "requires": { + "cmd-shim": "^4.0.1", + "mkdirp": "^1.0.3", + "npm-normalize-package-bin": "^1.0.0", + "read-cmd-shim": "^2.0.0", + "rimraf": "^3.0.0", + "write-file-atomic": "^3.0.3" + } + }, + "binary-extensions": { + "version": "2.2.0", + "bundled": true + }, + "brace-expansion": { + "version": "1.1.11", + "bundled": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "builtins": { + "version": "1.0.3", + "bundled": true + }, + "cacache": { + "version": "15.3.0", + "bundled": true, + "requires": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + } + }, + "caseless": { + "version": "0.12.0", + "bundled": true + }, + "chalk": { + "version": "4.1.2", + "bundled": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "chownr": { + "version": "2.0.0", + "bundled": true + }, + "cidr-regex": { + "version": "3.1.1", + "bundled": true, + "requires": { + "ip-regex": "^4.1.0" + } + }, + "clean-stack": { + "version": "2.2.0", + "bundled": true + }, + "cli-columns": { + "version": "3.1.2", + "bundled": true, + "requires": { + "string-width": "^2.0.0", + "strip-ansi": "^3.0.1" + } + }, + "cli-table3": { + "version": "0.6.0", + "bundled": true, + "requires": { + "colors": "^1.1.2", + "object-assign": "^4.1.0", + "string-width": "^4.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "bundled": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "bundled": true + }, + "string-width": { + "version": "4.2.2", + "bundled": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "bundled": true, + "requires": { + "ansi-regex": "^5.0.0" + } + } + } + }, + "clone": { + "version": "1.0.4", + "bundled": true + }, + "cmd-shim": { + "version": "4.1.0", + "bundled": true, + "requires": { + "mkdirp-infer-owner": "^2.0.0" + } + }, + "code-point-at": { + "version": "1.1.0", + "bundled": true + }, + "color-convert": { + "version": "2.0.1", + "bundled": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "bundled": true + }, + "color-support": { + "version": "1.1.3", + "bundled": true + }, + "colors": { + "version": "1.4.0", + "bundled": true, + "optional": true + }, + "columnify": { + "version": "1.5.4", + "bundled": true, + "requires": { + "strip-ansi": "^3.0.0", + "wcwidth": "^1.0.0" + } + }, + "combined-stream": { + "version": "1.0.8", + "bundled": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "common-ancestor-path": { + "version": "1.0.1", + "bundled": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true + }, + "console-control-strings": { + "version": "1.1.0", + "bundled": true + }, + "core-util-is": { + "version": "1.0.2", + "bundled": true + }, + "dashdash": { + "version": "1.14.1", + "bundled": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "debug": { + "version": "4.3.2", + "bundled": true, + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "bundled": true + } + } + }, + "debuglog": { + "version": "1.0.1", + "bundled": true + }, + "defaults": { + "version": "1.0.3", + "bundled": true, + "requires": { + "clone": "^1.0.2" + } + }, + "delayed-stream": { + "version": "1.0.0", + "bundled": true + }, + "delegates": { + "version": "1.0.0", + "bundled": true + }, + "depd": { + "version": "1.1.2", + "bundled": true + }, + "dezalgo": { + "version": "1.0.3", + "bundled": true, + "requires": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "diff": { + "version": "5.0.0", + "bundled": true + }, + "ecc-jsbn": { + "version": "0.1.2", + "bundled": true, + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "emoji-regex": { + "version": "8.0.0", + "bundled": true + }, + "encoding": { + "version": "0.1.13", + "bundled": true, + "optional": true, + "requires": { + "iconv-lite": "^0.6.2" + } + }, + "env-paths": { + "version": "2.2.1", + "bundled": true + }, + "err-code": { + "version": "2.0.3", + "bundled": true + }, + "extend": { + "version": "3.0.2", + "bundled": true + }, + "extsprintf": { + "version": "1.3.0", + "bundled": true + }, + "fast-deep-equal": { + "version": "3.1.3", + "bundled": true + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "bundled": true + }, + "fastest-levenshtein": { + "version": "1.0.12", + "bundled": true + }, + "forever-agent": { + "version": "0.6.1", + "bundled": true + }, + "fs-minipass": { + "version": "2.1.0", + "bundled": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "fs.realpath": { + "version": "1.0.0", + "bundled": true + }, + "function-bind": { + "version": "1.1.1", + "bundled": true + }, + "gauge": { + "version": "3.0.1", + "bundled": true, + "requires": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1 || ^2.0.0", + "strip-ansi": "^3.0.1 || ^4.0.0", + "wide-align": "^1.1.2" + } + }, + "getpass": { + "version": "0.1.7", + "bundled": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.2.0", + "bundled": true, + "requires": { + "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" + } + }, + "graceful-fs": { + "version": "4.2.8", + "bundled": true + }, + "har-schema": { + "version": "2.0.0", + "bundled": true + }, + "har-validator": { + "version": "5.1.5", + "bundled": true, + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "has": { + "version": "1.0.3", + "bundled": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "4.0.0", + "bundled": true + }, + "has-unicode": { + "version": "2.0.1", + "bundled": true + }, + "hosted-git-info": { + "version": "4.0.2", + "bundled": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "http-cache-semantics": { + "version": "4.1.0", + "bundled": true + }, + "http-proxy-agent": { + "version": "4.0.1", + "bundled": true, + "requires": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + } + }, + "http-signature": { + "version": "1.2.0", + "bundled": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-proxy-agent": { + "version": "5.0.0", + "bundled": true, + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "humanize-ms": { + "version": "1.2.1", + "bundled": true, + "requires": { + "ms": "^2.0.0" + } + }, + "iconv-lite": { + "version": "0.6.3", + "bundled": true, + "optional": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "ignore-walk": { + "version": "3.0.4", + "bundled": true, + "requires": { + "minimatch": "^3.0.4" + } + }, + "imurmurhash": { + "version": "0.1.4", + "bundled": true + }, + "indent-string": { + "version": "4.0.0", + "bundled": true + }, + "infer-owner": { + "version": "1.0.4", + "bundled": true + }, + "inflight": { + "version": "1.0.6", + "bundled": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "bundled": true + }, + "ini": { + "version": "2.0.0", + "bundled": true + }, + "init-package-json": { + "version": "2.0.5", + "bundled": true, + "requires": { + "npm-package-arg": "^8.1.5", + "promzard": "^0.3.0", + "read": "~1.0.1", + "read-package-json": "^4.1.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4", + "validate-npm-package-name": "^3.0.0" + } + }, + "ip": { + "version": "1.1.5", + "bundled": true + }, + "ip-regex": { + "version": "4.3.0", + "bundled": true + }, + "is-cidr": { + "version": "4.0.2", + "bundled": true, + "requires": { + "cidr-regex": "^3.1.1" + } + }, + "is-core-module": { + "version": "2.7.0", + "bundled": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "bundled": true + }, + "is-lambda": { + "version": "1.0.1", + "bundled": true + }, + "is-typedarray": { + "version": "1.0.0", + "bundled": true + }, + "isexe": { + "version": "2.0.0", + "bundled": true + }, + "isstream": { + "version": "0.1.2", + "bundled": true + }, + "jsbn": { + "version": "0.1.1", + "bundled": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "bundled": true + }, + "json-schema": { + "version": "0.2.3", + "bundled": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "bundled": true + }, + "json-stringify-nice": { + "version": "1.1.4", + "bundled": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "bundled": true + }, + "jsonparse": { + "version": "1.3.1", + "bundled": true + }, + "jsprim": { + "version": "1.4.1", + "bundled": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "just-diff": { + "version": "3.1.1", + "bundled": true + }, + "just-diff-apply": { + "version": "3.0.0", + "bundled": true + }, + "libnpmaccess": { + "version": "4.0.3", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "minipass": "^3.1.1", + "npm-package-arg": "^8.1.2", + "npm-registry-fetch": "^11.0.0" + } + }, + "libnpmdiff": { + "version": "2.0.4", + "bundled": true, + "requires": { + "@npmcli/disparity-colors": "^1.0.1", + "@npmcli/installed-package-contents": "^1.0.7", + "binary-extensions": "^2.2.0", + "diff": "^5.0.0", + "minimatch": "^3.0.4", + "npm-package-arg": "^8.1.4", + "pacote": "^11.3.4", + "tar": "^6.1.0" + } + }, + "libnpmexec": { + "version": "2.0.1", + "bundled": true, + "requires": { + "@npmcli/arborist": "^2.3.0", + "@npmcli/ci-detect": "^1.3.0", + "@npmcli/run-script": "^1.8.4", + "chalk": "^4.1.0", + "mkdirp-infer-owner": "^2.0.0", + "npm-package-arg": "^8.1.2", + "pacote": "^11.3.1", + "proc-log": "^1.0.0", + "read": "^1.0.7", + "read-package-json-fast": "^2.0.2", + "walk-up-path": "^1.0.0" + } + }, + "libnpmfund": { + "version": "1.1.0", + "bundled": true, + "requires": { + "@npmcli/arborist": "^2.5.0" + } + }, + "libnpmhook": { + "version": "6.0.3", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^11.0.0" + } + }, + "libnpmorg": { + "version": "2.0.3", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^11.0.0" + } + }, + "libnpmpack": { + "version": "2.0.1", + "bundled": true, + "requires": { + "@npmcli/run-script": "^1.8.3", + "npm-package-arg": "^8.1.0", + "pacote": "^11.2.6" + } + }, + "libnpmpublish": { + "version": "4.0.2", + "bundled": true, + "requires": { + "normalize-package-data": "^3.0.2", + "npm-package-arg": "^8.1.2", + "npm-registry-fetch": "^11.0.0", + "semver": "^7.1.3", + "ssri": "^8.0.1" + } + }, + "libnpmsearch": { + "version": "3.1.2", + "bundled": true, + "requires": { + "npm-registry-fetch": "^11.0.0" + } + }, + "libnpmteam": { + "version": "2.0.4", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^11.0.0" + } + }, + "libnpmversion": { + "version": "1.2.1", + "bundled": true, + "requires": { + "@npmcli/git": "^2.0.7", + "@npmcli/run-script": "^1.8.4", + "json-parse-even-better-errors": "^2.3.1", + "semver": "^7.3.5", + "stringify-package": "^1.0.1" + } + }, + "lru-cache": { + "version": "6.0.0", + "bundled": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-fetch-happen": { + "version": "9.1.0", + "bundled": true, + "requires": { + "agentkeepalive": "^4.1.3", + "cacache": "^15.2.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^6.0.0", + "minipass": "^3.1.3", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^1.3.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.2", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^6.0.0", + "ssri": "^8.0.0" + } + }, + "mime-db": { + "version": "1.49.0", + "bundled": true + }, + "mime-types": { + "version": "2.1.32", + "bundled": true, + "requires": { + "mime-db": "1.49.0" + } + }, + "minimatch": { + "version": "3.0.4", + "bundled": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minipass": { + "version": "3.1.5", + "bundled": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minipass-collect": { + "version": "1.0.2", + "bundled": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-fetch": { + "version": "1.4.1", + "bundled": true, + "requires": { + "encoding": "^0.1.12", + "minipass": "^3.1.0", + "minipass-sized": "^1.0.3", + "minizlib": "^2.0.0" + } + }, + "minipass-flush": { + "version": "1.0.5", + "bundled": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-json-stream": { + "version": "1.0.1", + "bundled": true, + "requires": { + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "bundled": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-sized": { + "version": "1.0.3", + "bundled": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "bundled": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mkdirp": { + "version": "1.0.4", + "bundled": true + }, + "mkdirp-infer-owner": { + "version": "2.0.0", + "bundled": true, + "requires": { + "chownr": "^2.0.0", + "infer-owner": "^1.0.4", + "mkdirp": "^1.0.3" + } + }, + "ms": { + "version": "2.1.3", + "bundled": true + }, + "mute-stream": { + "version": "0.0.8", + "bundled": true + }, + "negotiator": { + "version": "0.6.2", + "bundled": true + }, + "node-gyp": { + "version": "7.1.2", + "bundled": true, + "requires": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.3", + "nopt": "^5.0.0", + "npmlog": "^4.1.2", + "request": "^2.88.2", + "rimraf": "^3.0.2", + "semver": "^7.3.2", + "tar": "^6.0.2", + "which": "^2.0.2" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "bundled": true + }, + "gauge": { + "version": "2.7.4", + "bundled": true, + "requires": { + "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" + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "bundled": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "npmlog": { + "version": "4.1.2", + "bundled": true, + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "bundled": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + } + } + }, + "nopt": { + "version": "5.0.0", + "bundled": true, + "requires": { + "abbrev": "1" + } + }, + "normalize-package-data": { + "version": "3.0.3", + "bundled": true, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, + "npm-audit-report": { + "version": "2.1.5", + "bundled": true, + "requires": { + "chalk": "^4.0.0" + } + }, + "npm-bundled": { + "version": "1.1.2", + "bundled": true, + "requires": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-install-checks": { + "version": "4.0.0", + "bundled": true, + "requires": { + "semver": "^7.1.1" + } + }, + "npm-normalize-package-bin": { + "version": "1.0.1", + "bundled": true + }, + "npm-package-arg": { + "version": "8.1.5", + "bundled": true, + "requires": { + "hosted-git-info": "^4.0.1", + "semver": "^7.3.4", + "validate-npm-package-name": "^3.0.0" + } + }, + "npm-packlist": { + "version": "2.2.2", + "bundled": true, + "requires": { + "glob": "^7.1.6", + "ignore-walk": "^3.0.3", + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-pick-manifest": { + "version": "6.1.1", + "bundled": true, + "requires": { + "npm-install-checks": "^4.0.0", + "npm-normalize-package-bin": "^1.0.1", + "npm-package-arg": "^8.1.2", + "semver": "^7.3.4" + } + }, + "npm-profile": { + "version": "5.0.4", + "bundled": true, + "requires": { + "npm-registry-fetch": "^11.0.0" + } + }, + "npm-registry-fetch": { + "version": "11.0.0", + "bundled": true, + "requires": { + "make-fetch-happen": "^9.0.1", + "minipass": "^3.1.3", + "minipass-fetch": "^1.3.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.0.0", + "npm-package-arg": "^8.0.0" + } + }, + "npm-user-validate": { + "version": "1.0.1", + "bundled": true + }, + "npmlog": { + "version": "5.0.1", + "bundled": true, + "requires": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + }, + "dependencies": { + "are-we-there-yet": { + "version": "2.0.0", + "bundled": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + } + } + } + }, + "number-is-nan": { + "version": "1.0.1", + "bundled": true + }, + "oauth-sign": { + "version": "0.9.0", + "bundled": true + }, + "object-assign": { + "version": "4.1.1", + "bundled": true + }, + "once": { + "version": "1.4.0", + "bundled": true, + "requires": { + "wrappy": "1" + } + }, + "opener": { + "version": "1.5.2", + "bundled": true + }, + "p-map": { + "version": "4.0.0", + "bundled": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "pacote": { + "version": "11.3.5", + "bundled": true, + "requires": { + "@npmcli/git": "^2.1.0", + "@npmcli/installed-package-contents": "^1.0.6", + "@npmcli/promise-spawn": "^1.2.0", + "@npmcli/run-script": "^1.8.2", + "cacache": "^15.0.5", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "infer-owner": "^1.0.4", + "minipass": "^3.1.3", + "mkdirp": "^1.0.3", + "npm-package-arg": "^8.0.1", + "npm-packlist": "^2.1.4", + "npm-pick-manifest": "^6.0.0", + "npm-registry-fetch": "^11.0.0", + "promise-retry": "^2.0.1", + "read-package-json-fast": "^2.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.1.0" + } + }, + "parse-conflict-json": { + "version": "1.1.1", + "bundled": true, + "requires": { + "json-parse-even-better-errors": "^2.3.0", + "just-diff": "^3.0.1", + "just-diff-apply": "^3.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "bundled": true + }, + "performance-now": { + "version": "2.1.0", + "bundled": true + }, + "proc-log": { + "version": "1.0.0", + "bundled": true + }, + "promise-all-reject-late": { + "version": "1.0.1", + "bundled": true + }, + "promise-call-limit": { + "version": "1.0.1", + "bundled": true + }, + "promise-inflight": { + "version": "1.0.1", + "bundled": true + }, + "promise-retry": { + "version": "2.0.1", + "bundled": true, + "requires": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + } + }, + "promzard": { + "version": "0.3.0", + "bundled": true, + "requires": { + "read": "1" + } + }, + "psl": { + "version": "1.8.0", + "bundled": true + }, + "punycode": { + "version": "2.1.1", + "bundled": true + }, + "qrcode-terminal": { + "version": "0.12.0", + "bundled": true + }, + "qs": { + "version": "6.5.2", + "bundled": true + }, + "read": { + "version": "1.0.7", + "bundled": true, + "requires": { + "mute-stream": "~0.0.4" + } + }, + "read-cmd-shim": { + "version": "2.0.0", + "bundled": true + }, + "read-package-json": { + "version": "4.1.1", + "bundled": true, + "requires": { + "glob": "^7.1.1", + "json-parse-even-better-errors": "^2.3.0", + "normalize-package-data": "^3.0.0", + "npm-normalize-package-bin": "^1.0.0" + } + }, + "read-package-json-fast": { + "version": "2.0.3", + "bundled": true, + "requires": { + "json-parse-even-better-errors": "^2.3.0", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "readable-stream": { + "version": "3.6.0", + "bundled": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdir-scoped-modules": { + "version": "1.1.0", + "bundled": true, + "requires": { + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "graceful-fs": "^4.1.2", + "once": "^1.3.0" + } + }, + "request": { + "version": "2.88.2", + "bundled": true, + "requires": { + "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" + }, + "dependencies": { + "form-data": { + "version": "2.3.3", + "bundled": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "tough-cookie": { + "version": "2.5.0", + "bundled": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + } + } + }, + "retry": { + "version": "0.12.0", + "bundled": true + }, + "rimraf": { + "version": "3.0.2", + "bundled": true, + "requires": { + "glob": "^7.1.3" + } + }, + "safe-buffer": { + "version": "5.2.1", + "bundled": true + }, + "safer-buffer": { + "version": "2.1.2", + "bundled": true + }, + "semver": { + "version": "7.3.5", + "bundled": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "set-blocking": { + "version": "2.0.0", + "bundled": true + }, + "signal-exit": { + "version": "3.0.3", + "bundled": true + }, + "smart-buffer": { + "version": "4.2.0", + "bundled": true + }, + "socks": { + "version": "2.6.1", + "bundled": true, + "requires": { + "ip": "^1.1.5", + "smart-buffer": "^4.1.0" + } + }, + "socks-proxy-agent": { + "version": "6.1.0", + "bundled": true, + "requires": { + "agent-base": "^6.0.2", + "debug": "^4.3.1", + "socks": "^2.6.1" + } + }, + "spdx-correct": { + "version": "3.1.1", + "bundled": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "bundled": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "bundled": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.10", + "bundled": true + }, + "sshpk": { + "version": "1.16.1", + "bundled": true, + "requires": { + "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": { + "version": "8.0.1", + "bundled": true, + "requires": { + "minipass": "^3.1.1" + } + }, + "string_decoder": { + "version": "1.3.0", + "bundled": true, + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string-width": { + "version": "2.1.1", + "bundled": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "bundled": true + }, + "strip-ansi": { + "version": "4.0.0", + "bundled": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "stringify-package": { + "version": "1.0.1", + "bundled": true + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "bundled": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tar": { + "version": "6.1.11", + "bundled": true, + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + } + }, + "text-table": { + "version": "0.2.0", + "bundled": true + }, + "tiny-relative-date": { + "version": "1.3.0", + "bundled": true + }, + "treeverse": { + "version": "1.0.4", + "bundled": true + }, + "tunnel-agent": { + "version": "0.6.0", + "bundled": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "bundled": true + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "bundled": true, + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "unique-filename": { + "version": "1.1.1", + "bundled": true, + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "bundled": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "uri-js": { + "version": "4.4.1", + "bundled": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true + }, + "uuid": { + "version": "3.4.0", + "bundled": true + }, + "validate-npm-package-license": { + "version": "3.0.4", + "bundled": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "validate-npm-package-name": { + "version": "3.0.0", + "bundled": true, + "requires": { + "builtins": "^1.0.3" + } + }, + "verror": { + "version": "1.10.0", + "bundled": true, + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "walk-up-path": { + "version": "1.0.0", + "bundled": true + }, + "wcwidth": { + "version": "1.0.1", + "bundled": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "which": { + "version": "2.0.2", + "bundled": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "wide-align": { + "version": "1.1.3", + "bundled": true, + "requires": { + "string-width": "^1.0.2 || 2" + } + }, + "wrappy": { + "version": "1.0.2", + "bundled": true + }, + "write-file-atomic": { + "version": "3.0.3", + "bundled": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "yallist": { + "version": "4.0.0", + "bundled": true + } + } + }, + "npm-api": { + "version": "1.0.1", + "devOptional": true, + "requires": { + "clone-deep": "^4.0.1", + "download-stats": "^0.3.4", + "JSONStream": "^1.3.5", + "moment": "^2.24.0", + "node-fetch": "^2.6.0", + "paged-request": "^2.0.1" + } + }, + "npm-bundled": { + "version": "1.1.2", + "requires": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-lifecycle": { + "version": "3.1.5", + "requires": { + "byline": "^5.0.0", + "graceful-fs": "^4.1.15", + "node-gyp": "^5.0.2", + "resolve-from": "^4.0.0", + "slide": "^1.1.6", + "uid-number": "0.0.6", + "umask": "^1.1.0", + "which": "^1.3.1" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0" + }, + "which": { + "version": "1.3.1", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "npm-normalize-package-bin": { + "version": "1.0.1" + }, + "npm-package-arg": { + "version": "6.1.1", + "requires": { + "hosted-git-info": "^2.7.1", + "osenv": "^0.1.5", + "semver": "^5.6.0", + "validate-npm-package-name": "^3.0.0" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9" + }, + "semver": { + "version": "5.7.1" + } + } + }, + "npm-packlist": { + "version": "1.4.8", + "requires": { + "ignore-walk": "^3.0.1", + "npm-bundled": "^1.0.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-pick-manifest": { + "version": "3.0.2", + "requires": { + "figgy-pudding": "^3.5.1", + "npm-package-arg": "^6.0.0", + "semver": "^5.4.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1" + } + } + }, + "npm-run-path": { + "version": "4.0.1", + "requires": { + "path-key": "^3.0.0" + } + }, + "npmlog": { + "version": "4.1.2", + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "nth-check": { + "version": "2.0.1", + "requires": { + "boolbase": "^1.0.0" + } + }, + "num2fraction": { + "version": "1.2.2" + }, + "number-is-nan": { + "version": "1.0.1" + }, + "nvd3": { + "version": "1.8.6", + "requires": {} + }, + "nvd3-fork": { + "version": "2.0.5", + "requires": {} + }, + "nwsapi": { + "version": "2.2.0" + }, + "oauth-sign": { + "version": "0.9.0" + }, + "object-assign": { + "version": "4.1.1" + }, + "object-copy": { + "version": "0.1.0", + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "requires": { + "kind-of": "^3.0.2" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "requires": { + "kind-of": "^3.0.2" + } + }, + "is-descriptor": { + "version": "0.1.6", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0" + } + } + }, + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.11.0" + }, + "object-is": { + "version": "1.1.5", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1" + }, + "object-visit": { + "version": "1.0.1", + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.2", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.entries": { + "version": "1.1.5", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.fromentries": { + "version": "2.0.5", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.3", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.hasown": { + "version": "1.1.0", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.pick": { + "version": "1.3.0", + "requires": { + "isobject": "^3.0.1" + } + }, + "object.values": { + "version": "1.1.5", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "objectorarray": { + "version": "1.0.5" + }, + "obuf": { + "version": "1.1.2" + }, + "octokit-pagination-methods": { + "version": "1.1.0" + }, + "on-finished": { + "version": "2.3.0", + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2" + }, + "once": { + "version": "1.4.0", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "open": { + "version": "7.4.2", + "requires": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + } + }, + "opencollective-postinstall": { + "version": "2.0.3" + }, + "opener": { + "version": "1.5.2" + }, + "openurl": { + "version": "1.1.1", + "dev": true + }, + "opn": { + "version": "5.5.0", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0" + } + } + }, + "optimal": { + "version": "4.3.0" + }, + "optimist": { + "version": "0.3.7", + "requires": { + "wordwrap": "~0.0.2" + }, + "dependencies": { + "wordwrap": { + "version": "0.0.3" + } + } + }, + "optionator": { + "version": "0.9.1", + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "original": { + "version": "1.0.2", + "requires": { + "url-parse": "^1.4.3" + } + }, + "os-browserify": { + "version": "0.3.0" + }, + "os-homedir": { + "version": "1.0.2" + }, + "os-locale": { + "version": "4.0.0", + "requires": { + "execa": "^1.0.0", + "lcid": "^3.0.0", + "mem": "^5.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "requires": { + "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" + } + }, + "get-stream": { + "version": "4.1.0", + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "1.1.0" + }, + "npm-run-path": { + "version": "2.0.2", + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1" + }, + "semver": { + "version": "5.7.1" + }, + "shebang-command": { + "version": "1.2.0", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0" + }, + "which": { + "version": "1.3.1", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "os-name": { + "version": "3.1.0", + "requires": { + "macos-release": "^2.2.0", + "windows-release": "^3.1.0" + } + }, + "os-tmpdir": { + "version": "1.0.2" + }, + "osenv": { + "version": "0.1.5", + "requires": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "overlayscrollbars": { + "version": "1.13.1" + }, + "p-all": { + "version": "2.1.0", + "requires": { + "p-map": "^2.0.0" + } + }, + "p-defer": { + "version": "1.0.0" + }, + "p-each-series": { + "version": "2.2.0" + }, + "p-event": { + "version": "4.2.0", + "requires": { + "p-timeout": "^3.1.0" + } + }, + "p-filter": { + "version": "2.1.0", + "requires": { + "p-map": "^2.0.0" + } + }, + "p-finally": { + "version": "1.0.0" + }, + "p-is-promise": { + "version": "2.1.0" + }, + "p-limit": { + "version": "3.1.0", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "requires": { + "p-limit": "^2.2.0" + }, + "dependencies": { + "p-limit": { + "version": "2.3.0", + "requires": { + "p-try": "^2.0.0" + } + } + } + }, + "p-map": { + "version": "2.1.0" + }, + "p-map-series": { + "version": "1.0.0", + "requires": { + "p-reduce": "^1.0.0" + } + }, + "p-pipe": { + "version": "1.2.0" + }, + "p-queue": { + "version": "4.0.0", + "requires": { + "eventemitter3": "^3.1.0" + } + }, + "p-reduce": { + "version": "1.0.0" + }, + "p-retry": { + "version": "3.0.1", + "requires": { + "retry": "^0.12.0" + }, + "dependencies": { + "retry": { + "version": "0.12.0" + } + } + }, + "p-timeout": { + "version": "3.2.0", + "requires": { + "p-finally": "^1.0.0" + } + }, + "p-try": { + "version": "2.2.0" + }, + "p-waterfall": { + "version": "1.0.0", + "requires": { + "p-reduce": "^1.0.0" + } + }, + "pad-component": { + "version": "0.0.1" + }, + "paged-request": { + "version": "2.0.2", + "devOptional": true, + "requires": { + "axios": "^0.21.1" + } + }, + "pako": { + "version": "1.0.11" + }, + "parallel-transform": { + "version": "1.2.0", + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "param-case": { + "version": "3.0.4", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "dot-case": { + "version": "3.0.4", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "lower-case": { + "version": "2.0.2", + "requires": { + "tslib": "^2.0.3" + } + }, + "no-case": { + "version": "3.0.4", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + } + } + }, + "parent-module": { + "version": "1.0.1", + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-asn1": { + "version": "5.1.6", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-entities": { + "version": "1.2.2", + "requires": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + } + }, + "parse-github-repo-url": { + "version": "1.4.1" + }, + "parse-json": { + "version": "4.0.0", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "parse-ms": { + "version": "2.1.0" + }, + "parse-passwd": { + "version": "1.0.0" + }, + "parse-path": { + "version": "4.0.3", + "requires": { + "is-ssh": "^1.3.0", + "protocols": "^1.4.0", + "qs": "^6.9.4", + "query-string": "^6.13.8" + } + }, + "parse-url": { + "version": "6.0.0", + "requires": { + "is-ssh": "^1.3.0", + "normalize-url": "^6.1.0", + "parse-path": "^4.0.0", + "protocols": "^1.4.0" + } + }, + "parse5": { + "version": "4.0.0" + }, + "parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "requires": { + "parse5": "^6.0.1" + }, + "dependencies": { + "parse5": { + "version": "6.0.1" + } + } + }, + "parseurl": { + "version": "1.3.3" + }, + "pascal-case": { + "version": "3.1.2", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "lower-case": { + "version": "2.0.2", + "requires": { + "tslib": "^2.0.3" + } + }, + "no-case": { + "version": "3.0.4", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + } + } + }, + "pascalcase": { + "version": "0.1.1" + }, + "path-browserify": { + "version": "0.0.1" + }, + "path-case": { + "version": "2.1.1", + "requires": { + "no-case": "^2.2.0" + } + }, + "path-dirname": { + "version": "1.0.2" + }, + "path-exists": { + "version": "4.0.0" + }, + "path-is-absolute": { + "version": "1.0.1" + }, + "path-is-inside": { + "version": "1.0.2" + }, + "path-key": { + "version": "3.1.1" + }, + "path-parse": { + "version": "1.0.7" + }, + "path-to-regexp": { + "version": "2.4.0", + "dev": true + }, + "path-type": { + "version": "4.0.0" + }, + "pbf": { + "version": "3.2.1", + "requires": { + "ieee754": "^1.1.12", + "resolve-protobuf-schema": "^2.1.0" + } + }, + "pbkdf2": { + "version": "3.1.2", + "requires": { + "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": { + "version": "2.1.0" + }, + "picocolors": { + "version": "1.0.0" + }, + "picomatch": { + "version": "2.3.0" + }, + "pify": { + "version": "2.3.0" + }, + "pinkie": { + "version": "2.0.4" + }, + "pinkie-promise": { + "version": "2.0.1", + "requires": { + "pinkie": "^2.0.0" + } + }, + "pirates": { + "version": "4.0.1", + "requires": { + "node-modules-regexp": "^1.0.0" + } + }, + "pkg-dir": { + "version": "2.0.0", + "requires": { + "find-up": "^2.1.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "requires": { + "locate-path": "^2.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "1.3.0", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0" + }, + "path-exists": { + "version": "3.0.0" + } + } + }, + "pkg-up": { + "version": "3.1.0", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0" + } + } + }, + "please-upgrade-node": { + "version": "3.2.0", + "requires": { + "semver-compare": "^1.0.0" + } + }, + "pluralize": { + "version": "8.0.0" + }, + "pn": { + "version": "1.1.0" + }, + "pnp-webpack-plugin": { + "version": "1.6.4", + "requires": { + "ts-pnp": "^1.1.6" + } + }, + "polished": { + "version": "4.1.3", + "requires": { + "@babel/runtime": "^7.14.0" + } + }, + "portfinder": { + "version": "1.0.28", + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "posix-character-classes": { + "version": "0.1.1" + }, + "postcss": { + "version": "7.0.39", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1" + }, + "source-map": { + "version": "0.6.1" + } + } + }, + "postcss-flexbugs-fixes": { + "version": "4.2.1", + "requires": { + "postcss": "^7.0.26" + } + }, + "postcss-loader": { + "version": "4.3.0", + "requires": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.4", + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.4" + }, + "dependencies": { + "cosmiconfig": { + "version": "7.0.1", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "loader-utils": { + "version": "2.0.0", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "parse-json": { + "version": "5.2.0", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "schema-utils": { + "version": "3.1.1", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "requires": { + "postcss": "^7.0.5" + } + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "2.2.0", + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + } + }, + "postcss-modules-values": { + "version": "3.0.0", + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "postcss-selector-parser": { + "version": "6.0.6", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.1.0" + }, + "potpack": { + "version": "1.0.1" + }, + "prelude-ls": { + "version": "1.2.1" + }, + "prepend-http": { + "version": "1.0.4" + }, + "prettier": { + "version": "2.4.1" + }, + "prettier-linter-helpers": { + "version": "1.0.0", + "requires": { + "fast-diff": "^1.1.2" + } + }, + "pretty-bytes": { + "version": "5.6.0" + }, + "pretty-error": { + "version": "2.1.2", + "requires": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "pretty-format": { + "version": "26.6.2", + "requires": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "react-is": { + "version": "17.0.2" + } + } + }, + "pretty-hrtime": { + "version": "1.0.3" + }, + "pretty-ms": { + "version": "5.1.0", + "requires": { + "parse-ms": "^2.1.0" + } + }, + "prismjs": { + "version": "1.25.0" + }, + "process": { + "version": "0.11.10" + }, + "process-nextick-args": { + "version": "2.0.1" + }, + "progress": { + "version": "2.0.3" + }, + "progress-stream": { + "version": "2.0.0", + "dev": true, + "requires": { + "speedometer": "~1.0.0", + "through2": "~2.0.3" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "dev": true + }, + "readable-stream": { + "version": "2.3.7", + "dev": true, + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "through2": { + "version": "2.0.5", + "dev": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + } + } + }, + "promise": { + "version": "7.3.1", + "requires": { + "asap": "~2.0.3" + } + }, + "promise-inflight": { + "version": "1.0.1" + }, + "promise-retry": { + "version": "1.1.1", + "requires": { + "err-code": "^1.0.0", + "retry": "^0.10.0" + }, + "dependencies": { + "retry": { + "version": "0.10.1" + } + } + }, + "promise.allsettled": { + "version": "1.0.5", + "requires": { + "array.prototype.map": "^1.0.4", + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "iterate-value": "^1.0.2" + } + }, + "promise.prototype.finally": { + "version": "3.1.3", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "prompts": { + "version": "2.4.2", + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "promzard": { + "version": "0.3.0", + "requires": { + "read": "1" + } + }, + "prop-types": { + "version": "15.7.2", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" + } + }, + "prop-types-exact": { + "version": "1.2.0", + "requires": { + "has": "^1.0.3", + "object.assign": "^4.1.0", + "reflect.ownkeys": "^0.2.0" + } + }, + "property-information": { + "version": "5.6.0", + "requires": { + "xtend": "^4.0.0" + } + }, + "proto-list": { + "version": "1.2.4" + }, + "protocol-buffers-schema": { + "version": "3.6.0" + }, + "protocols": { + "version": "1.4.8" + }, + "protoduck": { + "version": "5.0.1", + "requires": { + "genfun": "^5.0.0" + } + }, + "proxy-addr": { + "version": "2.0.7", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "prr": { + "version": "1.0.1" + }, + "pseudomap": { + "version": "1.0.2" + }, + "psl": { + "version": "1.8.0" + }, + "public-encrypt": { + "version": "4.0.3", + "requires": { + "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" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0" + } + } + }, + "pump": { + "version": "3.0.0", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, + "punycode": { + "version": "2.1.1" + }, + "q": { + "version": "1.5.1" + }, + "qs": { + "version": "6.10.1", + "requires": { + "side-channel": "^1.0.4" + } + }, + "query-string": { + "version": "6.14.1", + "requires": { + "decode-uri-component": "^0.2.0", + "filter-obj": "^1.1.0", + "split-on-first": "^1.0.0", + "strict-uri-encode": "^2.0.0" + } + }, + "querystring": { + "version": "0.2.1" + }, + "querystring-es3": { + "version": "0.2.1" + }, + "querystringify": { + "version": "2.2.0" + }, + "queue-microtask": { + "version": "1.2.3" + }, + "quick-lru": { + "version": "1.1.0" + }, + "quickselect": { + "version": "2.0.0" + }, + "quote-stream": { + "version": "1.0.2", + "requires": { + "buffer-equal": "0.0.1", + "minimist": "^1.1.3", + "through2": "^2.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "through2": { + "version": "2.0.5", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + } + } + }, + "raf": { + "version": "3.4.1", + "requires": { + "performance-now": "^2.1.0" + } + }, + "railroad-diagrams": { + "version": "1.0.0" + }, + "ramda": { + "version": "0.27.1" + }, + "randexp": { + "version": "0.4.6", + "requires": { + "discontinuous-range": "1.0.0", + "ret": "~0.1.10" + } + }, + "randombytes": { + "version": "2.1.0", + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1" + }, + "raw-body": { + "version": "2.4.0", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "raw-loader": { + "version": "4.0.2", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.0", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "react": { + "version": "16.14.0", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2" + } + }, + "react-dev-utils": { + "version": "11.0.4", + "requires": { + "@babel/code-frame": "7.10.4", + "address": "1.1.2", + "browserslist": "4.14.2", + "chalk": "2.4.2", + "cross-spawn": "7.0.3", + "detect-port-alt": "1.1.6", + "escape-string-regexp": "2.0.0", + "filesize": "6.1.0", + "find-up": "4.1.0", + "fork-ts-checker-webpack-plugin": "4.1.6", + "global-modules": "2.0.0", + "globby": "11.0.1", + "gzip-size": "5.1.1", + "immer": "8.0.1", + "is-root": "2.1.0", + "loader-utils": "2.0.0", + "open": "^7.0.2", + "pkg-up": "3.1.0", + "prompts": "2.4.0", + "react-error-overlay": "^6.0.9", + "recursive-readdir": "2.2.2", + "shell-quote": "1.7.2", + "strip-ansi": "6.0.0", + "text-table": "0.2.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.10.4", + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "braces": { + "version": "2.3.2", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "browserslist": { + "version": "4.14.2", + "requires": { + "caniuse-lite": "^1.0.30001125", + "electron-to-chromium": "^1.3.564", + "escalade": "^3.0.2", + "node-releases": "^1.1.61" + } + }, + "escape-string-regexp": { + "version": "2.0.0" + }, + "fill-range": { + "version": "4.0.0", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fork-ts-checker-webpack-plugin": { + "version": "4.1.6", + "requires": { + "@babel/code-frame": "^7.5.5", + "chalk": "^2.4.1", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + } + }, + "globby": { + "version": "11.0.1", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "is-extendable": { + "version": "0.1.1" + }, + "is-number": { + "version": "3.0.0", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "loader-utils": { + "version": "2.0.0", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "micromatch": { + "version": "3.1.10", + "requires": { + "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" + } + }, + "node-releases": { + "version": "1.1.77" + }, + "prompts": { + "version": "2.4.0", + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "semver": { + "version": "5.7.1" + }, + "slash": { + "version": "3.0.0" + }, + "strip-ansi": { + "version": "6.0.0", + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "tapable": { + "version": "1.1.3" + }, + "to-regex-range": { + "version": "2.1.1", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "react-docgen": { + "version": "5.4.0", + "requires": { + "@babel/core": "^7.7.5", + "@babel/generator": "^7.12.11", + "@babel/runtime": "^7.7.6", + "ast-types": "^0.14.2", + "commander": "^2.19.0", + "doctrine": "^3.0.0", + "estree-to-babel": "^3.1.0", + "neo-async": "^2.6.1", + "node-dir": "^0.1.10", + "strip-indent": "^3.0.0" + }, + "dependencies": { + "commander": { + "version": "2.20.3" + } + } + }, + "react-docgen-typescript": { + "version": "2.1.1", + "requires": {} + }, + "react-dom": { + "version": "16.14.0", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "scheduler": "^0.19.1" + } + }, + "react-error-boundary": { + "version": "1.2.5", + "requires": {} + }, + "react-error-overlay": { + "version": "6.0.9" + }, + "react-fast-compare": { + "version": "3.2.0" + }, + "react-input-autosize": { + "version": "2.2.2", + "requires": { + "prop-types": "^15.5.8" + } + }, + "react-is": { + "version": "16.13.1" + }, + "react-lifecycles-compat": { + "version": "3.0.4" + }, + "react-loadable": { + "version": "5.5.0", + "requires": { + "prop-types": "^15.5.0" + } + }, + "react-map-gl": { + "version": "4.1.16", + "requires": { + "@babel/runtime": "^7.0.0", + "mapbox-gl": "~0.54.0", + "mjolnir.js": "^2.2.0", + "prop-types": "^15.7.2", + "react-virtualized-auto-sizer": "^1.0.2", + "viewport-mercator-project": "^6.2.1" + }, + "dependencies": { + "esm": { + "version": "3.0.84" + }, + "kdbush": { + "version": "3.0.0" + }, + "mapbox-gl": { + "version": "0.54.1", + "requires": { + "@mapbox/geojson-rewind": "^0.4.0", + "@mapbox/geojson-types": "^1.0.2", + "@mapbox/jsonlint-lines-primitives": "^2.0.2", + "@mapbox/mapbox-gl-supported": "^1.4.0", + "@mapbox/point-geometry": "^0.1.0", + "@mapbox/tiny-sdf": "^1.1.0", + "@mapbox/unitbezier": "^0.0.0", + "@mapbox/vector-tile": "^1.3.1", + "@mapbox/whoots-js": "^3.1.0", + "csscolorparser": "~1.0.2", + "earcut": "^2.1.5", + "esm": "~3.0.84", + "geojson-vt": "^3.2.1", + "gl-matrix": "^3.0.0", + "grid-index": "^1.1.0", + "minimist": "0.0.8", + "murmurhash-js": "^1.0.0", + "pbf": "^3.0.5", + "potpack": "^1.0.1", + "quickselect": "^2.0.0", + "rw": "^1.3.3", + "supercluster": "^6.0.1", + "tinyqueue": "^2.0.0", + "vt-pbf": "^3.1.1" + } + }, + "minimist": { + "version": "0.0.8" + }, + "react-virtualized-auto-sizer": { + "version": "1.0.6", + "requires": {} + }, + "supercluster": { + "version": "6.0.2", + "requires": { + "kdbush": "^3.0.0" + } + } + } + }, + "react-markdown": { + "version": "4.3.1", + "requires": { + "html-to-react": "^1.3.4", + "mdast-add-list-metadata": "1.0.1", + "prop-types": "^15.7.2", + "react-is": "^16.8.6", + "remark-parse": "^5.0.0", + "unified": "^6.1.5", + "unist-util-visit": "^1.3.0", + "xtend": "^4.0.1" + } + }, + "react-move": { + "version": "2.9.1", + "requires": { + "@babel/runtime": "^7.2.0", + "d3-interpolate": "^1.3.2", + "d3-timer": "^1.0.9", + "prop-types": "^15.6.2", + "react-lifecycles-compat": "^3.0.4" + } + }, + "react-refresh": { + "version": "0.8.3" + }, + "react-resizable": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-resizable/-/react-resizable-3.0.4.tgz", + "integrity": "sha512-StnwmiESiamNzdRHbSSvA65b0ZQJ7eVQpPusrSmcpyGKzC0gojhtO62xxH6YOBmepk9dQTBi9yxidL3W4s3EBA==", + "requires": { + "prop-types": "15.x", + "react-draggable": "^4.0.3" + }, + "dependencies": { + "react-draggable": { + "version": "4.4.4", + "integrity": "sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==", + "requires": { + "clsx": "^1.1.1", + "prop-types": "^15.6.0" + } + } + } + }, + "react-select": { + "version": "1.3.0", + "requires": { + "classnames": "^2.2.4", + "prop-types": "^15.5.8", + "react-input-autosize": "^2.1.2" + } + }, + "react-sizeme": { + "version": "3.0.2", + "requires": { + "element-resize-detector": "^1.2.2", + "invariant": "^2.2.4", + "shallowequal": "^1.1.0", + "throttle-debounce": "^3.0.1" + } + }, + "react-sortablejs": { + "version": "6.0.0", + "requires": { + "classnames": "^2.2.6", + "tiny-invariant": "^1.1.0" + } + }, + "react-split-pane": { + "version": "0.1.92", + "requires": { + "prop-types": "^15.7.2", + "react-lifecycles-compat": "^3.0.4", + "react-style-proptype": "^3.2.2" + } + }, + "react-style-proptype": { + "version": "3.2.2", + "requires": { + "prop-types": "^15.5.4" + } + }, + "react-table": { + "version": "7.7.0", + "requires": {} + }, + "react-test-renderer": { + "version": "16.14.0", + "requires": { + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "react-is": "^16.8.6", + "scheduler": "^0.19.1" + } + }, + "react-with-styles": { + "version": "1.4.0", + "requires": { + "deepmerge": "^1.3.2", + "global-cache": "^1.2.0", + "hoist-non-react-statics": "^1.2.0", + "prop-types": "^15.5.8" + }, + "dependencies": { + "deepmerge": { + "version": "1.5.2" + }, + "hoist-non-react-statics": { + "version": "1.2.0" + } + } + }, + "react-with-styles-interface-aphrodite": { + "version": "1.2.0", + "requires": { + "array-flatten": "^2.1.0", + "has": "^1.0.1" + } + }, + "reactable": { + "version": "1.1.0", + "requires": {} + }, + "reactable-arc": { + "version": "0.15.0", + "requires": {} + }, + "read": { + "version": "1.0.7", + "requires": { + "mute-stream": "~0.0.4" + } + }, + "read-chunk": { + "version": "3.2.0", + "requires": { + "pify": "^4.0.1", + "with-open-file": "^0.1.6" + }, + "dependencies": { + "pify": { + "version": "4.0.1" + } + } + }, + "read-cmd-shim": { + "version": "1.0.5", + "requires": { + "graceful-fs": "^4.1.2" + } + }, + "read-package-json": { + "version": "2.1.2", + "requires": { + "glob": "^7.1.1", + "json-parse-even-better-errors": "^2.3.0", + "normalize-package-data": "^2.0.0", + "npm-normalize-package-bin": "^1.0.0" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9" + }, + "normalize-package-data": { + "version": "2.5.0", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "semver": { + "version": "5.7.1" + } + } + }, + "read-package-tree": { + "version": "5.3.1", + "requires": { + "read-package-json": "^2.0.0", + "readdir-scoped-modules": "^1.0.0", + "util-promisify": "^2.1.0" + } + }, + "read-pkg": { + "version": "3.0.0", + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9" + }, + "load-json-file": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "path-type": { + "version": "3.0.0", + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0" + }, + "semver": { + "version": "5.7.1" + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9" + }, + "normalize-package-data": { + "version": "2.5.0", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "parse-json": { + "version": "5.2.0", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "read-pkg": { + "version": "5.2.0", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0" + } + } + }, + "semver": { + "version": "5.7.1" + }, + "type-fest": { + "version": "0.8.1" + } + } + }, + "readable-stream": { + "version": "3.6.0", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdir-scoped-modules": { + "version": "1.1.0", + "requires": { + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "graceful-fs": "^4.1.2", + "once": "^1.3.0" + } + }, + "readdirp": { + "version": "3.6.0", + "requires": { + "picomatch": "^2.2.1" + } + }, + "realpath-native": { + "version": "2.0.0" + }, + "rechoir": { + "version": "0.6.2", + "requires": { + "resolve": "^1.1.6" + } + }, + "recursive-readdir": { + "version": "2.2.2", + "requires": { + "minimatch": "3.0.4" + } + }, + "redent": { + "version": "2.0.0", + "requires": { + "indent-string": "^3.0.0", + "strip-indent": "^2.0.0" + }, + "dependencies": { + "strip-indent": { + "version": "2.0.0" + } + } + }, + "redeyed": { + "version": "0.4.4", + "requires": { + "esprima": "~1.0.4" + }, + "dependencies": { + "esprima": { + "version": "1.0.4" + } + } + }, + "reduce-css-calc": { + "version": "1.3.0", + "requires": { + "balanced-match": "^0.4.2", + "math-expression-evaluator": "^1.2.14", + "reduce-function-call": "^1.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "0.4.2" + } + } + }, + "reduce-function-call": { + "version": "1.0.3", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "reflect.ownkeys": { + "version": "0.2.0" + }, + "refractor": { + "version": "3.5.0", + "requires": { + "hastscript": "^6.0.0", + "parse-entities": "^2.0.0", + "prismjs": "~1.25.0" + }, + "dependencies": { + "parse-entities": { + "version": "2.0.0", + "requires": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + } + } + } + }, + "regenerate": { + "version": "1.4.2" + }, + "regenerate-unicode-properties": { + "version": "9.0.0", + "requires": { + "regenerate": "^1.4.2" + } + }, + "regenerator-runtime": { + "version": "0.13.9" + }, + "regenerator-transform": { + "version": "0.14.5", + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regex-not": { + "version": "1.0.2", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "safe-regex": { + "version": "1.1.0", + "requires": { + "ret": "~0.1.10" + } + } + } + }, + "regexp-tree": { + "version": "0.1.24" + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "regexpp": { + "version": "3.2.0" + }, + "regexpu-core": { + "version": "4.8.0", + "requires": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^9.0.0", + "regjsgen": "^0.5.2", + "regjsparser": "^0.7.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + } + }, + "regjsgen": { + "version": "0.5.2" + }, + "regjsparser": { + "version": "0.7.0", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0" + } + } + }, + "relateurl": { + "version": "0.2.7" + }, + "remark-footnotes": { + "version": "2.0.0" + }, + "remark-mdx": { + "version": "1.6.22", + "requires": { + "@babel/core": "7.12.9", + "@babel/helper-plugin-utils": "7.10.4", + "@babel/plugin-proposal-object-rest-spread": "7.12.1", + "@babel/plugin-syntax-jsx": "7.12.1", + "@mdx-js/util": "1.6.22", + "is-alphabetical": "1.0.4", + "remark-parse": "8.0.3", + "unified": "9.2.0" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.9", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.5", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.5", + "@babel/parser": "^7.12.7", + "@babel/template": "^7.12.7", + "@babel/traverse": "^7.12.9", + "@babel/types": "^7.12.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.10.4" + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.12.1", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-transform-parameters": "^7.12.1" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.12.1", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "is-buffer": { + "version": "2.0.5" + }, + "is-plain-obj": { + "version": "2.1.0" + }, + "parse-entities": { + "version": "2.0.0", + "requires": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + } + }, + "remark-parse": { + "version": "8.0.3", + "requires": { + "ccount": "^1.0.0", + "collapse-white-space": "^1.0.2", + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-whitespace-character": "^1.0.0", + "is-word-character": "^1.0.0", + "markdown-escapes": "^1.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.5.4", + "state-toggle": "^1.0.0", + "trim": "0.0.1", + "trim-trailing-lines": "^1.0.0", + "unherit": "^1.0.4", + "unist-util-remove-position": "^2.0.0", + "vfile-location": "^3.0.0", + "xtend": "^4.0.1" + } + }, + "semver": { + "version": "5.7.1" + }, + "unified": { + "version": "9.2.0", + "requires": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^2.0.0", + "trough": "^1.0.0", + "vfile": "^4.0.0" + } + }, + "unist-util-is": { + "version": "4.1.0" + }, + "unist-util-remove-position": { + "version": "2.0.1", + "requires": { + "unist-util-visit": "^2.0.0" + } + }, + "unist-util-stringify-position": { + "version": "2.0.3", + "requires": { + "@types/unist": "^2.0.2" + } + }, + "unist-util-visit": { + "version": "2.0.3", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + } + }, + "unist-util-visit-parents": { + "version": "3.1.1", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + } + }, + "vfile": { + "version": "4.2.1", + "requires": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + } + }, + "vfile-location": { + "version": "3.2.0" + }, + "vfile-message": { + "version": "2.0.4", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + } + } + } + }, + "remark-parse": { + "version": "5.0.0", + "requires": { + "collapse-white-space": "^1.0.2", + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-whitespace-character": "^1.0.0", + "is-word-character": "^1.0.0", + "markdown-escapes": "^1.0.0", + "parse-entities": "^1.1.0", + "repeat-string": "^1.5.4", + "state-toggle": "^1.0.0", + "trim": "0.0.1", + "trim-trailing-lines": "^1.0.0", + "unherit": "^1.0.4", + "unist-util-remove-position": "^1.0.0", + "vfile-location": "^2.0.0", + "xtend": "^4.0.1" + } + }, + "remark-squeeze-paragraphs": { + "version": "4.0.0", + "requires": { + "mdast-squeeze-paragraphs": "^4.0.0" + } + }, + "remove-accents": { + "version": "0.4.2" + }, + "remove-trailing-separator": { + "version": "1.1.0" + }, + "renderkid": { + "version": "2.0.7", + "requires": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^3.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1" + }, + "strip-ansi": { + "version": "3.0.1", + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "repeat-element": { + "version": "1.1.4" + }, + "repeat-string": { + "version": "1.6.1" + }, + "repeating": { + "version": "2.0.1", + "requires": { + "is-finite": "^1.0.0" + } + }, + "replace-ext": { + "version": "1.0.0" + }, + "request": { + "version": "2.88.2", + "requires": { + "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" + }, + "dependencies": { + "form-data": { + "version": "2.3.3", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "qs": { + "version": "6.5.2" + }, + "tough-cookie": { + "version": "2.5.0", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "uuid": { + "version": "3.4.0" + } + } + }, + "request-promise-core": { + "version": "1.1.4", + "requires": { + "lodash": "^4.17.19" + } + }, + "request-promise-native": { + "version": "1.0.9", + "requires": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "dependencies": { + "tough-cookie": { + "version": "2.5.0", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + } + } + }, + "require-directory": { + "version": "2.1.1" + }, + "require-from-string": { + "version": "2.0.2" + }, + "require-main-filename": { + "version": "2.0.0" + }, + "require-package-name": { + "version": "2.0.1" + }, + "requireindex": { + "version": "1.2.0" + }, + "requires-port": { + "version": "1.0.0" + }, + "reselect": { + "version": "4.0.0" + }, + "reserved-words": { + "version": "0.1.2" + }, + "resize-observer-polyfill": { + "version": "1.5.1" + }, + "resolve": { + "version": "1.20.0", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "requires": { + "resolve-from": "^5.0.0" + } + }, + "resolve-dir": { + "version": "1.0.1", + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "dependencies": { + "global-modules": { + "version": "1.0.0", + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + }, + "global-prefix": { + "version": "1.0.2", + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + } + }, + "which": { + "version": "1.3.1", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "resolve-from": { + "version": "5.0.0" + }, + "resolve-global": { + "version": "1.0.0", + "requires": { + "global-dirs": "^0.1.1" + } + }, + "resolve-pkg": { + "version": "2.0.0", + "requires": { + "resolve-from": "^5.0.0" + } + }, + "resolve-protobuf-schema": { + "version": "2.1.0", + "requires": { + "protocol-buffers-schema": "^3.3.1" + } + }, + "resolve-url": { + "version": "0.2.1" + }, + "restore-cursor": { + "version": "2.0.0", + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "dependencies": { + "mimic-fn": { + "version": "1.2.0" + }, + "onetime": { + "version": "2.0.1", + "requires": { + "mimic-fn": "^1.0.0" + } + } + } + }, + "ret": { + "version": "0.1.15" + }, + "retry": { + "version": "0.13.1", + "dev": true + }, + "reusify": { + "version": "1.0.4" + }, + "right-pad": { + "version": "1.0.1" + }, + "rimraf": { + "version": "3.0.2", + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "rison": { + "version": "0.1.1" + }, + "rst-selector-parser": { + "version": "2.2.3", + "requires": { + "lodash.flattendeep": "^4.4.0", + "nearley": "^2.7.10" + } + }, + "rsvp": { + "version": "4.8.5" + }, + "run-async": { + "version": "2.4.1" + }, + "run-parallel": { + "version": "1.2.0", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "run-queue": { + "version": "1.0.3", + "requires": { + "aproba": "^1.1.1" + }, + "dependencies": { + "aproba": { + "version": "1.2.0" + } + } + }, + "rw": { + "version": "1.3.3" + }, + "rxjs": { + "version": "6.6.7", + "requires": { + "tslib": "^1.9.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1" + } + } + }, + "safe-buffer": { + "version": "5.1.2" + }, + "safe-regex": { + "version": "2.1.1", + "requires": { + "regexp-tree": "~0.1.1" + } + }, + "safer-buffer": { + "version": "2.1.2" + }, + "sane": { + "version": "4.1.0", + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "braces": { + "version": "2.3.2", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "cross-spawn": { + "version": "6.0.5", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "requires": { + "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" + } + }, + "fill-range": { + "version": "4.0.0", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "get-stream": { + "version": "4.1.0", + "requires": { + "pump": "^3.0.0" + } + }, + "is-extendable": { + "version": "0.1.1" + }, + "is-number": { + "version": "3.0.0", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-stream": { + "version": "1.1.0" + }, + "micromatch": { + "version": "3.1.10", + "requires": { + "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" + } + }, + "normalize-path": { + "version": "2.1.1", + "requires": { + "remove-trailing-separator": "^1.0.1" + } + }, + "npm-run-path": { + "version": "2.0.2", + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1" + }, + "semver": { + "version": "5.7.1" + }, + "shebang-command": { + "version": "1.2.0", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0" + }, + "to-regex-range": { + "version": "2.1.1", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "which": { + "version": "1.3.1", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "sax": { + "version": "1.2.4" + }, + "saxes": { + "version": "5.0.1", + "requires": { + "xmlchars": "^2.2.0" + } + }, + "scheduler": { + "version": "0.19.1", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "schema-utils": { + "version": "2.7.1", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "scoped-regex": { + "version": "1.0.0", + "devOptional": true + }, + "scroll-into-view-if-needed": { + "version": "2.2.28", + "requires": { + "compute-scroll-into-view": "^1.0.17" + } + }, + "seedrandom": { + "version": "3.0.5" + }, + "select-hose": { + "version": "2.0.0" + }, + "selfsigned": { + "version": "1.10.11", + "requires": { + "node-forge": "^0.10.0" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "semver-compare": { + "version": "1.0.0" + }, + "semver-regex": { + "version": "3.1.3" + }, + "send": { + "version": "0.17.1", + "requires": { + "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" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0" + } + } + }, + "ms": { + "version": "2.1.1" + } + } + }, + "sentence-case": { + "version": "2.1.1", + "requires": { + "no-case": "^2.2.0", + "upper-case-first": "^1.1.2" + } + }, + "serialize-javascript": { + "version": "4.0.0", + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-favicon": { + "version": "2.5.0", + "requires": { + "etag": "~1.8.1", + "fresh": "0.5.2", + "ms": "2.1.1", + "parseurl": "~1.3.2", + "safe-buffer": "5.1.1" + }, + "dependencies": { + "ms": { + "version": "2.1.1" + }, + "safe-buffer": { + "version": "5.1.1" + } + } + }, + "serve-index": { + "version": "1.9.1", + "requires": { + "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" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "http-errors": { + "version": "1.6.3", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3" + }, + "ms": { + "version": "2.0.0" + }, + "setprototypeof": { + "version": "1.1.0" + } + } + }, + "serve-static": { + "version": "1.14.1", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "set-blocking": { + "version": "2.0.0" + }, + "set-getter": { + "version": "0.1.1", + "devOptional": true, + "requires": { + "to-object-path": "^0.3.0" + } + }, + "set-value": { + "version": "2.0.1", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-extendable": { + "version": "0.1.1" + }, + "is-plain-object": { + "version": "2.0.4", + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "setimmediate": { + "version": "1.0.5" + }, + "setprototypeof": { + "version": "1.1.1" + }, + "sha.js": { + "version": "2.4.11", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shallow-clone": { + "version": "3.0.1", + "requires": { + "kind-of": "^6.0.2" + } + }, + "shallow-copy": { + "version": "0.0.1" + }, + "shallowequal": { + "version": "1.1.0" + }, + "shapefile": { + "version": "0.3.1", + "requires": { + "d3-queue": "1", + "iconv-lite": "0.2", + "optimist": "0.3" + }, + "dependencies": { + "d3-queue": { + "version": "1.2.3" + }, + "iconv-lite": { + "version": "0.2.11" + } + } + }, + "sharkdown": { + "version": "0.1.1", + "requires": { + "cardinal": "~0.4.2", + "minimist": "0.0.5", + "split": "~0.2.10" + }, + "dependencies": { + "minimist": { + "version": "0.0.5" + }, + "split": { + "version": "0.2.10", + "requires": { + "through": "2" + } + } + } + }, + "shebang-command": { + "version": "2.0.0", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0" + }, + "shell-quote": { + "version": "1.7.2" + }, + "shelljs": { + "version": "0.7.6", + "requires": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + } + }, + "shellwords": { + "version": "0.1.1" + }, + "shortid": { + "version": "2.2.16", + "requires": { + "nanoid": "^2.1.0" + } + }, + "side-channel": { + "version": "1.0.4", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "sigmund": { + "version": "1.0.1" + }, + "signal-exit": { + "version": "3.0.5" + }, + "sinon": { + "version": "9.2.4", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.8.1", + "@sinonjs/fake-timers": "^6.0.1", + "@sinonjs/samsam": "^5.3.1", + "diff": "^4.0.2", + "nise": "^4.0.4", + "supports-color": "^7.1.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "sisteransi": { + "version": "1.0.5" + }, + "slash": { + "version": "2.0.0" + }, + "slice-ansi": { + "version": "3.0.0", + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + } + } + }, + "slide": { + "version": "1.1.6" + }, + "smart-buffer": { + "version": "4.2.0" + }, + "snake-case": { + "version": "2.1.0", + "requires": { + "no-case": "^2.2.0" + } + }, + "snapdragon": { + "version": "0.8.2", + "requires": { + "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" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "is-extendable": { + "version": "0.1.1" + }, + "kind-of": { + "version": "5.1.0" + }, + "ms": { + "version": "2.0.0" + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "sockjs": { + "version": "0.3.21", + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + }, + "dependencies": { + "uuid": { + "version": "3.4.0" + } + } + }, + "sockjs-client": { + "version": "1.5.2", + "requires": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.5.3" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "socks": { + "version": "2.3.3", + "requires": { + "ip": "1.1.5", + "smart-buffer": "^4.1.0" + } + }, + "socks-proxy-agent": { + "version": "4.0.2", + "requires": { + "agent-base": "~4.2.1", + "socks": "~2.3.2" + }, + "dependencies": { + "agent-base": { + "version": "4.2.1", + "requires": { + "es6-promisify": "^5.0.0" + } + } + } + }, + "sort-keys": { + "version": "2.0.0", + "requires": { + "is-plain-obj": "^1.0.0" + } + }, + "sortablejs": { + "version": "1.14.0" + }, + "source-list-map": { + "version": "2.0.1" + }, + "source-map": { + "version": "0.5.7" + }, + "source-map-resolve": { + "version": "0.5.3", + "requires": { + "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": { + "version": "0.5.20", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1" + } + } + }, + "source-map-url": { + "version": "0.4.1" + }, + "space-separated-tokens": { + "version": "1.1.5" + }, + "spdx-correct": { + "version": "3.1.1", + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0" + }, + "spdx-expression-parse": { + "version": "3.0.1", + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.10" + }, + "spdy": { + "version": "4.0.2", + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "requires": { + "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" + } + }, + "specificity": { + "version": "0.4.1" + }, + "speedometer": { + "version": "1.0.0", + "dev": true + }, + "split": { + "version": "1.0.1", + "requires": { + "through": "2" + } + }, + "split-on-first": { + "version": "1.1.0" + }, + "split-string": { + "version": "3.1.0", + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "split2": { + "version": "2.2.0", + "requires": { + "through2": "^2.0.2" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "through2": { + "version": "2.0.5", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + } + } + }, + "sprintf-js": { + "version": "1.0.3" + }, + "sshpk": { + "version": "1.16.1", + "requires": { + "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": { + "version": "6.0.2", + "requires": { + "figgy-pudding": "^3.5.1" + } + }, + "stable": { + "version": "0.1.8" + }, + "stack-utils": { + "version": "2.0.5", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0" + } + } + }, + "stackframe": { + "version": "1.2.0" + }, + "state-toggle": { + "version": "1.0.3" + }, + "static-eval": { + "version": "2.1.0", + "requires": { + "escodegen": "^1.11.1" + }, + "dependencies": { + "escodegen": { + "version": "1.14.3", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, + "estraverse": { + "version": "4.3.0" + }, + "levn": { + "version": "0.3.0", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "optionator": { + "version": "0.8.3", + "requires": { + "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" + } + }, + "prelude-ls": { + "version": "1.1.2" + }, + "source-map": { + "version": "0.6.1", + "optional": true + }, + "type-check": { + "version": "0.3.2", + "requires": { + "prelude-ls": "~1.1.2" + } + } + } + }, + "static-extend": { + "version": "0.1.2", + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0" + } + } + }, + "static-module": { + "version": "2.2.5", + "requires": { + "concat-stream": "~1.6.0", + "convert-source-map": "^1.5.1", + "duplexer2": "~0.1.4", + "escodegen": "~1.9.0", + "falafel": "^2.1.0", + "has": "^1.0.1", + "magic-string": "^0.22.4", + "merge-source-map": "1.0.4", + "object-inspect": "~1.4.0", + "quote-stream": "~1.0.2", + "readable-stream": "~2.3.3", + "shallow-copy": "~0.0.1", + "static-eval": "^2.0.0", + "through2": "~2.0.3" + }, + "dependencies": { + "concat-stream": { + "version": "1.6.2", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "escodegen": { + "version": "1.9.1", + "requires": { + "esprima": "^3.1.3", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, + "esprima": { + "version": "3.1.3" + }, + "estraverse": { + "version": "4.3.0" + }, + "isarray": { + "version": "1.0.0" + }, + "levn": { + "version": "0.3.0", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "object-inspect": { + "version": "1.4.1" + }, + "optionator": { + "version": "0.8.3", + "requires": { + "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" + } + }, + "prelude-ls": { + "version": "1.1.2" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "source-map": { + "version": "0.6.1", + "optional": true + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "through2": { + "version": "2.0.5", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "type-check": { + "version": "0.3.2", + "requires": { + "prelude-ls": "~1.1.2" + } + } + } + }, + "statuses": { + "version": "1.5.0" + }, + "stealthy-require": { + "version": "1.1.1" + }, + "store2": { + "version": "2.12.0" + }, + "storybook-addon-jsx": { + "version": "7.3.14", + "requires": { + "copy-to-clipboard": "^3.0.8", + "js-beautify": "^1.8.8", + "react-element-to-jsx-string": "^14.3.1", + "storybook-pretty-props": "^1.0.3" + }, + "dependencies": { + "react-element-to-jsx-string": { + "version": "14.3.4", + "requires": { + "@base2/pretty-print-object": "1.0.1", + "is-plain-object": "5.0.0", + "react-is": "17.0.2" + } + }, + "react-is": { + "version": "17.0.2" + }, + "storybook-pretty-props": { + "version": "1.2.1", + "requires": {} + } + } + }, + "stream-browserify": { + "version": "2.0.2", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "stream-each": { + "version": "1.2.3", + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "stream-http": { + "version": "2.8.3", + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "stream-shift": { + "version": "1.0.1" + }, + "strict-uri-encode": { + "version": "2.0.0" + }, + "string_decoder": { + "version": "1.3.0", + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1" + } + } + }, + "string-argv": { + "version": "0.3.1" + }, + "string-convert": { + "version": "0.2.1" + }, + "string-hash": { + "version": "1.1.3" + }, + "string-length": { + "version": "4.0.2", + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + } + }, + "string-template": { + "version": "0.2.1" + }, + "string-width": { + "version": "4.2.3", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0" + } + } + }, + "string.prototype.matchall": { + "version": "4.0.6", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.3.1", + "side-channel": "^1.0.4" + } + }, + "string.prototype.padend": { + "version": "3.1.3", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "string.prototype.padstart": { + "version": "3.1.3", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "string.prototype.trim": { + "version": "1.2.5", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "string.prototype.trimend": { + "version": "1.0.4", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "stringify-object": { + "version": "3.3.0", + "requires": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + } + }, + "strip-ansi": { + "version": "6.0.1", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "3.0.0" + }, + "strip-bom-buf": { + "version": "1.0.0", + "devOptional": true, + "requires": { + "is-utf8": "^0.2.1" + } + }, + "strip-bom-stream": { + "version": "2.0.0", + "devOptional": true, + "requires": { + "first-chunk-stream": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "dependencies": { + "strip-bom": { + "version": "2.0.0", + "devOptional": true, + "requires": { + "is-utf8": "^0.2.0" + } + } + } + }, + "strip-eof": { + "version": "1.0.0" + }, + "strip-final-newline": { + "version": "2.0.0" + }, + "strip-indent": { + "version": "3.0.0", + "requires": { + "min-indent": "^1.0.0" + } + }, + "strip-json-comments": { + "version": "2.0.1" + }, + "strip-outer": { + "version": "1.0.1", + "requires": { + "escape-string-regexp": "^1.0.2" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5" + } + } + }, + "strong-log-transformer": { + "version": "2.1.0", + "requires": { + "duplexer": "^0.1.1", + "minimist": "^1.2.0", + "through": "^2.3.4" + } + }, + "style-loader": { + "version": "1.3.0", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.0", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + } + } + }, + "style-to-object": { + "version": "0.3.0", + "requires": { + "inline-style-parser": "0.1.1" + } + }, + "stylis": { + "version": "4.0.10" + }, + "supercluster": { + "version": "4.1.1", + "requires": { + "kdbush": "^2.0.1" + } + }, + "supports-color": { + "version": "5.5.0", + "requires": { + "has-flag": "^3.0.0" + } + }, + "supports-hyperlinks": { + "version": "2.2.0", + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0" + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "swap-case": { + "version": "1.1.2", + "requires": { + "lower-case": "^1.1.1", + "upper-case": "^1.1.1" + } + }, + "symbol-observable": { + "version": "1.2.0" + }, + "symbol-tree": { + "version": "3.2.4" + }, + "symbol.prototype.description": { + "version": "1.0.5", + "requires": { + "call-bind": "^1.0.2", + "get-symbol-description": "^1.0.0", + "has-symbols": "^1.0.2", + "object.getownpropertydescriptors": "^2.1.2" + } + }, + "table": { + "version": "6.7.2", + "requires": { + "ajv": "^8.0.1", + "lodash.clonedeep": "^4.5.0", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "ajv": { + "version": "8.6.3", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "json-schema-traverse": { + "version": "1.0.0" + }, + "slice-ansi": { + "version": "4.0.0", + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + } + } + }, + "taketalk": { + "version": "1.0.0", + "requires": { + "get-stdin": "^4.0.1", + "minimist": "^1.1.0" + }, + "dependencies": { + "get-stdin": { + "version": "4.0.1" + } + } + }, + "tapable": { + "version": "0.1.10" + }, + "tar": { + "version": "4.4.19", + "requires": { + "chownr": "^1.1.4", + "fs-minipass": "^1.2.7", + "minipass": "^2.9.0", + "minizlib": "^1.3.3", + "mkdirp": "^0.5.5", + "safe-buffer": "^5.2.1", + "yallist": "^3.1.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1" + }, + "yallist": { + "version": "3.1.1" + } + } + }, + "telejson": { + "version": "5.3.3", + "requires": { + "@types/is-function": "^1.0.0", + "global": "^4.4.0", + "is-function": "^1.0.2", + "is-regex": "^1.1.2", + "is-symbol": "^1.0.3", + "isobject": "^4.0.0", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3" + }, + "dependencies": { + "isobject": { + "version": "4.0.0" + } + } + }, + "temp-dir": { + "version": "1.0.0" + }, + "temp-write": { + "version": "3.4.0", + "requires": { + "graceful-fs": "^4.1.2", + "is-stream": "^1.1.0", + "make-dir": "^1.0.0", + "pify": "^3.0.0", + "temp-dir": "^1.0.0", + "uuid": "^3.0.1" + }, + "dependencies": { + "is-stream": { + "version": "1.1.0" + }, + "make-dir": { + "version": "1.3.0", + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0" + }, + "uuid": { + "version": "3.4.0" + } + } + }, + "tempfile": { + "version": "3.0.0", + "requires": { + "temp-dir": "^2.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "temp-dir": { + "version": "2.0.0" + }, + "uuid": { + "version": "3.4.0" + } + } + }, + "term-size": { + "version": "2.2.1" + }, + "terminal-link": { + "version": "2.1.1", + "requires": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + } + }, + "terser": { + "version": "4.8.0", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "commander": { + "version": "2.20.3" + }, + "source-map": { + "version": "0.6.1" + } + } + }, + "terser-webpack-plugin": { + "version": "2.3.8", + "requires": { + "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": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.6.12", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "cacache": { + "version": "13.0.1", + "requires": { + "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" + } + }, + "find-cache-dir": { + "version": "3.3.2", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "fs-minipass": { + "version": "2.1.0", + "requires": { + "minipass": "^3.0.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "jest-worker": { + "version": "25.5.0", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + } + }, + "lru-cache": { + "version": "5.1.1", + "requires": { + "yallist": "^3.0.2" + }, + "dependencies": { + "yallist": { + "version": "3.1.1" + } + } + }, + "make-dir": { + "version": "3.1.0", + "requires": { + "semver": "^6.0.0" + } + }, + "minipass": { + "version": "3.1.5", + "requires": { + "yallist": "^4.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-map": { + "version": "3.0.0", + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "requires": { + "find-up": "^4.0.0" + } + }, + "rimraf": { + "version": "2.7.1", + "requires": { + "glob": "^7.1.3" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "source-map": { + "version": "0.6.1" + }, + "ssri": { + "version": "7.1.1", + "requires": { + "figgy-pudding": "^3.5.1", + "minipass": "^3.1.1" + } + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "test-exclude": { + "version": "6.0.0", + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "text-extensions": { + "version": "1.9.0" + }, + "text-table": { + "version": "0.2.0" + }, + "textextensions": { + "version": "2.6.0" + }, + "thenify": { + "version": "3.3.1", + "requires": { + "any-promise": "^1.0.0" + } + }, + "thenify-all": { + "version": "1.6.0", + "requires": { + "thenify": ">= 3.1.0 < 4" + } + }, + "throat": { + "version": "5.0.0" + }, + "throttle-debounce": { + "version": "3.0.1" + }, + "through": { + "version": "2.3.8" + }, + "through2": { + "version": "4.0.2", + "requires": { + "readable-stream": "3" + } + }, + "thunky": { + "version": "1.1.0" + }, + "timed-out": { + "version": "4.0.1" + }, + "timers-browserify": { + "version": "2.0.12", + "requires": { + "setimmediate": "^1.0.4" + } + }, + "tiny-invariant": { + "version": "1.1.0" + }, + "tinyqueue": { + "version": "2.0.3" + }, + "title-case": { + "version": "2.1.1", + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.0.3" + } + }, + "tmp": { + "version": "0.0.33", + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "tmp-promise": { + "version": "3.0.2", + "dev": true, + "requires": { + "tmp": "^0.2.0" + }, + "dependencies": { + "tmp": { + "version": "0.2.1", + "dev": true, + "requires": { + "rimraf": "^3.0.0" + } + } + } + }, + "tmpl": { + "version": "1.0.5" + }, + "to-arraybuffer": { + "version": "1.0.1" + }, + "to-fast-properties": { + "version": "2.0.0" + }, + "to-object-path": { + "version": "0.3.0", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "safe-regex": { + "version": "1.1.0", + "requires": { + "ret": "~0.1.10" + } + } + } + }, + "to-regex-range": { + "version": "5.0.1", + "requires": { + "is-number": "^7.0.0" + } + }, + "toggle-selection": { + "version": "1.0.6" + }, + "toidentifier": { + "version": "1.0.0" + }, + "topojson": { + "version": "1.6.27", + "requires": { + "d3": "3", + "d3-geo-projection": "0.2", + "d3-queue": "2", + "optimist": "0.3", + "rw": "1", + "shapefile": "0.3" + } + }, + "tough-cookie": { + "version": "4.0.0", + "requires": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.1.2" + }, + "dependencies": { + "universalify": { + "version": "0.1.2" + } + } + }, + "tr46": { + "version": "2.1.0", + "requires": { + "punycode": "^2.1.1" + } + }, + "traverse": { + "version": "0.6.6" + }, + "tree-kill": { + "version": "1.2.2", + "dev": true + }, + "trim": { + "version": "0.0.1" + }, + "trim-newlines": { + "version": "2.0.0" + }, + "trim-off-newlines": { + "version": "1.0.2" + }, + "trim-repeated": { + "version": "1.0.0", + "requires": { + "escape-string-regexp": "^1.0.2" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5" + } + } + }, + "trim-right": { + "version": "1.0.1" + }, + "trim-trailing-lines": { + "version": "1.1.4" + }, + "trough": { + "version": "1.0.5" + }, + "tryer": { + "version": "1.0.1" + }, + "ts-dedent": { + "version": "2.2.0" + }, + "ts-essentials": { + "version": "2.0.12" + }, + "ts-jest": { + "version": "26.5.6", + "requires": { + "bs-logger": "0.x", + "buffer-from": "1.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^26.1.0", + "json5": "2.x", + "lodash": "4.x", + "make-error": "1.x", + "mkdirp": "1.x", + "semver": "7.x", + "yargs-parser": "20.x" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4" + }, + "yargs-parser": { + "version": "20.2.9" + } + } + }, + "ts-loader": { + "version": "8.3.0", + "requires": { + "chalk": "^4.1.0", + "enhanced-resolve": "^4.0.0", + "loader-utils": "^2.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "enhanced-resolve": { + "version": "4.5.0", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + } + }, + "has-flag": { + "version": "4.0.0" + }, + "isarray": { + "version": "1.0.0" + }, + "loader-utils": { + "version": "2.0.0", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "memory-fs": { + "version": "0.5.0", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "supports-color": { + "version": "7.2.0", + "requires": { + "has-flag": "^4.0.0" + } + }, + "tapable": { + "version": "1.1.3" + } + } + }, + "ts-pnp": { + "version": "1.2.0" + }, + "tsconfig-paths": { + "version": "3.11.0", + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "tslib": { + "version": "2.3.1" + }, + "tsutils": { + "version": "3.21.0", + "requires": { + "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1" + } + } + }, + "tty-browserify": { + "version": "0.0.0" + }, + "tunnel": { + "version": "0.0.6", + "dev": true + }, + "tunnel-agent": { + "version": "0.6.0", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5" + }, + "type-check": { + "version": "0.4.0", + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-detect": { + "version": "4.0.8" + }, + "type-fest": { + "version": "0.21.3" + }, + "type-is": { + "version": "1.6.18", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typedarray": { + "version": "0.0.6" + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typescript": { + "version": "4.4.4" + }, + "ua-parser-js": { + "version": "0.7.28" + }, + "uglify-js": { + "version": "3.14.2", + "optional": true + }, + "uid-number": { + "version": "0.0.6" + }, + "umask": { + "version": "1.1.0" + }, + "unbox-primitive": { + "version": "1.0.1", + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + } + }, + "unfetch": { + "version": "4.2.0" + }, + "unherit": { + "version": "1.1.3", + "requires": { + "inherits": "^2.0.0", + "xtend": "^4.0.0" + } + }, + "unicode-canonical-property-names-ecmascript": { + "version": "2.0.0" + }, + "unicode-match-property-ecmascript": { + "version": "2.0.0", + "requires": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "2.0.0" + }, + "unicode-property-aliases-ecmascript": { + "version": "2.0.0" + }, + "unified": { + "version": "6.2.0", + "requires": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^1.1.0", + "trough": "^1.0.0", + "vfile": "^2.0.0", + "x-is-string": "^0.1.0" + } + }, + "union-value": { + "version": "1.0.1", + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "0.1.1" + } + } + }, + "unique-filename": { + "version": "1.1.1", + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "unist-builder": { + "version": "2.0.3" + }, + "unist-util-generated": { + "version": "1.1.6" + }, + "unist-util-is": { + "version": "3.0.0" + }, + "unist-util-position": { + "version": "3.1.0" + }, + "unist-util-remove": { + "version": "2.1.0", + "requires": { + "unist-util-is": "^4.0.0" + }, + "dependencies": { + "unist-util-is": { + "version": "4.1.0" + } + } + }, + "unist-util-remove-position": { + "version": "1.1.4", + "requires": { + "unist-util-visit": "^1.1.0" + } + }, + "unist-util-stringify-position": { + "version": "1.1.2" + }, + "unist-util-visit": { + "version": "1.4.1", + "requires": { + "unist-util-visit-parents": "^2.0.0" + }, + "dependencies": { + "unist-util-visit-parents": { + "version": "2.1.2", + "requires": { + "unist-util-is": "^3.0.0" + } + } + } + }, + "unist-util-visit-parents": { + "version": "1.1.2" + }, + "universal-user-agent": { + "version": "6.0.0" + }, + "universalify": { + "version": "2.0.0" + }, + "unpipe": { + "version": "1.0.0" + }, + "unquote": { + "version": "1.1.1" + }, + "unset-value": { + "version": "1.0.0", + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4" + }, + "isarray": { + "version": "1.0.0" + } + } + }, + "untildify": { + "version": "3.0.3", + "devOptional": true + }, + "unzip-response": { + "version": "2.0.1" + }, + "upath": { + "version": "1.2.0" + }, + "upper-case": { + "version": "1.1.3" + }, + "upper-case-first": { + "version": "1.1.2", + "requires": { + "upper-case": "^1.1.1" + } + }, + "uri-js": { + "version": "4.4.1", + "requires": { + "punycode": "^2.1.0" + } + }, + "urijs": { + "version": "1.19.7" + }, + "urix": { + "version": "0.1.0" + }, + "url": { + "version": "0.11.0", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2" + }, + "querystring": { + "version": "0.2.0" + } + } + }, + "url-loader": { + "version": "4.1.1", + "requires": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.0", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "url-parse": { + "version": "1.5.3", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "url-parse-lax": { + "version": "1.0.0", + "requires": { + "prepend-http": "^1.0.1" + } + }, + "use": { + "version": "3.1.1" + }, + "util": { + "version": "0.11.1", + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3" + } + } + }, + "util-deprecate": { + "version": "1.0.2" + }, + "util-promisify": { + "version": "2.1.0", + "requires": { + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "util.promisify": { + "version": "1.0.0", + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "utila": { + "version": "0.4.0" + }, + "utils-merge": { + "version": "1.0.1" + }, + "uuid": { + "version": "8.3.2", + "devOptional": true + }, + "uuid-browser": { + "version": "3.1.0" + }, + "v8-compile-cache": { + "version": "2.3.0" + }, + "v8-to-istanbul": { + "version": "7.1.2", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3" + } + } + }, + "v8flags": { + "version": "3.2.0", + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "validate-npm-package-license": { + "version": "3.0.4", + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "validate-npm-package-name": { + "version": "3.0.0", + "requires": { + "builtins": "^1.0.3" + } + }, + "vary": { + "version": "1.1.2" + }, + "verror": { + "version": "1.10.0", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "vfile": { + "version": "2.3.0", + "requires": { + "is-buffer": "^1.1.4", + "replace-ext": "1.0.0", + "unist-util-stringify-position": "^1.0.0", + "vfile-message": "^1.0.0" + } + }, + "vfile-location": { + "version": "2.0.6" + }, + "vfile-message": { + "version": "1.1.1", + "requires": { + "unist-util-stringify-position": "^1.1.1" + } + }, + "viewport-mercator-project": { + "version": "6.2.3", + "requires": { + "@babel/runtime": "^7.0.0", + "gl-matrix": "^3.0.0" + } + }, + "vinyl": { + "version": "2.2.1", + "requires": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "dependencies": { + "clone": { + "version": "2.1.2" + } + } + }, + "vinyl-file": { + "version": "3.0.0", + "devOptional": true, + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.3.0", + "strip-bom-buf": "^1.0.0", + "strip-bom-stream": "^2.0.0", + "vinyl": "^2.0.1" + } + }, + "vlq": { + "version": "0.2.3" + }, + "vm-browserify": { + "version": "1.1.2" + }, + "vt-pbf": { + "version": "3.1.3", + "requires": { + "@mapbox/point-geometry": "0.1.0", + "@mapbox/vector-tile": "^1.3.1", + "pbf": "^3.2.1" + } + }, + "vue-template-compiler": { + "version": "2.6.14", + "requires": { + "de-indent": "^1.0.2", + "he": "^1.1.0" + } + }, + "w3c-hr-time": { + "version": "1.0.2", + "requires": { + "browser-process-hrtime": "^1.0.0" + } + }, + "w3c-xmlserializer": { + "version": "2.0.0", + "requires": { + "xml-name-validator": "^3.0.0" + } + }, + "walker": { + "version": "1.0.7", + "requires": { + "makeerror": "1.0.x" + } + }, + "warning": { + "version": "4.0.3", + "requires": { + "loose-envify": "^1.0.0" + } + }, + "watchpack": { + "version": "1.7.5", + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + } + }, + "watchpack-chokidar2": { + "version": "2.0.1", + "optional": true, + "requires": { + "chokidar": "^2.1.8" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "optional": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "optional": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "optional": true + }, + "braces": { + "version": "2.3.2", + "optional": true, + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "chokidar": { + "version": "2.1.8", + "optional": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "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" + } + }, + "fill-range": { + "version": "4.0.0", + "optional": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fsevents": { + "version": "1.2.13", + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "optional": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "optional": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "is-binary-path": { + "version": "1.0.1", + "optional": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "optional": true + }, + "is-number": { + "version": "3.0.0", + "optional": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "optional": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "isarray": { + "version": "1.0.0", + "optional": true + }, + "micromatch": { + "version": "3.1.10", + "optional": true, + "requires": { + "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" + } + }, + "readable-stream": { + "version": "2.3.7", + "optional": true, + "requires": { + "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" + } + }, + "readdirp": { + "version": "2.2.1", + "optional": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "string_decoder": { + "version": "1.1.1", + "optional": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "optional": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "wbuf": { + "version": "1.7.3", + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "wcwidth": { + "version": "1.0.1", + "requires": { + "defaults": "^1.0.3" + } + }, + "web-namespaces": { + "version": "1.1.4" + }, + "webidl-conversions": { + "version": "6.1.0" + }, + "webpack": { + "version": "4.46.0", + "requires": { + "@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.5.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.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2" + }, + "braces": { + "version": "2.3.2", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "enhanced-resolve": { + "version": "4.5.0", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.5.0", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + } + } + }, + "eslint-scope": { + "version": "4.0.3", + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "estraverse": { + "version": "4.3.0" + }, + "fill-range": { + "version": "4.0.0", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-extendable": { + "version": "0.1.1" + }, + "is-number": { + "version": "3.0.0", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-wsl": { + "version": "1.1.0" + }, + "isarray": { + "version": "1.0.0" + }, + "memory-fs": { + "version": "0.4.1", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "micromatch": { + "version": "3.1.10", + "requires": { + "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" + } + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "schema-utils": { + "version": "1.0.0", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "source-map": { + "version": "0.6.1" + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "tapable": { + "version": "1.1.3" + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "webpack-bundle-analyzer": { + "version": "3.9.0", + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1", + "bfj": "^6.1.1", + "chalk": "^2.4.1", + "commander": "^2.18.0", + "ejs": "^2.6.1", + "express": "^4.16.3", + "filesize": "^3.6.1", + "gzip-size": "^5.0.0", + "lodash": "^4.17.19", + "mkdirp": "^0.5.1", + "opener": "^1.5.1", + "ws": "^6.0.0" + }, + "dependencies": { + "commander": { + "version": "2.20.3" + }, + "filesize": { + "version": "3.6.1" + }, + "ws": { + "version": "6.2.2", + "requires": { + "async-limiter": "~1.0.0" + } + } + } + }, + "webpack-cli": { + "version": "3.3.12", + "requires": { + "chalk": "^2.4.2", + "cross-spawn": "^6.0.5", + "enhanced-resolve": "^4.1.1", + "findup-sync": "^3.0.0", + "global-modules": "^2.0.0", + "import-local": "^2.0.0", + "interpret": "^1.4.0", + "loader-utils": "^1.4.0", + "supports-color": "^6.1.0", + "v8-compile-cache": "^2.1.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0" + }, + "cliui": { + "version": "5.0.0", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "cross-spawn": { + "version": "6.0.5", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "emoji-regex": { + "version": "7.0.3" + }, + "enhanced-resolve": { + "version": "4.5.0", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + } + }, + "find-up": { + "version": "3.0.0", + "requires": { + "locate-path": "^3.0.0" + } + }, + "import-local": { + "version": "2.0.0", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0" + }, + "isarray": { + "version": "1.0.0" + }, + "locate-path": { + "version": "3.0.0", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "memory-fs": { + "version": "0.5.0", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "p-limit": { + "version": "2.3.0", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0" + }, + "path-key": { + "version": "2.0.1" + }, + "pkg-dir": { + "version": "3.0.0", + "requires": { + "find-up": "^3.0.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "requires": { + "resolve-from": "^3.0.0" + } + }, + "resolve-from": { + "version": "3.0.0" + }, + "semver": { + "version": "5.7.1" + }, + "shebang-command": { + "version": "1.2.0", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0" + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "string-width": { + "version": "3.1.0", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "requires": { + "has-flag": "^3.0.0" + } + }, + "tapable": { + "version": "1.1.3" + }, + "which": { + "version": "1.3.1", + "requires": { + "isexe": "^2.0.0" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "yargs": { + "version": "13.3.2", + "requires": { + "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" + } + }, + "yargs-parser": { + "version": "13.1.2", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "webpack-dev-middleware": { + "version": "3.7.3", + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0" + }, + "memory-fs": { + "version": "0.4.1", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "mime": { + "version": "2.5.2" + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "webpack-dev-server": { + "version": "3.11.2", + "requires": { + "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.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.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" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1" + }, + "anymatch": { + "version": "2.0.0", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1" + }, + "braces": { + "version": "2.3.2", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "chokidar": { + "version": "2.1.8", + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "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" + } + }, + "cliui": { + "version": "5.0.0", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0" + }, + "strip-ansi": { + "version": "5.2.0", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "emoji-regex": { + "version": "7.0.3" + }, + "fill-range": { + "version": "4.0.0", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "find-up": { + "version": "3.0.0", + "requires": { + "locate-path": "^3.0.0" + } + }, + "fsevents": { + "version": "1.2.13", + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "import-local": { + "version": "2.0.0", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "is-binary-path": { + "version": "1.0.1", + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-extendable": { + "version": "0.1.1" + }, + "is-fullwidth-code-point": { + "version": "2.0.0" + }, + "is-number": { + "version": "3.0.0", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "isarray": { + "version": "1.0.0" + }, + "locate-path": { + "version": "3.0.0", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "micromatch": { + "version": "3.1.10", + "requires": { + "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" + } + }, + "p-limit": { + "version": "2.3.0", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0" + }, + "pkg-dir": { + "version": "3.0.0", + "requires": { + "find-up": "^3.0.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "requires": { + "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" + } + }, + "readdirp": { + "version": "2.2.1", + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "requires": { + "resolve-from": "^3.0.0" + } + }, + "resolve-from": { + "version": "3.0.0" + }, + "schema-utils": { + "version": "1.0.0", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "string_decoder": { + "version": "1.1.1", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "string-width": { + "version": "3.1.0", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0" + }, + "strip-ansi": { + "version": "5.2.0", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "6.1.0", + "requires": { + "has-flag": "^3.0.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0" + }, + "strip-ansi": { + "version": "5.2.0", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "ws": { + "version": "6.2.2", + "requires": { + "async-limiter": "~1.0.0" + } + }, + "yargs": { + "version": "13.3.2", + "requires": { + "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" + } + }, + "yargs-parser": { + "version": "13.1.2", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "webpack-filter-warnings-plugin": { + "version": "1.2.1", + "requires": {} + }, + "webpack-hot-middleware": { + "version": "2.25.1", + "requires": { + "ansi-html-community": "0.0.8", + "html-entities": "^2.1.0", + "querystring": "^0.2.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "html-entities": { + "version": "2.3.2" + } + } + }, + "webpack-log": { + "version": "2.0.0", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4" + }, + "uuid": { + "version": "3.4.0" + } + } + }, + "webpack-manifest-plugin": { + "version": "2.2.0", + "requires": { + "fs-extra": "^7.0.0", + "lodash": ">=3.5 <5", + "object.entries": "^1.1.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "fs-extra": { + "version": "7.0.1", + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "tapable": { + "version": "1.1.3" + }, + "universalify": { + "version": "0.1.2" + } + } + }, + "webpack-sources": { + "version": "1.4.3", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1" + } + } + }, + "webpack-virtual-modules": { + "version": "0.2.2", + "requires": { + "debug": "^3.0.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "websocket-driver": { + "version": "0.7.4", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4" + }, + "wgs84": { + "version": "0.0.0" + }, + "whatwg-encoding": { + "version": "1.0.5", + "requires": { + "iconv-lite": "0.4.24" + } + }, + "whatwg-fetch": { + "version": "3.6.2" + }, + "whatwg-mimetype": { + "version": "2.3.0" + }, + "whatwg-url": { + "version": "8.7.0", + "requires": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + } + }, + "which": { + "version": "2.0.2", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-module": { + "version": "2.0.0" + }, + "which-pm-runs": { + "version": "1.0.0" + }, + "wide-align": { + "version": "1.1.5", + "requires": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "widest-line": { + "version": "3.1.0", + "requires": { + "string-width": "^4.0.0" + } + }, + "wildcard": { + "version": "1.1.2", + "dev": true + }, + "windows-release": { + "version": "3.3.3", + "requires": { + "execa": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "requires": { + "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" + } + }, + "get-stream": { + "version": "4.1.0", + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "1.1.0" + }, + "npm-run-path": { + "version": "2.0.2", + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1" + }, + "semver": { + "version": "5.7.1" + }, + "shebang-command": { + "version": "1.2.0", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0" + }, + "which": { + "version": "1.3.1", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "with-open-file": { + "version": "0.1.7", + "requires": { + "p-finally": "^1.0.0", + "p-try": "^2.1.0", + "pify": "^4.0.1" + }, + "dependencies": { + "pify": { + "version": "4.0.1" + } + } + }, + "word-wrap": { + "version": "1.2.3" + }, + "wordwrap": { + "version": "1.0.0" + }, + "worker-farm": { + "version": "1.7.0", + "requires": { + "errno": "~0.1.7" + } + }, + "worker-rpc": { + "version": "0.1.1", + "requires": { + "microevent.ts": "~0.1.1" + } + }, + "wrap-ansi": { + "version": "6.2.0", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "requires": { + "color-convert": "^2.0.1" + } + } + } + }, + "wrappy": { + "version": "1.0.2" + }, + "write-file-atomic": { + "version": "3.0.3", + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "write-json-file": { + "version": "3.2.0", + "requires": { + "detect-indent": "^5.0.0", + "graceful-fs": "^4.1.15", + "make-dir": "^2.1.0", + "pify": "^4.0.1", + "sort-keys": "^2.0.0", + "write-file-atomic": "^2.4.2" + }, + "dependencies": { + "pify": { + "version": "4.0.1" + }, + "write-file-atomic": { + "version": "2.4.3", + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + } + } + }, + "write-pkg": { + "version": "3.2.0", + "requires": { + "sort-keys": "^2.0.0", + "write-json-file": "^2.2.0" + }, + "dependencies": { + "make-dir": { + "version": "1.3.0", + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0" + }, + "write-file-atomic": { + "version": "2.4.3", + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "write-json-file": { + "version": "2.3.0", + "requires": { + "detect-indent": "^5.0.0", + "graceful-fs": "^4.1.2", + "make-dir": "^1.0.0", + "pify": "^3.0.0", + "sort-keys": "^2.0.0", + "write-file-atomic": "^2.0.0" + } + } + } + }, + "ws": { + "version": "7.5.5", + "requires": {} + }, + "x-is-string": { + "version": "0.1.0" + }, + "xml-name-validator": { + "version": "3.0.0" + }, + "xmlbuilder": { + "version": "10.1.1", + "dev": true + }, + "xmlchars": { + "version": "2.2.0" + }, + "xss": { + "version": "1.0.10", + "requires": { + "commander": "^2.20.3", + "cssfilter": "0.0.10" + }, + "dependencies": { + "commander": { + "version": "2.20.3" + } + } + }, + "xtend": { + "version": "4.0.2" + }, + "y18n": { + "version": "4.0.3" + }, + "yallist": { + "version": "4.0.0" + }, + "yaml": { + "version": "1.10.2" + }, + "yargs": { + "version": "15.4.1", + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.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": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + }, + "yargs-parser": { + "version": "18.1.3", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "yarn-or-npm": { + "version": "3.0.1", + "dev": true, + "requires": { + "cross-spawn": "^6.0.5", + "pkg-dir": "^4.2.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "path-key": { + "version": "2.0.1", + "dev": true + }, + "pkg-dir": { + "version": "4.2.0", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "semver": { + "version": "5.7.1", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "dev": true + }, + "which": { + "version": "1.3.1", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "yeoman-assert": { + "version": "3.1.1", + "dev": true + }, + "yeoman-environment": { + "version": "2.10.3", + "devOptional": true, + "requires": { + "chalk": "^2.4.1", + "debug": "^3.1.0", + "diff": "^3.5.0", + "escape-string-regexp": "^1.0.2", + "execa": "^4.0.0", + "globby": "^8.0.1", + "grouped-queue": "^1.1.0", + "inquirer": "^7.1.0", + "is-scoped": "^1.0.0", + "lodash": "^4.17.10", + "log-symbols": "^2.2.0", + "mem-fs": "^1.1.0", + "mem-fs-editor": "^6.0.0", + "npm-api": "^1.0.0", + "semver": "^7.1.3", + "strip-ansi": "^4.0.0", + "text-table": "^0.2.0", + "untildify": "^3.0.3", + "yeoman-generator": "^4.8.2" + }, + "dependencies": { + "@nodelib/fs.stat": { + "version": "1.1.3", + "devOptional": true + }, + "ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "array-differ": { + "version": "3.0.0", + "devOptional": true + }, + "array-union": { + "version": "1.0.2", + "devOptional": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "braces": { + "version": "2.3.2", + "devOptional": true, + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "devOptional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "cli-cursor": { + "version": "3.1.0", + "devOptional": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-width": { + "version": "3.0.0", + "devOptional": true + }, + "debug": { + "version": "3.2.7", + "devOptional": true, + "requires": { + "ms": "^2.1.1" + } + }, + "diff": { + "version": "3.5.0", + "devOptional": true + }, + "dir-glob": { + "version": "2.0.0", + "devOptional": true, + "requires": { + "arrify": "^1.0.1", + "path-type": "^3.0.0" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "devOptional": true + }, + "fast-glob": { + "version": "2.2.7", + "devOptional": true, + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + } + }, + "fill-range": { + "version": "4.0.0", + "devOptional": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "devOptional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "glob-parent": { + "version": "3.1.0", + "devOptional": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "devOptional": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "globby": { + "version": "8.0.2", + "devOptional": true, + "requires": { + "array-union": "^1.0.1", + "dir-glob": "2.0.0", + "fast-glob": "^2.0.2", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "devOptional": true + }, + "ignore": { + "version": "3.3.10", + "devOptional": true + }, + "inquirer": { + "version": "7.3.3", + "devOptional": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "dependencies": { + "chalk": { + "version": "4.1.2", + "devOptional": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "strip-ansi": { + "version": "6.0.1", + "devOptional": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "is-extendable": { + "version": "0.1.1", + "devOptional": true + }, + "is-number": { + "version": "3.0.0", + "devOptional": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "devOptional": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "log-symbols": { + "version": "2.2.0", + "devOptional": true, + "requires": { + "chalk": "^2.0.1" + } + }, + "mem-fs-editor": { + "version": "6.0.0", + "devOptional": true, + "requires": { + "commondir": "^1.0.1", + "deep-extend": "^0.6.0", + "ejs": "^2.6.1", + "glob": "^7.1.4", + "globby": "^9.2.0", + "isbinaryfile": "^4.0.0", + "mkdirp": "^0.5.0", + "multimatch": "^4.0.0", + "rimraf": "^2.6.3", + "through2": "^3.0.1", + "vinyl": "^2.2.0" + }, + "dependencies": { + "dir-glob": { + "version": "2.2.2", + "devOptional": true, + "requires": { + "path-type": "^3.0.0" + } + }, + "globby": { + "version": "9.2.0", + "devOptional": true, + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + } + }, + "ignore": { + "version": "4.0.6", + "devOptional": true + }, + "pify": { + "version": "4.0.1", + "devOptional": true + }, + "slash": { + "version": "2.0.0", + "devOptional": true + } + } + }, + "micromatch": { + "version": "3.1.10", + "devOptional": true, + "requires": { + "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" + } + }, + "multimatch": { + "version": "4.0.0", + "devOptional": true, + "requires": { + "@types/minimatch": "^3.0.3", + "array-differ": "^3.0.0", + "array-union": "^2.1.0", + "arrify": "^2.0.1", + "minimatch": "^3.0.4" + }, + "dependencies": { + "array-union": { + "version": "2.1.0", + "devOptional": true + }, + "arrify": { + "version": "2.0.1", + "devOptional": true + } + } + }, + "mute-stream": { + "version": "0.0.8", + "devOptional": true + }, + "path-type": { + "version": "3.0.0", + "devOptional": true, + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "devOptional": true + }, + "restore-cursor": { + "version": "3.1.0", + "devOptional": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "rimraf": { + "version": "2.7.1", + "devOptional": true, + "requires": { + "glob": "^7.1.3" + } + }, + "slash": { + "version": "1.0.0", + "devOptional": true + }, + "strip-ansi": { + "version": "4.0.0", + "devOptional": true, + "requires": { + "ansi-regex": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "devOptional": true + } + } + }, + "supports-color": { + "version": "7.2.0", + "devOptional": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "through2": { + "version": "3.0.2", + "devOptional": true, + "requires": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" + } + }, + "to-regex-range": { + "version": "2.1.1", + "devOptional": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "yeoman-generator": { + "version": "4.13.0", + "requires": { + "async": "^2.6.2", + "chalk": "^2.4.2", + "cli-table": "^0.3.1", + "cross-spawn": "^6.0.5", + "dargs": "^6.1.0", + "dateformat": "^3.0.3", + "debug": "^4.1.1", + "diff": "^4.0.1", + "error": "^7.0.2", + "find-up": "^3.0.0", + "github-username": "^3.0.0", + "grouped-queue": "^1.1.0", + "istextorbinary": "^2.5.1", + "lodash": "^4.17.11", + "make-dir": "^3.0.0", + "mem-fs-editor": "^7.0.1", + "minimist": "^1.2.5", + "pretty-bytes": "^5.2.0", + "read-chunk": "^3.2.0", + "read-pkg-up": "^5.0.0", + "rimraf": "^2.6.3", + "run-async": "^2.0.0", + "semver": "^7.2.1", + "shelljs": "^0.8.4", + "text-table": "^0.2.0", + "through2": "^3.0.1", + "yeoman-environment": "^2.9.5" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "semver": { + "version": "5.7.1" + } + } + }, + "dargs": { + "version": "6.1.0" + }, + "find-up": { + "version": "3.0.0", + "requires": { + "locate-path": "^3.0.0" + } + }, + "hosted-git-info": { + "version": "2.8.9" + }, + "locate-path": { + "version": "3.0.0", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0" + } + } + }, + "minimist": { + "version": "1.2.5" + }, + "normalize-package-data": { + "version": "2.5.0", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1" + } + } + }, + "p-limit": { + "version": "2.3.0", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "requires": { + "p-limit": "^2.0.0" + } + }, + "parse-json": { + "version": "5.2.0", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "path-exists": { + "version": "3.0.0" + }, + "path-key": { + "version": "2.0.1" + }, + "read-pkg": { + "version": "5.2.0", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + } + }, + "read-pkg-up": { + "version": "5.0.0", + "requires": { + "find-up": "^3.0.0", + "read-pkg": "^5.0.0" + } + }, + "rimraf": { + "version": "2.7.1", + "requires": { + "glob": "^7.1.3" + } + }, + "shebang-command": { + "version": "1.2.0", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0" + }, + "shelljs": { + "version": "0.8.4", + "requires": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + } + }, + "through2": { + "version": "3.0.2", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" + } + }, + "type-fest": { + "version": "0.6.0" + }, + "which": { + "version": "1.3.1", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "yeoman-test": { + "version": "2.7.0", + "dev": true, + "requires": { + "inquirer": "^7.1.0", + "lodash": "^4.17.15", + "mem-fs": "^1.2.0", + "mem-fs-editor": "^7.0.1", + "mkdirp": "^1.0.3", + "rimraf": "^3.0.2", + "sinon": "^9.0.1", + "yeoman-environment": "^2.10.0", + "yeoman-generator": "^4.10.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "cli-cursor": { + "version": "3.1.0", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-width": { + "version": "3.0.0", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "dev": true + }, + "inquirer": { + "version": "7.3.3", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + } + }, + "mkdirp": { + "version": "1.0.4", + "dev": true + }, + "mute-stream": { + "version": "0.0.8", + "dev": true + }, + "restore-cursor": { + "version": "3.1.0", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "supports-color": { + "version": "7.2.0", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "yocto-queue": { + "version": "0.1.0" + }, + "yosay": { + "version": "2.0.2", + "requires": { + "ansi-regex": "^2.0.0", + "ansi-styles": "^3.0.0", + "chalk": "^1.0.0", + "cli-boxes": "^1.0.0", + "pad-component": "0.0.1", + "string-width": "^2.0.0", + "strip-ansi": "^3.0.0", + "taketalk": "^1.0.0", + "wrap-ansi": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1" + }, + "chalk": { + "version": "1.1.3", + "requires": { + "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" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1" + } + } + }, + "escape-string-regexp": { + "version": "1.0.5" + }, + "is-fullwidth-code-point": { + "version": "2.0.0" + }, + "string-width": { + "version": "2.1.1", + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0" + }, + "strip-ansi": { + "version": "4.0.0", + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0" + }, + "wrap-ansi": { + "version": "2.1.0", + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "dependencies": { + "is-fullwidth-code-point": { + "version": "1.0.0", + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + } + } + } + } + }, + "zrender": { + "version": "5.2.1", + "requires": { + "tslib": "2.3.0" + }, + "dependencies": { + "tslib": { + "version": "2.3.0" + } + } + }, + "zwitch": { + "version": "1.0.5" + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/package.json b/superset-frontend/temporary_superset_ui/superset-ui/package.json new file mode 100644 index 000000000000..b0ee733f9865 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/package.json @@ -0,0 +1,167 @@ +{ + "name": "@superset-ui/monorepo", + "version": "0.0.0", + "description": "Superset UI", + "private": true, + "scripts": { + "build": "node ./scripts/build.js", + "build:assets": "node ./scripts/copyAssets.js", + "babel": "npm run build --no-type", + "demo": "cd packages/superset-ui-demo && npm run demo:build", + "demo:clean": "cd packages/superset-ui-demo && npm run demo:clean", + "demo:build": "cd packages/superset-ui-demo && npm run demo:build", + "storybook": "cd packages/superset-ui-demo && npm run storybook", + "build-storybook": "cd packages/superset-ui-demo && npm run build-storybook", + "chromatic": "cd packages/superset-ui-demo && npm run chromatic", + "sb": "npm run storybook", + "clean": "npm run build --clean --no-babel --no-type", + "commit": "superset-commit", + "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 10", + "jest": "NODE_ENV=test jest --coverage --verbose", + "lint": "eslint --ignore-path=.eslintignore --ext .js,.jsx,.ts,.tsx .", + "lint:fix": "eslint --fix --ignore-path=.eslintignore --ext .js,.jsx,.ts,.tsx .", + "format": "npm run prettier", + "prettier": "prettier --write './{plugins,packages}/**/*{.js,.jsx,.ts,.tsx,.css,.less,.scss,.sass}'", + "test": "npm run jest", + "test:watch": "npm run lint:fix && npm run jest --watch", + "type": "npm run build --no-babel", + "prepare-release": "git checkout master && git pull --rebase origin master && npm run install && npm run test", + "prerelease": "npm run build", + "release": "npm run prepare-release && lerna publish && npm run postrelease", + "postrelease": "lerna run deploy-demo", + "list-changed-packages": "lerna changed", + "manual-release": "lerna publish --force-publish && npm run postrelease", + "clean-npm-lock": "rm -rf ./{packages,plugins}/*/package-lock.json", + "prune": "rm -rf ./{packages,plugins}/*/{lib,esm,tsconfig.tsbuildinfo}", + "ci:create-patch-version": "npm run clean-npm-lock && ./scripts/lernaVersion.sh patch", + "ci:create-minor-version": "npm run clean-npm-lock && ./scripts/lernaVersion.sh minor", + "ci:create-conventional-version": "npm run clean-npm-lock && ./scripts/lernaVersion.sh '--conventional-commits --create-release github'", + "ci:release-from-tag": "npm run clean-npm-lock && lerna publish from-package --yes", + "ci:release-conventional": "npm run clean-npm-lock && lerna publish --conventional-commits --create-release github --yes" + }, + "repository": "https://github.com/apache-superset/superset-ui.git", + "keywords": [ + "apache", + "superset", + "data", + "analytics", + "analysis", + "visualization", + "react", + "d3", + "data-ui", + "vx" + ], + "license": "Apache-2.0", + "dependencies": { + "@airbnb/config-babel": "^3.1.0", + "@airbnb/config-jest": "^3.0.2", + "@airbnb/config-webpack": "^3.3.1", + "@babel/cli": "^7.11.5", + "@babel/compat-data": "^7.9.6", + "@babel/core": "^7.8.7", + "@babel/eslint-parser": "^7.16.0", + "@babel/node": "^7.8.7", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-proposal-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.8.3", + "@babel/preset-env": "^7.8.7", + "@babel/preset-react": "^7.8.3", + "@babel/preset-typescript": "^7.12.7", + "@babel/register": "^7.8.6", + "@emotion/babel-preset-css-prop": "^11.2.0", + "@emotion/jest": "^11.3.0", + "@storybook/preset-typescript": "^3.0.0", + "@superset-ui/commit-config": "^0.0.9", + "@types/enzyme": "^3.10.3", + "@types/jest": "^26.0.4", + "@types/jsdom": "^12.2.4", + "@types/react": "^16.13.1", + "@types/react-test-renderer": "^16.9.2", + "@typescript-eslint/eslint-plugin": "^5.3.0", + "@typescript-eslint/parser": "^5.3.0", + "babel-eslint": "^10.1.0", + "babel-jest": "^26.6.3", + "babel-loader": "^8.2.2", + "babel-plugin-dynamic-import-node": "^2.3.3", + "babel-plugin-jsx-remove-data-test-id": "^2.1.3", + "babel-plugin-lodash": "^3.3.4", + "babel-plugin-typescript-to-proptypes": "^1.4.2", + "enzyme": "^3.11.0", + "enzyme-adapter-react-16": "^1.15.1", + "enzyme-to-json": "^3.4.3", + "eslint": "^7.32.0", + "eslint-config-airbnb": "^18.2.1", + "eslint-config-prettier": "^7.1.0", + "eslint-import-resolver-typescript": "^2.3.0", + "eslint-import-resolver-webpack": "^0.13.0", + "eslint-plugin-cypress": "^2.11.2", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-jest": "^24.1.3", + "eslint-plugin-jest-dom": "^3.6.5", + "eslint-plugin-jsx-a11y": "^6.4.1", + "eslint-plugin-no-only-tests": "^2.4.0", + "eslint-plugin-prettier": "^3.3.1", + "eslint-plugin-react": "^7.22.0", + "eslint-plugin-react-hooks": "^4.2.0", + "eslint-plugin-testing-library": "^3.10.1", + "eslint-plugin-unicorn": "^25.0.1", + "esprint": "^0.7.0", + "fast-glob": "^3.2.4", + "fs-extra": "^9.0.0", + "global-box": "^1.2.0", + "husky": "^4.2.5", + "identity-obj-proxy": "^3.0.0", + "jest": "^26.6.3", + "jest-environment-enzyme": "^7.1.2", + "jest-enzyme": "^7.1.2", + "jest-mock-console": "^1.0.0", + "jsdom": "^16.4.0", + "lerna": "^3.15.0", + "lint-staged": "^10.0.3", + "npm": "^7.5.4", + "prettier": "^2.4.1", + "react": "^16.13.1", + "react-dom": "^16.13.1", + "react-loadable": "^5.5.0", + "react-test-renderer": "^16.13.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "ts-jest": "^26.4.2", + "ts-loader": "^8.0.7", + "typescript": "^4.1.2", + "webpack": "^4.42.0", + "webpack-bundle-analyzer": "^3.6.1", + "webpack-cli": "^3.3.11", + "webpack-dev-server": "^3.11.0", + "webpack-manifest-plugin": "^2.2.0", + "webpack-sources": "^1.4.3", + "yargs": "^15.4.1" + }, + "engines": { + "node": "14.x || 16.x", + "npm": "^7.5.4" + }, + "workspaces": [ + "./packages/*", + "./plugins/*" + ], + "browserslist": [ + "last 3 chrome versions", + "last 3 firefox versions", + "last 3 safari versions", + "last 3 edge versions" + ], + "husky": { + "hooks": { + "pre-commit": "lint-staged", + "commit-msg": "./scripts/commitlint.js HUSKY_GIT_PARAMS" + } + }, + "lint-staged": { + "*.{js,jsx,ts,tsx,json,md}": [ + "prettier --write" + ] + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/.gitattributes b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/.gitattributes new file mode 100644 index 000000000000..176a458f94e0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/.gitattributes @@ -0,0 +1 @@ +* text=auto diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/CHANGELOG.md new file mode 100644 index 000000000000..1515fc80f837 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/CHANGELOG.md @@ -0,0 +1,27 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/generator-superset diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/README.md b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/README.md new file mode 100644 index 000000000000..0f6ad54ef504 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/README.md @@ -0,0 +1,52 @@ + + +# generator-superset + +[![Version](https://img.shields.io/npm/v/@superset-ui/generator-superset.svg?style=flat)](https://www.npmjs.com/package/@superset-ui/generator-superset) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui.svg?path=packages%2Fgenerator-superset&style=flat-square)](https://david-dm.org/apache-superset/superset-ui?path=packages/generator-superset) + +> Scaffolder for Superset + +## Installation + +First, install [Yeoman](http://yeoman.io) and `generator-superset` using +[npm](https://www.npmjs.com/) (we assume you have pre-installed [node.js](https://nodejs.org/)). + +```bash +npm install -g yo +npm install -g @superset-ui/generator-superset +``` + +## Usage + +Generate a new package or visualization plugin in `@superset-ui` + +```bash +cd superset-ui/packages +mkdir superset-ui-new-package +cd superset-ui-new-package +yo @superset-ui/superset +``` + +## License + +Apache-2.0 + +[learn more about Yeoman](http://yeoman.io/). diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/app/index.js b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/app/index.js new file mode 100644 index 000000000000..1bf2f21b4671 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/app/index.js @@ -0,0 +1,62 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys */ + +const Generator = require('yeoman-generator'); +const chalk = require('chalk'); +const yosay = require('yosay'); + +module.exports = class extends Generator { + async prompting() { + // Have Yeoman greet the user. + this.log( + yosay(`Welcome to the rad ${chalk.red('generator-superset')} generator!`), + ); + + this.option('skipInstall'); + + this.answers = await this.prompt([ + { + type: 'list', + name: 'subgenerator', + message: 'What do you want to do?', + choices: [ + { + name: 'Create superset-ui core package', + value: 'package', + }, + { + name: 'Create superset-ui chart plugin package', + value: 'plugin-chart', + }, + ], + }, + ]); + } + + configuring() { + // Redirect the default 'app' generator + // to 'package' subgenerator + // until there are multiple subgenerators + // then this can be changed into a menu to select + // subgenerator. + this.composeWith(require.resolve(`../${this.answers.subgenerator}`)); + } +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/package/index.js b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/package/index.js new file mode 100644 index 000000000000..314d41d0508a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/package/index.js @@ -0,0 +1,78 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys */ + +const Generator = require('yeoman-generator'); +const _ = require('lodash'); + +module.exports = class extends Generator { + async prompting() { + this.option('skipInstall'); + + this.answers = await this.prompt([ + { + type: 'input', + name: 'name', + message: 'Package name:', + default: _.kebabCase(this.appname.replace('superset ui', '').trim()), // Default to current folder name + }, + { + type: 'list', + name: 'language', + message: 'Choose language', + default: 'typescript', + choices: [ + { + name: 'typescript', + value: 'typescript', + short: 't', + }, + { + name: 'javascript', + value: 'javascript', + short: 'j', + }, + ], + }, + ]); + } + + writing() { + this.fs.copyTpl( + this.templatePath('_package.json'), + this.destinationPath('package.json'), + this.answers, + ); + this.fs.copyTpl( + this.templatePath('README.md'), + this.destinationPath('README.md'), + this.answers, + ); + const ext = this.answers.language === 'typescript' ? 'ts' : 'js'; + this.fs.copy( + this.templatePath('src/index.txt'), + this.destinationPath(`src/index.${ext}`), + ); + this.fs.copy( + this.templatePath('test/index.txt'), + this.destinationPath(`test/index.test.${ext}`), + ); + } +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/package/templates/README.md b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/package/templates/README.md new file mode 100644 index 000000000000..6d27caa51cda --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/package/templates/README.md @@ -0,0 +1,46 @@ + + +## @superset-ui/<%= name %> + +[![Version](https://img.shields.io/npm/v/@superset-ui/<%= name +%>.svg?style=flat)](https://img.shields.io/npm/v/@superset-ui/<%= name %>.svg?style=flat) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui.svg?path=packages%2Fsuperset-ui-<%= +name +%>&style=flat-square)](https://david-dm.org/apache-superset/superset-ui?path=packages/superset-ui-<%= +name %>) + +Description + +#### Example usage + +```js +import { xxx } from '@superset-ui/<%= name %>'; +``` + +#### API + +`fn(args)` + +- Do something + +### Development + +`@data-ui/build-config` is used to manage the build configuration for this package including babel +builds, jest testing, eslint, and prettier. diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/package/templates/_package.json b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/package/templates/_package.json new file mode 100644 index 000000000000..5948f303d400 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/package/templates/_package.json @@ -0,0 +1,23 @@ +{ + "name": "@superset-ui/<%= name %>", + "version": "0.0.0", + "description": "Superset UI <%= name %>", + "sideEffects": false, + "main": "lib/index.js", + "module": "esm/index.js", + "files": ["esm", "lib"], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": ["superset"], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/package/templates/src/index.txt b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/package/templates/src/index.txt new file mode 100644 index 000000000000..f3d181a85949 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/package/templates/src/index.txt @@ -0,0 +1,2 @@ +const x = 1; +export default x; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/package/templates/test/index.txt b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/package/templates/test/index.txt new file mode 100644 index 000000000000..457263a03f06 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/package/templates/test/index.txt @@ -0,0 +1,5 @@ +describe('My Test', () => { + it('tests something', () => { + expect(1).toEqual(1); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/index.js b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/index.js new file mode 100644 index 000000000000..58f94a84829a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/index.js @@ -0,0 +1,127 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys */ + +const Generator = require('yeoman-generator'); +const _ = require('lodash'); + +module.exports = class extends Generator { + async prompting() { + this.option('skipInstall'); + + this.answers = await this.prompt([ + { + type: 'input', + name: 'packageName', + message: 'Package name:', + // Default to current folder name + default: _.kebabCase(this.appname.replace('plugin chart', '').trim()), + }, + { + type: 'input', + name: 'description', + message: 'Description:', + // Default to current folder name + default: _.upperFirst( + _.startCase(this.appname.replace('plugin chart', '').trim()), + ), + }, + { + type: 'list', + name: 'componentType', + message: 'What type of React component would you like?', + choices: [ + { + name: 'Class component', + value: 'class', + }, + { + name: 'Function component (with hooks)', + value: 'function', + }, + ], + }, + { + type: 'list', + name: 'chartType', + message: 'What type of chart would you like?', + choices: [ + { + name: 'Time-series chart', + value: 'timeseries', + }, + { + name: 'Regular chart', + value: 'regular', + }, + ], + }, + { + type: 'confirm', + name: 'addBadges', + message: "Add superset-ui badges to your plugin's README.md", + default: true, + }, + ]); + } + + writing() { + // 'hello-world' -> 'HelloWorld' + const packageLabel = _.upperFirst(_.camelCase(this.answers.packageName)); + + // 'hello-world' -> 'Hello World' + const pluginName = _.startCase(_.camelCase(this.answers.packageName)); + + const params = { + ...this.answers, + packageLabel, + pluginName, + }; + + [ + ['package.erb', 'package.json'], + ['tsconfig.json', 'tsconfig.json'], + ['README.erb', 'README.md'], + ['src/index.erb', 'src/index.ts'], + ['src/plugin/buildQuery.erb', 'src/plugin/buildQuery.ts'], + ['src/plugin/controlPanel.erb', 'src/plugin/controlPanel.ts'], + ['src/plugin/index.erb', 'src/plugin/index.ts'], + ['src/plugin/transformProps.erb', 'src/plugin/transformProps.ts'], + ['src/types.erb', 'src/types.ts'], + ['src/MyChart.erb', `src/${packageLabel}.tsx`], + ['test/index.erb', 'test/index.test.ts'], + ['test/plugin/buildQuery.test.erb', 'test/plugin/buildQuery.test.ts'], + [ + 'test/plugin/transformProps.test.erb', + 'test/plugin/transformProps.test.ts', + ], + ].forEach(([src, dest]) => { + this.fs.copyTpl( + this.templatePath(src), + this.destinationPath(dest), + params, + ); + }); + + ['types/external.d.ts', 'src/images/thumbnail.png'].forEach(file => { + this.fs.copy(this.templatePath(file), this.destinationPath(file)); + }); + } +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/README.erb b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/README.erb new file mode 100644 index 000000000000..a94fe629c57f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/README.erb @@ -0,0 +1,54 @@ +## @superset-ui/plugin-chart-<%= packageName %> + +<%if (addBadges) { %>[![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-<%= packageName %>.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-<%= packageName %>)<% } %> + +This plugin provides <%= description %> for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to lookup this chart throughout the app. + +```js +import <%= packageLabel %>ChartPlugin from '@superset-ui/plugin-chart-<%= packageName %>'; + +new <%= packageLabel %>ChartPlugin() + .configure({ key: '<%= packageName %>' }) + .register(); +``` + +Then use it via `SuperChart`. See [storybook](https://apache-superset.github.io/superset-ui/?selectedKind=plugin-chart-<%= packageName %>) for more details. + +```js + +``` + +### File structure generated + +``` +├── package.json +├── README.md +├── tsconfig.json +├── src +│   ├── <%= packageLabel %>.tsx +│   ├── images +│   │   └── thumbnail.png +│   ├── index.ts +│   ├── plugin +│   │   ├── buildQuery.ts +│   │   ├── controlPanel.ts +│   │   ├── index.ts +│   │   └── transformProps.ts +│   └── types.ts +├── test +│   └── index.test.ts +└── types + └── external.d.ts +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/package.erb b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/package.erb new file mode 100644 index 000000000000..3061f92b8774 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/package.erb @@ -0,0 +1,39 @@ +{ + "name": "@superset-ui/plugin-chart-<%= packageName %>", + "version": "0.0.0", + "description": "Superset Chart - <%= description %>", + "sideEffects": false, + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/core": "^0.17.40", + "@superset-ui/chart-controls": "^0.17.41" + }, + "peerDependencies": { + "react": "^16.13.1" + }, + "devDependencies": { + "@types/jest": "^26.0.0", + "jest": "^26.0.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/MyChart.erb b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/MyChart.erb new file mode 100644 index 000000000000..a7a6b1500b43 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/MyChart.erb @@ -0,0 +1,113 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { <%if (componentType == 'class') { %>PureComponent<% } %><%if (componentType == 'function') { %>useEffect<% } %>, createRef } from 'react'; +import { styled } from '@superset-ui/core'; +import { <%= packageLabel %>Props, <%= packageLabel %>StylesProps } from './types'; + +// The following Styles component is a
element, which has been styled using Emotion +// For docs, visit https://emotion.sh/docs/styled + +// Theming variables are provided for your use via a ThemeProvider +// imported from @superset-ui/core. For variables available, please visit +// https://github.com/apache-superset/superset-ui/blob/master/packages/superset-ui-core/src/style/index.ts + +const Styles = styled.div<<%= packageLabel %>StylesProps>` + background-color: ${({ theme }) => theme.colors.secondary.light2}; + padding: ${({ theme }) => theme.gridUnit * 4}px; + border-radius: ${({ theme }) => theme.gridUnit * 2}px; + height: ${({ height }) => height}; + width: ${({ width }) => width}; + overflow-y: scroll; + + h3 { + /* You can use your props to control CSS! */ + font-size: ${({ theme, headerFontSize }) => theme.typography.sizes[headerFontSize]}; + font-weight: ${({ theme, boldText }) => theme.typography.weights[boldText ? 'bold' : 'normal']}; + } +`; + +/** + * ******************* WHAT YOU CAN BUILD HERE ******************* + * In essence, a chart is given a few key ingredients to work with: + * * Data: provided via `props.data` + * * A DOM element + * * FormData (your controls!) provided as props by transformProps.ts + */ + +<%if (componentType == 'class') { %>export default class <%= packageLabel %> extends PureComponent<<%= packageLabel %>Props> { + // Often, you just want to get a hold of the DOM and go nuts. + // Here, you can do that with createRef, and componentDidMount. + + rootElem = createRef(); + + componentDidMount() { + const root = this.rootElem.current as HTMLElement; + console.log('Plugin element', root); + } + + render() { + // height and width are the height and width of the DOM element as it exists in the dashboard. + // There is also a `data` prop, which is, of course, your DATA 🎉 + console.log('Approach 1 props', this.props); + const { data, height, width } = this.props; + + console.log('Plugin props', this.props); + + return ( + +

{this.props.headerText}

+
{JSON.stringify(data, null, 2)}
+
+ ); + } +}<% } %><%if (componentType == 'function') { %>export default function <%= packageLabel %>(props: <%= packageLabel %>Props) { + // height and width are the height and width of the DOM element as it exists in the dashboard. + // There is also a `data` prop, which is, of course, your DATA 🎉 + const { data, height, width } = props; + + const rootElem = createRef(); + + // Often, you just want to get a hold of the DOM and go nuts. + // Here, you can do that with createRef, and the useEffect hook. + useEffect(() => { + const root = rootElem.current as HTMLElement; + console.log('Plugin element', root); + }); + + console.log('Plugin props', props); + + return ( + +

{props.headerText}

+
${JSON.stringify(data, null, 2)}
+
+ ); +}<% } %> diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/images/thumbnail.png new file mode 100644 index 000000000000..7afef30bd4e6 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/index.erb b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/index.erb new file mode 100644 index 000000000000..21a23adaa91e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/index.erb @@ -0,0 +1,27 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +// eslint-disable-next-line import/prefer-default-export +export { default as <%= packageLabel %>ChartPlugin } from './plugin'; +/** + * Note: this file exports the default export from <%= packageLabel %>.tsx. + * If you want to export multiple visualization modules, you will need to + * either add additional plugin folders (similar in structure to ./plugin) + * OR export multiple instances of `ChartPlugin` extensions in ./plugin/index.ts + * which in turn load exports from <%= packageLabel %>.tsx + */ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/buildQuery.erb b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/buildQuery.erb new file mode 100644 index 000000000000..0eef57c51309 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/buildQuery.erb @@ -0,0 +1,44 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { buildQueryContext, QueryFormData } from '@superset-ui/core'; + +/** + * The buildQuery function is used to create an instance of QueryContext that's + * sent to the chart data endpoint. In addition to containing information of which + * datasource to use, it specifies the type (e.g. full payload, samples, query) and + * format (e.g. CSV or JSON) of the result and whether or not to force refresh the data from + * the datasource as opposed to using a cached copy of the data, if available. + * + * More importantly though, QueryContext contains a property `queries`, which is an array of + * QueryObjects specifying individual data requests to be made. A QueryObject specifies which + * columns, metrics and filters, among others, to use during the query. Usually it will be enough + * to specify just one query based on the baseQueryObject, but for some more advanced use cases + * it is possible to define post processing operations in the QueryObject, or multiple queries + * if a viz needs multiple different result sets. + */ +export default function buildQuery(formData: QueryFormData) { + const { cols: groupby } = formData; + return buildQueryContext(formData, baseQueryObject => [ + { + ...baseQueryObject, + groupby,<%if (chartType === 'timeseries') { %> + is_timeseries: true,<% } %> + }, + ]); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/controlPanel.erb b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/controlPanel.erb new file mode 100644 index 000000000000..92e644a2ab52 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/controlPanel.erb @@ -0,0 +1,190 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, validateNonEmpty } from '@superset-ui/core'; +import { ControlPanelConfig, sections, sharedControls } from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + /** + * The control panel is split into two tabs: "Query" and + * "Chart Options". The controls that define the inputs to + * the chart data request, such as columns and metrics, usually + * reside within "Query", while controls that affect the visual + * appearance or functionality of the chart are under the + * "Chart Options" section. + * + * There are several predefined controls that can be used. + * Some examples: + * - groupby: columns to group by (tranlated to GROUP BY statement) + * - series: same as groupby, but single selection. + * - metrics: multiple metrics (translated to aggregate expression) + * - metric: sane as metrics, but single selection + * - adhoc_filters: filters (translated to WHERE or HAVING + * depending on filter type) + * - row_limit: maximum number of rows (translated to LIMIT statement) + * + * If a control panel has both a `series` and `groupby` control, and + * the user has chosen `col1` as the value for the `series` control, + * and `col2` and `col3` as values for the `groupby` control, + * the resulting query will contain three `groupby` columns. This is because + * we considered `series` control a `groupby` query field and its value + * will automatically append the `groupby` field when the query is generated. + * + * It is also possible to define custom controls by importing the + * necessary dependencies and overriding the default parameters, which + * can then be placed in the `controlSetRows` section + * of the `Query` section instead of a predefined control. + * + * import { validateNonEmpty } from '@superset-ui/core'; + * import { + * sharedControls, + * ControlConfig, + * ControlPanelConfig, + * } from '@superset-ui/chart-controls'; + * + * const myControl: ControlConfig<'SelectControl'> = { + * name: 'secondary_entity', + * config: { + * ...sharedControls.entity, + * type: 'SelectControl', + * label: t('Secondary Entity'), + * mapStateToProps: state => ({ + * sharedControls.columnChoices(state.datasource) + * .columns.filter(c => c.groupby) + * }) + * validators: [validateNonEmpty], + * }, + * } + * + * In addition to the basic drop down control, there are several predefined + * control types (can be set via the `type` property) that can be used. Some + * commonly used examples: + * - SelectControl: Dropdown to select single or multiple values, + usually columns + * - MetricsControl: Dropdown to select metrics, triggering a modal + to define Metric details + * - AdhocFilterControl: Control to choose filters + * - CheckboxControl: A checkbox for choosing true/false values + * - SliderControl: A slider with min/max values + * - TextControl: Control for text data + * + * For more control input types, check out the `incubator-superset` repo + * and open this file: superset-frontend/src/explore/components/controls/index.js + * + * To ensure all controls have been filled out correctly, the following + * validators are provided + * by the `@superset-ui/core/lib/validator`: + * - validateNonEmpty: must have at least one value + * - validateInteger: must be an integer value + * - validateNumber: must be an intger or decimal value + */ + + // For control input types, see: superset-frontend/src/explore/components/controls/index.js + controlPanelSections: [ + <%if (chartType === 'timeseries') { %>sections.legacyTimeseriesTime,<% } else { %>sections.legacyRegularTime,<% } %> + { + label: t('Query'), + expanded: true, + controlSetRows: [ + [ + { + name: 'cols', + config: { + ...sharedControls.groupby, + label: t('Columns'), + description: t('Columns to group by'), + }, + }, + ], + [ + { + name: 'metrics', + config: { + ...sharedControls.metrics, + // it's possible to add validators to controls if + // certain selections/types need to be enforced + validators: [validateNonEmpty], + }, + }, + ], + ['adhoc_filters'], + [ + { + name: 'row_limit', + config: sharedControls.row_limit, + }, + ], + ], + }, + { + label: t('Hello Controls!'), + expanded: true, + controlSetRows: [ + [ + { + name: 'header_text', + config: { + type: 'TextControl', + default: 'Hello, World!', + renderTrigger: true, + // ^ this makes it apply instantaneously, without triggering a "run query" button + label: t('Header Text'), + description: t('The text you want to see in the header'), + }, + }, + ], + [ + { + name: 'bold_text', + config: { + type: 'CheckboxControl', + label: t('Bold Text'), + renderTrigger: true, + default: true, + description: t('A checkbox to make the '), + }, + }, + ], + [ + { + name: 'header_font_size', + config: { + type: 'SelectControl', + label: t('Font Size'), + default: 'xl', + choices: [ + // [value, label] + ['xxs', 'xx-small'], + ['xs', 'x-small'], + ['s', 'small'], + ['m', 'medium'], + ['l', 'large'], + ['xl', 'x-large'], + ['xxl', 'xx-large'], + ], + renderTrigger: true, + description: t('The size of your header font'), + }, + }, + ], + ], + }, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/index.erb b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/index.erb new file mode 100644 index 000000000000..6426df86fff8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/index.erb @@ -0,0 +1,51 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import buildQuery from './buildQuery'; +import controlPanel from './controlPanel'; +import transformProps from './transformProps'; +import thumbnail from '../images/thumbnail.png'; + +export default class <%= packageLabel %>ChartPlugin extends ChartPlugin { + /** + * The constructor is used to pass relevant metadata and callbacks that get + * registered in respective registries that are used throughout the library + * and application. A more thorough description of each property is given in + * the respective imported file. + * + * It is worth noting that `buildQuery` and is optional, and only needed for + * advanced visualizations that require either post processing operations + * (pivoting, rolling aggregations, sorting etc) or submitting multiple queries. + */ + constructor() { + const metadata = new ChartMetadata({ + description: '<%= description %>', + name: t('<%= pluginName %>'), + thumbnail, + }); + + super({ + buildQuery, + controlPanel, + loadChart: () => import('../<%= packageLabel %>'), + metadata, + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/transformProps.erb b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/transformProps.erb new file mode 100644 index 000000000000..3acb70164760 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/plugin/transformProps.erb @@ -0,0 +1,72 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartProps, TimeseriesDataRecord } from '@superset-ui/core'; + +export default function transformProps(chartProps: ChartProps) { + /** + * This function is called after a successful response has been + * received from the chart data endpoint, and is used to transform + * the incoming data prior to being sent to the Visualization. + * + * The transformProps function is also quite useful to return + * additional/modified props to your data viz component. The formData + * can also be accessed from your <%= packageLabel %>.tsx file, but + * doing supplying custom props here is often handy for integrating third + * party libraries that rely on specific props. + * + * A description of properties in `chartProps`: + * - `height`, `width`: the height/width of the DOM element in which + * the chart is located + * - `formData`: the chart data request payload that was sent to the + * backend. + * - `queriesData`: the chart data response payload that was received + * from the backend. Some notable properties of `queriesData`: + * - `data`: an array with data, each row with an object mapping + * the column/alias to its value. Example: + * `[{ col1: 'abc', metric1: 10 }, { col1: 'xyz', metric1: 20 }]` + * - `rowcount`: the number of rows in `data` + * - `query`: the query that was issued. + * + * Please note: the transformProps function gets cached when the + * application loads. When making changes to the `transformProps` + * function during development with hot reloading, changes won't + * be seen until restarting the development server. + */ + const { width, height, formData, queriesData } = chartProps; + const { boldText, headerFontSize, headerText } = formData; + const data = queriesData[0].data as TimeseriesDataRecord[]; + + console.log('formData via TransformProps.ts', formData); + + return { + width, + height, +<%if (chartType === 'timeseries') { %> + data: data.map(item => ({ + ...item, + // convert epoch to native Date + // eslint-disable-next-line no-underscore-dangle + __timestamp: new Date(item.__timestamp as number), + })),<% } else { %> data,<% } %> + // and now your control data, manipulated as needed, and passed through as props! + boldText, + headerFontSize, + headerText, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/types.erb b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/types.erb new file mode 100644 index 000000000000..509fd1121e67 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/src/types.erb @@ -0,0 +1,40 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { QueryFormData, supersetTheme, TimeseriesDataRecord } from '@superset-ui/core'; + +export interface <%= packageLabel %>StylesProps { + height: number; + width: number; + headerFontSize: keyof typeof supersetTheme.typography.sizes; + boldText: boolean; +} + +interface <%= packageLabel %>CustomizeProps { + headerText: string; +} + +export type <%= packageLabel %>QueryFormData = QueryFormData & + <%= packageLabel %>StylesProps & + <%= packageLabel %>CustomizeProps; + +export type <%= packageLabel %>Props = <%= packageLabel %>StylesProps & + <%= packageLabel %>CustomizeProps & { + data: TimeseriesDataRecord[]; + // add typing here for the props you pass in from transformProps.ts! + }; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/test/index.erb b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/test/index.erb new file mode 100644 index 000000000000..9eca957441a7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/test/index.erb @@ -0,0 +1,33 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { <%= packageLabel %>ChartPlugin } from '../src'; + +/** + * The example tests in this file act as a starting point, and + * we encourage you to build more. These tests check that the + * plugin loads properly, and focus on `transformProps` + * to ake sure that data, controls, and props are all + * treated correctly (e.g. formData from plugin controls + * properly transform the data and/or any resulting props). + */ +describe('@superset-ui/plugin-chart-<%= packageName %>', () => { + it('exists', () => { + expect(<%= packageLabel %>ChartPlugin).toBeDefined(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/test/plugin/buildQuery.test.erb b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/test/plugin/buildQuery.test.erb new file mode 100644 index 000000000000..65411e094eff --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/test/plugin/buildQuery.test.erb @@ -0,0 +1,34 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import buildQuery from '../../src/plugin/buildQuery'; + +describe('<%= packageLabel %> buildQuery', () => { + const formData = { + datasource: '5__table', + granularity_sqla: 'ds', + series: 'foo', + viz_type: 'my_chart', + }; + + it('should build groupby with series in form data', () => { + const queryContext = buildQuery(formData); + const [query] = queryContext.queries; + expect(query.groupby).toEqual(['foo']); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/test/plugin/transformProps.test.erb b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/test/plugin/transformProps.test.erb new file mode 100644 index 000000000000..608f3084fa01 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/test/plugin/transformProps.test.erb @@ -0,0 +1,52 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartProps } from '@superset-ui/core'; +import transformProps from '../../src/plugin/transformProps'; + +describe('<%= packageLabel %> tranformProps', () => { + const formData = { + colorScheme: 'bnbColors', + datasource: '3__table', + granularity_sqla: 'ds', + metric: 'sum__num', + series: 'name', + boldText: true, + headerFontSize: 'xs', + headerText: 'my text', + }; + const chartProps = new ChartProps({ + formData, + width: 800, + height: 600, + queriesData: [{ + data: [{ name: 'Hulk', sum__num: 1<%if (chartType === 'timeseries') { %>, __timestamp: 599616000000<% } %> }], + }], + }); + + it('should tranform chart props for viz', () => { + expect(transformProps(chartProps)).toEqual({ + width: 800, + height: 600, + boldText: true, + headerFontSize: 'xs', + headerText: 'my text', + data: [{ name: 'Hulk', sum__num: 1<%if (chartType === 'timeseries') { %>, __timestamp: new Date(599616000000)<% } %> }], + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/types/external.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/types/external.d.ts new file mode 100644 index 000000000000..a273f3a2ba3e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/generators/plugin-chart/templates/types/external.d.ts @@ -0,0 +1,23 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +declare module '*.png' { + const value: any; + export default value; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/package.json b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/package.json new file mode 100644 index 000000000000..117a6c7fa066 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/package.json @@ -0,0 +1,41 @@ +{ + "name": "@superset-ui/generator-superset", + "version": "0.18.25", + "description": "Scaffolder for Superset", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "author": "Superset", + "files": [ + "generators" + ], + "main": "generators/index.js", + "keywords": [ + "yeoman", + "generator", + "superset", + "yeoman-generator" + ], + "devDependencies": { + "yeoman-assert": "^3.1.0", + "yeoman-test": "^2.0.0" + }, + "engines": { + "npm": ">= 4.0.0" + }, + "dependencies": { + "chalk": "^4.0.0", + "lodash": "^4.17.11", + "yeoman-generator": "^4.0.0", + "yosay": "^2.0.2" + }, + "license": "Apache-2.0", + "publishConfig": { + "access": "public" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/test/app.test.js b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/test/app.test.js new file mode 100644 index 000000000000..57900cdcd2e4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/test/app.test.js @@ -0,0 +1,59 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +const path = require('path'); +const assert = require('yeoman-assert'); +const helpers = require('yeoman-test'); + +describe('generator-superset:app', () => { + let dir; + + beforeAll(() => { + dir = process.cwd(); + + return helpers.run(path.join(__dirname, '../generators/app')).withPrompts({ + subgenerator: 'package', + name: 'my-package', + }); + }); + + /* + * Change working directory back to original working directory + * after the test has completed. + * yeoman tests switch to tmp directory and write files there. + * Usually this is fine for solo package. + * However, for a monorepo like this one, + * it made jest confuses with current directory + * (being in tmp directory instead of superset-ui root) + * and interferes with other tests in sibling packages + * that are run after the yeoman tests. + */ + afterAll(() => { + process.chdir(dir); + }); + + it('creates files', () => { + assert.file([ + 'package.json', + 'README.md', + 'src/index.ts', + 'test/index.test.ts', + ]); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/test/package.test.js b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/test/package.test.js new file mode 100644 index 000000000000..62a4f7a32992 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/test/package.test.js @@ -0,0 +1,81 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +const path = require('path'); +const assert = require('yeoman-assert'); +const helpers = require('yeoman-test'); + +describe('generator-superset:package', () => { + let dir; + + beforeAll(() => { + dir = process.cwd(); + }); + + /* + * Change working directory back to original working directory + * after the test has completed. + * yeoman tests switch to tmp directory and write files there. + * Usually this is fine for solo package. + * However, for a monorepo like this one, + * it made jest confuses with current directory + * (being in tmp directory instead of superset-ui root) + * and interferes with other tests in sibling packages + * that are run after the yeoman tests. + */ + afterAll(() => { + process.chdir(dir); + }); + + describe('typescript', () => { + beforeAll(() => + helpers + .run(path.join(__dirname, '../generators/package')) + .withPrompts({ name: 'my-package', language: 'typescript' }) + .withOptions({ skipInstall: true }), + ); + + it('creates files', () => { + assert.file([ + 'package.json', + 'README.md', + 'src/index.ts', + 'test/index.test.ts', + ]); + }); + }); + + describe('javascript', () => { + beforeAll(() => + helpers + .run(path.join(__dirname, '../generators/package')) + .withPrompts({ name: 'my-package', language: 'javascript' }) + .withOptions({ skipInstall: true }), + ); + + it('creates files', () => { + assert.file([ + 'package.json', + 'README.md', + 'src/index.js', + 'test/index.test.js', + ]); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/test/plugin-chart.test.js b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/test/plugin-chart.test.js new file mode 100644 index 000000000000..0fada541e84f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/test/plugin-chart.test.js @@ -0,0 +1,69 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-env node */ +const path = require('path'); +const assert = require('yeoman-assert'); +const helpers = require('yeoman-test'); + +describe('generator-superset:plugin-chart', () => { + let dir; + + beforeAll(() => { + dir = process.cwd(); + + return helpers + .run(path.join(__dirname, '../generators/plugin-chart')) + .withPrompts({ packageName: 'cold-map', description: 'Cold Map' }) + .withOptions({ skipInstall: true }); + }); + + /* + * Change working directory back to original working directory + * after the test has completed. + * yeoman tests switch to tmp directory and write files there. + * Usually this is fine for solo package. + * However, for a monorepo like this one, + * it made jest confuses with current directory + * (being in tmp directory instead of superset-ui root) + * and interferes with other tests in sibling packages + * that are run after the yeoman tests. + */ + afterAll(() => { + process.chdir(dir); + }); + + it('creates files', () => { + assert.file([ + 'package.json', + 'README.md', + 'src/plugin/buildQuery.ts', + 'src/plugin/controlPanel.ts', + 'src/plugin/index.ts', + 'src/plugin/transformProps.ts', + 'src/ColdMap.tsx', + 'src/index.ts', + 'test/index.test.ts', + 'test/plugin/buildQuery.test.ts', + 'test/plugin/transformProps.test.ts', + 'types/external.d.ts', + 'src/images/thumbnail.png', + ]); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/test/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/test/tsconfig.json new file mode 100644 index 000000000000..481ca5b4db93 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/generator-superset/test/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "composite": false, + "emitDeclarationOnly": false, + "noEmit": true, + "rootDir": "." + }, + "extends": "../../../tsconfig.json", + "include": [ + "**/*", + "../types/**/*", + "../../../types/**/*" + ], + "references": [ + { + "path": ".." + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/CHANGELOG.md new file mode 100644 index 000000000000..d8af5ed5e972 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/CHANGELOG.md @@ -0,0 +1,30 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + + +### Features + +* add certified icon to columoption ([#1330](https://github.com/apache-superset/superset-ui/issues/1330)) ([a415c41](https://github.com/apache-superset/superset-ui/commit/a415c413954bc9c093ab5dfde62d458cf3224073)) diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/README.md b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/README.md new file mode 100644 index 000000000000..760055f044f8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/README.md @@ -0,0 +1,42 @@ + + +## @superset-ui/chart-controls + +[![Version](https://img.shields.io/npm/v/@superset-ui/chart-controls.svg?style=flat)](https://www.npmjs.com/package/@superset-ui/chart-controls) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui.svg?path=packages%2Fsuperset-ui-chart-controls&style=flat-square)](https://david-dm.org/apache-superset/superset-ui?path=packages/superset-ui-chart-controls) + +Description + +#### Example usage + +```js +import { xxx } from '@superset-ui/chart-controls'; +``` + +#### API + +`fn(args)` + +- Do something + +### Development + +`@data-ui/build-config` is used to manage the build configuration for this package including babel +builds, jest testing, eslint, and prettier. diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/package.json b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/package.json new file mode 100644 index 000000000000..1b8e79bb2c05 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/package.json @@ -0,0 +1,41 @@ +{ + "name": "@superset-ui/chart-controls", + "version": "0.18.25", + "description": "Superset UI control-utils", + "sideEffects": false, + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@react-icons/all-files": "^4.1.0", + "@superset-ui/core": "0.18.25", + "lodash": "^4.17.15", + "prop-types": "^15.7.2" + }, + "peerDependencies": { + "@emotion/react": "^11.4.1", + "@types/react": "*", + "antd": "^4.9.4", + "react": "^16.13.1", + "react-dom": "^16.13.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx new file mode 100644 index 000000000000..194a415082d6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx @@ -0,0 +1,71 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { kebabCase } from 'lodash'; +import { t, useTheme, styled } from '@superset-ui/core'; +import Tooltip from './Tooltip'; + +interface CertifiedIconWithTooltipProps { + certifiedBy?: string | null; + details?: string | null; + metricName: string; +} + +const StyledDiv = styled.div` + margin-bottom: ${({ theme }) => theme.gridUnit * 2}px; +`; + +function CertifiedIconWithTooltip({ + certifiedBy, + details, + metricName, +}: CertifiedIconWithTooltipProps) { + const theme = useTheme(); + return ( + + {certifiedBy && ( + {t('Certified by %s', certifiedBy)} + )} +
{details}
+
+ } + > + {/* TODO: move Icons to superset-ui to remove duplicated icon code here */} + + + + + + + ); +} + +export default CertifiedIconWithTooltip; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ColumnOption.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ColumnOption.tsx new file mode 100644 index 000000000000..a42f0344acef --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ColumnOption.tsx @@ -0,0 +1,101 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { styled } from '@superset-ui/core'; +import { Tooltip } from './Tooltip'; +import { ColumnTypeLabel } from './ColumnTypeLabel'; +import InfoTooltipWithTrigger from './InfoTooltipWithTrigger'; +import CertifiedIconWithTooltip from './CertifiedIconWithTooltip'; +import { ColumnMeta } from '../types'; + +export type ColumnOptionProps = { + column: ColumnMeta; + showType?: boolean; + showTooltip?: boolean; + labelRef?: React.RefObject; +}; + +const StyleOverrides = styled.span` + svg { + margin-right: ${({ theme }) => theme.gridUnit}px; + } +`; + +export function ColumnOption({ + column, + labelRef, + showType = false, + showTooltip = true, +}: ColumnOptionProps) { + const { expression, column_name, type_generic } = column; + const hasExpression = expression && expression !== column_name; + const type = hasExpression ? 'expression' : type_generic; + + return ( + + {showType && type !== undefined && } + {column.is_certified && ( + + )} + {showTooltip ? ( + + + {column.verbose_name || column.column_name} + + + ) : ( + + {column.verbose_name || column.column_name} + + )} + {column.description && ( + + )} + {hasExpression && ( + + )} + + ); +} + +export default ColumnOption; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel.tsx new file mode 100644 index 000000000000..d9a3c8c11704 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel.tsx @@ -0,0 +1,58 @@ +/* eslint-disable no-nested-ternary */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { GenericDataType } from '@superset-ui/core'; +import React from 'react'; + +type StringIcon = '?' | 'ƒ' | 'AGG' | 'ABC' | '#' | 'T/F' | 'time'; + +export type ColumnLabelExtendedType = 'expression' | 'aggregate' | ''; + +export type ColumnTypeLabelProps = { + type?: ColumnLabelExtendedType | GenericDataType; +}; + +export function ColumnTypeLabel({ type }: ColumnTypeLabelProps) { + let stringIcon: StringIcon = '?'; + + if (type === '' || type === 'expression') { + stringIcon = 'ƒ'; + } else if (type === 'aggregate') { + stringIcon = 'AGG'; + } else if (type === GenericDataType.STRING) { + stringIcon = 'ABC'; + } else if (type === GenericDataType.NUMERIC) { + stringIcon = '#'; + } else if (type === GenericDataType.BOOLEAN) { + stringIcon = 'T/F'; + } else if (type === GenericDataType.TEMPORAL) { + stringIcon = 'time'; + } + + const typeIcon = + stringIcon === 'time' ? ( + + ) : ( +
{stringIcon}
+ ); + + return {typeIcon}; +} + +export default ColumnTypeLabel; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ControlForm/ControlFormItem.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ControlForm/ControlFormItem.tsx new file mode 100644 index 000000000000..470972a81bc1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ControlForm/ControlFormItem.tsx @@ -0,0 +1,124 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { useState, FunctionComponentElement, ChangeEvent } from 'react'; +import { JsonValue, useTheme } from '@superset-ui/core'; +import ControlHeader, { ControlHeaderProps } from '../ControlHeader'; +import InfoTooltipWithTrigger from '../InfoTooltipWithTrigger'; +import { ControlFormItemComponents, ControlFormItemSpec } from './controls'; + +export * from './controls'; + +export type ControlFormItemProps = ControlFormItemSpec & { + name: string; + onChange?: (fieldValue: JsonValue) => void; +}; + +export type ControlFormItemNode = + FunctionComponentElement; + +/** + * Accept `false` or `0`, but not empty string. + */ +function isEmptyValue(value?: JsonValue) { + return value == null || value === ''; +} + +export function ControlFormItem({ + name, + label, + description, + width, + validators, + required, + onChange, + value: initialValue, + defaultValue, + controlType, + ...props +}: ControlFormItemProps) { + const { gridUnit } = useTheme(); + const [hovered, setHovered] = useState(false); + const [value, setValue] = useState( + initialValue === undefined ? defaultValue : initialValue, + ); + const [validationErrors, setValidationErrors] = + useState(); + + const handleChange = (e: ChangeEvent | JsonValue) => { + const fieldValue = + e && typeof e === 'object' && 'target' in e + ? e.target.type === 'checkbox' || e.target.type === 'radio' + ? e.target.checked + : e.target.value + : e; + const errors = + (validators + ?.map(validator => + !required && isEmptyValue(fieldValue) ? false : validator(fieldValue), + ) + .filter(x => !!x) as string[]) || []; + setValidationErrors(errors); + setValue(fieldValue); + if (errors.length === 0 && onChange) { + onChange(fieldValue as JsonValue); + } + }; + + const Control = ControlFormItemComponents[controlType]; + + return ( +
setHovered(true)} + onMouseLeave={() => setHovered(false)} + > + {controlType === 'Checkbox' ? ( + + {label}{' '} + {hovered && description && ( + + )} + + ) : ( + <> + {label && ( + + )} + {/* @ts-ignore */} + + + )} +
+ ); +} + +export default ControlFormItem; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ControlForm/controls.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ControlForm/controls.tsx new file mode 100644 index 000000000000..a1b689cbaa36 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ControlForm/controls.tsx @@ -0,0 +1,92 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { ReactNode } from 'react'; +import { Slider, InputNumber, Input } from 'antd'; +import Checkbox, { CheckboxProps } from 'antd/lib/checkbox'; +import Select, { SelectOption } from '../Select'; +import RadioButtonControl, { + RadioButtonOption, +} from '../../shared-controls/components/RadioButtonControl'; + +export const ControlFormItemComponents = { + Slider, + InputNumber, + Input, + Select, + // Directly export Checkbox will result in "using name from external module" error + // ref: https://stackoverflow.com/questions/43900035/ts4023-exported-variable-x-has-or-is-using-name-y-from-external-module-but + Checkbox: Checkbox as React.ForwardRefExoticComponent< + CheckboxProps & React.RefAttributes + >, + RadioButtonControl, +}; + +export type ControlType = keyof typeof ControlFormItemComponents; + +export type ControlFormValueValidator = (value: V) => string | false; + +export type ControlFormItemSpec = { + controlType: T; + label: ReactNode; + description: ReactNode; + placeholder?: string; + required?: boolean; + validators?: ControlFormValueValidator[]; + width?: number | string; + /** + * Time to delay change propagation. + */ + debounceDelay?: number; +} & (T extends 'Select' + ? { + options: SelectOption[]; + value?: string; + defaultValue?: string; + creatable?: boolean; + minWidth?: number | string; + validators?: ControlFormValueValidator[]; + } + : T extends 'RadioButtonControl' + ? { + options: RadioButtonOption[]; + value?: string; + defaultValue?: string; + } + : T extends 'Checkbox' + ? { + value?: boolean; + defaultValue?: boolean; + } + : T extends 'InputNumber' | 'Slider' + ? { + min?: number; + max?: number; + step?: number; + value?: number; + defaultValue?: number; + validators?: ControlFormValueValidator[]; + } + : T extends 'Input' + ? { + controlType: 'Input'; + value?: string; + defaultValue?: string; + validators?: ControlFormValueValidator[]; + } + : {}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ControlForm/index.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ControlForm/index.tsx new file mode 100644 index 000000000000..9dafb3c39f36 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ControlForm/index.tsx @@ -0,0 +1,135 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { FunctionComponentElement, useMemo } from 'react'; +import { + FAST_DEBOUNCE, + JsonObject, + JsonValue, + useTheme, +} from '@superset-ui/core'; +import { debounce } from 'lodash'; +import { ControlFormItemNode } from './ControlFormItem'; + +export * from './ControlFormItem'; + +export type ControlFormRowProps = { + children: ControlFormItemNode | ControlFormItemNode[]; +}; + +export function ControlFormRow({ children }: ControlFormRowProps) { + const { gridUnit } = useTheme(); + return ( +
+ {children} +
+ ); +} + +type ControlFormRowNode = FunctionComponentElement; + +export type ControlFormProps = { + /** + * Form field values dict. + */ + value?: JsonObject; + onChange: (value: JsonObject) => void; + children: ControlFormRowNode | ControlFormRowNode[]; +}; + +/** + * Light weight form for control panel. + */ +export default function ControlForm({ + onChange, + value, + children, +}: ControlFormProps) { + const theme = useTheme(); + const debouncedOnChange = useMemo( + () => + ({ + 0: onChange, + [FAST_DEBOUNCE]: debounce(onChange, FAST_DEBOUNCE), + } as Record), + [onChange], + ); + + const updatedChildren = React.Children.map(children, row => { + if ('children' in row.props) { + const defaultWidth = Array.isArray(row.props.children) + ? `${100 / row.props.children.length}%` + : undefined; + return React.cloneElement(row, { + children: React.Children.map(row.props.children, item => { + const { + name, + width, + debounceDelay = FAST_DEBOUNCE, + onChange: onItemValueChange, + } = item.props; + return React.cloneElement(item, { + width: width || defaultWidth, + value: value?.[name], + // remove `debounceDelay` from rendered control item props + // so React DevTools don't throw a `invalid prop` warning. + debounceDelay: undefined, + onChange(fieldValue: JsonValue) { + // call `onChange` on each FormItem + if (onItemValueChange) { + onItemValueChange(fieldValue); + } + // propagate to the form + if (!(debounceDelay in debouncedOnChange)) { + debouncedOnChange[debounceDelay] = debounce( + onChange, + debounceDelay, + ); + } + debouncedOnChange[debounceDelay]({ + ...value, + [name]: fieldValue, + }); + }, + }); + }), + }); + } + return row; + }); + return ( +
+ {updatedChildren} +
+ ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx new file mode 100644 index 000000000000..c1b22494ef38 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx @@ -0,0 +1,142 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { ReactNode } from 'react'; +import { t } from '@superset-ui/core'; +import { InfoTooltipWithTrigger } from './InfoTooltipWithTrigger'; +import { Tooltip } from './Tooltip'; + +type ValidationError = string; + +export type ControlHeaderProps = { + name?: string; + label?: ReactNode; + description?: ReactNode; + validationErrors?: ValidationError[]; + renderTrigger?: boolean; + rightNode?: ReactNode; + leftNode?: ReactNode; + hovered?: boolean; + required?: boolean; + warning?: string; + danger?: string; + onClick?: () => void; + tooltipOnClick?: () => void; +}; + +export default function ControlHeader({ + name, + description, + label, + tooltipOnClick, + onClick, + warning, + danger, + leftNode, + rightNode, + validationErrors = [], + renderTrigger = false, + hovered = false, + required = false, +}: ControlHeaderProps) { + const renderOptionalIcons = () => { + if (hovered) { + return ( + + {description && ( + + {' '} + + )} + {renderTrigger && ( + + {' '} + + )} + + ); + } + return null; + }; + + if (!label) { + return null; + } + const labelClass = validationErrors.length > 0 ? 'text-danger' : ''; + return ( +
+
+ +
+ {rightNode &&
{rightNode}
} +
+
+ ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx new file mode 100644 index 000000000000..747a6535fe45 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx @@ -0,0 +1,79 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { kebabCase } from 'lodash'; +import { TooltipPlacement } from 'antd/lib/tooltip'; +import { t } from '@superset-ui/core'; +import { Tooltip, TooltipProps } from './Tooltip'; + +export interface InfoTooltipWithTriggerProps { + label?: string; + tooltip?: TooltipProps['title']; + icon?: string; + onClick?: () => void; + placement?: TooltipPlacement; + bsStyle?: string; + className?: string; +} + +export function InfoTooltipWithTrigger({ + label, + tooltip, + bsStyle, + onClick, + icon = 'info-circle', + className = 'text-muted', + placement = 'right', +}: InfoTooltipWithTriggerProps) { + const iconClass = `fa fa-${icon} ${className} ${ + bsStyle ? `text-${bsStyle}` : '' + }`; + const iconEl = ( + { + if (event.key === 'Enter' || event.key === ' ') { + onClick(); + } + }) + } + /> + ); + if (!tooltip) { + return iconEl; + } + return ( + + {iconEl} + + ); +} + +export default InfoTooltipWithTrigger; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/MetricOption.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/MetricOption.tsx new file mode 100644 index 000000000000..b76f772b43ab --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/MetricOption.tsx @@ -0,0 +1,117 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { styled, Metric, SafeMarkdown } from '@superset-ui/core'; +import InfoTooltipWithTrigger from './InfoTooltipWithTrigger'; +import { ColumnTypeLabel } from './ColumnTypeLabel'; +import CertifiedIconWithTooltip from './CertifiedIconWithTooltip'; +import Tooltip from './Tooltip'; + +const FlexRowContainer = styled.div` + align-items: center; + display: flex; + + > svg { + margin-right: ${({ theme }) => theme.gridUnit}px; + } +`; + +export interface MetricOptionProps { + metric: Omit & { label?: string }; + openInNewWindow?: boolean; + showFormula?: boolean; + showType?: boolean; + showTooltip?: boolean; + url?: string; + labelRef?: React.RefObject; +} + +export function MetricOption({ + metric, + labelRef, + openInNewWindow = false, + showFormula = true, + showType = false, + showTooltip = true, + url = '', +}: MetricOptionProps) { + const verbose = metric.verbose_name || metric.metric_name || metric.label; + const link = url ? ( + + {verbose} + + ) : ( + verbose + ); + + const warningMarkdown = metric.warning_markdown || metric.warning_text; + + return ( + + {showType && } + {metric.is_certified && ( + + )} + {showTooltip ? ( + + + {link} + + + ) : ( + + {link} + + )} + {metric.description && ( + + )} + {showFormula && ( + + )} + {warningMarkdown && ( + } + label={`warn-${metric.metric_name}`} + /> + )} + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/Select.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/Select.tsx new file mode 100644 index 000000000000..761632eb19ab --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/Select.tsx @@ -0,0 +1,107 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { useState, ReactNode } from 'react'; +import AntdSelect, { SelectProps as AntdSelectProps } from 'antd/lib/select'; + +export const { Option }: any = AntdSelect; + +export type SelectOption = [VT, ReactNode]; + +export type SelectProps = Omit, 'options'> & { + creatable?: boolean; + minWidth?: string | number; + options?: SelectOption[]; +}; + +/** + * AntD select with creatable options. + */ +export default function Select({ + creatable, + onSearch, + dropdownMatchSelectWidth = false, + minWidth = '100%', + showSearch: showSearch_ = true, + onChange, + options, + children, + value, + ...props +}: SelectProps) { + const [searchValue, setSearchValue] = useState(); + // force show search if creatable + const showSearch = showSearch_ || creatable; + const handleSearch = showSearch + ? (input: string) => { + if (creatable) { + setSearchValue(input); + } + if (onSearch) { + onSearch(input); + } + } + : undefined; + + const optionsHasSearchValue = options?.some(([val]) => val === searchValue); + const optionsHasValue = options?.some(([val]) => val === value); + + const handleChange: SelectProps['onChange'] = showSearch + ? (val, opt) => { + // reset input value once selected + setSearchValue(''); + if (onChange) { + onChange(val, opt); + } + } + : onChange; + + return ( + + dropdownMatchSelectWidth={dropdownMatchSelectWidth} + showSearch={showSearch} + onSearch={handleSearch} + onChange={handleChange} + value={value} + {...props} + css={{ + minWidth, + }} + > + {options?.map(([val, label]) => ( + + ))} + {children} + {value && !optionsHasValue && ( + + )} + {searchValue && !optionsHasSearchValue && ( + + )} + + ); +} + +Select.Option = Option; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/Tooltip.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/Tooltip.tsx new file mode 100644 index 000000000000..3b4aed17e46e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/components/Tooltip.tsx @@ -0,0 +1,58 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { useTheme, css } from '@superset-ui/core'; +import { Tooltip as BaseTooltip } from 'antd'; +import { TooltipProps } from 'antd/lib/tooltip'; +import { Global } from '@emotion/react'; + +export { TooltipProps } from 'antd/lib/tooltip'; + +export const Tooltip = ({ overlayStyle, color, ...props }: TooltipProps) => { + const theme = useTheme(); + const defaultColor = `${theme.colors.grayscale.dark2}e6`; + return ( + <> + {/* Safari hack to hide browser default tooltips */} + + + + ); +}; + +export default Tooltip; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/constants.ts new file mode 100644 index 000000000000..5e16956c60e6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/constants.ts @@ -0,0 +1,47 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, QueryMode, DTTM_ALIAS, GenericDataType } from '@superset-ui/core'; +import { ColumnMeta } from './types'; + +// eslint-disable-next-line import/prefer-default-export +export const TIME_FILTER_LABELS = { + time_range: t('Time Range'), + granularity_sqla: t('Time Column'), + time_grain_sqla: t('Time Grain'), + druid_time_origin: t('Origin'), + granularity: t('Time Granularity'), +}; + +export const COLUMN_NAME_ALIASES: Record = { + [DTTM_ALIAS]: t('Time'), +}; + +export const TIME_COLUMN_OPTION: ColumnMeta = { + verbose_name: COLUMN_NAME_ALIASES[DTTM_ALIAS], + column_name: DTTM_ALIAS, + type_generic: GenericDataType.TEMPORAL, + description: t( + 'A reference to the [Time] configuration, taking granularity into account', + ), +}; + +export const QueryModeLabel = { + [QueryMode.aggregate]: t('Aggregate'), + [QueryMode.raw]: t('Raw records'), +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/index.ts new file mode 100644 index 000000000000..6f19d0e4686a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/index.ts @@ -0,0 +1,43 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import * as sectionsModule from './sections'; + +export * from './utils'; +export * from './constants'; +export * from './operators'; + +// can't do `export * as sections from './sections'`, babel-transformer will fail +export const sections = sectionsModule; + +export * from './components/InfoTooltipWithTrigger'; +export * from './components/ColumnOption'; +export * from './components/ColumnTypeLabel'; +export * from './components/MetricOption'; + +// React control components +export { + sharedControls, + dndEntity, + dndColumnsControl, +} from './shared-controls'; +export { default as sharedControlComponents } from './shared-controls/components'; +export { legacySortBy } from './shared-controls/legacySortBy'; +export * from './shared-controls/emitFilterControl'; +export * from './shared-controls/components'; +export * from './types'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/boxplotOperator.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/boxplotOperator.ts new file mode 100644 index 000000000000..9b90c12862cd --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/boxplotOperator.ts @@ -0,0 +1,66 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitationsxw + * under the License. + */ +import { + ensureIsArray, + getColumnLabel, + getMetricLabel, + PostProcessingBoxplot, +} from '@superset-ui/core'; +import { PostProcessingFactory } from './types'; + +type BoxPlotQueryObjectWhiskerType = + PostProcessingBoxplot['options']['whisker_type']; +const PERCENTILE_REGEX = /(\d+)\/(\d+) percentiles/; + +export const boxplotOperator: PostProcessingFactory< + PostProcessingBoxplot | undefined +> = (formData, queryObject) => { + const { groupby, whiskerOptions } = formData; + + if (whiskerOptions) { + let whiskerType: BoxPlotQueryObjectWhiskerType; + let percentiles: [number, number] | undefined; + const percentileMatch = PERCENTILE_REGEX.exec(whiskerOptions as string); + + if (whiskerOptions === 'Tukey' || !whiskerOptions) { + whiskerType = 'tukey'; + } else if (whiskerOptions === 'Min/max (no outliers)') { + whiskerType = 'min/max'; + } else if (percentileMatch) { + whiskerType = 'percentile'; + percentiles = [ + parseInt(percentileMatch[1], 10), + parseInt(percentileMatch[2], 10), + ]; + } else { + throw new Error(`Unsupported whisker type: ${whiskerOptions}`); + } + + return { + operation: 'boxplot', + options: { + whisker_type: whiskerType, + percentiles, + groupby: ensureIsArray(groupby).map(getColumnLabel), + metrics: ensureIsArray(queryObject.metrics).map(getMetricLabel), + }, + }; + } + return undefined; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/contributionOperator.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/contributionOperator.ts new file mode 100644 index 000000000000..793ca87d3d0f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/contributionOperator.ts @@ -0,0 +1,34 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitationsxw + * under the License. + */ +import { PostProcessingContribution } from '@superset-ui/core'; +import { PostProcessingFactory } from './types'; + +export const contributionOperator: PostProcessingFactory< + PostProcessingContribution | undefined +> = (formData, queryObject) => { + if (formData.contributionMode) { + return { + operation: 'contribution', + options: { + orientation: formData.contributionMode, + }, + }; + } + return undefined; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/index.ts new file mode 100644 index 000000000000..95aeb21c9a70 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/index.ts @@ -0,0 +1,29 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitationsxw + * under the License. + */ +export { rollingWindowOperator } from './rollingWindowOperator'; +export { timeCompareOperator } from './timeCompareOperator'; +export { timeComparePivotOperator } from './timeComparePivotOperator'; +export { sortOperator } from './sortOperator'; +export { pivotOperator } from './pivotOperator'; +export { resampleOperator } from './resampleOperator'; +export { contributionOperator } from './contributionOperator'; +export { prophetOperator } from './prophetOperator'; +export { boxplotOperator } from './boxplotOperator'; +export * from './utils'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/pivotOperator.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/pivotOperator.ts new file mode 100644 index 000000000000..8789efb44e9c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/pivotOperator.ts @@ -0,0 +1,54 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitationsxw + * under the License. + */ +import { + ensureIsArray, + getColumnLabel, + getMetricLabel, + PostProcessingPivot, +} from '@superset-ui/core'; +import { PostProcessingFactory } from './types'; +import { TIME_COLUMN, isValidTimeCompare } from './utils'; +import { timeComparePivotOperator } from './timeComparePivotOperator'; + +export const pivotOperator: PostProcessingFactory< + PostProcessingPivot | undefined +> = (formData, queryObject) => { + const metricLabels = ensureIsArray(queryObject.metrics).map(getMetricLabel); + if (queryObject.is_timeseries && metricLabels.length) { + if (isValidTimeCompare(formData, queryObject)) { + return timeComparePivotOperator(formData, queryObject); + } + + return { + operation: 'pivot', + options: { + index: [TIME_COLUMN], + columns: ensureIsArray(queryObject.columns).map(getColumnLabel), + // Create 'dummy' mean aggregates to assign cell values in pivot table + // use the 'mean' aggregates to avoid drop NaN. PR: https://github.com/apache-superset/superset-ui/pull/1231 + aggregates: Object.fromEntries( + metricLabels.map(metric => [metric, { operator: 'mean' }]), + ), + drop_missing_columns: false, + }, + }; + } + + return undefined; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/prophetOperator.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/prophetOperator.ts new file mode 100644 index 000000000000..1b208034db85 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/prophetOperator.ts @@ -0,0 +1,39 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitationsxw + * under the License. + */ +import { PostProcessingProphet } from '@superset-ui/core'; +import { PostProcessingFactory } from './types'; + +export const prophetOperator: PostProcessingFactory< + PostProcessingProphet | undefined +> = (formData, queryObject) => { + if (formData.forecastEnabled) { + return { + operation: 'prophet', + options: { + time_grain: formData.time_grain_sqla, + periods: parseInt(formData.forecastPeriods, 10), + confidence_interval: parseFloat(formData.forecastInterval), + yearly_seasonality: formData.forecastSeasonalityYearly, + weekly_seasonality: formData.forecastSeasonalityWeekly, + daily_seasonality: formData.forecastSeasonalityDaily, + }, + }; + } + return undefined; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/resampleOperator.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/resampleOperator.ts new file mode 100644 index 000000000000..a43838d710b8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/resampleOperator.ts @@ -0,0 +1,42 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitationsxw + * under the License. + */ +import { PostProcessingResample } from '@superset-ui/core'; +import { PostProcessingFactory } from './types'; +import { TIME_COLUMN } from './utils'; + +export const resampleOperator: PostProcessingFactory< + PostProcessingResample | undefined +> = (formData, queryObject) => { + const resampleZeroFill = formData.resample_method === 'zerofill'; + const resampleMethod = resampleZeroFill ? 'asfreq' : formData.resample_method; + const resampleRule = formData.resample_rule; + if (resampleMethod && resampleRule) { + return { + operation: 'resample', + options: { + method: resampleMethod, + rule: resampleRule, + fill_value: resampleZeroFill ? 0 : null, + time_column: TIME_COLUMN, + }, + }; + } + return undefined; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/rollingWindowOperator.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/rollingWindowOperator.ts new file mode 100644 index 000000000000..f8dd40137bfc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/rollingWindowOperator.ts @@ -0,0 +1,93 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitationsxw + * under the License. + */ +import { + ensureIsInt, + ensureIsArray, + RollingType, + PostProcessingRolling, + PostProcessingCum, + ComparisionType, +} from '@superset-ui/core'; +import { + getMetricOffsetsMap, + isValidTimeCompare, + TIME_COMPARISON_SEPARATOR, +} from './utils'; +import { PostProcessingFactory } from './types'; + +export const rollingWindowOperator: PostProcessingFactory< + PostProcessingRolling | PostProcessingCum | undefined +> = (formData, queryObject) => { + let columns: (string | undefined)[]; + if (isValidTimeCompare(formData, queryObject)) { + const metricsMap = getMetricOffsetsMap(formData, queryObject); + const comparisonType = formData.comparison_type; + if (comparisonType === ComparisionType.Values) { + // time compare type: actual values + columns = [ + ...Array.from(metricsMap.values()), + ...Array.from(metricsMap.keys()), + ]; + } else { + // time compare type: difference / percentage / ratio + columns = Array.from(metricsMap.entries()).map(([offset, metric]) => + [comparisonType, metric, offset].join(TIME_COMPARISON_SEPARATOR), + ); + } + } else { + columns = ensureIsArray(queryObject.metrics).map(metric => { + if (typeof metric === 'string') { + return metric; + } + return metric.label; + }); + } + const columnsMap = Object.fromEntries(columns.map(col => [col, col])); + + if (formData.rolling_type === RollingType.Cumsum) { + return { + operation: 'cum', + options: { + operator: 'sum', + columns: columnsMap, + is_pivot_df: true, + }, + }; + } + + if ( + [RollingType.Sum, RollingType.Mean, RollingType.Std].includes( + formData.rolling_type, + ) + ) { + return { + operation: 'rolling', + options: { + rolling_type: formData.rolling_type, + window: ensureIsInt(formData.rolling_periods, 1), + min_periods: ensureIsInt(formData.min_periods, 0), + columns: columnsMap, + is_pivot_df: true, + }, + }; + } + + return undefined; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/sortOperator.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/sortOperator.ts new file mode 100644 index 000000000000..9a86f4b371e6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/sortOperator.ts @@ -0,0 +1,41 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitationsxw + * under the License. + */ +import { PostProcessingSort, RollingType } from '@superset-ui/core'; +import { PostProcessingFactory } from './types'; +import { TIME_COLUMN } from './utils'; + +export const sortOperator: PostProcessingFactory< + PostProcessingSort | undefined +> = (formData, queryObject) => { + if ( + queryObject.is_timeseries && + Object.values(RollingType).includes(formData.rolling_type) + ) { + return { + operation: 'sort', + options: { + columns: { + [TIME_COLUMN]: true, + }, + }, + }; + } + return undefined; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/timeCompareOperator.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/timeCompareOperator.ts new file mode 100644 index 000000000000..55d8a829778d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/timeCompareOperator.ts @@ -0,0 +1,46 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitationsxw + * under the License. + */ +import { ComparisionType, PostProcessingCompare } from '@superset-ui/core'; +import { getMetricOffsetsMap, isValidTimeCompare } from './utils'; +import { PostProcessingFactory } from './types'; + +export const timeCompareOperator: PostProcessingFactory< + PostProcessingCompare | undefined +> = (formData, queryObject) => { + const comparisonType = formData.comparison_type; + const metricOffsetMap = getMetricOffsetsMap(formData, queryObject); + + if ( + isValidTimeCompare(formData, queryObject) && + comparisonType !== ComparisionType.Values + ) { + return { + operation: 'compare', + options: { + source_columns: Array.from(metricOffsetMap.values()), + compare_columns: Array.from(metricOffsetMap.keys()), + compare_type: comparisonType, + drop_original_columns: true, + }, + }; + } + + return undefined; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/timeComparePivotOperator.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/timeComparePivotOperator.ts new file mode 100644 index 000000000000..4b5458e67d84 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/timeComparePivotOperator.ts @@ -0,0 +1,70 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitationsxw + * under the License. + */ +import { + ComparisionType, + PostProcessingPivot, + NumpyFunction, + ensureIsArray, + getColumnLabel, +} from '@superset-ui/core'; +import { + getMetricOffsetsMap, + isValidTimeCompare, + TIME_COMPARISON_SEPARATOR, +} from './utils'; +import { PostProcessingFactory } from './types'; + +export const timeComparePivotOperator: PostProcessingFactory< + PostProcessingPivot | undefined +> = (formData, queryObject) => { + const comparisonType = formData.comparison_type; + const metricOffsetMap = getMetricOffsetsMap(formData, queryObject); + + if (isValidTimeCompare(formData, queryObject)) { + const valuesAgg = Object.fromEntries( + [...metricOffsetMap.values(), ...metricOffsetMap.keys()].map(metric => [ + metric, + // use the 'mean' aggregates to avoid drop NaN + { operator: 'mean' as NumpyFunction }, + ]), + ); + const changeAgg = Object.fromEntries( + [...metricOffsetMap.entries()] + .map(([offset, metric]) => + [comparisonType, metric, offset].join(TIME_COMPARISON_SEPARATOR), + ) + // use the 'mean' aggregates to avoid drop NaN + .map(metric => [metric, { operator: 'mean' as NumpyFunction }]), + ); + + return { + operation: 'pivot', + options: { + index: ['__timestamp'], + columns: ensureIsArray(queryObject.columns).map(getColumnLabel), + aggregates: + comparisonType === ComparisionType.Values ? valuesAgg : changeAgg, + drop_missing_columns: false, + }, + }; + } + + return undefined; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/types.ts new file mode 100644 index 000000000000..34f632ff8f38 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/types.ts @@ -0,0 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitationsxw + * under the License. + */ +import { QueryFormData, QueryObject } from '@superset-ui/core'; + +export interface PostProcessingFactory { + (formData: QueryFormData, queryObject: QueryObject): T; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/utils/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/utils/constants.ts new file mode 100644 index 000000000000..cb01a2e6c5cb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/utils/constants.ts @@ -0,0 +1,21 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitationsxw + * under the License. + */ +export const TIME_COMPARISON_SEPARATOR = '__'; +export const TIME_COLUMN = '__timestamp'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/utils/getMetricOffsetsMap.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/utils/getMetricOffsetsMap.ts new file mode 100644 index 000000000000..b981466e3166 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/utils/getMetricOffsetsMap.ts @@ -0,0 +1,50 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitationsxw + * under the License. + */ +import { getMetricLabel, ensureIsArray } from '@superset-ui/core'; +import { PostProcessingFactory } from '../types'; +import { TIME_COMPARISON_SEPARATOR } from './constants'; + +export const getMetricOffsetsMap: PostProcessingFactory> = ( + formData, + queryObject, +) => { + /* + return metric offset-label and metric-label hashmap, for instance: + { + "SUM(value)__1 year ago": "SUM(value)", + "SUM(value)__2 year ago": "SUM(value)" + } + */ + const queryMetrics = ensureIsArray(queryObject.metrics); + const timeOffsets = ensureIsArray(formData.time_compare); + + const metricLabels = queryMetrics.map(getMetricLabel); + const metricOffsetMap = new Map(); + metricLabels.forEach((metric: string) => { + timeOffsets.forEach((offset: string) => { + metricOffsetMap.set( + [metric, offset].join(TIME_COMPARISON_SEPARATOR), + metric, + ); + }); + }); + + return metricOffsetMap; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/utils/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/utils/index.ts new file mode 100644 index 000000000000..acf072f74678 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/utils/index.ts @@ -0,0 +1,22 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitationsxw + * under the License. + */ +export { getMetricOffsetsMap } from './getMetricOffsetsMap'; +export { isValidTimeCompare } from './isValidTimeCompare'; +export { TIME_COMPARISON_SEPARATOR, TIME_COLUMN } from './constants'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/utils/isValidTimeCompare.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/utils/isValidTimeCompare.ts new file mode 100644 index 000000000000..793bb392315d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/operators/utils/isValidTimeCompare.ts @@ -0,0 +1,35 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitationsxw + * under the License. + */ +import { ComparisionType } from '@superset-ui/core'; +import { getMetricOffsetsMap } from './getMetricOffsetsMap'; +import { PostProcessingFactory } from '../types'; + +export const isValidTimeCompare: PostProcessingFactory = ( + formData, + queryObject, +) => { + const comparisonType = formData.comparison_type; + const metricOffsetMap = getMetricOffsetsMap(formData, queryObject); + + return ( + Object.values(ComparisionType).includes(comparisonType) && + metricOffsetMap.size > 0 + ); +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx new file mode 100644 index 000000000000..036670c4dff2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx @@ -0,0 +1,182 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t, RollingType, ComparisionType } from '@superset-ui/core'; +import { ControlPanelSectionConfig } from '../types'; +import { formatSelectOptions } from '../utils'; + +export const advancedAnalyticsControls: ControlPanelSectionConfig = { + label: t('Advanced analytics'), + tabOverride: 'data', + description: t( + 'This section contains options ' + + 'that allow for advanced analytical post processing ' + + 'of query results', + ), + controlSetRows: [ + [

{t('Rolling window')}

], + [ + { + name: 'rolling_type', + config: { + type: 'SelectControl', + label: t('Rolling function'), + default: null, + choices: [[null, t('None')]].concat( + formatSelectOptions(Object.values(RollingType)), + ), + description: t( + 'Defines a rolling window function to apply, works along ' + + 'with the [Periods] text box', + ), + }, + }, + ], + [ + { + name: 'rolling_periods', + config: { + type: 'TextControl', + label: t('Periods'), + isInt: true, + description: t( + 'Defines the size of the rolling window function, ' + + 'relative to the time granularity selected', + ), + visibility: ({ controls }) => + Boolean(controls?.rolling_type?.value) && + controls.rolling_type.value !== RollingType.Cumsum, + }, + }, + ], + [ + { + name: 'min_periods', + config: { + type: 'TextControl', + label: t('Min periods'), + isInt: true, + description: t( + 'The minimum number of rolling periods required to show ' + + 'a value. For instance if you do a cumulative sum on 7 days ' + + 'you may want your "Min Period" to be 7, so that all data points ' + + 'shown are the total of 7 periods. This will hide the "ramp up" ' + + 'taking place over the first 7 periods', + ), + visibility: ({ controls }) => + Boolean(controls?.rolling_type?.value) && + controls.rolling_type.value !== RollingType.Cumsum, + }, + }, + ], + [

{t('Time comparison')}

], + [ + { + name: 'time_compare', + config: { + type: 'SelectControl', + multi: true, + freeForm: true, + label: t('Time shift'), + choices: formatSelectOptions([ + '1 day ago', + '1 week ago', + '28 days ago', + '30 days ago', + '52 weeks ago', + '1 year ago', + '104 weeks ago', + '2 years ago', + ]), + description: t( + 'Overlay one or more timeseries from a ' + + 'relative time period. Expects relative time deltas ' + + 'in natural language (example: 24 hours, 7 days, ' + + '52 weeks, 365 days). Free text is supported.', + ), + }, + }, + ], + [ + { + name: 'comparison_type', + config: { + type: 'SelectControl', + label: t('Calculation type'), + default: 'values', + choices: [ + [ComparisionType.Values, 'Actual values'], + [ComparisionType.Difference, 'Difference'], + [ComparisionType.Percentage, 'Percentage change'], + [ComparisionType.Ratio, 'Ratio'], + ], + description: t( + 'How to display time shifts: as individual lines; as the ' + + 'difference between the main time series and each time shift; ' + + 'as the percentage change; or as the ratio between series and time shifts.', + ), + }, + }, + ], + [

{t('Resample')}

], + [ + { + name: 'resample_rule', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Rule'), + default: null, + choices: [ + ['1T', '1 minutely frequency'], + ['1H', '1 hourly frequency'], + ['1D', '1 calendar day frequency'], + ['7D', '7 calendar day frequency'], + ['1MS', '1 month start frequency'], + ['1M', '1 month end frequency'], + ['1AS', '1 year start frequency'], + ['1A', '1 year end frequency'], + ], + description: t('Pandas resample rule'), + }, + }, + ], + [ + { + name: 'resample_method', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Fill method'), + default: null, + choices: [ + ['asfreq', 'Null imputation'], + ['zerofill', 'Zero imputation'], + ['ffill', 'Forward values'], + ['bfill', 'Backward values'], + ['median', 'Median values'], + ['mean', 'Mean values'], + ['sum', 'Sum values'], + ], + description: t('Pandas resample method'), + }, + }, + ], + ], +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx new file mode 100644 index 000000000000..9fffbb578e4d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx @@ -0,0 +1,40 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { ControlPanelSectionConfig } from '../types'; + +export const annotationLayers = []; + +export const annotationsAndLayersControls: ControlPanelSectionConfig = { + label: t('Annotations and Layers'), + expanded: false, + controlSetRows: [ + [ + { + name: 'annotation_layers', + config: { + type: 'AnnotationLayerControl', + label: '', + default: annotationLayers, + description: t('Annotation Layers'), + }, + }, + ], + ], +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx new file mode 100644 index 000000000000..5e99d976c55b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx @@ -0,0 +1,103 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t } from '@superset-ui/core'; +import { ControlPanelSectionConfig } from '../types'; +import { formatSelectOptions } from '../utils'; + +const TITLE_MARGIN_OPTIONS: number[] = [15, 30, 50, 75, 100, 125, 150, 200]; +const TITLE_POSITION_OPTIONS: string[] = ['Left', 'Top']; +export const titleControls: ControlPanelSectionConfig = { + label: t('Chart Title'), + tabOverride: 'customize', + expanded: true, + controlSetRows: [ + [

{t('X Axis')}

], + [ + { + name: 'x_axis_title', + config: { + type: 'TextControl', + label: t('X Axis Title'), + renderTrigger: true, + default: '', + description: t('Changing this control takes effect instantly'), + }, + }, + ], + [ + { + name: 'x_axis_title_margin', + config: { + type: 'SelectControl', + freeForm: true, + clearable: true, + label: t('X AXIS TITLE BOTTOM MARGIN'), + renderTrigger: true, + default: TITLE_MARGIN_OPTIONS[0], + choices: formatSelectOptions(TITLE_MARGIN_OPTIONS), + description: t('Changing this control takes effect instantly'), + }, + }, + ], + [

{t('Y Axis')}

], + [ + { + name: 'y_axis_title', + config: { + type: 'TextControl', + label: t('Y Axis Title'), + renderTrigger: true, + default: '', + description: t('Changing this control takes effect instantly'), + }, + }, + ], + [ + { + name: 'y_axis_title_margin', + config: { + type: 'SelectControl', + freeForm: true, + clearable: true, + label: t('Y AXIS TITLE MARGIN'), + renderTrigger: true, + default: TITLE_MARGIN_OPTIONS[0], + choices: formatSelectOptions(TITLE_MARGIN_OPTIONS), + description: t('Changing this control takes effect instantly'), + }, + }, + ], + [ + { + name: 'y_axis_title_position', + config: { + type: 'SelectControl', + freeForm: true, + clearable: false, + label: t('Y AXIS TITLE POSITION'), + renderTrigger: true, + default: TITLE_POSITION_OPTIONS[0], + choices: formatSelectOptions(TITLE_POSITION_OPTIONS), + description: t('Changing this control takes effect instantly'), + }, + }, + ], + ], +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx new file mode 100644 index 000000000000..b65b52db768c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx @@ -0,0 +1,133 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + legacyValidateInteger, + legacyValidateNumber, + t, +} from '@superset-ui/core'; +import { ControlPanelSectionConfig } from '../types'; + +export const FORECAST_DEFAULT_DATA = { + forecastEnabled: false, + forecastInterval: 0.8, + forecastPeriods: 10, + forecastSeasonalityDaily: null, + forecastSeasonalityWeekly: null, + forecastSeasonalityYearly: null, +}; + +export const forecastIntervalControls: ControlPanelSectionConfig = { + label: t('Predictive Analytics'), + expanded: false, + controlSetRows: [ + [ + { + name: 'forecastEnabled', + config: { + type: 'CheckboxControl', + label: t('Enable forecast'), + renderTrigger: false, + default: FORECAST_DEFAULT_DATA.forecastEnabled, + description: t('Enable forecasting'), + }, + }, + ], + [ + { + name: 'forecastPeriods', + config: { + type: 'TextControl', + label: t('Forecast periods'), + validators: [legacyValidateInteger], + default: FORECAST_DEFAULT_DATA.forecastPeriods, + description: t( + 'How many periods into the future do we want to predict', + ), + }, + }, + ], + [ + { + name: 'forecastInterval', + config: { + type: 'TextControl', + label: t('Confidence interval'), + validators: [legacyValidateNumber], + default: FORECAST_DEFAULT_DATA.forecastInterval, + description: t( + 'Width of the confidence interval. Should be between 0 and 1', + ), + }, + }, + { + name: 'forecastSeasonalityYearly', + config: { + type: 'SelectControl', + freeForm: true, + label: 'Yearly seasonality', + choices: [ + [null, 'default'], + [true, 'Yes'], + [false, 'No'], + ], + default: FORECAST_DEFAULT_DATA.forecastSeasonalityYearly, + description: t( + 'Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.', + ), + }, + }, + ], + [ + { + name: 'forecastSeasonalityWeekly', + config: { + type: 'SelectControl', + freeForm: true, + label: 'Weekly seasonality', + choices: [ + [null, 'default'], + [true, 'Yes'], + [false, 'No'], + ], + default: FORECAST_DEFAULT_DATA.forecastSeasonalityWeekly, + description: t( + 'Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.', + ), + }, + }, + { + name: 'forecastSeasonalityDaily', + config: { + type: 'SelectControl', + freeForm: true, + label: 'Daily seasonality', + choices: [ + [null, 'default'], + [true, 'Yes'], + [false, 'No'], + ], + default: FORECAST_DEFAULT_DATA.forecastSeasonalityDaily, + description: t( + 'Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.', + ), + }, + }, + ], + ], +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/index.ts new file mode 100644 index 000000000000..2f6496e67ab7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/index.ts @@ -0,0 +1,24 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export * from './sections'; +export * from './advancedAnalytics'; +export * from './annotationsAndLayers'; +export * from './forecastInterval'; +export * from './chartTitle'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/sections.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/sections.tsx new file mode 100644 index 000000000000..1c99593ad85a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/sections/sections.tsx @@ -0,0 +1,130 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { ControlPanelSectionConfig } from '../types'; + +// A few standard controls sections that are used internally. +// Not recommended for use in third-party plugins. + +const baseTimeSection = { + label: t('Time'), + expanded: true, + description: t('Time related form attributes'), +}; + +export const legacyTimeseriesTime: ControlPanelSectionConfig = { + ...baseTimeSection, + controlSetRows: [ + ['granularity'], + ['druid_time_origin'], + ['granularity_sqla'], + ['time_grain_sqla'], + ['time_range'], + ], +}; + +export const legacyRegularTime: ControlPanelSectionConfig = { + ...baseTimeSection, + controlSetRows: [['granularity_sqla'], ['time_range']], +}; + +export const datasourceAndVizType: ControlPanelSectionConfig = { + label: t('Datasource & Chart Type'), + expanded: true, + controlSetRows: [ + ['datasource'], + ['viz_type'], + [ + { + name: 'slice_id', + config: { + type: 'HiddenControl', + label: t('Chart ID'), + hidden: true, + description: t('The id of the active chart'), + }, + }, + { + name: 'cache_timeout', + config: { + type: 'HiddenControl', + label: t('Cache Timeout (seconds)'), + hidden: true, + description: t('The number of seconds before expiring the cache'), + }, + }, + { + name: 'url_params', + config: { + type: 'HiddenControl', + label: t('URL Parameters'), + hidden: true, + description: t( + 'Extra url parameters for use in Jinja templated queries', + ), + }, + }, + { + name: 'custom_params', + config: { + type: 'HiddenControl', + label: t('Extra Parameters'), + hidden: true, + description: t( + 'Extra parameters that any plugins can choose to set for use in Jinja templated queries', + ), + }, + }, + { + name: 'time_range_endpoints', + config: { + type: 'HiddenControl', + label: t('Time range endpoints'), + hidden: true, + description: t('Time range endpoints (SIP-15)'), + }, + }, + ], + ], +}; + +export const colorScheme: ControlPanelSectionConfig = { + label: t('Color Scheme'), + controlSetRows: [['color_scheme']], +}; + +export const annotations: ControlPanelSectionConfig = { + label: t('Annotations and Layers'), + tabOverride: 'data', + expanded: true, + controlSetRows: [ + [ + { + name: 'annotation_layers', + config: { + type: 'AnnotationLayerControl', + label: '', + default: [], + description: t('Annotation Layers'), + renderTrigger: true, + }, + }, + ], + ], +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx new file mode 100644 index 000000000000..55c560cb7935 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx @@ -0,0 +1,181 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { useMemo, useState } from 'react'; +import { + ChartDataResponseResult, + useTheme, + t, + GenericDataType, +} from '@superset-ui/core'; +import ControlHeader from '../../../components/ControlHeader'; +import { ControlComponentProps } from '../types'; + +import ColumnConfigItem from './ColumnConfigItem'; +import { + ColumnConfigInfo, + ColumnConfig, + ColumnConfigFormLayout, +} from './types'; +import { DEFAULT_CONFIG_FORM_LAYOUT } from './constants'; +import { COLUMN_NAME_ALIASES } from '../../../constants'; + +export type ColumnConfigControlProps = + ControlComponentProps> & { + queryResponse?: ChartDataResponseResult; + configFormLayout?: ColumnConfigFormLayout; + appliedColumnNames?: string[]; + emitFilter: boolean; + }; + +/** + * Max number of columns to show by default. + */ +const MAX_NUM_COLS = 10; + +/** + * Add per-column config to queried results. + */ +export default function ColumnConfigControl({ + queryResponse, + appliedColumnNames = [], + value, + onChange, + configFormLayout = DEFAULT_CONFIG_FORM_LAYOUT, + emitFilter, + ...props +}: ColumnConfigControlProps) { + if (emitFilter) { + Object.values(configFormLayout).forEach(array_of_array => { + if (!array_of_array.some(arr => arr.includes('emitTarget'))) { + array_of_array.push(['emitTarget']); + } + }); + } else { + Object.values(configFormLayout).forEach(array_of_array => { + const index = array_of_array.findIndex(arr => arr.includes('emitTarget')); + if (index > -1) { + array_of_array.splice(index, 1); + } + }); + } + + const { colnames: _colnames, coltypes: _coltypes } = queryResponse || {}; + let colnames: string[] = []; + let coltypes: GenericDataType[] = []; + if (appliedColumnNames.length === 0) { + colnames = _colnames || []; + coltypes = _coltypes || []; + } else { + const appliedCol = new Set(appliedColumnNames); + _colnames?.forEach((col, idx) => { + if (appliedCol.has(col)) { + colnames.push(col); + coltypes.push(_coltypes?.[idx] as GenericDataType); + } + }); + } + const theme = useTheme(); + const columnConfigs = useMemo(() => { + const configs: Record = {}; + colnames?.forEach((col, idx) => { + configs[col] = { + name: COLUMN_NAME_ALIASES[col] || col, + type: coltypes?.[idx], + config: value?.[col] || {}, + }; + }); + return configs; + }, [value, colnames, coltypes]); + const [showAllColumns, setShowAllColumns] = useState(false); + + const getColumnInfo = (col: string) => columnConfigs[col] || {}; + const setColumnConfig = (col: string, config: T) => { + if (onChange) { + // Only keep configs for known columns + const validConfigs: Record = + colnames && value + ? Object.fromEntries( + Object.entries(value).filter(([key]) => colnames.includes(key)), + ) + : { ...value }; + onChange({ + ...validConfigs, + [col]: config, + }); + } + }; + + if (!colnames || colnames.length === 0) return null; + + const needShowMoreButton = colnames.length > MAX_NUM_COLS + 2; + const cols = + needShowMoreButton && !showAllColumns + ? colnames.slice(0, MAX_NUM_COLS) + : colnames; + + return ( + <> + +
+ {cols.map(col => ( + setColumnConfig(col, config as T)} + configFormLayout={configFormLayout} + /> + ))} + {needShowMoreButton && ( +
setShowAllColumns(!showAllColumns)} + > + {showAllColumns ? ( + <> +   {t('Show less columns')} + + ) : ( + <> +   + {t('Show all columns')} + + )} +
+ )} +
+ + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigItem.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigItem.tsx new file mode 100644 index 000000000000..ee9c1ea17b41 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigItem.tsx @@ -0,0 +1,83 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { useTheme } from '@superset-ui/core'; +import { Popover } from 'antd'; +import ColumnTypeLabel from '../../../components/ColumnTypeLabel'; +import ColumnConfigPopover, { + ColumnConfigPopoverProps, +} from './ColumnConfigPopover'; + +export type ColumnConfigItemProps = ColumnConfigPopoverProps; + +export default React.memo(function ColumnConfigItem({ + column, + onChange, + configFormLayout, +}: ColumnConfigItemProps) { + const { colors, gridUnit } = useTheme(); + const caretWidth = gridUnit * 6; + return ( + ( + + )} + trigger="click" + placement="right" + > +
.fa': { + color: colors.grayscale.light2, + }, + '&:hover > .fa': { + color: colors.grayscale.light1, + }, + }} + > + + {column.name} + +
+
+ ); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigPopover.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigPopover.tsx new file mode 100644 index 000000000000..dbc40b216e13 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigPopover.tsx @@ -0,0 +1,73 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { GenericDataType } from '@superset-ui/core'; +import ControlForm, { + ControlFormRow, + ControlFormItem, + ControlFormItemSpec, +} from '../../../components/ControlForm'; +import { + SHARED_COLUMN_CONFIG_PROPS, + SharedColumnConfigProp, +} from './constants'; +import { + ColumnConfig, + ColumnConfigFormLayout, + ColumnConfigInfo, +} from './types'; + +export type ColumnConfigPopoverProps = { + column: ColumnConfigInfo; + configFormLayout: ColumnConfigFormLayout; + onChange: (value: ColumnConfig) => void; +}; + +export default function ColumnConfigPopover({ + column, + configFormLayout, + onChange, +}: ColumnConfigPopoverProps) { + return ( + + {configFormLayout[ + column.type === undefined ? GenericDataType.STRING : column.type + ].map((row, i) => ( + + {row.map(meta => { + const key = typeof meta === 'string' ? meta : meta.name; + const override = + typeof meta === 'string' + ? {} + : 'override' in meta + ? meta.override + : meta.config; + const props = { + ...(key in SHARED_COLUMN_CONFIG_PROPS + ? SHARED_COLUMN_CONFIG_PROPS[key as SharedColumnConfigProp] + : undefined), + ...override, + } as ControlFormItemSpec; + return ; + })} + + ))} + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx new file mode 100644 index 000000000000..150f1e91f0bb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx @@ -0,0 +1,202 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { GenericDataType, t, validateNumber } from '@superset-ui/core'; +import { FaAlignLeft } from '@react-icons/all-files/fa/FaAlignLeft'; +import { FaAlignRight } from '@react-icons/all-files/fa/FaAlignRight'; +import { FaAlignCenter } from '@react-icons/all-files/fa/FaAlignCenter'; +import { + D3_FORMAT_DOCS, + D3_FORMAT_OPTIONS, + D3_TIME_FORMAT_DOCS, + D3_TIME_FORMAT_OPTIONS, +} from '../../../utils'; +import { ControlFormItemSpec } from '../../../components/ControlForm'; +import { ColumnConfigFormLayout } from './types'; + +export type SharedColumnConfigProp = + | 'alignPositiveNegative' + | 'colorPositiveNegative' + | 'columnWidth' + | 'fractionDigits' + | 'emitTarget' + | 'd3NumberFormat' + | 'd3SmallNumberFormat' + | 'd3TimeFormat' + | 'horizontalAlign' + | 'showCellBars'; + +const emitTarget: ControlFormItemSpec<'Input'> = { + controlType: 'Input', + label: t('Emit Target'), + description: t( + 'If you wish to specify a different target column than the original column, it can be entered here', + ), + defaultValue: '', + debounceDelay: 500, + validators: undefined, +}; + +const d3NumberFormat: ControlFormItemSpec<'Select'> = { + controlType: 'Select', + label: t('D3 format'), + description: D3_FORMAT_DOCS, + options: D3_FORMAT_OPTIONS, + defaultValue: D3_FORMAT_OPTIONS[0][0], + creatable: true, + minWidth: '14em', + debounceDelay: 500, +}; + +const d3TimeFormat: ControlFormItemSpec<'Select'> = { + controlType: 'Select', + label: t('D3 format'), + description: D3_TIME_FORMAT_DOCS, + options: D3_TIME_FORMAT_OPTIONS, + defaultValue: D3_TIME_FORMAT_OPTIONS[0][0], + creatable: true, + minWidth: '10em', + debounceDelay: 500, +}; + +const fractionDigits: ControlFormItemSpec<'Slider'> = { + controlType: 'Slider', + label: t('Fraction digits'), + description: t('Number of decimal digits to round numbers to'), + min: 0, + step: 1, + max: 100, + defaultValue: 100, +}; + +const columnWidth: ControlFormItemSpec<'InputNumber'> = { + controlType: 'InputNumber', + label: t('Min Width'), + description: t( + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space", + ), + width: 120, + placeholder: 'auto', + debounceDelay: 400, + validators: [validateNumber], +}; + +const horizontalAlign: ControlFormItemSpec<'RadioButtonControl'> & { + value?: 'left' | 'right' | 'center'; + defaultValue?: 'left' | 'right' | 'center'; +} = { + controlType: 'RadioButtonControl', + label: t('Text align'), + description: t('Horizontal alignment'), + width: 130, + debounceDelay: 50, + defaultValue: 'left', + options: [ + ['left', ], + ['center', ], + ['right', ], + ], +}; + +const showCellBars: ControlFormItemSpec<'Checkbox'> = { + controlType: 'Checkbox', + label: t('Show cell bars'), + description: t('Whether to display a bar chart background in table columns'), + defaultValue: true, + debounceDelay: 200, +}; + +const alignPositiveNegative: ControlFormItemSpec<'Checkbox'> = { + controlType: 'Checkbox', + label: t('Align +/-'), + description: t( + 'Whether to align positive and negative values in cell bar chart at 0', + ), + defaultValue: false, + debounceDelay: 200, +}; + +const colorPositiveNegative: ControlFormItemSpec<'Checkbox'> = { + controlType: 'Checkbox', + label: t('Color +/-'), + description: t( + 'Whether to colorize numeric values by if they are positive or negative', + ), + defaultValue: false, + debounceDelay: 200, +}; + +/** + * All configurable column formatting properties. + */ +export const SHARED_COLUMN_CONFIG_PROPS = { + d3NumberFormat, + emitTarget, + d3SmallNumberFormat: { + ...d3NumberFormat, + label: t('Small number format'), + description: t( + 'D3 number format for numbers between -1.0 and 1.0, ' + + 'useful when you want to have different siginificant digits for small and large numbers', + ), + }, + d3TimeFormat, + fractionDigits, + columnWidth, + horizontalAlign, + showCellBars, + alignPositiveNegative, + colorPositiveNegative, +}; + +export type SharedColumnConfig = { + [key in SharedColumnConfigProp]?: typeof SHARED_COLUMN_CONFIG_PROPS[key]['value']; +}; + +export const DEFAULT_CONFIG_FORM_LAYOUT: ColumnConfigFormLayout = { + [GenericDataType.STRING]: [ + [ + 'columnWidth', + { name: 'horizontalAlign', override: { defaultValue: 'left' } }, + ], + ], + [GenericDataType.NUMERIC]: [ + [ + 'columnWidth', + { name: 'horizontalAlign', override: { defaultValue: 'right' } }, + ], + ['d3NumberFormat'], + ['d3SmallNumberFormat'], + ['alignPositiveNegative', 'colorPositiveNegative'], + ['showCellBars'], + ], + [GenericDataType.TEMPORAL]: [ + [ + 'columnWidth', + { name: 'horizontalAlign', override: { defaultValue: 'left' } }, + ], + ['d3TimeFormat'], + ], + [GenericDataType.BOOLEAN]: [ + [ + 'columnWidth', + { name: 'horizontalAlign', override: { defaultValue: 'left' } }, + ], + ], +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/index.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/index.tsx new file mode 100644 index 000000000000..130fe8d091fa --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/index.tsx @@ -0,0 +1,24 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import ColumnConfigControl from './ColumnConfigControl'; + +export * from './types'; +export { default as __hack__reexport__ } from './types'; + +export default ColumnConfigControl; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/types.ts new file mode 100644 index 000000000000..ef449ef8ed5e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/types.ts @@ -0,0 +1,57 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + GenericDataType, + JsonObject, + StrictJsonValue, +} from '@superset-ui/core'; +import { ControlFormItemSpec } from '../../../components/ControlForm'; +import { + SHARED_COLUMN_CONFIG_PROPS, + SharedColumnConfigProp, +} from './constants'; + +/** + * Column formatting configs. + */ +export type ColumnConfig = { + [key in SharedColumnConfigProp]?: typeof SHARED_COLUMN_CONFIG_PROPS[key]['value']; +} & Record; + +/** + * All required info about a column to render the + * formatting. + */ +export interface ColumnConfigInfo { + name: string; + type?: GenericDataType; + config: JsonObject; +} + +export type ColumnConfigFormItem = + | SharedColumnConfigProp + | { name: SharedColumnConfigProp; override: Partial } + | { name: string; config: ControlFormItemSpec }; + +export type ColumnConfigFormLayout = Record< + GenericDataType, + ColumnConfigFormItem[][] +>; + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/RadioButtonControl.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/RadioButtonControl.tsx new file mode 100644 index 000000000000..e9f6a6f9bc4d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/RadioButtonControl.tsx @@ -0,0 +1,85 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { ReactNode } from 'react'; +import { JsonValue, useTheme } from '@superset-ui/core'; +import ControlHeader from '../../components/ControlHeader'; + +// [value, label] +export type RadioButtonOption = [ + JsonValue, + Exclude, +]; + +export interface RadioButtonControlProps { + label?: ReactNode; + description?: string; + options: RadioButtonOption[]; + hovered?: boolean; + value?: string; + onChange: (opt: RadioButtonOption[0]) => void; +} + +export default function RadioButtonControl({ + value: initialValue, + options, + onChange, + ...props +}: RadioButtonControlProps) { + const currentValue = initialValue || options[0][0]; + const theme = useTheme(); + return ( +
+ +
+ {options.map(([val, label]) => ( + + ))} +
+
+ ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/index.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/index.tsx new file mode 100644 index 000000000000..b6e635e25f0f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/index.tsx @@ -0,0 +1,32 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import RadioButtonControl from './RadioButtonControl'; +import ColumnConfigControl from './ColumnConfigControl'; + +export * from './RadioButtonControl'; +export * from './ColumnConfigControl'; + +/** + * Shared chart controls. Can be referred via string shortcuts in chart control + * configs. + */ +export default { + RadioButtonControl, + ColumnConfigControl, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/types.ts new file mode 100644 index 000000000000..4b4fc318a141 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/components/types.ts @@ -0,0 +1,40 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { QueryFormData, JsonValue } from '@superset-ui/core'; +import { ReactNode } from 'react'; + +/** + * Props passed to control components. + * + * Ref: superset-frontend/src/explore/components/Control.tsx + */ +export interface ControlComponentProps< + ValueType extends JsonValue = JsonValue, +> { + name: string; + label?: ReactNode; + description?: ReactNode; + formData?: QueryFormData | null; + value?: ValueType | null; + validationErrors?: any[]; + hidden?: boolean; + renderTrigger?: boolean; + hovered?: boolean; + onChange?: (value: ValueType) => void; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx new file mode 100644 index 000000000000..c3c34d1c2ecc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx @@ -0,0 +1,191 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + FeatureFlag, + isFeatureEnabled, + t, + validateNonEmpty, +} from '@superset-ui/core'; +import { ExtraControlProps, SharedControlConfig } from '../types'; +import { TIME_COLUMN_OPTION, TIME_FILTER_LABELS } from '../constants'; + +export const dndGroupByControl: SharedControlConfig<'DndColumnSelect'> = { + type: 'DndColumnSelect', + label: t('Group by'), + default: [], + description: t( + 'One or many columns to group by. High cardinality groupings should include a series limit ' + + 'to limit the number of fetched and rendered series.', + ), + mapStateToProps(state, { includeTime }) { + const newState: ExtraControlProps = {}; + if (state.datasource) { + const options = state.datasource.columns.filter(c => c.groupby); + if (includeTime) { + options.unshift(TIME_COLUMN_OPTION); + } + newState.options = Object.fromEntries( + options.map(option => [option.column_name, option]), + ); + newState.savedMetrics = state.datasource.metrics || []; + } + return newState; + }, +}; + +export const dndColumnsControl: typeof dndGroupByControl = { + ...dndGroupByControl, + label: t('Columns'), + description: t('One or many columns to pivot as columns'), +}; + +export const dndSeries: typeof dndGroupByControl = { + ...dndGroupByControl, + label: t('Series'), + multi: false, + default: null, + description: t( + 'Defines the grouping of entities. ' + + 'Each series is shown as a specific color on the chart and ' + + 'has a legend toggle', + ), +}; + +export const dndEntity: typeof dndGroupByControl = { + ...dndGroupByControl, + label: t('Entity'), + default: null, + multi: false, + validators: [validateNonEmpty], + description: t('This defines the element to be plotted on the chart'), +}; + +export const dnd_adhoc_filters: SharedControlConfig<'DndFilterSelect'> = { + type: 'DndFilterSelect', + label: t('Filters'), + default: null, + description: '', + mapStateToProps: ({ datasource, form_data }) => ({ + columns: datasource?.columns.filter(c => c.filterable) || [], + savedMetrics: datasource?.metrics || [], + // current active adhoc metrics + selectedMetrics: + form_data.metrics || (form_data.metric ? [form_data.metric] : []), + datasource, + }), + provideFormDataToProps: true, +}; + +export const dnd_adhoc_metrics: SharedControlConfig<'DndMetricSelect'> = { + type: 'DndMetricSelect', + multi: true, + label: t('Metrics'), + validators: [validateNonEmpty], + mapStateToProps: ({ datasource }) => ({ + columns: datasource ? datasource.columns : [], + savedMetrics: datasource ? datasource.metrics : [], + datasource, + datasourceType: datasource?.type, + }), + description: t('One or many metrics to display'), +}; + +export const dnd_adhoc_metric: SharedControlConfig<'DndMetricSelect'> = { + ...dnd_adhoc_metrics, + multi: false, + label: t('Metric'), + description: t('Metric'), +}; + +export const dnd_adhoc_metric_2: SharedControlConfig<'DndMetricSelect'> = { + ...dnd_adhoc_metric, + label: t('Right Axis Metric'), + description: t('Choose a metric for right axis'), +}; + +export const dnd_sort_by: SharedControlConfig<'DndMetricSelect'> = { + type: 'DndMetricSelect', + label: t('Sort by'), + default: null, + description: t( + 'Metric used to define how the top series are sorted if a series or row limit is present. ' + + 'If undefined reverts to the first metric (where appropriate).', + ), + mapStateToProps: ({ datasource }) => ({ + columns: datasource?.columns || [], + savedMetrics: datasource?.metrics || [], + datasource, + datasourceType: datasource?.type, + }), +}; + +export const dnd_size: SharedControlConfig<'DndMetricSelect'> = { + ...dnd_adhoc_metric, + label: t('Bubble Size'), + description: t('Metric used to calculate bubble size'), +}; + +export const dnd_x: SharedControlConfig<'DndMetricSelect'> = { + ...dnd_adhoc_metric, + label: t('X Axis'), + description: t('Metric assigned to the [X] axis'), +}; + +export const dnd_y: SharedControlConfig<'DndMetricSelect'> = { + ...dnd_adhoc_metric, + label: t('Y Axis'), + description: t('Metric assigned to the [Y] axis'), +}; + +export const dnd_secondary_metric: SharedControlConfig<'DndMetricSelect'> = { + ...dnd_adhoc_metric, + label: t('Color Metric'), + validators: [], + description: t('A metric to use for color'), +}; + +export const dnd_granularity_sqla: typeof dndGroupByControl = { + ...dndSeries, + label: TIME_FILTER_LABELS.granularity_sqla, + description: t( + 'The time column for the visualization. Note that you ' + + 'can define arbitrary expression that return a DATETIME ' + + 'column in the table. Also note that the ' + + 'filter below is applied against this column or ' + + 'expression', + ), + canDelete: false, + ghostButtonText: t( + isFeatureEnabled(FeatureFlag.ENABLE_DND_WITH_CLICK_UX) + ? 'Drop a temporal column here or click' + : 'Drop temporal column here', + ), + mapStateToProps: ({ datasource }) => { + const temporalColumns = datasource?.columns.filter(c => c.is_dttm) ?? []; + const options = Object.fromEntries( + temporalColumns.map(option => [option.column_name, option]), + ); + return { + options, + default: + datasource?.main_dttm_col || temporalColumns[0]?.column_name || null, + }; + }, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/emitFilterControl.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/emitFilterControl.tsx new file mode 100644 index 000000000000..5088ad155567 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/emitFilterControl.tsx @@ -0,0 +1,37 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { FeatureFlag, isFeatureEnabled, t } from '@superset-ui/core'; + +const enableCrossFilter = isFeatureEnabled(FeatureFlag.DASHBOARD_CROSS_FILTERS); + +export const emitFilterControl = enableCrossFilter + ? [ + { + name: 'emit_filter', + config: { + type: 'CheckboxControl', + label: t('Emit dashboard cross filters'), + default: false, + renderTrigger: true, + description: t('Emit dashboard cross filters.'), + }, + }, + ] + : []; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/index.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/index.tsx new file mode 100644 index 000000000000..6017d50b99e5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/index.tsx @@ -0,0 +1,524 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * This file exports all controls available for use in chart plugins internal to Superset. + * It is not recommended to use the controls here for any third-party plugins. + * + * While the React components located in `controls/components` represent different + * types of controls (CheckboxControl, SelectControl, TextControl, ...), the controls here + * represent instances of control types, that can be reused across visualization types. + * + * When controls are reused across viz types, their values are carried over as a user + * changes the chart types. + * + * While the keys defined in the control itself get passed to the controlType as props, + * here's a list of the keys that are common to all controls, and as a result define the + * control interface. + */ +import React from 'react'; +import { + FeatureFlag, + t, + getCategoricalSchemeRegistry, + getSequentialSchemeRegistry, + isFeatureEnabled, + SequentialScheme, + legacyValidateInteger, + validateNonEmpty, +} from '@superset-ui/core'; + +import { + formatSelectOptions, + D3_FORMAT_OPTIONS, + D3_FORMAT_DOCS, + D3_TIME_FORMAT_OPTIONS, + D3_TIME_FORMAT_DOCS, + DEFAULT_TIME_FORMAT, + DEFAULT_NUMBER_FORMAT, +} from '../utils'; +import { TIME_FILTER_LABELS, TIME_COLUMN_OPTION } from '../constants'; +import { + Metric, + SharedControlConfig, + ColumnMeta, + ExtraControlProps, + SelectControlConfig, +} from '../types'; +import { ColumnOption } from '../components/ColumnOption'; + +import { + dnd_adhoc_filters, + dnd_adhoc_metric, + dnd_adhoc_metrics, + dnd_granularity_sqla, + dnd_sort_by, + dnd_secondary_metric, + dnd_size, + dnd_x, + dnd_y, + dndColumnsControl, + dndEntity, + dndGroupByControl, + dndSeries, + dnd_adhoc_metric_2, +} from './dndControls'; + +const categoricalSchemeRegistry = getCategoricalSchemeRegistry(); +const sequentialSchemeRegistry = getSequentialSchemeRegistry(); + +export const PRIMARY_COLOR = { r: 0, g: 122, b: 135, a: 1 }; + +const ROW_LIMIT_OPTIONS = [10, 50, 100, 250, 500, 1000, 5000, 10000, 50000]; +const SERIES_LIMITS = [5, 10, 25, 50, 100, 500]; + +type Control = { + savedMetrics?: Metric[] | null; + default?: unknown; +}; + +const groupByControl: SharedControlConfig<'SelectControl', ColumnMeta> = { + type: 'SelectControl', + label: t('Group by'), + multi: true, + freeForm: true, + clearable: true, + default: [], + includeTime: false, + description: t( + 'One or many columns to group by. High cardinality groupings should include a sort by metric ' + + 'and series limit to limit the number of fetched and rendered series.', + ), + optionRenderer: c => , + valueRenderer: c => , + valueKey: 'column_name', + allowAll: true, + filterOption: ({ data: opt }, text: string) => + (opt.column_name && + opt.column_name.toLowerCase().includes(text.toLowerCase())) || + (opt.verbose_name && + opt.verbose_name.toLowerCase().includes(text.toLowerCase())) || + false, + promptTextCreator: (label: unknown) => label, + mapStateToProps(state, { includeTime }) { + const newState: ExtraControlProps = {}; + if (state.datasource) { + const options = state.datasource.columns.filter(c => c.groupby); + if (includeTime) { + options.unshift(TIME_COLUMN_OPTION); + } + newState.options = options; + } + return newState; + }, + commaChoosesOption: false, +}; + +const metrics: SharedControlConfig<'MetricsControl'> = { + type: 'MetricsControl', + multi: true, + label: t('Metrics'), + validators: [validateNonEmpty], + mapStateToProps: ({ datasource }) => ({ + columns: datasource ? datasource.columns : [], + savedMetrics: datasource ? datasource.metrics : [], + datasource, + datasourceType: datasource?.type, + }), + description: t('One or many metrics to display'), +}; + +const metric: SharedControlConfig<'MetricsControl'> = { + ...metrics, + multi: false, + label: t('Metric'), + description: t('Metric'), +}; + +const datasourceControl: SharedControlConfig<'DatasourceControl'> = { + type: 'DatasourceControl', + label: t('Datasource'), + default: null, + description: null, + mapStateToProps: ({ datasource, form_data }) => ({ + datasource, + form_data, + }), +}; + +const viz_type: SharedControlConfig<'VizTypeControl'> = { + type: 'VizTypeControl', + label: t('Visualization Type'), + default: 'table', + description: t('The type of visualization to display'), +}; + +const color_picker: SharedControlConfig<'ColorPickerControl'> = { + type: 'ColorPickerControl', + label: t('Fixed Color'), + description: t('Use this to define a static color for all circles'), + default: PRIMARY_COLOR, + renderTrigger: true, +}; + +const metric_2: SharedControlConfig<'MetricsControl'> = { + ...metric, + label: t('Right Axis Metric'), + clearable: true, + description: t('Choose a metric for right axis'), +}; + +const linear_color_scheme: SharedControlConfig<'ColorSchemeControl'> = { + type: 'ColorSchemeControl', + label: t('Linear Color Scheme'), + choices: () => + (sequentialSchemeRegistry.values() as SequentialScheme[]).map(value => [ + value.id, + value.label, + ]), + default: sequentialSchemeRegistry.getDefaultKey(), + clearable: false, + description: '', + renderTrigger: true, + schemes: () => sequentialSchemeRegistry.getMap(), + isLinear: true, +}; + +const secondary_metric: SharedControlConfig<'MetricsControl'> = { + ...metric, + label: t('Color Metric'), + default: null, + validators: [], + description: t('A metric to use for color'), +}; + +const columnsControl: typeof groupByControl = { + ...groupByControl, + label: t('Columns'), + description: t('One or many columns to pivot as columns'), +}; + +const druid_time_origin: SharedControlConfig<'SelectControl'> = { + type: 'SelectControl', + freeForm: true, + label: TIME_FILTER_LABELS.druid_time_origin, + choices: [ + ['', 'default'], + ['now', 'now'], + ], + default: null, + description: t( + 'Defines the origin where time buckets start, ' + + 'accepts natural dates as in `now`, `sunday` or `1970-01-01`', + ), +}; + +const granularity: SharedControlConfig<'SelectControl'> = { + type: 'SelectControl', + freeForm: true, + label: TIME_FILTER_LABELS.granularity, + default: 'one day', + choices: [ + [null, 'all'], + ['PT5S', '5 seconds'], + ['PT30S', '30 seconds'], + ['PT1M', '1 minute'], + ['PT5M', '5 minutes'], + ['PT30M', '30 minutes'], + ['PT1H', '1 hour'], + ['PT6H', '6 hour'], + ['P1D', '1 day'], + ['P7D', '7 days'], + ['P1W', 'week'], + ['week_starting_sunday', 'week starting Sunday'], + ['week_ending_saturday', 'week ending Saturday'], + ['P1M', 'month'], + ['P3M', 'quarter'], + ['P1Y', 'year'], + ], + description: t( + 'The time granularity for the visualization. Note that you ' + + 'can type and use simple natural language as in `10 seconds`, ' + + '`1 day` or `56 weeks`', + ), +}; + +const granularity_sqla: SharedControlConfig<'SelectControl', ColumnMeta> = { + type: 'SelectControl', + label: TIME_FILTER_LABELS.granularity_sqla, + description: t( + 'The time column for the visualization. Note that you ' + + 'can define arbitrary expression that return a DATETIME ' + + 'column in the table. Also note that the ' + + 'filter below is applied against this column or ' + + 'expression', + ), + default: (c: Control) => c.default, + clearable: false, + optionRenderer: c => , + valueRenderer: c => , + valueKey: 'column_name', + mapStateToProps: state => { + const props: Partial> = {}; + if (state.datasource) { + props.options = state.datasource.columns.filter(c => c.is_dttm); + props.default = null; + if (state.datasource.main_dttm_col) { + props.default = state.datasource.main_dttm_col; + } else if (props.options && props.options.length > 0) { + props.default = props.options[0].column_name; + } + } + return props; + }, +}; + +const time_grain_sqla: SharedControlConfig<'SelectControl'> = { + type: 'SelectControl', + label: TIME_FILTER_LABELS.time_grain_sqla, + default: 'P1D', + description: t( + 'The time granularity for the visualization. This ' + + 'applies a date transformation to alter ' + + 'your time column and defines a new time granularity. ' + + 'The options here are defined on a per database ' + + 'engine basis in the Superset source code.', + ), + mapStateToProps: ({ datasource }) => ({ + choices: datasource?.time_grain_sqla || null, + }), +}; + +const time_range: SharedControlConfig<'DateFilterControl'> = { + type: 'DateFilterControl', + freeForm: true, + label: TIME_FILTER_LABELS.time_range, + default: t('No filter'), // this value is translated, but the backend wouldn't understand a translated value? + description: t( + 'The time range for the visualization. All relative times, e.g. "Last month", ' + + '"Last 7 days", "now", etc. are evaluated on the server using the server\'s ' + + 'local time (sans timezone). All tooltips and placeholder times are expressed ' + + 'in UTC (sans timezone). The timestamps are then evaluated by the database ' + + "using the engine's local timezone. Note one can explicitly set the timezone " + + 'per the ISO 8601 format if specifying either the start and/or end time.', + ), + mapStateToProps: ({ datasource, form_data }) => ({ + datasource, + endpoints: form_data?.time_range_endpoints || null, + }), +}; + +const row_limit: SharedControlConfig<'SelectControl'> = { + type: 'SelectControl', + freeForm: true, + label: t('Row limit'), + validators: [legacyValidateInteger], + default: 10000, + choices: formatSelectOptions(ROW_LIMIT_OPTIONS), + description: t('Limits the number of rows that get displayed.'), +}; + +const limit: SharedControlConfig<'SelectControl'> = { + type: 'SelectControl', + freeForm: true, + label: t('Series limit'), + validators: [legacyValidateInteger], + choices: formatSelectOptions(SERIES_LIMITS), + clearable: true, + description: t( + 'Limits the number of series that get displayed. A joined subquery (or an extra phase ' + + 'where subqueries are not supported) is applied to limit the number of series that get ' + + 'fetched and rendered. This feature is useful when grouping by high cardinality ' + + 'column(s) though does increase the query complexity and cost.', + ), +}; + +const series_limit: SharedControlConfig<'SelectControl'> = { + type: 'SelectControl', + freeForm: true, + label: t('Series limit'), + validators: [legacyValidateInteger], + choices: formatSelectOptions(SERIES_LIMITS), + description: t( + 'Limits the number of series that get displayed. A joined subquery (or an extra phase ' + + 'where subqueries are not supported) is applied to limit the number of series that get ' + + 'fetched and rendered. This feature is useful when grouping by high cardinality ' + + 'column(s) though does increase the query complexity and cost.', + ), +}; + +const sort_by: SharedControlConfig<'MetricsControl'> = { + type: 'MetricsControl', + label: t('Sort by'), + default: null, + description: t( + 'Metric used to define how the top series are sorted if a series or row limit is present. ' + + 'If undefined reverts to the first metric (where appropriate).', + ), + mapStateToProps: ({ datasource }) => ({ + columns: datasource?.columns || [], + savedMetrics: datasource?.metrics || [], + datasource, + datasourceType: datasource?.type, + }), +}; + +const series: typeof groupByControl = { + ...groupByControl, + label: t('Series'), + multi: false, + default: null, + description: t( + 'Defines the grouping of entities. ' + + 'Each series is shown as a specific color on the chart and ' + + 'has a legend toggle', + ), +}; + +const entity: typeof groupByControl = { + ...groupByControl, + label: t('Entity'), + default: null, + multi: false, + validators: [validateNonEmpty], + description: t('This defines the element to be plotted on the chart'), +}; + +const x: SharedControlConfig<'MetricsControl'> = { + ...metric, + label: t('X Axis'), + description: t('Metric assigned to the [X] axis'), + default: null, +}; + +const y: SharedControlConfig<'MetricsControl'> = { + ...metric, + label: t('Y Axis'), + default: null, + description: t('Metric assigned to the [Y] axis'), +}; + +const size: SharedControlConfig<'MetricsControl'> = { + ...metric, + label: t('Bubble Size'), + description: t('Metric used to calculate bubble size'), + default: null, +}; + +const y_axis_format: SharedControlConfig<'SelectControl'> = { + type: 'SelectControl', + freeForm: true, + label: t('Y Axis Format'), + renderTrigger: true, + default: DEFAULT_NUMBER_FORMAT, + choices: D3_FORMAT_OPTIONS, + description: D3_FORMAT_DOCS, + mapStateToProps: state => { + const showWarning = state.controls?.comparison_type?.value === 'percentage'; + return { + warning: showWarning + ? t( + 'When `Calculation type` is set to "Percentage change", the Y ' + + 'Axis Format is forced to `.1%`', + ) + : null, + disabled: showWarning, + }; + }, +}; + +const x_axis_time_format: SharedControlConfig<'SelectControl'> = { + type: 'SelectControl', + freeForm: true, + label: t('Time format'), + renderTrigger: true, + default: DEFAULT_TIME_FORMAT, + choices: D3_TIME_FORMAT_OPTIONS, + description: D3_TIME_FORMAT_DOCS, +}; + +const adhoc_filters: SharedControlConfig<'AdhocFilterControl'> = { + type: 'AdhocFilterControl', + label: t('Filters'), + default: null, + description: '', + mapStateToProps: ({ datasource, form_data }) => ({ + columns: datasource?.columns.filter(c => c.filterable) || [], + savedMetrics: datasource?.metrics || [], + // current active adhoc metrics + selectedMetrics: + form_data.metrics || (form_data.metric ? [form_data.metric] : []), + datasource, + }), +}; + +const color_scheme: SharedControlConfig<'ColorSchemeControl'> = { + type: 'ColorSchemeControl', + label: t('Color Scheme'), + default: categoricalSchemeRegistry.getDefaultKey(), + renderTrigger: true, + choices: () => categoricalSchemeRegistry.keys().map(s => [s, s]), + description: t('The color scheme for rendering chart'), + schemes: () => categoricalSchemeRegistry.getMap(), + mapStateToProps: state => ({ + dashboardId: state?.form_data?.dashboardId, + }), +}; + +const enableExploreDnd = isFeatureEnabled( + FeatureFlag.ENABLE_EXPLORE_DRAG_AND_DROP, +); + +const sharedControls = { + metrics: enableExploreDnd ? dnd_adhoc_metrics : metrics, + metric: enableExploreDnd ? dnd_adhoc_metric : metric, + datasource: datasourceControl, + viz_type, + color_picker, + metric_2: enableExploreDnd ? dnd_adhoc_metric_2 : metric_2, + linear_color_scheme, + secondary_metric: enableExploreDnd ? dnd_secondary_metric : secondary_metric, + groupby: enableExploreDnd ? dndGroupByControl : groupByControl, + columns: enableExploreDnd ? dndColumnsControl : columnsControl, + druid_time_origin, + granularity, + granularity_sqla: enableExploreDnd ? dnd_granularity_sqla : granularity_sqla, + time_grain_sqla, + time_range, + row_limit, + limit, + timeseries_limit_metric: enableExploreDnd ? dnd_sort_by : sort_by, + orderby: enableExploreDnd ? dnd_sort_by : sort_by, + series: enableExploreDnd ? dndSeries : series, + entity: enableExploreDnd ? dndEntity : entity, + x: enableExploreDnd ? dnd_x : x, + y: enableExploreDnd ? dnd_y : y, + size: enableExploreDnd ? dnd_size : size, + y_axis_format, + x_axis_time_format, + adhoc_filters: enableExploreDnd ? dnd_adhoc_filters : adhoc_filters, + color_scheme, + series_columns: enableExploreDnd ? dndColumnsControl : columnsControl, + series_limit, + series_limit_metric: enableExploreDnd ? dnd_sort_by : sort_by, + legacy_order_by: enableExploreDnd ? dnd_sort_by : sort_by, +}; + +export { sharedControls, dndEntity, dndColumnsControl }; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/legacySortBy.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/legacySortBy.tsx new file mode 100644 index 000000000000..3cb882d29ece --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/shared-controls/legacySortBy.tsx @@ -0,0 +1,37 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { ControlSetRow } from '../types'; + +export const legacySortBy: ControlSetRow[] = [ + ['legacy_order_by'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort descending'), + default: true, + description: t( + 'Whether to sort descending or ascending. Takes effect only when "Sort by" is set', + ), + }, + }, + ], +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/types.ts new file mode 100644 index 000000000000..6188d39663ef --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/types.ts @@ -0,0 +1,403 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { ReactNode, ReactText, ReactElement } from 'react'; +import { + AdhocColumn, + Column, + DatasourceType, + JsonValue, + Metric, + QueryFormData, +} from '@superset-ui/core'; +import { sharedControls } from './shared-controls'; +import sharedControlComponents from './shared-controls/components'; + +export { Metric } from '@superset-ui/core'; +export { ControlFormItemSpec } from './components/ControlForm'; +export { ControlComponentProps } from './shared-controls/components/types'; + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +type AnyDict = Record; +interface Action { + type: string; +} +interface AnyAction extends Action, AnyDict {} + +export type SharedControls = typeof sharedControls; +export type SharedControlAlias = keyof typeof sharedControls; +export type SharedControlComponents = typeof sharedControlComponents; + +/** ---------------------------------------------- + * Input data/props while rendering + * ---------------------------------------------*/ +export type ColumnMeta = Omit & { + id?: number; +} & AnyDict; + +export interface DatasourceMeta { + id: number; + type: DatasourceType; + columns: ColumnMeta[]; + metrics: Metric[]; + column_format: Record; + verbose_map: Record; + main_dttm_col: string; + // eg. ['["ds", true]', 'ds [asc]'] + order_by_choices?: [string, string][] | null; + time_grain_sqla?: string; + granularity_sqla?: string; + datasource_name: string | null; + description: string | null; +} + +export interface ControlPanelState { + form_data: QueryFormData; + datasource: DatasourceMeta | null; + controls: ControlStateMapping; +} + +/** + * The action dispather will call Redux `dispatch` internally and return what's + * returned from `dispatch`, which by default is the original or another action. + */ +export interface ActionDispatcher< + ARGS extends unknown[], + A extends Action = AnyAction, +> { + (...args: ARGS): A; +} + +/** + * Mapping of action dispatchers + */ +export interface ControlPanelActionDispatchers { + setDatasource: ActionDispatcher<[DatasourceMeta]>; +} + +/** + * Additional control props obtained from `mapStateToProps`. + */ +export type ExtraControlProps = { + value?: JsonValue; +} & AnyDict; + +// Ref:superset-frontend/src/explore/store.js +export type ControlState< + T = ControlType, + O extends SelectOption = SelectOption, +> = ControlConfig & ExtraControlProps; + +export interface ControlStateMapping { + [key: string]: ControlState; +} + +// Ref: superset-frontend/src/explore/components/ControlPanelsContainer.jsx +export interface ControlPanelsContainerProps extends AnyDict { + actions: ControlPanelActionDispatchers; + controls: ControlStateMapping; + exportState: AnyDict; + form_data: QueryFormData; +} + +/** ---------------------------------------------- + * Config for a chart Control + * ---------------------------------------------*/ + +// Ref: superset-frontend/src/explore/components/controls/index.js +export type InternalControlType = + | 'AnnotationLayerControl' + | 'BoundsControl' + | 'CheckboxControl' + | 'CollectionControl' + | 'ColorPickerControl' + | 'ColorSchemeControl' + | 'DatasourceControl' + | 'DateFilterControl' + | 'FixedOrMetricControl' + | 'HiddenControl' + | 'SelectAsyncControl' + | 'SelectControl' + | 'SliderControl' + | 'SpatialControl' + | 'TextAreaControl' + | 'TextControl' + | 'TimeSeriesColumnControl' + | 'ViewportControl' + | 'VizTypeControl' + | 'MetricsControl' + | 'AdhocFilterControl' + | 'FilterBoxItemControl' + | 'DndColumnSelect' + | 'DndFilterSelect' + | 'DndMetricSelect' + | keyof SharedControlComponents; // expanded in `expandControlConfig` + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export type ControlType = InternalControlType | React.ComponentType; + +export type TabOverride = 'data' | 'customize' | boolean; + +/** + * Control config specifying how chart controls appear in the control panel, all + * these configs will be passed to the UI component for control as props. + * + * - type: the control type, referencing a React component of the same name + * - label: the label as shown in the control's header + * - description: shown in the info tooltip of the control's header + * - default: the default value when opening a new chart, or changing visualization type + * - renderTrigger: a bool that defines whether the visualization should be re-rendered + * when changed. This should `true` for controls that only affect the rendering (client side) + * and don't affect the query or backend data processing as those require to re run a query + * and fetch the data + * - validators: an array of functions that will receive the value of the component and + * should return error messages when the value is not valid. The error message gets + * bubbled up to the control header, section header and query panel header. + * - warning: text shown as a tooltip on a warning icon in the control's header + * - error: text shown as a tooltip on a error icon in the control's header + * - mapStateToProps: a function that receives the App's state and return an object of k/v + * to overwrite configuration at runtime. This is useful to alter a component based on + * anything external to it, like another control's value. For instance it's possible to + * show a warning based on the value of another component. It's also possible to bind + * arbitrary data from the redux store to the component this way. + * - tabOverride: set to 'data' if you want to force a renderTrigger to show up on the `Data` + tab, or 'customize' if you want it to show up on that tam. Otherwise sections with ALL + `renderTrigger: true` components will show up on the `Customize` tab. + * - visibility: a function that uses control panel props to check whether a control should + * be visibile. + */ +export interface BaseControlConfig< + T extends ControlType = ControlType, + O extends SelectOption = SelectOption, + V = JsonValue, +> extends AnyDict { + type: T; + label?: ReactNode; + description?: ReactNode; + default?: V; + renderTrigger?: boolean; + validators?: ControlValueValidator[]; + warning?: ReactNode; + error?: ReactNode; + /** + * Add additional props to chart control. + */ + mapStateToProps?: ( + state: ControlPanelState, + controlState: ControlState, + // TODO: add strict `chartState` typing (see superset-frontend/src/explore/types) + chartState?: AnyDict, + ) => ExtraControlProps; + visibility?: (props: ControlPanelsContainerProps) => boolean; +} + +export interface ControlValueValidator< + T = ControlType, + O extends SelectOption = SelectOption, + V = unknown, +> { + (value: V, state?: ControlState): boolean | string; +} + +/** -------------------------------------------- + * Additional Config for specific control Types + * --------------------------------------------- */ +export type SelectOption = AnyDict | string | [ReactText, ReactNode]; + +export type SelectControlType = + | 'SelectControl' + | 'SelectAsyncControl' + | 'MetricsControl' + | 'FixedOrMetricControl' + | 'AdhocFilterControl' + | 'FilterBoxItemControl'; + +// via react-select/src/filters +interface FilterOption { + label: string; + value: string; + data: T; +} + +// Ref: superset-frontend/src/components/Select/SupersetStyledSelect.tsx +export interface SelectControlConfig< + O extends SelectOption = SelectOption, + T extends SelectControlType = SelectControlType, +> extends BaseControlConfig { + clearable?: boolean; + freeForm?: boolean; + multi?: boolean; + valueKey?: string; + labelKey?: string; + options?: O[]; + optionRenderer?: (option: O) => ReactNode; + valueRenderer?: (option: O) => ReactNode; + filterOption?: + | ((option: FilterOption, rawInput: string) => Boolean) + | null; +} + +export type SharedControlConfig< + T extends InternalControlType = InternalControlType, + O extends SelectOption = SelectOption, +> = T extends SelectControlType + ? SelectControlConfig + : BaseControlConfig; + +/** -------------------------------------------- + * Custom controls + * --------------------------------------------- */ +export type CustomControlConfig

= BaseControlConfig< + React.ComponentType

+> & + // two run-time properties from superset-frontend/src/explore/components/Control.jsx + Omit; + +// Catch-all ControlConfig +// - if T is known control types, return SharedControlConfig, +// - if T is object, assume a CustomComponent +// - otherwise assume it's a custom component control +export type ControlConfig< + T = AnyDict, + O extends SelectOption = SelectOption, +> = T extends InternalControlType + ? SharedControlConfig + : T extends object + ? CustomControlConfig // eslint-disable-next-line @typescript-eslint/no-explicit-any + : CustomControlConfig; + +/** =========================================================== + * Chart plugin control panel config + * ========================================================= */ +export type SharedSectionAlias = + | 'annotations' + | 'colorScheme' + | 'datasourceAndVizType' + | 'druidTimeSeries' + | 'sqlaTimeSeries' + | 'NVD3TimeSeries'; + +export interface OverrideSharedControlItem< + A extends SharedControlAlias = SharedControlAlias, +> { + name: A; + override: Partial; +} + +export type CustomControlItem = { + name: string; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + config: BaseControlConfig; +}; + +// use ReactElement instead of ReactNode because `string`, `number`, etc. may +// interfere with other ControlSetItem types +export type ExpandedControlItem = CustomControlItem | ReactElement | null; + +export type ControlSetItem = + | SharedControlAlias + | OverrideSharedControlItem + | ExpandedControlItem; + +export type ControlSetRow = ControlSetItem[]; + +// Ref: +// - superset-frontend/src/explore/components/ControlPanelsContainer.jsx +// - superset-frontend/src/explore/components/ControlPanelSection.jsx +export interface ControlPanelSectionConfig { + label: ReactNode; + description?: ReactNode; + expanded?: boolean; + tabOverride?: TabOverride; + controlSetRows: ControlSetRow[]; +} + +export interface ControlPanelConfig { + controlPanelSections: ControlPanelSectionConfig[]; + controlOverrides?: ControlOverrides; + sectionOverrides?: SectionOverrides; + onInit?: (state: ControlStateMapping) => void; +} + +export type ControlOverrides = { + [P in SharedControlAlias]?: Partial; +}; + +export type SectionOverrides = { + [P in SharedSectionAlias]?: Partial; +}; + +// Ref: +// - superset-frontend/src/explore/components/ConditionalFormattingControl.tsx +export enum COMPARATOR { + NONE = 'None', + GREATER_THAN = '>', + LESS_THAN = '<', + GREATER_OR_EQUAL = '≥', + LESS_OR_EQUAL = '≤', + EQUAL = '=', + NOT_EQUAL = '≠', + BETWEEN = '< x <', + BETWEEN_OR_EQUAL = '≤ x ≤', + BETWEEN_OR_LEFT_EQUAL = '≤ x <', + BETWEEN_OR_RIGHT_EQUAL = '< x ≤', +} + +export const MULTIPLE_VALUE_COMPARATORS = [ + COMPARATOR.BETWEEN, + COMPARATOR.BETWEEN_OR_EQUAL, + COMPARATOR.BETWEEN_OR_LEFT_EQUAL, + COMPARATOR.BETWEEN_OR_RIGHT_EQUAL, +]; + +export type ConditionalFormattingConfig = { + operator?: COMPARATOR; + targetValue?: number; + targetValueLeft?: number; + targetValueRight?: number; + column?: string; + colorScheme?: string; +}; + +export type ColorFormatters = { + column: string; + getColorFromValue: (value: number) => string | undefined; +}[]; + +export default {}; + +export function isColumnMeta( + column: AdhocColumn | ColumnMeta, +): column is ColumnMeta { + return 'column_name' in column; +} + +export function isSavedExpression( + column: AdhocColumn | ColumnMeta, +): column is ColumnMeta { + return ( + 'column_name' in column && 'expression' in column && !!column.expression + ); +} + +export function isAdhocColumn( + column: AdhocColumn | ColumnMeta, +): column is AdhocColumn { + return 'label' in column && 'sqlExpression' in column; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts new file mode 100644 index 000000000000..2afac915269b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts @@ -0,0 +1,59 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, smartDateFormatter, NumberFormats } from '@superset-ui/core'; + +// D3 specific formatting config +export const D3_FORMAT_DOCS = t( + 'D3 format syntax: https://github.com/d3/d3-format', +); + +// input choices & options +export const D3_FORMAT_OPTIONS: [string, string][] = [ + [NumberFormats.SMART_NUMBER, t('Adaptative formating')], + ['~g', t('Original value')], + [',d', ',d (12345.432 => 12,345)'], + ['.1s', '.1s (12345.432 => 10k)'], + ['.3s', '.3s (12345.432 => 12.3k)'], + [',.1%', ',.1% (12345.432 => 1,234,543.2%)'], + ['.2%', '.2% (12345.432 => 1234543.20%)'], + ['.3%', '.3% (12345.432 => 1234543.200%)'], + ['.4r', '.4r (12345.432 => 12350)'], + [',.3f', ',.3f (12345.432 => 12,345.432)'], + ['+,', '+, (12345.432 => +12,345.432)'], + ['$,.2f', '$,.2f (12345.432 => $12,345.43)'], + ['DURATION', t('Duration in ms (66000 => 1m 6s)')], + ['DURATION_SUB', t('Duration in ms (1.40008 => 1ms 400µs 80ns)')], +]; + +export const D3_TIME_FORMAT_DOCS = t( + 'D3 time format syntax: https://github.com/d3/d3-time-format', +); + +export const D3_TIME_FORMAT_OPTIONS: [string, string][] = [ + [smartDateFormatter.id, t('Adaptative formating')], + ['%d/%m/%Y', '%d/%m/%Y | 14/01/2019'], + ['%m/%d/%Y', '%m/%d/%Y | 01/14/2019'], + ['%Y-%m-%d', '%Y-%m-%d | 2019-01-14'], + ['%Y-%m-%d %H:%M:%S', '%Y-%m-%d %H:%M:%S | 2019-01-14 01:32:10'], + ['%d-%m-%Y %H:%M:%S', '%d-%m-%Y %H:%M:%S | 14-01-2019 01:32:10'], + ['%H:%M:%S', '%H:%M:%S | 01:32:10'], +]; + +export const DEFAULT_NUMBER_FORMAT = D3_FORMAT_OPTIONS[0][0]; +export const DEFAULT_TIME_FORMAT = D3_TIME_FORMAT_OPTIONS[0][0]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/columnChoices.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/columnChoices.ts new file mode 100644 index 000000000000..3725f175e7ff --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/columnChoices.ts @@ -0,0 +1,37 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { DatasourceMeta } from '../types'; + +/** + * Convert Datasource columns to column choices + */ +export default function columnChoices( + datasource?: DatasourceMeta | null, +): [string, string][] { + return ( + datasource?.columns + .map((col): [string, string] => [ + col.column_name, + col.verbose_name || col.column_name, + ]) + .sort((opt1, opt2) => + opt1[1].toLowerCase() > opt2[1].toLowerCase() ? 1 : -1, + ) || [] + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/expandControlConfig.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/expandControlConfig.tsx new file mode 100644 index 000000000000..d06ad0d5127d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/expandControlConfig.tsx @@ -0,0 +1,102 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { ReactElement } from 'react'; +import { sharedControls } from '../shared-controls'; +import sharedControlComponents from '../shared-controls/components'; +import { + ControlType, + ControlSetItem, + ExpandedControlItem, + ControlOverrides, +} from '../types'; + +export function expandControlType(controlType: ControlType) { + if ( + typeof controlType === 'string' && + controlType in sharedControlComponents + ) { + return sharedControlComponents[ + controlType as keyof typeof sharedControlComponents + ]; + } + return controlType; +} + +/** + * Expand a shorthand control config item to full config in the format of + * { + * name: ..., + * config: { + * type: ..., + * ... + * } + * } + */ +export function expandControlConfig( + control: ControlSetItem, + controlOverrides: ControlOverrides = {}, +): ExpandedControlItem { + // one of the named shared controls + if (typeof control === 'string' && control in sharedControls) { + const name = control; + return { + name, + config: { + ...sharedControls[name], + ...controlOverrides[name], + }, + }; + } + // JSX/React element or NULL + if ( + !control || + typeof control === 'string' || + React.isValidElement(control) + ) { + return control as ReactElement; + } + // already fully expanded control config, e.g. + // { + // name: 'metric', + // config: { + // type: 'SelectControl' | SelectComonent + // } + // } + if ('name' in control && 'config' in control) { + return { + ...control, + config: { + ...control.config, + type: expandControlType(control.config.type as ControlType), + }, + }; + } + // apply overrides with shared controls + if ('override' in control && control.name in sharedControls) { + const { name, override } = control; + return { + name, + config: { + ...sharedControls[name], + ...override, + }, + }; + } + return null; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/getColorFormatters.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/getColorFormatters.ts new file mode 100644 index 000000000000..95d57ff88511 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/getColorFormatters.ts @@ -0,0 +1,209 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { DataRecord } from '@superset-ui/core'; +import { + ColorFormatters, + COMPARATOR, + ConditionalFormattingConfig, + MULTIPLE_VALUE_COMPARATORS, +} from '../types'; + +export const round = (num: number, precision = 0) => + Number(`${Math.round(Number(`${num}e+${precision}`))}e-${precision}`); + +export const rgbToRgba = (rgb: string, alpha: number) => + rgb.replace(/rgb/i, 'rgba').replace(/\)/i, `,${alpha})`); + +const MIN_OPACITY_BOUNDED = 0.05; +const MIN_OPACITY_UNBOUNDED = 0; +const MAX_OPACITY = 1; +export const getOpacity = ( + value: number, + cutoffPoint: number, + extremeValue: number, + minOpacity = MIN_OPACITY_BOUNDED, + maxOpacity = MAX_OPACITY, +) => + extremeValue === cutoffPoint + ? maxOpacity + : round( + Math.abs( + ((maxOpacity - minOpacity) / (extremeValue - cutoffPoint)) * + (value - cutoffPoint), + ) + minOpacity, + 2, + ); + +export const getColorFunction = ( + { + operator, + targetValue, + targetValueLeft, + targetValueRight, + colorScheme, + }: ConditionalFormattingConfig, + columnValues: number[], +) => { + let minOpacity = MIN_OPACITY_BOUNDED; + const maxOpacity = MAX_OPACITY; + + let comparatorFunction: ( + value: number, + allValues: number[], + ) => false | { cutoffValue: number; extremeValue: number }; + if (operator === undefined || colorScheme === undefined) { + return () => undefined; + } + if ( + MULTIPLE_VALUE_COMPARATORS.includes(operator) && + (targetValueLeft === undefined || targetValueRight === undefined) + ) { + return () => undefined; + } + if ( + operator !== COMPARATOR.NONE && + !MULTIPLE_VALUE_COMPARATORS.includes(operator) && + targetValue === undefined + ) { + return () => undefined; + } + switch (operator) { + case COMPARATOR.NONE: + minOpacity = MIN_OPACITY_UNBOUNDED; + comparatorFunction = (value: number, allValues: number[]) => { + const cutoffValue = Math.min(...allValues); + const extremeValue = Math.max(...allValues); + return value >= cutoffValue && value <= extremeValue + ? { cutoffValue, extremeValue } + : false; + }; + break; + case COMPARATOR.GREATER_THAN: + comparatorFunction = (value: number, allValues: number[]) => + value > targetValue! + ? { cutoffValue: targetValue!, extremeValue: Math.max(...allValues) } + : false; + break; + case COMPARATOR.LESS_THAN: + comparatorFunction = (value: number, allValues: number[]) => + value < targetValue! + ? { cutoffValue: targetValue!, extremeValue: Math.min(...allValues) } + : false; + break; + case COMPARATOR.GREATER_OR_EQUAL: + comparatorFunction = (value: number, allValues: number[]) => + value >= targetValue! + ? { cutoffValue: targetValue!, extremeValue: Math.max(...allValues) } + : false; + break; + case COMPARATOR.LESS_OR_EQUAL: + comparatorFunction = (value: number, allValues: number[]) => + value <= targetValue! + ? { cutoffValue: targetValue!, extremeValue: Math.min(...allValues) } + : false; + break; + case COMPARATOR.EQUAL: + comparatorFunction = (value: number) => + value === targetValue! + ? { cutoffValue: targetValue!, extremeValue: targetValue! } + : false; + break; + case COMPARATOR.NOT_EQUAL: + comparatorFunction = (value: number, allValues: number[]) => { + if (value === targetValue!) { + return false; + } + const max = Math.max(...allValues); + const min = Math.min(...allValues); + return { + cutoffValue: targetValue!, + extremeValue: + Math.abs(targetValue! - min) > Math.abs(max - targetValue!) + ? min + : max, + }; + }; + break; + case COMPARATOR.BETWEEN: + comparatorFunction = (value: number) => + value > targetValueLeft! && value < targetValueRight! + ? { cutoffValue: targetValueLeft!, extremeValue: targetValueRight! } + : false; + break; + case COMPARATOR.BETWEEN_OR_EQUAL: + comparatorFunction = (value: number) => + value >= targetValueLeft! && value <= targetValueRight! + ? { cutoffValue: targetValueLeft!, extremeValue: targetValueRight! } + : false; + break; + case COMPARATOR.BETWEEN_OR_LEFT_EQUAL: + comparatorFunction = (value: number) => + value >= targetValueLeft! && value < targetValueRight! + ? { cutoffValue: targetValueLeft!, extremeValue: targetValueRight! } + : false; + break; + case COMPARATOR.BETWEEN_OR_RIGHT_EQUAL: + comparatorFunction = (value: number) => + value > targetValueLeft! && value <= targetValueRight! + ? { cutoffValue: targetValueLeft!, extremeValue: targetValueRight! } + : false; + break; + default: + comparatorFunction = () => false; + break; + } + + return (value: number) => { + const compareResult = comparatorFunction(value, columnValues); + if (compareResult === false) return undefined; + const { cutoffValue, extremeValue } = compareResult; + return rgbToRgba( + colorScheme, + getOpacity(value, cutoffValue, extremeValue, minOpacity, maxOpacity), + ); + }; +}; + +export const getColorFormatters = ( + columnConfig: ConditionalFormattingConfig[] | undefined, + data: DataRecord[], +) => + columnConfig?.reduce( + (acc: ColorFormatters, config: ConditionalFormattingConfig) => { + if ( + config?.column !== undefined && + (config?.operator === COMPARATOR.NONE || + (config?.operator !== undefined && + (MULTIPLE_VALUE_COMPARATORS.includes(config?.operator) + ? config?.targetValueLeft !== undefined && + config?.targetValueRight !== undefined + : config?.targetValue !== undefined))) + ) { + acc.push({ + column: config?.column, + getColorFromValue: getColorFunction( + config, + data.map(row => row[config.column!] as number), + ), + }); + } + return acc; + }, + [], + ) ?? []; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/index.ts new file mode 100644 index 000000000000..bfb5b5e824e6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/index.ts @@ -0,0 +1,24 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export * from './selectOptions'; +export * from './D3Formatting'; +export * from './expandControlConfig'; +export * from './getColorFormatters'; +export { default as mainMetric } from './mainMetric'; +export { default as columnChoices } from './columnChoices'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/mainMetric.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/mainMetric.ts new file mode 100644 index 000000000000..a06ed31a541e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/mainMetric.ts @@ -0,0 +1,35 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { Metric } from '../types'; + +export default function mainMetric(savedMetrics?: Metric[] | null) { + // Using 'count' as default metric if it exists, otherwise using whatever one shows up first + let metric; + if (savedMetrics && savedMetrics.length > 0) { + savedMetrics.forEach(m => { + if (m.metric_name === 'count') { + metric = 'count'; + } + }); + if (!metric) { + metric = savedMetrics[0].metric_name; + } + } + return metric; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/selectOptions.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/selectOptions.ts new file mode 100644 index 000000000000..666ab35f45bc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/src/utils/selectOptions.ts @@ -0,0 +1,44 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +// helper functions for select controls + +export type Formattable = string | number; + +export type Formatted = [Formattable, string]; + +/** Turns an array of string/number options into options for a select input */ +export function formatSelectOptions( + options: (T | [T, string])[], +): [T, string][] { + return options.map(opt => (Array.isArray(opt) ? opt : [opt, opt.toString()])); +} + +/** + * Outputs array of arrays + * >> formatSelectOptionsForRange(1, 5) + * >> [[1,'1'], [2,'2'], [3,'3'], [4,'4'], [5,'5']] + */ +export function formatSelectOptionsForRange(start: number, end: number) { + const options: Formatted[] = []; + for (let i = start; i <= end; i += 1) { + options.push([i, i.toString()]); + } + return options; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/components/ColumnOption.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/components/ColumnOption.test.tsx new file mode 100644 index 000000000000..cce693473c6a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/components/ColumnOption.test.tsx @@ -0,0 +1,111 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { shallow, ShallowWrapper } from 'enzyme'; +import { GenericDataType } from '@superset-ui/core'; + +import { + ColumnOption, + ColumnOptionProps, + ColumnTypeLabel, + InfoTooltipWithTrigger, +} from '../../src'; + +describe('ColumnOption', () => { + const defaultProps: ColumnOptionProps = { + column: { + column_name: 'foo', + verbose_name: 'Foo', + expression: 'SUM(foo)', + description: 'Foo is the greatest column of all', + }, + showType: false, + }; + + let wrapper: ShallowWrapper; + let props: ColumnOptionProps; + const factory = (o: ColumnOptionProps) => ; + beforeEach(() => { + wrapper = shallow(factory(defaultProps)); + props = { ...defaultProps }; + }); + it('is a valid element', () => { + expect(React.isValidElement()).toBe(true); + }); + it('shows a label with verbose_name', () => { + const lbl = wrapper.find('.option-label'); + expect(lbl).toHaveLength(1); + expect(lbl.first().text()).toBe('Foo'); + }); + it('shows 2 InfoTooltipWithTrigger', () => { + expect(wrapper.find(InfoTooltipWithTrigger)).toHaveLength(2); + }); + it('shows only 1 InfoTooltipWithTrigger when no descr', () => { + delete props.column.description; + wrapper = shallow(factory(props)); + expect(wrapper.find(InfoTooltipWithTrigger)).toHaveLength(1); + }); + it('shows a label with column_name when no verbose_name', () => { + delete props.column.verbose_name; + wrapper = shallow(factory(props)); + expect(wrapper.find('.option-label').first().text()).toBe('foo'); + }); + it('shows a column type label when showType is true', () => { + wrapper = shallow( + factory({ + ...props, + showType: true, + column: { + column_name: 'foo', + type: 'VARCHAR', + type_generic: GenericDataType.STRING, + }, + }), + ); + expect(wrapper.find(ColumnTypeLabel)).toHaveLength(1); + }); + it('column with expression has correct column label if showType is true', () => { + props.showType = true; + wrapper = shallow(factory(props)); + expect(wrapper.find(ColumnTypeLabel)).toHaveLength(1); + expect(wrapper.find(ColumnTypeLabel).props().type).toBe('expression'); + }); + it('shows no column type label when type is null', () => { + wrapper = shallow( + factory({ + ...props, + showType: true, + column: { + column_name: 'foo', + }, + }), + ); + expect(wrapper.find(ColumnTypeLabel)).toHaveLength(0); + }); + it('dttm column has correct column label if showType is true', () => { + props.showType = true; + props.column.expression = undefined; + props.column.type_generic = GenericDataType.TEMPORAL; + wrapper = shallow(factory(props)); + expect(wrapper.find(ColumnTypeLabel)).toHaveLength(1); + expect(wrapper.find(ColumnTypeLabel).props().type).toBe( + GenericDataType.TEMPORAL, + ); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/components/ColumnTypeLabel.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/components/ColumnTypeLabel.test.tsx new file mode 100644 index 000000000000..04f76edca99a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/components/ColumnTypeLabel.test.tsx @@ -0,0 +1,79 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { shallow } from 'enzyme'; +import { GenericDataType } from '@superset-ui/core'; + +import { ColumnTypeLabel, ColumnTypeLabelProps } from '../../src'; + +describe('ColumnOption', () => { + const defaultProps = { + type: GenericDataType.STRING, + }; + + const props = { ...defaultProps }; + + function getWrapper(overrides: Partial) { + const wrapper = shallow(); + return wrapper; + } + + it('is a valid element', () => { + expect(React.isValidElement()).toBe( + true, + ); + }); + it('string type shows ABC icon', () => { + const lbl = getWrapper({ type: GenericDataType.STRING }).find( + '.type-label', + ); + expect(lbl).toHaveLength(1); + expect(lbl.first().text()).toBe('ABC'); + }); + it('int type shows # icon', () => { + const lbl = getWrapper({ type: GenericDataType.NUMERIC }).find( + '.type-label', + ); + expect(lbl).toHaveLength(1); + expect(lbl.first().text()).toBe('#'); + }); + it('bool type shows T/F icon', () => { + const lbl = getWrapper({ type: GenericDataType.BOOLEAN }).find( + '.type-label', + ); + expect(lbl).toHaveLength(1); + expect(lbl.first().text()).toBe('T/F'); + }); + it('expression type shows function icon', () => { + const lbl = getWrapper({ type: 'expression' }).find('.type-label'); + expect(lbl).toHaveLength(1); + expect(lbl.first().text()).toBe('ƒ'); + }); + it('unknown type shows question mark', () => { + const lbl = getWrapper({ type: undefined }).find('.type-label'); + expect(lbl).toHaveLength(1); + expect(lbl.first().text()).toBe('?'); + }); + it('datetime type displays', () => { + const lbl = getWrapper({ type: GenericDataType.TEMPORAL }).find( + '.fa-clock-o', + ); + expect(lbl).toHaveLength(1); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/components/InfoTooltipWithTrigger.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/components/InfoTooltipWithTrigger.test.tsx new file mode 100644 index 000000000000..06bee2af5275 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/components/InfoTooltipWithTrigger.test.tsx @@ -0,0 +1,58 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { shallow } from 'enzyme'; +import { Tooltip } from '../../src/components/Tooltip'; +import { InfoTooltipWithTrigger } from '../../src'; + +describe('InfoTooltipWithTrigger', () => { + it('renders a tooltip', () => { + const wrapper = shallow( + , + ); + expect(wrapper.find(Tooltip)).toHaveLength(1); + }); + + it('renders an info icon', () => { + const wrapper = shallow(); + expect(wrapper.find('.fa-info-circle')).toHaveLength(1); + }); + + it('responds to keypresses', () => { + const clickHandler = jest.fn(); + const wrapper = shallow( + , + ); + wrapper.find('.fa-info-circle').simulate('keypress', { key: 'Tab' }); + expect(clickHandler).toHaveBeenCalledTimes(0); + wrapper.find('.fa-info-circle').simulate('keypress', { key: 'Enter' }); + expect(clickHandler).toHaveBeenCalledTimes(1); + wrapper.find('.fa-info-circle').simulate('keypress', { key: ' ' }); + expect(clickHandler).toHaveBeenCalledTimes(2); + }); + + it('has a bsStyle', () => { + const wrapper = shallow(); + expect(wrapper.find('.text-something')).toHaveLength(1); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/components/MetricOption.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/components/MetricOption.test.tsx new file mode 100644 index 000000000000..737e2f3352a1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/components/MetricOption.test.tsx @@ -0,0 +1,89 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { shallow, ShallowWrapper } from 'enzyme'; +import { MetricOption, MetricOptionProps } from '../../src'; + +describe('MetricOption', () => { + const defaultProps = { + metric: { + metric_name: 'foo', + verbose_name: 'Foo', + expression: 'SUM(foo)', + label: 'test', + description: 'Foo is the greatest metric of all', + warning_text: 'Be careful when using foo', + }, + openInNewWindow: false, + showFormula: true, + showType: true, + url: '', + }; + + let wrapper: ShallowWrapper; + let props: MetricOptionProps; + const factory = (o: MetricOptionProps) => ; + beforeEach(() => { + wrapper = shallow(factory(defaultProps)); + props = { ...defaultProps }; + }); + it('is a valid element', () => { + expect(React.isValidElement()).toBe(true); + }); + it('shows a label with verbose_name', () => { + const lbl = wrapper.find('.option-label'); + expect(lbl).toHaveLength(1); + expect(lbl.first().text()).toBe('Foo'); + }); + it('shows 3 InfoTooltipWithTrigger', () => { + expect(wrapper.find('InfoTooltipWithTrigger')).toHaveLength(3); + }); + it('shows only 2 InfoTooltipWithTrigger when no descr', () => { + props.metric.description = ''; + wrapper = shallow(factory(props)); + expect(wrapper.find('InfoTooltipWithTrigger')).toHaveLength(2); + }); + it('shows a label with metric_name when no verbose_name', () => { + props.metric.verbose_name = ''; + wrapper = shallow(factory(props)); + expect(wrapper.find('.option-label').first().text()).toBe('foo'); + }); + it('shows only 1 InfoTooltipWithTrigger when no descr and no warning', () => { + props.metric.warning_text = ''; + wrapper = shallow(factory(props)); + expect(wrapper.find('InfoTooltipWithTrigger')).toHaveLength(1); + }); + it('sets target="_blank" when openInNewWindow is true', () => { + props.url = 'https://github.com/apache/incubator-superset'; + wrapper = shallow(factory(props)); + expect(wrapper.find('a').prop('target')).toBe(''); + + props.openInNewWindow = true; + wrapper = shallow(factory(props)); + expect(wrapper.find('a').prop('target')).toBe('_blank'); + }); + it('shows a metric type label when showType is true', () => { + props.showType = true; + wrapper = shallow(factory(props)); + expect(wrapper.find('ColumnTypeLabel')).toHaveLength(1); + }); + it('shows a Tooltip for the verbose metric name', () => { + expect(wrapper.find('Tooltip')).toHaveLength(1); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/index.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/index.test.ts new file mode 100644 index 000000000000..ebde70f86729 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/index.test.ts @@ -0,0 +1,26 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { sections } from '../src'; + +describe('@superset-ui/chart-controls', () => { + it('exports sections', () => { + expect(sections).toBeDefined(); + expect(sections.datasourceAndVizType).toBeDefined(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/shared-controls/emitFilterControl.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/shared-controls/emitFilterControl.test.tsx new file mode 100644 index 000000000000..019263ff8e57 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/shared-controls/emitFilterControl.test.tsx @@ -0,0 +1,26 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { emitFilterControl } from '../../src/shared-controls/emitFilterControl'; + +describe('isFeatureFlagEnabled', () => { + it('returns empty array for unset feature flag', () => { + expect(emitFilterControl).toHaveLength(0); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/tsconfig.json new file mode 100644 index 000000000000..481ca5b4db93 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "composite": false, + "emitDeclarationOnly": false, + "noEmit": true, + "rootDir": "." + }, + "extends": "../../../tsconfig.json", + "include": [ + "**/*", + "../types/**/*", + "../../../types/**/*" + ], + "references": [ + { + "path": ".." + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/types.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/types.test.ts new file mode 100644 index 000000000000..abb96e62f759 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/types.test.ts @@ -0,0 +1,72 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { AdhocColumn } from '@superset-ui/core'; +import { + isAdhocColumn, + isColumnMeta, + isSavedExpression, + ColumnMeta, +} from '../src'; + +const ADHOC_COLUMN: AdhocColumn = { + hasCustomLabel: true, + label: 'Adhoc column', + sqlExpression: 'case when 1 = 1 then 1 else 2 end', +}; +const COLUMN_META: ColumnMeta = { + column_name: 'my_col', +}; +const SAVED_EXPRESSION: ColumnMeta = { + column_name: 'Saved expression', + expression: 'case when 1 = 1 then 1 else 2 end', +}; + +describe('isColumnMeta', () => { + it('returns false for AdhocColumn', () => { + expect(isColumnMeta(ADHOC_COLUMN)).toEqual(false); + }); + + it('returns true for ColumnMeta', () => { + expect(isColumnMeta(COLUMN_META)).toEqual(true); + }); +}); + +describe('isAdhocColumn', () => { + it('returns true for AdhocColumn', () => { + expect(isAdhocColumn(ADHOC_COLUMN)).toEqual(true); + }); + + it('returns false for ColumnMeta', () => { + expect(isAdhocColumn(COLUMN_META)).toEqual(false); + }); +}); + +describe('isSavedExpression', () => { + it('returns false for AdhocColumn', () => { + expect(isSavedExpression(ADHOC_COLUMN)).toEqual(false); + }); + + it('returns false for ColumnMeta without expression', () => { + expect(isSavedExpression(COLUMN_META)).toEqual(false); + }); + + it('returns true for ColumnMeta with expression', () => { + expect(isSavedExpression(SAVED_EXPRESSION)).toEqual(true); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/columnChoices.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/columnChoices.test.tsx new file mode 100644 index 000000000000..d4e34c79c7fe --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/columnChoices.test.tsx @@ -0,0 +1,59 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { DatasourceType } from '@superset-ui/core'; +import { columnChoices } from '../../src'; + +describe('columnChoices()', () => { + it('should convert columns to choices', () => { + expect( + columnChoices({ + id: 1, + metrics: [], + type: DatasourceType.Table, + main_dttm_col: 'test', + time_grain_sqla: 'P1D', + columns: [ + { + column_name: 'fiz', + }, + { + column_name: 'about', + verbose_name: 'right', + }, + { + column_name: 'foo', + verbose_name: 'bar', + }, + ], + verbose_map: {}, + column_format: { fiz: 'NUMERIC', about: 'STRING', foo: 'DATE' }, + datasource_name: 'my_datasource', + description: 'this is my datasource', + }), + ).toEqual([ + ['foo', 'bar'], + ['fiz', 'fiz'], + ['about', 'right'], + ]); + }); + + it('should return empty array when no columns', () => { + expect(columnChoices(undefined)).toEqual([]); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/expandControlConfig.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/expandControlConfig.test.tsx new file mode 100644 index 000000000000..d2dae0595f71 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/expandControlConfig.test.tsx @@ -0,0 +1,92 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { + expandControlConfig, + sharedControls, + CustomControlItem, + sharedControlComponents, +} from '../../src'; + +describe('expandControlConfig()', () => { + it('expands shared control alias', () => { + expect(expandControlConfig('metrics')).toEqual({ + name: 'metrics', + config: sharedControls.metrics, + }); + }); + + it('expands control with overrides', () => { + expect( + expandControlConfig({ + name: 'metrics', + override: { + label: 'Custom Metric', + }, + }), + ).toEqual({ + name: 'metrics', + config: { + ...sharedControls.metrics, + label: 'Custom Metric', + }, + }); + }); + + it('leave full control untouched', () => { + const input = { + name: 'metrics', + config: { + type: 'SelectControl', + label: 'Custom Metric', + }, + }; + expect(expandControlConfig(input)).toEqual(input); + }); + + it('load shared components in chart-controls', () => { + const input = { + name: 'metrics', + config: { + type: 'RadioButtonControl', + label: 'Custom Metric', + }, + }; + expect( + (expandControlConfig(input) as CustomControlItem).config.type, + ).toEqual(sharedControlComponents.RadioButtonControl); + }); + + it('leave NULL and ReactElement untouched', () => { + expect(expandControlConfig(null)).toBeNull(); + const input =

Test

; + expect(expandControlConfig(input)).toBe(input); + }); + + it('leave unknown text untouched', () => { + const input = 'superset-ui'; + expect(expandControlConfig(input as never)).toBe(input); + }); + + it('return null for invalid configs', () => { + expect( + expandControlConfig({ type: 'SelectControl', label: 'Hello' } as never), + ).toBeNull(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/getColorFormatters.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/getColorFormatters.test.ts new file mode 100644 index 000000000000..bc69533c9255 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/getColorFormatters.test.ts @@ -0,0 +1,382 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { configure } from '@superset-ui/core'; +import { + COMPARATOR, + getOpacity, + rgbToRgba, + round, + getColorFormatters, + getColorFunction, +} from '../../src'; + +configure(); +const mockData = [ + { count: 50, sum: 200 }, + { count: 100, sum: 400 }, +]; +const countValues = mockData.map(row => row.count); + +describe('round', () => { + it('round', () => { + expect(round(1)).toEqual(1); + expect(round(1, 2)).toEqual(1); + expect(round(0.6)).toEqual(1); + expect(round(0.6, 1)).toEqual(0.6); + expect(round(0.64999, 2)).toEqual(0.65); + }); +}); + +describe('getOpacity', () => { + it('getOpacity', () => { + expect(getOpacity(100, 100, 100)).toEqual(1); + expect(getOpacity(75, 50, 100)).toEqual(0.53); + expect(getOpacity(75, 100, 50)).toEqual(0.53); + expect(getOpacity(100, 100, 50)).toEqual(0.05); + expect(getOpacity(100, 100, 100, 0, 0.8)).toEqual(0.8); + expect(getOpacity(100, 100, 50, 0, 1)).toEqual(0); + }); +}); + +describe('rgba', () => { + it('returns correct rgba value', () => { + expect(rgbToRgba('rgb(255,0,0)', 0.5)).toEqual('rgba(255,0,0,0.5)'); + }); +}); + +describe('getColorFunction()', () => { + it('getColorFunction GREATER_THAN', () => { + const colorFunction = getColorFunction( + { + operator: COMPARATOR.GREATER_THAN, + targetValue: 50, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(50)).toBeUndefined(); + expect(colorFunction(100)).toEqual('rgba(255,0,0,1)'); + }); + + it('getColorFunction LESS_THAN', () => { + const colorFunction = getColorFunction( + { + operator: COMPARATOR.LESS_THAN, + targetValue: 100, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(100)).toBeUndefined(); + expect(colorFunction(50)).toEqual('rgba(255,0,0,1)'); + }); + + it('getColorFunction GREATER_OR_EQUAL', () => { + const colorFunction = getColorFunction( + { + operator: COMPARATOR.GREATER_OR_EQUAL, + targetValue: 50, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(50)).toEqual('rgba(255,0,0,0.05)'); + expect(colorFunction(100)).toEqual('rgba(255,0,0,1)'); + expect(colorFunction(0)).toBeUndefined(); + }); + + it('getColorFunction LESS_OR_EQUAL', () => { + const colorFunction = getColorFunction( + { + operator: COMPARATOR.LESS_OR_EQUAL, + targetValue: 100, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(50)).toEqual('rgba(255,0,0,1)'); + expect(colorFunction(100)).toEqual('rgba(255,0,0,0.05)'); + expect(colorFunction(150)).toBeUndefined(); + }); + + it('getColorFunction EQUAL', () => { + const colorFunction = getColorFunction( + { + operator: COMPARATOR.EQUAL, + targetValue: 100, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(50)).toBeUndefined(); + expect(colorFunction(100)).toEqual('rgba(255,0,0,1)'); + }); + + it('getColorFunction NOT_EQUAL', () => { + let colorFunction = getColorFunction( + { + operator: COMPARATOR.NOT_EQUAL, + targetValue: 60, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(60)).toBeUndefined(); + expect(colorFunction(100)).toEqual('rgba(255,0,0,1)'); + expect(colorFunction(50)).toEqual('rgba(255,0,0,0.29)'); + + colorFunction = getColorFunction( + { + operator: COMPARATOR.NOT_EQUAL, + targetValue: 90, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(90)).toBeUndefined(); + expect(colorFunction(100)).toEqual('rgba(255,0,0,0.29)'); + expect(colorFunction(50)).toEqual('rgba(255,0,0,1)'); + }); + + it('getColorFunction BETWEEN', () => { + const colorFunction = getColorFunction( + { + operator: COMPARATOR.BETWEEN, + targetValueLeft: 75, + targetValueRight: 125, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(50)).toBeUndefined(); + expect(colorFunction(100)).toEqual('rgba(255,0,0,0.53)'); + }); + + it('getColorFunction BETWEEN_OR_EQUAL', () => { + const colorFunction = getColorFunction( + { + operator: COMPARATOR.BETWEEN_OR_EQUAL, + targetValueLeft: 50, + targetValueRight: 100, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(50)).toEqual('rgba(255,0,0,0.05)'); + expect(colorFunction(100)).toEqual('rgba(255,0,0,1)'); + expect(colorFunction(150)).toBeUndefined(); + }); + + it('getColorFunction BETWEEN_OR_LEFT_EQUAL', () => { + const colorFunction = getColorFunction( + { + operator: COMPARATOR.BETWEEN_OR_LEFT_EQUAL, + targetValueLeft: 50, + targetValueRight: 100, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(50)).toEqual('rgba(255,0,0,0.05)'); + expect(colorFunction(100)).toBeUndefined(); + }); + + it('getColorFunction BETWEEN_OR_RIGHT_EQUAL', () => { + const colorFunction = getColorFunction( + { + operator: COMPARATOR.BETWEEN_OR_RIGHT_EQUAL, + targetValueLeft: 50, + targetValueRight: 100, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(50)).toBeUndefined(); + expect(colorFunction(100)).toEqual('rgba(255,0,0,1)'); + }); + + it('getColorFunction GREATER_THAN with target value undefined', () => { + const colorFunction = getColorFunction( + { + operator: COMPARATOR.GREATER_THAN, + targetValue: undefined, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(50)).toBeUndefined(); + expect(colorFunction(100)).toBeUndefined(); + }); + + it('getColorFunction BETWEEN with target value left undefined', () => { + const colorFunction = getColorFunction( + { + operator: COMPARATOR.BETWEEN, + targetValueLeft: undefined, + targetValueRight: 100, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(50)).toBeUndefined(); + expect(colorFunction(100)).toBeUndefined(); + }); + + it('getColorFunction BETWEEN with target value right undefined', () => { + const colorFunction = getColorFunction( + { + operator: COMPARATOR.BETWEEN, + targetValueLeft: 50, + targetValueRight: undefined, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(50)).toBeUndefined(); + expect(colorFunction(100)).toBeUndefined(); + }); + + it('getColorFunction unsupported operator', () => { + const colorFunction = getColorFunction( + { + // @ts-ignore + operator: 'unsupported operator', + targetValue: 50, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(50)).toBeUndefined(); + expect(colorFunction(100)).toBeUndefined(); + }); + + it('getColorFunction with operator None', () => { + const colorFunction = getColorFunction( + { + operator: COMPARATOR.NONE, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(20)).toEqual(undefined); + expect(colorFunction(50)).toEqual('rgba(255,0,0,0)'); + expect(colorFunction(75)).toEqual('rgba(255,0,0,0.5)'); + expect(colorFunction(100)).toEqual('rgba(255,0,0,1)'); + expect(colorFunction(120)).toEqual(undefined); + }); + + it('getColorFunction with operator undefined', () => { + const colorFunction = getColorFunction( + { + operator: undefined, + targetValue: 150, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + countValues, + ); + expect(colorFunction(50)).toBeUndefined(); + expect(colorFunction(100)).toBeUndefined(); + }); + + it('getColorFunction with colorScheme undefined', () => { + const colorFunction = getColorFunction( + { + operator: COMPARATOR.GREATER_THAN, + targetValue: 150, + colorScheme: undefined, + column: 'count', + }, + countValues, + ); + expect(colorFunction(50)).toBeUndefined(); + expect(colorFunction(100)).toBeUndefined(); + }); +}); + +describe('getColorFormatters()', () => { + it('correct column config', () => { + const columnConfig = [ + { + operator: COMPARATOR.GREATER_THAN, + targetValue: 50, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + { + operator: COMPARATOR.LESS_THAN, + targetValue: 300, + colorScheme: 'rgb(255,0,0)', + column: 'sum', + }, + { + operator: COMPARATOR.BETWEEN, + targetValueLeft: 75, + targetValueRight: 125, + colorScheme: 'rgb(255,0,0)', + column: 'count', + }, + { + operator: COMPARATOR.GREATER_THAN, + targetValue: 150, + colorScheme: 'rgb(255,0,0)', + column: undefined, + }, + ]; + const colorFormatters = getColorFormatters(columnConfig, mockData); + expect(colorFormatters.length).toEqual(3); + + expect(colorFormatters[0].column).toEqual('count'); + expect(colorFormatters[0].getColorFromValue(100)).toEqual( + 'rgba(255,0,0,1)', + ); + + expect(colorFormatters[1].column).toEqual('sum'); + expect(colorFormatters[1].getColorFromValue(200)).toEqual( + 'rgba(255,0,0,1)', + ); + expect(colorFormatters[1].getColorFromValue(400)).toBeUndefined(); + + expect(colorFormatters[2].column).toEqual('count'); + expect(colorFormatters[2].getColorFromValue(100)).toEqual( + 'rgba(255,0,0,0.53)', + ); + }); + + it('undefined column config', () => { + const colorFormatters = getColorFormatters(undefined, mockData); + expect(colorFormatters.length).toEqual(0); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/mainMetric.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/mainMetric.test.ts new file mode 100644 index 000000000000..9385537d292c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/mainMetric.test.ts @@ -0,0 +1,38 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { mainMetric } from '../../src'; + +describe('mainMetric', () => { + it('is null when no options', () => { + expect(mainMetric([])).toBeUndefined(); + expect(mainMetric(null)).toBeUndefined(); + }); + it('prefers the "count" metric when first', () => { + const metrics = [{ metric_name: 'count' }, { metric_name: 'foo' }]; + expect(mainMetric(metrics)).toBe('count'); + }); + it('prefers the "count" metric when not first', () => { + const metrics = [{ metric_name: 'foo' }, { metric_name: 'count' }]; + expect(mainMetric(metrics)).toBe('count'); + }); + it('selects the first metric when "count" is not an option', () => { + const metrics = [{ metric_name: 'foo' }, { metric_name: 'not_count' }]; + expect(mainMetric(metrics)).toBe('foo'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/boxplotOperator.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/boxplotOperator.test.ts new file mode 100644 index 000000000000..4699fba9f699 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/boxplotOperator.test.ts @@ -0,0 +1,115 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { QueryObject, SqlaFormData } from '@superset-ui/core'; +import { boxplotOperator } from '../../../src'; + +const formData: SqlaFormData = { + metrics: [ + 'count(*)', + { label: 'sum(val)', expressionType: 'SQL', sqlExpression: 'sum(val)' }, + ], + time_range: '2015 : 2016', + time_grain_sqla: 'P1Y', + datasource: 'foo', + viz_type: 'table', +}; +const queryObject: QueryObject = { + metrics: [ + 'count(*)', + { label: 'sum(val)', expressionType: 'SQL', sqlExpression: 'sum(val)' }, + ], + time_range: '2015 : 2016', + granularity: 'P1Y', +}; + +test('should skip boxplotOperator', () => { + expect(boxplotOperator(formData, queryObject)).toEqual(undefined); +}); + +test('should do tukey boxplot', () => { + expect( + boxplotOperator( + { + ...formData, + whiskerOptions: 'Tukey', + }, + queryObject, + ), + ).toEqual({ + operation: 'boxplot', + options: { + whisker_type: 'tukey', + percentiles: undefined, + groupby: [], + metrics: ['count(*)', 'sum(val)'], + }, + }); +}); + +test('should do min/max boxplot', () => { + expect( + boxplotOperator( + { + ...formData, + whiskerOptions: 'Min/max (no outliers)', + }, + queryObject, + ), + ).toEqual({ + operation: 'boxplot', + options: { + whisker_type: 'min/max', + percentiles: undefined, + groupby: [], + metrics: ['count(*)', 'sum(val)'], + }, + }); +}); + +test('should do percentile boxplot', () => { + expect( + boxplotOperator( + { + ...formData, + whiskerOptions: '1/4 percentiles', + }, + queryObject, + ), + ).toEqual({ + operation: 'boxplot', + options: { + whisker_type: 'percentile', + percentiles: [1, 4], + groupby: [], + metrics: ['count(*)', 'sum(val)'], + }, + }); +}); + +test('should throw an error', () => { + expect(() => + boxplotOperator( + { + ...formData, + whiskerOptions: 'foobar', + }, + queryObject, + ), + ).toThrow('Unsupported whisker type: foobar'); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/contributionOperator.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/contributionOperator.test.ts new file mode 100644 index 000000000000..aa6404bb2635 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/contributionOperator.test.ts @@ -0,0 +1,54 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { QueryObject, SqlaFormData } from '@superset-ui/core'; +import { contributionOperator } from '../../../src'; + +const formData: SqlaFormData = { + metrics: [ + 'count(*)', + { label: 'sum(val)', expressionType: 'SQL', sqlExpression: 'sum(val)' }, + ], + time_range: '2015 : 2016', + granularity: 'month', + datasource: 'foo', + viz_type: 'table', +}; +const queryObject: QueryObject = { + metrics: [ + 'count(*)', + { label: 'sum(val)', expressionType: 'SQL', sqlExpression: 'sum(val)' }, + ], + time_range: '2015 : 2016', + granularity: 'month', +}; + +test('should skip contributionOperator', () => { + expect(contributionOperator(formData, queryObject)).toEqual(undefined); +}); + +test('should do contributionOperator', () => { + expect( + contributionOperator({ ...formData, contributionMode: 'row' }, queryObject), + ).toEqual({ + operation: 'contribution', + options: { + orientation: 'row', + }, + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/pivotOperator.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/pivotOperator.test.ts new file mode 100644 index 000000000000..8f522cc7a277 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/pivotOperator.test.ts @@ -0,0 +1,144 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { QueryObject, SqlaFormData } from '@superset-ui/core'; +import { pivotOperator } from '../../../src'; + +const formData: SqlaFormData = { + metrics: [ + 'count(*)', + { label: 'sum(val)', expressionType: 'SQL', sqlExpression: 'sum(val)' }, + ], + time_range: '2015 : 2016', + granularity: 'month', + datasource: 'foo', + viz_type: 'table', +}; +const queryObject: QueryObject = { + metrics: [ + 'count(*)', + { label: 'sum(val)', expressionType: 'SQL', sqlExpression: 'sum(val)' }, + ], + time_range: '2015 : 2016', + granularity: 'month', + post_processing: [ + { + operation: 'pivot', + options: { + index: ['__timestamp'], + columns: ['nation'], + aggregates: { + 'count(*)': { + operator: 'mean', + }, + }, + drop_missing_columns: false, + }, + }, + ], +}; + +test('skip pivot', () => { + expect(pivotOperator(formData, queryObject)).toEqual(undefined); + expect( + pivotOperator(formData, { ...queryObject, is_timeseries: false }), + ).toEqual(undefined); + expect( + pivotOperator(formData, { + ...queryObject, + is_timeseries: true, + metrics: [], + }), + ).toEqual(undefined); +}); + +test('pivot by __timestamp without groupby', () => { + expect( + pivotOperator(formData, { ...queryObject, is_timeseries: true }), + ).toEqual({ + operation: 'pivot', + options: { + index: ['__timestamp'], + columns: [], + aggregates: { + 'count(*)': { operator: 'mean' }, + 'sum(val)': { operator: 'mean' }, + }, + drop_missing_columns: false, + }, + }); +}); + +test('pivot by __timestamp with groupby', () => { + expect( + pivotOperator(formData, { + ...queryObject, + columns: ['foo', 'bar'], + is_timeseries: true, + }), + ).toEqual({ + operation: 'pivot', + options: { + index: ['__timestamp'], + columns: ['foo', 'bar'], + aggregates: { + 'count(*)': { operator: 'mean' }, + 'sum(val)': { operator: 'mean' }, + }, + drop_missing_columns: false, + }, + }); +}); + +test('timecompare in formdata', () => { + expect( + pivotOperator( + { + ...formData, + comparison_type: 'values', + time_compare: ['1 year ago', '1 year later'], + }, + { + ...queryObject, + columns: ['foo', 'bar'], + is_timeseries: true, + }, + ), + ).toEqual({ + operation: 'pivot', + options: { + aggregates: { + 'count(*)': { operator: 'mean' }, + 'count(*)__1 year ago': { operator: 'mean' }, + 'count(*)__1 year later': { operator: 'mean' }, + 'sum(val)': { + operator: 'mean', + }, + 'sum(val)__1 year ago': { + operator: 'mean', + }, + 'sum(val)__1 year later': { + operator: 'mean', + }, + }, + drop_missing_columns: false, + columns: ['foo', 'bar'], + index: ['__timestamp'], + }, + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/prophetOperator.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/prophetOperator.test.ts new file mode 100644 index 000000000000..d79868ad08c2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/prophetOperator.test.ts @@ -0,0 +1,70 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { QueryObject, SqlaFormData } from '@superset-ui/core'; +import { prophetOperator } from '../../../src'; + +const formData: SqlaFormData = { + metrics: [ + 'count(*)', + { label: 'sum(val)', expressionType: 'SQL', sqlExpression: 'sum(val)' }, + ], + time_range: '2015 : 2016', + time_grain_sqla: 'P1Y', + datasource: 'foo', + viz_type: 'table', +}; +const queryObject: QueryObject = { + metrics: [ + 'count(*)', + { label: 'sum(val)', expressionType: 'SQL', sqlExpression: 'sum(val)' }, + ], + time_range: '2015 : 2016', + granularity: 'P1Y', +}; + +test('should skip prophetOperator', () => { + expect(prophetOperator(formData, queryObject)).toEqual(undefined); +}); + +test('should do prophetOperator', () => { + expect( + prophetOperator( + { + ...formData, + forecastEnabled: true, + forecastPeriods: '3', + forecastInterval: '5', + forecastSeasonalityYearly: true, + forecastSeasonalityWeekly: false, + forecastSeasonalityDaily: false, + }, + queryObject, + ), + ).toEqual({ + operation: 'prophet', + options: { + time_grain: 'P1Y', + periods: 3.0, + confidence_interval: 5.0, + yearly_seasonality: true, + weekly_seasonality: false, + daily_seasonality: false, + }, + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/resampleOperator.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/resampleOperator.test.ts new file mode 100644 index 000000000000..bce5a84abc55 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/resampleOperator.test.ts @@ -0,0 +1,97 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { QueryObject, SqlaFormData } from '@superset-ui/core'; +import { resampleOperator } from '../../../src'; + +const formData: SqlaFormData = { + metrics: [ + 'count(*)', + { label: 'sum(val)', expressionType: 'SQL', sqlExpression: 'sum(val)' }, + ], + time_range: '2015 : 2016', + granularity: 'month', + datasource: 'foo', + viz_type: 'table', +}; +const queryObject: QueryObject = { + metrics: [ + 'count(*)', + { label: 'sum(val)', expressionType: 'SQL', sqlExpression: 'sum(val)' }, + ], + time_range: '2015 : 2016', + granularity: 'month', + post_processing: [ + { + operation: 'pivot', + options: { + index: ['__timestamp'], + columns: ['nation'], + aggregates: { + 'count(*)': { + operator: 'sum', + }, + }, + }, + }, + ], +}; + +test('should skip resampleOperator', () => { + expect(resampleOperator(formData, queryObject)).toEqual(undefined); + expect( + resampleOperator({ ...formData, resample_method: 'ffill' }, queryObject), + ).toEqual(undefined); + expect( + resampleOperator({ ...formData, resample_rule: '1D' }, queryObject), + ).toEqual(undefined); +}); + +test('should do resample', () => { + expect( + resampleOperator( + { ...formData, resample_method: 'ffill', resample_rule: '1D' }, + queryObject, + ), + ).toEqual({ + operation: 'resample', + options: { + method: 'ffill', + rule: '1D', + fill_value: null, + time_column: '__timestamp', + }, + }); +}); + +test('should do zerofill resample', () => { + expect( + resampleOperator( + { ...formData, resample_method: 'zerofill', resample_rule: '1D' }, + queryObject, + ), + ).toEqual({ + operation: 'resample', + options: { + method: 'asfreq', + rule: '1D', + fill_value: 0, + time_column: '__timestamp', + }, + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/rollingWindowOperator.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/rollingWindowOperator.test.ts new file mode 100644 index 000000000000..82e786a91b5f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/rollingWindowOperator.test.ts @@ -0,0 +1,166 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { QueryObject, SqlaFormData } from '@superset-ui/core'; +import { rollingWindowOperator } from '../../../src'; + +const formData: SqlaFormData = { + metrics: [ + 'count(*)', + { label: 'sum(val)', expressionType: 'SQL', sqlExpression: 'sum(val)' }, + ], + time_range: '2015 : 2016', + granularity: 'month', + datasource: 'foo', + viz_type: 'table', +}; +const queryObject: QueryObject = { + metrics: [ + 'count(*)', + { label: 'sum(val)', expressionType: 'SQL', sqlExpression: 'sum(val)' }, + ], + time_range: '2015 : 2016', + granularity: 'month', + post_processing: [ + { + operation: 'pivot', + options: { + index: ['__timestamp'], + columns: ['nation'], + aggregates: { + 'count(*)': { + operator: 'sum', + }, + }, + }, + }, + ], +}; + +test('skip transformation', () => { + expect(rollingWindowOperator(formData, queryObject)).toEqual(undefined); + expect( + rollingWindowOperator({ ...formData, rolling_type: 'None' }, queryObject), + ).toEqual(undefined); + expect( + rollingWindowOperator({ ...formData, rolling_type: 'foobar' }, queryObject), + ).toEqual(undefined); + + const formDataWithoutMetrics = { ...formData }; + delete formDataWithoutMetrics.metrics; + expect(rollingWindowOperator(formDataWithoutMetrics, queryObject)).toEqual( + undefined, + ); +}); + +test('rolling_type: cumsum', () => { + expect( + rollingWindowOperator({ ...formData, rolling_type: 'cumsum' }, queryObject), + ).toEqual({ + operation: 'cum', + options: { + operator: 'sum', + columns: { + 'count(*)': 'count(*)', + 'sum(val)': 'sum(val)', + }, + is_pivot_df: true, + }, + }); +}); + +test('rolling_type: sum/mean/std', () => { + const rollingTypes = ['sum', 'mean', 'std']; + rollingTypes.forEach(rollingType => { + expect( + rollingWindowOperator( + { ...formData, rolling_type: rollingType }, + queryObject, + ), + ).toEqual({ + operation: 'rolling', + options: { + rolling_type: rollingType, + window: 1, + min_periods: 0, + columns: { + 'count(*)': 'count(*)', + 'sum(val)': 'sum(val)', + }, + is_pivot_df: true, + }, + }); + }); +}); + +test('rolling window and "actual values" in the time compare', () => { + expect( + rollingWindowOperator( + { + ...formData, + rolling_type: 'cumsum', + comparison_type: 'values', + time_compare: ['1 year ago', '1 year later'], + }, + queryObject, + ), + ).toEqual({ + operation: 'cum', + options: { + operator: 'sum', + columns: { + 'count(*)': 'count(*)', + 'count(*)__1 year ago': 'count(*)__1 year ago', + 'count(*)__1 year later': 'count(*)__1 year later', + 'sum(val)': 'sum(val)', + 'sum(val)__1 year ago': 'sum(val)__1 year ago', + 'sum(val)__1 year later': 'sum(val)__1 year later', + }, + is_pivot_df: true, + }, + }); +}); + +test('rolling window and "difference / percentage / ratio" in the time compare', () => { + const comparisionTypes = ['difference', 'percentage', 'ratio']; + comparisionTypes.forEach(cType => { + expect( + rollingWindowOperator( + { + ...formData, + rolling_type: 'cumsum', + comparison_type: cType, + time_compare: ['1 year ago', '1 year later'], + }, + queryObject, + ), + ).toEqual({ + operation: 'cum', + options: { + operator: 'sum', + columns: { + [`${cType}__count(*)__count(*)__1 year ago`]: `${cType}__count(*)__count(*)__1 year ago`, + [`${cType}__count(*)__count(*)__1 year later`]: `${cType}__count(*)__count(*)__1 year later`, + [`${cType}__sum(val)__sum(val)__1 year ago`]: `${cType}__sum(val)__sum(val)__1 year ago`, + [`${cType}__sum(val)__sum(val)__1 year later`]: `${cType}__sum(val)__sum(val)__1 year later`, + }, + is_pivot_df: true, + }, + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/sortOperator.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/sortOperator.test.ts new file mode 100644 index 000000000000..e8dfe3d23df4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/sortOperator.test.ts @@ -0,0 +1,127 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { QueryObject, SqlaFormData } from '@superset-ui/core'; +import { sortOperator } from '../../../src'; + +const formData: SqlaFormData = { + metrics: [ + 'count(*)', + { label: 'sum(val)', expressionType: 'SQL', sqlExpression: 'sum(val)' }, + ], + time_range: '2015 : 2016', + granularity: 'month', + datasource: 'foo', + viz_type: 'table', +}; +const queryObject: QueryObject = { + metrics: [ + 'count(*)', + { label: 'sum(val)', expressionType: 'SQL', sqlExpression: 'sum(val)' }, + ], + time_range: '2015 : 2016', + granularity: 'month', + post_processing: [ + { + operation: 'pivot', + options: { + index: ['__timestamp'], + columns: ['nation'], + aggregates: { + 'count(*)': { + operator: 'sum', + }, + }, + }, + }, + ], +}; + +test('skip sort', () => { + expect(sortOperator(formData, queryObject)).toEqual(undefined); + expect( + sortOperator(formData, { ...queryObject, is_timeseries: false }), + ).toEqual(undefined); + expect( + sortOperator( + { ...formData, rolling_type: 'xxxx' }, + { ...queryObject, is_timeseries: true }, + ), + ).toEqual(undefined); + expect( + sortOperator(formData, { ...queryObject, is_timeseries: true }), + ).toEqual(undefined); +}); + +test('sort by __timestamp', () => { + expect( + sortOperator( + { ...formData, rolling_type: 'cumsum' }, + { ...queryObject, is_timeseries: true }, + ), + ).toEqual({ + operation: 'sort', + options: { + columns: { + __timestamp: true, + }, + }, + }); + + expect( + sortOperator( + { ...formData, rolling_type: 'sum' }, + { ...queryObject, is_timeseries: true }, + ), + ).toEqual({ + operation: 'sort', + options: { + columns: { + __timestamp: true, + }, + }, + }); + + expect( + sortOperator( + { ...formData, rolling_type: 'mean' }, + { ...queryObject, is_timeseries: true }, + ), + ).toEqual({ + operation: 'sort', + options: { + columns: { + __timestamp: true, + }, + }, + }); + + expect( + sortOperator( + { ...formData, rolling_type: 'std' }, + { ...queryObject, is_timeseries: true }, + ), + ).toEqual({ + operation: 'sort', + options: { + columns: { + __timestamp: true, + }, + }, + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/timeCompareOperator.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/timeCompareOperator.test.ts new file mode 100644 index 000000000000..0b51fa7877d7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/operators/timeCompareOperator.test.ts @@ -0,0 +1,176 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { QueryObject, SqlaFormData } from '@superset-ui/core'; +import { timeCompareOperator, timeComparePivotOperator } from '../../../src'; + +const formData: SqlaFormData = { + metrics: ['count(*)'], + time_range: '2015 : 2016', + granularity: 'month', + datasource: 'foo', + viz_type: 'table', +}; +const queryObject: QueryObject = { + metrics: ['count(*)'], + time_range: '2015 : 2016', + granularity: 'month', + post_processing: [ + { + operation: 'pivot', + options: { + index: ['__timestamp'], + columns: ['nation'], + aggregates: { + 'count(*)': { + operator: 'mean', + }, + }, + drop_missing_columns: false, + }, + }, + { + operation: 'aggregation', + options: { + groupby: ['col1'], + aggregates: 'count', + }, + }, + ], +}; + +test('time compare: skip transformation', () => { + expect(timeCompareOperator(formData, queryObject)).toEqual(undefined); + expect( + timeCompareOperator({ ...formData, time_compare: [] }, queryObject), + ).toEqual(undefined); + expect( + timeCompareOperator({ ...formData, comparison_type: null }, queryObject), + ).toEqual(undefined); + expect( + timeCompareOperator( + { ...formData, comparison_type: 'foobar' }, + queryObject, + ), + ).toEqual(undefined); + expect( + timeCompareOperator( + { + ...formData, + comparison_type: 'values', + time_compare: ['1 year ago', '1 year later'], + }, + queryObject, + ), + ).toEqual(undefined); +}); + +test('time compare: difference/percentage/ratio', () => { + const comparisionTypes = ['difference', 'percentage', 'ratio']; + comparisionTypes.forEach(cType => { + expect( + timeCompareOperator( + { + ...formData, + comparison_type: cType, + time_compare: ['1 year ago', '1 year later'], + }, + queryObject, + ), + ).toEqual({ + operation: 'compare', + options: { + source_columns: ['count(*)', 'count(*)'], + compare_columns: ['count(*)__1 year ago', 'count(*)__1 year later'], + compare_type: cType, + drop_original_columns: true, + }, + }); + }); +}); + +test('time compare pivot: skip transformation', () => { + expect(timeComparePivotOperator(formData, queryObject)).toEqual(undefined); + expect( + timeComparePivotOperator({ ...formData, time_compare: [] }, queryObject), + ).toEqual(undefined); + expect( + timeComparePivotOperator( + { ...formData, comparison_type: null }, + queryObject, + ), + ).toEqual(undefined); + expect( + timeCompareOperator( + { ...formData, comparison_type: 'foobar' }, + queryObject, + ), + ).toEqual(undefined); +}); + +test('time compare pivot: values', () => { + expect( + timeComparePivotOperator( + { + ...formData, + comparison_type: 'values', + time_compare: ['1 year ago', '1 year later'], + }, + queryObject, + ), + ).toEqual({ + operation: 'pivot', + options: { + aggregates: { + 'count(*)': { operator: 'mean' }, + 'count(*)__1 year ago': { operator: 'mean' }, + 'count(*)__1 year later': { operator: 'mean' }, + }, + drop_missing_columns: false, + columns: [], + index: ['__timestamp'], + }, + }); +}); + +test('time compare pivot: difference/percentage/ratio', () => { + const comparisionTypes = ['difference', 'percentage', 'ratio']; + comparisionTypes.forEach(cType => { + expect( + timeComparePivotOperator( + { + ...formData, + comparison_type: cType, + time_compare: ['1 year ago', '1 year later'], + }, + queryObject, + ), + ).toEqual({ + operation: 'pivot', + options: { + aggregates: { + [`${cType}__count(*)__count(*)__1 year ago`]: { operator: 'mean' }, + [`${cType}__count(*)__count(*)__1 year later`]: { operator: 'mean' }, + }, + drop_missing_columns: false, + columns: [], + index: ['__timestamp'], + }, + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/selectOptions.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/selectOptions.test.ts new file mode 100644 index 000000000000..91b6895b0904 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/test/utils/selectOptions.test.ts @@ -0,0 +1,65 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { formatSelectOptions, formatSelectOptionsForRange } from '../../src'; + +describe('formatSelectOptions', () => { + it('formats an array of options', () => { + expect(formatSelectOptions([1, 5, 10, 25, 50, 'unlimited'])).toEqual([ + [1, '1'], + [5, '5'], + [10, '10'], + [25, '25'], + [50, '50'], + ['unlimited', 'unlimited'], + ]); + }); + it('formats a mix of values and already formated options', () => { + expect( + formatSelectOptions([ + [0, 'all'], + 1, + 5, + 10, + 25, + 50, + 'unlimited', + ]), + ).toEqual([ + [0, 'all'], + [1, '1'], + [5, '5'], + [10, '10'], + [25, '25'], + [50, '50'], + ['unlimited', 'unlimited'], + ]); + }); +}); + +describe('formatSelectOptionsForRange', () => { + it('generates select options from a range', () => { + expect(formatSelectOptionsForRange(1, 5)).toEqual([ + [1, '1'], + [2, '2'], + [3, '3'], + [4, '4'], + [5, '5'], + ]); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/tsconfig.json new file mode 100644 index 000000000000..f70c2033ec0c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart-controls/tsconfig.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/CHANGELOG.md new file mode 100644 index 000000000000..76d95aa0f50b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/CHANGELOG.md @@ -0,0 +1,27 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/core diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/README.md b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/README.md new file mode 100644 index 000000000000..2066a0f1fc3f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/README.md @@ -0,0 +1,42 @@ + + +## @superset-ui/core + +[![Version](https://img.shields.io/npm/v/@superset-ui/core.svg?style=flat)](https://www.npmjs.com/package/@superset-ui/core) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui.svg?path=packages%2Fsuperset-ui-core&style=flat-square)](https://david-dm.org/apache-superset/superset-ui?path=packages/superset-ui-core) + +Description + +#### Example usage + +```js +import { xxx } from '@superset-ui/core'; +``` + +#### API + +`fn(args)` + +- TBD + +### Development + +`@data-ui/build-config` is used to manage the build configuration for this package including babel +builds, jest testing, eslint, and prettier. diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/package.json b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/package.json new file mode 100644 index 000000000000..d066080b26f9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/package.json @@ -0,0 +1,73 @@ +{ + "name": "@superset-ui/core", + "version": "0.18.25", + "description": "Superset UI core", + "sideEffects": false, + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "devDependencies": { + "@emotion/styled": "^11.3.0", + "@types/fetch-mock": "^7.3.3", + "fetch-mock": "^6.5.2", + "jest-mock-console": "^1.0.0" + }, + "dependencies": { + "@babel/runtime": "^7.1.2", + "@types/d3-format": "^1.3.0", + "@types/d3-interpolate": "^1.3.1", + "@types/d3-scale": "^2.1.1", + "@types/d3-time": "^1.0.9", + "@types/d3-time-format": "^2.1.0", + "@types/lodash": "^4.14.149", + "@types/math-expression-evaluator": "^1.2.1", + "@types/rison": "0.0.6", + "@types/seedrandom": "^2.4.28", + "@vx/responsive": "^0.0.199", + "csstype": "^2.6.4", + "d3-format": "^1.3.2", + "d3-interpolate": "^1.4.0", + "d3-scale": "^3.0.0", + "d3-time": "^1.0.10", + "d3-time-format": "^2.2.0", + "fetch-retry": "^4.0.1", + "jed": "^1.1.1", + "lodash": "^4.17.11", + "math-expression-evaluator": "^1.3.8", + "pretty-ms": "^7.0.0", + "react-error-boundary": "^1.2.5", + "react-markdown": "^4.3.1", + "reselect": "^4.0.0", + "rison": "^0.1.1", + "seedrandom": "^3.0.5", + "whatwg-fetch": "^3.0.0" + }, + "peerDependencies": { + "@emotion/cache": "^11.4.0", + "@emotion/react": "^11.4.1", + "@emotion/styled": "^11.3.0", + "@types/react": "*", + "@types/react-loadable": "*", + "react": "^16.13.1", + "react-loadable": "^5.5.0" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart-composition/ChartFrame.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart-composition/ChartFrame.tsx new file mode 100644 index 000000000000..784097b4b6b9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart-composition/ChartFrame.tsx @@ -0,0 +1,73 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { PureComponent } from 'react'; +import { isDefined } from '../utils'; + +function checkNumber(input: unknown): input is number { + return isDefined(input) && typeof input === 'number'; +} + +type Props = { + contentWidth?: number; + contentHeight?: number; + height: number; + renderContent: ({ + height, + width, + }: { + height: number; + width: number; + }) => React.ReactNode; + width: number; +}; + +export default class ChartFrame extends PureComponent { + static defaultProps = { + renderContent() {}, + }; + + render() { + const { contentWidth, contentHeight, width, height, renderContent } = + this.props; + + const overflowX = checkNumber(contentWidth) && contentWidth > width; + const overflowY = checkNumber(contentHeight) && contentHeight > height; + + if (overflowX || overflowY) { + return ( +
+ {renderContent({ + height: Math.max(contentHeight ?? 0, height), + width: Math.max(contentWidth ?? 0, width), + })} +
+ ); + } + + return renderContent({ height, width }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart-composition/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart-composition/index.ts new file mode 100644 index 000000000000..0f624e341af9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart-composition/index.ts @@ -0,0 +1,23 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as ChartFrame } from './ChartFrame'; +export { default as WithLegend } from './legend/WithLegend'; +export { default as TooltipFrame } from './tooltip/TooltipFrame'; +export { default as TooltipTable } from './tooltip/TooltipTable'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart-composition/legend/WithLegend.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart-composition/legend/WithLegend.tsx new file mode 100644 index 000000000000..4e2ae2a79603 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart-composition/legend/WithLegend.tsx @@ -0,0 +1,146 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { CSSProperties, ReactNode, PureComponent } from 'react'; +import { ParentSize } from '@vx/responsive'; + +const defaultProps = { + className: '', + height: 'auto' as number | string, + position: 'top', + width: 'auto' as number | string, +}; + +type Props = { + className: string; + debounceTime?: number; + width: number | string; + height: number | string; + legendJustifyContent?: 'center' | 'flex-start' | 'flex-end'; + position: 'top' | 'left' | 'bottom' | 'right'; + renderChart: (dim: { width: number; height: number }) => ReactNode; + renderLegend?: (params: { direction: string }) => ReactNode; +} & Readonly; + +const LEGEND_STYLE_BASE: CSSProperties = { + display: 'flex', + flexGrow: 0, + flexShrink: 0, + order: -1, +}; + +const CHART_STYLE_BASE: CSSProperties = { + flexBasis: 'auto', + flexGrow: 1, + flexShrink: 1, + position: 'relative', +}; + +class WithLegend extends PureComponent { + static defaultProps = defaultProps; + + getContainerDirection(): CSSProperties['flexDirection'] { + const { position } = this.props; + + if (position === 'left') { + return 'row'; + } + if (position === 'right') { + return 'row-reverse'; + } + if (position === 'bottom') { + return 'column-reverse'; + } + + return 'column'; + } + + getLegendJustifyContent() { + const { legendJustifyContent, position } = this.props; + if (legendJustifyContent) { + return legendJustifyContent; + } + + if (position === 'left' || position === 'right') { + return 'flex-start'; + } + + return 'flex-end'; + } + + render() { + const { + className, + debounceTime, + width, + height, + position, + renderChart, + renderLegend, + } = this.props; + + const isHorizontal = position === 'left' || position === 'right'; + + const style: CSSProperties = { + display: 'flex', + flexDirection: this.getContainerDirection(), + height, + width, + }; + + const chartStyle: CSSProperties = { ...CHART_STYLE_BASE }; + if (isHorizontal) { + chartStyle.width = 0; + } else { + chartStyle.height = 0; + } + + const legendDirection = isHorizontal ? 'column' : 'row'; + const legendStyle: CSSProperties = { + ...LEGEND_STYLE_BASE, + flexDirection: legendDirection, + justifyContent: this.getLegendJustifyContent(), + }; + + return ( +
+ {renderLegend && ( +
+ {renderLegend({ + // Pass flexDirection for @vx/legend to arrange legend items + direction: legendDirection, + })} +
+ )} +
+ + {(parent: { width: number; height: number }) => + parent.width > 0 && parent.height > 0 + ? // Only render when necessary + renderChart(parent) + : null + } + +
+
+ ); + } +} + +export default WithLegend; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart-composition/tooltip/TooltipFrame.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart-composition/tooltip/TooltipFrame.tsx new file mode 100644 index 000000000000..239308708de1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart-composition/tooltip/TooltipFrame.tsx @@ -0,0 +1,47 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { PureComponent } from 'react'; + +const defaultProps = { + className: '', +}; + +type Props = { + className?: string; + children: React.ReactNode; +} & Readonly; + +const CONTAINER_STYLE = { padding: 8 }; + +class TooltipFrame extends PureComponent { + static defaultProps = defaultProps; + + render() { + const { className, children } = this.props; + + return ( +
+ {children} +
+ ); + } +} + +export default TooltipFrame; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart-composition/tooltip/TooltipTable.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart-composition/tooltip/TooltipTable.tsx new file mode 100644 index 000000000000..ecb207499941 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart-composition/tooltip/TooltipTable.tsx @@ -0,0 +1,69 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { CSSProperties, PureComponent, ReactNode } from 'react'; + +interface TooltipRowData { + key: string | number; + keyColumn?: ReactNode; + keyStyle?: CSSProperties; + valueColumn: ReactNode; + valueStyle?: CSSProperties; +} + +const defaultProps = { + className: '', + data: [] as TooltipRowData[], +}; + +type Props = { + className?: string; + data: TooltipRowData[]; +} & Readonly; + +const VALUE_CELL_STYLE: CSSProperties = { paddingLeft: 8, textAlign: 'right' }; + +export default class TooltipTable extends PureComponent { + static defaultProps = defaultProps; + + render() { + const { className, data } = this.props; + + return ( + + + {data.map(({ key, keyColumn, keyStyle, valueColumn, valueStyle }) => ( + + + + + ))} + +
{keyColumn ?? key} + {valueColumn} +
+ ); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/clients/ChartClient.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/clients/ChartClient.ts new file mode 100644 index 000000000000..033c5dd91957 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/clients/ChartClient.ts @@ -0,0 +1,200 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + isDefined, + SupersetClient, + SupersetClientInterface, + RequestConfig, + SupersetClientClass, + QueryFormData, + Datasource, +} from '../..'; +import getChartBuildQueryRegistry from '../registries/ChartBuildQueryRegistrySingleton'; +import getChartMetadataRegistry from '../registries/ChartMetadataRegistrySingleton'; +import { QueryData } from '../types/QueryResponse'; +import { AnnotationLayerMetadata } from '../types/Annotation'; +import { PlainObject } from '../types/Base'; + +// This expands to Partial & (union of all possible single-property types) +type AtLeastOne }> = Partial & + Each[keyof Each]; + +export type SliceIdAndOrFormData = AtLeastOne<{ + sliceId: number; + formData: Partial; +}>; + +interface AnnotationData { + [key: string]: PlainObject; +} + +export interface ChartData { + annotationData: AnnotationData; + datasource: PlainObject; + formData: QueryFormData; + queriesData: QueryData[]; +} + +export default class ChartClient { + readonly client: SupersetClientInterface | SupersetClientClass; + + constructor( + config: { + client?: SupersetClientInterface | SupersetClientClass; + } = {}, + ) { + const { client = SupersetClient } = config; + this.client = client; + } + + loadFormData( + input: SliceIdAndOrFormData, + options?: Partial, + ): Promise { + /* If sliceId is provided, use it to fetch stored formData from API */ + if ('sliceId' in input) { + const promise = this.client + .get({ + endpoint: `/api/v1/form_data/?slice_id=${input.sliceId}`, + ...options, + } as RequestConfig) + .then(response => response.json as QueryFormData); + + /* + * If formData is also specified, override API result + * with user-specified formData + */ + return promise.then((dbFormData: QueryFormData) => ({ + ...dbFormData, + ...input.formData, + })); + } + + /* If sliceId is not provided, returned formData wrapped in a Promise */ + return input.formData + ? Promise.resolve(input.formData as QueryFormData) + : Promise.reject( + new Error('At least one of sliceId or formData must be specified'), + ); + } + + async loadQueryData( + formData: QueryFormData, + options?: Partial, + ): Promise { + const { viz_type: visType } = formData; + const metaDataRegistry = getChartMetadataRegistry(); + const buildQueryRegistry = getChartBuildQueryRegistry(); + + if (metaDataRegistry.has(visType)) { + const { useLegacyApi } = metaDataRegistry.get(visType)!; + const buildQuery = + (await buildQueryRegistry.get(visType)) ?? (() => formData); + const requestConfig: RequestConfig = useLegacyApi + ? { + endpoint: '/superset/explore_json/', + postPayload: { + form_data: buildQuery(formData), + }, + ...options, + } + : { + endpoint: '/api/v1/chart/data', + jsonPayload: { + query_context: buildQuery(formData), + }, + ...options, + }; + + return this.client + .post(requestConfig) + .then(response => + Array.isArray(response.json) ? response.json : [response.json], + ); + } + + return Promise.reject(new Error(`Unknown chart type: ${visType}`)); + } + + loadDatasource( + datasourceKey: string, + options?: Partial, + ): Promise { + return this.client + .get({ + endpoint: `/superset/fetch_datasource_metadata?datasourceKey=${datasourceKey}`, + ...options, + } as RequestConfig) + .then(response => response.json as Datasource); + } + + // eslint-disable-next-line class-methods-use-this + loadAnnotation( + annotationLayer: AnnotationLayerMetadata, + ): Promise { + /* When annotation does not require query */ + if (!isDefined(annotationLayer.sourceType)) { + return Promise.resolve({} as AnnotationData); + } + + // TODO: Implement + return Promise.reject(new Error('This feature is not implemented yet.')); + } + + loadAnnotations( + annotationLayers?: AnnotationLayerMetadata[], + ): Promise { + if (Array.isArray(annotationLayers) && annotationLayers.length > 0) { + return Promise.all( + annotationLayers.map(layer => this.loadAnnotation(layer)), + ).then(results => + annotationLayers.reduce((prev, layer, i) => { + const output: AnnotationData = prev; + output[layer.name] = results[i]; + + return output; + }, {}), + ); + } + + return Promise.resolve({}); + } + + loadChartData(input: SliceIdAndOrFormData): Promise { + return this.loadFormData(input).then( + ( + formData: QueryFormData & { + // eslint-disable-next-line camelcase + annotation_layers?: AnnotationLayerMetadata[]; + }, + ) => + Promise.all([ + this.loadAnnotations(formData.annotation_layers), + this.loadDatasource(formData.datasource), + this.loadQueryData(formData), + ]).then(([annotationData, datasource, queriesData]) => ({ + annotationData, + datasource, + formData, + queriesData, + })), + ); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/ChartDataProvider.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/ChartDataProvider.tsx new file mode 100644 index 000000000000..87fe5d6cc0ca --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/ChartDataProvider.tsx @@ -0,0 +1,170 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint react/sort-comp: 'off' */ +import React, { ReactNode } from 'react'; +import { + SupersetClientInterface, + RequestConfig, + QueryFormData, + Datasource, +} from '../..'; +import ChartClient, { SliceIdAndOrFormData } from '../clients/ChartClient'; +import { QueryData } from '../types/QueryResponse'; + +interface Payload { + formData: Partial; + queriesData: QueryData[]; + datasource?: Datasource; +} + +export interface ProvidedProps { + payload?: Payload; + error?: Error; + loading?: boolean; +} + +export type ChartDataProviderProps = + /** User can pass either one or both of sliceId or formData */ + SliceIdAndOrFormData & { + /** Child function called with ProvidedProps */ + children: (provided: ProvidedProps) => ReactNode; + /** Superset client which is used to fetch data. It should already be configured and initialized. */ + client?: SupersetClientInterface; + /** Will fetch and include datasource metadata for SliceIdAndOrFormData in the payload. */ + loadDatasource?: boolean; + /** Callback when an error occurs. Enables wrapping the Provider in an ErrorBoundary. */ + onError?: (error: ProvidedProps['error']) => void; + /** Callback when data is loaded. */ + onLoaded?: (payload: ProvidedProps['payload']) => void; + /** Hook to override the formData request config. */ + formDataRequestOptions?: Partial; + /** Hook to override the datasource request config. */ + datasourceRequestOptions?: Partial; + /** Hook to override the queriesData request config. */ + queryRequestOptions?: Partial; + }; + +export type ChartDataProviderState = { + status: 'uninitialized' | 'loading' | 'error' | 'loaded'; + payload?: ProvidedProps['payload']; + error?: ProvidedProps['error']; +}; + +class ChartDataProvider extends React.PureComponent< + ChartDataProviderProps, + ChartDataProviderState +> { + readonly chartClient: ChartClient; + + constructor(props: ChartDataProviderProps) { + super(props); + this.state = { status: 'uninitialized' }; + this.chartClient = new ChartClient({ client: props.client }); + } + + componentDidMount() { + this.handleFetchData(); + } + + componentDidUpdate(prevProps: ChartDataProviderProps) { + const { formData, sliceId } = this.props; + if (formData !== prevProps.formData || sliceId !== prevProps.sliceId) { + this.handleFetchData(); + } + } + + private extractSliceIdAndFormData() { + const { formData, sliceId } = this.props; + return formData ? { formData } : { sliceId: sliceId as number }; + } + + private handleFetchData = () => { + const { + loadDatasource, + formDataRequestOptions, + datasourceRequestOptions, + queryRequestOptions, + } = this.props; + + this.setState({ status: 'loading' }, () => { + try { + this.chartClient + .loadFormData( + this.extractSliceIdAndFormData(), + formDataRequestOptions, + ) + .then(formData => + Promise.all([ + loadDatasource + ? this.chartClient.loadDatasource( + formData.datasource, + datasourceRequestOptions, + ) + : Promise.resolve(undefined), + this.chartClient.loadQueryData(formData, queryRequestOptions), + ]).then( + ([datasource, queriesData]) => + // eslint-disable-next-line @typescript-eslint/consistent-type-assertions + ({ + datasource, + formData, + queriesData, + } as Payload), + ), + ) + .then(this.handleReceiveData) + .catch(this.handleError); + } catch (error) { + this.handleError(error as Error); + } + }); + }; + + private handleReceiveData = (payload?: Payload) => { + const { onLoaded } = this.props; + if (onLoaded) onLoaded(payload); + this.setState({ payload, status: 'loaded' }); + }; + + private handleError = (error: ProvidedProps['error']) => { + const { onError } = this.props; + if (onError) onError(error); + this.setState({ error, status: 'error' }); + }; + + render() { + const { children } = this.props; + const { status, payload, error } = this.state; + + switch (status) { + case 'loading': + return children({ loading: true }); + case 'loaded': + return children({ payload }); + case 'error': + return children({ error }); + case 'uninitialized': + default: + return null; + } + } +} + +export default ChartDataProvider; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx new file mode 100644 index 000000000000..8c344d514d23 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx @@ -0,0 +1,58 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { FallbackPropsWithDimension } from './SuperChart'; + +export type Props = FallbackPropsWithDimension; + +const CONTAINER_STYLE = { + backgroundColor: '#000', + color: '#fff', + overflow: 'auto', + padding: 32, +}; + +export default function FallbackComponent({ + componentStack, + error, + height, + width, +}: Props) { + return ( +
+
+
+ Oops! An error occured! +
+ {error ? error.toString() : 'Unknown Error'} +
+ {componentStack && ( +
+ Stack Trace: + + {componentStack.split('\n').map((row: string) => ( +
{row}
+ ))} +
+
+ )} +
+ ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx new file mode 100644 index 000000000000..9266a9770423 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx @@ -0,0 +1,82 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { CSSProperties, useMemo } from 'react'; +import { t } from '../../translation'; + +const MESSAGE_STYLES: CSSProperties = { maxWidth: 800 }; +const TITLE_STYLES: CSSProperties = { + fontSize: 16, + fontWeight: 'bold', + paddingBottom: 8, +}; +const BODY_STYLES: CSSProperties = { fontSize: 14 }; +const MIN_WIDTH_FOR_BODY = 250; + +const generateContainerStyles: ( + height: number | string, + width: number | string, +) => CSSProperties = (height: number | string, width: number | string) => ({ + alignItems: 'center', + display: 'flex', + flexDirection: 'column', + height, + justifyContent: 'center', + padding: 16, + textAlign: 'center', + width, +}); + +type Props = { + className?: string; + height: number | string; + id?: string; + width: number | string; +}; + +const NoResultsComponent = ({ className, height, id, width }: Props) => { + const containerStyles = useMemo( + () => generateContainerStyles(height, width), + [height, width], + ); + + // render the body if the width is auto/100% or greater than 250 pixels + const shouldRenderBody = + typeof width === 'string' || width > MIN_WIDTH_FOR_BODY; + + const BODY_STRING = t( + 'No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.', + ); + + return ( +
+
+
{t('No Results')}
+ {shouldRenderBody &&
{BODY_STRING}
} +
+
+ ); +}; + +export default NoResultsComponent; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/SuperChart.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/SuperChart.tsx new file mode 100644 index 000000000000..ac3f3ede336a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/SuperChart.tsx @@ -0,0 +1,241 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { ReactNode, RefObject } from 'react'; +import ErrorBoundary, { + ErrorBoundaryProps, + FallbackProps, +} from 'react-error-boundary'; +import { ParentSize } from '@vx/responsive'; +import { createSelector } from 'reselect'; +import { parseLength, Dimension } from '../../dimension'; +import SuperChartCore, { Props as SuperChartCoreProps } from './SuperChartCore'; +import DefaultFallbackComponent from './FallbackComponent'; +import ChartProps, { ChartPropsConfig } from '../models/ChartProps'; +import NoResultsComponent from './NoResultsComponent'; + +const defaultProps = { + FallbackComponent: DefaultFallbackComponent, + height: 400 as string | number, + width: '100%' as string | number, + enableNoResults: true, +}; + +export type FallbackPropsWithDimension = FallbackProps & Partial; + +export type WrapperProps = Dimension & { + children: ReactNode; +}; + +export type Props = Omit & + Omit & { + /** + * Set this to true to disable error boundary built-in in SuperChart + * and let the error propagate to upper level + * and handle by yourself + */ + disableErrorBoundary?: boolean; + /** debounceTime to check for container resize */ + debounceTime?: number; + /** enable "No Results" message if empty result set */ + enableNoResults?: boolean; + /** Component to render when there are unexpected errors */ + FallbackComponent?: React.ComponentType; + /** Event listener for unexpected errors from chart */ + onErrorBoundary?: ErrorBoundaryProps['onError']; + /** Prop for form plugins uisng superchart */ + showOverflow?: boolean; + /** Prop for popovercontainer ref */ + parentRef?: RefObject; + /** Chart width */ + height?: number | string; + /** Chart height */ + width?: number | string; + /** + * Component to wrap the actual chart + * after the dynamic width and height are determined. + * This can be useful for handling tooltip z-index, etc. + * e.g.
+ * You cannot just wrap this same component outside of SuperChart + * when using dynamic width or height + * because it will clash with auto-sizing. + */ + Wrapper?: React.ComponentType; + }; + +type PropsWithDefault = Props & Readonly; + +export default class SuperChart extends React.PureComponent { + /** + * SuperChart's core + */ + core?: SuperChartCore | null; + + private createChartProps = ChartProps.createSelector(); + + private parseDimension = createSelector( + ({ width }: { width: string | number; height: string | number }) => width, + ({ height }) => height, + (width, height) => { + // Parse them in case they are % or 'auto' + const widthInfo = parseLength(width); + const heightInfo = parseLength(height); + + const boxHeight = heightInfo.isDynamic + ? `${heightInfo.multiplier * 100}%` + : heightInfo.value; + const boxWidth = widthInfo.isDynamic + ? `${widthInfo.multiplier * 100}%` + : widthInfo.value; + const style = { + height: boxHeight, + width: boxWidth, + }; + + // bounding box will ensure that when one dimension is not dynamic + // e.g. height = 300 + // the auto size will be bound to that value instead of being 100% by default + // e.g. height: 300 instead of height: '100%' + const BoundingBox = + widthInfo.isDynamic && + heightInfo.isDynamic && + widthInfo.multiplier === 1 && + heightInfo.multiplier === 1 + ? React.Fragment + : ({ children }: { children: ReactNode }) => ( +
{children}
+ ); + + return { BoundingBox, heightInfo, widthInfo }; + }, + ); + + static defaultProps = defaultProps; + + private setRef = (core: SuperChartCore | null) => { + this.core = core; + }; + + renderChart(width: number, height: number) { + const { + id, + className, + chartType, + preTransformProps, + overrideTransformProps, + postTransformProps, + onRenderSuccess, + onRenderFailure, + disableErrorBoundary, + FallbackComponent, + onErrorBoundary, + Wrapper, + queriesData, + enableNoResults, + ...rest + } = this.props as PropsWithDefault; + + const chartProps = this.createChartProps({ + ...rest, + queriesData, + height, + width, + }); + + let chart; + // Render the no results component if the query data is null or empty + const noResultQueries = + enableNoResults && + (!queriesData || + queriesData.every( + ({ data }) => !data || (Array.isArray(data) && data.length === 0), + )); + if (noResultQueries) { + chart = ( + + ); + } else { + const chartWithoutWrapper = ( + + ); + chart = Wrapper ? ( + + {chartWithoutWrapper} + + ) : ( + chartWithoutWrapper + ); + } + // Include the error boundary by default unless it is specifically disabled. + return disableErrorBoundary === true ? ( + chart + ) : ( + ( + + )} + onError={onErrorBoundary} + > + {chart} + + ); + } + + render() { + const { heightInfo, widthInfo, BoundingBox } = this.parseDimension( + this.props as PropsWithDefault, + ); + + // If any of the dimension is dynamic, get parent's dimension + if (widthInfo.isDynamic || heightInfo.isDynamic) { + const { debounceTime } = this.props; + + return ( + + + {({ width, height }) => + this.renderChart( + widthInfo.isDynamic ? Math.floor(width) : widthInfo.value, + heightInfo.isDynamic ? Math.floor(height) : heightInfo.value, + ) + } + + + ); + } + + return this.renderChart(widthInfo.value, heightInfo.value); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx new file mode 100644 index 000000000000..10e4cd18e682 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx @@ -0,0 +1,229 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable react/jsx-sort-default-props */ +import * as React from 'react'; +import { createSelector } from 'reselect'; +import getChartComponentRegistry from '../registries/ChartComponentRegistrySingleton'; +import getChartTransformPropsRegistry from '../registries/ChartTransformPropsRegistrySingleton'; +import ChartProps from '../models/ChartProps'; +import createLoadableRenderer from './createLoadableRenderer'; +import { ChartType } from '../models/ChartPlugin'; +import { + PreTransformProps, + TransformProps, + PostTransformProps, +} from '../types/TransformFunction'; +import { HandlerFunction } from '../types/Base'; + +function IDENTITY(x: T) { + return x; +} + +const EMPTY = () => null; + +const defaultProps = { + id: '', + className: '', + preTransformProps: IDENTITY, + overrideTransformProps: undefined, + postTransformProps: IDENTITY, + onRenderSuccess() {}, + onRenderFailure() {}, +}; + +interface LoadingProps { + error: { toString(): string }; +} + +interface LoadedModules { + Chart: ChartType; + transformProps: TransformProps; +} + +interface RenderProps { + chartProps: ChartProps; + preTransformProps?: PreTransformProps; + postTransformProps?: PostTransformProps; +} + +const BLANK_CHART_PROPS = new ChartProps(); + +export type Props = { + id?: string; + className?: string; + chartProps?: ChartProps | null; + chartType: string; + preTransformProps?: PreTransformProps; + overrideTransformProps?: TransformProps; + postTransformProps?: PostTransformProps; + onRenderSuccess?: HandlerFunction; + onRenderFailure?: HandlerFunction; +}; + +export default class SuperChartCore extends React.PureComponent { + /** + * The HTML element that wraps all chart content + */ + container?: HTMLElement | null; + + /** + * memoized function so it will not recompute + * and return previous value + * unless one of + * - preTransformProps + * - transformProps + * - postTransformProps + * - chartProps + * is changed. + */ + processChartProps = createSelector( + (input: { + chartProps: ChartProps; + preTransformProps?: PreTransformProps; + transformProps?: TransformProps; + postTransformProps?: PostTransformProps; + }) => input.chartProps, + input => input.preTransformProps, + input => input.transformProps, + input => input.postTransformProps, + (chartProps, pre = IDENTITY, transform = IDENTITY, post = IDENTITY) => + post(transform(pre(chartProps))), + ); + + /** + * memoized function so it will not recompute + * and return previous value + * unless one of + * - chartType + * - overrideTransformProps + * is changed. + */ + private createLoadableRenderer = createSelector( + (input: { chartType: string; overrideTransformProps?: TransformProps }) => + input.chartType, + input => input.overrideTransformProps, + (chartType, overrideTransformProps) => { + if (chartType) { + const Renderer = createLoadableRenderer({ + loader: { + Chart: () => getChartComponentRegistry().getAsPromise(chartType), + transformProps: overrideTransformProps + ? () => Promise.resolve(overrideTransformProps) + : () => getChartTransformPropsRegistry().getAsPromise(chartType), + }, + loading: (loadingProps: LoadingProps) => + this.renderLoading(loadingProps, chartType), + render: this.renderChart, + }); + + // Trigger preloading. + Renderer.preload(); + + return Renderer; + } + + return EMPTY; + }, + ); + + static defaultProps = defaultProps; + + private renderChart = (loaded: LoadedModules, props: RenderProps) => { + const { Chart, transformProps } = loaded; + const { chartProps, preTransformProps, postTransformProps } = props; + + return ( + + ); + }; + + private renderLoading = (loadingProps: LoadingProps, chartType: string) => { + const { error } = loadingProps; + + if (error) { + return ( +
+ ERROR  + chartType="{chartType}" — + {error.toString()} +
+ ); + } + + return null; + }; + + private setRef = (container: HTMLElement | null) => { + this.container = container; + }; + + render() { + const { + id, + className, + preTransformProps, + postTransformProps, + chartProps = BLANK_CHART_PROPS, + onRenderSuccess, + onRenderFailure, + } = this.props; + + // Create LoadableRenderer and start preloading + // the lazy-loaded Chart components + const Renderer = this.createLoadableRenderer(this.props); + + // Do not render if chartProps is set to null. + // but the pre-loading has been started in this.createLoadableRenderer + // to prepare for rendering once chartProps becomes available. + if (chartProps === null) { + return null; + } + + const containerProps: { + id?: string; + className?: string; + } = {}; + if (id) { + containerProps.id = id; + } + if (className) { + containerProps.className = className; + } + + return ( +
+ +
+ ); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/createLoadableRenderer.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/createLoadableRenderer.ts new file mode 100644 index 000000000000..64eb4b562fe8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/createLoadableRenderer.ts @@ -0,0 +1,70 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import Loadable from 'react-loadable'; + +export type LoadableRendererProps = { + onRenderFailure?: Function; + onRenderSuccess?: Function; +}; + +const defaultProps = { + onRenderFailure() {}, + onRenderSuccess() {}, +}; + +export interface LoadableRenderer + extends React.ComponentClass, + Loadable.LoadableComponent {} + +export default function createLoadableRenderer( + options: Loadable.OptionsWithMap, +): LoadableRenderer { + const LoadableRenderer = Loadable.Map(options) as LoadableRenderer; + + // Extends the behavior of LoadableComponent to provide post-render listeners + class CustomLoadableRenderer extends LoadableRenderer { + static defaultProps: object; + + componentDidMount() { + this.afterRender(); + } + + componentDidUpdate() { + this.afterRender(); + } + + afterRender() { + const { loaded, loading, error } = this.state; + const { onRenderFailure, onRenderSuccess } = this.props; + if (!loading) { + if (error) { + (onRenderFailure as Function)(error); + } else if (loaded && Object.keys(loaded).length > 0) { + (onRenderSuccess as Function)(); + } + } + } + } + + CustomLoadableRenderer.defaultProps = defaultProps; + CustomLoadableRenderer.preload = LoadableRenderer.preload; + + return CustomLoadableRenderer; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/reactify.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/reactify.tsx new file mode 100644 index 000000000000..b3638fe8831e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/components/reactify.tsx @@ -0,0 +1,113 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; + +// TODO: Note that id and className can collide between Props and ReactifyProps +// leading to (likely) unexpected behaviors. We should either require Props to not +// contain an id/className, or not combine them (via intersection), instead preferring +// wrapping (composition). As an example: +// interface MyProps { +// id: number; +// } +// function myRender(container: HTMLDivElement, props: Readonly): void { +// props.id // unusable: id is string & number +// } +// new (reactify(myRender))({ id: 5 }); // error: id has to be string & number + +export type ReactifyProps = { + id?: string; + className?: string; +}; + +// TODO: add more React lifecycle callbacks as needed +export type LifeCycleCallbacks = { + componentWillUnmount?: () => void; +}; + +export interface RenderFuncType { + (container: HTMLDivElement, props: Readonly): void; + displayName?: string; + defaultProps?: Partial; + propTypes?: React.WeakValidationMap; +} + +export default function reactify( + renderFn: RenderFuncType, + callbacks?: LifeCycleCallbacks, +): React.ComponentClass { + class ReactifiedComponent extends React.Component { + container?: HTMLDivElement; + + constructor(props: Props & ReactifyProps) { + super(props); + this.setContainerRef = this.setContainerRef.bind(this); + } + + componentDidMount() { + this.execute(); + } + + componentDidUpdate() { + this.execute(); + } + + componentWillUnmount() { + this.container = undefined; + if (callbacks?.componentWillUnmount) { + callbacks.componentWillUnmount.bind(this)(); + } + } + + setContainerRef(ref: HTMLDivElement) { + this.container = ref; + } + + execute() { + if (this.container) { + renderFn(this.container, this.props); + } + } + + render() { + const { id, className } = this.props; + + return
; + } + } + + const ReactifiedClass: React.ComponentClass = + ReactifiedComponent; + + if (renderFn.displayName) { + ReactifiedClass.displayName = renderFn.displayName; + } + // eslint-disable-next-line react/forbid-foreign-prop-types + if (renderFn.propTypes) { + ReactifiedClass.propTypes = { + ...ReactifiedClass.propTypes, + ...renderFn.propTypes, + }; + } + if (renderFn.defaultProps) { + ReactifiedClass.defaultProps = renderFn.defaultProps; + } + + return ReactifiedComponent; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/index.ts new file mode 100644 index 000000000000..0db3d1a3e143 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/index.ts @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as ChartClient } from './clients/ChartClient'; +export { default as ChartMetadata } from './models/ChartMetadata'; +export { default as ChartPlugin } from './models/ChartPlugin'; +export { default as ChartProps } from './models/ChartProps'; + +export { default as createLoadableRenderer } from './components/createLoadableRenderer'; +export { default as reactify } from './components/reactify'; +export { default as SuperChart } from './components/SuperChart'; + +export { default as getChartBuildQueryRegistry } from './registries/ChartBuildQueryRegistrySingleton'; +export { default as getChartComponentRegistry } from './registries/ChartComponentRegistrySingleton'; +export { default as getChartControlPanelRegistry } from './registries/ChartControlPanelRegistrySingleton'; +export { default as getChartMetadataRegistry } from './registries/ChartMetadataRegistrySingleton'; +export { default as getChartTransformPropsRegistry } from './registries/ChartTransformPropsRegistrySingleton'; +export { BuildQuery } from './registries/ChartBuildQueryRegistrySingleton'; + +export { default as ChartDataProvider } from './components/ChartDataProvider'; + +export * from './types/Base'; +export * from './types/TransformFunction'; +export * from './types/QueryResponse'; + +export { default as __hack_reexport_chart_Base } from './types/Base'; +export { default as __hack_reexport_chart_TransformFunction } from './types/TransformFunction'; +export { default as __hack_reexport_chart_QueryResponse } from './types/QueryResponse'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartControlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartControlPanel.ts new file mode 100644 index 000000000000..b01a1ef225eb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartControlPanel.ts @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export type ChartControlPanel = { [key: string]: any }; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartMetadata.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartMetadata.ts new file mode 100644 index 000000000000..8b1c4590a3e9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartMetadata.ts @@ -0,0 +1,134 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Behavior } from '../types/Base'; + +interface LookupTable { + [key: string]: boolean; +} + +export interface ExampleImage { + url: string; + caption?: string; +} + +export interface ChartMetadataConfig { + name: string; + canBeAnnotationTypes?: string[]; + credits?: string[]; + description?: string; + datasourceCount?: number; + enableNoResults?: boolean; + show?: boolean; + supportedAnnotationTypes?: string[]; + thumbnail: string; + useLegacyApi?: boolean; + behaviors?: Behavior[]; + deprecated?: boolean; + exampleGallery?: ExampleImage[]; + tags?: string[]; + category?: string | null; +} + +export default class ChartMetadata { + name: string; + + canBeAnnotationTypes?: string[]; + + canBeAnnotationTypesLookup: LookupTable; + + credits: string[]; + + description: string; + + show: boolean; + + supportedAnnotationTypes: string[]; + + thumbnail: string; + + useLegacyApi: boolean; + + behaviors: Behavior[]; + + datasourceCount: number; + + enableNoResults: boolean; + + deprecated: boolean; + + exampleGallery: ExampleImage[]; + + tags: string[]; + + category: string | null; + + constructor(config: ChartMetadataConfig) { + const { + name, + canBeAnnotationTypes = [], + credits = [], + description = '', + show = true, + supportedAnnotationTypes = [], + thumbnail, + useLegacyApi = false, + behaviors = [], + datasourceCount = 1, + enableNoResults = true, + deprecated = false, + exampleGallery = [], + tags = [], + category = null, + } = config; + + this.name = name; + this.credits = credits; + this.description = description; + this.show = show; + this.canBeAnnotationTypes = canBeAnnotationTypes; + this.canBeAnnotationTypesLookup = canBeAnnotationTypes.reduce( + (prev: LookupTable, type: string) => { + const lookup = prev; + lookup[type] = true; + + return lookup; + }, + {}, + ); + this.supportedAnnotationTypes = supportedAnnotationTypes; + this.thumbnail = thumbnail; + this.useLegacyApi = useLegacyApi; + this.behaviors = behaviors; + this.datasourceCount = datasourceCount; + this.enableNoResults = enableNoResults; + this.deprecated = deprecated; + this.exampleGallery = exampleGallery; + this.tags = tags; + this.category = category; + } + + canBeAnnotationType(type: string): boolean { + return this.canBeAnnotationTypesLookup[type] || false; + } + + clone() { + return new ChartMetadata(this); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartPlugin.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartPlugin.ts new file mode 100644 index 000000000000..c60189815081 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartPlugin.ts @@ -0,0 +1,161 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ComponentType } from 'react'; +import { isRequired, Plugin, QueryFormData } from '../..'; +import ChartMetadata from './ChartMetadata'; +import getChartMetadataRegistry from '../registries/ChartMetadataRegistrySingleton'; +import getChartBuildQueryRegistry from '../registries/ChartBuildQueryRegistrySingleton'; +import getChartComponentRegistry from '../registries/ChartComponentRegistrySingleton'; +import getChartControlPanelRegistry from '../registries/ChartControlPanelRegistrySingleton'; +import getChartTransformPropsRegistry from '../registries/ChartTransformPropsRegistrySingleton'; +import { BuildQueryFunction, TransformProps } from '../types/TransformFunction'; +import { ChartControlPanel } from './ChartControlPanel'; +import { ChartProps } from '..'; + +function IDENTITY(x: T) { + return x; +} + +const EMPTY = {}; + +export type PromiseOrValue = Promise | T; +export type PromiseOrValueLoader = () => PromiseOrValue; +export type ChartType = ComponentType; +type ValueOrModuleWithValue = T | { default: T }; + +interface ChartPluginConfig< + FormData extends QueryFormData = QueryFormData, + Props extends ChartProps = ChartProps, +> { + metadata: ChartMetadata; + /** Use buildQuery for immediate value. For lazy-loading, use loadBuildQuery. */ + buildQuery?: BuildQueryFunction; + /** Use loadBuildQuery for dynamic import (lazy-loading) */ + loadBuildQuery?: PromiseOrValueLoader< + ValueOrModuleWithValue> + >; + /** Use transformProps for immediate value. For lazy-loading, use loadTransformProps. */ + transformProps?: TransformProps; + /** Use loadTransformProps for dynamic import (lazy-loading) */ + loadTransformProps?: PromiseOrValueLoader< + ValueOrModuleWithValue> + >; + /** Use Chart for immediate value. For lazy-loading, use loadChart. */ + Chart?: ChartType; + /** Use loadChart for dynamic import (lazy-loading) */ + loadChart?: PromiseOrValueLoader>; + /** Control panel configuration object */ + controlPanel?: ChartControlPanel; +} + +/** + * Loaders of the form `() => import('foo')` may return esmodules + * which require the value to be extracted as `module.default` + * */ +function sanitizeLoader( + loader: PromiseOrValueLoader>, +): PromiseOrValueLoader { + return () => { + const loaded = loader(); + + return loaded instanceof Promise + ? (loaded.then( + module => ('default' in module && module.default) || module, + ) as Promise) + : (loaded as T); + }; +} + +export default class ChartPlugin< + FormData extends QueryFormData = QueryFormData, + Props extends ChartProps = ChartProps, +> extends Plugin { + controlPanel: ChartControlPanel; + + metadata: ChartMetadata; + + loadBuildQuery?: PromiseOrValueLoader>; + + loadTransformProps: PromiseOrValueLoader>; + + loadChart: PromiseOrValueLoader; + + constructor(config: ChartPluginConfig) { + super(); + const { + metadata, + buildQuery, + loadBuildQuery, + transformProps = IDENTITY, + loadTransformProps, + Chart, + loadChart, + controlPanel = EMPTY, + } = config; + this.controlPanel = controlPanel; + this.metadata = metadata; + this.loadBuildQuery = + (loadBuildQuery && sanitizeLoader(loadBuildQuery)) || + (buildQuery && sanitizeLoader(() => buildQuery)) || + undefined; + this.loadTransformProps = sanitizeLoader( + loadTransformProps ?? (() => transformProps), + ); + + if (loadChart) { + this.loadChart = sanitizeLoader(loadChart); + } else if (Chart) { + this.loadChart = () => Chart; + } else { + throw new Error('Chart or loadChart is required'); + } + } + + register() { + const key: string = this.config.key || isRequired('config.key'); + getChartMetadataRegistry().registerValue(key, this.metadata); + getChartComponentRegistry().registerLoader(key, this.loadChart); + getChartControlPanelRegistry().registerValue(key, this.controlPanel); + getChartTransformPropsRegistry().registerLoader( + key, + this.loadTransformProps, + ); + if (this.loadBuildQuery) { + getChartBuildQueryRegistry().registerLoader(key, this.loadBuildQuery); + } + return this; + } + + unregister() { + const key: string = this.config.key || isRequired('config.key'); + getChartMetadataRegistry().remove(key); + getChartComponentRegistry().remove(key); + getChartControlPanelRegistry().remove(key); + getChartTransformPropsRegistry().remove(key); + getChartBuildQueryRegistry().remove(key); + return this; + } + + configure(config: { [key: string]: unknown }, replace?: boolean) { + super.configure(config, replace); + + return this; + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartProps.ts new file mode 100644 index 000000000000..bb0ab5d6f45e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/models/ChartProps.ts @@ -0,0 +1,212 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** Type checking is disabled for this file due to reselect only supporting + * TS declarations for selectors with up to 12 arguments. */ +// @ts-nocheck +import { createSelector } from 'reselect'; +import { + AppSection, + Behavior, + convertKeysToCamelCase, + Datasource, + FilterState, + JsonObject, +} from '../..'; +import { HandlerFunction, PlainObject, SetDataMaskHook } from '../types/Base'; +import { QueryData, DataRecordFilters } from '..'; + +// TODO: more specific typing for these fields of ChartProps +type AnnotationData = PlainObject; +type SnakeCaseDatasource = PlainObject; +type CamelCaseFormData = PlainObject; +type SnakeCaseFormData = PlainObject; +type RawFormData = CamelCaseFormData | SnakeCaseFormData; + +type ChartPropsSelector = (c: ChartPropsConfig) => ChartProps; + +/** Optional field for event handlers, renderers */ +type Hooks = { + /** + * sync active filters between chart and dashboard, "add" actually + * also handles "change" and "remove". + */ + onAddFilter?: (newFilters: DataRecordFilters, merge?: boolean) => void; + /** handle errors */ + onError?: HandlerFunction; + /** use the vis as control to update state */ + setControlValue?: HandlerFunction; + /** handle external filters */ + setDataMask?: SetDataMaskHook; + /** handle tooltip */ + setTooltip?: HandlerFunction; +} & PlainObject; + +/** + * Preferred format for ChartProps config + */ +export interface ChartPropsConfig { + annotationData?: AnnotationData; + /** Datasource metadata */ + datasource?: SnakeCaseDatasource; + /** + * Formerly called "filters", which was misleading because it is actually + * initial values of the filter_box and table vis + */ + initialValues?: DataRecordFilters; + /** Main configuration of the chart */ + formData?: RawFormData; + /** Chart height */ + height?: number; + /** Programmatic overrides such as event handlers, renderers */ + hooks?: Hooks; + /** The data returned for all queries objects in the request */ + queriesData?: QueryData[]; + /** Chart width */ + width?: number; + /** Own chart state that saved in dashboard */ + ownState?: JsonObject; + /** Filter state that saved in dashboard */ + filterState?: FilterState; + /** Set of actual behaviors that this instance of chart should use */ + behaviors?: Behavior[]; + /** Application section of the chart on the screen (in what components/screen it placed) */ + appSection?: AppSection; + /** is the chart refreshing its contents */ + isRefreshing?: boolean; +} + +const DEFAULT_WIDTH = 800; +const DEFAULT_HEIGHT = 600; + +export default class ChartProps { + static createSelector: () => ChartPropsSelector; + + annotationData: AnnotationData; + + datasource: Datasource; + + rawDatasource: SnakeCaseDatasource; + + initialValues: DataRecordFilters; + + formData: CamelCaseFormData; + + rawFormData: FormData; + + height: number; + + hooks: Hooks; + + ownState: JsonObject; + + filterState: FilterState; + + queriesData: QueryData[]; + + width: number; + + behaviors: Behavior[]; + + appSection?: AppSection; + + isRefreshing?: boolean; + + constructor(config: ChartPropsConfig & { formData?: FormData } = {}) { + const { + annotationData = {}, + datasource = {}, + formData = {} as FormData, + hooks = {}, + ownState = {}, + filterState = {}, + initialValues = {}, + queriesData = [], + behaviors = [], + width = DEFAULT_WIDTH, + height = DEFAULT_HEIGHT, + appSection, + isRefreshing, + } = config; + this.width = width; + this.height = height; + this.annotationData = annotationData; + this.datasource = convertKeysToCamelCase(datasource) as Datasource; + this.rawDatasource = datasource; + this.formData = convertKeysToCamelCase(formData); + this.rawFormData = formData; + this.hooks = hooks; + this.initialValues = initialValues; + this.queriesData = queriesData; + this.ownState = ownState; + this.filterState = filterState; + this.behaviors = behaviors; + this.appSection = appSection; + this.isRefreshing = isRefreshing; + } +} + +// eslint-disable-next-line func-name-matching +ChartProps.createSelector = function create(): ChartPropsSelector { + return createSelector( + (input: ChartPropsConfig) => input.annotationData, + input => input.datasource, + input => input.formData, + input => input.height, + input => input.hooks, + input => input.initialValues, + input => input.queriesData, + input => input.width, + input => input.ownState, + input => input.filterState, + input => input.behaviors, + input => input.appSection, + input => input.isRefreshing, + ( + annotationData, + datasource, + formData, + height, + hooks, + initialValues, + queriesData, + width, + ownState, + filterState, + behaviors, + appSection, + isRefreshing, + ) => + new ChartProps({ + annotationData, + datasource, + formData, + height, + hooks, + initialValues, + queriesData, + ownState, + filterState, + width, + behaviors, + appSection, + isRefreshing, + }), + ); +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/registries/ChartBuildQueryRegistrySingleton.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/registries/ChartBuildQueryRegistrySingleton.ts new file mode 100644 index 000000000000..1c5a5ca02da0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/registries/ChartBuildQueryRegistrySingleton.ts @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + Registry, + makeSingleton, + OverwritePolicy, + QueryContext, + SetDataMaskHook, + JsonObject, +} from '../..'; + +// Ideally this would be +export type BuildQuery = ( + formData: T, + options?: { + extras?: { + cachedChanges?: any; + }; + ownState?: JsonObject; + hooks?: { + setDataMask: SetDataMaskHook; + setCachedChanges: (newChanges: any) => void; + }; + }, +) => QueryContext; + +class ChartBuildQueryRegistry extends Registry { + constructor() { + super({ name: 'ChartBuildQuery', overwritePolicy: OverwritePolicy.WARN }); + } +} + +const getInstance = makeSingleton(ChartBuildQueryRegistry); + +export default getInstance; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/registries/ChartComponentRegistrySingleton.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/registries/ChartComponentRegistrySingleton.ts new file mode 100644 index 000000000000..ce7eba5b3f4b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/registries/ChartComponentRegistrySingleton.ts @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Registry, makeSingleton, OverwritePolicy } from '../..'; +import { ChartType } from '../models/ChartPlugin'; + +class ChartComponentRegistry extends Registry { + constructor() { + super({ name: 'ChartComponent', overwritePolicy: OverwritePolicy.WARN }); + } +} + +const getInstance = makeSingleton(ChartComponentRegistry); + +export default getInstance; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/registries/ChartControlPanelRegistrySingleton.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/registries/ChartControlPanelRegistrySingleton.ts new file mode 100644 index 000000000000..34a3d16c14a3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/registries/ChartControlPanelRegistrySingleton.ts @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Registry, makeSingleton } from '../..'; +import { ChartControlPanel } from '../models/ChartControlPanel'; + +class ChartControlPanelRegistry extends Registry< + ChartControlPanel, + ChartControlPanel +> { + constructor() { + super({ name: 'ChartControlPanel' }); + } +} + +const getInstance = makeSingleton(ChartControlPanelRegistry); + +export default getInstance; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/registries/ChartMetadataRegistrySingleton.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/registries/ChartMetadataRegistrySingleton.ts new file mode 100644 index 000000000000..bebcb5c5e1bc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/registries/ChartMetadataRegistrySingleton.ts @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Registry, makeSingleton, OverwritePolicy } from '../..'; +import ChartMetadata from '../models/ChartMetadata'; + +class ChartMetadataRegistry extends Registry { + constructor() { + super({ name: 'ChartMetadata', overwritePolicy: OverwritePolicy.WARN }); + } +} + +const getInstance = makeSingleton(ChartMetadataRegistry); + +export default getInstance; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/registries/ChartTransformPropsRegistrySingleton.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/registries/ChartTransformPropsRegistrySingleton.ts new file mode 100644 index 000000000000..15542ad9c125 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/registries/ChartTransformPropsRegistrySingleton.ts @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Registry, makeSingleton, OverwritePolicy } from '../..'; +import { TransformProps } from '../types/TransformFunction'; + +class ChartTransformPropsRegistry extends Registry> { + constructor() { + super({ + name: 'ChartTransformProps', + overwritePolicy: OverwritePolicy.WARN, + }); + } +} + +const getInstance = makeSingleton(ChartTransformPropsRegistry); + +export default getInstance; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/types/Annotation.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/types/Annotation.ts new file mode 100644 index 000000000000..d476dba8995c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/types/Annotation.ts @@ -0,0 +1,23 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export type AnnotationLayerMetadata = { + name: string; + sourceType?: string; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/types/Base.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/types/Base.ts new file mode 100644 index 000000000000..a3fe0f70a3fa --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/types/Base.ts @@ -0,0 +1,55 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ExtraFormData } from '../../query'; +import { JsonObject } from '../..'; + +export type HandlerFunction = (...args: unknown[]) => void; + +export enum Behavior { + INTERACTIVE_CHART = 'INTERACTIVE_CHART', + NATIVE_FILTER = 'NATIVE_FILTER', +} + +export enum AppSection { + EXPLORE = 'EXPLORE', + DASHBOARD = 'DASHBOARD', + FILTER_BAR = 'FILTER_BAR', + FILTER_CONFIG_MODAL = 'FILTER_CONFIG_MODAL', + EMBEDDED = 'EMBEDDED', +} + +export type FilterState = { value?: any; [key: string]: any }; + +export type DataMask = { + extraFormData?: ExtraFormData; + filterState?: FilterState; + ownState?: JsonObject; +}; + +export type SetDataMaskHook = { + ({ filterState, extraFormData, ownState }: DataMask): void; +}; + +export interface PlainObject { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + [key: string]: any; +} + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/types/QueryResponse.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/types/QueryResponse.ts new file mode 100644 index 000000000000..d5b12e89c28f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/types/QueryResponse.ts @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Types for query response + */ +import { + DataRecordValue, + DataRecord, + ChartDataResponseResult, +} from '../../types'; +import { PlainObject } from './Base'; + +export interface TimeseriesDataRecord extends DataRecord { + __timestamp: number | string | Date | null; +} + +// data record value filters from FilterBox +export interface DataRecordFilters { + [key: string]: DataRecordValue[]; +} + +/** + * Legacy queried data for charts. List of arbitrary dictionaries generated + * by `viz.py`. + * TODO: clean this up when all charts have been migrated to v1 API. + */ +export type LegacyQueryData = PlainObject; + +/** + * Ambiguous query data type. Reserved for the generic QueryFormData. + * Don't use this for a specific chart (since you know which API it uses already). + */ +export type QueryData = LegacyQueryData | ChartDataResponseResult; + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/types/TransformFunction.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/types/TransformFunction.ts new file mode 100644 index 000000000000..cee0ba27353d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/chart/types/TransformFunction.ts @@ -0,0 +1,54 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + QueryFormData, + QueryContext, + SetDataMaskHook, + JsonObject, +} from '../..'; +import ChartProps from '../models/ChartProps'; +import { PlainObject } from './Base'; + +export type PlainProps = PlainObject; + +type TransformFunction = ( + x: Input, +) => Output; + +export type PreTransformProps = TransformFunction; +export type TransformProps = + TransformFunction; +export type PostTransformProps = TransformFunction; + +export type BuildQueryFunction = ( + formData: T, + options?: { + extras?: { + cachedChanges?: any; + }; + ownState?: JsonObject; + hooks?: { + setDataMask: SetDataMaskHook; + setCachedChanges: (newChanges: any) => void; + }; + }, +) => QueryContext; + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/CategoricalColorNamespace.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/CategoricalColorNamespace.ts new file mode 100644 index 000000000000..7e28cae6baba --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/CategoricalColorNamespace.ts @@ -0,0 +1,100 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import CategoricalColorScale from './CategoricalColorScale'; +import { ColorsLookup } from './types'; +import getCategoricalSchemeRegistry from './CategoricalSchemeRegistrySingleton'; +import stringifyAndTrim from './stringifyAndTrim'; + +export default class CategoricalColorNamespace { + name: string; + + forcedItems: ColorsLookup; + + scales: { + [key: string]: CategoricalColorScale; + }; + + constructor(name: string) { + this.name = name; + this.scales = {}; + this.forcedItems = {}; + } + + getScale(schemeId?: string) { + const id = schemeId ?? getCategoricalSchemeRegistry().getDefaultKey() ?? ''; + const scheme = getCategoricalSchemeRegistry().get(id); + const newScale = new CategoricalColorScale( + scheme?.colors ?? [], + this.forcedItems, + ); + + return newScale; + } + + /** + * Enforce specific color for given value + * This will apply across all color scales + * in this namespace. + * @param {*} value value + * @param {*} forcedColor color + */ + setColor(value: string, forcedColor: string) { + this.forcedItems[stringifyAndTrim(value)] = forcedColor; + + return this; + } + + resetColors() { + this.forcedItems = {}; + } +} + +const namespaces: { + [key: string]: CategoricalColorNamespace; +} = {}; + +export const DEFAULT_NAMESPACE = 'GLOBAL'; + +export function getNamespace(name: string = DEFAULT_NAMESPACE) { + const instance = namespaces[name]; + if (instance) { + return instance; + } + const newInstance = new CategoricalColorNamespace(name); + namespaces[name] = newInstance; + + return newInstance; +} + +export function getColor( + value?: string, + schemeId?: string, + namespace?: string, +) { + return getNamespace(namespace).getScale(schemeId).getColor(value); +} + +/* + Returns a new scale instance within the same namespace. + Especially useful when a chart is booting for the first time +*/ +export function getScale(scheme?: string, namespace?: string) { + return getNamespace(namespace).getScale(scheme); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/CategoricalColorScale.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/CategoricalColorScale.ts new file mode 100644 index 000000000000..63b2cb55f67c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/CategoricalColorScale.ts @@ -0,0 +1,184 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-dupe-class-members */ +import { scaleOrdinal, ScaleOrdinal } from 'd3-scale'; +import { ExtensibleFunction } from '../models'; +import { ColorsLookup } from './types'; +import stringifyAndTrim from './stringifyAndTrim'; + +// Use type augmentation to correct the fact that +// an instance of CategoricalScale is also a function + +interface CategoricalColorScale { + (x: { toString(): string }): string; +} + +class CategoricalColorScale extends ExtensibleFunction { + colors: string[]; + + scale: ScaleOrdinal<{ toString(): string }, string>; + + parentForcedColors?: ColorsLookup; + + forcedColors: ColorsLookup; + + /** + * Constructor + * @param {*} colors an array of colors + * @param {*} parentForcedColors optional parameter that comes from parent + * (usually CategoricalColorNamespace) and supersede this.forcedColors + */ + constructor(colors: string[], parentForcedColors?: ColorsLookup) { + super((value: string) => this.getColor(value)); + + this.colors = colors; + this.scale = scaleOrdinal<{ toString(): string }, string>(); + this.scale.range(colors); + this.parentForcedColors = parentForcedColors; + this.forcedColors = {}; + } + + getColor(value?: string) { + const cleanedValue = stringifyAndTrim(value); + const parentColor = + this.parentForcedColors && this.parentForcedColors[cleanedValue]; + if (parentColor) { + return parentColor; + } + + const forcedColor = this.forcedColors[cleanedValue]; + if (forcedColor) { + return forcedColor; + } + + return this.scale(cleanedValue); + } + + /** + * Enforce specific color for given value + * @param {*} value value + * @param {*} forcedColor forcedColor + */ + setColor(value: string, forcedColor: string) { + this.forcedColors[stringifyAndTrim(value)] = forcedColor; + return this; + } + + /** + * Get a mapping of data values to colors + * @returns an object where the key is the data value and the value is the hex color code + */ + getColorMap() { + const colorMap: { [key: string]: string | undefined } = {}; + this.scale.domain().forEach(value => { + colorMap[value.toString()] = this.scale(value); + }); + + return { + ...colorMap, + ...this.forcedColors, + ...this.parentForcedColors, + }; + } + + /** + * Returns an exact copy of this scale. Changes to this scale will not affect the returned scale, and vice versa. + */ + copy() { + const copy = new CategoricalColorScale( + this.scale.range(), + this.parentForcedColors, + ); + copy.forcedColors = { ...this.forcedColors }; + copy.domain(this.domain()); + copy.unknown(this.unknown()); + + return copy; + } + + /** + * Returns the scale's current domain. + */ + domain(): { toString(): string }[]; + + /** + * Expands the domain to include the specified array of values. + */ + domain(newDomain: { toString(): string }[]): this; + + domain(newDomain?: { toString(): string }[]): unknown { + if (typeof newDomain === 'undefined') { + return this.scale.domain(); + } + + this.scale.domain(newDomain); + return this; + } + + /** + * Returns the scale's current range. + */ + range(): string[]; + + /** + * Sets the range of the ordinal scale to the specified array of values. + * + * The first element in the domain will be mapped to the first element in range, the second domain value to the second range value, and so on. + * + * If there are fewer elements in the range than in the domain, the scale will reuse values from the start of the range. + * + * @param range Array of range values. + */ + range(newRange: string[]): this; + + range(newRange?: string[]): unknown { + if (typeof newRange === 'undefined') { + return this.scale.range(); + } + + this.colors = newRange; + this.scale.range(newRange); + return this; + } + + /** + * Returns the current unknown value, which defaults to "implicit". + */ + unknown(): string | { name: 'implicit' }; + + /** + * Sets the output value of the scale for unknown input values and returns this scale. + * The implicit value enables implicit domain construction. scaleImplicit can be used as a convenience to set the implicit value. + * + * @param value Unknown value to be used or scaleImplicit to set implicit scale generation. + */ + unknown(value: string | { name: 'implicit' }): this; + + unknown(value?: string | { name: 'implicit' }): unknown { + if (typeof value === 'undefined') { + return this.scale.unknown(); + } + + this.scale.unknown(value); + return this; + } +} + +export default CategoricalColorScale; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/CategoricalScheme.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/CategoricalScheme.ts new file mode 100644 index 000000000000..af4d52a575b8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/CategoricalScheme.ts @@ -0,0 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import ColorScheme from './ColorScheme'; + +export default class CategoricalScheme extends ColorScheme {} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/CategoricalSchemeRegistrySingleton.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/CategoricalSchemeRegistrySingleton.ts new file mode 100644 index 000000000000..50fcf59fc226 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/CategoricalSchemeRegistrySingleton.ts @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import makeSingleton from '../utils/makeSingleton'; +import CategoricalScheme from './CategoricalScheme'; +import ColorSchemeRegistry from './ColorSchemeRegistry'; +import schemes from './colorSchemes/categorical/d3'; + +class CategoricalSchemeRegistry extends ColorSchemeRegistry { + constructor() { + super(); + + this.registerValue('SUPERSET_DEFAULT', schemes[0]); + } +} + +const getInstance = makeSingleton(CategoricalSchemeRegistry); + +export default getInstance; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/ColorScheme.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/ColorScheme.ts new file mode 100644 index 000000000000..25156e615d08 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/ColorScheme.ts @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export interface ColorSchemeConfig { + colors: string[]; + description?: string; + id: string; + label?: string; + isDefault?: boolean; +} + +export default class ColorScheme { + colors: string[]; + + description: string; + + id: string; + + label: string; + + isDefault?: boolean; + + constructor({ + colors, + description = '', + id, + label, + isDefault, + }: ColorSchemeConfig) { + this.id = id; + this.label = label ?? id; + this.colors = colors; + this.description = description; + this.isDefault = isDefault; + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/ColorSchemeRegistry.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/ColorSchemeRegistry.ts new file mode 100644 index 000000000000..d36b598bcd0c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/ColorSchemeRegistry.ts @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { RegistryWithDefaultKey, OverwritePolicy } from '../models'; + +export default class ColorSchemeRegistry extends RegistryWithDefaultKey { + constructor() { + super({ + name: 'ColorScheme', + overwritePolicy: OverwritePolicy.WARN, + setFirstItemAsDefault: true, + }); + } + + get(key?: string) { + return super.get(key) as T | undefined; + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/SequentialScheme.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/SequentialScheme.ts new file mode 100644 index 000000000000..a0e404322c3d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/SequentialScheme.ts @@ -0,0 +1,96 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { scaleLinear } from 'd3-scale'; +import { + interpolateHcl, + interpolateNumber, + piecewise, + quantize, +} from 'd3-interpolate'; +import ColorScheme, { ColorSchemeConfig } from './ColorScheme'; + +export interface SequentialSchemeConfig extends ColorSchemeConfig { + isDiverging?: boolean; +} + +export default class SequentialScheme extends ColorScheme { + isDiverging: boolean; + + constructor(config: SequentialSchemeConfig) { + super(config); + const { isDiverging = false } = config; + this.isDiverging = isDiverging; + } + + /** + * Return a linear scale with a new domain interpolated from the input domain + * to match the number of elements in the color scheme + * because D3 continuous scale uses piecewise mapping between domain and range. + * This is a common use-case when the domain is [min, max] + * and the palette has more than two colors. + * + * @param domain domain of the scale + * @param modifyRange Set this to true if you don't want to modify the domain and + * want to interpolate range to have the same number of elements with domain instead. + */ + createLinearScale(domain: number[] = [0, 1], modifyRange = false) { + const scale = scaleLinear().interpolate(interpolateHcl).clamp(true); + + return modifyRange || domain.length === this.colors.length + ? scale.domain(domain).range(this.getColors(domain.length)) + : scale + .domain( + quantize(piecewise(interpolateNumber, domain), this.colors.length), + ) + .range(this.colors); + } + + /** + * Get colors from this scheme + * @param numColors number of colors to return. + * Will interpolate the current scheme to match the number of colors requested + * @param extent The extent of the color range to use. + * For example [0.2, 1] will rescale the color scheme + * such that color values in the range [0, 0.2) are excluded from the scheme. + */ + getColors( + numColors = this.colors.length, + extent: number[] = [0, 1], + ): string[] { + if ( + numColors === this.colors.length && + extent[0] === 0 && + extent[1] === 1 + ) { + return this.colors; + } + + const piecewiseScale: (t: number) => string = piecewise( + interpolateHcl, + this.colors, + ); + const adjustExtent = scaleLinear().range(extent).clamp(true); + + return quantize( + t => piecewiseScale(adjustExtent(t) as number), + numColors, + ); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/SequentialSchemeRegistrySingleton.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/SequentialSchemeRegistrySingleton.ts new file mode 100644 index 000000000000..63807b34d0e7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/SequentialSchemeRegistrySingleton.ts @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import makeSingleton from '../utils/makeSingleton'; +import ColorSchemeRegistry from './ColorSchemeRegistry'; +import SequentialScheme from './SequentialScheme'; +import schemes from './colorSchemes/sequential/d3'; + +class SequentialSchemeRegistry extends ColorSchemeRegistry { + constructor() { + super(); + + this.registerValue('SUPERSET_DEFAULT', schemes[0]); + } +} + +const getInstance = makeSingleton(SequentialSchemeRegistry); + +export default getInstance; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/airbnb.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/airbnb.ts new file mode 100644 index 000000000000..462065b84f2b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/airbnb.ts @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import CategoricalScheme from '../../CategoricalScheme'; + +const schemes = [ + { + id: 'bnbColors', + label: 'Airbnb Colors', + colors: [ + '#ff5a5f', // rausch + '#7b0051', // hackb + '#007A87', // kazan + '#00d1c1', // babu + '#8ce071', // lima + '#ffb400', // beach + '#b4a76c', // barol + '#ff8083', + '#cc0086', + '#00a1b3', + '#00ffeb', + '#bbedab', + '#ffd266', + '#cbc29a', + '#ff3339', + '#ff1ab1', + '#005c66', + '#00b3a5', + '#55d12e', + '#b37e00', + '#988b4e', + ], + }, +].map(s => new CategoricalScheme(s)); + +export default schemes; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/d3.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/d3.ts new file mode 100644 index 000000000000..84aa0ec02490 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/d3.ts @@ -0,0 +1,119 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import CategoricalScheme from '../../CategoricalScheme'; + +const schemes = [ + { + id: 'd3Category10', + label: 'D3 Category 10', + colors: [ + '#1f77b4', + '#ff7f0e', + '#2ca02c', + '#d62728', + '#9467bd', + '#8c564b', + '#e377c2', + '#7f7f7f', + '#bcbd22', + '#17becf', + ], + }, + { + id: 'd3Category20', + label: 'D3 Category 20', + colors: [ + '#1f77b4', + '#aec7e8', + '#ff7f0e', + '#ffbb78', + '#2ca02c', + '#98df8a', + '#d62728', + '#ff9896', + '#9467bd', + '#c5b0d5', + '#8c564b', + '#c49c94', + '#e377c2', + '#f7b6d2', + '#7f7f7f', + '#c7c7c7', + '#bcbd22', + '#dbdb8d', + '#17becf', + '#9edae5', + ], + }, + { + id: 'd3Category20b', + label: 'D3 Category 20b', + colors: [ + '#393b79', + '#5254a3', + '#6b6ecf', + '#9c9ede', + '#637939', + '#8ca252', + '#b5cf6b', + '#cedb9c', + '#8c6d31', + '#bd9e39', + '#e7ba52', + '#e7cb94', + '#843c39', + '#ad494a', + '#d6616b', + '#e7969c', + '#7b4173', + '#a55194', + '#ce6dbd', + '#de9ed6', + ], + }, + { + id: 'd3Category20c', + label: 'D3 Category 20c', + colors: [ + '#3182bd', + '#6baed6', + '#9ecae1', + '#c6dbef', + '#e6550d', + '#fd8d3c', + '#fdae6b', + '#fdd0a2', + '#31a354', + '#74c476', + '#a1d99b', + '#c7e9c0', + '#756bb1', + '#9e9ac8', + '#bcbddc', + '#dadaeb', + '#636363', + '#969696', + '#bdbdbd', + '#d9d9d9', + ], + }, +].map(s => new CategoricalScheme(s)); + +export default schemes; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/echarts.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/echarts.ts new file mode 100644 index 000000000000..a8dc350f17f3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/echarts.ts @@ -0,0 +1,57 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import CategoricalScheme from '../../CategoricalScheme'; + +const schemes = [ + { + id: 'echarts4Colors', + label: 'ECharts v4.x Colors', + colors: [ + '#c23531', + '#2f4554', + '#61a0a8', + '#d48265', + '#91c7ae', + '#749f83', + '#ca8622', + '#bda29a', + '#6e7074', + '#546570', + '#c4ccd3', + ], + }, + { + id: 'echarts5Colors', + label: 'ECharts v5.x Colors', + colors: [ + '#5470C6', + '#91CC75', + '#FAC858', + '#EE6666', + '#73C0DE', + '#3BA272', + '#FC8452', + '#9A60B4', + '#EA7CCC', + ], + }, +].map(s => new CategoricalScheme(s)); + +export default schemes; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/google.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/google.ts new file mode 100644 index 000000000000..740d35870eee --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/google.ts @@ -0,0 +1,67 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import CategoricalScheme from '../../CategoricalScheme'; + +const schemes = [ + { + id: 'googleCategory10c', + label: 'Google Category 10c', + colors: [ + '#3366cc', + '#dc3912', + '#ff9900', + '#109618', + '#990099', + '#0099c6', + '#dd4477', + '#66aa00', + '#b82e2e', + '#316395', + ], + }, + { + id: 'googleCategory20c', + label: 'Google Category 20c', + colors: [ + '#3366cc', + '#dc3912', + '#ff9900', + '#109618', + '#990099', + '#0099c6', + '#dd4477', + '#66aa00', + '#b82e2e', + '#316395', + '#994499', + '#22aa99', + '#aaaa11', + '#6633cc', + '#e67300', + '#8b0707', + '#651067', + '#329262', + '#5574a6', + '#3b3eac', + ], + }, +].map(s => new CategoricalScheme(s)); + +export default schemes; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/index.ts new file mode 100644 index 000000000000..81bab749a6c7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/index.ts @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as CategoricalAirbnb } from './airbnb'; +export { default as CategoricalD3 } from './d3'; +export { default as CategoricalEcharts } from './echarts'; +export { default as CategoricalGoogle } from './google'; +export { default as CategoricalLyft } from './lyft'; +export { default as CategoricalPreset } from './preset'; +export { default as CategoricalSuperset } from './superset'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/lyft.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/lyft.ts new file mode 100644 index 000000000000..ec536826c9bc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/lyft.ts @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import CategoricalScheme from '../../CategoricalScheme'; + +const schemes = [ + { + id: 'lyftColors', + label: 'Lyft Colors', + colors: [ + '#EA0B8C', + '#6C838E', + '#29ABE2', + '#33D9C1', + '#9DACB9', + '#7560AA', + '#2D5584', + '#831C4A', + '#333D47', + '#AC2077', + ], + }, +].map(s => new CategoricalScheme(s)); + +export default schemes; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/preset.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/preset.ts new file mode 100644 index 000000000000..6bd51dc96273 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/preset.ts @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import CategoricalScheme from '../../CategoricalScheme'; + +const schemes = [ + { + id: 'presetColors', + label: 'Preset Colors', + colors: [ + // Full color + '#6BD3B3', + '#FCC550', + '#408184', + '#66CBE2', + '#EE5960', + '#484E5A', + '#FF874E', + '#03748E', + '#C9BBAB', + '#B17BAA', + // Pastels + '#B5E9D9', + '#FDE2A7', + '#9FC0C1', + '#B2E5F0', + '#F6ACAF', + '#A4A6AC', + '#FFC3A6', + '#81B9C6', + '#E4DDD5', + '#D9BDD5', + ], + }, +].map(s => new CategoricalScheme(s)); + +export default schemes; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/superset.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/superset.ts new file mode 100644 index 000000000000..e65c6b3600bf --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/categorical/superset.ts @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import CategoricalScheme from '../../CategoricalScheme'; + +const schemes = [ + { + id: 'supersetColors', + label: 'Superset Colors', + colors: [ + // Full color + '#1FA8C9', + '#454E7C', + '#5AC189', + '#FF7F44', + '#666666', + '#E04355', + '#FCC700', + '#A868B7', + '#3CCCCB', + '#A38F79', + // Pastels + '#8FD3E4', + '#A1A6BD', + '#ACE1C4', + '#FEC0A1', + '#B2B2B2', + '#EFA1AA', + '#FDE380', + '#D3B3DA', + '#9EE5E5', + '#D1C6BC', + ], + }, +].map(s => new CategoricalScheme(s)); + +export default schemes; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/index.ts new file mode 100644 index 000000000000..a28fc56637c2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/index.ts @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export * from './categorical'; +export * from './sequential'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/sequential/common.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/sequential/common.ts new file mode 100644 index 000000000000..73e84c257f93 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/sequential/common.ts @@ -0,0 +1,223 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import SequentialScheme from '../../SequentialScheme'; + +const schemes = [ + { + id: 'blue_white_yellow', + label: 'blue/white/yellow', + colors: ['#00d1c1', 'white', '#ffb400'], + }, + { + id: 'fire', + colors: ['white', 'yellow', 'red', 'black'], + }, + { + id: 'white_black', + label: 'white/black', + colors: ['white', 'black'], + }, + { + id: 'black_white', + label: 'black/white', + colors: ['black', 'white'], + }, + { + id: 'dark_blue', + label: 'dark blues', + colors: ['#EBF5F8', '#6BB1CC', '#357E9B', '#1B4150', '#092935'], + }, + { + id: 'pink_grey', + label: 'pink/grey', + isDiverging: true, + colors: ['#E70B81', '#FAFAFA', '#666666'], + }, + { + id: 'greens', + colors: ['#ffffcc', '#78c679', '#006837'], + }, + { + id: 'purples', + colors: ['#f2f0f7', '#9e9ac8', '#54278f'], + }, + { + id: 'oranges', + colors: ['#fef0d9', '#fc8d59', '#b30000'], + }, + { + id: 'red_yellow_blue', + label: 'red/yellow/blue', + isDiverging: true, + colors: ['#d7191c', '#fdae61', '#ffffbf', '#abd9e9', '#2c7bb6'], + }, + { + id: 'brown_white_green', + label: 'brown/white/green', + isDiverging: true, + colors: ['#a6611a', '#dfc27d', '#f5f5f5', '#80cdc1', '#018571'], + }, + { + id: 'purple_white_green', + label: 'purple/white/green', + isDiverging: true, + colors: ['#7b3294', '#c2a5cf', '#f7f7f7', '#a6dba0', '#008837'], + }, + { + id: 'superset_seq_1', + label: 'Superset Sequential #1', + isDiverging: false, + colors: [ + '#F4FAD4', + '#D7F1AC', + '#A9E3AF', + '#82CDBB', + '#63C1BF', + '#1FA8C9', + '#2367AC', + '#2A2D84', + '#251354', + '#050415', + ], + }, + { + id: 'superset_seq_2', + label: 'Superset Sequential #2', + isDiverging: false, + colors: [ + '#FBF1B4', + '#FDD093', + '#FEAD71', + '#FF7F44', + '#E04355', + '#C53D6F', + '#952B7B', + '#4F167B', + '#251354', + '#050415', + ], + }, + { + id: 'superset_div_1', + label: 'Superset Diverging #1', + isDiverging: false, + colors: [ + '#E04355', + '#E87180', + '#EFA1AA', + '#F7D0D4', + '#F6F6F7', + '#C8E9F1', + '#8FD3E4', + '#58BDD7', + '#1FA8C9', + ], + }, + { + id: 'superset_div_2', + label: 'Superset Diverging #2', + isDiverging: false, + colors: [ + '#FF7F44', + '#FF9E72', + '#FEC0A1', + '#FFDFD0', + '#F6F6F7', + '#C8E9F1', + '#8FD3E4', + '#58BDD7', + '#1FA8C9', + ], + }, + { + id: 'preset_seq_1', + label: 'Preset Sequential #1', + isDiverging: false, + colors: [ + '#F3FAEB', + '#DEF2D7', + '#CAEAC4', + '#98DEBC', + '#69D3B5', + '#4AA59D', + '#287886', + '#0D5B6A', + '#03273F', + '#03273F', + ], + }, + { + id: 'preset_seq_2', + label: 'Preset Sequential #2', + isDiverging: false, + colors: [ + '#FEECE8', + '#FDE2DA', + '#FCCEC2', + '#F998AA', + '#F76896', + '#D13186', + '#AC0378', + '#790071', + '#43026C', + '#050415', + ], + }, + { + id: 'preset_div_1', + label: 'Preset Diverging #1', + isDiverging: false, + colors: [ + '#B17BAA', + '#C59DC0', + '#D9BDD5', + '#D9BDD5', + '#F6F6F7', + '#CBEFE5', + '#98DECA', + '#64D0B0', + '#32BE96', + ], + }, + { + id: 'preset_div_2', + label: 'Preset Diverging #2', + isDiverging: false, + colors: [ + '#CB5171', + '#D87C94', + '#E5A8B7', + '#F2D3DB', + '#F6F6F7', + '#CEE8EC', + '#9CD1D8', + '#6CBAC6', + '#3AA3B2', + ], + }, + { + id: 'echarts_gradient', + label: 'ECharts gradient', + isDiverging: false, + colors: ['#f6EFA6', '#D88273', '#BF444C'], + }, +].map(s => new SequentialScheme(s)); + +export default schemes; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/sequential/d3.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/sequential/d3.ts new file mode 100644 index 000000000000..dd02a18237ec --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/sequential/d3.ts @@ -0,0 +1,529 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import SequentialScheme from '../../SequentialScheme'; + +const schemes = [ + { + id: 'schemeRdBu', + label: 'red/blue', + isDiverging: true, + colors: [ + '#67001f', + '#b2182b', + '#d6604d', + '#f4a582', + '#fddbc7', + '#d1e5f0', + '#92c5de', + '#4393c3', + '#2166ac', + '#053061', + ], + }, + { + id: 'schemeBrBG', + label: 'brown/green', + isDiverging: true, + colors: [ + '#543005', + '#8c510a', + '#bf812d', + '#dfc27d', + '#f6e8c3', + '#c7eae5', + '#80cdc1', + '#35978f', + '#01665e', + '#003c30', + ], + }, + { + id: 'schemePRGn', + label: 'purple/green', + isDiverging: true, + colors: [ + '#40004b', + '#762a83', + '#9970ab', + '#c2a5cf', + '#e7d4e8', + '#d9f0d3', + '#a6dba0', + '#5aae61', + '#1b7837', + '#00441b', + ], + }, + { + id: 'schemePiYG', + label: 'pink/green', + isDiverging: true, + colors: [ + '#8e0152', + '#c51b7d', + '#de77ae', + '#f1b6da', + '#fde0ef', + '#e6f5d0', + '#b8e186', + '#7fbc41', + '#4d9221', + '#276419', + ], + }, + { + id: 'schemePuOr', + label: 'purple/orange', + isDiverging: true, + colors: [ + '#2d004b', + '#542788', + '#8073ac', + '#b2abd2', + '#d8daeb', + '#fee0b6', + '#fdb863', + '#e08214', + '#b35806', + '#7f3b08', + ], + }, + { + id: 'schemeRdGy', + label: 'red/gray/black', + isDiverging: true, + colors: [ + '#67001f', + '#b2182b', + '#d6604d', + '#f4a582', + '#fddbc7', + '#e0e0e0', + '#bababa', + '#878787', + '#4d4d4d', + '#1a1a1a', + ], + }, + { + id: 'schemeRdYlBu', + label: 'red/yellow/blue', + colors: [ + '#a50026', + '#d73027', + '#f46d43', + '#fdae61', + '#fee090', + '#e0f3f8', + '#abd9e9', + '#74add1', + '#4575b4', + '#313695', + ], + isDiverging: true, + }, + { + id: 'schemeRdYlGn', + label: 'red/yellow/green', + colors: [ + '#a50026', + '#d73027', + '#f46d43', + '#fdae61', + '#fee08b', + '#d9ef8b', + '#a6d96a', + '#66bd63', + '#1a9850', + '#006837', + ], + isDiverging: true, + }, + { + id: 'schemeSpectral', + label: 'rainbow', + colors: [ + '#9e0142', + '#d53e4f', + '#f46d43', + '#fdae61', + '#fee08b', + '#e6f598', + '#abdda4', + '#66c2a5', + '#3288bd', + '#5e4fa2', + ], + }, + { + id: 'schemeBlues', + label: 'blues', + colors: [ + '#b5d4e9', + '#93c3df', + '#6daed5', + '#4b97c9', + '#2f7ebc', + '#1864aa', + '#0a4a90', + '#08306b', + ], + }, + { + id: 'schemeGreens', + label: 'greens', + colors: [ + '#b7e2b1', + '#97d494', + '#73c378', + '#4daf62', + '#2f984f', + '#157f3b', + '#036429', + '#00441b', + ], + }, + { + id: 'schemeGrays', + label: 'grays', + colors: [ + '#cecece', + '#b4b4b4', + '#979797', + '#7a7a7a', + '#5f5f5f', + '#404040', + '#1e1e1e', + '#000000', + ], + }, + { + id: 'schemeOranges', + label: 'oranges', + colors: [ + '#fdc28c', + '#fda762', + '#fb8d3d', + '#f2701d', + '#e25609', + '#c44103', + '#9f3303', + '#7f2704', + ], + }, + { + id: 'schemePurples', + label: 'purples', + colors: [ + '#cecee5', + '#b6b5d8', + '#9e9bc9', + '#8782bc', + '#7363ac', + '#61409b', + '#501f8c', + '#3f007d', + ], + }, + { + id: 'schemeReds', + label: 'reds', + colors: [ + '#fcaa8e', + '#fc8a6b', + '#f9694c', + '#ef4533', + '#d92723', + '#bb151a', + '#970b13', + '#67000d', + ], + }, + { + id: 'schemeViridis', + label: 'Viridis', + colors: [ + '#482475', + '#414487', + '#355f8d', + '#2a788e', + '#21918c', + '#22a884', + '#44bf70', + '#7ad151', + '#bddf26', + '#fde725', + ], + }, + { + id: 'schemeInferno', + label: 'Inferno', + colors: [ + '#160b39', + '#420a68', + '#6a176e', + '#932667', + '#bc3754', + '#dd513a', + '#f37819', + '#fca50a', + '#f6d746', + '#fcffa4', + ], + }, + { + id: 'schemeMagma', + label: 'Magma', + colors: [ + '#140e36', + '#3b0f70', + '#641a80', + '#8c2981', + '#b73779', + '#de4968', + '#f7705c', + '#fe9f6d', + '#fecf92', + '#fcfdbf', + ], + }, + { + id: 'schemeWarm', + label: 'Warm', + colors: [ + '#963db3', + '#bf3caf', + '#e4419d', + '#fe4b83', + '#ff5e63', + '#ff7847', + '#fb9633', + '#e2b72f', + '#c6d63c', + '#aff05b', + ], + }, + { + id: 'schemeCool', + label: 'Cool', + colors: [ + '#6054c8', + '#4c6edb', + '#368ce1', + '#23abd8', + '#1ac7c2', + '#1ddfa3', + '#30ef82', + '#52f667', + '#7ff658', + '#aff05b', + ], + }, + { + id: 'schemeCubehelixDefault', + label: 'Cube Helix', + colors: [ + '#1a1530', + '#163d4e', + '#1f6642', + '#54792f', + '#a07949', + '#d07e93', + '#cf9cda', + '#c1caf3', + '#d2eeef', + '#ffffff', + ], + }, + { + id: 'schemeBuGn', + label: 'blue/green', + colors: [ + '#b7e4da', + '#8fd3c1', + '#68c2a3', + '#49b17f', + '#2f9959', + '#157f3c', + '#036429', + '#00441b', + ], + }, + { + id: 'schemeBuPu', + label: 'blue/purple', + colors: [ + '#b2cae1', + '#9cb3d5', + '#8f95c6', + '#8c74b5', + '#8952a5', + '#852d8f', + '#730f71', + '#4d004b', + ], + }, + { + id: 'schemeGnBu', + label: 'green/blue', + colors: [ + '#bde5bf', + '#9ed9bb', + '#7bcbc4', + '#58b7cd', + '#399cc6', + '#1d7eb7', + '#0b60a1', + '#084081', + ], + }, + { + id: 'schemeOrRd', + label: 'orange/red', + colors: [ + '#fdca94', + '#fdb07a', + '#fa8e5d', + '#f16c49', + '#e04530', + '#c81d13', + '#a70403', + '#7f0000', + ], + }, + { + id: 'schemePuBuGn', + label: 'purple/blue/green', + colors: [ + '#bec9e2', + '#98b9d9', + '#69a8cf', + '#4096c0', + '#19879f', + '#037877', + '#016353', + '#014636', + ], + }, + { + id: 'schemePuBu', + label: 'purple/blue', + colors: [ + '#bfc9e2', + '#9bb9d9', + '#72a8cf', + '#4394c3', + '#1a7db6', + '#0667a1', + '#045281', + '#023858', + ], + }, + { + id: 'schemePuRd', + label: 'purple/red', + colors: [ + '#d0aad2', + '#d08ac2', + '#dd63ae', + '#e33890', + '#d71c6c', + '#b70b4f', + '#8f023a', + '#67001f', + ], + }, + { + id: 'schemeRdPu', + label: 'red/purple', + colors: [ + '#fbb5bc', + '#f993b0', + '#f369a3', + '#e03e98', + '#c01788', + '#99037c', + '#700174', + '#49006a', + ], + }, + { + id: 'schemeYlGnBu', + label: 'yellow/green/blue', + colors: [ + '#d5eeb3', + '#a9ddb7', + '#73c9bd', + '#45b4c2', + '#2897bf', + '#2073b2', + '#234ea0', + '#1c3185', + '#081d58', + ], + }, + { + id: 'schemeYlGn', + label: 'yellow/green', + colors: [ + '#e4f4ac', + '#c7e89b', + '#a2d88a', + '#78c578', + '#4eaf63', + '#2f944e', + '#15793f', + '#036034', + '#004529', + ], + }, + { + id: 'schemeYlOrBr', + label: 'yellow/orange/brown', + colors: [ + '#feeaa1', + '#fed676', + '#feba4a', + '#fb992c', + '#ee7918', + '#d85b0a', + '#b74304', + '#8f3204', + '#662506', + ], + }, + { + id: 'schemeYlOrRd', + label: 'yellow/orange/red', + colors: [ + '#fee087', + '#fec965', + '#feab4b', + '#fd893c', + '#fa5c2e', + '#ec3023', + '#d31121', + '#af0225', + '#800026', + ], + }, +].map(s => new SequentialScheme(s)); + +export default schemes; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/sequential/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/sequential/index.ts new file mode 100644 index 000000000000..27b6c23db16e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/colorSchemes/sequential/index.ts @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as SequentialCommon } from './common'; +export { default as SequentialD3 } from './d3'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/index.ts new file mode 100644 index 000000000000..f81fcbba72b6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/index.ts @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import * as CategoricalColorNamespace from './CategoricalColorNamespace'; + +export { CategoricalColorNamespace }; +export { default as CategoricalColorScale } from './CategoricalColorScale'; +export { default as CategoricalScheme } from './CategoricalScheme'; +export { default as getCategoricalSchemeRegistry } from './CategoricalSchemeRegistrySingleton'; +export { default as getSequentialSchemeRegistry } from './SequentialSchemeRegistrySingleton'; +export { default as SequentialScheme } from './SequentialScheme'; +export { default as ColorSchemeRegistry } from './ColorSchemeRegistry'; +export * from './colorSchemes'; +export * from './utils'; + +export const BRAND_COLOR = '#00A699'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/stringifyAndTrim.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/stringifyAndTrim.ts new file mode 100644 index 000000000000..4b36a78ff4ad --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/stringifyAndTrim.ts @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Ensure value is a string + * @param {any} value + */ +export default function stringifyAndTrim(value?: number | string) { + return String(value).trim(); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/types.ts new file mode 100644 index 000000000000..551c2499794f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/types.ts @@ -0,0 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export interface ColorsLookup { + [key: string]: string; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/utils.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/utils.ts new file mode 100644 index 000000000000..47a936aaa618 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/color/utils.ts @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +const rgbRegex = /^rgb\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)$/; +export function getContrastingColor(color: string, thresholds = 186) { + let r = 0; + let g = 0; + let b = 0; + if (color.length > 7) { + // rgb + const matchColor = rgbRegex.exec(color); + if (!matchColor) { + throw new Error(`Invalid color: ${color}`); + } + r = parseInt(matchColor[1], 10); + g = parseInt(matchColor[2], 10); + b = parseInt(matchColor[3], 10); + } else { + // hex + let hex = color; + if (hex.startsWith('#')) { + hex = hex.substring(1); + } + // #FFF + if (hex.length === 3) { + hex = [hex[0], hex[0], hex[1], hex[1], hex[2], hex[2]].join(''); + } + if (hex.length !== 6) { + throw new Error(`Invalid color: ${color}`); + } + r = parseInt(hex.slice(0, 2), 16); + g = parseInt(hex.slice(2, 4), 16); + b = parseInt(hex.slice(4, 6), 16); + } + + return r * 0.299 + g * 0.587 + b * 0.114 > thresholds ? '#000' : '#FFF'; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/components/SafeMarkdown.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/components/SafeMarkdown.tsx new file mode 100644 index 000000000000..41ba91b55345 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/components/SafeMarkdown.tsx @@ -0,0 +1,54 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import ReactMarkdown, { MarkdownAbstractSyntaxTree } from 'react-markdown'; +// @ts-ignore no types available +import htmlParser from 'react-markdown/plugins/html-parser'; + +import { FeatureFlag, isFeatureEnabled } from '../utils'; + +interface SafeMarkdownProps { + source: string; +} + +function isSafeMarkup(node: MarkdownAbstractSyntaxTree) { + return node.type === 'html' && node.value + ? /href="(javascript|vbscript|file):.*"/gim.test(node.value) === false + : true; +} + +function SafeMarkdown({ source }: SafeMarkdownProps) { + return ( + + node.type !== 'script', + }), + ]} + /> + ); +} + +export default SafeMarkdown; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/components/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/components/constants.ts new file mode 100644 index 000000000000..f252d725dd23 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/components/constants.ts @@ -0,0 +1,28 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Faster debounce delay for inputs without expensive operation. + */ +export const FAST_DEBOUNCE = 250; + +/** + * Slower debounce delay for inputs with expensive API calls. + */ +export const SLOW_DEBOUNCE = 500; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/components/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/components/index.ts new file mode 100644 index 000000000000..6fe666c03729 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/components/index.ts @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export * from './constants'; +export { default as SafeMarkdown } from './SafeMarkdown'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/README.md b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/README.md new file mode 100644 index 000000000000..628edbfaa643 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/README.md @@ -0,0 +1,106 @@ + + +## @superset-ui/core/connection + +Connection modules for Superset: + +- `SupersetClient` requests and authentication +- (future) `i18n` locales and translation + +### SupersetClient + +The `SupersetClient` handles all client-side requests to the Superset backend. It can be configured +for use within the Superset application, or used to issue `CORS` requests in other applications. At +a high-level it supports: + +- `CSRF` token authentication + - a token may be passed at configuration time, else the client will handle fetching and passing + the token in all subsequent requests. + - queues requests in the case that another request is made before the token is received. + - it checks for a token before every request, and will fail if no token was received or if it has + expired. In either case the user should be directed to re-authenticate. +- supports `GET` and `POST` requests (no `PUT` or `DELETE`) +- timeouts +- query aborts through the `AbortController` API +- conditional `GET` requests using `If-None-Match` and `ETag` headers + +#### Example usage + +```javascript +// appSetup.js +import { SupersetClient } from `@superset-ui/core`; + +SupersetClient.configure(...clientConfig); +SupersetClient.init(); // CSRF auth, can also chain `.configure().init(); + +// anotherFile.js +import { SupersetClient } from `@superset-ui/core`; + +SupersetClient.post(...requestConfig) + .then(({ request, json }) => ...) + .catch((error) => ...); +``` + +#### API + +##### Client Configuration + +The following flags can be passed in the client config call +`SupersetClient.configure(...clientConfig);` + +- `protocol = 'http:'` +- `host` +- `headers` +- `credentials = 'same-origin'` (set to `include` for non-Superset apps) +- `mode = 'same-origin'` (set to `cors` for non-Superset apps) +- `timeout` +- `csrfToken` you can configure the client with a CSRF token at configuration time, else the client + will attempt to fetch this before any other requests are issued + +##### Per-request Configuration + +The following flags can be passed on a per-request call `SupersetClient.get/post(...requestConfig);` + +- `url` or `endpoint` +- `headers` +- `body` +- `timeout` +- `signal` (for aborting, from `const { signal } = (new AbortController())`) +- for `POST` requests + - `postPayload` (key values are added to a `new FormData()`) + - `stringify` whether to call `JSON.stringify` on `postPayload` values + +##### Request aborting + +Per-request aborting is implemented through the `AbortController` API: + +```javascript +import { SupersetClient } from '@superset-ui/core'; +import AbortController from 'abortcontroller-polyfill'; + +const controller = new AbortController(); +const { signal } = controller; + +SupersetClient.get({ ..., signal }).then(...).catch(...); + +if (IWantToCancelForSomeReason) { + signal.abort(); // Promise is rejected, request `catch` is invoked +} +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/SupersetClient.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/SupersetClient.ts new file mode 100644 index 000000000000..b5820255a33b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/SupersetClient.ts @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import SupersetClientClass from './SupersetClientClass'; +import { SupersetClientInterface } from './types'; + +let singletonClient: SupersetClientClass | undefined; + +function getInstance(): SupersetClientClass { + if (!singletonClient) { + throw new Error( + 'You must call SupersetClient.configure(...) before calling other methods', + ); + } + return singletonClient; +} + +const SupersetClient: SupersetClientInterface = { + configure: config => { + singletonClient = new SupersetClientClass(config); + return singletonClient; + }, + reset: () => { + singletonClient = undefined; + }, + getInstance, + delete: request => getInstance().delete(request), + get: request => getInstance().get(request), + init: force => getInstance().init(force), + isAuthenticated: () => getInstance().isAuthenticated(), + post: request => getInstance().post(request), + put: request => getInstance().put(request), + reAuthenticate: () => getInstance().reAuthenticate(), + request: request => getInstance().request(request), +}; + +export default SupersetClient; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/SupersetClientClass.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/SupersetClientClass.ts new file mode 100644 index 000000000000..a70c164ce6f8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/SupersetClientClass.ts @@ -0,0 +1,217 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import callApiAndParseWithTimeout from './callApi/callApiAndParseWithTimeout'; +import { + ClientConfig, + ClientTimeout, + Credentials, + CsrfPromise, + CsrfToken, + FetchRetryOptions, + Headers, + Host, + Mode, + Protocol, + RequestConfig, + ParseMethod, +} from './types'; +import { DEFAULT_FETCH_RETRY_OPTIONS, DEFAULT_BASE_URL } from './constants'; + +export default class SupersetClientClass { + credentials: Credentials; + + csrfToken?: CsrfToken; + + csrfPromise?: CsrfPromise; + + fetchRetryOptions?: FetchRetryOptions; + + baseUrl: string; + + protocol: Protocol; + + host: Host; + + headers: Headers; + + mode: Mode; + + timeout: ClientTimeout; + + constructor({ + baseUrl = DEFAULT_BASE_URL, + host, + protocol, + headers = {}, + fetchRetryOptions = {}, + mode = 'same-origin', + timeout, + credentials = undefined, + csrfToken = undefined, + }: ClientConfig = {}) { + const url = new URL( + host || protocol + ? `${protocol || 'https:'}//${host || 'localhost'}` + : baseUrl, + // baseUrl for API could also be relative, so we provide current location.href + // as the base of baseUrl + window.location.href, + ); + this.baseUrl = url.href.replace(/\/+$/, ''); // always strip trailing slash + this.host = url.host; + this.protocol = url.protocol as Protocol; + this.headers = { Accept: 'application/json', ...headers }; // defaulting accept to json + this.mode = mode; + this.timeout = timeout; + this.credentials = credentials; + this.csrfToken = csrfToken; + this.fetchRetryOptions = { + ...DEFAULT_FETCH_RETRY_OPTIONS, + ...fetchRetryOptions, + }; + if (typeof this.csrfToken === 'string') { + this.headers = { ...this.headers, 'X-CSRFToken': this.csrfToken }; + this.csrfPromise = Promise.resolve(this.csrfToken); + } + } + + async init(force = false): CsrfPromise { + if (this.isAuthenticated() && !force) { + return this.csrfPromise as CsrfPromise; + } + return this.getCSRFToken(); + } + + async reAuthenticate() { + return this.init(true); + } + + isAuthenticated(): boolean { + // if CSRF protection is disabled in the Superset app, the token may be an empty string + return this.csrfToken !== null && this.csrfToken !== undefined; + } + + async get( + requestConfig: RequestConfig & { parseMethod?: T }, + ) { + return this.request({ ...requestConfig, method: 'GET' }); + } + + async delete( + requestConfig: RequestConfig & { parseMethod?: T }, + ) { + return this.request({ ...requestConfig, method: 'DELETE' }); + } + + async put( + requestConfig: RequestConfig & { parseMethod?: T }, + ) { + return this.request({ ...requestConfig, method: 'PUT' }); + } + + async post( + requestConfig: RequestConfig & { parseMethod?: T }, + ) { + return this.request({ ...requestConfig, method: 'POST' }); + } + + async request({ + credentials, + mode, + endpoint, + host, + url, + headers, + timeout, + fetchRetryOptions, + ...rest + }: RequestConfig & { parseMethod?: T }) { + await this.ensureAuth(); + return callApiAndParseWithTimeout({ + ...rest, + credentials: credentials ?? this.credentials, + mode: mode ?? this.mode, + url: this.getUrl({ endpoint, host, url }), + headers: { ...this.headers, ...headers }, + timeout: timeout ?? this.timeout, + fetchRetryOptions: fetchRetryOptions ?? this.fetchRetryOptions, + }); + } + + async ensureAuth(): CsrfPromise { + return ( + this.csrfPromise ?? + // eslint-disable-next-line prefer-promise-reject-errors + Promise.reject({ + error: `SupersetClient has not been provided a CSRF token, ensure it is + initialized with \`client.getCSRFToken()\` or try logging in at + ${this.getUrl({ endpoint: '/login' })}`, + }) + ); + } + + async getCSRFToken() { + this.csrfToken = undefined; + // If we can request this resource successfully, it means that the user has + // authenticated. If not we throw an error prompting to authenticate. + this.csrfPromise = callApiAndParseWithTimeout({ + credentials: this.credentials, + headers: { + ...this.headers, + }, + method: 'GET', + mode: this.mode, + timeout: this.timeout, + url: this.getUrl({ endpoint: 'api/v1/security/csrf_token/' }), + parseMethod: 'json', + }).then(({ json }) => { + if (typeof json === 'object') { + this.csrfToken = json.result as string; + if (typeof this.csrfToken === 'string') { + this.headers = { ...this.headers, 'X-CSRFToken': this.csrfToken }; + } + } + if (this.isAuthenticated()) { + return this.csrfToken; + } + // eslint-disable-next-line prefer-promise-reject-errors + return Promise.reject({ error: 'Failed to fetch CSRF token' }); + }); + return this.csrfPromise; + } + + getUrl({ + host: inputHost, + endpoint = '', + url, + }: { + endpoint?: string; + host?: Host; + url?: string; + } = {}) { + if (typeof url === 'string') return url; + + const host = inputHost ?? this.host; + const cleanHost = host.slice(-1) === '/' ? host.slice(0, -1) : host; // no backslash + + return `${this.protocol}//${cleanHost}/${ + endpoint[0] === '/' ? endpoint.slice(1) : endpoint + }`; + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/callApi/callApi.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/callApi/callApi.ts new file mode 100644 index 000000000000..f50b24127e7a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/callApi/callApi.ts @@ -0,0 +1,159 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import 'whatwg-fetch'; +import fetchRetry from 'fetch-retry'; +import { CallApi, Payload, JsonValue, JsonObject } from '../types'; +import { + CACHE_AVAILABLE, + CACHE_KEY, + HTTP_STATUS_NOT_MODIFIED, + HTTP_STATUS_OK, +} from '../constants'; + +function tryParsePayload(payload: Payload) { + try { + return typeof payload === 'string' + ? (JSON.parse(payload) as JsonValue) + : payload; + } catch (error) { + throw new Error(`Invalid payload:\n\n${payload}`); + } +} + +/** + * Try appending search params to an URL if needed. + */ +function getFullUrl(partialUrl: string, params: CallApi['searchParams']) { + if (params) { + const url = new URL(partialUrl, window.location.href); + const search = + params instanceof URLSearchParams ? params : new URLSearchParams(params); + // will completely override any existing search params + url.search = search.toString(); + return url.href; + } + return partialUrl; +} + +/** + * Fetch an API response and returns the corresponding json. + * + * @param {Payload} postPayload payload to send as FormData in a post form + * @param {Payload} jsonPayload json payload to post, will automatically add Content-Type header + * @param {string} stringify whether to stringify field values when post as formData + */ +export default async function callApi({ + body, + cache = 'default', + credentials = 'same-origin', + fetchRetryOptions, + headers, + method = 'GET', + mode = 'same-origin', + postPayload, + jsonPayload, + redirect = 'follow', + signal, + stringify = true, + url: url_, + searchParams, +}: CallApi): Promise { + const fetchWithRetry = fetchRetry(fetch, fetchRetryOptions); + const url = `${getFullUrl(url_, searchParams)}`; + + const request = { + body, + cache, + credentials, + headers, + method, + mode, + redirect, + signal, + }; + + if ( + method === 'GET' && + cache !== 'no-store' && + cache !== 'reload' && + CACHE_AVAILABLE && + (window.location && window.location.protocol) === 'https:' + ) { + const supersetCache = await caches.open(CACHE_KEY); + const cachedResponse = await supersetCache.match(url); + if (cachedResponse) { + // if we have a cached response, send its ETag in the + // `If-None-Match` header in a conditional request + const etag = cachedResponse.headers.get('Etag') as string; + request.headers = { ...request.headers, 'If-None-Match': etag }; + } + + const response = await fetchWithRetry(url, request); + + if (response.status === HTTP_STATUS_NOT_MODIFIED) { + const cachedFullResponse = await supersetCache.match(url); + if (cachedFullResponse) { + return cachedFullResponse.clone(); + } + throw new Error('Received 304 but no content is cached!'); + } + if (response.status === HTTP_STATUS_OK && response.headers.get('Etag')) { + supersetCache.delete(url); + supersetCache.put(url, response.clone()); + } + + return response; + } + + if (method === 'POST' || method === 'PATCH' || method === 'PUT') { + if (postPayload && jsonPayload) { + throw new Error('Please provide only one of jsonPayload or postPayload'); + } + if (postPayload instanceof FormData) { + request.body = postPayload; + } else if (postPayload) { + const payload = tryParsePayload(postPayload); + if (payload && typeof payload === 'object') { + // using FormData has the effect that Content-Type header is set to `multipart/form-data`, + // not e.g., 'application/x-www-form-urlencoded' + const formData: FormData = new FormData(); + Object.keys(payload).forEach(key => { + const value = (payload as JsonObject)[key] as JsonValue; + if (typeof value !== 'undefined') { + formData.append( + key, + stringify ? JSON.stringify(value) : String(value), + ); + } + }); + request.body = formData; + } + } + if (jsonPayload !== undefined) { + request.body = JSON.stringify(jsonPayload); + request.headers = { + ...request.headers, + 'Content-Type': 'application/json', + }; + } + } + + return fetchWithRetry(url, request); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/callApi/callApiAndParseWithTimeout.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/callApi/callApiAndParseWithTimeout.ts new file mode 100644 index 000000000000..0195b0c60b9f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/callApi/callApiAndParseWithTimeout.ts @@ -0,0 +1,39 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import callApi from './callApi'; +import rejectAfterTimeout from './rejectAfterTimeout'; +import parseResponse from './parseResponse'; +import { CallApi, ClientTimeout, ParseMethod } from '../types'; + +export default async function callApiAndParseWithTimeout< + T extends ParseMethod = 'json', +>({ + timeout, + parseMethod, + ...rest +}: { timeout?: ClientTimeout; parseMethod?: T } & CallApi) { + const apiPromise = callApi(rest); + const racedPromise = + typeof timeout === 'number' && timeout > 0 + ? Promise.race([apiPromise, rejectAfterTimeout(timeout)]) + : apiPromise; + + return parseResponse(racedPromise, parseMethod); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/callApi/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/callApi/index.ts new file mode 100644 index 000000000000..183d7ae8dfb8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/callApi/index.ts @@ -0,0 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default } from './callApiAndParseWithTimeout'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/callApi/parseResponse.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/callApi/parseResponse.ts new file mode 100644 index 000000000000..a0b9f149113a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/callApi/parseResponse.ts @@ -0,0 +1,61 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ParseMethod, TextResponse, JsonResponse } from '../types'; + +export default async function parseResponse( + apiPromise: Promise, + parseMethod?: T, +) { + type ReturnType = T extends 'raw' | null + ? Response + : T extends 'json' | undefined + ? JsonResponse + : T extends 'text' + ? TextResponse + : never; + const response = await apiPromise; + // reject failed HTTP requests with the raw response + if (!response.ok) { + return Promise.reject(response); + } + if (parseMethod === null || parseMethod === 'raw') { + return response as ReturnType; + } + if (parseMethod === 'text') { + const text = await response.text(); + const result: TextResponse = { + response, + text, + }; + return result as ReturnType; + } + // by default treat this as json + if (parseMethod === undefined || parseMethod === 'json') { + const json = await response.json(); + const result: JsonResponse = { + json, + response, + }; + return result as ReturnType; + } + throw new Error( + `Expected parseResponse=json|text|raw|null, got '${parseMethod}'.`, + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/callApi/rejectAfterTimeout.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/callApi/rejectAfterTimeout.ts new file mode 100644 index 000000000000..6e7100ba842a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/callApi/rejectAfterTimeout.ts @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +// returns a Promise that rejects after the specified timeout +export default function rejectAfterTimeout(timeout: number) { + return new Promise((resolve, reject) => { + setTimeout( + () => + // eslint-disable-next-line prefer-promise-reject-errors + reject({ + error: 'Request timed out', + statusText: 'timeout', + timeout, + }), + timeout, + ); + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/constants.ts new file mode 100644 index 000000000000..370c1a50ed49 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/constants.ts @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { FetchRetryOptions } from './types'; + +export const DEFAULT_BASE_URL = 'http://localhost'; + +// HTTP status codes +export const HTTP_STATUS_OK = 200; +export const HTTP_STATUS_NOT_MODIFIED = 304; + +// Namespace for Cache API +export const CACHE_AVAILABLE = 'caches' in window; +export const CACHE_KEY = '@SUPERSET-UI/CONNECTION'; + +export const DEFAULT_FETCH_RETRY_OPTIONS: FetchRetryOptions = { + retries: 3, + retryDelay: 1000, + retryOn: [503], +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/index.ts new file mode 100644 index 000000000000..594bbcedef1d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/index.ts @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as callApi } from './callApi'; +export { default as SupersetClient } from './SupersetClient'; +export { default as SupersetClientClass } from './SupersetClientClass'; + +export * from './types'; +export { default as __hack_reexport_connection } from './types'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/types.ts new file mode 100644 index 000000000000..3f02f1c61d0c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/connection/types.ts @@ -0,0 +1,158 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import SupersetClientClass from './SupersetClientClass'; + +export type Body = RequestInit['body']; +export type Cache = RequestInit['cache']; +export type Credentials = RequestInit['credentials']; +export type Endpoint = string; +export type FetchRetryOptions = { + retries?: number; + retryDelay?: + | number + | ((attempt: number, error: Error, response: Response) => number); + retryOn?: + | number[] + | ((attempt: number, error: Error, response: Response) => boolean); +}; +export type Headers = { [k: string]: string }; +export type Host = string; + +export type JsonPrimitive = string | number | boolean | null; +/** + * More strict JSON value types. If this fails to satisfy TypeScript when using + * as function arguments, use `JsonObject` instead. `StrictJsonObject` helps make + * sure all values are plain objects, but it does not accept specific types when + * used as function arguments. + * (Ref: https://github.com/microsoft/TypeScript/issues/15300). + */ +export type StrictJsonValue = + | JsonPrimitive + | StrictJsonObject + | StrictJsonArray; +export type StrictJsonArray = StrictJsonValue[]; +/** + * More strict JSON objects that makes sure all values are plain objects. + * If this fails to satisfy TypeScript when using as function arguments, + * use `JsonObject` instead. + * (Ref: https://github.com/microsoft/TypeScript/issues/15300). + */ +export type StrictJsonObject = { [member: string]: StrictJsonValue }; + +export type JsonValue = JsonPrimitive | JsonObject | JsonArray; +export type JsonArray = JsonValue[]; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +export type JsonObject = { [member: string]: any }; + +/** + * Request payload, can be use in GET query string, Post form or POST JSON. + * If string, will parse with JSON.parse. + */ +export type Payload = JsonObject | string | null; + +export type Method = RequestInit['method']; +export type Mode = RequestInit['mode']; +export type Redirect = RequestInit['redirect']; +export type ClientTimeout = number | undefined; +export type ParseMethod = 'json' | 'text' | 'raw' | null | undefined; +export type Signal = RequestInit['signal']; +export type Stringify = boolean; +export type Url = string; + +export interface RequestBase { + body?: Body; + credentials?: Credentials; + fetchRetryOptions?: FetchRetryOptions; + headers?: Headers; + host?: Host; + mode?: Mode; + method?: Method; + jsonPayload?: Payload; + postPayload?: Payload | FormData; + searchParams?: Payload | URLSearchParams; + signal?: Signal; + stringify?: Stringify; + timeout?: ClientTimeout; +} + +export interface CallApi extends RequestBase { + url: Url; + cache?: Cache; + redirect?: Redirect; +} + +export interface RequestWithEndpoint extends RequestBase { + endpoint: Endpoint; + url?: Url; +} + +export interface RequestWithUrl extends RequestBase { + url: Url; + endpoint?: Endpoint; +} + +// this make sure at least one of `url` or `endpoint` is set +export type RequestConfig = RequestWithEndpoint | RequestWithUrl; + +export interface JsonResponse { + response: Response; + json: JsonObject; +} + +export interface TextResponse { + response: Response; + text: string; +} + +export type CsrfToken = string; +export type CsrfPromise = Promise; +export type Protocol = 'http:' | 'https:'; + +export interface ClientConfig { + baseUrl?: string; + host?: Host; + protocol?: Protocol; + credentials?: Credentials; + csrfToken?: CsrfToken; + fetchRetryOptions?: FetchRetryOptions; + headers?: Headers; + mode?: Mode; + timeout?: ClientTimeout; +} + +export interface SupersetClientInterface + extends Pick< + SupersetClientClass, + | 'delete' + | 'get' + | 'post' + | 'put' + | 'request' + | 'init' + | 'isAuthenticated' + | 'reAuthenticate' + > { + configure: (config?: ClientConfig) => SupersetClientClass; + getInstance: (maybeClient?: SupersetClientClass) => SupersetClientClass; + reset: () => void; +} + +export type SupersetClientResponse = Response | JsonResponse | TextResponse; + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/computeMaxFontSize.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/computeMaxFontSize.ts new file mode 100644 index 000000000000..a762d8b1f446 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/computeMaxFontSize.ts @@ -0,0 +1,82 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import getTextDimension, { GetTextDimensionInput } from './getTextDimension'; +import { Dimension } from './types'; + +function decreaseSizeUntil( + startSize: number, + computeDimension: (size: number) => Dimension, + condition: (dimension: Dimension) => boolean, +): number { + let size = startSize; + let dimension = computeDimension(size); + while (!condition(dimension)) { + size -= 1; + dimension = computeDimension(size); + } + + return size; +} + +export default function computeMaxFontSize( + input: GetTextDimensionInput & { + maxWidth?: number; + maxHeight?: number; + idealFontSize?: number; + }, +) { + const { idealFontSize, maxWidth, maxHeight, style, ...rest } = input; + + let size: number; + if (idealFontSize !== undefined && idealFontSize !== null) { + size = idealFontSize; + } else if (maxHeight === undefined || maxHeight === null) { + throw new Error( + 'You must specify at least one of maxHeight or idealFontSize', + ); + } else { + size = Math.floor(maxHeight); + } + + function computeDimension(fontSize: number) { + return getTextDimension({ + ...rest, + style: { ...style, fontSize: `${fontSize}px` }, + }); + } + + if (maxWidth !== undefined && maxWidth !== null) { + size = decreaseSizeUntil( + size, + computeDimension, + dim => dim.width <= maxWidth, + ); + } + + if (maxHeight !== undefined && maxHeight !== null) { + size = decreaseSizeUntil( + size, + computeDimension, + dim => dim.height <= maxHeight, + ); + } + + return size; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/getMultipleTextDimensions.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/getMultipleTextDimensions.ts new file mode 100644 index 000000000000..fce06260618a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/getMultipleTextDimensions.ts @@ -0,0 +1,84 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { TextStyle, Dimension } from './types'; +import getBBoxCeil from './svg/getBBoxCeil'; +import { hiddenSvgFactory, textFactory } from './svg/factories'; +import updateTextNode from './svg/updateTextNode'; + +/** + * get dimensions of multiple texts with same style + * @param input + * @param defaultDimension + */ +export default function getMultipleTextDimensions( + input: { + className?: string; + container?: HTMLElement; + style?: TextStyle; + texts: string[]; + }, + defaultDimension?: Dimension, +): Dimension[] { + const { texts, className, style, container } = input; + + const cache = new Map(); + // for empty string + cache.set('', { height: 0, width: 0 }); + let textNode: SVGTextElement | undefined; + let svgNode: SVGSVGElement | undefined; + + const dimensions = texts.map(text => { + // Check if this string has been computed already + if (cache.has(text)) { + return cache.get(text) as Dimension; + } + + // Lazy creation of text and svg nodes + if (!textNode) { + svgNode = hiddenSvgFactory.createInContainer(container); + textNode = textFactory.createInContainer(svgNode); + } + + // Update text and get dimension + updateTextNode(textNode, { className, style, text }); + const dimension = getBBoxCeil(textNode, defaultDimension); + // Store result to cache + cache.set(text, dimension); + + return dimension; + }); + + // Remove svg node, if any + if (svgNode && textNode) { + // The nodes are added to the DOM briefly only to make getBBox works. + // (If not added to DOM getBBox will always return 0x0.) + // After that the svg nodes are not needed. + // We delay its removal in case there are subsequent calls to this function + // that can reuse the svg nodes. + // Experiments have shown that reusing existing nodes + // instead of deleting and adding new ones can save lot of time. + setTimeout(() => { + textFactory.removeFromContainer(svgNode); + hiddenSvgFactory.removeFromContainer(container); + }, 500); + } + + return dimensions; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/getTextDimension.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/getTextDimension.ts new file mode 100644 index 000000000000..cb536bf6e5fa --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/getTextDimension.ts @@ -0,0 +1,61 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { TextStyle, Dimension } from './types'; +import updateTextNode from './svg/updateTextNode'; +import getBBoxCeil from './svg/getBBoxCeil'; +import { hiddenSvgFactory, textFactory } from './svg/factories'; + +export interface GetTextDimensionInput { + className?: string; + container?: HTMLElement; + style?: TextStyle; + text: string; +} + +export default function getTextDimension( + input: GetTextDimensionInput, + defaultDimension?: Dimension, +): Dimension { + const { text, className, style, container } = input; + + // Empty string + if (text.length === 0) { + return { height: 0, width: 0 }; + } + + const svgNode = hiddenSvgFactory.createInContainer(container); + const textNode = textFactory.createInContainer(svgNode); + updateTextNode(textNode, { className, style, text }); + const dimension = getBBoxCeil(textNode, defaultDimension); + + // The nodes are added to the DOM briefly only to make getBBox works. + // (If not added to DOM getBBox will always return 0x0.) + // After that the svg nodes are not needed. + // We delay its removal in case there are subsequent calls to this function + // that can reuse the svg nodes. + // Experiments have shown that reusing existing nodes + // instead of deleting and adding new ones can save lot of time. + setTimeout(() => { + textFactory.removeFromContainer(svgNode); + hiddenSvgFactory.removeFromContainer(container); + }, 500); + + return dimension; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/index.ts new file mode 100644 index 000000000000..f2c4c7844705 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/index.ts @@ -0,0 +1,27 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as getTextDimension } from './getTextDimension'; +export { default as getMultipleTextDimensions } from './getMultipleTextDimensions'; +export { default as computeMaxFontSize } from './computeMaxFontSize'; +export { default as mergeMargin } from './mergeMargin'; +export { default as parseLength } from './parseLength'; + +export * from './types'; +export { default as __hack_reexport_dimension } from './types'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/mergeMargin.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/mergeMargin.ts new file mode 100644 index 000000000000..2d3fc991250e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/mergeMargin.ts @@ -0,0 +1,47 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Margin } from './types'; + +function mergeOneSide( + operation: (a: number, b: number) => number, + a = 0, + b = 0, +) { + if (Number.isNaN(a) || a === null) return b; + if (Number.isNaN(b) || b === null) return a; + + return operation(a, b); +} + +export default function mergeMargin( + margin1: Partial = {}, + margin2: Partial = {}, + mode: 'expand' | 'shrink' = 'expand', +) { + const { top, left, bottom, right } = margin1; + const operation = mode === 'expand' ? Math.max : Math.min; + + return { + bottom: mergeOneSide(operation, bottom, margin2.bottom), + left: mergeOneSide(operation, left, margin2.left), + right: mergeOneSide(operation, right, margin2.right), + top: mergeOneSide(operation, top, margin2.top), + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/parseLength.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/parseLength.ts new file mode 100644 index 000000000000..c37f53613dac --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/parseLength.ts @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +const HUNDRED_PERCENT = { isDynamic: true, multiplier: 1 } as const; + +export default function parseLength( + input: string | number, +): + | { isDynamic: true; multiplier: number } + | { isDynamic: false; value: number } { + if (input === 'auto' || input === '100%') { + return HUNDRED_PERCENT; + } + + if ( + typeof input === 'string' && + input.length > 0 && + input[input.length - 1] === '%' + ) { + return { isDynamic: true, multiplier: parseFloat(input) / 100 }; + } + const value = typeof input === 'number' ? input : parseFloat(input); + + return { isDynamic: false, value }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/LazyFactory.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/LazyFactory.ts new file mode 100644 index 000000000000..26c39030b4a5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/LazyFactory.ts @@ -0,0 +1,60 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default class LazyFactory { + private activeNodes = new Map< + HTMLElement | SVGElement, + { + counter: number; + node: T; + } + >(); + + private factoryFn: () => T; + + constructor(factoryFn: () => T) { + this.factoryFn = factoryFn; + } + + createInContainer(container: HTMLElement | SVGElement = document.body) { + if (this.activeNodes.has(container)) { + const entry = this.activeNodes.get(container)!; + entry.counter += 1; + + return entry.node; + } + + const node = this.factoryFn(); + container.append(node); + this.activeNodes.set(container, { counter: 1, node }); + + return node; + } + + removeFromContainer(container: HTMLElement | SVGElement = document.body) { + if (this.activeNodes.has(container)) { + const entry = this.activeNodes.get(container)!; + entry.counter -= 1; + if (entry.counter === 0) { + container.removeChild(entry.node); + this.activeNodes.delete(container); + } + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/constants.ts new file mode 100644 index 000000000000..bd2f4f747194 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/constants.ts @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +// eslint-disable-next-line import/prefer-default-export +export const SVG_NS = 'http://www.w3.org/2000/svg'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/createHiddenSvgNode.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/createHiddenSvgNode.ts new file mode 100644 index 000000000000..039302dacddf --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/createHiddenSvgNode.ts @@ -0,0 +1,33 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { SVG_NS } from './constants'; + +export default function createHiddenSvgNode() { + const svgNode = document.createElementNS(SVG_NS, 'svg'); + svgNode.style.position = 'absolute'; // so it won't disrupt page layout + svgNode.style.top = '-100%'; + svgNode.style.left = '-100%'; + svgNode.style.width = '0'; // no dimensions + svgNode.style.height = '0'; + svgNode.style.opacity = '0'; // not visible + svgNode.style.pointerEvents = 'none'; // won't capture mouse events + + return svgNode; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/createTextNode.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/createTextNode.ts new file mode 100644 index 000000000000..d13887309f1c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/createTextNode.ts @@ -0,0 +1,24 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { SVG_NS } from './constants'; + +export default function createTextNode() { + return document.createElementNS(SVG_NS, 'text'); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/factories.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/factories.ts new file mode 100644 index 000000000000..ea41cc8dd79a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/factories.ts @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import LazyFactory from './LazyFactory'; +import createHiddenSvgNode from './createHiddenSvgNode'; +import createTextNode from './createTextNode'; + +export const hiddenSvgFactory = new LazyFactory(createHiddenSvgNode); +export const textFactory = new LazyFactory(createTextNode); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/getBBoxCeil.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/getBBoxCeil.ts new file mode 100644 index 000000000000..86b210077394 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/getBBoxCeil.ts @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Dimension } from '../types'; + +const DEFAULT_DIMENSION = { height: 20, width: 100 }; + +export default function getBBoxCeil( + node: SVGGraphicsElement, + defaultDimension: Dimension = DEFAULT_DIMENSION, +) { + const { width, height } = node.getBBox ? node.getBBox() : defaultDimension; + + return { + height: Math.ceil(height), + width: Math.ceil(width), + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/updateTextNode.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/updateTextNode.ts new file mode 100644 index 000000000000..99d690789130 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/svg/updateTextNode.ts @@ -0,0 +1,71 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { TextStyle } from '../types'; + +const STYLE_FIELDS: (keyof TextStyle)[] = [ + 'font', + 'fontWeight', + 'fontStyle', + 'fontSize', + 'fontFamily', + 'letterSpacing', +]; + +export default function updateTextNode( + node: SVGTextElement, + { + className, + style = {}, + text, + }: { + className?: string; + style?: TextStyle; + text?: string; + } = {}, +) { + const textNode = node; + + if (textNode.textContent !== text) { + textNode.textContent = typeof text === 'undefined' ? null : text; + } + if (textNode.getAttribute('class') !== className) { + textNode.setAttribute('class', className ?? ''); + } + + // Clear style + // Note: multi-word property names are hyphenated and not camel-cased. + textNode.style.removeProperty('font'); + textNode.style.removeProperty('font-weight'); + textNode.style.removeProperty('font-style'); + textNode.style.removeProperty('font-size'); + textNode.style.removeProperty('font-family'); + textNode.style.removeProperty('letter-spacing'); + + // Apply new style + // Note: the font field will auto-populate other font fields when applicable. + STYLE_FIELDS.filter( + (field: keyof TextStyle) => + typeof style[field] !== 'undefined' && style[field] !== null, + ).forEach((field: keyof TextStyle) => { + textNode.style[field] = `${style[field]}`; + }); + + return textNode; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/types.ts new file mode 100644 index 000000000000..88536cb205de --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dimension/types.ts @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export interface TextStyle { + font?: string; + fontFamily?: string; + fontSize?: string | number; + fontStyle?: string; + fontWeight?: string | number; + letterSpacing?: string | number; +} + +export interface Margin { + top: number; + left: number; + bottom: number; + right: number; +} + +export interface Dimension { + width: number; + height: number; +} + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dynamic-plugins/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dynamic-plugins/index.ts new file mode 100644 index 000000000000..59825f8ca414 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dynamic-plugins/index.ts @@ -0,0 +1,20 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export * from './shared-modules'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dynamic-plugins/shared-modules.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dynamic-plugins/shared-modules.ts new file mode 100644 index 000000000000..61a7eef2b254 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/dynamic-plugins/shared-modules.ts @@ -0,0 +1,97 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** The type of an imported module. Don't fully understand this, yet. */ +export type Module = any; + +/** + * This is where packages are stored. We use window, because it plays well with Webpack. + * To avoid + * Have to amend the type of window, because window's usual type doesn't describe these fields. + */ +interface ModuleReferencer { + [packageKey: string]: Promise; +} + +declare const window: Window & typeof globalThis & ModuleReferencer; + +const modulePromises: { [key: string]: Promise } = {}; + +const withNamespace = (name: string) => `__superset__/${name}`; + +/** + * Dependency management using global variables, because for the life of me + * I can't figure out how to hook into UMD from a dynamically imported package. + * + * This defines a dynamically imported js module that can be used to import from + * multiple different plugins. + * + * When importing a common module (such as react or lodash or superset-ui) + * from a plugin, the plugin's build config will be able to + * reference these globals instead of rebuilding them. + * + * @param name the module's name (should match name in package.json) + * @param promise the promise resulting from a call to `import(name)` + */ +export async function defineSharedModule( + name: string, + fetchModule: () => Promise, +) { + // this field on window is used by dynamic plugins to reference the module + const moduleKey = withNamespace(name); + + if (!window[moduleKey] && !modulePromises[name]) { + // if the module has not been loaded, load it + const modulePromise = fetchModule(); + modulePromises[name] = modulePromise; + // wait for the module to load, and attach the result to window + // so that it can be referenced by plugins + window[moduleKey] = await modulePromise; + } + + // we always return a reference to the promise. + // Multiple consumers can `.then()` or `await` the same promise, + // even long after it has completed, + // and it will always call back with the same reference. + return modulePromises[name]; +} + +/** + * Define multiple shared modules at once, using a map of name -> `import(name)` + * + * @see defineSharedModule + * @param moduleMap + */ +export async function defineSharedModules(moduleMap: { + [key: string]: () => Promise; +}) { + return Promise.all( + Object.entries(moduleMap).map(([name, fetchModule]) => + defineSharedModule(name, fetchModule), + ), + ); +} + +// only exposed for tests +export function reset() { + Object.keys(modulePromises).forEach(key => { + delete window[withNamespace(key)]; + delete modulePromises[key]; + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/index.ts new file mode 100644 index 000000000000..7ea8f2aaa247 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/index.ts @@ -0,0 +1,35 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export * from './models'; +export * from './utils'; +export * from './types'; +export * from './translation'; +export * from './connection'; +export * from './dynamic-plugins'; +export * from './query'; +export * from './number-format'; +export * from './time-format'; +export * from './dimension'; +export * from './color'; +export * from './style'; +export * from './validator'; +export * from './chart'; +export * from './chart-composition'; +export * from './components'; +export * from './math-expression'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/math-expression/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/math-expression/index.ts new file mode 100644 index 000000000000..ae3db1f069a9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/math-expression/index.ts @@ -0,0 +1,121 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import mexp from 'math-expression-evaluator'; + +const REPLACE_OPERATORS: [RegExp, string][] = [ + [new RegExp(/==/g), 'Eq'], + [new RegExp(/>=/g), 'Gte'], + [new RegExp(/<=/g), 'Lte'], + [new RegExp(/>/g), 'Gt'], + [new RegExp(/ a & b, + }, + { + type: 2, + token: '|', + show: '|', + value: (a: number, b: number): number => a | b, + }, + { + type: 2, + token: 'and', + show: 'and', + value: (a: number, b: number): number => a && b, + }, + { + type: 2, + token: 'xor', + show: 'xor', + value: (a: number, b: number): number => a ^ b, + }, + { + type: 2, + token: 'or', + show: 'or', + value: (a: number, b: number): number => Number(a || b), + }, + { + type: 2, + token: 'Eq', + show: 'Eq', + value: (a: number, b: number): number => Number(a === b), + }, + { + type: 2, + token: 'Lt', + show: 'Lt', + value: (a: number, b: number): number => Number(a < b), + }, + { + type: 2, + token: 'Lte', + show: 'Lte', + value: (a: number, b: number): number => Number(a <= b), + }, + { + type: 2, + token: 'Gt', + show: 'Gt', + value: (a: number, b: number): number => Number(a > b), + }, + { + type: 2, + token: 'Gte', + show: 'Gte', + value: (a: number, b: number): number => Number(a >= b), + }, +]; + +export function evalExpression(expression: string, value: number): number { + let parsedExpression = expression; + // replace `<` with `Lt` (and others) to avoid clashes with builtin function operators + // that are not needed in Superset. + REPLACE_OPERATORS.forEach(([key, value]) => { + parsedExpression = parsedExpression.replace(key, value); + }); + const subExpressions = String(parsedExpression).split('='); + parsedExpression = subExpressions[1] ?? subExpressions[0]; + // we can ignore the type requirement on `TOKENS`, as value is always `number` + // and doesn't need to consider `number | underfined`. + // @ts-ignore + return Number(mexp.eval(parsedExpression, TOKENS, { x: value })); +} + +export function isValidExpression(expression: string): boolean { + try { + evalExpression(expression, 0); + } catch (err) { + return false; + } + return true; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/ExtensibleFunction.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/ExtensibleFunction.ts new file mode 100644 index 000000000000..78901dd565bc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/ExtensibleFunction.ts @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * From https://stackoverflow.com/questions/36871299/how-to-extend-function-with-es6-classes + */ + +export default class ExtensibleFunction extends Function { + constructor(fn: Function) { + super(); + + // eslint-disable-next-line @typescript-eslint/no-unsafe-return, no-constructor-return + return Object.setPrototypeOf(fn, new.target.prototype); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/Plugin.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/Plugin.ts new file mode 100644 index 000000000000..ed260e782f2d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/Plugin.ts @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +interface PlainObject { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + [key: string]: any; +} + +export default class Plugin { + config: PlainObject; + + constructor() { + this.config = {}; + } + + resetConfig() { + // The child class can set default config + // by overriding this function. + this.config = {}; + + return this; + } + + configure(config: PlainObject, replace = false) { + this.config = replace ? config : { ...this.config, ...config }; + + return this; + } + + register() { + return this; + } + + unregister() { + return this; + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/Preset.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/Preset.ts new file mode 100644 index 000000000000..4216dc5f2f98 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/Preset.ts @@ -0,0 +1,56 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import Plugin from './Plugin'; + +export default class Preset { + name: string; + + description: string; + + presets: Preset[]; + + plugins: Plugin[]; + + constructor( + config: { + name?: string; + description?: string; + presets?: Preset[]; + plugins?: Plugin[]; + } = {}, + ) { + const { name = '', description = '', presets = [], plugins = [] } = config; + this.name = name; + this.description = description; + this.presets = presets; + this.plugins = plugins; + } + + register() { + this.presets.forEach(preset => { + preset.register(); + }); + this.plugins.forEach(plugin => { + plugin.register(); + }); + + return this; + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/Registry.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/Registry.ts new file mode 100644 index 000000000000..7bf7f175cb8c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/Registry.ts @@ -0,0 +1,281 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export enum OverwritePolicy { + ALLOW = 'ALLOW', + PROHIBIT = 'PROHIBIT', + WARN = 'WARN', +} + +interface ItemWithValue { + value: T; +} + +interface ItemWithLoader { + loader: () => T; +} + +/** + * Type of value returned from loader function when using registerLoader() + */ +type InclusiveLoaderResult = V | Promise; + +export type RegistryValue> = + | V + | W + | undefined; + +export type RegistryEntry> = { + key: string; + value: RegistryValue; +}; + +/** + * A listener is called whenever a registry's entries change. + * Keys indicates which entries been affected. + */ +export type Listener = (keys: string[]) => void; + +export interface RegistryConfig { + name?: string; + overwritePolicy?: OverwritePolicy; +} + +/** + * Registry class + * + * Can use generic to specify type of item in the registry + * @type V Type of value + * @type W Type of value returned from loader function when using registerLoader(). + * Set W=V when does not support asynchronous loader. + * By default W is set to V | Promise to support + * both synchronous and asynchronous loaders. + */ +export default class Registry< + V, + W extends InclusiveLoaderResult = InclusiveLoaderResult, +> { + name: string; + + overwritePolicy: OverwritePolicy; + + items: { + [key: string]: ItemWithValue | ItemWithLoader; + }; + + promises: { + [key: string]: Promise; + }; + + listeners: Set; + + constructor(config: RegistryConfig = {}) { + const { name = '', overwritePolicy = OverwritePolicy.ALLOW } = config; + this.name = name; + this.overwritePolicy = overwritePolicy; + this.items = {}; + this.promises = {}; + this.listeners = new Set(); + } + + clear() { + const keys = this.keys(); + + this.items = {}; + this.promises = {}; + this.notifyListeners(keys); + + return this; + } + + has(key: string) { + const item = this.items[key]; + + return item !== null && item !== undefined; + } + + registerValue(key: string, value: V) { + const item = this.items[key]; + const willOverwrite = + this.has(key) && + (('value' in item && item.value !== value) || 'loader' in item); + if (willOverwrite) { + if (this.overwritePolicy === OverwritePolicy.WARN) { + // eslint-disable-next-line no-console + console.warn( + `Item with key "${key}" already exists. You are assigning a new value.`, + ); + } else if (this.overwritePolicy === OverwritePolicy.PROHIBIT) { + throw new Error( + `Item with key "${key}" already exists. Cannot overwrite.`, + ); + } + } + if (!item || willOverwrite) { + this.items[key] = { value }; + delete this.promises[key]; + this.notifyListeners([key]); + } + + return this; + } + + registerLoader(key: string, loader: () => W) { + const item = this.items[key]; + const willOverwrite = + this.has(key) && + (('loader' in item && item.loader !== loader) || 'value' in item); + if (willOverwrite) { + if (this.overwritePolicy === OverwritePolicy.WARN) { + // eslint-disable-next-line no-console + console.warn( + `Item with key "${key}" already exists. You are assigning a new value.`, + ); + } else if (this.overwritePolicy === OverwritePolicy.PROHIBIT) { + throw new Error( + `Item with key "${key}" already exists. Cannot overwrite.`, + ); + } + } + if (!item || willOverwrite) { + this.items[key] = { loader }; + delete this.promises[key]; + this.notifyListeners([key]); + } + + return this; + } + + get(key: string): V | W | undefined { + const item = this.items[key]; + if (item !== undefined) { + if ('loader' in item) { + return item.loader && item.loader(); + } + + return item.value; + } + + return undefined; + } + + getAsPromise(key: string): Promise { + const promise = this.promises[key]; + + if (typeof promise !== 'undefined') { + return promise; + } + const item = this.get(key); + if (item !== undefined) { + const newPromise = Promise.resolve(item) as Promise; + this.promises[key] = newPromise; + + return newPromise; + } + + return Promise.reject( + new Error(`Item with key "${key}" is not registered.`), + ); + } + + getMap() { + return this.keys().reduce<{ + [key: string]: RegistryValue; + }>((prev, key) => { + const map = prev; + map[key] = this.get(key); + + return map; + }, {}); + } + + getMapAsPromise() { + const keys = this.keys(); + + return Promise.all(keys.map(key => this.getAsPromise(key))).then(values => + values.reduce<{ + [key: string]: V; + }>((prev, value, i) => { + const map = prev; + map[keys[i]] = value; + + return map; + }, {}), + ); + } + + keys(): string[] { + return Object.keys(this.items); + } + + values(): RegistryValue[] { + return this.keys().map(key => this.get(key)); + } + + valuesAsPromise(): Promise { + return Promise.all(this.keys().map(key => this.getAsPromise(key))); + } + + entries(): RegistryEntry[] { + return this.keys().map(key => ({ + key, + value: this.get(key), + })); + } + + entriesAsPromise(): Promise<{ key: string; value: V }[]> { + const keys = this.keys(); + + return this.valuesAsPromise().then(values => + values.map((value, i) => ({ + key: keys[i], + value, + })), + ); + } + + remove(key: string) { + const isChange = this.has(key); + delete this.items[key]; + delete this.promises[key]; + if (isChange) { + this.notifyListeners([key]); + } + + return this; + } + + addListener(listener: Listener) { + this.listeners.add(listener); + } + + removeListener(listener: Listener) { + this.listeners.delete(listener); + } + + private notifyListeners(keys: string[]) { + this.listeners.forEach(listener => { + try { + listener(keys); + } catch (e) { + // eslint-disable-next-line no-console + console.error('Exception thrown from a registry listener:', e); + } + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/RegistryWithDefaultKey.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/RegistryWithDefaultKey.ts new file mode 100644 index 000000000000..79d742335f75 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/RegistryWithDefaultKey.ts @@ -0,0 +1,94 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import Registry, { RegistryConfig } from './Registry'; + +interface RegistryWithDefaultKeyConfig extends RegistryConfig { + initialDefaultKey?: string; + setFirstItemAsDefault?: boolean; +} + +export default class RegistryWithDefaultKey< + V, + W extends V | Promise = V | Promise, +> extends Registry { + initialDefaultKey?: string; + + defaultKey?: string; + + setFirstItemAsDefault: boolean; + + constructor(config: RegistryWithDefaultKeyConfig = {}) { + super(config); + const { initialDefaultKey = undefined, setFirstItemAsDefault = false } = + config; + this.initialDefaultKey = initialDefaultKey; + this.defaultKey = initialDefaultKey; + this.setFirstItemAsDefault = setFirstItemAsDefault; + } + + clear() { + super.clear(); + this.defaultKey = this.initialDefaultKey; + + return this; + } + + get(key?: string) { + const targetKey = key ?? this.defaultKey; + + return targetKey ? super.get(targetKey) : undefined; + } + + registerValue(key: string, value: V) { + super.registerValue(key, value); + // If there is no default, set as default + if (this.setFirstItemAsDefault && !this.defaultKey) { + this.defaultKey = key; + } + + return this; + } + + registerLoader(key: string, loader: () => W) { + super.registerLoader(key, loader); + // If there is no default, set as default + if (this.setFirstItemAsDefault && !this.defaultKey) { + this.defaultKey = key; + } + + return this; + } + + getDefaultKey() { + return this.defaultKey; + } + + setDefaultKey(key: string) { + this.defaultKey = key; + + return this; + } + + clearDefaultKey() { + this.defaultKey = undefined; + + return this; + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/index.ts new file mode 100644 index 000000000000..10d46c2a7e5a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/models/index.ts @@ -0,0 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export { default as ExtensibleFunction } from './ExtensibleFunction'; +export { default as Plugin } from './Plugin'; +export { default as Preset } from './Preset'; +export { default as Registry, OverwritePolicy } from './Registry'; +export { default as RegistryWithDefaultKey } from './RegistryWithDefaultKey'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/NumberFormats.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/NumberFormats.ts new file mode 100644 index 000000000000..11701586c034 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/NumberFormats.ts @@ -0,0 +1,87 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +const DOLLAR = '$,.2f'; +const DOLLAR_SIGNED = '+$,.2f'; +const DOLLAR_ROUND = '$,d'; +const DOLLAR_ROUND_SIGNED = '+$,d'; + +const FLOAT_1_POINT = ',.1f'; +const FLOAT_2_POINT = ',.2f'; +const FLOAT_3_POINT = ',.3f'; +const FLOAT = FLOAT_2_POINT; + +const FLOAT_SIGNED_1_POINT = '+,.1f'; +const FLOAT_SIGNED_2_POINT = '+,.2f'; +const FLOAT_SIGNED_3_POINT = '+,.3f'; +const FLOAT_SIGNED = FLOAT_SIGNED_2_POINT; + +const INTEGER = ',d'; +const INTEGER_SIGNED = '+,d'; + +const PERCENT_1_POINT = ',.1%'; +const PERCENT_2_POINT = ',.2%'; +const PERCENT_3_POINT = ',.3%'; +const PERCENT = PERCENT_2_POINT; + +const PERCENT_SIGNED_1_POINT = '+,.1%'; +const PERCENT_SIGNED_2_POINT = '+,.2%'; +const PERCENT_SIGNED_3_POINT = '+,.3%'; +const PERCENT_SIGNED = PERCENT_SIGNED_2_POINT; + +const SI_1_DIGIT = '.1s'; +const SI_2_DIGIT = '.2s'; +const SI_3_DIGIT = '.3s'; +const SI = SI_3_DIGIT; + +const SMART_NUMBER = 'SMART_NUMBER'; +const SMART_NUMBER_SIGNED = 'SMART_NUMBER_SIGNED'; + +const NumberFormats = { + DOLLAR, + DOLLAR_ROUND, + DOLLAR_ROUND_SIGNED, + DOLLAR_SIGNED, + FLOAT, + FLOAT_1_POINT, + FLOAT_2_POINT, + FLOAT_3_POINT, + FLOAT_SIGNED, + FLOAT_SIGNED_1_POINT, + FLOAT_SIGNED_2_POINT, + FLOAT_SIGNED_3_POINT, + INTEGER, + INTEGER_SIGNED, + PERCENT, + PERCENT_1_POINT, + PERCENT_2_POINT, + PERCENT_3_POINT, + PERCENT_SIGNED, + PERCENT_SIGNED_1_POINT, + PERCENT_SIGNED_2_POINT, + PERCENT_SIGNED_3_POINT, + SI, + SI_1_DIGIT, + SI_2_DIGIT, + SI_3_DIGIT, + SMART_NUMBER, + SMART_NUMBER_SIGNED, +}; + +export default NumberFormats; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/NumberFormatter.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/NumberFormatter.ts new file mode 100644 index 000000000000..e8be9deba2ef --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/NumberFormatter.ts @@ -0,0 +1,86 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ExtensibleFunction } from '../models'; +import { isRequired } from '../utils'; +import { NumberFormatFunction } from './types'; + +export const PREVIEW_VALUE = 12345.432; + +export interface NumberFormatterConfig { + id: string; + label?: string; + description?: string; + formatFunc: NumberFormatFunction; + isInvalid?: boolean; +} + +// Use type augmentation to indicate that +// an instance of NumberFormatter is also a function +interface NumberFormatter { + (value: number | null | undefined): string; +} + +class NumberFormatter extends ExtensibleFunction { + id: string; + + label: string; + + description: string; + + formatFunc: NumberFormatFunction; + + isInvalid: boolean; + + constructor(config: NumberFormatterConfig) { + super((value: number) => this.format(value)); + + const { + id = isRequired('config.id'), + label, + description = '', + formatFunc = isRequired('config.formatFunc'), + isInvalid = false, + } = config; + this.id = id; + this.label = label ?? id; + this.description = description; + this.formatFunc = formatFunc; + this.isInvalid = isInvalid; + } + + format(value: number | null | undefined) { + if (value === null || value === undefined || Number.isNaN(value)) { + return `${value}`; + } + if (value === Number.POSITIVE_INFINITY) { + return '∞'; + } + if (value === Number.NEGATIVE_INFINITY) { + return '-∞'; + } + + return this.formatFunc(value); + } + + preview(value = PREVIEW_VALUE) { + return `${value} => ${this.format(value)}`; + } +} + +export default NumberFormatter; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/NumberFormatterRegistry.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/NumberFormatterRegistry.ts new file mode 100644 index 000000000000..6afbad13c7f7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/NumberFormatterRegistry.ts @@ -0,0 +1,74 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { RegistryWithDefaultKey, OverwritePolicy } from '../models'; +import createD3NumberFormatter from './factories/createD3NumberFormatter'; +import createSmartNumberFormatter from './factories/createSmartNumberFormatter'; +import NumberFormats from './NumberFormats'; +import NumberFormatter from './NumberFormatter'; + +export default class NumberFormatterRegistry extends RegistryWithDefaultKey< + NumberFormatter, + NumberFormatter +> { + constructor() { + super({ + name: 'NumberFormatter', + overwritePolicy: OverwritePolicy.WARN, + }); + + this.registerValue( + NumberFormats.SMART_NUMBER, + createSmartNumberFormatter(), + ); + this.registerValue( + NumberFormats.SMART_NUMBER_SIGNED, + createSmartNumberFormatter({ signed: true }), + ); + this.setDefaultKey(NumberFormats.SMART_NUMBER); + } + + get(formatterId?: string) { + const targetFormat = `${ + formatterId === null || + typeof formatterId === 'undefined' || + formatterId === '' + ? this.defaultKey + : formatterId + }`.trim(); + + if (this.has(targetFormat)) { + return super.get(targetFormat) as NumberFormatter; + } + + // Create new formatter if does not exist + const formatter = createD3NumberFormatter({ + formatString: targetFormat, + }); + this.registerValue(targetFormat, formatter); + + return formatter; + } + + format( + formatterId: string | undefined, + value: number | null | undefined, + ): string { + return this.get(formatterId)(value); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/NumberFormatterRegistrySingleton.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/NumberFormatterRegistrySingleton.ts new file mode 100644 index 000000000000..de3e76a9702a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/NumberFormatterRegistrySingleton.ts @@ -0,0 +1,35 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { makeSingleton } from '../utils'; +import NumberFormatterRegistry from './NumberFormatterRegistry'; + +const getInstance = makeSingleton(NumberFormatterRegistry); + +export default getInstance; + +export function getNumberFormatter(format?: string) { + return getInstance().get(format); +} + +export function formatNumber( + format: string | undefined, + value: number | null | undefined, +) { + return getInstance().format(format, value); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/README.md b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/README.md new file mode 100644 index 000000000000..c4663c0149c3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/README.md @@ -0,0 +1,82 @@ + + +## @superset-ui/core/number-format + +Description + +#### Example usage + +Functions `getNumberFormatter` and `formatNumber` should be used instead of calling `d3.format` +directly. + +```js +import { getNumberFormatter } from '@superset-ui/core'; +const formatter = getNumberFormatter('.2f'); +console.log(formatter(1000)); +``` + +or + +```js +import { formatNumber } from '@superset-ui/core'; +console.log(formatNumber('.2f', 1000)); +``` + +It is powered by a registry to support registration of custom formatting, with fallback to +`d3.format` and handle error for invalid format string. + +```js +import { getNumberFormatterRegistry, formatNumber, NumberFormatter } from '@superset-ui/core'; + +getNumberFormatterRegistry().registerValue('my_format', new NumberFormatter({ + id: 'my_format', + formatFunc: v => `my special format of ${v}` +}); + +console.log(formatNumber('my_format', 1000)); +// prints 'my special format of 1000' +``` + +It also define constants for common d3 formats. See the full list of formats in +[NumberFormats.js](https://github.com/apache-superset/superset-ui/blob/master/packages/superset-ui-number-format/src/NumberFormats.js). + +```js +import { NumberFormats } from '@superset-ui-number-format'; + +NumberFormats.PERCENT; // ,.2% +NumberFormats.PERCENT_3_POINT; // ,.3% +``` + +There is also a formatter based on [pretty-ms](https://www.npmjs.com/package/pretty-ms) that can be +used to format time durations: + +```js +import { createDurationFormatter, formatNumber, getNumberFormatterRegistry } from from '@superset-ui-number-format'; + +getNumberFormatterRegistry().registerValue('my_duration_format', createDurationFormatter({ colonNotation: true }); +console.log(formatNumber('my_duration_format', 95500)) +// prints '1:35.5' +``` + +#### API + +`fn(args)` + +- Do something diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/factories/createD3NumberFormatter.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/factories/createD3NumberFormatter.ts new file mode 100644 index 000000000000..b6e0b8c4d5ee --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/factories/createD3NumberFormatter.ts @@ -0,0 +1,61 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + format as d3Format, + formatLocale, + FormatLocaleDefinition, +} from 'd3-format'; +import { isRequired } from '../../utils'; +import NumberFormatter from '../NumberFormatter'; +import { NumberFormatFunction } from '../types'; + +export default function createD3NumberFormatter(config: { + description?: string; + formatString: string; + label?: string; + locale?: FormatLocaleDefinition; +}) { + const { + description, + formatString = isRequired('config.formatString'), + label, + locale, + } = config; + + let formatFunc: NumberFormatFunction; + let isInvalid = false; + + try { + formatFunc = + typeof locale === 'undefined' + ? d3Format(formatString) + : formatLocale(locale).format(formatString); + } catch (error) { + formatFunc = value => `${value} (Invalid format: ${formatString})`; + isInvalid = true; + } + + return new NumberFormatter({ + description, + formatFunc, + id: formatString, + isInvalid, + label, + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/factories/createDurationFormatter.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/factories/createDurationFormatter.ts new file mode 100644 index 000000000000..440e0b17c854 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/factories/createDurationFormatter.ts @@ -0,0 +1,39 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import prettyMsFormatter from 'pretty-ms'; +import NumberFormatter from '../NumberFormatter'; + +export default function createDurationFormatter( + config: { + description?: string; + id?: string; + label?: string; + multiplier?: number; + } & prettyMsFormatter.Options = {}, +) { + const { description, id, label, multiplier = 1, ...prettyMsOptions } = config; + + return new NumberFormatter({ + description, + formatFunc: value => prettyMsFormatter(value * multiplier, prettyMsOptions), + id: id ?? 'duration_format', + label: label ?? `Duration formatter`, + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/factories/createSiAtMostNDigitFormatter.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/factories/createSiAtMostNDigitFormatter.ts new file mode 100644 index 000000000000..b8af708fb7a2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/factories/createSiAtMostNDigitFormatter.ts @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { format as d3Format } from 'd3-format'; +import NumberFormatter from '../NumberFormatter'; + +export default function createSiAtMostNDigitFormatter( + config: { + description?: string; + n?: number; + id?: string; + label?: string; + } = {}, +) { + const { description, n = 3, id, label } = config; + const siFormatter = d3Format(`.${n}s`); + + return new NumberFormatter({ + description, + formatFunc: value => { + const si = siFormatter(value); + + /* Removing trailing `.00` if any */ + return si.slice(-1) < 'A' ? parseFloat(si).toString() : si; + }, + id: id ?? `si_at_most_${n}_digit`, + label: label ?? `SI with at most ${n} significant digits`, + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/factories/createSmartNumberFormatter.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/factories/createSmartNumberFormatter.ts new file mode 100644 index 000000000000..7bb2da9c8905 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/factories/createSmartNumberFormatter.ts @@ -0,0 +1,70 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { format as d3Format } from 'd3-format'; +import NumberFormatter from '../NumberFormatter'; +import NumberFormats from '../NumberFormats'; + +const siFormatter = d3Format(`.3~s`); +const float2PointFormatter = d3Format(`.2~f`); +const float4PointFormatter = d3Format(`.4~f`); + +function formatValue(value: number) { + if (value === 0) { + return '0'; + } + const absoluteValue = Math.abs(value); + if (absoluteValue >= 1000) { + // Normal human being are more familiar + // with billion (B) that giga (G) + return siFormatter(value).replace('G', 'B'); + } + if (absoluteValue >= 1) { + return float2PointFormatter(value); + } + if (absoluteValue >= 0.001) { + return float4PointFormatter(value); + } + if (absoluteValue > 0.000001) { + return `${siFormatter(value * 1000000)}µ`; + } + return siFormatter(value); +} + +export default function createSmartNumberFormatter( + config: { + description?: string; + signed?: boolean; + id?: string; + label?: string; + } = {}, +) { + const { description, signed = false, id, label } = config; + const getSign = signed ? (value: number) => (value > 0 ? '+' : '') : () => ''; + + return new NumberFormatter({ + description, + formatFunc: value => `${getSign(value)}${formatValue(value)}`, + id: + id || signed + ? NumberFormats.SMART_NUMBER_SIGNED + : NumberFormats.SMART_NUMBER, + label: label ?? 'Adaptive formatter', + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/index.ts new file mode 100644 index 000000000000..0c501b68515a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/index.ts @@ -0,0 +1,33 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as NumberFormats } from './NumberFormats'; +export { default as NumberFormatter, PREVIEW_VALUE } from './NumberFormatter'; + +export { + default as getNumberFormatterRegistry, + formatNumber, + getNumberFormatter, +} from './NumberFormatterRegistrySingleton'; + +export { default as NumberFormatterRegistry } from './NumberFormatterRegistry'; +export { default as createD3NumberFormatter } from './factories/createD3NumberFormatter'; +export { default as createDurationFormatter } from './factories/createDurationFormatter'; +export { default as createSiAtMostNDigitFormatter } from './factories/createSiAtMostNDigitFormatter'; +export { default as createSmartNumberFormatter } from './factories/createSmartNumberFormatter'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/types.ts new file mode 100644 index 000000000000..4e0b3c2b8918 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/number-format/types.ts @@ -0,0 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export type NumberFormatFunction = (value: number) => string; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/DatasourceKey.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/DatasourceKey.ts new file mode 100644 index 000000000000..2fe4bcf13905 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/DatasourceKey.ts @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { DatasourceType } from './types/Datasource'; + +export default class DatasourceKey { + readonly id: number; + + readonly type: DatasourceType; + + constructor(key: string) { + const [idStr, typeStr] = key.split('__'); + this.id = parseInt(idStr, 10); + this.type = + typeStr === 'table' ? DatasourceType.Table : DatasourceType.Druid; + } + + public toString() { + return `${this.id}__${this.type}`; + } + + public toObject() { + return { + id: this.id, + type: this.type, + }; + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/README.md b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/README.md new file mode 100644 index 000000000000..2bb4d6bff3f1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/README.md @@ -0,0 +1,30 @@ + + +## @superset-ui/core/query + +Utility to make API requests to Superset backend. + +#### Example usage + +TODO + +#### API + +TODO diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/legacy/fetchExploreJson.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/legacy/fetchExploreJson.ts new file mode 100644 index 000000000000..b018205d73d2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/legacy/fetchExploreJson.ts @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { SupersetClient, Method, Endpoint } from '../../../connection'; +import { QueryFormData } from '../../types/QueryFormData'; +import { LegacyChartDataResponse } from './types'; +import { BaseParams } from '../types'; + +export interface Params extends BaseParams { + method?: Method; + endpoint?: Endpoint; + formData: QueryFormData; +} + +export default async function fetchExploreJson({ + client = SupersetClient, + method = 'POST', + requestConfig, + endpoint = '/superset/explore_json/', + formData, +}: Params) { + const { json } = await client.request({ + ...requestConfig, + method, + endpoint, + searchParams: + method === 'GET' + ? new URLSearchParams({ form_data: JSON.stringify(formData) }) + : undefined, + postPayload: method === 'POST' ? { form_data: formData } : undefined, + }); + return json as LegacyChartDataResponse; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/legacy/getDatasourceMetadata.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/legacy/getDatasourceMetadata.ts new file mode 100644 index 000000000000..344d5891caeb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/legacy/getDatasourceMetadata.ts @@ -0,0 +1,39 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { SupersetClient } from '../../../connection'; +import { Datasource } from '../../types/Datasource'; +import { BaseParams } from '../types'; + +export interface Params extends BaseParams { + datasourceKey: string; +} + +export default function getDatasourceMetadata({ + client = SupersetClient, + datasourceKey, + requestConfig, +}: Params) { + return client + .get({ + endpoint: `/superset/fetch_datasource_metadata?datasourceKey=${datasourceKey}`, + ...requestConfig, + }) + .then(response => response.json as Datasource); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/legacy/getFormData.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/legacy/getFormData.ts new file mode 100644 index 000000000000..7c4d14a688ad --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/legacy/getFormData.ts @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { SupersetClient } from '../../../connection'; +import { BaseParams } from '../types'; +import { QueryFormData } from '../../types/QueryFormData'; + +export interface Params extends BaseParams { + sliceId: number; + overrideFormData?: Partial; +} + +export default function getFormData({ + client = SupersetClient, + sliceId, + overrideFormData, + requestConfig, +}: Params) { + const promise = client + .get({ + endpoint: `/api/v1/form_data/?slice_id=${sliceId}`, + ...requestConfig, + }) + .then(({ json }) => json as QueryFormData); + + return overrideFormData + ? promise.then(formData => ({ ...formData, ...overrideFormData })) + : promise; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/legacy/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/legacy/index.ts new file mode 100644 index 000000000000..907b134c5a2d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/legacy/index.ts @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as fetchExploreJson } from './fetchExploreJson'; +export { default as getFormData } from './getFormData'; +export { default as getDatasourceMetadata } from './getDatasourceMetadata'; + +export * from './types'; +export { default as __hack_reexport_query_api_legacy } from './types'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/legacy/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/legacy/types.ts new file mode 100644 index 000000000000..188ea5ee68d0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/legacy/types.ts @@ -0,0 +1,26 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartDataResponseResult } from '../../types'; + +export interface LegacyChartDataResponse + extends Omit { + data: Record[] | Record; +} + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/types.ts new file mode 100644 index 000000000000..7bad719310e6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/types.ts @@ -0,0 +1,28 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + RequestConfig, + SupersetClientInterface, + SupersetClientClass, +} from '../../connection'; + +export interface BaseParams { + client?: SupersetClientInterface | SupersetClientClass; + requestConfig?: RequestConfig; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/v1/handleError.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/v1/handleError.ts new file mode 100644 index 000000000000..d8543466ad9a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/v1/handleError.ts @@ -0,0 +1,106 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + SupersetApiError, + SupersetApiErrorPayload, + SupersetApiMultiErrorsPayload, +} from './types'; + +export type ErrorInput = string | Error | Response | SupersetApiErrorPayload; + +/** + * Handle API request errors, convert to consistent Superset API error. + * @param error the catched error from SupersetClient.request(...) + */ +export default async function handleError(error: ErrorInput): Promise { + // already a Sueprset error + if (error instanceof SupersetApiError) { + throw error; + } + // string is the error message itself + if (typeof error === 'string') { + throw new SupersetApiError({ message: error }); + } + // JS errors, normally happens before request was sent + if (error instanceof Error) { + throw new SupersetApiError({ + message: error.message || 'Unknown Error', + originalError: error, + }); + } + + let errorJson; + let originalError; + let errorMessage = 'Unknown Error'; + let status: number | undefined; + let statusText: string | undefined; + + // catch HTTP errors + if (error instanceof Response) { + const { status: responseStatus, statusText: responseStatusText } = error; + status = responseStatus; + statusText = responseStatusText; + errorMessage = `${status} ${statusText}`; + try { + errorJson = (await error.json()) as + | SupersetApiErrorPayload + | SupersetApiMultiErrorsPayload; + originalError = errorJson; + } catch (error_) { + originalError = error; + } + } else if (error) { + errorJson = error; + } + + // when API returns 200 but operation fails (see Python API json_error_response(...)) + // or when frontend promise rejects with `{ error: ... }` + if ( + errorJson && + ('error' in errorJson || 'message' in errorJson || 'errors' in errorJson) + ) { + let err; + if ('errors' in errorJson) { + err = errorJson.errors?.[0] || {}; + } else if (typeof errorJson.error === 'object') { + err = errorJson.error; + } else { + err = errorJson; + } + errorMessage = + err.message || + (err.error as string | undefined) || + err.error_type || + errorMessage; + throw new SupersetApiError({ + status, + statusText, + message: errorMessage, + originalError, + ...err, + }); + } + // all unknown error + throw new SupersetApiError({ + status, + statusText, + message: errorMessage, + originalError: error, + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/v1/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/v1/index.ts new file mode 100644 index 000000000000..70d1f83f9a1b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/v1/index.ts @@ -0,0 +1,32 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import makeApi from './makeApi'; +import { ChartDataResponse, QueryContext } from '../../types'; + +export const getChartData = makeApi({ + method: 'POST', + endpoint: '/api/v1/chart/data', +}); + +/** + * All v1 API + */ +export default { + getChartData, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/v1/makeApi.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/v1/makeApi.ts new file mode 100644 index 000000000000..f286d93f4ea8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/v1/makeApi.ts @@ -0,0 +1,152 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import rison from 'rison'; +import { + SupersetClient, + Payload as SupersetPayload, + JsonObject, + JsonValue, + ParseMethod, + Endpoint, + Method, + RequestBase, +} from '../../../connection'; +import handleError, { ErrorInput } from './handleError'; +import { + SupersetApiRequestOptions, + SupersetApiErrorPayload, + ParsedResponseType, +} from './types'; + +const validRequestTypes = new Set(['form', 'json', 'search', 'rison']); + +interface SupersetApiFactoryOptions extends Omit { + /** + * API endpoint, must be relative. + */ + endpoint: Endpoint; + /** + * Request method: 'GET' | 'POST' | 'DELETE' | 'PUT' | ... + */ + method: Method; + /** + * How to send the payload: + * - form: set request.body as FormData + * - json: as JSON string with request Content-Type header set to application/json + * - search: add to search params + */ + requestType?: 'form' | 'json' | 'search' | 'rison'; +} + +function isPayloadless(method?: Method) { + return ( + !method || method === 'GET' || method === 'DELETE' || method === 'HEAD' + ); +} + +/** + * Generate an API caller with predefined configs/typing and consistent + * return values. + */ +export default function makeApi< + Payload = SupersetPayload, + Result = JsonObject, + T extends ParseMethod = ParseMethod, +>({ + endpoint, + method, + requestType: requestType_, + responseType, + processResponse, + ...requestOptions +}: SupersetApiFactoryOptions & { + /** + * How to parse response, choose from: 'json' | 'text' | 'raw'. + */ + responseType?: T; + /** + * Further process parsed response + */ + processResponse?(result: ParsedResponseType): Result; +}) { + // use `search` payload (searchParams) when it's a GET request + const requestType = + requestType_ || (isPayloadless(method) ? 'search' : 'json'); + if (!validRequestTypes.has(requestType)) { + throw new Error( + `Invalid request payload type, choose from: ${[...validRequestTypes].join( + ' | ', + )}`, + ); + } + + async function request( + payload: Payload, + { client = SupersetClient }: SupersetApiRequestOptions = { + client: SupersetClient, + }, + ): Promise { + try { + const requestConfig = { + ...requestOptions, + method, + endpoint, + }; + if (requestType === 'search') { + requestConfig.searchParams = payload; + } else if (requestType === 'rison') { + requestConfig.endpoint = `${endpoint}?q=${rison.encode(payload)}`; + } else if (requestType === 'form') { + requestConfig.postPayload = payload; + } else { + requestConfig.jsonPayload = payload; + } + + let result: JsonValue | Response; + const response = await client.request({ + ...requestConfig, + parseMethod: 'raw', + }); + + if (responseType === 'text') { + result = await response.text(); + } else if (responseType === 'raw' || responseType === null) { + result = response; + } else { + result = await response.json(); + // if response json has an "error" field + if (result && typeof result === 'object' && 'error' in result) { + return handleError(result as SupersetApiErrorPayload); + } + } + const typedResult = result as ParsedResponseType; + return ( + processResponse ? processResponse(typedResult) : typedResult + ) as Result; + } catch (error) { + return handleError(error as ErrorInput); + } + } + + request.method = method; + request.endpoint = endpoint; + request.requestType = requestType; + + return request; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/v1/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/v1/types.ts new file mode 100644 index 000000000000..09ef1bc7d68e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/api/v1/types.ts @@ -0,0 +1,141 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + SupersetClientClass, + SupersetClientInterface, + StrictJsonObject, + JsonValue, + JsonObject, +} from '../../../connection'; + +export type ParsedResponseType = T extends 'text' + ? string + : T extends 'raw' | null + ? Response + : JsonValue; + +/** + * Runtime options when calling a Superset API. Currently only allow overriding + * SupersetClient instance. + */ +export interface SupersetApiRequestOptions { + client?: SupersetClientInterface | SupersetClientClass; +} + +/** + * Superset API error types. + * Ref: https://github.com/apache/incubator-superset/blob/318e5347bc6f88119725775baa4ab9a398a6f0b0/superset/errors.py#L24 + * + * TODO: migrate superset-frontend/src/components/ErrorMessage/types.ts over + */ +export enum SupersetApiErrorType { + // Generic unknown error + UNKNOWN_ERROR = 'UNKNOWN_ERROR', + + // Frontend errors + FRONTEND_CSRF_ERROR = 'FRONTEND_CSRF_ERROR', + FRONTEND_NETWORK_ERROR = 'FRONTEND_NETWORK_ERROR', + FRONTEND_TIMEOUT_ERROR = 'FRONTEND_TIMEOUT_ERROR', + + // DB Engine errors, + GENERIC_DB_ENGINE_ERROR = 'GENERIC_DB_ENGINE_ERROR', + + // Viz errors, + VIZ_GET_DF_ERROR = 'VIZ_GET_DF_ERROR', + UNKNOWN_DATASOURCE_TYPE_ERROR = 'UNKNOWN_DATASOURCE_TYPE_ERROR', + FAILED_FETCHING_DATASOURCE_INFO_ERROR = 'FAILED_FETCHING_DATASOURCE_INFO_ERROR', + + // Security access errors, + TABLE_SECURITY_ACCESS_ERROR = 'TABLE_SECURITY_ACCESS_ERROR', + DATASOURCE_SECURITY_ACCESS_ERROR = 'DATASOURCE_SECURITY_ACCESS_ERROR', + MISSING_OWNERSHIP_ERROR = 'MISSING_OWNERSHIP_ERROR', +} + +/** + * API Error json response from the backend (or fetch API in the frontend). + * See SIP-40 and SIP-41: https://github.com/apache/incubator-superset/issues/9298 + */ +export interface SupersetApiErrorPayload { + message?: string; // error message via FlaskAppBuilder, e.g. `response_404(message=...)` + error_type?: SupersetApiErrorType; + level?: 'error' | 'warn' | 'info'; + extra?: StrictJsonObject; + /** + * Error message returned via `json_error_response`. + * Ref https://github.com/apache/incubator-superset/blob/8e23d4f369f35724b34b14def8a5a8bafb1d2ecb/superset/views/base.py#L94 + */ + error?: string | SupersetApiErrorPayload; + link?: string; +} + +export interface SupersetApiMultiErrorsPayload { + errors: SupersetApiErrorPayload[]; +} + +export class SupersetApiError extends Error { + status?: number; + + statusText?: string; + + errorType: SupersetApiErrorType; + + extra: JsonObject; + + originalError?: Error | Response | JsonValue; + + constructor({ + status, + statusText, + message, + link, + extra, + stack, + error_type: errorType, + originalError, + }: Omit & { + status?: number; + statusText?: string; + message: string; + stack?: Error['stack']; + // original JavaScript error or backend JSON response captured + originalError?: SupersetApiError['originalError']; + }) { + super(message); + const originalErrorStack = + stack || + (originalError instanceof Error ? originalError.stack : undefined); + this.stack = + originalErrorStack && this.stack + ? [ + this.stack.split('\n')[0], + ...originalErrorStack.split('\n').slice(1), + ].join('\n') + : this.stack; + this.name = 'SupersetApiError'; + this.errorType = errorType || SupersetApiErrorType.UNKNOWN_ERROR; + this.extra = extra || {}; + if (link) { + this.extra.link = link; + } + this.status = status; + this.statusText = statusText; + this.originalError = originalError; + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/buildQueryContext.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/buildQueryContext.ts new file mode 100644 index 000000000000..fce53b4608d3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/buildQueryContext.ts @@ -0,0 +1,79 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import buildQueryObject from './buildQueryObject'; +import DatasourceKey from './DatasourceKey'; +import { QueryFieldAliases, QueryFormData } from './types/QueryFormData'; +import { QueryContext, QueryObject } from './types/Query'; +import { SetDataMaskHook } from '../chart'; +import { JsonObject } from '../connection'; + +const WRAP_IN_ARRAY = ( + baseQueryObject: QueryObject, + options?: { + extras?: { + cachedChanges?: any; + }; + ownState?: JsonObject; + hooks?: { + setDataMask: SetDataMaskHook; + setCachedChanges: (newChanges: any) => void; + }; + }, +) => [baseQueryObject]; + +export type BuildFinalQueryObjects = ( + baseQueryObject: QueryObject, +) => QueryObject[]; + +export default function buildQueryContext( + formData: QueryFormData, + options?: + | { + buildQuery?: BuildFinalQueryObjects; + queryFields?: QueryFieldAliases; + ownState?: JsonObject; + hooks?: { setDataMask: SetDataMaskHook }; + } + | BuildFinalQueryObjects, +): QueryContext { + const { + queryFields, + buildQuery = WRAP_IN_ARRAY, + hooks = {}, + ownState = {}, + } = typeof options === 'function' + ? { buildQuery: options, queryFields: {} } + : options || {}; + return { + datasource: new DatasourceKey(formData.datasource).toObject(), + force: formData.force || false, + queries: buildQuery(buildQueryObject(formData, queryFields), { + extras: {}, + ownState, + hooks: { + setDataMask: () => {}, + setCachedChanges: () => {}, + ...hooks, + }, + }), + result_format: formData.result_format || 'json', + result_type: formData.result_type || 'full', + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/buildQueryObject.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/buildQueryObject.ts new file mode 100644 index 000000000000..c49bc5ce6aa5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/buildQueryObject.ts @@ -0,0 +1,127 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable camelcase */ +import { + AdhocFilter, + QueryFieldAliases, + QueryFormData, + QueryObject, + QueryObjectFilterClause, +} from './types'; +import processFilters from './processFilters'; +import extractExtras from './extractExtras'; +import extractQueryFields from './extractQueryFields'; +import { overrideExtraFormData } from './processExtraFormData'; + +/** + * Build the common segments of all query objects (e.g. the granularity field derived from + * either sql alchemy or druid). The segments specific to each viz type is constructed in the + * buildQuery method for each viz type (see `wordcloud/buildQuery.ts` for an example). + * Note the type of the formData argument passed in here is the type of the formData for a + * specific viz, which is a subtype of the generic formData shared among all viz types. + */ +export default function buildQueryObject( + formData: T, + queryFields?: QueryFieldAliases, +): QueryObject { + const { + annotation_layers = [], + extra_form_data, + time_range, + since, + until, + row_limit, + row_offset, + order_desc, + limit, + timeseries_limit_metric, + granularity, + url_params = {}, + custom_params = {}, + series_columns, + series_limit, + series_limit_metric, + ...residualFormData + } = formData; + const { + adhoc_filters: appendAdhocFilters = [], + filters: appendFilters = [], + custom_form_data = {}, + ...overrides + } = extra_form_data || {}; + + const numericRowLimit = Number(row_limit); + const numericRowOffset = Number(row_offset); + const { metrics, columns, orderby } = extractQueryFields( + residualFormData, + queryFields, + ); + + // collect all filters for conversion to simple filters/freeform clauses + const extras = extractExtras(formData); + const { filters: extraFilters } = extras; + const filterFormData: { + filters: QueryObjectFilterClause[]; + adhoc_filters: AdhocFilter[]; + } = { + filters: [...extraFilters, ...appendFilters], + adhoc_filters: [...(formData.adhoc_filters || []), ...appendAdhocFilters], + }; + const extrasAndfilters = processFilters({ + ...formData, + ...extras, + ...filterFormData, + }); + + let queryObject: QueryObject = { + // fallback `null` to `undefined` so they won't be sent to the backend + // (JSON.strinify will ignore `undefined`.) + time_range: time_range || undefined, + since: since || undefined, + until: until || undefined, + granularity: granularity || undefined, + ...extras, + ...extrasAndfilters, + columns, + metrics, + orderby, + annotation_layers, + row_limit: + row_limit == null || Number.isNaN(numericRowLimit) + ? undefined + : numericRowLimit, + row_offset: + row_offset == null || Number.isNaN(numericRowOffset) + ? undefined + : numericRowOffset, + series_columns, + series_limit, + series_limit_metric, + timeseries_limit: limit ? Number(limit) : 0, + timeseries_limit_metric: timeseries_limit_metric || undefined, + order_desc: typeof order_desc === 'undefined' ? true : order_desc, + url_params: url_params || undefined, + custom_params, + }; + // override extra form data used by native and cross filters + queryObject = overrideExtraFormData(queryObject, overrides); + + return { ...queryObject, custom_form_data }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/constants.ts new file mode 100644 index 000000000000..2f85841991c2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/constants.ts @@ -0,0 +1,65 @@ +import { + ExtraFormDataAppend, + ExtraFormDataOverrideExtras, + ExtraFormDataOverrideRegular, + ExtraFormDataOverride, + QueryObject, +} from './types'; + +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export const DTTM_ALIAS = '__timestamp'; + +export const EXTRA_FORM_DATA_OVERRIDE_EXTRA_KEYS: (keyof ExtraFormDataOverrideExtras)[] = + [ + 'druid_time_origin', + 'relative_start', + 'relative_end', + 'time_grain_sqla', + 'time_range_endpoints', + ]; + +export const EXTRA_FORM_DATA_APPEND_KEYS: (keyof ExtraFormDataAppend)[] = [ + 'adhoc_filters', + 'filters', + 'interactive_groupby', + 'interactive_highlight', + 'interactive_drilldown', + 'custom_form_data', +]; + +export const EXTRA_FORM_DATA_OVERRIDE_REGULAR_MAPPINGS: Record< + keyof ExtraFormDataOverrideRegular, + keyof QueryObject +> = { + granularity: 'granularity', + granularity_sqla: 'granularity', + time_column: 'time_column', + time_grain: 'time_grain', + time_range: 'time_range', +}; + +export const EXTRA_FORM_DATA_OVERRIDE_REGULAR_KEYS = Object.keys( + EXTRA_FORM_DATA_OVERRIDE_REGULAR_MAPPINGS, +) as (keyof ExtraFormDataOverrideRegular)[]; + +export const EXTRA_FORM_DATA_OVERRIDE_KEYS: (keyof ExtraFormDataOverride)[] = [ + ...EXTRA_FORM_DATA_OVERRIDE_REGULAR_KEYS, + ...EXTRA_FORM_DATA_OVERRIDE_EXTRA_KEYS, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/convertFilter.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/convertFilter.ts new file mode 100644 index 000000000000..1075842ffd5c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/convertFilter.ts @@ -0,0 +1,56 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + SimpleAdhocFilter, + isBinaryAdhocFilter, + isUnaryAdhocFilter, +} from './types/Filter'; +import { QueryObjectFilterClause } from './types/Query'; + +export default function convertFilter( + filter: SimpleAdhocFilter, +): QueryObjectFilterClause { + const { subject } = filter; + if (isUnaryAdhocFilter(filter)) { + const { operator } = filter; + + return { + col: subject, + op: operator, + }; + } + if (isBinaryAdhocFilter(filter)) { + const { operator } = filter; + + return { + col: subject, + op: operator, + val: filter.comparator, + }; + } + + const { operator } = filter; + + return { + col: subject, + op: operator, + val: filter.comparator, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/extractExtras.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/extractExtras.ts new file mode 100644 index 000000000000..835dde799618 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/extractExtras.ts @@ -0,0 +1,97 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable camelcase */ +import { + AppliedTimeExtras, + isDruidFormData, + QueryFormData, + QueryObjectExtras, + QueryObjectFilterClause, + TimeColumnConfigKey, +} from './types'; + +type ExtraFilterQueryField = { + time_range?: string; + granularity_sqla?: string; + time_grain_sqla?: string; + druid_time_origin?: string; + granularity?: string; +}; + +type ExtractedExtra = ExtraFilterQueryField & { + filters: QueryObjectFilterClause[]; + extras: QueryObjectExtras; + applied_time_extras: AppliedTimeExtras; +}; + +export default function extractExtras(formData: QueryFormData): ExtractedExtra { + const applied_time_extras: AppliedTimeExtras = {}; + const filters: QueryObjectFilterClause[] = []; + const extras: QueryObjectExtras = {}; + const extract: ExtractedExtra = { + filters, + extras, + applied_time_extras, + }; + + const reservedColumnsToQueryField: Record< + TimeColumnConfigKey, + keyof ExtraFilterQueryField + > = { + __time_range: 'time_range', + __time_col: 'granularity_sqla', + __time_grain: 'time_grain_sqla', + __time_origin: 'druid_time_origin', + __granularity: 'granularity', + }; + + (formData.extra_filters || []).forEach(filter => { + if (filter.col in reservedColumnsToQueryField) { + const key = filter.col as TimeColumnConfigKey; + const queryField = reservedColumnsToQueryField[key]; + extract[queryField] = filter.val as string; + applied_time_extras[key] = filter.val as string; + } else { + filters.push(filter); + } + }); + + // map to undeprecated names and remove deprecated fields + if (isDruidFormData(formData) && !extract.druid_time_origin) { + extras.druid_time_origin = formData.druid_time_origin; + delete extract.druid_time_origin; + } else { + // SQL + extras.time_grain_sqla = + extract.time_grain_sqla || formData.time_grain_sqla; + extract.granularity = + extract.granularity_sqla || + formData.granularity || + formData.granularity_sqla; + delete extract.granularity_sqla; + delete extract.time_grain_sqla; + } + + // map time range endpoints: + if (formData.time_range_endpoints) + extras.time_range_endpoints = formData.time_range_endpoints; + + return extract; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/extractQueryFields.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/extractQueryFields.ts new file mode 100644 index 000000000000..860753405e7b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/extractQueryFields.ts @@ -0,0 +1,137 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '../translation'; +import { removeDuplicates } from '../utils'; +import { DTTM_ALIAS } from './constants'; +import getColumnLabel from './getColumnLabel'; +import getMetricLabel from './getMetricLabel'; +import { + QueryFields, + QueryFormColumn, + QueryFormMetric, + QueryFormOrderBy, + QueryFieldAliases, + FormDataResidual, + QueryMode, +} from './types/QueryFormData'; + +/** + * Extra SQL query related fields from chart form data. + * Consolidate field values into arrays. + * + * @param formData - the (partial) form data obtained from chart controls. + * @param aliases - additional field aliases that maps arbitrary field names to + * query field names. + */ +export default function extractQueryFields( + formData: FormDataResidual, + aliases?: QueryFieldAliases, +): QueryFields { + const queryFieldAliases: QueryFieldAliases = { + /** These are predefined for backward compatibility */ + metric: 'metrics', + metric_2: 'metrics', + secondary_metric: 'metrics', + x: 'metrics', + y: 'metrics', + size: 'metrics', + all_columns: 'columns', + series: 'groupby', + order_by_cols: 'orderby', + ...aliases, + }; + const { + query_mode: queryMode, + include_time: includeTime, + ...restFormData + } = formData; + + let columns: QueryFormColumn[] = []; + let metrics: QueryFormMetric[] = []; + let orderby: QueryFormOrderBy[] = []; + + Object.entries(restFormData).forEach(([key, value]) => { + // ignore `null` or `undefined` value + if (value == null) { + return; + } + + let normalizedKey: string = queryFieldAliases[key] || key; + + // ignore columns when (specifically) in aggregate mode. + // For charts that support both aggregate and raw records mode, + // we store both `groupby` and `columns` in `formData`, so users can + // switch between modes while retaining the selected options for each. + if (queryMode === QueryMode.aggregate && normalizedKey === 'columns') { + return; + } + + // for the same reason, ignore groupby and metrics in raw records mode + if ( + queryMode === QueryMode.raw && + (normalizedKey === 'groupby' || normalizedKey === 'metrics') + ) { + return; + } + + // groupby has been deprecated in QueryObject: https://github.com/apache/superset/pull/9366 + if (normalizedKey === 'groupby') { + normalizedKey = 'columns'; + } + + if (normalizedKey === 'metrics') { + metrics = metrics.concat(value); + } else if (normalizedKey === 'columns') { + // currently the columns field only accept pre-defined columns (string shortcut) + columns = columns.concat(value); + } else if (normalizedKey === 'orderby') { + orderby = orderby.concat(value); + } + }); + + if (includeTime && !columns.includes(DTTM_ALIAS)) { + columns.unshift(DTTM_ALIAS); + } + + return { + columns: removeDuplicates( + columns.filter(col => col !== ''), + getColumnLabel, + ), + metrics: + queryMode === QueryMode.raw + ? undefined + : removeDuplicates(metrics, getMetricLabel), + orderby: + orderby.length > 0 + ? orderby.map(item => { + // value can be in the format of `['["col1", true]', '["col2", false]'], + // where the option strings come directly from `order_by_choices`. + if (typeof item === 'string') { + try { + return JSON.parse(item); + } catch (error) { + throw new Error(t('Found invalid orderby options')); + } + } + return item; + }) + : undefined, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/extractTimegrain.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/extractTimegrain.ts new file mode 100644 index 000000000000..e98ec5db4ec1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/extractTimegrain.ts @@ -0,0 +1,38 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable no-underscore-dangle */ + +import { QueryFormData } from './types'; +import { TimeGranularity } from '../time-format'; + +export default function extractTimegrain( + formData: QueryFormData, +): TimeGranularity | undefined { + const { time_grain_sqla, extra_filters, extra_form_data } = formData; + if (extra_form_data?.time_grain_sqla) { + return extra_form_data.time_grain_sqla; + } + const extra_grain = (extra_filters || []).filter( + filter => filter.col === '__time_grain', + ); + if (extra_grain.length) { + return extra_grain[0].val as TimeGranularity; + } + return time_grain_sqla; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/getColumnLabel.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/getColumnLabel.ts new file mode 100644 index 000000000000..f449a44cb270 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/getColumnLabel.ts @@ -0,0 +1,30 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { isPhysicalColumn, QueryFormColumn } from './types'; + +export default function getColumnLabel(column: QueryFormColumn): string { + if (isPhysicalColumn(column)) { + return column; + } + if (column.label) { + return column.label; + } + return column.sqlExpression; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/getMetricLabel.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/getMetricLabel.ts new file mode 100644 index 000000000000..3f6f31af7b9f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/getMetricLabel.ts @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { isAdhocMetricSimple, isSavedMetric, QueryFormMetric } from './types'; + +export default function getMetricLabel(metric: QueryFormMetric): string { + if (isSavedMetric(metric)) { + return metric; + } + if (metric.label) { + return metric.label; + } + if (isAdhocMetricSimple(metric)) { + return `${metric.aggregate}(${ + metric.column.columnName || metric.column.column_name + })`; + } + return metric.sqlExpression; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/index.ts new file mode 100644 index 000000000000..9bbfbc59fba8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/index.ts @@ -0,0 +1,43 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import * as ApiLegacy from './api/legacy'; +import * as ApiV1 from './api/v1'; + +export * from './constants'; +export { default as buildQueryContext } from './buildQueryContext'; +export { default as buildQueryObject } from './buildQueryObject'; +export { default as convertFilter } from './convertFilter'; +export { default as extractTimegrain } from './extractTimegrain'; +export { default as getColumnLabel } from './getColumnLabel'; +export { default as getMetricLabel } from './getMetricLabel'; +export { default as DatasourceKey } from './DatasourceKey'; +export { default as normalizeOrderBy } from './normalizeOrderBy'; + +export * from './types/AnnotationLayer'; +export * from './types/QueryFormData'; +export * from './types/Column'; +export * from './types/Datasource'; +export * from './types/Metric'; +export * from './types/Query'; + +export * from './api/v1/types'; +export { default as makeApi } from './api/v1/makeApi'; + +// API Callers +export { ApiLegacy, ApiV1 }; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/normalizeOrderBy.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/normalizeOrderBy.ts new file mode 100644 index 000000000000..3df72b58d2ba --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/normalizeOrderBy.ts @@ -0,0 +1,80 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import isEmpty from 'lodash/isEmpty'; +import isBoolean from 'lodash/isBoolean'; + +import { QueryObject } from './types'; + +export default function normalizeOrderBy( + queryObject: QueryObject, +): QueryObject { + if (Array.isArray(queryObject.orderby) && queryObject.orderby.length > 0) { + // ensure a valid orderby clause + const orderbyClause = queryObject.orderby[0]; + if ( + Array.isArray(orderbyClause) && + orderbyClause.length === 2 && + !isEmpty(orderbyClause[0]) && + isBoolean(orderbyClause[1]) + ) { + return queryObject; + } + } + + // ensure that remove invalid orderby clause + const cloneQueryObject = { ...queryObject }; + delete cloneQueryObject.timeseries_limit_metric; + delete cloneQueryObject.legacy_order_by; + delete cloneQueryObject.order_desc; + delete cloneQueryObject.orderby; + + const isAsc = !queryObject.order_desc; + if ( + queryObject.timeseries_limit_metric !== undefined && + queryObject.timeseries_limit_metric !== null && + !isEmpty(queryObject.timeseries_limit_metric) + ) { + return { + ...cloneQueryObject, + orderby: [[queryObject.timeseries_limit_metric, isAsc]], + }; + } + + // todo: Removed `legacy_ordery_by` after refactoring + if ( + queryObject.legacy_order_by !== undefined && + queryObject.legacy_order_by !== null && + !isEmpty(queryObject.legacy_order_by) + ) { + return { + ...cloneQueryObject, + // @ts-ignore + orderby: [[queryObject.legacy_order_by, isAsc]], + }; + } + + if (Array.isArray(queryObject.metrics) && queryObject.metrics.length > 0) { + return { + ...cloneQueryObject, + orderby: [[queryObject.metrics[0], isAsc]], + }; + } + + return cloneQueryObject; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/processExtraFormData.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/processExtraFormData.ts new file mode 100644 index 000000000000..29eabe75e36f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/processExtraFormData.ts @@ -0,0 +1,49 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ExtraFormDataOverride, QueryObject } from './types'; +import { + EXTRA_FORM_DATA_OVERRIDE_EXTRA_KEYS, + EXTRA_FORM_DATA_OVERRIDE_REGULAR_MAPPINGS, +} from './constants'; + +export function overrideExtraFormData( + queryObject: QueryObject, + overrideFormData: ExtraFormDataOverride, +): QueryObject { + const overriddenFormData: QueryObject = { ...queryObject }; + const { extras: overriddenExtras = {} } = overriddenFormData; + Object.entries(EXTRA_FORM_DATA_OVERRIDE_REGULAR_MAPPINGS).forEach( + ([key, target]) => { + const value = overrideFormData[key as keyof ExtraFormDataOverride]; + if (value !== undefined) { + overriddenFormData[target] = value; + } + }, + ); + EXTRA_FORM_DATA_OVERRIDE_EXTRA_KEYS.forEach(key => { + if (key in overrideFormData) { + // @ts-ignore + overriddenExtras[key] = overrideFormData[key]; + } + }); + if (Object.keys(overriddenExtras).length > 0) { + overriddenFormData.extras = overriddenExtras; + } + return overriddenFormData; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/processFilters.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/processFilters.ts new file mode 100644 index 000000000000..8ead77c0fc34 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/processFilters.ts @@ -0,0 +1,71 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable camelcase */ +import { QueryFormData } from './types/QueryFormData'; +import { QueryObjectFilterClause } from './types/Query'; +import { isSimpleAdhocFilter } from './types/Filter'; +import convertFilter from './convertFilter'; + +/** Logic formerly in viz.py's process_query_filters */ +export default function processFilters( + formData: Partial, +): Partial { + // Split adhoc_filters into four fields according to + // (1) clause (WHERE or HAVING) + // (2) expressionType + // 2.1 SIMPLE (subject + operator + comparator) + // 2.2 SQL (freeform SQL expression)) + const { adhoc_filters, extras = {}, filters = [], where } = formData; + const simpleWhere: QueryObjectFilterClause[] = filters; + + const simpleHaving: QueryObjectFilterClause[] = []; + const freeformWhere: string[] = []; + if (where) freeformWhere.push(where); + const freeformHaving: string[] = []; + + (adhoc_filters || []).forEach(filter => { + const { clause } = filter; + if (isSimpleAdhocFilter(filter)) { + const filterClause = convertFilter(filter); + if (clause === 'WHERE') { + simpleWhere.push(filterClause); + } else { + simpleHaving.push(filterClause); + } + } else { + const { sqlExpression } = filter; + if (clause === 'WHERE') { + freeformWhere.push(sqlExpression); + } else { + freeformHaving.push(sqlExpression); + } + } + }); + + // some filter-related fields need to go in `extras` + extras.having = freeformHaving.map(exp => `(${exp})`).join(' AND '); + extras.having_druid = simpleHaving; + extras.where = freeformWhere.map(exp => `(${exp})`).join(' AND '); + + return { + filters: simpleWhere, + extras, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/AdvancedAnalytics.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/AdvancedAnalytics.ts new file mode 100644 index 000000000000..463b07c1dcc5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/AdvancedAnalytics.ts @@ -0,0 +1,43 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export enum RollingType { + Mean = 'mean', + Sum = 'sum', + Std = 'std', + Cumsum = 'cumsum', +} +export interface RollingWindow { + rolling_type?: RollingType; + rolling_periods?: number; + min_periods?: number; +} + +export enum ComparisionType { + Values = 'values', + Difference = 'difference', + Percentage = 'percentage', + Ratio = 'ratio', +} +export interface TimeCompare { + time_compare?: string; + comparison_type?: ComparisionType; +} + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/AnnotationLayer.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/AnnotationLayer.ts new file mode 100644 index 000000000000..293cebb56df4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/AnnotationLayer.ts @@ -0,0 +1,192 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint camelcase: 0 */ +import { DataRecord } from './QueryResponse'; +import { TimeGranularity } from '../../time-format'; + +export enum AnnotationType { + Event = 'EVENT', + Formula = 'FORMULA', + Interval = 'INTERVAL', + Timeseries = 'TIME_SERIES', +} + +export enum AnnotationSourceType { + Line = 'line', + Native = 'NATIVE', + Table = 'table', + Undefined = '', +} + +export enum AnnotationOpacity { + High = 'opacityHigh', + Low = 'opacityLow', + Medium = 'opacityMedium', + Undefined = '', +} + +export enum AnnotationStyle { + Dashed = 'dashed', + Dotted = 'dotted', + Solid = 'solid', + LongDashed = 'longDashed', +} + +type BaseAnnotationLayer = { + color?: string | null; + name: string; + opacity?: AnnotationOpacity; + show: boolean; + showLabel: boolean; + style: AnnotationStyle; + width?: number; +}; + +type AnnotationOverrides = { + granularity?: string | null; + time_grain_sqla?: TimeGranularity | null; + time_range?: string | null; + time_shift?: string | null; +}; + +type LineSourceAnnotationLayer = { + hideLine?: boolean; + overrides?: AnnotationOverrides; + sourceType: AnnotationSourceType.Line; + titleColumn?: string; + // viz id + value: number; +}; + +type NativeSourceAnnotationLayer = { + sourceType: AnnotationSourceType.Native; + // annotation id + value: number; +}; + +type TableSourceAnnotationLayer = { + descriptionColumns?: string[]; + timeColumn?: string; + intervalEndColumn?: string; + overrides?: AnnotationOverrides; + sourceType: AnnotationSourceType.Table; + titleColumn?: string; + // viz id + value: number; +}; + +export type EventAnnotationLayer = BaseAnnotationLayer & + (TableSourceAnnotationLayer | NativeSourceAnnotationLayer) & { + annotationType: AnnotationType.Event; + }; + +export type IntervalAnnotationLayer = BaseAnnotationLayer & + (TableSourceAnnotationLayer | NativeSourceAnnotationLayer) & { + annotationType: AnnotationType.Interval; + }; + +export type TableAnnotationLayer = BaseAnnotationLayer & + TableSourceAnnotationLayer & { + annotationType: AnnotationType.Event | AnnotationType.Interval; + }; + +export type FormulaAnnotationLayer = BaseAnnotationLayer & { + annotationType: AnnotationType.Formula; + // the mathjs parseable formula + sourceType?: AnnotationSourceType.Undefined; + value: string; +}; + +export type TimeseriesAnnotationLayer = BaseAnnotationLayer & + LineSourceAnnotationLayer & { + annotationType: AnnotationType.Timeseries; + showMarkers?: boolean; + value: number; + }; + +export type AnnotationLayer = + | EventAnnotationLayer + | IntervalAnnotationLayer + | FormulaAnnotationLayer + | TimeseriesAnnotationLayer; + +export function isFormulaAnnotationLayer( + layer: AnnotationLayer, +): layer is FormulaAnnotationLayer { + return layer.annotationType === AnnotationType.Formula; +} + +export function isEventAnnotationLayer( + layer: AnnotationLayer, +): layer is EventAnnotationLayer { + return layer.annotationType === AnnotationType.Event; +} + +export function isIntervalAnnotationLayer( + layer: AnnotationLayer, +): layer is IntervalAnnotationLayer { + return layer.annotationType === AnnotationType.Interval; +} + +export function isTimeseriesAnnotationLayer( + layer: AnnotationLayer, +): layer is TimeseriesAnnotationLayer { + return layer.annotationType === AnnotationType.Timeseries; +} + +export function isTableAnnotationLayer( + layer: AnnotationLayer, +): layer is TableAnnotationLayer { + return layer.sourceType === AnnotationSourceType.Table; +} + +export type RecordAnnotationResult = { + columns: string[]; + records: DataRecord[]; +}; + +export type TimeseriesAnnotationResult = [ + { key: string; values: { x: string | number; y?: number }[] }, +]; + +export type AnnotationResult = + | RecordAnnotationResult + | TimeseriesAnnotationResult; + +export function isTimeseriesAnnotationResult( + result: AnnotationResult, +): result is TimeseriesAnnotationResult { + return Array.isArray(result); +} + +export function isRecordAnnotationResult( + result: AnnotationResult, +): result is RecordAnnotationResult { + return 'columns' in result && 'records' in result; +} + +export type AnnotationData = { [key: string]: AnnotationResult }; + +export type Annotation = { + descriptions?: string[]; + intervalEnd?: string; + time?: string; + title?: string; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Column.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Column.ts new file mode 100644 index 000000000000..8fcf871647e3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Column.ts @@ -0,0 +1,60 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { GenericDataType } from './QueryResponse'; + +export interface AdhocColumn { + hasCustomLabel?: boolean; + label?: string; + optionName?: string; + sqlExpression: string; + expressionType: 'SQL'; +} + +/** + * A column that is physically defined in datasource. + */ +export type PhysicalColumn = string; + +/** + * Column information defined in datasource. + */ +export interface Column { + id: number; + type?: string; + type_generic?: GenericDataType; + column_name: string; + groupby?: boolean; + is_dttm?: boolean; + filterable?: boolean; + verbose_name?: string | null; + description?: string | null; + expression?: string | null; + database_expression?: string | null; + python_date_format?: string | null; +} + +export default {}; + +export function isPhysicalColumn( + column: AdhocColumn | PhysicalColumn, +): column is PhysicalColumn { + return typeof column === 'string'; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Datasource.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Datasource.ts new file mode 100644 index 000000000000..073bdf90c1b5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Datasource.ts @@ -0,0 +1,46 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { Column } from './Column'; +import { Metric } from './Metric'; + +export enum DatasourceType { + Table = 'table', + Druid = 'druid', +} + +/** + * Datasource metadata. + */ +export interface Datasource { + id: number; + name: string; + type: DatasourceType; + columns: Column[]; + metrics: Metric[]; + description?: string; + // key is column names (labels) + columnFormats?: { + [key: string]: string; + }; + verboseMap?: { + [key: string]: string; + }; +} + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Filter.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Filter.ts new file mode 100644 index 000000000000..be420b41a207 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Filter.ts @@ -0,0 +1,91 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + UnaryOperator, + BinaryOperator, + SetOperator, + isUnaryOperator, + isBinaryOperator, + isSetOperator, +} from './Operator'; +import { TimeGranularity } from '../../time-format'; + +interface BaseSimpleAdhocFilter { + expressionType: 'SIMPLE'; + clause: 'WHERE' | 'HAVING'; + subject: string; + timeGrain?: TimeGranularity; + isExtra?: boolean; +} + +export type UnaryAdhocFilter = BaseSimpleAdhocFilter & { + operator: UnaryOperator; +}; + +export type BinaryAdhocFilter = BaseSimpleAdhocFilter & { + operator: BinaryOperator; + comparator: string; +}; + +export type SetAdhocFilter = BaseSimpleAdhocFilter & { + operator: SetOperator; + comparator: string[]; +}; + +export type SimpleAdhocFilter = + | UnaryAdhocFilter + | BinaryAdhocFilter + | SetAdhocFilter; + +export interface FreeFormAdhocFilter { + expressionType: 'SQL'; + clause: 'WHERE' | 'HAVING'; + sqlExpression: string; +} + +export type AdhocFilter = SimpleAdhocFilter | FreeFormAdhocFilter; + +//--------------------------------------------------- +// Type guards +//--------------------------------------------------- + +export function isSimpleAdhocFilter( + filter: AdhocFilter, +): filter is SimpleAdhocFilter { + return filter.expressionType === 'SIMPLE'; +} + +export function isUnaryAdhocFilter( + filter: SimpleAdhocFilter, +): filter is UnaryAdhocFilter { + return isUnaryOperator(filter.operator); +} + +export function isBinaryAdhocFilter( + filter: SimpleAdhocFilter, +): filter is BinaryAdhocFilter { + return isBinaryOperator(filter.operator); +} + +export function isSetAdhocFilter( + filter: SimpleAdhocFilter, +): filter is SetAdhocFilter { + return isSetOperator(filter.operator); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Metric.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Metric.ts new file mode 100644 index 000000000000..396ccd4c5b5a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Metric.ts @@ -0,0 +1,81 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { Maybe } from '../../types'; +import { Column } from './Column'; + +export type Aggregate = + | 'AVG' + | 'COUNT' + | 'COUNT_DISTINCT' + | 'MAX' + | 'MIN' + | 'SUM'; + +export interface AdhocMetricBase { + hasCustomLabel?: boolean; + label?: string; + optionName?: string; +} + +export interface AdhocMetricSimple extends AdhocMetricBase { + expressionType: 'SIMPLE'; + column: Omit & { + column_name?: string; + columnName?: string; + }; + aggregate: Aggregate; +} + +export interface AdhocMetricSQL extends AdhocMetricBase { + expressionType: 'SQL'; + sqlExpression: string; +} + +export type AdhocMetric = AdhocMetricSimple | AdhocMetricSQL; + +/** + * Select a predefined metric by its `metric_name`. + */ +export type SavedMetric = string; + +/** + * Metric definition stored in datasource metadata. + */ +export interface Metric { + id?: number; + metric_name: string; + expression?: Maybe; + certification_details?: Maybe; + certified_by?: Maybe; + d3format?: Maybe; + description?: Maybe; + is_certified?: boolean; + verbose_name?: string; + warning_markdown?: Maybe; + warning_text?: Maybe; +} + +export default {}; + +export function isAdhocMetricSimple( + metric: AdhocMetric, +): metric is AdhocMetricSimple { + return metric.expressionType === 'SIMPLE'; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Operator.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Operator.ts new file mode 100644 index 000000000000..754766bef262 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Operator.ts @@ -0,0 +1,72 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** List of operators that do not require another operand */ +const UNARY_OPERATORS = ['IS NOT NULL', 'IS NULL'] as const; + +/** List of operators that require another operand that is a single value */ +const BINARY_OPERATORS = [ + '==', + '!=', + '>', + '<', + '>=', + '<=', + 'ILIKE', + 'LIKE', + 'REGEX', +] as const; + +/** List of operators that require another operand that is a set */ +const SET_OPERATORS = ['IN', 'NOT IN'] as const; + +//--------------------------------------------------- +// Derived types +//--------------------------------------------------- + +/** An operator that does not require another operand */ +export type UnaryOperator = typeof UNARY_OPERATORS[number]; + +/** An operator that requires another operand that is a single value */ +export type BinaryOperator = typeof BINARY_OPERATORS[number]; + +/** An operator that require another operand that is a set */ +export type SetOperator = typeof SET_OPERATORS[number]; + +//--------------------------------------------------- +// Type guards +//--------------------------------------------------- + +const unaryOperatorSet = new Set(UNARY_OPERATORS); + +export function isUnaryOperator(operator: string): operator is UnaryOperator { + return unaryOperatorSet.has(operator); +} + +const binaryOperatorSet = new Set(BINARY_OPERATORS); + +export function isBinaryOperator(operator: string): operator is BinaryOperator { + return binaryOperatorSet.has(operator); +} + +const setOperatorSet = new Set(SET_OPERATORS); + +export function isSetOperator(operator: string): operator is SetOperator { + return setOperatorSet.has(operator); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/PostProcessing.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/PostProcessing.ts new file mode 100644 index 000000000000..f38ed411f1fa --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/PostProcessing.ts @@ -0,0 +1,254 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { JsonObject } from '../../connection'; +import { TimeGranularity } from '../../time-format'; +import { RollingType, ComparisionType } from './AdvancedAnalytics'; + +export type NumpyFunction = + | 'average' + | 'argmin' + | 'argmax' + | 'count' + | 'count_nonzero' + | 'cumsum' + | 'cumprod' + | 'max' + | 'mean' + | 'median' + | 'nansum' + | 'nanmin' + | 'nanmax' + | 'nanmean' + | 'nanmedian' + | 'nanpercentile' + | 'min' + | 'percentile' + | 'prod' + | 'product' + | 'std' + | 'sum' + | 'var'; + +export enum PandasAxis { + Row = 0, + Column = 1, +} + +export interface Aggregates { + /** + * The name of the generated aggregate column. + */ + [colname: string]: { + operator: NumpyFunction; + /** + * the name of the column to generate aggrates from. + */ + column?: string; + options?: JsonObject; + }; +} + +export interface PostProcessingAggregation { + operation: 'aggregation'; + options: { + groupby: string[]; + aggregates: Aggregates; + }; +} + +export interface PostProcessingBoxplot { + operation: 'boxplot'; + options: { + groupby: string[]; + metrics: string[]; + whisker_type: 'tukey' | 'min/max' | 'percentile'; + percentiles?: [number, number]; + }; +} + +export interface PostProcessingContribution { + operation: 'contribution'; + options?: { + orientation?: 'row' | 'column'; + columns?: string[]; + rename_columns?: string[]; + }; +} + +export interface PostProcessingPivot { + operation: 'pivot'; + options: { + index: string[]; + columns: string[]; + aggregates: Aggregates; + flatten_columns?: boolean; + reset_index?: boolean; + }; +} + +export interface PostProcessingProphet { + operation: 'prophet'; + options: { + time_grain: TimeGranularity; + periods: number; + confidence_interval: number; + yearly_seasonality?: boolean | number; + weekly_seasonality?: boolean | number; + daily_seasonality?: boolean | number; + }; +} + +export interface PostProcessingDiff { + operation: 'diff'; + options: { + columns: string[]; + periods: number; + axis: PandasAxis; + }; +} + +export interface PostProcessingRolling { + operation: 'rolling'; + options: { + rolling_type: RollingType; + window: number; + min_periods: number; + columns: string[]; + is_pivot_df?: boolean; + }; +} + +export interface PostProcessingCum { + operation: 'cum'; + options: { + columns: string[]; + operator: NumpyFunction; + is_pivot_df?: boolean; + }; +} + +export interface PostProcessingCompare { + operation: 'compare'; + options: { + source_columns: string[]; + compare_columns: string[]; + compare_type: Omit; + drop_original_columns: boolean; + }; +} + +export interface PostProcessingSort { + operation: 'sort'; + options: { + columns: Record; + }; +} + +export interface PostProcessingResample { + operation: 'resample'; + options: { + method: string; + rule: string; + fill_value?: number | null; + time_column: string; + }; +} + +/** + * Parameters for chart data postprocessing. + * See superset/utils/pandas_processing.py. + */ +export type PostProcessingRule = + | PostProcessingAggregation + | PostProcessingBoxplot + | PostProcessingContribution + | PostProcessingPivot + | PostProcessingProphet + | PostProcessingDiff + | PostProcessingRolling + | PostProcessingCum + | PostProcessingCompare + | PostProcessingSort + | PostProcessingResample; + +export function isPostProcessingAggregation( + rule?: PostProcessingRule, +): rule is PostProcessingAggregation { + return rule?.operation === 'aggregation'; +} + +export function isPostProcessingBoxplot( + rule?: PostProcessingRule, +): rule is PostProcessingBoxplot { + return rule?.operation === 'boxplot'; +} + +export function isPostProcessingContribution( + rule?: PostProcessingRule, +): rule is PostProcessingContribution { + return rule?.operation === 'contribution'; +} + +export function isPostProcessingPivot( + rule?: PostProcessingRule, +): rule is PostProcessingPivot { + return rule?.operation === 'pivot'; +} + +export function isPostProcessingProphet( + rule?: PostProcessingRule, +): rule is PostProcessingProphet { + return rule?.operation === 'prophet'; +} + +export function isPostProcessingDiff( + rule?: PostProcessingRule, +): rule is PostProcessingDiff { + return rule?.operation === 'diff'; +} + +export function isPostProcessingRolling( + rule?: PostProcessingRule, +): rule is PostProcessingRolling { + return rule?.operation === 'rolling'; +} + +export function isPostProcessingCum( + rule?: PostProcessingRule, +): rule is PostProcessingCum { + return rule?.operation === 'cum'; +} + +export function isPostProcessingCompare( + rule?: PostProcessingRule, +): rule is PostProcessingCompare { + return rule?.operation === 'compare'; +} + +export function isPostProcessingSort( + rule?: PostProcessingRule, +): rule is PostProcessingSort { + return rule?.operation === 'sort'; +} + +export function isPostProcessingResample( + rule?: PostProcessingRule, +): rule is PostProcessingResample { + return rule?.operation === 'resample'; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Query.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Query.ts new file mode 100644 index 000000000000..e51b568e03ae --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Query.ts @@ -0,0 +1,163 @@ +/* eslint camelcase: 0 */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { DatasourceType } from './Datasource'; +import { BinaryOperator, SetOperator, UnaryOperator } from './Operator'; +import { AppliedTimeExtras, TimeRange, TimeRangeEndpoints } from './Time'; +import { AnnotationLayer } from './AnnotationLayer'; +import { QueryFields, QueryFormColumn, QueryFormMetric } from './QueryFormData'; +import { Maybe } from '../../types'; +import { PostProcessingRule } from './PostProcessing'; +import { JsonObject } from '../../connection'; +import { TimeGranularity } from '../../time-format'; + +export type QueryObjectFilterClause = { + col: QueryFormColumn; + grain?: TimeGranularity; + isExtra?: boolean; +} & ( + | { + op: BinaryOperator; + val: string | number | boolean; + } + | { + op: SetOperator; + val: (string | number | boolean)[]; + } + | { + op: UnaryOperator; + } +); + +export type QueryObjectExtras = Partial<{ + /** HAVING condition for Druid */ + having_druid?: string; + druid_time_origin?: string; + /** HAVING condition for SQLAlchemy */ + having?: string; + relative_start?: string; + relative_end?: string; + time_grain_sqla?: TimeGranularity; + time_range_endpoints?: TimeRangeEndpoints; + /** WHERE condition */ + where?: string; +}>; + +export type ResidualQueryObjectData = { + [key: string]: unknown; +}; + +/** + * Query object directly compatible with the new chart data API. + * A stricter version of query form data. + * + * All information should be related to generating database queries. Config values + * for client-side processing and chart rendering should happen in `buildQuery` + * and `transformProps`. + */ +export interface QueryObject + extends QueryFields, + TimeRange, + ResidualQueryObjectData { + /** + * Definition for annotation layers. + */ + annotation_layers?: AnnotationLayer[]; + + /** Time filters that have been applied to the query object */ + applied_time_extras?: AppliedTimeExtras; + + /** add fetch value predicate to query if defined in datasource */ + apply_fetch_values_predicate?: boolean; + + /** + * Extra form data. Current stores information about time granularity, may be + * cleaned up in the future. + */ + extras?: QueryObjectExtras; + + /** SIMPLE where filters */ + filters?: QueryObjectFilterClause[]; + + /** Time column for SQL, time-grain for Druid (deprecated) */ + granularity?: string; + + /** If set, will group by timestamp */ + is_timeseries?: boolean; + + /** Should the rowcount of the query be fetched */ + is_rowcount?: boolean; + + /** Free-form HAVING SQL, multiple clauses are concatenated by AND */ + having?: string; + + /** SIMPLE having filters */ + having_filters?: QueryObjectFilterClause[]; + + post_processing?: (PostProcessingRule | undefined)[]; + + /** Maximum numbers of rows to return */ + row_limit?: number; + + /** Number of rows to skip */ + row_offset?: number; + + /** The column to which direct temporal filters (forthcoming) */ + time_column?: string; + + /** The size of bucket by which to group timeseries data (forthcoming) */ + time_grain?: string; + + /** Maximum number of timeseries */ + timeseries_limit?: number; + + /** The metric used to sort the returned result. */ + timeseries_limit_metric?: Maybe; + + /** Direction to ordered by */ + order_desc?: boolean; + + url_params?: Record; + + custom_params?: JsonObject; + + /** Free-form WHERE SQL: multiple clauses are concatenated by AND */ + where?: string; + + /** Limit number of series */ + series_columns?: QueryFormColumn[]; + series_limit?: number; + series_limit_metric?: Maybe; +} + +export interface QueryContext { + datasource: { + id: number; + type: DatasourceType; + }; + /** Force refresh of all queries */ + force: boolean; + /** Type of result to return for queries */ + result_type: string; + /** Response format */ + result_format: string; + queries: QueryObject[]; +} + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/QueryFormData.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/QueryFormData.ts new file mode 100644 index 000000000000..e799f7cccd28 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/QueryFormData.ts @@ -0,0 +1,230 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Types for the final QueryContext sent to /api/v1/chart/data. + */ +import { AdhocMetric, SavedMetric } from './Metric'; +import { AdhocFilter } from './Filter'; +import { BinaryOperator, SetOperator } from './Operator'; +import { AnnotationLayer } from './AnnotationLayer'; +import { + QueryObject, + QueryObjectExtras, + QueryObjectFilterClause, +} from './Query'; +import { TimeRange, TimeRangeEndpoints } from './Time'; +import { TimeGranularity } from '../../time-format'; +import { JsonObject } from '../../connection'; +import { AdhocColumn, PhysicalColumn } from './Column'; + +/** + * Metric definition/reference in query object. + */ +export type QueryFormMetric = SavedMetric | AdhocMetric; + +/** + * Column selects in query object (used as dimensions in both groupby or raw + * query mode). Can be either reference to physical column or expression. + */ +export type QueryFormColumn = PhysicalColumn | AdhocColumn; + +/** + * Order query results by columns. + * Format: [metric/column, is_ascending]. + */ +export type QueryFormOrderBy = [QueryFormColumn | QueryFormMetric, boolean]; + +export interface FormDataResidual { + [key: string]: any; +} + +export enum QueryMode { + aggregate = 'aggregate', + raw = 'raw', +} + +/** + * Query form fields related to SQL query and data outputs. + */ +export interface QueryFields { + columns?: QueryFormColumn[]; + metrics?: QueryFormMetric[]; + orderby?: QueryFormOrderBy[]; +} + +/** + * Name of query fields. + */ +export type QueryField = keyof QueryFields; + +/** + * Map of arbitrary control field names to query field names + * (one of 'metrics' | 'columns' | 'groupby'). + * + * Note that `groupby` is only added here because it is will be handled when + * processing aliases but will not be sent to final objects. See `extraQueryFields.ts`. + */ +export type QueryFieldAliases = { + [key: string]: QueryField | 'groupby'; +}; + +/** + * Filter value for adhoc filters from dashboard FilterBox. + * Currently only Binary and Set filters are supported. + */ +export type QueryFormExtraFilter = { + col: string; +} & ( + | { + op: BinaryOperator; + val: string; + } + | { + op: SetOperator; + val: string[]; + } +); + +/** These properties will be appended to those pre-existing in the form data/query object */ +export type ExtraFormDataAppend = { + adhoc_filters?: AdhocFilter[]; + filters?: QueryObjectFilterClause[]; + /** These properties are for dynamic cross chart interaction */ + interactive_drilldown?: string[]; + interactive_groupby?: string[]; + interactive_highlight?: string[]; + /** This property can be used to pass non-standard form data between viz components */ + custom_form_data?: JsonObject; +}; + +/** These parameters override properties in the extras parameter in the form data/query object. + * Not all keys of QueryObjectExtras are supported here to ensure that freeform where and having + * filter clauses can't be overridden */ +export type ExtraFormDataOverrideExtras = Pick< + QueryObjectExtras, + | 'druid_time_origin' + | 'relative_start' + | 'relative_end' + | 'time_grain_sqla' + | 'time_range_endpoints' +>; + +/** These parameters override those already present in the form data/query object */ +export type ExtraFormDataOverrideRegular = Partial< + Pick +> & + Partial> & + Partial> & + Partial>; + +/** These parameters override those already present in the form data/query object */ +export type ExtraFormDataOverride = ExtraFormDataOverrideRegular & + ExtraFormDataOverrideExtras; + +export type ExtraFormData = ExtraFormDataAppend & ExtraFormDataOverride; + +// Type signature for formData shared by all viz types +// It will be gradually filled out as we build out the query object + +export interface BaseFormData extends TimeRange, FormDataResidual { + /** datasource identifier ${id}_${type} */ + datasource: string; + /** + * visualization type + * - necessary if you use the plugin and want to use + * buildQuery function from the plugin. + * This must match the key used when registering the plugin. + * - not necessary if you do not plan to use the + * buildQuery function from the plugin. + * Can put "custom" (or any string) in this field in that case. + */ + viz_type: string; + metrics?: QueryFormMetric[]; + where?: string; + columns?: QueryFormColumn[]; + groupby?: QueryFormColumn[]; + all_columns?: QueryFormColumn[]; + /** list of filters */ + adhoc_filters?: AdhocFilter[] | null; + extra_filters?: QueryFormExtraFilter[] | null; + extra_form_data?: ExtraFormData; + /** order descending */ + order_desc?: boolean; + /** limit number of time series */ + limit?: number; + /** limit number of row in the results */ + row_limit?: string | number | null; + /** row offset for server side pagination */ + row_offset?: string | number | null; + /** The metric used to order timeseries for limiting */ + timeseries_limit_metric?: QueryFormMetric; + /** Force refresh */ + force?: boolean; + result_format?: string; + result_type?: string; + time_range_endpoints?: TimeRangeEndpoints; + annotation_layers?: AnnotationLayer[]; + url_params?: Record; + custom_params?: Record; + /** limit number of series */ + series_columns?: QueryFormColumn[]; + series_limit?: number; + series_limit_metric?: QueryFormColumn; +} + +/** + * Form data for SQLAlchemy based datasources. + */ +export interface SqlaFormData extends BaseFormData { + /** + * Name of the Time Column. Time column is optional. + */ + granularity_sqla?: string; + time_grain_sqla?: TimeGranularity; + having?: string; +} + +/** + * Form data for Druid datasources. + */ +export interface DruidFormData extends BaseFormData { + granularity: string; + having_druid?: string; + druid_time_origin?: string; +} + +export type QueryFormData = DruidFormData | SqlaFormData; + +//--------------------------------------------------- +// Type guards +//--------------------------------------------------- + +export function isDruidFormData( + formData: QueryFormData, +): formData is DruidFormData { + return 'granularity' in formData; +} + +export function isSavedMetric(metric: QueryFormMetric): metric is SavedMetric { + return typeof metric === 'string'; +} + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/QueryResponse.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/QueryResponse.ts new file mode 100644 index 000000000000..6c99ca9aa632 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/QueryResponse.ts @@ -0,0 +1,93 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { TimeseriesDataRecord } from '../../chart'; +import { AnnotationData } from './AnnotationLayer'; + +/** + * Generic data types, see enum of the same name in superset/utils/core.py. + */ +export enum GenericDataType { + NUMERIC = 0, + STRING = 1, + TEMPORAL = 2, + BOOLEAN = 3, +} + +/** + * Primitive types for data field values. + */ +export type DataRecordValue = number | string | boolean | Date | null; + +export interface DataRecord { + [key: string]: DataRecordValue; +} + +/** + * Queried data for charts. The `queries` field from `POST /chart/data`. + * See superset/charts/schemas.py for the class of the same name. + */ +export interface ChartDataResponseResult { + /** + * Data for the annotation layer. + */ + annotation_data: AnnotationData[] | null; + cache_key: string | null; + cache_timeout: number | null; + cache_dttm: string | null; + /** + * Array of data records as dictionary + */ + data: DataRecord[]; + /** + * Name of each column, for retaining the order of the output columns. + */ + colnames: string[]; + /** + * Generic data types, based on the final output pandas dataframe. + */ + coltypes: GenericDataType[]; + error: string | null; + is_cached: boolean; + query: string; + rowcount: number; + stacktrace: string | null; + status: + | 'stopped' + | 'failed' + | 'pending' + | 'running' + | 'scheduled' + | 'success' + | 'timed_out'; +} + +export interface TimeseriesChartDataResponseResult + extends ChartDataResponseResult { + data: TimeseriesDataRecord[]; +} + +/** + * Query response from /api/v1/chart/data + */ +export interface ChartDataResponse { + queries: ChartDataResponseResult[]; +} + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Time.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Time.ts new file mode 100644 index 000000000000..614cc02b54b9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/Time.ts @@ -0,0 +1,43 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { QueryObject } from './Query'; + +export type TimeRange = { + /** Time range of the query [from, to] */ + time_range?: string; + since?: string; + until?: string; +}; + +export type TimeColumnConfigKey = + | '__time_col' + | '__time_grain' + | '__time_range' + | '__time_origin' + | '__granularity'; + +export type AppliedTimeExtras = Partial< + Record +>; + +export type TimeRangeEndpoint = 'unknown' | 'inclusive' | 'exclusive'; +export type TimeRangeEndpoints = [TimeRangeEndpoint, TimeRangeEndpoint]; + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/index.ts new file mode 100644 index 000000000000..2ee4427efdf4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/query/types/index.ts @@ -0,0 +1,40 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export * from './Datasource'; +export * from './Column'; +export * from './Filter'; +export * from './Metric'; +export * from './Operator'; +export * from './Query'; +export * from './QueryFormData'; +export * from './QueryResponse'; +export * from './Time'; +export * from './AdvancedAnalytics'; +export * from './PostProcessing'; + +export { default as __hack_reexport_Datasource } from './Datasource'; +export { default as __hack_reexport_Column } from './Column'; +export { default as __hack_reexport_Metric } from './Metric'; +export { default as __hack_reexport_Query } from './Query'; +export { default as __hack_reexport_QueryResponse } from './QueryResponse'; +export { default as __hack_reexport_QueryFormData } from './QueryFormData'; +export { default as __hack_reexport_Time } from './Time'; +export { default as __hack_reexport_AdvancedAnalytics } from './AdvancedAnalytics'; + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/style/index.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/style/index.tsx new file mode 100644 index 000000000000..2c2d9f2ac854 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/style/index.tsx @@ -0,0 +1,170 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import emotionStyled from '@emotion/styled'; +import { useTheme as useThemeBasic } from '@emotion/react'; +import createCache from '@emotion/cache'; + +export { + css, + jsx, + ThemeProvider, + CacheProvider as EmotionCacheProvider, + withTheme, +} from '@emotion/react'; +export { default as createEmotionCache } from '@emotion/cache'; + +declare module '@emotion/react' { + // eslint-disable-next-line @typescript-eslint/no-empty-interface + export interface Theme extends SupersetTheme {} +} + +export function useTheme() { + const theme = useThemeBasic(); + // in the case there is no theme, useTheme returns an empty object + if (Object.keys(theme).length === 0 && theme.constructor === Object) { + throw new Error( + 'useTheme() could not find a ThemeContext. The component is likely missing from the app.', + ); + } + return theme; +} + +export const emotionCache = createCache({ + key: 'superset', +}); + +export const styled = emotionStyled; + +const defaultTheme = { + borderRadius: 4, + colors: { + text: { + label: '#879399', + help: '#737373', + }, + primary: { + base: '#20A7C9', + dark1: '#1A85A0', + dark2: '#156378', + light1: '#79CADE', + light2: '#A5DAE9', + light3: '#D2EDF4', + light4: '#E9F6F9', + light5: '#F3F8FA', + }, + secondary: { + base: '#444E7C', + dark1: '#363E63', + dark2: '#282E4A', + dark3: '#1B1F31', + light1: '#8E94B0', + light2: '#B4B8CA', + light3: '#D9DBE4', + light4: '#ECEEF2', + light5: '#F5F5F8', + }, + grayscale: { + base: '#666666', + dark1: '#323232', + dark2: '#000000', + light1: '#B2B2B2', + light2: '#E0E0E0', + light3: '#F0F0F0', + light4: '#F7F7F7', + light5: '#FFFFFF', + }, + error: { + base: '#E04355', + dark1: '#A7323F', + dark2: '#6F212A', + light1: '#EFA1AA', + light2: '#FAEDEE', + }, + warning: { + base: '#FF7F44', + dark1: '#BF5E33', + dark2: '#7F3F21', + light1: '#FEC0A1', + light2: '#FFF2EC', + }, + alert: { + base: '#FCC700', + dark1: '#BC9501', + dark2: '#7D6300', + light1: '#FDE380', + light2: '#FEF9E6', + }, + success: { + base: '#5AC189', + dark1: '#439066', + dark2: '#2B6144', + light1: '#ACE1C4', + light2: '#EEF8F3', + }, + info: { + base: '#66BCFE', + dark1: '#4D8CBE', + dark2: '#315E7E', + light1: '#B3DEFE', + light2: '#EFF8FE', + }, + }, + opacity: { + light: '10%', + mediumLight: '35%', + mediumHeavy: '60%', + heavy: '80%', + }, + typography: { + families: { + sansSerif: `'Inter', Helvetica, Arial`, + serif: `Georgia, 'Times New Roman', Times, serif`, + monospace: `'Fira Code', 'Courier New', monospace`, + }, + weights: { + light: 200, + normal: 400, + bold: 700, + }, + sizes: { + xxs: 9, + xs: 10, + s: 12, + m: 14, + l: 16, + xl: 21, + xxl: 28, + }, + }, + zIndex: { + aboveDashboardCharts: 10, + dropdown: 11, + max: 3000, + }, + transitionTiming: 0.3, + gridUnit: 4, +}; + +export type SupersetTheme = typeof defaultTheme; + +export interface SupersetThemeProps { + theme: SupersetTheme; +} + +export const supersetTheme = defaultTheme; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/README.md b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/README.md new file mode 100644 index 000000000000..21341bdc1c69 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/README.md @@ -0,0 +1,68 @@ + + +## @superset-ui/core/time-format + +Description + +#### Example usage + +```js +import { getTimeFormatter } from '@superset-ui/core'; +const formatter = getTimeFormatter('%Y-%m-d'); +console.log(formatter(new Date())); +``` + +or + +```js +import { formatTime } from '@superset-ui/core'; +console.log(formatTime('%Y-%m-d', new Date())); +``` + +It is powered by a registry to support registration of custom formatting, with fallback to +`d3.utcFormat` or `d3.timeFormat` (if the formatId starts with `local!`) + +```js +import { getTimeFormatterRegistry, formatTime, TimeFormatter } from '@superset-ui/core'; + +getTimeFormatterRegistry().registerValue('my_format', new TimeFormatter({ + id: 'my_format', + formatFunc: v => `my special format of ${utcFormat('%Y')(v)}` +}); + +console.log(formatTime('my_format', new Date(2018))); +// prints 'my special format of 2018' +``` + +It also define constants for common d3 time formats. See +[TimeFormats.js](https://github.com/apache-superset/superset-ui/blob/master/packages/superset-ui-time-format/src/TimeFormats.js). + +```js +import { TimeFormats } from '@superset-ui/core'; + +TimeFormats.DATABASE_DATETIME; // '%Y-%m-%d %H:%M:%S' +TimeFormats.US_DATE; // '%m/%d/%Y' +``` + +#### API + +`fn(args)` + +- Do something diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeFormats.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeFormats.ts new file mode 100644 index 000000000000..1e9788346aca --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeFormats.ts @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export const LOCAL_PREFIX = 'local!'; + +const DATABASE_DATETIME = '%Y-%m-%d %H:%M:%S'; +const DATABASE_DATETIME_REVERSE = '%d-%m-%Y %H:%M:%S'; +const US_DATE = '%m/%d/%Y'; +const INTERNATIONAL_DATE = '%d/%m/%Y'; +const DATABASE_DATE = '%Y-%m-%d'; +const TIME = '%H:%M:%S'; + +const TimeFormats = { + DATABASE_DATE, + DATABASE_DATETIME, + DATABASE_DATETIME_REVERSE, + INTERNATIONAL_DATE, + TIME, + US_DATE, +}; + +export default TimeFormats; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeFormatsForGranularity.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeFormatsForGranularity.ts new file mode 100644 index 000000000000..cfe9c7a9f797 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeFormatsForGranularity.ts @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import TimeFormats from './TimeFormats'; +import { TimeGranularity } from './types'; + +const { DATABASE_DATE, DATABASE_DATETIME } = TimeFormats; +const MINUTE = '%Y-%m-%d %H:%M'; + +/** + * Map time granularity to d3-format string + */ +const TimeFormatsForGranularity: Record = { + [TimeGranularity.DATE]: DATABASE_DATE, + [TimeGranularity.SECOND]: DATABASE_DATETIME, + [TimeGranularity.MINUTE]: MINUTE, + [TimeGranularity.FIVE_MINUTES]: MINUTE, + [TimeGranularity.TEN_MINUTES]: MINUTE, + [TimeGranularity.FIFTEEN_MINUTES]: MINUTE, + [TimeGranularity.THIRTY_MINUTES]: MINUTE, + [TimeGranularity.HOUR]: '%Y-%m-%d %H:00', + [TimeGranularity.DAY]: DATABASE_DATE, + [TimeGranularity.WEEK]: DATABASE_DATE, + [TimeGranularity.MONTH]: '%b %Y', + [TimeGranularity.QUARTER]: '%Y Q%q', + [TimeGranularity.YEAR]: '%Y', + [TimeGranularity.WEEK_STARTING_SUNDAY]: DATABASE_DATE, + [TimeGranularity.WEEK_STARTING_MONDAY]: DATABASE_DATE, + [TimeGranularity.WEEK_ENDING_SATURDAY]: DATABASE_DATE, + [TimeGranularity.WEEK_ENDING_SUNDAY]: DATABASE_DATE, +}; + +export default TimeFormatsForGranularity; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeFormatter.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeFormatter.ts new file mode 100644 index 000000000000..3a2a2464bc15 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeFormatter.ts @@ -0,0 +1,76 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ExtensibleFunction } from '../models'; +import { isRequired } from '../utils'; +import { TimeFormatFunction } from './types'; +import stringifyTimeInput from './utils/stringifyTimeInput'; + +export const PREVIEW_TIME = new Date(Date.UTC(2017, 1, 14, 11, 22, 33)); + +// Use type augmentation to indicate that +// an instance of TimeFormatter is also a function +interface TimeFormatter { + (value: Date | number | null | undefined): string; +} + +class TimeFormatter extends ExtensibleFunction { + id: string; + + label: string; + + description: string; + + formatFunc: TimeFormatFunction; + + useLocalTime: boolean; + + constructor(config: { + id: string; + label?: string; + description?: string; + formatFunc: TimeFormatFunction; + useLocalTime?: boolean; + }) { + super((value: Date | number | null | undefined) => this.format(value)); + + const { + id = isRequired('config.id'), + label, + description = '', + formatFunc = isRequired('config.formatFunc'), + useLocalTime = false, + } = config; + + this.id = id; + this.label = label ?? id; + this.description = description; + this.formatFunc = formatFunc; + this.useLocalTime = useLocalTime; + } + + format(value: Date | number | null | undefined) { + return stringifyTimeInput(value, time => this.formatFunc(time)); + } + + preview(value: Date = PREVIEW_TIME) { + return `${value.toUTCString()} => ${this.format(value)}`; + } +} + +export default TimeFormatter; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeFormatterRegistry.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeFormatterRegistry.ts new file mode 100644 index 000000000000..1df16963063c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeFormatterRegistry.ts @@ -0,0 +1,59 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { RegistryWithDefaultKey, OverwritePolicy } from '../models'; +import TimeFormats, { LOCAL_PREFIX } from './TimeFormats'; +import createD3TimeFormatter from './factories/createD3TimeFormatter'; +import TimeFormatter from './TimeFormatter'; + +export default class TimeFormatterRegistry extends RegistryWithDefaultKey< + TimeFormatter, + TimeFormatter +> { + constructor() { + super({ + initialDefaultKey: TimeFormats.DATABASE_DATETIME, + name: 'TimeFormatter', + overwritePolicy: OverwritePolicy.WARN, + }); + } + + get(format?: string) { + const targetFormat = `${ + format === null || typeof format === 'undefined' || format === '' + ? this.defaultKey + : format + }`.trim(); + + if (this.has(targetFormat)) { + return super.get(targetFormat) as TimeFormatter; + } + + // Create new formatter if does not exist + const useLocalTime = targetFormat.startsWith(LOCAL_PREFIX); + const formatString = targetFormat.replace(LOCAL_PREFIX, ''); + const formatter = createD3TimeFormatter({ formatString, useLocalTime }); + this.registerValue(targetFormat, formatter); + + return formatter; + } + + format(format: string | undefined, value: Date | null | undefined): string { + return this.get(format)(value); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeFormatterRegistrySingleton.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeFormatterRegistrySingleton.ts new file mode 100644 index 000000000000..becab8441ce6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeFormatterRegistrySingleton.ts @@ -0,0 +1,91 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { makeSingleton } from '../utils'; +import TimeFormatterRegistry from './TimeFormatterRegistry'; +import TimeFormatter from './TimeFormatter'; +import TimeFormatsForGranularity from './TimeFormatsForGranularity'; +import { LOCAL_PREFIX } from './TimeFormats'; +import { TimeGranularity } from './types'; +import createTimeRangeFromGranularity from './utils/createTimeRangeFromGranularity'; +import TimeRangeFormatter from './TimeRangeFormatter'; + +const getInstance = makeSingleton(TimeFormatterRegistry); + +export default getInstance; + +export function getTimeRangeFormatter(formatId?: string) { + return new TimeRangeFormatter({ + id: formatId || 'undefined', + formatFunc: (range: (Date | number | null | undefined)[]) => { + const format = getInstance().get(formatId); + const [start, end] = range.map(value => format(value)); + return start === end ? start : [start, end].join(' — '); + }, + useLocalTime: formatId?.startsWith(LOCAL_PREFIX), + }); +} + +export function formatTimeRange( + formatId: string | undefined, + range: (Date | null | undefined)[], +) { + return getTimeRangeFormatter(formatId)(range); +} + +export function getTimeFormatter( + formatId?: string, + granularity?: TimeGranularity, +) { + if (granularity) { + const formatString = formatId || TimeFormatsForGranularity[granularity]; + const timeRangeFormatter = getTimeRangeFormatter(formatString); + + return new TimeFormatter({ + id: [formatString, granularity].join('/'), + formatFunc: (value: Date) => + timeRangeFormatter.format( + createTimeRangeFromGranularity( + value, + granularity, + timeRangeFormatter.useLocalTime, + ), + ), + useLocalTime: timeRangeFormatter.useLocalTime, + }); + } + + return getInstance().get(formatId); +} + +/** + * Syntactic sugar for backward compatibility + * TODO: Deprecate this in the next breaking change. + * @param granularity + */ +export function getTimeFormatterForGranularity(granularity?: TimeGranularity) { + return getTimeFormatter(undefined, granularity); +} + +export function formatTime( + formatId: string | undefined, + value: Date | null | undefined, + granularity?: TimeGranularity, +) { + return getTimeFormatter(formatId, granularity)(value); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeRangeFormatter.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeRangeFormatter.ts new file mode 100644 index 000000000000..48bf9de62e17 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/TimeRangeFormatter.ts @@ -0,0 +1,68 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ExtensibleFunction } from '../models'; +import { TimeRangeFormatFunction } from './types'; + +// Use type augmentation to indicate that +// an instance of TimeFormatter is also a function +interface TimeRangeFormatter { + (value: (Date | number | null | undefined)[]): string; +} + +class TimeRangeFormatter extends ExtensibleFunction { + id: string; + + label: string; + + description: string; + + formatFunc: TimeRangeFormatFunction; + + useLocalTime: boolean; + + constructor(config: { + id: string; + label?: string; + description?: string; + formatFunc: TimeRangeFormatFunction; + useLocalTime?: boolean; + }) { + super((value: (Date | number | null | undefined)[]) => this.format(value)); + + const { + id, + label, + description = '', + formatFunc, + useLocalTime = false, + } = config; + + this.id = id; + this.label = label ?? id; + this.description = description; + this.formatFunc = formatFunc; + this.useLocalTime = useLocalTime; + } + + format(values: (Date | number | null | undefined)[]) { + return this.formatFunc(values); + } +} + +export default TimeRangeFormatter; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/factories/createD3TimeFormatter.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/factories/createD3TimeFormatter.ts new file mode 100644 index 000000000000..dfc627c783ec --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/factories/createD3TimeFormatter.ts @@ -0,0 +1,64 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + utcFormat, + timeFormat, + timeFormatLocale, + TimeLocaleDefinition, +} from 'd3-time-format'; +import { isRequired } from '../../utils'; +import TimeFormatter from '../TimeFormatter'; +import { LOCAL_PREFIX } from '../TimeFormats'; + +export default function createD3TimeFormatter(config: { + description?: string; + formatString: string; + label?: string; + locale?: TimeLocaleDefinition; + useLocalTime?: boolean; +}) { + const { + description, + formatString = isRequired('formatString'), + label, + locale, + useLocalTime = false, + } = config; + + const id = useLocalTime ? `${LOCAL_PREFIX}${formatString}` : formatString; + let formatFunc; + + if (typeof locale === 'undefined') { + const format = useLocalTime ? timeFormat : utcFormat; + formatFunc = format(formatString); + } else { + const localeObject = timeFormatLocale(locale); + formatFunc = useLocalTime + ? localeObject.format(formatString) + : localeObject.utcFormat(formatString); + } + + return new TimeFormatter({ + description, + formatFunc, + id, + label, + useLocalTime, + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/factories/createMultiFormatter.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/factories/createMultiFormatter.ts new file mode 100644 index 000000000000..69331536cf16 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/factories/createMultiFormatter.ts @@ -0,0 +1,110 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { utcFormat, timeFormat } from 'd3-time-format'; +import { utcUtils, localTimeUtils } from '../utils/d3Time'; +import TimeFormatter from '../TimeFormatter'; + +type FormatsByStep = Partial<{ + millisecond: string; + second: string; + minute: string; + hour: string; + day: string; + week: string; + month: string; + year: string; +}>; + +export default function createMultiFormatter({ + id, + label, + description, + formats = {}, + useLocalTime = false, +}: { + id: string; + label?: string; + description?: string; + formats?: FormatsByStep; + useLocalTime?: boolean; +}) { + const { + millisecond = '.%L', + second = ':%S', + minute = '%I:%M', + hour = '%I %p', + day = '%a %d', + week = '%b %d', + month = '%B', + year = '%Y', + } = formats; + + const format = useLocalTime ? timeFormat : utcFormat; + + const formatMillisecond = format(millisecond); + const formatSecond = format(second); + const formatMinute = format(minute); + const formatHour = format(hour); + const formatDay = format(day); + const formatFirstDayOfWeek = format(week); + const formatMonth = format(month); + const formatYear = format(year); + + const { + hasMillisecond, + hasSecond, + hasMinute, + hasHour, + isNotFirstDayOfMonth, + isNotFirstDayOfWeek, + isNotFirstMonth, + } = useLocalTime ? localTimeUtils : utcUtils; + + function multiFormatFunc(date: Date) { + if (hasMillisecond(date)) { + return formatMillisecond; + } + if (hasSecond(date)) { + return formatSecond; + } + if (hasMinute(date)) { + return formatMinute; + } + if (hasHour(date)) { + return formatHour; + } + if (isNotFirstDayOfMonth(date)) { + return isNotFirstDayOfWeek(date) ? formatDay : formatFirstDayOfWeek; + } + if (isNotFirstMonth(date)) { + return formatMonth; + } + + return formatYear; + } + + return new TimeFormatter({ + description, + formatFunc: (date: Date) => multiFormatFunc(date)(date), + id, + label, + useLocalTime, + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/formatters/smartDate.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/formatters/smartDate.ts new file mode 100644 index 000000000000..0aafb2a893cc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/formatters/smartDate.ts @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import createMultiFormatter from '../factories/createMultiFormatter'; + +const smartDateFormatter = createMultiFormatter({ + id: 'smart_date', + label: 'Adaptative Formatting', + formats: { + millisecond: '.%Lms', + second: ':%Ss', + minute: '%I:%M', + hour: '%I %p', + day: '%a %d', + week: '%b %d', + month: '%B', + year: '%Y', + }, +}); + +export default smartDateFormatter; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/formatters/smartDateDetailed.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/formatters/smartDateDetailed.ts new file mode 100644 index 000000000000..d8a30e9a1c03 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/formatters/smartDateDetailed.ts @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import createMultiFormatter from '../factories/createMultiFormatter'; + +const smartDateDetailedFormatter = createMultiFormatter({ + id: 'smart_date_detailed', + label: 'Detailed adaptive formatter', + formats: { + millisecond: '%Y-%m-%d %H:%M:%S.%L', + second: '%Y-%m-%d %H:%M:%S', + minute: '%Y-%m-%d %H:%M', + hour: '%Y-%m-%d %H:%M', + day: '%Y-%m-%d', + week: '%Y-%m-%d', + month: '%Y-%m-%d', + year: '%Y', + }, +}); + +export default smartDateDetailedFormatter; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/formatters/smartDateVerbose.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/formatters/smartDateVerbose.ts new file mode 100644 index 000000000000..4178322864bc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/formatters/smartDateVerbose.ts @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import createMultiFormatter from '../factories/createMultiFormatter'; + +const smartDateFormatter = createMultiFormatter({ + id: 'smart_date_verbose', + label: 'Verbose Adaptative Formatting', + formats: { + millisecond: '.%L', + second: '%a %b %d, %I:%M:%S %p', + minute: '%a %b %d, %I:%M %p', + hour: '%a %b %d, %I %p', + day: '%a %b %-e', + week: '%a %b %-e', + month: '%b %Y', + year: '%Y', + }, +}); + +export default smartDateFormatter; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/index.ts new file mode 100644 index 000000000000..48ac1a6803db --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/index.ts @@ -0,0 +1,39 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as TimeFormats, LOCAL_PREFIX } from './TimeFormats'; +export { default as TimeFormatter, PREVIEW_TIME } from './TimeFormatter'; + +export { + default as getTimeFormatterRegistry, + formatTime, + formatTimeRange, + getTimeFormatter, + getTimeFormatterForGranularity, + getTimeRangeFormatter, +} from './TimeFormatterRegistrySingleton'; + +export { default as createD3TimeFormatter } from './factories/createD3TimeFormatter'; +export { default as createMultiFormatter } from './factories/createMultiFormatter'; + +export { default as smartDateFormatter } from './formatters/smartDate'; +export { default as smartDateDetailedFormatter } from './formatters/smartDateDetailed'; +export { default as smartDateVerboseFormatter } from './formatters/smartDateVerbose'; + +export * from './types'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/types.ts new file mode 100644 index 000000000000..86be0fe8c0e5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/types.ts @@ -0,0 +1,51 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export type TimeFormatFunction = (value: Date) => string; + +export type TimeRangeFormatFunction = ( + values: (Date | number | undefined | null)[], +) => string; + +/** + * search for `builtin_time_grains` in incubator-superset/superset/db_engine_specs/base.py + */ +export const TimeGranularity = { + DATE: 'date', + SECOND: 'PT1S', + MINUTE: 'PT1M', + FIVE_MINUTES: 'PT5M', + TEN_MINUTES: 'PT10M', + FIFTEEN_MINUTES: 'PT15M', + THIRTY_MINUTES: 'PT30M', + HOUR: 'PT1H', + DAY: 'P1D', + WEEK: 'P1W', + WEEK_STARTING_SUNDAY: '1969-12-28T00:00:00Z/P1W', + WEEK_STARTING_MONDAY: '1969-12-29T00:00:00Z/P1W', + WEEK_ENDING_SATURDAY: 'P1W/1970-01-03T00:00:00Z', + WEEK_ENDING_SUNDAY: 'P1W/1970-01-04T00:00:00Z', + MONTH: 'P1M', + QUARTER: 'P3M', + YEAR: 'P1Y', +} as const; + +type ValueOf = T[keyof T]; + +export type TimeGranularity = ValueOf; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/utils/createTime.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/utils/createTime.ts new file mode 100644 index 000000000000..907b40fde94e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/utils/createTime.ts @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default function createTime( + mode: 'local' | 'utc', + year: number, + month = 0, + date = 1, + hours = 0, + minutes = 0, + seconds = 0, + milliseconds = 0, +): Date { + const args = [ + year, + month, + date, + hours, + minutes, + seconds, + milliseconds, + ] as const; + return mode === 'local' ? new Date(...args) : new Date(Date.UTC(...args)); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/utils/createTimeRangeFromGranularity.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/utils/createTimeRangeFromGranularity.ts new file mode 100644 index 000000000000..cbfe9adee316 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/utils/createTimeRangeFromGranularity.ts @@ -0,0 +1,111 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { TimeGranularity } from '../types'; +import createTime from './createTime'; + +const MS_IN_SECOND = 1000; +const MS_IN_MINUTE = 60 * MS_IN_SECOND; +const MS_IN_HOUR = 60 * MS_IN_MINUTE; + +function deductOneMs(time: Date) { + return new Date(time.getTime() - 1); +} + +function computeEndTimeFromGranularity( + time: Date, + granularity: TimeGranularity, + useLocalTime: boolean, +) { + const date = useLocalTime ? time.getDate() : time.getUTCDate(); + const month = useLocalTime ? time.getMonth() : time.getUTCMonth(); + const year = useLocalTime ? time.getFullYear() : time.getUTCFullYear(); + const mode = useLocalTime ? 'local' : 'utc'; + + switch (granularity) { + case TimeGranularity.SECOND: + return new Date(time.getTime() + MS_IN_SECOND - 1); + case TimeGranularity.MINUTE: + return new Date(time.getTime() + MS_IN_MINUTE - 1); + case TimeGranularity.FIVE_MINUTES: + return new Date(time.getTime() + MS_IN_MINUTE * 5 - 1); + case TimeGranularity.TEN_MINUTES: + return new Date(time.getTime() + MS_IN_MINUTE * 10 - 1); + case TimeGranularity.FIFTEEN_MINUTES: + return new Date(time.getTime() + MS_IN_MINUTE * 15 - 1); + case TimeGranularity.THIRTY_MINUTES: + return new Date(time.getTime() + MS_IN_MINUTE * 30 - 1); + case TimeGranularity.HOUR: + return new Date(time.getTime() + MS_IN_HOUR - 1); + // For the day granularity and above, using Date overflow is better than adding timestamp + // because it will also handle daylight saving. + case TimeGranularity.WEEK: + case TimeGranularity.WEEK_STARTING_SUNDAY: + case TimeGranularity.WEEK_STARTING_MONDAY: + return deductOneMs(createTime(mode, year, month, date + 7)); + case TimeGranularity.MONTH: + return deductOneMs(createTime(mode, year, month + 1)); + case TimeGranularity.QUARTER: + return deductOneMs( + createTime(mode, year, (Math.floor(month / 3) + 1) * 3), + ); + case TimeGranularity.YEAR: + return deductOneMs(createTime(mode, year + 1)); + // For the WEEK_ENDING_XXX cases, + // currently assume "time" returned from database is supposed to be the end time + // (in contrast to all other granularities that the returned time is start time). + // However, the returned "time" is at 00:00:00.000, so have to add 23:59:59.999. + case TimeGranularity.WEEK_ENDING_SATURDAY: + case TimeGranularity.WEEK_ENDING_SUNDAY: + case TimeGranularity.DATE: + case TimeGranularity.DAY: + default: + return deductOneMs(createTime(mode, year, month, date + 1)); + } +} + +export default function createTimeRangeFromGranularity( + time: Date, + granularity: TimeGranularity, + useLocalTime = false, +) { + const endTime = computeEndTimeFromGranularity( + time, + granularity, + useLocalTime, + ); + + if ( + granularity === TimeGranularity.WEEK_ENDING_SATURDAY || + granularity === TimeGranularity.WEEK_ENDING_SUNDAY + ) { + const date = useLocalTime ? time.getDate() : time.getUTCDate(); + const month = useLocalTime ? time.getMonth() : time.getUTCMonth(); + const year = useLocalTime ? time.getFullYear() : time.getUTCFullYear(); + const startTime = createTime( + useLocalTime ? 'local' : 'utc', + year, + month, + date - 6, + ); + return [startTime, endTime]; + } + + return [time, endTime]; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/utils/d3Time.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/utils/d3Time.ts new file mode 100644 index 000000000000..0537ea51c288 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/utils/d3Time.ts @@ -0,0 +1,141 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + timeSecond, + timeMinute, + timeHour, + timeDay, + timeWeek, + timeSunday, + timeMonday, + timeTuesday, + timeWednesday, + timeThursday, + timeFriday, + timeSaturday, + timeMonth, + timeYear, + utcSecond, + utcMinute, + utcHour, + utcDay, + utcWeek, + utcSunday, + utcMonday, + utcTuesday, + utcWednesday, + utcThursday, + utcFriday, + utcSaturday, + utcMonth, + utcYear, + CountableTimeInterval, +} from 'd3-time'; + +function createUtils(useLocalTime = false) { + let floorSecond: CountableTimeInterval; + let floorMinute: CountableTimeInterval; + let floorHour: CountableTimeInterval; + let floorDay: CountableTimeInterval; + let floorWeek: CountableTimeInterval; + let floorWeekStartOnSunday: CountableTimeInterval; + let floorWeekStartOnMonday: CountableTimeInterval; + let floorWeekStartOnTuesday: CountableTimeInterval; + let floorWeekStartOnWednesday: CountableTimeInterval; + let floorWeekStartOnThursday: CountableTimeInterval; + let floorWeekStartOnFriday: CountableTimeInterval; + let floorWeekStartOnSaturday: CountableTimeInterval; + let floorMonth: CountableTimeInterval; + let floorYear: CountableTimeInterval; + if (useLocalTime) { + floorSecond = timeSecond; + floorMinute = timeMinute; + floorHour = timeHour; + floorDay = timeDay; + floorWeek = timeWeek; + floorWeekStartOnSunday = timeSunday; + floorWeekStartOnMonday = timeMonday; + floorWeekStartOnTuesday = timeTuesday; + floorWeekStartOnWednesday = timeWednesday; + floorWeekStartOnThursday = timeThursday; + floorWeekStartOnFriday = timeFriday; + floorWeekStartOnSaturday = timeSaturday; + floorMonth = timeMonth; + floorYear = timeYear; + } else { + floorSecond = utcSecond; + floorMinute = utcMinute; + floorHour = utcHour; + floorDay = utcDay; + floorWeek = utcWeek; + floorWeekStartOnSunday = utcSunday; + floorWeekStartOnMonday = utcMonday; + floorWeekStartOnTuesday = utcTuesday; + floorWeekStartOnWednesday = utcWednesday; + floorWeekStartOnThursday = utcThursday; + floorWeekStartOnFriday = utcFriday; + floorWeekStartOnSaturday = utcSaturday; + floorMonth = utcMonth; + floorYear = utcYear; + } + + return { + floorSecond, + floorMinute, + floorHour, + floorDay, + floorWeek, + floorWeekStartOnSunday, + floorWeekStartOnMonday, + floorWeekStartOnTuesday, + floorWeekStartOnWednesday, + floorWeekStartOnThursday, + floorWeekStartOnFriday, + floorWeekStartOnSaturday, + floorMonth, + floorYear, + hasMillisecond: (date: Date) => floorSecond(date) < date, + hasSecond: (date: Date) => floorMinute(date) < date, + hasMinute: (date: Date) => floorHour(date) < date, + hasHour: (date: Date) => floorDay(date) < date, + isNotFirstDayOfMonth: (date: Date) => floorMonth(date) < date, + isNotFirstDayOfWeek: (date: Date) => floorWeek(date) < date, + isNotFirstDayOfWeekStartOnSunday: (date: Date) => + floorWeekStartOnSunday(date) < date, + isNotFirstDayOfWeekStartOnMonday: (date: Date) => + floorWeekStartOnMonday(date) < date, + isNotFirstDayOfWeekStartOnTuesday: (date: Date) => + floorWeekStartOnTuesday(date) < date, + isNotFirstDayOfWeekStartOnWednesday: (date: Date) => + floorWeekStartOnWednesday(date) < date, + isNotFirstDayOfWeekStartOnThursday: (date: Date) => + floorWeekStartOnThursday(date) < date, + isNotFirstDayOfWeekStartOnFriday: (date: Date) => + floorWeekStartOnFriday(date) < date, + isNotFirstDayOfWeekStartOnSaturday: (date: Date) => + floorWeekStartOnSaturday(date) < date, + isNotFirstMonth: (date: Date) => floorYear(date) < date, + }; +} + +const utcUtils = createUtils(); +const localTimeUtils = createUtils(true); + +export { utcUtils, localTimeUtils }; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/utils/stringifyTimeInput.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/utils/stringifyTimeInput.ts new file mode 100644 index 000000000000..098002f0a116 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/time-format/utils/stringifyTimeInput.ts @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default function stringifyTimeInput( + value: Date | number | undefined | null, + fn: (time: Date) => string, +) { + if (value === null || value === undefined) { + return `${value}`; + } + + return fn(value instanceof Date ? value : new Date(value)); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/README.md b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/README.md new file mode 100644 index 000000000000..aca2a964feaa --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/README.md @@ -0,0 +1,71 @@ + + +## @superset-ui/core/translation + +`i18n` locales and translation for Superset. + +### SupersetTranslation + +#### Example usage + +```js +import { configure, t, tn } from '@superset-ui/core'; + +configure({ + languagePack: {...}, +}); + +console.log(t('text to be translated')); +console.log(tn('singular text', 'plural text', value)); +``` + +#### API + +`configure({ [languagePack] })` + +- Initialize the translator +- Initialize with the default language if no `languagePack` is specified. + +`t(text[, args])` + +- Translate `text`. +- If `args` is provided, substitute `args` into the `sprintf` placeholders specified within `text` + translation. + +For example + +```js +t('Hello %(name)s', user); +``` + +See [sprintf-js](https://github.com/alexei/sprintf.js) for more details on how to define +placeholders. + +`tn(singular, plural, num, [, args])` + +- Translate and choose between `singular` and `plural` based on `num`. +- If `args` is provided, substitute `args` into the `sprintf` placeholders specified within + `singular` or `plural` translations. + +For example + +```js +tn('%d duck', '%d ducks', 2, 2); +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/Translator.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/Translator.ts new file mode 100644 index 000000000000..823638ceec95 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/Translator.ts @@ -0,0 +1,105 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import UntypedJed from 'jed'; +import logging from '../utils/logging'; +import { + Jed, + TranslatorConfig, + Locale, + Translations, + LocaleData, + LanguagePack, +} from './types'; + +const DEFAULT_LANGUAGE_PACK: LanguagePack = { + domain: 'superset', + locale_data: { + superset: { + '': { + domain: 'superset', + lang: 'en', + plural_forms: 'nplurals=2; plural=(n != 1)', + }, + }, + }, +}; + +export default class Translator { + i18n: Jed; + + locale: Locale; + + constructor(config: TranslatorConfig = {}) { + const { languagePack = DEFAULT_LANGUAGE_PACK } = config; + this.i18n = new UntypedJed(languagePack) as Jed; + this.locale = this.i18n.options.locale_data.superset[''].lang as Locale; + } + + /** + * Add additional translations on the fly, used by plugins. + */ + addTranslation(key: string, texts: ReadonlyArray) { + const translations = this.i18n.options.locale_data.superset; + if (key in translations) { + logging.warn(`Duplicate translation key "${key}", will override.`); + } + translations[key] = texts; + } + + /** + * Add a series of translations. + */ + addTranslations(translations: Translations) { + if (translations && !Array.isArray(translations)) { + Object.entries(translations).forEach(([key, vals]) => + this.addTranslation(key, vals), + ); + } else { + logging.warn('Invalid translations'); + } + } + + addLocaleData(data: LocaleData) { + // always fallback to English + const translations = data?.[this.locale] || data?.en; + if (translations) { + this.addTranslations(translations); + } else { + logging.warn('Invalid locale data'); + } + } + + translate(input: string, ...args: unknown[]): string { + return this.i18n.translate(input).fetch(...args); + } + + translateWithNumber(key: string, ...args: unknown[]): string { + const [plural, num, ...rest] = args; + if (typeof plural === 'number') { + return this.i18n + .translate(key) + .ifPlural(plural, key) + .fetch(plural, num, ...args); + } + return this.i18n + .translate(key) + .ifPlural(num as number, plural as string) + .fetch(...rest); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/TranslatorSingleton.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/TranslatorSingleton.ts new file mode 100644 index 000000000000..29a91064fa0b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/TranslatorSingleton.ts @@ -0,0 +1,67 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint no-console: 0 */ + +import Translator from './Translator'; +import { TranslatorConfig, Translations, LocaleData } from './types'; + +let singleton: Translator | undefined; +let isConfigured = false; + +function configure(config?: TranslatorConfig) { + singleton = new Translator(config); + isConfigured = true; + + return singleton; +} + +function getInstance() { + if (!isConfigured) { + console.warn('You should call configure(...) before calling other methods'); + } + + if (typeof singleton === 'undefined') { + singleton = new Translator(); + } + + return singleton; +} + +function addTranslation(key: string, translations: string[]) { + return getInstance().addTranslation(key, translations); +} + +function addTranslations(translations: Translations) { + return getInstance().addTranslations(translations); +} + +function addLocaleData(data: LocaleData) { + return getInstance().addLocaleData(data); +} + +function t(input: string, ...args: unknown[]) { + return getInstance().translate(input, ...args); +} + +function tn(key: string, ...args: unknown[]) { + return getInstance().translateWithNumber(key, ...args); +} + +export { configure, addTranslation, addTranslations, addLocaleData, t, tn }; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/index.ts new file mode 100644 index 000000000000..71cb8acbe0ea --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/index.ts @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export * from './TranslatorSingleton'; +export * from './types'; + +export default {}; + +export { default as __hack_reexport_trasnslation } from './types'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/types/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/types/index.ts new file mode 100644 index 000000000000..7850d1a3b5ca --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/types/index.ts @@ -0,0 +1,73 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { Jed as BaseJed, JedOptions, DomainData, Translations } from './jed'; + +export * from './jed'; +export { default as __hack_reexport_jed } from './jed'; + +/** + * Superset supported languages. + */ +export type Locale = + | 'de' + | 'en' + | 'es' + | 'fr' + | 'it' + | 'ja' + | 'ko' + | 'pt' + | 'pt_BR' + | 'ru' + | 'zh'; // supported locales in Superset + +/** + * Language pack provided to `jed`. + */ +export type LanguagePack = JedOptions & { + // eslint-disable-next-line camelcase + locale_data: { + superset: DomainData & { + '': { + domain: 'superset'; + lang: Locale; + // eslint-disable-next-line camelcase + plural_forms: string; + }; + }; + }; +}; + +export interface Jed extends BaseJed { + options: LanguagePack; +} + +/** + * Config options for Translator class. + */ +export interface TranslatorConfig { + languagePack?: LanguagePack; +} + +/** + * Key-value mapping of translation key and the translations. + */ +export type LocaleData = Partial>; + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/types/jed.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/types/jed.ts new file mode 100644 index 000000000000..e795da357675 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/translation/types/jed.ts @@ -0,0 +1,56 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Translations for a language in the format of { key: [singular, plural, ...]}. + */ +export type Translations = { + [key: string]: ReadonlyArray; +}; + +export interface DomainConfig { + domain: string; + lang: string; + // eslint-disable-next-line camelcase + plural_forms: string; +} + +export type DomainData = { '': DomainConfig } & { + [key: string]: ReadonlyArray | DomainConfig; +}; + +export interface JedOptions { + domain: string; + // eslint-disable-next-line camelcase + locale_data: { + [domain: string]: DomainData; + }; +} + +export interface Jed { + translate(input: string): Jed; + + ifPlural(value: number, plural: string): Jed; + + fetch(...args: unknown[]): string; + + options: JedOptions; +} + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/types/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/types/index.ts new file mode 100644 index 000000000000..eaab5c0b49dc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/types/index.ts @@ -0,0 +1,21 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export * from '../query/types'; + +export type Maybe = T | null; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/convertKeysToCamelCase.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/convertKeysToCamelCase.ts new file mode 100644 index 000000000000..88dcbe1d855f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/convertKeysToCamelCase.ts @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import camelCase from 'lodash/camelCase'; +import isPlainObject from 'lodash/isPlainObject'; +import mapKeys from 'lodash/mapKeys'; + +export default function convertKeysToCamelCase(object: T) { + if (object === null || object === undefined) { + return object; + } + if (isPlainObject(object)) { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + return mapKeys(object as { [key: string]: any }, (_, k) => + camelCase(k), + ) as T; + } + throw new Error(`Cannot convert input that is not a plain object: ${object}`); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/ensureIsArray.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/ensureIsArray.ts new file mode 100644 index 000000000000..244643f1dfe9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/ensureIsArray.ts @@ -0,0 +1,29 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Ensure a nullable value input is an array. Useful when consolidating + * input format from a select control. + */ +export default function ensureIsArray(value?: T[] | T | null): T[] { + if (value === undefined || value === null) { + return []; + } + return Array.isArray(value) ? value : [value]; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/ensureIsInt.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/ensureIsInt.ts new file mode 100644 index 000000000000..57419a1c59b1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/ensureIsInt.ts @@ -0,0 +1,27 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default function ensureIsInt( + value: T, + defaultValue?: number, +): number { + const val = parseInt(String(value), 10); + const defaultOrNaN = defaultValue === undefined ? NaN : defaultValue; + return Number.isNaN(val) ? defaultOrNaN : val; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/featureFlags.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/featureFlags.ts new file mode 100644 index 000000000000..86c69ea2b785 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/featureFlags.ts @@ -0,0 +1,81 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +// We can codegen the enum definition based on a list of supported flags that we +// check into source control. We're hardcoding the supported flags for now. +export enum FeatureFlag { + ALLOW_DASHBOARD_DOMAIN_SHARDING = 'ALLOW_DASHBOARD_DOMAIN_SHARDING', + ALERT_REPORTS = 'ALERT_REPORTS', + OMNIBAR = 'OMNIBAR', + CLIENT_CACHE = 'CLIENT_CACHE', + DYNAMIC_PLUGINS = 'DYNAMIC_PLUGINS', + SCHEDULED_QUERIES = 'SCHEDULED_QUERIES', + SQL_VALIDATORS_BY_ENGINE = 'SQL_VALIDATORS_BY_ENGINE', + ESTIMATE_QUERY_COST = 'ESTIMATE_QUERY_COST', + SHARE_QUERIES_VIA_KV_STORE = 'SHARE_QUERIES_VIA_KV_STORE', + SQLLAB_BACKEND_PERSISTENCE = 'SQLLAB_BACKEND_PERSISTENCE', + THUMBNAILS = 'THUMBNAILS', + LISTVIEWS_DEFAULT_CARD_VIEW = 'LISTVIEWS_DEFAULT_CARD_VIEW', + ENABLE_REACT_CRUD_VIEWS = 'ENABLE_REACT_CRUD_VIEWS', + DISABLE_DATASET_SOURCE_EDIT = 'DISABLE_DATASET_SOURCE_EDIT', + DISPLAY_MARKDOWN_HTML = 'DISPLAY_MARKDOWN_HTML', + ESCAPE_MARKDOWN_HTML = 'ESCAPE_MARKDOWN_HTML', + DASHBOARD_NATIVE_FILTERS = 'DASHBOARD_NATIVE_FILTERS', + DASHBOARD_CROSS_FILTERS = 'DASHBOARD_CROSS_FILTERS', + DASHBOARD_NATIVE_FILTERS_SET = 'DASHBOARD_NATIVE_FILTERS_SET', + DASHBOARD_FILTERS_EXPERIMENTAL = 'DASHBOARD_FILTERS_EXPERIMENTAL', + ENABLE_FILTER_BOX_MIGRATION = 'ENABLE_FILTER_BOX_MIGRATION', + VERSIONED_EXPORT = 'VERSIONED_EXPORT', + GLOBAL_ASYNC_QUERIES = 'GLOBAL_ASYNC_QUERIES', + ENABLE_TEMPLATE_PROCESSING = 'ENABLE_TEMPLATE_PROCESSING', + ENABLE_EXPLORE_DRAG_AND_DROP = 'ENABLE_EXPLORE_DRAG_AND_DROP', + ENABLE_DND_WITH_CLICK_UX = 'ENABLE_DND_WITH_CLICK_UX', + FORCE_DATABASE_CONNECTIONS_SSL = 'FORCE_DATABASE_CONNECTIONS_SSL', + ENABLE_TEMPLATE_REMOVE_FILTERS = 'ENABLE_TEMPLATE_REMOVE_FILTERS', + DASHBOARD_RBAC = 'DASHBOARD_RBAC', + ALERTS_ATTACH_REPORTS = 'ALERTS_ATTACH_REPORTS', + ALLOW_FULL_CSV_EXPORT = 'ALLOW_FULL_CSV_EXPORT', + UX_BETA = 'UX_BETA', +} +export type ScheduleQueriesProps = { + JSONSCHEMA: { + [key: string]: string; + }; + UISCHEMA: { + [key: string]: string; + }; + VALIDATION: { + [key: string]: string; + }; +}; +export type FeatureFlagMap = { + [key in Exclude]?: boolean; +} & { + SCHEDULED_QUERIES?: ScheduleQueriesProps; +}; + +// eslint-disable-next-line @typescript-eslint/no-unused-vars +declare global { + interface Window { + featureFlags: FeatureFlagMap; + } +} + +export function isFeatureEnabled(feature: FeatureFlag) { + return window && window.featureFlags && !!window.featureFlags[feature]; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/index.ts new file mode 100644 index 000000000000..1caff909d98e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/index.ts @@ -0,0 +1,29 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export { default as convertKeysToCamelCase } from './convertKeysToCamelCase'; +export { default as ensureIsArray } from './ensureIsArray'; +export { default as ensureIsInt } from './ensureIsInt'; +export { default as isDefined } from './isDefined'; +export { default as isRequired } from './isRequired'; +export { default as makeSingleton } from './makeSingleton'; +export { default as promiseTimeout } from './promiseTimeout'; +export { default as logging } from './logging'; +export { default as removeDuplicates } from './removeDuplicates'; +export * from './featureFlags'; +export * from './random'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/isDefined.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/isDefined.ts new file mode 100644 index 000000000000..097115e11c1c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/isDefined.ts @@ -0,0 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default function isDefined(x: unknown) { + return x !== null && x !== undefined; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/isRequired.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/isRequired.ts new file mode 100644 index 000000000000..fe3e1ff1134d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/isRequired.ts @@ -0,0 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default function isRequired(field: string): never { + throw new Error(`${field} is required.`); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/logging.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/logging.ts new file mode 100644 index 000000000000..929c4d0fb9a3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/logging.ts @@ -0,0 +1,38 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +const console = window.console || {}; +const log = console.log || (() => {}); + +const logger = { + log, + debug: console.debug || log, + info: console.info || log, + warn: console.warn || log, + error: console.error || log, + trace: console.trace || log, + table: console.table || log, +}; + +/** + * Superset frontend logger, currently just an alias to console. + * This may be extended to support numerous console operations safely + * i.e.: https://developer.mozilla.org/en-US/docs/Web/API/Console + */ +export default logger; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/makeSingleton.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/makeSingleton.ts new file mode 100644 index 000000000000..76e200972fa3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/makeSingleton.ts @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +interface ClassInterface { + new (...args: Args): T; +} + +export default function makeSingleton( + BaseClass: ClassInterface, + ...args: Args +): () => T { + let singleton: T; + + return function getInstance() { + if (!singleton) { + singleton = new BaseClass(...args); + } + + return singleton; + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/promiseTimeout.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/promiseTimeout.ts new file mode 100644 index 000000000000..779b88f21b20 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/promiseTimeout.ts @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** setTimeout that returns a promise */ +export default function promiseTimeout( + /** A function to be executed after the timer expires. */ + func: (...args: unknown[]) => T, + /** The time, in milliseconds (thousandths of a second), the timer should wait before the specified function or code is executed. If this parameter is omitted, a value of 0 is used, meaning execute "immediately", or more accurately, as soon as possible. */ + delay?: number, +) { + return new Promise(resolve => { + setTimeout(() => { + resolve(func()); + }, delay); + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/random.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/random.ts new file mode 100644 index 000000000000..38dbdbd10bba --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/random.ts @@ -0,0 +1,30 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import seedrandom from 'seedrandom'; + +let random = seedrandom('superset-ui'); + +export function seed(seed: string) { + random = seedrandom(seed); + return random; +} + +export function seedRandom() { + return random(); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/removeDuplicates.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/removeDuplicates.ts new file mode 100644 index 000000000000..bb67ad21289c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/utils/removeDuplicates.ts @@ -0,0 +1,38 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/** + * Remove duplicate items from a list. + */ +export function removeDuplicates( + items: T[], + hash?: (item: T) => unknown, +): T[] { + if (hash) { + const seen = new Set(); + return items.filter(x => { + const itemHash = hash(x); + if (seen.has(itemHash)) return false; + seen.add(itemHash); + return true; + }); + } + return [...new Set(items)]; +} + +export default removeDuplicates; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/index.ts new file mode 100644 index 000000000000..532efcc95911 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/index.ts @@ -0,0 +1,24 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as legacyValidateInteger } from './legacyValidateInteger'; +export { default as legacyValidateNumber } from './legacyValidateNumber'; +export { default as validateInteger } from './validateInteger'; +export { default as validateNumber } from './validateNumber'; +export { default as validateNonEmpty } from './validateNonEmpty'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/legacyValidateInteger.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/legacyValidateInteger.ts new file mode 100644 index 000000000000..7034e58ca531 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/legacyValidateInteger.ts @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { t } from '../translation'; + +/** + * formerly called integer() + * @param v + */ +export default function legacyValidateInteger(v: unknown) { + if ( + v && + (Number.isNaN(Number(v)) || parseInt(v as string, 10) !== Number(v)) + ) { + return t('is expected to be an integer'); + } + return false; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/legacyValidateNumber.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/legacyValidateNumber.ts new file mode 100644 index 000000000000..3b63f12840a2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/legacyValidateNumber.ts @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { t } from '../translation'; + +/** + * formerly called numeric() + * @param v + */ +export default function numeric(v: unknown) { + if (v && Number.isNaN(Number(v))) { + return t('is expected to be a number'); + } + return false; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/validateInteger.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/validateInteger.ts new file mode 100644 index 000000000000..1677f0ecf9b8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/validateInteger.ts @@ -0,0 +1,33 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { t } from '../translation'; + +export default function validateInteger(v: unknown) { + if ( + (typeof v === 'string' && + v.trim().length > 0 && + Number.isInteger(Number(v.trim()))) || + (typeof v === 'number' && Number.isInteger(v)) + ) { + return false; + } + + return t('is expected to be an integer'); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/validateNonEmpty.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/validateNonEmpty.ts new file mode 100644 index 000000000000..af4173cd4462 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/validateNonEmpty.ts @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { t } from '../translation'; + +export default function validateNonEmpty(v: unknown) { + if ( + v === null || + typeof v === 'undefined' || + v === '' || + (Array.isArray(v) && v.length === 0) + ) { + return t('cannot be empty'); + } + return false; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/validateNumber.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/validateNumber.ts new file mode 100644 index 000000000000..7de5f3f27cc8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/src/validator/validateNumber.ts @@ -0,0 +1,33 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { t } from '../translation'; + +export default function validateInteger(v: unknown) { + if ( + (typeof v === 'string' && + v.trim().length > 0 && + Number.isFinite(Number(v.trim()))) || + (typeof v === 'number' && Number.isFinite(v)) + ) { + return false; + } + + return t('is expected to be a number'); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/__mocks__/resize-observer-polyfill.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/__mocks__/resize-observer-polyfill.ts new file mode 100644 index 000000000000..238e14ab2336 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/__mocks__/resize-observer-polyfill.ts @@ -0,0 +1,51 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +interface ResizeObserverEntry { + contentRect: { + height: number; + width: number; + }; +} +type ObserveCallback = (entries: ResizeObserverEntry[]) => void; + +const allCallbacks: ObserveCallback[] = []; + +export default function ResizeObserver(callback: ObserveCallback) { + return { + disconnect() { + allCallbacks.splice(allCallbacks.indexOf(callback), 1); + }, + observe() { + if (callback) { + allCallbacks.push(callback); + } + }, + }; +} + +export const DEFAULT_OUTPUT: ResizeObserverEntry[] = [ + { contentRect: { height: 300, width: 300 } }, +]; + +export function triggerResizeObserver(entries = DEFAULT_OUTPUT) { + allCallbacks.forEach(fn => { + fn(entries); + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart-composition/ChartFrame.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart-composition/ChartFrame.test.tsx new file mode 100644 index 000000000000..a83f120af553 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart-composition/ChartFrame.test.tsx @@ -0,0 +1,127 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { shallow } from 'enzyme'; +import { ChartFrame } from '@superset-ui/core/src'; + +describe('TooltipFrame', () => { + it('renders content that requires smaller space than frame', () => { + const wrapper = shallow( + ( +
+ {width}/{height} +
+ )} + />, + ); + expect(wrapper.find('div').text()).toEqual('400/400'); + }); + + it('renders content without specifying content size', () => { + const wrapper = shallow( + ( +
+ {width}/{height} +
+ )} + />, + ); + expect(wrapper.find('div').text()).toEqual('400/400'); + }); + + it('renders content that requires same size with frame', () => { + const wrapper = shallow( + ( +
+ {width}/{height} +
+ )} + />, + ); + expect(wrapper.find('div').text()).toEqual('400/400'); + }); + + it('renders content that requires space larger than frame', () => { + const wrapper = shallow( + ( +
+ {width}/{height} +
+ )} + />, + ); + expect(wrapper.find('div.chart').text()).toEqual('500/500'); + }); + + it('renders content that width is larger than frame', () => { + const wrapper = shallow( + ( +
+ {width}/{height} +
+ )} + />, + ); + expect(wrapper.find('div.chart').text()).toEqual('500/400'); + }); + + it('renders content that height is larger than frame', () => { + const wrapper = shallow( + ( +
+ {width}/{height} +
+ )} + />, + ); + expect(wrapper.find('div.chart').text()).toEqual('400/600'); + }); + + it('renders an empty frame when renderContent is not given', () => { + const wrapper = shallow(); + expect(wrapper.find('div')).toHaveLength(0); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart-composition/legend/WithLegend.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart-composition/legend/WithLegend.test.tsx new file mode 100644 index 000000000000..ddef03bf4717 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart-composition/legend/WithLegend.test.tsx @@ -0,0 +1,205 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { mount, shallow } from 'enzyme'; +import { triggerResizeObserver } from 'resize-observer-polyfill'; +import { promiseTimeout } from '@superset-ui/core/src'; +import { WithLegend } from '@superset-ui/core/src/chart-composition'; + +let renderChart = jest.fn(); +let renderLegend = jest.fn(); + +describe('WithLegend', () => { + beforeEach(() => { + renderChart = jest.fn(() =>
); + renderLegend = jest.fn(() =>
); + }); + + it('sets className', () => { + const wrapper = shallow( + , + ); + expect(wrapper.hasClass('test-class')).toEqual(true); + }); + + it('renders when renderLegend is not set', () => { + const wrapper = mount( + , + ); + + triggerResizeObserver(); + // Have to delay more than debounceTime (1ms) + return promiseTimeout(() => { + expect(renderChart).toHaveBeenCalledTimes(1); + expect(wrapper.render().find('div.chart')).toHaveLength(1); + expect(wrapper.render().find('div.legend')).toHaveLength(0); + }, 100); + }); + + it('renders', () => { + const wrapper = mount( + , + ); + + triggerResizeObserver(); + // Have to delay more than debounceTime (1ms) + return promiseTimeout(() => { + expect(renderChart).toHaveBeenCalledTimes(1); + expect(renderLegend).toHaveBeenCalledTimes(1); + expect(wrapper.render().find('div.chart')).toHaveLength(1); + expect(wrapper.render().find('div.legend')).toHaveLength(1); + }, 100); + }); + + it('renders without width or height', () => { + const wrapper = mount( + , + ); + + triggerResizeObserver(); + // Have to delay more than debounceTime (1ms) + return promiseTimeout(() => { + expect(renderChart).toHaveBeenCalledTimes(1); + expect(renderLegend).toHaveBeenCalledTimes(1); + expect(wrapper.render().find('div.chart')).toHaveLength(1); + expect(wrapper.render().find('div.legend')).toHaveLength(1); + }, 100); + }); + + it('renders legend on the left', () => { + const wrapper = mount( + , + ); + + triggerResizeObserver(); + // Have to delay more than debounceTime (1ms) + return promiseTimeout(() => { + expect(renderChart).toHaveBeenCalledTimes(1); + expect(renderLegend).toHaveBeenCalledTimes(1); + expect(wrapper.render().find('div.chart')).toHaveLength(1); + expect(wrapper.render().find('div.legend')).toHaveLength(1); + }, 100); + }); + + it('renders legend on the right', () => { + const wrapper = mount( + , + ); + + triggerResizeObserver(); + // Have to delay more than debounceTime (1ms) + return promiseTimeout(() => { + expect(renderChart).toHaveBeenCalledTimes(1); + expect(renderLegend).toHaveBeenCalledTimes(1); + expect(wrapper.render().find('div.chart')).toHaveLength(1); + expect(wrapper.render().find('div.legend')).toHaveLength(1); + }, 100); + }); + + it('renders legend on the top', () => { + const wrapper = mount( + , + ); + + triggerResizeObserver(); + // Have to delay more than debounceTime (1ms) + return promiseTimeout(() => { + expect(renderChart).toHaveBeenCalledTimes(1); + expect(renderLegend).toHaveBeenCalledTimes(1); + expect(wrapper.render().find('div.chart')).toHaveLength(1); + expect(wrapper.render().find('div.legend')).toHaveLength(1); + }, 100); + }); + + it('renders legend on the bottom', () => { + const wrapper = mount( + , + ); + + triggerResizeObserver(); + // Have to delay more than debounceTime (1ms) + return promiseTimeout(() => { + expect(renderChart).toHaveBeenCalledTimes(1); + expect(renderLegend).toHaveBeenCalledTimes(1); + expect(wrapper.render().find('div.chart')).toHaveLength(1); + expect(wrapper.render().find('div.legend')).toHaveLength(1); + }, 100); + }); + + it('renders legend with justifyContent set', () => { + const wrapper = mount( + , + ); + + triggerResizeObserver(); + // Have to delay more than debounceTime (1ms) + return promiseTimeout(() => { + expect(renderChart).toHaveBeenCalledTimes(1); + expect(renderLegend).toHaveBeenCalledTimes(1); + expect(wrapper.render().find('div.chart')).toHaveLength(1); + expect(wrapper.render().find('div.legend')).toHaveLength(1); + }, 100); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart-composition/tooltip/TooltipFrame.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart-composition/tooltip/TooltipFrame.test.tsx new file mode 100644 index 000000000000..45b5dd6f733d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart-composition/tooltip/TooltipFrame.test.tsx @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { shallow } from 'enzyme'; +import { TooltipFrame } from '@superset-ui/core/src'; + +describe('TooltipFrame', () => { + it('sets className', () => { + const wrapper = shallow( + + Hi! + , + ); + expect(wrapper.hasClass('test-class')).toEqual(true); + }); + + it('renders', () => { + const wrapper = shallow( + + Hi! + , + ); + const span = wrapper.find('span'); + expect(span).toHaveLength(1); + expect(span.text()).toEqual('Hi!'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart-composition/tooltip/TooltipTable.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart-composition/tooltip/TooltipTable.test.tsx new file mode 100644 index 000000000000..29597214839f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart-composition/tooltip/TooltipTable.test.tsx @@ -0,0 +1,66 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { shallow } from 'enzyme'; +import { TooltipTable } from '@superset-ui/core/src'; + +describe('TooltipTable', () => { + it('sets className', () => { + const wrapper = shallow(); + expect(wrapper.render().hasClass('test-class')).toEqual(true); + }); + + it('renders empty table', () => { + const wrapper = shallow(); + expect(wrapper.find('tbody')).toHaveLength(1); + expect(wrapper.find('tr')).toHaveLength(0); + }); + + it('renders table with content', () => { + const wrapper = shallow( + , + ); + expect(wrapper.find('tbody')).toHaveLength(1); + expect(wrapper.find('tr')).toHaveLength(3); + expect(wrapper.find('tr > td').first().text()).toEqual('Cersei'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/clients/ChartClient.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/clients/ChartClient.test.ts new file mode 100644 index 000000000000..bfa16e9c3536 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/clients/ChartClient.test.ts @@ -0,0 +1,315 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import fetchMock from 'fetch-mock'; +import { + SupersetClientClass, + SupersetClient, + buildQueryContext, + QueryFormData, + configure as configureTranslation, +} from '@superset-ui/core/src'; + +import { + ChartClient, + getChartBuildQueryRegistry, + getChartMetadataRegistry, + ChartMetadata, +} from '@superset-ui/core/src/chart'; +import { SliceIdAndOrFormData } from '@superset-ui/core/src/chart/clients/ChartClient'; +import { LOGIN_GLOB } from '../fixtures/constants'; +import { sankeyFormData } from '../fixtures/formData'; + +configureTranslation(); + +describe('ChartClient', () => { + let chartClient: ChartClient; + + beforeAll(() => { + fetchMock.get(LOGIN_GLOB, { result: '1234' }); + SupersetClient.reset(); + SupersetClient.configure().init(); + }); + + beforeEach(() => { + chartClient = new ChartClient(); + }); + + afterEach(fetchMock.restore); + + describe('new ChartClient(config)', () => { + it('creates a client without argument', () => { + expect(chartClient).toBeInstanceOf(ChartClient); + }); + it('creates a client with specified config.client', () => { + const customClient = new SupersetClientClass(); + chartClient = new ChartClient({ client: customClient }); + expect(chartClient).toBeInstanceOf(ChartClient); + expect(chartClient.client).toBe(customClient); + }); + }); + + describe('.loadFormData({ sliceId, formData }, options)', () => { + const sliceId = 123; + it('fetches formData if given only sliceId', () => { + fetchMock.get( + `glob:*/api/v1/form_data/?slice_id=${sliceId}`, + sankeyFormData, + ); + + return expect(chartClient.loadFormData({ sliceId })).resolves.toEqual( + sankeyFormData, + ); + }); + it('fetches formData from sliceId and merges with specify formData if both fields are specified', () => { + fetchMock.get( + `glob:*/api/v1/form_data/?slice_id=${sliceId}`, + sankeyFormData, + ); + + return expect( + chartClient.loadFormData({ + sliceId, + formData: { + granularity: 'second', + viz_type: 'bar', + }, + }), + ).resolves.toEqual({ + ...sankeyFormData, + granularity: 'second', + viz_type: 'bar', + }); + }); + it('returns promise of formData if only formData was given', () => + expect( + chartClient.loadFormData({ + formData: { + datasource: '1__table', + granularity: 'minute', + viz_type: 'line', + }, + }), + ).resolves.toEqual({ + datasource: '1__table', + granularity: 'minute', + viz_type: 'line', + })); + it('rejects if none of sliceId or formData is specified', () => + expect( + chartClient.loadFormData({} as SliceIdAndOrFormData), + ).rejects.toEqual( + new Error('At least one of sliceId or formData must be specified'), + )); + }); + + describe('.loadQueryData(formData, options)', () => { + it('returns a promise of query data for known chart type', () => { + getChartMetadataRegistry().registerValue( + 'word_cloud', + new ChartMetadata({ name: 'Word Cloud', thumbnail: '' }), + ); + + getChartBuildQueryRegistry().registerValue( + 'word_cloud', + (formData: QueryFormData) => buildQueryContext(formData), + ); + fetchMock.post('glob:*/api/v1/chart/data', [ + { + field1: 'abc', + field2: 'def', + }, + ]); + + return expect( + chartClient.loadQueryData({ + granularity: 'minute', + viz_type: 'word_cloud', + datasource: '1__table', + }), + ).resolves.toEqual([ + { + field1: 'abc', + field2: 'def', + }, + ]); + }); + it('returns a promise that rejects for unknown chart type', () => + expect( + chartClient.loadQueryData({ + granularity: 'minute', + viz_type: 'rainbow_3d_pie', + datasource: '1__table', + }), + ).rejects.toEqual(new Error('Unknown chart type: rainbow_3d_pie'))); + + it('fetches data from the legacy API if ChartMetadata has useLegacyApi=true,', () => { + // note legacy charts do not register a buildQuery function in the registry + getChartMetadataRegistry().registerValue( + 'word_cloud_legacy', + new ChartMetadata({ + name: 'Legacy Word Cloud', + thumbnail: '.png', + useLegacyApi: true, + }), + ); + + fetchMock.post('glob:*/api/v1/chart/data', () => + Promise.reject(new Error('Unexpected all to v1 API')), + ); + + fetchMock.post('glob:*/superset/explore_json/', { + field1: 'abc', + field2: 'def', + }); + + return expect( + chartClient.loadQueryData({ + granularity: 'minute', + viz_type: 'word_cloud_legacy', + datasource: '1__table', + }), + ).resolves.toEqual([ + { + field1: 'abc', + field2: 'def', + }, + ]); + }); + }); + + describe('.loadDatasource(datasourceKey, options)', () => { + it('fetches datasource', () => { + fetchMock.get( + 'glob:*/superset/fetch_datasource_metadata?datasourceKey=1__table', + { + field1: 'abc', + field2: 'def', + }, + ); + + return expect(chartClient.loadDatasource('1__table')).resolves.toEqual({ + field1: 'abc', + field2: 'def', + }); + }); + }); + + describe('.loadAnnotation(annotationLayer)', () => { + it('returns an empty object if the annotation layer does not require query', () => + expect( + chartClient.loadAnnotation({ + name: 'my-annotation', + }), + ).resolves.toEqual({})); + it('otherwise returns a rejected promise because it is not implemented yet', () => + expect( + chartClient.loadAnnotation({ + name: 'my-annotation', + sourceType: 'abc', + }), + ).rejects.toEqual(new Error('This feature is not implemented yet.'))); + }); + + describe('.loadAnnotations(annotationLayers)', () => { + it('loads multiple annotation layers and combine results', () => + expect( + chartClient.loadAnnotations([ + { + name: 'anno1', + }, + { + name: 'anno2', + }, + { + name: 'anno3', + }, + ]), + ).resolves.toEqual({ + anno1: {}, + anno2: {}, + anno3: {}, + })); + it('returns an empty object if input is not an array', () => + expect(chartClient.loadAnnotations()).resolves.toEqual({})); + it('returns an empty object if input is an empty array', () => + expect(chartClient.loadAnnotations()).resolves.toEqual({})); + }); + + describe('.loadChartData({ sliceId, formData })', () => { + const sliceId = 10120; + it('loadAllDataNecessaryForAChart', () => { + fetchMock.get(`glob:*/api/v1/form_data/?slice_id=${sliceId}`, { + granularity: 'minute', + viz_type: 'line', + datasource: '1__table', + color: 'living-coral', + }); + + fetchMock.get( + 'glob:*/superset/fetch_datasource_metadata?datasourceKey=1__table', + { + name: 'transactions', + schema: 'staging', + }, + ); + + fetchMock.post('glob:*/api/v1/chart/data', { + lorem: 'ipsum', + dolor: 'sit', + amet: true, + }); + + getChartMetadataRegistry().registerValue( + 'line', + new ChartMetadata({ name: 'Line', thumbnail: '.gif' }), + ); + + getChartBuildQueryRegistry().registerValue( + 'line', + (formData: QueryFormData) => buildQueryContext(formData), + ); + + return expect( + chartClient.loadChartData({ + sliceId, + }), + ).resolves.toEqual({ + annotationData: {}, + datasource: { + name: 'transactions', + schema: 'staging', + }, + formData: { + granularity: 'minute', + viz_type: 'line', + datasource: '1__table', + color: 'living-coral', + }, + queriesData: [ + { + lorem: 'ipsum', + dolor: 'sit', + amet: true, + }, + ], + }); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/ChartDataProvider.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/ChartDataProvider.test.tsx new file mode 100644 index 000000000000..0f327d1156ab --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/ChartDataProvider.test.tsx @@ -0,0 +1,330 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { shallow } from 'enzyme'; +import ChartClient from '@superset-ui/core/src/chart/clients/ChartClient'; +import ChartDataProvider, { + Props, +} from '@superset-ui/core/src/chart/components/ChartDataProvider'; +import { bigNumberFormData } from '../fixtures/formData'; + +// Note: the mock implementation of these function directly affects the expected results below +const defaultMockLoadFormData = jest.fn(({ formData }: { formData: unknown }) => + Promise.resolve(formData), +); + +type MockLoadFormData = + | typeof defaultMockLoadFormData + | jest.Mock, unknown[]>; + +let mockLoadFormData: MockLoadFormData = defaultMockLoadFormData; + +function createPromise(input: T) { + return Promise.resolve(input); +} + +function createArrayPromise(input: T) { + return Promise.resolve([input]); +} + +const mockLoadDatasource = jest.fn, unknown[]>(createPromise); +const mockLoadQueryData = jest.fn, unknown[]>( + createArrayPromise, +); + +// ChartClient is now a mock +jest.mock('@superset-ui/core/src/chart/clients/ChartClient', () => + jest.fn().mockImplementation(() => ({ + loadDatasource: mockLoadDatasource, + loadFormData: mockLoadFormData, + loadQueryData: mockLoadQueryData, + })), +); + +const ChartClientMock = ChartClient as jest.Mock; + +describe('ChartDataProvider', () => { + beforeEach(() => { + ChartClientMock.mockClear(); + + mockLoadFormData = defaultMockLoadFormData; + mockLoadFormData.mockClear(); + mockLoadDatasource.mockClear(); + mockLoadQueryData.mockClear(); + }); + + const props: Props = { + formData: { ...bigNumberFormData }, + children: () =>
, + }; + + function setup(overrideProps?: Partial) { + return shallow(); + } + + it('instantiates a new ChartClient()', () => { + setup(); + expect(ChartClientMock).toHaveBeenCalledTimes(1); + }); + + describe('ChartClient.loadFormData', () => { + it('calls method on mount', () => { + setup(); + expect(mockLoadFormData.mock.calls).toHaveLength(1); + expect(mockLoadFormData.mock.calls[0][0]).toEqual({ + sliceId: props.sliceId, + formData: props.formData, + }); + }); + + it('should pass formDataRequestOptions to ChartClient.loadFormData', () => { + const options = { host: 'override' }; + setup({ formDataRequestOptions: options }); + expect(mockLoadFormData.mock.calls).toHaveLength(1); + expect(mockLoadFormData.mock.calls[0][1]).toEqual(options); + }); + + it('calls ChartClient.loadFormData when formData or sliceId change', () => { + const wrapper = setup(); + const newProps = { sliceId: 123, formData: undefined }; + expect(mockLoadFormData.mock.calls).toHaveLength(1); + + wrapper.setProps(newProps); + expect(mockLoadFormData.mock.calls).toHaveLength(2); + expect(mockLoadFormData.mock.calls[1][0]).toEqual(newProps); + }); + }); + + describe('ChartClient.loadDatasource', () => { + it('does not method if loadDatasource is false', () => + new Promise(done => { + expect.assertions(1); + setup({ loadDatasource: false }); + setTimeout(() => { + expect(mockLoadDatasource.mock.calls).toHaveLength(0); + done(); + }, 0); + })); + + it('calls method on mount if loadDatasource is true', () => + new Promise(done => { + expect.assertions(2); + setup({ loadDatasource: true }); + setTimeout(() => { + expect(mockLoadDatasource.mock.calls).toHaveLength(1); + expect(mockLoadDatasource.mock.calls[0][0]).toEqual( + props.formData.datasource, + ); + done(); + }, 0); + })); + + it('should pass datasourceRequestOptions to ChartClient.loadDatasource', () => + new Promise(done => { + expect.assertions(2); + const options = { host: 'override' }; + setup({ loadDatasource: true, datasourceRequestOptions: options }); + setTimeout(() => { + expect(mockLoadDatasource.mock.calls).toHaveLength(1); + expect(mockLoadDatasource.mock.calls[0][1]).toEqual(options); + done(); + }, 0); + })); + + it('calls ChartClient.loadDatasource if loadDatasource is true and formData or sliceId change', () => + new Promise(done => { + expect.assertions(3); + const newDatasource = 'test'; + const wrapper = setup({ loadDatasource: true }); + wrapper.setProps({ + formData: { datasource: newDatasource }, + sliceId: undefined, + }); + + setTimeout(() => { + expect(mockLoadDatasource.mock.calls).toHaveLength(2); + expect(mockLoadDatasource.mock.calls[0][0]).toEqual( + props.formData.datasource, + ); + expect(mockLoadDatasource.mock.calls[1][0]).toEqual(newDatasource); + done(); + }, 0); + })); + }); + + describe('ChartClient.loadQueryData', () => { + it('calls method on mount', () => + new Promise(done => { + expect.assertions(2); + setup(); + setTimeout(() => { + expect(mockLoadQueryData.mock.calls).toHaveLength(1); + expect(mockLoadQueryData.mock.calls[0][0]).toEqual(props.formData); + done(); + }, 0); + })); + + it('should pass queryDataRequestOptions to ChartClient.loadQueryData', () => + new Promise(done => { + expect.assertions(2); + const options = { host: 'override' }; + setup({ queryRequestOptions: options }); + setTimeout(() => { + expect(mockLoadQueryData.mock.calls).toHaveLength(1); + expect(mockLoadQueryData.mock.calls[0][1]).toEqual(options); + done(); + }, 0); + })); + + it('calls ChartClient.loadQueryData when formData or sliceId change', () => + new Promise(done => { + expect.assertions(3); + const newFormData = { key: 'test' }; + const wrapper = setup(); + wrapper.setProps({ formData: newFormData, sliceId: undefined }); + + setTimeout(() => { + expect(mockLoadQueryData.mock.calls).toHaveLength(2); + expect(mockLoadQueryData.mock.calls[0][0]).toEqual(props.formData); + expect(mockLoadQueryData.mock.calls[1][0]).toEqual(newFormData); + done(); + }, 0); + })); + }); + + describe('children', () => { + it('calls children({ loading: true }) when loading', () => { + const children = jest.fn(); + setup({ children }); + + // during the first tick (before more promises resolve) loading is true + expect(children.mock.calls).toHaveLength(1); + expect(children.mock.calls[0][0]).toEqual({ loading: true }); + }); + + it('calls children({ payload }) when loaded', () => + new Promise(done => { + expect.assertions(2); + const children = jest.fn(); + setup({ children, loadDatasource: true }); + + setTimeout(() => { + expect(children.mock.calls).toHaveLength(2); + expect(children.mock.calls[1][0]).toEqual({ + payload: { + formData: props.formData, + datasource: props.formData.datasource, + queriesData: [props.formData], + }, + }); + done(); + }, 0); + })); + + it('calls children({ error }) upon request error', () => + new Promise(done => { + expect.assertions(2); + const children = jest.fn(); + mockLoadFormData = jest.fn(() => Promise.reject(new Error('error'))); + + setup({ children }); + + setTimeout(() => { + expect(children.mock.calls).toHaveLength(2); // loading + error + expect(children.mock.calls[1][0]).toEqual({ + error: new Error('error'), + }); + done(); + }, 0); + })); + + it('calls children({ error }) upon JS error', () => + new Promise(done => { + expect.assertions(2); + const children = jest.fn(); + + mockLoadFormData = jest.fn(() => { + throw new Error('non-async error'); + }); + + setup({ children }); + + setTimeout(() => { + expect(children.mock.calls).toHaveLength(2); // loading + error + expect(children.mock.calls[1][0]).toEqual({ + error: new Error('non-async error'), + }); + done(); + }, 0); + })); + }); + + describe('callbacks', () => { + it('calls onLoad(payload) when loaded', () => + new Promise(done => { + expect.assertions(2); + const onLoaded = jest.fn(); + setup({ onLoaded, loadDatasource: true }); + + setTimeout(() => { + expect(onLoaded.mock.calls).toHaveLength(1); + expect(onLoaded.mock.calls[0][0]).toEqual({ + formData: props.formData, + datasource: props.formData.datasource, + queriesData: [props.formData], + }); + done(); + }, 0); + })); + + it('calls onError(error) upon request error', () => + new Promise(done => { + expect.assertions(2); + const onError = jest.fn(); + mockLoadFormData = jest.fn(() => Promise.reject(new Error('error'))); + + setup({ onError }); + setTimeout(() => { + expect(onError.mock.calls).toHaveLength(1); + expect(onError.mock.calls[0][0]).toEqual(new Error('error')); + done(); + }, 0); + })); + + it('calls onError(error) upon JS error', () => + new Promise(done => { + expect.assertions(2); + const onError = jest.fn(); + + mockLoadFormData = jest.fn(() => { + throw new Error('non-async error'); + }); + + setup({ onError }); + setTimeout(() => { + expect(onError.mock.calls).toHaveLength(1); + expect(onError.mock.calls[0][0]).toEqual( + new Error('non-async error'), + ); + done(); + }, 0); + })); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/FallbackComponent.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/FallbackComponent.test.tsx new file mode 100644 index 000000000000..ef47e11410ed --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/FallbackComponent.test.tsx @@ -0,0 +1,59 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { shallow } from 'enzyme'; +import FallbackComponent from '@superset-ui/core/src/chart/components/FallbackComponent'; + +describe('FallbackComponent', () => { + const ERROR = new Error('CaffeineOverLoadException'); + const STACK_TRACE = 'Error at line 1: x.drink(coffee)'; + + it('renders error and stack trace', () => { + const wrapper = shallow( + , + ); + const messages = wrapper.find('code'); + expect(messages).toHaveLength(2); + expect(messages.at(0).text()).toEqual('Error: CaffeineOverLoadException'); + expect(messages.at(1).text()).toEqual('Error at line 1: x.drink(coffee)'); + }); + + it('renders error only', () => { + const wrapper = shallow(); + const messages = wrapper.find('code'); + expect(messages).toHaveLength(1); + expect(messages.at(0).text()).toEqual('Error: CaffeineOverLoadException'); + }); + + it('renders stacktrace only', () => { + const wrapper = shallow(); + const messages = wrapper.find('code'); + expect(messages).toHaveLength(2); + expect(messages.at(0).text()).toEqual('Unknown Error'); + expect(messages.at(1).text()).toEqual('Error at line 1: x.drink(coffee)'); + }); + + it('renders when nothing is given', () => { + const wrapper = shallow(); + const messages = wrapper.find('code'); + expect(messages).toHaveLength(1); + expect(messages.at(0).text()).toEqual('Unknown Error'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/MockChartPlugins.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/MockChartPlugins.tsx new file mode 100644 index 000000000000..a0b522001851 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/MockChartPlugins.tsx @@ -0,0 +1,139 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable max-classes-per-file */ +import React from 'react'; +import { QueryFormData } from '@superset-ui/core'; +import { ChartMetadata, ChartPlugin } from '@superset-ui/core/src/chart'; + +const DIMENSION_STYLE = { + fontSize: 36, + fontWeight: 700, + flex: '1 1 auto', + display: 'flex', + alignItems: 'center', +}; + +export const TestComponent = ({ + formData, + message, + width, + height, +}: { + formData?: unknown; + message?: string; + width?: number; + height?: number; +}) => ( +
+
+ {message ?? 'custom component'} +
+
+ {[width, height].join('x')} +
+
+ {JSON.stringify(formData)} +
+
+); + +export const ChartKeys = { + DILIGENT: 'diligent-chart', + LAZY: 'lazy-chart', + SLOW: 'slow-chart', + BUGGY: 'buggy-chart', +}; + +export class DiligentChartPlugin extends ChartPlugin { + constructor() { + super({ + metadata: new ChartMetadata({ + name: ChartKeys.DILIGENT, + thumbnail: '', + }), + Chart: TestComponent, + transformProps: x => x, + }); + } +} + +function identity(x: T) { + return x; +} + +export class LazyChartPlugin extends ChartPlugin { + constructor() { + super({ + metadata: new ChartMetadata({ + name: ChartKeys.LAZY, + thumbnail: '', + }), + // this mirrors `() => import(module)` syntax + loadChart: () => Promise.resolve({ default: TestComponent }), + // promise without .default + loadTransformProps: () => Promise.resolve(identity), + }); + } +} + +export class SlowChartPlugin extends ChartPlugin { + constructor() { + super({ + metadata: new ChartMetadata({ + name: ChartKeys.SLOW, + thumbnail: '', + }), + loadChart: () => + new Promise(resolve => { + setTimeout(() => { + resolve(TestComponent); + }, 1000); + }), + transformProps: x => x, + }); + } +} + +export class BuggyChartPlugin extends ChartPlugin { + constructor() { + super({ + metadata: new ChartMetadata({ + name: ChartKeys.BUGGY, + thumbnail: '', + }), + Chart: () => { + throw new Error('The component is too buggy to render.'); + }, + transformProps: x => x, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/NoResultsComponent.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/NoResultsComponent.test.tsx new file mode 100644 index 000000000000..3a2ace08f6b9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/NoResultsComponent.test.tsx @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { shallow } from 'enzyme'; +import NoResultsComponent from '@superset-ui/core/src/chart/components/NoResultsComponent'; +import { configure } from '@superset-ui/core/src'; + +configure(); + +describe('NoResultsComponent', () => { + it('renders the no results error', () => { + const wrapper = shallow(); + + expect(wrapper.text()).toEqual( + 'No ResultsNo results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.', + ); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/SuperChart.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/SuperChart.test.tsx new file mode 100644 index 000000000000..b5b833ca01ff --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/SuperChart.test.tsx @@ -0,0 +1,423 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { mount } from 'enzyme'; +import mockConsole, { RestoreConsole } from 'jest-mock-console'; + +import { triggerResizeObserver } from 'resize-observer-polyfill'; +import ErrorBoundary from 'react-error-boundary'; +import { promiseTimeout } from '@superset-ui/core'; +import { SuperChart } from '@superset-ui/core/src/chart'; +import RealSuperChart, { + WrapperProps, +} from '@superset-ui/core/src/chart/components/SuperChart'; +import NoResultsComponent from '@superset-ui/core/src/chart/components/NoResultsComponent'; + +import { + ChartKeys, + DiligentChartPlugin, + BuggyChartPlugin, +} from './MockChartPlugins'; + +const DEFAULT_QUERY_DATA = { data: ['foo', 'bar'] }; +const DEFAULT_QUERIES_DATA = [ + { data: ['foo', 'bar'] }, + { data: ['foo2', 'bar2'] }, +]; + +function expectDimension( + renderedWrapper: Cheerio, + width: number, + height: number, +) { + expect(renderedWrapper.find('.dimension').text()).toEqual( + [width, height].join('x'), + ); +} + +describe('SuperChart', () => { + const plugins = [ + new DiligentChartPlugin().configure({ key: ChartKeys.DILIGENT }), + new BuggyChartPlugin().configure({ key: ChartKeys.BUGGY }), + ]; + + let restoreConsole: RestoreConsole; + + beforeAll(() => { + plugins.forEach(p => { + p.unregister().register(); + }); + }); + + afterAll(() => { + plugins.forEach(p => { + p.unregister(); + }); + }); + + beforeEach(() => { + restoreConsole = mockConsole(); + }); + + afterEach(() => { + restoreConsole(); + }); + + describe('includes ErrorBoundary', () => { + let expectedErrors = 0; + let actualErrors = 0; + function onError(e: Event) { + e.preventDefault(); + actualErrors += 1; + } + + beforeEach(() => { + expectedErrors = 0; + actualErrors = 0; + window.addEventListener('error', onError); + }); + + afterEach(() => { + window.removeEventListener('error', onError); + // eslint-disable-next-line jest/no-standalone-expect + expect(actualErrors).toBe(expectedErrors); + expectedErrors = 0; + }); + + it('renders default FallbackComponent', () => { + expectedErrors = 1; + jest.spyOn(RealSuperChart.defaultProps, 'FallbackComponent'); + const wrapper = mount( + , + ); + const renderedWrapper = wrapper.render(); + + return promiseTimeout(() => { + expect(renderedWrapper.find('div.test-component')).toHaveLength(0); + expect( + RealSuperChart.defaultProps.FallbackComponent, + ).toHaveBeenCalledTimes(1); + }, 100); + }); + it('renders custom FallbackComponent', () => { + expectedErrors = 1; + const CustomFallbackComponent = jest.fn(() => ( +
Custom Fallback!
+ )); + const wrapper = mount( + , + ); + + return promiseTimeout(() => { + expect(wrapper.render().find('div.test-component')).toHaveLength(0); + expect(CustomFallbackComponent).toHaveBeenCalledTimes(1); + }); + }); + it('call onErrorBoundary', () => { + expectedErrors = 1; + const handleError = jest.fn(); + mount( + , + ); + + return promiseTimeout(() => { + expect(handleError).toHaveBeenCalledTimes(1); + }); + }); + it('does not include ErrorBoundary if told so', () => { + expectedErrors = 1; + const inactiveErrorHandler = jest.fn(); + const activeErrorHandler = jest.fn(); + mount( + + + , + ); + + return promiseTimeout(() => { + expect(activeErrorHandler).toHaveBeenCalledTimes(1); + expect(inactiveErrorHandler).toHaveBeenCalledTimes(0); + }); + }); + }); + + it('passes the props to renderer correctly', () => { + const wrapper = mount( + , + ); + + return promiseTimeout(() => { + const renderedWrapper = wrapper.render(); + expect(renderedWrapper.find('div.test-component')).toHaveLength(1); + expectDimension(renderedWrapper, 101, 118); + }); + }); + + it('passes the props with multiple queries to renderer correctly', () => { + const wrapper = mount( + , + ); + + return promiseTimeout(() => { + const renderedWrapper = wrapper.render(); + expect(renderedWrapper.find('div.test-component')).toHaveLength(1); + expectDimension(renderedWrapper, 101, 118); + }); + }); + + it('passes the props with multiple queries and single query to renderer correctly (backward compatibility)', () => { + const wrapper = mount( + , + ); + + return promiseTimeout(() => { + const renderedWrapper = wrapper.render(); + expect(renderedWrapper.find('div.test-component')).toHaveLength(1); + expectDimension(renderedWrapper, 101, 118); + }); + }); + + describe('supports NoResultsComponent', () => { + it('renders NoResultsComponent when queriesData is missing', () => { + const wrapper = mount( + , + ); + + expect(wrapper.find(NoResultsComponent)).toHaveLength(1); + }); + + it('renders NoResultsComponent when queriesData data is null', () => { + const wrapper = mount( + , + ); + + expect(wrapper.find(NoResultsComponent)).toHaveLength(1); + }); + }); + + describe('supports dynamic width and/or height', () => { + it('works with width and height that are numbers', () => { + const wrapper = mount( + , + ); + + return promiseTimeout(() => { + const renderedWrapper = wrapper.render(); + expect(renderedWrapper.find('div.test-component')).toHaveLength(1); + expectDimension(renderedWrapper, 100, 100); + }); + }); + it('works when width and height are percent', () => { + const wrapper = mount( + , + ); + triggerResizeObserver(); + + return promiseTimeout(() => { + const renderedWrapper = wrapper.render(); + expect(renderedWrapper.find('div.test-component')).toHaveLength(1); + expectDimension(renderedWrapper, 300, 300); + }, 100); + }); + it('works when only width is percent', () => { + const wrapper = mount( + , + ); + triggerResizeObserver([{ contentRect: { height: 125, width: 150 } }]); + + return promiseTimeout(() => { + const renderedWrapper = wrapper.render(); + const boundingBox = renderedWrapper + .find('div.test-component') + .parent() + .parent() + .parent(); + expect(boundingBox.css('width')).toEqual('50%'); + expect(boundingBox.css('height')).toEqual('125px'); + expect(renderedWrapper.find('div.test-component')).toHaveLength(1); + expectDimension(renderedWrapper, 150, 125); + }, 100); + }); + it('works when only height is percent', () => { + const wrapper = mount( + , + ); + triggerResizeObserver([{ contentRect: { height: 75, width: 50 } }]); + + return promiseTimeout(() => { + const renderedWrapper = wrapper.render(); + const boundingBox = renderedWrapper + .find('div.test-component') + .parent() + .parent() + .parent(); + expect(boundingBox.css('width')).toEqual('50px'); + expect(boundingBox.css('height')).toEqual('25%'); + expect(renderedWrapper.find('div.test-component')).toHaveLength(1); + expectDimension(renderedWrapper, 50, 75); + }, 100); + }); + it('works when width and height are not specified', () => { + const wrapper = mount( + , + ); + triggerResizeObserver(); + + return promiseTimeout(() => { + const renderedWrapper = wrapper.render(); + expect(renderedWrapper.find('div.test-component')).toHaveLength(1); + expectDimension(renderedWrapper, 300, 400); + }, 100); + }); + }); + + describe('supports Wrapper', () => { + function MyWrapper({ width, height, children }: WrapperProps) { + return ( +
+
+ {width}x{height} +
+ {children} +
+ ); + } + + it('works with width and height that are numbers', () => { + const wrapper = mount( + , + ); + + return promiseTimeout(() => { + const renderedWrapper = wrapper.render(); + expect(renderedWrapper.find('div.wrapper-insert')).toHaveLength(1); + expect(renderedWrapper.find('div.wrapper-insert').text()).toEqual( + '100x100', + ); + expect(renderedWrapper.find('div.test-component')).toHaveLength(1); + expectDimension(renderedWrapper, 100, 100); + }, 100); + }); + + it('works when width and height are percent', () => { + const wrapper = mount( + , + ); + triggerResizeObserver(); + + return promiseTimeout(() => { + const renderedWrapper = wrapper.render(); + expect(renderedWrapper.find('div.wrapper-insert')).toHaveLength(1); + expect(renderedWrapper.find('div.wrapper-insert').text()).toEqual( + '300x300', + ); + expect(renderedWrapper.find('div.test-component')).toHaveLength(1); + expectDimension(renderedWrapper, 300, 300); + }, 100); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/SuperChartCore.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/SuperChartCore.test.tsx new file mode 100644 index 000000000000..bad750bb2ecc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/SuperChartCore.test.tsx @@ -0,0 +1,210 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { mount, shallow } from 'enzyme'; +import { promiseTimeout } from '@superset-ui/core'; +import mockConsole, { RestoreConsole } from 'jest-mock-console'; + +import { ChartProps } from '@superset-ui/core/src/chart'; +import SuperChartCore from '@superset-ui/core/src/chart/components/SuperChartCore'; +import { + ChartKeys, + DiligentChartPlugin, + LazyChartPlugin, + SlowChartPlugin, +} from './MockChartPlugins'; + +describe('SuperChartCore', () => { + const chartProps = new ChartProps(); + + const plugins = [ + new DiligentChartPlugin().configure({ key: ChartKeys.DILIGENT }), + new LazyChartPlugin().configure({ key: ChartKeys.LAZY }), + new SlowChartPlugin().configure({ key: ChartKeys.SLOW }), + ]; + + let restoreConsole: RestoreConsole; + + beforeAll(() => { + plugins.forEach(p => { + p.unregister().register(); + }); + }); + + afterAll(() => { + plugins.forEach(p => { + p.unregister(); + }); + }); + + beforeEach(() => { + restoreConsole = mockConsole(); + }); + + afterEach(() => { + restoreConsole(); + }); + + describe('registered charts', () => { + it('renders registered chart', () => { + const wrapper = shallow( + , + ); + + return promiseTimeout(() => { + expect(wrapper.render().find('div.test-component')).toHaveLength(1); + }); + }); + it('renders registered chart with lazy loading', () => { + const wrapper = shallow(); + + return promiseTimeout(() => { + expect(wrapper.render().find('div.test-component')).toHaveLength(1); + }); + }); + it('does not render if chartType is not set', () => { + // Suppress warning + // @ts-ignore chartType is required + const wrapper = shallow(); + + return promiseTimeout(() => { + expect(wrapper.render().children()).toHaveLength(0); + }, 5); + }); + it('adds id to container if specified', () => { + const wrapper = shallow( + , + ); + + return promiseTimeout(() => { + expect(wrapper.render().attr('id')).toEqual('the-chart'); + }); + }); + it('adds class to container if specified', () => { + const wrapper = shallow( + , + ); + + return promiseTimeout(() => { + expect(wrapper.hasClass('the-chart')).toBeTruthy(); + }, 0); + }); + it('uses overrideTransformProps when specified', () => { + const wrapper = shallow( + ({ message: 'hulk' })} + />, + ); + + return promiseTimeout(() => { + expect(wrapper.render().find('.message').text()).toEqual('hulk'); + }); + }); + it('uses preTransformProps when specified', () => { + const chartPropsWithPayload = new ChartProps({ + queriesData: [{ message: 'hulk' }], + }); + const wrapper = shallow( + chartPropsWithPayload} + overrideTransformProps={props => props.queriesData[0]} + />, + ); + + return promiseTimeout(() => { + expect(wrapper.render().find('.message').text()).toEqual('hulk'); + }); + }); + it('uses postTransformProps when specified', () => { + const wrapper = shallow( + ({ message: 'hulk' })} + />, + ); + + return promiseTimeout(() => { + expect(wrapper.render().find('.message').text()).toEqual('hulk'); + }); + }); + it('renders if chartProps is not specified', () => { + const wrapper = shallow( + , + ); + + return promiseTimeout(() => { + expect(wrapper.render().find('div.test-component')).toHaveLength(1); + }); + }); + it('does not render anything while waiting for Chart code to load', () => { + const wrapper = shallow(); + + return promiseTimeout(() => { + expect(wrapper.render().children()).toHaveLength(0); + }); + }); + it('eventually renders after Chart is loaded', () => { + // Suppress warning + const wrapper = mount(); + + return promiseTimeout(() => { + expect(wrapper.render().find('div.test-component')).toHaveLength(1); + }, 1500); + }); + it('does not render if chartProps is null', () => { + const wrapper = shallow( + , + ); + + return promiseTimeout(() => { + expect(wrapper.render().find('div.test-component')).toHaveLength(0); + }); + }); + }); + + describe('unregistered charts', () => { + it('renders error message', () => { + const wrapper = mount( + , + ); + + return promiseTimeout(() => { + expect(wrapper.render().find('.alert')).toHaveLength(1); + }); + }); + }); + + describe('.processChartProps()', () => { + it('use identity functions for unspecified transforms', () => { + const chart = new SuperChartCore({ + chartType: ChartKeys.DILIGENT, + }); + const chartProps2 = new ChartProps(); + expect(chart.processChartProps({ chartProps: chartProps2 })).toBe( + chartProps2, + ); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/createLoadableRenderer.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/createLoadableRenderer.test.tsx new file mode 100644 index 000000000000..190d66f80a1a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/createLoadableRenderer.test.tsx @@ -0,0 +1,155 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { shallow } from 'enzyme'; +import mockConsole, { RestoreConsole } from 'jest-mock-console'; +import createLoadableRenderer, { + LoadableRenderer as LoadableRendererType, +} from '@superset-ui/core/src/chart/components/createLoadableRenderer'; + +describe('createLoadableRenderer', () => { + function TestComponent() { + return
test
; + } + let loadChartSuccess = jest.fn(() => Promise.resolve(TestComponent)); + let render: (loaded: { Chart: React.ComponentType }) => JSX.Element; + let loading: () => JSX.Element; + let LoadableRenderer: LoadableRendererType<{}, {}>; + let restoreConsole: RestoreConsole; + + beforeEach(() => { + restoreConsole = mockConsole(); + loadChartSuccess = jest.fn(() => Promise.resolve(TestComponent)); + render = jest.fn(loaded => { + const { Chart } = loaded; + + return ; + }); + loading = jest.fn(() =>
Loading
); + + LoadableRenderer = createLoadableRenderer({ + loader: { + Chart: loadChartSuccess, + }, + loading, + render, + }); + }); + + afterEach(() => { + restoreConsole(); + }); + + describe('returns a LoadableRenderer class', () => { + it('LoadableRenderer.preload() preloads the lazy-load components', () => { + expect(LoadableRenderer.preload).toBeInstanceOf(Function); + LoadableRenderer.preload(); + expect(loadChartSuccess).toHaveBeenCalledTimes(1); + }); + + it('calls onRenderSuccess when succeeds', async () => { + const onRenderSuccess = jest.fn(); + const onRenderFailure = jest.fn(); + shallow( + , + ); + expect(loadChartSuccess).toHaveBeenCalled(); + jest.useRealTimers(); + await new Promise(resolve => setTimeout(resolve, 10)); + expect(render).toHaveBeenCalledTimes(1); + expect(onRenderSuccess).toHaveBeenCalledTimes(1); + expect(onRenderFailure).not.toHaveBeenCalled(); + }); + + it('calls onRenderFailure when fails', () => + new Promise(done => { + const loadChartFailure = jest.fn(() => + Promise.reject(new Error('Invalid chart')), + ); + const FailedRenderer = createLoadableRenderer({ + loader: { + Chart: loadChartFailure, + }, + loading, + render, + }); + const onRenderSuccess = jest.fn(); + const onRenderFailure = jest.fn(); + shallow( + , + ); + expect(loadChartFailure).toHaveBeenCalledTimes(1); + setTimeout(() => { + expect(render).not.toHaveBeenCalled(); + expect(onRenderSuccess).not.toHaveBeenCalled(); + expect(onRenderFailure).toHaveBeenCalledTimes(1); + done(); + }, 10); + })); + + it('onRenderFailure is optional', () => + new Promise(done => { + const loadChartFailure = jest.fn(() => + Promise.reject(new Error('Invalid chart')), + ); + const FailedRenderer = createLoadableRenderer({ + loader: { + Chart: loadChartFailure, + }, + loading, + render, + }); + shallow(); + expect(loadChartFailure).toHaveBeenCalledTimes(1); + setTimeout(() => { + expect(render).not.toHaveBeenCalled(); + done(); + }, 10); + })); + + it('renders the lazy-load components', () => + new Promise(done => { + const wrapper = shallow(); + // lazy-loaded component not rendered immediately + expect(wrapper.find(TestComponent)).toHaveLength(0); + setTimeout(() => { + // but rendered after the component is loaded. + expect(wrapper.find(TestComponent)).toHaveLength(1); + done(); + }, 10); + })); + + it('does not throw if loaders are empty', () => { + const NeverLoadingRenderer = createLoadableRenderer({ + loader: {}, + loading, + render: () =>
, + }); + + expect(() => shallow()).not.toThrow(); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/reactify.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/reactify.test.tsx new file mode 100644 index 000000000000..793ced806056 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/components/reactify.test.tsx @@ -0,0 +1,147 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import PropTypes from 'prop-types'; +import React from 'react'; +import { mount } from 'enzyme'; +import reactify, { + RenderFuncType, +} from '@superset-ui/core/src/chart/components/reactify'; + +describe('reactify(renderFn)', () => { + const renderFn: RenderFuncType<{ content?: string }> = jest.fn( + (element, props) => { + const container = element; + container.innerHTML = ''; + const child = document.createElement('b'); + child.innerHTML = props.content ?? ''; + container.append(child); + }, + ); + + renderFn.displayName = 'BoldText'; + + renderFn.propTypes = { + content: PropTypes.string, + }; + + renderFn.defaultProps = { + content: 'ghi', + }; + + const willUnmountCb = jest.fn(); + + const TheChart = reactify(renderFn); + const TheChartWithWillUnmountHook = reactify(renderFn, { + componentWillUnmount: willUnmountCb, + }); + + class TestComponent extends React.PureComponent<{}, { content: string }> { + constructor(props = {}) { + super(props); + this.state = { content: 'abc' }; + } + + componentDidMount() { + setTimeout(() => { + this.setState({ content: 'def' }); + }, 10); + } + + render() { + const { content } = this.state; + + return ; + } + } + + class AnotherTestComponent extends React.PureComponent<{}, {}> { + render() { + return ; + } + } + + it('returns a React component class', () => + new Promise(done => { + const wrapper = mount(); + + expect(renderFn).toHaveBeenCalledTimes(1); + expect(wrapper.html()).toEqual('
abc
'); + setTimeout(() => { + expect(renderFn).toHaveBeenCalledTimes(2); + expect(wrapper.html()).toEqual('
def
'); + wrapper.unmount(); + done(); + }, 20); + })); + describe('displayName', () => { + it('has displayName if renderFn.displayName is defined', () => { + expect(TheChart.displayName).toEqual('BoldText'); + }); + it('does not have displayName if renderFn.displayName is not defined', () => { + const AnotherChart = reactify(() => {}); + expect(AnotherChart.displayName).toBeUndefined(); + }); + }); + describe('propTypes', () => { + it('has propTypes if renderFn.propTypes is defined', () => { + /* eslint-disable-next-line react/forbid-foreign-prop-types */ + expect(Object.keys(TheChart.propTypes ?? {})).toEqual([ + 'id', + 'className', + 'content', + ]); + }); + it('does not have propTypes if renderFn.propTypes is not defined', () => { + const AnotherChart = reactify(() => {}); + /* eslint-disable-next-line react/forbid-foreign-prop-types */ + expect(Object.keys(AnotherChart.propTypes ?? {})).toEqual([ + 'id', + 'className', + ]); + }); + }); + describe('defaultProps', () => { + it('has defaultProps if renderFn.defaultProps is defined', () => { + expect(TheChart.defaultProps).toBe(renderFn.defaultProps); + const wrapper = mount(); + expect(wrapper.html()).toEqual('
ghi
'); + }); + it('does not have defaultProps if renderFn.defaultProps is not defined', () => { + const AnotherChart = reactify(() => {}); + expect(AnotherChart.defaultProps).toBeUndefined(); + }); + }); + it('does not try to render if not mounted', () => { + const anotherRenderFn = jest.fn(); + const AnotherChart = reactify(anotherRenderFn); // enables valid new AnotherChart() call + // @ts-ignore + new AnotherChart({ id: 'test' }).execute(); + expect(anotherRenderFn).not.toHaveBeenCalled(); + }); + it('calls willUnmount hook when it is provided', () => + new Promise(done => { + const wrapper = mount(); + setTimeout(() => { + wrapper.unmount(); + expect(willUnmountCb).toHaveBeenCalledTimes(1); + done(); + }, 20); + })); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/fixtures/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/fixtures/constants.ts new file mode 100644 index 000000000000..dc640ab9cf4b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/fixtures/constants.ts @@ -0,0 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export const LOGIN_GLOB = 'glob:*api/v1/security/csrf_token/*'; // eslint-disable-line import/prefer-default-export diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/fixtures/formData.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/fixtures/formData.ts new file mode 100644 index 000000000000..25d27f5e2d0c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/fixtures/formData.ts @@ -0,0 +1,83 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint sort-keys: 'off' */ +/** The form data defined here is based on default visualizations packaged with Apache Superset */ + +export const bigNumberFormData = { + datasource: '3__table', + viz_type: 'big_number', + slice_id: 54, + granularity_sqla: 'ds', + time_grain_sqla: 'P1D', + time_range: '100 years ago : now', + metric: 'sum__num', + adhoc_filters: [], + compare_lag: '5', + compare_suffix: 'over 5Y', + y_axis_format: '.3s', + show_trend_line: true, + start_y_axis_at_zero: true, +}; + +export const wordCloudFormData = { + datasource: '3__table', + viz_type: 'word_cloud', + slice_id: 60, + url_params: {}, + granularity_sqla: 'ds', + time_grain_sqla: 'P1D', + time_range: '100 years ago : now', + series: 'name', + metric: 'sum__num', + adhoc_filters: [], + row_limit: 50, + size_from: 10, + size_to: 70, + rotation: 'square', +}; + +export const sunburstFormData = { + datasource: '2__table', + viz_type: 'sunburst', + slice_id: 47, + url_params: {}, + granularity_sqla: 'year', + time_grain_sqla: 'P1D', + time_range: '2011-01-01 : 2011-01-01', + groupby: ['region', 'country_name'], + metric: 'sum__SP_POP_TOTL', + secondary_metric: 'sum__SP_RUR_TOTL', + adhoc_filters: [], + row_limit: 10000, +}; + +export const sankeyFormData = { + datasource: '1__table', + viz_type: 'sankey', + slice_id: 1, + url_params: {}, + granularity_sqla: null, + time_grain_sqla: 'P1D', + time_range: 'Last week', + groupby: ['source', 'target'], + metric: 'sum__value', + adhoc_filters: [], + row_limit: 1000, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/index.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/index.test.ts new file mode 100644 index 000000000000..1a71ffd09afc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/index.test.ts @@ -0,0 +1,50 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + ChartClient, + ChartMetadata, + ChartPlugin, + ChartProps, + createLoadableRenderer, + getChartBuildQueryRegistry, + getChartComponentRegistry, + getChartControlPanelRegistry, + getChartMetadataRegistry, + getChartTransformPropsRegistry, + reactify, +} from '@superset-ui/core/src/chart'; + +describe('index', () => { + it('exports modules', () => { + [ + ChartClient, + ChartMetadata, + ChartPlugin, + ChartProps, + createLoadableRenderer, + getChartBuildQueryRegistry, + getChartComponentRegistry, + getChartControlPanelRegistry, + getChartMetadataRegistry, + getChartTransformPropsRegistry, + reactify, + ].forEach(x => expect(x).toBeDefined()); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartMetadata.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartMetadata.test.ts new file mode 100644 index 000000000000..485c904295a1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartMetadata.test.ts @@ -0,0 +1,73 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import ChartMetadata from '@superset-ui/core/src/chart/models/ChartMetadata'; + +describe('ChartMetadata', () => { + it('exists', () => { + expect(ChartMetadata).toBeDefined(); + }); + describe('new ChartMetadata({})', () => { + it('creates new metadata instance', () => { + const metadata = new ChartMetadata({ + name: 'test chart', + credits: [], + description: 'some kind of chart', + thumbnail: 'test.png', + }); + expect(metadata).toBeInstanceOf(ChartMetadata); + }); + }); + describe('.canBeAnnotationType(type)', () => { + const metadata = new ChartMetadata({ + name: 'test chart', + canBeAnnotationTypes: ['event'], + credits: [], + description: 'some kind of chart', + thumbnail: 'test.png', + }); + it('returns true if can', () => { + expect(metadata.canBeAnnotationType('event')).toBeTruthy(); + }); + it('returns false otherwise', () => { + expect(metadata.canBeAnnotationType('invalid-type')).toBeFalsy(); + }); + }); + describe('.clone()', () => { + const metadata = new ChartMetadata({ + name: 'test chart', + canBeAnnotationTypes: ['event'], + credits: [], + description: 'some kind of chart', + thumbnail: 'test.png', + }); + const clone = metadata.clone(); + + it('returns a new instance', () => { + expect(metadata).not.toBe(clone); + }); + it('returns a new instance with same field values', () => { + expect(metadata.name).toEqual(clone.name); + expect(metadata.credits).toEqual(clone.credits); + expect(metadata.description).toEqual(clone.description); + expect(metadata.canBeAnnotationTypes).toEqual(clone.canBeAnnotationTypes); + expect(metadata.thumbnail).toEqual(clone.thumbnail); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartPlugin.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartPlugin.test.tsx new file mode 100644 index 000000000000..caf94107e60c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartPlugin.test.tsx @@ -0,0 +1,255 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { QueryFormData, DatasourceType } from '@superset-ui/core'; +import { + ChartPlugin, + ChartMetadata, + ChartProps, + BuildQueryFunction, + TransformProps, + getChartMetadataRegistry, + getChartComponentRegistry, + getChartTransformPropsRegistry, + getChartBuildQueryRegistry, + getChartControlPanelRegistry, +} from '@superset-ui/core/src/chart'; + +describe('ChartPlugin', () => { + const FakeChart = () => test; + + const metadata = new ChartMetadata({ + name: 'test-chart', + thumbnail: '', + }); + + const buildQuery = () => ({ + datasource: { id: 1, type: DatasourceType.Table }, + queries: [{ granularity: 'day' }], + force: false, + result_format: 'json', + result_type: 'full', + }); + + const controlPanel = { abc: 1 }; + + it('exists', () => { + expect(ChartPlugin).toBeDefined(); + }); + + describe('new ChartPlugin()', () => { + const FORM_DATA = { + datasource: '1__table', + granularity: 'day', + viz_type: 'table', + }; + + it('creates a new plugin', () => { + const plugin = new ChartPlugin({ + metadata, + Chart: FakeChart, + }); + expect(plugin).toBeInstanceOf(ChartPlugin); + }); + describe('buildQuery', () => { + it('defaults to undefined', () => { + const plugin = new ChartPlugin({ + metadata, + Chart: FakeChart, + }); + expect(plugin.loadBuildQuery).toBeUndefined(); + }); + it('uses loadBuildQuery field if specified', () => { + expect.assertions(2); + const plugin = new ChartPlugin({ + metadata, + Chart: FakeChart, + loadBuildQuery: () => buildQuery, + }); + + const fn = + plugin.loadBuildQuery!() as BuildQueryFunction; + expect(fn(FORM_DATA).queries[0]).toEqual({ granularity: 'day' }); + expect(fn(FORM_DATA).force).toEqual(false); + }); + it('uses buildQuery field if specified', () => { + expect.assertions(1); + const plugin = new ChartPlugin({ + metadata, + Chart: FakeChart, + buildQuery, + }); + + const fn = + plugin.loadBuildQuery!() as BuildQueryFunction; + expect(fn(FORM_DATA).queries[0]).toEqual({ granularity: 'day' }); + }); + }); + describe('Chart', () => { + it('uses loadChart if specified', () => { + const loadChart = () => FakeChart; + const plugin = new ChartPlugin({ + metadata, + loadChart, + }); + // the loader is sanitized, so assert on the value + expect(plugin.loadChart()).toBe(loadChart()); + }); + it('uses Chart field if specified', () => { + const plugin = new ChartPlugin({ + metadata, + Chart: FakeChart, + }); + expect(plugin.loadChart()).toEqual(FakeChart); + }); + it('throws an error if none of Chart or loadChart is specified', () => { + expect(() => new ChartPlugin({ metadata })).toThrow(Error); + }); + }); + describe('transformProps', () => { + const PROPS = new ChartProps({ + formData: FORM_DATA, + width: 400, + height: 400, + queriesData: [{}], + }); + it('defaults to identity function', () => { + const plugin = new ChartPlugin({ + metadata, + Chart: FakeChart, + }); + const fn = plugin.loadTransformProps() as TransformProps; + expect(fn(PROPS)).toBe(PROPS); + }); + it('uses loadTransformProps field if specified', () => { + const plugin = new ChartPlugin({ + metadata, + Chart: FakeChart, + loadTransformProps: () => () => ({ field2: 2 }), + }); + const fn = plugin.loadTransformProps() as TransformProps; + expect(fn(PROPS)).toEqual({ field2: 2 }); + }); + it('uses transformProps field if specified', () => { + const plugin = new ChartPlugin({ + metadata, + Chart: FakeChart, + transformProps: () => ({ field2: 2 }), + }); + const fn = plugin.loadTransformProps() as TransformProps; + expect(fn(PROPS)).toEqual({ field2: 2 }); + }); + }); + describe('controlPanel', () => { + it('takes controlPanel from input', () => { + const plugin = new ChartPlugin({ + metadata, + Chart: FakeChart, + controlPanel, + }); + expect(plugin.controlPanel).toBe(controlPanel); + }); + it('defaults to empty object', () => { + const plugin = new ChartPlugin({ + metadata, + Chart: FakeChart, + }); + expect(plugin.controlPanel).toEqual({}); + }); + }); + }); + + describe('.register()', () => { + let plugin: ChartPlugin; + + beforeEach(() => { + plugin = new ChartPlugin({ + metadata, + Chart: FakeChart, + buildQuery, + controlPanel, + }); + }); + + it('throws an error if key is not provided', () => { + expect(() => plugin.register()).toThrow(Error); + expect(() => plugin.configure({ key: 'ab' }).register()).not.toThrow( + Error, + ); + }); + it('add the plugin to the registries', () => { + plugin.configure({ key: 'cd' }).register(); + expect(getChartMetadataRegistry().get('cd')).toBe(metadata); + expect(getChartComponentRegistry().get('cd')).toBe(FakeChart); + expect(getChartTransformPropsRegistry().has('cd')).toEqual(true); + expect(getChartBuildQueryRegistry().get('cd')).toBe(buildQuery); + expect(getChartControlPanelRegistry().get('cd')).toBe(controlPanel); + }); + it('does not register buildQuery when it is not specified in the ChartPlugin', () => { + new ChartPlugin({ + metadata, + Chart: FakeChart, + }) + .configure({ key: 'ef' }) + .register(); + expect(getChartBuildQueryRegistry().has('ef')).toEqual(false); + }); + it('returns itself', () => { + expect(plugin.configure({ key: 'gh' }).register()).toBe(plugin); + }); + }); + + describe('.unregister()', () => { + let plugin: ChartPlugin; + + beforeEach(() => { + plugin = new ChartPlugin({ + metadata, + Chart: FakeChart, + buildQuery, + controlPanel, + }); + }); + + it('throws an error if key is not provided', () => { + expect(() => plugin.unregister()).toThrow(Error); + expect(() => plugin.configure({ key: 'abc' }).unregister()).not.toThrow( + Error, + ); + }); + it('removes the chart from the registries', () => { + plugin.configure({ key: 'def' }).register(); + expect(getChartMetadataRegistry().get('def')).toBe(metadata); + expect(getChartComponentRegistry().get('def')).toBe(FakeChart); + expect(getChartTransformPropsRegistry().has('def')).toEqual(true); + expect(getChartBuildQueryRegistry().get('def')).toBe(buildQuery); + expect(getChartControlPanelRegistry().get('def')).toBe(controlPanel); + plugin.unregister(); + expect(getChartMetadataRegistry().has('def')).toBeFalsy(); + expect(getChartComponentRegistry().has('def')).toBeFalsy(); + expect(getChartTransformPropsRegistry().has('def')).toBeFalsy(); + expect(getChartBuildQueryRegistry().has('def')).toBeFalsy(); + expect(getChartControlPanelRegistry().has('def')).toBeFalsy(); + }); + it('returns itself', () => { + expect(plugin.configure({ key: 'xyz' }).unregister()).toBe(plugin); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartProps.test.ts new file mode 100644 index 000000000000..a53381331624 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/chart/models/ChartProps.test.ts @@ -0,0 +1,142 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Behavior, ChartProps } from '@superset-ui/core/src'; + +const RAW_FORM_DATA = { + some_field: 1, +}; + +const RAW_DATASOURCE = { + column_formats: { test: '%s' }, +}; + +const QUERY_DATA = { data: {} }; +const QUERIES_DATA = [QUERY_DATA]; +const BEHAVIORS = [Behavior.NATIVE_FILTER, Behavior.INTERACTIVE_CHART]; + +describe('ChartProps', () => { + it('exists', () => { + expect(ChartProps).toBeDefined(); + }); + describe('new ChartProps({})', () => { + it('returns new instance', () => { + const props = new ChartProps({ + width: 800, + height: 600, + formData: RAW_FORM_DATA, + queriesData: QUERIES_DATA, + }); + expect(props).toBeInstanceOf(ChartProps); + }); + it('processes formData and datasource to convert field names to camelCase', () => { + const props = new ChartProps({ + width: 800, + height: 600, + datasource: RAW_DATASOURCE, + formData: RAW_FORM_DATA, + queriesData: QUERIES_DATA, + }); + expect(props.formData.someField as number).toEqual(1); + expect(props.datasource.columnFormats).toEqual( + RAW_DATASOURCE.column_formats, + ); + expect(props.rawFormData).toEqual(RAW_FORM_DATA); + expect(props.rawDatasource).toEqual(RAW_DATASOURCE); + }); + }); + describe('ChartProps.createSelector()', () => { + const selector = ChartProps.createSelector(); + it('returns a selector function', () => { + expect(selector).toBeInstanceOf(Function); + }); + it('selector returns previous chartProps if all input fields do not change', () => { + const props1 = selector({ + width: 800, + height: 600, + datasource: RAW_DATASOURCE, + formData: RAW_FORM_DATA, + queriesData: QUERIES_DATA, + behaviors: BEHAVIORS, + isRefreshing: false, + }); + const props2 = selector({ + width: 800, + height: 600, + datasource: RAW_DATASOURCE, + formData: RAW_FORM_DATA, + queriesData: QUERIES_DATA, + behaviors: BEHAVIORS, + isRefreshing: false, + }); + expect(props1).toBe(props2); + }); + it('selector returns a new chartProps if the 13th field changes', () => { + /** this test is here to test for selectors that exceed 12 arguments ( + * isRefreshing is the 13th argument, which is missing TS declarations). + * See: https://github.com/reduxjs/reselect/issues/378 + */ + + const props1 = selector({ + width: 800, + height: 600, + datasource: RAW_DATASOURCE, + formData: RAW_FORM_DATA, + queriesData: QUERIES_DATA, + behaviors: BEHAVIORS, + isRefreshing: false, + }); + const props2 = selector({ + width: 800, + height: 600, + datasource: RAW_DATASOURCE, + formData: RAW_FORM_DATA, + queriesData: QUERIES_DATA, + behaviors: BEHAVIORS, + isRefreshing: true, + }); + expect(props1).not.toBe(props2); + }); + it('selector returns a new chartProps if some input fields change', () => { + const props1 = selector({ + width: 800, + height: 600, + datasource: RAW_DATASOURCE, + formData: RAW_FORM_DATA, + queriesData: QUERIES_DATA, + }); + const props2 = selector({ + width: 800, + height: 600, + datasource: RAW_DATASOURCE, + formData: { new_field: 3 }, + queriesData: QUERIES_DATA, + }); + const props3 = selector({ + width: 800, + height: 600, + datasource: RAW_DATASOURCE, + formData: RAW_FORM_DATA, + queriesData: QUERIES_DATA, + }); + expect(props1).not.toBe(props2); + expect(props1).not.toBe(props3); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/CategoricalColorNameSpace.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/CategoricalColorNameSpace.test.ts new file mode 100644 index 000000000000..fb3eb6d00215 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/CategoricalColorNameSpace.test.ts @@ -0,0 +1,161 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import CategoricalColorNamespace, { + getNamespace, + getScale, + getColor, + DEFAULT_NAMESPACE, +} from '@superset-ui/core/src/color/CategoricalColorNamespace'; +import getCategoricalSchemeRegistry from '@superset-ui/core/src/color/CategoricalSchemeRegistrySingleton'; +import CategoricalScheme from '@superset-ui/core/src/color/CategoricalScheme'; + +describe('CategoricalColorNamespace', () => { + beforeAll(() => { + getCategoricalSchemeRegistry() + .registerValue( + 'testColors', + new CategoricalScheme({ + id: 'testColors', + colors: ['red', 'green', 'blue'], + }), + ) + .registerValue( + 'testColors2', + new CategoricalScheme({ + id: 'testColors2', + colors: ['red', 'green', 'blue'], + }), + ); + }); + it('The class constructor cannot be accessed directly', () => { + expect(typeof CategoricalColorNamespace).not.toBe('Function'); + }); + describe('static getNamespace()', () => { + it('returns default namespace if name is not specified', () => { + const namespace = getNamespace(); + expect(namespace !== undefined).toBe(true); + expect(namespace.name).toBe(DEFAULT_NAMESPACE); + }); + it('returns namespace with specified name', () => { + const namespace = getNamespace('myNamespace'); + expect(namespace !== undefined).toBe(true); + expect(namespace.name).toBe('myNamespace'); + }); + it('returns existing instance if the name already exists', () => { + const ns1 = getNamespace('myNamespace'); + const ns2 = getNamespace('myNamespace'); + expect(ns1).toBe(ns2); + const ns3 = getNamespace(); + const ns4 = getNamespace(); + expect(ns3).toBe(ns4); + }); + }); + describe('.getScale()', () => { + it('returns a CategoricalColorScale from given scheme name', () => { + const namespace = getNamespace('test-get-scale1'); + const scale = namespace.getScale('testColors'); + expect(scale).toBeDefined(); + expect(scale.getColor('dog')).toBeDefined(); + }); + it('returns a scale when a schemeId is not specified and there is no default key', () => { + getCategoricalSchemeRegistry().clearDefaultKey(); + const namespace = getNamespace('new-space'); + const scale = namespace.getScale(); + expect(scale).toBeDefined(); + getCategoricalSchemeRegistry().setDefaultKey('testColors'); + }); + }); + describe('.setColor()', () => { + it('overwrites color for all CategoricalColorScales in this namespace', () => { + const namespace = getNamespace('test-set-scale1'); + namespace.setColor('dog', 'black'); + const scale = namespace.getScale('testColors'); + expect(scale.getColor('dog')).toBe('black'); + expect(scale.getColor('boy')).not.toBe('black'); + }); + it('can override forcedColors in each scale', () => { + const namespace = getNamespace('test-set-scale2'); + namespace.setColor('dog', 'black'); + const scale = namespace.getScale('testColors'); + scale.setColor('dog', 'pink'); + expect(scale.getColor('dog')).toBe('black'); + expect(scale.getColor('boy')).not.toBe('black'); + }); + it('does not affect scales in other namespaces', () => { + const ns1 = getNamespace('test-set-scale3.1'); + ns1.setColor('dog', 'black'); + const scale1 = ns1.getScale('testColors'); + const ns2 = getNamespace('test-set-scale3.2'); + const scale2 = ns2.getScale('testColors'); + expect(scale1.getColor('dog')).toBe('black'); + expect(scale2.getColor('dog')).not.toBe('black'); + }); + it('returns the namespace instance', () => { + const ns1 = getNamespace('test-set-scale3.1'); + const ns2 = ns1.setColor('dog', 'black'); + expect(ns1).toBe(ns2); + }); + it('should reset colors', () => { + const ns1 = getNamespace('test-set-scale3.1'); + ns1.setColor('dog', 'black'); + ns1.resetColors(); + expect(ns1.forcedItems).toMatchObject({}); + }); + }); + describe('static getScale()', () => { + it('getScale() returns a CategoricalColorScale with default scheme in default namespace', () => { + const scale = getScale(); + expect(scale).toBeDefined(); + const scale2 = getNamespace().getScale(); + expect(scale2).toBeDefined(); + }); + it('getScale(scheme) returns a CategoricalColorScale with specified scheme in default namespace', () => { + const scale = getNamespace().getScale('testColors'); + expect(scale).toBeDefined(); + }); + it('getScale(scheme, namespace) returns a CategoricalColorScale with specified scheme in specified namespace', () => { + const scale = getNamespace('test-getScale').getScale('testColors'); + expect(scale).toBeDefined(); + }); + }); + describe('static getColor()', () => { + it('getColor(value) returns a color from default scheme in default namespace', () => { + const value = 'dog'; + const color = getColor(value); + const color2 = getNamespace().getScale().getColor(value); + expect(color).toBe(color2); + }); + it('getColor(value, scheme) returns a color from specified scheme in default namespace', () => { + const value = 'dog'; + const scheme = 'testColors'; + const color = getColor(value, scheme); + const color2 = getNamespace().getScale(scheme).getColor(value); + expect(color).toBe(color2); + }); + it('getColor(value, scheme, namespace) returns a color from specified scheme in specified namespace', () => { + const value = 'dog'; + const scheme = 'testColors'; + const namespace = 'test-getColor'; + const color = getColor(value, scheme, namespace); + const color2 = getNamespace(namespace).getScale(scheme).getColor(value); + expect(color).toBe(color2); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/CategoricalColorScale.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/CategoricalColorScale.test.ts new file mode 100644 index 000000000000..e50e409cc663 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/CategoricalColorScale.test.ts @@ -0,0 +1,194 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ScaleOrdinal } from 'd3-scale'; +import CategoricalColorScale from '@superset-ui/core/src/color/CategoricalColorScale'; + +describe('CategoricalColorScale', () => { + it('exists', () => { + expect(CategoricalColorScale !== undefined).toBe(true); + }); + + describe('new CategoricalColorScale(colors, parentForcedColors)', () => { + it('can create new scale when parentForcedColors is not given', () => { + const scale = new CategoricalColorScale(['blue', 'red', 'green']); + expect(scale).toBeInstanceOf(CategoricalColorScale); + }); + it('can create new scale when parentForcedColors is given', () => { + const parentForcedColors = {}; + const scale = new CategoricalColorScale( + ['blue', 'red', 'green'], + parentForcedColors, + ); + expect(scale).toBeInstanceOf(CategoricalColorScale); + expect(scale.parentForcedColors).toBe(parentForcedColors); + }); + }); + describe('.getColor(value)', () => { + it('returns same color for same value', () => { + const scale = new CategoricalColorScale(['blue', 'red', 'green']); + const c1 = scale.getColor('pig'); + const c2 = scale.getColor('horse'); + const c3 = scale.getColor('pig'); + scale.getColor('cow'); + const c5 = scale.getColor('horse'); + + expect(c1).toBe(c3); + expect(c2).toBe(c5); + }); + it('returns different color for consecutive items', () => { + const scale = new CategoricalColorScale(['blue', 'red', 'green']); + const c1 = scale.getColor('pig'); + const c2 = scale.getColor('horse'); + const c3 = scale.getColor('cat'); + + expect(c1).not.toBe(c2); + expect(c2).not.toBe(c3); + expect(c3).not.toBe(c1); + }); + it('recycles colors when number of items exceed available colors', () => { + const colorSet: { [key: string]: number } = {}; + const scale = new CategoricalColorScale(['blue', 'red', 'green']); + const colors = [ + scale.getColor('pig'), + scale.getColor('horse'), + scale.getColor('cat'), + scale.getColor('cow'), + scale.getColor('donkey'), + scale.getColor('goat'), + ]; + colors.forEach(color => { + if (colorSet[color]) { + colorSet[color] += 1; + } else { + colorSet[color] = 1; + } + }); + expect(Object.keys(colorSet)).toHaveLength(3); + ['blue', 'red', 'green'].forEach(color => { + expect(colorSet[color]).toBe(2); + }); + }); + }); + describe('.setColor(value, forcedColor)', () => { + it('overrides default color', () => { + const scale = new CategoricalColorScale(['blue', 'red', 'green']); + scale.setColor('pig', 'pink'); + expect(scale.getColor('pig')).toBe('pink'); + }); + it('does not override parentForcedColors', () => { + const scale1 = new CategoricalColorScale(['blue', 'red', 'green']); + scale1.setColor('pig', 'black'); + const scale2 = new CategoricalColorScale( + ['blue', 'red', 'green'], + scale1.forcedColors, + ); + scale2.setColor('pig', 'pink'); + expect(scale1.getColor('pig')).toBe('black'); + expect(scale2.getColor('pig')).toBe('black'); + }); + it('returns the scale', () => { + const scale = new CategoricalColorScale(['blue', 'red', 'green']); + const output = scale.setColor('pig', 'pink'); + expect(scale).toBe(output); + }); + }); + describe('.getColorMap()', () => { + it('returns correct mapping and parentForcedColors and forcedColors are specified', () => { + const scale1 = new CategoricalColorScale(['blue', 'red', 'green']); + scale1.setColor('cow', 'black'); + const scale2 = new CategoricalColorScale( + ['blue', 'red', 'green'], + scale1.forcedColors, + ); + scale2.setColor('pig', 'pink'); + scale2.getColor('cow'); + scale2.getColor('pig'); + scale2.getColor('horse'); + expect(scale2.getColorMap()).toEqual({ + cow: 'black', + pig: 'pink', + horse: 'blue', + }); + }); + }); + + describe('.copy()', () => { + it('returns a copy', () => { + const scale = new CategoricalColorScale(['blue', 'red', 'green']); + const copy = scale.copy(); + expect(copy).not.toBe(scale); + expect(copy('cat')).toEqual(scale('cat')); + expect(copy.domain()).toEqual(scale.domain()); + expect(copy.range()).toEqual(scale.range()); + expect(copy.unknown()).toEqual(scale.unknown()); + }); + }); + describe('.domain()', () => { + it('when called without argument, returns domain', () => { + const scale = new CategoricalColorScale(['blue', 'red', 'green']); + scale.getColor('pig'); + expect(scale.domain()).toEqual(['pig']); + }); + it('when called with argument, sets domain', () => { + const scale = new CategoricalColorScale(['blue', 'red', 'green']); + scale.domain(['dog', 'pig', 'cat']); + expect(scale('pig')).toEqual('red'); + }); + }); + describe('.range()', () => { + it('when called without argument, returns range', () => { + const scale = new CategoricalColorScale(['blue', 'red', 'green']); + expect(scale.range()).toEqual(['blue', 'red', 'green']); + }); + it('when called with argument, sets range', () => { + const scale = new CategoricalColorScale(['blue', 'red', 'green']); + scale.range(['pink', 'gray', 'yellow']); + expect(scale.range()).toEqual(['pink', 'gray', 'yellow']); + }); + }); + describe('.unknown()', () => { + it('when called without argument, returns output for unknown value', () => { + const scale = new CategoricalColorScale(['blue', 'red', 'green']); + scale.unknown('#666'); + expect(scale.unknown()).toEqual('#666'); + }); + it('when called with argument, sets output for unknown value', () => { + const scale = new CategoricalColorScale(['blue', 'red', 'green']); + scale.unknown('#222'); + expect(scale.unknown()).toEqual('#222'); + }); + }); + + describe('a CategoricalColorScale instance is also a color function itself', () => { + it('scale(value) returns color similar to calling scale.getColor(value)', () => { + const scale = new CategoricalColorScale(['blue', 'red', 'green']); + expect(scale.getColor('pig')).toBe(scale('pig')); + expect(scale.getColor('cat')).toBe(scale('cat')); + }); + }); + + describe("is compatible with D3's ScaleOrdinal", () => { + it('passes type check', () => { + const scale: ScaleOrdinal<{ toString(): string }, string> = + new CategoricalColorScale(['blue', 'red', 'green']); + expect(scale('pig')).toBe('blue'); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/CategoricalSchemeRegistrySingleton.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/CategoricalSchemeRegistrySingleton.test.ts new file mode 100644 index 000000000000..02e378efa80b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/CategoricalSchemeRegistrySingleton.test.ts @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + CategoricalScheme, + getCategoricalSchemeRegistry, +} from '@superset-ui/core/src/color'; + +describe('CategoricalSchemeRegistry', () => { + it('has default value out-of-the-box', () => { + expect(getCategoricalSchemeRegistry().get()).toBeInstanceOf( + CategoricalScheme, + ); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/ColorScheme.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/ColorScheme.test.ts new file mode 100644 index 000000000000..8220f0ae4a6f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/ColorScheme.test.ts @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import ColorScheme from '@superset-ui/core/src/color/ColorScheme'; + +describe('ColorScheme', () => { + describe('new ColorScheme()', () => { + it('returns an instance of ColorScheme', () => { + const scheme = new ColorScheme({ id: 'test', colors: ['red', 'blue'] }); + expect(scheme).toBeInstanceOf(ColorScheme); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/ColorSchemeRegistry.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/ColorSchemeRegistry.test.ts new file mode 100644 index 000000000000..8a97d4f5b40d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/ColorSchemeRegistry.test.ts @@ -0,0 +1,27 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import ColorSchemeRegistry from '@superset-ui/core/src/color/ColorSchemeRegistry'; + +describe('ColorSchemeRegistry', () => { + it('exists', () => { + expect(ColorSchemeRegistry).toBeDefined(); + expect(ColorSchemeRegistry).toBeInstanceOf(Function); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/SequentialScheme.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/SequentialScheme.test.ts new file mode 100644 index 000000000000..5de951756ac0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/SequentialScheme.test.ts @@ -0,0 +1,117 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import SequentialScheme from '@superset-ui/core/src/color/SequentialScheme'; + +describe('SequentialScheme', () => { + const scheme = new SequentialScheme({ + id: 'white to black', + colors: ['#fff', '#000'], + }); + it('exists', () => { + expect(SequentialScheme).toBeDefined(); + }); + describe('new SequentialScheme()', () => { + it('creates new instance', () => { + const scheme2 = new SequentialScheme({ + id: 'white to black', + colors: ['#fff', '#000'], + }); + expect(scheme2).toBeInstanceOf(SequentialScheme); + }); + }); + describe('.createLinearScale(domain, modifyRange)', () => { + it('returns a piecewise scale', () => { + const scale = scheme.createLinearScale([10, 100]); + expect(scale.domain()).toHaveLength(scale.range().length); + const scale2 = scheme.createLinearScale([0, 10, 100]); + expect(scale2.domain()).toHaveLength(scale2.range().length); + }); + describe('domain', () => { + it('returns a linear scale for the given domain', () => { + const scale = scheme.createLinearScale([10, 100]); + expect(scale(1)).toEqual('rgb(255, 255, 255)'); + expect(scale(10)).toEqual('rgb(255, 255, 255)'); + expect(scale(55)).toEqual('rgb(119, 119, 119)'); + expect(scale(100)).toEqual('rgb(0, 0, 0)'); + expect(scale(1000)).toEqual('rgb(0, 0, 0)'); + }); + it('uses [0, 1] as domain if not specified', () => { + const scale = scheme.createLinearScale(); + expect(scale(-1)).toEqual('rgb(255, 255, 255)'); + expect(scale(0)).toEqual('rgb(255, 255, 255)'); + expect(scale(0.5)).toEqual('rgb(119, 119, 119)'); + expect(scale(1)).toEqual('rgb(0, 0, 0)'); + expect(scale(2)).toEqual('rgb(0, 0, 0)'); + }); + }); + describe('modifyRange', () => { + const scheme3 = new SequentialScheme({ + id: 'test-scheme3', + colors: ['#fee087', '#fa5c2e', '#800026'], + }); + it('modifies domain by default', () => { + const scale = scheme3.createLinearScale([0, 100]); + expect(scale.domain()).toEqual([0, 50, 100]); + expect(scale.range()).toEqual(['#fee087', '#fa5c2e', '#800026']); + }); + it('modifies range instead of domain if set to true', () => { + const scale = scheme3.createLinearScale([0, 100], true); + expect(scale.domain()).toEqual([0, 100]); + expect(scale.range()).toEqual([ + 'rgb(254, 224, 135)', + 'rgb(128, 0, 38)', + ]); + }); + }); + }); + describe('.getColors(numColors, extent)', () => { + describe('numColors', () => { + it('returns the original colors if numColors is not specified', () => { + expect(scheme.getColors()).toEqual(['#fff', '#000']); + }); + it('returns the exact number of colors if numColors is specified', () => { + expect(scheme.getColors(2)).toEqual(['#fff', '#000']); + expect(scheme.getColors(3)).toEqual([ + 'rgb(255, 255, 255)', + 'rgb(119, 119, 119)', + 'rgb(0, 0, 0)', + ]); + expect(scheme.getColors(4)).toEqual([ + 'rgb(255, 255, 255)', + 'rgb(162, 162, 162)', + 'rgb(78, 78, 78)', + 'rgb(0, 0, 0)', + ]); + }); + }); + describe('extent', () => { + it('adjust the range if extent is specified', () => { + expect(scheme.getColors(2, [0, 0.5])).toEqual([ + 'rgb(255, 255, 255)', + 'rgb(119, 119, 119)', + ]); + expect(scheme.getColors(2, [0.5, 1])).toEqual([ + 'rgb(119, 119, 119)', + 'rgb(0, 0, 0)', + ]); + }); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/SequentialSchemeRegistrySingleton.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/SequentialSchemeRegistrySingleton.test.ts new file mode 100644 index 000000000000..d367da408e74 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/SequentialSchemeRegistrySingleton.test.ts @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + SequentialScheme, + getSequentialSchemeRegistry, +} from '@superset-ui/core/src/color'; + +describe('SequentialSchemeRegistry', () => { + it('has default value out-of-the-box', () => { + expect(getSequentialSchemeRegistry().get()).toBeInstanceOf( + SequentialScheme, + ); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/colorSchemes.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/colorSchemes.test.ts new file mode 100644 index 000000000000..b1c08366f3bc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/colorSchemes.test.ts @@ -0,0 +1,61 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import categoricalAirbnb from '@superset-ui/core/src/color/colorSchemes/categorical/airbnb'; +import categoricalEcharts from '@superset-ui/core/src/color/colorSchemes/categorical/echarts'; +import categoricalSuperset from '@superset-ui/core/src/color/colorSchemes/categorical/superset'; +import categoricalPreset from '@superset-ui/core/src/color/colorSchemes/categorical/preset'; +import categoricalD3 from '@superset-ui/core/src/color/colorSchemes/categorical/d3'; +import categoricalGoogle from '@superset-ui/core/src/color/colorSchemes/categorical/google'; +import categoricalLyft from '@superset-ui/core/src/color/colorSchemes/categorical/lyft'; +import sequentialCommon from '@superset-ui/core/src/color/colorSchemes/sequential/common'; +import sequentialD3 from '@superset-ui/core/src/color/colorSchemes/sequential/d3'; +import CategoricalScheme from '@superset-ui/core/src/color/CategoricalScheme'; +import SequentialScheme from '@superset-ui/core/src/color/SequentialScheme'; + +describe('Color Schemes', () => { + describe('categorical', () => { + it('returns an array of CategoricalScheme', () => { + [ + categoricalAirbnb, + categoricalEcharts, + categoricalD3, + categoricalGoogle, + categoricalLyft, + categoricalSuperset, + categoricalPreset, + ].forEach(group => { + expect(group).toBeInstanceOf(Array); + group.forEach(scheme => + expect(scheme).toBeInstanceOf(CategoricalScheme), + ); + }); + }); + }); + describe('sequential', () => { + it('returns an array of SequentialScheme', () => { + [sequentialCommon, sequentialD3].forEach(group => { + expect(group).toBeInstanceOf(Array); + group.forEach(scheme => + expect(scheme).toBeInstanceOf(SequentialScheme), + ); + }); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/index.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/index.test.ts new file mode 100644 index 000000000000..23d12b060d5b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/index.test.ts @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + BRAND_COLOR, + CategoricalColorNamespace, + CategoricalColorScale, + CategoricalScheme, + getCategoricalSchemeRegistry, + getSequentialSchemeRegistry, + SequentialScheme, +} from '@superset-ui/core/src/color'; + +describe('index', () => { + it('exports modules', () => { + [ + BRAND_COLOR, + CategoricalColorNamespace, + CategoricalColorScale, + CategoricalScheme, + getCategoricalSchemeRegistry, + getSequentialSchemeRegistry, + SequentialScheme, + ].forEach(x => expect(x).toBeDefined()); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/utils.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/utils.test.ts new file mode 100644 index 000000000000..bf6db2708ce9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/color/utils.test.ts @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { getContrastingColor } from '@superset-ui/core/src/color'; + +describe('color utils', () => { + describe('getContrastingColor', () => { + it('when called with 3-digit hex color', () => { + const color = getContrastingColor('#000'); + expect(color).toBe('#FFF'); + }); + + it('when called with 6-digit hex color', () => { + const color = getContrastingColor('#000000'); + expect(color).toBe('#FFF'); + }); + + it('when called with no # prefix hex color', () => { + const color = getContrastingColor('000000'); + expect(color).toBe('#FFF'); + }); + + it('when called with rgb color', () => { + const color = getContrastingColor('rgb(0, 0, 0)'); + expect(color).toBe('#FFF'); + }); + + it('when called with thresholds', () => { + const color1 = getContrastingColor('rgb(255, 255, 255)'); + const color2 = getContrastingColor('rgb(255, 255, 255)', 255); + expect(color1).toBe('#000'); + expect(color2).toBe('#FFF'); + }); + + it('when called with rgba color, throw error', () => { + expect(() => { + getContrastingColor('rgba(0, 0, 0, 0.1)'); + }).toThrow(); + }); + + it('when called with invalid color, throw error', () => { + expect(() => { + getContrastingColor('#0000'); + }).toThrow(); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/SupersetClient.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/SupersetClient.test.ts new file mode 100644 index 000000000000..1296a8040c48 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/SupersetClient.test.ts @@ -0,0 +1,137 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import fetchMock from 'fetch-mock'; + +import { + SupersetClient, + SupersetClientClass, +} from '@superset-ui/core/src/connection'; +import { LOGIN_GLOB } from './fixtures/constants'; + +describe('SupersetClient', () => { + beforeAll(() => { + fetchMock.get(LOGIN_GLOB, { result: '' }); + }); + + afterAll(fetchMock.restore); + + afterEach(SupersetClient.reset); + + it('exposes reset, configure, init, get, post, isAuthenticated, and reAuthenticate methods', () => { + expect(typeof SupersetClient.configure).toBe('function'); + expect(typeof SupersetClient.init).toBe('function'); + expect(typeof SupersetClient.get).toBe('function'); + expect(typeof SupersetClient.post).toBe('function'); + expect(typeof SupersetClient.isAuthenticated).toBe('function'); + expect(typeof SupersetClient.reAuthenticate).toBe('function'); + expect(typeof SupersetClient.request).toBe('function'); + expect(typeof SupersetClient.reset).toBe('function'); + }); + + it('throws if you call init, get, post, isAuthenticated, or reAuthenticate before configure', () => { + expect(SupersetClient.init).toThrow(); + expect(SupersetClient.get).toThrow(); + expect(SupersetClient.post).toThrow(); + expect(SupersetClient.isAuthenticated).toThrow(); + expect(SupersetClient.reAuthenticate).toThrow(); + expect(SupersetClient.request).toThrow(); + expect(SupersetClient.configure).not.toThrow(); + }); + + // this also tests that the ^above doesn't throw if configure is called appropriately + it('calls appropriate SupersetClient methods when configured', async () => { + expect.assertions(15); + const mockGetUrl = '/mock/get/url'; + const mockPostUrl = '/mock/post/url'; + const mockRequestUrl = '/mock/request/url'; + const mockPutUrl = '/mock/put/url'; + const mockDeleteUrl = '/mock/delete/url'; + const mockGetPayload = { get: 'payload' }; + const mockPostPayload = { post: 'payload' }; + const mockDeletePayload = { delete: 'ok' }; + const mockPutPayload = { put: 'ok' }; + fetchMock.get(mockGetUrl, mockGetPayload); + fetchMock.post(mockPostUrl, mockPostPayload); + fetchMock.delete(mockDeleteUrl, mockDeletePayload); + fetchMock.put(mockPutUrl, mockPutPayload); + fetchMock.get(mockRequestUrl, mockGetPayload); + + const initSpy = jest.spyOn(SupersetClientClass.prototype, 'init'); + const getSpy = jest.spyOn(SupersetClientClass.prototype, 'get'); + const postSpy = jest.spyOn(SupersetClientClass.prototype, 'post'); + const putSpy = jest.spyOn(SupersetClientClass.prototype, 'put'); + const deleteSpy = jest.spyOn(SupersetClientClass.prototype, 'delete'); + const authenticatedSpy = jest.spyOn( + SupersetClientClass.prototype, + 'isAuthenticated', + ); + const csrfSpy = jest.spyOn(SupersetClientClass.prototype, 'getCSRFToken'); + const requestSpy = jest.spyOn(SupersetClientClass.prototype, 'request'); + + SupersetClient.configure({}); + await SupersetClient.init(); + + expect(initSpy).toHaveBeenCalledTimes(1); + expect(authenticatedSpy).toHaveBeenCalledTimes(2); + expect(csrfSpy).toHaveBeenCalledTimes(1); + + await SupersetClient.get({ url: mockGetUrl }); + await SupersetClient.post({ url: mockPostUrl }); + await SupersetClient.delete({ url: mockDeleteUrl }); + await SupersetClient.put({ url: mockPutUrl }); + await SupersetClient.request({ url: mockRequestUrl }); + + // Make sure network calls have Accept: 'application/json' in headers + const networkCalls = [ + mockGetUrl, + mockPostUrl, + mockRequestUrl, + mockPutUrl, + mockDeleteUrl, + ]; + networkCalls.map((url: string) => + expect(fetchMock.calls(url)[0][1]?.headers).toStrictEqual({ + Accept: 'application/json', + 'X-CSRFToken': '', + }), + ); + + SupersetClient.isAuthenticated(); + await SupersetClient.reAuthenticate(); + + expect(initSpy).toHaveBeenCalledTimes(2); + expect(deleteSpy).toHaveBeenCalledTimes(1); + expect(putSpy).toHaveBeenCalledTimes(1); + expect(getSpy).toHaveBeenCalledTimes(1); + expect(postSpy).toHaveBeenCalledTimes(1); + expect(requestSpy).toHaveBeenCalledTimes(5); // request rewires to get + expect(csrfSpy).toHaveBeenCalledTimes(2); // from init() + reAuthenticate() + + initSpy.mockRestore(); + getSpy.mockRestore(); + putSpy.mockRestore(); + deleteSpy.mockRestore(); + requestSpy.mockRestore(); + postSpy.mockRestore(); + authenticatedSpy.mockRestore(); + csrfSpy.mockRestore(); + + fetchMock.reset(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/SupersetClientClass.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/SupersetClientClass.test.ts new file mode 100644 index 000000000000..2edb0f46df83 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/SupersetClientClass.test.ts @@ -0,0 +1,482 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import fetchMock from 'fetch-mock'; +import { + SupersetClientClass, + ClientConfig, +} from '@superset-ui/core/src/connection'; +import { LOGIN_GLOB } from './fixtures/constants'; + +describe('SupersetClientClass', () => { + beforeAll(() => { + fetchMock.get(LOGIN_GLOB, { result: '' }); + }); + + afterAll(fetchMock.restore); + + describe('new SupersetClientClass()', () => { + it('fallback protocol to https when setting only host', () => { + const client = new SupersetClientClass({ host: 'TEST-HOST' }); + expect(client.baseUrl).toEqual('https://test-host'); + }); + }); + + describe('.getUrl()', () => { + let client = new SupersetClientClass(); + + beforeEach(() => { + client = new SupersetClientClass({ + protocol: 'https:', + host: 'CONFIG_HOST', + }); + }); + + it('uses url if passed', () => { + expect( + client.getUrl({ url: 'myUrl', endpoint: 'blah', host: 'blah' }), + ).toBe('myUrl'); + }); + + it('constructs a valid url from config.protocol + host + endpoint if passed', () => { + expect(client.getUrl({ endpoint: '/test', host: 'myhost' })).toBe( + 'https://myhost/test', + ); + expect(client.getUrl({ endpoint: '/test', host: 'myhost/' })).toBe( + 'https://myhost/test', + ); + expect(client.getUrl({ endpoint: 'test', host: 'myhost' })).toBe( + 'https://myhost/test', + ); + expect(client.getUrl({ endpoint: '/test/test//', host: 'myhost/' })).toBe( + 'https://myhost/test/test//', + ); + }); + + it('constructs a valid url from config.host + endpoint if host is omitted', () => { + expect(client.getUrl({ endpoint: '/test' })).toBe( + 'https://config_host/test', + ); + }); + + it('does not throw if url, endpoint, and host are all empty', () => { + client = new SupersetClientClass({ protocol: 'https:', host: '' }); + expect(client.getUrl()).toBe('https://localhost/'); + }); + }); + + describe('.init()', () => { + afterEach(() => { + fetchMock.reset(); + // reset + fetchMock.get(LOGIN_GLOB, { result: 1234 }, { overwriteRoutes: true }); + }); + + it('calls api/v1/security/csrf_token/ when init() is called if no CSRF token is passed', async () => { + expect.assertions(1); + await new SupersetClientClass().init(); + expect(fetchMock.calls(LOGIN_GLOB)).toHaveLength(1); + }); + + it('does NOT call api/v1/security/csrf_token/ when init() is called if a CSRF token is passed', async () => { + expect.assertions(1); + await new SupersetClientClass({ csrfToken: 'abc' }).init(); + expect(fetchMock.calls(LOGIN_GLOB)).toHaveLength(0); + }); + + it('calls api/v1/security/csrf_token/ when init(force=true) is called even if a CSRF token is passed', async () => { + expect.assertions(4); + const initialToken = 'initial_token'; + const client = new SupersetClientClass({ csrfToken: initialToken }); + + await client.init(); + expect(fetchMock.calls(LOGIN_GLOB)).toHaveLength(0); + expect(client.csrfToken).toBe(initialToken); + + await client.init(true); + expect(fetchMock.calls(LOGIN_GLOB)).toHaveLength(1); + expect(client.csrfToken).not.toBe(initialToken); + }); + + it('throws if api/v1/security/csrf_token/ returns an error', async () => { + expect.assertions(1); + const rejectError = { status: 403 }; + fetchMock.get(LOGIN_GLOB, () => Promise.reject(rejectError), { + overwriteRoutes: true, + }); + + let error; + try { + await new SupersetClientClass({}).init(); + } catch (err) { + error = err; + } finally { + expect(error as typeof rejectError).toEqual(rejectError); + } + }); + + const invalidCsrfTokenError = { error: 'Failed to fetch CSRF token' }; + + it('throws if api/v1/security/csrf_token/ does not return a token', async () => { + expect.assertions(1); + fetchMock.get(LOGIN_GLOB, {}, { overwriteRoutes: true }); + + let error; + try { + await new SupersetClientClass({}).init(); + } catch (err) { + error = err; + } finally { + expect(error as typeof invalidCsrfTokenError).toEqual( + invalidCsrfTokenError, + ); + } + }); + + it('does not set csrfToken if response is not json', async () => { + expect.assertions(1); + fetchMock.get(LOGIN_GLOB, '123', { + overwriteRoutes: true, + }); + + let error; + try { + await new SupersetClientClass({}).init(); + } catch (err) { + error = err; + } finally { + expect(error as typeof invalidCsrfTokenError).toEqual( + invalidCsrfTokenError, + ); + } + }); + }); + + describe('.isAuthenticated()', () => { + afterEach(fetchMock.reset); + + it('returns true if there is a token and false if not', async () => { + expect.assertions(2); + const client = new SupersetClientClass({}); + expect(client.isAuthenticated()).toBe(false); + await client.init(); + expect(client.isAuthenticated()).toBe(true); + }); + + it('returns true if a token is passed at configuration', () => { + expect.assertions(2); + const clientWithoutToken = new SupersetClientClass({ + csrfToken: undefined, + }); + const clientWithToken = new SupersetClientClass({ csrfToken: 'token' }); + expect(clientWithoutToken.isAuthenticated()).toBe(false); + expect(clientWithToken.isAuthenticated()).toBe(true); + }); + }); + + describe('.ensureAuth()', () => { + it(`returns a promise that rejects if .init() has not been called`, async () => { + expect.assertions(2); + + const client = new SupersetClientClass({}); + let error; + + try { + await client.ensureAuth(); + } catch (err) { + error = err; + } finally { + expect(error).toEqual({ error: expect.any(String) }); + } + expect(client.isAuthenticated()).toBe(false); + }); + + it('returns a promise that resolves if .init() resolves successfully', async () => { + expect.assertions(1); + + const client = new SupersetClientClass({}); + await client.init(); + await client.ensureAuth(); + + expect(client.isAuthenticated()).toBe(true); + }); + + it(`returns a promise that rejects if .init() is unsuccessful`, async () => { + expect.assertions(4); + + const rejectValue = { status: 403 }; + fetchMock.get(LOGIN_GLOB, () => Promise.reject(rejectValue), { + overwriteRoutes: true, + }); + + const client = new SupersetClientClass({}); + let error; + let error2; + + try { + await client.init(); + } catch (err) { + error = err; + } finally { + expect(error).toEqual(expect.objectContaining(rejectValue)); + expect(client.isAuthenticated()).toBe(false); + try { + await client.ensureAuth(); + } catch (err) { + error2 = err; + } finally { + expect(error2).toEqual(expect.objectContaining(rejectValue)); + expect(client.isAuthenticated()).toBe(false); + } + } + + // reset + fetchMock.get( + LOGIN_GLOB, + { result: 1234 }, + { + overwriteRoutes: true, + }, + ); + }); + }); + + describe('requests', () => { + afterEach(fetchMock.reset); + const protocol = 'https:'; + const host = 'host'; + const mockGetEndpoint = '/get/url'; + const mockRequestEndpoint = '/request/url'; + const mockPostEndpoint = '/post/url'; + const mockPutEndpoint = '/put/url'; + const mockDeleteEndpoint = '/delete/url'; + const mockTextEndpoint = '/text/endpoint'; + const mockGetUrl = `${protocol}//${host}${mockGetEndpoint}`; + const mockRequestUrl = `${protocol}//${host}${mockRequestEndpoint}`; + const mockPostUrl = `${protocol}//${host}${mockPostEndpoint}`; + const mockTextUrl = `${protocol}//${host}${mockTextEndpoint}`; + const mockPutUrl = `${protocol}//${host}${mockPutEndpoint}`; + const mockDeleteUrl = `${protocol}//${host}${mockDeleteEndpoint}`; + const mockTextJsonResponse = '{ "value": 9223372036854775807 }'; + const mockPayload = { json: () => Promise.resolve('payload') }; + + fetchMock.get(mockGetUrl, mockPayload); + fetchMock.post(mockPostUrl, mockPayload); + fetchMock.put(mockPutUrl, mockPayload); + fetchMock.delete(mockDeleteUrl, mockPayload); + fetchMock.delete(mockRequestUrl, mockPayload); + fetchMock.get(mockTextUrl, mockTextJsonResponse); + fetchMock.post(mockTextUrl, mockTextJsonResponse); + + it('checks for authentication before every get and post request', async () => { + expect.assertions(6); + + const authSpy = jest.spyOn(SupersetClientClass.prototype, 'ensureAuth'); + const client = new SupersetClientClass({ protocol, host }); + + await client.init(); + await client.get({ url: mockGetUrl }); + await client.post({ url: mockPostUrl }); + await client.put({ url: mockPutUrl }); + await client.delete({ url: mockDeleteUrl }); + await client.request({ url: mockRequestUrl, method: 'DELETE' }); + + expect(fetchMock.calls(mockGetUrl)).toHaveLength(1); + expect(fetchMock.calls(mockPostUrl)).toHaveLength(1); + expect(fetchMock.calls(mockDeleteUrl)).toHaveLength(1); + expect(fetchMock.calls(mockPutUrl)).toHaveLength(1); + expect(fetchMock.calls(mockRequestUrl)).toHaveLength(1); + + expect(authSpy).toHaveBeenCalledTimes(5); + authSpy.mockRestore(); + }); + + it('sets protocol, host, headers, mode, and credentials from config', async () => { + expect.assertions(3); + + const clientConfig: ClientConfig = { + host, + protocol, + mode: 'cors', + credentials: 'include', + headers: { my: 'header' }, + }; + + const client = new SupersetClientClass(clientConfig); + await client.init(); + await client.get({ url: mockGetUrl }); + + const fetchRequest = fetchMock.calls(mockGetUrl)[0][1]; + expect(fetchRequest.mode).toBe(clientConfig.mode); + expect(fetchRequest.credentials).toBe(clientConfig.credentials); + expect(fetchRequest.headers).toEqual( + expect.objectContaining( + clientConfig.headers, + ) as typeof fetchRequest.headers, + ); + }); + + describe('.get()', () => { + it('makes a request using url or endpoint', async () => { + expect.assertions(2); + + const client = new SupersetClientClass({ protocol, host }); + await client.init(); + + await client.get({ url: mockGetUrl }); + expect(fetchMock.calls(mockGetUrl)).toHaveLength(1); + + await client.get({ endpoint: mockGetEndpoint }); + expect(fetchMock.calls(mockGetUrl)).toHaveLength(2); + }); + + it('supports parsing a response as text', async () => { + expect.assertions(2); + const client = new SupersetClientClass({ protocol, host }); + await client.init(); + const { text } = await client.get({ + url: mockTextUrl, + parseMethod: 'text', + }); + expect(fetchMock.calls(mockTextUrl)).toHaveLength(1); + expect(text).toBe(mockTextJsonResponse); + }); + + it('allows overriding host, headers, mode, and credentials per-request', async () => { + expect.assertions(3); + + const clientConfig: ClientConfig = { + host, + protocol, + mode: 'cors', + credentials: 'include', + headers: { my: 'header' }, + }; + const overrideConfig: ClientConfig = { + host: 'override_host', + mode: 'no-cors', + credentials: 'omit', + headers: { my: 'override', another: 'header' }, + }; + + const client = new SupersetClientClass(clientConfig); + await client.init(); + await client.get({ url: mockGetUrl, ...overrideConfig }); + + const fetchRequest = fetchMock.calls(mockGetUrl)[0][1]; + expect(fetchRequest.mode).toBe(overrideConfig.mode); + expect(fetchRequest.credentials).toBe(overrideConfig.credentials); + expect(fetchRequest.headers).toEqual( + expect.objectContaining( + overrideConfig.headers, + ) as typeof fetchRequest.headers, + ); + }); + }); + + describe('.post()', () => { + it('makes a request using url or endpoint', async () => { + expect.assertions(2); + + const client = new SupersetClientClass({ protocol, host }); + await client.init(); + + await client.post({ url: mockPostUrl }); + expect(fetchMock.calls(mockPostUrl)).toHaveLength(1); + + await client.post({ endpoint: mockPostEndpoint }); + expect(fetchMock.calls(mockPostUrl)).toHaveLength(2); + }); + + it('allows overriding host, headers, mode, and credentials per-request', async () => { + expect.assertions(3); + const clientConfig: ClientConfig = { + host, + protocol, + mode: 'cors', + credentials: 'include', + headers: { my: 'header' }, + }; + const overrideConfig: ClientConfig = { + host: 'override_host', + mode: 'no-cors', + credentials: 'omit', + headers: { my: 'override', another: 'header' }, + }; + + const client = new SupersetClientClass(clientConfig); + await client.init(); + await client.post({ url: mockPostUrl, ...overrideConfig }); + + const fetchRequest = fetchMock.calls(mockPostUrl)[0][1]; + + expect(fetchRequest.mode).toBe(overrideConfig.mode); + expect(fetchRequest.credentials).toBe(overrideConfig.credentials); + expect(fetchRequest.headers).toEqual( + expect.objectContaining( + overrideConfig.headers, + ) as typeof fetchRequest.headers, + ); + }); + + it('supports parsing a response as text', async () => { + expect.assertions(2); + const client = new SupersetClientClass({ protocol, host }); + await client.init(); + const { text } = await client.post({ + url: mockTextUrl, + parseMethod: 'text', + }); + expect(fetchMock.calls(mockTextUrl)).toHaveLength(1); + expect(text).toBe(mockTextJsonResponse); + }); + + it('passes postPayload key,values in the body', async () => { + expect.assertions(3); + + const postPayload = { number: 123, array: [1, 2, 3] }; + const client = new SupersetClientClass({ protocol, host }); + await client.init(); + await client.post({ url: mockPostUrl, postPayload }); + + const formData = fetchMock.calls(mockPostUrl)[0][1].body as FormData; + + expect(fetchMock.calls(mockPostUrl)).toHaveLength(1); + Object.entries(postPayload).forEach(([key, value]) => { + expect(formData.get(key)).toBe(JSON.stringify(value)); + }); + }); + + it('respects the stringify parameter for postPayload key,values', async () => { + expect.assertions(3); + + const postPayload = { number: 123, array: [1, 2, 3] }; + const client = new SupersetClientClass({ protocol, host }); + await client.init(); + await client.post({ url: mockPostUrl, postPayload, stringify: false }); + + const formData = fetchMock.calls(mockPostUrl)[0][1].body as FormData; + + expect(fetchMock.calls(mockPostUrl)).toHaveLength(1); + Object.entries(postPayload).forEach(([key, value]) => { + expect(formData.get(key)).toBe(String(value)); + }); + }); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/callApi/callApi.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/callApi/callApi.test.ts new file mode 100644 index 000000000000..7d9cd859bcf0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/callApi/callApi.test.ts @@ -0,0 +1,608 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import fetchMock from 'fetch-mock'; +import callApi from '@superset-ui/core/src/connection/callApi/callApi'; +import * as constants from '@superset-ui/core/src/connection/constants'; +import { CallApi, JsonObject } from '@superset-ui/core/src/connection/types'; +import { DEFAULT_FETCH_RETRY_OPTIONS } from '@superset-ui/core/src/connection/constants'; + +import { LOGIN_GLOB } from '../fixtures/constants'; + +describe('callApi()', () => { + beforeAll(() => { + fetchMock.get(LOGIN_GLOB, { result: '1234' }); + }); + + afterAll(fetchMock.restore); + + const mockGetUrl = '/mock/get/url'; + const mockPostUrl = '/mock/post/url'; + const mockPutUrl = '/mock/put/url'; + const mockPatchUrl = '/mock/patch/url'; + const mockCacheUrl = '/mock/cache/url'; + const mockNotFound = '/mock/notfound'; + const mockErrorUrl = '/mock/error/url'; + const mock503 = '/mock/503'; + + const mockGetPayload = { get: 'payload' }; + const mockPostPayload = { post: 'payload' }; + const mockPutPayload = { post: 'payload' }; + const mockPatchPayload = { post: 'payload' }; + const mockCachePayload = { + status: 200, + body: 'BODY', + headers: { Etag: 'etag' }, + }; + const mockErrorPayload = { status: 500, statusText: 'Internal error' }; + + fetchMock.get(mockGetUrl, mockGetPayload); + fetchMock.post(mockPostUrl, mockPostPayload); + fetchMock.put(mockPutUrl, mockPutPayload); + fetchMock.patch(mockPatchUrl, mockPatchPayload); + fetchMock.get(mockCacheUrl, mockCachePayload); + fetchMock.get(mockNotFound, { status: 404 }); + fetchMock.get(mock503, { status: 503 }); + fetchMock.get(mockErrorUrl, () => Promise.reject(mockErrorPayload)); + + afterEach(fetchMock.reset); + + describe('request config', () => { + it('calls the right url with the specified method', async () => { + expect.assertions(4); + await Promise.all([ + callApi({ url: mockGetUrl, method: 'GET' }), + callApi({ url: mockPostUrl, method: 'POST' }), + callApi({ url: mockPutUrl, method: 'PUT' }), + callApi({ url: mockPatchUrl, method: 'PATCH' }), + ]); + expect(fetchMock.calls(mockGetUrl)).toHaveLength(1); + expect(fetchMock.calls(mockPostUrl)).toHaveLength(1); + expect(fetchMock.calls(mockPutUrl)).toHaveLength(1); + expect(fetchMock.calls(mockPatchUrl)).toHaveLength(1); + }); + + it('passes along mode, cache, credentials, headers, body, signal, and redirect parameters in the request', async () => { + expect.assertions(8); + const mockRequest: CallApi = { + url: mockGetUrl, + mode: 'cors', + cache: 'default', + credentials: 'include', + headers: { + custom: 'header', + }, + redirect: 'follow', + signal: undefined, + body: 'BODY', + }; + + await callApi(mockRequest); + const calls = fetchMock.calls(mockGetUrl); + const fetchParams = calls[0][1]; + expect(calls).toHaveLength(1); + expect(fetchParams.mode).toBe(mockRequest.mode); + expect(fetchParams.cache).toBe(mockRequest.cache); + expect(fetchParams.credentials).toBe(mockRequest.credentials); + expect(fetchParams.headers).toEqual( + expect.objectContaining( + mockRequest.headers, + ) as typeof fetchParams.headers, + ); + expect(fetchParams.redirect).toBe(mockRequest.redirect); + expect(fetchParams.signal).toBe(mockRequest.signal); + expect(fetchParams.body).toBe(mockRequest.body); + }); + }); + + describe('POST requests', () => { + it('encodes key,value pairs from postPayload', async () => { + expect.assertions(3); + const postPayload = { key: 'value', anotherKey: 1237 }; + + await callApi({ url: mockPostUrl, method: 'POST', postPayload }); + const calls = fetchMock.calls(mockPostUrl); + expect(calls).toHaveLength(1); + + const fetchParams = calls[0][1]; + const body = fetchParams.body as FormData; + + Object.entries(postPayload).forEach(([key, value]) => { + expect(body.get(key)).toBe(JSON.stringify(value)); + }); + }); + + // the reason for this is to omit strings like 'undefined' from making their way to the backend + it('omits key,value pairs from postPayload that have undefined values (POST)', async () => { + expect.assertions(3); + const postPayload = { key: 'value', noValue: undefined }; + + await callApi({ url: mockPostUrl, method: 'POST', postPayload }); + const calls = fetchMock.calls(mockPostUrl); + expect(calls).toHaveLength(1); + + const fetchParams = calls[0][1]; + const body = fetchParams.body as FormData; + expect(body.get('key')).toBe(JSON.stringify(postPayload.key)); + expect(body.get('noValue')).toBeNull(); + }); + + it('respects the stringify flag in POST requests', async () => { + const postPayload = { + string: 'value', + number: 1237, + array: [1, 2, 3], + object: { a: 'a', 1: 1 }, + null: null, + emptyString: '', + }; + + expect.assertions(1 + 3 * Object.keys(postPayload).length); + + await Promise.all([ + callApi({ url: mockPostUrl, method: 'POST', postPayload }), + callApi({ + url: mockPostUrl, + method: 'POST', + postPayload, + stringify: false, + }), + callApi({ url: mockPostUrl, method: 'POST', jsonPayload: postPayload }), + ]); + const calls = fetchMock.calls(mockPostUrl); + expect(calls).toHaveLength(3); + + const stringified = calls[0][1].body as FormData; + const unstringified = calls[1][1].body as FormData; + const jsonRequestBody = JSON.parse( + calls[2][1].body as string, + ) as JsonObject; + + Object.entries(postPayload).forEach(([key, value]) => { + expect(stringified.get(key)).toBe(JSON.stringify(value)); + expect(unstringified.get(key)).toBe(String(value)); + expect(jsonRequestBody[key]).toEqual(value); + }); + }); + }); + + describe('PUT requests', () => { + it('encodes key,value pairs from postPayload', async () => { + expect.assertions(3); + const postPayload = { key: 'value', anotherKey: 1237 }; + + await callApi({ url: mockPutUrl, method: 'PUT', postPayload }); + const calls = fetchMock.calls(mockPutUrl); + expect(calls).toHaveLength(1); + + const fetchParams = calls[0][1]; + const body = fetchParams.body as FormData; + + Object.entries(postPayload).forEach(([key, value]) => { + expect(body.get(key)).toBe(JSON.stringify(value)); + }); + }); + + // the reason for this is to omit strings like 'undefined' from making their way to the backend + it('omits key,value pairs from postPayload that have undefined values (PUT)', async () => { + expect.assertions(3); + const postPayload = { key: 'value', noValue: undefined }; + + await callApi({ url: mockPutUrl, method: 'PUT', postPayload }); + const calls = fetchMock.calls(mockPutUrl); + expect(calls).toHaveLength(1); + + const fetchParams = calls[0][1]; + const body = fetchParams.body as FormData; + expect(body.get('key')).toBe(JSON.stringify(postPayload.key)); + expect(body.get('noValue')).toBeNull(); + }); + + it('respects the stringify flag in PUT requests', async () => { + const postPayload = { + string: 'value', + number: 1237, + array: [1, 2, 3], + object: { a: 'a', 1: 1 }, + null: null, + emptyString: '', + }; + + expect.assertions(1 + 2 * Object.keys(postPayload).length); + + await Promise.all([ + callApi({ url: mockPutUrl, method: 'PUT', postPayload }), + callApi({ + url: mockPutUrl, + method: 'PUT', + postPayload, + stringify: false, + }), + ]); + const calls = fetchMock.calls(mockPutUrl); + expect(calls).toHaveLength(2); + + const stringified = calls[0][1].body as FormData; + const unstringified = calls[1][1].body as FormData; + + Object.entries(postPayload).forEach(([key, value]) => { + expect(stringified.get(key)).toBe(JSON.stringify(value)); + expect(unstringified.get(key)).toBe(String(value)); + }); + }); + }); + + describe('PATCH requests', () => { + it('encodes key,value pairs from postPayload', async () => { + expect.assertions(3); + const postPayload = { key: 'value', anotherKey: 1237 }; + + await callApi({ url: mockPatchUrl, method: 'PATCH', postPayload }); + const calls = fetchMock.calls(mockPatchUrl); + expect(calls).toHaveLength(1); + + const fetchParams = calls[0][1]; + const body = fetchParams.body as FormData; + + Object.entries(postPayload).forEach(([key, value]) => { + expect(body.get(key)).toBe(JSON.stringify(value)); + }); + }); + + // the reason for this is to omit strings like 'undefined' from making their way to the backend + it('omits key,value pairs from postPayload that have undefined values (PATCH)', async () => { + expect.assertions(3); + const postPayload = { key: 'value', noValue: undefined }; + + await callApi({ url: mockPatchUrl, method: 'PATCH', postPayload }); + const calls = fetchMock.calls(mockPatchUrl); + expect(calls).toHaveLength(1); + + const fetchParams = calls[0][1]; + const body = fetchParams.body as FormData; + expect(body.get('key')).toBe(JSON.stringify(postPayload.key)); + expect(body.get('noValue')).toBeNull(); + }); + + it('respects the stringify flag in PATCH requests', async () => { + const postPayload = { + string: 'value', + number: 1237, + array: [1, 2, 3], + object: { a: 'a', 1: 1 }, + null: null, + emptyString: '', + }; + + expect.assertions(1 + 2 * Object.keys(postPayload).length); + + await Promise.all([ + callApi({ url: mockPatchUrl, method: 'PATCH', postPayload }), + callApi({ + url: mockPatchUrl, + method: 'PATCH', + postPayload, + stringify: false, + }), + ]); + const calls = fetchMock.calls(mockPatchUrl); + expect(calls).toHaveLength(2); + + const stringified = calls[0][1].body as FormData; + const unstringified = calls[1][1].body as FormData; + + Object.entries(postPayload).forEach(([key, value]) => { + expect(stringified.get(key)).toBe(JSON.stringify(value)); + expect(unstringified.get(key)).toBe(String(value)); + }); + }); + }); + + describe('caching', () => { + const origLocation = window.location; + + beforeAll(() => { + Object.defineProperty(window, 'location', { value: {} }); + }); + + afterAll(() => { + Object.defineProperty(window, 'location', { value: origLocation }); + }); + + beforeEach(async () => { + window.location.protocol = 'https:'; + await caches.delete(constants.CACHE_KEY); + }); + + it('caches requests with ETags', async () => { + expect.assertions(2); + await callApi({ url: mockCacheUrl, method: 'GET' }); + const calls = fetchMock.calls(mockCacheUrl); + expect(calls).toHaveLength(1); + const supersetCache = await caches.open(constants.CACHE_KEY); + const cachedResponse = await supersetCache.match(mockCacheUrl); + expect(cachedResponse).toBeDefined(); + }); + + it('will not use cache when running off an insecure connection', async () => { + expect.assertions(2); + window.location.protocol = 'http:'; + + await callApi({ url: mockCacheUrl, method: 'GET' }); + const calls = fetchMock.calls(mockCacheUrl); + expect(calls).toHaveLength(1); + + const supersetCache = await caches.open(constants.CACHE_KEY); + const cachedResponse = await supersetCache.match(mockCacheUrl); + expect(cachedResponse).toBeUndefined(); + }); + + it('works when the Cache API is disabled', async () => { + expect.assertions(5); + // eslint-disable-next-line no-import-assign + Object.defineProperty(constants, 'CACHE_AVAILABLE', { value: false }); + + const firstResponse = await callApi({ url: mockCacheUrl, method: 'GET' }); + const calls = fetchMock.calls(mockCacheUrl); + expect(calls).toHaveLength(1); + const firstBody = await firstResponse.text(); + expect(firstBody).toEqual('BODY'); + + const secondResponse = await callApi({ + url: mockCacheUrl, + method: 'GET', + }); + const fetchParams = calls[1][1]; + expect(calls).toHaveLength(2); + // second call should not have If-None-Match header + expect(fetchParams.headers).toBeUndefined(); + const secondBody = await secondResponse.text(); + expect(secondBody).toEqual('BODY'); + + // eslint-disable-next-line no-import-assign + Object.defineProperty(constants, 'CACHE_AVAILABLE', { value: true }); + }); + + it('sends known ETags in the If-None-Match header', async () => { + expect.assertions(3); + // first call sets the cache + await callApi({ url: mockCacheUrl, method: 'GET' }); + const calls = fetchMock.calls(mockCacheUrl); + expect(calls).toHaveLength(1); + + // second call sends the Etag in the If-None-Match header + await callApi({ url: mockCacheUrl, method: 'GET' }); + const fetchParams = calls[1][1]; + const headers = { 'If-None-Match': 'etag' }; + expect(calls).toHaveLength(2); + expect(fetchParams.headers).toEqual( + expect.objectContaining(headers) as typeof fetchParams.headers, + ); + }); + + it('reuses cached responses on 304 status', async () => { + expect.assertions(3); + // first call sets the cache + await callApi({ url: mockCacheUrl, method: 'GET' }); + const calls = fetchMock.calls(mockCacheUrl); + expect(calls).toHaveLength(1); + // second call reuses the cached payload on a 304 + const mockCachedPayload = { status: 304 }; + fetchMock.get(mockCacheUrl, mockCachedPayload, { overwriteRoutes: true }); + + const secondResponse = await callApi({ + url: mockCacheUrl, + method: 'GET', + }); + expect(calls).toHaveLength(2); + const secondBody = await secondResponse.text(); + expect(secondBody).toEqual('BODY'); + }); + + it('throws error when cache fails on 304', async () => { + expect.assertions(2); + + // this should never happen, since a 304 is only returned if we have + // the cached response and sent the If-None-Match header + const mockUncachedUrl = '/mock/uncached/url'; + const mockCachedPayload = { status: 304 }; + let error; + fetchMock.get(mockUncachedUrl, mockCachedPayload); + + try { + await callApi({ url: mockUncachedUrl, method: 'GET' }); + } catch (err) { + error = err; + } finally { + const calls = fetchMock.calls(mockUncachedUrl); + expect(calls).toHaveLength(1); + expect((error as { message: string }).message).toEqual( + 'Received 304 but no content is cached!', + ); + } + }); + + it('returns original response if no Etag', async () => { + expect.assertions(3); + const url = mockGetUrl; + const response = await callApi({ url, method: 'GET' }); + const calls = fetchMock.calls(url); + expect(calls).toHaveLength(1); + expect(response.status).toEqual(200); + const body = await response.json(); + expect(body as typeof mockGetPayload).toEqual(mockGetPayload); + }); + + it('returns original response if status not 304 or 200', async () => { + expect.assertions(2); + const url = mockNotFound; + const response = await callApi({ url, method: 'GET' }); + const calls = fetchMock.calls(url); + expect(calls).toHaveLength(1); + expect(response.status).toEqual(404); + }); + }); + + it('rejects after retrying thrice if the request throws', async () => { + expect.assertions(3); + let error; + try { + await callApi({ + fetchRetryOptions: DEFAULT_FETCH_RETRY_OPTIONS, + url: mockErrorUrl, + method: 'GET', + }); + } catch (err) { + error = err; + } finally { + const err = error as { status: number; statusText: string }; + expect(fetchMock.calls(mockErrorUrl)).toHaveLength(4); + expect(err.status).toBe(mockErrorPayload.status); + expect(err.statusText).toBe(mockErrorPayload.statusText); + } + }); + + it('rejects without retries if the config is set to 0 retries', async () => { + expect.assertions(3); + let error; + try { + await callApi({ + fetchRetryOptions: { retries: 0 }, + url: mockErrorUrl, + method: 'GET', + }); + } catch (err) { + error = err as { status: number; statusText: string }; + } finally { + expect(fetchMock.calls(mockErrorUrl)).toHaveLength(1); + expect(error?.status).toBe(mockErrorPayload.status); + expect(error?.statusText).toBe(mockErrorPayload.statusText); + } + }); + + it('rejects after retrying thrice if the request returns a 503', async () => { + expect.assertions(2); + const url = mock503; + const response = await callApi({ + fetchRetryOptions: DEFAULT_FETCH_RETRY_OPTIONS, + url, + method: 'GET', + }); + const calls = fetchMock.calls(url); + expect(calls).toHaveLength(4); + expect(response.status).toEqual(503); + }); + + it('invalid json for postPayload should thrown error', async () => { + expect.assertions(2); + let error; + try { + await callApi({ + url: mockPostUrl, + method: 'POST', + postPayload: 'haha', + }); + } catch (err) { + error = err; + } finally { + expect(error).toBeInstanceOf(Error); + expect(error.message).toEqual('Invalid payload:\n\nhaha'); + } + }); + + it('should accept search params object', async () => { + expect.assertions(3); + window.location.href = 'http://localhost'; + fetchMock.get(`glob:*/get-search*`, { yes: 'ok' }); + const response = await callApi({ + url: '/get-search', + searchParams: { + abc: 1, + }, + method: 'GET', + }); + const result = await response.json(); + expect(response.status).toEqual(200); + expect(result).toEqual({ yes: 'ok' }); + expect(fetchMock.lastUrl()).toEqual(`http://localhost/get-search?abc=1`); + }); + + it('should accept URLSearchParams', async () => { + expect.assertions(2); + window.location.href = 'http://localhost'; + fetchMock.post(`glob:*/post-search*`, { yes: 'ok' }); + await callApi({ + url: '/post-search', + searchParams: new URLSearchParams({ + abc: '1', + }), + method: 'POST', + jsonPayload: { request: 'ok' }, + }); + expect(fetchMock.lastUrl()).toEqual(`http://localhost/post-search?abc=1`); + expect(fetchMock.lastOptions()).toEqual( + expect.objectContaining({ + body: JSON.stringify({ request: 'ok' }), + }), + ); + }); + + it('should throw when both payloads provided', async () => { + expect.assertions(1); + fetchMock.post('/post-both-payload', {}); + + let error; + try { + await callApi({ + url: '/post-both-payload', + method: 'POST', + postPayload: { a: 1 }, + jsonPayload: '{}', + }); + } catch (err) { + error = err; + } finally { + expect((error as Error).message).toContain( + 'provide only one of jsonPayload or postPayload', + ); + } + }); + + it('should accept FormData as postPayload', async () => { + expect.assertions(1); + fetchMock.post('/post-formdata', {}); + const payload = new FormData(); + await callApi({ + url: '/post-formdata', + method: 'POST', + postPayload: payload, + }); + expect(fetchMock.lastOptions().body).toBe(payload); + }); + + it('should ignore "null" postPayload string', async () => { + expect.assertions(1); + fetchMock.post('/post-null-postpayload', {}); + await callApi({ + url: '/post-formdata', + method: 'POST', + postPayload: 'null', + }); + expect(fetchMock.lastOptions().body).toBeUndefined(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/callApi/callApiAndParseWithTimeout.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/callApi/callApiAndParseWithTimeout.test.ts new file mode 100644 index 000000000000..29e871286998 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/callApi/callApiAndParseWithTimeout.test.ts @@ -0,0 +1,127 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import fetchMock from 'fetch-mock'; + +import callApiAndParseWithTimeout from '@superset-ui/core/src/connection/callApi/callApiAndParseWithTimeout'; + +// we import these via * so that we can spy on the 'default' property of the object +import * as callApi from '@superset-ui/core/src/connection/callApi/callApi'; +import * as parseResponse from '@superset-ui/core/src/connection/callApi/parseResponse'; +import * as rejectAfterTimeout from '@superset-ui/core/src/connection/callApi/rejectAfterTimeout'; + +import { LOGIN_GLOB } from '../fixtures/constants'; + +describe('callApiAndParseWithTimeout()', () => { + beforeAll(() => { + fetchMock.get(LOGIN_GLOB, { result: '1234' }); + }); + + afterAll(fetchMock.restore); + + const mockGetUrl = '/mock/get/url'; + const mockGetPayload = { get: 'payload' }; + fetchMock.get(mockGetUrl, mockGetPayload); + + afterEach(() => { + fetchMock.reset(); + jest.useRealTimers(); + }); + + describe('callApi', () => { + it('calls callApi()', () => { + const callApiSpy = jest.spyOn(callApi, 'default'); + callApiAndParseWithTimeout({ url: mockGetUrl, method: 'GET' }); + + expect(callApiSpy).toHaveBeenCalledTimes(1); + callApiSpy.mockClear(); + }); + }); + + describe('parseResponse', () => { + it('calls parseResponse()', () => { + const parseSpy = jest.spyOn(parseResponse, 'default'); + callApiAndParseWithTimeout({ url: mockGetUrl, method: 'GET' }); + + expect(parseSpy).toHaveBeenCalledTimes(1); + parseSpy.mockClear(); + }); + }); + + describe('timeout', () => { + it('does not create a rejection timer if no timeout passed', () => { + const rejectionSpy = jest.spyOn(rejectAfterTimeout, 'default'); + callApiAndParseWithTimeout({ url: mockGetUrl, method: 'GET' }); + + expect(rejectionSpy).toHaveBeenCalledTimes(0); + rejectionSpy.mockClear(); + }); + + it('creates a rejection timer if a timeout passed', () => { + jest.useFakeTimers(); // prevents the timeout from rejecting + failing test + const rejectionSpy = jest.spyOn(rejectAfterTimeout, 'default'); + callApiAndParseWithTimeout({ + url: mockGetUrl, + method: 'GET', + timeout: 10, + }); + + expect(rejectionSpy).toHaveBeenCalledTimes(1); + rejectionSpy.mockClear(); + }); + + it('rejects if the request exceeds the timeout', async () => { + expect.assertions(2); + jest.useFakeTimers(); + + const mockTimeoutUrl = '/mock/timeout/url'; + const unresolvingPromise = new Promise(() => {}); + let error; + fetchMock.get(mockTimeoutUrl, () => unresolvingPromise); + + try { + const promise = callApiAndParseWithTimeout({ + url: mockTimeoutUrl, + method: 'GET', + timeout: 1, + }); + jest.advanceTimersByTime(2); + await promise; + } catch (err) { + error = err; + } finally { + expect(fetchMock.calls(mockTimeoutUrl)).toHaveLength(1); + expect(error).toEqual({ + error: 'Request timed out', + statusText: 'timeout', + timeout: 1, + }); + } + }); + + it('resolves if the request does not exceed the timeout', async () => { + expect.assertions(1); + const { json } = await callApiAndParseWithTimeout({ + url: mockGetUrl, + method: 'GET', + timeout: 100, + }); + expect(json).toEqual(mockGetPayload); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/callApi/parseResponse.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/callApi/parseResponse.test.ts new file mode 100644 index 000000000000..be0a019001d9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/callApi/parseResponse.test.ts @@ -0,0 +1,158 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import fetchMock from 'fetch-mock'; +import callApi from '@superset-ui/core/src/connection/callApi/callApi'; +import parseResponse from '@superset-ui/core/src/connection/callApi/parseResponse'; + +import { LOGIN_GLOB } from '../fixtures/constants'; + +describe('parseResponse()', () => { + beforeAll(() => { + fetchMock.get(LOGIN_GLOB, { result: '1234' }); + }); + + afterAll(fetchMock.restore); + + const mockGetUrl = '/mock/get/url'; + const mockPostUrl = '/mock/post/url'; + const mockErrorUrl = '/mock/error/url'; + const mockNoParseUrl = '/mock/noparse/url'; + + const mockGetPayload = { get: 'payload' }; + const mockPostPayload = { post: 'payload' }; + const mockErrorPayload = { status: 500, statusText: 'Internal error' }; + + fetchMock.get(mockGetUrl, mockGetPayload); + fetchMock.post(mockPostUrl, mockPostPayload); + fetchMock.get(mockErrorUrl, () => Promise.reject(mockErrorPayload)); + fetchMock.get(mockNoParseUrl, new Response('test response')); + + afterEach(fetchMock.reset); + + it('returns a Promise', () => { + const apiPromise = callApi({ url: mockGetUrl, method: 'GET' }); + const parsedResponsePromise = parseResponse(apiPromise); + expect(parsedResponsePromise).toBeInstanceOf(Promise); + }); + + it('resolves to { json, response } if the request succeeds', async () => { + expect.assertions(4); + const args = await parseResponse( + callApi({ url: mockGetUrl, method: 'GET' }), + ); + expect(fetchMock.calls(mockGetUrl)).toHaveLength(1); + const keys = Object.keys(args); + expect(keys).toContain('response'); + expect(keys).toContain('json'); + expect(args.json).toEqual( + expect.objectContaining(mockGetPayload) as typeof args.json, + ); + }); + + it('throws if `parseMethod=json` and .json() fails', async () => { + expect.assertions(3); + + const mockTextUrl = '/mock/text/url'; + const mockTextResponse = + 'I could be a stack trace or something'; + fetchMock.get(mockTextUrl, mockTextResponse); + + let error; + try { + await parseResponse(callApi({ url: mockTextUrl, method: 'GET' })); + } catch (err) { + error = err as Error; + } finally { + expect(fetchMock.calls(mockTextUrl)).toHaveLength(1); + expect(error?.stack).toBeDefined(); + expect(error?.message).toContain('Unexpected token'); + } + }); + + it('resolves to { text, response } if the `parseMethod=text`', async () => { + expect.assertions(4); + + // test with json + bigint to ensure that it was not first parsed as json + const mockTextParseUrl = '/mock/textparse/url'; + const mockTextJsonResponse = '{ "value": 9223372036854775807 }'; + fetchMock.get(mockTextParseUrl, mockTextJsonResponse); + + const args = await parseResponse( + callApi({ url: mockTextParseUrl, method: 'GET' }), + 'text', + ); + expect(fetchMock.calls(mockTextParseUrl)).toHaveLength(1); + const keys = Object.keys(args); + expect(keys).toContain('response'); + expect(keys).toContain('text'); + expect(args.text).toBe(mockTextJsonResponse); + }); + + it('throws if parseMethod is not null|json|text', async () => { + expect.assertions(1); + + let error; + try { + await parseResponse( + callApi({ url: mockNoParseUrl, method: 'GET' }), + 'something-else' as never, + ); + } catch (err) { + error = err; + } finally { + expect(error.message).toEqual( + expect.stringContaining('Expected parseResponse=json'), + ); + } + }); + + it('resolves to unmodified `Response` object if `parseMethod=null|raw`', async () => { + expect.assertions(3); + const responseNull = await parseResponse( + callApi({ url: mockNoParseUrl, method: 'GET' }), + null, + ); + const responseRaw = await parseResponse( + callApi({ url: mockNoParseUrl, method: 'GET' }), + 'raw', + ); + expect(fetchMock.calls(mockNoParseUrl)).toHaveLength(2); + expect(responseNull.bodyUsed).toBe(false); + expect(responseRaw.bodyUsed).toBe(false); + }); + + it('rejects if request.ok=false', async () => { + expect.assertions(3); + const mockNotOkayUrl = '/mock/notokay/url'; + fetchMock.get(mockNotOkayUrl, 404); // 404s result in not response.ok=false + + const apiPromise = callApi({ url: mockNotOkayUrl, method: 'GET' }); + + let error; + try { + await parseResponse(apiPromise); + } catch (err) { + error = err as { ok: boolean; status: number }; + } finally { + expect(fetchMock.calls(mockNotOkayUrl)).toHaveLength(1); + expect(error?.ok).toBe(false); + expect(error?.status).toBe(404); + } + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/callApi/rejectAfterTimeout.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/callApi/rejectAfterTimeout.test.ts new file mode 100644 index 000000000000..da2161bc561f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/callApi/rejectAfterTimeout.test.ts @@ -0,0 +1,38 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import rejectAfterTimeout from '@superset-ui/core/src/connection/callApi/rejectAfterTimeout'; + +describe('rejectAfterTimeout()', () => { + it('returns a promise that rejects after the specified timeout', async () => { + expect.assertions(1); + jest.useFakeTimers(); + let error; + + try { + const promise = rejectAfterTimeout(10); + jest.advanceTimersByTime(11); + await promise; + } catch (err) { + error = err; + } finally { + expect(error).toBeDefined(); + } + jest.useRealTimers(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/fixtures/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/fixtures/constants.ts new file mode 100644 index 000000000000..d1f0be254e38 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/connection/fixtures/constants.ts @@ -0,0 +1,19 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export const LOGIN_GLOB = 'glob:*api/v1/security/csrf_token/*'; // eslint-disable-line import/prefer-default-export diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/computeMaxFontSize.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/computeMaxFontSize.test.ts new file mode 100644 index 000000000000..e74eec1e2c8d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/computeMaxFontSize.test.ts @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { computeMaxFontSize } from '@superset-ui/core/src'; +import { addDummyFill, removeDummyFill, SAMPLE_TEXT } from './getBBoxDummyFill'; + +describe('computeMaxFontSize(input)', () => { + describe('returns dimension of the given text', () => { + beforeEach(addDummyFill); + afterEach(removeDummyFill); + + it('requires either idealFontSize or maxHeight', () => { + expect(() => { + computeMaxFontSize({ + text: SAMPLE_TEXT[0], + }); + }).toThrow(); + }); + it('computes maximum font size for given maxWidth and maxHeight', () => { + expect( + computeMaxFontSize({ + maxWidth: 400, + maxHeight: 30, + text: 'sample text', + }), + ).toEqual(30); + }); + it('computes maximum font size for given idealFontSize and maxHeight', () => { + expect( + computeMaxFontSize({ + maxHeight: 20, + idealFontSize: 40, + text: SAMPLE_TEXT[0], + }), + ).toEqual(20); + }); + it('computes maximum font size for given maxWidth and idealFontSize', () => { + expect( + computeMaxFontSize({ + maxWidth: 250, + idealFontSize: 40, + text: SAMPLE_TEXT[0], + }), + ).toEqual(25); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/getBBoxDummyFill.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/getBBoxDummyFill.ts new file mode 100644 index 000000000000..8f457933568a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/getBBoxDummyFill.ts @@ -0,0 +1,83 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +let originalFn: () => DOMRect; + +const textToWidth = { + paris: 200, + tokyo: 300, + beijing: 400, +}; + +export const SAMPLE_TEXT = Object.keys(textToWidth); + +export function addDummyFill() { + // @ts-ignore - fix jsdom + originalFn = SVGElement.prototype.getBBox; + + // @ts-ignore - fix jsdom + SVGElement.prototype.getBBox = function getBBox() { + let width = + textToWidth[this.textContent as keyof typeof textToWidth] || 200; + let height = 20; + + if (this.getAttribute('class') === 'test-class') { + width /= 2; + } + + if (this.style.fontFamily === 'Lobster') { + width *= 1.25; + } + + if (this.style.fontSize) { + const size = Number(this.style.fontSize.replace('px', '')); + const ratio = size / 20; + width *= ratio; + height *= ratio; + } + + if (this.style.fontStyle === 'italic') { + width *= 1.5; + } + + if (this.style.fontWeight === '700') { + width *= 2; + } + + if (this.style.letterSpacing) { + width *= 1.1; + } + + return { + x: 0, + y: 0, + width, + height, + top: 0, + left: 0, + right: 0, + bottom: 0, + }; + }; +} + +export function removeDummyFill() { + // @ts-ignore - fix jsdom + SVGElement.prototype.getBBox = originalFn; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/getMultipleTextDimensions.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/getMultipleTextDimensions.test.ts new file mode 100644 index 000000000000..b392404c0ed5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/getMultipleTextDimensions.test.ts @@ -0,0 +1,224 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + getMultipleTextDimensions, + promiseTimeout, +} from '@superset-ui/core/src'; +import { addDummyFill, removeDummyFill, SAMPLE_TEXT } from './getBBoxDummyFill'; + +describe('getMultipleTextDimension(input)', () => { + describe('returns dimension of the given text', () => { + beforeEach(addDummyFill); + afterEach(removeDummyFill); + + it('takes an array of text as argument', () => { + expect( + getMultipleTextDimensions({ + texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1], ''], + }), + ).toEqual([ + { + height: 20, + width: 200, + }, + { + height: 20, + width: 300, + }, + { + height: 0, + width: 0, + }, + ]); + }); + it('handles empty text', () => { + expect( + getMultipleTextDimensions({ + texts: ['', ''], + }), + ).toEqual([ + { + height: 0, + width: 0, + }, + { + height: 0, + width: 0, + }, + ]); + }); + it('handles duplicate text', () => { + expect( + getMultipleTextDimensions({ + texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[0]], + }), + ).toEqual([ + { + height: 20, + width: 200, + }, + { + height: 20, + width: 200, + }, + ]); + }); + it('accepts provided class via className', () => { + expect( + getMultipleTextDimensions({ + texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]], + className: 'test-class', + }), + ).toEqual([ + { + height: 20, + width: 100, + }, + { + height: 20, + width: 150, + }, + ]); + }); + it('accepts provided style.font', () => { + expect( + getMultipleTextDimensions({ + texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]], + style: { + font: 'italic 700 30px Lobster', + }, + }), + ).toEqual([ + { + height: 30, // 20 * (30/20) [fontSize=30] + width: 1125, // 200 * 1.25 [fontFamily=Lobster] * (30/20) [fontSize=30] * 1.5 [fontStyle=italic] * 2 [fontWeight=700] + }, + { + height: 30, + width: 1688, // 300 * 1.25 [fontFamily=Lobster] * (30/20) [fontSize=30] * 1.5 [fontStyle=italic] * 2 [fontWeight=700] + }, + ]); + }); + it('accepts provided style.fontFamily', () => { + expect( + getMultipleTextDimensions({ + texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]], + style: { + fontFamily: 'Lobster', + }, + }), + ).toEqual([ + { + height: 20, + width: 250, // 200 * 1.25 [fontFamily=Lobster] + }, + { + height: 20, + width: 375, // 300 * 1.25 [fontFamily=Lobster] + }, + ]); + }); + it('accepts provided style.fontSize', () => { + expect( + getMultipleTextDimensions({ + texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]], + style: { + fontSize: '40px', + }, + }), + ).toEqual([ + { + height: 40, // 20 [baseHeight] * (40/20) [fontSize=40] + width: 400, // 200 [baseWidth] * (40/20) [fontSize=40] + }, + { + height: 40, + width: 600, // 300 [baseWidth] * (40/20) [fontSize=40] + }, + ]); + }); + it('accepts provided style.fontStyle', () => { + expect( + getMultipleTextDimensions({ + texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]], + style: { + fontStyle: 'italic', + }, + }), + ).toEqual([ + { + height: 20, + width: 300, // 200 [baseWidth] * 1.5 [fontStyle=italic] + }, + { + height: 20, + width: 450, // 300 [baseWidth] * 1.5 [fontStyle=italic] + }, + ]); + }); + it('accepts provided style.fontWeight', () => { + expect( + getMultipleTextDimensions({ + texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]], + style: { + fontWeight: 700, + }, + }), + ).toEqual([ + { + height: 20, + width: 400, // 200 [baseWidth] * 2 [fontWeight=700] + }, + { + height: 20, + width: 600, // 300 [baseWidth] * 2 [fontWeight=700] + }, + ]); + }); + it('accepts provided style.letterSpacing', () => { + expect( + getMultipleTextDimensions({ + texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]], + style: { + letterSpacing: '1.1', + }, + }), + ).toEqual([ + { + height: 20, + width: 221, // Ceiling(200 [baseWidth] * 1.1 [letterSpacing=1.1]) + }, + { + height: 20, + width: 330, // Ceiling(300 [baseWidth] * 1.1 [letterSpacing=1.1]) + }, + ]); + }); + }); + it('cleans up DOM', async () => { + getMultipleTextDimensions({ + texts: [SAMPLE_TEXT[0], SAMPLE_TEXT[1]], + }); + + expect(document.querySelectorAll('svg')).toHaveLength(1); + await promiseTimeout(() => {}, 501); + expect(document.querySelector('svg')).toBeNull(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/getTextDimension.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/getTextDimension.test.ts new file mode 100644 index 000000000000..b04a60664cc2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/getTextDimension.test.ts @@ -0,0 +1,175 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { promiseTimeout, getTextDimension } from '@superset-ui/core/src'; +import { addDummyFill, removeDummyFill, SAMPLE_TEXT } from './getBBoxDummyFill'; + +describe('getTextDimension(input)', () => { + describe('returns default dimension if getBBox() is not available', () => { + it('returns default value for default dimension', () => { + expect( + getTextDimension({ + text: SAMPLE_TEXT[0], + }), + ).toEqual({ + height: 20, + width: 100, + }); + }); + it('return specified value if specified', () => { + expect( + getTextDimension( + { + text: SAMPLE_TEXT[0], + }, + { + height: 30, + width: 400, + }, + ), + ).toEqual({ + height: 30, + width: 400, + }); + }); + }); + describe('returns dimension of the given text', () => { + beforeEach(addDummyFill); + afterEach(removeDummyFill); + + it('takes text as argument', () => { + expect( + getTextDimension({ + text: SAMPLE_TEXT[0], + }), + ).toEqual({ + height: 20, + width: 200, + }); + }); + it('accepts provided class via className', () => { + expect( + getTextDimension({ + text: SAMPLE_TEXT[0], + className: 'test-class', + }), + ).toEqual({ + height: 20, + width: 100, // width is 100 after adding class + }); + }); + it('accepts provided style.font', () => { + expect( + getTextDimension({ + text: SAMPLE_TEXT[0], + style: { + font: 'italic 700 30px Lobster', + }, + }), + ).toEqual({ + height: 30, // 20 * (30/20) [fontSize=30] + width: 1125, // 250 [fontFamily=Lobster] * (30/20) [fontSize=30] * 1.5 [fontStyle=italic] * 2 [fontWeight=700] + }); + }); + it('accepts provided style.fontFamily', () => { + expect( + getTextDimension({ + text: SAMPLE_TEXT[0], + style: { + fontFamily: 'Lobster', + }, + }), + ).toEqual({ + height: 20, + width: 250, // (250 [fontFamily=Lobster] + }); + }); + it('accepts provided style.fontSize', () => { + expect( + getTextDimension({ + text: SAMPLE_TEXT[0], + style: { + fontSize: '40px', + }, + }), + ).toEqual({ + height: 40, // 20 [baseHeight] * (40/20) [fontSize=40] + width: 400, // 200 [baseWidth] * (40/20) [fontSize=40] + }); + }); + it('accepts provided style.fontStyle', () => { + expect( + getTextDimension({ + text: SAMPLE_TEXT[0], + style: { + fontStyle: 'italic', + }, + }), + ).toEqual({ + height: 20, + width: 300, // 200 [baseWidth] * 1.5 [fontStyle=italic] + }); + }); + it('accepts provided style.fontWeight', () => { + expect( + getTextDimension({ + text: SAMPLE_TEXT[0], + style: { + fontWeight: 700, + }, + }), + ).toEqual({ + height: 20, + width: 400, // 200 [baseWidth] * 2 [fontWeight=700] + }); + }); + it('accepts provided style.letterSpacing', () => { + expect( + getTextDimension({ + text: SAMPLE_TEXT[0], + style: { + letterSpacing: '1.1', + }, + }), + ).toEqual({ + height: 20, + width: 221, // Ceiling(200 [baseWidth] * 1.1 [letterSpacing=1.1]) + }); + }); + it('handle empty text', () => { + expect( + getTextDimension({ + text: '', + }), + ).toEqual({ + height: 0, + width: 0, + }); + }); + }); + it('cleans up DOM', async () => { + getTextDimension({ + text: SAMPLE_TEXT[0], + }); + + expect(document.querySelectorAll('svg')).toHaveLength(1); + await promiseTimeout(() => {}, 501); + expect(document.querySelector('svg')).toBeNull(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/mergeMargin.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/mergeMargin.test.ts new file mode 100644 index 000000000000..43f45c29f4d9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/mergeMargin.test.ts @@ -0,0 +1,209 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { mergeMargin } from '@superset-ui/core/src'; + +describe('mergeMargin(margin1, margin2, mode?)', () => { + it('combines two given margin', () => { + expect( + mergeMargin( + { + top: 1, + left: 1, + bottom: 2, + right: 2, + }, + { + top: 2, + left: 2, + bottom: 1, + right: 1, + }, + ), + ).toEqual({ + top: 2, + left: 2, + bottom: 2, + right: 2, + }); + }); + describe('default values', () => { + it('works if margin1 is not defined', () => { + expect( + mergeMargin(undefined, { + top: 2, + left: 2, + bottom: 1, + right: 1, + }), + ).toEqual({ + top: 2, + left: 2, + bottom: 1, + right: 1, + }); + }); + it('works if margin2 is not defined', () => { + expect( + mergeMargin( + { + top: 1, + left: 1, + bottom: 2, + right: 2, + }, + undefined, + ), + ).toEqual({ + top: 1, + left: 1, + bottom: 2, + right: 2, + }); + }); + it('use 0 for the side that is not specified', () => { + expect(mergeMargin({}, {})).toEqual({ + top: 0, + left: 0, + bottom: 0, + right: 0, + }); + }); + }); + describe('mode', () => { + it('if mode=expand, returns the larger margin for each side', () => { + expect( + mergeMargin( + { + top: 1, + left: 1, + bottom: 2, + right: 2, + }, + { + top: 2, + left: 2, + bottom: 1, + right: 1, + }, + 'expand', + ), + ).toEqual({ + top: 2, + left: 2, + bottom: 2, + right: 2, + }); + }); + it('if mode=shrink, returns the smaller margin for each side', () => { + expect( + mergeMargin( + { + top: 1, + left: 1, + bottom: 2, + right: 2, + }, + { + top: 2, + left: 2, + bottom: 1, + right: 1, + }, + 'shrink', + ), + ).toEqual({ + top: 1, + left: 1, + bottom: 1, + right: 1, + }); + }); + it('expand by default', () => { + expect( + mergeMargin( + { + top: 1, + left: 1, + bottom: 2, + right: 2, + }, + { + top: 2, + left: 2, + bottom: 1, + right: 1, + }, + ), + ).toEqual({ + top: 2, + left: 2, + bottom: 2, + right: 2, + }); + }); + }); + it('works correctly for negative margins', () => { + expect( + mergeMargin( + { + top: -3, + left: -3, + bottom: -2, + right: -2, + }, + { + top: -2, + left: -2, + bottom: 0, + right: -1, + }, + ), + ).toEqual({ + top: -2, + left: -2, + bottom: 0, + right: -1, + }); + }); + it('if there are NaN or null, use another value', () => { + expect( + mergeMargin( + { + top: 10, + // @ts-ignore to let us pass `null` for testing + left: null, + bottom: 20, + right: NaN, + }, + { + top: NaN, + left: 30, + bottom: null, + right: 40, + }, + ), + ).toEqual({ + top: 10, + left: 30, + bottom: 20, + right: 40, + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/parseLength.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/parseLength.test.ts new file mode 100644 index 000000000000..902e85493bb1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/parseLength.test.ts @@ -0,0 +1,48 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { parseLength } from '@superset-ui/core/src'; + +describe('parseLength(input)', () => { + it('handles string "auto"', () => { + expect(parseLength('auto')).toEqual({ isDynamic: true, multiplier: 1 }); + }); + + it('handles strings with % at the end', () => { + expect(parseLength('100%')).toEqual({ isDynamic: true, multiplier: 1 }); + expect(parseLength('50%')).toEqual({ isDynamic: true, multiplier: 0.5 }); + expect(parseLength('0%')).toEqual({ isDynamic: true, multiplier: 0 }); + }); + + it('handles strings that are numbers with px at the end', () => { + expect(parseLength('100px')).toEqual({ isDynamic: false, value: 100 }); + expect(parseLength('20.5px')).toEqual({ isDynamic: false, value: 20.5 }); + }); + + it('handles strings that are numbers', () => { + expect(parseLength('100')).toEqual({ isDynamic: false, value: 100 }); + expect(parseLength('40.5')).toEqual({ isDynamic: false, value: 40.5 }); + expect(parseLength('20.0')).toEqual({ isDynamic: false, value: 20 }); + }); + + it('handles numbers', () => { + expect(parseLength(100)).toEqual({ isDynamic: false, value: 100 }); + expect(parseLength(0)).toEqual({ isDynamic: false, value: 0 }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/svg/LazyFactory.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/svg/LazyFactory.test.ts new file mode 100644 index 000000000000..84dac58a5938 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/svg/LazyFactory.test.ts @@ -0,0 +1,68 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import LazyFactory from '@superset-ui/core/src/dimension/svg/LazyFactory'; + +describe('LazyFactory', () => { + describe('createInContainer()', () => { + it('creates node in the specified container', () => { + const factory = new LazyFactory(() => document.createElement('div')); + const div = factory.createInContainer(); + const innerDiv = factory.createInContainer(div); + expect(div.parentNode).toEqual(document.body); + expect(innerDiv.parentNode).toEqual(div); + }); + it('reuses existing', () => { + const factoryFn = jest.fn(() => document.createElement('div')); + const factory = new LazyFactory(factoryFn); + const div1 = factory.createInContainer(); + const div2 = factory.createInContainer(); + expect(div1).toBe(div2); + expect(factoryFn).toHaveBeenCalledTimes(1); + }); + }); + describe('removeFromContainer', () => { + it('removes node from container', () => { + const factory = new LazyFactory(() => document.createElement('div')); + const div = factory.createInContainer(); + const innerDiv = factory.createInContainer(div); + expect(div.parentNode).toEqual(document.body); + expect(innerDiv.parentNode).toEqual(div); + factory.removeFromContainer(); + factory.removeFromContainer(div); + expect(div.parentNode).toBeNull(); + expect(innerDiv.parentNode).toBeNull(); + }); + it('does not remove if others are using', () => { + const factory = new LazyFactory(() => document.createElement('div')); + const div1 = factory.createInContainer(); + factory.createInContainer(); + factory.removeFromContainer(); + expect(div1.parentNode).toEqual(document.body); + factory.removeFromContainer(); + expect(div1.parentNode).toBeNull(); + }); + it('does not crash if try to remove already removed node', () => { + const factory = new LazyFactory(() => document.createElement('div')); + factory.createInContainer(); + factory.removeFromContainer(); + expect(() => factory.removeFromContainer()).not.toThrow(); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/svg/getBBoxCeil.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/svg/getBBoxCeil.test.ts new file mode 100644 index 000000000000..fffc41d458c9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/svg/getBBoxCeil.test.ts @@ -0,0 +1,60 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import getBBoxCeil from '@superset-ui/core/src/dimension/svg/getBBoxCeil'; +import createTextNode from '@superset-ui/core/src/dimension/svg/createTextNode'; + +describe('getBBoxCeil(node, defaultDimension)', () => { + describe('returns default dimension if getBBox() is not available', () => { + it('returns default value for default dimension', () => { + expect(getBBoxCeil(createTextNode())).toEqual({ + height: 20, + width: 100, + }); + }); + it('return specified value if specified', () => { + expect( + getBBoxCeil(createTextNode(), { + height: 30, + width: 400, + }), + ).toEqual({ + height: 30, + width: 400, + }); + }); + }); + describe('returns ceiling of the svg element', () => { + it('converts to ceiling if value is not integer', () => { + expect( + getBBoxCeil(createTextNode(), { height: 10.6, width: 11.1 }), + ).toEqual({ + height: 11, + width: 12, + }); + }); + + it('does nothing if value is integer', () => { + expect(getBBoxCeil(createTextNode())).toEqual({ + height: 20, + width: 100, + }); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/svg/updateTextNode.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/svg/updateTextNode.test.ts new file mode 100644 index 000000000000..ffdb94d3f4ea --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dimension/svg/updateTextNode.test.ts @@ -0,0 +1,93 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import updateTextNode from '@superset-ui/core/src/dimension/svg/updateTextNode'; +import createTextNode from '@superset-ui/core/src/dimension/svg/createTextNode'; + +describe('updateTextNode(node, options)', () => { + it('handles empty options', () => { + const node = updateTextNode(createTextNode()); + expect(node.getAttribute('class')).toEqual(''); + expect(node.style.font).toEqual(''); + expect(node.style.fontWeight).toEqual(''); + expect(node.style.fontSize).toEqual(''); + expect(node.style.fontStyle).toEqual(''); + expect(node.style.fontFamily).toEqual(''); + expect(node.style.letterSpacing).toEqual(''); + expect(node.textContent).toEqual(''); + }); + + it('handles setting class', () => { + const node = updateTextNode(createTextNode(), { className: 'abc' }); + expect(node.getAttribute('class')).toEqual('abc'); + expect(node.style.font).toEqual(''); + expect(node.style.fontWeight).toEqual(''); + expect(node.style.fontSize).toEqual(''); + expect(node.style.fontStyle).toEqual(''); + expect(node.style.fontFamily).toEqual(''); + expect(node.style.letterSpacing).toEqual(''); + expect(node.textContent).toEqual(''); + }); + + it('handles setting text', () => { + const node = updateTextNode(createTextNode(), { text: 'abc' }); + expect(node.getAttribute('class')).toEqual(''); + expect(node.style.font).toEqual(''); + expect(node.style.fontWeight).toEqual(''); + expect(node.style.fontSize).toEqual(''); + expect(node.style.fontStyle).toEqual(''); + expect(node.style.fontFamily).toEqual(''); + expect(node.style.letterSpacing).toEqual(''); + expect(node.textContent).toEqual('abc'); + }); + + it('handles setting font', () => { + const node = updateTextNode(createTextNode(), { + style: { + font: 'italic 30px Lobster 700', + }, + }); + expect(node.getAttribute('class')).toEqual(''); + expect(node.style.fontWeight).toEqual('700'); + expect(node.style.fontSize).toEqual('30px'); + expect(node.style.fontStyle).toEqual('italic'); + expect(node.style.fontFamily).toEqual('Lobster'); + expect(node.style.letterSpacing).toEqual(''); + expect(node.textContent).toEqual(''); + }); + + it('handles setting specific font style', () => { + const node = updateTextNode(createTextNode(), { + style: { + fontFamily: 'Lobster', + fontStyle: 'italic', + fontWeight: '700', + fontSize: '30px', + letterSpacing: 1.1, + }, + }); + expect(node.getAttribute('class')).toEqual(''); + expect(node.style.fontWeight).toEqual('700'); + expect(node.style.fontSize).toEqual('30px'); + expect(node.style.fontStyle).toEqual('italic'); + expect(node.style.fontFamily).toEqual('Lobster'); + expect(node.style.letterSpacing).toEqual('1.1'); + expect(node.textContent).toEqual(''); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dynamic-plugins/shared-modules.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dynamic-plugins/shared-modules.test.ts new file mode 100644 index 000000000000..ea993d00f81b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/dynamic-plugins/shared-modules.test.ts @@ -0,0 +1,93 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { defineSharedModule, defineSharedModules, reset } from '../../src'; + +describe('shared modules', () => { + afterEach(() => { + reset(); + }); + + it('assigns to window', async () => { + const fakeModule = { foo: 'bar' }; + const fetchModule = jest.fn().mockResolvedValue(fakeModule); + + await defineSharedModule('test-module', fetchModule); + + expect((window as any)['__superset__/test-module']).toStrictEqual( + fakeModule, + ); + }); + + it('resolves to the same reference every time', async () => { + const fakeModule = { foo: 'bar' }; + const fetchModule = jest.fn().mockResolvedValue(fakeModule); + + const result1 = await defineSharedModule('test-module', fetchModule); + const result2 = await defineSharedModule('test-module', fetchModule); + + expect(result1).toStrictEqual(fakeModule); + expect(result2).toStrictEqual(fakeModule); + }); + + it('does not redefine unnecessarily', async () => { + const fakeModule = { foo: 'bar' }; + const fetchModule = jest.fn().mockResolvedValue(fakeModule); + const duplicateFetchModule = jest.fn().mockResolvedValue(fakeModule); + + const result1 = await defineSharedModule('test-module', fetchModule); + const result2 = await defineSharedModule( + 'test-module', + duplicateFetchModule, + ); + + expect(result1).toStrictEqual(fakeModule); + expect(result2).toStrictEqual(fakeModule); + expect(duplicateFetchModule).not.toHaveBeenCalled(); + }); + + it('deduplicates in-progress definitions', async () => { + const fakeModule = { foo: 'bar' }; + // get a promise that actually takes a moment; + const fetchModule = jest + .fn() + .mockImplementation(() => + Promise.resolve(setImmediate).then(() => fakeModule), + ); + + const promise1 = defineSharedModule('test-module', fetchModule); + const promise2 = defineSharedModule('test-module', fetchModule); + const [result1, result2] = await Promise.all([promise1, promise2]); + + expect(fetchModule).toHaveBeenCalledTimes(1); + expect(result1).toStrictEqual(result2); + }); + + it('shares a map of modules', async () => { + const foo = { foo: 'bar' }; + const fizz = { fizz: 'buzz' }; + await defineSharedModules({ + 'module-foo': async () => foo, + 'module-fizz': async () => fizz, + }); + + expect((window as any)['__superset__/module-foo']).toEqual(foo); + expect((window as any)['__superset__/module-fizz']).toEqual(fizz); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/fixtures.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/fixtures.ts new file mode 100644 index 000000000000..2588fc2b77d3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/fixtures.ts @@ -0,0 +1,39 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { AdhocMetric, GenericDataType } from '../src'; + +export const NUM_METRIC: AdhocMetric = { + expressionType: 'SIMPLE', + label: 'Sum(num)', + column: { + id: 336, + type: 'BIGINT', + type_generic: GenericDataType.NUMERIC, + column_name: 'num', + verbose_name: null, + description: null, + expression: '', + filterable: false, + groupby: false, + is_dttm: false, + database_expression: null, + python_date_format: null, + }, + aggregate: 'SUM', +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/index.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/index.test.ts new file mode 100644 index 000000000000..7debecea3d34 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/index.test.ts @@ -0,0 +1,46 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + ExtensibleFunction, + Plugin, + Preset, + Registry, + RegistryWithDefaultKey, + convertKeysToCamelCase, + isDefined, + isRequired, + makeSingleton, +} from '@superset-ui/core/src'; + +describe('index', () => { + it('exports modules', () => { + [ + ExtensibleFunction, + Plugin, + Preset, + Registry, + RegistryWithDefaultKey, + convertKeysToCamelCase, + isDefined, + isRequired, + makeSingleton, + ].forEach(x => expect(x).toBeDefined()); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/math-expression/index.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/math-expression/index.test.ts new file mode 100644 index 000000000000..161f9f8c9c15 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/math-expression/index.test.ts @@ -0,0 +1,102 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + evalExpression, + isValidExpression, +} from '@superset-ui/core/src/math-expression'; + +test('evalExpression evaluates constants correctly', () => { + expect(evalExpression('0', 10)).toEqual(0); + expect(evalExpression('0.123456', 0)).toEqual(0.123456); + expect(evalExpression('789', 100)).toEqual(789); +}); + +test('evalExpression evaluates infinities correctly', () => { + const formula = 'x/0'; + expect(evalExpression(formula, 1)).toEqual(Infinity); + expect(evalExpression(formula, -1)).toEqual(-Infinity); +}); + +test('evalExpression evaluates powers correctly', () => { + const formula = '2^(x/2)*100'; + expect(evalExpression(formula, 0)).toEqual(100); + expect(evalExpression(formula, 1)).toEqual(141.4213562373095); + expect(evalExpression(formula, 2)).toEqual(200); +}); + +test('evalExpression ignores whitespace and variables on left hand side of equals sign', () => { + expect(evalExpression('y=x+1', 1)).toEqual(2); + expect(evalExpression('y = x - 1', 1)).toEqual(0); +}); + +test('evalExpression evaluates custom operators correctly', () => { + const equalsExpression = 'x == 10'; + expect(evalExpression(equalsExpression, 5)).toEqual(0); + expect(evalExpression(equalsExpression, 10)).toEqual(1); + expect(evalExpression(equalsExpression, 10.1)).toEqual(0); + + const closedRange = '(x > 0) and (x < 10)'; + expect(evalExpression(closedRange, 0)).toEqual(0); + expect(evalExpression(closedRange, 5)).toEqual(1); + expect(evalExpression(closedRange, 10)).toEqual(0); + + const openRange = '(x >= 0) and (x <= 10)'; + expect(evalExpression(openRange, -0.1)).toEqual(0); + expect(evalExpression(openRange, 0)).toEqual(1); + expect(evalExpression(openRange, 5)).toEqual(1); + expect(evalExpression(openRange, 10)).toEqual(1); + expect(evalExpression(openRange, 10.1)).toEqual(0); + + const orRange = '(x < 0) or (x > 10)'; + expect(evalExpression(orRange, -0.1)).toEqual(1); + expect(evalExpression(orRange, 0)).toEqual(0); + expect(evalExpression(orRange, 5)).toEqual(0); + expect(evalExpression(orRange, 10)).toEqual(0); + expect(evalExpression(orRange, 10.1)).toEqual(1); + + // other less used operators + expect(evalExpression('5 & x', 3)).toEqual(1); + expect(evalExpression('5 | x', 3)).toEqual(7); + expect(evalExpression('5 xor x', 2)).toEqual(7); + + // complex combinations + const complexExpression = + '20.51*(x<1577836800000)+20.2((x<15805152000000)&(x>=1577836800000))'; + expect(evalExpression(complexExpression, 0)).toEqual(20.51); + expect(evalExpression(complexExpression, 1000)).toEqual(20.51); + expect(evalExpression(complexExpression, 1577836800000)).toEqual(20.2); + expect(evalExpression(complexExpression, 15805151999999)).toEqual(20.2); + expect(evalExpression(complexExpression, 15805152000000)).toEqual(0); + expect(evalExpression(complexExpression, 15805159000000)).toEqual(0); +}); + +test('isValidExpression correctly identifies invalid formulas', () => { + expect(isValidExpression('foobar')).toEqual(false); + expect(isValidExpression('x+')).toEqual(false); + expect(isValidExpression('z+1')).toEqual(false); +}); + +test('isValidExpression correctly identifies valid formulas', () => { + expect(isValidExpression('x')).toEqual(true); + expect(isValidExpression('x+1')).toEqual(true); + expect(isValidExpression('y=x-1')).toEqual(true); + expect(isValidExpression('y = x - 1')).toEqual(true); + expect(isValidExpression('y = (x < 100 and x > 0) * 100')).toEqual(true); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/models/ExtensibleFunction.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/models/ExtensibleFunction.test.ts new file mode 100644 index 000000000000..96cede80aab7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/models/ExtensibleFunction.test.ts @@ -0,0 +1,87 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ExtensibleFunction } from '@superset-ui/core/src'; + +describe('ExtensibleFunction', () => { + interface Func1 { + (): number; + } + + class Func1 extends ExtensibleFunction { + constructor(x: unknown) { + super(() => x); // closure + } + } + + interface Func2 { + (): number; + } + + class Func2 extends ExtensibleFunction { + x: unknown; + + constructor(x: unknown) { + super(() => this.x); // arrow function, refer to its own field + this.x = x; + } + + // eslint-disable-next-line class-methods-use-this + hi() { + return 'hi'; + } + } + + class Func3 extends ExtensibleFunction { + x: unknown; + + constructor(x: unknown) { + // @ts-ignore + super(function customName() { + // @ts-ignore + return customName.x as unknown; + }); // named function + this.x = x; + } + } + + it('its subclass is an instance of Function', () => { + expect(Func1).toBeInstanceOf(Function); + expect(Func2).toBeInstanceOf(Function); + expect(Func3).toBeInstanceOf(Function); + }); + + const func1 = new Func1(100); + const func2 = new Func2(100); + const func3 = new Func3(100); + + it('an instance of its subclass is executable like regular function', () => { + expect(func1()).toEqual(100); + expect(func2()).toEqual(100); + }); + + it('its subclass behaves like regular class with its own fields and functions', () => { + expect(func2.x).toEqual(100); + expect(func2.hi()).toEqual('hi'); + }); + + it('its subclass can set name by passing named function to its constructor', () => { + expect(func3.name).toEqual('customName'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/models/Plugin.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/models/Plugin.test.ts new file mode 100644 index 000000000000..d2251ccc81fd --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/models/Plugin.test.ts @@ -0,0 +1,79 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Plugin } from '@superset-ui/core/src'; + +describe('Plugin', () => { + it('exists', () => { + expect(Plugin).toBeDefined(); + }); + + describe('new Plugin()', () => { + it('creates a new plugin', () => { + const plugin = new Plugin(); + expect(plugin).toBeInstanceOf(Plugin); + }); + }); + + describe('.configure(config, replace)', () => { + it('extends the default config with given config when replace is not set or false', () => { + const plugin = new Plugin(); + plugin.configure({ key: 'abc', foo: 'bar' }); + plugin.configure({ key: 'def' }); + expect(plugin.config).toEqual({ key: 'def', foo: 'bar' }); + }); + it('replaces the default config with given config when replace is true', () => { + const plugin = new Plugin(); + plugin.configure({ key: 'abc', foo: 'bar' }); + plugin.configure({ key: 'def' }, true); + expect(plugin.config).toEqual({ key: 'def' }); + }); + it('returns the plugin itself', () => { + const plugin = new Plugin(); + expect(plugin.configure({ key: 'abc' })).toBe(plugin); + }); + }); + + describe('.resetConfig()', () => { + it('resets config back to default', () => { + const plugin = new Plugin(); + plugin.configure({ key: 'abc', foo: 'bar' }); + plugin.resetConfig(); + expect(plugin.config).toEqual({}); + }); + it('returns the plugin itself', () => { + const plugin = new Plugin(); + expect(plugin.resetConfig()).toBe(plugin); + }); + }); + + describe('.register()', () => { + it('returns the plugin itself', () => { + const plugin = new Plugin(); + expect(plugin.register()).toBe(plugin); + }); + }); + + describe('.unregister()', () => { + it('returns the plugin itself', () => { + const plugin = new Plugin(); + expect(plugin.unregister()).toBe(plugin); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/models/Preset.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/models/Preset.test.ts new file mode 100644 index 000000000000..9b887e744801 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/models/Preset.test.ts @@ -0,0 +1,86 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Plugin, Preset } from '@superset-ui/core/src'; + +describe('Preset', () => { + it('exists', () => { + expect(Preset).toBeDefined(); + }); + + describe('new Preset()', () => { + it('creates new preset', () => { + const preset = new Preset(); + expect(preset).toBeInstanceOf(Preset); + }); + }); + + describe('.register()', () => { + it('register all listed presets then plugins', () => { + const values: number[] = []; + class Plugin1 extends Plugin { + register() { + values.push(1); + + return this; + } + } + class Plugin2 extends Plugin { + register() { + values.push(2); + + return this; + } + } + class Plugin3 extends Plugin { + register() { + values.push(3); + + return this; + } + } + class Plugin4 extends Plugin { + register() { + const { key } = this.config; + values.push(key as number); + + return this; + } + } + + const preset1 = new Preset({ + plugins: [new Plugin1()], + }); + const preset2 = new Preset({ + plugins: [new Plugin2()], + }); + const preset3 = new Preset({ + presets: [preset1, preset2], + plugins: [new Plugin3(), new Plugin4().configure({ key: 9 })], + }); + preset3.register(); + expect(values).toEqual([1, 2, 3, 9]); + }); + + it('returns itself', () => { + const preset = new Preset(); + expect(preset.register()).toBe(preset); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/models/Registry.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/models/Registry.test.ts new file mode 100644 index 000000000000..88c34c61008e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/models/Registry.test.ts @@ -0,0 +1,466 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint no-console: 0 */ +import mockConsole from 'jest-mock-console'; +import { Registry, OverwritePolicy } from '@superset-ui/core/src'; + +const loader = () => 'testValue'; + +describe('Registry', () => { + it('exists', () => { + expect(Registry !== undefined).toBe(true); + }); + + describe('new Registry(config)', () => { + it('can create a new registry when config.name is not given', () => { + const registry = new Registry(); + expect(registry).toBeInstanceOf(Registry); + }); + it('can create a new registry when config.name is given', () => { + const registry = new Registry({ name: 'abc' }); + expect(registry).toBeInstanceOf(Registry); + expect(registry.name).toBe('abc'); + }); + }); + + describe('.clear()', () => { + it('clears all registered items', () => { + const registry = new Registry(); + registry.registerValue('a', 'testValue'); + registry.clear(); + expect(Object.keys(registry.items)).toHaveLength(0); + expect(Object.keys(registry.promises)).toHaveLength(0); + }); + it('returns the registry itself', () => { + const registry = new Registry(); + expect(registry.clear()).toBe(registry); + }); + }); + + describe('.has(key)', () => { + it('returns true if an item with the given key exists', () => { + const registry = new Registry(); + registry.registerValue('a', 'testValue'); + expect(registry.has('a')).toBe(true); + registry.registerLoader('b', () => 'testValue2'); + expect(registry.has('b')).toBe(true); + }); + it('returns false if an item with the given key does not exist', () => { + const registry = new Registry(); + expect(registry.has('a')).toBe(false); + }); + }); + + describe('.registerValue(key, value)', () => { + it('registers the given value with the given key', () => { + const registry = new Registry(); + registry.registerValue('a', 'testValue'); + expect(registry.has('a')).toBe(true); + expect(registry.get('a')).toBe('testValue'); + }); + it('does not overwrite if value is exactly the same', () => { + const registry = new Registry(); + const value = { a: 1 }; + registry.registerValue('a', value); + const promise1 = registry.getAsPromise('a'); + registry.registerValue('a', value); + const promise2 = registry.getAsPromise('a'); + expect(promise1).toBe(promise2); + registry.registerValue('a', { a: 1 }); + const promise3 = registry.getAsPromise('a'); + expect(promise1).not.toBe(promise3); + }); + it('overwrites item with loader', () => { + const registry = new Registry(); + registry.registerLoader('a', () => 'ironman'); + expect(registry.get('a')).toBe('ironman'); + registry.registerValue('a', 'hulk'); + expect(registry.get('a')).toBe('hulk'); + }); + it('returns the registry itself', () => { + const registry = new Registry(); + expect(registry.registerValue('a', 'testValue')).toBe(registry); + }); + }); + + describe('.registerLoader(key, loader)', () => { + it('registers the given loader with the given key', () => { + const registry = new Registry(); + registry.registerLoader('a', () => 'testValue'); + expect(registry.has('a')).toBe(true); + expect(registry.get('a')).toBe('testValue'); + }); + it('does not overwrite if loader is exactly the same', () => { + const registry = new Registry(); + registry.registerLoader('a', loader); + const promise1 = registry.getAsPromise('a'); + registry.registerLoader('a', loader); + const promise2 = registry.getAsPromise('a'); + expect(promise1).toBe(promise2); + registry.registerLoader('a', () => 'testValue'); + const promise3 = registry.getAsPromise('a'); + expect(promise1).not.toBe(promise3); + }); + it('overwrites item with value', () => { + const registry = new Registry(); + registry.registerValue('a', 'hulk'); + expect(registry.get('a')).toBe('hulk'); + registry.registerLoader('a', () => 'ironman'); + expect(registry.get('a')).toBe('ironman'); + }); + it('returns the registry itself', () => { + const registry = new Registry(); + expect(registry.registerLoader('a', () => 'testValue')).toBe(registry); + }); + }); + + describe('.get(key)', () => { + it('given the key, returns the value if the item is a value', () => { + const registry = new Registry(); + registry.registerValue('a', 'testValue'); + expect(registry.get('a')).toBe('testValue'); + }); + it('given the key, returns the result of the loader function if the item is a loader', () => { + const registry = new Registry(); + registry.registerLoader('b', () => 'testValue2'); + expect(registry.get('b')).toBe('testValue2'); + }); + it('returns undefined if the item with specified key does not exist', () => { + const registry = new Registry(); + expect(registry.get('a')).toBeUndefined(); + }); + it('If the key was registered multiple times, returns the most recent item.', () => { + const registry = new Registry(); + registry.registerValue('a', 'testValue'); + expect(registry.get('a')).toBe('testValue'); + registry.registerLoader('a', () => 'newValue'); + expect(registry.get('a')).toBe('newValue'); + }); + }); + + describe('.getAsPromise(key)', () => { + it('given the key, returns a promise of item value if the item is a value', () => { + const registry = new Registry(); + registry.registerValue('a', 'testValue'); + + return registry + .getAsPromise('a') + .then(value => expect(value).toBe('testValue')); + }); + it('given the key, returns a promise of result of the loader function if the item is a loader', () => { + const registry = new Registry(); + registry.registerLoader('a', () => 'testValue'); + + return registry + .getAsPromise('a') + .then(value => expect(value).toBe('testValue')); + }); + it('returns same promise object for the same key unless user re-registers new value with the key.', () => { + const registry = new Registry(); + registry.registerLoader('a', () => 'testValue'); + const promise1 = registry.getAsPromise('a'); + const promise2 = registry.getAsPromise('a'); + expect(promise1).toBe(promise2); + }); + it('returns a rejected promise if the item with specified key does not exist', () => { + const registry = new Registry(); + + return registry.getAsPromise('a').then(null, (err: Error) => { + expect(err.toString()).toEqual( + 'Error: Item with key "a" is not registered.', + ); + }); + }); + it('If the key was registered multiple times, returns a promise of the most recent item.', async () => { + const registry = new Registry(); + registry.registerValue('a', 'testValue'); + expect(await registry.getAsPromise('a')).toBe('testValue'); + registry.registerLoader('a', () => 'newValue'); + expect(await registry.getAsPromise('a')).toBe('newValue'); + }); + }); + + describe('.getMap()', () => { + it('returns key-value map as plain object', () => { + const registry = new Registry(); + registry.registerValue('a', 'cat'); + registry.registerLoader('b', () => 'dog'); + expect(registry.getMap()).toEqual({ + a: 'cat', + b: 'dog', + }); + }); + }); + + describe('.getMapAsPromise()', () => { + it('returns a promise of key-value map', () => { + const registry = new Registry(); + registry.registerValue('a', 'test1'); + registry.registerLoader('b', () => 'test2'); + registry.registerLoader('c', () => Promise.resolve('test3')); + + return registry.getMapAsPromise().then(map => + expect(map).toEqual({ + a: 'test1', + b: 'test2', + c: 'test3', + }), + ); + }); + }); + + describe('.keys()', () => { + it('returns an array of keys', () => { + const registry = new Registry(); + registry.registerValue('a', 'testValue'); + registry.registerLoader('b', () => 'test2'); + expect(registry.keys()).toEqual(['a', 'b']); + }); + }); + + describe('.values()', () => { + it('returns an array of values', () => { + const registry = new Registry(); + registry.registerValue('a', 'test1'); + registry.registerLoader('b', () => 'test2'); + expect(registry.values()).toEqual(['test1', 'test2']); + }); + }); + + describe('.valuesAsPromise()', () => { + it('returns a Promise of an array { key, value }', () => { + const registry = new Registry(); + registry.registerValue('a', 'test1'); + registry.registerLoader('b', () => 'test2'); + registry.registerLoader('c', () => Promise.resolve('test3')); + + return registry + .valuesAsPromise() + .then(entries => expect(entries).toEqual(['test1', 'test2', 'test3'])); + }); + }); + + describe('.entries()', () => { + it('returns an array of { key, value }', () => { + const registry = new Registry(); + registry.registerValue('a', 'test1'); + registry.registerLoader('b', () => 'test2'); + expect(registry.entries()).toEqual([ + { key: 'a', value: 'test1' }, + { key: 'b', value: 'test2' }, + ]); + }); + }); + + describe('.entriesAsPromise()', () => { + it('returns a Promise of an array { key, value }', () => { + const registry = new Registry(); + registry.registerValue('a', 'test1'); + registry.registerLoader('b', () => 'test2'); + registry.registerLoader('c', () => Promise.resolve('test3')); + + return registry.entriesAsPromise().then(entries => + expect(entries).toEqual([ + { key: 'a', value: 'test1' }, + { key: 'b', value: 'test2' }, + { key: 'c', value: 'test3' }, + ]), + ); + }); + }); + + describe('.remove(key)', () => { + it('removes the item with given key', () => { + const registry = new Registry(); + registry.registerValue('a', 'testValue'); + registry.remove('a'); + expect(registry.get('a')).toBeUndefined(); + }); + it('does not throw error if the key does not exist', () => { + const registry = new Registry(); + expect(() => registry.remove('a')).not.toThrow(); + }); + it('returns itself', () => { + const registry = new Registry(); + registry.registerValue('a', 'testValue'); + expect(registry.remove('a')).toBe(registry); + }); + }); + + describe('config.overwritePolicy', () => { + describe('=ALLOW', () => { + describe('.registerValue(key, value)', () => { + it('registers normally', () => { + const restoreConsole = mockConsole(); + const registry = new Registry(); + registry.registerValue('a', 'testValue'); + expect(() => registry.registerValue('a', 'testValue2')).not.toThrow(); + expect(registry.get('a')).toEqual('testValue2'); + expect(console.warn).not.toHaveBeenCalled(); + restoreConsole(); + }); + }); + describe('.registerLoader(key, loader)', () => { + it('registers normally', () => { + const restoreConsole = mockConsole(); + const registry = new Registry(); + registry.registerLoader('a', () => 'testValue'); + expect(() => + registry.registerLoader('a', () => 'testValue2'), + ).not.toThrow(); + expect(registry.get('a')).toEqual('testValue2'); + expect(console.warn).not.toHaveBeenCalled(); + restoreConsole(); + }); + }); + }); + describe('=WARN', () => { + describe('.registerValue(key, value)', () => { + it('warns when overwrite', () => { + const restoreConsole = mockConsole(); + const registry = new Registry({ + overwritePolicy: OverwritePolicy.WARN, + }); + registry.registerValue('a', 'testValue'); + expect(() => registry.registerValue('a', 'testValue2')).not.toThrow(); + expect(registry.get('a')).toEqual('testValue2'); + expect(console.warn).toHaveBeenCalled(); + restoreConsole(); + }); + }); + describe('.registerLoader(key, loader)', () => { + it('warns when overwrite', () => { + const restoreConsole = mockConsole(); + const registry = new Registry({ + overwritePolicy: OverwritePolicy.WARN, + }); + registry.registerLoader('a', () => 'testValue'); + expect(() => + registry.registerLoader('a', () => 'testValue2'), + ).not.toThrow(); + expect(registry.get('a')).toEqual('testValue2'); + expect(console.warn).toHaveBeenCalled(); + restoreConsole(); + }); + }); + }); + describe('=PROHIBIT', () => { + describe('.registerValue(key, value)', () => { + it('throws error when overwrite', () => { + const registry = new Registry({ + overwritePolicy: OverwritePolicy.PROHIBIT, + }); + registry.registerValue('a', 'testValue'); + expect(() => registry.registerValue('a', 'testValue2')).toThrow(); + }); + }); + describe('.registerLoader(key, loader)', () => { + it('warns when overwrite', () => { + const registry = new Registry({ + overwritePolicy: OverwritePolicy.PROHIBIT, + }); + registry.registerLoader('a', () => 'testValue'); + expect(() => + registry.registerLoader('a', () => 'testValue2'), + ).toThrow(); + }); + }); + }); + }); + + describe('listeners', () => { + let registry = new Registry(); + let listener = jest.fn(); + beforeEach(() => { + registry = new Registry(); + listener = jest.fn(); + registry.addListener(listener); + }); + + it('calls the listener when a value is registered', () => { + registry.registerValue('foo', 'bar'); + expect(listener).toBeCalledWith(['foo']); + }); + + it('calls the listener when a loader is registered', () => { + registry.registerLoader('foo', () => 'bar'); + expect(listener).toBeCalledWith(['foo']); + }); + + it('calls the listener when a value is overriden', () => { + registry.registerValue('foo', 'bar'); + listener.mockClear(); + registry.registerValue('foo', 'baz'); + expect(listener).toBeCalledWith(['foo']); + }); + + it('calls the listener when a value is removed', () => { + registry.registerValue('foo', 'bar'); + listener.mockClear(); + registry.remove('foo'); + expect(listener).toBeCalledWith(['foo']); + }); + + it('does not call the listener when a value is not actually removed', () => { + registry.remove('foo'); + expect(listener).not.toBeCalled(); + }); + + it('calls the listener when registry is cleared', () => { + registry.registerValue('foo', 'bar'); + registry.registerLoader('fluz', () => 'baz'); + listener.mockClear(); + registry.clear(); + expect(listener).toBeCalledWith(['foo', 'fluz']); + }); + + it('removes listeners correctly', () => { + registry.removeListener(listener); + registry.registerValue('foo', 'bar'); + expect(listener).not.toBeCalled(); + }); + + describe('with a broken listener', () => { + let restoreConsole: any; + beforeEach(() => { + restoreConsole = mockConsole(); + }); + afterEach(() => { + restoreConsole(); + }); + + it('keeps working', () => { + const errorListener = jest.fn().mockImplementation(() => { + throw new Error('test error'); + }); + const lastListener = jest.fn(); + + registry.addListener(errorListener); + registry.addListener(lastListener); + registry.registerValue('foo', 'bar'); + + expect(listener).toBeCalledWith(['foo']); + expect(errorListener).toBeCalledWith(['foo']); + expect(lastListener).toBeCalledWith(['foo']); + expect(console.error).toBeCalled(); + }); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/models/RegistryWithDefaultKey.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/models/RegistryWithDefaultKey.test.ts new file mode 100644 index 000000000000..b334f4d0bfa9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/models/RegistryWithDefaultKey.test.ts @@ -0,0 +1,190 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Registry, RegistryWithDefaultKey } from '@superset-ui/core/src'; + +describe('RegistryWithDefaultKey', () => { + let registry: RegistryWithDefaultKey; + + beforeEach(() => { + registry = new RegistryWithDefaultKey(); + }); + + it('exists', () => { + expect(RegistryWithDefaultKey).toBeDefined(); + }); + + describe('new RegistryWithDefaultKey(config)', () => { + it('returns a class that extends from Registry', () => { + expect(registry).toBeInstanceOf(Registry); + }); + }); + + describe('.clear()', () => { + it('also resets default key', () => { + registry.setDefaultKey('abc'); + registry.clear(); + expect(registry.getDefaultKey()).toBeUndefined(); + }); + it('returns itself', () => { + expect(registry.clear()).toBe(registry); + }); + }); + + describe('.get()', () => { + beforeEach(() => { + registry + .registerValue('abc', 100) + .registerValue('def', 200) + .setDefaultKey('abc'); + }); + it('.get() returns value from default key', () => { + expect(registry.get()).toEqual(100); + }); + it('.get(key) returns value from specified key', () => { + expect(registry.get('def')).toEqual(200); + }); + it('returns undefined if no key was given and there is no default key', () => { + registry.clearDefaultKey(); + expect(registry.get()).toBeUndefined(); + }); + }); + + describe('.getDefaultKey()', () => { + it('returns defaultKey', () => { + registry.setDefaultKey('abc'); + expect(registry.getDefaultKey()).toEqual('abc'); + }); + }); + + describe('.setDefaultKey(key)', () => { + it('set the default key', () => { + registry.setDefaultKey('abc'); + expect(registry.defaultKey).toEqual('abc'); + }); + it('returns itself', () => { + expect(registry.setDefaultKey('ghi')).toBe(registry); + }); + }); + + describe('.clearDefaultKey()', () => { + it('set the default key to undefined', () => { + registry.clearDefaultKey(); + expect(registry.defaultKey).toBeUndefined(); + }); + it('returns itself', () => { + expect(registry.clearDefaultKey()).toBe(registry); + }); + }); + + describe('config.defaultKey', () => { + describe('when not set', () => { + it(`After creation, default key is undefined`, () => { + expect(registry.defaultKey).toBeUndefined(); + }); + it('.clear() reset defaultKey to undefined', () => { + registry.setDefaultKey('abc'); + registry.clear(); + expect(registry.getDefaultKey()).toBeUndefined(); + }); + }); + describe('when config.initialDefaultKey is set', () => { + const registry2 = new RegistryWithDefaultKey({ + initialDefaultKey: 'def', + }); + it(`After creation, default key is undefined`, () => { + expect(registry2.defaultKey).toEqual('def'); + }); + it('.clear() reset defaultKey to this config.defaultKey', () => { + registry2.setDefaultKey('abc'); + registry2.clear(); + expect(registry2.getDefaultKey()).toEqual('def'); + }); + }); + }); + + describe('config.setFirstItemAsDefault', () => { + describe('when true', () => { + const registry2 = new RegistryWithDefaultKey({ + setFirstItemAsDefault: true, + }); + beforeEach(() => { + registry2.clear(); + }); + describe('.registerValue(key, value)', () => { + it('sets the default key to this key if default key is not set', () => { + registry2.registerValue('abc', 100); + expect(registry2.getDefaultKey()).toEqual('abc'); + }); + it('does not modify the default key if already set', () => { + registry2.setDefaultKey('def').registerValue('abc', 100); + expect(registry2.getDefaultKey()).toEqual('def'); + }); + it('returns itself', () => { + expect(registry2.registerValue('ghi', 300)).toBe(registry2); + }); + }); + describe('.registerLoader(key, loader)', () => { + it('sets the default key to this key if default key is not set', () => { + registry2.registerLoader('abc', () => 100); + expect(registry2.getDefaultKey()).toEqual('abc'); + }); + it('does not modify the default key if already set', () => { + registry2.setDefaultKey('def').registerLoader('abc', () => 100); + expect(registry2.getDefaultKey()).toEqual('def'); + }); + it('returns itself', () => { + expect(registry2.registerLoader('ghi', () => 300)).toBe(registry2); + }); + }); + }); + describe('when false', () => { + const registry2 = new RegistryWithDefaultKey({ + setFirstItemAsDefault: false, + }); + beforeEach(() => { + registry2.clear(); + }); + describe('.registerValue(key, value)', () => { + it('does not modify default key', () => { + registry2.registerValue('abc', 100); + expect(registry2.defaultKey).toBeUndefined(); + registry2.setDefaultKey('def'); + registry2.registerValue('ghi', 300); + expect(registry2.defaultKey).toEqual('def'); + }); + it('returns itself', () => { + expect(registry2.registerValue('ghi', 300)).toBe(registry2); + }); + }); + describe('.registerLoader(key, loader)', () => { + it('does not modify default key', () => { + registry2.registerValue('abc', () => 100); + expect(registry2.defaultKey).toBeUndefined(); + registry2.setDefaultKey('def'); + registry2.registerValue('ghi', () => 300); + expect(registry2.defaultKey).toEqual('def'); + }); + it('returns itself', () => { + expect(registry2.registerLoader('ghi', () => 300)).toBe(registry2); + }); + }); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/NumberFormatter.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/NumberFormatter.test.ts new file mode 100644 index 000000000000..55f7a97c76c0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/NumberFormatter.test.ts @@ -0,0 +1,90 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { NumberFormatter } from '@superset-ui/core/src/number-format'; + +describe('NumberFormatter', () => { + describe('new NumberFormatter(config)', () => { + it('requires config.id', () => { + expect( + () => + // @ts-ignore + new NumberFormatter({ + formatFunc: () => '', + }), + ).toThrow(); + }); + it('requires config.formatFunc', () => { + expect( + () => + // @ts-ignore + new NumberFormatter({ + id: 'my_format', + }), + ).toThrow(); + }); + }); + describe('formatter is also a format function itself', () => { + const formatter = new NumberFormatter({ + id: 'fixed_3', + formatFunc: value => value.toFixed(3), + }); + it('returns formatted value', () => { + expect(formatter(12345.67)).toEqual('12345.670'); + }); + it('formatter(value) is the same with formatter.format(value)', () => { + const value = 12345.67; + expect(formatter(value)).toEqual(formatter.format(value)); + }); + }); + describe('.format(value)', () => { + const formatter = new NumberFormatter({ + id: 'fixed_3', + formatFunc: value => value.toFixed(3), + }); + it('handles null', () => { + expect(formatter.format(null)).toEqual('null'); + }); + it('handles undefined', () => { + expect(formatter.format(undefined)).toEqual('undefined'); + }); + it('handles NaN', () => { + expect(formatter.format(NaN)).toEqual('NaN'); + }); + it('handles positive and negative infinity', () => { + expect(formatter.format(Number.POSITIVE_INFINITY)).toEqual('∞'); + expect(formatter.format(Number.NEGATIVE_INFINITY)).toEqual('-∞'); + }); + it('otherwise returns formatted value', () => { + expect(formatter.format(12345.67)).toEqual('12345.670'); + }); + }); + describe('.preview(value)', () => { + const formatter = new NumberFormatter({ + id: 'fixed_2', + formatFunc: value => value.toFixed(2), + }); + it('returns string comparing value before and after formatting', () => { + expect(formatter.preview(100)).toEqual('100 => 100.00'); + }); + it('uses the default preview value if not specified', () => { + expect(formatter.preview()).toEqual('12345.432 => 12345.43'); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/NumberFormatterRegistry.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/NumberFormatterRegistry.test.ts new file mode 100644 index 000000000000..0994c283cee6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/NumberFormatterRegistry.test.ts @@ -0,0 +1,87 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + NumberFormats, + NumberFormatter, + NumberFormatterRegistry, +} from '@superset-ui/core/src'; + +describe('NumberFormatterRegistry', () => { + let registry: NumberFormatterRegistry; + beforeEach(() => { + registry = new NumberFormatterRegistry(); + }); + it('has SMART_NUMBER as default formatter out of the box', () => { + expect(registry.getDefaultKey()).toBe(NumberFormats.SMART_NUMBER); + }); + describe('.get(format)', () => { + it('creates and returns a new formatter if does not exist', () => { + const formatter = registry.get('.2f'); + expect(formatter).toBeInstanceOf(NumberFormatter); + expect(formatter.format(100)).toEqual('100.00'); + }); + it('returns an existing formatter if already exists', () => { + const formatter = registry.get('.2f'); + const formatter2 = registry.get('.2f'); + expect(formatter).toBe(formatter2); + }); + it('falls back to default format if format is not specified', () => { + registry.setDefaultKey('.1f'); + const formatter = registry.get(); + expect(formatter.format(100)).toEqual('100.0'); + }); + it('falls back to default format if format is null', () => { + registry.setDefaultKey('.1f'); + // @ts-ignore + const formatter = registry.get(null); + expect(formatter.format(100)).toEqual('100.0'); + }); + it('falls back to default format if format is undefined', () => { + registry.setDefaultKey('.1f'); + const formatter = registry.get(undefined); + expect(formatter.format(100)).toEqual('100.0'); + }); + it('falls back to default format if format is empty string', () => { + registry.setDefaultKey('.1f'); + const formatter = registry.get(''); + expect(formatter.format(100)).toEqual('100.0'); + }); + it('removes leading and trailing spaces from format', () => { + const formatter = registry.get(' .2f'); + expect(formatter).toBeInstanceOf(NumberFormatter); + expect(formatter.format(100)).toEqual('100.00'); + const formatter2 = registry.get('.2f '); + expect(formatter2).toBeInstanceOf(NumberFormatter); + expect(formatter2.format(100)).toEqual('100.00'); + const formatter3 = registry.get(' .2f '); + expect(formatter3).toBeInstanceOf(NumberFormatter); + expect(formatter3.format(100)).toEqual('100.00'); + }); + }); + describe('.format(format, value)', () => { + it('return the value with the specified format', () => { + expect(registry.format('.2f', 100)).toEqual('100.00'); + expect(registry.format(',d', 100)).toEqual('100'); + }); + it('falls back to the default formatter if the format is undefined', () => { + expect(registry.format(undefined, 1000)).toEqual('1k'); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/NumberFormatterRegistrySingleton.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/NumberFormatterRegistrySingleton.test.ts new file mode 100644 index 000000000000..a7ca85d8b721 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/NumberFormatterRegistrySingleton.test.ts @@ -0,0 +1,58 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + NumberFormatterRegistry, + getNumberFormatterRegistry, + getNumberFormatter, + formatNumber, +} from '@superset-ui/core/src'; + +describe('NumberFormatterRegistrySingleton', () => { + describe('getNumberFormatterRegistry()', () => { + it('returns a NumberFormatterRegisry', () => { + expect(getNumberFormatterRegistry()).toBeInstanceOf( + NumberFormatterRegistry, + ); + }); + }); + describe('getNumberFormatter(format)', () => { + it('returns a format function', () => { + const format = getNumberFormatter('.3s'); + expect(format(12345)).toEqual('12.3k'); + }); + it('returns a format function even given invalid format', () => { + const format = getNumberFormatter('xkcd'); + expect(format(12345)).toEqual('12345 (Invalid format: xkcd)'); + }); + it('falls back to default format if format is not specified', () => { + const formatter = getNumberFormatter(); + expect(formatter.format(100)).toEqual('100'); + }); + }); + describe('formatNumber(format, value)', () => { + it('format the given number using the specified format', () => { + const output = formatNumber('.3s', 12345); + expect(output).toEqual('12.3k'); + }); + it('falls back to the default formatter if the format is undefined', () => { + expect(formatNumber(undefined, 1000)).toEqual('1k'); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/factories/createD3NumberFormatter.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/factories/createD3NumberFormatter.test.ts new file mode 100644 index 000000000000..1a5dee63ea8a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/factories/createD3NumberFormatter.test.ts @@ -0,0 +1,88 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { createD3NumberFormatter } from '@superset-ui/core/src/number-format'; + +describe('createD3NumberFormatter(config)', () => { + it('requires config.formatString', () => { + // @ts-ignore -- intentionally pass invalid input + expect(() => createD3NumberFormatter({})).toThrow(); + }); + describe('config.formatString', () => { + it('creates a NumberFormatter with the formatString as id', () => { + const formatter = createD3NumberFormatter({ formatString: '.2f' }); + expect(formatter.id).toEqual('.2f'); + }); + describe('if it is valid d3 formatString', () => { + it('uses d3.format(config.formatString) as format function', () => { + const formatter = createD3NumberFormatter({ formatString: '.2f' }); + expect(formatter.format(100)).toEqual('100.00'); + }); + }); + describe('if it is invalid d3 formatString', () => { + it('The format function displays error message', () => { + const formatter = createD3NumberFormatter({ + formatString: 'i-am-groot', + }); + expect(formatter.format(12345.67)).toEqual( + '12345.67 (Invalid format: i-am-groot)', + ); + }); + it('also set formatter.isInvalid to true', () => { + const formatter = createD3NumberFormatter({ + formatString: 'i-am-groot', + }); + expect(formatter.isInvalid).toEqual(true); + }); + }); + }); + describe('config.label', () => { + it('set label if specified', () => { + const formatter = createD3NumberFormatter({ + formatString: '.2f', + label: 'float formatter', + }); + expect(formatter.label).toEqual('float formatter'); + }); + }); + describe('config.description', () => { + it('set decription if specified', () => { + const formatter = createD3NumberFormatter({ + description: 'lorem ipsum', + formatString: '.2f', + }); + expect(formatter.description).toEqual('lorem ipsum'); + }); + }); + describe('config.locale', () => { + it('supports locale customization such as currency', () => { + const formatter = createD3NumberFormatter({ + description: 'lorem ipsum', + formatString: '$.2f', + locale: { + decimal: '.', + thousands: ',', + grouping: [3], + currency: ['€', ''], + }, + }); + expect(formatter(200)).toEqual('€200.00'); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/factories/createDurationFormatter.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/factories/createDurationFormatter.test.ts new file mode 100644 index 000000000000..63c75480e912 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/factories/createDurationFormatter.test.ts @@ -0,0 +1,61 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + NumberFormatter, + createDurationFormatter, +} from '@superset-ui/core/src/number-format'; + +describe('createDurationFormatter()', () => { + it('creates an instance of NumberFormatter', () => { + const formatter = createDurationFormatter(); + expect(formatter).toBeInstanceOf(NumberFormatter); + }); + it('format milliseconds in human readable format with default options', () => { + const formatter = createDurationFormatter(); + expect(formatter(0)).toBe('0ms'); + expect(formatter(1000)).toBe('1s'); + expect(formatter(1337)).toBe('1.3s'); + expect(formatter(10500)).toBe('10.5s'); + expect(formatter(60 * 1000)).toBe('1m'); + expect(formatter(90 * 1000)).toBe('1m 30s'); + }); + it('format seconds in human readable format with default options', () => { + const formatter = createDurationFormatter({ multiplier: 1000 }); + expect(formatter(0.5)).toBe('500ms'); + expect(formatter(1)).toBe('1s'); + expect(formatter(30)).toBe('30s'); + expect(formatter(60)).toBe('1m'); + expect(formatter(90)).toBe('1m 30s'); + }); + it('format milliseconds in human readable format with additional pretty-ms options', () => { + const colonNotationFormatter = createDurationFormatter({ + colonNotation: true, + }); + expect(colonNotationFormatter(10500)).toBe('0:10.5'); + const zeroDecimalFormatter = createDurationFormatter({ + secondsDecimalDigits: 0, + }); + expect(zeroDecimalFormatter(10500)).toBe('10s'); + const subMillisecondFormatter = createDurationFormatter({ + formatSubMilliseconds: true, + }); + expect(subMillisecondFormatter(100.40008)).toBe('100ms 400µs 80ns'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/factories/createSiAtMostNDigitFormatter.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/factories/createSiAtMostNDigitFormatter.test.ts new file mode 100644 index 000000000000..e13f01b3dcf9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/factories/createSiAtMostNDigitFormatter.test.ts @@ -0,0 +1,70 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + NumberFormatter, + createSiAtMostNDigitFormatter, +} from '@superset-ui/core/src/number-format'; + +describe('createSiAtMostNDigitFormatter({ n })', () => { + it('creates an instance of NumberFormatter', () => { + const formatter = createSiAtMostNDigitFormatter({ n: 4 }); + expect(formatter).toBeInstanceOf(NumberFormatter); + }); + it('when n is specified, it formats number in SI format with at most n significant digits', () => { + const formatter = createSiAtMostNDigitFormatter({ n: 2 }); + expect(formatter(10)).toBe('10'); + expect(formatter(1)).toBe('1'); + expect(formatter(1)).toBe('1'); + expect(formatter(10)).toBe('10'); + expect(formatter(10001)).toBe('10k'); + expect(formatter(10100)).toBe('10k'); + expect(formatter(111000000)).toBe('110M'); + expect(formatter(0.23)).toBe('230m'); + expect(formatter(0)).toBe('0'); + expect(formatter(-10)).toBe('-10'); + expect(formatter(-1)).toBe('-1'); + expect(formatter(-1)).toBe('-1'); + expect(formatter(-10)).toBe('-10'); + expect(formatter(-10001)).toBe('-10k'); + expect(formatter(-10101)).toBe('-10k'); + expect(formatter(-111000000)).toBe('-110M'); + expect(formatter(-0.23)).toBe('-230m'); + }); + it('when n is not specified, it defaults to n=3', () => { + const formatter = createSiAtMostNDigitFormatter(); + expect(formatter(10)).toBe('10'); + expect(formatter(1)).toBe('1'); + expect(formatter(1)).toBe('1'); + expect(formatter(10)).toBe('10'); + expect(formatter(10001)).toBe('10.0k'); + expect(formatter(10100)).toBe('10.1k'); + expect(formatter(111000000)).toBe('111M'); + expect(formatter(0.23)).toBe('230m'); + expect(formatter(0)).toBe('0'); + expect(formatter(-10)).toBe('-10'); + expect(formatter(-1)).toBe('-1'); + expect(formatter(-1)).toBe('-1'); + expect(formatter(-10)).toBe('-10'); + expect(formatter(-10001)).toBe('-10.0k'); + expect(formatter(-10101)).toBe('-10.1k'); + expect(formatter(-111000000)).toBe('-111M'); + expect(formatter(-0.23)).toBe('-230m'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/factories/createSmartNumberFormatter.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/factories/createSmartNumberFormatter.test.ts new file mode 100644 index 000000000000..e4f3c1895006 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/factories/createSmartNumberFormatter.test.ts @@ -0,0 +1,151 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + NumberFormatter, + createSmartNumberFormatter, +} from '@superset-ui/core/src'; + +describe('createSmartNumberFormatter(options)', () => { + it('creates an instance of NumberFormatter', () => { + const formatter = createSmartNumberFormatter(); + expect(formatter).toBeInstanceOf(NumberFormatter); + }); + describe('using default options', () => { + const formatter = createSmartNumberFormatter(); + it('formats 0 correctly', () => { + expect(formatter(0)).toBe('0'); + }); + describe('for positive numbers', () => { + it('formats billion with B in stead of G', () => { + expect(formatter(1000000000)).toBe('1B'); + expect(formatter(4560000000)).toBe('4.56B'); + }); + it('formats numbers that are >= 1,000 & <= 1,000,000,000 as SI format with precision 3', () => { + expect(formatter(1000)).toBe('1k'); + expect(formatter(10001)).toBe('10k'); + expect(formatter(10100)).toBe('10.1k'); + expect(formatter(111000000)).toBe('111M'); + }); + it('formats number that are >= 1 & < 1,000 as integer or float with at most 2 decimal points', () => { + expect(formatter(1)).toBe('1'); + expect(formatter(1)).toBe('1'); + expect(formatter(10)).toBe('10'); + expect(formatter(10)).toBe('10'); + expect(formatter(10.23432)).toBe('10.23'); + expect(formatter(274.2856)).toBe('274.29'); + expect(formatter(999)).toBe('999'); + }); + it('formats numbers that are < 1 & >= 0.001 as float with at most 4 decimal points', () => { + expect(formatter(0.1)).toBe('0.1'); + expect(formatter(0.23)).toBe('0.23'); + expect(formatter(0.699)).toBe('0.699'); + expect(formatter(0.0023)).toBe('0.0023'); + expect(formatter(0.002300001)).toBe('0.0023'); + }); + it('formats numbers that are < 0.001 & >= 0.000001 as micron', () => { + expect(formatter(0.0002300001)).toBe('230µ'); + expect(formatter(0.000023)).toBe('23µ'); + expect(formatter(0.000001)).toBe('1µ'); + }); + it('formats numbers that are less than 0.000001 as SI format with precision 3', () => { + expect(formatter(0.0000001)).toBe('100n'); + }); + }); + describe('for negative numbers', () => { + it('formats billion with B in stead of G', () => { + expect(formatter(-1000000000)).toBe('-1B'); + expect(formatter(-4560000000)).toBe('-4.56B'); + }); + it('formats numbers that are >= 1,000 & <= 1,000,000,000 as SI format with precision 3', () => { + expect(formatter(-1000)).toBe('-1k'); + expect(formatter(-10001)).toBe('-10k'); + expect(formatter(-10100)).toBe('-10.1k'); + expect(formatter(-111000000)).toBe('-111M'); + }); + it('formats number that are >= 1 & < 1,000 as integer or float with at most 2 decimal points', () => { + expect(formatter(-1)).toBe('-1'); + expect(formatter(-1)).toBe('-1'); + expect(formatter(-10)).toBe('-10'); + expect(formatter(-10)).toBe('-10'); + expect(formatter(-10.23432)).toBe('-10.23'); + expect(formatter(-274.2856)).toBe('-274.29'); + expect(formatter(-999)).toBe('-999'); + }); + it('formats numbers that are < 1 & >= 0.001 as float with at most 4 decimal points', () => { + expect(formatter(-0.1)).toBe('-0.1'); + expect(formatter(-0.23)).toBe('-0.23'); + expect(formatter(-0.699)).toBe('-0.699'); + expect(formatter(-0.0023)).toBe('-0.0023'); + expect(formatter(-0.002300001)).toBe('-0.0023'); + }); + it('formats numbers that are < 0.001 & >= 0.000001 as micron', () => { + expect(formatter(-0.0002300001)).toBe('-230µ'); + expect(formatter(-0.000023)).toBe('-23µ'); + expect(formatter(-0.000001)).toBe('-1µ'); + }); + it('formats numbers that are less than 0.000001 as SI format with precision 3', () => { + expect(formatter(-0.0000001)).toBe('-100n'); + }); + }); + }); + + describe('when options.signed is true, it adds + for positive numbers', () => { + const formatter = createSmartNumberFormatter({ signed: true }); + it('formats 0 correctly', () => { + expect(formatter(0)).toBe('0'); + }); + describe('for positive numbers', () => { + it('formats billion with B in stead of G', () => { + expect(formatter(1000000000)).toBe('+1B'); + expect(formatter(4560000000)).toBe('+4.56B'); + }); + it('formats numbers that are >= 1,000 & <= 1,000,000,000 as SI format with precision 3', () => { + expect(formatter(1000)).toBe('+1k'); + expect(formatter(10001)).toBe('+10k'); + expect(formatter(10100)).toBe('+10.1k'); + expect(formatter(111000000)).toBe('+111M'); + }); + it('formats number that are >= 1 & < 1,000 as integer or float with at most 2 decimal points', () => { + expect(formatter(1)).toBe('+1'); + expect(formatter(1)).toBe('+1'); + expect(formatter(10)).toBe('+10'); + expect(formatter(10)).toBe('+10'); + expect(formatter(10.23432)).toBe('+10.23'); + expect(formatter(274.2856)).toBe('+274.29'); + expect(formatter(999)).toBe('+999'); + }); + it('formats numbers that are < 1 & >= 0.001 as float with at most 4 decimal points', () => { + expect(formatter(0.1)).toBe('+0.1'); + expect(formatter(0.23)).toBe('+0.23'); + expect(formatter(0.699)).toBe('+0.699'); + expect(formatter(0.0023)).toBe('+0.0023'); + expect(formatter(0.002300001)).toBe('+0.0023'); + }); + it('formats numbers that are < 0.001 & >= 0.000001 as micron', () => { + expect(formatter(0.0002300001)).toBe('+230µ'); + expect(formatter(0.000023)).toBe('+23µ'); + expect(formatter(0.000001)).toBe('+1µ'); + }); + it('formats numbers that are less than 0.000001 as SI format with precision 3', () => { + expect(formatter(0.0000001)).toBe('+100n'); + }); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/index.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/index.test.ts new file mode 100644 index 000000000000..5f482c564f1d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/number-format/index.test.ts @@ -0,0 +1,46 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + createD3NumberFormatter, + createDurationFormatter, + createSiAtMostNDigitFormatter, + formatNumber, + getNumberFormatter, + getNumberFormatterRegistry, + NumberFormats, + NumberFormatter, + PREVIEW_VALUE, +} from '@superset-ui/core/src'; + +describe('index', () => { + it('exports modules', () => { + [ + createD3NumberFormatter, + createDurationFormatter, + createSiAtMostNDigitFormatter, + formatNumber, + getNumberFormatter, + getNumberFormatterRegistry, + NumberFormats, + NumberFormatter, + PREVIEW_VALUE, + ].forEach(x => expect(x).toBeDefined()); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/DatasourceKey.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/DatasourceKey.test.ts new file mode 100644 index 000000000000..d0faab462582 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/DatasourceKey.test.ts @@ -0,0 +1,36 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { DatasourceKey } from '@superset-ui/core/src/query'; + +describe('DatasourceKey', () => { + const tableKey = '5__table'; + const druidKey = '5__druid'; + + it('should handle table data sources', () => { + const datasourceKey = new DatasourceKey(tableKey); + expect(datasourceKey.toString()).toBe(tableKey); + expect(datasourceKey.toObject()).toEqual({ id: 5, type: 'table' }); + }); + + it('should handle druid data sources', () => { + const datasourceKey = new DatasourceKey(druidKey); + expect(datasourceKey.toString()).toBe(druidKey); + expect(datasourceKey.toObject()).toEqual({ id: 5, type: 'druid' }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/legacy/fetchExploreJson.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/legacy/fetchExploreJson.test.ts new file mode 100644 index 000000000000..e1c031a6b17f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/legacy/fetchExploreJson.test.ts @@ -0,0 +1,81 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import fetchMock from 'fetch-mock'; +import { fetchExploreJson } from '@superset-ui/core/src/query/api/legacy'; +import setupClientForTest from '../setupClientForTest'; + +describe('fetchExploreJson()', () => { + beforeAll(setupClientForTest); + + afterEach(fetchMock.restore); + + it('returns a promise of LegacyChartDataResponse', () => { + fetchMock.post('glob:*/superset/explore_json/', { + field1: 'abc', + field2: 'def', + }); + + return expect( + fetchExploreJson({ + formData: { + granularity: 'minute', + viz_type: 'word_cloud', + datasource: '1__table', + }, + }), + ).resolves.toEqual({ + field1: 'abc', + field2: 'def', + }); + }); + it('uses GET when specified', async () => { + expect.assertions(4); + const mockUrl = 'glob:*/superset/explore_json/*'; + + fetchMock.get(mockUrl, { + field1: 'abc', + field2: 'def', + }); + + const result = await fetchExploreJson({ + method: 'GET', + formData: { + granularity: 'minute', + viz_type: 'word_cloud', + datasource: '1__table', + }, + }); + + expect(result).toEqual({ + field1: 'abc', + field2: 'def', + }); + const mockCalls = fetchMock.calls(mockUrl); + expect(mockCalls).toHaveLength(1); + expect(mockCalls[0][0]).toEqual( + 'http://localhost/superset/explore_json/?form_data=%7B%22granularity%22%3A%22minute%22%2C%22viz_type%22%3A%22word_cloud%22%2C%22datasource%22%3A%221__table%22%7D', + ); + expect(mockCalls[0][1]).toEqual( + expect.objectContaining({ + method: 'GET', + body: undefined, + }), + ); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/legacy/getDatasourceMetadata.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/legacy/getDatasourceMetadata.test.ts new file mode 100644 index 000000000000..cf3a93f90dce --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/legacy/getDatasourceMetadata.test.ts @@ -0,0 +1,46 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import fetchMock from 'fetch-mock'; +import { getDatasourceMetadata } from '@superset-ui/core/src/query/api/legacy'; + +import setupClientForTest from '../setupClientForTest'; + +describe('getFormData()', () => { + beforeAll(setupClientForTest); + + afterEach(fetchMock.restore); + + it('returns datasource metadata for given datasource key', () => { + const mockData = { + field1: 'abc', + field2: 'def', + }; + + fetchMock.get( + 'glob:*/superset/fetch_datasource_metadata?datasourceKey=1__table', + mockData, + ); + + return expect( + getDatasourceMetadata({ + datasourceKey: '1__table', + }), + ).resolves.toEqual(mockData); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/legacy/getFormData.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/legacy/getFormData.test.ts new file mode 100644 index 000000000000..089a14b37da5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/legacy/getFormData.test.ts @@ -0,0 +1,68 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import fetchMock from 'fetch-mock'; +import { getFormData } from '@superset-ui/core/src/query/api/legacy'; + +import setupClientForTest from '../setupClientForTest'; + +describe('getFormData()', () => { + beforeAll(setupClientForTest); + + afterEach(fetchMock.restore); + + const mockData = { + datasource: '1__table', + viz_type: 'sankey', + slice_id: 1, + url_params: {}, + granularity_sqla: null, + time_grain_sqla: 'P1D', + time_range: 'Last week', + groupby: ['source', 'target'], + metric: 'sum__value', + adhoc_filters: [], + row_limit: 1000, + }; + + it('returns formData for given slice id', () => { + fetchMock.get(`glob:*/api/v1/form_data/?slice_id=1`, mockData); + + return expect( + getFormData({ + sliceId: 1, + }), + ).resolves.toEqual(mockData); + }); + + it('overrides formData when overrideFormData is specified', () => { + fetchMock.get(`glob:*/api/v1/form_data/?slice_id=1`, mockData); + + return expect( + getFormData({ + sliceId: 1, + overrideFormData: { + metric: 'avg__value', + }, + }), + ).resolves.toEqual({ + ...mockData, + metric: 'avg__value', + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/setupClientForTest.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/setupClientForTest.ts new file mode 100644 index 000000000000..92596e43cb13 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/setupClientForTest.ts @@ -0,0 +1,28 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import fetchMock from 'fetch-mock'; +import { SupersetClient } from '@superset-ui/core/src/connection'; + +const LOGIN_GLOB = 'glob:*api/v1/security/csrf_token/*'; + +export default function setupClientForTest() { + fetchMock.get(LOGIN_GLOB, { result: '1234' }); + SupersetClient.reset(); + SupersetClient.configure().init(); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/v1/getChartData.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/v1/getChartData.test.ts new file mode 100644 index 000000000000..16af3daf4df8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/v1/getChartData.test.ts @@ -0,0 +1,48 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import fetchMock from 'fetch-mock'; +import { buildQueryContext, ApiV1 } from '@superset-ui/core/src/query'; +import setupClientForTest from '../setupClientForTest'; + +describe('API v1 > getChartData()', () => { + beforeAll(setupClientForTest); + afterEach(fetchMock.restore); + + it('returns a promise of ChartDataResponse', async () => { + const response = { + result: [ + { + field1: 'abc', + field2: 'def', + }, + ], + }; + + fetchMock.post('glob:*/api/v1/chart/data', response); + + const result = await ApiV1.getChartData( + buildQueryContext({ + granularity: 'minute', + viz_type: 'word_cloud', + datasource: '1__table', + }), + ); + return expect(result).toEqual(response); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/v1/handleError.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/v1/handleError.test.ts new file mode 100644 index 000000000000..5bfd2986fa18 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/v1/handleError.test.ts @@ -0,0 +1,173 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import 'whatwg-fetch'; // for adding Response polyfill +import { JsonObject } from '@superset-ui/core/src/connection'; +import handleError, { + ErrorInput, +} from '@superset-ui/core/src/query/api/v1/handleError'; +import { + SupersetApiError, + SupersetApiErrorType, +} from '@superset-ui/core/src/query/api/v1/types'; + +async function testHandleError( + inputError: ErrorInput, + expected: string | JsonObject, +): Promise { + try { + await handleError(inputError); + } catch (error) { + const typedError = error as SupersetApiError; + expect(typedError).toBeInstanceOf(SupersetApiError); + if (typeof expected === 'string') { + expect(typedError.message).toContain(expected); + } else { + expect(typedError).toEqual(expect.objectContaining(expected)); + } + return error; + } + return new SupersetApiError({ message: 'Where is the error?' }); +} + +describe('handleError()', () => { + it('should throw error directly', async () => { + expect.assertions(3); + const input = new SupersetApiError({ message: 'timeout' }); + const output = await testHandleError(input, 'timeout'); + expect(input).toBe(output); + }); + + it('should handle error string', async () => { + expect.assertions(2); + await testHandleError('STOP', 'STOP'); + }); + + it('should handle HTTP error', async () => { + expect.assertions(2); + const mockResponse = new Response('Ha?', { + status: 404, + statusText: 'NOT FOUND', + }); + await testHandleError(mockResponse, '404 NOT FOUND'); + }); + + it('should handle HTTP error with status < 400', async () => { + expect.assertions(2); + const mockResponse = new Response('Ha haha?', { + status: 302, + statusText: 'Found', + }); + await testHandleError(mockResponse, '302 Found'); + }); + + it('should use message from HTTP error', async () => { + expect.assertions(2); + const mockResponse = new Response('{ "message": "BAD BAD" }', { + status: 500, + statusText: 'Server Error', + }); + await testHandleError(mockResponse, 'BAD BAD'); + }); + + it('should handle response of single error', async () => { + expect.assertions(2); + const mockResponse = new Response( + '{ "error": "BAD BAD", "link": "https://superset.apache.org" }', + { + status: 403, + statusText: 'Access Denied', + }, + ); + await testHandleError(mockResponse, { + message: 'BAD BAD', + extra: { link: 'https://superset.apache.org' }, + }); + }); + + it('should handle single error object', async () => { + expect.assertions(2); + const mockError = { + error: { + message: 'Request timeout', + error_type: SupersetApiErrorType.FRONTEND_TIMEOUT_ERROR, + }, + }; + await testHandleError(mockError, { + message: 'Request timeout', + errorType: 'FRONTEND_TIMEOUT_ERROR', + }); + }); + + it('should process multi errors in HTTP json', async () => { + expect.assertions(2); + const mockResponse = new Response( + '{ "errors": [{ "error_type": "NOT OK" }] }', + { + status: 403, + statusText: 'Access Denied', + }, + ); + await testHandleError(mockResponse, 'NOT OK'); + }); + + it('should handle invalid multi errors', async () => { + expect.assertions(4); + const mockResponse1 = new Response('{ "errors": [] }', { + status: 403, + statusText: 'Access Denied', + }); + const mockResponse2 = new Response('{ "errors": null }', { + status: 400, + statusText: 'Bad Request', + }); + await testHandleError(mockResponse1, '403 Access Denied'); + await testHandleError(mockResponse2, '400 Bad Request'); + }); + + it('should fallback to statusText', async () => { + expect.assertions(2); + const mockResponse = new Response('{ "failed": "random ramble" }', { + status: 403, + statusText: 'Access Denied', + }); + await testHandleError(mockResponse, '403 Access Denied'); + }); + + it('should handle regular JS error', async () => { + expect.assertions(4); + await testHandleError(new Error('What?'), 'What?'); + const emptyError = new Error(); + emptyError.stack = undefined; + await testHandleError(emptyError, 'Unknown Error'); + }); + + it('should handle { error: ... }', async () => { + expect.assertions(2); + await testHandleError({ error: 'Hmm' }, 'Hmm'); + }); + + it('should throw unknown error', async () => { + expect.assertions(4); + await testHandleError( + Promise.resolve('Some random things') as never, + 'Unknown Error', + ); + await testHandleError(undefined as never, 'Unknown Error'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/v1/makeApi.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/v1/makeApi.test.ts new file mode 100644 index 000000000000..c25ffd68995e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/api/v1/makeApi.test.ts @@ -0,0 +1,223 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import fetchMock from 'fetch-mock'; +import { + JsonValue, + SupersetClientClass, +} from '@superset-ui/core/src/connection'; +import { makeApi, SupersetApiError } from '@superset-ui/core/src/query'; +import setupClientForTest from '../setupClientForTest'; + +describe('makeApi()', () => { + beforeAll(setupClientForTest); + afterEach(fetchMock.restore); + + it('should expose method and endpoint', () => { + const api = makeApi({ + method: 'GET', + endpoint: '/test', + }); + expect(api.method).toEqual('GET'); + expect(api.endpoint).toEqual('/test'); + expect(api.requestType).toEqual('search'); + }); + + it('should allow custom client', async () => { + expect.assertions(2); + const api = makeApi({ + method: 'GET', + endpoint: '/test-custom-client', + }); + const client = new SupersetClientClass({ baseUrl: 'http://foo/' }); + const mockResponse = { yes: 'ok' }; + const mockRequest = jest.fn(() => + Promise.resolve( + new Response(JSON.stringify(mockResponse), { + headers: { 'Content-Type': 'application/json' }, + }), + ), + ); + Object.assign(client, { + request: mockRequest, + }); + const result = await api(null, { client }); + expect(result).toEqual(mockResponse); + expect(mockRequest).toHaveBeenCalledTimes(1); + }); + + it('should obtain json response by default', async () => { + expect.assertions(1); + const api = makeApi({ + method: 'GET', + endpoint: '/test', + }); + fetchMock.get('glob:*/test', { yes: 'ok' }); + expect(await api({})).toEqual({ yes: 'ok' }); + }); + + it('should allow custom parseResponse', async () => { + expect.assertions(2); + const responseJson = { items: [1, 2, 3] }; + fetchMock.post('glob:*/test', responseJson); + const api = makeApi({ + method: 'POST', + endpoint: '/test', + processResponse: (json: typeof responseJson) => + json.items.reduce((a: number, b: number) => a + b), + }); + expect(api.method).toEqual('POST'); + expect(await api({})).toBe(6); + }); + + it('should post FormData when requestType=form', async () => { + expect.assertions(3); + const api = makeApi({ + method: 'POST', + endpoint: '/test-formdata', + requestType: 'form', + }); + fetchMock.post('glob:*/test-formdata', { test: 'ok' }); + + expect(await api({ request: 'test' })).toEqual({ test: 'ok' }); + + const expected = new FormData(); + expected.append('request', JSON.stringify('test')); + const received = fetchMock.lastOptions().body as FormData; + + expect(received).toBeInstanceOf(FormData); + expect(received.get('request')).toEqual(expected.get('request')); + }); + + it('should use searchParams for method=GET (`requestType=search` implied)', async () => { + expect.assertions(1); + const api = makeApi({ + method: 'GET', + endpoint: '/test-get-search', + }); + fetchMock.get('glob:*/test-get-search*', { search: 'get' }); + await api({ p1: 1, p2: 2, p3: [1, 2] }); + expect(fetchMock.lastUrl()).toContain( + '/test-get-search?p1=1&p2=2&p3=1%2C2', + ); + }); + + it('should serialize rison for method=GET, requestType=rison', async () => { + expect.assertions(1); + const api = makeApi({ + method: 'GET', + endpoint: '/test-post-search', + requestType: 'rison', + }); + fetchMock.get('glob:*/test-post-search*', { rison: 'get' }); + await api({ p1: 1, p3: [1, 2] }); + expect(fetchMock.lastUrl()).toContain( + '/test-post-search?q=(p1:1,p3:!(1,2))', + ); + }); + + it('should use searchParams for method=POST, requestType=search', async () => { + expect.assertions(1); + const api = makeApi({ + method: 'POST', + endpoint: '/test-post-search', + requestType: 'search', + }); + fetchMock.post('glob:*/test-post-search*', { search: 'post' }); + await api({ p1: 1, p3: [1, 2] }); + expect(fetchMock.lastUrl()).toContain('/test-post-search?p1=1&p3=1%2C2'); + }); + + it('should throw when requestType is invalid', () => { + expect(() => { + makeApi({ + method: 'POST', + endpoint: '/test-formdata', + // @ts-ignore + requestType: 'text', + }); + }).toThrow('Invalid request payload type'); + }); + + it('should handle errors', async () => { + expect.assertions(1); + const api = makeApi({ + method: 'POST', + endpoint: '/test-formdata', + requestType: 'form', + }); + let error; + + fetchMock.post('glob:*/test-formdata', { test: 'ok' }); + + try { + await api(''); + } catch (err) { + error = err; + } finally { + expect((error as SupersetApiError).message).toContain('Invalid payload'); + } + }); + + it('should handle error on 200 response', async () => { + expect.assertions(1); + const api = makeApi({ + method: 'POST', + endpoint: '/test-200-error', + requestType: 'json', + }); + fetchMock.post('glob:*/test-200-error', { error: 'not ok' }); + + let error; + try { + await api({}); + } catch (err) { + error = err; + } finally { + expect((error as SupersetApiError).message).toContain('not ok'); + } + }); + + it('should parse text response when responseType=text', async () => { + expect.assertions(1); + const api = makeApi({ + method: 'PUT', + endpoint: '/test-parse-text', + requestType: 'form', + responseType: 'text', + processResponse: text => `${text}?`, + }); + fetchMock.put('glob:*/test-parse-text', 'ok'); + const result = await api({ field1: 11 }); + expect(result).toBe('ok?'); + }); + + it('should return raw resposnse when responseType=raw', async () => { + expect.assertions(2); + const api = makeApi({ + method: 'DELETE', + endpoint: '/test-raw-response', + responseType: 'raw', + processResponse: response => response.status, + }); + fetchMock.delete('glob:*/test-raw-response?*', 'ok'); + const result = await api({ field1: 11 }, {}); + expect(result).toEqual(200); + expect(fetchMock.lastUrl()).toContain('/test-raw-response?field1=11'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/buildQueryContext.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/buildQueryContext.test.ts new file mode 100644 index 000000000000..3bd899c629ed --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/buildQueryContext.test.ts @@ -0,0 +1,111 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { buildQueryContext } from '@superset-ui/core/src/query'; + +describe('buildQueryContext', () => { + it('should build datasource for table sources and apply defaults', () => { + const queryContext = buildQueryContext({ + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + }); + expect(queryContext.datasource.id).toBe(5); + expect(queryContext.datasource.type).toBe('table'); + expect(queryContext.force).toBe(false); + expect(queryContext.result_format).toBe('json'); + expect(queryContext.result_type).toBe('full'); + }); + it('should build datasource for druid sources and set force to true', () => { + const queryContext = buildQueryContext({ + datasource: '5__druid', + granularity: 'ds', + viz_type: 'table', + force: true, + }); + expect(queryContext.datasource.id).toBe(5); + expect(queryContext.datasource.type).toBe('druid'); + expect(queryContext.force).toBe(true); + }); + it('should build datasource for table sources with columns', () => { + const queryContext = buildQueryContext( + { + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + source: 'source_column', + source_category: 'source_category_column', + target: 'target_column', + target_category: 'target_category_column', + }, + { + queryFields: { + source: 'columns', + source_category: 'columns', + target: 'columns', + target_category: 'columns', + }, + }, + ); + expect(queryContext.datasource.id).toBe(5); + expect(queryContext.datasource.type).toBe('table'); + expect(queryContext.force).toBe(false); + expect(queryContext.result_format).toBe('json'); + expect(queryContext.result_type).toBe('full'); + expect(queryContext.queries).toEqual( + expect.arrayContaining([ + expect.objectContaining({ + columns: [ + 'source_column', + 'source_category_column', + 'target_column', + 'target_category_column', + ], + }), + ]), + ); + }); + it('should build datasource for table sources and process with custom function', () => { + const queryContext = buildQueryContext( + { + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + source: 'source_column', + source_category: 'source_category_column', + target: 'target_column', + target_category: 'target_category_column', + }, + function addExtraColumn(queryObject) { + return [{ ...queryObject, columns: ['dummy_column'] }]; + }, + ); + expect(queryContext.datasource.id).toBe(5); + expect(queryContext.datasource.type).toBe('table'); + expect(queryContext.force).toBe(false); + expect(queryContext.result_format).toBe('json'); + expect(queryContext.result_type).toBe('full'); + expect(queryContext.queries).toEqual( + expect.arrayContaining([ + expect.objectContaining({ + columns: ['dummy_column'], + }), + ]), + ); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/buildQueryObject.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/buildQueryObject.test.ts new file mode 100644 index 000000000000..430d2145cc4c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/buildQueryObject.test.ts @@ -0,0 +1,280 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { JsonObject } from '@superset-ui/core'; +import { + AnnotationLayer, + AnnotationOpacity, + AnnotationSourceType, + AnnotationStyle, + AnnotationType, + buildQueryObject, + QueryObject, +} from '../../src/query'; + +describe('buildQueryObject', () => { + let query: QueryObject; + + it('should build granularity for sqlalchemy datasources', () => { + query = buildQueryObject({ + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + }); + expect(query.granularity).toEqual('ds'); + }); + + it('should build granularity for druid datasources', () => { + query = buildQueryObject({ + datasource: '5__druid', + granularity: 'ds', + viz_type: 'table', + }); + expect(query.granularity).toEqual('ds'); + }); + + it('should build metrics based on default queryFields', () => { + query = buildQueryObject({ + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + metric: 'sum__num', + secondary_metric: 'avg__num', + }); + expect(query.metrics).toEqual(['sum__num', 'avg__num']); + }); + + it('should merge original and append filters', () => { + query = buildQueryObject({ + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + extra_filters: [{ col: 'abc', op: '==', val: 'qwerty' }], + adhoc_filters: [ + { + expressionType: 'SIMPLE', + clause: 'WHERE', + subject: 'foo', + operator: '!=', + comparator: 'bar', + }, + ], + where: 'a = b', + extra_form_data: { + adhoc_filters: [ + { + expressionType: 'SQL', + clause: 'WHERE', + sqlExpression: '(1 = 1)', + }, + ], + }, + }); + expect(query.filters).toEqual([ + { col: 'abc', op: '==', val: 'qwerty' }, + { col: 'foo', op: '!=', val: 'bar' }, + ]); + expect(query.extras?.where).toEqual('(a = b) AND ((1 = 1))'); + }); + + it('should group custom metric control', () => { + query = buildQueryObject( + { + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + my_custom_metric_control: 'sum__num', + }, + { my_custom_metric_control: 'metrics' }, + ); + expect(query.metrics).toEqual(['sum__num']); + }); + + it('should group custom metric control with predefined metrics', () => { + query = buildQueryObject( + { + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + metrics: ['sum__num'], + my_custom_metric_control: 'avg__num', + }, + { my_custom_metric_control: 'metrics' }, + ); + expect(query.metrics).toEqual(['sum__num', 'avg__num']); + }); + + it('should build limit', () => { + const limit = 2; + query = buildQueryObject({ + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + limit, + }); + expect(query.timeseries_limit).toEqual(limit); + }); + + it('should build order_desc', () => { + const orderDesc = false; + query = buildQueryObject({ + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + order_desc: orderDesc, + }); + expect(query.order_desc).toEqual(orderDesc); + }); + + it('should build timeseries_limit_metric', () => { + const metric = 'country'; + query = buildQueryObject({ + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + timeseries_limit_metric: metric, + }); + expect(query.timeseries_limit_metric).toEqual(metric); + }); + + it('should handle null and non-numeric row_limit and row_offset', () => { + const baseQuery = { + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + row_limit: null, + }; + + // undefined + query = buildQueryObject({ ...baseQuery }); + expect(query.row_limit).toBeUndefined(); + expect(query.row_offset).toBeUndefined(); + + // null value + query = buildQueryObject({ + ...baseQuery, + row_limit: null, + row_offset: null, + }); + expect(query.row_limit).toBeUndefined(); + expect(query.row_offset).toBeUndefined(); + + query = buildQueryObject({ ...baseQuery, row_limit: 1000, row_offset: 50 }); + expect(query.row_limit).toStrictEqual(1000); + expect(query.row_offset).toStrictEqual(50); + + // valid string + query = buildQueryObject({ + ...baseQuery, + row_limit: '200', + row_offset: '100', + }); + expect(query.row_limit).toStrictEqual(200); + expect(query.row_offset).toStrictEqual(100); + + // invalid string + query = buildQueryObject({ + ...baseQuery, + row_limit: 'two hundred', + row_offset: 'twenty', + }); + expect(query.row_limit).toBeUndefined(); + expect(query.row_offset).toBeUndefined(); + }); + + it('should populate annotation_layers', () => { + const annotationLayers: AnnotationLayer[] = [ + { + annotationType: AnnotationType.Formula, + color: '#ff7f44', + name: 'My Formula', + opacity: AnnotationOpacity.Low, + show: true, + style: AnnotationStyle.Solid, + value: '10*sin(x)', + width: 1, + }, + { + annotationType: AnnotationType.Interval, + color: null, + show: false, + name: 'My Interval', + sourceType: AnnotationSourceType.Native, + style: AnnotationStyle.Dashed, + value: 1, + width: 100, + }, + { + annotationType: AnnotationType.Event, + color: null, + descriptionColumns: [], + name: 'My Interval', + overrides: { + granularity: null, + time_grain_sqla: null, + time_range: null, + }, + sourceType: AnnotationSourceType.Table, + show: false, + timeColumn: 'ds', + style: AnnotationStyle.Dashed, + value: 1, + width: 100, + }, + ]; + query = buildQueryObject({ + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + annotation_layers: annotationLayers, + }); + expect(query.annotation_layers).toEqual(annotationLayers); + }); + + it('should populate url_params', () => { + expect( + buildQueryObject({ + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + url_params: { abc: '123' }, + }).url_params, + ).toEqual({ abc: '123' }); + expect( + buildQueryObject({ + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + url_params: null as unknown as undefined, + }).url_params, + ).toBeUndefined(); + }); + + it('should populate custom_params', () => { + const customParams: JsonObject = { + customObject: { id: 137, name: 'C-137' }, + }; + query = buildQueryObject({ + datasource: '5__table', + granularity_sqla: 'ds', + viz_type: 'table', + custom_params: customParams, + }); + expect(query.custom_params).toEqual(customParams); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/convertFilter.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/convertFilter.test.ts new file mode 100644 index 000000000000..9869c1e139f6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/convertFilter.test.ts @@ -0,0 +1,67 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { convertFilter } from '@superset-ui/core/src/query'; + +describe('convertFilter', () => { + it('should handle unary filter', () => { + expect( + convertFilter({ + expressionType: 'SIMPLE', + clause: 'WHERE', + subject: 'topping', + operator: 'IS NOT NULL', + }), + ).toEqual({ + col: 'topping', + op: 'IS NOT NULL', + }); + }); + + it('should convert binary filter', () => { + expect( + convertFilter({ + expressionType: 'SIMPLE', + clause: 'WHERE', + subject: 'topping', + operator: '==', + comparator: 'grass jelly', + }), + ).toEqual({ + col: 'topping', + op: '==', + val: 'grass jelly', + }); + }); + + it('should convert set filter', () => { + expect( + convertFilter({ + expressionType: 'SIMPLE', + clause: 'WHERE', + subject: 'toppings', + operator: 'IN', + comparator: ['boba', 'grass jelly'], + }), + ).toEqual({ + col: 'toppings', + op: 'IN', + val: ['boba', 'grass jelly'], + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/extractExtras.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/extractExtras.test.ts new file mode 100644 index 000000000000..4b5f5340b250 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/extractExtras.test.ts @@ -0,0 +1,155 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import extractExtras from '@superset-ui/core/src/query/extractExtras'; + +describe('extractExtras', () => { + const baseQueryFormData = { + datasource: '1__table', + granularity_sqla: 'ds', + time_grain_sqla: 'PT1M', + viz_type: 'my_viz', + }; + + it('should populate time range endpoints and override formData with double underscored date options', () => { + expect( + extractExtras({ + ...baseQueryFormData, + time_range_endpoints: ['inclusive', 'exclusive'], + extra_filters: [ + { + col: '__time_col', + op: '==', + val: 'ds2', + }, + { + col: '__time_grain', + op: '==', + val: 'PT5M', + }, + { + col: '__time_range', + op: '==', + val: '2009-07-17T00:00:00 : 2020-07-17T00:00:00', + }, + ], + }), + ).toEqual({ + applied_time_extras: { + __time_col: 'ds2', + __time_grain: 'PT5M', + __time_range: '2009-07-17T00:00:00 : 2020-07-17T00:00:00', + }, + extras: { + time_grain_sqla: 'PT5M', + time_range_endpoints: ['inclusive', 'exclusive'], + }, + filters: [], + granularity: 'ds2', + time_range: '2009-07-17T00:00:00 : 2020-07-17T00:00:00', + }); + }); + + it('should create regular filters from non-reserved columns', () => { + expect( + extractExtras({ + ...baseQueryFormData, + extra_filters: [ + { + col: 'gender', + op: '==', + val: 'girl', + }, + { + col: 'name', + op: 'IN', + val: ['Eve', 'Evelyn'], + }, + ], + }), + ).toEqual({ + applied_time_extras: {}, + extras: { + time_grain_sqla: 'PT1M', + }, + filters: [ + { + col: 'gender', + op: '==', + val: 'girl', + }, + { + col: 'name', + op: 'IN', + val: ['Eve', 'Evelyn'], + }, + ], + granularity: 'ds', + }); + }); + + it('should create regular filters from reserved and non-reserved columns', () => { + expect( + extractExtras({ + ...baseQueryFormData, + time_range_endpoints: ['inclusive', 'exclusive'], + extra_filters: [ + { + col: 'gender', + op: '==', + val: 'girl', + }, + { + col: '__time_col', + op: '==', + val: 'ds2', + }, + { + col: '__time_grain', + op: '==', + val: 'PT5M', + }, + { + col: '__time_range', + op: '==', + val: '2009-07-17T00:00:00 : 2020-07-17T00:00:00', + }, + ], + }), + ).toEqual({ + applied_time_extras: { + __time_col: 'ds2', + __time_grain: 'PT5M', + __time_range: '2009-07-17T00:00:00 : 2020-07-17T00:00:00', + }, + extras: { + time_grain_sqla: 'PT5M', + time_range_endpoints: ['inclusive', 'exclusive'], + }, + filters: [ + { + col: 'gender', + op: '==', + val: 'girl', + }, + ], + granularity: 'ds2', + time_range: '2009-07-17T00:00:00 : 2020-07-17T00:00:00', + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/extractQueryFields.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/extractQueryFields.test.ts new file mode 100644 index 000000000000..056f4ce3c0b6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/extractQueryFields.test.ts @@ -0,0 +1,201 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import extractQueryFields from '@superset-ui/core/src/query/extractQueryFields'; +import { configure } from '../../src/translation'; +import { QueryMode, DTTM_ALIAS } from '../../src'; +import { NUM_METRIC } from '../fixtures'; + +configure(); + +describe('extractQueryFields', () => { + it('should return default object', () => { + expect(extractQueryFields({})).toEqual({ + columns: [], + metrics: [], + orderby: undefined, + }); + }); + + it('should group single value to arrays', () => { + expect( + extractQueryFields({ + metric: 'my_metric', + columns: 'abc', + orderby: '["ccc",true]', + }), + ).toEqual({ + metrics: ['my_metric'], + columns: ['abc'], + orderby: [['ccc', true]], + }); + }); + + it('should combine field aliases', () => { + expect( + extractQueryFields( + { + metric: 'metric_1', + metric_2: 'metric_2', + my_custom_metric: 'my_custom_metric', + }, + { my_custom_metric: 'metrics' }, + ).metrics, + ).toEqual(['metric_1', 'metric_2', 'my_custom_metric']); + }); + + it('should extract columns', () => { + expect(extractQueryFields({ columns: 'col_1' })).toEqual({ + columns: ['col_1'], + metrics: [], + orderby: undefined, + }); + }); + + it('should extract groupby as columns and set empty metrics', () => { + expect(extractQueryFields({ groupby: 'col_1' })).toEqual({ + columns: ['col_1'], + metrics: [], + orderby: undefined, + }); + }); + + it('should remove duplicate metrics', () => { + expect( + extractQueryFields({ + metrics: ['col_1', { ...NUM_METRIC }, { ...NUM_METRIC }], + }), + ).toEqual({ + columns: [], + metrics: ['col_1', NUM_METRIC], + orderby: undefined, + }); + }); + + it('should extract custom columns fields', () => { + expect( + extractQueryFields( + { series: 'col_1', metric: 'metric_1' }, + { series: 'groupby' }, + ), + ).toEqual({ + columns: ['col_1'], + metrics: ['metric_1'], + orderby: undefined, + }); + }); + + it('should merge custom groupby into columns', () => { + expect( + extractQueryFields( + { groupby: 'col_1', series: 'col_2', metric: 'metric_1' }, + { series: 'groupby' }, + ), + ).toEqual({ + columns: ['col_1', 'col_2'], + metrics: ['metric_1'], + orderby: undefined, + }); + }); + + it('should include time', () => { + expect( + extractQueryFields({ groupby: 'col_1', include_time: true }).columns, + ).toEqual([DTTM_ALIAS, 'col_1']); + expect( + extractQueryFields({ + groupby: ['col_1', DTTM_ALIAS, ''], + include_time: true, + }).columns, + ).toEqual(['col_1', DTTM_ALIAS]); + }); + + it('should ignore null values', () => { + expect( + extractQueryFields({ series: ['a'], columns: null }).columns, + ).toEqual(['a']); + }); + + it('should ignore groupby and metrics when in raw QueryMode', () => { + expect( + extractQueryFields({ + columns: ['a'], + groupby: ['b'], + metric: ['m'], + query_mode: QueryMode.raw, + }), + ).toEqual({ + columns: ['a'], + metrics: undefined, + orderby: undefined, + }); + }); + + it('should ignore columns when in aggregate QueryMode', () => { + expect( + extractQueryFields({ + columns: ['a'], + groupby: [], + metric: ['m'], + query_mode: QueryMode.aggregate, + }), + ).toEqual({ + metrics: ['m'], + columns: [], + orderby: undefined, + }); + expect( + extractQueryFields({ + columns: ['a'], + groupby: ['b'], + metric: ['m'], + query_mode: QueryMode.aggregate, + }), + ).toEqual({ + metrics: ['m'], + columns: ['b'], + orderby: undefined, + }); + }); + + it('should parse orderby if needed', () => { + expect( + extractQueryFields({ + columns: ['a'], + order_by_cols: ['["foo",false]', '["bar",true]'], + orderby: [['abc', true]], + }), + ).toEqual({ + columns: ['a'], + metrics: [], + orderby: [ + ['foo', false], + ['bar', true], + ['abc', true], + ], + }); + }); + + it('should throw error if parse orderby failed', () => { + expect(() => { + extractQueryFields({ + orderby: ['ccc'], + }); + }).toThrow('invalid orderby'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/extractTimegrain.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/extractTimegrain.test.ts new file mode 100644 index 000000000000..444fc2289cbf --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/extractTimegrain.test.ts @@ -0,0 +1,86 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import extractTimegrain from '@superset-ui/core/src/query/extractTimegrain'; +import { QueryFormData } from '@superset-ui/core'; + +describe('extractTimegrain', () => { + const baseFormData: QueryFormData = { + datasource: 'table__1', + viz_type: 'my_viz', + }; + it('should extract regular from form data', () => { + expect( + extractTimegrain({ + ...baseFormData, + time_grain_sqla: 'P1D', + }), + ).toEqual('P1D'); + }); + + it('should extract filter box time grain from form data', () => { + expect( + extractTimegrain({ + ...baseFormData, + time_grain_sqla: 'P1D', + extra_filters: [ + { + col: '__time_grain', + op: '==', + val: 'P1M', + }, + ], + }), + ).toEqual('P1M'); + }); + + it('should extract native filter time grain from form data', () => { + expect( + extractTimegrain({ + ...baseFormData, + time_grain_sqla: 'P1D', + extra_form_data: { + time_grain_sqla: 'P1W', + }, + }), + ).toEqual('P1W'); + }); + + it('should give priority to native filters', () => { + expect( + extractTimegrain({ + ...baseFormData, + time_grain_sqla: 'P1D', + extra_filters: [ + { + col: '__time_grain', + op: '==', + val: 'P1M', + }, + ], + extra_form_data: { + time_grain_sqla: 'P1W', + }, + }), + ).toEqual('P1W'); + }); + + it('returns undefined if timegrain not defined', () => { + expect(extractTimegrain({ ...baseFormData })).toEqual(undefined); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/getColumnLabel.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/getColumnLabel.test.ts new file mode 100644 index 000000000000..865463481cdc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/getColumnLabel.test.ts @@ -0,0 +1,42 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { getColumnLabel } from '@superset-ui/core/src/query'; + +describe('getColumnLabel', () => { + it('should handle physical column', () => { + expect(getColumnLabel('gender')).toEqual('gender'); + }); + + it('should handle adhoc columns with label', () => { + expect( + getColumnLabel({ + sqlExpression: "case when 1 then 'a' else 'b' end", + label: 'my col', + }), + ).toEqual('my col'); + }); + + it('should handle adhoc columns without label', () => { + expect( + getColumnLabel({ + sqlExpression: "case when 1 then 'a' else 'b' end", + }), + ).toEqual("case when 1 then 'a' else 'b' end"); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/getMetricLabel.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/getMetricLabel.test.ts new file mode 100644 index 000000000000..434eb7215564 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/getMetricLabel.test.ts @@ -0,0 +1,72 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { getMetricLabel } from '@superset-ui/core/src/query'; + +describe('getMetricLabel', () => { + it('should handle predefined metric name', () => { + expect(getMetricLabel('sum__num')).toEqual('sum__num'); + }); + + it('should handle simple adhoc metrics', () => { + expect( + getMetricLabel({ + expressionType: 'SIMPLE', + aggregate: 'AVG', + column: { + id: 5, + type: 'BIGINT', + columnName: 'sum_girls', + }, + }), + ).toEqual('AVG(sum_girls)'); + }); + + it('should handle column_name in alternative field', () => { + expect( + getMetricLabel({ + expressionType: 'SIMPLE', + aggregate: 'AVG', + column: { + id: 5, + type: 'BIGINT', + column_name: 'sum_girls', + }, + }), + ).toEqual('AVG(sum_girls)'); + }); + + it('should handle SQL adhoc metrics', () => { + expect( + getMetricLabel({ + expressionType: 'SQL', + sqlExpression: 'COUNT(sum_girls)', + }), + ).toEqual('COUNT(sum_girls)'); + }); + + it('should handle adhoc metrics with custom labels', () => { + expect( + getMetricLabel({ + expressionType: 'SQL', + label: 'foo', + sqlExpression: 'COUNT(sum_girls)', + }), + ).toEqual('foo'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/normalizeOrderBy.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/normalizeOrderBy.test.ts new file mode 100644 index 000000000000..13b7147e8b6a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/normalizeOrderBy.test.ts @@ -0,0 +1,190 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { normalizeOrderBy, QueryObject } from '@superset-ui/core/src/query'; + +describe('normalizeOrderBy', () => { + it('should not change original queryObject when orderby populated', () => { + const query: QueryObject = { + datasource: '5__table', + viz_type: 'table', + time_range: '1 year ago : 2013', + orderby: [['count(*)', true]], + }; + expect(normalizeOrderBy(query)).toEqual(query); + }); + + it('has timeseries_limit_metric in queryObject', () => { + const query: QueryObject = { + datasource: '5__table', + viz_type: 'table', + time_range: '1 year ago : 2013', + metrics: ['count(*)'], + timeseries_limit_metric: { + expressionType: 'SIMPLE', + column: { + id: 1, + column_name: 'sales', + }, + aggregate: 'SUM', + }, + order_desc: true, + }; + const expectedQueryObject = normalizeOrderBy(query); + expect(expectedQueryObject).not.toHaveProperty('timeseries_limit_metric'); + expect(expectedQueryObject).not.toHaveProperty('order_desc'); + expect(expectedQueryObject).toEqual({ + datasource: '5__table', + viz_type: 'table', + time_range: '1 year ago : 2013', + metrics: ['count(*)'], + orderby: [ + [ + { + expressionType: 'SIMPLE', + column: { + id: 1, + column_name: 'sales', + }, + aggregate: 'SUM', + }, + false, + ], + ], + }); + }); + + it('should transform legacy_order_by in queryObject', () => { + const query: QueryObject = { + datasource: '5__table', + viz_type: 'table', + time_range: '1 year ago : 2013', + metrics: ['count(*)'], + legacy_order_by: { + expressionType: 'SIMPLE', + column: { + id: 1, + column_name: 'sales', + }, + aggregate: 'SUM', + }, + order_desc: true, + }; + const expectedQueryObject = normalizeOrderBy(query); + expect(expectedQueryObject).not.toHaveProperty('legacy_order_by'); + expect(expectedQueryObject).not.toHaveProperty('order_desc'); + expect(expectedQueryObject).toEqual({ + datasource: '5__table', + viz_type: 'table', + time_range: '1 year ago : 2013', + metrics: ['count(*)'], + orderby: [ + [ + { + expressionType: 'SIMPLE', + column: { + id: 1, + column_name: 'sales', + }, + aggregate: 'SUM', + }, + false, + ], + ], + }); + }); + + it('has metrics in queryObject', () => { + const query: QueryObject = { + datasource: '5__table', + viz_type: 'table', + time_range: '1 year ago : 2013', + metrics: ['count(*)'], + order_desc: true, + }; + const expectedQueryObject = normalizeOrderBy(query); + expect(expectedQueryObject).not.toHaveProperty('timeseries_limit_metric'); + expect(expectedQueryObject).not.toHaveProperty('order_desc'); + expect(expectedQueryObject).toEqual({ + datasource: '5__table', + viz_type: 'table', + time_range: '1 year ago : 2013', + metrics: ['count(*)'], + orderby: [['count(*)', false]], + }); + }); + + it('should not change', () => { + const query: QueryObject = { + datasource: '5__table', + viz_type: 'table', + time_range: '1 year ago : 2013', + }; + expect(normalizeOrderBy(query)).toEqual(query); + }); + + it('remove empty orderby', () => { + const query: QueryObject = { + datasource: '5__table', + viz_type: 'table', + time_range: '1 year ago : 2013', + orderby: [], + }; + expect(normalizeOrderBy(query)).not.toHaveProperty('orderby'); + }); + + it('remove orderby with an empty array', () => { + const query: QueryObject = { + datasource: '5__table', + viz_type: 'table', + time_range: '1 year ago : 2013', + orderby: [[]], + }; + expect(normalizeOrderBy(query)).not.toHaveProperty('orderby'); + }); + + it('remove orderby with an empty metric', () => { + const query: QueryObject = { + datasource: '5__table', + viz_type: 'table', + time_range: '1 year ago : 2013', + orderby: [['', true]], + }; + expect(normalizeOrderBy(query)).not.toHaveProperty('orderby'); + }); + + it('remove orderby with an empty adhoc metric', () => { + const query: QueryObject = { + datasource: '5__table', + viz_type: 'table', + time_range: '1 year ago : 2013', + orderby: [[{}, true]], + }; + expect(normalizeOrderBy(query)).not.toHaveProperty('orderby'); + }); + + it('remove orderby with an non-boolean type', () => { + const query: QueryObject = { + datasource: '5__table', + viz_type: 'table', + time_range: '1 year ago : 2013', + orderby: [['count(*)', 'true']], + }; + expect(normalizeOrderBy(query)).not.toHaveProperty('orderby'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/processExtraFormData.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/processExtraFormData.test.ts new file mode 100644 index 000000000000..53f7d7aa19f6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/processExtraFormData.test.ts @@ -0,0 +1,133 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { overrideExtraFormData } from '@superset-ui/core/src/query/processExtraFormData'; + +describe('overrideExtraFormData', () => { + it('should assign allowed non-existent value', () => { + expect( + overrideExtraFormData( + { + granularity: 'something', + viz_type: 'custom', + datasource: 'table_1', + }, + { + time_range: '100 years ago', + }, + ), + ).toEqual({ + granularity: 'something', + viz_type: 'custom', + datasource: 'table_1', + time_range: '100 years ago', + }); + }); + + it('should override allowed preexisting value', () => { + expect( + overrideExtraFormData( + { + granularity: 'something', + viz_type: 'custom', + datasource: 'table_1', + time_range: '100 years ago', + }, + { + time_range: '50 years ago', + }, + ), + ).toEqual({ + granularity: 'something', + viz_type: 'custom', + datasource: 'table_1', + time_range: '50 years ago', + }); + }); + + it('should not override non-allowed value', () => { + expect( + overrideExtraFormData( + { + granularity: 'something', + viz_type: 'custom', + datasource: 'table_1', + time_range: '100 years ago', + }, + { + // @ts-expect-error + viz_type: 'other custom viz', + }, + ), + ).toEqual({ + granularity: 'something', + viz_type: 'custom', + datasource: 'table_1', + time_range: '100 years ago', + }); + }); + + it('should override pre-existing extra value', () => { + expect( + overrideExtraFormData( + { + granularity: 'something', + viz_type: 'custom', + datasource: 'table_1', + time_range: '100 years ago', + extras: { + time_grain_sqla: 'PT1H', + }, + }, + { time_grain_sqla: 'PT2H' }, + ), + ).toEqual({ + granularity: 'something', + viz_type: 'custom', + datasource: 'table_1', + time_range: '100 years ago', + extras: { + time_grain_sqla: 'PT2H', + }, + }); + }); + + it('should add extra override value', () => { + expect( + overrideExtraFormData( + { + granularity: 'something', + viz_type: 'custom', + datasource: 'table_1', + time_range: '100 years ago', + }, + { + time_grain_sqla: 'PT1H', + }, + ), + ).toEqual({ + granularity: 'something', + viz_type: 'custom', + datasource: 'table_1', + time_range: '100 years ago', + extras: { + time_grain_sqla: 'PT1H', + }, + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/processFilters.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/processFilters.test.ts new file mode 100644 index 000000000000..9eb462ac297c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/processFilters.test.ts @@ -0,0 +1,184 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import processFilters from '@superset-ui/core/src/query/processFilters'; + +describe('processFilters', () => { + it('should handle non-array adhoc_filters', () => { + expect( + processFilters({ + granularity: 'something', + viz_type: 'custom', + datasource: 'boba', + }), + ).toEqual( + expect.objectContaining({ + extras: { having: '', having_druid: [], where: '' }, + filters: [], + }), + ); + }); + + it('should merge simple adhoc_filters and filters', () => { + expect( + processFilters({ + granularity: 'something', + viz_type: 'custom', + datasource: 'boba', + filters: [ + { + col: 'name', + op: '==', + val: 'Aaron', + }, + ], + adhoc_filters: [ + { + expressionType: 'SIMPLE', + clause: 'WHERE', + subject: 'gender', + operator: 'IS NOT NULL', + }, + ], + }), + ).toEqual({ + extras: { + having: '', + having_druid: [], + where: '', + }, + filters: [ + { + col: 'name', + op: '==', + val: 'Aaron', + }, + { + col: 'gender', + op: 'IS NOT NULL', + }, + ], + }); + }); + + it('should handle an empty array', () => { + expect( + processFilters({ + where: '1 = 1', + granularity: 'something', + viz_type: 'custom', + datasource: 'boba', + adhoc_filters: [], + }), + ).toEqual({ + filters: [], + extras: { + having: '', + having_druid: [], + where: '(1 = 1)', + }, + }); + }); + + it('should put adhoc_filters into the correct group and format accordingly', () => { + expect( + processFilters({ + granularity: 'something', + viz_type: 'custom', + datasource: 'boba', + adhoc_filters: [ + { + expressionType: 'SIMPLE', + clause: 'WHERE', + subject: 'milk', + operator: 'IS NOT NULL', + }, + { + expressionType: 'SIMPLE', + clause: 'WHERE', + subject: 'milk', + operator: '==', + comparator: 'almond', + }, + { + expressionType: 'SIMPLE', + clause: 'HAVING', + subject: 'sweetness', + operator: '>', + comparator: '0', + }, + { + expressionType: 'SIMPLE', + clause: 'HAVING', + subject: 'sweetness', + operator: '<=', + comparator: '50', + }, + { + expressionType: 'SQL', + clause: 'WHERE', + sqlExpression: 'tea = "jasmine"', + }, + { + expressionType: 'SQL', + clause: 'WHERE', + sqlExpression: 'cup = "large"', + }, + { + expressionType: 'SQL', + clause: 'HAVING', + sqlExpression: 'ice = 25 OR ice = 50', + }, + { + expressionType: 'SQL', + clause: 'HAVING', + sqlExpression: 'waitTime <= 180', + }, + ], + }), + ).toEqual({ + extras: { + having: '(ice = 25 OR ice = 50) AND (waitTime <= 180)', + having_druid: [ + { + col: 'sweetness', + op: '>', + val: '0', + }, + { + col: 'sweetness', + op: '<=', + val: '50', + }, + ], + where: '(tea = "jasmine") AND (cup = "large")', + }, + filters: [ + { + col: 'milk', + op: 'IS NOT NULL', + }, + { + col: 'milk', + op: '==', + val: 'almond', + }, + ], + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/types/AnnotationLayer.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/types/AnnotationLayer.test.ts new file mode 100644 index 000000000000..aadf30743c37 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/types/AnnotationLayer.test.ts @@ -0,0 +1,189 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + AnnotationSourceType, + AnnotationStyle, + AnnotationType, + EventAnnotationLayer, + FormulaAnnotationLayer, + IntervalAnnotationLayer, + isEventAnnotationLayer, + isFormulaAnnotationLayer, + isIntervalAnnotationLayer, + isRecordAnnotationResult, + isTableAnnotationLayer, + isTimeseriesAnnotationLayer, + isTimeseriesAnnotationResult, + RecordAnnotationResult, + TableAnnotationLayer, + TimeseriesAnnotationLayer, + TimeseriesAnnotationResult, +} from '@superset-ui/core/src/query/types/AnnotationLayer'; + +describe('AnnotationLayer type guards', () => { + const formulaAnnotationLayer: FormulaAnnotationLayer = { + annotationType: AnnotationType.Formula, + name: 'My Formula', + value: 'sin(2*x)', + style: AnnotationStyle.Solid, + show: true, + showLabel: false, + }; + const eventAnnotationLayer: EventAnnotationLayer = { + annotationType: AnnotationType.Event, + name: 'My Event', + value: 1, + style: AnnotationStyle.Solid, + show: true, + showLabel: false, + sourceType: AnnotationSourceType.Native, + }; + const intervalAnnotationLayer: IntervalAnnotationLayer = { + annotationType: AnnotationType.Interval, + sourceType: AnnotationSourceType.Table, + name: 'My Event', + value: 1, + style: AnnotationStyle.Solid, + show: true, + showLabel: false, + }; + const timeseriesAnnotationLayer: TimeseriesAnnotationLayer = { + annotationType: AnnotationType.Timeseries, + sourceType: AnnotationSourceType.Line, + name: 'My Event', + value: 1, + style: AnnotationStyle.Solid, + show: true, + showLabel: false, + }; + const tableAnnotationLayer: TableAnnotationLayer = { + annotationType: AnnotationType.Interval, + sourceType: AnnotationSourceType.Table, + name: 'My Event', + value: 1, + style: AnnotationStyle.Solid, + show: true, + showLabel: false, + }; + const timeseriesAnnotationResult: TimeseriesAnnotationResult = [ + { + key: 'My Key', + values: [ + { x: -1000, y: 0 }, + { x: 0, y: 1000 }, + { x: 1000, y: 2000 }, + ], + }, + ]; + const recordAnnotationResult: RecordAnnotationResult = { + columns: ['col1', 'col2'], + records: [ + { a: 1, b: 2 }, + { a: 2, b: 3 }, + ], + }; + + describe('isFormulaAnnotationLayer', () => { + it('should return true when it is the correct type', () => { + expect(isFormulaAnnotationLayer(formulaAnnotationLayer)).toEqual(true); + }); + it('should return false otherwise', () => { + expect(isFormulaAnnotationLayer(eventAnnotationLayer)).toEqual(false); + expect(isFormulaAnnotationLayer(intervalAnnotationLayer)).toEqual(false); + expect(isFormulaAnnotationLayer(timeseriesAnnotationLayer)).toEqual( + false, + ); + }); + }); + + describe('isEventAnnotationLayer', () => { + it('should return true when it is the correct type', () => { + expect(isEventAnnotationLayer(eventAnnotationLayer)).toEqual(true); + }); + it('should return false otherwise', () => { + expect(isEventAnnotationLayer(formulaAnnotationLayer)).toEqual(false); + expect(isEventAnnotationLayer(intervalAnnotationLayer)).toEqual(false); + expect(isEventAnnotationLayer(timeseriesAnnotationLayer)).toEqual(false); + }); + }); + + describe('isIntervalAnnotationLayer', () => { + it('should return true when it is the correct type', () => { + expect(isIntervalAnnotationLayer(intervalAnnotationLayer)).toEqual(true); + }); + it('should return false otherwise', () => { + expect(isIntervalAnnotationLayer(formulaAnnotationLayer)).toEqual(false); + expect(isIntervalAnnotationLayer(eventAnnotationLayer)).toEqual(false); + expect(isIntervalAnnotationLayer(timeseriesAnnotationLayer)).toEqual( + false, + ); + }); + }); + + describe('isTimeseriesAnnotationLayer', () => { + it('should return true when it is the correct type', () => { + expect(isTimeseriesAnnotationLayer(timeseriesAnnotationLayer)).toEqual( + true, + ); + }); + it('should return false otherwise', () => { + expect(isTimeseriesAnnotationLayer(formulaAnnotationLayer)).toEqual( + false, + ); + expect(isTimeseriesAnnotationLayer(eventAnnotationLayer)).toEqual(false); + expect(isTimeseriesAnnotationLayer(intervalAnnotationLayer)).toEqual( + false, + ); + }); + }); + + describe('isTableAnnotationLayer', () => { + it('should return true when it is the correct type', () => { + expect(isTableAnnotationLayer(tableAnnotationLayer)).toEqual(true); + }); + it('should return false otherwise', () => { + expect(isTableAnnotationLayer(formulaAnnotationLayer)).toEqual(false); + }); + }); + + describe('isTimeseriesAnnotationResult', () => { + it('should return true when it is the correct type', () => { + expect(isTimeseriesAnnotationResult(timeseriesAnnotationResult)).toEqual( + true, + ); + }); + it('should return false otherwise', () => { + expect(isTimeseriesAnnotationResult(recordAnnotationResult)).toEqual( + false, + ); + }); + }); + + describe('isRecordAnnotationResult', () => { + it('should return true when it is the correct type', () => { + expect(isRecordAnnotationResult(recordAnnotationResult)).toEqual(true); + }); + it('should return false otherwise', () => { + expect(isRecordAnnotationResult(timeseriesAnnotationResult)).toEqual( + false, + ); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/types/Filter.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/types/Filter.test.ts new file mode 100644 index 000000000000..e8db7c8756c9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/types/Filter.test.ts @@ -0,0 +1,98 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + isUnaryAdhocFilter, + isBinaryAdhocFilter, + isSetAdhocFilter, +} from '@superset-ui/core/src/query/types/Filter'; + +describe('Filter type guards', () => { + describe('isUnaryAdhocFilter', () => { + it('should return true when it is the correct type', () => { + expect( + isUnaryAdhocFilter({ + expressionType: 'SIMPLE', + clause: 'WHERE', + subject: 'tea', + operator: 'IS NOT NULL', + }), + ).toEqual(true); + }); + it('should return false otherwise', () => { + expect( + isUnaryAdhocFilter({ + expressionType: 'SIMPLE', + clause: 'WHERE', + subject: 'tea', + operator: '==', + comparator: 'matcha', + }), + ).toEqual(false); + }); + }); + + describe('isBinaryAdhocFilter', () => { + it('should return true when it is the correct type', () => { + expect( + isBinaryAdhocFilter({ + expressionType: 'SIMPLE', + clause: 'WHERE', + subject: 'tea', + operator: '!=', + comparator: 'matcha', + }), + ).toEqual(true); + }); + it('should return false otherwise', () => { + expect( + isBinaryAdhocFilter({ + expressionType: 'SIMPLE', + clause: 'WHERE', + subject: 'tea', + operator: 'IS NOT NULL', + }), + ).toEqual(false); + }); + }); + + describe('isSetAdhocFilter', () => { + it('should return true when it is the correct type', () => { + expect( + isSetAdhocFilter({ + expressionType: 'SIMPLE', + clause: 'WHERE', + subject: 'tea', + operator: 'IN', + comparator: ['hojicha', 'earl grey'], + }), + ).toEqual(true); + }); + it('should return false otherwise', () => { + expect( + isSetAdhocFilter({ + expressionType: 'SIMPLE', + clause: 'WHERE', + subject: 'tea', + operator: 'IS NOT NULL', + }), + ).toEqual(false); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/types/PostProcessing.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/types/PostProcessing.test.ts new file mode 100644 index 000000000000..f0aad20a5969 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/types/PostProcessing.test.ts @@ -0,0 +1,223 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + Aggregates, + isPostProcessingAggregation, + isPostProcessingBoxplot, + isPostProcessingCompare, + isPostProcessingContribution, + isPostProcessingCum, + isPostProcessingDiff, + isPostProcessingPivot, + isPostProcessingProphet, + isPostProcessingRolling, + isPostProcessingResample, + isPostProcessingSort, + PandasAxis, + PostProcessingAggregation, + PostProcessingBoxplot, + PostProcessingCompare, + PostProcessingContribution, + PostProcessingCum, + PostProcessingDiff, + PostProcessingPivot, + PostProcessingProphet, + PostProcessingResample, + PostProcessingRolling, + PostProcessingSort, +} from '@superset-ui/core/src/query/types/PostProcessing'; +import { ComparisionType, RollingType, TimeGranularity } from '../../../src'; + +const AGGREGATES_OPTION: Aggregates = { + bar: { + operator: 'max', + column: 'bar', + options: {}, + }, +}; + +const AGGREGATE_RULE: PostProcessingAggregation = { + operation: 'aggregation', + options: { + groupby: ['foo'], + aggregates: AGGREGATES_OPTION, + }, +}; + +const BOXPLOT_RULE: PostProcessingBoxplot = { + operation: 'boxplot', + options: { + groupby: ['foo'], + metrics: ['bar'], + whisker_type: 'tukey', + }, +}; + +const COMPARE_RULE: PostProcessingCompare = { + operation: 'compare', + options: { + source_columns: ['foo'], + compare_columns: ['bar'], + compare_type: ComparisionType.Percentage, + drop_original_columns: false, + }, +}; + +const CONTRIBUTION_RULE: PostProcessingContribution = { + operation: 'contribution', + options: { + orientation: 'row', + columns: ['foo'], + }, +}; + +const CUM_RULE: PostProcessingCum = { + operation: 'cum', + options: { + columns: ['foo'], + operator: 'min', + is_pivot_df: true, + }, +}; + +const DIFF_RULE: PostProcessingDiff = { + operation: 'diff', + options: { + columns: ['foo'], + periods: 12, + axis: PandasAxis.Column, + }, +}; + +const PIVOT_RULE: PostProcessingPivot = { + operation: 'pivot', + options: { + index: ['foo'], + columns: ['bar'], + aggregates: AGGREGATES_OPTION, + flatten_columns: true, + reset_index: true, + }, +}; + +const PROPHET_RULE: PostProcessingProphet = { + operation: 'prophet', + options: { + time_grain: TimeGranularity.DAY, + periods: 365, + confidence_interval: 0.8, + yearly_seasonality: false, + weekly_seasonality: false, + daily_seasonality: false, + }, +}; + +const RESAMPLE_RULE: PostProcessingResample = { + operation: 'resample', + options: { + method: 'method', + rule: 'rule', + fill_value: null, + time_column: 'foo', + }, +}; + +const ROLLING_RULE: PostProcessingRolling = { + operation: 'rolling', + options: { + rolling_type: RollingType.Cumsum, + window: 12, + min_periods: 12, + columns: ['foo', 'bar'], + is_pivot_df: true, + }, +}; + +const SORT_RULE: PostProcessingSort = { + operation: 'sort', + options: { + columns: { foo: true }, + }, +}; + +test('PostProcessingAggregation type guard', () => { + expect(isPostProcessingAggregation(AGGREGATE_RULE)).toEqual(true); + expect(isPostProcessingAggregation(BOXPLOT_RULE)).toEqual(false); + expect(isPostProcessingAggregation(undefined)).toEqual(false); +}); + +test('PostProcessingBoxplot type guard', () => { + expect(isPostProcessingBoxplot(BOXPLOT_RULE)).toEqual(true); + expect(isPostProcessingBoxplot(AGGREGATE_RULE)).toEqual(false); + expect(isPostProcessingBoxplot(undefined)).toEqual(false); +}); + +test('PostProcessingCompare type guard', () => { + expect(isPostProcessingCompare(COMPARE_RULE)).toEqual(true); + expect(isPostProcessingCompare(AGGREGATE_RULE)).toEqual(false); + expect(isPostProcessingCompare(undefined)).toEqual(false); +}); + +test('PostProcessingContribution type guard', () => { + expect(isPostProcessingContribution(CONTRIBUTION_RULE)).toEqual(true); + expect(isPostProcessingContribution(AGGREGATE_RULE)).toEqual(false); + expect(isPostProcessingContribution(undefined)).toEqual(false); +}); + +test('PostProcessingCum type guard', () => { + expect(isPostProcessingCum(CUM_RULE)).toEqual(true); + expect(isPostProcessingCum(AGGREGATE_RULE)).toEqual(false); + expect(isPostProcessingCum(undefined)).toEqual(false); +}); + +test('PostProcessingDiff type guard', () => { + expect(isPostProcessingDiff(DIFF_RULE)).toEqual(true); + expect(isPostProcessingDiff(AGGREGATE_RULE)).toEqual(false); + expect(isPostProcessingDiff(undefined)).toEqual(false); +}); + +test('PostProcessingPivot type guard', () => { + expect(isPostProcessingPivot(PIVOT_RULE)).toEqual(true); + expect(isPostProcessingPivot(AGGREGATE_RULE)).toEqual(false); + expect(isPostProcessingPivot(undefined)).toEqual(false); +}); + +test('PostProcessingProphet type guard', () => { + expect(isPostProcessingProphet(PROPHET_RULE)).toEqual(true); + expect(isPostProcessingProphet(AGGREGATE_RULE)).toEqual(false); + expect(isPostProcessingProphet(undefined)).toEqual(false); +}); + +test('PostProcessingResample type guard', () => { + expect(isPostProcessingResample(RESAMPLE_RULE)).toEqual(true); + expect(isPostProcessingResample(AGGREGATE_RULE)).toEqual(false); + expect(isPostProcessingResample(undefined)).toEqual(false); +}); + +test('PostProcessingRolling type guard', () => { + expect(isPostProcessingRolling(ROLLING_RULE)).toEqual(true); + expect(isPostProcessingRolling(AGGREGATE_RULE)).toEqual(false); + expect(isPostProcessingRolling(undefined)).toEqual(false); +}); + +test('PostProcessingSort type guard', () => { + expect(isPostProcessingSort(SORT_RULE)).toEqual(true); + expect(isPostProcessingSort(AGGREGATE_RULE)).toEqual(false); + expect(isPostProcessingSort(undefined)).toEqual(false); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/style/index.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/style/index.test.tsx new file mode 100644 index 000000000000..2c30eb8b7990 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/style/index.test.tsx @@ -0,0 +1,73 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { mount } from 'enzyme'; +import { + styled, + supersetTheme, + SupersetThemeProps, + useTheme, + ThemeProvider, + EmotionCacheProvider, + emotionCache, +} from '@superset-ui/core'; + +describe('@superset-ui/style package', () => { + it('exports a theme', () => { + expect(typeof supersetTheme).toBe('object'); + }); + + it('exports styled component templater', () => { + expect(typeof styled.div).toBe('function'); + }); + + it('exports SupersetThemeProps', () => { + const props: SupersetThemeProps = { + theme: supersetTheme, + }; + expect(typeof props).toBe('object'); + }); + + describe('useTheme()', () => { + it('returns the theme', () => { + function ThemeUser() { + expect(useTheme()).toStrictEqual(supersetTheme); + return
test
; + } + mount(, { + wrappingComponent: ({ children }) => ( + + {children} + + ), + }); + }); + + it('throws when a theme is not present', () => { + function ThemeUser() { + expect(useTheme).toThrow(/could not find a ThemeContext/); + return
test
; + } + mount(, { + wrappingComponent: ({ children }) =>
{children}
, + }); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/TimeFormatter.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/TimeFormatter.test.ts new file mode 100644 index 000000000000..7ff4a0a94c6f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/TimeFormatter.test.ts @@ -0,0 +1,93 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import TimeFormatter, { + PREVIEW_TIME, +} from '@superset-ui/core/src/time-format/TimeFormatter'; + +describe('TimeFormatter', () => { + describe('new TimeFormatter(config)', () => { + it('requires config.id', () => { + expect( + () => + // @ts-ignore -- intentionally pass invalid input + new TimeFormatter({ + formatFunc: () => 'test', + }), + ).toThrow(); + }); + it('requires config.formatFunc', () => { + expect( + () => + // @ts-ignore -- intentionally pass invalid input + new TimeFormatter({ + id: 'my_format', + }), + ).toThrow(); + }); + }); + describe('formatter is also a format function itself', () => { + const formatter = new TimeFormatter({ + id: 'year_only', + formatFunc: (value: Date) => `${value.getFullYear()}`, + }); + it('returns formatted value', () => { + expect(formatter(PREVIEW_TIME)).toEqual('2017'); + }); + it('formatter(value) is the same with formatter.format(value)', () => { + const value = PREVIEW_TIME; + expect(formatter(value)).toEqual(formatter.format(value)); + }); + }); + describe('.format(value)', () => { + const formatter = new TimeFormatter({ + id: 'year_only', + formatFunc: value => `${value.getFullYear()}`, + }); + it('handles null', () => { + expect(formatter.format(null)).toEqual('null'); + }); + it('handles undefined', () => { + expect(formatter.format(undefined)).toEqual('undefined'); + }); + it('handles number, treating it as a timestamp', () => { + expect(formatter.format(PREVIEW_TIME.getTime())).toEqual('2017'); + }); + it('otherwise returns formatted value', () => { + expect(formatter.format(PREVIEW_TIME)).toEqual('2017'); + }); + }); + describe('.preview(value)', () => { + const formatter = new TimeFormatter({ + id: 'year_only', + formatFunc: value => `${value.getFullYear()}`, + }); + it('returns string comparing value before and after formatting', () => { + const time = new Date(Date.UTC(2018, 10, 21, 22, 11, 44)); + expect(formatter.preview(time)).toEqual( + 'Wed, 21 Nov 2018 22:11:44 GMT => 2018', + ); + }); + it('uses the default preview value if not specified', () => { + expect(formatter.preview()).toEqual( + 'Tue, 14 Feb 2017 11:22:33 GMT => 2017', + ); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/TimeFormatterRegistry.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/TimeFormatterRegistry.test.ts new file mode 100644 index 000000000000..3ac636a8bee5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/TimeFormatterRegistry.test.ts @@ -0,0 +1,85 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import TimeFormatterRegistry from '@superset-ui/core/src/time-format/TimeFormatterRegistry'; +import { + TimeFormats, + TimeFormatter, + PREVIEW_TIME, +} from '@superset-ui/core/src/time-format'; + +describe('TimeFormatterRegistry', () => { + let registry: TimeFormatterRegistry; + beforeEach(() => { + registry = new TimeFormatterRegistry(); + }); + describe('.get(format)', () => { + it('creates and returns a new formatter if does not exist', () => { + const formatter = registry.get(TimeFormats.DATABASE_DATETIME); + expect(formatter).toBeInstanceOf(TimeFormatter); + expect(formatter.format(PREVIEW_TIME)).toEqual('2017-02-14 11:22:33'); + }); + it('returns an existing formatter if already exists', () => { + const formatter = registry.get(TimeFormats.TIME); + const formatter2 = registry.get(TimeFormats.TIME); + expect(formatter).toBe(formatter2); + }); + it('falls back to default format if format is not specified', () => { + registry.setDefaultKey(TimeFormats.INTERNATIONAL_DATE); + const formatter = registry.get(); + expect(formatter.format(PREVIEW_TIME)).toEqual('14/02/2017'); + }); + it('falls back to default format if format is null', () => { + registry.setDefaultKey(TimeFormats.INTERNATIONAL_DATE); + // @ts-ignore + const formatter = registry.get(null); + expect(formatter.format(PREVIEW_TIME)).toEqual('14/02/2017'); + }); + it('falls back to default format if format is undefined', () => { + registry.setDefaultKey(TimeFormats.INTERNATIONAL_DATE); + const formatter = registry.get(undefined); + expect(formatter.format(PREVIEW_TIME)).toEqual('14/02/2017'); + }); + it('falls back to default format if format is empty string', () => { + registry.setDefaultKey(TimeFormats.INTERNATIONAL_DATE); + const formatter = registry.get(''); + expect(formatter.format(PREVIEW_TIME)).toEqual('14/02/2017'); + }); + it('removes leading and trailing spaces from format', () => { + const formatter = registry.get(' %Y '); + expect(formatter).toBeInstanceOf(TimeFormatter); + expect(formatter.format(PREVIEW_TIME)).toEqual('2017'); + }); + }); + describe('.format(format, value)', () => { + it('return the value with the specified format', () => { + expect(registry.format(TimeFormats.US_DATE, PREVIEW_TIME)).toEqual( + '02/14/2017', + ); + expect(registry.format(TimeFormats.TIME, PREVIEW_TIME)).toEqual( + '11:22:33', + ); + }); + it('falls back to the default formatter if the format is undefined', () => { + expect(registry.format(undefined, PREVIEW_TIME)).toEqual( + '2017-02-14 11:22:33', + ); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/TimeFormatterRegistrySingleton.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/TimeFormatterRegistrySingleton.test.ts new file mode 100644 index 000000000000..5d51a6bc3af8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/TimeFormatterRegistrySingleton.test.ts @@ -0,0 +1,188 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import getTimeFormatterRegistry, { + getTimeFormatter, + formatTime, + getTimeFormatterForGranularity, + formatTimeRange, +} from '@superset-ui/core/src/time-format/TimeFormatterRegistrySingleton'; +import TimeFormatterRegistry from '@superset-ui/core/src/time-format/TimeFormatterRegistry'; +import { PREVIEW_TIME } from '@superset-ui/core/src/time-format/TimeFormatter'; +import { + TimeGranularity, + LOCAL_PREFIX, +} from '@superset-ui/core/src/time-format'; + +describe('TimeFormatterRegistrySingleton', () => { + describe('getTimeFormatterRegistry()', () => { + it('returns a TimeFormatterRegisry', () => { + expect(getTimeFormatterRegistry()).toBeInstanceOf(TimeFormatterRegistry); + }); + }); + describe('getTimeFormatter(format)', () => { + it('returns a format function', () => { + const format = getTimeFormatter('%d/%m/%Y'); + expect(format(PREVIEW_TIME)).toEqual('14/02/2017'); + }); + it('falls back to default format if format is not specified', () => { + const format = getTimeFormatter(); + expect(format(PREVIEW_TIME)).toEqual('2017-02-14 11:22:33'); + }); + it(`use local time when format string has LOCAL_PREFIX (${LOCAL_PREFIX})`, () => { + const format = getTimeFormatter('local!%m-%d %H:%M'); + expect(format(new Date(2019, 5, 18, 11, 23))).toEqual('06-18 11:23'); + }); + }); + describe('getTimeFormatterForGranularity(granularity?)', () => { + it('returns the default formatter for that granularity', () => { + const date = new Date(Date.UTC(2020, 4, 10)); // May 10, 2020 is Sunday + expect( + getTimeFormatterForGranularity(TimeGranularity.DATE)(date), + ).toEqual('2020-05-10'); + }); + }); + describe('formatTimeRange(format?, values)', () => { + it('format the given time range with specified format', () => { + expect( + formatTimeRange('%m-%d', [ + new Date(Date.UTC(2017, 1, 1)), + new Date(Date.UTC(2017, 1, 2)), + ]), + ).toEqual('02-01 — 02-02'); + }); + it('show only one value if start and end are equal after formatting', () => { + expect( + formatTimeRange('%m-%d', [ + new Date(Date.UTC(2017, 1, 1)), + new Date(Date.UTC(2017, 1, 1, 10)), + ]), + ).toEqual('02-01'); + }); + it('falls back to default format if format is not specified', () => { + expect( + formatTimeRange(undefined, [ + new Date(Date.UTC(2017, 1, 1)), + new Date(Date.UTC(2017, 1, 2)), + ]), + ).toEqual('2017-02-01 00:00:00 — 2017-02-02 00:00:00'); + }); + }); + describe('formatTime(format?, value, granularity?)', () => { + describe('without granularity', () => { + it('format the given time using the specified format', () => { + const output = formatTime('%Y-%m-%d', PREVIEW_TIME); + expect(output).toEqual('2017-02-14'); + }); + it('falls back to the default formatter if the format is undefined', () => { + expect(formatTime(undefined, PREVIEW_TIME)).toEqual( + '2017-02-14 11:22:33', + ); + }); + }); + describe('with granularity', () => { + it('format the given time using specified format', () => { + const output = formatTime( + '%-m/%d', + new Date(Date.UTC(2017, 4, 10)), + TimeGranularity.WEEK, + ); + expect(output).toEqual('5/10 — 5/16'); + }); + it('format the given time using default format if format is not specified', () => { + const date = new Date(Date.UTC(2020, 4, 10)); // May 10, 2020 is Sunday + expect(formatTime(undefined, date, TimeGranularity.DATE)).toEqual( + '2020-05-10', + ); + expect(formatTime(undefined, date, TimeGranularity.SECOND)).toEqual( + '2020-05-10 00:00:00', + ); + expect(formatTime(undefined, date, TimeGranularity.MINUTE)).toEqual( + '2020-05-10 00:00', + ); + expect( + formatTime(undefined, date, TimeGranularity.FIVE_MINUTES), + ).toEqual('2020-05-10 00:00 — 2020-05-10 00:04'); + expect( + formatTime(undefined, date, TimeGranularity.TEN_MINUTES), + ).toEqual('2020-05-10 00:00 — 2020-05-10 00:09'); + expect( + formatTime(undefined, date, TimeGranularity.FIFTEEN_MINUTES), + ).toEqual('2020-05-10 00:00 — 2020-05-10 00:14'); + expect( + formatTime(undefined, date, TimeGranularity.THIRTY_MINUTES), + ).toEqual('2020-05-10 00:00 — 2020-05-10 00:29'); + expect(formatTime(undefined, date, TimeGranularity.HOUR)).toEqual( + '2020-05-10 00:00', + ); + expect(formatTime(undefined, date, TimeGranularity.DAY)).toEqual( + '2020-05-10', + ); + expect(formatTime(undefined, date, TimeGranularity.WEEK)).toEqual( + '2020-05-10 — 2020-05-16', + ); + expect( + formatTime(undefined, date, TimeGranularity.WEEK_STARTING_SUNDAY), + ).toEqual('2020-05-10 — 2020-05-16'); + expect( + formatTime( + undefined, + new Date(Date.UTC(2020, 4, 11)), + TimeGranularity.WEEK_STARTING_MONDAY, + ), + ).toEqual('2020-05-11 — 2020-05-17'); + expect( + formatTime( + undefined, + new Date(Date.UTC(2020, 4, 10)), + TimeGranularity.WEEK_ENDING_SUNDAY, + ), + ).toEqual('2020-05-04 — 2020-05-10'); + expect( + formatTime( + undefined, + new Date(Date.UTC(2020, 4, 9)), + TimeGranularity.WEEK_ENDING_SATURDAY, + ), + ).toEqual('2020-05-03 — 2020-05-09'); + expect( + formatTime( + undefined, + new Date(Date.UTC(2020, 3, 1)), + TimeGranularity.MONTH, + ), + ).toEqual('Apr 2020'); + expect( + formatTime( + undefined, + new Date(Date.UTC(2020, 3, 1)), + TimeGranularity.QUARTER, + ), + ).toEqual('2020 Q2'); + expect( + formatTime( + undefined, + new Date(Date.UTC(2020, 0, 1)), + TimeGranularity.YEAR, + ), + ).toEqual('2020'); + }); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/factories/createD3TimeFormatter.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/factories/createD3TimeFormatter.test.ts new file mode 100644 index 000000000000..c6cc18d66f40 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/factories/createD3TimeFormatter.test.ts @@ -0,0 +1,130 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { TimeLocaleDefinition } from 'd3-time-format'; +import createD3TimeFormatter from '@superset-ui/core/src/time-format/factories/createD3TimeFormatter'; +import { PREVIEW_TIME } from '@superset-ui/core/src/time-format/TimeFormatter'; +import { TimeFormats } from '@superset-ui/core/src/time-format'; + +const thLocale: TimeLocaleDefinition = { + dateTime: '%a %e %b %Y %X', + date: '%d/%m/%Y', + time: '%H:%M:%S', + periods: ['AM', 'PM'], + days: [ + 'วันอาทิตย์', + 'วันจันทร์', + 'วันอังคาร', + 'วันพุธ', + 'วันพฤหัส', + 'วันศุกร์', + 'วันเสาร์', + ], + shortDays: ['อา.', 'จ.', 'อ.', 'พ.', 'พฤ', 'ศ.', 'ส.'], + months: [ + 'มกราคม', + 'กุมภาพันธ์', + 'มีนาคม', + 'เมษายน', + 'พฤษภาคม', + 'มิถุนายน', + 'กรกฎาคม', + 'สิงหาคม', + 'กันยายน', + 'ตุลาคม', + 'พฤศจิกายน', + 'ธันวาคม', + ], + shortMonths: [ + 'ม.ค.', + 'ก.พ.', + 'มี.ค.', + 'เม.ย.', + 'พ.ค.', + 'มิ.ย.', + 'ก.ค.', + 'ส.ค.', + 'ก.ย.', + 'ต.ค.', + 'พ.ย.', + 'ธ.ค.', + ], +}; + +describe('createD3TimeFormatter(config)', () => { + it('requires config.formatString', () => { + // @ts-ignore + expect(() => createD3TimeFormatter()).toThrow(); + // @ts-ignore + expect(() => createD3TimeFormatter({})).toThrow(); + }); + describe('config.useLocalTime', () => { + it('if falsy, formats in UTC time', () => { + const formatter = createD3TimeFormatter({ + formatString: TimeFormats.DATABASE_DATETIME, + }); + expect(formatter.format(PREVIEW_TIME)).toEqual('2017-02-14 11:22:33'); + }); + it('if true, formats in local time', () => { + const formatter = createD3TimeFormatter({ + formatString: TimeFormats.DATABASE_DATETIME, + useLocalTime: true, + }); + const formatterInUTC = createD3TimeFormatter({ + formatString: TimeFormats.DATABASE_DATETIME, + }); + const offset = new Date(PREVIEW_TIME.valueOf()).getTimezoneOffset(); // in minutes + const expected = + offset === 0 + ? '2017-02-14 11:22:33' + : formatterInUTC( + new Date(PREVIEW_TIME.valueOf() - 60 * 1000 * offset), + ); + expect(formatter.format(PREVIEW_TIME)).toEqual(expected); + }); + }); + + describe('config.locale', () => { + const TEST_TIME = new Date(Date.UTC(2015, 11, 20)); + it('supports locale customization (utc time)', () => { + const formatter = createD3TimeFormatter({ + formatString: '%c', + locale: thLocale, + }); + expect(formatter(TEST_TIME)).toEqual('อา. 20 ธ.ค. 2015 00:00:00'); + }); + it('supports locale customization (local time)', () => { + const formatter = createD3TimeFormatter({ + formatString: '%c', + locale: thLocale, + useLocalTime: true, + }); + const formatterInUTC = createD3TimeFormatter({ + formatString: '%c', + locale: thLocale, + }); + const offset = new Date(PREVIEW_TIME.valueOf()).getTimezoneOffset(); + const expected = + offset === 0 + ? 'อา. 20 ธ.ค. 2015 00:00:00' + : formatterInUTC(new Date(TEST_TIME.valueOf() - 60 * 1000 * offset)); + expect(formatter(TEST_TIME)).toEqual(expected); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/factories/createMultiFormatter.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/factories/createMultiFormatter.test.ts new file mode 100644 index 000000000000..ffd99f63da41 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/factories/createMultiFormatter.test.ts @@ -0,0 +1,55 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import createMultiFormatter from '@superset-ui/core/src/time-format/factories/createMultiFormatter'; + +describe('createMultiFormatter()', () => { + describe('creates a multi-step formatter', () => { + const formatter = createMultiFormatter({ + id: 'my_format', + useLocalTime: true, + }); + it('formats millisecond', () => { + expect(formatter(new Date(2018, 10, 20, 11, 22, 33, 100))).toEqual( + '.100', + ); + }); + it('formats second', () => { + expect(formatter(new Date(2018, 10, 20, 11, 22, 33))).toEqual(':33'); + }); + it('format minutes', () => { + expect(formatter(new Date(2018, 10, 20, 11, 22))).toEqual('11:22'); + }); + it('format hours', () => { + expect(formatter(new Date(2018, 10, 20, 11))).toEqual('11 AM'); + }); + it('format first day of week', () => { + expect(formatter(new Date(2018, 10, 18))).toEqual('Nov 18'); + }); + it('format other day of week', () => { + expect(formatter(new Date(2018, 10, 20))).toEqual('Tue 20'); + }); + it('format month', () => { + expect(formatter(new Date(2018, 10))).toEqual('November'); + }); + it('format year', () => { + expect(formatter(new Date(2018, 0))).toEqual('2018'); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/formatters/smartDate.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/formatters/smartDate.test.ts new file mode 100644 index 000000000000..4e8ad52bf1c2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/formatters/smartDate.test.ts @@ -0,0 +1,43 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import TimeFormatter from '@superset-ui/core/src/time-format/TimeFormatter'; +import smartDateFormatter from '@superset-ui/core/src/time-format/formatters/smartDate'; + +describe('smartDateFormatter', () => { + it('is a function', () => { + expect(smartDateFormatter).toBeInstanceOf(TimeFormatter); + }); + + it('shows only year when 1st day of the year', () => { + expect(smartDateFormatter(new Date('2020-01-01'))).toBe('2020'); + }); + + it('shows only month when 1st of month', () => { + expect(smartDateFormatter(new Date('2020-03-01'))).toBe('March'); + }); + + it('does not show day of week when it is Sunday', () => { + expect(smartDateFormatter(new Date('2020-03-15'))).toBe('Mar 15'); + }); + + it('shows weekday when it is not Sunday (and no ms/sec/min/hr)', () => { + expect(smartDateFormatter(new Date('2020-03-03'))).toBe('Tue 03'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/formatters/smartDateDetailed.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/formatters/smartDateDetailed.test.ts new file mode 100644 index 000000000000..a7878d92c8c4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/formatters/smartDateDetailed.test.ts @@ -0,0 +1,57 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import TimeFormatter from '@superset-ui/core/src/time-format/TimeFormatter'; +import smartDateDetailedFormatter from '@superset-ui/core/src/time-format/formatters/smartDateDetailed'; + +describe('smartDateDetailedFormatter', () => { + const formatter = smartDateDetailedFormatter; + + it('is a function', () => { + expect(formatter).toBeInstanceOf(TimeFormatter); + }); + + it('shows only year when 1st day of the year', () => { + expect(formatter(new Date('2020-01-01T00:00:00.000+00:00'))).toBe('2020'); + }); + + it('shows full date when a regular date', () => { + expect(formatter(new Date('2020-03-01T00:00:00.000+00:00'))).toBe( + '2020-03-01', + ); + }); + + it('shows full date including time of day without seconds when hour precision', () => { + expect(formatter(new Date('2020-03-01T13:00:00.000+00:00'))).toBe( + '2020-03-01 13:00', + ); + }); + + it('shows full date including time of day when minute precision', () => { + expect(formatter(new Date('2020-03-10T13:10:00.000+00:00'))).toBe( + '2020-03-10 13:10', + ); + }); + + it('shows full date including time of day when subsecond precision', () => { + expect(formatter(new Date('2020-03-10T13:10:00.100+00:00'))).toBe( + '2020-03-10 13:10:00.100', + ); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/formatters/smartDateVerbose.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/formatters/smartDateVerbose.test.ts new file mode 100644 index 000000000000..103ce6c4cc9e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/formatters/smartDateVerbose.test.ts @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import TimeFormatter from '@superset-ui/core/src/time-format/TimeFormatter'; +import smartDateVerboseFormatter from '@superset-ui/core/src/time-format/formatters/smartDateVerbose'; + +describe('smartDateVerboseFormatter', () => { + const formatter = smartDateVerboseFormatter; + + it('is a function', () => { + expect(formatter).toBeInstanceOf(TimeFormatter); + }); + + it('shows only year when 1st day of the year', () => { + expect(formatter(new Date('2020-01-01'))).toBe('2020'); + }); + + it('shows month and year when 1st of month', () => { + expect(formatter(new Date('2020-03-01'))).toBe('Mar 2020'); + }); + + it('shows weekday when any day of the month', () => { + expect(formatter(new Date('2020-03-03'))).toBe('Tue Mar 3'); + expect(formatter(new Date('2020-03-15'))).toBe('Sun Mar 15'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/index.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/index.test.ts new file mode 100644 index 000000000000..6982dc5c6216 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/index.test.ts @@ -0,0 +1,50 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + createD3TimeFormatter, + createMultiFormatter, + formatTime, + getTimeFormatter, + getTimeFormatterRegistry, + LOCAL_PREFIX, + PREVIEW_TIME, + smartDateFormatter, + smartDateVerboseFormatter, + TimeFormats, + TimeFormatter, +} from '@superset-ui/core/src/time-format'; + +describe('index', () => { + it('exports modules', () => { + [ + createD3TimeFormatter, + createMultiFormatter, + formatTime, + getTimeFormatter, + getTimeFormatterRegistry, + LOCAL_PREFIX, + PREVIEW_TIME, + smartDateFormatter, + smartDateVerboseFormatter, + TimeFormats, + TimeFormatter, + ].forEach(x => expect(x).toBeDefined()); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/utils/createTime.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/utils/createTime.test.ts new file mode 100644 index 000000000000..4d196a1cb15f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/utils/createTime.test.ts @@ -0,0 +1,56 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import createTime from '@superset-ui/core/src/time-format/utils/createTime'; + +describe('createTime(mode, year, month, date, hours, minutes, seconds, milliseconds)', () => { + describe('mode', () => { + it('creates UTC time when mode==="utc"', () => { + const time = createTime('utc', 2020, 5, 15); + expect(time.getUTCFullYear()).toEqual(2020); + expect(time.getUTCMonth()).toEqual(5); + expect(time.getUTCDate()).toEqual(15); + }); + it('creates local time when mode==="local"', () => { + const time = createTime('local', 2020, 5, 15); + expect(time.getFullYear()).toEqual(2020); + expect(time.getMonth()).toEqual(5); + expect(time.getDate()).toEqual(15); + }); + }); + it('sets all the date parts', () => { + const time = createTime('local', 2020, 5, 15, 1, 2, 3, 4); + expect(time.getFullYear()).toEqual(2020); + expect(time.getMonth()).toEqual(5); + expect(time.getDate()).toEqual(15); + expect(time.getHours()).toEqual(1); + expect(time.getMinutes()).toEqual(2); + expect(time.getSeconds()).toEqual(3); + expect(time.getMilliseconds()).toEqual(4); + }); + it('sets default values for date parts', () => { + const time = createTime('utc', 2020); + expect(time.getUTCMonth()).toEqual(0); + expect(time.getUTCDate()).toEqual(1); + expect(time.getUTCHours()).toEqual(0); + expect(time.getUTCMinutes()).toEqual(0); + expect(time.getUTCSeconds()).toEqual(0); + expect(time.getUTCMilliseconds()).toEqual(0); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/utils/createTimeRangeFromGranularity.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/utils/createTimeRangeFromGranularity.test.ts new file mode 100644 index 000000000000..b62d8f52e52c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/utils/createTimeRangeFromGranularity.test.ts @@ -0,0 +1,191 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import createTimeRangeFromGranularity from '@superset-ui/core/src/time-format/utils/createTimeRangeFromGranularity'; +import { + TimeGranularity, + getTimeRangeFormatter, + LOCAL_PREFIX, +} from '@superset-ui/core/src/time-format'; + +const formatString = '%Y-%m-%d %H:%M:%S.%L'; +const formatUTCTimeRange = getTimeRangeFormatter(formatString); +const formatLocalTimeRange = getTimeRangeFormatter( + `${LOCAL_PREFIX}${formatString}`, +); + +function testUTC( + granularity: TimeGranularity, + year: number, + month = 0, + date = 1, + hours = 0, + minutes = 0, + seconds = 0, +) { + return formatUTCTimeRange( + createTimeRangeFromGranularity( + new Date(Date.UTC(year, month, date, hours, minutes, seconds)), + granularity, + ), + ); +} + +function testLocal( + granularity: TimeGranularity, + year: number, + month = 0, + date = 1, + hours = 0, + minutes = 0, + seconds = 0, +) { + return formatLocalTimeRange( + createTimeRangeFromGranularity( + new Date(year, month, date, hours, minutes, seconds), + granularity, + true, + ), + ); +} + +describe('createTimeRangeFromGranularity(time, granularity, useLocalTime)', () => { + describe('UTC time', () => { + it('creates time range according to specified granularity', () => { + expect(testUTC(TimeGranularity.DATE, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 23:59:59.999', + ); + expect(testUTC(TimeGranularity.SECOND, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 00:00:00.999', + ); + expect(testUTC(TimeGranularity.MINUTE, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 00:00:59.999', + ); + expect(testUTC(TimeGranularity.FIVE_MINUTES, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 00:04:59.999', + ); + expect(testUTC(TimeGranularity.TEN_MINUTES, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 00:09:59.999', + ); + expect(testUTC(TimeGranularity.FIFTEEN_MINUTES, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 00:14:59.999', + ); + expect(testUTC(TimeGranularity.THIRTY_MINUTES, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 00:29:59.999', + ); + expect(testUTC(TimeGranularity.HOUR, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 00:59:59.999', + ); + expect(testUTC(TimeGranularity.DAY, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 23:59:59.999', + ); + expect(testUTC(TimeGranularity.WEEK, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-21 23:59:59.999', + ); + expect( + testUTC(TimeGranularity.WEEK_STARTING_SUNDAY, 2020, 4, 17), + ).toEqual('2020-05-17 00:00:00.000 — 2020-05-23 23:59:59.999'); + expect( + testUTC(TimeGranularity.WEEK_STARTING_MONDAY, 2020, 4, 18), + ).toEqual('2020-05-18 00:00:00.000 — 2020-05-24 23:59:59.999'); + expect( + testUTC(TimeGranularity.WEEK_ENDING_SATURDAY, 2020, 4, 16), + ).toEqual('2020-05-10 00:00:00.000 — 2020-05-16 23:59:59.999'); + expect(testUTC(TimeGranularity.WEEK_ENDING_SUNDAY, 2020, 4, 17)).toEqual( + '2020-05-11 00:00:00.000 — 2020-05-17 23:59:59.999', + ); + expect(testUTC(TimeGranularity.MONTH, 2020, 4, 1)).toEqual( + '2020-05-01 00:00:00.000 — 2020-05-31 23:59:59.999', + ); + expect(testUTC(TimeGranularity.MONTH, 2020, 11, 1)).toEqual( + '2020-12-01 00:00:00.000 — 2020-12-31 23:59:59.999', + ); + expect(testUTC(TimeGranularity.QUARTER, 2020, 3, 1)).toEqual( + '2020-04-01 00:00:00.000 — 2020-06-30 23:59:59.999', + ); + expect(testUTC(TimeGranularity.QUARTER, 2020, 9, 1)).toEqual( + '2020-10-01 00:00:00.000 — 2020-12-31 23:59:59.999', + ); + expect(testUTC(TimeGranularity.YEAR, 2020, 0, 1)).toEqual( + '2020-01-01 00:00:00.000 — 2020-12-31 23:59:59.999', + ); + }); + }); + describe('Local time', () => { + it('creates time range according to specified granularity', () => { + expect(testLocal(TimeGranularity.DATE, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 23:59:59.999', + ); + expect(testLocal(TimeGranularity.SECOND, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 00:00:00.999', + ); + expect(testLocal(TimeGranularity.MINUTE, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 00:00:59.999', + ); + expect(testLocal(TimeGranularity.FIVE_MINUTES, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 00:04:59.999', + ); + expect(testLocal(TimeGranularity.TEN_MINUTES, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 00:09:59.999', + ); + expect(testLocal(TimeGranularity.FIFTEEN_MINUTES, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 00:14:59.999', + ); + expect(testLocal(TimeGranularity.THIRTY_MINUTES, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 00:29:59.999', + ); + expect(testLocal(TimeGranularity.HOUR, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 00:59:59.999', + ); + expect(testLocal(TimeGranularity.DAY, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-15 23:59:59.999', + ); + expect(testLocal(TimeGranularity.WEEK, 2020, 4, 15)).toEqual( + '2020-05-15 00:00:00.000 — 2020-05-21 23:59:59.999', + ); + expect( + testLocal(TimeGranularity.WEEK_STARTING_SUNDAY, 2020, 4, 17), + ).toEqual('2020-05-17 00:00:00.000 — 2020-05-23 23:59:59.999'); + expect( + testLocal(TimeGranularity.WEEK_STARTING_MONDAY, 2020, 4, 18), + ).toEqual('2020-05-18 00:00:00.000 — 2020-05-24 23:59:59.999'); + expect( + testLocal(TimeGranularity.WEEK_ENDING_SATURDAY, 2020, 4, 16), + ).toEqual('2020-05-10 00:00:00.000 — 2020-05-16 23:59:59.999'); + expect( + testLocal(TimeGranularity.WEEK_ENDING_SUNDAY, 2020, 4, 17), + ).toEqual('2020-05-11 00:00:00.000 — 2020-05-17 23:59:59.999'); + expect(testLocal(TimeGranularity.MONTH, 2020, 4, 1)).toEqual( + '2020-05-01 00:00:00.000 — 2020-05-31 23:59:59.999', + ); + expect(testLocal(TimeGranularity.MONTH, 2020, 11, 1)).toEqual( + '2020-12-01 00:00:00.000 — 2020-12-31 23:59:59.999', + ); + expect(testLocal(TimeGranularity.QUARTER, 2020, 3, 1)).toEqual( + '2020-04-01 00:00:00.000 — 2020-06-30 23:59:59.999', + ); + expect(testLocal(TimeGranularity.QUARTER, 2020, 9, 1)).toEqual( + '2020-10-01 00:00:00.000 — 2020-12-31 23:59:59.999', + ); + expect(testLocal(TimeGranularity.YEAR, 2020, 0, 1)).toEqual( + '2020-01-01 00:00:00.000 — 2020-12-31 23:59:59.999', + ); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/utils/d3Time.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/utils/d3Time.test.ts new file mode 100644 index 000000000000..7bf76b00e920 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/time-format/utils/d3Time.test.ts @@ -0,0 +1,142 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + utcUtils, + localTimeUtils, +} from '@superset-ui/core/src/time-format/utils/d3Time'; + +describe('utils', () => { + describe('utcUtils', () => { + it('has isNotFirstDayOfWeekStartOnSunday', () => { + const date = new Date(Date.UTC(2018, 10, 19)); + expect(utcUtils.isNotFirstDayOfWeekStartOnSunday(date)).toBeTruthy(); + const date2 = new Date(Date.UTC(2018, 10, 18)); + expect(utcUtils.isNotFirstDayOfWeekStartOnSunday(date2)).toBeFalsy(); + }); + it('has isNotFirstDayOfWeekStartOnMonday', () => { + const date = new Date(Date.UTC(2018, 10, 20)); + expect(utcUtils.isNotFirstDayOfWeekStartOnMonday(date)).toBeTruthy(); + const date2 = new Date(Date.UTC(2018, 10, 19)); + expect(utcUtils.isNotFirstDayOfWeekStartOnMonday(date2)).toBeFalsy(); + }); + it('has isNotFirstDayOfWeekStartOnTuesday', () => { + const date = new Date(Date.UTC(2018, 10, 21)); + expect(utcUtils.isNotFirstDayOfWeekStartOnTuesday(date)).toBeTruthy(); + const date2 = new Date(Date.UTC(2018, 10, 20)); + expect(utcUtils.isNotFirstDayOfWeekStartOnTuesday(date2)).toBeFalsy(); + }); + it('has isNotFirstDayOfWeekStartOnWednesday', () => { + const date = new Date(Date.UTC(2018, 10, 22)); + expect(utcUtils.isNotFirstDayOfWeekStartOnWednesday(date)).toBeTruthy(); + const date2 = new Date(Date.UTC(2018, 10, 21)); + expect(utcUtils.isNotFirstDayOfWeekStartOnWednesday(date2)).toBeFalsy(); + }); + it('has isNotFirstDayOfWeekStartOnThursday', () => { + const date = new Date(Date.UTC(2018, 10, 23)); + expect(utcUtils.isNotFirstDayOfWeekStartOnThursday(date)).toBeTruthy(); + const date2 = new Date(Date.UTC(2018, 10, 22)); + expect(utcUtils.isNotFirstDayOfWeekStartOnThursday(date2)).toBeFalsy(); + }); + it('has isNotFirstDayOfWeekStartOnFriday', () => { + const date = new Date(Date.UTC(2018, 10, 24)); + expect(utcUtils.isNotFirstDayOfWeekStartOnFriday(date)).toBeTruthy(); + const date2 = new Date(Date.UTC(2018, 10, 23)); + expect(utcUtils.isNotFirstDayOfWeekStartOnFriday(date2)).toBeFalsy(); + }); + it('has isNotFirstDayOfWeekStartOnSaturday', () => { + const date = new Date(Date.UTC(2018, 10, 25)); + expect(utcUtils.isNotFirstDayOfWeekStartOnSaturday(date)).toBeTruthy(); + const date2 = new Date(Date.UTC(2018, 10, 24)); + expect(utcUtils.isNotFirstDayOfWeekStartOnSaturday(date2)).toBeFalsy(); + }); + }); + describe('localTimeUtils', () => { + it('has isNotFirstDayOfWeekStartOnSunday', () => { + const date = new Date(2018, 10, 19); + expect( + localTimeUtils.isNotFirstDayOfWeekStartOnSunday(date), + ).toBeTruthy(); + const date2 = new Date(2018, 10, 18); + expect( + localTimeUtils.isNotFirstDayOfWeekStartOnSunday(date2), + ).toBeFalsy(); + }); + it('has isNotFirstDayOfWeekStartOnMonday', () => { + const date = new Date(2018, 10, 20); + expect( + localTimeUtils.isNotFirstDayOfWeekStartOnMonday(date), + ).toBeTruthy(); + const date2 = new Date(2018, 10, 19); + expect( + localTimeUtils.isNotFirstDayOfWeekStartOnMonday(date2), + ).toBeFalsy(); + }); + it('has isNotFirstDayOfWeekStartOnTuesday', () => { + const date = new Date(2018, 10, 21); + expect( + localTimeUtils.isNotFirstDayOfWeekStartOnTuesday(date), + ).toBeTruthy(); + const date2 = new Date(2018, 10, 20); + expect( + localTimeUtils.isNotFirstDayOfWeekStartOnTuesday(date2), + ).toBeFalsy(); + }); + it('has isNotFirstDayOfWeekStartOnWednesday', () => { + const date = new Date(2018, 10, 22); + expect( + localTimeUtils.isNotFirstDayOfWeekStartOnWednesday(date), + ).toBeTruthy(); + const date2 = new Date(2018, 10, 21); + expect( + localTimeUtils.isNotFirstDayOfWeekStartOnWednesday(date2), + ).toBeFalsy(); + }); + it('has isNotFirstDayOfWeekStartOnThursday', () => { + const date = new Date(2018, 10, 23); + expect( + localTimeUtils.isNotFirstDayOfWeekStartOnThursday(date), + ).toBeTruthy(); + const date2 = new Date(2018, 10, 22); + expect( + localTimeUtils.isNotFirstDayOfWeekStartOnThursday(date2), + ).toBeFalsy(); + }); + it('has isNotFirstDayOfWeekStartOnFriday', () => { + const date = new Date(2018, 10, 24); + expect( + localTimeUtils.isNotFirstDayOfWeekStartOnFriday(date), + ).toBeTruthy(); + const date2 = new Date(2018, 10, 23); + expect( + localTimeUtils.isNotFirstDayOfWeekStartOnFriday(date2), + ).toBeFalsy(); + }); + it('has isNotFirstDayOfWeekStartOnSaturday', () => { + const date = new Date(2018, 10, 25); + expect( + localTimeUtils.isNotFirstDayOfWeekStartOnSaturday(date), + ).toBeTruthy(); + const date2 = new Date(2018, 10, 24); + expect( + localTimeUtils.isNotFirstDayOfWeekStartOnSaturday(date2), + ).toBeFalsy(); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/translation/Translator.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/translation/Translator.test.ts new file mode 100644 index 000000000000..bab9081a7cdb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/translation/Translator.test.ts @@ -0,0 +1,199 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { logging } from '@superset-ui/core'; +import Translator from '@superset-ui/core/src/translation/Translator'; +import { + configure, + t, + tn, + addLocaleData, + addTranslation, + addTranslations, +} from '@superset-ui/core/src/translation/TranslatorSingleton'; +import languagePackZh from './languagePacks/zh'; +import languagePackEn from './languagePacks/en'; + +configure({ + languagePack: languagePackEn, +}); + +describe('Translator', () => { + const spy = jest.spyOn(logging, 'warn'); + + beforeAll(() => { + spy.mockImplementation((info: any) => { + throw new Error(info); + }); + }); + + afterAll(() => { + spy.mockRestore(); + }); + + describe('new Translator(config)', () => { + it('initializes when config is not specified', () => { + expect(new Translator()).toBeInstanceOf(Translator); + }); + it('initializes when config is an empty object', () => { + expect(new Translator({})).toBeInstanceOf(Translator); + }); + it('initializes when config is specified', () => { + expect( + new Translator({ + languagePack: languagePackZh, + }), + ).toBeInstanceOf(Translator); + }); + }); + describe('.translate(input, ...args)', () => { + const translator = new Translator({ + languagePack: languagePackZh, + }); + it('returns original text for unknown text', () => { + expect(translator.translate('abc')).toEqual('abc'); + }); + it('translates simple text', () => { + expect(translator.translate('second')).toEqual('秒'); + }); + it('translates template text with an argument', () => { + expect(translator.translate('Copy of %s', 1)).toEqual('1 的副本'); + expect(translator.translate('Copy of %s', 2)).toEqual('2 的副本'); + }); + it('translates template text with multiple arguments', () => { + expect(translator.translate('test %d %d', 1, 2)).toEqual('test 1 2'); + }); + }); + describe('.translateWithNumber(singular, plural, num, ...args)', () => { + const translator = new Translator({ + languagePack: languagePackZh, + }); + it('returns original text for unknown text', () => { + expect(translator.translateWithNumber('fish', 'fishes', 1)).toEqual( + 'fish', + ); + }); + it('uses 0 as default value', () => { + expect(translator.translateWithNumber('box', 'boxes')).toEqual('boxes'); + }); + it('translates simple text', () => { + expect(translator.translateWithNumber('second', 'seconds', 1)).toEqual( + '秒', + ); + }); + it('translates template text with an argument', () => { + expect( + translator.translateWithNumber('Copy of %s', 'Copies of %s', 12, 12), + ).toEqual('12 的副本'); + }); + it('translates template text with multiple arguments', () => { + expect( + translator.translateWithNumber( + '%d glass %s', + '%d glasses %s', + 3, + 3, + 'abc', + ), + ).toEqual('3 glasses abc'); + }); + }); + describe('.translateWithNumber(key, num, ...args)', () => { + const translator = new Translator({ + languagePack: languagePackEn, + }); + it('translates template text with an argument', () => { + expect(translator.translateWithNumber('%s copies', 1)).toEqual('1 copy'); + expect(translator.translateWithNumber('%s copies', 2)).toEqual( + '2 copies', + ); + }); + }); + + // Extending language pack + describe('.addTranslation(...)', () => { + it('can add new translation', () => { + addTranslation('haha', ['Hahaha']); + expect(t('haha')).toEqual('Hahaha'); + }); + }); + + describe('.addTranslations(...)', () => { + it('can add new translations', () => { + addTranslations({ + foo: ['bar', '%s bars'], + bar: ['foo'], + }); + // previous translation still exists + expect(t('haha')).toEqual('Hahaha'); + // new translations work as expected + expect(tn('foo', 1)).toEqual('bar'); + expect(tn('foo', 2)).toEqual('2 bars'); + expect(tn('bar', 2)).toEqual('bar'); + }); + it('throw warning on invalid arguments', () => { + expect(() => addTranslations(undefined as never)).toThrow( + 'Invalid translations', + ); + expect(tn('bar', '2 foo', 2)).toEqual('2 foo'); + }); + it('throw warning on duplicates', () => { + expect(() => { + addTranslations({ + haha: ['this is duplciate'], + }); + }).toThrow('Duplicate translation key "haha"'); + expect(t('haha')).toEqual('Hahaha'); + }); + }); + + describe('.addLocaleData(...)', () => { + it('can add new translations for language', () => { + addLocaleData({ + en: { + yes: ['ok'], + }, + }); + expect(t('yes')).toEqual('ok'); + }); + it('throw on unknown locale', () => { + expect(() => { + addLocaleData({ + zh: { + haha: ['yes'], + }, + }); + }).toThrow('Invalid locale data'); + }); + it('missing locale falls back to English', () => { + configure({ + languagePack: languagePackZh, + }); + // expect and error because zh is not current locale + expect(() => { + addLocaleData({ + en: { + yes: ['OK'], + }, + }); + }).not.toThrow(); + expect(t('yes')).toEqual('OK'); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/translation/TranslatorSingleton.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/translation/TranslatorSingleton.test.ts new file mode 100644 index 000000000000..b9a88397ddff --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/translation/TranslatorSingleton.test.ts @@ -0,0 +1,74 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint no-console: 0 */ +import mockConsole from 'jest-mock-console'; +import Translator from '@superset-ui/core/src/translation/Translator'; +import { + configure, + t, + tn, +} from '@superset-ui/core/src/translation/TranslatorSingleton'; + +import languagePackEn from './languagePacks/en'; +import languagePackZh from './languagePacks/zh'; + +describe('TranslatorSingleton', () => { + describe('before configure()', () => { + describe('t()', () => { + it('returns untranslated input and issues a warning', () => { + const restoreConsole = mockConsole(); + expect(t('second')).toEqual('second'); + expect(console.warn).toHaveBeenCalled(); + restoreConsole(); + }); + }); + describe('tn()', () => { + it('returns untranslated input and issues a warning', () => { + const restoreConsole = mockConsole(); + expect(tn('ox', 'oxen', 2)).toEqual('oxen'); + expect(console.warn).toHaveBeenCalled(); + restoreConsole(); + }); + }); + }); + describe('after configure()', () => { + describe('configure()', () => { + it('creates and returns a translator', () => { + expect(configure()).toBeInstanceOf(Translator); + }); + }); + describe('t()', () => { + it('after configure() returns translated text', () => { + configure({ + languagePack: languagePackZh, + }); + expect(t('second')).toEqual('秒'); + }); + }); + describe('tn()', () => { + it('after configure() returns translated text with singular/plural', () => { + configure({ + languagePack: languagePackEn, + }); + expect(tn('ox', 'oxen', 2)).toEqual('oxen'); + }); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/translation/index.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/translation/index.test.ts new file mode 100644 index 000000000000..aecc3e6fafcf --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/translation/index.test.ts @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { configure, t, tn } from '@superset-ui/core/src/translation'; + +describe('index', () => { + it('exports configure()', () => { + expect(configure).toBeDefined(); + expect(configure).toBeInstanceOf(Function); + }); + it('exports t()', () => { + expect(t).toBeDefined(); + expect(t).toBeInstanceOf(Function); + }); + it('exports tn()', () => { + expect(tn).toBeDefined(); + expect(tn).toBeInstanceOf(Function); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/translation/languagePacks/en.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/translation/languagePacks/en.ts new file mode 100644 index 000000000000..0efcc12645bc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/translation/languagePacks/en.ts @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { LanguagePack } from '@superset-ui/core/src/translation'; + +const languagePack: LanguagePack = { + domain: 'superset', + locale_data: { + superset: { + '': { + domain: 'superset', + plural_forms: 'nplurals=2; plural=(n != 1)', + lang: 'en', + }, + second: [''], + '%s copies': ['%s copy', '%s copies'], + }, + }, +}; + +export default languagePack; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/translation/languagePacks/zh.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/translation/languagePacks/zh.ts new file mode 100644 index 000000000000..105a65431e56 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/translation/languagePacks/zh.ts @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { LanguagePack } from '@superset-ui/core/src/translation'; + +const languagePack: LanguagePack = { + domain: 'superset', + locale_data: { + superset: { + '': { + domain: 'superset', + plural_forms: 'nplurals=1; plural=0;', + lang: 'zh', + }, + second: ['秒'], + 'Copy of %s': ['%s 的副本'], + }, + }, +}; + +export default languagePack; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/tsconfig.json new file mode 100644 index 000000000000..481ca5b4db93 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "composite": false, + "emitDeclarationOnly": false, + "noEmit": true, + "rootDir": "." + }, + "extends": "../../../tsconfig.json", + "include": [ + "**/*", + "../types/**/*", + "../../../types/**/*" + ], + "references": [ + { + "path": ".." + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/convertKeysToCamelCase.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/convertKeysToCamelCase.test.ts new file mode 100644 index 000000000000..c7d042d58740 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/convertKeysToCamelCase.test.ts @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { convertKeysToCamelCase } from '@superset-ui/core/src'; + +describe('convertKeysToCamelCase(object)', () => { + it('returns undefined for undefined input', () => { + expect(convertKeysToCamelCase(undefined)).toBeUndefined(); + }); + it('returns null for null input', () => { + expect(convertKeysToCamelCase(null)).toBeNull(); + }); + it('returns a new object that has all keys in camelCase', () => { + const input = { + is_happy: true, + 'is-angry': false, + isHungry: false, + }; + expect(convertKeysToCamelCase(input)).toEqual({ + isHappy: true, + isAngry: false, + isHungry: false, + }); + }); + it('throws error if input is not a plain object', () => { + expect(() => { + convertKeysToCamelCase({}); + }).not.toThrow(); + expect(() => { + convertKeysToCamelCase(''); + }).toThrow(); + expect(() => { + convertKeysToCamelCase(new Map()); + }).toThrow(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/ensureIsArray.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/ensureIsArray.test.ts new file mode 100644 index 000000000000..f1fca8631fbc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/ensureIsArray.test.ts @@ -0,0 +1,33 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ensureIsArray } from '../../src'; + +describe('ensureIsArray', () => { + it('handle inputs correctly', () => { + expect(ensureIsArray(undefined)).toEqual([]); + expect(ensureIsArray(null)).toEqual([]); + expect(ensureIsArray([])).toEqual([]); + expect(ensureIsArray('my_metric')).toEqual(['my_metric']); + expect(ensureIsArray(['my_metric'])).toEqual(['my_metric']); + expect(ensureIsArray(['my_metric_1', 'my_metric_2'])).toEqual([ + 'my_metric_1', + 'my_metric_2', + ]); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/ensureIsInt.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/ensureIsInt.test.ts new file mode 100644 index 000000000000..0558d7d93a82 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/ensureIsInt.test.ts @@ -0,0 +1,31 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ensureIsInt } from '../../src'; + +describe('ensureIsInt', () => { + it('handle inputs correctly', () => { + expect(ensureIsInt(undefined, 0)).toEqual(0); + expect(ensureIsInt('abc', 1)).toEqual(1); + expect(ensureIsInt(undefined)).toEqual(NaN); + expect(ensureIsInt('abc')).toEqual(NaN); + expect(ensureIsInt('12.5')).toEqual(12); + expect(ensureIsInt(12)).toEqual(12); + expect(ensureIsInt(12, 0)).toEqual(12); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/featureFlag.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/featureFlag.test.ts new file mode 100644 index 000000000000..c07f3134e76b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/featureFlag.test.ts @@ -0,0 +1,35 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { FeatureFlag, isFeatureEnabled } from '../../src'; + +describe('isFeatureFlagEnabled', () => { + window.featureFlags = { + [FeatureFlag.CLIENT_CACHE]: true, + }; + it('returns false for unset feature flag', () => { + expect( + isFeatureEnabled(FeatureFlag.ALLOW_DASHBOARD_DOMAIN_SHARDING), + ).toEqual(false); + }); + + it('returns true for set feature flag', () => { + expect(isFeatureEnabled(FeatureFlag.CLIENT_CACHE)).toEqual(true); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/isDefined.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/isDefined.test.ts new file mode 100644 index 000000000000..89d33ab01966 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/isDefined.test.ts @@ -0,0 +1,39 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { isDefined } from '@superset-ui/core/src'; + +describe('isDefined(value)', () => { + it('returns true if value is not null and not undefined', () => { + expect(isDefined(0)).toBe(true); + expect(isDefined(1)).toBe(true); + expect(isDefined('')).toBe(true); + expect(isDefined('a')).toBe(true); + expect(isDefined([])).toBe(true); + expect(isDefined([0])).toBe(true); + expect(isDefined([1])).toBe(true); + expect(isDefined({})).toBe(true); + expect(isDefined({ a: 1 })).toBe(true); + expect(isDefined([{}])).toBe(true); + }); + it('returns false otherwise', () => { + expect(isDefined(null)).toBe(false); + expect(isDefined(undefined)).toBe(false); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/isRequired.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/isRequired.test.ts new file mode 100644 index 000000000000..4cc14aa35643 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/isRequired.test.ts @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { isRequired } from '@superset-ui/core/src'; + +describe('isRequired(field)', () => { + it('should throw error with the given field in the message', () => { + expect(() => isRequired('myField')).toThrow(Error); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/logging.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/logging.test.ts new file mode 100644 index 000000000000..c5e158c94635 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/logging.test.ts @@ -0,0 +1,76 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +/* eslint-disable global-require */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +describe('logging', () => { + beforeEach(() => { + jest.resetModules(); + // Explicit is better than implicit + console.warn = console.error = function mockedConsole(message) { + throw new Error(message); + }; + }); + it('should pipe to `console` methods', () => { + const { logging } = require('@superset-ui/core/src'); + + expect(() => { + logging.debug(); + logging.log(); + logging.info(); + }).not.toThrow(); + expect(() => { + logging.warn('warn'); + }).toThrow('warn'); + expect(() => { + logging.error('error'); + }).toThrow('error'); + + // to support: npx jest --silent + const spy = jest.spyOn(logging, 'trace'); + spy.mockImplementation(() => { + throw new Error('Trace:'); + }); + expect(() => { + logging.trace(); + }).toThrow('Trace:'); + spy.mockRestore(); + }); + it('should use noop functions when console unavailable', () => { + const { console } = window; + Object.assign(window, { console: undefined }); + const { logging } = require('@superset-ui/core/src'); + + afterAll(() => { + Object.assign(window, { console }); + }); + + expect(() => { + logging.debug(); + logging.log(); + logging.info(); + logging.warn('warn'); + logging.error('error'); + logging.trace(); + logging.table([ + [1, 2], + [3, 4], + ]); + }).not.toThrow(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/makeSingleton.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/makeSingleton.test.ts new file mode 100644 index 000000000000..e1cbfc8b7f2d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/makeSingleton.test.ts @@ -0,0 +1,59 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { makeSingleton } from '@superset-ui/core/src'; + +describe('makeSingleton()', () => { + class Dog { + name: string; + + isSitting?: boolean; + + constructor(name?: string) { + this.name = name || 'Pluto'; + } + + sit() { + this.isSitting = true; + } + } + describe('makeSingleton(BaseClass)', () => { + const getInstance = makeSingleton(Dog); + + it('returns a function for getting singleton instance of a given base class', () => { + expect(typeof getInstance).toBe('function'); + expect(getInstance()).toBeInstanceOf(Dog); + }); + it('returned function returns same instance across all calls', () => { + expect(getInstance()).toBe(getInstance()); + }); + }); + describe('makeSingleton(BaseClass, ...args)', () => { + const getInstance = makeSingleton(Dog, 'Doug'); + + it('returns a function for getting singleton instance of a given base class constructed with the given arguments', () => { + expect(typeof getInstance).toBe('function'); + expect(getInstance()).toBeInstanceOf(Dog); + expect(getInstance().name).toBe('Doug'); + }); + it('returned function returns same instance across all calls', () => { + expect(getInstance()).toBe(getInstance()); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/promiseTimeout.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/promiseTimeout.test.ts new file mode 100644 index 000000000000..31af484f59da --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/promiseTimeout.test.ts @@ -0,0 +1,47 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { promiseTimeout } from '@superset-ui/core/src'; + +describe('promiseTimeout(func, delay)', () => { + beforeEach(() => { + jest.useFakeTimers(); + }); + afterEach(() => { + jest.useRealTimers(); + }); + + it('resolves after delay', async () => { + const promise = promiseTimeout(() => 'abcd', 10); + jest.advanceTimersByTime(10); + const result = await promise; + expect(result).toEqual('abcd'); + expect(result).toHaveLength(4); + }); + + it('uses the timer', async () => { + const promise = Promise.race([ + promiseTimeout(() => 'abc', 10), + promiseTimeout(() => 'def', 20), + ]); + jest.advanceTimersByTime(10); + const result = await promise; + expect(result).toEqual('abc'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/random.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/random.test.ts new file mode 100644 index 000000000000..151d6d05a4ba --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/random.test.ts @@ -0,0 +1,32 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { seed, seedRandom } from '../../src'; + +describe('random', () => { + it('seeded random should return the same value', () => { + expect(seedRandom()).toEqual(0.7237953289342797); + }); + + it('should allow update seed', () => { + const a = seed('abc'); + const b = seed('abc'); + expect(a()).toEqual(b()); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/removeDuplicates.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/removeDuplicates.test.ts new file mode 100644 index 000000000000..8b900307b339 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/utils/removeDuplicates.test.ts @@ -0,0 +1,31 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { removeDuplicates } from '@superset-ui/core/src'; + +describe('removeDuplicates([...])', () => { + it('should remove duplicates from a simple list', () => { + expect(removeDuplicates([1, 2, 4, 1, 1, 5, 2])).toEqual([1, 2, 4, 5]); + }); + it('should remove duplicates by key getter', () => { + expect(removeDuplicates([{ a: 1 }, { a: 1 }, { b: 2 }], x => x.a)).toEqual([ + { a: 1 }, + { b: 2 }, + ]); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/legacyValidateInteger.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/legacyValidateInteger.test.ts new file mode 100644 index 000000000000..909a8bbd0a8a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/legacyValidateInteger.test.ts @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { legacyValidateInteger } from '@superset-ui/core/src'; +import './setup'; + +describe('legacyValidateInteger()', () => { + it('returns the warning message if invalid', () => { + expect(legacyValidateInteger(10.1)).toBeTruthy(); + expect(legacyValidateInteger('abc')).toBeTruthy(); + expect(legacyValidateInteger(Infinity)).toBeTruthy(); + }); + it('returns false if the input is valid', () => { + // superset seems to operate on this incorrect behavior at the moment + expect(legacyValidateInteger(NaN)).toBeFalsy(); + expect(legacyValidateInteger(undefined)).toBeFalsy(); + expect(legacyValidateInteger(null)).toBeFalsy(); + expect(legacyValidateInteger('')).toBeFalsy(); + + expect(legacyValidateInteger(0)).toBeFalsy(); + expect(legacyValidateInteger(10)).toBeFalsy(); + expect(legacyValidateInteger('10')).toBeFalsy(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/legacyValidateNumber.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/legacyValidateNumber.test.ts new file mode 100644 index 000000000000..155ba9bfdbc2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/legacyValidateNumber.test.ts @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { legacyValidateNumber } from '@superset-ui/core/src'; +import './setup'; + +describe('legacyValidateNumber()', () => { + it('returns the warning message if invalid', () => { + expect(legacyValidateNumber('abc')).toBeTruthy(); + }); + it('returns false if the input is valid', () => { + // superset seems to operate on this incorrect behavior at the moment + expect(legacyValidateNumber(NaN)).toBeFalsy(); + expect(legacyValidateNumber(Infinity)).toBeFalsy(); + expect(legacyValidateNumber(undefined)).toBeFalsy(); + expect(legacyValidateNumber(null)).toBeFalsy(); + expect(legacyValidateNumber('')).toBeFalsy(); + + expect(legacyValidateNumber(0)).toBeFalsy(); + expect(legacyValidateNumber(10.1)).toBeFalsy(); + expect(legacyValidateNumber(10)).toBeFalsy(); + expect(legacyValidateNumber('10')).toBeFalsy(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/setup.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/setup.ts new file mode 100644 index 000000000000..b0d37311e1f5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/setup.ts @@ -0,0 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { configure as configureTranslation } from '@superset-ui/core/src'; + +configureTranslation(); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/validateInteger.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/validateInteger.test.ts new file mode 100644 index 000000000000..4db30410f0ee --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/validateInteger.test.ts @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { validateInteger } from '@superset-ui/core/src'; +import './setup'; + +describe('validateInteger()', () => { + it('returns the warning message if invalid', () => { + expect(validateInteger(10.1)).toBeTruthy(); + expect(validateInteger(NaN)).toBeTruthy(); + expect(validateInteger(Infinity)).toBeTruthy(); + expect(validateInteger(undefined)).toBeTruthy(); + expect(validateInteger(null)).toBeTruthy(); + expect(validateInteger('abc')).toBeTruthy(); + expect(validateInteger('')).toBeTruthy(); + }); + it('returns false if the input is valid', () => { + expect(validateInteger(0)).toBeFalsy(); + expect(validateInteger(10)).toBeFalsy(); + expect(validateInteger('10')).toBeFalsy(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/validateNonEmpty.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/validateNonEmpty.test.ts new file mode 100644 index 000000000000..d10a4e472c4f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/validateNonEmpty.test.ts @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { validateNonEmpty } from '@superset-ui/core/src'; +import './setup'; + +describe('validateNonEmpty()', () => { + it('returns the warning message if invalid', () => { + expect(validateNonEmpty([])).toBeTruthy(); + expect(validateNonEmpty(undefined)).toBeTruthy(); + expect(validateNonEmpty(null)).toBeTruthy(); + expect(validateNonEmpty('')).toBeTruthy(); + }); + it('returns false if the input is valid', () => { + expect(validateNonEmpty(0)).toBeFalsy(); + expect(validateNonEmpty(10)).toBeFalsy(); + expect(validateNonEmpty('abc')).toBeFalsy(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/validateNumber.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/validateNumber.test.ts new file mode 100644 index 000000000000..6b7628c677ca --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/validator/validateNumber.test.ts @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { validateNumber } from '@superset-ui/core/src'; +import './setup'; + +describe('validateNumber()', () => { + it('returns the warning message if invalid', () => { + expect(validateNumber(NaN)).toBeTruthy(); + expect(validateNumber(Infinity)).toBeTruthy(); + expect(validateNumber(undefined)).toBeTruthy(); + expect(validateNumber(null)).toBeTruthy(); + expect(validateNumber('abc')).toBeTruthy(); + expect(validateNumber('')).toBeTruthy(); + }); + it('returns false if the input is valid', () => { + expect(validateNumber(0)).toBeFalsy(); + expect(validateNumber(10.1)).toBeFalsy(); + expect(validateNumber(10)).toBeFalsy(); + expect(validateNumber('10')).toBeFalsy(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/tsconfig.json new file mode 100644 index 000000000000..d345ae88fc0c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/tsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/types/external.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/types/external.d.ts new file mode 100644 index 000000000000..31b0250bf445 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/types/external.d.ts @@ -0,0 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/** + * Stub for the untypped jed module. + */ +declare module 'jed'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/types/resize-observer-polyfill.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/types/resize-observer-polyfill.d.ts new file mode 100644 index 000000000000..525b9271251a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/types/resize-observer-polyfill.d.ts @@ -0,0 +1,23 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +declare module 'resize-observer-polyfill' { + // eslint-disable-next-line import/prefer-default-export + export function triggerResizeObserver(entries?: ResizeObserverEntry[]): void; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/.storybook/main.js b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/.storybook/main.js new file mode 100644 index 000000000000..90ab868100c2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/.storybook/main.js @@ -0,0 +1,85 @@ +const path = require('path'); +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const { lstatSync, readdirSync } = require('fs'); + +// find @superset-ui packages +const basePath = path.resolve(__dirname, '../../../node_modules/@superset-ui'); +const packages = readdirSync(basePath).filter(name => { + const stat = lstatSync(path.join(basePath, name)); + return stat.isSymbolicLink(); +}); + +const rootPath = path.resolve(__dirname, '../../../'); + +const PLUGIN_PACKAGES_PATH_REGEXP = new RegExp( + `${path.resolve( + __dirname, + '../../../plugins/(legacy-)*(plugin|preset)-', + )}.+/src`, +); + +module.exports = { + addons: [ + '@storybook/addon-knobs', + 'storybook-addon-jsx', + '@storybook/addon-actions', + '@storybook/addon-links', + ], + stories: ['../storybook/stories/**/*Stories.[tj]sx'], + webpackFinal: config => { + // Make sure babel is applied to the package src + // These are excluded by the default rule + // because they reside in node_modules + config.module.rules.push({ + include: PLUGIN_PACKAGES_PATH_REGEXP, + exclude: /node_modules/, + test: /\.jsx?$/, + use: config.module.rules[0].use, + }); + + config.module.rules.push({ + test: /\.tsx?$/, + use: [ + { + loader: require.resolve('ts-loader'), + options: { + transpileOnly: true, + }, + }, + ], + }); + + config.plugins.unshift(new ForkTsCheckerWebpackPlugin()); + + config.resolve.extensions.push('.ts', '.tsx'); + + // Let webpack know where to find the source code + Object.assign(config.resolve.alias, { + ...packages.reduce( + (acc, name) => ({ + ...acc, + [`@superset-ui/${name}$`]: path.join(basePath, name, 'src'), + }), + {}, + ), + }); + + // todo: remove hard code after move storybook to superset repo. + config.resolve.alias['@emotion/styled'] = path.resolve( + rootPath, + './node_modules/@emotion/styled', + ); + config.resolve.alias['@emotion/core'] = path.resolve( + rootPath, + './node_modules/@emotion/core', + ); + + config.devtool = 'eval-cheap-module-source-map'; + config.devServer = { + ...config.devServer, + stats: 'minimal', + }; + + return config; + }, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/.storybook/preview.js b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/.storybook/preview.js new file mode 100644 index 000000000000..980aefa82a5f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/.storybook/preview.js @@ -0,0 +1,84 @@ +import { addParameters, addDecorator } from '@storybook/react'; +import { jsxDecorator } from 'storybook-addon-jsx'; +import { + configure, + getTimeFormatterRegistry, + smartDateFormatter, + getCategoricalSchemeRegistry, + getSequentialSchemeRegistry, + CategoricalD3, + CategoricalSuperset, + SequentialCommon, + SequentialD3, +} from '@superset-ui/core'; +import { configureEncodable } from '@superset-ui/preset-chart-xy'; +import themeDecorator from './themeDecorator'; + +import 'bootstrap/dist/css/bootstrap.min.css'; +import './storybook.css'; + +addDecorator(jsxDecorator); +addDecorator(themeDecorator); + +addParameters({ + passArgsFirst: false, + options: { + name: '✨ Superset UI', + addonPanelInRight: false, + enableShortcuts: false, + goFullScreen: false, + hierarchyRootSeparator: null, + hierarchySeparator: /\|/, + selectedAddonPanel: undefined, // The order of addons in the "Addon panel" is the same as you import them in 'addons.js'. The first panel will be opened by default as you run Storybook + showAddonPanel: true, + showSearchBox: false, + showStoriesPanel: true, + sidebarAnimations: true, + sortStoriesByKind: false, + url: '#', + storySort: (a, b) => { + if (a[1].kind === b[1].kind) { + return 0; + } + if ( + a[1].id.startsWith('core-packages') && + !b[1].id.startsWith('core-packages') + ) { + return -1; + } + if ( + !a[1].id.startsWith('core-packages') && + b[1].id.startsWith('core-packages') + ) { + return 1; + } + return a[1].id.localeCompare(b[1].id, undefined, { numeric: true }); + }, + }, +}); + +// Superset setup + +configure(); + +// Register color schemes +const categoricalSchemeRegistry = getCategoricalSchemeRegistry(); +[CategoricalD3, CategoricalSuperset].forEach(group => { + group.forEach(scheme => { + categoricalSchemeRegistry.registerValue(scheme.id, scheme); + }); +}); +categoricalSchemeRegistry.setDefaultKey('d3Category10'); + +const sequentialSchemeRegistry = getSequentialSchemeRegistry(); +[SequentialCommon, SequentialD3].forEach(group => { + group.forEach(scheme => { + sequentialSchemeRegistry.registerValue(scheme.id, scheme); + }); +}); + +getTimeFormatterRegistry() + .registerValue('smart_date', smartDateFormatter) + .setDefaultKey('smart_date'); + +configureEncodable(); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/.storybook/storybook.css b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/.storybook/storybook.css new file mode 100644 index 000000000000..039f826f5b4a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/.storybook/storybook.css @@ -0,0 +1,15 @@ +html, +body, +#root { + height: 100%; + font-family: BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif; + font-weight: 200; + color: #484848; +} +#root > div { + padding: 8px; +} + +code { + background: none; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/.storybook/themeDecorator.js b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/.storybook/themeDecorator.js new file mode 100644 index 000000000000..b4e110024b6c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/.storybook/themeDecorator.js @@ -0,0 +1,9 @@ +// themeDecorator.js +import React from 'react'; +import { supersetTheme, ThemeProvider } from '@superset-ui/core'; + +const ThemeDecorator = storyFn => ( + {storyFn()} +); + +export default ThemeDecorator; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/CHANGELOG.md new file mode 100644 index 000000000000..8e044731ddc7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/CHANGELOG.md @@ -0,0 +1,51 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/demo + + + + + +## [0.17.63](https://github.com/apache-superset/superset-ui/compare/v0.17.62...v0.17.63) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/demo + + + + + +## [0.17.62](https://github.com/apache-superset/superset-ui/compare/v0.17.61...v0.17.62) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/demo + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/demo diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/README.md b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/README.md new file mode 100644 index 000000000000..6e29c8f87450 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/README.md @@ -0,0 +1,72 @@ + + +## @superset-ui/demo + +[![Version](https://img.shields.io/npm/v/@superset-ui/demo.svg?style=flat)](https://www.npmjs.com/package/@superset-ui/demo) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui.svg?path=packages%2Fsuperset-ui-demo&style=flat-square)](https://david-dm.org/apache-superset/superset-ui?path=packages/superset-ui-demo) + +Storybook of `@superset-ui` packages. See it live at +[apache-superset.github.io/superset-ui](https://apache-superset.github.io/superset-ui) + +### Development + +#### Run storybook + +To view the storybook locally, you should first run `npm ci && npm run bootstrap` in the +`@superset-ui` monorepo root directory, which will install all dependencies for this package and +sym-link any `@superset-ui` packages to your local system. + +After that run `npm run storybook` which will open up a dev server at http://localhost:9001. + +#### Adding new stories + +###### Existing package + +If stories already exist for the package you are adding, simply extend the `examples` already +exported for that package in the `storybook/stories//index.js` file. + +###### New package + +If you are creating stories for a package that doesn't yet have any stories, follow these steps: + +1. Add any new package dependencies (including any `@superset-ui/*` packages) via + `npm install `. + +2. Create a new folder that mirrors the package name + + > e.g., `mkdir storybook/stories/superset-ui-color/` + +3. Add an `index.js` file to that folder with a default export with the following shape: + +> you can use the `|` separator within the `storyPath` string to denote _nested_ stories e.g., +> `storyPath: '@superset-ui/package|Nested i|Nested ii'` + +```javascript + default export { + examples: [ + { + storyPath: , + storyName: , + renderStory: () => node, + }, + ... + ] + }; +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/package.json b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/package.json new file mode 100644 index 000000000000..e5b7b21e1e8f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/package.json @@ -0,0 +1,95 @@ +{ + "name": "@superset-ui/demo", + "version": "0.18.25", + "description": "Storybook for Superset UI ✨", + "private": true, + "main": "index.js", + "scripts": { + "demo:clean": "rm -rf _gh-pages", + "demo:build": "npm run demo:clean && build-storybook -o _gh-pages", + "demo:publish": "gh-pages -d _gh-pages", + "deploy-demo": "npm run demo:build && npm run demo:publish && npm run demo:clean", + "storybook": "start-storybook -p 9001", + "build-storybook": "npm run demo:clean && build-storybook" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "storybook", + "superset", + "ui", + "visualization", + "analysis", + "data" + ], + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "dependencies": { + "@data-ui/event-flow": "^0.0.84", + "@emotion/cache": "^11.4.0", + "@emotion/react": "^11.4.1", + "@emotion/styled": "^11.3.0", + "@react-icons/all-files": "^4.1.0", + "@storybook/addon-actions": "^6.3.12", + "@storybook/addon-knobs": "^6.3.1", + "@storybook/addon-links": "^6.3.12", + "@storybook/addons": "^6.3.12", + "@storybook/react": "^6.3.12", + "@superset-ui/core": "0.18.25", + "@superset-ui/legacy-plugin-chart-calendar": "0.18.25", + "@superset-ui/legacy-plugin-chart-chord": "0.18.25", + "@superset-ui/legacy-plugin-chart-country-map": "0.18.25", + "@superset-ui/legacy-plugin-chart-event-flow": "0.18.25", + "@superset-ui/legacy-plugin-chart-force-directed": "0.18.25", + "@superset-ui/legacy-plugin-chart-heatmap": "0.18.25", + "@superset-ui/legacy-plugin-chart-histogram": "0.18.25", + "@superset-ui/legacy-plugin-chart-horizon": "0.18.25", + "@superset-ui/legacy-plugin-chart-map-box": "0.18.25", + "@superset-ui/legacy-plugin-chart-paired-t-test": "0.18.25", + "@superset-ui/legacy-plugin-chart-parallel-coordinates": "0.18.25", + "@superset-ui/legacy-plugin-chart-partition": "0.18.25", + "@superset-ui/legacy-plugin-chart-pivot-table": "0.18.25", + "@superset-ui/legacy-plugin-chart-rose": "0.18.25", + "@superset-ui/legacy-plugin-chart-sankey": "0.18.25", + "@superset-ui/legacy-plugin-chart-sankey-loop": "0.18.25", + "@superset-ui/legacy-plugin-chart-sunburst": "0.18.25", + "@superset-ui/legacy-plugin-chart-time-table": "0.18.25", + "@superset-ui/legacy-plugin-chart-treemap": "0.18.25", + "@superset-ui/legacy-plugin-chart-world-map": "0.18.25", + "@superset-ui/legacy-preset-chart-big-number": "0.18.25", + "@superset-ui/legacy-preset-chart-nvd3": "0.18.25", + "@superset-ui/plugin-chart-echarts": "0.18.25", + "@superset-ui/plugin-chart-table": "0.18.25", + "@superset-ui/plugin-chart-word-cloud": "0.18.25", + "@superset-ui/preset-chart-xy": "0.18.25", + "@types/react-loadable": "^5.5.3", + "antd": "^4.9.4", + "bootstrap": "^3.4.1", + "core-js": "3.8.3", + "gh-pages": "^3.0.0", + "global-box": "^1.2.0", + "jquery": "^3.4.1", + "memoize-one": "^5.1.1", + "react": "^16.13.1", + "react-dom": "^16.13.1", + "react-loadable": "^5.5.0", + "react-resizable": "^3.0.4", + "storybook-addon-jsx": "^7.3.14" + }, + "devDependencies": { + "@babel/core": "^7.9.0", + "babel-loader": "^8.1.0", + "chromatic": "^5.4.0", + "fork-ts-checker-webpack-plugin": "^5.0.7", + "ts-loader": "^7.0.4", + "typescript": "^3.8.3" + }, + "peerDependencies": { + "@encodable/color": "=1.1.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/ErrorMessage.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/ErrorMessage.tsx new file mode 100644 index 000000000000..771347ebc494 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/ErrorMessage.tsx @@ -0,0 +1,39 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; + +export type Props = { + error: Error; +}; + +export default function ErrorMessage({ error }: Props) { + // eslint-disable-next-line no-console + console.error(error); + return ( +
+      {error.stack || error.message}
+      {!error.message &&
+        !error.stack &&
+        (typeof error === 'object'
+          ? JSON.stringify(error, null, 2)
+          : String(error))}
+    
+ ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/Expandable.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/Expandable.tsx new file mode 100644 index 000000000000..148d8bdabf89 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/Expandable.tsx @@ -0,0 +1,61 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { ReactNode } from 'react'; + +export type Props = { + children: ReactNode; + expandableWhat?: string; +}; + +type State = { + open: boolean; +}; + +export default class Expandable extends React.Component { + constructor(props: Props) { + super(props); + this.state = { open: false }; + this.handleToggle = this.handleToggle.bind(this); + } + + handleToggle() { + this.setState(({ open }) => ({ open: !open })); + } + + render() { + const { open } = this.state; + const { children, expandableWhat } = this.props; + + return ( +
+ +
+
+ {open ? children : null} +
+ ); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/ResizableChartDemo.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/ResizableChartDemo.tsx new file mode 100644 index 000000000000..f48399b6d67b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/ResizableChartDemo.tsx @@ -0,0 +1,76 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { useState, ReactNode } from 'react'; +import { styled } from '@superset-ui/core'; +import { DecoratorFunction } from '@storybook/addons'; +import ResizablePanel, { Size } from './ResizablePanel'; + +export const SupersetBody = styled.div` + background: #f5f5f5; + padding: 16px; + min-height: 100%; + + .panel { + margin-bottom: 0; + } +`; + +export default function ResizableChartDemo({ + children, + panelPadding = 30, + initialSize = { width: 500, height: 300 }, +}: { + children: (innerSize: Size) => ReactNode; + panelPadding?: number; + initialSize?: Size; +}) { + // size are all inner size + const [size, setSize] = useState(initialSize); + return ( + + setSize(data.size)} + > + {children({ + width: size.width - panelPadding, + height: size.height - panelPadding, + })} + + + ); +} + +export const withResizableChartDemo: DecoratorFunction = ( + storyFn, + context, +) => { + const { + parameters: { initialSize, panelPadding }, + } = context; + return ( + + {innerSize => storyFn({ ...context, ...innerSize })} + + ); +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/ResizablePanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/ResizablePanel.tsx new file mode 100644 index 000000000000..f7cf2c2e5e56 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/ResizablePanel.tsx @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { PropsWithChildren, ReactNode } from 'react'; +import { + ResizableBox, + ResizableBoxProps, + ResizeCallbackData, +} from 'react-resizable'; + +import 'react-resizable/css/styles.css'; + +export type Size = ResizeCallbackData['size']; + +export default function ResizablePanel({ + children, + heading = undefined, + initialSize = { width: 500, height: 300 }, + minConstraints = [100, 100] as [number, number], + onResize, + ...props +}: PropsWithChildren> & { + heading?: ReactNode; + initialSize?: Size; +}) { + const { width, height } = initialSize; + return ( + { + const { size } = data; + onResize(e, { ...data, size }); + } + : undefined + } + {...props} + > + {heading ?
{heading}
: null} +
{children}
+
+ ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/VerifyCORS.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/VerifyCORS.tsx new file mode 100644 index 000000000000..de0b2ef8aba0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/VerifyCORS.tsx @@ -0,0 +1,138 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { ReactNode } from 'react'; +import { + SupersetClient, + Method, + makeApi, + SupersetApiError, +} from '@superset-ui/core'; +import ErrorMessage from './ErrorMessage'; + +export type Props = { + children: ({ payload }: { payload?: object }) => ReactNode; + endpoint?: string; + host: string; + method?: Method; + postPayload?: string; +}; + +type State = { + didVerify: boolean; + error?: Error | SupersetApiError; + payload?: object; +}; + +export const renderError = (error: Error) => ( +
+ The following error occurred, make sure you have
+ 1) configured CORS in Superset to receive requests from this domain.
+ 2) set the Superset host correctly below.
+ 3) debug the CORS configuration under the `@superset-ui/connection` stories. +
+
+ +
+); + +export default class VerifyCORS extends React.Component { + constructor(props: Props) { + super(props); + this.state = { didVerify: false }; + this.handleVerify = this.handleVerify.bind(this); + } + + componentDidUpdate(prevProps: Props) { + const { endpoint, host, postPayload, method } = this.props; + if ( + (this.state.didVerify || this.state.error) && + (prevProps.endpoint !== endpoint || + prevProps.host !== host || + prevProps.postPayload !== postPayload || + prevProps.method !== method) + ) { + // eslint-disable-next-line react/no-did-update-set-state + this.setState({ didVerify: false, error: undefined }); + } + } + + handleVerify() { + const { endpoint, host, postPayload, method } = this.props; + SupersetClient.reset(); + SupersetClient.configure({ + credentials: 'include', + host, + mode: 'cors', + }) + .init() + .then(() => { + // Test an endpoint if specified + if (endpoint && postPayload) { + return makeApi({ + endpoint, + method, + })(postPayload); + } + return { error: 'Must provide valid endpoint and payload.' }; + }) + .then(result => + this.setState({ didVerify: true, error: undefined, payload: result }), + ) + .catch(error => this.setState({ error })); + } + + render() { + const { didVerify, error, payload } = this.state; + const { children } = this.props; + + return didVerify ? ( + children({ payload }) + ) : ( +
+
+ This example requires CORS requests from this domain.
+
+ 1) enable CORS requests in your Superset App from{' '} + {`${window.location.origin}`} +
+ 2) configure your Superset App host name below
+ 3) click below to verify authentication. You may debug CORS further + using the `@superset-ui/connection` story.
+
+ +
+
+
+ + {error && ( +
+ +
+ )} +
+ ); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/createQueryStory.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/createQueryStory.tsx new file mode 100644 index 000000000000..eb1d39e41a44 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/components/createQueryStory.tsx @@ -0,0 +1,103 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { text, select } from '@storybook/addon-knobs'; +import { + SuperChart, + ChartDataProvider, + SupersetClient, +} from '@superset-ui/core'; +import Expandable from './Expandable'; +import VerifyCORS, { renderError } from './VerifyCORS'; + +export default function createQueryStory({ + choices, +}: { + choices: { + [key: string]: { + chartType: string; + formData: { + [key: string]: any; + }; + }; + }; +}) { + const keys = Object.keys(choices); + const story = () => { + const host = text( + 'Set Superset App host for CORS request', + 'localhost:8088', + ); + const mode = select('Choose mode:', keys, keys[0]); + const { formData: presetFormData, chartType } = choices[mode]; + const width = text('Vis width', '400'); + const height = text('Vis height', '400'); + const formData = text( + 'Override formData', + JSON.stringify(presetFormData, null, 2), + ); + + return ( +
+ + {() => ( + + {({ loading, payload, error }) => { + if (loading) return
Loading!
; + + if (error) return renderError(error); + + if (payload) + return ( + <> + +
+ +
+                          {JSON.stringify(payload, null, 2)}
+                        
+
+ + ); + + return null; + }} +
+ )} +
+
+ ); + }; + story.parameters = { + chromatic: { disable: true }, + }; + return story; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/dummyDatasource.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/dummyDatasource.ts new file mode 100644 index 000000000000..25364312d83b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/shared/dummyDatasource.ts @@ -0,0 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default { verboseMap: {} }; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/Stories.tsx new file mode 100644 index 000000000000..93a63ba9e1c6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/Stories.tsx @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import CalendarChartPlugin from '@superset-ui/legacy-plugin-chart-calendar'; +import data from './data'; +import dummyDatasource from '../../../shared/dummyDatasource'; + +new CalendarChartPlugin().configure({ key: 'calendar' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-calendar', +}; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/data.ts new file mode 100644 index 000000000000..948b601dbef9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-calendar/data.ts @@ -0,0 +1,119 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys */ +export default { + data: { + count: { + '1518652800.0': 3, + '1518048000.0': 2, + '1518220800.0': 2, + '1523145600.0': 2, + '1529798400.0': 2, + '1534204800.0': 2, + '1541289600.0': 2, + '1542672000.0': 2, + '1543881600.0': 2, + '1517616000.0': 1, + '1517875200.0': 1, + '1517961600.0': 1, + '1518307200.0': 1, + '1518393600.0': 1, + '1519257600.0': 1, + '1519516800.0': 1, + '1519776000.0': 1, + '1520208000.0': 1, + '1520294400.0': 1, + '1520985600.0': 1, + '1521072000.0': 1, + '1521244800.0': 1, + '1521331200.0': 1, + '1521676800.0': 1, + '1522108800.0': 1, + '1522627200.0': 1, + '1522800000.0': 1, + '1522972800.0': 1, + '1523491200.0': 1, + '1524096000.0': 1, + '1524268800.0': 1, + '1524614400.0': 1, + '1524960000.0': 1, + '1525305600.0': 1, + '1525564800.0': 1, + '1525737600.0': 1, + '1525824000.0': 1, + '1525910400.0': 1, + '1526083200.0': 1, + '1526256000.0': 1, + '1526688000.0': 1, + '1527033600.0': 1, + '1527292800.0': 1, + '1527465600.0': 1, + '1527638400.0': 1, + '1528070400.0': 1, + '1528329600.0': 1, + '1529539200.0': 1, + '1529625600.0': 1, + '1529712000.0': 1, + '1529971200.0': 1, + '1530144000.0': 1, + '1530576000.0': 1, + '1531267200.0': 1, + '1531353600.0': 1, + '1531440000.0': 1, + '1532736000.0': 1, + '1533081600.0': 1, + '1533168000.0': 1, + '1533945600.0': 1, + '1534377600.0': 1, + '1534809600.0': 1, + '1535155200.0': 1, + '1535328000.0': 1, + '1535932800.0': 1, + '1536710400.0': 1, + '1537056000.0': 1, + '1537142400.0': 1, + '1537488000.0': 1, + '1537660800.0': 1, + '1538611200.0': 1, + '1538697600.0': 1, + '1539475200.0': 1, + '1540771200.0': 1, + '1541116800.0': 1, + '1541376000.0': 1, + '1541635200.0': 1, + '1542153600.0': 1, + '1542931200.0': 1, + '1543190400.0': 1, + '1545177600.0': 1, + '1545436800.0': 1, + '1545782400.0': 1, + '1545868800.0': 1, + '1546300800.0': 1, + '1546732800.0': 1, + '1547769600.0': 1, + '1547942400.0': 1, + '1548633600.0': 1, + }, + }, + start: 1517270400000.0, + domain: 'month', + range: 13, + subdomain: 'day', +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/Stories.tsx new file mode 100644 index 000000000000..505d87ed4361 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/Stories.tsx @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import ChordChartPlugin from '@superset-ui/legacy-plugin-chart-chord'; +import data from './data'; +import { withResizableChartDemo } from '../../../shared/components/ResizableChartDemo'; + +new ChordChartPlugin().configure({ key: 'chord' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-chord', + decorators: [withResizableChartDemo], +}; + +export const basic = ({ width, height }) => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/data.ts new file mode 100644 index 000000000000..979029aa61b4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-chord/data.ts @@ -0,0 +1,39 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default { + matrix: [ + [381, 16, 14, 5, 4, 6], + [29, 535, 132, 20, 21, 16], + [22, 18, 1, 3, 0, 214], + [3, 4, 462, 152, 132, 0], + [16, 32, 299, 123, 146, 1], + [22, 83, 53, 21, 22, 6], + ], + nodes: [ + 'Hong Kong', + 'Tokyo', + 'Taipei', + 'Beijing', + 'Bangkok', + 'Jakarta', + 'Singapore', + ], +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-country-map/CountryMapStories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-country-map/CountryMapStories.tsx new file mode 100644 index 000000000000..27e132ad4350 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-country-map/CountryMapStories.tsx @@ -0,0 +1,89 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { useEffect, useState } from 'react'; +import { + JsonObject, + seedRandom, + SuperChart, + SequentialD3, +} from '@superset-ui/core'; +import CountryMapChartPlugin, { + countries, +} from '@superset-ui/legacy-plugin-chart-country-map'; +import { withKnobs, select } from '@storybook/addon-knobs'; +import { withResizableChartDemo } from '../../../shared/components/ResizableChartDemo'; + +new CountryMapChartPlugin().configure({ key: 'country-map' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-country-map', + decorators: [withKnobs, withResizableChartDemo], +}; + +function generateData(geojson: JsonObject) { + return geojson.features.map(feat => ({ + metric: Math.round(seedRandom() * 10000) / 100, + country_id: feat.properties.ISO, + })); +} + +export const basic = function BasicCountryMapStory({ width, height }) { + const country = select('Country', Object.keys(countries!), 'france'); + const colorSchema = select( + 'Color schema', + SequentialD3, + SequentialD3.find(x => x.id === 'schemeOranges'), + ); + const [data, setData] = useState(); + + useEffect(() => { + const controller = new AbortController(); + const { signal } = controller; + fetch(countries[country], { signal }) + .then(resp => resp.json()) + .then(geojson => { + setData(generateData(geojson)); + }); + return () => { + controller.abort(); + }; + }, [country]); + + if (!data) { + return ( +
+ Loading... +
+ ); + } + + return ( + + ); +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-event-flow/Stories.jsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-event-flow/Stories.jsx new file mode 100644 index 000000000000..a28df94a9de9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-event-flow/Stories.jsx @@ -0,0 +1,51 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import sampleEvents from '@data-ui/event-flow/build/sampleEvents'; +import EventFlowChartPlugin from '@superset-ui/legacy-plugin-chart-event-flow'; + +new EventFlowChartPlugin().configure({ key: 'event-flow' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-event-flow', +}; + +const data = sampleEvents.twentyUsers.allEvents.map( + ({ ENTITY_ID, EVENT_NAME, TS }) => ({ + __timestamp: TS, + eventName: EVENT_NAME, + userId: ENTITY_ID, + }), +); + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/Stories.tsx new file mode 100644 index 000000000000..10e8d761391a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/Stories.tsx @@ -0,0 +1,39 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import ForceDirectedChartPlugin from '@superset-ui/legacy-plugin-chart-force-directed'; +import data from './data'; + +new ForceDirectedChartPlugin().configure({ key: 'force-directed' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-force-directed', +}; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/data.ts new file mode 100644 index 000000000000..9a06b22cd37e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-force-directed/data.ts @@ -0,0 +1,447 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys */ +export default [ + { + source: 'Energy', + target: 'Electricity and heat', + value: 24.9, + }, + { + source: 'Energy', + target: 'Industry', + value: 14.7, + }, + { + source: 'Energy', + target: 'Transportation', + value: 14.3, + }, + { + source: 'Deforestation', + target: 'Carbon Dioxide', + value: 10.9, + }, + { + source: 'Land Use Change', + target: 'Deforestation', + value: 10.9, + }, + { + source: 'Road', + target: 'Carbon Dioxide', + value: 10.5, + }, + { + source: 'Transportation', + target: 'Road', + value: 10.5, + }, + { + source: 'Residential Buildings', + target: 'Carbon Dioxide', + value: 10.2, + }, + { + source: 'Energy', + target: 'Other Fuel Combustion', + value: 8.6, + }, + { + source: 'Other Industry', + target: 'Carbon Dioxide', + value: 6.6, + }, + { + source: 'Commercial Buildings', + target: 'Carbon Dioxide', + value: 6.3, + }, + { + source: 'Agriculture', + target: 'Livestock and Manure', + value: 5.4, + }, + { + source: 'Agriculture', + target: 'Agriculture Soils', + value: 5.2, + }, + { + source: 'Agriculture Soils', + target: 'Nitrous Oxide', + value: 5.2, + }, + { + source: 'Electricity and heat', + target: 'Residential Buildings', + value: 5.2, + }, + { + source: 'Livestock and Manure', + target: 'Methane', + value: 5.1, + }, + { + source: 'Cement', + target: 'Carbon Dioxide', + value: 5.0, + }, + { + source: 'Electricity and heat', + target: 'Commercial Buildings', + value: 5.0, + }, + { + source: 'Other Fuel Combustion', + target: 'Residential Buildings', + value: 5.0, + }, + { + source: 'Energy', + target: 'Fugitive Emissions', + value: 4.0, + }, + { + source: 'Iron and Steel', + target: 'Carbon Dioxide', + value: 4.0, + }, + { + source: 'Industry', + target: 'Other Industry', + value: 3.8, + }, + { + source: 'Oil and Gas Processing', + target: 'Carbon Dioxide', + value: 3.6, + }, + { + source: 'Chemicals', + target: 'Carbon Dioxide', + value: 3.4, + }, + { + source: 'Fugitive Emissions', + target: 'Oil and Gas Processing', + value: 3.2, + }, + { + source: 'Industry', + target: 'Iron and Steel', + value: 3.0, + }, + { + source: 'Unallocated Fuel Combustion', + target: 'Carbon Dioxide', + value: 3.0, + }, + { + source: 'Industrial Processes', + target: 'Cement', + value: 2.8, + }, + { + source: 'Industry', + target: 'Oil and Gas Processing', + value: 2.8, + }, + { + source: 'Oil and Gas Processing', + target: 'Methane', + value: 2.8, + }, + { + source: 'Electricity and heat', + target: 'Other Industry', + value: 2.7, + }, + { + source: 'Rail - Ship and Other Transport', + target: 'Carbon Dioxide', + value: 2.5, + }, + { + source: 'Transportation', + target: 'Rail - Ship and Other Transport', + value: 2.5, + }, + { + source: 'Electricity and heat', + target: 'T and D Losses', + value: 2.2, + }, + { + source: 'T and D Losses', + target: 'Carbon Dioxide', + value: 2.2, + }, + { + source: 'Electricity and heat', + target: 'Unallocated Fuel Combustion', + value: 2.0, + }, + { + source: 'Industry', + target: 'Cement', + value: 1.9, + }, + { + source: 'Other Fuel Combustion', + target: 'Unallocated Fuel Combustion', + value: 1.8, + }, + { + source: 'Agriculture', + target: 'Other Agriculture', + value: 1.7, + }, + { + source: 'Air', + target: 'Carbon Dioxide', + value: 1.7, + }, + { + source: 'Landfills', + target: 'Methane', + value: 1.7, + }, + { + source: 'Transportation', + target: 'Air', + value: 1.7, + }, + { + source: 'Waste', + target: 'Landfills', + value: 1.7, + }, + { + source: 'Agriculture', + target: 'Rice Cultivation', + value: 1.5, + }, + { + source: 'Rice Cultivation', + target: 'Methane', + value: 1.5, + }, + { + source: 'Waste', + target: 'Waste water - Other Waste', + value: 1.5, + }, + { + source: 'Agricultural Energy Use', + target: 'Carbon Dioxide', + value: 1.4, + }, + { + source: 'Industrial Processes', + target: 'Chemicals', + value: 1.4, + }, + { + source: 'Industry', + target: 'Chemicals', + value: 1.4, + }, + { + source: 'Other Agriculture', + target: 'Methane', + value: 1.4, + }, + { + source: 'Electricity and heat', + target: 'Chemicals', + value: 1.3, + }, + { + source: 'Fugitive Emissions', + target: 'Coal Mining', + value: 1.3, + }, + { + source: 'Harvest / Management', + target: 'Carbon Dioxide', + value: 1.3, + }, + { + source: 'Land Use Change', + target: 'Harvest / Management', + value: 1.3, + }, + { + source: 'Other Fuel Combustion', + target: 'Commercial Buildings', + value: 1.3, + }, + { + source: 'Coal Mining', + target: 'Methane', + value: 1.2, + }, + { + source: 'Waste water - Other Waste', + target: 'Methane', + value: 1.2, + }, + { + source: 'Pulp - Paper and Printing', + target: 'Carbon Dioxide', + value: 1.1, + }, + { + source: 'Aluminium Non-Ferrous Metals', + target: 'Carbon Dioxide', + value: 1.0, + }, + { + source: 'Electricity and heat', + target: 'Iron and Steel', + value: 1.0, + }, + { + source: 'Electricity and heat', + target: 'Machinery', + value: 1.0, + }, + { + source: 'Food and Tobacco', + target: 'Carbon Dioxide', + value: 1.0, + }, + { + source: 'Machinery', + target: 'Carbon Dioxide', + value: 1.0, + }, + { + source: 'Other Fuel Combustion', + target: 'Agricultural Energy Use', + value: 1.0, + }, + { + source: 'Electricity and heat', + target: 'Pulp - Paper and Printing', + value: 0.6, + }, + { + source: 'Chemicals', + target: 'HFCs - PFCs', + value: 0.5, + }, + { + source: 'Electricity and heat', + target: 'Food and Tobacco', + value: 0.5, + }, + { + source: 'Industrial Processes', + target: 'Other Industry', + value: 0.5, + }, + { + source: 'Industry', + target: 'Food and Tobacco', + value: 0.5, + }, + { + source: 'Industry', + target: 'Pulp - Paper and Printing', + value: 0.5, + }, + { + source: 'Electricity and heat', + target: 'Aluminium Non-Ferrous Metals', + value: 0.4, + }, + { + source: 'Electricity and heat', + target: 'Oil and Gas Processing', + value: 0.4, + }, + { + source: 'Electricity,heat', + target: 'Agricultural Energy Use', + value: 0.4, + }, + { + source: 'Industrial Processes', + target: 'Aluminium Non-Ferrous Metals', + value: 0.4, + }, + { + source: 'Industry', + target: 'Aluminium Non-Ferrous Metals', + value: 0.4, + }, + { + source: 'Other Industry', + target: 'HFCs - PFCs', + value: 0.4, + }, + { + source: 'Unallocated Fuel Combustion', + target: 'Methane', + value: 0.4, + }, + { + source: 'Unallocated Fuel Combustion', + target: 'Nitrous Oxide', + value: 0.4, + }, + { + source: 'Electricity and heat', + target: 'Cement', + value: 0.3, + }, + { + source: 'Livestock and Manure', + target: 'Nitrous Oxide', + value: 0.3, + }, + { + source: 'Other Agriculture', + target: 'Nitrous Oxide', + value: 0.3, + }, + { + source: 'Waste water - Other Waste', + target: 'Nitrous Oxide', + value: 0.3, + }, + { + source: 'Aluminium Non-Ferrous Metals', + target: 'HFCs - PFCs', + value: 0.2, + }, + { + source: 'Chemicals', + target: 'Nitrous Oxide', + value: 0.2, + }, + { + source: 'Coal Mining', + target: 'Carbon Dioxide', + value: 0.1, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/Stories.tsx new file mode 100644 index 000000000000..54ea527b0abf --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/Stories.tsx @@ -0,0 +1,148 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import HeatmapChartPlugin from '@superset-ui/legacy-plugin-chart-heatmap'; +import ResizableChartDemo from '../../../shared/components/ResizableChartDemo'; +import data from './data'; + +new HeatmapChartPlugin().configure({ key: 'heatmap' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-heatmap', +}; + +export const basic = () => ( + +); + +export const resizable = () => ( + + {({ width, height }) => ( + + )} + +); + +export const withNullData = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/data.ts new file mode 100644 index 000000000000..4a1a6f6f3c7f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-heatmap/data.ts @@ -0,0 +1,182 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default [ + { + x: 'Energy', + y: 'Electricity and heat', + v: 24.9, + perc: 1.0, + rank: 1.0, + }, + { + x: 'Energy', + y: 'Industry', + v: 14.7, + perc: 0.5887096774193549, + rank: 0.9882352941176471, + }, + { + x: 'Energy', + y: 'Transportation', + v: 14.3, + perc: 0.5725806451612905, + rank: 0.9764705882352941, + }, + { + x: 'Deforestation', + y: 'Carbon Dioxide', + v: 10.9, + perc: 0.435483870967742, + rank: 0.9588235294117647, + }, + { + x: 'Land Use Change', + y: 'Deforestation', + v: 10.9, + perc: 0.435483870967742, + rank: 0.9588235294117647, + }, + { + x: 'Road', + y: 'Carbon Dioxide', + v: 10.5, + perc: 0.4193548387096775, + rank: 0.9352941176470588, + }, + { + x: 'Transportation', + y: 'Road', + v: 10.5, + perc: 0.4193548387096775, + rank: 0.9352941176470588, + }, + { + x: 'Residential Buildings', + y: 'Carbon Dioxide', + v: 10.2, + perc: 0.40725806451612906, + rank: 0.9176470588235294, + }, + { + x: 'Energy', + y: 'Other Fuel Combustion', + v: 8.6, + perc: 0.342741935483871, + rank: 0.9058823529411765, + }, + { + x: 'Other Industry', + y: 'Carbon Dioxide', + v: 6.6, + perc: 0.26209677419354843, + rank: 0.8941176470588236, + }, + { + x: 'Commercial Buildings', + y: 'Carbon Dioxide', + v: 6.3, + perc: 0.25000000000000006, + rank: 0.8823529411764706, + }, + { + x: 'Agriculture', + y: 'Livestock and Manure', + v: 5.4, + perc: 0.2137096774193549, + rank: 0.8705882352941177, + }, + { + x: 'Agriculture', + y: 'Agriculture Soils', + v: 5.2, + perc: 0.20564516129032262, + rank: 0.8470588235294118, + }, + { + x: 'Agriculture Soils', + y: 'Nitrous Oxide', + v: 5.2, + perc: 0.20564516129032262, + rank: 0.8470588235294118, + }, + { + x: 'Oil and Gas Processing', + y: 'Methane', + v: 2.8, + perc: 0.10887096774193548, + rank: 0.6705882352941176, + }, + { + x: 'Electricity and heat', + y: 'Other Industry', + v: 2.7, + perc: 0.10483870967741937, + rank: 0.6470588235294118, + }, + { + x: 'Rail - Ship and Other Transport', + y: 'Carbon Dioxide', + v: 2.5, + perc: 0.09677419354838711, + rank: 0.6294117647058823, + }, + { + x: 'Transportation', + y: 'Rail - Ship and Other Transport', + v: 2.5, + perc: 0.09677419354838711, + rank: 0.6294117647058823, + }, + { + x: 'Electricity and heat', + y: 'T and D Losses', + v: 2.2, + perc: 0.08467741935483872, + rank: 0.6058823529411764, + }, + { + x: 'T and D Losses', + y: 'Carbon Dioxide', + v: 2.2, + perc: 0.08467741935483872, + rank: 0.6058823529411764, + }, + { + x: 'Electricity and heat', + y: 'Unallocated Fuel Combustion', + v: 2.0, + perc: 0.07661290322580645, + rank: 0.5882352941176471, + }, + { + x: 'Industry', + y: 'Cement', + v: 1.9, + perc: 0.07258064516129033, + rank: 0.5764705882352941, + }, + { + x: 'Other Fuel Combustion', + y: 'Unallocated Fuel Combustion', + v: 1.8, + perc: 0.0685483870967742, + rank: 0.5647058823529412, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/Stories.tsx new file mode 100644 index 000000000000..d6e7be70a825 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/Stories.tsx @@ -0,0 +1,47 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import HistogramChartPlugin from '@superset-ui/legacy-plugin-chart-histogram'; +import data from './data'; + +new HistogramChartPlugin().configure({ key: 'histogram' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-histogram', +}; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/data.ts new file mode 100644 index 000000000000..21ac39d508e0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-histogram/data.ts @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { + key: 'Entrance exam', + values: [ + 0.87, 0.944, 1.0, 0.879, 0.69, 0.667, 0.794, 0.838, 0.875, 0.385, 0.968, + 0.804, 1.0, 0.943, 0.96, 0.333, 0.5, 0.929, 0.863, 0.75, 0.957, 0.914, + 1.0, 0.909, 0.742, 0.964, 0.25, 0.75, 0.5, 0.867, 0.909, 0.333, 0.867, + 0.952, 0.857, 0.949, 0.857, 0.333, 0.8, 0.707, 0.833, 0.75, 0.88, 0.771, + 1.0, 1.0, 0.769, 1.0, 0.769, 0.622, 0.909, 0.725, 0.951, 1.0, + ], + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/Stories.tsx new file mode 100644 index 000000000000..72856f99a4fe --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/Stories.tsx @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import HorizonChartPlugin from '@superset-ui/legacy-plugin-chart-horizon'; +import data from './data'; + +new HorizonChartPlugin().configure({ key: 'horizon' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-horizon', +}; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/data.ts new file mode 100644 index 000000000000..ffda42a18076 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-horizon/data.ts @@ -0,0 +1,927 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys */ +export default [ + { + key: ['Christopher'], + values: [ + { + x: -157766400000.0, + y: 24703, + }, + { + x: -126230400000.0, + y: 27861, + }, + { + x: -94694400000.0, + y: 29436, + }, + { + x: -63158400000.0, + y: 31463, + }, + { + x: -31536000000.0, + y: 35718, + }, + { + x: 0.0, + y: 41758, + }, + { + x: 31536000000.0, + y: 48172, + }, + { + x: 63072000000.0, + y: 52092, + }, + { + x: 94694400000.0, + y: 48217, + }, + { + x: 126230400000.0, + y: 48476, + }, + { + x: 157766400000.0, + y: 46438, + }, + { + x: 189302400000.0, + y: 45086, + }, + { + x: 220924800000.0, + y: 46610, + }, + { + x: 252460800000.0, + y: 47107, + }, + { + x: 283996800000.0, + y: 50514, + }, + { + x: 315532800000.0, + y: 48969, + }, + { + x: 347155200000.0, + y: 50108, + }, + { + x: 378691200000.0, + y: 59055, + }, + { + x: 410227200000.0, + y: 59188, + }, + { + x: 441763200000.0, + y: 59859, + }, + { + x: 473385600000.0, + y: 59516, + }, + { + x: 504921600000.0, + y: 56633, + }, + { + x: 536457600000.0, + y: 54466, + }, + { + x: 567993600000.0, + y: 52996, + }, + { + x: 599616000000.0, + y: 53205, + }, + { + x: 631152000000.0, + y: 52322, + }, + { + x: 662688000000.0, + y: 47109, + }, + { + x: 694224000000.0, + y: 42470, + }, + { + x: 725846400000.0, + y: 38257, + }, + { + x: 757382400000.0, + y: 34823, + }, + { + x: 788918400000.0, + y: 32728, + }, + { + x: 820454400000.0, + y: 30988, + }, + { + x: 852076800000.0, + y: 29179, + }, + { + x: 883612800000.0, + y: 27083, + }, + { + x: 915148800000.0, + y: 25700, + }, + { + x: 946684800000.0, + y: 24959, + }, + { + x: 978307200000.0, + y: 23180, + }, + { + x: 1009843200000.0, + y: 21731, + }, + { + x: 1041379200000.0, + y: 20793, + }, + { + x: 1072915200000.0, + y: 19739, + }, + { + x: 1104537600000.0, + y: 19190, + }, + { + x: 1136073600000.0, + y: 19674, + }, + { + x: 1167609600000.0, + y: 19986, + }, + { + x: 1199145600000.0, + y: 17771, + }, + ], + }, + { + key: ['Daniel'], + values: [ + { + x: -157766400000.0, + y: 24717, + }, + { + x: -126230400000.0, + y: 23168, + }, + { + x: -94694400000.0, + y: 22128, + }, + { + x: -63158400000.0, + y: 21940, + }, + { + x: -31536000000.0, + y: 23103, + }, + { + x: 0.0, + y: 23427, + }, + { + x: 31536000000.0, + y: 21704, + }, + { + x: 63072000000.0, + y: 22022, + }, + { + x: 94694400000.0, + y: 23579, + }, + { + x: 126230400000.0, + y: 23759, + }, + { + x: 157766400000.0, + y: 23720, + }, + { + x: 189302400000.0, + y: 24621, + }, + { + x: 220924800000.0, + y: 25971, + }, + { + x: 252460800000.0, + y: 26324, + }, + { + x: 283996800000.0, + y: 28403, + }, + { + x: 315532800000.0, + y: 29759, + }, + { + x: 347155200000.0, + y: 30868, + }, + { + x: 378691200000.0, + y: 32480, + }, + { + x: 410227200000.0, + y: 34580, + }, + { + x: 441763200000.0, + y: 36370, + }, + { + x: 473385600000.0, + y: 38409, + }, + { + x: 504921600000.0, + y: 36440, + }, + { + x: 536457600000.0, + y: 35746, + }, + { + x: 567993600000.0, + y: 34589, + }, + { + x: 599616000000.0, + y: 34909, + }, + { + x: 631152000000.0, + y: 33740, + }, + { + x: 662688000000.0, + y: 30826, + }, + { + x: 694224000000.0, + y: 29047, + }, + { + x: 725846400000.0, + y: 28587, + }, + { + x: 757382400000.0, + y: 27978, + }, + { + x: 788918400000.0, + y: 26631, + }, + { + x: 820454400000.0, + y: 25029, + }, + { + x: 852076800000.0, + y: 23873, + }, + { + x: 883612800000.0, + y: 23089, + }, + { + x: 915148800000.0, + y: 22623, + }, + { + x: 946684800000.0, + y: 22250, + }, + { + x: 978307200000.0, + y: 20925, + }, + { + x: 1009843200000.0, + y: 21247, + }, + { + x: 1041379200000.0, + y: 20980, + }, + { + x: 1072915200000.0, + y: 20914, + }, + { + x: 1104537600000.0, + y: 20130, + }, + { + x: 1136073600000.0, + y: 19946, + }, + { + x: 1167609600000.0, + y: 20108, + }, + { + x: 1199145600000.0, + y: 18695, + }, + ], + }, + { + key: ['David'], + values: [ + { + x: -157766400000.0, + y: 67646, + }, + { + x: -126230400000.0, + y: 66207, + }, + { + x: -94694400000.0, + y: 66581, + }, + { + x: -63158400000.0, + y: 63531, + }, + { + x: -31536000000.0, + y: 63502, + }, + { + x: 0.0, + y: 61570, + }, + { + x: 31536000000.0, + y: 52948, + }, + { + x: 63072000000.0, + y: 46218, + }, + { + x: 94694400000.0, + y: 40968, + }, + { + x: 126230400000.0, + y: 41654, + }, + { + x: 157766400000.0, + y: 39019, + }, + { + x: 189302400000.0, + y: 39165, + }, + { + x: 220924800000.0, + y: 40407, + }, + { + x: 252460800000.0, + y: 40533, + }, + { + x: 283996800000.0, + y: 41898, + }, + { + x: 315532800000.0, + y: 41743, + }, + { + x: 347155200000.0, + y: 40486, + }, + { + x: 378691200000.0, + y: 40283, + }, + { + x: 410227200000.0, + y: 39048, + }, + { + x: 441763200000.0, + y: 38346, + }, + { + x: 473385600000.0, + y: 38395, + }, + { + x: 504921600000.0, + y: 37021, + }, + { + x: 536457600000.0, + y: 36672, + }, + { + x: 567993600000.0, + y: 35214, + }, + { + x: 599616000000.0, + y: 35139, + }, + { + x: 631152000000.0, + y: 33661, + }, + { + x: 662688000000.0, + y: 30347, + }, + { + x: 694224000000.0, + y: 28344, + }, + { + x: 725846400000.0, + y: 26947, + }, + { + x: 757382400000.0, + y: 24784, + }, + { + x: 788918400000.0, + y: 22967, + }, + { + x: 820454400000.0, + y: 22941, + }, + { + x: 852076800000.0, + y: 21824, + }, + { + x: 883612800000.0, + y: 20816, + }, + { + x: 915148800000.0, + y: 20267, + }, + { + x: 946684800000.0, + y: 19695, + }, + { + x: 978307200000.0, + y: 19281, + }, + { + x: 1009843200000.0, + y: 18600, + }, + { + x: 1041379200000.0, + y: 18557, + }, + { + x: 1072915200000.0, + y: 18315, + }, + { + x: 1104537600000.0, + y: 18017, + }, + { + x: 1136073600000.0, + y: 17510, + }, + { + x: 1167609600000.0, + y: 17400, + }, + { + x: 1199145600000.0, + y: 16049, + }, + ], + }, + { + key: ['James'], + values: [ + { + x: -157766400000.0, + y: 67506, + }, + { + x: -126230400000.0, + y: 65036, + }, + { + x: -94694400000.0, + y: 61554, + }, + { + x: -63158400000.0, + y: 60584, + }, + { + x: -31536000000.0, + y: 59824, + }, + { + x: 0.0, + y: 61597, + }, + { + x: 31536000000.0, + y: 54463, + }, + { + x: 63072000000.0, + y: 46960, + }, + { + x: 94694400000.0, + y: 42782, + }, + { + x: 126230400000.0, + y: 41258, + }, + { + x: 157766400000.0, + y: 39471, + }, + { + x: 189302400000.0, + y: 38203, + }, + { + x: 220924800000.0, + y: 39916, + }, + { + x: 252460800000.0, + y: 39783, + }, + { + x: 283996800000.0, + y: 39237, + }, + { + x: 315532800000.0, + y: 39185, + }, + { + x: 347155200000.0, + y: 38176, + }, + { + x: 378691200000.0, + y: 38750, + }, + { + x: 410227200000.0, + y: 36228, + }, + { + x: 441763200000.0, + y: 35728, + }, + { + x: 473385600000.0, + y: 35750, + }, + { + x: 504921600000.0, + y: 33955, + }, + { + x: 536457600000.0, + y: 32552, + }, + { + x: 567993600000.0, + y: 32418, + }, + { + x: 599616000000.0, + y: 32658, + }, + { + x: 631152000000.0, + y: 32288, + }, + { + x: 662688000000.0, + y: 30460, + }, + { + x: 694224000000.0, + y: 28450, + }, + { + x: 725846400000.0, + y: 26193, + }, + { + x: 757382400000.0, + y: 24706, + }, + { + x: 788918400000.0, + y: 22691, + }, + { + x: 820454400000.0, + y: 21122, + }, + { + x: 852076800000.0, + y: 20368, + }, + { + x: 883612800000.0, + y: 19651, + }, + { + x: 915148800000.0, + y: 18508, + }, + { + x: 946684800000.0, + y: 17939, + }, + { + x: 978307200000.0, + y: 17023, + }, + { + x: 1009843200000.0, + y: 16905, + }, + { + x: 1041379200000.0, + y: 16832, + }, + { + x: 1072915200000.0, + y: 16459, + }, + { + x: 1104537600000.0, + y: 16046, + }, + { + x: 1136073600000.0, + y: 16139, + }, + { + x: 1167609600000.0, + y: 15821, + }, + { + x: 1199145600000.0, + y: 14920, + }, + ], + }, + { + key: ['Jennifer'], + values: [ + { + x: -157766400000.0, + y: 15174, + }, + { + x: -126230400000.0, + y: 18166, + }, + { + x: -94694400000.0, + y: 18193, + }, + { + x: -63158400000.0, + y: 26778, + }, + { + x: -31536000000.0, + y: 33618, + }, + { + x: 0.0, + y: 46022, + }, + { + x: 31536000000.0, + y: 56607, + }, + { + x: 63072000000.0, + y: 63400, + }, + { + x: 94694400000.0, + y: 62229, + }, + { + x: 126230400000.0, + y: 62854, + }, + { + x: 157766400000.0, + y: 57960, + }, + { + x: 189302400000.0, + y: 59255, + }, + { + x: 220924800000.0, + y: 58682, + }, + { + x: 252460800000.0, + y: 56064, + }, + { + x: 283996800000.0, + y: 56472, + }, + { + x: 315532800000.0, + y: 58130, + }, + { + x: 347155200000.0, + y: 56779, + }, + { + x: 378691200000.0, + y: 56867, + }, + { + x: 410227200000.0, + y: 54136, + }, + { + x: 441763200000.0, + y: 50375, + }, + { + x: 473385600000.0, + y: 42500, + }, + { + x: 504921600000.0, + y: 36063, + }, + { + x: 536457600000.0, + y: 32613, + }, + { + x: 567993600000.0, + y: 27798, + }, + { + x: 599616000000.0, + y: 24006, + }, + { + x: 631152000000.0, + y: 22160, + }, + { + x: 662688000000.0, + y: 20616, + }, + { + x: 694224000000.0, + y: 17783, + }, + { + x: 725846400000.0, + y: 15704, + }, + { + x: 757382400000.0, + y: 13976, + }, + { + x: 788918400000.0, + y: 12655, + }, + { + x: 820454400000.0, + y: 11703, + }, + { + x: 852076800000.0, + y: 11803, + }, + { + x: 883612800000.0, + y: 10671, + }, + { + x: 915148800000.0, + y: 10593, + }, + { + x: 946684800000.0, + y: 9308, + }, + { + x: 978307200000.0, + y: 8843, + }, + { + x: 1009843200000.0, + y: 8317, + }, + { + x: 1041379200000.0, + y: 7475, + }, + { + x: 1072915200000.0, + y: 6079, + }, + { + x: 1104537600000.0, + y: 5413, + }, + { + x: 1136073600000.0, + y: 4736, + }, + { + x: 1167609600000.0, + y: 4001, + }, + { + x: 1199145600000.0, + y: 3010, + }, + ], + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/Stories.tsx new file mode 100644 index 000000000000..a1ab6879264d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/Stories.tsx @@ -0,0 +1,55 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import MapBoxChartPlugin from '@superset-ui/legacy-plugin-chart-map-box'; +import data from './data'; + +new MapBoxChartPlugin().configure({ key: 'map-box' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-map-box', +}; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/data.ts new file mode 100644 index 000000000000..2d688e5fc414 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-map-box/data.ts @@ -0,0 +1,5542 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default { + geoJSON: { + type: 'FeatureCollection', + features: [ + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3912672, 37.769092799999996], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3908502, 37.769425899999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.428577, 37.780626700000006], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42853410000001, 37.780384999999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4285247, 37.7803172], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4289542, 37.780288299999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42854750000001, 37.7804295], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42856090000002, 37.7805154], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42777749999999, 37.7796098], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42777749999999, 37.7796098], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42777749999999, 37.7796098], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42777749999999, 37.7796098], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42777749999999, 37.7796098], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42777749999999, 37.7796098], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42777749999999, 37.7796098], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42777749999999, 37.7796098], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42777749999999, 37.7796098], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42777749999999, 37.7796098], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42777749999999, 37.7796098], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42777749999999, 37.7796098], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42755859999998, 37.778689799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42743229999999, 37.777719399999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42743229999999, 37.777719399999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42743229999999, 37.777719399999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42743229999999, 37.777719399999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42743229999999, 37.777719399999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42743229999999, 37.777719399999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42743229999999, 37.777719399999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42743229999999, 37.777719399999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42743229999999, 37.777719399999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42743229999999, 37.777719399999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4134558, 37.7484727], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4134693, 37.748557500000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4134719, 37.7486508], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41349609999999, 37.7487166], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41395, 37.7486402], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4139875, 37.7487919], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41354140000001, 37.7489449], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.413528, 37.7490021], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4135253, 37.7491167], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4135145, 37.749193], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.414019, 37.7491316], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4117365, 37.7486445], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41175259999999, 37.7487696], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4117285, 37.7485724], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4117795, 37.7490453], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4117929, 37.749128000000006], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41121129999999, 37.7487523], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41121129999999, 37.7487523], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41122390000001, 37.748883500000005], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41122390000001, 37.748883500000005], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41122390000001, 37.748883500000005], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41122390000001, 37.748883500000005], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41121129999999, 37.7487523], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.411202, 37.748655299999996], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4113189, 37.7485282], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4117952, 37.7491739], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4118113, 37.74928], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41123770000002, 37.749056], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4112471, 37.749125799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41124040000001, 37.749056], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41123370000001, 37.748986200000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4113098, 37.749328600000005], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4113098, 37.749328600000005], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4113098, 37.749328600000005], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4112602, 37.7492628], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41125359999998, 37.7491943], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41261899999999, 37.748848100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42924, 37.773016299999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42922630000001, 37.7729485], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42925359999998, 37.773084000000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.429199, 37.7728129], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.429199, 37.7728129], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.429199, 37.7728129], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42921270000001, 37.7728807], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42921270000001, 37.7728807], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.429199, 37.7728129], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42803329999998, 37.772907000000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42803329999998, 37.772907000000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.36907930000001, 37.829124799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4194821, 37.7965601], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4194039, 37.79657], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41916909999999, 37.796599799999996], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4190509, 37.7966143], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4189344, 37.796629700000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4193241, 37.7965791], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4194821, 37.7965601], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4195577, 37.7965517], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4194039, 37.79657], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4194039, 37.79657], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4189344, 37.796629700000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4189344, 37.796629700000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4193241, 37.7965791], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4193241, 37.7965791], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4195577, 37.7965517], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4197094, 37.7964617], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4197094, 37.7964617], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4198895, 37.796369299999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4197094, 37.7964617], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.419622, 37.796477100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41922220000001, 37.7964735], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41922220000001, 37.7964735], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41922079999999, 37.7964746], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41922079999999, 37.7964746], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.419622, 37.796477100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.419622, 37.796477100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42507509999999, 37.805799], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3680513, 37.8109768], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42400220000002, 37.7726917], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42400220000002, 37.7726917], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42400220000002, 37.7726917], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42400220000002, 37.7726917], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42400220000002, 37.7726917], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42400220000002, 37.7726917], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42400220000002, 37.7726917], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4242303, 37.7722281], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4238774, 37.772139200000005], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4240507, 37.7724944], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3958111, 37.794331], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3960615, 37.7961555], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39385370000001, 37.7941917], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39385370000001, 37.7941917], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39385370000001, 37.7941917], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39385370000001, 37.7941917], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.475146, 37.804753000000005], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4753019, 37.804900399999994], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.47424170000001, 37.8046516], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37621399999999, 37.82493], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37621399999999, 37.82493], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37621399999999, 37.82493], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37621399999999, 37.82493], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37621399999999, 37.82493], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37621399999999, 37.82493], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37621399999999, 37.82493], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37600479999999, 37.8245274], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37600479999999, 37.8245274], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37600479999999, 37.8245274], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37600479999999, 37.8245274], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37600479999999, 37.8245274], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37600479999999, 37.8245274], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37600479999999, 37.8245274], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3759163, 37.8274638], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3760075, 37.827158700000005], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37581429999999, 37.8268833], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3754657, 37.8273198], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3985469, 37.7147003], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.43389350000001, 37.804396000000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.43389350000001, 37.804396000000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.43384569999999, 37.80415870000001], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4338662, 37.8042604], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4339084, 37.804563], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4339084, 37.804563], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4339084, 37.804563], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3676041, 37.8289299], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4280895, 37.803383200000006], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4280746, 37.803309999999996], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4279744, 37.803245200000006], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42863600000001, 37.8033228], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42863600000001, 37.8033228], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42863600000001, 37.8033228], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42863600000001, 37.8033228], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42863600000001, 37.8033228], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4286077, 37.8033994], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4286581, 37.8032157], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4286077, 37.8033994], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42863179999999, 37.80351829999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42812140000001, 37.803540500000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4285142, 37.8029385], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42859469999999, 37.8031195], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42853819999999, 37.8030571], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.428076, 37.8030467], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42853819999999, 37.8030571], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42859469999999, 37.8031195], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4278783, 37.803670200000006], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42788300000001, 37.8036681], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42788829999999, 37.8036691], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4279398, 37.803498600000005], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4277419, 37.803523799999994], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4277419, 37.803523799999994], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4272755, 37.803583200000006], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4274357, 37.803562799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4275639, 37.8035465], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4276493, 37.803535600000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42703529999999, 37.80374929999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4290591, 37.8033565], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4290591, 37.8033565], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42881650000001, 37.8034566], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4294863, 37.8033021], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4294863, 37.8033021], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42881650000001, 37.8034566], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4294009, 37.803313], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42881650000001, 37.8034566], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.428895, 37.8034118], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4289737, 37.8033673], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4291873, 37.8033401], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42931540000001, 37.803323799999994], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4294009, 37.803313], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4294863, 37.8033021], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42863179999999, 37.80351829999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42863179999999, 37.80351829999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42863179999999, 37.80351829999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42863179999999, 37.80351829999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42863179999999, 37.80351829999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42863179999999, 37.80351829999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4071531, 37.8039556], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4071531, 37.8039556], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.40703490000001, 37.8039679], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4225845, 37.7450152], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42252090000001, 37.745434700000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4225145, 37.745363899999994], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4225749, 37.7450845], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4225657, 37.7451538], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4225657, 37.7451538], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4225605, 37.74522279999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.42256100000002, 37.7452914], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38996770000001, 37.769589], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3952066, 37.7711267], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3719278, 37.825213899999994], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37250719999999, 37.825984999999996], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37384240000002, 37.8252314], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39015079999999, 37.7747333], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39134640000002, 37.7746826], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.43379420000001, 37.7901049], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4338035, 37.79010170000001], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.388603, 37.755928000000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3895312, 37.75579929999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889626, 37.756876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889626, 37.756876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889626, 37.756876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889626, 37.756876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889626, 37.756876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889626, 37.756876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889626, 37.756876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889626, 37.756876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889626, 37.756876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889626, 37.756876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889626, 37.756876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3888915, 37.7574041], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3888915, 37.7574041], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3888915, 37.7574041], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3888915, 37.7574041], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3888915, 37.7574041], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3888915, 37.7574041], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3888756, 37.7572329], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889752, 37.7571094], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38897390000001, 37.7571094], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889547, 37.757106], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3888756, 37.7572329], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38886979999998, 37.7571708], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3886976, 37.7565519], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38898190000002, 37.757020399999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38898329999999, 37.7570225], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38897659999998, 37.7570246], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38898190000002, 37.757027799999996], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38897790000001, 37.757026700000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3888193, 37.7567712], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38890740000001, 37.7575753], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3895229, 37.7574799], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38890740000001, 37.7575753], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.388901, 37.757506799999994], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3895229, 37.7574799], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38952920000001, 37.7575484], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38954199999999, 37.75768529999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38953559999999, 37.7576169], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38896580000001, 37.757709999999996], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38954199999999, 37.75768529999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889138, 37.7576438], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38896580000001, 37.757709999999996], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38953559999999, 37.7576169], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38954199999999, 37.75768529999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3896298, 37.7568335], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38881140000001, 37.7566641], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38888200000001, 37.757301399999996], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38940179999999, 37.7573381], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38940179999999, 37.7573381], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38940179999999, 37.7573381], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3894138, 37.7574072], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3894138, 37.7574072], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3894138, 37.7574072], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38954820000001, 37.7577471], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.387429, 37.7564374], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38748799999999, 37.7572135], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38743980000001, 37.756573100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38499540000001, 37.7565966], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38499540000001, 37.7565966], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38747190000001, 37.7570312], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38749340000001, 37.7574892], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3874827, 37.7569336], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38743980000001, 37.7566876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3874827, 37.7573365], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38751029999999, 37.7576727], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38751840000002, 37.7577395], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900683, 37.7536999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41864240000001, 37.75806179999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41864240000001, 37.75806179999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41864240000001, 37.75806179999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41864240000001, 37.75806179999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41929669999999, 37.7580568], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4192706, 37.7577843], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4186227, 37.7578564], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4186227, 37.7578564], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4192706, 37.7577843], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41861090000002, 37.757733200000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4185998, 37.757616799999994], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4193882, 37.7576486], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4185998, 37.757616799999994], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4193882, 37.7576486], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4185932, 37.757548299999996], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4192135, 37.7571874], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4192135, 37.7571874], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4192135, 37.7571874], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4186189, 37.757409], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4193777, 37.7574404], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4185867, 37.7574798], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41860449999999, 37.7572584], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41860449999999, 37.7572584], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41860449999999, 37.7572584], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41860449999999, 37.7572584], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4186189, 37.757409], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41860449999999, 37.7572584], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4192246, 37.7573037], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4192784, 37.757865100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41863059999999, 37.7579385], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4192784, 37.757865100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4192875, 37.757961], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4192875, 37.757961], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4192875, 37.757961], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41860449999999, 37.7572584], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4192135, 37.7571874], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41863059999999, 37.7579385], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4186227, 37.7578564], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.40286329999999, 37.790087400000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.40286329999999, 37.790087400000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.40287140000001, 37.790098], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.40269709999998, 37.790225], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.40269709999998, 37.790225], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.40277340000002, 37.7901532], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.40252360000001, 37.7897601], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41244499999999, 37.7101158], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41244499999999, 37.7101158], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41244499999999, 37.7101158], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41244499999999, 37.7101158], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41244499999999, 37.7101158], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41244499999999, 37.7101158], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41244499999999, 37.7101158], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41244499999999, 37.7101158], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41244499999999, 37.7101158], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41244499999999, 37.7101158], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41244499999999, 37.7101158], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41244499999999, 37.7101158], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41244499999999, 37.7101158], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41244499999999, 37.7101158], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.41244499999999, 37.7101158], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.44410729999998, 37.757026], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.444148, 37.75711939999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.44403740000001, 37.7569565], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4439387, 37.7569094], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.44386180000001, 37.7568449], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.44403740000001, 37.7569565], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.443852, 37.7564226], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.44373859999999, 37.756323200000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.44373859999999, 37.756323200000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.44360520000001, 37.7566893], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.443754, 37.7567456], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4439962, 37.7565479], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3954717, 37.7901856], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39746059999999, 37.7891958], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39739979999999, 37.7893325], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3974095, 37.7894162], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3973043, 37.789744799999994], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39759340000002, 37.7894876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39759340000002, 37.7894876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39759340000002, 37.7894876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39759340000002, 37.7894876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39759340000002, 37.7894876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39759340000002, 37.7894876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39759340000002, 37.7894876], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3975057, 37.7894174], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39838950000001, 37.7185335], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3675625, 37.810389799999996], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.37165159999998, 37.8162006], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.45272079999998, 37.7556186], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38902309999999, 37.7307125], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3890935, 37.7307524], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3891639, 37.7307923], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38881200000002, 37.7305929], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889527, 37.730672600000005], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38923559999999, 37.730833000000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38926809999998, 37.731458700000005], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38918899999999, 37.7314138], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3890746, 37.731349], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3889603, 37.7312842], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38888109999999, 37.7312393], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3888019, 37.7311945], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38873159999999, 37.7311546], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3886436, 37.7311047], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3887, 37.730571600000005], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3888824, 37.730632799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3888824, 37.730632799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3888824, 37.730632799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3888824, 37.730632799999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38853799999998, 37.73104489999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3884501, 37.7309951], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38840479999999, 37.7309272], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38859440000002, 37.7305117], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3883345, 37.7308874], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3882642, 37.730847499999996], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38859440000002, 37.7305117], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38859440000002, 37.7305117], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38853799999998, 37.73104489999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38951570000002, 37.730991700000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3895861, 37.7310316], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38972679999999, 37.731111299999995], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3896564, 37.7310714], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3897972, 37.731151200000006], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3897972, 37.731151200000006], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.389306, 37.73087279999999], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.389375, 37.7309119], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38944529999999, 37.7309518], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3898676, 37.731191100000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.38993789999999, 37.731231], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.39000829999999, 37.7312708], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3900787, 37.7313107], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3893913, 37.731528499999996], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.3901449, 37.7314143], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4646808, 37.743914200000006], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4645595, 37.7439238], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4644415, 37.7439331], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.46430120000001, 37.743945000000004], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.36871940000002, 37.8272473], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4485467, 37.7318206], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4485467, 37.7318206], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4485467, 37.7318206], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.44807079999998, 37.731822799999996], + }, + }, + { + type: 'Feature', + properties: { + metric: null, + radius: null, + }, + geometry: { + type: 'Point', + coordinates: [-122.4487196, 37.7318198], + }, + }, + ], + }, + hasCustomMetric: false, + mapboxApiKey: + 'pk.eyJ1Ijoia3Jpc3R3IiwiYSI6ImNqbGg1N242NTFlczczdnBhazViMjgzZ2sifQ.lUneM-o3NucXN189EYyXxQ', + mapStyle: 'mapbox://styles/mapbox/light-v9', + aggregatorName: 'sum', + clusteringRadius: '60', + pointRadiusUnit: 'Pixels', + globalOpacity: 1, + bounds: [ + [-122.4753019, 37.7101158], + [-122.3675625, 37.829124799999995], + ], + renderWhileDragging: true, + tooltip: null, + color: 'rgb(0, 122, 135)', +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/Stories.tsx new file mode 100644 index 000000000000..577c00ac564c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/Stories.tsx @@ -0,0 +1,46 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import PairedTTestChartPlugin from '@superset-ui/legacy-plugin-chart-paired-t-test'; +import data from './data'; + +new PairedTTestChartPlugin().configure({ key: 'paired-t-test' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-paired-t-test', +}; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/data.ts new file mode 100644 index 000000000000..28a820d13054 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-paired-t-test/data.ts @@ -0,0 +1,702 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys */ +export default { + sum__num: [ + { + group: ['Christopher'], + values: [ + { + x: -157766400000.0, + y: null, + }, + { + x: -126230400000.0, + y: null, + }, + { + x: -94694400000.0, + y: null, + }, + { + x: -63158400000.0, + y: null, + }, + { + x: -31536000000.0, + y: null, + }, + { + x: 0.0, + y: null, + }, + { + x: 31536000000.0, + y: null, + }, + { + x: 63072000000.0, + y: null, + }, + { + x: 94694400000.0, + y: null, + }, + { + x: 126230400000.0, + y: null, + }, + { + x: 157766400000.0, + y: null, + }, + { + x: 189302400000.0, + y: null, + }, + { + x: 220924800000.0, + y: null, + }, + { + x: 252460800000.0, + y: null, + }, + { + x: 283996800000.0, + y: null, + }, + { + x: 315532800000.0, + y: null, + }, + { + x: 347155200000.0, + y: null, + }, + { + x: 378691200000.0, + y: 59055.0, + }, + { + x: 410227200000.0, + y: 59188.0, + }, + { + x: 441763200000.0, + y: 59859.0, + }, + { + x: 473385600000.0, + y: 59516.0, + }, + { + x: 504921600000.0, + y: null, + }, + { + x: 536457600000.0, + y: null, + }, + { + x: 567993600000.0, + y: null, + }, + { + x: 599616000000.0, + y: null, + }, + { + x: 631152000000.0, + y: null, + }, + { + x: 662688000000.0, + y: null, + }, + ], + }, + { + group: ['David'], + values: [ + { + x: -157766400000.0, + y: 67646.0, + }, + { + x: -126230400000.0, + y: 66207.0, + }, + { + x: -94694400000.0, + y: 66581.0, + }, + { + x: -63158400000.0, + y: 63531.0, + }, + { + x: -31536000000.0, + y: 63502.0, + }, + { + x: 0.0, + y: 61570.0, + }, + { + x: 31536000000.0, + y: null, + }, + { + x: 63072000000.0, + y: null, + }, + { + x: 94694400000.0, + y: null, + }, + { + x: 126230400000.0, + y: null, + }, + { + x: 157766400000.0, + y: null, + }, + { + x: 189302400000.0, + y: null, + }, + { + x: 220924800000.0, + y: null, + }, + { + x: 252460800000.0, + y: null, + }, + { + x: 283996800000.0, + y: null, + }, + { + x: 315532800000.0, + y: null, + }, + { + x: 347155200000.0, + y: null, + }, + { + x: 378691200000.0, + y: null, + }, + { + x: 410227200000.0, + y: null, + }, + { + x: 441763200000.0, + y: null, + }, + { + x: 473385600000.0, + y: null, + }, + { + x: 504921600000.0, + y: null, + }, + { + x: 536457600000.0, + y: null, + }, + { + x: 567993600000.0, + y: null, + }, + { + x: 599616000000.0, + y: null, + }, + { + x: 631152000000.0, + y: null, + }, + { + x: 662688000000.0, + y: null, + }, + ], + }, + { + group: ['James'], + values: [ + { + x: -157766400000.0, + y: 67506.0, + }, + { + x: -126230400000.0, + y: 65036.0, + }, + { + x: -94694400000.0, + y: 61554.0, + }, + { + x: -63158400000.0, + y: 60584.0, + }, + { + x: -31536000000.0, + y: 59824.0, + }, + { + x: 0.0, + y: 61597.0, + }, + { + x: 31536000000.0, + y: null, + }, + { + x: 63072000000.0, + y: null, + }, + { + x: 94694400000.0, + y: null, + }, + { + x: 126230400000.0, + y: null, + }, + { + x: 157766400000.0, + y: null, + }, + { + x: 189302400000.0, + y: null, + }, + { + x: 220924800000.0, + y: null, + }, + { + x: 252460800000.0, + y: null, + }, + { + x: 283996800000.0, + y: null, + }, + { + x: 315532800000.0, + y: null, + }, + { + x: 347155200000.0, + y: null, + }, + { + x: 378691200000.0, + y: null, + }, + { + x: 410227200000.0, + y: null, + }, + { + x: 441763200000.0, + y: null, + }, + { + x: 473385600000.0, + y: null, + }, + { + x: 504921600000.0, + y: null, + }, + { + x: 536457600000.0, + y: null, + }, + { + x: 567993600000.0, + y: null, + }, + { + x: 599616000000.0, + y: null, + }, + { + x: 631152000000.0, + y: null, + }, + { + x: 662688000000.0, + y: null, + }, + ], + }, + { + group: ['John'], + values: [ + { + x: -157766400000.0, + y: 71390.0, + }, + { + x: -126230400000.0, + y: 64858.0, + }, + { + x: -94694400000.0, + y: 61480.0, + }, + { + x: -63158400000.0, + y: 60754.0, + }, + { + x: -31536000000.0, + y: 58644.0, + }, + { + x: 0.0, + y: null, + }, + { + x: 31536000000.0, + y: null, + }, + { + x: 63072000000.0, + y: null, + }, + { + x: 94694400000.0, + y: null, + }, + { + x: 126230400000.0, + y: null, + }, + { + x: 157766400000.0, + y: null, + }, + { + x: 189302400000.0, + y: null, + }, + { + x: 220924800000.0, + y: null, + }, + { + x: 252460800000.0, + y: null, + }, + { + x: 283996800000.0, + y: null, + }, + { + x: 315532800000.0, + y: null, + }, + { + x: 347155200000.0, + y: null, + }, + { + x: 378691200000.0, + y: null, + }, + { + x: 410227200000.0, + y: null, + }, + { + x: 441763200000.0, + y: null, + }, + { + x: 473385600000.0, + y: null, + }, + { + x: 504921600000.0, + y: null, + }, + { + x: 536457600000.0, + y: null, + }, + { + x: 567993600000.0, + y: null, + }, + { + x: 599616000000.0, + y: null, + }, + { + x: 631152000000.0, + y: null, + }, + { + x: 662688000000.0, + y: null, + }, + ], + }, + { + group: ['Michael'], + values: [ + { + x: -157766400000.0, + y: 80812.0, + }, + { + x: -126230400000.0, + y: 79709.0, + }, + { + x: -94694400000.0, + y: 82204.0, + }, + { + x: -63158400000.0, + y: 81785.0, + }, + { + x: -31536000000.0, + y: 84893.0, + }, + { + x: 0.0, + y: 85015.0, + }, + { + x: 31536000000.0, + y: 77321.0, + }, + { + x: 63072000000.0, + y: 71197.0, + }, + { + x: 94694400000.0, + y: 67598.0, + }, + { + x: 126230400000.0, + y: 67304.0, + }, + { + x: 157766400000.0, + y: 68149.0, + }, + { + x: 189302400000.0, + y: 66686.0, + }, + { + x: 220924800000.0, + y: 67344.0, + }, + { + x: 252460800000.0, + y: 66875.0, + }, + { + x: 283996800000.0, + y: 67473.0, + }, + { + x: 315532800000.0, + y: 68375.0, + }, + { + x: 347155200000.0, + y: 68467.0, + }, + { + x: 378691200000.0, + y: 67904.0, + }, + { + x: 410227200000.0, + y: 67708.0, + }, + { + x: 441763200000.0, + y: 67457.0, + }, + { + x: 473385600000.0, + y: 64667.0, + }, + { + x: 504921600000.0, + y: 63959.0, + }, + { + x: 536457600000.0, + y: 63442.0, + }, + { + x: 567993600000.0, + y: 63924.0, + }, + { + x: 599616000000.0, + y: 65233.0, + }, + { + x: 631152000000.0, + y: 65138.0, + }, + { + x: 662688000000.0, + y: 60646.0, + }, + ], + }, + { + group: ['Robert'], + values: [ + { + x: -157766400000.0, + y: 62973.0, + }, + { + x: -126230400000.0, + y: 59162.0, + }, + { + x: -94694400000.0, + y: null, + }, + { + x: -63158400000.0, + y: null, + }, + { + x: -31536000000.0, + y: null, + }, + { + x: 0.0, + y: null, + }, + { + x: 31536000000.0, + y: null, + }, + { + x: 63072000000.0, + y: null, + }, + { + x: 94694400000.0, + y: null, + }, + { + x: 126230400000.0, + y: null, + }, + { + x: 157766400000.0, + y: null, + }, + { + x: 189302400000.0, + y: null, + }, + { + x: 220924800000.0, + y: null, + }, + { + x: 252460800000.0, + y: null, + }, + { + x: 283996800000.0, + y: null, + }, + { + x: 315532800000.0, + y: null, + }, + { + x: 347155200000.0, + y: null, + }, + { + x: 378691200000.0, + y: null, + }, + { + x: 410227200000.0, + y: null, + }, + { + x: 441763200000.0, + y: null, + }, + { + x: 473385600000.0, + y: null, + }, + { + x: 504921600000.0, + y: null, + }, + { + x: 536457600000.0, + y: null, + }, + { + x: 567993600000.0, + y: null, + }, + { + x: 599616000000.0, + y: null, + }, + { + x: 631152000000.0, + y: null, + }, + { + x: 662688000000.0, + y: null, + }, + ], + }, + ], +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/Stories.tsx new file mode 100644 index 000000000000..df907b8a614a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/Stories.tsx @@ -0,0 +1,48 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import ParallelCoordinatesChartPlugin from '@superset-ui/legacy-plugin-chart-parallel-coordinates'; +import data from './data'; + +new ParallelCoordinatesChartPlugin() + .configure({ key: 'parallel-coordinates' }) + .register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-parallel-coordinates', +}; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/data.ts new file mode 100644 index 000000000000..9c8aeb6d32cf --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-parallel-coordinates/data.ts @@ -0,0 +1,81 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default [ + { + country_name: 'China', + sum__SP_POP_TOTL: 1344130000.0, + sum__SP_RUR_TOTL_ZS: 49.427, + sum__SH_DYN_AIDS: 0.0, + }, + { + country_name: 'India', + sum__SP_POP_TOTL: 1247446011.0, + sum__SP_RUR_TOTL_ZS: 68.724, + sum__SH_DYN_AIDS: 0.0, + }, + { + country_name: 'United States', + sum__SP_POP_TOTL: 311721632.0, + sum__SP_RUR_TOTL_ZS: 19.06, + sum__SH_DYN_AIDS: 0.0, + }, + { + country_name: 'Indonesia', + sum__SP_POP_TOTL: 244808254.0, + sum__SP_RUR_TOTL_ZS: 49.288, + sum__SH_DYN_AIDS: 540000.0, + }, + { + country_name: 'Brazil', + sum__SP_POP_TOTL: 200517584.0, + sum__SP_RUR_TOTL_ZS: 15.377, + sum__SH_DYN_AIDS: 0.0, + }, + { + country_name: 'Pakistan', + sum__SP_POP_TOTL: 173669648.0, + sum__SP_RUR_TOTL_ZS: 62.993, + sum__SH_DYN_AIDS: 52000.0, + }, + { + country_name: 'Nigeria', + sum__SP_POP_TOTL: 163770669.0, + sum__SP_RUR_TOTL_ZS: 55.638, + sum__SH_DYN_AIDS: 3000000.0, + }, + { + country_name: 'Bangladesh', + sum__SP_POP_TOTL: 153405612.0, + sum__SP_RUR_TOTL_ZS: 68.775, + sum__SH_DYN_AIDS: 7800.0, + }, + { + country_name: 'Russian Federation', + sum__SP_POP_TOTL: 142960868.0, + sum__SP_RUR_TOTL_ZS: 26.268, + sum__SH_DYN_AIDS: 0.0, + }, + { + country_name: 'Japan', + sum__SP_POP_TOTL: 127817277.0, + sum__SP_RUR_TOTL_ZS: 8.752, + sum__SH_DYN_AIDS: 0.0, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/Stories.tsx new file mode 100644 index 000000000000..7f016ec3609c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/Stories.tsx @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import PartitionChartPlugin from '@superset-ui/legacy-plugin-chart-partition'; +import data from './data'; +import dummyDatasource from '../../../shared/dummyDatasource'; + +new PartitionChartPlugin().configure({ key: 'partition' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-partition', +}; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/data.ts new file mode 100644 index 000000000000..f9c70b6d8b4e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-partition/data.ts @@ -0,0 +1,113 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default [ + { + name: 'World', + val: 165709793794.0, + children: [ + { + name: 'East Asia & Pacific', + val: 74157936990.0, + children: [ + { + name: 'CHN', + val: 58345455000.0, + children: [], + }, + { + name: 'IDN', + val: 9357861231.0, + children: [], + }, + { + name: 'JPN', + val: 6454620759.0, + children: [], + }, + ], + }, + { + name: 'Europe & Central Asia', + val: 7667188460.0, + children: [ + { + name: 'RUS', + val: 7667188460.0, + children: [], + }, + ], + }, + { + name: 'Latin America & Caribbean', + val: 7752058955.0, + children: [ + { + name: 'BRA', + val: 7752058955.0, + children: [], + }, + ], + }, + { + name: 'North America', + val: 13604468357.0, + children: [ + { + name: 'USA', + val: 13604468357.0, + children: [], + }, + ], + }, + { + name: 'South Asia', + val: 57268340539.0, + children: [ + { + name: 'BGD', + val: 5549261462.0, + children: [], + }, + { + name: 'IND', + val: 46023037597.0, + children: [], + }, + { + name: 'PAK', + val: 5696041480.0, + children: [], + }, + ], + }, + { + name: 'Sub-Saharan Africa', + val: 5259800493.0, + children: [ + { + name: 'NGA', + val: 5259800493.0, + children: [], + }, + ], + }, + ], + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-pivot-table/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-pivot-table/Stories.tsx new file mode 100644 index 000000000000..10ea7350f568 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-pivot-table/Stories.tsx @@ -0,0 +1,159 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import PivotTableChartPlugin from '@superset-ui/legacy-plugin-chart-pivot-table'; +import 'bootstrap/dist/css/bootstrap.min.css'; + +new PivotTableChartPlugin().configure({ key: 'pivot-table' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-pivot-table', +}; + +const datasource = { + columnFormats: {}, + verboseMap: { + sum__num: 'sum__num', + }, +}; + +export const basic = () => ( + + + + + sum__num + + + state + other + All + + + name + + + + + + + Apache Superset + 803607 + 803607 + + + David pixel + 673992 + 673992 + + + pixelApache Superset + 749686 + 749686 + + + Jennifer + 587540 + 587540 + + + John + 638450 + 638450 + + + Joshua + 548044 + 548044 + + + Matthew + 608212 + 608212 + + + Michael + 1047996 + 1047996 + + + Robert + 575592 + 575592 + + + William + 574464 + 574464 + + + All + 6807583 + 6807583 + + +`, + }, + }, + ]} + formData={{ + groupby: ['name'], + numberFormat: '.3s', + }} + /> +); + +export const withNull = () => ( + \n \n \n \n sum__num\n \n \n state\n other\n All\n \n \n name\n \n \n \n \n \n \n Christopher\n null\n 803607\n \n \n David\n null\n 673992\n \n \n James\n 749686\n null\n \n \n Jennifer\n 587540\n null\n \n \n John\n 638450\n 638450\n \n \n Joshua\n null\n 548044\n \n \n Matthew\n 608212\n 608212\n \n \n Michael\n 1047996\n 1047996\n \n \n Robert\n 575592\n 575592\n \n \n William\n 574464\n 574464\n \n \n All\n 6807583\n 6807583\n \n \n', + }, + }, + ]} + formData={{ + groupby: ['name'], + numberFormat: '.3s', + }} + /> +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/Stories.tsx new file mode 100644 index 000000000000..2e103735a7ea --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/Stories.tsx @@ -0,0 +1,46 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers, sort-keys */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import RoseChartPlugin from '@superset-ui/legacy-plugin-chart-rose'; +import data from './data'; + +new RoseChartPlugin().configure({ key: 'rose' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-rose', +}; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/data.ts new file mode 100644 index 000000000000..a155f0c66743 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-rose/data.ts @@ -0,0 +1,950 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default { + '-157766400000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: -157766400000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: -157766400000.0, + }, + { + key: ['David'], + value: 6820.0, + name: ['David'], + time: -157766400000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: -157766400000.0, + }, + { + key: ['Michael'], + value: 7835.0, + name: ['Michael'], + time: -157766400000.0, + }, + ], + '-126230400000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: -126230400000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: -126230400000.0, + }, + { + key: ['David'], + value: 6757.0, + name: ['David'], + time: -126230400000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: -126230400000.0, + }, + { + key: ['Michael'], + value: 7678.0, + name: ['Michael'], + time: -126230400000.0, + }, + ], + '-94694400000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: -94694400000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: -94694400000.0, + }, + { + key: ['David'], + value: 6923.0, + name: ['David'], + time: -94694400000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: -94694400000.0, + }, + { + key: ['Michael'], + value: 8132.0, + name: ['Michael'], + time: -94694400000.0, + }, + ], + '-63158400000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: -63158400000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: -63158400000.0, + }, + { + key: ['David'], + value: 6490.0, + name: ['David'], + time: -63158400000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: -63158400000.0, + }, + { + key: ['Michael'], + value: 8079.0, + name: ['Michael'], + time: -63158400000.0, + }, + ], + '-31536000000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: -31536000000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: -31536000000.0, + }, + { + key: ['David'], + value: 6563.0, + name: ['David'], + time: -31536000000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: -31536000000.0, + }, + { + key: ['Michael'], + value: 8245.0, + name: ['Michael'], + time: -31536000000.0, + }, + ], + '0': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: 0.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 0.0, + }, + { + key: ['David'], + value: 6367.0, + name: ['David'], + time: 0.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 0.0, + }, + { + key: ['Michael'], + value: 8186.0, + name: ['Michael'], + time: 0.0, + }, + ], + '31536000000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: 31536000000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 31536000000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 31536000000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 31536000000.0, + }, + { + key: ['Michael'], + value: 6825.0, + name: ['Michael'], + time: 31536000000.0, + }, + ], + '63072000000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: 63072000000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 63072000000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 63072000000.0, + }, + { + key: ['Jennifer'], + value: 6066.0, + name: ['Jennifer'], + time: 63072000000.0, + }, + { + key: ['Michael'], + value: 6337.0, + name: ['Michael'], + time: 63072000000.0, + }, + ], + '94694400000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: 94694400000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 94694400000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 94694400000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 94694400000.0, + }, + { + key: ['Michael'], + value: 5877.0, + name: ['Michael'], + time: 94694400000.0, + }, + ], + '126230400000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: 126230400000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 126230400000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 126230400000.0, + }, + { + key: ['Jennifer'], + value: 5672.0, + name: ['Jennifer'], + time: 126230400000.0, + }, + { + key: ['Michael'], + value: 6058.0, + name: ['Michael'], + time: 126230400000.0, + }, + ], + '157766400000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: 157766400000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 157766400000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 157766400000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 157766400000.0, + }, + { + key: ['Michael'], + value: 6206.0, + name: ['Michael'], + time: 157766400000.0, + }, + ], + '189302400000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: 189302400000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 189302400000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 189302400000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 189302400000.0, + }, + { + key: ['Michael'], + value: 6178.0, + name: ['Michael'], + time: 189302400000.0, + }, + ], + '220924800000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: 220924800000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 220924800000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 220924800000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 220924800000.0, + }, + { + key: ['Michael'], + value: 6313.0, + name: ['Michael'], + time: 220924800000.0, + }, + ], + '252460800000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: 252460800000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 252460800000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 252460800000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 252460800000.0, + }, + { + key: ['Michael'], + value: 6489.0, + name: ['Michael'], + time: 252460800000.0, + }, + ], + '283996800000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: 283996800000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 283996800000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 283996800000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 283996800000.0, + }, + { + key: ['Michael'], + value: 6580.0, + name: ['Michael'], + time: 283996800000.0, + }, + ], + '315532800000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: 315532800000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 315532800000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 315532800000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 315532800000.0, + }, + { + key: ['Michael'], + value: 6896.0, + name: ['Michael'], + time: 315532800000.0, + }, + ], + '347155200000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: 347155200000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 347155200000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 347155200000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 347155200000.0, + }, + { + key: ['Michael'], + value: 7142.0, + name: ['Michael'], + time: 347155200000.0, + }, + ], + '378691200000000000': [ + { + key: ['Christopher'], + value: 6093.0, + name: ['Christopher'], + time: 378691200000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 378691200000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 378691200000.0, + }, + { + key: ['Jennifer'], + value: 5811.0, + name: ['Jennifer'], + time: 378691200000.0, + }, + { + key: ['Michael'], + value: 7155.0, + name: ['Michael'], + time: 378691200000.0, + }, + ], + '410227200000000000': [ + { + key: ['Christopher'], + value: 6375.0, + name: ['Christopher'], + time: 410227200000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 410227200000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 410227200000.0, + }, + { + key: ['Jennifer'], + value: 5829.0, + name: ['Jennifer'], + time: 410227200000.0, + }, + { + key: ['Michael'], + value: 7386.0, + name: ['Michael'], + time: 410227200000.0, + }, + ], + '441763200000000000': [ + { + key: ['Christopher'], + value: 6509.0, + name: ['Christopher'], + time: 441763200000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 441763200000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 441763200000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 441763200000.0, + }, + { + key: ['Michael'], + value: 7478.0, + name: ['Michael'], + time: 441763200000.0, + }, + ], + '473385600000000000': [ + { + key: ['Christopher'], + value: 6744.0, + name: ['Christopher'], + time: 473385600000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 473385600000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 473385600000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 473385600000.0, + }, + { + key: ['Michael'], + value: 7210.0, + name: ['Michael'], + time: 473385600000.0, + }, + ], + '504921600000000000': [ + { + key: ['Christopher'], + value: 6497.0, + name: ['Christopher'], + time: 504921600000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 504921600000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 504921600000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 504921600000.0, + }, + { + key: ['Michael'], + value: 7259.0, + name: ['Michael'], + time: 504921600000.0, + }, + ], + '536457600000000000': [ + { + key: ['Christopher'], + value: 6549.0, + name: ['Christopher'], + time: 536457600000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 536457600000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 536457600000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 536457600000.0, + }, + { + key: ['Michael'], + value: 7448.0, + name: ['Michael'], + time: 536457600000.0, + }, + ], + '567993600000000000': [ + { + key: ['Christopher'], + value: 6496.0, + name: ['Christopher'], + time: 567993600000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 567993600000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 567993600000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 567993600000.0, + }, + { + key: ['Michael'], + value: 7748.0, + name: ['Michael'], + time: 567993600000.0, + }, + ], + '599616000000000000': [ + { + key: ['Christopher'], + value: 6526.0, + name: ['Christopher'], + time: 599616000000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 599616000000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 599616000000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 599616000000.0, + }, + { + key: ['Michael'], + value: 7851.0, + name: ['Michael'], + time: 599616000000.0, + }, + ], + '631152000000000000': [ + { + key: ['Christopher'], + value: 6641.0, + name: ['Christopher'], + time: 631152000000.0, + }, + { + key: ['Daniel'], + value: 5760.0, + name: ['Daniel'], + time: 631152000000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 631152000000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 631152000000.0, + }, + { + key: ['Michael'], + value: 8233.0, + name: ['Michael'], + time: 631152000000.0, + }, + ], + '662688000000000000': [ + { + key: ['Christopher'], + value: 5784.0, + name: ['Christopher'], + time: 662688000000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 662688000000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 662688000000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 662688000000.0, + }, + { + key: ['Michael'], + value: 7579.0, + name: ['Michael'], + time: 662688000000.0, + }, + ], + '694224000000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: 694224000000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 694224000000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 694224000000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 694224000000.0, + }, + { + key: ['Michael'], + value: 6627.0, + name: ['Michael'], + time: 694224000000.0, + }, + ], + '725846400000000000': [ + { + key: ['Christopher'], + value: 0, + name: ['Christopher'], + time: 725846400000.0, + }, + { + key: ['Daniel'], + value: 0, + name: ['Daniel'], + time: 725846400000.0, + }, + { + key: ['David'], + value: 0, + name: ['David'], + time: 725846400000.0, + }, + { + key: ['Jennifer'], + value: 0, + name: ['Jennifer'], + time: 725846400000.0, + }, + { + key: ['Michael'], + value: 5839.0, + name: ['Michael'], + time: 725846400000.0, + }, + ], +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/Stories.tsx new file mode 100644 index 000000000000..c66a8661ac21 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/Stories.tsx @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import SankeyLoopChartPlugin from '@superset-ui/legacy-plugin-chart-sankey-loop'; +import data from './data'; + +new SankeyLoopChartPlugin().configure({ key: 'sankey-loop' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-sankey-loop', +}; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/data.ts new file mode 100644 index 000000000000..b310af21be9b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey-loop/data.ts @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { + source: 'Lisdoonvarna', + target: 'Cliffs of Moher', + value: 50, + }, + { + source: 'Cliffs of Moher', + target: 'Lisdoonvarna', + value: 35, + }, + { + source: 'Cliffs of Moher', + target: 'Killarney', + value: 25, + }, + { + source: 'Lisdoonvarna', + target: 'Killarney', + value: 25, + }, + { + source: 'Lisdoonvarna', + target: 'Kinvarra', + value: 25, + }, + { + source: 'Kinvarra', + target: 'Lisdoonvarna', + value: 25, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/Stories.tsx new file mode 100644 index 000000000000..274285baf03a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/Stories.tsx @@ -0,0 +1,59 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import SankeyChartPlugin from '@superset-ui/legacy-plugin-chart-sankey'; +import ResizableChartDemo from '../../../shared/components/ResizableChartDemo'; +import data from './data'; + +new SankeyChartPlugin().configure({ key: 'sankey' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-sankey', +}; + +export const basic = () => ( + +); + +export const resizable = () => ( + + {({ width, height }) => ( + + )} + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/data.ts new file mode 100644 index 000000000000..df04dff32deb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sankey/data.ts @@ -0,0 +1,72 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { + source: 'Energy', + target: 'Electricity and heat', + value: 24.9, + }, + { + source: 'Energy', + target: 'Industry', + value: 14.7, + }, + { + source: 'Energy', + target: 'Transportation', + value: 14.3, + }, + { + source: 'Deforestation', + target: 'Carbon Dioxide', + value: 10.9, + }, + { + source: 'Land Use Change', + target: 'Deforestation', + value: 10.9, + }, + { + source: 'Road', + target: 'Carbon Dioxide', + value: 10.5, + }, + { + source: 'Transportation', + target: 'Road', + value: 10.5, + }, + { + source: 'Residential Buildings', + target: 'Carbon Dioxide', + value: 10.2, + }, + { + source: 'Energy', + target: 'Other Fuel Combustion', + value: 8.6, + }, + { + source: 'Other Industry', + target: 'Carbon Dioxide', + value: 6.6, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/Stories.tsx new file mode 100644 index 000000000000..35b6388be765 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/Stories.tsx @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import SunburstChartPlugin from '@superset-ui/legacy-plugin-chart-sunburst'; +import ResizableChartDemo from '../../../shared/components/ResizableChartDemo'; +import data from './data'; + +new SunburstChartPlugin().configure({ key: 'sunburst' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-sunburst', +}; + +export const basic = () => ( + +); + +export const resizable = () => ( + + {({ width, height }) => ( + + )} + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/data.ts new file mode 100644 index 000000000000..69df74de4dd3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-sunburst/data.ts @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + ['East Asia & Pacific', 'China', 1344130000.0, 664363135.0], + ['South Asia', 'India', 1247446011.0, 857294797.0], + ['North America', 'United States', 311721632.0, 59414143.0], + ['East Asia & Pacific', 'Indonesia', 244808254.0, 120661092.0], + ['Latin America & Caribbean', 'Brazil', 200517584.0, 30833589.0], + ['South Asia', 'Pakistan', 173669648.0, 109399721.0], + ['Sub-Saharan Africa', 'Nigeria', 163770669.0, 91118725.0], + ['South Asia', 'Bangladesh', 153405612.0, 105504710.0], + ['Europe & Central Asia', 'Russian Federation', 142960868.0, 37552961.0], + ['East Asia & Pacific', 'Japan', 127817277.0, 11186568.0], +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/Stories.tsx new file mode 100644 index 000000000000..73b19eadf152 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/Stories.tsx @@ -0,0 +1,74 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import TimeTableChartPlugin from '@superset-ui/legacy-plugin-chart-time-table'; +import data from './data'; + +new TimeTableChartPlugin().configure({ key: 'time-table' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-time-table', +}; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/data.ts new file mode 100644 index 000000000000..b9990d59255c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-time-table/data.ts @@ -0,0 +1,230 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default { + '1980-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 88, + 'Sub-Saharan Africa': 92, + }, + '1981-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 98, + 'Middle East & North Africa': 80, + 'Sub-Saharan Africa': 96, + }, + '1982-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 89, + 'Sub-Saharan Africa': 94, + }, + '1983-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 88, + 'Sub-Saharan Africa': 98, + }, + '1984-01-01 00:00:00': { + 'East Asia & Pacific': 97, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 91, + 'Sub-Saharan Africa': 98, + }, + '1985-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 94, + 'Sub-Saharan Africa': 97, + }, + '1986-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 98, + 'Sub-Saharan Africa': 99, + }, + '1987-01-01 00:00:00': { + 'East Asia & Pacific': 98, + 'Latin America & Caribbean': 98, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '1988-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 98, + 'Sub-Saharan Africa': 99, + }, + '1989-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 98, + 'Sub-Saharan Africa': 99, + }, + '1990-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '1991-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 98, + 'Sub-Saharan Africa': 99, + }, + '1992-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '1993-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '1994-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '1995-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '1996-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 98, + 'Sub-Saharan Africa': 99, + }, + '1997-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '1998-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '1999-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '2000-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '2001-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '2002-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '2003-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '2004-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '2005-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '2006-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '2007-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '2008-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '2009-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '2010-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '2011-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '2012-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '2013-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, + '2014-01-01 00:00:00': { + 'East Asia & Pacific': 99, + 'Latin America & Caribbean': 99, + 'Middle East & North Africa': 99, + 'Sub-Saharan Africa': 99, + }, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/Stories.tsx new file mode 100644 index 000000000000..1331ca81ed77 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/Stories.tsx @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers, sort-keys */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import TreemapChartPlugin from '@superset-ui/legacy-plugin-chart-treemap'; +import data from './data'; + +new TreemapChartPlugin().configure({ key: 'treemap' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-treemap', +}; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/data.ts new file mode 100644 index 000000000000..9f67b5a00fe0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-treemap/data.ts @@ -0,0 +1,55 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys */ +export default [ + { + name: 'Total Population', + children: [ + { + name: 'East Asia & Pacific', + value: 92886288081, + }, + { + name: 'South Asia', + value: 60081663698, + }, + { + name: 'Europe & Central Asia', + value: 44338871387, + }, + { + name: 'Sub-Saharan Africa', + value: 28161513610, + }, + { + name: 'Latin America & Caribbean', + value: 23202014769, + }, + { + name: 'North America', + value: 15077904555, + }, + { + name: 'Middle East & North Africa', + value: 13187931450, + }, + ], + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/Stories.tsx new file mode 100644 index 000000000000..0a561473197b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/Stories.tsx @@ -0,0 +1,43 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers, sort-keys */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import WorldMapChartPlugin from '@superset-ui/legacy-plugin-chart-world-map'; +import data from './data'; + +new WorldMapChartPlugin().configure({ key: 'world-map' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-plugin-chart-world-map', +}; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/data.ts new file mode 100644 index 000000000000..93a02bcd8c91 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-world-map/data.ts @@ -0,0 +1,323 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys */ +export default [ + { + country: 'TTO', + m1: 91.45, + m2: 1354483.0, + latitude: 11, + longitude: -61, + name: 'Trinidad and Tobago', + }, + { + country: 'BDI', + m1: 88.239, + m2: 10816860.0, + latitude: -3.5, + longitude: 30, + name: 'Burundi', + }, + { + country: 'PNG', + m1: 87.015, + m2: 7463577.0, + latitude: -6, + longitude: 147, + name: 'Papua New Guinea', + }, + { + country: 'LIE', + m1: 85.695, + m2: 37286.0, + latitude: 47.26666666, + longitude: 9.53333333, + name: 'Liechtenstein', + }, + { + country: 'UGA', + m1: 84.234, + m2: 37782971.0, + latitude: 1, + longitude: 32, + name: 'Uganda', + }, + { + country: 'MWI', + m1: 83.898, + m2: 16695253.0, + latitude: -13.5, + longitude: 34, + name: 'Malawi', + }, + { + country: 'NPL', + m1: 81.757, + m2: 28174724.0, + latitude: 28, + longitude: 84, + name: 'Nepal', + }, + { + country: 'LKA', + m1: 81.68, + m2: 20639000.0, + latitude: 7, + longitude: 81, + name: 'Sri Lanka', + }, + { + country: 'NER', + m1: 81.531, + m2: 19113728.0, + latitude: 16, + longitude: 8, + name: 'Niger', + }, + { + country: 'LCA', + m1: 81.523, + m2: 183645.0, + latitude: 13.88333333, + longitude: -60.96666666, + name: 'Saint Lucia', + }, + { + country: 'SSD', + m1: 81.409, + m2: 11911184.0, + latitude: 7, + longitude: 30, + name: 'South Sudan', + }, + { + country: 'ETH', + m1: 80.972, + m2: 96958732.0, + latitude: 8, + longitude: 38, + name: 'Ethiopia', + }, + { + country: 'WSM', + m1: 80.74, + m2: 191845.0, + latitude: -13.58333333, + longitude: -172.33333333, + name: 'Samoa', + }, + { + country: 'KHM', + m1: 79.486, + m2: 15328136.0, + latitude: 13, + longitude: 105, + name: 'Cambodia', + }, + { + country: 'SWZ', + m1: 78.685, + m2: 1269112.0, + latitude: -26.5, + longitude: 31.5, + name: 'Swaziland', + }, + { + country: 'SLB', + m1: 78.124, + m2: 572171.0, + latitude: -8, + longitude: 159, + name: 'Solomon Islands', + }, + { + country: 'ERI', + m1: 77.807, + m2: 5110444.0, + latitude: 15, + longitude: 39, + name: 'Eritrea', + }, + { + country: 'TCD', + m1: 77.659, + m2: 13587053.0, + latitude: 15, + longitude: 19, + name: 'Chad', + }, + { + country: 'FSM', + m1: 77.622, + m2: 104044.0, + latitude: 6.91666666, + longitude: 158.25, + name: 'Micronesia', + }, + { + country: 'TON', + m1: 76.368, + m2: 105586.0, + latitude: -20, + longitude: -175, + name: 'Tonga', + }, + { + country: 'SLE', + m1: 60.422, + m2: 6315627.0, + latitude: 8.5, + longitude: -11.5, + name: 'Sierra Leone', + }, + { + country: 'BIH', + m1: 60.384, + m2: 3817554.0, + latitude: 44, + longitude: 18, + name: 'Bosnia and Herzegovina', + }, + { + country: 'GNQ', + m1: 60.244, + m2: 820885.0, + latitude: 2, + longitude: 10, + name: 'Equatorial Guinea', + }, + { + country: 'CAF', + m1: 60.241, + m2: 4804316.0, + latitude: 7, + longitude: 21, + name: 'Central African Republic', + }, + { + country: 'MUS', + m1: 60.186, + m2: 1260934.0, + latitude: -20.28333333, + longitude: 57.55, + name: 'Mauritius', + }, + { + country: 'ZMB', + m1: 59.528, + m2: 15721343.0, + latitude: -15, + longitude: 30, + name: 'Zambia', + }, + { + country: 'FRO', + m1: 58.257, + m2: 48221.0, + latitude: 62, + longitude: -7, + name: 'Faroe Islands', + }, + { + country: 'ABW', + m1: 58.221, + m2: 103441.0, + latitude: 12.5, + longitude: -69.96666666, + name: 'Aruba', + }, + { + country: 'XXX', + m1: 58.024, + m2: 74877030.0, + }, + { + country: 'EGY', + m1: 56.931, + m2: 89579670.0, + latitude: 27, + longitude: 30, + name: 'Egypt', + }, + { + country: 'AGO', + m1: 56.726, + m2: 24227524.0, + latitude: -12.5, + longitude: 18.5, + name: 'Angola', + }, + { + country: 'SEN', + m1: 56.607, + m2: 14672557.0, + latitude: 14, + longitude: -14, + name: 'Senegal', + }, + { + country: 'BEN', + m1: 56.486, + m2: 10598482.0, + latitude: 9.5, + longitude: 2.25, + name: 'Benin', + }, + { + country: 'BLZ', + m1: 55.876, + m2: 351706.0, + latitude: 17.25, + longitude: -88.75, + name: 'Belize', + }, + { + country: 'KIR', + m1: 55.827, + m2: 110470.0, + latitude: 1.41666666, + longitude: 173, + name: 'Kiribati', + }, + { + country: 'PHL', + m1: 55.512, + m2: 99138690.0, + latitude: 13, + longitude: 122, + name: 'Philippines', + }, + { + country: 'MDV', + m1: 55.506, + m2: 357415.0, + latitude: 3.25, + longitude: 73, + name: 'Maldives', + }, + { + country: 'MDA', + m1: 55.075, + m2: 3556400.0, + latitude: 47, + longitude: 29, + name: 'Moldova', + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/BigNumberStories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/BigNumberStories.tsx new file mode 100644 index 000000000000..dd56c58bbf62 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/BigNumberStories.tsx @@ -0,0 +1,131 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import { BigNumberChartPlugin } from '@superset-ui/legacy-preset-chart-big-number'; +import testData from './data'; + +new BigNumberChartPlugin().configure({ key: 'big-number' }).register(); + +const TIME_COLUMN = '__timestamp'; + +const formData = { + colorPicker: { + r: 0, + g: 122, + b: 135, + a: 1, + }, + compareLag: 1, + compareSuffix: 'over 10Y', + metric: 'sum__SP_POP_TOTL', + showTrendLine: true, + startYAxisAtZero: true, + timeGrainSqla: 'P1Y', + vizType: 'big_number', + yAxisFormat: '.3s', +}; + +/** + * Add null values to trendline data + * @param data input data + */ +function withNulls(origData: object[], nullPosition = 3) { + const data = [...origData]; + data[nullPosition] = { + ...data[nullPosition], + sum__SP_POP_TOTL: null, + }; + return data; +} + +export default { + title: 'Legacy Chart Plugins/legacy-preset-big-number/BigNumber', +}; + +export const basicWithTrendline = () => ( + +); + +export const weeklyTimeGranularity = () => ( + +); + +export const nullInTheMiddle = () => ( + +); + +export const fixedRange = () => ( + +); + +export const noFixedRange = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/data.ts new file mode 100644 index 000000000000..4d229efdd368 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumber/data.ts @@ -0,0 +1,78 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys */ +export default [ + { + __timestamp: 1388534400000.0, + sum__SP_POP_TOTL: 7237260256.0, + }, + { + __timestamp: 1356998400000.0, + sum__SP_POP_TOTL: 7151135481.0, + }, + { + __timestamp: 1325376000000.0, + sum__SP_POP_TOTL: 7066007165.0, + }, + { + __timestamp: 1293840000000.0, + sum__SP_POP_TOTL: 6984252419.0, + }, + { + __timestamp: 1262304000000.0, + sum__SP_POP_TOTL: 6901110512.0, + }, + { + __timestamp: 1230768000000.0, + sum__SP_POP_TOTL: 6818457192.0, + }, + { + __timestamp: 1199145600000.0, + sum__SP_POP_TOTL: 6735914031.0, + }, + { + __timestamp: 1167609600000.0, + sum__SP_POP_TOTL: 6653571302.0, + }, + { + __timestamp: 1136073600000.0, + sum__SP_POP_TOTL: 6572596462.0, + }, + { + __timestamp: 1104537600000.0, + sum__SP_POP_TOTL: 6491857539.0, + }, + { + __timestamp: 1072915200000.0, + sum__SP_POP_TOTL: 6411615629.0, + }, + { + __timestamp: 1041379200000.0, + sum__SP_POP_TOTL: 6331766837.0, + }, + { + __timestamp: 1009843200000.0, + sum__SP_POP_TOTL: 6252469127.0, + }, + { + __timestamp: 978307200000.0, + sum__SP_POP_TOTL: 617333941.0, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/BigNumberTotalStories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/BigNumberTotalStories.tsx new file mode 100644 index 000000000000..f99d4f2e0395 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/BigNumberTotalStories.tsx @@ -0,0 +1,60 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import { BigNumberTotalChartPlugin } from '@superset-ui/legacy-preset-chart-big-number'; +import data from './data'; + +new BigNumberTotalChartPlugin() + .configure({ key: 'big-number-total' }) + .register(); + +export default { + title: 'Legacy Chart Plugins/legacy-preset-big-number/BigNumberTotal', +}; + +export const totalBasic = () => ( + +); + +export const totalNoData = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/data.ts new file mode 100644 index 000000000000..e0066bfd25b0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-big-number/BigNumberTotal/data.ts @@ -0,0 +1,24 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default [ + { + sum__num: 32546308, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/Stories.tsx new file mode 100644 index 000000000000..86d2306125ff --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/Stories.tsx @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { AreaChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3'; + +new AreaChartPlugin().configure({ key: 'area' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-preset-chart-nvd3/Area', +}; + +export { stacked } from './stories/stacked'; +export { + stackedWithYAxisBounds, + stackedWithYAxisBoundsMinOnly, +} from './stories/stackedWithBounds'; +export { expanded } from './stories/expanded'; +export { controlsShown } from './stories/controlsShown'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/data.ts new file mode 100644 index 000000000000..9372f798b389 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/data.ts @@ -0,0 +1,1147 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys */ +export default [ + { + key: ['East Asia & Pacific'], + values: [ + { + x: -315619200000.0, + y: 1031863394.0, + }, + { + x: -283996800000.0, + y: 1034767718.0, + }, + { + x: -252460800000.0, + y: 1048537618.0, + }, + { + x: -220924800000.0, + y: 1073600747.0, + }, + { + x: -189388800000.0, + y: 1098305025.0, + }, + { + x: -157766400000.0, + y: 1124077872.0, + }, + { + x: -126230400000.0, + y: 1153296196.0, + }, + { + x: -94694400000.0, + y: 1181582226.0, + }, + { + x: -63158400000.0, + y: 1210302481.0, + }, + { + x: -31536000000.0, + y: 1242569208.0, + }, + { + x: 0.0, + y: 1274888198.0, + }, + { + x: 31536000000.0, + y: 1308215425.0, + }, + { + x: 63072000000.0, + y: 1339781984.0, + }, + { + x: 94694400000.0, + y: 1369814002.0, + }, + { + x: 126230400000.0, + y: 1399636343.0, + }, + { + x: 157766400000.0, + y: 1426562368.0, + }, + { + x: 189302400000.0, + y: 1450503110.0, + }, + { + x: 220924800000.0, + y: 1473091499.0, + }, + { + x: 252460800000.0, + y: 1495573053.0, + }, + { + x: 283996800000.0, + y: 1518439245.0, + }, + { + x: 315532800000.0, + y: 1540823440.0, + }, + { + x: 347155200000.0, + y: 1563926423.0, + }, + { + x: 378691200000.0, + y: 1589245249.0, + }, + { + x: 410227200000.0, + y: 1614538807.0, + }, + { + x: 441763200000.0, + y: 1638618355.0, + }, + { + x: 473385600000.0, + y: 1663385538.0, + }, + { + x: 504921600000.0, + y: 1689894237.0, + }, + { + x: 536457600000.0, + y: 1717904169.0, + }, + { + x: 567993600000.0, + y: 1746140324.0, + }, + { + x: 599616000000.0, + y: 1773743982.0, + }, + { + x: 631152000000.0, + y: 1800365903.0, + }, + { + x: 662688000000.0, + y: 1825955698.0, + }, + { + x: 694224000000.0, + y: 1849800435.0, + }, + { + x: 725846400000.0, + y: 1872809684.0, + }, + { + x: 757382400000.0, + y: 1895892806.0, + }, + { + x: 788918400000.0, + y: 1918680993.0, + }, + { + x: 820454400000.0, + y: 1941199188.0, + }, + { + x: 852076800000.0, + y: 1963227851.0, + }, + { + x: 883612800000.0, + y: 1984508261.0, + }, + { + x: 915148800000.0, + y: 2004495631.0, + }, + { + x: 946684800000.0, + y: 2023534787.0, + }, + { + x: 978307200000.0, + y: 2041915058.0, + }, + { + x: 1009843200000.0, + y: 2059375225.0, + }, + { + x: 1041379200000.0, + y: 2076029083.0, + }, + { + x: 1072915200000.0, + y: 2092086887.0, + }, + { + x: 1104537600000.0, + y: 2107802765.0, + }, + { + x: 1136073600000.0, + y: 2123180222.0, + }, + { + x: 1167609600000.0, + y: 2137834848.0, + }, + { + x: 1199145600000.0, + y: 2152663168.0, + }, + { + x: 1230768000000.0, + y: 2167098541.0, + }, + { + x: 1262304000000.0, + y: 2181465325.0, + }, + { + x: 1293840000000.0, + y: 2195899073.0, + }, + { + x: 1325376000000.0, + y: 2210627396.0, + }, + { + x: 1356998400000.0, + y: 2225523116.0, + }, + { + x: 1388534400000.0, + y: 2240687901.0, + }, + ], + }, + { + key: ['South Asia'], + values: [ + { + x: -315619200000.0, + y: 572036107.0, + }, + { + x: -283996800000.0, + y: 584143236.0, + }, + { + x: -252460800000.0, + y: 596701125.0, + }, + { + x: -220924800000.0, + y: 609571502.0, + }, + { + x: -189388800000.0, + y: 623073110.0, + }, + { + x: -157766400000.0, + y: 636963781.0, + }, + { + x: -126230400000.0, + y: 651325994.0, + }, + { + x: -94694400000.0, + y: 666134328.0, + }, + { + x: -63158400000.0, + y: 681405837.0, + }, + { + x: -31536000000.0, + y: 697060567.0, + }, + { + x: 0.0, + y: 713115397.0, + }, + { + x: 31536000000.0, + y: 729469562.0, + }, + { + x: 63072000000.0, + y: 746222138.0, + }, + { + x: 94694400000.0, + y: 763491289.0, + }, + { + x: 126230400000.0, + y: 781254784.0, + }, + { + x: 157766400000.0, + y: 799620311.0, + }, + { + x: 189302400000.0, + y: 818590962.0, + }, + { + x: 220924800000.0, + y: 838141522.0, + }, + { + x: 252460800000.0, + y: 858266916.0, + }, + { + x: 283996800000.0, + y: 878939779.0, + }, + { + x: 315532800000.0, + y: 900085240.0, + }, + { + x: 347155200000.0, + y: 921521635.0, + }, + { + x: 378691200000.0, + y: 943662470.0, + }, + { + x: 410227200000.0, + y: 966101576.0, + }, + { + x: 441763200000.0, + y: 988898603.0, + }, + { + x: 473385600000.0, + y: 1012110768.0, + }, + { + x: 504921600000.0, + y: 1035703508.0, + }, + { + x: 536457600000.0, + y: 1059570231.0, + }, + { + x: 567993600000.0, + y: 1083711645.0, + }, + { + x: 599616000000.0, + y: 1108132042.0, + }, + { + x: 631152000000.0, + y: 1132775493.0, + }, + { + x: 662688000000.0, + y: 1157716007.0, + }, + { + x: 694224000000.0, + y: 1182766320.0, + }, + { + x: 725846400000.0, + y: 1208041749.0, + }, + { + x: 757382400000.0, + y: 1233462879.0, + }, + { + x: 788918400000.0, + y: 1258964893.0, + }, + { + x: 820454400000.0, + y: 1284467586.0, + }, + { + x: 852076800000.0, + y: 1310020410.0, + }, + { + x: 883612800000.0, + y: 1335551944.0, + }, + { + x: 915148800000.0, + y: 1361114276.0, + }, + { + x: 946684800000.0, + y: 1386400954.0, + }, + { + x: 978307200000.0, + y: 1411281514.0, + }, + { + x: 1009843200000.0, + y: 1436503016.0, + }, + { + x: 1041379200000.0, + y: 1461682019.0, + }, + { + x: 1072915200000.0, + y: 1486598228.0, + }, + { + x: 1104537600000.0, + y: 1511119581.0, + }, + { + x: 1136073600000.0, + y: 1535264779.0, + }, + { + x: 1167609600000.0, + y: 1559023139.0, + }, + { + x: 1199145600000.0, + y: 1582535507.0, + }, + { + x: 1230768000000.0, + y: 1605893501.0, + }, + { + x: 1262304000000.0, + y: 1629189137.0, + }, + { + x: 1293840000000.0, + y: 1652449539.0, + }, + { + x: 1325376000000.0, + y: 1674883124.0, + }, + { + x: 1356998400000.0, + y: 1697955143.0, + }, + { + x: 1388534400000.0, + y: 1720976995.0, + }, + ], + }, + { + key: ['Europe & Central Asia'], + values: [ + { + x: -315619200000.0, + y: 660881033.0, + }, + { + x: -283996800000.0, + y: 668526708.0, + }, + { + x: -252460800000.0, + y: 676418331.0, + }, + { + x: -220924800000.0, + y: 684369825.0, + }, + { + x: -189388800000.0, + y: 692233988.0, + }, + { + x: -157766400000.0, + y: 699849949.0, + }, + { + x: -126230400000.0, + y: 706459925.0, + }, + { + x: -94694400000.0, + y: 712871897.0, + }, + { + x: -63158400000.0, + y: 719034272.0, + }, + { + x: -31536000000.0, + y: 725099571.0, + }, + { + x: 0.0, + y: 730528170.0, + }, + { + x: 31536000000.0, + y: 736135494.0, + }, + { + x: 63072000000.0, + y: 742450677.0, + }, + { + x: 94694400000.0, + y: 748475832.0, + }, + { + x: 126230400000.0, + y: 754297089.0, + }, + { + x: 157766400000.0, + y: 759928297.0, + }, + { + x: 189302400000.0, + y: 765417984.0, + }, + { + x: 220924800000.0, + y: 770663924.0, + }, + { + x: 252460800000.0, + y: 775939424.0, + }, + { + x: 283996800000.0, + y: 781099684.0, + }, + { + x: 315532800000.0, + y: 786407417.0, + }, + { + x: 347155200000.0, + y: 791686169.0, + }, + { + x: 378691200000.0, + y: 796410256.0, + }, + { + x: 410227200000.0, + y: 800966617.0, + }, + { + x: 441763200000.0, + y: 805742116.0, + }, + { + x: 473385600000.0, + y: 810633713.0, + }, + { + x: 504921600000.0, + y: 815649358.0, + }, + { + x: 536457600000.0, + y: 820716895.0, + }, + { + x: 567993600000.0, + y: 825834599.0, + }, + { + x: 599616000000.0, + y: 830998751.0, + }, + { + x: 631152000000.0, + y: 842907397.0, + }, + { + x: 662688000000.0, + y: 846199873.0, + }, + { + x: 694224000000.0, + y: 849633122.0, + }, + { + x: 725846400000.0, + y: 852664422.0, + }, + { + x: 757382400000.0, + y: 854549337.0, + }, + { + x: 788918400000.0, + y: 856102195.0, + }, + { + x: 820454400000.0, + y: 857333424.0, + }, + { + x: 852076800000.0, + y: 858726155.0, + }, + { + x: 883612800000.0, + y: 859806214.0, + }, + { + x: 915148800000.0, + y: 860985079.0, + }, + { + x: 946684800000.0, + y: 862073997.0, + }, + { + x: 978307200000.0, + y: 863554388.0, + }, + { + x: 1009843200000.0, + y: 865246750.0, + }, + { + x: 1041379200000.0, + y: 867562844.0, + }, + { + x: 1072915200000.0, + y: 870213016.0, + }, + { + x: 1104537600000.0, + y: 872968147.0, + }, + { + x: 1136073600000.0, + y: 875755753.0, + }, + { + x: 1167609600000.0, + y: 878819656.0, + }, + { + x: 1199145600000.0, + y: 882358214.0, + }, + { + x: 1230768000000.0, + y: 886063249.0, + }, + { + x: 1262304000000.0, + y: 889630390.0, + }, + { + x: 1293840000000.0, + y: 893094109.0, + }, + { + x: 1325376000000.0, + y: 894962840.0, + }, + { + x: 1356998400000.0, + y: 898837065.0, + }, + { + x: 1388534400000.0, + y: 903095786.0, + }, + ], + }, + { + key: ['Sub-Saharan Africa'], + values: [ + { + x: -315619200000.0, + y: 228268752.0, + }, + { + x: -283996800000.0, + y: 233759990.0, + }, + { + x: -252460800000.0, + y: 239403621.0, + }, + { + x: -220924800000.0, + y: 245217050.0, + }, + { + x: -189388800000.0, + y: 251215851.0, + }, + { + x: -157766400000.0, + y: 257414930.0, + }, + { + x: -126230400000.0, + y: 263830697.0, + }, + { + x: -94694400000.0, + y: 270477558.0, + }, + { + x: -63158400000.0, + y: 277365472.0, + }, + { + x: -31536000000.0, + y: 284502453.0, + }, + { + x: 0.0, + y: 291897883.0, + }, + { + x: 31536000000.0, + y: 299578724.0, + }, + { + x: 63072000000.0, + y: 307524082.0, + }, + { + x: 94694400000.0, + y: 315758889.0, + }, + { + x: 126230400000.0, + y: 324316627.0, + }, + { + x: 157766400000.0, + y: 333222446.0, + }, + { + x: 189302400000.0, + y: 342489556.0, + }, + { + x: 220924800000.0, + y: 352109622.0, + }, + { + x: 252460800000.0, + y: 362076216.0, + }, + { + x: 283996800000.0, + y: 372390972.0, + }, + { + x: 315532800000.0, + y: 383043891.0, + }, + { + x: 347155200000.0, + y: 394021126.0, + }, + { + x: 378691200000.0, + y: 405328909.0, + }, + { + x: 410227200000.0, + y: 416982682.0, + }, + { + x: 441763200000.0, + y: 429008541.0, + }, + { + x: 473385600000.0, + y: 441414277.0, + }, + { + x: 504921600000.0, + y: 454197298.0, + }, + { + x: 536457600000.0, + y: 467337821.0, + }, + { + x: 567993600000.0, + y: 480809661.0, + }, + { + x: 599616000000.0, + y: 494580339.0, + }, + { + x: 631152000000.0, + y: 508616039.0, + }, + { + x: 662688000000.0, + y: 523007873.0, + }, + { + x: 694224000000.0, + y: 537759561.0, + }, + { + x: 725846400000.0, + y: 552842678.0, + }, + { + x: 757382400000.0, + y: 568228356.0, + }, + { + x: 788918400000.0, + y: 583892679.0, + }, + { + x: 820454400000.0, + y: 599858645.0, + }, + { + x: 852076800000.0, + y: 616161312.0, + }, + { + x: 883612800000.0, + y: 632857149.0, + }, + { + x: 915148800000.0, + y: 650030484.0, + }, + { + x: 946684800000.0, + y: 667742098.0, + }, + { + x: 978307200000.0, + y: 685795280.0, + }, + { + x: 1009843200000.0, + y: 704102354.0, + }, + { + x: 1041379200000.0, + y: 722925207.0, + }, + { + x: 1072915200000.0, + y: 742396040.0, + }, + { + x: 1104537600000.0, + y: 762555740.0, + }, + { + x: 1136073600000.0, + y: 783427658.0, + }, + { + x: 1167609600000.0, + y: 805010175.0, + }, + { + x: 1199145600000.0, + y: 827287676.0, + }, + { + x: 1230768000000.0, + y: 850225069.0, + }, + { + x: 1262304000000.0, + y: 873800152.0, + }, + { + x: 1293840000000.0, + y: 898002051.0, + }, + { + x: 1325376000000.0, + y: 922840423.0, + }, + { + x: 1356998400000.0, + y: 948287652.0, + }, + { + x: 1388534400000.0, + y: 974315323.0, + }, + ], + }, + { + key: ['Latin America & Caribbean'], + values: [ + { + x: -315619200000.0, + y: 220564224.0, + }, + { + x: -283996800000.0, + y: 226764342.0, + }, + { + x: -252460800000.0, + y: 233183206.0, + }, + { + x: -220924800000.0, + y: 239771182.0, + }, + { + x: -189388800000.0, + y: 246458356.0, + }, + { + x: -157766400000.0, + y: 253195267.0, + }, + { + x: -126230400000.0, + y: 259965218.0, + }, + { + x: -94694400000.0, + y: 266776414.0, + }, + { + x: -63158400000.0, + y: 273654630.0, + }, + { + x: -31536000000.0, + y: 280641049.0, + }, + { + x: 0.0, + y: 287763515.0, + }, + { + x: 31536000000.0, + y: 295026304.0, + }, + { + x: 63072000000.0, + y: 302408883.0, + }, + { + x: 94694400000.0, + y: 309902169.0, + }, + { + x: 126230400000.0, + y: 317479496.0, + }, + { + x: 157766400000.0, + y: 325120067.0, + }, + { + x: 189302400000.0, + y: 332817916.0, + }, + { + x: 220924800000.0, + y: 340569396.0, + }, + { + x: 252460800000.0, + y: 348391181.0, + }, + { + x: 283996800000.0, + y: 356288443.0, + }, + { + x: 315532800000.0, + y: 364270961.0, + }, + { + x: 347155200000.0, + y: 372330102.0, + }, + { + x: 378691200000.0, + y: 380466998.0, + }, + { + x: 410227200000.0, + y: 388654061.0, + }, + { + x: 441763200000.0, + y: 396869481.0, + }, + { + x: 473385600000.0, + y: 405083115.0, + }, + { + x: 504921600000.0, + y: 413292690.0, + }, + { + x: 536457600000.0, + y: 421490233.0, + }, + { + x: 567993600000.0, + y: 429668211.0, + }, + { + x: 599616000000.0, + y: 437843614.0, + }, + { + x: 631152000000.0, + y: 445998222.0, + }, + { + x: 662688000000.0, + y: 454117634.0, + }, + { + x: 694224000000.0, + y: 462201058.0, + }, + { + x: 725846400000.0, + y: 470263697.0, + }, + { + x: 757382400000.0, + y: 478310786.0, + }, + { + x: 788918400000.0, + y: 486343677.0, + }, + { + x: 820454400000.0, + y: 494384205.0, + }, + { + x: 852076800000.0, + y: 502390020.0, + }, + { + x: 883612800000.0, + y: 510356845.0, + }, + { + x: 915148800000.0, + y: 518188225.0, + }, + { + x: 946684800000.0, + y: 525886558.0, + }, + { + x: 978307200000.0, + y: 533449671.0, + }, + { + x: 1009843200000.0, + y: 540884684.0, + }, + { + x: 1041379200000.0, + y: 548225528.0, + }, + { + x: 1072915200000.0, + y: 555515431.0, + }, + { + x: 1104537600000.0, + y: 562783235.0, + }, + { + x: 1136073600000.0, + y: 570029991.0, + }, + { + x: 1167609600000.0, + y: 577248307.0, + }, + { + x: 1199145600000.0, + y: 584435842.0, + }, + { + x: 1230768000000.0, + y: 591577623.0, + }, + { + x: 1262304000000.0, + y: 598662941.0, + }, + { + x: 1293840000000.0, + y: 605674766.0, + }, + { + x: 1325376000000.0, + y: 612617659.0, + }, + { + x: 1356998400000.0, + y: 619487273.0, + }, + { + x: 1388534400000.0, + y: 626270167.0, + }, + ], + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/controlsShown.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/controlsShown.tsx new file mode 100644 index 000000000000..fac198e826e8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/controlsShown.tsx @@ -0,0 +1,54 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const controlsShown = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/expanded.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/expanded.tsx new file mode 100644 index 000000000000..8f71fb5289f7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/expanded.tsx @@ -0,0 +1,54 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const expanded = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stacked.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stacked.tsx new file mode 100644 index 000000000000..4c2fe6686c54 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stacked.tsx @@ -0,0 +1,55 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const stacked = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stackedWithBounds.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stackedWithBounds.tsx new file mode 100644 index 000000000000..d3dccc63d4f6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Area/stories/stackedWithBounds.tsx @@ -0,0 +1,93 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const stackedWithYAxisBounds = () => ( + +); + +stackedWithYAxisBounds.story = { + name: 'Stacked with yAxisBounds', +}; + +export const stackedWithYAxisBoundsMinOnly = () => ( + +); + +stackedWithYAxisBoundsMinOnly.story = { + name: 'Stacked with yAxisBounds min only', +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/Stories.tsx new file mode 100644 index 000000000000..c0f65a185f72 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/Stories.tsx @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { BarChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3'; + +new BarChartPlugin().configure({ key: 'bar' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-preset-chart-nvd3/Bar', +}; + +export { basic } from './stories/basic'; +export { barWithValues } from './stories/barWithValues'; +export { barWithPositiveAndNegativeValues } from './stories/barWithPositiveAndNegativeValues'; +export { stackedBarWithValues } from './stories/stackedBarWithValues'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/data.ts new file mode 100644 index 000000000000..ef8338b65949 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/data.ts @@ -0,0 +1,247 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys */ +export default [ + { + key: ['East Asia & Pacific'], + values: [ + { + x: -315619200000.0, + y: 1031863394.0, + }, + { + x: -283996800000.0, + y: 1034767718.0, + }, + { + x: -252460800000.0, + y: 1048537618.0, + }, + { + x: -220924800000.0, + y: 1073600747.0, + }, + { + x: -189388800000.0, + y: 1098305025.0, + }, + { + x: -157766400000.0, + y: 1124077872.0, + }, + { + x: -126230400000.0, + y: 1153296196.0, + }, + { + x: -94694400000.0, + y: 1181582226.0, + }, + { + x: -63158400000.0, + y: 1210302481.0, + }, + { + x: -31536000000.0, + y: 1242569208.0, + }, + ], + }, + { + key: ['South Asia'], + values: [ + { + x: -315619200000.0, + y: 572036107.0, + }, + { + x: -283996800000.0, + y: 584143236.0, + }, + { + x: -252460800000.0, + y: 596701125.0, + }, + { + x: -220924800000.0, + y: 609571502.0, + }, + { + x: -189388800000.0, + y: 623073110.0, + }, + { + x: -157766400000.0, + y: 636963781.0, + }, + { + x: -126230400000.0, + y: 651325994.0, + }, + { + x: -94694400000.0, + y: 666134328.0, + }, + { + x: -63158400000.0, + y: 681405837.0, + }, + { + x: -31536000000.0, + y: 697060567.0, + }, + ], + }, + { + key: ['Europe & Central Asia'], + values: [ + { + x: -315619200000.0, + y: 660881033.0, + }, + { + x: -283996800000.0, + y: 668526708.0, + }, + { + x: -252460800000.0, + y: 676418331.0, + }, + { + x: -220924800000.0, + y: 684369825.0, + }, + { + x: -189388800000.0, + y: 692233988.0, + }, + { + x: -157766400000.0, + y: 699849949.0, + }, + { + x: -126230400000.0, + y: 706459925.0, + }, + { + x: -94694400000.0, + y: 712871897.0, + }, + { + x: -63158400000.0, + y: 719034272.0, + }, + { + x: -31536000000.0, + y: 725099571.0, + }, + ], + }, + { + key: ['Sub-Saharan Africa'], + values: [ + { + x: -315619200000.0, + y: 228268752.0, + }, + { + x: -283996800000.0, + y: 233759990.0, + }, + { + x: -252460800000.0, + y: 239403621.0, + }, + { + x: -220924800000.0, + y: 245217050.0, + }, + { + x: -189388800000.0, + y: 251215851.0, + }, + { + x: -157766400000.0, + y: 257414930.0, + }, + { + x: -126230400000.0, + y: 263830697.0, + }, + { + x: -94694400000.0, + y: 270477558.0, + }, + { + x: -63158400000.0, + y: 277365472.0, + }, + { + x: -31536000000.0, + y: 284502453.0, + }, + ], + }, + { + key: ['Latin America & Caribbean'], + values: [ + { + x: -315619200000.0, + y: 220564224.0, + }, + { + x: -283996800000.0, + y: 226764342.0, + }, + { + x: -252460800000.0, + y: 233183206.0, + }, + { + x: -220924800000.0, + y: 239771182.0, + }, + { + x: -189388800000.0, + y: 246458356.0, + }, + { + x: -157766400000.0, + y: 253195267.0, + }, + { + x: -126230400000.0, + y: 259965218.0, + }, + { + x: -94694400000.0, + y: 266776414.0, + }, + { + x: -63158400000.0, + y: 273654630.0, + }, + { + x: -31536000000.0, + y: 280641049.0, + }, + ], + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithPositiveAndNegativeValues.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithPositiveAndNegativeValues.tsx new file mode 100644 index 000000000000..513278ab77db --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithPositiveAndNegativeValues.tsx @@ -0,0 +1,65 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const barWithPositiveAndNegativeValues = () => ( + ({ + ...group, + values: group.values.map(pair => ({ + ...pair, + y: (i % 2 === 0 ? 1 : -1) * pair.y, + })), + })), + }, + ]} + formData={{ + bottomMargin: 'auto', + colorScheme: 'd3Category10', + contribution: false, + groupby: ['region'], + lineInterpolation: 'linear', + metrics: ['sum__SP_POP_TOTL'], + richTooltip: true, + showBarValue: true, + showBrush: 'auto', + showControls: false, + showLegend: true, + stackedStyle: 'stack', + vizType: 'bar', + xAxisFormat: '%Y', + xAxisLabel: '', + xAxisShowminmax: false, + xTicksLayout: 'auto', + yAxisBounds: [null, null], + yAxisFormat: '.3s', + yLogScale: false, + }} + /> +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithValues.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithValues.tsx new file mode 100644 index 000000000000..4808a2cb6394 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/barWithValues.tsx @@ -0,0 +1,55 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const barWithValues = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/basic.tsx new file mode 100644 index 000000000000..f52b3f4d8834 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/basic.tsx @@ -0,0 +1,55 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/stackedBarWithValues.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/stackedBarWithValues.tsx new file mode 100644 index 000000000000..3a52dc6a1d1d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bar/stories/stackedBarWithValues.tsx @@ -0,0 +1,56 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const stackedBarWithValues = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/Stories.tsx new file mode 100644 index 000000000000..d268d72db89e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/Stories.tsx @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { BoxPlotChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3'; + +new BoxPlotChartPlugin().configure({ key: 'box-plot' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-preset-chart-nvd3/BoxPlot', +}; + +export { basic } from './stories/basic'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/data.ts new file mode 100644 index 000000000000..001ed3e34253 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/data.ts @@ -0,0 +1,77 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { + label: 'East Asia & Pacific', + values: { + Q1: 1384725172.5, + Q2: 1717904169.0, + Q3: 2032724922.5, + whisker_high: 2240687901.0, + whisker_low: 1031863394.0, + outliers: [], + }, + }, + { + label: 'Europe & Central Asia', + values: { + Q1: 751386460.5, + Q2: 820716895.0, + Q3: 862814192.5, + whisker_high: 903095786.0, + whisker_low: 660881033.0, + outliers: [], + }, + }, + { + label: 'Latin America & Caribbean', + values: { + Q1: 313690832.5, + Q2: 421490233.0, + Q3: 529668114.5, + whisker_high: 626270167.0, + whisker_low: 220564224.0, + outliers: [], + }, + }, + { + label: 'South Asia', + values: { + Q1: 772373036.5, + Q2: 1059570231.0, + Q3: 1398841234.0, + whisker_high: 1720976995.0, + whisker_low: 572036107.0, + outliers: [], + }, + }, + { + label: 'Sub-Saharan Africa', + values: { + Q1: 320037758.0, + Q2: 467337821.0, + Q3: 676768689.0, + whisker_high: 974315323.0, + whisker_low: 228268752.0, + outliers: [], + }, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/stories/basic.tsx new file mode 100644 index 000000000000..40130a4a2aae --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/BoxPlot/stories/basic.tsx @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/Stories.tsx new file mode 100644 index 000000000000..7fe96241e2d9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/Stories.tsx @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { BubbleChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3'; + +new BubbleChartPlugin().configure({ key: 'bubble' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-preset-chart-nvd3/Bubble', +}; + +export { basic } from './stories/basic'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/data.ts new file mode 100644 index 000000000000..167f36303952 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/data.ts @@ -0,0 +1,357 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { + key: 'East Asia & Pacific', + values: [ + { + country_name: 'China', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 1344130000.0, + sum__SP_RUR_TOTL_ZS: 49.427, + sum__SP_DYN_LE00_IN: 75.042, + x: 49.427, + y: 75.042, + size: 1344130000.0, + shape: 'circle', + group: 'East Asia & Pacific', + }, + { + country_name: 'Indonesia', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 244808254.0, + sum__SP_RUR_TOTL_ZS: 49.288, + sum__SP_DYN_LE00_IN: 70.3915609756, + x: 49.288, + y: 70.3915609756, + size: 244808254.0, + shape: 'circle', + group: 'East Asia & Pacific', + }, + { + country_name: 'Japan', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 127817277.0, + sum__SP_RUR_TOTL_ZS: 8.752, + sum__SP_DYN_LE00_IN: 82.5912195122, + x: 8.752, + y: 82.5912195122, + size: 127817277.0, + shape: 'circle', + group: 'East Asia & Pacific', + }, + { + country_name: 'Philippines', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 94501233.0, + sum__SP_RUR_TOTL_ZS: 54.983, + sum__SP_DYN_LE00_IN: 68.3914878049, + x: 54.983, + y: 68.3914878049, + size: 94501233.0, + shape: 'circle', + group: 'East Asia & Pacific', + }, + { + country_name: 'Vietnam', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 87840000.0, + sum__SP_RUR_TOTL_ZS: 68.971, + sum__SP_DYN_LE00_IN: 75.457902439, + x: 68.971, + y: 75.457902439, + size: 87840000.0, + shape: 'circle', + group: 'East Asia & Pacific', + }, + { + country_name: 'Thailand', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 66902958.0, + sum__SP_RUR_TOTL_ZS: 54.606, + sum__SP_DYN_LE00_IN: 74.008902439, + x: 54.606, + y: 74.008902439, + size: 66902958.0, + shape: 'circle', + group: 'East Asia & Pacific', + }, + { + country_name: 'Myanmar', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 52125411.0, + sum__SP_RUR_TOTL_ZS: 68.065, + sum__SP_DYN_LE00_IN: 64.7612439024, + x: 68.065, + y: 64.7612439024, + size: 52125411.0, + shape: 'circle', + group: 'East Asia & Pacific', + }, + ], + }, + { + key: 'South Asia', + values: [ + { + country_name: 'India', + region: 'South Asia', + sum__SP_POP_TOTL: 1247446011.0, + sum__SP_RUR_TOTL_ZS: 68.724, + sum__SP_DYN_LE00_IN: 65.9584878049, + x: 68.724, + y: 65.9584878049, + size: 1247446011.0, + shape: 'circle', + group: 'South Asia', + }, + { + country_name: 'Pakistan', + region: 'South Asia', + sum__SP_POP_TOTL: 173669648.0, + sum__SP_RUR_TOTL_ZS: 62.993, + sum__SP_DYN_LE00_IN: 66.2838780488, + x: 62.993, + y: 66.2838780488, + size: 173669648.0, + shape: 'circle', + group: 'South Asia', + }, + { + country_name: 'Bangladesh', + region: 'South Asia', + sum__SP_POP_TOTL: 153405612.0, + sum__SP_RUR_TOTL_ZS: 68.775, + sum__SP_DYN_LE00_IN: 69.891804878, + x: 68.775, + y: 69.891804878, + size: 153405612.0, + shape: 'circle', + group: 'South Asia', + }, + ], + }, + { + key: 'North America', + values: [ + { + country_name: 'United States', + region: 'North America', + sum__SP_POP_TOTL: 311721632.0, + sum__SP_RUR_TOTL_ZS: 19.06, + sum__SP_DYN_LE00_IN: 78.6414634146, + x: 19.06, + y: 78.6414634146, + size: 311721632.0, + shape: 'circle', + group: 'North America', + }, + ], + }, + { + key: 'Latin America & Caribbean', + values: [ + { + country_name: 'Brazil', + region: 'Latin America & Caribbean', + sum__SP_POP_TOTL: 200517584.0, + sum__SP_RUR_TOTL_ZS: 15.377, + sum__SP_DYN_LE00_IN: 73.3473658537, + x: 15.377, + y: 73.3473658537, + size: 200517584.0, + shape: 'circle', + group: 'Latin America & Caribbean', + }, + { + country_name: 'Mexico', + region: 'Latin America & Caribbean', + sum__SP_POP_TOTL: 120365271.0, + sum__SP_RUR_TOTL_ZS: 21.882, + sum__SP_DYN_LE00_IN: 76.9141707317, + x: 21.882, + y: 76.9141707317, + size: 120365271.0, + shape: 'circle', + group: 'Latin America & Caribbean', + }, + ], + }, + { + key: 'Sub-Saharan Africa', + values: [ + { + country_name: 'Nigeria', + region: 'Sub-Saharan Africa', + sum__SP_POP_TOTL: 163770669.0, + sum__SP_RUR_TOTL_ZS: 55.638, + sum__SP_DYN_LE00_IN: 51.7102439024, + x: 55.638, + y: 51.7102439024, + size: 163770669.0, + shape: 'circle', + group: 'Sub-Saharan Africa', + }, + { + country_name: 'Ethiopia', + region: 'Sub-Saharan Africa', + sum__SP_POP_TOTL: 89858696.0, + sum__SP_RUR_TOTL_ZS: 82.265, + sum__SP_DYN_LE00_IN: 62.2528536585, + x: 82.265, + y: 62.2528536585, + size: 89858696.0, + shape: 'circle', + group: 'Sub-Saharan Africa', + }, + { + country_name: 'Congo, Dem. Rep.', + region: 'Sub-Saharan Africa', + sum__SP_POP_TOTL: 68087376.0, + sum__SP_RUR_TOTL_ZS: 59.558, + sum__SP_DYN_LE00_IN: 49.3007073171, + x: 59.558, + y: 49.3007073171, + size: 68087376.0, + shape: 'circle', + group: 'Sub-Saharan Africa', + }, + { + country_name: 'South Africa', + region: 'Sub-Saharan Africa', + sum__SP_POP_TOTL: 51553479.0, + sum__SP_RUR_TOTL_ZS: 37.254, + sum__SP_DYN_LE00_IN: 55.2956585366, + x: 37.254, + y: 55.2956585366, + size: 51553479.0, + shape: 'circle', + group: 'Sub-Saharan Africa', + }, + ], + }, + { + key: 'Europe & Central Asia', + values: [ + { + country_name: 'Russian Federation', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 142960868.0, + sum__SP_RUR_TOTL_ZS: 26.268, + sum__SP_DYN_LE00_IN: 69.6585365854, + x: 26.268, + y: 69.6585365854, + size: 142960868.0, + shape: 'circle', + group: 'Europe & Central Asia', + }, + { + country_name: 'Germany', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 81797673.0, + sum__SP_RUR_TOTL_ZS: 25.512, + sum__SP_DYN_LE00_IN: 80.7414634146, + x: 25.512, + y: 80.7414634146, + size: 81797673.0, + shape: 'circle', + group: 'Europe & Central Asia', + }, + { + country_name: 'Turkey', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 73199372.0, + sum__SP_RUR_TOTL_ZS: 28.718, + sum__SP_DYN_LE00_IN: 74.5404878049, + x: 28.718, + y: 74.5404878049, + size: 73199372.0, + shape: 'circle', + group: 'Europe & Central Asia', + }, + { + country_name: 'France', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 65342776.0, + sum__SP_RUR_TOTL_ZS: 21.416, + sum__SP_DYN_LE00_IN: 82.1146341463, + x: 21.416, + y: 82.1146341463, + size: 65342776.0, + shape: 'circle', + group: 'Europe & Central Asia', + }, + { + country_name: 'United Kingdom', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 63258918.0, + sum__SP_RUR_TOTL_ZS: 18.43, + sum__SP_DYN_LE00_IN: 80.9512195122, + x: 18.43, + y: 80.9512195122, + size: 63258918.0, + shape: 'circle', + group: 'Europe & Central Asia', + }, + { + country_name: 'Italy', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 59379449.0, + sum__SP_RUR_TOTL_ZS: 31.556, + sum__SP_DYN_LE00_IN: 82.187804878, + x: 31.556, + y: 82.187804878, + size: 59379449.0, + shape: 'circle', + group: 'Europe & Central Asia', + }, + ], + }, + { + key: 'Middle East & North Africa', + values: [ + { + country_name: 'Egypt, Arab Rep.', + region: 'Middle East & North Africa', + sum__SP_POP_TOTL: 83787634.0, + sum__SP_RUR_TOTL_ZS: 57.0, + sum__SP_DYN_LE00_IN: 70.6785609756, + x: 57.0, + y: 70.6785609756, + size: 83787634.0, + shape: 'circle', + group: 'Middle East & North Africa', + }, + { + country_name: 'Iran, Islamic Rep.', + region: 'Middle East & North Africa', + sum__SP_POP_TOTL: 75184322.0, + sum__SP_RUR_TOTL_ZS: 28.8, + sum__SP_DYN_LE00_IN: 73.4493170732, + x: 28.8, + y: 73.4493170732, + size: 75184322.0, + shape: 'circle', + group: 'Middle East & North Africa', + }, + ], + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/stories/basic.tsx new file mode 100644 index 000000000000..4e05a62673eb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bubble/stories/basic.tsx @@ -0,0 +1,56 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/Stories.tsx new file mode 100644 index 000000000000..acaed121d42e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/Stories.tsx @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { BulletChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3'; + +new BulletChartPlugin().configure({ key: 'bullet' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-preset-chart-nvd3/Bullet', +}; + +export { basic } from './stories/basic'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/data.ts new file mode 100644 index 000000000000..1c4cf5f6ea33 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/data.ts @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default { + measures: [75691], + ranges: [0, 83260.1], + rangeLabels: null, + markers: null, + markerLabels: null, + markerLines: null, + markerLineLabels: null, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/stories/basic.tsx new file mode 100644 index 000000000000..f3ced0b4f0fb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Bullet/stories/basic.tsx @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/Stories.tsx new file mode 100644 index 000000000000..14dbf04a0fd7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/Stories.tsx @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { CompareChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3'; + +new CompareChartPlugin().configure({ key: 'compare' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-preset-chart-nvd3/Compare', +}; + +export { basic } from './stories/basic'; +export { timeFormat } from './stories/timeFormat'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/data.ts new file mode 100644 index 000000000000..5d43d8e4bec2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/data.ts @@ -0,0 +1,927 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { + key: ['Christopher'], + values: [ + { + x: -157766400000.0, + y: 24703, + }, + { + x: -126230400000.0, + y: 27861, + }, + { + x: -94694400000.0, + y: 29436, + }, + { + x: -63158400000.0, + y: 31463, + }, + { + x: -31536000000.0, + y: 35718, + }, + { + x: 0.0, + y: 41758, + }, + { + x: 31536000000.0, + y: 48172, + }, + { + x: 63072000000.0, + y: 52092, + }, + { + x: 94694400000.0, + y: 48217, + }, + { + x: 126230400000.0, + y: 48476, + }, + { + x: 157766400000.0, + y: 46438, + }, + { + x: 189302400000.0, + y: 45086, + }, + { + x: 220924800000.0, + y: 46610, + }, + { + x: 252460800000.0, + y: 47107, + }, + { + x: 283996800000.0, + y: 50514, + }, + { + x: 315532800000.0, + y: 48969, + }, + { + x: 347155200000.0, + y: 50108, + }, + { + x: 378691200000.0, + y: 59055, + }, + { + x: 410227200000.0, + y: 59188, + }, + { + x: 441763200000.0, + y: 59859, + }, + { + x: 473385600000.0, + y: 59516, + }, + { + x: 504921600000.0, + y: 56633, + }, + { + x: 536457600000.0, + y: 54466, + }, + { + x: 567993600000.0, + y: 52996, + }, + { + x: 599616000000.0, + y: 53205, + }, + { + x: 631152000000.0, + y: 52322, + }, + { + x: 662688000000.0, + y: 47109, + }, + { + x: 694224000000.0, + y: 42470, + }, + { + x: 725846400000.0, + y: 38257, + }, + { + x: 757382400000.0, + y: 34823, + }, + { + x: 788918400000.0, + y: 32728, + }, + { + x: 820454400000.0, + y: 30988, + }, + { + x: 852076800000.0, + y: 29179, + }, + { + x: 883612800000.0, + y: 27083, + }, + { + x: 915148800000.0, + y: 25700, + }, + { + x: 946684800000.0, + y: 24959, + }, + { + x: 978307200000.0, + y: 23180, + }, + { + x: 1009843200000.0, + y: 21731, + }, + { + x: 1041379200000.0, + y: 20793, + }, + { + x: 1072915200000.0, + y: 19739, + }, + { + x: 1104537600000.0, + y: 19190, + }, + { + x: 1136073600000.0, + y: 19674, + }, + { + x: 1167609600000.0, + y: 19986, + }, + { + x: 1199145600000.0, + y: 17771, + }, + ], + }, + { + key: ['David'], + values: [ + { + x: -157766400000.0, + y: 67646, + }, + { + x: -126230400000.0, + y: 66207, + }, + { + x: -94694400000.0, + y: 66581, + }, + { + x: -63158400000.0, + y: 63531, + }, + { + x: -31536000000.0, + y: 63502, + }, + { + x: 0.0, + y: 61570, + }, + { + x: 31536000000.0, + y: 52948, + }, + { + x: 63072000000.0, + y: 46218, + }, + { + x: 94694400000.0, + y: 40968, + }, + { + x: 126230400000.0, + y: 41654, + }, + { + x: 157766400000.0, + y: 39019, + }, + { + x: 189302400000.0, + y: 39165, + }, + { + x: 220924800000.0, + y: 40407, + }, + { + x: 252460800000.0, + y: 40533, + }, + { + x: 283996800000.0, + y: 41898, + }, + { + x: 315532800000.0, + y: 41743, + }, + { + x: 347155200000.0, + y: 40486, + }, + { + x: 378691200000.0, + y: 40283, + }, + { + x: 410227200000.0, + y: 39048, + }, + { + x: 441763200000.0, + y: 38346, + }, + { + x: 473385600000.0, + y: 38395, + }, + { + x: 504921600000.0, + y: 37021, + }, + { + x: 536457600000.0, + y: 36672, + }, + { + x: 567993600000.0, + y: 35214, + }, + { + x: 599616000000.0, + y: 35139, + }, + { + x: 631152000000.0, + y: 33661, + }, + { + x: 662688000000.0, + y: 30347, + }, + { + x: 694224000000.0, + y: 28344, + }, + { + x: 725846400000.0, + y: 26947, + }, + { + x: 757382400000.0, + y: 24784, + }, + { + x: 788918400000.0, + y: 22967, + }, + { + x: 820454400000.0, + y: 22941, + }, + { + x: 852076800000.0, + y: 21824, + }, + { + x: 883612800000.0, + y: 20816, + }, + { + x: 915148800000.0, + y: 20267, + }, + { + x: 946684800000.0, + y: 19695, + }, + { + x: 978307200000.0, + y: 19281, + }, + { + x: 1009843200000.0, + y: 18600, + }, + { + x: 1041379200000.0, + y: 18557, + }, + { + x: 1072915200000.0, + y: 18315, + }, + { + x: 1104537600000.0, + y: 18017, + }, + { + x: 1136073600000.0, + y: 17510, + }, + { + x: 1167609600000.0, + y: 17400, + }, + { + x: 1199145600000.0, + y: 16049, + }, + ], + }, + { + key: ['James'], + values: [ + { + x: -157766400000.0, + y: 67506, + }, + { + x: -126230400000.0, + y: 65036, + }, + { + x: -94694400000.0, + y: 61554, + }, + { + x: -63158400000.0, + y: 60584, + }, + { + x: -31536000000.0, + y: 59824, + }, + { + x: 0.0, + y: 61597, + }, + { + x: 31536000000.0, + y: 54463, + }, + { + x: 63072000000.0, + y: 46960, + }, + { + x: 94694400000.0, + y: 42782, + }, + { + x: 126230400000.0, + y: 41258, + }, + { + x: 157766400000.0, + y: 39471, + }, + { + x: 189302400000.0, + y: 38203, + }, + { + x: 220924800000.0, + y: 39916, + }, + { + x: 252460800000.0, + y: 39783, + }, + { + x: 283996800000.0, + y: 39237, + }, + { + x: 315532800000.0, + y: 39185, + }, + { + x: 347155200000.0, + y: 38176, + }, + { + x: 378691200000.0, + y: 38750, + }, + { + x: 410227200000.0, + y: 36228, + }, + { + x: 441763200000.0, + y: 35728, + }, + { + x: 473385600000.0, + y: 35750, + }, + { + x: 504921600000.0, + y: 33955, + }, + { + x: 536457600000.0, + y: 32552, + }, + { + x: 567993600000.0, + y: 32418, + }, + { + x: 599616000000.0, + y: 32658, + }, + { + x: 631152000000.0, + y: 32288, + }, + { + x: 662688000000.0, + y: 30460, + }, + { + x: 694224000000.0, + y: 28450, + }, + { + x: 725846400000.0, + y: 26193, + }, + { + x: 757382400000.0, + y: 24706, + }, + { + x: 788918400000.0, + y: 22691, + }, + { + x: 820454400000.0, + y: 21122, + }, + { + x: 852076800000.0, + y: 20368, + }, + { + x: 883612800000.0, + y: 19651, + }, + { + x: 915148800000.0, + y: 18508, + }, + { + x: 946684800000.0, + y: 17939, + }, + { + x: 978307200000.0, + y: 17023, + }, + { + x: 1009843200000.0, + y: 16905, + }, + { + x: 1041379200000.0, + y: 16832, + }, + { + x: 1072915200000.0, + y: 16459, + }, + { + x: 1104537600000.0, + y: 16046, + }, + { + x: 1136073600000.0, + y: 16139, + }, + { + x: 1167609600000.0, + y: 15821, + }, + { + x: 1199145600000.0, + y: 14920, + }, + ], + }, + { + key: ['John'], + values: [ + { + x: -157766400000.0, + y: 71390, + }, + { + x: -126230400000.0, + y: 64858, + }, + { + x: -94694400000.0, + y: 61480, + }, + { + x: -63158400000.0, + y: 60754, + }, + { + x: -31536000000.0, + y: 58644, + }, + { + x: 0.0, + y: 58348, + }, + { + x: 31536000000.0, + y: 51382, + }, + { + x: 63072000000.0, + y: 43028, + }, + { + x: 94694400000.0, + y: 39061, + }, + { + x: 126230400000.0, + y: 37553, + }, + { + x: 157766400000.0, + y: 34970, + }, + { + x: 189302400000.0, + y: 33876, + }, + { + x: 220924800000.0, + y: 34103, + }, + { + x: 252460800000.0, + y: 33895, + }, + { + x: 283996800000.0, + y: 35305, + }, + { + x: 315532800000.0, + y: 35131, + }, + { + x: 347155200000.0, + y: 34761, + }, + { + x: 378691200000.0, + y: 34560, + }, + { + x: 410227200000.0, + y: 33047, + }, + { + x: 441763200000.0, + y: 32484, + }, + { + x: 473385600000.0, + y: 31397, + }, + { + x: 504921600000.0, + y: 30103, + }, + { + x: 536457600000.0, + y: 29462, + }, + { + x: 567993600000.0, + y: 29301, + }, + { + x: 599616000000.0, + y: 29751, + }, + { + x: 631152000000.0, + y: 29011, + }, + { + x: 662688000000.0, + y: 27727, + }, + { + x: 694224000000.0, + y: 26156, + }, + { + x: 725846400000.0, + y: 24918, + }, + { + x: 757382400000.0, + y: 24119, + }, + { + x: 788918400000.0, + y: 23174, + }, + { + x: 820454400000.0, + y: 22104, + }, + { + x: 852076800000.0, + y: 21330, + }, + { + x: 883612800000.0, + y: 20556, + }, + { + x: 915148800000.0, + y: 20280, + }, + { + x: 946684800000.0, + y: 20032, + }, + { + x: 978307200000.0, + y: 18839, + }, + { + x: 1009843200000.0, + y: 17400, + }, + { + x: 1041379200000.0, + y: 17170, + }, + { + x: 1072915200000.0, + y: 16381, + }, + { + x: 1104537600000.0, + y: 15692, + }, + { + x: 1136073600000.0, + y: 15083, + }, + { + x: 1167609600000.0, + y: 14348, + }, + { + x: 1199145600000.0, + y: 13110, + }, + ], + }, + { + key: ['Michael'], + values: [ + { + x: -157766400000.0, + y: 80812, + }, + { + x: -126230400000.0, + y: 79709, + }, + { + x: -94694400000.0, + y: 82204, + }, + { + x: -63158400000.0, + y: 81785, + }, + { + x: -31536000000.0, + y: 84893, + }, + { + x: 0.0, + y: 85015, + }, + { + x: 31536000000.0, + y: 77321, + }, + { + x: 63072000000.0, + y: 71197, + }, + { + x: 94694400000.0, + y: 67598, + }, + { + x: 126230400000.0, + y: 67304, + }, + { + x: 157766400000.0, + y: 68149, + }, + { + x: 189302400000.0, + y: 66686, + }, + { + x: 220924800000.0, + y: 67344, + }, + { + x: 252460800000.0, + y: 66875, + }, + { + x: 283996800000.0, + y: 67473, + }, + { + x: 315532800000.0, + y: 68375, + }, + { + x: 347155200000.0, + y: 68467, + }, + { + x: 378691200000.0, + y: 67904, + }, + { + x: 410227200000.0, + y: 67708, + }, + { + x: 441763200000.0, + y: 67457, + }, + { + x: 473385600000.0, + y: 64667, + }, + { + x: 504921600000.0, + y: 63959, + }, + { + x: 536457600000.0, + y: 63442, + }, + { + x: 567993600000.0, + y: 63924, + }, + { + x: 599616000000.0, + y: 65233, + }, + { + x: 631152000000.0, + y: 65138, + }, + { + x: 662688000000.0, + y: 60646, + }, + { + x: 694224000000.0, + y: 54216, + }, + { + x: 725846400000.0, + y: 49443, + }, + { + x: 757382400000.0, + y: 44361, + }, + { + x: 788918400000.0, + y: 41311, + }, + { + x: 820454400000.0, + y: 38284, + }, + { + x: 852076800000.0, + y: 37459, + }, + { + x: 883612800000.0, + y: 36525, + }, + { + x: 915148800000.0, + y: 33820, + }, + { + x: 946684800000.0, + y: 31956, + }, + { + x: 978307200000.0, + y: 29612, + }, + { + x: 1009843200000.0, + y: 28156, + }, + { + x: 1041379200000.0, + y: 27031, + }, + { + x: 1072915200000.0, + y: 25418, + }, + { + x: 1104537600000.0, + y: 23678, + }, + { + x: 1136073600000.0, + y: 22498, + }, + { + x: 1167609600000.0, + y: 21805, + }, + { + x: 1199145600000.0, + y: 20271, + }, + ], + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/basic.tsx new file mode 100644 index 000000000000..3524cb64385c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/basic.tsx @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/timeFormat.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/timeFormat.tsx new file mode 100644 index 000000000000..4a90448e141e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Compare/stories/timeFormat.tsx @@ -0,0 +1,250 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; + +export const timeFormat = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/Stories.tsx new file mode 100644 index 000000000000..5b9ef501299b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/Stories.tsx @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { DistBarChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3'; + +new DistBarChartPlugin().configure({ key: 'dist-bar' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-preset-chart-nvd3/DistBar', +}; + +export { basic } from './stories/basic'; +export { manyBars } from './stories/manyBars'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/data.ts new file mode 100644 index 000000000000..a5cc5b534d37 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/data.ts @@ -0,0 +1,112 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { + key: 'sum__sum_boys', + values: [ + { + x: 'CA', + y: 5430796, + }, + { + x: 'TX', + y: 3311985, + }, + { + x: 'NY', + y: 3543961, + }, + { + x: 'OH', + y: 2376385, + }, + { + x: 'PA', + y: 2390275, + }, + { + x: 'IL', + y: 2357411, + }, + { + x: 'MI', + y: 1938321, + }, + { + x: 'FL', + y: 1968060, + }, + { + x: 'NJ', + y: 1486126, + }, + { + x: 'MA', + y: 1285126, + }, + ], + }, + { + key: 'sum__sum_girls', + values: [ + { + x: 'CA', + y: 3567754, + }, + { + x: 'TX', + y: 2313186, + }, + { + x: 'NY', + y: 2280733, + }, + { + x: 'OH', + y: 1622814, + }, + { + x: 'PA', + y: 1615383, + }, + { + x: 'IL', + y: 1614427, + }, + { + x: 'MI', + y: 1326229, + }, + { + x: 'FL', + y: 1312593, + }, + { + x: 'NJ', + y: 992702, + }, + { + x: 'MA', + y: 842146, + }, + ], + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/basic.tsx new file mode 100644 index 000000000000..b77817d3d551 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/basic.tsx @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/manyBars.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/manyBars.tsx new file mode 100644 index 000000000000..a609b7c6905a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DistBar/stories/manyBars.tsx @@ -0,0 +1,59 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart, seedRandom } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; + +const data: { + key: string; + values: { + x: string; + y: number; + }[]; +}[] = [{ key: 'sth', values: [] }]; +const LONG_LABEL = + 'some extremely ridiculously extremely extremely extremely ridiculously extremely extremely ridiculously extremely extremely ridiculously extremely long category'; + +for (let i = 0; i < 50; i += 1) { + data[0].values.push({ + x: `${LONG_LABEL.substring( + 0, + Math.round(seedRandom() * LONG_LABEL.length), + )} ${i + 1}`, + y: Math.round(seedRandom() * 10000), + }); +} + +export const manyBars = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/Stories.tsx new file mode 100644 index 000000000000..2320290297fb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/Stories.tsx @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { DualLineChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3'; + +new DualLineChartPlugin().configure({ key: 'dual-line' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-preset-chart-nvd3/DualLine', +}; + +export { basic } from './stories/basic'; +export { verifyConsistentColors } from './stories/verifyConsistentColors'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/data.ts new file mode 100644 index 000000000000..6cc99c0fc968 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/data.ts @@ -0,0 +1,390 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { + key: 'avg__num', + classed: '', + values: [ + { + x: -157766400000.0, + y: 1435.6116838487972, + }, + { + x: -126230400000.0, + y: 1359.0295103957076, + }, + { + x: -94694400000.0, + y: 1291.0963777490297, + }, + { + x: -63158400000.0, + y: 1254.5405915670233, + }, + { + x: -31536000000.0, + y: 1244.9671332927571, + }, + { + x: 0.0, + y: 1248.7126843657818, + }, + { + x: 31536000000.0, + y: 1147.4195205479452, + }, + { + x: 63072000000.0, + y: 1036.6540632054175, + }, + { + x: 94694400000.0, + y: 980.8740906547285, + }, + { + x: 126230400000.0, + y: 971.1190345584201, + }, + { + x: 157766400000.0, + y: 947.5531453362256, + }, + { + x: 189302400000.0, + y: 962.4153005464481, + }, + { + x: 220924800000.0, + y: 1004.2832876712329, + }, + { + x: 252460800000.0, + y: 1000.6107784431138, + }, + { + x: 283996800000.0, + y: 1045.711965349215, + }, + { + x: 315532800000.0, + y: 1089.5097402597403, + }, + { + x: 347155200000.0, + y: 1094.7375201288244, + }, + { + x: 378691200000.0, + y: 1113.3569511540527, + }, + { + x: 410227200000.0, + y: 1117.585260892953, + }, + { + x: 441763200000.0, + y: 1117.1530230069557, + }, + { + x: 473385600000.0, + y: 1143.6297297297297, + }, + { + x: 504921600000.0, + y: 1131.3461538461538, + }, + { + x: 536457600000.0, + y: 1137.0865800865802, + }, + { + x: 567993600000.0, + y: 1144.3100483610963, + }, + { + x: 599616000000.0, + y: 1153.075821845175, + }, + { + x: 631152000000.0, + y: 1170.1328, + }, + { + x: 662688000000.0, + y: 1134.3757412398922, + }, + { + x: 694224000000.0, + y: 1102.478189749182, + }, + { + x: 725846400000.0, + y: 1065.1231527093596, + }, + { + x: 757382400000.0, + y: 1035.223574986165, + }, + { + x: 788918400000.0, + y: 997.9584026622297, + }, + { + x: 820454400000.0, + y: 976.4625698324022, + }, + { + x: 852076800000.0, + y: 953.0983698707139, + }, + { + x: 883612800000.0, + y: 961.3199079401611, + }, + { + x: 915148800000.0, + y: 962.3351032448378, + }, + { + x: 946684800000.0, + y: 967.1753012048192, + }, + { + x: 978307200000.0, + y: 955.8330218068536, + }, + { + x: 1009843200000.0, + y: 947.7684413085311, + }, + { + x: 1041379200000.0, + y: 951.2866622428667, + }, + { + x: 1072915200000.0, + y: 913.469184890656, + }, + { + x: 1104537600000.0, + y: 910.3797643797644, + }, + { + x: 1136073600000.0, + y: 910.0478229835832, + }, + { + x: 1167609600000.0, + y: 886.5323636363636, + }, + { + x: 1199145600000.0, + y: 854.5530769230769, + }, + ], + yAxis: 1, + type: 'line', + }, + { + key: 'sum__num', + classed: '', + values: [ + { + x: -157766400000.0, + y: 2088815, + }, + { + x: -126230400000.0, + y: 2026313, + }, + { + x: -94694400000.0, + y: 1996035, + }, + { + x: -63158400000.0, + y: 1993465, + }, + { + x: -31536000000.0, + y: 2045481, + }, + { + x: 0.0, + y: 2116568, + }, + { + x: 31536000000.0, + y: 2010279, + }, + { + x: 63072000000.0, + y: 1836951, + }, + { + x: 94694400000.0, + y: 1752822, + }, + { + x: 126230400000.0, + y: 1770350, + }, + { + x: 157766400000.0, + y: 1747288, + }, + { + x: 189302400000.0, + y: 1761220, + }, + { + x: 220924800000.0, + y: 1832817, + }, + { + x: 252460800000.0, + y: 1838122, + }, + { + x: 283996800000.0, + y: 1931430, + }, + { + x: 315532800000.0, + y: 2013414, + }, + { + x: 347155200000.0, + y: 2039496, + }, + { + x: 378691200000.0, + y: 2074184, + }, + { + x: 410227200000.0, + y: 2077591, + }, + { + x: 441763200000.0, + y: 2087959, + }, + { + x: 473385600000.0, + y: 2115715, + }, + { + x: 504921600000.0, + y: 2088465, + }, + { + x: 536457600000.0, + y: 2101336, + }, + { + x: 567993600000.0, + y: 2129561, + }, + { + x: 599616000000.0, + y: 2174701, + }, + { + x: 631152000000.0, + y: 2193999, + }, + { + x: 662688000000.0, + y: 2104267, + }, + { + x: 694224000000.0, + y: 2021945, + }, + { + x: 725846400000.0, + y: 1945980, + }, + { + x: 757382400000.0, + y: 1870649, + }, + { + x: 788918400000.0, + y: 1799319, + }, + { + x: 820454400000.0, + y: 1747868, + }, + { + x: 852076800000.0, + y: 1695562, + }, + { + x: 883612800000.0, + y: 1670774, + }, + { + x: 915148800000.0, + y: 1631158, + }, + { + x: 946684800000.0, + y: 1605511, + }, + { + x: 978307200000.0, + y: 1534112, + }, + { + x: 1009843200000.0, + y: 1477571, + }, + { + x: 1041379200000.0, + y: 1433589, + }, + { + x: 1072915200000.0, + y: 1378425, + }, + { + x: 1104537600000.0, + y: 1313678, + }, + { + x: 1136073600000.0, + y: 1274977, + }, + { + x: 1167609600000.0, + y: 1218982, + }, + { + x: 1199145600000.0, + y: 1110919, + }, + ], + yAxis: 2, + type: 'line', + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/basic.tsx new file mode 100644 index 000000000000..aa58980f5433 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/basic.tsx @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/verifyConsistentColors.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/verifyConsistentColors.tsx new file mode 100644 index 000000000000..779332ba1c78 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/DualLine/stories/verifyConsistentColors.tsx @@ -0,0 +1,65 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +const reverseData = data.map(series => ({ + ...series, + yAxis: series.yAxis === 1 ? 2 : 1, +})); + +export const verifyConsistentColors = () => ( +
+ + +
+); + +verifyConsistentColors.story = { + name: 'Swap y-axis with consistent color', +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/Stories.tsx new file mode 100644 index 000000000000..27bd36699777 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/Stories.tsx @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { LineChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3'; + +new LineChartPlugin().configure({ key: 'line' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-preset-chart-nvd3/Line', +}; + +export { basic } from './stories/basic'; +export { markers } from './stories/markers'; +export { logScale } from './stories/logScale'; +export { yAxisBounds } from './stories/yAxisBounds'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/data.ts new file mode 100644 index 000000000000..5d43d8e4bec2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/data.ts @@ -0,0 +1,927 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { + key: ['Christopher'], + values: [ + { + x: -157766400000.0, + y: 24703, + }, + { + x: -126230400000.0, + y: 27861, + }, + { + x: -94694400000.0, + y: 29436, + }, + { + x: -63158400000.0, + y: 31463, + }, + { + x: -31536000000.0, + y: 35718, + }, + { + x: 0.0, + y: 41758, + }, + { + x: 31536000000.0, + y: 48172, + }, + { + x: 63072000000.0, + y: 52092, + }, + { + x: 94694400000.0, + y: 48217, + }, + { + x: 126230400000.0, + y: 48476, + }, + { + x: 157766400000.0, + y: 46438, + }, + { + x: 189302400000.0, + y: 45086, + }, + { + x: 220924800000.0, + y: 46610, + }, + { + x: 252460800000.0, + y: 47107, + }, + { + x: 283996800000.0, + y: 50514, + }, + { + x: 315532800000.0, + y: 48969, + }, + { + x: 347155200000.0, + y: 50108, + }, + { + x: 378691200000.0, + y: 59055, + }, + { + x: 410227200000.0, + y: 59188, + }, + { + x: 441763200000.0, + y: 59859, + }, + { + x: 473385600000.0, + y: 59516, + }, + { + x: 504921600000.0, + y: 56633, + }, + { + x: 536457600000.0, + y: 54466, + }, + { + x: 567993600000.0, + y: 52996, + }, + { + x: 599616000000.0, + y: 53205, + }, + { + x: 631152000000.0, + y: 52322, + }, + { + x: 662688000000.0, + y: 47109, + }, + { + x: 694224000000.0, + y: 42470, + }, + { + x: 725846400000.0, + y: 38257, + }, + { + x: 757382400000.0, + y: 34823, + }, + { + x: 788918400000.0, + y: 32728, + }, + { + x: 820454400000.0, + y: 30988, + }, + { + x: 852076800000.0, + y: 29179, + }, + { + x: 883612800000.0, + y: 27083, + }, + { + x: 915148800000.0, + y: 25700, + }, + { + x: 946684800000.0, + y: 24959, + }, + { + x: 978307200000.0, + y: 23180, + }, + { + x: 1009843200000.0, + y: 21731, + }, + { + x: 1041379200000.0, + y: 20793, + }, + { + x: 1072915200000.0, + y: 19739, + }, + { + x: 1104537600000.0, + y: 19190, + }, + { + x: 1136073600000.0, + y: 19674, + }, + { + x: 1167609600000.0, + y: 19986, + }, + { + x: 1199145600000.0, + y: 17771, + }, + ], + }, + { + key: ['David'], + values: [ + { + x: -157766400000.0, + y: 67646, + }, + { + x: -126230400000.0, + y: 66207, + }, + { + x: -94694400000.0, + y: 66581, + }, + { + x: -63158400000.0, + y: 63531, + }, + { + x: -31536000000.0, + y: 63502, + }, + { + x: 0.0, + y: 61570, + }, + { + x: 31536000000.0, + y: 52948, + }, + { + x: 63072000000.0, + y: 46218, + }, + { + x: 94694400000.0, + y: 40968, + }, + { + x: 126230400000.0, + y: 41654, + }, + { + x: 157766400000.0, + y: 39019, + }, + { + x: 189302400000.0, + y: 39165, + }, + { + x: 220924800000.0, + y: 40407, + }, + { + x: 252460800000.0, + y: 40533, + }, + { + x: 283996800000.0, + y: 41898, + }, + { + x: 315532800000.0, + y: 41743, + }, + { + x: 347155200000.0, + y: 40486, + }, + { + x: 378691200000.0, + y: 40283, + }, + { + x: 410227200000.0, + y: 39048, + }, + { + x: 441763200000.0, + y: 38346, + }, + { + x: 473385600000.0, + y: 38395, + }, + { + x: 504921600000.0, + y: 37021, + }, + { + x: 536457600000.0, + y: 36672, + }, + { + x: 567993600000.0, + y: 35214, + }, + { + x: 599616000000.0, + y: 35139, + }, + { + x: 631152000000.0, + y: 33661, + }, + { + x: 662688000000.0, + y: 30347, + }, + { + x: 694224000000.0, + y: 28344, + }, + { + x: 725846400000.0, + y: 26947, + }, + { + x: 757382400000.0, + y: 24784, + }, + { + x: 788918400000.0, + y: 22967, + }, + { + x: 820454400000.0, + y: 22941, + }, + { + x: 852076800000.0, + y: 21824, + }, + { + x: 883612800000.0, + y: 20816, + }, + { + x: 915148800000.0, + y: 20267, + }, + { + x: 946684800000.0, + y: 19695, + }, + { + x: 978307200000.0, + y: 19281, + }, + { + x: 1009843200000.0, + y: 18600, + }, + { + x: 1041379200000.0, + y: 18557, + }, + { + x: 1072915200000.0, + y: 18315, + }, + { + x: 1104537600000.0, + y: 18017, + }, + { + x: 1136073600000.0, + y: 17510, + }, + { + x: 1167609600000.0, + y: 17400, + }, + { + x: 1199145600000.0, + y: 16049, + }, + ], + }, + { + key: ['James'], + values: [ + { + x: -157766400000.0, + y: 67506, + }, + { + x: -126230400000.0, + y: 65036, + }, + { + x: -94694400000.0, + y: 61554, + }, + { + x: -63158400000.0, + y: 60584, + }, + { + x: -31536000000.0, + y: 59824, + }, + { + x: 0.0, + y: 61597, + }, + { + x: 31536000000.0, + y: 54463, + }, + { + x: 63072000000.0, + y: 46960, + }, + { + x: 94694400000.0, + y: 42782, + }, + { + x: 126230400000.0, + y: 41258, + }, + { + x: 157766400000.0, + y: 39471, + }, + { + x: 189302400000.0, + y: 38203, + }, + { + x: 220924800000.0, + y: 39916, + }, + { + x: 252460800000.0, + y: 39783, + }, + { + x: 283996800000.0, + y: 39237, + }, + { + x: 315532800000.0, + y: 39185, + }, + { + x: 347155200000.0, + y: 38176, + }, + { + x: 378691200000.0, + y: 38750, + }, + { + x: 410227200000.0, + y: 36228, + }, + { + x: 441763200000.0, + y: 35728, + }, + { + x: 473385600000.0, + y: 35750, + }, + { + x: 504921600000.0, + y: 33955, + }, + { + x: 536457600000.0, + y: 32552, + }, + { + x: 567993600000.0, + y: 32418, + }, + { + x: 599616000000.0, + y: 32658, + }, + { + x: 631152000000.0, + y: 32288, + }, + { + x: 662688000000.0, + y: 30460, + }, + { + x: 694224000000.0, + y: 28450, + }, + { + x: 725846400000.0, + y: 26193, + }, + { + x: 757382400000.0, + y: 24706, + }, + { + x: 788918400000.0, + y: 22691, + }, + { + x: 820454400000.0, + y: 21122, + }, + { + x: 852076800000.0, + y: 20368, + }, + { + x: 883612800000.0, + y: 19651, + }, + { + x: 915148800000.0, + y: 18508, + }, + { + x: 946684800000.0, + y: 17939, + }, + { + x: 978307200000.0, + y: 17023, + }, + { + x: 1009843200000.0, + y: 16905, + }, + { + x: 1041379200000.0, + y: 16832, + }, + { + x: 1072915200000.0, + y: 16459, + }, + { + x: 1104537600000.0, + y: 16046, + }, + { + x: 1136073600000.0, + y: 16139, + }, + { + x: 1167609600000.0, + y: 15821, + }, + { + x: 1199145600000.0, + y: 14920, + }, + ], + }, + { + key: ['John'], + values: [ + { + x: -157766400000.0, + y: 71390, + }, + { + x: -126230400000.0, + y: 64858, + }, + { + x: -94694400000.0, + y: 61480, + }, + { + x: -63158400000.0, + y: 60754, + }, + { + x: -31536000000.0, + y: 58644, + }, + { + x: 0.0, + y: 58348, + }, + { + x: 31536000000.0, + y: 51382, + }, + { + x: 63072000000.0, + y: 43028, + }, + { + x: 94694400000.0, + y: 39061, + }, + { + x: 126230400000.0, + y: 37553, + }, + { + x: 157766400000.0, + y: 34970, + }, + { + x: 189302400000.0, + y: 33876, + }, + { + x: 220924800000.0, + y: 34103, + }, + { + x: 252460800000.0, + y: 33895, + }, + { + x: 283996800000.0, + y: 35305, + }, + { + x: 315532800000.0, + y: 35131, + }, + { + x: 347155200000.0, + y: 34761, + }, + { + x: 378691200000.0, + y: 34560, + }, + { + x: 410227200000.0, + y: 33047, + }, + { + x: 441763200000.0, + y: 32484, + }, + { + x: 473385600000.0, + y: 31397, + }, + { + x: 504921600000.0, + y: 30103, + }, + { + x: 536457600000.0, + y: 29462, + }, + { + x: 567993600000.0, + y: 29301, + }, + { + x: 599616000000.0, + y: 29751, + }, + { + x: 631152000000.0, + y: 29011, + }, + { + x: 662688000000.0, + y: 27727, + }, + { + x: 694224000000.0, + y: 26156, + }, + { + x: 725846400000.0, + y: 24918, + }, + { + x: 757382400000.0, + y: 24119, + }, + { + x: 788918400000.0, + y: 23174, + }, + { + x: 820454400000.0, + y: 22104, + }, + { + x: 852076800000.0, + y: 21330, + }, + { + x: 883612800000.0, + y: 20556, + }, + { + x: 915148800000.0, + y: 20280, + }, + { + x: 946684800000.0, + y: 20032, + }, + { + x: 978307200000.0, + y: 18839, + }, + { + x: 1009843200000.0, + y: 17400, + }, + { + x: 1041379200000.0, + y: 17170, + }, + { + x: 1072915200000.0, + y: 16381, + }, + { + x: 1104537600000.0, + y: 15692, + }, + { + x: 1136073600000.0, + y: 15083, + }, + { + x: 1167609600000.0, + y: 14348, + }, + { + x: 1199145600000.0, + y: 13110, + }, + ], + }, + { + key: ['Michael'], + values: [ + { + x: -157766400000.0, + y: 80812, + }, + { + x: -126230400000.0, + y: 79709, + }, + { + x: -94694400000.0, + y: 82204, + }, + { + x: -63158400000.0, + y: 81785, + }, + { + x: -31536000000.0, + y: 84893, + }, + { + x: 0.0, + y: 85015, + }, + { + x: 31536000000.0, + y: 77321, + }, + { + x: 63072000000.0, + y: 71197, + }, + { + x: 94694400000.0, + y: 67598, + }, + { + x: 126230400000.0, + y: 67304, + }, + { + x: 157766400000.0, + y: 68149, + }, + { + x: 189302400000.0, + y: 66686, + }, + { + x: 220924800000.0, + y: 67344, + }, + { + x: 252460800000.0, + y: 66875, + }, + { + x: 283996800000.0, + y: 67473, + }, + { + x: 315532800000.0, + y: 68375, + }, + { + x: 347155200000.0, + y: 68467, + }, + { + x: 378691200000.0, + y: 67904, + }, + { + x: 410227200000.0, + y: 67708, + }, + { + x: 441763200000.0, + y: 67457, + }, + { + x: 473385600000.0, + y: 64667, + }, + { + x: 504921600000.0, + y: 63959, + }, + { + x: 536457600000.0, + y: 63442, + }, + { + x: 567993600000.0, + y: 63924, + }, + { + x: 599616000000.0, + y: 65233, + }, + { + x: 631152000000.0, + y: 65138, + }, + { + x: 662688000000.0, + y: 60646, + }, + { + x: 694224000000.0, + y: 54216, + }, + { + x: 725846400000.0, + y: 49443, + }, + { + x: 757382400000.0, + y: 44361, + }, + { + x: 788918400000.0, + y: 41311, + }, + { + x: 820454400000.0, + y: 38284, + }, + { + x: 852076800000.0, + y: 37459, + }, + { + x: 883612800000.0, + y: 36525, + }, + { + x: 915148800000.0, + y: 33820, + }, + { + x: 946684800000.0, + y: 31956, + }, + { + x: 978307200000.0, + y: 29612, + }, + { + x: 1009843200000.0, + y: 28156, + }, + { + x: 1041379200000.0, + y: 27031, + }, + { + x: 1072915200000.0, + y: 25418, + }, + { + x: 1104537600000.0, + y: 23678, + }, + { + x: 1136073600000.0, + y: 22498, + }, + { + x: 1167609600000.0, + y: 21805, + }, + { + x: 1199145600000.0, + y: 20271, + }, + ], + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/basic.tsx new file mode 100644 index 000000000000..e9fe1010505a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/basic.tsx @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/logScale.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/logScale.tsx new file mode 100644 index 000000000000..4b9f110b1d3c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/logScale.tsx @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const logScale = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/markers.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/markers.tsx new file mode 100644 index 000000000000..fca8c2bef395 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/markers.tsx @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const markers = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/yAxisBounds.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/yAxisBounds.tsx new file mode 100644 index 000000000000..93c6f09c9633 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Line/stories/yAxisBounds.tsx @@ -0,0 +1,98 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const yAxisBounds = () => ( +
+

yAxisBounds

+
yAxisBounds=undefined
+ +
yAxisBounds=[0, 60000]
+ +
yAxisBounds=[null, 60000]
+ +
yAxisBounds=[40000, null]
+ +
yAxisBounds=[40000, null] with Legend
+ +
+); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/Stories.tsx new file mode 100644 index 000000000000..4b7517b5aff1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/Stories.tsx @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { PieChartPlugin } from '@superset-ui/legacy-preset-chart-nvd3'; + +new PieChartPlugin().configure({ key: 'pie' }).register(); + +export default { + title: 'Legacy Chart Plugins/legacy-preset-chart-nvd3/Pie', +}; + +export { basic } from './stories/basic'; +export { noData } from './stories/noData'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/data.ts new file mode 100644 index 000000000000..6db3c5f69653 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/data.ts @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { + x: 'boy', + y: 48133355, + }, + { + x: 'girl', + y: 32546308, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/basic.tsx new file mode 100644 index 000000000000..6aae12ad909e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/basic.tsx @@ -0,0 +1,43 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data'; + +export const basic = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/noData.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/noData.tsx new file mode 100644 index 000000000000..60527ad977d3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/stories/noData.tsx @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; + +export const noData = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/Stories.tsx new file mode 100644 index 000000000000..2f2938017b05 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/Stories.tsx @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core'; +import { select, withKnobs } from '@storybook/addon-knobs'; +import { + EchartsBoxPlotChartPlugin, + BoxPlotTransformProps, +} from '@superset-ui/plugin-chart-echarts'; +import data from './data'; +import { withResizableChartDemo } from '../../../../shared/components/ResizableChartDemo'; + +new EchartsBoxPlotChartPlugin() + .configure({ key: 'echarts-boxplot' }) + .register(); + +getChartTransformPropsRegistry().registerValue( + 'echarts-boxplot', + BoxPlotTransformProps, +); + +export default { + title: 'Chart Plugins/plugin-chart-echarts/BoxPlot', + decorators: [withKnobs, withResizableChartDemo], +}; + +export const BoxPlot = ({ width, height }) => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/data.ts new file mode 100644 index 000000000000..ee0e82206fa0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/BoxPlot/data.ts @@ -0,0 +1,141 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default [ + { + type: 'organic', + region: 'Charlotte', + 'AVG(averageprice)__mean': 1.9405512820512825, + 'AVG(averageprice)__median': 1.9025, + 'AVG(averageprice)__max': 2.505, + 'AVG(averageprice)__min': 1.4775, + 'AVG(averageprice)__q1': 1.73875, + 'AVG(averageprice)__q3': 2.105, + 'AVG(averageprice)__count': 39, + 'AVG(averageprice)__outliers': [2.735], + }, + { + type: 'organic', + region: 'Hartford Springfield', + 'AVG(averageprice)__mean': 2.231141025641026, + 'AVG(averageprice)__median': 2.265, + 'AVG(averageprice)__max': 2.595, + 'AVG(averageprice)__min': 1.862, + 'AVG(averageprice)__q1': 2.1285, + 'AVG(averageprice)__q3': 2.32625, + 'AVG(averageprice)__count': 39, + 'AVG(averageprice)__outliers': [], + }, + { + type: 'organic', + region: 'Jacksonville', + 'AVG(averageprice)__mean': 1.829282051282052, + 'AVG(averageprice)__median': 1.808, + 'AVG(averageprice)__max': 2.255, + 'AVG(averageprice)__min': 1.455, + 'AVG(averageprice)__q1': 1.6945000000000001, + 'AVG(averageprice)__q3': 1.9475, + 'AVG(averageprice)__count': 39, + 'AVG(averageprice)__outliers': [2.48, 2.406, 1.3075, 1.274], + }, + { + type: 'organic', + region: 'NewYork', + 'AVG(averageprice)__mean': 2.0531923076923073, + 'AVG(averageprice)__median': 2.068, + 'AVG(averageprice)__max': 2.348, + 'AVG(averageprice)__min': 1.785, + 'AVG(averageprice)__q1': 1.9725000000000001, + 'AVG(averageprice)__q3': 2.125, + 'AVG(averageprice)__count': 39, + 'AVG(averageprice)__outliers': [2.3825, 2.38, 1.7075], + }, + { + type: 'organic', + region: 'Northeast', + 'AVG(averageprice)__mean': 1.8608333333333336, + 'AVG(averageprice)__median': 1.868, + 'AVG(averageprice)__max': 2.145, + 'AVG(averageprice)__min': 1.5925, + 'AVG(averageprice)__q1': 1.76375, + 'AVG(averageprice)__q3': 1.96875, + 'AVG(averageprice)__count': 39, + 'AVG(averageprice)__outliers': [], + }, + { + type: 'organic', + region: 'Orlando', + 'AVG(averageprice)__mean': 1.7969999999999995, + 'AVG(averageprice)__median': 1.8075, + 'AVG(averageprice)__max': 2.1125, + 'AVG(averageprice)__min': 1.306, + 'AVG(averageprice)__q1': 1.6237499999999998, + 'AVG(averageprice)__q3': 1.8697499999999998, + 'AVG(averageprice)__count': 39, + 'AVG(averageprice)__outliers': [2.3825, 2.358, 2.252], + }, + { + type: 'organic', + region: 'Philadelphia', + 'AVG(averageprice)__mean': 1.8673589743589747, + 'AVG(averageprice)__median': 1.85, + 'AVG(averageprice)__max': 2.2525, + 'AVG(averageprice)__min': 1.56, + 'AVG(averageprice)__q1': 1.7125, + 'AVG(averageprice)__q3': 1.99575, + 'AVG(averageprice)__count': 39, + 'AVG(averageprice)__outliers': [], + }, + { + type: 'organic', + region: 'Raleigh Greensboro', + 'AVG(averageprice)__mean': 1.8851410256410257, + 'AVG(averageprice)__median': 1.782, + 'AVG(averageprice)__max': 2.402, + 'AVG(averageprice)__min': 1.356, + 'AVG(averageprice)__q1': 1.7000000000000002, + 'AVG(averageprice)__q3': 2.0045, + 'AVG(averageprice)__count': 39, + 'AVG(averageprice)__outliers': [2.79, 2.6225, 2.5575, 2.5], + }, + { + type: 'organic', + region: 'Sacramento', + 'AVG(averageprice)__mean': 1.972871794871795, + 'AVG(averageprice)__median': 1.9875, + 'AVG(averageprice)__max': 2.655, + 'AVG(averageprice)__min': 1.2925, + 'AVG(averageprice)__q1': 1.74875, + 'AVG(averageprice)__q3': 2.1465, + 'AVG(averageprice)__count': 39, + 'AVG(averageprice)__outliers': [], + }, + { + type: 'organic', + region: 'San Francisco', + 'AVG(averageprice)__mean': 2.213615384615385, + 'AVG(averageprice)__median': 2.275, + 'AVG(averageprice)__max': 2.9825, + 'AVG(averageprice)__min': 1.2275, + 'AVG(averageprice)__q1': 1.9675, + 'AVG(averageprice)__q3': 2.541, + 'AVG(averageprice)__count': 39, + 'AVG(averageprice)__outliers': [], + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Funnel/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Funnel/Stories.tsx new file mode 100644 index 000000000000..a02a74082385 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Funnel/Stories.tsx @@ -0,0 +1,73 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core'; +import { boolean, number, select, withKnobs } from '@storybook/addon-knobs'; +import { + EchartsFunnelChartPlugin, + FunnelTransformProps, +} from '@superset-ui/plugin-chart-echarts'; +import { dataSource } from './constants'; +import { withResizableChartDemo } from '../../../../shared/components/ResizableChartDemo'; + +new EchartsFunnelChartPlugin().configure({ key: 'echarts-funnel' }).register(); + +getChartTransformPropsRegistry().registerValue( + 'echarts-funnel', + FunnelTransformProps, +); + +export default { + title: 'Chart Plugins/plugin-chart-echarts/Funnel', + decorators: [withKnobs, withResizableChartDemo], +}; + +export const Funnel = ({ width, height }) => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Funnel/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Funnel/constants.ts new file mode 100644 index 000000000000..15054e04fac6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Funnel/constants.ts @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export const dataSource = [ + { value: 89439, name: 'pv' }, + { value: 5526, name: 'cart' }, + { value: 2824, name: 'fav' }, + { value: 2211, name: 'buy' }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Gauge/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Gauge/Stories.tsx new file mode 100644 index 000000000000..cd04bdadf1fa --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Gauge/Stories.tsx @@ -0,0 +1,54 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core'; +import { withKnobs } from '@storybook/addon-knobs'; +import { + EchartsGaugeChartPlugin, + GaugeTransformProps, +} from '@superset-ui/plugin-chart-echarts'; +import { withResizableChartDemo } from '../../../../shared/components/ResizableChartDemo'; +import { speed } from './data'; + +new EchartsGaugeChartPlugin().configure({ key: 'echarts-gauge' }).register(); + +getChartTransformPropsRegistry().registerValue( + 'echarts-gauge', + GaugeTransformProps, +); + +export default { + title: 'Chart Plugins/plugin-chart-echarts/Gauge', + decorators: [withKnobs, withResizableChartDemo], +}; + +export const Gauge = ({ width, height }) => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Gauge/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Gauge/data.ts new file mode 100644 index 000000000000..de373e5be9b3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Gauge/data.ts @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export const speed = [ + { + name: 'km/h', + value: 70, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Graph/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Graph/Stories.tsx new file mode 100644 index 000000000000..82381358f31a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Graph/Stories.tsx @@ -0,0 +1,56 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core'; +import { withKnobs } from '@storybook/addon-knobs'; +import { + EchartsGraphChartPlugin, + GraphTransformProps, +} from '@superset-ui/plugin-chart-echarts'; +import { basic } from './data'; +import { withResizableChartDemo } from '../../../../shared/components/ResizableChartDemo'; + +new EchartsGraphChartPlugin().configure({ key: 'echarts-graph' }).register(); + +getChartTransformPropsRegistry().registerValue( + 'echarts-graph', + GraphTransformProps, +); + +export default { + title: 'Chart Plugins/plugin-chart-echarts/Graph', + decorators: [withKnobs, withResizableChartDemo], +}; + +export const Graph = ({ width, height }) => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Graph/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Graph/data.ts new file mode 100644 index 000000000000..9ae0fd9779a4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Graph/data.ts @@ -0,0 +1,329 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export const basic = [ + { + source: '05/18/21 Live Demo', + target: '05/04/21 Live Demo', + value: 100, + sourceCategory: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '05/04/21 Live Demo', + target: '04/20/21 Live Demo', + value: 110, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '05/04/21 Live Demo', + target: '04/13/21 Live Demo', + value: 40, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '05/04/21 Live Demo', + target: '04/06/21 Live Demo', + value: 30, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '05/04/21 Live Demo', + target: '09/29/21 Live Demo', + value: 25, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '05/04/21 Live Demo', + target: '06/01/21 Live Demo', + value: 43, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '04/20/21 Live Demo', + target: '04/13/21 Live Demo', + value: 50, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '04/20/21 Live Demo', + target: '03/02/21 Meetup', + value: 40, + category: 'Live Demo', + targetCategory: 'Meetup', + }, + { + source: '04/20/21 Live Demo', + target: '06/01/21 Live Demo', + value: 58, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '04/20/21 Live Demo', + target: '03/25/21 Meetup', + value: 38, + category: 'Live Demo', + targetCategory: 'Meetup', + }, + { + source: '04/20/21 Live Demo', + target: '01/28/21 Meetup', + value: 34, + category: 'Live Demo', + targetCategory: 'Meetup', + }, + { + source: '04/13/21 Live Demo', + target: '04/06/21 Live Demo', + value: 34, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '04/13/21 Live Demo', + target: '09/29/21 Live Demo', + value: 56, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '04/06/21 Live Demo', + target: '09/29/21 Live Demo', + value: 77, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '04/13/21 Live Demo', + target: '03/02/21 Meetup', + value: 36, + category: 'Live Demo', + targetCategory: 'Meetup', + }, + { + source: '04/13/21 Live Demo', + target: '06/08/21 Live Demo', + value: 77, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '09/29/21 Live Demo', + target: '06/01/21 Live Demo', + value: 44, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '09/29/21 Live Demo', + target: '06/08/21 Live Demo', + value: 30, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '06/01/21 Live Demo', + target: '03/02/21 Meetup', + value: 67, + category: 'Live Demo', + targetCategory: 'Meetup', + }, + { + source: '06/01/21 Live Demo', + target: '03/25/21 Meetup', + value: 30, + category: 'Live Demo', + targetCategory: 'Meetup', + }, + { + source: '06/01/21 Live Demo', + target: '05/11/21 Meetup', + value: 52, + category: 'Live Demo', + targetCategory: 'Meetup', + }, + { + source: '06/01/21 Live Demo', + target: '06/08/21 Live Demo', + value: 43, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '06/01/21 Live Demo', + target: '01/28/21 Meetup', + value: 45, + category: 'Live Demo', + targetCategory: 'Meetup', + }, + { + source: '06/01/21 Live Demo', + target: '05/04/21 Live Demo', + value: 42, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '06/01/21 Live Demo', + target: '03/25/21 Meetup', + value: 32, + category: 'Live Demo', + targetCategory: 'Meetup', + }, + { + source: '03/02/21 Meetup', + target: '03/25/21 Meetup', + value: 23, + category: 'Meetup', + targetCategory: 'Meetup', + }, + { + source: '03/02/21 Meetup', + target: '05/11/21 Meetup', + value: 43, + category: 'Meetup', + targetCategory: 'Meetup', + }, + { + source: '03/02/21 Meetup', + target: '01/28/21 Meetup', + value: 33, + category: 'Meetup', + targetCategory: 'Meetup', + }, + { + source: '03/02/21 Meetup', + target: '05/04/21 Live Demo', + value: 53, + category: 'Meetup', + targetCategory: 'Live Demo', + }, + { + source: '03/02/21 Meetup', + target: '03/25/21 Meetup', + value: 55, + category: 'Meetup', + targetCategory: 'Meetup', + }, + { + source: '03/25/21 Meetup', + target: '05/11/21 Meetup', + value: 33, + category: 'Meetup', + targetCategory: 'Meetup', + }, + { + source: '03/25/21 Meetup', + target: '06/08/21 Live Demo', + value: 73, + category: 'Meetup', + targetCategory: 'Live Demo', + }, + { + source: '03/25/21 Meetup', + target: '01/28/21 Meetup', + value: 63, + category: 'Meetup', + targetCategory: 'Meetup', + }, + { + source: '03/25/21 Meetup', + target: '05/04/21 Live Demo', + value: 52, + category: 'Meetup', + targetCategory: 'Live Demo', + }, + { + source: '03/25/21 Meetup', + target: '03/25/21 Meetup', + value: 51, + category: 'Meetup', + targetCategory: 'Meetup', + }, + { + source: '05/11/21 Meetup', + target: '06/08/21 Live Demo', + value: 35, + category: 'Meetup', + targetCategory: 'Live Demo', + }, + { + source: '05/11/21 Meetup', + target: '05/04/21 Live Demo', + value: 75, + category: 'Meetup', + targetCategory: 'Live Demo', + }, + { + source: '05/11/21 Meetup', + target: '01/28/21 Meetup', + value: 65, + category: 'Meetup', + targetCategory: 'Meetup', + }, + { + source: '06/08/21 Live Demo', + target: '01/28/21 Meetup', + value: 36, + category: 'Live Demo', + targetCategory: 'Meetup', + }, + { + source: '06/08/21 Live Demo', + target: '05/04/21 Live Demo', + value: 46, + category: 'Live Demo', + targetCategory: 'Live Demo', + }, + { + source: '06/08/21 Live Demo', + target: '03/25/21 Meetup', + value: 26, + category: 'Live Demo', + targetCategory: 'Meetup', + }, + { + source: '03/25/21 Meetup', + target: '05/04/21 Live Demo', + value: 78, + category: 'Meetup', + targetCategory: 'Live Demo', + }, + { + source: '03/25/21 Meetup', + target: '03/25/21 Meetup', + value: 45, + category: 'Meetup', + targetCategory: 'Meetup', + }, + { + source: '05/18/21 Live Demo', + target: '03/25/21 Meetup', + value: 65, + category: 'Live Demo', + targetCategory: 'Meetup', + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/MixedTimeseries/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/MixedTimeseries/Stories.tsx new file mode 100644 index 000000000000..a6a13e4e5612 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/MixedTimeseries/Stories.tsx @@ -0,0 +1,111 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core'; +import { + boolean, + number, + text, + select, + withKnobs, +} from '@storybook/addon-knobs'; +import { + EchartsTimeseriesChartPlugin, + MixedTimeseriesTransformProps, +} from '@superset-ui/plugin-chart-echarts'; +import data from '../Timeseries/data'; +import { withResizableChartDemo } from '../../../../shared/components/ResizableChartDemo'; + +new EchartsTimeseriesChartPlugin() + .configure({ key: 'mixed-timeseries' }) + .register(); + +getChartTransformPropsRegistry().registerValue( + 'mixed-timeseries', + MixedTimeseriesTransformProps, +); + +export default { + title: 'Chart Plugins/plugin-chart-echarts/MixedTimeseries', + decorators: [withKnobs, withResizableChartDemo], +}; + +export const Timeseries = ({ width, height }) => { + const queriesData = [ + { + data: data + .map(row => ({ + // eslint-disable-next-line no-underscore-dangle + __timestamp: row.__timestamp, + Boston: row.Boston, + })) + .filter(row => !!row.Boston), + }, + { + data: data + .map(row => ({ + // eslint-disable-next-line no-underscore-dangle + __timestamp: row.__timestamp, + California: row.California, + WestTexNewMexico: row.WestTexNewMexico, + })) + .filter(row => !!row.California), + }, + ]; + return ( + + ); +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/Stories.tsx new file mode 100644 index 000000000000..548a9543f5be --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/Stories.tsx @@ -0,0 +1,108 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core'; +import { boolean, number, select, withKnobs } from '@storybook/addon-knobs'; +import { + EchartsPieChartPlugin, + PieTransformProps, +} from '@superset-ui/plugin-chart-echarts'; +import { weekday, population } from './data'; +import { withResizableChartDemo } from '../../../../shared/components/ResizableChartDemo'; + +new EchartsPieChartPlugin().configure({ key: 'echarts-pie' }).register(); + +getChartTransformPropsRegistry().registerValue( + 'echarts-pie', + PieTransformProps, +); + +export default { + title: 'Chart Plugins/plugin-chart-echarts/Pie', + decorators: [withKnobs, withResizableChartDemo], +}; + +export const WeekdayPie = ({ width, height }) => ( + +); + +export const PopulationPie = ({ width, height }) => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/data.ts new file mode 100644 index 000000000000..8959a1fc6c55 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Pie/data.ts @@ -0,0 +1,242 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export const weekday = [ + { Day: 'Friday', 'SUM(AIR_TIME)': 1943661 }, + { Day: 'Saturday', 'SUM(AIR_TIME)': 1798845 }, + { Day: 'Thursday', 'SUM(AIR_TIME)': 1626157 }, + { Day: 'Sunday', 'SUM(AIR_TIME)': 1048653 }, +]; + +export const population = [ + { Country: 'China', Population: 58345455000 }, + { Country: 'India', Population: 46023037597 }, + { Country: 'United States', Population: 13604468357 }, + { Country: 'Indonesia', Population: 9357861231 }, + { Country: 'Brazil', Population: 7752058955 }, + { Country: 'Russian Federation', Population: 7667188460 }, + { Country: 'Japan', Population: 6454620759 }, + { Country: 'Pakistan', Population: 5696041480 }, + { Country: 'Bangladesh', Population: 5549261462 }, + { Country: 'Nigeria', Population: 5259800493 }, + { Country: 'Mexico', Population: 4444653964 }, + { Country: 'Germany', Population: 4361793335 }, + { Country: 'Vietnam', Population: 3420037000 }, + { Country: 'Philippines', Population: 3272015554 }, + { Country: 'United Kingdom', Population: 3169118137 }, + { Country: 'France', Population: 3151638853 }, + { Country: 'Italy', Population: 3082869665 }, + { Country: 'Egypt, Arab Rep.', Population: 2967887581 }, + { Country: 'Thailand', Population: 2827157965 }, + { Country: 'Turkey', Population: 2805220683 }, + { Country: 'Ethiopia', Population: 2750952916 }, + { Country: 'Iran, Islamic Rep.', Population: 2717528355 }, + { Country: 'Ukraine', Population: 2657782543 }, + { Country: 'Korea, Rep.', Population: 2216456927 }, + { Country: 'Myanmar', Population: 2126848982 }, + { Country: 'Spain', Population: 2115316751 }, + { Country: 'Congo, Dem. Rep.', Population: 2015439254 }, + { Country: 'Poland', Population: 1976772515 }, + { Country: 'South Africa', Population: 1871083248 }, + { Country: 'Colombia', Population: 1776189608 }, + { Country: 'Argentina', Population: 1728332290 }, + { Country: 'Canada', Population: 1470276931 }, + { Country: 'Tanzania', Population: 1413734053 }, + { Country: 'Algeria', Population: 1317290647 }, + { Country: 'Morocco', Population: 1277441301 }, + { Country: 'Kenya', Population: 1253201109 }, + { Country: 'Romania', Population: 1171333228 }, + { Country: 'Peru', Population: 1121937313 }, + { Country: 'Sudan', Population: 1118903636 }, + { Country: 'Uzbekistan', Population: 1053380227 }, + { Country: 'Korea, Dem. Rep.', Population: 1047335229 }, + { Country: 'Venezuela, RB', Population: 1036057583 }, + { Country: 'Nepal', Population: 1007162709 }, + { Country: 'Uganda', Population: 987376102 }, + { Country: 'Iraq', Population: 983604177 }, + { Country: 'Malaysia', Population: 978122682 }, + { Country: 'Australia', Population: 903260509 }, + { Country: 'Afghanistan', Population: 887557752 }, + { Country: 'Sri Lanka', Population: 881137000 }, + { Country: 'Saudi Arabia', Population: 828451525 }, + { Country: 'Mozambique', Population: 807229371 }, + { Country: 'Netherlands', Population: 803013980 }, + { Country: 'Ghana', Population: 801844889 }, + { Country: 'Kazakhstan', Population: 797168043 }, + { Country: 'Chile', Population: 696739897 }, + { Country: 'Yemen, Rep.', Population: 695646128 }, + { Country: 'Cameroon', Population: 664127790 }, + { Country: 'Syrian Arab Republic', Population: 663924524 }, + { Country: 'Madagascar', Population: 656478313 }, + { Country: 'Angola', Population: 641906296 }, + { Country: "Cote d'Ivoire", Population: 634194484 }, + { Country: 'Hungary', Population: 566995908 }, + { Country: 'Czech Republic', Population: 559416359 }, + { Country: 'Belgium', Population: 551921585 }, + { Country: 'Cuba', Population: 550461345 }, + { Country: 'Greece', Population: 547065293 }, + { Country: 'Ecuador', Population: 537148542 }, + { Country: 'Portugal', Population: 536945679 }, + { Country: 'Belarus', Population: 524490000 }, + { Country: 'Cambodia', Population: 523555378 }, + { Country: 'Zimbabwe', Population: 509866860 }, + { Country: 'Burkina Faso', Population: 505122912 }, + { Country: 'Mali', Population: 500758830 }, + { Country: 'Guatemala', Population: 498361800 }, + { Country: 'Niger', Population: 471910464 }, + { Country: 'Malawi', Population: 470725354 }, + { Country: 'Sweden', Population: 468210684 }, + { Country: 'Bulgaria', Population: 456247765 }, + { Country: 'Zambia', Population: 438847085 }, + { Country: 'Austria', Population: 426785647 }, + { Country: 'Tunisia', Population: 415992799 }, + { Country: 'Senegal', Population: 414475224 }, + { Country: 'Haiti', Population: 377521290 }, + { Country: 'Azerbaijan', Population: 374210660 }, + { Country: 'Dominican Republic', Population: 373939753 }, + { Country: 'Switzerland', Population: 369360744 }, + { Country: 'Bolivia', Population: 368308373 }, + { Country: 'Guinea', Population: 362469063 }, + { Country: 'Chad', Population: 355875809 }, + { Country: 'Rwanda', Population: 347121852 }, + { Country: 'Somalia', Population: 332677926 }, + { Country: 'South Sudan', Population: 319024522 }, + { Country: 'Burundi', Population: 305731834 }, + { Country: 'Hong Kong SAR, China', Population: 298353905 }, + { Country: 'Benin', Population: 290736360 }, + { Country: 'Denmark', Population: 283435789 }, + { Country: 'Slovak Republic', Population: 276228375 }, + { Country: 'Finland', Population: 271585488 }, + { Country: 'Tajikistan', Population: 267603756 }, + { Country: 'El Salvador', Population: 266413287 }, + { Country: 'Israel', Population: 263866720 }, + { Country: 'Honduras', Population: 257791863 }, + { Country: 'Croatia', Population: 246197511 }, + { Country: 'Georgia', Population: 241070850 }, + { Country: 'Norway', Population: 233337059 }, + { Country: 'Papua New Guinea', Population: 228299012 }, + { Country: 'Lao PDR', Population: 227340983 }, + { Country: 'Kyrgyz Republic', Population: 222809200 }, + { Country: 'Paraguay', Population: 221768661 }, + { Country: 'Libya', Population: 217716251 }, + { Country: 'Bosnia and Herzegovina', Population: 215521543 }, + { Country: 'Nicaragua', Population: 213048662 }, + { Country: 'Togo', Population: 204624027 }, + { Country: 'Sierra Leone', Population: 203443826 }, + { Country: 'Ireland', Population: 196019322 }, + { Country: 'Turkmenistan', Population: 189687365 }, + { Country: 'New Zealand', Population: 187593600 }, + { Country: 'Serbia', Population: 186596480 }, + { Country: 'Moldova', Population: 186156257 }, + { Country: 'Lithuania', Population: 182416949 }, + { Country: 'Puerto Rico', Population: 181515497 }, + { Country: 'Jordan', Population: 180850641 }, + { Country: 'Singapore', Population: 173168000 }, + { Country: 'Uruguay', Population: 167612670 }, + { Country: 'Costa Rica', Population: 163515714 }, + { Country: 'Lebanon', Population: 162031498 }, + { Country: 'Eritrea', Population: 161125877 }, + { Country: 'Armenia', Population: 160782905 }, + { Country: 'Central African Republic', Population: 158650217 }, + { Country: 'Albania', Population: 148154320 }, + { Country: 'United Arab Emirates', Population: 134952923 }, + { Country: 'Panama', Population: 130974461 }, + { Country: 'Congo, Rep.', Population: 130701144 }, + { Country: 'Latvia', Population: 130544986 }, + { Country: 'Liberia', Population: 125666085 }, + { Country: 'Jamaica', Population: 124779119 }, + { Country: 'Mauritania', Population: 113489314 }, + { Country: 'Mongolia', Population: 106717826 }, + { Country: 'Slovenia', Population: 104119695 }, + { Country: 'Macedonia, FYR', Population: 104100695 }, + { Country: 'Oman', Population: 93132249 }, + { Country: 'Kosovo', Population: 86627232 }, + { Country: 'Kuwait', Population: 84737006 }, + { Country: 'Lesotho', Population: 81971241 }, + { Country: 'West Bank and Gaza', Population: 77390117 }, + { Country: 'Estonia', Population: 77119567 }, + { Country: 'Namibia', Population: 75238033 }, + { Country: 'Botswana', Population: 70510085 }, + { Country: 'Trinidad and Tobago', Population: 62771502 }, + { Country: 'Guinea-Bissau', Population: 58400669 }, + { Country: 'Mauritius', Population: 56066051 }, + { Country: 'Gabon', Population: 52489952 }, + { Country: 'Gambia, The', Population: 50232086 }, + { Country: 'Cyprus', Population: 43711039 }, + { Country: 'Swaziland', Population: 42858935 }, + { Country: 'Timor-Leste', Population: 41694123 }, + { Country: 'Guyana', Population: 39868752 }, + { Country: 'Fiji', Population: 37505227 }, + { Country: 'Montenegro', Population: 31652512 }, + { Country: 'Qatar', Population: 30075210 }, + { Country: 'Bahrain', Population: 29724096 }, + { Country: 'Djibouti', Population: 26324244 }, + { Country: 'Bhutan', Population: 25987074 }, + { Country: 'Comoros', Population: 22692936 }, + { Country: 'Suriname', Population: 22687861 }, + { Country: 'Equatorial Guinea', Population: 22627794 }, + { Country: 'Luxembourg', Population: 21852156 }, + { Country: 'Malta', Population: 19363458 }, + { Country: 'Cabo Verde', Population: 19178461 }, + { Country: 'Macao SAR, China', Population: 18882494 }, + { Country: 'Solomon Islands', Population: 16859526 }, + { Country: 'Barbados', Population: 14146501 }, + { Country: 'Iceland', Population: 13716537 }, + { Country: 'Bahamas, The', Population: 13446111 }, + { Country: 'Brunei Darussalam', Population: 13322318 }, + { Country: 'Maldives', Population: 11478624 }, + { Country: 'Belize', Population: 10571460 }, + { Country: 'French Polynesia', Population: 9974982 }, + { Country: 'New Caledonia', Population: 9225822 }, + { Country: 'Samoa', Population: 8770470 }, + { Country: 'Vanuatu', Population: 7966814 }, + { Country: 'Curacao', Population: 7898637 }, + { Country: 'Channel Islands', Population: 7515697 }, + { Country: 'St. Lucia', Population: 7336842 }, + { Country: 'Guam', Population: 6647797 }, + { Country: 'Sao Tome and Principe', Population: 6169644 }, + { Country: 'St. Vincent and the Grenadines', Population: 5557117 }, + { Country: 'Grenada', Population: 5366107 }, + { Country: 'Tonga', Population: 5038574 }, + { Country: 'Virgin Islands (U.S.)', Population: 5006756 }, + { Country: 'Micronesia, Fed. Sts.', Population: 4627492 }, + { Country: 'Aruba', Population: 4048374 }, + { Country: 'Antigua and Barbuda', Population: 3887170 }, + { Country: 'Dominica', Population: 3881071 }, + { Country: 'Kiribati', Population: 3874990 }, + { Country: 'Seychelles', Population: 3761184 }, + { Country: 'Isle of Man', Population: 3728525 }, + { Country: 'Bermuda', Population: 3159267 }, + { Country: 'Greenland', Population: 2807533 }, + { Country: 'Andorra', Population: 2704725 }, + { Country: 'St. Kitts and Nevis', Population: 2535482 }, + { Country: 'Faeroe Islands', Population: 2399439 }, + { Country: 'American Samoa', Population: 2294886 }, + { Country: 'Marshall Islands', Population: 2086174 }, + { Country: 'Northern Mariana Islands', Population: 2015842 }, + { Country: 'Monaco', Population: 1595554 }, + { Country: 'Liechtenstein', Population: 1527171 }, + { Country: 'Cayman Islands', Population: 1480956 }, + { Country: 'San Marino', Population: 1298411 }, + { Country: 'St. Martin (French part)', Population: 1020457 }, + { Country: 'Palau', Population: 833299 }, + { Country: 'Turks and Caicos Islands', Population: 775185 }, + { Country: 'Sint Maarten (Dutch part)', Population: 597781 }, + { Country: 'Tuvalu', Population: 466709 }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Radar/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Radar/Stories.tsx new file mode 100644 index 000000000000..a6682c6042bd --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Radar/Stories.tsx @@ -0,0 +1,69 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core'; +import { withKnobs } from '@storybook/addon-knobs'; +import { + EchartsRadarChartPlugin, + RadarTransformProps, +} from '@superset-ui/plugin-chart-echarts'; +import { withResizableChartDemo } from '../../../../shared/components/ResizableChartDemo'; +import { basic } from './data'; + +new EchartsRadarChartPlugin().configure({ key: 'echarts-radar' }).register(); + +getChartTransformPropsRegistry().registerValue( + 'echarts-radar', + RadarTransformProps, +); + +export default { + title: 'Chart Plugins/plugin-chart-echarts/Radar', + decorators: [withKnobs, withResizableChartDemo], +}; + +export const Radar = ({ width, height }) => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Radar/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Radar/data.ts new file mode 100644 index 000000000000..90960524043e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Radar/data.ts @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export const basic = [ + { + Sales: 4200, + Administration: 3000, + 'Information Technology': 20000, + 'Customer Support': 35000, + Development: 50000, + Marketing: 18000, + }, + { + Sales: 5000, + Administration: 14000, + 'Information Technology': 28000, + 'Customer Support': 26000, + Development: 42000, + Marketing: 21000, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/Stories.tsx new file mode 100644 index 000000000000..3c20a76c0634 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/Stories.tsx @@ -0,0 +1,86 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core'; +import { boolean, number, select, withKnobs } from '@storybook/addon-knobs'; +import { + EchartsTimeseriesChartPlugin, + TimeseriesTransformProps, +} from '@superset-ui/plugin-chart-echarts'; +import data from './data'; +import { withResizableChartDemo } from '../../../../shared/components/ResizableChartDemo'; + +new EchartsTimeseriesChartPlugin() + .configure({ key: 'echarts-timeseries' }) + .register(); + +getChartTransformPropsRegistry().registerValue( + 'echarts-timeseries', + TimeseriesTransformProps, +); + +export default { + title: 'Chart Plugins/plugin-chart-echarts/Timeseries', + decorators: [withKnobs, withResizableChartDemo], +}; + +export const Timeseries = ({ width, height }) => { + const forecastEnabled = boolean('Enable forecast', true); + const queryData = data + .map(row => + forecastEnabled + ? row + : { + // eslint-disable-next-line no-underscore-dangle + __timestamp: row.__timestamp, + Boston: row.Boston, + California: row.California, + WestTexNewMexico: row.WestTexNewMexico, + }, + ) + .filter(row => forecastEnabled || !!row.Boston); + return ( + + ); +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/data.ts new file mode 100644 index 000000000000..7d4f16bf2762 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/data.ts @@ -0,0 +1,3336 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default [ + { + __timestamp: 1419811200000, + Boston__yhat: 1.5348466045278903, + Boston__yhat_lower: 1.4108696830290821, + Boston__yhat_upper: 1.65406759478647, + Boston: 1.425, + California__yhat: 1.1428578093572317, + California__yhat_lower: 0.9954265301846809, + California__yhat_upper: 1.285336837473888, + California: 1.085, + WestTexNewMexico__yhat: 1.2189159706952082, + WestTexNewMexico__yhat_lower: 1.04104376708674, + WestTexNewMexico__yhat_upper: 1.3729774938431487, + WestTexNewMexico: 1.195, + }, + { + __timestamp: 1420416000000, + Boston__yhat: 1.5183086928032201, + Boston__yhat_lower: 1.4051623626305831, + Boston__yhat_upper: 1.6373864508998999, + Boston: 1.52, + California__yhat: 1.1473836815806109, + California__yhat_lower: 0.9896908958316125, + California__yhat_upper: 1.3074486619072236, + California: 1.01, + WestTexNewMexico__yhat: 1.2101876636102695, + WestTexNewMexico__yhat_lower: 1.0531768381015862, + WestTexNewMexico__yhat_upper: 1.3798811980337082, + WestTexNewMexico: 1.305, + }, + { + __timestamp: 1421020800000, + Boston__yhat: 1.5008792239446107, + Boston__yhat_lower: 1.3900408734935294, + Boston__yhat_upper: 1.6209717523914786, + Boston: 1.615, + California__yhat: 1.1257411477192287, + California__yhat_lower: 0.9647179126679808, + California__yhat_upper: 1.2856214776337003, + California: 1.13, + WestTexNewMexico__yhat: 1.211700721257458, + WestTexNewMexico__yhat_lower: 1.0512509758817796, + WestTexNewMexico__yhat_upper: 1.3838299538827643, + WestTexNewMexico: 1.255, + }, + { + __timestamp: 1421625600000, + Boston__yhat: 1.493895763520492, + Boston__yhat_lower: 1.3819463100452443, + Boston__yhat_upper: 1.614560073797367, + Boston: 1.59, + California__yhat: 1.0914497359848156, + California__yhat_lower: 0.9309999613012108, + California__yhat_upper: 1.2413000315404008, + California: 1.18, + WestTexNewMexico__yhat: 1.208627046579019, + WestTexNewMexico__yhat_lower: 1.0443728779662684, + WestTexNewMexico__yhat_upper: 1.3675637830491076, + WestTexNewMexico: 1.215, + }, + { + __timestamp: 1422230400000, + Boston__yhat: 1.5016078116606606, + Boston__yhat_lower: 1.3867245804741557, + Boston__yhat_upper: 1.614234955854214, + Boston: 1.5, + California__yhat: 1.0697859033873383, + California__yhat_lower: 0.9250294445931526, + California__yhat_upper: 1.227180419756037, + California: 0.98, + WestTexNewMexico__yhat: 1.1903524073209464, + WestTexNewMexico__yhat_lower: 1.0158621722285877, + WestTexNewMexico__yhat_upper: 1.3552685059028697, + WestTexNewMexico: 1.24, + }, + { + __timestamp: 1422835200000, + Boston__yhat: 1.5159923617934186, + Boston__yhat_lower: 1.3970137282601371, + Boston__yhat_upper: 1.6308844178549995, + Boston: 1.475, + California__yhat: 1.0746946690720922, + California__yhat_lower: 0.9113788241318873, + California__yhat_upper: 1.2273689220316724, + California: 1.13, + WestTexNewMexico__yhat: 1.162418169193016, + WestTexNewMexico__yhat_lower: 0.984399666972796, + WestTexNewMexico__yhat_upper: 1.3286127921414361, + WestTexNewMexico: 1.19, + }, + { + __timestamp: 1423440000000, + Boston__yhat: 1.525604106275286, + Boston__yhat_lower: 1.4091552054110317, + Boston__yhat_upper: 1.6398544651033324, + Boston: 1.555, + California__yhat: 1.0983484232374483, + California__yhat_lower: 0.9499667479813172, + California__yhat_upper: 1.2604622036877084, + California: 1.24, + WestTexNewMexico__yhat: 1.1407497573494716, + WestTexNewMexico__yhat_lower: 0.9682090338277108, + WestTexNewMexico__yhat_upper: 1.3110751375528853, + WestTexNewMexico: 1.24, + }, + { + __timestamp: 1424044800000, + Boston__yhat: 1.5285159859188788, + Boston__yhat_lower: 1.4151325345500827, + Boston__yhat_upper: 1.63898403722097, + Boston: 1.485, + California__yhat: 1.1215587530856748, + California__yhat_lower: 0.9680608180357422, + California__yhat_upper: 1.282442960930767, + California: 1.185, + WestTexNewMexico__yhat: 1.1360040254613264, + WestTexNewMexico__yhat_lower: 0.963307750313048, + WestTexNewMexico__yhat_upper: 1.2986544671046583, + WestTexNewMexico: 1.28, + }, + { + __timestamp: 1424649600000, + Boston__yhat: 1.5334822003771225, + Boston__yhat_lower: 1.4176345632105387, + Boston__yhat_upper: 1.6496071238192505, + Boston: 1.48, + California__yhat: 1.1336412205342397, + California__yhat_lower: 0.9743289540694136, + California__yhat_upper: 1.2898768461219847, + California: 0.995, + WestTexNewMexico__yhat: 1.1446754348884136, + WestTexNewMexico__yhat_lower: 0.986235125109336, + WestTexNewMexico__yhat_upper: 1.307986287217312, + WestTexNewMexico: 1.24, + }, + { + __timestamp: 1425254400000, + Boston__yhat: 1.547848654545939, + Boston__yhat_lower: 1.4328177356803633, + Boston__yhat_upper: 1.673661661344583, + Boston: 1.54, + California__yhat: 1.1421270972002817, + California__yhat_lower: 0.9880212170643778, + California__yhat_upper: 1.298074311825913, + California: 1.22, + WestTexNewMexico__yhat: 1.1538926041448758, + WestTexNewMexico__yhat_lower: 1.0019767923899103, + WestTexNewMexico__yhat_upper: 1.3221026377048228, + WestTexNewMexico: 1.16, + }, + { + __timestamp: 1425859200000, + Boston__yhat: 1.5675203083502125, + Boston__yhat_lower: 1.4543946077807537, + Boston__yhat_upper: 1.6864674764386627, + Boston: 1.62, + California__yhat: 1.1632572393543539, + California__yhat_lower: 0.9970086508003331, + California__yhat_upper: 1.3209871054747437, + California: 1.29, + WestTexNewMexico__yhat: 1.1530029605889838, + WestTexNewMexico__yhat_lower: 0.9729319698723828, + WestTexNewMexico__yhat_upper: 1.3054475293729533, + WestTexNewMexico: 1.285, + }, + { + __timestamp: 1426464000000, + Boston__yhat: 1.581607931619551, + Boston__yhat_lower: 1.4723154031359578, + Boston__yhat_upper: 1.7069606387126863, + Boston: 1.56, + California__yhat: 1.2030769562029524, + California__yhat_lower: 1.04933598570031, + California__yhat_upper: 1.3591487662881023, + California: 1.18, + WestTexNewMexico__yhat: 1.1414541767825306, + WestTexNewMexico__yhat_lower: 0.9717441065782068, + WestTexNewMexico__yhat_upper: 1.312661843170456, + WestTexNewMexico: 1.345, + }, + { + __timestamp: 1427068800000, + Boston__yhat: 1.5853316979769883, + Boston__yhat_lower: 1.4708451743058149, + Boston__yhat_upper: 1.7117728705026014, + Boston: 1.585, + California__yhat: 1.2479444775684796, + California__yhat_lower: 1.0837411336417548, + California__yhat_upper: 1.3998890149965297, + California: 1.315, + WestTexNewMexico__yhat: 1.1283059431234486, + WestTexNewMexico__yhat_lower: 0.9778619797162577, + WestTexNewMexico__yhat_upper: 1.2954488963192434, + WestTexNewMexico: 1.255, + }, + { + __timestamp: 1427673600000, + Boston__yhat: 1.5841383828593085, + Boston__yhat_lower: 1.4654575751911438, + Boston__yhat_upper: 1.6946343035808373, + Boston: 1.59, + California__yhat: 1.2739437360014318, + California__yhat_lower: 1.1100282969104833, + California__yhat_upper: 1.428117476226516, + California: 1.32, + WestTexNewMexico__yhat: 1.1249371539002126, + WestTexNewMexico__yhat_lower: 0.9695967792994402, + WestTexNewMexico__yhat_upper: 1.287869970682996, + WestTexNewMexico: 1.28, + }, + { + __timestamp: 1428278400000, + Boston__yhat: 1.5839751550296846, + Boston__yhat_lower: 1.4658964846078435, + Boston__yhat_upper: 1.710402200124056, + Boston: 1.56, + California__yhat: 1.2665706718822929, + California__yhat_lower: 1.1158333765771138, + California__yhat_upper: 1.4320483959058965, + California: 1.28, + WestTexNewMexico__yhat: 1.1355965911503207, + WestTexNewMexico__yhat_lower: 0.964066677858961, + WestTexNewMexico__yhat_upper: 1.3022575299852956, + WestTexNewMexico: 1.21, + }, + { + __timestamp: 1428883200000, + Boston__yhat: 1.5816178634356794, + Boston__yhat_lower: 1.4715929905435854, + Boston__yhat_upper: 1.7003122219671367, + Boston: 1.545, + California__yhat: 1.232881524770783, + California__yhat_lower: 1.0767786935430315, + California__yhat_upper: 1.3959964303961667, + California: 1.285, + WestTexNewMexico__yhat: 1.1523828742682716, + WestTexNewMexico__yhat_lower: 0.9811195853500172, + WestTexNewMexico__yhat_upper: 1.3138046554765905, + WestTexNewMexico: 1.15, + }, + { + __timestamp: 1429488000000, + Boston__yhat: 1.5693505553611033, + Boston__yhat_lower: 1.454366551073654, + Boston__yhat_upper: 1.672997430777775, + Boston: 1.57, + California__yhat: 1.1961960021745208, + California__yhat_lower: 1.0574856955397094, + California__yhat_upper: 1.3527191406913728, + California: 1.325, + WestTexNewMexico__yhat: 1.1605683040698191, + WestTexNewMexico__yhat_lower: 1.0031473604785308, + WestTexNewMexico__yhat_upper: 1.3131490159580719, + WestTexNewMexico: 1.33, + }, + { + __timestamp: 1430092800000, + Boston__yhat: 1.548687090028952, + Boston__yhat_lower: 1.4345338808929986, + Boston__yhat_upper: 1.674291034018414, + Boston: 1.495, + California__yhat: 1.17944168965866, + California__yhat_lower: 1.0208437159576145, + California__yhat_upper: 1.3437648164186333, + California: 1.18, + WestTexNewMexico__yhat: 1.152452251304891, + WestTexNewMexico__yhat_lower: 0.9925163021235553, + WestTexNewMexico__yhat_upper: 1.33370469389031, + WestTexNewMexico: 1.125, + }, + { + __timestamp: 1430697600000, + Boston__yhat: 1.5339945463021136, + Boston__yhat_lower: 1.4131803310322042, + Boston__yhat_upper: 1.6534068731295286, + Boston: 1.58, + California__yhat: 1.1914708975476587, + California__yhat_lower: 1.0346943811155895, + California__yhat_upper: 1.346918284211045, + California: 1.165, + WestTexNewMexico__yhat: 1.136951442350726, + WestTexNewMexico__yhat_lower: 0.9785853981941628, + WestTexNewMexico__yhat_upper: 1.305120499270747, + WestTexNewMexico: 1.07, + }, + { + __timestamp: 1431302400000, + Boston__yhat: 1.538494530655746, + Boston__yhat_lower: 1.417157877783077, + Boston__yhat_upper: 1.6657402419552576, + Boston: 1.585, + California__yhat: 1.2250425993396363, + California__yhat_lower: 1.0694624006721893, + California__yhat_upper: 1.3779793141537178, + California: 1.285, + WestTexNewMexico__yhat: 1.131850140196041, + WestTexNewMexico__yhat_lower: 0.9693152036413223, + WestTexNewMexico__yhat_upper: 1.2969371429211514, + WestTexNewMexico: 1.06, + }, + { + __timestamp: 1431907200000, + Boston__yhat: 1.5586586605892516, + Boston__yhat_lower: 1.4437718674345732, + Boston__yhat_upper: 1.678444300307212, + Boston: 1.54, + California__yhat: 1.2640228484312774, + California__yhat_lower: 1.105695580617842, + California__yhat_upper: 1.4262751320209555, + California: 1.3, + WestTexNewMexico__yhat: 1.14279691969869, + WestTexNewMexico__yhat_lower: 0.9744635833347896, + WestTexNewMexico__yhat_upper: 1.309843116203469, + WestTexNewMexico: 1.065, + }, + { + __timestamp: 1432512000000, + Boston__yhat: 1.5775197465059267, + Boston__yhat_lower: 1.4598708798261923, + Boston__yhat_upper: 1.6911276338952719, + Boston: 1.6, + California__yhat: 1.292475578711032, + California__yhat_lower: 1.1228796890918014, + California__yhat_upper: 1.4471391733217347, + California: 1.24, + WestTexNewMexico__yhat: 1.151946670246945, + WestTexNewMexico__yhat_lower: 0.9787075088274869, + WestTexNewMexico__yhat_upper: 1.3257344034341332, + WestTexNewMexico: 1.065, + }, + { + __timestamp: 1433116800000, + Boston__yhat: 1.5847361491556036, + Boston__yhat_lower: 1.469478725883583, + Boston__yhat_upper: 1.698200477547973, + Boston: 1.625, + California__yhat: 1.301640708602741, + California__yhat_lower: 1.1448194258091566, + California__yhat_upper: 1.4657411831360765, + California: 1.325, + WestTexNewMexico__yhat: 1.1344270549760207, + WestTexNewMexico__yhat_lower: 0.9628949633601395, + WestTexNewMexico__yhat_upper: 1.2999364461809975, + WestTexNewMexico: 1.08, + }, + { + __timestamp: 1433721600000, + Boston__yhat: 1.588841301654564, + Boston__yhat_lower: 1.4701868286368829, + Boston__yhat_upper: 1.708276878629705, + Boston: 1.555, + California__yhat: 1.2945568932951903, + California__yhat_lower: 1.1357913193434988, + California__yhat_upper: 1.441658100122194, + California: 1.325, + WestTexNewMexico__yhat: 1.090609476160724, + WestTexNewMexico__yhat_lower: 0.9171628023326979, + WestTexNewMexico__yhat_upper: 1.2519104172461586, + WestTexNewMexico: 1.125, + }, + { + __timestamp: 1434326400000, + Boston__yhat: 1.60467809761448, + Boston__yhat_lower: 1.4872087156545453, + Boston__yhat_upper: 1.7206390174307566, + Boston: 1.65, + California__yhat: 1.2866911289244536, + California__yhat_lower: 1.1223304657283866, + California__yhat_upper: 1.4489712765550424, + California: 1.38, + WestTexNewMexico__yhat: 1.058286202137859, + WestTexNewMexico__yhat_lower: 0.8983319008178635, + WestTexNewMexico__yhat_upper: 1.2230688588329341, + WestTexNewMexico: 1.2, + }, + { + __timestamp: 1434931200000, + Boston__yhat: 1.6296561292532252, + Boston__yhat_lower: 1.5147117985377605, + Boston__yhat_upper: 1.7484553862428687, + Boston: 1.64, + California__yhat: 1.298704180420278, + California__yhat_lower: 1.143996831592798, + California__yhat_upper: 1.4569530963291766, + California: 1.385, + WestTexNewMexico__yhat: 1.0837741118769433, + WestTexNewMexico__yhat_lower: 0.9165400527844431, + WestTexNewMexico__yhat_upper: 1.2633713277285281, + WestTexNewMexico: 1.145, + }, + { + __timestamp: 1435536000000, + Boston__yhat: 1.6387330700540754, + Boston__yhat_lower: 1.5214382052884348, + Boston__yhat_upper: 1.7593446818133576, + Boston: 1.7, + California__yhat: 1.3419159537936654, + California__yhat_lower: 1.1824389777530346, + California__yhat_upper: 1.5077615808876883, + California: 1.395, + WestTexNewMexico__yhat: 1.1753283438356257, + WestTexNewMexico__yhat_lower: 1.0084515427055218, + WestTexNewMexico__yhat_upper: 1.3411968014102083, + WestTexNewMexico: 1.18, + }, + { + __timestamp: 1436140800000, + Boston__yhat: 1.6078378110129543, + Boston__yhat_lower: 1.4858780410049368, + Boston__yhat_upper: 1.7333942938670541, + Boston: 1.665, + California__yhat: 1.4064610022347392, + California__yhat_lower: 1.2518481325894115, + California__yhat_upper: 1.5631376401498112, + California: 1.465, + WestTexNewMexico__yhat: 1.2876812690769497, + WestTexNewMexico__yhat_lower: 1.118277996711148, + WestTexNewMexico__yhat_upper: 1.453601368173299, + WestTexNewMexico: 1.365, + }, + { + __timestamp: 1436745600000, + Boston__yhat: 1.54126454151401, + Boston__yhat_lower: 1.4242640278872807, + Boston__yhat_upper: 1.658820938407199, + Boston: 1.615, + California__yhat: 1.4648637533773619, + California__yhat_lower: 1.3165708549095063, + California__yhat_upper: 1.6123722518242183, + California: 1.535, + WestTexNewMexico__yhat: 1.359084635413718, + WestTexNewMexico__yhat_lower: 1.1923924916510695, + WestTexNewMexico__yhat_upper: 1.5397046826260015, + WestTexNewMexico: 1.25, + }, + { + __timestamp: 1437350400000, + Boston__yhat: 1.4716975989229104, + Boston__yhat_lower: 1.3478802335545248, + Boston__yhat_upper: 1.5897005348114144, + Boston: 1.65, + California__yhat: 1.492196708250474, + California__yhat_lower: 1.3281011466171584, + California__yhat_upper: 1.6482617063876424, + California: 1.53, + WestTexNewMexico__yhat: 1.3665720856468249, + WestTexNewMexico__yhat_lower: 1.1985870084342607, + WestTexNewMexico__yhat_upper: 1.540444302838635, + WestTexNewMexico: 1.325, + }, + { + __timestamp: 1437955200000, + Boston__yhat: 1.4316465654883939, + Boston__yhat_lower: 1.3151590237205186, + Boston__yhat_upper: 1.5502363732881383, + Boston: 1.645, + California__yhat: 1.486878703643501, + California__yhat_lower: 1.3387136764087475, + California__yhat_upper: 1.6406538496379224, + California: 1.575, + WestTexNewMexico__yhat: 1.3430004296140337, + WestTexNewMexico__yhat_lower: 1.1696134333274417, + WestTexNewMexico__yhat_upper: 1.5143254675484394, + WestTexNewMexico: 1.345, + }, + { + __timestamp: 1438560000000, + Boston__yhat: 1.4271527274427822, + Boston__yhat_lower: 1.3009869979033386, + Boston__yhat_upper: 1.5444571765505344, + Boston: 1.545, + California__yhat: 1.4721251850161223, + California__yhat_lower: 1.3130424764080704, + California__yhat_upper: 1.6322300582937983, + California: 1.565, + WestTexNewMexico__yhat: 1.3385023304664054, + WestTexNewMexico__yhat_lower: 1.169557000507694, + WestTexNewMexico__yhat_upper: 1.501423586440048, + WestTexNewMexico: 1.3, + }, + { + __timestamp: 1439164800000, + Boston__yhat: 1.4407299749907534, + Boston__yhat_lower: 1.323436292855159, + Boston__yhat_upper: 1.5636100946562665, + Boston: 1.62, + California__yhat: 1.4747274927843579, + California__yhat_lower: 1.3090246017944651, + California__yhat_upper: 1.6212028571910875, + California: 1.535, + WestTexNewMexico__yhat: 1.369033029466056, + WestTexNewMexico__yhat_lower: 1.2063418855681307, + WestTexNewMexico__yhat_upper: 1.5410908830393701, + WestTexNewMexico: 1.215, + }, + { + __timestamp: 1439769600000, + Boston__yhat: 1.4558141240561584, + Boston__yhat_lower: 1.3384500860436346, + Boston__yhat_upper: 1.5593449899412495, + Boston: 1.535, + California__yhat: 1.5004588541583503, + California__yhat_lower: 1.3525771130800601, + California__yhat_upper: 1.6557709189818204, + California: 1.515, + WestTexNewMexico__yhat: 1.4078705349829708, + WestTexNewMexico__yhat_lower: 1.2465576754469605, + WestTexNewMexico__yhat_upper: 1.5765990094113416, + WestTexNewMexico: 1.205, + }, + { + __timestamp: 1440374400000, + Boston__yhat: 1.4714837581619955, + Boston__yhat_lower: 1.3542849882799493, + Boston__yhat_upper: 1.587250053083524, + Boston: 1.58, + California__yhat: 1.5302322554730527, + California__yhat_lower: 1.3712263333300627, + California__yhat_upper: 1.6766472256899916, + California: 1.53, + WestTexNewMexico__yhat: 1.425931627994101, + WestTexNewMexico__yhat_lower: 1.2620778981321579, + WestTexNewMexico__yhat_upper: 1.5920830784029816, + WestTexNewMexico: 1.255, + }, + { + __timestamp: 1440979200000, + Boston__yhat: 1.491444403016728, + Boston__yhat_lower: 1.3719274262306433, + Boston__yhat_upper: 1.6081603165448515, + Boston: 1.54, + California__yhat: 1.5411777460499874, + California__yhat_lower: 1.3904365117687372, + California__yhat_upper: 1.694546785101698, + California: 1.54, + WestTexNewMexico__yhat: 1.4320134472163049, + WestTexNewMexico__yhat_lower: 1.273365593253299, + WestTexNewMexico__yhat_upper: 1.5931974288222444, + WestTexNewMexico: 1.29, + }, + { + __timestamp: 1441584000000, + Boston__yhat: 1.5051820756139245, + Boston__yhat_lower: 1.3835553327078385, + Boston__yhat_upper: 1.6240589221993718, + Boston: 1.515, + California__yhat: 1.5313765368007273, + California__yhat_lower: 1.3681294180618269, + California__yhat_upper: 1.6892153479755334, + California: 1.55, + WestTexNewMexico__yhat: 1.4638751687570226, + WestTexNewMexico__yhat_lower: 1.2864210645323784, + WestTexNewMexico__yhat_upper: 1.6187694320540935, + WestTexNewMexico: 1.37, + }, + { + __timestamp: 1442188800000, + Boston__yhat: 1.4894325587299742, + Boston__yhat_lower: 1.3727869467332703, + Boston__yhat_upper: 1.6084226338870418, + Boston: 1.58, + California__yhat: 1.522640140138669, + California__yhat_lower: 1.3734557489282102, + California__yhat_upper: 1.6743091049728624, + California: 1.53, + WestTexNewMexico__yhat: 1.5400751405380166, + WestTexNewMexico__yhat_lower: 1.3774375535282375, + WestTexNewMexico__yhat_upper: 1.723050870346822, + WestTexNewMexico: 1.485, + }, + { + __timestamp: 1442793600000, + Boston__yhat: 1.4322083667601824, + Boston__yhat_lower: 1.3101390870258312, + Boston__yhat_upper: 1.5571183048764867, + Boston: 1.535, + California__yhat: 1.5378925480202739, + California__yhat_lower: 1.3886019658089772, + California__yhat_upper: 1.6978496884233474, + California: 1.445, + WestTexNewMexico__yhat: 1.6287478669084643, + WestTexNewMexico__yhat_lower: 1.478287058860101, + WestTexNewMexico__yhat_upper: 1.795633152002224, + WestTexNewMexico: 1.275, + }, + { + __timestamp: 1443398400000, + Boston__yhat: 1.351816621968265, + Boston__yhat_lower: 1.2376540378452352, + Boston__yhat_upper: 1.4729299390946764, + Boston: 1.175, + California__yhat: 1.5759661525657334, + California__yhat_lower: 1.4231456717732236, + California__yhat_upper: 1.733586091013307, + California: 1.51, + WestTexNewMexico__yhat: 1.6721603417638533, + WestTexNewMexico__yhat_lower: 1.508503941330916, + WestTexNewMexico__yhat_upper: 1.8462459308936394, + WestTexNewMexico: 1.43, + }, + { + __timestamp: 1444003200000, + Boston__yhat: 1.286486461072129, + Boston__yhat_lower: 1.1680220690052265, + Boston__yhat_upper: 1.4035977590666622, + Boston: 1.2, + California__yhat: 1.6097139361369517, + California__yhat_lower: 1.4449082988736466, + California__yhat_upper: 1.7603053272180196, + California: 1.575, + WestTexNewMexico__yhat: 1.639290251177639, + WestTexNewMexico__yhat_lower: 1.473164681029519, + WestTexNewMexico__yhat_upper: 1.8064957246654998, + WestTexNewMexico: 1.47, + }, + { + __timestamp: 1444608000000, + Boston__yhat: 1.2630051620190224, + Boston__yhat_lower: 1.1467376145041555, + Boston__yhat_upper: 1.377446221614078, + Boston: 1.1, + California__yhat: 1.6098713751752662, + California__yhat_lower: 1.4600843147210683, + California__yhat_upper: 1.763955521152191, + California: 1.54, + WestTexNewMexico__yhat: 1.5551952931382806, + WestTexNewMexico__yhat_lower: 1.3962129897996904, + WestTexNewMexico__yhat_upper: 1.726357454658797, + WestTexNewMexico: 1.415, + }, + { + __timestamp: 1445212800000, + Boston__yhat: 1.276278781347193, + Boston__yhat_lower: 1.1580450205542776, + Boston__yhat_upper: 1.3920651070329326, + Boston: 1.145, + California__yhat: 1.571148844853862, + California__yhat_lower: 1.4083378535887405, + California__yhat_upper: 1.733966017882931, + California: 1.38, + WestTexNewMexico__yhat: 1.4722932415830279, + WestTexNewMexico__yhat_lower: 1.3050378331324088, + WestTexNewMexico__yhat_upper: 1.6418924805303612, + WestTexNewMexico: 1.41, + }, + { + __timestamp: 1445817600000, + Boston__yhat: 1.2991073481696098, + Boston__yhat_lower: 1.1878452793959065, + Boston__yhat_upper: 1.424293199867907, + Boston: 1.18, + California__yhat: 1.5150187954091354, + California__yhat_lower: 1.3476318997481405, + California__yhat_upper: 1.677657858675358, + California: 1.275, + WestTexNewMexico__yhat: 1.4199561158957161, + WestTexNewMexico__yhat_lower: 1.263080331712721, + WestTexNewMexico__yhat_upper: 1.5718996342613911, + WestTexNewMexico: 1.36, + }, + { + __timestamp: 1446422400000, + Boston__yhat: 1.308880887797368, + Boston__yhat_lower: 1.1862924735231104, + Boston__yhat_upper: 1.4168025454442827, + Boston: 1.13, + California__yhat: 1.467196455991084, + California__yhat_lower: 1.31469058277437, + California__yhat_upper: 1.6266140472626818, + California: 1.32, + WestTexNewMexico__yhat: 1.385809818488925, + WestTexNewMexico__yhat_lower: 1.2178231659097734, + WestTexNewMexico__yhat_upper: 1.5529990050614997, + WestTexNewMexico: 1.37, + }, + { + __timestamp: 1447027200000, + Boston__yhat: 1.3030202507313675, + Boston__yhat_lower: 1.1871331759675903, + Boston__yhat_upper: 1.4220034213332513, + Boston: 1.1, + California__yhat: 1.432710953584346, + California__yhat_lower: 1.2824951329265597, + California__yhat_upper: 1.586661603708675, + California: 1.21, + WestTexNewMexico__yhat: 1.3404954026443072, + WestTexNewMexico__yhat_lower: 1.1821733202392815, + WestTexNewMexico__yhat_upper: 1.5011656305912942, + WestTexNewMexico: 1.315, + }, + { + __timestamp: 1447632000000, + Boston__yhat: 1.2921088188147662, + Boston__yhat_lower: 1.1728345442847379, + Boston__yhat_upper: 1.4033407585022522, + Boston: 1.17, + California__yhat: 1.3931387239731783, + California__yhat_lower: 1.2432214745880616, + California__yhat_upper: 1.5498822030297323, + California: 1.26, + WestTexNewMexico__yhat: 1.276766317307663, + WestTexNewMexico__yhat_lower: 1.0999844956570386, + WestTexNewMexico__yhat_upper: 1.446687228788756, + WestTexNewMexico: 1.375, + }, + { + __timestamp: 1448236800000, + Boston__yhat: 1.2844900175902454, + Boston__yhat_lower: 1.1751725419028316, + Boston__yhat_upper: 1.4071918419152338, + Boston: 1.235, + California__yhat: 1.3280733170736323, + California__yhat_lower: 1.168686173676362, + California__yhat_upper: 1.4828349526176714, + California: 1.33, + WestTexNewMexico__yhat: 1.2150153206911025, + WestTexNewMexico__yhat_lower: 1.0575514264315589, + WestTexNewMexico__yhat_upper: 1.3738174939464802, + WestTexNewMexico: 1.445, + }, + { + __timestamp: 1448841600000, + Boston__yhat: 1.2805251906155837, + Boston__yhat_lower: 1.1707757707707065, + Boston__yhat_upper: 1.3999312395395147, + Boston: 1.155, + California__yhat: 1.2392981370779044, + California__yhat_lower: 1.0733806154601595, + California__yhat_upper: 1.4014509402239486, + California: 1.13, + WestTexNewMexico__yhat: 1.1770436607980383, + WestTexNewMexico__yhat_lower: 0.993583553273554, + WestTexNewMexico__yhat_upper: 1.333422820891247, + WestTexNewMexico: 0.74, + }, + { + __timestamp: 1449446400000, + Boston__yhat: 1.279267142574869, + Boston__yhat_lower: 1.1585705827510129, + Boston__yhat_upper: 1.3983536869495787, + Boston: 1.28, + California__yhat: 1.1539951545645342, + California__yhat_lower: 0.9889501465743559, + California__yhat_upper: 1.3053289212843744, + California: 1.13, + WestTexNewMexico__yhat: 1.162380614252356, + WestTexNewMexico__yhat_lower: 0.9965272411245537, + WestTexNewMexico__yhat_upper: 1.3253180367221955, + WestTexNewMexico: 1.29, + }, + { + __timestamp: 1450051200000, + Boston__yhat: 1.2787118961962491, + Boston__yhat_lower: 1.1556589108639785, + Boston__yhat_upper: 1.3974059178441982, + Boston: 1.24, + California__yhat: 1.1033410193628717, + California__yhat_lower: 0.9484140481619587, + California__yhat_upper: 1.2555949684536813, + California: 1.145, + WestTexNewMexico__yhat: 1.1520896013601485, + WestTexNewMexico__yhat_lower: 0.9997152961435812, + WestTexNewMexico__yhat_upper: 1.3302105801314474, + WestTexNewMexico: 1.375, + }, + { + __timestamp: 1450656000000, + Boston__yhat: 1.2776031555754677, + Boston__yhat_lower: 1.1612004466043093, + Boston__yhat_upper: 1.4035768713473475, + Boston: 1.305, + California__yhat: 1.096588309779605, + California__yhat_lower: 0.9415733506798203, + California__yhat_upper: 1.2490758356944123, + California: 1.175, + WestTexNewMexico__yhat: 1.1337111672954372, + WestTexNewMexico__yhat_lower: 0.954609055292553, + WestTexNewMexico__yhat_upper: 1.2836888913740563, + WestTexNewMexico: 1.26, + }, + { + __timestamp: 1451260800000, + Boston__yhat: 1.271539175332426, + Boston__yhat_lower: 1.1602294666896775, + Boston__yhat_upper: 1.3927950153599313, + Boston: 1.135, + California__yhat: 1.1135856352410936, + California__yhat_lower: 0.9662652364357288, + California__yhat_upper: 1.2612074611190671, + California: 1.08, + WestTexNewMexico__yhat: 1.1133445292606667, + WestTexNewMexico__yhat_lower: 0.9418476492410971, + WestTexNewMexico__yhat_upper: 1.2831043683897285, + WestTexNewMexico: 1.17, + }, + { + __timestamp: 1451865600000, + Boston__yhat: 1.2575630846272903, + Boston__yhat_lower: 1.1354044143577229, + Boston__yhat_upper: 1.3692268733397173, + Boston: 1.235, + California__yhat: 1.12226100903928, + California__yhat_lower: 0.9741560937727196, + California__yhat_upper: 1.2802079796970842, + California: 1.1, + WestTexNewMexico__yhat: 1.103916478884385, + WestTexNewMexico__yhat_lower: 0.9375018938141186, + WestTexNewMexico__yhat_upper: 1.2684161261288411, + WestTexNewMexico: 1.055, + }, + { + __timestamp: 1452470400000, + Boston__yhat: 1.240871451452071, + Boston__yhat_lower: 1.1207875334441375, + Boston__yhat_upper: 1.3557801021167788, + Boston: 1.075, + California__yhat: 1.1050499500884154, + California__yhat_lower: 0.9519377106454195, + California__yhat_upper: 1.2639244961611285, + California: 1.175, + WestTexNewMexico__yhat: 1.1063752098417272, + WestTexNewMexico__yhat_lower: 0.933034797251441, + WestTexNewMexico__yhat_upper: 1.2775982934739585, + WestTexNewMexico: 1.14, + }, + { + __timestamp: 1453075200000, + Boston__yhat: 1.2351539301132308, + Boston__yhat_lower: 1.115608031670262, + Boston__yhat_upper: 1.3497725810593808, + Boston: 1.255, + California__yhat: 1.0712579159094295, + California__yhat_lower: 0.9231059439029868, + California__yhat_upper: 1.2253443303060034, + California: 1.12, + WestTexNewMexico__yhat: 1.1073566395068044, + WestTexNewMexico__yhat_lower: 0.9417096932160844, + WestTexNewMexico__yhat_upper: 1.2702276029860524, + WestTexNewMexico: 1.295, + }, + { + __timestamp: 1453680000000, + Boston__yhat: 1.2443106245615798, + Boston__yhat_lower: 1.1191714513673907, + Boston__yhat_upper: 1.366170102828017, + Boston: 1.275, + California__yhat: 1.045805771170639, + California__yhat_lower: 0.8901943377875149, + California__yhat_upper: 1.2055800517103012, + California: 1.155, + WestTexNewMexico__yhat: 1.0939766137280855, + WestTexNewMexico__yhat_lower: 0.928443219272312, + WestTexNewMexico__yhat_upper: 1.2529202612702086, + WestTexNewMexico: 1.215, + }, + { + __timestamp: 1454284800000, + Boston__yhat: 1.262231934275936, + Boston__yhat_lower: 1.145846856606446, + Boston__yhat_upper: 1.3863438310201472, + Boston: 1.335, + California__yhat: 1.0460144566739604, + California__yhat_lower: 0.8934791370393727, + California__yhat_upper: 1.1997559677917369, + California: 1.04, + WestTexNewMexico__yhat: 1.0687956997109116, + WestTexNewMexico__yhat_lower: 0.9196708157905598, + WestTexNewMexico__yhat_upper: 1.2343440062370625, + WestTexNewMexico: 1.085, + }, + { + __timestamp: 1454889600000, + Boston__yhat: 1.2770169956947701, + Boston__yhat_lower: 1.159762228572037, + Boston__yhat_upper: 1.3955173344366019, + Boston: 1.285, + California__yhat: 1.0677334625792934, + California__yhat_lower: 0.9042156056309373, + California__yhat_upper: 1.2261522856156684, + California: 1.145, + WestTexNewMexico__yhat: 1.0469739471201525, + WestTexNewMexico__yhat_lower: 0.8794254462683391, + WestTexNewMexico__yhat_upper: 1.2098590403948033, + WestTexNewMexico: 1.045, + }, + { + __timestamp: 1455494400000, + Boston__yhat: 1.2844722621861224, + Boston__yhat_lower: 1.1612648265404686, + Boston__yhat_upper: 1.4073856326551464, + Boston: 1.33, + California__yhat: 1.0923560584092606, + California__yhat_lower: 0.9419672486858788, + California__yhat_upper: 1.2578935375962572, + California: 1.16, + WestTexNewMexico__yhat: 1.0411381678377096, + WestTexNewMexico__yhat_lower: 0.885569135600006, + WestTexNewMexico__yhat_upper: 1.206333182286366, + WestTexNewMexico: 1.09, + }, + { + __timestamp: 1456099200000, + Boston__yhat: 1.2946209118328944, + Boston__yhat_lower: 1.1763146584733386, + Boston__yhat_upper: 1.4046302946525782, + Boston: 1.36, + California__yhat: 1.1068253070435803, + California__yhat_lower: 0.9402023606548588, + California__yhat_upper: 1.2630289344685552, + California: 1.085, + WestTexNewMexico__yhat: 1.0506996394318162, + WestTexNewMexico__yhat_lower: 0.894064332771851, + WestTexNewMexico__yhat_upper: 1.2165355114608365, + WestTexNewMexico: 1.045, + }, + { + __timestamp: 1456704000000, + Boston__yhat: 1.3135717434204854, + Boston__yhat_lower: 1.19598226754922, + Boston__yhat_upper: 1.4281779942403379, + Boston: 1.4, + California__yhat: 1.1152150156807379, + California__yhat_lower: 0.9645078102017577, + California__yhat_upper: 1.2660783651448067, + California: 1.12, + WestTexNewMexico__yhat: 1.0632783642039607, + WestTexNewMexico__yhat_lower: 0.8944563104320433, + WestTexNewMexico__yhat_upper: 1.2189946417833857, + WestTexNewMexico: 1.045, + }, + { + __timestamp: 1457308800000, + Boston__yhat: 1.3393909950943907, + Boston__yhat_lower: 1.2247252996665285, + Boston__yhat_upper: 1.4514282373242835, + Boston: 1.32, + California__yhat: 1.1335714483377028, + California__yhat_lower: 0.9796821685944298, + California__yhat_upper: 1.292927457050505, + California: 1.185, + WestTexNewMexico__yhat: 1.0670347544656897, + WestTexNewMexico__yhat_lower: 0.9065118434460604, + WestTexNewMexico__yhat_upper: 1.2388026324708632, + WestTexNewMexico: 1.01, + }, + { + __timestamp: 1457913600000, + Boston__yhat: 1.3614707072711327, + Boston__yhat_lower: 1.2436506325494527, + Boston__yhat_upper: 1.4915346261974671, + Boston: 1.345, + California__yhat: 1.1709505943114045, + California__yhat_lower: 1.0281150114928468, + California__yhat_upper: 1.3219512681551355, + California: 1.185, + WestTexNewMexico__yhat: 1.059402114816066, + WestTexNewMexico__yhat_lower: 0.8908095073771191, + WestTexNewMexico__yhat_upper: 1.2232547094584372, + WestTexNewMexico: 1.085, + }, + { + __timestamp: 1458518400000, + Boston__yhat: 1.3731962396813198, + Boston__yhat_lower: 1.2580434253984463, + Boston__yhat_upper: 1.492475554460491, + Boston: 1.335, + California__yhat: 1.2170675127806618, + California__yhat_lower: 1.0693412261820932, + California__yhat_upper: 1.3789521035854242, + California: 1.175, + WestTexNewMexico__yhat: 1.0481116081191288, + WestTexNewMexico__yhat_lower: 0.8799236826031198, + WestTexNewMexico__yhat_upper: 1.2085461080495927, + WestTexNewMexico: 1.06, + }, + { + __timestamp: 1459123200000, + Boston__yhat: 1.3813962329619323, + Boston__yhat_lower: 1.26161432990456, + Boston__yhat_upper: 1.4956362001975996, + Boston: 1.42, + California__yhat: 1.2492756158849017, + California__yhat_lower: 1.0902577705631182, + California__yhat_upper: 1.3961114387176121, + California: 1.16, + WestTexNewMexico__yhat: 1.0453669318672152, + WestTexNewMexico__yhat_lower: 0.880018640334351, + WestTexNewMexico__yhat_upper: 1.2114783493039134, + WestTexNewMexico: 1.01, + }, + { + __timestamp: 1459728000000, + Boston__yhat: 1.3901037265229272, + Boston__yhat_lower: 1.2770286998811706, + Boston__yhat_upper: 1.5062632276621368, + Boston: 1.335, + California__yhat: 1.2492550362056745, + California__yhat_lower: 1.104424197641724, + California__yhat_upper: 1.3982138003395288, + California: 1.17, + WestTexNewMexico__yhat: 1.0567507538087313, + WestTexNewMexico__yhat_lower: 0.8882903778713199, + WestTexNewMexico__yhat_upper: 1.2202271780312777, + WestTexNewMexico: 1.04, + }, + { + __timestamp: 1460332800000, + Boston__yhat: 1.3978691117516269, + Boston__yhat_lower: 1.2803306353511645, + Boston__yhat_upper: 1.513787192951786, + Boston: 1.335, + California__yhat: 1.2200894896539514, + California__yhat_lower: 1.0637919122116424, + California__yhat_upper: 1.3817089822591981, + California: 1.16, + WestTexNewMexico__yhat: 1.0764809347132152, + WestTexNewMexico__yhat_lower: 0.903254971967084, + WestTexNewMexico__yhat_upper: 1.2410429345467036, + WestTexNewMexico: 1.045, + }, + { + __timestamp: 1460937600000, + Boston__yhat: 1.3967995570914404, + Boston__yhat_lower: 1.2775524616045004, + Boston__yhat_upper: 1.5128645378452974, + Boston: 1.4, + California__yhat: 1.1832691323436206, + California__yhat_lower: 1.0305934334474776, + California__yhat_upper: 1.3356802771773342, + California: 1.115, + WestTexNewMexico__yhat: 1.090164068838935, + WestTexNewMexico__yhat_lower: 0.9300661576818052, + WestTexNewMexico__yhat_upper: 1.2536103431855903, + WestTexNewMexico: 1.065, + }, + { + __timestamp: 1461542400000, + Boston__yhat: 1.3859697249253664, + Boston__yhat_lower: 1.2636249671382607, + Boston__yhat_upper: 1.5049262303685809, + Boston: 1.42, + California__yhat: 1.1630585559396942, + California__yhat_lower: 1.0068041367734835, + California__yhat_upper: 1.3142932998835315, + California: 0.995, + WestTexNewMexico__yhat: 1.0877981841342876, + WestTexNewMexico__yhat_lower: 0.9234728270737066, + WestTexNewMexico__yhat_upper: 1.2675215898735945, + WestTexNewMexico: 0.91, + }, + { + __timestamp: 1462147200000, + Boston__yhat: 1.3780621889016782, + Boston__yhat_lower: 1.2655370800557288, + Boston__yhat_upper: 1.4872536603725823, + Boston: 1.215, + California__yhat: 1.1713334574546839, + California__yhat_lower: 1.0183235764036245, + California__yhat_upper: 1.334211201339179, + California: 1.02, + WestTexNewMexico__yhat: 1.0753195555471162, + WestTexNewMexico__yhat_lower: 0.9138031185965445, + WestTexNewMexico__yhat_upper: 1.241542731790294, + WestTexNewMexico: 0.92, + }, + { + __timestamp: 1462752000000, + Boston__yhat: 1.390579992253881, + Boston__yhat_lower: 1.2678098774291926, + Boston__yhat_upper: 1.514517582502428, + Boston: 1.32, + California__yhat: 1.2045753309987504, + California__yhat_lower: 1.052786503515949, + California__yhat_upper: 1.3621516718095754, + California: 1.235, + WestTexNewMexico__yhat: 1.0708076218477798, + WestTexNewMexico__yhat_lower: 0.89839426584527, + WestTexNewMexico__yhat_upper: 1.2432070811178022, + WestTexNewMexico: 0.975, + }, + { + __timestamp: 1463356800000, + Boston__yhat: 1.4207891542698583, + Boston__yhat_lower: 1.3010916606934653, + Boston__yhat_upper: 1.5322542386945917, + Boston: 1.31, + California__yhat: 1.2463341560434724, + California__yhat_lower: 1.0872182425671355, + California__yhat_upper: 1.398196065122614, + California: 1.135, + WestTexNewMexico__yhat: 1.0830533836123841, + WestTexNewMexico__yhat_lower: 0.9270325265697668, + WestTexNewMexico__yhat_upper: 1.2433561617025806, + WestTexNewMexico: 1.08, + }, + { + __timestamp: 1463961600000, + Boston__yhat: 1.4528802442431825, + Boston__yhat_lower: 1.339060636220628, + Boston__yhat_upper: 1.5651577314726575, + Boston: 1.335, + California__yhat: 1.2800536949604688, + California__yhat_lower: 1.1213938976676492, + California__yhat_upper: 1.4419002496176487, + California: 1.235, + WestTexNewMexico__yhat: 1.0980521279561197, + WestTexNewMexico__yhat_lower: 0.9322311004284876, + WestTexNewMexico__yhat_upper: 1.262519822257723, + WestTexNewMexico: 1.06, + }, + { + __timestamp: 1464566400000, + Boston__yhat: 1.4738409532820527, + Boston__yhat_lower: 1.3555968485283043, + Boston__yhat_upper: 1.591684397428816, + Boston: 1.375, + California__yhat: 1.2952850761979349, + California__yhat_lower: 1.1438814607731747, + California__yhat_upper: 1.4594084279689081, + California: 1.245, + WestTexNewMexico__yhat: 1.089859801760547, + WestTexNewMexico__yhat_lower: 0.9336639795874753, + WestTexNewMexico__yhat_upper: 1.246993776569905, + WestTexNewMexico: 1.02, + }, + { + __timestamp: 1465171200000, + Boston__yhat: 1.4890320660392282, + Boston__yhat_lower: 1.3753680086084525, + Boston__yhat_upper: 1.6067146520336024, + Boston: 1.33, + California__yhat: 1.2927494439397973, + California__yhat_lower: 1.128002682584889, + California__yhat_upper: 1.4466582402918686, + California: 1.255, + WestTexNewMexico__yhat: 1.0523846500937815, + WestTexNewMexico__yhat_lower: 0.878097580557322, + WestTexNewMexico__yhat_upper: 1.208712345324737, + WestTexNewMexico: 1.09, + }, + { + __timestamp: 1465776000000, + Boston__yhat: 1.5155587976896643, + Boston__yhat_lower: 1.4072015263506499, + Boston__yhat_upper: 1.6355581427270762, + Boston: 1.425, + California__yhat: 1.2870463107367591, + California__yhat_lower: 1.1386143995965625, + California__yhat_upper: 1.4509670787815665, + California: 1.315, + WestTexNewMexico__yhat: 1.0177076740491202, + WestTexNewMexico__yhat_lower: 0.8522281057724683, + WestTexNewMexico__yhat_upper: 1.1828659506179917, + WestTexNewMexico: 1.08, + }, + { + __timestamp: 1466380800000, + Boston__yhat: 1.553609825840023, + Boston__yhat_lower: 1.4363699394765241, + Boston__yhat_upper: 1.6646708738711482, + Boston: 1.465, + California__yhat: 1.2977535594821146, + California__yhat_lower: 1.1433922084496908, + California__yhat_upper: 1.452704521998053, + California: 1.27, + WestTexNewMexico__yhat: 1.034155336536419, + WestTexNewMexico__yhat_lower: 0.8767952483197881, + WestTexNewMexico__yhat_upper: 1.190431952173455, + WestTexNewMexico: 1.09, + }, + { + __timestamp: 1466985600000, + Boston__yhat: 1.5810989180423636, + Boston__yhat_lower: 1.4712906617254233, + Boston__yhat_upper: 1.7031366663740148, + Boston: 1.495, + California__yhat: 1.3389938921935745, + California__yhat_lower: 1.195322302704384, + California__yhat_upper: 1.5034014849132746, + California: 1.34, + WestTexNewMexico__yhat: 1.119390863260118, + WestTexNewMexico__yhat_lower: 0.9566638997448632, + WestTexNewMexico__yhat_upper: 1.291382075169968, + WestTexNewMexico: 1.145, + }, + { + __timestamp: 1467590400000, + Boston__yhat: 1.5713962603563556, + Boston__yhat_lower: 1.4584685851949164, + Boston__yhat_upper: 1.6931151296207205, + Boston: 1.455, + California__yhat: 1.404984500630841, + California__yhat_lower: 1.2470413467005759, + California__yhat_upper: 1.5606944221931451, + California: 1.295, + WestTexNewMexico__yhat: 1.236356118434577, + WestTexNewMexico__yhat_lower: 1.0646330757141054, + WestTexNewMexico__yhat_upper: 1.4018372284129585, + WestTexNewMexico: 1.26, + }, + { + __timestamp: 1468195200000, + Boston__yhat: 1.5226860023566928, + Boston__yhat_lower: 1.4025316733171211, + Boston__yhat_upper: 1.633108802218944, + Boston: 1.665, + California__yhat: 1.4702697475325415, + California__yhat_lower: 1.3053129350593928, + California__yhat_upper: 1.6317344334869877, + California: 1.365, + WestTexNewMexico__yhat: 1.3219192645467641, + WestTexNewMexico__yhat_lower: 1.1496881516514708, + WestTexNewMexico__yhat_upper: 1.4815087912863347, + WestTexNewMexico: 1.42, + }, + { + __timestamp: 1468800000000, + Boston__yhat: 1.4641432908645742, + Boston__yhat_lower: 1.3560733523952684, + Boston__yhat_upper: 1.5782310680743912, + Boston: 1.505, + California__yhat: 1.5084846078350787, + California__yhat_lower: 1.3587250298828615, + California__yhat_upper: 1.6619848148225922, + California: 1.38, + WestTexNewMexico__yhat: 1.3432530381551955, + WestTexNewMexico__yhat_lower: 1.1897339861076903, + WestTexNewMexico__yhat_upper: 1.5124981951028644, + WestTexNewMexico: 1.51, + }, + { + __timestamp: 1469404800000, + Boston__yhat: 1.4307998991771547, + Boston__yhat_lower: 1.301667237997504, + Boston__yhat_upper: 1.5476934496120969, + Boston: 1.375, + California__yhat: 1.5122071787503633, + California__yhat_lower: 1.356841125041551, + California__yhat_upper: 1.6904832424865197, + California: 1.39, + WestTexNewMexico__yhat: 1.3247458635692688, + WestTexNewMexico__yhat_lower: 1.171319851493184, + WestTexNewMexico__yhat_upper: 1.4935185793456895, + WestTexNewMexico: 1.45, + }, + { + __timestamp: 1470009600000, + Boston__yhat: 1.4341759361691848, + Boston__yhat_lower: 1.3207185699269184, + Boston__yhat_upper: 1.5541879075562277, + Boston: 1.395, + California__yhat: 1.5012739779918045, + California__yhat_lower: 1.350483607848206, + California__yhat_upper: 1.6487086197098788, + California: 1.325, + WestTexNewMexico__yhat: 1.3177013212501445, + WestTexNewMexico__yhat_lower: 1.1621873011805777, + WestTexNewMexico__yhat_upper: 1.4784327748468409, + WestTexNewMexico: 1.365, + }, + { + __timestamp: 1470614400000, + Boston__yhat: 1.4594412989347867, + Boston__yhat_lower: 1.3360840052623852, + Boston__yhat_upper: 1.579071411905622, + Boston: 1.26, + California__yhat: 1.5039080884399674, + California__yhat_lower: 1.3550207323817558, + California__yhat_upper: 1.6580067767958333, + California: 1.27, + WestTexNewMexico__yhat: 1.346525292803424, + WestTexNewMexico__yhat_lower: 1.1845477241766214, + WestTexNewMexico__yhat_upper: 1.5253058180362393, + WestTexNewMexico: 1.325, + }, + { + __timestamp: 1471219200000, + Boston__yhat: 1.4881079558997103, + Boston__yhat_lower: 1.3645503667323902, + Boston__yhat_upper: 1.6020332609252061, + Boston: 1.295, + California__yhat: 1.5307353814067561, + California__yhat_lower: 1.3672276366429863, + California__yhat_upper: 1.6931440212842594, + California: 1.29, + WestTexNewMexico__yhat: 1.3900463616834302, + WestTexNewMexico__yhat_lower: 1.2178728357390292, + WestTexNewMexico__yhat_upper: 1.5544448251077518, + WestTexNewMexico: 1.34, + }, + { + __timestamp: 1471824000000, + Boston__yhat: 1.5165851119026208, + Boston__yhat_lower: 1.3993213687897126, + Boston__yhat_upper: 1.6362999718104112, + Boston: 1.365, + California__yhat: 1.5661166722198414, + California__yhat_lower: 1.4072590036196495, + California__yhat_upper: 1.7230281466014852, + California: 1.31, + WestTexNewMexico__yhat: 1.415867766350719, + WestTexNewMexico__yhat_lower: 1.2597339451914085, + WestTexNewMexico__yhat_upper: 1.581519285569223, + WestTexNewMexico: 1.31, + }, + { + __timestamp: 1472428800000, + Boston__yhat: 1.5493319083996173, + Boston__yhat_lower: 1.4286383246773895, + Boston__yhat_upper: 1.6610584673423974, + Boston: 1.57, + California__yhat: 1.585754115558432, + California__yhat_lower: 1.4329128169945788, + California__yhat_upper: 1.7361132619288921, + California: 1.365, + WestTexNewMexico__yhat: 1.425003944497083, + WestTexNewMexico__yhat_lower: 1.263935849492006, + WestTexNewMexico__yhat_upper: 1.599883010034185, + WestTexNewMexico: 1.35, + }, + { + __timestamp: 1473033600000, + Boston__yhat: 1.579097219503869, + Boston__yhat_lower: 1.4625124607540727, + Boston__yhat_upper: 1.69854277527247, + Boston: 1.555, + California__yhat: 1.5829289478592412, + California__yhat_lower: 1.4356249194166182, + California__yhat_upper: 1.7385318431729417, + California: 1.335, + WestTexNewMexico__yhat: 1.4530568901505994, + WestTexNewMexico__yhat_lower: 1.2927701064887283, + WestTexNewMexico__yhat_upper: 1.630286407059165, + WestTexNewMexico: 1.3, + }, + { + __timestamp: 1473638400000, + Boston__yhat: 1.5835307321120848, + Boston__yhat_lower: 1.4570692824610627, + Boston__yhat_upper: 1.6964456413709623, + Boston: 1.655, + California__yhat: 1.5763283813423616, + California__yhat_lower: 1.4096833213932036, + California__yhat_upper: 1.7310434287097953, + California: 1.53, + WestTexNewMexico__yhat: 1.5255881976647532, + WestTexNewMexico__yhat_lower: 1.3561754955258563, + WestTexNewMexico__yhat_upper: 1.684027893319529, + WestTexNewMexico: 1.36, + }, + { + __timestamp: 1474243200000, + Boston__yhat: 1.5466400307744965, + Boston__yhat_lower: 1.4338966810651357, + Boston__yhat_upper: 1.6648156828446639, + Boston: 1.625, + California__yhat: 1.590860884362237, + California__yhat_lower: 1.434309019444344, + California__yhat_upper: 1.7362166774986345, + California: 1.55, + WestTexNewMexico__yhat: 1.6196339680610776, + WestTexNewMexico__yhat_lower: 1.4497107031175656, + WestTexNewMexico__yhat_upper: 1.7806142462800227, + WestTexNewMexico: 1.95, + }, + { + __timestamp: 1474848000000, + Boston__yhat: 1.4811283468885308, + Boston__yhat_lower: 1.3715392717145678, + Boston__yhat_upper: 1.587116073735804, + Boston: 1.61, + California__yhat: 1.6306839793835606, + California__yhat_lower: 1.4641855806125463, + California__yhat_upper: 1.7938003803814595, + California: 1.55, + WestTexNewMexico__yhat: 1.677591239818513, + WestTexNewMexico__yhat_lower: 1.5077716190904478, + WestTexNewMexico__yhat_upper: 1.8492022322889896, + WestTexNewMexico: 1.965, + }, + { + __timestamp: 1475452800000, + Boston__yhat: 1.423734988977364, + Boston__yhat_lower: 1.3106773299859629, + Boston__yhat_upper: 1.537088463633997, + Boston: 1.53, + California__yhat: 1.672080021638384, + California__yhat_lower: 1.5130954164169301, + California__yhat_upper: 1.829975053984329, + California: 1.66, + WestTexNewMexico__yhat: 1.660660080985409, + WestTexNewMexico__yhat_lower: 1.5072494922262853, + WestTexNewMexico__yhat_upper: 1.8299157553498004, + WestTexNewMexico: 1.7, + }, + { + __timestamp: 1476057600000, + Boston__yhat: 1.405528241764916, + Boston__yhat_lower: 1.2843080290225841, + Boston__yhat_upper: 1.5165997437269296, + Boston: 1.515, + California__yhat: 1.683903744657914, + California__yhat_lower: 1.527790433264822, + California__yhat_upper: 1.8494276842384527, + California: 1.71, + WestTexNewMexico__yhat: 1.584598918099223, + WestTexNewMexico__yhat_lower: 1.4331280394220376, + WestTexNewMexico__yhat_upper: 1.7554432844710093, + WestTexNewMexico: 1.9, + }, + { + __timestamp: 1476662400000, + Boston__yhat: 1.4272680640340751, + Boston__yhat_lower: 1.312120538966425, + Boston__yhat_upper: 1.5460174589362479, + Boston: 1.45, + California__yhat: 1.6555051697315277, + California__yhat_lower: 1.4902473868501909, + California__yhat_upper: 1.8115544862731081, + California: 1.985, + WestTexNewMexico__yhat: 1.5007544229607501, + WestTexNewMexico__yhat_lower: 1.3259325266237634, + WestTexNewMexico__yhat_upper: 1.6625794037605102, + WestTexNewMexico: 1.635, + }, + { + __timestamp: 1477267200000, + Boston__yhat: 1.4638545217981513, + Boston__yhat_lower: 1.3470853117000912, + Boston__yhat_upper: 1.5848099636614141, + Boston: 1.58, + California__yhat: 1.604700938940257, + California__yhat_lower: 1.4455803728171153, + California__yhat_upper: 1.7626934413166773, + California: 2.085, + WestTexNewMexico__yhat: 1.445462516001628, + WestTexNewMexico__yhat_lower: 1.2733202392309644, + WestTexNewMexico__yhat_upper: 1.6136849839376912, + WestTexNewMexico: 1.84, + }, + { + __timestamp: 1477872000000, + Boston__yhat: 1.4900776161328921, + Boston__yhat_lower: 1.363288614749134, + Boston__yhat_upper: 1.6074611690548872, + Boston: 1.67, + California__yhat: 1.558597584307237, + California__yhat_lower: 1.4092137762693824, + California__yhat_upper: 1.7168151371065437, + California: 2.025, + WestTexNewMexico__yhat: 1.412395217151307, + WestTexNewMexico__yhat_lower: 1.2522003655479184, + WestTexNewMexico__yhat_upper: 1.5720725257028094, + WestTexNewMexico: 1.5, + }, + { + __timestamp: 1478476800000, + Boston__yhat: 1.499719058422172, + Boston__yhat_lower: 1.3860677720273529, + Boston__yhat_upper: 1.6257991109615109, + Boston: 1.575, + California__yhat: 1.5269577836642934, + California__yhat_lower: 1.3684070398469637, + California__yhat_upper: 1.6834866934281587, + California: 1.805, + WestTexNewMexico__yhat: 1.372541136830551, + WestTexNewMexico__yhat_lower: 1.2048951837458486, + WestTexNewMexico__yhat_upper: 1.5399850010433882, + WestTexNewMexico: 1.275, + }, + { + __timestamp: 1479081600000, + Boston__yhat: 1.5021946534076882, + Boston__yhat_lower: 1.3897701851514586, + Boston__yhat_upper: 1.6278988627377922, + Boston: 1.595, + California__yhat: 1.4944841530199826, + California__yhat_lower: 1.3367754674478323, + California__yhat_upper: 1.6476086861010533, + California: 1.71, + WestTexNewMexico__yhat: 1.3131629324634078, + WestTexNewMexico__yhat_lower: 1.1482685904140733, + WestTexNewMexico__yhat_upper: 1.4831223148967962, + WestTexNewMexico: 1.37, + }, + { + __timestamp: 1479686400000, + Boston__yhat: 1.5070855180263265, + Boston__yhat_lower: 1.3758031420462578, + Boston__yhat_upper: 1.6224302637010204, + Boston: 1.695, + California__yhat: 1.4390549550559264, + California__yhat_lower: 1.2870897870341376, + California__yhat_upper: 1.581365165178595, + California: 1.625, + WestTexNewMexico__yhat: 1.2510530948882772, + WestTexNewMexico__yhat_lower: 1.096852315699185, + WestTexNewMexico__yhat_upper: 1.4228159851095246, + WestTexNewMexico: 1.26, + }, + { + __timestamp: 1480291200000, + Boston__yhat: 1.515981385992619, + Boston__yhat_lower: 1.402752063281944, + Boston__yhat_upper: 1.6388822584558373, + Boston: 1.63, + California__yhat: 1.3574557027193999, + California__yhat_lower: 1.205330218116345, + California__yhat_upper: 1.511849266149104, + California: 1.435, + WestTexNewMexico__yhat: 1.2101138191889365, + WestTexNewMexico__yhat_lower: 1.047738882979899, + WestTexNewMexico__yhat_upper: 1.367409106353797, + WestTexNewMexico: 1.335, + }, + { + __timestamp: 1480896000000, + Boston__yhat: 1.5265033621432893, + Boston__yhat_lower: 1.4094285111714948, + Boston__yhat_upper: 1.6393549781279129, + Boston: 1.55, + California__yhat: 1.2732924320010715, + California__yhat_lower: 1.1169415330014323, + California__yhat_upper: 1.4177684146143212, + California: 1.27, + WestTexNewMexico__yhat: 1.194106692692431, + WestTexNewMexico__yhat_lower: 1.0239408159790335, + WestTexNewMexico__yhat_upper: 1.3715283466293289, + WestTexNewMexico: 1.165, + }, + { + __timestamp: 1481500800000, + Boston__yhat: 1.537749982540017, + Boston__yhat_lower: 1.4234510229315234, + Boston__yhat_upper: 1.6488062654403828, + Boston: 1.545, + California__yhat: 1.2191966639579936, + California__yhat_lower: 1.0561519515828182, + California__yhat_upper: 1.377229313367787, + California: 1.28, + WestTexNewMexico__yhat: 1.1860438398748636, + WestTexNewMexico__yhat_lower: 1.0194752346333227, + WestTexNewMexico__yhat_upper: 1.3555997235052395, + WestTexNewMexico: 1.05, + }, + { + __timestamp: 1482105600000, + Boston__yhat: 1.54717287799282, + Boston__yhat_lower: 1.4325894419217593, + Boston__yhat_upper: 1.6607558950326091, + Boston: 1.63, + California__yhat: 1.209651359198234, + California__yhat_lower: 1.047376483523164, + California__yhat_upper: 1.3617192197077554, + California: 1.235, + WestTexNewMexico__yhat: 1.1708733574176018, + WestTexNewMexico__yhat_lower: 1.0094451550980346, + WestTexNewMexico__yhat_upper: 1.3284412755009747, + WestTexNewMexico: 1.02, + }, + { + __timestamp: 1482710400000, + Boston__yhat: 1.5525446358914896, + Boston__yhat_lower: 1.4321559525418919, + Boston__yhat_upper: 1.6629300100050604, + Boston: 1.675, + California__yhat: 1.2290873108457203, + California__yhat_lower: 1.0834735690044874, + California__yhat_upper: 1.3911463424635342, + California: 1.175, + WestTexNewMexico__yhat: 1.1515358452259419, + WestTexNewMexico__yhat_lower: 0.9713798394863586, + WestTexNewMexico__yhat_upper: 1.328783456292196, + WestTexNewMexico: 1.015, + }, + { + __timestamp: 1483315200000, + Boston__yhat: 1.550064954571874, + Boston__yhat_lower: 1.4280653228961655, + Boston__yhat_upper: 1.6639596214565613, + Boston: 1.52, + California__yhat: 1.2455583448467942, + California__yhat_lower: 1.082642369663905, + California__yhat_upper: 1.4067992651381476, + California: 1.25, + WestTexNewMexico__yhat: 1.141280771099041, + WestTexNewMexico__yhat_lower: 0.9795394160699816, + WestTexNewMexico__yhat_upper: 1.3070397301496142, + WestTexNewMexico: 0.97, + }, + { + __timestamp: 1483920000000, + Boston__yhat: 1.543270380547365, + Boston__yhat_lower: 1.4259694605152158, + Boston__yhat_upper: 1.6640446618097087, + Boston: 1.59, + California__yhat: 1.2373507175673657, + California__yhat_lower: 1.080885612625107, + California__yhat_upper: 1.3882751108018838, + California: 1.295, + WestTexNewMexico__yhat: 1.1440394384901078, + WestTexNewMexico__yhat_lower: 0.9719642365657081, + WestTexNewMexico__yhat_upper: 1.305268597361833, + WestTexNewMexico: 0.96, + }, + { + __timestamp: 1484524800000, + Boston__yhat: 1.543062570935502, + Boston__yhat_lower: 1.4250583449512002, + Boston__yhat_upper: 1.6627359664660957, + Boston: 1.595, + California__yhat: 1.209153215553262, + California__yhat_lower: 1.056458798823747, + California__yhat_upper: 1.359740673582503, + California: 1.145, + WestTexNewMexico__yhat: 1.148023830457049, + WestTexNewMexico__yhat_lower: 0.985310000972858, + WestTexNewMexico__yhat_upper: 1.3164989406131617, + WestTexNewMexico: 0.94, + }, + { + __timestamp: 1485129600000, + Boston__yhat: 1.5563131537668164, + Boston__yhat_lower: 1.4359781802685476, + Boston__yhat_upper: 1.6695544001612004, + Boston: 1.61, + California__yhat: 1.1847373501547807, + California__yhat_lower: 1.026980478300004, + California__yhat_upper: 1.3383246188592155, + California: 1.1, + WestTexNewMexico__yhat: 1.1396463764407923, + WestTexNewMexico__yhat_lower: 0.9764521573834166, + WestTexNewMexico__yhat_upper: 1.3059493310264991, + WestTexNewMexico: 1.02, + }, + { + __timestamp: 1485734400000, + Boston__yhat: 1.580213862921242, + Boston__yhat_lower: 1.471785065399228, + Boston__yhat_upper: 1.709859060053903, + Boston: 1.41, + California__yhat: 1.1843242136120449, + California__yhat_lower: 1.022209593451801, + California__yhat_upper: 1.3398729576536006, + California: 1.015, + WestTexNewMexico__yhat: 1.1177655399044324, + WestTexNewMexico__yhat_lower: 0.960870212492223, + WestTexNewMexico__yhat_upper: 1.2800085941377326, + WestTexNewMexico: 0.915, + }, + { + __timestamp: 1486339200000, + Boston__yhat: 1.6028900169710594, + Boston__yhat_lower: 1.493195933295021, + Boston__yhat_upper: 1.7250787356916857, + Boston: 1.535, + California__yhat: 1.2076887864022636, + California__yhat_lower: 1.0480067008433784, + California__yhat_upper: 1.36157622282349, + California: 1.165, + WestTexNewMexico__yhat: 1.0962426365666094, + WestTexNewMexico__yhat_lower: 0.932735142613276, + WestTexNewMexico__yhat_upper: 1.2658710755999614, + WestTexNewMexico: 1.025, + }, + { + __timestamp: 1486944000000, + Boston__yhat: 1.6180243254601834, + Boston__yhat_lower: 1.5019253494945275, + Boston__yhat_upper: 1.7317070139876698, + Boston: 1.685, + California__yhat: 1.2374898518140625, + California__yhat_lower: 1.0871874502535506, + California__yhat_upper: 1.38855460185599, + California: 1.225, + WestTexNewMexico__yhat: 1.0892946232201077, + WestTexNewMexico__yhat_lower: 0.912249776571317, + WestTexNewMexico__yhat_upper: 1.2635151884011402, + WestTexNewMexico: 1.02, + }, + { + __timestamp: 1487548800000, + Boston__yhat: 1.6314681516138463, + Boston__yhat_lower: 1.5121633115952695, + Boston__yhat_upper: 1.744533492684596, + Boston: 1.625, + California__yhat: 1.2579896861798496, + California__yhat_lower: 1.1023005450129273, + California__yhat_upper: 1.410805180571987, + California: 1.145, + WestTexNewMexico__yhat: 1.0985988437581984, + WestTexNewMexico__yhat_lower: 0.9272276807854124, + WestTexNewMexico__yhat_upper: 1.268223154420295, + WestTexNewMexico: 0.975, + }, + { + __timestamp: 1488153600000, + Boston__yhat: 1.6527362281945481, + Boston__yhat_lower: 1.5370156988376074, + Boston__yhat_upper: 1.7696617003294441, + Boston: 1.51, + California__yhat: 1.2703333061019455, + California__yhat_lower: 1.111723585156037, + California__yhat_upper: 1.4298462878930536, + California: 1.3, + WestTexNewMexico__yhat: 1.1134048111318713, + WestTexNewMexico__yhat_lower: 0.9390626068594005, + WestTexNewMexico__yhat_upper: 1.269659885739347, + WestTexNewMexico: 1.035, + }, + { + __timestamp: 1488758400000, + Boston__yhat: 1.6796262551910217, + Boston__yhat_lower: 1.5600073429179953, + Boston__yhat_upper: 1.792138510302397, + Boston: 1.82, + California__yhat: 1.2897245790200202, + California__yhat_lower: 1.1379108799552407, + California__yhat_upper: 1.4458817032729592, + California: 1.42, + WestTexNewMexico__yhat: 1.1212520704642086, + WestTexNewMexico__yhat_lower: 0.9646525278187917, + WestTexNewMexico__yhat_upper: 1.297630020352523, + WestTexNewMexico: 1.005, + }, + { + __timestamp: 1489363200000, + Boston__yhat: 1.7047676058220433, + Boston__yhat_lower: 1.588004698954538, + Boston__yhat_upper: 1.8237876916992442, + Boston: 1.8, + California__yhat: 1.3278000750010266, + California__yhat_lower: 1.1720801128566298, + California__yhat_upper: 1.479537972046816, + California: 1.44, + WestTexNewMexico__yhat: 1.1173287551594895, + WestTexNewMexico__yhat_lower: 0.9541083635720938, + WestTexNewMexico__yhat_upper: 1.2758173793309833, + WestTexNewMexico: 0.975, + }, + { + __timestamp: 1489968000000, + Boston__yhat: 1.7199499907308777, + Boston__yhat_lower: 1.610430126823349, + Boston__yhat_upper: 1.848391211549295, + Boston: 1.765, + California__yhat: 1.3778452208195984, + California__yhat_lower: 1.2271930709177776, + California__yhat_upper: 1.526801020146615, + California: 1.515, + WestTexNewMexico__yhat: 1.1078235921572972, + WestTexNewMexico__yhat_lower: 0.9322343272693547, + WestTexNewMexico__yhat_upper: 1.2623819171505275, + WestTexNewMexico: 0.975, + }, + { + __timestamp: 1490572800000, + Boston__yhat: 1.727509288653125, + Boston__yhat_lower: 1.608955989233979, + Boston__yhat_upper: 1.8398701134735855, + Boston: 1.78, + California__yhat: 1.417523866504537, + California__yhat_lower: 1.2563042947263576, + California__yhat_upper: 1.5679469295439363, + California: 1.43, + WestTexNewMexico__yhat: 1.104382522017206, + WestTexNewMexico__yhat_lower: 0.9348588827263966, + WestTexNewMexico__yhat_upper: 1.288927958936451, + WestTexNewMexico: 0.95, + }, + { + __timestamp: 1491177600000, + Boston__yhat: 1.734748827915991, + Boston__yhat_lower: 1.617485284327697, + Boston__yhat_upper: 1.8492714064430869, + Boston: 1.765, + California__yhat: 1.4268238820259231, + California__yhat_lower: 1.2605967943877965, + California__yhat_upper: 1.5894250214309384, + California: 1.38, + WestTexNewMexico__yhat: 1.114763946566295, + WestTexNewMexico__yhat_lower: 0.9559054814545247, + WestTexNewMexico__yhat_upper: 1.2794678977894611, + WestTexNewMexico: 1.045, + }, + { + __timestamp: 1491782400000, + Boston__yhat: 1.740284889793295, + Boston__yhat_lower: 1.6251285202563455, + Boston__yhat_upper: 1.8603081330891629, + Boston: 1.805, + California__yhat: 1.4047444660311283, + California__yhat_lower: 1.252187601408478, + California__yhat_upper: 1.5602879586786764, + California: 1.505, + WestTexNewMexico__yhat: 1.1354077134423013, + WestTexNewMexico__yhat_lower: 0.9669174773999973, + WestTexNewMexico__yhat_upper: 1.3060872164149298, + WestTexNewMexico: 1.025, + }, + { + __timestamp: 1492387200000, + Boston__yhat: 1.7383035748849756, + Boston__yhat_lower: 1.6195011753192454, + Boston__yhat_upper: 1.8499952590613429, + Boston: 1.755, + California__yhat: 1.3704374467860099, + California__yhat_lower: 1.2135979946151467, + California__yhat_upper: 1.5264088446734072, + California: 1.43, + WestTexNewMexico__yhat: 1.1527001514520159, + WestTexNewMexico__yhat_lower: 0.989091347188803, + WestTexNewMexico__yhat_upper: 1.3117056024984444, + WestTexNewMexico: 1.19, + }, + { + __timestamp: 1492992000000, + Boston__yhat: 1.7256885365731087, + Boston__yhat_lower: 1.601394933506115, + Boston__yhat_upper: 1.8416830344674322, + Boston: 1.815, + California__yhat: 1.3489909145619732, + California__yhat_lower: 1.1912572159413557, + California__yhat_upper: 1.5139736730705589, + California: 1.43, + WestTexNewMexico__yhat: 1.1547506519769346, + WestTexNewMexico__yhat_lower: 0.9937160393619098, + WestTexNewMexico__yhat_upper: 1.3128854780729509, + WestTexNewMexico: 1.285, + }, + { + __timestamp: 1493596800000, + Boston__yhat: 1.7130353934560185, + Boston__yhat_lower: 1.596442859432103, + Boston__yhat_upper: 1.8308755987420824, + Boston: 1.735, + California__yhat: 1.355173473126275, + California__yhat_lower: 1.2003893000461905, + California__yhat_upper: 1.496417471603667, + California: 1.335, + WestTexNewMexico__yhat: 1.1443811288700725, + WestTexNewMexico__yhat_lower: 0.9698330014155393, + WestTexNewMexico__yhat_upper: 1.3058601268221433, + WestTexNewMexico: 1.28, + }, + { + __timestamp: 1494201600000, + Boston__yhat: 1.7162180910739395, + Boston__yhat_lower: 1.5979253814194743, + Boston__yhat_upper: 1.8316564949879741, + Boston: 1.805, + California__yhat: 1.386991187887074, + California__yhat_lower: 1.2304414370019476, + California__yhat_upper: 1.5433100030609836, + California: 1.465, + WestTexNewMexico__yhat: 1.1382886920665993, + WestTexNewMexico__yhat_lower: 0.9703025376318066, + WestTexNewMexico__yhat_upper: 1.3068718678114037, + WestTexNewMexico: 1.305, + }, + { + __timestamp: 1494806400000, + Boston__yhat: 1.7368683613674492, + Boston__yhat_lower: 1.6214553727141692, + Boston__yhat_upper: 1.852401124361395, + Boston: 1.805, + California__yhat: 1.4303795113868312, + California__yhat_lower: 1.2748442887820097, + California__yhat_upper: 1.5873278121590861, + California: 1.565, + WestTexNewMexico__yhat: 1.1488422721542977, + WestTexNewMexico__yhat_lower: 0.9867027869665088, + WestTexNewMexico__yhat_upper: 1.3275487440106781, + WestTexNewMexico: 1.31, + }, + { + __timestamp: 1495411200000, + Boston__yhat: 1.7626826807520022, + Boston__yhat_lower: 1.6456053495618348, + Boston__yhat_upper: 1.8811360090158376, + Boston: 1.885, + California__yhat: 1.4684172268279105, + California__yhat_lower: 1.3138830044029726, + California__yhat_upper: 1.63065854402894, + California: 1.54, + WestTexNewMexico__yhat: 1.16625345390289, + WestTexNewMexico__yhat_lower: 0.9985190124373086, + WestTexNewMexico__yhat_upper: 1.3138394903646435, + WestTexNewMexico: 1.28, + }, + { + __timestamp: 1496016000000, + Boston__yhat: 1.7785402290075782, + Boston__yhat_lower: 1.6615410733670033, + Boston__yhat_upper: 1.8864985273398323, + Boston: 1.885, + California__yhat: 1.489129750002956, + California__yhat_lower: 1.3443131604382104, + California__yhat_upper: 1.6419229046975075, + California: 1.42, + WestTexNewMexico__yhat: 1.1646218812567077, + WestTexNewMexico__yhat_lower: 0.9914621431594239, + WestTexNewMexico__yhat_upper: 1.3237637005616976, + WestTexNewMexico: 1.21, + }, + { + __timestamp: 1496620800000, + Boston__yhat: 1.7863439428343726, + Boston__yhat_lower: 1.6711930247723719, + Boston__yhat_upper: 1.9001673638546457, + Boston: 1.895, + California__yhat: 1.4909845926050966, + California__yhat_lower: 1.332806158530423, + California__yhat_upper: 1.6412020513359216, + California: 1.505, + WestTexNewMexico__yhat: 1.132060708096326, + WestTexNewMexico__yhat_lower: 0.9572994286970965, + WestTexNewMexico__yhat_upper: 1.2868826416978039, + WestTexNewMexico: 1.245, + }, + { + __timestamp: 1497225600000, + Boston__yhat: 1.8014575842684502, + Boston__yhat_lower: 1.6864035896068974, + Boston__yhat_upper: 1.9197232067167753, + Boston: 1.89, + California__yhat: 1.4853605712593696, + California__yhat_lower: 1.3373117186789285, + California__yhat_upper: 1.641800720034394, + California: 1.49, + WestTexNewMexico__yhat: 1.0941978529237113, + WestTexNewMexico__yhat_lower: 0.9205119886710038, + WestTexNewMexico__yhat_upper: 1.2590480686928345, + WestTexNewMexico: 0.87, + }, + { + __timestamp: 1497830400000, + Boston__yhat: 1.8296276869237924, + Boston__yhat_lower: 1.7208486392007467, + Boston__yhat_upper: 1.945899396479988, + Boston: 1.905, + California__yhat: 1.4924712873078025, + California__yhat_lower: 1.3393635134719806, + California__yhat_upper: 1.6544132409285186, + California: 1.405, + WestTexNewMexico__yhat: 1.0997295717174325, + WestTexNewMexico__yhat_lower: 0.939148005703825, + WestTexNewMexico__yhat_upper: 1.2633924450577891, + WestTexNewMexico: 0.85, + }, + { + __timestamp: 1498435200000, + Boston__yhat: 1.8519239358166282, + Boston__yhat_lower: 1.7280619166005051, + Boston__yhat_upper: 1.9671164546049593, + Boston: 1.9, + California__yhat: 1.5287615089133744, + California__yhat_lower: 1.375043969790753, + California__yhat_upper: 1.689154456278733, + California: 1.505, + WestTexNewMexico__yhat: 1.1748674500595282, + WestTexNewMexico__yhat_lower: 1.0104943955090295, + WestTexNewMexico__yhat_upper: 1.333997420395565, + WestTexNewMexico: 1.225, + }, + { + __timestamp: 1499040000000, + Boston__yhat: 1.8406703252155177, + Boston__yhat_lower: 1.7370404368727717, + Boston__yhat_upper: 1.958611777470813, + Boston: 1.93, + California__yhat: 1.5925389601991373, + California__yhat_lower: 1.433119864992163, + California__yhat_upper: 1.74688745180964, + California: 1.45, + WestTexNewMexico__yhat: 1.2917496124135144, + WestTexNewMexico__yhat_lower: 1.1187336492585116, + WestTexNewMexico__yhat_upper: 1.4592024595410427, + WestTexNewMexico: 1.245, + }, + { + __timestamp: 1499644800000, + Boston__yhat: 1.7881631960738633, + Boston__yhat_lower: 1.6667380687101898, + Boston__yhat_upper: 1.9071858100406684, + Boston: 1.585, + California__yhat: 1.6609781243647581, + California__yhat_lower: 1.4990967138637314, + California__yhat_upper: 1.8153555398137116, + California: 1.815, + WestTexNewMexico__yhat: 1.3878443216331735, + WestTexNewMexico__yhat_lower: 1.2030669817831299, + WestTexNewMexico__yhat_upper: 1.5506067509588624, + WestTexNewMexico: 1.275, + }, + { + __timestamp: 1500249600000, + Boston__yhat: 1.7191840092864128, + Boston__yhat_lower: 1.6065776365501874, + Boston__yhat_upper: 1.839620918087611, + Boston: 1.48, + California__yhat: 1.7054047449754868, + California__yhat_lower: 1.535206762631946, + California__yhat_upper: 1.8577821614335777, + California: 1.815, + WestTexNewMexico__yhat: 1.4213934070254646, + WestTexNewMexico__yhat_lower: 1.2481435763626016, + WestTexNewMexico__yhat_upper: 1.5936239782584871, + WestTexNewMexico: 1.315, + }, + { + __timestamp: 1500854400000, + Boston__yhat: 1.670256065786413, + Boston__yhat_lower: 1.553077857629512, + Boston__yhat_upper: 1.7869679292492795, + Boston: 1.545, + California__yhat: 1.714411769084566, + California__yhat_lower: 1.5643734411616905, + California__yhat_upper: 1.8667131285949061, + California: 1.76, + WestTexNewMexico__yhat: 1.407248985203041, + WestTexNewMexico__yhat_lower: 1.238049195039753, + WestTexNewMexico__yhat_upper: 1.5669510953410066, + WestTexNewMexico: 1.34, + }, + { + __timestamp: 1501459200000, + Boston__yhat: 1.6582917033228237, + Boston__yhat_lower: 1.5409092935474398, + Boston__yhat_upper: 1.7845780519218253, + Boston: 1.58, + California__yhat: 1.7037623513454934, + California__yhat_lower: 1.5502705426731838, + California__yhat_upper: 1.8609802183770094, + California: 1.77, + WestTexNewMexico__yhat: 1.3959911883988048, + WestTexNewMexico__yhat_lower: 1.2357229389395101, + WestTexNewMexico__yhat_upper: 1.5488768665975765, + WestTexNewMexico: 1.365, + }, + { + __timestamp: 1502064000000, + Boston__yhat: 1.6719325972202634, + Boston__yhat_lower: 1.5549665305959768, + Boston__yhat_upper: 1.7968206245970162, + Boston: 1.645, + California__yhat: 1.702279498346654, + California__yhat_lower: 1.5468903384299495, + California__yhat_upper: 1.8613392400539936, + California: 1.735, + WestTexNewMexico__yhat: 1.419826404697059, + WestTexNewMexico__yhat_lower: 1.2535254446063566, + WestTexNewMexico__yhat_upper: 1.587496068086963, + WestTexNewMexico: 1.48, + }, + { + __timestamp: 1502668800000, + Boston__yhat: 1.6914240210366667, + Boston__yhat_lower: 1.572243044003606, + Boston__yhat_upper: 1.809374180252829, + Boston: 1.745, + California__yhat: 1.7251379246918526, + California__yhat_lower: 1.5656549380337181, + California__yhat_upper: 1.8664638530454856, + California: 2.005, + WestTexNewMexico__yhat: 1.4644529713654408, + WestTexNewMexico__yhat_lower: 1.2960084753426138, + WestTexNewMexico__yhat_upper: 1.6290333163133552, + WestTexNewMexico: 1.72, + }, + { + __timestamp: 1503273600000, + Boston__yhat: 1.7102480252220476, + Boston__yhat_lower: 1.5920744149499648, + Boston__yhat_upper: 1.8280049793256221, + Boston: 1.77, + California__yhat: 1.76076006674544, + California__yhat_lower: 1.6040896711403747, + California__yhat_upper: 1.917339228742503, + California: 2.16, + WestTexNewMexico__yhat: 1.495655425762464, + WestTexNewMexico__yhat_lower: 1.3287121240767514, + WestTexNewMexico__yhat_upper: 1.6650107120670545, + WestTexNewMexico: 1.79, + }, + { + __timestamp: 1503878400000, + Boston__yhat: 1.732895859621494, + Boston__yhat_lower: 1.6107061239405822, + Boston__yhat_upper: 1.845354975869303, + Boston: 1.785, + California__yhat: 1.7843378450931897, + California__yhat_lower: 1.6323654325281014, + California__yhat_upper: 1.9318196076295764, + California: 1.87, + WestTexNewMexico__yhat: 1.506710267457564, + WestTexNewMexico__yhat_lower: 1.3400550535218518, + WestTexNewMexico__yhat_upper: 1.669833705250297, + WestTexNewMexico: 1.765, + }, + { + __timestamp: 1504483200000, + Boston__yhat: 1.755244450196397, + Boston__yhat_lower: 1.637449623542636, + Boston__yhat_upper: 1.871272038544953, + Boston: 1.685, + California__yhat: 1.7846281349885311, + California__yhat_lower: 1.622387183433942, + California__yhat_upper: 1.9439851659479768, + California: 1.955, + WestTexNewMexico__yhat: 1.5294803570968938, + WestTexNewMexico__yhat_lower: 1.3613502797411972, + WestTexNewMexico__yhat_upper: 1.6927229242339974, + WestTexNewMexico: 1.76, + }, + { + __timestamp: 1505088000000, + Boston__yhat: 1.756615424009621, + Boston__yhat_lower: 1.6410463799636061, + Boston__yhat_upper: 1.870394173319885, + Boston: 1.57, + California__yhat: 1.7765246925015679, + California__yhat_lower: 1.6216879321213362, + California__yhat_upper: 1.9318739523532495, + California: 1.95, + WestTexNewMexico__yhat: 1.5951620379294922, + WestTexNewMexico__yhat_lower: 1.4376736726898494, + WestTexNewMexico__yhat_upper: 1.7655559117205906, + WestTexNewMexico: 1.78, + }, + { + __timestamp: 1505692800000, + Boston__yhat: 1.7178097680607571, + Boston__yhat_lower: 1.6022240484885857, + Boston__yhat_upper: 1.8407005168977442, + Boston: 1.59, + California__yhat: 1.7859776752881176, + California__yhat_lower: 1.630448354264863, + California__yhat_upper: 1.941471247383345, + California: 1.895, + WestTexNewMexico__yhat: 1.6901750210424575, + WestTexNewMexico__yhat_lower: 1.5243936951119106, + WestTexNewMexico__yhat_upper: 1.8614950065165954, + WestTexNewMexico: 1.74, + }, + { + __timestamp: 1506297600000, + Boston__yhat: 1.6457729015261873, + Boston__yhat_lower: 1.5322283465574804, + Boston__yhat_upper: 1.7646499117189138, + Boston: 1.615, + California__yhat: 1.8222195096881877, + California__yhat_lower: 1.6627006734537622, + California__yhat_upper: 1.977876902478907, + California: 1.925, + WestTexNewMexico__yhat: 1.75967388341635, + WestTexNewMexico__yhat_lower: 1.5945232197807684, + WestTexNewMexico__yhat_upper: 1.9332467068986767, + WestTexNewMexico: 1.795, + }, + { + __timestamp: 1506902400000, + Boston__yhat: 1.5747145164848486, + Boston__yhat_lower: 1.4526178172739, + Boston__yhat_upper: 1.688227953801409, + Boston: 1.585, + California__yhat: 1.8656740212343985, + California__yhat_lower: 1.7126250130588196, + California__yhat_upper: 2.0176230395733374, + California: 1.955, + WestTexNewMexico__yhat: 1.7575841759379691, + WestTexNewMexico__yhat_lower: 1.5863235558049222, + WestTexNewMexico__yhat_upper: 1.9295182974675937, + WestTexNewMexico: 1.795, + }, + { + __timestamp: 1507507200000, + Boston__yhat: 1.5391257682954589, + Boston__yhat_lower: 1.4325811215040265, + Boston__yhat_upper: 1.651378741623639, + Boston: 1.595, + California__yhat: 1.884287406049771, + California__yhat_lower: 1.7232418981208881, + California__yhat_upper: 2.040893202969264, + California: 1.89, + WestTexNewMexico__yhat: 1.6896884418687792, + WestTexNewMexico__yhat_lower: 1.5333015164189816, + WestTexNewMexico__yhat_upper: 1.8520706067206518, + WestTexNewMexico: 1.61, + }, + { + __timestamp: 1508112000000, + Boston__yhat: 1.5457875712691287, + Boston__yhat_lower: 1.4237508862869774, + Boston__yhat_upper: 1.6566809290625377, + Boston: 1.53, + California__yhat: 1.8623246781854044, + California__yhat_lower: 1.71699357688764, + California__yhat_upper: 2.0166695308216984, + California: 1.765, + WestTexNewMexico__yhat: 1.6044826042052538, + WestTexNewMexico__yhat_lower: 1.4354026808463178, + WestTexNewMexico__yhat_upper: 1.774700503239314, + WestTexNewMexico: 1.425, + }, + { + __timestamp: 1508716800000, + Boston__yhat: 1.5726067277125042, + Boston__yhat_lower: 1.4588518304131273, + Boston__yhat_upper: 1.6931394818598706, + Boston: 1.66, + California__yhat: 1.813276217297562, + California__yhat_lower: 1.6436630115090212, + California__yhat_upper: 1.9726143953562199, + California: 1.605, + WestTexNewMexico__yhat: 1.5443116800783563, + WestTexNewMexico__yhat_lower: 1.3762184866575962, + WestTexNewMexico__yhat_upper: 1.7109707070940048, + WestTexNewMexico: 1.455, + }, + { + __timestamp: 1509321600000, + Boston__yhat: 1.5924432782000346, + Boston__yhat_lower: 1.4703826300286846, + Boston__yhat_upper: 1.7121204098890965, + Boston: 1.72, + California__yhat: 1.764716669699304, + California__yhat_lower: 1.6050564164237722, + California__yhat_upper: 1.9155961260848229, + California: 1.455, + WestTexNewMexico__yhat: 1.5102635492996923, + WestTexNewMexico__yhat_lower: 1.3491095695601811, + WestTexNewMexico__yhat_upper: 1.6780957297633348, + WestTexNewMexico: 1.34, + }, + { + __timestamp: 1509926400000, + Boston__yhat: 1.5952916742523302, + Boston__yhat_lower: 1.4724655896157, + Boston__yhat_upper: 1.715043028690722, + Boston: 1.55, + California__yhat: 1.7308712112618871, + California__yhat_lower: 1.5739489361166974, + California__yhat_upper: 1.8856751719281246, + California: 1.57, + WestTexNewMexico__yhat: 1.4744099923739549, + WestTexNewMexico__yhat_lower: 1.3115443224203953, + WestTexNewMexico__yhat_upper: 1.6401515994802147, + WestTexNewMexico: 1.365, + }, + { + __timestamp: 1510531200000, + Boston__yhat: 1.5888392408097436, + Boston__yhat_lower: 1.4668361685602658, + Boston__yhat_upper: 1.7046226875993664, + Boston: 1.585, + California__yhat: 1.700205239943529, + California__yhat_lower: 1.5485532218705247, + California__yhat_upper: 1.85030601233507, + California: 1.62, + WestTexNewMexico__yhat: 1.418973341834363, + WestTexNewMexico__yhat_lower: 1.258913708855633, + WestTexNewMexico__yhat_upper: 1.574537399654355, + WestTexNewMexico: 1.415, + }, + { + __timestamp: 1511136000000, + Boston__yhat: 1.5836318701735101, + Boston__yhat_lower: 1.4645047458001548, + Boston__yhat_upper: 1.7040502830959576, + Boston: 1.6, + California__yhat: 1.6497771589307555, + California__yhat_lower: 1.4923567485580018, + California__yhat_upper: 1.8149873186283765, + California: 1.65, + WestTexNewMexico__yhat: 1.3563342745068379, + WestTexNewMexico__yhat_lower: 1.1846050321358912, + WestTexNewMexico__yhat_upper: 1.5060991373789618, + WestTexNewMexico: 1.41, + }, + { + __timestamp: 1511740800000, + Boston__yhat: 1.5826517548445758, + Boston__yhat_lower: 1.467319909405141, + Boston__yhat_upper: 1.697456544854553, + Boston: 1.64, + California__yhat: 1.5716498507522567, + California__yhat_lower: 1.4030949862688427, + California__yhat_upper: 1.7196692318309386, + California: 1.45, + WestTexNewMexico__yhat: 1.3115312127819436, + WestTexNewMexico__yhat_lower: 1.1377047570253669, + WestTexNewMexico__yhat_upper: 1.4728488944922875, + WestTexNewMexico: 1.2, + }, + { + __timestamp: 1512345600000, + Boston__yhat: 1.5836934227290973, + Boston__yhat_lower: 1.4706505426607004, + Boston__yhat_upper: 1.7028617092919829, + Boston: 1.44, + California__yhat: 1.4853000367022948, + California__yhat_lower: 1.3171932005626774, + California__yhat_upper: 1.6495818788885088, + California: 1.475, + WestTexNewMexico__yhat: 1.2929263032369593, + WestTexNewMexico__yhat_lower: 1.126161335435101, + WestTexNewMexico__yhat_upper: 1.4691437711105042, + WestTexNewMexico: 1.255, + }, + { + __timestamp: 1512950400000, + Boston__yhat: 1.5854904493945186, + Boston__yhat_lower: 1.4663113792968328, + Boston__yhat_upper: 1.7064247946100661, + Boston: 1.55, + California__yhat: 1.423812565967093, + California__yhat_lower: 1.26337217088044, + California__yhat_upper: 1.5855591138371519, + California: 1.365, + WestTexNewMexico__yhat: 1.285918064954932, + WestTexNewMexico__yhat_lower: 1.1129613414382733, + WestTexNewMexico__yhat_upper: 1.4411417528866655, + WestTexNewMexico: 1.315, + }, + { + __timestamp: 1513555200000, + Boston__yhat: 1.587534822853923, + Boston__yhat_lower: 1.474373213976285, + Boston__yhat_upper: 1.7093497653377143, + Boston: 1.64, + California__yhat: 1.406491332871266, + California__yhat_lower: 1.2614139028387, + California__yhat_upper: 1.567765188079335, + California: 1.475, + WestTexNewMexico__yhat: 1.2732538523839543, + WestTexNewMexico__yhat_lower: 1.1223850003357936, + WestTexNewMexico__yhat_upper: 1.4388208415738943, + WestTexNewMexico: 1.39, + }, + { + __timestamp: 1514160000000, + Boston__yhat: 1.5864233934075276, + Boston__yhat_lower: 1.4692345690913347, + Boston__yhat_upper: 1.699449380613373, + Boston: 1.63, + California__yhat: 1.4228228692993976, + California__yhat_lower: 1.2632384697230399, + California__yhat_upper: 1.5883896474433383, + California: 1.32, + WestTexNewMexico__yhat: 1.254604177748047, + WestTexNewMexico__yhat_lower: 1.085917150263281, + WestTexNewMexico__yhat_upper: 1.410352311015645, + WestTexNewMexico: 1.255, + }, + { + __timestamp: 1514764800000, + Boston__yhat: 1.5777769291785921, + Boston__yhat_lower: 1.4651241617944295, + Boston__yhat_upper: 1.6989433879444449, + Boston: 1.595, + California__yhat: 1.4419038492586702, + California__yhat_lower: 1.2879258053870268, + California__yhat_upper: 1.6080138658220995, + California: 1.57, + WestTexNewMexico__yhat: 1.2428419002960793, + WestTexNewMexico__yhat_lower: 1.0741263868912616, + WestTexNewMexico__yhat_upper: 1.407884738946383, + WestTexNewMexico: 1.25, + }, + { + __timestamp: 1515369600000, + Boston__yhat: 1.5634839087431907, + Boston__yhat_lower: 1.4398553462505361, + Boston__yhat_upper: 1.6740426449964554, + Boston: 1.61, + California__yhat: 1.4384247589739614, + California__yhat_lower: 1.282408605059618, + California__yhat_upper: 1.6025657234949855, + California: 1.44, + WestTexNewMexico__yhat: 1.244658530051088, + WestTexNewMexico__yhat_lower: 1.06945490411183, + WestTexNewMexico__yhat_upper: 1.4129521329470152, + WestTexNewMexico: 1.415, + }, + { + __timestamp: 1515974400000, + Boston__yhat: 1.5536680519017763, + Boston__yhat_lower: 1.4375790011864307, + Boston__yhat_upper: 1.677280818004328, + Boston: 1.47, + California__yhat: 1.4122047608516037, + California__yhat_lower: 1.2652264002363518, + California__yhat_upper: 1.567139643522832, + California: 1.405, + WestTexNewMexico__yhat: 1.2505394036574187, + WestTexNewMexico__yhat_lower: 1.0786475912939553, + WestTexNewMexico__yhat_upper: 1.428300983429678, + WestTexNewMexico: 1.355, + }, + { + __timestamp: 1516579200000, + Boston__yhat: 1.557784526541132, + Boston__yhat_lower: 1.437971156562914, + Boston__yhat_upper: 1.6722358708824165, + Boston: 1.47, + California__yhat: 1.385077501398188, + California__yhat_lower: 1.2309216361341202, + California__yhat_upper: 1.5378930674747595, + California: 1.515, + WestTexNewMexico__yhat: 1.2452975589929682, + WestTexNewMexico__yhat_lower: 1.0812701428213654, + WestTexNewMexico__yhat_upper: 1.4042332991981532, + WestTexNewMexico: 1.28, + }, + { + __timestamp: 1517184000000, + Boston__yhat: 1.5741548151277522, + Boston__yhat_lower: 1.4657951310241182, + Boston__yhat_upper: 1.6946934922897228, + Boston: 1.61, + California__yhat: 1.3795831010900481, + California__yhat_lower: 1.2240059315323881, + California__yhat_upper: 1.523348626269824, + California: 1.18, + WestTexNewMexico__yhat: 1.2253524085244434, + WestTexNewMexico__yhat_lower: 1.0676441338279083, + WestTexNewMexico__yhat_upper: 1.3853412571686063, + WestTexNewMexico: 1.195, + }, + { + __timestamp: 1517788800000, + Boston__yhat: 1.5914104606043242, + Boston__yhat_lower: 1.4776611552150622, + Boston__yhat_upper: 1.703500126320889, + Boston: 1.575, + California__yhat: 1.3995428080393197, + California__yhat_lower: 1.2489325863292726, + California__yhat_upper: 1.546806803227574, + California: 1.415, + WestTexNewMexico__yhat: 1.2027703717982, + WestTexNewMexico__yhat_lower: 1.0400903472942626, + WestTexNewMexico__yhat_upper: 1.3629951573864216, + WestTexNewMexico: 1.16, + }, + { + __timestamp: 1518393600000, + Boston__yhat: 1.6013473406363457, + Boston__yhat_lower: 1.4866943308203548, + Boston__yhat_upper: 1.724859161919591, + Boston: 1.67, + California__yhat: 1.4295335961237214, + California__yhat_lower: 1.27915620579144, + California__yhat_upper: 1.592093519009324, + California: 1.535, + WestTexNewMexico__yhat: 1.1929126764808942, + WestTexNewMexico__yhat_lower: 1.0346155123052385, + WestTexNewMexico__yhat_upper: 1.3712222245975092, + WestTexNewMexico: 1.225, + }, + { + __timestamp: 1518998400000, + Boston__yhat: 1.607872039185895, + Boston__yhat_lower: 1.4920129289266784, + Boston__yhat_upper: 1.715879581587453, + Boston: 1.6, + California__yhat: 1.4520419324065412, + California__yhat_lower: 1.2928929013136694, + California__yhat_upper: 1.6171413049202863, + California: 1.425, + WestTexNewMexico__yhat: 1.2001106590202169, + WestTexNewMexico__yhat_lower: 1.0367540154507295, + WestTexNewMexico__yhat_upper: 1.3644853889790938, + WestTexNewMexico: 1.225, + }, + { + __timestamp: 1519603200000, + Boston__yhat: 1.620911752423461, + Boston__yhat_lower: 1.506812351390597, + Boston__yhat_upper: 1.7396201454879228, + Boston: 1.555, + California__yhat: 1.464809552378173, + California__yhat_lower: 1.3094369240272457, + California__yhat_upper: 1.6219770630066919, + California: 1.35, + WestTexNewMexico__yhat: 1.2152346714300077, + WestTexNewMexico__yhat_lower: 1.0545341388963183, + WestTexNewMexico__yhat_upper: 1.3889597711960058, + WestTexNewMexico: 1.21, + }, + { + __timestamp: 1520208000000, + Boston__yhat: 1.6429613225579054, + Boston__yhat_lower: 1.5250729066500823, + Boston__yhat_upper: 1.7591414050333753, + Boston: 1.595, + California__yhat: 1.4815834774378935, + California__yhat_lower: 1.3185475241546276, + California__yhat_upper: 1.6325722262914288, + California: 1.345, + WestTexNewMexico__yhat: 1.2250261625399055, + WestTexNewMexico__yhat_lower: 1.050233531841937, + WestTexNewMexico__yhat_upper: 1.3751543643791921, + WestTexNewMexico: 1.25, + }, + { + __timestamp: 1520812800000, + Boston__yhat: 1.66531535419241, + Boston__yhat_lower: 1.551493461131107, + Boston__yhat_upper: 1.7761043327879456, + Boston: 1.605, + California__yhat: 1.5160660096342993, + California__yhat_lower: 1.3585529234416427, + California__yhat_upper: 1.6832384050593, + California: 1.385, + WestTexNewMexico__yhat: 1.2230294452897705, + WestTexNewMexico__yhat_lower: 1.0609477133832677, + WestTexNewMexico__yhat_upper: 1.3881474130429041, + WestTexNewMexico: 1.22, + }, + { + __timestamp: 1521417600000, + Boston__yhat: 1.678487710603687, + Boston__yhat_lower: 1.564705165756329, + Boston__yhat_upper: 1.7926139100963339, + Boston: 1.565, + California__yhat: 1.5652070907846978, + California__yhat_lower: 1.4141177410387478, + California__yhat_upper: 1.7063662783920062, + California: 1.37, + WestTexNewMexico__yhat: 1.213712007592648, + WestTexNewMexico__yhat_lower: 1.0487714037236402, + WestTexNewMexico__yhat_upper: 1.386013473973569, + WestTexNewMexico: 1.23, + }, + { + __timestamp: 1521936000000, + Boston__yhat: 1.682536686382473, + Boston__yhat_lower: 1.5601634078750455, + Boston__yhat_upper: 1.8039620879210212, + Boston: null, + California__yhat: 1.6035530548199777, + California__yhat_lower: 1.4510914166115723, + California__yhat_upper: 1.7623422592242224, + California: null, + WestTexNewMexico__yhat: 1.2084666171356633, + WestTexNewMexico__yhat_lower: 1.0559277454557903, + WestTexNewMexico__yhat_upper: 1.3716256677551577, + WestTexNewMexico: null, + }, + { + __timestamp: 1522540800000, + Boston__yhat: 1.6853898579135072, + Boston__yhat_lower: 1.5607995110322577, + Boston__yhat_upper: 1.8073999911828285, + Boston: null, + California__yhat: 1.6237011645668817, + California__yhat_lower: 1.4757815983654023, + California__yhat_upper: 1.776587305341555, + California: null, + WestTexNewMexico__yhat: 1.214169410647762, + WestTexNewMexico__yhat_lower: 1.0581538648241648, + WestTexNewMexico__yhat_upper: 1.3695836853475196, + WestTexNewMexico: null, + }, + { + __timestamp: 1523145600000, + Boston__yhat: 1.689351966157518, + Boston__yhat_lower: 1.575343391034058, + Boston__yhat_upper: 1.808105985585739, + Boston: null, + California__yhat: 1.6102888937664057, + California__yhat_lower: 1.4532428370809523, + California__yhat_upper: 1.765926876898847, + California: null, + WestTexNewMexico__yhat: 1.2326699540808301, + WestTexNewMexico__yhat_lower: 1.0682655062624615, + WestTexNewMexico__yhat_upper: 1.3981594060214781, + WestTexNewMexico: null, + }, + { + __timestamp: 1523750400000, + Boston__yhat: 1.6884864805612496, + Boston__yhat_lower: 1.5742021894438218, + Boston__yhat_upper: 1.813433718348916, + Boston: null, + California__yhat: 1.576982498900054, + California__yhat_lower: 1.4203855126519214, + California__yhat_upper: 1.72592400619938, + California: null, + WestTexNewMexico__yhat: 1.252733863316836, + WestTexNewMexico__yhat_lower: 1.0911291189143066, + WestTexNewMexico__yhat_upper: 1.4184516602131139, + WestTexNewMexico: null, + }, + { + __timestamp: 1524355200000, + Boston__yhat: 1.6766428888228289, + Boston__yhat_lower: 1.557133646049639, + Boston__yhat_upper: 1.8039224024168021, + Boston: null, + California__yhat: 1.5489376559301495, + California__yhat_lower: 1.3802162947230194, + California__yhat_upper: 1.6976601182869269, + California: null, + WestTexNewMexico__yhat: 1.2602503359540163, + WestTexNewMexico__yhat_lower: 1.0993497131417902, + WestTexNewMexico__yhat_upper: 1.4269438319760595, + WestTexNewMexico: null, + }, + { + __timestamp: 1524960000000, + Boston__yhat: 1.6599997280355017, + Boston__yhat_lower: 1.5524988079395763, + Boston__yhat_upper: 1.78349334299218, + Boston: null, + California__yhat: 1.5455560009052383, + California__yhat_lower: 1.3837990457840332, + California__yhat_upper: 1.708515950009531, + California: null, + WestTexNewMexico__yhat: 1.2524804912613416, + WestTexNewMexico__yhat_lower: 1.0800104649716162, + WestTexNewMexico__yhat_upper: 1.4199408722695632, + WestTexNewMexico: null, + }, + { + __timestamp: 1525564800000, + Boston__yhat: 1.6546573207704953, + Boston__yhat_lower: 1.5366452027236606, + Boston__yhat_upper: 1.7771963193090587, + Boston: null, + California__yhat: 1.5701567229289408, + California__yhat_lower: 1.4158647650377556, + California__yhat_upper: 1.7268920200592506, + California: null, + WestTexNewMexico__yhat: 1.2429798542762953, + WestTexNewMexico__yhat_lower: 1.0755052631291508, + WestTexNewMexico__yhat_upper: 1.392085560821767, + WestTexNewMexico: null, + }, + { + __timestamp: 1526169600000, + Boston__yhat: 1.6695326494114453, + Boston__yhat_lower: 1.5459475971457444, + Boston__yhat_upper: 1.7950395799251673, + Boston: null, + California__yhat: 1.611624016941807, + California__yhat_lower: 1.458822882360371, + California__yhat_upper: 1.7587381622248586, + California: null, + WestTexNewMexico__yhat: 1.24801357713029, + WestTexNewMexico__yhat_lower: 1.095791907249141, + WestTexNewMexico__yhat_upper: 1.4187654522268498, + WestTexNewMexico: null, + }, + { + __timestamp: 1526774400000, + Boston__yhat: 1.6952782619161684, + Boston__yhat_lower: 1.5846747431630068, + Boston__yhat_upper: 1.808599838384513, + Boston: null, + California__yhat: 1.6529694297425044, + California__yhat_lower: 1.4947904634826412, + California__yhat_upper: 1.805281327291899, + California: null, + WestTexNewMexico__yhat: 1.2657324831260757, + WestTexNewMexico__yhat_lower: 1.0916527617406069, + WestTexNewMexico__yhat_upper: 1.4262057072494774, + WestTexNewMexico: null, + }, + { + __timestamp: 1527379200000, + Boston__yhat: 1.7146649368168043, + Boston__yhat_lower: 1.6036192075126363, + Boston__yhat_upper: 1.8320676234749995, + Boston: null, + California__yhat: 1.6799197400033026, + California__yhat_lower: 1.536795089675873, + California__yhat_upper: 1.8364148218420857, + California: null, + WestTexNewMexico__yhat: 1.2728989667058002, + WestTexNewMexico__yhat_lower: 1.1027680803304138, + WestTexNewMexico__yhat_upper: 1.4256330558513326, + WestTexNewMexico: null, + }, + { + __timestamp: 1527984000000, + Boston__yhat: 1.7231845757821997, + Boston__yhat_lower: 1.6114211589061664, + Boston__yhat_upper: 1.8399473046932247, + Boston: null, + California__yhat: 1.687126504560837, + California__yhat_lower: 1.5206803552553565, + California__yhat_upper: 1.840568971602508, + California: null, + WestTexNewMexico__yhat: 1.2494226379667293, + WestTexNewMexico__yhat_lower: 1.0819385143193307, + WestTexNewMexico__yhat_upper: 1.4094953369349135, + WestTexNewMexico: null, + }, + { + __timestamp: 1528588800000, + Boston__yhat: 1.7338736339181342, + Boston__yhat_lower: 1.624738247956961, + Boston__yhat_upper: 1.8600523588665385, + Boston: null, + California__yhat: 1.6818587206457696, + California__yhat_lower: 1.5238919914790512, + California__yhat_upper: 1.8359970540337893, + California: null, + WestTexNewMexico__yhat: 1.2082943772394181, + WestTexNewMexico__yhat_lower: 1.0433278198687912, + WestTexNewMexico__yhat_upper: 1.3775340586041351, + WestTexNewMexico: null, + }, + { + __timestamp: 1529193600000, + Boston__yhat: 1.7582239199775676, + Boston__yhat_lower: 1.6392421463550373, + Boston__yhat_upper: 1.8744063811638438, + Boston: null, + California__yhat: 1.6824892628983004, + California__yhat_lower: 1.5270216934691514, + California__yhat_upper: 1.8355198991696158, + California: null, + WestTexNewMexico__yhat: 1.1949458431792086, + WestTexNewMexico__yhat_lower: 1.0326445933404091, + WestTexNewMexico__yhat_upper: 1.3582577205018647, + WestTexNewMexico: null, + }, + { + __timestamp: 1529798400000, + Boston__yhat: 1.7854556021975714, + Boston__yhat_lower: 1.6701615867157495, + Boston__yhat_upper: 1.900992088604064, + Boston: null, + California__yhat: 1.7084141969678435, + California__yhat_lower: 1.550680184855059, + California__yhat_upper: 1.8697836855064995, + California: null, + WestTexNewMexico__yhat: 1.2480042263351998, + WestTexNewMexico__yhat_lower: 1.090434590083466, + WestTexNewMexico__yhat_upper: 1.424659399835797, + WestTexNewMexico: null, + }, + { + __timestamp: 1530403200000, + Boston__yhat: 1.787354789852457, + Boston__yhat_lower: 1.6666480384188682, + Boston__yhat_upper: 1.9098732988582017, + Boston: null, + California__yhat: 1.764902407737053, + California__yhat_lower: 1.603223194893655, + California__yhat_upper: 1.920536350083403, + California: null, + WestTexNewMexico__yhat: 1.3575978077726572, + WestTexNewMexico__yhat_lower: 1.1882370626482208, + WestTexNewMexico__yhat_upper: 1.5259537413667061, + WestTexNewMexico: null, + }, + { + __timestamp: 1531008000000, + Boston__yhat: 1.7468288679117425, + Boston__yhat_lower: 1.6269731637634024, + Boston__yhat_upper: 1.8742304717717988, + Boston: null, + California__yhat: 1.8350920426745763, + California__yhat_lower: 1.67180866418075, + California__yhat_upper: 2.0011556756788216, + California: null, + WestTexNewMexico__yhat: 1.4670856851172, + WestTexNewMexico__yhat_lower: 1.2964805935023214, + WestTexNewMexico__yhat_upper: 1.6345585674318333, + WestTexNewMexico: null, + }, + { + __timestamp: 1531612800000, + Boston__yhat: 1.6790348325378448, + Boston__yhat_lower: 1.5595355918151659, + Boston__yhat_upper: 1.7981872661345062, + Boston: null, + California__yhat: 1.8896488936902816, + California__yhat_lower: 1.7312414010981845, + California__yhat_upper: 2.04742067910337, + California: null, + WestTexNewMexico__yhat: 1.5219801642499642, + WestTexNewMexico__yhat_lower: 1.3635554462698278, + WestTexNewMexico__yhat_upper: 1.6938078169246442, + WestTexNewMexico: null, + }, + { + __timestamp: 1532217600000, + Boston__yhat: 1.6203830503925176, + Boston__yhat_lower: 1.4939148373489748, + Boston__yhat_upper: 1.7384178215507446, + Boston: null, + California__yhat: 1.9094868020939566, + California__yhat_lower: 1.7497539530943758, + California__yhat_upper: 2.066749203202386, + California: null, + WestTexNewMexico__yhat: 1.518353366307308, + WestTexNewMexico__yhat_lower: 1.3460315664515903, + WestTexNewMexico__yhat_upper: 1.6719233663023574, + WestTexNewMexico: null, + }, + { + __timestamp: 1532822400000, + Boston__yhat: 1.5966181353875348, + Boston__yhat_lower: 1.4815110953922874, + Boston__yhat_upper: 1.7116303325920141, + Boston: null, + California__yhat: 1.9020960586545756, + California__yhat_lower: 1.7292057167448445, + California__yhat_upper: 2.059778801012867, + California: null, + WestTexNewMexico__yhat: 1.500722239431866, + WestTexNewMexico__yhat_lower: 1.3231682157027853, + WestTexNewMexico__yhat_upper: 1.666981600036425, + WestTexNewMexico: null, + }, + { + __timestamp: 1533427200000, + Boston__yhat: 1.6043495104079866, + Boston__yhat_lower: 1.4840413633118215, + Boston__yhat_upper: 1.7221108099336726, + Boston: null, + California__yhat: 1.8948656849707521, + California__yhat_lower: 1.7377559285072435, + California__yhat_upper: 2.046199710416158, + California: null, + WestTexNewMexico__yhat: 1.5126502837159261, + WestTexNewMexico__yhat_lower: 1.348984942633407, + WestTexNewMexico__yhat_upper: 1.6787393215108342, + WestTexNewMexico: null, + }, + { + __timestamp: 1534032000000, + Boston__yhat: 1.6235344564929182, + Boston__yhat_lower: 1.5088248982582535, + Boston__yhat_upper: 1.7493554888388345, + Boston: null, + California__yhat: 1.909902264089578, + California__yhat_lower: 1.7594830495975537, + California__yhat_upper: 2.0814790534495446, + California: null, + WestTexNewMexico__yhat: 1.5543880317362218, + WestTexNewMexico__yhat_lower: 1.3862928701653126, + WestTexNewMexico__yhat_upper: 1.7129273819479778, + WestTexNewMexico: null, + }, + { + __timestamp: 1534636800000, + Boston__yhat: 1.6422721302404755, + Boston__yhat_lower: 1.5227340881288312, + Boston__yhat_upper: 1.7661948982300177, + Boston: null, + California__yhat: 1.9440191472850012, + California__yhat_lower: 1.7912658142139328, + California__yhat_upper: 2.1017712195687297, + California: null, + WestTexNewMexico__yhat: 1.5927167828625721, + WestTexNewMexico__yhat_lower: 1.4323724913431777, + WestTexNewMexico__yhat_upper: 1.7602140326496742, + WestTexNewMexico: null, + }, + { + __timestamp: 1535241600000, + Boston__yhat: 1.663333153399757, + Boston__yhat_lower: 1.53999712206972, + Boston__yhat_upper: 1.7784281978322263, + Boston: null, + California__yhat: 1.973841750021734, + California__yhat_lower: 1.8101188114604603, + California__yhat_upper: 2.1242592035994017, + California: null, + WestTexNewMexico__yhat: 1.6082103462185078, + WestTexNewMexico__yhat_lower: 1.4521998997210814, + WestTexNewMexico__yhat_upper: 1.787305638512403, + WestTexNewMexico: null, + }, + { + __timestamp: 1535846400000, + Boston__yhat: 1.68737589422853, + Boston__yhat_lower: 1.5546423881129967, + Boston__yhat_upper: 1.81339631040741, + Boston: null, + California__yhat: 1.9811962739192248, + California__yhat_lower: 1.8227510534530427, + California__yhat_upper: 2.1315985558632846, + California: null, + WestTexNewMexico__yhat: 1.6226614752470665, + WestTexNewMexico__yhat_lower: 1.4555221188950995, + WestTexNewMexico__yhat_upper: 1.7886204690874181, + WestTexNewMexico: null, + }, + { + __timestamp: 1536451200000, + Boston__yhat: 1.698231894874985, + Boston__yhat_lower: 1.5796838319630206, + Boston__yhat_upper: 1.8162324829522731, + Boston: null, + California__yhat: 1.9729323635080123, + California__yhat_lower: 1.808535742832015, + California__yhat_upper: 2.133577781410305, + California: null, + WestTexNewMexico__yhat: 1.6733686994910637, + WestTexNewMexico__yhat_lower: 1.502944700626823, + WestTexNewMexico__yhat_upper: 1.8462362904169698, + WestTexNewMexico: null, + }, + { + __timestamp: 1537056000000, + Boston__yhat: 1.673177148894755, + Boston__yhat_lower: 1.5453764645693406, + Boston__yhat_upper: 1.7925862861000987, + Boston: null, + California__yhat: 1.9744328609957065, + California__yhat_lower: 1.806134310310026, + California__yhat_upper: 2.1143435664934134, + California: null, + WestTexNewMexico__yhat: 1.7636853647310433, + WestTexNewMexico__yhat_lower: 1.5994080499191776, + WestTexNewMexico__yhat_upper: 1.9276560344065194, + WestTexNewMexico: null, + }, + { + __timestamp: 1537660800000, + Boston__yhat: 1.6090525676489444, + Boston__yhat_lower: 1.4758075734046576, + Boston__yhat_upper: 1.7415461464646478, + Boston: null, + California__yhat: 2.002890676494782, + California__yhat_lower: 1.8393829384321998, + California__yhat_upper: 2.167554310098903, + California: null, + WestTexNewMexico__yhat: 1.8480377771380128, + WestTexNewMexico__yhat_lower: 1.6833511313602927, + WestTexNewMexico__yhat_upper: 2.0203956302646664, + WestTexNewMexico: null, + }, + { + __timestamp: 1538265600000, + Boston__yhat: 1.5332238629414716, + Boston__yhat_lower: 1.395745532771652, + Boston__yhat_upper: 1.6594122074424231, + Boston: null, + California__yhat: 2.04750780058125, + California__yhat_lower: 1.8862667773178747, + California__yhat_upper: 2.1964678624483946, + California: null, + WestTexNewMexico__yhat: 1.871203717593608, + WestTexNewMexico__yhat_lower: 1.7079822731597716, + WestTexNewMexico__yhat_upper: 2.0301687351484716, + WestTexNewMexico: null, + }, + { + __timestamp: 1538870400000, + Boston__yhat: 1.4838235218338653, + Boston__yhat_lower: 1.342874791691052, + Boston__yhat_upper: 1.6153763350017596, + Boston: null, + California__yhat: 2.077120900334973, + California__yhat_lower: 1.9153457544393646, + California__yhat_upper: 2.2257915381404114, + California: null, + WestTexNewMexico__yhat: 1.82041781992544, + WestTexNewMexico__yhat_lower: 1.6611091710560477, + WestTexNewMexico__yhat_upper: 1.9861967842346009, + WestTexNewMexico: null, + }, + { + __timestamp: 1539475200000, + Boston__yhat: 1.4782598065971189, + Boston__yhat_lower: 1.344299563230488, + Boston__yhat_upper: 1.6120885230403785, + Boston: null, + California__yhat: 2.0680763229686003, + California__yhat_lower: 1.9058339107657098, + California__yhat_upper: 2.2271524402751357, + California: null, + WestTexNewMexico__yhat: 1.7347888113423426, + WestTexNewMexico__yhat_lower: 1.5635904551430955, + WestTexNewMexico__yhat_upper: 1.9156528167964688, + WestTexNewMexico: null, + }, + { + __timestamp: 1540080000000, + Boston__yhat: 1.5019076277701395, + Boston__yhat_lower: 1.3599533884699693, + Boston__yhat_upper: 1.6280806469131115, + Boston: null, + California__yhat: 2.024848167646863, + California__yhat_lower: 1.8751718922611667, + California__yhat_upper: 2.181285898190137, + California: null, + WestTexNewMexico__yhat: 1.6642517414081586, + WestTexNewMexico__yhat_lower: 1.5057398973441602, + WestTexNewMexico__yhat_upper: 1.8294977831848556, + WestTexNewMexico: null, + }, + { + __timestamp: 1540684800000, + Boston__yhat: 1.5261445315121063, + Boston__yhat_lower: 1.3842621727623396, + Boston__yhat_upper: 1.6621117556669727, + Boston: null, + California__yhat: 1.9734463765925931, + California__yhat_lower: 1.8088818677515675, + California__yhat_upper: 2.126982970675845, + California: null, + WestTexNewMexico__yhat: 1.6241900952059145, + WestTexNewMexico__yhat_lower: 1.4588876582071624, + WestTexNewMexico__yhat_upper: 1.784631618531262, + WestTexNewMexico: null, + }, + { + __timestamp: 1541289600000, + Boston__yhat: 1.5342292058778846, + Boston__yhat_lower: 1.4009158870039455, + Boston__yhat_upper: 1.6712593477153987, + Boston: null, + California__yhat: 1.9349431912143948, + California__yhat_lower: 1.7885852175115098, + California__yhat_upper: 2.0873085211178646, + California: null, + WestTexNewMexico__yhat: 1.5920988447021243, + WestTexNewMexico__yhat_lower: 1.4263832621800148, + WestTexNewMexico__yhat_upper: 1.7531828975557295, + WestTexNewMexico: null, + }, + { + __timestamp: 1541894400000, + Boston__yhat: 1.5294259663392042, + Boston__yhat_lower: 1.3924842007891862, + Boston__yhat_upper: 1.6507958373495442, + Boston: null, + California__yhat: 1.9057390728545534, + California__yhat_lower: 1.7475197483489708, + California__yhat_upper: 2.062712581571349, + California: null, + WestTexNewMexico__yhat: 1.543019079828916, + WestTexNewMexico__yhat_lower: 1.3695776164214464, + WestTexNewMexico__yhat_upper: 1.7087815320271016, + WestTexNewMexico: null, + }, + { + __timestamp: 1542499200000, + Boston__yhat: 1.5230698969360126, + Boston__yhat_lower: 1.3809557482614745, + Boston__yhat_upper: 1.6589456998839296, + Boston: null, + California__yhat: 1.8637296678057955, + California__yhat_lower: 1.7018053289953212, + California__yhat_upper: 2.0257018609379758, + California: null, + WestTexNewMexico__yhat: 1.4799169293082408, + WestTexNewMexico__yhat_lower: 1.3145794440516334, + WestTexNewMexico__yhat_upper: 1.6522485434508896, + WestTexNewMexico: null, + }, + { + __timestamp: 1543104000000, + Boston__yhat: 1.5208708829546633, + Boston__yhat_lower: 1.3604336968511885, + Boston__yhat_upper: 1.6609428389714096, + Boston: null, + California__yhat: 1.7936602026704043, + California__yhat_lower: 1.6379951921970646, + California__yhat_upper: 1.95152165636367, + California: null, + WestTexNewMexico__yhat: 1.4272257196828566, + WestTexNewMexico__yhat_lower: 1.272152994358733, + WestTexNewMexico__yhat_upper: 1.5868498721646007, + WestTexNewMexico: null, + }, + { + __timestamp: 1543708800000, + Boston__yhat: 1.5215185621542675, + Boston__yhat_lower: 1.3697927259578533, + Boston__yhat_upper: 1.660287494127729, + Boston: null, + California__yhat: 1.7064731067231154, + California__yhat_lower: 1.5520676677402718, + California__yhat_upper: 1.8660397663631223, + California: null, + WestTexNewMexico__yhat: 1.400927639683618, + WestTexNewMexico__yhat_lower: 1.2311493844093724, + WestTexNewMexico__yhat_upper: 1.5721726483927894, + WestTexNewMexico: null, + }, + { + __timestamp: 1544313600000, + Boston__yhat: 1.523082324505037, + Boston__yhat_lower: 1.3798605288416401, + Boston__yhat_upper: 1.6595545690681865, + Boston: null, + California__yhat: 1.63369712167469, + California__yhat_lower: 1.4812445505442762, + California__yhat_upper: 1.7895227430485967, + California: null, + WestTexNewMexico__yhat: 1.3924891998114304, + WestTexNewMexico__yhat_lower: 1.224927064552775, + WestTexNewMexico__yhat_upper: 1.5600454611520078, + WestTexNewMexico: null, + }, + { + __timestamp: 1544918400000, + Boston__yhat: 1.5252374178893244, + Boston__yhat_lower: 1.3735876009017964, + Boston__yhat_upper: 1.6817643418736, + Boston: null, + California__yhat: 1.6018360669178997, + California__yhat_lower: 1.4448200304166305, + California__yhat_upper: 1.7653214982115613, + California: null, + WestTexNewMexico__yhat: 1.382668428202286, + WestTexNewMexico__yhat_lower: 1.2250854001550213, + WestTexNewMexico__yhat_upper: 1.5513127466776713, + WestTexNewMexico: null, + }, + { + __timestamp: 1545523200000, + Boston__yhat: 1.5257009332678877, + Boston__yhat_lower: 1.373769486453698, + Boston__yhat_upper: 1.6777290304954673, + Boston: null, + California__yhat: 1.6101959065128604, + California__yhat_lower: 1.4485481898012444, + California__yhat_upper: 1.760224378777222, + California: null, + WestTexNewMexico__yhat: 1.3648297759239376, + WestTexNewMexico__yhat_lower: 1.1991014099251225, + WestTexNewMexico__yhat_upper: 1.5411049951690883, + WestTexNewMexico: null, + }, + { + __timestamp: 1546128000000, + Boston__yhat: 1.519710895215176, + Boston__yhat_lower: 1.3633919544653097, + Boston__yhat_upper: 1.6659978660046513, + Boston: null, + California__yhat: 1.6319769496654943, + California__yhat_lower: 1.473710017010973, + California__yhat_upper: 1.791109895570328, + California: null, + WestTexNewMexico__yhat: 1.3494376178076892, + WestTexNewMexico__yhat_lower: 1.185383822109829, + WestTexNewMexico__yhat_upper: 1.532570105602063, + WestTexNewMexico: null, + }, + { + __timestamp: 1546732800000, + Boston__yhat: 1.506436772565979, + Boston__yhat_lower: 1.355182359220297, + Boston__yhat_upper: 1.6593106513749971, + Boston: null, + California__yhat: 1.637152076200478, + California__yhat_lower: 1.4890084905935133, + California__yhat_upper: 1.805162095435664, + California: null, + WestTexNewMexico__yhat: 1.3471836387407383, + WestTexNewMexico__yhat_lower: 1.180741288403578, + WestTexNewMexico__yhat_upper: 1.5169593922257443, + WestTexNewMexico: null, + }, + { + __timestamp: 1547337600000, + Boston__yhat: 1.493855241350894, + Boston__yhat_lower: 1.3402894910848755, + Boston__yhat_upper: 1.6502490151569948, + Boston: null, + California__yhat: 1.6165918986195917, + California__yhat_lower: 1.452717878742141, + California__yhat_upper: 1.7835907868934933, + California: null, + WestTexNewMexico__yhat: 1.3535250210168848, + WestTexNewMexico__yhat_lower: 1.1910941101898465, + WestTexNewMexico__yhat_upper: 1.5258253127470764, + WestTexNewMexico: null, + }, + { + __timestamp: 1547942400000, + Boston__yhat: 1.4930213841534519, + Boston__yhat_lower: 1.32522086851355, + Boston__yhat_upper: 1.6395141150072567, + Boston: null, + California__yhat: 1.5868263660723425, + California__yhat_lower: 1.4139977641298356, + California__yhat_upper: 1.7378668908798396, + California: null, + WestTexNewMexico__yhat: 1.3530714721722696, + WestTexNewMexico__yhat_lower: 1.184666913955583, + WestTexNewMexico__yhat_upper: 1.5365947930677417, + WestTexNewMexico: null, + }, + { + __timestamp: 1548547200000, + Boston__yhat: 1.5064260868778963, + Boston__yhat_lower: 1.349421678738668, + Boston__yhat_upper: 1.6717312468069758, + Boston: null, + California__yhat: 1.5728369500849846, + California__yhat_lower: 1.4078403234125212, + California__yhat_upper: 1.7232456421219013, + California: null, + WestTexNewMexico__yhat: 1.3371545702180658, + WestTexNewMexico__yhat_lower: 1.1688412736364369, + WestTexNewMexico__yhat_upper: 1.5027118067203777, + WestTexNewMexico: null, + }, + { + __timestamp: 1549152000000, + Boston__yhat: 1.5247372779721031, + Boston__yhat_lower: 1.3626664019808368, + Boston__yhat_upper: 1.6814205406438416, + Boston: null, + California__yhat: 1.5856049867860793, + California__yhat_lower: 1.4318586175955552, + California__yhat_upper: 1.7445240758791, + California: null, + WestTexNewMexico__yhat: 1.3135544611621512, + WestTexNewMexico__yhat_lower: 1.1563716592544324, + WestTexNewMexico__yhat_upper: 1.475000207389841, + WestTexNewMexico: null, + }, + { + __timestamp: 1549756800000, + Boston__yhat: 1.5372085738904104, + Boston__yhat_lower: 1.3646353055360099, + Boston__yhat_upper: 1.6996311340505321, + Boston: null, + California__yhat: 1.614619447033503, + California__yhat_lower: 1.4504777711726042, + California__yhat_upper: 1.7634410984148907, + California: null, + WestTexNewMexico__yhat: 1.2984131725315775, + WestTexNewMexico__yhat_lower: 1.1291455665989898, + WestTexNewMexico__yhat_upper: 1.464210408267379, + WestTexNewMexico: null, + }, + { + __timestamp: 1550361600000, + Boston__yhat: 1.5437612828919351, + Boston__yhat_lower: 1.3714524418064908, + Boston__yhat_upper: 1.7050010452983988, + Boston: null, + California__yhat: 1.6407248315679368, + California__yhat_lower: 1.4791106123785347, + California__yhat_upper: 1.795498975466594, + California: null, + WestTexNewMexico__yhat: 1.3005896332658433, + WestTexNewMexico__yhat_lower: 1.1293433646870712, + WestTexNewMexico__yhat_upper: 1.4725109599593378, + WestTexNewMexico: null, + }, + { + __timestamp: 1550966400000, + Boston__yhat: 1.553849796800034, + Boston__yhat_lower: 1.3933386147660276, + Boston__yhat_upper: 1.7212149787623847, + Boston: null, + California__yhat: 1.6556818697074631, + California__yhat_lower: 1.4986915548656765, + California__yhat_upper: 1.8167106850243597, + California: null, + WestTexNewMexico__yhat: 1.3146671428439285, + WestTexNewMexico__yhat_lower: 1.1499214021686772, + WestTexNewMexico__yhat_upper: 1.476282980039059, + WestTexNewMexico: null, + }, + { + __timestamp: 1551571200000, + Boston__yhat: 1.5735220492749673, + Boston__yhat_lower: 1.39545277676677, + Boston__yhat_upper: 1.7405658280486025, + Boston: null, + California__yhat: 1.6692539026026865, + California__yhat_lower: 1.5070879158371504, + California__yhat_upper: 1.829855566706541, + California: null, + WestTexNewMexico__yhat: 1.3273697319920155, + WestTexNewMexico__yhat_lower: 1.1685181880635562, + WestTexNewMexico__yhat_upper: 1.5115103975610973, + WestTexNewMexico: null, + }, + { + __timestamp: 1552176000000, + Boston__yhat: 1.5970706588853314, + Boston__yhat_lower: 1.4072734746191229, + Boston__yhat_upper: 1.7662443556254754, + Boston: null, + California__yhat: 1.6973629782335624, + California__yhat_lower: 1.5391932795723466, + California__yhat_upper: 1.8666554141457992, + California: null, + WestTexNewMexico__yhat: 1.3291860136148679, + WestTexNewMexico__yhat_lower: 1.146719318199386, + WestTexNewMexico__yhat_upper: 1.49430539305963, + WestTexNewMexico: null, + }, + { + __timestamp: 1552780800000, + Boston__yhat: 1.6137166198890966, + Boston__yhat_lower: 1.435877479880376, + Boston__yhat_upper: 1.7773653706454762, + Boston: null, + California__yhat: 1.7434026274449044, + California__yhat_lower: 1.5808874223569025, + California__yhat_upper: 1.9029919670638462, + California: null, + WestTexNewMexico__yhat: 1.3211623123534868, + WestTexNewMexico__yhat_lower: 1.1561589813319189, + WestTexNewMexico__yhat_upper: 1.4849083926875184, + WestTexNewMexico: null, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Tree/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Tree/Stories.tsx new file mode 100644 index 000000000000..8f342c547c6e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Tree/Stories.tsx @@ -0,0 +1,87 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core'; +import { select, withKnobs, text, number } from '@storybook/addon-knobs'; +import { + EchartsTreeChartPlugin, + TreeTransformProps, +} from '@superset-ui/plugin-chart-echarts'; +import data from './data'; +import { withResizableChartDemo } from '../../../../shared/components/ResizableChartDemo'; + +new EchartsTreeChartPlugin().configure({ key: 'echarts-tree' }).register(); + +getChartTransformPropsRegistry().registerValue( + 'echarts-tree', + TreeTransformProps, +); + +export default { + title: 'Chart Plugins/plugin-chart-echarts/Tree', + decorators: [withKnobs, withResizableChartDemo], +}; + +export const Tree = ({ width, height }) => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Tree/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Tree/data.ts new file mode 100644 index 000000000000..1e3bbb904356 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Tree/data.ts @@ -0,0 +1,123 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default [ + { + id_column: '1', + parent_column: null, + name_column: 'root', + count: 10, + }, + { + id_column: '2', + parent_column: '1', + name_column: 'software', + count: 10, + }, + { + id_column: '3', + parent_column: '1', + name_column: 'hardware', + count: 10, + }, + { + id_column: '4', + parent_column: '2', + name_column: 'freeware', + count: 10, + }, + { + id_column: '5', + parent_column: '2', + name_column: 'shareware', + count: 10, + }, + { + id_column: '6', + parent_column: '2', + name_column: 'opensource', + count: 10, + }, + { + id_column: '7', + parent_column: '3', + name_column: 'computer', + count: 10, + }, + { + id_column: '8', + parent_column: '3', + name_column: 'cpu', + count: 10, + }, + { + id_column: '9', + parent_column: '3', + name_column: 'mouse', + count: 10, + }, + { + id_column: '10', + parent_column: '3', + name_column: 'keyboard', + count: 10, + }, + { + id_column: '11', + parent_column: '8', + name_column: 'intel', + count: 10, + }, + { + id_column: '12', + parent_column: '8', + name_column: 'ryzen', + count: 10, + }, + { + id_column: '13', + parent_column: '9', + name_column: 'razor', + count: 10, + }, + { + id_column: '14', + parent_column: '10', + name_column: 'Wired', + count: 10, + }, + { + id_column: '15', + parent_column: '10', + name_column: 'Wireless', + count: 10, + }, + { + id_column: '16', + parent_column: '10', + name_column: 'Ergonomic', + count: 10, + }, + { + id_column: '17', + parent_column: '10', + name_column: 'Cherry mx', + count: 10, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Treemap/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Treemap/Stories.tsx new file mode 100644 index 000000000000..2f26270c0e38 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Treemap/Stories.tsx @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core'; +import { boolean, withKnobs, select } from '@storybook/addon-knobs'; +import { + EchartsTreemapChartPlugin, + TreemapTransformProps, +} from '@superset-ui/plugin-chart-echarts'; +import data from './data'; +import { withResizableChartDemo } from '../../../../shared/components/ResizableChartDemo'; + +new EchartsTreemapChartPlugin() + .configure({ key: 'echarts-treemap' }) + .register(); + +getChartTransformPropsRegistry().registerValue( + 'echarts-treemap', + TreemapTransformProps, +); + +export default { + title: 'Chart Plugins/plugin-chart-echarts/Treemap', + decorators: [withKnobs, withResizableChartDemo], +}; + +export const Treemap = ({ width, height }) => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Treemap/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Treemap/data.ts new file mode 100644 index 000000000000..1628f2c1c280 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Treemap/data.ts @@ -0,0 +1,69 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default [ + { + genre: 'Action', + count: 3315, + }, + { + genre: 'Adventure', + count: 1286, + }, + { + genre: 'Fighting', + count: 848, + }, + { + genre: 'Misc', + count: 1739, + }, + { + genre: 'Platform', + count: 886, + }, + { + genre: 'Puzzle', + count: 582, + }, + { + genre: 'Racing', + count: 1249, + }, + { + genre: 'Role-Playing', + count: 1487, + }, + { + genre: 'Shooter', + count: 1310, + }, + { + genre: 'Simulation', + count: 866, + }, + { + genre: 'Sports', + count: 2346, + }, + { + genre: 'Strategy', + count: 681, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/TableStories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/TableStories.tsx new file mode 100644 index 000000000000..129c08f50575 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/TableStories.tsx @@ -0,0 +1,146 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import memoizeOne from 'memoize-one'; +import { withKnobs, number, boolean } from '@storybook/addon-knobs'; +import { SuperChart } from '@superset-ui/core'; +import TableChartPlugin, { + TableChartProps, +} from '@superset-ui/plugin-chart-table'; +import { basicFormData, basicData, birthNames } from './testData'; +import { withResizableChartDemo } from '../../../shared/components/ResizableChartDemo'; + +export default { + title: 'Chart Plugins/plugin-chart-table', + decorators: [withKnobs, withResizableChartDemo], +}; + +new TableChartPlugin().configure({ key: 'table' }).register(); + +function expandArray(input: T[], targetSize: number) { + if (!input || input.length === 0) { + throw new Error('Cannot expand an empty array'); + } + let arr = input; + while (arr.length < targetSize) { + arr = arr.concat(arr); + } + return arr.slice(0, targetSize); +} + +// memoize expanded array so to make sure we always return the same +// data when changing page sizes +const expandRecords = memoizeOne(expandArray); +const expandColumns = memoizeOne(expandArray); + +/** + * Load sample data for testing + * @param props the original props passed to SuperChart + * @param pageLength number of records perpage + * @param rows the target number of records + * @param cols the target number of columns + */ +function loadData( + props: TableChartProps, + { + pageLength = 50, + rows = 1042, + cols = 8, + alignPn = false, + showCellBars = true, + includeSearch = true, + }, +): TableChartProps { + if (!props.queriesData || !props.queriesData[0]) return props; + const records = props.queriesData?.[0].data || []; + const columns = props.queriesData?.[0].colnames || []; + return { + ...props, + queriesData: [ + { + ...props.queriesData[0], + data: expandRecords(records, rows), + colnames: expandColumns(columns, cols), + }, + ], + formData: { + ...props.formData, + align_pn: alignPn, + page_length: pageLength, + show_cell_bars: showCellBars, + include_search: includeSearch, + }, + height: window.innerHeight - 130, + }; +} + +export const basic = ({ width, height }) => ( + +); +basic.story = { + parameters: { + initialSize: { + width: 680, + height: 420, + }, + }, +}; + +export const BigTable = ({ width, height }) => { + const rows = number('Records', 2046, { range: true, min: 0, max: 50000 }); + const cols = number('Columns', 8, { range: true, min: 1, max: 20 }); + const pageLength = number('Page size', 50, { range: true, min: 0, max: 100 }); + const includeSearch = boolean('Include search', true); + const alignPn = boolean('Algin PosNeg', false); + const showCellBars = boolean('Show Cell Bars', true); + const chartProps = loadData(birthNames, { + pageLength, + rows, + cols, + alignPn, + showCellBars, + includeSearch, + }); + return ( + + ); +}; +BigTable.story = { + parameters: { + initialSize: { + width: 620, + height: 440, + }, + }, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/birthNames.json b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/birthNames.json new file mode 100644 index 000000000000..cecb37e02627 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/birthNames.json @@ -0,0 +1,13356 @@ +{ + "disableErrorBoundary": true, + "id": "chart-id-86", + "className": "superset-chart-table", + "chartType": "table", + "width": 616, + "height": 632.1, + "datasource": { + "id": 3, + "column_formats": {}, + "description": null, + "database": { + "id": 1, + "name": "examples", + "backend": "postgresql", + "allow_multi_schema_metadata_fetch": false, + "allows_subquery": true, + "allows_cost_estimate": null, + "allows_virtual_table_explore": true, + "explore_database_id": 1 + }, + "default_endpoint": null, + "filter_select": true, + "filter_select_enabled": true, + "name": "birth_names", + "datasource_name": "birth_names", + "table_name": "birth_names", + "type": "table", + "schema": null, + "offset": 0, + "cache_timeout": null, + "params": null, + "perm": "[examples].[birth_names](id:3)", + "edit_url": "/tablemodelview/edit/3", + "sql": null, + "columns": [ + { + "id": 332, + "column_name": "ds", + "verbose_name": null, + "description": null, + "expression": null, + "filterable": true, + "groupby": true, + "is_dttm": true, + "type": "TIMESTAMP WITHOUT TIME ZONE", + "python_date_format": null + }, + { + "id": 333, + "column_name": "gender", + "verbose_name": null, + "description": null, + "expression": null, + "filterable": true, + "groupby": true, + "is_dttm": false, + "type": "VARCHAR(16)", + "python_date_format": null + }, + { + "id": 334, + "column_name": "name", + "verbose_name": null, + "description": null, + "expression": null, + "filterable": true, + "groupby": true, + "is_dttm": false, + "type": "VARCHAR(255)", + "python_date_format": null + }, + { + "id": 335, + "column_name": "num", + "verbose_name": null, + "description": null, + "expression": null, + "filterable": true, + "groupby": true, + "is_dttm": false, + "type": "BIGINT", + "python_date_format": null + }, + { + "id": 336, + "column_name": "state", + "verbose_name": null, + "description": null, + "expression": null, + "filterable": true, + "groupby": true, + "is_dttm": false, + "type": "VARCHAR(10)", + "python_date_format": null + }, + { + "id": 337, + "column_name": "num_boys", + "verbose_name": null, + "description": null, + "expression": null, + "filterable": true, + "groupby": true, + "is_dttm": false, + "type": "BIGINT", + "python_date_format": null + }, + { + "id": 338, + "column_name": "num_girls", + "verbose_name": null, + "description": null, + "expression": null, + "filterable": true, + "groupby": true, + "is_dttm": false, + "type": "BIGINT", + "python_date_format": null + }, + { + "id": 339, + "column_name": "num_california", + "verbose_name": null, + "description": null, + "expression": "CASE WHEN state = 'CA' THEN num ELSE 0 END", + "filterable": true, + "groupby": true, + "is_dttm": false, + "type": null, + "python_date_format": null + } + ], + "metrics": [ + { + "is_certified": false, + "certified_by": null, + "certification_details": null, + "id": 9, + "metric_name": "count", + "verbose_name": "COUNT(*)", + "description": null, + "expression": "COUNT(*)", + "warning_text": null, + "d3format": null + }, + { + "is_certified": false, + "certified_by": null, + "certification_details": null, + "id": 10, + "metric_name": "sum__num", + "verbose_name": null, + "description": null, + "expression": "SUM(num)", + "warning_text": null, + "d3format": null + } + ], + "order_by_choices": [ + ["[\"ds\", true]", "ds [asc]"], + ["[\"ds\", false]", "ds [desc]"], + ["[\"gender\", true]", "gender [asc]"], + ["[\"gender\", false]", "gender [desc]"], + ["[\"name\", true]", "name [asc]"], + ["[\"name\", false]", "name [desc]"], + ["[\"num\", true]", "num [asc]"], + ["[\"num\", false]", "num [desc]"], + ["[\"num_boys\", true]", "num_boys [asc]"], + ["[\"num_boys\", false]", "num_boys [desc]"], + ["[\"num_california\", true]", "num_california [asc]"], + ["[\"num_california\", false]", "num_california [desc]"], + ["[\"num_girls\", true]", "num_girls [asc]"], + ["[\"num_girls\", false]", "num_girls [desc]"], + ["[\"state\", true]", "state [asc]"], + ["[\"state\", false]", "state [desc]"] + ], + "owners": [], + "verbose_map": { + "__timestamp": "Time", + "count": "COUNT(*)", + "sum__num": "sum__num", + "ds": "ds", + "gender": "gender", + "name": "name", + "num": "num", + "state": "state", + "num_boys": "num_boys", + "num_girls": "num_girls", + "num_california": "num_california" + }, + "select_star": "SELECT *\nFROM birth_names\nLIMIT 100", + "granularity_sqla": [["ds", "ds"]], + "time_grain_sqla": [ + [null, "Time Column"], + ["PT1S", "second"], + ["PT1M", "minute"], + ["PT1H", "hour"], + ["P1D", "day"], + ["P1W", "week"], + ["P1M", "month"], + ["P3M", "quarter"], + ["P1Y", "year"] + ], + "main_dttm_col": "ds", + "fetch_values_predicate": null, + "template_params": null, + "is_sqllab_view": false, + "health_check_message": null + }, + "initialValues": {}, + "formData": { + "datasource": "3__table", + "viz_type": "table", + "slice_id": 86, + "include_search": true, + "url_params": {}, + "granularity_sqla": "ds", + "time_grain_sqla": "P3M", + "time_range": "No filter", + "query_mode": "aggregate", + "groupby": ["state", "gender", "name"], + "metrics": [ + "sum__num", + { + "aggregate": "SUM", + "column": { + "column_name": "num_girls", + "description": null, + "expression": null, + "filterable": true, + "groupby": true, + "id": 338, + "is_dttm": false, + "python_date_format": null, + "type": "BIGINT", + "verbose_name": null + }, + "expressionType": "SIMPLE", + "hasCustomLabel": false, + "isNew": false, + "label": "SUM(num_girls)", + "optionName": "metric_xsmc8k1wo5e_euwhnr1wac7", + "sqlExpression": null + }, + { + "aggregate": "SUM", + "column": { + "column_name": "num_boys", + "description": null, + "expression": null, + "filterable": true, + "groupby": true, + "id": 337, + "is_dttm": false, + "python_date_format": null, + "type": "BIGINT", + "verbose_name": null + }, + "expressionType": "SIMPLE", + "hasCustomLabel": false, + "isNew": false, + "label": "SUM(num_boys)", + "optionName": "metric_ab6i6wwdg2_ev872k5w1fo", + "sqlExpression": null + } + ], + "all_columns": [], + "percent_metrics": [ + "sum__num", + { + "aggregate": "SUM", + "column": { + "column_name": "num_girls", + "description": null, + "expression": null, + "filterable": true, + "groupby": true, + "id": 338, + "is_dttm": false, + "python_date_format": null, + "type": "BIGINT", + "verbose_name": null + }, + "expressionType": "SIMPLE", + "hasCustomLabel": false, + "isNew": false, + "label": "SUM(num_girls)", + "optionName": "metric_9whr8bvg81_nae91j1dut", + "sqlExpression": null + }, + { + "aggregate": "SUM", + "column": { + "column_name": "num_boys", + "description": null, + "expression": null, + "filterable": true, + "groupby": true, + "id": 337, + "is_dttm": false, + "python_date_format": null, + "type": "BIGINT", + "verbose_name": null + }, + "expressionType": "SIMPLE", + "hasCustomLabel": true, + "isNew": false, + "label": "pct_boys", + "optionName": "metric_escshgd3oqb_uyb4l5xgfj", + "sqlExpression": null + } + ], + "order_by_cols": [], + "row_limit": 1000, + "include_time": true, + "order_desc": true, + "adhoc_filters": [], + "table_timestamp_format": "smart_date", + "color_pn": true, + "show_cell_bars": true + }, + "hooks": {}, + "queriesData": [ + { + "cache_key": "075757ce3bdc03cb01d368afd6f48c6c", + "cached_dttm": "2021-01-09T08:29:43", + "cache_timeout": 600, + "annotation_data": {}, + "error": null, + "is_cached": true, + "query": "SELECT DATE_TRUNC('quarter', ds) AS __timestamp,\n state AS state,\n gender AS gender,\n name AS name,\n SUM(num) AS sum__num,\n sum(num_girls) AS \"SUM(num_girls)\",\n sum(num_boys) AS \"SUM(num_boys)\",\n sum(num_boys) AS pct_boys\nFROM birth_names\nGROUP BY state,\n gender,\n name,\n DATE_TRUNC('quarter', ds)\nLIMIT 1000", + "status": "success", + "stacktrace": null, + "rowcount": 1000, + "colnames": [ + "__timestamp", + "state", + "gender", + "name", + "sum__num", + "SUM(num_girls)", + "SUM(num_boys)", + "pct_boys", + "% sum__num", + "% SUM(num_girls)", + "% pct_boys" + ], + "coltypes": [2, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], + "data": [ + { + "__timestamp": 252460800000, + "state": "FL", + "gender": "boy", + "name": "Juan", + "sum__num": 149, + "SUM(num_girls)": -5120, + "SUM(num_boys)": 149, + "pct_boys": 149, + "% sum__num": 0.00013234268762240587, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002305791250063835 + }, + { + "__timestamp": 1041379200000, + "state": "PA", + "gender": "boy", + "name": "Timothy ", + "sum__num": 243, + "SUM(num_girls)": 0, + "SUM(num_boys)": 243, + "pct_boys": 243, + "% sum__num": 0.00021583404759895725, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00037604515017819587 + }, + { + "__timestamp": 852076800000, + "state": "IL", + "gender": "girl", + "name": "Morgan", + "sum__num": 396, + "SUM(num_girls)": 396, + "SUM(num_boys)": -100, + "pct_boys": 0, + "% sum__num": 0.00035172955905015253, + "% SUM(num_girls)": 0.0008255744622299683, + "% pct_boys": 0 + }, + { + "__timestamp": 852076800000, + "state": "MI", + "gender": "girl", + "name": "Morgan", + "sum__num": 421, + "SUM(num_girls)": 421, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003739347079800864, + "% SUM(num_girls)": 0.0008776940621182239, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "IL", + "gender": "boy", + "name": "Cody", + "sum__num": 569, + "SUM(num_girls)": 0, + "SUM(num_boys)": 569, + "pct_boys": 569, + "% sum__num": 0.000505389189645295, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008805337055612899 + }, + { + "__timestamp": 631152000000, + "state": "TX", + "gender": "boy", + "name": "Richard", + "sum__num": 974, + "SUM(num_girls)": 0, + "SUM(num_boys)": 974, + "pct_boys": 974, + "% sum__num": 0.0008651126023102237, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015072756225249498 + }, + { + "__timestamp": 599616000000, + "state": "IL", + "gender": "boy", + "name": "Christian", + "sum__num": 166, + "SUM(num_girls)": 0, + "SUM(num_boys)": 166, + "pct_boys": 166, + "% sum__num": 0.0001474421888947609, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00025688681040979635 + }, + { + "__timestamp": 1009843200000, + "state": "TX", + "gender": "girl", + "name": "Jessica", + "sum__num": 1038, + "SUM(num_girls)": 1038, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009219577835708544, + "% SUM(num_girls)": 0.0021640057873603714, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "OH", + "gender": "boy", + "name": "Bryan", + "sum__num": 450, + "SUM(num_girls)": 0, + "SUM(num_boys)": 450, + "pct_boys": 450, + "% sum__num": 0.0003996926807388097, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006963799077373998 + }, + { + "__timestamp": 283996800000, + "state": "MI", + "gender": "girl", + "name": "Jessica", + "sum__num": 1084, + "SUM(num_girls)": 1084, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009628152576019327, + "% SUM(num_girls)": 0.0022599058511547617, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "MA", + "gender": "girl", + "name": "Laura", + "sum__num": 589, + "SUM(num_girls)": 589, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005231533087892421, + "% SUM(num_girls)": 0.0012279377733673013, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "PA", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 108, + "SUM(num_girls)": 0, + "SUM(num_boys)": 108, + "pct_boys": 108, + "% sum__num": 0.00009592624337731433, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00016713117785697594 + }, + { + "__timestamp": 1009843200000, + "state": "OH", + "gender": "girl", + "name": "Emily", + "sum__num": 957, + "SUM(num_girls)": 957, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008500131010378687, + "% SUM(num_girls)": 0.0019951382837224236, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "CA", + "gender": "boy", + "name": "Jesus", + "sum__num": 1013, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1013, + "pct_boys": 1013, + "% sum__num": 0.0008997526346409205, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001567628547862191 + }, + { + "__timestamp": 220924800000, + "state": "CA", + "gender": "girl", + "name": "Carrie", + "sum__num": 593, + "SUM(num_girls)": 593, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005267061326180315, + "% SUM(num_girls)": 0.0012362769093494223, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "NJ", + "gender": "boy", + "name": "Daniel", + "sum__num": 785, + "SUM(num_girls)": 0, + "SUM(num_boys)": 785, + "pct_boys": 785, + "% sum__num": 0.0006972416763999236, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012147960612752418 + }, + { + "__timestamp": 189302400000, + "state": "MI", + "gender": "girl", + "name": "Christine", + "sum__num": 342, + "SUM(num_girls)": 342, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003037664373614954, + "% SUM(num_girls)": 0.0007129961264713363, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "TX", + "gender": "girl", + "name": "Debra", + "sum__num": 244, + "SUM(num_girls)": 244, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002167222535561546, + "% SUM(num_girls)": 0.0005086872949093744, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "NY", + "gender": "boy", + "name": "Carlos", + "sum__num": 449, + "SUM(num_girls)": 0, + "SUM(num_boys)": 449, + "pct_boys": 449, + "% sum__num": 0.00039880447478161235, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006948323968313167 + }, + { + "__timestamp": 220924800000, + "state": "MI", + "gender": "boy", + "name": "Mark", + "sum__num": 822, + "SUM(num_girls)": 0, + "SUM(num_boys)": 822, + "pct_boys": 822, + "% sum__num": 0.0007301052968162258, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012720539648003169 + }, + { + "__timestamp": 410227200000, + "state": "MI", + "gender": "girl", + "name": "Andrea", + "sum__num": 592, + "SUM(num_girls)": 592, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005258179266608342, + "% SUM(num_girls)": 0.001234192125353892, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "IL", + "gender": "girl", + "name": "Robin", + "sum__num": 186, + "SUM(num_girls)": 186, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000165206308038708, + "% SUM(num_girls)": 0.0003877698231686215, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "NY", + "gender": "boy", + "name": "Vincent", + "sum__num": 717, + "SUM(num_girls)": 0, + "SUM(num_boys)": 717, + "pct_boys": 717, + "% sum__num": 0.0006368436713105035, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011095653196615902 + }, + { + "__timestamp": 978307200000, + "state": "NJ", + "gender": "boy", + "name": "Benjamin", + "sum__num": 337, + "SUM(num_girls)": 0, + "SUM(num_boys)": 337, + "pct_boys": 337, + "% sum__num": 0.00029932540757550863, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005215111753500083 + }, + { + "__timestamp": 504921600000, + "state": "MI", + "gender": "girl", + "name": "Erica", + "sum__num": 355, + "SUM(num_girls)": 355, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000315313114805061, + "% SUM(num_girls)": 0.0007400983184132292, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "CA", + "gender": "boy", + "name": "Brian", + "sum__num": 2016, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2016, + "pct_boys": 2016, + "% sum__num": 0.0017906232097098676, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003119781986663551 + }, + { + "__timestamp": -157766400000, + "state": "CA", + "gender": "boy", + "name": "Charles", + "sum__num": 1609, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1609, + "pct_boys": 1609, + "% sum__num": 0.001429123385130544, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002489945047887725 + }, + { + "__timestamp": 441763200000, + "state": "FL", + "gender": "girl", + "name": "Courtney", + "sum__num": 262, + "SUM(num_girls)": 262, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00023270996078570699, + "% SUM(num_girls)": 0.0005462134068289185, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "MI", + "gender": "girl", + "name": "Lauren", + "sum__num": 577, + "SUM(num_girls)": 577, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005124948373028738, + "% SUM(num_girls)": 0.0012029203654209386, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "FL", + "gender": "girl", + "name": "Angela", + "sum__num": 215, + "SUM(num_girls)": 215, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001909642807974313, + "% SUM(num_girls)": 0.000448228559038998, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "PA", + "gender": "girl", + "name": "Erica", + "sum__num": 134, + "SUM(num_girls)": 134, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011901959826444556, + "% SUM(num_girls)": 0.0002793610554010499, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "MI", + "gender": "boy", + "name": "Shawn", + "sum__num": 472, + "SUM(num_girls)": 0, + "SUM(num_boys)": 472, + "pct_boys": 472, + "% sum__num": 0.0004192332117971515, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007304251476712283 + }, + { + "__timestamp": 852076800000, + "state": "MA", + "gender": "boy", + "name": "Sean", + "sum__num": 317, + "SUM(num_girls)": 0, + "SUM(num_boys)": 317, + "pct_boys": 317, + "% sum__num": 0.0002815612884315615, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004905609572283461 + }, + { + "__timestamp": 189302400000, + "state": "other", + "gender": "girl", + "name": "Theresa", + "sum__num": 802, + "SUM(num_girls)": 802, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007123411776722786, + "% SUM(num_girls)": 0.001671996764415239, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "NJ", + "gender": "girl", + "name": "Brianna", + "sum__num": 109, + "SUM(num_girls)": 109, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00009681444933451168, + "% SUM(num_girls)": 0.00022724145551279433, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "OH", + "gender": "boy", + "name": "Richard", + "sum__num": 207, + "SUM(num_girls)": 0, + "SUM(num_boys)": 207, + "pct_boys": 207, + "% sum__num": 0.00018385863313985246, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003203347575592039 + }, + { + "__timestamp": 536457600000, + "state": "MI", + "gender": "boy", + "name": "Bryan", + "sum__num": 288, + "SUM(num_girls)": 0, + "SUM(num_boys)": 288, + "pct_boys": 288, + "% sum__num": 0.0002558033156728382, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004456831409519359 + }, + { + "__timestamp": 1072915200000, + "state": "IL", + "gender": "girl", + "name": "Jacqueline", + "sum__num": 189, + "SUM(num_girls)": 189, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00016787092591030007, + "% SUM(num_girls)": 0.00039402417515521215, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "MA", + "gender": "boy", + "name": "Justin", + "sum__num": 406, + "SUM(num_girls)": 0, + "SUM(num_boys)": 406, + "pct_boys": 406, + "% sum__num": 0.0003606116186221261, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006282894278697429 + }, + { + "__timestamp": 662688000000, + "state": "MA", + "gender": "boy", + "name": "Ian", + "sum__num": 169, + "SUM(num_girls)": 0, + "SUM(num_boys)": 169, + "pct_boys": 169, + "% sum__num": 0.00015010680676635297, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002615293431280457 + }, + { + "__timestamp": 220924800000, + "state": "PA", + "gender": "girl", + "name": "Alicia", + "sum__num": 199, + "SUM(num_girls)": 199, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00017675298548227363, + "% SUM(num_girls)": 0.0004148720151105144, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "TX", + "gender": "boy", + "name": "Jonathan", + "sum__num": 1679, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1679, + "pct_boys": 1679, + "% sum__num": 0.0014912978021343589, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0025982708113135426 + }, + { + "__timestamp": 915148800000, + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 789, + "SUM(num_girls)": 0, + "SUM(num_boys)": 789, + "pct_boys": 789, + "% sum__num": 0.0007007945002287131, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012209861048995743 + }, + { + "__timestamp": 757382400000, + "state": "CA", + "gender": "boy", + "name": "David", + "sum__num": 4059, + "SUM(num_girls)": 0, + "SUM(num_boys)": 4059, + "pct_boys": 4059, + "% sum__num": 0.003605227980264064, + "% SUM(num_girls)": 0, + "% pct_boys": 0.006281346767791346 + }, + { + "__timestamp": 220924800000, + "state": "other", + "gender": "boy", + "name": "Kevin", + "sum__num": 10946, + "SUM(num_girls)": 0, + "SUM(num_boys)": 10946, + "pct_boys": 10946, + "% sum__num": 0.009722302407482246, + "% SUM(num_girls)": 0, + "% pct_boys": 0.016939054377985728 + }, + { + "__timestamp": 189302400000, + "state": "NY", + "gender": "boy", + "name": "Donald", + "sum__num": 400, + "SUM(num_girls)": 0, + "SUM(num_boys)": 400, + "pct_boys": 400, + "% sum__num": 0.000355282382878942, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006190043624332443 + }, + { + "__timestamp": 662688000000, + "state": "MI", + "gender": "boy", + "name": "Chad", + "sum__num": 201, + "SUM(num_girls)": 0, + "SUM(num_boys)": 201, + "pct_boys": 201, + "% sum__num": 0.00017852939739666833, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003110496921227052 + }, + { + "__timestamp": 820454400000, + "state": "other", + "gender": "boy", + "name": "Jerry", + "sum__num": 55, + "SUM(num_girls)": 0, + "SUM(num_boys)": 55, + "pct_boys": 55, + "% sum__num": 0.00004885132764585452, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00008511309983457108 + }, + { + "__timestamp": 252460800000, + "state": "FL", + "gender": "boy", + "name": "Antonio", + "sum__num": 222, + "SUM(num_girls)": 0, + "SUM(num_boys)": 222, + "pct_boys": 222, + "% sum__num": 0.0001971817224978128, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00034354742115045054 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "boy", + "name": "Adrian", + "sum__num": 158, + "SUM(num_girls)": 0, + "SUM(num_boys)": 158, + "pct_boys": 158, + "% sum__num": 0.00014033654123718207, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002445067231611315 + }, + { + "__timestamp": -63158400000, + "state": "NY", + "gender": "girl", + "name": "Pamela", + "sum__num": 966, + "SUM(num_girls)": 966, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008580069546526448, + "% SUM(num_girls)": 0.0020139013396821954, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "MI", + "gender": "boy", + "name": "Bradley", + "sum__num": 287, + "SUM(num_girls)": 0, + "SUM(num_boys)": 287, + "pct_boys": 287, + "% sum__num": 0.00025491510971564085, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00044413563004585275 + }, + { + "__timestamp": 567993600000, + "state": "CA", + "gender": "boy", + "name": "Mark", + "sum__num": 1358, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1358, + "pct_boys": 1358, + "% sum__num": 0.001206183689874008, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0021015198104608643 + }, + { + "__timestamp": 220924800000, + "state": "PA", + "gender": "boy", + "name": "Gregory", + "sum__num": 632, + "SUM(num_girls)": 0, + "SUM(num_boys)": 632, + "pct_boys": 632, + "% sum__num": 0.0005613461649487283, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000978026892644526 + }, + { + "__timestamp": 473385600000, + "state": "other", + "gender": "girl", + "name": "Victoria", + "sum__num": 2197, + "SUM(num_girls)": 2197, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0019513884879625888, + "% SUM(num_girls)": 0.0045802704381799, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "NY", + "gender": "boy", + "name": "Jose", + "sum__num": 712, + "SUM(num_girls)": 0, + "SUM(num_boys)": 712, + "pct_boys": 712, + "% sum__num": 0.0006324026415245167, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011018277651311747 + }, + { + "__timestamp": 94694400000, + "state": "FL", + "gender": "girl", + "name": "Sherry", + "sum__num": 151, + "SUM(num_girls)": 151, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001341190995368006, + "% SUM(num_girls)": 0.0003148023833250637, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "MA", + "gender": "girl", + "name": "Stacey", + "sum__num": 157, + "SUM(num_girls)": 157, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013944833527998474, + "% SUM(num_girls)": 0.000327311087298245, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "MA", + "gender": "boy", + "name": "Craig", + "sum__num": 222, + "SUM(num_girls)": 0, + "SUM(num_boys)": 222, + "pct_boys": 222, + "% sum__num": 0.0001971817224978128, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00034354742115045054 + }, + { + "__timestamp": 94694400000, + "state": "NY", + "gender": "boy", + "name": "Kenneth", + "sum__num": 811, + "SUM(num_girls)": 0, + "SUM(num_boys)": 811, + "pct_boys": 811, + "% sum__num": 0.0007203350312870549, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012550313448334027 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "boy", + "name": "Nicholas", + "sum__num": 941, + "SUM(num_girls)": 0, + "SUM(num_boys)": 941, + "pct_boys": 941, + "% sum__num": 0.0008358018057227109, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001456207762624207 + }, + { + "__timestamp": 567993600000, + "state": "PA", + "gender": "girl", + "name": "Patricia", + "sum__num": 138, + "SUM(num_girls)": 138, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00012257242209323498, + "% SUM(num_girls)": 0.0002877001913831708, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "NY", + "gender": "girl", + "name": "Dawn", + "sum__num": 400, + "SUM(num_girls)": 400, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000355282382878942, + "% SUM(num_girls)": 0.0008339135982120893, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "FL", + "gender": "boy", + "name": "Juan", + "sum__num": 184, + "SUM(num_girls)": 0, + "SUM(num_boys)": 184, + "pct_boys": 184, + "% sum__num": 0.0001634298961243133, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002847420067192924 + }, + { + "__timestamp": 283996800000, + "state": "FL", + "gender": "girl", + "name": "Emily", + "sum__num": 172, + "SUM(num_girls)": 172, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00015277142463794504, + "% SUM(num_girls)": 0.00035858284723119837, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "other", + "gender": "boy", + "name": "David", + "sum__num": 15547, + "SUM(num_girls)": 0, + "SUM(num_boys)": 15547, + "pct_boys": 15547, + "% sum__num": 0.013808938016547277, + "% SUM(num_girls)": 0, + "% pct_boys": 0.02405915205687412 + }, + { + "__timestamp": 31536000000, + "state": "other", + "gender": "girl", + "name": "Teresa", + "sum__num": 4880, + "SUM(num_girls)": 4880, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.004334445071123092, + "% SUM(num_girls)": 0.01017374589818749, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "IL", + "gender": "boy", + "name": "Joshua", + "sum__num": 1288, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1288, + "pct_boys": 1288, + "% sum__num": 0.001144009272870193, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0019931940470350466 + }, + { + "__timestamp": 315532800000, + "state": "CA", + "gender": "girl", + "name": "Linda", + "sum__num": 456, + "SUM(num_girls)": 456, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00040502191648199385, + "% SUM(num_girls)": 0.0009506615019617817, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "MI", + "gender": "boy", + "name": "Benjamin", + "sum__num": 651, + "SUM(num_girls)": 0, + "SUM(num_boys)": 651, + "pct_boys": 651, + "% sum__num": 0.0005782220781354781, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001007429599860105 + }, + { + "__timestamp": 157766400000, + "state": "MI", + "gender": "girl", + "name": "Kristen", + "sum__num": 288, + "SUM(num_girls)": 288, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002558033156728382, + "% SUM(num_girls)": 0.0006004177907127043, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "IL", + "gender": "boy", + "name": "Steven", + "sum__num": 956, + "SUM(num_girls)": 0, + "SUM(num_boys)": 956, + "pct_boys": 956, + "% sum__num": 0.0008491248950806713, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014794204262154537 + }, + { + "__timestamp": 946684800000, + "state": "NJ", + "gender": "girl", + "name": "Brooke", + "sum__num": 133, + "SUM(num_girls)": 133, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011813139230724821, + "% SUM(num_girls)": 0.00027727627140551966, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "NY", + "gender": "girl", + "name": "Vanessa", + "sum__num": 252, + "SUM(num_girls)": 252, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00022382790121373345, + "% SUM(num_girls)": 0.0005253655668736163, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "NY", + "gender": "boy", + "name": "Dennis", + "sum__num": 227, + "SUM(num_girls)": 0, + "SUM(num_boys)": 227, + "pct_boys": 227, + "% sum__num": 0.00020162275228379956, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003512849756808661 + }, + { + "__timestamp": 820454400000, + "state": "other", + "gender": "girl", + "name": "Elizabeth", + "sum__num": 7393, + "SUM(num_girls)": 7393, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.006566506641560045, + "% SUM(num_girls)": 0.01541280807895494, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "IL", + "gender": "girl", + "name": "Angela", + "sum__num": 511, + "SUM(num_girls)": 511, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00045387324412784834, + "% SUM(num_girls)": 0.001065324621715944, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "MA", + "gender": "boy", + "name": "Jason", + "sum__num": 254, + "SUM(num_girls)": 0, + "SUM(num_boys)": 254, + "pct_boys": 254, + "% sum__num": 0.00022560431312812815, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003930677701451101 + }, + { + "__timestamp": 1136073600000, + "state": "IL", + "gender": "boy", + "name": "Caleb", + "sum__num": 351, + "SUM(num_girls)": 0, + "SUM(num_boys)": 351, + "pct_boys": 351, + "% sum__num": 0.00031176029097627157, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005431763280351719 + }, + { + "__timestamp": 126230400000, + "state": "FL", + "gender": "girl", + "name": "Michele", + "sum__num": 165, + "SUM(num_girls)": 165, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00014655398293756357, + "% SUM(num_girls)": 0.0003439893592624868, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "CA", + "gender": "girl", + "name": "Brittany", + "sum__num": 2421, + "SUM(num_girls)": 2421, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0021503466223747963, + "% SUM(num_girls)": 0.00504726205317867, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "PA", + "gender": "girl", + "name": "Tara", + "sum__num": 146, + "SUM(num_girls)": 146, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001296780697508138, + "% SUM(num_girls)": 0.0003043784633474126, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "MI", + "gender": "girl", + "name": "Tina", + "sum__num": 177, + "SUM(num_girls)": 177, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00015721245442393183, + "% SUM(num_girls)": 0.00036900676720884947, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "FL", + "gender": "girl", + "name": "Maria", + "sum__num": 252, + "SUM(num_girls)": 252, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00022382790121373345, + "% SUM(num_girls)": 0.0005253655668736163, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "boy", + "name": "Kevin", + "sum__num": 8976, + "SUM(num_girls)": 0, + "SUM(num_boys)": 8976, + "pct_boys": 8976, + "% sum__num": 0.007972536671803457, + "% SUM(num_girls)": 0, + "% pct_boys": 0.013890457893002 + }, + { + "__timestamp": 567993600000, + "state": "NJ", + "gender": "boy", + "name": "Eric", + "sum__num": 742, + "SUM(num_girls)": 0, + "SUM(num_boys)": 742, + "pct_boys": 742, + "% sum__num": 0.0006590488202404374, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011482530923136681 + }, + { + "__timestamp": 220924800000, + "state": "FL", + "gender": "boy", + "name": "Bryan", + "sum__num": 258, + "SUM(num_girls)": 0, + "SUM(num_boys)": 258, + "pct_boys": 258, + "% sum__num": 0.00022915713695691758, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00039925781376944254 + }, + { + "__timestamp": 946684800000, + "state": "FL", + "gender": "boy", + "name": "Logan", + "sum__num": 484, + "SUM(num_girls)": 0, + "SUM(num_boys)": 484, + "pct_boys": 484, + "% sum__num": 0.0004298916832835198, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007489952785442256 + }, + { + "__timestamp": 410227200000, + "state": "MI", + "gender": "boy", + "name": "Bradley", + "sum__num": 351, + "SUM(num_girls)": 0, + "SUM(num_boys)": 351, + "pct_boys": 351, + "% sum__num": 0.00031176029097627157, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005431763280351719 + }, + { + "__timestamp": 94694400000, + "state": "TX", + "gender": "boy", + "name": "Sean", + "sum__num": 354, + "SUM(num_girls)": 0, + "SUM(num_boys)": 354, + "pct_boys": 354, + "% sum__num": 0.00031442490884786366, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005478188607534212 + }, + { + "__timestamp": 536457600000, + "state": "NJ", + "gender": "girl", + "name": "Catherine", + "sum__num": 144, + "SUM(num_girls)": 144, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001279016578364191, + "% SUM(num_girls)": 0.00030020889535635215, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "NY", + "gender": "boy", + "name": "Shane", + "sum__num": 200, + "SUM(num_girls)": 0, + "SUM(num_boys)": 200, + "pct_boys": 200, + "% sum__num": 0.000177641191439471, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00030950218121662213 + }, + { + "__timestamp": 0, + "state": "IL", + "gender": "boy", + "name": "Douglas", + "sum__num": 628, + "SUM(num_girls)": 0, + "SUM(num_boys)": 628, + "pct_boys": 628, + "% sum__num": 0.0005577933411199389, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009718368490201935 + }, + { + "__timestamp": 315532800000, + "state": "MI", + "gender": "girl", + "name": "Laura", + "sum__num": 556, + "SUM(num_girls)": 556, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004938425122017294, + "% SUM(num_girls)": 0.001159139901514804, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "other", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 461, + "SUM(num_girls)": 0, + "SUM(num_boys)": 461, + "pct_boys": 461, + "% sum__num": 0.0004094629462679806, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000713402527704314 + }, + { + "__timestamp": 1072915200000, + "state": "FL", + "gender": "girl", + "name": "Alexandra", + "sum__num": 429, + "SUM(num_girls)": 429, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003810403556376653, + "% SUM(num_girls)": 0.0008943723340824657, + "% pct_boys": 0 + }, + { + "__timestamp": -94694400000, + "state": "TX", + "gender": "girl", + "name": "Monica", + "sum__num": 474, + "SUM(num_girls)": 474, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00042100962371154624, + "% SUM(num_girls)": 0.0009881876138813257, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "other", + "gender": "girl", + "name": "Lisa", + "sum__num": 6862, + "SUM(num_girls)": 6862, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.006094869278288249, + "% SUM(num_girls)": 0.014305787777328391, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "NJ", + "gender": "girl", + "name": "Sydney", + "sum__num": 148, + "SUM(num_girls)": 148, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013145448166520854, + "% SUM(num_girls)": 0.000308548031338473, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "IL", + "gender": "boy", + "name": "Brandon", + "sum__num": 1192, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1192, + "pct_boys": 1192, + "% sum__num": 0.001058741500979247, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001844633000051068 + }, + { + "__timestamp": 725846400000, + "state": "TX", + "gender": "boy", + "name": "Carlos", + "sum__num": 917, + "SUM(num_girls)": 0, + "SUM(num_boys)": 917, + "pct_boys": 917, + "% sum__num": 0.0008144848627499744, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014190675008782124 + }, + { + "__timestamp": 631152000000, + "state": "FL", + "gender": "girl", + "name": "Melissa", + "sum__num": 722, + "SUM(num_girls)": 722, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006412847010964902, + "% SUM(num_girls)": 0.001505214044772821, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "PA", + "gender": "girl", + "name": "Abigail", + "sum__num": 683, + "SUM(num_girls)": 683, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006066446687657934, + "% SUM(num_girls)": 0.0014239074689471425, + "% pct_boys": 0 + }, + { + "__timestamp": 1199145600000, + "state": "NJ", + "gender": "boy", + "name": "Bryan", + "sum__num": 175, + "SUM(num_girls)": 0, + "SUM(num_boys)": 175, + "pct_boys": 175, + "% sum__num": 0.0001554360425095371, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00027081440856454436 + }, + { + "__timestamp": 631152000000, + "state": "CA", + "gender": "boy", + "name": "Cody", + "sum__num": 1489, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1489, + "pct_boys": 1489, + "% sum__num": 0.0013225386702668614, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0023042437391577516 + }, + { + "__timestamp": 1072915200000, + "state": "MA", + "gender": "boy", + "name": "Dylan", + "sum__num": 354, + "SUM(num_girls)": 0, + "SUM(num_boys)": 354, + "pct_boys": 354, + "% sum__num": 0.00031442490884786366, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005478188607534212 + }, + { + "__timestamp": 63072000000, + "state": "IL", + "gender": "boy", + "name": "Carlos", + "sum__num": 184, + "SUM(num_girls)": 0, + "SUM(num_boys)": 184, + "pct_boys": 184, + "% sum__num": 0.0001634298961243133, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002847420067192924 + }, + { + "__timestamp": 852076800000, + "state": "FL", + "gender": "boy", + "name": "Antonio", + "sum__num": 320, + "SUM(num_girls)": 0, + "SUM(num_boys)": 320, + "pct_boys": 320, + "% sum__num": 0.0002842259063031536, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004952034899465954 + }, + { + "__timestamp": 946684800000, + "state": "other", + "gender": "girl", + "name": "Jacqueline", + "sum__num": 583, + "SUM(num_girls)": 583, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005178240730460579, + "% SUM(num_girls)": 0.00121542906939412, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "MA", + "gender": "boy", + "name": "Zachary", + "sum__num": 63, + "SUM(num_girls)": 0, + "SUM(num_boys)": 63, + "pct_boys": 63, + "% sum__num": 0.00005595697530343336, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00009749318708323597 + }, + { + "__timestamp": 852076800000, + "state": "IL", + "gender": "girl", + "name": "Savannah", + "sum__num": 159, + "SUM(num_girls)": 159, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00014122474719437944, + "% SUM(num_girls)": 0.0003314806552893055, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "IL", + "gender": "boy", + "name": "Randy", + "sum__num": 143, + "SUM(num_girls)": 0, + "SUM(num_boys)": 143, + "pct_boys": 143, + "% sum__num": 0.00012701345187922174, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00022129405956988483 + }, + { + "__timestamp": -126230400000, + "state": "TX", + "gender": "boy", + "name": "Samuel", + "sum__num": 329, + "SUM(num_girls)": 0, + "SUM(num_boys)": 329, + "pct_boys": 329, + "% sum__num": 0.00029221975991792977, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005091310881013434 + }, + { + "__timestamp": 220924800000, + "state": "NJ", + "gender": "girl", + "name": "Monica", + "sum__num": 125, + "SUM(num_girls)": 125, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011102574464966936, + "% SUM(num_girls)": 0.0002605979994412779, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "CA", + "gender": "girl", + "name": "Maria", + "sum__num": 1695, + "SUM(num_girls)": 1695, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0015055090974495167, + "% SUM(num_girls)": 0.0035337088724237283, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "NY", + "gender": "girl", + "name": "Chelsea", + "sum__num": 321, + "SUM(num_girls)": 321, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002851141122603509, + "% SUM(num_girls)": 0.0006692156625652016, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "TX", + "gender": "girl", + "name": "Angela", + "sum__num": 1350, + "SUM(num_girls)": 1350, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001199078042216429, + "% SUM(num_girls)": 0.002814458393965801, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "FL", + "gender": "girl", + "name": "Angela", + "sum__num": 626, + "SUM(num_girls)": 626, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005560169292055442, + "% SUM(num_girls)": 0.0013050747812019196, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "OH", + "gender": "boy", + "name": "Joshua", + "sum__num": 1762, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1762, + "pct_boys": 1762, + "% sum__num": 0.0015650188965817395, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002726714216518441 + }, + { + "__timestamp": 820454400000, + "state": "other", + "gender": "girl", + "name": "Shannon", + "sum__num": 1035, + "SUM(num_girls)": 1035, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009192931656992623, + "% SUM(num_girls)": 0.0021577514353737807, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "MA", + "gender": "girl", + "name": "Lisa", + "sum__num": 501, + "SUM(num_girls)": 501, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004449911845558748, + "% SUM(num_girls)": 0.0010444767817606418, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "NY", + "gender": "girl", + "name": "Dawn", + "sum__num": 775, + "SUM(num_girls)": 775, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006883596168279501, + "% SUM(num_girls)": 0.001615707596535923, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "FL", + "gender": "girl", + "name": "Haley", + "sum__num": 410, + "SUM(num_girls)": 410, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003641644424509155, + "% SUM(num_girls)": 0.0008547614381673915, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "MI", + "gender": "girl", + "name": "Sarah", + "sum__num": 1596, + "SUM(num_girls)": 1596, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0014175767076869785, + "% SUM(num_girls)": 0.003327315256866236, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "CA", + "gender": "girl", + "name": "Jacqueline", + "sum__num": 1225, + "SUM(num_girls)": 1225, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010880522975667598, + "% SUM(num_girls)": 0.002553860394524523, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "other", + "gender": "boy", + "name": "Luke", + "sum__num": 4838, + "SUM(num_girls)": 0, + "SUM(num_boys)": 4838, + "pct_boys": 4838, + "% sum__num": 0.004297140420920803, + "% SUM(num_girls)": 0, + "% pct_boys": 0.007486857763630089 + }, + { + "__timestamp": 1072915200000, + "state": "CA", + "gender": "boy", + "name": "Daniel", + "sum__num": 4160, + "SUM(num_girls)": 0, + "SUM(num_boys)": 4160, + "pct_boys": 4160, + "% sum__num": 0.0036949367819409966, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00643764536930574 + }, + { + "__timestamp": 283996800000, + "state": "other", + "gender": "girl", + "name": "Diane", + "sum__num": 13, + "SUM(num_girls)": 13, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000011546677443565614, + "% SUM(num_girls)": 0.0000271021919418929, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "OH", + "gender": "girl", + "name": "Kristin", + "sum__num": 142, + "SUM(num_girls)": 142, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001261252459220244, + "% SUM(num_girls)": 0.00029603932736529167, + "% pct_boys": 0 + }, + { + "__timestamp": 757382400000, + "state": "other", + "gender": "girl", + "name": "Samantha", + "sum__num": 9710, + "SUM(num_girls)": 9710, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.008624479844386317, + "% SUM(num_girls)": 0.020243252596598465, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "NJ", + "gender": "girl", + "name": "Lauren", + "sum__num": 124, + "SUM(num_girls)": 124, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011013753869247201, + "% SUM(num_girls)": 0.00025851321544574765, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "MA", + "gender": "girl", + "name": "Wendy", + "sum__num": 86, + "SUM(num_girls)": 86, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00007638571231897252, + "% SUM(num_girls)": 0.00017929142361559918, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "TX", + "gender": "girl", + "name": "Patricia", + "sum__num": 1117, + "SUM(num_girls)": 1117, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009921260541894455, + "% SUM(num_girls)": 0.002328703723007259, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "PA", + "gender": "boy", + "name": "Luke", + "sum__num": 154, + "SUM(num_girls)": 0, + "SUM(num_boys)": 154, + "pct_boys": 154, + "% sum__num": 0.00013678371740839267, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00023831667953679904 + }, + { + "__timestamp": -126230400000, + "state": "TX", + "gender": "girl", + "name": "Rhonda", + "sum__num": 737, + "SUM(num_girls)": 737, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006546077904544506, + "% SUM(num_girls)": 0.0015364858047057744, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "TX", + "gender": "girl", + "name": "Patricia", + "sum__num": 507, + "SUM(num_girls)": 507, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00045032042029905894, + "% SUM(num_girls)": 0.001056985485733823, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "other", + "gender": "girl", + "name": "Angel", + "sum__num": 562, + "SUM(num_girls)": 562, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004991717479449134, + "% SUM(num_girls)": 0.0011716486054879854, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "FL", + "gender": "boy", + "name": "Cameron", + "sum__num": 425, + "SUM(num_girls)": 0, + "SUM(num_boys)": 425, + "pct_boys": 425, + "% sum__num": 0.0003774875318088758, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000657692135085322 + }, + { + "__timestamp": 189302400000, + "state": "MA", + "gender": "girl", + "name": "Allison", + "sum__num": 129, + "SUM(num_girls)": 129, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011457856847845879, + "% SUM(num_girls)": 0.0002689371354233988, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "IL", + "gender": "boy", + "name": "Derek", + "sum__num": 182, + "SUM(num_girls)": 0, + "SUM(num_boys)": 182, + "pct_boys": 182, + "% sum__num": 0.0001616534842099186, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00028164698490712616 + }, + { + "__timestamp": 94694400000, + "state": "OH", + "gender": "boy", + "name": "Timothy", + "sum__num": 985, + "SUM(num_girls)": 0, + "SUM(num_boys)": 985, + "pct_boys": 985, + "% sum__num": 0.0008748828678393946, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001524298242491864 + }, + { + "__timestamp": 157766400000, + "state": "MI", + "gender": "boy", + "name": "Andrew", + "sum__num": 711, + "SUM(num_girls)": 0, + "SUM(num_boys)": 711, + "pct_boys": 711, + "% sum__num": 0.0006315144355673193, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011002802542250916 + }, + { + "__timestamp": 252460800000, + "state": "PA", + "gender": "girl", + "name": "Courtney", + "sum__num": 215, + "SUM(num_girls)": 215, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001909642807974313, + "% SUM(num_girls)": 0.000448228559038998, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "MA", + "gender": "girl", + "name": "Stephanie", + "sum__num": 312, + "SUM(num_girls)": 312, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00027712025864557474, + "% SUM(num_girls)": 0.0006504526066054297, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "PA", + "gender": "girl", + "name": "Christina", + "sum__num": 723, + "SUM(num_girls)": 723, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006421729070536876, + "% SUM(num_girls)": 0.0015072988287683513, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "NJ", + "gender": "boy", + "name": "Mason", + "sum__num": 103, + "SUM(num_girls)": 0, + "SUM(num_boys)": 103, + "pct_boys": 103, + "% sum__num": 0.00009148521359132756, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001593936233265604 + }, + { + "__timestamp": 0, + "state": "FL", + "gender": "girl", + "name": "Stacy", + "sum__num": 202, + "SUM(num_girls)": 202, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001794176033538657, + "% SUM(num_girls)": 0.00042112636709710507, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "FL", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 175, + "SUM(num_girls)": 0, + "SUM(num_boys)": 175, + "pct_boys": 175, + "% sum__num": 0.0001554360425095371, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00027081440856454436 + }, + { + "__timestamp": 883612800000, + "state": "IL", + "gender": "girl", + "name": "Brittany", + "sum__num": 410, + "SUM(num_girls)": 410, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003641644424509155, + "% SUM(num_girls)": 0.0008547614381673915, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "FL", + "gender": "girl", + "name": "Madison", + "sum__num": 1011, + "SUM(num_girls)": 1011, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008979762227265258, + "% SUM(num_girls)": 0.0021077166194810554, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "CA", + "gender": "girl", + "name": "Nancy", + "sum__num": 662, + "SUM(num_girls)": 662, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000587992343664649, + "% SUM(num_girls)": 0.0013801270050410076, + "% pct_boys": 0 + }, + { + "__timestamp": 378691200000, + "state": "other", + "gender": "girl", + "name": "Donna", + "sum__num": 9, + "SUM(num_girls)": 9, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000007993853614776194, + "% SUM(num_girls)": 0.00001876305595977201, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "PA", + "gender": "boy", + "name": "Bradley", + "sum__num": 309, + "SUM(num_girls)": 0, + "SUM(num_boys)": 309, + "pct_boys": 309, + "% sum__num": 0.00027445564077398265, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00047818086997968116 + }, + { + "__timestamp": 1136073600000, + "state": "IL", + "gender": "boy", + "name": "Andrew", + "sum__num": 792, + "SUM(num_girls)": 0, + "SUM(num_boys)": 792, + "pct_boys": 792, + "% sum__num": 0.0007034591181003051, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012256286376178236 + }, + { + "__timestamp": 504921600000, + "state": "IL", + "gender": "boy", + "name": "Ryan", + "sum__num": 1572, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1572, + "pct_boys": 1572, + "% sum__num": 0.001396259764714242, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00243268714436265 + }, + { + "__timestamp": 1041379200000, + "state": "NJ", + "gender": "boy", + "name": "Gabriel", + "sum__num": 297, + "SUM(num_girls)": 0, + "SUM(num_boys)": 297, + "pct_boys": 297, + "% sum__num": 0.0002637971692876144, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00045961073910668384 + }, + { + "__timestamp": 1167609600000, + "state": "MA", + "gender": "boy", + "name": "Samuel", + "sum__num": 337, + "SUM(num_girls)": 0, + "SUM(num_boys)": 337, + "pct_boys": 337, + "% sum__num": 0.00029932540757550863, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005215111753500083 + }, + { + "__timestamp": 536457600000, + "state": "MA", + "gender": "girl", + "name": "Julia", + "sum__num": 119, + "SUM(num_girls)": 119, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00010569650890648523, + "% SUM(num_girls)": 0.00024808929546809655, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "IL", + "gender": "girl", + "name": "Diane", + "sum__num": 318, + "SUM(num_girls)": 318, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002824494943887589, + "% SUM(num_girls)": 0.000662961310578611, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "OH", + "gender": "boy", + "name": "Hunter", + "sum__num": 372, + "SUM(num_girls)": 0, + "SUM(num_boys)": 372, + "pct_boys": 372, + "% sum__num": 0.000330412616077416, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005756740570629172 + }, + { + "__timestamp": 504921600000, + "state": "IL", + "gender": "girl", + "name": "Andrea", + "sum__num": 416, + "SUM(num_girls)": 416, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00036949367819409966, + "% SUM(num_girls)": 0.0008672701421405728, + "% pct_boys": 0 + }, + { + "__timestamp": 94694400000, + "state": "PA", + "gender": "boy", + "name": "Troy", + "sum__num": 261, + "SUM(num_girls)": 0, + "SUM(num_boys)": 261, + "pct_boys": 261, + "% sum__num": 0.00023182175482850962, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004039003464876919 + }, + { + "__timestamp": -126230400000, + "state": "NJ", + "gender": "girl", + "name": "Lauren", + "sum__num": 125, + "SUM(num_girls)": 125, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011102574464966936, + "% SUM(num_girls)": 0.0002605979994412779, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "MA", + "gender": "girl", + "name": "Julia", + "sum__num": 109, + "SUM(num_girls)": 109, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00009681444933451168, + "% SUM(num_girls)": 0.00022724145551279433, + "% pct_boys": 0 + }, + { + "__timestamp": -94694400000, + "state": "other", + "gender": "girl", + "name": "Kathryn", + "sum__num": 1166, + "SUM(num_girls)": 1166, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010356481460921157, + "% SUM(num_girls)": 0.00243085813878824, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "TX", + "gender": "girl", + "name": "Laura", + "sum__num": 967, + "SUM(num_girls)": 967, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008588951606098422, + "% SUM(num_girls)": 0.0020159861236777256, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "NY", + "gender": "boy", + "name": "Alex", + "sum__num": 471, + "SUM(num_girls)": 0, + "SUM(num_boys)": 471, + "pct_boys": 471, + "% sum__num": 0.00041834500583995415, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007288776367651451 + }, + { + "__timestamp": 1009843200000, + "state": "NY", + "gender": "girl", + "name": "Haley", + "sum__num": 225, + "SUM(num_girls)": 225, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019984634036940486, + "% SUM(num_girls)": 0.0004690763989943002, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "MI", + "gender": "boy", + "name": "William", + "sum__num": 1062, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1062, + "pct_boys": 1062, + "% sum__num": 0.0009432747265435909, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016434565822602634 + }, + { + "__timestamp": 94694400000, + "state": "MA", + "gender": "girl", + "name": "Cynthia", + "sum__num": 163, + "SUM(num_girls)": 163, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00014477757102316884, + "% SUM(num_girls)": 0.00033981979127142636, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "CA", + "gender": "boy", + "name": "Jacob", + "sum__num": 520, + "SUM(num_girls)": 0, + "SUM(num_boys)": 520, + "pct_boys": 520, + "% sum__num": 0.00046186709774262457, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008047056711632175 + }, + { + "__timestamp": 1072915200000, + "state": "OH", + "gender": "girl", + "name": "Megan", + "sum__num": 351, + "SUM(num_girls)": 351, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00031176029097627157, + "% SUM(num_girls)": 0.0007317591824311083, + "% pct_boys": 0 + }, + { + "__timestamp": 441763200000, + "state": "FL", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 534, + "SUM(num_girls)": 0, + "SUM(num_boys)": 534, + "pct_boys": 534, + "% sum__num": 0.0004743019811433875, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008263708238483811 + }, + { + "__timestamp": 63072000000, + "state": "MI", + "gender": "boy", + "name": "Ryan", + "sum__num": 418, + "SUM(num_girls)": 0, + "SUM(num_boys)": 418, + "pct_boys": 418, + "% sum__num": 0.0003712700901084944, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006468595587427403 + }, + { + "__timestamp": 0, + "state": "TX", + "gender": "girl", + "name": "Dana", + "sum__num": 433, + "SUM(num_girls)": 433, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003845931794664547, + "% SUM(num_girls)": 0.0009027114700645866, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "FL", + "gender": "boy", + "name": "Bryan", + "sum__num": 416, + "SUM(num_girls)": 0, + "SUM(num_boys)": 416, + "pct_boys": 416, + "% sum__num": 0.00036949367819409966, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000643764536930574 + }, + { + "__timestamp": 978307200000, + "state": "NJ", + "gender": "girl", + "name": "Sara", + "sum__num": 195, + "SUM(num_girls)": 195, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001732001616534842, + "% SUM(num_girls)": 0.0004065328791283935, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "other", + "gender": "girl", + "name": "Dawn", + "sum__num": 9, + "SUM(num_girls)": 9, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000007993853614776194, + "% SUM(num_girls)": 0.00001876305595977201, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "NJ", + "gender": "boy", + "name": "Alexander", + "sum__num": 606, + "SUM(num_girls)": 0, + "SUM(num_boys)": 606, + "pct_boys": 606, + "% sum__num": 0.000538252810061597, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000937791609086365 + }, + { + "__timestamp": 1136073600000, + "state": "CA", + "gender": "girl", + "name": "Samantha", + "sum__num": 2338, + "SUM(num_girls)": 2338, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0020766255279274157, + "% SUM(num_girls)": 0.004874224981549662, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "MA", + "gender": "boy", + "name": "George", + "sum__num": 139, + "SUM(num_girls)": 0, + "SUM(num_boys)": 139, + "pct_boys": 139, + "% sum__num": 0.00012346062805043234, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00021510401594555237 + }, + { + "__timestamp": 1009843200000, + "state": "PA", + "gender": "boy", + "name": "Steven", + "sum__num": 236, + "SUM(num_girls)": 0, + "SUM(num_boys)": 236, + "pct_boys": 236, + "% sum__num": 0.00020961660589857576, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00036521257383561413 + }, + { + "__timestamp": 946684800000, + "state": "NJ", + "gender": "girl", + "name": "Jessica", + "sum__num": 606, + "SUM(num_girls)": 606, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000538252810061597, + "% SUM(num_girls)": 0.0012633791012913152, + "% pct_boys": 0 + }, + { + "__timestamp": 94694400000, + "state": "CA", + "gender": "girl", + "name": "Kimberly", + "sum__num": 1717, + "SUM(num_girls)": 1717, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0015250496285078585, + "% SUM(num_girls)": 0.003579574120325393, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "PA", + "gender": "boy", + "name": "Gregory", + "sum__num": 826, + "SUM(num_girls)": 0, + "SUM(num_boys)": 826, + "pct_boys": 826, + "% sum__num": 0.0007336581206450151, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012782440084246494 + }, + { + "__timestamp": 883612800000, + "state": "FL", + "gender": "girl", + "name": "Lindsey", + "sum__num": 163, + "SUM(num_girls)": 163, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00014477757102316884, + "% SUM(num_girls)": 0.00033981979127142636, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "other", + "gender": "girl", + "name": "Danielle", + "sum__num": 376, + "SUM(num_girls)": 376, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00033396543990620546, + "% SUM(num_girls)": 0.0007838787823193639, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "OH", + "gender": "boy", + "name": "Austin", + "sum__num": 148, + "SUM(num_girls)": 0, + "SUM(num_boys)": 148, + "pct_boys": 148, + "% sum__num": 0.00013145448166520854, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00022903161410030038 + }, + { + "__timestamp": -157766400000, + "state": "NJ", + "gender": "boy", + "name": "Stephen", + "sum__num": 620, + "SUM(num_girls)": 0, + "SUM(num_boys)": 620, + "pct_boys": 620, + "% sum__num": 0.00055068769346236, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009594567617715286 + }, + { + "__timestamp": 31536000000, + "state": "MA", + "gender": "boy", + "name": "Nicholas", + "sum__num": 87, + "SUM(num_girls)": 0, + "SUM(num_boys)": 87, + "pct_boys": 87, + "% sum__num": 0.00007727391827616988, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00013463344882923061 + }, + { + "__timestamp": 504921600000, + "state": "NY", + "gender": "girl", + "name": "Cassandra", + "sum__num": 315, + "SUM(num_girls)": 315, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002797848765171668, + "% SUM(num_girls)": 0.0006567069585920203, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "MA", + "gender": "boy", + "name": "Noah", + "sum__num": 253, + "SUM(num_girls)": 0, + "SUM(num_boys)": 253, + "pct_boys": 253, + "% sum__num": 0.0002247161071709308, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00039152025923902697 + }, + { + "__timestamp": 126230400000, + "state": "CA", + "gender": "boy", + "name": "Carlos", + "sum__num": 809, + "SUM(num_girls)": 0, + "SUM(num_boys)": 809, + "pct_boys": 809, + "% sum__num": 0.0007185586193726601, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012519363230212364 + }, + { + "__timestamp": 473385600000, + "state": "other", + "gender": "girl", + "name": "Kaitlyn", + "sum__num": 14, + "SUM(num_girls)": 14, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000012434883400762968, + "% SUM(num_girls)": 0.000029186975937423125, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "NJ", + "gender": "girl", + "name": "Heather", + "sum__num": 474, + "SUM(num_girls)": 474, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00042100962371154624, + "% SUM(num_girls)": 0.0009881876138813257, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "NY", + "gender": "boy", + "name": "Kevin", + "sum__num": 2118, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2118, + "pct_boys": 2118, + "% sum__num": 0.0018812202173439977, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003277628099084028 + }, + { + "__timestamp": 410227200000, + "state": "IL", + "gender": "boy", + "name": "George", + "sum__num": 211, + "SUM(num_girls)": 0, + "SUM(num_boys)": 211, + "pct_boys": 211, + "% sum__num": 0.0001874114569686419, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00032652480118353636 + }, + { + "__timestamp": 978307200000, + "state": "other", + "gender": "boy", + "name": "Tyler", + "sum__num": 9805, + "SUM(num_girls)": 0, + "SUM(num_boys)": 9805, + "pct_boys": 9805, + "% sum__num": 0.008708859410320065, + "% SUM(num_girls)": 0, + "% pct_boys": 0.015173344434144899 + }, + { + "__timestamp": 1167609600000, + "state": "MI", + "gender": "girl", + "name": "Madison", + "sum__num": 681, + "SUM(num_girls)": 681, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006048682568513987, + "% SUM(num_girls)": 0.001419737900956082, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "other", + "gender": "boy", + "name": "Douglas", + "sum__num": 2399, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2399, + "pct_boys": 2399, + "% sum__num": 0.0021308060913164542, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0037124786636933823 + }, + { + "__timestamp": 915148800000, + "state": "OH", + "gender": "girl", + "name": "Victoria", + "sum__num": 366, + "SUM(num_girls)": 366, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00032508338033423193, + "% SUM(num_girls)": 0.0007630309423640616, + "% pct_boys": 0 + }, + { + "__timestamp": 757382400000, + "state": "TX", + "gender": "girl", + "name": "Taylor", + "sum__num": 1478, + "SUM(num_girls)": 1478, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0013127684047376906, + "% SUM(num_girls)": 0.00308131074539367, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "OH", + "gender": "boy", + "name": "Anthony", + "sum__num": 977, + "SUM(num_girls)": 0, + "SUM(num_boys)": 977, + "pct_boys": 977, + "% sum__num": 0.0008677772201818157, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001511918155243199 + }, + { + "__timestamp": 788918400000, + "state": "MA", + "gender": "girl", + "name": "Ashley", + "sum__num": 544, + "SUM(num_girls)": 544, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004831840407153611, + "% SUM(num_girls)": 0.0011341224935684413, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "CA", + "gender": "girl", + "name": "Nancy", + "sum__num": 895, + "SUM(num_girls)": 895, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007949443316916326, + "% SUM(num_girls)": 0.0018658816759995497, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "girl", + "name": "Brenda", + "sum__num": 1784, + "SUM(num_girls)": 1784, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0015845594276400813, + "% SUM(num_girls)": 0.003719254648025918, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "NJ", + "gender": "girl", + "name": "Brianna", + "sum__num": 491, + "SUM(num_girls)": 491, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004361091249839013, + "% SUM(num_girls)": 0.0010236289418053396, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "IL", + "gender": "girl", + "name": "Margaret", + "sum__num": 362, + "SUM(num_girls)": 362, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00032153055650544247, + "% SUM(num_girls)": 0.0007546918063819408, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "PA", + "gender": "girl", + "name": "Teresa", + "sum__num": 260, + "SUM(num_girls)": 260, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00023093354887131228, + "% SUM(num_girls)": 0.000542043838837858, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "OH", + "gender": "girl", + "name": "Madison", + "sum__num": 201, + "SUM(num_girls)": 201, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00017852939739666833, + "% SUM(num_girls)": 0.0004190415831015748, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "NJ", + "gender": "boy", + "name": "Charles", + "sum__num": 360, + "SUM(num_girls)": 0, + "SUM(num_boys)": 360, + "pct_boys": 360, + "% sum__num": 0.0003197541445910478, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005571039261899198 + }, + { + "__timestamp": 220924800000, + "state": "other", + "gender": "girl", + "name": "Dawn", + "sum__num": 2514, + "SUM(num_girls)": 2514, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0022329497763941505, + "% SUM(num_girls)": 0.005241146964762981, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "MA", + "gender": "boy", + "name": "Jared", + "sum__num": 141, + "SUM(num_girls)": 0, + "SUM(num_boys)": 141, + "pct_boys": 141, + "% sum__num": 0.00012523703996482704, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00021819903775771859 + }, + { + "__timestamp": 662688000000, + "state": "NY", + "gender": "boy", + "name": "Bryan", + "sum__num": 541, + "SUM(num_girls)": 0, + "SUM(num_boys)": 541, + "pct_boys": 541, + "% sum__num": 0.000480519422843769, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008372034001909628 + }, + { + "__timestamp": 189302400000, + "state": "PA", + "gender": "girl", + "name": "Monica", + "sum__num": 175, + "SUM(num_girls)": 175, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001554360425095371, + "% SUM(num_girls)": 0.00036483719921778904, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "FL", + "gender": "boy", + "name": "Jason", + "sum__num": 1599, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1599, + "pct_boys": 1599, + "% sum__num": 0.0014202413255585706, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002474469938826894 + }, + { + "__timestamp": -157766400000, + "state": "TX", + "gender": "boy", + "name": "John", + "sum__num": 3226, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3226, + "pct_boys": 3226, + "% sum__num": 0.002865352417918667, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004992270183024115 + }, + { + "__timestamp": 694224000000, + "state": "MI", + "gender": "girl", + "name": "Brittany", + "sum__num": 895, + "SUM(num_girls)": 895, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007949443316916326, + "% SUM(num_girls)": 0.0018658816759995497, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "FL", + "gender": "girl", + "name": "Jessica", + "sum__num": 866, + "SUM(num_girls)": 866, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007691863589329094, + "% SUM(num_girls)": 0.0018054229401291732, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "TX", + "gender": "girl", + "name": "Katherine", + "sum__num": 280, + "SUM(num_girls)": 280, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00024869766801525935, + "% SUM(num_girls)": 0.0005837395187484625, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "NY", + "gender": "boy", + "name": "Adam", + "sum__num": 802, + "SUM(num_girls)": 0, + "SUM(num_boys)": 802, + "pct_boys": 802, + "% sum__num": 0.0007123411776722786, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012411037466786548 + }, + { + "__timestamp": 157766400000, + "state": "TX", + "gender": "girl", + "name": "Denise", + "sum__num": 280, + "SUM(num_girls)": 280, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00024869766801525935, + "% SUM(num_girls)": 0.0005837395187484625, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "PA", + "gender": "boy", + "name": "Dylan", + "sum__num": 218, + "SUM(num_girls)": 0, + "SUM(num_boys)": 218, + "pct_boys": 218, + "% sum__num": 0.00019362889866902336, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003373573775261181 + }, + { + "__timestamp": 757382400000, + "state": "MI", + "gender": "boy", + "name": "John", + "sum__num": 675, + "SUM(num_girls)": 0, + "SUM(num_boys)": 675, + "pct_boys": 675, + "% sum__num": 0.0005995390211082145, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010445698616060996 + }, + { + "__timestamp": 126230400000, + "state": "OH", + "gender": "boy", + "name": "Nicholas", + "sum__num": 207, + "SUM(num_girls)": 0, + "SUM(num_boys)": 207, + "pct_boys": 207, + "% sum__num": 0.00018385863313985246, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003203347575592039 + }, + { + "__timestamp": 915148800000, + "state": "PA", + "gender": "boy", + "name": "John", + "sum__num": 1003, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1003, + "pct_boys": 1003, + "% sum__num": 0.000890870575068947, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00155215343880136 + }, + { + "__timestamp": -157766400000, + "state": "PA", + "gender": "girl", + "name": "Cindy", + "sum__num": 404, + "SUM(num_girls)": 404, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003588352067077314, + "% SUM(num_girls)": 0.0008422527341942101, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "NY", + "gender": "girl", + "name": "Crystal", + "sum__num": 303, + "SUM(num_girls)": 303, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002691264050307985, + "% SUM(num_girls)": 0.0006316895506456576, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "OH", + "gender": "girl", + "name": "Patricia", + "sum__num": 293, + "SUM(num_girls)": 293, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000260244345458825, + "% SUM(num_girls)": 0.0006108417106903554, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "TX", + "gender": "boy", + "name": "Eric", + "sum__num": 1430, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1430, + "pct_boys": 1430, + "% sum__num": 0.0012701345187922175, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0022129405956988484 + }, + { + "__timestamp": 567993600000, + "state": "NY", + "gender": "boy", + "name": "Cody", + "sum__num": 235, + "SUM(num_girls)": 0, + "SUM(num_boys)": 235, + "pct_boys": 235, + "% sum__num": 0.0002087283999413784, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000363665062929531 + }, + { + "__timestamp": 94694400000, + "state": "NJ", + "gender": "boy", + "name": "Jose", + "sum__num": 300, + "SUM(num_girls)": 0, + "SUM(num_boys)": 300, + "pct_boys": 300, + "% sum__num": 0.0002664617871592065, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004642532718249332 + }, + { + "__timestamp": 631152000000, + "state": "CA", + "gender": "boy", + "name": "William", + "sum__num": 2203, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2203, + "pct_boys": 2203, + "% sum__num": 0.001956717723705773, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0034091665261010927 + }, + { + "__timestamp": 567993600000, + "state": "OH", + "gender": "girl", + "name": "Tiffany", + "sum__num": 954, + "SUM(num_girls)": 954, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008473484831662766, + "% SUM(num_girls)": 0.001988883931735833, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "MI", + "gender": "girl", + "name": "Sandra", + "sum__num": 371, + "SUM(num_girls)": 371, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003295244101202187, + "% SUM(num_girls)": 0.0007734548623417128, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "PA", + "gender": "boy", + "name": "Joshua", + "sum__num": 853, + "SUM(num_girls)": 0, + "SUM(num_boys)": 853, + "pct_boys": 853, + "% sum__num": 0.0007576396814893437, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0013200268028888934 + }, + { + "__timestamp": 694224000000, + "state": "PA", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 255, + "SUM(num_girls)": 0, + "SUM(num_boys)": 255, + "pct_boys": 255, + "% sum__num": 0.00022649251908532552, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003946152810511932 + }, + { + "__timestamp": 504921600000, + "state": "MI", + "gender": "girl", + "name": "Lisa", + "sum__num": 403, + "SUM(num_girls)": 403, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00035794700075053403, + "% SUM(num_girls)": 0.0008401679501986799, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "PA", + "gender": "girl", + "name": "Kimberly", + "sum__num": 1606, + "SUM(num_girls)": 1606, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001426458767258952, + "% SUM(num_girls)": 0.003348163096821538, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "PA", + "gender": "boy", + "name": "Nathan", + "sum__num": 513, + "SUM(num_girls)": 0, + "SUM(num_boys)": 513, + "pct_boys": 513, + "% sum__num": 0.0004556496560422431, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007938730948206358 + }, + { + "__timestamp": 1041379200000, + "state": "TX", + "gender": "boy", + "name": "Jonathan", + "sum__num": 1767, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1767, + "pct_boys": 1767, + "% sum__num": 0.001569459926367726, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0027344517710488564 + }, + { + "__timestamp": 694224000000, + "state": "NJ", + "gender": "boy", + "name": "Corey", + "sum__num": 142, + "SUM(num_girls)": 0, + "SUM(num_boys)": 142, + "pct_boys": 142, + "% sum__num": 0.0001261252459220244, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002197465486638017 + }, + { + "__timestamp": -31536000000, + "state": "NJ", + "gender": "girl", + "name": "Monica", + "sum__num": 153, + "SUM(num_girls)": 153, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001358955114511953, + "% SUM(num_girls)": 0.00031897195131612416, + "% pct_boys": 0 + }, + { + "__timestamp": -94694400000, + "state": "IL", + "gender": "girl", + "name": "Victoria", + "sum__num": 281, + "SUM(num_girls)": 281, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002495858739724567, + "% SUM(num_girls)": 0.0005858243027439927, + "% pct_boys": 0 + }, + { + "__timestamp": 946684800000, + "state": "TX", + "gender": "girl", + "name": "Megan", + "sum__num": 740, + "SUM(num_girls)": 740, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006572724083260427, + "% SUM(num_girls)": 0.0015427401566923652, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "other", + "gender": "girl", + "name": "Jessica", + "sum__num": 15193, + "SUM(num_girls)": 15193, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.013494513107699413, + "% SUM(num_girls)": 0.03167412324409068, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "other", + "gender": "girl", + "name": "Cassandra", + "sum__num": 1849, + "SUM(num_girls)": 1849, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0016422928148579093, + "% SUM(num_girls)": 0.0038547656077353824, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "CA", + "gender": "girl", + "name": "Tiffany", + "sum__num": 1405, + "SUM(num_girls)": 1405, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0012479293698622836, + "% SUM(num_girls)": 0.0029291215137199635, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "PA", + "gender": "boy", + "name": "Aaron", + "sum__num": 495, + "SUM(num_girls)": 0, + "SUM(num_boys)": 495, + "pct_boys": 495, + "% sum__num": 0.0004396619488126907, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007660178985111398 + }, + { + "__timestamp": 599616000000, + "state": "MA", + "gender": "boy", + "name": "Lucas", + "sum__num": 76, + "SUM(num_girls)": 0, + "SUM(num_boys)": 76, + "pct_boys": 76, + "% sum__num": 0.00006750365274699897, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00011761082886231641 + }, + { + "__timestamp": 1167609600000, + "state": "other", + "gender": "girl", + "name": "Mary", + "sum__num": 1693, + "SUM(num_girls)": 1693, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001503732685535122, + "% SUM(num_girls)": 0.003529539304432668, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "OH", + "gender": "girl", + "name": "Tara", + "sum__num": 354, + "SUM(num_girls)": 354, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00031442490884786366, + "% SUM(num_girls)": 0.0007380135344176989, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "MI", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 190, + "SUM(num_girls)": 0, + "SUM(num_boys)": 190, + "pct_boys": 190, + "% sum__num": 0.00016875913186749743, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00029402707215579104 + }, + { + "__timestamp": 852076800000, + "state": "NY", + "gender": "boy", + "name": "Benjamin", + "sum__num": 789, + "SUM(num_girls)": 0, + "SUM(num_boys)": 789, + "pct_boys": 789, + "% sum__num": 0.0007007945002287131, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012209861048995743 + }, + { + "__timestamp": 820454400000, + "state": "NY", + "gender": "boy", + "name": "Joseph", + "sum__num": 2456, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2456, + "pct_boys": 2456, + "% sum__num": 0.002181433830876704, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0038006867853401195 + }, + { + "__timestamp": 946684800000, + "state": "NY", + "gender": "girl", + "name": "Katelyn", + "sum__num": 237, + "SUM(num_girls)": 237, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00021050481185577312, + "% SUM(num_girls)": 0.0004940938069406629, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "MI", + "gender": "boy", + "name": "Corey", + "sum__num": 230, + "SUM(num_girls)": 0, + "SUM(num_boys)": 230, + "pct_boys": 230, + "% sum__num": 0.00020428737015539163, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003559275083991154 + }, + { + "__timestamp": 1199145600000, + "state": "other", + "gender": "boy", + "name": "Ryan", + "sum__num": 5775, + "SUM(num_girls)": 0, + "SUM(num_boys)": 5775, + "pct_boys": 5775, + "% sum__num": 0.005129389402814725, + "% SUM(num_girls)": 0, + "% pct_boys": 0.008936875482629964 + }, + { + "__timestamp": 662688000000, + "state": "MA", + "gender": "boy", + "name": "Brian", + "sum__num": 524, + "SUM(num_girls)": 0, + "SUM(num_boys)": 524, + "pct_boys": 524, + "% sum__num": 0.00046541992157141397, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00081089571478755 + }, + { + "__timestamp": -157766400000, + "state": "FL", + "gender": "boy", + "name": "John", + "sum__num": 1933, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1933, + "pct_boys": 1933, + "% sum__num": 0.001716902115262487, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002991338581458653 + }, + { + "__timestamp": 220924800000, + "state": "NJ", + "gender": "boy", + "name": "John", + "sum__num": 1226, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1226, + "pct_boys": 1226, + "% sum__num": 0.0010889405035239572, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018972483708578937 + }, + { + "__timestamp": -126230400000, + "state": "other", + "gender": "girl", + "name": "Allison", + "sum__num": 34, + "SUM(num_girls)": 34, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00003019900254471007, + "% SUM(num_girls)": 0.00007088265584802758, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "NY", + "gender": "boy", + "name": "Michael", + "sum__num": 6157, + "SUM(num_girls)": 0, + "SUM(num_boys)": 6157, + "pct_boys": 6157, + "% sum__num": 0.005468684078464114, + "% SUM(num_girls)": 0, + "% pct_boys": 0.009528024648753712 + }, + { + "__timestamp": 1041379200000, + "state": "other", + "gender": "boy", + "name": "Jeremy", + "sum__num": 457, + "SUM(num_girls)": 0, + "SUM(num_boys)": 457, + "pct_boys": 457, + "% sum__num": 0.0004059101224391912, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007072124840799815 + }, + { + "__timestamp": -94694400000, + "state": "CA", + "gender": "boy", + "name": "Jeffery", + "sum__num": 513, + "SUM(num_girls)": 0, + "SUM(num_boys)": 513, + "pct_boys": 513, + "% sum__num": 0.0004556496560422431, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007938730948206358 + }, + { + "__timestamp": 504921600000, + "state": "TX", + "gender": "boy", + "name": "Marcus", + "sum__num": 530, + "SUM(num_girls)": 0, + "SUM(num_boys)": 530, + "pct_boys": 530, + "% sum__num": 0.0004707491573145981, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008201807802240487 + }, + { + "__timestamp": 126230400000, + "state": "TX", + "gender": "boy", + "name": "Mark", + "sum__num": 1087, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1087, + "pct_boys": 1087, + "% sum__num": 0.0009654798754735248, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016821443549123413 + }, + { + "__timestamp": 567993600000, + "state": "CA", + "gender": "girl", + "name": "Karen", + "sum__num": 494, + "SUM(num_girls)": 494, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004387737428554933, + "% SUM(num_girls)": 0.0010298832937919301, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "PA", + "gender": "girl", + "name": "Brooke", + "sum__num": 282, + "SUM(num_girls)": 282, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002504740799296541, + "% SUM(num_girls)": 0.000587909086739523, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "other", + "gender": "boy", + "name": "Donald", + "sum__num": 2048, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2048, + "pct_boys": 2048, + "% sum__num": 0.0018190458003401828, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0031693023356582106 + }, + { + "__timestamp": 567993600000, + "state": "NJ", + "gender": "girl", + "name": "Cassandra", + "sum__num": 137, + "SUM(num_girls)": 137, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00012168421613603762, + "% SUM(num_girls)": 0.00028561540738764057, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "CA", + "gender": "boy", + "name": "Kevin", + "sum__num": 2039, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2039, + "pct_boys": 2039, + "% sum__num": 0.0018110519467254068, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0031553747375034627 + }, + { + "__timestamp": 0, + "state": "FL", + "gender": "girl", + "name": "Kim", + "sum__num": 120, + "SUM(num_girls)": 120, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001065847148636826, + "% SUM(num_girls)": 0.0002501740794636268, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "NY", + "gender": "boy", + "name": "Vincent", + "sum__num": 459, + "SUM(num_girls)": 0, + "SUM(num_boys)": 459, + "pct_boys": 459, + "% sum__num": 0.0004076865343535859, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007103075058921478 + }, + { + "__timestamp": 1041379200000, + "state": "MI", + "gender": "boy", + "name": "Jack", + "sum__num": 428, + "SUM(num_girls)": 0, + "SUM(num_boys)": 428, + "pct_boys": 428, + "% sum__num": 0.0003801521496804679, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006623346678035713 + }, + { + "__timestamp": 378691200000, + "state": "MA", + "gender": "girl", + "name": "Kristin", + "sum__num": 243, + "SUM(num_girls)": 243, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00021583404759895725, + "% SUM(num_girls)": 0.0005066025109138442, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "FL", + "gender": "boy", + "name": "Daniel", + "sum__num": 434, + "SUM(num_girls)": 0, + "SUM(num_boys)": 434, + "pct_boys": 434, + "% sum__num": 0.00038548138542365205, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00067161973324007 + }, + { + "__timestamp": -63158400000, + "state": "NY", + "gender": "girl", + "name": "Mary", + "sum__num": 1796, + "SUM(num_girls)": 1796, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0015952178991264494, + "% SUM(num_girls)": 0.0037442720559722805, + "% pct_boys": 0 + }, + { + "__timestamp": 1199145600000, + "state": "NY", + "gender": "boy", + "name": "Ryan", + "sum__num": 1429, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1429, + "pct_boys": 1429, + "% sum__num": 0.0012692463128350202, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002211393084792765 + }, + { + "__timestamp": -157766400000, + "state": "MI", + "gender": "boy", + "name": "Craig", + "sum__num": 496, + "SUM(num_girls)": 0, + "SUM(num_boys)": 496, + "pct_boys": 496, + "% sum__num": 0.00044055015476988804, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007675654094172229 + }, + { + "__timestamp": 504921600000, + "state": "NY", + "gender": "boy", + "name": "Miguel", + "sum__num": 258, + "SUM(num_girls)": 0, + "SUM(num_boys)": 258, + "pct_boys": 258, + "% sum__num": 0.00022915713695691758, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00039925781376944254 + }, + { + "__timestamp": 94694400000, + "state": "NJ", + "gender": "girl", + "name": "Rachel", + "sum__num": 158, + "SUM(num_girls)": 158, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00014033654123718207, + "% SUM(num_girls)": 0.00032939587129377526, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "MA", + "gender": "girl", + "name": "Brooke", + "sum__num": 151, + "SUM(num_girls)": 151, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001341190995368006, + "% SUM(num_girls)": 0.0003148023833250637, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "PA", + "gender": "boy", + "name": "Stephen", + "sum__num": 748, + "SUM(num_girls)": 0, + "SUM(num_boys)": 748, + "pct_boys": 748, + "% sum__num": 0.0006643780559836215, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011575381577501667 + }, + { + "__timestamp": 0, + "state": "NJ", + "gender": "girl", + "name": "Christine", + "sum__num": 855, + "SUM(num_girls)": 855, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007594160934037385, + "% SUM(num_girls)": 0.0017824903161783407, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "MI", + "gender": "girl", + "name": "Brooke", + "sum__num": 269, + "SUM(num_girls)": 269, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00023892740248608848, + "% SUM(num_girls)": 0.00056080689479763, + "% pct_boys": 0 + }, + { + "__timestamp": 757382400000, + "state": "MA", + "gender": "boy", + "name": "Jeremy", + "sum__num": 187, + "SUM(num_girls)": 0, + "SUM(num_boys)": 187, + "pct_boys": 187, + "% sum__num": 0.00016609451399590537, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002893845394375417 + }, + { + "__timestamp": 757382400000, + "state": "OH", + "gender": "boy", + "name": "Bradley", + "sum__num": 312, + "SUM(num_girls)": 0, + "SUM(num_boys)": 312, + "pct_boys": 312, + "% sum__num": 0.00027712025864557474, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004828234026979305 + }, + { + "__timestamp": 946684800000, + "state": "MA", + "gender": "girl", + "name": "Nicole", + "sum__num": 314, + "SUM(num_girls)": 314, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00027889667055996947, + "% SUM(num_girls)": 0.00065462217459649, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "IL", + "gender": "girl", + "name": "Taylor", + "sum__num": 358, + "SUM(num_girls)": 358, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00031797773267665307, + "% SUM(num_girls)": 0.0007463526703998199, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "NJ", + "gender": "boy", + "name": "Jonathan", + "sum__num": 538, + "SUM(num_girls)": 0, + "SUM(num_boys)": 538, + "pct_boys": 538, + "% sum__num": 0.00047785480497217696, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008325608674727135 + }, + { + "__timestamp": 504921600000, + "state": "FL", + "gender": "boy", + "name": "Aaron", + "sum__num": 430, + "SUM(num_girls)": 0, + "SUM(num_boys)": 430, + "pct_boys": 430, + "% sum__num": 0.0003819285615948626, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006654296896157376 + }, + { + "__timestamp": -31536000000, + "state": "IL", + "gender": "girl", + "name": "Michelle", + "sum__num": 2022, + "SUM(num_girls)": 2022, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0017959524454530516, + "% SUM(num_girls)": 0.004215433238962111, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "NJ", + "gender": "girl", + "name": "Vanessa", + "sum__num": 124, + "SUM(num_girls)": 124, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011013753869247201, + "% SUM(num_girls)": 0.00025851321544574765, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "other", + "gender": "girl", + "name": "Stacy", + "sum__num": 3032, + "SUM(num_girls)": 3032, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00269304046222238, + "% SUM(num_girls)": 0.006321065074447636, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "FL", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 461, + "SUM(num_girls)": 0, + "SUM(num_boys)": 461, + "pct_boys": 461, + "% sum__num": 0.0004094629462679806, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000713402527704314 + }, + { + "__timestamp": 1104537600000, + "state": "OH", + "gender": "girl", + "name": "Grace", + "sum__num": 605, + "SUM(num_girls)": 605, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005373646041043998, + "% SUM(num_girls)": 0.001261294317295785, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "NY", + "gender": "girl", + "name": "Victoria", + "sum__num": 590, + "SUM(num_girls)": 590, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005240415147464394, + "% SUM(num_girls)": 0.0012300225573628316, + "% pct_boys": 0 + }, + { + "__timestamp": 1199145600000, + "state": "NY", + "gender": "girl", + "name": "Alyssa", + "sum__num": 524, + "SUM(num_girls)": 524, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00046541992157141397, + "% SUM(num_girls)": 0.001092426813657837, + "% pct_boys": 0 + }, + { + "__timestamp": 1167609600000, + "state": "CA", + "gender": "boy", + "name": "John", + "sum__num": 1147, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1147, + "pct_boys": 1147, + "% sum__num": 0.001018772232905366, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001774995009277328 + }, + { + "__timestamp": -94694400000, + "state": "TX", + "gender": "girl", + "name": "Anna", + "sum__num": 342, + "SUM(num_girls)": 342, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003037664373614954, + "% SUM(num_girls)": 0.0007129961264713363, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "FL", + "gender": "girl", + "name": "Tiffany", + "sum__num": 249, + "SUM(num_girls)": 249, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00022116328334214139, + "% SUM(num_girls)": 0.0005191112148870255, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "NJ", + "gender": "boy", + "name": "Christian", + "sum__num": 184, + "SUM(num_girls)": 0, + "SUM(num_boys)": 184, + "pct_boys": 184, + "% sum__num": 0.0001634298961243133, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002847420067192924 + }, + { + "__timestamp": 820454400000, + "state": "MI", + "gender": "boy", + "name": "Jeremy", + "sum__num": 227, + "SUM(num_girls)": 0, + "SUM(num_boys)": 227, + "pct_boys": 227, + "% sum__num": 0.00020162275228379956, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003512849756808661 + }, + { + "__timestamp": -94694400000, + "state": "FL", + "gender": "girl", + "name": "Mary", + "sum__num": 704, + "SUM(num_girls)": 704, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006252969938669379, + "% SUM(num_girls)": 0.0014676879328532771, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "OH", + "gender": "girl", + "name": "Brianna", + "sum__num": 191, + "SUM(num_girls)": 191, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001696473378246948, + "% SUM(num_girls)": 0.00039819374314627263, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "CA", + "gender": "girl", + "name": "Andrea", + "sum__num": 1092, + "SUM(num_girls)": 1092, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009699209052595115, + "% SUM(num_girls)": 0.0022765841231190036, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "IL", + "gender": "boy", + "name": "Steven", + "sum__num": 872, + "SUM(num_girls)": 0, + "SUM(num_boys)": 872, + "pct_boys": 872, + "% sum__num": 0.0007745155946760935, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0013494295101044724 + }, + { + "__timestamp": 441763200000, + "state": "FL", + "gender": "boy", + "name": "James", + "sum__num": 1679, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1679, + "pct_boys": 1679, + "% sum__num": 0.0014912978021343589, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0025982708113135426 + }, + { + "__timestamp": 915148800000, + "state": "FL", + "gender": "girl", + "name": "Elizabeth", + "sum__num": 658, + "SUM(num_girls)": 658, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005844395198358595, + "% SUM(num_girls)": 0.0013717878690588869, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "FL", + "gender": "boy", + "name": "Benjamin", + "sum__num": 508, + "SUM(num_girls)": 0, + "SUM(num_boys)": 508, + "pct_boys": 508, + "% sum__num": 0.0004512086262562563, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007861355402902202 + }, + { + "__timestamp": -63158400000, + "state": "PA", + "gender": "girl", + "name": "Leslie", + "sum__num": 315, + "SUM(num_girls)": 315, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002797848765171668, + "% SUM(num_girls)": 0.0006567069585920203, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "OH", + "gender": "girl", + "name": "Theresa", + "sum__num": 186, + "SUM(num_girls)": 186, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000165206308038708, + "% SUM(num_girls)": 0.0003877698231686215, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "other", + "gender": "girl", + "name": "Jasmine", + "sum__num": 5176, + "SUM(num_girls)": 5176, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.004597354034453509, + "% SUM(num_girls)": 0.010790841960864436, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "TX", + "gender": "girl", + "name": "Nancy", + "sum__num": 309, + "SUM(num_girls)": 309, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00027445564077398265, + "% SUM(num_girls)": 0.0006441982546188389, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "NJ", + "gender": "girl", + "name": "Grace", + "sum__num": 230, + "SUM(num_girls)": 230, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00020428737015539163, + "% SUM(num_girls)": 0.00047950031897195134, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "PA", + "gender": "girl", + "name": "Sydney", + "sum__num": 278, + "SUM(num_girls)": 278, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002469212561008647, + "% SUM(num_girls)": 0.000579569950757402, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "IL", + "gender": "girl", + "name": "Christina", + "sum__num": 541, + "SUM(num_girls)": 541, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000480519422843769, + "% SUM(num_girls)": 0.0011278681415818506, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "MA", + "gender": "girl", + "name": "Jennifer", + "sum__num": 1406, + "SUM(num_girls)": 1406, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001248817575819481, + "% SUM(num_girls)": 0.0029312062977154938, + "% pct_boys": 0 + }, + { + "__timestamp": 852076800000, + "state": "OH", + "gender": "girl", + "name": "Anna", + "sum__num": 369, + "SUM(num_girls)": 369, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00032774799820582397, + "% SUM(num_girls)": 0.0007692852943506523, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "CA", + "gender": "girl", + "name": "Amanda", + "sum__num": 3168, + "SUM(num_girls)": 3168, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0028138364724012203, + "% SUM(num_girls)": 0.0066045956978397465, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "other", + "gender": "girl", + "name": "Julie", + "sum__num": 8402, + "SUM(num_girls)": 8402, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.007462706452372176, + "% SUM(num_girls)": 0.017516355130444933, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "NY", + "gender": "girl", + "name": "Kaitlyn", + "sum__num": 399, + "SUM(num_girls)": 399, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003543941769217446, + "% SUM(num_girls)": 0.000831828814216559, + "% pct_boys": 0 + }, + { + "__timestamp": 441763200000, + "state": "TX", + "gender": "boy", + "name": "Shawn", + "sum__num": 343, + "SUM(num_girls)": 0, + "SUM(num_boys)": 343, + "pct_boys": 343, + "% sum__num": 0.00030465464331869276, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000530796240786507 + }, + { + "__timestamp": 157766400000, + "state": "MA", + "gender": "girl", + "name": "Wendy", + "sum__num": 161, + "SUM(num_girls)": 161, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00014300115910877414, + "% SUM(num_girls)": 0.00033565022328036593, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "NJ", + "gender": "girl", + "name": "Tina", + "sum__num": 111, + "SUM(num_girls)": 111, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0000985908612489064, + "% SUM(num_girls)": 0.00023141102350385476, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "NJ", + "gender": "girl", + "name": "Christine", + "sum__num": 508, + "SUM(num_girls)": 508, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004512086262562563, + "% SUM(num_girls)": 0.0010590702697293533, + "% pct_boys": 0 + }, + { + "__timestamp": 946684800000, + "state": "PA", + "gender": "girl", + "name": "Emily", + "sum__num": 1174, + "SUM(num_girls)": 1174, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010427537937496947, + "% SUM(num_girls)": 0.002447536410752482, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "TX", + "gender": "girl", + "name": "Nicole", + "sum__num": 418, + "SUM(num_girls)": 418, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003712700901084944, + "% SUM(num_girls)": 0.0008714397101316333, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "NY", + "gender": "girl", + "name": "Laura", + "sum__num": 753, + "SUM(num_girls)": 753, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006688190857696083, + "% SUM(num_girls)": 0.001569842348634258, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "PA", + "gender": "girl", + "name": "Megan", + "sum__num": 756, + "SUM(num_girls)": 756, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006714837036412003, + "% SUM(num_girls)": 0.0015760967006208486, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "MI", + "gender": "boy", + "name": "Kyle", + "sum__num": 1168, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1168, + "pct_boys": 1168, + "% sum__num": 0.0010374245580065105, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018074927383050733 + }, + { + "__timestamp": 31536000000, + "state": "CA", + "gender": "girl", + "name": "Linda", + "sum__num": 577, + "SUM(num_girls)": 577, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005124948373028738, + "% SUM(num_girls)": 0.0012029203654209386, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "TX", + "gender": "boy", + "name": "Samuel", + "sum__num": 408, + "SUM(num_girls)": 0, + "SUM(num_boys)": 408, + "pct_boys": 408, + "% sum__num": 0.0003623880305365208, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006313844496819091 + }, + { + "__timestamp": 315532800000, + "state": "FL", + "gender": "girl", + "name": "April", + "sum__num": 432, + "SUM(num_girls)": 432, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003837049735092573, + "% SUM(num_girls)": 0.0009006266860690563, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "IL", + "gender": "boy", + "name": "Jeremy", + "sum__num": 299, + "SUM(num_girls)": 0, + "SUM(num_boys)": 299, + "pct_boys": 299, + "% sum__num": 0.0002655735812020091, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00046270576091885006 + }, + { + "__timestamp": 252460800000, + "state": "OH", + "gender": "boy", + "name": "Sean", + "sum__num": 304, + "SUM(num_girls)": 0, + "SUM(num_boys)": 304, + "pct_boys": 304, + "% sum__num": 0.0002700146109879959, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00047044331544926564 + }, + { + "__timestamp": 283996800000, + "state": "other", + "gender": "girl", + "name": "Jessica", + "sum__num": 13341, + "SUM(num_girls)": 13341, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.011849555674969913, + "% SUM(num_girls)": 0.027813103284368708, + "% pct_boys": 0 + }, + { + "__timestamp": 946684800000, + "state": "IL", + "gender": "girl", + "name": "Rachel", + "sum__num": 477, + "SUM(num_girls)": 477, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004236742415831383, + "% SUM(num_girls)": 0.0009944419658679165, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "MI", + "gender": "boy", + "name": "Joseph", + "sum__num": 870, + "SUM(num_girls)": 0, + "SUM(num_boys)": 870, + "pct_boys": 870, + "% sum__num": 0.0007727391827616988, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0013463344882923061 + }, + { + "__timestamp": 1009843200000, + "state": "OH", + "gender": "boy", + "name": "Tyler", + "sum__num": 961, + "SUM(num_girls)": 0, + "SUM(num_boys)": 961, + "pct_boys": 961, + "% sum__num": 0.0008535659248666581, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014871579807458693 + }, + { + "__timestamp": 725846400000, + "state": "NJ", + "gender": "boy", + "name": "Corey", + "sum__num": 141, + "SUM(num_girls)": 0, + "SUM(num_boys)": 141, + "pct_boys": 141, + "% sum__num": 0.00012523703996482704, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00021819903775771859 + }, + { + "__timestamp": 883612800000, + "state": "MA", + "gender": "boy", + "name": "Jesse", + "sum__num": 82, + "SUM(num_girls)": 0, + "SUM(num_boys)": 82, + "pct_boys": 82, + "% sum__num": 0.0000728328884901831, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00012689589429881507 + }, + { + "__timestamp": 883612800000, + "state": "CA", + "gender": "girl", + "name": "Christina", + "sum__num": 601, + "SUM(num_girls)": 601, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005338117802756103, + "% SUM(num_girls)": 0.001252955181313664, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "IL", + "gender": "boy", + "name": "Keith", + "sum__num": 281, + "SUM(num_girls)": 0, + "SUM(num_boys)": 281, + "pct_boys": 281, + "% sum__num": 0.0002495858739724567, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004348505646093541 + }, + { + "__timestamp": 31536000000, + "state": "MI", + "gender": "boy", + "name": "Donald", + "sum__num": 517, + "SUM(num_girls)": 0, + "SUM(num_boys)": 517, + "pct_boys": 517, + "% sum__num": 0.0004592024798710325, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008000631384449682 + }, + { + "__timestamp": 1199145600000, + "state": "OH", + "gender": "girl", + "name": "Emily", + "sum__num": 520, + "SUM(num_girls)": 520, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00046186709774262457, + "% SUM(num_girls)": 0.001084087677675716, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "IL", + "gender": "boy", + "name": "Joel", + "sum__num": 204, + "SUM(num_girls)": 0, + "SUM(num_boys)": 204, + "pct_boys": 204, + "% sum__num": 0.0001811940152682604, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00031569222484095457 + }, + { + "__timestamp": 1041379200000, + "state": "MA", + "gender": "boy", + "name": "Benjamin", + "sum__num": 497, + "SUM(num_girls)": 0, + "SUM(num_boys)": 497, + "pct_boys": 497, + "% sum__num": 0.0004414383607270854, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000769112920323306 + }, + { + "__timestamp": 1199145600000, + "state": "PA", + "gender": "boy", + "name": "William", + "sum__num": 626, + "SUM(num_girls)": 0, + "SUM(num_boys)": 626, + "pct_boys": 626, + "% sum__num": 0.0005560169292055442, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009687418272080273 + }, + { + "__timestamp": 378691200000, + "state": "OH", + "gender": "boy", + "name": "Jordan", + "sum__num": 147, + "SUM(num_girls)": 0, + "SUM(num_boys)": 147, + "pct_boys": 147, + "% sum__num": 0.00013056627570801117, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00022748410319421727 + }, + { + "__timestamp": 978307200000, + "state": "NY", + "gender": "boy", + "name": "Eric", + "sum__num": 641, + "SUM(num_girls)": 0, + "SUM(num_boys)": 641, + "pct_boys": 641, + "% sum__num": 0.0005693400185635045, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009919544907992738 + }, + { + "__timestamp": 852076800000, + "state": "other", + "gender": "girl", + "name": "Karen", + "sum__num": 74, + "SUM(num_girls)": 74, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00006572724083260427, + "% SUM(num_girls)": 0.0001542740156692365, + "% pct_boys": 0 + }, + { + "__timestamp": -126230400000, + "state": "IL", + "gender": "girl", + "name": "Nancy", + "sum__num": 670, + "SUM(num_girls)": 670, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005950979913222278, + "% SUM(num_girls)": 0.0013968052770052496, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "OH", + "gender": "girl", + "name": "Angela", + "sum__num": 370, + "SUM(num_girls)": 370, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00032863620416302133, + "% SUM(num_girls)": 0.0007713700783461826, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "other", + "gender": "girl", + "name": "Laura", + "sum__num": 6493, + "SUM(num_girls)": 6493, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.005767121280082425, + "% SUM(num_girls)": 0.013536502482977738, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "MA", + "gender": "boy", + "name": "James", + "sum__num": 1156, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1156, + "pct_boys": 1156, + "% sum__num": 0.0010267660865201423, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017889226074320759 + }, + { + "__timestamp": -31536000000, + "state": "IL", + "gender": "girl", + "name": "Andrea", + "sum__num": 358, + "SUM(num_girls)": 358, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00031797773267665307, + "% SUM(num_girls)": 0.0007463526703998199, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "other", + "gender": "girl", + "name": "Mary", + "sum__num": 3852, + "SUM(num_girls)": 3852, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.003421369347124211, + "% SUM(num_girls)": 0.00803058795078242, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "other", + "gender": "girl", + "name": "Jill", + "sum__num": 1832, + "SUM(num_girls)": 1832, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0016271933135855543, + "% SUM(num_girls)": 0.0038193242798113688, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "NJ", + "gender": "boy", + "name": "Corey", + "sum__num": 142, + "SUM(num_girls)": 0, + "SUM(num_boys)": 142, + "pct_boys": 142, + "% sum__num": 0.0001261252459220244, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002197465486638017 + }, + { + "__timestamp": 946684800000, + "state": "MI", + "gender": "boy", + "name": "Jack", + "sum__num": 382, + "SUM(num_girls)": 0, + "SUM(num_boys)": 382, + "pct_boys": 382, + "% sum__num": 0.0003392946756493896, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005911491661237482 + }, + { + "__timestamp": 347155200000, + "state": "MI", + "gender": "boy", + "name": "Jason", + "sum__num": 2016, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2016, + "pct_boys": 2016, + "% sum__num": 0.0017906232097098676, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003119781986663551 + }, + { + "__timestamp": 441763200000, + "state": "CA", + "gender": "girl", + "name": "Cynthia", + "sum__num": 1191, + "SUM(num_girls)": 1191, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010578532950220496, + "% SUM(num_girls)": 0.0024829777386764958, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "other", + "gender": "girl", + "name": "Kathleen", + "sum__num": 2404, + "SUM(num_girls)": 2404, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0021352471211024413, + "% SUM(num_girls)": 0.005011820725254656, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "MA", + "gender": "boy", + "name": "Jacob", + "sum__num": 593, + "SUM(num_girls)": 0, + "SUM(num_boys)": 593, + "pct_boys": 593, + "% sum__num": 0.0005267061326180315, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009176739673072845 + }, + { + "__timestamp": 788918400000, + "state": "FL", + "gender": "boy", + "name": "Cameron", + "sum__num": 331, + "SUM(num_girls)": 0, + "SUM(num_boys)": 331, + "pct_boys": 331, + "% sum__num": 0.0002939961718323245, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005122261099135096 + }, + { + "__timestamp": 63072000000, + "state": "other", + "gender": "boy", + "name": "Marcus", + "sum__num": 1643, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1643, + "pct_boys": 1643, + "% sum__num": 0.0014593223876752542, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002542560418694551 + }, + { + "__timestamp": 378691200000, + "state": "other", + "gender": "girl", + "name": "Kayla", + "sum__num": 917, + "SUM(num_girls)": 917, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008144848627499744, + "% SUM(num_girls)": 0.0019117469239012146, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "other", + "gender": "boy", + "name": "Jacob", + "sum__num": 3373, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3373, + "pct_boys": 3373, + "% sum__num": 0.002995918693626678, + "% SUM(num_girls)": 0, + "% pct_boys": 0.005219754286218332 + }, + { + "__timestamp": 1104537600000, + "state": "TX", + "gender": "boy", + "name": "Luis", + "sum__num": 1417, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1417, + "pct_boys": 1417, + "% sum__num": 0.001258587841348652, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002192822953919768 + }, + { + "__timestamp": 283996800000, + "state": "PA", + "gender": "boy", + "name": "James", + "sum__num": 1901, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1901, + "pct_boys": 1901, + "% sum__num": 0.0016884795246321718, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0029418182324639935 + }, + { + "__timestamp": 504921600000, + "state": "NJ", + "gender": "girl", + "name": "Kaitlyn", + "sum__num": 112, + "SUM(num_girls)": 112, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00009947906720610375, + "% SUM(num_girls)": 0.000233495807499385, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "MI", + "gender": "girl", + "name": "Kathleen", + "sum__num": 401, + "SUM(num_girls)": 401, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003561705888361393, + "% SUM(num_girls)": 0.0008359983822076195, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "CA", + "gender": "boy", + "name": "Daniel", + "sum__num": 5451, + "SUM(num_girls)": 0, + "SUM(num_boys)": 5451, + "pct_boys": 5451, + "% sum__num": 0.0048416106726827815, + "% SUM(num_girls)": 0, + "% pct_boys": 0.008435481949059036 + }, + { + "__timestamp": 599616000000, + "state": "other", + "gender": "boy", + "name": "Dana", + "sum__num": 7, + "SUM(num_girls)": 0, + "SUM(num_boys)": 7, + "pct_boys": 7, + "% sum__num": 0.000006217441700381484, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000010832576342581774 + }, + { + "__timestamp": 915148800000, + "state": "OH", + "gender": "girl", + "name": "Christina", + "sum__num": 137, + "SUM(num_girls)": 137, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00012168421613603762, + "% SUM(num_girls)": 0.00028561540738764057, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "other", + "gender": "girl", + "name": "Barbara", + "sum__num": 6446, + "SUM(num_girls)": 6446, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00572537560009415, + "% SUM(num_girls)": 0.013438517635187818, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "other", + "gender": "boy", + "name": "Mark", + "sum__num": 16266, + "SUM(num_girls)": 0, + "SUM(num_boys)": 16266, + "pct_boys": 16266, + "% sum__num": 0.014447558099772176, + "% SUM(num_girls)": 0, + "% pct_boys": 0.025171812398347877 + }, + { + "__timestamp": 441763200000, + "state": "OH", + "gender": "boy", + "name": "Brandon", + "sum__num": 1353, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1353, + "pct_boys": 1353, + "% sum__num": 0.0012017426600880211, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0020937822559304485 + }, + { + "__timestamp": 1167609600000, + "state": "MI", + "gender": "boy", + "name": "Kevin", + "sum__num": 161, + "SUM(num_girls)": 0, + "SUM(num_boys)": 161, + "pct_boys": 161, + "% sum__num": 0.00014300115910877414, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00024914925587938083 + }, + { + "__timestamp": 1041379200000, + "state": "MA", + "gender": "boy", + "name": "Timothy", + "sum__num": 177, + "SUM(num_girls)": 0, + "SUM(num_boys)": 177, + "pct_boys": 177, + "% sum__num": 0.00015721245442393183, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002739094303767106 + }, + { + "__timestamp": 252460800000, + "state": "CA", + "gender": "boy", + "name": "Justin", + "sum__num": 1394, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1394, + "pct_boys": 1394, + "% sum__num": 0.0012381591043331129, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0021572302030798563 + }, + { + "__timestamp": 536457600000, + "state": "FL", + "gender": "boy", + "name": "Vincent", + "sum__num": 136, + "SUM(num_girls)": 0, + "SUM(num_boys)": 136, + "pct_boys": 136, + "% sum__num": 0.00012079601017884027, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00021046148322730304 + }, + { + "__timestamp": 788918400000, + "state": "TX", + "gender": "boy", + "name": "Eric", + "sum__num": 1114, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1114, + "pct_boys": 1114, + "% sum__num": 0.0009894614363178534, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017239271493765852 + }, + { + "__timestamp": 820454400000, + "state": "CA", + "gender": "boy", + "name": "Tyler", + "sum__num": 2107, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2107, + "pct_boys": 2107, + "% sum__num": 0.001871449951814827, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0032606054791171142 + }, + { + "__timestamp": 788918400000, + "state": "TX", + "gender": "boy", + "name": "Ryan", + "sum__num": 1353, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1353, + "pct_boys": 1353, + "% sum__num": 0.0012017426600880211, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0020937822559304485 + }, + { + "__timestamp": 694224000000, + "state": "TX", + "gender": "girl", + "name": "Haley", + "sum__num": 556, + "SUM(num_girls)": 556, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004938425122017294, + "% SUM(num_girls)": 0.001159139901514804, + "% pct_boys": 0 + }, + { + "__timestamp": -126230400000, + "state": "FL", + "gender": "boy", + "name": "Joseph", + "sum__num": 656, + "SUM(num_girls)": 0, + "SUM(num_boys)": 656, + "pct_boys": 656, + "% sum__num": 0.0005826631079214648, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010151671543905205 + }, + { + "__timestamp": 252460800000, + "state": "PA", + "gender": "boy", + "name": "Brandon", + "sum__num": 297, + "SUM(num_girls)": 0, + "SUM(num_boys)": 297, + "pct_boys": 297, + "% sum__num": 0.0002637971692876144, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00045961073910668384 + }, + { + "__timestamp": 347155200000, + "state": "MI", + "gender": "boy", + "name": "Gary", + "sum__num": 231, + "SUM(num_girls)": 0, + "SUM(num_boys)": 231, + "pct_boys": 231, + "% sum__num": 0.000205175576112589, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00035747501930519855 + }, + { + "__timestamp": 1041379200000, + "state": "CA", + "gender": "boy", + "name": "Jesus", + "sum__num": 1874, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1874, + "pct_boys": 1874, + "% sum__num": 0.0016644979637878432, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0029000354379997493 + }, + { + "__timestamp": -31536000000, + "state": "NY", + "gender": "boy", + "name": "Christopher", + "sum__num": 3733, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3733, + "pct_boys": 3733, + "% sum__num": 0.003315672838217726, + "% SUM(num_girls)": 0, + "% pct_boys": 0.005776858212408252 + }, + { + "__timestamp": 852076800000, + "state": "MA", + "gender": "girl", + "name": "Brianna", + "sum__num": 338, + "SUM(num_girls)": 338, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00030021361353270594, + "% SUM(num_girls)": 0.0007046569904892154, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "FL", + "gender": "boy", + "name": "Larry", + "sum__num": 275, + "SUM(num_girls)": 0, + "SUM(num_boys)": 275, + "pct_boys": 275, + "% sum__num": 0.0002442566382292726, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00042556549917285543 + }, + { + "__timestamp": 283996800000, + "state": "TX", + "gender": "girl", + "name": "Patricia", + "sum__num": 604, + "SUM(num_girls)": 604, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005364763981472024, + "% SUM(num_girls)": 0.0012592095333002547, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "IL", + "gender": "girl", + "name": "Savannah", + "sum__num": 176, + "SUM(num_girls)": 176, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00015632424846673447, + "% SUM(num_girls)": 0.0003669219832133193, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "PA", + "gender": "boy", + "name": "Jason", + "sum__num": 2282, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2282, + "pct_boys": 2282, + "% sum__num": 0.002026885994324364, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0035314198876816583 + }, + { + "__timestamp": 378691200000, + "state": "CA", + "gender": "girl", + "name": "Jamie", + "sum__num": 960, + "SUM(num_girls)": 960, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008526777189094608, + "% SUM(num_girls)": 0.0020013926357090144, + "% pct_boys": 0 + }, + { + "__timestamp": 757382400000, + "state": "other", + "gender": "boy", + "name": "Jesus", + "sum__num": 520, + "SUM(num_girls)": 0, + "SUM(num_boys)": 520, + "pct_boys": 520, + "% sum__num": 0.00046186709774262457, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008047056711632175 + }, + { + "__timestamp": 978307200000, + "state": "NY", + "gender": "boy", + "name": "Zachary", + "sum__num": 918, + "SUM(num_girls)": 0, + "SUM(num_boys)": 918, + "pct_boys": 918, + "% sum__num": 0.0008153730687071718, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014206150117842956 + }, + { + "__timestamp": 347155200000, + "state": "TX", + "gender": "girl", + "name": "Samantha", + "sum__num": 421, + "SUM(num_girls)": 421, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003739347079800864, + "% SUM(num_girls)": 0.0008776940621182239, + "% pct_boys": 0 + }, + { + "__timestamp": 1199145600000, + "state": "TX", + "gender": "girl", + "name": "Andrea", + "sum__num": 771, + "SUM(num_girls)": 771, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006848067929991606, + "% SUM(num_girls)": 0.001607368460553802, + "% pct_boys": 0 + }, + { + "__timestamp": -126230400000, + "state": "PA", + "gender": "girl", + "name": "Kelly", + "sum__num": 909, + "SUM(num_girls)": 909, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008073792150923956, + "% SUM(num_girls)": 0.001895068651936973, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "other", + "gender": "boy", + "name": "Eric", + "sum__num": 3023, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3023, + "pct_boys": 3023, + "% sum__num": 0.002685046608607604, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004678125469089243 + }, + { + "__timestamp": 189302400000, + "state": "MI", + "gender": "boy", + "name": "Jason", + "sum__num": 2811, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2811, + "pct_boys": 2811, + "% sum__num": 0.002496746945681765, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004350053156999624 + }, + { + "__timestamp": 694224000000, + "state": "PA", + "gender": "boy", + "name": "Justin", + "sum__num": 1006, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1006, + "pct_boys": 1006, + "% sum__num": 0.0008935351929405391, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015567959715196093 + }, + { + "__timestamp": 220924800000, + "state": "MA", + "gender": "boy", + "name": "Jacob", + "sum__num": 92, + "SUM(num_girls)": 0, + "SUM(num_boys)": 92, + "pct_boys": 92, + "% sum__num": 0.00008171494806215665, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001423710033596462 + }, + { + "__timestamp": 126230400000, + "state": "IL", + "gender": "boy", + "name": "Jerry", + "sum__num": 228, + "SUM(num_girls)": 0, + "SUM(num_boys)": 228, + "pct_boys": 228, + "% sum__num": 0.00020251095824099692, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003528324865869492 + }, + { + "__timestamp": 1199145600000, + "state": "other", + "gender": "girl", + "name": "Sophia", + "sum__num": 6414, + "SUM(num_girls)": 6414, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0056969530094638345, + "% SUM(num_girls)": 0.013371804547330852, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "CA", + "gender": "girl", + "name": "Dawn", + "sum__num": 388, + "SUM(num_girls)": 388, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003446239113925737, + "% SUM(num_girls)": 0.0008088961902657266, + "% pct_boys": 0 + }, + { + "__timestamp": 441763200000, + "state": "PA", + "gender": "girl", + "name": "Sarah", + "sum__num": 1102, + "SUM(num_girls)": 1102, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000978802964831485, + "% SUM(num_girls)": 0.002297431963074306, + "% pct_boys": 0 + }, + { + "__timestamp": 946684800000, + "state": "other", + "gender": "girl", + "name": "Stephanie", + "sum__num": 2035, + "SUM(num_girls)": 2035, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0018074991228966173, + "% SUM(num_girls)": 0.004242535430904004, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "CA", + "gender": "girl", + "name": "Lisa", + "sum__num": 1037, + "SUM(num_girls)": 1037, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000921069577613657, + "% SUM(num_girls)": 0.002161921003364841, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "other", + "gender": "girl", + "name": "Morgan", + "sum__num": 4787, + "SUM(num_girls)": 4787, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.004251841917103738, + "% SUM(num_girls)": 0.009979860986603178, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "PA", + "gender": "girl", + "name": "Jill", + "sum__num": 387, + "SUM(num_girls)": 387, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00034373570543537636, + "% SUM(num_girls)": 0.0008068114062701964, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "CA", + "gender": "girl", + "name": "Olivia", + "sum__num": 1158, + "SUM(num_girls)": 1158, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001028542498434537, + "% SUM(num_girls)": 0.0024141798668239982, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "FL", + "gender": "boy", + "name": "Joel", + "sum__num": 152, + "SUM(num_girls)": 0, + "SUM(num_boys)": 152, + "pct_boys": 152, + "% sum__num": 0.00013500730549399794, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00023522165772463282 + }, + { + "__timestamp": 694224000000, + "state": "NJ", + "gender": "boy", + "name": "Steven", + "sum__num": 604, + "SUM(num_girls)": 0, + "SUM(num_boys)": 604, + "pct_boys": 604, + "% sum__num": 0.0005364763981472024, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009346965872741988 + }, + { + "__timestamp": 283996800000, + "state": "NY", + "gender": "girl", + "name": "Kristin", + "sum__num": 316, + "SUM(num_girls)": 316, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00028067308247436414, + "% SUM(num_girls)": 0.0006587917425875505, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "IL", + "gender": "boy", + "name": "Joel", + "sum__num": 182, + "SUM(num_girls)": 0, + "SUM(num_boys)": 182, + "pct_boys": 182, + "% sum__num": 0.0001616534842099186, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00028164698490712616 + }, + { + "__timestamp": 252460800000, + "state": "NY", + "gender": "boy", + "name": "Alexander", + "sum__num": 346, + "SUM(num_girls)": 0, + "SUM(num_boys)": 346, + "pct_boys": 346, + "% sum__num": 0.0003073192611902848, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005354387735047563 + }, + { + "__timestamp": 441763200000, + "state": "NJ", + "gender": "boy", + "name": "Bryan", + "sum__num": 232, + "SUM(num_girls)": 0, + "SUM(num_boys)": 232, + "pct_boys": 232, + "% sum__num": 0.00020606378206978635, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00035902253021128164 + }, + { + "__timestamp": 252460800000, + "state": "NY", + "gender": "girl", + "name": "Erica", + "sum__num": 584, + "SUM(num_girls)": 584, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005187122790032552, + "% SUM(num_girls)": 0.0012175138533896503, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "NY", + "gender": "girl", + "name": "Alicia", + "sum__num": 450, + "SUM(num_girls)": 450, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003996926807388097, + "% SUM(num_girls)": 0.0009381527979886004, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "CA", + "gender": "boy", + "name": "Elijah", + "sum__num": 727, + "SUM(num_girls)": 0, + "SUM(num_boys)": 727, + "pct_boys": 727, + "% sum__num": 0.000645725730882477, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011250404287224214 + }, + { + "__timestamp": 1199145600000, + "state": "other", + "gender": "girl", + "name": "Ashley", + "sum__num": 3500, + "SUM(num_girls)": 3500, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.003108720850190742, + "% SUM(num_girls)": 0.0072967439843557805, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "NY", + "gender": "boy", + "name": "Kenneth", + "sum__num": 1145, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1145, + "pct_boys": 1145, + "% sum__num": 0.0010169958209909713, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017718999874651617 + }, + { + "__timestamp": 852076800000, + "state": "PA", + "gender": "boy", + "name": "Daniel", + "sum__num": 959, + "SUM(num_girls)": 0, + "SUM(num_boys)": 959, + "pct_boys": 959, + "% sum__num": 0.0008517895129522634, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001484062958933703 + }, + { + "__timestamp": 252460800000, + "state": "MI", + "gender": "girl", + "name": "Sarah", + "sum__num": 1174, + "SUM(num_girls)": 1174, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010427537937496947, + "% SUM(num_girls)": 0.002447536410752482, + "% pct_boys": 0 + }, + { + "__timestamp": 378691200000, + "state": "NJ", + "gender": "girl", + "name": "Linda", + "sum__num": 101, + "SUM(num_girls)": 101, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00008970880167693285, + "% SUM(num_girls)": 0.00021056318354855253, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "MA", + "gender": "boy", + "name": "Scott", + "sum__num": 334, + "SUM(num_girls)": 0, + "SUM(num_boys)": 334, + "pct_boys": 334, + "% sum__num": 0.00029666078970391654, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000516868642631759 + }, + { + "__timestamp": 189302400000, + "state": "other", + "gender": "boy", + "name": "Randy", + "sum__num": 1661, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1661, + "pct_boys": 1661, + "% sum__num": 0.0014753100949048065, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0025704156150040468 + }, + { + "__timestamp": 410227200000, + "state": "PA", + "gender": "boy", + "name": "Zachary", + "sum__num": 380, + "SUM(num_girls)": 0, + "SUM(num_boys)": 380, + "pct_boys": 380, + "% sum__num": 0.00033751826373499487, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005880541443115821 + }, + { + "__timestamp": 757382400000, + "state": "TX", + "gender": "girl", + "name": "Jessica", + "sum__num": 2406, + "SUM(num_girls)": 2406, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.002137023533016836, + "% SUM(num_girls)": 0.0050159902932457165, + "% pct_boys": 0 + }, + { + "__timestamp": 94694400000, + "state": "other", + "gender": "boy", + "name": "Anthony", + "sum__num": 7242, + "SUM(num_girls)": 0, + "SUM(num_boys)": 7242, + "pct_boys": 7242, + "% sum__num": 0.006432387542023244, + "% SUM(num_girls)": 0, + "% pct_boys": 0.011207073981853888 + }, + { + "__timestamp": -31536000000, + "state": "FL", + "gender": "girl", + "name": "Christina", + "sum__num": 268, + "SUM(num_girls)": 268, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00023803919652889112, + "% SUM(num_girls)": 0.0005587221108020998, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "other", + "gender": "girl", + "name": "Cheryl", + "sum__num": 97, + "SUM(num_girls)": 97, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00008615597784814343, + "% SUM(num_girls)": 0.00020222404756643165, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "TX", + "gender": "girl", + "name": "Melissa", + "sum__num": 524, + "SUM(num_girls)": 524, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00046541992157141397, + "% SUM(num_girls)": 0.001092426813657837, + "% pct_boys": 0 + }, + { + "__timestamp": 946684800000, + "state": "MA", + "gender": "boy", + "name": "Logan", + "sum__num": 101, + "SUM(num_girls)": 0, + "SUM(num_boys)": 101, + "pct_boys": 101, + "% sum__num": 0.00008970880167693285, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00015629860151439418 + }, + { + "__timestamp": 283996800000, + "state": "FL", + "gender": "boy", + "name": "Adrian", + "sum__num": 105, + "SUM(num_girls)": 0, + "SUM(num_boys)": 105, + "pct_boys": 105, + "% sum__num": 0.00009326162550572226, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001624886451387266 + }, + { + "__timestamp": 536457600000, + "state": "MA", + "gender": "boy", + "name": "Vincent", + "sum__num": 63, + "SUM(num_girls)": 0, + "SUM(num_boys)": 63, + "pct_boys": 63, + "% sum__num": 0.00005595697530343336, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00009749318708323597 + }, + { + "__timestamp": 347155200000, + "state": "CA", + "gender": "boy", + "name": "Phillip", + "sum__num": 451, + "SUM(num_girls)": 0, + "SUM(num_boys)": 451, + "pct_boys": 451, + "% sum__num": 0.0004005808866960071, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006979274186434829 + }, + { + "__timestamp": 315532800000, + "state": "TX", + "gender": "boy", + "name": "Scott", + "sum__num": 543, + "SUM(num_girls)": 0, + "SUM(num_boys)": 543, + "pct_boys": 543, + "% sum__num": 0.00048229583475816373, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008402984220031291 + }, + { + "__timestamp": 126230400000, + "state": "IL", + "gender": "girl", + "name": "Dawn", + "sum__num": 611, + "SUM(num_girls)": 611, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005426938398475839, + "% SUM(num_girls)": 0.0012738030212689664, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "PA", + "gender": "boy", + "name": "Nicholas", + "sum__num": 1000, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1000, + "pct_boys": 1000, + "% sum__num": 0.0008882059571973549, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015475109060831107 + }, + { + "__timestamp": 788918400000, + "state": "NJ", + "gender": "boy", + "name": "Antonio", + "sum__num": 104, + "SUM(num_girls)": 0, + "SUM(num_boys)": 104, + "pct_boys": 104, + "% sum__num": 0.00009237341954852491, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001609411342326435 + }, + { + "__timestamp": 599616000000, + "state": "NY", + "gender": "boy", + "name": "Adam", + "sum__num": 1118, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1118, + "pct_boys": 1118, + "% sum__num": 0.000993014260146643, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017301171930009177 + }, + { + "__timestamp": 189302400000, + "state": "MI", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 992, + "SUM(num_girls)": 0, + "SUM(num_boys)": 992, + "pct_boys": 992, + "% sum__num": 0.0008811003095397761, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015351308188344458 + }, + { + "__timestamp": 1009843200000, + "state": "OH", + "gender": "girl", + "name": "Rebecca", + "sum__num": 216, + "SUM(num_girls)": 216, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019185248675462866, + "% SUM(num_girls)": 0.0004503133430345282, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "MA", + "gender": "boy", + "name": "Jose", + "sum__num": 119, + "SUM(num_girls)": 0, + "SUM(num_boys)": 119, + "pct_boys": 119, + "% sum__num": 0.00010569650890648523, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00018415379782389017 + }, + { + "__timestamp": 31536000000, + "state": "OH", + "gender": "boy", + "name": "Keith", + "sum__num": 560, + "SUM(num_girls)": 0, + "SUM(num_boys)": 560, + "pct_boys": 560, + "% sum__num": 0.0004973953360305187, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008666061074065419 + }, + { + "__timestamp": -157766400000, + "state": "NJ", + "gender": "boy", + "name": "Adam", + "sum__num": 100, + "SUM(num_girls)": 0, + "SUM(num_boys)": 100, + "pct_boys": 100, + "% sum__num": 0.0000888205957197355, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00015475109060831107 + }, + { + "__timestamp": -126230400000, + "state": "IL", + "gender": "boy", + "name": "Jeffery", + "sum__num": 501, + "SUM(num_girls)": 0, + "SUM(num_boys)": 501, + "pct_boys": 501, + "% sum__num": 0.0004449911845558748, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007753029639476385 + }, + { + "__timestamp": 252460800000, + "state": "IL", + "gender": "girl", + "name": "Elizabeth", + "sum__num": 1016, + "SUM(num_girls)": 1016, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009024172525125126, + "% SUM(num_girls)": 0.0021181405394587066, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "MA", + "gender": "boy", + "name": "Aaron", + "sum__num": 115, + "SUM(num_girls)": 0, + "SUM(num_boys)": 115, + "pct_boys": 115, + "% sum__num": 0.00010214368507769581, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001779637541995577 + }, + { + "__timestamp": 694224000000, + "state": "MA", + "gender": "boy", + "name": "Bryan", + "sum__num": 164, + "SUM(num_girls)": 0, + "SUM(num_boys)": 164, + "pct_boys": 164, + "% sum__num": 0.0001456657769803662, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00025379178859763013 + }, + { + "__timestamp": 220924800000, + "state": "IL", + "gender": "girl", + "name": "Theresa", + "sum__num": 182, + "SUM(num_girls)": 182, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001616534842099186, + "% SUM(num_girls)": 0.0003794306871865006, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "NY", + "gender": "boy", + "name": "Kyle", + "sum__num": 1072, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1072, + "pct_boys": 1072, + "% sum__num": 0.0009521567861155645, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016589316913210945 + }, + { + "__timestamp": 126230400000, + "state": "NY", + "gender": "girl", + "name": "Maria", + "sum__num": 863, + "SUM(num_girls)": 863, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007665217410613173, + "% SUM(num_girls)": 0.0017991685881425825, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "PA", + "gender": "girl", + "name": "Barbara", + "sum__num": 216, + "SUM(num_girls)": 216, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019185248675462866, + "% SUM(num_girls)": 0.0004503133430345282, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "OH", + "gender": "girl", + "name": "Katelyn", + "sum__num": 174, + "SUM(num_girls)": 174, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00015454783655233977, + "% SUM(num_girls)": 0.0003627524152222588, + "% pct_boys": 0 + }, + { + "__timestamp": 757382400000, + "state": "NY", + "gender": "girl", + "name": "Hannah", + "sum__num": 527, + "SUM(num_girls)": 527, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00046808453944300607, + "% SUM(num_girls)": 0.0010986811656444277, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "PA", + "gender": "boy", + "name": "Benjamin", + "sum__num": 193, + "SUM(num_girls)": 0, + "SUM(num_boys)": 193, + "pct_boys": 193, + "% sum__num": 0.0001714237497390895, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00029866960487404034 + }, + { + "__timestamp": 1104537600000, + "state": "IL", + "gender": "boy", + "name": "Noah", + "sum__num": 501, + "SUM(num_girls)": 0, + "SUM(num_boys)": 501, + "pct_boys": 501, + "% sum__num": 0.0004449911845558748, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007753029639476385 + }, + { + "__timestamp": 694224000000, + "state": "TX", + "gender": "girl", + "name": "Amy", + "sum__num": 521, + "SUM(num_girls)": 521, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00046275530369982193, + "% SUM(num_girls)": 0.0010861724616712462, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "NJ", + "gender": "girl", + "name": "Brianna", + "sum__num": 318, + "SUM(num_girls)": 318, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002824494943887589, + "% SUM(num_girls)": 0.000662961310578611, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "MA", + "gender": "boy", + "name": "Daniel", + "sum__num": 421, + "SUM(num_girls)": 0, + "SUM(num_boys)": 421, + "pct_boys": 421, + "% sum__num": 0.0003739347079800864, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006515020914609896 + }, + { + "__timestamp": 63072000000, + "state": "MI", + "gender": "girl", + "name": "Jacqueline", + "sum__num": 148, + "SUM(num_girls)": 148, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013145448166520854, + "% SUM(num_girls)": 0.000308548031338473, + "% pct_boys": 0 + }, + { + "__timestamp": 1167609600000, + "state": "CA", + "gender": "boy", + "name": "Andrew", + "sum__num": 3011, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3011, + "pct_boys": 3011, + "% sum__num": 0.0026743881371212356, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004659555338216246 + }, + { + "__timestamp": -126230400000, + "state": "IL", + "gender": "boy", + "name": "Bryan", + "sum__num": 351, + "SUM(num_girls)": 0, + "SUM(num_boys)": 351, + "pct_boys": 351, + "% sum__num": 0.00031176029097627157, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005431763280351719 + }, + { + "__timestamp": 1104537600000, + "state": "NY", + "gender": "boy", + "name": "Caleb", + "sum__num": 306, + "SUM(num_girls)": 0, + "SUM(num_boys)": 306, + "pct_boys": 306, + "% sum__num": 0.0002717910229023906, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00047353833726143185 + }, + { + "__timestamp": 915148800000, + "state": "NY", + "gender": "boy", + "name": "Jose", + "sum__num": 511, + "SUM(num_girls)": 0, + "SUM(num_boys)": 511, + "pct_boys": 511, + "% sum__num": 0.00045387324412784834, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007907780730084695 + }, + { + "__timestamp": 220924800000, + "state": "IL", + "gender": "boy", + "name": "Kevin", + "sum__num": 1212, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1212, + "pct_boys": 1212, + "% sum__num": 0.001076505620123194, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00187558321817273 + }, + { + "__timestamp": 347155200000, + "state": "IL", + "gender": "boy", + "name": "Marcus", + "sum__num": 297, + "SUM(num_girls)": 0, + "SUM(num_boys)": 297, + "pct_boys": 297, + "% sum__num": 0.0002637971692876144, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00045961073910668384 + }, + { + "__timestamp": 662688000000, + "state": "OH", + "gender": "girl", + "name": "Jenna", + "sum__num": 241, + "SUM(num_girls)": 241, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00021405763568456253, + "% SUM(num_girls)": 0.0005024329429227837, + "% pct_boys": 0 + }, + { + "__timestamp": 852076800000, + "state": "PA", + "gender": "boy", + "name": "Isaiah", + "sum__num": 210, + "SUM(num_girls)": 0, + "SUM(num_boys)": 210, + "pct_boys": 210, + "% sum__num": 0.00018652325101144453, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003249772902774532 + }, + { + "__timestamp": 441763200000, + "state": "IL", + "gender": "girl", + "name": "Lisa", + "sum__num": 541, + "SUM(num_girls)": 541, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000480519422843769, + "% SUM(num_girls)": 0.0011278681415818506, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "CA", + "gender": "boy", + "name": "Michael", + "sum__num": 8245, + "SUM(num_girls)": 0, + "SUM(num_boys)": 8245, + "pct_boys": 8245, + "% sum__num": 0.007323258117092191, + "% SUM(num_girls)": 0, + "% pct_boys": 0.012759227420655246 + }, + { + "__timestamp": 757382400000, + "state": "NY", + "gender": "boy", + "name": "Thomas", + "sum__num": 1453, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1453, + "pct_boys": 1453, + "% sum__num": 0.0012905632558077567, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0022485333465387595 + }, + { + "__timestamp": 1104537600000, + "state": "IL", + "gender": "boy", + "name": "David", + "sum__num": 817, + "SUM(num_girls)": 0, + "SUM(num_boys)": 817, + "pct_boys": 817, + "% sum__num": 0.000725664267030239, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012643164102699013 + }, + { + "__timestamp": 473385600000, + "state": "PA", + "gender": "girl", + "name": "Amanda", + "sum__num": 1952, + "SUM(num_girls)": 1952, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0017337780284492367, + "% SUM(num_girls)": 0.0040694983592749956, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "OH", + "gender": "girl", + "name": "Amy", + "sum__num": 1966, + "SUM(num_girls)": 1966, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0017462129118499998, + "% SUM(num_girls)": 0.004098685335212419, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "NY", + "gender": "girl", + "name": "Kayla", + "sum__num": 757, + "SUM(num_girls)": 757, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006723719095983976, + "% SUM(num_girls)": 0.0015781814846163788, + "% pct_boys": 0 + }, + { + "__timestamp": 852076800000, + "state": "other", + "gender": "girl", + "name": "Logan", + "sum__num": 60, + "SUM(num_girls)": 60, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0000532923574318413, + "% SUM(num_girls)": 0.0001250870397318134, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "MA", + "gender": "boy", + "name": "Jason", + "sum__num": 836, + "SUM(num_girls)": 0, + "SUM(num_boys)": 836, + "pct_boys": 836, + "% sum__num": 0.0007425401802169888, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012937191174854806 + }, + { + "__timestamp": 220924800000, + "state": "MA", + "gender": "boy", + "name": "Jamie", + "sum__num": 75, + "SUM(num_girls)": 0, + "SUM(num_boys)": 75, + "pct_boys": 75, + "% sum__num": 0.00006661544678980162, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001160633179562333 + }, + { + "__timestamp": 1041379200000, + "state": "CA", + "gender": "girl", + "name": "Brianna", + "sum__num": 1293, + "SUM(num_girls)": 1293, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00114845030265618, + "% SUM(num_girls)": 0.0026956257062205786, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "OH", + "gender": "boy", + "name": "Mark", + "sum__num": 2502, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2502, + "pct_boys": 2502, + "% sum__num": 0.002222291304907782, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0038718722870199427 + }, + { + "__timestamp": 94694400000, + "state": "MA", + "gender": "girl", + "name": "Rebecca", + "sum__num": 420, + "SUM(num_girls)": 420, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00037304650202288906, + "% SUM(num_girls)": 0.0008756092781226937, + "% pct_boys": 0 + }, + { + "__timestamp": 441763200000, + "state": "IL", + "gender": "girl", + "name": "Melanie", + "sum__num": 148, + "SUM(num_girls)": 148, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013145448166520854, + "% SUM(num_girls)": 0.000308548031338473, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "MA", + "gender": "boy", + "name": "David", + "sum__num": 2178, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2178, + "pct_boys": 2178, + "% sum__num": 0.0019345125747758391, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003370478753449015 + }, + { + "__timestamp": 252460800000, + "state": "FL", + "gender": "girl", + "name": "Catherine", + "sum__num": 129, + "SUM(num_girls)": 129, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011457856847845879, + "% SUM(num_girls)": 0.0002689371354233988, + "% pct_boys": 0 + }, + { + "__timestamp": 441763200000, + "state": "FL", + "gender": "boy", + "name": "Christopher", + "sum__num": 2984, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2984, + "pct_boys": 2984, + "% sum__num": 0.002650406576276907, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004617772543752002 + }, + { + "__timestamp": 536457600000, + "state": "PA", + "gender": "boy", + "name": "Eric", + "sum__num": 968, + "SUM(num_girls)": 0, + "SUM(num_boys)": 968, + "pct_boys": 968, + "% sum__num": 0.0008597833665670396, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014979905570884511 + }, + { + "__timestamp": 599616000000, + "state": "FL", + "gender": "girl", + "name": "Kristin", + "sum__num": 337, + "SUM(num_girls)": 337, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00029932540757550863, + "% SUM(num_girls)": 0.0007025722064936852, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "PA", + "gender": "boy", + "name": "Aaron", + "sum__num": 494, + "SUM(num_girls)": 0, + "SUM(num_boys)": 494, + "pct_boys": 494, + "% sum__num": 0.0004387737428554933, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007644703876050566 + }, + { + "__timestamp": 1199145600000, + "state": "NY", + "gender": "boy", + "name": "Robert", + "sum__num": 499, + "SUM(num_girls)": 0, + "SUM(num_boys)": 499, + "pct_boys": 499, + "% sum__num": 0.0004432147726414801, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007722079421354722 + }, + { + "__timestamp": 1009843200000, + "state": "NJ", + "gender": "boy", + "name": "Eric", + "sum__num": 271, + "SUM(num_girls)": 0, + "SUM(num_boys)": 271, + "pct_boys": 271, + "% sum__num": 0.00024070381440048318, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000419375455548523 + }, + { + "__timestamp": 599616000000, + "state": "CA", + "gender": "boy", + "name": "Paul", + "sum__num": 1209, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1209, + "pct_boys": 1209, + "% sum__num": 0.0010738410022516022, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018709406854544807 + }, + { + "__timestamp": 567993600000, + "state": "CA", + "gender": "boy", + "name": "George", + "sum__num": 695, + "SUM(num_girls)": 0, + "SUM(num_boys)": 695, + "pct_boys": 695, + "% sum__num": 0.0006173031402521617, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010755200797277619 + }, + { + "__timestamp": -94694400000, + "state": "NY", + "gender": "boy", + "name": "Jason", + "sum__num": 414, + "SUM(num_girls)": 0, + "SUM(num_boys)": 414, + "pct_boys": 414, + "% sum__num": 0.0003677172662797049, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006406695151184079 + }, + { + "__timestamp": -157766400000, + "state": "TX", + "gender": "boy", + "name": "Samuel", + "sum__num": 367, + "SUM(num_girls)": 0, + "SUM(num_boys)": 367, + "pct_boys": 367, + "% sum__num": 0.00032597158629142924, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005679365025325016 + }, + { + "__timestamp": 31536000000, + "state": "PA", + "gender": "girl", + "name": "Robin", + "sum__num": 347, + "SUM(num_girls)": 347, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00030820746714748217, + "% SUM(num_girls)": 0.0007234200464489875, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "PA", + "gender": "boy", + "name": "Kevin", + "sum__num": 955, + "SUM(num_girls)": 0, + "SUM(num_boys)": 955, + "pct_boys": 955, + "% sum__num": 0.0008482366891234739, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014778729153093707 + }, + { + "__timestamp": 852076800000, + "state": "IL", + "gender": "boy", + "name": "Kyle", + "sum__num": 826, + "SUM(num_girls)": 0, + "SUM(num_boys)": 826, + "pct_boys": 826, + "% sum__num": 0.0007336581206450151, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012782440084246494 + }, + { + "__timestamp": -94694400000, + "state": "NJ", + "gender": "girl", + "name": "Heather", + "sum__num": 116, + "SUM(num_girls)": 116, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00010303189103489318, + "% SUM(num_girls)": 0.00024183494348150588, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "OH", + "gender": "girl", + "name": "Dawn", + "sum__num": 329, + "SUM(num_girls)": 329, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00029221975991792977, + "% SUM(num_girls)": 0.0006858939345294434, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "TX", + "gender": "boy", + "name": "Paul", + "sum__num": 1014, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1014, + "pct_boys": 1014, + "% sum__num": 0.0009006408405981179, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015691760587682741 + }, + { + "__timestamp": 0, + "state": "PA", + "gender": "girl", + "name": "Stephanie", + "sum__num": 727, + "SUM(num_girls)": 727, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000645725730882477, + "% SUM(num_girls)": 0.0015156379647504722, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "NY", + "gender": "boy", + "name": "Andrew", + "sum__num": 1346, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1346, + "pct_boys": 1346, + "% sum__num": 0.0011955252183876398, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002082949679587867 + }, + { + "__timestamp": 252460800000, + "state": "CA", + "gender": "boy", + "name": "Joseph", + "sum__num": 2459, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2459, + "pct_boys": 2459, + "% sum__num": 0.0021840984487482957, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0038053293180583692 + }, + { + "__timestamp": 757382400000, + "state": "MA", + "gender": "boy", + "name": "Justin", + "sum__num": 411, + "SUM(num_girls)": 0, + "SUM(num_boys)": 411, + "pct_boys": 411, + "% sum__num": 0.0003650526484081129, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006360269824001584 + }, + { + "__timestamp": 410227200000, + "state": "other", + "gender": "boy", + "name": "Joseph", + "sum__num": 13628, + "SUM(num_girls)": 0, + "SUM(num_boys)": 13628, + "pct_boys": 13628, + "% sum__num": 0.012104470784685553, + "% SUM(num_girls)": 0, + "% pct_boys": 0.021089478628100632 + }, + { + "__timestamp": 725846400000, + "state": "CA", + "gender": "boy", + "name": "Michael", + "sum__num": 5839, + "SUM(num_girls)": 0, + "SUM(num_boys)": 5839, + "pct_boys": 5839, + "% sum__num": 0.005186234584075355, + "% SUM(num_girls)": 0, + "% pct_boys": 0.009035916180619283 + }, + { + "__timestamp": 315532800000, + "state": "FL", + "gender": "boy", + "name": "Douglas", + "sum__num": 187, + "SUM(num_girls)": 0, + "SUM(num_boys)": 187, + "pct_boys": 187, + "% sum__num": 0.00016609451399590537, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002893845394375417 + }, + { + "__timestamp": -94694400000, + "state": "NY", + "gender": "boy", + "name": "David", + "sum__num": 5458, + "SUM(num_girls)": 0, + "SUM(num_boys)": 5458, + "pct_boys": 5458, + "% sum__num": 0.004847828114383163, + "% SUM(num_girls)": 0, + "% pct_boys": 0.008446314525401618 + }, + { + "__timestamp": 662688000000, + "state": "NY", + "gender": "girl", + "name": "Amanda", + "sum__num": 2319, + "SUM(num_girls)": 2319, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.002059749614740666, + "% SUM(num_girls)": 0.004834614085634587, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "MA", + "gender": "girl", + "name": "Cassandra", + "sum__num": 130, + "SUM(num_girls)": 130, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011546677443565614, + "% SUM(num_girls)": 0.000271021919418929, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "PA", + "gender": "boy", + "name": "Andrew", + "sum__num": 849, + "SUM(num_girls)": 0, + "SUM(num_boys)": 849, + "pct_boys": 849, + "% sum__num": 0.0007540868576605543, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0013138367592645608 + }, + { + "__timestamp": 283996800000, + "state": "PA", + "gender": "girl", + "name": "Amber", + "sum__num": 389, + "SUM(num_girls)": 389, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003455121173497711, + "% SUM(num_girls)": 0.0008109809742612568, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "NJ", + "gender": "boy", + "name": "Nathan", + "sum__num": 196, + "SUM(num_girls)": 0, + "SUM(num_boys)": 196, + "pct_boys": 196, + "% sum__num": 0.00017408836761068156, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003033121375922897 + }, + { + "__timestamp": 94694400000, + "state": "NJ", + "gender": "boy", + "name": "Craig", + "sum__num": 224, + "SUM(num_girls)": 0, + "SUM(num_boys)": 224, + "pct_boys": 224, + "% sum__num": 0.0001989581344122075, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00034664244296261676 + }, + { + "__timestamp": 631152000000, + "state": "MA", + "gender": "girl", + "name": "Ashley", + "sum__num": 954, + "SUM(num_girls)": 954, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008473484831662766, + "% SUM(num_girls)": 0.001988883931735833, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "IL", + "gender": "girl", + "name": "Diana", + "sum__num": 258, + "SUM(num_girls)": 258, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00022915713695691758, + "% SUM(num_girls)": 0.0005378742708467976, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "CA", + "gender": "girl", + "name": "Jasmine", + "sum__num": 1659, + "SUM(num_girls)": 1659, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0014735336829904118, + "% SUM(num_girls)": 0.00345865664858464, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "MA", + "gender": "boy", + "name": "Luke", + "sum__num": 101, + "SUM(num_girls)": 0, + "SUM(num_boys)": 101, + "pct_boys": 101, + "% sum__num": 0.00008970880167693285, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00015629860151439418 + }, + { + "__timestamp": 599616000000, + "state": "NY", + "gender": "girl", + "name": "Alicia", + "sum__num": 480, + "SUM(num_girls)": 480, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004263388594547304, + "% SUM(num_girls)": 0.0010006963178545072, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "FL", + "gender": "boy", + "name": "Michael", + "sum__num": 1609, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1609, + "pct_boys": 1609, + "% sum__num": 0.001429123385130544, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002489945047887725 + }, + { + "__timestamp": 757382400000, + "state": "CA", + "gender": "girl", + "name": "Vanessa", + "sum__num": 2129, + "SUM(num_girls)": 2129, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0018909904828731687, + "% SUM(num_girls)": 0.004438505126483845, + "% pct_boys": 0 + }, + { + "__timestamp": 1167609600000, + "state": "FL", + "gender": "girl", + "name": "Rebecca", + "sum__num": 203, + "SUM(num_girls)": 203, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00018030580931106306, + "% SUM(num_girls)": 0.0004232111510926353, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "PA", + "gender": "girl", + "name": "Stacy", + "sum__num": 379, + "SUM(num_girls)": 379, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003366300577777975, + "% SUM(num_girls)": 0.0007901331343059545, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "PA", + "gender": "boy", + "name": "Stephen", + "sum__num": 166, + "SUM(num_girls)": 0, + "SUM(num_boys)": 166, + "pct_boys": 166, + "% sum__num": 0.0001474421888947609, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00025688681040979635 + }, + { + "__timestamp": 94694400000, + "state": "MI", + "gender": "boy", + "name": "Bradley", + "sum__num": 311, + "SUM(num_girls)": 0, + "SUM(num_boys)": 311, + "pct_boys": 311, + "% sum__num": 0.0002762320526883774, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00048127589179184743 + }, + { + "__timestamp": 1072915200000, + "state": "IL", + "gender": "boy", + "name": "Kyle", + "sum__num": 434, + "SUM(num_girls)": 0, + "SUM(num_boys)": 434, + "pct_boys": 434, + "% sum__num": 0.00038548138542365205, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00067161973324007 + }, + { + "__timestamp": 694224000000, + "state": "IL", + "gender": "boy", + "name": "Gregory", + "sum__num": 307, + "SUM(num_girls)": 0, + "SUM(num_boys)": 307, + "pct_boys": 307, + "% sum__num": 0.000272679228859588, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00047508584816751494 + }, + { + "__timestamp": 126230400000, + "state": "CA", + "gender": "girl", + "name": "Holly", + "sum__num": 364, + "SUM(num_girls)": 364, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003233069684198372, + "% SUM(num_girls)": 0.0007588613743730012, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "MI", + "gender": "girl", + "name": "Laura", + "sum__num": 849, + "SUM(num_girls)": 849, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007540868576605543, + "% SUM(num_girls)": 0.0017699816122051595, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "OH", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 409, + "SUM(num_girls)": 0, + "SUM(num_boys)": 409, + "pct_boys": 409, + "% sum__num": 0.00036327623649371816, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006329319605879923 + }, + { + "__timestamp": 946684800000, + "state": "IL", + "gender": "boy", + "name": "Isaiah", + "sum__num": 271, + "SUM(num_girls)": 0, + "SUM(num_boys)": 271, + "pct_boys": 271, + "% sum__num": 0.00024070381440048318, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000419375455548523 + }, + { + "__timestamp": 31536000000, + "state": "NJ", + "gender": "girl", + "name": "Diana", + "sum__num": 152, + "SUM(num_girls)": 152, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013500730549399794, + "% SUM(num_girls)": 0.0003168871673205939, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "other", + "gender": "boy", + "name": "Matthew", + "sum__num": 8394, + "SUM(num_girls)": 0, + "SUM(num_boys)": 8394, + "pct_boys": 8394, + "% sum__num": 0.007455600804714598, + "% SUM(num_girls)": 0, + "% pct_boys": 0.01298980654566163 + }, + { + "__timestamp": 63072000000, + "state": "NJ", + "gender": "boy", + "name": "Kenneth", + "sum__num": 420, + "SUM(num_girls)": 0, + "SUM(num_boys)": 420, + "pct_boys": 420, + "% sum__num": 0.00037304650202288906, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006499545805549065 + }, + { + "__timestamp": 126230400000, + "state": "other", + "gender": "boy", + "name": "Craig", + "sum__num": 2484, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2484, + "pct_boys": 2484, + "% sum__num": 0.0022063035976782296, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003844017090710447 + }, + { + "__timestamp": 220924800000, + "state": "NJ", + "gender": "girl", + "name": "Natalie", + "sum__num": 91, + "SUM(num_girls)": 91, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0000808267421049593, + "% SUM(num_girls)": 0.0001897153435932503, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "NJ", + "gender": "girl", + "name": "Sophia", + "sum__num": 187, + "SUM(num_girls)": 187, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00016609451399590537, + "% SUM(num_girls)": 0.0003898546071641517, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "TX", + "gender": "girl", + "name": "Kayla", + "sum__num": 881, + "SUM(num_girls)": 881, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007825094482908697, + "% SUM(num_girls)": 0.0018366947000621266, + "% pct_boys": 0 + }, + { + "__timestamp": -94694400000, + "state": "FL", + "gender": "girl", + "name": "Pamela", + "sum__num": 477, + "SUM(num_girls)": 477, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004236742415831383, + "% SUM(num_girls)": 0.0009944419658679165, + "% pct_boys": 0 + }, + { + "__timestamp": 94694400000, + "state": "other", + "gender": "girl", + "name": "Emily", + "sum__num": 1219, + "SUM(num_girls)": 1219, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010827230618235756, + "% SUM(num_girls)": 0.002541351690551342, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "TX", + "gender": "girl", + "name": "Alicia", + "sum__num": 359, + "SUM(num_girls)": 359, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00031886593863385043, + "% SUM(num_girls)": 0.0007484374543953501, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "NJ", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 520, + "SUM(num_girls)": 0, + "SUM(num_boys)": 520, + "pct_boys": 520, + "% sum__num": 0.00046186709774262457, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008047056711632175 + }, + { + "__timestamp": 631152000000, + "state": "NY", + "gender": "girl", + "name": "Tiffany", + "sum__num": 927, + "SUM(num_girls)": 927, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008233669223219481, + "% SUM(num_girls)": 0.0019325947638565168, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "girl", + "name": "Danielle", + "sum__num": 1944, + "SUM(num_girls)": 1944, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001726672380791658, + "% SUM(num_girls)": 0.004052820087310754, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "NY", + "gender": "girl", + "name": "Stacy", + "sum__num": 423, + "SUM(num_girls)": 423, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00037571111989448115, + "% SUM(num_girls)": 0.0008818636301092844, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "PA", + "gender": "girl", + "name": "Jamie", + "sum__num": 734, + "SUM(num_girls)": 734, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006519431725828585, + "% SUM(num_girls)": 0.0015302314527191837, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "TX", + "gender": "girl", + "name": "Vanessa", + "sum__num": 699, + "SUM(num_girls)": 699, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000620855964080951, + "% SUM(num_girls)": 0.001457264012875626, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "IL", + "gender": "girl", + "name": "Theresa", + "sum__num": 399, + "SUM(num_girls)": 399, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003543941769217446, + "% SUM(num_girls)": 0.000831828814216559, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "CA", + "gender": "boy", + "name": "Christopher", + "sum__num": 3771, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3771, + "pct_boys": 3771, + "% sum__num": 0.0033494246645912255, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00583566362683941 + }, + { + "__timestamp": 1009843200000, + "state": "NJ", + "gender": "boy", + "name": "Nathan", + "sum__num": 143, + "SUM(num_girls)": 0, + "SUM(num_boys)": 143, + "pct_boys": 143, + "% sum__num": 0.00012701345187922174, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00022129405956988483 + }, + { + "__timestamp": 126230400000, + "state": "MI", + "gender": "girl", + "name": "Rachel", + "sum__num": 341, + "SUM(num_girls)": 341, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00030287823140429804, + "% SUM(num_girls)": 0.0007109113424758061, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "IL", + "gender": "girl", + "name": "Pamela", + "sum__num": 659, + "SUM(num_girls)": 659, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005853277257930569, + "% SUM(num_girls)": 0.0013738726530544171, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "NJ", + "gender": "boy", + "name": "Timothy", + "sum__num": 481, + "SUM(num_girls)": 0, + "SUM(num_boys)": 481, + "pct_boys": 481, + "% sum__num": 0.00042722706541192774, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007443527458259762 + }, + { + "__timestamp": 473385600000, + "state": "PA", + "gender": "boy", + "name": "Jonathan", + "sum__num": 1057, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1057, + "pct_boys": 1057, + "% sum__num": 0.0009388336967576041, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016357190277298478 + }, + { + "__timestamp": 189302400000, + "state": "MA", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 69, + "SUM(num_girls)": 0, + "SUM(num_boys)": 69, + "pct_boys": 69, + "% sum__num": 0.00006128621104661749, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00010677825251973463 + }, + { + "__timestamp": 1199145600000, + "state": "MA", + "gender": "boy", + "name": "Jack", + "sum__num": 417, + "SUM(num_girls)": 0, + "SUM(num_boys)": 417, + "pct_boys": 417, + "% sum__num": 0.000370381884151297, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006453120478366572 + }, + { + "__timestamp": 1041379200000, + "state": "MA", + "gender": "boy", + "name": "Charles", + "sum__num": 229, + "SUM(num_girls)": 0, + "SUM(num_boys)": 229, + "pct_boys": 229, + "% sum__num": 0.0002033991641981943, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00035437999749303234 + }, + { + "__timestamp": 978307200000, + "state": "CA", + "gender": "girl", + "name": "Karen", + "sum__num": 592, + "SUM(num_girls)": 592, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005258179266608342, + "% SUM(num_girls)": 0.001234192125353892, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "other", + "gender": "boy", + "name": "Gregory", + "sum__num": 4640, + "SUM(num_girls)": 0, + "SUM(num_boys)": 4640, + "pct_boys": 4640, + "% sum__num": 0.004121275641395727, + "% SUM(num_girls)": 0, + "% pct_boys": 0.007180450604225634 + }, + { + "__timestamp": 820454400000, + "state": "TX", + "gender": "boy", + "name": "Justin", + "sum__num": 1619, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1619, + "pct_boys": 1619, + "% sum__num": 0.0014380054447025177, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002505420156948556 + }, + { + "__timestamp": 473385600000, + "state": "OH", + "gender": "boy", + "name": "Edward", + "sum__num": 239, + "SUM(num_girls)": 0, + "SUM(num_boys)": 239, + "pct_boys": 239, + "% sum__num": 0.00021228122377016782, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00036985510655386343 + }, + { + "__timestamp": 1167609600000, + "state": "TX", + "gender": "boy", + "name": "Andrew", + "sum__num": 1476, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1476, + "pct_boys": 1476, + "% sum__num": 0.0013109919928232959, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002284126097378671 + }, + { + "__timestamp": 662688000000, + "state": "IL", + "gender": "boy", + "name": "Vincent", + "sum__num": 202, + "SUM(num_girls)": 0, + "SUM(num_boys)": 202, + "pct_boys": 202, + "% sum__num": 0.0001794176033538657, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00031259720302878835 + }, + { + "__timestamp": 883612800000, + "state": "NY", + "gender": "boy", + "name": "Vincent", + "sum__num": 394, + "SUM(num_girls)": 0, + "SUM(num_boys)": 394, + "pct_boys": 394, + "% sum__num": 0.00034995314713575786, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006097192969967456 + }, + { + "__timestamp": 441763200000, + "state": "IL", + "gender": "boy", + "name": "Jared", + "sum__num": 180, + "SUM(num_girls)": 0, + "SUM(num_boys)": 180, + "pct_boys": 180, + "% sum__num": 0.0001598770722955239, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002785519630949599 + }, + { + "__timestamp": 946684800000, + "state": "other", + "gender": "boy", + "name": "Antonio", + "sum__num": 1334, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1334, + "pct_boys": 1334, + "% sum__num": 0.0011848667469012714, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0020643795487148694 + }, + { + "__timestamp": 63072000000, + "state": "OH", + "gender": "boy", + "name": "Derek", + "sum__num": 160, + "SUM(num_girls)": 0, + "SUM(num_boys)": 160, + "pct_boys": 160, + "% sum__num": 0.0001421129531515768, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002476017449732977 + }, + { + "__timestamp": 283996800000, + "state": "CA", + "gender": "girl", + "name": "Karen", + "sum__num": 490, + "SUM(num_girls)": 490, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004352209190267039, + "% SUM(num_girls)": 0.0010215441578098094, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "TX", + "gender": "girl", + "name": "Alexandra", + "sum__num": 608, + "SUM(num_girls)": 608, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005400292219759918, + "% SUM(num_girls)": 0.0012675486692823757, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "TX", + "gender": "girl", + "name": "Sandra", + "sum__num": 1101, + "SUM(num_girls)": 1101, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009779147588742877, + "% SUM(num_girls)": 0.0022953471790787758, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "NJ", + "gender": "boy", + "name": "Samuel", + "sum__num": 117, + "SUM(num_girls)": 0, + "SUM(num_boys)": 117, + "pct_boys": 117, + "% sum__num": 0.00010392009699209053, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00018105877601172396 + }, + { + "__timestamp": 820454400000, + "state": "MI", + "gender": "boy", + "name": "Alex", + "sum__num": 238, + "SUM(num_girls)": 0, + "SUM(num_boys)": 238, + "pct_boys": 238, + "% sum__num": 0.00021139301781297046, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00036830759564778035 + }, + { + "__timestamp": 157766400000, + "state": "MI", + "gender": "girl", + "name": "Melissa", + "sum__num": 1096, + "SUM(num_girls)": 1096, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000973473729088301, + "% SUM(num_girls)": 0.0022849232591011246, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "PA", + "gender": "girl", + "name": "Sharon", + "sum__num": 214, + "SUM(num_girls)": 214, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019007607484023396, + "% SUM(num_girls)": 0.00044614377504346775, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "OH", + "gender": "girl", + "name": "Stacy", + "sum__num": 202, + "SUM(num_girls)": 202, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001794176033538657, + "% SUM(num_girls)": 0.00042112636709710507, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "MI", + "gender": "girl", + "name": "Ashley", + "sum__num": 1873, + "SUM(num_girls)": 1873, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0016636097578306458, + "% SUM(num_girls)": 0.003904800423628108, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "PA", + "gender": "girl", + "name": "Barbara", + "sum__num": 159, + "SUM(num_girls)": 159, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00014122474719437944, + "% SUM(num_girls)": 0.0003314806552893055, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "other", + "gender": "boy", + "name": "Matthew", + "sum__num": 17299, + "SUM(num_girls)": 0, + "SUM(num_boys)": 17299, + "pct_boys": 17299, + "% sum__num": 0.015365074853557042, + "% SUM(num_girls)": 0, + "% pct_boys": 0.02677039116433173 + }, + { + "__timestamp": 820454400000, + "state": "IL", + "gender": "girl", + "name": "Margaret", + "sum__num": 264, + "SUM(num_girls)": 264, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002344863727001017, + "% SUM(num_girls)": 0.000550382974819979, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "CA", + "gender": "girl", + "name": "Amy", + "sum__num": 1062, + "SUM(num_girls)": 1062, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009432747265435909, + "% SUM(num_girls)": 0.002214040603253097, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "CA", + "gender": "girl", + "name": "Anna", + "sum__num": 477, + "SUM(num_girls)": 477, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004236742415831383, + "% SUM(num_girls)": 0.0009944419658679165, + "% pct_boys": 0 + }, + { + "__timestamp": -94694400000, + "state": "MA", + "gender": "girl", + "name": "Carol", + "sum__num": 254, + "SUM(num_girls)": 254, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00022560431312812815, + "% SUM(num_girls)": 0.0005295351348646766, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "other", + "gender": "girl", + "name": "Sarah", + "sum__num": 2611, + "SUM(num_girls)": 2611, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0023191057542422937, + "% SUM(num_girls)": 0.0054433710123294125, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "other", + "gender": "boy", + "name": "Shawn", + "sum__num": 3859, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3859, + "pct_boys": 3859, + "% sum__num": 0.0034275867888245927, + "% SUM(num_girls)": 0, + "% pct_boys": 0.005971844586574724 + }, + { + "__timestamp": 978307200000, + "state": "other", + "gender": "girl", + "name": "Amanda", + "sum__num": 2517, + "SUM(num_girls)": 2517, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0022356143942657424, + "% SUM(num_girls)": 0.0052474013167495715, + "% pct_boys": 0 + }, + { + "__timestamp": 852076800000, + "state": "other", + "gender": "girl", + "name": "Kelly", + "sum__num": 883, + "SUM(num_girls)": 883, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007842858602052643, + "% SUM(num_girls)": 0.001840864268053187, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "NJ", + "gender": "boy", + "name": "Robert", + "sum__num": 526, + "SUM(num_girls)": 0, + "SUM(num_boys)": 526, + "pct_boys": 526, + "% sum__num": 0.0004671963334858087, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008139907365997162 + }, + { + "__timestamp": 157766400000, + "state": "CA", + "gender": "girl", + "name": "Amanda", + "sum__num": 769, + "SUM(num_girls)": 769, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006830303810847659, + "% SUM(num_girls)": 0.0016031988925627415, + "% pct_boys": 0 + }, + { + "__timestamp": 852076800000, + "state": "NY", + "gender": "boy", + "name": "Joshua", + "sum__num": 1711, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1711, + "pct_boys": 1711, + "% sum__num": 0.0015197203927646743, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002647791160308202 + }, + { + "__timestamp": 283996800000, + "state": "other", + "gender": "boy", + "name": "Joseph", + "sum__num": 12800, + "SUM(num_girls)": 0, + "SUM(num_boys)": 12800, + "pct_boys": 12800, + "% sum__num": 0.011369036252126144, + "% SUM(num_girls)": 0, + "% pct_boys": 0.019808139597863816 + }, + { + "__timestamp": 504921600000, + "state": "TX", + "gender": "girl", + "name": "Chelsea", + "sum__num": 358, + "SUM(num_girls)": 358, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00031797773267665307, + "% SUM(num_girls)": 0.0007463526703998199, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "TX", + "gender": "boy", + "name": "Jeremy", + "sum__num": 510, + "SUM(num_girls)": 0, + "SUM(num_boys)": 510, + "pct_boys": 510, + "% sum__num": 0.00045298503817065103, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007892305621023864 + }, + { + "__timestamp": 504921600000, + "state": "PA", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 170, + "SUM(num_girls)": 0, + "SUM(num_boys)": 170, + "pct_boys": 170, + "% sum__num": 0.00015099501272355034, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002630768540341288 + }, + { + "__timestamp": 694224000000, + "state": "PA", + "gender": "girl", + "name": "Emily", + "sum__num": 1218, + "SUM(num_girls)": 1218, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010818348558663783, + "% SUM(num_girls)": 0.002539266906555812, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "MA", + "gender": "girl", + "name": "Maria", + "sum__num": 79, + "SUM(num_girls)": 79, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00007016827061859104, + "% SUM(num_girls)": 0.00016469793564688763, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "IL", + "gender": "girl", + "name": "Alexandra", + "sum__num": 522, + "SUM(num_girls)": 522, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00046364350965701924, + "% SUM(num_girls)": 0.0010882572456667764, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "OH", + "gender": "boy", + "name": "Joseph", + "sum__num": 1435, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1435, + "pct_boys": 1435, + "% sum__num": 0.0012745755485782044, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0022206781502292637 + }, + { + "__timestamp": 126230400000, + "state": "MA", + "gender": "girl", + "name": "Cynthia", + "sum__num": 104, + "SUM(num_girls)": 104, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00009237341954852491, + "% SUM(num_girls)": 0.0002168175355351432, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "TX", + "gender": "boy", + "name": "James", + "sum__num": 1195, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1195, + "pct_boys": 1195, + "% sum__num": 0.001061406118850839, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018492755327693172 + }, + { + "__timestamp": -126230400000, + "state": "MI", + "gender": "girl", + "name": "Barbara", + "sum__num": 605, + "SUM(num_girls)": 605, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005373646041043998, + "% SUM(num_girls)": 0.001261294317295785, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "FL", + "gender": "girl", + "name": "Melissa", + "sum__num": 560, + "SUM(num_girls)": 560, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004973953360305187, + "% SUM(num_girls)": 0.001167479037496925, + "% pct_boys": 0 + }, + { + "__timestamp": 378691200000, + "state": "other", + "gender": "girl", + "name": "Jennifer", + "sum__num": 26584, + "SUM(num_girls)": 26584, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.02361206716613448, + "% SUM(num_girls)": 0.05542189773717545, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "other", + "gender": "girl", + "name": "Katherine", + "sum__num": 5010, + "SUM(num_girls)": 5010, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.004449911845558748, + "% SUM(num_girls)": 0.010444767817606417, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "IL", + "gender": "girl", + "name": "Christina", + "sum__num": 694, + "SUM(num_girls)": 694, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006164149342949643, + "% SUM(num_girls)": 0.001446840092897975, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "CA", + "gender": "boy", + "name": "Michael", + "sum__num": 8186, + "SUM(num_girls)": 0, + "SUM(num_boys)": 8186, + "pct_boys": 8186, + "% sum__num": 0.007270853965617548, + "% SUM(num_girls)": 0, + "% pct_boys": 0.012667924277196343 + }, + { + "__timestamp": -63158400000, + "state": "other", + "gender": "boy", + "name": "Christian", + "sum__num": 70, + "SUM(num_girls)": 0, + "SUM(num_boys)": 70, + "pct_boys": 70, + "% sum__num": 0.00006217441700381484, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00010832576342581774 + }, + { + "__timestamp": -157766400000, + "state": "MA", + "gender": "girl", + "name": "Valerie", + "sum__num": 115, + "SUM(num_girls)": 115, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00010214368507769581, + "% SUM(num_girls)": 0.00023975015948597567, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "MA", + "gender": "girl", + "name": "Michele", + "sum__num": 311, + "SUM(num_girls)": 311, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002762320526883774, + "% SUM(num_girls)": 0.0006483678226098994, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "IL", + "gender": "girl", + "name": "Pamela", + "sum__num": 332, + "SUM(num_girls)": 332, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002948843777895218, + "% SUM(num_girls)": 0.0006921482865160341, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "IL", + "gender": "boy", + "name": "Angel", + "sum__num": 211, + "SUM(num_girls)": 0, + "SUM(num_boys)": 211, + "pct_boys": 211, + "% sum__num": 0.0001874114569686419, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00032652480118353636 + }, + { + "__timestamp": 441763200000, + "state": "FL", + "gender": "boy", + "name": "Phillip", + "sum__num": 175, + "SUM(num_girls)": 0, + "SUM(num_boys)": 175, + "pct_boys": 175, + "% sum__num": 0.0001554360425095371, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00027081440856454436 + }, + { + "__timestamp": 788918400000, + "state": "OH", + "gender": "boy", + "name": "Jesse", + "sum__num": 295, + "SUM(num_girls)": 0, + "SUM(num_boys)": 295, + "pct_boys": 295, + "% sum__num": 0.0002620207573732197, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004565157172945176 + }, + { + "__timestamp": 694224000000, + "state": "NJ", + "gender": "boy", + "name": "Andrew", + "sum__num": 973, + "SUM(num_girls)": 0, + "SUM(num_boys)": 973, + "pct_boys": 973, + "% sum__num": 0.0008642243963530264, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015057281116188667 + }, + { + "__timestamp": 1167609600000, + "state": "other", + "gender": "girl", + "name": "Kimberly", + "sum__num": 1493, + "SUM(num_girls)": 1493, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0013260914940956508, + "% SUM(num_girls)": 0.003112582505326623, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "girl", + "name": "Nancy", + "sum__num": 632, + "SUM(num_girls)": 632, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005613461649487283, + "% SUM(num_girls)": 0.001317583485175101, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "TX", + "gender": "girl", + "name": "Diana", + "sum__num": 428, + "SUM(num_girls)": 428, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003801521496804679, + "% SUM(num_girls)": 0.0008922875500869355, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "other", + "gender": "boy", + "name": "Taylor", + "sum__num": 1647, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1647, + "pct_boys": 1647, + "% sum__num": 0.0014628752115040436, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002548750462318883 + }, + { + "__timestamp": -126230400000, + "state": "NJ", + "gender": "boy", + "name": "Russell", + "sum__num": 133, + "SUM(num_girls)": 0, + "SUM(num_boys)": 133, + "pct_boys": 133, + "% sum__num": 0.00011813139230724821, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002058189505090537 + }, + { + "__timestamp": -63158400000, + "state": "OH", + "gender": "boy", + "name": "Rodney", + "sum__num": 444, + "SUM(num_girls)": 0, + "SUM(num_boys)": 444, + "pct_boys": 444, + "% sum__num": 0.0003943634449956256, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006870948423009011 + }, + { + "__timestamp": 694224000000, + "state": "NJ", + "gender": "boy", + "name": "Raymond", + "sum__num": 160, + "SUM(num_girls)": 0, + "SUM(num_boys)": 160, + "pct_boys": 160, + "% sum__num": 0.0001421129531515768, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002476017449732977 + }, + { + "__timestamp": 1136073600000, + "state": "TX", + "gender": "girl", + "name": "Nicole", + "sum__num": 346, + "SUM(num_girls)": 346, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003073192611902848, + "% SUM(num_girls)": 0.0007213352624534572, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "NJ", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 100, + "SUM(num_girls)": 0, + "SUM(num_boys)": 100, + "pct_boys": 100, + "% sum__num": 0.0000888205957197355, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00015475109060831107 + }, + { + "__timestamp": 410227200000, + "state": "CA", + "gender": "girl", + "name": "Kimberly", + "sum__num": 1463, + "SUM(num_girls)": 1463, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0012994453153797303, + "% SUM(num_girls)": 0.003050038985460716, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "MI", + "gender": "boy", + "name": "Robert", + "sum__num": 1213, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1213, + "pct_boys": 1213, + "% sum__num": 0.0010773938260803914, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018771307290788132 + }, + { + "__timestamp": 1009843200000, + "state": "MA", + "gender": "boy", + "name": "Benjamin", + "sum__num": 449, + "SUM(num_girls)": 0, + "SUM(num_boys)": 449, + "pct_boys": 449, + "% sum__num": 0.00039880447478161235, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006948323968313167 + }, + { + "__timestamp": 63072000000, + "state": "other", + "gender": "girl", + "name": "Kelly", + "sum__num": 4717, + "SUM(num_girls)": 4717, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0041896675000999235, + "% SUM(num_girls)": 0.009833926106916063, + "% pct_boys": 0 + }, + { + "__timestamp": 757382400000, + "state": "NJ", + "gender": "boy", + "name": "Ryan", + "sum__num": 962, + "SUM(num_girls)": 0, + "SUM(num_boys)": 962, + "pct_boys": 962, + "% sum__num": 0.0008544541308238555, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014887054916519523 + }, + { + "__timestamp": 504921600000, + "state": "NY", + "gender": "boy", + "name": "Derek", + "sum__num": 311, + "SUM(num_girls)": 0, + "SUM(num_boys)": 311, + "pct_boys": 311, + "% sum__num": 0.0002762320526883774, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00048127589179184743 + }, + { + "__timestamp": 1167609600000, + "state": "other", + "gender": "girl", + "name": "Megan", + "sum__num": 1808, + "SUM(num_girls)": 1808, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0016058763706128178, + "% SUM(num_girls)": 0.0037692894639186434, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "other", + "gender": "boy", + "name": "Charles", + "sum__num": 10419, + "SUM(num_girls)": 0, + "SUM(num_boys)": 10419, + "pct_boys": 10419, + "% sum__num": 0.009254217868039242, + "% SUM(num_girls)": 0, + "% pct_boys": 0.01612351613047993 + }, + { + "__timestamp": 220924800000, + "state": "OH", + "gender": "girl", + "name": "Melissa", + "sum__num": 1543, + "SUM(num_girls)": 1543, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0013705017919555186, + "% SUM(num_girls)": 0.003216821705103134, + "% pct_boys": 0 + }, + { + "__timestamp": 378691200000, + "state": "NY", + "gender": "boy", + "name": "Joel", + "sum__num": 508, + "SUM(num_girls)": 0, + "SUM(num_boys)": 508, + "pct_boys": 508, + "% sum__num": 0.0004512086262562563, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007861355402902202 + }, + { + "__timestamp": 694224000000, + "state": "MI", + "gender": "boy", + "name": "Nathan", + "sum__num": 537, + "SUM(num_girls)": 0, + "SUM(num_boys)": 537, + "pct_boys": 537, + "% sum__num": 0.0004769665990149796, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008310133565666304 + }, + { + "__timestamp": 410227200000, + "state": "NJ", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 513, + "SUM(num_girls)": 0, + "SUM(num_boys)": 513, + "pct_boys": 513, + "% sum__num": 0.0004556496560422431, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007938730948206358 + }, + { + "__timestamp": 410227200000, + "state": "other", + "gender": "girl", + "name": "Alexis", + "sum__num": 931, + "SUM(num_girls)": 931, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008269197461507374, + "% SUM(num_girls)": 0.0019409338998386378, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "other", + "gender": "boy", + "name": "Jordan", + "sum__num": 5796, + "SUM(num_girls)": 0, + "SUM(num_boys)": 5796, + "pct_boys": 5796, + "% sum__num": 0.005148041727915869, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00896937321165771 + }, + { + "__timestamp": 852076800000, + "state": "PA", + "gender": "boy", + "name": "Joseph", + "sum__num": 1123, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1123, + "pct_boys": 1123, + "% sum__num": 0.0009974552899326295, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017378547475313333 + }, + { + "__timestamp": 852076800000, + "state": "OH", + "gender": "boy", + "name": "Justin", + "sum__num": 771, + "SUM(num_girls)": 0, + "SUM(num_boys)": 771, + "pct_boys": 771, + "% sum__num": 0.0006848067929991606, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011931309085900783 + }, + { + "__timestamp": 1167609600000, + "state": "TX", + "gender": "boy", + "name": "Bryan", + "sum__num": 1005, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1005, + "pct_boys": 1005, + "% sum__num": 0.0008926469869833417, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015552484606135262 + }, + { + "__timestamp": 378691200000, + "state": "OH", + "gender": "boy", + "name": "Frank", + "sum__num": 126, + "SUM(num_girls)": 0, + "SUM(num_boys)": 126, + "pct_boys": 126, + "% sum__num": 0.00011191395060686673, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00019498637416647194 + }, + { + "__timestamp": 1041379200000, + "state": "NY", + "gender": "girl", + "name": "Rachel", + "sum__num": 712, + "SUM(num_girls)": 712, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006324026415245167, + "% SUM(num_girls)": 0.0014843662048175188, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "FL", + "gender": "girl", + "name": "Carrie", + "sum__num": 213, + "SUM(num_girls)": 213, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001891878688830366, + "% SUM(num_girls)": 0.0004440589910479375, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "TX", + "gender": "boy", + "name": "Jerry", + "sum__num": 664, + "SUM(num_girls)": 0, + "SUM(num_boys)": 664, + "pct_boys": 664, + "% sum__num": 0.0005897687555790436, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010275472416391854 + }, + { + "__timestamp": 788918400000, + "state": "other", + "gender": "boy", + "name": "Paul", + "sum__num": 1924, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1924, + "pct_boys": 1924, + "% sum__num": 0.001708908261647711, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0029774109833039047 + }, + { + "__timestamp": 157766400000, + "state": "CA", + "gender": "boy", + "name": "Mark", + "sum__num": 1465, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1465, + "pct_boys": 1465, + "% sum__num": 0.0013012217272941249, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002267103477411757 + }, + { + "__timestamp": 315532800000, + "state": "NY", + "gender": "boy", + "name": "Michael", + "sum__num": 5792, + "SUM(num_girls)": 0, + "SUM(num_boys)": 5792, + "pct_boys": 5792, + "% sum__num": 0.0051444889040870795, + "% SUM(num_girls)": 0, + "% pct_boys": 0.008963183168033377 + }, + { + "__timestamp": 220924800000, + "state": "CA", + "gender": "girl", + "name": "Kristen", + "sum__num": 323, + "SUM(num_girls)": 323, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00028689052417474564, + "% SUM(num_girls)": 0.0006733852305562621, + "% pct_boys": 0 + }, + { + "__timestamp": 1199145600000, + "state": "FL", + "gender": "girl", + "name": "Melanie", + "sum__num": 265, + "SUM(num_girls)": 265, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00023537457865729905, + "% SUM(num_girls)": 0.0005524677588155091, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "MI", + "gender": "boy", + "name": "Anthony", + "sum__num": 644, + "SUM(num_girls)": 0, + "SUM(num_boys)": 644, + "pct_boys": 644, + "% sum__num": 0.0005720046364350966, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009965970235175233 + }, + { + "__timestamp": 504921600000, + "state": "MI", + "gender": "girl", + "name": "Andrea", + "sum__num": 440, + "SUM(num_girls)": 440, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003908106211668362, + "% SUM(num_girls)": 0.0009173049580332982, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "FL", + "gender": "girl", + "name": "Tiffany", + "sum__num": 408, + "SUM(num_girls)": 408, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003623880305365208, + "% SUM(num_girls)": 0.000850591870176331, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "OH", + "gender": "girl", + "name": "Emma", + "sum__num": 1053, + "SUM(num_girls)": 1053, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009352808729288148, + "% SUM(num_girls)": 0.002195277547293325, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "FL", + "gender": "boy", + "name": "Mason", + "sum__num": 288, + "SUM(num_girls)": 0, + "SUM(num_boys)": 288, + "pct_boys": 288, + "% sum__num": 0.0002558033156728382, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004456831409519359 + }, + { + "__timestamp": 662688000000, + "state": "CA", + "gender": "boy", + "name": "Christian", + "sum__num": 2190, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2190, + "pct_boys": 2190, + "% sum__num": 0.0019451710462622073, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0033890488843220123 + }, + { + "__timestamp": 473385600000, + "state": "CA", + "gender": "boy", + "name": "Jesse", + "sum__num": 1080, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1080, + "pct_boys": 1080, + "% sum__num": 0.0009592624337731433, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016713117785697594 + }, + { + "__timestamp": 473385600000, + "state": "MI", + "gender": "boy", + "name": "Nicholas", + "sum__num": 1136, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1136, + "pct_boys": 1136, + "% sum__num": 0.0010090019673761952, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017579723893104136 + }, + { + "__timestamp": 0, + "state": "other", + "gender": "girl", + "name": "Theresa", + "sum__num": 2338, + "SUM(num_girls)": 2338, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0020766255279274157, + "% SUM(num_girls)": 0.004874224981549662, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "MA", + "gender": "girl", + "name": "Erica", + "sum__num": 92, + "SUM(num_girls)": 92, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00008171494806215665, + "% SUM(num_girls)": 0.00019180012758878052, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "FL", + "gender": "boy", + "name": "William", + "sum__num": 899, + "SUM(num_girls)": 0, + "SUM(num_boys)": 899, + "pct_boys": 899, + "% sum__num": 0.0007984971555204221, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0013912123045687163 + }, + { + "__timestamp": -31536000000, + "state": "CA", + "gender": "boy", + "name": "John", + "sum__num": 5326, + "SUM(num_girls)": 0, + "SUM(num_boys)": 5326, + "pct_boys": 5326, + "% sum__num": 0.0047305849280331125, + "% SUM(num_girls)": 0, + "% pct_boys": 0.008242043085798647 + }, + { + "__timestamp": 220924800000, + "state": "TX", + "gender": "boy", + "name": "Justin", + "sum__num": 726, + "SUM(num_girls)": 0, + "SUM(num_boys)": 726, + "pct_boys": 726, + "% sum__num": 0.0006448375249252797, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011234929178163384 + }, + { + "__timestamp": 757382400000, + "state": "PA", + "gender": "boy", + "name": "Ethan", + "sum__num": 184, + "SUM(num_girls)": 0, + "SUM(num_boys)": 184, + "pct_boys": 184, + "% sum__num": 0.0001634298961243133, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002847420067192924 + }, + { + "__timestamp": 378691200000, + "state": "MI", + "gender": "girl", + "name": "Kelly", + "sum__num": 657, + "SUM(num_girls)": 657, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005835513138786622, + "% SUM(num_girls)": 0.0013697030850633566, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "NJ", + "gender": "boy", + "name": "Joel", + "sum__num": 97, + "SUM(num_girls)": 0, + "SUM(num_boys)": 97, + "pct_boys": 97, + "% sum__num": 0.00008615597784814343, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00015010855789006174 + }, + { + "__timestamp": 504921600000, + "state": "MI", + "gender": "boy", + "name": "Kenneth", + "sum__num": 374, + "SUM(num_girls)": 0, + "SUM(num_boys)": 374, + "pct_boys": 374, + "% sum__num": 0.00033218902799181073, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005787690788750834 + }, + { + "__timestamp": -31536000000, + "state": "MI", + "gender": "boy", + "name": "Randy", + "sum__num": 267, + "SUM(num_girls)": 0, + "SUM(num_boys)": 267, + "pct_boys": 267, + "% sum__num": 0.00023715099057169375, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00041318541192419055 + }, + { + "__timestamp": 283996800000, + "state": "MA", + "gender": "girl", + "name": "Allison", + "sum__num": 141, + "SUM(num_girls)": 141, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00012523703996482704, + "% SUM(num_girls)": 0.0002939545433697615, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "CA", + "gender": "girl", + "name": "Tiffany", + "sum__num": 833, + "SUM(num_girls)": 833, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007398755623453967, + "% SUM(num_girls)": 0.0017366250682766759, + "% pct_boys": 0 + }, + { + "__timestamp": 946684800000, + "state": "FL", + "gender": "boy", + "name": "Luke", + "sum__num": 261, + "SUM(num_girls)": 0, + "SUM(num_boys)": 261, + "pct_boys": 261, + "% sum__num": 0.00023182175482850962, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004039003464876919 + }, + { + "__timestamp": 315532800000, + "state": "IL", + "gender": "girl", + "name": "Elizabeth", + "sum__num": 1193, + "SUM(num_girls)": 1193, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010596297069364444, + "% SUM(num_girls)": 0.0024871473066675562, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "MA", + "gender": "boy", + "name": "Travis", + "sum__num": 53, + "SUM(num_girls)": 0, + "SUM(num_boys)": 53, + "pct_boys": 53, + "% sum__num": 0.00004707491573145981, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00008201807802240486 + }, + { + "__timestamp": 126230400000, + "state": "CA", + "gender": "boy", + "name": "Sean", + "sum__num": 973, + "SUM(num_girls)": 0, + "SUM(num_boys)": 973, + "pct_boys": 973, + "% sum__num": 0.0008642243963530264, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015057281116188667 + }, + { + "__timestamp": 788918400000, + "state": "NJ", + "gender": "girl", + "name": "Ashley", + "sum__num": 769, + "SUM(num_girls)": 769, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006830303810847659, + "% SUM(num_girls)": 0.0016031988925627415, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "IL", + "gender": "boy", + "name": "Christopher", + "sum__num": 2032, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2032, + "pct_boys": 2032, + "% sum__num": 0.0018048345050250252, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003144542161160881 + }, + { + "__timestamp": -126230400000, + "state": "FL", + "gender": "girl", + "name": "Paula", + "sum__num": 155, + "SUM(num_girls)": 155, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013767192336559, + "% SUM(num_girls)": 0.0003231415193071846, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "IL", + "gender": "girl", + "name": "Brooke", + "sum__num": 231, + "SUM(num_girls)": 231, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000205175576112589, + "% SUM(num_girls)": 0.0004815851029674815, + "% pct_boys": 0 + }, + { + "__timestamp": 1167609600000, + "state": "other", + "gender": "girl", + "name": "Sophia", + "sum__num": 6845, + "SUM(num_girls)": 6845, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.006079769777015895, + "% SUM(num_girls)": 0.014270346449404378, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "OH", + "gender": "boy", + "name": "Jeremy", + "sum__num": 591, + "SUM(num_girls)": 0, + "SUM(num_boys)": 591, + "pct_boys": 591, + "% sum__num": 0.0005249297207036368, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009145789454951184 + }, + { + "__timestamp": -31536000000, + "state": "FL", + "gender": "girl", + "name": "Monica", + "sum__num": 153, + "SUM(num_girls)": 153, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001358955114511953, + "% SUM(num_girls)": 0.00031897195131612416, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "OH", + "gender": "boy", + "name": "Jerry", + "sum__num": 513, + "SUM(num_girls)": 0, + "SUM(num_boys)": 513, + "pct_boys": 513, + "% sum__num": 0.0004556496560422431, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007938730948206358 + }, + { + "__timestamp": 126230400000, + "state": "IL", + "gender": "boy", + "name": "Jesse", + "sum__num": 168, + "SUM(num_girls)": 0, + "SUM(num_boys)": 168, + "pct_boys": 168, + "% sum__num": 0.00014921860080915563, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00025998183222196257 + }, + { + "__timestamp": 567993600000, + "state": "CA", + "gender": "girl", + "name": "Megan", + "sum__num": 1701, + "SUM(num_girls)": 1701, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0015108383331927007, + "% SUM(num_girls)": 0.0035462175763969093, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "FL", + "gender": "girl", + "name": "Rebecca", + "sum__num": 374, + "SUM(num_girls)": 374, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00033218902799181073, + "% SUM(num_girls)": 0.0007797092143283034, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "TX", + "gender": "girl", + "name": "Sara", + "sum__num": 397, + "SUM(num_girls)": 397, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003526177650073499, + "% SUM(num_girls)": 0.0008276592462254986, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "TX", + "gender": "boy", + "name": "Daniel", + "sum__num": 966, + "SUM(num_girls)": 0, + "SUM(num_boys)": 966, + "pct_boys": 966, + "% sum__num": 0.0008580069546526448, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014948955352762849 + }, + { + "__timestamp": 0, + "state": "PA", + "gender": "boy", + "name": "Jerry", + "sum__num": 152, + "SUM(num_girls)": 0, + "SUM(num_boys)": 152, + "pct_boys": 152, + "% sum__num": 0.00013500730549399794, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00023522165772463282 + }, + { + "__timestamp": 410227200000, + "state": "NJ", + "gender": "boy", + "name": "Michael", + "sum__num": 2644, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2644, + "pct_boys": 2644, + "% sum__num": 0.0023484165508298066, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004091618835683744 + }, + { + "__timestamp": 631152000000, + "state": "NJ", + "gender": "boy", + "name": "Brian", + "sum__num": 883, + "SUM(num_girls)": 0, + "SUM(num_boys)": 883, + "pct_boys": 883, + "% sum__num": 0.0007842858602052643, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0013664521300713866 + }, + { + "__timestamp": 94694400000, + "state": "IL", + "gender": "girl", + "name": "Leslie", + "sum__num": 175, + "SUM(num_girls)": 175, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001554360425095371, + "% SUM(num_girls)": 0.00036483719921778904, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "OH", + "gender": "boy", + "name": "Eric", + "sum__num": 1459, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1459, + "pct_boys": 1459, + "% sum__num": 0.0012958924915509409, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0022578184119752586 + }, + { + "__timestamp": -126230400000, + "state": "TX", + "gender": "girl", + "name": "Karen", + "sum__num": 1065, + "SUM(num_girls)": 1065, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000945939344415183, + "% SUM(num_girls)": 0.0022202949552396875, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "NJ", + "gender": "girl", + "name": "Lisa", + "sum__num": 153, + "SUM(num_girls)": 153, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001358955114511953, + "% SUM(num_girls)": 0.00031897195131612416, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "other", + "gender": "boy", + "name": "Patrick", + "sum__num": 1224, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1224, + "pct_boys": 1224, + "% sum__num": 0.0010871640916095624, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018941533490457274 + }, + { + "__timestamp": 820454400000, + "state": "IL", + "gender": "boy", + "name": "Mark", + "sum__num": 321, + "SUM(num_girls)": 0, + "SUM(num_boys)": 321, + "pct_boys": 321, + "% sum__num": 0.0002851141122603509, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004967510008526785 + }, + { + "__timestamp": 252460800000, + "state": "IL", + "gender": "girl", + "name": "Kimberly", + "sum__num": 852, + "SUM(num_girls)": 852, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007567514755321464, + "% SUM(num_girls)": 0.00177623596419175, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "MA", + "gender": "boy", + "name": "Victor", + "sum__num": 82, + "SUM(num_girls)": 0, + "SUM(num_boys)": 82, + "pct_boys": 82, + "% sum__num": 0.0000728328884901831, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00012689589429881507 + }, + { + "__timestamp": 1072915200000, + "state": "TX", + "gender": "girl", + "name": "Kaitlyn", + "sum__num": 582, + "SUM(num_girls)": 582, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005169358670888606, + "% SUM(num_girls)": 0.0012133442853985898, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "TX", + "gender": "girl", + "name": "Melissa", + "sum__num": 1709, + "SUM(num_girls)": 1709, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0015179439808502796, + "% SUM(num_girls)": 0.0035628958483611512, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "MI", + "gender": "girl", + "name": "Jordan", + "sum__num": 118, + "SUM(num_girls)": 118, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00010480830294928788, + "% SUM(num_girls)": 0.0002460045114725663, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "NY", + "gender": "boy", + "name": "Victor", + "sum__num": 295, + "SUM(num_girls)": 0, + "SUM(num_boys)": 295, + "pct_boys": 295, + "% sum__num": 0.0002620207573732197, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004565157172945176 + }, + { + "__timestamp": 1041379200000, + "state": "IL", + "gender": "girl", + "name": "Emily", + "sum__num": 1102, + "SUM(num_girls)": 1102, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000978802964831485, + "% SUM(num_girls)": 0.002297431963074306, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "FL", + "gender": "boy", + "name": "Elijah", + "sum__num": 412, + "SUM(num_girls)": 0, + "SUM(num_boys)": 412, + "pct_boys": 412, + "% sum__num": 0.00036594085436531025, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006375744933062416 + }, + { + "__timestamp": 631152000000, + "state": "MA", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 425, + "SUM(num_girls)": 0, + "SUM(num_boys)": 425, + "pct_boys": 425, + "% sum__num": 0.0003774875318088758, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000657692135085322 + }, + { + "__timestamp": 757382400000, + "state": "other", + "gender": "girl", + "name": "Erica", + "sum__num": 2324, + "SUM(num_girls)": 2324, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.002064190644526653, + "% SUM(num_girls)": 0.004845038005612238, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "PA", + "gender": "girl", + "name": "Kaitlyn", + "sum__num": 294, + "SUM(num_girls)": 294, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00026113255141602235, + "% SUM(num_girls)": 0.0006129264946858856, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "other", + "gender": "boy", + "name": "Christian", + "sum__num": 4274, + "SUM(num_girls)": 0, + "SUM(num_boys)": 4274, + "pct_boys": 4274, + "% sum__num": 0.003796192261061495, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0066140616125992145 + }, + { + "__timestamp": 946684800000, + "state": "FL", + "gender": "girl", + "name": "Mary", + "sum__num": 223, + "SUM(num_girls)": 223, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019806992845501016, + "% SUM(num_girls)": 0.00046490683100323976, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "OH", + "gender": "boy", + "name": "Cody", + "sum__num": 217, + "SUM(num_girls)": 0, + "SUM(num_boys)": 217, + "pct_boys": 217, + "% sum__num": 0.00019274069271182603, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000335809866620035 + }, + { + "__timestamp": 220924800000, + "state": "MI", + "gender": "girl", + "name": "Jennifer", + "sum__num": 2759, + "SUM(num_girls)": 2759, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0024505602359075024, + "% SUM(num_girls)": 0.005751919043667886, + "% pct_boys": 0 + }, + { + "__timestamp": -94694400000, + "state": "FL", + "gender": "girl", + "name": "Leslie", + "sum__num": 169, + "SUM(num_girls)": 169, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00015010680676635297, + "% SUM(num_girls)": 0.0003523284952446077, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "TX", + "gender": "girl", + "name": "Diana", + "sum__num": 426, + "SUM(num_girls)": 426, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003783757377660732, + "% SUM(num_girls)": 0.000888117982095875, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "MI", + "gender": "boy", + "name": "Mark", + "sum__num": 373, + "SUM(num_girls)": 0, + "SUM(num_boys)": 373, + "pct_boys": 373, + "% sum__num": 0.00033130082203461337, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005772215679690002 + }, + { + "__timestamp": 915148800000, + "state": "FL", + "gender": "boy", + "name": "Alexander", + "sum__num": 974, + "SUM(num_girls)": 0, + "SUM(num_boys)": 974, + "pct_boys": 974, + "% sum__num": 0.0008651126023102237, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015072756225249498 + }, + { + "__timestamp": 757382400000, + "state": "PA", + "gender": "boy", + "name": "Jesse", + "sum__num": 381, + "SUM(num_girls)": 0, + "SUM(num_boys)": 381, + "pct_boys": 381, + "% sum__num": 0.00033840646969219223, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005896016552176651 + }, + { + "__timestamp": 662688000000, + "state": "MI", + "gender": "boy", + "name": "Dylan", + "sum__num": 314, + "SUM(num_girls)": 0, + "SUM(num_boys)": 314, + "pct_boys": 314, + "% sum__num": 0.00027889667055996947, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00048591842451009673 + }, + { + "__timestamp": 757382400000, + "state": "NY", + "gender": "girl", + "name": "Jacqueline", + "sum__num": 483, + "SUM(num_girls)": 483, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004290034773263224, + "% SUM(num_girls)": 0.0010069506698410977, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "PA", + "gender": "girl", + "name": "Tara", + "sum__num": 176, + "SUM(num_girls)": 176, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00015632424846673447, + "% SUM(num_girls)": 0.0003669219832133193, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "PA", + "gender": "girl", + "name": "Jill", + "sum__num": 421, + "SUM(num_girls)": 421, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003739347079800864, + "% SUM(num_girls)": 0.0008776940621182239, + "% pct_boys": 0 + }, + { + "__timestamp": 473385600000, + "state": "IL", + "gender": "girl", + "name": "Jill", + "sum__num": 143, + "SUM(num_girls)": 143, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00012701345187922174, + "% SUM(num_girls)": 0.0002981241113608219, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "PA", + "gender": "girl", + "name": "Elizabeth", + "sum__num": 580, + "SUM(num_girls)": 580, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005151594551744659, + "% SUM(num_girls)": 0.0012091747174075294, + "% pct_boys": 0 + }, + { + "__timestamp": 410227200000, + "state": "TX", + "gender": "girl", + "name": "Amy", + "sum__num": 1200, + "SUM(num_girls)": 1200, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001065847148636826, + "% SUM(num_girls)": 0.002501740794636268, + "% pct_boys": 0 + }, + { + "__timestamp": -126230400000, + "state": "NY", + "gender": "girl", + "name": "Michelle", + "sum__num": 2349, + "SUM(num_girls)": 2349, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.002086395793456587, + "% SUM(num_girls)": 0.0048971576055004944, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "NY", + "gender": "girl", + "name": "Lisa", + "sum__num": 5614, + "SUM(num_girls)": 5614, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.004986388243705951, + "% SUM(num_girls)": 0.011703977350906673, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "CA", + "gender": "boy", + "name": "Justin", + "sum__num": 2286, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2286, + "pct_boys": 2286, + "% sum__num": 0.002030438818153153, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003537609931305991 + }, + { + "__timestamp": 378691200000, + "state": "MI", + "gender": "girl", + "name": "Sara", + "sum__num": 569, + "SUM(num_girls)": 569, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000505389189645295, + "% SUM(num_girls)": 0.001186242093456697, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "IL", + "gender": "boy", + "name": "Anthony", + "sum__num": 1278, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1278, + "pct_boys": 1278, + "% sum__num": 0.0011351272132982197, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0019777189379742155 + }, + { + "__timestamp": 820454400000, + "state": "OH", + "gender": "boy", + "name": "Corey", + "sum__num": 271, + "SUM(num_girls)": 0, + "SUM(num_boys)": 271, + "pct_boys": 271, + "% sum__num": 0.00024070381440048318, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000419375455548523 + }, + { + "__timestamp": 1072915200000, + "state": "NJ", + "gender": "boy", + "name": "Ian", + "sum__num": 155, + "SUM(num_girls)": 0, + "SUM(num_boys)": 155, + "pct_boys": 155, + "% sum__num": 0.00013767192336559, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00023986419044288215 + }, + { + "__timestamp": 631152000000, + "state": "PA", + "gender": "boy", + "name": "Cody", + "sum__num": 637, + "SUM(num_girls)": 0, + "SUM(num_boys)": 637, + "pct_boys": 637, + "% sum__num": 0.0005657871947347151, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009857644471749415 + }, + { + "__timestamp": 1041379200000, + "state": "MA", + "gender": "boy", + "name": "Ian", + "sum__num": 104, + "SUM(num_girls)": 0, + "SUM(num_boys)": 104, + "pct_boys": 104, + "% sum__num": 0.00009237341954852491, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001609411342326435 + }, + { + "__timestamp": 252460800000, + "state": "FL", + "gender": "girl", + "name": "Vanessa", + "sum__num": 184, + "SUM(num_girls)": 184, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001634298961243133, + "% SUM(num_girls)": 0.00038360025517756105, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "TX", + "gender": "boy", + "name": "Benjamin", + "sum__num": 788, + "SUM(num_girls)": 0, + "SUM(num_boys)": 788, + "pct_boys": 788, + "% sum__num": 0.0006999062942715157, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001219438593993491 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "girl", + "name": "Carrie", + "sum__num": 3897, + "SUM(num_girls)": 3897, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.003461338615198092, + "% SUM(num_girls)": 0.00812440323058128, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "NY", + "gender": "boy", + "name": "Travis", + "sum__num": 563, + "SUM(num_girls)": 0, + "SUM(num_boys)": 563, + "pct_boys": 563, + "% sum__num": 0.0005000599539021108, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008712486401247913 + }, + { + "__timestamp": 441763200000, + "state": "NY", + "gender": "girl", + "name": "Theresa", + "sum__num": 243, + "SUM(num_girls)": 243, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00021583404759895725, + "% SUM(num_girls)": 0.0005066025109138442, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "FL", + "gender": "boy", + "name": "John", + "sum__num": 832, + "SUM(num_girls)": 0, + "SUM(num_boys)": 832, + "pct_boys": 832, + "% sum__num": 0.0007389873563881993, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001287529073861148 + }, + { + "__timestamp": 410227200000, + "state": "MA", + "gender": "boy", + "name": "George", + "sum__num": 121, + "SUM(num_girls)": 0, + "SUM(num_boys)": 121, + "pct_boys": 121, + "% sum__num": 0.00010747292082087994, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0001872488196360564 + }, + { + "__timestamp": -94694400000, + "state": "IL", + "gender": "girl", + "name": "Sharon", + "sum__num": 695, + "SUM(num_girls)": 695, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006173031402521617, + "% SUM(num_girls)": 0.0014489248768935052, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "MA", + "gender": "boy", + "name": "Gregory", + "sum__num": 293, + "SUM(num_girls)": 0, + "SUM(num_boys)": 293, + "pct_boys": 293, + "% sum__num": 0.000260244345458825, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004534206954823514 + }, + { + "__timestamp": 946684800000, + "state": "other", + "gender": "girl", + "name": "Logan", + "sum__num": 160, + "SUM(num_girls)": 160, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001421129531515768, + "% SUM(num_girls)": 0.0003335654392848357, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "FL", + "gender": "boy", + "name": "Stephen", + "sum__num": 600, + "SUM(num_girls)": 0, + "SUM(num_boys)": 600, + "pct_boys": 600, + "% sum__num": 0.000532923574318413, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009285065436498664 + }, + { + "__timestamp": 157766400000, + "state": "PA", + "gender": "girl", + "name": "Mary", + "sum__num": 582, + "SUM(num_girls)": 582, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005169358670888606, + "% SUM(num_girls)": 0.0012133442853985898, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "NJ", + "gender": "girl", + "name": "Amy", + "sum__num": 113, + "SUM(num_girls)": 113, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00010036727316330111, + "% SUM(num_girls)": 0.0002355805914949152, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "MI", + "gender": "boy", + "name": "Alexander", + "sum__num": 857, + "SUM(num_girls)": 0, + "SUM(num_boys)": 857, + "pct_boys": 857, + "% sum__num": 0.0007611925053181332, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001326216846513226 + }, + { + "__timestamp": -63158400000, + "state": "FL", + "gender": "boy", + "name": "Frank", + "sum__num": 188, + "SUM(num_girls)": 0, + "SUM(num_boys)": 188, + "pct_boys": 188, + "% sum__num": 0.00016698271995310273, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002909320503436248 + }, + { + "__timestamp": 536457600000, + "state": "OH", + "gender": "girl", + "name": "Heather", + "sum__num": 940, + "SUM(num_girls)": 940, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008349135997655136, + "% SUM(num_girls)": 0.0019596969557984095, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "IL", + "gender": "boy", + "name": "Bryan", + "sum__num": 339, + "SUM(num_girls)": 0, + "SUM(num_boys)": 339, + "pct_boys": 339, + "% sum__num": 0.0003011018194899033, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005246061971621746 + }, + { + "__timestamp": 473385600000, + "state": "other", + "gender": "girl", + "name": "Rachel", + "sum__num": 7944, + "SUM(num_girls)": 7944, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.007055908123975788, + "% SUM(num_girls)": 0.01656152406049209, + "% pct_boys": 0 + }, + { + "__timestamp": 378691200000, + "state": "other", + "gender": "boy", + "name": "Charles", + "sum__num": 7566, + "SUM(num_girls)": 0, + "SUM(num_boys)": 7566, + "pct_boys": 7566, + "% sum__num": 0.006720166272155187, + "% SUM(num_girls)": 0, + "% pct_boys": 0.011708467515424814 + }, + { + "__timestamp": 1041379200000, + "state": "PA", + "gender": "boy", + "name": "Logan", + "sum__num": 633, + "SUM(num_girls)": 0, + "SUM(num_boys)": 633, + "pct_boys": 633, + "% sum__num": 0.0005622343709059257, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000979574403550609 + }, + { + "__timestamp": 347155200000, + "state": "IL", + "gender": "girl", + "name": "Maria", + "sum__num": 433, + "SUM(num_girls)": 433, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003845931794664547, + "% SUM(num_girls)": 0.0009027114700645866, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "IL", + "gender": "boy", + "name": "Nicholas", + "sum__num": 195, + "SUM(num_girls)": 0, + "SUM(num_boys)": 195, + "pct_boys": 195, + "% sum__num": 0.0001732001616534842, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00030176462668620656 + }, + { + "__timestamp": -31536000000, + "state": "MI", + "gender": "girl", + "name": "Sandra", + "sum__num": 496, + "SUM(num_girls)": 496, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00044055015476988804, + "% SUM(num_girls)": 0.0010340528617829906, + "% pct_boys": 0 + }, + { + "__timestamp": -126230400000, + "state": "OH", + "gender": "boy", + "name": "Timothy", + "sum__num": 2000, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2000, + "pct_boys": 2000, + "% sum__num": 0.0017764119143947098, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0030950218121662213 + }, + { + "__timestamp": 788918400000, + "state": "NY", + "gender": "girl", + "name": "Laura", + "sum__num": 398, + "SUM(num_girls)": 398, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00035350597096454726, + "% SUM(num_girls)": 0.0008297440302210288, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "TX", + "gender": "boy", + "name": "Alex", + "sum__num": 454, + "SUM(num_girls)": 0, + "SUM(num_boys)": 454, + "pct_boys": 454, + "% sum__num": 0.0004032455045675991, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007025699513617322 + }, + { + "__timestamp": 536457600000, + "state": "MA", + "gender": "girl", + "name": "Emma", + "sum__num": 83, + "SUM(num_girls)": 83, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00007372109444738045, + "% SUM(num_girls)": 0.00017303707162900851, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "NJ", + "gender": "girl", + "name": "April", + "sum__num": 79, + "SUM(num_girls)": 79, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00007016827061859104, + "% SUM(num_girls)": 0.00016469793564688763, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "MI", + "gender": "boy", + "name": "Bryan", + "sum__num": 133, + "SUM(num_girls)": 0, + "SUM(num_boys)": 133, + "pct_boys": 133, + "% sum__num": 0.00011813139230724821, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002058189505090537 + }, + { + "__timestamp": 567993600000, + "state": "NJ", + "gender": "girl", + "name": "Brittany", + "sum__num": 628, + "SUM(num_girls)": 628, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005577933411199389, + "% SUM(num_girls)": 0.00130924434919298, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "PA", + "gender": "boy", + "name": "James", + "sum__num": 2067, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2067, + "pct_boys": 2067, + "% sum__num": 0.0018359217135269325, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0031987050428737896 + }, + { + "__timestamp": 126230400000, + "state": "MA", + "gender": "girl", + "name": "Elizabeth", + "sum__num": 424, + "SUM(num_girls)": 424, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00037659932585167846, + "% SUM(num_girls)": 0.0008839484141048146, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "MA", + "gender": "boy", + "name": "Robert", + "sum__num": 697, + "SUM(num_girls)": 0, + "SUM(num_boys)": 697, + "pct_boys": 697, + "% sum__num": 0.0006190795521665564, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010786151015399282 + }, + { + "__timestamp": 410227200000, + "state": "IL", + "gender": "boy", + "name": "Gary", + "sum__num": 138, + "SUM(num_girls)": 0, + "SUM(num_boys)": 138, + "pct_boys": 138, + "% sum__num": 0.00012257242209323498, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00021355650503946926 + }, + { + "__timestamp": 1041379200000, + "state": "IL", + "gender": "girl", + "name": "Sarah", + "sum__num": 564, + "SUM(num_girls)": 564, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005009481598593082, + "% SUM(num_girls)": 0.001175818173479046, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "NJ", + "gender": "boy", + "name": "Christopher", + "sum__num": 1224, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1224, + "pct_boys": 1224, + "% sum__num": 0.0010871640916095624, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018941533490457274 + }, + { + "__timestamp": 473385600000, + "state": "MA", + "gender": "girl", + "name": "Katie", + "sum__num": 182, + "SUM(num_girls)": 182, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001616534842099186, + "% SUM(num_girls)": 0.0003794306871865006, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "MA", + "gender": "girl", + "name": "Theresa", + "sum__num": 188, + "SUM(num_girls)": 188, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00016698271995310273, + "% SUM(num_girls)": 0.00039193939115968196, + "% pct_boys": 0 + }, + { + "__timestamp": 1041379200000, + "state": "CA", + "gender": "boy", + "name": "Ian", + "sum__num": 759, + "SUM(num_girls)": 0, + "SUM(num_boys)": 759, + "pct_boys": 759, + "% sum__num": 0.0006741483215127924, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001174560777717081 + }, + { + "__timestamp": -157766400000, + "state": "other", + "gender": "boy", + "name": "Chad", + "sum__num": 189, + "SUM(num_girls)": 0, + "SUM(num_boys)": 189, + "pct_boys": 189, + "% sum__num": 0.00016787092591030007, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002924795612497079 + }, + { + "__timestamp": 252460800000, + "state": "IL", + "gender": "boy", + "name": "Gregory", + "sum__num": 504, + "SUM(num_girls)": 0, + "SUM(num_boys)": 504, + "pct_boys": 504, + "% sum__num": 0.0004476558024274669, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007799454966658878 + }, + { + "__timestamp": 599616000000, + "state": "TX", + "gender": "girl", + "name": "Kelsey", + "sum__num": 565, + "SUM(num_girls)": 565, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005018363658165055, + "% SUM(num_girls)": 0.001177902957474576, + "% pct_boys": 0 + }, + { + "__timestamp": 378691200000, + "state": "MA", + "gender": "boy", + "name": "Jared", + "sum__num": 143, + "SUM(num_girls)": 0, + "SUM(num_boys)": 143, + "pct_boys": 143, + "% sum__num": 0.00012701345187922174, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00022129405956988483 + }, + { + "__timestamp": 978307200000, + "state": "FL", + "gender": "girl", + "name": "Brooke", + "sum__num": 288, + "SUM(num_girls)": 288, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002558033156728382, + "% SUM(num_girls)": 0.0006004177907127043, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "NJ", + "gender": "girl", + "name": "Donna", + "sum__num": 101, + "SUM(num_girls)": 101, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00008970880167693285, + "% SUM(num_girls)": 0.00021056318354855253, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "other", + "gender": "boy", + "name": "Samuel", + "sum__num": 7066, + "SUM(num_girls)": 0, + "SUM(num_boys)": 7066, + "pct_boys": 7066, + "% sum__num": 0.00627606329355651, + "% SUM(num_girls)": 0, + "% pct_boys": 0.01093471206238326 + }, + { + "__timestamp": 283996800000, + "state": "other", + "gender": "girl", + "name": "Angel", + "sum__num": 225, + "SUM(num_girls)": 225, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019984634036940486, + "% SUM(num_girls)": 0.0004690763989943002, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "MI", + "gender": "girl", + "name": "Julia", + "sum__num": 309, + "SUM(num_girls)": 309, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00027445564077398265, + "% SUM(num_girls)": 0.0006441982546188389, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "PA", + "gender": "girl", + "name": "Victoria", + "sum__num": 609, + "SUM(num_girls)": 609, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005409174279331891, + "% SUM(num_girls)": 0.001269633453277906, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "OH", + "gender": "boy", + "name": "James", + "sum__num": 3883, + "SUM(num_girls)": 0, + "SUM(num_boys)": 3883, + "pct_boys": 3883, + "% sum__num": 0.003448903731797329, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0060089848483207186 + }, + { + "__timestamp": 1072915200000, + "state": "MA", + "gender": "girl", + "name": "Lauren", + "sum__num": 235, + "SUM(num_girls)": 235, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002087283999413784, + "% SUM(num_girls)": 0.0004899242389496024, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "NY", + "gender": "boy", + "name": "Alex", + "sum__num": 485, + "SUM(num_girls)": 0, + "SUM(num_boys)": 485, + "pct_boys": 485, + "% sum__num": 0.00043077988924071714, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007505427894503086 + }, + { + "__timestamp": 820454400000, + "state": "OH", + "gender": "boy", + "name": "Luke", + "sum__num": 255, + "SUM(num_girls)": 0, + "SUM(num_boys)": 255, + "pct_boys": 255, + "% sum__num": 0.00022649251908532552, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003946152810511932 + }, + { + "__timestamp": 883612800000, + "state": "OH", + "gender": "boy", + "name": "Jeremy", + "sum__num": 189, + "SUM(num_girls)": 0, + "SUM(num_boys)": 189, + "pct_boys": 189, + "% sum__num": 0.00016787092591030007, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002924795612497079 + }, + { + "__timestamp": 94694400000, + "state": "FL", + "gender": "boy", + "name": "Benjamin", + "sum__num": 165, + "SUM(num_girls)": 0, + "SUM(num_boys)": 165, + "pct_boys": 165, + "% sum__num": 0.00014655398293756357, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00025533929950371327 + }, + { + "__timestamp": 441763200000, + "state": "MA", + "gender": "girl", + "name": "Tracy", + "sum__num": 72, + "SUM(num_girls)": 72, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00006395082891820955, + "% SUM(num_girls)": 0.00015010444767817608, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "MA", + "gender": "boy", + "name": "Mark", + "sum__num": 448, + "SUM(num_girls)": 0, + "SUM(num_boys)": 448, + "pct_boys": 448, + "% sum__num": 0.000397916268824415, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006932848859252335 + }, + { + "__timestamp": 915148800000, + "state": "OH", + "gender": "boy", + "name": "Hunter", + "sum__num": 530, + "SUM(num_girls)": 0, + "SUM(num_boys)": 530, + "pct_boys": 530, + "% sum__num": 0.0004707491573145981, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008201807802240487 + }, + { + "__timestamp": 283996800000, + "state": "FL", + "gender": "girl", + "name": "Amy", + "sum__num": 586, + "SUM(num_girls)": 586, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00052048869091765, + "% SUM(num_girls)": 0.0012216834213807108, + "% pct_boys": 0 + }, + { + "__timestamp": 1199145600000, + "state": "MA", + "gender": "girl", + "name": "Jessica", + "sum__num": 89, + "SUM(num_girls)": 89, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00007905033019056458, + "% SUM(num_girls)": 0.00018554577560218985, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "other", + "gender": "boy", + "name": "Vincent", + "sum__num": 172, + "SUM(num_girls)": 0, + "SUM(num_boys)": 172, + "pct_boys": 172, + "% sum__num": 0.00015277142463794504, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000266171875846295 + }, + { + "__timestamp": 283996800000, + "state": "NJ", + "gender": "boy", + "name": "Robert", + "sum__num": 1148, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1148, + "pct_boys": 1148, + "% sum__num": 0.0010196604388625634, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001776542520183411 + }, + { + "__timestamp": 567993600000, + "state": "other", + "gender": "boy", + "name": "Jonathan", + "sum__num": 10297, + "SUM(num_girls)": 0, + "SUM(num_boys)": 10297, + "pct_boys": 10297, + "% sum__num": 0.009145856741261164, + "% SUM(num_girls)": 0, + "% pct_boys": 0.01593471979993779 + }, + { + "__timestamp": 915148800000, + "state": "MA", + "gender": "boy", + "name": "Noah", + "sum__num": 293, + "SUM(num_girls)": 0, + "SUM(num_boys)": 293, + "pct_boys": 293, + "% sum__num": 0.000260244345458825, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004534206954823514 + }, + { + "__timestamp": 347155200000, + "state": "PA", + "gender": "boy", + "name": "Timothy", + "sum__num": 1073, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1073, + "pct_boys": 1073, + "% sum__num": 0.0009530449920727618, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016604792022271778 + }, + { + "__timestamp": 978307200000, + "state": "IL", + "gender": "boy", + "name": "Alexander", + "sum__num": 944, + "SUM(num_girls)": 0, + "SUM(num_boys)": 944, + "pct_boys": 944, + "% sum__num": 0.000838466423594303, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014608502953424565 + }, + { + "__timestamp": 189302400000, + "state": "IL", + "gender": "boy", + "name": "Jose", + "sum__num": 447, + "SUM(num_girls)": 0, + "SUM(num_boys)": 447, + "pct_boys": 447, + "% sum__num": 0.0003970280628672176, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006917373750191505 + }, + { + "__timestamp": 599616000000, + "state": "other", + "gender": "boy", + "name": "Andrea", + "sum__num": 40, + "SUM(num_girls)": 0, + "SUM(num_boys)": 40, + "pct_boys": 40, + "% sum__num": 0.0000355282382878942, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00006190043624332442 + }, + { + "__timestamp": -63158400000, + "state": "MI", + "gender": "boy", + "name": "Gary", + "sum__num": 567, + "SUM(num_girls)": 0, + "SUM(num_boys)": 567, + "pct_boys": 567, + "% sum__num": 0.0005036127777309003, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008774386837491238 + }, + { + "__timestamp": 1009843200000, + "state": "FL", + "gender": "boy", + "name": "Kyle", + "sum__num": 509, + "SUM(num_girls)": 0, + "SUM(num_boys)": 509, + "pct_boys": 509, + "% sum__num": 0.00045209683221345367, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0007876830511963033 + }, + { + "__timestamp": 252460800000, + "state": "IL", + "gender": "girl", + "name": "Natalie", + "sum__num": 201, + "SUM(num_girls)": 201, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00017852939739666833, + "% SUM(num_girls)": 0.0004190415831015748, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "other", + "gender": "girl", + "name": "Jessica", + "sum__num": 25802, + "SUM(num_girls)": 25802, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.022917490107606152, + "% SUM(num_girls)": 0.05379159665267082, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "CA", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 1685, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1685, + "pct_boys": 1685, + "% sum__num": 0.001496627037877543, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0026075558767500416 + }, + { + "__timestamp": 283996800000, + "state": "CA", + "gender": "boy", + "name": "Charles", + "sum__num": 1006, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1006, + "pct_boys": 1006, + "% sum__num": 0.0008935351929405391, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0015567959715196093 + }, + { + "__timestamp": 410227200000, + "state": "FL", + "gender": "boy", + "name": "Charles", + "sum__num": 657, + "SUM(num_girls)": 0, + "SUM(num_boys)": 657, + "pct_boys": 657, + "% sum__num": 0.0005835513138786622, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010167146652966038 + }, + { + "__timestamp": 1136073600000, + "state": "NY", + "gender": "girl", + "name": "Kaitlyn", + "sum__num": 352, + "SUM(num_girls)": 352, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00031264849693346894, + "% SUM(num_girls)": 0.0007338439664266386, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "OH", + "gender": "boy", + "name": "Jeremy", + "sum__num": 1166, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1166, + "pct_boys": 1166, + "% sum__num": 0.0010356481460921157, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001804397716492907 + }, + { + "__timestamp": 94694400000, + "state": "MI", + "gender": "girl", + "name": "Rebecca", + "sum__num": 796, + "SUM(num_girls)": 796, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007070119419290945, + "% SUM(num_girls)": 0.0016594880604420576, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "NY", + "gender": "girl", + "name": "Andrea", + "sum__num": 525, + "SUM(num_girls)": 525, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00046630812752861134, + "% SUM(num_girls)": 0.0010945115976533672, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "MI", + "gender": "boy", + "name": "Jack", + "sum__num": 178, + "SUM(num_girls)": 0, + "SUM(num_boys)": 178, + "pct_boys": 178, + "% sum__num": 0.00015810066038112917, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00027545694128279367 + }, + { + "__timestamp": -31536000000, + "state": "MI", + "gender": "girl", + "name": "Kathryn", + "sum__num": 189, + "SUM(num_girls)": 189, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00016787092591030007, + "% SUM(num_girls)": 0.00039402417515521215, + "% pct_boys": 0 + }, + { + "__timestamp": -126230400000, + "state": "NY", + "gender": "boy", + "name": "Brian", + "sum__num": 2056, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2056, + "pct_boys": 2056, + "% sum__num": 0.0018261514479977618, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0031816824229068752 + }, + { + "__timestamp": 757382400000, + "state": "TX", + "gender": "boy", + "name": "Christian", + "sum__num": 1233, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1233, + "pct_boys": 1233, + "% sum__num": 0.0010951579452243387, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0019080809472004753 + }, + { + "__timestamp": 662688000000, + "state": "OH", + "gender": "boy", + "name": "Bradley", + "sum__num": 369, + "SUM(num_girls)": 0, + "SUM(num_boys)": 369, + "pct_boys": 369, + "% sum__num": 0.00032774799820582397, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005710315243446678 + }, + { + "__timestamp": 757382400000, + "state": "IL", + "gender": "girl", + "name": "Brittany", + "sum__num": 813, + "SUM(num_girls)": 813, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007221114432014496, + "% SUM(num_girls)": 0.0016949293883660715, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "MA", + "gender": "boy", + "name": "Sean", + "sum__num": 418, + "SUM(num_girls)": 0, + "SUM(num_boys)": 418, + "pct_boys": 418, + "% sum__num": 0.0003712700901084944, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006468595587427403 + }, + { + "__timestamp": -157766400000, + "state": "NY", + "gender": "boy", + "name": "Kenneth", + "sum__num": 1980, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1980, + "pct_boys": 1980, + "% sum__num": 0.0017586477952507627, + "% SUM(num_girls)": 0, + "% pct_boys": 0.003064071594044559 + }, + { + "__timestamp": 283996800000, + "state": "NJ", + "gender": "boy", + "name": "Steven", + "sum__num": 530, + "SUM(num_girls)": 0, + "SUM(num_boys)": 530, + "pct_boys": 530, + "% sum__num": 0.0004707491573145981, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008201807802240487 + }, + { + "__timestamp": 473385600000, + "state": "CA", + "gender": "girl", + "name": "Brenda", + "sum__num": 684, + "SUM(num_girls)": 684, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006075328747229908, + "% SUM(num_girls)": 0.0014259922529426725, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "NY", + "gender": "boy", + "name": "Kevin", + "sum__num": 1559, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1559, + "pct_boys": 1559, + "% sum__num": 0.0013847130872706762, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0024125695025835696 + }, + { + "__timestamp": 252460800000, + "state": "TX", + "gender": "boy", + "name": "Kevin", + "sum__num": 1114, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1114, + "pct_boys": 1114, + "% sum__num": 0.0009894614363178534, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017239271493765852 + }, + { + "__timestamp": 1167609600000, + "state": "MI", + "gender": "boy", + "name": "Isaiah", + "sum__num": 242, + "SUM(num_girls)": 0, + "SUM(num_boys)": 242, + "pct_boys": 242, + "% sum__num": 0.0002149458416417599, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003744976392721128 + }, + { + "__timestamp": 63072000000, + "state": "other", + "gender": "girl", + "name": "Amber", + "sum__num": 463, + "SUM(num_girls)": 463, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00041123935818237535, + "% SUM(num_girls)": 0.0009652549899304933, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "OH", + "gender": "girl", + "name": "Theresa", + "sum__num": 145, + "SUM(num_girls)": 145, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00012878986379361647, + "% SUM(num_girls)": 0.00030229367935188234, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "MA", + "gender": "boy", + "name": "Anthony", + "sum__num": 602, + "SUM(num_girls)": 0, + "SUM(num_boys)": 602, + "pct_boys": 602, + "% sum__num": 0.0005346999862328077, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009316015654620326 + }, + { + "__timestamp": 662688000000, + "state": "CA", + "gender": "boy", + "name": "Justin", + "sum__num": 2611, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2611, + "pct_boys": 2611, + "% sum__num": 0.0023191057542422937, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004040550975783002 + }, + { + "__timestamp": 820454400000, + "state": "PA", + "gender": "girl", + "name": "Morgan", + "sum__num": 510, + "SUM(num_girls)": 510, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00045298503817065103, + "% SUM(num_girls)": 0.0010632398377204138, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "TX", + "gender": "boy", + "name": "Edward", + "sum__num": 437, + "SUM(num_girls)": 0, + "SUM(num_boys)": 437, + "pct_boys": 437, + "% sum__num": 0.0003881460032952441, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006762622659583193 + }, + { + "__timestamp": 63072000000, + "state": "NJ", + "gender": "boy", + "name": "Joseph", + "sum__num": 1145, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1145, + "pct_boys": 1145, + "% sum__num": 0.0010169958209909713, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017718999874651617 + }, + { + "__timestamp": 1104537600000, + "state": "other", + "gender": "boy", + "name": "Elijah", + "sum__num": 6253, + "SUM(num_girls)": 0, + "SUM(num_boys)": 6253, + "pct_boys": 6253, + "% sum__num": 0.00555395185035506, + "% SUM(num_girls)": 0, + "% pct_boys": 0.009676585695737691 + }, + { + "__timestamp": 473385600000, + "state": "PA", + "gender": "boy", + "name": "Vincent", + "sum__num": 188, + "SUM(num_girls)": 0, + "SUM(num_boys)": 188, + "pct_boys": 188, + "% sum__num": 0.00016698271995310273, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002909320503436248 + }, + { + "__timestamp": 63072000000, + "state": "CA", + "gender": "boy", + "name": "Andrew", + "sum__num": 943, + "SUM(num_girls)": 0, + "SUM(num_boys)": 943, + "pct_boys": 943, + "% sum__num": 0.0008375782176371057, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014593027844363733 + }, + { + "__timestamp": 599616000000, + "state": "MA", + "gender": "boy", + "name": "Alexander", + "sum__num": 558, + "SUM(num_girls)": 0, + "SUM(num_boys)": 558, + "pct_boys": 558, + "% sum__num": 0.0004956189241161241, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008635110855943757 + }, + { + "__timestamp": 410227200000, + "state": "other", + "gender": "girl", + "name": "Brooke", + "sum__num": 1213, + "SUM(num_girls)": 1213, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010773938260803914, + "% SUM(num_girls)": 0.0025288429865781606, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "FL", + "gender": "boy", + "name": "Samuel", + "sum__num": 556, + "SUM(num_girls)": 0, + "SUM(num_boys)": 556, + "pct_boys": 556, + "% sum__num": 0.0004938425122017294, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008604160637822095 + }, + { + "__timestamp": 63072000000, + "state": "IL", + "gender": "girl", + "name": "Teresa", + "sum__num": 301, + "SUM(num_girls)": 301, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00026734999311640384, + "% SUM(num_girls)": 0.0006275199826545971, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "other", + "gender": "girl", + "name": "Stacy", + "sum__num": 4032, + "SUM(num_girls)": 4032, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0035812464194197352, + "% SUM(num_girls)": 0.00840584906997786, + "% pct_boys": 0 + }, + { + "__timestamp": 94694400000, + "state": "OH", + "gender": "boy", + "name": "Dennis", + "sum__num": 275, + "SUM(num_girls)": 0, + "SUM(num_boys)": 275, + "pct_boys": 275, + "% sum__num": 0.0002442566382292726, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00042556549917285543 + }, + { + "__timestamp": 410227200000, + "state": "NJ", + "gender": "boy", + "name": "Richard", + "sum__num": 524, + "SUM(num_girls)": 0, + "SUM(num_boys)": 524, + "pct_boys": 524, + "% sum__num": 0.00046541992157141397, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00081089571478755 + }, + { + "__timestamp": 0, + "state": "FL", + "gender": "girl", + "name": "Melanie", + "sum__num": 129, + "SUM(num_girls)": 129, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00011457856847845879, + "% SUM(num_girls)": 0.0002689371354233988, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "NJ", + "gender": "boy", + "name": "Frank", + "sum__num": 140, + "SUM(num_girls)": 0, + "SUM(num_boys)": 140, + "pct_boys": 140, + "% sum__num": 0.00012434883400762968, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00021665152685163548 + }, + { + "__timestamp": 441763200000, + "state": "IL", + "gender": "girl", + "name": "Cassandra", + "sum__num": 229, + "SUM(num_girls)": 229, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002033991641981943, + "% SUM(num_girls)": 0.0004774155349764211, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "MI", + "gender": "boy", + "name": "Samuel", + "sum__num": 429, + "SUM(num_girls)": 0, + "SUM(num_boys)": 429, + "pct_boys": 429, + "% sum__num": 0.0003810403556376653, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006638821787096545 + }, + { + "__timestamp": 662688000000, + "state": "OH", + "gender": "girl", + "name": "Brittany", + "sum__num": 1641, + "SUM(num_girls)": 1641, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0014575459757608595, + "% SUM(num_girls)": 0.003421130536665096, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "MA", + "gender": "boy", + "name": "Jonathan", + "sum__num": 708, + "SUM(num_girls)": 0, + "SUM(num_boys)": 708, + "pct_boys": 708, + "% sum__num": 0.0006288498176957273, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010956377215068423 + }, + { + "__timestamp": 788918400000, + "state": "PA", + "gender": "boy", + "name": "Brian", + "sum__num": 549, + "SUM(num_girls)": 0, + "SUM(num_boys)": 549, + "pct_boys": 549, + "% sum__num": 0.00048762507050134786, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008495834874396277 + }, + { + "__timestamp": 915148800000, + "state": "FL", + "gender": "boy", + "name": "Austin", + "sum__num": 1149, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1149, + "pct_boys": 1149, + "% sum__num": 0.0010205486448197608, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001778090031089494 + }, + { + "__timestamp": 504921600000, + "state": "MA", + "gender": "boy", + "name": "Charles", + "sum__num": 219, + "SUM(num_girls)": 0, + "SUM(num_boys)": 219, + "pct_boys": 219, + "% sum__num": 0.00019451710462622073, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00033890488843220124 + }, + { + "__timestamp": 63072000000, + "state": "PA", + "gender": "girl", + "name": "Crystal", + "sum__num": 255, + "SUM(num_girls)": 255, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00022649251908532552, + "% SUM(num_girls)": 0.0005316199188602069, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "NJ", + "gender": "girl", + "name": "Christina", + "sum__num": 562, + "SUM(num_girls)": 562, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004991717479449134, + "% SUM(num_girls)": 0.0011716486054879854, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "FL", + "gender": "girl", + "name": "Cheryl", + "sum__num": 201, + "SUM(num_girls)": 201, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00017852939739666833, + "% SUM(num_girls)": 0.0004190415831015748, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "MI", + "gender": "boy", + "name": "Jordan", + "sum__num": 803, + "SUM(num_girls)": 0, + "SUM(num_boys)": 803, + "pct_boys": 803, + "% sum__num": 0.000713229383629476, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012426512575847378 + }, + { + "__timestamp": 252460800000, + "state": "PA", + "gender": "girl", + "name": "Julie", + "sum__num": 485, + "SUM(num_girls)": 485, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00043077988924071714, + "% SUM(num_girls)": 0.0010111202378321582, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "OH", + "gender": "girl", + "name": "Sophia", + "sum__num": 387, + "SUM(num_girls)": 387, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00034373570543537636, + "% SUM(num_girls)": 0.0008068114062701964, + "% pct_boys": 0 + }, + { + "__timestamp": -157766400000, + "state": "MA", + "gender": "girl", + "name": "Jacqueline", + "sum__num": 267, + "SUM(num_girls)": 267, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00023715099057169375, + "% SUM(num_girls)": 0.0005566373268065696, + "% pct_boys": 0 + }, + { + "__timestamp": -63158400000, + "state": "CA", + "gender": "girl", + "name": "Donna", + "sum__num": 756, + "SUM(num_girls)": 756, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006714837036412003, + "% SUM(num_girls)": 0.0015760967006208486, + "% pct_boys": 0 + }, + { + "__timestamp": 1104537600000, + "state": "PA", + "gender": "girl", + "name": "Grace", + "sum__num": 577, + "SUM(num_girls)": 577, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005124948373028738, + "% SUM(num_girls)": 0.0012029203654209386, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "MA", + "gender": "girl", + "name": "Donna", + "sum__num": 101, + "SUM(num_girls)": 101, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00008970880167693285, + "% SUM(num_girls)": 0.00021056318354855253, + "% pct_boys": 0 + }, + { + "__timestamp": 946684800000, + "state": "FL", + "gender": "girl", + "name": "Vanessa", + "sum__num": 259, + "SUM(num_girls)": 259, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00023004534291411492, + "% SUM(num_girls)": 0.0005399590548423277, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "FL", + "gender": "boy", + "name": "Joseph", + "sum__num": 1044, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1044, + "pct_boys": 1044, + "% sum__num": 0.0009272870193140385, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016156013859507676 + }, + { + "__timestamp": 915148800000, + "state": "NY", + "gender": "boy", + "name": "Andrew", + "sum__num": 1438, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1438, + "pct_boys": 1438, + "% sum__num": 0.0012772401664497965, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002225320682947513 + }, + { + "__timestamp": 1104537600000, + "state": "FL", + "gender": "boy", + "name": "Robert", + "sum__num": 609, + "SUM(num_girls)": 0, + "SUM(num_boys)": 609, + "pct_boys": 609, + "% sum__num": 0.0005409174279331891, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009424341418046144 + }, + { + "__timestamp": 599616000000, + "state": "CA", + "gender": "girl", + "name": "Amber", + "sum__num": 1488, + "SUM(num_girls)": 1488, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.001321650464309664, + "% SUM(num_girls)": 0.003102158585348972, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "other", + "gender": "girl", + "name": "Julie", + "sum__num": 182, + "SUM(num_girls)": 182, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001616534842099186, + "% SUM(num_girls)": 0.0003794306871865006, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "FL", + "gender": "boy", + "name": "Charles", + "sum__num": 686, + "SUM(num_girls)": 0, + "SUM(num_boys)": 686, + "pct_boys": 686, + "% sum__num": 0.0006093092866373855, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001061592481573014 + }, + { + "__timestamp": 1136073600000, + "state": "CA", + "gender": "girl", + "name": "Destiny", + "sum__num": 977, + "SUM(num_girls)": 977, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008677772201818157, + "% SUM(num_girls)": 0.002036833963633028, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "CA", + "gender": "girl", + "name": "Natalie", + "sum__num": 502, + "SUM(num_girls)": 502, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004458793905130722, + "% SUM(num_girls)": 0.001046561565756172, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "NJ", + "gender": "girl", + "name": "Jill", + "sum__num": 172, + "SUM(num_girls)": 172, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00015277142463794504, + "% SUM(num_girls)": 0.00035858284723119837, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "MA", + "gender": "girl", + "name": "Lauren", + "sum__num": 619, + "SUM(num_girls)": 619, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005497994875051627, + "% SUM(num_girls)": 0.0012904812932332081, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "OH", + "gender": "girl", + "name": "Barbara", + "sum__num": 190, + "SUM(num_girls)": 190, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00016875913186749743, + "% SUM(num_girls)": 0.0003961089591507424, + "% pct_boys": 0 + }, + { + "__timestamp": 441763200000, + "state": "NY", + "gender": "boy", + "name": "Christopher", + "sum__num": 4057, + "SUM(num_girls)": 0, + "SUM(num_boys)": 4057, + "pct_boys": 4057, + "% sum__num": 0.003603451568349669, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00627825174597918 + }, + { + "__timestamp": 852076800000, + "state": "TX", + "gender": "girl", + "name": "Leslie", + "sum__num": 513, + "SUM(num_girls)": 513, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004556496560422431, + "% SUM(num_girls)": 0.0010694941897070045, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "PA", + "gender": "girl", + "name": "Jennifer", + "sum__num": 394, + "SUM(num_girls)": 394, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00034995314713575786, + "% SUM(num_girls)": 0.0008214048942389079, + "% pct_boys": 0 + }, + { + "__timestamp": 662688000000, + "state": "OH", + "gender": "boy", + "name": "Phillip", + "sum__num": 171, + "SUM(num_girls)": 0, + "SUM(num_boys)": 171, + "pct_boys": 171, + "% sum__num": 0.0001518832186807477, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002646243649402119 + }, + { + "__timestamp": 504921600000, + "state": "MI", + "gender": "girl", + "name": "Cassandra", + "sum__num": 187, + "SUM(num_girls)": 187, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00016609451399590537, + "% SUM(num_girls)": 0.0003898546071641517, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "MI", + "gender": "girl", + "name": "Andrea", + "sum__num": 393, + "SUM(num_girls)": 393, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003490649411785605, + "% SUM(num_girls)": 0.0008193201102433777, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "OH", + "gender": "boy", + "name": "Kevin", + "sum__num": 924, + "SUM(num_girls)": 0, + "SUM(num_boys)": 924, + "pct_boys": 924, + "% sum__num": 0.000820702304450356, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014299000772207942 + }, + { + "__timestamp": 157766400000, + "state": "MA", + "gender": "boy", + "name": "Samuel", + "sum__num": 69, + "SUM(num_girls)": 0, + "SUM(num_boys)": 69, + "pct_boys": 69, + "% sum__num": 0.00006128621104661749, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00010677825251973463 + }, + { + "__timestamp": 0, + "state": "CA", + "gender": "boy", + "name": "Ronald", + "sum__num": 1181, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1181, + "pct_boys": 1181, + "% sum__num": 0.0010489712354500762, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018276103800841537 + }, + { + "__timestamp": 1104537600000, + "state": "other", + "gender": "boy", + "name": "Luke", + "sum__num": 4823, + "SUM(num_girls)": 0, + "SUM(num_boys)": 4823, + "pct_boys": 4823, + "% sum__num": 0.004283817331562843, + "% SUM(num_girls)": 0, + "% pct_boys": 0.007463645100038842 + }, + { + "__timestamp": 631152000000, + "state": "TX", + "gender": "boy", + "name": "Adrian", + "sum__num": 704, + "SUM(num_girls)": 0, + "SUM(num_boys)": 704, + "pct_boys": 704, + "% sum__num": 0.0006252969938669379, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0010894476778825098 + }, + { + "__timestamp": 662688000000, + "state": "NJ", + "gender": "girl", + "name": "Jasmine", + "sum__num": 299, + "SUM(num_girls)": 299, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002655735812020091, + "% SUM(num_girls)": 0.0006233504146635367, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "TX", + "gender": "girl", + "name": "Jessica", + "sum__num": 876, + "SUM(num_girls)": 876, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007780684185048829, + "% SUM(num_girls)": 0.0018262707800844754, + "% pct_boys": 0 + }, + { + "__timestamp": 788918400000, + "state": "other", + "gender": "boy", + "name": "Jonathan", + "sum__num": 7071, + "SUM(num_girls)": 0, + "SUM(num_boys)": 7071, + "pct_boys": 7071, + "% sum__num": 0.006280504323342497, + "% SUM(num_girls)": 0, + "% pct_boys": 0.010942449616913675 + }, + { + "__timestamp": 567993600000, + "state": "TX", + "gender": "girl", + "name": "Samantha", + "sum__num": 1325, + "SUM(num_girls)": 1325, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0011768728932864954, + "% SUM(num_girls)": 0.0027623387940775455, + "% pct_boys": 0 + }, + { + "__timestamp": 1136073600000, + "state": "NY", + "gender": "boy", + "name": "Noah", + "sum__num": 670, + "SUM(num_girls)": 0, + "SUM(num_boys)": 670, + "pct_boys": 670, + "% sum__num": 0.0005950979913222278, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001036832307075684 + }, + { + "__timestamp": -63158400000, + "state": "NY", + "gender": "girl", + "name": "Nancy", + "sum__num": 1162, + "SUM(num_girls)": 1162, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010320953222633265, + "% SUM(num_girls)": 0.002422519002806119, + "% pct_boys": 0 + }, + { + "__timestamp": 536457600000, + "state": "FL", + "gender": "boy", + "name": "Shane", + "sum__num": 237, + "SUM(num_girls)": 0, + "SUM(num_boys)": 237, + "pct_boys": 237, + "% sum__num": 0.00021050481185577312, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003667600847416972 + }, + { + "__timestamp": 31536000000, + "state": "NJ", + "gender": "boy", + "name": "Frank", + "sum__num": 386, + "SUM(num_girls)": 0, + "SUM(num_boys)": 386, + "pct_boys": 386, + "% sum__num": 0.000342847499478179, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005973392097480807 + }, + { + "__timestamp": 126230400000, + "state": "FL", + "gender": "boy", + "name": "George", + "sum__num": 251, + "SUM(num_girls)": 0, + "SUM(num_boys)": 251, + "pct_boys": 251, + "% sum__num": 0.0002229396952565361, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00038842523742686075 + }, + { + "__timestamp": 94694400000, + "state": "OH", + "gender": "girl", + "name": "April", + "sum__num": 427, + "SUM(num_girls)": 427, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00037926394372327055, + "% SUM(num_girls)": 0.0008902027660914053, + "% pct_boys": 0 + }, + { + "__timestamp": 252460800000, + "state": "NJ", + "gender": "boy", + "name": "Frank", + "sum__num": 237, + "SUM(num_girls)": 0, + "SUM(num_boys)": 237, + "pct_boys": 237, + "% sum__num": 0.00021050481185577312, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003667600847416972 + }, + { + "__timestamp": 473385600000, + "state": "FL", + "gender": "boy", + "name": "Stephen", + "sum__num": 547, + "SUM(num_girls)": 0, + "SUM(num_boys)": 547, + "pct_boys": 547, + "% sum__num": 0.00048584865858695314, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0008464884656274616 + }, + { + "__timestamp": 347155200000, + "state": "other", + "gender": "girl", + "name": "Christina", + "sum__num": 6040, + "SUM(num_girls)": 6040, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.005364763981472024, + "% SUM(num_girls)": 0.012592095333002547, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "TX", + "gender": "boy", + "name": "Jose", + "sum__num": 2038, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2038, + "pct_boys": 2038, + "% sum__num": 0.0018101637407682094, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0031538272265973794 + }, + { + "__timestamp": -157766400000, + "state": "IL", + "gender": "boy", + "name": "Stephen", + "sum__num": 624, + "SUM(num_girls)": 0, + "SUM(num_boys)": 624, + "pct_boys": 624, + "% sum__num": 0.0005542405172911495, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000965646805395861 + }, + { + "__timestamp": 820454400000, + "state": "PA", + "gender": "girl", + "name": "Jasmine", + "sum__num": 217, + "SUM(num_girls)": 217, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019274069271182603, + "% SUM(num_girls)": 0.0004523981270300584, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "PA", + "gender": "boy", + "name": "Aaron", + "sum__num": 205, + "SUM(num_girls)": 0, + "SUM(num_boys)": 205, + "pct_boys": 205, + "% sum__num": 0.00018208222122545776, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00031723973574703765 + }, + { + "__timestamp": 189302400000, + "state": "IL", + "gender": "boy", + "name": "Sean", + "sum__num": 415, + "SUM(num_girls)": 0, + "SUM(num_boys)": 415, + "pct_boys": 415, + "% sum__num": 0.0003686054722369023, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006422170260244909 + }, + { + "__timestamp": 0, + "state": "FL", + "gender": "girl", + "name": "Teresa", + "sum__num": 335, + "SUM(num_girls)": 335, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002975489956611139, + "% SUM(num_girls)": 0.0006984026385026248, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "TX", + "gender": "girl", + "name": "Natalie", + "sum__num": 738, + "SUM(num_girls)": 738, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006554959964116479, + "% SUM(num_girls)": 0.0015385705887013047, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "PA", + "gender": "boy", + "name": "Raymond", + "sum__num": 279, + "SUM(num_girls)": 0, + "SUM(num_boys)": 279, + "pct_boys": 279, + "% sum__num": 0.00024780946205806204, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00043175554279718787 + }, + { + "__timestamp": 189302400000, + "state": "MI", + "gender": "boy", + "name": "Jonathan", + "sum__num": 351, + "SUM(num_girls)": 0, + "SUM(num_boys)": 351, + "pct_boys": 351, + "% sum__num": 0.00031176029097627157, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005431763280351719 + }, + { + "__timestamp": 0, + "state": "IL", + "gender": "girl", + "name": "Tina", + "sum__num": 740, + "SUM(num_girls)": 740, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006572724083260427, + "% SUM(num_girls)": 0.0015427401566923652, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "IL", + "gender": "girl", + "name": "Julie", + "sum__num": 1201, + "SUM(num_girls)": 1201, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010667353545940233, + "% SUM(num_girls)": 0.0025038255786317977, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "other", + "gender": "boy", + "name": "Jared", + "sum__num": 1836, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1836, + "pct_boys": 1836, + "% sum__num": 0.0016307461374143436, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0028412300235685912 + }, + { + "__timestamp": 504921600000, + "state": "other", + "gender": "girl", + "name": "Allison", + "sum__num": 3566, + "SUM(num_girls)": 3566, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.003167342443365768, + "% SUM(num_girls)": 0.007434339728060776, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "NY", + "gender": "boy", + "name": "Matthew", + "sum__num": 2739, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2739, + "pct_boys": 2739, + "% sum__num": 0.002432796116763555, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00423863237176164 + }, + { + "__timestamp": 725846400000, + "state": "NJ", + "gender": "boy", + "name": "Richard", + "sum__num": 357, + "SUM(num_girls)": 0, + "SUM(num_boys)": 357, + "pct_boys": 357, + "% sum__num": 0.0003170895267194557, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005524613934716705 + }, + { + "__timestamp": 157766400000, + "state": "NJ", + "gender": "girl", + "name": "Stephanie", + "sum__num": 328, + "SUM(num_girls)": 328, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002913315539607324, + "% SUM(num_girls)": 0.0006838091505339132, + "% pct_boys": 0 + }, + { + "__timestamp": -126230400000, + "state": "OH", + "gender": "girl", + "name": "Brenda", + "sum__num": 714, + "SUM(num_girls)": 714, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0006341790534389114, + "% SUM(num_girls)": 0.0014885357728085793, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "NY", + "gender": "boy", + "name": "Stephen", + "sum__num": 715, + "SUM(num_girls)": 0, + "SUM(num_boys)": 715, + "pct_boys": 715, + "% sum__num": 0.0006350672593961088, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011064702978494242 + }, + { + "__timestamp": 94694400000, + "state": "NY", + "gender": "boy", + "name": "Paul", + "sum__num": 1234, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1234, + "pct_boys": 1234, + "% sum__num": 0.001096046151181536, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0019096284581065586 + }, + { + "__timestamp": 1167609600000, + "state": "NJ", + "gender": "boy", + "name": "Edward", + "sum__num": 126, + "SUM(num_girls)": 0, + "SUM(num_boys)": 126, + "pct_boys": 126, + "% sum__num": 0.00011191395060686673, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00019498637416647194 + }, + { + "__timestamp": 536457600000, + "state": "MA", + "gender": "girl", + "name": "Tiffany", + "sum__num": 166, + "SUM(num_girls)": 166, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001474421888947609, + "% SUM(num_girls)": 0.00034607414325801703, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "OH", + "gender": "boy", + "name": "Kyle", + "sum__num": 1154, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1154, + "pct_boys": 1154, + "% sum__num": 0.0010249896746057476, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017858275856199096 + }, + { + "__timestamp": 315532800000, + "state": "NY", + "gender": "girl", + "name": "Brooke", + "sum__num": 242, + "SUM(num_girls)": 242, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002149458416417599, + "% SUM(num_girls)": 0.000504517726918314, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "NY", + "gender": "girl", + "name": "Lisa", + "sum__num": 699, + "SUM(num_girls)": 699, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000620855964080951, + "% SUM(num_girls)": 0.001457264012875626, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "IL", + "gender": "boy", + "name": "Paul", + "sum__num": 596, + "SUM(num_girls)": 0, + "SUM(num_boys)": 596, + "pct_boys": 596, + "% sum__num": 0.0005293707504896235, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000922316500025534 + }, + { + "__timestamp": 820454400000, + "state": "TX", + "gender": "girl", + "name": "Jennifer", + "sum__num": 1258, + "SUM(num_girls)": 1258, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0011173630941542724, + "% SUM(num_girls)": 0.0026226582663770206, + "% pct_boys": 0 + }, + { + "__timestamp": 504921600000, + "state": "other", + "gender": "boy", + "name": "Carlos", + "sum__num": 323, + "SUM(num_girls)": 0, + "SUM(num_boys)": 323, + "pct_boys": 323, + "% sum__num": 0.00028689052417474564, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004998460226648447 + }, + { + "__timestamp": 883612800000, + "state": "PA", + "gender": "boy", + "name": "Richard", + "sum__num": 299, + "SUM(num_girls)": 0, + "SUM(num_boys)": 299, + "pct_boys": 299, + "% sum__num": 0.0002655735812020091, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00046270576091885006 + }, + { + "__timestamp": 441763200000, + "state": "NJ", + "gender": "boy", + "name": "Jordan", + "sum__num": 79, + "SUM(num_girls)": 0, + "SUM(num_boys)": 79, + "pct_boys": 79, + "% sum__num": 0.00007016827061859104, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00012225336158056574 + }, + { + "__timestamp": 694224000000, + "state": "TX", + "gender": "boy", + "name": "Cody", + "sum__num": 1399, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1399, + "pct_boys": 1399, + "% sum__num": 0.0012426001341190995, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0021649677576102717 + }, + { + "__timestamp": -94694400000, + "state": "MI", + "gender": "girl", + "name": "Debra", + "sum__num": 454, + "SUM(num_girls)": 454, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0004032455045675991, + "% SUM(num_girls)": 0.0009464919339707213, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "OH", + "gender": "boy", + "name": "Dustin", + "sum__num": 171, + "SUM(num_girls)": 0, + "SUM(num_boys)": 171, + "pct_boys": 171, + "% sum__num": 0.0001518832186807477, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002646243649402119 + }, + { + "__timestamp": 915148800000, + "state": "other", + "gender": "boy", + "name": "Samuel", + "sum__num": 7321, + "SUM(num_girls)": 0, + "SUM(num_boys)": 7321, + "pct_boys": 7321, + "% sum__num": 0.006502555812641835, + "% SUM(num_girls)": 0, + "% pct_boys": 0.011329327343434453 + }, + { + "__timestamp": 473385600000, + "state": "OH", + "gender": "girl", + "name": "Lindsey", + "sum__num": 463, + "SUM(num_girls)": 463, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00041123935818237535, + "% SUM(num_girls)": 0.0009652549899304933, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "MA", + "gender": "girl", + "name": "Michelle", + "sum__num": 94, + "SUM(num_girls)": 94, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00008349135997655137, + "% SUM(num_girls)": 0.00019596969557984098, + "% pct_boys": 0 + }, + { + "__timestamp": 631152000000, + "state": "CA", + "gender": "boy", + "name": "Paul", + "sum__num": 1144, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1144, + "pct_boys": 1144, + "% sum__num": 0.001016107615033774, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0017703524765590787 + }, + { + "__timestamp": 347155200000, + "state": "IL", + "gender": "boy", + "name": "Dennis", + "sum__num": 195, + "SUM(num_girls)": 0, + "SUM(num_boys)": 195, + "pct_boys": 195, + "% sum__num": 0.0001732001616534842, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00030176462668620656 + }, + { + "__timestamp": 852076800000, + "state": "MA", + "gender": "girl", + "name": "Kathryn", + "sum__num": 149, + "SUM(num_girls)": 149, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013234268762240587, + "% SUM(num_girls)": 0.00031063281533400325, + "% pct_boys": 0 + }, + { + "__timestamp": 315532800000, + "state": "FL", + "gender": "girl", + "name": "Robin", + "sum__num": 114, + "SUM(num_girls)": 114, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00010125547912049846, + "% SUM(num_girls)": 0.00023766537549044543, + "% pct_boys": 0 + }, + { + "__timestamp": -94694400000, + "state": "MI", + "gender": "girl", + "name": "Kimberly", + "sum__num": 1994, + "SUM(num_girls)": 1994, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0017710826786515258, + "% SUM(num_girls)": 0.004157059287087265, + "% pct_boys": 0 + }, + { + "__timestamp": 220924800000, + "state": "FL", + "gender": "girl", + "name": "Erica", + "sum__num": 199, + "SUM(num_girls)": 199, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00017675298548227363, + "% SUM(num_girls)": 0.0004148720151105144, + "% pct_boys": 0 + }, + { + "__timestamp": 126230400000, + "state": "TX", + "gender": "girl", + "name": "Christine", + "sum__num": 390, + "SUM(num_girls)": 390, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0003464003233069684, + "% SUM(num_girls)": 0.000813065758256787, + "% pct_boys": 0 + }, + { + "__timestamp": 347155200000, + "state": "other", + "gender": "girl", + "name": "Paula", + "sum__num": 13, + "SUM(num_girls)": 13, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.000011546677443565614, + "% SUM(num_girls)": 0.0000271021919418929, + "% pct_boys": 0 + }, + { + "__timestamp": 63072000000, + "state": "other", + "gender": "girl", + "name": "Donna", + "sum__num": 2931, + "SUM(num_girls)": 2931, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0026033316605454473, + "% SUM(num_girls)": 0.006110501890899084, + "% pct_boys": 0 + }, + { + "__timestamp": 1072915200000, + "state": "CA", + "gender": "girl", + "name": "Kayla", + "sum__num": 1145, + "SUM(num_girls)": 1145, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0010169958209909713, + "% SUM(num_girls)": 0.0023870776748821055, + "% pct_boys": 0 + }, + { + "__timestamp": 189302400000, + "state": "OH", + "gender": "girl", + "name": "Nicole", + "sum__num": 836, + "SUM(num_girls)": 836, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007425401802169888, + "% SUM(num_girls)": 0.0017428794202632666, + "% pct_boys": 0 + }, + { + "__timestamp": 694224000000, + "state": "NJ", + "gender": "girl", + "name": "Erin", + "sum__num": 249, + "SUM(num_girls)": 249, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00022116328334214139, + "% SUM(num_girls)": 0.0005191112148870255, + "% pct_boys": 0 + }, + { + "__timestamp": 1009843200000, + "state": "other", + "gender": "boy", + "name": "Scott", + "sum__num": 37, + "SUM(num_girls)": 0, + "SUM(num_boys)": 37, + "pct_boys": 37, + "% sum__num": 0.000032863620416302134, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000057257903525075095 + }, + { + "__timestamp": 347155200000, + "state": "NY", + "gender": "boy", + "name": "Miguel", + "sum__num": 234, + "SUM(num_girls)": 0, + "SUM(num_boys)": 234, + "pct_boys": 234, + "% sum__num": 0.00020784019398418106, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0003621175520234479 + }, + { + "__timestamp": -94694400000, + "state": "CA", + "gender": "girl", + "name": "Heather", + "sum__num": 532, + "SUM(num_girls)": 532, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00047252556922899283, + "% SUM(num_girls)": 0.0011091050856220786, + "% pct_boys": 0 + }, + { + "__timestamp": 283996800000, + "state": "OH", + "gender": "girl", + "name": "Valerie", + "sum__num": 156, + "SUM(num_girls)": 156, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00013856012932278737, + "% SUM(num_girls)": 0.00032522630330271483, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "FL", + "gender": "boy", + "name": "Alex", + "sum__num": 321, + "SUM(num_girls)": 0, + "SUM(num_boys)": 321, + "pct_boys": 321, + "% sum__num": 0.0002851141122603509, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0004967510008526785 + }, + { + "__timestamp": -157766400000, + "state": "NJ", + "gender": "boy", + "name": "William", + "sum__num": 1636, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1636, + "pct_boys": 1636, + "% sum__num": 0.0014531049459748726, + "% SUM(num_girls)": 0, + "% pct_boys": 0.002531727842351969 + }, + { + "__timestamp": 883612800000, + "state": "IL", + "gender": "girl", + "name": "Rachel", + "sum__num": 539, + "SUM(num_girls)": 539, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00047874301092937433, + "% SUM(num_girls)": 0.0011236985735907903, + "% pct_boys": 0 + }, + { + "__timestamp": 157766400000, + "state": "CA", + "gender": "boy", + "name": "John", + "sum__num": 2839, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2839, + "pct_boys": 2839, + "% sum__num": 0.0025216167124832906, + "% SUM(num_girls)": 0, + "% pct_boys": 0.004393383462369951 + }, + { + "__timestamp": 94694400000, + "state": "PA", + "gender": "girl", + "name": "Rachel", + "sum__num": 273, + "SUM(num_girls)": 273, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00024248022631487789, + "% SUM(num_girls)": 0.0005691460307797509, + "% pct_boys": 0 + }, + { + "__timestamp": 915148800000, + "state": "other", + "gender": "boy", + "name": "Nathan", + "sum__num": 6199, + "SUM(num_girls)": 0, + "SUM(num_boys)": 6199, + "pct_boys": 6199, + "% sum__num": 0.005505988728666403, + "% SUM(num_girls)": 0, + "% pct_boys": 0.009593020106809203 + }, + { + "__timestamp": 631152000000, + "state": "MA", + "gender": "boy", + "name": "Nicholas", + "sum__num": 1036, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1036, + "pct_boys": 1036, + "% sum__num": 0.0009201813716564597, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0016032212987021027 + }, + { + "__timestamp": -126230400000, + "state": "NJ", + "gender": "girl", + "name": "Valerie", + "sum__num": 198, + "SUM(num_girls)": 198, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00017586477952507627, + "% SUM(num_girls)": 0.00041278723111498416, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "MI", + "gender": "girl", + "name": "Abigail", + "sum__num": 138, + "SUM(num_girls)": 138, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00012257242209323498, + "% SUM(num_girls)": 0.0002877001913831708, + "% pct_boys": 0 + }, + { + "__timestamp": 0, + "state": "other", + "gender": "boy", + "name": "Peter", + "sum__num": 2209, + "SUM(num_girls)": 0, + "SUM(num_boys)": 2209, + "pct_boys": 2209, + "% sum__num": 0.001962046959448957, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0034184515915375913 + }, + { + "__timestamp": 189302400000, + "state": "TX", + "gender": "girl", + "name": "Rebecca", + "sum__num": 839, + "SUM(num_girls)": 839, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0007452047980885808, + "% SUM(num_girls)": 0.001749133772249857, + "% pct_boys": 0 + }, + { + "__timestamp": 599616000000, + "state": "PA", + "gender": "boy", + "name": "Jonathan", + "sum__num": 915, + "SUM(num_girls)": 0, + "SUM(num_boys)": 915, + "pct_boys": 915, + "% sum__num": 0.0008127084508355798, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0014159724790660463 + }, + { + "__timestamp": 252460800000, + "state": "NY", + "gender": "boy", + "name": "Vincent", + "sum__num": 417, + "SUM(num_girls)": 0, + "SUM(num_boys)": 417, + "pct_boys": 417, + "% sum__num": 0.000370381884151297, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006453120478366572 + }, + { + "__timestamp": 852076800000, + "state": "NY", + "gender": "girl", + "name": "Angela", + "sum__num": 294, + "SUM(num_girls)": 294, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00026113255141602235, + "% SUM(num_girls)": 0.0006129264946858856, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "OH", + "gender": "boy", + "name": "Jonathan", + "sum__num": 437, + "SUM(num_girls)": 0, + "SUM(num_boys)": 437, + "pct_boys": 437, + "% sum__num": 0.0003881460032952441, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0006762622659583193 + }, + { + "__timestamp": 94694400000, + "state": "CA", + "gender": "girl", + "name": "Angela", + "sum__num": 1041, + "SUM(num_girls)": 1041, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009246224014424465, + "% SUM(num_girls)": 0.002170260139346962, + "% pct_boys": 0 + }, + { + "__timestamp": 94694400000, + "state": "NY", + "gender": "girl", + "name": "Karen", + "sum__num": 922, + "SUM(num_girls)": 922, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0008189258925359612, + "% SUM(num_girls)": 0.0019221708438788656, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "IL", + "gender": "girl", + "name": "Crystal", + "sum__num": 332, + "SUM(num_girls)": 332, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002948843777895218, + "% SUM(num_girls)": 0.0006921482865160341, + "% pct_boys": 0 + }, + { + "__timestamp": 31536000000, + "state": "OH", + "gender": "girl", + "name": "Kristin", + "sum__num": 223, + "SUM(num_girls)": 223, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00019806992845501016, + "% SUM(num_girls)": 0.00046490683100323976, + "% pct_boys": 0 + }, + { + "__timestamp": 883612800000, + "state": "other", + "gender": "boy", + "name": "Jesus", + "sum__num": 798, + "SUM(num_girls)": 0, + "SUM(num_boys)": 798, + "pct_boys": 798, + "% sum__num": 0.0007087883538434892, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0012349137030543223 + }, + { + "__timestamp": 1199145600000, + "state": "CA", + "gender": "girl", + "name": "Abigail", + "sum__num": 1560, + "SUM(num_girls)": 1560, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0013856012932278736, + "% SUM(num_girls)": 0.003252263033027148, + "% pct_boys": 0 + }, + { + "__timestamp": 978307200000, + "state": "NJ", + "gender": "boy", + "name": "Angel", + "sum__num": 172, + "SUM(num_girls)": 0, + "SUM(num_boys)": 172, + "pct_boys": 172, + "% sum__num": 0.00015277142463794504, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000266171875846295 + }, + { + "__timestamp": 1104537600000, + "state": "other", + "gender": "boy", + "name": "Nathan", + "sum__num": 6295, + "SUM(num_girls)": 0, + "SUM(num_boys)": 6295, + "pct_boys": 6295, + "% sum__num": 0.005591256500557349, + "% SUM(num_girls)": 0, + "% pct_boys": 0.009741581153793182 + }, + { + "__timestamp": 820454400000, + "state": "IL", + "gender": "boy", + "name": "Noah", + "sum__num": 361, + "SUM(num_girls)": 0, + "SUM(num_boys)": 361, + "pct_boys": 361, + "% sum__num": 0.0003206423505482451, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005586514370960029 + }, + { + "__timestamp": 504921600000, + "state": "CA", + "gender": "boy", + "name": "Shawn", + "sum__num": 594, + "SUM(num_girls)": 0, + "SUM(num_boys)": 594, + "pct_boys": 594, + "% sum__num": 0.0005275943385752288, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009192214782133677 + }, + { + "__timestamp": 220924800000, + "state": "TX", + "gender": "girl", + "name": "Holly", + "sum__num": 303, + "SUM(num_girls)": 303, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002691264050307985, + "% SUM(num_girls)": 0.0006316895506456576, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "PA", + "gender": "boy", + "name": "Mark", + "sum__num": 748, + "SUM(num_girls)": 0, + "SUM(num_boys)": 748, + "pct_boys": 748, + "% sum__num": 0.0006643780559836215, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0011575381577501667 + }, + { + "__timestamp": 631152000000, + "state": "NJ", + "gender": "boy", + "name": "Jeffrey", + "sum__num": 434, + "SUM(num_girls)": 0, + "SUM(num_boys)": 434, + "pct_boys": 434, + "% sum__num": 0.00038548138542365205, + "% SUM(num_girls)": 0, + "% pct_boys": 0.00067161973324007 + }, + { + "__timestamp": 820454400000, + "state": "OH", + "gender": "girl", + "name": "Sydney", + "sum__num": 362, + "SUM(num_girls)": 362, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00032153055650544247, + "% SUM(num_girls)": 0.0007546918063819408, + "% pct_boys": 0 + }, + { + "__timestamp": 94694400000, + "state": "MA", + "gender": "girl", + "name": "Tara", + "sum__num": 245, + "SUM(num_girls)": 245, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00021761045951335196, + "% SUM(num_girls)": 0.0005107720789049047, + "% pct_boys": 0 + }, + { + "__timestamp": 820454400000, + "state": "FL", + "gender": "boy", + "name": "David", + "sum__num": 1177, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1177, + "pct_boys": 1177, + "% sum__num": 0.0010454184116212868, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0018214203364598212 + }, + { + "__timestamp": 157766400000, + "state": "PA", + "gender": "girl", + "name": "Lisa", + "sum__num": 1050, + "SUM(num_girls)": 1050, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0009326162550572227, + "% SUM(num_girls)": 0.0021890231953067343, + "% pct_boys": 0 + }, + { + "__timestamp": 725846400000, + "state": "IL", + "gender": "girl", + "name": "Katie", + "sum__num": 202, + "SUM(num_girls)": 202, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0001794176033538657, + "% SUM(num_girls)": 0.00042112636709710507, + "% pct_boys": 0 + }, + { + "__timestamp": -31536000000, + "state": "MA", + "gender": "girl", + "name": "Elizabeth", + "sum__num": 590, + "SUM(num_girls)": 590, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0005240415147464394, + "% SUM(num_girls)": 0.0012300225573628316, + "% pct_boys": 0 + }, + { + "__timestamp": 567993600000, + "state": "MA", + "gender": "boy", + "name": "Paul", + "sum__num": 359, + "SUM(num_girls)": 0, + "SUM(num_boys)": 359, + "pct_boys": 359, + "% sum__num": 0.00031886593863385043, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005555564152838367 + }, + { + "__timestamp": 31536000000, + "state": "TX", + "gender": "boy", + "name": "Craig", + "sum__num": 384, + "SUM(num_girls)": 0, + "SUM(num_boys)": 384, + "pct_boys": 384, + "% sum__num": 0.00034107108756378427, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0005942441879359145 + }, + { + "__timestamp": 1136073600000, + "state": "FL", + "gender": "boy", + "name": "Matthew", + "sum__num": 1236, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1236, + "pct_boys": 1236, + "% sum__num": 0.0010978225630959306, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0019127234799187246 + }, + { + "__timestamp": 1167609600000, + "state": "OH", + "gender": "girl", + "name": "Sophia", + "sum__num": 620, + "SUM(num_girls)": 620, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.00055068769346236, + "% SUM(num_girls)": 0.0012925660772287384, + "% pct_boys": 0 + }, + { + "__timestamp": 1167609600000, + "state": "PA", + "gender": "boy", + "name": "Kyle", + "sum__num": 244, + "SUM(num_girls)": 0, + "SUM(num_boys)": 244, + "pct_boys": 244, + "% sum__num": 0.0002167222535561546, + "% SUM(num_girls)": 0, + "% pct_boys": 0.000377592661084279 + }, + { + "__timestamp": 725846400000, + "state": "PA", + "gender": "boy", + "name": "Timothy", + "sum__num": 696, + "SUM(num_girls)": 0, + "SUM(num_boys)": 696, + "pct_boys": 696, + "% sum__num": 0.0006181913462093591, + "% SUM(num_girls)": 0, + "% pct_boys": 0.001077067590633845 + }, + { + "__timestamp": 94694400000, + "state": "IL", + "gender": "boy", + "name": "Samuel", + "sum__num": 189, + "SUM(num_girls)": 0, + "SUM(num_boys)": 189, + "pct_boys": 189, + "% sum__num": 0.00016787092591030007, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002924795612497079 + }, + { + "__timestamp": 1041379200000, + "state": "other", + "gender": "boy", + "name": "Daniel", + "sum__num": 7609, + "SUM(num_girls)": 0, + "SUM(num_boys)": 7609, + "pct_boys": 7609, + "% sum__num": 0.006758359128314673, + "% SUM(num_girls)": 0, + "% pct_boys": 0.01177501048438639 + }, + { + "__timestamp": 157766400000, + "state": "other", + "gender": "boy", + "name": "Jacob", + "sum__num": 1423, + "SUM(num_girls)": 0, + "SUM(num_boys)": 1423, + "pct_boys": 1423, + "% sum__num": 0.001263917077091836, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0022021080193562665 + }, + { + "__timestamp": 915148800000, + "state": "MA", + "gender": "boy", + "name": "Luke", + "sum__num": 149, + "SUM(num_girls)": 0, + "SUM(num_boys)": 149, + "pct_boys": 149, + "% sum__num": 0.00013234268762240587, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0002305791250063835 + }, + { + "__timestamp": 1041379200000, + "state": "TX", + "gender": "boy", + "name": "Nathaniel", + "sum__num": 582, + "SUM(num_girls)": 0, + "SUM(num_boys)": 582, + "pct_boys": 582, + "% sum__num": 0.0005169358670888606, + "% SUM(num_girls)": 0, + "% pct_boys": 0.0009006513473403704 + }, + { + "__timestamp": 315532800000, + "state": "TX", + "gender": "girl", + "name": "Samantha", + "sum__num": 304, + "SUM(num_girls)": 304, + "SUM(num_boys)": 0, + "pct_boys": 0, + "% sum__num": 0.0002700146109879959, + "% SUM(num_girls)": 0.0006337743346411878, + "% pct_boys": 0 + } + ], + "applied_filters": [], + "rejected_filters": [] + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/testData.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/testData.ts new file mode 100644 index 000000000000..75d6f5f09ba1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-table/testData.ts @@ -0,0 +1,118 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + ChartDataResponseResult, + GenericDataType, +} from '@superset-ui/core/src'; +import { + TableChartFormData, + TableChartProps, +} from '@superset-ui/plugin-chart-table/src'; +// @ts-ignore +// eslint-disable-next-line import/extensions +import birthNamesJson from './birthNames.json'; + +export const birthNames = birthNamesJson as unknown as TableChartProps; + +export const basicFormData: TableChartFormData = { + datasource: '1__table', + viz_type: 'table', + align_pn: false, + color_pn: false, + include_search: true, + metrics: ['sum__num', 'MAX(ds)'], + order_desc: true, + page_length: 0, + percent_metrics: null, + show_cell_bars: true, + table_filter: false, + table_timestamp_format: 'smart_date', +}; + +export const basicData: Partial = { + colnames: ['name', 'sum__num', 'MAX(ds)', 'Abc.com'], + coltypes: [ + GenericDataType.STRING, + GenericDataType.NUMERIC, + GenericDataType.TEMPORAL, + GenericDataType.STRING, + ], + data: [ + { + name: 'Michael', + sum__num: 2467063, + 'MAX(ds)': '2008-01-01T00:00:00', + 'Abc.com': 110, + }, + { + name: 'Christopher', + sum__num: 1725265, + 'MAX(ds)': '2008-01-01T00:00:00', + 'Abc.com': 119, + }, + { + name: 'David', + sum__num: 1570516, + 'MAX(ds)': '2008-01-01T00:00:00', + 'Abc.com': 120, + }, + { + name: 'James', + sum__num: 1506025, + 'MAX(ds)': '2008-01-01T00:00:00', + 'Abc.com': 120, + }, + { + name: 'John', + sum__num: 1426074, + 'MAX(ds)': '2008-01-01T00:00:00', + 'Abc.com': 120, + }, + { + name: 'Matthew', + sum__num: 1355803, + 'MAX(ds)': '2008-01-01T00:00:00', + 'Abc.com': 120, + }, + { + name: 'Robert', + sum__num: 1314800, + 'MAX(ds)': '2008-01-01T00:00:00', + 'Abc.com': 120, + }, + { + name: 'Daniel', + sum__num: 1159354, + 'MAX(ds)': '2008-01-01T00:00:00', + 'Abc.com': 120, + }, + { + name: 'Joseph', + sum__num: 1114098, + 'MAX(ds)': '2008-01-01T00:00:00', + 'Abc.com': 120, + }, + { + name: 'William', + sum__num: 1113701, + 'MAX(ds)': '2008-01-01T00:00:00', + 'Abc.com': 120, + }, + ], +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/Stories.tsx new file mode 100644 index 000000000000..7267fd55c528 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/Stories.tsx @@ -0,0 +1,167 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart, getChartTransformPropsRegistry } from '@superset-ui/core'; +import { select, withKnobs } from '@storybook/addon-knobs'; +import { + WordCloudChartPlugin, + LegacyWordCloudChartPlugin, + WordCloudTransformProps, +} from '@superset-ui/plugin-chart-word-cloud'; +import { withResizableChartDemo } from '../../../shared/components/ResizableChartDemo'; +import data from './data'; + +new WordCloudChartPlugin().configure({ key: 'word-cloud2' }).register(); +new LegacyWordCloudChartPlugin() + .configure({ key: 'legacy-word-cloud2' }) + .register(); + +// Enable the new WordCloud Props to show case its full features +// if the control panel is updated to be able to pass formData in the new format. +getChartTransformPropsRegistry().registerValue( + 'word-cloud2', + WordCloudTransformProps, +); + +export default { + title: 'Chart Plugins/plugin-chart-word-cloud', + decorators: [withKnobs, withResizableChartDemo], +}; + +export const basic = ({ width, height }) => ( + +); + +export const encodesColorByWordLength = ({ width, height }) => ( + +); + +export const encodesFontByFirstLetter = ({ width, height }) => ( + +); + +export const legacyShim = ({ width, height }) => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/data.ts new file mode 100644 index 000000000000..47f721e15696 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-word-cloud/data.ts @@ -0,0 +1,422 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys */ +export default [ + { + name: 'Michael', + sum__num: 2467129, + }, + { + name: 'Christopher', + sum__num: 1725328, + }, + { + name: 'David', + sum__num: 1570516, + }, + { + name: 'James', + sum__num: 1506095, + }, + { + name: 'John', + sum__num: 1426074, + }, + { + name: 'Matthew', + sum__num: 1355877, + }, + { + name: 'Jennifer', + sum__num: 1335587, + }, + { + name: 'Robert', + sum__num: 1314800, + }, + { + name: 'Daniel', + sum__num: 1159354, + }, + { + name: 'Joseph', + sum__num: 1114167, + }, + { + name: 'William', + sum__num: 1113793, + }, + { + name: 'Joshua', + sum__num: 1073440, + }, + { + name: 'Jessica', + sum__num: 997179, + }, + { + name: 'Jason', + sum__num: 955817, + }, + { + name: 'Andrew', + sum__num: 926315, + }, + { + name: 'Anthony', + sum__num: 878978, + }, + { + name: 'Brian', + sum__num: 874868, + }, + { + name: 'Ryan', + sum__num: 816288, + }, + { + name: 'Kevin', + sum__num: 791084, + }, + { + name: 'Ashley', + sum__num: 789363, + }, + { + name: 'Thomas', + sum__num: 746589, + }, + { + name: 'Sarah', + sum__num: 744956, + }, + { + name: 'Nicholas', + sum__num: 728617, + }, + { + name: 'Amanda', + sum__num: 719676, + }, + { + name: 'Elizabeth', + sum__num: 712676, + }, + { + name: 'Justin', + sum__num: 704646, + }, + { + name: 'Jacob', + sum__num: 700755, + }, + { + name: 'Eric', + sum__num: 700518, + }, + { + name: 'Jonathan', + sum__num: 691938, + }, + { + name: 'Brandon', + sum__num: 682546, + }, + { + name: 'Melissa', + sum__num: 664648, + }, + { + name: 'Steven', + sum__num: 659750, + }, + { + name: 'Michelle', + sum__num: 659302, + }, + { + name: 'Richard', + sum__num: 652854, + }, + { + name: 'Kimberly', + sum__num: 647609, + }, + { + name: 'Timothy', + sum__num: 632770, + }, + { + name: 'Stephanie', + sum__num: 628138, + }, + { + name: 'Emily', + sum__num: 614741, + }, + { + name: 'Lisa', + sum__num: 606540, + }, + { + name: 'Mark', + sum__num: 589103, + }, + { + name: 'Jeffrey', + sum__num: 557562, + }, + { + name: 'Amy', + sum__num: 556835, + }, + { + name: 'Charles', + sum__num: 556124, + }, + { + name: 'Nicole', + sum__num: 545099, + }, + { + name: 'Tyler', + sum__num: 499814, + }, + { + name: 'Angela', + sum__num: 496228, + }, + { + name: 'Samantha', + sum__num: 484266, + }, + { + name: 'Benjamin', + sum__num: 482709, + }, + { + name: 'Heather', + sum__num: 481474, + }, + { + name: 'Scott', + sum__num: 469933, + }, + { + name: 'Rebecca', + sum__num: 466847, + }, + { + name: 'Adam', + sum__num: 459794, + }, + { + name: 'Mary', + sum__num: 459471, + }, + { + name: 'Zachary', + sum__num: 459381, + }, + { + name: 'Aaron', + sum__num: 453035, + }, + { + name: 'Rachel', + sum__num: 444351, + }, + { + name: 'Alexander', + sum__num: 438239, + }, + { + name: 'Paul', + sum__num: 411513, + }, + { + name: 'Kyle', + sum__num: 409644, + }, + { + name: 'Laura', + sum__num: 408963, + }, + { + name: 'Lauren', + sum__num: 403946, + }, + { + name: 'Megan', + sum__num: 402100, + }, + { + name: 'Nathan', + sum__num: 393793, + }, + { + name: 'Samuel', + sum__num: 390363, + }, + { + name: 'Christina', + sum__num: 387580, + }, + { + name: 'Kelly', + sum__num: 384611, + }, + { + name: 'Jordan', + sum__num: 382963, + }, + { + name: 'Patrick', + sum__num: 382673, + }, + { + name: 'Jeremy', + sum__num: 381171, + }, + { + name: 'Jose', + sum__num: 377759, + }, + { + name: 'Stephen', + sum__num: 374269, + }, + { + name: 'Sean', + sum__num: 366228, + }, + { + name: 'Kenneth', + sum__num: 361043, + }, + { + name: 'Gregory', + sum__num: 334166, + }, + { + name: 'Brittany', + sum__num: 333252, + }, + { + name: 'Amber', + sum__num: 331563, + }, + { + name: 'Katherine', + sum__num: 329873, + }, + { + name: 'Hannah', + sum__num: 329227, + }, + { + name: 'Taylor', + sum__num: 327602, + }, + { + name: 'Danielle', + sum__num: 322578, + }, + { + name: 'Andrea', + sum__num: 318796, + }, + { + name: 'Austin', + sum__num: 314059, + }, + { + name: 'Tiffany', + sum__num: 301753, + }, + { + name: 'Kayla', + sum__num: 291858, + }, + { + name: 'Christian', + sum__num: 288189, + }, + { + name: 'Maria', + sum__num: 287870, + }, + { + name: 'Alexis', + sum__num: 286496, + }, + { + name: 'Bryan', + sum__num: 282841, + }, + { + name: 'Victoria', + sum__num: 277371, + }, + { + name: 'Julie', + sum__num: 270542, + }, + { + name: 'Shannon', + sum__num: 266886, + }, + { + name: 'Christine', + sum__num: 264122, + }, + { + name: 'Sara', + sum__num: 263050, + }, + { + name: 'Erin', + sum__num: 262817, + }, + { + name: 'Madison', + sum__num: 262812, + }, + { + name: 'Crystal', + sum__num: 262697, + }, + { + name: 'Karen', + sum__num: 257961, + }, + { + name: 'Anna', + sum__num: 256136, + }, + { + name: 'Dylan', + sum__num: 250778, + }, + { + name: 'Edward', + sum__num: 248689, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/Stories.tsx new file mode 100644 index 000000000000..6fa4efb0728f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/Stories.tsx @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + BoxPlotChartPlugin, + LegacyBoxPlotChartPlugin, +} from '@superset-ui/preset-chart-xy'; +import { BOX_PLOT_PLUGIN_LEGACY_TYPE, BOX_PLOT_PLUGIN_TYPE } from './constants'; + +new LegacyBoxPlotChartPlugin() + .configure({ key: BOX_PLOT_PLUGIN_LEGACY_TYPE }) + .register(); +new BoxPlotChartPlugin().configure({ key: BOX_PLOT_PLUGIN_TYPE }).register(); + +export default { + title: 'Chart Plugins/preset-chart-xy/BoxPlot', +}; + +export { basic, horizontal } from './stories/Basic'; +export { legacy } from './stories/Legacy'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/constants.ts new file mode 100644 index 000000000000..ed761a222b22 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/constants.ts @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export const BOX_PLOT_PLUGIN_TYPE = 'v2-box-plot'; +export const BOX_PLOT_PLUGIN_LEGACY_TYPE = 'v2-box-plot/legacy'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/data.ts new file mode 100644 index 000000000000..367b4d2de31d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/data.ts @@ -0,0 +1,99 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { + label: 'East Asia & Pacific', + values: { + Q1: 1384725172.5, + Q2: 1717904169.0, + Q3: 2032724922.5, + whisker_high: 2240687901.0, + whisker_low: 1031863394.0, + outliers: [], + }, + }, + { + label: 'Europe & Central Asia', + values: { + Q1: 751386460.5, + Q2: 820716895.0, + Q3: 862814192.5, + whisker_high: 903095786.0, + whisker_low: 660881033.0, + outliers: [], + }, + }, + { + label: 'Latin America & Caribbean', + values: { + Q1: 313690832.5, + Q2: 421490233.0, + Q3: 529668114.5, + whisker_high: 626270167.0, + whisker_low: 220564224.0, + outliers: [], + }, + }, + { + label: 'Middle East & North Africa', + values: { + Q1: 152382756.5, + Q2: 232066828.0, + Q3: 318191071.5, + whisker_high: 417451428.0, + whisker_low: 105512645.0, + outliers: [], + }, + }, + { + label: 'North America', + values: { + Q1: 235506847.5, + Q2: 268896849.0, + Q3: 314553651.5, + whisker_high: 354462656.0, + whisker_low: 198624409.0, + outliers: [], + }, + }, + { + label: 'South Asia', + values: { + Q1: 772373036.5, + Q2: 1059570231.0, + Q3: 1398841234.0, + whisker_high: 1720976995.0, + whisker_low: 572036107.0, + outliers: [], + }, + }, + { + label: 'Sub-Saharan Africa', + values: { + Q1: 320037758.0, + Q2: 467337821.0, + Q3: 676768689.0, + whisker_high: 974315323.0, + whisker_low: 228268752.0, + outliers: [], + }, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Basic.tsx new file mode 100644 index 000000000000..32fc4661cc1f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Basic.tsx @@ -0,0 +1,109 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers, sort-keys */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import data from '../data'; + +export const basic = () => ( + +); + +export const horizontal = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Legacy.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Legacy.tsx new file mode 100644 index 000000000000..e7bcefbe8166 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/BoxPlot/stories/Legacy.tsx @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import data from '../data'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; + +export const legacy = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/Stories.tsx new file mode 100644 index 000000000000..8b20351c6b32 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/Stories.tsx @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + LineChartPlugin, + LegacyLineChartPlugin, +} from '@superset-ui/preset-chart-xy'; +import { withKnobs } from '@storybook/addon-knobs'; +import { LINE_PLUGIN_TYPE, LINE_PLUGIN_LEGACY_TYPE } from './constants'; + +new LegacyLineChartPlugin() + .configure({ key: LINE_PLUGIN_LEGACY_TYPE }) + .register(); +new LineChartPlugin().configure({ key: LINE_PLUGIN_TYPE }).register(); + +export default { + title: 'Chart Plugins/preset-chart-xy/Line', + decorators: [withKnobs], +}; + +export { default as basic } from './stories/basic'; +export { default as withLabelFlush } from './stories/flush'; +export { default as withMissingData } from './stories/missing'; +export { default as legacyShim } from './stories/legacy'; +export { default as withTimeShift } from './stories/timeShift'; +export { default as query } from './stories/query'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/constants.ts new file mode 100644 index 000000000000..e3ec6eda811d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/constants.ts @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export const LINE_PLUGIN_TYPE = 'v2-line'; +export const LINE_PLUGIN_LEGACY_TYPE = 'v2-line/legacy'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/data.js b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/data.js new file mode 100644 index 000000000000..66342a67426c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/data.js @@ -0,0 +1,242 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { x: -157766400000, y: 24703, name: 'Christopher' }, + { x: -126230400000, y: 27861, name: 'Christopher' }, + { x: -94694400000, y: 29436, name: 'Christopher' }, + { x: -63158400000, y: 31463, name: 'Christopher' }, + { x: -31536000000, y: 35718, name: 'Christopher' }, + { x: 0, y: 41758, name: 'Christopher' }, + { x: 31536000000, y: 48172, name: 'Christopher' }, + { x: 63072000000, y: 52092, name: 'Christopher' }, + { x: 94694400000, y: 48217, name: 'Christopher' }, + { x: 126230400000, y: 48476, name: 'Christopher' }, + { x: 157766400000, y: 46438, name: 'Christopher' }, + { x: 189302400000, y: 45086, name: 'Christopher' }, + { x: 220924800000, y: 46610, name: 'Christopher' }, + { x: 252460800000, y: 47107, name: 'Christopher' }, + { x: 283996800000, y: 50514, name: 'Christopher' }, + { x: 315532800000, y: 48969, name: 'Christopher' }, + { x: 347155200000, y: 50108, name: 'Christopher' }, + { x: 378691200000, y: 59055, name: 'Christopher' }, + { x: 410227200000, y: 59188, name: 'Christopher' }, + { x: 441763200000, y: 59859, name: 'Christopher' }, + { x: 473385600000, y: 59516, name: 'Christopher' }, + { x: 504921600000, y: 56633, name: 'Christopher' }, + { x: 536457600000, y: 54466, name: 'Christopher' }, + { x: 567993600000, y: 52996, name: 'Christopher' }, + { x: 599616000000, y: 53205, name: 'Christopher' }, + { x: 631152000000, y: 52322, name: 'Christopher' }, + { x: 662688000000, y: 47109, name: 'Christopher' }, + { x: 694224000000, y: 42470, name: 'Christopher' }, + { x: 725846400000, y: 38257, name: 'Christopher' }, + { x: 757382400000, y: 34823, name: 'Christopher' }, + { x: 788918400000, y: 32728, name: 'Christopher' }, + { x: 820454400000, y: 30988, name: 'Christopher' }, + { x: 852076800000, y: 29179, name: 'Christopher' }, + { x: 883612800000, y: 27083, name: 'Christopher' }, + { x: 915148800000, y: 25700, name: 'Christopher' }, + { x: 946684800000, y: 24959, name: 'Christopher' }, + { x: 978307200000, y: 23180, name: 'Christopher' }, + { x: 1009843200000, y: 21731, name: 'Christopher' }, + { x: 1041379200000, y: 20793, name: 'Christopher' }, + { x: 1072915200000, y: 19739, name: 'Christopher' }, + { x: 1104537600000, y: 19190, name: 'Christopher' }, + { x: 1136073600000, y: 19674, name: 'Christopher' }, + { x: 1167609600000, y: 19986, name: 'Christopher' }, + { x: 1199145600000, y: 17771, name: 'Christopher' }, + { x: -157766400000, y: 67646, name: 'David' }, + { x: -126230400000, y: 66207, name: 'David' }, + { x: -94694400000, y: 66581, name: 'David' }, + { x: -63158400000, y: 63531, name: 'David' }, + { x: -31536000000, y: 63502, name: 'David' }, + { x: 0, y: 61570, name: 'David' }, + { x: 31536000000, y: 52948, name: 'David' }, + { x: 63072000000, y: 46218, name: 'David' }, + { x: 94694400000, y: 40968, name: 'David' }, + { x: 126230400000, y: 41654, name: 'David' }, + { x: 157766400000, y: 39019, name: 'David' }, + { x: 189302400000, y: 39165, name: 'David' }, + { x: 220924800000, y: 40407, name: 'David' }, + { x: 252460800000, y: 40533, name: 'David' }, + { x: 283996800000, y: 41898, name: 'David' }, + { x: 315532800000, y: 41743, name: 'David' }, + { x: 347155200000, y: 40486, name: 'David' }, + { x: 378691200000, y: 40283, name: 'David' }, + { x: 410227200000, y: 39048, name: 'David' }, + { x: 441763200000, y: 38346, name: 'David' }, + { x: 473385600000, y: 38395, name: 'David' }, + { x: 504921600000, y: 37021, name: 'David' }, + { x: 536457600000, y: 36672, name: 'David' }, + { x: 567993600000, y: 35214, name: 'David' }, + { x: 599616000000, y: 35139, name: 'David' }, + { x: 631152000000, y: 33661, name: 'David' }, + { x: 662688000000, y: 30347, name: 'David' }, + { x: 694224000000, y: 28344, name: 'David' }, + { x: 725846400000, y: 26947, name: 'David' }, + { x: 757382400000, y: 24784, name: 'David' }, + { x: 788918400000, y: 22967, name: 'David' }, + { x: 820454400000, y: 22941, name: 'David' }, + { x: 852076800000, y: 21824, name: 'David' }, + { x: 883612800000, y: 20816, name: 'David' }, + { x: 915148800000, y: 20267, name: 'David' }, + { x: 946684800000, y: 19695, name: 'David' }, + { x: 978307200000, y: 19281, name: 'David' }, + { x: 1009843200000, y: 18600, name: 'David' }, + { x: 1041379200000, y: 18557, name: 'David' }, + { x: 1072915200000, y: 18315, name: 'David' }, + { x: 1104537600000, y: 18017, name: 'David' }, + { x: 1136073600000, y: 17510, name: 'David' }, + { x: 1167609600000, y: 17400, name: 'David' }, + { x: 1199145600000, y: 16049, name: 'David' }, + { x: -157766400000, y: 67506, name: 'James' }, + { x: -126230400000, y: 65036, name: 'James' }, + { x: -94694400000, y: 61554, name: 'James' }, + { x: -63158400000, y: 60584, name: 'James' }, + { x: -31536000000, y: 59824, name: 'James' }, + { x: 0, y: 61597, name: 'James' }, + { x: 31536000000, y: 54463, name: 'James' }, + { x: 63072000000, y: 46960, name: 'James' }, + { x: 94694400000, y: 42782, name: 'James' }, + { x: 126230400000, y: 41258, name: 'James' }, + { x: 157766400000, y: 39471, name: 'James' }, + { x: 189302400000, y: 38203, name: 'James' }, + { x: 220924800000, y: 39916, name: 'James' }, + { x: 252460800000, y: 39783, name: 'James' }, + { x: 283996800000, y: 39237, name: 'James' }, + { x: 315532800000, y: 39185, name: 'James' }, + { x: 347155200000, y: 38176, name: 'James' }, + { x: 378691200000, y: 38750, name: 'James' }, + { x: 410227200000, y: 36228, name: 'James' }, + { x: 441763200000, y: 35728, name: 'James' }, + { x: 473385600000, y: 35750, name: 'James' }, + { x: 504921600000, y: 33955, name: 'James' }, + { x: 536457600000, y: 32552, name: 'James' }, + { x: 567993600000, y: 32418, name: 'James' }, + { x: 599616000000, y: 32658, name: 'James' }, + { x: 631152000000, y: 32288, name: 'James' }, + { x: 662688000000, y: 30460, name: 'James' }, + { x: 694224000000, y: 28450, name: 'James' }, + { x: 725846400000, y: 26193, name: 'James' }, + { x: 757382400000, y: 24706, name: 'James' }, + { x: 788918400000, y: 22691, name: 'James' }, + { x: 820454400000, y: 21122, name: 'James' }, + { x: 852076800000, y: 20368, name: 'James' }, + { x: 883612800000, y: 19651, name: 'James' }, + { x: 915148800000, y: 18508, name: 'James' }, + { x: 946684800000, y: 17939, name: 'James' }, + { x: 978307200000, y: 17023, name: 'James' }, + { x: 1009843200000, y: 16905, name: 'James' }, + { x: 1041379200000, y: 16832, name: 'James' }, + { x: 1072915200000, y: 16459, name: 'James' }, + { x: 1104537600000, y: 16046, name: 'James' }, + { x: 1136073600000, y: 16139, name: 'James' }, + { x: 1167609600000, y: 15821, name: 'James' }, + { x: 1199145600000, y: 14920, name: 'James' }, + { x: -157766400000, y: 71390, name: 'John' }, + { x: -126230400000, y: 64858, name: 'John' }, + { x: -94694400000, y: 61480, name: 'John' }, + { x: -63158400000, y: 60754, name: 'John' }, + { x: -31536000000, y: 58644, name: 'John' }, + { x: 0, y: 58348, name: 'John' }, + { x: 31536000000, y: 51382, name: 'John' }, + { x: 63072000000, y: 43028, name: 'John' }, + { x: 94694400000, y: 39061, name: 'John' }, + { x: 126230400000, y: 37553, name: 'John' }, + { x: 157766400000, y: 34970, name: 'John' }, + { x: 189302400000, y: 33876, name: 'John' }, + { x: 220924800000, y: 34103, name: 'John' }, + { x: 252460800000, y: 33895, name: 'John' }, + { x: 283996800000, y: 35305, name: 'John' }, + { x: 315532800000, y: 35131, name: 'John' }, + { x: 347155200000, y: 34761, name: 'John' }, + { x: 378691200000, y: 34560, name: 'John' }, + { x: 410227200000, y: 33047, name: 'John' }, + { x: 441763200000, y: 32484, name: 'John' }, + { x: 473385600000, y: 31397, name: 'John' }, + { x: 504921600000, y: 30103, name: 'John' }, + { x: 536457600000, y: 29462, name: 'John' }, + { x: 567993600000, y: 29301, name: 'John' }, + { x: 599616000000, y: 29751, name: 'John' }, + { x: 631152000000, y: 29011, name: 'John' }, + { x: 662688000000, y: 27727, name: 'John' }, + { x: 694224000000, y: 26156, name: 'John' }, + { x: 725846400000, y: 24918, name: 'John' }, + { x: 757382400000, y: 24119, name: 'John' }, + { x: 788918400000, y: 23174, name: 'John' }, + { x: 820454400000, y: 22104, name: 'John' }, + { x: 852076800000, y: 21330, name: 'John' }, + { x: 883612800000, y: 20556, name: 'John' }, + { x: 915148800000, y: 20280, name: 'John' }, + { x: 946684800000, y: 20032, name: 'John' }, + { x: 978307200000, y: 18839, name: 'John' }, + { x: 1009843200000, y: 17400, name: 'John' }, + { x: 1041379200000, y: 17170, name: 'John' }, + { x: 1072915200000, y: 16381, name: 'John' }, + { x: 1104537600000, y: 15692, name: 'John' }, + { x: 1136073600000, y: 15083, name: 'John' }, + { x: 1167609600000, y: 14348, name: 'John' }, + { x: 1199145600000, y: 13110, name: 'John' }, + { x: -157766400000, y: 80812, name: 'Michael' }, + { x: -126230400000, y: 79709, name: 'Michael' }, + { x: -94694400000, y: 82204, name: 'Michael' }, + { x: -63158400000, y: 81785, name: 'Michael' }, + { x: -31536000000, y: 84893, name: 'Michael' }, + { x: 0, y: 85015, name: 'Michael' }, + { x: 31536000000, y: 77321, name: 'Michael' }, + { x: 63072000000, y: 71197, name: 'Michael' }, + { x: 94694400000, y: 67598, name: 'Michael' }, + { x: 126230400000, y: 67304, name: 'Michael' }, + { x: 157766400000, y: 68149, name: 'Michael' }, + { x: 189302400000, y: 66686, name: 'Michael' }, + { x: 220924800000, y: 67344, name: 'Michael' }, + { x: 252460800000, y: 66875, name: 'Michael' }, + { x: 283996800000, y: 67473, name: 'Michael' }, + { x: 315532800000, y: 68375, name: 'Michael' }, + { x: 347155200000, y: 68467, name: 'Michael' }, + { x: 378691200000, y: 67904, name: 'Michael' }, + { x: 410227200000, y: 67708, name: 'Michael' }, + { x: 441763200000, y: 67457, name: 'Michael' }, + { x: 473385600000, y: 64667, name: 'Michael' }, + { x: 504921600000, y: 63959, name: 'Michael' }, + { x: 536457600000, y: 63442, name: 'Michael' }, + { x: 567993600000, y: 63924, name: 'Michael' }, + { x: 599616000000, y: 65233, name: 'Michael' }, + { x: 631152000000, y: 65138, name: 'Michael' }, + { x: 662688000000, y: 60646, name: 'Michael' }, + { x: 694224000000, y: 54216, name: 'Michael' }, + { x: 725846400000, y: 49443, name: 'Michael' }, + { x: 757382400000, y: 44361, name: 'Michael' }, + { x: 788918400000, y: 41311, name: 'Michael' }, + { x: 820454400000, y: 38284, name: 'Michael' }, + { x: 852076800000, y: 37459, name: 'Michael' }, + { x: 883612800000, y: 36525, name: 'Michael' }, + { x: 915148800000, y: 33820, name: 'Michael' }, + { x: 946684800000, y: 31956, name: 'Michael' }, + { x: 978307200000, y: 29612, name: 'Michael' }, + { x: 1009843200000, y: 28156, name: 'Michael' }, + { x: 1041379200000, y: 27031, name: 'Michael' }, + { x: 1072915200000, y: 25418, name: 'Michael' }, + { x: 1104537600000, y: 23678, name: 'Michael' }, + { x: 1136073600000, y: 22498, name: 'Michael' }, + { x: 1167609600000, y: 21805, name: 'Michael' }, + { x: 1199145600000, y: 20271, name: 'Michael' }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/data2.js b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/data2.js new file mode 100644 index 000000000000..26be2718ae1a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/data2.js @@ -0,0 +1,110 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { x: -157766400000, y: 24703, snapshot: 'Last year' }, + { x: -126230400000, y: 27861, snapshot: 'Last year' }, + { x: -94694400000, y: 29436, snapshot: 'Last year' }, + { x: -63158400000, y: 31463, snapshot: 'Last year' }, + { x: -31536000000, y: 35718, snapshot: 'Last year' }, + { x: 0, y: 41758, snapshot: 'Last year' }, + { x: 31536000000, y: 48172, snapshot: 'Last year' }, + { x: 63072000000, y: 52092, snapshot: 'Last year' }, + { x: 94694400000, y: 48217, snapshot: 'Last year' }, + { x: 126230400000, y: 48476, snapshot: 'Last year' }, + { x: 157766400000, y: 46438, snapshot: 'Last year' }, + { x: 189302400000, y: 45086, snapshot: 'Last year' }, + { x: 220924800000, y: 46610, snapshot: 'Last year' }, + { x: 252460800000, y: 47107, snapshot: 'Last year' }, + { x: 283996800000, y: 50514, snapshot: 'Last year' }, + { x: 315532800000, y: 48969, snapshot: 'Last year' }, + { x: 347155200000, y: 50108, snapshot: 'Last year' }, + { x: 378691200000, y: 59055, snapshot: 'Last year' }, + { x: 410227200000, y: 59188, snapshot: 'Last year' }, + { x: 441763200000, y: 59859, snapshot: 'Last year' }, + { x: 473385600000, y: 59516, snapshot: 'Last year' }, + { x: 504921600000, y: 56633, snapshot: 'Last year' }, + { x: 536457600000, y: 54466, snapshot: 'Last year' }, + { x: 567993600000, y: 52996, snapshot: 'Last year' }, + { x: 599616000000, y: 53205, snapshot: 'Last year' }, + { x: 631152000000, y: 52322, snapshot: 'Last year' }, + { x: 662688000000, y: 47109, snapshot: 'Last year' }, + { x: 694224000000, y: 42470, snapshot: 'Last year' }, + { x: 725846400000, y: 38257, snapshot: 'Last year' }, + { x: 757382400000, y: 34823, snapshot: 'Last year' }, + { x: 788918400000, y: 32728, snapshot: 'Last year' }, + { x: 820454400000, y: 30988, snapshot: 'Last year' }, + { x: 852076800000, y: 29179, snapshot: 'Last year' }, + { x: 883612800000, y: 27083, snapshot: 'Last year' }, + { x: 915148800000, y: 25700, snapshot: 'Last year' }, + { x: 946684800000, y: 24959, snapshot: 'Last year' }, + { x: 978307200000, y: 23180, snapshot: 'Last year' }, + { x: 1009843200000, y: 21731, snapshot: 'Last year' }, + { x: 1041379200000, y: 20793, snapshot: 'Last year' }, + { x: 1072915200000, y: 19739, snapshot: 'Last year' }, + { x: 1104537600000, y: 19190, snapshot: 'Last year' }, + { x: 1136073600000, y: 19674, snapshot: 'Last year' }, + { x: 1167609600000, y: 19986, snapshot: 'Last year' }, + { x: 1199145600000, y: 17771, snapshot: 'Last year' }, + { x: -157766400000, y: 80812, snapshot: 'Current' }, + { x: -126230400000, y: 79709, snapshot: 'Current' }, + { x: -94694400000, y: 82204, snapshot: 'Current' }, + { x: -63158400000, y: 81785, snapshot: 'Current' }, + { x: -31536000000, y: 84893, snapshot: 'Current' }, + { x: 0, y: 85015, snapshot: 'Current' }, + { x: 31536000000, y: 77321, snapshot: 'Current' }, + { x: 63072000000, y: 71197, snapshot: 'Current' }, + { x: 94694400000, y: 67598, snapshot: 'Current' }, + { x: 126230400000, y: 67304, snapshot: 'Current' }, + { x: 157766400000, y: 68149, snapshot: 'Current' }, + { x: 189302400000, y: 66686, snapshot: 'Current' }, + { x: 220924800000, y: 67344, snapshot: 'Current' }, + { x: 252460800000, y: 66875, snapshot: 'Current' }, + { x: 283996800000, y: 67473, snapshot: 'Current' }, + { x: 315532800000, y: 68375, snapshot: 'Current' }, + { x: 347155200000, y: 68467, snapshot: 'Current' }, + { x: 378691200000, y: 67904, snapshot: 'Current' }, + { x: 410227200000, y: 67708, snapshot: 'Current' }, + { x: 441763200000, y: 67457, snapshot: 'Current' }, + { x: 473385600000, y: 64667, snapshot: 'Current' }, + { x: 504921600000, y: 63959, snapshot: 'Current' }, + { x: 536457600000, y: 63442, snapshot: 'Current' }, + { x: 567993600000, y: 63924, snapshot: 'Current' }, + { x: 599616000000, y: 65233, snapshot: 'Current' }, + { x: 631152000000, y: 65138, snapshot: 'Current' }, + { x: 662688000000, y: 60646, snapshot: 'Current' }, + { x: 694224000000, y: 54216, snapshot: 'Current' }, + { x: 725846400000, y: 49443, snapshot: 'Current' }, + { x: 757382400000, y: 44361, snapshot: 'Current' }, + { x: 788918400000, y: 41311, snapshot: 'Current' }, + { x: 820454400000, y: 38284, snapshot: 'Current' }, + { x: 852076800000, y: 37459, snapshot: 'Current' }, + { x: 883612800000, y: 36525, snapshot: 'Current' }, + { x: 915148800000, y: 33820, snapshot: 'Current' }, + { x: 946684800000, y: 31956, snapshot: 'Current' }, + { x: 978307200000, y: 29612, snapshot: 'Current' }, + { x: 1009843200000, y: 28156, snapshot: 'Current' }, + { x: 1041379200000, y: 27031, snapshot: 'Current' }, + { x: 1072915200000, y: 25418, snapshot: 'Current' }, + { x: 1104537600000, y: 23678, snapshot: 'Current' }, + { x: 1136073600000, y: 22498, snapshot: 'Current' }, + { x: 1167609600000, y: 21805, snapshot: 'Current' }, + { x: 1199145600000, y: 20271, snapshot: 'Current' }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/legacyData.js b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/legacyData.js new file mode 100644 index 000000000000..5d43d8e4bec2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/data/legacyData.js @@ -0,0 +1,927 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { + key: ['Christopher'], + values: [ + { + x: -157766400000.0, + y: 24703, + }, + { + x: -126230400000.0, + y: 27861, + }, + { + x: -94694400000.0, + y: 29436, + }, + { + x: -63158400000.0, + y: 31463, + }, + { + x: -31536000000.0, + y: 35718, + }, + { + x: 0.0, + y: 41758, + }, + { + x: 31536000000.0, + y: 48172, + }, + { + x: 63072000000.0, + y: 52092, + }, + { + x: 94694400000.0, + y: 48217, + }, + { + x: 126230400000.0, + y: 48476, + }, + { + x: 157766400000.0, + y: 46438, + }, + { + x: 189302400000.0, + y: 45086, + }, + { + x: 220924800000.0, + y: 46610, + }, + { + x: 252460800000.0, + y: 47107, + }, + { + x: 283996800000.0, + y: 50514, + }, + { + x: 315532800000.0, + y: 48969, + }, + { + x: 347155200000.0, + y: 50108, + }, + { + x: 378691200000.0, + y: 59055, + }, + { + x: 410227200000.0, + y: 59188, + }, + { + x: 441763200000.0, + y: 59859, + }, + { + x: 473385600000.0, + y: 59516, + }, + { + x: 504921600000.0, + y: 56633, + }, + { + x: 536457600000.0, + y: 54466, + }, + { + x: 567993600000.0, + y: 52996, + }, + { + x: 599616000000.0, + y: 53205, + }, + { + x: 631152000000.0, + y: 52322, + }, + { + x: 662688000000.0, + y: 47109, + }, + { + x: 694224000000.0, + y: 42470, + }, + { + x: 725846400000.0, + y: 38257, + }, + { + x: 757382400000.0, + y: 34823, + }, + { + x: 788918400000.0, + y: 32728, + }, + { + x: 820454400000.0, + y: 30988, + }, + { + x: 852076800000.0, + y: 29179, + }, + { + x: 883612800000.0, + y: 27083, + }, + { + x: 915148800000.0, + y: 25700, + }, + { + x: 946684800000.0, + y: 24959, + }, + { + x: 978307200000.0, + y: 23180, + }, + { + x: 1009843200000.0, + y: 21731, + }, + { + x: 1041379200000.0, + y: 20793, + }, + { + x: 1072915200000.0, + y: 19739, + }, + { + x: 1104537600000.0, + y: 19190, + }, + { + x: 1136073600000.0, + y: 19674, + }, + { + x: 1167609600000.0, + y: 19986, + }, + { + x: 1199145600000.0, + y: 17771, + }, + ], + }, + { + key: ['David'], + values: [ + { + x: -157766400000.0, + y: 67646, + }, + { + x: -126230400000.0, + y: 66207, + }, + { + x: -94694400000.0, + y: 66581, + }, + { + x: -63158400000.0, + y: 63531, + }, + { + x: -31536000000.0, + y: 63502, + }, + { + x: 0.0, + y: 61570, + }, + { + x: 31536000000.0, + y: 52948, + }, + { + x: 63072000000.0, + y: 46218, + }, + { + x: 94694400000.0, + y: 40968, + }, + { + x: 126230400000.0, + y: 41654, + }, + { + x: 157766400000.0, + y: 39019, + }, + { + x: 189302400000.0, + y: 39165, + }, + { + x: 220924800000.0, + y: 40407, + }, + { + x: 252460800000.0, + y: 40533, + }, + { + x: 283996800000.0, + y: 41898, + }, + { + x: 315532800000.0, + y: 41743, + }, + { + x: 347155200000.0, + y: 40486, + }, + { + x: 378691200000.0, + y: 40283, + }, + { + x: 410227200000.0, + y: 39048, + }, + { + x: 441763200000.0, + y: 38346, + }, + { + x: 473385600000.0, + y: 38395, + }, + { + x: 504921600000.0, + y: 37021, + }, + { + x: 536457600000.0, + y: 36672, + }, + { + x: 567993600000.0, + y: 35214, + }, + { + x: 599616000000.0, + y: 35139, + }, + { + x: 631152000000.0, + y: 33661, + }, + { + x: 662688000000.0, + y: 30347, + }, + { + x: 694224000000.0, + y: 28344, + }, + { + x: 725846400000.0, + y: 26947, + }, + { + x: 757382400000.0, + y: 24784, + }, + { + x: 788918400000.0, + y: 22967, + }, + { + x: 820454400000.0, + y: 22941, + }, + { + x: 852076800000.0, + y: 21824, + }, + { + x: 883612800000.0, + y: 20816, + }, + { + x: 915148800000.0, + y: 20267, + }, + { + x: 946684800000.0, + y: 19695, + }, + { + x: 978307200000.0, + y: 19281, + }, + { + x: 1009843200000.0, + y: 18600, + }, + { + x: 1041379200000.0, + y: 18557, + }, + { + x: 1072915200000.0, + y: 18315, + }, + { + x: 1104537600000.0, + y: 18017, + }, + { + x: 1136073600000.0, + y: 17510, + }, + { + x: 1167609600000.0, + y: 17400, + }, + { + x: 1199145600000.0, + y: 16049, + }, + ], + }, + { + key: ['James'], + values: [ + { + x: -157766400000.0, + y: 67506, + }, + { + x: -126230400000.0, + y: 65036, + }, + { + x: -94694400000.0, + y: 61554, + }, + { + x: -63158400000.0, + y: 60584, + }, + { + x: -31536000000.0, + y: 59824, + }, + { + x: 0.0, + y: 61597, + }, + { + x: 31536000000.0, + y: 54463, + }, + { + x: 63072000000.0, + y: 46960, + }, + { + x: 94694400000.0, + y: 42782, + }, + { + x: 126230400000.0, + y: 41258, + }, + { + x: 157766400000.0, + y: 39471, + }, + { + x: 189302400000.0, + y: 38203, + }, + { + x: 220924800000.0, + y: 39916, + }, + { + x: 252460800000.0, + y: 39783, + }, + { + x: 283996800000.0, + y: 39237, + }, + { + x: 315532800000.0, + y: 39185, + }, + { + x: 347155200000.0, + y: 38176, + }, + { + x: 378691200000.0, + y: 38750, + }, + { + x: 410227200000.0, + y: 36228, + }, + { + x: 441763200000.0, + y: 35728, + }, + { + x: 473385600000.0, + y: 35750, + }, + { + x: 504921600000.0, + y: 33955, + }, + { + x: 536457600000.0, + y: 32552, + }, + { + x: 567993600000.0, + y: 32418, + }, + { + x: 599616000000.0, + y: 32658, + }, + { + x: 631152000000.0, + y: 32288, + }, + { + x: 662688000000.0, + y: 30460, + }, + { + x: 694224000000.0, + y: 28450, + }, + { + x: 725846400000.0, + y: 26193, + }, + { + x: 757382400000.0, + y: 24706, + }, + { + x: 788918400000.0, + y: 22691, + }, + { + x: 820454400000.0, + y: 21122, + }, + { + x: 852076800000.0, + y: 20368, + }, + { + x: 883612800000.0, + y: 19651, + }, + { + x: 915148800000.0, + y: 18508, + }, + { + x: 946684800000.0, + y: 17939, + }, + { + x: 978307200000.0, + y: 17023, + }, + { + x: 1009843200000.0, + y: 16905, + }, + { + x: 1041379200000.0, + y: 16832, + }, + { + x: 1072915200000.0, + y: 16459, + }, + { + x: 1104537600000.0, + y: 16046, + }, + { + x: 1136073600000.0, + y: 16139, + }, + { + x: 1167609600000.0, + y: 15821, + }, + { + x: 1199145600000.0, + y: 14920, + }, + ], + }, + { + key: ['John'], + values: [ + { + x: -157766400000.0, + y: 71390, + }, + { + x: -126230400000.0, + y: 64858, + }, + { + x: -94694400000.0, + y: 61480, + }, + { + x: -63158400000.0, + y: 60754, + }, + { + x: -31536000000.0, + y: 58644, + }, + { + x: 0.0, + y: 58348, + }, + { + x: 31536000000.0, + y: 51382, + }, + { + x: 63072000000.0, + y: 43028, + }, + { + x: 94694400000.0, + y: 39061, + }, + { + x: 126230400000.0, + y: 37553, + }, + { + x: 157766400000.0, + y: 34970, + }, + { + x: 189302400000.0, + y: 33876, + }, + { + x: 220924800000.0, + y: 34103, + }, + { + x: 252460800000.0, + y: 33895, + }, + { + x: 283996800000.0, + y: 35305, + }, + { + x: 315532800000.0, + y: 35131, + }, + { + x: 347155200000.0, + y: 34761, + }, + { + x: 378691200000.0, + y: 34560, + }, + { + x: 410227200000.0, + y: 33047, + }, + { + x: 441763200000.0, + y: 32484, + }, + { + x: 473385600000.0, + y: 31397, + }, + { + x: 504921600000.0, + y: 30103, + }, + { + x: 536457600000.0, + y: 29462, + }, + { + x: 567993600000.0, + y: 29301, + }, + { + x: 599616000000.0, + y: 29751, + }, + { + x: 631152000000.0, + y: 29011, + }, + { + x: 662688000000.0, + y: 27727, + }, + { + x: 694224000000.0, + y: 26156, + }, + { + x: 725846400000.0, + y: 24918, + }, + { + x: 757382400000.0, + y: 24119, + }, + { + x: 788918400000.0, + y: 23174, + }, + { + x: 820454400000.0, + y: 22104, + }, + { + x: 852076800000.0, + y: 21330, + }, + { + x: 883612800000.0, + y: 20556, + }, + { + x: 915148800000.0, + y: 20280, + }, + { + x: 946684800000.0, + y: 20032, + }, + { + x: 978307200000.0, + y: 18839, + }, + { + x: 1009843200000.0, + y: 17400, + }, + { + x: 1041379200000.0, + y: 17170, + }, + { + x: 1072915200000.0, + y: 16381, + }, + { + x: 1104537600000.0, + y: 15692, + }, + { + x: 1136073600000.0, + y: 15083, + }, + { + x: 1167609600000.0, + y: 14348, + }, + { + x: 1199145600000.0, + y: 13110, + }, + ], + }, + { + key: ['Michael'], + values: [ + { + x: -157766400000.0, + y: 80812, + }, + { + x: -126230400000.0, + y: 79709, + }, + { + x: -94694400000.0, + y: 82204, + }, + { + x: -63158400000.0, + y: 81785, + }, + { + x: -31536000000.0, + y: 84893, + }, + { + x: 0.0, + y: 85015, + }, + { + x: 31536000000.0, + y: 77321, + }, + { + x: 63072000000.0, + y: 71197, + }, + { + x: 94694400000.0, + y: 67598, + }, + { + x: 126230400000.0, + y: 67304, + }, + { + x: 157766400000.0, + y: 68149, + }, + { + x: 189302400000.0, + y: 66686, + }, + { + x: 220924800000.0, + y: 67344, + }, + { + x: 252460800000.0, + y: 66875, + }, + { + x: 283996800000.0, + y: 67473, + }, + { + x: 315532800000.0, + y: 68375, + }, + { + x: 347155200000.0, + y: 68467, + }, + { + x: 378691200000.0, + y: 67904, + }, + { + x: 410227200000.0, + y: 67708, + }, + { + x: 441763200000.0, + y: 67457, + }, + { + x: 473385600000.0, + y: 64667, + }, + { + x: 504921600000.0, + y: 63959, + }, + { + x: 536457600000.0, + y: 63442, + }, + { + x: 567993600000.0, + y: 63924, + }, + { + x: 599616000000.0, + y: 65233, + }, + { + x: 631152000000.0, + y: 65138, + }, + { + x: 662688000000.0, + y: 60646, + }, + { + x: 694224000000.0, + y: 54216, + }, + { + x: 725846400000.0, + y: 49443, + }, + { + x: 757382400000.0, + y: 44361, + }, + { + x: 788918400000.0, + y: 41311, + }, + { + x: 820454400000.0, + y: 38284, + }, + { + x: 852076800000.0, + y: 37459, + }, + { + x: 883612800000.0, + y: 36525, + }, + { + x: 915148800000.0, + y: 33820, + }, + { + x: 946684800000.0, + y: 31956, + }, + { + x: 978307200000.0, + y: 29612, + }, + { + x: 1009843200000.0, + y: 28156, + }, + { + x: 1041379200000.0, + y: 27031, + }, + { + x: 1072915200000.0, + y: 25418, + }, + { + x: 1104537600000.0, + y: 23678, + }, + { + x: 1136073600000.0, + y: 22498, + }, + { + x: 1167609600000.0, + y: 21805, + }, + { + x: 1199145600000.0, + y: 20271, + }, + ], + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/basic.tsx new file mode 100644 index 000000000000..4659a5c88799 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/basic.tsx @@ -0,0 +1,84 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import { radios } from '@storybook/addon-knobs'; +import data from '../data/data'; +import { LINE_PLUGIN_TYPE } from '../constants'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; + +export default () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/flush.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/flush.tsx new file mode 100644 index 000000000000..aff3f5cfa84e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/flush.tsx @@ -0,0 +1,152 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import { radios } from '@storybook/addon-knobs'; +import rawData from '../data/data'; +import { LINE_PLUGIN_TYPE } from '../constants'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; + +const MIN_TIME = new Date(Date.UTC(1980, 0, 1)).getTime(); +const MAX_TIME = new Date(Date.UTC(2000, 1, 1)).getTime(); +const data = rawData.filter(({ x }) => x >= MIN_TIME && x <= MAX_TIME); + +export default () => ( + <> + + , + + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/legacy.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/legacy.tsx new file mode 100644 index 000000000000..4899e6465855 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/legacy.tsx @@ -0,0 +1,86 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import data from '../data/legacyData'; +import { LINE_PLUGIN_LEGACY_TYPE } from '../constants'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; + +export default () => ( + <> + + , + + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/missing.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/missing.tsx new file mode 100644 index 000000000000..04d96a3e5836 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/missing.tsx @@ -0,0 +1,75 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart, seedRandom } from '@superset-ui/core'; +import data from '../data/data'; +import { LINE_PLUGIN_TYPE } from '../constants'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; + +const missingData = data.map(({ y, ...rest }) => ({ + ...rest, + y: seedRandom() < 0.25 ? null : y, +})); + +const missing = () => ( + +); + +export default missing; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/query.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/query.tsx new file mode 100644 index 000000000000..bd0cbd5cb6ed --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/query.tsx @@ -0,0 +1,83 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { LINE_PLUGIN_TYPE, LINE_PLUGIN_LEGACY_TYPE } from '../constants'; +import createQueryStory from '../../../../../shared/components/createQueryStory'; + +export default createQueryStory({ + choices: { + 'Line Chart - Legacy API': { + chartType: LINE_PLUGIN_LEGACY_TYPE, + formData: { + datasource: '3__table', + viz_type: 'line', + url_params: {}, + granularity_sqla: 'ds', + time_grain_sqla: 'P1D', + time_range: '100 years ago : now', + metrics: ['sum__num'], + adhoc_filters: [], + groupby: [], + limit: 25, + row_limit: 50000, + }, + }, + 'Line Chart - /api/v1/query': { + chartType: LINE_PLUGIN_TYPE, + formData: { + viz_type: LINE_PLUGIN_TYPE, + datasource: '3__table', + granularity_sqla: 'ds', + time_grain_sqla: 'P1D', + time_range: '100 years ago : now', + metrics: ['sum__num'], + limit: 25, + row_limit: 50000, + encoding: { + x: { + field: '__timestamp', + type: 'temporal', + format: '%Y', + scale: { + type: 'time', + }, + axis: { + title: 'Time', + }, + }, + y: { + field: 'sum__num', + type: 'quantitative', + scale: { + type: 'linear', + }, + axis: { + title: 'Number of Babies', + }, + }, + stroke: { + field: 'gender', + type: 'nominal', + legend: true, + }, + }, + }, + }, + }, +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/timeShift.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/timeShift.tsx new file mode 100644 index 000000000000..fe6201bf0953 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/Line/stories/timeShift.tsx @@ -0,0 +1,97 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import data from '../data/data2'; +import { LINE_PLUGIN_TYPE } from '../constants'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; + +export default () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/Stories.tsx new file mode 100644 index 000000000000..ec3135e6d4ee --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/Stories.tsx @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + ScatterPlotChartPlugin, + LegacyScatterPlotChartPlugin, +} from '@superset-ui/preset-chart-xy'; +import { withKnobs } from '@storybook/addon-knobs'; +import { + SCATTER_PLOT_PLUGIN_TYPE, + SCATTER_PLOT_PLUGIN_LEGACY_TYPE, +} from './constants'; + +new LegacyScatterPlotChartPlugin() + .configure({ key: SCATTER_PLOT_PLUGIN_LEGACY_TYPE }) + .register(); +new ScatterPlotChartPlugin() + .configure({ key: SCATTER_PLOT_PLUGIN_TYPE }) + .register(); + +export default { + title: 'Chart Plugins/preset-chart-xy/ScatterPlot', + decorators: [withKnobs], +}; + +export { default as basic } from './stories/basic'; +export { default as bubble } from './stories/bubble'; +export { default as legacy } from './stories/legacy'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/constants.ts new file mode 100644 index 000000000000..3b1ffbf01f78 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/constants.ts @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export const SCATTER_PLOT_PLUGIN_TYPE = 'v2-scatter-plot'; +export const SCATTER_PLOT_PLUGIN_LEGACY_TYPE = 'v2-scatter-plot/legacy'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/data/data.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/data/data.ts new file mode 100644 index 000000000000..ee5856772a2b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/data/data.ts @@ -0,0 +1,197 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { + country_name: 'China', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 1344130000, + sum__SP_RUR_TOTL_ZS: 49.427, + sum__SP_DYN_LE00_IN: 75.042, + }, + { + country_name: 'Indonesia', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 244808254, + sum__SP_RUR_TOTL_ZS: 49.288, + sum__SP_DYN_LE00_IN: 70.3915609756, + }, + { + country_name: 'Japan', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 127817277, + sum__SP_RUR_TOTL_ZS: 8.752, + sum__SP_DYN_LE00_IN: 82.5912195122, + }, + { + country_name: 'Philippines', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 94501233, + sum__SP_RUR_TOTL_ZS: 54.983, + sum__SP_DYN_LE00_IN: 68.3914878049, + }, + { + country_name: 'Vietnam', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 87840000, + sum__SP_RUR_TOTL_ZS: 68.971, + sum__SP_DYN_LE00_IN: 75.457902439, + }, + { + country_name: 'Thailand', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 66902958, + sum__SP_RUR_TOTL_ZS: 54.606, + sum__SP_DYN_LE00_IN: 74.008902439, + }, + { + country_name: 'Myanmar', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 52125411, + sum__SP_RUR_TOTL_ZS: 68.065, + sum__SP_DYN_LE00_IN: 64.7612439024, + }, + { + country_name: 'India', + region: 'South Asia', + sum__SP_POP_TOTL: 1247446011, + sum__SP_RUR_TOTL_ZS: 68.724, + sum__SP_DYN_LE00_IN: 65.9584878049, + }, + { + country_name: 'Pakistan', + region: 'South Asia', + sum__SP_POP_TOTL: 173669648, + sum__SP_RUR_TOTL_ZS: 62.993, + sum__SP_DYN_LE00_IN: 66.2838780488, + }, + { + country_name: 'Bangladesh', + region: 'South Asia', + sum__SP_POP_TOTL: 153405612, + sum__SP_RUR_TOTL_ZS: 68.775, + sum__SP_DYN_LE00_IN: 69.891804878, + }, + { + country_name: 'United States', + region: 'North America', + sum__SP_POP_TOTL: 311721632, + sum__SP_RUR_TOTL_ZS: 19.06, + sum__SP_DYN_LE00_IN: 78.6414634146, + }, + { + country_name: 'Brazil', + region: 'Latin America & Caribbean', + sum__SP_POP_TOTL: 200517584, + sum__SP_RUR_TOTL_ZS: 15.377, + sum__SP_DYN_LE00_IN: 73.3473658537, + }, + { + country_name: 'Mexico', + region: 'Latin America & Caribbean', + sum__SP_POP_TOTL: 120365271, + sum__SP_RUR_TOTL_ZS: 21.882, + sum__SP_DYN_LE00_IN: 76.9141707317, + }, + { + country_name: 'Nigeria', + region: 'Sub-Saharan Africa', + sum__SP_POP_TOTL: 163770669, + sum__SP_RUR_TOTL_ZS: 55.638, + sum__SP_DYN_LE00_IN: 51.7102439024, + }, + { + country_name: 'Ethiopia', + region: 'Sub-Saharan Africa', + sum__SP_POP_TOTL: 89858696, + sum__SP_RUR_TOTL_ZS: 82.265, + sum__SP_DYN_LE00_IN: 62.2528536585, + }, + { + country_name: 'Congo, Dem. Rep.', + region: 'Sub-Saharan Africa', + sum__SP_POP_TOTL: 68087376, + sum__SP_RUR_TOTL_ZS: 59.558, + sum__SP_DYN_LE00_IN: 49.3007073171, + }, + { + country_name: 'South Africa', + region: 'Sub-Saharan Africa', + sum__SP_POP_TOTL: 51553479, + sum__SP_RUR_TOTL_ZS: 37.254, + sum__SP_DYN_LE00_IN: 55.2956585366, + }, + { + country_name: 'Russian Federation', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 142960868, + sum__SP_RUR_TOTL_ZS: 26.268, + sum__SP_DYN_LE00_IN: 69.6585365854, + }, + { + country_name: 'Germany', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 81797673, + sum__SP_RUR_TOTL_ZS: 25.512, + sum__SP_DYN_LE00_IN: 80.7414634146, + }, + { + country_name: 'Turkey', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 73199372, + sum__SP_RUR_TOTL_ZS: 28.718, + sum__SP_DYN_LE00_IN: 74.5404878049, + }, + { + country_name: 'France', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 65342776, + sum__SP_RUR_TOTL_ZS: 21.416, + sum__SP_DYN_LE00_IN: 82.1146341463, + }, + { + country_name: 'United Kingdom', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 63258918, + sum__SP_RUR_TOTL_ZS: 18.43, + sum__SP_DYN_LE00_IN: 80.9512195122, + }, + { + country_name: 'Italy', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 59379449, + sum__SP_RUR_TOTL_ZS: 31.556, + sum__SP_DYN_LE00_IN: 82.187804878, + }, + { + country_name: 'Egypt, Arab Rep.', + region: 'Middle East & North Africa', + sum__SP_POP_TOTL: 83787634, + sum__SP_RUR_TOTL_ZS: 57, + sum__SP_DYN_LE00_IN: 70.6785609756, + }, + { + country_name: 'Iran, Islamic Rep.', + region: 'Middle East & North Africa', + sum__SP_POP_TOTL: 75184322, + sum__SP_RUR_TOTL_ZS: 28.8, + sum__SP_DYN_LE00_IN: 73.4493170732, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/data/legacyData.ts b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/data/legacyData.ts new file mode 100644 index 000000000000..167f36303952 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/data/legacyData.ts @@ -0,0 +1,357 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys, no-magic-numbers */ +export default [ + { + key: 'East Asia & Pacific', + values: [ + { + country_name: 'China', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 1344130000.0, + sum__SP_RUR_TOTL_ZS: 49.427, + sum__SP_DYN_LE00_IN: 75.042, + x: 49.427, + y: 75.042, + size: 1344130000.0, + shape: 'circle', + group: 'East Asia & Pacific', + }, + { + country_name: 'Indonesia', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 244808254.0, + sum__SP_RUR_TOTL_ZS: 49.288, + sum__SP_DYN_LE00_IN: 70.3915609756, + x: 49.288, + y: 70.3915609756, + size: 244808254.0, + shape: 'circle', + group: 'East Asia & Pacific', + }, + { + country_name: 'Japan', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 127817277.0, + sum__SP_RUR_TOTL_ZS: 8.752, + sum__SP_DYN_LE00_IN: 82.5912195122, + x: 8.752, + y: 82.5912195122, + size: 127817277.0, + shape: 'circle', + group: 'East Asia & Pacific', + }, + { + country_name: 'Philippines', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 94501233.0, + sum__SP_RUR_TOTL_ZS: 54.983, + sum__SP_DYN_LE00_IN: 68.3914878049, + x: 54.983, + y: 68.3914878049, + size: 94501233.0, + shape: 'circle', + group: 'East Asia & Pacific', + }, + { + country_name: 'Vietnam', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 87840000.0, + sum__SP_RUR_TOTL_ZS: 68.971, + sum__SP_DYN_LE00_IN: 75.457902439, + x: 68.971, + y: 75.457902439, + size: 87840000.0, + shape: 'circle', + group: 'East Asia & Pacific', + }, + { + country_name: 'Thailand', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 66902958.0, + sum__SP_RUR_TOTL_ZS: 54.606, + sum__SP_DYN_LE00_IN: 74.008902439, + x: 54.606, + y: 74.008902439, + size: 66902958.0, + shape: 'circle', + group: 'East Asia & Pacific', + }, + { + country_name: 'Myanmar', + region: 'East Asia & Pacific', + sum__SP_POP_TOTL: 52125411.0, + sum__SP_RUR_TOTL_ZS: 68.065, + sum__SP_DYN_LE00_IN: 64.7612439024, + x: 68.065, + y: 64.7612439024, + size: 52125411.0, + shape: 'circle', + group: 'East Asia & Pacific', + }, + ], + }, + { + key: 'South Asia', + values: [ + { + country_name: 'India', + region: 'South Asia', + sum__SP_POP_TOTL: 1247446011.0, + sum__SP_RUR_TOTL_ZS: 68.724, + sum__SP_DYN_LE00_IN: 65.9584878049, + x: 68.724, + y: 65.9584878049, + size: 1247446011.0, + shape: 'circle', + group: 'South Asia', + }, + { + country_name: 'Pakistan', + region: 'South Asia', + sum__SP_POP_TOTL: 173669648.0, + sum__SP_RUR_TOTL_ZS: 62.993, + sum__SP_DYN_LE00_IN: 66.2838780488, + x: 62.993, + y: 66.2838780488, + size: 173669648.0, + shape: 'circle', + group: 'South Asia', + }, + { + country_name: 'Bangladesh', + region: 'South Asia', + sum__SP_POP_TOTL: 153405612.0, + sum__SP_RUR_TOTL_ZS: 68.775, + sum__SP_DYN_LE00_IN: 69.891804878, + x: 68.775, + y: 69.891804878, + size: 153405612.0, + shape: 'circle', + group: 'South Asia', + }, + ], + }, + { + key: 'North America', + values: [ + { + country_name: 'United States', + region: 'North America', + sum__SP_POP_TOTL: 311721632.0, + sum__SP_RUR_TOTL_ZS: 19.06, + sum__SP_DYN_LE00_IN: 78.6414634146, + x: 19.06, + y: 78.6414634146, + size: 311721632.0, + shape: 'circle', + group: 'North America', + }, + ], + }, + { + key: 'Latin America & Caribbean', + values: [ + { + country_name: 'Brazil', + region: 'Latin America & Caribbean', + sum__SP_POP_TOTL: 200517584.0, + sum__SP_RUR_TOTL_ZS: 15.377, + sum__SP_DYN_LE00_IN: 73.3473658537, + x: 15.377, + y: 73.3473658537, + size: 200517584.0, + shape: 'circle', + group: 'Latin America & Caribbean', + }, + { + country_name: 'Mexico', + region: 'Latin America & Caribbean', + sum__SP_POP_TOTL: 120365271.0, + sum__SP_RUR_TOTL_ZS: 21.882, + sum__SP_DYN_LE00_IN: 76.9141707317, + x: 21.882, + y: 76.9141707317, + size: 120365271.0, + shape: 'circle', + group: 'Latin America & Caribbean', + }, + ], + }, + { + key: 'Sub-Saharan Africa', + values: [ + { + country_name: 'Nigeria', + region: 'Sub-Saharan Africa', + sum__SP_POP_TOTL: 163770669.0, + sum__SP_RUR_TOTL_ZS: 55.638, + sum__SP_DYN_LE00_IN: 51.7102439024, + x: 55.638, + y: 51.7102439024, + size: 163770669.0, + shape: 'circle', + group: 'Sub-Saharan Africa', + }, + { + country_name: 'Ethiopia', + region: 'Sub-Saharan Africa', + sum__SP_POP_TOTL: 89858696.0, + sum__SP_RUR_TOTL_ZS: 82.265, + sum__SP_DYN_LE00_IN: 62.2528536585, + x: 82.265, + y: 62.2528536585, + size: 89858696.0, + shape: 'circle', + group: 'Sub-Saharan Africa', + }, + { + country_name: 'Congo, Dem. Rep.', + region: 'Sub-Saharan Africa', + sum__SP_POP_TOTL: 68087376.0, + sum__SP_RUR_TOTL_ZS: 59.558, + sum__SP_DYN_LE00_IN: 49.3007073171, + x: 59.558, + y: 49.3007073171, + size: 68087376.0, + shape: 'circle', + group: 'Sub-Saharan Africa', + }, + { + country_name: 'South Africa', + region: 'Sub-Saharan Africa', + sum__SP_POP_TOTL: 51553479.0, + sum__SP_RUR_TOTL_ZS: 37.254, + sum__SP_DYN_LE00_IN: 55.2956585366, + x: 37.254, + y: 55.2956585366, + size: 51553479.0, + shape: 'circle', + group: 'Sub-Saharan Africa', + }, + ], + }, + { + key: 'Europe & Central Asia', + values: [ + { + country_name: 'Russian Federation', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 142960868.0, + sum__SP_RUR_TOTL_ZS: 26.268, + sum__SP_DYN_LE00_IN: 69.6585365854, + x: 26.268, + y: 69.6585365854, + size: 142960868.0, + shape: 'circle', + group: 'Europe & Central Asia', + }, + { + country_name: 'Germany', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 81797673.0, + sum__SP_RUR_TOTL_ZS: 25.512, + sum__SP_DYN_LE00_IN: 80.7414634146, + x: 25.512, + y: 80.7414634146, + size: 81797673.0, + shape: 'circle', + group: 'Europe & Central Asia', + }, + { + country_name: 'Turkey', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 73199372.0, + sum__SP_RUR_TOTL_ZS: 28.718, + sum__SP_DYN_LE00_IN: 74.5404878049, + x: 28.718, + y: 74.5404878049, + size: 73199372.0, + shape: 'circle', + group: 'Europe & Central Asia', + }, + { + country_name: 'France', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 65342776.0, + sum__SP_RUR_TOTL_ZS: 21.416, + sum__SP_DYN_LE00_IN: 82.1146341463, + x: 21.416, + y: 82.1146341463, + size: 65342776.0, + shape: 'circle', + group: 'Europe & Central Asia', + }, + { + country_name: 'United Kingdom', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 63258918.0, + sum__SP_RUR_TOTL_ZS: 18.43, + sum__SP_DYN_LE00_IN: 80.9512195122, + x: 18.43, + y: 80.9512195122, + size: 63258918.0, + shape: 'circle', + group: 'Europe & Central Asia', + }, + { + country_name: 'Italy', + region: 'Europe & Central Asia', + sum__SP_POP_TOTL: 59379449.0, + sum__SP_RUR_TOTL_ZS: 31.556, + sum__SP_DYN_LE00_IN: 82.187804878, + x: 31.556, + y: 82.187804878, + size: 59379449.0, + shape: 'circle', + group: 'Europe & Central Asia', + }, + ], + }, + { + key: 'Middle East & North Africa', + values: [ + { + country_name: 'Egypt, Arab Rep.', + region: 'Middle East & North Africa', + sum__SP_POP_TOTL: 83787634.0, + sum__SP_RUR_TOTL_ZS: 57.0, + sum__SP_DYN_LE00_IN: 70.6785609756, + x: 57.0, + y: 70.6785609756, + size: 83787634.0, + shape: 'circle', + group: 'Middle East & North Africa', + }, + { + country_name: 'Iran, Islamic Rep.', + region: 'Middle East & North Africa', + sum__SP_POP_TOTL: 75184322.0, + sum__SP_RUR_TOTL_ZS: 28.8, + sum__SP_DYN_LE00_IN: 73.4493170732, + x: 28.8, + y: 73.4493170732, + size: 75184322.0, + shape: 'circle', + group: 'Middle East & North Africa', + }, + ], + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/basic.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/basic.tsx new file mode 100644 index 000000000000..42bc33130684 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/basic.tsx @@ -0,0 +1,75 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers, sort-keys */ +import * as React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import { radios } from '@storybook/addon-knobs'; +import data from '../data/data'; +import { SCATTER_PLOT_PLUGIN_TYPE } from '../constants'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; + +export default () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/bubble.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/bubble.tsx new file mode 100644 index 000000000000..6a782b2b4b33 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/bubble.tsx @@ -0,0 +1,83 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers, sort-keys */ +import * as React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import { radios } from '@storybook/addon-knobs'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; +import data from '../data/data'; +import { SCATTER_PLOT_PLUGIN_TYPE } from '../constants'; + +export default () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/legacy.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/legacy.tsx new file mode 100644 index 000000000000..48e88dcf532f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/plugins/preset-chart-xy/ScatterPlot/stories/legacy.tsx @@ -0,0 +1,58 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import * as React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import data from '../data/legacyData'; +import { SCATTER_PLOT_PLUGIN_LEGACY_TYPE } from '../constants'; +import dummyDatasource from '../../../../../shared/dummyDatasource'; + +export default () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx new file mode 100644 index 000000000000..14d4d6d8bd48 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-chart/ChartDataProviderStories.tsx @@ -0,0 +1,128 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { text, select, withKnobs } from '@storybook/addon-knobs'; + +import { + SuperChart, + ChartDataProvider, + SupersetClient, +} from '@superset-ui/core'; +import { BigNumberChartPlugin as LegacyBigNumberPlugin } from '@superset-ui/legacy-preset-chart-big-number'; +import LegacySankeyPlugin from '@superset-ui/legacy-plugin-chart-sankey'; +import LegacySunburstPlugin from '@superset-ui/legacy-plugin-chart-sunburst'; +import { WordCloudChartPlugin } from '@superset-ui/plugin-chart-word-cloud'; + +import { + bigNumberFormData, + sankeyFormData, + sunburstFormData, + wordCloudFormData, +} from '@superset-ui/core/test/chart/fixtures/formData'; + +import Expandable from '../../shared/components/Expandable'; +import VerifyCORS, { renderError } from '../../shared/components/VerifyCORS'; + +const BIG_NUMBER = bigNumberFormData.viz_type; +const SANKEY = sankeyFormData.viz_type; +const SUNBURST = sunburstFormData.viz_type; +const WORD_CLOUD_LEGACY = wordCloudFormData.viz_type; +const WORD_CLOUD = 'new_word_cloud'; + +new LegacyBigNumberPlugin().configure({ key: BIG_NUMBER }).register(); +// eslint-disable-next-line +new LegacySankeyPlugin().configure({ key: SANKEY }).register(); +// eslint-disable-next-line +new LegacySunburstPlugin().configure({ key: SUNBURST }).register(); +// eslint-disable-next-line +new WordCloudChartPlugin().configure({ key: WORD_CLOUD }).register(); + +const VIS_TYPES = [BIG_NUMBER, SANKEY, SUNBURST, WORD_CLOUD, WORD_CLOUD_LEGACY]; +const FORM_DATA_LOOKUP = { + [BIG_NUMBER]: bigNumberFormData, + [SANKEY]: sankeyFormData, + [SUNBURST]: sunburstFormData, + [WORD_CLOUD]: { ...wordCloudFormData, viz_type: WORD_CLOUD }, + [WORD_CLOUD_LEGACY]: wordCloudFormData, +}; + +export default { + title: 'Others/DataProvider', + decorators: [ + withKnobs({ + escapeHTML: false, + }), + ], +}; + +export const dataProvider = () => { + const host = text('Set Superset App host for CORS request', 'localhost:8088'); + const visType = select('Chart Plugin Type', VIS_TYPES, VIS_TYPES[0]); + const width = text('Vis width', '500'); + const height = text('Vis height', '300'); + const formData = text( + 'Override formData', + JSON.stringify(FORM_DATA_LOOKUP[visType]), + ); + + return ( +
+ + {() => ( + + {({ loading, payload, error }) => { + if (loading) return
Loading!
; + + if (error) return renderError(error); + + if (payload) + return ( + <> + +
+ +
+                        {JSON.stringify(payload, null, 2)}
+                      
+
+ + ); + + return null; + }} +
+ )} +
+
+ ); +}; + +dataProvider.story = { name: 'ChartDataProvider' }; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx new file mode 100644 index 000000000000..c46fb81626d5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-chart/SuperChartStories.tsx @@ -0,0 +1,169 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { text, withKnobs } from '@storybook/addon-knobs'; +import { SuperChart } from '@superset-ui/core'; +import { + DiligentChartPlugin, + BuggyChartPlugin, + ChartKeys, +} from '@superset-ui/core/test/chart/components/MockChartPlugins'; +import ResizableChartDemo from '../../shared/components/ResizableChartDemo'; + +new DiligentChartPlugin().configure({ key: ChartKeys.DILIGENT }).register(); +new BuggyChartPlugin().configure({ key: ChartKeys.BUGGY }).register(); + +const DEFAULT_QUERY_DATA = { data: ['foo', 'bar'] }; + +export default { + title: 'Others/SuperChart', + decorators: [withKnobs], +}; + +export const basic = () => { + const width = text('Vis width', '100%'); + const height = text('Vis height', '100%'); + + return ( + + ); +}; +export const container50pct = () => { + const width = text('Vis width', '50%'); + const height = text('Vis height', '50%'); + + return ( + + ); +}; +container50pct.story = { name: '50% of container' }; + +export const Resizable = () => ( + + {size => ( + + )} + +); + +export const fixedWidth100height = () => { + const width = text('Vis width', '500'); + const height = text('Vis height', '100%'); + + return ( + + ); +}; +fixedWidth100height.story = { name: 'fixed width, 100% height' }; + +export const fixedHeight100Width = () => { + const width = text('Vis width', '100%'); + const height = text('Vis height', '300'); + + return ( + + ); +}; +fixedHeight100Width.story = { name: 'fixed height, 100% width' }; + +export const withErrorBoundar = () => { + const width = text('Vis width', '500'); + const height = text('Vis height', '300'); + + return ( + + ); +}; + +export const withWrapper = () => { + const width = text('Vis width', '100%'); + const height = text('Vis height', '100%'); + + return ( + ( +
+
With wrapper!
+ {children} +
+ )} + /> + ); +}; +export const withNoResults = () => { + const width = text('Vis width', '100%'); + const height = text('Vis height', '100%'); + + return ( + + ); +}; +export const withNoResultsAndMedium = () => { + const width = text('Vis width', '400'); + const height = text('Vis height', '300'); + + return ( + + ); +}; +export const withNoResultsAndSmall = () => { + const width = text('Vis width', '150'); + const height = text('Vis height', '200'); + + return ( + + ); +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-color/ColorPallettesStories.jsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-color/ColorPallettesStories.jsx new file mode 100644 index 000000000000..ae32badbc26b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-color/ColorPallettesStories.jsx @@ -0,0 +1,57 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { + CategoricalAirbnb, + CategoricalD3, + CategoricalEcharts, + CategoricalGoogle, + CategoricalLyft, + CategoricalPreset, + CategoricalSuperset, + SequentialCommon, + SequentialD3, +} from '@superset-ui/core'; +import RenderPalettes from './RenderPalettes'; + +export default { + title: 'Core Packages/@superset-ui-color', +}; + +export const categoricalPalettes = () => + [ + { palettes: CategoricalSuperset, storyName: 'Superset' }, + { palettes: CategoricalAirbnb, storyName: 'Airbnb' }, + { palettes: CategoricalD3, storyName: 'd3' }, + { palettes: CategoricalEcharts, storyName: 'ECharts' }, + { palettes: CategoricalGoogle, storyName: 'Google' }, + { palettes: CategoricalLyft, storyName: 'Lyft' }, + { palettes: CategoricalPreset, storyName: 'Preset' }, + ].map(({ palettes, storyName }) => ( + + )); + +export const sequentialPalettes = () => + [ + { palettes: SequentialCommon, storyName: 'Common' }, + { palettes: SequentialD3, storyName: 'd3' }, + ].map(({ palettes, storyName }) => ( + + )); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-color/RenderPalettes.jsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-color/RenderPalettes.jsx new file mode 100644 index 000000000000..a0e819c3725a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-color/RenderPalettes.jsx @@ -0,0 +1,55 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint react/prop-types: 'off' */ +import React from 'react'; +import './color-styles.css'; + +export default function RenderPalettes({ title, palettes }) { + return ( +
+ {title &&

{title}

} + + + {palettes.map(({ colors, id, label }) => ( + + + + + ))} + +
+ {label} + +
+ {colors.map((color, i) => ( +
+ ))} +
+
+
+ ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-color/color-styles.css b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-color/color-styles.css new file mode 100644 index 000000000000..5a334ef64bab --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-color/color-styles.css @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +.palette-label { + margin: 4px 12px 4px 0; +} + +.palette-container { + display: flex; + flex-direction: row; + border: 1px solid #eaeaea; + width: fit-content; +} + +.palette-item { + width: 16px; + height: 16px; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-connection/ConnectionStories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-connection/ConnectionStories.tsx new file mode 100644 index 000000000000..d73998784a46 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-connection/ConnectionStories.tsx @@ -0,0 +1,86 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { select, text, withKnobs } from '@storybook/addon-knobs'; +import { bigNumberFormData } from '@superset-ui/core/test/chart/fixtures/formData'; + +import VerifyCORS, { + Props as VerifyCORSProps, +} from '../../shared/components/VerifyCORS'; +import Expandable from '../../shared/components/Expandable'; + +const REQUEST_METHODS = ['GET', 'POST']; +const ENDPOINTS = { + '(Empty - verify auth only)': '/', + '/api/v1/chart/data': '/api/v1/chart/data', +}; + +export default { + title: 'Core Packages/@superset-ui-connection', + decorators: [ + withKnobs({ + escapeHTML: false, + }), + ], +}; + +export const configureCORS = () => { + const host = text('Superset App host for CORS request', 'localhost:8088'); + const selectEndpoint = select('Endpoint', ENDPOINTS, ''); + const customEndpoint = text('Custom Endpoint (override above)', ''); + const endpoint = customEndpoint || selectEndpoint; + const method = endpoint + ? select('Request method', REQUEST_METHODS, 'POST') + : undefined; + const postPayload = + endpoint && method === 'POST' + ? text('POST payload', JSON.stringify({ form_data: bigNumberFormData })) + : undefined; + + return ( +
+ + {({ payload }) => ( + <> +
+ Success! Update knobs below to try again +
+
+ +
+
+                {JSON.stringify(payload, null, 2)}
+              
+
+ + )} +
+
+ ); +}; + +configureCORS.parameters = { + chromatic: { disable: true }, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-number-format/BigNumberStories.jsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-number-format/BigNumberStories.jsx new file mode 100644 index 000000000000..a09920a620cf --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-number-format/BigNumberStories.jsx @@ -0,0 +1,142 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable jsx-a11y/label-has-associated-control */ +import React from 'react'; +import { formatNumber } from '@superset-ui/core'; + +const propTypes = {}; +const defaultProps = {}; + +class NumberFormatValidator extends React.PureComponent { + constructor(props) { + super(props); + + this.state = { + formatString: '.3~s', + testValues: [ + 987654321, + 12345.6789, + 3000, + 400.14, + 70.00002, + 1, + 0, + -1, + -70.00002, + -400.14, + -3000, + -12345.6789, + -987654321, + Number.POSITIVE_INFINITY, + Number.NEGATIVE_INFINITY, + NaN, + null, + undefined, + ], + }; + + this.handleFormatChange = this.handleFormatChange.bind(this); + } + + handleFormatChange(event) { + this.setState({ + formatString: event.target.value, + }); + } + + render() { + const { formatString, testValues } = this.state; + + return ( +
+
+
+

+ This @superset-ui/number-format package enriches{' '} + d3-format + to handle invalid formats as well as edge case values. Use the + validator below to preview outputs from the specified format + string. See + + D3 Format Reference + + for how to write a D3 format string. +

+
+
+
+
+
+
+
+ + +
+
+
+
+
+
+
+ + + + + + + + + {testValues.map(v => ( + + + + + ))} + +
Input (number)Formatted output (string)
+ {`${v}`} + + "{formatNumber(formatString, v)}" +
+
+
+
+ ); + } +} + +NumberFormatValidator.propTypes = propTypes; +NumberFormatValidator.defaultProps = defaultProps; + +export default { + title: 'Core Packages/@superset-ui-number-format', +}; + +export const validator = () => ; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-style/ThemeStories.jsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-style/ThemeStories.jsx new file mode 100644 index 000000000000..8d0d51ebd672 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-style/ThemeStories.jsx @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; + +import { supersetTheme } from '@superset-ui/core'; + +export default { + title: 'Core Packages/@superset-ui-style', +}; + +export const ThemeColors = () => { + const { colors } = supersetTheme; + return Object.keys(colors).map(collection => ( +
+

{collection}

+ + {Object.keys(colors[collection]).map(k => { + const hex = colors[collection][k]; + return ( + + + + + ); + })} +
{k} + {hex} + +
+
+ )); +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-time-format/TimeFormatStories.jsx b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-time-format/TimeFormatStories.jsx new file mode 100644 index 000000000000..02af3c33744a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/storybook/stories/superset-ui-time-format/TimeFormatStories.jsx @@ -0,0 +1,132 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable jsx-a11y/label-has-associated-control */ +import React from 'react'; +import { formatTime } from '@superset-ui/core'; + +const propTypes = {}; +const defaultProps = {}; + +class TimeFormatValidator extends React.PureComponent { + constructor(props) { + super(props); + + this.state = { + formatString: '%Y-%m-%d %H:%M:%S', + testValues: [ + new Date(Date.UTC(1986, 5, 14, 8, 30, 53)), + new Date(Date.UTC(2001, 9, 27, 13, 45, 2, 678)), + new Date(Date.UTC(2009, 1, 1, 0, 0, 0)), + new Date(Date.UTC(2018, 1, 1, 10, 20, 33)), + 0, + null, + undefined, + ], + }; + + this.handleFormatChange = this.handleFormatChange.bind(this); + } + + handleFormatChange(event) { + this.setState({ + formatString: event.target.value, + }); + } + + render() { + const { formatString, testValues } = this.state; + + return ( +
+
+
+

+ This @superset-ui/time-format package enriches + d3-time-format to handle invalid formats as well as + edge case values. Use the validator below to preview outputs from + the specified format string. See + + D3 Time Format Reference + + for how to write a D3 time format string. +

+
+
+
+
+
+
+
+ + +
+
+
+
+
+
+
+ + + + + + + + + {testValues.map(v => ( + + + + + ))} + +
Input (time)Formatted output (string)
+ + {v instanceof Date ? v.toUTCString() : `${v}`} + + + "{formatTime(formatString, v)}" +
+
+
+
+ ); + } +} + +TimeFormatValidator.propTypes = propTypes; +TimeFormatValidator.defaultProps = defaultProps; + +export default { + title: 'Core Packages/@superset-ui-time-format', +}; + +export const validator = () => ; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/tsconfig.json new file mode 100644 index 000000000000..094d3c6ffab1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo/tsconfig.json @@ -0,0 +1,36 @@ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "jsx": "react", + "outDir": "../../build/lib", + "rootDir": "../../", + "emitDeclarationOnly": false, + "sourceMap": true, + "allowSyntheticDefaultImports": true, + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "noImplicitAny": false, + "noEmit": false, + "baseUrl": "../../", + "paths": { + "@superset-ui/core": ["./packages/superset-ui-core/src"], + "@superset-ui/chart-controls": [ + "./packages/superset-ui-chart-controls/src" + ], + "@superset-ui/legacy-plugin-chart-*": [ + "./plugins/legacy-plugin-chart-*/src" + ], + "@superset-ui/legacy-preset-chart-*": [ + "./plugins/legacy-preset-chart-*/src" + ], + "@superset-ui/plugin-chart-*": ["./plugins/plugin-chart-*/src"], + "@superset-ui/preset-chart-*": ["./plugins/preset-chart-*/src"], + } + }, + "exclude": ["node_modules"], + "include": [ + "storybook", + "../**/src", + "../../plugins/**/src", + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/CHANGELOG.md new file mode 100644 index 000000000000..b7e4b701f695 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-calendar + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-calendar diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/README.md new file mode 100644 index 000000000000..ca18c4f71afc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-calendar + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-calendar.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-calendar) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-calendar&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-calendar) + +This plugin provides Calendar Heatmap for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import CalendarChartPlugin from '@superset-ui/legacy-plugin-chart-calendar'; + +new CalendarChartPlugin().configure({ key: 'calendar' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-calendar) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/package.json new file mode 100644 index 000000000000..49cfdddf5263 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/package.json @@ -0,0 +1,41 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-calendar", + "version": "0.18.25", + "description": "Superset Legacy Chart - Calendar Heatmap", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3-array": "^2.0.3", + "d3-selection": "^1.4.0", + "d3-tip": "^0.9.1", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^16.13.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/Calendar.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/Calendar.js new file mode 100644 index 000000000000..6b701c231a95 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/Calendar.js @@ -0,0 +1,168 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import PropTypes from 'prop-types'; +import { extent as d3Extent, range as d3Range } from 'd3-array'; +import { select as d3Select } from 'd3-selection'; +import { + getNumberFormatter, + getTimeFormatter, + getSequentialSchemeRegistry, +} from '@superset-ui/core'; +import CalHeatMap from './vendor/cal-heatmap'; +import './vendor/cal-heatmap.css'; + +function convertUTC(dttm) { + return new Date( + dttm.getUTCFullYear(), + dttm.getUTCMonth(), + dttm.getUTCDate(), + dttm.getUTCHours(), + dttm.getUTCMinutes(), + dttm.getUTCSeconds(), + ); +} + +const convertUTCTS = uts => convertUTC(new Date(uts)).getTime(); + +const propTypes = { + data: PropTypes.shape({ + // Object hashed by metric name, + // then hashed by timestamp (in seconds, not milliseconds) as float + // the innermost value is count + // e.g. { count_distinct_something: { 1535034236.0: 3 } } + data: PropTypes.object, + domain: PropTypes.string, + range: PropTypes.number, + // timestamp in milliseconds + start: PropTypes.number, + subdomain: PropTypes.string, + }), + height: PropTypes.number, + // eslint-disable-next-line react/sort-prop-types + cellPadding: PropTypes.number, + // eslint-disable-next-line react/sort-prop-types + cellRadius: PropTypes.number, + // eslint-disable-next-line react/sort-prop-types + cellSize: PropTypes.number, + linearColorScheme: PropTypes.string, + showLegend: PropTypes.bool, + showMetricName: PropTypes.bool, + showValues: PropTypes.bool, + steps: PropTypes.number, + timeFormat: PropTypes.string, + valueFormat: PropTypes.string, + verboseMap: PropTypes.object, +}; + +function Calendar(element, props) { + const { + data, + height, + cellPadding = 3, + cellRadius = 0, + cellSize = 10, + domainGranularity, + linearColorScheme, + showLegend, + showMetricName, + showValues, + steps, + subdomainGranularity, + timeFormat, + valueFormat, + verboseMap, + } = props; + + const valueFormatter = getNumberFormatter(valueFormat); + const timeFormatter = getTimeFormatter(timeFormat); + + const container = d3Select(element) + .classed('superset-legacy-chart-calendar', true) + .style('height', height); + container.selectAll('*').remove(); + const div = container.append('div'); + + const subDomainTextFormat = showValues + ? (date, value) => valueFormatter(value) + : null; + + // Trick to convert all timestamps to UTC + // TODO: Verify if this conversion is really necessary + // since all timestamps should always be in UTC. + const metricsData = {}; + Object.keys(data.data).forEach(metric => { + metricsData[metric] = {}; + Object.keys(data.data[metric]).forEach(ts => { + metricsData[metric][convertUTCTS(ts * 1000) / 1000] = + data.data[metric][ts]; + }); + }); + + Object.keys(metricsData).forEach(metric => { + const calContainer = div.append('div'); + if (showMetricName) { + calContainer.text(`Metric: ${verboseMap[metric] || metric}`); + } + const timestamps = metricsData[metric]; + const extents = d3Extent(Object.keys(timestamps), key => timestamps[key]); + const step = (extents[1] - extents[0]) / (steps - 1); + const colorScale = getSequentialSchemeRegistry() + .get(linearColorScheme) + .createLinearScale(extents); + + const legend = d3Range(steps).map(i => extents[0] + step * i); + const legendColors = legend.map(x => colorScale(x)); + + const cal = new CalHeatMap(); + cal.init({ + start: convertUTCTS(data.start), + data: timestamps, + itemSelector: calContainer.node(), + legendVerticalPosition: 'top', + cellSize, + cellPadding, + cellRadius, + legendCellSize: cellSize, + legendCellPadding: 2, + legendCellRadius: cellRadius, + tooltip: true, + domain: domainGranularity, + subDomain: subdomainGranularity, + range: data.range, + browsing: true, + legend, + legendColors: { + colorScale, + min: legendColors[0], + max: legendColors[legendColors.length - 1], + empty: 'white', + }, + displayLegend: showLegend, + itemName: '', + valueFormatter, + timeFormatter, + subDomainTextFormat, + }); + }); +} + +Calendar.displayName = 'Calendar'; +Calendar.propTypes = propTypes; + +export default Calendar; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/ReactCalendar.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/ReactCalendar.jsx new file mode 100644 index 000000000000..cf2097ed9588 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/ReactCalendar.jsx @@ -0,0 +1,52 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import PropTypes from 'prop-types'; +import { reactify, styled } from '@superset-ui/core'; +import Component from './Calendar'; + +const ReactComponent = reactify(Component); + +const Calender = ({ className, ...otherProps }) => ( +
+ +
+); + +Calender.defaultProps = { + otherProps: {}, +}; + +Calender.propTypes = { + className: PropTypes.string.isRequired, + otherProps: PropTypes.objectOf(PropTypes.any), +}; + +export default styled(Calender)` + .superset-legacy-chart-calendar { + padding: 10px; + position: static !important; + overflow: auto !important; + } + + .superset-legacy-chart-calendar .ch-tooltip { + margin-left: 20px; + margin-top: 5px; + } +`; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts new file mode 100644 index 000000000000..2787687b0615 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts @@ -0,0 +1,196 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, legacyValidateInteger } from '@superset-ui/core'; +import { + ControlPanelConfig, + D3_FORMAT_DOCS, + D3_TIME_FORMAT_OPTIONS, + formatSelectOptions, + sections, +} from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + [ + { + name: 'domain_granularity', + config: { + type: 'SelectControl', + label: t('Domain'), + default: 'month', + choices: formatSelectOptions([ + 'hour', + 'day', + 'week', + 'month', + 'year', + ]), + description: t('The time unit used for the grouping of blocks'), + }, + }, + { + name: 'subdomain_granularity', + config: { + type: 'SelectControl', + label: t('Subdomain'), + default: 'day', + choices: formatSelectOptions([ + 'min', + 'hour', + 'day', + 'week', + 'month', + ]), + description: t( + 'The time unit for each block. Should be a smaller unit than ' + + 'domain_granularity. Should be larger or equal to Time Grain', + ), + }, + }, + ], + ['metrics'], + ['adhoc_filters'], + ], + }, + { + label: t('Chart Options'), + expanded: true, + tabOverride: 'customize', + controlSetRows: [ + ['linear_color_scheme'], + [ + { + name: 'cell_size', + config: { + type: 'TextControl', + isInt: true, + default: 10, + validators: [legacyValidateInteger], + renderTrigger: true, + label: t('Cell Size'), + description: t('The size of the square cell, in pixels'), + }, + }, + { + name: 'cell_padding', + config: { + type: 'TextControl', + isInt: true, + validators: [legacyValidateInteger], + renderTrigger: true, + default: 2, + label: t('Cell Padding'), + description: t('The distance between cells, in pixels'), + }, + }, + ], + [ + { + name: 'cell_radius', + config: { + type: 'TextControl', + isInt: true, + validators: [legacyValidateInteger], + renderTrigger: true, + default: 0, + label: t('Cell Radius'), + description: t('The pixel radius'), + }, + }, + { + name: 'steps', + config: { + type: 'TextControl', + isInt: true, + validators: [legacyValidateInteger], + renderTrigger: true, + default: 10, + label: t('Color Steps'), + description: t('The number color "steps"'), + }, + }, + ], + [ + 'y_axis_format', + { + name: 'x_axis_time_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Time Format'), + renderTrigger: true, + default: 'smart_date', + choices: D3_TIME_FORMAT_OPTIONS, + description: D3_FORMAT_DOCS, + }, + }, + ], + [ + { + name: 'show_legend', + config: { + type: 'CheckboxControl', + label: t('Legend'), + renderTrigger: true, + default: true, + description: t('Whether to display the legend (toggles)'), + }, + }, + { + name: 'show_values', + config: { + type: 'CheckboxControl', + label: t('Show Values'), + renderTrigger: true, + default: false, + description: t( + 'Whether to display the numerical values within the cells', + ), + }, + }, + ], + [ + { + name: 'show_metric_name', + config: { + type: 'CheckboxControl', + label: t('Show Metric Names'), + renderTrigger: true, + default: true, + description: t('Whether to display the metric name as a title'), + }, + }, + null, + ], + ], + }, + ], + controlOverrides: { + y_axis_format: { + label: t('Number Format'), + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/images/thumbnail.png new file mode 100644 index 000000000000..bac8c2857f3a Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..8e0624b9b56b Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/index.js new file mode 100644 index 000000000000..5c0a9425ef12 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/index.js @@ -0,0 +1,52 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import controlPanel from './controlPanel'; +import thumbnail from './images/thumbnail.png'; + +const metadata = new ChartMetadata({ + category: t('Correlation'), + credits: ['https://github.com/wa0x6e/cal-heatmap'], + description: t( + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.", + ), + name: t('Calendar Heatmap'), + tags: [ + t('Business'), + t('Comparison'), + t('Intensity'), + t('Pattern'), + t('Report'), + t('Trend'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class CalendarChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./ReactCalendar'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/transformProps.js new file mode 100644 index 000000000000..cfd57d1e2797 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/transformProps.js @@ -0,0 +1,55 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function transformProps(chartProps) { + const { height, formData, queriesData, datasource } = chartProps; + const { + cellPadding, + cellRadius, + cellSize, + domainGranularity, + linearColorScheme, + showLegend, + showMetricName, + showValues, + steps, + subdomainGranularity, + xAxisTimeFormat, + yAxisFormat, + } = formData; + + const { verboseMap } = datasource; + + return { + height, + data: queriesData[0].data, + cellPadding, + cellRadius, + cellSize, + domainGranularity, + linearColorScheme, + showLegend, + showMetricName, + showValues, + steps, + subdomainGranularity, + timeFormat: xAxisTimeFormat, + valueFormat: yAxisFormat, + verboseMap, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.css b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.css new file mode 100644 index 000000000000..de282154a509 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.css @@ -0,0 +1,129 @@ +/* [LICENSE TBD] */ +/* Cal-HeatMap CSS */ + +.cal-heatmap-container { + display: block; +} + +.cal-heatmap-container .graph-label { + fill: #999; + font-size: 10px; +} + +.cal-heatmap-container .graph, +.cal-heatmap-container .graph-legend rect { + shape-rendering: crispedges; +} + +.cal-heatmap-container .graph-rect { + fill: #ededed; +} + +.cal-heatmap-container .graph-subdomain-group rect:hover { + stroke: #000; + stroke-width: 1px; +} + +.cal-heatmap-container .subdomain-text { + font-size: 8px; + pointer-events: none; +} + +.cal-heatmap-container .hover_cursor:hover { + cursor: pointer; +} + +.cal-heatmap-container .qi { + background-color: #999; + fill: #999; +} + +/* +Remove comment to apply this style to date with value equal to 0 +.q0 +{ + background-color: #fff; + fill: #fff; + stroke: #ededed +} +*/ + +.cal-heatmap-container .q1 { + background-color: #dae289; + fill: #dae289; +} + +.cal-heatmap-container .q2 { + background-color: #cedb9c; + fill: #9cc069; +} + +.cal-heatmap-container .q3 { + background-color: #b5cf6b; + fill: #669d45; +} + +.cal-heatmap-container .q4 { + background-color: #637939; + fill: #637939; +} + +.cal-heatmap-container .q5 { + background-color: #3b6427; + fill: #3b6427; +} + +.cal-heatmap-container rect.highlight { + stroke: #444; + stroke-width: 1; +} + +.cal-heatmap-container text.highlight { + fill: #444; +} + +.cal-heatmap-container rect.highlight-now { + stroke: red; +} + +.cal-heatmap-container text.highlight-now { + fill: red; + font-weight: 800; +} + +.cal-heatmap-container .domain-background { + fill: none; + shape-rendering: crispedges; +} + +.ch-tooltip { + padding: 10px; + background: #222; + color: #bbb; + font-size: 12px; + line-height: 1.4; + width: 140px; + position: absolute; + z-index: 99999; + text-align: center; + border-radius: 2px; + box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2); + display: none; + box-sizing: border-box; +} + +.ch-tooltip::after { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; + content: ''; + padding: 0; + display: block; + bottom: -6px; + left: 50%; + margin-left: -6px; + border-width: 6px 6px 0; + border-top-color: #222; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js new file mode 100644 index 000000000000..572070f61408 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js @@ -0,0 +1,4045 @@ +// [LICENSE TBD] +/* Copied and altered from http://cal-heatmap.com/ , alterations around: + * - tuning tooltips + * - supporting multi-colors scales + * - legend format + * - UTC handling + */ + +/* eslint-disable */ + +import d3tip from 'd3-tip'; +import { getContrastingColor } from '@superset-ui/core'; +import './d3tip.css'; + +var d3 = typeof require === 'function' ? require('d3') : window.d3; + +var d3 = typeof require === 'function' ? require('d3') : window.d3; + +var CalHeatMap = function () { + 'use strict'; + + var self = this; + self.tip = d3tip() + .attr('class', 'd3-tip') + .direction('n') + .offset([-5, 0]) + .html( + d => ` + ${self.options.timeFormatter(d.t)}: ${self.options.valueFormatter( + d.v, + )} + `, + ); + self.legendTip = d3tip() + .attr('class', 'd3-tip') + .direction('n') + .offset([-5, 0]) + .html(d => self.options.valueFormatter(d)); + + this.allowedDataType = ['json', 'csv', 'tsv', 'txt']; + + // Default settings + this.options = { + // selector string of the container to append the graph to + // Accept any string value accepted by document.querySelector or CSS3 + // or an Element object + itemSelector: '#cal-heatmap', + + // Whether to paint the calendar on init() + // Used by testsuite to reduce testing time + paintOnLoad: true, + + // ================================================ + // DOMAIN + // ================================================ + + // Number of domain to display on the graph + range: 12, + + // Size of each cell, in pixel + cellSize: 10, + + // Padding between each cell, in pixel + cellPadding: 2, + + // For rounded subdomain rectangles, in pixels + cellRadius: 0, + + domainGutter: 2, + + domainMargin: [0, 0, 0, 0], + + valueFormatter: d => d, + + timeFormatter: d => d, + + domain: 'hour', + + subDomain: 'min', + + // Number of columns to split the subDomains to + // If not null, will takes precedence over rowLimit + colLimit: null, + + // Number of rows to split the subDomains to + // Will be ignored if colLimit is not null + rowLimit: null, + + // First day of the week is Monday + // 0 to start the week on Sunday + weekStartOnMonday: true, + + // Start date of the graph + // @default now + start: new Date(), + + minDate: null, + + maxDate: null, + + // ================================================ + // DATA + // ================================================ + + // Data source + // URL, where to fetch the original datas + data: '', + + // Data type + // Default: json + dataType: this.allowedDataType[0], + + // Payload sent when using POST http method + // Leave to null (default) for GET request + // Expect a string, formatted like "a=b;c=d" + dataPostPayload: null, + + // Additional headers sent when requesting data + // Expect an object formatted like: + // { 'X-CSRF-TOKEN': 'token' } + dataRequestHeaders: null, + + // Whether to consider missing date:value from the datasource + // as equal to 0, or just leave them as missing + considerMissingDataAsZero: false, + + // Load remote data on calendar creation + // When false, the calendar will be left empty + loadOnInit: true, + + // Calendar orientation + // false: display domains side by side + // true : display domains one under the other + verticalOrientation: false, + + // Domain dynamic width/height + // The width on a domain depends on the number of + domainDynamicDimension: true, + + // Domain Label properties + label: { + // valid: top, right, bottom, left + position: 'bottom', + + // Valid: left, center, right + // Also valid are the direct svg values: start, middle, end + align: 'center', + + // By default, there is no margin/padding around the label + offset: { + x: 0, + y: 0, + }, + + rotate: null, + + // Used only on vertical orientation + width: 100, + + // Used only on horizontal orientation + height: null, + }, + + // ================================================ + // LEGEND + // ================================================ + + // Threshold for the legend + legend: [10, 20, 30, 40], + + // Whether to display the legend + displayLegend: true, + + legendCellSize: 10, + + legendCellPadding: 2, + + legendMargin: [0, 0, 0, 0], + + // Legend vertical position + // top: place legend above calendar + // bottom: place legend below the calendar + legendVerticalPosition: 'bottom', + + // Legend horizontal position + // accepted values: left, center, right + legendHorizontalPosition: 'left', + + // Legend rotation + // accepted values: horizontal, vertical + legendOrientation: 'horizontal', + + // Objects holding all the heatmap different colors + // null to disable, and use the default css styles + // + // Examples: + // legendColors: { + // min: "green", + // max: "red", + // empty: "#ffffff", + // base: "grey", + // overflow: "red", + // colorScaler: null, + // } + legendColors: null, + + // ================================================ + // HIGHLIGHT + // ================================================ + + // List of dates to highlight + // Valid values: + // - []: don't highlight anything + // - "now": highlight the current date + // - an array of Date objects: highlight the specified dates + highlight: [], + + // ================================================ + // TEXT FORMATTING / i18n + // ================================================ + + // Name of the items to represent in the calendar + itemName: ['item', 'items'], + + // Formatting of the domain label + // @default: null, will use the formatting according to domain type + // Accept a string used as specifier by d3.time.format() + // or a function + // + // Refer to https://github.com/mbostock/d3/wiki/Time-Formatting + // for accepted date formatting used by d3.time.format() + domainLabelFormat: null, + + // Formatting of the title displayed when hovering a subDomain cell + subDomainTitleFormat: { + empty: '{date}', + filled: '{count} {name} {connector} {date}', + }, + + // Formatting of the {date} used in subDomainTitleFormat + // @default: null, will use the formatting according to subDomain type + // Accept a string used as specifier by d3.time.format() + // or a function + // + // Refer to https://github.com/mbostock/d3/wiki/Time-Formatting + // for accepted date formatting used by d3.time.format() + subDomainDateFormat: null, + + // Formatting of the text inside each subDomain cell + // @default: null, no text + // Accept a string used as specifier by d3.time.format() + // or a function + // + // Refer to https://github.com/mbostock/d3/wiki/Time-Formatting + // for accepted date formatting used by d3.time.format() + subDomainTextFormat: null, + + // Formatting of the title displayed when hovering a legend cell + legendTitleFormat: { + lower: 'less than {min} {name}', + inner: 'between {down} and {up} {name}', + upper: 'more than {max} {name}', + }, + + // Animation duration, in ms + animationDuration: 500, + + nextSelector: false, + + previousSelector: false, + + itemNamespace: 'cal-heatmap', + + tooltip: false, + + // ================================================ + // EVENTS CALLBACK + // ================================================ + + // Callback when clicking on a time block + onClick: null, + + // Callback after painting the empty calendar + // Can be used to trigger an API call, once the calendar is ready to be filled + afterLoad: null, + + // Callback after loading the next domain in the calendar + afterLoadNextDomain: null, + + // Callback after loading the previous domain in the calendar + afterLoadPreviousDomain: null, + + // Callback after finishing all actions on the calendar + onComplete: null, + + // Callback after fetching the datas, but before applying them to the calendar + // Used mainly to convert the datas if they're not formatted like expected + // Takes the fetched "data" object as argument, must return a json object + // formatted like {timestamp:count, timestamp2:count2}, + afterLoadData: function (data) { + return data; + }, + + // Callback triggered after calling and completing update(). + afterUpdate: null, + + // Callback triggered after calling next(). + // The `status` argument is equal to true if there is no + // more next domain to load + // + // This callback is also executed once, after calling previous(), + // only when the max domain is reached + onMaxDomainReached: null, + + // Callback triggered after calling previous(). + // The `status` argument is equal to true if there is no + // more previous domain to load + // + // This callback is also executed once, after calling next(), + // only when the min domain is reached + onMinDomainReached: null, + }; + + this._domainType = { + min: { + name: 'minute', + level: 10, + maxItemNumber: 60, + defaultRowNumber: 10, + defaultColumnNumber: 6, + row: function (d) { + return self.getSubDomainRowNumber(d); + }, + column: function (d) { + return self.getSubDomainColumnNumber(d); + }, + position: { + x: function (d) { + return Math.floor(d.getMinutes() / self._domainType.min.row(d)); + }, + y: function (d) { + return d.getMinutes() % self._domainType.min.row(d); + }, + }, + format: { + date: '%H:%M, %A %B %-e, %Y', + legend: '', + connector: 'at', + }, + extractUnit: function (d) { + return new Date( + d.getFullYear(), + d.getMonth(), + d.getDate(), + d.getHours(), + d.getMinutes(), + ).getTime(); + }, + }, + hour: { + name: 'hour', + level: 20, + maxItemNumber: function (d) { + switch (self.options.domain) { + case 'day': + return 24; + case 'week': + return 24 * 7; + case 'month': + return ( + 24 * + (self.options.domainDynamicDimension + ? self.getDayCountInMonth(d) + : 31) + ); + } + }, + defaultRowNumber: 6, + defaultColumnNumber: function (d) { + switch (self.options.domain) { + case 'day': + return 4; + case 'week': + return 28; + case 'month': + return self.options.domainDynamicDimension + ? self.getDayCountInMonth(d) + : 31; + } + }, + row: function (d) { + return self.getSubDomainRowNumber(d); + }, + column: function (d) { + return self.getSubDomainColumnNumber(d); + }, + position: { + x: function (d) { + if (self.options.domain === 'month') { + if (self.options.colLimit > 0 || self.options.rowLimit > 0) { + return Math.floor( + (d.getHours() + (d.getDate() - 1) * 24) / + self._domainType.hour.row(d), + ); + } + return ( + Math.floor(d.getHours() / self._domainType.hour.row(d)) + + (d.getDate() - 1) * 4 + ); + } else if (self.options.domain === 'week') { + if (self.options.colLimit > 0 || self.options.rowLimit > 0) { + return Math.floor( + (d.getHours() + self.getWeekDay(d) * 24) / + self._domainType.hour.row(d), + ); + } + return ( + Math.floor(d.getHours() / self._domainType.hour.row(d)) + + self.getWeekDay(d) * 4 + ); + } + return Math.floor(d.getHours() / self._domainType.hour.row(d)); + }, + y: function (d) { + var p = d.getHours(); + if (self.options.colLimit > 0 || self.options.rowLimit > 0) { + switch (self.options.domain) { + case 'month': + p += (d.getDate() - 1) * 24; + break; + case 'week': + p += self.getWeekDay(d) * 24; + break; + } + } + return Math.floor(p % self._domainType.hour.row(d)); + }, + }, + format: { + date: '%Hh, %A %B %-e, %Y', + legend: '%H:00', + connector: 'at', + }, + extractUnit: function (d) { + return new Date( + d.getFullYear(), + d.getMonth(), + d.getDate(), + d.getHours(), + ).getTime(); + }, + }, + day: { + name: 'day', + level: 30, + maxItemNumber: function (d) { + switch (self.options.domain) { + case 'week': + return 7; + case 'month': + return self.options.domainDynamicDimension + ? self.getDayCountInMonth(d) + : 31; + case 'year': + return self.options.domainDynamicDimension + ? self.getDayCountInYear(d) + : 366; + } + }, + defaultColumnNumber: function (d) { + d = new Date(d); + switch (self.options.domain) { + case 'week': + return 1; + case 'month': + return self.options.domainDynamicDimension && + !self.options.verticalOrientation + ? self.getWeekNumber( + new Date(d.getFullYear(), d.getMonth() + 1, 0), + ) - + self.getWeekNumber(d) + + 1 + : 6; + case 'year': + return self.options.domainDynamicDimension + ? self.getWeekNumber(new Date(d.getFullYear(), 11, 31)) - + self.getWeekNumber(new Date(d.getFullYear(), 0)) + + 1 + : 54; + } + }, + defaultRowNumber: 7, + row: function (d) { + return self.getSubDomainRowNumber(d); + }, + column: function (d) { + return self.getSubDomainColumnNumber(d); + }, + position: { + x: function (d) { + switch (self.options.domain) { + case 'week': + return Math.floor( + self.getWeekDay(d) / self._domainType.day.row(d), + ); + case 'month': + if (self.options.colLimit > 0 || self.options.rowLimit > 0) { + return Math.floor( + (d.getDate() - 1) / self._domainType.day.row(d), + ); + } + return ( + self.getWeekNumber(d) - + self.getWeekNumber(new Date(d.getFullYear(), d.getMonth())) + ); + case 'year': + if (self.options.colLimit > 0 || self.options.rowLimit > 0) { + return Math.floor( + (self.getDayOfYear(d) - 1) / self._domainType.day.row(d), + ); + } + return self.getWeekNumber(d); + } + }, + y: function (d) { + var p = self.getWeekDay(d); + if (self.options.colLimit > 0 || self.options.rowLimit > 0) { + switch (self.options.domain) { + case 'year': + p = self.getDayOfYear(d) - 1; + break; + case 'week': + p = self.getWeekDay(d); + break; + case 'month': + p = d.getDate() - 1; + break; + } + } + return Math.floor(p % self._domainType.day.row(d)); + }, + }, + format: { + date: '%A %B %-e, %Y', + legend: '%e %b', + connector: 'on', + }, + extractUnit: function (d) { + return new Date(d.getFullYear(), d.getMonth(), d.getDate()).getTime(); + }, + }, + week: { + name: 'week', + level: 40, + maxItemNumber: 54, + defaultColumnNumber: function (d) { + d = new Date(d); + switch (self.options.domain) { + case 'year': + return self._domainType.week.maxItemNumber; + case 'month': + return self.options.domainDynamicDimension + ? self.getWeekNumber( + new Date(d.getFullYear(), d.getMonth() + 1, 0), + ) - self.getWeekNumber(d) + : 5; + } + }, + defaultRowNumber: 1, + row: function (d) { + return self.getSubDomainRowNumber(d); + }, + column: function (d) { + return self.getSubDomainColumnNumber(d); + }, + position: { + x: function (d) { + switch (self.options.domain) { + case 'year': + return Math.floor( + self.getWeekNumber(d) / self._domainType.week.row(d), + ); + case 'month': + return Math.floor( + self.getMonthWeekNumber(d) / self._domainType.week.row(d), + ); + } + }, + y: function (d) { + return self.getWeekNumber(d) % self._domainType.week.row(d); + }, + }, + format: { + date: '%B Week #%W', + legend: '%B Week #%W', + connector: 'in', + }, + extractUnit: function (d) { + var dt = new Date(d.getFullYear(), d.getMonth(), d.getDate()); + // According to ISO-8601, week number computation are based on week starting on Monday + var weekDay = dt.getDay() - (self.options.weekStartOnMonday ? 1 : 0); + if (weekDay < 0) { + weekDay = 6; + } + dt.setDate(dt.getDate() - weekDay); + return dt.getTime(); + }, + }, + month: { + name: 'month', + level: 50, + maxItemNumber: 12, + defaultColumnNumber: 12, + defaultRowNumber: 1, + row: function () { + return self.getSubDomainRowNumber(); + }, + column: function () { + return self.getSubDomainColumnNumber(); + }, + position: { + x: function (d) { + return Math.floor(d.getMonth() / self._domainType.month.row(d)); + }, + y: function (d) { + return d.getMonth() % self._domainType.month.row(d); + }, + }, + format: { + date: '%B %Y', + legend: '%B', + connector: 'in', + }, + extractUnit: function (d) { + return new Date(d.getFullYear(), d.getMonth()).getTime(); + }, + }, + year: { + name: 'year', + level: 60, + row: function () { + return self.options.rowLimit || 1; + }, + column: function () { + return self.options.colLimit || 1; + }, + position: { + x: function () { + return 1; + }, + y: function () { + return 1; + }, + }, + format: { + date: '%Y', + legend: '%Y', + connector: 'in', + }, + extractUnit: function (d) { + return new Date(d.getFullYear()).getTime(); + }, + }, + }; + + for (var type in this._domainType) { + if (this._domainType.hasOwnProperty(type)) { + var d = this._domainType[type]; + this._domainType['x_' + type] = { + name: 'x_' + type, + level: d.type, + maxItemNumber: d.maxItemNumber, + defaultRowNumber: d.defaultRowNumber, + defaultColumnNumber: d.defaultColumnNumber, + row: d.column, + column: d.row, + position: { + x: d.position.y, + y: d.position.x, + }, + format: d.format, + extractUnit: d.extractUnit, + }; + } + } + + // Record the address of the last inserted domain when browsing + this.lastInsertedSvg = null; + + this._completed = false; + + // Record all the valid domains + // Each domain value is a timestamp in milliseconds + this._domains = d3.map(); + + this.graphDim = { + width: 0, + height: 0, + }; + + this.legendDim = { + width: 0, + height: 0, + }; + + this.NAVIGATE_LEFT = 1; + this.NAVIGATE_RIGHT = 2; + + // Various update mode when using the update() API + this.RESET_ALL_ON_UPDATE = 0; + this.RESET_SINGLE_ON_UPDATE = 1; + this.APPEND_ON_UPDATE = 2; + + this.DEFAULT_LEGEND_MARGIN = 10; + + this.root = null; + this.tooltip = null; + + this._maxDomainReached = false; + this._minDomainReached = false; + + this.domainPosition = new DomainPosition(); + this.Legend = null; + this.legendScale = null; + + // List of domains that are skipped because of DST + // All times belonging to these domains should be re-assigned to the previous domain + this.DSTDomain = []; + + /** + * Display the graph for the first time + * @return bool True if the calendar is created + */ + this._init = function () { + self + .getDomain(self.options.start) + .map(function (d) { + return d.getTime(); + }) + .map(function (d) { + self._domains.set( + d, + self.getSubDomain(d).map(function (d) { + return { + t: self._domainType[self.options.subDomain].extractUnit(d), + v: null, + }; + }), + ); + }); + + self.root = d3 + .select(self.options.itemSelector) + .append('svg') + .attr('class', 'cal-heatmap-container'); + + self.root.attr('x', 0).attr('y', 0).append('svg').attr('class', 'graph'); + + self.Legend = new Legend(self); + + if (self.options.paintOnLoad) { + _initCalendar(); + } + self.root.call(self.tip); + self.root.call(self.legendTip); + + return true; + }; + + function _initCalendar() { + self.verticalDomainLabel = + self.options.label.position === 'top' || + self.options.label.position === 'bottom'; + + self.domainVerticalLabelHeight = + self.options.label.height === null + ? Math.max(25, self.options.cellSize * 2) + : self.options.label.height; + self.domainHorizontalLabelWidth = 0; + + if ( + self.options.domainLabelFormat === '' && + self.options.label.height === null + ) { + self.domainVerticalLabelHeight = 0; + } + + if (!self.verticalDomainLabel) { + self.domainVerticalLabelHeight = 0; + self.domainHorizontalLabelWidth = self.options.label.width; + } + + self.paint(); + + // =========================================================================// + // ATTACHING DOMAIN NAVIGATION EVENT // + // =========================================================================// + if (self.options.nextSelector !== false) { + d3.select(self.options.nextSelector).on( + 'click.' + self.options.itemNamespace, + function () { + d3.event.preventDefault(); + return self.loadNextDomain(1); + }, + ); + } + + if (self.options.previousSelector !== false) { + d3.select(self.options.previousSelector).on( + 'click.' + self.options.itemNamespace, + function () { + d3.event.preventDefault(); + return self.loadPreviousDomain(1); + }, + ); + } + + self.Legend.redraw( + self.graphDim.width - + self.options.domainGutter - + self.options.cellPadding, + ); + self.afterLoad(); + + var domains = self.getDomainKeys(); + + // Fill the graph with some datas + if (self.options.loadOnInit) { + self.getDatas( + self.options.data, + new Date(domains[0]), + self.getSubDomain(domains[domains.length - 1]).pop(), + function () { + self.fill(); + self.onComplete(); + }, + ); + } else { + self.onComplete(); + } + + self.checkIfMinDomainIsReached(domains[0]); + self.checkIfMaxDomainIsReached(self.getNextDomain().getTime()); + } + + // Return the width of the domain block, without the domain gutter + // @param int d Domain start timestamp + function w(d, outer) { + var width = + self.options.cellSize * + self._domainType[self.options.subDomain].column(d) + + self.options.cellPadding * + self._domainType[self.options.subDomain].column(d); + if (arguments.length === 2 && outer === true) { + return (width += + self.domainHorizontalLabelWidth + + self.options.domainGutter + + self.options.domainMargin[1] + + self.options.domainMargin[3]); + } + return width; + } + + // Return the height of the domain block, without the domain gutter + function h(d, outer) { + var height = + self.options.cellSize * self._domainType[self.options.subDomain].row(d) + + self.options.cellPadding * + self._domainType[self.options.subDomain].row(d); + if (arguments.length === 2 && outer === true) { + height += + self.options.domainGutter + + self.domainVerticalLabelHeight + + self.options.domainMargin[0] + + self.options.domainMargin[2]; + } + return height; + } + + /** + * + * + * @param int navigationDir + */ + this.paint = function (navigationDir) { + var options = self.options; + + if (arguments.length === 0) { + navigationDir = false; + } + + // Painting all the domains + var domainSvg = self.root + .select('.graph') + .selectAll('.graph-domain') + .data( + function () { + var data = self.getDomainKeys(); + return navigationDir === self.NAVIGATE_LEFT ? data.reverse() : data; + }, + function (d) { + return d; + }, + ); + var enteringDomainDim = 0; + var exitingDomainDim = 0; + + // =========================================================================// + // PAINTING DOMAIN // + // =========================================================================// + + var svg = domainSvg + .enter() + .append('svg') + .attr('width', function (d) { + return w(d, true); + }) + .attr('height', function (d) { + return h(d, true); + }) + .attr('x', function (d) { + if (options.verticalOrientation) { + self.graphDim.width = Math.max(self.graphDim.width, w(d, true)); + return 0; + } else { + return getDomainPosition(d, self.graphDim, 'width', w(d, true)); + } + }) + .attr('y', function (d) { + if (options.verticalOrientation) { + return getDomainPosition(d, self.graphDim, 'height', h(d, true)); + } else { + self.graphDim.height = Math.max(self.graphDim.height, h(d, true)); + return 0; + } + }) + .attr('class', function (d) { + var classname = 'graph-domain'; + var date = new Date(d); + switch (options.domain) { + case 'hour': + classname += ' h_' + date.getHours(); + /* falls through */ + case 'day': + classname += ' d_' + date.getDate() + ' dy_' + date.getDay(); + /* falls through */ + case 'week': + classname += ' w_' + self.getWeekNumber(date); + /* falls through */ + case 'month': + classname += ' m_' + (date.getMonth() + 1); + /* falls through */ + case 'year': + classname += ' y_' + date.getFullYear(); + } + return classname; + }); + self.lastInsertedSvg = svg; + + function getDomainPosition(domainIndex, graphDim, axis, domainDim) { + var tmp = 0; + switch (navigationDir) { + case false: + tmp = graphDim[axis]; + + graphDim[axis] += domainDim; + self.domainPosition.setPosition(domainIndex, tmp); + return tmp; + + case self.NAVIGATE_RIGHT: + self.domainPosition.setPosition(domainIndex, graphDim[axis]); + + enteringDomainDim = domainDim; + exitingDomainDim = self.domainPosition.getPositionFromIndex(1); + + self.domainPosition.shiftRightBy(exitingDomainDim); + return graphDim[axis]; + + case self.NAVIGATE_LEFT: + tmp = -domainDim; + + enteringDomainDim = -tmp; + exitingDomainDim = graphDim[axis] - self.domainPosition.getLast(); + + self.domainPosition.setPosition(domainIndex, tmp); + self.domainPosition.shiftLeftBy(enteringDomainDim); + return tmp; + } + } + + svg + .append('rect') + .attr('width', function (d) { + return w(d, true) - options.domainGutter - options.cellPadding; + }) + .attr('height', function (d) { + return h(d, true) - options.domainGutter - options.cellPadding; + }) + .attr('class', 'domain-background'); + + // =========================================================================// + // PAINTING SUBDOMAINS // + // =========================================================================// + var subDomainSvgGroup = svg + .append('svg') + .attr('x', function () { + if (options.label.position === 'left') { + return self.domainHorizontalLabelWidth + options.domainMargin[3]; + } else { + return options.domainMargin[3]; + } + }) + .attr('y', function () { + if (options.label.position === 'top') { + return self.domainVerticalLabelHeight + options.domainMargin[0]; + } else { + return options.domainMargin[0]; + } + }) + .attr('class', 'graph-subdomain-group'); + var rect = subDomainSvgGroup + .selectAll('g') + .data(function (d) { + return self._domains.get(d); + }) + .enter() + .append('g'); + rect + .append('rect') + .attr('class', function (d) { + return ( + 'graph-rect' + + self.getHighlightClassName(d.t) + + (options.onClick !== null ? ' hover_cursor' : '') + ); + }) + .attr('width', options.cellSize) + .attr('height', options.cellSize) + .attr('x', function (d) { + return self.positionSubDomainX(d.t); + }) + .attr('y', function (d) { + return self.positionSubDomainY(d.t); + }) + .on('click', function (d) { + if (options.onClick !== null) { + return self.onClick(new Date(d.t), d.v); + } + }) + .call(function (selection) { + if (options.cellRadius > 0) { + selection + .attr('rx', options.cellRadius) + .attr('ry', options.cellRadius); + } + + if ( + self.legendScale !== null && + options.legendColors !== null && + options.legendColors.hasOwnProperty('base') + ) { + selection.attr('fill', options.legendColors.base); + } + + if (options.tooltip) { + selection + .on('mouseover', function (d) { + self.tip.show(d, this); + }) + .on('mouseout', function () { + self.tip.hide(d); + }); + } + }); + + // Appending a title to each subdomain + if (!options.tooltip) { + rect.append('title').text(function (d) { + return self.formatDate(new Date(d.t), options.subDomainDateFormat); + }); + } + + // =========================================================================// + // PAINTING LABEL // + // =========================================================================// + if (options.domainLabelFormat !== '') { + svg + .append('text') + .attr('class', 'graph-label') + .attr('y', function (d) { + var y = options.domainMargin[0]; + switch (options.label.position) { + case 'top': + y += self.domainVerticalLabelHeight / 2; + break; + case 'bottom': + y += h(d) + self.domainVerticalLabelHeight / 2; + } + + return ( + y + + options.label.offset.y * + ((options.label.rotate === 'right' && + options.label.position === 'right') || + (options.label.rotate === 'left' && + options.label.position === 'left') + ? -1 + : 1) + ); + }) + .attr('x', function (d) { + var x = options.domainMargin[3]; + switch (options.label.position) { + case 'right': + x += w(d); + break; + case 'bottom': + case 'top': + x += w(d) / 2; + } + + if (options.label.align === 'right') { + return ( + x + + self.domainHorizontalLabelWidth - + options.label.offset.x * + (options.label.rotate === 'right' ? -1 : 1) + ); + } + return x + options.label.offset.x; + }) + .attr('text-anchor', function () { + switch (options.label.align) { + case 'start': + case 'left': + return 'start'; + case 'end': + case 'right': + return 'end'; + default: + return 'middle'; + } + }) + .attr('dominant-baseline', function () { + return self.verticalDomainLabel ? 'middle' : 'top'; + }) + .text(function (d) { + return self.formatDate(new Date(d), options.domainLabelFormat); + }) + .call(domainRotate); + } + + function domainRotate(selection) { + switch (options.label.rotate) { + case 'right': + selection.attr('transform', function (d) { + var s = 'rotate(90), '; + switch (options.label.position) { + case 'right': + s += 'translate(-' + w(d) + ' , -' + w(d) + ')'; + break; + case 'left': + s += 'translate(0, -' + self.domainHorizontalLabelWidth + ')'; + break; + } + + return s; + }); + break; + case 'left': + selection.attr('transform', function (d) { + var s = 'rotate(270), '; + switch (options.label.position) { + case 'right': + s += + 'translate(-' + + (w(d) + self.domainHorizontalLabelWidth) + + ' , ' + + w(d) + + ')'; + break; + case 'left': + s += + 'translate(-' + + self.domainHorizontalLabelWidth + + ' , ' + + self.domainHorizontalLabelWidth + + ')'; + break; + } + + return s; + }); + break; + } + } + + // =========================================================================// + // PAINTING DOMAIN SUBDOMAIN CONTENT // + // =========================================================================// + if (options.subDomainTextFormat !== null) { + rect + .append('text') + .attr('class', function (d) { + return 'subdomain-text' + self.getHighlightClassName(d.t); + }) + .attr('x', function (d) { + return self.positionSubDomainX(d.t) + options.cellSize / 2; + }) + .attr('y', function (d) { + return self.positionSubDomainY(d.t) + options.cellSize / 2; + }) + .attr('text-anchor', 'middle') + .attr('dominant-baseline', 'central') + .text(function (d) { + return self.formatDate(new Date(d.t), options.subDomainTextFormat); + }); + } + + // =========================================================================// + // ANIMATION // + // =========================================================================// + + if (navigationDir !== false) { + domainSvg + .transition() + .duration(options.animationDuration) + .attr('x', function (d) { + return options.verticalOrientation + ? 0 + : self.domainPosition.getPosition(d); + }) + .attr('y', function (d) { + return options.verticalOrientation + ? self.domainPosition.getPosition(d) + : 0; + }); + } + + var tempWidth = self.graphDim.width; + var tempHeight = self.graphDim.height; + + if (options.verticalOrientation) { + self.graphDim.height += enteringDomainDim - exitingDomainDim; + } else { + self.graphDim.width += enteringDomainDim - exitingDomainDim; + } + + // At the time of exit, domainsWidth and domainsHeight already automatically shifted + domainSvg + .exit() + .transition() + .duration(options.animationDuration) + .attr('x', function (d) { + if (options.verticalOrientation) { + return 0; + } else { + switch (navigationDir) { + case self.NAVIGATE_LEFT: + return Math.min(self.graphDim.width, tempWidth); + case self.NAVIGATE_RIGHT: + return -w(d, true); + } + } + }) + .attr('y', function (d) { + if (options.verticalOrientation) { + switch (navigationDir) { + case self.NAVIGATE_LEFT: + return Math.min(self.graphDim.height, tempHeight); + case self.NAVIGATE_RIGHT: + return -h(d, true); + } + } else { + return 0; + } + }) + .remove(); + + // Resize the root container + self.resize(); + }; +}; + +CalHeatMap.prototype = { + /** + * Validate and merge user settings with default settings + * + * @param {object} settings User settings + * @return {bool} False if settings contains error + */ + /* jshint maxstatements:false */ + init: function (settings) { + 'use strict'; + + var parent = this; + + var options = (parent.options = mergeRecursive(parent.options, settings)); + + // Fatal errors + // Stop script execution on error + validateDomainType(); + validateSelector(options.itemSelector, false, 'itemSelector'); + + if (parent.allowedDataType.indexOf(options.dataType) === -1) { + throw new Error( + "The data type '" + options.dataType + "' is not valid data type", + ); + } + + if (d3.select(options.itemSelector)[0][0] === null) { + throw new Error( + "The node '" + + options.itemSelector + + "' specified in itemSelector does not exists", + ); + } + + try { + validateSelector(options.nextSelector, true, 'nextSelector'); + validateSelector(options.previousSelector, true, 'previousSelector'); + } catch (error) { + console.log(error.message); + return false; + } + + // If other settings contains error, will fallback to default + + if (!settings.hasOwnProperty('subDomain')) { + this.options.subDomain = getOptimalSubDomain(settings.domain); + } + + if ( + typeof options.itemNamespace !== 'string' || + options.itemNamespace === '' + ) { + console.log( + 'itemNamespace can not be empty, falling back to cal-heatmap', + ); + options.itemNamespace = 'cal-heatmap'; + } + + // Don't touch these settings + var s = [ + 'data', + 'onComplete', + 'onClick', + 'afterLoad', + 'afterLoadData', + 'afterLoadPreviousDomain', + 'afterLoadNextDomain', + 'afterUpdate', + ]; + + for (var k in s) { + if (settings.hasOwnProperty(s[k])) { + options[s[k]] = settings[s[k]]; + } + } + + options.subDomainDateFormat = + typeof options.subDomainDateFormat === 'string' || + typeof options.subDomainDateFormat === 'function' + ? options.subDomainDateFormat + : this._domainType[options.subDomain].format.date; + options.domainLabelFormat = + typeof options.domainLabelFormat === 'string' || + typeof options.domainLabelFormat === 'function' + ? options.domainLabelFormat + : this._domainType[options.domain].format.legend; + options.subDomainTextFormat = + (typeof options.subDomainTextFormat === 'string' && + options.subDomainTextFormat !== '') || + typeof options.subDomainTextFormat === 'function' + ? options.subDomainTextFormat + : null; + options.domainMargin = expandMarginSetting(options.domainMargin); + options.legendMargin = expandMarginSetting(options.legendMargin); + options.highlight = parent.expandDateSetting(options.highlight); + options.itemName = expandItemName(options.itemName); + options.colLimit = parseColLimit(options.colLimit); + options.rowLimit = parseRowLimit(options.rowLimit); + if (!settings.hasOwnProperty('legendMargin')) { + autoAddLegendMargin(); + } + autoAlignLabel(); + + /** + * Validate that a queryString is valid + * + * @param {Element|string|bool} selector The queryString to test + * @param {bool} canBeFalse Whether false is an accepted and valid value + * @param {string} name Name of the tested selector + * @throws {Error} If the selector is not valid + * @return {bool} True if the selector is a valid queryString + */ + function validateSelector(selector, canBeFalse, name) { + if ( + ((canBeFalse && selector === false) || + selector instanceof Element || + typeof selector === 'string') && + selector !== '' + ) { + return true; + } + throw new Error('The ' + name + ' is not valid'); + } + + /** + * Return the optimal subDomain for the specified domain + * + * @param {string} domain a domain name + * @return {string} the subDomain name + */ + function getOptimalSubDomain(domain) { + switch (domain) { + case 'year': + return 'month'; + case 'month': + return 'day'; + case 'week': + return 'day'; + case 'day': + return 'hour'; + default: + return 'min'; + } + } + + /** + * Ensure that the domain and subdomain are valid + * + * @throw {Error} when domain or subdomain are not valid + * @return {bool} True if domain and subdomain are valid and compatible + */ + function validateDomainType() { + if ( + !parent._domainType.hasOwnProperty(options.domain) || + options.domain === 'min' || + options.domain.substring(0, 2) === 'x_' + ) { + throw new Error("The domain '" + options.domain + "' is not valid"); + } + + if ( + !parent._domainType.hasOwnProperty(options.subDomain) || + options.subDomain === 'year' + ) { + throw new Error( + "The subDomain '" + options.subDomain + "' is not valid", + ); + } + + if ( + parent._domainType[options.domain].level <= + parent._domainType[options.subDomain].level + ) { + throw new Error( + "'" + + options.subDomain + + "' is not a valid subDomain to '" + + options.domain + + "'", + ); + } + + return true; + } + + /** + * Fine-tune the label alignement depending on its position + * + * @return void + */ + function autoAlignLabel() { + // Auto-align label, depending on it's position + if ( + !settings.hasOwnProperty('label') || + (settings.hasOwnProperty('label') && + !settings.label.hasOwnProperty('align')) + ) { + switch (options.label.position) { + case 'left': + options.label.align = 'right'; + break; + case 'right': + options.label.align = 'left'; + break; + default: + options.label.align = 'center'; + } + + if (options.label.rotate === 'left') { + options.label.align = 'right'; + } else if (options.label.rotate === 'right') { + options.label.align = 'left'; + } + } + + if ( + !settings.hasOwnProperty('label') || + (settings.hasOwnProperty('label') && + !settings.label.hasOwnProperty('offset')) + ) { + if ( + options.label.position === 'left' || + options.label.position === 'right' + ) { + options.label.offset = { + x: 10, + y: 15, + }; + } + } + } + + /** + * If not specified, add some margin around the legend depending on its position + * + * @return void + */ + function autoAddLegendMargin() { + switch (options.legendVerticalPosition) { + case 'top': + options.legendMargin[2] = parent.DEFAULT_LEGEND_MARGIN; + break; + case 'bottom': + options.legendMargin[0] = parent.DEFAULT_LEGEND_MARGIN; + break; + case 'middle': + case 'center': + options.legendMargin[ + options.legendHorizontalPosition === 'right' ? 3 : 1 + ] = parent.DEFAULT_LEGEND_MARGIN; + } + } + + /** + * Expand a number of an array of numbers to an usable 4 values array + * + * @param {integer|array} value + * @return {array} array + */ + function expandMarginSetting(value) { + if (typeof value === 'number') { + value = [value]; + } + + if (!Array.isArray(value)) { + console.log('Margin only takes an integer or an array of integers'); + value = [0]; + } + + switch (value.length) { + case 1: + return [value[0], value[0], value[0], value[0]]; + case 2: + return [value[0], value[1], value[0], value[1]]; + case 3: + return [value[0], value[1], value[2], value[1]]; + case 4: + return value; + default: + return value.slice(0, 4); + } + } + + /** + * Convert a string to an array like [singular-form, plural-form] + * + * @param {string|array} value Date to convert + * @return {array} An array like [singular-form, plural-form] + */ + function expandItemName(value) { + if (typeof value === 'string') { + return [value, value + (value !== '' ? 's' : '')]; + } + + if (Array.isArray(value)) { + if (value.length === 1) { + return [value[0], value[0] + 's']; + } else if (value.length > 2) { + return value.slice(0, 2); + } + + return value; + } + + return ['item', 'items']; + } + + function parseColLimit(value) { + return value > 0 ? value : null; + } + + function parseRowLimit(value) { + if (value > 0 && options.colLimit > 0) { + console.log( + 'colLimit and rowLimit are mutually exclusive, rowLimit will be ignored', + ); + return null; + } + return value > 0 ? value : null; + } + + return this._init(); + }, + + /** + * Convert a keyword or an array of keyword/date to an array of date objects + * + * @param {string|array|Date} value Data to convert + * @return {array} An array of Dates + */ + expandDateSetting: function (value) { + 'use strict'; + + if (!Array.isArray(value)) { + value = [value]; + } + + return value + .map(function (data) { + if (data === 'now') { + return new Date(); + } + if (data instanceof Date) { + return data; + } + return false; + }) + .filter(function (d) { + return d !== false; + }); + }, + + /** + * Fill the calendar by coloring the cells + * + * @param array svg An array of html node to apply the transformation to (optional) + * It's used to limit the painting to only a subset of the calendar + * @return void + */ + fill: function (svg) { + 'use strict'; + + var parent = this; + var options = parent.options; + + if (arguments.length === 0) { + svg = parent.root.selectAll('.graph-domain'); + } + + var rect = svg + .selectAll('svg') + .selectAll('g') + .data(function (d) { + return parent._domains.get(d); + }); + /** + * Colorize the cell via a style attribute if enabled + */ + function addStyle(element) { + if (parent.legendScale === null) { + return false; + } + + element.attr('fill', function (d) { + if ( + d.v === null && + options.hasOwnProperty('considerMissingDataAsZero') && + !options.considerMissingDataAsZero + ) { + if (options.legendColors.hasOwnProperty('base')) { + return options.legendColors.base; + } + } + + if ( + options.legendColors !== null && + options.legendColors.hasOwnProperty('empty') && + (d.v === 0 || + (d.v === null && + options.hasOwnProperty('considerMissingDataAsZero') && + options.considerMissingDataAsZero)) + ) { + return options.legendColors.empty; + } + + if ( + d.v < 0 && + options.legend[0] > 0 && + options.legendColors !== null && + options.legendColors.hasOwnProperty('overflow') + ) { + return options.legendColors.overflow; + } + + return parent.legendScale( + Math.min(d.v, options.legend[options.legend.length - 1]), + ); + }); + } + + rect + .transition() + .duration(options.animationDuration) + .select('rect') + .attr('class', function (d) { + var htmlClass = parent.getHighlightClassName(d.t).trim().split(' '); + var pastDate = parent.dateIsLessThan(d.t, new Date()); + var sameDate = parent.dateIsEqual(d.t, new Date()); + + if ( + parent.legendScale === null || + (d.v === null && + options.hasOwnProperty('considerMissingDataAsZero') && + !options.considerMissingDataAsZero && + !options.legendColors.hasOwnProperty('base')) + ) { + htmlClass.push('graph-rect'); + } + + if (sameDate) { + htmlClass.push('now'); + } else if (!pastDate) { + htmlClass.push('future'); + } + + if (d.v !== null) { + htmlClass.push( + parent.Legend.getClass(d.v, parent.legendScale === null), + ); + } else if (options.considerMissingDataAsZero && pastDate) { + htmlClass.push( + parent.Legend.getClass(0, parent.legendScale === null), + ); + } + + if (options.onClick !== null) { + htmlClass.push('hover_cursor'); + } + + return htmlClass.join(' '); + }) + .call(addStyle); + + rect + .transition() + .duration(options.animationDuration) + .select('title') + .text(function (d) { + return parent.getSubDomainTitle(d); + }); + + function formatSubDomainText(element) { + if (typeof options.subDomainTextFormat === 'function') { + element.text(function (d) { + return options.subDomainTextFormat(d.t, d.v); + }); + } + } + + /** + * Change the subDomainText class if necessary + * Also change the text, e.g when text is representing the value + * instead of the date + */ + rect + .transition() + .duration(options.animationDuration) + .select('text') + .attr('class', function (d) { + return 'subdomain-text' + parent.getHighlightClassName(d.t); + }) + .call(formatSubDomainText) + .attr('fill', d => { + if (!d.v) return '#000'; + const rgb = parent.legendScale( + Math.min(d.v, options.legend[options.legend.length - 1]), + ); + return getContrastingColor(rgb, 135); + }); + }, + + /** + * Sprintf like function. + * Replaces placeholders {0} in string with values from provided object. + * + * @param string formatted String containing placeholders. + * @param object args Object with properties to replace placeholders in string. + * + * @return String + */ + formatStringWithObject: function (formatted, args) { + 'use strict'; + for (var prop in args) { + if (args.hasOwnProperty(prop)) { + var regexp = new RegExp('\\{' + prop + '\\}', 'gi'); + formatted = formatted.replace(regexp, args[prop]); + } + } + return formatted; + }, + + // =========================================================================// + // EVENTS CALLBACK // + // =========================================================================// + + /** + * Helper method for triggering event callback + * + * @param string eventName Name of the event to trigger + * @param array successArgs List of argument to pass to the callback + * @param boolean skip Whether to skip the event triggering + * @return mixed True when the triggering was skipped, false on error, else the callback function + */ + triggerEvent: function (eventName, successArgs, skip) { + 'use strict'; + + if ((arguments.length === 3 && skip) || this.options[eventName] === null) { + return true; + } + + if (typeof this.options[eventName] === 'function') { + if (typeof successArgs === 'function') { + successArgs = successArgs(); + } + return this.options[eventName].apply(this, successArgs); + } else { + console.log('Provided callback for ' + eventName + ' is not a function.'); + return false; + } + }, + + /** + * Event triggered on a mouse click on a subDomain cell + * + * @param Date d Date of the subdomain block + * @param int itemNb Number of items in that date + */ + onClick: function (d, itemNb) { + 'use strict'; + + return this.triggerEvent('onClick', [d, itemNb]); + }, + + /** + * Event triggered after drawing the calendar, byt before filling it with data + */ + afterLoad: function () { + 'use strict'; + + return this.triggerEvent('afterLoad'); + }, + + /** + * Event triggered after completing drawing and filling the calendar + */ + onComplete: function () { + 'use strict'; + + var response = this.triggerEvent('onComplete', [], this._completed); + this._completed = true; + return response; + }, + + /** + * Event triggered after shifting the calendar one domain back + * + * @param Date start Domain start date + * @param Date end Domain end date + */ + afterLoadPreviousDomain: function (start) { + 'use strict'; + + var parent = this; + return this.triggerEvent('afterLoadPreviousDomain', function () { + var subDomain = parent.getSubDomain(start); + return [subDomain.shift(), subDomain.pop()]; + }); + }, + + /** + * Event triggered after shifting the calendar one domain above + * + * @param Date start Domain start date + * @param Date end Domain end date + */ + afterLoadNextDomain: function (start) { + 'use strict'; + + var parent = this; + return this.triggerEvent('afterLoadNextDomain', function () { + var subDomain = parent.getSubDomain(start); + return [subDomain.shift(), subDomain.pop()]; + }); + }, + + /** + * Event triggered after loading the leftmost domain allowed by minDate + * + * @param boolean reached True if the leftmost domain was reached + */ + onMinDomainReached: function (reached) { + 'use strict'; + + this._minDomainReached = reached; + return this.triggerEvent('onMinDomainReached', [reached]); + }, + + /** + * Event triggered after loading the rightmost domain allowed by maxDate + * + * @param boolean reached True if the rightmost domain was reached + */ + onMaxDomainReached: function (reached) { + 'use strict'; + + this._maxDomainReached = reached; + return this.triggerEvent('onMaxDomainReached', [reached]); + }, + + checkIfMinDomainIsReached: function (date, upperBound) { + 'use strict'; + + if (this.minDomainIsReached(date)) { + this.onMinDomainReached(true); + } + + if (arguments.length === 2) { + if (this._maxDomainReached && !this.maxDomainIsReached(upperBound)) { + this.onMaxDomainReached(false); + } + } + }, + + checkIfMaxDomainIsReached: function (date, lowerBound) { + 'use strict'; + + if (this.maxDomainIsReached(date)) { + this.onMaxDomainReached(true); + } + + if (arguments.length === 2) { + if (this._minDomainReached && !this.minDomainIsReached(lowerBound)) { + this.onMinDomainReached(false); + } + } + }, + + afterUpdate: function () { + 'use strict'; + + return this.triggerEvent('afterUpdate'); + }, + + // =========================================================================// + // FORMATTER // + // =========================================================================// + + formatNumber: d3.format(',g'), + + formatDate: function (d, format) { + 'use strict'; + + if (arguments.length < 2) { + format = 'title'; + } + + if (typeof format === 'function') { + return format(d); + } else { + var f = d3.time.format(format); + return f(d); + } + }, + + getSubDomainTitle: function (d) { + 'use strict'; + + if (d.v === null && !this.options.considerMissingDataAsZero) { + return this.formatStringWithObject( + this.options.subDomainTitleFormat.empty, + { + date: this.formatDate( + new Date(d.t), + this.options.subDomainDateFormat, + ), + }, + ); + } else { + var value = d.v; + // Consider null as 0 + if (value === null && this.options.considerMissingDataAsZero) { + value = 0; + } + + return this.formatStringWithObject( + this.options.subDomainTitleFormat.filled, + { + count: this.formatNumber(value), + name: this.options.itemName[value !== 1 ? 1 : 0], + connector: this._domainType[this.options.subDomain].format.connector, + date: this.formatDate( + new Date(d.t), + this.options.subDomainDateFormat, + ), + }, + ); + } + }, + + // =========================================================================// + // DOMAIN NAVIGATION // + // =========================================================================// + + /** + * Shift the calendar one domain forward + * + * The new domain is loaded only if it's not beyond maxDate + * + * @param int n Number of domains to load + * @return bool True if the next domain was loaded, else false + */ + loadNextDomain: function (n) { + 'use strict'; + + if (this._maxDomainReached || n === 0) { + return false; + } + + var bound = this.loadNewDomains( + this.NAVIGATE_RIGHT, + this.getDomain(this.getNextDomain(), n), + ); + + this.afterLoadNextDomain(bound.end); + this.checkIfMaxDomainIsReached(this.getNextDomain().getTime(), bound.start); + + return true; + }, + + /** + * Shift the calendar one domain backward + * + * The previous domain is loaded only if it's not beyond the minDate + * + * @param int n Number of domains to load + * @return bool True if the previous domain was loaded, else false + */ + loadPreviousDomain: function (n) { + 'use strict'; + + if (this._minDomainReached || n === 0) { + return false; + } + + var bound = this.loadNewDomains( + this.NAVIGATE_LEFT, + this.getDomain(this.getDomainKeys()[0], -n).reverse(), + ); + + this.afterLoadPreviousDomain(bound.start); + this.checkIfMinDomainIsReached(bound.start, bound.end); + + return true; + }, + + loadNewDomains: function (direction, newDomains) { + 'use strict'; + + var parent = this; + var backward = direction === this.NAVIGATE_LEFT; + var i = -1; + var total = newDomains.length; + var domains = this.getDomainKeys(); + + function buildSubDomain(d) { + return { + t: parent._domainType[parent.options.subDomain].extractUnit(d), + v: null, + }; + } + + // Remove out of bound domains from list of new domains to prepend + while (++i < total) { + if (backward && this.minDomainIsReached(newDomains[i])) { + newDomains = newDomains.slice(0, i + 1); + break; + } + if (!backward && this.maxDomainIsReached(newDomains[i])) { + newDomains = newDomains.slice(0, i); + break; + } + } + + newDomains = newDomains.slice(-this.options.range); + + for (i = 0, total = newDomains.length; i < total; i += 1) { + this._domains.set( + newDomains[i].getTime(), + this.getSubDomain(newDomains[i]).map(buildSubDomain), + ); + + this._domains.remove(backward ? domains.pop() : domains.shift()); + } + + domains = this.getDomainKeys(); + + if (backward) { + newDomains = newDomains.reverse(); + } + + this.paint(direction); + + this.getDatas( + this.options.data, + newDomains[0], + this.getSubDomain(newDomains[newDomains.length - 1]).pop(), + function () { + parent.fill(parent.lastInsertedSvg); + }, + ); + + return { + start: newDomains[backward ? 0 : 1], + end: domains[domains.length - 1], + }; + }, + + /** + * Return whether a date is inside the scope determined by maxDate + * + * @param int datetimestamp The timestamp in ms to test + * @return bool True if the specified date correspond to the calendar upper bound + */ + maxDomainIsReached: function (datetimestamp) { + 'use strict'; + + return ( + this.options.maxDate !== null && + this.options.maxDate.getTime() < datetimestamp + ); + }, + + /** + * Return whether a date is inside the scope determined by minDate + * + * @param int datetimestamp The timestamp in ms to test + * @return bool True if the specified date correspond to the calendar lower bound + */ + minDomainIsReached: function (datetimestamp) { + 'use strict'; + + return ( + this.options.minDate !== null && + this.options.minDate.getTime() >= datetimestamp + ); + }, + + /** + * Return the list of the calendar's domain timestamp + * + * @return Array a sorted array of timestamp + */ + getDomainKeys: function () { + 'use strict'; + + return this._domains + .keys() + .map(function (d) { + return parseInt(d, 10); + }) + .sort(function (a, b) { + return a - b; + }); + }, + + // =========================================================================// + // POSITIONNING // + // =========================================================================// + + positionSubDomainX: function (d) { + 'use strict'; + + var index = this._domainType[this.options.subDomain].position.x( + new Date(d), + ); + return index * this.options.cellSize + index * this.options.cellPadding; + }, + + positionSubDomainY: function (d) { + 'use strict'; + + var index = this._domainType[this.options.subDomain].position.y( + new Date(d), + ); + return index * this.options.cellSize + index * this.options.cellPadding; + }, + + getSubDomainColumnNumber: function (d) { + 'use strict'; + + if (this.options.rowLimit > 0) { + var i = this._domainType[this.options.subDomain].maxItemNumber; + if (typeof i === 'function') { + i = i(d); + } + return Math.ceil(i / this.options.rowLimit); + } + + var j = this._domainType[this.options.subDomain].defaultColumnNumber; + if (typeof j === 'function') { + j = j(d); + } + return this.options.colLimit || j; + }, + + getSubDomainRowNumber: function (d) { + 'use strict'; + + if (this.options.colLimit > 0) { + var i = this._domainType[this.options.subDomain].maxItemNumber; + if (typeof i === 'function') { + i = i(d); + } + return Math.ceil(i / this.options.colLimit); + } + + var j = this._domainType[this.options.subDomain].defaultRowNumber; + if (typeof j === 'function') { + j = j(d); + } + return this.options.rowLimit || j; + }, + + /** + * Return a classname if the specified date should be highlighted + * + * @param timestamp date Date of the current subDomain + * @return String the highlight class + */ + getHighlightClassName: function (d) { + 'use strict'; + + d = new Date(d); + + if (this.options.highlight.length > 0) { + for (var i in this.options.highlight) { + if (this.dateIsEqual(this.options.highlight[i], d)) { + return this.isNow(this.options.highlight[i]) + ? ' highlight-now' + : ' highlight'; + } + } + } + return ''; + }, + + /** + * Return whether the specified date is now, + * according to the type of subdomain + * + * @param Date d The date to compare + * @return bool True if the date correspond to a subdomain cell + */ + isNow: function (d) { + 'use strict'; + + return this.dateIsEqual(d, new Date()); + }, + + /** + * Return whether 2 dates are equals + * This function is subdomain-aware, + * and dates comparison are dependent of the subdomain + * + * @param Date dateA First date to compare + * @param Date dateB Secon date to compare + * @return bool true if the 2 dates are equals + */ + /* jshint maxcomplexity: false */ + dateIsEqual: function (dateA, dateB) { + 'use strict'; + + if (!(dateA instanceof Date)) { + dateA = new Date(dateA); + } + + if (!(dateB instanceof Date)) { + dateB = new Date(dateB); + } + + switch (this.options.subDomain) { + case 'x_min': + case 'min': + return ( + dateA.getFullYear() === dateB.getFullYear() && + dateA.getMonth() === dateB.getMonth() && + dateA.getDate() === dateB.getDate() && + dateA.getHours() === dateB.getHours() && + dateA.getMinutes() === dateB.getMinutes() + ); + case 'x_hour': + case 'hour': + return ( + dateA.getFullYear() === dateB.getFullYear() && + dateA.getMonth() === dateB.getMonth() && + dateA.getDate() === dateB.getDate() && + dateA.getHours() === dateB.getHours() + ); + case 'x_day': + case 'day': + return ( + dateA.getFullYear() === dateB.getFullYear() && + dateA.getMonth() === dateB.getMonth() && + dateA.getDate() === dateB.getDate() + ); + case 'x_week': + case 'week': + return ( + dateA.getFullYear() === dateB.getFullYear() && + this.getWeekNumber(dateA) === this.getWeekNumber(dateB) + ); + case 'x_month': + case 'month': + return ( + dateA.getFullYear() === dateB.getFullYear() && + dateA.getMonth() === dateB.getMonth() + ); + default: + return false; + } + }, + + /** + * Returns wether or not dateA is less than or equal to dateB. This function is subdomain aware. + * Performs automatic conversion of values. + * @param dateA may be a number or a Date + * @param dateB may be a number or a Date + * @returns {boolean} + */ + dateIsLessThan: function (dateA, dateB) { + 'use strict'; + + if (!(dateA instanceof Date)) { + dateA = new Date(dateA); + } + + if (!(dateB instanceof Date)) { + dateB = new Date(dateB); + } + + function normalizedMillis(date, subdomain) { + switch (subdomain) { + case 'x_min': + case 'min': + return new Date( + date.getFullYear(), + date.getMonth(), + date.getDate(), + date.getHours(), + date.getMinutes(), + ).getTime(); + case 'x_hour': + case 'hour': + return new Date( + date.getFullYear(), + date.getMonth(), + date.getDate(), + date.getHours(), + ).getTime(); + case 'x_day': + case 'day': + return new Date( + date.getFullYear(), + date.getMonth(), + date.getDate(), + ).getTime(); + case 'x_week': + case 'week': + case 'x_month': + case 'month': + return new Date(date.getFullYear(), date.getMonth()).getTime(); + default: + return date.getTime(); + } + } + + return ( + normalizedMillis(dateA, this.options.subDomain) < + normalizedMillis(dateB, this.options.subDomain) + ); + }, + + // =========================================================================// + // DATE COMPUTATION // + // =========================================================================// + + /** + * Return the day of the year for the date + * @param Date + * @return int Day of the year [1,366] + */ + getDayOfYear: d3.time.format('%j'), + + /** + * Return the week number of the year + * Monday as the first day of the week + * @return int Week number [0-53] + */ + getWeekNumber: function (d) { + 'use strict'; + + var f = + this.options.weekStartOnMonday === true + ? d3.time.format('%W') + : d3.time.format('%U'); + return f(d); + }, + + /** + * Return the week number, relative to its month + * + * @param int|Date d Date or timestamp in milliseconds + * @return int Week number, relative to the month [0-5] + */ + getMonthWeekNumber: function (d) { + 'use strict'; + + if (typeof d === 'number') { + d = new Date(d); + } + + var monthFirstWeekNumber = this.getWeekNumber( + new Date(d.getFullYear(), d.getMonth()), + ); + return this.getWeekNumber(d) - monthFirstWeekNumber - 1; + }, + + /** + * Return the number of weeks in the dates' year + * + * @param int|Date d Date or timestamp in milliseconds + * @return int Number of weeks in the date's year + */ + getWeekNumberInYear: function (d) { + 'use strict'; + + if (typeof d === 'number') { + d = new Date(d); + } + }, + + /** + * Return the number of days in the date's month + * + * @param int|Date d Date or timestamp in milliseconds + * @return int Number of days in the date's month + */ + getDayCountInMonth: function (d) { + 'use strict'; + + return this.getEndOfMonth(d).getDate(); + }, + + /** + * Return the number of days in the date's year + * + * @param int|Date d Date or timestamp in milliseconds + * @return int Number of days in the date's year + */ + getDayCountInYear: function (d) { + 'use strict'; + + if (typeof d === 'number') { + d = new Date(d); + } + return new Date(d.getFullYear(), 1, 29).getMonth() === 1 ? 366 : 365; + }, + + /** + * Get the weekday from a date + * + * Return the week day number (0-6) of a date, + * depending on whether the week start on monday or sunday + * + * @param Date d + * @return int The week day number (0-6) + */ + getWeekDay: function (d) { + 'use strict'; + + if (this.options.weekStartOnMonday === false) { + return d.getDay(); + } + return d.getDay() === 0 ? 6 : d.getDay() - 1; + }, + + /** + * Get the last day of the month + * @param Date|int d Date or timestamp in milliseconds + * @return Date Last day of the month + */ + getEndOfMonth: function (d) { + 'use strict'; + + if (typeof d === 'number') { + d = new Date(d); + } + return new Date(d.getFullYear(), d.getMonth() + 1, 0); + }, + + /** + * + * @param Date date + * @param int count + * @param string step + * @return Date + */ + jumpDate: function (date, count, step) { + 'use strict'; + + var d = new Date(date); + switch (step) { + case 'hour': + d.setHours(d.getHours() + count); + break; + case 'day': + d.setHours(d.getHours() + count * 24); + break; + case 'week': + d.setHours(d.getHours() + count * 24 * 7); + break; + case 'month': + d.setMonth(d.getMonth() + count); + break; + case 'year': + d.setFullYear(d.getFullYear() + count); + } + + return new Date(d); + }, + + // =========================================================================// + // DOMAIN COMPUTATION // + // =========================================================================// + + /** + * Return all the minutes between 2 dates + * + * @param Date d date A date + * @param int|date range Number of minutes in the range, or a stop date + * @return array An array of minutes + */ + getMinuteDomain: function (d, range) { + 'use strict'; + + var start = new Date( + d.getFullYear(), + d.getMonth(), + d.getDate(), + d.getHours(), + ); + var stop = null; + if (range instanceof Date) { + stop = new Date( + range.getFullYear(), + range.getMonth(), + range.getDate(), + range.getHours(), + ); + } else { + stop = new Date(+start + range * 1000 * 60); + } + return d3.time.minutes(Math.min(start, stop), Math.max(start, stop)); + }, + + /** + * Return all the hours between 2 dates + * + * @param Date d A date + * @param int|date range Number of hours in the range, or a stop date + * @return array An array of hours + */ + getHourDomain: function (d, range) { + 'use strict'; + + var start = new Date( + d.getFullYear(), + d.getMonth(), + d.getDate(), + d.getHours(), + ); + var stop = null; + if (range instanceof Date) { + stop = new Date( + range.getFullYear(), + range.getMonth(), + range.getDate(), + range.getHours(), + ); + } else { + stop = new Date(start); + stop.setHours(stop.getHours() + range); + } + + var domains = d3.time.hours(Math.min(start, stop), Math.max(start, stop)); + + // Passing from DST to standard time + // If there are 25 hours, let's compress the duplicate hours + var i = 0; + var total = domains.length; + for (i = 0; i < total; i += 1) { + if (i > 0 && domains[i].getHours() === domains[i - 1].getHours()) { + this.DSTDomain.push(domains[i].getTime()); + domains.splice(i, 1); + break; + } + } + + // d3.time.hours is returning more hours than needed when changing + // from DST to standard time, because there is really 2 hours between + // 1am and 2am! + if (typeof range === 'number' && domains.length > Math.abs(range)) { + domains.splice(domains.length - 1, 1); + } + + return domains; + }, + + /** + * Return all the days between 2 dates + * + * @param Date d A date + * @param int|date range Number of days in the range, or a stop date + * @return array An array of weeks + */ + getDayDomain: function (d, range) { + 'use strict'; + + var start = new Date(d.getFullYear(), d.getMonth(), d.getDate()); + var stop = null; + if (range instanceof Date) { + stop = new Date(range.getFullYear(), range.getMonth(), range.getDate()); + } else { + stop = new Date(start); + stop = new Date(stop.setDate(stop.getDate() + parseInt(range, 10))); + } + + return d3.time.days(Math.min(start, stop), Math.max(start, stop)); + }, + + /** + * Return all the weeks between 2 dates + * + * @param Date d A date + * @param int|date range Number of minutes in the range, or a stop date + * @return array An array of weeks + */ + getWeekDomain: function (d, range) { + 'use strict'; + + var weekStart; + + if (this.options.weekStartOnMonday === false) { + weekStart = new Date( + d.getFullYear(), + d.getMonth(), + d.getDate() - d.getDay(), + ); + } else { + if (d.getDay() === 1) { + weekStart = new Date(d.getFullYear(), d.getMonth(), d.getDate()); + } else if (d.getDay() === 0) { + weekStart = new Date(d.getFullYear(), d.getMonth(), d.getDate()); + weekStart.setDate(weekStart.getDate() - 6); + } else { + weekStart = new Date( + d.getFullYear(), + d.getMonth(), + d.getDate() - d.getDay() + 1, + ); + } + } + + var endDate = new Date(weekStart); + + var stop = range; + if (typeof range !== 'object') { + stop = new Date(endDate.setDate(endDate.getDate() + range * 7)); + } + + return this.options.weekStartOnMonday === true + ? d3.time.mondays(Math.min(weekStart, stop), Math.max(weekStart, stop)) + : d3.time.sundays(Math.min(weekStart, stop), Math.max(weekStart, stop)); + }, + + /** + * Return all the months between 2 dates + * + * @param Date d A date + * @param int|date range Number of months in the range, or a stop date + * @return array An array of months + */ + getMonthDomain: function (d, range) { + 'use strict'; + + var start = new Date(d.getFullYear(), d.getMonth()); + var stop = null; + if (range instanceof Date) { + stop = new Date(range.getFullYear(), range.getMonth()); + } else { + stop = new Date(start); + stop = stop.setMonth(stop.getMonth() + range); + } + + return d3.time.months(Math.min(start, stop), Math.max(start, stop)); + }, + + /** + * Return all the years between 2 dates + * + * @param Date d date A date + * @param int|date range Number of minutes in the range, or a stop date + * @return array An array of hours + */ + getYearDomain: function (d, range) { + 'use strict'; + + var start = new Date(d.getFullYear(), 0); + var stop = null; + if (range instanceof Date) { + stop = new Date(range.getFullYear(), 0); + } else { + stop = new Date(d.getFullYear() + range, 0); + } + + return d3.time.years(Math.min(start, stop), Math.max(start, stop)); + }, + + /** + * Get an array of domain start dates + * + * @param int|Date date A random date included in the wanted domain + * @param int|Date range Number of dates to get, or a stop date + * @return Array of dates + */ + getDomain: function (date, range) { + 'use strict'; + + if (typeof date === 'number') { + date = new Date(date); + } + + if (arguments.length < 2) { + range = this.options.range; + } + + switch (this.options.domain) { + case 'hour': + var domains = this.getHourDomain(date, range); + + // Case where an hour is missing, when passing from standard time to DST + // Missing hour is perfectly acceptabl in subDomain, but not in domains + if (typeof range === 'number' && domains.length < range) { + if (range > 0) { + domains.push(this.getHourDomain(domains[domains.length - 1], 2)[1]); + } else { + domains.shift(this.getHourDomain(domains[0], -2)[0]); + } + } + return domains; + case 'day': + return this.getDayDomain(date, range); + case 'week': + return this.getWeekDomain(date, range); + case 'month': + return this.getMonthDomain(date, range); + case 'year': + return this.getYearDomain(date, range); + } + }, + + /* jshint maxcomplexity: false */ + getSubDomain: function (date) { + 'use strict'; + + if (typeof date === 'number') { + date = new Date(date); + } + + var parent = this; + + /** + * @return int + */ + var computeDaySubDomainSize = function (date, domain) { + switch (domain) { + case 'year': + return parent.getDayCountInYear(date); + case 'month': + return parent.getDayCountInMonth(date); + case 'week': + return 7; + } + }; + + /** + * @return int + */ + var computeMinSubDomainSize = function (date, domain) { + switch (domain) { + case 'hour': + return 60; + case 'day': + return 60 * 24; + case 'week': + return 60 * 24 * 7; + } + }; + + /** + * @return int + */ + var computeHourSubDomainSize = function (date, domain) { + switch (domain) { + case 'day': + return 24; + case 'week': + return 168; + case 'month': + return parent.getDayCountInMonth(date) * 24; + } + }; + + /** + * @return int + */ + var computeWeekSubDomainSize = function (date, domain) { + if (domain === 'month') { + var endOfMonth = new Date(date.getFullYear(), date.getMonth() + 1, 0); + var endWeekNb = parent.getWeekNumber(endOfMonth); + var startWeekNb = parent.getWeekNumber( + new Date(date.getFullYear(), date.getMonth()), + ); + + if (startWeekNb > endWeekNb) { + startWeekNb = 0; + endWeekNb += 1; + } + + return endWeekNb - startWeekNb + 1; + } else if (domain === 'year') { + return parent.getWeekNumber(new Date(date.getFullYear(), 11, 31)); + } + }; + + switch (this.options.subDomain) { + case 'x_min': + case 'min': + return this.getMinuteDomain( + date, + computeMinSubDomainSize(date, this.options.domain), + ); + case 'x_hour': + case 'hour': + return this.getHourDomain( + date, + computeHourSubDomainSize(date, this.options.domain), + ); + case 'x_day': + case 'day': + return this.getDayDomain( + date, + computeDaySubDomainSize(date, this.options.domain), + ); + case 'x_week': + case 'week': + return this.getWeekDomain( + date, + computeWeekSubDomainSize(date, this.options.domain), + ); + case 'x_month': + case 'month': + return this.getMonthDomain(date, 12); + } + }, + + /** + * Get the n-th next domain after the calendar newest (rightmost) domain + * @param int n + * @return Date The start date of the wanted domain + */ + getNextDomain: function (n) { + 'use strict'; + + if (arguments.length === 0) { + n = 1; + } + return this.getDomain( + this.jumpDate(this.getDomainKeys().pop(), n, this.options.domain), + 1, + )[0]; + }, + + /** + * Get the n-th domain before the calendar oldest (leftmost) domain + * @param int n + * @return Date The start date of the wanted domain + */ + getPreviousDomain: function (n) { + 'use strict'; + + if (arguments.length === 0) { + n = 1; + } + return this.getDomain( + this.jumpDate(this.getDomainKeys().shift(), -n, this.options.domain), + 1, + )[0]; + }, + + // =========================================================================// + // DATAS // + // =========================================================================// + + /** + * Fetch and interpret data from the datasource + * + * @param string|object source + * @param Date startDate + * @param Date endDate + * @param function callback + * @param function|boolean afterLoad function used to convert the data into a json object. Use true to use the afterLoad callback + * @param updateMode + * + * @return mixed + * - True if there are no data to load + * - False if data are loaded asynchronously + */ + getDatas: function ( + source, + startDate, + endDate, + callback, + afterLoad, + updateMode, + ) { + 'use strict'; + + var self = this; + if (arguments.length < 5) { + afterLoad = true; + } + if (arguments.length < 6) { + updateMode = this.APPEND_ON_UPDATE; + } + var _callback = function (error, data) { + if (afterLoad !== false) { + if (typeof afterLoad === 'function') { + data = afterLoad(data); + } else if (typeof self.options.afterLoadData === 'function') { + data = self.options.afterLoadData(data); + } else { + console.log('Provided callback for afterLoadData is not a function.'); + } + } else if ( + self.options.dataType === 'csv' || + self.options.dataType === 'tsv' + ) { + data = this.interpretCSV(data); + } + self.parseDatas(data, updateMode, startDate, endDate); + if (typeof callback === 'function') { + callback(); + } + }; + + switch (typeof source) { + case 'string': + if (source === '') { + _callback(null, {}); + return true; + } else { + var url = this.parseURI(source, startDate, endDate); + var requestType = 'GET'; + if (self.options.dataPostPayload !== null) { + requestType = 'POST'; + } + var payload = null; + if (self.options.dataPostPayload !== null) { + payload = this.parseURI( + self.options.dataPostPayload, + startDate, + endDate, + ); + } + + var xhr = null; + switch (this.options.dataType) { + case 'json': + xhr = d3.json(url); + break; + case 'csv': + xhr = d3.csv(url); + break; + case 'tsv': + xhr = d3.tsv(url); + break; + case 'txt': + xhr = d3.text(url, 'text/plain'); + break; + } + + // jshint maxdepth:5 + if (self.options.dataRequestHeaders !== null) { + for (var header in self.options.dataRequestHeaders) { + if (self.options.dataRequestHeaders.hasOwnProperty(header)) { + xhr.header(header, self.options.dataRequestHeaders[header]); + } + } + } + + xhr.send(requestType, payload, _callback); + } + return false; + case 'object': + if (source === Object(source)) { + _callback(null, source); + return false; + } + /* falls through */ + default: + _callback(null, {}); + return true; + } + }, + + /** + * Populate the calendar internal data + * + * @param object data + * @param constant updateMode + * @param Date startDate + * @param Date endDate + * + * @return void + */ + parseDatas: function (data, updateMode, startDate, endDate) { + 'use strict'; + + if (updateMode === this.RESET_ALL_ON_UPDATE) { + this._domains.forEach(function (key, value) { + value.forEach(function (element, index, array) { + array[index].v = null; + }); + }); + } + + var temp = {}; + + var extractTime = function (d) { + return d.t; + }; + + /*jshint forin:false */ + for (var d in data) { + var date = new Date(d * 1000); + var domainUnit = this.getDomain(date)[0].getTime(); + // The current data belongs to a domain that was compressed + // Compress the data for the two duplicate hours into the same hour + if (this.DSTDomain.indexOf(domainUnit) >= 0) { + // Re-assign all data to the first or the second duplicate hours + // depending on which is visible + if (this._domains.has(domainUnit - 3600 * 1000)) { + domainUnit -= 3600 * 1000; + } + } + + // Skip if data is not relevant to current domain + if ( + isNaN(d) || + !data.hasOwnProperty(d) || + !this._domains.has(domainUnit) || + !(domainUnit >= +startDate && domainUnit < +endDate) + ) { + continue; + } + + var subDomainsData = this._domains.get(domainUnit); + + if (!temp.hasOwnProperty(domainUnit)) { + temp[domainUnit] = subDomainsData.map(extractTime); + } + + var index = temp[domainUnit].indexOf( + this._domainType[this.options.subDomain].extractUnit(date), + ); + + if (updateMode === this.RESET_SINGLE_ON_UPDATE) { + subDomainsData[index].v = data[d]; + } else { + if (!isNaN(subDomainsData[index].v)) { + subDomainsData[index].v += data[d]; + } else { + subDomainsData[index].v = data[d]; + } + } + } + }, + + parseURI: function (str, startDate, endDate) { + 'use strict'; + + // Use a timestamp in seconds + str = str.replace(/\{\{t:start\}\}/g, startDate.getTime() / 1000); + str = str.replace(/\{\{t:end\}\}/g, endDate.getTime() / 1000); + + // Use a string date, following the ISO-8601 + str = str.replace(/\{\{d:start\}\}/g, startDate.toISOString()); + str = str.replace(/\{\{d:end\}\}/g, endDate.toISOString()); + + return str; + }, + + interpretCSV: function (data) { + 'use strict'; + + var d = {}; + var keys = Object.keys(data[0]); + var i, total; + for (i = 0, total = data.length; i < total; i += 1) { + d[data[i][keys[0]]] = +data[i][keys[1]]; + } + return d; + }, + + /** + * Handle the calendar layout and dimension + * + * Expand and shrink the container depending on its children dimension + * Also rearrange the children position depending on their dimension, + * and the legend position + * + * @return void + */ + resize: function () { + 'use strict'; + + var parent = this; + var options = parent.options; + var legendWidth = options.displayLegend + ? parent.Legend.getDim('width') + + options.legendMargin[1] + + options.legendMargin[3] + : 0; + var legendHeight = options.displayLegend + ? parent.Legend.getDim('height') + + options.legendMargin[0] + + options.legendMargin[2] + : 0; + + var graphWidth = + parent.graphDim.width - options.domainGutter - options.cellPadding; + var graphHeight = + parent.graphDim.height - options.domainGutter - options.cellPadding; + + this.root + .transition() + .duration(options.animationDuration) + .attr('width', function () { + if ( + options.legendVerticalPosition === 'middle' || + options.legendVerticalPosition === 'center' + ) { + return graphWidth + legendWidth; + } + return Math.max(graphWidth, legendWidth); + }) + .attr('height', function () { + if ( + options.legendVerticalPosition === 'middle' || + options.legendVerticalPosition === 'center' + ) { + return Math.max(graphHeight, legendHeight); + } + return graphHeight + legendHeight; + }); + + this.root + .select('.graph') + .transition() + .duration(options.animationDuration) + .attr('y', function () { + if (options.legendVerticalPosition === 'top') { + return legendHeight; + } + return 0; + }) + .attr('x', function () { + if ( + (options.legendVerticalPosition === 'middle' || + options.legendVerticalPosition === 'center') && + options.legendHorizontalPosition === 'left' + ) { + return legendWidth; + } + return 0; + }); + }, + + // =========================================================================// + // PUBLIC API // + // =========================================================================// + + /** + * Shift the calendar forward + */ + next: function (n) { + 'use strict'; + + if (arguments.length === 0) { + n = 1; + } + return this.loadNextDomain(n); + }, + + /** + * Shift the calendar backward + */ + previous: function (n) { + 'use strict'; + + if (arguments.length === 0) { + n = 1; + } + return this.loadPreviousDomain(n); + }, + + /** + * Jump directly to a specific date + * + * JumpTo will scroll the calendar until the wanted domain with the specified + * date is visible. Unless you set reset to true, the wanted domain + * will not necessarily be the first (leftmost) domain of the calendar. + * + * @param Date date Jump to the domain containing that date + * @param bool reset Whether the wanted domain should be the first domain of the calendar + * @param bool True of the calendar was scrolled + */ + jumpTo: function (date, reset) { + 'use strict'; + + if (arguments.length < 2) { + reset = false; + } + var domains = this.getDomainKeys(); + var firstDomain = domains[0]; + var lastDomain = domains[domains.length - 1]; + + if (date < firstDomain) { + return this.loadPreviousDomain(this.getDomain(firstDomain, date).length); + } else { + if (reset) { + return this.loadNextDomain(this.getDomain(firstDomain, date).length); + } + + if (date > lastDomain) { + return this.loadNextDomain(this.getDomain(lastDomain, date).length); + } + } + + return false; + }, + + /** + * Navigate back to the start date + * + * @since 3.3.8 + * @return void + */ + rewind: function () { + 'use strict'; + + this.jumpTo(this.options.start, true); + }, + + /** + * Update the calendar with new data + * + * @param object|string dataSource The calendar's datasource, same type as this.options.data + * @param boolean|function afterLoad Whether to execute afterLoad() on the data. Pass directly a function + * if you don't want to use the afterLoad() callback + */ + update: function (dataSource, afterLoad, updateMode) { + 'use strict'; + + if (arguments.length === 0) { + dataSource = this.options.data; + } + if (arguments.length < 2) { + afterLoad = true; + } + if (arguments.length < 3) { + updateMode = this.RESET_ALL_ON_UPDATE; + } + + var domains = this.getDomainKeys(); + var self = this; + this.getDatas( + dataSource, + new Date(domains[0]), + this.getSubDomain(domains[domains.length - 1]).pop(), + function () { + self.fill(); + self.afterUpdate(); + }, + afterLoad, + updateMode, + ); + }, + + /** + * Set the legend + * + * @param array legend an array of integer, representing the different threshold value + * @param array colorRange an array of 2 hex colors, for the minimum and maximum colors + */ + setLegend: function () { + 'use strict'; + + var oldLegend = this.options.legend.slice(0); + if (arguments.length >= 1 && Array.isArray(arguments[0])) { + this.options.legend = arguments[0]; + } + if (arguments.length >= 2) { + if (Array.isArray(arguments[1]) && arguments[1].length >= 2) { + this.options.legendColors = [arguments[1][0], arguments[1][1]]; + } else { + this.options.legendColors = arguments[1]; + } + } + + if ( + (arguments.length > 0 && !arrayEquals(oldLegend, this.options.legend)) || + arguments.length >= 2 + ) { + this.Legend.buildColors(); + this.fill(); + } + + this.Legend.redraw( + this.graphDim.width - + this.options.domainGutter - + this.options.cellPadding, + ); + }, + + /** + * Remove the legend + * + * @return bool False if there is no legend to remove + */ + removeLegend: function () { + 'use strict'; + + if (!this.options.displayLegend) { + return false; + } + this.options.displayLegend = false; + this.Legend.remove(); + return true; + }, + + /** + * Display the legend + * + * @return bool False if the legend was already displayed + */ + showLegend: function () { + 'use strict'; + + if (this.options.displayLegend) { + return false; + } + this.options.displayLegend = true; + this.Legend.redraw( + this.graphDim.width - + this.options.domainGutter - + this.options.cellPadding, + ); + return true; + }, + + /** + * Highlight dates + * + * Add a highlight class to a set of dates + * + * @since 3.3.5 + * @param array Array of dates to highlight + * @return bool True if dates were highlighted + */ + highlight: function (args) { + 'use strict'; + + if ((this.options.highlight = this.expandDateSetting(args)).length > 0) { + this.fill(); + return true; + } + return false; + }, + + /** + * Destroy the calendar + * + * Usage: cal = cal.destroy(); + * + * @since 3.3.6 + * @param function A callback function to trigger after destroying the calendar + * @return null + */ + destroy: function (callback) { + 'use strict'; + + this.root + .transition() + .duration(this.options.animationDuration) + .attr('width', 0) + .attr('height', 0) + .remove() + .each('end', function () { + if (typeof callback === 'function') { + callback(); + } else if (typeof callback !== 'undefined') { + console.log('Provided callback for destroy() is not a function.'); + } + }); + + return null; + }, + + getSVG: function () { + 'use strict'; + + var styles = { + '.cal-heatmap-container': {}, + '.graph': {}, + '.graph-rect': {}, + 'rect.highlight': {}, + 'rect.now': {}, + 'rect.highlight-now': {}, + 'text.highlight': {}, + 'text.now': {}, + 'text.highlight-now': {}, + '.domain-background': {}, + '.graph-label': {}, + '.subdomain-text': {}, + '.q0': {}, + '.qi': {}, + }; + + for ( + var j = 1, total = this.options.legend.length + 1; + j <= total; + j += 1 + ) { + styles['.q' + j] = {}; + } + + var root = this.root; + + var whitelistStyles = [ + // SVG specific properties + 'stroke', + 'stroke-width', + 'stroke-opacity', + 'stroke-dasharray', + 'stroke-dashoffset', + 'stroke-linecap', + 'stroke-miterlimit', + 'fill', + 'fill-opacity', + 'fill-rule', + 'marker', + 'marker-start', + 'marker-mid', + 'marker-end', + 'alignement-baseline', + 'baseline-shift', + 'dominant-baseline', + 'glyph-orientation-horizontal', + 'glyph-orientation-vertical', + 'kerning', + 'text-anchor', + 'shape-rendering', + + // Text Specific properties + 'text-transform', + 'font-family', + 'font', + 'font-size', + 'font-weight', + ]; + + var filterStyles = function (attribute, property, value) { + if (whitelistStyles.indexOf(property) !== -1) { + styles[attribute][property] = value; + } + }; + + var getElement = function (e) { + return root.select(e)[0][0]; + }; + + /* jshint forin:false */ + for (var element in styles) { + if (!styles.hasOwnProperty(element)) { + continue; + } + + var dom = getElement(element); + + if (dom === null) { + continue; + } + + // The DOM Level 2 CSS way + /* jshint maxdepth: false */ + if ('getComputedStyle' in window) { + var cs = getComputedStyle(dom, null); + if (cs.length !== 0) { + for (var i = 0; i < cs.length; i += 1) { + filterStyles(element, cs.item(i), cs.getPropertyValue(cs.item(i))); + } + + // Opera workaround. Opera doesn"t support `item`/`length` + // on CSSStyleDeclaration. + } else { + for (var k in cs) { + if (cs.hasOwnProperty(k)) { + filterStyles(element, k, cs[k]); + } + } + } + + // The IE way + } else if ('currentStyle' in dom) { + var css = dom.currentStyle; + for (var p in css) { + filterStyles(element, p, css[p]); + } + } + } + + var string = + ''; + string += new XMLSerializer().serializeToString(this.root[0][0]); + string += ''; + + return string; + }, +}; + +// =========================================================================// +// DOMAIN POSITION COMPUTATION // +// =========================================================================// + +/** + * Compute the position of a domain, relative to the calendar + */ +var DomainPosition = function () { + 'use strict'; + + this.positions = d3.map(); +}; + +DomainPosition.prototype.getPosition = function (d) { + 'use strict'; + + return this.positions.get(d); +}; + +DomainPosition.prototype.getPositionFromIndex = function (i) { + 'use strict'; + + var domains = this.getKeys(); + return this.positions.get(domains[i]); +}; + +DomainPosition.prototype.getLast = function () { + 'use strict'; + + var domains = this.getKeys(); + return this.positions.get(domains[domains.length - 1]); +}; + +DomainPosition.prototype.setPosition = function (d, dim) { + 'use strict'; + + this.positions.set(d, dim); +}; + +DomainPosition.prototype.shiftRightBy = function (exitingDomainDim) { + 'use strict'; + + this.positions.forEach(function (key, value) { + this.set(key, value - exitingDomainDim); + }); + + var domains = this.getKeys(); + this.positions.remove(domains[0]); +}; + +DomainPosition.prototype.shiftLeftBy = function (enteringDomainDim) { + 'use strict'; + + this.positions.forEach(function (key, value) { + this.set(key, value + enteringDomainDim); + }); + + var domains = this.getKeys(); + this.positions.remove(domains[domains.length - 1]); +}; + +DomainPosition.prototype.getKeys = function () { + 'use strict'; + + return this.positions.keys().sort(function (a, b) { + return parseInt(a, 10) - parseInt(b, 10); + }); +}; + +// =========================================================================// +// LEGEND // +// =========================================================================// + +var Legend = function (calendar) { + 'use strict'; + + this.calendar = calendar; + this.computeDim(); + + if (calendar.options.legendColors !== null) { + this.buildColors(); + } +}; + +Legend.prototype.computeDim = function () { + 'use strict'; + + var options = this.calendar.options; // Shorter accessor for variable name mangling when minifying + this.dim = { + width: + options.legendCellSize * (options.legend.length + 1) + + options.legendCellPadding * options.legend.length, + height: options.legendCellSize, + }; +}; + +Legend.prototype.remove = function () { + 'use strict'; + + this.calendar.root.select('.graph-legend').remove(); + this.calendar.resize(); +}; + +Legend.prototype.redraw = function (width) { + 'use strict'; + + if (!this.calendar.options.displayLegend) { + return false; + } + + var parent = this; + var calendar = this.calendar; + var legend = calendar.root; + var legendItem; + var options = calendar.options; // Shorter accessor for variable name mangling when minifying + + this.computeDim(); + + var _legend = options.legend.slice(0); + _legend.push(_legend[_legend.length - 1] + 1); + + var legendElement = calendar.root.select('.graph-legend'); + if (legendElement[0][0] !== null) { + legend = legendElement; + legendItem = legend.select('g').selectAll('rect').data(_legend); + } else { + // Creating the new legend DOM if it doesn't already exist + legend = + options.legendVerticalPosition === 'top' + ? legend.insert('svg', '.graph') + : legend.append('svg'); + + legend.attr('x', getLegendXPosition()).attr('y', getLegendYPosition()); + + legendItem = legend + .attr('class', 'graph-legend') + .attr('height', parent.getDim('height')) + .attr('width', parent.getDim('width')) + .append('g') + .selectAll() + .data(_legend); + } + + legendItem + .enter() + .append('rect') + .call(legendCellLayout) + .attr('class', function (d) { + return calendar.Legend.getClass(d, calendar.legendScale === null); + }) + .attr('fill-opacity', 0) + .call(function (selection) { + if ( + calendar.legendScale !== null && + options.legendColors !== null && + options.legendColors.hasOwnProperty('base') + ) { + selection.attr('fill', options.legendColors.base); + } + }) + .append('title'); + + legendItem + .exit() + .transition() + .duration(options.animationDuration) + .attr('fill-opacity', 0) + .remove(); + + legendItem + .transition() + .delay(function (d, i) { + return (options.animationDuration * i) / 10; + }) + .call(legendCellLayout) + .attr('fill-opacity', 1) + .call(function (element) { + element.attr('fill', function (d, i) { + if (calendar.legendScale === null) { + return ''; + } + + if (i === 0) { + return calendar.legendScale(d - 1); + } + return calendar.legendScale(options.legend[i - 1]); + }); + + element.attr('class', function (d) { + return calendar.Legend.getClass(d, calendar.legendScale === null); + }); + }); + + function legendCellLayout(selection) { + selection + .attr('width', options.legendCellSize) + .attr('height', options.legendCellSize) + .attr('rx', options.legendCellRadius) + .attr('ry', options.legendCellRadius) + .attr('x', function (d, i) { + return i * (options.legendCellSize + options.legendCellPadding); + }); + } + + legendItem.select('title').text(function (d, i) { + if (i === 0) { + return calendar.formatStringWithObject(options.legendTitleFormat.lower, { + min: options.legend[i], + name: options.itemName[1], + }); + } else if (i === _legend.length - 1) { + return calendar.formatStringWithObject(options.legendTitleFormat.upper, { + max: options.legend[i - 1], + name: options.itemName[1], + }); + } else { + return calendar.formatStringWithObject(options.legendTitleFormat.inner, { + down: options.legend[i - 1], + up: options.legend[i], + name: options.itemName[1], + }); + } + }); + legendItem + .on('mouseover', function (d) { + calendar.legendTip.show(d, this); + }) + .on('mouseout', function () { + calendar.legendTip.hide(); + }); + + legend + .transition() + .duration(options.animationDuration) + .attr('x', getLegendXPosition()) + .attr('y', getLegendYPosition()) + .attr('width', parent.getDim('width')) + .attr('height', parent.getDim('height')); + + legend + .select('g') + .transition() + .duration(options.animationDuration) + .attr('transform', function () { + if (options.legendOrientation === 'vertical') { + return ( + 'rotate(90 ' + + options.legendCellSize / 2 + + ' ' + + options.legendCellSize / 2 + + ')' + ); + } + return ''; + }); + + function getLegendXPosition() { + switch (options.legendHorizontalPosition) { + case 'right': + if ( + options.legendVerticalPosition === 'center' || + options.legendVerticalPosition === 'middle' + ) { + return width + options.legendMargin[3]; + } + return width - parent.getDim('width') - options.legendMargin[1]; + case 'middle': + case 'center': + return Math.round(width / 2 - parent.getDim('width') / 2); + default: + return options.legendMargin[3]; + } + } + + function getLegendYPosition() { + if (options.legendVerticalPosition === 'bottom') { + return ( + calendar.graphDim.height + + options.legendMargin[0] - + options.domainGutter - + options.cellPadding + ); + } + return options.legendMargin[0]; + } + + calendar.resize(); +}; + +/** + * Return the dimension of the legend + * + * Takes into account rotation + * + * @param string axis Width or height + * @return int height or width in pixels + */ +Legend.prototype.getDim = function (axis) { + 'use strict'; + + var isHorizontal = this.calendar.options.legendOrientation === 'horizontal'; + + switch (axis) { + case 'width': + return this.dim[isHorizontal ? 'width' : 'height']; + case 'height': + return this.dim[isHorizontal ? 'height' : 'width']; + } +}; + +Legend.prototype.buildColors = function () { + 'use strict'; + + var options = this.calendar.options; // Shorter accessor for variable name mangling when minifying + + if (options.legendColors === null) { + this.calendar.legendScale = null; + return false; + } + + var _colorRange = []; + + if (Array.isArray(options.legendColors)) { + _colorRange = options.legendColors; + } else if ( + options.legendColors.hasOwnProperty('min') && + options.legendColors.hasOwnProperty('max') + ) { + _colorRange = [options.legendColors.min, options.legendColors.max]; + } else { + options.legendColors = null; + return false; + } + + var _legend = options.legend.slice(0); + + if (_legend[0] > 0) { + _legend.unshift(0); + } else if (_legend[0] <= 0) { + // Let's guess the leftmost value, it we have to add one + _legend.unshift( + _legend[0] - (_legend[_legend.length - 1] - _legend[0]) / _legend.length, + ); + } + var colorScale; + if (options.legendColors.hasOwnProperty('colorScale')) { + colorScale = options.legendColors.colorScale; + } else { + colorScale = d3.scale + .linear() + .range(_colorRange) + .interpolate(d3.interpolateHcl) + .domain([d3.min(_legend), d3.max(_legend)]); + } + + var legendColors = _legend.map(function (element) { + return colorScale(element); + }); + this.calendar.legendScale = d3.scale + .threshold() + .domain(options.legend) + .range(legendColors); + + return true; +}; + +/** + * Return the classname on the legend for the specified value + * + * @param integer n Value associated to a date + * @param bool withCssClass Whether to display the css class used to style the cell. + * Disabling will allow styling directly via html fill attribute + * + * @return string Classname according to the legend + */ +Legend.prototype.getClass = function (n, withCssClass) { + 'use strict'; + + if (n === null || isNaN(n)) { + return ''; + } + + var index = [this.calendar.options.legend.length + 1]; + + for ( + var i = 0, total = this.calendar.options.legend.length - 1; + i <= total; + i += 1 + ) { + if (this.calendar.options.legend[0] > 0 && n < 0) { + index = ['1', 'i']; + break; + } + + if (n <= this.calendar.options.legend[i]) { + index = [i + 1]; + break; + } + } + + if (n === 0) { + index.push(0); + } + + index.unshift(''); + return (index.join(' r') + (withCssClass ? index.join(' q') : '')).trim(); +}; + +/** + * #source http://stackoverflow.com/a/383245/805649 + */ +function mergeRecursive(obj1, obj2) { + 'use strict'; + + /*jshint forin:false */ + for (var p in obj2) { + try { + // Property in destination object set; update its value. + if (obj2[p].constructor === Object) { + obj1[p] = mergeRecursive(obj1[p], obj2[p]); + } else { + obj1[p] = obj2[p]; + } + } catch (e) { + // Property in destination object not set; create it and set its value. + obj1[p] = obj2[p]; + } + } + + return obj1; +} + +/** + * Check if 2 arrays are equals + * + * @link http://stackoverflow.com/a/14853974/805649 + * @param array array the array to compare to + * @return bool true of the 2 arrays are equals + */ +function arrayEquals(arrayA, arrayB) { + 'use strict'; + + // if the other array is a falsy value, return + if (!arrayB || !arrayA) { + return false; + } + + // compare lengths - can save a lot of time + if (arrayA.length !== arrayB.length) { + return false; + } + + for (var i = 0; i < arrayA.length; i += 1) { + // Check if we have nested arrays + if (arrayA[i] instanceof Array && arrayB[i] instanceof Array) { + // recurse into the nested arrays + if (!arrayEquals(arrayA[i], arrayB[i])) { + return false; + } + } else if (arrayA[i] !== arrayB[i]) { + // Warning - two different object instances will never be equal: {x:20} != {x:20} + return false; + } + } + return true; +} + +export default CalHeatMap; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/vendor/d3tip.css b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/vendor/d3tip.css new file mode 100644 index 000000000000..980a5be4396e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/src/vendor/d3tip.css @@ -0,0 +1,74 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* from d3-tip */ +.d3-tip { + line-height: 1; + padding: 12px; + background: rgba(0, 0, 0, 0.8); + color: #fff; + border-radius: 2px; + pointer-events: none; + z-index: 1000; +} + +/* Creates a small triangle extender for the tooltip */ +.d3-tip:after { + box-sizing: border-box; + display: inline; + font-size: 10px; + width: 100%; + line-height: 1; + color: rgba(0, 0, 0, 0.8); + position: absolute; + pointer-events: none; +} + +/* Northward tooltips */ +.d3-tip.n:after { + content: '\25BC'; + margin: -1px 0 0 0; + top: 100%; + left: 0; + text-align: center; +} + +/* Eastward tooltips */ +.d3-tip.e:after { + content: '\25C0'; + margin: -4px 0 0 0; + top: 50%; + left: -8px; +} + +/* Southward tooltips */ +.d3-tip.s:after { + content: '\25B2'; + margin: 0 0 1px 0; + top: -8px; + left: 0; + text-align: center; +} + +/* Westward tooltips */ +.d3-tip.w:after { + content: '\25B6'; + margin: -4px 0 0 -1px; + top: 50%; + left: 100%; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-calendar/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/CHANGELOG.md new file mode 100644 index 000000000000..9564ba42cb1a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-chord + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-chord diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/README.md new file mode 100644 index 000000000000..1bd7865c2be6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-chord + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-chord.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-chord) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-chord&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-chord) + +This plugin provides Chord Diagram for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import ChordChartPlugin from '@superset-ui/legacy-plugin-chart-chord'; + +new ChordChartPlugin().configure({ key: 'chord' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-chord) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/package.json new file mode 100644 index 000000000000..b0ef9fdc0e08 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/package.json @@ -0,0 +1,37 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-chord", + "version": "0.18.25", + "description": "Superset Legacy Chart - Chord Diagram", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "prop-types": "^15.6.2", + "react": "^16.13.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/Chord.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/Chord.js new file mode 100644 index 000000000000..d36083e6cb46 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/Chord.js @@ -0,0 +1,143 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable no-param-reassign, react/sort-prop-types */ +import d3 from 'd3'; +import PropTypes from 'prop-types'; +import { + getNumberFormatter, + CategoricalColorNamespace, +} from '@superset-ui/core'; + +const propTypes = { + data: PropTypes.shape({ + matrix: PropTypes.arrayOf(PropTypes.arrayOf(PropTypes.number)), + nodes: PropTypes.arrayOf(PropTypes.string), + }), + width: PropTypes.number, + height: PropTypes.number, + colorScheme: PropTypes.string, + numberFormat: PropTypes.string, +}; + +function Chord(element, props) { + const { data, width, height, numberFormat, colorScheme } = props; + + element.innerHTML = ''; + + const div = d3.select(element); + div.classed('superset-legacy-chart-chord', true); + const { nodes, matrix } = data; + const f = getNumberFormatter(numberFormat); + const colorFn = CategoricalColorNamespace.getScale(colorScheme); + + const outerRadius = Math.min(width, height) / 2 - 10; + const innerRadius = outerRadius - 24; + + let chord; + + const arc = d3.svg.arc().innerRadius(innerRadius).outerRadius(outerRadius); + + const layout = d3.layout + .chord() + .padding(0.04) + .sortSubgroups(d3.descending) + .sortChords(d3.descending); + + const path = d3.svg.chord().radius(innerRadius); + + const svg = div + .append('svg') + .attr('width', width) + .attr('height', height) + .on('mouseout', () => chord.classed('fade', false)) + .append('g') + .attr('id', 'circle') + .attr('transform', `translate(${width / 2}, ${height / 2})`); + + svg.append('circle').attr('r', outerRadius); + + // Compute the chord layout. + layout.matrix(matrix); + + const group = svg + .selectAll('.group') + .data(layout.groups) + .enter() + .append('g') + .attr('class', 'group') + .on('mouseover', (d, i) => { + chord.classed('fade', p => p.source.index !== i && p.target.index !== i); + }); + + // Add a mouseover title. + group.append('title').text((d, i) => `${nodes[i]}: ${f(d.value)}`); + + // Add the group arc. + const groupPath = group + .append('path') + .attr('id', (d, i) => `group${i}`) + .attr('d', arc) + .style('fill', (d, i) => colorFn(nodes[i])); + + // Add a text label. + const groupText = group.append('text').attr('x', 6).attr('dy', 15); + + groupText + .append('textPath') + .attr('xlink:href', (d, i) => `#group${i}`) + .text((d, i) => nodes[i]); + // Remove the labels that don't fit. :( + groupText + .filter(function filter(d, i) { + return ( + groupPath[0][i].getTotalLength() / 2 - 16 < this.getComputedTextLength() + ); + }) + .remove(); + + // Add the chords. + chord = svg + .selectAll('.chord') + .data(layout.chords) + .enter() + .append('path') + .attr('class', 'chord') + .on('mouseover', d => { + chord.classed('fade', p => p !== d); + }) + .style('fill', d => colorFn(nodes[d.source.index])) + .attr('d', path); + + // Add an elaborate mouseover title for each chord. + chord + .append('title') + .text( + d => + `${nodes[d.source.index]} → ${nodes[d.target.index]}: ${f( + d.source.value, + )}\n${nodes[d.target.index]} → ${nodes[d.source.index]}: ${f( + d.target.value, + )}`, + ); +} + +Chord.displayName = 'Chord'; +Chord.propTypes = propTypes; + +export default Chord; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/ReactChord.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/ReactChord.jsx new file mode 100644 index 000000000000..945f81428fa9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/ReactChord.jsx @@ -0,0 +1,56 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { reactify, styled } from '@superset-ui/core'; +import PropTypes from 'prop-types'; +import Component from './Chord'; + +const ReactComponent = reactify(Component); + +const Chord = ({ className, ...otherProps }) => ( +
+ +
+); + +Chord.defaultProps = { + otherProps: {}, +}; + +Chord.propTypes = { + className: PropTypes.string.isRequired, + otherProps: PropTypes.objectOf(PropTypes.any), +}; + +export default styled(Chord)` + .superset-legacy-chart-chord svg #circle circle { + fill: none; + pointer-events: all; + } + .superset-legacy-chart-chord svg .group path { + fill-opacity: 0.6; + } + .superset-legacy-chart-chord svg path.chord { + stroke: #000; + stroke-width: 0.25px; + } + .superset-legacy-chart-chord svg #circle:hover path.fade { + opacity: 0.2; + } +`; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/controlPanel.ts new file mode 100644 index 000000000000..c2559a7b0d57 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/controlPanel.ts @@ -0,0 +1,74 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, validateNonEmpty } from '@superset-ui/core'; +import { ControlPanelConfig, sections } from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['groupby'], + ['columns'], + ['metric'], + ['adhoc_filters'], + ['row_limit'], + [ + { + name: 'sort_by_metric', + config: { + type: 'CheckboxControl', + label: t('Sort by metric'), + description: t( + 'Whether to sort results by the selected metric in descending order.', + ), + }, + }, + ], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [['y_axis_format', null], ['color_scheme']], + }, + ], + controlOverrides: { + y_axis_format: { + label: t('Number format'), + description: t('Choose a number format'), + }, + groupby: { + label: t('Source'), + multi: false, + validators: [validateNonEmpty], + description: t('Choose a source'), + }, + columns: { + label: t('Target'), + multi: false, + validators: [validateNonEmpty], + description: t('Choose a target'), + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/images/chord.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/images/chord.jpg new file mode 100644 index 000000000000..700e20d7bffa Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/images/chord.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/images/thumbnail.png new file mode 100644 index 000000000000..b148b19e953d Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..b70c681d87a8 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/index.js new file mode 100644 index 000000000000..4726a9aef2e0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/index.js @@ -0,0 +1,55 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import example from './images/chord.jpg'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Flow'), + credits: ['https://github.com/d3/d3-chord'], + description: t( + 'Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.', + ), + exampleGallery: [ + { url: example, caption: t('Relationships between community channels') }, + ], + name: t('Chord Diagram'), + tags: [ + t('Aesthetic'), + t('Circular'), + t('Legacy'), + t('Proportional'), + t('Relational'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class ChordChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./ReactChord'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/transformProps.js new file mode 100644 index 000000000000..4c9d09517f60 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/src/transformProps.js @@ -0,0 +1,30 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function transformProps(chartProps) { + const { width, height, formData, queriesData } = chartProps; + const { yAxisFormat, colorScheme } = formData; + + return { + colorScheme, + data: queriesData[0].data, + height, + numberFormat: yAxisFormat, + width, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-chord/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/CHANGELOG.md new file mode 100644 index 000000000000..1ff11b48ae0b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-country-map + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-country-map diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/README.md new file mode 100644 index 000000000000..2bd7e69b89b5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/README.md @@ -0,0 +1,62 @@ + + +## @superset-ui/legacy-plugin-chart-country-map + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-country-map.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-country-map) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-country-map&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-country-map) + +This plugin provides Country Map for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import CountryMapChartPlugin from '@superset-ui/legacy-plugin-chart-country-map'; + +new CountryMapChartPlugin().configure({ key: 'country-map' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-country-map) +for more details. + +```js + +``` + +### Update Map + +To update the country maps or add a new country, run scripts in the Jupyter notebook +`scripts/Country Map GeoJSON Generator.ipynb`. + +```bash +pip install jupyter notebook +jupyter notebook +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/package.json new file mode 100644 index 000000000000..76e1a10bf95c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/package.json @@ -0,0 +1,37 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-country-map", + "version": "0.18.25", + "description": "Superset Legacy Chart - Country Map", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-array": "^2.0.3", + "prop-types": "^15.6.2" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb new file mode 100644 index 000000000000..bde0b48502e7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb @@ -0,0 +1,1696 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Generate GeoJSON from Natural Earth Data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Install Dependencies" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "```\n", + "pip install geopandas shapely\n", + "```" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Download Data\n", + "\n", + "Download the [Admin 1 – States, Provinces\n", + "](https://www.naturalearthdata.com/downloads/10m-cultural-vectors/10m-admin-1-states-provinces/) dataset from Natural Earch Data and provide the path to the downloaded file below." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import geopandas as gpd\n", + "import matplotlib.pyplot as plt\n", + "import shapely\n", + "\n", + "df_admin0_10m = gpd.read_file(os.path.expanduser(\"ne_10m_admin_0_countries.zip\"))\n", + "df_10m = gpd.read_file(os.path.expanduser(\"ne_10m_admin_1_states_provinces.zip\"))\n", + "df_50m = gpd.read_file(os.path.expanduser(\"ne_50m_admin_1_states_provinces.zip\"))" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['featurecla', 'scalerank', 'adm1_code', 'diss_me', 'iso_3166_2',\n", + " 'wikipedia', 'iso_a2', 'adm0_sr', 'name', 'name_alt', 'name_local',\n", + " 'type', 'type_en', 'code_local', 'code_hasc', 'note', 'hasc_maybe',\n", + " 'region', 'region_cod', 'provnum_ne', 'gadm_level', 'check_me',\n", + " 'datarank', 'abbrev', 'postal', 'area_sqkm', 'sameascity', 'labelrank',\n", + " 'name_len', 'mapcolor9', 'mapcolor13', 'fips', 'fips_alt', 'woe_id',\n", + " 'woe_label', 'woe_name', 'latitude', 'longitude', 'sov_a3', 'adm0_a3',\n", + " 'adm0_label', 'admin', 'geonunit', 'gu_a3', 'gn_id', 'gn_name',\n", + " 'gns_id', 'gns_name', 'gn_level', 'gn_region', 'gn_a1_code',\n", + " 'region_sub', 'sub_code', 'gns_level', 'gns_lang', 'gns_adm1',\n", + " 'gns_region', 'min_label', 'max_label', 'min_zoom', 'wikidataid',\n", + " 'name_ar', 'name_bn', 'name_de', 'name_en', 'name_es', 'name_fr',\n", + " 'name_el', 'name_hi', 'name_hu', 'name_id', 'name_it', 'name_ja',\n", + " 'name_ko', 'name_nl', 'name_pl', 'name_pt', 'name_ru', 'name_sv',\n", + " 'name_tr', 'name_vi', 'name_zh', 'ne_id', 'geometry'],\n", + " dtype='object')" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_50m.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['featurecla', 'scalerank', 'labelrank', 'sovereignt', 'sov_a3',\n", + " 'adm0_dif', 'level', 'type', 'admin', 'adm0_a3', 'geou_dif', 'geounit',\n", + " 'gu_a3', 'su_dif', 'subunit', 'su_a3', 'brk_diff', 'name', 'name_long',\n", + " 'brk_a3', 'brk_name', 'brk_group', 'abbrev', 'postal', 'formal_en',\n", + " 'formal_fr', 'name_ciawf', 'note_adm0', 'note_brk', 'name_sort',\n", + " 'name_alt', 'mapcolor7', 'mapcolor8', 'mapcolor9', 'mapcolor13',\n", + " 'pop_est', 'pop_rank', 'gdp_md_est', 'pop_year', 'lastcensus',\n", + " 'gdp_year', 'economy', 'income_grp', 'wikipedia', 'fips_10_', 'iso_a2',\n", + " 'iso_a3', 'iso_a3_eh', 'iso_n3', 'un_a3', 'wb_a2', 'wb_a3', 'woe_id',\n", + " 'woe_id_eh', 'woe_note', 'adm0_a3_is', 'adm0_a3_us', 'adm0_a3_un',\n", + " 'adm0_a3_wb', 'continent', 'region_un', 'subregion', 'region_wb',\n", + " 'name_len', 'long_len', 'abbrev_len', 'tiny', 'homepart', 'min_zoom',\n", + " 'min_label', 'max_label', 'ne_id', 'wikidataid', 'name_ar', 'name_bn',\n", + " 'name_de', 'name_en', 'name_es', 'name_fr', 'name_el', 'name_hi',\n", + " 'name_hu', 'name_id', 'name_it', 'name_ja', 'name_ko', 'name_nl',\n", + " 'name_pl', 'name_pt', 'name_ru', 'name_sv', 'name_tr', 'name_vi',\n", + " 'name_zh', 'geometry'],\n", + " dtype='object')" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_admin0_10m.columns = df_admin0_10m.columns.str.lower()\n", + "df_admin0_10m.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
featureclascalerankadm1_codediss_meiso_3166_2wikipediaiso_a2adm0_srnamename_alt...name_nlname_plname_ptname_runame_svname_trname_viname_zhne_idgeometry
admin
Australia9999909990...9999999999
Brazil2727272727027272713...27272727272727272727
Canada1313131313131313139...13131313131313131313
United States of America51515151515151515151...51515151515151515151
\n", + "

4 rows × 83 columns

\n", + "
" + ], + "text/plain": [ + " featurecla scalerank adm1_code diss_me \\\n", + "admin \n", + "Australia 9 9 9 9 \n", + "Brazil 27 27 27 27 \n", + "Canada 13 13 13 13 \n", + "United States of America 51 51 51 51 \n", + "\n", + " iso_3166_2 wikipedia iso_a2 adm0_sr name \\\n", + "admin \n", + "Australia 9 0 9 9 9 \n", + "Brazil 27 0 27 27 27 \n", + "Canada 13 13 13 13 13 \n", + "United States of America 51 51 51 51 51 \n", + "\n", + " name_alt ... name_nl name_pl name_pt name_ru \\\n", + "admin ... \n", + "Australia 0 ... 9 9 9 9 \n", + "Brazil 13 ... 27 27 27 27 \n", + "Canada 9 ... 13 13 13 13 \n", + "United States of America 51 ... 51 51 51 51 \n", + "\n", + " name_sv name_tr name_vi name_zh ne_id geometry \n", + "admin \n", + "Australia 9 9 9 9 9 9 \n", + "Brazil 27 27 27 27 27 27 \n", + "Canada 13 13 13 13 13 13 \n", + "United States of America 51 51 51 51 51 51 \n", + "\n", + "[4 rows x 83 columns]" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_50m.groupby('admin').count()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA04AAAI/CAYAAABAqYlRAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAACnzklEQVR4nOzdd3gc1bkG8Hdme99V79VFLnKV5YINptcAoV4IgZBACCE9uemk3PRCElIhAZIQCL33AMHGGFwk9yI39V52V1ptL3P/WFlYVpe2Su/vSR6s3dmZb2XLnnfPOd8RJEkCERERERERjU6MdwFERERERESJjsGJiIiIiIhoHAxORERERERE42BwIiIiIiIiGgeDExERERER0TgYnIiIiIiIiMYhj+XF0tLSpKKiolhekoiIiIiIaEKqq6u7JUlKH+m5mAanoqIiVFVVxfKSREREREREEyIIQsNoz3GqHhERERER0TgYnIiIiIiIiMbB4ERERERERDQOBiciIiIiIqJxMDgRERERERGNg8GJiIiIiIhoHAxORERERERE42BwIiIiIiIiGgeDExERERER0TgYnIiIiIiIiMbB4ERERERERDQOBiciIiIiIqJxMDgRERERERGNg8GJiIiIiIhoHAxORERERERE42BwIiIiIiIiGgeDExERERER0TgYnIiIiIiIiMbB4ERERERERDQOBiciIiIiIqJxMDgRERERERGNg8GJiIiIiIhoHAxORFMUCknwBULxLoOIiIiIYoDBiWiSet1+/Omd4/jO8/sRCDE4EREREc0G8ngXQJRMth7vxlee3IOOPi8A4O3DnVhRYMGKQjNWFFiwONcEtUIW5yqJiIiIKNIYnIgm6MmdTfj2c/sRCEmDj3U6vHj9YDteP9g++FhlUQqe/Mza8PN9HkgA0vQqyEQh1iUTERERUYQwOBGNY39zL+558wg2Heka8zhBANYUp+KbF5cBADYf7cKnH66CNxBCplGFz58zFzetKYxFyUREREQUYQxONKuEQhJ63X5YdMoxj/MFQvhvTQce29GEzUfHDkwAsDTfjAdvqUCaXoVOhwffeHofnqhqGny+o8+LAy29w14XCIbQYHWhp98HAKjr7sfhNgfyLBqUZRlRmKpFr9uPdIMKmUb1JN8tEREREUWKIEnS+EdFSEVFhVRVVRWz6xGdVN/txJNVTXhh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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "df_50m[df_50m.adm0_a3 == 'USA'].plot(figsize=(20,10))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Use 1:50m geometry for some large countries:" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['Australia', 'Brazil', 'Canada', 'United States of America'],\n", + " dtype=object)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_50m['admin'].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "df = pd.concat([df_10m[~df_10m['admin'].isin(df_50m['admin'].unique())], df_50m])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Adjust the Maps\n", + "\n", + "TO SUPPORT NEW COUNTRIES, ADD COUNTRY NAME BELOW" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "# Country names used in file names\n", + "countries = [\n", + " 'aland',\n", + " 'australia',\n", + " 'belgium',\n", + " 'brazil',\n", + " 'bulgaria',\n", + " 'canada',\n", + " 'china',\n", + " 'denmark',\n", + " 'egypt',\n", + " 'estonia',\n", + " 'france',\n", + " 'finland',\n", + " 'germany',\n", + " 'iceland',\n", + " 'india',\n", + " 'indonesia',\n", + " 'iran',\n", + " 'italy',\n", + " 'japan',\n", + " 'korea',\n", + " 'liechtenstein',\n", + " 'malaysia',\n", + " 'morocco',\n", + " 'myanmar',\n", + " 'netherlands',\n", + " 'norway',\n", + " 'portugal',\n", + " 'poland',\n", + " 'russia',\n", + " 'singapore',\n", + " 'slovenia',\n", + " 'spain',\n", + " 'sweden',\n", + " 'switzerland',\n", + " 'syria',\n", + " 'thailand',\n", + " 'timorleste',\n", + " 'uk',\n", + " 'ukraine',\n", + " 'uruguay',\n", + " 'usa',\n", + " 'zambia',\n", + "]\n", + "\n", + "# country name used in dataset\n", + "country_name_aliases = {\n", + " \"uk\": \"united kingdom\",\n", + " \"usa\": \"united states of america\",\n", + " \"korea\": \"south korea\",\n", + " \"timorleste\": \"east timor\",\n", + "}" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Make sure all country names are covered:" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "[x for x in countries if country_name_aliases.get(x, x) not in df[\"admin\"].str.lower().unique()]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Preview all countries:" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "alt_maps = dict()\n", + "\n", + "def get_gdf(country):\n", + " country_alias = country_name_aliases.get(country, country)\n", + " if country in alt_maps:\n", + " gdf = alt_maps[country]\n", + " else:\n", + " gdf = df[df[\"admin\"].str.lower() == country_alias]\n", + " return gdf.copy()\n", + "\n", + "def plot_all_countries():\n", + " plt.figure(figsize=(20, 20))\n", + "\n", + " for i, country in enumerate(countries):\n", + " # create subplot axes in a 3x3 grid\n", + " ax = plt.subplot(len(countries) // 5, 6, i + 1) # nrows, ncols, axes position\n", + " get_gdf(country).plot(ax=ax)\n", + " ax.set_title(country)\n", + " ax.set_aspect('equal', adjustable='datalim')\n", + " \n", + " plt.tight_layout()\n", + " plt.show()\n", + "\n", + "plot_all_countries()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Handle countries with flying islands\n", + "\n", + "#### USA" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "For countries with flying islands, we need to move the islands closer to the mainland." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "usa = df[df['adm0_a3'] == 'USA']\n", + "usa.plot()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "def reposition(df, idx, xoff=None, yoff=None, xscale=None, yscale=None, simplify=None):\n", + " \n", + " def move_and_scale(series):\n", + " if xoff or yoff:\n", + " series = shapely.affinity.translate(series, xoff or 0, yoff or 0)\n", + " if xscale or yscale:\n", + " series = shapely.affinity.scale(series, xscale or 1, yscale or 1)\n", + " if simplify:\n", + " series = series.simplify(simplify, preserve_topology=False)\n", + " return series\n", + " \n", + " df.loc[idx, 'geometry'] = df.loc[idx, 'geometry'].apply(move_and_scale)\n", + "\n", + "\n", + "usa_copy = usa.copy()\n", + "reposition(usa_copy, usa.name == 'Hawaii', 51, 5.5)\n", + "reposition(usa_copy, usa.name == 'Alaska', 35, -34, 0.35, 0.35)\n", + "\n", + "usa_copy.plot(figsize=(8,8))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### China\n", + "\n", + "China claims sovereign over Taiwan. For disputed territories, we respect each country and give them what they want.\n", + "\n", + "In addition, Hong Kong and Macau should also be included in a China map." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
featureclascaleranklabelranksov_a3typeadminadm0_a3gu_a3nameabbrev...name_plname_ptname_runame_svname_trname_viname_zh_xgeometryname_zh_yiso_3166_2
0Admin-0 country04CH1CountryHong Kong S.A.R.HKGHKGHong KongH.K....HongkongHong KongГонконгHongkongHong KongHồng Kông香港MULTIPOLYGON (((114.22983 22.55581, 114.23471 ...香港特别行政区CN-91
1Admin-0 country03TWNSovereign countryTaiwanTWNTWNTaiwanTaiwan...Republika ChińskaTaiwanКитайская РеспубликаTaiwanÇin CumhuriyetiĐài Loan中華民國MULTIPOLYGON (((121.90577 24.95010, 121.83473 ...中国台湾CN-71
2Admin-0 country04CH1CountryMacao S.A.RMACMACMacaoMac....MakauMacauМакаоMacaoMakaoMa Cao澳門MULTIPOLYGON (((113.55860 22.16303, 113.56943 ...澳门特别行政区CN-92
\n", + "

3 rows × 47 columns

\n", + "
" + ], + "text/plain": [ + " featurecla scalerank labelrank sov_a3 type \\\n", + "0 Admin-0 country 0 4 CH1 Country \n", + "1 Admin-0 country 0 3 TWN Sovereign country \n", + "2 Admin-0 country 0 4 CH1 Country \n", + "\n", + " admin adm0_a3 gu_a3 name abbrev ... name_pl \\\n", + "0 Hong Kong S.A.R. HKG HKG Hong Kong H.K. ... Hongkong \n", + "1 Taiwan TWN TWN Taiwan Taiwan ... Republika Chińska \n", + "2 Macao S.A.R MAC MAC Macao Mac. ... Makau \n", + "\n", + " name_pt name_ru name_sv name_tr name_vi \\\n", + "0 Hong Kong Гонконг Hongkong Hong Kong Hồng Kông \n", + "1 Taiwan Китайская Республика Taiwan Çin Cumhuriyeti Đài Loan \n", + "2 Macau Макао Macao Makao Ma Cao \n", + "\n", + " name_zh_x geometry name_zh_y \\\n", + "0 香港 MULTIPOLYGON (((114.22983 22.55581, 114.23471 ... 香港特别行政区 \n", + "1 中華民國 MULTIPOLYGON (((121.90577 24.95010, 121.83473 ... 中国台湾 \n", + "2 澳門 MULTIPOLYGON (((113.55860 22.16303, 113.56943 ... 澳门特别行政区 \n", + "\n", + " iso_3166_2 \n", + "0 CN-91 \n", + "1 CN-71 \n", + "2 CN-92 \n", + "\n", + "[3 rows x 47 columns]" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Chinese Special Administrative Regions\n", + "china_sars = df_admin0_10m.loc[\n", + " df_admin0_10m.name_en.isin(['Taiwan', 'Hong Kong', 'Macau']),\n", + " [x for x in df_admin0_10m.columns if x in df.columns]\n", + "]\n", + "china_sars = china_sars.merge(pd.DataFrame(\n", + " data={ \n", + " \"name_en\": [\"Taiwan\", \"Hong Kong\", \"Macau\"],\n", + " \"name_zh\": [\"中国台湾\", \"香港特别行政区\", \"澳门特别行政区\"],\n", + " \"iso_3166_2\": [\"CN-71\", \"CN-91\", \"CN-92\"],\n", + " },\n", + "), on=\"name_en\", how=\"left\")\n", + "china_sars" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "china = df[df.admin == \"China\"]\n", + "china_copy = china.append(china_sars)\n", + "china_copy[\"name_zh\"] = china_copy[\"name_zh\"].combine_first(china_copy[\"name_zh_y\"])\n", + "china_copy = china_copy.drop([\"name_zh_x\", \"name_zh_y\"], axis=1)\n", + "china_copy.plot(figsize=(12, 12))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Note [ISO-3166-2:CN](https://en.wikipedia.org/wiki/ISO_3166-2:CN) has updated subdivisions to use letters instead of numbers (e.g. `CN-91` -> `CN-HK`). We kept the numeric code for backward compatibility." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Finland\n", + "\n", + "The Åland Islands (ISO country code AX) is an autonomous region of Finland, and carries the ISO-3166 code FI-01. " + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "finland_aland = df_admin0_10m.loc[\n", + " df_admin0_10m.name_en.isin(['Åland Islands']),\n", + " [x for x in df_admin0_10m.columns if x in df.columns]\n", + "]\n", + "finland_aland = finland_aland.merge(pd.DataFrame(\n", + " data={ \n", + " \"name_en\": [\"Åland Islands\"],\n", + " \"name_fi\": [\"Ahvenanmaan maakunta\"],\n", + " \"iso_3166_2\": [\"FI-01\"],\n", + " },\n", + "), on=\"name_en\", how=\"left\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "finland = df[df.admin == \"Finland\"]\n", + "finland_copy = finland.append(finland_aland)\n", + "finland_copy[\"name_fi\"] = finland_copy[\"name_fi\"].combine_first(finland_copy[\"name_fi\"])\n", + "finland_copy = finland_copy.drop([\"name_fi\"], axis=1)\n", + "finland_copy.plot(figsize=(12, 12))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Norway\n", + "\n", + "Remove NO-X01~ (The uninhabited Bouvet Island) and move Svalbard closer to mainland" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "norway = df[df['adm0_a3'] == 'NOR']\n", + "norway.plot()" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "norway_copy = norway.copy()\n", + "norway_copy = norway_copy[norway_copy[\"iso_3166_2\"] != \"NO-X01~\"]\n", + "reposition(norway_copy, norway.name == 'Svalbard', -12, -8, 0.5, 0.5)\n", + "#reposition(norway_copy, norway.name == 'Nordland', 10, 0, 2, 2)\n", + "\n", + "norway_copy.plot()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Portugal" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "portugal = df[df.admin == 'Portugal']\n", + "portugal.plot()" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "portugal_copy = portugal.copy()\n", + "reposition(portugal_copy, portugal.name == 'Azores', 11, 0)\n", + "reposition(portugal_copy, portugal.name == 'Madeira', 6, 2, simplify=0.015)\n", + "portugal_copy.plot(figsize=(8, 8))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Spain" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "spain = df[df.admin == 'Spain']\n", + "spain.plot()" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAeEAAAEtCAYAAAA/YNjBAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAABzhElEQVR4nO3dd3ykV3no8d+Z3pt6l7b3qtUa27hQDJhisKkBElogCQkhCeRCSCFAkstNoSSUEBJMC5BA6CWAsTFgs733ot6lKRpNL+/9Y0ZaaTWSps9o93w/n/2sNHrnnTOa0Tzvac8jFEVBkiRJkqTyU1W6AZIkSZJ0u5JBWJIkSZIqRAZhSZIkSaoQGYQlSZIkqUJkEJYkSZKkCtGU88Fqa2uVzs7Ocj6kJEmSJFXMsWPHphRFqVvu52UNwp2dnRw9erScDylJkiRJFSOE6F/p53I4WpIkSZIqRAZhSZIkSaqQrIOwEEIthDghhPjeTbd/XAgxW/ymSZIkSdKtLZee8B8CFxbeIIToBpxFbZEkSZIk3SayCsJCiFbghcBnF9ymBv4e+NPSNE2SJEmSbm3Z9oQ/SirYJhfc9vvAdxRFGV3pjkKItwohjgohjk5OTubXSkmSJEm6Ba0ahIUQLwImFEU5tuC2ZuAVwD+vdn9FUT6jKEq3oijddXXLbpWSJEmSpNtONvuE7wJeIoR4EDAANuAcEAGuCiEATEKIq4qibChZSyVJkiTpFrNqT1hRlPcqitKqKEon8GrgZ4qiOBVFaVQUpTN9e1AGYEmSJEnKjdwnLEmSJEkVklMQVhTlCUVRXpThdkvxmiRJ1ccXiqEoSqWbIUnSLUb2hCXpJoFInC8fupHu1R+O8ff/exF3IFrBVkmSdCsqawEHSapm/nCMa5MBPvDdc5wa8rG/w8nnftnHN44P8bwdDbz4n3/Jd/7gbn5wZhR3IMoru9todhgr3WxJktYwUc4htu7ubkVWUZKq0fmRGR78+C/mv3/J7mYSSYXvn0ltg9/f7uTYgIeN9RauTKSytOo0Kl57sJ033dVFm8tUkXZLklTdhBDHFEXpXu7ncjhauu3NRuJcGJ1Bqxbztz1xaYIfnx+b/16d/tlcAAaIxpN87ld9/PYXjhJPLMxjUx6JpMLxAQ/v+cZppmcjZX98SZIKJ4ejpdvaqUEvf/jVE/RNBxfdPhOOz39t1qk5MeBZ9hwXx/x84el+3nR3V8namcn5kRke/uRTAJwc9PK1tz0Du1Fb1jZIklQYGYSl204gEmfCH+F7p0b42GNXiCdXnpLprDVxbsS/4jEf+v55tGpBT1cNXbVmtGrBdCBKrUVPJJ5gyBMiFE2g06iIJZJ01JgJROJ899QI9TYD922uw2bQcmbIR5PDwJAnhDcY5dsnR5j0R3h4Xws1Fj3TsxG+dXKEaDxBKJqYf/yLY37+4CsneNcDm9jV6ljUNkVRSCfVkSSpysggLN12fKEYz/vIk0SzHEI2aFf/M0kq8IHvnSeWUJiLd4oCf/GibXz4hxeXPJZKgEqI+QsAs07NhgYrF0ZmMrbrl1enVm3Dk5cn+cWVSRptBgQQjKUCdSSe5G9fthOVAJtRy/O2N6JWyaAsSdVABmHptvPDs2Mk0wsSLXoNs5H4isdnu3gxllDSx6e+Vwm4MJo5qCYV5tsAEIgmODXozepxVm4rjPrCi24TAr5xfIhj/akh9V2tdt7zgi1sb7Zj0qnRqku/NOTa5CyhaIIdLXYAfnZxnG+eGGE2HOP/PrKLBpuh5G2QpGokV0dLt53DvW5+cGaU2UicYU+Ip69PL3usUasCBKFYYtljlrOr1c7ViVmC0dzvW073bqrjjnU1aNUCq0HDHetqaHeZCh7CjsQTvP8753ny8iST/ghvfmYX92+u5z3/c5rrk4H545wmLXduqOVt96xbMpS+mmRSIZZMoteoC2qrJJXKaqujZU9Yuu30dLmY8If5/ulRhrzBFY/trDVzYXTl+eCbbag3U2PWc3LQSyRe/lXTufr55Ul+fnlxmdFNDRbedFcXd22opdaix6hbPchF40m+e2qEX1yZZDoQ5cLoDL5QjFhCwWHSYtap+b0vH2NqdnHSE28oxp3ra/AEYzx9bZoDnU40K/TOv3J4gG+fHEYg6J0KoFELvvLbd9DqNMq5b2nNkT1h6bagKAp900FqLDo+9L3z3LOpjrvW1/LM//d4xuHoXS12/JE4vVOBDGdb2f4OB5fHZ/GHVx7mXktMOjUus44dzTZ2tNg5PuDljnUuLo3NoqAwMROhdyrAsDdU8GMZtWo6a808a0sdb757HS6zDkjN5f/Vt8/yrZMjS+7z8N4WHrs4wYFOJw/va+Vgl4saiz7nx3784gTtNSbW18lMvFJxrNYTlkFYuiVE40nUKpFxwVE0nuRd/32K75wa4YU7m/j19WmC0QT/83t38oKP/SLD2aCn08nhvuW3Ja2mp8vJ4d7871+tDnQ6OVLA7yVXbS4jj+xrpX86yIt3N/GmRzN/fqhEap594fcffmQXj+xrRbXKIrRgNI4nGONff36NLzzdz6dft4/n72gq5tOQbmMyCEu3NEVR+O+jQ/zbL67T5jLxvhduZV2tmWFviC/9egCrQcPjFyc42r80cHTVmjP2dC16NS6zngH3ykPVK1lXa8YdjOINxvI+RzUqdxC26FMLxzzBGA6TlmAkkfWqdoAHdzZysKuGO9bVYNCquDw+y752Bw6TjhMDHn56YYKvHxvCatDMvxfMOjU//uN7sRo0WPUaOcQtFUQGYemW5QvGeMsXjiwJCvVWPdOBKIlV9v8uZ3+Hc34lcSH2tzs4NuAt+DyVZNGraXEYsRm1DHtDNFgNnCjCKu7l7GyxMewNEYkl0WvVhGOJvBe2CQGNNsOS1eImnZpay/IXWQc6nUz5I/S7g/zli7bxyP5W/uXxq9y1vpaD61xyEZiUE7kwS7plTc6GecmeFo71exYNRU74C0vhWKx+z5AnhEmnrvrV0QttabQyMRPBHUwtntrWZFs0LD/iDS9314LN9bJNOjU7W+wc6nUXdL4Ol4nxmaXtDUYTGQOwENDmNHFq0Es0vd3s0af6+PnlSR6/NMm//vw6KgH/8IrdPLyvtaC2SdIcGYSlNSOZVDjanyqi8PilCf7kv09RioGcmXBxhpDH/RHqLHrW11k4M+wryjlLpc2Z6u2eG5mhzWVkNgIus57ZSPkuIK5NpvJyB6MJgtE4DpN20XC+XiPY0mjj1NDqv8tai25JKtKV1Fv1mHRqBtzBRRd0fdPBRedJKnBpPLfV8pK0EhmEpTUhnkjyR/91iu+eWroyttiSeQ5jZzI5G6HVmSp3uLfNQb87WFV1idUC1tdbuDw+C57UyuZBd4hGm56xmQhjM6UpDNHT6QJgxBtiKL2iutluRKNS0eo0cnzAi16jotGmp9mR+n57c2pV9u42O6cGVw7EjXbDkq1QKzHr1fROZRe0tzXZsj6vJK1GBmFpTVCrBI/sa2FiJsyJQS/REu6/rbHouTqZ+9ak5VyfmmVvm4OTg156ulwFD7MW044We8aeZSmLQnV3ODncd+N30O4yYTNqiCcUJmcj89MJkXgSm1HLiQEvdqOW4+n5dUMWc7K6HLOAZTui0uIw8pytDTmdW5JWIoOwtCb8+y97+c6pEU5nMRRZqNlIcVc0+0Jxrk/Nsr/DWbFh6RqzjnaXiVgiiUGrBgFXJ2aXHVrtqDERSSSYCRVnr7NBo2Jbsw2VSnD0poV0K61Cvzw+y/Zm66ICGsulGXWZtDjNOkw6NbmMZWxusBJYJXUpgMOk5UtvOYhZr+Gpq1P8+vo0f/zA5hweSZKWkkFYqnrnRnz8y+NXy7bdJ5uCDbmw6NWEYsmM26QyMWpVtDiMS3rjBo2K7S12NCqBLxTj4tjiAOowaWm0Gbg64WduoMBl0tJeY0ZByWlV89F+D+vrzERiCSLxxSGtyW5Ap1bRn8MWru3NtrxXis+VlWyy6xn1RRjyhNjdamfMF2Z8wSK8zlozx9O9Zl8ou/fK3nYHJ7JsVySWnF9x/8TlSS6MznB1YpbOGtOKGb4kaSUyCEtVr9luRFXGvZpDBewPzmRzo41AJL4kaC5nW5OdYwMeWpxGWh1GxmfCxJMKOrVqfuvU5gYrVr0af3rhlFqAzaDl4pgfs07NemdqiHdsJszJPLcUjc+EOdhVQzgd0RVFYdQXZig9d7wnPcS+Eku6OlS+AVivUVFvNVBn0XN1YpZtTTbOj85wasiHWiXY0mglqSjYjVqSyVRBjs2NVg5nOeQfziEneCiW4MGP/YIdLTaujM/ij8R5zj/9nHqrnve/ZDt72hw0O4x5PU/p9iX3CUtVb2o2QveHflrWx2xzGRl0F56CEcCqV6MosLHBSt90AM8yPXqjVsWmRitnhnxkszasxqxjfZ2FsZkQjTbjonnWQjlNWoQQKy4iqzHr6Ko1c2lsZv5i4GZzQbMYdjTb8ASjDK+wTWp7c2qf8Ww4xmrLBg50OrkwOlPUFeA9XS5efaBNbmGS5sl9wtKa952TI6yrM6NTq7LuTRYqVMS9vXMB6sSgl4MrLMxymLQkkkpWARhgOhBlOpA610CRLhjmdNaYVx2+Tj1+FK1aZExw0mDVc350BqdJS1d6qDgX25ttmPUaTqULYVwY87O/w7liED43MoMQYNFpqLPqMenVGDRqRn1hhr0hujucqFWCaDxRksxfh3vdHO518/VjQ+zvcGI3ahmfCROIJvjgQztkHWdpCRmEpapn1qv5z7fcgcus49M/v8Y//eRySR+vu8OZ9fxtrrRqQXeHE5VKcG7YRySeZF2dmXhC4fpUgFFfabYE5cJl0uIJZr+9J5ZQyBRbZiNxejqdhGKJnGsWd9aYuDrhJxJX2N1qR69JlZQ8l8XCNkUBfySOf8FiK7tRy542B6eHbiTiKKWnrk3z1LVUiUybUcOGOgtnh33sbnOU/LGltUUGYanqvepA+/zXuQSHfJQyN7JOLTg56Fuyuvfy+GxJHi8fJq2KDfXWnIe2/eE4WpXAadbNbzEKRBMc7vPQ05XaE6xVC2JZBkCHSUvfdJCtTVbUKlFQMQ1IVWA6N+IrWja0XGxttHGo180HvneeR/a18pqeNpmPWpong7C0pvz5C7dxuNfNuZEb84x3rq+Z73Vk42CXi1AsgUGjpm86gEGrotaiR60SRR2Gvlk0oaBWl28NRj7yCcCQ2u60qcGCUaueD8ImrYpgLMmRXjcKqd5ttlmsTg762Nfu4PiAl/3tjpzbk4ndqMVX5oIaKsH8MP2xfg/H+j0MeoL8n+dvWXRcMqnws4sTxBJJnr+jsWhB+p9+fInHL03yjPU1dNSYeHhva1a1oaXykUFYWlMujs1wbmSGuzbUsKHOgkGnBoWsgrAQ0Oow4g3GluyPnZtT3d1qL0m7obTD3MWS7yr0eFJhajZKi8OIRa+mxqyjwW7kcK+bzlozdRZdzglQ5uaQk6S2Z8WTyUWLrVxmHevrzAghCERiXBz1s1JHe12tpaiL17LhMOmWLG771BPX2NliJxhNcKzfzX2b6/nPQwP8/PIkAA/va+ENd3biMutodZoKevwnLk9yZtg3vz/9Iz+5zDufswmbUcsD2xpSe8alipKro6U1JZlU+H//e4nf6Gmn0W7g/3zjNN88Mbzs8W1OIzUWPQPuQKqXt8rWFZ1a0FFj5spE8YaIzTo16+stnB+ZIV7ElJilsL/dybGB/C4U5gogtDmN9LuDCAF1Fj0XRv2EctgKdLMGm55gJIHNpEXA/BapLY3WRQv1TDo19VY9Oo0q4xD/9mbbohGUUlMBO1szZyQzaFXEEsqKlb7e/bzNvP3+DXk/fiyRZN8Hf4I/vHwiEoNWxUv3tPB/H9mV9+NIK5Oro6VbikoleM8LthCIxHnhx3+RMVjWW/V01ppBgcN9bgbTH9rZ7B2NJhSGPUF6ulxZ7zVdyZZGK7OReFkyfRWDWi1QCbJeob3Q7hYHJ4e8jPlC84ufirHNazydv9ofiaNRifn9yXajdtFxwWiCcCxJPEN3uFivZ7aa7AbaXaZlV8KHY6vnBf3HH19ie7ON+zbXA6l92tenApwa9HJtcpYHtjWyu83BsDeERiVosBkW3V+rVvHK7jb+/Ze9yz5GOJbkq0cGefHuZqwGDbOROAJBq9NIm6uwXriUHRmEpTXpycuTiwJwSzqpRY1FRzCaKOgDNxhL4i9SJSWtWjXfc1sLroz70ahVOeXm3tvuYGo2wskhL0BJVx/HkwonB73s73ByfMBDV62ZGouOiZkIA+4gsUSSRpsJoVp8ARApoCeeq7mLhLGZ8JLeei6SCrzx0SM8tLsZh0nHzy5OLErx+eiv+vjiWw7y9i8fx2rQ8MruNkZ9YYxaNZF4ApUQTGZZ1vO1nz206PsN9Ra+8tt3UGfV59V2KXsyCEtr0s1zwK8+0IbFoGHQHeQ/ftVX8PltBu3qB2UhtbVm7XCadHiCuc3dxhNK0RKbLEerFqyvswAwNhPm3IiPZ6yr4ckrU/ROpdrb7kpNPWhVKvSa1Lx0o92AXqMqeVpJu1HDxnorKiE4MZgazt/f4VySJztXigLfOpm5clggmuDhTz4FwKgPPvT9CxmP29li48xwbsPwVydmef93z/GJ39iXW4OlnMkgLK05yaTC148NAak0hZ987T42N1pxmXW8+J9/WfD5F847Fmoiy55ItcgnmYRBW/oLDbtRu6hHqVUJLo/7sRk0bGq0MuWP0DcdnF9gV2PWAdA/FWC2hCve52xqsC7Z2jZRojKQuRrxhvNaFPj906O889l+NjZYS9QyCVJrByRpTVGpBB94aDs6jYrPvfEAz9xYS4PNwOs+eyjnob+uWvOi73e12rlrQw3eIuxHVoniV2QqNYcp9xGAcux4nesFz4klFSb8EWoseo72eZb0dN3BKK1OI3U3zZOWwrpaM2cz9DSzLSJRatOBKKo8M3WtpamUtUr2hKU16QU7m7DoNRxIF4cHuD6V/TCqUatmV6udI31umh0GovEktRY9Z4dTeZt7Ol0Fb2fZUG+pqkQc2fCskCt6OdcmA2hVgliJVn7rNCoy7eJIKswPRbtno6yrM3M9vQ1qa6ONU0M+NtZbltyvmDY3WBnyBDOu/g5Gi1MGslBqAf3T+dXHzjd4S9mTQVhakyx6DS/Y2UQyqfD4pQl2ttipMeuyWoiyucGKEMr8ytWRdC7iqdkbAcgdjHCg08nJQW/WWZ5uVmfR4zDqQMDETJh6m4ExX3jF+rmVtlLBhuVMB6Il3f4TjSdX3drlDkaZCUdpdRixGDRcGfezvdlKjTm1sGg2EkdRFMaKPEQ8HYgQSA9337yqPJZQ0GvEklKQ5bar1ZFTGcuFnro6xb2b6ua/TyQVfnxuDJ1Gxa5WB7UW3XxikUg8gV4j9x3nSgZhaU0b8YX433NjS1aOriQQja86zHZ1IgAEaLDqqbPp6Z8KLspFvJo2l5ETAx6CC7ai9E0HMVT5Qq0GuwF3DlmlXGYt62otS1JxFtvpIR8NVv2i+sE3iydhyHvjdT034gduTE9oVIL97Q6ODXjz3oa10JZGK5cXJH3Z0mjDG4wy4rtRYKLWol+x4EQ5aAt4z7XXpLYpzUbinBjw8MsrU/zrk9fnC5HsbnPwty/bwfZmO+/4ygn+7uFduNLz8fmKJ5L0TQf4zqlRpmcjGLVq3vfCrbdsqk+ZrENa8+KJJPf8v8cZ8YWptej5wEPb+fKhfn51NXMWrfV1Zq7lmL3JadLSWWteVAB+d5udQDiOy6wHUrV2Bz0h6q16vMFoxq06hWxZKYdch+FLmWv7Zi6TNqcLhOXoNKktWIX03l1mHeFYgmA0QY1Zx7o68/x+9LF0EBYinSWtz0Ml+8J1Fj2eYDSvRDFOk5aeLhdDntCi35VWJdjd5mDIG2LMF6bZbuB777gbu1GHWiUIxxKcG5khHEvwq6tTbGyw8NI9LcsG0kg8wfXJADqNivd98wy/vr74PXj3hlp2t9nRqdX84XM25vw8Kmm1ZB0yCEu3hHAswaQ/gkGr5g2fO7zih2sh870GjQqzXoNRq17U64JUtZx4QmFni33ZJA0uk5Z6m6EqA3Grw0idTb/oQmM1G+otmLRqTmdR3ahQFr26qLV/tWrB9mY7Oo0q533le9tuDPEKAWohlg1yO5ptaNUqRn2hog+HZ2tDvYWrRcwCN2fhRdgnfmMfL9zVhKIo/PV3z/PoU32Ljt3SaOXFu5t53cEO7AsWAA55grzp0SNZrZ+4d1Mdn39TT1GfQ6nJjFnSbUGvUXFm2Md/Hhrg3MgMNoMGq0HLsHfpsPPUbAQBefVOwvEk4XjmedOZUJyDXS6uTS7/YeIOxnAHY/PFCapJnTW3AAyp/aT1ZUjosL/DwbF+b1HPGUukEn9A7hdmU7M3gqmiQHyZzkyT3cDViVl2tdqps+orFoRNJSraMLJgqP0D3zvHkCfI8QEP/3tufMmxF8f8XBy7xIXRGd7/ku2cH5nh6sQszQ5D1hcIZ4Z9/OziOF21Fprshlsi97UMwtItYSYc54++dpJIOtPTu5+/hR+dHc0YhK9PBejpcnK4tzRF3bMJ7rnW1y2VhcPjyTxHxSb8EVzmpYUKiilQxB5wJof73FkHYq1KZD0/aTdqGfWFCcYSmLSV+7iNJbLPgJYtvUZgN2lodjiB1KK+TzxxlZnQyusDvnd6lB+fH0erEvOL2rLlDkR506NHUQl4273rl1SjWotkEJZuCR/+0UU0KsEb7l3HC3Y08fHHriw7J5xSmkUe2YQxk1aV03aqYunpdBGJJxh0h6i16rAbtRzp83Cg04lWreLX17MvB3mzVqexpEHYaij9R9WxAQ8Hu1ycHPSsuKJ5W7MtY1GGm+3vSAWnnk4XR/vdtBVYEakQxbyIsejUNDuNXJmY5fzI0mmVbIa+o/Ek+bxbhEiNPCQVeGRfax5nqD4yCEu3hL956Q7+9mU7eezCOG9+9AjTqwSES2N+DnSmPiTLtbBozs5WB5F4Iuu8vsUy6gvhj8TZUGdZlD3pSJ+HPa2OglYLG0s8LBjJouBBoRLJ1La1ZruBZoeRY/2ZF1Rlu9r48pifeFIhFEug16jor9DWtDaXsajb4lqcRi4tM3/baMt+aDlXG+ot/OdbDvLTCxM02vVsKPEe8HKRQVi6JQgh+P7pUX7/K8fJZlTVF4pxpC/V8ykHo1bFxgYr50dm5hdt1Vv1mHRqaiw6VEIwPRvFbtKiVatSc9bpKlDFsLvNzvhMhAabIWP6QkUUtkBzfCaM06TFU4TVyzdzmXVcGC1fCcIRX5gR3/KpHjNVacpk4Za2SDyJRgU51MUomia7sai5vfung8uuLC+0aMVK7lpfQ73NwG8cbC/6uStJBmHpljDoDvJX3zmXVQCe01ljYsxXnrR8mxqsS4Yw5/JK900v30vZ1WrHG4wRTyYx6zQYtKmqTJ5gDK1akFRYsSbtnERCYcwXnt8+czONSkWr08ioN0Q+uUn6poPs73ByrN9DT5eLSX9kPptVodyB6HxlonJaLltUvhMZVkNpLlJWkyxyJrPwKlcSNmNxip/c7FbN3iWDsLTmXRrz8/0zo4SzLFe3sd7C2+/fwB3rXNzxdz8rcetSxeTP5LmFJ1MdYq1a0N3hZDoQpcasS194KPgjcZymVCnHmx8vssrCnGPpHl8hW1lC0TgHOp0Me4IEi1w0YcwXptGWeXXxtiYrVydmF+3LVgvY3GglnlTwhWLoNWq0arHq/vADnU6uTQSIxhP0L3MREY7n99xMOnVFgnA2F2nFdG1ilu4OJyohSCoKVydn2VRvxROMcn1yNq+LPIAfnBnlRbua2N9RntGrcsk6CAsh1MBRYFhRlBcJIb4MdAMx4DDwNkVRqiNjuXRbeeraFB9/7MqyP9/SaOWOdTWsrzOzrs7CvnYnRp16vmZwMbInLafDZeTqxGxRzx9LKPPDpJl6mxvqLVj0Gra32Bj1hhhwh7Dqs/tT1xTQ2zg/mhqCbHUaix5sxmbCbGuyUWfVE08qXEg/1lzv++YELHszlBHc1mRlb5uDQU+QNpdpyXasm1dHL1d96cKoP6ee+dyFTb7pTwvhMGmLPjRs0atXLE4xHYguWZMx93s90Onk3LBvUSa5bI3PRHjNZw7xP793Jzta7Dnfv1rl0hP+Q+ACYEt//2Xgdemv/xN4C/Cp4jVNkrLjNC1Nk2fWqXnT3V1sqLfwol3NGUv0WfQannz3/diNWh78+C8ybmcqlEGrYUO9tmR5lTO5OjGLTi043u9hQ72F7c3WrHpDzQ4Dl4rwgd3sMGI3ajHp1EXNFnU+PS+s16jm51cFsKvFvihZSL1VP1/IYfH9U89NJWA2vHQbTS6v/5khb1Z1etucqYuwjQ0WrlSgmMfNi/CKwaLX5F1daW4RZE+nk8N5LIiMJpKcGPDcUkE4q2V+QohW4IXAZ+duUxTlB0oaqZ7wrbFeXFpznBly1f7Ovev5kwc289CelmVr5AohaK8xEYkniJZgHyXApXF/yVcOZxJNKMQSCjq1inAsyakhH/vbnWjVy/d0G22GogTMw71uzo3MEIknS5KucUO9hT1tTrY12Tja72EmHKOn00mdRU+dRb/qdqmkkpqjv1mdVY/NkN1rVbdMoL+ZJb21qhIBGEqzP7jNZcKS5cjKcjJVncpWnbX05SnLKduMAR8F/hRY8ooKIbTA64EfZbqjEOKtQoijQoijk5OT+bZTkpZVsyAIr68z82+/2c3b79+Q1X0PXZ/muR95smjbhTQqwZ+/cCtvubvrxm0LAt++dgf3LKhKA6m9j6UyHYjOJ9Q/NuBhT5sj43FqlWB0mUVb+TDr1EzMhOnpctGT3gpWLOFYgqP9nvmecd90kMN9HiZnI0zORrLKRKZkuDw4OeilwWbAZdayp9UBpHrNmTTYDFklmrgw6qe7w4m5RBmrVnKg05n3WoSVhKIJGu35B0KjVk2ogDUDXz7Un7G05Vq16uWMEOJFwISiKMeEEPdlOOSTwJOKovwi0/0VRfkM8BlI5Y7Ov6mSlNlcT9hl1vEvv7GPrU22Ve6RMuEP87tfPl7U4uu1Fj1veeY6AJ67rQEhBFuarHzx6X4SSYXnbmug0Wbg3V8/TTAap6PGxFvvWc+z/vGJnFZ2Z2vIE1o0dLjcqPT2ZhtjvjAqAQ5j4YUSAtFEauV2QsEfKd7vd10exTcyOTcyw45mG2a9hivjs8QSCbY02bg0NsNMOIE74KXWoiMST9LuMi2aTlhXa84qWceco/0edBoVDpMWvUaFRa8pynNYyf52R0n2vzdY9ZwtcGple7OtoCHyUV/4lqqolM2Ywl3AS4QQDwIGwCaE+JKiKK8TQvwVUAe8rZSNlKSV2AwaXr6/lQ+9dEdOuWS/+HR/xmHLHS02IrEkV9KrhDtrTBi06qwWuCwc+j64rmb+65t75p/9rRv53FO1brNudkGW69nN7cM16zXoNGr0mvh81qjtzVYujPpzXlzW7jJxbKB4gcBp0jI9W5wRi6TCfDDRa1QkkgpH+lJz6DPh1Os+V1/68rif7c02hr0hnCYtgWjuZRuj8STR9NYec52mpIsBAY4PeLEaNPgzzH0XoqPWvGI5yZVoVGI+eUkh/vi5mwq6f7VZNQgrivJe4L0A6Z7wu9IB+C3A84BnK4pSgS3okpRiNWj5h1fszvl+926q4wdnRhf1Sl7T086LdzVxNL2oaWeLnVancT6b0t98/wLnR2d4ztZ6fn3dPV9HV69Rcf/mev74gdw/IPQaFX/xom188Hvnc75vriLL7PGcW7kbS8Txh+PzK4V7ulwc7nUvqhq0ms2NVkxa1fxwcT62N9sY8oTmRyn2tjtyLi6RrYW/E1uG9JixhDLfE/YWYdX39ckALQ4jVoOai2OlmSuus+pLUuM5/z3Sqd9ro91Q0CLFF+5q4gU7GvO+fzUqZHb900A/8HR6aOB/FEX5QFFaJUll0N3p4jU97Xzo+xdQqwRvuLOTP08XD79zQ+2iYzVqwV0bannWlnoe2tPMW565ju+eGqF3KsCrDrThNOkw5jnvp1WrVlwwVUzZbkHqmw7Q3eHkeHrY8MLYDLvb7KiFYHwmvGKherUQnBgsbC5SoxLYDBrsRi1NdsOypSGLrRSBK5Nhb4jOmtLkkt5Yb8EdiBZ9rzbkV3kMUr/XFocx7wVq62rNfOHNPTTaDLfUUDTIesLSbS6ZVAhE46iEwJzjis9EUll25XWu3vGVE3zn1EhRzrWcbU1WZsLxvLeXzNncYOXapJ9Gm5HxmTAbG6xEE0l0akFCgUD6A7eQwDlXp7bFYVgx4BfbcqkqS0ElUolXVioWkavNDZZl8zrnY2+7g1A0wagvRJvTxIUxf97JP+qteuxGLXajlhMDnqyTdtRb9fzTK/dw98ba1Q+uQrKesCStQKUSWA35pdkrVgAORuP86upUUc61nJv30hZiyBOkzmpgyBtCCJYMOwuRStiRry2N1vmV2uUMwJBe9EP+Pb5cJBVYX2eZ379cCJWA7g4X16eKO7w9NwXgNGm5OjlbUPatCX9kPlXrrlY750d8xJOp0pDbWmyM+8JLMqLdvaGWj756D7WW0tesrpTqKGoqSbcxjUpV8g/9KxN+ai1L91PnIxBNzAfJTANpipJ9kYObNdsNXBzzF9xbz9ewN0R3kbdUrfx4qUIRhdrf4eRwn3t+MVkxLJwh8QRjhItYyer0kI/1dVZ2ttgx6TWcGvQx7o+wpTG1f9th0vLw3hYefeOBWzoAg+wJS1LF6TQq9rQ5eOLSBA/ubKJ/OsjFsZmipjkMxZJsqDcU9UN6JfkEUZdZVxVJ+sv1O4JUNa+j/R42N1q5PObP62Jsb4m2IyUU2NRg4XKJEo1cGl88AqAoqbUAf/uynbz6QFtVvBfKQQZhSaoCH3nlHqYCEdbXpWqk+oIxvnSon48/dmXZFc25KmZN2dXks3ZmfZ257LWdF9raZMU9Gy1a9adcXBrz5z0fXUjii5VYDZqSVUTKZH2dmT967iaevbWhbI9ZDeTCLEmqYk9dneINjx6Z32NaqINdrrKtNJ7b3pTNcb5gjOtTlSlysKfNgV6j4kifu6R7d7PR3ZkqPNFg1We9H1ejgm1NdsZmwvNzrsVQjveKEPDAtgbecGcXd6xz3XIrn0EuzJKkNe3ODbU8tLuZ/z42VJTzlarXlIk7EE2VBpwMLEmKsrfNgUYtEALODXkJFHG+MVdatSjbhclqjvZ56Ko10zsVYF2tmetZ9MrjSTg97GNXq72gILyr1Y5Bo54fxRAC9rbZC95ulolJp+aV3W288a5OOmrMRT//WiKDsCRVsbPDPr51crho5zs97Jvf/lNqNWYdh3rdGHXqRQFlb3uqDODcINzOFjs6jWDQHSpqTy5b1db7mhsOr7XoswrCc3TqwtbZjvkW96TtRi2lWCf++js6eNcDm7GbyjfUXc1kEJakKhWOJXjTo0eKNkRrNWjY1GDl2mTpKvrUW/V01JhwB6LzvctQNIE3FGVPm51zwzMMTAcXraqeKzJwsMtVkSCcrPQY9DIO97nZ0WzLKlfznlZHXhnKtCqBQatCqMSSGsCzkTh72xwMeYJLtg7lY12tmT99/maev6Op4HPdSmQQlqQqdWnMX9SgtLnBWrREFEKASaumzWXCrFejUakY9AQZ8Wael3QHYrgDPva1O7iwTA7uQ72poDMdiDDqK20wVgnQp6v5nBj0Ytaps6qKVG7aLHq3eo3g5JA3r/N31Zm5OjGLEGLJHuBEUuFov4eDXa6CgrDdqOUfX7GbZ2+tr7pRh2ogg7AkVaFLY37+4ttni3pOT7DwrTdGnZrNDVY8gQj97lBWRS0WWq3M4NmRGVocpa8Xu6/dybF+D+vrzHiDMdQqUZVBuHc683C0RgV72pyoVYJ4IsmxPPJq69QCnUaVWoy2wgLdQscJ/uEVu3nOtttrxXMuZLIOSaoyxwc8vOBjT3I6h3J52ZgJFSEvsgLnRnz0u0uXTKPWWvrkDEKkgotBq2ImFKvIMHg2vMEYPV1O9rc75m/b3+HEqNVwtN/DoV436jzmgrVqgUmv4ezw6kPYh3vd7Gt3kE9682dtqee5MgCvSAZhSaoiY74wb/zckZJslSlw3Q4AoViCFkf+KSmzcXrIx8Eu17JlFwu1u9XO0fTCtHMjfmIVmhPe1WKnp8u16nGHez0cG/DS7DCwvdnGsX4P/gWFJuaqXAnAtcxiJ7tRw+42O/vaHRzsctFZY86pItTxAS+b0tmssmXVa/jrl2zP6T63IzkcLUlV4sKoj//3o0skk6XZrjM2E8k7h7RRp2ZHs41kUkGlEvRNly7xh6Kk5od3ttiJxRNcmwosWpx2oNNJIJLIu1SiQasuS27o5XR3OEkqCkkFjqXnXLPZIjXiDTOyTC5tlQo2NFhIJBRAUG/To9eo0GvUxBJJzo3OcKrArUbGHGp1tzqNfOzVe2lzlaZS1K1EBmFJqqBvnRimbzrAqUEvj1+anL+93qqns9bMpbEZfMUYRk4z5FluUVEUxnxhBkuY09ll1pFUFDQqQavTxGw4xtXJABqVYF2tGQWY8kfmt1cd7HLhC8WwGbVcHvdn3bMrV7nC5SjA9akATlPq+R7qdRe8bUwAKgRX0gUc3EWY/79ZKt+zeVH97TkmnZodLXaa7AbuXF/Dy/a2otPIgdZsyCAsSRXys4vjvPNrJzP+bK7ijEWv4WCXi+P9niXDpl21ZuosOoa9IVRC4LLoUBSYDceX3V+aT4Y8dToIFqPaz0pqzDquTKSCyML8zfGkkvH5LOw9Ok1a9nc4mZhZ/UJhxFuZ4hBzNCqBNxijs8aMQaMmFEtwpM9Dg01Pk93IyUFvTuerteiY8EdLnpZ0e7NtfhuTTqPizvU13LW+lvYaE8/aUp/VSm5pKRmEJakCfMEYf/P9C6seNxuJc6jXTYNNj82gJRJPoteouDIxS51Vvygt5Fzw0WtUdNWaqLMYODfiw2bU4A5EaXGYGPaG2N1mz2locn1d6QPwvnZHQUHEE4xxrN/D3jbHqkHYH45j0auZjVRmNfTcRcDNwXZ8JsL4TISOGhO1Fj2nBj1kk61Up1GVPABvarDQZDdy3+Y6drQ4uGtDDSadDB/FIH+LklQBv/W5wxmH9ZYz9wEN0NPpYu+C1bI3i8ST9E4F6Z1KfTAHogn2pbNU7e9I5Sbe2mRFLQRXJmbntx1N+iOLepwmnZpNDRYGSjT/22Q30OEyEY4lVt26lK1L4362NlmZ8keZnM284jmeVJiNJNjVYkOvVROOJdGoxXzt3HxtbbKSTCpcylB1aH2dGY1KxaVxPw6TbsULhf7pIP3TQVxmHRvrLZwfncEfzjyEvrfdUXC7l1Nn1fOyvS28bG8LW5tsJXkMSQZhSSq7aDzJlfH8e5aH+3LPc3x8wMuuVjvReBIFuDDqp96qQy1S22AO9bpRi9Q865E+N92dLo72uYklkrhzWEWbrXaXiUl/mFFfuKj1e4PRBBdG/exssTMTjhKJLx1+16oFHTUmxmYii7YmbW+2MeoLL8lzvZKeTiejvjCN6TrI/nB8vnCFRa9me7Odo31uHCYdVydm2d+R2p+cjbmsYwatiu3NNs7dlDlre7O16AG4o8ZEd4eLl+xp5q71NWjkEHPJySAsSWX28ceuVCQxxM37jjtrLIsCeiK9KtmsU2dV/ShfnTWp3m8oXbThaJ+H/R1Ork74i7YI7cxwapvTmSEvG+qtnBvxsaHeikWvwRuKcm0ywP5256IgfG5kBqNOvWrRArNOjU6jwhOMIYRg0BNa1LM93Oump8vFTCh1cdNZY+LMsI9oPJl1AF4oHEsSSyTRqGBLYyqjmCcQW3aldK6a7AZiCYW7NtTwsVfvLco5pezJUoaSVAY/PjfGfx0dRKtW8aNzYyslKCqbbU02xmfCS3IG3yzbkoTZ2N5s4/JY5r25pSwsoVYtTcu4kpWK2e9otnF9KsCGegtT/ggjvuIEw9VsabQuylBW6Ovyqu423vGcjbQ4jMQTScLxJBa97JcV22qlDOVYgySVwbdPjvDTCxP88Gx1BGCA86MzdNWuXkbucK+b/R2FDxnrNSq8weiyyTHCsdKNDuQSgCG1On1Tg2XJ7T1dLs6OzBCMJjg95CtbAAaWpAg93Oump3P1ZB+ZvOuBTXz45bvmE69o1CoZgCtEBmFJKoP3vGALtZbSp2PMVbb59Cf8YVxmXV6P0eIw0tPlwmrQMLzCEKqxilbbeoMxBtxBNt8UiKut/EA0kXtil/c9uJXff9bGErRGyocMwpJUBm0uE+949oZKN2OJ8Syr4wy6Q9TnkdPZbtQSiSc43OtetPc3k5ESJgLJRziWpG86yN42O501JrRqwfGB0tdhzkUyx2GVt9zdxW/fs65ErZHyIYOwJJXJS/e2VFUWoQarHn84+5XPqaQguT3GlkbrqsEXUsF6qMJJNDKJxJOM+sL0TQeJJZSi1XYuBpNOnVORj7s21PB/XrClhC2S8lE9nwiSdIuzGbQ8+oYDlW7GvGaHEU8O24+i8QR6TW5pL+NZ5sHe3JBbcYByanVWZ/7jYDSBRZ/d6/GMdTV89jcPyKxWVUi+IpJURj+5MF7pJsyL57hYSadRs63Jxtam7APmUJYlD2cjxd+LXCynh33sbXNUuhkZddSsfoFwoNPJv7+hG2OeecOl0pJBWJLKSFTJ0p79HQ7OjuRWVccfjnNswIN5lQVUdqOW7g4nPV0uxrOo06tRCbRVNEx/s2g2uSOLrN6qXzXA7mq1c25k9aQvz9/RRP90sKSrz6X8Vc9yREm6DeS6kKYUdrTYONbvzfv+R/s9dNWa6c1QVEEIaLTpOZpDUop4UuH0kA+dWhCtojnXhTT5VLQvgFYtGPGElt073dPpzPp3/MHvnUejEjxnawP/+MrdmOVWpKpSvZefknQLOphFEfdSP/6FIhRjqFmwXUmnUdHmMmLRazjQ4cqYO3k1TpM26+1SlVDOEQyHScuwN0wsqXCkz4NRq8KkVbGnzcH+Dicb6s2cGfaxv8OJIcsRhHhS4Ufnxnj5p58uceulXMlLIkkqo23NlUuEv63JmlXx+Gyo0sukW51G9BoV1yYDqAWcGfbmdb5QLMmuVgfJJBwr8TaguRXeuUyJl3ooV6sW7GlzEEskmZqNLqqNPJfe8+aqS0f6PPR0OTncu/rvSwi4c30Nv3tv9W2Tu93JICxJZbRcNZxS21Bf3HKEEzNhDnQ6GfKEmJhJJeBwmHSrpsBcTiiaqqlr0KpKlr6yp9PFVCBCnUXP1YlZOmvNWedyNpR4UVO9zZDXcw5FE1h0amYz5CLXqgV3rq/FYdJy5/oaXnWgvRhNlYpMBmFJKqNP//xaWR/PpFXR6jIVfXFR33SQvnSJw4NdLuJJhcEi1LQNx5KIIo5Ld3c4ESJVvOJov5ukAtfTJSSnA9H5QgtCsGSYXq9RYdCq8YVixEq8OGvYE2J7sw2DVp1TkYczwzPoNKmhak8gSn/6NXjutgb+/IVbabAZ+MGZUV62t6VUTZcKJOeEJamMQmWsnqTXCIw6DUOe0HzALDaNCmbCMY71exZVJCrE8X4P7S5jUc4ViqV62E6TNuPw8+FeNxfH/IzPRJYkUtnd5sAXirGl0cqJm4aCS+HcyAzqXLOhkFq9fXLQSziewKxTY9ap+YdX7ObLhwb4tyev87ztjUW9sJGKSwZhSSqj9z64tWyPFYkrTAeibC/hPHSTw1iUhV4LxZMKCqlebD42N1g52OXiYJdrPjnF2CrpOd2BKDtb7Itumxs9uLlwQkkVsDh8fCaCArz57i7sRi1/9uBW/uDZG+Vq6ConXx1JKqMTOS46surVOM06BrJMejFHqxbzKRZLWeknXqItRYPu0Hy+6lx72FcnZxEo5DqCvLCsq0WvYSZU/gQi1yZzX1m+UDiW4IW7movUGqkcZE9Yksron392NavjzDo1PZ0u9Fo1A+4QPV0utFkMVc5tZemsMSNI1e8dLmFhhFKXv7ObtFkfu7PFTk+Xi3aXib3tufei+6ZSQ/ZataDGrON6hn3QpdRVa0KnKWzY+L0v2MrmxupNASotJXvCklRGmiwCaYNVT4PdwOG+G9uJDve62dliZ8wXZnJ2+Z7hpkbr/FaWbU1Wzo/OFNzmTBwmLR0uU865pHPVOxmgs8a07Jz2vnYHKpVALcSi7VfxPEr8uYNRDnQ6UQk4lMW2n2LzBmPYjdlfdNzMZtDw+md0FLFFUjnInrAkldFfP7R92UpKFr2ag10uJmcjGavjnBn2YdKt/CerU98IiudH/ZQqQdemBgunhnyLLhRKIZ5UVuwNz4TjHO3zLNn/PJhn7/9In4crEwEa8ijbWChPMIYzz5rNAB979V4MWpkfeq2RQViSymhXqwNnhqCyp9VBQoFDve5lk0ioVYI6q2FRgLAaNHR3OmlLryaOZVm1KF8b6y1oVDDmK85K6NXoNKoVi0CEosXfd+0ORHMaBi+WPW12zg7nls97Tk+Xi/s21xW5RVI5yCAsSWUy6A7ykn/5JeMZVuomFGXV7UuJpMLRfg+RRJI9rQ7UAhxGLUf7PNSa9RzsdC3JqlRsdqMWo1bDgDvIrlY7tZb8e27Z2NPmWDEBiEVfmmA56A6xvs5cknNnsrHewtXx2bzrFb/7eZvlNqQ1Ss4JS1KJReIJzg7P8ONzYySTCgJocxkRCBrsBmKJJGdyKM7uDcY4GfSi06jmh13n9rF21pgIx5KMzSxeEe0y60gkFXxZrvjtqDHRYDMQisY5P+onke6eX58K4I/E6awx0Ts5S5PDyNRslJ5OFwPuAC1OExdHZ2iwG+aTYhQimVQ40OlkfCaccYW4Oct6urkKxRJcmwywr93BiQFvITuHsuI067gykd/K6Pc9uJUDnZXNSS7lTwZhSSqh00Ne/uhrJ7mWDkgqkcq7PBdQ+gvIMpUpC1bfdJBGmx6XWYc7EEUI2N+eqrizvs6cdRCus+o5nJ5nnVsYtbHezJWJVGAa8oTwRxKYgjEOdrnm52Tn9uNenwxwoNPJyUFv3r07gFNDqfsf7HJlDMILcyyXwvEB7/wwcbGTZnV3OlEU8ASi87/rXL3l7i5++551xW2YVFYyCEtSCX3sp1fmAzCkiwaUuJzh2EwEvUawo8VGIJKYL3mXTQC26jVsaLBwdEEe45lwnO3NNvqnZtncYOX4gHf+Z+P+yLI1g4/0ebDo1Oxts+MNRbmcR3WluQCeUBSsBg0dLhPXpgLYDVqsRg1X8jhnrk4O+lhXa8ai12DQqecDZk+XiyN97rxfzsHpYFb1lpfzhjs7ec8LtuR9f6k6yCAsSSXkMJV2znQ5kbjC2eHF25Oa7Kmh45vta0+lZ7w2GWBLk3VJIQF3IIo7PS97aTy37FGz0QSH+9yoRGreMxCN4w5ECcdy61aqhKDdZeTsyAyNNj0GraosAXjO3J7hg10uumrNgMKQJ0hPpyuvylQb6i1czXP4GeCZG2t5/0u2531/qXpkHYSFEGrgKDCsKMqLhBBdwFeBGuAY8HpFUfIroSJJt6g33tWJSsB/HxuqdFOwGTQc6HQSiia4PDFLIqmwr93BkT4P25qs7E9/XQpJhUVznhvqzQhE1vOgU/7IfCBcLQVlKU3ORvCHY/MXM9OzEQ52uYgmkpwd9mU19G41aPAXmI3rj5+7qaD7S9Ujl9XRfwhcWPD9h4GPKIqyAfAAby5mwyTpVrCjxc7fv2I3r7ujsmXkVAIO97k50ufh7MgMFr2Geqt+PuieH/VzbMEwc6ldnQisuCdWp1HR0+lK9zxN1FZg324m1ycDrK+zzH8fiSsc6nVzYsBLR40ZaxYZxOqs+oKGoV+8uzmvjGDSYtcnZ5n0R/JK7FJMWfWEhRCtwAuBvwH+WKTWwj8L+I30IZ8H3g98qgRtlKQ1770v2Mr/nhtnskiVhnKlVQsi8Ru9NHeedX+LZX2dmevpPMl72uwIIVAJgT8cw6zT0D8d5HCfm44aE/3TQXqnSlMFKh+jy+TidgeiOExa/JGle5f1GhW72xwkkklOFbCN7B3P3sjb71+f9/1vR5F4gt/70nFODfmoteiYmo0wG4kTiSd51uZ69nU4ecszu0qe/W052Q5HfxT4U2AuKWkN4FUUZe7dNgTIgpWStAyzXsOzNtfztaODFXl8i15LJF4ds0U7mm1cHPOztclGrUXPmSEfy43i9k8HabLrGS1TcpBsDLiDbKy3YDdqUVDQqFQYdWqeujad8eJGJVJlEfNdAT3ntQfb5TB0HsLRJNenAkzNRpi6KeXrYxcneOziBCcGPPz1QztocRSnhGYuVh2OFkK8CJhQFOVYPg8ghHirEOKoEOLo5ORkPqeQpFvCYxcnKvbYdVUwnGvQqDjY5eLSuJ8dLTbODPu4OOZfNgDPGfVF2NZUunKM+bgyMcvRfg/H+r0c6/cQiSXZ2+Zga5OVDXVm9rU7aHeZANjb5iw4AGvVgt9/1oZiNH3Nmo3E+a+jgwzmuK3PbtLym6vk1P7phQm++HR/Ic3LWzY94buAlwghHgQMgA34GOAQQmjSveFWYDjTnRVF+QzwGYDu7u5S73mXpKp0cWxmyVV4OVkNld0I0dPp4uSQl1AsgdWg5eRgbukZQ7GVs4lV0rZmG09fn15y+4Z0xq3EcnlIc/DqA+002cvfS6ukUDTBiQEPQ54Qh3rdHOlz887nbKTelvsF5eZGK2++u4stjVYUBb58qJ9TNyXI+eqRAR7a08zWMl/wrfqXqSjKe4H3Aggh7gPepSjKa4UQ/w28nNQK6d8Cvl26ZkrS2naxyIXvcxVPr4S+PhUoeYKLTK5PzbKzxc6x/txXX7c5jfSWuaxgLpZb2BNJZ/eYDESwGdTMhPO7kNjSaOVPn7857/atNYqi8MSlSf78W2cZ9t5I0PI/v3cnkViScV+E9hpTTue8c30td66vnf/+kf2t/Mcve/mHH1+af528wRg/OjtW9iBcSO7o/0NqkdZVUnPE/16cJknSrSef4FNMJwa8HB/wsqm+MrVmp2ajef8OBj0hDnRW72pgky5zX2bUl6oD7TRqqbWkem8drtyCR6PNwKNv7MFqKH9BiUr4+rEh9n/op7zx0SOLAjDAI596io/85HJRUpWqVYLfvmcdP3rnPRzsupHy855N5S+CkdMYlaIoTwBPpL++DvQUv0mSdGv5i2+d5UuHKjPfdDNfuPy94GI40udZsa5wNYonWTQXvK/dwclBb04Lzf76oe002g2lamLVmJqN8Gf/c4Yfnx9f9pieThdfe9szivq4XbVmvvrWO/jl1SmO9XtYV1u+oh1zZBUlSSqxn12cKHWmyqxNz0ZoshvorDGxpbEyveJ8Vcte4YUabHrOj2Q3v318wEtSAadJR6vTyJ62VCUsSM0fd9aY2NfumD/+vs11PLCtoQStri4D00He9OiRFQMwpIqULLyoCccS/PNjVzg/MrPCvVYnhOCZG+t453M2FVTPOV8ybaUkldD1ydklw2qVpNeoiSeS9E0HF33grwVH+zzUW/VMVGivdSatThPHZnIbZhdCEEskOTno5WCXiyvjs0TiSQY9IYa9qaH3M0M+3v/i7bd8ecIRb4iXf/qprF7TaDzJqz7zNHetr8Vp1nF1YpYLozN85KeXedGuZj7+mr1laHHxySAsSSVUbQuKFl4QKNXSPc9Bq9NYVUE4nsw929K5BT23Q72pvNpzu25iCYUjfR7efFcnnRUYGi2XcCzBZ39xna8cHszp9VQU+OXVqUW3JRU4M5zbavtqIoOwJOXosQvjfO5XfZh0aix6DSa9mqsTs4x4w9RYdNSY9Qx7Qwx7gsyEl2ZPqhbaCmUIKsTxAS89Xa6C990WorvDyaQ/Qr1Nz7kifPhn2sG0rdle8HmrVTiW4B1fObHq8HMudrSs3d+XDMKSlKM9bQ5+fX2aeIZPz4EC6gOXk1YlqmqYPBdH+txY9Wr8kfLvHe6qNc+XhiykFvRKHtzZyMv23noJCBNJhS8+3cdHfnol67rW2bhnUx1/9eJtRTtfucmFWZKUoxqLnpeu8Q/Jna12hj1rMwi3OU0VCcAAliJsj1mJEPD+l2xHpbr15oK/d3qE93/3fFEDMMBzt9bPbwFbi2QQlqQ8fOilO9jRUl2pFHNxfMBLT6cr4892NNvQqjMHgZX2uRo0KtbVmdnUYCnpvl69pjIfWz1dLs4MF7YSdzWP7Gul3nprbklaV2tBp1782lkNGv74uZt4+/3rMWhzf11f1d3Gaw+unJKy2skgLEl5MGjVfO2tz+ChPc2VbkrejvS52dW6eC6tzWnk3OgMDpOOnTddZGystzDuD6MS4DLpuDlOb222cX0ywJgvnHN+31yoK9VLLPFCNq1a8Ocv3FrSx6ikna12vvjmHr719ruos+pptBl44l338Y5nb+Tdz9vCf7zhQE7n295s40Mv27HmRw3knLAk5cms1/C+B7cSSyR54tIkwWj15jfORAHODfsWLXRqdhgZ9ISY9EcIL3g+LrOOeDJJOJZkV4ud3ukAarWK9TUmHCYdAriWLk04E44XnKu6zWVEr1HjMutIJhXODvsIp9ML6irUEy5GDuiVtDlTv8tb2cF1NQA8uKORHS12ahYMIxu0uQ31v/M5m9Cq134/UgZhSSpAvc3AJ1+7n4/+9DIf/emVRT8TgM2owReq3hXSCSWV1WkuEC/MK72+3szkbJR2l4lxX5jr6e1WpxesCL48PrvofEatmnV1Js6N5J8ru6vWvGRrV5vLiM2gxaRTM+gJYdGrmS3zvPB0iWswZ1rod6v664d2LLkt15Sea22f+3JkEJakIrg2uXQ/cJ1Vj0mnZmO9lelAtOr2DAPzwexIr5sDnc75/M4WvQajTs2YN4TLpJsPwKtpcxnzDsDNDgMtDiPRDAURBt0h4MZCsu4OJ0f7PWhUqfSQpba3zUE8maTGrCtZMJ6ajaAoyi2foGM5NRZ91qlJX3dHO64KZLcqBRmEJakIFu4XrbXoaHeZUAmBSgWHe1OBrdVpZCYUo9lh5OJYZasqzemoMacS4iupRB7bm20YtRpOD3l5+pobp0nLhdHsFyM5TTqsBg0tDgPD3jD+LPdJ7293cnrYy4g3nNXxSUXBpFXRXmOmfzpAKJZ7JHaZtXiDsYz7dOdsabSSSCqcGPQCsLPFRletedHweLEEowmGPCHacuwR3ko+9uq9fPKJq4z5wiAEU/7Ikq10LQ4jv3vfhlvmYkUGYUkqgjvW18z3FttdpvmkEuEFdXCH0luCauNJtGpBbLVq9kVWb9Vj1Knon061o6vWzJAntGjLyPCCIGjSqlhXZ8mp+tHxAQ81Zj0Xx1LD1A6TdtXSiW1OI6MzoZx+HycHU3mYL475OdjloncqQINNj1GnIRJPoNeoONLnWXEt1YY6C4mkwrEB75KftTiM1Fh0nL6p5uzc6uhGu4F2lwlfMMal8eJdUB3r99zWQXh3m4N/fX33/PehaIK9H/wx4VgSlYDffEYnf/LApluqqpQMwpJUBB94yXb6pgI8dW16fvXuiQFPxsByfSpAo03P2Ex50y+215g42ueh1qJDr1XTPx1YsRdYbzPkXH4wllAYm7kRyDc1WLkwOoM/HGdzgxV/JIY/HGdrk41ILIEQggujM/M1XbO1sN0T/sj8v4XmhqwhNVcdSl8QqVWCRFLBG4pxeXyWni7XfApPTzCGN5gabr45AC805gunemtAjVmH06zl6kTh0w3fOD605vegF5NRp+Y/f/sOXv/ZQ3zitfu4b3N9pZtUdDIIS1IRaNQqXnuwHV8oxpG+1Af/cj27hcGhnOLp9kzNZjen2TcdZEO9hasTs6sfvIzDvakh7Z5OF8cHPGg1KoxadVHTTmaaQwY42u/hQKcTBYgnkpwdnmFfh5Pzwz5UasHcq1NoW6YDURym4vTMfnFlinMjPrbfwmkrc7Wv3ckT776fuiqsolUMa399tyRViZlwfFFy/krSqcWS2qgKuQ9/C1H4liBPMMbhPjfxpEIomsBdxIVNapXAuEL7jvR5OD3o5eSgj0abgcO9bmajCWZCca6M539xcbNIHnPSy/nMk9eLdq5bxa0agEEGYUkqmof3tfAnz91Eq9O44nF90wEOdrno7nCyrclGd4cTg0ZFk92AIR1QGqx6XAX0rtpcJq5PpR4HUguKTg1mX2ygu8PJhnoLJq2aHc3Vmxmsu8PJ1Qwr0xeKpkcAhkqUK7vFaSzquR+7MMFMuLipHdeicCzBk5cnK92MkpPD0ZJUJHqNmj949kZ2ttp5w+eOLHvc1GyUqdkbQ6AalaDVaZzfmmHUqZkORNlQb8G9yqImSAVsq1GzaE6yxqzn2mSAQ71umuyGnHrou1vtFRkuz9X6OjNH+ipXTWmORVfcfNKbG63YbqGFR/n66E+vcGLAwz2b6irdlJKSQViSikwlBN0dTp6/o5HHLkzw9PXpFY+PJ5VFeyND6UxVNoOGFodx0RaNzQ1WLAY150dm0GpUOI06NGrB1YlUr/dIn5tNDVZ8C3pSo77stv3M0eeYuahSwvFkqTNJrmpTg4VLRRzWBjg77CMYjWPSVf7jeWImzJNXpnjq2hTP297IA9sayrY16LUH23n5/lt/kZooZ2Hv7u5u5ejRo2V7PEmqtHgiySOffppT6X2m+djf4eD8yAwdNWauTc6yrdkGCgx6grgDi3vKLrN2yW252tZk49rkbM4rlithW5ON8znsYy62UtU2/uBLd/D6OypXmOD4gIevHR7k+2dGmY3c2Ot99M+fs6YrFlWCEOKYoijdy/288pdaknQL06hVdHc4CwrCx/q9rK8zM+EPE0soK87tFhKAd7TYUJRUtqy1kEDRqFUz4qtsOUZfMIZKsOJWr3x8/LErvHxfK8YiD3Vn46lrU7zl80eX5ELXqARXJ2ZlEC4yuTBLkkpspgj1U69NBgru4a6mbyrAwHSQQ71uomugF7yr1b5qIpBSuzTuZ39H8cs2TvojfOHpvqKfNxsj3nDGYiQP72vhjnQBBql4ZBCWpBK6Mu7n68eHKt2MrMxGEmxrttFor/56tha9hvMj2a/2LqUjfZ5FtZmNWlVR9g3/y+NXmZotb0KXTzx+lW8cW/p+fe62Bj740qVFF6TCySAsSSUSjiV43zfPVnzxUC4O9bqZnAlXrmZvlpxmLeF4KpVhNTjc52ZLo5XOGhMalQqVAHOBQ8n+cJw3P3qE8ZncFtblK5lU+M9DA4sWEmrVgv0dTv7u4Z3oNWtjwd5aI4OwJJXIsDfE4SrYQpOL3a129ne6Sl47t1CD7lSu6VqLvmqq6Vwc89M3HcQfieMOxHLOeqUS0FmzOG9073SA933zDCPe1SsLFSqWTBKJJ7AtqAX9tbc9g6++9Q45D1xCcmGWJJXI8TWw13ahBquecyMza6qu7YQ/wt42R1GzcBVLLjt5ai06asx6Lo372dxoRa9RMeoLM+mP8NMLE/z88iQdNWZ2NNv4rTs72dte/HlovUbN/77zHvRaNcf6Pbz/O+fYV4LHkRaTQViSiuzpa9N86PvnqyaFZbY6ak2M+8s7B1kM2gLTapbKShczJq2KFpcJh1GLAC5PzM5XY7qUocxlLKFwdWKWqxOzfPvUCF9800Hu3lhb9DbXpHu8926q4/F33Vf080tLVee7V5LWqO+cGuF3vnRszQVguJEkZK05MeBhb7sDo7Z6Ps6sBg0GbWp7WqYO8fYWO+O+MEf6PBzu8+S0yltR4C+/czanOs9S9aqed60krXGfeuIa7/jKiUX1edeCVoeBnk4n50eLVxe3nGIJhRMDXna2Osr+2BvrLexosdHmMrK79cYccCSe5PSgl6P9HrY12+YXbe1KH3Okz0OL04gmz5VlKiEKqm6VDV8wxicev0p8mSpVUnHI4WhJKpLP/mJtVb/prDEx7A0x5A1jMWhpshmYmo0QXgN7hDMpV/a/ZruBWqseg0bNmWEvoXQFJQHYjVp8oRjReJIdzQ6OD3iXjIp0dzpJJhWOD3jzevx2l4nv/v7dJU/k8b0zI/z9/15iJhzjj5+7iVA0gcNUHYvgbiUyCEtSEYRjCaarcHFQJioB+zucHOv3zGd6urhgHrJS9Y4LFY6VfjjdatCQSCqcHlq6R3nAHaLBqmdjh5NEUiG0THuO9uX/u31NTzsffGg7GnXpBzGn/FH+6Dmb2Nxo5aWfeIrnbq3njx/YXPLHvd3IICxJRaBTq9jb7uBEnr2bcnGZtNRY9BwpIBBUm2a7gWaHsSwXDlsbbStuOxv3R+ioMXG0gDSlN9NrVDyyv5WN9RZeuLOpLAEY4A13dmIzahBC8PwdjWV5zNuRDMKSVAT+cJyREtWrLQatSrCrzU4omlh17vdov4euWhO1Fj1DnlDOVZjKrdaqL1vPPZv90/4FBQ+K4eX7W/mbl+0s6jmzYS9C1i9pdTIIS1IRfPSxy4zPVO/2nj3tjpx6v71TQXqngrjMWna12Dk9XB0pIjPRlalnuLfdwbGB1X+H+iJumTLp1CXJTS1VDxmEJalAiaTCj8+NV7oZy9rSaOFMnkHUHYjhDvjo6XRyuAqHsDc3WJgJx9jdZicWT6LXqjk77COWKP4iLa0qu+BaaHpHi17Dnz5/My/Z3SwXQt0GZBCWpALFEsmyJ9rP1pZGK1cmZgtOQ3lswMvOFjvuQIRhb+mGp9tcRhptBuJJhSF3iNlIjFAsSXenE08gyqg3xPYWO55gDIdRm3EYut1lZMBd/KkBT3D1hXc6jSrvLWoNNj2/c+96Xr6/FatBDgXfLmQQlqQCjfnCOEzaqhqO1qkFO1rseW+DuVkiqXBm2IfdqKXFYWQ4j/lvo1aFSggCC5KC9HS6uDY5O7+y3GnSLRk2r7fqOdrnodluYEO9ddVhdXWWPdZcZbP6enuTjRN5LMqyGjR8/k09bGm05dEyaS2TyTokqUCdtWa+9OaDGLXVU2VmU4O1aAF4IV8ohk6josF6I6G/w6Slp8vFtiYbDVY9DpMWw03zoo02PRq1imgiicusY2+bg4NdLk4NebEbU/dfV2fOuPVnIp1Kc8QXzmpuOpFU6OlyrXpcrmazWHA1NpNfD/yDD+2QAfg2JXvCklQEGxus/N3DO3nn105WuikAXJkoXfar3qkAapVgZ4sdnVoQSyoc7s28bUevUaHTqBhbMErgDkQXFVy4PhXg+lSgaO0bcAcZnwmjFpDP1PDc0HeNWT+/HUmjEqyrs3BslVXYBq0GyH5ERK0SvLK7rSR5oKW1QQZhSSqSl+5t4XCfm/88NFDppqBRqbBa1EzNliaByNzw9JyeLlfGQByJJ4lUIANXJJ6kxqzLKYGKRa9hY71lUTINu1FLk90AsGoAhlT5yt1tdi6N+rPKPPbFN/dw53oZgG9ncjhakoroXQ9spsVhrHQzCEQTrK+zlO3xLoxU3xam1Z5/m8vI/g4nWxqtHOxyYdKpF83nXpsM4AvFuDjmX5RRbCXReJJTgz62N68+tGw1aGQAlmQQlqRicpl1/MMrdle6GQCM+cqXPMQfSeRdjKBUDve5cS2TcKLZYSAaS3Ks38PFMT+Het3zc8/FkE1WK384ntU8s3Rrk0FYkorsYJeLdpcJSOVp7qo10+osf++43MVvdrbYVz+ojNpdJtw3lQjUaVLlBb2BaElrJ2dbFnJ8prqzkUmlJ+eEJanIVCrBX714Gz85P87v3reeBpuBPR/4MS6zjg31FnonA0wWcV/xgU4n8YSCEHBmQaKKJoeBoTKm0hz0BMv2WNmos+gZcC9u0+5We8nzZtuNWq5NLl9m0GrQ8OnX7afZYaSzxlTStkjVTwZhSSqBZ29t4NlbGwD44ZlRwrEk4ViUw71u2l3F6RULUguiDqUXRG1qsGDVa7CbdNRa9FweL2994GKmayxUi9PIhdHF89Q1Zh2nilhYYTmbGiwrBvq3PnMdd22Qc8FSyqpBWAhhAJ4E9Onjv64oyl8JIZ4N/D2pIe1Z4A2KolwtZWMlaS3672ND81+rBDTajahVKgQQiSfyzkB1oNM5H4AhlejCrNdwdtiHWpSntN8ci05NtASpIvOhVQtMOjXDsRvj8SoBTXZDWcpNzqySMWtvu8wFLd2QTU84AjxLUZRZIYQW+KUQ4ofAp4CHFEW5IIT4PeDPgTeUrqmStPbMhGM8cWli/vukwpKtPD1dTg73pnpOdqOGaDw5Xyh+JTfP+S4MyFcnA+xqsXNudKbglJXZ2NJsK6hObrF01ZqxGjQYtGp0GhXR9Dah7s7MW6hKYbV8zzajHICUblj13aAoikKqpwugTf9T0v/m1uHbgZFSNFCS1qK/++EFGm0G3IEoq8XAAXeI7c1WZkJxkkAioWAzKKsuHPKGVu7VnR720d3hLHmZP7WAK+PLz4GWU63lRtpLi07NjnYHQggm/OVbAHWkz01njYm+6cxz5Ba9DMLSDVm9G4QQauAYsAH4hKIoh4QQbwF+IIQIATPAHcvc963AWwHa29uL0mhJqka9UwF+fmmCCX+Ezzx5HSXLDuiYL8zYTTV7tzZZabAbFqVxtBs1dNSYMWrVBCJxzo7MrHruZLaNKMC2ZhtnhldvS6lZ9RqCC1Ylz0YT86k7XWYtVr0af6T0Q/RJBWzGzFujjFo1NWZ9xp9Jtyeh5PBHKoRwAN8E/gD4APDhdEB+N7BZUZS3rHT/7u5u5ejRowU0V5Kq119++yxfeLq/qOdsshtocxpRgJOD3rxK9B3odJZ0RXC+6SGLpd6qx2bU4g/FVhw9KMeowEI7mm2LLpRqLXq+/467abAZytYGqfKEEMcURele7uc5LWdUFMULPA68ANitKMqh9I++BtyZbyMl6VZwtgSF70d94fk6vpo8qwMd6fOgVZcukYargj27FqeRRFLh6sTsqsP3R/s93LOpFl0JfxcLTQeiOBckC3ndHe0yAEtLrPpXLYSoS/eAEUIYgecCFwC7EGJT+rC52yTptjTkCZakatGcY/0eRAGxw1nC4vAuc+UKz1v1mqxXPB/scvHk5Sl0GjX1Vj0Hu1zsaXNQby3NRcSoL4zdqMVq0CAEvKK7rSSPI61t2cwJNwGfT88Lq4D/UhTle0KI3wa+IYRIAh7gTSVspyRVtR+dHSvp+WvM+oISfBi1aprsBkZ9xV+gZNFXpoTjnjYHJ3PY9zu3b3o2kkoXOZemcm+7o6gpKxfqmw5i1Kp59pb6qsgpLlWfbFZHnwb2Zrj9m6TmhyXptnZpzM8nHi/dFvlmhwGbQYOCkndVpH53kJ4uV0mCcDCWQKsWec1X50unUTGaYzawxDLrXyZnSpe+EiAUS9DdWfz6xtKtoXpS3EjSGvSLK5O8/FNP4QmunKAhVzVmHXtaHbQ5jTTbjVwcmy24LOG5YR/N9uLPSV4Y9bO71VH0865kT6s959zP9mVWLLsDpQ3CL9ndzNvuWcegu7rSekrVQQZhScpT31SANz96FH8RK+H0dLnoqjUxHYhycsiLXqvGt0oGpmwFogmMutIMHfvDxb0IWU2uve42l5FhT+ae83LbiYrBotfw0VftQQhB/zL7hqXbmwzCkpSn758ZJVrEUkV72xwc7nXTO3Xjw/rqxCxXJgpPhLG/3UlPl3PJIqadLTY2NVjY0WwrKEBfGp9lR8vqNXSLJdeB70abIWPSFJWAsRIOR89G4nznVCqPkUErP26lpWTqFknK05UiFkhwmLRcLUKwXc7YTJjh9Byq3ahlU4OFpKJwdthHJJ6KTj1dhaV2NOnK83GyqcGS83ywIPPS8qSSqmrkD5euru8Hvnceq0HDhnpLyR5DWrtkEJakPFwZ9/PYhYnVD8xSNJZgR6sDQWoR1c0ZtArV7DBgMWiwG7VcHfdnTN4RzSJf9Urm8jTnqjE9T73wOe9qsTPoCeIy6zDp1FyZmKWzxoxWreJMjvuxNzdaCUSXHy7f1GDlWAmTeLgDUd78+aM02gw88e77MGgrs5pcqk4yCEtSHj7wvfNFnQsOxpLzvdADnc6iB+FsMmadHPJSb9XnvV3n7LCXNqeRwWXmXjPZWG9h3B9GkJq39QVjdNaYGfQE8QRj8wvezDo1F8fyG3mw6NQcW2EP97F+D9uabJwfzT31ZrPdgEolGPKEaHMZec7WBhLJ1AjDiUEvPZ0uNjdaecX+NjY2WGQAlpaQQViS8lDoSuWVXBzzY9apCUTLV4oQUvWJPcH8n1c8CfFkEptBw0wWw7s7W+xcHp+ZHw73hVL3OZ2hp1vI70KjXn0u1heKZb3NSgh41wObef6ORix6DfVWPZ984hous47X9NzIjz8+E5YZsqRVyZUCkpSH97xgC7osPtzz4Q/H2dRgLcm5V6LXqOioMRd0jlFfhM2NK7e9u8NJm9PImQXz0aXQ4jRysMvFSBbzx8PeEPuyqPPrNGn5x1fs5u33b2B9nYUGmwEhBG+/f8OiAAzIACxlRfaEJSkP926q4+6NtfzsYvHmhRcq95YfgHA8SSha+BD7tYlZNjdYuXTTwrVai45ai67kRRRUAvZ3pIpWLLctKZPjAx7aXEYG3ZnvY9KpeeLd9y+731iS8iF7wpKUp67awnqNK7k6GWDLKj3KUhj2hgtexesOxhidCWG+actTZ42Zi2OlrTus16jY0WLPq2pULKEQiyusqzPT3enEtGBLkVWv4ffuWy8DsFR0sicsSXna1Wov2blLXX5wJZ5AFLVKkMi0sTYL+9pTq7wNOjWnB30gUkOzJwdL+3yseg1NjsU1mHM1NpNaEHd9MkC7y4RFr+bhfa28bG8LNRZZB1gqPhmEJSlP25pKl5wiXOB2oUJMB6LztXd3t9q5PhVYdR+tTqOi1WHEZc483OwPl7YHDLClyVr0C5e/e3gXu9scRT2nJC0kh6MlKU+OEpUHVAmYjZR/TnihuW07p4Z8bG1c/WJjVzpYl3q+dyWqQmo9ZvDGuzplAJZKTgZhScpTrUWX0xxhrSW7oJ1UqPh+UgXm983GMqTm3NxgnU+yAaDkOXRdCKtBg1p1I/AGi7CobE53h5PX39FRtPNJ0nJkEJakPIkse14qAVubbKyvy37Bk9VQHQuAejpdxJNJehaU4tvX7uDSuJ825436uDevhC4Ho1ZNh8uEVZ+aVVumUmHOtjXZ+Pc3HMhqf7EkFUrOCUtSAfa2O3jy8iS7Wh0YtWq0GhU6tYp2l4mtTVa+c2qEw71u3vXAJt78+aOVbm7uhMKZ4VSPeG96aPZ4OvvUkCfEtiYbZr2ao2VeRNZoMzA2E57P7tVk1y8pTpEPnUbFv75+v1wFLZWNDMKSVIAPP7JrxUQPr+hu48SAB28wxu42B6cGvVmdN17E6kzZWldnptaiR1EUhBBEYgkuj99YUHXipraP+sKEYwm8wVjOVY0KoVUL2muM8yuZU20pTiWkezbW0eYyFeVckpQNGYQlqQANNsOqmZH2pgP0vZvq+NTPr/GPP76UsazeQtoKDIUOTAdxmXJLpuEJxtjVai9oW1Cu9rQ5ONxbmp733nZHSc4rScuRkx6SVCYqVSq94a//7Nm89mD7iseGY+XNGw2pLT4D7twLzxvLuIhsT5sDdxGGnZdz94bakp1bkjKRPWFJKrN6q4G/edlO7t5Qy59+4/SSPbhmnZpTZexZusw6OmpMnFih0tBK4mVaGa0ScDLL4fx82I1atjSVP0uZdHuTPWFJqpAX7Gzi+3/wTHbflHkrEE3QZC9O8v/uDud8Zi+1StBgW5z16UCnk2gskXcABrg6MUuTvfTZpJJKaVOFvnRPM3qNLDUolZcMwpJUQe01Jv77d+7kTXd1Lbq9xWFc5h65UZTUcHGNWcfGenMqnWQ6J/Iz1tVwbXKW2QJLJvpCMUKxJBsLzDmdjWz3WufjbfeuL9m5JWk5MghLUoXpNCr+8sXb+Mirds/ftnDlby72tTvo6Urt6XWatPROzRKKJVAUhYtjs4zNRNjcYGV3q52nr08XXLpwjjcYo98d5ECnE02JPlU2NVg4l6HWcDEIQd65siWpEHJOWJKqxMv2tvLk5Sm+eWKYTfUWHtnXyvhMmL7pAL++7s54H6tBw9YmK7GEQjyRnN/Du6HezNRsFE8whju4OHAtnG8e82Vf6m810XiSI30eai061tdZODfiYzZSnAVmtRYdI54QwRLk1L57Qy0ff81eXObS9bIlaTkyCEtSFXnDnZ1888QwNqOWf/7ZFZIKCGB7sxVPMMaId3EPeXODNeN2nasTgYzn39JoJRxL0DedWgXd4jQVbY/tnKnZKFOzbow6NT2dLvqnA4z7C3uMqdkoe9vsnBgsbk/YoFXx72/olnPBUsXIICxJVWRXq53drXYC0cT8XmIFODfiRwANVj01Fj0adarU4OWJ7NNFbmm0cmncj06torsjtXf5bImGdwFC0QSH+9yoRKon21VrzrvKkVYtUKmyL9DQUWMiHEsQiCR4YHsDJwe8XJ9aemHywp1yMZZUWTIIS1IVEULwidfu44dnRvnJ+fFFP1OAcX8k715lOJZAoxJE4smyVjtKKqmerDsQpdVhZMib2xD4+joz0USSY/3eVY+16jU89q57qbcaiCWSxBJJTDoN0XiS9/7PGb5xfGj+2HW1Zj78yM5cn44kFZVcmCVJVSQUTfCB757nb394sejn7psOsrvVUfTzZsNu1KIA04HsLiBqLXq2NFox6dTUWvR4AzdKO9oMGpbrFL9kTzP11tT2Lq1ahUmX6mfoNCr+9uEd7GxJbdey6jX830d2ySINUsXJnrAkVZHrU7P8+KYecLHoNYIrE7OrH5iFNpeRfe1O3IEo07NRPMEodqOW9fUWXrK7mbs21PL0tWkG3EHu2VjLhnoLk/4IPzo3xsB0kPu31NNg0/NX3zmHLxTjbLpIxP4OJ59+3X7qrKl9x8mkQjyZRKdR4w1GGfKE2NJo5VfXpvntLxwlkVTmVzXrNCp+Y4VMZHqNmi+8qYdvnhhmX4eTPbJWsFQFhFKs+l9Z6O7uVo4eXYOVZCSpTBRF4aWffCrrQg+52NJo5eJY4SUHVQJ+9M572NRQnOxSiqLwk/PjJJIKz93WkHXvdCJdRelTT1xDQeH1d3TyjPU1RWmTJBWLEOKYoijdy/1c9oQlqYoIIXj+9saiB2GtWqDXFmfo9c13dxUtAEPqOT+wvTHn+9XbDNTbDHzitfuK1hZJKjcZhCWpyrz+GR3UmHVM+MN85snrzNyUWzpXB7tcXBzzc6oI23t0GhVveea6gs8jSVKKDMKSVGUseg2vPNAGwL2b6nnpJ3+VdzanvW12DvVmTvSRqxfvbuYFOxpXLd0oSVL2ZBCWpCp1cWyGTY0WHEYt0zmW7zvQ6WR6Nlq05BY7W+x8/NV7ECL7vbqSJK1OBmFJqlKtThNfOzLI792/gQ99/zy5rqF0mXUEInFC8QQqIfAGYyseLwS87mAHdqOWQU+QYU8IBbhrfQ1vvXe9DMCSVAIyCEtSlbLoNZh1Gj762OWcA/DNmal6ulwcXmZYusaso9Vl4k+ft5m7ZFF7SSorGYQlqYo9sL2Bv/z22YLPc7jXzfZmG+dGUvtxVQLu3ljHvZvq+K1ndMikFZJUITIIS1IVsxq0/MGzN/J/i5BBS6u6EWj/z/O3yPq5klQF5OWvJFW5t92zjs1F2Jc77k/lbLYaNLzhrs6CzydJUuFkEJakKieEKMpc7agvQqvTyMv3tcrKQZJUJWQQlvI2PRvhK4cHKt2M28J7H9zCu5+3ueDzGLVq3nqPTLYhSdVCBmEpb98/M8q4L8xAukC8VDpatYrfu299wUUHXtndRpPDWJxGSZJUMBmEpbz95jM6+c7pEf7gK8cr3ZTbghCC97xgy7Jl/FZTb9Xz+md0FLdRkiQVRK6OlvI2MB3k+mSA35If7GVzx7oaDv3ZcxhwB7HoNbzjKye4NL5yZaRnbqzloT0t/OLKJAatnAuWpGoig7CUk2RS4evHh7g46ufEYCohxJ8UYa5Syl6dVT9fb/dLbznIq/71aa5PBZY9fnerg5fvb+WOda5yNVGSpCytGoSFEAbgSUCfPv7riqL8lUjlsPsQ8AogAXxKUZSPl7KxUuXEE0lOD/v44tP9fPPE8KKfDbqDbG+2V6hlt7c6q55//o29vO2LxxjyhDIeMzYTBlJpMCVJqi7Z9IQjwLMURZkVQmiBXwohfghsBdqALYqiJIUQ9aVsqFQ58USS3/yPwzx1bXrJz/QaFRvri1dbVsrd9mY7v/jT+3n80gTXJwN87KdX8EdS5Q87a0zcv1n+aUpStVo1CCuKogCz6W+16X8K8LvAbyiKkkwfN1GqRkqV9fVjQxkDMECT3YBOI9f3VZoQgmdtaeBZW2BXq4PPP9XHG+/qZH+HUxZekKQqltWcsBBCDRwDNgCfUBTlkBBiPfAqIcTLgEngHYqiXMlw37cCbwVob28vWsOl8vnWyeGMt9da9PzTq/aUtzHSqnq6XPR0yflfSVoLsgrCiqIkgD1CCAfwTSHEDlJzxGFFUbqFEA8D/wE8M8N9PwN8BqC7uzu/yuRSRXkCi0vgadWCv33ZTh7c2YRZL9f2SZIk5SunT1BFUbxCiMeB5wNDwP+kf/RN4HNFbptUBa5O+Lk+lZqNeMGORt5+/wY2NVjlEPQa88knrnJpzM+rutu4U5YrlKSqseonqRCiLt0DRghhBJ4LXAS+BdyfPuxe4HJpmpibZFJ2tovp6WvTtLlMtDiMfORVe9jRYpcBeA16+f5W+qeDtDhltixJqiZCWaVauBBiF/B5QE0qaP+XoigfSAfmLwPtpBZu/Y6iKKdWOld3d7dy9OjRYrQ7o59fnuS93zhNT5eLAXeQN93dxYt2NZfs8W4nI94QzTLd4ZoWTyRl3WBJKjMhxDFFUbqX+3k2q6NPA3sz3O4FXlhQ64poxBvid790jGA0wbdOjgBQd2pEBuEikQF47ZMBWJKqzy3zV/nzy5MEo4lFtx3qdTPolsUF8hGJJ3jy8qQsziBJklRCt0wQfmhPM402w6LbZkIxpmYjFWrR2jU+E+ZZ//BzfvM/DvPgx38hL2QkSZJK5JYJwiadhl2ti1MnPrKvlb3tzgq1aO061Otm2JtKgTgbifPj8+MVbpEkSdKt6ZYJwgCv6VmcDET2gvNzpNe96Ptp+XuUJEkqiVsqCN+3uY4tjTfyGLuDsRWOlpZzpG9xEJZbkiRJkkrjlkp3JITgbfeu44++ltopdd+muoq049KYnyFPEINWzbkRH4kk/O596yvSllxdGvNz+ab6tA6jtkKtkSRJurXdUkEY4CW7W/i7H1wkFEvwtnvXlfWxg9E4//jjy3zj+BDedC/coFXxsVcv2eFVtT70/fPcnO+ks9ZcmcZIkiTd4m65IKxWCbpqzWxtsmHSlffp/fsvevn3X/bOf3/HOhd///LdtLnWRh3XYW+IX1yZWnSbzaDhzvUyzaEkSVIp3HJBGODPHtyKWa8u62P+6OwoH33sRhEpl1nHP79mH3VWfVnbUYhPP3FtyW2dtWY5JyxJklQit2QQ3t3mKNtjnRvx8b9nx/jkE9dIpMdxDVoVn3n9/jUVgM8O+/jSof4lt494Q0TjSRmIJUmSSuCWDMLFFo4l+OrhAQ50uWhxGPnC0/387OIE4ViCy+P+RXOo9VY9n3vjAbY325c/YRX62cUJMqURX1dnQaOSReElSZJKQQbhLLzjKyf48flxVCK1AjuxQqWm+zfXr7kArCgK/3tuLOPPXr6vFZUMwpIkSSUhxxiz8I5nb0SnVpFUWDEAA/hCa29v8i+uTHFuZGbJ7TVmHQ/va6lAiyQps0RS4WM/vbL6gZK0RsggnIUdLXZeuje7aky/fU9XiVtTfDfvC57zrC31svKOVFXUKkFSUWTdcOmWIT9hs/ScrQ2rHrO5wcq+NZir+uLY4iBs0Kq4e0Mtf/TcTRVqkSQt74+eu0lOkUi3jNt+TvjyuJ93fvUkeq2K9zx/CwfX1WQ8blerA4tew2wkvuy5HtnfghBr68PhaJ+bb50YRqsWvP3+DbxoVxNdtRbU8kNOkiSp5G77nvAnHr/K+dEZTgx4ec2//ZrP/ao343GNdgN/8aKtK56r3ZV/Zqlvnxzm0V/1MugOMhOOEUsk8QVj/N8fXsz7nKv56flx3vjoEV7d08YT776fdz5nExvqrTIAS5Iklclt3xOe9N+oEJRU4K+/e5471tWwtcm25Njn72jin35ymfGZpVWF2l0mnrkx/8xSJwa8PPpUH+//7nkAzDo1G+otvPZgR97nXM6oL8THH7vCVw4Pcv/mOj740I4114OXJEm6Fdz2Qbiz1sxT16bnvzdoVaiWCUh2o5b/eMMBHvqXXxFfsDDEatDw77/VjVmf/6/zxIBn0feBaIJTQz6et6N4ZQT/6SeX+dnFcS6M+kkkFWrMOv724Z0yAEuSJFXIbR+E/+g5mzjS6+bKxCwWvYZH33iAzQvKId5se7Odbc02Tg/55m/7yCv3sLFh+fus5mifmzPDvow/uzCaeeVyPn7n3nX8/v0bODfi42cXJ3hldxtNdmPRzi9JkiTlRiiZ0iSVSHd3t3L06NGyPV62wrEEP788yYFOFy6zbtXjv3FsiM/+spc33dXJ3nYH6+ssefcmv3p4gA987zzBaCLjzzUqwaNv7OHuAoa6JUmSpMoQQhxTFKV7uZ/f9j1hAINWzfO2N2Z9/CP7W3lkf2vBj+sPx3jP/5xZ8Zh4UiFZxgslSZIkqXxu+9XRlZRtUYRoPFnilkiSJEmVIINwBWlUKmyGlQcjjFo1922uK1OLJEmSpHK6pYJwPJEkHMs8t1qN1CrBy/aunJs5FEsw7A2VqUWSJElSOd0yQXjUF+JVn/k19//DE2sqEP/OfevZvMLK6g8/spOOmvyTgEiSJEnV65YIwsmkwt/+4CLH+j3oNCq0a6joQJPdyGd+cz9NdsOi2xtset71wCZe2d1WoZZJkiRJpbamV0f/7peOMeINYTNq+cWVKQD+7MGtay7tYkeNma//7p185dAAxwc8bGqw8hcv2rbmnockSZKUmzUdhJvsRn549kYx+haHkbs2rM39tC0OI+963mbm9m3LLFaSJEm3vrUzbpvBX754G+f++nl88rX75r+3FJA6shoIIWQAliRJuk2s6SAMYNZreHBnE5987T56Ol2Vbo4kSZIkZW1tdxsXeHBnU6WbIEmSJEk5WfM9YUmSJElaq2QQliRJkqQKkUFYkiRJkipEBmFJkiRJqhAZhCVJkiSpQmQQliRJkqQKkUFYkiRJkipEBmFJkiRJqhAZhCVJkiSpQmQQliRJkqQKkUFYkiRJkipEzJXOK8uDCTEJ9JfwIWqBqRKev9zk86lu8vlUN/l8qtvt8nw6FEWpW+5OZQ3CpSaEOKooSnel21Es8vlUN/l8qpt8PtVNPp8UORwtSZIkSRUig7AkSZIkVcitFoQ/U+kGFJl8PtVNPp/qJp9PdZPPh1tsTliSJEmS1pJbrScsSZIkSWuGDMKSJEmSVCFrKggLIV4hhDgnhEgKIboX3N4phAgJIU6m/316mfu7hBA/EUJcSf/vLF/rM7ZnuefzXCHEMSHEmfT/z1rm/u8XQgwveN4Plq/1GduT8fmkf/ZeIcRVIcQlIcTzlrl/lxDiUPq4rwkhdOVpeXbSbZr7XfcJIU4uc1xf+rU7KYQ4WuZmZi3b948Q4vnp1+2qEOI95W5ntoQQfy+EuCiEOC2E+KYQwrHMcVX7+qz2uxZC6NPvw6vpv5XOCjQzK0KINiHE40KI8+nPhT/McMx9QgjfgvfgX1airblY7f0jUj6efo1OCyH2rXhCRVHWzD9gK7AZeALoXnB7J3A2i/v/P+A96a/fA3y4Sp/PXqA5/fUOYHiZ+78feFelX5csns824BSgB7qAa4A6w/3/C3h1+utPA79b6ee0wnP9R+Avl/lZH1Bb6TZm8RxWff8A6vTrtQ7QpV/HbZVu+zJtfQDQpL/+8HJ/39X6+mTzuwZ+D/h0+utXA1+rdLtXeD5NwL7011bgcobncx/wvUq3NcfnteL7B3gQ+CEggDuAQyudb031hBVFuaAoyqUCTvEQ8Pn0158HXlpwowqw3PNRFOWEoigj6W/PAUYhhL68rcvdCq/PQ8BXFUWJKIrSC1wFehYeIIQQwLOAr6dvqvjrs5x0W18JfKXSbSmDHuCqoijXFUWJAl8l9XpWHUVRfqwoSjz97a+B1kq2Jw/Z/K4XfoZ9HXh2+v1YdRRFGVUU5Xj6az9wAWipbKvK4iHgC0rKrwGHEKJpuYPXVBBeRZcQ4oQQ4udCiGcuc0yDoiij6a/HgIYyta0QjwDHFUWJLPPz308PefxHpYfXV9ACDC74foilf4w1gHfBh2imY6rFM4FxRVGuLPNzBfhxeirhrWVsVz5We/9k89pVozeR6o1kUq2vTza/6/lj0n8rPlJ/O1UtPWy+FziU4cfPEEKcEkL8UAixvbwty8tq75+c/mY0RW5cwYQQPwUaM/zofYqifHuZu40C7YqiTAsh9gPfEkJsVxRlZrnHURRFEUKUfH9Wns9n7r7bSQ2rPbDMIZ8CPkjqTfFBUkOkb8q/tasr5PmsBVk+v9ewci/4bkVRhoUQ9cBPhBAXFUV5sthtzcZKz4cKvH8Klc3rI4R4HxAHvrzMaarm9bkdCCEswDeAd2b4TD5OKrfybHpNwreAjWVuYq6K+v6puiCsKMpz8rhPBIikvz4mhLgGbAJunjQfF0I0KYoymh4emCi4wau3LefnAyCEaAW+CfymoijXljn3+ILj/w34Xl6NzEGez2cYaFvwfWv6toWmSQ3baNJX+JmOKbnVnp8QQgM8DOxf4RzD6f8nhBDfJDXMWJEP+WxfrxXeP9m8dmWTxevzBuBFwLOV9ARdhnNUzetzk2x+13PHDKXfi3ZSfztVSQihJRWAv6woyv/c/POFQVlRlB8IIT4phKhVFKVqCztk8f7J6W/mlhiOFkLUCSHU6a/XkbqSup7h0O8Av5X++reAquy5pVd1fp/UIrJfrXDcwnmGlwFnS9y0fH0HeHV6ZWcXqdfn8MID0h+YjwMvT99Ura/Pc4CLiqIMZfqhEMIshLDOfU1qFKMqX5cs3z9HgI0itXJdR2ox0HfK0b5cCSGeD/wp8BJFUYLLHFPNr082v+uFn2EvB3623MVGpaXnqv8duKAoyj8tc0zj3Jy2EKKHVEyq5ouKbN4/3wF+M71K+g7At2AadKlKrzTL5R+pD4ohUr3eceB/07c/QmoB00lSwxsvXnCfz5JeqUtq7uQx4ArwU8BVpc/nz4FA+vnM/avP8Hy+CJwBTqdf+KZqfD7pn72P1MrPS8ALFtz+A26sBF9HKjhfBf4b0Ff6PZfhOT4K/M5NtzUDP1jwHE6l/50jNUxa8XYv81wyvn8WPp/09w+SWtl6rcqfz1VSc3FzfzNzq4jXzOuT6XcNfIDUhQWAIf23cTX9t7Ku0m1e4bncTWqq4/SC1+RB4Hfm/oaA30+/DqdILaa7s9LtXuU5ZXz/3PScBPCJ9Gt4hgU7RTL9k2krJUmSJKlCbonhaEmSJElai2QQliRJkqQKkUFYkiRJkipEBmFJkiRJqhAZhCVJkiSpQmQQliRJkqQKkUFYkiRJkirk/wPrb5HYEvSIoQAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "spain_copy = spain.copy()\n", + "reposition(spain_copy, spain.name.isin(['Las Palmas', 'Santa Cruz de Tenerife']), 3, 7, 1, 1)\n", + "spain_copy.plot(figsize=(8, 8))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Russia" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "russia = df[df.admin == 'Russia']\n", + "russia.plot()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Russia looks off because of Chukchi runs across E180. We need to move the parts on the other side of the map to the right." + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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OR3Zix0iIqLp4FIvohlk1WvwqfMrx63Ds3FuDrbfcwne+/rFuHp5EWrrI0v6AIDd7cXrh9qjESoRERFFWdeAEx19TqgUAkIILCjMindIRESUBpj4IUowQgiolQpoVAqc6ByAb5Jle37zTh3cYbqDERERUfzcsqECH1yYj2yDNt6hEBFRGmHihyhB9TncONQaugX8ePa39OL52uYYRERERETTMa/AiEsXF8Q7DCIiSjNM/BAlqN2NtknP9jnrpT0t0Q2GiIiIouLSRUz8EBHRzGLihyhBrSw1Y22ldUrHbq/vRsOZwShHRERERERERMmGiR+iBGXUqfHYzTWoqZh88kdK4LfvN8QgKiIiIiIiIkomTPwQJbAMjRIPfGw5bl5fjrLszEkdW9vQE6OoiIiIiIiIKFkw8UOU4IrMGfjOlYvw65uqsXyWOeLj9jXb8M7xrtgFRkRERERERAmPiR+iJFGVb8Qf79yAFaVmzM7VT7i/lMCNj25Dr909A9ERERERERFRImLihyjJPHHrGty8vjyifTdV5cKUoY5tQERERERERJSwmPghSjIGrQo3rC3DVcuLJtz3uupZMxARERERERERJSomfoiSkBACd2yaDY0q/I+wQavCusrsGYyKiIiIiIiIEg0TP0RJan6BEY/dvDrkZ1k6FR75RDUses0MR0VERERERESJRBXvAIhoaoQQWFuZjYIsHU73OYa3G7QqbL37YmRq+ONNRERERESU7jjjhyiJKRUCpdbMEduuXF7EpA8REREREREBYOKHKOndcUEl5uYZhr//9PmVcYyGiIiIiIiIEgmnBRAluYvm52P97BzU1vdgV2MPCk26eIdERERERERECYKJH6IUoFMrcd7cHJw3NyfeoRAREREREVEC4VIvIiIiIiIiIqIUxcQPEREREREREVGKYuKHiIiIiIiIiChFMfFDRERERERERJSimPghIiIiIiIiIkpRTPwQEREREREREaUoJn6IiIiIiIiIiFIUEz9ERERERERERCmKiR8iIiIiIiIiohTFxA8RERERERERUYqKOPEjhFAKIXYLIV4OfF8hhNgmhDghhHhWCKGJXZhERERERERERDRZk5nx8wUAh4O+/xGA/5BSzgHQA+DWaAZGRERERERERETTE1HiRwhRAuAKAI8EvhcALgLwQmCXxwFcHYP4iIiIiIiIiIho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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "def shift_geom(geom, cutoff=0):\n", + " border = shapely.geometry.LineString([(cutoff,-90),(cutoff, 90)])\n", + " splitted_geom = shapely.ops.split(geom, border)\n", + " moved_geom = []\n", + "\n", + " for item in splitted_geom:\n", + " minx, miny, maxx, maxy = item.bounds\n", + " if minx < cutoff:\n", + " moved_geom.append(shapely.affinity.translate(item, xoff=cutoff + 360))\n", + " else:\n", + " moved_geom.append(item)\n", + "\n", + " # got `moved_geom` as the moved geometry \n", + " return shapely.ops.unary_union(moved_geom)\n", + "\n", + "russia_copy = russia.copy()\n", + "russia_copy.loc[\n", + " russia.name == 'Chukchi Autonomous Okrug', 'geometry'\n", + "] = russia_copy.loc[\n", + " russia.name == 'Chukchi Autonomous Okrug', 'geometry'\n", + "].apply(shift_geom)\n", + "\n", + "russia_copy = russia_copy\n", + "\n", + "russia_copy.plot(figsize=(20, 20))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### France" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "france = df[df.admin == 'France']\n", + "france.plot()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Ignore all the oversea islands" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "def apply_bounds(df, northwest, southeast):\n", + " x1, y1 = northwest\n", + " x2, y2 = southeast\n", + " boundry = shapely.geometry.Polygon([(x1, y1),(x1, y2), (x2, y2), (x2, y1)])\n", + " df = df.copy()\n", + " return df[df.geometry.apply(lambda x: boundry.contains(x))]\n", + "\n", + "france_copy = apply_bounds(france, (-20, 60), (20, 20))\n", + "france_copy.plot(figsize=(8, 8))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Netherlands" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "netherlands = df[df.admin == 'Netherlands']\n", + "netherlands.plot()" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "netherlands_copy = apply_bounds(netherlands, (-20, 60), (20, 20))\n", + "netherlands_copy.plot(figsize=(8, 8))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### UK" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "uk = df[df.admin == 'United Kingdom']\n", + "uk.plot()" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "uk_copy = apply_bounds(uk, (-10, 60), (20, 20))\n", + "uk_copy.plot(figsize=(8, 8))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Output GeoJSON" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [], + "source": [ + "alt_maps = {\n", + " \"finland\": finland_copy,\n", + " \"china\": china_copy,\n", + " \"usa\": usa_copy,\n", + " \"france\": france_copy,\n", + " \"netherlands\": netherlands_copy,\n", + " \"norway\": norway_copy,\n", + " \"uk\": uk_copy,\n", + " \"russia\": russia_copy,\n", + " \"spain\": spain_copy,\n", + " \"portugal\": portugal_copy,\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plot_all_countries()" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "aland\tSize 0.913\tSaving geojson for aland...\n", + "australia\tSaving geojson for australia...\n", + "belgium\tSize 7.709\tSaving geojson for belgium...\n", + "brazil\tSaving geojson for brazil...\n", + "bulgaria\tSize 18.715\tSaving geojson for bulgaria...\n", + "canada\tSaving geojson for canada...\n", + "china\tSize 2311.875\tSaving geojson for china...\n", + "denmark\tSize 22.461\tSaving geojson for denmark...\n", + "egypt\tSize 117.982\tSaving geojson for egypt...\n", + "estonia\tSize 13.694\tSaving geojson for estonia...\n", + "france\tSize 142.834\tSaving geojson for france...\n", + "finland\tSize 123.747\tSaving geojson for finland...\n", + "germany\tSize 71.47\tSaving geojson for germany...\n", + "iceland\tSize 34.959\tSaving geojson for iceland...\n", + "india\tSize 840.038\tSaving geojson for india...\n", + "indonesia\tSize 773.715\tSaving geojson for indonesia...\n", + "iran\tSize 284.014\tSaving geojson for iran...\n", + "italy\tSize 138.162\tSaving geojson for italy...\n", + "japan\tSize 661.569\tSaving geojson for japan...\n", + "korea\tSize 34.227\tSaving geojson for korea...\n", + "liechtenstein\tSize 0.029\tSaving geojson for liechtenstein...\n", + "malaysia\tSize 127.7\tSaving geojson for malaysia...\n", + "morocco\tSize 231.84\tSaving geojson for morocco...\n", + "myanmar\tSize 168.709\tSaving geojson for myanmar...\n", + "netherlands\tSize 10.818\tSaving geojson for netherlands...\n", + "norway\tSize 530.052\tSaving geojson for norway...\n", + "portugal\tSize 105.727\tSaving geojson for portugal...\n", + "poland\tSize 58.556\tSaving geojson for poland...\n", + "russia\tSize 6969.988\tSaving geojson for russia...\n", + "singapore\tSize 0.067\tSaving geojson for singapore...\n", + "slovenia\tSize 4.537\tSaving geojson for slovenia...\n", + "spain\tSize 178.488\tSaving geojson for spain...\n", + "sweden\tSize 178.774\tSaving geojson for sweden...\n", + "switzerland\tSize 8.935\tSaving geojson for switzerland...\n", + "syria\tSize 33.348\tSaving geojson for syria...\n", + "thailand\tSize 122.959\tSaving geojson for thailand...\n", + "timorleste\tSize 4.486\tSaving geojson for timorleste...\n", + "uk\tSaving geojson for uk...\n", + "ukraine\tSize 128.988\tSaving geojson for ukraine...\n", + "uruguay\tSize 25.985\tSaving geojson for uruguay...\n", + "usa\tSaving geojson for usa...\n", + "zambia\tSize 115.483\tSaving geojson for zambia...\n", + "Done. \n" + ] + } + ], + "source": [ + "simplify_factors = {\n", + " \"uk\": 0.005,\n", + "}\n", + "useful_columns = [\"ISO\", \"NAME_1\", \"geometry\"]\n", + "\n", + "def get_simplify_factor_by_size(gdf):\n", + " xmin, ymin, xmax, ymax = shapely.ops.unary_union(gdf[\"geometry\"]).bounds\n", + " size = (xmax - xmin) * (ymax - ymin)\n", + " print(\"Size\", round(size, 3), end=\"\\t\")\n", + " if size > 1000: return 0.03\n", + " if size > 300: return 0.02\n", + " if size > 100: return 0.01\n", + " return 0\n", + " \n", + "def simplify_if_needed(country, gdf):\n", + " \"\"\"Simplify the maps based on country size\"\"\"\n", + " country_alias = country_name_aliases.get(country, country)\n", + " if country_alias in df_50m[\"admin\"].str.lower().unique():\n", + " return\n", + " \n", + " factor = simplify_factors.get(country) or get_simplify_factor_by_size(gdf)\n", + " \n", + " if factor:\n", + " gdf[\"geometry\"] = gdf.simplify(factor)\n", + "\n", + "def save_geojson(country):\n", + " gdf = get_gdf(country)\n", + " print(country, end=\"\\t\")\n", + " \n", + " # For backward compatibility\n", + " gdf[\"ISO\"] = gdf[\"iso_3166_2\"]\n", + " gdf[\"NAME_1\"] = gdf[\"name\"]\n", + " \n", + " simplify_if_needed(country, gdf)\n", + " \n", + " print(f'Saving geojson for {country}...')\n", + " gdf[useful_columns].to_file(f\"../countries/{country}.geojson\", driver=\"GeoJSON\")\n", + "\n", + "for country in countries:\n", + " save_geojson(country)\n", + " \n", + "print(\"Done. \")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.9+" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/CountryMap.css b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/CountryMap.css new file mode 100644 index 000000000000..f8234e0ec41b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/CountryMap.css @@ -0,0 +1,61 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +.superset-legacy-chart-country-map svg { + background-color: #feffff; +} + +.superset-legacy-chart-country-map { + position: relative; +} + +.superset-legacy-chart-country-map .background { + fill: rgba(255, 255, 255, 0); + pointer-events: all; +} + +.superset-legacy-chart-country-map .map-layer { + fill: #fff; + stroke: #aaa; +} + +.superset-legacy-chart-country-map .effect-layer { + pointer-events: none; +} + +.superset-legacy-chart-country-map .text-layer { + color: #333333; + text-anchor: middle; + pointer-events: none; +} + +.superset-legacy-chart-country-map text.result-text { + font-weight: 300; + font-size: 24px; +} + +.superset-legacy-chart-country-map text.big-text { + font-weight: 700; + font-size: 16px; +} + +.superset-legacy-chart-country-map path.region { + cursor: pointer; + stroke: #eee; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/CountryMap.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/CountryMap.js new file mode 100644 index 000000000000..ef2656919991 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/CountryMap.js @@ -0,0 +1,242 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/sort-prop-types */ +import d3 from 'd3'; +import PropTypes from 'prop-types'; +import { extent as d3Extent } from 'd3-array'; +import { + getNumberFormatter, + getSequentialSchemeRegistry, +} from '@superset-ui/core'; +import countries, { countryOptions } from './countries'; +import './CountryMap.css'; + +const propTypes = { + data: PropTypes.arrayOf( + PropTypes.shape({ + country_id: PropTypes.string, + metric: PropTypes.number, + }), + ), + width: PropTypes.number, + height: PropTypes.number, + country: PropTypes.string, + linearColorScheme: PropTypes.string, + mapBaseUrl: PropTypes.string, + numberFormat: PropTypes.string, +}; + +const maps = {}; + +function CountryMap(element, props) { + const { data, width, height, country, linearColorScheme, numberFormat } = + props; + + const container = element; + const format = getNumberFormatter(numberFormat); + const colorScale = getSequentialSchemeRegistry() + .get(linearColorScheme) + .createLinearScale(d3Extent(data, v => v.metric)); + const colorMap = {}; + data.forEach(d => { + colorMap[d.country_id] = colorScale(d.metric); + }); + const colorFn = d => colorMap[d.properties.ISO] || 'none'; + + const path = d3.geo.path(); + const div = d3.select(container); + div.classed('superset-legacy-chart-country-map', true); + div.selectAll('*').remove(); + container.style.height = `${height}px`; + container.style.width = `${width}px`; + const svg = div + .append('svg:svg') + .attr('width', width) + .attr('height', height) + .attr('preserveAspectRatio', 'xMidYMid meet'); + const backgroundRect = svg + .append('rect') + .attr('class', 'background') + .attr('width', width) + .attr('height', height); + const g = svg.append('g'); + const mapLayer = g.append('g').classed('map-layer', true); + const textLayer = g + .append('g') + .classed('text-layer', true) + .attr('transform', `translate(${width / 2}, 45)`); + const bigText = textLayer.append('text').classed('big-text', true); + const resultText = textLayer + .append('text') + .classed('result-text', true) + .attr('dy', '1em'); + + let centered; + + const clicked = function clicked(d) { + const hasCenter = d && centered !== d; + let x; + let y; + let k; + const halfWidth = width / 2; + const halfHeight = height / 2; + + if (hasCenter) { + const centroid = path.centroid(d); + [x, y] = centroid; + k = 4; + centered = d; + } else { + x = halfWidth; + y = halfHeight; + k = 1; + centered = null; + } + + g.transition() + .duration(750) + .attr( + 'transform', + `translate(${halfWidth},${halfHeight})scale(${k})translate(${-x},${-y})`, + ); + textLayer + .style('opacity', 0) + .attr( + 'transform', + `translate(0,0)translate(${x},${hasCenter ? y - 5 : 45})`, + ) + .transition() + .duration(750) + .style('opacity', 1); + bigText + .transition() + .duration(750) + .style('font-size', hasCenter ? 6 : 16); + resultText + .transition() + .duration(750) + .style('font-size', hasCenter ? 16 : 24); + }; + + backgroundRect.on('click', clicked); + + const selectAndDisplayNameOfRegion = function selectAndDisplayNameOfRegion( + feature, + ) { + let name = ''; + if (feature && feature.properties) { + if (feature.properties.ID_2) { + name = feature.properties.NAME_2; + } else { + name = feature.properties.NAME_1; + } + } + bigText.text(name); + }; + + const updateMetrics = function updateMetrics(region) { + if (region.length > 0) { + resultText.text(format(region[0].metric)); + } + }; + + const mouseenter = function mouseenter(d) { + // Darken color + let c = colorFn(d); + if (c !== 'none') { + c = d3.rgb(c).darker().toString(); + } + d3.select(this).style('fill', c); + selectAndDisplayNameOfRegion(d); + const result = data.filter( + region => region.country_id === d.properties.ISO, + ); + updateMetrics(result); + }; + + const mouseout = function mouseout() { + d3.select(this).style('fill', colorFn); + bigText.text(''); + resultText.text(''); + }; + + function drawMap(mapData) { + const { features } = mapData; + const center = d3.geo.centroid(mapData); + const scale = 100; + const projection = d3.geo + .mercator() + .scale(scale) + .center(center) + .translate([width / 2, height / 2]); + path.projection(projection); + + // Compute scale that fits container. + const bounds = path.bounds(mapData); + const hscale = (scale * width) / (bounds[1][0] - bounds[0][0]); + const vscale = (scale * height) / (bounds[1][1] - bounds[0][1]); + const newScale = hscale < vscale ? hscale : vscale; + + // Compute bounds and offset using the updated scale. + projection.scale(newScale); + const newBounds = path.bounds(mapData); + projection.translate([ + width - (newBounds[0][0] + newBounds[1][0]) / 2, + height - (newBounds[0][1] + newBounds[1][1]) / 2, + ]); + + // Draw each province as a path + mapLayer + .selectAll('path') + .data(features) + .enter() + .append('path') + .attr('d', path) + .attr('class', 'region') + .attr('vector-effect', 'non-scaling-stroke') + .style('fill', colorFn) + .on('mouseenter', mouseenter) + .on('mouseout', mouseout) + .on('click', clicked); + } + + const map = maps[country]; + if (map) { + drawMap(map); + } else { + const url = countries[country]; + d3.json(url, (error, mapData) => { + if (error) { + const countryName = + countryOptions.find(x => x[0] === country)?.[1] || country; + d3.select(element).html( + `
Could not load map data for ${countryName}
`, + ); + } else { + maps[country] = mapData; + drawMap(mapData); + } + }); + } +} + +CountryMap.displayName = 'CountryMap'; +CountryMap.propTypes = propTypes; + +export default CountryMap; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/ReactCountryMap.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/ReactCountryMap.js new file mode 100644 index 000000000000..40fc6e834717 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/ReactCountryMap.js @@ -0,0 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { reactify } from '@superset-ui/core'; +import Component from './CountryMap'; + +export default reactify(Component); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts new file mode 100644 index 000000000000..f1aad661eeae --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts @@ -0,0 +1,93 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, validateNonEmpty } from '@superset-ui/core'; +import { + ControlPanelConfig, + D3_FORMAT_OPTIONS, + D3_FORMAT_DOCS, + sections, +} from '@superset-ui/chart-controls'; +import { countryOptions } from './countries'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + [ + { + name: 'select_country', + config: { + type: 'SelectControl', + label: t('Country'), + default: null, + choices: countryOptions, + description: t('Which country to plot the map for?'), + validators: [validateNonEmpty], + }, + }, + ], + ['entity'], + ['metric'], + ['adhoc_filters'], + ], + }, + { + label: t('Chart Options'), + expanded: true, + tabOverride: 'customize', + controlSetRows: [ + [ + { + name: 'number_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Number format'), + renderTrigger: true, + default: 'SMART_NUMBER', + choices: D3_FORMAT_OPTIONS, + description: D3_FORMAT_DOCS, + }, + }, + ], + ['linear_color_scheme'], + ], + }, + ], + controlOverrides: { + entity: { + label: t('ISO 3166-2 Codes'), + description: t( + 'Column containing ISO 3166-2 codes of region/province/department in your table.', + ), + }, + metric: { + label: t('Metric'), + description: t('Metric to display bottom title'), + }, + linear_color_scheme: { + renderTrigger: false, + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries.ts new file mode 100755 index 000000000000..3b78045d72dd --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries.ts @@ -0,0 +1,127 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable import/no-webpack-loader-syntax, import/no-unresolved */ +import austria from 'file-loader!./countries/austria.geojson'; +import australia from 'file-loader!./countries/australia.geojson'; +import belgium from 'file-loader!./countries/belgium.geojson'; +import brazil from 'file-loader!./countries/brazil.geojson'; +import bulgaria from 'file-loader!./countries/bulgaria.geojson'; +import canada from 'file-loader!./countries/canada.geojson'; +import china from 'file-loader!./countries/china.geojson'; +import denmark from 'file-loader!./countries/denmark.geojson'; +import egypt from 'file-loader!./countries/egypt.geojson'; +import estonia from 'file-loader!./countries/estonia.geojson'; +import france from 'file-loader!./countries/france.geojson'; +import finland from 'file-loader!./countries/finland.geojson'; +import germany from 'file-loader!./countries/germany.geojson'; +import iceland from 'file-loader!./countries/iceland.geojson'; +import india from 'file-loader!./countries/india.geojson'; +import indonesia from 'file-loader!./countries/indonesia.geojson'; +import iran from 'file-loader!./countries/iran.geojson'; +import italy from 'file-loader!./countries/italy.geojson'; +import italy_regions from 'file-loader!./countries/italy_regions.geojson'; +import japan from 'file-loader!./countries/japan.geojson'; +import korea from 'file-loader!./countries/korea.geojson'; +import liechtenstein from 'file-loader!./countries/liechtenstein.geojson'; +import norway from 'file-loader!./countries/norway.geojson'; +import malaysia from 'file-loader!./countries/malaysia.geojson'; +import morocco from 'file-loader!./countries/morocco.geojson'; +import myanmar from 'file-loader!./countries/myanmar.geojson'; +import netherlands from 'file-loader!./countries/netherlands.geojson'; +import peru from 'file-loader!./countries/peru.geojson'; +import poland from 'file-loader!./countries/poland.geojson'; +import portugal from 'file-loader!./countries/portugal.geojson'; +import russia from 'file-loader!./countries/russia.geojson'; +import saudi_arabia from 'file-loader!./countries/saudi_arabia.geojson'; +import singapore from 'file-loader!./countries/singapore.geojson'; +import slovenia from 'file-loader!./countries/slovenia.geojson'; +import sweden from 'file-loader!./countries/sweden.geojson'; +import spain from 'file-loader!./countries/spain.geojson'; +import switzerland from 'file-loader!./countries/switzerland.geojson'; +import syria from 'file-loader!./countries/syria.geojson'; +import thailand from 'file-loader!./countries/thailand.geojson'; +import timorleste from 'file-loader!./countries/timorleste.geojson'; +import uk from 'file-loader!./countries/uk.geojson'; +import ukraine from 'file-loader!./countries/ukraine.geojson'; +import uruguay from 'file-loader!./countries/uruguay.geojson'; +import usa from 'file-loader!./countries/usa.geojson'; +import zambia from 'file-loader!./countries/zambia.geojson'; +import vietnam from 'file-loader!./countries/vietnam.geojson'; + +export const countries = { + austria, + australia, + belgium, + brazil, + bulgaria, + canada, + china, + denmark, + egypt, + estonia, + france, + finland, + germany, + iceland, + india, + indonesia, + iran, + italy, + italy_regions, + japan, + korea, + liechtenstein, + malaysia, + morocco, + myanmar, + netherlands, + norway, + peru, + poland, + portugal, + russia, + saudi_arabia, + singapore, + slovenia, + spain, + sweden, + switzerland, + syria, + thailand, + timorleste, + uk, + ukraine, + uruguay, + usa, + zambia, + vietnam, +}; + +export const countryOptions = Object.keys(countries).map(x => { + if (x === 'uk' || x === 'usa') { + return [x, x.toUpperCase()]; + } + if (x === 'italy_regions') { + return [x, 'Italy (regions)']; + } + return [x, x[0].toUpperCase() + x.slice(1)]; +}); + +export default countries; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/australia.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/australia.geojson new file mode 100644 index 000000000000..a0dae9686268 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/australia.geojson @@ -0,0 +1,125 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "id": 0, + "properties": { + "STATE_CODE": "1", + "NAME_1": "New South Wales", + "ISO":"AU-NSW" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ [ [ 159.105420, -31.563994 ], [ 159.097750, -31.564275 ], [ 159.099634, -31.573372 ], [ 159.094217, -31.570970 ], [ 159.074599, -31.597285 ], [ 159.068740, -31.595697 ], [ 159.077238, -31.543533 ], [ 159.056995, -31.519772 ], [ 159.038463, -31.522425 ], [ 159.037960, -31.512156 ], [ 159.064657, -31.509666 ], [ 159.063790, -31.517379 ], [ 159.081178, -31.526607 ], [ 159.081913, -31.539767 ], [ 159.094678, -31.545036 ], [ 159.105420, -31.563994 ] ] ], [ [ [ 151.145550, -33.824079 ], [ 151.143844, -33.829174 ], [ 151.169325, -33.839309 ], [ 151.180206, -33.836165 ], [ 151.174277, -33.843006 ], [ 151.143088, -33.835565 ], [ 151.135902, -33.836469 ], [ 151.148783, -33.839386 ], [ 151.133837, -33.844837 ], [ 151.112863, -33.829724 ], [ 151.108625, -33.835555 ], [ 151.092828, -33.819609 ], [ 151.070345, -33.816445 ], [ 151.051336, -33.823662 ], [ 151.084007, -33.822080 ], [ 151.075192, -33.832683 ], [ 151.080873, -33.845750 ], [ 151.083228, -33.827897 ], [ 151.093817, -33.824443 ], [ 151.089778, -33.833044 ], [ 151.098921, -33.831641 ], [ 151.093602, -33.839764 ], [ 151.102215, -33.838102 ], [ 151.099653, -33.844209 ], [ 151.104144, -33.834387 ], [ 151.120767, -33.841788 ], [ 151.113783, -33.853971 ], [ 151.122305, -33.856994 ], [ 151.119070, -33.864711 ], [ 151.128397, -33.860961 ], [ 151.122165, -33.848934 ], [ 151.126983, -33.844195 ], [ 151.142064, -33.845845 ], [ 151.142273, -33.853358 ], [ 151.149526, -33.846908 ], [ 151.144434, -33.843531 ], [ 151.154043, -33.842070 ], [ 151.164849, -33.855249 ], [ 151.144520, -33.863162 ], [ 151.149559, -33.866131 ], [ 151.141168, -33.869844 ], [ 151.150870, -33.872265 ], [ 151.185490, -33.846008 ], [ 151.190538, -33.852375 ], [ 151.184547, -33.853645 ], [ 151.196507, -33.859694 ], [ 151.173504, -33.871203 ], [ 151.189337, -33.875840 ], [ 151.185985, -33.868381 ], [ 151.194011, -33.862376 ], [ 151.201538, -33.873175 ], [ 151.200176, -33.855383 ], [ 151.208045, -33.853512 ], [ 151.209700, -33.861004 ], [ 151.222724, -33.859227 ], [ 151.220606, -33.869096 ], [ 151.229928, -33.858256 ], [ 151.231825, -33.874752 ], [ 151.240091, -33.866392 ], [ 151.246131, -33.873421 ], [ 151.252331, -33.863738 ], [ 151.254657, -33.870793 ], [ 151.266971, -33.870651 ], [ 151.264376, -33.850885 ], [ 151.277581, -33.851090 ], [ 151.281068, -33.832821 ], [ 151.287848, -33.850202 ], [ 151.285699, -33.891955 ], [ 151.274326, -33.893627 ], [ 151.271398, -33.914235 ], [ 151.257621, -33.922461 ], [ 151.265693, -33.941447 ], [ 151.257087, -33.952320 ], [ 151.265965, -33.968030 ], [ 151.251886, -33.964671 ], [ 151.258952, -33.975768 ], [ 151.251185, -33.978936 ], [ 151.249211, -34.001814 ], [ 151.230804, -33.992554 ], [ 151.226024, -33.976737 ], [ 151.208864, -33.982165 ], [ 151.220080, -33.967204 ], [ 151.207515, -33.969846 ], [ 151.211072, -33.961847 ], [ 151.192349, -33.954223 ], [ 151.192722, -33.973925 ], [ 151.186067, -33.952356 ], [ 151.181720, -33.967898 ], [ 151.168033, -33.949774 ], [ 151.139781, -34.003281 ], [ 151.122700, -34.000518 ], [ 151.130740, -33.983977 ], [ 151.118302, -33.990491 ], [ 151.112694, -34.005369 ], [ 151.117358, -34.013775 ], [ 151.107858, -34.014364 ], [ 151.109517, -34.022705 ], [ 151.126957, -34.009899 ], [ 151.137635, -34.037053 ], [ 151.159864, -34.032201 ], [ 151.141756, -34.014559 ], [ 151.157393, -34.013218 ], [ 151.162119, -34.000028 ], [ 151.178624, -34.012843 ], [ 151.158315, -34.014511 ], [ 151.159558, -34.023258 ], [ 151.196318, -34.021228 ], [ 151.206430, -34.014045 ], [ 151.186751, -34.007530 ], [ 151.221931, -34.001214 ], [ 151.231455, -34.011663 ], [ 151.230295, -34.026401 ], [ 151.214520, -34.041930 ], [ 151.185918, -34.034563 ], [ 151.165543, -34.040719 ], [ 151.155880, -34.051861 ], [ 151.153407, -34.073152 ], [ 151.147416, -34.073366 ], [ 151.148906, -34.054581 ], [ 151.140341, -34.073794 ], [ 151.133934, -34.055550 ], [ 151.129658, -34.069298 ], [ 151.111637, -34.072455 ], [ 151.114401, -34.059429 ], [ 151.105961, -34.059439 ], [ 151.112134, -34.043153 ], [ 151.105231, -34.042091 ], [ 151.101770, -34.058999 ], [ 151.096978, -34.047053 ], [ 151.092183, -34.057661 ], [ 151.077022, -34.053923 ], [ 151.089079, -34.058214 ], [ 151.088837, -34.065546 ], [ 151.061128, -34.064351 ], [ 151.057465, -34.073609 ], [ 151.063033, -34.064650 ], [ 151.088446, -34.069568 ], [ 151.095785, -34.058002 ], [ 151.101980, -34.065367 ], [ 151.105556, -34.079512 ], [ 151.078582, -34.089316 ], [ 151.099223, -34.089631 ], [ 151.110204, -34.078284 ], [ 151.132195, -34.075984 ], [ 151.124191, -34.092213 ], [ 151.135161, -34.082260 ], [ 151.133150, -34.073528 ], [ 151.136951, -34.081700 ], [ 151.150032, -34.083695 ], [ 151.168974, -34.074918 ], [ 151.171761, -34.086503 ], [ 151.151792, -34.115075 ], [ 151.135794, -34.120303 ], [ 151.127882, -34.137919 ], [ 151.118696, -34.137011 ], [ 151.111440, -34.148009 ], [ 151.045254, -34.186193 ], [ 150.988696, -34.231862 ], [ 150.928023, -34.316624 ], [ 150.924432, -34.327458 ], [ 150.930286, -34.331102 ], [ 150.919412, -34.358542 ], [ 150.931300, -34.368752 ], [ 150.902085, -34.407696 ], [ 150.904246, -34.420780 ], [ 150.910846, -34.421307 ], [ 150.902392, -34.433215 ], [ 150.901079, -34.459318 ], [ 150.909810, -34.464763 ], [ 150.898757, -34.462019 ], [ 150.894896, -34.451032 ], [ 150.884085, -34.457706 ], [ 150.907936, -34.475512 ], [ 150.913644, -34.464800 ], [ 150.921906, -34.493851 ], [ 150.908840, -34.493170 ], [ 150.891364, -34.506365 ], [ 150.874570, -34.538312 ], [ 150.862742, -34.529093 ], [ 150.873463, -34.498847 ], [ 150.886849, -34.497801 ], [ 150.886605, -34.491595 ], [ 150.832395, -34.486299 ], [ 150.837644, -34.500485 ], [ 150.811748, -34.507363 ], [ 150.819484, -34.517631 ], [ 150.808930, -34.524891 ], [ 150.812573, -34.530276 ], [ 150.807644, -34.525073 ], [ 150.813506, -34.534186 ], [ 150.796795, -34.546199 ], [ 150.810358, -34.549251 ], [ 150.795312, -34.555201 ], [ 150.804238, -34.561351 ], [ 150.816440, -34.553547 ], [ 150.832287, -34.556869 ], [ 150.837573, -34.542704 ], [ 150.862037, -34.537457 ], [ 150.873652, -34.544441 ], [ 150.868446, -34.570207 ], [ 150.877301, -34.579955 ], [ 150.875128, -34.589351 ], [ 150.904456, -34.596968 ], [ 150.887547, -34.598338 ], [ 150.876885, -34.608024 ], [ 150.866629, -34.604505 ], [ 150.855877, -34.614649 ], [ 150.862068, -34.628953 ], [ 150.856594, -34.646030 ], [ 150.865478, -34.648890 ], [ 150.854772, -34.663378 ], [ 150.864679, -34.671917 ], [ 150.855094, -34.676398 ], [ 150.860942, -34.688143 ], [ 150.833299, -34.738644 ], [ 150.837007, -34.754547 ], [ 150.822899, -34.773159 ], [ 150.825135, -34.782505 ], [ 150.811494, -34.772974 ], [ 150.782121, -34.791323 ], [ 150.760547, -34.820646 ], [ 150.749538, -34.855160 ], [ 150.751467, -34.890586 ], [ 150.760049, -34.900442 ], [ 150.770895, -34.895815 ], [ 150.768621, -34.926048 ], [ 150.785753, -34.930429 ], [ 150.776325, -34.947837 ], [ 150.784718, -34.986574 ], [ 150.810238, -35.012456 ], [ 150.821423, -35.014745 ], [ 150.829846, -35.002907 ], [ 150.849715, -35.012891 ], [ 150.831646, -35.041184 ], [ 150.842983, -35.050636 ], [ 150.833758, -35.074355 ], [ 150.805821, -35.094438 ], [ 150.786259, -35.072542 ], [ 150.776154, -35.083012 ], [ 150.775738, -35.054144 ], [ 150.787111, -35.036227 ], [ 150.767252, -35.015173 ], [ 150.778271, -35.002448 ], [ 150.750987, -34.990845 ], [ 150.726267, -34.996650 ], [ 150.728397, -35.007549 ], [ 150.692061, -35.014115 ], [ 150.671130, -35.037153 ], [ 150.679510, -35.049259 ], [ 150.676828, -35.069026 ], [ 150.697959, -35.071135 ], [ 150.691608, -35.083161 ], [ 150.701604, -35.122862 ], [ 150.661053, -35.117824 ], [ 150.657742, -35.105186 ], [ 150.647068, -35.101652 ], [ 150.638256, -35.116681 ], [ 150.614193, -35.116536 ], [ 150.620558, -35.106175 ], [ 150.595250, -35.101546 ], [ 150.587140, -35.088315 ], [ 150.586233, -35.093915 ], [ 150.576903, -35.088371 ], [ 150.579468, -35.099236 ], [ 150.563048, -35.093674 ], [ 150.549499, -35.103040 ], [ 150.565456, -35.102507 ], [ 150.568716, -35.112856 ], [ 150.541380, -35.118777 ], [ 150.544818, -35.122930 ], [ 150.565494, -35.119567 ], [ 150.574358, -35.122863 ], [ 150.569959, -35.130350 ], [ 150.586461, -35.120235 ], [ 150.598912, -35.127192 ], [ 150.585885, -35.138164 ], [ 150.605105, -35.156175 ], [ 150.601334, -35.170066 ], [ 150.591249, -35.172472 ], [ 150.597420, -35.190064 ], [ 150.572751, -35.193035 ], [ 150.540543, -35.215675 ], [ 150.530200, -35.235074 ], [ 150.545226, -35.248436 ], [ 150.478024, -35.291824 ], [ 150.471901, -35.316547 ], [ 150.487294, -35.324977 ], [ 150.475899, -35.330281 ], [ 150.475586, -35.346446 ], [ 150.485034, -35.353284 ], [ 150.474882, -35.356554 ], [ 150.492479, -35.366331 ], [ 150.478544, -35.367845 ], [ 150.452093, -35.389968 ], [ 150.449098, -35.406757 ], [ 150.423084, -35.420975 ], [ 150.410745, -35.436522 ], [ 150.415734, -35.445422 ], [ 150.406091, -35.445871 ], [ 150.403749, -35.458115 ], [ 150.392847, -35.464609 ], [ 150.390874, -35.498431 ], [ 150.401584, -35.506192 ], [ 150.406331, -35.533928 ], [ 150.396202, -35.533120 ], [ 150.385042, -35.546132 ], [ 150.386919, -35.562708 ], [ 150.375839, -35.563551 ], [ 150.376802, -35.571802 ], [ 150.364873, -35.570642 ], [ 150.346391, -35.587906 ], [ 150.340029, -35.597308 ], [ 150.345640, -35.604252 ], [ 150.322605, -35.613539 ], [ 150.326048, -35.637215 ], [ 150.313561, -35.635562 ], [ 150.299254, -35.647388 ], [ 150.297430, -35.663088 ], [ 150.307557, -35.668763 ], [ 150.299687, -35.678853 ], [ 150.306552, -35.686106 ], [ 150.299061, -35.683723 ], [ 150.297440, -35.696100 ], [ 150.280941, -35.703348 ], [ 150.276600, -35.723524 ], [ 150.270352, -35.719129 ], [ 150.265411, -35.726463 ], [ 150.262428, -35.717863 ], [ 150.251028, -35.719400 ], [ 150.250492, -35.711488 ], [ 150.233969, -35.702933 ], [ 150.212214, -35.711807 ], [ 150.210273, -35.702356 ], [ 150.177263, -35.703075 ], [ 150.214480, -35.737926 ], [ 150.211872, -35.759990 ], [ 150.234944, -35.771762 ], [ 150.237379, -35.791939 ], [ 150.230108, -35.801106 ], [ 150.237153, -35.801716 ], [ 150.224191, -35.808749 ], [ 150.230793, -35.818402 ], [ 150.224934, -35.827793 ], [ 150.235278, -35.835527 ], [ 150.217544, -35.830701 ], [ 150.210168, -35.835846 ], [ 150.199136, -35.828596 ], [ 150.186699, -35.833116 ], [ 150.189893, -35.838464 ], [ 150.177660, -35.850199 ], [ 150.191359, -35.860505 ], [ 150.169215, -35.862520 ], [ 150.150243, -35.891139 ], [ 150.152075, -35.907795 ], [ 150.161817, -35.908667 ], [ 150.155057, -35.945862 ], [ 150.160404, -35.953897 ], [ 150.151067, -35.978860 ], [ 150.154079, -35.991911 ], [ 150.164327, -35.993640 ], [ 150.157407, -36.007989 ], [ 150.164553, -36.013024 ], [ 150.149238, -36.028810 ], [ 150.144535, -36.056992 ], [ 150.134469, -36.065940 ], [ 150.133960, -36.090214 ], [ 150.141502, -36.094435 ], [ 150.124334, -36.141924 ], [ 150.125418, -36.160140 ], [ 150.135854, -36.172495 ], [ 150.130935, -36.199788 ], [ 150.142489, -36.217796 ], [ 150.148569, -36.266969 ], [ 150.130773, -36.288866 ], [ 150.139723, -36.304902 ], [ 150.089788, -36.353992 ], [ 150.066831, -36.398525 ], [ 150.067640, -36.419410 ], [ 150.084760, -36.429194 ], [ 150.054818, -36.488115 ], [ 150.062206, -36.506550 ], [ 150.055537, -36.540206 ], [ 150.068288, -36.554137 ], [ 150.055783, -36.570668 ], [ 150.056813, -36.582939 ], [ 150.044143, -36.589002 ], [ 149.999881, -36.665002 ], [ 149.999328, -36.685645 ], [ 149.992487, -36.687797 ], [ 149.997116, -36.692217 ], [ 149.982757, -36.702281 ], [ 149.979306, -36.722228 ], [ 149.991869, -36.725572 ], [ 149.981850, -36.737080 ], [ 149.977198, -36.769631 ], [ 149.940621, -36.811683 ], [ 149.934352, -36.844126 ], [ 149.950011, -36.855390 ], [ 149.939116, -36.857512 ], [ 149.930172, -36.873988 ], [ 149.935305, -36.884159 ], [ 149.929592, -36.894714 ], [ 149.938102, -36.902453 ], [ 149.919697, -36.895441 ], [ 149.904788, -36.914648 ], [ 149.913436, -36.944592 ], [ 149.945918, -36.949130 ], [ 149.933505, -36.959335 ], [ 149.926665, -36.992060 ], [ 149.930788, -37.007831 ], [ 149.947732, -37.017556 ], [ 149.939898, -37.031216 ], [ 149.944652, -37.053996 ], [ 149.923414, -37.046306 ], [ 149.909916, -37.062083 ], [ 149.914847, -37.076119 ], [ 149.901876, -37.069158 ], [ 149.872514, -37.083208 ], [ 149.878305, -37.101044 ], [ 149.893487, -37.097087 ], [ 149.911385, -37.111800 ], [ 149.929726, -37.110113 ], [ 149.926203, -37.100315 ], [ 149.953789, -37.100888 ], [ 149.952320, -37.108727 ], [ 149.971312, -37.117834 ], [ 149.968962, -37.125682 ], [ 149.987616, -37.141124 ], [ 150.004869, -37.141269 ], [ 150.009550, -37.161268 ], [ 150.002958, -37.168505 ], [ 150.020860, -37.185414 ], [ 150.015523, -37.201106 ], [ 150.023399, -37.211966 ], [ 150.010766, -37.211813 ], [ 150.027744, -37.222497 ], [ 150.030825, -37.237860 ], [ 150.051842, -37.262255 ], [ 150.013021, -37.255478 ], [ 149.986780, -37.239932 ], [ 149.966025, -37.249843 ], [ 149.944008, -37.277729 ], [ 149.950848, -37.295648 ], [ 149.969726, -37.309697 ], [ 149.972162, -37.328523 ], [ 149.949831, -37.374669 ], [ 149.956554, -37.423509 ], [ 149.975410, -37.445450 ], [ 149.976679, -37.505060 ], [ 148.194946, -36.796253 ], [ 148.182473, -36.804895 ], [ 148.179595, -36.796326 ], [ 148.156663, -36.790013 ], [ 148.126771, -36.796451 ], [ 148.120152, -36.806079 ], [ 148.108888, -36.800865 ], [ 148.097983, -36.787161 ], [ 148.126081, -36.759417 ], [ 148.120472, -36.756303 ], [ 148.132654, -36.750847 ], [ 148.136703, -36.738436 ], [ 148.130703, -36.734683 ], [ 148.170243, -36.712799 ], [ 148.211171, -36.650519 ], [ 148.219547, -36.619558 ], [ 148.214196, -36.610490 ], [ 148.202781, -36.611915 ], [ 148.217563, -36.598239 ], [ 148.205990, -36.586932 ], [ 148.190330, -36.584891 ], [ 148.190134, -36.576620 ], [ 148.169411, -36.573696 ], [ 148.160713, -36.579776 ], [ 148.150489, -36.558336 ], [ 148.133410, -36.566921 ], [ 148.124337, -36.550642 ], [ 148.139815, -36.525445 ], [ 148.117630, -36.495476 ], [ 148.126424, -36.485274 ], [ 148.119093, -36.481884 ], [ 148.124663, -36.464713 ], [ 148.087601, -36.451895 ], [ 148.080280, -36.422101 ], [ 148.059945, -36.415538 ], [ 148.058163, -36.400804 ], [ 148.037583, -36.390225 ], [ 148.045966, -36.367038 ], [ 148.037836, -36.366246 ], [ 148.048959, -36.355632 ], [ 148.055613, -36.334386 ], [ 148.051243, -36.324557 ], [ 148.058941, -36.320046 ], [ 148.035011, -36.310577 ], [ 148.043928, -36.299479 ], [ 148.035234, -36.292329 ], [ 148.040119, -36.284157 ], [ 148.033753, -36.282230 ], [ 148.032828, -36.265860 ], [ 148.038676, -36.259221 ], [ 148.028840, -36.247044 ], [ 148.034900, -36.234116 ], [ 148.026096, -36.223042 ], [ 148.040620, -36.206951 ], [ 148.021819, -36.176462 ], [ 148.034795, -36.162983 ], [ 148.022899, -36.153457 ], [ 148.035191, -36.152536 ], [ 148.037726, -36.140797 ], [ 148.002388, -36.140057 ], [ 148.000537, -36.124355 ], [ 147.990652, -36.121272 ], [ 147.998229, -36.115919 ], [ 147.991074, -36.111251 ], [ 147.999218, -36.098655 ], [ 147.980247, -36.086482 ], [ 147.982389, -36.077891 ], [ 147.992889, -36.081071 ], [ 147.989467, -36.068478 ], [ 147.999692, -36.046204 ], [ 147.991260, -36.052559 ], [ 147.981774, -36.040254 ], [ 147.973234, -36.046314 ], [ 147.974260, -36.038505 ], [ 147.964964, -36.046853 ], [ 147.958994, -36.040974 ], [ 147.934261, -36.047637 ], [ 147.923974, -36.042491 ], [ 147.923752, -36.035709 ], [ 147.931559, -36.035267 ], [ 147.911490, -36.026597 ], [ 147.917083, -36.011204 ], [ 147.908543, -36.001473 ], [ 147.912342, -35.995198 ], [ 147.895698, -35.993018 ], [ 147.897506, -35.999861 ], [ 147.882880, -36.001798 ], [ 147.873121, -35.991006 ], [ 147.817498, -35.979741 ], [ 147.806153, -35.965057 ], [ 147.776849, -35.968614 ], [ 147.766797, -35.964158 ], [ 147.773261, -35.958863 ], [ 147.741292, -35.956490 ], [ 147.718672, -35.945513 ], [ 147.708415, -35.928545 ], [ 147.680010, -35.944439 ], [ 147.646777, -35.946008 ], [ 147.637771, -35.962110 ], [ 147.601438, -35.979118 ], [ 147.591893, -35.969859 ], [ 147.549115, -35.964550 ], [ 147.547654, -35.978625 ], [ 147.558887, -35.972489 ], [ 147.584027, -35.984648 ], [ 147.551873, -36.004095 ], [ 147.521359, -35.986936 ], [ 147.514925, -35.976369 ], [ 147.525267, -35.963338 ], [ 147.511421, -35.962412 ], [ 147.494112, -35.943549 ], [ 147.481553, -35.949223 ], [ 147.478835, -35.942689 ], [ 147.464072, -35.944137 ], [ 147.450685, -35.960804 ], [ 147.404631, -35.943495 ], [ 147.390342, -35.949266 ], [ 147.392344, -35.973533 ], [ 147.383679, -35.972352 ], [ 147.358193, -35.991276 ], [ 147.355287, -36.009832 ], [ 147.345681, -36.018772 ], [ 147.352825, -36.031749 ], [ 147.319949, -36.060987 ], [ 147.285177, -36.039439 ], [ 147.242378, -36.038482 ], [ 147.206299, -36.050136 ], [ 147.164456, -36.030798 ], [ 147.144361, -36.037765 ], [ 147.127391, -36.018047 ], [ 147.123357, -35.994498 ], [ 147.111931, -36.000922 ], [ 147.116280, -36.007635 ], [ 147.106820, -36.004825 ], [ 147.109228, -36.012549 ], [ 147.098074, -36.010246 ], [ 147.106364, -36.016455 ], [ 147.097671, -36.015823 ], [ 147.099095, -36.026194 ], [ 147.092140, -36.027650 ], [ 147.103712, -36.032854 ], [ 147.097003, -36.046784 ], [ 147.091582, -36.043861 ], [ 147.095444, -36.052710 ], [ 147.090400, -36.049226 ], [ 147.061812, -36.066155 ], [ 147.052963, -36.107881 ], [ 147.042344, -36.104305 ], [ 147.034141, -36.115239 ], [ 147.022777, -36.099895 ], [ 147.013473, -36.104721 ], [ 147.016319, -36.089798 ], [ 147.006396, -36.089115 ], [ 147.007444, -36.083732 ], [ 146.981298, -36.094876 ], [ 146.972589, -36.082113 ], [ 146.956824, -36.078061 ], [ 146.952498, -36.110788 ], [ 146.943705, -36.115989 ], [ 146.926804, -36.097178 ], [ 146.924058, -36.108315 ], [ 146.907763, -36.111284 ], [ 146.906910, -36.084946 ], [ 146.880556, -36.087524 ], [ 146.872952, -36.073681 ], [ 146.864530, -36.073084 ], [ 146.857158, -36.084918 ], [ 146.836700, -36.082073 ], [ 146.825026, -36.088724 ], [ 146.825542, -36.070847 ], [ 146.816301, -36.074377 ], [ 146.818380, -36.067834 ], [ 146.803936, -36.055194 ], [ 146.794570, -36.058545 ], [ 146.796181, -36.065138 ], [ 146.762818, -36.059519 ], [ 146.762315, -36.051665 ], [ 146.749851, -36.061277 ], [ 146.752929, -36.042113 ], [ 146.730065, -36.044724 ], [ 146.731645, -36.023725 ], [ 146.708878, -36.029435 ], [ 146.707141, -36.036122 ], [ 146.689603, -36.030446 ], [ 146.695002, -36.034315 ], [ 146.685812, -36.040576 ], [ 146.675365, -36.028599 ], [ 146.680199, -36.022376 ], [ 146.655996, -36.026252 ], [ 146.650336, -36.018411 ], [ 146.658574, -36.014488 ], [ 146.650178, -36.013796 ], [ 146.650868, -36.007735 ], [ 146.614299, -35.996480 ], [ 146.607820, -35.986372 ], [ 146.618716, -35.975937 ], [ 146.612520, -35.972858 ], [ 146.584147, -35.974987 ], [ 146.583967, -35.983864 ], [ 146.560301, -35.976391 ], [ 146.552029, -35.979592 ], [ 146.555958, -35.989182 ], [ 146.549581, -35.992457 ], [ 146.532293, -35.984299 ], [ 146.519681, -35.960604 ], [ 146.502585, -35.958235 ], [ 146.500674, -35.979244 ], [ 146.492480, -35.985012 ], [ 146.502134, -35.983188 ], [ 146.499726, -35.990870 ], [ 146.467407, -35.984240 ], [ 146.469966, -35.976201 ], [ 146.454595, -35.962247 ], [ 146.444738, -35.977991 ], [ 146.437159, -35.967015 ], [ 146.421673, -35.965831 ], [ 146.425169, -35.973027 ], [ 146.402962, -35.988780 ], [ 146.399134, -36.007199 ], [ 146.380606, -36.012895 ], [ 146.379594, -36.028127 ], [ 146.387557, -36.035639 ], [ 146.368684, -36.050862 ], [ 146.338890, -36.026395 ], [ 146.325022, -36.033543 ], [ 146.329072, -36.043144 ], [ 146.315875, -36.038453 ], [ 146.312986, -36.045568 ], [ 146.300963, -36.036590 ], [ 146.299009, -36.047859 ], [ 146.291396, -36.038952 ], [ 146.283023, -36.041488 ], [ 146.293104, -36.029503 ], [ 146.282181, -36.026188 ], [ 146.291125, -36.020163 ], [ 146.278803, -36.015850 ], [ 146.282895, -36.011048 ], [ 146.275030, -36.012441 ], [ 146.272859, -36.026631 ], [ 146.257183, -36.012053 ], [ 146.244593, -36.018340 ], [ 146.250889, -36.023130 ], [ 146.241433, -36.023524 ], [ 146.242980, -36.028784 ], [ 146.222171, -36.029921 ], [ 146.211155, -36.038860 ], [ 146.211581, -36.028559 ], [ 146.204747, -36.039158 ], [ 146.199244, -36.027453 ], [ 146.185976, -36.042071 ], [ 146.173104, -36.019293 ], [ 146.154680, -36.025159 ], [ 146.145863, -36.013776 ], [ 146.131357, -36.019413 ], [ 146.132045, -36.010095 ], [ 146.140650, -36.008954 ], [ 146.134761, -36.002547 ], [ 146.118718, -36.018014 ], [ 146.107678, -36.014369 ], [ 146.112378, -36.006811 ], [ 146.091470, -36.009477 ], [ 146.092199, -36.021266 ], [ 146.075639, -36.018177 ], [ 146.073550, -36.009637 ], [ 146.059295, -36.014548 ], [ 146.052346, -35.995465 ], [ 146.048421, -36.003158 ], [ 146.031488, -35.994714 ], [ 146.016143, -36.006962 ], [ 146.005866, -36.003569 ], [ 145.972070, -36.015747 ], [ 145.971314, -36.005651 ], [ 145.958336, -36.006973 ], [ 145.964818, -35.996770 ], [ 145.945744, -35.983809 ], [ 145.951071, -35.976626 ], [ 145.944304, -35.966495 ], [ 145.953701, -35.961500 ], [ 145.928000, -35.973947 ], [ 145.925821, -35.964563 ], [ 145.902934, -35.968856 ], [ 145.900756, -35.961529 ], [ 145.910314, -35.955962 ], [ 145.902693, -35.952496 ], [ 145.854042, -35.959927 ], [ 145.847975, -35.968689 ], [ 145.858624, -35.974814 ], [ 145.845548, -35.973460 ], [ 145.848589, -35.980899 ], [ 145.840021, -35.983244 ], [ 145.827548, -35.975438 ], [ 145.828252, -35.982982 ], [ 145.811353, -35.984102 ], [ 145.816680, -35.988200 ], [ 145.811662, -35.991769 ], [ 145.807980, -35.983762 ], [ 145.793445, -35.982817 ], [ 145.792732, -35.972801 ], [ 145.777006, -35.972559 ], [ 145.778211, -35.960243 ], [ 145.746109, -35.964239 ], [ 145.731027, -35.958734 ], [ 145.734238, -35.951348 ], [ 145.716766, -35.950594 ], [ 145.726300, -35.942312 ], [ 145.720274, -35.934449 ], [ 145.697327, -35.936501 ], [ 145.695763, -35.925792 ], [ 145.703269, -35.925702 ], [ 145.698181, -35.920977 ], [ 145.685852, -35.930615 ], [ 145.673992, -35.925924 ], [ 145.679053, -35.916829 ], [ 145.669121, -35.919586 ], [ 145.657449, -35.900686 ], [ 145.639730, -35.894239 ], [ 145.629570, -35.880105 ], [ 145.620321, -35.883884 ], [ 145.628134, -35.875409 ], [ 145.614857, -35.872570 ], [ 145.628320, -35.867775 ], [ 145.626347, -35.862758 ], [ 145.601748, -35.867857 ], [ 145.606474, -35.874998 ], [ 145.601134, -35.875008 ], [ 145.598028, -35.861458 ], [ 145.586792, -35.861245 ], [ 145.593230, -35.849077 ], [ 145.564011, -35.834190 ], [ 145.566840, -35.826497 ], [ 145.557997, -35.828230 ], [ 145.562836, -35.813449 ], [ 145.546741, -35.812894 ], [ 145.538763, -35.821813 ], [ 145.541889, -35.808905 ], [ 145.535398, -35.801983 ], [ 145.522510, -35.818486 ], [ 145.502556, -35.809449 ], [ 145.491977, -35.815076 ], [ 145.472128, -35.809230 ], [ 145.463440, -35.826274 ], [ 145.450658, -35.821418 ], [ 145.442293, -35.835642 ], [ 145.412575, -35.830601 ], [ 145.410625, -35.848613 ], [ 145.387150, -35.850142 ], [ 145.355400, -35.867067 ], [ 145.324453, -35.850686 ], [ 145.296542, -35.860566 ], [ 145.272698, -35.845203 ], [ 145.258317, -35.850588 ], [ 145.260717, -35.835426 ], [ 145.246178, -35.830321 ], [ 145.225029, -35.832184 ], [ 145.222760, -35.842440 ], [ 145.189806, -35.834267 ], [ 145.181014, -35.842026 ], [ 145.153456, -35.843045 ], [ 145.159170, -35.831077 ], [ 145.139579, -35.828538 ], [ 145.136636, -35.834270 ], [ 145.127683, -35.820716 ], [ 145.126435, -35.829671 ], [ 145.114092, -35.820548 ], [ 145.091922, -35.835957 ], [ 145.089998, -35.825457 ], [ 145.061056, -35.837309 ], [ 145.049713, -35.833671 ], [ 145.018998, -35.856647 ], [ 144.992263, -35.852338 ], [ 144.991436, -35.858984 ], [ 144.968187, -35.865528 ], [ 144.974954, -35.883845 ], [ 144.948917, -35.931602 ], [ 144.957378, -35.961005 ], [ 144.931005, -35.968470 ], [ 144.923606, -35.988768 ], [ 144.945759, -36.004312 ], [ 144.945499, -36.012186 ], [ 144.961831, -36.018216 ], [ 144.967808, -36.042078 ], [ 144.985932, -36.056509 ], [ 144.981909, -36.072316 ], [ 144.948290, -36.082904 ], [ 144.932614, -36.067049 ], [ 144.863460, -36.059112 ], [ 144.861373, -36.071838 ], [ 144.857534, -36.065171 ], [ 144.856474, -36.073553 ], [ 144.847176, -36.072881 ], [ 144.850851, -36.080645 ], [ 144.841901, -36.083098 ], [ 144.841922, -36.100576 ], [ 144.819903, -36.107947 ], [ 144.809893, -36.102428 ], [ 144.816340, -36.109865 ], [ 144.806398, -36.107457 ], [ 144.813362, -36.113912 ], [ 144.807870, -36.123628 ], [ 144.794782, -36.117285 ], [ 144.777064, -36.129837 ], [ 144.771896, -36.116132 ], [ 144.748239, -36.121746 ], [ 144.740569, -36.107576 ], [ 144.726379, -36.117781 ], [ 144.717445, -36.112113 ], [ 144.725675, -36.089438 ], [ 144.715385, -36.086214 ], [ 144.706461, -36.092948 ], [ 144.698886, -36.087259 ], [ 144.697522, -36.094047 ], [ 144.683907, -36.095138 ], [ 144.689004, -36.061417 ], [ 144.667856, -36.068596 ], [ 144.664631, -36.077042 ], [ 144.658022, -36.070380 ], [ 144.654966, -36.075349 ], [ 144.653191, -36.053240 ], [ 144.643921, -36.056664 ], [ 144.632744, -36.048097 ], [ 144.624999, -36.052081 ], [ 144.626288, -36.061800 ], [ 144.618300, -36.059708 ], [ 144.628221, -36.065259 ], [ 144.617670, -36.077192 ], [ 144.608432, -36.063641 ], [ 144.617551, -36.046904 ], [ 144.615473, -36.031593 ], [ 144.605957, -36.036542 ], [ 144.608761, -36.041808 ], [ 144.598917, -36.037411 ], [ 144.590991, -36.043318 ], [ 144.582515, -36.038135 ], [ 144.586445, -36.027182 ], [ 144.571127, -36.024079 ], [ 144.563385, -36.007806 ], [ 144.557655, -36.014107 ], [ 144.553661, -36.002984 ], [ 144.516140, -35.995438 ], [ 144.512009, -35.988895 ], [ 144.521099, -35.970266 ], [ 144.509950, -35.973945 ], [ 144.513047, -35.965202 ], [ 144.501128, -35.970606 ], [ 144.501900, -35.958039 ], [ 144.493963, -35.968592 ], [ 144.488638, -35.957123 ], [ 144.481230, -35.958609 ], [ 144.487583, -35.949511 ], [ 144.479758, -35.953295 ], [ 144.479415, -35.945275 ], [ 144.466691, -35.945927 ], [ 144.472233, -35.940725 ], [ 144.464123, -35.940942 ], [ 144.466553, -35.933602 ], [ 144.460553, -35.939596 ], [ 144.446974, -35.935531 ], [ 144.426505, -35.918744 ], [ 144.423428, -35.906005 ], [ 144.416979, -35.910472 ], [ 144.424381, -35.900194 ], [ 144.407927, -35.904013 ], [ 144.418183, -35.893220 ], [ 144.403628, -35.880666 ], [ 144.410936, -35.871189 ], [ 144.401926, -35.868020 ], [ 144.411388, -35.859003 ], [ 144.398635, -35.862667 ], [ 144.388885, -35.858480 ], [ 144.390318, -35.850553 ], [ 144.381433, -35.852423 ], [ 144.384314, -35.841922 ], [ 144.372936, -35.838150 ], [ 144.382044, -35.833175 ], [ 144.372189, -35.831950 ], [ 144.384118, -35.819565 ], [ 144.364806, -35.820937 ], [ 144.377484, -35.814346 ], [ 144.366709, -35.811253 ], [ 144.376850, -35.792979 ], [ 144.362329, -35.795834 ], [ 144.355338, -35.788479 ], [ 144.360283, -35.784811 ], [ 144.351546, -35.785069 ], [ 144.349111, -35.767142 ], [ 144.318651, -35.766574 ], [ 144.327832, -35.752646 ], [ 144.295276, -35.754379 ], [ 144.301278, -35.742986 ], [ 144.296060, -35.737091 ], [ 144.264496, -35.751403 ], [ 144.248150, -35.721034 ], [ 144.215952, -35.706477 ], [ 144.221647, -35.693952 ], [ 144.213483, -35.686671 ], [ 144.195139, -35.685858 ], [ 144.186788, -35.670431 ], [ 144.162351, -35.671526 ], [ 144.152629, -35.642678 ], [ 144.142927, -35.647253 ], [ 144.131488, -35.640761 ], [ 144.117546, -35.625926 ], [ 144.105015, -35.590780 ], [ 144.062285, -35.576768 ], [ 144.063958, -35.570545 ], [ 144.046800, -35.563141 ], [ 144.039215, -35.549257 ], [ 144.034082, -35.555971 ], [ 144.012702, -35.554073 ], [ 144.009646, -35.563307 ], [ 143.989865, -35.554663 ], [ 143.999221, -35.545367 ], [ 143.996841, -35.536250 ], [ 143.974476, -35.532309 ], [ 143.962441, -35.513980 ], [ 143.972536, -35.509249 ], [ 143.970101, -35.500078 ], [ 143.933355, -35.506610 ], [ 143.935045, -35.499288 ], [ 143.906183, -35.499958 ], [ 143.907733, -35.494162 ], [ 143.876584, -35.486166 ], [ 143.871380, -35.477828 ], [ 143.858784, -35.479978 ], [ 143.855435, -35.461838 ], [ 143.813021, -35.446265 ], [ 143.818018, -35.437545 ], [ 143.790117, -35.422477 ], [ 143.762852, -35.423066 ], [ 143.765962, -35.415858 ], [ 143.758802, -35.415427 ], [ 143.768823, -35.401809 ], [ 143.751004, -35.387835 ], [ 143.709175, -35.392538 ], [ 143.711685, -35.384690 ], [ 143.703349, -35.389408 ], [ 143.702284, -35.377882 ], [ 143.693148, -35.383917 ], [ 143.684521, -35.368446 ], [ 143.682627, -35.374091 ], [ 143.667922, -35.371554 ], [ 143.668081, -35.385735 ], [ 143.657140, -35.384999 ], [ 143.642338, -35.401037 ], [ 143.629381, -35.392368 ], [ 143.633019, -35.383467 ], [ 143.620416, -35.387682 ], [ 143.616037, -35.368884 ], [ 143.603015, -35.365407 ], [ 143.598448, -35.352111 ], [ 143.562074, -35.337244 ], [ 143.569019, -35.302447 ], [ 143.577937, -35.303197 ], [ 143.590860, -35.281659 ], [ 143.583507, -35.265005 ], [ 143.571690, -35.267959 ], [ 143.574076, -35.256505 ], [ 143.563717, -35.243545 ], [ 143.580984, -35.220036 ], [ 143.570828, -35.206905 ], [ 143.547023, -35.206173 ], [ 143.548335, -35.213790 ], [ 143.529155, -35.219921 ], [ 143.518322, -35.211620 ], [ 143.471482, -35.219293 ], [ 143.449486, -35.189112 ], [ 143.394677, -35.192377 ], [ 143.386969, -35.183462 ], [ 143.391820, -35.172567 ], [ 143.381936, -35.173120 ], [ 143.390647, -35.145107 ], [ 143.361967, -35.116900 ], [ 143.360762, -35.103032 ], [ 143.348103, -35.105440 ], [ 143.340858, -35.095714 ], [ 143.345023, -35.087020 ], [ 143.337446, -35.080418 ], [ 143.345520, -35.074056 ], [ 143.339058, -35.068191 ], [ 143.350838, -35.064702 ], [ 143.337663, -35.061294 ], [ 143.337264, -35.048645 ], [ 143.330492, -35.053880 ], [ 143.336543, -35.043219 ], [ 143.328679, -35.045900 ], [ 143.322081, -35.036727 ], [ 143.335987, -35.037375 ], [ 143.331864, -35.023804 ], [ 143.338117, -35.010891 ], [ 143.329708, -34.995744 ], [ 143.318825, -34.992943 ], [ 143.323717, -34.979085 ], [ 143.317704, -34.952598 ], [ 143.322014, -34.942339 ], [ 143.339492, -34.943632 ], [ 143.342789, -34.932533 ], [ 143.340526, -34.913740 ], [ 143.321389, -34.888460 ], [ 143.341732, -34.881120 ], [ 143.338404, -34.870312 ], [ 143.352563, -34.858235 ], [ 143.345210, -34.853463 ], [ 143.354957, -34.846039 ], [ 143.341191, -34.846309 ], [ 143.359559, -34.816899 ], [ 143.347559, -34.807302 ], [ 143.347876, -34.791635 ], [ 143.318269, -34.790842 ], [ 143.308844, -34.779939 ], [ 143.294285, -34.790822 ], [ 143.284327, -34.785245 ], [ 143.286873, -34.794985 ], [ 143.276736, -34.792260 ], [ 143.273005, -34.776412 ], [ 143.252130, -34.772803 ], [ 143.274016, -34.752685 ], [ 143.265285, -34.748558 ], [ 143.248933, -34.757853 ], [ 143.240660, -34.745460 ], [ 143.228775, -34.747789 ], [ 143.224384, -34.758733 ], [ 143.213847, -34.738496 ], [ 143.218847, -34.729471 ], [ 143.200006, -34.733418 ], [ 143.199179, -34.717034 ], [ 143.179282, -34.717329 ], [ 143.180987, -34.709482 ], [ 143.173197, -34.719709 ], [ 143.165360, -34.718136 ], [ 143.161689, -34.697916 ], [ 143.147400, -34.714757 ], [ 143.133463, -34.700577 ], [ 143.117841, -34.703076 ], [ 143.127791, -34.692661 ], [ 143.107243, -34.701466 ], [ 143.111605, -34.687127 ], [ 143.121272, -34.687401 ], [ 143.112525, -34.680819 ], [ 143.092828, -34.701273 ], [ 143.076222, -34.695958 ], [ 143.070763, -34.678380 ], [ 143.054822, -34.698855 ], [ 143.040422, -34.685888 ], [ 143.039468, -34.702611 ], [ 143.029424, -34.691851 ], [ 143.032502, -34.682928 ], [ 143.010179, -34.693658 ], [ 143.017281, -34.673660 ], [ 142.994573, -34.673872 ], [ 142.989313, -34.662579 ], [ 142.975282, -34.670861 ], [ 142.982428, -34.682740 ], [ 142.972708, -34.695207 ], [ 142.959264, -34.664982 ], [ 142.948867, -34.669674 ], [ 142.932606, -34.655515 ], [ 142.922267, -34.656482 ], [ 142.923844, -34.647856 ], [ 142.901526, -34.654958 ], [ 142.893269, -34.665679 ], [ 142.900176, -34.671464 ], [ 142.886815, -34.679808 ], [ 142.886457, -34.672085 ], [ 142.875881, -34.674859 ], [ 142.872151, -34.664119 ], [ 142.860551, -34.665162 ], [ 142.871867, -34.650292 ], [ 142.855209, -34.639522 ], [ 142.868177, -34.627306 ], [ 142.852466, -34.619195 ], [ 142.840679, -34.625752 ], [ 142.838240, -34.613044 ], [ 142.825038, -34.608780 ], [ 142.823118, -34.600251 ], [ 142.818507, -34.612357 ], [ 142.804997, -34.608401 ], [ 142.810259, -34.589093 ], [ 142.797919, -34.597628 ], [ 142.787687, -34.590178 ], [ 142.810104, -34.560855 ], [ 142.791428, -34.546389 ], [ 142.782512, -34.564933 ], [ 142.769991, -34.568882 ], [ 142.784068, -34.580393 ], [ 142.748291, -34.576759 ], [ 142.746897, -34.587779 ], [ 142.763405, -34.590436 ], [ 142.759173, -34.600136 ], [ 142.743192, -34.602811 ], [ 142.723616, -34.592285 ], [ 142.714821, -34.600442 ], [ 142.699980, -34.599380 ], [ 142.703966, -34.613507 ], [ 142.689504, -34.618298 ], [ 142.708789, -34.622664 ], [ 142.700788, -34.624516 ], [ 142.689206, -34.652547 ], [ 142.708607, -34.662167 ], [ 142.710754, -34.675769 ], [ 142.684144, -34.670884 ], [ 142.678899, -34.680848 ], [ 142.691089, -34.701397 ], [ 142.684489, -34.714057 ], [ 142.699406, -34.724474 ], [ 142.678646, -34.722345 ], [ 142.676553, -34.729046 ], [ 142.686657, -34.733929 ], [ 142.678954, -34.739202 ], [ 142.667412, -34.735908 ], [ 142.661412, -34.721707 ], [ 142.637334, -34.735043 ], [ 142.618316, -34.728751 ], [ 142.620498, -34.757128 ], [ 142.646364, -34.763315 ], [ 142.639323, -34.780272 ], [ 142.616821, -34.785499 ], [ 142.567176, -34.766928 ], [ 142.556744, -34.775373 ], [ 142.533560, -34.753067 ], [ 142.524215, -34.759380 ], [ 142.507428, -34.748839 ], [ 142.511671, -34.740888 ], [ 142.499559, -34.739117 ], [ 142.518864, -34.703671 ], [ 142.499060, -34.700026 ], [ 142.514170, -34.690931 ], [ 142.498646, -34.681025 ], [ 142.497078, -34.669376 ], [ 142.479002, -34.673551 ], [ 142.471582, -34.666869 ], [ 142.472261, -34.650003 ], [ 142.483644, -34.636435 ], [ 142.452327, -34.633498 ], [ 142.463988, -34.626677 ], [ 142.459160, -34.616289 ], [ 142.468257, -34.612934 ], [ 142.461307, -34.606565 ], [ 142.471264, -34.592677 ], [ 142.458363, -34.587575 ], [ 142.472705, -34.576695 ], [ 142.467968, -34.564295 ], [ 142.448847, -34.559483 ], [ 142.458747, -34.581498 ], [ 142.451622, -34.584265 ], [ 142.444922, -34.575490 ], [ 142.430178, -34.574793 ], [ 142.426062, -34.562348 ], [ 142.407693, -34.567972 ], [ 142.405558, -34.541508 ], [ 142.390211, -34.549119 ], [ 142.376705, -34.540985 ], [ 142.378183, -34.532145 ], [ 142.367695, -34.530446 ], [ 142.400571, -34.522747 ], [ 142.374942, -34.515284 ], [ 142.394681, -34.493484 ], [ 142.377726, -34.491397 ], [ 142.369722, -34.503819 ], [ 142.359576, -34.498779 ], [ 142.364268, -34.484715 ], [ 142.384163, -34.478091 ], [ 142.379267, -34.466704 ], [ 142.353334, -34.469582 ], [ 142.367936, -34.435415 ], [ 142.359897, -34.431933 ], [ 142.364539, -34.422704 ], [ 142.351836, -34.422288 ], [ 142.360695, -34.411768 ], [ 142.350969, -34.396629 ], [ 142.363897, -34.385680 ], [ 142.373927, -34.388151 ], [ 142.368057, -34.370650 ], [ 142.378269, -34.364750 ], [ 142.363530, -34.362158 ], [ 142.389752, -34.362799 ], [ 142.384459, -34.346915 ], [ 142.397000, -34.343802 ], [ 142.396566, -34.337749 ], [ 142.367747, -34.326908 ], [ 142.330924, -34.339378 ], [ 142.294386, -34.323450 ], [ 142.283873, -34.326567 ], [ 142.284023, -34.310760 ], [ 142.298886, -34.305703 ], [ 142.286132, -34.296536 ], [ 142.273673, -34.304021 ], [ 142.267332, -34.295284 ], [ 142.253057, -34.306139 ], [ 142.235894, -34.306973 ], [ 142.232465, -34.296749 ], [ 142.248845, -34.284983 ], [ 142.248993, -34.265054 ], [ 142.232290, -34.255036 ], [ 142.243579, -34.245768 ], [ 142.244030, -34.232457 ], [ 142.235334, -34.223748 ], [ 142.244111, -34.210930 ], [ 142.236518, -34.203765 ], [ 142.233130, -34.214407 ], [ 142.220713, -34.182046 ], [ 142.198195, -34.183432 ], [ 142.183613, -34.175672 ], [ 142.167293, -34.183487 ], [ 142.166529, -34.171395 ], [ 142.159255, -34.171482 ], [ 142.166629, -34.153134 ], [ 142.148290, -34.148718 ], [ 142.138001, -34.160131 ], [ 142.120113, -34.156891 ], [ 142.119613, -34.174909 ], [ 142.082770, -34.173545 ], [ 142.077538, -34.157346 ], [ 142.065345, -34.150611 ], [ 142.075638, -34.131418 ], [ 142.027564, -34.122981 ], [ 142.023852, -34.115054 ], [ 142.029400, -34.118211 ], [ 142.042265, -34.105298 ], [ 142.037535, -34.099426 ], [ 142.012927, -34.105246 ], [ 142.022207, -34.124950 ], [ 141.977651, -34.112702 ], [ 141.969742, -34.119898 ], [ 141.970437, -34.136107 ], [ 141.945003, -34.119477 ], [ 141.934053, -34.138257 ], [ 141.925629, -34.134605 ], [ 141.929784, -34.125790 ], [ 141.922592, -34.114570 ], [ 141.903505, -34.111150 ], [ 141.884744, -34.114984 ], [ 141.888789, -34.124415 ], [ 141.876627, -34.137418 ], [ 141.867763, -34.128652 ], [ 141.853257, -34.131233 ], [ 141.850694, -34.124307 ], [ 141.841383, -34.132452 ], [ 141.786445, -34.111685 ], [ 141.776886, -34.116878 ], [ 141.777897, -34.101774 ], [ 141.756947, -34.112097 ], [ 141.752623, -34.106242 ], [ 141.761836, -34.097537 ], [ 141.746343, -34.103403 ], [ 141.731459, -34.090957 ], [ 141.725469, -34.094023 ], [ 141.729871, -34.105577 ], [ 141.719012, -34.114894 ], [ 141.708284, -34.096352 ], [ 141.677450, -34.101225 ], [ 141.632653, -34.121484 ], [ 141.627982, -34.145417 ], [ 141.611817, -34.139023 ], [ 141.618538, -34.156287 ], [ 141.604580, -34.149115 ], [ 141.583902, -34.151965 ], [ 141.602959, -34.162254 ], [ 141.589383, -34.177353 ], [ 141.604947, -34.183933 ], [ 141.603285, -34.191228 ], [ 141.589743, -34.186893 ], [ 141.583921, -34.198816 ], [ 141.560468, -34.190900 ], [ 141.547738, -34.200841 ], [ 141.533546, -34.191434 ], [ 141.533863, -34.210697 ], [ 141.510071, -34.216479 ], [ 141.506149, -34.210498 ], [ 141.518577, -34.203159 ], [ 141.506669, -34.190619 ], [ 141.518744, -34.180910 ], [ 141.496794, -34.155523 ], [ 141.465933, -34.165754 ], [ 141.450241, -34.161077 ], [ 141.444539, -34.168015 ], [ 141.432802, -34.159940 ], [ 141.433901, -34.145904 ], [ 141.407404, -34.146400 ], [ 141.408248, -34.127856 ], [ 141.388118, -34.134730 ], [ 141.381587, -34.122143 ], [ 141.369693, -34.120204 ], [ 141.368758, -34.127115 ], [ 141.358972, -34.110723 ], [ 141.348504, -34.112311 ], [ 141.346407, -34.124348 ], [ 141.324937, -34.138782 ], [ 141.325922, -34.126866 ], [ 141.313530, -34.124860 ], [ 141.317451, -34.112413 ], [ 141.300790, -34.113718 ], [ 141.283701, -34.103874 ], [ 141.259566, -34.078134 ], [ 141.242543, -34.087341 ], [ 141.247217, -34.073209 ], [ 141.241808, -34.061315 ], [ 141.228468, -34.073651 ], [ 141.222119, -34.061677 ], [ 141.205907, -34.061723 ], [ 141.187449, -34.079294 ], [ 141.193531, -34.089576 ], [ 141.184951, -34.091951 ], [ 141.174668, -34.073334 ], [ 141.165854, -34.083212 ], [ 141.153670, -34.082118 ], [ 141.153180, -34.068915 ], [ 141.143847, -34.067799 ], [ 141.153443, -34.064189 ], [ 141.153111, -34.054521 ], [ 141.142973, -34.063534 ], [ 141.137307, -34.057561 ], [ 141.120338, -34.064866 ], [ 141.094238, -34.050656 ], [ 141.087257, -34.057173 ], [ 141.097587, -34.070035 ], [ 141.089218, -34.076696 ], [ 141.084910, -34.062288 ], [ 141.071951, -34.062910 ], [ 141.065601, -34.050062 ], [ 141.042463, -34.061101 ], [ 141.043580, -34.043200 ], [ 141.036145, -34.036050 ], [ 141.024324, -34.059906 ], [ 141.001935, -34.039284 ], [ 141.003776, -34.027604 ], [ 141.012366, -34.024736 ], [ 141.002957, -34.022537 ], [ 140.999278, -28.999103 ], [ 148.958308, -28.999064 ], [ 148.976321, -28.976413 ], [ 148.998297, -28.972645 ], [ 149.009223, -28.956919 ], [ 149.032686, -28.955958 ], [ 149.048320, -28.916989 ], [ 149.058652, -28.910358 ], [ 149.063984, -28.888645 ], [ 149.055338, -28.884099 ], [ 149.080061, -28.858362 ], [ 149.080762, -28.841801 ], [ 149.097078, -28.831680 ], [ 149.103225, -28.838124 ], [ 149.112444, -28.829575 ], [ 149.128192, -28.835262 ], [ 149.143444, -28.822215 ], [ 149.139757, -28.807197 ], [ 149.160386, -28.810739 ], [ 149.179183, -28.802996 ], [ 149.192360, -28.780600 ], [ 149.188805, -28.775118 ], [ 149.224974, -28.764462 ], [ 149.246912, -28.738899 ], [ 149.253764, -28.742235 ], [ 149.262342, -28.734297 ], [ 149.269197, -28.743452 ], [ 149.297081, -28.709947 ], [ 149.317964, -28.714058 ], [ 149.329862, -28.698194 ], [ 149.346685, -28.696672 ], [ 149.358975, -28.684330 ], [ 149.387389, -28.695803 ], [ 149.393867, -28.677292 ], [ 149.405469, -28.675241 ], [ 149.423022, -28.655209 ], [ 149.417037, -28.651315 ], [ 149.426129, -28.650136 ], [ 149.432856, -28.635031 ], [ 149.428298, -28.629225 ], [ 149.442976, -28.620323 ], [ 149.439518, -28.612053 ], [ 149.452554, -28.594867 ], [ 149.474862, -28.593894 ], [ 149.481514, -28.582818 ], [ 149.502704, -28.580399 ], [ 149.502977, -28.574351 ], [ 149.513949, -28.581674 ], [ 149.528925, -28.574220 ], [ 149.552587, -28.580137 ], [ 149.568553, -28.571079 ], [ 149.587938, -28.572815 ], [ 149.610654, -28.600880 ], [ 149.625491, -28.593342 ], [ 149.642282, -28.599207 ], [ 149.647886, -28.612110 ], [ 149.655991, -28.615489 ], [ 149.660712, -28.609311 ], [ 149.674008, -28.624156 ], [ 149.666654, -28.631859 ], [ 149.703104, -28.633712 ], [ 149.709917, -28.620299 ], [ 149.703900, -28.616464 ], [ 149.721169, -28.609183 ], [ 149.744970, -28.618388 ], [ 149.754943, -28.609441 ], [ 149.784005, -28.614132 ], [ 149.811439, -28.605773 ], [ 149.819292, -28.615843 ], [ 149.830360, -28.603748 ], [ 149.844852, -28.610477 ], [ 149.862300, -28.602199 ], [ 149.899141, -28.621909 ], [ 149.917404, -28.608056 ], [ 149.936331, -28.610132 ], [ 149.941892, -28.617922 ], [ 149.950561, -28.608040 ], [ 149.976953, -28.613464 ], [ 150.016091, -28.580656 ], [ 150.045836, -28.582399 ], [ 150.048740, -28.589196 ], [ 150.073281, -28.576562 ], [ 150.079904, -28.584396 ], [ 150.085176, -28.575843 ], [ 150.092923, -28.578618 ], [ 150.091932, -28.564239 ], [ 150.110908, -28.570297 ], [ 150.121475, -28.559734 ], [ 150.138555, -28.565316 ], [ 150.152280, -28.550210 ], [ 150.154090, -28.557155 ], [ 150.169233, -28.550587 ], [ 150.171551, -28.563890 ], [ 150.182694, -28.556287 ], [ 150.177890, -28.563474 ], [ 150.186598, -28.565211 ], [ 150.186688, -28.572795 ], [ 150.192465, -28.566742 ], [ 150.212287, -28.574181 ], [ 150.213149, -28.567549 ], [ 150.229074, -28.567687 ], [ 150.230399, -28.555713 ], [ 150.238805, -28.559711 ], [ 150.236053, -28.553810 ], [ 150.289648, -28.537157 ], [ 150.320591, -28.557182 ], [ 150.327556, -28.571045 ], [ 150.351300, -28.575348 ], [ 150.352542, -28.587759 ], [ 150.369675, -28.598511 ], [ 150.363767, -28.607510 ], [ 150.370045, -28.620680 ], [ 150.387493, -28.625354 ], [ 150.387879, -28.633924 ], [ 150.401823, -28.627281 ], [ 150.413973, -28.633892 ], [ 150.415222, -28.650834 ], [ 150.429277, -28.651122 ], [ 150.445551, -28.665141 ], [ 150.460085, -28.668912 ], [ 150.487084, -28.657421 ], [ 150.514810, -28.661759 ], [ 150.525002, -28.654311 ], [ 150.539200, -28.660519 ], [ 150.527008, -28.668879 ], [ 150.544079, -28.671524 ], [ 150.552333, -28.668026 ], [ 150.548167, -28.658494 ], [ 150.554094, -28.653064 ], [ 150.561392, -28.661817 ], [ 150.580641, -28.655465 ], [ 150.600191, -28.670758 ], [ 150.625827, -28.668979 ], [ 150.632541, -28.676572 ], [ 150.673400, -28.650180 ], [ 150.681695, -28.661351 ], [ 150.708625, -28.651951 ], [ 150.728255, -28.634490 ], [ 150.752343, -28.633464 ], [ 150.795757, -28.655236 ], [ 150.818847, -28.657336 ], [ 150.819279, -28.666631 ], [ 150.848417, -28.673119 ], [ 150.874008, -28.693797 ], [ 150.906384, -28.687706 ], [ 150.930908, -28.705519 ], [ 150.938189, -28.730938 ], [ 151.010650, -28.740805 ], [ 151.028277, -28.761415 ], [ 151.028963, -28.770497 ], [ 151.019308, -28.772049 ], [ 151.024763, -28.793127 ], [ 151.041903, -28.799153 ], [ 151.037362, -28.827649 ], [ 151.045321, -28.844482 ], [ 151.054835, -28.849373 ], [ 151.083206, -28.834380 ], [ 151.102759, -28.836369 ], [ 151.104400, -28.844291 ], [ 151.132965, -28.860242 ], [ 151.200196, -28.884349 ], [ 151.208752, -28.901470 ], [ 151.234722, -28.904656 ], [ 151.243908, -28.924297 ], [ 151.274808, -28.938926 ], [ 151.282340, -28.954080 ], [ 151.272148, -28.973172 ], [ 151.282556, -28.980593 ], [ 151.276414, -28.986967 ], [ 151.283956, -29.005871 ], [ 151.271058, -29.030275 ], [ 151.284865, -29.037356 ], [ 151.288861, -29.050251 ], [ 151.275509, -29.077791 ], [ 151.279649, -29.100769 ], [ 151.315471, -29.134499 ], [ 151.308844, -29.147526 ], [ 151.314762, -29.165531 ], [ 151.339310, -29.177266 ], [ 151.393784, -29.177893 ], [ 151.410638, -29.152566 ], [ 151.428307, -29.147477 ], [ 151.451744, -29.126859 ], [ 151.463025, -29.098943 ], [ 151.486066, -29.088818 ], [ 151.502292, -29.070805 ], [ 151.491490, -29.056244 ], [ 151.498230, -29.019909 ], [ 151.536094, -28.980619 ], [ 151.545566, -28.952998 ], [ 151.566806, -28.941731 ], [ 151.577091, -28.945031 ], [ 151.609616, -28.923279 ], [ 151.634688, -28.929234 ], [ 151.644389, -28.916839 ], [ 151.674758, -28.907595 ], [ 151.706536, -28.871784 ], [ 151.733860, -28.871578 ], [ 151.743471, -28.918646 ], [ 151.772735, -28.938251 ], [ 151.770227, -28.955846 ], [ 151.777834, -28.959885 ], [ 151.806394, -28.944636 ], [ 151.813804, -28.959374 ], [ 151.832232, -28.959829 ], [ 151.839557, -28.942665 ], [ 151.837909, -28.916547 ], [ 151.849363, -28.907850 ], [ 151.900358, -28.914966 ], [ 151.916048, -28.929307 ], [ 151.968198, -28.916567 ], [ 151.997593, -28.895483 ], [ 152.001090, -28.909730 ], [ 152.009703, -28.907663 ], [ 152.038126, -28.864696 ], [ 152.036909, -28.851794 ], [ 152.025956, -28.858253 ], [ 152.015064, -28.850626 ], [ 152.017057, -28.838514 ], [ 152.037291, -28.819231 ], [ 152.034743, -28.790710 ], [ 152.041726, -28.778581 ], [ 152.036326, -28.756992 ], [ 152.047714, -28.740329 ], [ 152.042726, -28.731623 ], [ 152.076049, -28.708175 ], [ 152.066079, -28.697454 ], [ 152.066354, -28.680968 ], [ 152.052567, -28.681940 ], [ 152.039150, -28.664448 ], [ 152.010168, -28.664951 ], [ 151.990804, -28.624400 ], [ 151.985979, -28.581498 ], [ 151.957677, -28.563409 ], [ 151.955645, -28.518904 ], [ 151.982893, -28.503395 ], [ 151.988951, -28.525613 ], [ 152.016864, -28.525281 ], [ 152.045672, -28.494966 ], [ 152.067033, -28.485590 ], [ 152.070200, -28.468003 ], [ 152.121134, -28.462669 ], [ 152.160504, -28.433123 ], [ 152.184519, -28.438872 ], [ 152.190266, -28.433948 ], [ 152.217189, -28.449236 ], [ 152.267606, -28.390047 ], [ 152.288432, -28.393151 ], [ 152.309659, -28.363168 ], [ 152.341582, -28.367860 ], [ 152.355946, -28.361197 ], [ 152.386160, -28.368554 ], [ 152.417259, -28.333089 ], [ 152.409517, -28.315734 ], [ 152.414572, -28.298101 ], [ 152.444831, -28.298822 ], [ 152.442877, -28.290442 ], [ 152.463586, -28.259373 ], [ 152.508643, -28.249249 ], [ 152.534221, -28.262631 ], [ 152.525981, -28.306250 ], [ 152.548142, -28.321019 ], [ 152.555508, -28.316663 ], [ 152.556437, -28.323355 ], [ 152.568635, -28.323575 ], [ 152.579242, -28.338976 ], [ 152.601700, -28.307381 ], [ 152.600303, -28.283836 ], [ 152.614517, -28.269555 ], [ 152.624513, -28.298204 ], [ 152.638288, -28.310997 ], [ 152.667228, -28.311752 ], [ 152.679339, -28.330416 ], [ 152.722880, -28.344096 ], [ 152.751062, -28.363914 ], [ 152.775455, -28.346625 ], [ 152.804226, -28.353594 ], [ 152.831138, -28.320265 ], [ 152.880013, -28.309607 ], [ 152.933856, -28.338311 ], [ 152.972614, -28.331853 ], [ 153.008199, -28.341717 ], [ 153.046060, -28.339455 ], [ 153.108829, -28.357543 ], [ 153.129890, -28.330665 ], [ 153.124665, -28.318641 ], [ 153.143405, -28.311993 ], [ 153.154794, -28.295691 ], [ 153.168505, -28.294163 ], [ 153.161067, -28.279824 ], [ 153.174911, -28.274777 ], [ 153.177921, -28.247520 ], [ 153.231833, -28.265110 ], [ 153.245848, -28.245832 ], [ 153.262409, -28.246788 ], [ 153.278912, -28.233636 ], [ 153.330213, -28.237064 ], [ 153.339580, -28.250311 ], [ 153.361237, -28.248350 ], [ 153.389527, -28.234935 ], [ 153.406610, -28.210415 ], [ 153.435600, -28.187207 ], [ 153.457134, -28.180540 ], [ 153.476931, -28.157020 ], [ 153.534643, -28.177630 ], [ 153.542419, -28.168567 ], [ 153.556101, -28.168449 ], [ 153.544390, -28.169618 ], [ 153.546326, -28.184622 ], [ 153.538953, -28.183100 ], [ 153.545506, -28.183393 ], [ 153.542434, -28.178038 ], [ 153.528129, -28.190800 ], [ 153.508776, -28.190014 ], [ 153.511639, -28.201256 ], [ 153.507945, -28.194172 ], [ 153.493754, -28.207082 ], [ 153.500088, -28.205997 ], [ 153.500738, -28.213867 ], [ 153.494688, -28.220227 ], [ 153.518655, -28.221669 ], [ 153.509758, -28.217616 ], [ 153.517015, -28.193591 ], [ 153.535176, -28.191657 ], [ 153.537846, -28.183815 ], [ 153.542877, -28.194353 ], [ 153.554370, -28.192899 ], [ 153.561819, -28.208462 ], [ 153.554756, -28.209336 ], [ 153.559427, -28.216900 ], [ 153.541705, -28.234473 ], [ 153.552827, -28.234553 ], [ 153.539410, -28.236277 ], [ 153.541272, -28.243385 ], [ 153.554731, -28.236006 ], [ 153.565200, -28.204997 ], [ 153.549948, -28.171380 ], [ 153.556465, -28.170067 ], [ 153.571431, -28.199438 ], [ 153.568614, -28.238466 ], [ 153.586296, -28.258206 ], [ 153.571396, -28.327130 ], [ 153.580705, -28.362971 ], [ 153.555192, -28.452871 ], [ 153.553350, -28.531179 ], [ 153.568497, -28.589701 ], [ 153.590668, -28.624827 ], [ 153.618008, -28.642001 ], [ 153.638727, -28.636102 ], [ 153.617653, -28.678142 ], [ 153.618866, -28.722255 ], [ 153.595813, -28.775189 ], [ 153.608834, -28.843251 ], [ 153.592039, -28.875592 ], [ 153.577043, -28.868449 ], [ 153.574869, -28.840165 ], [ 153.563443, -28.847083 ], [ 153.571057, -28.849291 ], [ 153.576789, -28.869838 ], [ 153.526945, -28.872891 ], [ 153.570746, -28.885070 ], [ 153.572912, -28.876931 ], [ 153.590086, -28.877612 ], [ 153.539511, -28.923112 ], [ 153.463999, -29.018714 ], [ 153.432800, -29.100830 ], [ 153.435275, -29.113103 ], [ 153.451395, -29.118875 ], [ 153.448568, -29.133389 ], [ 153.456659, -29.140191 ], [ 153.400519, -29.201378 ], [ 153.344322, -29.296579 ], [ 153.344441, -29.344446 ], [ 153.353928, -29.357709 ], [ 153.362896, -29.355398 ], [ 153.376682, -29.365596 ], [ 153.363282, -29.421572 ], [ 153.372817, -29.425122 ], [ 153.363994, -29.430211 ], [ 153.372774, -29.440342 ], [ 153.358370, -29.466503 ], [ 153.368842, -29.484052 ], [ 153.358735, -29.496081 ], [ 153.362578, -29.525400 ], [ 153.349468, -29.539915 ], [ 153.332441, -29.586645 ], [ 153.334558, -29.604816 ], [ 153.342784, -29.608281 ], [ 153.326894, -29.632866 ], [ 153.320590, -29.661397 ], [ 153.333974, -29.674551 ], [ 153.305161, -29.715407 ], [ 153.291992, -29.753621 ], [ 153.303944, -29.774537 ], [ 153.288043, -29.798317 ], [ 153.294417, -29.825080 ], [ 153.282471, -29.833830 ], [ 153.267648, -29.865250 ], [ 153.267554, -29.885679 ], [ 153.276875, -29.893112 ], [ 153.272771, -29.916864 ], [ 153.261147, -29.930649 ], [ 153.260047, -29.952097 ], [ 153.233366, -29.979753 ], [ 153.197084, -30.040577 ], [ 153.196340, -30.054904 ], [ 153.206343, -30.058314 ], [ 153.207861, -30.068526 ], [ 153.199641, -30.103902 ], [ 153.213714, -30.109724 ], [ 153.199564, -30.141272 ], [ 153.206858, -30.156386 ], [ 153.166987, -30.198029 ], [ 153.140185, -30.255886 ], [ 153.147838, -30.277603 ], [ 153.139825, -30.299669 ], [ 153.154572, -30.305148 ], [ 153.142501, -30.303102 ], [ 153.140125, -30.309882 ], [ 153.152929, -30.309492 ], [ 153.136083, -30.315935 ], [ 153.113451, -30.340617 ], [ 153.104516, -30.376997 ], [ 153.075807, -30.410593 ], [ 153.076319, -30.431890 ], [ 153.045956, -30.467008 ], [ 153.031711, -30.499017 ], [ 153.025013, -30.533623 ], [ 153.029590, -30.546964 ], [ 153.017103, -30.564111 ], [ 153.010084, -30.607866 ], [ 153.020362, -30.647583 ], [ 152.997491, -30.678914 ], [ 152.988454, -30.731967 ], [ 153.001661, -30.748638 ], [ 152.997264, -30.786115 ], [ 153.013744, -30.860782 ], [ 153.037184, -30.882482 ], [ 153.060289, -30.886687 ], [ 153.069048, -30.881776 ], [ 153.066370, -30.875077 ], [ 153.075491, -30.877935 ], [ 153.088672, -30.911293 ], [ 153.090540, -30.922062 ], [ 153.056592, -30.959548 ], [ 153.038958, -31.003181 ], [ 153.041007, -31.041426 ], [ 153.054389, -31.053706 ], [ 153.065814, -31.046969 ], [ 153.064737, -31.056619 ], [ 153.053565, -31.069897 ], [ 153.055280, -31.079436 ], [ 153.006635, -31.123408 ], [ 152.977360, -31.171432 ], [ 152.976390, -31.184027 ], [ 152.984243, -31.186655 ], [ 152.966471, -31.212969 ], [ 152.960197, -31.242051 ], [ 152.971160, -31.252606 ], [ 152.964537, -31.306340 ], [ 152.976418, -31.314141 ], [ 152.937730, -31.360849 ], [ 152.914979, -31.409392 ], [ 152.937829, -31.475760 ], [ 152.876935, -31.529605 ], [ 152.845329, -31.572928 ], [ 152.840123, -31.589380 ], [ 152.848288, -31.601575 ], [ 152.833993, -31.632314 ], [ 152.849523, -31.641347 ], [ 152.804917, -31.681860 ], [ 152.792759, -31.710722 ], [ 152.805630, -31.730320 ], [ 152.763950, -31.768836 ], [ 152.736092, -31.811104 ], [ 152.736650, -31.836518 ], [ 152.754557, -31.845077 ], [ 152.690985, -31.877659 ], [ 152.608794, -31.947140 ], [ 152.565872, -32.004019 ], [ 152.569525, -32.009961 ], [ 152.547924, -32.028103 ], [ 152.541556, -32.046409 ], [ 152.547890, -32.073587 ], [ 152.512818, -32.116957 ], [ 152.505650, -32.145060 ], [ 152.508886, -32.172395 ], [ 152.536228, -32.182798 ], [ 152.543249, -32.201587 ], [ 152.570872, -32.215633 ], [ 152.566357, -32.229514 ], [ 152.536688, -32.259276 ], [ 152.523695, -32.294410 ], [ 152.523441, -32.311726 ], [ 152.536380, -32.328984 ], [ 152.551690, -32.334610 ], [ 152.534505, -32.355650 ], [ 152.533712, -32.379770 ], [ 152.522735, -32.388081 ], [ 152.516316, -32.408505 ], [ 152.519552, -32.428291 ], [ 152.537527, -32.433604 ], [ 152.539907, -32.443464 ], [ 152.418854, -32.482549 ], [ 152.335630, -32.527079 ], [ 152.302933, -32.559295 ], [ 152.285026, -32.594775 ], [ 152.231255, -32.615845 ], [ 152.195678, -32.647922 ], [ 152.186671, -32.685393 ], [ 152.191883, -32.694347 ], [ 152.208707, -32.695583 ], [ 152.205043, -32.701220 ], [ 152.191753, -32.700480 ], [ 152.173103, -32.678340 ], [ 152.145532, -32.677430 ], [ 152.129490, -32.685677 ], [ 152.127617, -32.676114 ], [ 152.137652, -32.670980 ], [ 152.121898, -32.657751 ], [ 152.114385, -32.681105 ], [ 152.068787, -32.689564 ], [ 152.050357, -32.676504 ], [ 152.061384, -32.669615 ], [ 152.061467, -32.650000 ], [ 152.043790, -32.660358 ], [ 152.042612, -32.679646 ], [ 152.029803, -32.664021 ], [ 151.994013, -32.668876 ], [ 151.991680, -32.659583 ], [ 151.984275, -32.664883 ], [ 151.968364, -32.654379 ], [ 151.963409, -32.671408 ], [ 151.957776, -32.666832 ], [ 151.956364, -32.674973 ], [ 151.944606, -32.676772 ], [ 151.954872, -32.677334 ], [ 151.960137, -32.697447 ], [ 151.977628, -32.687684 ], [ 151.978206, -32.705855 ], [ 151.969262, -32.714807 ], [ 151.944489, -32.717050 ], [ 151.946428, -32.733945 ], [ 151.936455, -32.736885 ], [ 151.987309, -32.725755 ], [ 151.988084, -32.719213 ], [ 151.997967, -32.727457 ], [ 152.021508, -32.720380 ], [ 152.048507, -32.728703 ], [ 152.058568, -32.716154 ], [ 152.059998, -32.735879 ], [ 152.069545, -32.735976 ], [ 152.071941, -32.726715 ], [ 152.059497, -32.710303 ], [ 152.063803, -32.698469 ], [ 152.091073, -32.728176 ], [ 152.102071, -32.726871 ], [ 152.103643, -32.716227 ], [ 152.145766, -32.719509 ], [ 152.161846, -32.709604 ], [ 152.176160, -32.719839 ], [ 152.187501, -32.711553 ], [ 152.186850, -32.741132 ], [ 152.170981, -32.744437 ], [ 152.172615, -32.761656 ], [ 152.121561, -32.769243 ], [ 152.116236, -32.777911 ], [ 152.123304, -32.784799 ], [ 152.111698, -32.787974 ], [ 152.115602, -32.792876 ], [ 152.053106, -32.785310 ], [ 151.885443, -32.838213 ], [ 151.801417, -32.884920 ], [ 151.786574, -32.919935 ], [ 151.777611, -32.911426 ], [ 151.793943, -32.882876 ], [ 151.783797, -32.884869 ], [ 151.774851, -32.902307 ], [ 151.774609, -32.889578 ], [ 151.733832, -32.877639 ], [ 151.768029, -32.894878 ], [ 151.776972, -32.923560 ], [ 151.770255, -32.916329 ], [ 151.764245, -32.922065 ], [ 151.761465, -32.907660 ], [ 151.763509, -32.924458 ], [ 151.785514, -32.925525 ], [ 151.803968, -32.915741 ], [ 151.737709, -32.963353 ], [ 151.726931, -32.978167 ], [ 151.728705, -33.010750 ], [ 151.668856, -33.051945 ], [ 151.658193, -33.070693 ], [ 151.661120, -33.083830 ], [ 151.640292, -33.084991 ], [ 151.641187, -33.064539 ], [ 151.649545, -33.062843 ], [ 151.638894, -33.055128 ], [ 151.651868, -33.053377 ], [ 151.657496, -33.036095 ], [ 151.633459, -33.028544 ], [ 151.628274, -33.015497 ], [ 151.640583, -33.003987 ], [ 151.629554, -32.993874 ], [ 151.643250, -32.984246 ], [ 151.643898, -32.974847 ], [ 151.616572, -32.962553 ], [ 151.608070, -32.966099 ], [ 151.621060, -32.976261 ], [ 151.616745, -33.005668 ], [ 151.589056, -32.989255 ], [ 151.584081, -32.996124 ], [ 151.592570, -32.998229 ], [ 151.589852, -33.004481 ], [ 151.597706, -32.997245 ], [ 151.595758, -33.010552 ], [ 151.619654, -33.047954 ], [ 151.613787, -33.050514 ], [ 151.593563, -33.026737 ], [ 151.577324, -33.032883 ], [ 151.600043, -33.041140 ], [ 151.594665, -33.043292 ], [ 151.600064, -33.059344 ], [ 151.585937, -33.047209 ], [ 151.581997, -33.056642 ], [ 151.588520, -33.059987 ], [ 151.580757, -33.068462 ], [ 151.611159, -33.072148 ], [ 151.613787, -33.082133 ], [ 151.607169, -33.085181 ], [ 151.594108, -33.071742 ], [ 151.571749, -33.075132 ], [ 151.549206, -33.062517 ], [ 151.550349, -33.073672 ], [ 151.541549, -33.072959 ], [ 151.525678, -33.090967 ], [ 151.512457, -33.090022 ], [ 151.509516, -33.102519 ], [ 151.537841, -33.104583 ], [ 151.548437, -33.088561 ], [ 151.565141, -33.100586 ], [ 151.568733, -33.114279 ], [ 151.550304, -33.114624 ], [ 151.552476, -33.120858 ], [ 151.538059, -33.114729 ], [ 151.541834, -33.126061 ], [ 151.525946, -33.130739 ], [ 151.522107, -33.124081 ], [ 151.509848, -33.137719 ], [ 151.527274, -33.139059 ], [ 151.522881, -33.147104 ], [ 151.530182, -33.160823 ], [ 151.541180, -33.143798 ], [ 151.544865, -33.157420 ], [ 151.567870, -33.175275 ], [ 151.571936, -33.154804 ], [ 151.552814, -33.145742 ], [ 151.557224, -33.131612 ], [ 151.566724, -33.136290 ], [ 151.583901, -33.122911 ], [ 151.581410, -33.102652 ], [ 151.590516, -33.120140 ], [ 151.584364, -33.126462 ], [ 151.591254, -33.131842 ], [ 151.587921, -33.149910 ], [ 151.597195, -33.161559 ], [ 151.603313, -33.131872 ], [ 151.614959, -33.124545 ], [ 151.617358, -33.100809 ], [ 151.627493, -33.093656 ], [ 151.636071, -33.069334 ], [ 151.640623, -33.095894 ], [ 151.654694, -33.093899 ], [ 151.642990, -33.095275 ], [ 151.642009, -33.087240 ], [ 151.657848, -33.092206 ], [ 151.665749, -33.086915 ], [ 151.647040, -33.111626 ], [ 151.653510, -33.120664 ], [ 151.647489, -33.121138 ], [ 151.643037, -33.140524 ], [ 151.630001, -33.154232 ], [ 151.638668, -33.175835 ], [ 151.622819, -33.188011 ], [ 151.625142, -33.198030 ], [ 151.599754, -33.210699 ], [ 151.566629, -33.244307 ], [ 151.563591, -33.271727 ], [ 151.579025, -33.282227 ], [ 151.525332, -33.314954 ], [ 151.503129, -33.343895 ], [ 151.502808, -33.326908 ], [ 151.545637, -33.277746 ], [ 151.537339, -33.266962 ], [ 151.520419, -33.262676 ], [ 151.539206, -33.261537 ], [ 151.553239, -33.244192 ], [ 151.557901, -33.252009 ], [ 151.562175, -33.237346 ], [ 151.547632, -33.233061 ], [ 151.534677, -33.239427 ], [ 151.527336, -33.220286 ], [ 151.508584, -33.222659 ], [ 151.519037, -33.261667 ], [ 151.494578, -33.263796 ], [ 151.488073, -33.280616 ], [ 151.475091, -33.282436 ], [ 151.465006, -33.301936 ], [ 151.452510, -33.298624 ], [ 151.441615, -33.307060 ], [ 151.449002, -33.319884 ], [ 151.468581, -33.328497 ], [ 151.441795, -33.329918 ], [ 151.439052, -33.341660 ], [ 151.448791, -33.354628 ], [ 151.474091, -33.365857 ], [ 151.494014, -33.336508 ], [ 151.504234, -33.345265 ], [ 151.504443, -33.362511 ], [ 151.487366, -33.374543 ], [ 151.485003, -33.398629 ], [ 151.444997, -33.435403 ], [ 151.452589, -33.451147 ], [ 151.435481, -33.468021 ], [ 151.446881, -33.486472 ], [ 151.427905, -33.494641 ], [ 151.417169, -33.523284 ], [ 151.364297, -33.530711 ], [ 151.345402, -33.547164 ], [ 151.335924, -33.522342 ], [ 151.346747, -33.527254 ], [ 151.363400, -33.520863 ], [ 151.347599, -33.506378 ], [ 151.350263, -33.515864 ], [ 151.336359, -33.515189 ], [ 151.312461, -33.530086 ], [ 151.309740, -33.554623 ], [ 151.273893, -33.550947 ], [ 151.258662, -33.570636 ], [ 151.245917, -33.555585 ], [ 151.255013, -33.535301 ], [ 151.236771, -33.528081 ], [ 151.237267, -33.510917 ], [ 151.247042, -33.508309 ], [ 151.245737, -33.499693 ], [ 151.259087, -33.499089 ], [ 151.265719, -33.484947 ], [ 151.231401, -33.507395 ], [ 151.227008, -33.530454 ], [ 151.226676, -33.521859 ], [ 151.210233, -33.521154 ], [ 151.197561, -33.495174 ], [ 151.206701, -33.481240 ], [ 151.212717, -33.486223 ], [ 151.214263, -33.476384 ], [ 151.237683, -33.475590 ], [ 151.237478, -33.453752 ], [ 151.229342, -33.456264 ], [ 151.232011, -33.473148 ], [ 151.214715, -33.470455 ], [ 151.191913, -33.488793 ], [ 151.193563, -33.512028 ], [ 151.204685, -33.520701 ], [ 151.199445, -33.536131 ], [ 151.181942, -33.500830 ], [ 151.170437, -33.502055 ], [ 151.164381, -33.515279 ], [ 151.159804, -33.511002 ], [ 151.162607, -33.493346 ], [ 151.153503, -33.486741 ], [ 151.162184, -33.470601 ], [ 151.172142, -33.469454 ], [ 151.153539, -33.455007 ], [ 151.172882, -33.438060 ], [ 151.166434, -33.426707 ], [ 151.145703, -33.447874 ], [ 151.148157, -33.461168 ], [ 151.138847, -33.469669 ], [ 151.114844, -33.463841 ], [ 151.097050, -33.480337 ], [ 151.079385, -33.445388 ], [ 151.072760, -33.449154 ], [ 151.074647, -33.459803 ], [ 151.069064, -33.456876 ], [ 151.076489, -33.461394 ], [ 151.079761, -33.448845 ], [ 151.085611, -33.475512 ], [ 151.102507, -33.484221 ], [ 151.122384, -33.466638 ], [ 151.138404, -33.475394 ], [ 151.155530, -33.467097 ], [ 151.143281, -33.490999 ], [ 151.131294, -33.491264 ], [ 151.155275, -33.498950 ], [ 151.153931, -33.523913 ], [ 151.140763, -33.524378 ], [ 151.133765, -33.513375 ], [ 151.125504, -33.517763 ], [ 151.121259, -33.510594 ], [ 151.130175, -33.505090 ], [ 151.111449, -33.507042 ], [ 151.121711, -33.521528 ], [ 151.131303, -33.519283 ], [ 151.126370, -33.531096 ], [ 151.135789, -33.522252 ], [ 151.143350, -33.529813 ], [ 151.137583, -33.541965 ], [ 151.127088, -33.537627 ], [ 151.116951, -33.546207 ], [ 151.128267, -33.541631 ], [ 151.138763, -33.550485 ], [ 151.144903, -33.542073 ], [ 151.151460, -33.561950 ], [ 151.130975, -33.567866 ], [ 151.131477, -33.578359 ], [ 151.120054, -33.586003 ], [ 151.102778, -33.587778 ], [ 151.116067, -33.587465 ], [ 151.120785, -33.599548 ], [ 151.125734, -33.600316 ], [ 151.118642, -33.590379 ], [ 151.123430, -33.585845 ], [ 151.144343, -33.587085 ], [ 151.133713, -33.570960 ], [ 151.150150, -33.568554 ], [ 151.162249, -33.575775 ], [ 151.151753, -33.551425 ], [ 151.169581, -33.558510 ], [ 151.148863, -33.536804 ], [ 151.170059, -33.538633 ], [ 151.164184, -33.529131 ], [ 151.175085, -33.514246 ], [ 151.186148, -33.536773 ], [ 151.199940, -33.541837 ], [ 151.198530, -33.549974 ], [ 151.225898, -33.547030 ], [ 151.228985, -33.541529 ], [ 151.202188, -33.544055 ], [ 151.231422, -33.538989 ], [ 151.221956, -33.569449 ], [ 151.211241, -33.567209 ], [ 151.212894, -33.572681 ], [ 151.224131, -33.574986 ], [ 151.231023, -33.561429 ], [ 151.247080, -33.579071 ], [ 151.232759, -33.594043 ], [ 151.186312, -33.592116 ], [ 151.209258, -33.594065 ], [ 151.213153, -33.607756 ], [ 151.163926, -33.625865 ], [ 151.170368, -33.629078 ], [ 151.158467, -33.641126 ], [ 151.162978, -33.646504 ], [ 151.149449, -33.655463 ], [ 151.158845, -33.652388 ], [ 151.159690, -33.660497 ], [ 151.173247, -33.626361 ], [ 151.218503, -33.609099 ], [ 151.228875, -33.618176 ], [ 151.219376, -33.599658 ], [ 151.236764, -33.602641 ], [ 151.243540, -33.594445 ], [ 151.256728, -33.605445 ], [ 151.251948, -33.598074 ], [ 151.262623, -33.597718 ], [ 151.250085, -33.588022 ], [ 151.273011, -33.588959 ], [ 151.283609, -33.572979 ], [ 151.292976, -33.571875 ], [ 151.310837, -33.579569 ], [ 151.292518, -33.605329 ], [ 151.304428, -33.603191 ], [ 151.302857, -33.620541 ], [ 151.282910, -33.621850 ], [ 151.290538, -33.628413 ], [ 151.270419, -33.631536 ], [ 151.282663, -33.636655 ], [ 151.269812, -33.656249 ], [ 151.284916, -33.644351 ], [ 151.304603, -33.660531 ], [ 151.301046, -33.667283 ], [ 151.312041, -33.666731 ], [ 151.301965, -33.651961 ], [ 151.309411, -33.639235 ], [ 151.304670, -33.635343 ], [ 151.314897, -33.631082 ], [ 151.316085, -33.614179 ], [ 151.332148, -33.623364 ], [ 151.315979, -33.601569 ], [ 151.322838, -33.579441 ], [ 151.335315, -33.582332 ], [ 151.325275, -33.597025 ], [ 151.343021, -33.624508 ], [ 151.309786, -33.686350 ], [ 151.315268, -33.696384 ], [ 151.310084, -33.703966 ], [ 151.307770, -33.703902 ], [ 151.300198, -33.727048 ], [ 151.317714, -33.741980 ], [ 151.291375, -33.746666 ], [ 151.303191, -33.746821 ], [ 151.297447, -33.753568 ], [ 151.302525, -33.768177 ], [ 151.293171, -33.773222 ], [ 151.295954, -33.781772 ], [ 151.287866, -33.791943 ], [ 151.307405, -33.807083 ], [ 151.301448, -33.823391 ], [ 151.285578, -33.818900 ], [ 151.291085, -33.808050 ], [ 151.282571, -33.809236 ], [ 151.281754, -33.798739 ], [ 151.265818, -33.798401 ], [ 151.275120, -33.810006 ], [ 151.261106, -33.817937 ], [ 151.250481, -33.800292 ], [ 151.235145, -33.803407 ], [ 151.230781, -33.772720 ], [ 151.224654, -33.783754 ], [ 151.204366, -33.772481 ], [ 151.213378, -33.784277 ], [ 151.232505, -33.787491 ], [ 151.214736, -33.789889 ], [ 151.222836, -33.794260 ], [ 151.217667, -33.797279 ], [ 151.230871, -33.795676 ], [ 151.230544, -33.802375 ], [ 151.217526, -33.805385 ], [ 151.230558, -33.805497 ], [ 151.232130, -33.813652 ], [ 151.219385, -33.818789 ], [ 151.238973, -33.816961 ], [ 151.235118, -33.811573 ], [ 151.245898, -33.803343 ], [ 151.252506, -33.827195 ], [ 151.268876, -33.827056 ], [ 151.254319, -33.844043 ], [ 151.246155, -33.842673 ], [ 151.246701, -33.853448 ], [ 151.232521, -33.836312 ], [ 151.232899, -33.848749 ], [ 151.224781, -33.839354 ], [ 151.224854, -33.846640 ], [ 151.215204, -33.841088 ], [ 151.218865, -33.852803 ], [ 151.207956, -33.844141 ], [ 151.203597, -33.850528 ], [ 151.199094, -33.841172 ], [ 151.192949, -33.847731 ], [ 151.189009, -33.833486 ], [ 151.187598, -33.843118 ], [ 151.181118, -33.842257 ], [ 151.181633, -33.829520 ], [ 151.173094, -33.828188 ], [ 151.168980, -33.836077 ], [ 151.152033, -33.821841 ], [ 151.145874, -33.828989 ], [ 151.145550, -33.824079 ] ], [ [ 151.145228, -33.819212 ], [ 151.144157, -33.802992 ], [ 151.143724, -33.816767 ], [ 151.136883, -33.815139 ], [ 151.145228, -33.819212 ] ], [ [ 151.306067, -33.703855 ], [ 151.297748, -33.703626 ], [ 151.293722, -33.714532 ], [ 151.281190, -33.708689 ], [ 151.269693, -33.714981 ], [ 151.274725, -33.723664 ], [ 151.282554, -33.713518 ], [ 151.293206, -33.721428 ], [ 151.299954, -33.704976 ], [ 151.306067, -33.703855 ] ], [ [ 151.696572, -32.844091 ], [ 151.696455, -32.832942 ], [ 151.726219, -32.838129 ], [ 151.728160, -32.846910 ], [ 151.746513, -32.853629 ], [ 151.773765, -32.856276 ], [ 151.783752, -32.884307 ], [ 151.794071, -32.880601 ], [ 151.792438, -32.856892 ], [ 151.818614, -32.830965 ], [ 151.808691, -32.820564 ], [ 151.783973, -32.820293 ], [ 151.770283, -32.828355 ], [ 151.768297, -32.852278 ], [ 151.756742, -32.852628 ], [ 151.727293, -32.835469 ], [ 151.685247, -32.824087 ], [ 151.696572, -32.844091 ] ], [ [ 151.700776, -32.851517 ], [ 151.711837, -32.871054 ], [ 151.732806, -32.879605 ], [ 151.700776, -32.851517 ] ], [ [ 151.585876, -33.207801 ], [ 151.577003, -33.196558 ], [ 151.557077, -33.197317 ], [ 151.563648, -33.207493 ], [ 151.554302, -33.227804 ], [ 151.568557, -33.232948 ], [ 151.585876, -33.207801 ] ], [ [ 151.455178, -33.417566 ], [ 151.443990, -33.423311 ], [ 151.448047, -33.429788 ], [ 151.455178, -33.417566 ] ], [ [ 151.435641, -33.456501 ], [ 151.422558, -33.460044 ], [ 151.429533, -33.463040 ], [ 151.425744, -33.471373 ], [ 151.435641, -33.456501 ] ], [ [ 151.382814, -33.471893 ], [ 151.365287, -33.477195 ], [ 151.373431, -33.490622 ], [ 151.352561, -33.488875 ], [ 151.335922, -33.474252 ], [ 151.359859, -33.469491 ], [ 151.353753, -33.459686 ], [ 151.369466, -33.438742 ], [ 151.351264, -33.445212 ], [ 151.345341, -33.440610 ], [ 151.341916, -33.450655 ], [ 151.338695, -33.429917 ], [ 151.318424, -33.431432 ], [ 151.332110, -33.436342 ], [ 151.328932, -33.451560 ], [ 151.318610, -33.451542 ], [ 151.313467, -33.460629 ], [ 151.324561, -33.483225 ], [ 151.336551, -33.484434 ], [ 151.333613, -33.502023 ], [ 151.344635, -33.507517 ], [ 151.352265, -33.501627 ], [ 151.341328, -33.489082 ], [ 151.352491, -33.501436 ], [ 151.358572, -33.489780 ], [ 151.369910, -33.493748 ], [ 151.366009, -33.502470 ], [ 151.377349, -33.499620 ], [ 151.382048, -33.490067 ], [ 151.372977, -33.486403 ], [ 151.382814, -33.471893 ] ], [ [ 151.316571, -33.486321 ], [ 151.323983, -33.482929 ], [ 151.307118, -33.467896 ], [ 151.304525, -33.481579 ], [ 151.316571, -33.486321 ] ], [ [ 151.033594, -33.984756 ], [ 151.032810, -33.992545 ], [ 151.066072, -33.991887 ], [ 151.039851, -34.005495 ], [ 151.048829, -34.020580 ], [ 151.051443, -34.016762 ], [ 151.046488, -34.007610 ], [ 151.058809, -34.008153 ], [ 151.059507, -33.998177 ], [ 151.069702, -33.995968 ], [ 151.072161, -34.006090 ], [ 151.075292, -33.997841 ], [ 151.089410, -33.997472 ], [ 151.077713, -34.012580 ], [ 151.090471, -34.011887 ], [ 151.094428, -33.997849 ], [ 151.097649, -34.005821 ], [ 151.109528, -34.006689 ], [ 151.115510, -33.997327 ], [ 151.102494, -34.000906 ], [ 151.103798, -33.989403 ], [ 151.086437, -33.990453 ], [ 151.085403, -33.992662 ], [ 151.071663, -33.994262 ], [ 151.074759, -33.984036 ], [ 151.054461, -33.985123 ], [ 151.061823, -33.975238 ], [ 151.049359, -33.980172 ], [ 151.052862, -33.991004 ], [ 151.036530, -33.990931 ], [ 151.033594, -33.984756 ] ], [ [ 151.033626, -33.984447 ], [ 151.046513, -33.970533 ], [ 151.044672, -33.947705 ], [ 151.044340, -33.970126 ], [ 151.024802, -33.977307 ], [ 151.022601, -33.964096 ], [ 151.015331, -33.982597 ], [ 151.034336, -33.977395 ], [ 151.033626, -33.984447 ] ], [ [ 149.399284, -35.319175 ], [ 149.394790, -35.303157 ], [ 149.361948, -35.308998 ], [ 149.341384, -35.286648 ], [ 149.322394, -35.286708 ], [ 149.315286, -35.276286 ], [ 149.272048, -35.273644 ], [ 149.273132, -35.259287 ], [ 149.234884, -35.242822 ], [ 149.246790, -35.229217 ], [ 149.238597, -35.222127 ], [ 149.214063, -35.219507 ], [ 149.204883, -35.229549 ], [ 149.208568, -35.211501 ], [ 149.189701, -35.203308 ], [ 149.197037, -35.185499 ], [ 149.183629, -35.175618 ], [ 149.189097, -35.165677 ], [ 149.167696, -35.159881 ], [ 149.164312, -35.142046 ], [ 149.146775, -35.144856 ], [ 149.149637, -35.138669 ], [ 149.138600, -35.135257 ], [ 149.138819, -35.128466 ], [ 149.120902, -35.124517 ], [ 148.807854, -35.309647 ], [ 148.793247, -35.339156 ], [ 148.808702, -35.382373 ], [ 148.795719, -35.392920 ], [ 148.796119, -35.406549 ], [ 148.785764, -35.408748 ], [ 148.788868, -35.426382 ], [ 148.767058, -35.465405 ], [ 148.774354, -35.486003 ], [ 148.762675, -35.495505 ], [ 148.772364, -35.529329 ], [ 148.769231, -35.544096 ], [ 148.778231, -35.558852 ], [ 148.773039, -35.568157 ], [ 148.788758, -35.588179 ], [ 148.768473, -35.603186 ], [ 148.783462, -35.628342 ], [ 148.767495, -35.647323 ], [ 148.798434, -35.666492 ], [ 148.791182, -35.703449 ], [ 148.822423, -35.720900 ], [ 148.835715, -35.741884 ], [ 148.856132, -35.753518 ], [ 148.855652, -35.760874 ], [ 148.872491, -35.721422 ], [ 148.877693, -35.714936 ], [ 148.886633, -35.719136 ], [ 148.894087, -35.751288 ], [ 148.903348, -35.757798 ], [ 148.894887, -35.771654 ], [ 148.897776, -35.794650 ], [ 148.886623, -35.810063 ], [ 148.907065, -35.829563 ], [ 148.909367, -35.853065 ], [ 148.959133, -35.895456 ], [ 149.012198, -35.899697 ], [ 149.048811, -35.920410 ], [ 149.064408, -35.874932 ], [ 149.095682, -35.845716 ], [ 149.093517, -35.824221 ], [ 149.101481, -35.803698 ], [ 149.090716, -35.765600 ], [ 149.109483, -35.696640 ], [ 149.095379, -35.679285 ], [ 149.097495, -35.647313 ], [ 149.087612, -35.639697 ], [ 149.078043, -35.586127 ], [ 149.084514, -35.580594 ], [ 149.142510, -35.592570 ], [ 149.131376, -35.554173 ], [ 149.151279, -35.506926 ], [ 149.135550, -35.454422 ], [ 149.155134, -35.436628 ], [ 149.139052, -35.432543 ], [ 149.146586, -35.414836 ], [ 149.207546, -35.345305 ], [ 149.254815, -35.330079 ], [ 149.336502, -35.339914 ], [ 149.352134, -35.351317 ], [ 149.399284, -35.319175 ] ] ], [ [ [ 152.328627, -32.617406 ], [ 152.315824, -32.617576 ], [ 152.319219, -32.627907 ], [ 152.312026, -32.626782 ], [ 152.305258, -32.607247 ], [ 152.328627, -32.617406 ] ] ], [ [ [ 152.228700, -32.687163 ], [ 152.223921, -32.692407 ], [ 152.222668, -32.684061 ], [ 152.228700, -32.687163 ] ] ], [ [ [ 152.203513, -32.747611 ], [ 152.184939, -32.749721 ], [ 152.192662, -32.739777 ], [ 152.203513, -32.747611 ] ] ], [ [ [ 151.982089, -32.670746 ], [ 151.979795, -32.677524 ], [ 151.973989, -32.665379 ], [ 151.982089, -32.670746 ] ] ], [ [ [ 151.975014, -32.679871 ], [ 151.965513, -32.674177 ], [ 151.969517, -32.667628 ], [ 151.975014, -32.679871 ] ] ], [ [ [ 150.421112, -35.531174 ], [ 150.411333, -35.530274 ], [ 150.420570, -35.525966 ], [ 150.421112, -35.531174 ] ] ], [ [ [ 150.230948, -36.250533 ], [ 150.229090, -36.258943 ], [ 150.222919, -36.256370 ], [ 150.224006, -36.243903 ], [ 150.230948, -36.250533 ] ] ] + ] + } + }, + { + "type": "Feature", + "id": 1, + "properties": { + "STATE_CODE": "2", + "NAME_1": "Victoria", + "ISO":"AU-VIC" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ [ [ 145.131889, -38.390694 ], [ 145.129935, -38.390452 ], [ 145.096149, -38.402507 ], [ 145.076384, -38.425446 ], [ 145.050185, -38.430022 ], [ 145.025135, -38.475332 ], [ 145.032399, -38.486451 ], [ 145.010999, -38.479662 ], [ 144.976631, -38.490335 ], [ 144.948813, -38.488548 ], [ 144.937410, -38.497082 ], [ 144.918641, -38.497017 ], [ 144.911152, -38.489253 ], [ 144.887256, -38.498852 ], [ 144.886653, -38.477217 ], [ 144.838574, -38.430328 ], [ 144.741749, -38.353947 ], [ 144.651908, -38.304077 ], [ 144.680224, -38.305219 ], [ 144.734143, -38.322480 ], [ 144.766733, -38.356385 ], [ 144.814684, -38.368549 ], [ 144.850929, -38.368747 ], [ 144.923174, -38.349256 ], [ 144.988387, -38.316711 ], [ 144.994327, -38.304469 ], [ 144.982830, -38.296413 ], [ 145.025610, -38.253352 ], [ 145.032420, -38.212673 ], [ 145.044952, -38.213405 ], [ 145.061688, -38.201202 ], [ 145.087550, -38.164238 ], [ 145.118468, -38.145695 ], [ 145.124504, -38.108031 ], [ 145.119793, -38.074099 ], [ 145.125612, -38.071656 ], [ 145.119588, -38.073219 ], [ 145.099517, -38.026878 ], [ 145.062214, -37.990841 ], [ 145.051408, -37.986726 ], [ 145.037916, -37.996447 ], [ 145.017945, -37.981804 ], [ 144.985526, -37.926238 ], [ 144.985912, -37.893195 ], [ 144.970308, -37.860787 ], [ 144.935592, -37.842548 ], [ 144.929856, -37.847323 ], [ 144.925849, -37.839845 ], [ 144.913404, -37.841967 ], [ 144.912499, -37.849458 ], [ 144.905739, -37.840155 ], [ 144.907213, -37.849526 ], [ 144.897148, -37.842552 ], [ 144.905593, -37.851732 ], [ 144.895277, -37.848421 ], [ 144.903624, -37.861466 ], [ 144.915524, -37.865543 ], [ 144.904253, -37.872525 ], [ 144.878621, -37.868083 ], [ 144.868582, -37.858712 ], [ 144.814390, -37.875144 ], [ 144.797950, -37.905305 ], [ 144.799170, -37.923170 ], [ 144.735586, -37.943135 ], [ 144.651639, -38.001638 ], [ 144.592488, -38.004581 ], [ 144.558663, -38.037541 ], [ 144.515692, -38.045604 ], [ 144.506846, -38.091508 ], [ 144.487431, -38.078280 ], [ 144.470912, -38.083542 ], [ 144.464016, -38.076715 ], [ 144.444841, -38.091800 ], [ 144.397943, -38.073816 ], [ 144.380690, -38.085264 ], [ 144.381575, -38.097352 ], [ 144.361606, -38.105136 ], [ 144.366582, -38.109905 ], [ 144.355617, -38.137201 ], [ 144.365166, -38.144831 ], [ 144.384800, -38.143255 ], [ 144.402640, -38.155458 ], [ 144.416599, -38.155329 ], [ 144.425598, -38.123813 ], [ 144.442823, -38.149522 ], [ 144.478136, -38.164482 ], [ 144.557972, -38.154858 ], [ 144.631382, -38.107385 ], [ 144.692223, -38.119967 ], [ 144.720200, -38.146631 ], [ 144.719630, -38.173256 ], [ 144.706371, -38.210220 ], [ 144.695743, -38.219760 ], [ 144.703393, -38.201527 ], [ 144.686582, -38.197462 ], [ 144.623171, -38.251465 ], [ 144.637022, -38.266100 ], [ 144.632984, -38.269788 ], [ 144.672246, -38.265268 ], [ 144.659776, -38.273912 ], [ 144.620173, -38.275913 ], [ 144.613879, -38.292253 ], [ 144.538709, -38.271631 ], [ 144.508432, -38.274791 ], [ 144.494878, -38.282627 ], [ 144.499893, -38.290490 ], [ 144.428618, -38.281629 ], [ 144.332286, -38.323258 ], [ 144.327444, -38.340177 ], [ 144.303480, -38.348258 ], [ 144.279510, -38.372347 ], [ 144.256633, -38.382747 ], [ 144.254013, -38.395472 ], [ 144.200022, -38.406675 ], [ 144.180587, -38.418909 ], [ 144.184016, -38.428699 ], [ 144.133818, -38.434529 ], [ 144.104758, -38.469255 ], [ 144.036497, -38.475775 ], [ 143.979728, -38.532276 ], [ 143.977136, -38.542552 ], [ 143.986836, -38.548451 ], [ 143.974348, -38.565237 ], [ 143.923066, -38.593108 ], [ 143.910271, -38.623094 ], [ 143.870284, -38.655271 ], [ 143.866226, -38.671668 ], [ 143.842147, -38.679003 ], [ 143.837008, -38.692793 ], [ 143.756722, -38.706707 ], [ 143.681545, -38.737487 ], [ 143.670413, -38.752384 ], [ 143.679941, -38.760838 ], [ 143.666695, -38.768315 ], [ 143.666012, -38.779379 ], [ 143.646427, -38.791286 ], [ 143.616031, -38.795509 ], [ 143.554064, -38.855695 ], [ 143.510919, -38.857580 ], [ 143.428687, -38.783354 ], [ 143.403133, -38.780987 ], [ 143.356589, -38.753950 ], [ 143.327535, -38.757208 ], [ 143.302169, -38.750179 ], [ 143.267387, -38.763093 ], [ 143.259696, -38.772964 ], [ 143.232964, -38.766436 ], [ 143.080833, -38.651018 ], [ 143.054990, -38.647870 ], [ 143.055030, -38.641398 ], [ 143.015378, -38.624500 ], [ 142.947884, -38.619768 ], [ 142.937026, -38.627336 ], [ 142.900650, -38.610166 ], [ 142.857631, -38.605289 ], [ 142.852333, -38.591827 ], [ 142.787658, -38.569124 ], [ 142.684028, -38.495133 ], [ 142.563319, -38.422004 ], [ 142.492181, -38.393871 ], [ 142.478862, -38.395027 ], [ 142.480598, -38.401392 ], [ 142.471653, -38.404310 ], [ 142.372518, -38.349483 ], [ 142.309371, -38.356322 ], [ 142.285960, -38.366494 ], [ 142.261528, -38.364586 ], [ 142.244323, -38.378032 ], [ 142.243958, -38.387985 ], [ 142.255037, -38.391190 ], [ 142.244905, -38.396468 ], [ 142.145800, -38.391487 ], [ 142.002670, -38.310335 ], [ 141.929505, -38.278215 ], [ 141.881510, -38.265811 ], [ 141.742014, -38.253109 ], [ 141.679524, -38.267864 ], [ 141.601621, -38.313185 ], [ 141.607931, -38.342272 ], [ 141.623594, -38.341701 ], [ 141.625059, -38.361992 ], [ 141.650257, -38.393048 ], [ 141.627968, -38.393458 ], [ 141.626417, -38.406344 ], [ 141.614846, -38.393020 ], [ 141.573078, -38.389705 ], [ 141.557894, -38.405684 ], [ 141.555861, -38.426270 ], [ 141.542787, -38.432968 ], [ 141.521271, -38.414710 ], [ 141.528466, -38.404854 ], [ 141.519235, -38.390029 ], [ 141.461020, -38.362096 ], [ 141.434371, -38.360306 ], [ 141.407068, -38.369077 ], [ 141.413232, -38.396287 ], [ 141.374319, -38.386757 ], [ 141.364091, -38.377011 ], [ 141.365531, -38.365317 ], [ 141.397693, -38.338554 ], [ 141.392104, -38.319729 ], [ 141.357610, -38.274759 ], [ 141.295280, -38.220641 ], [ 141.227776, -38.170649 ], [ 141.150129, -38.126841 ], [ 141.028512, -38.071588 ], [ 140.965735, -38.055989 ], [ 140.973872, -37.462093 ], [ 140.963103, -35.748535 ], [ 140.963616, -33.980648 ], [ 140.969273, -33.997216 ], [ 140.980575, -33.999996 ], [ 140.975320, -34.009321 ], [ 140.986747, -34.010237 ], [ 140.980453, -34.016013 ], [ 140.988431, -34.030777 ], [ 140.998139, -34.019698 ], [ 141.012311, -34.024655 ], [ 141.003776, -34.027604 ], [ 141.001870, -34.039103 ], [ 141.023262, -34.059699 ], [ 141.034336, -34.035735 ], [ 141.043439, -34.042704 ], [ 141.042463, -34.061101 ], [ 141.065601, -34.050062 ], [ 141.071951, -34.062910 ], [ 141.084910, -34.062288 ], [ 141.089218, -34.076696 ], [ 141.097587, -34.070035 ], [ 141.087257, -34.057173 ], [ 141.094238, -34.050656 ], [ 141.120338, -34.064866 ], [ 141.137307, -34.057561 ], [ 141.142973, -34.063534 ], [ 141.153111, -34.054521 ], [ 141.153443, -34.064189 ], [ 141.143847, -34.067799 ], [ 141.153180, -34.068915 ], [ 141.153670, -34.082118 ], [ 141.165854, -34.083212 ], [ 141.174668, -34.073334 ], [ 141.186230, -34.091977 ], [ 141.194437, -34.087608 ], [ 141.187449, -34.079294 ], [ 141.205907, -34.061723 ], [ 141.222119, -34.061677 ], [ 141.228468, -34.073651 ], [ 141.241808, -34.061315 ], [ 141.247217, -34.073209 ], [ 141.242543, -34.087341 ], [ 141.259566, -34.078134 ], [ 141.283701, -34.103874 ], [ 141.300790, -34.113718 ], [ 141.317451, -34.112413 ], [ 141.313530, -34.124860 ], [ 141.325922, -34.126866 ], [ 141.324937, -34.138782 ], [ 141.346407, -34.124348 ], [ 141.348504, -34.112311 ], [ 141.358972, -34.110723 ], [ 141.368758, -34.127115 ], [ 141.369693, -34.120204 ], [ 141.381587, -34.122143 ], [ 141.388118, -34.134730 ], [ 141.408248, -34.127856 ], [ 141.407404, -34.146400 ], [ 141.433901, -34.145904 ], [ 141.432802, -34.159940 ], [ 141.444539, -34.168015 ], [ 141.450643, -34.161004 ], [ 141.482801, -34.163425 ], [ 141.494967, -34.154611 ], [ 141.518744, -34.180910 ], [ 141.506669, -34.190619 ], [ 141.518577, -34.203159 ], [ 141.506149, -34.210498 ], [ 141.510071, -34.216479 ], [ 141.533863, -34.210697 ], [ 141.533546, -34.191434 ], [ 141.547738, -34.200841 ], [ 141.560468, -34.190900 ], [ 141.583921, -34.198816 ], [ 141.589743, -34.186893 ], [ 141.603285, -34.191228 ], [ 141.604947, -34.183933 ], [ 141.589383, -34.177353 ], [ 141.602959, -34.162254 ], [ 141.584484, -34.151403 ], [ 141.604580, -34.149115 ], [ 141.618538, -34.156287 ], [ 141.611817, -34.139023 ], [ 141.627982, -34.145417 ], [ 141.632653, -34.121484 ], [ 141.677450, -34.101225 ], [ 141.707415, -34.096068 ], [ 141.720288, -34.114589 ], [ 141.729935, -34.105442 ], [ 141.729691, -34.090896 ], [ 141.746343, -34.103403 ], [ 141.761836, -34.097537 ], [ 141.752623, -34.106242 ], [ 141.756947, -34.112097 ], [ 141.777897, -34.101774 ], [ 141.776886, -34.116878 ], [ 141.786445, -34.111685 ], [ 141.841383, -34.132452 ], [ 141.850694, -34.124307 ], [ 141.853257, -34.131233 ], [ 141.867763, -34.128652 ], [ 141.876627, -34.137418 ], [ 141.888789, -34.124415 ], [ 141.884744, -34.114984 ], [ 141.900686, -34.111198 ], [ 141.922592, -34.114570 ], [ 141.929784, -34.125790 ], [ 141.925629, -34.134605 ], [ 141.932990, -34.138238 ], [ 141.945003, -34.119477 ], [ 141.970437, -34.136107 ], [ 141.969742, -34.119898 ], [ 141.978235, -34.112616 ], [ 142.021240, -34.125258 ], [ 142.012927, -34.105246 ], [ 142.036848, -34.099306 ], [ 142.042265, -34.105298 ], [ 142.029400, -34.118211 ], [ 142.023852, -34.115054 ], [ 142.027564, -34.122981 ], [ 142.075638, -34.131418 ], [ 142.065345, -34.150611 ], [ 142.077538, -34.157346 ], [ 142.082770, -34.173545 ], [ 142.119613, -34.174909 ], [ 142.120343, -34.156705 ], [ 142.135161, -34.160738 ], [ 142.146367, -34.148972 ], [ 142.165577, -34.152124 ], [ 142.159255, -34.171482 ], [ 142.166529, -34.171395 ], [ 142.166148, -34.182923 ], [ 142.178309, -34.183743 ], [ 142.183613, -34.175672 ], [ 142.198580, -34.183496 ], [ 142.219102, -34.181064 ], [ 142.233130, -34.214407 ], [ 142.235645, -34.204042 ], [ 142.243720, -34.209870 ], [ 142.235334, -34.223748 ], [ 142.244030, -34.232457 ], [ 142.243579, -34.245768 ], [ 142.232290, -34.255036 ], [ 142.248993, -34.265054 ], [ 142.248845, -34.284983 ], [ 142.232465, -34.296749 ], [ 142.235894, -34.306973 ], [ 142.253057, -34.306139 ], [ 142.267332, -34.295284 ], [ 142.273673, -34.304021 ], [ 142.286132, -34.296536 ], [ 142.298886, -34.305703 ], [ 142.284023, -34.310760 ], [ 142.283873, -34.326567 ], [ 142.294386, -34.323450 ], [ 142.330924, -34.339378 ], [ 142.368436, -34.326913 ], [ 142.396798, -34.338095 ], [ 142.384459, -34.346915 ], [ 142.389752, -34.362799 ], [ 142.363530, -34.362158 ], [ 142.378269, -34.364750 ], [ 142.368057, -34.370650 ], [ 142.373927, -34.388151 ], [ 142.363897, -34.385680 ], [ 142.350969, -34.396629 ], [ 142.360695, -34.411768 ], [ 142.351836, -34.422288 ], [ 142.364539, -34.422704 ], [ 142.359897, -34.431933 ], [ 142.367936, -34.435415 ], [ 142.353334, -34.469582 ], [ 142.379267, -34.466704 ], [ 142.384163, -34.478091 ], [ 142.364268, -34.484715 ], [ 142.359576, -34.498779 ], [ 142.369722, -34.503819 ], [ 142.377726, -34.491397 ], [ 142.394681, -34.493484 ], [ 142.374942, -34.515284 ], [ 142.400571, -34.522747 ], [ 142.367695, -34.530446 ], [ 142.378183, -34.532145 ], [ 142.376705, -34.540985 ], [ 142.390211, -34.549119 ], [ 142.405558, -34.541508 ], [ 142.407693, -34.567972 ], [ 142.426062, -34.562348 ], [ 142.430178, -34.574793 ], [ 142.444922, -34.575490 ], [ 142.451622, -34.584265 ], [ 142.458747, -34.581498 ], [ 142.448847, -34.559483 ], [ 142.467968, -34.564295 ], [ 142.472705, -34.576695 ], [ 142.458363, -34.587575 ], [ 142.471264, -34.592677 ], [ 142.461307, -34.606565 ], [ 142.468257, -34.612934 ], [ 142.459160, -34.616289 ], [ 142.463988, -34.626677 ], [ 142.452390, -34.633650 ], [ 142.471077, -34.640135 ], [ 142.483148, -34.635824 ], [ 142.471654, -34.651796 ], [ 142.472932, -34.670098 ], [ 142.497078, -34.669376 ], [ 142.498646, -34.681025 ], [ 142.514170, -34.690931 ], [ 142.499060, -34.700026 ], [ 142.518864, -34.703671 ], [ 142.499673, -34.739364 ], [ 142.511671, -34.740888 ], [ 142.507428, -34.748839 ], [ 142.524612, -34.759584 ], [ 142.533406, -34.753025 ], [ 142.538793, -34.762876 ], [ 142.550140, -34.762660 ], [ 142.556744, -34.775373 ], [ 142.567176, -34.766928 ], [ 142.615780, -34.785261 ], [ 142.632212, -34.784136 ], [ 142.644440, -34.775338 ], [ 142.646391, -34.763394 ], [ 142.620498, -34.757128 ], [ 142.618316, -34.728751 ], [ 142.637334, -34.735043 ], [ 142.661412, -34.721707 ], [ 142.667412, -34.735908 ], [ 142.678954, -34.739202 ], [ 142.686657, -34.733929 ], [ 142.676553, -34.729046 ], [ 142.678646, -34.722345 ], [ 142.698961, -34.725138 ], [ 142.684489, -34.714057 ], [ 142.691089, -34.701397 ], [ 142.678929, -34.680153 ], [ 142.684960, -34.670774 ], [ 142.710436, -34.676748 ], [ 142.709066, -34.662674 ], [ 142.689172, -34.651925 ], [ 142.700788, -34.624516 ], [ 142.708902, -34.621788 ], [ 142.689383, -34.616640 ], [ 142.703692, -34.613953 ], [ 142.700852, -34.598276 ], [ 142.714821, -34.600442 ], [ 142.722756, -34.592360 ], [ 142.743966, -34.602960 ], [ 142.761766, -34.598485 ], [ 142.762411, -34.589287 ], [ 142.745699, -34.586273 ], [ 142.748291, -34.576759 ], [ 142.784068, -34.580393 ], [ 142.769991, -34.568882 ], [ 142.782512, -34.564933 ], [ 142.791428, -34.546389 ], [ 142.810104, -34.560855 ], [ 142.787687, -34.590178 ], [ 142.797919, -34.597628 ], [ 142.810259, -34.589093 ], [ 142.804997, -34.608401 ], [ 142.818507, -34.612357 ], [ 142.823118, -34.600251 ], [ 142.825038, -34.608780 ], [ 142.838240, -34.613044 ], [ 142.840679, -34.625752 ], [ 142.852466, -34.619195 ], [ 142.868177, -34.627306 ], [ 142.855209, -34.639522 ], [ 142.871867, -34.650292 ], [ 142.860551, -34.665162 ], [ 142.872151, -34.664119 ], [ 142.875881, -34.674859 ], [ 142.886457, -34.672085 ], [ 142.886815, -34.679808 ], [ 142.900176, -34.671464 ], [ 142.893269, -34.665679 ], [ 142.901526, -34.654958 ], [ 142.923844, -34.647856 ], [ 142.922267, -34.656482 ], [ 142.932606, -34.655515 ], [ 142.948867, -34.669674 ], [ 142.959264, -34.664982 ], [ 142.972708, -34.695207 ], [ 142.982428, -34.682740 ], [ 142.975282, -34.670861 ], [ 142.989313, -34.662579 ], [ 142.994573, -34.673872 ], [ 143.017281, -34.673660 ], [ 143.010179, -34.693658 ], [ 143.032502, -34.682928 ], [ 143.029424, -34.691851 ], [ 143.039468, -34.702611 ], [ 143.040422, -34.685888 ], [ 143.054822, -34.698855 ], [ 143.070763, -34.678380 ], [ 143.076222, -34.695958 ], [ 143.092828, -34.701273 ], [ 143.112525, -34.680819 ], [ 143.121272, -34.687401 ], [ 143.111605, -34.687127 ], [ 143.107243, -34.701466 ], [ 143.127791, -34.692661 ], [ 143.117841, -34.703076 ], [ 143.133463, -34.700577 ], [ 143.147400, -34.714757 ], [ 143.161689, -34.697916 ], [ 143.165360, -34.718136 ], [ 143.173197, -34.719709 ], [ 143.180987, -34.709482 ], [ 143.179282, -34.717329 ], [ 143.199179, -34.717034 ], [ 143.200006, -34.733418 ], [ 143.218847, -34.729471 ], [ 143.213847, -34.738496 ], [ 143.224384, -34.758733 ], [ 143.228775, -34.747789 ], [ 143.240660, -34.745460 ], [ 143.248933, -34.757853 ], [ 143.265285, -34.748558 ], [ 143.274016, -34.752685 ], [ 143.252130, -34.772803 ], [ 143.273005, -34.776412 ], [ 143.276736, -34.792260 ], [ 143.286873, -34.794985 ], [ 143.284327, -34.785245 ], [ 143.294285, -34.790822 ], [ 143.308844, -34.779939 ], [ 143.318269, -34.790842 ], [ 143.347876, -34.791635 ], [ 143.347559, -34.807302 ], [ 143.359559, -34.816899 ], [ 143.341191, -34.846309 ], [ 143.354957, -34.846039 ], [ 143.345210, -34.853463 ], [ 143.352563, -34.858235 ], [ 143.338404, -34.870312 ], [ 143.341732, -34.881120 ], [ 143.321389, -34.888460 ], [ 143.340526, -34.913740 ], [ 143.342789, -34.932533 ], [ 143.339492, -34.943632 ], [ 143.322014, -34.942339 ], [ 143.317704, -34.952598 ], [ 143.323717, -34.979085 ], [ 143.318825, -34.992943 ], [ 143.329708, -34.995744 ], [ 143.338117, -35.010891 ], [ 143.331864, -35.023804 ], [ 143.335987, -35.037375 ], [ 143.322081, -35.036727 ], [ 143.328679, -35.045900 ], [ 143.336543, -35.043219 ], [ 143.330492, -35.053880 ], [ 143.337264, -35.048645 ], [ 143.337663, -35.061294 ], [ 143.350838, -35.064702 ], [ 143.339058, -35.068191 ], [ 143.345520, -35.074056 ], [ 143.337446, -35.080418 ], [ 143.345023, -35.087020 ], [ 143.340858, -35.095714 ], [ 143.348103, -35.105440 ], [ 143.360762, -35.103032 ], [ 143.361967, -35.116900 ], [ 143.390647, -35.145107 ], [ 143.381936, -35.173120 ], [ 143.391820, -35.172567 ], [ 143.386969, -35.183462 ], [ 143.394677, -35.192377 ], [ 143.449486, -35.189112 ], [ 143.471482, -35.219293 ], [ 143.518322, -35.211620 ], [ 143.529155, -35.219921 ], [ 143.548335, -35.213790 ], [ 143.547023, -35.206173 ], [ 143.570828, -35.206905 ], [ 143.580984, -35.220036 ], [ 143.563717, -35.243545 ], [ 143.574076, -35.256505 ], [ 143.571690, -35.267959 ], [ 143.583507, -35.265005 ], [ 143.590860, -35.281659 ], [ 143.577937, -35.303197 ], [ 143.569019, -35.302447 ], [ 143.562074, -35.337244 ], [ 143.598448, -35.352111 ], [ 143.603015, -35.365407 ], [ 143.616037, -35.368884 ], [ 143.620416, -35.387682 ], [ 143.633019, -35.383467 ], [ 143.629381, -35.392368 ], [ 143.642338, -35.401037 ], [ 143.657140, -35.384999 ], [ 143.668081, -35.385735 ], [ 143.667922, -35.371554 ], [ 143.682627, -35.374091 ], [ 143.684521, -35.368446 ], [ 143.693148, -35.383917 ], [ 143.702284, -35.377882 ], [ 143.703349, -35.389408 ], [ 143.711685, -35.384690 ], [ 143.709175, -35.392538 ], [ 143.751004, -35.387835 ], [ 143.768823, -35.401809 ], [ 143.758802, -35.415427 ], [ 143.765962, -35.415858 ], [ 143.762852, -35.423066 ], [ 143.790117, -35.422477 ], [ 143.818018, -35.437545 ], [ 143.813021, -35.446265 ], [ 143.855435, -35.461838 ], [ 143.858784, -35.479978 ], [ 143.871380, -35.477828 ], [ 143.876584, -35.486166 ], [ 143.907733, -35.494162 ], [ 143.906183, -35.499958 ], [ 143.935045, -35.499288 ], [ 143.933355, -35.506610 ], [ 143.970101, -35.500078 ], [ 143.972536, -35.509249 ], [ 143.962441, -35.513980 ], [ 143.974476, -35.532309 ], [ 143.996841, -35.536250 ], [ 143.999221, -35.545367 ], [ 143.989865, -35.554663 ], [ 144.009646, -35.563307 ], [ 144.012702, -35.554073 ], [ 144.034082, -35.555971 ], [ 144.039215, -35.549257 ], [ 144.046800, -35.563141 ], [ 144.063958, -35.570545 ], [ 144.062285, -35.576768 ], [ 144.105015, -35.590780 ], [ 144.117546, -35.625926 ], [ 144.131488, -35.640761 ], [ 144.142927, -35.647253 ], [ 144.152629, -35.642678 ], [ 144.162351, -35.671526 ], [ 144.186788, -35.670431 ], [ 144.195139, -35.685858 ], [ 144.213483, -35.686671 ], [ 144.221647, -35.693952 ], [ 144.215952, -35.706477 ], [ 144.248150, -35.721034 ], [ 144.264496, -35.751403 ], [ 144.296060, -35.737091 ], [ 144.301278, -35.742986 ], [ 144.295276, -35.754379 ], [ 144.327832, -35.752646 ], [ 144.318651, -35.766574 ], [ 144.349111, -35.767142 ], [ 144.351546, -35.785069 ], [ 144.360283, -35.784811 ], [ 144.355338, -35.788479 ], [ 144.362329, -35.795834 ], [ 144.376850, -35.792979 ], [ 144.366709, -35.811253 ], [ 144.377484, -35.814346 ], [ 144.364806, -35.820937 ], [ 144.384118, -35.819565 ], [ 144.372189, -35.831950 ], [ 144.382044, -35.833175 ], [ 144.372936, -35.838150 ], [ 144.384314, -35.841922 ], [ 144.381433, -35.852423 ], [ 144.390318, -35.850553 ], [ 144.388885, -35.858480 ], [ 144.398635, -35.862667 ], [ 144.411388, -35.859003 ], [ 144.401926, -35.868020 ], [ 144.410936, -35.871189 ], [ 144.403628, -35.880666 ], [ 144.418183, -35.893220 ], [ 144.407927, -35.904013 ], [ 144.424381, -35.900194 ], [ 144.416979, -35.910472 ], [ 144.423428, -35.906005 ], [ 144.426505, -35.918744 ], [ 144.446974, -35.935531 ], [ 144.460553, -35.939596 ], [ 144.466553, -35.933602 ], [ 144.464123, -35.940942 ], [ 144.472233, -35.940725 ], [ 144.466691, -35.945927 ], [ 144.479415, -35.945275 ], [ 144.479758, -35.953295 ], [ 144.487583, -35.949511 ], [ 144.481230, -35.958609 ], [ 144.488638, -35.957123 ], [ 144.493963, -35.968592 ], [ 144.501900, -35.958039 ], [ 144.501128, -35.970606 ], [ 144.513047, -35.965202 ], [ 144.509950, -35.973945 ], [ 144.521099, -35.970266 ], [ 144.512009, -35.988895 ], [ 144.516140, -35.995438 ], [ 144.553661, -36.002984 ], [ 144.557655, -36.014107 ], [ 144.563385, -36.007806 ], [ 144.571127, -36.024079 ], [ 144.586445, -36.027182 ], [ 144.582515, -36.038135 ], [ 144.590991, -36.043318 ], [ 144.598917, -36.037411 ], [ 144.608761, -36.041808 ], [ 144.605957, -36.036542 ], [ 144.615473, -36.031593 ], [ 144.617551, -36.046904 ], [ 144.608432, -36.063641 ], [ 144.617670, -36.077192 ], [ 144.628221, -36.065259 ], [ 144.618300, -36.059708 ], [ 144.626288, -36.061800 ], [ 144.624999, -36.052081 ], [ 144.632744, -36.048097 ], [ 144.643921, -36.056664 ], [ 144.653191, -36.053240 ], [ 144.654966, -36.075349 ], [ 144.658022, -36.070380 ], [ 144.664631, -36.077042 ], [ 144.667856, -36.068596 ], [ 144.689004, -36.061417 ], [ 144.683907, -36.095138 ], [ 144.697522, -36.094047 ], [ 144.698886, -36.087259 ], [ 144.706461, -36.092948 ], [ 144.715385, -36.086214 ], [ 144.725675, -36.089438 ], [ 144.717445, -36.112113 ], [ 144.726379, -36.117781 ], [ 144.740569, -36.107576 ], [ 144.748239, -36.121746 ], [ 144.771896, -36.116132 ], [ 144.777064, -36.129837 ], [ 144.794782, -36.117285 ], [ 144.807870, -36.123628 ], [ 144.813362, -36.113912 ], [ 144.806398, -36.107457 ], [ 144.816340, -36.109865 ], [ 144.809893, -36.102428 ], [ 144.819903, -36.107947 ], [ 144.841922, -36.100576 ], [ 144.841901, -36.083098 ], [ 144.850851, -36.080645 ], [ 144.847176, -36.072881 ], [ 144.856474, -36.073553 ], [ 144.857534, -36.065171 ], [ 144.861373, -36.071838 ], [ 144.863460, -36.059112 ], [ 144.932614, -36.067049 ], [ 144.948290, -36.082904 ], [ 144.981909, -36.072316 ], [ 144.985932, -36.056509 ], [ 144.967808, -36.042078 ], [ 144.961831, -36.018216 ], [ 144.945499, -36.012186 ], [ 144.945759, -36.004312 ], [ 144.923606, -35.988768 ], [ 144.931005, -35.968470 ], [ 144.957378, -35.961005 ], [ 144.948917, -35.931602 ], [ 144.974954, -35.883845 ], [ 144.968187, -35.865528 ], [ 144.991436, -35.858984 ], [ 144.992263, -35.852338 ], [ 145.018998, -35.856647 ], [ 145.049713, -35.833671 ], [ 145.061056, -35.837309 ], [ 145.089998, -35.825457 ], [ 145.091922, -35.835957 ], [ 145.114092, -35.820548 ], [ 145.126435, -35.829671 ], [ 145.127683, -35.820716 ], [ 145.136636, -35.834270 ], [ 145.139579, -35.828538 ], [ 145.159170, -35.831077 ], [ 145.153456, -35.843045 ], [ 145.181014, -35.842026 ], [ 145.189806, -35.834267 ], [ 145.222760, -35.842440 ], [ 145.225029, -35.832184 ], [ 145.246178, -35.830321 ], [ 145.260717, -35.835426 ], [ 145.258317, -35.850588 ], [ 145.272698, -35.845203 ], [ 145.296542, -35.860566 ], [ 145.324453, -35.850686 ], [ 145.355400, -35.867067 ], [ 145.387150, -35.850142 ], [ 145.410625, -35.848613 ], [ 145.412575, -35.830601 ], [ 145.442293, -35.835642 ], [ 145.450658, -35.821418 ], [ 145.463440, -35.826274 ], [ 145.472128, -35.809230 ], [ 145.491977, -35.815076 ], [ 145.502556, -35.809449 ], [ 145.522510, -35.818486 ], [ 145.535398, -35.801983 ], [ 145.541889, -35.808905 ], [ 145.538763, -35.821813 ], [ 145.546741, -35.812894 ], [ 145.562836, -35.813449 ], [ 145.557997, -35.828230 ], [ 145.566840, -35.826497 ], [ 145.564011, -35.834190 ], [ 145.593230, -35.849077 ], [ 145.586792, -35.861245 ], [ 145.598028, -35.861458 ], [ 145.601134, -35.875008 ], [ 145.606474, -35.874998 ], [ 145.601748, -35.867857 ], [ 145.626347, -35.862758 ], [ 145.628320, -35.867775 ], [ 145.614857, -35.872570 ], [ 145.628134, -35.875409 ], [ 145.620321, -35.883884 ], [ 145.629570, -35.880105 ], [ 145.639730, -35.894239 ], [ 145.657449, -35.900686 ], [ 145.669121, -35.919586 ], [ 145.679053, -35.916829 ], [ 145.673992, -35.925924 ], [ 145.685852, -35.930615 ], [ 145.698181, -35.920977 ], [ 145.703269, -35.925702 ], [ 145.695763, -35.925792 ], [ 145.697327, -35.936501 ], [ 145.720274, -35.934449 ], [ 145.726300, -35.942312 ], [ 145.716766, -35.950594 ], [ 145.734238, -35.951348 ], [ 145.731027, -35.958734 ], [ 145.746109, -35.964239 ], [ 145.778211, -35.960243 ], [ 145.777006, -35.972559 ], [ 145.792732, -35.972801 ], [ 145.793445, -35.982817 ], [ 145.807980, -35.983762 ], [ 145.811662, -35.991769 ], [ 145.816680, -35.988200 ], [ 145.811353, -35.984102 ], [ 145.828252, -35.982982 ], [ 145.827548, -35.975438 ], [ 145.840021, -35.983244 ], [ 145.848589, -35.980899 ], [ 145.845548, -35.973460 ], [ 145.858624, -35.974814 ], [ 145.847975, -35.968689 ], [ 145.854042, -35.959927 ], [ 145.902693, -35.952496 ], [ 145.910314, -35.955962 ], [ 145.900756, -35.961529 ], [ 145.902934, -35.968856 ], [ 145.925821, -35.964563 ], [ 145.928000, -35.973947 ], [ 145.953701, -35.961500 ], [ 145.944304, -35.966495 ], [ 145.951071, -35.976626 ], [ 145.945744, -35.983809 ], [ 145.964818, -35.996770 ], [ 145.958336, -36.006973 ], [ 145.971314, -36.005651 ], [ 145.972070, -36.015747 ], [ 146.005866, -36.003569 ], [ 146.016143, -36.006962 ], [ 146.031488, -35.994714 ], [ 146.048421, -36.003158 ], [ 146.052346, -35.995465 ], [ 146.059295, -36.014548 ], [ 146.073550, -36.009637 ], [ 146.075639, -36.018177 ], [ 146.092199, -36.021266 ], [ 146.091470, -36.009477 ], [ 146.112378, -36.006811 ], [ 146.107678, -36.014369 ], [ 146.118718, -36.018014 ], [ 146.134761, -36.002547 ], [ 146.140650, -36.008954 ], [ 146.132045, -36.010095 ], [ 146.131357, -36.019413 ], [ 146.145863, -36.013776 ], [ 146.154680, -36.025159 ], [ 146.173104, -36.019293 ], [ 146.185976, -36.042071 ], [ 146.199244, -36.027453 ], [ 146.204747, -36.039158 ], [ 146.211581, -36.028559 ], [ 146.211155, -36.038860 ], [ 146.222171, -36.029921 ], [ 146.242980, -36.028784 ], [ 146.241433, -36.023524 ], [ 146.250889, -36.023130 ], [ 146.244593, -36.018340 ], [ 146.257183, -36.012053 ], [ 146.272859, -36.026631 ], [ 146.275030, -36.012441 ], [ 146.282895, -36.011048 ], [ 146.278803, -36.015850 ], [ 146.291125, -36.020163 ], [ 146.282181, -36.026188 ], [ 146.293104, -36.029503 ], [ 146.283023, -36.041488 ], [ 146.291396, -36.038952 ], [ 146.299009, -36.047859 ], [ 146.300963, -36.036590 ], [ 146.312986, -36.045568 ], [ 146.315875, -36.038453 ], [ 146.329072, -36.043144 ], [ 146.325022, -36.033543 ], [ 146.338890, -36.026395 ], [ 146.368684, -36.050862 ], [ 146.387557, -36.035639 ], [ 146.379594, -36.028127 ], [ 146.380606, -36.012895 ], [ 146.399134, -36.007199 ], [ 146.402962, -35.988780 ], [ 146.425169, -35.973027 ], [ 146.421673, -35.965831 ], [ 146.437159, -35.967015 ], [ 146.444738, -35.977991 ], [ 146.454595, -35.962247 ], [ 146.469966, -35.976201 ], [ 146.467407, -35.984240 ], [ 146.499726, -35.990870 ], [ 146.502134, -35.983188 ], [ 146.492480, -35.985012 ], [ 146.500674, -35.979244 ], [ 146.502585, -35.958235 ], [ 146.519681, -35.960604 ], [ 146.532293, -35.984299 ], [ 146.549581, -35.992457 ], [ 146.555958, -35.989182 ], [ 146.552029, -35.979592 ], [ 146.560301, -35.976391 ], [ 146.583967, -35.983864 ], [ 146.584147, -35.974987 ], [ 146.612520, -35.972858 ], [ 146.618716, -35.975937 ], [ 146.607820, -35.986372 ], [ 146.614299, -35.996480 ], [ 146.650868, -36.007735 ], [ 146.650178, -36.013796 ], [ 146.658574, -36.014488 ], [ 146.650336, -36.018411 ], [ 146.655996, -36.026252 ], [ 146.680199, -36.022376 ], [ 146.675365, -36.028599 ], [ 146.685812, -36.040576 ], [ 146.695002, -36.034315 ], [ 146.689603, -36.030446 ], [ 146.707141, -36.036122 ], [ 146.708878, -36.029435 ], [ 146.731645, -36.023725 ], [ 146.730065, -36.044724 ], [ 146.752929, -36.042113 ], [ 146.749851, -36.061277 ], [ 146.762315, -36.051665 ], [ 146.762818, -36.059519 ], [ 146.796181, -36.065138 ], [ 146.794570, -36.058545 ], [ 146.803936, -36.055194 ], [ 146.818380, -36.067834 ], [ 146.816301, -36.074377 ], [ 146.825542, -36.070847 ], [ 146.825026, -36.088724 ], [ 146.836700, -36.082073 ], [ 146.857158, -36.084918 ], [ 146.864530, -36.073084 ], [ 146.872952, -36.073681 ], [ 146.880556, -36.087524 ], [ 146.906910, -36.084946 ], [ 146.907763, -36.111284 ], [ 146.924058, -36.108315 ], [ 146.926804, -36.097178 ], [ 146.943705, -36.115989 ], [ 146.952498, -36.110788 ], [ 146.956824, -36.078061 ], [ 146.972589, -36.082113 ], [ 146.981298, -36.094876 ], [ 147.007444, -36.083732 ], [ 147.006396, -36.089115 ], [ 147.016319, -36.089798 ], [ 147.013473, -36.104721 ], [ 147.022777, -36.099895 ], [ 147.034141, -36.115239 ], [ 147.042344, -36.104305 ], [ 147.052963, -36.107881 ], [ 147.061812, -36.066155 ], [ 147.090400, -36.049226 ], [ 147.095444, -36.052710 ], [ 147.091582, -36.043861 ], [ 147.097003, -36.046784 ], [ 147.103712, -36.032854 ], [ 147.092140, -36.027650 ], [ 147.099095, -36.026194 ], [ 147.097671, -36.015823 ], [ 147.106364, -36.016455 ], [ 147.098074, -36.010246 ], [ 147.109228, -36.012549 ], [ 147.106820, -36.004825 ], [ 147.116280, -36.007635 ], [ 147.111931, -36.000922 ], [ 147.123357, -35.994498 ], [ 147.127391, -36.018047 ], [ 147.144361, -36.037765 ], [ 147.164456, -36.030798 ], [ 147.206299, -36.050136 ], [ 147.242378, -36.038482 ], [ 147.285177, -36.039439 ], [ 147.319949, -36.060987 ], [ 147.352825, -36.031749 ], [ 147.345681, -36.018772 ], [ 147.355287, -36.009832 ], [ 147.358193, -35.991276 ], [ 147.383679, -35.972352 ], [ 147.392344, -35.973533 ], [ 147.390342, -35.949266 ], [ 147.404631, -35.943495 ], [ 147.450685, -35.960804 ], [ 147.464072, -35.944137 ], [ 147.478835, -35.942689 ], [ 147.481553, -35.949223 ], [ 147.494112, -35.943549 ], [ 147.511421, -35.962412 ], [ 147.525267, -35.963338 ], [ 147.514925, -35.976369 ], [ 147.521359, -35.986936 ], [ 147.551873, -36.004095 ], [ 147.584027, -35.984648 ], [ 147.558887, -35.972489 ], [ 147.547654, -35.978625 ], [ 147.549115, -35.964550 ], [ 147.591893, -35.969859 ], [ 147.601438, -35.979118 ], [ 147.637771, -35.962110 ], [ 147.646777, -35.946008 ], [ 147.680010, -35.944439 ], [ 147.708415, -35.928545 ], [ 147.718672, -35.945513 ], [ 147.741292, -35.956490 ], [ 147.773261, -35.958863 ], [ 147.766797, -35.964158 ], [ 147.776849, -35.968614 ], [ 147.806153, -35.965057 ], [ 147.817498, -35.979741 ], [ 147.873121, -35.991006 ], [ 147.882880, -36.001798 ], [ 147.897506, -35.999861 ], [ 147.895698, -35.993018 ], [ 147.912342, -35.995198 ], [ 147.908543, -36.001473 ], [ 147.917083, -36.011204 ], [ 147.911490, -36.026597 ], [ 147.931559, -36.035267 ], [ 147.923752, -36.035709 ], [ 147.923974, -36.042491 ], [ 147.934261, -36.047637 ], [ 147.958994, -36.040974 ], [ 147.964964, -36.046853 ], [ 147.974260, -36.038505 ], [ 147.973234, -36.046314 ], [ 147.981774, -36.040254 ], [ 147.991260, -36.052559 ], [ 147.999692, -36.046204 ], [ 147.989467, -36.068478 ], [ 147.992889, -36.081071 ], [ 147.982389, -36.077891 ], [ 147.980247, -36.086482 ], [ 147.999218, -36.098655 ], [ 147.991074, -36.111251 ], [ 147.998229, -36.115919 ], [ 147.990652, -36.121272 ], [ 148.000537, -36.124355 ], [ 148.002388, -36.140057 ], [ 148.037726, -36.140797 ], [ 148.035191, -36.152536 ], [ 148.022899, -36.153457 ], [ 148.034795, -36.162983 ], [ 148.021819, -36.176462 ], [ 148.040620, -36.206951 ], [ 148.026096, -36.223042 ], [ 148.034900, -36.234116 ], [ 148.028840, -36.247044 ], [ 148.038676, -36.259221 ], [ 148.032828, -36.265860 ], [ 148.033753, -36.282230 ], [ 148.040119, -36.284157 ], [ 148.035234, -36.292329 ], [ 148.043928, -36.299479 ], [ 148.035011, -36.310577 ], [ 148.058941, -36.320046 ], [ 148.051243, -36.324557 ], [ 148.055613, -36.334386 ], [ 148.048959, -36.355632 ], [ 148.037836, -36.366246 ], [ 148.045966, -36.367038 ], [ 148.037583, -36.390225 ], [ 148.058163, -36.400804 ], [ 148.059945, -36.415538 ], [ 148.080280, -36.422101 ], [ 148.087601, -36.451895 ], [ 148.124663, -36.464713 ], [ 148.119093, -36.481884 ], [ 148.126424, -36.485274 ], [ 148.117630, -36.495476 ], [ 148.139815, -36.525445 ], [ 148.124337, -36.550642 ], [ 148.133410, -36.566921 ], [ 148.150489, -36.558336 ], [ 148.160713, -36.579776 ], [ 148.169411, -36.573696 ], [ 148.190134, -36.576620 ], [ 148.190330, -36.584891 ], [ 148.205990, -36.586932 ], [ 148.217563, -36.598239 ], [ 148.202781, -36.611915 ], [ 148.214196, -36.610490 ], [ 148.219547, -36.619558 ], [ 148.211171, -36.650519 ], [ 148.170243, -36.712799 ], [ 148.130703, -36.734683 ], [ 148.136703, -36.738436 ], [ 148.132654, -36.750847 ], [ 148.120472, -36.756303 ], [ 148.126081, -36.759417 ], [ 148.097983, -36.787161 ], [ 148.108888, -36.800865 ], [ 148.120152, -36.806079 ], [ 148.126771, -36.796451 ], [ 148.156663, -36.790013 ], [ 148.179595, -36.796326 ], [ 148.182473, -36.804895 ], [ 148.194946, -36.796253 ], [ 149.976679, -37.505060 ], [ 149.964395, -37.517956 ], [ 149.924770, -37.526348 ], [ 149.906609, -37.542865 ], [ 149.819715, -37.544829 ], [ 149.775248, -37.557838 ], [ 149.760994, -37.566909 ], [ 149.765416, -37.573855 ], [ 149.738748, -37.585037 ], [ 149.706531, -37.643525 ], [ 149.682392, -37.664158 ], [ 149.677329, -37.685082 ], [ 149.616596, -37.700613 ], [ 149.600828, -37.712062 ], [ 149.595839, -37.726576 ], [ 149.566290, -37.724577 ], [ 149.525501, -37.737284 ], [ 149.516419, -37.749082 ], [ 149.496934, -37.753367 ], [ 149.495556, -37.768225 ], [ 149.484958, -37.775441 ], [ 149.461888, -37.769302 ], [ 149.431022, -37.777377 ], [ 149.340379, -37.776913 ], [ 149.292448, -37.787460 ], [ 149.275498, -37.803777 ], [ 149.265391, -37.798457 ], [ 149.265928, -37.789319 ], [ 149.246711, -37.780474 ], [ 149.124226, -37.777287 ], [ 148.926358, -37.781403 ], [ 148.884150, -37.789958 ], [ 148.808733, -37.786417 ], [ 148.749187, -37.797037 ], [ 148.727786, -37.815437 ], [ 148.717029, -37.804438 ], [ 148.691027, -37.801441 ], [ 148.626577, -37.808219 ], [ 148.448176, -37.801720 ], [ 148.289615, -37.810988 ], [ 148.179178, -37.831635 ], [ 147.951982, -37.894066 ], [ 147.788216, -37.955322 ], [ 147.642131, -38.036875 ], [ 147.476303, -38.151750 ], [ 147.067248, -38.475119 ], [ 146.883139, -38.634634 ], [ 146.887146, -38.620153 ], [ 146.925517, -38.594225 ], [ 146.898674, -38.612218 ], [ 146.886424, -38.614398 ], [ 146.882549, -38.604607 ], [ 146.844005, -38.604835 ], [ 146.842214, -38.615343 ], [ 146.851407, -38.612415 ], [ 146.880623, -38.616834 ], [ 146.878210, -38.626484 ], [ 146.815353, -38.648874 ], [ 146.793687, -38.644809 ], [ 146.791507, -38.633329 ], [ 146.785908, -38.646241 ], [ 146.766508, -38.650138 ], [ 146.776554, -38.654217 ], [ 146.753518, -38.652583 ], [ 146.742174, -38.664925 ], [ 146.712913, -38.647777 ], [ 146.716388, -38.660899 ], [ 146.696106, -38.669995 ], [ 146.697708, -38.675350 ], [ 146.657551, -38.671491 ], [ 146.670659, -38.662910 ], [ 146.653120, -38.642985 ], [ 146.645934, -38.650711 ], [ 146.652795, -38.658737 ], [ 146.641029, -38.668902 ], [ 146.584420, -38.677087 ], [ 146.593670, -38.684768 ], [ 146.582693, -38.698475 ], [ 146.580423, -38.679462 ], [ 146.576824, -38.692143 ], [ 146.572005, -38.677700 ], [ 146.572140, -38.683307 ], [ 146.562535, -38.678240 ], [ 146.546510, -38.684520 ], [ 146.563125, -38.683180 ], [ 146.566746, -38.691119 ], [ 146.562451, -38.698048 ], [ 146.552764, -38.689290 ], [ 146.551209, -38.703789 ], [ 146.539161, -38.698269 ], [ 146.541200, -38.685376 ], [ 146.514712, -38.694242 ], [ 146.494669, -38.679739 ], [ 146.492968, -38.696760 ], [ 146.463062, -38.702080 ], [ 146.437202, -38.694436 ], [ 146.439100, -38.699711 ], [ 146.410331, -38.711911 ], [ 146.411203, -38.721218 ], [ 146.387054, -38.720748 ], [ 146.380986, -38.685645 ], [ 146.350706, -38.672920 ], [ 146.331821, -38.681068 ], [ 146.338840, -38.690666 ], [ 146.291719, -38.695268 ], [ 146.260560, -38.687323 ], [ 146.252627, -38.697512 ], [ 146.243754, -38.695281 ], [ 146.243941, -38.682832 ], [ 146.227605, -38.689144 ], [ 146.231156, -38.695179 ], [ 146.212059, -38.692854 ], [ 146.229248, -38.701188 ], [ 146.202718, -38.713350 ], [ 146.213181, -38.719708 ], [ 146.199527, -38.716096 ], [ 146.192048, -38.726245 ], [ 146.200636, -38.733016 ], [ 146.210668, -38.728486 ], [ 146.204663, -38.735404 ], [ 146.210699, -38.737946 ], [ 146.195376, -38.735871 ], [ 146.192597, -38.728737 ], [ 146.185560, -38.743370 ], [ 146.218497, -38.771826 ], [ 146.233048, -38.809044 ], [ 146.272814, -38.806048 ], [ 146.263936, -38.823443 ], [ 146.270271, -38.860140 ], [ 146.292728, -38.876466 ], [ 146.287195, -38.894454 ], [ 146.292616, -38.904551 ], [ 146.323098, -38.903579 ], [ 146.352575, -38.868224 ], [ 146.393215, -38.850494 ], [ 146.414861, -38.852078 ], [ 146.420730, -38.803807 ], [ 146.435645, -38.795912 ], [ 146.437960, -38.778922 ], [ 146.467056, -38.780916 ], [ 146.478636, -38.791780 ], [ 146.467850, -38.871049 ], [ 146.484472, -38.883179 ], [ 146.480599, -38.891390 ], [ 146.487410, -38.894269 ], [ 146.489295, -38.910464 ], [ 146.474089, -38.916245 ], [ 146.450981, -38.947851 ], [ 146.436110, -38.981022 ], [ 146.445691, -39.003708 ], [ 146.431755, -39.010977 ], [ 146.437194, -39.021014 ], [ 146.475392, -39.025666 ], [ 146.464000, -39.028932 ], [ 146.470757, -39.035718 ], [ 146.460439, -39.036915 ], [ 146.477728, -39.043765 ], [ 146.474460, -39.054940 ], [ 146.483350, -39.061028 ], [ 146.479770, -39.066834 ], [ 146.455289, -39.054116 ], [ 146.431120, -39.065527 ], [ 146.425291, -39.083549 ], [ 146.441603, -39.089754 ], [ 146.434851, -39.107727 ], [ 146.426860, -39.108278 ], [ 146.431753, -39.114822 ], [ 146.424079, -39.114799 ], [ 146.426510, -39.129986 ], [ 146.416015, -39.125521 ], [ 146.389544, -39.133959 ], [ 146.387825, -39.125091 ], [ 146.374563, -39.136721 ], [ 146.345818, -39.125384 ], [ 146.342561, -39.110600 ], [ 146.321444, -39.087887 ], [ 146.321430, -39.077981 ], [ 146.340665, -39.076953 ], [ 146.342982, -39.060987 ], [ 146.352339, -39.058857 ], [ 146.316942, -39.052255 ], [ 146.326362, -39.041118 ], [ 146.316484, -39.033666 ], [ 146.304711, -39.039363 ], [ 146.303027, -39.023470 ], [ 146.283915, -39.024887 ], [ 146.291848, -39.013118 ], [ 146.274329, -38.996389 ], [ 146.248966, -38.996020 ], [ 146.267295, -38.991191 ], [ 146.269497, -38.972960 ], [ 146.233903, -38.918669 ], [ 146.189408, -38.873545 ], [ 146.133534, -38.837409 ], [ 146.083966, -38.815933 ], [ 146.033608, -38.813189 ], [ 146.009458, -38.825703 ], [ 145.997901, -38.846406 ], [ 146.006286, -38.877920 ], [ 145.979368, -38.895077 ], [ 145.940007, -38.896113 ], [ 145.921197, -38.909610 ], [ 145.910638, -38.892758 ], [ 145.914922, -38.872133 ], [ 145.869527, -38.776148 ], [ 145.818249, -38.712973 ], [ 145.765547, -38.666752 ], [ 145.729472, -38.644840 ], [ 145.714004, -38.645141 ], [ 145.688938, -38.651209 ], [ 145.672021, -38.671595 ], [ 145.656874, -38.676923 ], [ 145.638566, -38.672436 ], [ 145.606696, -38.678782 ], [ 145.560625, -38.651407 ], [ 145.537514, -38.611090 ], [ 145.483686, -38.556001 ], [ 145.423688, -38.536479 ], [ 145.372012, -38.536297 ], [ 145.363420, -38.520970 ], [ 145.419170, -38.513190 ], [ 145.434480, -38.493623 ], [ 145.432528, -38.480368 ], [ 145.417718, -38.471373 ], [ 145.428272, -38.460830 ], [ 145.433813, -38.434868 ], [ 145.416381, -38.406995 ], [ 145.453556, -38.412660 ], [ 145.481275, -38.407126 ], [ 145.489876, -38.415096 ], [ 145.515409, -38.415475 ], [ 145.548933, -38.371688 ], [ 145.552463, -38.352450 ], [ 145.545145, -38.339536 ], [ 145.515332, -38.337800 ], [ 145.522134, -38.298944 ], [ 145.497964, -38.274077 ], [ 145.488988, -38.233414 ], [ 145.459991, -38.228038 ], [ 145.438385, -38.214401 ], [ 145.410917, -38.228048 ], [ 145.347072, -38.213570 ], [ 145.341337, -38.229565 ], [ 145.324841, -38.242155 ], [ 145.298309, -38.248493 ], [ 145.274132, -38.244101 ], [ 145.278629, -38.234400 ], [ 145.271575, -38.222965 ], [ 145.254773, -38.223062 ], [ 145.253302, -38.235679 ], [ 145.261731, -38.242426 ], [ 145.225654, -38.272428 ], [ 145.223020, -38.306462 ], [ 145.206203, -38.303800 ], [ 145.199986, -38.293078 ], [ 145.192934, -38.296557 ], [ 145.199945, -38.310851 ], [ 145.192849, -38.324507 ], [ 145.218781, -38.347604 ], [ 145.213463, -38.365909 ], [ 145.221952, -38.377797 ], [ 145.210923, -38.378673 ], [ 145.196407, -38.366586 ], [ 145.183986, -38.374587 ], [ 145.215199, -38.383113 ], [ 145.234486, -38.409689 ], [ 145.131889, -38.390694 ] ], [ [ 146.840680, -38.615832 ], [ 146.825352, -38.609723 ], [ 146.798097, -38.620209 ], [ 146.799439, -38.628656 ], [ 146.794402, -38.626652 ], [ 146.791910, -38.632399 ], [ 146.800977, -38.632991 ], [ 146.803176, -38.620368 ], [ 146.819121, -38.613196 ], [ 146.825275, -38.620739 ], [ 146.840680, -38.615832 ] ] ], [ [ [ 149.918469, -37.568333 ], [ 149.906303, -37.567536 ], [ 149.904809, -37.548305 ], [ 149.918469, -37.568333 ] ] ], [ [ [ 146.879039, -38.638149 ], [ 146.828437, -38.679496 ], [ 146.858094, -38.652723 ], [ 146.835528, -38.654171 ], [ 146.879039, -38.638149 ] ] ], [ [ [ 146.826421, -38.683449 ], [ 146.787947, -38.680680 ], [ 146.752869, -38.689586 ], [ 146.798672, -38.675767 ], [ 146.826421, -38.683449 ] ] ], [ [ [ 146.815451, -38.659376 ], [ 146.786029, -38.669118 ], [ 146.794058, -38.656820 ], [ 146.815451, -38.659376 ] ] ], [ [ [ 146.739461, -38.672911 ], [ 146.726511, -38.672302 ], [ 146.715490, -38.683892 ], [ 146.709894, -38.676575 ], [ 146.720620, -38.676460 ], [ 146.727793, -38.661227 ], [ 146.739461, -38.672911 ] ] ], [ [ [ 146.715739, -38.687077 ], [ 146.696231, -38.690865 ], [ 146.707733, -38.676730 ], [ 146.715739, -38.687077 ] ] ], [ [ [ 146.685401, -38.677859 ], [ 146.676565, -38.684137 ], [ 146.683364, -38.689702 ], [ 146.668862, -38.684012 ], [ 146.685401, -38.677859 ] ] ], [ [ [ 146.677547, -38.708481 ], [ 146.626289, -38.724626 ], [ 146.601830, -38.722403 ], [ 146.606399, -38.717974 ], [ 146.601021, -38.716540 ], [ 146.595562, -38.720188 ], [ 146.602819, -38.726884 ], [ 146.585294, -38.715426 ], [ 146.618435, -38.697518 ], [ 146.614453, -38.701181 ], [ 146.636787, -38.698702 ], [ 146.630293, -38.705779 ], [ 146.642945, -38.699638 ], [ 146.677547, -38.708481 ] ] ], [ [ [ 146.669254, -38.718406 ], [ 146.652636, -38.727206 ], [ 146.629740, -38.724665 ], [ 146.669254, -38.718406 ] ] ], [ [ [ 146.620487, -38.757880 ], [ 146.597634, -38.759484 ], [ 146.545340, -38.790889 ], [ 146.494759, -38.774837 ], [ 146.464605, -38.739122 ], [ 146.471343, -38.728367 ], [ 146.495000, -38.729122 ], [ 146.509663, -38.718527 ], [ 146.503076, -38.726791 ], [ 146.515585, -38.730698 ], [ 146.508177, -38.737230 ], [ 146.541851, -38.728365 ], [ 146.508245, -38.752904 ], [ 146.523886, -38.752655 ], [ 146.500179, -38.762913 ], [ 146.547905, -38.757144 ], [ 146.541720, -38.756131 ], [ 146.576886, -38.735022 ], [ 146.591910, -38.742404 ], [ 146.584271, -38.747864 ], [ 146.602930, -38.744193 ], [ 146.601349, -38.752087 ], [ 146.620487, -38.757880 ] ] ], [ [ [ 146.623101, -38.757696 ], [ 146.667725, -38.747737 ], [ 146.656002, -38.755387 ], [ 146.623101, -38.757696 ] ] ], [ [ [ 146.634077, -38.697163 ], [ 146.621698, -38.694456 ], [ 146.626852, -38.690059 ], [ 146.634077, -38.697163 ] ] ], [ [ [ 146.501883, -38.716446 ], [ 146.493338, -38.725194 ], [ 146.468395, -38.717321 ], [ 146.438615, -38.727515 ], [ 146.451102, -38.710531 ], [ 146.501883, -38.716446 ] ] ], [ [ [ 146.329832, -39.141577 ], [ 146.325447, -39.147280 ], [ 146.312072, -39.134765 ], [ 146.329832, -39.141577 ] ] ], [ [ [ 146.246238, -39.024357 ], [ 146.240787, -39.029639 ], [ 146.236406, -39.022245 ], [ 146.241110, -39.016688 ], [ 146.246238, -39.024357 ] ] ], [ [ [ 146.241476, -39.089053 ], [ 146.235550, -39.097594 ], [ 146.222171, -39.071320 ], [ 146.241476, -39.089053 ] ] ], [ [ [ 145.503419, -38.354364 ], [ 145.476252, -38.366455 ], [ 145.406087, -38.372763 ], [ 145.390367, -38.385129 ], [ 145.386038, -38.406628 ], [ 145.363825, -38.405562 ], [ 145.352532, -38.419991 ], [ 145.287996, -38.395663 ], [ 145.275541, -38.394869 ], [ 145.281426, -38.404317 ], [ 145.272813, -38.409592 ], [ 145.265575, -38.402882 ], [ 145.276670, -38.391631 ], [ 145.273510, -38.357488 ], [ 145.287229, -38.309622 ], [ 145.297586, -38.309340 ], [ 145.285955, -38.305325 ], [ 145.289378, -38.284665 ], [ 145.297026, -38.282054 ], [ 145.330360, -38.292367 ], [ 145.351993, -38.311261 ], [ 145.452370, -38.306856 ], [ 145.503419, -38.354364 ] ] ], [ [ [ 145.364351, -38.553403 ], [ 145.360927, -38.566071 ], [ 145.351273, -38.567099 ], [ 145.342160, -38.559018 ], [ 145.344009, -38.549380 ], [ 145.316751, -38.524459 ], [ 145.271133, -38.504866 ], [ 145.240044, -38.506828 ], [ 145.221203, -38.529953 ], [ 145.203572, -38.517309 ], [ 145.170660, -38.509575 ], [ 145.116156, -38.518351 ], [ 145.127384, -38.505541 ], [ 145.147128, -38.503198 ], [ 145.165431, -38.465358 ], [ 145.200057, -38.451025 ], [ 145.290603, -38.450182 ], [ 145.302496, -38.453855 ], [ 145.275161, -38.454122 ], [ 145.273250, -38.460288 ], [ 145.310365, -38.460544 ], [ 145.290741, -38.480490 ], [ 145.293145, -38.488543 ], [ 145.305573, -38.485438 ], [ 145.297319, -38.506446 ], [ 145.359160, -38.509312 ], [ 145.363649, -38.515623 ], [ 145.347089, -38.520963 ], [ 145.340937, -38.535771 ], [ 145.364351, -38.553403 ] ] ], [ [ [ 145.346151, -38.508609 ], [ 145.332958, -38.499493 ], [ 145.336761, -38.493663 ], [ 145.346151, -38.508609 ] ] ], [ [ [ 144.702137, -38.243412 ], [ 144.667849, -38.255016 ], [ 144.672019, -38.264367 ], [ 144.663095, -38.252993 ], [ 144.678720, -38.237599 ], [ 144.678828, -38.250631 ], [ 144.702137, -38.243412 ] ] ], [ [ [ 142.014239, -38.412576 ], [ 141.999012, -38.425446 ], [ 141.993481, -38.417372 ], [ 142.014239, -38.412576 ] ] ] + ] + } + }, + { + "type": "Feature", + "id": 2, + "properties": { + "STATE_CODE": "3", + "NAME_1": "Queensland", + "ISO":"AU-QLD" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ [ [ 141.663509, -15.003962 ], [ 141.590263, -14.857313 ], [ 141.566982, -14.740314 ], [ 141.553601, -14.592565 ], [ 141.525610, -14.487086 ], [ 141.552048, -14.375277 ], [ 141.601637, -14.242417 ], [ 141.593972, -14.155358 ], [ 141.599046, -14.101668 ], [ 141.568572, -14.051248 ], [ 141.481812, -13.953329 ], [ 141.468182, -13.923139 ], [ 141.467192, -13.864249 ], [ 141.523282, -13.572129 ], [ 141.550602, -13.506939 ], [ 141.593261, -13.459149 ], [ 141.625401, -13.378009 ], [ 141.682104, -13.302759 ], [ 141.695390, -13.270078 ], [ 141.690764, -13.236639 ], [ 141.679924, -13.217539 ], [ 141.657764, -13.204199 ], [ 141.645073, -13.168930 ], [ 141.629493, -13.159430 ], [ 141.613943, -13.091950 ], [ 141.617772, -13.039960 ], [ 141.604512, -13.020400 ], [ 141.588712, -13.017231 ], [ 141.583162, -12.996721 ], [ 141.599741, -12.952071 ], [ 141.635980, -12.908750 ], [ 141.640990, -12.918390 ], [ 141.652750, -12.916760 ], [ 141.670290, -12.894130 ], [ 141.710019, -12.878980 ], [ 141.739899, -12.853470 ], [ 141.762458, -12.816610 ], [ 141.795327, -12.729140 ], [ 141.803777, -12.679530 ], [ 141.820167, -12.671810 ], [ 141.827282, -12.676820 ], [ 141.817508, -12.700095 ], [ 141.830572, -12.686330 ], [ 141.854522, -12.686230 ], [ 141.863112, -12.693410 ], [ 141.877741, -12.671310 ], [ 141.859246, -12.664557 ], [ 141.839532, -12.668280 ], [ 141.827326, -12.648550 ], [ 141.859272, -12.637740 ], [ 141.886082, -12.617290 ], [ 141.893743, -12.593527 ], [ 141.879236, -12.583900 ], [ 141.819877, -12.601460 ], [ 141.811457, -12.584220 ], [ 141.793507, -12.582200 ], [ 141.768407, -12.565660 ], [ 141.769747, -12.552661 ], [ 141.760047, -12.539141 ], [ 141.709417, -12.518951 ], [ 141.702007, -12.519571 ], [ 141.695757, -12.533801 ], [ 141.694807, -12.556981 ], [ 141.654488, -12.563411 ], [ 141.643238, -12.577601 ], [ 141.625708, -12.583261 ], [ 141.600688, -12.571791 ], [ 141.591918, -12.558962 ], [ 141.673419, -12.369542 ], [ 141.714829, -12.234722 ], [ 141.735389, -12.218212 ], [ 141.810380, -12.048632 ], [ 141.850440, -11.984452 ], [ 141.879980, -11.954412 ], [ 141.909020, -11.955462 ], [ 141.895850, -11.964312 ], [ 141.886500, -11.985032 ], [ 141.914170, -12.032331 ], [ 141.922475, -12.107571 ], [ 141.944354, -12.148747 ], [ 141.915249, -12.165088 ], [ 141.929601, -12.167335 ], [ 141.947961, -12.151173 ], [ 141.928906, -12.104043 ], [ 141.932345, -12.070881 ], [ 141.957978, -12.042323 ], [ 141.994195, -12.059651 ], [ 142.012235, -12.039111 ], [ 142.000825, -12.012891 ], [ 141.971675, -11.980111 ], [ 141.942845, -11.976481 ], [ 141.942175, -11.945512 ], [ 141.961964, -11.820772 ], [ 141.977424, -11.776973 ], [ 142.001893, -11.753273 ], [ 142.015953, -11.673083 ], [ 142.026003, -11.662313 ], [ 142.051312, -11.554844 ], [ 142.088582, -11.464734 ], [ 142.100492, -11.463214 ], [ 142.097332, -11.445034 ], [ 142.119961, -11.368544 ], [ 142.126801, -11.268365 ], [ 142.116221, -11.224665 ], [ 142.128580, -11.221675 ], [ 142.137680, -11.206955 ], [ 142.147500, -11.138305 ], [ 142.157281, -11.121775 ], [ 142.147351, -11.098745 ], [ 142.152941, -11.093865 ], [ 142.144731, -11.039075 ], [ 142.125936, -10.981375 ], [ 142.132786, -10.948445 ], [ 142.193636, -10.914974 ], [ 142.221806, -10.922214 ], [ 142.248187, -10.909323 ], [ 142.284486, -10.917763 ], [ 142.313237, -10.901143 ], [ 142.315016, -10.915153 ], [ 142.334127, -10.890193 ], [ 142.351137, -10.883343 ], [ 142.365382, -10.846412 ], [ 142.390446, -10.826413 ], [ 142.424926, -10.742142 ], [ 142.422807, -10.727902 ], [ 142.438257, -10.708162 ], [ 142.459356, -10.720282 ], [ 142.498206, -10.716813 ], [ 142.530935, -10.687543 ], [ 142.540634, -10.696253 ], [ 142.541305, -10.709483 ], [ 142.551724, -10.708363 ], [ 142.556824, -10.726463 ], [ 142.567004, -10.722073 ], [ 142.573964, -10.732813 ], [ 142.581064, -10.724803 ], [ 142.583224, -10.733843 ], [ 142.609273, -10.749023 ], [ 142.597024, -10.758393 ], [ 142.599654, -10.764393 ], [ 142.578574, -10.795782 ], [ 142.566455, -10.795322 ], [ 142.549255, -10.831822 ], [ 142.517215, -10.843762 ], [ 142.510445, -10.861152 ], [ 142.516095, -10.909442 ], [ 142.501115, -10.917702 ], [ 142.503365, -10.930662 ], [ 142.488695, -10.944083 ], [ 142.497815, -10.939062 ], [ 142.500065, -10.954432 ], [ 142.482115, -10.978373 ], [ 142.498655, -10.968122 ], [ 142.512395, -10.939722 ], [ 142.525665, -10.934882 ], [ 142.543325, -10.907892 ], [ 142.555785, -10.913442 ], [ 142.542645, -10.902232 ], [ 142.557545, -10.874102 ], [ 142.558225, -10.880092 ], [ 142.571019, -10.877778 ], [ 142.568985, -10.872312 ], [ 142.575055, -10.869602 ], [ 142.593516, -10.888215 ], [ 142.585455, -10.874932 ], [ 142.592885, -10.875162 ], [ 142.589235, -10.868152 ], [ 142.616544, -10.892262 ], [ 142.616744, -10.915102 ], [ 142.604285, -10.912142 ], [ 142.619144, -10.916462 ], [ 142.609294, -10.933852 ], [ 142.614774, -10.941882 ], [ 142.629875, -10.945182 ], [ 142.638005, -10.937162 ], [ 142.646005, -10.939311 ], [ 142.644395, -10.945761 ], [ 142.649785, -10.940001 ], [ 142.667844, -10.944651 ], [ 142.680704, -10.971581 ], [ 142.698134, -10.977901 ], [ 142.716333, -10.961072 ], [ 142.752619, -11.007101 ], [ 142.749459, -11.026831 ], [ 142.756439, -11.042091 ], [ 142.786058, -11.074181 ], [ 142.787679, -11.126760 ], [ 142.799359, -11.157230 ], [ 142.783159, -11.222670 ], [ 142.793549, -11.278550 ], [ 142.802399, -11.291450 ], [ 142.819809, -11.291810 ], [ 142.828869, -11.314440 ], [ 142.840358, -11.319459 ], [ 142.868658, -11.381579 ], [ 142.832959, -11.433529 ], [ 142.826833, -11.476509 ], [ 142.839668, -11.492619 ], [ 142.834328, -11.559689 ], [ 142.852167, -11.586389 ], [ 142.859487, -11.635889 ], [ 142.862418, -11.750998 ], [ 142.850378, -11.806098 ], [ 142.854158, -11.822658 ], [ 142.847488, -11.823918 ], [ 142.856358, -11.845518 ], [ 142.881798, -11.871858 ], [ 142.901078, -11.872128 ], [ 142.909318, -11.890098 ], [ 142.928968, -11.904377 ], [ 142.922478, -11.892658 ], [ 142.945898, -11.900438 ], [ 142.974597, -11.932917 ], [ 143.015387, -11.937648 ], [ 143.060916, -11.923668 ], [ 143.066136, -11.928258 ], [ 143.066476, -11.920118 ], [ 143.093195, -11.904088 ], [ 143.098295, -11.892178 ], [ 143.109465, -11.906108 ], [ 143.122104, -11.905138 ], [ 143.147504, -11.919368 ], [ 143.149524, -11.948888 ], [ 143.161964, -11.954358 ], [ 143.167454, -11.973298 ], [ 143.209833, -11.962188 ], [ 143.213153, -11.954438 ], [ 143.224633, -11.954128 ], [ 143.244062, -11.968728 ], [ 143.228083, -11.989087 ], [ 143.216553, -11.974818 ], [ 143.185584, -11.990818 ], [ 143.101208, -12.145645 ], [ 143.092949, -12.157625 ], [ 143.078709, -12.159225 ], [ 143.084929, -12.172775 ], [ 143.094913, -12.173455 ], [ 143.087593, -12.201015 ], [ 143.095072, -12.203964 ], [ 143.097043, -12.218295 ], [ 143.086043, -12.242135 ], [ 143.094903, -12.259070 ], [ 143.081253, -12.288905 ], [ 143.078573, -12.337485 ], [ 143.084633, -12.348225 ], [ 143.115583, -12.338685 ], [ 143.128013, -12.347365 ], [ 143.180291, -12.343105 ], [ 143.182601, -12.350445 ], [ 143.194901, -12.349076 ], [ 143.215040, -12.362706 ], [ 143.230120, -12.382005 ], [ 143.247370, -12.379146 ], [ 143.249800, -12.390095 ], [ 143.266129, -12.394355 ], [ 143.273859, -12.407105 ], [ 143.272460, -12.507515 ], [ 143.296890, -12.532535 ], [ 143.303150, -12.551605 ], [ 143.331360, -12.565215 ], [ 143.354819, -12.563915 ], [ 143.393429, -12.595554 ], [ 143.414238, -12.593244 ], [ 143.418829, -12.615954 ], [ 143.438448, -12.611814 ], [ 143.438164, -12.623334 ], [ 143.402469, -12.662274 ], [ 143.402929, -12.678584 ], [ 143.418729, -12.676014 ], [ 143.418861, -12.681659 ], [ 143.390015, -12.714834 ], [ 143.382110, -12.749964 ], [ 143.357726, -12.798353 ], [ 143.351337, -12.899033 ], [ 143.359586, -12.890613 ], [ 143.375846, -12.899373 ], [ 143.391466, -12.884773 ], [ 143.392776, -12.897983 ], [ 143.401416, -12.900213 ], [ 143.405120, -12.867803 ], [ 143.449499, -12.848823 ], [ 143.475459, -12.864103 ], [ 143.502498, -12.858603 ], [ 143.533628, -12.838973 ], [ 143.544117, -12.842773 ], [ 143.512348, -12.903583 ], [ 143.498648, -12.949623 ], [ 143.512858, -12.962453 ], [ 143.504298, -12.986533 ], [ 143.515448, -13.007853 ], [ 143.503408, -13.109882 ], [ 143.507368, -13.152892 ], [ 143.523068, -13.176492 ], [ 143.515869, -13.259291 ], [ 143.533418, -13.341301 ], [ 143.557388, -13.365201 ], [ 143.580587, -13.371951 ], [ 143.598187, -13.422310 ], [ 143.579913, -13.485720 ], [ 143.584876, -13.478674 ], [ 143.579608, -13.510310 ], [ 143.587831, -13.532395 ], [ 143.543529, -13.638879 ], [ 143.550189, -13.631199 ], [ 143.543030, -13.719418 ], [ 143.531740, -13.754558 ], [ 143.545560, -13.800278 ], [ 143.591350, -13.857577 ], [ 143.601575, -13.914237 ], [ 143.622395, -13.967536 ], [ 143.681059, -14.014576 ], [ 143.703690, -14.126626 ], [ 143.698480, -14.180085 ], [ 143.703800, -14.208565 ], [ 143.730390, -14.266395 ], [ 143.745771, -14.333114 ], [ 143.781071, -14.399224 ], [ 143.819120, -14.441843 ], [ 143.884420, -14.482093 ], [ 143.932300, -14.483533 ], [ 143.948280, -14.495552 ], [ 143.960259, -14.484892 ], [ 144.029259, -14.481322 ], [ 144.095208, -14.445142 ], [ 144.130827, -14.402042 ], [ 144.141677, -14.405022 ], [ 144.151137, -14.389712 ], [ 144.168306, -14.381412 ], [ 144.196716, -14.339412 ], [ 144.196065, -14.260973 ], [ 144.208905, -14.262473 ], [ 144.216345, -14.254143 ], [ 144.231915, -14.269092 ], [ 144.244555, -14.264172 ], [ 144.262295, -14.290752 ], [ 144.281934, -14.302552 ], [ 144.293414, -14.297952 ], [ 144.315604, -14.308632 ], [ 144.343043, -14.307922 ], [ 144.359763, -14.291142 ], [ 144.374703, -14.291072 ], [ 144.396752, -14.273062 ], [ 144.436141, -14.258592 ], [ 144.465391, -14.227732 ], [ 144.491450, -14.166023 ], [ 144.516210, -14.166643 ], [ 144.558109, -14.228472 ], [ 144.577539, -14.235062 ], [ 144.576479, -14.247362 ], [ 144.596249, -14.260612 ], [ 144.581119, -14.306081 ], [ 144.587040, -14.360741 ], [ 144.622369, -14.362041 ], [ 144.644159, -14.348301 ], [ 144.651099, -14.358361 ], [ 144.620731, -14.437460 ], [ 144.614721, -14.430670 ], [ 144.621871, -14.445820 ], [ 144.618812, -14.475390 ], [ 144.665112, -14.511040 ], [ 144.679311, -14.546729 ], [ 144.693331, -14.553299 ], [ 144.692962, -14.567079 ], [ 144.695181, -14.555449 ], [ 144.715111, -14.561019 ], [ 144.774260, -14.545499 ], [ 144.782671, -14.593619 ], [ 144.838781, -14.614338 ], [ 144.910229, -14.614048 ], [ 144.923899, -14.638778 ], [ 144.923840, -14.663168 ], [ 144.942680, -14.663748 ], [ 144.950221, -14.677187 ], [ 144.956112, -14.744837 ], [ 144.961102, -14.738857 ], [ 144.981992, -14.749587 ], [ 144.980012, -14.755117 ], [ 144.993822, -14.751967 ], [ 144.994052, -14.763596 ], [ 145.004272, -14.751736 ], [ 145.004732, -14.772406 ], [ 145.021562, -14.782686 ], [ 145.024112, -14.795106 ], [ 145.090172, -14.802785 ], [ 145.135112, -14.834964 ], [ 145.190621, -14.843184 ], [ 145.188641, -14.837424 ], [ 145.229631, -14.831414 ], [ 145.220029, -14.882814 ], [ 145.264669, -14.926825 ], [ 145.282239, -14.955165 ], [ 145.298157, -14.963165 ], [ 145.314186, -14.953105 ], [ 145.332776, -14.955005 ], [ 145.340665, -14.945055 ], [ 145.351825, -14.951025 ], [ 145.354425, -14.982535 ], [ 145.289367, -15.042444 ], [ 145.233790, -15.139043 ], [ 145.240000, -15.150834 ], [ 145.238210, -15.195553 ], [ 145.263337, -15.251053 ], [ 145.271207, -15.258093 ], [ 145.314836, -15.258792 ], [ 145.339456, -15.226402 ], [ 145.356166, -15.276531 ], [ 145.329736, -15.278191 ], [ 145.285636, -15.316242 ], [ 145.282996, -15.328312 ], [ 145.297105, -15.343302 ], [ 145.284765, -15.363112 ], [ 145.287255, -15.375332 ], [ 145.247296, -15.416212 ], [ 145.240617, -15.460111 ], [ 145.228487, -15.461961 ], [ 145.240813, -15.466201 ], [ 145.251703, -15.457451 ], [ 145.261600, -15.459583 ], [ 145.283008, -15.498540 ], [ 145.272518, -15.517910 ], [ 145.272019, -15.541291 ], [ 145.287289, -15.559111 ], [ 145.304239, -15.551411 ], [ 145.322768, -15.570271 ], [ 145.319399, -15.586971 ], [ 145.328879, -15.601031 ], [ 145.316379, -15.605362 ], [ 145.319130, -15.632262 ], [ 145.312750, -15.646802 ], [ 145.333050, -15.662612 ], [ 145.335500, -15.681492 ], [ 145.361279, -15.719592 ], [ 145.368609, -15.762102 ], [ 145.351779, -15.806742 ], [ 145.358289, -15.830392 ], [ 145.376669, -15.838852 ], [ 145.356410, -15.890132 ], [ 145.357340, -15.910472 ], [ 145.362645, -15.922011 ], [ 145.382119, -15.924162 ], [ 145.413839, -15.951002 ], [ 145.434348, -15.998091 ], [ 145.450718, -16.009321 ], [ 145.463617, -16.035981 ], [ 145.464827, -16.066401 ], [ 145.476887, -16.076101 ], [ 145.451968, -16.141161 ], [ 145.439888, -16.141941 ], [ 145.450448, -16.142751 ], [ 145.441278, -16.174651 ], [ 145.444913, -16.200870 ], [ 145.469257, -16.210901 ], [ 145.470347, -16.235841 ], [ 145.481937, -16.241411 ], [ 145.478937, -16.267991 ], [ 145.488897, -16.276681 ], [ 145.447568, -16.289641 ], [ 145.418168, -16.338301 ], [ 145.412129, -16.376181 ], [ 145.419868, -16.387931 ], [ 145.404883, -16.433469 ], [ 145.410108, -16.459290 ], [ 145.432268, -16.476570 ], [ 145.442218, -16.472370 ], [ 145.468583, -16.479899 ], [ 145.470043, -16.514379 ], [ 145.500033, -16.552869 ], [ 145.513664, -16.584406 ], [ 145.522083, -16.586255 ], [ 145.523001, -16.600962 ], [ 145.564978, -16.643166 ], [ 145.581937, -16.687196 ], [ 145.621530, -16.699544 ], [ 145.651225, -16.729489 ], [ 145.670996, -16.737356 ], [ 145.682708, -16.775579 ], [ 145.695344, -16.775609 ], [ 145.714992, -16.802725 ], [ 145.724854, -16.803881 ], [ 145.744836, -16.845446 ], [ 145.774867, -16.870016 ], [ 145.765473, -16.869253 ], [ 145.777029, -16.880369 ], [ 145.768622, -16.882253 ], [ 145.762438, -16.897883 ], [ 145.764944, -16.907311 ], [ 145.782282, -16.916654 ], [ 145.779215, -16.940451 ], [ 145.785005, -16.941120 ], [ 145.793096, -16.910558 ], [ 145.810054, -16.909296 ], [ 145.848883, -16.871187 ], [ 145.869750, -16.906641 ], [ 145.906489, -16.897216 ], [ 145.919205, -16.864294 ], [ 145.957650, -16.896578 ], [ 145.956178, -16.905488 ], [ 145.944284, -16.906528 ], [ 145.931008, -16.922994 ], [ 145.934326, -16.947528 ], [ 145.900704, -16.981681 ], [ 145.889406, -17.057605 ], [ 145.916021, -17.087024 ], [ 145.929016, -17.117334 ], [ 145.949206, -17.130704 ], [ 145.952926, -17.157714 ], [ 145.964546, -17.168464 ], [ 145.961341, -17.190143 ], [ 145.971611, -17.242033 ], [ 145.995681, -17.273253 ], [ 146.020756, -17.346753 ], [ 146.050956, -17.384523 ], [ 146.073196, -17.394723 ], [ 146.064886, -17.458893 ], [ 146.077936, -17.478233 ], [ 146.076972, -17.504552 ], [ 146.051617, -17.505453 ], [ 146.057537, -17.507143 ], [ 146.056347, -17.520933 ], [ 146.036087, -17.523053 ], [ 146.032707, -17.512255 ], [ 146.027815, -17.550271 ], [ 146.033216, -17.525349 ], [ 146.058607, -17.524883 ], [ 146.060287, -17.511283 ], [ 146.068176, -17.510403 ], [ 146.092116, -17.561573 ], [ 146.127926, -17.592542 ], [ 146.128606, -17.599332 ], [ 146.112666, -17.608882 ], [ 146.125846, -17.612542 ], [ 146.126126, -17.601472 ], [ 146.132366, -17.601382 ], [ 146.140586, -17.639712 ], [ 146.149046, -17.648552 ], [ 146.113397, -17.692952 ], [ 146.104528, -17.727952 ], [ 146.111788, -17.771592 ], [ 146.090909, -17.799982 ], [ 146.105828, -17.815632 ], [ 146.099739, -17.833242 ], [ 146.106509, -17.852022 ], [ 146.119588, -17.855802 ], [ 146.097949, -17.896852 ], [ 146.091528, -17.955120 ], [ 146.101389, -17.976861 ], [ 146.094319, -17.973781 ], [ 146.073860, -17.989941 ], [ 146.041036, -18.043660 ], [ 146.027261, -18.091021 ], [ 146.008032, -18.120531 ], [ 146.016188, -18.245019 ], [ 146.081542, -18.314669 ], [ 146.085113, -18.331279 ], [ 146.102762, -18.348539 ], [ 146.133202, -18.368729 ], [ 146.141122, -18.364079 ], [ 146.159162, -18.396929 ], [ 146.161223, -18.424498 ], [ 146.173552, -18.434868 ], [ 146.167503, -18.445338 ], [ 146.190742, -18.443998 ], [ 146.200462, -18.452338 ], [ 146.188522, -18.460048 ], [ 146.189373, -18.473828 ], [ 146.213052, -18.472768 ], [ 146.225892, -18.498278 ], [ 146.257262, -18.494938 ], [ 146.267952, -18.505198 ], [ 146.290691, -18.506847 ], [ 146.313471, -18.521937 ], [ 146.337881, -18.526627 ], [ 146.345431, -18.559257 ], [ 146.321141, -18.557277 ], [ 146.334071, -18.565267 ], [ 146.322262, -18.577727 ], [ 146.339171, -18.564467 ], [ 146.341551, -18.570227 ], [ 146.338922, -18.606837 ], [ 146.319377, -18.646066 ], [ 146.332142, -18.640977 ], [ 146.339212, -18.623337 ], [ 146.338512, -18.630337 ], [ 146.301843, -18.705106 ], [ 146.273274, -18.811606 ], [ 146.273046, -18.860081 ], [ 146.289834, -18.891896 ], [ 146.321254, -18.923686 ], [ 146.335829, -18.955955 ], [ 146.363769, -18.967975 ], [ 146.380119, -18.997654 ], [ 146.396268, -18.998504 ], [ 146.454158, -19.073694 ], [ 146.472922, -19.076499 ], [ 146.490402, -19.095135 ], [ 146.516612, -19.099867 ], [ 146.562233, -19.142458 ], [ 146.597675, -19.148266 ], [ 146.619064, -19.166734 ], [ 146.678484, -19.190592 ], [ 146.714220, -19.193935 ], [ 146.723095, -19.181596 ], [ 146.751196, -19.184335 ], [ 146.730586, -19.181629 ], [ 146.736162, -19.180332 ], [ 146.767909, -19.184747 ], [ 146.790875, -19.240479 ], [ 146.805157, -19.238539 ], [ 146.820076, -19.253125 ], [ 146.833297, -19.243609 ], [ 146.826132, -19.255370 ], [ 146.835727, -19.242859 ], [ 146.846774, -19.255496 ], [ 146.835115, -19.270653 ], [ 146.847858, -19.273273 ], [ 146.842853, -19.274131 ], [ 146.882572, -19.303572 ], [ 146.942462, -19.295367 ], [ 146.958030, -19.308763 ], [ 146.960511, -19.293305 ], [ 146.978229, -19.284667 ], [ 147.001846, -19.249380 ], [ 147.002298, -19.234673 ], [ 147.021775, -19.215849 ], [ 147.016266, -19.182294 ], [ 147.039992, -19.206935 ], [ 147.044939, -19.237325 ], [ 147.060578, -19.256310 ], [ 147.061436, -19.276699 ], [ 147.046654, -19.274518 ], [ 147.039126, -19.296994 ], [ 147.047864, -19.299327 ], [ 147.064978, -19.342182 ], [ 147.113928, -19.387779 ], [ 147.110219, -19.397100 ], [ 147.126100, -19.422471 ], [ 147.135756, -19.417600 ], [ 147.135054, -19.406806 ], [ 147.161539, -19.405439 ], [ 147.212841, -19.423941 ], [ 147.234598, -19.418630 ], [ 147.246905, -19.432460 ], [ 147.304177, -19.407635 ], [ 147.410445, -19.425960 ], [ 147.441009, -19.421161 ], [ 147.455161, -19.395188 ], [ 147.446045, -19.365197 ], [ 147.417069, -19.333208 ], [ 147.421087, -19.322341 ], [ 147.457200, -19.374345 ], [ 147.486996, -19.465523 ], [ 147.501095, -19.485051 ], [ 147.510235, -19.484808 ], [ 147.500249, -19.469631 ], [ 147.507735, -19.476318 ], [ 147.559283, -19.550510 ], [ 147.580988, -19.624886 ], [ 147.574092, -19.629301 ], [ 147.585439, -19.648531 ], [ 147.600985, -19.646408 ], [ 147.615437, -19.673100 ], [ 147.616991, -19.685965 ], [ 147.599654, -19.687040 ], [ 147.586804, -19.725095 ], [ 147.601361, -19.757456 ], [ 147.663298, -19.809681 ], [ 147.671351, -19.828357 ], [ 147.705920, -19.832018 ], [ 147.699507, -19.835572 ], [ 147.707429, -19.840872 ], [ 147.703843, -19.836084 ], [ 147.738402, -19.847056 ], [ 147.760707, -19.841212 ], [ 147.773234, -19.826567 ], [ 147.766767, -19.815720 ], [ 147.780695, -19.817997 ], [ 147.776332, -19.807068 ], [ 147.782421, -19.805358 ], [ 147.771729, -19.803795 ], [ 147.767967, -19.794397 ], [ 147.777875, -19.788982 ], [ 147.769586, -19.791693 ], [ 147.771169, -19.786103 ], [ 147.767568, -19.790298 ], [ 147.767896, -19.783452 ], [ 147.744959, -19.769102 ], [ 147.761022, -19.727363 ], [ 147.752342, -19.706598 ], [ 147.823550, -19.709652 ], [ 147.851391, -19.739251 ], [ 147.845667, -19.782071 ], [ 147.864839, -19.850986 ], [ 147.917833, -19.908314 ], [ 147.992180, -19.927621 ], [ 148.017560, -19.913135 ], [ 148.026229, -19.894015 ], [ 148.080109, -19.881865 ], [ 148.097219, -19.924945 ], [ 148.111949, -19.941575 ], [ 148.164528, -19.957954 ], [ 148.186208, -19.944074 ], [ 148.220127, -19.956044 ], [ 148.239247, -19.984565 ], [ 148.255476, -19.986003 ], [ 148.260137, -19.976814 ], [ 148.266897, -19.985984 ], [ 148.267497, -20.023654 ], [ 148.259240, -20.012547 ], [ 148.248892, -20.017802 ], [ 148.251479, -20.024241 ], [ 148.248641, -20.017995 ], [ 148.239668, -20.021594 ], [ 148.228018, -20.035494 ], [ 148.230578, -20.045324 ], [ 148.270267, -20.070613 ], [ 148.266597, -20.078323 ], [ 148.274777, -20.072213 ], [ 148.283517, -20.077473 ], [ 148.274217, -20.086573 ], [ 148.277677, -20.099563 ], [ 148.303397, -20.110673 ], [ 148.320827, -20.136103 ], [ 148.338647, -20.139583 ], [ 148.352527, -20.162703 ], [ 148.369406, -20.156962 ], [ 148.396116, -20.169042 ], [ 148.396146, -20.161722 ], [ 148.421776, -20.160522 ], [ 148.434856, -20.168462 ], [ 148.441666, -20.149432 ], [ 148.465955, -20.138392 ], [ 148.478765, -20.116602 ], [ 148.443805, -20.111202 ], [ 148.441465, -20.074542 ], [ 148.452014, -20.059357 ], [ 148.474521, -20.064583 ], [ 148.487234, -20.081482 ], [ 148.494194, -20.079252 ], [ 148.495044, -20.088462 ], [ 148.513314, -20.093272 ], [ 148.529864, -20.093762 ], [ 148.540884, -20.076322 ], [ 148.562873, -20.066731 ], [ 148.566083, -20.082151 ], [ 148.552724, -20.094191 ], [ 148.554834, -20.113871 ], [ 148.567884, -20.118811 ], [ 148.566974, -20.132731 ], [ 148.578393, -20.127301 ], [ 148.579903, -20.134421 ], [ 148.565994, -20.150001 ], [ 148.576944, -20.154511 ], [ 148.570314, -20.170281 ], [ 148.598013, -20.166331 ], [ 148.582774, -20.181651 ], [ 148.582644, -20.197641 ], [ 148.599234, -20.201281 ], [ 148.619933, -20.176701 ], [ 148.601154, -20.210931 ], [ 148.614644, -20.220381 ], [ 148.630043, -20.219521 ], [ 148.628603, -20.190981 ], [ 148.639393, -20.170921 ], [ 148.646263, -20.178171 ], [ 148.642903, -20.213891 ], [ 148.652973, -20.216140 ], [ 148.677932, -20.178690 ], [ 148.660643, -20.216700 ], [ 148.667703, -20.233350 ], [ 148.662783, -20.247480 ], [ 148.678973, -20.230980 ], [ 148.685113, -20.241400 ], [ 148.673151, -20.282328 ], [ 148.689291, -20.278935 ], [ 148.693727, -20.270449 ], [ 148.702819, -20.273368 ], [ 148.708756, -20.262698 ], [ 148.738593, -20.281753 ], [ 148.733082, -20.253784 ], [ 148.753196, -20.264379 ], [ 148.752342, -20.235680 ], [ 148.769282, -20.235960 ], [ 148.777648, -20.274114 ], [ 148.801845, -20.277982 ], [ 148.790971, -20.278788 ], [ 148.793544, -20.291250 ], [ 148.766376, -20.286925 ], [ 148.769116, -20.299708 ], [ 148.792996, -20.313718 ], [ 148.791925, -20.321269 ], [ 148.816349, -20.321452 ], [ 148.822346, -20.331937 ], [ 148.807002, -20.342616 ], [ 148.816608, -20.343832 ], [ 148.818407, -20.354473 ], [ 148.825698, -20.337722 ], [ 148.840711, -20.351944 ], [ 148.837212, -20.366232 ], [ 148.827887, -20.365425 ], [ 148.831062, -20.384403 ], [ 148.816384, -20.384908 ], [ 148.820008, -20.392198 ], [ 148.823733, -20.386794 ], [ 148.839583, -20.391641 ], [ 148.838684, -20.430952 ], [ 148.846807, -20.431738 ], [ 148.880240, -20.472264 ], [ 148.902785, -20.467044 ], [ 148.911230, -20.479457 ], [ 148.890949, -20.477035 ], [ 148.884123, -20.488102 ], [ 148.919725, -20.513640 ], [ 148.930143, -20.533787 ], [ 148.906041, -20.535454 ], [ 148.899025, -20.545231 ], [ 148.884806, -20.523211 ], [ 148.856860, -20.527893 ], [ 148.856562, -20.515517 ], [ 148.850387, -20.510276 ], [ 148.846327, -20.515312 ], [ 148.844955, -20.503168 ], [ 148.821488, -20.496763 ], [ 148.823216, -20.477737 ], [ 148.831079, -20.475004 ], [ 148.817398, -20.459189 ], [ 148.823336, -20.449580 ], [ 148.831756, -20.450811 ], [ 148.824021, -20.426102 ], [ 148.820537, -20.443540 ], [ 148.813447, -20.439920 ], [ 148.813726, -20.420824 ], [ 148.800674, -20.423677 ], [ 148.790881, -20.415232 ], [ 148.793852, -20.453660 ], [ 148.785911, -20.430393 ], [ 148.756130, -20.418920 ], [ 148.775656, -20.431747 ], [ 148.784429, -20.451789 ], [ 148.782173, -20.464256 ], [ 148.763609, -20.479701 ], [ 148.752566, -20.472877 ], [ 148.736461, -20.482013 ], [ 148.692808, -20.441293 ], [ 148.684255, -20.436008 ], [ 148.680172, -20.441259 ], [ 148.692066, -20.446153 ], [ 148.692698, -20.462628 ], [ 148.713484, -20.483623 ], [ 148.715093, -20.494840 ], [ 148.662046, -20.585768 ], [ 148.690309, -20.599090 ], [ 148.686869, -20.620521 ], [ 148.699939, -20.639731 ], [ 148.718060, -20.642498 ], [ 148.727163, -20.633001 ], [ 148.730859, -20.644586 ], [ 148.706317, -20.670681 ], [ 148.732576, -20.688476 ], [ 148.730798, -20.716657 ], [ 148.758577, -20.724379 ], [ 148.766828, -20.734395 ], [ 148.777901, -20.732122 ], [ 148.780810, -20.762469 ], [ 148.802670, -20.775879 ], [ 148.829660, -20.776589 ], [ 148.840790, -20.791109 ], [ 148.814660, -20.791019 ], [ 148.820430, -20.799629 ], [ 148.813280, -20.803679 ], [ 148.796290, -20.796999 ], [ 148.800820, -20.806699 ], [ 148.787301, -20.816599 ], [ 148.811190, -20.814179 ], [ 148.820245, -20.832048 ], [ 148.823860, -20.821449 ], [ 148.838890, -20.824539 ], [ 148.849440, -20.846558 ], [ 148.832470, -20.849719 ], [ 148.847055, -20.855967 ], [ 148.843075, -20.875967 ], [ 148.866225, -20.867587 ], [ 148.875450, -20.883038 ], [ 148.874915, -20.862527 ], [ 148.884825, -20.848777 ], [ 148.880975, -20.856047 ], [ 148.892585, -20.862157 ], [ 148.890180, -20.877908 ], [ 148.915065, -20.891977 ], [ 148.927934, -20.883797 ], [ 148.938464, -20.888287 ], [ 148.951184, -20.875587 ], [ 148.971014, -20.900376 ], [ 148.995409, -20.892247 ], [ 149.005394, -20.912346 ], [ 149.017403, -20.912206 ], [ 149.029033, -20.897706 ], [ 149.046113, -20.903015 ], [ 149.046153, -20.919995 ], [ 149.058963, -20.928685 ], [ 149.028223, -20.923366 ], [ 149.011654, -20.935396 ], [ 149.030694, -20.956846 ], [ 149.015949, -20.954407 ], [ 149.021634, -20.962556 ], [ 149.015164, -20.967326 ], [ 149.019894, -20.975846 ], [ 149.014244, -20.991906 ], [ 149.041614, -20.989315 ], [ 149.050123, -20.978825 ], [ 149.064828, -20.985346 ], [ 149.066118, -20.995176 ], [ 149.067978, -20.984136 ], [ 149.085758, -20.989966 ], [ 149.064883, -20.974855 ], [ 149.088933, -20.975915 ], [ 149.108093, -20.998435 ], [ 149.128642, -21.006634 ], [ 149.122743, -21.033304 ], [ 149.131763, -21.031464 ], [ 149.132972, -20.996144 ], [ 149.158072, -21.000314 ], [ 149.157542, -21.016234 ], [ 149.170522, -21.042154 ], [ 149.174732, -21.032668 ], [ 149.186722, -21.034064 ], [ 149.205562, -21.076763 ], [ 149.227032, -21.062793 ], [ 149.223252, -21.103103 ], [ 149.231109, -21.109737 ], [ 149.223573, -21.118223 ], [ 149.222753, -21.147693 ], [ 149.209083, -21.131273 ], [ 149.216853, -21.122653 ], [ 149.209433, -21.130033 ], [ 149.196026, -21.125687 ], [ 149.192723, -21.132243 ], [ 149.204033, -21.132753 ], [ 149.199243, -21.137633 ], [ 149.163474, -21.132023 ], [ 149.152814, -21.143013 ], [ 149.172634, -21.134123 ], [ 149.215163, -21.145353 ], [ 149.199823, -21.158963 ], [ 149.192474, -21.182703 ], [ 149.195984, -21.211013 ], [ 149.185574, -21.198633 ], [ 149.173918, -21.198783 ], [ 149.214069, -21.241534 ], [ 149.199274, -21.268113 ], [ 149.181725, -21.274403 ], [ 149.179245, -21.284683 ], [ 149.201364, -21.277253 ], [ 149.189155, -21.294003 ], [ 149.198084, -21.296443 ], [ 149.224904, -21.263713 ], [ 149.255873, -21.244713 ], [ 149.273993, -21.277593 ], [ 149.298663, -21.273292 ], [ 149.291203, -21.318022 ], [ 149.301543, -21.335132 ], [ 149.297233, -21.340672 ], [ 149.315143, -21.354472 ], [ 149.308573, -21.364672 ], [ 149.311850, -21.374250 ], [ 149.318603, -21.369572 ], [ 149.317293, -21.392722 ], [ 149.306444, -21.391423 ], [ 149.302154, -21.400023 ], [ 149.276174, -21.389093 ], [ 149.283194, -21.394693 ], [ 149.276359, -21.400724 ], [ 149.288904, -21.401673 ], [ 149.282184, -21.409603 ], [ 149.295364, -21.415743 ], [ 149.331263, -21.410262 ], [ 149.338223, -21.426922 ], [ 149.335483, -21.432352 ], [ 149.322024, -21.418312 ], [ 149.312554, -21.426832 ], [ 149.297954, -21.426223 ], [ 149.289124, -21.463072 ], [ 149.298454, -21.470812 ], [ 149.274255, -21.477703 ], [ 149.289045, -21.491282 ], [ 149.290455, -21.506842 ], [ 149.300485, -21.511112 ], [ 149.307665, -21.499432 ], [ 149.326874, -21.505092 ], [ 149.309214, -21.496712 ], [ 149.334729, -21.486543 ], [ 149.339589, -21.474553 ], [ 149.357094, -21.496232 ], [ 149.350059, -21.509373 ], [ 149.395788, -21.493103 ], [ 149.373619, -21.535083 ], [ 149.398989, -21.540593 ], [ 149.392779, -21.549993 ], [ 149.400439, -21.560443 ], [ 149.408694, -21.558751 ], [ 149.400444, -21.558961 ], [ 149.400979, -21.549823 ], [ 149.414233, -21.546251 ], [ 149.437813, -21.553781 ], [ 149.444238, -21.577572 ], [ 149.422019, -21.575102 ], [ 149.436898, -21.579872 ], [ 149.432349, -21.584292 ], [ 149.449683, -21.578201 ], [ 149.443393, -21.593361 ], [ 149.453323, -21.581671 ], [ 149.453323, -21.562711 ], [ 149.465008, -21.561192 ], [ 149.457373, -21.555811 ], [ 149.472358, -21.559562 ], [ 149.457713, -21.553101 ], [ 149.468202, -21.534871 ], [ 149.484592, -21.531711 ], [ 149.486188, -21.570652 ], [ 149.477748, -21.571612 ], [ 149.473293, -21.589341 ], [ 149.453473, -21.602891 ], [ 149.438644, -21.639991 ], [ 149.455934, -21.679621 ], [ 149.444764, -21.687921 ], [ 149.452744, -21.688321 ], [ 149.458184, -21.708031 ], [ 149.449284, -21.713171 ], [ 149.470634, -21.708411 ], [ 149.479704, -21.742890 ], [ 149.455057, -21.731123 ], [ 149.439715, -21.743471 ], [ 149.425215, -21.743441 ], [ 149.421650, -21.771692 ], [ 149.430795, -21.745901 ], [ 149.434306, -21.818100 ], [ 149.438966, -21.810400 ], [ 149.458355, -21.817500 ], [ 149.463105, -21.822210 ], [ 149.455936, -21.830100 ], [ 149.471685, -21.838520 ], [ 149.462276, -21.875930 ], [ 149.465736, -21.902540 ], [ 149.459826, -21.904040 ], [ 149.465416, -21.925680 ], [ 149.485256, -21.958500 ], [ 149.490087, -21.989500 ], [ 149.523372, -22.027111 ], [ 149.517052, -22.075320 ], [ 149.543228, -22.134179 ], [ 149.553658, -22.140479 ], [ 149.558938, -22.168229 ], [ 149.566948, -22.171939 ], [ 149.554378, -22.187319 ], [ 149.562268, -22.191469 ], [ 149.574128, -22.233208 ], [ 149.598798, -22.253918 ], [ 149.603203, -22.271639 ], [ 149.597293, -22.281469 ], [ 149.629358, -22.297178 ], [ 149.656283, -22.336049 ], [ 149.658283, -22.354889 ], [ 149.684217, -22.345097 ], [ 149.710507, -22.369737 ], [ 149.713257, -22.356637 ], [ 149.731057, -22.347777 ], [ 149.766696, -22.371347 ], [ 149.746857, -22.386997 ], [ 149.743592, -22.421438 ], [ 149.752103, -22.436384 ], [ 149.774279, -22.415920 ], [ 149.784309, -22.380323 ], [ 149.811071, -22.382068 ], [ 149.849895, -22.416176 ], [ 149.888260, -22.492757 ], [ 149.962830, -22.539457 ], [ 149.991289, -22.586706 ], [ 149.991370, -22.601826 ], [ 150.003914, -22.608705 ], [ 150.018199, -22.639636 ], [ 150.046749, -22.661066 ], [ 150.010519, -22.581976 ], [ 150.002839, -22.530116 ], [ 149.984749, -22.506977 ], [ 149.976789, -22.473387 ], [ 149.912858, -22.342687 ], [ 149.961867, -22.343817 ], [ 149.932098, -22.333577 ], [ 149.971857, -22.329777 ], [ 149.914938, -22.321237 ], [ 149.922368, -22.305077 ], [ 149.915778, -22.295177 ], [ 149.917967, -22.274397 ], [ 149.931137, -22.264297 ], [ 149.955936, -22.185317 ], [ 150.001079, -22.143836 ], [ 150.035524, -22.146437 ], [ 150.030279, -22.136456 ], [ 150.042988, -22.126106 ], [ 150.052448, -22.135446 ], [ 150.059018, -22.132686 ], [ 150.065568, -22.152926 ], [ 150.080833, -22.151857 ], [ 150.099653, -22.212336 ], [ 150.092564, -22.217556 ], [ 150.151598, -22.259825 ], [ 150.157403, -22.304966 ], [ 150.192233, -22.325246 ], [ 150.178843, -22.340896 ], [ 150.177423, -22.360496 ], [ 150.205838, -22.369094 ], [ 150.217108, -22.393924 ], [ 150.293686, -22.403134 ], [ 150.300536, -22.397664 ], [ 150.301027, -22.421344 ], [ 150.322206, -22.426824 ], [ 150.331906, -22.440323 ], [ 150.383866, -22.465443 ], [ 150.402890, -22.481274 ], [ 150.405021, -22.498314 ], [ 150.424345, -22.498903 ], [ 150.435425, -22.508913 ], [ 150.430725, -22.517263 ], [ 150.439275, -22.512443 ], [ 150.448670, -22.534734 ], [ 150.450725, -22.522673 ], [ 150.483905, -22.534313 ], [ 150.497645, -22.560233 ], [ 150.501670, -22.543484 ], [ 150.488680, -22.529174 ], [ 150.486200, -22.521384 ], [ 150.491779, -22.521424 ], [ 150.502094, -22.537953 ], [ 150.544769, -22.561384 ], [ 150.537870, -22.572384 ], [ 150.514800, -22.557444 ], [ 150.522485, -22.567523 ], [ 150.515765, -22.572433 ], [ 150.532524, -22.573123 ], [ 150.530390, -22.581344 ], [ 150.544059, -22.573554 ], [ 150.529840, -22.602304 ], [ 150.538025, -22.598413 ], [ 150.548565, -22.617093 ], [ 150.537365, -22.590183 ], [ 150.547444, -22.576043 ], [ 150.559934, -22.603412 ], [ 150.551534, -22.566492 ], [ 150.562364, -22.564322 ], [ 150.573019, -22.577264 ], [ 150.591803, -22.574782 ], [ 150.588413, -22.559092 ], [ 150.597558, -22.559433 ], [ 150.585279, -22.555244 ], [ 150.581708, -22.545414 ], [ 150.587458, -22.544174 ], [ 150.569588, -22.527184 ], [ 150.568933, -22.504732 ], [ 150.552458, -22.483994 ], [ 150.574145, -22.482119 ], [ 150.556283, -22.477022 ], [ 150.533073, -22.450022 ], [ 150.534573, -22.445182 ], [ 150.590022, -22.464062 ], [ 150.575547, -22.451013 ], [ 150.539083, -22.442962 ], [ 150.539942, -22.426962 ], [ 150.556417, -22.430584 ], [ 150.541432, -22.422692 ], [ 150.544817, -22.408894 ], [ 150.529952, -22.402422 ], [ 150.539347, -22.351894 ], [ 150.561946, -22.316763 ], [ 150.604135, -22.335093 ], [ 150.625910, -22.327672 ], [ 150.645790, -22.345502 ], [ 150.640065, -22.363963 ], [ 150.617505, -22.347693 ], [ 150.642500, -22.379642 ], [ 150.623376, -22.388433 ], [ 150.615216, -22.381843 ], [ 150.618636, -22.389643 ], [ 150.610936, -22.388893 ], [ 150.630696, -22.399413 ], [ 150.643870, -22.391262 ], [ 150.657780, -22.414242 ], [ 150.650201, -22.421522 ], [ 150.627986, -22.421043 ], [ 150.646286, -22.423983 ], [ 150.627336, -22.441673 ], [ 150.655290, -22.422112 ], [ 150.650306, -22.439003 ], [ 150.666336, -22.454103 ], [ 150.661376, -22.419463 ], [ 150.672305, -22.402503 ], [ 150.650465, -22.368993 ], [ 150.667129, -22.346542 ], [ 150.680935, -22.366263 ], [ 150.678459, -22.374691 ], [ 150.687049, -22.377111 ], [ 150.693215, -22.430603 ], [ 150.716555, -22.443822 ], [ 150.753324, -22.446292 ], [ 150.747379, -22.453011 ], [ 150.758515, -22.468872 ], [ 150.748255, -22.477502 ], [ 150.740880, -22.473381 ], [ 150.730955, -22.485062 ], [ 150.723931, -22.518601 ], [ 150.697536, -22.506053 ], [ 150.696196, -22.489583 ], [ 150.685971, -22.492441 ], [ 150.678336, -22.473233 ], [ 150.671906, -22.472853 ], [ 150.681416, -22.484753 ], [ 150.673656, -22.482333 ], [ 150.674301, -22.494732 ], [ 150.644267, -22.474283 ], [ 150.673771, -22.501042 ], [ 150.664957, -22.508883 ], [ 150.667047, -22.522543 ], [ 150.688867, -22.544663 ], [ 150.679552, -22.573452 ], [ 150.685717, -22.577683 ], [ 150.681407, -22.567843 ], [ 150.691721, -22.553582 ], [ 150.717236, -22.553633 ], [ 150.724826, -22.563153 ], [ 150.718972, -22.600202 ], [ 150.732174, -22.623428 ], [ 150.714551, -22.633365 ], [ 150.715323, -22.623442 ], [ 150.694127, -22.606373 ], [ 150.707253, -22.636196 ], [ 150.727109, -22.633811 ], [ 150.733302, -22.641393 ], [ 150.728307, -22.633119 ], [ 150.736141, -22.623572 ], [ 150.748397, -22.635896 ], [ 150.758852, -22.626706 ], [ 150.748735, -22.633605 ], [ 150.738273, -22.624083 ], [ 150.751641, -22.621591 ], [ 150.743647, -22.617273 ], [ 150.741311, -22.603831 ], [ 150.748526, -22.610123 ], [ 150.752966, -22.604593 ], [ 150.740966, -22.600573 ], [ 150.742876, -22.587843 ], [ 150.748196, -22.591483 ], [ 150.744116, -22.584923 ], [ 150.753556, -22.589483 ], [ 150.748401, -22.580311 ], [ 150.756040, -22.576950 ], [ 150.762627, -22.552274 ], [ 150.774148, -22.552404 ], [ 150.756248, -22.539397 ], [ 150.754424, -22.523769 ], [ 150.783941, -22.529159 ], [ 150.789315, -22.536857 ], [ 150.780256, -22.545318 ], [ 150.790639, -22.555007 ], [ 150.784333, -22.555674 ], [ 150.779138, -22.577601 ], [ 150.777735, -22.638967 ], [ 150.786458, -22.650021 ], [ 150.803730, -22.646849 ], [ 150.804404, -22.671503 ], [ 150.812327, -22.679697 ], [ 150.835158, -22.684207 ], [ 150.821845, -22.715349 ], [ 150.825062, -22.730958 ], [ 150.812284, -22.749195 ], [ 150.805956, -22.791219 ], [ 150.815439, -22.798389 ], [ 150.806843, -22.804534 ], [ 150.810789, -22.817808 ], [ 150.803827, -22.815856 ], [ 150.796933, -22.825270 ], [ 150.789701, -22.865746 ], [ 150.786974, -22.922219 ], [ 150.799992, -22.933073 ], [ 150.777351, -22.961919 ], [ 150.771499, -23.055917 ], [ 150.749647, -23.128814 ], [ 150.774816, -23.165245 ], [ 150.794481, -23.162962 ], [ 150.792261, -23.175039 ], [ 150.799901, -23.182910 ], [ 150.793094, -23.187063 ], [ 150.791628, -23.208575 ], [ 150.787931, -23.201702 ], [ 150.798692, -23.227819 ], [ 150.819339, -23.221535 ], [ 150.821390, -23.235928 ], [ 150.828377, -23.236169 ], [ 150.825005, -23.280195 ], [ 150.789579, -23.309769 ], [ 150.767831, -23.303035 ], [ 150.775645, -23.323231 ], [ 150.792315, -23.321955 ], [ 150.799482, -23.339702 ], [ 150.793388, -23.336312 ], [ 150.790968, -23.357574 ], [ 150.810145, -23.406846 ], [ 150.871371, -23.480594 ], [ 150.860914, -23.502002 ], [ 150.850034, -23.506892 ], [ 150.796150, -23.501093 ], [ 150.789945, -23.510082 ], [ 150.878143, -23.552292 ], [ 150.876483, -23.565282 ], [ 150.834244, -23.553782 ], [ 150.833894, -23.562492 ], [ 150.866233, -23.575472 ], [ 150.857223, -23.620772 ], [ 150.874813, -23.576802 ], [ 150.934553, -23.543952 ], [ 150.959092, -23.553452 ], [ 150.959182, -23.598612 ], [ 150.932532, -23.609672 ], [ 150.925310, -23.622773 ], [ 150.968042, -23.605122 ], [ 150.975392, -23.555412 ], [ 151.026551, -23.572012 ], [ 151.037969, -23.623571 ], [ 151.041751, -23.619812 ], [ 151.046681, -23.629691 ], [ 151.040249, -23.636971 ], [ 151.047795, -23.629886 ], [ 151.068466, -23.638407 ], [ 151.084687, -23.647362 ], [ 151.079727, -23.653631 ], [ 151.085843, -23.648383 ], [ 151.092258, -23.654291 ], [ 151.086404, -23.657055 ], [ 151.097211, -23.658864 ], [ 151.088649, -23.660247 ], [ 151.109457, -23.661357 ], [ 151.121765, -23.671403 ], [ 151.134643, -23.698387 ], [ 151.111054, -23.696442 ], [ 151.117694, -23.700295 ], [ 151.109567, -23.704094 ], [ 151.124057, -23.704255 ], [ 151.123751, -23.713047 ], [ 151.132696, -23.707310 ], [ 151.151126, -23.728410 ], [ 151.159405, -23.747610 ], [ 151.144189, -23.770023 ], [ 151.172920, -23.815879 ], [ 151.191392, -23.821402 ], [ 151.192115, -23.831685 ], [ 151.193076, -23.825214 ], [ 151.236605, -23.817992 ], [ 151.244858, -23.826859 ], [ 151.235699, -23.820160 ], [ 151.232966, -23.830597 ], [ 151.271431, -23.837320 ], [ 151.278032, -23.854385 ], [ 151.296245, -23.853841 ], [ 151.297620, -23.860351 ], [ 151.318017, -23.854590 ], [ 151.315069, -23.882733 ], [ 151.302712, -23.873515 ], [ 151.304569, -23.900085 ], [ 151.324134, -23.875064 ], [ 151.354824, -23.935767 ], [ 151.366421, -23.937440 ], [ 151.426636, -23.987175 ], [ 151.429165, -24.023516 ], [ 151.435432, -24.026444 ], [ 151.424559, -24.046020 ], [ 151.435346, -24.058123 ], [ 151.437907, -24.076862 ], [ 151.447977, -24.062355 ], [ 151.442315, -24.058465 ], [ 151.448235, -24.047253 ], [ 151.440366, -24.035194 ], [ 151.443492, -24.026038 ], [ 151.457268, -24.037436 ], [ 151.455317, -24.056819 ], [ 151.460416, -24.064995 ], [ 151.461950, -24.055050 ], [ 151.466803, -24.059308 ], [ 151.465782, -24.071957 ], [ 151.471780, -24.072820 ], [ 151.471903, -24.063899 ], [ 151.480530, -24.064534 ], [ 151.484324, -24.074710 ], [ 151.493784, -24.067012 ], [ 151.479508, -24.060672 ], [ 151.474802, -24.033643 ], [ 151.470354, -24.038215 ], [ 151.441582, -24.015814 ], [ 151.440501, -23.992033 ], [ 151.467554, -23.994732 ], [ 151.543937, -24.029292 ], [ 151.544387, -24.037532 ], [ 151.526828, -24.035102 ], [ 151.501059, -24.045001 ], [ 151.526838, -24.060272 ], [ 151.517318, -24.070282 ], [ 151.524738, -24.088932 ], [ 151.547727, -24.089352 ], [ 151.545417, -24.113282 ], [ 151.552067, -24.110252 ], [ 151.552807, -24.081702 ], [ 151.555147, -24.109132 ], [ 151.559857, -24.099782 ], [ 151.563632, -24.111411 ], [ 151.560467, -24.073602 ], [ 151.580087, -24.087102 ], [ 151.575937, -24.077602 ], [ 151.555317, -24.069972 ], [ 151.564917, -24.036932 ], [ 151.573657, -24.035722 ], [ 151.582697, -24.049862 ], [ 151.610386, -24.042502 ], [ 151.621031, -24.055050 ], [ 151.634676, -24.055782 ], [ 151.645036, -24.080412 ], [ 151.651950, -24.073650 ], [ 151.657295, -24.090502 ], [ 151.665305, -24.084652 ], [ 151.671165, -24.098552 ], [ 151.675510, -24.088500 ], [ 151.678260, -24.110300 ], [ 151.682465, -24.104111 ], [ 151.684115, -24.088881 ], [ 151.664655, -24.060492 ], [ 151.685655, -24.067321 ], [ 151.677475, -24.049582 ], [ 151.669105, -24.051932 ], [ 151.651965, -24.032242 ], [ 151.637586, -24.032872 ], [ 151.646830, -24.027580 ], [ 151.632866, -24.011302 ], [ 151.634283, -24.004774 ], [ 151.630156, -24.013102 ], [ 151.604366, -24.008841 ], [ 151.610556, -23.979251 ], [ 151.644285, -23.977381 ], [ 151.673050, -23.989380 ], [ 151.697639, -24.011580 ], [ 151.730299, -24.022499 ], [ 151.704559, -24.039820 ], [ 151.711524, -24.052371 ], [ 151.702789, -24.056410 ], [ 151.715804, -24.058141 ], [ 151.720819, -24.068980 ], [ 151.715844, -24.087261 ], [ 151.732154, -24.061911 ], [ 151.725309, -24.049800 ], [ 151.738344, -24.046791 ], [ 151.741424, -24.042291 ], [ 151.734919, -24.041920 ], [ 151.744894, -24.032021 ], [ 151.738409, -24.003259 ], [ 151.753378, -24.018399 ], [ 151.764638, -24.015229 ], [ 151.767938, -24.060169 ], [ 151.786728, -24.117659 ], [ 151.771478, -24.129529 ], [ 151.784248, -24.124319 ], [ 151.785098, -24.129399 ], [ 151.784748, -24.121949 ], [ 151.793108, -24.126259 ], [ 151.804748, -24.145809 ], [ 151.840618, -24.170699 ], [ 151.821308, -24.165369 ], [ 151.835928, -24.176899 ], [ 151.875817, -24.171549 ], [ 151.849138, -24.218469 ], [ 151.878977, -24.193679 ], [ 151.869007, -24.189599 ], [ 151.882817, -24.175509 ], [ 151.886317, -24.149438 ], [ 151.906147, -24.208049 ], [ 151.920427, -24.210888 ], [ 151.943407, -24.240148 ], [ 152.005857, -24.433677 ], [ 152.040527, -24.497587 ], [ 152.057576, -24.511996 ], [ 152.044022, -24.525050 ], [ 152.058583, -24.517771 ], [ 152.064714, -24.522190 ], [ 152.092274, -24.566083 ], [ 152.148304, -24.626559 ], [ 152.206262, -24.657206 ], [ 152.274277, -24.711928 ], [ 152.347777, -24.738073 ], [ 152.333650, -24.743637 ], [ 152.365042, -24.736684 ], [ 152.346558, -24.732477 ], [ 152.378880, -24.732047 ], [ 152.396717, -24.750630 ], [ 152.391174, -24.747755 ], [ 152.377633, -24.768278 ], [ 152.381350, -24.796634 ], [ 152.384354, -24.763064 ], [ 152.412788, -24.757738 ], [ 152.421184, -24.775327 ], [ 152.468174, -24.816086 ], [ 152.494549, -24.916321 ], [ 152.486776, -24.930450 ], [ 152.486069, -24.970557 ], [ 152.550688, -25.073693 ], [ 152.542139, -25.069324 ], [ 152.533094, -25.078387 ], [ 152.536084, -25.081100 ], [ 152.533678, -25.089609 ], [ 152.546227, -25.073848 ], [ 152.577064, -25.119009 ], [ 152.633032, -25.151782 ], [ 152.617739, -25.173267 ], [ 152.577962, -25.166879 ], [ 152.555448, -25.171668 ], [ 152.540259, -25.190003 ], [ 152.547030, -25.205000 ], [ 152.548334, -25.188253 ], [ 152.557037, -25.182103 ], [ 152.614968, -25.183275 ], [ 152.649715, -25.227158 ], [ 152.644218, -25.233911 ], [ 152.651022, -25.229992 ], [ 152.663543, -25.244018 ], [ 152.722444, -25.269610 ], [ 152.806173, -25.264371 ], [ 152.804595, -25.247609 ], [ 152.813880, -25.243491 ], [ 152.827847, -25.247807 ], [ 152.834364, -25.276345 ], [ 152.859720, -25.283695 ], [ 152.899632, -25.280881 ], [ 152.914399, -25.293372 ], [ 152.901449, -25.314013 ], [ 152.917988, -25.363276 ], [ 152.909563, -25.378182 ], [ 152.924357, -25.430789 ], [ 152.909435, -25.418816 ], [ 152.896511, -25.418902 ], [ 152.889863, -25.426966 ], [ 152.908245, -25.429336 ], [ 152.871627, -25.443527 ], [ 152.850713, -25.484874 ], [ 152.823736, -25.494003 ], [ 152.848540, -25.498311 ], [ 152.885249, -25.461935 ], [ 152.927981, -25.447936 ], [ 152.934231, -25.431864 ], [ 152.956344, -25.433649 ], [ 152.948351, -25.451845 ], [ 152.941699, -25.451856 ], [ 152.946577, -25.461248 ], [ 152.926372, -25.469691 ], [ 152.896595, -25.498879 ], [ 152.895778, -25.504799 ], [ 152.903208, -25.500974 ], [ 152.909950, -25.529443 ], [ 152.897264, -25.533855 ], [ 152.902572, -25.541591 ], [ 152.875293, -25.556387 ], [ 152.861913, -25.553437 ], [ 152.877920, -25.561303 ], [ 152.877635, -25.566320 ], [ 152.883284, -25.562123 ], [ 152.884657, -25.568976 ], [ 152.880632, -25.575447 ], [ 152.877291, -25.572368 ], [ 152.875166, -25.609736 ], [ 152.892110, -25.617972 ], [ 152.901161, -25.646862 ], [ 152.896449, -25.658074 ], [ 152.911482, -25.674799 ], [ 152.883661, -25.673677 ], [ 152.878424, -25.683629 ], [ 152.920244, -25.706340 ], [ 152.907195, -25.728034 ], [ 152.916792, -25.733561 ], [ 152.912192, -25.738460 ], [ 152.937548, -25.744364 ], [ 152.937109, -25.759688 ], [ 152.956670, -25.757463 ], [ 152.973290, -25.762300 ], [ 152.976007, -25.771169 ], [ 152.971981, -25.794120 ], [ 152.950656, -25.801675 ], [ 152.939799, -25.795193 ], [ 152.936701, -25.815048 ], [ 152.941105, -25.819768 ], [ 152.949192, -25.818440 ], [ 152.944386, -25.810479 ], [ 152.978301, -25.809483 ], [ 152.983162, -25.824584 ], [ 152.987162, -25.803433 ], [ 153.020496, -25.829565 ], [ 153.025888, -25.852149 ], [ 153.015011, -25.853800 ], [ 153.016583, -25.865548 ], [ 152.993584, -25.881116 ], [ 153.010355, -25.877364 ], [ 153.009254, -25.885447 ], [ 153.022094, -25.866297 ], [ 153.031811, -25.877608 ], [ 153.029973, -25.888788 ], [ 153.025816, -25.896685 ], [ 153.019815, -25.891322 ], [ 153.003841, -25.899235 ], [ 153.009335, -25.903938 ], [ 153.001382, -25.907307 ], [ 153.016418, -25.903843 ], [ 153.006708, -25.917686 ], [ 153.015653, -25.930923 ], [ 152.997193, -25.934884 ], [ 153.031298, -25.934041 ], [ 152.998456, -25.953359 ], [ 153.003359, -25.961146 ], [ 153.009004, -25.956614 ], [ 152.999139, -25.969023 ], [ 153.007302, -25.968118 ], [ 153.005557, -25.981332 ], [ 153.016279, -25.982746 ], [ 153.011199, -25.990006 ], [ 153.016521, -25.997320 ], [ 153.018696, -25.986753 ], [ 153.026671, -25.987973 ], [ 153.014780, -25.976872 ], [ 153.031164, -25.978048 ], [ 153.023982, -25.959046 ], [ 153.030050, -25.955821 ], [ 153.039089, -25.969612 ], [ 153.042294, -25.951060 ], [ 153.032250, -25.946145 ], [ 153.040705, -25.935971 ], [ 153.049083, -25.944123 ], [ 153.046251, -25.931613 ], [ 153.056353, -25.931338 ], [ 153.027653, -25.922316 ], [ 153.024576, -25.908171 ], [ 153.034727, -25.905047 ], [ 153.029748, -25.911331 ], [ 153.037302, -25.912291 ], [ 153.051400, -25.898159 ], [ 153.050271, -25.908878 ], [ 153.058282, -25.914447 ], [ 153.052986, -25.906195 ], [ 153.057335, -25.887497 ], [ 153.066124, -25.885597 ], [ 153.061091, -25.871078 ], [ 153.047323, -25.861882 ], [ 153.046452, -25.849378 ], [ 153.054275, -25.827039 ], [ 153.071615, -25.822673 ], [ 153.046437, -25.808007 ], [ 153.072249, -25.811775 ], [ 153.085906, -25.888748 ], [ 153.119893, -25.933571 ], [ 153.161979, -25.949801 ], [ 153.176516, -25.945843 ], [ 153.182262, -25.928339 ], [ 153.192335, -25.932922 ], [ 153.152157, -26.006326 ], [ 153.113189, -26.103510 ], [ 153.076557, -26.224779 ], [ 153.061367, -26.313167 ], [ 153.063427, -26.346903 ], [ 153.077224, -26.379318 ], [ 153.092898, -26.386399 ], [ 153.107715, -26.376908 ], [ 153.119947, -26.379249 ], [ 153.091911, -26.517650 ], [ 153.102645, -26.546541 ], [ 153.098687, -26.642594 ], [ 153.108823, -26.670734 ], [ 153.127094, -26.683675 ], [ 153.139398, -26.679196 ], [ 153.136998, -26.773419 ], [ 153.151353, -26.802186 ], [ 153.124729, -26.806371 ], [ 153.119430, -26.833292 ], [ 153.109102, -26.841653 ], [ 153.112183, -26.869574 ], [ 153.102459, -26.881422 ], [ 153.094822, -26.878696 ], [ 153.101710, -26.883961 ], [ 153.092061, -26.895315 ], [ 153.083224, -26.894516 ], [ 153.069828, -26.908013 ], [ 153.061082, -26.892914 ], [ 153.061998, -26.928299 ], [ 153.043135, -26.946226 ], [ 153.066360, -26.965067 ], [ 153.065016, -26.976283 ], [ 153.043374, -26.969362 ], [ 153.045258, -26.985946 ], [ 153.024597, -26.988098 ], [ 153.060155, -26.988809 ], [ 153.075697, -27.017376 ], [ 153.085032, -27.016644 ], [ 153.083213, -27.028424 ], [ 153.100416, -27.032684 ], [ 153.111963, -27.051015 ], [ 153.107325, -27.057968 ], [ 153.096659, -27.053288 ], [ 153.100203, -27.062537 ], [ 153.110051, -27.062250 ], [ 153.098900, -27.063962 ], [ 153.126057, -27.062782 ], [ 153.144158, -27.075363 ], [ 153.132981, -27.085943 ], [ 153.099109, -27.090624 ], [ 153.066494, -27.110509 ], [ 153.043352, -27.149381 ], [ 153.035471, -27.148811 ], [ 153.037897, -27.127727 ], [ 153.022017, -27.124097 ], [ 153.035161, -27.131197 ], [ 153.033133, -27.153997 ], [ 153.043356, -27.156184 ], [ 153.030614, -27.158517 ], [ 153.036581, -27.165439 ], [ 153.029627, -27.182670 ], [ 153.037481, -27.196644 ], [ 153.088845, -27.206278 ], [ 153.106349, -27.190870 ], [ 153.116631, -27.198260 ], [ 153.117923, -27.233565 ], [ 153.107842, -27.261695 ], [ 153.092921, -27.255942 ], [ 153.077528, -27.262641 ], [ 153.068411, -27.247135 ], [ 153.075715, -27.227985 ], [ 153.053859, -27.230291 ], [ 153.077877, -27.264359 ], [ 153.063699, -27.283303 ], [ 153.069598, -27.313956 ], [ 153.086758, -27.325287 ], [ 153.082602, -27.333821 ], [ 153.094306, -27.343033 ], [ 153.155628, -27.362939 ], [ 153.160525, -27.377412 ], [ 153.146237, -27.387932 ], [ 153.150412, -27.394649 ], [ 153.141523, -27.415904 ], [ 153.109678, -27.438948 ], [ 153.090074, -27.445666 ], [ 153.049781, -27.440183 ], [ 153.053307, -27.460432 ], [ 153.053493, -27.442264 ], [ 153.088144, -27.450227 ], [ 153.110598, -27.443217 ], [ 153.142465, -27.421564 ], [ 153.154775, -27.401874 ], [ 153.165017, -27.400598 ], [ 153.157990, -27.391940 ], [ 153.177300, -27.362169 ], [ 153.191259, -27.367309 ], [ 153.179168, -27.383072 ], [ 153.183347, -27.393561 ], [ 153.165137, -27.397288 ], [ 153.174157, -27.407389 ], [ 153.173696, -27.415885 ], [ 153.167551, -27.413546 ], [ 153.175427, -27.440383 ], [ 153.191389, -27.450929 ], [ 153.189305, -27.459984 ], [ 153.192153, -27.451931 ], [ 153.194716, -27.456362 ], [ 153.188581, -27.475775 ], [ 153.194586, -27.478986 ], [ 153.201022, -27.472780 ], [ 153.207301, -27.481805 ], [ 153.231516, -27.481781 ], [ 153.241007, -27.465030 ], [ 153.241638, -27.480719 ], [ 153.260585, -27.484399 ], [ 153.261627, -27.516181 ], [ 153.290715, -27.510992 ], [ 153.277905, -27.540517 ], [ 153.281099, -27.549513 ], [ 153.290254, -27.565182 ], [ 153.307839, -27.565002 ], [ 153.305318, -27.574890 ], [ 153.317869, -27.581545 ], [ 153.297344, -27.594969 ], [ 153.311751, -27.621266 ], [ 153.315098, -27.639420 ], [ 153.308149, -27.656447 ], [ 153.320757, -27.674298 ], [ 153.315871, -27.679951 ], [ 153.323032, -27.700306 ], [ 153.301490, -27.706760 ], [ 153.293164, -27.691750 ], [ 153.298842, -27.710656 ], [ 153.318216, -27.711817 ], [ 153.327968, -27.697024 ], [ 153.348100, -27.695121 ], [ 153.356505, -27.711694 ], [ 153.383078, -27.708796 ], [ 153.369041, -27.703081 ], [ 153.366158, -27.693146 ], [ 153.378633, -27.674634 ], [ 153.366053, -27.670557 ], [ 153.367568, -27.648676 ], [ 153.401058, -27.644826 ], [ 153.402865, -27.634174 ], [ 153.415913, -27.641576 ], [ 153.388259, -27.657371 ], [ 153.397494, -27.696919 ], [ 153.385484, -27.708533 ], [ 153.392498, -27.707768 ], [ 153.412276, -27.740923 ], [ 153.439283, -27.735760 ], [ 153.426636, -27.778544 ], [ 153.384271, -27.784379 ], [ 153.385483, -27.785974 ], [ 153.406446, -27.782969 ], [ 153.411637, -27.790509 ], [ 153.394902, -27.818661 ], [ 153.373671, -27.814022 ], [ 153.392070, -27.794167 ], [ 153.390442, -27.792498 ], [ 153.391554, -27.793961 ], [ 153.381539, -27.801307 ], [ 153.371244, -27.800938 ], [ 153.381149, -27.801654 ], [ 153.373182, -27.807325 ], [ 153.370365, -27.800907 ], [ 153.366521, -27.800769 ], [ 153.371704, -27.817867 ], [ 153.385794, -27.829136 ], [ 153.377288, -27.835064 ], [ 153.376473, -27.845482 ], [ 153.392663, -27.839186 ], [ 153.385722, -27.840543 ], [ 153.381797, -27.834071 ], [ 153.395478, -27.831592 ], [ 153.396430, -27.838450 ], [ 153.393036, -27.839113 ], [ 153.395584, -27.864190 ], [ 153.398364, -27.857462 ], [ 153.401922, -27.863237 ], [ 153.395150, -27.872758 ], [ 153.400190, -27.872353 ], [ 153.400120, -27.868649 ], [ 153.410678, -27.870379 ], [ 153.400363, -27.881550 ], [ 153.400211, -27.873449 ], [ 153.396297, -27.886195 ], [ 153.407553, -27.907035 ], [ 153.410302, -27.954956 ], [ 153.421129, -27.974506 ], [ 153.418980, -27.982992 ], [ 153.427548, -27.971494 ], [ 153.421281, -27.940901 ], [ 153.434598, -27.934002 ], [ 153.429127, -27.938144 ], [ 153.431462, -28.002705 ], [ 153.450361, -28.083606 ], [ 153.477935, -28.125574 ], [ 153.486379, -28.125653 ], [ 153.514318, -28.161019 ], [ 153.552140, -28.164275 ], [ 153.534643, -28.177630 ], [ 153.476931, -28.157020 ], [ 153.457134, -28.180540 ], [ 153.435600, -28.187207 ], [ 153.406610, -28.210415 ], [ 153.389527, -28.234935 ], [ 153.356812, -28.249619 ], [ 153.335180, -28.248412 ], [ 153.330213, -28.237064 ], [ 153.278912, -28.233636 ], [ 153.262409, -28.246788 ], [ 153.245848, -28.245832 ], [ 153.231833, -28.265110 ], [ 153.178049, -28.247458 ], [ 153.174911, -28.274777 ], [ 153.161067, -28.279824 ], [ 153.168505, -28.294163 ], [ 153.154794, -28.295691 ], [ 153.143405, -28.311993 ], [ 153.124665, -28.318641 ], [ 153.129890, -28.330665 ], [ 153.108829, -28.357543 ], [ 153.046060, -28.339455 ], [ 153.008199, -28.341717 ], [ 152.972614, -28.331853 ], [ 152.933856, -28.338311 ], [ 152.880013, -28.309607 ], [ 152.831138, -28.320265 ], [ 152.804226, -28.353594 ], [ 152.775455, -28.346625 ], [ 152.751062, -28.363914 ], [ 152.722880, -28.344096 ], [ 152.679339, -28.330416 ], [ 152.667228, -28.311752 ], [ 152.638288, -28.310997 ], [ 152.624513, -28.298204 ], [ 152.614517, -28.269555 ], [ 152.600303, -28.283836 ], [ 152.601700, -28.307381 ], [ 152.579242, -28.338976 ], [ 152.568635, -28.323575 ], [ 152.556437, -28.323355 ], [ 152.555508, -28.316663 ], [ 152.548142, -28.321019 ], [ 152.525981, -28.306250 ], [ 152.534221, -28.262631 ], [ 152.508643, -28.249249 ], [ 152.463586, -28.259373 ], [ 152.442877, -28.290442 ], [ 152.444831, -28.298822 ], [ 152.414572, -28.298101 ], [ 152.409517, -28.315734 ], [ 152.417259, -28.333089 ], [ 152.386160, -28.368554 ], [ 152.355946, -28.361197 ], [ 152.341582, -28.367860 ], [ 152.309659, -28.363168 ], [ 152.288432, -28.393151 ], [ 152.267606, -28.390047 ], [ 152.217189, -28.449236 ], [ 152.190266, -28.433948 ], [ 152.184519, -28.438872 ], [ 152.160504, -28.433123 ], [ 152.121134, -28.462669 ], [ 152.070200, -28.468003 ], [ 152.067033, -28.485590 ], [ 152.045672, -28.494966 ], [ 152.016864, -28.525281 ], [ 151.988951, -28.525613 ], [ 151.982893, -28.503395 ], [ 151.955645, -28.518904 ], [ 151.957677, -28.563409 ], [ 151.985979, -28.581498 ], [ 151.990804, -28.624400 ], [ 152.010168, -28.664951 ], [ 152.039150, -28.664448 ], [ 152.052567, -28.681940 ], [ 152.066354, -28.680968 ], [ 152.066079, -28.697454 ], [ 152.076049, -28.708175 ], [ 152.042726, -28.731623 ], [ 152.047714, -28.740329 ], [ 152.036326, -28.756992 ], [ 152.041726, -28.778581 ], [ 152.034743, -28.790710 ], [ 152.037291, -28.819231 ], [ 152.017057, -28.838514 ], [ 152.015064, -28.850626 ], [ 152.025956, -28.858253 ], [ 152.036909, -28.851794 ], [ 152.038126, -28.864696 ], [ 152.009703, -28.907663 ], [ 152.001090, -28.909730 ], [ 151.997593, -28.895483 ], [ 151.968198, -28.916567 ], [ 151.916048, -28.929307 ], [ 151.900358, -28.914966 ], [ 151.849363, -28.907850 ], [ 151.837909, -28.916547 ], [ 151.839557, -28.942665 ], [ 151.832232, -28.959829 ], [ 151.813804, -28.959374 ], [ 151.806394, -28.944636 ], [ 151.777834, -28.959885 ], [ 151.770227, -28.955846 ], [ 151.772735, -28.938251 ], [ 151.743471, -28.918646 ], [ 151.733860, -28.871578 ], [ 151.706536, -28.871784 ], [ 151.674758, -28.907595 ], [ 151.644389, -28.916839 ], [ 151.634688, -28.929234 ], [ 151.609616, -28.923279 ], [ 151.577091, -28.945031 ], [ 151.566806, -28.941731 ], [ 151.545566, -28.952998 ], [ 151.536094, -28.980619 ], [ 151.498230, -29.019909 ], [ 151.491490, -29.056244 ], [ 151.502292, -29.070805 ], [ 151.486066, -29.088818 ], [ 151.463025, -29.098943 ], [ 151.451744, -29.126859 ], [ 151.428307, -29.147477 ], [ 151.410638, -29.152566 ], [ 151.393784, -29.177893 ], [ 151.339310, -29.177266 ], [ 151.314762, -29.165531 ], [ 151.308844, -29.147526 ], [ 151.315471, -29.134499 ], [ 151.279649, -29.100769 ], [ 151.275509, -29.077791 ], [ 151.288861, -29.050251 ], [ 151.284865, -29.037356 ], [ 151.271058, -29.030275 ], [ 151.283956, -29.005871 ], [ 151.276414, -28.986967 ], [ 151.282556, -28.980593 ], [ 151.272148, -28.973172 ], [ 151.282340, -28.954080 ], [ 151.274808, -28.938926 ], [ 151.243908, -28.924297 ], [ 151.234722, -28.904656 ], [ 151.208752, -28.901470 ], [ 151.200196, -28.884349 ], [ 151.132965, -28.860242 ], [ 151.104400, -28.844291 ], [ 151.102759, -28.836369 ], [ 151.083206, -28.834380 ], [ 151.054835, -28.849373 ], [ 151.045321, -28.844482 ], [ 151.037362, -28.827649 ], [ 151.041903, -28.799153 ], [ 151.024763, -28.793127 ], [ 151.019308, -28.772049 ], [ 151.028963, -28.770497 ], [ 151.028277, -28.761415 ], [ 151.010650, -28.740805 ], [ 150.938189, -28.730938 ], [ 150.930908, -28.705519 ], [ 150.906384, -28.687706 ], [ 150.874008, -28.693797 ], [ 150.848417, -28.673119 ], [ 150.819279, -28.666631 ], [ 150.818847, -28.657336 ], [ 150.795757, -28.655236 ], [ 150.752343, -28.633464 ], [ 150.728255, -28.634490 ], [ 150.708625, -28.651951 ], [ 150.681695, -28.661351 ], [ 150.673400, -28.650180 ], [ 150.632541, -28.676572 ], [ 150.625827, -28.668979 ], [ 150.600191, -28.670758 ], [ 150.580641, -28.655465 ], [ 150.561392, -28.661817 ], [ 150.554094, -28.653064 ], [ 150.548167, -28.658494 ], [ 150.552333, -28.668026 ], [ 150.544079, -28.671524 ], [ 150.527008, -28.668879 ], [ 150.539200, -28.660519 ], [ 150.525002, -28.654311 ], [ 150.514810, -28.661759 ], [ 150.487084, -28.657421 ], [ 150.460085, -28.668912 ], [ 150.445551, -28.665141 ], [ 150.429277, -28.651122 ], [ 150.415222, -28.650834 ], [ 150.413973, -28.633892 ], [ 150.401823, -28.627281 ], [ 150.387879, -28.633924 ], [ 150.387493, -28.625354 ], [ 150.370045, -28.620680 ], [ 150.363767, -28.607510 ], [ 150.369675, -28.598511 ], [ 150.352542, -28.587759 ], [ 150.351300, -28.575348 ], [ 150.327556, -28.571045 ], [ 150.320591, -28.557182 ], [ 150.289648, -28.537157 ], [ 150.236053, -28.553810 ], [ 150.238805, -28.559711 ], [ 150.230399, -28.555713 ], [ 150.229074, -28.567687 ], [ 150.213149, -28.567549 ], [ 150.212287, -28.574181 ], [ 150.192465, -28.566742 ], [ 150.186688, -28.572795 ], [ 150.186598, -28.565211 ], [ 150.177890, -28.563474 ], [ 150.182694, -28.556287 ], [ 150.171551, -28.563890 ], [ 150.169233, -28.550587 ], [ 150.154090, -28.557155 ], [ 150.152280, -28.550210 ], [ 150.138555, -28.565316 ], [ 150.121475, -28.559734 ], [ 150.110908, -28.570297 ], [ 150.091932, -28.564239 ], [ 150.092923, -28.578618 ], [ 150.085176, -28.575843 ], [ 150.079904, -28.584396 ], [ 150.073281, -28.576562 ], [ 150.048740, -28.589196 ], [ 150.045836, -28.582399 ], [ 150.016091, -28.580656 ], [ 149.976953, -28.613464 ], [ 149.950561, -28.608040 ], [ 149.941892, -28.617922 ], [ 149.936331, -28.610132 ], [ 149.917404, -28.608056 ], [ 149.899141, -28.621909 ], [ 149.862300, -28.602199 ], [ 149.844852, -28.610477 ], [ 149.830360, -28.603748 ], [ 149.819292, -28.615843 ], [ 149.811439, -28.605773 ], [ 149.784005, -28.614132 ], [ 149.754943, -28.609441 ], [ 149.744970, -28.618388 ], [ 149.721169, -28.609183 ], [ 149.703900, -28.616464 ], [ 149.709917, -28.620299 ], [ 149.703104, -28.633712 ], [ 149.666654, -28.631859 ], [ 149.674008, -28.624156 ], [ 149.660712, -28.609311 ], [ 149.655991, -28.615489 ], [ 149.647886, -28.612110 ], [ 149.642282, -28.599207 ], [ 149.625491, -28.593342 ], [ 149.610654, -28.600880 ], [ 149.587938, -28.572815 ], [ 149.568553, -28.571079 ], [ 149.552587, -28.580137 ], [ 149.528925, -28.574220 ], [ 149.513949, -28.581674 ], [ 149.502977, -28.574351 ], [ 149.502704, -28.580399 ], [ 149.481514, -28.582818 ], [ 149.474862, -28.593894 ], [ 149.452554, -28.594867 ], [ 149.439518, -28.612053 ], [ 149.442976, -28.620323 ], [ 149.428298, -28.629225 ], [ 149.432856, -28.635031 ], [ 149.426129, -28.650136 ], [ 149.417037, -28.651315 ], [ 149.423022, -28.655209 ], [ 149.405469, -28.675241 ], [ 149.393867, -28.677292 ], [ 149.387389, -28.695803 ], [ 149.358975, -28.684330 ], [ 149.346685, -28.696672 ], [ 149.329862, -28.698194 ], [ 149.317964, -28.714058 ], [ 149.297081, -28.709947 ], [ 149.269197, -28.743452 ], [ 149.262342, -28.734297 ], [ 149.253764, -28.742235 ], [ 149.246912, -28.738899 ], [ 149.224974, -28.764462 ], [ 149.188805, -28.775118 ], [ 149.192360, -28.780600 ], [ 149.179183, -28.802996 ], [ 149.160386, -28.810739 ], [ 149.139757, -28.807197 ], [ 149.143444, -28.822215 ], [ 149.128192, -28.835262 ], [ 149.112444, -28.829575 ], [ 149.103225, -28.838124 ], [ 149.097078, -28.831680 ], [ 149.080762, -28.841801 ], [ 149.080061, -28.858362 ], [ 149.055338, -28.884099 ], [ 149.063984, -28.888645 ], [ 149.058652, -28.910358 ], [ 149.048320, -28.916989 ], [ 149.032686, -28.955958 ], [ 149.009223, -28.956919 ], [ 148.998297, -28.972645 ], [ 148.976321, -28.976413 ], [ 148.958308, -28.999064 ], [ 140.999278, -28.999103 ], [ 140.999394, -25.996376 ], [ 137.999054, -25.996867 ], [ 138.001180, -16.544509 ], [ 138.047224, -16.578320 ], [ 138.116737, -16.648019 ], [ 138.175687, -16.686169 ], [ 138.272896, -16.719388 ], [ 138.323615, -16.750458 ], [ 138.329075, -16.736358 ], [ 138.362114, -16.740338 ], [ 138.427904, -16.777257 ], [ 138.450593, -16.773217 ], [ 138.479513, -16.783607 ], [ 138.471573, -16.775447 ], [ 138.486433, -16.783067 ], [ 138.539991, -16.781957 ], [ 138.628959, -16.767936 ], [ 138.657419, -16.778186 ], [ 138.658579, -16.784176 ], [ 138.650929, -16.778886 ], [ 138.681159, -16.800166 ], [ 138.822848, -16.852805 ], [ 138.844638, -16.867985 ], [ 138.880648, -16.877314 ], [ 138.883798, -16.884774 ], [ 138.915967, -16.876014 ], [ 138.945167, -16.888944 ], [ 138.979207, -16.887294 ], [ 139.038676, -16.912443 ], [ 139.034787, -16.927983 ], [ 139.043217, -16.950193 ], [ 139.079236, -16.977793 ], [ 139.086716, -16.998513 ], [ 139.157926, -17.029233 ], [ 139.140556, -17.078693 ], [ 139.155047, -17.163892 ], [ 139.201159, -17.270472 ], [ 139.237670, -17.319781 ], [ 139.305800, -17.364841 ], [ 139.341510, -17.374580 ], [ 139.417410, -17.374600 ], [ 139.450490, -17.393830 ], [ 139.436441, -17.422510 ], [ 139.452500, -17.395510 ], [ 139.476900, -17.400899 ], [ 139.535320, -17.441359 ], [ 139.552360, -17.460479 ], [ 139.550341, -17.468949 ], [ 139.590950, -17.482358 ], [ 139.603281, -17.505418 ], [ 139.646690, -17.538138 ], [ 139.712300, -17.553468 ], [ 139.721619, -17.548398 ], [ 139.751769, -17.563677 ], [ 139.757299, -17.577017 ], [ 139.808928, -17.578087 ], [ 139.821768, -17.570617 ], [ 139.839198, -17.589827 ], [ 139.833888, -17.605417 ], [ 139.845078, -17.604747 ], [ 139.847208, -17.596047 ], [ 139.937737, -17.630976 ], [ 139.948817, -17.673796 ], [ 140.004377, -17.714575 ], [ 140.093435, -17.722545 ], [ 140.199923, -17.702984 ], [ 140.216683, -17.709174 ], [ 140.384571, -17.677883 ], [ 140.447920, -17.641683 ], [ 140.462210, -17.648873 ], [ 140.479180, -17.644873 ], [ 140.565939, -17.601542 ], [ 140.593629, -17.597832 ], [ 140.709837, -17.509932 ], [ 140.735497, -17.512221 ], [ 140.769436, -17.477701 ], [ 140.828396, -17.465341 ], [ 140.828816, -17.455171 ], [ 140.887415, -17.382311 ], [ 140.893405, -17.349411 ], [ 140.900835, -17.348651 ], [ 140.893715, -17.342291 ], [ 140.904994, -17.316241 ], [ 140.899394, -17.302821 ], [ 140.909664, -17.277411 ], [ 140.912554, -17.233131 ], [ 140.925543, -17.198591 ], [ 140.940433, -17.184611 ], [ 140.953912, -17.098541 ], [ 140.962232, -17.092841 ], [ 140.946891, -17.040591 ], [ 140.958021, -16.998141 ], [ 140.973590, -16.969841 ], [ 141.011220, -16.940721 ], [ 141.064849, -16.870241 ], [ 141.082288, -16.803161 ], [ 141.093878, -16.803771 ], [ 141.128817, -16.779761 ], [ 141.204446, -16.691990 ], [ 141.221186, -16.656100 ], [ 141.233035, -16.587980 ], [ 141.251375, -16.557730 ], [ 141.270655, -16.557750 ], [ 141.296484, -16.496210 ], [ 141.304864, -16.457120 ], [ 141.287214, -16.425691 ], [ 141.286073, -16.408171 ], [ 141.320833, -16.342451 ], [ 141.351082, -16.218871 ], [ 141.412370, -16.122771 ], [ 141.432770, -16.074761 ], [ 141.409660, -16.023891 ], [ 141.392669, -15.951202 ], [ 141.373379, -15.916912 ], [ 141.397569, -15.909632 ], [ 141.409308, -15.871292 ], [ 141.434677, -15.657593 ], [ 141.479496, -15.498773 ], [ 141.497286, -15.479172 ], [ 141.541205, -15.351972 ], [ 141.548655, -15.350862 ], [ 141.545115, -15.332542 ], [ 141.569345, -15.296572 ], [ 141.580144, -15.235252 ], [ 141.575594, -15.205402 ], [ 141.580104, -15.212542 ], [ 141.585964, -15.201712 ], [ 141.580264, -15.198752 ], [ 141.632334, -15.161722 ], [ 141.642174, -15.126282 ], [ 141.631654, -15.103872 ], [ 141.641753, -15.075092 ], [ 141.660193, -15.054692 ], [ 141.667143, -15.023522 ], [ 141.663509, -15.003962 ] ], [ [ 141.663264, -15.002642 ], [ 141.659633, -14.983102 ], [ 141.652643, -14.973722 ], [ 141.663264, -15.002642 ] ], [ [ 153.418782, -27.983775 ], [ 153.414918, -27.999034 ], [ 153.418593, -27.991038 ], [ 153.426410, -27.998556 ], [ 153.428083, -27.988700 ], [ 153.421946, -27.991747 ], [ 153.418782, -27.983775 ] ], [ [ 153.384533, -27.873611 ], [ 153.381187, -27.861126 ], [ 153.380745, -27.873915 ], [ 153.384533, -27.873611 ] ], [ [ 153.380463, -27.882054 ], [ 153.380240, -27.888522 ], [ 153.351138, -27.890017 ], [ 153.357695, -27.891006 ], [ 153.352334, -27.902052 ], [ 153.342355, -27.894883 ], [ 153.348417, -27.901758 ], [ 153.343328, -27.910546 ], [ 153.348841, -27.919290 ], [ 153.357839, -27.911845 ], [ 153.358452, -27.893345 ], [ 153.381965, -27.891385 ], [ 153.380463, -27.882054 ] ], [ [ 153.380611, -27.858976 ], [ 153.379578, -27.855123 ], [ 153.365183, -27.849873 ], [ 153.367590, -27.848937 ], [ 153.360362, -27.848540 ], [ 153.380611, -27.858976 ] ], [ [ 153.189041, -27.489295 ], [ 153.187270, -27.491334 ], [ 153.192737, -27.495081 ], [ 153.189041, -27.489295 ] ], [ [ 153.053206, -27.470205 ], [ 153.049071, -27.474133 ], [ 153.036853, -27.462407 ], [ 153.035625, -27.465476 ], [ 153.042924, -27.477473 ], [ 153.053158, -27.474863 ], [ 153.053206, -27.470205 ] ], [ [ 153.034401, -27.468537 ], [ 153.030055, -27.479401 ], [ 153.016591, -27.467591 ], [ 153.003576, -27.474761 ], [ 152.994671, -27.489960 ], [ 153.015100, -27.492494 ], [ 153.020615, -27.500563 ], [ 153.000384, -27.506686 ], [ 152.997869, -27.514944 ], [ 153.008303, -27.520945 ], [ 153.001187, -27.509937 ], [ 153.023266, -27.500330 ], [ 153.015508, -27.490914 ], [ 152.996449, -27.488859 ], [ 153.005487, -27.475966 ], [ 153.016242, -27.469481 ], [ 153.031672, -27.481851 ], [ 153.034401, -27.468537 ] ], [ [ 153.008332, -27.520989 ], [ 152.996948, -27.521667 ], [ 152.970607, -27.504557 ], [ 152.965751, -27.514410 ], [ 152.973545, -27.542577 ], [ 152.938563, -27.525358 ], [ 152.926836, -27.529063 ], [ 152.924928, -27.540832 ], [ 152.903432, -27.544263 ], [ 152.906095, -27.554386 ], [ 152.894252, -27.560344 ], [ 152.900985, -27.566915 ], [ 152.893180, -27.577266 ], [ 152.905339, -27.600726 ], [ 152.896640, -27.601187 ], [ 152.874073, -27.578570 ], [ 152.862014, -27.596959 ], [ 152.855671, -27.595594 ], [ 152.862395, -27.598111 ], [ 152.874271, -27.579575 ], [ 152.895854, -27.601917 ], [ 152.906082, -27.601893 ], [ 152.894645, -27.579249 ], [ 152.902405, -27.566557 ], [ 152.895476, -27.560735 ], [ 152.907246, -27.555607 ], [ 152.904281, -27.544945 ], [ 152.924542, -27.542538 ], [ 152.928825, -27.529015 ], [ 152.940604, -27.528123 ], [ 152.974146, -27.544639 ], [ 152.967828, -27.515666 ], [ 152.972495, -27.505962 ], [ 152.995168, -27.524705 ], [ 153.009663, -27.523049 ], [ 153.008332, -27.520989 ] ], [ [ 152.937083, -25.760620 ], [ 152.936869, -25.768090 ], [ 152.941918, -25.765354 ], [ 152.937083, -25.760620 ] ], [ [ 152.525074, -25.071108 ], [ 152.523429, -25.068824 ], [ 152.507522, -25.077532 ], [ 152.523325, -25.069521 ], [ 152.525074, -25.071108 ] ], [ [ 150.574294, -22.482161 ], [ 150.607817, -22.500843 ], [ 150.587402, -22.487502 ], [ 150.601857, -22.486143 ], [ 150.590708, -22.484483 ], [ 150.593027, -22.475803 ], [ 150.587052, -22.485802 ], [ 150.574294, -22.482161 ] ], [ [ 142.594143, -10.889247 ], [ 142.587955, -10.888612 ], [ 142.583365, -10.901272 ], [ 142.588755, -10.889512 ], [ 142.595275, -10.891112 ], [ 142.594143, -10.889247 ] ], [ [ 149.451231, -21.729296 ], [ 149.435825, -21.721941 ], [ 149.432715, -21.727041 ], [ 149.451231, -21.729296 ] ], [ [ 151.636498, -24.000305 ], [ 151.641625, -24.002631 ], [ 151.638165, -23.996941 ], [ 151.636498, -24.000305 ] ] ], [ [ [ 143.587838, -13.532380 ], [ 143.585163, -13.517198 ], [ 143.591058, -13.524640 ], [ 143.587838, -13.532380 ] ] ], [ [ [ 147.420305, -19.321215 ], [ 147.384578, -19.302496 ], [ 147.414341, -19.312627 ], [ 147.420305, -19.321215 ] ] ], [ [ [ 153.546708, -27.434827 ], [ 153.527186, -27.461592 ], [ 153.480873, -27.580785 ], [ 153.458708, -27.670620 ], [ 153.453997, -27.728758 ], [ 153.438435, -27.733191 ], [ 153.446265, -27.716514 ], [ 153.439943, -27.715469 ], [ 153.432158, -27.728161 ], [ 153.436187, -27.734647 ], [ 153.412751, -27.738998 ], [ 153.392899, -27.707127 ], [ 153.402075, -27.692963 ], [ 153.398836, -27.662602 ], [ 153.421663, -27.642054 ], [ 153.407077, -27.611009 ], [ 153.413532, -27.599202 ], [ 153.412537, -27.511639 ], [ 153.398385, -27.496423 ], [ 153.409129, -27.476010 ], [ 153.423033, -27.470118 ], [ 153.440450, -27.411344 ], [ 153.436199, -27.405505 ], [ 153.432456, -27.411206 ], [ 153.438495, -27.394897 ], [ 153.455838, -27.388291 ], [ 153.483166, -27.415556 ], [ 153.543327, -27.425346 ], [ 153.546708, -27.434827 ] ] ], [ [ [ 153.468489, -27.028478 ], [ 153.434044, -27.131235 ], [ 153.419661, -27.203570 ], [ 153.417580, -27.274423 ], [ 153.437286, -27.333965 ], [ 153.427959, -27.363640 ], [ 153.418640, -27.355020 ], [ 153.421218, -27.331066 ], [ 153.365502, -27.201245 ], [ 153.373262, -27.176285 ], [ 153.361611, -27.135660 ], [ 153.370134, -27.103027 ], [ 153.361400, -27.061041 ], [ 153.402396, -27.035267 ], [ 153.387805, -27.047619 ], [ 153.407102, -27.040074 ], [ 153.388730, -27.050345 ], [ 153.454481, -27.022003 ], [ 153.468489, -27.028478 ] ] ], [ [ [ 153.445354, -27.757379 ], [ 153.427189, -27.868386 ], [ 153.425530, -27.923964 ], [ 153.431489, -27.933127 ], [ 153.426455, -27.933921 ], [ 153.418943, -27.921140 ], [ 153.423500, -27.873558 ], [ 153.409414, -27.857256 ], [ 153.406535, -27.833970 ], [ 153.437815, -27.778226 ], [ 153.437091, -27.753164 ], [ 153.445354, -27.757379 ] ] ], [ [ [ 153.419051, -27.931575 ], [ 153.416219, -27.940147 ], [ 153.411533, -27.931464 ], [ 153.419051, -27.931575 ] ] ], [ [ [ 153.397645, -27.823099 ], [ 153.390059, -27.829920 ], [ 153.382115, -27.822919 ], [ 153.397645, -27.823099 ] ] ], [ [ [ 153.390463, -27.620217 ], [ 153.372437, -27.630754 ], [ 153.383042, -27.615850 ], [ 153.390463, -27.620217 ] ] ], [ [ [ 153.376281, -27.618272 ], [ 153.362416, -27.632403 ], [ 153.346774, -27.622307 ], [ 153.360837, -27.580348 ], [ 153.367779, -27.591278 ], [ 153.360363, -27.614320 ], [ 153.368145, -27.616073 ], [ 153.368250, -27.605871 ], [ 153.376281, -27.618272 ] ] ], [ [ [ 153.374756, -27.498101 ], [ 153.345019, -27.514230 ], [ 153.336635, -27.498094 ], [ 153.359110, -27.485742 ], [ 153.374756, -27.498101 ] ] ], [ [ [ 153.361765, -27.683956 ], [ 153.349681, -27.681842 ], [ 153.353855, -27.649222 ], [ 153.361765, -27.683956 ] ] ], [ [ [ 152.950180, -25.573919 ], [ 152.949924, -25.561256 ], [ 152.959530, -25.560827 ], [ 152.951004, -25.551935 ], [ 152.988700, -25.512107 ], [ 152.993434, -25.484536 ], [ 152.983831, -25.468563 ], [ 152.986802, -25.448296 ], [ 153.007945, -25.411261 ], [ 153.034132, -25.384775 ], [ 153.051422, -25.345320 ], [ 153.039991, -25.276699 ], [ 153.051353, -25.262671 ], [ 153.045751, -25.247605 ], [ 153.051534, -25.244659 ], [ 153.038673, -25.223162 ], [ 152.995353, -25.230323 ], [ 152.992301, -25.220705 ], [ 153.029533, -25.176303 ], [ 153.076841, -25.152851 ], [ 153.160286, -25.083602 ], [ 153.222258, -24.995656 ], [ 153.234004, -24.942465 ], [ 153.226223, -24.912011 ], [ 153.169105, -24.832034 ], [ 153.144138, -24.816753 ], [ 153.118924, -24.815058 ], [ 153.176828, -24.743396 ], [ 153.249730, -24.697620 ], [ 153.264622, -24.697089 ], [ 153.266901, -24.704360 ], [ 153.259634, -24.823713 ], [ 153.270255, -24.893474 ], [ 153.304181, -24.949901 ], [ 153.325286, -24.963937 ], [ 153.350721, -24.963441 ], [ 153.352266, -24.999593 ], [ 153.360352, -25.006351 ], [ 153.188220, -25.370615 ], [ 153.107901, -25.560023 ], [ 153.078329, -25.668662 ], [ 153.089358, -25.757713 ], [ 153.077662, -25.792340 ], [ 153.038935, -25.792544 ], [ 153.015095, -25.769062 ], [ 152.990494, -25.717780 ], [ 152.991996, -25.697164 ], [ 152.982456, -25.676569 ], [ 152.987170, -25.671992 ], [ 152.980329, -25.670686 ], [ 152.983046, -25.660247 ], [ 152.969830, -25.639832 ], [ 152.974675, -25.624680 ], [ 152.961913, -25.605494 ], [ 152.955499, -25.613069 ], [ 152.955870, -25.598860 ], [ 152.959554, -25.601948 ], [ 152.955282, -25.595525 ], [ 152.964234, -25.576680 ], [ 152.956113, -25.589134 ], [ 152.952425, -25.584519 ], [ 152.952676, -25.594422 ], [ 152.942505, -25.585859 ], [ 152.950180, -25.573919 ] ] ], [ [ [ 153.352586, -27.632497 ], [ 153.347064, -27.638539 ], [ 153.335139, -27.621186 ], [ 153.352586, -27.632497 ] ] ], [ [ [ 153.341562, -27.605001 ], [ 153.336830, -27.620871 ], [ 153.333440, -27.614301 ], [ 153.341562, -27.605001 ] ] ], [ [ [ 153.341439, -27.648566 ], [ 153.329074, -27.670436 ], [ 153.322939, -27.651959 ], [ 153.328599, -27.635049 ], [ 153.341439, -27.648566 ] ] ], [ [ [ 153.339912, -27.690426 ], [ 153.327446, -27.694839 ], [ 153.319590, -27.680217 ], [ 153.326488, -27.677403 ], [ 153.339912, -27.690426 ] ] ], [ [ [ 153.338770, -27.566762 ], [ 153.335164, -27.574963 ], [ 153.318673, -27.573471 ], [ 153.330106, -27.563115 ], [ 153.338770, -27.566762 ] ] ], [ [ [ 153.241558, -27.391140 ], [ 153.239130, -27.397299 ], [ 153.225927, -27.391912 ], [ 153.235054, -27.377650 ], [ 153.241558, -27.391140 ] ] ], [ [ [ 153.207558, -27.081683 ], [ 153.197319, -27.096589 ], [ 153.165720, -27.099444 ], [ 153.155417, -27.072152 ], [ 153.135343, -27.054075 ], [ 153.132554, -27.036280 ], [ 153.099075, -27.013777 ], [ 153.093119, -26.991818 ], [ 153.098616, -26.985759 ], [ 153.079019, -26.972384 ], [ 153.090917, -26.944968 ], [ 153.075200, -26.920269 ], [ 153.077223, -26.910150 ], [ 153.129999, -26.874151 ], [ 153.129951, -26.814082 ], [ 153.130523, -26.872422 ], [ 153.141534, -26.918363 ], [ 153.168082, -27.001748 ], [ 153.207558, -27.081683 ] ] ], [ [ [ 153.188501, -27.401757 ], [ 153.178023, -27.396700 ], [ 153.183789, -27.393430 ], [ 153.188501, -27.401757 ] ] ], [ [ [ 153.085530, -27.008147 ], [ 153.077628, -27.009800 ], [ 153.078823, -27.001741 ], [ 153.085530, -27.008147 ] ] ], [ [ [ 152.993723, -25.334914 ], [ 152.977217, -25.309973 ], [ 152.959055, -25.302812 ], [ 152.943013, -25.272831 ], [ 152.988579, -25.313966 ], [ 152.993723, -25.334914 ] ] ], [ [ [ 152.969339, -25.477287 ], [ 152.961200, -25.491444 ], [ 152.960351, -25.477359 ], [ 152.969339, -25.477287 ] ] ], [ [ [ 152.964241, -25.620138 ], [ 152.957638, -25.637489 ], [ 152.952811, -25.616189 ], [ 152.964241, -25.620138 ] ] ], [ [ [ 152.955833, -25.494834 ], [ 152.935971, -25.522798 ], [ 152.915032, -25.529163 ], [ 152.909266, -25.499854 ], [ 152.942185, -25.478995 ], [ 152.952524, -25.482803 ], [ 152.955833, -25.494834 ] ] ], [ [ [ 152.949727, -25.558276 ], [ 152.941926, -25.583345 ], [ 152.937963, -25.562785 ], [ 152.949727, -25.558276 ] ] ], [ [ [ 152.938475, -25.610550 ], [ 152.928925, -25.598976 ], [ 152.931179, -25.586306 ], [ 152.938475, -25.610550 ] ] ], [ [ [ 152.930181, -25.618306 ], [ 152.927026, -25.624367 ], [ 152.921184, -25.614228 ], [ 152.930181, -25.618306 ] ] ], [ [ [ 152.927744, -25.583076 ], [ 152.924186, -25.598071 ], [ 152.920360, -25.574699 ], [ 152.927744, -25.583076 ] ] ], [ [ [ 152.921850, -25.560239 ], [ 152.920682, -25.568012 ], [ 152.915030, -25.562742 ], [ 152.921850, -25.560239 ] ] ], [ [ [ 152.912179, -25.549367 ], [ 152.906687, -25.563753 ], [ 152.902534, -25.555341 ], [ 152.912179, -25.549367 ] ] ], [ [ [ 152.903871, -25.570965 ], [ 152.889168, -25.569880 ], [ 152.898518, -25.560080 ], [ 152.903871, -25.570965 ] ] ], [ [ [ 152.901002, -25.592536 ], [ 152.891518, -25.594610 ], [ 152.888908, -25.579162 ], [ 152.898973, -25.578439 ], [ 152.901002, -25.592536 ] ] ], [ [ [ 151.664085, -24.047172 ], [ 151.660625, -24.052692 ], [ 151.648860, -24.044520 ], [ 151.664085, -24.047172 ] ] ], [ [ [ 151.547662, -24.078401 ], [ 151.536212, -24.082191 ], [ 151.541652, -24.074651 ], [ 151.547662, -24.078401 ] ] ], [ [ [ 151.462018, -24.043970 ], [ 151.459437, -24.056450 ], [ 151.459686, -24.039352 ], [ 151.462018, -24.043970 ] ] ], [ [ [ 151.439928, -24.047055 ], [ 151.436493, -24.054062 ], [ 151.428035, -24.039902 ], [ 151.434802, -24.036193 ], [ 151.434560, -24.046440 ], [ 151.436791, -24.037108 ], [ 151.439928, -24.047055 ] ] ], [ [ [ 151.394220, -23.864592 ], [ 151.389260, -23.875615 ], [ 151.373897, -23.881055 ], [ 151.366349, -23.874802 ], [ 151.362915, -23.859744 ], [ 151.370687, -23.842698 ], [ 151.364155, -23.847460 ], [ 151.360707, -23.824056 ], [ 151.353963, -23.818983 ], [ 151.336418, -23.824672 ], [ 151.339784, -23.806141 ], [ 151.328042, -23.798079 ], [ 151.323601, -23.777510 ], [ 151.332707, -23.768365 ], [ 151.332516, -23.754008 ], [ 151.340820, -23.785146 ], [ 151.373704, -23.812615 ], [ 151.394220, -23.864592 ] ] ], [ [ [ 151.315280, -23.759224 ], [ 151.296673, -23.753960 ], [ 151.290901, -23.759258 ], [ 151.285269, -23.797420 ], [ 151.264781, -23.777910 ], [ 151.276278, -23.764664 ], [ 151.262620, -23.774577 ], [ 151.262505, -23.758800 ], [ 151.274567, -23.752530 ], [ 151.262054, -23.757379 ], [ 151.262094, -23.749114 ], [ 151.252553, -23.756860 ], [ 151.260182, -23.757130 ], [ 151.258900, -23.776659 ], [ 151.245224, -23.779691 ], [ 151.245684, -23.767420 ], [ 151.241960, -23.775067 ], [ 151.245212, -23.794140 ], [ 151.227272, -23.790330 ], [ 151.221974, -23.799438 ], [ 151.214545, -23.794370 ], [ 151.215777, -23.783396 ], [ 151.198446, -23.779682 ], [ 151.172194, -23.745155 ], [ 151.129744, -23.669241 ], [ 151.104231, -23.658133 ], [ 151.103401, -23.649587 ], [ 151.096724, -23.657269 ], [ 151.092083, -23.644795 ], [ 151.047671, -23.622893 ], [ 151.045781, -23.616412 ], [ 151.052181, -23.621582 ], [ 151.053861, -23.615582 ], [ 151.044911, -23.614272 ], [ 151.032541, -23.570402 ], [ 151.012611, -23.553672 ], [ 150.989632, -23.497612 ], [ 150.979467, -23.488793 ], [ 151.013912, -23.473622 ], [ 151.017102, -23.452263 ], [ 151.051631, -23.456172 ], [ 151.047941, -23.452463 ], [ 151.056971, -23.447673 ], [ 151.080941, -23.466642 ], [ 151.071931, -23.473682 ], [ 151.077851, -23.482802 ], [ 151.072741, -23.488362 ], [ 151.084980, -23.487852 ], [ 151.086770, -23.479932 ], [ 151.125690, -23.498932 ], [ 151.123070, -23.490702 ], [ 151.155149, -23.511312 ], [ 151.202419, -23.512072 ], [ 151.199289, -23.520102 ], [ 151.191449, -23.518682 ], [ 151.195519, -23.523402 ], [ 151.182639, -23.520872 ], [ 151.193459, -23.527472 ], [ 151.183689, -23.531252 ], [ 151.193119, -23.530982 ], [ 151.183389, -23.541312 ], [ 151.217398, -23.518422 ], [ 151.218528, -23.503502 ], [ 151.235158, -23.483652 ], [ 151.225618, -23.609492 ], [ 151.248449, -23.656938 ], [ 151.266969, -23.665706 ], [ 151.264228, -23.671256 ], [ 151.272240, -23.662863 ], [ 151.286574, -23.684109 ], [ 151.296245, -23.738597 ], [ 151.315280, -23.759224 ] ] ], [ [ [ 151.288596, -23.805152 ], [ 151.286117, -23.818702 ], [ 151.281871, -23.801427 ], [ 151.288596, -23.805152 ] ] ], [ [ [ 151.162989, -23.396661 ], [ 151.156079, -23.405621 ], [ 151.145019, -23.398901 ], [ 151.162989, -23.396661 ] ] ], [ [ [ 150.994716, -23.181226 ], [ 150.986712, -23.184132 ], [ 150.988037, -23.192356 ], [ 150.977597, -23.183280 ], [ 150.939011, -23.198290 ], [ 150.931780, -23.178545 ], [ 150.934829, -23.168652 ], [ 150.951112, -23.171192 ], [ 150.956240, -23.156287 ], [ 150.975542, -23.148842 ], [ 150.975532, -23.171202 ], [ 150.994716, -23.181226 ] ] ], [ [ [ 150.975637, -23.215244 ], [ 150.964892, -23.215732 ], [ 150.972552, -23.209152 ], [ 150.975637, -23.215244 ] ] ], [ [ [ 150.914408, -23.079684 ], [ 150.913228, -23.087584 ], [ 150.901108, -23.079164 ], [ 150.889409, -23.083164 ], [ 150.884619, -23.077424 ], [ 150.892078, -23.054474 ], [ 150.914408, -23.079684 ] ] ], [ [ [ 150.871819, -23.505923 ], [ 150.864524, -23.517002 ], [ 150.850544, -23.511742 ], [ 150.871819, -23.505923 ] ] ], [ [ [ 150.865299, -23.527853 ], [ 150.846954, -23.532642 ], [ 150.837854, -23.521162 ], [ 150.865299, -23.527853 ] ] ], [ [ [ 150.698291, -21.953413 ], [ 150.691421, -21.953504 ], [ 150.690421, -21.967213 ], [ 150.677381, -21.965404 ], [ 150.686121, -21.945934 ], [ 150.698291, -21.953413 ] ] ], [ [ [ 150.676942, -22.090083 ], [ 150.669862, -22.094403 ], [ 150.669412, -22.082893 ], [ 150.676942, -22.090083 ] ] ], [ [ [ 150.662604, -22.334683 ], [ 150.660625, -22.339523 ], [ 150.656205, -22.330923 ], [ 150.662604, -22.334683 ] ] ], [ [ [ 150.647652, -22.008794 ], [ 150.641792, -22.008334 ], [ 150.644912, -22.001774 ], [ 150.647652, -22.008794 ] ] ], [ [ [ 150.560790, -22.294982 ], [ 150.554526, -22.305104 ], [ 150.544256, -22.299504 ], [ 150.542506, -22.321134 ], [ 150.527506, -22.316634 ], [ 150.529136, -22.324424 ], [ 150.516517, -22.325794 ], [ 150.522997, -22.333504 ], [ 150.510567, -22.340064 ], [ 150.504797, -22.334274 ], [ 150.482958, -22.349334 ], [ 150.475678, -22.335184 ], [ 150.489957, -22.325064 ], [ 150.478482, -22.320653 ], [ 150.500037, -22.303084 ], [ 150.485957, -22.311024 ], [ 150.472637, -22.294924 ], [ 150.463972, -22.301153 ], [ 150.459157, -22.296624 ], [ 150.470567, -22.281264 ], [ 150.482787, -22.278744 ], [ 150.472187, -22.276654 ], [ 150.475472, -22.261113 ], [ 150.500496, -22.269634 ], [ 150.478307, -22.255394 ], [ 150.492306, -22.255474 ], [ 150.486166, -22.243274 ], [ 150.497726, -22.240754 ], [ 150.490056, -22.227524 ], [ 150.474746, -22.232034 ], [ 150.470236, -22.221624 ], [ 150.479211, -22.206573 ], [ 150.518936, -22.224244 ], [ 150.534876, -22.275424 ], [ 150.552550, -22.279932 ], [ 150.560790, -22.294982 ] ] ], [ [ [ 150.528487, -22.373564 ], [ 150.515397, -22.372124 ], [ 150.520907, -22.366524 ], [ 150.528487, -22.373564 ] ] ], [ [ [ 150.500430, -22.546404 ], [ 150.498065, -22.554493 ], [ 150.496965, -22.540503 ], [ 150.500430, -22.546404 ] ] ], [ [ [ 150.465407, -22.247854 ], [ 150.454737, -22.247324 ], [ 150.463372, -22.259213 ], [ 150.443962, -22.274063 ], [ 150.438068, -22.268054 ], [ 150.427463, -22.275733 ], [ 150.429888, -22.288394 ], [ 150.421668, -22.299374 ], [ 150.415543, -22.279583 ], [ 150.442557, -22.254554 ], [ 150.430468, -22.251084 ], [ 150.440702, -22.231533 ], [ 150.464031, -22.225173 ], [ 150.454132, -22.234233 ], [ 150.465407, -22.247854 ] ] ], [ [ [ 150.450148, -22.314584 ], [ 150.449608, -22.321014 ], [ 150.442518, -22.313624 ], [ 150.450148, -22.314584 ] ] ], [ [ [ 150.373931, -22.020774 ], [ 150.369171, -22.024234 ], [ 150.359471, -22.013784 ], [ 150.366871, -22.011364 ], [ 150.373931, -22.020774 ] ] ], [ [ [ 150.364129, -21.720525 ], [ 150.345734, -21.742986 ], [ 150.348159, -21.763955 ], [ 150.338865, -21.769956 ], [ 150.325355, -21.768746 ], [ 150.299780, -21.746385 ], [ 150.313830, -21.739395 ], [ 150.339779, -21.741345 ], [ 150.364129, -21.720525 ] ] ], [ [ [ 150.350514, -21.667046 ], [ 150.339094, -21.668406 ], [ 150.340044, -21.674376 ], [ 150.325844, -21.658617 ], [ 150.338449, -21.656015 ], [ 150.350514, -21.667046 ] ] ], [ [ [ 150.323344, -22.235664 ], [ 150.319740, -22.244885 ], [ 150.303570, -22.249705 ], [ 150.297570, -22.243685 ], [ 150.314164, -22.233104 ], [ 150.323344, -22.235664 ] ] ], [ [ [ 150.301974, -21.664917 ], [ 150.274145, -21.680887 ], [ 150.253435, -21.667817 ], [ 150.243060, -21.675306 ], [ 150.242585, -21.654277 ], [ 150.250415, -21.650997 ], [ 150.247320, -21.619046 ], [ 150.263890, -21.641166 ], [ 150.290874, -21.643787 ], [ 150.301974, -21.664917 ] ] ], [ [ [ 150.282671, -22.351765 ], [ 150.272352, -22.352345 ], [ 150.261852, -22.371075 ], [ 150.259382, -22.363615 ], [ 150.251002, -22.364555 ], [ 150.273131, -22.347165 ], [ 150.282671, -22.351765 ] ] ], [ [ [ 150.280543, -21.483377 ], [ 150.272984, -21.490567 ], [ 150.262894, -21.483637 ], [ 150.266488, -21.476826 ], [ 150.280543, -21.483377 ] ] ], [ [ [ 150.276454, -21.516627 ], [ 150.257514, -21.528507 ], [ 150.245184, -21.517197 ], [ 150.276454, -21.516627 ] ] ], [ [ [ 150.186054, -21.977925 ], [ 150.178019, -21.982756 ], [ 150.180269, -21.998436 ], [ 150.168750, -22.004146 ], [ 150.151544, -21.971365 ], [ 150.159929, -21.977567 ], [ 150.179144, -21.970035 ], [ 150.186054, -21.977925 ] ] ], [ [ [ 150.149904, -21.961135 ], [ 150.142650, -21.960847 ], [ 150.143035, -21.980425 ], [ 150.139894, -21.958436 ], [ 150.149904, -21.961135 ] ] ], [ [ [ 150.139395, -21.998185 ], [ 150.125470, -22.001377 ], [ 150.128085, -21.987656 ], [ 150.139395, -21.998185 ] ] ], [ [ [ 150.120384, -21.918196 ], [ 150.118280, -21.931267 ], [ 150.108305, -21.932066 ], [ 150.108315, -21.922226 ], [ 150.120384, -21.918196 ] ] ], [ [ [ 150.040373, -22.111437 ], [ 150.013514, -22.109927 ], [ 150.020694, -22.126907 ], [ 150.008694, -22.128017 ], [ 149.975295, -22.158827 ], [ 149.945206, -22.172048 ], [ 149.933226, -22.152358 ], [ 149.950645, -22.134258 ], [ 149.970075, -22.134027 ], [ 149.978464, -22.117627 ], [ 149.992244, -22.113497 ], [ 150.001074, -22.122257 ], [ 150.001074, -22.105247 ], [ 150.010469, -22.100986 ], [ 150.040373, -22.111437 ] ] ], [ [ [ 150.019029, -22.620936 ], [ 150.016019, -22.628796 ], [ 150.012739, -22.618846 ], [ 150.019029, -22.620936 ] ] ], [ [ [ 149.931706, -22.187348 ], [ 149.919657, -22.200488 ], [ 149.925351, -22.175176 ], [ 149.931706, -22.187348 ] ] ], [ [ [ 149.929990, -22.133736 ], [ 149.920646, -22.154668 ], [ 149.918597, -22.205008 ], [ 149.909107, -22.223548 ], [ 149.896082, -22.234766 ], [ 149.869738, -22.226308 ], [ 149.865953, -22.219087 ], [ 149.879147, -22.206808 ], [ 149.861842, -22.169687 ], [ 149.871547, -22.146748 ], [ 149.869726, -22.118548 ], [ 149.874366, -22.100698 ], [ 149.883196, -22.099418 ], [ 149.881596, -22.067948 ], [ 149.901375, -22.052068 ], [ 149.910245, -22.058238 ], [ 149.904275, -22.076878 ], [ 149.918786, -22.122748 ], [ 149.929990, -22.133736 ] ] ], [ [ [ 149.917109, -21.506599 ], [ 149.907149, -21.500140 ], [ 149.909249, -21.492560 ], [ 149.917109, -21.506599 ] ] ], [ [ [ 149.915512, -22.235726 ], [ 149.909877, -22.256048 ], [ 149.898632, -22.260256 ], [ 149.904807, -22.234738 ], [ 149.912887, -22.227258 ], [ 149.915512, -22.235726 ] ] ], [ [ [ 149.911386, -21.018141 ], [ 149.897586, -21.020951 ], [ 149.894196, -21.004851 ], [ 149.903786, -21.002861 ], [ 149.911386, -21.018141 ] ] ], [ [ [ 149.909770, -22.474037 ], [ 149.905170, -22.476877 ], [ 149.897945, -22.462916 ], [ 149.909770, -22.474037 ] ] ], [ [ [ 149.900687, -22.235998 ], [ 149.894552, -22.244246 ], [ 149.888822, -22.237956 ], [ 149.900687, -22.235998 ] ] ], [ [ [ 149.896530, -21.497860 ], [ 149.888105, -21.499388 ], [ 149.891104, -21.485268 ], [ 149.896530, -21.497860 ] ] ], [ [ [ 149.894853, -22.256316 ], [ 149.884703, -22.263246 ], [ 149.877633, -22.255037 ], [ 149.894853, -22.256316 ] ] ], [ [ [ 149.892748, -22.247988 ], [ 149.877008, -22.251448 ], [ 149.874518, -22.238138 ], [ 149.884572, -22.235717 ], [ 149.892748, -22.247988 ] ] ], [ [ [ 149.880610, -21.993587 ], [ 149.861750, -22.013057 ], [ 149.844036, -22.004219 ], [ 149.880610, -21.993587 ] ] ], [ [ [ 149.842112, -21.659429 ], [ 149.833932, -21.662210 ], [ 149.831507, -21.647438 ], [ 149.842112, -21.659429 ] ] ], [ [ [ 149.837414, -21.379099 ], [ 149.833235, -21.383199 ], [ 149.821925, -21.371669 ], [ 149.837414, -21.379099 ] ] ], [ [ [ 149.818927, -21.605799 ], [ 149.791507, -21.616409 ], [ 149.788652, -21.609220 ], [ 149.780737, -21.612649 ], [ 149.784962, -21.600560 ], [ 149.805862, -21.590910 ], [ 149.818927, -21.605799 ] ] ], [ [ [ 149.804274, -21.832029 ], [ 149.793214, -21.839349 ], [ 149.793499, -21.830308 ], [ 149.804274, -21.832029 ] ] ], [ [ [ 149.763432, -22.405678 ], [ 149.753502, -22.411808 ], [ 149.755527, -22.400847 ], [ 149.763432, -22.405678 ] ] ], [ [ [ 149.717587, -21.455980 ], [ 149.706187, -21.448060 ], [ 149.709967, -21.438990 ], [ 149.717587, -21.455980 ] ] ], [ [ [ 149.694666, -21.323900 ], [ 149.685572, -21.332441 ], [ 149.663957, -21.310590 ], [ 149.666177, -21.302440 ], [ 149.690581, -21.312211 ], [ 149.694666, -21.323900 ] ] ], [ [ [ 149.664699, -21.974970 ], [ 149.664029, -21.981860 ], [ 149.657829, -21.978400 ], [ 149.654943, -21.966109 ], [ 149.664699, -21.974970 ] ] ], [ [ [ 149.653888, -21.928900 ], [ 149.651308, -21.936480 ], [ 149.642548, -21.931920 ], [ 149.653888, -21.928900 ] ] ], [ [ [ 149.626443, -20.770392 ], [ 149.612939, -20.778103 ], [ 149.622148, -20.760803 ], [ 149.626443, -20.770392 ] ] ], [ [ [ 149.626129, -20.868733 ], [ 149.617274, -20.884202 ], [ 149.606434, -20.879402 ], [ 149.596730, -20.885163 ], [ 149.578110, -20.869193 ], [ 149.584695, -20.861222 ], [ 149.605700, -20.864983 ], [ 149.603464, -20.846492 ], [ 149.623224, -20.856302 ], [ 149.626129, -20.868733 ] ] ], [ [ [ 149.588542, -22.138270 ], [ 149.572642, -22.124980 ], [ 149.577227, -22.119209 ], [ 149.588542, -22.138270 ] ] ], [ [ [ 149.582530, -21.974440 ], [ 149.566220, -21.992050 ], [ 149.558565, -21.987569 ], [ 149.576795, -21.967929 ], [ 149.582530, -21.974440 ] ] ], [ [ [ 149.500380, -21.829431 ], [ 149.486900, -21.836521 ], [ 149.469020, -21.821731 ], [ 149.485795, -21.817890 ], [ 149.500380, -21.829431 ] ] ], [ [ [ 149.498568, -21.597772 ], [ 149.493318, -21.605032 ], [ 149.485418, -21.597402 ], [ 149.498568, -21.597772 ] ] ], [ [ [ 149.483695, -20.741003 ], [ 149.472275, -20.747213 ], [ 149.466275, -20.726713 ], [ 149.483695, -20.741003 ] ] ], [ [ [ 149.469552, -20.928214 ], [ 149.466927, -20.937362 ], [ 149.464232, -20.925944 ], [ 149.469552, -20.928214 ] ] ], [ [ [ 149.460697, -20.914972 ], [ 149.451302, -20.934264 ], [ 149.447002, -20.930074 ], [ 149.441893, -20.941254 ], [ 149.432608, -20.937133 ], [ 149.426493, -20.945544 ], [ 149.422453, -20.939184 ], [ 149.435058, -20.927893 ], [ 149.427638, -20.926733 ], [ 149.425488, -20.906803 ], [ 149.446757, -20.902893 ], [ 149.460697, -20.914972 ] ] ], [ [ [ 149.422713, -20.919684 ], [ 149.418983, -20.926774 ], [ 149.414143, -20.918624 ], [ 149.405488, -20.924243 ], [ 149.385858, -20.904113 ], [ 149.414178, -20.896853 ], [ 149.422713, -20.919684 ] ] ], [ [ [ 149.412301, -20.772914 ], [ 149.397802, -20.779164 ], [ 149.390066, -20.769333 ], [ 149.412301, -20.772914 ] ] ], [ [ [ 149.300993, -20.796835 ], [ 149.276558, -20.793444 ], [ 149.273648, -20.778404 ], [ 149.291153, -20.774485 ], [ 149.300993, -20.796835 ] ] ], [ [ [ 149.289968, -20.809974 ], [ 149.286084, -20.820335 ], [ 149.279784, -20.810395 ], [ 149.264904, -20.823325 ], [ 149.268254, -20.810095 ], [ 149.249279, -20.805914 ], [ 149.274388, -20.796364 ], [ 149.289968, -20.809974 ] ] ], [ [ [ 149.209084, -20.690576 ], [ 149.203544, -20.698776 ], [ 149.197274, -20.689826 ], [ 149.209084, -20.690576 ] ] ], [ [ [ 149.193939, -20.671615 ], [ 149.186794, -20.675596 ], [ 149.189194, -20.689206 ], [ 149.172544, -20.672256 ], [ 149.181574, -20.666186 ], [ 149.193939, -20.671615 ] ] ], [ [ [ 149.178166, -20.247617 ], [ 149.171886, -20.250407 ], [ 149.173006, -20.241187 ], [ 149.178166, -20.247617 ] ] ], [ [ [ 149.166659, -20.683335 ], [ 149.156454, -20.674447 ], [ 149.158119, -20.683265 ], [ 149.145790, -20.693805 ], [ 149.138505, -20.694717 ], [ 149.136085, -20.686447 ], [ 149.148255, -20.684937 ], [ 149.145509, -20.673485 ], [ 149.154749, -20.662175 ], [ 149.163614, -20.665237 ], [ 149.166659, -20.683335 ] ] ], [ [ [ 149.157156, -20.237227 ], [ 149.154846, -20.243217 ], [ 149.150576, -20.238927 ], [ 149.157156, -20.237227 ] ] ], [ [ [ 149.132848, -20.467096 ], [ 149.132283, -20.482017 ], [ 149.120703, -20.469427 ], [ 149.132848, -20.467096 ] ] ], [ [ [ 149.126855, -20.348028 ], [ 149.124097, -20.357030 ], [ 149.117759, -20.355752 ], [ 149.118181, -20.343800 ], [ 149.126855, -20.348028 ] ] ], [ [ [ 149.124987, -20.271127 ], [ 149.119157, -20.271557 ], [ 149.123377, -20.264907 ], [ 149.124987, -20.271127 ] ] ], [ [ [ 149.124414, -20.543977 ], [ 149.118354, -20.542247 ], [ 149.114959, -20.552936 ], [ 149.095989, -20.547206 ], [ 149.112639, -20.537796 ], [ 149.124414, -20.543977 ] ] ], [ [ [ 149.111722, -20.274368 ], [ 149.111042, -20.287828 ], [ 149.104912, -20.266228 ], [ 149.111722, -20.274368 ] ] ], [ [ [ 149.104678, -20.481176 ], [ 149.095279, -20.480566 ], [ 149.098289, -20.490736 ], [ 149.082009, -20.484337 ], [ 149.066939, -20.525967 ], [ 149.065174, -20.516248 ], [ 149.043585, -20.522198 ], [ 149.046830, -20.513387 ], [ 149.036720, -20.503027 ], [ 149.049950, -20.509647 ], [ 149.065369, -20.502147 ], [ 149.068674, -20.477368 ], [ 149.075639, -20.481527 ], [ 149.074269, -20.464827 ], [ 149.082334, -20.459778 ], [ 149.074279, -20.451827 ], [ 149.080398, -20.436397 ], [ 149.089288, -20.448847 ], [ 149.084249, -20.459287 ], [ 149.104678, -20.481176 ] ] ], [ [ [ 149.103562, -20.250888 ], [ 149.101762, -20.266448 ], [ 149.088262, -20.280968 ], [ 149.093412, -20.300868 ], [ 149.084942, -20.304488 ], [ 149.085482, -20.294728 ], [ 149.075233, -20.301178 ], [ 149.077132, -20.293298 ], [ 149.070243, -20.293108 ], [ 149.075582, -20.270188 ], [ 149.089492, -20.265148 ], [ 149.094352, -20.270868 ], [ 149.103562, -20.250888 ] ] ], [ [ [ 149.089709, -20.522086 ], [ 149.080839, -20.525626 ], [ 149.079169, -20.515797 ], [ 149.089709, -20.522086 ] ] ], [ [ [ 149.089090, -20.660006 ], [ 149.066665, -20.641137 ], [ 149.055225, -20.618427 ], [ 149.089090, -20.660006 ] ] ], [ [ [ 149.074593, -20.303888 ], [ 149.070078, -20.309447 ], [ 149.065883, -20.303818 ], [ 149.074593, -20.303888 ] ] ], [ [ [ 149.064619, -20.453027 ], [ 149.052794, -20.450558 ], [ 149.034049, -20.460247 ], [ 149.024314, -20.441408 ], [ 149.036719, -20.430407 ], [ 149.040079, -20.438137 ], [ 149.052999, -20.436267 ], [ 149.064619, -20.453027 ] ] ], [ [ [ 149.062018, -20.293457 ], [ 149.046818, -20.309537 ], [ 149.043363, -20.302179 ], [ 149.034643, -20.308699 ], [ 149.032913, -20.300499 ], [ 149.022073, -20.321399 ], [ 148.990261, -20.300760 ], [ 148.978533, -20.313661 ], [ 148.986585, -20.322515 ], [ 148.963191, -20.328759 ], [ 148.962392, -20.303594 ], [ 148.949900, -20.303021 ], [ 148.974867, -20.268843 ], [ 148.968451, -20.265306 ], [ 148.966294, -20.280216 ], [ 148.959159, -20.287995 ], [ 148.957395, -20.280696 ], [ 148.937560, -20.307124 ], [ 148.932188, -20.294449 ], [ 148.923039, -20.295794 ], [ 148.928952, -20.286217 ], [ 148.912699, -20.290958 ], [ 148.912940, -20.281900 ], [ 148.927148, -20.281475 ], [ 148.936299, -20.263722 ], [ 148.942787, -20.268185 ], [ 148.962034, -20.244859 ], [ 148.954794, -20.239519 ], [ 148.958474, -20.227639 ], [ 148.942114, -20.243359 ], [ 148.937944, -20.239610 ], [ 148.939884, -20.225860 ], [ 148.952054, -20.219399 ], [ 148.960263, -20.187339 ], [ 148.955973, -20.158030 ], [ 148.978318, -20.161928 ], [ 148.973203, -20.174369 ], [ 148.983768, -20.185078 ], [ 148.976173, -20.205229 ], [ 148.996058, -20.203178 ], [ 148.991628, -20.250372 ], [ 149.010783, -20.232919 ], [ 149.004478, -20.255478 ], [ 149.025938, -20.234908 ], [ 149.014993, -20.269729 ], [ 149.025338, -20.255418 ], [ 149.040648, -20.284588 ], [ 149.062018, -20.293457 ] ] ], [ [ [ 149.044232, -20.155939 ], [ 149.036602, -20.164879 ], [ 149.038652, -20.182929 ], [ 149.020662, -20.160819 ], [ 149.036332, -20.159379 ], [ 149.038132, -20.150229 ], [ 149.044232, -20.155939 ] ] ], [ [ [ 149.036284, -20.397008 ], [ 149.034079, -20.403797 ], [ 149.023064, -20.397438 ], [ 149.036284, -20.397008 ] ] ], [ [ [ 148.996016, -20.352742 ], [ 148.989086, -20.356558 ], [ 148.990664, -20.349645 ], [ 148.996016, -20.352742 ] ] ], [ [ [ 148.982644, -20.351870 ], [ 148.977171, -20.364386 ], [ 148.965653, -20.366564 ], [ 148.967053, -20.352980 ], [ 148.956302, -20.361372 ], [ 148.952834, -20.377405 ], [ 148.948581, -20.368537 ], [ 148.955269, -20.356846 ], [ 148.944880, -20.364437 ], [ 148.946392, -20.332614 ], [ 148.958925, -20.347499 ], [ 148.976357, -20.344230 ], [ 148.982644, -20.351870 ] ] ], [ [ [ 148.967942, -20.067660 ], [ 148.948543, -20.083500 ], [ 148.949993, -20.092520 ], [ 148.959293, -20.094590 ], [ 148.957333, -20.106260 ], [ 148.945423, -20.093750 ], [ 148.937013, -20.101700 ], [ 148.951263, -20.156550 ], [ 148.931544, -20.178260 ], [ 148.930024, -20.132760 ], [ 148.915044, -20.174200 ], [ 148.902224, -20.166120 ], [ 148.915574, -20.123430 ], [ 148.887624, -20.169160 ], [ 148.881699, -20.161629 ], [ 148.884284, -20.122680 ], [ 148.889319, -20.111419 ], [ 148.904124, -20.109910 ], [ 148.911564, -20.100440 ], [ 148.911883, -20.088060 ], [ 148.902224, -20.079580 ], [ 148.906818, -20.071299 ], [ 148.922663, -20.062110 ], [ 148.926433, -20.081670 ], [ 148.926713, -20.073270 ], [ 148.942668, -20.063779 ], [ 148.959347, -20.059799 ], [ 148.967942, -20.067660 ] ] ], [ [ [ 148.941687, -20.376094 ], [ 148.928113, -20.369498 ], [ 148.927809, -20.337306 ], [ 148.935578, -20.339826 ], [ 148.941687, -20.376094 ] ] ], [ [ [ 148.929134, -20.318732 ], [ 148.927129, -20.325538 ], [ 148.923918, -20.311178 ], [ 148.929134, -20.318732 ] ] ], [ [ [ 148.927724, -20.852097 ], [ 148.917864, -20.854737 ], [ 148.917764, -20.847327 ], [ 148.927724, -20.852097 ] ] ], [ [ [ 148.924298, -20.255996 ], [ 148.921284, -20.271186 ], [ 148.908498, -20.274167 ], [ 148.909994, -20.257550 ], [ 148.924298, -20.255996 ] ] ], [ [ [ 148.915139, -20.852698 ], [ 148.897579, -20.854978 ], [ 148.891499, -20.829298 ], [ 148.902424, -20.826817 ], [ 148.915139, -20.852698 ] ] ], [ [ [ 148.898053, -20.050450 ], [ 148.894654, -20.062590 ], [ 148.881000, -20.061911 ], [ 148.880974, -20.037000 ], [ 148.898053, -20.050450 ] ] ], [ [ [ 148.882793, -20.601334 ], [ 148.876062, -20.599328 ], [ 148.878675, -20.590579 ], [ 148.882793, -20.601334 ] ] ], [ [ [ 148.875858, -20.613492 ], [ 148.866008, -20.619010 ], [ 148.864236, -20.607159 ], [ 148.875858, -20.613492 ] ] ], [ [ [ 148.875368, -20.385240 ], [ 148.875253, -20.394064 ], [ 148.866487, -20.396576 ], [ 148.851674, -20.381613 ], [ 148.844541, -20.335626 ], [ 148.853481, -20.316017 ], [ 148.850643, -20.347399 ], [ 148.875368, -20.385240 ] ] ], [ [ [ 148.850490, -20.261236 ], [ 148.839770, -20.280417 ], [ 148.826745, -20.285208 ], [ 148.830208, -20.255839 ], [ 148.850490, -20.261236 ] ] ], [ [ [ 148.829856, -20.235810 ], [ 148.829826, -20.241230 ], [ 148.822706, -20.238230 ], [ 148.810081, -20.214139 ], [ 148.829856, -20.235810 ] ] ], [ [ [ 148.614098, -20.148852 ], [ 148.600258, -20.152502 ], [ 148.607568, -20.137532 ], [ 148.614098, -20.148852 ] ] ], [ [ [ 148.576033, -20.101301 ], [ 148.569743, -20.103801 ], [ 148.570723, -20.096471 ], [ 148.576033, -20.101301 ] ] ], [ [ [ 148.478544, -20.001782 ], [ 148.474689, -20.049703 ], [ 148.457315, -20.051822 ], [ 148.444535, -20.044432 ], [ 148.438000, -20.021094 ], [ 148.445214, -19.973952 ], [ 148.457744, -19.974672 ], [ 148.467394, -19.995912 ], [ 148.478544, -20.001782 ] ] ], [ [ [ 148.294237, -20.031863 ], [ 148.286087, -20.040683 ], [ 148.277657, -20.038033 ], [ 148.282627, -20.026973 ], [ 148.284787, -20.033643 ], [ 148.294237, -20.031863 ] ] ], [ [ [ 146.883736, -19.113600 ], [ 146.872826, -19.153078 ], [ 146.850816, -19.160137 ], [ 146.846112, -19.181760 ], [ 146.804245, -19.161279 ], [ 146.779033, -19.129171 ], [ 146.789986, -19.115137 ], [ 146.815500, -19.117516 ], [ 146.832454, -19.104830 ], [ 146.849446, -19.117944 ], [ 146.864249, -19.115523 ], [ 146.862175, -19.102522 ], [ 146.883736, -19.113600 ] ] ], [ [ [ 146.693728, -18.755685 ], [ 146.693758, -18.761905 ], [ 146.687918, -18.757185 ], [ 146.647918, -18.776445 ], [ 146.632788, -18.762605 ], [ 146.616789, -18.764925 ], [ 146.609879, -18.757955 ], [ 146.587109, -18.758495 ], [ 146.579689, -18.770715 ], [ 146.568499, -18.762966 ], [ 146.566909, -18.750546 ], [ 146.576989, -18.749946 ], [ 146.578326, -18.725158 ], [ 146.589049, -18.712046 ], [ 146.572429, -18.677646 ], [ 146.594969, -18.682536 ], [ 146.597889, -18.698226 ], [ 146.619628, -18.707746 ], [ 146.641868, -18.749695 ], [ 146.685337, -18.738215 ], [ 146.693728, -18.755685 ] ] ], [ [ [ 146.643071, -19.031949 ], [ 146.629061, -19.033123 ], [ 146.633503, -19.022390 ], [ 146.643071, -19.031949 ] ] ], [ [ [ 146.621541, -19.031736 ], [ 146.598030, -19.035242 ], [ 146.614807, -19.025230 ], [ 146.621541, -19.031736 ] ] ], [ [ [ 146.567539, -18.670886 ], [ 146.556349, -18.687876 ], [ 146.538559, -18.658106 ], [ 146.547909, -18.652196 ], [ 146.567539, -18.670886 ] ] ], [ [ [ 146.551020, -18.842345 ], [ 146.548550, -18.848685 ], [ 146.532130, -18.835185 ], [ 146.551020, -18.842345 ] ] ], [ [ [ 146.526880, -18.672386 ], [ 146.519810, -18.714776 ], [ 146.508610, -18.700016 ], [ 146.518510, -18.684276 ], [ 146.505850, -18.659806 ], [ 146.520559, -18.660766 ], [ 146.526880, -18.672386 ] ] ], [ [ [ 146.508094, -18.622835 ], [ 146.503350, -18.656076 ], [ 146.489405, -18.667525 ], [ 146.486975, -18.650135 ], [ 146.500069, -18.633606 ], [ 146.483639, -18.614446 ], [ 146.494729, -18.598936 ], [ 146.481289, -18.585416 ], [ 146.484314, -18.567436 ], [ 146.497164, -18.581735 ], [ 146.508094, -18.622835 ] ] ], [ [ [ 146.505109, -18.554046 ], [ 146.500409, -18.563326 ], [ 146.489009, -18.557826 ], [ 146.490599, -18.539177 ], [ 146.502228, -18.543096 ], [ 146.505109, -18.554046 ] ] ], [ [ [ 146.237398, -18.282148 ], [ 146.230510, -18.272299 ], [ 146.232619, -18.265509 ], [ 146.244209, -18.266169 ], [ 146.232479, -18.257489 ], [ 146.227819, -18.234449 ], [ 146.216459, -18.227359 ], [ 146.224469, -18.213669 ], [ 146.223009, -18.194580 ], [ 146.231169, -18.197159 ], [ 146.231689, -18.219529 ], [ 146.250529, -18.237119 ], [ 146.274539, -18.239889 ], [ 146.298758, -18.231479 ], [ 146.305528, -18.241969 ], [ 146.285969, -18.271729 ], [ 146.275559, -18.317509 ], [ 146.290009, -18.325618 ], [ 146.306059, -18.355748 ], [ 146.318119, -18.351988 ], [ 146.331399, -18.362348 ], [ 146.339609, -18.380748 ], [ 146.334419, -18.386298 ], [ 146.327309, -18.381458 ], [ 146.324160, -18.400218 ], [ 146.358419, -18.418328 ], [ 146.336320, -18.432278 ], [ 146.323921, -18.486427 ], [ 146.301201, -18.494057 ], [ 146.289691, -18.487417 ], [ 146.247902, -18.488858 ], [ 146.224192, -18.478958 ], [ 146.200902, -18.437418 ], [ 146.206982, -18.397758 ], [ 146.191301, -18.366709 ], [ 146.151691, -18.312989 ], [ 146.101022, -18.285950 ], [ 146.070812, -18.246670 ], [ 146.103791, -18.234430 ], [ 146.127081, -18.234620 ], [ 146.196340, -18.277899 ], [ 146.247000, -18.295879 ], [ 146.237973, -18.282971 ], [ 146.239780, -18.293069 ], [ 146.225640, -18.277299 ], [ 146.237398, -18.282148 ] ] ], [ [ [ 146.287188, -18.142350 ], [ 146.277138, -18.138760 ], [ 146.282088, -18.135130 ], [ 146.287188, -18.142350 ] ] ], [ [ [ 146.208762, -18.460688 ], [ 146.206062, -18.471768 ], [ 146.189963, -18.470778 ], [ 146.192782, -18.459698 ], [ 146.208762, -18.460688 ] ] ], [ [ [ 146.179222, -18.396718 ], [ 146.178302, -18.373169 ], [ 146.193842, -18.395858 ], [ 146.195662, -18.418338 ], [ 146.192602, -18.429418 ], [ 146.180032, -18.417458 ], [ 146.179950, -18.415342 ], [ 146.172582, -18.420298 ], [ 146.167942, -18.407988 ], [ 146.179842, -18.412587 ], [ 146.179589, -18.406121 ], [ 146.178722, -18.409668 ], [ 146.167232, -18.404718 ], [ 146.145022, -18.358089 ], [ 146.163362, -18.368999 ], [ 146.171062, -18.365619 ], [ 146.179222, -18.396718 ] ] ], [ [ [ 146.192099, -18.166390 ], [ 146.176050, -18.180990 ], [ 146.152400, -18.175380 ], [ 146.160520, -18.152200 ], [ 146.171980, -18.151170 ], [ 146.192099, -18.166390 ] ] ], [ [ [ 146.187042, -18.430448 ], [ 146.177702, -18.434408 ], [ 146.182302, -18.426268 ], [ 146.187042, -18.430448 ] ] ], [ [ [ 146.180752, -18.419718 ], [ 146.176392, -18.432378 ], [ 146.170572, -18.423468 ], [ 146.180752, -18.419718 ] ] ], [ [ [ 146.178178, -17.966971 ], [ 146.134149, -17.935401 ], [ 146.151528, -17.927661 ], [ 146.173178, -17.945931 ], [ 146.178178, -17.966971 ] ] ], [ [ [ 146.016754, -17.155424 ], [ 146.011805, -17.165024 ], [ 146.004885, -17.154394 ], [ 146.016754, -17.155424 ] ] ], [ [ [ 146.005128, -16.924182 ], [ 146.000307, -16.936674 ], [ 145.985538, -16.942179 ], [ 145.990790, -16.925325 ], [ 146.005128, -16.924182 ] ] ], [ [ [ 145.477366, -14.670246 ], [ 145.467406, -14.679976 ], [ 145.470666, -14.685506 ], [ 145.448257, -14.680236 ], [ 145.444866, -14.667366 ], [ 145.455786, -14.672086 ], [ 145.450626, -14.647026 ], [ 145.467116, -14.654336 ], [ 145.477366, -14.670246 ] ] ], [ [ [ 144.989702, -14.502708 ], [ 144.978802, -14.511518 ], [ 144.950633, -14.499318 ], [ 144.978692, -14.492998 ], [ 144.989702, -14.502708 ] ] ], [ [ [ 144.817504, -14.431719 ], [ 144.810894, -14.437809 ], [ 144.804174, -14.432829 ], [ 144.815534, -14.425169 ], [ 144.817504, -14.431719 ] ] ], [ [ [ 144.532854, -14.118902 ], [ 144.531924, -14.124552 ], [ 144.525444, -14.120252 ], [ 144.525464, -14.112122 ], [ 144.532854, -14.118902 ] ] ], [ [ [ 144.338099, -14.095325 ], [ 144.335647, -14.102323 ], [ 144.326277, -14.102303 ], [ 144.327687, -14.095183 ], [ 144.338099, -14.095325 ] ] ], [ [ [ 144.338124, -14.095252 ], [ 144.328497, -14.093843 ], [ 144.331877, -14.085953 ], [ 144.340426, -14.088683 ], [ 144.338124, -14.095252 ] ] ], [ [ [ 144.283659, -14.194862 ], [ 144.240279, -14.191333 ], [ 144.232459, -14.175403 ], [ 144.251439, -14.175913 ], [ 144.250329, -14.160443 ], [ 144.272898, -14.158703 ], [ 144.283659, -14.194862 ] ] ], [ [ [ 144.278709, -14.226112 ], [ 144.269759, -14.238612 ], [ 144.245390, -14.221042 ], [ 144.266099, -14.225052 ], [ 144.276419, -14.216622 ], [ 144.278709, -14.226112 ] ] ], [ [ [ 144.268188, -14.148073 ], [ 144.245039, -14.151733 ], [ 144.209520, -14.184813 ], [ 144.228599, -14.154733 ], [ 144.231219, -14.132833 ], [ 144.237239, -14.129703 ], [ 144.243449, -14.142923 ], [ 144.268188, -14.148073 ] ] ], [ [ [ 144.231310, -14.209942 ], [ 144.202540, -14.230392 ], [ 144.222410, -14.206292 ], [ 144.231310, -14.209942 ] ] ], [ [ [ 144.063809, -9.912760 ], [ 144.057899, -9.923740 ], [ 144.039199, -9.923150 ], [ 144.051549, -9.908430 ], [ 144.063809, -9.912760 ] ] ], [ [ [ 143.784510, -9.577153 ], [ 143.775831, -9.598423 ], [ 143.760011, -9.597023 ], [ 143.759251, -9.580523 ], [ 143.772461, -9.580473 ], [ 143.777661, -9.570963 ], [ 143.784510, -9.577153 ] ] ], [ [ [ 143.779395, -14.221694 ], [ 143.772635, -14.220164 ], [ 143.775035, -14.214054 ], [ 143.779395, -14.221694 ] ] ], [ [ [ 143.721987, -13.866067 ], [ 143.717843, -13.870137 ], [ 143.715161, -13.862125 ], [ 143.721987, -13.866067 ] ] ], [ [ [ 143.501861, -12.526884 ], [ 143.475112, -12.521365 ], [ 143.454362, -12.504375 ], [ 143.475222, -12.520465 ], [ 143.501861, -12.526884 ] ] ], [ [ [ 143.422975, -9.750263 ], [ 143.398315, -9.754583 ], [ 143.404565, -9.748233 ], [ 143.422975, -9.750263 ] ] ], [ [ [ 143.415166, -12.289466 ], [ 143.403683, -12.287791 ], [ 143.413206, -12.284046 ], [ 143.415166, -12.289466 ] ] ], [ [ [ 143.401295, -12.868873 ], [ 143.392476, -12.875953 ], [ 143.389006, -12.868853 ], [ 143.401295, -12.868873 ] ] ], [ [ [ 143.400826, -12.895923 ], [ 143.393566, -12.894363 ], [ 143.394896, -12.876513 ], [ 143.400826, -12.895923 ] ] ], [ [ [ 143.390646, -12.878563 ], [ 143.383976, -12.883323 ], [ 143.379126, -12.876673 ], [ 143.390646, -12.878563 ] ] ], [ [ [ 143.388316, -12.869873 ], [ 143.376686, -12.870463 ], [ 143.385076, -12.864793 ], [ 143.388316, -12.869873 ] ] ], [ [ [ 143.378456, -12.886273 ], [ 143.374456, -12.895763 ], [ 143.358766, -12.887003 ], [ 143.378456, -12.886273 ] ] ], [ [ [ 143.275986, -11.985288 ], [ 143.267332, -11.989577 ], [ 143.262231, -11.975052 ], [ 143.275986, -11.985288 ] ] ], [ [ [ 142.977396, -9.804980 ], [ 142.971796, -9.805440 ], [ 142.975476, -9.795090 ], [ 142.977396, -9.804980 ] ] ], [ [ [ 142.948447, -9.853910 ], [ 142.912558, -9.866849 ], [ 142.897758, -9.853439 ], [ 142.900448, -9.846079 ], [ 142.917257, -9.842999 ], [ 142.948447, -9.853910 ] ] ], [ [ [ 142.867649, -10.039029 ], [ 142.857599, -10.053148 ], [ 142.826040, -10.024858 ], [ 142.832880, -10.018308 ], [ 142.857289, -10.019578 ], [ 142.867649, -10.039029 ] ] ], [ [ [ 142.800857, -9.375672 ], [ 142.794837, -9.389352 ], [ 142.754198, -9.400472 ], [ 142.743739, -9.419021 ], [ 142.707250, -9.428321 ], [ 142.651571, -9.427961 ], [ 142.609372, -9.414711 ], [ 142.596612, -9.403411 ], [ 142.603782, -9.383171 ], [ 142.646921, -9.364721 ], [ 142.707499, -9.381752 ], [ 142.743128, -9.366912 ], [ 142.800857, -9.375672 ] ] ], [ [ [ 142.783441, -9.904118 ], [ 142.768611, -9.904698 ], [ 142.764381, -9.894078 ], [ 142.781371, -9.895868 ], [ 142.783441, -9.904118 ] ] ], [ [ [ 142.725479, -9.368282 ], [ 142.698850, -9.377342 ], [ 142.667300, -9.369791 ], [ 142.688930, -9.358252 ], [ 142.725479, -9.368282 ] ] ], [ [ [ 142.705703, -10.953042 ], [ 142.692314, -10.958571 ], [ 142.686954, -10.936972 ], [ 142.666714, -10.936282 ], [ 142.651164, -10.923612 ], [ 142.651864, -10.914792 ], [ 142.690173, -10.920132 ], [ 142.705703, -10.953042 ] ] ], [ [ [ 142.666442, -10.629033 ], [ 142.654073, -10.651403 ], [ 142.638413, -10.653193 ], [ 142.650883, -10.638623 ], [ 142.632273, -10.627073 ], [ 142.639373, -10.618263 ], [ 142.666442, -10.629033 ] ] ], [ [ [ 142.649234, -9.764488 ], [ 142.647984, -9.772568 ], [ 142.621995, -9.772588 ], [ 142.628365, -9.757778 ], [ 142.649234, -9.764488 ] ] ], [ [ [ 142.639044, -10.920432 ], [ 142.635264, -10.926992 ], [ 142.620744, -10.918722 ], [ 142.634024, -10.914212 ], [ 142.639044, -10.920432 ] ] ], [ [ [ 142.627853, -10.598243 ], [ 142.615163, -10.600713 ], [ 142.609233, -10.592683 ], [ 142.619973, -10.589754 ], [ 142.627853, -10.598243 ] ] ], [ [ [ 142.622543, -10.743163 ], [ 142.611903, -10.745413 ], [ 142.584394, -10.714403 ], [ 142.595253, -10.712833 ], [ 142.608843, -10.726303 ], [ 142.615023, -10.720883 ], [ 142.615453, -10.738183 ], [ 142.622543, -10.743163 ] ] ], [ [ [ 142.551753, -9.419591 ], [ 142.531603, -9.435991 ], [ 142.528863, -9.410781 ], [ 142.551753, -9.419591 ] ] ], [ [ [ 142.517682, -10.192006 ], [ 142.513112, -10.195276 ], [ 142.504112, -10.183846 ], [ 142.517682, -10.192006 ] ] ], [ [ [ 142.514652, -10.158086 ], [ 142.508252, -10.163276 ], [ 142.502222, -10.157276 ], [ 142.514652, -10.158086 ] ] ], [ [ [ 142.490332, -10.243286 ], [ 142.480023, -10.260396 ], [ 142.474043, -10.250256 ], [ 142.490332, -10.243286 ] ] ], [ [ [ 142.410957, -10.711573 ], [ 142.385637, -10.750123 ], [ 142.393437, -10.730423 ], [ 142.389727, -10.717993 ], [ 142.396547, -10.709253 ], [ 142.410957, -10.711573 ] ] ], [ [ [ 142.344168, -10.172237 ], [ 142.331609, -10.199197 ], [ 142.278669, -10.259777 ], [ 142.241128, -10.234258 ], [ 142.226388, -10.230358 ], [ 142.218088, -10.238878 ], [ 142.183887, -10.189480 ], [ 142.205827, -10.166549 ], [ 142.210747, -10.170829 ], [ 142.206037, -10.161699 ], [ 142.219837, -10.128859 ], [ 142.236927, -10.121329 ], [ 142.253827, -10.125449 ], [ 142.265887, -10.115789 ], [ 142.288637, -10.127798 ], [ 142.300147, -10.124018 ], [ 142.312078, -10.138558 ], [ 142.325528, -10.135108 ], [ 142.330418, -10.158157 ], [ 142.344168, -10.172237 ] ] ], [ [ [ 142.326393, -10.611193 ], [ 142.302723, -10.634243 ], [ 142.267664, -10.642303 ], [ 142.236094, -10.607263 ], [ 142.243174, -10.606453 ], [ 142.240974, -10.597863 ], [ 142.257124, -10.579483 ], [ 142.306333, -10.570583 ], [ 142.326393, -10.611193 ] ] ], [ [ [ 142.321023, -10.531173 ], [ 142.315813, -10.541373 ], [ 142.300273, -10.542343 ], [ 142.284103, -10.527934 ], [ 142.304293, -10.520614 ], [ 142.312232, -10.505544 ], [ 142.321023, -10.531173 ] ] ], [ [ [ 142.319433, -9.567913 ], [ 142.306693, -9.574293 ], [ 142.283773, -9.569863 ], [ 142.258312, -9.553914 ], [ 142.290603, -9.551303 ], [ 142.319433, -9.567913 ] ] ], [ [ [ 142.304918, -10.721873 ], [ 142.290218, -10.733913 ], [ 142.281688, -10.716313 ], [ 142.295108, -10.701673 ], [ 142.304918, -10.721873 ] ] ], [ [ [ 142.294921, -9.262735 ], [ 142.284021, -9.284645 ], [ 142.245401, -9.290786 ], [ 142.160671, -9.281257 ], [ 142.131871, -9.264447 ], [ 142.222421, -9.229597 ], [ 142.242551, -9.258916 ], [ 142.266541, -9.250686 ], [ 142.294921, -9.262735 ] ] ], [ [ [ 142.277423, -10.706483 ], [ 142.264814, -10.727223 ], [ 142.255044, -10.713813 ], [ 142.242914, -10.711143 ], [ 142.245694, -10.720063 ], [ 142.230224, -10.739463 ], [ 142.227404, -10.720703 ], [ 142.206854, -10.726433 ], [ 142.195723, -10.746274 ], [ 142.187943, -10.746184 ], [ 142.186313, -10.765974 ], [ 142.177863, -10.770874 ], [ 142.158273, -10.761334 ], [ 142.150053, -10.764874 ], [ 142.138633, -10.737094 ], [ 142.112843, -10.719665 ], [ 142.119103, -10.710815 ], [ 142.109633, -10.685085 ], [ 142.119713, -10.690575 ], [ 142.110464, -10.661784 ], [ 142.122544, -10.652124 ], [ 142.121934, -10.642974 ], [ 142.139994, -10.642574 ], [ 142.152494, -10.622854 ], [ 142.168724, -10.623354 ], [ 142.186914, -10.597964 ], [ 142.203704, -10.594844 ], [ 142.210184, -10.616523 ], [ 142.245394, -10.647253 ], [ 142.249704, -10.667023 ], [ 142.277423, -10.706483 ] ] ], [ [ [ 142.250871, -9.229096 ], [ 142.242411, -9.234726 ], [ 142.233540, -9.221187 ], [ 142.250871, -9.229096 ] ] ], [ [ [ 142.232533, -10.573924 ], [ 142.210654, -10.589044 ], [ 142.205594, -10.581494 ], [ 142.221487, -10.569771 ], [ 142.232533, -10.573924 ] ] ], [ [ [ 142.229863, -10.534034 ], [ 142.213993, -10.566314 ], [ 142.194943, -10.574864 ], [ 142.184063, -10.568354 ], [ 142.182853, -10.552644 ], [ 142.204073, -10.544074 ], [ 142.213013, -10.521654 ], [ 142.229863, -10.534034 ] ] ], [ [ [ 142.201174, -9.948772 ], [ 142.178455, -9.972832 ], [ 142.164694, -9.951742 ], [ 142.187014, -9.942382 ], [ 142.201174, -9.948772 ] ] ], [ [ [ 142.192476, -10.105890 ], [ 142.187847, -10.148420 ], [ 142.170987, -10.157860 ], [ 142.163427, -10.180960 ], [ 142.153917, -10.172620 ], [ 142.134317, -10.178800 ], [ 142.121646, -10.148091 ], [ 142.108876, -10.148811 ], [ 142.087466, -10.130111 ], [ 142.091896, -10.122861 ], [ 142.085356, -10.112592 ], [ 142.112755, -10.082542 ], [ 142.114185, -10.068512 ], [ 142.127895, -10.072881 ], [ 142.161975, -10.063601 ], [ 142.168266, -10.069001 ], [ 142.181926, -10.059341 ], [ 142.192476, -10.105890 ] ] ], [ [ [ 142.188430, -9.232797 ], [ 142.156401, -9.246727 ], [ 142.164350, -9.223927 ], [ 142.188430, -9.232797 ] ] ], [ [ [ 142.178983, -10.585664 ], [ 142.169004, -10.605944 ], [ 142.146333, -10.595054 ], [ 142.178983, -10.585664 ] ] ], [ [ [ 142.173227, -10.207719 ], [ 142.168848, -10.228199 ], [ 142.163437, -10.216909 ], [ 142.173227, -10.207719 ] ] ], [ [ [ 142.170973, -10.553585 ], [ 142.157783, -10.570035 ], [ 142.145653, -10.565665 ], [ 142.170973, -10.553585 ] ] ], [ [ [ 142.140715, -10.373367 ], [ 142.134365, -10.386847 ], [ 142.125905, -10.384057 ], [ 142.124654, -10.353408 ], [ 142.132764, -10.354288 ], [ 142.140715, -10.373367 ] ] ], [ [ [ 142.115326, -10.991465 ], [ 142.107635, -10.998365 ], [ 142.098845, -10.989496 ], [ 142.099596, -10.975245 ], [ 142.108716, -10.967305 ], [ 142.114906, -10.971235 ], [ 142.099295, -10.986556 ], [ 142.115326, -10.991465 ] ] ], [ [ [ 142.076853, -10.265380 ], [ 142.065883, -10.262480 ], [ 142.073973, -10.259180 ], [ 142.076853, -10.265380 ] ] ], [ [ [ 142.060474, -10.353859 ], [ 142.048074, -10.365769 ], [ 142.048604, -10.354689 ], [ 142.060474, -10.353859 ] ] ], [ [ [ 139.887477, -16.653029 ], [ 139.855767, -16.677089 ], [ 139.848137, -16.663479 ], [ 139.868217, -16.658209 ], [ 139.871947, -16.645349 ], [ 139.887477, -16.653029 ] ] ], [ [ [ 139.813616, -16.491310 ], [ 139.806556, -16.496790 ], [ 139.802206, -16.487970 ], [ 139.813616, -16.491310 ] ] ], [ [ [ 139.734697, -16.477391 ], [ 139.730877, -16.501301 ], [ 139.723347, -16.490971 ], [ 139.709537, -16.490181 ], [ 139.701237, -16.474411 ], [ 139.717717, -16.450141 ], [ 139.726367, -16.450781 ], [ 139.734697, -16.477391 ] ] ], [ [ [ 139.712128, -16.530531 ], [ 139.689608, -16.534981 ], [ 139.683758, -16.520471 ], [ 139.657218, -16.519401 ], [ 139.639278, -16.532321 ], [ 139.626268, -16.530421 ], [ 139.595979, -16.554211 ], [ 139.589039, -16.532241 ], [ 139.579709, -16.527081 ], [ 139.578299, -16.502671 ], [ 139.558499, -16.490752 ], [ 139.566579, -16.474502 ], [ 139.546629, -16.460532 ], [ 139.560819, -16.480272 ], [ 139.540659, -16.488212 ], [ 139.531339, -16.515482 ], [ 139.506779, -16.511992 ], [ 139.475020, -16.526232 ], [ 139.485560, -16.542112 ], [ 139.514320, -16.545152 ], [ 139.506800, -16.576682 ], [ 139.483700, -16.556022 ], [ 139.453080, -16.569502 ], [ 139.458300, -16.575382 ], [ 139.467430, -16.568582 ], [ 139.473070, -16.583162 ], [ 139.455270, -16.580312 ], [ 139.471200, -16.588132 ], [ 139.465631, -16.627932 ], [ 139.439141, -16.630692 ], [ 139.447111, -16.633152 ], [ 139.451261, -16.666262 ], [ 139.438131, -16.674752 ], [ 139.417381, -16.672402 ], [ 139.401991, -16.640432 ], [ 139.393081, -16.637272 ], [ 139.380071, -16.647112 ], [ 139.375851, -16.642032 ], [ 139.383012, -16.656382 ], [ 139.368602, -16.672102 ], [ 139.373892, -16.686342 ], [ 139.365692, -16.693352 ], [ 139.358742, -16.684572 ], [ 139.350562, -16.688952 ], [ 139.321982, -16.710182 ], [ 139.313053, -16.730232 ], [ 139.305073, -16.724132 ], [ 139.274583, -16.733523 ], [ 139.254353, -16.723583 ], [ 139.230023, -16.731153 ], [ 139.221573, -16.709793 ], [ 139.199764, -16.707653 ], [ 139.195023, -16.661933 ], [ 139.166244, -16.667973 ], [ 139.151014, -16.633843 ], [ 139.161923, -16.608643 ], [ 139.212783, -16.568533 ], [ 139.218522, -16.535753 ], [ 139.239262, -16.523663 ], [ 139.241832, -16.504333 ], [ 139.292081, -16.477193 ], [ 139.304131, -16.462833 ], [ 139.338331, -16.464503 ], [ 139.363620, -16.452393 ], [ 139.420420, -16.444882 ], [ 139.465389, -16.446072 ], [ 139.535249, -16.408552 ], [ 139.548048, -16.390702 ], [ 139.604468, -16.403041 ], [ 139.650178, -16.449501 ], [ 139.676387, -16.450611 ], [ 139.680237, -16.468881 ], [ 139.690287, -16.468001 ], [ 139.698507, -16.478801 ], [ 139.700878, -16.514421 ], [ 139.712128, -16.530531 ] ] ], [ [ [ 139.639482, -17.074420 ], [ 139.611912, -17.120940 ], [ 139.614462, -17.139480 ], [ 139.603772, -17.138330 ], [ 139.596492, -17.132900 ], [ 139.595112, -17.112220 ], [ 139.614042, -17.106260 ], [ 139.625512, -17.062090 ], [ 139.639482, -17.074420 ] ] ], [ [ [ 139.472553, -17.095950 ], [ 139.427284, -17.105591 ], [ 139.425524, -17.123461 ], [ 139.439824, -17.135691 ], [ 139.434554, -17.139451 ], [ 139.411174, -17.122191 ], [ 139.394114, -17.082971 ], [ 139.423344, -17.078611 ], [ 139.450443, -17.055281 ], [ 139.456743, -17.031281 ], [ 139.468593, -17.029171 ], [ 139.461633, -17.025261 ], [ 139.469723, -17.023851 ], [ 139.472983, -17.035581 ], [ 139.486073, -17.036241 ], [ 139.490133, -17.044571 ], [ 139.486953, -17.034701 ], [ 139.473763, -17.030381 ], [ 139.477453, -17.019511 ], [ 139.490573, -17.015811 ], [ 139.494582, -17.000981 ], [ 139.500462, -17.002301 ], [ 139.492632, -16.996501 ], [ 139.494472, -16.979621 ], [ 139.543542, -17.031350 ], [ 139.556342, -17.034310 ], [ 139.549272, -17.047970 ], [ 139.554432, -17.069730 ], [ 139.577982, -17.093550 ], [ 139.522693, -17.102760 ], [ 139.514473, -17.111860 ], [ 139.518683, -17.123160 ], [ 139.509863, -17.123150 ], [ 139.478003, -17.115791 ], [ 139.472553, -17.095950 ] ], [ [ 139.479806, -17.093717 ], [ 139.484533, -17.092811 ], [ 139.480753, -17.084631 ], [ 139.479806, -17.093717 ] ] ], [ [ [ 139.560553, -17.114420 ], [ 139.549473, -17.129210 ], [ 139.552203, -17.114520 ], [ 139.560553, -17.114420 ] ] ], [ [ [ 139.477661, -16.679452 ], [ 139.464551, -16.700382 ], [ 139.453651, -16.707512 ], [ 139.441331, -16.703682 ], [ 139.438391, -16.694532 ], [ 139.452441, -16.674392 ], [ 139.467561, -16.667032 ], [ 139.477661, -16.679452 ] ] ], [ [ [ 139.283660, -16.264043 ], [ 139.273720, -16.275354 ], [ 139.272900, -16.264384 ], [ 139.283660, -16.264043 ] ] ], [ [ [ 139.279795, -16.993792 ], [ 139.262625, -16.999202 ], [ 139.260655, -16.989832 ], [ 139.265475, -16.984412 ], [ 139.279795, -16.993792 ] ] ], [ [ [ 139.265675, -17.058282 ], [ 139.250745, -17.055642 ], [ 139.247865, -17.045382 ], [ 139.233225, -17.046142 ], [ 139.222885, -17.031722 ], [ 139.214685, -17.036402 ], [ 139.207345, -17.003332 ], [ 139.243075, -17.029472 ], [ 139.265675, -17.058282 ] ] ], [ [ [ 139.188754, -16.681543 ], [ 139.182644, -16.698383 ], [ 139.188624, -16.719283 ], [ 139.173964, -16.728443 ], [ 139.184754, -16.733643 ], [ 139.169974, -16.730693 ], [ 139.162344, -16.748893 ], [ 139.141354, -16.754083 ], [ 139.145954, -16.691933 ], [ 139.171284, -16.671033 ], [ 139.188754, -16.681543 ] ] ], [ [ [ 139.152225, -16.821893 ], [ 139.128405, -16.826063 ], [ 139.113855, -16.837583 ], [ 139.113255, -16.849443 ], [ 139.094725, -16.843103 ], [ 139.090625, -16.826713 ], [ 139.094865, -16.812703 ], [ 139.132535, -16.797813 ], [ 139.152225, -16.821893 ] ] ], [ [ [ 139.076836, -16.902193 ], [ 139.046216, -16.885333 ], [ 139.073676, -16.891113 ], [ 139.076836, -16.902193 ] ] ], [ [ [ 139.067596, -16.865003 ], [ 139.058906, -16.876863 ], [ 139.063146, -16.860593 ], [ 139.067596, -16.865003 ] ] ] + ] + } + }, + { + "type": "Feature", + "id": 3, + "properties": { + "STATE_CODE": "4", + "NAME_1": "South Australia", + "ISO":"AU-SA" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ [ [ 138.500217, -34.843571 ], [ 138.510797, -34.842304 ], [ 138.516160, -34.810835 ], [ 138.532889, -34.815026 ], [ 138.530822, -34.822573 ], [ 138.545732, -34.810610 ], [ 138.566280, -34.825093 ], [ 138.547525, -34.809537 ], [ 138.553914, -34.789902 ], [ 138.543501, -34.774809 ], [ 138.541428, -34.752951 ], [ 138.529750, -34.745246 ], [ 138.532602, -34.737353 ], [ 138.491739, -34.721322 ], [ 138.475866, -34.698481 ], [ 138.463876, -34.697038 ], [ 138.454697, -34.682072 ], [ 138.436150, -34.672481 ], [ 138.444655, -34.670494 ], [ 138.430566, -34.668154 ], [ 138.436243, -34.653886 ], [ 138.445781, -34.653393 ], [ 138.426467, -34.621629 ], [ 138.413243, -34.620852 ], [ 138.416988, -34.614387 ], [ 138.408432, -34.600260 ], [ 138.364309, -34.578149 ], [ 138.349516, -34.557529 ], [ 138.344385, -34.531212 ], [ 138.265632, -34.476802 ], [ 138.246978, -34.400897 ], [ 138.225222, -34.365908 ], [ 138.230858, -34.343908 ], [ 138.223029, -34.311262 ], [ 138.192401, -34.272173 ], [ 138.146203, -34.265618 ], [ 138.167524, -34.245335 ], [ 138.165702, -34.221296 ], [ 138.102306, -34.138883 ], [ 138.077415, -34.133551 ], [ 138.043720, -34.174353 ], [ 138.029348, -34.221086 ], [ 138.012405, -34.231329 ], [ 138.001543, -34.257058 ], [ 138.021736, -34.285070 ], [ 138.007096, -34.349032 ], [ 137.917537, -34.428156 ], [ 137.898839, -34.493836 ], [ 137.887583, -34.507362 ], [ 137.875809, -34.597683 ], [ 137.907676, -34.615868 ], [ 137.876810, -34.668410 ], [ 137.880758, -34.695263 ], [ 137.868851, -34.722633 ], [ 137.864947, -34.766080 ], [ 137.857788, -34.771200 ], [ 137.865023, -34.777911 ], [ 137.831700, -34.812719 ], [ 137.800063, -34.877546 ], [ 137.796073, -34.906192 ], [ 137.805024, -34.912187 ], [ 137.790290, -34.922297 ], [ 137.757304, -34.996570 ], [ 137.763990, -35.040599 ], [ 137.733807, -35.044159 ], [ 137.724730, -35.053743 ], [ 137.745477, -35.074885 ], [ 137.743274, -35.102896 ], [ 137.758661, -35.114743 ], [ 137.697314, -35.141537 ], [ 137.677887, -35.167742 ], [ 137.637498, -35.168201 ], [ 137.554817, -35.117455 ], [ 137.525835, -35.112928 ], [ 137.510698, -35.119016 ], [ 137.464103, -35.099218 ], [ 137.422840, -35.098095 ], [ 137.352267, -35.133960 ], [ 137.340748, -35.149462 ], [ 137.342809, -35.161720 ], [ 137.334579, -35.163878 ], [ 137.347808, -35.163004 ], [ 137.334887, -35.167858 ], [ 137.298110, -35.168308 ], [ 137.264701, -35.159041 ], [ 137.237741, -35.164515 ], [ 137.203511, -35.191922 ], [ 137.190399, -35.208941 ], [ 137.190574, -35.229175 ], [ 137.173992, -35.237359 ], [ 137.111428, -35.242931 ], [ 137.076687, -35.226357 ], [ 137.001389, -35.223207 ], [ 136.982979, -35.235541 ], [ 136.982700, -35.249550 ], [ 136.969755, -35.252080 ], [ 136.966855, -35.267030 ], [ 136.945243, -35.269335 ], [ 136.944022, -35.282153 ], [ 136.899750, -35.285811 ], [ 136.883000, -35.300346 ], [ 136.870503, -35.286886 ], [ 136.848565, -35.282106 ], [ 136.821927, -35.245280 ], [ 136.834107, -35.241945 ], [ 136.829351, -35.233226 ], [ 136.846425, -35.228823 ], [ 136.845740, -35.190101 ], [ 136.865972, -35.194123 ], [ 136.888337, -35.185252 ], [ 136.897610, -35.156673 ], [ 136.913125, -35.153594 ], [ 136.941123, -35.129111 ], [ 136.941788, -35.105674 ], [ 136.961072, -35.082302 ], [ 136.930287, -35.029050 ], [ 136.944086, -35.022033 ], [ 136.943678, -35.012642 ], [ 136.968239, -35.000414 ], [ 136.976385, -34.941240 ], [ 137.012553, -34.920480 ], [ 137.013614, -34.892979 ], [ 137.093376, -34.919948 ], [ 137.146064, -34.918200 ], [ 137.194414, -34.901017 ], [ 137.224498, -34.904483 ], [ 137.276479, -34.893900 ], [ 137.291011, -34.901020 ], [ 137.309245, -34.927825 ], [ 137.346955, -34.929800 ], [ 137.356422, -34.946584 ], [ 137.374945, -34.953745 ], [ 137.415350, -34.938659 ], [ 137.448758, -34.910318 ], [ 137.457725, -34.884498 ], [ 137.459607, -34.807630 ], [ 137.509440, -34.617955 ], [ 137.506741, -34.582015 ], [ 137.473817, -34.511303 ], [ 137.486637, -34.481665 ], [ 137.483189, -34.439275 ], [ 137.463169, -34.426672 ], [ 137.446005, -34.436891 ], [ 137.427025, -34.472597 ], [ 137.415149, -34.459593 ], [ 137.416933, -34.444675 ], [ 137.438119, -34.427953 ], [ 137.446657, -34.398039 ], [ 137.465117, -34.400688 ], [ 137.476080, -34.392463 ], [ 137.483663, -34.343124 ], [ 137.500299, -34.312000 ], [ 137.499904, -34.226504 ], [ 137.449856, -34.135518 ], [ 137.506757, -34.137625 ], [ 137.522273, -34.129251 ], [ 137.526001, -34.108290 ], [ 137.567535, -34.043536 ], [ 137.552323, -34.014424 ], [ 137.527125, -34.004388 ], [ 137.538706, -33.992451 ], [ 137.558632, -33.988852 ], [ 137.563706, -33.971636 ], [ 137.575722, -33.967168 ], [ 137.600263, -33.936313 ], [ 137.630640, -33.921822 ], [ 137.625460, -33.895162 ], [ 137.600358, -33.876794 ], [ 137.643791, -33.830437 ], [ 137.725471, -33.769922 ], [ 137.736431, -33.737836 ], [ 137.755144, -33.714222 ], [ 137.800547, -33.683113 ], [ 137.834527, -33.642457 ], [ 137.857277, -33.631321 ], [ 137.879023, -33.596782 ], [ 137.892462, -33.587902 ], [ 137.919659, -33.587330 ], [ 137.924238, -33.597412 ], [ 137.913797, -33.612915 ], [ 137.903569, -33.614486 ], [ 137.905083, -33.596919 ], [ 137.893230, -33.625613 ], [ 137.917547, -33.624978 ], [ 137.935597, -33.580101 ], [ 137.935352, -33.552675 ], [ 137.946766, -33.554549 ], [ 137.951782, -33.573302 ], [ 137.964795, -33.574318 ], [ 137.977463, -33.558834 ], [ 137.971121, -33.539426 ], [ 137.962976, -33.550773 ], [ 137.939426, -33.547918 ], [ 137.941430, -33.518107 ], [ 137.949068, -33.512444 ], [ 137.932892, -33.499684 ], [ 137.906643, -33.434132 ], [ 137.870496, -33.396540 ], [ 137.875500, -33.362386 ], [ 137.883258, -33.359406 ], [ 137.890944, -33.366841 ], [ 137.882871, -33.357762 ], [ 137.891216, -33.353978 ], [ 137.883687, -33.352400 ], [ 137.881243, -33.323158 ], [ 137.874140, -33.316092 ], [ 137.878627, -33.329884 ], [ 137.865600, -33.317356 ], [ 137.858829, -33.320776 ], [ 137.873503, -33.330279 ], [ 137.851830, -33.326180 ], [ 137.842526, -33.316505 ], [ 137.844915, -33.304670 ], [ 137.817427, -33.286669 ], [ 137.811132, -33.266254 ], [ 137.826750, -33.248593 ], [ 137.821262, -33.244931 ], [ 137.837982, -33.207238 ], [ 137.852958, -33.209589 ], [ 137.853601, -33.196834 ], [ 137.907816, -33.171441 ], [ 137.925484, -33.176496 ], [ 137.939986, -33.158150 ], [ 137.958306, -33.167765 ], [ 137.963533, -33.160505 ], [ 137.954364, -33.154713 ], [ 137.987635, -33.143951 ], [ 138.000807, -33.131649 ], [ 138.007072, -33.133387 ], [ 138.001337, -33.144027 ], [ 138.013031, -33.153719 ], [ 138.011854, -33.178027 ], [ 138.024228, -33.181884 ], [ 138.036289, -33.169499 ], [ 138.014093, -33.178089 ], [ 138.018263, -33.159353 ], [ 138.028292, -33.155010 ], [ 138.020918, -33.149031 ], [ 138.048044, -33.135837 ], [ 138.054408, -33.115096 ], [ 138.036705, -33.102965 ], [ 138.024630, -33.105780 ], [ 138.030634, -33.098370 ], [ 138.039252, -33.101157 ], [ 138.045942, -33.086700 ], [ 138.018784, -33.035621 ], [ 137.952082, -33.006010 ], [ 137.956632, -32.981391 ], [ 137.912322, -32.853486 ], [ 137.900890, -32.777649 ], [ 137.916527, -32.768858 ], [ 137.916821, -32.759413 ], [ 137.936655, -32.766652 ], [ 137.944458, -32.757655 ], [ 137.887464, -32.715447 ], [ 137.837571, -32.695810 ], [ 137.860025, -32.689400 ], [ 137.867648, -32.663933 ], [ 137.852028, -32.640869 ], [ 137.836291, -32.637649 ], [ 137.802716, -32.608002 ], [ 137.821820, -32.580580 ], [ 137.828519, -32.591178 ], [ 137.825333, -32.603699 ], [ 137.829153, -32.594097 ], [ 137.839055, -32.603632 ], [ 137.829893, -32.594301 ], [ 137.838248, -32.587284 ], [ 137.829686, -32.584703 ], [ 137.835770, -32.574669 ], [ 137.823014, -32.560252 ], [ 137.782259, -32.550341 ], [ 137.789296, -32.545782 ], [ 137.781840, -32.543439 ], [ 137.785277, -32.528520 ], [ 137.768971, -32.523867 ], [ 137.772488, -32.505119 ], [ 137.758759, -32.491348 ], [ 137.770628, -32.480322 ], [ 137.757935, -32.456053 ], [ 137.766047, -32.439510 ], [ 137.750360, -32.415371 ], [ 137.752415, -32.431290 ], [ 137.763815, -32.442118 ], [ 137.753371, -32.457178 ], [ 137.764511, -32.476162 ], [ 137.751739, -32.503471 ], [ 137.762010, -32.510099 ], [ 137.749653, -32.531560 ], [ 137.764897, -32.596744 ], [ 137.750393, -32.673305 ], [ 137.757119, -32.694254 ], [ 137.749747, -32.708266 ], [ 137.753152, -32.721238 ], [ 137.781324, -32.713734 ], [ 137.809507, -32.748590 ], [ 137.793206, -32.779971 ], [ 137.798497, -32.784695 ], [ 137.798826, -32.779387 ], [ 137.803563, -32.796932 ], [ 137.810557, -32.845255 ], [ 137.800485, -32.868142 ], [ 137.791768, -32.870953 ], [ 137.798263, -32.893540 ], [ 137.789289, -32.915205 ], [ 137.758283, -32.907355 ], [ 137.749516, -32.921517 ], [ 137.786511, -32.999915 ], [ 137.759169, -32.988972 ], [ 137.760331, -32.995383 ], [ 137.721268, -32.990512 ], [ 137.713268, -32.974483 ], [ 137.691496, -32.959560 ], [ 137.661043, -32.950959 ], [ 137.641418, -32.955318 ], [ 137.611458, -32.974561 ], [ 137.595198, -32.998551 ], [ 137.596336, -33.006782 ], [ 137.603230, -33.001786 ], [ 137.595789, -33.012108 ], [ 137.599742, -33.021089 ], [ 137.585736, -33.022086 ], [ 137.596979, -33.036150 ], [ 137.552961, -33.058059 ], [ 137.557292, -33.065908 ], [ 137.538685, -33.082123 ], [ 137.536023, -33.094818 ], [ 137.499752, -33.109622 ], [ 137.486076, -33.124658 ], [ 137.457600, -33.135572 ], [ 137.451979, -33.130701 ], [ 137.442264, -33.152177 ], [ 137.434062, -33.230088 ], [ 137.397534, -33.285300 ], [ 137.389738, -33.285318 ], [ 137.393686, -33.289890 ], [ 137.383491, -33.290892 ], [ 137.385368, -33.298338 ], [ 137.374434, -33.292726 ], [ 137.384526, -33.298507 ], [ 137.377221, -33.344211 ], [ 137.385585, -33.372166 ], [ 137.360741, -33.414838 ], [ 137.360521, -33.439166 ], [ 137.314614, -33.471529 ], [ 137.305001, -33.500116 ], [ 137.295283, -33.507413 ], [ 137.278833, -33.565015 ], [ 137.263916, -33.577687 ], [ 137.252397, -33.608277 ], [ 137.213306, -33.661082 ], [ 137.182092, -33.673153 ], [ 137.168508, -33.690294 ], [ 137.124328, -33.700746 ], [ 137.069734, -33.698743 ], [ 137.037280, -33.708010 ], [ 137.025511, -33.719722 ], [ 136.991674, -33.724793 ], [ 136.951489, -33.755299 ], [ 136.857218, -33.798387 ], [ 136.799629, -33.803330 ], [ 136.778484, -33.831012 ], [ 136.730460, -33.834978 ], [ 136.668362, -33.878689 ], [ 136.592684, -33.899562 ], [ 136.572195, -33.923038 ], [ 136.574750, -33.943438 ], [ 136.497478, -33.992615 ], [ 136.434749, -34.011595 ], [ 136.363136, -34.069349 ], [ 136.346688, -34.099496 ], [ 136.356851, -34.122758 ], [ 136.331378, -34.148126 ], [ 136.324390, -34.181602 ], [ 136.278006, -34.220835 ], [ 136.260573, -34.267704 ], [ 136.233584, -34.296136 ], [ 136.187841, -34.334840 ], [ 136.138538, -34.341141 ], [ 136.112245, -34.359384 ], [ 136.103780, -34.382528 ], [ 136.130148, -34.407111 ], [ 136.116359, -34.408422 ], [ 136.091801, -34.429572 ], [ 136.116687, -34.425739 ], [ 136.114089, -34.459054 ], [ 136.121769, -34.467421 ], [ 136.109917, -34.478434 ], [ 136.117536, -34.489264 ], [ 136.112519, -34.515817 ], [ 136.096279, -34.524595 ], [ 136.092173, -34.542734 ], [ 136.083513, -34.532224 ], [ 136.091281, -34.520841 ], [ 136.073225, -34.506203 ], [ 136.082900, -34.495306 ], [ 136.056326, -34.479020 ], [ 136.025020, -34.484048 ], [ 136.015488, -34.499011 ], [ 136.021803, -34.516206 ], [ 136.008306, -34.507749 ], [ 135.993143, -34.518560 ], [ 135.974127, -34.504699 ], [ 135.932310, -34.528521 ], [ 135.928238, -34.538091 ], [ 135.934827, -34.543962 ], [ 135.922751, -34.549984 ], [ 135.902127, -34.592584 ], [ 135.913887, -34.611309 ], [ 135.933423, -34.609826 ], [ 135.937413, -34.649020 ], [ 135.912623, -34.631482 ], [ 135.913136, -34.620512 ], [ 135.891144, -34.615732 ], [ 135.861765, -34.633575 ], [ 135.853962, -34.665381 ], [ 135.853777, -34.715444 ], [ 135.884862, -34.724936 ], [ 135.870055, -34.744430 ], [ 135.892100, -34.744097 ], [ 135.891409, -34.751447 ], [ 135.864720, -34.769666 ], [ 135.863448, -34.754873 ], [ 135.846373, -34.752882 ], [ 135.785731, -34.809330 ], [ 135.834373, -34.819008 ], [ 135.860612, -34.807459 ], [ 135.893494, -34.805599 ], [ 135.928895, -34.768824 ], [ 135.949624, -34.765659 ], [ 135.956396, -34.757148 ], [ 135.960864, -34.783816 ], [ 135.980602, -34.784618 ], [ 135.990068, -34.769453 ], [ 135.983633, -34.757852 ], [ 135.991260, -34.750348 ], [ 135.979243, -34.730501 ], [ 135.995092, -34.725326 ], [ 136.006531, -34.735939 ], [ 136.014332, -34.756514 ], [ 136.001927, -34.787262 ], [ 136.015783, -34.794216 ], [ 136.004306, -34.798810 ], [ 136.008467, -34.805694 ], [ 135.993522, -34.827790 ], [ 135.959953, -34.848601 ], [ 135.962670, -34.875450 ], [ 135.993163, -34.929897 ], [ 135.986455, -34.933799 ], [ 135.992985, -34.944914 ], [ 135.987292, -34.958681 ], [ 135.997972, -34.959234 ], [ 136.004524, -34.980343 ], [ 136.002630, -34.985854 ], [ 135.987209, -34.981705 ], [ 135.976579, -34.994656 ], [ 135.960257, -34.991911 ], [ 135.960935, -35.004769 ], [ 135.954463, -35.006352 ], [ 135.943382, -35.002954 ], [ 135.941340, -34.985684 ], [ 135.948555, -34.980702 ], [ 135.931669, -34.970804 ], [ 135.928877, -34.948295 ], [ 135.867748, -34.919894 ], [ 135.856062, -34.927288 ], [ 135.853755, -34.886649 ], [ 135.792090, -34.860956 ], [ 135.751833, -34.856150 ], [ 135.712711, -34.865101 ], [ 135.705738, -34.905736 ], [ 135.679212, -34.913706 ], [ 135.688404, -34.923310 ], [ 135.685876, -34.944856 ], [ 135.668666, -34.946723 ], [ 135.653561, -34.936363 ], [ 135.618827, -34.944466 ], [ 135.622174, -34.924155 ], [ 135.614720, -34.924474 ], [ 135.624044, -34.906359 ], [ 135.604931, -34.891673 ], [ 135.604502, -34.878667 ], [ 135.540650, -34.814131 ], [ 135.495893, -34.782583 ], [ 135.494109, -34.765676 ], [ 135.474340, -34.744108 ], [ 135.379698, -34.687117 ], [ 135.350491, -34.680472 ], [ 135.325022, -34.686375 ], [ 135.320817, -34.680297 ], [ 135.329374, -34.669383 ], [ 135.347275, -34.666046 ], [ 135.341687, -34.629108 ], [ 135.321377, -34.607997 ], [ 135.297102, -34.603172 ], [ 135.283699, -34.576035 ], [ 135.252430, -34.551870 ], [ 135.225242, -34.543618 ], [ 135.206611, -34.549956 ], [ 135.208808, -34.558634 ], [ 135.173727, -34.555002 ], [ 135.149892, -34.568884 ], [ 135.143498, -34.591838 ], [ 135.109197, -34.588234 ], [ 135.125345, -34.576533 ], [ 135.123290, -34.557401 ], [ 135.134241, -34.544351 ], [ 135.129869, -34.527798 ], [ 135.143601, -34.519773 ], [ 135.138982, -34.503296 ], [ 135.159564, -34.488896 ], [ 135.173227, -34.464768 ], [ 135.186580, -34.459933 ], [ 135.194978, -34.434060 ], [ 135.206319, -34.429307 ], [ 135.217378, -34.433353 ], [ 135.211506, -34.440781 ], [ 135.212554, -34.481453 ], [ 135.221384, -34.498630 ], [ 135.353900, -34.522063 ], [ 135.316249, -34.520659 ], [ 135.297586, -34.552295 ], [ 135.309491, -34.563690 ], [ 135.354688, -34.580068 ], [ 135.350464, -34.603510 ], [ 135.361623, -34.620736 ], [ 135.391139, -34.623034 ], [ 135.402196, -34.633402 ], [ 135.392045, -34.637662 ], [ 135.390367, -34.630065 ], [ 135.374297, -34.628815 ], [ 135.376859, -34.640746 ], [ 135.363762, -34.637309 ], [ 135.365757, -34.642091 ], [ 135.438272, -34.633633 ], [ 135.451066, -34.626783 ], [ 135.451529, -34.614405 ], [ 135.474023, -34.622819 ], [ 135.494016, -34.613292 ], [ 135.510428, -34.620955 ], [ 135.516760, -34.612968 ], [ 135.508040, -34.594986 ], [ 135.478234, -34.597360 ], [ 135.458070, -34.586440 ], [ 135.443137, -34.600557 ], [ 135.472966, -34.616650 ], [ 135.431694, -34.603432 ], [ 135.444031, -34.570027 ], [ 135.435742, -34.541643 ], [ 135.445784, -34.537188 ], [ 135.428658, -34.527388 ], [ 135.420340, -34.539237 ], [ 135.410348, -34.538834 ], [ 135.414586, -34.520801 ], [ 135.405086, -34.507235 ], [ 135.395231, -34.524262 ], [ 135.401244, -34.533371 ], [ 135.391444, -34.534024 ], [ 135.422190, -34.548857 ], [ 135.406384, -34.555048 ], [ 135.413637, -34.587853 ], [ 135.396341, -34.593077 ], [ 135.422243, -34.601453 ], [ 135.389235, -34.595065 ], [ 135.398323, -34.555670 ], [ 135.376918, -34.515206 ], [ 135.395769, -34.496803 ], [ 135.388359, -34.441275 ], [ 135.358934, -34.418703 ], [ 135.365597, -34.384994 ], [ 135.349857, -34.368618 ], [ 135.357365, -34.366161 ], [ 135.359840, -34.344051 ], [ 135.346224, -34.267559 ], [ 135.303512, -34.184088 ], [ 135.280030, -34.170303 ], [ 135.267879, -34.177283 ], [ 135.255685, -34.155217 ], [ 135.241237, -34.150131 ], [ 135.244041, -34.140787 ], [ 135.279477, -34.119738 ], [ 135.272741, -34.094594 ], [ 135.281119, -34.070257 ], [ 135.264772, -34.032148 ], [ 135.271551, -34.019591 ], [ 135.252174, -33.981334 ], [ 135.194027, -33.919801 ], [ 135.182152, -33.877771 ], [ 135.170374, -33.872562 ], [ 135.161747, -33.877516 ], [ 135.145846, -33.852366 ], [ 135.082236, -33.804127 ], [ 135.040271, -33.755003 ], [ 134.878917, -33.653908 ], [ 134.886099, -33.643037 ], [ 134.879138, -33.636109 ], [ 134.860762, -33.643979 ], [ 134.830247, -33.626318 ], [ 134.842694, -33.621398 ], [ 134.840484, -33.592900 ], [ 134.863402, -33.546591 ], [ 134.845066, -33.436490 ], [ 134.802047, -33.328782 ], [ 134.760683, -33.309046 ], [ 134.736774, -33.273849 ], [ 134.719308, -33.263939 ], [ 134.696622, -33.263480 ], [ 134.688007, -33.250199 ], [ 134.658294, -33.233584 ], [ 134.691346, -33.229487 ], [ 134.698500, -33.221831 ], [ 134.711261, -33.227607 ], [ 134.708922, -33.233074 ], [ 134.719097, -33.229984 ], [ 134.722438, -33.218774 ], [ 134.709636, -33.214788 ], [ 134.718293, -33.207371 ], [ 134.717401, -33.195677 ], [ 134.702148, -33.174670 ], [ 134.666654, -33.161002 ], [ 134.632418, -33.162198 ], [ 134.595151, -33.138790 ], [ 134.558351, -33.161347 ], [ 134.576362, -33.189315 ], [ 134.598184, -33.196556 ], [ 134.613473, -33.189094 ], [ 134.625540, -33.195113 ], [ 134.640753, -33.182719 ], [ 134.647444, -33.195390 ], [ 134.623148, -33.197901 ], [ 134.631218, -33.213751 ], [ 134.663776, -33.223077 ], [ 134.642472, -33.224337 ], [ 134.630838, -33.245163 ], [ 134.595760, -33.203417 ], [ 134.547666, -33.189870 ], [ 134.506204, -33.161407 ], [ 134.450885, -33.144657 ], [ 134.415463, -33.148863 ], [ 134.391888, -33.166091 ], [ 134.388550, -33.177345 ], [ 134.368885, -33.175899 ], [ 134.358474, -33.125341 ], [ 134.324366, -33.090625 ], [ 134.307047, -33.088982 ], [ 134.292566, -33.075920 ], [ 134.289983, -33.060373 ], [ 134.299682, -33.049216 ], [ 134.293337, -33.039983 ], [ 134.281484, -33.039420 ], [ 134.284078, -33.028506 ], [ 134.275541, -33.024783 ], [ 134.264013, -33.032125 ], [ 134.278535, -33.036229 ], [ 134.271537, -33.042322 ], [ 134.281739, -33.050437 ], [ 134.262433, -33.060006 ], [ 134.261001, -33.073092 ], [ 134.266137, -33.088020 ], [ 134.284236, -33.100396 ], [ 134.278781, -33.107431 ], [ 134.292343, -33.118565 ], [ 134.312594, -33.112010 ], [ 134.321623, -33.118288 ], [ 134.316547, -33.125254 ], [ 134.358470, -33.148298 ], [ 134.344935, -33.161236 ], [ 134.352804, -33.157392 ], [ 134.344837, -33.162215 ], [ 134.351334, -33.190301 ], [ 134.328367, -33.199477 ], [ 134.260225, -33.152631 ], [ 134.266773, -33.138511 ], [ 134.261749, -33.098203 ], [ 134.247206, -33.087270 ], [ 134.230283, -33.043313 ], [ 134.192038, -33.035167 ], [ 134.167922, -33.055687 ], [ 134.165246, -33.041359 ], [ 134.138526, -33.018087 ], [ 134.167286, -33.009282 ], [ 134.193542, -33.013532 ], [ 134.204837, -32.995309 ], [ 134.201879, -32.963783 ], [ 134.189083, -32.942369 ], [ 134.167393, -32.926769 ], [ 134.144060, -32.928168 ], [ 134.141184, -32.944267 ], [ 134.123646, -32.932117 ], [ 134.129270, -32.926433 ], [ 134.119181, -32.914597 ], [ 134.106442, -32.912380 ], [ 134.080901, -32.926517 ], [ 134.081098, -32.918626 ], [ 134.060530, -32.907934 ], [ 134.070384, -32.909397 ], [ 134.078646, -32.899120 ], [ 134.071527, -32.883815 ], [ 134.096119, -32.878643 ], [ 134.099301, -32.867198 ], [ 134.116860, -32.868108 ], [ 134.138498, -32.839715 ], [ 134.118901, -32.783386 ], [ 134.060323, -32.722498 ], [ 134.080595, -32.709573 ], [ 134.107069, -32.721285 ], [ 134.174283, -32.717947 ], [ 134.204935, -32.725202 ], [ 134.215088, -32.730782 ], [ 134.152814, -32.723976 ], [ 134.164646, -32.736988 ], [ 134.200135, -32.746691 ], [ 134.189241, -32.769701 ], [ 134.196647, -32.795305 ], [ 134.221859, -32.789845 ], [ 134.240950, -32.748056 ], [ 134.260472, -32.734768 ], [ 134.290382, -32.692865 ], [ 134.283746, -32.684940 ], [ 134.294307, -32.661955 ], [ 134.279388, -32.648207 ], [ 134.277802, -32.608656 ], [ 134.266342, -32.573809 ], [ 134.214223, -32.511148 ], [ 134.163101, -32.469053 ], [ 134.121275, -32.454073 ], [ 134.092181, -32.457869 ], [ 134.102837, -32.450116 ], [ 134.081033, -32.455382 ], [ 134.082349, -32.465578 ], [ 134.073909, -32.460686 ], [ 134.081218, -32.457310 ], [ 134.062832, -32.455795 ], [ 134.057125, -32.440708 ], [ 134.061924, -32.456321 ], [ 134.086216, -32.470786 ], [ 134.036977, -32.459813 ], [ 133.995073, -32.484451 ], [ 133.991564, -32.505353 ], [ 133.954956, -32.494361 ], [ 133.922739, -32.494850 ], [ 133.907426, -32.508794 ], [ 133.908794, -32.517545 ], [ 133.896190, -32.523342 ], [ 133.893695, -32.541219 ], [ 133.861052, -32.531912 ], [ 133.849000, -32.541726 ], [ 133.857120, -32.519484 ], [ 133.846992, -32.503696 ], [ 133.862406, -32.483536 ], [ 133.850620, -32.461417 ], [ 133.867482, -32.420449 ], [ 133.866818, -32.399186 ], [ 133.897186, -32.399574 ], [ 133.886749, -32.402351 ], [ 133.893665, -32.408599 ], [ 133.889012, -32.411510 ], [ 133.905579, -32.413412 ], [ 133.887446, -32.423126 ], [ 133.919317, -32.428318 ], [ 133.946930, -32.411577 ], [ 133.951086, -32.388513 ], [ 133.932709, -32.379879 ], [ 133.931014, -32.361804 ], [ 133.901989, -32.318217 ], [ 133.880096, -32.306173 ], [ 133.869360, -32.280505 ], [ 133.842866, -32.256313 ], [ 133.818172, -32.247234 ], [ 133.827154, -32.242835 ], [ 133.821407, -32.233970 ], [ 133.806014, -32.231165 ], [ 133.808341, -32.243115 ], [ 133.769731, -32.263826 ], [ 133.755353, -32.235325 ], [ 133.762215, -32.224313 ], [ 133.756726, -32.205846 ], [ 133.745056, -32.201553 ], [ 133.736068, -32.207596 ], [ 133.733206, -32.198675 ], [ 133.714932, -32.194992 ], [ 133.679113, -32.202643 ], [ 133.692908, -32.155240 ], [ 133.674713, -32.142638 ], [ 133.648205, -32.152014 ], [ 133.642718, -32.144576 ], [ 133.670702, -32.134991 ], [ 133.666883, -32.103832 ], [ 133.643775, -32.095913 ], [ 133.630550, -32.100079 ], [ 133.628220, -32.090614 ], [ 133.613619, -32.086022 ], [ 133.592256, -32.087258 ], [ 133.572514, -32.117454 ], [ 133.584683, -32.140992 ], [ 133.555852, -32.158998 ], [ 133.553457, -32.169582 ], [ 133.522105, -32.155301 ], [ 133.525112, -32.137132 ], [ 133.519074, -32.135729 ], [ 133.525297, -32.127439 ], [ 133.504770, -32.141927 ], [ 133.519030, -32.143533 ], [ 133.511304, -32.153307 ], [ 133.496786, -32.150609 ], [ 133.502926, -32.131086 ], [ 133.483142, -32.126292 ], [ 133.480031, -32.115968 ], [ 133.489479, -32.109820 ], [ 133.472790, -32.100107 ], [ 133.451048, -32.112658 ], [ 133.451453, -32.136008 ], [ 133.438088, -32.123040 ], [ 133.395110, -32.141578 ], [ 133.398041, -32.156673 ], [ 133.392332, -32.159361 ], [ 133.400865, -32.169053 ], [ 133.414843, -32.169899 ], [ 133.411752, -32.177752 ], [ 133.464309, -32.172158 ], [ 133.491804, -32.195616 ], [ 133.487729, -32.206108 ], [ 133.485628, -32.196247 ], [ 133.446240, -32.178520 ], [ 133.425612, -32.184688 ], [ 133.423492, -32.197973 ], [ 133.389785, -32.200207 ], [ 133.371437, -32.188838 ], [ 133.322792, -32.179875 ], [ 133.278238, -32.183530 ], [ 133.275245, -32.194901 ], [ 133.253192, -32.210870 ], [ 133.230029, -32.190844 ], [ 133.164662, -32.170052 ], [ 133.146617, -32.174835 ], [ 133.147535, -32.194517 ], [ 133.125756, -32.208783 ], [ 133.138132, -32.174878 ], [ 133.088342, -32.127021 ], [ 133.006622, -32.083401 ], [ 132.979569, -32.106513 ], [ 132.981570, -32.081999 ], [ 132.963634, -32.065239 ], [ 132.903772, -32.036233 ], [ 132.826487, -31.981566 ], [ 132.746588, -31.949342 ], [ 132.734266, -31.956579 ], [ 132.686927, -31.950662 ], [ 132.660581, -31.957185 ], [ 132.655504, -31.948156 ], [ 132.595204, -31.934328 ], [ 132.531329, -31.934945 ], [ 132.478447, -31.946285 ], [ 132.446417, -31.970725 ], [ 132.437926, -32.000986 ], [ 132.461607, -32.010634 ], [ 132.473232, -32.030092 ], [ 132.415452, -31.998806 ], [ 132.393408, -32.001747 ], [ 132.383915, -32.015743 ], [ 132.380460, -32.009867 ], [ 132.343188, -32.014498 ], [ 132.335197, -32.029089 ], [ 132.285618, -32.022479 ], [ 132.271202, -32.033754 ], [ 132.200614, -32.027280 ], [ 132.176409, -32.018313 ], [ 132.166219, -32.004709 ], [ 132.151178, -32.003035 ], [ 132.112775, -31.946543 ], [ 132.072997, -31.917740 ], [ 131.758577, -31.720260 ], [ 131.442176, -31.571825 ], [ 131.244776, -31.492277 ], [ 131.148637, -31.463654 ], [ 131.128507, -31.464717 ], [ 131.081798, -31.490898 ], [ 131.057558, -31.521546 ], [ 131.026398, -31.537626 ], [ 130.806132, -31.605630 ], [ 130.734472, -31.606052 ], [ 130.567923, -31.585733 ], [ 130.488804, -31.593044 ], [ 130.275063, -31.573662 ], [ 130.152187, -31.576538 ], [ 130.120404, -31.586414 ], [ 129.918215, -31.590296 ], [ 129.843095, -31.607747 ], [ 129.527784, -31.622684 ], [ 129.052810, -31.674180 ], [ 129.001340, -31.687068 ], [ 129.001854, -25.998613 ], [ 140.999394, -25.996376 ], [ 141.002937, -33.998510 ], [ 141.002956, -34.021892 ], [ 140.989765, -34.031708 ], [ 140.980453, -34.016013 ], [ 140.986747, -34.010237 ], [ 140.975320, -34.009321 ], [ 140.980575, -33.999996 ], [ 140.969273, -33.997216 ], [ 140.963616, -33.980648 ], [ 140.963103, -35.748535 ], [ 140.973872, -37.462093 ], [ 140.965735, -38.055989 ], [ 140.873073, -38.051014 ], [ 140.837839, -38.041051 ], [ 140.807612, -38.049008 ], [ 140.782998, -38.045520 ], [ 140.770478, -38.059708 ], [ 140.716881, -38.051013 ], [ 140.662442, -38.061474 ], [ 140.642658, -38.041452 ], [ 140.620936, -38.040256 ], [ 140.608192, -38.027659 ], [ 140.590339, -38.023614 ], [ 140.579385, -38.029701 ], [ 140.567291, -38.008596 ], [ 140.517006, -37.989960 ], [ 140.491164, -37.960870 ], [ 140.454015, -37.935846 ], [ 140.396450, -37.919006 ], [ 140.388676, -37.901501 ], [ 140.375888, -37.897846 ], [ 140.353977, -37.849536 ], [ 140.328417, -37.818170 ], [ 140.318866, -37.789123 ], [ 140.247890, -37.686113 ], [ 140.178709, -37.617223 ], [ 140.112713, -37.578417 ], [ 140.107588, -37.565571 ], [ 140.120189, -37.569746 ], [ 140.131312, -37.556224 ], [ 140.120840, -37.530865 ], [ 140.049823, -37.478617 ], [ 140.020089, -37.476952 ], [ 140.011347, -37.493125 ], [ 139.993117, -37.485890 ], [ 139.996576, -37.476743 ], [ 139.960106, -37.443363 ], [ 139.949224, -37.441820 ], [ 139.946727, -37.429330 ], [ 139.890441, -37.375874 ], [ 139.865514, -37.335612 ], [ 139.840749, -37.322190 ], [ 139.761627, -37.199707 ], [ 139.740010, -37.182126 ], [ 139.743061, -37.155849 ], [ 139.776534, -37.165216 ], [ 139.788459, -37.157799 ], [ 139.795818, -37.137468 ], [ 139.791482, -37.112869 ], [ 139.768416, -37.081579 ], [ 139.743931, -37.074190 ], [ 139.740535, -37.021304 ], [ 139.669972, -36.957431 ], [ 139.675909, -36.942056 ], [ 139.698355, -36.940110 ], [ 139.732390, -36.916809 ], [ 139.787616, -36.894859 ], [ 139.842891, -36.839575 ], [ 139.863159, -36.753479 ], [ 139.861979, -36.692328 ], [ 139.851109, -36.647474 ], [ 139.782926, -36.458816 ], [ 139.655207, -36.221918 ], [ 139.523020, -36.043505 ], [ 139.377020, -35.892234 ], [ 139.211957, -35.754559 ], [ 139.055313, -35.649577 ], [ 138.883656, -35.557290 ], [ 138.762908, -35.520673 ], [ 138.710269, -35.513587 ], [ 138.692927, -35.522923 ], [ 138.684432, -35.538108 ], [ 138.631522, -35.543844 ], [ 138.626004, -35.557911 ], [ 138.598220, -35.579469 ], [ 138.603774, -35.594283 ], [ 138.565936, -35.608529 ], [ 138.522360, -35.642968 ], [ 138.494522, -35.633530 ], [ 138.431096, -35.629274 ], [ 138.410026, -35.640576 ], [ 138.275956, -35.639375 ], [ 138.232054, -35.659589 ], [ 138.191358, -35.665090 ], [ 138.156886, -35.658167 ], [ 138.096166, -35.625221 ], [ 138.093913, -35.603403 ], [ 138.108686, -35.592452 ], [ 138.127430, -35.555371 ], [ 138.165488, -35.519377 ], [ 138.193862, -35.523650 ], [ 138.244540, -35.500848 ], [ 138.294318, -35.468183 ], [ 138.341253, -35.392864 ], [ 138.441044, -35.349994 ], [ 138.447529, -35.320045 ], [ 138.443202, -35.272135 ], [ 138.459911, -35.261545 ], [ 138.469930, -35.239157 ], [ 138.469061, -35.109436 ], [ 138.493568, -35.084609 ], [ 138.517614, -35.032130 ], [ 138.510356, -34.969695 ], [ 138.476060, -34.856766 ], [ 138.490256, -34.810966 ], [ 138.477997, -34.782940 ], [ 138.496325, -34.764612 ], [ 138.515343, -34.770168 ], [ 138.511546, -34.818085 ], [ 138.500217, -34.843571 ] ] ], [ [ [ 138.546309, -34.799042 ], [ 138.518591, -34.805594 ], [ 138.522502, -34.769668 ], [ 138.514615, -34.756904 ], [ 138.546309, -34.799042 ] ] ], [ [ [ 138.544072, -34.805970 ], [ 138.524303, -34.810078 ], [ 138.537721, -34.801407 ], [ 138.544072, -34.805970 ] ] ], [ [ [ 138.134901, -35.841399 ], [ 138.110893, -35.848409 ], [ 138.040822, -35.904274 ], [ 137.911134, -35.859789 ], [ 137.874263, -35.870569 ], [ 137.856083, -35.859755 ], [ 137.803232, -35.850616 ], [ 137.741097, -35.853115 ], [ 137.726115, -35.876742 ], [ 137.660289, -35.884899 ], [ 137.611978, -35.913111 ], [ 137.598172, -35.942693 ], [ 137.605102, -35.964858 ], [ 137.620444, -35.978592 ], [ 137.602643, -36.009290 ], [ 137.586640, -36.019559 ], [ 137.535973, -36.025864 ], [ 137.504002, -36.055873 ], [ 137.485394, -36.057029 ], [ 137.482780, -36.065675 ], [ 137.460723, -36.074971 ], [ 137.420237, -36.041416 ], [ 137.405605, -36.038791 ], [ 137.406806, -36.032412 ], [ 137.379444, -36.013892 ], [ 137.371018, -35.998416 ], [ 137.278364, -35.994258 ], [ 137.257945, -35.982221 ], [ 137.209490, -35.973988 ], [ 137.180849, -35.983985 ], [ 137.179962, -35.993958 ], [ 137.189772, -35.997078 ], [ 137.161316, -36.016479 ], [ 137.162682, -36.024739 ], [ 137.145803, -36.020706 ], [ 137.130947, -36.033985 ], [ 137.102588, -36.018171 ], [ 137.092381, -36.025105 ], [ 137.057620, -36.020100 ], [ 137.036082, -36.027651 ], [ 136.997279, -36.017338 ], [ 136.942162, -36.026688 ], [ 136.915453, -36.043576 ], [ 136.854045, -36.016575 ], [ 136.831686, -36.019765 ], [ 136.816740, -36.038845 ], [ 136.781837, -36.031408 ], [ 136.774976, -36.043631 ], [ 136.757990, -36.049731 ], [ 136.727088, -36.045071 ], [ 136.705236, -36.064064 ], [ 136.696256, -36.054659 ], [ 136.705634, -36.051282 ], [ 136.708435, -36.036926 ], [ 136.665620, -35.975745 ], [ 136.625028, -35.954423 ], [ 136.598350, -35.961762 ], [ 136.581743, -35.950849 ], [ 136.579779, -35.930728 ], [ 136.550767, -35.901930 ], [ 136.538853, -35.899329 ], [ 136.550604, -35.885701 ], [ 136.534410, -35.886475 ], [ 136.532942, -35.876557 ], [ 136.541723, -35.858230 ], [ 136.563908, -35.849535 ], [ 136.560478, -35.828319 ], [ 136.579361, -35.792374 ], [ 136.573788, -35.765890 ], [ 136.587436, -35.748857 ], [ 136.697258, -35.739468 ], [ 136.720292, -35.720286 ], [ 136.758786, -35.722716 ], [ 136.778416, -35.712210 ], [ 136.783664, -35.700213 ], [ 136.861710, -35.693844 ], [ 136.952722, -35.674107 ], [ 137.069652, -35.669155 ], [ 137.121780, -35.651733 ], [ 137.141189, -35.629762 ], [ 137.163470, -35.633111 ], [ 137.184955, -35.621209 ], [ 137.203466, -35.624715 ], [ 137.239456, -35.604191 ], [ 137.285143, -35.598036 ], [ 137.313489, -35.579240 ], [ 137.446932, -35.596223 ], [ 137.490998, -35.579767 ], [ 137.518809, -35.595531 ], [ 137.545784, -35.587221 ], [ 137.564368, -35.571125 ], [ 137.591737, -35.564088 ], [ 137.605438, -35.571510 ], [ 137.621661, -35.561188 ], [ 137.634199, -35.565733 ], [ 137.626677, -35.597161 ], [ 137.615658, -35.589155 ], [ 137.598203, -35.595276 ], [ 137.569625, -35.618675 ], [ 137.569756, -35.632430 ], [ 137.589341, -35.643213 ], [ 137.641217, -35.638891 ], [ 137.643690, -35.654125 ], [ 137.605689, -35.678765 ], [ 137.603349, -35.692678 ], [ 137.579197, -35.709027 ], [ 137.577915, -35.725671 ], [ 137.596038, -35.735349 ], [ 137.626884, -35.731666 ], [ 137.696260, -35.739791 ], [ 137.780334, -35.723932 ], [ 137.803452, -35.757605 ], [ 137.771947, -35.780922 ], [ 137.772751, -35.788005 ], [ 137.746078, -35.800946 ], [ 137.754379, -35.842984 ], [ 137.762208, -35.838863 ], [ 137.754157, -35.833933 ], [ 137.772401, -35.822796 ], [ 137.796662, -35.834287 ], [ 137.814758, -35.822033 ], [ 137.798297, -35.810204 ], [ 137.770736, -35.814085 ], [ 137.758373, -35.806042 ], [ 137.762804, -35.798023 ], [ 137.778092, -35.796203 ], [ 137.777351, -35.784445 ], [ 137.822554, -35.800182 ], [ 137.852159, -35.794950 ], [ 137.892535, -35.757945 ], [ 137.893642, -35.728166 ], [ 137.900608, -35.719757 ], [ 137.940728, -35.716206 ], [ 138.005581, -35.726301 ], [ 138.045983, -35.742821 ], [ 138.067790, -35.759784 ], [ 138.066857, -35.780365 ], [ 138.076950, -35.795898 ], [ 138.106517, -35.809476 ], [ 138.125725, -35.802350 ], [ 138.119071, -35.819876 ], [ 138.123264, -35.834240 ], [ 138.134901, -35.841399 ] ] ], [ [ [ 137.381767, -34.497301 ], [ 137.371478, -34.505908 ], [ 137.365230, -34.529483 ], [ 137.351512, -34.534103 ], [ 137.340983, -34.526330 ], [ 137.338346, -34.488509 ], [ 137.361392, -34.462878 ], [ 137.374861, -34.468847 ], [ 137.381767, -34.497301 ] ] ], [ [ [ 136.867216, -35.371310 ], [ 136.858413, -35.378187 ], [ 136.854350, -35.371055 ], [ 136.860653, -35.365574 ], [ 136.867216, -35.371310 ] ] ], [ [ [ 136.494692, -35.166527 ], [ 136.489641, -35.176526 ], [ 136.468701, -35.163436 ], [ 136.453071, -35.166073 ], [ 136.441521, -35.148699 ], [ 136.453826, -35.144714 ], [ 136.453584, -35.134301 ], [ 136.494692, -35.166527 ] ] ], [ [ [ 136.359072, -34.663679 ], [ 136.345884, -34.671253 ], [ 136.344484, -34.682606 ], [ 136.329893, -34.658364 ], [ 136.344605, -34.650539 ], [ 136.359072, -34.663679 ] ] ], [ [ [ 136.305585, -34.505339 ], [ 136.284472, -34.515536 ], [ 136.287571, -34.530193 ], [ 136.278582, -34.537655 ], [ 136.286523, -34.545408 ], [ 136.274889, -34.549303 ], [ 136.270571, -34.542143 ], [ 136.279936, -34.503890 ], [ 136.305585, -34.505339 ] ] ], [ [ [ 136.279752, -34.681504 ], [ 136.269174, -34.683330 ], [ 136.266890, -34.673204 ], [ 136.279752, -34.681504 ] ] ], [ [ [ 136.204543, -35.052982 ], [ 136.200019, -35.065410 ], [ 136.189400, -35.052299 ], [ 136.176914, -35.061493 ], [ 136.163326, -35.055160 ], [ 136.146785, -35.026593 ], [ 136.159193, -35.020844 ], [ 136.156605, -35.006405 ], [ 136.111885, -34.977026 ], [ 136.109902, -34.968740 ], [ 136.084155, -34.966901 ], [ 136.089183, -34.956008 ], [ 136.078739, -34.952161 ], [ 136.082766, -34.945430 ], [ 136.107292, -34.932450 ], [ 136.129531, -34.952374 ], [ 136.149943, -34.987895 ], [ 136.176086, -35.005754 ], [ 136.189708, -35.004449 ], [ 136.192501, -35.044324 ], [ 136.204543, -35.052982 ] ] ], [ [ [ 136.185876, -34.646672 ], [ 136.180123, -34.647575 ], [ 136.181304, -34.640457 ], [ 136.185876, -34.646672 ] ] ], [ [ [ 136.073126, -35.227388 ], [ 136.071020, -35.238131 ], [ 136.055516, -35.235491 ], [ 136.063705, -35.222945 ], [ 136.073126, -35.227388 ] ] ], [ [ [ 136.069945, -34.962707 ], [ 136.050632, -34.968220 ], [ 136.059975, -34.957347 ], [ 136.069945, -34.962707 ] ] ], [ [ [ 136.038216, -34.907363 ], [ 136.027948, -34.916969 ], [ 136.032156, -34.905921 ], [ 136.038216, -34.907363 ] ] ], [ [ [ 136.014585, -34.882591 ], [ 136.010196, -34.891351 ], [ 136.000885, -34.880386 ], [ 136.008219, -34.865101 ], [ 136.014585, -34.882591 ] ] ], [ [ [ 135.983063, -35.033605 ], [ 135.974090, -35.037425 ], [ 135.965616, -35.022049 ], [ 135.974324, -35.027879 ], [ 135.978900, -35.019936 ], [ 135.983063, -35.033605 ] ] ], [ [ [ 135.960402, -34.583104 ], [ 135.952445, -34.593633 ], [ 135.946140, -34.568367 ], [ 135.955741, -34.569560 ], [ 135.960402, -34.583104 ] ] ], [ [ [ 135.953064, -34.723721 ], [ 135.937263, -34.719738 ], [ 135.929026, -34.732851 ], [ 135.923401, -34.701869 ], [ 135.911382, -34.695469 ], [ 135.916855, -34.673059 ], [ 135.921373, -34.683079 ], [ 135.938574, -34.687447 ], [ 135.939865, -34.711598 ], [ 135.953064, -34.723721 ] ] ], [ [ [ 135.626345, -34.982111 ], [ 135.617531, -35.001798 ], [ 135.617360, -34.980197 ], [ 135.626345, -34.982111 ] ] ], [ [ [ 134.813029, -33.594219 ], [ 134.806786, -33.610433 ], [ 134.776026, -33.595175 ], [ 134.813029, -33.594219 ] ] ], [ [ [ 134.681803, -33.208100 ], [ 134.676802, -33.216999 ], [ 134.666412, -33.214363 ], [ 134.670760, -33.202427 ], [ 134.681803, -33.208100 ] ] ], [ [ [ 134.547689, -33.721441 ], [ 134.506727, -33.723013 ], [ 134.496082, -33.745812 ], [ 134.446961, -33.772204 ], [ 134.458137, -33.750746 ], [ 134.453848, -33.740567 ], [ 134.467848, -33.733433 ], [ 134.471997, -33.690427 ], [ 134.483397, -33.694013 ], [ 134.527562, -33.677685 ], [ 134.537786, -33.712614 ], [ 134.547689, -33.721441 ] ] ], [ [ [ 134.279578, -32.679966 ], [ 134.259737, -32.678381 ], [ 134.274970, -32.674265 ], [ 134.279578, -32.679966 ] ] ], [ [ [ 133.857514, -32.387369 ], [ 133.788077, -32.358797 ], [ 133.814528, -32.355451 ], [ 133.806843, -32.358759 ], [ 133.840764, -32.371959 ], [ 133.857514, -32.387369 ] ] ], [ [ [ 133.835456, -32.359889 ], [ 133.816229, -32.354720 ], [ 133.829955, -32.352285 ], [ 133.835456, -32.359889 ] ] ], [ [ [ 133.683520, -32.440256 ], [ 133.657781, -32.454898 ], [ 133.669125, -32.436420 ], [ 133.683520, -32.440256 ] ] ], [ [ [ 133.673997, -32.232494 ], [ 133.644302, -32.237600 ], [ 133.614344, -32.256815 ], [ 133.615093, -32.270341 ], [ 133.628394, -32.271360 ], [ 133.611962, -32.282841 ], [ 133.600296, -32.307921 ], [ 133.580315, -32.306581 ], [ 133.572989, -32.319107 ], [ 133.549729, -32.308098 ], [ 133.540236, -32.279000 ], [ 133.551372, -32.273134 ], [ 133.550914, -32.263677 ], [ 133.567216, -32.266873 ], [ 133.593579, -32.251043 ], [ 133.575415, -32.264464 ], [ 133.581729, -32.268444 ], [ 133.623823, -32.239292 ], [ 133.673997, -32.232494 ] ] ], [ [ [ 133.654949, -32.451097 ], [ 133.639648, -32.463219 ], [ 133.625508, -32.457157 ], [ 133.634055, -32.449993 ], [ 133.654949, -32.451097 ] ] ], [ [ [ 133.530727, -32.304603 ], [ 133.501381, -32.318356 ], [ 133.513051, -32.302166 ], [ 133.530727, -32.304603 ] ] ], [ [ [ 133.487081, -32.371099 ], [ 133.483864, -32.382613 ], [ 133.475630, -32.381062 ], [ 133.477016, -32.370624 ], [ 133.487081, -32.371099 ] ] ], [ [ [ 133.381916, -32.394907 ], [ 133.366691, -32.402932 ], [ 133.367743, -32.393433 ], [ 133.381916, -32.394907 ] ] ], [ [ [ 133.311036, -32.510125 ], [ 133.304489, -32.521998 ], [ 133.287616, -32.528476 ], [ 133.287642, -32.517276 ], [ 133.277379, -32.517608 ], [ 133.283384, -32.511092 ], [ 133.267768, -32.500490 ], [ 133.288553, -32.490551 ], [ 133.292226, -32.502113 ], [ 133.310109, -32.499284 ], [ 133.311036, -32.510125 ] ] ], [ [ [ 133.298957, -32.557689 ], [ 133.291466, -32.567595 ], [ 133.275341, -32.565373 ], [ 133.286040, -32.564128 ], [ 133.283701, -32.554077 ], [ 133.298957, -32.557689 ] ] ], [ [ [ 133.289921, -32.585392 ], [ 133.276318, -32.584805 ], [ 133.284988, -32.578711 ], [ 133.289921, -32.585392 ] ] ] + ] + } + }, + { + "type": "Feature", + "id": 4, + "properties": { + "STATE_CODE": "5", + "NAME_1": "Western Australia", + "ISO":"AU-WA" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ [ [ 113.394175, -26.393030 ], [ 113.382303, -26.385244 ], [ 113.382563, -26.360994 ], [ 113.370693, -26.357564 ], [ 113.354662, -26.300853 ], [ 113.336382, -26.300353 ], [ 113.354172, -26.276373 ], [ 113.357451, -26.245352 ], [ 113.366341, -26.237572 ], [ 113.364601, -26.210722 ], [ 113.375871, -26.205202 ], [ 113.386501, -26.212652 ], [ 113.378510, -26.165042 ], [ 113.380540, -26.119591 ], [ 113.387300, -26.111471 ], [ 113.373429, -26.097131 ], [ 113.377939, -26.078641 ], [ 113.358699, -26.065091 ], [ 113.367579, -26.054151 ], [ 113.356979, -26.033270 ], [ 113.363739, -26.017480 ], [ 113.386319, -26.060820 ], [ 113.385559, -26.092181 ], [ 113.400300, -26.105721 ], [ 113.396720, -26.113951 ], [ 113.429170, -26.138551 ], [ 113.424420, -26.161001 ], [ 113.436930, -26.167541 ], [ 113.444680, -26.163261 ], [ 113.448311, -26.212552 ], [ 113.459571, -26.221802 ], [ 113.462211, -26.253382 ], [ 113.479871, -26.271092 ], [ 113.482772, -26.320722 ], [ 113.498812, -26.336053 ], [ 113.487802, -26.357043 ], [ 113.506592, -26.363913 ], [ 113.502232, -26.400233 ], [ 113.496452, -26.378133 ], [ 113.484682, -26.383553 ], [ 113.502253, -26.420313 ], [ 113.485333, -26.430584 ], [ 113.476963, -26.477054 ], [ 113.486493, -26.484834 ], [ 113.503293, -26.468814 ], [ 113.506003, -26.409143 ], [ 113.528272, -26.362212 ], [ 113.512462, -26.336502 ], [ 113.515962, -26.322062 ], [ 113.507072, -26.323982 ], [ 113.493912, -26.310342 ], [ 113.513692, -26.302102 ], [ 113.518311, -26.284501 ], [ 113.511541, -26.276831 ], [ 113.530451, -26.284381 ], [ 113.537211, -26.279520 ], [ 113.545491, -26.302750 ], [ 113.540512, -26.324751 ], [ 113.559482, -26.353482 ], [ 113.548712, -26.380912 ], [ 113.567072, -26.433343 ], [ 113.561713, -26.461323 ], [ 113.552323, -26.469113 ], [ 113.563013, -26.493923 ], [ 113.575554, -26.495823 ], [ 113.577194, -26.504623 ], [ 113.559825, -26.547154 ], [ 113.558225, -26.574004 ], [ 113.571785, -26.578164 ], [ 113.583745, -26.600184 ], [ 113.596295, -26.601934 ], [ 113.598086, -26.614194 ], [ 113.607105, -26.606204 ], [ 113.588235, -26.585584 ], [ 113.589205, -26.560214 ], [ 113.599215, -26.544634 ], [ 113.593394, -26.511933 ], [ 113.609824, -26.514733 ], [ 113.614084, -26.489423 ], [ 113.618465, -26.518418 ], [ 113.618064, -26.489683 ], [ 113.630553, -26.463272 ], [ 113.638153, -26.502853 ], [ 113.628695, -26.540193 ], [ 113.633505, -26.563643 ], [ 113.625615, -26.571213 ], [ 113.642026, -26.619454 ], [ 113.653905, -26.594623 ], [ 113.663695, -26.596193 ], [ 113.657086, -26.616164 ], [ 113.666416, -26.630354 ], [ 113.657807, -26.654165 ], [ 113.664009, -26.674456 ], [ 113.680928, -26.658415 ], [ 113.704918, -26.662085 ], [ 113.688937, -26.649034 ], [ 113.699957, -26.639314 ], [ 113.697557, -26.632554 ], [ 113.690737, -26.643904 ], [ 113.686397, -26.637874 ], [ 113.696146, -26.619244 ], [ 113.686806, -26.601673 ], [ 113.697006, -26.611464 ], [ 113.714186, -26.606803 ], [ 113.738446, -26.617583 ], [ 113.769357, -26.587282 ], [ 113.787617, -26.605053 ], [ 113.807717, -26.610972 ], [ 113.814227, -26.603852 ], [ 113.812366, -26.576002 ], [ 113.833105, -26.551251 ], [ 113.863654, -26.536721 ], [ 113.882864, -26.508470 ], [ 113.887384, -26.449700 ], [ 113.870232, -26.391340 ], [ 113.885442, -26.371449 ], [ 113.880661, -26.335378 ], [ 113.836641, -26.280818 ], [ 113.797750, -26.252269 ], [ 113.688050, -26.217539 ], [ 113.687479, -26.186189 ], [ 113.663129, -26.165389 ], [ 113.639458, -26.121969 ], [ 113.614819, -26.108689 ], [ 113.620809, -26.100899 ], [ 113.580300, -26.097219 ], [ 113.573540, -26.086279 ], [ 113.585899, -26.071049 ], [ 113.580019, -26.071839 ], [ 113.567249, -26.044329 ], [ 113.575338, -26.014548 ], [ 113.560576, -25.998749 ], [ 113.559108, -25.946398 ], [ 113.517617, -25.919578 ], [ 113.525307, -25.884177 ], [ 113.512917, -25.852117 ], [ 113.461056, -25.809357 ], [ 113.478696, -25.783337 ], [ 113.466285, -25.768077 ], [ 113.479255, -25.764046 ], [ 113.460525, -25.733766 ], [ 113.462295, -25.725766 ], [ 113.473245, -25.730526 ], [ 113.471405, -25.720146 ], [ 113.459465, -25.715606 ], [ 113.472435, -25.709316 ], [ 113.458624, -25.702856 ], [ 113.444665, -25.709476 ], [ 113.456855, -25.713116 ], [ 113.446485, -25.723016 ], [ 113.460265, -25.739746 ], [ 113.459475, -25.752606 ], [ 113.449625, -25.756417 ], [ 113.464335, -25.751146 ], [ 113.454205, -25.764887 ], [ 113.467135, -25.773837 ], [ 113.469346, -25.785457 ], [ 113.414475, -25.724737 ], [ 113.415234, -25.683786 ], [ 113.431983, -25.625725 ], [ 113.449083, -25.610885 ], [ 113.472752, -25.558264 ], [ 113.488952, -25.547814 ], [ 113.499732, -25.513773 ], [ 113.511082, -25.503303 ], [ 113.525233, -25.607794 ], [ 113.537754, -25.625765 ], [ 113.558634, -25.635505 ], [ 113.574684, -25.636894 ], [ 113.581314, -25.620774 ], [ 113.592765, -25.683625 ], [ 113.606655, -25.714325 ], [ 113.626415, -25.733535 ], [ 113.659025, -25.748575 ], [ 113.691116, -25.789215 ], [ 113.721766, -25.793645 ], [ 113.721717, -25.868086 ], [ 113.761857, -25.878595 ], [ 113.758477, -25.905095 ], [ 113.731638, -25.949526 ], [ 113.729936, -26.001947 ], [ 113.738917, -25.999667 ], [ 113.734327, -26.013658 ], [ 113.699924, -26.044962 ], [ 113.706085, -26.061982 ], [ 113.703642, -26.096375 ], [ 113.706197, -26.112390 ], [ 113.704968, -26.123560 ], [ 113.703554, -26.097609 ], [ 113.701118, -26.131910 ], [ 113.728259, -26.187239 ], [ 113.724900, -26.194689 ], [ 113.703210, -26.199769 ], [ 113.721020, -26.196729 ], [ 113.728180, -26.206749 ], [ 113.742320, -26.206839 ], [ 113.752800, -26.197909 ], [ 113.753519, -26.185049 ], [ 113.762220, -26.212209 ], [ 113.773990, -26.214889 ], [ 113.789980, -26.207408 ], [ 113.813279, -26.178818 ], [ 113.836409, -26.140187 ], [ 113.835199, -26.115607 ], [ 113.845569, -26.113657 ], [ 113.836329, -26.116727 ], [ 113.837649, -26.138657 ], [ 113.883738, -26.060216 ], [ 113.879018, -26.068116 ], [ 113.885248, -26.029306 ], [ 113.865247, -25.955965 ], [ 113.877217, -25.945125 ], [ 113.887457, -25.959105 ], [ 113.906417, -25.960115 ], [ 113.914427, -25.982435 ], [ 113.902487, -25.998745 ], [ 113.893518, -26.035146 ], [ 113.908458, -26.054496 ], [ 113.904588, -26.088906 ], [ 113.910849, -26.122376 ], [ 113.924519, -26.133386 ], [ 113.938879, -26.129846 ], [ 113.947559, -26.143006 ], [ 113.934310, -26.203947 ], [ 113.959511, -26.244227 ], [ 113.950481, -26.267597 ], [ 113.967251, -26.293926 ], [ 113.972862, -26.342507 ], [ 114.053862, -26.419217 ], [ 114.082562, -26.454547 ], [ 114.074362, -26.451227 ], [ 114.075132, -26.459277 ], [ 114.072592, -26.452337 ], [ 114.076792, -26.466587 ], [ 114.089562, -26.467617 ], [ 114.094812, -26.459327 ], [ 114.089562, -26.458487 ], [ 114.156462, -26.410107 ], [ 114.166352, -26.390016 ], [ 114.210282, -26.372056 ], [ 114.219851, -26.357256 ], [ 114.215901, -26.341546 ], [ 114.237651, -26.312765 ], [ 114.231651, -26.300875 ], [ 114.237980, -26.283905 ], [ 114.204030, -26.244795 ], [ 114.205530, -26.224064 ], [ 114.191890, -26.203644 ], [ 114.188290, -26.180263 ], [ 114.191179, -26.168333 ], [ 114.210679, -26.157803 ], [ 114.223509, -26.119022 ], [ 114.230689, -26.124612 ], [ 114.219899, -26.139513 ], [ 114.225349, -26.165043 ], [ 114.241339, -26.165863 ], [ 114.254709, -26.144892 ], [ 114.236019, -26.117782 ], [ 114.239278, -26.072702 ], [ 114.209147, -26.031612 ], [ 114.194667, -25.983571 ], [ 114.218447, -25.968891 ], [ 114.225667, -25.973651 ], [ 114.223607, -25.987401 ], [ 114.245047, -25.992551 ], [ 114.265307, -25.982131 ], [ 114.257567, -25.983341 ], [ 114.252867, -25.972951 ], [ 114.247036, -25.936501 ], [ 114.266835, -25.887740 ], [ 114.232095, -25.875670 ], [ 114.227045, -25.862000 ], [ 114.205395, -25.853020 ], [ 114.198745, -25.835630 ], [ 114.167955, -25.811270 ], [ 114.175545, -25.812650 ], [ 114.172095, -25.806440 ], [ 114.134484, -25.778099 ], [ 114.132524, -25.772338 ], [ 114.146304, -25.780169 ], [ 114.119404, -25.755256 ], [ 114.114114, -25.743165 ], [ 114.122245, -25.735975 ], [ 114.113586, -25.725455 ], [ 114.119555, -25.728185 ], [ 114.091091, -25.696372 ], [ 114.035389, -25.662525 ], [ 114.048427, -25.667324 ], [ 114.019199, -25.624117 ], [ 114.019650, -25.632347 ], [ 114.004183, -25.618519 ], [ 114.015360, -25.620488 ], [ 113.990189, -25.589920 ], [ 113.982191, -25.560829 ], [ 113.991660, -25.575140 ], [ 113.991640, -25.564880 ], [ 113.954523, -25.493408 ], [ 113.934010, -25.475488 ], [ 113.939220, -25.470638 ], [ 113.939731, -25.480228 ], [ 113.941210, -25.473228 ], [ 113.948421, -25.477168 ], [ 113.944179, -25.458678 ], [ 113.902050, -25.410088 ], [ 113.913600, -25.413468 ], [ 113.908130, -25.406708 ], [ 113.913840, -25.400948 ], [ 113.891109, -25.372988 ], [ 113.896689, -25.357417 ], [ 113.891339, -25.337007 ], [ 113.856719, -25.292457 ], [ 113.868629, -25.299337 ], [ 113.864909, -25.287607 ], [ 113.871479, -25.290317 ], [ 113.842578, -25.264597 ], [ 113.842088, -25.255907 ], [ 113.848158, -25.256927 ], [ 113.839617, -25.216997 ], [ 113.817067, -25.173566 ], [ 113.802207, -25.157316 ], [ 113.739897, -25.127367 ], [ 113.712426, -25.103316 ], [ 113.665985, -25.022706 ], [ 113.664234, -24.958656 ], [ 113.679944, -24.932985 ], [ 113.691924, -24.928535 ], [ 113.677804, -24.924985 ], [ 113.665146, -24.895891 ], [ 113.652354, -24.905115 ], [ 113.651491, -24.897891 ], [ 113.655190, -24.882163 ], [ 113.644444, -24.878065 ], [ 113.666133, -24.861964 ], [ 113.706889, -24.850707 ], [ 113.676463, -24.848724 ], [ 113.646983, -24.864515 ], [ 113.617533, -24.858645 ], [ 113.615863, -24.844545 ], [ 113.620883, -24.831784 ], [ 113.620213, -24.849725 ], [ 113.632723, -24.797444 ], [ 113.623242, -24.746034 ], [ 113.489939, -24.575957 ], [ 113.427619, -24.515616 ], [ 113.419178, -24.491706 ], [ 113.406958, -24.484176 ], [ 113.399528, -24.411406 ], [ 113.406196, -24.303065 ], [ 113.390165, -24.223995 ], [ 113.409115, -24.223505 ], [ 113.443343, -24.181694 ], [ 113.442382, -24.136784 ], [ 113.419422, -24.090333 ], [ 113.428122, -24.080733 ], [ 113.422151, -24.042933 ], [ 113.429991, -24.032653 ], [ 113.446941, -24.032173 ], [ 113.458700, -24.013642 ], [ 113.470909, -23.966452 ], [ 113.464999, -23.925572 ], [ 113.470308, -23.898561 ], [ 113.513827, -23.847330 ], [ 113.520177, -23.797639 ], [ 113.531906, -23.774839 ], [ 113.567276, -23.752229 ], [ 113.591695, -23.698938 ], [ 113.596614, -23.663358 ], [ 113.614153, -23.646688 ], [ 113.613213, -23.630908 ], [ 113.636191, -23.618921 ], [ 113.650858, -23.599586 ], [ 113.700470, -23.575201 ], [ 113.725870, -23.545007 ], [ 113.753260, -23.528236 ], [ 113.778119, -23.478055 ], [ 113.783468, -23.416074 ], [ 113.776938, -23.378934 ], [ 113.788108, -23.365153 ], [ 113.794447, -23.296052 ], [ 113.770376, -23.217841 ], [ 113.774436, -23.194561 ], [ 113.763826, -23.177771 ], [ 113.770855, -23.130650 ], [ 113.760475, -23.121300 ], [ 113.789665, -23.106740 ], [ 113.812495, -23.082769 ], [ 113.829426, -23.030908 ], [ 113.829485, -22.994887 ], [ 113.819755, -22.977056 ], [ 113.826185, -22.956016 ], [ 113.816655, -22.906935 ], [ 113.801184, -22.886805 ], [ 113.793804, -22.842664 ], [ 113.755254, -22.756224 ], [ 113.709393, -22.715284 ], [ 113.677123, -22.723044 ], [ 113.670493, -22.717134 ], [ 113.686423, -22.664414 ], [ 113.668262, -22.628723 ], [ 113.673612, -22.596863 ], [ 113.654082, -22.578773 ], [ 113.665302, -22.550123 ], [ 113.693132, -22.540952 ], [ 113.713761, -22.517962 ], [ 113.707921, -22.496702 ], [ 113.722981, -22.496212 ], [ 113.737741, -22.471031 ], [ 113.749380, -22.408421 ], [ 113.765470, -22.384350 ], [ 113.780310, -22.376760 ], [ 113.820809, -22.305849 ], [ 113.866887, -22.151067 ], [ 113.933246, -21.998885 ], [ 113.933596, -21.973225 ], [ 113.963945, -21.938004 ], [ 113.995084, -21.875463 ], [ 114.023922, -21.851153 ], [ 114.072079, -21.827572 ], [ 114.078749, -21.815962 ], [ 114.108020, -21.803272 ], [ 114.131572, -21.805571 ], [ 114.165205, -21.785761 ], [ 114.191014, -21.814581 ], [ 114.148873, -21.866652 ], [ 114.138063, -21.957822 ], [ 114.080266, -22.154135 ], [ 114.084757, -22.191275 ], [ 114.133007, -22.261584 ], [ 114.123738, -22.279275 ], [ 114.126418, -22.313925 ], [ 114.117078, -22.314915 ], [ 114.115818, -22.331156 ], [ 114.149498, -22.301463 ], [ 114.178468, -22.305374 ], [ 114.178218, -22.353442 ], [ 114.135518, -22.393165 ], [ 114.140118, -22.398025 ], [ 114.129918, -22.399916 ], [ 114.147038, -22.396805 ], [ 114.140929, -22.409195 ], [ 114.128189, -22.407806 ], [ 114.122099, -22.415806 ], [ 114.128329, -22.441656 ], [ 114.121799, -22.472668 ], [ 114.138590, -22.497539 ], [ 114.135628, -22.500663 ], [ 114.143910, -22.506699 ], [ 114.143810, -22.538059 ], [ 114.151040, -22.517099 ], [ 114.161800, -22.534049 ], [ 114.160730, -22.523779 ], [ 114.188800, -22.520809 ], [ 114.218610, -22.497188 ], [ 114.216210, -22.486008 ], [ 114.230690, -22.473288 ], [ 114.225630, -22.457368 ], [ 114.241170, -22.459207 ], [ 114.282370, -22.433786 ], [ 114.317440, -22.440617 ], [ 114.322790, -22.503707 ], [ 114.324040, -22.479567 ], [ 114.327180, -22.489727 ], [ 114.338960, -22.492117 ], [ 114.340320, -22.516307 ], [ 114.345030, -22.490207 ], [ 114.354850, -22.500606 ], [ 114.357650, -22.494287 ], [ 114.358740, -22.503896 ], [ 114.362760, -22.492827 ], [ 114.367850, -22.500166 ], [ 114.377080, -22.498146 ], [ 114.364580, -22.490347 ], [ 114.383770, -22.490786 ], [ 114.372610, -22.483027 ], [ 114.386080, -22.484616 ], [ 114.377110, -22.476147 ], [ 114.383560, -22.464757 ], [ 114.403830, -22.469407 ], [ 114.390000, -22.461037 ], [ 114.380310, -22.441277 ], [ 114.392980, -22.446257 ], [ 114.391730, -22.439037 ], [ 114.405300, -22.438947 ], [ 114.386270, -22.434067 ], [ 114.386040, -22.426617 ], [ 114.407880, -22.429237 ], [ 114.392360, -22.421547 ], [ 114.390439, -22.402587 ], [ 114.402089, -22.403047 ], [ 114.394809, -22.401687 ], [ 114.393369, -22.390967 ], [ 114.423330, -22.395737 ], [ 114.396409, -22.382957 ], [ 114.401290, -22.359597 ], [ 114.408706, -22.361450 ], [ 114.407000, -22.350917 ], [ 114.423020, -22.351497 ], [ 114.440830, -22.367537 ], [ 114.445690, -22.363706 ], [ 114.436600, -22.357147 ], [ 114.451640, -22.362576 ], [ 114.430900, -22.351727 ], [ 114.443280, -22.342937 ], [ 114.423140, -22.345967 ], [ 114.408720, -22.331167 ], [ 114.414680, -22.316167 ], [ 114.426440, -22.319787 ], [ 114.416510, -22.310527 ], [ 114.423059, -22.300597 ], [ 114.439679, -22.303997 ], [ 114.433620, -22.294967 ], [ 114.460880, -22.329296 ], [ 114.449019, -22.300057 ], [ 114.461390, -22.292616 ], [ 114.437260, -22.289326 ], [ 114.429760, -22.275436 ], [ 114.439830, -22.264945 ], [ 114.460930, -22.271896 ], [ 114.450380, -22.259655 ], [ 114.472570, -22.264406 ], [ 114.448690, -22.253554 ], [ 114.443970, -22.242045 ], [ 114.454045, -22.244557 ], [ 114.451370, -22.238325 ], [ 114.463731, -22.244985 ], [ 114.458602, -22.245694 ], [ 114.481870, -22.251497 ], [ 114.452220, -22.235045 ], [ 114.453200, -22.207968 ], [ 114.469320, -22.217947 ], [ 114.466420, -22.204248 ], [ 114.478420, -22.204818 ], [ 114.488990, -22.219118 ], [ 114.500461, -22.220498 ], [ 114.471760, -22.190368 ], [ 114.481568, -22.188030 ], [ 114.453600, -22.166098 ], [ 114.455660, -22.159548 ], [ 114.489460, -22.157647 ], [ 114.490690, -22.171057 ], [ 114.499520, -22.162957 ], [ 114.507990, -22.183507 ], [ 114.500850, -22.150317 ], [ 114.505820, -22.158217 ], [ 114.506910, -22.152916 ], [ 114.514900, -22.156646 ], [ 114.501340, -22.129886 ], [ 114.519389, -22.123235 ], [ 114.526329, -22.141576 ], [ 114.518059, -22.105855 ], [ 114.527749, -22.101794 ], [ 114.531389, -22.095344 ], [ 114.525809, -22.100324 ], [ 114.523149, -22.093434 ], [ 114.535739, -22.078764 ], [ 114.520239, -22.082714 ], [ 114.517339, -22.066464 ], [ 114.542519, -22.060823 ], [ 114.551599, -22.066463 ], [ 114.547849, -22.052133 ], [ 114.558978, -22.020301 ], [ 114.574359, -22.043662 ], [ 114.564189, -22.026842 ], [ 114.575438, -22.015781 ], [ 114.570598, -22.001781 ], [ 114.585028, -21.996880 ], [ 114.589378, -22.019481 ], [ 114.586568, -22.003811 ], [ 114.601358, -21.987720 ], [ 114.605908, -22.006860 ], [ 114.604868, -21.987490 ], [ 114.615748, -21.976190 ], [ 114.612938, -21.961520 ], [ 114.626148, -21.973580 ], [ 114.615218, -21.947629 ], [ 114.637127, -21.944579 ], [ 114.619328, -21.944779 ], [ 114.621497, -21.935879 ], [ 114.639367, -21.917348 ], [ 114.651637, -21.922518 ], [ 114.664297, -21.910538 ], [ 114.647597, -21.919928 ], [ 114.642507, -21.909328 ], [ 114.648076, -21.844517 ], [ 114.675486, -21.827656 ], [ 114.686136, -21.832946 ], [ 114.693166, -21.839366 ], [ 114.685247, -21.867827 ], [ 114.697647, -21.843086 ], [ 114.693386, -21.830816 ], [ 114.683356, -21.828996 ], [ 114.698796, -21.813726 ], [ 114.720886, -21.798786 ], [ 114.778396, -21.790546 ], [ 114.857156, -21.734465 ], [ 114.860906, -21.738045 ], [ 114.858956, -21.732655 ], [ 114.903446, -21.705314 ], [ 114.914256, -21.688344 ], [ 114.936136, -21.690764 ], [ 114.973136, -21.669643 ], [ 114.988376, -21.673993 ], [ 114.972296, -21.670773 ], [ 114.945196, -21.690393 ], [ 114.958346, -21.686173 ], [ 114.962986, -21.692613 ], [ 114.963037, -21.685830 ], [ 114.958696, -21.683693 ], [ 114.966276, -21.677233 ], [ 114.973816, -21.681793 ], [ 114.967966, -21.675413 ], [ 114.974716, -21.671553 ], [ 114.984046, -21.679543 ], [ 115.029006, -21.684683 ], [ 115.016716, -21.692863 ], [ 115.026126, -21.688193 ], [ 115.027846, -21.694883 ], [ 115.029496, -21.686713 ], [ 115.040396, -21.692212 ], [ 115.037106, -21.684883 ], [ 115.043246, -21.682142 ], [ 115.030336, -21.685583 ], [ 115.054706, -21.677582 ], [ 115.055956, -21.686052 ], [ 115.057116, -21.675882 ], [ 115.108956, -21.631741 ], [ 115.131126, -21.644862 ], [ 115.131686, -21.659842 ], [ 115.142186, -21.659042 ], [ 115.132206, -21.644852 ], [ 115.160617, -21.626211 ], [ 115.176586, -21.636612 ], [ 115.161576, -21.625072 ], [ 115.178526, -21.611331 ], [ 115.194926, -21.628312 ], [ 115.193786, -21.620291 ], [ 115.210136, -21.627892 ], [ 115.186866, -21.612421 ], [ 115.211046, -21.597741 ], [ 115.219856, -21.616211 ], [ 115.219776, -21.602551 ], [ 115.234417, -21.596221 ], [ 115.229977, -21.592561 ], [ 115.242317, -21.576801 ], [ 115.252147, -21.585001 ], [ 115.243107, -21.587071 ], [ 115.245947, -21.595891 ], [ 115.244677, -21.588201 ], [ 115.298207, -21.594131 ], [ 115.327218, -21.580300 ], [ 115.328417, -21.583160 ], [ 115.331168, -21.575990 ], [ 115.381689, -21.548140 ], [ 115.399119, -21.556059 ], [ 115.401449, -21.547009 ], [ 115.418299, -21.539879 ], [ 115.414159, -21.534689 ], [ 115.381169, -21.543289 ], [ 115.404719, -21.528238 ], [ 115.416339, -21.532568 ], [ 115.408099, -21.527878 ], [ 115.412909, -21.524798 ], [ 115.433338, -21.529188 ], [ 115.428139, -21.545369 ], [ 115.436598, -21.530188 ], [ 115.435319, -21.542018 ], [ 115.440673, -21.538140 ], [ 115.439559, -21.538188 ], [ 115.438168, -21.529608 ], [ 115.457316, -21.508477 ], [ 115.458668, -21.527558 ], [ 115.443498, -21.532848 ], [ 115.447400, -21.537850 ], [ 115.444495, -21.537976 ], [ 115.446529, -21.543788 ], [ 115.448352, -21.539071 ], [ 115.455690, -21.548478 ], [ 115.456349, -21.539778 ], [ 115.445068, -21.532838 ], [ 115.459058, -21.531058 ], [ 115.463870, -21.547228 ], [ 115.460388, -21.531728 ], [ 115.467747, -21.514737 ], [ 115.476168, -21.527107 ], [ 115.475580, -21.547188 ], [ 115.477278, -21.530037 ], [ 115.491459, -21.537397 ], [ 115.492430, -21.545807 ], [ 115.498209, -21.536058 ], [ 115.493239, -21.534337 ], [ 115.493444, -21.527910 ], [ 115.492399, -21.534347 ], [ 115.480899, -21.530127 ], [ 115.475037, -21.505767 ], [ 115.496198, -21.510937 ], [ 115.495312, -21.516397 ], [ 115.499928, -21.508877 ], [ 115.510698, -21.509527 ], [ 115.510869, -21.524847 ], [ 115.520308, -21.509176 ], [ 115.495158, -21.501457 ], [ 115.491127, -21.495497 ], [ 115.494612, -21.492555 ], [ 115.492557, -21.492437 ], [ 115.492747, -21.485766 ], [ 115.506617, -21.477336 ], [ 115.516477, -21.483476 ], [ 115.528267, -21.464786 ], [ 115.515287, -21.481206 ], [ 115.508427, -21.475996 ], [ 115.526357, -21.459466 ], [ 115.506267, -21.474406 ], [ 115.509716, -21.457936 ], [ 115.516966, -21.454696 ], [ 115.518147, -21.461466 ], [ 115.518576, -21.446576 ], [ 115.549255, -21.434726 ], [ 115.558646, -21.437695 ], [ 115.565447, -21.457255 ], [ 115.561056, -21.438835 ], [ 115.571627, -21.448805 ], [ 115.563346, -21.438955 ], [ 115.572695, -21.427545 ], [ 115.562156, -21.435905 ], [ 115.550914, -21.413065 ], [ 115.583583, -21.384845 ], [ 115.591003, -21.397405 ], [ 115.580864, -21.401885 ], [ 115.585784, -21.406185 ], [ 115.592693, -21.397865 ], [ 115.597464, -21.410855 ], [ 115.593073, -21.391655 ], [ 115.609033, -21.382045 ], [ 115.602163, -21.379385 ], [ 115.595733, -21.389515 ], [ 115.588783, -21.379895 ], [ 115.605012, -21.361104 ], [ 115.617963, -21.377344 ], [ 115.619193, -21.366854 ], [ 115.608763, -21.356264 ], [ 115.621074, -21.351674 ], [ 115.627954, -21.363184 ], [ 115.637415, -21.345554 ], [ 115.627454, -21.354744 ], [ 115.618084, -21.345684 ], [ 115.640326, -21.327134 ], [ 115.652917, -21.346364 ], [ 115.648726, -21.337434 ], [ 115.662207, -21.342214 ], [ 115.649696, -21.336644 ], [ 115.668266, -21.333764 ], [ 115.648386, -21.331674 ], [ 115.652546, -21.315654 ], [ 115.683226, -21.319314 ], [ 115.678946, -21.309984 ], [ 115.703144, -21.279463 ], [ 115.705095, -21.299573 ], [ 115.716284, -21.276673 ], [ 115.719964, -21.288723 ], [ 115.735854, -21.283833 ], [ 115.737974, -21.274923 ], [ 115.744593, -21.278637 ], [ 115.744104, -21.277313 ], [ 115.756344, -21.253863 ], [ 115.752614, -21.284013 ], [ 115.762314, -21.271823 ], [ 115.770344, -21.284603 ], [ 115.761724, -21.268093 ], [ 115.769244, -21.267891 ], [ 115.767424, -21.254113 ], [ 115.783794, -21.256743 ], [ 115.779274, -21.288553 ], [ 115.787864, -21.265673 ], [ 115.794433, -21.262797 ], [ 115.787544, -21.251563 ], [ 115.791894, -21.246493 ], [ 115.804654, -21.245843 ], [ 115.816655, -21.265623 ], [ 115.808864, -21.248903 ], [ 115.831246, -21.251437 ], [ 115.819345, -21.247453 ], [ 115.829245, -21.239803 ], [ 115.830964, -21.225243 ], [ 115.844875, -21.227893 ], [ 115.833533, -21.205602 ], [ 115.850303, -21.191862 ], [ 115.856418, -21.194914 ], [ 115.854553, -21.176072 ], [ 115.869993, -21.157362 ], [ 115.876543, -21.164142 ], [ 115.869043, -21.151712 ], [ 115.877983, -21.135362 ], [ 115.887543, -21.138812 ], [ 115.881502, -21.121142 ], [ 115.893376, -21.117304 ], [ 115.889342, -21.112682 ], [ 115.918152, -21.078751 ], [ 115.925732, -21.077861 ], [ 115.923423, -21.093551 ], [ 115.917776, -21.093008 ], [ 115.923783, -21.095691 ], [ 115.927662, -21.077411 ], [ 115.989382, -21.040109 ], [ 116.069422, -21.017038 ], [ 116.097092, -21.000447 ], [ 116.093712, -21.024268 ], [ 116.105226, -21.037917 ], [ 116.095522, -21.024498 ], [ 116.103222, -21.001127 ], [ 116.130452, -20.997017 ], [ 116.146142, -21.012727 ], [ 116.140302, -20.991917 ], [ 116.164532, -20.968736 ], [ 116.176822, -20.977626 ], [ 116.188102, -20.967896 ], [ 116.189741, -20.901295 ], [ 116.226741, -20.883454 ], [ 116.210131, -20.888494 ], [ 116.214021, -20.879854 ], [ 116.207011, -20.889604 ], [ 116.191030, -20.888425 ], [ 116.204590, -20.833754 ], [ 116.236371, -20.860333 ], [ 116.256172, -20.857773 ], [ 116.241431, -20.865733 ], [ 116.246722, -20.865953 ], [ 116.241341, -20.876574 ], [ 116.252972, -20.866163 ], [ 116.259561, -20.867633 ], [ 116.255571, -20.880183 ], [ 116.272441, -20.868933 ], [ 116.289290, -20.877023 ], [ 116.286000, -20.881323 ], [ 116.297340, -20.877113 ], [ 116.297932, -20.880271 ], [ 116.302630, -20.876313 ], [ 116.329030, -20.868003 ], [ 116.345391, -20.838822 ], [ 116.366911, -20.841922 ], [ 116.399031, -20.822181 ], [ 116.400171, -20.830301 ], [ 116.439771, -20.826671 ], [ 116.453791, -20.844471 ], [ 116.459009, -20.842679 ], [ 116.453162, -20.840171 ], [ 116.442401, -20.824181 ], [ 116.459450, -20.822651 ], [ 116.464803, -20.825627 ], [ 116.466860, -20.814951 ], [ 116.480531, -20.808011 ], [ 116.488152, -20.815441 ], [ 116.483151, -20.804281 ], [ 116.492420, -20.799511 ], [ 116.502271, -20.807821 ], [ 116.500650, -20.798501 ], [ 116.489290, -20.797171 ], [ 116.513780, -20.778531 ], [ 116.527729, -20.782771 ], [ 116.527830, -20.791521 ], [ 116.535647, -20.785559 ], [ 116.513390, -20.771760 ], [ 116.524128, -20.758061 ], [ 116.531508, -20.768751 ], [ 116.535250, -20.767390 ], [ 116.532098, -20.767851 ], [ 116.525909, -20.752861 ], [ 116.549777, -20.748361 ], [ 116.551857, -20.755011 ], [ 116.553368, -20.746431 ], [ 116.578324, -20.741690 ], [ 116.560572, -20.746810 ], [ 116.579184, -20.745190 ], [ 116.583064, -20.751720 ], [ 116.590204, -20.740420 ], [ 116.594494, -20.744670 ], [ 116.587394, -20.752420 ], [ 116.597554, -20.745670 ], [ 116.605204, -20.753820 ], [ 116.591744, -20.734510 ], [ 116.601645, -20.728406 ], [ 116.574794, -20.731100 ], [ 116.590744, -20.717199 ], [ 116.573714, -20.708299 ], [ 116.579034, -20.692129 ], [ 116.593494, -20.684569 ], [ 116.592914, -20.705949 ], [ 116.607454, -20.686469 ], [ 116.628384, -20.683609 ], [ 116.636794, -20.674709 ], [ 116.647994, -20.682339 ], [ 116.602277, -20.728017 ], [ 116.623084, -20.715189 ], [ 116.616084, -20.729109 ], [ 116.624034, -20.734039 ], [ 116.630624, -20.710729 ], [ 116.636114, -20.726199 ], [ 116.629904, -20.732089 ], [ 116.633662, -20.734922 ], [ 116.633634, -20.734839 ], [ 116.639594, -20.725949 ], [ 116.654034, -20.732319 ], [ 116.652501, -20.735413 ], [ 116.662944, -20.733249 ], [ 116.663774, -20.741369 ], [ 116.663514, -20.732049 ], [ 116.642074, -20.721939 ], [ 116.668238, -20.726694 ], [ 116.682624, -20.714229 ], [ 116.684744, -20.723029 ], [ 116.688884, -20.705779 ], [ 116.666704, -20.722209 ], [ 116.656594, -20.717859 ], [ 116.661214, -20.713889 ], [ 116.650224, -20.715859 ], [ 116.666794, -20.711709 ], [ 116.644934, -20.714529 ], [ 116.642474, -20.704719 ], [ 116.668054, -20.684839 ], [ 116.696484, -20.683088 ], [ 116.692134, -20.677608 ], [ 116.721668, -20.646594 ], [ 116.721658, -20.637941 ], [ 116.740594, -20.641238 ], [ 116.765153, -20.633147 ], [ 116.746393, -20.621328 ], [ 116.770663, -20.588797 ], [ 116.780043, -20.583177 ], [ 116.784493, -20.589277 ], [ 116.798162, -20.575437 ], [ 116.778143, -20.576797 ], [ 116.789782, -20.560137 ], [ 116.810581, -20.549857 ], [ 116.815071, -20.539557 ], [ 116.804531, -20.541537 ], [ 116.811161, -20.529187 ], [ 116.867491, -20.526156 ], [ 116.819793, -20.581637 ], [ 116.822893, -20.597997 ], [ 116.819273, -20.606307 ], [ 116.808093, -20.606417 ], [ 116.814903, -20.607177 ], [ 116.812813, -20.614757 ], [ 116.797913, -20.630087 ], [ 116.802423, -20.640447 ], [ 116.787262, -20.665297 ], [ 116.792573, -20.675388 ], [ 116.787843, -20.686928 ], [ 116.797442, -20.667567 ], [ 116.799803, -20.680658 ], [ 116.828193, -20.708718 ], [ 116.898773, -20.724107 ], [ 116.923653, -20.712327 ], [ 116.927533, -20.725087 ], [ 116.919903, -20.740687 ], [ 116.927913, -20.725687 ], [ 116.931653, -20.730926 ], [ 116.927073, -20.720087 ], [ 116.952673, -20.724336 ], [ 116.926423, -20.713207 ], [ 116.956812, -20.701226 ], [ 116.945572, -20.698196 ], [ 116.956322, -20.683326 ], [ 116.965442, -20.683266 ], [ 116.973632, -20.671016 ], [ 116.979252, -20.687446 ], [ 116.979152, -20.671095 ], [ 116.982442, -20.670807 ], [ 116.976262, -20.668966 ], [ 116.990212, -20.658155 ], [ 117.036232, -20.648204 ], [ 117.029502, -20.658244 ], [ 117.038022, -20.659494 ], [ 117.038802, -20.667574 ], [ 117.066372, -20.639543 ], [ 117.084502, -20.636063 ], [ 117.094351, -20.623993 ], [ 117.105332, -20.654783 ], [ 117.128192, -20.654393 ], [ 117.138272, -20.626753 ], [ 117.171421, -20.593562 ], [ 117.182811, -20.592332 ], [ 117.175851, -20.606112 ], [ 117.180651, -20.616122 ], [ 117.191201, -20.613342 ], [ 117.199223, -20.631731 ], [ 117.192972, -20.638582 ], [ 117.176194, -20.632304 ], [ 117.181592, -20.639662 ], [ 117.156852, -20.657153 ], [ 117.181362, -20.645062 ], [ 117.175908, -20.664591 ], [ 117.190092, -20.673322 ], [ 117.189132, -20.665082 ], [ 117.200422, -20.666552 ], [ 117.171942, -20.700593 ], [ 117.182642, -20.691842 ], [ 117.187154, -20.695515 ], [ 117.195172, -20.680332 ], [ 117.214452, -20.705982 ], [ 117.227292, -20.706772 ], [ 117.217282, -20.713322 ], [ 117.216423, -20.724842 ], [ 117.228972, -20.705532 ], [ 117.211932, -20.697732 ], [ 117.223092, -20.695142 ], [ 117.242282, -20.702532 ], [ 117.245012, -20.714202 ], [ 117.244762, -20.704312 ], [ 117.276731, -20.723394 ], [ 117.284682, -20.720252 ], [ 117.283923, -20.735322 ], [ 117.292012, -20.723622 ], [ 117.287933, -20.734912 ], [ 117.299922, -20.726502 ], [ 117.297992, -20.738032 ], [ 117.302672, -20.726802 ], [ 117.347532, -20.735652 ], [ 117.357832, -20.743033 ], [ 117.346672, -20.759303 ], [ 117.340148, -20.759110 ], [ 117.337302, -20.774213 ], [ 117.340472, -20.764283 ], [ 117.349652, -20.763033 ], [ 117.349702, -20.778983 ], [ 117.357872, -20.775772 ], [ 117.350712, -20.771633 ], [ 117.352302, -20.757123 ], [ 117.366722, -20.745742 ], [ 117.362752, -20.734332 ], [ 117.369832, -20.734222 ], [ 117.382811, -20.750712 ], [ 117.377051, -20.758842 ], [ 117.381762, -20.784363 ], [ 117.390151, -20.760982 ], [ 117.397962, -20.771023 ], [ 117.397352, -20.758832 ], [ 117.386081, -20.760442 ], [ 117.388341, -20.752732 ], [ 117.403842, -20.760062 ], [ 117.387441, -20.744782 ], [ 117.395171, -20.730592 ], [ 117.426992, -20.731132 ], [ 117.436492, -20.746492 ], [ 117.429782, -20.758012 ], [ 117.441062, -20.753602 ], [ 117.441422, -20.745352 ], [ 117.457401, -20.757222 ], [ 117.461121, -20.751662 ], [ 117.434562, -20.740502 ], [ 117.442572, -20.730602 ], [ 117.544521, -20.707741 ], [ 117.551302, -20.710321 ], [ 117.552551, -20.704001 ], [ 117.573301, -20.694031 ], [ 117.594911, -20.703641 ], [ 117.585011, -20.694171 ], [ 117.590691, -20.688011 ], [ 117.598871, -20.694771 ], [ 117.589961, -20.679771 ], [ 117.630731, -20.663771 ], [ 117.648330, -20.661990 ], [ 117.618871, -20.678851 ], [ 117.616571, -20.687271 ], [ 117.625961, -20.677101 ], [ 117.641691, -20.677981 ], [ 117.637162, -20.693351 ], [ 117.645072, -20.689441 ], [ 117.646552, -20.702141 ], [ 117.628292, -20.709091 ], [ 117.643982, -20.711651 ], [ 117.651362, -20.703931 ], [ 117.656312, -20.715471 ], [ 117.654322, -20.688911 ], [ 117.667362, -20.672281 ], [ 117.664152, -20.684141 ], [ 117.675362, -20.699031 ], [ 117.666782, -20.679391 ], [ 117.680432, -20.666601 ], [ 117.689442, -20.668720 ], [ 117.686822, -20.677311 ], [ 117.697292, -20.687000 ], [ 117.688182, -20.691541 ], [ 117.700652, -20.686770 ], [ 117.704112, -20.694550 ], [ 117.713972, -20.682220 ], [ 117.736281, -20.678890 ], [ 117.737391, -20.686570 ], [ 117.739281, -20.677640 ], [ 117.746241, -20.682290 ], [ 117.747311, -20.674120 ], [ 117.769461, -20.666080 ], [ 117.770181, -20.676330 ], [ 117.774191, -20.670090 ], [ 117.793421, -20.679300 ], [ 117.809731, -20.674170 ], [ 117.794851, -20.675340 ], [ 117.774281, -20.663540 ], [ 117.782781, -20.654370 ], [ 117.794181, -20.655580 ], [ 117.814141, -20.632140 ], [ 117.854120, -20.606039 ], [ 117.864570, -20.607469 ], [ 117.859369, -20.597439 ], [ 117.867469, -20.581939 ], [ 117.897989, -20.585259 ], [ 117.884729, -20.578269 ], [ 117.891418, -20.573049 ], [ 117.878379, -20.581109 ], [ 117.871029, -20.571759 ], [ 117.881738, -20.551958 ], [ 117.895298, -20.551798 ], [ 117.890138, -20.558178 ], [ 117.903338, -20.553688 ], [ 117.900368, -20.561948 ], [ 117.915899, -20.567298 ], [ 117.912169, -20.576598 ], [ 117.920299, -20.566728 ], [ 117.930279, -20.570878 ], [ 117.914649, -20.562688 ], [ 117.924569, -20.561048 ], [ 117.912258, -20.555528 ], [ 117.919848, -20.543578 ], [ 117.941329, -20.546668 ], [ 117.943769, -20.556818 ], [ 117.934539, -20.558548 ], [ 117.941779, -20.566988 ], [ 117.949509, -20.551828 ], [ 117.945399, -20.546198 ], [ 117.957759, -20.547847 ], [ 117.960229, -20.561958 ], [ 117.959329, -20.549418 ], [ 117.970579, -20.544407 ], [ 117.975049, -20.550487 ], [ 117.972849, -20.541687 ], [ 117.964119, -20.546917 ], [ 117.970969, -20.525207 ], [ 117.959679, -20.546817 ], [ 117.942719, -20.536837 ], [ 117.959189, -20.517007 ], [ 117.948409, -20.519987 ], [ 117.951369, -20.511617 ], [ 117.961689, -20.506646 ], [ 117.949409, -20.510437 ], [ 117.942939, -20.530507 ], [ 117.931528, -20.526597 ], [ 117.942168, -20.510907 ], [ 117.940918, -20.479916 ], [ 117.965299, -20.491116 ], [ 117.952538, -20.479196 ], [ 117.992309, -20.472155 ], [ 118.017779, -20.458715 ], [ 118.050079, -20.422104 ], [ 118.103248, -20.394765 ], [ 118.109758, -20.401053 ], [ 118.110288, -20.387724 ], [ 118.160907, -20.357893 ], [ 118.181566, -20.336413 ], [ 118.196726, -20.337923 ], [ 118.200207, -20.360063 ], [ 118.184787, -20.345573 ], [ 118.172967, -20.350943 ], [ 118.172297, -20.359123 ], [ 118.182097, -20.355983 ], [ 118.175987, -20.354883 ], [ 118.183717, -20.346713 ], [ 118.184127, -20.356003 ], [ 118.199827, -20.368943 ], [ 118.180077, -20.358133 ], [ 118.198227, -20.369453 ], [ 118.169527, -20.368983 ], [ 118.165128, -20.382943 ], [ 118.205457, -20.376413 ], [ 118.196158, -20.403754 ], [ 118.213937, -20.373203 ], [ 118.224707, -20.370553 ], [ 118.215487, -20.370943 ], [ 118.232717, -20.368144 ], [ 118.240166, -20.371944 ], [ 118.235996, -20.375234 ], [ 118.244226, -20.369774 ], [ 118.257216, -20.377723 ], [ 118.257336, -20.358853 ], [ 118.281016, -20.353423 ], [ 118.283496, -20.367413 ], [ 118.297766, -20.351633 ], [ 118.308396, -20.364343 ], [ 118.314806, -20.356053 ], [ 118.318336, -20.365403 ], [ 118.315396, -20.354693 ], [ 118.288766, -20.348633 ], [ 118.346126, -20.329892 ], [ 118.353606, -20.355253 ], [ 118.344056, -20.360053 ], [ 118.359136, -20.358723 ], [ 118.363596, -20.373963 ], [ 118.368666, -20.351432 ], [ 118.379196, -20.369622 ], [ 118.379086, -20.351372 ], [ 118.400626, -20.348642 ], [ 118.409436, -20.358522 ], [ 118.403846, -20.364302 ], [ 118.411626, -20.361082 ], [ 118.408896, -20.349152 ], [ 118.416856, -20.339562 ], [ 118.439586, -20.338452 ], [ 118.428016, -20.344722 ], [ 118.450305, -20.346742 ], [ 118.448915, -20.337152 ], [ 118.455845, -20.335072 ], [ 118.477516, -20.349491 ], [ 118.493035, -20.343631 ], [ 118.489266, -20.350991 ], [ 118.495915, -20.343641 ], [ 118.479395, -20.329151 ], [ 118.487515, -20.325971 ], [ 118.494955, -20.328141 ], [ 118.486585, -20.330461 ], [ 118.491045, -20.334271 ], [ 118.510725, -20.330641 ], [ 118.506386, -20.348781 ], [ 118.517905, -20.330811 ], [ 118.506205, -20.327661 ], [ 118.536745, -20.311651 ], [ 118.539555, -20.319231 ], [ 118.530895, -20.323911 ], [ 118.541859, -20.329756 ], [ 118.540485, -20.321721 ], [ 118.548125, -20.310611 ], [ 118.557315, -20.313610 ], [ 118.547335, -20.304851 ], [ 118.526265, -20.305361 ], [ 118.561962, -20.294396 ], [ 118.573745, -20.301600 ], [ 118.563712, -20.310819 ], [ 118.570425, -20.320140 ], [ 118.565445, -20.318050 ], [ 118.566425, -20.325760 ], [ 118.558485, -20.316671 ], [ 118.563285, -20.329571 ], [ 118.552016, -20.346311 ], [ 118.556246, -20.349761 ], [ 118.574425, -20.327960 ], [ 118.571295, -20.345211 ], [ 118.576025, -20.337790 ], [ 118.578566, -20.357681 ], [ 118.580215, -20.337260 ], [ 118.595936, -20.354490 ], [ 118.596675, -20.344940 ], [ 118.603086, -20.351540 ], [ 118.612845, -20.347550 ], [ 118.602866, -20.349050 ], [ 118.587415, -20.335390 ], [ 118.605635, -20.331240 ], [ 118.617285, -20.342430 ], [ 118.608505, -20.331600 ], [ 118.629555, -20.334370 ], [ 118.606775, -20.324590 ], [ 118.591765, -20.329670 ], [ 118.573033, -20.316187 ], [ 118.591016, -20.308092 ], [ 118.597995, -20.286556 ], [ 118.598190, -20.308261 ], [ 118.640369, -20.298496 ], [ 118.641810, -20.312455 ], [ 118.667325, -20.325349 ], [ 118.655135, -20.331120 ], [ 118.674455, -20.332280 ], [ 118.665685, -20.342860 ], [ 118.678345, -20.340319 ], [ 118.678655, -20.330279 ], [ 118.687325, -20.327159 ], [ 118.676765, -20.326659 ], [ 118.690255, -20.315799 ], [ 118.768224, -20.281728 ], [ 118.797844, -20.278908 ], [ 118.805914, -20.288098 ], [ 118.805964, -20.281098 ], [ 118.820704, -20.278028 ], [ 118.820874, -20.287848 ], [ 118.822624, -20.276008 ], [ 118.845254, -20.286293 ], [ 118.827794, -20.272658 ], [ 118.832404, -20.262298 ], [ 118.847263, -20.262328 ], [ 118.829794, -20.258898 ], [ 118.842063, -20.230647 ], [ 118.851303, -20.225507 ], [ 118.874524, -20.242347 ], [ 118.869544, -20.253377 ], [ 118.882655, -20.261126 ], [ 118.871454, -20.253727 ], [ 118.878214, -20.242516 ], [ 118.860273, -20.225447 ], [ 118.896502, -20.167756 ], [ 118.959141, -20.127025 ], [ 118.993830, -20.035794 ], [ 119.068349, -20.015393 ], [ 119.093699, -19.988453 ], [ 119.088349, -19.970373 ], [ 119.099709, -19.959323 ], [ 119.147090, -19.978573 ], [ 119.160630, -20.012123 ], [ 119.158680, -20.004063 ], [ 119.168420, -20.015163 ], [ 119.207070, -20.023673 ], [ 119.210560, -20.017253 ], [ 119.172150, -20.007733 ], [ 119.171590, -19.956573 ], [ 119.218269, -19.953213 ], [ 119.238089, -19.961353 ], [ 119.239959, -19.971703 ], [ 119.248449, -19.970593 ], [ 119.241549, -19.971063 ], [ 119.242619, -19.964513 ], [ 119.320780, -19.990369 ], [ 119.373371, -19.991488 ], [ 119.381250, -19.996448 ], [ 119.371671, -20.008108 ], [ 119.415161, -19.994507 ], [ 119.443042, -20.017226 ], [ 119.466093, -20.013336 ], [ 119.471004, -20.005676 ], [ 119.512931, -20.046507 ], [ 119.569839, -20.070986 ], [ 119.572449, -20.077196 ], [ 119.562789, -20.078977 ], [ 119.569339, -20.080347 ], [ 119.655498, -20.046535 ], [ 119.673188, -20.032005 ], [ 119.680508, -20.003815 ], [ 119.700867, -19.995104 ], [ 119.709368, -20.021334 ], [ 119.696675, -20.035020 ], [ 119.704818, -20.037234 ], [ 119.702678, -20.029904 ], [ 119.714498, -20.022464 ], [ 119.724888, -20.026204 ], [ 119.733008, -20.013354 ], [ 119.745323, -20.011060 ], [ 119.741138, -20.005914 ], [ 119.746508, -20.003214 ], [ 119.741308, -19.984394 ], [ 119.752745, -19.983716 ], [ 119.730067, -19.976184 ], [ 119.757368, -19.963594 ], [ 119.755358, -19.971724 ], [ 119.765198, -19.976433 ], [ 119.772538, -19.969753 ], [ 119.764148, -19.955563 ], [ 119.791508, -19.968123 ], [ 119.787758, -19.973303 ], [ 119.861547, -19.962162 ], [ 119.866227, -19.969592 ], [ 119.884437, -19.955312 ], [ 119.972766, -19.933001 ], [ 120.081236, -19.926479 ], [ 120.087397, -19.925279 ], [ 120.080296, -19.921249 ], [ 120.133206, -19.912429 ], [ 120.195936, -19.913908 ], [ 120.631003, -19.770045 ], [ 120.981888, -19.621038 ], [ 121.113922, -19.538571 ], [ 121.210132, -19.466302 ], [ 121.333221, -19.341653 ], [ 121.412999, -19.237982 ], [ 121.511139, -19.093872 ], [ 121.525358, -19.053121 ], [ 121.518018, -19.042821 ], [ 121.540748, -19.021291 ], [ 121.564597, -18.969260 ], [ 121.553177, -18.943460 ], [ 121.578207, -18.950890 ], [ 121.600087, -18.940679 ], [ 121.575957, -18.947380 ], [ 121.600707, -18.903179 ], [ 121.602727, -18.869179 ], [ 121.618176, -18.864369 ], [ 121.628106, -18.841579 ], [ 121.637696, -18.847709 ], [ 121.631316, -18.840009 ], [ 121.642666, -18.818009 ], [ 121.651446, -18.819059 ], [ 121.653186, -18.835929 ], [ 121.654906, -18.813189 ], [ 121.645466, -18.795880 ], [ 121.655526, -18.767209 ], [ 121.634496, -18.743309 ], [ 121.619796, -18.742019 ], [ 121.618145, -18.706309 ], [ 121.628835, -18.700249 ], [ 121.630775, -18.721939 ], [ 121.635465, -18.704219 ], [ 121.639355, -18.709989 ], [ 121.657264, -18.707108 ], [ 121.665014, -18.720258 ], [ 121.681173, -18.720618 ], [ 121.677753, -18.715638 ], [ 121.698082, -18.698637 ], [ 121.717273, -18.706368 ], [ 121.737335, -18.696819 ], [ 121.741115, -18.704738 ], [ 121.751867, -18.674829 ], [ 121.766926, -18.673049 ], [ 121.786896, -18.653888 ], [ 121.788186, -18.660788 ], [ 121.793046, -18.657178 ], [ 121.783805, -18.610838 ], [ 121.790825, -18.609258 ], [ 121.729385, -18.575678 ], [ 121.764754, -18.552828 ], [ 121.790934, -18.503848 ], [ 121.798384, -18.509858 ], [ 121.795278, -18.518299 ], [ 121.817024, -18.491818 ], [ 121.810174, -18.481068 ], [ 121.803245, -18.508058 ], [ 121.788974, -18.484188 ], [ 121.815214, -18.451138 ], [ 121.839983, -18.443727 ], [ 121.851664, -18.461707 ], [ 121.872013, -18.471687 ], [ 121.903643, -18.464057 ], [ 121.946672, -18.439267 ], [ 121.982593, -18.404847 ], [ 122.017415, -18.390527 ], [ 122.063513, -18.325816 ], [ 122.083382, -18.327636 ], [ 122.130022, -18.307426 ], [ 122.166232, -18.266645 ], [ 122.168122, -18.273425 ], [ 122.177943, -18.266075 ], [ 122.172143, -18.262915 ], [ 122.183033, -18.239416 ], [ 122.198293, -18.230706 ], [ 122.201603, -18.235346 ], [ 122.190603, -18.241216 ], [ 122.200653, -18.237606 ], [ 122.199113, -18.243136 ], [ 122.185043, -18.247885 ], [ 122.199823, -18.249696 ], [ 122.212013, -18.228566 ], [ 122.204913, -18.217376 ], [ 122.214613, -18.204036 ], [ 122.315051, -18.172326 ], [ 122.370266, -18.116445 ], [ 122.380958, -18.070664 ], [ 122.372597, -17.993713 ], [ 122.378069, -17.989814 ], [ 122.351888, -17.975223 ], [ 122.335949, -17.979884 ], [ 122.301692, -17.973614 ], [ 122.250641, -17.952334 ], [ 122.210771, -17.989225 ], [ 122.207141, -18.008875 ], [ 122.175331, -17.974005 ], [ 122.189731, -17.970715 ], [ 122.204931, -17.945275 ], [ 122.212870, -17.873734 ], [ 122.198700, -17.774314 ], [ 122.199649, -17.684823 ], [ 122.187585, -17.665576 ], [ 122.184069, -17.667663 ], [ 122.172549, -17.601233 ], [ 122.145169, -17.560353 ], [ 122.150017, -17.355372 ], [ 122.162007, -17.341572 ], [ 122.173206, -17.263592 ], [ 122.187296, -17.240411 ], [ 122.201656, -17.245921 ], [ 122.211056, -17.240371 ], [ 122.214916, -17.228171 ], [ 122.204706, -17.240381 ], [ 122.206566, -17.229191 ], [ 122.226375, -17.186451 ], [ 122.234365, -17.181021 ], [ 122.225685, -17.192331 ], [ 122.229335, -17.198201 ], [ 122.234025, -17.185761 ], [ 122.243095, -17.196031 ], [ 122.239425, -17.184171 ], [ 122.247055, -17.173311 ], [ 122.241045, -17.169251 ], [ 122.251615, -17.157600 ], [ 122.258775, -17.155660 ], [ 122.246565, -17.163931 ], [ 122.257395, -17.169000 ], [ 122.254905, -17.160640 ], [ 122.274645, -17.150440 ], [ 122.279825, -17.157440 ], [ 122.282035, -17.145120 ], [ 122.318985, -17.158950 ], [ 122.317205, -17.151270 ], [ 122.288145, -17.139570 ], [ 122.313526, -17.136127 ], [ 122.317864, -17.129680 ], [ 122.311984, -17.127090 ], [ 122.292595, -17.130290 ], [ 122.293266, -17.119348 ], [ 122.267215, -17.137010 ], [ 122.253805, -17.131720 ], [ 122.253195, -17.119850 ], [ 122.295524, -17.067230 ], [ 122.351043, -17.036949 ], [ 122.369773, -17.008089 ], [ 122.366353, -16.997639 ], [ 122.469652, -16.936298 ], [ 122.460552, -16.956878 ], [ 122.440732, -16.967098 ], [ 122.447202, -16.969788 ], [ 122.443472, -16.980528 ], [ 122.431033, -16.983388 ], [ 122.444433, -16.987758 ], [ 122.467632, -16.968838 ], [ 122.461432, -16.977778 ], [ 122.468742, -16.986348 ], [ 122.472122, -16.976958 ], [ 122.481052, -16.981348 ], [ 122.475032, -16.968148 ], [ 122.485552, -16.951627 ], [ 122.476882, -16.957178 ], [ 122.485512, -16.937277 ], [ 122.476892, -16.921707 ], [ 122.480221, -16.894587 ], [ 122.489682, -16.918507 ], [ 122.503291, -16.915987 ], [ 122.503082, -16.923677 ], [ 122.519782, -16.933687 ], [ 122.507952, -16.954367 ], [ 122.527572, -16.947677 ], [ 122.554002, -16.962397 ], [ 122.572342, -16.955677 ], [ 122.587612, -16.957217 ], [ 122.602102, -16.971297 ], [ 122.612161, -16.965257 ], [ 122.595622, -16.964307 ], [ 122.591361, -16.954947 ], [ 122.597471, -16.954927 ], [ 122.585581, -16.948077 ], [ 122.582201, -16.933217 ], [ 122.570371, -16.929367 ], [ 122.569461, -16.903267 ], [ 122.556531, -16.896417 ], [ 122.551491, -16.864457 ], [ 122.543501, -16.861427 ], [ 122.533801, -16.836947 ], [ 122.549350, -16.819836 ], [ 122.551040, -16.834526 ], [ 122.560550, -16.835516 ], [ 122.551140, -16.828876 ], [ 122.564290, -16.829286 ], [ 122.565370, -16.837986 ], [ 122.567810, -16.829056 ], [ 122.571230, -16.836156 ], [ 122.571300, -16.822606 ], [ 122.553290, -16.805366 ], [ 122.574110, -16.785766 ], [ 122.577490, -16.777286 ], [ 122.569490, -16.771426 ], [ 122.579430, -16.762136 ], [ 122.609939, -16.765655 ], [ 122.620140, -16.794666 ], [ 122.637410, -16.800705 ], [ 122.693508, -16.777244 ], [ 122.706578, -16.787474 ], [ 122.734458, -16.777653 ], [ 122.757428, -16.746053 ], [ 122.764968, -16.752013 ], [ 122.742698, -16.772203 ], [ 122.761948, -16.765513 ], [ 122.766738, -16.754373 ], [ 122.771638, -16.761563 ], [ 122.769657, -16.752673 ], [ 122.777207, -16.760883 ], [ 122.773527, -16.751413 ], [ 122.788947, -16.763552 ], [ 122.786637, -16.771692 ], [ 122.792097, -16.760602 ], [ 122.781597, -16.747423 ], [ 122.803017, -16.762142 ], [ 122.800607, -16.767022 ], [ 122.810187, -16.766172 ], [ 122.809847, -16.774302 ], [ 122.813617, -16.770112 ], [ 122.845567, -16.792031 ], [ 122.827587, -16.773562 ], [ 122.833417, -16.772412 ], [ 122.823467, -16.769852 ], [ 122.833387, -16.758282 ], [ 122.821407, -16.756982 ], [ 122.838417, -16.744482 ], [ 122.810017, -16.752842 ], [ 122.790807, -16.733722 ], [ 122.775687, -16.735473 ], [ 122.773087, -16.704523 ], [ 122.785297, -16.704153 ], [ 122.784137, -16.695973 ], [ 122.773757, -16.694013 ], [ 122.762787, -16.710333 ], [ 122.743868, -16.700123 ], [ 122.741798, -16.683403 ], [ 122.771107, -16.628613 ], [ 122.778997, -16.584943 ], [ 122.771287, -16.590313 ], [ 122.810106, -16.545303 ], [ 122.817926, -16.539172 ], [ 122.794756, -16.571693 ], [ 122.811576, -16.558293 ], [ 122.833406, -16.560702 ], [ 122.816486, -16.556122 ], [ 122.847726, -16.546502 ], [ 122.861415, -16.519102 ], [ 122.884225, -16.530251 ], [ 122.861255, -16.509952 ], [ 122.853885, -16.512692 ], [ 122.863075, -16.499102 ], [ 122.867225, -16.509362 ], [ 122.884095, -16.508041 ], [ 122.904375, -16.488521 ], [ 122.905705, -16.473601 ], [ 122.895845, -16.468221 ], [ 122.898075, -16.447201 ], [ 122.901774, -16.436671 ], [ 122.911494, -16.437081 ], [ 122.901524, -16.434981 ], [ 122.925294, -16.389451 ], [ 122.955224, -16.401741 ], [ 122.987654, -16.380900 ], [ 122.992024, -16.387550 ], [ 122.982414, -16.405900 ], [ 122.993694, -16.393410 ], [ 122.991634, -16.380090 ], [ 123.038893, -16.359210 ], [ 123.020273, -16.378210 ], [ 123.034123, -16.385610 ], [ 123.034884, -16.400200 ], [ 123.014754, -16.405770 ], [ 123.023984, -16.419970 ], [ 123.034054, -16.420760 ], [ 123.031004, -16.430560 ], [ 123.043074, -16.439860 ], [ 123.076683, -16.440339 ], [ 123.047244, -16.462969 ], [ 123.045014, -16.473789 ], [ 123.042844, -16.458959 ], [ 123.023824, -16.462700 ], [ 123.015404, -16.451750 ], [ 122.982984, -16.465130 ], [ 122.979094, -16.477090 ], [ 122.995694, -16.477570 ], [ 122.997494, -16.485810 ], [ 122.971064, -16.516110 ], [ 123.006694, -16.522200 ], [ 123.008024, -16.528429 ], [ 122.989784, -16.532510 ], [ 122.981074, -16.552460 ], [ 122.985014, -16.558750 ], [ 122.968734, -16.561880 ], [ 122.954425, -16.580140 ], [ 122.960695, -16.590610 ], [ 122.984734, -16.593090 ], [ 122.986564, -16.607089 ], [ 122.996504, -16.601849 ], [ 122.988314, -16.625609 ], [ 122.995744, -16.640849 ], [ 123.023274, -16.604569 ], [ 123.027104, -16.617049 ], [ 123.038664, -16.621359 ], [ 123.036184, -16.671528 ], [ 123.050614, -16.690788 ], [ 123.078734, -16.693248 ], [ 123.083754, -16.664818 ], [ 123.084883, -16.698287 ], [ 123.094023, -16.709127 ], [ 123.126613, -16.711067 ], [ 123.138833, -16.688477 ], [ 123.145053, -16.708437 ], [ 123.132633, -16.738037 ], [ 123.118743, -16.731557 ], [ 123.103453, -16.745297 ], [ 123.107823, -16.772587 ], [ 123.102533, -16.783717 ], [ 123.110683, -16.779057 ], [ 123.109923, -16.794197 ], [ 123.119853, -16.787297 ], [ 123.134833, -16.790736 ], [ 123.156963, -16.805666 ], [ 123.161403, -16.817926 ], [ 123.162123, -16.846646 ], [ 123.173493, -16.858976 ], [ 123.163393, -16.858986 ], [ 123.153544, -16.878438 ], [ 123.149104, -16.924718 ], [ 123.168634, -16.924948 ], [ 123.234835, -16.969948 ], [ 123.263354, -17.011833 ], [ 123.278176, -17.035544 ], [ 123.290602, -17.107721 ], [ 123.344578, -17.162732 ], [ 123.383408, -17.240033 ], [ 123.394348, -17.280663 ], [ 123.392728, -17.316253 ], [ 123.405198, -17.327513 ], [ 123.425168, -17.325463 ], [ 123.442709, -17.345443 ], [ 123.459279, -17.350613 ], [ 123.483280, -17.397063 ], [ 123.514260, -17.418462 ], [ 123.512290, -17.435522 ], [ 123.514790, -17.429542 ], [ 123.515570, -17.437172 ], [ 123.524190, -17.433202 ], [ 123.523150, -17.452292 ], [ 123.537510, -17.454392 ], [ 123.533859, -17.481901 ], [ 123.540999, -17.463792 ], [ 123.545209, -17.469231 ], [ 123.543548, -17.501081 ], [ 123.562707, -17.503891 ], [ 123.576869, -17.523841 ], [ 123.572390, -17.555842 ], [ 123.580350, -17.584192 ], [ 123.593140, -17.573752 ], [ 123.589930, -17.552611 ], [ 123.597050, -17.542691 ], [ 123.591339, -17.529441 ], [ 123.600118, -17.515581 ], [ 123.579648, -17.483621 ], [ 123.582759, -17.424752 ], [ 123.564479, -17.405802 ], [ 123.580988, -17.350152 ], [ 123.593778, -17.361531 ], [ 123.602928, -17.339401 ], [ 123.623806, -17.198661 ], [ 123.641706, -17.193651 ], [ 123.646226, -17.183951 ], [ 123.608086, -17.139381 ], [ 123.590635, -17.100991 ], [ 123.583544, -17.033260 ], [ 123.600693, -17.010619 ], [ 123.647972, -16.999738 ], [ 123.659322, -17.010179 ], [ 123.660033, -17.039649 ], [ 123.679143, -17.045069 ], [ 123.680253, -17.059229 ], [ 123.689193, -17.060029 ], [ 123.704423, -17.042679 ], [ 123.740863, -17.068349 ], [ 123.761123, -17.087749 ], [ 123.773073, -17.129039 ], [ 123.786093, -17.138809 ], [ 123.789214, -17.152289 ], [ 123.829924, -17.178389 ], [ 123.836234, -17.191629 ], [ 123.851974, -17.195409 ], [ 123.862494, -17.216569 ], [ 123.888704, -17.221728 ], [ 123.912493, -17.211858 ], [ 123.914863, -17.205648 ], [ 123.887704, -17.202518 ], [ 123.885523, -17.186579 ], [ 123.829603, -17.134649 ], [ 123.834243, -17.118049 ], [ 123.796449, -17.004007 ], [ 123.820389, -16.997896 ], [ 123.802559, -16.986377 ], [ 123.826870, -16.957277 ], [ 123.894389, -16.907427 ], [ 123.902589, -16.887496 ], [ 123.915838, -16.886506 ], [ 123.928378, -16.871306 ], [ 123.951508, -16.867516 ], [ 123.959268, -16.852416 ], [ 123.949288, -16.836416 ], [ 123.951418, -16.818116 ], [ 123.942228, -16.822806 ], [ 123.942128, -16.852076 ], [ 123.920968, -16.852076 ], [ 123.903628, -16.863777 ], [ 123.893328, -16.857227 ], [ 123.883959, -16.877897 ], [ 123.796120, -16.911838 ], [ 123.760959, -16.875858 ], [ 123.758339, -16.837748 ], [ 123.717589, -16.784868 ], [ 123.711529, -16.752718 ], [ 123.681509, -16.751687 ], [ 123.617760, -16.679497 ], [ 123.599940, -16.679007 ], [ 123.587610, -16.667597 ], [ 123.571380, -16.672767 ], [ 123.552161, -16.659717 ], [ 123.523001, -16.667826 ], [ 123.502801, -16.658826 ], [ 123.520551, -16.650066 ], [ 123.506591, -16.643146 ], [ 123.573871, -16.625236 ], [ 123.555651, -16.612606 ], [ 123.572451, -16.608006 ], [ 123.563031, -16.600806 ], [ 123.563381, -16.588255 ], [ 123.581141, -16.594516 ], [ 123.588392, -16.582825 ], [ 123.602002, -16.582145 ], [ 123.589242, -16.567454 ], [ 123.619432, -16.573783 ], [ 123.615142, -16.554332 ], [ 123.588582, -16.538302 ], [ 123.578622, -16.549843 ], [ 123.526052, -16.544414 ], [ 123.520752, -16.548174 ], [ 123.533852, -16.550474 ], [ 123.542202, -16.572025 ], [ 123.517742, -16.566135 ], [ 123.511602, -16.597756 ], [ 123.494272, -16.570805 ], [ 123.498082, -16.565075 ], [ 123.513442, -16.568415 ], [ 123.503112, -16.566025 ], [ 123.491002, -16.546015 ], [ 123.463692, -16.534805 ], [ 123.460392, -16.524605 ], [ 123.468072, -16.518225 ], [ 123.428532, -16.511196 ], [ 123.428542, -16.498866 ], [ 123.442233, -16.500465 ], [ 123.431082, -16.502966 ], [ 123.445302, -16.509875 ], [ 123.496582, -16.514535 ], [ 123.492952, -16.501725 ], [ 123.502072, -16.504064 ], [ 123.495132, -16.494055 ], [ 123.472503, -16.484015 ], [ 123.469553, -16.475055 ], [ 123.461443, -16.477015 ], [ 123.473462, -16.470005 ], [ 123.544012, -16.504553 ], [ 123.534132, -16.508644 ], [ 123.546352, -16.504233 ], [ 123.594543, -16.525902 ], [ 123.584313, -16.517452 ], [ 123.643023, -16.530040 ], [ 123.637033, -16.518010 ], [ 123.607623, -16.504871 ], [ 123.588483, -16.510472 ], [ 123.582963, -16.498562 ], [ 123.602723, -16.490701 ], [ 123.625213, -16.490440 ], [ 123.632873, -16.498639 ], [ 123.662934, -16.491090 ], [ 123.648273, -16.479889 ], [ 123.651363, -16.474949 ], [ 123.619823, -16.464731 ], [ 123.599233, -16.448731 ], [ 123.568233, -16.445533 ], [ 123.542982, -16.427224 ], [ 123.505342, -16.419995 ], [ 123.497942, -16.409865 ], [ 123.502772, -16.407085 ], [ 123.582213, -16.427682 ], [ 123.547842, -16.408504 ], [ 123.563072, -16.407953 ], [ 123.511242, -16.391335 ], [ 123.518632, -16.389254 ], [ 123.509122, -16.380235 ], [ 123.535882, -16.397994 ], [ 123.567482, -16.399853 ], [ 123.556682, -16.403153 ], [ 123.571732, -16.408373 ], [ 123.571922, -16.400803 ], [ 123.597992, -16.405662 ], [ 123.605162, -16.415552 ], [ 123.591802, -16.417132 ], [ 123.607993, -16.425752 ], [ 123.621393, -16.429971 ], [ 123.629572, -16.422992 ], [ 123.665523, -16.436630 ], [ 123.676563, -16.433560 ], [ 123.671683, -16.428321 ], [ 123.681483, -16.432690 ], [ 123.697213, -16.414851 ], [ 123.679752, -16.416171 ], [ 123.688282, -16.404832 ], [ 123.647942, -16.385393 ], [ 123.629232, -16.356753 ], [ 123.658682, -16.362873 ], [ 123.651362, -16.369483 ], [ 123.663532, -16.383373 ], [ 123.673022, -16.383112 ], [ 123.662962, -16.367993 ], [ 123.681402, -16.375382 ], [ 123.716902, -16.372392 ], [ 123.698871, -16.359133 ], [ 123.710621, -16.354033 ], [ 123.700111, -16.351003 ], [ 123.697421, -16.337533 ], [ 123.679991, -16.335583 ], [ 123.662391, -16.313513 ], [ 123.640321, -16.308693 ], [ 123.627141, -16.290494 ], [ 123.611370, -16.287084 ], [ 123.624441, -16.317263 ], [ 123.593361, -16.311233 ], [ 123.598751, -16.322803 ], [ 123.550201, -16.283154 ], [ 123.549571, -16.262805 ], [ 123.566061, -16.276294 ], [ 123.582130, -16.272024 ], [ 123.583880, -16.260614 ], [ 123.599290, -16.264084 ], [ 123.576061, -16.245294 ], [ 123.616630, -16.261804 ], [ 123.603510, -16.250954 ], [ 123.609660, -16.243774 ], [ 123.590900, -16.247684 ], [ 123.580100, -16.239224 ], [ 123.601920, -16.232404 ], [ 123.586550, -16.224924 ], [ 123.582250, -16.233704 ], [ 123.563700, -16.216245 ], [ 123.601120, -16.216364 ], [ 123.581690, -16.205884 ], [ 123.563870, -16.210365 ], [ 123.572460, -16.192125 ], [ 123.556690, -16.177745 ], [ 123.569260, -16.172315 ], [ 123.570700, -16.180805 ], [ 123.584180, -16.164424 ], [ 123.613340, -16.160494 ], [ 123.635770, -16.176164 ], [ 123.620430, -16.157694 ], [ 123.655260, -16.168304 ], [ 123.659840, -16.153424 ], [ 123.675750, -16.163214 ], [ 123.665350, -16.151204 ], [ 123.683460, -16.153614 ], [ 123.679770, -16.160594 ], [ 123.693420, -16.151104 ], [ 123.696830, -16.162244 ], [ 123.689840, -16.160004 ], [ 123.696040, -16.173274 ], [ 123.700980, -16.169474 ], [ 123.701410, -16.190264 ], [ 123.702140, -16.171174 ], [ 123.713630, -16.167543 ], [ 123.703110, -16.153894 ], [ 123.708970, -16.152243 ], [ 123.723430, -16.170893 ], [ 123.713160, -16.154083 ], [ 123.728460, -16.156813 ], [ 123.703089, -16.128683 ], [ 123.726609, -16.140513 ], [ 123.737900, -16.160613 ], [ 123.741819, -16.153523 ], [ 123.747239, -16.162773 ], [ 123.750909, -16.157443 ], [ 123.770559, -16.170593 ], [ 123.790550, -16.200473 ], [ 123.803160, -16.203513 ], [ 123.796800, -16.209233 ], [ 123.806650, -16.206143 ], [ 123.814610, -16.219653 ], [ 123.800370, -16.216153 ], [ 123.798560, -16.222923 ], [ 123.788610, -16.209503 ], [ 123.789070, -16.223643 ], [ 123.771590, -16.216153 ], [ 123.775690, -16.228843 ], [ 123.785020, -16.233443 ], [ 123.788330, -16.228263 ], [ 123.795030, -16.238833 ], [ 123.796940, -16.263033 ], [ 123.791090, -16.263553 ], [ 123.783300, -16.243033 ], [ 123.783490, -16.262143 ], [ 123.777140, -16.251803 ], [ 123.769470, -16.259543 ], [ 123.742960, -16.253123 ], [ 123.740651, -16.263273 ], [ 123.778031, -16.285833 ], [ 123.782711, -16.297653 ], [ 123.783191, -16.284063 ], [ 123.795821, -16.299763 ], [ 123.784441, -16.303063 ], [ 123.796371, -16.316123 ], [ 123.810051, -16.320673 ], [ 123.799531, -16.303973 ], [ 123.825361, -16.322823 ], [ 123.842971, -16.326223 ], [ 123.835221, -16.319613 ], [ 123.843921, -16.315043 ], [ 123.865940, -16.327873 ], [ 123.856671, -16.330173 ], [ 123.858461, -16.340583 ], [ 123.864591, -16.336113 ], [ 123.860141, -16.350323 ], [ 123.867621, -16.351733 ], [ 123.865471, -16.342443 ], [ 123.876441, -16.347053 ], [ 123.878721, -16.355203 ], [ 123.865791, -16.362233 ], [ 123.878831, -16.371253 ], [ 123.876081, -16.377674 ], [ 123.851431, -16.371734 ], [ 123.836461, -16.354373 ], [ 123.850571, -16.376474 ], [ 123.842031, -16.382834 ], [ 123.854090, -16.435165 ], [ 123.871100, -16.447055 ], [ 123.867030, -16.412874 ], [ 123.883040, -16.416724 ], [ 123.888370, -16.409534 ], [ 123.899970, -16.422833 ], [ 123.889541, -16.394503 ], [ 123.899381, -16.392203 ], [ 123.895031, -16.365043 ], [ 123.884350, -16.353663 ], [ 123.908970, -16.362923 ], [ 123.885720, -16.342823 ], [ 123.917020, -16.352203 ], [ 123.892810, -16.333713 ], [ 123.883800, -16.304033 ], [ 123.895360, -16.307393 ], [ 123.905800, -16.335163 ], [ 123.941310, -16.359833 ], [ 123.975710, -16.378943 ], [ 123.983840, -16.379503 ], [ 123.987590, -16.370433 ], [ 123.977280, -16.340413 ], [ 123.955150, -16.325003 ], [ 123.949330, -16.304383 ], [ 123.933580, -16.297723 ], [ 123.960979, -16.279823 ], [ 124.000079, -16.291832 ], [ 123.993739, -16.281402 ], [ 123.961179, -16.268633 ], [ 123.963819, -16.260183 ], [ 123.953369, -16.264743 ], [ 123.950239, -16.260533 ], [ 123.962469, -16.252823 ], [ 123.950729, -16.257713 ], [ 123.945749, -16.250903 ], [ 123.951989, -16.246193 ], [ 123.941669, -16.249173 ], [ 123.925899, -16.229623 ], [ 123.915949, -16.231473 ], [ 123.909909, -16.210293 ], [ 123.939909, -16.233563 ], [ 123.972119, -16.245312 ], [ 123.970069, -16.253662 ], [ 123.979929, -16.248302 ], [ 123.995519, -16.261632 ], [ 124.002819, -16.254562 ], [ 123.999819, -16.264722 ], [ 124.009939, -16.257442 ], [ 124.017819, -16.268342 ], [ 124.014949, -16.259392 ], [ 124.026209, -16.255742 ], [ 124.042379, -16.268952 ], [ 124.041969, -16.278332 ], [ 124.052429, -16.271962 ], [ 124.068258, -16.284152 ], [ 124.056988, -16.271422 ], [ 124.075478, -16.270972 ], [ 124.104808, -16.277832 ], [ 124.101428, -16.285392 ], [ 124.107838, -16.278642 ], [ 124.124448, -16.280432 ], [ 124.124538, -16.288902 ], [ 124.179728, -16.309581 ], [ 124.175048, -16.328211 ], [ 124.194858, -16.342561 ], [ 124.185658, -16.352681 ], [ 124.194648, -16.356571 ], [ 124.193538, -16.366401 ], [ 124.199308, -16.360561 ], [ 124.196978, -16.377041 ], [ 124.199698, -16.372541 ], [ 124.205838, -16.383881 ], [ 124.195858, -16.389021 ], [ 124.204878, -16.386921 ], [ 124.210088, -16.397011 ], [ 124.201848, -16.404761 ], [ 124.211488, -16.398491 ], [ 124.222718, -16.418441 ], [ 124.256728, -16.409591 ], [ 124.264078, -16.413811 ], [ 124.261098, -16.419421 ], [ 124.282927, -16.414481 ], [ 124.294697, -16.423921 ], [ 124.300137, -16.414911 ], [ 124.311227, -16.420161 ], [ 124.324957, -16.414921 ], [ 124.322697, -16.421461 ], [ 124.334247, -16.428531 ], [ 124.331847, -16.439481 ], [ 124.315098, -16.441541 ], [ 124.322198, -16.448811 ], [ 124.308098, -16.455421 ], [ 124.319158, -16.468691 ], [ 124.332338, -16.458471 ], [ 124.344978, -16.465571 ], [ 124.353438, -16.454171 ], [ 124.363677, -16.458231 ], [ 124.361077, -16.448671 ], [ 124.373397, -16.442741 ], [ 124.390137, -16.445191 ], [ 124.390297, -16.458981 ], [ 124.407297, -16.478611 ], [ 124.391618, -16.504581 ], [ 124.400878, -16.497341 ], [ 124.405888, -16.503581 ], [ 124.399068, -16.506421 ], [ 124.415218, -16.509951 ], [ 124.407528, -16.525511 ], [ 124.392268, -16.533011 ], [ 124.406438, -16.533871 ], [ 124.410298, -16.543251 ], [ 124.426248, -16.531701 ], [ 124.427598, -16.517921 ], [ 124.435528, -16.525531 ], [ 124.429807, -16.498491 ], [ 124.441167, -16.497531 ], [ 124.442637, -16.508911 ], [ 124.444657, -16.502741 ], [ 124.449367, -16.506741 ], [ 124.443527, -16.494941 ], [ 124.449237, -16.501181 ], [ 124.448047, -16.496081 ], [ 124.468217, -16.498551 ], [ 124.440067, -16.482831 ], [ 124.441377, -16.475411 ], [ 124.419097, -16.485221 ], [ 124.402777, -16.469661 ], [ 124.401897, -16.429011 ], [ 124.388797, -16.415221 ], [ 124.346447, -16.424751 ], [ 124.336527, -16.418821 ], [ 124.344267, -16.416381 ], [ 124.348867, -16.389161 ], [ 124.365657, -16.378731 ], [ 124.387487, -16.345620 ], [ 124.402547, -16.352240 ], [ 124.407377, -16.373290 ], [ 124.426237, -16.366820 ], [ 124.431257, -16.394080 ], [ 124.449537, -16.388620 ], [ 124.449227, -16.410910 ], [ 124.494416, -16.404300 ], [ 124.494537, -16.411680 ], [ 124.501276, -16.400800 ], [ 124.513646, -16.408560 ], [ 124.599746, -16.414300 ], [ 124.745415, -16.389979 ], [ 124.840514, -16.434320 ], [ 124.917184, -16.420818 ], [ 124.922285, -16.391137 ], [ 124.947665, -16.393327 ], [ 124.953335, -16.371327 ], [ 124.943945, -16.383957 ], [ 124.917735, -16.388077 ], [ 124.901265, -16.416048 ], [ 124.881884, -16.408779 ], [ 124.874394, -16.416219 ], [ 124.830524, -16.409070 ], [ 124.814465, -16.416409 ], [ 124.787665, -16.385858 ], [ 124.725195, -16.372199 ], [ 124.715185, -16.355839 ], [ 124.693485, -16.344719 ], [ 124.673426, -16.350389 ], [ 124.570956, -16.329290 ], [ 124.506596, -16.342850 ], [ 124.480476, -16.356440 ], [ 124.477586, -16.344970 ], [ 124.464286, -16.341230 ], [ 124.457436, -16.352840 ], [ 124.424167, -16.359580 ], [ 124.411657, -16.357260 ], [ 124.405937, -16.334210 ], [ 124.394547, -16.338530 ], [ 124.410707, -16.293630 ], [ 124.402947, -16.298110 ], [ 124.385157, -16.276100 ], [ 124.398967, -16.274020 ], [ 124.407867, -16.250670 ], [ 124.402667, -16.237990 ], [ 124.378747, -16.227020 ], [ 124.379037, -16.216630 ], [ 124.400167, -16.201700 ], [ 124.388757, -16.190910 ], [ 124.400967, -16.182720 ], [ 124.398577, -16.169479 ], [ 124.427696, -16.182809 ], [ 124.434656, -16.178809 ], [ 124.449676, -16.122029 ], [ 124.443286, -16.113529 ], [ 124.448916, -16.110279 ], [ 124.444346, -16.065389 ], [ 124.453276, -16.078429 ], [ 124.462736, -16.079479 ], [ 124.464066, -16.071809 ], [ 124.477236, -16.078539 ], [ 124.479966, -16.094139 ], [ 124.458426, -16.102519 ], [ 124.486616, -16.122199 ], [ 124.514136, -16.164669 ], [ 124.517026, -16.173599 ], [ 124.501436, -16.182689 ], [ 124.501496, -16.189239 ], [ 124.516776, -16.177439 ], [ 124.508166, -16.206029 ], [ 124.518836, -16.178819 ], [ 124.526396, -16.194759 ], [ 124.525136, -16.188199 ], [ 124.532616, -16.189359 ], [ 124.525406, -16.181199 ], [ 124.536686, -16.184239 ], [ 124.526976, -16.162009 ], [ 124.541436, -16.157619 ], [ 124.560716, -16.119458 ], [ 124.599256, -16.127398 ], [ 124.646945, -16.098108 ], [ 124.634105, -16.091848 ], [ 124.622976, -16.099708 ], [ 124.618106, -16.089758 ], [ 124.607146, -16.113428 ], [ 124.592446, -16.116078 ], [ 124.588116, -16.109518 ], [ 124.580536, -16.023228 ], [ 124.595486, -16.027418 ], [ 124.579456, -16.000528 ], [ 124.591275, -15.997678 ], [ 124.588885, -15.973497 ], [ 124.615185, -15.983727 ], [ 124.619885, -15.996267 ], [ 124.616235, -15.982487 ], [ 124.637135, -15.984137 ], [ 124.634041, -15.998570 ], [ 124.642635, -15.988417 ], [ 124.639015, -15.980897 ], [ 124.605575, -15.969967 ], [ 124.615545, -15.964507 ], [ 124.598445, -15.967607 ], [ 124.596865, -15.942977 ], [ 124.605985, -15.944427 ], [ 124.610495, -15.927357 ], [ 124.626005, -15.920887 ], [ 124.616065, -15.912997 ], [ 124.621185, -15.906097 ], [ 124.605295, -15.898437 ], [ 124.607845, -15.891317 ], [ 124.629415, -15.881557 ], [ 124.654555, -15.853597 ], [ 124.668465, -15.862727 ], [ 124.681575, -15.888916 ], [ 124.686845, -15.881886 ], [ 124.677845, -15.877276 ], [ 124.675825, -15.862816 ], [ 124.686535, -15.856586 ], [ 124.682005, -15.849516 ], [ 124.711935, -15.839466 ], [ 124.704515, -15.814056 ], [ 124.741585, -15.822276 ], [ 124.700815, -15.784466 ], [ 124.704275, -15.768976 ], [ 124.719004, -15.770066 ], [ 124.709155, -15.762296 ], [ 124.702985, -15.766496 ], [ 124.704344, -15.750216 ], [ 124.701695, -15.763896 ], [ 124.696434, -15.759046 ], [ 124.700775, -15.767746 ], [ 124.691195, -15.765166 ], [ 124.697865, -15.769216 ], [ 124.693585, -15.783006 ], [ 124.675385, -15.784746 ], [ 124.678965, -15.769706 ], [ 124.704784, -15.741066 ], [ 124.688694, -15.745626 ], [ 124.660445, -15.781617 ], [ 124.633865, -15.790477 ], [ 124.632785, -15.778957 ], [ 124.631765, -15.790487 ], [ 124.625685, -15.786087 ], [ 124.629485, -15.795637 ], [ 124.607895, -15.810867 ], [ 124.572015, -15.861227 ], [ 124.531746, -15.957318 ], [ 124.520326, -15.972368 ], [ 124.513546, -15.968078 ], [ 124.516376, -15.979718 ], [ 124.498596, -15.998068 ], [ 124.490246, -15.987488 ], [ 124.492126, -15.975498 ], [ 124.498076, -15.977248 ], [ 124.491966, -15.959128 ], [ 124.497006, -15.943248 ], [ 124.508266, -15.946368 ], [ 124.512456, -15.934418 ], [ 124.506116, -15.927868 ], [ 124.499316, -15.935708 ], [ 124.498016, -15.928318 ], [ 124.492426, -15.935968 ], [ 124.487306, -15.920408 ], [ 124.476696, -15.941578 ], [ 124.480476, -15.896948 ], [ 124.474886, -15.885678 ], [ 124.478906, -15.893378 ], [ 124.499406, -15.889778 ], [ 124.483656, -15.889818 ], [ 124.489946, -15.886058 ], [ 124.475166, -15.873708 ], [ 124.484256, -15.866628 ], [ 124.475256, -15.868398 ], [ 124.477616, -15.863378 ], [ 124.460946, -15.854118 ], [ 124.459346, -15.817708 ], [ 124.476646, -15.820258 ], [ 124.460276, -15.816018 ], [ 124.461202, -15.802971 ], [ 124.443376, -15.809198 ], [ 124.458276, -15.811438 ], [ 124.451256, -15.831348 ], [ 124.444636, -15.829048 ], [ 124.439056, -15.870368 ], [ 124.429536, -15.867388 ], [ 124.424846, -15.847618 ], [ 124.417516, -15.876798 ], [ 124.409286, -15.863848 ], [ 124.410286, -15.805898 ], [ 124.385946, -15.717558 ], [ 124.395926, -15.731178 ], [ 124.407656, -15.720058 ], [ 124.423796, -15.732568 ], [ 124.419216, -15.723958 ], [ 124.437256, -15.711468 ], [ 124.416856, -15.720398 ], [ 124.411476, -15.715068 ], [ 124.417826, -15.711408 ], [ 124.409026, -15.710998 ], [ 124.397346, -15.726028 ], [ 124.402536, -15.698618 ], [ 124.393216, -15.677308 ], [ 124.386356, -15.672178 ], [ 124.375976, -15.680098 ], [ 124.368816, -15.671878 ], [ 124.379266, -15.660198 ], [ 124.385716, -15.669318 ], [ 124.390236, -15.662408 ], [ 124.402466, -15.685178 ], [ 124.412666, -15.681428 ], [ 124.414366, -15.637228 ], [ 124.421516, -15.667358 ], [ 124.430726, -15.673888 ], [ 124.429656, -15.664268 ], [ 124.443686, -15.669738 ], [ 124.444656, -15.654828 ], [ 124.457196, -15.656338 ], [ 124.436506, -15.643498 ], [ 124.433775, -15.623017 ], [ 124.450455, -15.602767 ], [ 124.452465, -15.616207 ], [ 124.482955, -15.618837 ], [ 124.500625, -15.636687 ], [ 124.488215, -15.621527 ], [ 124.497125, -15.615687 ], [ 124.454365, -15.613547 ], [ 124.459585, -15.608557 ], [ 124.453875, -15.591877 ], [ 124.450685, -15.601137 ], [ 124.433465, -15.608447 ], [ 124.430595, -15.588087 ], [ 124.409575, -15.609457 ], [ 124.416035, -15.620168 ], [ 124.404585, -15.615128 ], [ 124.430035, -15.574467 ], [ 124.424655, -15.559357 ], [ 124.430075, -15.560787 ], [ 124.417525, -15.549247 ], [ 124.425115, -15.540787 ], [ 124.436315, -15.546987 ], [ 124.446425, -15.528717 ], [ 124.458595, -15.539507 ], [ 124.461995, -15.532067 ], [ 124.465785, -15.536897 ], [ 124.461695, -15.511707 ], [ 124.470145, -15.506397 ], [ 124.472685, -15.512367 ], [ 124.473045, -15.503557 ], [ 124.486525, -15.497277 ], [ 124.496185, -15.516547 ], [ 124.510425, -15.525127 ], [ 124.500265, -15.516417 ], [ 124.505805, -15.504087 ], [ 124.498575, -15.505807 ], [ 124.492535, -15.486177 ], [ 124.468615, -15.504257 ], [ 124.455825, -15.508487 ], [ 124.461595, -15.498187 ], [ 124.446375, -15.506277 ], [ 124.476645, -15.477897 ], [ 124.498065, -15.474967 ], [ 124.507385, -15.483737 ], [ 124.508594, -15.470327 ], [ 124.518254, -15.468737 ], [ 124.521494, -15.485127 ], [ 124.529804, -15.477197 ], [ 124.528974, -15.484437 ], [ 124.551694, -15.490806 ], [ 124.554674, -15.502796 ], [ 124.579944, -15.499606 ], [ 124.580334, -15.520056 ], [ 124.595824, -15.523406 ], [ 124.599064, -15.506476 ], [ 124.617474, -15.503846 ], [ 124.620644, -15.514456 ], [ 124.614444, -15.519576 ], [ 124.628764, -15.525666 ], [ 124.632144, -15.516306 ], [ 124.624364, -15.512756 ], [ 124.638794, -15.503916 ], [ 124.621544, -15.500666 ], [ 124.626384, -15.472426 ], [ 124.617854, -15.466096 ], [ 124.628214, -15.462806 ], [ 124.633404, -15.436696 ], [ 124.645724, -15.424696 ], [ 124.653784, -15.435186 ], [ 124.645674, -15.434136 ], [ 124.642194, -15.463116 ], [ 124.667524, -15.483746 ], [ 124.677064, -15.478196 ], [ 124.674194, -15.498086 ], [ 124.679864, -15.480336 ], [ 124.686104, -15.480916 ], [ 124.682054, -15.473216 ], [ 124.690774, -15.468026 ], [ 124.686664, -15.455806 ], [ 124.676554, -15.462826 ], [ 124.671644, -15.452896 ], [ 124.668904, -15.428606 ], [ 124.687084, -15.413716 ], [ 124.678184, -15.411636 ], [ 124.676174, -15.400686 ], [ 124.723743, -15.376745 ], [ 124.727203, -15.363405 ], [ 124.744773, -15.361785 ], [ 124.726643, -15.360495 ], [ 124.723483, -15.352805 ], [ 124.704723, -15.359836 ], [ 124.705333, -15.343555 ], [ 124.688763, -15.357496 ], [ 124.666774, -15.361946 ], [ 124.661984, -15.354946 ], [ 124.662084, -15.347946 ], [ 124.672353, -15.346246 ], [ 124.656463, -15.336876 ], [ 124.661913, -15.324886 ], [ 124.666473, -15.334256 ], [ 124.674243, -15.324526 ], [ 124.691033, -15.333196 ], [ 124.707193, -15.320805 ], [ 124.692483, -15.309125 ], [ 124.696883, -15.296465 ], [ 124.667313, -15.296636 ], [ 124.679283, -15.288586 ], [ 124.672743, -15.278996 ], [ 124.678893, -15.270166 ], [ 124.672843, -15.269046 ], [ 124.674673, -15.255036 ], [ 124.681763, -15.254006 ], [ 124.678763, -15.264066 ], [ 124.701373, -15.278375 ], [ 124.705033, -15.253395 ], [ 124.770573, -15.302065 ], [ 124.761793, -15.326155 ], [ 124.736123, -15.343165 ], [ 124.753253, -15.354425 ], [ 124.759363, -15.333275 ], [ 124.783853, -15.311885 ], [ 124.783233, -15.294465 ], [ 124.810393, -15.308755 ], [ 124.817193, -15.323535 ], [ 124.831293, -15.325915 ], [ 124.836983, -15.324725 ], [ 124.822163, -15.311885 ], [ 124.846793, -15.299055 ], [ 124.836373, -15.316365 ], [ 124.847703, -15.328535 ], [ 124.849473, -15.335425 ], [ 124.840523, -15.340645 ], [ 124.847663, -15.353175 ], [ 124.860933, -15.351775 ], [ 124.862333, -15.359115 ], [ 124.875693, -15.343495 ], [ 124.888623, -15.356435 ], [ 124.907062, -15.360235 ], [ 124.915252, -15.373315 ], [ 124.932372, -15.374735 ], [ 124.937082, -15.389855 ], [ 124.925322, -15.388875 ], [ 124.926742, -15.393845 ], [ 124.945192, -15.395785 ], [ 124.940572, -15.383625 ], [ 124.945912, -15.383725 ], [ 124.971323, -15.420935 ], [ 124.978842, -15.409605 ], [ 124.979942, -15.421805 ], [ 125.003773, -15.440144 ], [ 125.002983, -15.448394 ], [ 124.984083, -15.469585 ], [ 124.952193, -15.475225 ], [ 124.958033, -15.479725 ], [ 124.952943, -15.489225 ], [ 124.960243, -15.479945 ], [ 124.984463, -15.476015 ], [ 124.961793, -15.488745 ], [ 124.973223, -15.491195 ], [ 124.981343, -15.483485 ], [ 124.981743, -15.495005 ], [ 124.982983, -15.484275 ], [ 124.996233, -15.476995 ], [ 124.995723, -15.495635 ], [ 124.986903, -15.505835 ], [ 124.995973, -15.500835 ], [ 124.999513, -15.510445 ], [ 124.997823, -15.496305 ], [ 125.001393, -15.503625 ], [ 125.010163, -15.496494 ], [ 124.999793, -15.495054 ], [ 125.004033, -15.476634 ], [ 125.009493, -15.473224 ], [ 125.011283, -15.480144 ], [ 125.018333, -15.471494 ], [ 125.025963, -15.485704 ], [ 125.017603, -15.505324 ], [ 125.022903, -15.505934 ], [ 125.015273, -15.519864 ], [ 125.002103, -15.517755 ], [ 125.014113, -15.521784 ], [ 125.004593, -15.528485 ], [ 125.011343, -15.528575 ], [ 125.017103, -15.544665 ], [ 125.013013, -15.530545 ], [ 125.017843, -15.522114 ], [ 125.025553, -15.525814 ], [ 125.022053, -15.514764 ], [ 125.026773, -15.511124 ], [ 125.029373, -15.522184 ], [ 125.030123, -15.513814 ], [ 125.033158, -15.516397 ], [ 125.030933, -15.504444 ], [ 125.039873, -15.497854 ], [ 125.044243, -15.511504 ], [ 125.045003, -15.497044 ], [ 125.054793, -15.498594 ], [ 125.041693, -15.486434 ], [ 125.046883, -15.473764 ], [ 125.052273, -15.482554 ], [ 125.049203, -15.472624 ], [ 125.062622, -15.460934 ], [ 125.088652, -15.463214 ], [ 125.123099, -15.484205 ], [ 125.121240, -15.491535 ], [ 125.137358, -15.495446 ], [ 125.140927, -15.509086 ], [ 125.174716, -15.534266 ], [ 125.202236, -15.543866 ], [ 125.225298, -15.572295 ], [ 125.291007, -15.604725 ], [ 125.305398, -15.622804 ], [ 125.421186, -15.696025 ], [ 125.300717, -15.613775 ], [ 125.276688, -15.588135 ], [ 125.287617, -15.583565 ], [ 125.271448, -15.588054 ], [ 125.254859, -15.580894 ], [ 125.225236, -15.552796 ], [ 125.225865, -15.540026 ], [ 125.217086, -15.553396 ], [ 125.188466, -15.521966 ], [ 125.146096, -15.497106 ], [ 125.141497, -15.481946 ], [ 125.101922, -15.463394 ], [ 125.081702, -15.446414 ], [ 125.087702, -15.441514 ], [ 125.070032, -15.440244 ], [ 125.082532, -15.412294 ], [ 125.084312, -15.377714 ], [ 125.095002, -15.371304 ], [ 125.088822, -15.369454 ], [ 125.090851, -15.354984 ], [ 125.111261, -15.338864 ], [ 125.137341, -15.339444 ], [ 125.140451, -15.333104 ], [ 125.143821, -15.347914 ], [ 125.144531, -15.333874 ], [ 125.152091, -15.332494 ], [ 125.138811, -15.331304 ], [ 125.144261, -15.326534 ], [ 125.156011, -15.324564 ], [ 125.159121, -15.335264 ], [ 125.164091, -15.330574 ], [ 125.156381, -15.323464 ], [ 125.162971, -15.321034 ], [ 125.155061, -15.321404 ], [ 125.162561, -15.316964 ], [ 125.160361, -15.310094 ], [ 125.154771, -15.317424 ], [ 125.157741, -15.306144 ], [ 125.152511, -15.322434 ], [ 125.146541, -15.314114 ], [ 125.149591, -15.322104 ], [ 125.143451, -15.317884 ], [ 125.130531, -15.327834 ], [ 125.136771, -15.316854 ], [ 125.128651, -15.323994 ], [ 125.124781, -15.316554 ], [ 125.126571, -15.326604 ], [ 125.120651, -15.328774 ], [ 125.117001, -15.319294 ], [ 125.118781, -15.328894 ], [ 125.088561, -15.337704 ], [ 125.098371, -15.318464 ], [ 125.110131, -15.320234 ], [ 125.110341, -15.314584 ], [ 125.099171, -15.314174 ], [ 125.115521, -15.302024 ], [ 125.101911, -15.302634 ], [ 125.110011, -15.292444 ], [ 125.102481, -15.299354 ], [ 125.101861, -15.290434 ], [ 125.107671, -15.263074 ], [ 125.118921, -15.255614 ], [ 125.105101, -15.261394 ], [ 125.100321, -15.285924 ], [ 125.094301, -15.265044 ], [ 125.088141, -15.266764 ], [ 125.090001, -15.247804 ], [ 125.086621, -15.264394 ], [ 125.077451, -15.247674 ], [ 125.073421, -15.253924 ], [ 125.081001, -15.255604 ], [ 125.095661, -15.283114 ], [ 125.094991, -15.289674 ], [ 125.086821, -15.283764 ], [ 125.087541, -15.290154 ], [ 125.079761, -15.290854 ], [ 125.094301, -15.292044 ], [ 125.081251, -15.314354 ], [ 125.065431, -15.316214 ], [ 125.052142, -15.302394 ], [ 125.039642, -15.301394 ], [ 125.036012, -15.295534 ], [ 125.044951, -15.283864 ], [ 125.034942, -15.288194 ], [ 125.030672, -15.274794 ], [ 125.026372, -15.300314 ], [ 124.984202, -15.319974 ], [ 124.979122, -15.329394 ], [ 124.920082, -15.356465 ], [ 124.897912, -15.339925 ], [ 124.898232, -15.332125 ], [ 124.907792, -15.335035 ], [ 124.902412, -15.329635 ], [ 124.906782, -15.317425 ], [ 124.891472, -15.327745 ], [ 124.883052, -15.315905 ], [ 124.895232, -15.305355 ], [ 124.880122, -15.310485 ], [ 124.876132, -15.302025 ], [ 124.893842, -15.271805 ], [ 124.903252, -15.268955 ], [ 124.904642, -15.275725 ], [ 124.904602, -15.255504 ], [ 124.912982, -15.256384 ], [ 124.914052, -15.271194 ], [ 124.922812, -15.270484 ], [ 124.918802, -15.254564 ], [ 124.931922, -15.247404 ], [ 124.918652, -15.245294 ], [ 124.933372, -15.231134 ], [ 124.927432, -15.229224 ], [ 124.951502, -15.225084 ], [ 124.969492, -15.212154 ], [ 124.979172, -15.219914 ], [ 124.972102, -15.227244 ], [ 124.981512, -15.224204 ], [ 125.005642, -15.241934 ], [ 125.004551, -15.224464 ], [ 125.019861, -15.213574 ], [ 125.021981, -15.218534 ], [ 125.028521, -15.197044 ], [ 125.046801, -15.188714 ], [ 125.041481, -15.178584 ], [ 125.060211, -15.180784 ], [ 125.056031, -15.164434 ], [ 125.048641, -15.166364 ], [ 125.045811, -15.157674 ], [ 125.020161, -15.169504 ], [ 125.022781, -15.156164 ], [ 125.013821, -15.154504 ], [ 125.005831, -15.163344 ], [ 125.014251, -15.175854 ], [ 124.992821, -15.197844 ], [ 124.981971, -15.190984 ], [ 124.994911, -15.162004 ], [ 124.984821, -15.175954 ], [ 124.985371, -15.166124 ], [ 124.976101, -15.176314 ], [ 124.978281, -15.168174 ], [ 124.970141, -15.164254 ], [ 124.971241, -15.182994 ], [ 124.961052, -15.195574 ], [ 124.971102, -15.208304 ], [ 124.939892, -15.197104 ], [ 124.935172, -15.187414 ], [ 124.942822, -15.205114 ], [ 124.935902, -15.209734 ], [ 124.943782, -15.213134 ], [ 124.923002, -15.225734 ], [ 124.917152, -15.215134 ], [ 124.917542, -15.228244 ], [ 124.900982, -15.240224 ], [ 124.909902, -15.238994 ], [ 124.907942, -15.245664 ], [ 124.875772, -15.261915 ], [ 124.891822, -15.230334 ], [ 124.868842, -15.243635 ], [ 124.867492, -15.221605 ], [ 124.881142, -15.208434 ], [ 124.867672, -15.204085 ], [ 124.864272, -15.194945 ], [ 124.896372, -15.173444 ], [ 124.854812, -15.183565 ], [ 124.861542, -15.169044 ], [ 124.847462, -15.177935 ], [ 124.844662, -15.173195 ], [ 124.837712, -15.183155 ], [ 124.845792, -15.162704 ], [ 124.833912, -15.157965 ], [ 124.868992, -15.144884 ], [ 124.870682, -15.126234 ], [ 124.877902, -15.130614 ], [ 124.893082, -15.114314 ], [ 124.906811, -15.115854 ], [ 124.910381, -15.106804 ], [ 124.922051, -15.116714 ], [ 124.926441, -15.108684 ], [ 124.943241, -15.125574 ], [ 124.951681, -15.113234 ], [ 124.949461, -15.123544 ], [ 124.961471, -15.118744 ], [ 124.974441, -15.135314 ], [ 124.981151, -15.126474 ], [ 124.985051, -15.133284 ], [ 124.987731, -15.114254 ], [ 124.997071, -15.122814 ], [ 124.997581, -15.104844 ], [ 125.008631, -15.104694 ], [ 125.011141, -15.093504 ], [ 125.029861, -15.113284 ], [ 125.047701, -15.077114 ], [ 125.029411, -15.066214 ], [ 125.035511, -15.051964 ], [ 125.020271, -15.047044 ], [ 125.026201, -15.031344 ], [ 125.014181, -15.035084 ], [ 125.023540, -15.022064 ], [ 125.018950, -15.007954 ], [ 125.025170, -14.992374 ], [ 125.011970, -14.983164 ], [ 125.028000, -14.984254 ], [ 125.033060, -14.996014 ], [ 125.044620, -14.984444 ], [ 125.055650, -14.999784 ], [ 125.054480, -14.988094 ], [ 125.074290, -14.975763 ], [ 125.074720, -14.984233 ], [ 125.092830, -14.988153 ], [ 125.059010, -15.028274 ], [ 125.067320, -15.041464 ], [ 125.083470, -15.040613 ], [ 125.072370, -15.064904 ], [ 125.100800, -15.064473 ], [ 125.096550, -15.056263 ], [ 125.105520, -15.033183 ], [ 125.125670, -15.043503 ], [ 125.133410, -15.058953 ], [ 125.125620, -15.058983 ], [ 125.122050, -15.091643 ], [ 125.138470, -15.102933 ], [ 125.145020, -15.134713 ], [ 125.163240, -15.151363 ], [ 125.174300, -15.130073 ], [ 125.224260, -15.121173 ], [ 125.212490, -15.116363 ], [ 125.223400, -15.113043 ], [ 125.221980, -15.106273 ], [ 125.227010, -15.113823 ], [ 125.225450, -15.103433 ], [ 125.240530, -15.102513 ], [ 125.244450, -15.112953 ], [ 125.241960, -15.104263 ], [ 125.266000, -15.099983 ], [ 125.265040, -15.112673 ], [ 125.271020, -15.113733 ], [ 125.281100, -15.097543 ], [ 125.289720, -15.099653 ], [ 125.282300, -15.143623 ], [ 125.305860, -15.142163 ], [ 125.306790, -15.151633 ], [ 125.325340, -15.152463 ], [ 125.334930, -15.162923 ], [ 125.331580, -15.146453 ], [ 125.345979, -15.143103 ], [ 125.368199, -15.155863 ], [ 125.378299, -15.142613 ], [ 125.411869, -15.157572 ], [ 125.443089, -15.148722 ], [ 125.481329, -15.154802 ], [ 125.480176, -15.143002 ], [ 125.476659, -15.150472 ], [ 125.448139, -15.137622 ], [ 125.479907, -15.140257 ], [ 125.479299, -15.134032 ], [ 125.397089, -15.131702 ], [ 125.375949, -15.116982 ], [ 125.380459, -15.112322 ], [ 125.357649, -15.108373 ], [ 125.377529, -15.108842 ], [ 125.373079, -15.103322 ], [ 125.401919, -15.084662 ], [ 125.402149, -15.063762 ], [ 125.370129, -15.073742 ], [ 125.367399, -15.062462 ], [ 125.375479, -15.052712 ], [ 125.387009, -15.056492 ], [ 125.401919, -15.042532 ], [ 125.411479, -15.047452 ], [ 125.428438, -15.026812 ], [ 125.459278, -15.014902 ], [ 125.462448, -15.000202 ], [ 125.474788, -15.004772 ], [ 125.481598, -14.998582 ], [ 125.475118, -15.001492 ], [ 125.471498, -14.992512 ], [ 125.449898, -14.999932 ], [ 125.448429, -15.007052 ], [ 125.441378, -14.999442 ], [ 125.443938, -15.013852 ], [ 125.420979, -15.021652 ], [ 125.408979, -14.998582 ], [ 125.409369, -15.025102 ], [ 125.385939, -15.032552 ], [ 125.365369, -14.991422 ], [ 125.363489, -15.005782 ], [ 125.352929, -15.008882 ], [ 125.347199, -15.000892 ], [ 125.337329, -15.002632 ], [ 125.339509, -14.986812 ], [ 125.318749, -15.005873 ], [ 125.303589, -14.996303 ], [ 125.301659, -15.003353 ], [ 125.295459, -14.995933 ], [ 125.285599, -14.999193 ], [ 125.278089, -14.978823 ], [ 125.295989, -14.976633 ], [ 125.304639, -14.961642 ], [ 125.288589, -14.965993 ], [ 125.271199, -14.959593 ], [ 125.265069, -14.976143 ], [ 125.254389, -14.978403 ], [ 125.250369, -14.965523 ], [ 125.262409, -14.945913 ], [ 125.257649, -14.943753 ], [ 125.239579, -14.942323 ], [ 125.234219, -14.965343 ], [ 125.231559, -14.960593 ], [ 125.227699, -14.968933 ], [ 125.222109, -14.963673 ], [ 125.222459, -14.970493 ], [ 125.213719, -14.969813 ], [ 125.207809, -14.947173 ], [ 125.213589, -14.951833 ], [ 125.214899, -14.942803 ], [ 125.220569, -14.948583 ], [ 125.218789, -14.929273 ], [ 125.225759, -14.924003 ], [ 125.232979, -14.931573 ], [ 125.230709, -14.919133 ], [ 125.239259, -14.923253 ], [ 125.244539, -14.913953 ], [ 125.255039, -14.926583 ], [ 125.256299, -14.899833 ], [ 125.269899, -14.933283 ], [ 125.287209, -14.928732 ], [ 125.294689, -14.937972 ], [ 125.307689, -14.920222 ], [ 125.294619, -14.903582 ], [ 125.303349, -14.898192 ], [ 125.308079, -14.908702 ], [ 125.307089, -14.891202 ], [ 125.311399, -14.900052 ], [ 125.318919, -14.897002 ], [ 125.316739, -14.887622 ], [ 125.333978, -14.881312 ], [ 125.305039, -14.881492 ], [ 125.305659, -14.869632 ], [ 125.295889, -14.875282 ], [ 125.286669, -14.852972 ], [ 125.273949, -14.870092 ], [ 125.271689, -14.853712 ], [ 125.264099, -14.865422 ], [ 125.254279, -14.852522 ], [ 125.250949, -14.872263 ], [ 125.235519, -14.867573 ], [ 125.249119, -14.834542 ], [ 125.244139, -14.831702 ], [ 125.231739, -14.854463 ], [ 125.224569, -14.848003 ], [ 125.223559, -14.866613 ], [ 125.210099, -14.864883 ], [ 125.208909, -14.842863 ], [ 125.200539, -14.844073 ], [ 125.196869, -14.833333 ], [ 125.186169, -14.837353 ], [ 125.184119, -14.826953 ], [ 125.195269, -14.827563 ], [ 125.189499, -14.803773 ], [ 125.205169, -14.791023 ], [ 125.201709, -14.785133 ], [ 125.192979, -14.791203 ], [ 125.195479, -14.776193 ], [ 125.189429, -14.782683 ], [ 125.190029, -14.775383 ], [ 125.166789, -14.790513 ], [ 125.169699, -14.778803 ], [ 125.154659, -14.766543 ], [ 125.150789, -14.775103 ], [ 125.141429, -14.747673 ], [ 125.146709, -14.752173 ], [ 125.159799, -14.732123 ], [ 125.188979, -14.747033 ], [ 125.187739, -14.738673 ], [ 125.195288, -14.738372 ], [ 125.182908, -14.726913 ], [ 125.179848, -14.709853 ], [ 125.199248, -14.706542 ], [ 125.201138, -14.697972 ], [ 125.211478, -14.721712 ], [ 125.217468, -14.705712 ], [ 125.210558, -14.692252 ], [ 125.212858, -14.668662 ], [ 125.218438, -14.666872 ], [ 125.218748, -14.675232 ], [ 125.234358, -14.661182 ], [ 125.245648, -14.682222 ], [ 125.245558, -14.675562 ], [ 125.262108, -14.693082 ], [ 125.268238, -14.691002 ], [ 125.254288, -14.668482 ], [ 125.261008, -14.670652 ], [ 125.260828, -14.657782 ], [ 125.271388, -14.655222 ], [ 125.273688, -14.661332 ], [ 125.279288, -14.653672 ], [ 125.308418, -14.649942 ], [ 125.288448, -14.623222 ], [ 125.280348, -14.640212 ], [ 125.257406, -14.630754 ], [ 125.267378, -14.642792 ], [ 125.247968, -14.652992 ], [ 125.236098, -14.632812 ], [ 125.228338, -14.658452 ], [ 125.204228, -14.651462 ], [ 125.218878, -14.643842 ], [ 125.217988, -14.636682 ], [ 125.225558, -14.640832 ], [ 125.227768, -14.627512 ], [ 125.234988, -14.631122 ], [ 125.232118, -14.623082 ], [ 125.243828, -14.614362 ], [ 125.256529, -14.629695 ], [ 125.249018, -14.611132 ], [ 125.260868, -14.615552 ], [ 125.255378, -14.597692 ], [ 125.265497, -14.589492 ], [ 125.274497, -14.595092 ], [ 125.282477, -14.578602 ], [ 125.303577, -14.579582 ], [ 125.300407, -14.558232 ], [ 125.325707, -14.584412 ], [ 125.328237, -14.559242 ], [ 125.335667, -14.555772 ], [ 125.347587, -14.564732 ], [ 125.350097, -14.543852 ], [ 125.342577, -14.538972 ], [ 125.342057, -14.521583 ], [ 125.364136, -14.505743 ], [ 125.355047, -14.551771 ], [ 125.368927, -14.563561 ], [ 125.354587, -14.584062 ], [ 125.374667, -14.585501 ], [ 125.374447, -14.575771 ], [ 125.385837, -14.568241 ], [ 125.391607, -14.576161 ], [ 125.394427, -14.565111 ], [ 125.400087, -14.572811 ], [ 125.399597, -14.547181 ], [ 125.410267, -14.545631 ], [ 125.410657, -14.566631 ], [ 125.415187, -14.563941 ], [ 125.415487, -14.579181 ], [ 125.424977, -14.586431 ], [ 125.413447, -14.600511 ], [ 125.427247, -14.600781 ], [ 125.438227, -14.613791 ], [ 125.427157, -14.630582 ], [ 125.429947, -14.641492 ], [ 125.450027, -14.623762 ], [ 125.437247, -14.594601 ], [ 125.463416, -14.605291 ], [ 125.452366, -14.579181 ], [ 125.466636, -14.576061 ], [ 125.471196, -14.564451 ], [ 125.483426, -14.568031 ], [ 125.467386, -14.559241 ], [ 125.466526, -14.535531 ], [ 125.480456, -14.532192 ], [ 125.491386, -14.560332 ], [ 125.495646, -14.530434 ], [ 125.488606, -14.519234 ], [ 125.515286, -14.512984 ], [ 125.520306, -14.500245 ], [ 125.528766, -14.502753 ], [ 125.519936, -14.509164 ], [ 125.529546, -14.511893 ], [ 125.529056, -14.522282 ], [ 125.541376, -14.509891 ], [ 125.560606, -14.514799 ], [ 125.557786, -14.530709 ], [ 125.544676, -14.534960 ], [ 125.547995, -14.548409 ], [ 125.529916, -14.546101 ], [ 125.534786, -14.563911 ], [ 125.550415, -14.556540 ], [ 125.557345, -14.565930 ], [ 125.569426, -14.558280 ], [ 125.599326, -14.562640 ], [ 125.572466, -14.547679 ], [ 125.580975, -14.527829 ], [ 125.596486, -14.536559 ], [ 125.600125, -14.517499 ], [ 125.613705, -14.510638 ], [ 125.602375, -14.498308 ], [ 125.588215, -14.505729 ], [ 125.597975, -14.496718 ], [ 125.591035, -14.493659 ], [ 125.600655, -14.494019 ], [ 125.594484, -14.458782 ], [ 125.599454, -14.461622 ], [ 125.601264, -14.433523 ], [ 125.621944, -14.412914 ], [ 125.616884, -14.395855 ], [ 125.622704, -14.385715 ], [ 125.610414, -14.390425 ], [ 125.608014, -14.374955 ], [ 125.588564, -14.369935 ], [ 125.587904, -14.357856 ], [ 125.603694, -14.343566 ], [ 125.582784, -14.321836 ], [ 125.582253, -14.305357 ], [ 125.598783, -14.273786 ], [ 125.583923, -14.260127 ], [ 125.573683, -14.261647 ], [ 125.592142, -14.243746 ], [ 125.608253, -14.262376 ], [ 125.605922, -14.242996 ], [ 125.596212, -14.237326 ], [ 125.609042, -14.243676 ], [ 125.629212, -14.233576 ], [ 125.633382, -14.240246 ], [ 125.626292, -14.244856 ], [ 125.640962, -14.247506 ], [ 125.641522, -14.265886 ], [ 125.649142, -14.259596 ], [ 125.648562, -14.243426 ], [ 125.655072, -14.266816 ], [ 125.665032, -14.263116 ], [ 125.666713, -14.288186 ], [ 125.695303, -14.292425 ], [ 125.703273, -14.304065 ], [ 125.718123, -14.288635 ], [ 125.717913, -14.277455 ], [ 125.730063, -14.280985 ], [ 125.714523, -14.296635 ], [ 125.721573, -14.298465 ], [ 125.723753, -14.312235 ], [ 125.712684, -14.315156 ], [ 125.710864, -14.327676 ], [ 125.697204, -14.325386 ], [ 125.704594, -14.333646 ], [ 125.725694, -14.324545 ], [ 125.717564, -14.334116 ], [ 125.726354, -14.341815 ], [ 125.705854, -14.340977 ], [ 125.699584, -14.347627 ], [ 125.695464, -14.338767 ], [ 125.693454, -14.345807 ], [ 125.669514, -14.331757 ], [ 125.663374, -14.335537 ], [ 125.672954, -14.345197 ], [ 125.668294, -14.357267 ], [ 125.673864, -14.350957 ], [ 125.678024, -14.356727 ], [ 125.666304, -14.366966 ], [ 125.666134, -14.383836 ], [ 125.657274, -14.379206 ], [ 125.651544, -14.386005 ], [ 125.670704, -14.420364 ], [ 125.660844, -14.424744 ], [ 125.659294, -14.441673 ], [ 125.677584, -14.451981 ], [ 125.674995, -14.470029 ], [ 125.682415, -14.469369 ], [ 125.688726, -14.499406 ], [ 125.676255, -14.523458 ], [ 125.675275, -14.556720 ], [ 125.652015, -14.602050 ], [ 125.646906, -14.648196 ], [ 125.669335, -14.609220 ], [ 125.708916, -14.486577 ], [ 125.731015, -14.476989 ], [ 125.747165, -14.484740 ], [ 125.765385, -14.472240 ], [ 125.774405, -14.479710 ], [ 125.781145, -14.467760 ], [ 125.794595, -14.466420 ], [ 125.797984, -14.445320 ], [ 125.806095, -14.444320 ], [ 125.816165, -14.451670 ], [ 125.802565, -14.479080 ], [ 125.852075, -14.456690 ], [ 125.859125, -14.474980 ], [ 125.828055, -14.480920 ], [ 125.817205, -14.497590 ], [ 125.849884, -14.535910 ], [ 125.828664, -14.542770 ], [ 125.850194, -14.564020 ], [ 125.835584, -14.568060 ], [ 125.830574, -14.585090 ], [ 125.849264, -14.591680 ], [ 125.851414, -14.612131 ], [ 125.876234, -14.606260 ], [ 125.881294, -14.623330 ], [ 125.894764, -14.623090 ], [ 125.910034, -14.661590 ], [ 125.921304, -14.639820 ], [ 125.928484, -14.645810 ], [ 125.920994, -14.650920 ], [ 125.930556, -14.646090 ], [ 125.927334, -14.639710 ], [ 125.933824, -14.642650 ], [ 125.932689, -14.645013 ], [ 125.936734, -14.642970 ], [ 125.930514, -14.633170 ], [ 125.933034, -14.609250 ], [ 125.919144, -14.582810 ], [ 125.902694, -14.576490 ], [ 125.903864, -14.564420 ], [ 125.920684, -14.552100 ], [ 125.920584, -14.537240 ], [ 125.932514, -14.530610 ], [ 125.945674, -14.538730 ], [ 125.949224, -14.523500 ], [ 125.955594, -14.531290 ], [ 125.964754, -14.519230 ], [ 125.972524, -14.545740 ], [ 125.981893, -14.540460 ], [ 126.000293, -14.554990 ], [ 126.013863, -14.534170 ], [ 126.005733, -14.525030 ], [ 126.015463, -14.519480 ], [ 126.041913, -14.536720 ], [ 126.050933, -14.529640 ], [ 126.042223, -14.508710 ], [ 126.053453, -14.503950 ], [ 126.042893, -14.494360 ], [ 126.046333, -14.472220 ], [ 126.031503, -14.470550 ], [ 126.024763, -14.457800 ], [ 126.019604, -14.411380 ], [ 125.985464, -14.419530 ], [ 125.976674, -14.393300 ], [ 125.992424, -14.402570 ], [ 125.996134, -14.396370 ], [ 126.006154, -14.399770 ], [ 126.009843, -14.387790 ], [ 126.021753, -14.377610 ], [ 126.027903, -14.382000 ], [ 126.045812, -14.359160 ], [ 126.069332, -14.362279 ], [ 126.075451, -14.352209 ], [ 126.081902, -14.358909 ], [ 126.088431, -14.351209 ], [ 126.084231, -14.342819 ], [ 126.072891, -14.343749 ], [ 126.073901, -14.325669 ], [ 126.086411, -14.330619 ], [ 126.090221, -14.323149 ], [ 126.080491, -14.320909 ], [ 126.082891, -14.303509 ], [ 126.073041, -14.297769 ], [ 126.053401, -14.254209 ], [ 126.081261, -14.234159 ], [ 126.096542, -14.239239 ], [ 126.093932, -14.243999 ], [ 126.133220, -14.231448 ], [ 126.139799, -14.219798 ], [ 126.136639, -14.204338 ], [ 126.147759, -14.209168 ], [ 126.160189, -14.176488 ], [ 126.141279, -14.157778 ], [ 126.169718, -14.146188 ], [ 126.153278, -14.140128 ], [ 126.152198, -14.125679 ], [ 126.133328, -14.118039 ], [ 126.126217, -14.096930 ], [ 126.104427, -14.075750 ], [ 126.087797, -14.086170 ], [ 126.064057, -14.073350 ], [ 126.032518, -14.095100 ], [ 126.004138, -14.069511 ], [ 125.993078, -14.068211 ], [ 125.992058, -14.050161 ], [ 125.976228, -14.039641 ], [ 125.982957, -14.016401 ], [ 125.972917, -13.998672 ], [ 125.983847, -13.989812 ], [ 125.984127, -14.006141 ], [ 126.014357, -14.025441 ], [ 126.005357, -14.040031 ], [ 126.010148, -14.065431 ], [ 126.029287, -14.034671 ], [ 126.026707, -14.016721 ], [ 126.040027, -14.025160 ], [ 126.034767, -14.038300 ], [ 126.055987, -14.026600 ], [ 126.043337, -14.003241 ], [ 126.021867, -13.996861 ], [ 126.031706, -13.988411 ], [ 126.038526, -13.991581 ], [ 126.038186, -13.981531 ], [ 126.065356, -13.988221 ], [ 126.074746, -14.041470 ], [ 126.083056, -14.034670 ], [ 126.102616, -14.040840 ], [ 126.086386, -14.019080 ], [ 126.095626, -14.014770 ], [ 126.089946, -14.007550 ], [ 126.096645, -13.998580 ], [ 126.086406, -13.987680 ], [ 126.107235, -13.976750 ], [ 126.100415, -13.972790 ], [ 126.083866, -13.982030 ], [ 126.082265, -13.969610 ], [ 126.046546, -13.954331 ], [ 126.051416, -13.948011 ], [ 126.036036, -13.943481 ], [ 126.031316, -13.932181 ], [ 126.021126, -13.939281 ], [ 126.011206, -13.925722 ], [ 126.038725, -13.921011 ], [ 126.050266, -13.941691 ], [ 126.062745, -13.942951 ], [ 126.065075, -13.927261 ], [ 126.094815, -13.895340 ], [ 126.100705, -13.900080 ], [ 126.085315, -13.920950 ], [ 126.107865, -13.919060 ], [ 126.085635, -13.945680 ], [ 126.104965, -13.925600 ], [ 126.132355, -13.944490 ], [ 126.134225, -13.918970 ], [ 126.158385, -13.915040 ], [ 126.152835, -13.926550 ], [ 126.161615, -13.924300 ], [ 126.148425, -13.949690 ], [ 126.136855, -13.949570 ], [ 126.126205, -13.964010 ], [ 126.141355, -13.959850 ], [ 126.158695, -13.970140 ], [ 126.130935, -13.986940 ], [ 126.135785, -13.989430 ], [ 126.128665, -14.000910 ], [ 126.110075, -14.013830 ], [ 126.109766, -14.028290 ], [ 126.126785, -14.027040 ], [ 126.117255, -14.018670 ], [ 126.187035, -13.968129 ], [ 126.215825, -13.967579 ], [ 126.221025, -13.987908 ], [ 126.193385, -13.980099 ], [ 126.157755, -13.997800 ], [ 126.144305, -14.014990 ], [ 126.154145, -14.019150 ], [ 126.173325, -14.009720 ], [ 126.185025, -14.015809 ], [ 126.200705, -14.000949 ], [ 126.202245, -14.012578 ], [ 126.220415, -14.017498 ], [ 126.224715, -14.026419 ], [ 126.217475, -14.042929 ], [ 126.160256, -14.057540 ], [ 126.149526, -14.067510 ], [ 126.150826, -14.080160 ], [ 126.159126, -14.068730 ], [ 126.191856, -14.066269 ], [ 126.170376, -14.082140 ], [ 126.162547, -14.098990 ], [ 126.165707, -14.114239 ], [ 126.178147, -14.091379 ], [ 126.214206, -14.076488 ], [ 126.205797, -14.091539 ], [ 126.221697, -14.110478 ], [ 126.211997, -14.115918 ], [ 126.216517, -14.120878 ], [ 126.179398, -14.130359 ], [ 126.185678, -14.140388 ], [ 126.208928, -14.136488 ], [ 126.185969, -14.166938 ], [ 126.196429, -14.182728 ], [ 126.207869, -14.177048 ], [ 126.204649, -14.185188 ], [ 126.243279, -14.175718 ], [ 126.233119, -14.186808 ], [ 126.248049, -14.185637 ], [ 126.240099, -14.198087 ], [ 126.248120, -14.210717 ], [ 126.233399, -14.203647 ], [ 126.216000, -14.236568 ], [ 126.230710, -14.237088 ], [ 126.240970, -14.223397 ], [ 126.253630, -14.239177 ], [ 126.270600, -14.221057 ], [ 126.272530, -14.207147 ], [ 126.269720, -14.236537 ], [ 126.282170, -14.216727 ], [ 126.300850, -14.233617 ], [ 126.312679, -14.201277 ], [ 126.318689, -14.197867 ], [ 126.323849, -14.207487 ], [ 126.339398, -14.192717 ], [ 126.360798, -14.189937 ], [ 126.353697, -14.177307 ], [ 126.323087, -14.158197 ], [ 126.320887, -14.140977 ], [ 126.305488, -14.154747 ], [ 126.304048, -14.138817 ], [ 126.297568, -14.138837 ], [ 126.315217, -14.119016 ], [ 126.314457, -14.097326 ], [ 126.345006, -14.098007 ], [ 126.343836, -14.058816 ], [ 126.334326, -14.050036 ], [ 126.371905, -14.045167 ], [ 126.394325, -14.051776 ], [ 126.387615, -14.037886 ], [ 126.396554, -14.014916 ], [ 126.425344, -14.012066 ], [ 126.438364, -13.982726 ], [ 126.446014, -14.002306 ], [ 126.454354, -14.005216 ], [ 126.485223, -13.995696 ], [ 126.495853, -13.977166 ], [ 126.495263, -13.957636 ], [ 126.511483, -13.964726 ], [ 126.536992, -13.934446 ], [ 126.554362, -13.951825 ], [ 126.565248, -13.944527 ], [ 126.565932, -13.954755 ], [ 126.539223, -13.964375 ], [ 126.508963, -14.008846 ], [ 126.491033, -14.008576 ], [ 126.487414, -14.028476 ], [ 126.497194, -14.045846 ], [ 126.483544, -14.047366 ], [ 126.449465, -14.083736 ], [ 126.454675, -14.103526 ], [ 126.478804, -14.109646 ], [ 126.481304, -14.097426 ], [ 126.492184, -14.098746 ], [ 126.511864, -14.086026 ], [ 126.513734, -14.075496 ], [ 126.525444, -14.081666 ], [ 126.525144, -14.092406 ], [ 126.499484, -14.100186 ], [ 126.499154, -14.130286 ], [ 126.517254, -14.147236 ], [ 126.515445, -14.157416 ], [ 126.537854, -14.147156 ], [ 126.555814, -14.151036 ], [ 126.569774, -14.139795 ], [ 126.574924, -14.154575 ], [ 126.562614, -14.169996 ], [ 126.570464, -14.194595 ], [ 126.564995, -14.216765 ], [ 126.575465, -14.228705 ], [ 126.601665, -14.235825 ], [ 126.610414, -14.198385 ], [ 126.606984, -14.180095 ], [ 126.633614, -14.191215 ], [ 126.651414, -14.173455 ], [ 126.647314, -14.137545 ], [ 126.660983, -14.114764 ], [ 126.644843, -14.077095 ], [ 126.663253, -14.078134 ], [ 126.685593, -14.103694 ], [ 126.689353, -14.091244 ], [ 126.686294, -14.131034 ], [ 126.693834, -14.134724 ], [ 126.719663, -14.120604 ], [ 126.717883, -14.104104 ], [ 126.710223, -14.100294 ], [ 126.718163, -14.090204 ], [ 126.729743, -14.092184 ], [ 126.737163, -14.070444 ], [ 126.723133, -14.065204 ], [ 126.762732, -14.050093 ], [ 126.747153, -14.031294 ], [ 126.753093, -14.016123 ], [ 126.745913, -14.014683 ], [ 126.757773, -14.016353 ], [ 126.753993, -14.011363 ], [ 126.738623, -14.013934 ], [ 126.723313, -14.029374 ], [ 126.701862, -14.021224 ], [ 126.695932, -13.999014 ], [ 126.706052, -13.973334 ], [ 126.728763, -13.996574 ], [ 126.751553, -13.991793 ], [ 126.750702, -13.972143 ], [ 126.768062, -13.975383 ], [ 126.772132, -13.983173 ], [ 126.786802, -13.970273 ], [ 126.796982, -13.972513 ], [ 126.789767, -13.975674 ], [ 126.791802, -13.983813 ], [ 126.798032, -13.976013 ], [ 126.807192, -13.986383 ], [ 126.793432, -13.989343 ], [ 126.801312, -13.992613 ], [ 126.810312, -13.984123 ], [ 126.810002, -13.997903 ], [ 126.817372, -13.982073 ], [ 126.838291, -13.971073 ], [ 126.878691, -13.982063 ], [ 126.882141, -13.998573 ], [ 126.905371, -13.985232 ], [ 126.865071, -13.945582 ], [ 126.840061, -13.937523 ], [ 126.839461, -13.927693 ], [ 126.805571, -13.930473 ], [ 126.809481, -13.916793 ], [ 126.799571, -13.883033 ], [ 126.772811, -13.860723 ], [ 126.758402, -13.826063 ], [ 126.760452, -13.808213 ], [ 126.743302, -13.791753 ], [ 126.766621, -13.776463 ], [ 126.757742, -13.786983 ], [ 126.767112, -13.787083 ], [ 126.764342, -13.791493 ], [ 126.778191, -13.781523 ], [ 126.789172, -13.791303 ], [ 126.794021, -13.776413 ], [ 126.818740, -13.769352 ], [ 126.818201, -13.784383 ], [ 126.831500, -13.786842 ], [ 126.826231, -13.808542 ], [ 126.842320, -13.816982 ], [ 126.847370, -13.797762 ], [ 126.872940, -13.799002 ], [ 126.851590, -13.774482 ], [ 126.851319, -13.758212 ], [ 126.868430, -13.761342 ], [ 126.870490, -13.751392 ], [ 126.881000, -13.748662 ], [ 126.897790, -13.758672 ], [ 126.897580, -13.766352 ], [ 126.920470, -13.768332 ], [ 126.921769, -13.776122 ], [ 126.944399, -13.767592 ], [ 126.914390, -13.741232 ], [ 126.954289, -13.747572 ], [ 126.963289, -13.741672 ], [ 126.969558, -13.752502 ], [ 126.984018, -13.754161 ], [ 126.977909, -13.761412 ], [ 126.985739, -13.787482 ], [ 126.996269, -13.790842 ], [ 126.998279, -13.768691 ], [ 127.002059, -13.793992 ], [ 127.012349, -13.795772 ], [ 127.013479, -13.785372 ], [ 127.030769, -13.803962 ], [ 127.017699, -13.803552 ], [ 127.006070, -13.823782 ], [ 127.030460, -13.816962 ], [ 127.025980, -13.827032 ], [ 127.036640, -13.832081 ], [ 127.047079, -13.805722 ], [ 127.055820, -13.828181 ], [ 127.045780, -13.833411 ], [ 127.044320, -13.848891 ], [ 127.057510, -13.847831 ], [ 127.068570, -13.835941 ], [ 127.081420, -13.839971 ], [ 127.081120, -13.854541 ], [ 127.065080, -13.864191 ], [ 127.076660, -13.869811 ], [ 127.060580, -13.907921 ], [ 127.069350, -13.896161 ], [ 127.102850, -13.884301 ], [ 127.098640, -13.903301 ], [ 127.109320, -13.913881 ], [ 127.100760, -13.914021 ], [ 127.093860, -13.927381 ], [ 127.104610, -13.925311 ], [ 127.111470, -13.934441 ], [ 127.107690, -13.944621 ], [ 127.122740, -13.948191 ], [ 127.113770, -13.962791 ], [ 127.117500, -13.970581 ], [ 127.127200, -13.965691 ], [ 127.142880, -13.982251 ], [ 127.145030, -13.966870 ], [ 127.153130, -13.967070 ], [ 127.148230, -13.956130 ], [ 127.157640, -13.933730 ], [ 127.178780, -13.925860 ], [ 127.166250, -13.917880 ], [ 127.169810, -13.910640 ], [ 127.190729, -13.904010 ], [ 127.195539, -13.922300 ], [ 127.186230, -13.938830 ], [ 127.189890, -13.957230 ], [ 127.195220, -13.959470 ], [ 127.198750, -13.944770 ], [ 127.207750, -13.973590 ], [ 127.214300, -13.966490 ], [ 127.207020, -13.956610 ], [ 127.210440, -13.944620 ], [ 127.226629, -13.942520 ], [ 127.235169, -13.907810 ], [ 127.246709, -13.900420 ], [ 127.249049, -13.906850 ], [ 127.265579, -13.901930 ], [ 127.282769, -13.919260 ], [ 127.275789, -13.937970 ], [ 127.290699, -13.933810 ], [ 127.318129, -13.961160 ], [ 127.334408, -13.963249 ], [ 127.345758, -13.954949 ], [ 127.345279, -13.939549 ], [ 127.329579, -13.933659 ], [ 127.321859, -13.914700 ], [ 127.347398, -13.906579 ], [ 127.359788, -13.908669 ], [ 127.360578, -13.918919 ], [ 127.377458, -13.928029 ], [ 127.374108, -13.939149 ], [ 127.395568, -13.939479 ], [ 127.410758, -13.961389 ], [ 127.430068, -13.942949 ], [ 127.424978, -13.966699 ], [ 127.444448, -13.972489 ], [ 127.439628, -13.980189 ], [ 127.455478, -13.980239 ], [ 127.454258, -13.990069 ], [ 127.467208, -14.000889 ], [ 127.448538, -14.024779 ], [ 127.459268, -14.035099 ], [ 127.452509, -14.058779 ], [ 127.477548, -14.062309 ], [ 127.482908, -14.085069 ], [ 127.493398, -14.060719 ], [ 127.504618, -14.074668 ], [ 127.515198, -14.073068 ], [ 127.514428, -14.066278 ], [ 127.523668, -14.069278 ], [ 127.508498, -14.087828 ], [ 127.514828, -14.094188 ], [ 127.521018, -14.085418 ], [ 127.537568, -14.086318 ], [ 127.523918, -14.119788 ], [ 127.543498, -14.099808 ], [ 127.549568, -14.110468 ], [ 127.556778, -14.104638 ], [ 127.589128, -14.144257 ], [ 127.615928, -14.143657 ], [ 127.624628, -14.160547 ], [ 127.648428, -14.169617 ], [ 127.634228, -14.179437 ], [ 127.669848, -14.190547 ], [ 127.665328, -14.209727 ], [ 127.677248, -14.211607 ], [ 127.671778, -14.221567 ], [ 127.683728, -14.212327 ], [ 127.692188, -14.231927 ], [ 127.691198, -14.242767 ], [ 127.684628, -14.236627 ], [ 127.683198, -14.243397 ], [ 127.710598, -14.252707 ], [ 127.719348, -14.276646 ], [ 127.738237, -14.281346 ], [ 127.737617, -14.287785 ], [ 127.762677, -14.303185 ], [ 127.779667, -14.333224 ], [ 127.780117, -14.344414 ], [ 127.765877, -14.352134 ], [ 127.760697, -14.367134 ], [ 127.782117, -14.350534 ], [ 127.788277, -14.388424 ], [ 127.797077, -14.390954 ], [ 127.806517, -14.382534 ], [ 127.810467, -14.402104 ], [ 127.819307, -14.395824 ], [ 127.828427, -14.402544 ], [ 127.819757, -14.440574 ], [ 127.834657, -14.451954 ], [ 127.850137, -14.484474 ], [ 127.880247, -14.470844 ], [ 127.882267, -14.484754 ], [ 127.902097, -14.505064 ], [ 127.929266, -14.502854 ], [ 127.949346, -14.524204 ], [ 127.952566, -14.529414 ], [ 127.938877, -14.530134 ], [ 127.940227, -14.543374 ], [ 127.927367, -14.557995 ], [ 127.953527, -14.570555 ], [ 127.952637, -14.586036 ], [ 127.962707, -14.590376 ], [ 127.984806, -14.579635 ], [ 127.993046, -14.556164 ], [ 128.000516, -14.570555 ], [ 128.027856, -14.579275 ], [ 128.069336, -14.620711 ], [ 128.069376, -14.650229 ], [ 128.085937, -14.646890 ], [ 128.086787, -14.638980 ], [ 128.101917, -14.656341 ], [ 128.130907, -14.664140 ], [ 128.137237, -14.677620 ], [ 128.131267, -14.687091 ], [ 128.150207, -14.685579 ], [ 128.161137, -14.708009 ], [ 128.184217, -14.714649 ], [ 128.201207, -14.706468 ], [ 128.221707, -14.721238 ], [ 128.214227, -14.733188 ], [ 128.225111, -14.740276 ], [ 128.218437, -14.754568 ], [ 128.200627, -14.737549 ], [ 128.183877, -14.744259 ], [ 128.175206, -14.791808 ], [ 128.193996, -14.828048 ], [ 128.192446, -14.838658 ], [ 128.151186, -14.841889 ], [ 128.118506, -14.861340 ], [ 128.122946, -14.871040 ], [ 128.139096, -14.870769 ], [ 128.107867, -14.946912 ], [ 128.113357, -14.993273 ], [ 128.100067, -15.011153 ], [ 128.101407, -15.037263 ], [ 128.094407, -15.044714 ], [ 128.103087, -15.064504 ], [ 128.092127, -15.070924 ], [ 128.074948, -15.103994 ], [ 128.083549, -15.152394 ], [ 128.098879, -15.167344 ], [ 128.091670, -15.214224 ], [ 128.080241, -15.233044 ], [ 128.087771, -15.237614 ], [ 128.081921, -15.258505 ], [ 128.092781, -15.281025 ], [ 128.065941, -15.301185 ], [ 128.044771, -15.288255 ], [ 128.040359, -15.292772 ], [ 128.066031, -15.312265 ], [ 128.067131, -15.335325 ], [ 128.086630, -15.366225 ], [ 128.089360, -15.390305 ], [ 128.077360, -15.433896 ], [ 128.052410, -15.479496 ], [ 128.019490, -15.494326 ], [ 127.995530, -15.514146 ], [ 127.998780, -15.518106 ], [ 128.018420, -15.501776 ], [ 128.068120, -15.492076 ], [ 128.096400, -15.467166 ], [ 128.114330, -15.427996 ], [ 128.124710, -15.375356 ], [ 128.128171, -15.291725 ], [ 128.116130, -15.260055 ], [ 128.100201, -15.250185 ], [ 128.115140, -15.234624 ], [ 128.110080, -15.209634 ], [ 128.128299, -15.183684 ], [ 128.188169, -15.228784 ], [ 128.258018, -15.306325 ], [ 128.256028, -15.316375 ], [ 128.281608, -15.345915 ], [ 128.281309, -15.390565 ], [ 128.296279, -15.431045 ], [ 128.292269, -15.459855 ], [ 128.321489, -15.487814 ], [ 128.327369, -15.505114 ], [ 128.341638, -15.501284 ], [ 128.329629, -15.501044 ], [ 128.324288, -15.483854 ], [ 128.299139, -15.460205 ], [ 128.307258, -15.413995 ], [ 128.295269, -15.401315 ], [ 128.292298, -15.363675 ], [ 128.300758, -15.319724 ], [ 128.278108, -15.278554 ], [ 128.239588, -15.247524 ], [ 128.220238, -15.203753 ], [ 128.221067, -15.130853 ], [ 128.194027, -15.093513 ], [ 128.228166, -15.003152 ], [ 128.265466, -14.982582 ], [ 128.289216, -14.974082 ], [ 128.307286, -14.994602 ], [ 128.324676, -15.036072 ], [ 128.331196, -15.035402 ], [ 128.314716, -14.995872 ], [ 128.292496, -14.966752 ], [ 128.295856, -14.937371 ], [ 128.313916, -14.925681 ], [ 128.323066, -14.933171 ], [ 128.328045, -14.974102 ], [ 128.361855, -15.066602 ], [ 128.373975, -15.061442 ], [ 128.364115, -15.040862 ], [ 128.358105, -14.991272 ], [ 128.378605, -15.000572 ], [ 128.410375, -15.032072 ], [ 128.387495, -14.997802 ], [ 128.349105, -14.967962 ], [ 128.358205, -14.885031 ], [ 128.368655, -14.889931 ], [ 128.401045, -14.938512 ], [ 128.418915, -14.950322 ], [ 128.429984, -14.980532 ], [ 128.448614, -15.002052 ], [ 128.455874, -14.995642 ], [ 128.438024, -14.974452 ], [ 128.419215, -14.927722 ], [ 128.417765, -14.904322 ], [ 128.402385, -14.878961 ], [ 128.421665, -14.881731 ], [ 128.473884, -14.956702 ], [ 128.501724, -14.978472 ], [ 128.511423, -15.013612 ], [ 128.518983, -15.014752 ], [ 128.507784, -14.973742 ], [ 128.470344, -14.931262 ], [ 128.477134, -14.911612 ], [ 128.466974, -14.889092 ], [ 128.427475, -14.841061 ], [ 128.395465, -14.821751 ], [ 128.380945, -14.823400 ], [ 128.393426, -14.804450 ], [ 128.418545, -14.795261 ], [ 128.436395, -14.812151 ], [ 128.465935, -14.799691 ], [ 128.475265, -14.786151 ], [ 128.485125, -14.791381 ], [ 128.506635, -14.781042 ], [ 128.535895, -14.786992 ], [ 128.528475, -14.779962 ], [ 128.550455, -14.767932 ], [ 128.554145, -14.780822 ], [ 128.588494, -14.797402 ], [ 128.587074, -14.807682 ], [ 128.596034, -14.800692 ], [ 128.623444, -14.803922 ], [ 128.627874, -14.798952 ], [ 128.608834, -14.789872 ], [ 128.613484, -14.787402 ], [ 128.678874, -14.795782 ], [ 128.718104, -14.816083 ], [ 128.718904, -14.826593 ], [ 128.738404, -14.839283 ], [ 128.777323, -14.840583 ], [ 128.767903, -14.853113 ], [ 128.777203, -14.847483 ], [ 128.787763, -14.860493 ], [ 128.789163, -14.851453 ], [ 128.793573, -14.860273 ], [ 128.808563, -14.856453 ], [ 128.818893, -14.866523 ], [ 128.827503, -14.855683 ], [ 128.830403, -14.864053 ], [ 128.832733, -14.858293 ], [ 128.906063, -14.855543 ], [ 128.914072, -14.858483 ], [ 128.912912, -14.867303 ], [ 128.916392, -14.862673 ], [ 128.931732, -14.872743 ], [ 128.953922, -14.872753 ], [ 128.967402, -14.884743 ], [ 128.972172, -14.876613 ], [ 129.001242, -14.879473 ], [ 129.001340, -31.687068 ], [ 128.896362, -31.717043 ], [ 128.706703, -31.808653 ], [ 128.642335, -31.850935 ], [ 128.551750, -31.878161 ], [ 128.494827, -31.911905 ], [ 128.314269, -31.979367 ], [ 128.022372, -32.073979 ], [ 127.705705, -32.136702 ], [ 127.585376, -32.175053 ], [ 127.548597, -32.190753 ], [ 127.518817, -32.214124 ], [ 127.452078, -32.222294 ], [ 127.325960, -32.256526 ], [ 127.213371, -32.276387 ], [ 127.089312, -32.280569 ], [ 126.956523, -32.297599 ], [ 126.772578, -32.292341 ], [ 126.734240, -32.305883 ], [ 126.672789, -32.308371 ], [ 126.422025, -32.284084 ], [ 126.203139, -32.232277 ], [ 126.160689, -32.237738 ], [ 126.081171, -32.275120 ], [ 126.037052, -32.268591 ], [ 125.951010, -32.290542 ], [ 125.801225, -32.366725 ], [ 125.532060, -32.549232 ], [ 125.485070, -32.559642 ], [ 125.439021, -32.582893 ], [ 125.315272, -32.607915 ], [ 125.230343, -32.643236 ], [ 125.102415, -32.715398 ], [ 125.026186, -32.728859 ], [ 124.993076, -32.762700 ], [ 124.928047, -32.794161 ], [ 124.894578, -32.832831 ], [ 124.814039, -32.872863 ], [ 124.741000, -32.900144 ], [ 124.393573, -32.949078 ], [ 124.305384, -32.980910 ], [ 124.238655, -33.017591 ], [ 124.154307, -33.096063 ], [ 124.101189, -33.176154 ], [ 124.079110, -33.249225 ], [ 123.998000, -33.426375 ], [ 123.976020, -33.558606 ], [ 123.935731, -33.576858 ], [ 123.930731, -33.586658 ], [ 123.875072, -33.599018 ], [ 123.866822, -33.618738 ], [ 123.877712, -33.633178 ], [ 123.810233, -33.664769 ], [ 123.774417, -33.698186 ], [ 123.756934, -33.723069 ], [ 123.747493, -33.765330 ], [ 123.749193, -33.783140 ], [ 123.764154, -33.795240 ], [ 123.742364, -33.809171 ], [ 123.707623, -33.816420 ], [ 123.693654, -33.831491 ], [ 123.656293, -33.846950 ], [ 123.639134, -33.877000 ], [ 123.573375, -33.887731 ], [ 123.558005, -33.906052 ], [ 123.553025, -33.927792 ], [ 123.534286, -33.940132 ], [ 123.512086, -33.942523 ], [ 123.508005, -33.922102 ], [ 123.474015, -33.906182 ], [ 123.412296, -33.893833 ], [ 123.371446, -33.895893 ], [ 123.330286, -33.918783 ], [ 123.328676, -33.934673 ], [ 123.299967, -33.953684 ], [ 123.303027, -33.961144 ], [ 123.286897, -33.979874 ], [ 123.275427, -33.975864 ], [ 123.251957, -33.997484 ], [ 123.227257, -33.988924 ], [ 123.212948, -34.001854 ], [ 123.163068, -34.016635 ], [ 123.151988, -34.010635 ], [ 123.165398, -34.008405 ], [ 123.172148, -33.989535 ], [ 123.148458, -33.976295 ], [ 123.162437, -33.968564 ], [ 123.161067, -33.945934 ], [ 123.134157, -33.917684 ], [ 123.139767, -33.911514 ], [ 123.133887, -33.904374 ], [ 123.083117, -33.871534 ], [ 123.022718, -33.856644 ], [ 123.004848, -33.870814 ], [ 123.002258, -33.885514 ], [ 122.979058, -33.887415 ], [ 122.975888, -33.902315 ], [ 122.970008, -33.890045 ], [ 122.935088, -33.886105 ], [ 122.829389, -33.909975 ], [ 122.812679, -33.889385 ], [ 122.773819, -33.877735 ], [ 122.754619, -33.881275 ], [ 122.747759, -33.895826 ], [ 122.669819, -33.888616 ], [ 122.653460, -33.889316 ], [ 122.649270, -33.897436 ], [ 122.618690, -33.892836 ], [ 122.598010, -33.902436 ], [ 122.601400, -33.913366 ], [ 122.591650, -33.909656 ], [ 122.581650, -33.916316 ], [ 122.585580, -33.932886 ], [ 122.597360, -33.937277 ], [ 122.580720, -33.945177 ], [ 122.576530, -33.955217 ], [ 122.582630, -33.958037 ], [ 122.571530, -33.961417 ], [ 122.575040, -33.948337 ], [ 122.560820, -33.944847 ], [ 122.557570, -33.936617 ], [ 122.536050, -33.935267 ], [ 122.509660, -33.953417 ], [ 122.500720, -33.936507 ], [ 122.491110, -33.938987 ], [ 122.444431, -33.919227 ], [ 122.364201, -33.913517 ], [ 122.349301, -33.921837 ], [ 122.354151, -33.933118 ], [ 122.326281, -33.928908 ], [ 122.274502, -33.959478 ], [ 122.268242, -33.968148 ], [ 122.280641, -33.989818 ], [ 122.277312, -34.000749 ], [ 122.264102, -33.995879 ], [ 122.249432, -34.004599 ], [ 122.243791, -33.994139 ], [ 122.227021, -33.988009 ], [ 122.211532, -34.008729 ], [ 122.209432, -34.000759 ], [ 122.197792, -34.000309 ], [ 122.200762, -34.008499 ], [ 122.188992, -34.008159 ], [ 122.193252, -34.017189 ], [ 122.171452, -34.011419 ], [ 122.165303, -34.002439 ], [ 122.156563, -34.013559 ], [ 122.136743, -34.006599 ], [ 122.113573, -34.017199 ], [ 122.112523, -34.000369 ], [ 122.093293, -34.002839 ], [ 122.093193, -33.993929 ], [ 122.109852, -33.992519 ], [ 122.118982, -33.980029 ], [ 122.085382, -33.902798 ], [ 122.030782, -33.844979 ], [ 122.001002, -33.829299 ], [ 121.986272, -33.829229 ], [ 121.982962, -33.839139 ], [ 121.956102, -33.833489 ], [ 121.915102, -33.838259 ], [ 121.893972, -33.863519 ], [ 121.901804, -33.872580 ], [ 121.908096, -33.867508 ], [ 121.900482, -33.878999 ], [ 121.874532, -33.876839 ], [ 121.863402, -33.881959 ], [ 121.864832, -33.890649 ], [ 121.829272, -33.888879 ], [ 121.789874, -33.909049 ], [ 121.756933, -33.885968 ], [ 121.763143, -33.886908 ], [ 121.695084, -33.861210 ], [ 121.676684, -33.863118 ], [ 121.674814, -33.874485 ], [ 121.644684, -33.898179 ], [ 121.646554, -33.887368 ], [ 121.627666, -33.869310 ], [ 121.546584, -33.827990 ], [ 121.531603, -33.825729 ], [ 121.504836, -33.839601 ], [ 121.467732, -33.822859 ], [ 121.459999, -33.828358 ], [ 121.435524, -33.820080 ], [ 121.428551, -33.830231 ], [ 121.361874, -33.815443 ], [ 121.350196, -33.820250 ], [ 121.349451, -33.830252 ], [ 121.323819, -33.821575 ], [ 121.298993, -33.825045 ], [ 121.296339, -33.840199 ], [ 121.275900, -33.842241 ], [ 121.268492, -33.850711 ], [ 121.198696, -33.844581 ], [ 121.177135, -33.877608 ], [ 121.172767, -33.867086 ], [ 121.099835, -33.848509 ], [ 121.083487, -33.851131 ], [ 121.079426, -33.862300 ], [ 121.013914, -33.860947 ], [ 121.007921, -33.872749 ], [ 120.939765, -33.862264 ], [ 120.918118, -33.870538 ], [ 120.906146, -33.861448 ], [ 120.868536, -33.856260 ], [ 120.841095, -33.865697 ], [ 120.840007, -33.873364 ], [ 120.811364, -33.886397 ], [ 120.813474, -33.892650 ], [ 120.779753, -33.885942 ], [ 120.712683, -33.893222 ], [ 120.671874, -33.885044 ], [ 120.639000, -33.891729 ], [ 120.593472, -33.886246 ], [ 120.553370, -33.903171 ], [ 120.562314, -33.920466 ], [ 120.558378, -33.926413 ], [ 120.518014, -33.935412 ], [ 120.494711, -33.953202 ], [ 120.471276, -33.956781 ], [ 120.469348, -33.966734 ], [ 120.447181, -33.963548 ], [ 120.436570, -33.971882 ], [ 120.315466, -33.942267 ], [ 120.231065, -33.932406 ], [ 120.176725, -33.934825 ], [ 120.126592, -33.954487 ], [ 120.042168, -33.923368 ], [ 120.011342, -33.936773 ], [ 119.991368, -33.935898 ], [ 119.984181, -33.954596 ], [ 119.967498, -33.956070 ], [ 119.944395, -33.977887 ], [ 119.920455, -33.968332 ], [ 119.850753, -33.969836 ], [ 119.816370, -33.983476 ], [ 119.788001, -34.005408 ], [ 119.781732, -34.026733 ], [ 119.750434, -34.040828 ], [ 119.733850, -34.060742 ], [ 119.710912, -34.061702 ], [ 119.681199, -34.081399 ], [ 119.650299, -34.087697 ], [ 119.634353, -34.102267 ], [ 119.640269, -34.112630 ], [ 119.597462, -34.134587 ], [ 119.578523, -34.160146 ], [ 119.587825, -34.170846 ], [ 119.534915, -34.221382 ], [ 119.503722, -34.288015 ], [ 119.482109, -34.279528 ], [ 119.457120, -34.289075 ], [ 119.461742, -34.295256 ], [ 119.469828, -34.288846 ], [ 119.486654, -34.295244 ], [ 119.503207, -34.290350 ], [ 119.499148, -34.330005 ], [ 119.507448, -34.359128 ], [ 119.528815, -34.364261 ], [ 119.541840, -34.382834 ], [ 119.569888, -34.376625 ], [ 119.576278, -34.387181 ], [ 119.547440, -34.389647 ], [ 119.502718, -34.411473 ], [ 119.478108, -34.402160 ], [ 119.492468, -34.393046 ], [ 119.482512, -34.375228 ], [ 119.453434, -34.378806 ], [ 119.441935, -34.366471 ], [ 119.415734, -34.373289 ], [ 119.398674, -34.386873 ], [ 119.407986, -34.395823 ], [ 119.390842, -34.419446 ], [ 119.403232, -34.426487 ], [ 119.397248, -34.440185 ], [ 119.402417, -34.452500 ], [ 119.418618, -34.458921 ], [ 119.390190, -34.459595 ], [ 119.382143, -34.485365 ], [ 119.355734, -34.474705 ], [ 119.366190, -34.462483 ], [ 119.346392, -34.446224 ], [ 119.289851, -34.451980 ], [ 119.271141, -34.469061 ], [ 119.279837, -34.476825 ], [ 119.277469, -34.490228 ], [ 119.288592, -34.493436 ], [ 119.284847, -34.513085 ], [ 119.277191, -34.515537 ], [ 119.278860, -34.523533 ], [ 119.266819, -34.515404 ], [ 119.257808, -34.518870 ], [ 119.254490, -34.534600 ], [ 119.222245, -34.531332 ], [ 119.239360, -34.516177 ], [ 119.217883, -34.497961 ], [ 119.180712, -34.485889 ], [ 119.173540, -34.494425 ], [ 119.152230, -34.494511 ], [ 119.117503, -34.470120 ], [ 119.069109, -34.458813 ], [ 119.058059, -34.463512 ], [ 118.960905, -34.451277 ], [ 118.911791, -34.462878 ], [ 118.900958, -34.476440 ], [ 118.912935, -34.488036 ], [ 118.905782, -34.496859 ], [ 118.914168, -34.503178 ], [ 118.856164, -34.501178 ], [ 118.811598, -34.509473 ], [ 118.755351, -34.545573 ], [ 118.739631, -34.573564 ], [ 118.745441, -34.593669 ], [ 118.781709, -34.609001 ], [ 118.751991, -34.622448 ], [ 118.745957, -34.638323 ], [ 118.722385, -34.656893 ], [ 118.701391, -34.654836 ], [ 118.666082, -34.667801 ], [ 118.645197, -34.691221 ], [ 118.620074, -34.686600 ], [ 118.579204, -34.705715 ], [ 118.561918, -34.703689 ], [ 118.519837, -34.717451 ], [ 118.440144, -34.760757 ], [ 118.400428, -34.823854 ], [ 118.397075, -34.876645 ], [ 118.422406, -34.881459 ], [ 118.427747, -34.898744 ], [ 118.402601, -34.905161 ], [ 118.403425, -34.916704 ], [ 118.389714, -34.915000 ], [ 118.390579, -34.907659 ], [ 118.378616, -34.902794 ], [ 118.339161, -34.902690 ], [ 118.331264, -34.898061 ], [ 118.334039, -34.891437 ], [ 118.320910, -34.904264 ], [ 118.298682, -34.903639 ], [ 118.299691, -34.911858 ], [ 118.259873, -34.908552 ], [ 118.254962, -34.918009 ], [ 118.223654, -34.919858 ], [ 118.206810, -34.934990 ], [ 118.210999, -34.943949 ], [ 118.175323, -34.940093 ], [ 118.172558, -34.967746 ], [ 118.182607, -34.972948 ], [ 118.190393, -34.967373 ], [ 118.210700, -34.978845 ], [ 118.212122, -34.989093 ], [ 118.199929, -35.003500 ], [ 118.205900, -35.009216 ], [ 118.194646, -35.023122 ], [ 118.187455, -35.024623 ], [ 118.192117, -35.013490 ], [ 118.176980, -35.013817 ], [ 118.167453, -34.995229 ], [ 118.108758, -34.985902 ], [ 118.071820, -34.993908 ], [ 118.034801, -35.020426 ], [ 118.004005, -35.020806 ], [ 117.998839, -35.010009 ], [ 117.961875, -35.013130 ], [ 117.948802, -35.001889 ], [ 117.979710, -34.990929 ], [ 117.973420, -34.960262 ], [ 117.976718, -34.951961 ], [ 117.948930, -34.943650 ], [ 117.946188, -34.980004 ], [ 117.939387, -34.985854 ], [ 117.948679, -34.998172 ], [ 117.918679, -35.016578 ], [ 117.919537, -35.035785 ], [ 117.859596, -35.026856 ], [ 117.848248, -35.044897 ], [ 117.854368, -35.056429 ], [ 117.867860, -35.057210 ], [ 117.887888, -35.077541 ], [ 117.909290, -35.084445 ], [ 117.927854, -35.072885 ], [ 117.927755, -35.062451 ], [ 117.910393, -35.053563 ], [ 117.920354, -35.040870 ], [ 117.918972, -35.051111 ], [ 117.938926, -35.059312 ], [ 117.934674, -35.075488 ], [ 117.943593, -35.091664 ], [ 117.979115, -35.096385 ], [ 118.002260, -35.087523 ], [ 118.021209, -35.107929 ], [ 118.005966, -35.098825 ], [ 117.976193, -35.098641 ], [ 117.967210, -35.104098 ], [ 117.969247, -35.114578 ], [ 117.948254, -35.128275 ], [ 117.940863, -35.114699 ], [ 117.924451, -35.121839 ], [ 117.904428, -35.114680 ], [ 117.898808, -35.123447 ], [ 117.885538, -35.110087 ], [ 117.865886, -35.109255 ], [ 117.838897, -35.087320 ], [ 117.762152, -35.054515 ], [ 117.709380, -35.044846 ], [ 117.699847, -35.051865 ], [ 117.685596, -35.043346 ], [ 117.644602, -35.062122 ], [ 117.651390, -35.083771 ], [ 117.637161, -35.088609 ], [ 117.628417, -35.112842 ], [ 117.641724, -35.125584 ], [ 117.639695, -35.134481 ], [ 117.629383, -35.127747 ], [ 117.611236, -35.133337 ], [ 117.605589, -35.115308 ], [ 117.548633, -35.082535 ], [ 117.514358, -35.074613 ], [ 117.512349, -35.083117 ], [ 117.485260, -35.088970 ], [ 117.479131, -35.073569 ], [ 117.397478, -35.031978 ], [ 117.362834, -35.019570 ], [ 117.332467, -35.022812 ], [ 117.356851, -35.005152 ], [ 117.395747, -34.998141 ], [ 117.398633, -35.008141 ], [ 117.428481, -35.021619 ], [ 117.465766, -35.020544 ], [ 117.451558, -35.010066 ], [ 117.468887, -35.006501 ], [ 117.479563, -34.993528 ], [ 117.471867, -34.975857 ], [ 117.455199, -34.966957 ], [ 117.429064, -34.986071 ], [ 117.404886, -34.973502 ], [ 117.369155, -34.969487 ], [ 117.354753, -34.993050 ], [ 117.348802, -34.987004 ], [ 117.334227, -34.993712 ], [ 117.337073, -35.004901 ], [ 117.326428, -35.017387 ], [ 117.337031, -35.034639 ], [ 117.326067, -35.043897 ], [ 117.272123, -35.021075 ], [ 117.247599, -35.029324 ], [ 117.195241, -35.017104 ], [ 117.164713, -35.026958 ], [ 117.164299, -35.044770 ], [ 117.153613, -35.047796 ], [ 117.150469, -35.061480 ], [ 117.097947, -35.032434 ], [ 117.073378, -35.031838 ], [ 117.070851, -35.038305 ], [ 117.060220, -35.028717 ], [ 117.033503, -35.025066 ], [ 117.018925, -35.035512 ], [ 116.956844, -35.019364 ], [ 116.934394, -35.034983 ], [ 116.921228, -35.064349 ], [ 116.884551, -35.047809 ], [ 116.865924, -35.048489 ], [ 116.861987, -35.056622 ], [ 116.846365, -35.049388 ], [ 116.844353, -35.040290 ], [ 116.826937, -35.043292 ], [ 116.810454, -35.025767 ], [ 116.768273, -35.014721 ], [ 116.741921, -35.022506 ], [ 116.737367, -35.030423 ], [ 116.745407, -35.037401 ], [ 116.726477, -35.041398 ], [ 116.707198, -35.028956 ], [ 116.658079, -35.051438 ], [ 116.645501, -35.047159 ], [ 116.630374, -35.060835 ], [ 116.629858, -35.046301 ], [ 116.610312, -35.033281 ], [ 116.572295, -35.033018 ], [ 116.574846, -35.024375 ], [ 116.532847, -35.004438 ], [ 116.517875, -35.002217 ], [ 116.498432, -35.015451 ], [ 116.481664, -35.016156 ], [ 116.468516, -34.995666 ], [ 116.383109, -34.948639 ], [ 116.370284, -34.934423 ], [ 116.289466, -34.899747 ], [ 116.261291, -34.879922 ], [ 116.189752, -34.861078 ], [ 116.133605, -34.844361 ], [ 116.096924, -34.848358 ], [ 116.029668, -34.836755 ], [ 116.002145, -34.842218 ], [ 115.996733, -34.830896 ], [ 116.002664, -34.812392 ], [ 115.961779, -34.762200 ], [ 115.962426, -34.743911 ], [ 115.947190, -34.720824 ], [ 115.743010, -34.538714 ], [ 115.669869, -34.480925 ], [ 115.577862, -34.422088 ], [ 115.558774, -34.415108 ], [ 115.540859, -34.423087 ], [ 115.542264, -34.414241 ], [ 115.520254, -34.396852 ], [ 115.478856, -34.381740 ], [ 115.417910, -34.342289 ], [ 115.345406, -34.316212 ], [ 115.262563, -34.306793 ], [ 115.168887, -34.321749 ], [ 115.165290, -34.301376 ], [ 115.201944, -34.277636 ], [ 115.169115, -34.279554 ], [ 115.165207, -34.273688 ], [ 115.176676, -34.265659 ], [ 115.156042, -34.275190 ], [ 115.160423, -34.294769 ], [ 115.143848, -34.289482 ], [ 115.148446, -34.298620 ], [ 115.160073, -34.298014 ], [ 115.164672, -34.322840 ], [ 115.172977, -34.322976 ], [ 115.166376, -34.356796 ], [ 115.157864, -34.369036 ], [ 115.140164, -34.368932 ], [ 115.133997, -34.376086 ], [ 115.137026, -34.364311 ], [ 115.124006, -34.355632 ], [ 115.119138, -34.340947 ], [ 115.050556, -34.275425 ], [ 115.034056, -34.270426 ], [ 115.033996, -34.259112 ], [ 115.023750, -34.253029 ], [ 115.032890, -34.237263 ], [ 115.024410, -34.222803 ], [ 115.039132, -34.198194 ], [ 115.019226, -34.139158 ], [ 114.991097, -34.098468 ], [ 115.004140, -34.081449 ], [ 114.997143, -34.068884 ], [ 115.000795, -34.015397 ], [ 114.979878, -33.961428 ], [ 114.991902, -33.953541 ], [ 114.992227, -33.932673 ], [ 114.975950, -33.864183 ], [ 114.986936, -33.863803 ], [ 114.993979, -33.848482 ], [ 115.000101, -33.794171 ], [ 114.975079, -33.698053 ], [ 114.990486, -33.696245 ], [ 114.994782, -33.669383 ], [ 115.019396, -33.656495 ], [ 115.028268, -33.634152 ], [ 115.003842, -33.561071 ], [ 115.011321, -33.556435 ], [ 115.003732, -33.530913 ], [ 115.054693, -33.543890 ], [ 115.065085, -33.558402 ], [ 115.088836, -33.568289 ], [ 115.102544, -33.586192 ], [ 115.104741, -33.605905 ], [ 115.123254, -33.623884 ], [ 115.206710, -33.651040 ], [ 115.299974, -33.654816 ], [ 115.367242, -33.639391 ], [ 115.427540, -33.608303 ], [ 115.573649, -33.453763 ], [ 115.598960, -33.409616 ], [ 115.635818, -33.308760 ], [ 115.646148, -33.300987 ], [ 115.636594, -33.312083 ], [ 115.647727, -33.306299 ], [ 115.639797, -33.318730 ], [ 115.666260, -33.322086 ], [ 115.657587, -33.317936 ], [ 115.670186, -33.306926 ], [ 115.681022, -33.275255 ], [ 115.687753, -33.108628 ], [ 115.673712, -32.998787 ], [ 115.632637, -32.833887 ], [ 115.608247, -32.666719 ], [ 115.627811, -32.599548 ], [ 115.671224, -32.562310 ], [ 115.700593, -32.520285 ], [ 115.710538, -32.520568 ], [ 115.717609, -32.557609 ], [ 115.671098, -32.575175 ], [ 115.665989, -32.586427 ], [ 115.672846, -32.593901 ], [ 115.645158, -32.608198 ], [ 115.641006, -32.618505 ], [ 115.655459, -32.672297 ], [ 115.671585, -32.700305 ], [ 115.672598, -32.728078 ], [ 115.683490, -32.750622 ], [ 115.696618, -32.754281 ], [ 115.692719, -32.767689 ], [ 115.712431, -32.787720 ], [ 115.713302, -32.772867 ], [ 115.725870, -32.781745 ], [ 115.726835, -32.753347 ], [ 115.710236, -32.741358 ], [ 115.713900, -32.728879 ], [ 115.697351, -32.690617 ], [ 115.686051, -32.682910 ], [ 115.684698, -32.653378 ], [ 115.667165, -32.634585 ], [ 115.666353, -32.615729 ], [ 115.676878, -32.616449 ], [ 115.704125, -32.643751 ], [ 115.724219, -32.631880 ], [ 115.747016, -32.646339 ], [ 115.773706, -32.635900 ], [ 115.767298, -32.627021 ], [ 115.775445, -32.624448 ], [ 115.770639, -32.617785 ], [ 115.777500, -32.596343 ], [ 115.762888, -32.590770 ], [ 115.766264, -32.581562 ], [ 115.755304, -32.564816 ], [ 115.718518, -32.564406 ], [ 115.720931, -32.527227 ], [ 115.712251, -32.525898 ], [ 115.721732, -32.523097 ], [ 115.711740, -32.521401 ], [ 115.723856, -32.519919 ], [ 115.737900, -32.501939 ], [ 115.750188, -32.439620 ], [ 115.743892, -32.403490 ], [ 115.712858, -32.370174 ], [ 115.736117, -32.362418 ], [ 115.743340, -32.333568 ], [ 115.730675, -32.310271 ], [ 115.701554, -32.305276 ], [ 115.701971, -32.282413 ], [ 115.684747, -32.265981 ], [ 115.706381, -32.275911 ], [ 115.736703, -32.269668 ], [ 115.756059, -32.250033 ], [ 115.755697, -32.223666 ], [ 115.774567, -32.193807 ], [ 115.765778, -32.140146 ], [ 115.737340, -32.134952 ], [ 115.755948, -32.129549 ], [ 115.762755, -32.109293 ], [ 115.742605, -32.064983 ], [ 115.749349, -32.070524 ], [ 115.742713, -32.062433 ], [ 115.739558, -32.063556 ], [ 115.740895, -32.056980 ], [ 115.732237, -32.055678 ], [ 115.760307, -32.040541 ], [ 115.761910, -32.026658 ], [ 115.777515, -32.028549 ], [ 115.786705, -32.010957 ], [ 115.813354, -32.022324 ], [ 115.814353, -32.029068 ], [ 115.826885, -32.021260 ], [ 115.828810, -32.006402 ], [ 115.846419, -32.001719 ], [ 115.860631, -32.045816 ], [ 115.860730, -32.037752 ], [ 115.871800, -32.031126 ], [ 115.857253, -32.031184 ], [ 115.845083, -31.965227 ], [ 115.863766, -31.974657 ], [ 115.883729, -31.969067 ], [ 115.891098, -31.962323 ], [ 115.885924, -31.940556 ], [ 115.898730, -31.953675 ], [ 115.914832, -31.951167 ], [ 115.918992, -31.944270 ], [ 115.910120, -31.935993 ], [ 115.936307, -31.931023 ], [ 115.941252, -31.920401 ], [ 115.951409, -31.923068 ], [ 115.964464, -31.908432 ], [ 115.958636, -31.895333 ], [ 115.974023, -31.893722 ], [ 115.958093, -31.895192 ], [ 115.961648, -31.911327 ], [ 115.950687, -31.922417 ], [ 115.941162, -31.919770 ], [ 115.936201, -31.929980 ], [ 115.908899, -31.934846 ], [ 115.914072, -31.950320 ], [ 115.899614, -31.951452 ], [ 115.897619, -31.940933 ], [ 115.884725, -31.938378 ], [ 115.883369, -31.966952 ], [ 115.855654, -31.958692 ], [ 115.842509, -31.963201 ], [ 115.822208, -31.976327 ], [ 115.828920, -31.987108 ], [ 115.804136, -32.002921 ], [ 115.791780, -32.004937 ], [ 115.786605, -31.991033 ], [ 115.773792, -31.989209 ], [ 115.771548, -32.009255 ], [ 115.779784, -32.018867 ], [ 115.755784, -32.025531 ], [ 115.758386, -32.038878 ], [ 115.724374, -32.054056 ], [ 115.750832, -32.022301 ], [ 115.751671, -31.848348 ], [ 115.743804, -31.827846 ], [ 115.732048, -31.823784 ], [ 115.740716, -31.824089 ], [ 115.733569, -31.823462 ], [ 115.727443, -31.806066 ], [ 115.729627, -31.765771 ], [ 115.685783, -31.653709 ], [ 115.635222, -31.565635 ], [ 115.579799, -31.496324 ], [ 115.539123, -31.408290 ], [ 115.441094, -31.277796 ], [ 115.399236, -31.180369 ], [ 115.383226, -31.121401 ], [ 115.326427, -31.027856 ], [ 115.328329, -31.010648 ], [ 115.312809, -30.973147 ], [ 115.219791, -30.832686 ], [ 115.204504, -30.823381 ], [ 115.189756, -30.824950 ], [ 115.183259, -30.771888 ], [ 115.102005, -30.601752 ], [ 115.103602, -30.591548 ], [ 115.087663, -30.578365 ], [ 115.094402, -30.548793 ], [ 115.075140, -30.517769 ], [ 115.057946, -30.510248 ], [ 115.071196, -30.478059 ], [ 115.050572, -30.424339 ], [ 115.042000, -30.337814 ], [ 115.020472, -30.317383 ], [ 115.046093, -30.291215 ], [ 115.042629, -30.273825 ], [ 115.028083, -30.237420 ], [ 114.994298, -30.231289 ], [ 114.998978, -30.223438 ], [ 114.991893, -30.183963 ], [ 114.998686, -30.182588 ], [ 115.006220, -30.159243 ], [ 115.001771, -30.132213 ], [ 114.984038, -30.079087 ], [ 114.963037, -30.072159 ], [ 114.965309, -30.054523 ], [ 114.954846, -30.048851 ], [ 114.969522, -30.007584 ], [ 114.962836, -29.973929 ], [ 114.977788, -29.945078 ], [ 114.982742, -29.911024 ], [ 114.980980, -29.845405 ], [ 114.964830, -29.808755 ], [ 114.959298, -29.770488 ], [ 114.957949, -29.683704 ], [ 114.977133, -29.557390 ], [ 114.997224, -29.513595 ], [ 114.997569, -29.493548 ], [ 114.956340, -29.397405 ], [ 114.954247, -29.352185 ], [ 114.926874, -29.312732 ], [ 114.914436, -29.277415 ], [ 114.922057, -29.270183 ], [ 114.920793, -29.255486 ], [ 114.872084, -29.116741 ], [ 114.831984, -29.066018 ], [ 114.637438, -28.877710 ], [ 114.623990, -28.843587 ], [ 114.628663, -28.830535 ], [ 114.612243, -28.795347 ], [ 114.576178, -28.784586 ], [ 114.587491, -28.770820 ], [ 114.605975, -28.774909 ], [ 114.614754, -28.762725 ], [ 114.618976, -28.719306 ], [ 114.605724, -28.686676 ], [ 114.612666, -28.665159 ], [ 114.596573, -28.611563 ], [ 114.533698, -28.494488 ], [ 114.454641, -28.410260 ], [ 114.465639, -28.407306 ], [ 114.451766, -28.410371 ], [ 114.432984, -28.394242 ], [ 114.405422, -28.335375 ], [ 114.341731, -28.267219 ], [ 114.323321, -28.233061 ], [ 114.238740, -28.187246 ], [ 114.197237, -28.126849 ], [ 114.174711, -28.110972 ], [ 114.144551, -27.972384 ], [ 114.105399, -27.850373 ], [ 114.124357, -27.772902 ], [ 114.151587, -27.733461 ], [ 114.157686, -27.708541 ], [ 114.165846, -27.708291 ], [ 114.181666, -27.680310 ], [ 114.169976, -27.674650 ], [ 114.173456, -27.658880 ], [ 114.165566, -27.668100 ], [ 114.172456, -27.687620 ], [ 114.163386, -27.706981 ], [ 114.104253, -27.503189 ], [ 113.965158, -27.230748 ], [ 113.783098, -26.929048 ], [ 113.584357, -26.671426 ], [ 113.296693, -26.400195 ], [ 113.308233, -26.387455 ], [ 113.294223, -26.363865 ], [ 113.299632, -26.342435 ], [ 113.277522, -26.294014 ], [ 113.236421, -26.233494 ], [ 113.156270, -26.151674 ], [ 113.162540, -26.143564 ], [ 113.197250, -26.173983 ], [ 113.260891, -26.191223 ], [ 113.269961, -26.241773 ], [ 113.280371, -26.221593 ], [ 113.273041, -26.182663 ], [ 113.282190, -26.173203 ], [ 113.291130, -26.125722 ], [ 113.291559, -26.085442 ], [ 113.284199, -26.076302 ], [ 113.291609, -26.047761 ], [ 113.284619, -26.040081 ], [ 113.299268, -26.015961 ], [ 113.319890, -26.126202 ], [ 113.325441, -26.204832 ], [ 113.317771, -26.241713 ], [ 113.333482, -26.311444 ], [ 113.324332, -26.318994 ], [ 113.331212, -26.329154 ], [ 113.326702, -26.337274 ], [ 113.338722, -26.347434 ], [ 113.356012, -26.330974 ], [ 113.365273, -26.354104 ], [ 113.357123, -26.373504 ], [ 113.369893, -26.383654 ], [ 113.368383, -26.399225 ], [ 113.380413, -26.398774 ], [ 113.383303, -26.387494 ], [ 113.392573, -26.402274 ], [ 113.394175, -26.393030 ] ], [ [ 113.394560, -26.393282 ], [ 113.399893, -26.418244 ], [ 113.397963, -26.395514 ], [ 113.394560, -26.393282 ] ], [ [ 117.976842, -34.951647 ], [ 117.981459, -34.940024 ], [ 117.973842, -34.938553 ], [ 117.976842, -34.951647 ] ], [ [ 125.035068, -15.518022 ], [ 125.039513, -15.521804 ], [ 125.044273, -15.518854 ], [ 125.035068, -15.518022 ] ], [ [ 121.794599, -18.520144 ], [ 121.788124, -18.537738 ], [ 121.798334, -18.529968 ], [ 121.794599, -18.520144 ] ], [ [ 118.850525, -20.288689 ], [ 118.854834, -20.290648 ], [ 118.860274, -20.282098 ], [ 118.850525, -20.288689 ] ], [ [ 117.549725, -20.718291 ], [ 117.542282, -20.736201 ], [ 117.547552, -20.728181 ], [ 117.555702, -20.730841 ], [ 117.548262, -20.725691 ], [ 117.549725, -20.718291 ] ], [ [ 117.175305, -20.666749 ], [ 117.173282, -20.673993 ], [ 117.171982, -20.654672 ], [ 117.167292, -20.657382 ], [ 117.168002, -20.682233 ], [ 117.183842, -20.672712 ], [ 117.175562, -20.673882 ], [ 117.175305, -20.666749 ] ], [ [ 116.986246, -20.671940 ], [ 116.986892, -20.678945 ], [ 116.987201, -20.672225 ], [ 116.986246, -20.671940 ] ], [ [ 116.675721, -20.732565 ], [ 116.684754, -20.750459 ], [ 116.685855, -20.737179 ], [ 116.675721, -20.732565 ] ], [ [ 116.652363, -20.735693 ], [ 116.648021, -20.744457 ], [ 116.657564, -20.740319 ], [ 116.652363, -20.735693 ] ], [ [ 116.647620, -20.745267 ], [ 116.647024, -20.746469 ], [ 116.653634, -20.749079 ], [ 116.647620, -20.745267 ] ], [ [ 116.635949, -20.741603 ], [ 116.629764, -20.751170 ], [ 116.639924, -20.753219 ], [ 116.635949, -20.741603 ] ], [ [ 116.467914, -20.827356 ], [ 116.474380, -20.830951 ], [ 116.481050, -20.826031 ], [ 116.467914, -20.827356 ] ], [ [ 116.475066, -20.849566 ], [ 116.477603, -20.851601 ], [ 116.485251, -20.843561 ], [ 116.494862, -20.850981 ], [ 116.485241, -20.842201 ], [ 116.477713, -20.850701 ], [ 116.475066, -20.849566 ] ], [ [ 116.105599, -21.038434 ], [ 116.098903, -21.051678 ], [ 116.106463, -21.039628 ], [ 116.105599, -21.038434 ] ], [ [ 115.856421, -21.194944 ], [ 115.852203, -21.202932 ], [ 115.860393, -21.204192 ], [ 115.865343, -21.193362 ], [ 115.857023, -21.201022 ], [ 115.856421, -21.194944 ] ], [ [ 115.837066, -21.252095 ], [ 115.844386, -21.252924 ], [ 115.839835, -21.243884 ], [ 115.837066, -21.252095 ] ], [ [ 115.796082, -21.265486 ], [ 115.796144, -21.277203 ], [ 115.799054, -21.270333 ], [ 115.796082, -21.265486 ] ], [ [ 115.745603, -21.281369 ], [ 115.738704, -21.285483 ], [ 115.748584, -21.289433 ], [ 115.745603, -21.281369 ] ], [ [ 115.330103, -21.587178 ], [ 115.333837, -21.596080 ], [ 115.341628, -21.595990 ], [ 115.330103, -21.587178 ] ], [ [ 113.618798, -26.520622 ], [ 113.621535, -26.538733 ], [ 113.626274, -26.524293 ], [ 113.618798, -26.520622 ] ], [ [ 115.916775, -21.092912 ], [ 115.915002, -21.092741 ], [ 115.911913, -21.101581 ], [ 115.916775, -21.092912 ] ], [ [ 116.540430, -20.766632 ], [ 116.542108, -20.778411 ], [ 116.542417, -20.766341 ], [ 116.540430, -20.766632 ] ], [ [ 117.173242, -20.631200 ], [ 117.165632, -20.628352 ], [ 117.165392, -20.634562 ], [ 117.173242, -20.631200 ] ], [ [ 117.339756, -20.759099 ], [ 117.320242, -20.758523 ], [ 117.332612, -20.761223 ], [ 117.331982, -20.770573 ], [ 117.339756, -20.759099 ] ], [ [ 122.293413, -17.119248 ], [ 122.301624, -17.120900 ], [ 122.303484, -17.112420 ], [ 122.293413, -17.119248 ] ], [ [ 124.461531, -15.798338 ], [ 124.462486, -15.784878 ], [ 124.457736, -15.782938 ], [ 124.461531, -15.798338 ] ], [ [ 115.877589, -32.027661 ], [ 115.883354, -32.024210 ], [ 115.893076, -32.020538 ], [ 115.889384, -32.017527 ], [ 115.877589, -32.027661 ] ] ], [ [ [ 126.565501, -13.944357 ], [ 126.571232, -13.940515 ], [ 126.577382, -13.953835 ], [ 126.565501, -13.944357 ] ] ], [ [ [ 128.473074, -14.909232 ], [ 128.466514, -14.928312 ], [ 128.448335, -14.904182 ], [ 128.445495, -14.879882 ], [ 128.473074, -14.909232 ] ] ], [ [ [ 128.442715, -14.878632 ], [ 128.440015, -14.885962 ], [ 128.428115, -14.863211 ], [ 128.442715, -14.878632 ] ] ], [ [ [ 128.334215, -14.758380 ], [ 128.310046, -14.762809 ], [ 128.301726, -14.751819 ], [ 128.308476, -14.745969 ], [ 128.297097, -14.745699 ], [ 128.294696, -14.735520 ], [ 128.319876, -14.741370 ], [ 128.334215, -14.758380 ] ] ], [ [ [ 128.201837, -15.140613 ], [ 128.193878, -15.166403 ], [ 128.197088, -15.193993 ], [ 128.126268, -15.156214 ], [ 128.114008, -15.121604 ], [ 128.125237, -15.095523 ], [ 128.124787, -15.040363 ], [ 128.152337, -15.051723 ], [ 128.160857, -15.092653 ], [ 128.196757, -15.125043 ], [ 128.201837, -15.140613 ] ] ], [ [ [ 128.113189, -15.171674 ], [ 128.099050, -15.195714 ], [ 128.104589, -15.165434 ], [ 128.113189, -15.171674 ] ] ], [ [ [ 127.874997, -14.454995 ], [ 127.850857, -14.479504 ], [ 127.838567, -14.457404 ], [ 127.852287, -14.451034 ], [ 127.853527, -14.435674 ], [ 127.863297, -14.430414 ], [ 127.873117, -14.438604 ], [ 127.874997, -14.454995 ] ] ], [ [ [ 127.823297, -14.366694 ], [ 127.811177, -14.377584 ], [ 127.805377, -14.357554 ], [ 127.810847, -14.352944 ], [ 127.823297, -14.366694 ] ] ], [ [ [ 127.716148, -14.237427 ], [ 127.702088, -14.242037 ], [ 127.709898, -14.233497 ], [ 127.716148, -14.237427 ] ] ], [ [ [ 127.175689, -13.903610 ], [ 127.156580, -13.898700 ], [ 127.164319, -13.896190 ], [ 127.162769, -13.882860 ], [ 127.175689, -13.903610 ] ] ], [ [ [ 126.882891, -13.990389 ], [ 126.880651, -13.976183 ], [ 126.845671, -13.963713 ], [ 126.820001, -13.966813 ], [ 126.832251, -13.961483 ], [ 126.819291, -13.960263 ], [ 126.819851, -13.953943 ], [ 126.854921, -13.957593 ], [ 126.869491, -13.967983 ], [ 126.866481, -13.955883 ], [ 126.883291, -13.973143 ], [ 126.887941, -13.986803 ], [ 126.882891, -13.990389 ] ] ], [ [ [ 126.882947, -13.990749 ], [ 126.893852, -13.987820 ], [ 126.883232, -13.992553 ], [ 126.882947, -13.990749 ] ] ], [ [ [ 126.897513, -13.986188 ], [ 126.892161, -13.981922 ], [ 126.900801, -13.984722 ], [ 126.897513, -13.986188 ] ] ], [ [ [ 126.824461, -13.945683 ], [ 126.818571, -13.949533 ], [ 126.815661, -13.941183 ], [ 126.824461, -13.945683 ] ] ], [ [ [ 126.700442, -13.943074 ], [ 126.676642, -13.961404 ], [ 126.693602, -13.931334 ], [ 126.700442, -13.943074 ] ] ], [ [ [ 126.634981, -13.871325 ], [ 126.620552, -13.882635 ], [ 126.614971, -13.862425 ], [ 126.625481, -13.853265 ], [ 126.634981, -13.871325 ] ] ], [ [ [ 126.619282, -13.890545 ], [ 126.611322, -13.900945 ], [ 126.617802, -13.908055 ], [ 126.608682, -13.913715 ], [ 126.593742, -13.898365 ], [ 126.559632, -13.903145 ], [ 126.568182, -13.896585 ], [ 126.563892, -13.891285 ], [ 126.545512, -13.893555 ], [ 126.536152, -13.907566 ], [ 126.527362, -13.901366 ], [ 126.513832, -13.906686 ], [ 126.502832, -13.886356 ], [ 126.504902, -13.869076 ], [ 126.522702, -13.866126 ], [ 126.527332, -13.873916 ], [ 126.547102, -13.871866 ], [ 126.575452, -13.887315 ], [ 126.588052, -13.885945 ], [ 126.599402, -13.897235 ], [ 126.619282, -13.890545 ] ] ], [ [ [ 126.608022, -13.945115 ], [ 126.604452, -13.952905 ], [ 126.595412, -13.941965 ], [ 126.600722, -13.935855 ], [ 126.608022, -13.945115 ] ] ], [ [ [ 126.593125, -14.215295 ], [ 126.590605, -14.222875 ], [ 126.577495, -14.217165 ], [ 126.575684, -14.197625 ], [ 126.586004, -14.200855 ], [ 126.593125, -14.215295 ] ] ], [ [ [ 126.586905, -14.223455 ], [ 126.574985, -14.226215 ], [ 126.569845, -14.213465 ], [ 126.574895, -14.203735 ], [ 126.574715, -14.216505 ], [ 126.586905, -14.223455 ] ] ], [ [ [ 126.403784, -13.989066 ], [ 126.394104, -14.009166 ], [ 126.384284, -14.011456 ], [ 126.362484, -13.982636 ], [ 126.376474, -13.974616 ], [ 126.403784, -13.989066 ] ] ], [ [ [ 126.321075, -13.942087 ], [ 126.314825, -13.961857 ], [ 126.299795, -13.967608 ], [ 126.309624, -13.927187 ], [ 126.321075, -13.942087 ] ] ], [ [ [ 126.318984, -13.886197 ], [ 126.314484, -13.894776 ], [ 126.301534, -13.883367 ], [ 126.303843, -13.866997 ], [ 126.318984, -13.886197 ] ] ], [ [ [ 126.317374, -13.909457 ], [ 126.312164, -13.923117 ], [ 126.300144, -13.920747 ], [ 126.303384, -13.903917 ], [ 126.312514, -13.900646 ], [ 126.317374, -13.909457 ] ] ], [ [ [ 126.299029, -14.163357 ], [ 126.285279, -14.171187 ], [ 126.291609, -14.159537 ], [ 126.299029, -14.163357 ] ] ], [ [ [ 126.295165, -13.941298 ], [ 126.283835, -13.945698 ], [ 126.272154, -13.927738 ], [ 126.295165, -13.941298 ] ] ], [ [ [ 126.243438, -14.148258 ], [ 126.236298, -14.161728 ], [ 126.230478, -14.150328 ], [ 126.243438, -14.148258 ] ] ], [ [ [ 126.194915, -13.935049 ], [ 126.164605, -13.963590 ], [ 126.155925, -13.960540 ], [ 126.174215, -13.932659 ], [ 126.189715, -13.927369 ], [ 126.194915, -13.935049 ] ] ], [ [ [ 126.152473, -13.752440 ], [ 126.150383, -13.759670 ], [ 126.145423, -13.748600 ], [ 126.152473, -13.752440 ] ] ], [ [ [ 126.046801, -14.327979 ], [ 126.041031, -14.337930 ], [ 126.023412, -14.328470 ], [ 126.017662, -14.353220 ], [ 125.993282, -14.336330 ], [ 125.998272, -14.325160 ], [ 125.985082, -14.313300 ], [ 125.992391, -14.302030 ], [ 125.986611, -14.289270 ], [ 126.008991, -14.280940 ], [ 126.004271, -14.302750 ], [ 126.018061, -14.307020 ], [ 126.023491, -14.300460 ], [ 126.046801, -14.327979 ] ] ], [ [ [ 126.043171, -14.233439 ], [ 126.036361, -14.242379 ], [ 126.006511, -14.249320 ], [ 125.993481, -14.243690 ], [ 126.018390, -14.225240 ], [ 126.043171, -14.233439 ] ] ], [ [ [ 126.004694, -14.438180 ], [ 125.994703, -14.448160 ], [ 125.982774, -14.446460 ], [ 125.988004, -14.435690 ], [ 126.004694, -14.438180 ] ] ], [ [ [ 125.995333, -14.376510 ], [ 125.983294, -14.377510 ], [ 125.984294, -14.388830 ], [ 125.971004, -14.388220 ], [ 125.982953, -14.364310 ], [ 125.994543, -14.362290 ], [ 125.995333, -14.376510 ] ] ], [ [ [ 125.994222, -14.321660 ], [ 125.976263, -14.337900 ], [ 125.976392, -14.328190 ], [ 125.994222, -14.321660 ] ] ], [ [ [ 125.970583, -14.346920 ], [ 125.960154, -14.350970 ], [ 125.956544, -14.374210 ], [ 125.944484, -14.388761 ], [ 125.924224, -14.377221 ], [ 125.943004, -14.365851 ], [ 125.934784, -14.360871 ], [ 125.949044, -14.345650 ], [ 125.943153, -14.336061 ], [ 125.958893, -14.335060 ], [ 125.952653, -14.326590 ], [ 125.959372, -14.322190 ], [ 125.970583, -14.346920 ] ] ], [ [ [ 125.794190, -14.160684 ], [ 125.787580, -14.171164 ], [ 125.778000, -14.157944 ], [ 125.794190, -14.160684 ] ] ], [ [ [ 125.773283, -14.326554 ], [ 125.761373, -14.323784 ], [ 125.767393, -14.319544 ], [ 125.773283, -14.326554 ] ] ], [ [ [ 125.756964, -14.451010 ], [ 125.736515, -14.476589 ], [ 125.717745, -14.477008 ], [ 125.718135, -14.453759 ], [ 125.727185, -14.449820 ], [ 125.721525, -14.441010 ], [ 125.727955, -14.409532 ], [ 125.754125, -14.416470 ], [ 125.738805, -14.429190 ], [ 125.749075, -14.452010 ], [ 125.753845, -14.445360 ], [ 125.756964, -14.451010 ] ] ], [ [ [ 125.739871, -14.183934 ], [ 125.730941, -14.192834 ], [ 125.722521, -14.182884 ], [ 125.730171, -14.174664 ], [ 125.739871, -14.183934 ] ] ], [ [ [ 125.720544, -14.351845 ], [ 125.711384, -14.355436 ], [ 125.708274, -14.347987 ], [ 125.720544, -14.351845 ] ] ], [ [ [ 125.705490, -14.135555 ], [ 125.701890, -14.144005 ], [ 125.694260, -14.139815 ], [ 125.692140, -14.107645 ], [ 125.704380, -14.116245 ], [ 125.705490, -14.135555 ] ] ], [ [ [ 125.683201, -14.168455 ], [ 125.677281, -14.176345 ], [ 125.669431, -14.165715 ], [ 125.678251, -14.157615 ], [ 125.683201, -14.168455 ] ] ], [ [ [ 125.681354, -14.370387 ], [ 125.680644, -14.377946 ], [ 125.670674, -14.379616 ], [ 125.669664, -14.367766 ], [ 125.681354, -14.370387 ] ] ], [ [ [ 125.644138, -13.946925 ], [ 125.628488, -13.961835 ], [ 125.625588, -13.931445 ], [ 125.633808, -13.932185 ], [ 125.634118, -13.946145 ], [ 125.644138, -13.946925 ] ] ], [ [ [ 125.584894, -14.357516 ], [ 125.580004, -14.364495 ], [ 125.573424, -14.357146 ], [ 125.579004, -14.348696 ], [ 125.584894, -14.357516 ] ] ], [ [ [ 125.562656, -14.486250 ], [ 125.559276, -14.494250 ], [ 125.523476, -14.485014 ], [ 125.523526, -14.467294 ], [ 125.511285, -14.454954 ], [ 125.517325, -14.449893 ], [ 125.511425, -14.444453 ], [ 125.529795, -14.422604 ], [ 125.538085, -14.444303 ], [ 125.530305, -14.447553 ], [ 125.544305, -14.455833 ], [ 125.538116, -14.474552 ], [ 125.562656, -14.486250 ] ] ], [ [ [ 125.560821, -14.105266 ], [ 125.551441, -14.107607 ], [ 125.554701, -14.099607 ], [ 125.560821, -14.105266 ] ] ], [ [ [ 125.520985, -14.425064 ], [ 125.516085, -14.434874 ], [ 125.500805, -14.430424 ], [ 125.520985, -14.425064 ] ] ], [ [ [ 125.505796, -14.508106 ], [ 125.491656, -14.506826 ], [ 125.503966, -14.499867 ], [ 125.499546, -14.505837 ], [ 125.505796, -14.508106 ] ] ], [ [ [ 125.497126, -14.499057 ], [ 125.473326, -14.511963 ], [ 125.451116, -14.496881 ], [ 125.444556, -14.481282 ], [ 125.474416, -14.497404 ], [ 125.484076, -14.484795 ], [ 125.481156, -14.491555 ], [ 125.488466, -14.488976 ], [ 125.485086, -14.494386 ], [ 125.497126, -14.499057 ] ] ], [ [ [ 125.443567, -14.574971 ], [ 125.433117, -14.580811 ], [ 125.439187, -14.568081 ], [ 125.443567, -14.574971 ] ] ], [ [ [ 125.441706, -14.539630 ], [ 125.438086, -14.547070 ], [ 125.426266, -14.544551 ], [ 125.431996, -14.531811 ], [ 125.441706, -14.539630 ] ] ], [ [ [ 125.435636, -14.553950 ], [ 125.419127, -14.564851 ], [ 125.424866, -14.548731 ], [ 125.435636, -14.553950 ] ] ], [ [ [ 125.414346, -14.539891 ], [ 125.404597, -14.541551 ], [ 125.408906, -14.535241 ], [ 125.414346, -14.539891 ] ] ], [ [ [ 125.411194, -14.336557 ], [ 125.407465, -14.344787 ], [ 125.404024, -14.334387 ], [ 125.411194, -14.336557 ] ] ], [ [ [ 125.367019, -15.078622 ], [ 125.347169, -15.083683 ], [ 125.356989, -15.072342 ], [ 125.367019, -15.078622 ] ] ], [ [ [ 125.366769, -15.010392 ], [ 125.358039, -15.029862 ], [ 125.355519, -15.014512 ], [ 125.366769, -15.010392 ] ] ], [ [ [ 125.345986, -14.493265 ], [ 125.340726, -14.504754 ], [ 125.337846, -14.498084 ], [ 125.345986, -14.493265 ] ] ], [ [ [ 125.330117, -14.553492 ], [ 125.320707, -14.556052 ], [ 125.321547, -14.550522 ], [ 125.330117, -14.553492 ] ] ], [ [ [ 125.320404, -14.267368 ], [ 125.315524, -14.272998 ], [ 125.313024, -14.261668 ], [ 125.320404, -14.267368 ] ] ], [ [ [ 125.310294, -14.276588 ], [ 125.302704, -14.293157 ], [ 125.290444, -14.288927 ], [ 125.293064, -14.269748 ], [ 125.310294, -14.276588 ] ] ], [ [ [ 125.306299, -15.069983 ], [ 125.301669, -15.072823 ], [ 125.299649, -15.063573 ], [ 125.306299, -15.069983 ] ] ], [ [ [ 125.278637, -14.581192 ], [ 125.267707, -14.587812 ], [ 125.254407, -14.577592 ], [ 125.265887, -14.577412 ], [ 125.267917, -14.563762 ], [ 125.278637, -14.581192 ] ] ], [ [ [ 125.273006, -14.478315 ], [ 125.270596, -14.483325 ], [ 125.264806, -14.470716 ], [ 125.248106, -14.472005 ], [ 125.248596, -14.464555 ], [ 125.261716, -14.461106 ], [ 125.273006, -14.478315 ] ] ], [ [ [ 125.271636, -14.414625 ], [ 125.259176, -14.428695 ], [ 125.249796, -14.428435 ], [ 125.256086, -14.418634 ], [ 125.245306, -14.418925 ], [ 125.253916, -14.411284 ], [ 125.271636, -14.414625 ] ] ], [ [ [ 125.254420, -15.085573 ], [ 125.246990, -15.095033 ], [ 125.227860, -15.096083 ], [ 125.230620, -15.084993 ], [ 125.243350, -15.078283 ], [ 125.254420, -15.085573 ] ] ], [ [ [ 125.253459, -14.977953 ], [ 125.247509, -14.982893 ], [ 125.251199, -14.992503 ], [ 125.232469, -14.996953 ], [ 125.228769, -14.991073 ], [ 125.242279, -14.985243 ], [ 125.239519, -14.977223 ], [ 125.245669, -14.979393 ], [ 125.249309, -14.967773 ], [ 125.253459, -14.977953 ] ] ], [ [ [ 125.244016, -14.422425 ], [ 125.237846, -14.429735 ], [ 125.237566, -14.413595 ], [ 125.244016, -14.422425 ] ] ], [ [ [ 125.230870, -15.070653 ], [ 125.229870, -15.084263 ], [ 125.216590, -15.097823 ], [ 125.228860, -15.099573 ], [ 125.218710, -15.104593 ], [ 125.212870, -15.098403 ], [ 125.216620, -15.105393 ], [ 125.196230, -15.120613 ], [ 125.175080, -15.122053 ], [ 125.164860, -15.099273 ], [ 125.175310, -15.097663 ], [ 125.169910, -15.084793 ], [ 125.174880, -15.078903 ], [ 125.164440, -15.082783 ], [ 125.144500, -15.041743 ], [ 125.156610, -15.048243 ], [ 125.156400, -15.026103 ], [ 125.166600, -15.020533 ], [ 125.163850, -15.029463 ], [ 125.178460, -15.048163 ], [ 125.176510, -15.066243 ], [ 125.202220, -15.057663 ], [ 125.230870, -15.070653 ] ] ], [ [ [ 125.229669, -14.908543 ], [ 125.223979, -14.909533 ], [ 125.226209, -14.902203 ], [ 125.229669, -14.908543 ] ] ], [ [ [ 125.229005, -14.300197 ], [ 125.211565, -14.314797 ], [ 125.220835, -14.286498 ], [ 125.229005, -14.300197 ] ] ], [ [ [ 125.216127, -14.495703 ], [ 125.207657, -14.496563 ], [ 125.211747, -14.517362 ], [ 125.208927, -14.526492 ], [ 125.201507, -14.525562 ], [ 125.201067, -14.547802 ], [ 125.194538, -14.556352 ], [ 125.184238, -14.551122 ], [ 125.180488, -14.559682 ], [ 125.187178, -14.569532 ], [ 125.199618, -14.562472 ], [ 125.204308, -14.576152 ], [ 125.197318, -14.583462 ], [ 125.208578, -14.583062 ], [ 125.196098, -14.590252 ], [ 125.207818, -14.597172 ], [ 125.210428, -14.591432 ], [ 125.214278, -14.607242 ], [ 125.199798, -14.612882 ], [ 125.197598, -14.601872 ], [ 125.185268, -14.609952 ], [ 125.180868, -14.634432 ], [ 125.167358, -14.619812 ], [ 125.154988, -14.636582 ], [ 125.147568, -14.635873 ], [ 125.152118, -14.655543 ], [ 125.135078, -14.651963 ], [ 125.136108, -14.628263 ], [ 125.130158, -14.637383 ], [ 125.112678, -14.627933 ], [ 125.108088, -14.642813 ], [ 125.092618, -14.625923 ], [ 125.100998, -14.619413 ], [ 125.094768, -14.612833 ], [ 125.094218, -14.567283 ], [ 125.102508, -14.568373 ], [ 125.096118, -14.546213 ], [ 125.107438, -14.556773 ], [ 125.110858, -14.545383 ], [ 125.120078, -14.557393 ], [ 125.132168, -14.551683 ], [ 125.138838, -14.564133 ], [ 125.134088, -14.576723 ], [ 125.142898, -14.564152 ], [ 125.151588, -14.565772 ], [ 125.134418, -14.545163 ], [ 125.141498, -14.538852 ], [ 125.144128, -14.546152 ], [ 125.143858, -14.530172 ], [ 125.149658, -14.533942 ], [ 125.153148, -14.526422 ], [ 125.146658, -14.525662 ], [ 125.149587, -14.519242 ], [ 125.140768, -14.522022 ], [ 125.142218, -14.515862 ], [ 125.132618, -14.529103 ], [ 125.131648, -14.512163 ], [ 125.117638, -14.507133 ], [ 125.118047, -14.493923 ], [ 125.141107, -14.472682 ], [ 125.160467, -14.471193 ], [ 125.151167, -14.452742 ], [ 125.162737, -14.456403 ], [ 125.165357, -14.439934 ], [ 125.184986, -14.459215 ], [ 125.180127, -14.483923 ], [ 125.190257, -14.473014 ], [ 125.207817, -14.487873 ], [ 125.204747, -14.499712 ], [ 125.208137, -14.492733 ], [ 125.216127, -14.495703 ] ] ], [ [ [ 125.208469, -14.952713 ], [ 125.201039, -14.953033 ], [ 125.206939, -14.958813 ], [ 125.200839, -14.966503 ], [ 125.188339, -14.962123 ], [ 125.198359, -14.953013 ], [ 125.197829, -14.941163 ], [ 125.208469, -14.952713 ] ] ], [ [ [ 125.189519, -14.870783 ], [ 125.186479, -14.875513 ], [ 125.179419, -14.868493 ], [ 125.179029, -14.852003 ], [ 125.189519, -14.870783 ] ] ], [ [ [ 125.147098, -14.663083 ], [ 125.135118, -14.670033 ], [ 125.129448, -14.665833 ], [ 125.147098, -14.663083 ] ] ], [ [ [ 125.145279, -14.761083 ], [ 125.144209, -14.767173 ], [ 125.137499, -14.761163 ], [ 125.137649, -14.748823 ], [ 125.145279, -14.761083 ] ] ], [ [ [ 125.134169, -14.752003 ], [ 125.126939, -14.760773 ], [ 125.124719, -14.755143 ], [ 125.134169, -14.752003 ] ] ], [ [ [ 125.053062, -15.309484 ], [ 125.048582, -15.323504 ], [ 125.040172, -15.315404 ], [ 125.053062, -15.309484 ] ] ], [ [ [ 125.036382, -15.327504 ], [ 125.018162, -15.371744 ], [ 124.995482, -15.375774 ], [ 124.992842, -15.357024 ], [ 125.021452, -15.321454 ], [ 125.036382, -15.327504 ] ] ], [ [ [ 125.032029, -14.782033 ], [ 125.027290, -14.792623 ], [ 125.020470, -14.786943 ], [ 125.023809, -14.780003 ], [ 125.017019, -14.780153 ], [ 125.025799, -14.765293 ], [ 125.032029, -14.782033 ] ] ], [ [ [ 125.015991, -15.206014 ], [ 125.011141, -15.213934 ], [ 125.005661, -15.209554 ], [ 125.006561, -15.203224 ], [ 125.015991, -15.206014 ] ] ], [ [ [ 125.014792, -15.430614 ], [ 125.005743, -15.439344 ], [ 125.004213, -15.433814 ], [ 125.014792, -15.430614 ] ] ], [ [ [ 124.999898, -14.516733 ], [ 124.991718, -14.529003 ], [ 124.985957, -14.520054 ], [ 124.984757, -14.528064 ], [ 124.979556, -14.524204 ], [ 124.976755, -14.507024 ], [ 124.990016, -14.498614 ], [ 124.990436, -14.484504 ], [ 124.999898, -14.516733 ] ] ], [ [ [ 124.995535, -14.440154 ], [ 124.975183, -14.452354 ], [ 124.979514, -14.444024 ], [ 124.972482, -14.437215 ], [ 124.984242, -14.427335 ], [ 124.995535, -14.440154 ] ] ], [ [ [ 124.985909, -14.395155 ], [ 124.983332, -14.424285 ], [ 124.972380, -14.411575 ], [ 124.973269, -14.397575 ], [ 124.959339, -14.401686 ], [ 124.973459, -14.383465 ], [ 124.985909, -14.395155 ] ] ], [ [ [ 124.984961, -15.055514 ], [ 124.971241, -15.086854 ], [ 124.952331, -15.098544 ], [ 124.964711, -15.082124 ], [ 124.962221, -15.066994 ], [ 124.955951, -15.070634 ], [ 124.969101, -15.042004 ], [ 124.976771, -15.040514 ], [ 124.984961, -15.055514 ] ] ], [ [ [ 124.984292, -15.343044 ], [ 124.980372, -15.352214 ], [ 124.950852, -15.364285 ], [ 124.953592, -15.352075 ], [ 124.976482, -15.339794 ], [ 124.984292, -15.343044 ] ] ], [ [ [ 124.962261, -15.044964 ], [ 124.944811, -15.075294 ], [ 124.939781, -15.067174 ], [ 124.951161, -15.063864 ], [ 124.943581, -15.057114 ], [ 124.953181, -15.043634 ], [ 124.962261, -15.044964 ] ] ], [ [ [ 124.959291, -15.029154 ], [ 124.939721, -15.049214 ], [ 124.941421, -15.038134 ], [ 124.915941, -15.029174 ], [ 124.911031, -15.020374 ], [ 124.920521, -15.008934 ], [ 124.897731, -15.004474 ], [ 124.905801, -14.994274 ], [ 124.913811, -14.996124 ], [ 124.920641, -14.980224 ], [ 124.901451, -14.983184 ], [ 124.894051, -14.996354 ], [ 124.891421, -14.987874 ], [ 124.878431, -15.004645 ], [ 124.883361, -14.996865 ], [ 124.876791, -14.986335 ], [ 124.885201, -14.978474 ], [ 124.879171, -14.975615 ], [ 124.889371, -14.959404 ], [ 124.890041, -14.965394 ], [ 124.897721, -14.961824 ], [ 124.898121, -14.974814 ], [ 124.921541, -14.967274 ], [ 124.930100, -14.948324 ], [ 124.917120, -14.941364 ], [ 124.917220, -14.922394 ], [ 124.926610, -14.926624 ], [ 124.931380, -14.947994 ], [ 124.938320, -14.947924 ], [ 124.935030, -14.961104 ], [ 124.946160, -14.965454 ], [ 124.930281, -15.007664 ], [ 124.938981, -15.002554 ], [ 124.939261, -15.015534 ], [ 124.948391, -15.001394 ], [ 124.958631, -15.005434 ], [ 124.945431, -15.018914 ], [ 124.948491, -15.027414 ], [ 124.959291, -15.029154 ] ] ], [ [ [ 124.932023, -14.521355 ], [ 124.924752, -14.515106 ], [ 124.931482, -14.514016 ], [ 124.932023, -14.521355 ] ] ], [ [ [ 124.927240, -14.895464 ], [ 124.921190, -14.897014 ], [ 124.923330, -14.888554 ], [ 124.927240, -14.895464 ] ] ], [ [ [ 124.890821, -14.948914 ], [ 124.889291, -14.955814 ], [ 124.876681, -14.941944 ], [ 124.890821, -14.948914 ] ] ], [ [ [ 124.872741, -14.939674 ], [ 124.868081, -14.941905 ], [ 124.865241, -14.930375 ], [ 124.872741, -14.939674 ] ] ], [ [ [ 124.866401, -15.023084 ], [ 124.857221, -15.021415 ], [ 124.854461, -15.031144 ], [ 124.844441, -15.024615 ], [ 124.859861, -15.011125 ], [ 124.866401, -15.023084 ] ] ], [ [ [ 124.863282, -15.286805 ], [ 124.860803, -15.313025 ], [ 124.841723, -15.314545 ], [ 124.854373, -15.303435 ], [ 124.848993, -15.293395 ], [ 124.863282, -15.286805 ] ] ], [ [ [ 124.858813, -15.342855 ], [ 124.848583, -15.349215 ], [ 124.843673, -15.342565 ], [ 124.853083, -15.337335 ], [ 124.858813, -15.342855 ] ] ], [ [ [ 124.857362, -15.256205 ], [ 124.842192, -15.280085 ], [ 124.834092, -15.272505 ], [ 124.838133, -15.281335 ], [ 124.812313, -15.289535 ], [ 124.811783, -15.306145 ], [ 124.790783, -15.287335 ], [ 124.792683, -15.260545 ], [ 124.799743, -15.260125 ], [ 124.809582, -15.229095 ], [ 124.827892, -15.245325 ], [ 124.834182, -15.247225 ], [ 124.830432, -15.237635 ], [ 124.836362, -15.237725 ], [ 124.857362, -15.256205 ] ] ], [ [ [ 124.807562, -15.216445 ], [ 124.801532, -15.222565 ], [ 124.783483, -15.218875 ], [ 124.799962, -15.203805 ], [ 124.805452, -15.211815 ], [ 124.799412, -15.214435 ], [ 124.807562, -15.216445 ] ] ], [ [ [ 124.789892, -15.013104 ], [ 124.774842, -15.035395 ], [ 124.775712, -15.013475 ], [ 124.789892, -15.013104 ] ] ], [ [ [ 124.779958, -14.949326 ], [ 124.773547, -14.952336 ], [ 124.773406, -14.937207 ], [ 124.779958, -14.949326 ] ] ], [ [ [ 124.762606, -14.954537 ], [ 124.745544, -14.951498 ], [ 124.746664, -14.939308 ], [ 124.759305, -14.942657 ], [ 124.762606, -14.954537 ] ] ], [ [ [ 124.748464, -14.910178 ], [ 124.738864, -14.941978 ], [ 124.733124, -14.911448 ], [ 124.748464, -14.910178 ] ] ], [ [ [ 124.732153, -14.860388 ], [ 124.716284, -14.872048 ], [ 124.714853, -14.859608 ], [ 124.732153, -14.860388 ] ] ], [ [ [ 124.720185, -16.376959 ], [ 124.691966, -16.377899 ], [ 124.679485, -16.368609 ], [ 124.696565, -16.369569 ], [ 124.710845, -16.360269 ], [ 124.720185, -16.376959 ] ] ], [ [ [ 124.703176, -16.356879 ], [ 124.691196, -16.364699 ], [ 124.672976, -16.356169 ], [ 124.692305, -16.349269 ], [ 124.703176, -16.356879 ] ] ], [ [ [ 124.694165, -14.953678 ], [ 124.685694, -14.950238 ], [ 124.683924, -14.937348 ], [ 124.694165, -14.953678 ] ] ], [ [ [ 124.671904, -14.945068 ], [ 124.665364, -14.949998 ], [ 124.658704, -14.937878 ], [ 124.671904, -14.945068 ] ] ], [ [ [ 124.655675, -15.788517 ], [ 124.648465, -15.799037 ], [ 124.628885, -15.804497 ], [ 124.655675, -15.788517 ] ] ], [ [ [ 124.654744, -15.397336 ], [ 124.615564, -15.427346 ], [ 124.608674, -15.420916 ], [ 124.566554, -15.444256 ], [ 124.524634, -15.448387 ], [ 124.523894, -15.435657 ], [ 124.517624, -15.441167 ], [ 124.510744, -15.434277 ], [ 124.520404, -15.431097 ], [ 124.513764, -15.426367 ], [ 124.529464, -15.413237 ], [ 124.532394, -15.425097 ], [ 124.536924, -15.416616 ], [ 124.540424, -15.420676 ], [ 124.541144, -15.433226 ], [ 124.547354, -15.425026 ], [ 124.538894, -15.412886 ], [ 124.560184, -15.400536 ], [ 124.557604, -15.391506 ], [ 124.589804, -15.381926 ], [ 124.591044, -15.369026 ], [ 124.572724, -15.378716 ], [ 124.567464, -15.371076 ], [ 124.566904, -15.382446 ], [ 124.554574, -15.388566 ], [ 124.546884, -15.383836 ], [ 124.552044, -15.364566 ], [ 124.545094, -15.359996 ], [ 124.537314, -15.375936 ], [ 124.527974, -15.357357 ], [ 124.528584, -15.375047 ], [ 124.522184, -15.378897 ], [ 124.535234, -15.383166 ], [ 124.515434, -15.380597 ], [ 124.516154, -15.392687 ], [ 124.507194, -15.397557 ], [ 124.504024, -15.380727 ], [ 124.512384, -15.365227 ], [ 124.498114, -15.369697 ], [ 124.503074, -15.377167 ], [ 124.483514, -15.385467 ], [ 124.479384, -15.398247 ], [ 124.486404, -15.403187 ], [ 124.475814, -15.405037 ], [ 124.465554, -15.403057 ], [ 124.484304, -15.380607 ], [ 124.479164, -15.376897 ], [ 124.483804, -15.361557 ], [ 124.466914, -15.372887 ], [ 124.461124, -15.355297 ], [ 124.481634, -15.345647 ], [ 124.492114, -15.358227 ], [ 124.497304, -15.348007 ], [ 124.481172, -15.335778 ], [ 124.490760, -15.321049 ], [ 124.504931, -15.326718 ], [ 124.500272, -15.336587 ], [ 124.517102, -15.333808 ], [ 124.499950, -15.319529 ], [ 124.498379, -15.307679 ], [ 124.513908, -15.306809 ], [ 124.515209, -15.313589 ], [ 124.535558, -15.303619 ], [ 124.520658, -15.305559 ], [ 124.523437, -15.293920 ], [ 124.515888, -15.303980 ], [ 124.516577, -15.298780 ], [ 124.504378, -15.304330 ], [ 124.494807, -15.292220 ], [ 124.511657, -15.277540 ], [ 124.522357, -15.274930 ], [ 124.522487, -15.282840 ], [ 124.527597, -15.273010 ], [ 124.541867, -15.280100 ], [ 124.541777, -15.264630 ], [ 124.551737, -15.264410 ], [ 124.558047, -15.249800 ], [ 124.571307, -15.245379 ], [ 124.558057, -15.255230 ], [ 124.568317, -15.266960 ], [ 124.562527, -15.280420 ], [ 124.569047, -15.281310 ], [ 124.568717, -15.295330 ], [ 124.556209, -15.314279 ], [ 124.566790, -15.320188 ], [ 124.571429, -15.313179 ], [ 124.589939, -15.312249 ], [ 124.589402, -15.336427 ], [ 124.580033, -15.342687 ], [ 124.605013, -15.341826 ], [ 124.626164, -15.374786 ], [ 124.619514, -15.381606 ], [ 124.624504, -15.393576 ], [ 124.654744, -15.397336 ] ] ], [ [ [ 124.649573, -15.167056 ], [ 124.643892, -15.174187 ], [ 124.643403, -15.162326 ], [ 124.649573, -15.167056 ] ] ], [ [ [ 124.649556, -16.349799 ], [ 124.564936, -16.344170 ], [ 124.607566, -16.341659 ], [ 124.649556, -16.349799 ] ] ], [ [ [ 124.640042, -15.281537 ], [ 124.618059, -15.290728 ], [ 124.612108, -15.283619 ], [ 124.620109, -15.265298 ], [ 124.640042, -15.281537 ] ] ], [ [ [ 124.620814, -15.432536 ], [ 124.614084, -15.447686 ], [ 124.605804, -15.443066 ], [ 124.605944, -15.452226 ], [ 124.602074, -15.441376 ], [ 124.594394, -15.441616 ], [ 124.620814, -15.432536 ] ] ], [ [ [ 124.596685, -15.910887 ], [ 124.585095, -15.952487 ], [ 124.577675, -15.948737 ], [ 124.557336, -15.964968 ], [ 124.532026, -15.966558 ], [ 124.545596, -15.936848 ], [ 124.576155, -15.920527 ], [ 124.573445, -15.910697 ], [ 124.580555, -15.917217 ], [ 124.593165, -15.905357 ], [ 124.596685, -15.910887 ] ] ], [ [ [ 124.577047, -15.268419 ], [ 124.570767, -15.269109 ], [ 124.566897, -15.256119 ], [ 124.577047, -15.268419 ] ] ], [ [ [ 124.547187, -15.231620 ], [ 124.532767, -15.236730 ], [ 124.543927, -15.227110 ], [ 124.547187, -15.231620 ] ] ], [ [ [ 124.515977, -15.211880 ], [ 124.509827, -15.223530 ], [ 124.498257, -15.214830 ], [ 124.506657, -15.205340 ], [ 124.515977, -15.211880 ] ] ], [ [ [ 124.500764, -15.456317 ], [ 124.487065, -15.464857 ], [ 124.496084, -15.451147 ], [ 124.500764, -15.456317 ] ] ], [ [ [ 124.495897, -15.207720 ], [ 124.493707, -15.213490 ], [ 124.488437, -15.206180 ], [ 124.495897, -15.207720 ] ] ], [ [ [ 124.485236, -15.967748 ], [ 124.476876, -15.981708 ], [ 124.474296, -15.975138 ], [ 124.485236, -15.967748 ] ] ], [ [ [ 124.481200, -15.318149 ], [ 124.470119, -15.313909 ], [ 124.476849, -15.310269 ], [ 124.481200, -15.318149 ] ] ], [ [ [ 124.476936, -15.987438 ], [ 124.470426, -15.993798 ], [ 124.470956, -15.983858 ], [ 124.476936, -15.987438 ] ] ], [ [ [ 124.470356, -16.004588 ], [ 124.457266, -16.029738 ], [ 124.462076, -16.000708 ], [ 124.470356, -16.004588 ] ] ], [ [ [ 124.470006, -15.914168 ], [ 124.467356, -15.942188 ], [ 124.462556, -15.939618 ], [ 124.455506, -15.955468 ], [ 124.449006, -15.984638 ], [ 124.450866, -15.938658 ], [ 124.460256, -15.918608 ], [ 124.454396, -15.919778 ], [ 124.452936, -15.907808 ], [ 124.460756, -15.908108 ], [ 124.460936, -15.897038 ], [ 124.467986, -15.906048 ], [ 124.464816, -15.917468 ], [ 124.470006, -15.914168 ] ] ], [ [ [ 124.464676, -16.355810 ], [ 124.454767, -16.373840 ], [ 124.435217, -16.373420 ], [ 124.433257, -16.368090 ], [ 124.464676, -16.355810 ] ] ], [ [ [ 124.461438, -15.300740 ], [ 124.434411, -15.321639 ], [ 124.443309, -15.306580 ], [ 124.420530, -15.315599 ], [ 124.427479, -15.305580 ], [ 124.418749, -15.307310 ], [ 124.412778, -15.292861 ], [ 124.402820, -15.312860 ], [ 124.397559, -15.307120 ], [ 124.391872, -15.332458 ], [ 124.383651, -15.320299 ], [ 124.373792, -15.329359 ], [ 124.352571, -15.322219 ], [ 124.342849, -15.309830 ], [ 124.355578, -15.292151 ], [ 124.367059, -15.308370 ], [ 124.369298, -15.288371 ], [ 124.378138, -15.286071 ], [ 124.379568, -15.294431 ], [ 124.382448, -15.287191 ], [ 124.407118, -15.285161 ], [ 124.417487, -15.263880 ], [ 124.441057, -15.249770 ], [ 124.457167, -15.269660 ], [ 124.452827, -15.278970 ], [ 124.442147, -15.272220 ], [ 124.449857, -15.290400 ], [ 124.441868, -15.298230 ], [ 124.461438, -15.300740 ] ] ], [ [ [ 124.455956, -15.860358 ], [ 124.447816, -15.844018 ], [ 124.451316, -15.834678 ], [ 124.455956, -15.860358 ] ] ], [ [ [ 124.455566, -15.875828 ], [ 124.447916, -15.886258 ], [ 124.447346, -15.874628 ], [ 124.442506, -15.878938 ], [ 124.444796, -15.870118 ], [ 124.455566, -15.875828 ] ] ], [ [ [ 124.404655, -15.530977 ], [ 124.400245, -15.534157 ], [ 124.400175, -15.524597 ], [ 124.404655, -15.530977 ] ] ], [ [ [ 124.401214, -15.342458 ], [ 124.389584, -15.344878 ], [ 124.392113, -15.337978 ], [ 124.401214, -15.342458 ] ] ], [ [ [ 124.399517, -15.227580 ], [ 124.392407, -15.250541 ], [ 124.392567, -15.234161 ], [ 124.385377, -15.239281 ], [ 124.384157, -15.228321 ], [ 124.399517, -15.227580 ] ] ], [ [ [ 124.395807, -16.320910 ], [ 124.386087, -16.322330 ], [ 124.389507, -16.316470 ], [ 124.395807, -16.320910 ] ] ], [ [ [ 124.374885, -15.390807 ], [ 124.366735, -15.391738 ], [ 124.372815, -15.397697 ], [ 124.366655, -15.398858 ], [ 124.337664, -15.376048 ], [ 124.352854, -15.360738 ], [ 124.366854, -15.366328 ], [ 124.363455, -15.386788 ], [ 124.374885, -15.390807 ] ] ], [ [ [ 124.367487, -16.365071 ], [ 124.358647, -16.375991 ], [ 124.361517, -16.364251 ], [ 124.367487, -16.365071 ] ] ], [ [ [ 124.358567, -16.346941 ], [ 124.353247, -16.358101 ], [ 124.347557, -16.349601 ], [ 124.355447, -16.340941 ], [ 124.358567, -16.346941 ] ] ], [ [ [ 124.351247, -16.359221 ], [ 124.350987, -16.364311 ], [ 124.341057, -16.359851 ], [ 124.342037, -16.352961 ], [ 124.351247, -16.359221 ] ] ], [ [ [ 124.349922, -15.330469 ], [ 124.339571, -15.332319 ], [ 124.336132, -15.344419 ], [ 124.318151, -15.356860 ], [ 124.303549, -15.351781 ], [ 124.336511, -15.325890 ], [ 124.340420, -15.313900 ], [ 124.349922, -15.330469 ] ] ], [ [ [ 124.286928, -15.301911 ], [ 124.278358, -15.312451 ], [ 124.271968, -15.303931 ], [ 124.263218, -15.310701 ], [ 124.265798, -15.304931 ], [ 124.256868, -15.301672 ], [ 124.241709, -15.319702 ], [ 124.231809, -15.318722 ], [ 124.232548, -15.297482 ], [ 124.266018, -15.282451 ], [ 124.276368, -15.279701 ], [ 124.286928, -15.301911 ] ] ], [ [ [ 124.259448, -16.384971 ], [ 124.251398, -16.401081 ], [ 124.237928, -16.400781 ], [ 124.223418, -16.380921 ], [ 124.216088, -16.354321 ], [ 124.222048, -16.355151 ], [ 124.221628, -16.347571 ], [ 124.245138, -16.389071 ], [ 124.247428, -16.378801 ], [ 124.259448, -16.384971 ] ] ], [ [ [ 124.235186, -15.968719 ], [ 124.201066, -15.965000 ], [ 124.185326, -15.924550 ], [ 124.192806, -15.933740 ], [ 124.190016, -15.916690 ], [ 124.204916, -15.923499 ], [ 124.211296, -15.954350 ], [ 124.233136, -15.952689 ], [ 124.235186, -15.968719 ] ] ], [ [ [ 124.229576, -15.938239 ], [ 124.219276, -15.943049 ], [ 124.212446, -15.918649 ], [ 124.226726, -15.927069 ], [ 124.229576, -15.938239 ] ] ], [ [ [ 124.229139, -15.320422 ], [ 124.224849, -15.325302 ], [ 124.213549, -15.318032 ], [ 124.227139, -15.314222 ], [ 124.229139, -15.320422 ] ] ], [ [ [ 124.220096, -15.946089 ], [ 124.212096, -15.949600 ], [ 124.211806, -15.935249 ], [ 124.220096, -15.946089 ] ] ], [ [ [ 124.208339, -15.330552 ], [ 124.206859, -15.337762 ], [ 124.188569, -15.337282 ], [ 124.208339, -15.330552 ] ] ], [ [ [ 124.187286, -15.953430 ], [ 124.174836, -15.948380 ], [ 124.176896, -15.937980 ], [ 124.187286, -15.953430 ] ] ], [ [ [ 124.146301, -33.843288 ], [ 124.140392, -33.862008 ], [ 124.130122, -33.862808 ], [ 124.136721, -33.852088 ], [ 124.130631, -33.841948 ], [ 124.146301, -33.843288 ] ] ], [ [ [ 124.144068, -16.249811 ], [ 124.110018, -16.249942 ], [ 124.109728, -16.258302 ], [ 124.097608, -16.251112 ], [ 124.105018, -16.246072 ], [ 124.102148, -16.237122 ], [ 124.114068, -16.239792 ], [ 124.113078, -16.229162 ], [ 124.118968, -16.241292 ], [ 124.124388, -16.235562 ], [ 124.144068, -16.249811 ] ] ], [ [ [ 124.103397, -16.120371 ], [ 124.098437, -16.126902 ], [ 124.097567, -16.117621 ], [ 124.103397, -16.120371 ] ] ], [ [ [ 124.099247, -16.094241 ], [ 124.094427, -16.114892 ], [ 124.089367, -16.099522 ], [ 124.086357, -16.116312 ], [ 124.078087, -16.110722 ], [ 124.072067, -16.119952 ], [ 124.063217, -16.114012 ], [ 124.076967, -16.103932 ], [ 124.058717, -16.105732 ], [ 124.076517, -16.093842 ], [ 124.069147, -16.081432 ], [ 124.099247, -16.094241 ] ] ], [ [ [ 124.098587, -16.158092 ], [ 124.093747, -16.164502 ], [ 124.066688, -16.153372 ], [ 124.066397, -16.144892 ], [ 124.073767, -16.144482 ], [ 124.069247, -16.138352 ], [ 124.074877, -16.135562 ], [ 124.084397, -16.146252 ], [ 124.079237, -16.131632 ], [ 124.088377, -16.145032 ], [ 124.094597, -16.142132 ], [ 124.089737, -16.151932 ], [ 124.098587, -16.158092 ] ] ], [ [ [ 124.094238, -16.230632 ], [ 124.085888, -16.237922 ], [ 124.074708, -16.230392 ], [ 124.094238, -16.230632 ] ] ], [ [ [ 124.084958, -16.167502 ], [ 124.077888, -16.174802 ], [ 124.068238, -16.166382 ], [ 124.080318, -16.161482 ], [ 124.084958, -16.167502 ] ] ], [ [ [ 124.080308, -16.248622 ], [ 124.074418, -16.255032 ], [ 124.060478, -16.240252 ], [ 124.080308, -16.248622 ] ] ], [ [ [ 123.940059, -16.276973 ], [ 123.925390, -16.282063 ], [ 123.905780, -16.276383 ], [ 123.912019, -16.270663 ], [ 123.900430, -16.271833 ], [ 123.897149, -16.256993 ], [ 123.861510, -16.236163 ], [ 123.885529, -16.246063 ], [ 123.876859, -16.232433 ], [ 123.940059, -16.276973 ] ] ], [ [ [ 123.892899, -16.186323 ], [ 123.890639, -16.190943 ], [ 123.883089, -16.183423 ], [ 123.892899, -16.186323 ] ] ], [ [ [ 123.891156, -34.102025 ], [ 123.885492, -34.108128 ], [ 123.885055, -34.101146 ], [ 123.891156, -34.102025 ] ] ], [ [ [ 123.890659, -16.202923 ], [ 123.872759, -16.218163 ], [ 123.877589, -16.199543 ], [ 123.867479, -16.191333 ], [ 123.874049, -16.188333 ], [ 123.881639, -16.197803 ], [ 123.883989, -16.188743 ], [ 123.890659, -16.202923 ] ] ], [ [ [ 123.886440, -16.280093 ], [ 123.879110, -16.289763 ], [ 123.879050, -16.281963 ], [ 123.863550, -16.273593 ], [ 123.857400, -16.253203 ], [ 123.886440, -16.280093 ] ] ], [ [ [ 123.885180, -16.319723 ], [ 123.864830, -16.289883 ], [ 123.876620, -16.293813 ], [ 123.872830, -16.299433 ], [ 123.885180, -16.319723 ] ] ], [ [ [ 123.883869, -16.173713 ], [ 123.881699, -16.182053 ], [ 123.876259, -16.174673 ], [ 123.883869, -16.173713 ] ] ], [ [ [ 123.874299, -16.201783 ], [ 123.862589, -16.202493 ], [ 123.865439, -16.197193 ], [ 123.874299, -16.201783 ] ] ], [ [ [ 123.857080, -16.278523 ], [ 123.849690, -16.280953 ], [ 123.847660, -16.271673 ], [ 123.857080, -16.278523 ] ] ], [ [ [ 123.845020, -16.235593 ], [ 123.843450, -16.241913 ], [ 123.837620, -16.224343 ], [ 123.845020, -16.235593 ] ] ], [ [ [ 123.842349, -16.189003 ], [ 123.838279, -16.214513 ], [ 123.830889, -16.203043 ], [ 123.842349, -16.189003 ] ] ], [ [ [ 123.835450, -16.246713 ], [ 123.831540, -16.252443 ], [ 123.825960, -16.248113 ], [ 123.826470, -16.257383 ], [ 123.819480, -16.253933 ], [ 123.817950, -16.269303 ], [ 123.804110, -16.245233 ], [ 123.815660, -16.249053 ], [ 123.810500, -16.236123 ], [ 123.827670, -16.239753 ], [ 123.822620, -16.227513 ], [ 123.831330, -16.235033 ], [ 123.831070, -16.223673 ], [ 123.835450, -16.246713 ] ] ], [ [ [ 123.819970, -16.208163 ], [ 123.818710, -16.218663 ], [ 123.811580, -16.204033 ], [ 123.819970, -16.208163 ] ] ], [ [ [ 123.813379, -16.199013 ], [ 123.796979, -16.187073 ], [ 123.807839, -16.188513 ], [ 123.813379, -16.199013 ] ] ], [ [ [ 123.808799, -16.200053 ], [ 123.791370, -16.200253 ], [ 123.771889, -16.165513 ], [ 123.777249, -16.163553 ], [ 123.784209, -16.180413 ], [ 123.808799, -16.200053 ] ] ], [ [ [ 123.797439, -16.145363 ], [ 123.782319, -16.149433 ], [ 123.789029, -16.159833 ], [ 123.774489, -16.148133 ], [ 123.778049, -16.142393 ], [ 123.759169, -16.149023 ], [ 123.776589, -16.160263 ], [ 123.766099, -16.158573 ], [ 123.709179, -16.113923 ], [ 123.705399, -16.118983 ], [ 123.682889, -16.112013 ], [ 123.710649, -16.106253 ], [ 123.732069, -16.117843 ], [ 123.776899, -16.125653 ], [ 123.777599, -16.112543 ], [ 123.788699, -16.113653 ], [ 123.790799, -16.128133 ], [ 123.784449, -16.132263 ], [ 123.797439, -16.145363 ] ] ], [ [ [ 123.754498, -16.263279 ], [ 123.765171, -16.269683 ], [ 123.756501, -16.271653 ], [ 123.742781, -16.261033 ], [ 123.754498, -16.263279 ] ] ], [ [ [ 123.702957, -15.940013 ], [ 123.692467, -15.952793 ], [ 123.701587, -15.959333 ], [ 123.691657, -15.957873 ], [ 123.689218, -15.967143 ], [ 123.684417, -15.958903 ], [ 123.690807, -15.935283 ], [ 123.696647, -15.936513 ], [ 123.691497, -15.926243 ], [ 123.702957, -15.940013 ] ] ], [ [ [ 123.698311, -16.355403 ], [ 123.688241, -16.356223 ], [ 123.678741, -16.344953 ], [ 123.698311, -16.355403 ] ] ], [ [ [ 123.683302, -17.034349 ], [ 123.676103, -17.043359 ], [ 123.664652, -17.028399 ], [ 123.677482, -17.021669 ], [ 123.683302, -17.034349 ] ] ], [ [ [ 123.672201, -16.356203 ], [ 123.653421, -16.348023 ], [ 123.668871, -16.348833 ], [ 123.672201, -16.356203 ] ] ], [ [ [ 123.665822, -16.416291 ], [ 123.648352, -16.417952 ], [ 123.622162, -16.400552 ], [ 123.665822, -16.416291 ] ] ], [ [ [ 123.658141, -16.344673 ], [ 123.630121, -16.335963 ], [ 123.648151, -16.335663 ], [ 123.658141, -16.344673 ] ] ], [ [ [ 123.639979, -16.099334 ], [ 123.625179, -16.106674 ], [ 123.585069, -16.081454 ], [ 123.639979, -16.099334 ] ] ], [ [ [ 123.629252, -16.354043 ], [ 123.606411, -16.342883 ], [ 123.600111, -16.327793 ], [ 123.627811, -16.345093 ], [ 123.629252, -16.354043 ] ] ], [ [ [ 123.627372, -16.420602 ], [ 123.620393, -16.428342 ], [ 123.606902, -16.417832 ], [ 123.627372, -16.420602 ] ] ], [ [ [ 123.595100, -16.160564 ], [ 123.582230, -16.160784 ], [ 123.576040, -16.146844 ], [ 123.590330, -16.144694 ], [ 123.595100, -16.160564 ] ] ], [ [ [ 123.580080, -16.241364 ], [ 123.564521, -16.241345 ], [ 123.547171, -16.219825 ], [ 123.580080, -16.241364 ] ] ], [ [ [ 123.576361, -16.263834 ], [ 123.566721, -16.268834 ], [ 123.572311, -16.258484 ], [ 123.576361, -16.263834 ] ] ], [ [ [ 123.572981, -16.249674 ], [ 123.565961, -16.261934 ], [ 123.546281, -16.251925 ], [ 123.564581, -16.259884 ], [ 123.564251, -16.245075 ], [ 123.572981, -16.249674 ] ] ], [ [ [ 123.564059, -16.078104 ], [ 123.550269, -16.077084 ], [ 123.557100, -16.096584 ], [ 123.547950, -16.099894 ], [ 123.552430, -16.095974 ], [ 123.543880, -16.085394 ], [ 123.535440, -16.087574 ], [ 123.538520, -16.095744 ], [ 123.525630, -16.086694 ], [ 123.522529, -16.069034 ], [ 123.537589, -16.058314 ], [ 123.564059, -16.078104 ] ] ], [ [ [ 123.561677, -34.337796 ], [ 123.559537, -34.360006 ], [ 123.533998, -34.378066 ], [ 123.533847, -34.368826 ], [ 123.544717, -34.364646 ], [ 123.543077, -34.356416 ], [ 123.561677, -34.337796 ] ] ], [ [ [ 123.559471, -16.605066 ], [ 123.550661, -16.607476 ], [ 123.552861, -16.597216 ], [ 123.559471, -16.605066 ] ] ], [ [ [ 123.553747, -17.264932 ], [ 123.545267, -17.290322 ], [ 123.538447, -17.242032 ], [ 123.543667, -17.232562 ], [ 123.551857, -17.241422 ], [ 123.553747, -17.264932 ] ] ], [ [ [ 123.551969, -16.046464 ], [ 123.530189, -16.050444 ], [ 123.508429, -16.024304 ], [ 123.517089, -16.026814 ], [ 123.522089, -16.017254 ], [ 123.529389, -16.023654 ], [ 123.521999, -16.026864 ], [ 123.527059, -16.035044 ], [ 123.533539, -16.030014 ], [ 123.540419, -16.044094 ], [ 123.551969, -16.046464 ] ] ], [ [ [ 123.551777, -17.305272 ], [ 123.545948, -17.318472 ], [ 123.542967, -17.303652 ], [ 123.551777, -17.305272 ] ] ], [ [ [ 123.547791, -16.265395 ], [ 123.546661, -16.273515 ], [ 123.525681, -16.277285 ], [ 123.503391, -16.258435 ], [ 123.524391, -16.265185 ], [ 123.539511, -16.262715 ], [ 123.539231, -16.255145 ], [ 123.547791, -16.265395 ] ] ], [ [ [ 123.546407, -17.297342 ], [ 123.540857, -17.301152 ], [ 123.537257, -17.291982 ], [ 123.546407, -17.297342 ] ] ], [ [ [ 123.546280, -16.202865 ], [ 123.545270, -16.210425 ], [ 123.539280, -16.187655 ], [ 123.546280, -16.202865 ] ] ], [ [ [ 123.538491, -16.592456 ], [ 123.522781, -16.604856 ], [ 123.517852, -16.580845 ], [ 123.527242, -16.579575 ], [ 123.529242, -16.591466 ], [ 123.538491, -16.592456 ] ] ], [ [ [ 123.536827, -34.009693 ], [ 123.527637, -34.023343 ], [ 123.523697, -34.006883 ], [ 123.536827, -34.009693 ] ] ], [ [ [ 123.535228, -17.321252 ], [ 123.531288, -17.332192 ], [ 123.528237, -17.307092 ], [ 123.535228, -17.321252 ] ] ], [ [ [ 123.534940, -16.152795 ], [ 123.534660, -16.157885 ], [ 123.526010, -16.144695 ], [ 123.534940, -16.152795 ] ] ], [ [ [ 123.531241, -16.258465 ], [ 123.497041, -16.249675 ], [ 123.491331, -16.259115 ], [ 123.505771, -16.266375 ], [ 123.506631, -16.274295 ], [ 123.489791, -16.284765 ], [ 123.479781, -16.244095 ], [ 123.447401, -16.228875 ], [ 123.447621, -16.218245 ], [ 123.457311, -16.208955 ], [ 123.479011, -16.214355 ], [ 123.473831, -16.220145 ], [ 123.488041, -16.224835 ], [ 123.478071, -16.226895 ], [ 123.490671, -16.243285 ], [ 123.531241, -16.258465 ] ] ], [ [ [ 123.531181, -16.609346 ], [ 123.509541, -16.640466 ], [ 123.480531, -16.633756 ], [ 123.456542, -16.617146 ], [ 123.489181, -16.615486 ], [ 123.508221, -16.631406 ], [ 123.502321, -16.623556 ], [ 123.512281, -16.611776 ], [ 123.531181, -16.609346 ] ] ], [ [ [ 123.526168, -17.344372 ], [ 123.523859, -17.358492 ], [ 123.515738, -17.335962 ], [ 123.526168, -17.344372 ] ] ], [ [ [ 123.525160, -16.147515 ], [ 123.523141, -16.162975 ], [ 123.505261, -16.161915 ], [ 123.511501, -16.145465 ], [ 123.519380, -16.140905 ], [ 123.525160, -16.147515 ] ] ], [ [ [ 123.521711, -16.275895 ], [ 123.515061, -16.298675 ], [ 123.512521, -16.282485 ], [ 123.521711, -16.275895 ] ] ], [ [ [ 123.493402, -16.600296 ], [ 123.478422, -16.609996 ], [ 123.483812, -16.598066 ], [ 123.493402, -16.600296 ] ] ], [ [ [ 123.460991, -16.167835 ], [ 123.428301, -16.162225 ], [ 123.454281, -16.154745 ], [ 123.460991, -16.167835 ] ] ], [ [ [ 123.459381, -16.269815 ], [ 123.442801, -16.267716 ], [ 123.446951, -16.274316 ], [ 123.438251, -16.278296 ], [ 123.434571, -16.271026 ], [ 123.438761, -16.262366 ], [ 123.459381, -16.269815 ] ] ], [ [ [ 123.457898, -17.335873 ], [ 123.456149, -17.342233 ], [ 123.447099, -17.338233 ], [ 123.443528, -17.324653 ], [ 123.457898, -17.335873 ] ] ], [ [ [ 123.455532, -16.530435 ], [ 123.429332, -16.524876 ], [ 123.441432, -16.521825 ], [ 123.455532, -16.530435 ] ] ], [ [ [ 123.446000, -16.088115 ], [ 123.434270, -16.091845 ], [ 123.442120, -16.113625 ], [ 123.424490, -16.087795 ], [ 123.432320, -16.087425 ], [ 123.432670, -16.076455 ], [ 123.446000, -16.088115 ] ] ], [ [ [ 123.435441, -16.277706 ], [ 123.422101, -16.278036 ], [ 123.432481, -16.269996 ], [ 123.435441, -16.277706 ] ] ], [ [ [ 123.430001, -16.283646 ], [ 123.421051, -16.289446 ], [ 123.416521, -16.274476 ], [ 123.430001, -16.283646 ] ] ], [ [ [ 123.423888, -17.322183 ], [ 123.403658, -17.319363 ], [ 123.399528, -17.300693 ], [ 123.423888, -17.322183 ] ] ], [ [ [ 123.422520, -16.131755 ], [ 123.414170, -16.136875 ], [ 123.408070, -16.126415 ], [ 123.400270, -16.134485 ], [ 123.389340, -16.129065 ], [ 123.395360, -16.123915 ], [ 123.389900, -16.119465 ], [ 123.400460, -16.116735 ], [ 123.393510, -16.109665 ], [ 123.401350, -16.108835 ], [ 123.402570, -16.117825 ], [ 123.422520, -16.131755 ] ] ], [ [ [ 123.422142, -16.343036 ], [ 123.414762, -16.343536 ], [ 123.418862, -16.332376 ], [ 123.422142, -16.343036 ] ] ], [ [ [ 123.419370, -16.084585 ], [ 123.404970, -16.086375 ], [ 123.406320, -16.080165 ], [ 123.389240, -16.069825 ], [ 123.419370, -16.084585 ] ] ], [ [ [ 123.403002, -16.372136 ], [ 123.399642, -16.380576 ], [ 123.383322, -16.373186 ], [ 123.403002, -16.372136 ] ] ], [ [ [ 123.400362, -16.527766 ], [ 123.387832, -16.527196 ], [ 123.380082, -16.517176 ], [ 123.398282, -16.513056 ], [ 123.400362, -16.527766 ] ] ], [ [ [ 123.391252, -16.582626 ], [ 123.387972, -16.604636 ], [ 123.362992, -16.583596 ], [ 123.348152, -16.544906 ], [ 123.352412, -16.530136 ], [ 123.358612, -16.530986 ], [ 123.364682, -16.556026 ], [ 123.391252, -16.582626 ] ] ], [ [ [ 123.376390, -16.058285 ], [ 123.358170, -16.056755 ], [ 123.361620, -16.050045 ], [ 123.376390, -16.058285 ] ] ], [ [ [ 123.361102, -16.427126 ], [ 123.359682, -16.439096 ], [ 123.344842, -16.447086 ], [ 123.346332, -16.417256 ], [ 123.361102, -16.427126 ] ] ], [ [ [ 123.357412, -16.361407 ], [ 123.335932, -16.358717 ], [ 123.334682, -16.332817 ], [ 123.349362, -16.339737 ], [ 123.357412, -16.361407 ] ] ], [ [ [ 123.350751, -16.162046 ], [ 123.341751, -16.161166 ], [ 123.345991, -16.169566 ], [ 123.335841, -16.166986 ], [ 123.319851, -16.152916 ], [ 123.327241, -16.150846 ], [ 123.322151, -16.145366 ], [ 123.333871, -16.154416 ], [ 123.344341, -16.149206 ], [ 123.350751, -16.162046 ] ] ], [ [ [ 123.327591, -16.139886 ], [ 123.309431, -16.142756 ], [ 123.307981, -16.136636 ], [ 123.327591, -16.139886 ] ] ], [ [ [ 123.318522, -16.322257 ], [ 123.309302, -16.320357 ], [ 123.308972, -16.307007 ], [ 123.318522, -16.322257 ] ] ], [ [ [ 123.316771, -16.134916 ], [ 123.301891, -16.137596 ], [ 123.289971, -16.125946 ], [ 123.316771, -16.134916 ] ] ], [ [ [ 123.313760, -16.033365 ], [ 123.294920, -16.045956 ], [ 123.277530, -16.043406 ], [ 123.313760, -16.033365 ] ] ], [ [ [ 123.305812, -16.306977 ], [ 123.302082, -16.316207 ], [ 123.299972, -16.306237 ], [ 123.305812, -16.306977 ] ] ], [ [ [ 123.297452, -16.300787 ], [ 123.295872, -16.306087 ], [ 123.290882, -16.301627 ], [ 123.297452, -16.300787 ] ] ], [ [ [ 123.225803, -16.407458 ], [ 123.213343, -16.422588 ], [ 123.199383, -16.424708 ], [ 123.213083, -16.393198 ], [ 123.225803, -16.407458 ] ] ], [ [ [ 123.216378, -34.088235 ], [ 123.207209, -34.119455 ], [ 123.205889, -34.107725 ], [ 123.192979, -34.117396 ], [ 123.193819, -34.108595 ], [ 123.180809, -34.107556 ], [ 123.173159, -34.124456 ], [ 123.170619, -34.113736 ], [ 123.161119, -34.116876 ], [ 123.157479, -34.110326 ], [ 123.170288, -34.090396 ], [ 123.201728, -34.092945 ], [ 123.214638, -34.080895 ], [ 123.216378, -34.088235 ] ] ], [ [ [ 123.211453, -16.392728 ], [ 123.192493, -16.432768 ], [ 123.185353, -16.432468 ], [ 123.183843, -16.421258 ], [ 123.176563, -16.433508 ], [ 123.166583, -16.425149 ], [ 123.178863, -16.406059 ], [ 123.168163, -16.389109 ], [ 123.187163, -16.386368 ], [ 123.191143, -16.397038 ], [ 123.205893, -16.387128 ], [ 123.211453, -16.392728 ] ] ], [ [ [ 123.188488, -34.078365 ], [ 123.183178, -34.087155 ], [ 123.178728, -34.079815 ], [ 123.188488, -34.078365 ] ] ], [ [ [ 123.167983, -16.405039 ], [ 123.152423, -16.423529 ], [ 123.159363, -16.400659 ], [ 123.167983, -16.405039 ] ] ], [ [ [ 123.166635, -15.528529 ], [ 123.152765, -15.532459 ], [ 123.153605, -15.511449 ], [ 123.166635, -15.528529 ] ] ], [ [ [ 123.158473, -16.397139 ], [ 123.143453, -16.389409 ], [ 123.152723, -16.387129 ], [ 123.158473, -16.397139 ] ] ], [ [ [ 123.135823, -16.400859 ], [ 123.124963, -16.408539 ], [ 123.124903, -16.423799 ], [ 123.118043, -16.409369 ], [ 123.126113, -16.398379 ], [ 123.135823, -16.400859 ] ] ], [ [ [ 123.129223, -16.434929 ], [ 123.104123, -16.437479 ], [ 123.090913, -16.425919 ], [ 123.107323, -16.424289 ], [ 123.129223, -16.434929 ] ] ], [ [ [ 122.862299, -33.982616 ], [ 122.813979, -34.003036 ], [ 122.843339, -33.983116 ], [ 122.862299, -33.982616 ] ] ], [ [ [ 122.813069, -34.008576 ], [ 122.799569, -34.014226 ], [ 122.798419, -34.004466 ], [ 122.807739, -34.000696 ], [ 122.813069, -34.008576 ] ] ], [ [ [ 122.654920, -33.996987 ], [ 122.651940, -34.002627 ], [ 122.647340, -33.998237 ], [ 122.654920, -33.996987 ] ] ], [ [ [ 122.261105, -34.124150 ], [ 122.252565, -34.127881 ], [ 122.256164, -34.142961 ], [ 122.249174, -34.145101 ], [ 122.246334, -34.161311 ], [ 122.235684, -34.158881 ], [ 122.239143, -34.126411 ], [ 122.231214, -34.126531 ], [ 122.238464, -34.119920 ], [ 122.231354, -34.108620 ], [ 122.261105, -34.124150 ] ] ], [ [ [ 122.151673, -34.033439 ], [ 122.128523, -34.029409 ], [ 122.147073, -34.027169 ], [ 122.151673, -34.033439 ] ] ], [ [ [ 122.126503, -16.852570 ], [ 122.101863, -16.855070 ], [ 122.112663, -16.858450 ], [ 122.092593, -16.854631 ], [ 122.126503, -16.852570 ] ] ], [ [ [ 122.109584, -34.064350 ], [ 122.097724, -34.064620 ], [ 122.103624, -34.059040 ], [ 122.109584, -34.064350 ] ] ], [ [ [ 122.059017, -34.145891 ], [ 122.038627, -34.141572 ], [ 122.050357, -34.137912 ], [ 122.059017, -34.145891 ] ] ], [ [ [ 122.026873, -33.963460 ], [ 122.004353, -33.970920 ], [ 122.002263, -33.958060 ], [ 122.026873, -33.963460 ] ] ], [ [ [ 122.011284, -34.024181 ], [ 121.993355, -34.042161 ], [ 121.982475, -34.036721 ], [ 122.011284, -34.024181 ] ] ], [ [ [ 122.004794, -33.987270 ], [ 121.987044, -33.988881 ], [ 121.995353, -33.980460 ], [ 122.004794, -33.987270 ] ] ], [ [ [ 121.992693, -33.973120 ], [ 121.981824, -33.979161 ], [ 121.976315, -33.972832 ], [ 121.992693, -33.973120 ] ] ], [ [ [ 121.984127, -34.117533 ], [ 121.973548, -34.120163 ], [ 121.975807, -34.113843 ], [ 121.984127, -34.117533 ] ] ], [ [ [ 121.979725, -34.049472 ], [ 121.953565, -34.055912 ], [ 121.957795, -34.045022 ], [ 121.979725, -34.049472 ] ] ], [ [ [ 121.910222, -33.917719 ], [ 121.903813, -33.924559 ], [ 121.896672, -33.920019 ], [ 121.910222, -33.917719 ] ] ], [ [ [ 121.883822, -33.920179 ], [ 121.874292, -33.926889 ], [ 121.868372, -33.922459 ], [ 121.883822, -33.920179 ] ] ], [ [ [ 121.803543, -33.924811 ], [ 121.795934, -33.928591 ], [ 121.788424, -33.920549 ], [ 121.803543, -33.924811 ] ] ], [ [ [ 121.689596, -34.005122 ], [ 121.669176, -34.002433 ], [ 121.669706, -33.994753 ], [ 121.679996, -33.994373 ], [ 121.689596, -34.005122 ] ] ], [ [ [ 121.616807, -34.018844 ], [ 121.605967, -34.039344 ], [ 121.593107, -34.028943 ], [ 121.605567, -34.028834 ], [ 121.607917, -34.013664 ], [ 121.616807, -34.018844 ] ] ], [ [ [ 119.613867, -34.375885 ], [ 119.605835, -34.378036 ], [ 119.598657, -34.368456 ], [ 119.613867, -34.375885 ] ] ], [ [ [ 118.527655, -20.312141 ], [ 118.510665, -20.323751 ], [ 118.499545, -20.318621 ], [ 118.511755, -20.309091 ], [ 118.527655, -20.312141 ] ] ], [ [ [ 118.486712, -34.921999 ], [ 118.477923, -34.936849 ], [ 118.466729, -34.935495 ], [ 118.436860, -34.910698 ], [ 118.441545, -34.904050 ], [ 118.456806, -34.904944 ], [ 118.486712, -34.921999 ] ] ], [ [ [ 118.069948, -35.064917 ], [ 118.044119, -35.066411 ], [ 118.039712, -35.059841 ], [ 118.069948, -35.064917 ] ] ], [ [ [ 117.874168, -20.516177 ], [ 117.862358, -20.532148 ], [ 117.845238, -20.539198 ], [ 117.874168, -20.516177 ] ] ], [ [ [ 117.744051, -20.627250 ], [ 117.734171, -20.653710 ], [ 117.711371, -20.642980 ], [ 117.717111, -20.607560 ], [ 117.733961, -20.626600 ], [ 117.744051, -20.627250 ] ] ], [ [ [ 117.089441, -20.616303 ], [ 117.058322, -20.638793 ], [ 117.037842, -20.635984 ], [ 117.072522, -20.616283 ], [ 117.089441, -20.616303 ] ] ], [ [ [ 117.084729, -20.446752 ], [ 117.075959, -20.465602 ], [ 117.074439, -20.433752 ], [ 117.068689, -20.430922 ], [ 117.081849, -20.431522 ], [ 117.084729, -20.446752 ] ] ], [ [ [ 116.975219, -20.439783 ], [ 116.973819, -20.445323 ], [ 116.960049, -20.430173 ], [ 116.966129, -20.425953 ], [ 116.975219, -20.439783 ] ] ], [ [ [ 116.952899, -20.420053 ], [ 116.929889, -20.418394 ], [ 116.849338, -20.378805 ], [ 116.831809, -20.354075 ], [ 116.838499, -20.352006 ], [ 116.952899, -20.420053 ] ] ], [ [ [ 116.886349, -20.480536 ], [ 116.878981, -20.505426 ], [ 116.866120, -20.518596 ], [ 116.856071, -20.511616 ], [ 116.837001, -20.520006 ], [ 116.816122, -20.517866 ], [ 116.854348, -20.445166 ], [ 116.885701, -20.423638 ], [ 116.873118, -20.456576 ], [ 116.862718, -20.459796 ], [ 116.862549, -20.469736 ], [ 116.870429, -20.465736 ], [ 116.869809, -20.480076 ], [ 116.860889, -20.489386 ], [ 116.867641, -20.495326 ], [ 116.886349, -20.480536 ] ] ], [ [ [ 116.844128, -20.457306 ], [ 116.837418, -20.458476 ], [ 116.843008, -20.452006 ], [ 116.844128, -20.457306 ] ] ], [ [ [ 116.838758, -20.426296 ], [ 116.825078, -20.458326 ], [ 116.798329, -20.472587 ], [ 116.799148, -20.451467 ], [ 116.815558, -20.450246 ], [ 116.823238, -20.434626 ], [ 116.838758, -20.426296 ] ] ], [ [ [ 116.820204, -20.416699 ], [ 116.811248, -20.414596 ], [ 116.823788, -20.409215 ], [ 116.821180, -20.416644 ], [ 116.834138, -20.415925 ], [ 116.812378, -20.440776 ], [ 116.818088, -20.416816 ], [ 116.820204, -20.416699 ] ] ], [ [ [ 116.827288, -20.465986 ], [ 116.799342, -20.518307 ], [ 116.786862, -20.515777 ], [ 116.805340, -20.481466 ], [ 116.802588, -20.474646 ], [ 116.827288, -20.465986 ] ] ], [ [ [ 116.697464, -20.644838 ], [ 116.683404, -20.662178 ], [ 116.675484, -20.661878 ], [ 116.674544, -20.651818 ], [ 116.697464, -20.644838 ] ] ], [ [ [ 116.692212, -20.505437 ], [ 116.690013, -20.518997 ], [ 116.677213, -20.523237 ], [ 116.678052, -20.503697 ], [ 116.692212, -20.505437 ] ] ], [ [ [ 116.680673, -20.584068 ], [ 116.670073, -20.596538 ], [ 116.677403, -20.599438 ], [ 116.667374, -20.628388 ], [ 116.649934, -20.621248 ], [ 116.635363, -20.632378 ], [ 116.649333, -20.599118 ], [ 116.668153, -20.596998 ], [ 116.680673, -20.584068 ] ] ], [ [ [ 116.676393, -20.548978 ], [ 116.635343, -20.607768 ], [ 116.600103, -20.612219 ], [ 116.605703, -20.604778 ], [ 116.597172, -20.602749 ], [ 116.613433, -20.593078 ], [ 116.624243, -20.572368 ], [ 116.643363, -20.560428 ], [ 116.649633, -20.567058 ], [ 116.671023, -20.545658 ], [ 116.676393, -20.548978 ] ] ], [ [ [ 116.671183, -20.518177 ], [ 116.661653, -20.526998 ], [ 116.656143, -20.517418 ], [ 116.671183, -20.518177 ] ] ], [ [ [ 116.662114, -20.675499 ], [ 116.656864, -20.680709 ], [ 116.650934, -20.672049 ], [ 116.662114, -20.675499 ] ] ], [ [ [ 116.650012, -20.548878 ], [ 116.645513, -20.558268 ], [ 116.635382, -20.555068 ], [ 116.650012, -20.548878 ] ] ], [ [ [ 116.635012, -20.458967 ], [ 116.627712, -20.460247 ], [ 116.626842, -20.453697 ], [ 116.635012, -20.458967 ] ] ], [ [ [ 116.619152, -20.473828 ], [ 116.588972, -20.500838 ], [ 116.566062, -20.485748 ], [ 116.609222, -20.453887 ], [ 116.606662, -20.467338 ], [ 116.619152, -20.473828 ] ] ], [ [ [ 116.586122, -20.575539 ], [ 116.585083, -20.583829 ], [ 116.574182, -20.586250 ], [ 116.575902, -20.594709 ], [ 116.562552, -20.586530 ], [ 116.555012, -20.590060 ], [ 116.549921, -20.604760 ], [ 116.560741, -20.602939 ], [ 116.560861, -20.609339 ], [ 116.552761, -20.620890 ], [ 116.530061, -20.615450 ], [ 116.501421, -20.621540 ], [ 116.463222, -20.609611 ], [ 116.485902, -20.585140 ], [ 116.512871, -20.582660 ], [ 116.512692, -20.594630 ], [ 116.523752, -20.601140 ], [ 116.533102, -20.598160 ], [ 116.542451, -20.572950 ], [ 116.552262, -20.568389 ], [ 116.555462, -20.585430 ], [ 116.566212, -20.576010 ], [ 116.573562, -20.583090 ], [ 116.586122, -20.575539 ] ] ], [ [ [ 116.505132, -35.027943 ], [ 116.498890, -35.036317 ], [ 116.490810, -35.033270 ], [ 116.505132, -35.027943 ] ] ], [ [ [ 116.451572, -20.664521 ], [ 116.434102, -20.655321 ], [ 116.448522, -20.651661 ], [ 116.451572, -20.664521 ] ] ], [ [ [ 116.248732, -20.813223 ], [ 116.247312, -20.818873 ], [ 116.242102, -20.803763 ], [ 116.248732, -20.813223 ] ] ], [ [ [ 116.179151, -20.945226 ], [ 116.175971, -20.956346 ], [ 116.174191, -20.934856 ], [ 116.179151, -20.945226 ] ] ], [ [ [ 116.157821, -20.937576 ], [ 116.152371, -20.948326 ], [ 116.147511, -20.934226 ], [ 116.157821, -20.937576 ] ] ], [ [ [ 115.902311, -20.955348 ], [ 115.881630, -20.949709 ], [ 115.885110, -20.938648 ], [ 115.900861, -20.937628 ], [ 115.902311, -20.955348 ] ] ], [ [ [ 115.700388, -32.226360 ], [ 115.686935, -32.232409 ], [ 115.700088, -32.244553 ], [ 115.680808, -32.244161 ], [ 115.660534, -32.156225 ], [ 115.674637, -32.165189 ], [ 115.683319, -32.205863 ], [ 115.700388, -32.226360 ] ] ], [ [ [ 115.694669, -32.305286 ], [ 115.689953, -32.309051 ], [ 115.689832, -32.301809 ], [ 115.694669, -32.305286 ] ] ], [ [ [ 115.585513, -20.403446 ], [ 115.579164, -20.409306 ], [ 115.582974, -20.420365 ], [ 115.577234, -20.419685 ], [ 115.570543, -20.401956 ], [ 115.546023, -20.381486 ], [ 115.559922, -20.378006 ], [ 115.566963, -20.393486 ], [ 115.585513, -20.403446 ] ] ], [ [ [ 115.583248, -20.661117 ], [ 115.565858, -20.640997 ], [ 115.581458, -20.651297 ], [ 115.583248, -20.661117 ] ] ], [ [ [ 115.558403, -32.003453 ], [ 115.551173, -32.012473 ], [ 115.531653, -32.014954 ], [ 115.527643, -32.027634 ], [ 115.507593, -32.012964 ], [ 115.449783, -32.026185 ], [ 115.456893, -32.015734 ], [ 115.477243, -32.013764 ], [ 115.511343, -31.987614 ], [ 115.539653, -31.988183 ], [ 115.545093, -32.000753 ], [ 115.558403, -32.003453 ] ] ], [ [ [ 115.551205, -20.442445 ], [ 115.548445, -20.446994 ], [ 115.543165, -20.440365 ], [ 115.547655, -20.435316 ], [ 115.551205, -20.442445 ] ] ], [ [ [ 115.549115, -20.432686 ], [ 115.543065, -20.436895 ], [ 115.543944, -20.415346 ], [ 115.549115, -20.432686 ] ] ], [ [ [ 115.547284, -21.387085 ], [ 115.542674, -21.394745 ], [ 115.542614, -21.381985 ], [ 115.547284, -21.387085 ] ] ], [ [ [ 115.531971, -20.478538 ], [ 115.534555, -20.466331 ], [ 115.539175, -20.470976 ], [ 115.533972, -20.477622 ], [ 115.541565, -20.474146 ], [ 115.532206, -20.486096 ], [ 115.536506, -20.491406 ], [ 115.530276, -20.490716 ], [ 115.535906, -20.492756 ], [ 115.532176, -20.504946 ], [ 115.525006, -20.493306 ], [ 115.521147, -20.506046 ], [ 115.517185, -20.441486 ], [ 115.530605, -20.440945 ], [ 115.524495, -20.437775 ], [ 115.533224, -20.413636 ], [ 115.531565, -20.430646 ], [ 115.537824, -20.422106 ], [ 115.539475, -20.433506 ], [ 115.533945, -20.445575 ], [ 115.543775, -20.443445 ], [ 115.545795, -20.454625 ], [ 115.540635, -20.467636 ], [ 115.534689, -20.465696 ], [ 115.538135, -20.449415 ], [ 115.525805, -20.447145 ], [ 115.533224, -20.451215 ], [ 115.531655, -20.457535 ], [ 115.524355, -20.454245 ], [ 115.529116, -20.470516 ], [ 115.521426, -20.483366 ], [ 115.531971, -20.478538 ] ] ], [ [ [ 115.526096, -20.410539 ], [ 115.540844, -20.402356 ], [ 115.526464, -20.411026 ], [ 115.526096, -20.410539 ] ] ], [ [ [ 115.539503, -20.371706 ], [ 115.512763, -20.364835 ], [ 115.517503, -20.358425 ], [ 115.532533, -20.361036 ], [ 115.539503, -20.371706 ] ] ], [ [ [ 115.529804, -20.423036 ], [ 115.523554, -20.427775 ], [ 115.526214, -20.415766 ], [ 115.529804, -20.423036 ] ] ], [ [ [ 115.525987, -20.399742 ], [ 115.517734, -20.401076 ], [ 115.520154, -20.389006 ], [ 115.525987, -20.399742 ] ] ], [ [ [ 115.476919, -20.733548 ], [ 115.470930, -20.741349 ], [ 115.475910, -20.766069 ], [ 115.469190, -20.766989 ], [ 115.470650, -20.777599 ], [ 115.453530, -20.805620 ], [ 115.447580, -20.802200 ], [ 115.447450, -20.828890 ], [ 115.424520, -20.838070 ], [ 115.420731, -20.863700 ], [ 115.374991, -20.894811 ], [ 115.365461, -20.871111 ], [ 115.332781, -20.867751 ], [ 115.320411, -20.875101 ], [ 115.333751, -20.876111 ], [ 115.321031, -20.891581 ], [ 115.306821, -20.860441 ], [ 115.321540, -20.808271 ], [ 115.433089, -20.666898 ], [ 115.468679, -20.680238 ], [ 115.458339, -20.692378 ], [ 115.476919, -20.733548 ] ] ], [ [ [ 115.465286, -21.493407 ], [ 115.437428, -21.528148 ], [ 115.420108, -21.520118 ], [ 115.435077, -21.503197 ], [ 115.465286, -21.493407 ] ] ], [ [ [ 115.361458, -21.485118 ], [ 115.351067, -21.483258 ], [ 115.356037, -21.468328 ], [ 115.361458, -21.485118 ] ] ], [ [ [ 115.337102, -20.966192 ], [ 115.324002, -20.973882 ], [ 115.316621, -20.948202 ], [ 115.337102, -20.966192 ] ] ], [ [ [ 115.335951, -20.905681 ], [ 115.316531, -20.938272 ], [ 115.324671, -20.919921 ], [ 115.320791, -20.895991 ], [ 115.335951, -20.905681 ] ] ], [ [ [ 115.248307, -21.568981 ], [ 115.212386, -21.599761 ], [ 115.229236, -21.569531 ], [ 115.248307, -21.568981 ] ] ], [ [ [ 115.024964, -21.458280 ], [ 115.016784, -21.465200 ], [ 114.971534, -21.459380 ], [ 114.995974, -21.450830 ], [ 115.024964, -21.458280 ] ] ], [ [ [ 114.766554, -21.522192 ], [ 114.766454, -21.528852 ], [ 114.757644, -21.528192 ], [ 114.766554, -21.522192 ] ] ], [ [ [ 114.697414, -21.625864 ], [ 114.682334, -21.630744 ], [ 114.687744, -21.620234 ], [ 114.663904, -21.592164 ], [ 114.685544, -21.604994 ], [ 114.697414, -21.625864 ] ] ], [ [ [ 114.582488, -21.990900 ], [ 114.570718, -22.000991 ], [ 114.566138, -21.986731 ], [ 114.579208, -21.983900 ], [ 114.582488, -21.990900 ] ] ], [ [ [ 114.539751, -22.052841 ], [ 114.533689, -22.061613 ], [ 114.500758, -22.012392 ], [ 114.510348, -21.993762 ], [ 114.540818, -22.007431 ], [ 114.532308, -22.022862 ], [ 114.542278, -22.028422 ], [ 114.545549, -22.044452 ], [ 114.539967, -22.052529 ], [ 114.545549, -22.048512 ], [ 114.548459, -22.057203 ], [ 114.540339, -22.060033 ], [ 114.539751, -22.052841 ] ] ], [ [ [ 114.491409, -22.118596 ], [ 114.490200, -22.135416 ], [ 114.484259, -22.135296 ], [ 114.491409, -22.118596 ] ] ], [ [ [ 114.489950, -22.147037 ], [ 114.489100, -22.153137 ], [ 114.482680, -22.150307 ], [ 114.489950, -22.147037 ] ] ], [ [ [ 114.392474, -21.628267 ], [ 114.369784, -21.651857 ], [ 114.358194, -21.651177 ], [ 114.375333, -21.628037 ], [ 114.392474, -21.628267 ] ] ], [ [ [ 114.351554, -21.665957 ], [ 114.334524, -21.675208 ], [ 114.306014, -21.711648 ], [ 114.317614, -21.685588 ], [ 114.345634, -21.660427 ], [ 114.351554, -21.665957 ] ] ], [ [ [ 114.188829, -22.422416 ], [ 114.181899, -22.423746 ], [ 114.181579, -22.410655 ], [ 114.188829, -22.422416 ] ] ], [ [ [ 114.172859, -22.447197 ], [ 114.166589, -22.473808 ], [ 114.147600, -22.489439 ], [ 114.172859, -22.447197 ] ] ], [ [ [ 114.005403, -28.900650 ], [ 113.967223, -28.938511 ], [ 113.957454, -28.967091 ], [ 113.962024, -28.985081 ], [ 113.954074, -28.977151 ], [ 113.966653, -28.932831 ], [ 114.005403, -28.900650 ] ] ], [ [ [ 113.921806, -25.883864 ], [ 113.920576, -25.896384 ], [ 113.907856, -25.898194 ], [ 113.858346, -25.868224 ], [ 113.873556, -25.871034 ], [ 113.853716, -25.846234 ], [ 113.855826, -25.810704 ], [ 113.880736, -25.800773 ], [ 113.909406, -25.817443 ], [ 113.921806, -25.883864 ] ] ], [ [ [ 113.878802, -26.029192 ], [ 113.837327, -26.002146 ], [ 113.857318, -26.006946 ], [ 113.852708, -26.009096 ], [ 113.878802, -26.029192 ] ] ], [ [ [ 113.880375, -26.030403 ], [ 113.882768, -26.032246 ], [ 113.879468, -26.043006 ], [ 113.880375, -26.030403 ] ] ], [ [ [ 113.872160, -26.064486 ], [ 113.871888, -26.064306 ], [ 113.877828, -26.048446 ], [ 113.872160, -26.064486 ] ] ], [ [ [ 113.868412, -26.384130 ], [ 113.858452, -26.356419 ], [ 113.865251, -26.348729 ], [ 113.868412, -26.384130 ] ] ], [ [ [ 113.787881, -28.713950 ], [ 113.784091, -28.722910 ], [ 113.779911, -28.709280 ], [ 113.787881, -28.713950 ] ] ], [ [ [ 113.775116, -26.543621 ], [ 113.769866, -26.549051 ], [ 113.759405, -26.535202 ], [ 113.772445, -26.531451 ], [ 113.775116, -26.543621 ] ] ], [ [ [ 113.744660, -28.426357 ], [ 113.730150, -28.443847 ], [ 113.719390, -28.445377 ], [ 113.718080, -28.430017 ], [ 113.744660, -28.426357 ] ] ], [ [ [ 113.720956, -26.061620 ], [ 113.705277, -26.094241 ], [ 113.716946, -26.057681 ], [ 113.720956, -26.061620 ] ] ], [ [ [ 113.708480, -28.462717 ], [ 113.696290, -28.469778 ], [ 113.696100, -28.483998 ], [ 113.685790, -28.485128 ], [ 113.682070, -28.454007 ], [ 113.700620, -28.440297 ], [ 113.708480, -28.462717 ] ] ], [ [ [ 113.641118, -24.886206 ], [ 113.638364, -24.901785 ], [ 113.634714, -24.886565 ], [ 113.619694, -24.872405 ], [ 113.628374, -24.877555 ], [ 113.628463, -24.870905 ], [ 113.643794, -24.871075 ], [ 113.641268, -24.885360 ], [ 113.653384, -24.886265 ], [ 113.644383, -24.891154 ], [ 113.641118, -24.886206 ] ] ], [ [ [ 113.603089, -28.297866 ], [ 113.598259, -28.307996 ], [ 113.588319, -28.300346 ], [ 113.594939, -28.289316 ], [ 113.603089, -28.297866 ] ] ], [ [ [ 113.340322, -26.322034 ], [ 113.331982, -26.316854 ], [ 113.336912, -26.309703 ], [ 113.340322, -26.322034 ] ] ], [ [ [ 113.236900, -26.104322 ], [ 113.227650, -26.105323 ], [ 113.236620, -26.118873 ], [ 113.223110, -26.125513 ], [ 113.229080, -26.143573 ], [ 113.216280, -26.162503 ], [ 113.208580, -26.134853 ], [ 113.180850, -26.122613 ], [ 113.157499, -26.055893 ], [ 113.135968, -26.022343 ], [ 113.048587, -25.931073 ], [ 113.022966, -25.860412 ], [ 112.967386, -25.783252 ], [ 112.976935, -25.773151 ], [ 112.979595, -25.749471 ], [ 112.942504, -25.657950 ], [ 112.929794, -25.643200 ], [ 112.921124, -25.588190 ], [ 112.928673, -25.526509 ], [ 112.970672, -25.480388 ], [ 112.986462, -25.497298 ], [ 113.022632, -25.498978 ], [ 113.005593, -25.535998 ], [ 113.009403, -25.561188 ], [ 113.038883, -25.618339 ], [ 113.054074, -25.695490 ], [ 113.071105, -25.720410 ], [ 113.063705, -25.728270 ], [ 113.076785, -25.768620 ], [ 113.097226, -25.789150 ], [ 113.114756, -25.838651 ], [ 113.109726, -25.867971 ], [ 113.121127, -25.880431 ], [ 113.156007, -25.887821 ], [ 113.126497, -25.922432 ], [ 113.136678, -25.977432 ], [ 113.151278, -25.976932 ], [ 113.157568, -25.968952 ], [ 113.150727, -25.941282 ], [ 113.168057, -25.943272 ], [ 113.166998, -25.979822 ], [ 113.203978, -26.003292 ], [ 113.202548, -26.027322 ], [ 113.210899, -26.038172 ], [ 113.219779, -26.036722 ], [ 113.219739, -26.058382 ], [ 113.236900, -26.104322 ] ] ], [ [ [ 113.166282, -24.780890 ], [ 113.161353, -24.821071 ], [ 113.137763, -24.871071 ], [ 113.140994, -24.921172 ], [ 113.149784, -24.935052 ], [ 113.133574, -24.952212 ], [ 113.118985, -24.986862 ], [ 113.130594, -24.916552 ], [ 113.124404, -24.887552 ], [ 113.127983, -24.844101 ], [ 113.157122, -24.754600 ], [ 113.166282, -24.780890 ] ] ], [ [ [ 113.128236, -25.060023 ], [ 113.110716, -25.106763 ], [ 113.104217, -25.174774 ], [ 113.091118, -25.187904 ], [ 113.088818, -25.237545 ], [ 113.076049, -25.273245 ], [ 113.069298, -25.231425 ], [ 113.087368, -25.192054 ], [ 113.094766, -25.121114 ], [ 113.087656, -25.069843 ], [ 113.101645, -25.032683 ], [ 113.116485, -25.016173 ], [ 113.118365, -24.992162 ], [ 113.124565, -25.012383 ], [ 113.117265, -25.031073 ], [ 113.128236, -25.060023 ] ] ] + ] + } + }, + { + "type": "Feature", + "id": 5, + "properties": { + "STATE_CODE": "6", + "NAME_1": "Tasmania", + "ISO":"AU-TAS" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ [ [ 148.481887, -40.434930 ], [ 148.472864, -40.442869 ], [ 148.437309, -40.439959 ], [ 148.430872, -40.465255 ], [ 148.413814, -40.462027 ], [ 148.400890, -40.473003 ], [ 148.397954, -40.489456 ], [ 148.377985, -40.476560 ], [ 148.350555, -40.492835 ], [ 148.336511, -40.482745 ], [ 148.336025, -40.464909 ], [ 148.309927, -40.426733 ], [ 148.293766, -40.434247 ], [ 148.273419, -40.428985 ], [ 148.274015, -40.436305 ], [ 148.226774, -40.466084 ], [ 148.195969, -40.435512 ], [ 148.164299, -40.450325 ], [ 148.142490, -40.448104 ], [ 148.151251, -40.453808 ], [ 148.140784, -40.460478 ], [ 148.142035, -40.450014 ], [ 148.127716, -40.439690 ], [ 148.085808, -40.457369 ], [ 148.046262, -40.448934 ], [ 148.039924, -40.441365 ], [ 148.045407, -40.434479 ], [ 148.024284, -40.429927 ], [ 148.034193, -40.424505 ], [ 148.017714, -40.414137 ], [ 147.988670, -40.421157 ], [ 147.989826, -40.406039 ], [ 147.983558, -40.402756 ], [ 147.992100, -40.394906 ], [ 147.987266, -40.387096 ], [ 148.001542, -40.375999 ], [ 148.047993, -40.355496 ], [ 148.060493, -40.358765 ], [ 148.081524, -40.339214 ], [ 148.089710, -40.345745 ], [ 148.143798, -40.336171 ], [ 148.145049, -40.342982 ], [ 148.166134, -40.347910 ], [ 148.183895, -40.344876 ], [ 148.191856, -40.356219 ], [ 148.207251, -40.342389 ], [ 148.210703, -40.317825 ], [ 148.225822, -40.321880 ], [ 148.229441, -40.330725 ], [ 148.243538, -40.325385 ], [ 148.266865, -40.340703 ], [ 148.282245, -40.319638 ], [ 148.300134, -40.321763 ], [ 148.317240, -40.311564 ], [ 148.331004, -40.299877 ], [ 148.329790, -40.290762 ], [ 148.363014, -40.322235 ], [ 148.370948, -40.341445 ], [ 148.398253, -40.357759 ], [ 148.410536, -40.371926 ], [ 148.407079, -40.377997 ], [ 148.424169, -40.371445 ], [ 148.451490, -40.376693 ], [ 148.448510, -40.405524 ], [ 148.458517, -40.409354 ], [ 148.464819, -40.427090 ], [ 148.481887, -40.434930 ] ] ], [ [ [ 148.363358, -39.947817 ], [ 148.361477, -39.953567 ], [ 148.351889, -39.950722 ], [ 148.363358, -39.947817 ] ] ], [ [ [ 144.754462, -41.061823 ], [ 144.745688, -41.055616 ], [ 144.695616, -41.047835 ], [ 144.683698, -41.037541 ], [ 144.680014, -41.049585 ], [ 144.661089, -41.053436 ], [ 144.638921, -41.045355 ], [ 144.607340, -41.008782 ], [ 144.625825, -41.004986 ], [ 144.632840, -40.993842 ], [ 144.630894, -40.952478 ], [ 144.612249, -40.944652 ], [ 144.611738, -40.935732 ], [ 144.655803, -40.913869 ], [ 144.649198, -40.900148 ], [ 144.683765, -40.907252 ], [ 144.704305, -40.876330 ], [ 144.706464, -40.867127 ], [ 144.698764, -40.862325 ], [ 144.711558, -40.858335 ], [ 144.713028, -40.835548 ], [ 144.697187, -40.809128 ], [ 144.706188, -40.794200 ], [ 144.697440, -40.783046 ], [ 144.707424, -40.776209 ], [ 144.710200, -40.761442 ], [ 144.703203, -40.750765 ], [ 144.691266, -40.755082 ], [ 144.678363, -40.716896 ], [ 144.697721, -40.689591 ], [ 144.686330, -40.682024 ], [ 144.686043, -40.672218 ], [ 144.725587, -40.641690 ], [ 144.748798, -40.689576 ], [ 144.738129, -40.682246 ], [ 144.736348, -40.690121 ], [ 144.771754, -40.705922 ], [ 144.765880, -40.743571 ], [ 144.779798, -40.729181 ], [ 144.778436, -40.713336 ], [ 144.785517, -40.708478 ], [ 144.804672, -40.713687 ], [ 144.810597, -40.727310 ], [ 144.836544, -40.718704 ], [ 144.840595, -40.743286 ], [ 144.848902, -40.738766 ], [ 144.907807, -40.750791 ], [ 144.924173, -40.763765 ], [ 144.927970, -40.758715 ], [ 144.979247, -40.743338 ], [ 145.001751, -40.762191 ], [ 145.000608, -40.775090 ], [ 145.010179, -40.766719 ], [ 145.016244, -40.766570 ], [ 145.007589, -40.778464 ], [ 145.024186, -40.770578 ], [ 145.015635, -40.779288 ], [ 145.023561, -40.778019 ], [ 145.018760, -40.789466 ], [ 145.037635, -40.787331 ], [ 145.038842, -40.780598 ], [ 145.052654, -40.786872 ], [ 145.070136, -40.809455 ], [ 145.065285, -40.819235 ], [ 145.077273, -40.808352 ], [ 145.090359, -40.813041 ], [ 145.085700, -40.824405 ], [ 145.100233, -40.827444 ], [ 145.096327, -40.815085 ], [ 145.108542, -40.814422 ], [ 145.111520, -40.831661 ], [ 145.118606, -40.828989 ], [ 145.121380, -40.837964 ], [ 145.131606, -40.819294 ], [ 145.164147, -40.825593 ], [ 145.167158, -40.818999 ], [ 145.133840, -40.802853 ], [ 145.112783, -40.801398 ], [ 145.110431, -40.794288 ], [ 145.187798, -40.804082 ], [ 145.256920, -40.789850 ], [ 145.216107, -40.810913 ], [ 145.241386, -40.813700 ], [ 145.258989, -40.805760 ], [ 145.269441, -40.758245 ], [ 145.268471, -40.746962 ], [ 145.250876, -40.729975 ], [ 145.252619, -40.715537 ], [ 145.260340, -40.712323 ], [ 145.275913, -40.735562 ], [ 145.295972, -40.738660 ], [ 145.294779, -40.754827 ], [ 145.308672, -40.764172 ], [ 145.288926, -40.766309 ], [ 145.271209, -40.801069 ], [ 145.266141, -40.797910 ], [ 145.269072, -40.811055 ], [ 145.284774, -40.820553 ], [ 145.280752, -40.829918 ], [ 145.293602, -40.826904 ], [ 145.280080, -40.793723 ], [ 145.312878, -40.835213 ], [ 145.309232, -40.843426 ], [ 145.311445, -40.842656 ], [ 145.321458, -40.849701 ], [ 145.315594, -40.837688 ], [ 145.343865, -40.851039 ], [ 145.391893, -40.849714 ], [ 145.395375, -40.863249 ], [ 145.403784, -40.854994 ], [ 145.446049, -40.871230 ], [ 145.446687, -40.886104 ], [ 145.435370, -40.894268 ], [ 145.448017, -40.887259 ], [ 145.446352, -40.877989 ], [ 145.452602, -40.879127 ], [ 145.447250, -40.874037 ], [ 145.481613, -40.868816 ], [ 145.502628, -40.851704 ], [ 145.511598, -40.853572 ], [ 145.522323, -40.887648 ], [ 145.537742, -40.891482 ], [ 145.546148, -40.909124 ], [ 145.560472, -40.916817 ], [ 145.583882, -40.913801 ], [ 145.595208, -40.923991 ], [ 145.619738, -40.925300 ], [ 145.621800, -40.932104 ], [ 145.653703, -40.940308 ], [ 145.729340, -40.944952 ], [ 145.733111, -40.956280 ], [ 145.724572, -40.968982 ], [ 145.741271, -40.985375 ], [ 145.696461, -40.974734 ], [ 145.768533, -40.996881 ], [ 145.800869, -41.026184 ], [ 145.838866, -41.038859 ], [ 145.829824, -41.050013 ], [ 145.836074, -41.056969 ], [ 145.830052, -41.050060 ], [ 145.841021, -41.038702 ], [ 145.877089, -41.036858 ], [ 145.878743, -41.042890 ], [ 145.921368, -41.051361 ], [ 145.910543, -41.049456 ], [ 145.909331, -41.057579 ], [ 145.924255, -41.066550 ], [ 145.923258, -41.078016 ], [ 145.924900, -41.066182 ], [ 145.958099, -41.063036 ], [ 145.984517, -41.074802 ], [ 145.973762, -41.087750 ], [ 145.985844, -41.074108 ], [ 146.046556, -41.101926 ], [ 146.064334, -41.102699 ], [ 146.077354, -41.115568 ], [ 146.119656, -41.118948 ], [ 146.128806, -41.135313 ], [ 146.167434, -41.146616 ], [ 146.167658, -41.156277 ], [ 146.154381, -41.154331 ], [ 146.152360, -41.161853 ], [ 146.168523, -41.157470 ], [ 146.169309, -41.145346 ], [ 146.185035, -41.153937 ], [ 146.248447, -41.157119 ], [ 146.243600, -41.177217 ], [ 146.249708, -41.176144 ], [ 146.247845, -41.181915 ], [ 146.250711, -41.174882 ], [ 146.250678, -41.196567 ], [ 146.255419, -41.151820 ], [ 146.287310, -41.160682 ], [ 146.332690, -41.156626 ], [ 146.316034, -41.182843 ], [ 146.336510, -41.160280 ], [ 146.356860, -41.158478 ], [ 146.366804, -41.165248 ], [ 146.366830, -41.192633 ], [ 146.348483, -41.203811 ], [ 146.356190, -41.203896 ], [ 146.347735, -41.217352 ], [ 146.364183, -41.208433 ], [ 146.367967, -41.216687 ], [ 146.359806, -41.222149 ], [ 146.371122, -41.217406 ], [ 146.368173, -41.227409 ], [ 146.384725, -41.228853 ], [ 146.388562, -41.238242 ], [ 146.386350, -41.228360 ], [ 146.388846, -41.235943 ], [ 146.395550, -41.233506 ], [ 146.391798, -41.227809 ], [ 146.400488, -41.233444 ], [ 146.400335, -41.228252 ], [ 146.362334, -41.200687 ], [ 146.369695, -41.193808 ], [ 146.369814, -41.167473 ], [ 146.395613, -41.172722 ], [ 146.465277, -41.159568 ], [ 146.519351, -41.136185 ], [ 146.531894, -41.118429 ], [ 146.545716, -41.129549 ], [ 146.541777, -41.155056 ], [ 146.561994, -41.167384 ], [ 146.547982, -41.168461 ], [ 146.540374, -41.179138 ], [ 146.553638, -41.171486 ], [ 146.568919, -41.177839 ], [ 146.572984, -41.189146 ], [ 146.562407, -41.197311 ], [ 146.575723, -41.220171 ], [ 146.561097, -41.238444 ], [ 146.572988, -41.239339 ], [ 146.565167, -41.251030 ], [ 146.577930, -41.240574 ], [ 146.568773, -41.233048 ], [ 146.583418, -41.222754 ], [ 146.585031, -41.205090 ], [ 146.586218, -41.216474 ], [ 146.596177, -41.219731 ], [ 146.593914, -41.251432 ], [ 146.606795, -41.259365 ], [ 146.595039, -41.250654 ], [ 146.599562, -41.233032 ], [ 146.608866, -41.233748 ], [ 146.599365, -41.225783 ], [ 146.600374, -41.215640 ], [ 146.609228, -41.212040 ], [ 146.587867, -41.214271 ], [ 146.595480, -41.209322 ], [ 146.578055, -41.197681 ], [ 146.583255, -41.190846 ], [ 146.578354, -41.184684 ], [ 146.584768, -41.167896 ], [ 146.607877, -41.168591 ], [ 146.595022, -41.164375 ], [ 146.609586, -41.158450 ], [ 146.601657, -41.151886 ], [ 146.566707, -41.163766 ], [ 146.564451, -41.146471 ], [ 146.594907, -41.144835 ], [ 146.633371, -41.125721 ], [ 146.648005, -41.110049 ], [ 146.642073, -41.097728 ], [ 146.647095, -41.093819 ], [ 146.679081, -41.100766 ], [ 146.713516, -41.075036 ], [ 146.707594, -41.063722 ], [ 146.744522, -41.084775 ], [ 146.768439, -41.078863 ], [ 146.798656, -41.106840 ], [ 146.788144, -41.112045 ], [ 146.813642, -41.112687 ], [ 146.806548, -41.112835 ], [ 146.810304, -41.130746 ], [ 146.820089, -41.137656 ], [ 146.800853, -41.134292 ], [ 146.778275, -41.151478 ], [ 146.763244, -41.149663 ], [ 146.770639, -41.165274 ], [ 146.790177, -41.146078 ], [ 146.806961, -41.140575 ], [ 146.817942, -41.145442 ], [ 146.825045, -41.152269 ], [ 146.821114, -41.170147 ], [ 146.837927, -41.176520 ], [ 146.829891, -41.186615 ], [ 146.839009, -41.200033 ], [ 146.844989, -41.186343 ], [ 146.857579, -41.193030 ], [ 146.834072, -41.163131 ], [ 146.860116, -41.172137 ], [ 146.877814, -41.149989 ], [ 146.923150, -41.169772 ], [ 146.928784, -41.178903 ], [ 146.908609, -41.188807 ], [ 146.916475, -41.190252 ], [ 146.915606, -41.197787 ], [ 146.907239, -41.206215 ], [ 146.897505, -41.202552 ], [ 146.933817, -41.231375 ], [ 146.945779, -41.260201 ], [ 146.974730, -41.251689 ], [ 146.967584, -41.263312 ], [ 146.978294, -41.273239 ], [ 146.977252, -41.288199 ], [ 146.962052, -41.294391 ], [ 146.970107, -41.297668 ], [ 146.970630, -41.309220 ], [ 146.987032, -41.321197 ], [ 147.004923, -41.321225 ], [ 147.033772, -41.355800 ], [ 147.036248, -41.347026 ], [ 147.058436, -41.335689 ], [ 147.076859, -41.340994 ], [ 147.068964, -41.354366 ], [ 147.073927, -41.383968 ], [ 147.082486, -41.395963 ], [ 147.111975, -41.401055 ], [ 147.115750, -41.413719 ], [ 147.123053, -41.409566 ], [ 147.112220, -41.421941 ], [ 147.127813, -41.437589 ], [ 147.121852, -41.443637 ], [ 147.143215, -41.429298 ], [ 147.145933, -41.417212 ], [ 147.156018, -41.417372 ], [ 147.154668, -41.416017 ], [ 147.144418, -41.417371 ], [ 147.142100, -41.429361 ], [ 147.127020, -41.432141 ], [ 147.118043, -41.420156 ], [ 147.127757, -41.410785 ], [ 147.079002, -41.365619 ], [ 147.075280, -41.354539 ], [ 147.088938, -41.353673 ], [ 147.075168, -41.354129 ], [ 147.082595, -41.344650 ], [ 147.073644, -41.330184 ], [ 147.046204, -41.336631 ], [ 147.040017, -41.318655 ], [ 146.978166, -41.308780 ], [ 146.978762, -41.298750 ], [ 147.013751, -41.283580 ], [ 147.015391, -41.276387 ], [ 146.976761, -41.243418 ], [ 146.976587, -41.233247 ], [ 146.969149, -41.239463 ], [ 146.945667, -41.228867 ], [ 146.944659, -41.206560 ], [ 146.921478, -41.220309 ], [ 146.911996, -41.211971 ], [ 146.932453, -41.199955 ], [ 146.922110, -41.194557 ], [ 146.937295, -41.181782 ], [ 146.965420, -41.190060 ], [ 146.900329, -41.136987 ], [ 146.877290, -41.130625 ], [ 146.850922, -41.139972 ], [ 146.827795, -41.136306 ], [ 146.833886, -41.125238 ], [ 146.827320, -41.131375 ], [ 146.817572, -41.121689 ], [ 146.832008, -41.103020 ], [ 146.816849, -41.109696 ], [ 146.803965, -41.069733 ], [ 146.786601, -41.054124 ], [ 146.812350, -41.061188 ], [ 146.833608, -41.039533 ], [ 146.874802, -41.018839 ], [ 146.893736, -41.029678 ], [ 146.959263, -41.027492 ], [ 146.947676, -41.025577 ], [ 146.996952, -40.984845 ], [ 147.020898, -40.980265 ], [ 147.031969, -40.990365 ], [ 147.058662, -40.988018 ], [ 147.072775, -40.999683 ], [ 147.116036, -40.994577 ], [ 147.158998, -41.013690 ], [ 147.134424, -41.034902 ], [ 147.154308, -41.022045 ], [ 147.157889, -41.031400 ], [ 147.161713, -41.007969 ], [ 147.176454, -41.009312 ], [ 147.194406, -40.999118 ], [ 147.199892, -40.999626 ], [ 147.224750, -40.989143 ], [ 147.249447, -40.953479 ], [ 147.279843, -40.941692 ], [ 147.284804, -40.951930 ], [ 147.302561, -40.957694 ], [ 147.345618, -40.939475 ], [ 147.360544, -40.975327 ], [ 147.355430, -40.982280 ], [ 147.367462, -40.976086 ], [ 147.384266, -40.980446 ], [ 147.401375, -41.011332 ], [ 147.434541, -41.011899 ], [ 147.397054, -41.002901 ], [ 147.441482, -41.002915 ], [ 147.490728, -40.979349 ], [ 147.525579, -40.950690 ], [ 147.568087, -40.898606 ], [ 147.582835, -40.893163 ], [ 147.575525, -40.890794 ], [ 147.590706, -40.871601 ], [ 147.583618, -40.863407 ], [ 147.598926, -40.856219 ], [ 147.594815, -40.849136 ], [ 147.626820, -40.845020 ], [ 147.669685, -40.821027 ], [ 147.706460, -40.860312 ], [ 147.757456, -40.857606 ], [ 147.751958, -40.875958 ], [ 147.756472, -40.865117 ], [ 147.780002, -40.879821 ], [ 147.822023, -40.886929 ], [ 147.882618, -40.868134 ], [ 147.873879, -40.882913 ], [ 147.904155, -40.877669 ], [ 147.912854, -40.869078 ], [ 147.885044, -40.877794 ], [ 147.887073, -40.863556 ], [ 147.932900, -40.815249 ], [ 147.947832, -40.791051 ], [ 147.943548, -40.775918 ], [ 147.952995, -40.776350 ], [ 147.958845, -40.764770 ], [ 147.958797, -40.754978 ], [ 147.942752, -40.752717 ], [ 147.938760, -40.739958 ], [ 147.958594, -40.746525 ], [ 147.974703, -40.737601 ], [ 148.006658, -40.743739 ], [ 148.019026, -40.753568 ], [ 148.032537, -40.750995 ], [ 148.038015, -40.761407 ], [ 148.032761, -40.764985 ], [ 148.043411, -40.774421 ], [ 148.048767, -40.774525 ], [ 148.037523, -40.762116 ], [ 148.057849, -40.771625 ], [ 148.079273, -40.769059 ], [ 148.140873, -40.830521 ], [ 148.175264, -40.829650 ], [ 148.148166, -40.834712 ], [ 148.121389, -40.825800 ], [ 148.115275, -40.813961 ], [ 148.117239, -40.820586 ], [ 148.108118, -40.820586 ], [ 148.111816, -40.828161 ], [ 148.126180, -40.836042 ], [ 148.130598, -40.828903 ], [ 148.158045, -40.840496 ], [ 148.173803, -40.838722 ], [ 148.178370, -40.820913 ], [ 148.197595, -40.839431 ], [ 148.222758, -40.846040 ], [ 148.219803, -40.862333 ], [ 148.226812, -40.876383 ], [ 148.261912, -40.892453 ], [ 148.257882, -40.904223 ], [ 148.267382, -40.900505 ], [ 148.274334, -40.920672 ], [ 148.301975, -40.941664 ], [ 148.302958, -40.957324 ], [ 148.298476, -40.954737 ], [ 148.323833, -40.987847 ], [ 148.349459, -40.992895 ], [ 148.330583, -41.000004 ], [ 148.301579, -41.029206 ], [ 148.296827, -41.061945 ], [ 148.286325, -41.048437 ], [ 148.293865, -41.028949 ], [ 148.249497, -41.051097 ], [ 148.282190, -41.052229 ], [ 148.298152, -41.063829 ], [ 148.269515, -41.126026 ], [ 148.268043, -41.151794 ], [ 148.275981, -41.151410 ], [ 148.284900, -41.168601 ], [ 148.252870, -41.190939 ], [ 148.271941, -41.180612 ], [ 148.275504, -41.206764 ], [ 148.285286, -41.209251 ], [ 148.279291, -41.230436 ], [ 148.293500, -41.235988 ], [ 148.303167, -41.250461 ], [ 148.312111, -41.246739 ], [ 148.317434, -41.254969 ], [ 148.329319, -41.248609 ], [ 148.338352, -41.259955 ], [ 148.330490, -41.275557 ], [ 148.309885, -41.288513 ], [ 148.307776, -41.302225 ], [ 148.290613, -41.304037 ], [ 148.295442, -41.282706 ], [ 148.281601, -41.276556 ], [ 148.271225, -41.307471 ], [ 148.276134, -41.312281 ], [ 148.268627, -41.314087 ], [ 148.276992, -41.315201 ], [ 148.270611, -41.320652 ], [ 148.263206, -41.315376 ], [ 148.268695, -41.321956 ], [ 148.258976, -41.325101 ], [ 148.255553, -41.321714 ], [ 148.247498, -41.327717 ], [ 148.235763, -41.322759 ], [ 148.271580, -41.339573 ], [ 148.309474, -41.316973 ], [ 148.332008, -41.276489 ], [ 148.339386, -41.282044 ], [ 148.356003, -41.273877 ], [ 148.359084, -41.279556 ], [ 148.327304, -41.306454 ], [ 148.301340, -41.366183 ], [ 148.295770, -41.370327 ], [ 148.288801, -41.363257 ], [ 148.293740, -41.369317 ], [ 148.279124, -41.371733 ], [ 148.279404, -41.378774 ], [ 148.289102, -41.380463 ], [ 148.295704, -41.371693 ], [ 148.267230, -41.461698 ], [ 148.266176, -41.451924 ], [ 148.262956, -41.460234 ], [ 148.260123, -41.460119 ], [ 148.266477, -41.462171 ], [ 148.271000, -41.502425 ], [ 148.263539, -41.476971 ], [ 148.262266, -41.489300 ], [ 148.253898, -41.477769 ], [ 148.249273, -41.486025 ], [ 148.262503, -41.491472 ], [ 148.267130, -41.506367 ], [ 148.275621, -41.503499 ], [ 148.288018, -41.558195 ], [ 148.299263, -41.558037 ], [ 148.316653, -41.575378 ], [ 148.320296, -41.621392 ], [ 148.293183, -41.658961 ], [ 148.289053, -41.684514 ], [ 148.295230, -41.693173 ], [ 148.284073, -41.719999 ], [ 148.304770, -41.748176 ], [ 148.284295, -41.757798 ], [ 148.264411, -41.807216 ], [ 148.272561, -41.848887 ], [ 148.287446, -41.865809 ], [ 148.310938, -41.873282 ], [ 148.304019, -41.891300 ], [ 148.319268, -41.903099 ], [ 148.323590, -41.917201 ], [ 148.302524, -41.936900 ], [ 148.309800, -41.961411 ], [ 148.297936, -41.965853 ], [ 148.289377, -41.982665 ], [ 148.284634, -42.038985 ], [ 148.297974, -42.057080 ], [ 148.309610, -42.057028 ], [ 148.325642, -42.096220 ], [ 148.333105, -42.105520 ], [ 148.340522, -42.102683 ], [ 148.345388, -42.118468 ], [ 148.334397, -42.127459 ], [ 148.338090, -42.133001 ], [ 148.319607, -42.132453 ], [ 148.324203, -42.149314 ], [ 148.297735, -42.166374 ], [ 148.306679, -42.175619 ], [ 148.315592, -42.169199 ], [ 148.345442, -42.183595 ], [ 148.357126, -42.180358 ], [ 148.342897, -42.211152 ], [ 148.346237, -42.223782 ], [ 148.327871, -42.229921 ], [ 148.320421, -42.264362 ], [ 148.308013, -42.266702 ], [ 148.314562, -42.275988 ], [ 148.293006, -42.281850 ], [ 148.288021, -42.259614 ], [ 148.261350, -42.254341 ], [ 148.251453, -42.242275 ], [ 148.251433, -42.230326 ], [ 148.269671, -42.227026 ], [ 148.291896, -42.191683 ], [ 148.277914, -42.173142 ], [ 148.259352, -42.165458 ], [ 148.272561, -42.148554 ], [ 148.297604, -42.140164 ], [ 148.298424, -42.125640 ], [ 148.283392, -42.128068 ], [ 148.268426, -42.109987 ], [ 148.247575, -42.116841 ], [ 148.236793, -42.101073 ], [ 148.241674, -42.091033 ], [ 148.208443, -42.077391 ], [ 148.213229, -42.071434 ], [ 148.224647, -42.076886 ], [ 148.221071, -42.068837 ], [ 148.197645, -42.067186 ], [ 148.186970, -42.077836 ], [ 148.157191, -42.074206 ], [ 148.159399, -42.060094 ], [ 148.174600, -42.054347 ], [ 148.172684, -42.043377 ], [ 148.214310, -42.035654 ], [ 148.242997, -42.002619 ], [ 148.243310, -41.988302 ], [ 148.214088, -41.985999 ], [ 148.217545, -42.002982 ], [ 148.197438, -42.020801 ], [ 148.173422, -42.008975 ], [ 148.170989, -41.997075 ], [ 148.163207, -41.997963 ], [ 148.144293, -42.017103 ], [ 148.146047, -42.041537 ], [ 148.133264, -42.043949 ], [ 148.142924, -42.051580 ], [ 148.150709, -42.044665 ], [ 148.146761, -42.034651 ], [ 148.154976, -42.035182 ], [ 148.162850, -42.039652 ], [ 148.157816, -42.049836 ], [ 148.165017, -42.051771 ], [ 148.152399, -42.062255 ], [ 148.129500, -42.061124 ], [ 148.114646, -42.073634 ], [ 148.126791, -42.074003 ], [ 148.093656, -42.081067 ], [ 148.093054, -42.080769 ], [ 148.095293, -42.082548 ], [ 148.150762, -42.074493 ], [ 148.167508, -42.084963 ], [ 148.211365, -42.084914 ], [ 148.235198, -42.097901 ], [ 148.123932, -42.092425 ], [ 148.046666, -42.118418 ], [ 148.070034, -42.112076 ], [ 148.085092, -42.125511 ], [ 148.071290, -42.154190 ], [ 148.083882, -42.167915 ], [ 148.013583, -42.239350 ], [ 148.013167, -42.249462 ], [ 148.028151, -42.260610 ], [ 148.014807, -42.268237 ], [ 148.015615, -42.285468 ], [ 148.000346, -42.309933 ], [ 147.977559, -42.307399 ], [ 147.970437, -42.332961 ], [ 147.953660, -42.332503 ], [ 147.958992, -42.334999 ], [ 147.944744, -42.336101 ], [ 147.949717, -42.337844 ], [ 147.944064, -42.342377 ], [ 147.938966, -42.332802 ], [ 147.943687, -42.343173 ], [ 147.935790, -42.336659 ], [ 147.931130, -42.343481 ], [ 147.943869, -42.349591 ], [ 147.954982, -42.343902 ], [ 147.962057, -42.357330 ], [ 147.960252, -42.341271 ], [ 147.985851, -42.337244 ], [ 147.975780, -42.334204 ], [ 147.977951, -42.325680 ], [ 147.988072, -42.324824 ], [ 147.996058, -42.311551 ], [ 148.018485, -42.315007 ], [ 148.015516, -42.327770 ], [ 148.026889, -42.349507 ], [ 148.007557, -42.364513 ], [ 148.008659, -42.373624 ], [ 147.987756, -42.389042 ], [ 147.980497, -42.405386 ], [ 147.998904, -42.433180 ], [ 147.976956, -42.441039 ], [ 148.010295, -42.441393 ], [ 148.010253, -42.462346 ], [ 148.000487, -42.467763 ], [ 147.988523, -42.498345 ], [ 147.994435, -42.489971 ], [ 147.997042, -42.501569 ], [ 148.010483, -42.510352 ], [ 147.995850, -42.517787 ], [ 147.994823, -42.526537 ], [ 147.983241, -42.515998 ], [ 147.968728, -42.520332 ], [ 147.948970, -42.553230 ], [ 147.932352, -42.550122 ], [ 147.925191, -42.538160 ], [ 147.930358, -42.530803 ], [ 147.914208, -42.516288 ], [ 147.923733, -42.496786 ], [ 147.913896, -42.510941 ], [ 147.905278, -42.506046 ], [ 147.909414, -42.514562 ], [ 147.897307, -42.524029 ], [ 147.913282, -42.530651 ], [ 147.913370, -42.548512 ], [ 147.888446, -42.545260 ], [ 147.875079, -42.554772 ], [ 147.878981, -42.554155 ], [ 147.881807, -42.566941 ], [ 147.902503, -42.565956 ], [ 147.917260, -42.590013 ], [ 147.945502, -42.606319 ], [ 147.931612, -42.631559 ], [ 147.957712, -42.652588 ], [ 147.929750, -42.644901 ], [ 147.939925, -42.654511 ], [ 147.957056, -42.653182 ], [ 147.953484, -42.661070 ], [ 147.962992, -42.669542 ], [ 147.962163, -42.679592 ], [ 147.938763, -42.700692 ], [ 147.936205, -42.711749 ], [ 147.947273, -42.709103 ], [ 147.941925, -42.713710 ], [ 147.946552, -42.728010 ], [ 147.900001, -42.743854 ], [ 147.879125, -42.769865 ], [ 147.869535, -42.818752 ], [ 147.884098, -42.845520 ], [ 147.870476, -42.836870 ], [ 147.864558, -42.814657 ], [ 147.855542, -42.849130 ], [ 147.844038, -42.845775 ], [ 147.843156, -42.859893 ], [ 147.835115, -42.860940 ], [ 147.844716, -42.874234 ], [ 147.832438, -42.865739 ], [ 147.827178, -42.880452 ], [ 147.791443, -42.892620 ], [ 147.790526, -42.903081 ], [ 147.772468, -42.898760 ], [ 147.766796, -42.906849 ], [ 147.742442, -42.895011 ], [ 147.728321, -42.898855 ], [ 147.721994, -42.886558 ], [ 147.669116, -42.901907 ], [ 147.668377, -42.891581 ], [ 147.655799, -42.886089 ], [ 147.647453, -42.892773 ], [ 147.640092, -42.879568 ], [ 147.656291, -42.881943 ], [ 147.684198, -42.864377 ], [ 147.700950, -42.871601 ], [ 147.684131, -42.862707 ], [ 147.653331, -42.878770 ], [ 147.605973, -42.869225 ], [ 147.607277, -42.855797 ], [ 147.621625, -42.844509 ], [ 147.596730, -42.813354 ], [ 147.603343, -42.798117 ], [ 147.594183, -42.781572 ], [ 147.585385, -42.778262 ], [ 147.595193, -42.784521 ], [ 147.592203, -42.801039 ], [ 147.565140, -42.794264 ], [ 147.565486, -42.788376 ], [ 147.559597, -42.797335 ], [ 147.550349, -42.785344 ], [ 147.537323, -42.783209 ], [ 147.539103, -42.771505 ], [ 147.529172, -42.783821 ], [ 147.539722, -42.801170 ], [ 147.535210, -42.805304 ], [ 147.527690, -42.805102 ], [ 147.520850, -42.785432 ], [ 147.513046, -42.782890 ], [ 147.487252, -42.803107 ], [ 147.452924, -42.781526 ], [ 147.468533, -42.771074 ], [ 147.454175, -42.768118 ], [ 147.459073, -42.776787 ], [ 147.448442, -42.775934 ], [ 147.445127, -42.783309 ], [ 147.434631, -42.774071 ], [ 147.437091, -42.785770 ], [ 147.459999, -42.809509 ], [ 147.485406, -42.807940 ], [ 147.489816, -42.815033 ], [ 147.477549, -42.812896 ], [ 147.471699, -42.820715 ], [ 147.481114, -42.826743 ], [ 147.491197, -42.827953 ], [ 147.513154, -42.811323 ], [ 147.522242, -42.827978 ], [ 147.578578, -42.825114 ], [ 147.613374, -42.845948 ], [ 147.564561, -42.837869 ], [ 147.529161, -42.847302 ], [ 147.503627, -42.864290 ], [ 147.511077, -42.876070 ], [ 147.494968, -42.911283 ], [ 147.530507, -42.931312 ], [ 147.538225, -42.959998 ], [ 147.541801, -42.959318 ], [ 147.554079, -42.985644 ], [ 147.523747, -42.992724 ], [ 147.528800, -43.006036 ], [ 147.520732, -43.021104 ], [ 147.441208, -43.036948 ], [ 147.418833, -43.050494 ], [ 147.408385, -43.046474 ], [ 147.404190, -43.036572 ], [ 147.415475, -43.020382 ], [ 147.397036, -43.006683 ], [ 147.404070, -42.984539 ], [ 147.391983, -42.975700 ], [ 147.408787, -42.962914 ], [ 147.403757, -42.977578 ], [ 147.417869, -42.984372 ], [ 147.417537, -43.002823 ], [ 147.430092, -43.027571 ], [ 147.452226, -43.032634 ], [ 147.468801, -43.026716 ], [ 147.474064, -43.018685 ], [ 147.468829, -42.999289 ], [ 147.478482, -42.982108 ], [ 147.465332, -42.970171 ], [ 147.445379, -42.978391 ], [ 147.446060, -42.964527 ], [ 147.464751, -42.923450 ], [ 147.476991, -42.918590 ], [ 147.491424, -42.927146 ], [ 147.485493, -42.912981 ], [ 147.479007, -42.906310 ], [ 147.435127, -42.908656 ], [ 147.421401, -42.939748 ], [ 147.408930, -42.938809 ], [ 147.409231, -42.918964 ], [ 147.417327, -42.908852 ], [ 147.404688, -42.884267 ], [ 147.366546, -42.882554 ], [ 147.365664, -42.870159 ], [ 147.352402, -42.875777 ], [ 147.350539, -42.860591 ], [ 147.358626, -42.848680 ], [ 147.350217, -42.853124 ], [ 147.337784, -42.845709 ], [ 147.347047, -42.835200 ], [ 147.333777, -42.841081 ], [ 147.335053, -42.833706 ], [ 147.317373, -42.824903 ], [ 147.319935, -42.816675 ], [ 147.281622, -42.801062 ], [ 147.292742, -42.789744 ], [ 147.284152, -42.777749 ], [ 147.264677, -42.778498 ], [ 147.260522, -42.765294 ], [ 147.266683, -42.755655 ], [ 147.256084, -42.748636 ], [ 147.265584, -42.738953 ], [ 147.262597, -42.730198 ], [ 147.264674, -42.738990 ], [ 147.252229, -42.751215 ], [ 147.256732, -42.757012 ], [ 147.198991, -42.725319 ], [ 147.183970, -42.732291 ], [ 147.179101, -42.739844 ], [ 147.185980, -42.740918 ], [ 147.149948, -42.751834 ], [ 147.139875, -42.767072 ], [ 147.114552, -42.773108 ], [ 147.138788, -42.770094 ], [ 147.154535, -42.752804 ], [ 147.198323, -42.740440 ], [ 147.232614, -42.751868 ], [ 147.253504, -42.765787 ], [ 147.252635, -42.786616 ], [ 147.283207, -42.789994 ], [ 147.258954, -42.791834 ], [ 147.265856, -42.796527 ], [ 147.253629, -42.806203 ], [ 147.262415, -42.811660 ], [ 147.255703, -42.814863 ], [ 147.277379, -42.825828 ], [ 147.298018, -42.818736 ], [ 147.306722, -42.823546 ], [ 147.295007, -42.829230 ], [ 147.301890, -42.833834 ], [ 147.305266, -42.826403 ], [ 147.322112, -42.832089 ], [ 147.313057, -42.849206 ], [ 147.327849, -42.844610 ], [ 147.319663, -42.855131 ], [ 147.336789, -42.864589 ], [ 147.341196, -42.877063 ], [ 147.331528, -42.884938 ], [ 147.339448, -42.886795 ], [ 147.332239, -42.900220 ], [ 147.360963, -42.914127 ], [ 147.355850, -42.951108 ], [ 147.344532, -42.954768 ], [ 147.338563, -42.974427 ], [ 147.328311, -42.977505 ], [ 147.329554, -42.977814 ], [ 147.324150, -43.006165 ], [ 147.344282, -43.051679 ], [ 147.314057, -43.059471 ], [ 147.284934, -43.008305 ], [ 147.270527, -43.024591 ], [ 147.265438, -43.021382 ], [ 147.269284, -43.024685 ], [ 147.279920, -43.026748 ], [ 147.255547, -43.073251 ], [ 147.279037, -43.074919 ], [ 147.301233, -43.087908 ], [ 147.285290, -43.110991 ], [ 147.257671, -43.106513 ], [ 147.271491, -43.114800 ], [ 147.269388, -43.121944 ], [ 147.246385, -43.122312 ], [ 147.262770, -43.130832 ], [ 147.252761, -43.132332 ], [ 147.256247, -43.138576 ], [ 147.241628, -43.148676 ], [ 147.247989, -43.151727 ], [ 147.238584, -43.154448 ], [ 147.248407, -43.166291 ], [ 147.240921, -43.181955 ], [ 147.255438, -43.188368 ], [ 147.260974, -43.223517 ], [ 147.240448, -43.256604 ], [ 147.242512, -43.268099 ], [ 147.219485, -43.281036 ], [ 147.188996, -43.276249 ], [ 147.167749, -43.283386 ], [ 147.142145, -43.271216 ], [ 147.142102, -43.253558 ], [ 147.151165, -43.241125 ], [ 147.143969, -43.249994 ], [ 147.124126, -43.242804 ], [ 147.097077, -43.250251 ], [ 147.100029, -43.245309 ], [ 147.088927, -43.243168 ], [ 147.099297, -43.237920 ], [ 147.091474, -43.219886 ], [ 147.117825, -43.210600 ], [ 147.101984, -43.206790 ], [ 147.105621, -43.198464 ], [ 147.094445, -43.188042 ], [ 147.109018, -43.185291 ], [ 147.093042, -43.181487 ], [ 147.096410, -43.171690 ], [ 147.082510, -43.162950 ], [ 147.086478, -43.192828 ], [ 147.071807, -43.202332 ], [ 147.083322, -43.206701 ], [ 147.063161, -43.217345 ], [ 147.061925, -43.225100 ], [ 147.027771, -43.209647 ], [ 147.010348, -43.190295 ], [ 146.984409, -43.189432 ], [ 146.983458, -43.177597 ], [ 146.994548, -43.173192 ], [ 146.997206, -43.146956 ], [ 147.018802, -43.112250 ], [ 147.021804, -43.091959 ], [ 147.040930, -43.069763 ], [ 147.044775, -43.047391 ], [ 147.029687, -43.058653 ], [ 146.991347, -43.118735 ], [ 146.993008, -43.128655 ], [ 146.972450, -43.138584 ], [ 146.980690, -43.158917 ], [ 146.959536, -43.156129 ], [ 146.949969, -43.163840 ], [ 146.962154, -43.157924 ], [ 146.974454, -43.169317 ], [ 146.964153, -43.190302 ], [ 146.971896, -43.204000 ], [ 146.995390, -43.206465 ], [ 146.990318, -43.217152 ], [ 147.001700, -43.214512 ], [ 147.037075, -43.243826 ], [ 147.064544, -43.249102 ], [ 147.068004, -43.263638 ], [ 147.097614, -43.280188 ], [ 147.100133, -43.290217 ], [ 147.080573, -43.292427 ], [ 147.065330, -43.332813 ], [ 147.045042, -43.312302 ], [ 147.011916, -43.315833 ], [ 147.002616, -43.322737 ], [ 147.004160, -43.335497 ], [ 146.982438, -43.330102 ], [ 146.978811, -43.339465 ], [ 146.985438, -43.333194 ], [ 147.007713, -43.343484 ], [ 147.019319, -43.333896 ], [ 147.032711, -43.347950 ], [ 147.059306, -43.353063 ], [ 147.046012, -43.380001 ], [ 147.016661, -43.403277 ], [ 147.025445, -43.411434 ], [ 147.012442, -43.422070 ], [ 147.026432, -43.435817 ], [ 147.017624, -43.443455 ], [ 147.003066, -43.433992 ], [ 146.986909, -43.440799 ], [ 146.973022, -43.431905 ], [ 146.950553, -43.447380 ], [ 146.947603, -43.434340 ], [ 146.923638, -43.415583 ], [ 146.923631, -43.439837 ], [ 146.920564, -43.438301 ], [ 146.915635, -43.447067 ], [ 146.941796, -43.439960 ], [ 146.946158, -43.446016 ], [ 146.937105, -43.447455 ], [ 146.948668, -43.453098 ], [ 146.959684, -43.447703 ], [ 146.983224, -43.454706 ], [ 146.996446, -43.461872 ], [ 147.001794, -43.479652 ], [ 146.980777, -43.487256 ], [ 146.982585, -43.475028 ], [ 146.972545, -43.468638 ], [ 146.942028, -43.478121 ], [ 146.928992, -43.496670 ], [ 146.943785, -43.498142 ], [ 146.943704, -43.512025 ], [ 146.976749, -43.487591 ], [ 146.977883, -43.494017 ], [ 146.954158, -43.511810 ], [ 146.952825, -43.532988 ], [ 146.921402, -43.539295 ], [ 146.924100, -43.530301 ], [ 146.917257, -43.546296 ], [ 146.903669, -43.538941 ], [ 146.911372, -43.531859 ], [ 146.903086, -43.516884 ], [ 146.910848, -43.514149 ], [ 146.900596, -43.516220 ], [ 146.889195, -43.553185 ], [ 146.877370, -43.558031 ], [ 146.891543, -43.553458 ], [ 146.903731, -43.562043 ], [ 146.887025, -43.566028 ], [ 146.891940, -43.580554 ], [ 146.916790, -43.568788 ], [ 146.923853, -43.580994 ], [ 146.920965, -43.600042 ], [ 146.873612, -43.623367 ], [ 146.870924, -43.638637 ], [ 146.844807, -43.633052 ], [ 146.826624, -43.643092 ], [ 146.838710, -43.630761 ], [ 146.831278, -43.615117 ], [ 146.785144, -43.600290 ], [ 146.780704, -43.609456 ], [ 146.762359, -43.615342 ], [ 146.746118, -43.609990 ], [ 146.723444, -43.631932 ], [ 146.711246, -43.626075 ], [ 146.705475, -43.633411 ], [ 146.686091, -43.596701 ], [ 146.670225, -43.594409 ], [ 146.660118, -43.607720 ], [ 146.652777, -43.596177 ], [ 146.658246, -43.578529 ], [ 146.640129, -43.587436 ], [ 146.644963, -43.580366 ], [ 146.623660, -43.562383 ], [ 146.608514, -43.569083 ], [ 146.610038, -43.559801 ], [ 146.599361, -43.561932 ], [ 146.607548, -43.550207 ], [ 146.575188, -43.524626 ], [ 146.578282, -43.485135 ], [ 146.559389, -43.464884 ], [ 146.548678, -43.475434 ], [ 146.548896, -43.492071 ], [ 146.556142, -43.496624 ], [ 146.551411, -43.510393 ], [ 146.596074, -43.543486 ], [ 146.542175, -43.523268 ], [ 146.531671, -43.531364 ], [ 146.508740, -43.524066 ], [ 146.486456, -43.543857 ], [ 146.474034, -43.534580 ], [ 146.469323, -43.542581 ], [ 146.452673, -43.534433 ], [ 146.405565, -43.539816 ], [ 146.391538, -43.530271 ], [ 146.372640, -43.535039 ], [ 146.369404, -43.518967 ], [ 146.368715, -43.530489 ], [ 146.367572, -43.520236 ], [ 146.344725, -43.512831 ], [ 146.325709, -43.520608 ], [ 146.317811, -43.536247 ], [ 146.290137, -43.544660 ], [ 146.276438, -43.528807 ], [ 146.266651, -43.528637 ], [ 146.272905, -43.498450 ], [ 146.216007, -43.485565 ], [ 146.209073, -43.490101 ], [ 146.224483, -43.491138 ], [ 146.209782, -43.506969 ], [ 146.209618, -43.534836 ], [ 146.193091, -43.539985 ], [ 146.177565, -43.511374 ], [ 146.161542, -43.516419 ], [ 146.159132, -43.499961 ], [ 146.148004, -43.501487 ], [ 146.142256, -43.504229 ], [ 146.147154, -43.528280 ], [ 146.136493, -43.518296 ], [ 146.129045, -43.525878 ], [ 146.110436, -43.523627 ], [ 146.109879, -43.557075 ], [ 146.094856, -43.556623 ], [ 146.090730, -43.542489 ], [ 146.079451, -43.540973 ], [ 146.069952, -43.556499 ], [ 146.046171, -43.552375 ], [ 146.031119, -43.570953 ], [ 146.042820, -43.508548 ], [ 146.027455, -43.488205 ], [ 146.029154, -43.464307 ], [ 146.005742, -43.463896 ], [ 146.018031, -43.455094 ], [ 146.000932, -43.437706 ], [ 145.997379, -43.406945 ], [ 145.971237, -43.403446 ], [ 145.976372, -43.395226 ], [ 145.964525, -43.382612 ], [ 145.948061, -43.381290 ], [ 145.934257, -43.390884 ], [ 145.921467, -43.381296 ], [ 145.930329, -43.379369 ], [ 145.932098, -43.369962 ], [ 145.946340, -43.371779 ], [ 145.953241, -43.359387 ], [ 145.970756, -43.369699 ], [ 145.975790, -43.363094 ], [ 145.968754, -43.359850 ], [ 145.977466, -43.355573 ], [ 145.993483, -43.373943 ], [ 145.983727, -43.388246 ], [ 145.993652, -43.394252 ], [ 146.001901, -43.365475 ], [ 145.993134, -43.365324 ], [ 145.989245, -43.347892 ], [ 145.975078, -43.349155 ], [ 145.986817, -43.329322 ], [ 146.006720, -43.339682 ], [ 146.003097, -43.344958 ], [ 146.068006, -43.353142 ], [ 146.077830, -43.358501 ], [ 146.071152, -43.366087 ], [ 146.083506, -43.371526 ], [ 146.091597, -43.364480 ], [ 146.058308, -43.344498 ], [ 146.089613, -43.350323 ], [ 146.086187, -43.342035 ], [ 146.095070, -43.351757 ], [ 146.101272, -43.345942 ], [ 146.130541, -43.355464 ], [ 146.137172, -43.373080 ], [ 146.126699, -43.373707 ], [ 146.140057, -43.406634 ], [ 146.144480, -43.408668 ], [ 146.143864, -43.408139 ], [ 146.134626, -43.376545 ], [ 146.147363, -43.377846 ], [ 146.156942, -43.392091 ], [ 146.164367, -43.381980 ], [ 146.176766, -43.382146 ], [ 146.155376, -43.362813 ], [ 146.210264, -43.363576 ], [ 146.209070, -43.375634 ], [ 146.223327, -43.389074 ], [ 146.225431, -43.375946 ], [ 146.212893, -43.364055 ], [ 146.226678, -43.361102 ], [ 146.222831, -43.332528 ], [ 146.231605, -43.322462 ], [ 146.217837, -43.326101 ], [ 146.219224, -43.321101 ], [ 146.208616, -43.330501 ], [ 146.189056, -43.315211 ], [ 146.176365, -43.326664 ], [ 146.176098, -43.298348 ], [ 146.168445, -43.291051 ], [ 146.153352, -43.298753 ], [ 146.157620, -43.311349 ], [ 146.141136, -43.322429 ], [ 146.136408, -43.345624 ], [ 146.111866, -43.348394 ], [ 146.091112, -43.339321 ], [ 146.087437, -43.325456 ], [ 146.084282, -43.340223 ], [ 146.071827, -43.327454 ], [ 146.069806, -43.309550 ], [ 146.057121, -43.300805 ], [ 146.065661, -43.297668 ], [ 146.064467, -43.289388 ], [ 146.064396, -43.297422 ], [ 146.053259, -43.300716 ], [ 146.061233, -43.307124 ], [ 146.049175, -43.321093 ], [ 146.058972, -43.333562 ], [ 146.039043, -43.332707 ], [ 146.028734, -43.342392 ], [ 146.003770, -43.335344 ], [ 145.997197, -43.330642 ], [ 146.006010, -43.320746 ], [ 145.983475, -43.322635 ], [ 145.983105, -43.304793 ], [ 145.968445, -43.302955 ], [ 145.957873, -43.290461 ], [ 145.963553, -43.285668 ], [ 145.953416, -43.281066 ], [ 145.973150, -43.272992 ], [ 145.966548, -43.265709 ], [ 145.968161, -43.247580 ], [ 145.979953, -43.234805 ], [ 145.968897, -43.228063 ], [ 145.946408, -43.230004 ], [ 145.932470, -43.212550 ], [ 145.917305, -43.211356 ], [ 145.913922, -43.217833 ], [ 145.924841, -43.224941 ], [ 145.928463, -43.245190 ], [ 145.907490, -43.248351 ], [ 145.897146, -43.264139 ], [ 145.871797, -43.258673 ], [ 145.875670, -43.273186 ], [ 145.862489, -43.273027 ], [ 145.880696, -43.289684 ], [ 145.897572, -43.281734 ], [ 145.901083, -43.265460 ], [ 145.923948, -43.267433 ], [ 145.920125, -43.291979 ], [ 145.926633, -43.300487 ], [ 145.899177, -43.300300 ], [ 145.895180, -43.314535 ], [ 145.878681, -43.310800 ], [ 145.870537, -43.322614 ], [ 145.850545, -43.306778 ], [ 145.841230, -43.315266 ], [ 145.843549, -43.304268 ], [ 145.853364, -43.300159 ], [ 145.850504, -43.292605 ], [ 145.839212, -43.294696 ], [ 145.815667, -43.278516 ], [ 145.820562, -43.250098 ], [ 145.806481, -43.248873 ], [ 145.804119, -43.235503 ], [ 145.811115, -43.234820 ], [ 145.796684, -43.219055 ], [ 145.807892, -43.209456 ], [ 145.789868, -43.200831 ], [ 145.795265, -43.192405 ], [ 145.787729, -43.188264 ], [ 145.768731, -43.185621 ], [ 145.761563, -43.193252 ], [ 145.757941, -43.164892 ], [ 145.733547, -43.137475 ], [ 145.721643, -43.136352 ], [ 145.724969, -43.122477 ], [ 145.736226, -43.116731 ], [ 145.715424, -43.111763 ], [ 145.716158, -43.106017 ], [ 145.708473, -43.118483 ], [ 145.694264, -43.118494 ], [ 145.683356, -43.100387 ], [ 145.673376, -43.106727 ], [ 145.664951, -43.096247 ], [ 145.676833, -43.091171 ], [ 145.669752, -43.081184 ], [ 145.674848, -43.070464 ], [ 145.691198, -43.067500 ], [ 145.684530, -43.068549 ], [ 145.682228, -43.050468 ], [ 145.660026, -43.043816 ], [ 145.647633, -43.048506 ], [ 145.637775, -43.032387 ], [ 145.643957, -43.024771 ], [ 145.609928, -43.009179 ], [ 145.602935, -42.997170 ], [ 145.607522, -42.990680 ], [ 145.599921, -42.990497 ], [ 145.590637, -42.972519 ], [ 145.561365, -42.971100 ], [ 145.494879, -42.991523 ], [ 145.503499, -42.976446 ], [ 145.493596, -42.973962 ], [ 145.498664, -42.963180 ], [ 145.492197, -42.955964 ], [ 145.504398, -42.948712 ], [ 145.492952, -42.946921 ], [ 145.490462, -42.929234 ], [ 145.481562, -42.931079 ], [ 145.487621, -42.913388 ], [ 145.476049, -42.914216 ], [ 145.451969, -42.897817 ], [ 145.436027, -42.873448 ], [ 145.443736, -42.869094 ], [ 145.436868, -42.854475 ], [ 145.420851, -42.837089 ], [ 145.425995, -42.828930 ], [ 145.419727, -42.814809 ], [ 145.426322, -42.814915 ], [ 145.407195, -42.784572 ], [ 145.414582, -42.780799 ], [ 145.382637, -42.768704 ], [ 145.380590, -42.748167 ], [ 145.391332, -42.743028 ], [ 145.388789, -42.735584 ], [ 145.396699, -42.736405 ], [ 145.394176, -42.721288 ], [ 145.383267, -42.728225 ], [ 145.374018, -42.694586 ], [ 145.365816, -42.689161 ], [ 145.366210, -42.656512 ], [ 145.338303, -42.651025 ], [ 145.333637, -42.657772 ], [ 145.327771, -42.646095 ], [ 145.335780, -42.632571 ], [ 145.311810, -42.620658 ], [ 145.290029, -42.622514 ], [ 145.285383, -42.632372 ], [ 145.262948, -42.621623 ], [ 145.262981, -42.612750 ], [ 145.280830, -42.614927 ], [ 145.301714, -42.599051 ], [ 145.295363, -42.595223 ], [ 145.304261, -42.586043 ], [ 145.299221, -42.577243 ], [ 145.304412, -42.571212 ], [ 145.277783, -42.563253 ], [ 145.280694, -42.552910 ], [ 145.267469, -42.528593 ], [ 145.252826, -42.522088 ], [ 145.261198, -42.503988 ], [ 145.235847, -42.471242 ], [ 145.254044, -42.448059 ], [ 145.234628, -42.417479 ], [ 145.244960, -42.406157 ], [ 145.235868, -42.404423 ], [ 145.237556, -42.390086 ], [ 145.235520, -42.394714 ], [ 145.224319, -42.386391 ], [ 145.226423, -42.366887 ], [ 145.215295, -42.365895 ], [ 145.223181, -42.355295 ], [ 145.196129, -42.327835 ], [ 145.194008, -42.312137 ], [ 145.213811, -42.298368 ], [ 145.213726, -42.277729 ], [ 145.205880, -42.254422 ], [ 145.189167, -42.242615 ], [ 145.190110, -42.208012 ], [ 145.173943, -42.209927 ], [ 145.165516, -42.196975 ], [ 145.196371, -42.197058 ], [ 145.199959, -42.207932 ], [ 145.208754, -42.207399 ], [ 145.207299, -42.200093 ], [ 145.224859, -42.228420 ], [ 145.221007, -42.242017 ], [ 145.235782, -42.244082 ], [ 145.237054, -42.263355 ], [ 145.256062, -42.267325 ], [ 145.253472, -42.288472 ], [ 145.289586, -42.282895 ], [ 145.292655, -42.295823 ], [ 145.299572, -42.296653 ], [ 145.317507, -42.285349 ], [ 145.310036, -42.320457 ], [ 145.330972, -42.330395 ], [ 145.337962, -42.344410 ], [ 145.340304, -42.337055 ], [ 145.353490, -42.343875 ], [ 145.393513, -42.374271 ], [ 145.415589, -42.371743 ], [ 145.453279, -42.404432 ], [ 145.446640, -42.437442 ], [ 145.459181, -42.458265 ], [ 145.461906, -42.500602 ], [ 145.473909, -42.525843 ], [ 145.481796, -42.525698 ], [ 145.472315, -42.500994 ], [ 145.480201, -42.475379 ], [ 145.473209, -42.473547 ], [ 145.464043, -42.442595 ], [ 145.473877, -42.440561 ], [ 145.452654, -42.442002 ], [ 145.458028, -42.434789 ], [ 145.491948, -42.422257 ], [ 145.531057, -42.449533 ], [ 145.554740, -42.440410 ], [ 145.608150, -42.453045 ], [ 145.618204, -42.445481 ], [ 145.614933, -42.440769 ], [ 145.616414, -42.445469 ], [ 145.608294, -42.450703 ], [ 145.557118, -42.436072 ], [ 145.534238, -42.447447 ], [ 145.524527, -42.443517 ], [ 145.513056, -42.434502 ], [ 145.534827, -42.405480 ], [ 145.536235, -42.387129 ], [ 145.549886, -42.387960 ], [ 145.542560, -42.369195 ], [ 145.557614, -42.357028 ], [ 145.543745, -42.352124 ], [ 145.530178, -42.372616 ], [ 145.512366, -42.374196 ], [ 145.502588, -42.364012 ], [ 145.519607, -42.368087 ], [ 145.526736, -42.360539 ], [ 145.517507, -42.339768 ], [ 145.499460, -42.332343 ], [ 145.494117, -42.321867 ], [ 145.496399, -42.334343 ], [ 145.490711, -42.335429 ], [ 145.497868, -42.342384 ], [ 145.480540, -42.347241 ], [ 145.489854, -42.352491 ], [ 145.484933, -42.356658 ], [ 145.492642, -42.355928 ], [ 145.480852, -42.364480 ], [ 145.478337, -42.348707 ], [ 145.467560, -42.346129 ], [ 145.463377, -42.323460 ], [ 145.432466, -42.314304 ], [ 145.422990, -42.289975 ], [ 145.399698, -42.277471 ], [ 145.377435, -42.251744 ], [ 145.364827, -42.251677 ], [ 145.360909, -42.233798 ], [ 145.371811, -42.224361 ], [ 145.363995, -42.209866 ], [ 145.372257, -42.202138 ], [ 145.346049, -42.206790 ], [ 145.356292, -42.194100 ], [ 145.372907, -42.195406 ], [ 145.356296, -42.191240 ], [ 145.359658, -42.177352 ], [ 145.346900, -42.168585 ], [ 145.329134, -42.173299 ], [ 145.325976, -42.160731 ], [ 145.333926, -42.151760 ], [ 145.323060, -42.156568 ], [ 145.307823, -42.148906 ], [ 145.303570, -42.152810 ], [ 145.315747, -42.157760 ], [ 145.318164, -42.176185 ], [ 145.293762, -42.179167 ], [ 145.268149, -42.202388 ], [ 145.285037, -42.210097 ], [ 145.283538, -42.198016 ], [ 145.290158, -42.196647 ], [ 145.289682, -42.227293 ], [ 145.268076, -42.232105 ], [ 145.249216, -42.220926 ], [ 145.223136, -42.218705 ], [ 145.249852, -42.190408 ], [ 145.259570, -42.168154 ], [ 145.263729, -42.112306 ], [ 145.249201, -42.046231 ], [ 145.251857, -42.060057 ], [ 145.190559, -41.946133 ], [ 145.202413, -41.958922 ], [ 145.196877, -41.948587 ], [ 145.204115, -41.936815 ], [ 145.194810, -41.948900 ], [ 145.173969, -41.928457 ], [ 145.124435, -41.900499 ], [ 145.109202, -41.877107 ], [ 145.071460, -41.854712 ], [ 145.068595, -41.836180 ], [ 145.056788, -41.824076 ], [ 145.028205, -41.812958 ], [ 145.032888, -41.806018 ], [ 145.010635, -41.790175 ], [ 145.004506, -41.768898 ], [ 145.010145, -41.767371 ], [ 144.994948, -41.762164 ], [ 144.999131, -41.755101 ], [ 144.980118, -41.739562 ], [ 144.985053, -41.735538 ], [ 144.978577, -41.738103 ], [ 144.954941, -41.716772 ], [ 144.938055, -41.724409 ], [ 144.927021, -41.720933 ], [ 144.911220, -41.691228 ], [ 144.926369, -41.672804 ], [ 144.924912, -41.665608 ], [ 145.005252, -41.617822 ], [ 145.050122, -41.625880 ], [ 145.034811, -41.616962 ], [ 145.051069, -41.608013 ], [ 145.050574, -41.601303 ], [ 145.050935, -41.607848 ], [ 145.034052, -41.616718 ], [ 145.004696, -41.616497 ], [ 144.974744, -41.628734 ], [ 144.920865, -41.667596 ], [ 144.908044, -41.656246 ], [ 144.906663, -41.642018 ], [ 144.897118, -41.639508 ], [ 144.905872, -41.628820 ], [ 144.888303, -41.583194 ], [ 144.832007, -41.508620 ], [ 144.839571, -41.505567 ], [ 144.821311, -41.500773 ], [ 144.813581, -41.477462 ], [ 144.792487, -41.463133 ], [ 144.785280, -41.445714 ], [ 144.745887, -41.421491 ], [ 144.789891, -41.395130 ], [ 144.781861, -41.397029 ], [ 144.782976, -41.367423 ], [ 144.777820, -41.369763 ], [ 144.759486, -41.341194 ], [ 144.770554, -41.341519 ], [ 144.738072, -41.325578 ], [ 144.734202, -41.318282 ], [ 144.741994, -41.311675 ], [ 144.719749, -41.301484 ], [ 144.722619, -41.285111 ], [ 144.711372, -41.282133 ], [ 144.716059, -41.277659 ], [ 144.705924, -41.254754 ], [ 144.683526, -41.234829 ], [ 144.690707, -41.231651 ], [ 144.685899, -41.223231 ], [ 144.694852, -41.199994 ], [ 144.672611, -41.159357 ], [ 144.683137, -41.132455 ], [ 144.671378, -41.138701 ], [ 144.664579, -41.120580 ], [ 144.676540, -41.117011 ], [ 144.678073, -41.079778 ], [ 144.659340, -41.057356 ], [ 144.681220, -41.050207 ], [ 144.683960, -41.038485 ], [ 144.695268, -41.048486 ], [ 144.746155, -41.056409 ], [ 144.754462, -41.061823 ] ], [ [ 144.779333, -41.079500 ], [ 144.775210, -41.084293 ], [ 144.781261, -41.079853 ], [ 144.779333, -41.079500 ] ], [ [ 144.777341, -41.070091 ], [ 144.791585, -41.068865 ], [ 144.795223, -41.054998 ], [ 144.793855, -41.053985 ], [ 144.791172, -41.068690 ], [ 144.782362, -41.065525 ], [ 144.777341, -41.070091 ] ], [ [ 144.796219, -41.055736 ], [ 144.798652, -41.060035 ], [ 144.799240, -41.057974 ], [ 144.796219, -41.055736 ] ], [ [ 144.791540, -41.084969 ], [ 144.790728, -41.086832 ], [ 144.799122, -41.089529 ], [ 144.791165, -41.086281 ], [ 144.791540, -41.084969 ] ], [ [ 145.064125, -41.634036 ], [ 145.065983, -41.636421 ], [ 145.062093, -41.647983 ], [ 145.081232, -41.657116 ], [ 145.103775, -41.655895 ], [ 145.090875, -41.651241 ], [ 145.082199, -41.656176 ], [ 145.065615, -41.649032 ], [ 145.068161, -41.636387 ], [ 145.064125, -41.634036 ] ], [ [ 145.388656, -42.196644 ], [ 145.411219, -42.198418 ], [ 145.414992, -42.196811 ], [ 145.388656, -42.196644 ] ], [ [ 145.430958, -42.190011 ], [ 145.434023, -42.188706 ], [ 145.449001, -42.199769 ], [ 145.463897, -42.192569 ], [ 145.469823, -42.197144 ], [ 145.471508, -42.185374 ], [ 145.487023, -42.186916 ], [ 145.499953, -42.176319 ], [ 145.486997, -42.186539 ], [ 145.471562, -42.184938 ], [ 145.469668, -42.196670 ], [ 145.464064, -42.192256 ], [ 145.449066, -42.199429 ], [ 145.433831, -42.188288 ], [ 145.430958, -42.190011 ] ], [ [ 146.156535, -43.414211 ], [ 146.166411, -43.418752 ], [ 146.168631, -43.411074 ], [ 146.156535, -43.414211 ] ], [ [ 147.535871, -42.960446 ], [ 147.516449, -42.952131 ], [ 147.518198, -42.963502 ], [ 147.509146, -42.967315 ], [ 147.528667, -42.985174 ], [ 147.539201, -42.974910 ], [ 147.527659, -42.962009 ], [ 147.535871, -42.960446 ] ], [ [ 148.301216, -41.251273 ], [ 148.287988, -41.250247 ], [ 148.293148, -41.253737 ], [ 148.287613, -41.256935 ], [ 148.301216, -41.251273 ] ], [ [ 147.201143, -40.999743 ], [ 147.203245, -40.999937 ], [ 147.202672, -41.009008 ], [ 147.205750, -40.999837 ], [ 147.201143, -40.999743 ] ], [ [ 146.151654, -41.162045 ], [ 146.128983, -41.152298 ], [ 146.131761, -41.157267 ], [ 146.120766, -41.155706 ], [ 146.125367, -41.164903 ], [ 146.129428, -41.158995 ], [ 146.144626, -41.161491 ], [ 146.142192, -41.168473 ], [ 146.151908, -41.176943 ], [ 146.144170, -41.164075 ], [ 146.151654, -41.162045 ] ], [ [ 145.120845, -40.838941 ], [ 145.091374, -40.847701 ], [ 145.119694, -40.841042 ], [ 145.120845, -40.838941 ] ], [ [ 148.248756, -41.459656 ], [ 148.236244, -41.459146 ], [ 148.244398, -41.466570 ], [ 148.232911, -41.460398 ], [ 148.231605, -41.453279 ], [ 148.231106, -41.459837 ], [ 148.246233, -41.469993 ], [ 148.248756, -41.459656 ] ], [ [ 148.229653, -41.442640 ], [ 148.227630, -41.431612 ], [ 148.228745, -41.442547 ], [ 148.229653, -41.442640 ] ], [ [ 148.219890, -41.445580 ], [ 148.215920, -41.446137 ], [ 148.219108, -41.446805 ], [ 148.219890, -41.445580 ] ], [ [ 148.204248, -41.443691 ], [ 148.205429, -41.440982 ], [ 148.197882, -41.442357 ], [ 148.204248, -41.443691 ] ], [ [ 148.075841, -42.067087 ], [ 148.075899, -42.062644 ], [ 148.063960, -42.068366 ], [ 148.073524, -42.065245 ], [ 148.075841, -42.067087 ] ], [ [ 147.052310, -43.041767 ], [ 147.056261, -43.039689 ], [ 147.036506, -43.024661 ], [ 147.041366, -43.017748 ], [ 147.034777, -43.019129 ], [ 147.034041, -43.010891 ], [ 147.002317, -43.016870 ], [ 147.033019, -43.011415 ], [ 147.035676, -43.025036 ], [ 147.054684, -43.039995 ], [ 147.052310, -43.041767 ] ], [ [ 146.917754, -43.436894 ], [ 146.908291, -43.432156 ], [ 146.905874, -43.420799 ], [ 146.907601, -43.432393 ], [ 146.917754, -43.436894 ] ], [ [ 145.917851, -43.210310 ], [ 145.928127, -43.204659 ], [ 145.916285, -43.192174 ], [ 145.937342, -43.191481 ], [ 145.927708, -43.185034 ], [ 145.921338, -43.163191 ], [ 145.940454, -43.150439 ], [ 145.920472, -43.161382 ], [ 145.927102, -43.189413 ], [ 145.908648, -43.187014 ], [ 145.915800, -43.188280 ], [ 145.910036, -43.194087 ], [ 145.920675, -43.204904 ], [ 145.917851, -43.210310 ] ], [ [ 145.613883, -42.437439 ], [ 145.626303, -42.445889 ], [ 145.648221, -42.435776 ], [ 145.671991, -42.444866 ], [ 145.677123, -42.504088 ], [ 145.665285, -42.527497 ], [ 145.672542, -42.534346 ], [ 145.666151, -42.538227 ], [ 145.670983, -42.562363 ], [ 145.698605, -42.570882 ], [ 145.718173, -42.590035 ], [ 145.729697, -42.582795 ], [ 145.741359, -42.591139 ], [ 145.729290, -42.582031 ], [ 145.718659, -42.589459 ], [ 145.701175, -42.571647 ], [ 145.671843, -42.560717 ], [ 145.667354, -42.538005 ], [ 145.674067, -42.534117 ], [ 145.667096, -42.527739 ], [ 145.678750, -42.502002 ], [ 145.673267, -42.442730 ], [ 145.645783, -42.434272 ], [ 145.625766, -42.444480 ], [ 145.612914, -42.434366 ], [ 145.613883, -42.437439 ] ], [ [ 145.246202, -42.030615 ], [ 145.253247, -42.019488 ], [ 145.267714, -42.022905 ], [ 145.253297, -42.018618 ], [ 145.245641, -42.027693 ], [ 145.246202, -42.030615 ] ] ], [ [ [ 148.349737, -40.517405 ], [ 148.347005, -40.522516 ], [ 148.340391, -40.517047 ], [ 148.327874, -40.501534 ], [ 148.331176, -40.496379 ], [ 148.344715, -40.499249 ], [ 148.349737, -40.517405 ] ] ], [ [ [ 148.347729, -39.950922 ], [ 148.342542, -39.958786 ], [ 148.322896, -39.959535 ], [ 148.315224, -39.946672 ], [ 148.324036, -39.944668 ], [ 148.328564, -39.931983 ], [ 148.347729, -39.950922 ] ] ], [ [ [ 148.345979, -42.341687 ], [ 148.304643, -42.343784 ], [ 148.277068, -42.324644 ], [ 148.251987, -42.328576 ], [ 148.236565, -42.317678 ], [ 148.236136, -42.306489 ], [ 148.253975, -42.293475 ], [ 148.279240, -42.302213 ], [ 148.298482, -42.292461 ], [ 148.319330, -42.305872 ], [ 148.317633, -42.323332 ], [ 148.331715, -42.322622 ], [ 148.326302, -42.333737 ], [ 148.345979, -42.341687 ] ] ], [ [ [ 148.334277, -40.208333 ], [ 148.283291, -40.231378 ], [ 148.271750, -40.230812 ], [ 148.272247, -40.217157 ], [ 148.258928, -40.209863 ], [ 148.210283, -40.210695 ], [ 148.193204, -40.218909 ], [ 148.185396, -40.249854 ], [ 148.122105, -40.274035 ], [ 148.098371, -40.260770 ], [ 148.088599, -40.268918 ], [ 148.059975, -40.247765 ], [ 148.046110, -40.249506 ], [ 148.040339, -40.230105 ], [ 148.025212, -40.225816 ], [ 148.024496, -40.211832 ], [ 148.040360, -40.215628 ], [ 148.041872, -40.204129 ], [ 148.017627, -40.170560 ], [ 148.019666, -40.136914 ], [ 148.007019, -40.105369 ], [ 147.970208, -40.086641 ], [ 147.963908, -40.075137 ], [ 147.955338, -40.082301 ], [ 147.964487, -40.088787 ], [ 147.953650, -40.099005 ], [ 147.951703, -40.061202 ], [ 147.933850, -40.034647 ], [ 147.917223, -40.029825 ], [ 147.895139, -40.037046 ], [ 147.874749, -40.021282 ], [ 147.859016, -40.023392 ], [ 147.869309, -40.009472 ], [ 147.880468, -40.012098 ], [ 147.885864, -40.000581 ], [ 147.897245, -39.999015 ], [ 147.906751, -39.976154 ], [ 147.899184, -39.942768 ], [ 147.880012, -39.907311 ], [ 147.847806, -39.898031 ], [ 147.804546, -39.916577 ], [ 147.794088, -39.901962 ], [ 147.757223, -39.890618 ], [ 147.748199, -39.873759 ], [ 147.769510, -39.866385 ], [ 147.777372, -39.849564 ], [ 147.792747, -39.852429 ], [ 147.803657, -39.835362 ], [ 147.843840, -39.837056 ], [ 147.850835, -39.822647 ], [ 147.840889, -39.808845 ], [ 147.869716, -39.786727 ], [ 147.868220, -39.774290 ], [ 147.847978, -39.750670 ], [ 147.862703, -39.747156 ], [ 147.884186, -39.761323 ], [ 147.919578, -39.744345 ], [ 147.941776, -39.719554 ], [ 147.963439, -39.727070 ], [ 147.955788, -39.732023 ], [ 147.955958, -39.744940 ], [ 147.966735, -39.772864 ], [ 147.967512, -39.759154 ], [ 147.990705, -39.779275 ], [ 147.962316, -39.743289 ], [ 147.967557, -39.741830 ], [ 147.960671, -39.730132 ], [ 148.122472, -39.897448 ], [ 148.107973, -39.894909 ], [ 148.124084, -39.898526 ], [ 148.186090, -39.946608 ], [ 148.170978, -39.942589 ], [ 148.177245, -39.952059 ], [ 148.204976, -39.945233 ], [ 148.260195, -39.966870 ], [ 148.291135, -39.965118 ], [ 148.279268, -40.008597 ], [ 148.286257, -40.067923 ], [ 148.269247, -40.090782 ], [ 148.238306, -40.101529 ], [ 148.223281, -40.121045 ], [ 148.234069, -40.127710 ], [ 148.279159, -40.116428 ], [ 148.281833, -40.080679 ], [ 148.287652, -40.080784 ], [ 148.314828, -40.174085 ], [ 148.334277, -40.208333 ] ] ], [ [ [ 148.325802, -40.287476 ], [ 148.306275, -40.292821 ], [ 148.278335, -40.284192 ], [ 148.288077, -40.278676 ], [ 148.295423, -40.257441 ], [ 148.312361, -40.266259 ], [ 148.325802, -40.287476 ] ] ], [ [ [ 148.318491, -40.501004 ], [ 148.314921, -40.520474 ], [ 148.304317, -40.521119 ], [ 148.303240, -40.504399 ], [ 148.312425, -40.496640 ], [ 148.318491, -40.501004 ] ] ], [ [ [ 148.266784, -40.252596 ], [ 148.256823, -40.257542 ], [ 148.238893, -40.248627 ], [ 148.233843, -40.254690 ], [ 148.227773, -40.240908 ], [ 148.256437, -40.241762 ], [ 148.266784, -40.252596 ] ] ], [ [ [ 148.261927, -40.228468 ], [ 148.244487, -40.225414 ], [ 148.256977, -40.221973 ], [ 148.261927, -40.228468 ] ] ], [ [ [ 148.248432, -40.487771 ], [ 148.231970, -40.507856 ], [ 148.228405, -40.525651 ], [ 148.235030, -40.532883 ], [ 148.194755, -40.569098 ], [ 148.198465, -40.590122 ], [ 148.178286, -40.594185 ], [ 148.149204, -40.565369 ], [ 148.125657, -40.572343 ], [ 148.113324, -40.564875 ], [ 148.121528, -40.537112 ], [ 148.095831, -40.531738 ], [ 148.131130, -40.502107 ], [ 148.192762, -40.489367 ], [ 148.210229, -40.503504 ], [ 148.238953, -40.479896 ], [ 148.246148, -40.478409 ], [ 148.248432, -40.487771 ] ] ], [ [ [ 148.215104, -40.254906 ], [ 148.205679, -40.258491 ], [ 148.201749, -40.249739 ], [ 148.215104, -40.254906 ] ] ], [ [ [ 148.169014, -42.648680 ], [ 148.152987, -42.653560 ], [ 148.144520, -42.667372 ], [ 148.133278, -42.660114 ], [ 148.119586, -42.668692 ], [ 148.112098, -42.659731 ], [ 148.081273, -42.661757 ], [ 148.068213, -42.681236 ], [ 148.087118, -42.689474 ], [ 148.096308, -42.711196 ], [ 148.093028, -42.720886 ], [ 148.079401, -42.724377 ], [ 148.065282, -42.717338 ], [ 148.067886, -42.726383 ], [ 148.047965, -42.722658 ], [ 148.013573, -42.741864 ], [ 148.012714, -42.720336 ], [ 148.025540, -42.712943 ], [ 148.038744, -42.684106 ], [ 148.057269, -42.685590 ], [ 148.066320, -42.676954 ], [ 148.063155, -42.664646 ], [ 148.049712, -42.655681 ], [ 148.025478, -42.668188 ], [ 148.009322, -42.661187 ], [ 148.037887, -42.649197 ], [ 148.034277, -42.634912 ], [ 148.024605, -42.629566 ], [ 148.047748, -42.607854 ], [ 148.052767, -42.585100 ], [ 148.067397, -42.570657 ], [ 148.089799, -42.585044 ], [ 148.120142, -42.585011 ], [ 148.138549, -42.608441 ], [ 148.140673, -42.631168 ], [ 148.169014, -42.648680 ] ] ], [ [ [ 148.166054, -40.291935 ], [ 148.131932, -40.297874 ], [ 148.143219, -40.290113 ], [ 148.166054, -40.291935 ] ] ], [ [ [ 148.127743, -40.734296 ], [ 148.108142, -40.742853 ], [ 148.089824, -40.740085 ], [ 148.119373, -40.726930 ], [ 148.127743, -40.734296 ] ] ], [ [ [ 148.116053, -40.302946 ], [ 148.107638, -40.312470 ], [ 148.097565, -40.309090 ], [ 148.108589, -40.295667 ], [ 148.116053, -40.302946 ] ] ], [ [ [ 148.082002, -40.488780 ], [ 148.047732, -40.474074 ], [ 148.061758, -40.468454 ], [ 148.082002, -40.488780 ] ] ], [ [ [ 148.025111, -40.354577 ], [ 147.994764, -40.369337 ], [ 147.980622, -40.367635 ], [ 148.006358, -40.351234 ], [ 148.024730, -40.349170 ], [ 148.025111, -40.354577 ] ] ], [ [ [ 148.011504, -43.221681 ], [ 148.001351, -43.227703 ], [ 147.949626, -43.215790 ], [ 147.945160, -43.194680 ], [ 147.931760, -43.198854 ], [ 147.916506, -43.189563 ], [ 147.896630, -43.190994 ], [ 147.895553, -43.155064 ], [ 147.888164, -43.142676 ], [ 147.894681, -43.138209 ], [ 147.888765, -43.138199 ], [ 147.886423, -43.123264 ], [ 147.867290, -43.129281 ], [ 147.863332, -43.107856 ], [ 147.853766, -43.117945 ], [ 147.857979, -43.124421 ], [ 147.850384, -43.124099 ], [ 147.866095, -43.137281 ], [ 147.855675, -43.134782 ], [ 147.860058, -43.142472 ], [ 147.845553, -43.154347 ], [ 147.861350, -43.164949 ], [ 147.870330, -43.151840 ], [ 147.870690, -43.164288 ], [ 147.852999, -43.179577 ], [ 147.876253, -43.191710 ], [ 147.866474, -43.197929 ], [ 147.874616, -43.206364 ], [ 147.860838, -43.208220 ], [ 147.844472, -43.187533 ], [ 147.797429, -43.217457 ], [ 147.799729, -43.242340 ], [ 147.785615, -43.237973 ], [ 147.776399, -43.213157 ], [ 147.750715, -43.209033 ], [ 147.746035, -43.197569 ], [ 147.711578, -43.194282 ], [ 147.715518, -43.178358 ], [ 147.701292, -43.176982 ], [ 147.694551, -43.167179 ], [ 147.701488, -43.160114 ], [ 147.698166, -43.145690 ], [ 147.685138, -43.138730 ], [ 147.703396, -43.122145 ], [ 147.731142, -43.124916 ], [ 147.734104, -43.110809 ], [ 147.716379, -43.105208 ], [ 147.730179, -43.100332 ], [ 147.747515, -43.112124 ], [ 147.742079, -43.094904 ], [ 147.684186, -43.102438 ], [ 147.673726, -43.088687 ], [ 147.650740, -43.089445 ], [ 147.641437, -43.075647 ], [ 147.627123, -43.073515 ], [ 147.622388, -43.051575 ], [ 147.628333, -43.040258 ], [ 147.619071, -43.006636 ], [ 147.640734, -42.993560 ], [ 147.667520, -42.999909 ], [ 147.679341, -42.991801 ], [ 147.685157, -42.974694 ], [ 147.668944, -42.963543 ], [ 147.675717, -42.956967 ], [ 147.664409, -42.943582 ], [ 147.678878, -42.934545 ], [ 147.699473, -42.944257 ], [ 147.705359, -42.956620 ], [ 147.725528, -42.949394 ], [ 147.731363, -42.957165 ], [ 147.726291, -42.964228 ], [ 147.736022, -42.970022 ], [ 147.708038, -43.003555 ], [ 147.726912, -43.018714 ], [ 147.718453, -43.027975 ], [ 147.740428, -43.014116 ], [ 147.749379, -43.043379 ], [ 147.759037, -43.044137 ], [ 147.766735, -43.032672 ], [ 147.773829, -43.054938 ], [ 147.806686, -43.046425 ], [ 147.813794, -43.060610 ], [ 147.826603, -43.055237 ], [ 147.840701, -43.060400 ], [ 147.844355, -43.049932 ], [ 147.835922, -43.041115 ], [ 147.845436, -43.030682 ], [ 147.860340, -43.057314 ], [ 147.872443, -43.023363 ], [ 147.924995, -43.015889 ], [ 147.846860, -43.013058 ], [ 147.850974, -43.007916 ], [ 147.839301, -43.003979 ], [ 147.837899, -42.991561 ], [ 147.856779, -42.982517 ], [ 147.836543, -42.980556 ], [ 147.832381, -42.970556 ], [ 147.822602, -42.976101 ], [ 147.811311, -42.962254 ], [ 147.830846, -42.965246 ], [ 147.854803, -42.958205 ], [ 147.847999, -42.951638 ], [ 147.853799, -42.945877 ], [ 147.865873, -42.947044 ], [ 147.857744, -42.935458 ], [ 147.837048, -42.947847 ], [ 147.829492, -42.946674 ], [ 147.833264, -42.934657 ], [ 147.814891, -42.937869 ], [ 147.811529, -42.926103 ], [ 147.821481, -42.922421 ], [ 147.821825, -42.907884 ], [ 147.802901, -42.893233 ], [ 147.840835, -42.888650 ], [ 147.873839, -42.894629 ], [ 147.876415, -42.888672 ], [ 147.895002, -42.894433 ], [ 147.907805, -42.908754 ], [ 147.900413, -42.899846 ], [ 147.903957, -42.882359 ], [ 147.861124, -42.874994 ], [ 147.885242, -42.861884 ], [ 147.879630, -42.853645 ], [ 147.891706, -42.842525 ], [ 147.920112, -42.843015 ], [ 147.920356, -42.861292 ], [ 147.939856, -42.877176 ], [ 147.970888, -42.864223 ], [ 147.971340, -42.874248 ], [ 147.957801, -42.881936 ], [ 147.984060, -42.890432 ], [ 147.998862, -42.914565 ], [ 147.983432, -42.941260 ], [ 147.999510, -42.964206 ], [ 147.984420, -42.979207 ], [ 147.961326, -42.984066 ], [ 147.953160, -43.001298 ], [ 147.930506, -43.009893 ], [ 147.926429, -43.021228 ], [ 147.935524, -43.034973 ], [ 147.950217, -43.034764 ], [ 147.954041, -43.052070 ], [ 147.945066, -43.059229 ], [ 147.955695, -43.064419 ], [ 147.970726, -43.102556 ], [ 147.981089, -43.107373 ], [ 147.980612, -43.123308 ], [ 147.954581, -43.125720 ], [ 147.959847, -43.130501 ], [ 147.954355, -43.136598 ], [ 147.963387, -43.142729 ], [ 147.972237, -43.134830 ], [ 148.005817, -43.139058 ], [ 147.983168, -43.156111 ], [ 147.963690, -43.191683 ], [ 148.011504, -43.221681 ] ] ], [ [ [ 148.011137, -39.648628 ], [ 147.991378, -39.663382 ], [ 147.964916, -39.660639 ], [ 147.985178, -39.652269 ], [ 147.977117, -39.643462 ], [ 147.982519, -39.636983 ], [ 148.011137, -39.648628 ] ] ], [ [ [ 148.009528, -43.236550 ], [ 147.998704, -43.246389 ], [ 147.998884, -43.232900 ], [ 148.009528, -43.236550 ] ] ], [ [ [ 147.986630, -40.186005 ], [ 147.973717, -40.194177 ], [ 147.971787, -40.175701 ], [ 147.983745, -40.177530 ], [ 147.986630, -40.186005 ] ] ], [ [ [ 147.946602, -39.697180 ], [ 147.902897, -39.705225 ], [ 147.890644, -39.700362 ], [ 147.887686, -39.687877 ], [ 147.898666, -39.681513 ], [ 147.907193, -39.689293 ], [ 147.926712, -39.685286 ], [ 147.946602, -39.697180 ] ] ], [ [ [ 147.937714, -40.270009 ], [ 147.927698, -40.281890 ], [ 147.911090, -40.278657 ], [ 147.931415, -40.257936 ], [ 147.937714, -40.270009 ] ] ], [ [ [ 147.917208, -40.186277 ], [ 147.890374, -40.190523 ], [ 147.906282, -40.177344 ], [ 147.917208, -40.186277 ] ] ], [ [ [ 147.908873, -40.301612 ], [ 147.904735, -40.317090 ], [ 147.881166, -40.325954 ], [ 147.864323, -40.319525 ], [ 147.846615, -40.323907 ], [ 147.856143, -40.308088 ], [ 147.836332, -40.303464 ], [ 147.839791, -40.292112 ], [ 147.868103, -40.297292 ], [ 147.875552, -40.305661 ], [ 147.903275, -40.291471 ], [ 147.908873, -40.301612 ] ] ], [ [ [ 147.893182, -40.097280 ], [ 147.886775, -40.106159 ], [ 147.886514, -40.094623 ], [ 147.893182, -40.097280 ] ] ], [ [ [ 147.803156, -40.313950 ], [ 147.787186, -40.299919 ], [ 147.790695, -40.294971 ], [ 147.799564, -40.294439 ], [ 147.803156, -40.313950 ] ] ], [ [ [ 147.787500, -40.042051 ], [ 147.759630, -40.068324 ], [ 147.756551, -40.094755 ], [ 147.726294, -40.103138 ], [ 147.725647, -40.091200 ], [ 147.751011, -40.076174 ], [ 147.747312, -40.066625 ], [ 147.756423, -40.058756 ], [ 147.764212, -40.028643 ], [ 147.775768, -40.023031 ], [ 147.787500, -40.042051 ] ] ], [ [ [ 147.778852, -39.908975 ], [ 147.769124, -39.909354 ], [ 147.774023, -39.903602 ], [ 147.778852, -39.908975 ] ] ], [ [ [ 147.675423, -43.135705 ], [ 147.670393, -43.140366 ], [ 147.672294, -43.129312 ], [ 147.675423, -43.135705 ] ] ], [ [ [ 147.648942, -42.954184 ], [ 147.644600, -42.958921 ], [ 147.635678, -42.947163 ], [ 147.643785, -42.943718 ], [ 147.648942, -42.954184 ] ] ], [ [ [ 147.644205, -40.787921 ], [ 147.634164, -40.807140 ], [ 147.617007, -40.813388 ], [ 147.640959, -40.779814 ], [ 147.644205, -40.787921 ] ] ], [ [ [ 147.490874, -43.062006 ], [ 147.472132, -43.045822 ], [ 147.484844, -43.044846 ], [ 147.490874, -43.062006 ] ] ], [ [ [ 147.202800, -43.436981 ], [ 147.203519, -43.453198 ], [ 147.179557, -43.471256 ], [ 147.187056, -43.481337 ], [ 147.182837, -43.488863 ], [ 147.159387, -43.483351 ], [ 147.146534, -43.496781 ], [ 147.137447, -43.493344 ], [ 147.135650, -43.458103 ], [ 147.093898, -43.428398 ], [ 147.097146, -43.412367 ], [ 147.122344, -43.416462 ], [ 147.160375, -43.464404 ], [ 147.179878, -43.458298 ], [ 147.171415, -43.451725 ], [ 147.180376, -43.443265 ], [ 147.174268, -43.437809 ], [ 147.192417, -43.428757 ], [ 147.184873, -43.418094 ], [ 147.174277, -43.423514 ], [ 147.174112, -43.409116 ], [ 147.167887, -43.408738 ], [ 147.185854, -43.387657 ], [ 147.179097, -43.352555 ], [ 147.188574, -43.349104 ], [ 147.185046, -43.357367 ], [ 147.195609, -43.361267 ], [ 147.198643, -43.379384 ], [ 147.212788, -43.382357 ], [ 147.221585, -43.370746 ], [ 147.218025, -43.362334 ], [ 147.234483, -43.364057 ], [ 147.222336, -43.339846 ], [ 147.240417, -43.329166 ], [ 147.246780, -43.304327 ], [ 147.271080, -43.295519 ], [ 147.271597, -43.276041 ], [ 147.286104, -43.265938 ], [ 147.290857, -43.241789 ], [ 147.302201, -43.264280 ], [ 147.297969, -43.273143 ], [ 147.305815, -43.297016 ], [ 147.317638, -43.294773 ], [ 147.357883, -43.255799 ], [ 147.348364, -43.237134 ], [ 147.355732, -43.229079 ], [ 147.341157, -43.219082 ], [ 147.364267, -43.208611 ], [ 147.375729, -43.214859 ], [ 147.383276, -43.206911 ], [ 147.386307, -43.187863 ], [ 147.378961, -43.176046 ], [ 147.361713, -43.176301 ], [ 147.354661, -43.186652 ], [ 147.331789, -43.185297 ], [ 147.342299, -43.169994 ], [ 147.299489, -43.180866 ], [ 147.300954, -43.168462 ], [ 147.276007, -43.166545 ], [ 147.296076, -43.157039 ], [ 147.282118, -43.144332 ], [ 147.310204, -43.134300 ], [ 147.329223, -43.152275 ], [ 147.337218, -43.136556 ], [ 147.352864, -43.131178 ], [ 147.355908, -43.140758 ], [ 147.361158, -43.113575 ], [ 147.353227, -43.128061 ], [ 147.338377, -43.119425 ], [ 147.328409, -43.130998 ], [ 147.322630, -43.126485 ], [ 147.330082, -43.114881 ], [ 147.306633, -43.113562 ], [ 147.317133, -43.109427 ], [ 147.326723, -43.089238 ], [ 147.322520, -43.084433 ], [ 147.338105, -43.082123 ], [ 147.351249, -43.063933 ], [ 147.367631, -43.071824 ], [ 147.362585, -43.086779 ], [ 147.387983, -43.102662 ], [ 147.389599, -43.121063 ], [ 147.400714, -43.127095 ], [ 147.392470, -43.162431 ], [ 147.409119, -43.168892 ], [ 147.410771, -43.200547 ], [ 147.426676, -43.206252 ], [ 147.433270, -43.231539 ], [ 147.430187, -43.252137 ], [ 147.421222, -43.252656 ], [ 147.415942, -43.240573 ], [ 147.380261, -43.250602 ], [ 147.345626, -43.273404 ], [ 147.322286, -43.304035 ], [ 147.320304, -43.343992 ], [ 147.340009, -43.366941 ], [ 147.334431, -43.367735 ], [ 147.349725, -43.368222 ], [ 147.367013, -43.350292 ], [ 147.381959, -43.371780 ], [ 147.378941, -43.390294 ], [ 147.364497, -43.392121 ], [ 147.337912, -43.423253 ], [ 147.346277, -43.429160 ], [ 147.344451, -43.437623 ], [ 147.331283, -43.441625 ], [ 147.320875, -43.469109 ], [ 147.323921, -43.502643 ], [ 147.294719, -43.516165 ], [ 147.291016, -43.505045 ], [ 147.271773, -43.500564 ], [ 147.263146, -43.487887 ], [ 147.246569, -43.492733 ], [ 147.240378, -43.465903 ], [ 147.255796, -43.457721 ], [ 147.245864, -43.440396 ], [ 147.202800, -43.436981 ] ], [ [ 147.202672, -43.434106 ], [ 147.204578, -43.429835 ], [ 147.225905, -43.433909 ], [ 147.241973, -43.425713 ], [ 147.241714, -43.413905 ], [ 147.235920, -43.419558 ], [ 147.227259, -43.412570 ], [ 147.202009, -43.419163 ], [ 147.202672, -43.434106 ] ] ], [ [ [ 147.361331, -39.465221 ], [ 147.345767, -39.471754 ], [ 147.357890, -39.481089 ], [ 147.349277, -39.485543 ], [ 147.351315, -39.497497 ], [ 147.330255, -39.490423 ], [ 147.324481, -39.504975 ], [ 147.313777, -39.480175 ], [ 147.305587, -39.483653 ], [ 147.303987, -39.475222 ], [ 147.312620, -39.473357 ], [ 147.309128, -39.468232 ], [ 147.321800, -39.452009 ], [ 147.327147, -39.458278 ], [ 147.340877, -39.449671 ], [ 147.343207, -39.460544 ], [ 147.361331, -39.465221 ] ] ], [ [ [ 147.304836, -39.451472 ], [ 147.295941, -39.456243 ], [ 147.299636, -39.461677 ], [ 147.289884, -39.477292 ], [ 147.260390, -39.479499 ], [ 147.270343, -39.466821 ], [ 147.293386, -39.462158 ], [ 147.274750, -39.443508 ], [ 147.285433, -39.446484 ], [ 147.286866, -39.439026 ], [ 147.301714, -39.438134 ], [ 147.304836, -39.451472 ] ] ], [ [ [ 147.148378, -43.286161 ], [ 147.144375, -43.294334 ], [ 147.137975, -43.290256 ], [ 147.148378, -43.286161 ] ] ], [ [ [ 147.134308, -43.257362 ], [ 147.127599, -43.264154 ], [ 147.129748, -43.252992 ], [ 147.134308, -43.257362 ] ] ], [ [ [ 147.105801, -43.396061 ], [ 147.100439, -43.409456 ], [ 147.094049, -43.398601 ], [ 147.099381, -43.389214 ], [ 147.105801, -43.396061 ] ] ], [ [ [ 147.087857, -41.380311 ], [ 147.082433, -41.384656 ], [ 147.079222, -41.372835 ], [ 147.087857, -41.380311 ] ] ], [ [ [ 147.041416, -43.053340 ], [ 147.023477, -43.077420 ], [ 147.030713, -43.058525 ], [ 147.041416, -43.053340 ] ] ], [ [ [ 147.020219, -43.090946 ], [ 147.013611, -43.111723 ], [ 147.007830, -43.114991 ], [ 147.013419, -43.102483 ], [ 146.999908, -43.120720 ], [ 147.004912, -43.104127 ], [ 147.020219, -43.090946 ] ] ], [ [ [ 146.996233, -39.221031 ], [ 146.987585, -39.231245 ], [ 146.977272, -39.229041 ], [ 146.985648, -39.206708 ], [ 146.996233, -39.221031 ] ] ], [ [ [ 146.657957, -39.463161 ], [ 146.640237, -39.480157 ], [ 146.637765, -39.473738 ], [ 146.657957, -39.463161 ] ] ], [ [ [ 146.395190, -39.230963 ], [ 146.380633, -39.231644 ], [ 146.388608, -39.224415 ], [ 146.395190, -39.230963 ] ] ], [ [ [ 146.377578, -43.596385 ], [ 146.351368, -43.607305 ], [ 146.336781, -43.591870 ], [ 146.374840, -43.586771 ], [ 146.377578, -43.596385 ] ] ], [ [ [ 146.297123, -43.619680 ], [ 146.285371, -43.620976 ], [ 146.292232, -43.612960 ], [ 146.297123, -43.619680 ] ] ], [ [ [ 146.286411, -43.651435 ], [ 146.267079, -43.657607 ], [ 146.274786, -43.636469 ], [ 146.286411, -43.651435 ] ] ], [ [ [ 145.971353, -43.418402 ], [ 145.963439, -43.423217 ], [ 145.968562, -43.412262 ], [ 145.971353, -43.418402 ] ] ], [ [ [ 145.104473, -40.793663 ], [ 145.077657, -40.794962 ], [ 145.045964, -40.782596 ], [ 145.040070, -40.774177 ], [ 145.044247, -40.751168 ], [ 145.104473, -40.793663 ] ] ], [ [ [ 144.929092, -40.622398 ], [ 144.919959, -40.613082 ], [ 144.927522, -40.577381 ], [ 144.949955, -40.621210 ], [ 144.935869, -40.629310 ], [ 144.929548, -40.622863 ], [ 144.937380, -40.649773 ], [ 144.967983, -40.658739 ], [ 144.954757, -40.629474 ], [ 144.991571, -40.670004 ], [ 145.026648, -40.684931 ], [ 145.049312, -40.680348 ], [ 145.044316, -40.689174 ], [ 145.067880, -40.714365 ], [ 145.041145, -40.717437 ], [ 145.051107, -40.712278 ], [ 145.039127, -40.713134 ], [ 145.038789, -40.705607 ], [ 145.004435, -40.714161 ], [ 144.976938, -40.707686 ], [ 144.943067, -40.731348 ], [ 144.919415, -40.728478 ], [ 144.893737, -40.740480 ], [ 144.867154, -40.722024 ], [ 144.876441, -40.710768 ], [ 144.871830, -40.678599 ], [ 144.903128, -40.657129 ], [ 144.919365, -40.624943 ], [ 144.929092, -40.622398 ] ] ], [ [ [ 144.969885, -40.426237 ], [ 144.947913, -40.438604 ], [ 144.951601, -40.460038 ], [ 144.896639, -40.483856 ], [ 144.858052, -40.468834 ], [ 144.850925, -40.452460 ], [ 144.834773, -40.443060 ], [ 144.841026, -40.429911 ], [ 144.854220, -40.434530 ], [ 144.877013, -40.422894 ], [ 144.885700, -40.408489 ], [ 144.874494, -40.401325 ], [ 144.884410, -40.399455 ], [ 144.879020, -40.392780 ], [ 144.887152, -40.388676 ], [ 144.913897, -40.397452 ], [ 144.954617, -40.391235 ], [ 144.962033, -40.401478 ], [ 144.956215, -40.412446 ], [ 144.969885, -40.426237 ] ] ], [ [ [ 144.841326, -40.695521 ], [ 144.823774, -40.699205 ], [ 144.832674, -40.690735 ], [ 144.841326, -40.695521 ] ] ], [ [ [ 144.792726, -40.417558 ], [ 144.791023, -40.464458 ], [ 144.784988, -40.470210 ], [ 144.792562, -40.479053 ], [ 144.791029, -40.507352 ], [ 144.771284, -40.533477 ], [ 144.775962, -40.581231 ], [ 144.757535, -40.605984 ], [ 144.735489, -40.592882 ], [ 144.725805, -40.574600 ], [ 144.733166, -40.550062 ], [ 144.722219, -40.517046 ], [ 144.709542, -40.510031 ], [ 144.718277, -40.500491 ], [ 144.710652, -40.484483 ], [ 144.724777, -40.479136 ], [ 144.730751, -40.489194 ], [ 144.755862, -40.485733 ], [ 144.772548, -40.464634 ], [ 144.766331, -40.444897 ], [ 144.784387, -40.420541 ], [ 144.784648, -40.399482 ], [ 144.792726, -40.417558 ] ] ], [ [ [ 144.723282, -40.606018 ], [ 144.716306, -40.606493 ], [ 144.717605, -40.599452 ], [ 144.723282, -40.606018 ] ] ], [ [ [ 144.698287, -40.633742 ], [ 144.687308, -40.638708 ], [ 144.679100, -40.627154 ], [ 144.698287, -40.633742 ] ] ], [ [ [ 144.138222, -39.933819 ], [ 144.128013, -39.993243 ], [ 144.113551, -40.008047 ], [ 144.116243, -40.018145 ], [ 144.100807, -40.028812 ], [ 144.105457, -40.044375 ], [ 144.093888, -40.052257 ], [ 144.070387, -40.051440 ], [ 144.062736, -40.069223 ], [ 144.062986, -40.063035 ], [ 144.049329, -40.067693 ], [ 144.050871, -40.074095 ], [ 144.026951, -40.094863 ], [ 143.989663, -40.098240 ], [ 143.971088, -40.116734 ], [ 143.962635, -40.109148 ], [ 143.949699, -40.112923 ], [ 143.921046, -40.134081 ], [ 143.929769, -40.146124 ], [ 143.925725, -40.157964 ], [ 143.915953, -40.143472 ], [ 143.900830, -40.139383 ], [ 143.908402, -40.128058 ], [ 143.904426, -40.121394 ], [ 143.875275, -40.116764 ], [ 143.872038, -40.083458 ], [ 143.858082, -40.062372 ], [ 143.879926, -40.062694 ], [ 143.890037, -40.053929 ], [ 143.884037, -40.028189 ], [ 143.892987, -40.010933 ], [ 143.885039, -39.998922 ], [ 143.891671, -39.993511 ], [ 143.879028, -39.967228 ], [ 143.838594, -39.936200 ], [ 143.845164, -39.925474 ], [ 143.833303, -39.915546 ], [ 143.839495, -39.911192 ], [ 143.835297, -39.902223 ], [ 143.847086, -39.894641 ], [ 143.841937, -39.885024 ], [ 143.846829, -39.870427 ], [ 143.860358, -39.856619 ], [ 143.854139, -39.851258 ], [ 143.867172, -39.833486 ], [ 143.859078, -39.816160 ], [ 143.863026, -39.789616 ], [ 143.850197, -39.770257 ], [ 143.854673, -39.737523 ], [ 143.844240, -39.715568 ], [ 143.891328, -39.698318 ], [ 143.922707, -39.668873 ], [ 143.934618, -39.638209 ], [ 143.924209, -39.595287 ], [ 143.935747, -39.594632 ], [ 143.945750, -39.580467 ], [ 143.984390, -39.600984 ], [ 144.005380, -39.596637 ], [ 144.012590, -39.608841 ], [ 144.051478, -39.625462 ], [ 144.109657, -39.669979 ], [ 144.100526, -39.752424 ], [ 144.113522, -39.819308 ], [ 144.093287, -39.792317 ], [ 144.106877, -39.819945 ], [ 144.121486, -39.819127 ], [ 144.110947, -39.798983 ], [ 144.127809, -39.821289 ], [ 144.106584, -39.866197 ], [ 144.105013, -39.891295 ], [ 144.111387, -39.913816 ], [ 144.135646, -39.924383 ], [ 144.138222, -39.933819 ] ] ], [ [ [ 143.837861, -39.669329 ], [ 143.819218, -39.674996 ], [ 143.826748, -39.665015 ], [ 143.837861, -39.669329 ] ] ], [ [ [ 143.835897, -39.687897 ], [ 143.829885, -39.693141 ], [ 143.826046, -39.682948 ], [ 143.835897, -39.687897 ] ] ] + ] + } + }, + { + "type": "Feature", + "id": 6, + "properties": { + "STATE_CODE": "7", + "NAME_1": "Northern Territory", + "ISO":"AU-NT" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ [ [ 130.517887, -12.731048 ], [ 130.517526, -12.725616 ], [ 130.529386, -12.725046 ], [ 130.524326, -12.734086 ], [ 130.531006, -12.742166 ], [ 130.525246, -12.734316 ], [ 130.531106, -12.724936 ], [ 130.515446, -12.722686 ], [ 130.511416, -12.710256 ], [ 130.520625, -12.703496 ], [ 130.535765, -12.719026 ], [ 130.557274, -12.701995 ], [ 130.558615, -12.718586 ], [ 130.567234, -12.706375 ], [ 130.583254, -12.719245 ], [ 130.569915, -12.743776 ], [ 130.584645, -12.735286 ], [ 130.591145, -12.739196 ], [ 130.585105, -12.731896 ], [ 130.596024, -12.717995 ], [ 130.607654, -12.719905 ], [ 130.599834, -12.729065 ], [ 130.605024, -12.732715 ], [ 130.610304, -12.722275 ], [ 130.629534, -12.727795 ], [ 130.624970, -12.769403 ], [ 130.643554, -12.743695 ], [ 130.636324, -12.727105 ], [ 130.616973, -12.711755 ], [ 130.621453, -12.705205 ], [ 130.630093, -12.715245 ], [ 130.660603, -12.714655 ], [ 130.687143, -12.727954 ], [ 130.690663, -12.732695 ], [ 130.679753, -12.745255 ], [ 130.689143, -12.751495 ], [ 130.693933, -12.746675 ], [ 130.684583, -12.744455 ], [ 130.707332, -12.716514 ], [ 130.738762, -12.710544 ], [ 130.706062, -12.710984 ], [ 130.690192, -12.719814 ], [ 130.679132, -12.713504 ], [ 130.701951, -12.690484 ], [ 130.674062, -12.707854 ], [ 130.664722, -12.700524 ], [ 130.673922, -12.691474 ], [ 130.633402, -12.686324 ], [ 130.637722, -12.683674 ], [ 130.616462, -12.668714 ], [ 130.617392, -12.676394 ], [ 130.597243, -12.670764 ], [ 130.585863, -12.684445 ], [ 130.573402, -12.652244 ], [ 130.545662, -12.634304 ], [ 130.549902, -12.616104 ], [ 130.559572, -12.626494 ], [ 130.582821, -12.622974 ], [ 130.586502, -12.660454 ], [ 130.596242, -12.653994 ], [ 130.588832, -12.654384 ], [ 130.588232, -12.629414 ], [ 130.609031, -12.604423 ], [ 130.618861, -12.615643 ], [ 130.630331, -12.610623 ], [ 130.642891, -12.625183 ], [ 130.641181, -12.644164 ], [ 130.644121, -12.623803 ], [ 130.631480, -12.609033 ], [ 130.618481, -12.612893 ], [ 130.612020, -12.601483 ], [ 130.589231, -12.592123 ], [ 130.603940, -12.578393 ], [ 130.588990, -12.580483 ], [ 130.573591, -12.596763 ], [ 130.566791, -12.581523 ], [ 130.582840, -12.512803 ], [ 130.588700, -12.501273 ], [ 130.605760, -12.501452 ], [ 130.604100, -12.487932 ], [ 130.580960, -12.462642 ], [ 130.588430, -12.452802 ], [ 130.623239, -12.447762 ], [ 130.612210, -12.431772 ], [ 130.587250, -12.425232 ], [ 130.578160, -12.406593 ], [ 130.611600, -12.393123 ], [ 130.619300, -12.381373 ], [ 130.624130, -12.388932 ], [ 130.654259, -12.393992 ], [ 130.683829, -12.416111 ], [ 130.705669, -12.414051 ], [ 130.711659, -12.423421 ], [ 130.749838, -12.427111 ], [ 130.765148, -12.437371 ], [ 130.757389, -12.482231 ], [ 130.727069, -12.526232 ], [ 130.736749, -12.524632 ], [ 130.761649, -12.482451 ], [ 130.778888, -12.474751 ], [ 130.771439, -12.493851 ], [ 130.778479, -12.509551 ], [ 130.769419, -12.527071 ], [ 130.774399, -12.545592 ], [ 130.748909, -12.579972 ], [ 130.729289, -12.581592 ], [ 130.732030, -12.596932 ], [ 130.730049, -12.583052 ], [ 130.749029, -12.584042 ], [ 130.778559, -12.559142 ], [ 130.781689, -12.573712 ], [ 130.767359, -12.601692 ], [ 130.774710, -12.616002 ], [ 130.777129, -12.599592 ], [ 130.779920, -12.619472 ], [ 130.791850, -12.621902 ], [ 130.780380, -12.616882 ], [ 130.790129, -12.602632 ], [ 130.783669, -12.589422 ], [ 130.794459, -12.578442 ], [ 130.788199, -12.548282 ], [ 130.810159, -12.539891 ], [ 130.805109, -12.563512 ], [ 130.814199, -12.582022 ], [ 130.825330, -12.579900 ], [ 130.816059, -12.558182 ], [ 130.841469, -12.555322 ], [ 130.868019, -12.601482 ], [ 130.857349, -12.615172 ], [ 130.847219, -12.613492 ], [ 130.858969, -12.620582 ], [ 130.869299, -12.611642 ], [ 130.876589, -12.628802 ], [ 130.869760, -12.658733 ], [ 130.879809, -12.631282 ], [ 130.887100, -12.648222 ], [ 130.900000, -12.655312 ], [ 130.898737, -12.662486 ], [ 130.908180, -12.656432 ], [ 130.890420, -12.641772 ], [ 130.882289, -12.606202 ], [ 130.932929, -12.611102 ], [ 130.945289, -12.637862 ], [ 130.952293, -12.635237 ], [ 130.947089, -12.617702 ], [ 130.953669, -12.627632 ], [ 130.952497, -12.635161 ], [ 130.966849, -12.629782 ], [ 130.957249, -12.630902 ], [ 130.948099, -12.608442 ], [ 130.953319, -12.596862 ], [ 130.945449, -12.606522 ], [ 130.923079, -12.579912 ], [ 130.884649, -12.574792 ], [ 130.877819, -12.552431 ], [ 130.893359, -12.560531 ], [ 130.901419, -12.556261 ], [ 130.879529, -12.547911 ], [ 130.873858, -12.528031 ], [ 130.862118, -12.526251 ], [ 130.859208, -12.506591 ], [ 130.869788, -12.505781 ], [ 130.879588, -12.521131 ], [ 130.903608, -12.513291 ], [ 130.895598, -12.529801 ], [ 130.907068, -12.516451 ], [ 130.908039, -12.540741 ], [ 130.916648, -12.530891 ], [ 130.910408, -12.517461 ], [ 130.922618, -12.509251 ], [ 130.930538, -12.520241 ], [ 130.927358, -12.536631 ], [ 130.934839, -12.540631 ], [ 130.934248, -12.532211 ], [ 130.947029, -12.541681 ], [ 130.938969, -12.554081 ], [ 130.949449, -12.539641 ], [ 130.953849, -12.555131 ], [ 130.955148, -12.529401 ], [ 130.941928, -12.521801 ], [ 130.947278, -12.496491 ], [ 130.940858, -12.504291 ], [ 130.930578, -12.486691 ], [ 130.946728, -12.471050 ], [ 130.897348, -12.487661 ], [ 130.891918, -12.472761 ], [ 130.916948, -12.457680 ], [ 130.890748, -12.465190 ], [ 130.885998, -12.443050 ], [ 130.878308, -12.450520 ], [ 130.885918, -12.462030 ], [ 130.878678, -12.463630 ], [ 130.856348, -12.451010 ], [ 130.867018, -12.440600 ], [ 130.850049, -12.438844 ], [ 130.850938, -12.467663 ], [ 130.844252, -12.471788 ], [ 130.832610, -12.459755 ], [ 130.821110, -12.461886 ], [ 130.815427, -12.453013 ], [ 130.831387, -12.449953 ], [ 130.835559, -12.426717 ], [ 130.828218, -12.411630 ], [ 130.819608, -12.414580 ], [ 130.816378, -12.407130 ], [ 130.843158, -12.407760 ], [ 130.848725, -12.390553 ], [ 130.842149, -12.378908 ], [ 130.861147, -12.375780 ], [ 130.896007, -12.330060 ], [ 130.923387, -12.344810 ], [ 130.946027, -12.342050 ], [ 130.946057, -12.357190 ], [ 130.950097, -12.346040 ], [ 130.982797, -12.341870 ], [ 131.004777, -12.352210 ], [ 131.012507, -12.367000 ], [ 131.013245, -12.366287 ], [ 131.013197, -12.366320 ], [ 131.008917, -12.356380 ], [ 131.034867, -12.360879 ], [ 131.055047, -12.347789 ], [ 131.029817, -12.346399 ], [ 131.029767, -12.325609 ], [ 131.060957, -12.332129 ], [ 131.028017, -12.317819 ], [ 131.028447, -12.305499 ], [ 131.017697, -12.326879 ], [ 131.012977, -12.323279 ], [ 131.030457, -12.231509 ], [ 131.021577, -12.216269 ], [ 131.004677, -12.209079 ], [ 130.994627, -12.186059 ], [ 130.995967, -12.168649 ], [ 131.030606, -12.146439 ], [ 131.045866, -12.142789 ], [ 131.051766, -12.158259 ], [ 131.065336, -12.166809 ], [ 131.087576, -12.153769 ], [ 131.113196, -12.155059 ], [ 131.114346, -12.175049 ], [ 131.125436, -12.182589 ], [ 131.144276, -12.182429 ], [ 131.157555, -12.168839 ], [ 131.169055, -12.173219 ], [ 131.175956, -12.192099 ], [ 131.222045, -12.227179 ], [ 131.207830, -12.239412 ], [ 131.209786, -12.239639 ], [ 131.205976, -12.270389 ], [ 131.232045, -12.266789 ], [ 131.221966, -12.278009 ], [ 131.225006, -12.285039 ], [ 131.222886, -12.277889 ], [ 131.229075, -12.273239 ], [ 131.228525, -12.281379 ], [ 131.233995, -12.266339 ], [ 131.206986, -12.263139 ], [ 131.212316, -12.240189 ], [ 131.250875, -12.220029 ], [ 131.231075, -12.214389 ], [ 131.228875, -12.207279 ], [ 131.253885, -12.162809 ], [ 131.250816, -12.135939 ], [ 131.273556, -12.100129 ], [ 131.266356, -12.076929 ], [ 131.297126, -12.042609 ], [ 131.303356, -12.052989 ], [ 131.299506, -12.070169 ], [ 131.320925, -12.089869 ], [ 131.313885, -12.112699 ], [ 131.321835, -12.122619 ], [ 131.312905, -12.132449 ], [ 131.322835, -12.147239 ], [ 131.314055, -12.165679 ], [ 131.322765, -12.193429 ], [ 131.380875, -12.256490 ], [ 131.426776, -12.275411 ], [ 131.472295, -12.283712 ], [ 131.548072, -12.278212 ], [ 131.682820, -12.284741 ], [ 131.775300, -12.268231 ], [ 131.879259, -12.214551 ], [ 131.904229, -12.224351 ], [ 131.917488, -12.255891 ], [ 131.939408, -12.272931 ], [ 132.069714, -12.303540 ], [ 132.073894, -12.288980 ], [ 132.147633, -12.245850 ], [ 132.170803, -12.213280 ], [ 132.224352, -12.194571 ], [ 132.238192, -12.169761 ], [ 132.261723, -12.173431 ], [ 132.264283, -12.203021 ], [ 132.278463, -12.224211 ], [ 132.353164, -12.198823 ], [ 132.389393, -12.236413 ], [ 132.417113, -12.222413 ], [ 132.417583, -12.195333 ], [ 132.442013, -12.146473 ], [ 132.513032, -12.124144 ], [ 132.554812, -12.098304 ], [ 132.556212, -12.085774 ], [ 132.578382, -12.105474 ], [ 132.629281, -12.085415 ], [ 132.618962, -12.016715 ], [ 132.638692, -11.942775 ], [ 132.640803, -11.901335 ], [ 132.655323, -11.889815 ], [ 132.645613, -11.875145 ], [ 132.647873, -11.858235 ], [ 132.636523, -11.822025 ], [ 132.618483, -11.805005 ], [ 132.594944, -11.805325 ], [ 132.580704, -11.786005 ], [ 132.596714, -11.767885 ], [ 132.620604, -11.758145 ], [ 132.648944, -11.722446 ], [ 132.654704, -11.685646 ], [ 132.643004, -11.681586 ], [ 132.630954, -11.720466 ], [ 132.594684, -11.730045 ], [ 132.540155, -11.718195 ], [ 132.518965, -11.687615 ], [ 132.499845, -11.682115 ], [ 132.507376, -11.635725 ], [ 132.557685, -11.636375 ], [ 132.574235, -11.654965 ], [ 132.564595, -11.667415 ], [ 132.576175, -11.655195 ], [ 132.616644, -11.654786 ], [ 132.607075, -11.639956 ], [ 132.594465, -11.639686 ], [ 132.547825, -11.608665 ], [ 132.536256, -11.580276 ], [ 132.549116, -11.574226 ], [ 132.553086, -11.554926 ], [ 132.524826, -11.544996 ], [ 132.531916, -11.520516 ], [ 132.515756, -11.520786 ], [ 132.499766, -11.509546 ], [ 132.494157, -11.482506 ], [ 132.480517, -11.484055 ], [ 132.457147, -11.457755 ], [ 132.399207, -11.454915 ], [ 132.353457, -11.441274 ], [ 132.301928, -11.465094 ], [ 132.238798, -11.455203 ], [ 132.210069, -11.469233 ], [ 132.193809, -11.490203 ], [ 132.167279, -11.491592 ], [ 132.138099, -11.521082 ], [ 132.119809, -11.515232 ], [ 132.119751, -11.514471 ], [ 132.114889, -11.516612 ], [ 132.122609, -11.526422 ], [ 132.113829, -11.539922 ], [ 132.104509, -11.528132 ], [ 132.067880, -11.525002 ], [ 132.055410, -11.496502 ], [ 132.033880, -11.482132 ], [ 132.030240, -11.458862 ], [ 132.050950, -11.460212 ], [ 132.059360, -11.432142 ], [ 132.041220, -11.420422 ], [ 131.996600, -11.430041 ], [ 131.985980, -11.422791 ], [ 131.990140, -11.401471 ], [ 131.962430, -11.411111 ], [ 131.942430, -11.399891 ], [ 131.939810, -11.392321 ], [ 131.959870, -11.380631 ], [ 131.980570, -11.383502 ], [ 131.989010, -11.373342 ], [ 131.968020, -11.369472 ], [ 131.964830, -11.360772 ], [ 131.973640, -11.361922 ], [ 131.975610, -11.351772 ], [ 131.965910, -11.342492 ], [ 131.951260, -11.341212 ], [ 131.951700, -11.351492 ], [ 131.937590, -11.350812 ], [ 131.928230, -11.357862 ], [ 131.930380, -11.365662 ], [ 131.916901, -11.357502 ], [ 131.943540, -11.319862 ], [ 131.933250, -11.316342 ], [ 131.930600, -11.324462 ], [ 131.914691, -11.324762 ], [ 131.859751, -11.292782 ], [ 131.842081, -11.312602 ], [ 131.821121, -11.318292 ], [ 131.773282, -11.325042 ], [ 131.762662, -11.315752 ], [ 131.759282, -11.299712 ], [ 131.772892, -11.302232 ], [ 131.776291, -11.311282 ], [ 131.779901, -11.291302 ], [ 131.800508, -11.295386 ], [ 131.806471, -11.283142 ], [ 131.794391, -11.268323 ], [ 131.815781, -11.268153 ], [ 131.840211, -11.286402 ], [ 131.855191, -11.276743 ], [ 131.848311, -11.253013 ], [ 131.836891, -11.247673 ], [ 131.814801, -11.211703 ], [ 131.821801, -11.206423 ], [ 131.840041, -11.226563 ], [ 131.860441, -11.209123 ], [ 131.856411, -11.219613 ], [ 131.867961, -11.219313 ], [ 131.879361, -11.234923 ], [ 131.886181, -11.207283 ], [ 131.875591, -11.193144 ], [ 131.882481, -11.181534 ], [ 131.912031, -11.206893 ], [ 131.904111, -11.216363 ], [ 131.927510, -11.235043 ], [ 131.929960, -11.259883 ], [ 131.945540, -11.251573 ], [ 131.944760, -11.244463 ], [ 131.961210, -11.253053 ], [ 131.961260, -11.228923 ], [ 131.974170, -11.235163 ], [ 131.986450, -11.218593 ], [ 131.962420, -11.176664 ], [ 131.969980, -11.170814 ], [ 131.982430, -11.180094 ], [ 131.993530, -11.175744 ], [ 131.986450, -11.170854 ], [ 131.985930, -11.150984 ], [ 131.970311, -11.134234 ], [ 131.992971, -11.124244 ], [ 132.010690, -11.129874 ], [ 132.029060, -11.178744 ], [ 132.036990, -11.192783 ], [ 132.047180, -11.191263 ], [ 132.046110, -11.199493 ], [ 132.056730, -11.201923 ], [ 132.054730, -11.191073 ], [ 132.068310, -11.175794 ], [ 132.075500, -11.179554 ], [ 132.066400, -11.191703 ], [ 132.082620, -11.194723 ], [ 132.075450, -11.209363 ], [ 132.084489, -11.231533 ], [ 132.098559, -11.231943 ], [ 132.113539, -11.211133 ], [ 132.113879, -11.234173 ], [ 132.095759, -11.262083 ], [ 132.100499, -11.274753 ], [ 132.114149, -11.268493 ], [ 132.116409, -11.273703 ], [ 132.098289, -11.302853 ], [ 132.107269, -11.315323 ], [ 132.099979, -11.329053 ], [ 132.108799, -11.328533 ], [ 132.122649, -11.349273 ], [ 132.125019, -11.313043 ], [ 132.136779, -11.296163 ], [ 132.140919, -11.315043 ], [ 132.155869, -11.322683 ], [ 132.145389, -11.356383 ], [ 132.153609, -11.360153 ], [ 132.154109, -11.374493 ], [ 132.144679, -11.382353 ], [ 132.157959, -11.382533 ], [ 132.152029, -11.391973 ], [ 132.169279, -11.406983 ], [ 132.164259, -11.412643 ], [ 132.170359, -11.420423 ], [ 132.180799, -11.416293 ], [ 132.175969, -11.396853 ], [ 132.199109, -11.417433 ], [ 132.208129, -11.413403 ], [ 132.206189, -11.398133 ], [ 132.197839, -11.397523 ], [ 132.199969, -11.382513 ], [ 132.188419, -11.380093 ], [ 132.182889, -11.365383 ], [ 132.190289, -11.350963 ], [ 132.222128, -11.369643 ], [ 132.231338, -11.363003 ], [ 132.236468, -11.339893 ], [ 132.226728, -11.321453 ], [ 132.197519, -11.301203 ], [ 132.172569, -11.323443 ], [ 132.197079, -11.280013 ], [ 132.190229, -11.248553 ], [ 132.179889, -11.240723 ], [ 132.188669, -11.241543 ], [ 132.199039, -11.225784 ], [ 132.199399, -11.237304 ], [ 132.202469, -11.226814 ], [ 132.194549, -11.207694 ], [ 132.160809, -11.183704 ], [ 132.161959, -11.160794 ], [ 132.141250, -11.153674 ], [ 132.143450, -11.133824 ], [ 132.135610, -11.122384 ], [ 132.186810, -11.130314 ], [ 132.196019, -11.164904 ], [ 132.211489, -11.183164 ], [ 132.227519, -11.180304 ], [ 132.230869, -11.196804 ], [ 132.243459, -11.197424 ], [ 132.239809, -11.218524 ], [ 132.249859, -11.221624 ], [ 132.265338, -11.263814 ], [ 132.283548, -11.276724 ], [ 132.281568, -11.233084 ], [ 132.264658, -11.213554 ], [ 132.273989, -11.199374 ], [ 132.265069, -11.175394 ], [ 132.287879, -11.164874 ], [ 132.305688, -11.173205 ], [ 132.322198, -11.165595 ], [ 132.319498, -11.155875 ], [ 132.338898, -11.140365 ], [ 132.333289, -11.115725 ], [ 132.343678, -11.119945 ], [ 132.341328, -11.133945 ], [ 132.356938, -11.148915 ], [ 132.364908, -11.193765 ], [ 132.382308, -11.207975 ], [ 132.373688, -11.295455 ], [ 132.384368, -11.287375 ], [ 132.385698, -11.296865 ], [ 132.397367, -11.299155 ], [ 132.406098, -11.264535 ], [ 132.414087, -11.269995 ], [ 132.422247, -11.262235 ], [ 132.413648, -11.237915 ], [ 132.419998, -11.225635 ], [ 132.433927, -11.211325 ], [ 132.451037, -11.218075 ], [ 132.476747, -11.258415 ], [ 132.506787, -11.272276 ], [ 132.505137, -11.284126 ], [ 132.497247, -11.282176 ], [ 132.486817, -11.299486 ], [ 132.510137, -11.292736 ], [ 132.505267, -11.310106 ], [ 132.517147, -11.317046 ], [ 132.503517, -11.318456 ], [ 132.501877, -11.329936 ], [ 132.512507, -11.330916 ], [ 132.519897, -11.345406 ], [ 132.514157, -11.349896 ], [ 132.528497, -11.340466 ], [ 132.547046, -11.342006 ], [ 132.559196, -11.367916 ], [ 132.585446, -11.394547 ], [ 132.622016, -11.410267 ], [ 132.635436, -11.436637 ], [ 132.637815, -11.477527 ], [ 132.669005, -11.515587 ], [ 132.694625, -11.514207 ], [ 132.714525, -11.523307 ], [ 132.732875, -11.519077 ], [ 132.747845, -11.495287 ], [ 132.778174, -11.470077 ], [ 132.783854, -11.446377 ], [ 132.811374, -11.438097 ], [ 132.825514, -11.420737 ], [ 132.823154, -11.404687 ], [ 132.842194, -11.395137 ], [ 132.850333, -11.392566 ], [ 132.864003, -11.419036 ], [ 132.873063, -11.416906 ], [ 132.885853, -11.429826 ], [ 132.896403, -11.425896 ], [ 132.909183, -11.384706 ], [ 132.880463, -11.347456 ], [ 132.865023, -11.340066 ], [ 132.872033, -11.329806 ], [ 132.897893, -11.339925 ], [ 132.917953, -11.331725 ], [ 132.933332, -11.363625 ], [ 132.945232, -11.367605 ], [ 132.968132, -11.416805 ], [ 133.007852, -11.432825 ], [ 133.045962, -11.502846 ], [ 133.076861, -11.520985 ], [ 133.069591, -11.548306 ], [ 133.094141, -11.591176 ], [ 133.105631, -11.633116 ], [ 133.149872, -11.702237 ], [ 133.190651, -11.728637 ], [ 133.281590, -11.740646 ], [ 133.252581, -11.730766 ], [ 133.283920, -11.717706 ], [ 133.295520, -11.702806 ], [ 133.343359, -11.693715 ], [ 133.354458, -11.717905 ], [ 133.340569, -11.727155 ], [ 133.320389, -11.719556 ], [ 133.308089, -11.738986 ], [ 133.309839, -11.758176 ], [ 133.320889, -11.769845 ], [ 133.353138, -11.764685 ], [ 133.356908, -11.775545 ], [ 133.369628, -11.776115 ], [ 133.376418, -11.767425 ], [ 133.369208, -11.757705 ], [ 133.385618, -11.752065 ], [ 133.402837, -11.732084 ], [ 133.415567, -11.739444 ], [ 133.410057, -11.748135 ], [ 133.414627, -11.757525 ], [ 133.398797, -11.757505 ], [ 133.398677, -11.767785 ], [ 133.410367, -11.779555 ], [ 133.448107, -11.778345 ], [ 133.448097, -11.790435 ], [ 133.459107, -11.801975 ], [ 133.480117, -11.781304 ], [ 133.501157, -11.781224 ], [ 133.533786, -11.760334 ], [ 133.539506, -11.770284 ], [ 133.528917, -11.791094 ], [ 133.530127, -11.812984 ], [ 133.549167, -11.826994 ], [ 133.565596, -11.806804 ], [ 133.602136, -11.809164 ], [ 133.606986, -11.816344 ], [ 133.595156, -11.833724 ], [ 133.611086, -11.842784 ], [ 133.663126, -11.818904 ], [ 133.655866, -11.809054 ], [ 133.678026, -11.788633 ], [ 133.692006, -11.794073 ], [ 133.664616, -11.779583 ], [ 133.670126, -11.773943 ], [ 133.690646, -11.782773 ], [ 133.738465, -11.782583 ], [ 133.773585, -11.761143 ], [ 133.785865, -11.732123 ], [ 133.793785, -11.727492 ], [ 133.808654, -11.733792 ], [ 133.793905, -11.724672 ], [ 133.812364, -11.730212 ], [ 133.837014, -11.723222 ], [ 133.848154, -11.744432 ], [ 133.867534, -11.753922 ], [ 133.899394, -11.754191 ], [ 133.915564, -11.742441 ], [ 133.927604, -11.764141 ], [ 133.940344, -11.770351 ], [ 133.916254, -11.772381 ], [ 133.901684, -11.805711 ], [ 133.889865, -11.812372 ], [ 133.867615, -11.805132 ], [ 133.846505, -11.813482 ], [ 133.823085, -11.838102 ], [ 133.829615, -11.864992 ], [ 133.831915, -11.858782 ], [ 133.842115, -11.879912 ], [ 133.858295, -11.877992 ], [ 133.877905, -11.902512 ], [ 133.867695, -11.901382 ], [ 133.876015, -11.910522 ], [ 133.895355, -11.913812 ], [ 133.912395, -11.906891 ], [ 133.907715, -11.927621 ], [ 133.919905, -11.916761 ], [ 133.933185, -11.920261 ], [ 133.984055, -11.894961 ], [ 134.004474, -11.863780 ], [ 134.030774, -11.854970 ], [ 134.063564, -11.869520 ], [ 134.063914, -11.892230 ], [ 134.078374, -11.898200 ], [ 134.068515, -11.915950 ], [ 134.071625, -11.933460 ], [ 134.065995, -11.934320 ], [ 134.074835, -11.941820 ], [ 134.080915, -11.929620 ], [ 134.101685, -11.924519 ], [ 134.104514, -11.912889 ], [ 134.127154, -11.897279 ], [ 134.134164, -11.920599 ], [ 134.175395, -11.956789 ], [ 134.168545, -11.972499 ], [ 134.149905, -11.963459 ], [ 134.151995, -11.987989 ], [ 134.172945, -12.002259 ], [ 134.181735, -11.994179 ], [ 134.181065, -12.014979 ], [ 134.194245, -12.028678 ], [ 134.162236, -12.100449 ], [ 134.168416, -12.114769 ], [ 134.188036, -12.105348 ], [ 134.193755, -12.074468 ], [ 134.228395, -12.036468 ], [ 134.253515, -12.034148 ], [ 134.245784, -11.984748 ], [ 134.286654, -11.983797 ], [ 134.306484, -12.008447 ], [ 134.348035, -12.039126 ], [ 134.416195, -12.064506 ], [ 134.470304, -12.067475 ], [ 134.462605, -12.069875 ], [ 134.479574, -12.075875 ], [ 134.492834, -12.071605 ], [ 134.490904, -12.077235 ], [ 134.605064, -12.048994 ], [ 134.655863, -12.015103 ], [ 134.687823, -11.962833 ], [ 134.703333, -11.967083 ], [ 134.739702, -11.959872 ], [ 134.747592, -11.949342 ], [ 134.770812, -11.959782 ], [ 134.760703, -11.995172 ], [ 134.779523, -12.003402 ], [ 134.798173, -12.047782 ], [ 134.830173, -12.056091 ], [ 134.837003, -12.074901 ], [ 134.831653, -12.055511 ], [ 134.844233, -12.061611 ], [ 134.841944, -12.112171 ], [ 134.856814, -12.131031 ], [ 134.885214, -12.134271 ], [ 134.904804, -12.153201 ], [ 134.935374, -12.142510 ], [ 134.971594, -12.158390 ], [ 135.004564, -12.212960 ], [ 135.056034, -12.263609 ], [ 135.124104, -12.237389 ], [ 135.137764, -12.242839 ], [ 135.144674, -12.236739 ], [ 135.160154, -12.249769 ], [ 135.164264, -12.264819 ], [ 135.213054, -12.295298 ], [ 135.218924, -12.288638 ], [ 135.209874, -12.274268 ], [ 135.183244, -12.253538 ], [ 135.181434, -12.239058 ], [ 135.159844, -12.231789 ], [ 135.161584, -12.225009 ], [ 135.193284, -12.225848 ], [ 135.207484, -12.234528 ], [ 135.267043, -12.224928 ], [ 135.283324, -12.252878 ], [ 135.313074, -12.260258 ], [ 135.342493, -12.246377 ], [ 135.352043, -12.232247 ], [ 135.312173, -12.241598 ], [ 135.280263, -12.220988 ], [ 135.276043, -12.200398 ], [ 135.256723, -12.207958 ], [ 135.223323, -12.188688 ], [ 135.269053, -12.179708 ], [ 135.284473, -12.164008 ], [ 135.302962, -12.162898 ], [ 135.319172, -12.145388 ], [ 135.304252, -12.135758 ], [ 135.305992, -12.124338 ], [ 135.352982, -12.105957 ], [ 135.366211, -12.084717 ], [ 135.386521, -12.092757 ], [ 135.396871, -12.082027 ], [ 135.422581, -12.083057 ], [ 135.405231, -12.101817 ], [ 135.415332, -12.113917 ], [ 135.454371, -12.114057 ], [ 135.507861, -12.085906 ], [ 135.519041, -12.059806 ], [ 135.538441, -12.064456 ], [ 135.544871, -12.087636 ], [ 135.570011, -12.100746 ], [ 135.603771, -12.078476 ], [ 135.615631, -12.078336 ], [ 135.605381, -12.076896 ], [ 135.643060, -12.054625 ], [ 135.649710, -12.059055 ], [ 135.643640, -12.053385 ], [ 135.653550, -12.039505 ], [ 135.684250, -12.034595 ], [ 135.727399, -12.009145 ], [ 135.754489, -12.007775 ], [ 135.808389, -11.981314 ], [ 135.886568, -11.965704 ], [ 135.909888, -11.952393 ], [ 135.911248, -11.959963 ], [ 135.877479, -11.986144 ], [ 135.869689, -11.975744 ], [ 135.831679, -11.984284 ], [ 135.826499, -11.995354 ], [ 135.832759, -12.000714 ], [ 135.772760, -12.043944 ], [ 135.758540, -12.079455 ], [ 135.731230, -12.090315 ], [ 135.700451, -12.126055 ], [ 135.659231, -12.149925 ], [ 135.650052, -12.168475 ], [ 135.652002, -12.201705 ], [ 135.676822, -12.241725 ], [ 135.710262, -12.262515 ], [ 135.720723, -12.281165 ], [ 135.710377, -12.312562 ], [ 135.730263, -12.293485 ], [ 135.746222, -12.262495 ], [ 135.762072, -12.253784 ], [ 135.776322, -12.259084 ], [ 135.778252, -12.224944 ], [ 135.798352, -12.212044 ], [ 135.803621, -12.198924 ], [ 135.815911, -12.201174 ], [ 135.825201, -12.184434 ], [ 135.828541, -12.191324 ], [ 135.838681, -12.182074 ], [ 135.850471, -12.184074 ], [ 135.855281, -12.169144 ], [ 135.864361, -12.174224 ], [ 135.865840, -12.158624 ], [ 135.881220, -12.150694 ], [ 135.886280, -12.150684 ], [ 135.881591, -12.177374 ], [ 135.894921, -12.184934 ], [ 135.912230, -12.149754 ], [ 135.921870, -12.149293 ], [ 135.928430, -12.161943 ], [ 135.935650, -12.143393 ], [ 135.948170, -12.150273 ], [ 135.948619, -12.138513 ], [ 135.950010, -12.151293 ], [ 135.959080, -12.151953 ], [ 135.959979, -12.137033 ], [ 135.972329, -12.137413 ], [ 136.002099, -12.116853 ], [ 135.996339, -12.105443 ], [ 136.004829, -12.100453 ], [ 135.996789, -12.093113 ], [ 136.003659, -12.083953 ], [ 136.031549, -12.076222 ], [ 136.034629, -12.066262 ], [ 136.045759, -12.063082 ], [ 136.011979, -12.123393 ], [ 135.983080, -12.151923 ], [ 135.973480, -12.185283 ], [ 135.957860, -12.182033 ], [ 135.955350, -12.196843 ], [ 135.942260, -12.199343 ], [ 135.928041, -12.222093 ], [ 135.933111, -12.237233 ], [ 135.956221, -12.249633 ], [ 135.962222, -12.269643 ], [ 135.950052, -12.279043 ], [ 136.001161, -12.268113 ], [ 136.010551, -12.242323 ], [ 136.019273, -12.245398 ], [ 136.013521, -12.233273 ], [ 136.028121, -12.240032 ], [ 136.049241, -12.231752 ], [ 136.061201, -12.240882 ], [ 136.054131, -12.269042 ], [ 136.033911, -12.271002 ], [ 136.029922, -12.294752 ], [ 136.009012, -12.290823 ], [ 136.007422, -12.303833 ], [ 136.015922, -12.304382 ], [ 136.023642, -12.319292 ], [ 136.008152, -12.331183 ], [ 135.995323, -12.359803 ], [ 135.975683, -12.369223 ], [ 135.970893, -12.386763 ], [ 135.975603, -12.395113 ], [ 135.996073, -12.400053 ], [ 136.015493, -12.397082 ], [ 135.993254, -12.440983 ], [ 136.003624, -12.453512 ], [ 135.988914, -12.462353 ], [ 136.015354, -12.457342 ], [ 136.014474, -12.484922 ], [ 136.021374, -12.486152 ], [ 136.033654, -12.473472 ], [ 136.051594, -12.479342 ], [ 136.046274, -12.457062 ], [ 136.063703, -12.430012 ], [ 136.075783, -12.434962 ], [ 136.073623, -12.448082 ], [ 136.085823, -12.457442 ], [ 136.104903, -12.453112 ], [ 136.107983, -12.439082 ], [ 136.121113, -12.452402 ], [ 136.151423, -12.435491 ], [ 136.159603, -12.444401 ], [ 136.158394, -12.470521 ], [ 136.158954, -12.463281 ], [ 136.169074, -12.461571 ], [ 136.231734, -12.465720 ], [ 136.249394, -12.445440 ], [ 136.259704, -12.456440 ], [ 136.252834, -12.443400 ], [ 136.263294, -12.441450 ], [ 136.314173, -12.381859 ], [ 136.303813, -12.376350 ], [ 136.304013, -12.367530 ], [ 136.333092, -12.326649 ], [ 136.325462, -12.306889 ], [ 136.341992, -12.301299 ], [ 136.353871, -12.277189 ], [ 136.368461, -12.278509 ], [ 136.342921, -12.265239 ], [ 136.362771, -12.257499 ], [ 136.359140, -12.230379 ], [ 136.353110, -12.211409 ], [ 136.342070, -12.206009 ], [ 136.345820, -12.200169 ], [ 136.334370, -12.202979 ], [ 136.337000, -12.195659 ], [ 136.315440, -12.210720 ], [ 136.288210, -12.205360 ], [ 136.228270, -12.213191 ], [ 136.218910, -12.187331 ], [ 136.232110, -12.182661 ], [ 136.208230, -12.184751 ], [ 136.190560, -12.195531 ], [ 136.172180, -12.192061 ], [ 136.168940, -12.178161 ], [ 136.176039, -12.168771 ], [ 136.167409, -12.163021 ], [ 136.176819, -12.158031 ], [ 136.195199, -12.163071 ], [ 136.217229, -12.152401 ], [ 136.212589, -12.130821 ], [ 136.230389, -12.131681 ], [ 136.231739, -12.118451 ], [ 136.246869, -12.110510 ], [ 136.267088, -12.065010 ], [ 136.326148, -12.045539 ], [ 136.331808, -12.059089 ], [ 136.339388, -12.059179 ], [ 136.348758, -12.043889 ], [ 136.344027, -12.032829 ], [ 136.355147, -12.030989 ], [ 136.357417, -12.021149 ], [ 136.369947, -12.027669 ], [ 136.367497, -12.011399 ], [ 136.378757, -12.019619 ], [ 136.389697, -12.011339 ], [ 136.382387, -11.997449 ], [ 136.414836, -11.958678 ], [ 136.426086, -11.958438 ], [ 136.430797, -11.971088 ], [ 136.445696, -11.954128 ], [ 136.443966, -11.941478 ], [ 136.492406, -11.952617 ], [ 136.513896, -11.936017 ], [ 136.523296, -11.939207 ], [ 136.531175, -11.914597 ], [ 136.548246, -11.923347 ], [ 136.561355, -11.917507 ], [ 136.573785, -11.902057 ], [ 136.557645, -11.886307 ], [ 136.562955, -11.876607 ], [ 136.568755, -11.894017 ], [ 136.581815, -11.902866 ], [ 136.580405, -11.915526 ], [ 136.534186, -11.947257 ], [ 136.472096, -11.960318 ], [ 136.472827, -11.996588 ], [ 136.456057, -11.978868 ], [ 136.448947, -11.987458 ], [ 136.451973, -11.999452 ], [ 136.457087, -11.999948 ], [ 136.455837, -12.005718 ], [ 136.469817, -11.999688 ], [ 136.477457, -12.018198 ], [ 136.488837, -12.024038 ], [ 136.485942, -12.034463 ], [ 136.490457, -12.030818 ], [ 136.488997, -12.040088 ], [ 136.492057, -12.027307 ], [ 136.498257, -12.028987 ], [ 136.496017, -12.009547 ], [ 136.505977, -12.003407 ], [ 136.503047, -11.997897 ], [ 136.512256, -11.987997 ], [ 136.531076, -11.991437 ], [ 136.564986, -12.081298 ], [ 136.580688, -12.091146 ], [ 136.587238, -12.084486 ], [ 136.590308, -12.095106 ], [ 136.581198, -12.107786 ], [ 136.587008, -12.125586 ], [ 136.577748, -12.146067 ], [ 136.599310, -12.202296 ], [ 136.646440, -12.235496 ], [ 136.647501, -12.269716 ], [ 136.674801, -12.288175 ], [ 136.669421, -12.277665 ], [ 136.691251, -12.276015 ], [ 136.705701, -12.288465 ], [ 136.720910, -12.266925 ], [ 136.726290, -12.276085 ], [ 136.742270, -12.271824 ], [ 136.766120, -12.235054 ], [ 136.751200, -12.232994 ], [ 136.752159, -12.214144 ], [ 136.723180, -12.229785 ], [ 136.729079, -12.211385 ], [ 136.698689, -12.190325 ], [ 136.677080, -12.205625 ], [ 136.681359, -12.186335 ], [ 136.714319, -12.186965 ], [ 136.725469, -12.182475 ], [ 136.727099, -12.172425 ], [ 136.782358, -12.159094 ], [ 136.790729, -12.185103 ], [ 136.818199, -12.211553 ], [ 136.846679, -12.210243 ], [ 136.873198, -12.219653 ], [ 136.884471, -12.243666 ], [ 136.905089, -12.245954 ], [ 136.902389, -12.280773 ], [ 136.911689, -12.283273 ], [ 136.914919, -12.275713 ], [ 136.928109, -12.282722 ], [ 136.939239, -12.324072 ], [ 136.933899, -12.333872 ], [ 136.921119, -12.344243 ], [ 136.944319, -12.357942 ], [ 136.964208, -12.350282 ], [ 136.965258, -12.340802 ], [ 136.978918, -12.345442 ], [ 136.961778, -12.363822 ], [ 136.962688, -12.374552 ], [ 136.945459, -12.369792 ], [ 136.899690, -12.392433 ], [ 136.889890, -12.413653 ], [ 136.863311, -12.431343 ], [ 136.805132, -12.506344 ], [ 136.779003, -12.525274 ], [ 136.772733, -12.555524 ], [ 136.760713, -12.525694 ], [ 136.775953, -12.496134 ], [ 136.795842, -12.492214 ], [ 136.794432, -12.449754 ], [ 136.775932, -12.447324 ], [ 136.759103, -12.467424 ], [ 136.735403, -12.478564 ], [ 136.720943, -12.458235 ], [ 136.719243, -12.468605 ], [ 136.729533, -12.478324 ], [ 136.721763, -12.493955 ], [ 136.742223, -12.517864 ], [ 136.726903, -12.529024 ], [ 136.733443, -12.536144 ], [ 136.748393, -12.533914 ], [ 136.730974, -12.562904 ], [ 136.728924, -12.553864 ], [ 136.720064, -12.553845 ], [ 136.714294, -12.566265 ], [ 136.693814, -12.567355 ], [ 136.691584, -12.587555 ], [ 136.675844, -12.581205 ], [ 136.669265, -12.590565 ], [ 136.680395, -12.603575 ], [ 136.676855, -12.593625 ], [ 136.681675, -12.598605 ], [ 136.682954, -12.590815 ], [ 136.696074, -12.586665 ], [ 136.697144, -12.569165 ], [ 136.715774, -12.571905 ], [ 136.723724, -12.562775 ], [ 136.734864, -12.570924 ], [ 136.747443, -12.551644 ], [ 136.761883, -12.577404 ], [ 136.735424, -12.579174 ], [ 136.690575, -12.632275 ], [ 136.678645, -12.669065 ], [ 136.681015, -12.687585 ], [ 136.699046, -12.704105 ], [ 136.693856, -12.711095 ], [ 136.675346, -12.704395 ], [ 136.652776, -12.711355 ], [ 136.617426, -12.689846 ], [ 136.631276, -12.700245 ], [ 136.611336, -12.714886 ], [ 136.601037, -12.740266 ], [ 136.619757, -12.756676 ], [ 136.624777, -12.773965 ], [ 136.608447, -12.814925 ], [ 136.621747, -12.839455 ], [ 136.587287, -12.821586 ], [ 136.580617, -12.804026 ], [ 136.583787, -12.778956 ], [ 136.605517, -12.790076 ], [ 136.581977, -12.767096 ], [ 136.567477, -12.763796 ], [ 136.549817, -12.740376 ], [ 136.532077, -12.745416 ], [ 136.525477, -12.758276 ], [ 136.531238, -12.801876 ], [ 136.542848, -12.806756 ], [ 136.517748, -12.807146 ], [ 136.483378, -12.768027 ], [ 136.467878, -12.780167 ], [ 136.463708, -12.772047 ], [ 136.468038, -12.793507 ], [ 136.487978, -12.801577 ], [ 136.478618, -12.841577 ], [ 136.505878, -12.851836 ], [ 136.518258, -12.875466 ], [ 136.538848, -12.881616 ], [ 136.552458, -12.874196 ], [ 136.542838, -12.896306 ], [ 136.546248, -12.916306 ], [ 136.555218, -12.920126 ], [ 136.559148, -12.914186 ], [ 136.598158, -12.930075 ], [ 136.625398, -12.952945 ], [ 136.638077, -12.950715 ], [ 136.644898, -12.990475 ], [ 136.667967, -13.004314 ], [ 136.654497, -13.015825 ], [ 136.629238, -13.017395 ], [ 136.635168, -13.001605 ], [ 136.627498, -12.994725 ], [ 136.627538, -12.974625 ], [ 136.617648, -12.967605 ], [ 136.600858, -12.975115 ], [ 136.598128, -12.989925 ], [ 136.580068, -13.001335 ], [ 136.584458, -13.018435 ], [ 136.562499, -13.018115 ], [ 136.569089, -12.997825 ], [ 136.551139, -12.986776 ], [ 136.564399, -12.981386 ], [ 136.558679, -12.964996 ], [ 136.539539, -12.970376 ], [ 136.542399, -12.979186 ], [ 136.531909, -12.982216 ], [ 136.531769, -12.991926 ], [ 136.519939, -12.976766 ], [ 136.491889, -12.992466 ], [ 136.474329, -12.977386 ], [ 136.455209, -12.978237 ], [ 136.452719, -12.991357 ], [ 136.477959, -12.995906 ], [ 136.480639, -13.006456 ], [ 136.484069, -12.998026 ], [ 136.507099, -12.996606 ], [ 136.510659, -13.016026 ], [ 136.535289, -13.018976 ], [ 136.532889, -13.051946 ], [ 136.566709, -13.058835 ], [ 136.538979, -13.110765 ], [ 136.531170, -13.154425 ], [ 136.514360, -13.139905 ], [ 136.498552, -13.140350 ], [ 136.500870, -13.141846 ], [ 136.479310, -13.169676 ], [ 136.483910, -13.184865 ], [ 136.473950, -13.201665 ], [ 136.475590, -13.234315 ], [ 136.467780, -13.247545 ], [ 136.454891, -13.254706 ], [ 136.446831, -13.248476 ], [ 136.454161, -13.224436 ], [ 136.439651, -13.217386 ], [ 136.436961, -13.230596 ], [ 136.399901, -13.243256 ], [ 136.358172, -13.309886 ], [ 136.343012, -13.325876 ], [ 136.331362, -13.324706 ], [ 136.331632, -13.311716 ], [ 136.318982, -13.298577 ], [ 136.338092, -13.276606 ], [ 136.328142, -13.250027 ], [ 136.350642, -13.246036 ], [ 136.367581, -13.252696 ], [ 136.388071, -13.227066 ], [ 136.380461, -13.203026 ], [ 136.366131, -13.196836 ], [ 136.369801, -13.166577 ], [ 136.356031, -13.147107 ], [ 136.371551, -13.139527 ], [ 136.354071, -13.116497 ], [ 136.368711, -13.108847 ], [ 136.362650, -13.092567 ], [ 136.371430, -13.070447 ], [ 136.363920, -13.056307 ], [ 136.335470, -13.044857 ], [ 136.333420, -13.034147 ], [ 136.331261, -13.047407 ], [ 136.308781, -13.071487 ], [ 136.306511, -13.093507 ], [ 136.291481, -13.107577 ], [ 136.311651, -13.108887 ], [ 136.321181, -13.120107 ], [ 136.306681, -13.144797 ], [ 136.315631, -13.159627 ], [ 136.283082, -13.168097 ], [ 136.281411, -13.151827 ], [ 136.288701, -13.145187 ], [ 136.273782, -13.158577 ], [ 136.256262, -13.154668 ], [ 136.259222, -13.132768 ], [ 136.252562, -13.121288 ], [ 136.243382, -13.145588 ], [ 136.218042, -13.138268 ], [ 136.223082, -13.146308 ], [ 136.214062, -13.154288 ], [ 136.231242, -13.155148 ], [ 136.235802, -13.169738 ], [ 136.247202, -13.173508 ], [ 136.235272, -13.187578 ], [ 136.245162, -13.212467 ], [ 136.238812, -13.204558 ], [ 136.218492, -13.203788 ], [ 136.213422, -13.233248 ], [ 136.201372, -13.246988 ], [ 136.186422, -13.244938 ], [ 136.174902, -13.232988 ], [ 136.161943, -13.242088 ], [ 136.159373, -13.251688 ], [ 136.183853, -13.274708 ], [ 136.181633, -13.280798 ], [ 136.155503, -13.266578 ], [ 136.147752, -13.218888 ], [ 136.134172, -13.207299 ], [ 136.150192, -13.183528 ], [ 136.153092, -13.145699 ], [ 136.145152, -13.120549 ], [ 136.099082, -13.158579 ], [ 136.107902, -13.172399 ], [ 136.077753, -13.209549 ], [ 136.084353, -13.232629 ], [ 136.064193, -13.226329 ], [ 136.053193, -13.234409 ], [ 136.050593, -13.249309 ], [ 136.062073, -13.263149 ], [ 136.047214, -13.309849 ], [ 136.036874, -13.299189 ], [ 136.041884, -13.289159 ], [ 136.030433, -13.243239 ], [ 136.012103, -13.214910 ], [ 135.998023, -13.212950 ], [ 135.979143, -13.222640 ], [ 135.963624, -13.294790 ], [ 135.948314, -13.253440 ], [ 135.918654, -13.268430 ], [ 135.908604, -13.286780 ], [ 135.913314, -13.295070 ], [ 135.886634, -13.323680 ], [ 135.879975, -13.363070 ], [ 135.905755, -13.379020 ], [ 135.920635, -13.377550 ], [ 135.925635, -13.396280 ], [ 135.919085, -13.404440 ], [ 135.926455, -13.417749 ], [ 135.965165, -13.410479 ], [ 135.972985, -13.402329 ], [ 135.961075, -13.445589 ], [ 135.951826, -13.448149 ], [ 135.945305, -13.435009 ], [ 135.929455, -13.442399 ], [ 135.935726, -13.458239 ], [ 135.931246, -13.466819 ], [ 135.919546, -13.462459 ], [ 135.894325, -13.425170 ], [ 135.872605, -13.428900 ], [ 135.859726, -13.440240 ], [ 135.863696, -13.476870 ], [ 135.855046, -13.519980 ], [ 135.865047, -13.531440 ], [ 135.869277, -13.561739 ], [ 135.839737, -13.566360 ], [ 135.835287, -13.590830 ], [ 135.843037, -13.612979 ], [ 135.865167, -13.622269 ], [ 135.871228, -13.656649 ], [ 135.880628, -13.669089 ], [ 135.907398, -13.658179 ], [ 135.921638, -13.675979 ], [ 135.889108, -13.688029 ], [ 135.877828, -13.700399 ], [ 135.879388, -13.712039 ], [ 135.914498, -13.747239 ], [ 135.956238, -13.743358 ], [ 135.978168, -13.731618 ], [ 135.988287, -13.709958 ], [ 136.009047, -13.707448 ], [ 136.012417, -13.688488 ], [ 136.033597, -13.682478 ], [ 136.025907, -13.652058 ], [ 136.040067, -13.656068 ], [ 136.051416, -13.644778 ], [ 136.083056, -13.655457 ], [ 136.075586, -13.672767 ], [ 136.069126, -13.669857 ], [ 136.054867, -13.680647 ], [ 136.055387, -13.694657 ], [ 136.034257, -13.716478 ], [ 136.035167, -13.746757 ], [ 136.013488, -13.762818 ], [ 136.006418, -13.791598 ], [ 136.015738, -13.828347 ], [ 135.991678, -13.857847 ], [ 135.989078, -13.896127 ], [ 135.969909, -13.913667 ], [ 135.955749, -13.949297 ], [ 135.941039, -13.953747 ], [ 135.909739, -13.990438 ], [ 135.913170, -14.042497 ], [ 135.905240, -14.074617 ], [ 135.891140, -14.094317 ], [ 135.894870, -14.107427 ], [ 135.878770, -14.166827 ], [ 135.903590, -14.190517 ], [ 135.898270, -14.193797 ], [ 135.893030, -14.181367 ], [ 135.881450, -14.181277 ], [ 135.815821, -14.228967 ], [ 135.791151, -14.231517 ], [ 135.794031, -14.226067 ], [ 135.766152, -14.260687 ], [ 135.736252, -14.281947 ], [ 135.702532, -14.271368 ], [ 135.730142, -14.296677 ], [ 135.667743, -14.399167 ], [ 135.670323, -14.424377 ], [ 135.656283, -14.418397 ], [ 135.630993, -14.419537 ], [ 135.628103, -14.427567 ], [ 135.619613, -14.423108 ], [ 135.586564, -14.484718 ], [ 135.589514, -14.505147 ], [ 135.568404, -14.514998 ], [ 135.566784, -14.537497 ], [ 135.555184, -14.536258 ], [ 135.536614, -14.561138 ], [ 135.518414, -14.625477 ], [ 135.527444, -14.640947 ], [ 135.539544, -14.642547 ], [ 135.541054, -14.652717 ], [ 135.519114, -14.653287 ], [ 135.499494, -14.675787 ], [ 135.484865, -14.667087 ], [ 135.465005, -14.675787 ], [ 135.440485, -14.694137 ], [ 135.416335, -14.735027 ], [ 135.405295, -14.736597 ], [ 135.393335, -14.719188 ], [ 135.382075, -14.725738 ], [ 135.393785, -14.771877 ], [ 135.393775, -14.808627 ], [ 135.412355, -14.848547 ], [ 135.410935, -14.873137 ], [ 135.415485, -14.870597 ], [ 135.428035, -14.891747 ], [ 135.431135, -14.910706 ], [ 135.455815, -14.948966 ], [ 135.478818, -14.976060 ], [ 135.579954, -15.045305 ], [ 135.612313, -15.051995 ], [ 135.639733, -15.044445 ], [ 135.657323, -15.052535 ], [ 135.669832, -15.071585 ], [ 135.701872, -15.087524 ], [ 135.724142, -15.116294 ], [ 135.748971, -15.116514 ], [ 135.862790, -15.182743 ], [ 135.925168, -15.249212 ], [ 135.981527, -15.286991 ], [ 136.049786, -15.316790 ], [ 136.071565, -15.339170 ], [ 136.129694, -15.364290 ], [ 136.164673, -15.392339 ], [ 136.209752, -15.392878 ], [ 136.207122, -15.401138 ], [ 136.239712, -15.416088 ], [ 136.241542, -15.448618 ], [ 136.263172, -15.496728 ], [ 136.270412, -15.535779 ], [ 136.290291, -15.572359 ], [ 136.317261, -15.589609 ], [ 136.317491, -15.625989 ], [ 136.326441, -15.601979 ], [ 136.341321, -15.613408 ], [ 136.412070, -15.626158 ], [ 136.468909, -15.666438 ], [ 136.533888, -15.731948 ], [ 136.547587, -15.728898 ], [ 136.540908, -15.739158 ], [ 136.558397, -15.742148 ], [ 136.555458, -15.750398 ], [ 136.568427, -15.741838 ], [ 136.559367, -15.727578 ], [ 136.584917, -15.725048 ], [ 136.621007, -15.706167 ], [ 136.644067, -15.672446 ], [ 136.664927, -15.678486 ], [ 136.671607, -15.663926 ], [ 136.679297, -15.667786 ], [ 136.681827, -15.684616 ], [ 136.696867, -15.683526 ], [ 136.704537, -15.696756 ], [ 136.724127, -15.696345 ], [ 136.682667, -15.777916 ], [ 136.642787, -15.769127 ], [ 136.645412, -15.778971 ], [ 136.658387, -15.781587 ], [ 136.644717, -15.791607 ], [ 136.670497, -15.794147 ], [ 136.678637, -15.805237 ], [ 136.674567, -15.814487 ], [ 136.713767, -15.856807 ], [ 136.714657, -15.877257 ], [ 136.690797, -15.903408 ], [ 136.706377, -15.931228 ], [ 136.729497, -15.932397 ], [ 136.771487, -15.889446 ], [ 136.773207, -15.906387 ], [ 136.760737, -15.916267 ], [ 136.786047, -15.902796 ], [ 136.795777, -15.911796 ], [ 136.795857, -15.904506 ], [ 136.822947, -15.899236 ], [ 136.835187, -15.908286 ], [ 136.856317, -15.907525 ], [ 136.849370, -15.916257 ], [ 136.866467, -15.913635 ], [ 136.871707, -15.923575 ], [ 136.887817, -15.922355 ], [ 136.888767, -15.932285 ], [ 136.892947, -15.924845 ], [ 136.908127, -15.928475 ], [ 136.904617, -15.936495 ], [ 136.944306, -15.932914 ], [ 136.953246, -15.938334 ], [ 136.918756, -15.917084 ], [ 136.912706, -15.899684 ], [ 136.939456, -15.880174 ], [ 136.970386, -15.874893 ], [ 136.966306, -15.861563 ], [ 136.977986, -15.850953 ], [ 136.987306, -15.875133 ], [ 136.998736, -15.880673 ], [ 136.999325, -15.875133 ], [ 137.005855, -15.879323 ], [ 136.997926, -15.869493 ], [ 137.003525, -15.873103 ], [ 137.048095, -15.922252 ], [ 137.083575, -15.944162 ], [ 137.157935, -15.969461 ], [ 137.204085, -15.999341 ], [ 137.254414, -16.012350 ], [ 137.308954, -16.085119 ], [ 137.294925, -16.081120 ], [ 137.354344, -16.114999 ], [ 137.372604, -16.133349 ], [ 137.373554, -16.126419 ], [ 137.381344, -16.137018 ], [ 137.383804, -16.131898 ], [ 137.356924, -16.115629 ], [ 137.388394, -16.126618 ], [ 137.409194, -16.144318 ], [ 137.425724, -16.139258 ], [ 137.498494, -16.168017 ], [ 137.556942, -16.174293 ], [ 137.534312, -16.164233 ], [ 137.573772, -16.174823 ], [ 137.680621, -16.222322 ], [ 137.729671, -16.232252 ], [ 137.740891, -16.261771 ], [ 137.768851, -16.285721 ], [ 137.789851, -16.326001 ], [ 137.862021, -16.422710 ], [ 138.001180, -16.544509 ], [ 137.999054, -25.996867 ], [ 129.000584, -25.998613 ], [ 129.001242, -14.879473 ], [ 129.031662, -14.886404 ], [ 129.044122, -14.907474 ], [ 129.056582, -14.907864 ], [ 129.054062, -14.895314 ], [ 129.065942, -14.891074 ], [ 129.101291, -14.915063 ], [ 129.112720, -14.934444 ], [ 129.108420, -14.989234 ], [ 129.122640, -14.953124 ], [ 129.130690, -14.948973 ], [ 129.156770, -14.969083 ], [ 129.153340, -14.983424 ], [ 129.158170, -14.969313 ], [ 129.188919, -14.987173 ], [ 129.169509, -15.051533 ], [ 129.180419, -15.076401 ], [ 129.177609, -15.088920 ], [ 129.195399, -15.102657 ], [ 129.200549, -15.122610 ], [ 129.174670, -15.147453 ], [ 129.174920, -15.168373 ], [ 129.157520, -15.184362 ], [ 129.158190, -15.197602 ], [ 129.171140, -15.195692 ], [ 129.180470, -15.183122 ], [ 129.187740, -15.189412 ], [ 129.186620, -15.173913 ], [ 129.199600, -15.146683 ], [ 129.195630, -15.159303 ], [ 129.231200, -15.175933 ], [ 129.215479, -15.153844 ], [ 129.238089, -15.128741 ], [ 129.235149, -15.108587 ], [ 129.249409, -15.091536 ], [ 129.236489, -15.067790 ], [ 129.251469, -15.055972 ], [ 129.256039, -15.033953 ], [ 129.261929, -15.038413 ], [ 129.256339, -15.061991 ], [ 129.261649, -15.043503 ], [ 129.278198, -15.029293 ], [ 129.292969, -15.041763 ], [ 129.301618, -15.036533 ], [ 129.293099, -15.040513 ], [ 129.281248, -15.026843 ], [ 129.265129, -15.032903 ], [ 129.233489, -15.008293 ], [ 129.241369, -14.986463 ], [ 129.233929, -14.924383 ], [ 129.241818, -14.910693 ], [ 129.221738, -14.855403 ], [ 129.228428, -14.839373 ], [ 129.243178, -14.841342 ], [ 129.240808, -14.852582 ], [ 129.243858, -14.845302 ], [ 129.262907, -14.850112 ], [ 129.257278, -14.865012 ], [ 129.317387, -14.859452 ], [ 129.334857, -14.872992 ], [ 129.350127, -14.873682 ], [ 129.367257, -14.903172 ], [ 129.392217, -14.909062 ], [ 129.408627, -14.924932 ], [ 129.409517, -14.917592 ], [ 129.435317, -14.921391 ], [ 129.482478, -14.941060 ], [ 129.522298, -15.005689 ], [ 129.524778, -15.028089 ], [ 129.556113, -15.048727 ], [ 129.603903, -15.108006 ], [ 129.602213, -15.128906 ], [ 129.560193, -15.155136 ], [ 129.557244, -15.170536 ], [ 129.563584, -15.179916 ], [ 129.578933, -15.155626 ], [ 129.611663, -15.153736 ], [ 129.626233, -15.138026 ], [ 129.656723, -15.139507 ], [ 129.670853, -15.148547 ], [ 129.684983, -15.142667 ], [ 129.685663, -15.131027 ], [ 129.652392, -15.099347 ], [ 129.639822, -15.071217 ], [ 129.640532, -15.042167 ], [ 129.663332, -15.028097 ], [ 129.654302, -15.023397 ], [ 129.635252, -15.032857 ], [ 129.621082, -14.998587 ], [ 129.623012, -14.953257 ], [ 129.608492, -14.947687 ], [ 129.596407, -14.956909 ], [ 129.599517, -14.970359 ], [ 129.593247, -14.967069 ], [ 129.547907, -14.878519 ], [ 129.536477, -14.869029 ], [ 129.530377, -14.843859 ], [ 129.500257, -14.803219 ], [ 129.499707, -14.790109 ], [ 129.533837, -14.806799 ], [ 129.570007, -14.847559 ], [ 129.592117, -14.891009 ], [ 129.618391, -14.875607 ], [ 129.586151, -14.839377 ], [ 129.574046, -14.806769 ], [ 129.577546, -14.798299 ], [ 129.632051, -14.843867 ], [ 129.648571, -14.834407 ], [ 129.684911, -14.848817 ], [ 129.744561, -14.852327 ], [ 129.768161, -14.841357 ], [ 129.771701, -14.848977 ], [ 129.802541, -14.858017 ], [ 129.850091, -14.843308 ], [ 129.851381, -14.826188 ], [ 129.881371, -14.820108 ], [ 129.885561, -14.813898 ], [ 129.876270, -14.806888 ], [ 129.864410, -14.810608 ], [ 129.863950, -14.801678 ], [ 129.882550, -14.799428 ], [ 129.902830, -14.773218 ], [ 129.868350, -14.776208 ], [ 129.835941, -14.813298 ], [ 129.812691, -14.822878 ], [ 129.800841, -14.818908 ], [ 129.768981, -14.828028 ], [ 129.756541, -14.823598 ], [ 129.749481, -14.809698 ], [ 129.776810, -14.795378 ], [ 129.793800, -14.769058 ], [ 129.804030, -14.769418 ], [ 129.810050, -14.760318 ], [ 129.800660, -14.766808 ], [ 129.794050, -14.756408 ], [ 129.776030, -14.771298 ], [ 129.774730, -14.783058 ], [ 129.758470, -14.782018 ], [ 129.734401, -14.793968 ], [ 129.672401, -14.763468 ], [ 129.662211, -14.746158 ], [ 129.664664, -14.726060 ], [ 129.644951, -14.715278 ], [ 129.619276, -14.679653 ], [ 129.597761, -14.674389 ], [ 129.589191, -14.661259 ], [ 129.580675, -14.637929 ], [ 129.583625, -14.616239 ], [ 129.692380, -14.612789 ], [ 129.718910, -14.582829 ], [ 129.756299, -14.569719 ], [ 129.773869, -14.547569 ], [ 129.771549, -14.538709 ], [ 129.669340, -14.580489 ], [ 129.566761, -14.562549 ], [ 129.556920, -14.550809 ], [ 129.526271, -14.552290 ], [ 129.488235, -14.503340 ], [ 129.523065, -14.465559 ], [ 129.508855, -14.471969 ], [ 129.490435, -14.460169 ], [ 129.506885, -14.471739 ], [ 129.482675, -14.500950 ], [ 129.471875, -14.459450 ], [ 129.481665, -14.449650 ], [ 129.470015, -14.458200 ], [ 129.464745, -14.441810 ], [ 129.462615, -14.451060 ], [ 129.453995, -14.446390 ], [ 129.468615, -14.460570 ], [ 129.474455, -14.490990 ], [ 129.453185, -14.505060 ], [ 129.447395, -14.499620 ], [ 129.451155, -14.483580 ], [ 129.422655, -14.467340 ], [ 129.420725, -14.449930 ], [ 129.397845, -14.416130 ], [ 129.397945, -14.426470 ], [ 129.379285, -14.419410 ], [ 129.356765, -14.423630 ], [ 129.360725, -14.382500 ], [ 129.373895, -14.354730 ], [ 129.367015, -14.338100 ], [ 129.393515, -14.316820 ], [ 129.410524, -14.288270 ], [ 129.419444, -14.291120 ], [ 129.418404, -14.277130 ], [ 129.411594, -14.279460 ], [ 129.409294, -14.235940 ], [ 129.431104, -14.226390 ], [ 129.453223, -14.191190 ], [ 129.463853, -14.193680 ], [ 129.496383, -14.127889 ], [ 129.507143, -14.133229 ], [ 129.512033, -14.127049 ], [ 129.498263, -14.116479 ], [ 129.507913, -14.103619 ], [ 129.499522, -14.078959 ], [ 129.486323, -14.078470 ], [ 129.478982, -14.047930 ], [ 129.491382, -14.047399 ], [ 129.515832, -14.075369 ], [ 129.525072, -14.052339 ], [ 129.535592, -14.058359 ], [ 129.535072, -14.081419 ], [ 129.542232, -14.091149 ], [ 129.527663, -14.129999 ], [ 129.541991, -14.144528 ], [ 129.556712, -14.142159 ], [ 129.554812, -14.111869 ], [ 129.567152, -14.083859 ], [ 129.594868, -14.091231 ], [ 129.609288, -14.069591 ], [ 129.611678, -14.053581 ], [ 129.590638, -14.032861 ], [ 129.598097, -14.011061 ], [ 129.609277, -14.035611 ], [ 129.640877, -14.047200 ], [ 129.721306, -14.013430 ], [ 129.746045, -13.975139 ], [ 129.752395, -13.952199 ], [ 129.745905, -13.946999 ], [ 129.747265, -13.919199 ], [ 129.735105, -13.897200 ], [ 129.716925, -13.896290 ], [ 129.715525, -13.878880 ], [ 129.722565, -13.847910 ], [ 129.740024, -13.826870 ], [ 129.781754, -13.789429 ], [ 129.794833, -13.789519 ], [ 129.785094, -13.768179 ], [ 129.790163, -13.666910 ], [ 129.834832, -13.561190 ], [ 129.827732, -13.518140 ], [ 129.817322, -13.501760 ], [ 129.831192, -13.511470 ], [ 129.873241, -13.499090 ], [ 129.885301, -13.503230 ], [ 129.871151, -13.493450 ], [ 129.869401, -13.479770 ], [ 129.897431, -13.440410 ], [ 129.900511, -13.498600 ], [ 129.909891, -13.514340 ], [ 129.956840, -13.535809 ], [ 130.008369, -13.533339 ], [ 130.058688, -13.499448 ], [ 130.064148, -13.503698 ], [ 130.106367, -13.456308 ], [ 130.125227, -13.466197 ], [ 130.141607, -13.457117 ], [ 130.182226, -13.408637 ], [ 130.198365, -13.374207 ], [ 130.214435, -13.368216 ], [ 130.235484, -13.339676 ], [ 130.277914, -13.334866 ], [ 130.284054, -13.305756 ], [ 130.239714, -13.282487 ], [ 130.225204, -13.249197 ], [ 130.164195, -13.178029 ], [ 130.130515, -13.176539 ], [ 130.116176, -13.164139 ], [ 130.118885, -13.133399 ], [ 130.134055, -13.107479 ], [ 130.120155, -13.079379 ], [ 130.141194, -13.000669 ], [ 130.128194, -12.973699 ], [ 130.141114, -12.933458 ], [ 130.159093, -12.929228 ], [ 130.175793, -12.910277 ], [ 130.193763, -12.910507 ], [ 130.192613, -12.927808 ], [ 130.213243, -12.947028 ], [ 130.247122, -12.948377 ], [ 130.338240, -12.890117 ], [ 130.333160, -12.881077 ], [ 130.358339, -12.807237 ], [ 130.352799, -12.795377 ], [ 130.356219, -12.734777 ], [ 130.346309, -12.715227 ], [ 130.352029, -12.670337 ], [ 130.372478, -12.682037 ], [ 130.378858, -12.677677 ], [ 130.404108, -12.701477 ], [ 130.405538, -12.685337 ], [ 130.396468, -12.680147 ], [ 130.393578, -12.662287 ], [ 130.412797, -12.655607 ], [ 130.414147, -12.664525 ], [ 130.424537, -12.656957 ], [ 130.420267, -12.645427 ], [ 130.438556, -12.633656 ], [ 130.444666, -12.645516 ], [ 130.460885, -12.639176 ], [ 130.492105, -12.667286 ], [ 130.513574, -12.667765 ], [ 130.518305, -12.691376 ], [ 130.501186, -12.717966 ], [ 130.506126, -12.715006 ], [ 130.517887, -12.731048 ] ], [ [ 136.493656, -13.137190 ], [ 136.494890, -13.130756 ], [ 136.490380, -13.135076 ], [ 136.493656, -13.137190 ] ], [ [ 136.920057, -12.345105 ], [ 136.898470, -12.362623 ], [ 136.879160, -12.366323 ], [ 136.872820, -12.380653 ], [ 136.882380, -12.367913 ], [ 136.910529, -12.367723 ], [ 136.920057, -12.345105 ] ], [ [ 136.484882, -12.038282 ], [ 136.481587, -12.050148 ], [ 136.464817, -12.050908 ], [ 136.489277, -12.056258 ], [ 136.484882, -12.038282 ] ], [ [ 134.460310, -12.070590 ], [ 134.447525, -12.074575 ], [ 134.455485, -12.077815 ], [ 134.460310, -12.070590 ] ], [ [ 130.624928, -12.769794 ], [ 130.624345, -12.775105 ], [ 130.635194, -12.774195 ], [ 130.624928, -12.769794 ] ], [ [ 131.018004, -12.362999 ], [ 131.018767, -12.371650 ], [ 131.019277, -12.362120 ], [ 131.018004, -12.362999 ] ] ], [ [ [ 137.106124, -15.772531 ], [ 137.097714, -15.812051 ], [ 137.072865, -15.834402 ], [ 137.074255, -15.846262 ], [ 137.039845, -15.835522 ], [ 137.044045, -15.817232 ], [ 137.034495, -15.797122 ], [ 137.016285, -15.805582 ], [ 136.992615, -15.792132 ], [ 136.989375, -15.760622 ], [ 136.978755, -15.761972 ], [ 136.982385, -15.749552 ], [ 136.969665, -15.749093 ], [ 136.980755, -15.740512 ], [ 136.974575, -15.737572 ], [ 136.982825, -15.723572 ], [ 136.978375, -15.712422 ], [ 136.963855, -15.730562 ], [ 136.959095, -15.709892 ], [ 136.947655, -15.717673 ], [ 136.953935, -15.740043 ], [ 136.947285, -15.733143 ], [ 136.941105, -15.739463 ], [ 136.941585, -15.725573 ], [ 136.929805, -15.726463 ], [ 136.940075, -15.719923 ], [ 136.934035, -15.697333 ], [ 136.939285, -15.690113 ], [ 136.918305, -15.683763 ], [ 136.938245, -15.685033 ], [ 136.947925, -15.676002 ], [ 136.941165, -15.672272 ], [ 136.946895, -15.661552 ], [ 136.936285, -15.660412 ], [ 136.949345, -15.658282 ], [ 136.961025, -15.640102 ], [ 136.970115, -15.642822 ], [ 136.969395, -15.661122 ], [ 136.984195, -15.667002 ], [ 136.983955, -15.674462 ], [ 136.994454, -15.664532 ], [ 136.994464, -15.657862 ], [ 136.980475, -15.655032 ], [ 136.976764, -15.634472 ], [ 136.999964, -15.622862 ], [ 136.991374, -15.584462 ], [ 137.019914, -15.594871 ], [ 137.033644, -15.635191 ], [ 137.054504, -15.640401 ], [ 137.058364, -15.628321 ], [ 137.067104, -15.628771 ], [ 137.059874, -15.641311 ], [ 137.063104, -15.652701 ], [ 137.081664, -15.655771 ], [ 137.076064, -15.661641 ], [ 137.085494, -15.712911 ], [ 137.077784, -15.743281 ], [ 137.083034, -15.747911 ], [ 137.073434, -15.745851 ], [ 137.080354, -15.749721 ], [ 137.078484, -15.760671 ], [ 137.106124, -15.772531 ] ] ], [ [ [ 137.074485, -15.854732 ], [ 137.068885, -15.866252 ], [ 137.067715, -15.857212 ], [ 137.074485, -15.854732 ] ] ], [ [ [ 136.964126, -14.165254 ], [ 136.954096, -14.193134 ], [ 136.940156, -14.189194 ], [ 136.934276, -14.203714 ], [ 136.936096, -14.212164 ], [ 136.951916, -14.219584 ], [ 136.945716, -14.225514 ], [ 136.959806, -14.244924 ], [ 136.940727, -14.260354 ], [ 136.947946, -14.276214 ], [ 136.964576, -14.282604 ], [ 136.935837, -14.281744 ], [ 136.935927, -14.290894 ], [ 136.952186, -14.294924 ], [ 136.949957, -14.304204 ], [ 136.909567, -14.284924 ], [ 136.899007, -14.297104 ], [ 136.904367, -14.310504 ], [ 136.896407, -14.301764 ], [ 136.890897, -14.307914 ], [ 136.883518, -14.299064 ], [ 136.876948, -14.302844 ], [ 136.859568, -14.278155 ], [ 136.845478, -14.282795 ], [ 136.842458, -14.295135 ], [ 136.830018, -14.277855 ], [ 136.825548, -14.283315 ], [ 136.819129, -14.277495 ], [ 136.812379, -14.287385 ], [ 136.824369, -14.293495 ], [ 136.814759, -14.294365 ], [ 136.802779, -14.288595 ], [ 136.812999, -14.279355 ], [ 136.809449, -14.270695 ], [ 136.755460, -14.258056 ], [ 136.694211, -14.275856 ], [ 136.679741, -14.290886 ], [ 136.682461, -14.297756 ], [ 136.670382, -14.287047 ], [ 136.649892, -14.296217 ], [ 136.645632, -14.286077 ], [ 136.633902, -14.283577 ], [ 136.628193, -14.265037 ], [ 136.540515, -14.254148 ], [ 136.524595, -14.233819 ], [ 136.490816, -14.237009 ], [ 136.455507, -14.218050 ], [ 136.450787, -14.203940 ], [ 136.437348, -14.196300 ], [ 136.395549, -14.202331 ], [ 136.356580, -14.220111 ], [ 136.324700, -14.246111 ], [ 136.324461, -14.213321 ], [ 136.411409, -14.169491 ], [ 136.422119, -14.154981 ], [ 136.421029, -14.142321 ], [ 136.442608, -14.123471 ], [ 136.429629, -14.094241 ], [ 136.433159, -14.079761 ], [ 136.418020, -14.058002 ], [ 136.418170, -13.996012 ], [ 136.408151, -13.976332 ], [ 136.436141, -13.890793 ], [ 136.429021, -13.869313 ], [ 136.408042, -13.845313 ], [ 136.409232, -13.830973 ], [ 136.422572, -13.815643 ], [ 136.434711, -13.815113 ], [ 136.446721, -13.822143 ], [ 136.440451, -13.831393 ], [ 136.457131, -13.819233 ], [ 136.462760, -13.834503 ], [ 136.495630, -13.840832 ], [ 136.524569, -13.821482 ], [ 136.523819, -13.791532 ], [ 136.531889, -13.785022 ], [ 136.542578, -13.789102 ], [ 136.539218, -13.814042 ], [ 136.552228, -13.819822 ], [ 136.560248, -13.815262 ], [ 136.566188, -13.829942 ], [ 136.574167, -13.798552 ], [ 136.583937, -13.808611 ], [ 136.599757, -13.807041 ], [ 136.594097, -13.787031 ], [ 136.624416, -13.790771 ], [ 136.638016, -13.783551 ], [ 136.629276, -13.777251 ], [ 136.630546, -13.766191 ], [ 136.607676, -13.763611 ], [ 136.618156, -13.744171 ], [ 136.607306, -13.730052 ], [ 136.588637, -13.724342 ], [ 136.592367, -13.696582 ], [ 136.574237, -13.694262 ], [ 136.577777, -13.687402 ], [ 136.612126, -13.678642 ], [ 136.618906, -13.688692 ], [ 136.636356, -13.688511 ], [ 136.617066, -13.706002 ], [ 136.632126, -13.720561 ], [ 136.647455, -13.700131 ], [ 136.661865, -13.704111 ], [ 136.664035, -13.694411 ], [ 136.676275, -13.702191 ], [ 136.678505, -13.680081 ], [ 136.693774, -13.652191 ], [ 136.695304, -13.662041 ], [ 136.710484, -13.657541 ], [ 136.715263, -13.665941 ], [ 136.728553, -13.652160 ], [ 136.730973, -13.687020 ], [ 136.719883, -13.717740 ], [ 136.707274, -13.715670 ], [ 136.694464, -13.728801 ], [ 136.686044, -13.727151 ], [ 136.681074, -13.739421 ], [ 136.685394, -13.748151 ], [ 136.690624, -13.744591 ], [ 136.689524, -13.763900 ], [ 136.697054, -13.774920 ], [ 136.735352, -13.770960 ], [ 136.712493, -13.793810 ], [ 136.716843, -13.810800 ], [ 136.729142, -13.819720 ], [ 136.718303, -13.835800 ], [ 136.725352, -13.842279 ], [ 136.754461, -13.832359 ], [ 136.807348, -13.856016 ], [ 136.837318, -13.842907 ], [ 136.845488, -13.815048 ], [ 136.837278, -13.802438 ], [ 136.813719, -13.812068 ], [ 136.796999, -13.834188 ], [ 136.814739, -13.801918 ], [ 136.839308, -13.780308 ], [ 136.840528, -13.745188 ], [ 136.864368, -13.755438 ], [ 136.888657, -13.753938 ], [ 136.905216, -13.764127 ], [ 136.924406, -13.806527 ], [ 136.912026, -13.807557 ], [ 136.883996, -13.842807 ], [ 136.858486, -13.893216 ], [ 136.857806, -13.912836 ], [ 136.812587, -13.904137 ], [ 136.793188, -13.914027 ], [ 136.778908, -13.934017 ], [ 136.762279, -14.000987 ], [ 136.778979, -14.023927 ], [ 136.807518, -14.018116 ], [ 136.807558, -14.035856 ], [ 136.784099, -14.039787 ], [ 136.777319, -14.058027 ], [ 136.775249, -14.046187 ], [ 136.760199, -14.046427 ], [ 136.747880, -14.066527 ], [ 136.752220, -14.086937 ], [ 136.737790, -14.078357 ], [ 136.736620, -14.065527 ], [ 136.720590, -14.069917 ], [ 136.724130, -14.078137 ], [ 136.713261, -14.093137 ], [ 136.720650, -14.104257 ], [ 136.711351, -14.099817 ], [ 136.699661, -14.114597 ], [ 136.705451, -14.140767 ], [ 136.715591, -14.142247 ], [ 136.707081, -14.168987 ], [ 136.726250, -14.189167 ], [ 136.785429, -14.193116 ], [ 136.788169, -14.184906 ], [ 136.770890, -14.169466 ], [ 136.782419, -14.163386 ], [ 136.776809, -14.144566 ], [ 136.788569, -14.151586 ], [ 136.800339, -14.146966 ], [ 136.810919, -14.164156 ], [ 136.842938, -14.183075 ], [ 136.853918, -14.206475 ], [ 136.865778, -14.210775 ], [ 136.893617, -14.203515 ], [ 136.914747, -14.171475 ], [ 136.911297, -14.137615 ], [ 136.930696, -14.143875 ], [ 136.920357, -14.152555 ], [ 136.928337, -14.164345 ], [ 136.945176, -14.157075 ], [ 136.964126, -14.165254 ] ] ], [ [ [ 136.962484, -13.626417 ], [ 136.951214, -13.648927 ], [ 136.950334, -13.643497 ], [ 136.925485, -13.644537 ], [ 136.933315, -13.634437 ], [ 136.962484, -13.626417 ] ] ], [ [ [ 136.949935, -15.772453 ], [ 136.946665, -15.777193 ], [ 136.940145, -15.768603 ], [ 136.947145, -15.759343 ], [ 136.949935, -15.772453 ] ] ], [ [ [ 136.937355, -13.662817 ], [ 136.929005, -13.667157 ], [ 136.925815, -13.661827 ], [ 136.937355, -13.662817 ] ] ], [ [ [ 136.913436, -13.662858 ], [ 136.900606, -13.678008 ], [ 136.886987, -13.676088 ], [ 136.908506, -13.658408 ], [ 136.913436, -13.662858 ] ] ], [ [ [ 136.904895, -15.588552 ], [ 136.895675, -15.598593 ], [ 136.886825, -15.594063 ], [ 136.884005, -15.607273 ], [ 136.861975, -15.607353 ], [ 136.875365, -15.617193 ], [ 136.881905, -15.613483 ], [ 136.880825, -15.636743 ], [ 136.845486, -15.647193 ], [ 136.837356, -15.628553 ], [ 136.851696, -15.624733 ], [ 136.829906, -15.618373 ], [ 136.843096, -15.610263 ], [ 136.831096, -15.601663 ], [ 136.855255, -15.583513 ], [ 136.852595, -15.569843 ], [ 136.841995, -15.562943 ], [ 136.841565, -15.542383 ], [ 136.860455, -15.532703 ], [ 136.867255, -15.507522 ], [ 136.870615, -15.517352 ], [ 136.883325, -15.509132 ], [ 136.873745, -15.532042 ], [ 136.890685, -15.579613 ], [ 136.904895, -15.588552 ] ] ], [ [ [ 136.840575, -15.577173 ], [ 136.827626, -15.585053 ], [ 136.801646, -15.582414 ], [ 136.796886, -15.573144 ], [ 136.781596, -15.582384 ], [ 136.773566, -15.578634 ], [ 136.793056, -15.560034 ], [ 136.833155, -15.555473 ], [ 136.835705, -15.563613 ], [ 136.827886, -15.570603 ], [ 136.836515, -15.566203 ], [ 136.840575, -15.577173 ] ] ], [ [ [ 136.837568, -11.664256 ], [ 136.824818, -11.676206 ], [ 136.809578, -11.673236 ], [ 136.823708, -11.658686 ], [ 136.833908, -11.656566 ], [ 136.837568, -11.664256 ] ] ], [ [ [ 136.836326, -15.686594 ], [ 136.813806, -15.700344 ], [ 136.802496, -15.697834 ], [ 136.804276, -15.685254 ], [ 136.791066, -15.684344 ], [ 136.779516, -15.701305 ], [ 136.798166, -15.703364 ], [ 136.804436, -15.723814 ], [ 136.776517, -15.746355 ], [ 136.764277, -15.742725 ], [ 136.746187, -15.749915 ], [ 136.739747, -15.762665 ], [ 136.732167, -15.758026 ], [ 136.728487, -15.734745 ], [ 136.738907, -15.712065 ], [ 136.749007, -15.718635 ], [ 136.751267, -15.712775 ], [ 136.729717, -15.700195 ], [ 136.736837, -15.697155 ], [ 136.734546, -15.677615 ], [ 136.740996, -15.672875 ], [ 136.735426, -15.646665 ], [ 136.765636, -15.640404 ], [ 136.780196, -15.648224 ], [ 136.794656, -15.644974 ], [ 136.829136, -15.662984 ], [ 136.828066, -15.676874 ], [ 136.836326, -15.686594 ] ] ], [ [ [ 136.829616, -15.730744 ], [ 136.817716, -15.730614 ], [ 136.815596, -15.746874 ], [ 136.812226, -15.737264 ], [ 136.807077, -15.746075 ], [ 136.800787, -15.742225 ], [ 136.803376, -15.726074 ], [ 136.829616, -15.730744 ] ] ], [ [ [ 136.827308, -12.129923 ], [ 136.814998, -12.141084 ], [ 136.801938, -12.127404 ], [ 136.800208, -12.132934 ], [ 136.796247, -12.106054 ], [ 136.797077, -12.088774 ], [ 136.823977, -12.072784 ], [ 136.827308, -12.129923 ] ] ], [ [ [ 136.819096, -15.603223 ], [ 136.791326, -15.615374 ], [ 136.790056, -15.608824 ], [ 136.777236, -15.608004 ], [ 136.791256, -15.590644 ], [ 136.819096, -15.603223 ] ] ], [ [ [ 136.766169, -11.028510 ], [ 136.734840, -11.114650 ], [ 136.736980, -11.127760 ], [ 136.721711, -11.150890 ], [ 136.714661, -11.176520 ], [ 136.720001, -11.193820 ], [ 136.711641, -11.194710 ], [ 136.706451, -11.211190 ], [ 136.694982, -11.218850 ], [ 136.684682, -11.213340 ], [ 136.666802, -11.224870 ], [ 136.684022, -11.248760 ], [ 136.670292, -11.246690 ], [ 136.662123, -11.264180 ], [ 136.648383, -11.263470 ], [ 136.644893, -11.282330 ], [ 136.633343, -11.277660 ], [ 136.625083, -11.284330 ], [ 136.634214, -11.294840 ], [ 136.623764, -11.303630 ], [ 136.627134, -11.328720 ], [ 136.616145, -11.328470 ], [ 136.599605, -11.347580 ], [ 136.588726, -11.383529 ], [ 136.562327, -11.398509 ], [ 136.555067, -11.416769 ], [ 136.537658, -11.426099 ], [ 136.537578, -11.440329 ], [ 136.521988, -11.444579 ], [ 136.525388, -11.435079 ], [ 136.518358, -11.430780 ], [ 136.499968, -11.441790 ], [ 136.502218, -11.455560 ], [ 136.483889, -11.456550 ], [ 136.474369, -11.449100 ], [ 136.494748, -11.437790 ], [ 136.501938, -11.424770 ], [ 136.497797, -11.392250 ], [ 136.520457, -11.395600 ], [ 136.517467, -11.384220 ], [ 136.530177, -11.377520 ], [ 136.533446, -11.365620 ], [ 136.547776, -11.364990 ], [ 136.554446, -11.356080 ], [ 136.551036, -11.345670 ], [ 136.563166, -11.347430 ], [ 136.565955, -11.335320 ], [ 136.582935, -11.324640 ], [ 136.576895, -11.316260 ], [ 136.583174, -11.281700 ], [ 136.620283, -11.238070 ], [ 136.622882, -11.210060 ], [ 136.627012, -11.204980 ], [ 136.631112, -11.213810 ], [ 136.643602, -11.209890 ], [ 136.657292, -11.184950 ], [ 136.672412, -11.197010 ], [ 136.687261, -11.192720 ], [ 136.706671, -11.167910 ], [ 136.703041, -11.152870 ], [ 136.696181, -11.151840 ], [ 136.704771, -11.147910 ], [ 136.706660, -11.125090 ], [ 136.693740, -11.119740 ], [ 136.715820, -11.124660 ], [ 136.722150, -11.109870 ], [ 136.700680, -11.092300 ], [ 136.727100, -11.097230 ], [ 136.737569, -11.076010 ], [ 136.734059, -11.060640 ], [ 136.712790, -11.054701 ], [ 136.725759, -11.039601 ], [ 136.736029, -11.050580 ], [ 136.745189, -11.048230 ], [ 136.736759, -11.033861 ], [ 136.750929, -11.030261 ], [ 136.759109, -11.017651 ], [ 136.766169, -11.028510 ] ] ], [ [ [ 136.762108, -11.004551 ], [ 136.747889, -11.020101 ], [ 136.736599, -11.007311 ], [ 136.762108, -11.004551 ] ] ], [ [ [ 136.753982, -13.690570 ], [ 136.733483, -13.695700 ], [ 136.738182, -13.686360 ], [ 136.753982, -13.690570 ] ] ], [ [ [ 136.712750, -12.217115 ], [ 136.700228, -12.228824 ], [ 136.696791, -12.222728 ], [ 136.705807, -12.212869 ], [ 136.696638, -12.207066 ], [ 136.709109, -12.203675 ], [ 136.712750, -12.217115 ] ] ], [ [ [ 136.702274, -13.620411 ], [ 136.695284, -13.625881 ], [ 136.701794, -13.634981 ], [ 136.686344, -13.631341 ], [ 136.702274, -13.620411 ] ] ], [ [ [ 136.688384, -13.634971 ], [ 136.680644, -13.647671 ], [ 136.680894, -13.633101 ], [ 136.688384, -13.634971 ] ] ], [ [ [ 136.688153, -11.821446 ], [ 136.669764, -11.836656 ], [ 136.643024, -11.839746 ], [ 136.688153, -11.821446 ] ] ], [ [ [ 136.682624, -13.658801 ], [ 136.676245, -13.678881 ], [ 136.665975, -13.684711 ], [ 136.659665, -13.679681 ], [ 136.668715, -13.663831 ], [ 136.662425, -13.656321 ], [ 136.682624, -13.658801 ] ] ], [ [ [ 136.681306, -15.605335 ], [ 136.673946, -15.612206 ], [ 136.646446, -15.606156 ], [ 136.654756, -15.593636 ], [ 136.669456, -15.590506 ], [ 136.681306, -15.605335 ] ] ], [ [ [ 136.656735, -13.655251 ], [ 136.647775, -13.665681 ], [ 136.643706, -13.656942 ], [ 136.656735, -13.655251 ] ] ], [ [ [ 136.641666, -13.664142 ], [ 136.631296, -13.673322 ], [ 136.632236, -13.659552 ], [ 136.641136, -13.656852 ], [ 136.641666, -13.664142 ] ] ], [ [ [ 136.630207, -12.863185 ], [ 136.621447, -12.868815 ], [ 136.618247, -12.858525 ], [ 136.626427, -12.854485 ], [ 136.630207, -12.863185 ] ] ], [ [ [ 136.627212, -11.740267 ], [ 136.591703, -11.764247 ], [ 136.584563, -11.774847 ], [ 136.589243, -11.782657 ], [ 136.579823, -11.788737 ], [ 136.511514, -11.804927 ], [ 136.515704, -11.786858 ], [ 136.534313, -11.776627 ], [ 136.533783, -11.760238 ], [ 136.546833, -11.771687 ], [ 136.545153, -11.780907 ], [ 136.559083, -11.780987 ], [ 136.557623, -11.767427 ], [ 136.572103, -11.778677 ], [ 136.565103, -11.760777 ], [ 136.587683, -11.764577 ], [ 136.587253, -11.756327 ], [ 136.578653, -11.755057 ], [ 136.587512, -11.744117 ], [ 136.609632, -11.751297 ], [ 136.614942, -11.737757 ], [ 136.627212, -11.740267 ] ] ], [ [ [ 136.617327, -15.555366 ], [ 136.604837, -15.560876 ], [ 136.596507, -15.581297 ], [ 136.604807, -15.615197 ], [ 136.598967, -15.620047 ], [ 136.605017, -15.623787 ], [ 136.594287, -15.626017 ], [ 136.589687, -15.645317 ], [ 136.570317, -15.649338 ], [ 136.550887, -15.639868 ], [ 136.539177, -15.653768 ], [ 136.522848, -15.654398 ], [ 136.494748, -15.643548 ], [ 136.513388, -15.622628 ], [ 136.504508, -15.592098 ], [ 136.520058, -15.576227 ], [ 136.522078, -15.563017 ], [ 136.511068, -15.544567 ], [ 136.525658, -15.538397 ], [ 136.525328, -15.530947 ], [ 136.566817, -15.530606 ], [ 136.578647, -15.510876 ], [ 136.610417, -15.523836 ], [ 136.617327, -15.555366 ] ] ], [ [ [ 136.602557, -13.657002 ], [ 136.591257, -13.667532 ], [ 136.575547, -13.667042 ], [ 136.586297, -13.653812 ], [ 136.602557, -13.657002 ] ] ], [ [ [ 136.584137, -13.723062 ], [ 136.574597, -13.729862 ], [ 136.569678, -13.724392 ], [ 136.584137, -13.723062 ] ] ], [ [ [ 136.579127, -13.775322 ], [ 136.573927, -13.787252 ], [ 136.572087, -13.773762 ], [ 136.579127, -13.775322 ] ] ], [ [ [ 136.541648, -13.771392 ], [ 136.520229, -13.792622 ], [ 136.499300, -13.782973 ], [ 136.490400, -13.759243 ], [ 136.469211, -13.746533 ], [ 136.471130, -13.720553 ], [ 136.495180, -13.713383 ], [ 136.501160, -13.720553 ], [ 136.514589, -13.718563 ], [ 136.518029, -13.710003 ], [ 136.509829, -13.698513 ], [ 136.530929, -13.703463 ], [ 136.538558, -13.738902 ], [ 136.531719, -13.752282 ], [ 136.541648, -13.771392 ] ] ], [ [ [ 136.499804, -11.797268 ], [ 136.491224, -11.816828 ], [ 136.499824, -11.818508 ], [ 136.477945, -11.846658 ], [ 136.486245, -11.884157 ], [ 136.479145, -11.898748 ], [ 136.464126, -11.904068 ], [ 136.468366, -11.896948 ], [ 136.457885, -11.889858 ], [ 136.469715, -11.876498 ], [ 136.460535, -11.866558 ], [ 136.473945, -11.858868 ], [ 136.470835, -11.841468 ], [ 136.464525, -11.841708 ], [ 136.479874, -11.819098 ], [ 136.477444, -11.801248 ], [ 136.499804, -11.797268 ] ] ], [ [ [ 136.473819, -11.467970 ], [ 136.461700, -11.498590 ], [ 136.466060, -11.505260 ], [ 136.449010, -11.531930 ], [ 136.425871, -11.536690 ], [ 136.427131, -11.546520 ], [ 136.409031, -11.543930 ], [ 136.404221, -11.554670 ], [ 136.374201, -11.565640 ], [ 136.366511, -11.534690 ], [ 136.381191, -11.550390 ], [ 136.386101, -11.525420 ], [ 136.400881, -11.521790 ], [ 136.402371, -11.527330 ], [ 136.421840, -11.512970 ], [ 136.430190, -11.490930 ], [ 136.446570, -11.494310 ], [ 136.456289, -11.473740 ], [ 136.473819, -11.467970 ] ] ], [ [ [ 136.459196, -11.904748 ], [ 136.453816, -11.917408 ], [ 136.434886, -11.919348 ], [ 136.457006, -11.897068 ], [ 136.459196, -11.904748 ] ] ], [ [ [ 136.431975, -11.879018 ], [ 136.430276, -11.894948 ], [ 136.408816, -11.893608 ], [ 136.404576, -11.902198 ], [ 136.385996, -11.906609 ], [ 136.366946, -11.902899 ], [ 136.398486, -11.889768 ], [ 136.396416, -11.878018 ], [ 136.409726, -11.878468 ], [ 136.408095, -11.855188 ], [ 136.418555, -11.874048 ], [ 136.426115, -11.865578 ], [ 136.431975, -11.879018 ] ] ], [ [ [ 136.419932, -13.631644 ], [ 136.396723, -13.627855 ], [ 136.400772, -13.620805 ], [ 136.417072, -13.621805 ], [ 136.419932, -13.631644 ] ] ], [ [ [ 136.400763, -13.714154 ], [ 136.384133, -13.711174 ], [ 136.380243, -13.694565 ], [ 136.400763, -13.714154 ] ] ], [ [ [ 136.383432, -13.313576 ], [ 136.374872, -13.319426 ], [ 136.369122, -13.313306 ], [ 136.383432, -13.313576 ] ] ], [ [ [ 136.377082, -11.583490 ], [ 136.365052, -11.597960 ], [ 136.355422, -11.594350 ], [ 136.337662, -11.605880 ], [ 136.332172, -11.623510 ], [ 136.316692, -11.617520 ], [ 136.296873, -11.641590 ], [ 136.289763, -11.622280 ], [ 136.264663, -11.621041 ], [ 136.256643, -11.632671 ], [ 136.270163, -11.627251 ], [ 136.272233, -11.639000 ], [ 136.261463, -11.662160 ], [ 136.230733, -11.668041 ], [ 136.231193, -11.655611 ], [ 136.223743, -11.652901 ], [ 136.213543, -11.659111 ], [ 136.214343, -11.674141 ], [ 136.203913, -11.665891 ], [ 136.172494, -11.694251 ], [ 136.159534, -11.693002 ], [ 136.163784, -11.678542 ], [ 136.180864, -11.675151 ], [ 136.168143, -11.656512 ], [ 136.169523, -11.641032 ], [ 136.207583, -11.656521 ], [ 136.209983, -11.641831 ], [ 136.230733, -11.645671 ], [ 136.232913, -11.628271 ], [ 136.223513, -11.618331 ], [ 136.242543, -11.620251 ], [ 136.239793, -11.600361 ], [ 136.265112, -11.572561 ], [ 136.270962, -11.585331 ], [ 136.280012, -11.582961 ], [ 136.281282, -11.603181 ], [ 136.315092, -11.603850 ], [ 136.314172, -11.592780 ], [ 136.296752, -11.591881 ], [ 136.295482, -11.580131 ], [ 136.308892, -11.570861 ], [ 136.321042, -11.585770 ], [ 136.340642, -11.588710 ], [ 136.338342, -11.579550 ], [ 136.348432, -11.577290 ], [ 136.345671, -11.563400 ], [ 136.358161, -11.560110 ], [ 136.360791, -11.549490 ], [ 136.371681, -11.565530 ], [ 136.369062, -11.580670 ], [ 136.377082, -11.583490 ] ] ], [ [ [ 136.373053, -13.825564 ], [ 136.368853, -13.841814 ], [ 136.335423, -13.843754 ], [ 136.354713, -13.810264 ], [ 136.367083, -13.811544 ], [ 136.373053, -13.825564 ] ] ], [ [ [ 136.335427, -11.958279 ], [ 136.323147, -11.961219 ], [ 136.332897, -11.945279 ], [ 136.335427, -11.958279 ] ] ], [ [ [ 136.147129, -12.053861 ], [ 136.140308, -12.038161 ], [ 136.131358, -12.039642 ], [ 136.132938, -12.025741 ], [ 136.145798, -12.027181 ], [ 136.146278, -12.037691 ], [ 136.155458, -12.041071 ], [ 136.172658, -12.029951 ], [ 136.171478, -12.013221 ], [ 136.185398, -12.029141 ], [ 136.192508, -12.027091 ], [ 136.189238, -12.000751 ], [ 136.198548, -12.006161 ], [ 136.202307, -11.996161 ], [ 136.207848, -12.008171 ], [ 136.199848, -12.021981 ], [ 136.217628, -12.035931 ], [ 136.256157, -12.006030 ], [ 136.271527, -12.002380 ], [ 136.281837, -11.975240 ], [ 136.313057, -11.974099 ], [ 136.304337, -11.993430 ], [ 136.312377, -11.985739 ], [ 136.317197, -11.992519 ], [ 136.310567, -12.010760 ], [ 136.277578, -12.034810 ], [ 136.197738, -12.060081 ], [ 136.194678, -12.076601 ], [ 136.178028, -12.076861 ], [ 136.161018, -12.065591 ], [ 136.128318, -12.073682 ], [ 136.118308, -12.061262 ], [ 136.119438, -12.050862 ], [ 136.138168, -12.060541 ], [ 136.147129, -12.053861 ] ] ], [ [ [ 136.301774, -13.734425 ], [ 136.266165, -13.737465 ], [ 136.253875, -13.747706 ], [ 136.254875, -13.759685 ], [ 136.276385, -13.756365 ], [ 136.275505, -13.777935 ], [ 136.283685, -13.787005 ], [ 136.273495, -13.793175 ], [ 136.259995, -13.784215 ], [ 136.254635, -13.832085 ], [ 136.244675, -13.838445 ], [ 136.247865, -13.850025 ], [ 136.199396, -13.853816 ], [ 136.211186, -13.824146 ], [ 136.189086, -13.794806 ], [ 136.192176, -13.773396 ], [ 136.185656, -13.768176 ], [ 136.150076, -13.776706 ], [ 136.144727, -13.785386 ], [ 136.157616, -13.799886 ], [ 136.155246, -13.816826 ], [ 136.169226, -13.820606 ], [ 136.168246, -13.834606 ], [ 136.127887, -13.835816 ], [ 136.105647, -13.815847 ], [ 136.119807, -13.787807 ], [ 136.109777, -13.764347 ], [ 136.112917, -13.731267 ], [ 136.122546, -13.722267 ], [ 136.127966, -13.736357 ], [ 136.139486, -13.735657 ], [ 136.145216, -13.747427 ], [ 136.173646, -13.748326 ], [ 136.181666, -13.736266 ], [ 136.173616, -13.727426 ], [ 136.180896, -13.718276 ], [ 136.173686, -13.707096 ], [ 136.187466, -13.699696 ], [ 136.192506, -13.679606 ], [ 136.181396, -13.677657 ], [ 136.199615, -13.665286 ], [ 136.221805, -13.662426 ], [ 136.254355, -13.673716 ], [ 136.252325, -13.693026 ], [ 136.266655, -13.691946 ], [ 136.274005, -13.705526 ], [ 136.292494, -13.707505 ], [ 136.301774, -13.734425 ] ] ], [ [ [ 136.272863, -13.460176 ], [ 136.267344, -13.466816 ], [ 136.251414, -13.453667 ], [ 136.244334, -13.461887 ], [ 136.238744, -13.442667 ], [ 136.248234, -13.435917 ], [ 136.272863, -13.460176 ] ] ], [ [ [ 136.248265, -13.594626 ], [ 136.235535, -13.603056 ], [ 136.225165, -13.600656 ], [ 136.219295, -13.588427 ], [ 136.236365, -13.594816 ], [ 136.231555, -13.585536 ], [ 136.237355, -13.577536 ], [ 136.248265, -13.594626 ] ] ], [ [ [ 136.209983, -11.634031 ], [ 136.207923, -11.641261 ], [ 136.195433, -11.629851 ], [ 136.193373, -11.613802 ], [ 136.205063, -11.615271 ], [ 136.209983, -11.634031 ] ] ], [ [ [ 136.205914, -13.454747 ], [ 136.194194, -13.472547 ], [ 136.181294, -13.463577 ], [ 136.170764, -13.468507 ], [ 136.165504, -13.485317 ], [ 136.151024, -13.468317 ], [ 136.142125, -13.470317 ], [ 136.143565, -13.487157 ], [ 136.149145, -13.495327 ], [ 136.156245, -13.491267 ], [ 136.167725, -13.509837 ], [ 136.165015, -13.523947 ], [ 136.155105, -13.518717 ], [ 136.149185, -13.525017 ], [ 136.149985, -13.557897 ], [ 136.140525, -13.564187 ], [ 136.126615, -13.543807 ], [ 136.150055, -13.511017 ], [ 136.139135, -13.498097 ], [ 136.126935, -13.503537 ], [ 136.132125, -13.488017 ], [ 136.121755, -13.482207 ], [ 136.135964, -13.452557 ], [ 136.130404, -13.428477 ], [ 136.141754, -13.419147 ], [ 136.127034, -13.374578 ], [ 136.089224, -13.364708 ], [ 136.092594, -13.358278 ], [ 136.115214, -13.357588 ], [ 136.140784, -13.386437 ], [ 136.150504, -13.384667 ], [ 136.161844, -13.417417 ], [ 136.180394, -13.426297 ], [ 136.177114, -13.437577 ], [ 136.205914, -13.454747 ] ] ], [ [ [ 136.155810, -12.189161 ], [ 136.113850, -12.199192 ], [ 136.104420, -12.189712 ], [ 136.121600, -12.167972 ], [ 136.129890, -12.177682 ], [ 136.147790, -12.171311 ], [ 136.155810, -12.189161 ] ] ], [ [ [ 136.155414, -11.696282 ], [ 136.130864, -11.725312 ], [ 136.125254, -11.711182 ], [ 136.140624, -11.697632 ], [ 136.138214, -11.682832 ], [ 136.155414, -11.696282 ] ] ], [ [ [ 136.122792, -11.544183 ], [ 136.108792, -11.567003 ], [ 136.110642, -11.547903 ], [ 136.122792, -11.544183 ] ] ], [ [ [ 136.108895, -13.464088 ], [ 136.106445, -13.471648 ], [ 136.082655, -13.471998 ], [ 136.074755, -13.482588 ], [ 136.082195, -13.443638 ], [ 136.108895, -13.464088 ] ] ], [ [ [ 136.104595, -11.746202 ], [ 136.074655, -11.771272 ], [ 136.077645, -11.752752 ], [ 136.099785, -11.741122 ], [ 136.104595, -11.746202 ] ] ], [ [ [ 136.095613, -13.298418 ], [ 136.091934, -13.321738 ], [ 136.077964, -13.298008 ], [ 136.095613, -13.298418 ] ] ], [ [ [ 136.090453, -11.582703 ], [ 136.079783, -11.604843 ], [ 136.077273, -11.586763 ], [ 136.090453, -11.582703 ] ] ], [ [ [ 136.071371, -12.276932 ], [ 136.048332, -12.310882 ], [ 136.048061, -12.284882 ], [ 136.071371, -12.276932 ] ] ], [ [ [ 136.067733, -11.635683 ], [ 136.062794, -11.646863 ], [ 136.054544, -11.641323 ], [ 136.062573, -11.627993 ], [ 136.067733, -11.635683 ] ] ], [ [ [ 136.056024, -11.653073 ], [ 135.993385, -11.719243 ], [ 135.990645, -11.703993 ], [ 135.981455, -11.714943 ], [ 135.950175, -11.696043 ], [ 135.960175, -11.670513 ], [ 136.004444, -11.650553 ], [ 136.012004, -11.654403 ], [ 136.009834, -11.648413 ], [ 136.024164, -11.639043 ], [ 136.034934, -11.647303 ], [ 136.048924, -11.644253 ], [ 136.056024, -11.653073 ] ] ], [ [ [ 136.050906, -11.786292 ], [ 136.028756, -11.812382 ], [ 136.041156, -11.783802 ], [ 136.050906, -11.786292 ] ] ], [ [ [ 136.047429, -12.101182 ], [ 136.036989, -12.106052 ], [ 136.041269, -12.128212 ], [ 136.032549, -12.135683 ], [ 136.028000, -12.159433 ], [ 136.026079, -12.103583 ], [ 136.035589, -12.092602 ], [ 136.047429, -12.101182 ] ] ], [ [ [ 135.992587, -11.851112 ], [ 135.980657, -11.856643 ], [ 135.961817, -11.879783 ], [ 135.956867, -11.898993 ], [ 135.945968, -11.904633 ], [ 135.942087, -11.879653 ], [ 135.982267, -11.848053 ], [ 135.992587, -11.851112 ] ] ], [ [ [ 135.978115, -11.737083 ], [ 135.960546, -11.760233 ], [ 135.940016, -11.763943 ], [ 135.937276, -11.749253 ], [ 135.941186, -11.741003 ], [ 135.952426, -11.742153 ], [ 135.952666, -11.732653 ], [ 135.975595, -11.731323 ], [ 135.978115, -11.737083 ] ] ], [ [ [ 135.975744, -13.343869 ], [ 135.961334, -13.321380 ], [ 135.971894, -13.327589 ], [ 135.975744, -13.343869 ] ] ], [ [ [ 135.735321, -11.936628 ], [ 135.760508, -11.912655 ], [ 135.781288, -11.909634 ], [ 135.830238, -11.860994 ], [ 135.832978, -11.870264 ], [ 135.835087, -11.837614 ], [ 135.853777, -11.848264 ], [ 135.871577, -11.832464 ], [ 135.883537, -11.804114 ], [ 135.900167, -11.808203 ], [ 135.903737, -11.793853 ], [ 135.888937, -11.803214 ], [ 135.885507, -11.792134 ], [ 135.866017, -11.782734 ], [ 135.864886, -11.767594 ], [ 135.876486, -11.755624 ], [ 135.889326, -11.762194 ], [ 135.907106, -11.757243 ], [ 135.909846, -11.768203 ], [ 135.928196, -11.775003 ], [ 135.937917, -11.802593 ], [ 135.907837, -11.823573 ], [ 135.900697, -11.851473 ], [ 135.857988, -11.878434 ], [ 135.797619, -11.964684 ], [ 135.776019, -11.976524 ], [ 135.741819, -11.975565 ], [ 135.734859, -12.001675 ], [ 135.637070, -12.017875 ], [ 135.605380, -12.032916 ], [ 135.592060, -12.055526 ], [ 135.564621, -12.069766 ], [ 135.564390, -12.056996 ], [ 135.554180, -12.048396 ], [ 135.564727, -12.031247 ], [ 135.563140, -12.008376 ], [ 135.585240, -11.980006 ], [ 135.588819, -11.968496 ], [ 135.581489, -11.961246 ], [ 135.594139, -11.950766 ], [ 135.605259, -11.960846 ], [ 135.618799, -11.959746 ], [ 135.615569, -11.970466 ], [ 135.632079, -11.975025 ], [ 135.656779, -11.964905 ], [ 135.669789, -11.945945 ], [ 135.666829, -11.935655 ], [ 135.735321, -11.936628 ] ] ], [ [ [ 135.768161, -14.875195 ], [ 135.764091, -14.901775 ], [ 135.732112, -14.892195 ], [ 135.707962, -14.912915 ], [ 135.686912, -14.903775 ], [ 135.716892, -14.882165 ], [ 135.721002, -14.860435 ], [ 135.709522, -14.851966 ], [ 135.725882, -14.834766 ], [ 135.747502, -14.836555 ], [ 135.759322, -14.847655 ], [ 135.768161, -14.875195 ] ] ], [ [ [ 135.735122, -14.287987 ], [ 135.732922, -14.295087 ], [ 135.728052, -14.291247 ], [ 135.735122, -14.287987 ] ] ], [ [ [ 135.630353, -14.496197 ], [ 135.607973, -14.516337 ], [ 135.603083, -14.490337 ], [ 135.624893, -14.488407 ], [ 135.630353, -14.496197 ] ] ], [ [ [ 135.169809, -11.702139 ], [ 135.167609, -11.709249 ], [ 135.156499, -11.705709 ], [ 135.150139, -11.687599 ], [ 135.157139, -11.686159 ], [ 135.169809, -11.702139 ] ] ], [ [ [ 135.122481, -11.927419 ], [ 135.107501, -11.942279 ], [ 135.088911, -11.941189 ], [ 135.056951, -11.954510 ], [ 135.047021, -11.940680 ], [ 135.057091, -11.919250 ], [ 135.082701, -11.916079 ], [ 135.122481, -11.927419 ] ] ], [ [ [ 135.002893, -12.091410 ], [ 134.989573, -12.093830 ], [ 134.976433, -12.065690 ], [ 134.997853, -12.072270 ], [ 135.002893, -12.091410 ] ] ], [ [ [ 134.990602, -12.035250 ], [ 134.958853, -12.053080 ], [ 134.960463, -12.064600 ], [ 134.944023, -12.062610 ], [ 134.932823, -12.044281 ], [ 134.910913, -12.033971 ], [ 134.908513, -12.023371 ], [ 134.954352, -12.014230 ], [ 134.990602, -12.035250 ] ] ], [ [ [ 134.959263, -12.083150 ], [ 134.956623, -12.094940 ], [ 134.951433, -12.093060 ], [ 134.942153, -12.070990 ], [ 134.952263, -12.071230 ], [ 134.959263, -12.083150 ] ] ], [ [ [ 134.931963, -12.061930 ], [ 134.925893, -12.064361 ], [ 134.917413, -12.054151 ], [ 134.924743, -12.051931 ], [ 134.931963, -12.061930 ] ] ], [ [ [ 134.929253, -12.090670 ], [ 134.904654, -12.137371 ], [ 134.869064, -12.125941 ], [ 134.874954, -12.117751 ], [ 134.863734, -12.109031 ], [ 134.866133, -12.070681 ], [ 134.847613, -12.042931 ], [ 134.880283, -12.061391 ], [ 134.906383, -12.065451 ], [ 134.929253, -12.090670 ] ] ], [ [ [ 134.865363, -12.025011 ], [ 134.851123, -12.037691 ], [ 134.826853, -12.020282 ], [ 134.839813, -12.006591 ], [ 134.859983, -12.014661 ], [ 134.865363, -12.025011 ] ] ], [ [ [ 134.831323, -12.044541 ], [ 134.798153, -12.033082 ], [ 134.798003, -12.016802 ], [ 134.809833, -12.016702 ], [ 134.831323, -12.044541 ] ] ], [ [ [ 134.222104, -11.953928 ], [ 134.217524, -11.963648 ], [ 134.207884, -11.962188 ], [ 134.222104, -11.953928 ] ] ], [ [ [ 134.185286, -12.096108 ], [ 134.172076, -12.112479 ], [ 134.166766, -12.107199 ], [ 134.172666, -12.089399 ], [ 134.182816, -12.086969 ], [ 134.185286, -12.096108 ] ] ], [ [ [ 133.493357, -11.511193 ], [ 133.491077, -11.519253 ], [ 133.434468, -11.505993 ], [ 133.416458, -11.526773 ], [ 133.383088, -11.543123 ], [ 133.401578, -11.506193 ], [ 133.390018, -11.488443 ], [ 133.423588, -11.490613 ], [ 133.466588, -11.464312 ], [ 133.493357, -11.511193 ] ] ], [ [ [ 133.481727, -11.615863 ], [ 133.480007, -11.623213 ], [ 133.446647, -11.617084 ], [ 133.426567, -11.629274 ], [ 133.421377, -11.645304 ], [ 133.415157, -11.625234 ], [ 133.388328, -11.633404 ], [ 133.402337, -11.659764 ], [ 133.396017, -11.673544 ], [ 133.370208, -11.681545 ], [ 133.358758, -11.664915 ], [ 133.364858, -11.642774 ], [ 133.349518, -11.623434 ], [ 133.392998, -11.603254 ], [ 133.409407, -11.584394 ], [ 133.438987, -11.587923 ], [ 133.441267, -11.599003 ], [ 133.444827, -11.592563 ], [ 133.467187, -11.591333 ], [ 133.481727, -11.615863 ] ] ], [ [ [ 133.016762, -11.067574 ], [ 133.005392, -11.086534 ], [ 132.994182, -11.087524 ], [ 132.977682, -11.043774 ], [ 133.016762, -11.067574 ] ] ], [ [ [ 132.919843, -11.168825 ], [ 132.905323, -11.161225 ], [ 132.904223, -11.150115 ], [ 132.903833, -11.160995 ], [ 132.876693, -11.170075 ], [ 132.871923, -11.156055 ], [ 132.857293, -11.146075 ], [ 132.863263, -11.139545 ], [ 132.876753, -11.146695 ], [ 132.917283, -11.139894 ], [ 132.919843, -11.168825 ] ] ], [ [ [ 132.876663, -11.046594 ], [ 132.870213, -11.060475 ], [ 132.852374, -11.058625 ], [ 132.858583, -11.044854 ], [ 132.876663, -11.046594 ] ] ], [ [ [ 132.832344, -10.973844 ], [ 132.825534, -10.998114 ], [ 132.819094, -10.967934 ], [ 132.830764, -10.967294 ], [ 132.832344, -10.973844 ] ] ], [ [ [ 132.803154, -11.388587 ], [ 132.798554, -11.395017 ], [ 132.780134, -11.389427 ], [ 132.775364, -11.375857 ], [ 132.803154, -11.388587 ] ] ], [ [ [ 132.733055, -11.285586 ], [ 132.730725, -11.295746 ], [ 132.719755, -11.289386 ], [ 132.733055, -11.285586 ] ] ], [ [ [ 132.681965, -11.188286 ], [ 132.660375, -11.211146 ], [ 132.643096, -11.210186 ], [ 132.659535, -11.187756 ], [ 132.681965, -11.188286 ] ] ], [ [ [ 132.587027, -10.987207 ], [ 132.579156, -11.007336 ], [ 132.602336, -11.117766 ], [ 132.614416, -11.129726 ], [ 132.602366, -11.142846 ], [ 132.587846, -11.139406 ], [ 132.579996, -11.160046 ], [ 132.587826, -11.176906 ], [ 132.596976, -11.178746 ], [ 132.600436, -11.170286 ], [ 132.624806, -11.172846 ], [ 132.631276, -11.186196 ], [ 132.615146, -11.186146 ], [ 132.602716, -11.204746 ], [ 132.604276, -11.218756 ], [ 132.619216, -11.232136 ], [ 132.619376, -11.284766 ], [ 132.599746, -11.300066 ], [ 132.587976, -11.355817 ], [ 132.584506, -11.336486 ], [ 132.566096, -11.328746 ], [ 132.555176, -11.310746 ], [ 132.543256, -11.252306 ], [ 132.469817, -11.156935 ], [ 132.476377, -11.148946 ], [ 132.491797, -11.155216 ], [ 132.509937, -11.138226 ], [ 132.504607, -11.124426 ], [ 132.513306, -11.092496 ], [ 132.509346, -11.082536 ], [ 132.485687, -11.078386 ], [ 132.462417, -11.032556 ], [ 132.498237, -11.056976 ], [ 132.520776, -11.053556 ], [ 132.527226, -11.042626 ], [ 132.545246, -11.052496 ], [ 132.533626, -11.042986 ], [ 132.545526, -11.042456 ], [ 132.559976, -11.029186 ], [ 132.556756, -10.994316 ], [ 132.564476, -10.979186 ], [ 132.595266, -10.970106 ], [ 132.589966, -10.988976 ], [ 132.587027, -10.987207 ] ] ], [ [ [ 132.462976, -11.621425 ], [ 132.457206, -11.628745 ], [ 132.447386, -11.621024 ], [ 132.462976, -11.621425 ] ] ], [ [ [ 132.421983, -12.116853 ], [ 132.411263, -12.138293 ], [ 132.387504, -12.138923 ], [ 132.350944, -12.108923 ], [ 132.336074, -12.085743 ], [ 132.377534, -12.072953 ], [ 132.401394, -12.076163 ], [ 132.413084, -12.088153 ], [ 132.421983, -12.116853 ] ] ], [ [ [ 132.360224, -12.170493 ], [ 132.352034, -12.188993 ], [ 132.344494, -12.172152 ], [ 132.354064, -12.155233 ], [ 132.360224, -12.170493 ] ] ], [ [ [ 132.339558, -11.524334 ], [ 132.333298, -11.540794 ], [ 132.334678, -11.514484 ], [ 132.339558, -11.524334 ] ] ], [ [ [ 132.324278, -11.581283 ], [ 132.314678, -11.600213 ], [ 132.295728, -11.586683 ], [ 132.303518, -11.563803 ], [ 132.324278, -11.581283 ] ] ], [ [ [ 132.174529, -11.584052 ], [ 132.167879, -11.585152 ], [ 132.170329, -11.576692 ], [ 132.174529, -11.584052 ] ] ], [ [ [ 132.149329, -11.606282 ], [ 132.133970, -11.627202 ], [ 132.111100, -11.620522 ], [ 132.120890, -11.590092 ], [ 132.113640, -11.575942 ], [ 132.121939, -11.564812 ], [ 132.134979, -11.568942 ], [ 132.149329, -11.606282 ] ] ], [ [ [ 131.964890, -11.483821 ], [ 131.953670, -11.486501 ], [ 131.948430, -11.473731 ], [ 131.964890, -11.483821 ] ] ], [ [ [ 130.402355, -11.363409 ], [ 130.401478, -11.367384 ], [ 130.391048, -11.366734 ], [ 130.384008, -11.346304 ], [ 130.398258, -11.318124 ], [ 130.409028, -11.318104 ], [ 130.407079, -11.301731 ], [ 130.404518, -11.301844 ], [ 130.392218, -11.284014 ], [ 130.394438, -11.266885 ], [ 130.388528, -11.274645 ], [ 130.370058, -11.264865 ], [ 130.363498, -11.251205 ], [ 130.372588, -11.170955 ], [ 130.401657, -11.166135 ], [ 130.418417, -11.186005 ], [ 130.412557, -11.174695 ], [ 130.489406, -11.262063 ], [ 130.513736, -11.279143 ], [ 130.499926, -11.271953 ], [ 130.496286, -11.278583 ], [ 130.538775, -11.284413 ], [ 130.553795, -11.266443 ], [ 130.594844, -11.289212 ], [ 130.603774, -11.321361 ], [ 130.594174, -11.322271 ], [ 130.586145, -11.336491 ], [ 130.579515, -11.326841 ], [ 130.586674, -11.342941 ], [ 130.566875, -11.340652 ], [ 130.554585, -11.361012 ], [ 130.556485, -11.383171 ], [ 130.568295, -11.397611 ], [ 130.581324, -11.402441 ], [ 130.601364, -11.386540 ], [ 130.619224, -11.387570 ], [ 130.640283, -11.372460 ], [ 130.641083, -11.356310 ], [ 130.656573, -11.335960 ], [ 130.663063, -11.341430 ], [ 130.657353, -11.400649 ], [ 130.680812, -11.427146 ], [ 130.680792, -11.444928 ], [ 130.701322, -11.441447 ], [ 130.694182, -11.464337 ], [ 130.709841, -11.486466 ], [ 130.703491, -11.494226 ], [ 130.705871, -11.513636 ], [ 130.710511, -11.489066 ], [ 130.721501, -11.507446 ], [ 130.714151, -11.493166 ], [ 130.722781, -11.470286 ], [ 130.755370, -11.479866 ], [ 130.761250, -11.498335 ], [ 130.795000, -11.511095 ], [ 130.809839, -11.525854 ], [ 130.810789, -11.538514 ], [ 130.823969, -11.538364 ], [ 130.791270, -11.491835 ], [ 130.766220, -11.484566 ], [ 130.769430, -11.465726 ], [ 130.755611, -11.459876 ], [ 130.754431, -11.446987 ], [ 130.740141, -11.442487 ], [ 130.733711, -11.427647 ], [ 130.723451, -11.420468 ], [ 130.704998, -11.421863 ], [ 130.705112, -11.423058 ], [ 130.696882, -11.426658 ], [ 130.704562, -11.385318 ], [ 130.733381, -11.386348 ], [ 130.735631, -11.380098 ], [ 130.763031, -11.375528 ], [ 130.772271, -11.364398 ], [ 130.807710, -11.364677 ], [ 130.848272, -11.354036 ], [ 130.897309, -11.308917 ], [ 130.921559, -11.312216 ], [ 130.963688, -11.332685 ], [ 130.951248, -11.334815 ], [ 130.987798, -11.339594 ], [ 130.990237, -11.354544 ], [ 131.031607, -11.367293 ], [ 131.051097, -11.343004 ], [ 131.040937, -11.317754 ], [ 131.071577, -11.303354 ], [ 131.082577, -11.302164 ], [ 131.084017, -11.310534 ], [ 131.091947, -11.303684 ], [ 131.089277, -11.331794 ], [ 131.092667, -11.320064 ], [ 131.098827, -11.323824 ], [ 131.095377, -11.305854 ], [ 131.103807, -11.312444 ], [ 131.103037, -11.306114 ], [ 131.110817, -11.308194 ], [ 131.087617, -11.300384 ], [ 131.111537, -11.280295 ], [ 131.112677, -11.259065 ], [ 131.147747, -11.249875 ], [ 131.165636, -11.265555 ], [ 131.163736, -11.278084 ], [ 131.172166, -11.286364 ], [ 131.168366, -11.313453 ], [ 131.187596, -11.334903 ], [ 131.199736, -11.311803 ], [ 131.208096, -11.310943 ], [ 131.209336, -11.344062 ], [ 131.227736, -11.305483 ], [ 131.222046, -11.313953 ], [ 131.215336, -11.304763 ], [ 131.190736, -11.303063 ], [ 131.202966, -11.284264 ], [ 131.197776, -11.269554 ], [ 131.204016, -11.236045 ], [ 131.247476, -11.217845 ], [ 131.250796, -11.193915 ], [ 131.258026, -11.190445 ], [ 131.269426, -11.197515 ], [ 131.260306, -11.210955 ], [ 131.277136, -11.189525 ], [ 131.279456, -11.204275 ], [ 131.288206, -11.193865 ], [ 131.315275, -11.228214 ], [ 131.297275, -11.258964 ], [ 131.296205, -11.268113 ], [ 131.305105, -11.274583 ], [ 131.324455, -11.272983 ], [ 131.320425, -11.276693 ], [ 131.328085, -11.279213 ], [ 131.328875, -11.255953 ], [ 131.353275, -11.249963 ], [ 131.374955, -11.264283 ], [ 131.370865, -11.283693 ], [ 131.380814, -11.298202 ], [ 131.400244, -11.291162 ], [ 131.395544, -11.267083 ], [ 131.401304, -11.258303 ], [ 131.435824, -11.265902 ], [ 131.442604, -11.286712 ], [ 131.429524, -11.295462 ], [ 131.429714, -11.304052 ], [ 131.462684, -11.328011 ], [ 131.455154, -11.351361 ], [ 131.470984, -11.370391 ], [ 131.465084, -11.385731 ], [ 131.481333, -11.398830 ], [ 131.467654, -11.401880 ], [ 131.473474, -11.405300 ], [ 131.456734, -11.412120 ], [ 131.464174, -11.412490 ], [ 131.456474, -11.419570 ], [ 131.481613, -11.402050 ], [ 131.487973, -11.387170 ], [ 131.500233, -11.383610 ], [ 131.510783, -11.396060 ], [ 131.524003, -11.394090 ], [ 131.537093, -11.413220 ], [ 131.532403, -11.424710 ], [ 131.543133, -11.452200 ], [ 131.527003, -11.476300 ], [ 131.508076, -11.465768 ], [ 131.486173, -11.474610 ], [ 131.484023, -11.487660 ], [ 131.464973, -11.497860 ], [ 131.454473, -11.546599 ], [ 131.464443, -11.572499 ], [ 131.455253, -11.580939 ], [ 131.470333, -11.586739 ], [ 131.469803, -11.608099 ], [ 131.431094, -11.605349 ], [ 131.426024, -11.613679 ], [ 131.402844, -11.588839 ], [ 131.369105, -11.580943 ], [ 131.379134, -11.592039 ], [ 131.367504, -11.605539 ], [ 131.359844, -11.603359 ], [ 131.362904, -11.609469 ], [ 131.370134, -11.603519 ], [ 131.370584, -11.609729 ], [ 131.349674, -11.649959 ], [ 131.336994, -11.658149 ], [ 131.333964, -11.679259 ], [ 131.280395, -11.739789 ], [ 131.254055, -11.734479 ], [ 131.181905, -11.791749 ], [ 131.081916, -11.836209 ], [ 131.048296, -11.881559 ], [ 131.018256, -11.885999 ], [ 130.989977, -11.906809 ], [ 130.998026, -11.908069 ], [ 130.976437, -11.933150 ], [ 130.949287, -11.940100 ], [ 130.916467, -11.895440 ], [ 130.919377, -11.900450 ], [ 130.862288, -11.854651 ], [ 130.801888, -11.845062 ], [ 130.724960, -11.802673 ], [ 130.686341, -11.796444 ], [ 130.675321, -11.780444 ], [ 130.679811, -11.761714 ], [ 130.641142, -11.747565 ], [ 130.622693, -11.723376 ], [ 130.597543, -11.717226 ], [ 130.590543, -11.702036 ], [ 130.571624, -11.701457 ], [ 130.556354, -11.672427 ], [ 130.529015, -11.679468 ], [ 130.492625, -11.654929 ], [ 130.476466, -11.620629 ], [ 130.478335, -11.592939 ], [ 130.486235, -11.589519 ], [ 130.493805, -11.564078 ], [ 130.487255, -11.547599 ], [ 130.460966, -11.535590 ], [ 130.452086, -11.516740 ], [ 130.431867, -11.502561 ], [ 130.433517, -11.474982 ], [ 130.418217, -11.454912 ], [ 130.425817, -11.425513 ], [ 130.411467, -11.408758 ], [ 130.409498, -11.367254 ], [ 130.402355, -11.363409 ] ], [ [ 131.368928, -11.580902 ], [ 131.355714, -11.577809 ], [ 131.366011, -11.585757 ], [ 131.368928, -11.580902 ] ], [ [ 130.402780, -11.361488 ], [ 130.408338, -11.360024 ], [ 130.404198, -11.355064 ], [ 130.402780, -11.361488 ] ] ], [ [ [ 131.355625, -12.101729 ], [ 131.355314, -12.111099 ], [ 131.345445, -12.111019 ], [ 131.349525, -12.096889 ], [ 131.355625, -12.101729 ] ] ], [ [ [ 131.135234, -12.012368 ], [ 131.111884, -12.023833 ], [ 131.072878, -12.014970 ], [ 131.127138, -12.000961 ], [ 131.135234, -12.012368 ] ] ], [ [ [ 131.126716, -12.059459 ], [ 131.122846, -12.070199 ], [ 131.105986, -12.075329 ], [ 131.061766, -12.069439 ], [ 131.098346, -12.052749 ], [ 131.126716, -12.059459 ] ] ], [ [ [ 131.064796, -12.037579 ], [ 131.062866, -12.046839 ], [ 131.032466, -12.058319 ], [ 131.001917, -12.052389 ], [ 131.039416, -12.031979 ], [ 131.064796, -12.037579 ] ] ], [ [ [ 131.048206, -12.112169 ], [ 131.036536, -12.127899 ], [ 131.012397, -12.118239 ], [ 131.030606, -12.098989 ], [ 131.048206, -12.112169 ] ] ], [ [ [ 130.872399, -12.548151 ], [ 130.863219, -12.560362 ], [ 130.864119, -12.546131 ], [ 130.872399, -12.548151 ] ] ], [ [ [ 130.660881, -11.814464 ], [ 130.646951, -11.821274 ], [ 130.645651, -11.809625 ], [ 130.660881, -11.814464 ] ] ], [ [ [ 130.212679, -11.712187 ], [ 130.206591, -11.724844 ], [ 130.210481, -11.719374 ], [ 130.222311, -11.725224 ], [ 130.220021, -11.730354 ], [ 130.224381, -11.726234 ], [ 130.237231, -11.746623 ], [ 130.235501, -11.723953 ], [ 130.217131, -11.717324 ], [ 130.225961, -11.717194 ], [ 130.229841, -11.703964 ], [ 130.206531, -11.693834 ], [ 130.223001, -11.670414 ], [ 130.229682, -11.686103 ], [ 130.232881, -11.680904 ], [ 130.260930, -11.706833 ], [ 130.283520, -11.698643 ], [ 130.295100, -11.725763 ], [ 130.305919, -11.733012 ], [ 130.293150, -11.692153 ], [ 130.261371, -11.698013 ], [ 130.246301, -11.678614 ], [ 130.258451, -11.675194 ], [ 130.265540, -11.661733 ], [ 130.253521, -11.673284 ], [ 130.236971, -11.661794 ], [ 130.217751, -11.631104 ], [ 130.209861, -11.642644 ], [ 130.191281, -11.642675 ], [ 130.200821, -11.585565 ], [ 130.195271, -11.571935 ], [ 130.185751, -11.572065 ], [ 130.174831, -11.557845 ], [ 130.192021, -11.536685 ], [ 130.195611, -11.516175 ], [ 130.224990, -11.507215 ], [ 130.230610, -11.528555 ], [ 130.242210, -11.534224 ], [ 130.238950, -11.539284 ], [ 130.255310, -11.537304 ], [ 130.261490, -11.571044 ], [ 130.272031, -11.570092 ], [ 130.263130, -11.559364 ], [ 130.267350, -11.546474 ], [ 130.283300, -11.539854 ], [ 130.263320, -11.542754 ], [ 130.260900, -11.527144 ], [ 130.235300, -11.520995 ], [ 130.239490, -11.495115 ], [ 130.233420, -11.497955 ], [ 130.230870, -11.484735 ], [ 130.231590, -11.497845 ], [ 130.208801, -11.511555 ], [ 130.198361, -11.507395 ], [ 130.185121, -11.484475 ], [ 130.156601, -11.491206 ], [ 130.147981, -11.482066 ], [ 130.169141, -11.462726 ], [ 130.180100, -11.429236 ], [ 130.230140, -11.406985 ], [ 130.245189, -11.366615 ], [ 130.238700, -11.388435 ], [ 130.247890, -11.398135 ], [ 130.254829, -11.376545 ], [ 130.251679, -11.346485 ], [ 130.280309, -11.342925 ], [ 130.286429, -11.361215 ], [ 130.286619, -11.343365 ], [ 130.302879, -11.341405 ], [ 130.337428, -11.318615 ], [ 130.340843, -11.324449 ], [ 130.322339, -11.333345 ], [ 130.341763, -11.326022 ], [ 130.343177, -11.328438 ], [ 130.361298, -11.379804 ], [ 130.384278, -11.405284 ], [ 130.385228, -11.418393 ], [ 130.394388, -11.416103 ], [ 130.400138, -11.425023 ], [ 130.403868, -11.447603 ], [ 130.392818, -11.472833 ], [ 130.375188, -11.484063 ], [ 130.380838, -11.494443 ], [ 130.376168, -11.507003 ], [ 130.402397, -11.539932 ], [ 130.429936, -11.549801 ], [ 130.452126, -11.573240 ], [ 130.452576, -11.567020 ], [ 130.463716, -11.575009 ], [ 130.460416, -11.621800 ], [ 130.448726, -11.627150 ], [ 130.464676, -11.629359 ], [ 130.468346, -11.666179 ], [ 130.516895, -11.691238 ], [ 130.556094, -11.692757 ], [ 130.564254, -11.707047 ], [ 130.584873, -11.708887 ], [ 130.592293, -11.730516 ], [ 130.617383, -11.733966 ], [ 130.641115, -11.756842 ], [ 130.612542, -11.821155 ], [ 130.603662, -11.827085 ], [ 130.581643, -11.826936 ], [ 130.570633, -11.810706 ], [ 130.563243, -11.816416 ], [ 130.567773, -11.821046 ], [ 130.545793, -11.819007 ], [ 130.503384, -11.830348 ], [ 130.393117, -11.801420 ], [ 130.367818, -11.780131 ], [ 130.312259, -11.770892 ], [ 130.130813, -11.825185 ], [ 130.064924, -11.818515 ], [ 130.048854, -11.824076 ], [ 130.023794, -11.797326 ], [ 130.020444, -11.778906 ], [ 130.033154, -11.756296 ], [ 130.080754, -11.768806 ], [ 130.061484, -11.750936 ], [ 130.076503, -11.669096 ], [ 130.090043, -11.670996 ], [ 130.122543, -11.707245 ], [ 130.157252, -11.705065 ], [ 130.202311, -11.649434 ], [ 130.214271, -11.664444 ], [ 130.203541, -11.694074 ], [ 130.221691, -11.703864 ], [ 130.213221, -11.714954 ], [ 130.212679, -11.712187 ] ], [ [ 130.212108, -11.709274 ], [ 130.211251, -11.704904 ], [ 130.204951, -11.706724 ], [ 130.212108, -11.709274 ] ] ], [ [ [ 130.342921, -11.327712 ], [ 130.341914, -11.325964 ], [ 130.342258, -11.325835 ], [ 130.342921, -11.327712 ] ] ], [ [ [ 130.544335, -12.704475 ], [ 130.535585, -12.709786 ], [ 130.525565, -12.702116 ], [ 130.524044, -12.661775 ], [ 130.499214, -12.645465 ], [ 130.486644, -12.623655 ], [ 130.494903, -12.596405 ], [ 130.484753, -12.580365 ], [ 130.508112, -12.574204 ], [ 130.517302, -12.557594 ], [ 130.521352, -12.589344 ], [ 130.510072, -12.590704 ], [ 130.502953, -12.610255 ], [ 130.511013, -12.617035 ], [ 130.517824, -12.650585 ], [ 130.541664, -12.679845 ], [ 130.544335, -12.704475 ] ] ], [ [ [ 130.434365, -12.579846 ], [ 130.416766, -12.592066 ], [ 130.405366, -12.573876 ], [ 130.420655, -12.563576 ], [ 130.434365, -12.579846 ] ] ], [ [ [ 130.416196, -12.595006 ], [ 130.400667, -12.601807 ], [ 130.391797, -12.587107 ], [ 130.404336, -12.581336 ], [ 130.416196, -12.595006 ] ] ], [ [ [ 130.408387, -12.608127 ], [ 130.401827, -12.615137 ], [ 130.385017, -12.602487 ], [ 130.408387, -12.608127 ] ] ], [ [ [ 130.396427, -12.626567 ], [ 130.386428, -12.643077 ], [ 130.368478, -12.642067 ], [ 130.364898, -12.624997 ], [ 130.370648, -12.619457 ], [ 130.385607, -12.617417 ], [ 130.396427, -12.626567 ] ] ], [ [ [ 130.109606, -13.220099 ], [ 130.097606, -13.221249 ], [ 130.085006, -13.209869 ], [ 130.090966, -13.192789 ], [ 130.101936, -13.194009 ], [ 130.109606, -13.220099 ] ] ], [ [ [ 130.075006, -13.171240 ], [ 130.068106, -13.182440 ], [ 130.047187, -13.175930 ], [ 130.041097, -13.183170 ], [ 130.020437, -13.179820 ], [ 130.018477, -13.111220 ], [ 130.027657, -13.150870 ], [ 130.057656, -13.152060 ], [ 130.075006, -13.171240 ] ] ], [ [ [ 129.732061, -14.804138 ], [ 129.719851, -14.813268 ], [ 129.698121, -14.809508 ], [ 129.670741, -14.784378 ], [ 129.732061, -14.804138 ] ] ] + ] + } + }, + { + "type": "Feature", + "id": 7, + "properties": { + "STATE_CODE": "8", + "NAME_1": "Australian Capital Territory", + "ISO":"AU-ACT" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ [ 149.399284, -35.319175 ], [ 149.352134, -35.351317 ], [ 149.336502, -35.339914 ], [ 149.254815, -35.330079 ], [ 149.207546, -35.345305 ], [ 149.146586, -35.414836 ], [ 149.139052, -35.432543 ], [ 149.155134, -35.436628 ], [ 149.135550, -35.454422 ], [ 149.151279, -35.506926 ], [ 149.131376, -35.554173 ], [ 149.142510, -35.592570 ], [ 149.084514, -35.580594 ], [ 149.078043, -35.586127 ], [ 149.087612, -35.639697 ], [ 149.097495, -35.647313 ], [ 149.095379, -35.679285 ], [ 149.109483, -35.696640 ], [ 149.090716, -35.765600 ], [ 149.101481, -35.803698 ], [ 149.093517, -35.824221 ], [ 149.095682, -35.845716 ], [ 149.064408, -35.874932 ], [ 149.048811, -35.920410 ], [ 149.012198, -35.899697 ], [ 148.959133, -35.895456 ], [ 148.909367, -35.853065 ], [ 148.907065, -35.829563 ], [ 148.886623, -35.810063 ], [ 148.897776, -35.794650 ], [ 148.894887, -35.771654 ], [ 148.903348, -35.757798 ], [ 148.894087, -35.751288 ], [ 148.886633, -35.719136 ], [ 148.877693, -35.714936 ], [ 148.872491, -35.721422 ], [ 148.855652, -35.760874 ], [ 148.856132, -35.753518 ], [ 148.835715, -35.741884 ], [ 148.822423, -35.720900 ], [ 148.791182, -35.703449 ], [ 148.798434, -35.666492 ], [ 148.767495, -35.647323 ], [ 148.783462, -35.628342 ], [ 148.768473, -35.603186 ], [ 148.788758, -35.588179 ], [ 148.773039, -35.568157 ], [ 148.778231, -35.558852 ], [ 148.769231, -35.544096 ], [ 148.772364, -35.529329 ], [ 148.762675, -35.495505 ], [ 148.774354, -35.486003 ], [ 148.767058, -35.465405 ], [ 148.788868, -35.426382 ], [ 148.785764, -35.408748 ], [ 148.796119, -35.406549 ], [ 148.795719, -35.392920 ], [ 148.808702, -35.382373 ], [ 148.793247, -35.339156 ], [ 148.807854, -35.309647 ], [ 149.120902, -35.124517 ], [ 149.138819, -35.128466 ], [ 149.138600, -35.135257 ], [ 149.149637, -35.138669 ], [ 149.146775, -35.144856 ], [ 149.164312, -35.142046 ], [ 149.167696, -35.159881 ], [ 149.189097, -35.165677 ], [ 149.183629, -35.175618 ], [ 149.197037, -35.185499 ], [ 149.189701, -35.203308 ], [ 149.208568, -35.211501 ], [ 149.204883, -35.229549 ], [ 149.214063, -35.219507 ], [ 149.238597, -35.222127 ], [ 149.246790, -35.229217 ], [ 149.234884, -35.242822 ], [ 149.273132, -35.259287 ], [ 149.272048, -35.273644 ], [ 149.315286, -35.276286 ], [ 149.322394, -35.286708 ], [ 149.341384, -35.286648 ], [ 149.361948, -35.308998 ], [ 149.394790, -35.303157 ], [ 149.399284, -35.319175 ] ], [ [ 149.153176, -35.304976 ], [ 149.136510, -35.289256 ], [ 149.122879, -35.286560 ], [ 149.118459, -35.293608 ], [ 149.110274, -35.284577 ], [ 149.114443, -35.280492 ], [ 149.103116, -35.285130 ], [ 149.101406, -35.294277 ], [ 149.099252, -35.285600 ], [ 149.088030, -35.285150 ], [ 149.083012, -35.296961 ], [ 149.071123, -35.298567 ], [ 149.084355, -35.303898 ], [ 149.095399, -35.287391 ], [ 149.101389, -35.301479 ], [ 149.126110, -35.294247 ], [ 149.144619, -35.310156 ], [ 149.153176, -35.304976 ] ] + ] + } + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/austria.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/austria.geojson new file mode 100644 index 000000000000..98ecbefff1b1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/austria.geojson @@ -0,0 +1,15 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "AT-7", "NAME_1": "Tirol" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.708906048803351, 46.736370258232114 ], [ 12.687814998391627, 46.657687939565015 ], [ 12.62821625546327, 46.66210597394938 ], [ 12.548422273560332, 46.659474844676829 ], [ 12.424214927277898, 46.699806540070583 ], [ 12.374798258989214, 46.723018527227339 ], [ 12.35460834340331, 46.775684915877271 ], [ 12.306142163751153, 46.785705936866705 ], [ 12.289024792646087, 46.865910021407046 ], [ 12.27107091505439, 46.884937979501032 ], [ 12.215309947954404, 46.87446771907225 ], [ 12.165533736965445, 46.939001156879343 ], [ 12.135444934530662, 46.957185516982868 ], [ 12.118351563502069, 47.006780453973406 ], [ 12.144589646846239, 47.025616133273651 ], [ 12.202045768383902, 47.027692067819594 ], [ 12.237924613286085, 47.069884004190115 ], [ 12.280957414203254, 47.093264806477933 ], [ 12.342795704847681, 47.109984760288611 ], [ 12.360454539252105, 47.142098997698724 ], [ 12.396701690532645, 47.153515959952031 ], [ 12.462736611250595, 47.145068463698053 ], [ 12.48070043046074, 47.158559641541459 ], [ 12.563556470390875, 47.136739497405685 ], [ 12.5894168444659, 47.125586745956561 ], [ 12.654016066248188, 47.100231353836485 ], [ 12.707697515119014, 47.04914786384203 ], [ 12.752064972756102, 47.025576385234181 ], [ 12.738265931358789, 46.969702989832889 ], [ 12.756752974781406, 46.957325505661281 ], [ 12.783590414308311, 46.940276760811784 ], [ 12.790855801946638, 46.927196188191758 ], [ 12.805634318053574, 46.923313748826722 ], [ 12.819009511450858, 46.917531662989035 ], [ 12.838340668011002, 46.861694242499048 ], [ 12.89278121589817, 46.826521487833858 ], [ 12.90264695172511, 46.823344994904382 ], [ 12.904298041316295, 46.823387790244063 ], [ 12.960670629253963, 46.799363351849763 ], [ 12.928609757041915, 46.764757368349919 ], [ 12.896567448024967, 46.777562323716694 ], [ 12.854022169611744, 46.760884085446307 ], [ 12.83840776878861, 46.75005145771911 ], [ 12.807097813753057, 46.756998308163638 ], [ 12.793001465389452, 46.756055735631648 ], [ 12.745381295751143, 46.748164933018693 ], [ 12.708906048803351, 46.736370258232114 ] ] ], [ [ [ 10.621446193557658, 46.865129833771505 ], [ 10.567670311638754, 46.843126000585762 ], [ 10.466817101807274, 46.855637310325541 ], [ 10.461859818510101, 46.885004131435522 ], [ 10.486513742396113, 46.938512613423626 ], [ 10.453920431976055, 46.952130725004864 ], [ 10.386480665215979, 47.00124676440322 ], [ 10.346141472622726, 46.991333955227006 ], [ 10.294046176153982, 46.920679578794953 ], [ 10.238860001994601, 46.932358485214962 ], [ 10.229100082545589, 46.867460044688201 ], [ 10.142134531334351, 46.851733101393513 ], [ 10.095380369809417, 46.928081230128718 ], [ 10.15696699113046, 46.984473801861363 ], [ 10.131710106273683, 47.030075936519047 ], [ 10.130705085035299, 47.078611625444211 ], [ 10.210157276244534, 47.158306169552667 ], [ 10.208581427535876, 47.172052842700865 ], [ 10.194909802163204, 47.237303714563893 ], [ 10.175515804959819, 47.270835413409714 ], [ 10.229522455336305, 47.271242827350783 ], [ 10.263139502469024, 47.288797313424887 ], [ 10.345967022921542, 47.318229545987649 ], [ 10.39470273530341, 47.377599336820623 ], [ 10.433934189600418, 47.381083261983491 ], [ 10.435717385282741, 47.414262298769295 ], [ 10.467386132281675, 47.449250152438665 ], [ 10.460930568529879, 47.483459764552173 ], [ 10.432896912747138, 47.496085759022996 ], [ 10.451606268660269, 47.556515896045902 ], [ 10.48608214882319, 47.541123345902896 ], [ 10.494940775173941, 47.539821854221032 ], [ 10.52170443832089, 47.535885260290407 ], [ 10.560017708085406, 47.53677717184118 ], [ 10.59512557590957, 47.570458681507723 ], [ 10.675179690462913, 47.556955074243511 ], [ 10.737551244166641, 47.539250193346199 ], [ 10.760934072815889, 47.520315647720899 ], [ 10.887521284279195, 47.538005682489853 ], [ 10.883706183927114, 47.480880951846565 ], [ 10.929652859498093, 47.468751959992069 ], [ 10.980784740135601, 47.430735842040669 ], [ 10.988373470002166, 47.396849160997995 ], [ 11.013671491602462, 47.397086133818576 ], [ 11.0525460169938, 47.396683932248642 ], [ 11.097869829078155, 47.395110510663649 ], [ 11.202656984421157, 47.434609359863913 ], [ 11.219479238422403, 47.398065066527415 ], [ 11.269703523772494, 47.398689996725146 ], [ 11.288177067823016, 47.42777621575619 ], [ 11.333259151212076, 47.449348710557736 ], [ 11.418602198400968, 47.445568640076758 ], [ 11.388716308988093, 47.483158994288885 ], [ 11.446498747299188, 47.507947290876139 ], [ 11.569583796482195, 47.515221277614202 ], [ 11.597829189077459, 47.568573344997141 ], [ 11.655378728105196, 47.58483975499621 ], [ 11.772244891055076, 47.591119234292037 ], [ 11.844538310587, 47.583021521101628 ], [ 11.891469151198377, 47.609162623495457 ], [ 12.009937678897424, 47.623915322063155 ], [ 12.079529921310117, 47.610458673618197 ], [ 12.146629686331011, 47.609353336492454 ], [ 12.175320951558362, 47.601603422593961 ], [ 12.195595985396162, 47.642854074322138 ], [ 12.184026980293938, 47.658044417183021 ], [ 12.180651314626534, 47.701200627623351 ], [ 12.240330224610581, 47.692384677038064 ], [ 12.254361683792434, 47.679812739802003 ], [ 12.324310078465027, 47.696081479509253 ], [ 12.337174430567121, 47.6910781928758 ], [ 12.437252407684086, 47.695932457970244 ], [ 12.437942165400903, 47.674603652422483 ], [ 12.496355889630921, 47.62581036913322 ], [ 12.522425020996293, 47.631461509939584 ], [ 12.572213000152678, 47.633027342837437 ], [ 12.571713210946912, 47.605701242175037 ], [ 12.650732825987651, 47.588739771087816 ], [ 12.62535195417081, 47.550258426215443 ], [ 12.651318336612611, 47.537482285607737 ], [ 12.662316157261458, 47.506781030711906 ], [ 12.696777382304528, 47.47859809099986 ], [ 12.629463336415112, 47.465777514603346 ], [ 12.629478377239565, 47.432807492676346 ], [ 12.621757739986972, 47.423227670102513 ], [ 12.575794307927712, 47.39321028987878 ], [ 12.542482549397553, 47.398754069956937 ], [ 12.503274276420276, 47.394842678075356 ], [ 12.476154094388688, 47.368943885527884 ], [ 12.492393544557732, 47.338123300740122 ], [ 12.475499766426189, 47.327107745894352 ], [ 12.37177067497208, 47.312022624514228 ], [ 12.332437254976149, 47.329231610715048 ], [ 12.29368730421171, 47.328803644915268 ], [ 12.261297429832275, 47.302924956931115 ], [ 12.251875731910911, 47.30867861955565 ], [ 12.216161380621619, 47.311844938364253 ], [ 12.161804090720976, 47.302255484213141 ], [ 12.11172562405633, 47.307158890850715 ], [ 12.075754696908119, 47.275895220457372 ], [ 12.107262767387029, 47.241104643341593 ], [ 12.079968912093101, 47.196434418696505 ], [ 12.090447365445778, 47.146768243155321 ], [ 12.133192576151718, 47.08138357679902 ], [ 12.017121405985966, 47.047784113320539 ], [ 11.976302948360514, 47.050717568225359 ], [ 11.871221080459375, 47.010795853416134 ], [ 11.761502559228102, 46.973467443400445 ], [ 11.708564156894194, 46.993966406824491 ], [ 11.661565928376545, 46.992654081443881 ], [ 11.624373361988789, 47.014017249269244 ], [ 11.587074360847559, 47.006113145263335 ], [ 11.535699669879767, 46.984799135095898 ], [ 11.475939460574509, 47.011696971610696 ], [ 11.43205135015384, 46.974812456332245 ], [ 11.398692874663546, 46.965694985027227 ], [ 11.356262359666182, 46.990917032345664 ], [ 11.317672499645997, 46.993090697138044 ], [ 11.24645582377226, 46.974899134176773 ], [ 11.161450501034402, 46.966442235048454 ], [ 11.152137670378973, 46.934743352294333 ], [ 11.112563878850608, 46.932207926752689 ], [ 11.069056213028512, 46.856722011744438 ], [ 11.080594534498601, 46.823250105580449 ], [ 11.033221878969464, 46.794609214207469 ], [ 11.01914495199923, 46.766628283878461 ], [ 10.915267525310016, 46.775697528889637 ], [ 10.880113888722828, 46.763567726594523 ], [ 10.793090242425658, 46.792036941378946 ], [ 10.761011171375584, 46.823350473631386 ], [ 10.69127276896304, 46.852871245993882 ], [ 10.664533079139378, 46.876212266836106 ], [ 10.621446193557658, 46.865129833771505 ] ] ], [ [ [ 10.451606268660269, 47.556515896045902 ], [ 10.432116140622689, 47.584343628911718 ], [ 10.466845068726881, 47.587848166596359 ], [ 10.451606268660269, 47.556515896045902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "AT-8", "NAME_1": "Vorarlberg" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.131710106273683, 47.030075936519047 ], [ 10.15696699113046, 46.984473801861363 ], [ 10.095380369809417, 46.928081230128718 ], [ 10.142134531334351, 46.851733101393513 ], [ 10.084607822663017, 46.861924493419814 ], [ 9.975045857897188, 46.916613771942117 ], [ 9.943300382180304, 46.913080462351459 ], [ 9.873472458173548, 46.935859752281303 ], [ 9.88595733270574, 47.001457013282788 ], [ 9.790312411237773, 47.031976399522129 ], [ 9.705314358299798, 47.05355071067595 ], [ 9.674611092605879, 47.062131072561407 ], [ 9.604234693994679, 47.061498979752542 ], [ 9.63155980599962, 47.101816669778543 ], [ 9.617737867746301, 47.15236918432538 ], [ 9.570298845536581, 47.176429453694581 ], [ 9.581966650939734, 47.205294195450413 ], [ 9.527906274165764, 47.271304465341942 ], [ 9.556383781335274, 47.300914658433349 ], [ 9.585446891637062, 47.318267282637301 ], [ 9.593511040008812, 47.338242925141124 ], [ 9.616832692245142, 47.363157550504276 ], [ 9.646704609417956, 47.368168576420665 ], [ 9.670737857835704, 47.392013177367048 ], [ 9.649039609013167, 47.409514420679024 ], [ 9.656608880410563, 47.452104563706278 ], [ 9.604408048327947, 47.471050560493083 ], [ 9.590053123568174, 47.466696175265596 ], [ 9.559020177329709, 47.49735265730645 ], [ 9.575891483429718, 47.508236233244844 ], [ 9.613782411769771, 47.514851178860454 ], [ 9.637723710860172, 47.51902358905906 ], [ 9.665000937735615, 47.523770376211125 ], [ 9.729273360385836, 47.534447683796337 ], [ 9.752841469113573, 47.572885347724551 ], [ 9.773109717594943, 47.594125549008055 ], [ 9.817471623702062, 47.588360957551934 ], [ 9.826928505743602, 47.545253435636837 ], [ 9.871652054892266, 47.529259714504448 ], [ 9.877395933603122, 47.54863554637214 ], [ 9.962190659269536, 47.523721220675526 ], [ 9.996688566113756, 47.483737773966546 ], [ 10.034595458307908, 47.489898611763174 ], [ 10.101056495934124, 47.431225571346957 ], [ 10.070795318012706, 47.415152186074017 ], [ 10.094800257756095, 47.360579545574325 ], [ 10.097013498573132, 47.355482519485925 ], [ 10.116509651368061, 47.376335070568906 ], [ 10.166753684278076, 47.372021805091897 ], [ 10.192151316663089, 47.390089741308948 ], [ 10.234189635234534, 47.374376086473859 ], [ 10.169250645198016, 47.279800065458026 ], [ 10.175515804959819, 47.270835413409714 ], [ 10.194909802163204, 47.237303714563893 ], [ 10.208581427535876, 47.172052842700865 ], [ 10.210157276244534, 47.158306169552667 ], [ 10.130705085035299, 47.078611625444211 ], [ 10.131710106273683, 47.030075936519047 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "AT-9", "NAME_1": "Wien" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.362860914712996, 48.129367403838152 ], [ 16.309429782935833, 48.120227143062479 ], [ 16.29577743156106, 48.126017999864594 ], [ 16.226346919323102, 48.127846987362993 ], [ 16.222751181809326, 48.126165367516812 ], [ 16.215319946458333, 48.128762607027817 ], [ 16.220427352575459, 48.153878432240852 ], [ 16.195198488648696, 48.155241722116926 ], [ 16.179122869495856, 48.171725058076639 ], [ 16.20461564491174, 48.203034394417507 ], [ 16.18239186839708, 48.22390134272117 ], [ 16.205295593469874, 48.264791213360155 ], [ 16.253842706615437, 48.240576011871539 ], [ 16.282784673675316, 48.259018225238762 ], [ 16.353184316827658, 48.284042653322786 ], [ 16.360411753940745, 48.282996034427839 ], [ 16.392399504249159, 48.323256351480374 ], [ 16.425226930412876, 48.321073846194217 ], [ 16.471936075452582, 48.276008516001454 ], [ 16.4994138251528, 48.291052237931495 ], [ 16.512124331592528, 48.286226701478839 ], [ 16.544208253547762, 48.263691788261042 ], [ 16.549971211397587, 48.23969285403885 ], [ 16.533509707881418, 48.177768384145324 ], [ 16.574217561105915, 48.145130070999159 ], [ 16.57325705011586, 48.135912775126229 ], [ 16.511013602174128, 48.159621550077297 ], [ 16.433448043594019, 48.138672585502619 ], [ 16.434246243952863, 48.120625961069237 ], [ 16.410046375913776, 48.118937473447055 ], [ 16.38556577135256, 48.126064945544883 ], [ 16.363113841196046, 48.129094678210095 ], [ 16.362860914712996, 48.129367403838152 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "AT-1", "NAME_1": "Burgenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.06292885586225, 46.850596568959809 ], [ 15.993444557407093, 46.8361010228545 ], [ 15.999889799681938, 46.847595478742932 ], [ 16.020635651813429, 46.888630613920313 ], [ 16.032607364588106, 46.893565782674635 ], [ 16.051258370533102, 46.911077148922466 ], [ 16.0920023328516, 46.935046143625151 ], [ 16.092612098137973, 46.954737775552992 ], [ 16.104969698078822, 46.966031480721185 ], [ 16.151740961122126, 46.99151535103217 ], [ 16.142810831509557, 47.000501223744557 ], [ 16.127938594903458, 47.012827133836367 ], [ 16.0955744934835, 47.061767746088016 ], [ 16.08379119127893, 47.088540159123625 ], [ 16.09200488331858, 47.112900947470955 ], [ 16.112237068087179, 47.133891695121079 ], [ 16.106498791610996, 47.167486430814769 ], [ 16.099793329518068, 47.184351259774807 ], [ 16.088709821837281, 47.199163592268384 ], [ 16.090014113418867, 47.200610938367774 ], [ 16.083734166890213, 47.234241601114029 ], [ 16.07348043721224, 47.272327492912929 ], [ 16.071944319118813, 47.275387030187574 ], [ 16.055664585847495, 47.310823162464693 ], [ 16.05673238140275, 47.315391460800434 ], [ 16.031718176228672, 47.356307783280435 ], [ 16.027430487596547, 47.372102454013238 ], [ 16.031256102645052, 47.372894344310296 ], [ 16.027326205771232, 47.37998987335984 ], [ 16.055967976466043, 47.384506814206084 ], [ 16.057632977972251, 47.384938827570679 ], [ 16.081326072415987, 47.409855179462141 ], [ 16.113357185217723, 47.414570192435072 ], [ 16.138900969885999, 47.418207935842311 ], [ 16.162255087575112, 47.421446209348034 ], [ 16.168984537359943, 47.423098517805521 ], [ 16.204232454542808, 47.425345459067657 ], [ 16.250379469394755, 47.448791973027113 ], [ 16.278297289270832, 47.455830723251871 ], [ 16.31803676050826, 47.494408563797727 ], [ 16.336897934663291, 47.516868622641162 ], [ 16.313433123133191, 47.543029021593533 ], [ 16.310899424541972, 47.543433288816047 ], [ 16.310379184086287, 47.566042673232261 ], [ 16.328181570547695, 47.590201338388717 ], [ 16.341578046239949, 47.603496687062126 ], [ 16.369721064624478, 47.643182430568785 ], [ 16.353910123786463, 47.680223516491566 ], [ 16.32098198217421, 47.684020871094084 ], [ 16.306260070360711, 47.68786961112027 ], [ 16.306333454333661, 47.696108535386578 ], [ 16.292270048199715, 47.716008525394308 ], [ 16.292853913209843, 47.742983473599843 ], [ 16.296561008927558, 47.761880949706523 ], [ 16.29560707465297, 47.762426246673286 ], [ 16.265966961792859, 47.791772415076913 ], [ 16.283111982106668, 47.812154047917055 ], [ 16.312839520214343, 47.785288704512979 ], [ 16.351975718624281, 47.821408012438177 ], [ 16.359575179437723, 47.823950744911457 ], [ 16.374408353813276, 47.828016195607177 ], [ 16.371726354412612, 47.853182427916721 ], [ 16.345205623935428, 47.868841806616309 ], [ 16.379864999603505, 47.876973130296378 ], [ 16.386112966164124, 47.882296412258121 ], [ 16.420026545995331, 47.902622189746069 ], [ 16.449579415505003, 47.934958462722626 ], [ 16.515899532448145, 47.944264537338306 ], [ 16.538264510538703, 47.920369002731974 ], [ 16.571232259949394, 47.88696873231212 ], [ 16.577502815389312, 47.889302841196105 ], [ 16.59453528022339, 47.90458679138213 ], [ 16.605575246026643, 47.913049268193646 ], [ 16.629303767916955, 47.93410193548187 ], [ 16.629113866608552, 47.934487523744856 ], [ 16.637013055109616, 47.946636176459251 ], [ 16.662417861038595, 47.957763857583593 ], [ 16.698409667384464, 47.974499943912654 ], [ 16.699325155015398, 48.012345414974668 ], [ 16.8224484323827, 48.029842217267436 ], [ 16.825388139976685, 48.029851275277565 ], [ 16.871311734331908, 48.073043203973519 ], [ 16.901505578559604, 48.071707569119269 ], [ 16.912439984108136, 48.057397876338896 ], [ 16.966191013958028, 48.026883759331326 ], [ 16.990966118475157, 48.046156741028177 ], [ 17.013523461741293, 48.074212586719469 ], [ 16.995991166528455, 48.084821275472564 ], [ 16.968312239323314, 48.101263859754013 ], [ 16.983774626560141, 48.112100974566474 ], [ 16.995086756880209, 48.109778326838715 ], [ 17.004371904272329, 48.092157682271612 ], [ 17.033224294610196, 48.084994026127497 ], [ 17.063970338966801, 48.119372977795003 ], [ 17.067390953142212, 48.057703746154488 ], [ 17.072854908075506, 48.028242462222373 ], [ 17.107282400585628, 48.031924584862857 ], [ 17.15786908837973, 48.007227053562922 ], [ 17.091889704426279, 47.971563774623299 ], [ 17.114213572049977, 47.961595644400191 ], [ 17.101396702898239, 47.899952847634395 ], [ 17.075026504657576, 47.878239703521594 ], [ 17.008422643118024, 47.858091031521482 ], [ 17.044140035271411, 47.829044894612252 ], [ 17.067988587955945, 47.750648933210528 ], [ 17.068491944686123, 47.707345465183373 ], [ 17.037366782040753, 47.70501681009862 ], [ 16.956554676862233, 47.6934040684487 ], [ 16.868855916025439, 47.69079982555234 ], [ 16.864127728652694, 47.722337765227543 ], [ 16.825550790348405, 47.683430038575423 ], [ 16.746249931218795, 47.682124653612533 ], [ 16.737020305371466, 47.695946098903981 ], [ 16.718164802359098, 47.736029476109195 ], [ 16.654397498250383, 47.742251121657347 ], [ 16.631485811337217, 47.759748113346816 ], [ 16.619354033241208, 47.757936462352632 ], [ 16.588171540535217, 47.758657291005036 ], [ 16.539944205865016, 47.743041962742957 ], [ 16.534788735311388, 47.740691639488823 ], [ 16.533685809121401, 47.737337856164807 ], [ 16.494986821815136, 47.704110037110858 ], [ 16.444547653736759, 47.697005155400717 ], [ 16.418762235075995, 47.665994636689653 ], [ 16.419065734321073, 47.66540076884538 ], [ 16.447440481309574, 47.656495135532651 ], [ 16.495046414478931, 47.640047784040384 ], [ 16.513624617929747, 47.646071689610338 ], [ 16.587467933694693, 47.618159201869041 ], [ 16.650150250037502, 47.622933043767326 ], [ 16.660368296847604, 47.569398933656224 ], [ 16.702820782705221, 47.523886783060668 ], [ 16.649559959279543, 47.501032859086848 ], [ 16.6592441398403, 47.456397639885559 ], [ 16.609024577645982, 47.432327266851473 ], [ 16.585114694932837, 47.423478381971535 ], [ 16.572966932473676, 47.407058968913539 ], [ 16.455909694105863, 47.413685371410274 ], [ 16.45421358162934, 47.367931263774615 ], [ 16.430978378251755, 47.353616417269443 ], [ 16.460229585514284, 47.336507377220642 ], [ 16.475366513282282, 47.275801973249258 ], [ 16.42769378317476, 47.251052694180267 ], [ 16.414113124210211, 47.206038337873629 ], [ 16.418314416059623, 47.197824486953344 ], [ 16.45046806412569, 47.188820855961261 ], [ 16.451514619913517, 47.143008623456453 ], [ 16.497089227248306, 47.124113635454918 ], [ 16.461827485158516, 47.099650894745523 ], [ 16.484501675585442, 47.069539967296862 ], [ 16.4484602172117, 47.04078654143369 ], [ 16.489742666748867, 47.010867066630965 ], [ 16.424683505828202, 46.993836884539199 ], [ 16.38373849435677, 47.001124106837537 ], [ 16.340151059702439, 46.999794818816234 ], [ 16.319681953878646, 47.003264715475744 ], [ 16.299484848829682, 46.999134689026306 ], [ 16.295955897321068, 47.00677492785637 ], [ 16.286511552627722, 47.014122701720169 ], [ 16.252534754682205, 46.964909695734363 ], [ 16.20724352130954, 46.943200624120891 ], [ 16.194755426729881, 46.940658521397594 ], [ 16.176434891954955, 46.907343743319686 ], [ 16.089141127913905, 46.865282285679719 ], [ 16.06292885586225, 46.850596568959809 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "AT-2", "NAME_1": "Kärnten" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.431692925911257, 46.443654253027717 ], [ 14.305342799404816, 46.431338016743794 ], [ 14.280391123258051, 46.444209047511066 ], [ 14.234377009537496, 46.432929661405531 ], [ 14.188290480159955, 46.444638757190283 ], [ 14.151832852705116, 46.436386128012487 ], [ 14.108624532282356, 46.479516018884404 ], [ 14.047936696941981, 46.493902313307892 ], [ 14.003683669933451, 46.482070900703945 ], [ 13.972825007641028, 46.498978509036355 ], [ 13.909152198216141, 46.521848921384951 ], [ 13.796129488432994, 46.507253829200287 ], [ 13.688313534998599, 46.521712920624609 ], [ 13.619081134351674, 46.542909931771035 ], [ 13.511982045177659, 46.549528115075162 ], [ 13.501435264033571, 46.567017364260579 ], [ 13.420670044436319, 46.55928901690671 ], [ 13.369421917320153, 46.57998709766953 ], [ 13.319276323709943, 46.553920287193378 ], [ 13.249993269013684, 46.561194050402598 ], [ 13.165783664211574, 46.589614349290045 ], [ 13.084789000801713, 46.601973027925489 ], [ 13.067818960060761, 46.600231131949634 ], [ 13.029760059273684, 46.596731636449576 ], [ 12.930750566808589, 46.610415141653299 ], [ 12.887392948554197, 46.607939085915575 ], [ 12.830858429966487, 46.610602599502784 ], [ 12.773114549599189, 46.647408684654124 ], [ 12.728569302262331, 46.635007776264885 ], [ 12.687814998391627, 46.657687939565015 ], [ 12.708906048803351, 46.736370258232114 ], [ 12.745381295751143, 46.748164933018693 ], [ 12.793001465389452, 46.756055735631648 ], [ 12.807097813753057, 46.756998308163638 ], [ 12.83840776878861, 46.75005145771911 ], [ 12.854022169611744, 46.760884085446307 ], [ 12.896567448024967, 46.777562323716694 ], [ 12.928609757041915, 46.764757368349919 ], [ 12.960670629253963, 46.799363351849763 ], [ 12.904298041316295, 46.823387790244063 ], [ 12.90264695172511, 46.823344994904382 ], [ 12.89278121589817, 46.826521487833858 ], [ 12.838340668011002, 46.861694242499048 ], [ 12.819009511450858, 46.917531662989035 ], [ 12.805634318053574, 46.923313748826722 ], [ 12.790855801946638, 46.927196188191758 ], [ 12.783590414308311, 46.940276760811784 ], [ 12.756752974781406, 46.957325505661281 ], [ 12.738265931358789, 46.969702989832889 ], [ 12.752064972756102, 47.025576385234181 ], [ 12.707697515119014, 47.04914786384203 ], [ 12.654016066248188, 47.100231353836485 ], [ 12.663320495046412, 47.12354691699273 ], [ 12.728080438914334, 47.131706108560309 ], [ 12.736033033360467, 47.101029819451412 ], [ 12.817464537284497, 47.098377156087039 ], [ 12.934473141851598, 47.076719888242259 ], [ 12.950189502492924, 47.049969416717801 ], [ 12.982537409143534, 47.036315422559284 ], [ 13.000275721836859, 47.044584319508182 ], [ 13.070207373241482, 47.014124041715412 ], [ 13.077521976587828, 47.02752186224722 ], [ 13.245313561168297, 47.05128768878815 ], [ 13.274503599910444, 47.095862267896415 ], [ 13.351707999171319, 47.097815364816057 ], [ 13.403554866604855, 47.069963523632971 ], [ 13.424763290456012, 47.0820862928719 ], [ 13.591419662691269, 47.056673264809525 ], [ 13.634826979627563, 47.056210337271956 ], [ 13.683729312368797, 47.040529825142869 ], [ 13.696406737061356, 47.003996430624163 ], [ 13.768931487558667, 46.977793555752463 ], [ 13.781858253483055, 46.944566726240176 ], [ 13.812548725751137, 46.919220797162133 ], [ 13.879060825088889, 46.918525694557829 ], [ 13.943915683091751, 46.941339953575834 ], [ 13.965353819946968, 46.963757501988013 ], [ 14.013625887190985, 46.989780922491505 ], [ 14.076338288515274, 47.022738813911211 ], [ 14.129757610613044, 47.063050773447742 ], [ 14.158799840554162, 47.05312008248935 ], [ 14.19962181928544, 47.0766044867391 ], [ 14.232236104985565, 47.02653071848637 ], [ 14.234893334266026, 47.02906133305401 ], [ 14.327397088037056, 47.029845907629053 ], [ 14.42739604891257, 47.001186504425426 ], [ 14.4690500355669, 47.008417942844218 ], [ 14.583124270383646, 47.012423298433802 ], [ 14.612463774440057, 46.998655758835234 ], [ 14.624948149152406, 47.014282982537956 ], [ 14.695861526766844, 47.016987732711392 ], [ 14.771524903004831, 47.04001782848264 ], [ 14.841676489061658, 47.048805304818195 ], [ 14.84417882509954, 47.033644547403178 ], [ 14.882741006492154, 47.01187740670246 ], [ 14.964149997281826, 46.982472194636294 ], [ 15.024207631891255, 46.910440804398895 ], [ 15.012112493120615, 46.881946353479314 ], [ 15.005425055975238, 46.880570359407294 ], [ 15.016832434338669, 46.844960815216176 ], [ 14.973464266422333, 46.785491239529001 ], [ 14.993871884429375, 46.78153279916539 ], [ 15.028749900382708, 46.746421499326736 ], [ 15.039478767649438, 46.721584636243662 ], [ 15.021723960006229, 46.670440196765838 ], [ 15.062313842013335, 46.652776574936851 ], [ 15.013368241990358, 46.641529001273476 ], [ 14.976576037392586, 46.602104630297013 ], [ 14.952874555691627, 46.633435380708249 ], [ 14.920242590075713, 46.60395521961447 ], [ 14.876863616243821, 46.611955974276981 ], [ 14.819946564830833, 46.53525123161495 ], [ 14.815810830087001, 46.510098500208571 ], [ 14.756288397793044, 46.505151445735791 ], [ 14.711967345197497, 46.500658807581239 ], [ 14.696326755027028, 46.4643026251442 ], [ 14.537070079808835, 46.412301587357341 ], [ 14.443957445302393, 46.422303677671508 ], [ 14.431692925911257, 46.443654253027717 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "AT-3", "NAME_1": "Niederösterreich" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.250379469394755, 47.448791973027113 ], [ 16.204232454542808, 47.425345459067657 ], [ 16.168984537359943, 47.423098517805521 ], [ 16.135190690234339, 47.462135952541018 ], [ 16.108419408036877, 47.522672175356192 ], [ 16.084613735772102, 47.50785604821462 ], [ 16.062303772060602, 47.487035116629556 ], [ 15.997287113811915, 47.516538148561374 ], [ 15.955735933816998, 47.518553434992604 ], [ 15.917716205195124, 47.530717675513877 ], [ 15.911075331820498, 47.531126328144452 ], [ 15.902627080805715, 47.560504791177991 ], [ 15.844224479544629, 47.56848860973404 ], [ 15.857781054846029, 47.617376268322836 ], [ 15.837512602790229, 47.618800148847249 ], [ 15.778544678678688, 47.642999404482921 ], [ 15.739522772636551, 47.642908508568475 ], [ 15.722316227177309, 47.6471548134285 ], [ 15.716360145031679, 47.710582813285662 ], [ 15.675945114743612, 47.699694878045619 ], [ 15.633173122593981, 47.716120757997125 ], [ 15.608925525753648, 47.751786051060961 ], [ 15.511001453148991, 47.747251532270077 ], [ 15.503824297663224, 47.768497070729218 ], [ 15.458173341840908, 47.770446655783324 ], [ 15.376750891518832, 47.824240317243053 ], [ 15.343100790488187, 47.826458307274905 ], [ 15.342419192626412, 47.826374245194202 ], [ 15.297045639104294, 47.821744142842498 ], [ 15.286082617985503, 47.791878647618312 ], [ 15.214516325735632, 47.79672841493683 ], [ 15.196587995010171, 47.754127920091442 ], [ 15.132045631353076, 47.758701008757107 ], [ 15.086457681336192, 47.742172229086812 ], [ 15.031926069993437, 47.753442002338261 ], [ 14.970044350325894, 47.744303408961784 ], [ 14.898419706847834, 47.711530267676075 ], [ 14.85526693611768, 47.741193978845203 ], [ 14.815521484791581, 47.744909610498432 ], [ 14.764254891795062, 47.727012692624101 ], [ 14.73566808338259, 47.749426793777985 ], [ 14.70908265136549, 47.790788831858599 ], [ 14.707199855307106, 47.851343953564772 ], [ 14.759948034358755, 47.87294189127239 ], [ 14.766758218261662, 47.88031598057858 ], [ 14.725084760353196, 47.935665590452615 ], [ 14.667816193597279, 47.935441548970879 ], [ 14.646271824385098, 47.942846942149735 ], [ 14.613423048698143, 47.948802065598308 ], [ 14.552335912421619, 47.980563687413081 ], [ 14.489303378556682, 48.01155203960905 ], [ 14.453328788357997, 48.043739680891349 ], [ 14.456054223911236, 48.074714092617512 ], [ 14.455116114019029, 48.089391233995592 ], [ 14.476249613684136, 48.105116645362891 ], [ 14.490160602378694, 48.110668444125508 ], [ 14.465119466732309, 48.148296658581444 ], [ 14.480047265119381, 48.172261697684455 ], [ 14.479323305252938, 48.179197356647158 ], [ 14.47815826291343, 48.202624776750156 ], [ 14.512754675251516, 48.234761231194582 ], [ 14.518386993837433, 48.238310752577775 ], [ 14.55807323829416, 48.231687424757496 ], [ 14.620464597522956, 48.191385824204254 ], [ 14.640839520032836, 48.175943831718847 ], [ 14.685579357914088, 48.157991811975457 ], [ 14.71249549298957, 48.17936993754109 ], [ 14.75880317196169, 48.178278333262355 ], [ 14.7662172367989, 48.179814509183586 ], [ 14.837515898992754, 48.194435338792047 ], [ 14.853860494650831, 48.212026718935761 ], [ 14.882880860379144, 48.233459357193851 ], [ 14.941654295692935, 48.227976825078045 ], [ 14.959655590894204, 48.203081360223401 ], [ 14.9713677938265, 48.199533558138796 ], [ 14.9493765953804, 48.219832562456659 ], [ 14.967176679359643, 48.246454313680665 ], [ 14.989257710600386, 48.256627721661452 ], [ 14.98229724223215, 48.299809064582774 ], [ 14.940899818669662, 48.324346429340999 ], [ 14.944696456681836, 48.334060909925796 ], [ 14.961661862276186, 48.379211004643508 ], [ 14.95359394767566, 48.392005112113246 ], [ 14.925412208947593, 48.424502749993884 ], [ 14.908937674498883, 48.435379100482479 ], [ 14.874229757250031, 48.46507772877569 ], [ 14.918171068511841, 48.506423610629525 ], [ 14.872313402415301, 48.528442462549009 ], [ 14.808355569985297, 48.554452147316738 ], [ 14.733512866405684, 48.553484172246414 ], [ 14.688226952664776, 48.585001092388516 ], [ 14.718354997522574, 48.603076705437715 ], [ 14.719335904651496, 48.639080583790893 ], [ 14.720672548060689, 48.676398353351829 ], [ 14.738011793297394, 48.70201358776005 ], [ 14.805353664793319, 48.734578392881396 ], [ 14.826505263821442, 48.781184623555959 ], [ 14.878515393980718, 48.780803254811516 ], [ 14.960958029373471, 48.763847687467681 ], [ 14.96696038109277, 48.824599254268456 ], [ 14.985075129117067, 48.895943317304145 ], [ 14.973715380388786, 48.956519350294435 ], [ 14.995047359971757, 48.992653108576043 ], [ 15.018951011986436, 49.021160570100974 ], [ 15.102862904426933, 48.996901065404224 ], [ 15.15585995053525, 48.990604496273136 ], [ 15.157467543278031, 48.942381993027908 ], [ 15.221669314475886, 48.960834559976554 ], [ 15.258669983287632, 48.954617997995022 ], [ 15.288251143314094, 48.98500701379043 ], [ 15.318956553726645, 48.976818323333838 ], [ 15.364197726131652, 48.982571392748369 ], [ 15.42675608545628, 48.951882536154649 ], [ 15.465710717754735, 48.952506509208952 ], [ 15.510610351038196, 48.914811254519044 ], [ 15.584317685813051, 48.896680563872117 ], [ 15.616816384821187, 48.896298413540016 ], [ 15.68979805612949, 48.856221823993756 ], [ 15.750881335199988, 48.852865536414512 ], [ 15.776751556907506, 48.87557410899057 ], [ 15.824799733754151, 48.871738092572819 ], [ 15.967289442397114, 48.796009991737549 ], [ 16.06189523534486, 48.75554032964282 ], [ 16.086203511193652, 48.748515658553934 ], [ 16.100111483084625, 48.746088533015083 ], [ 16.147113599891139, 48.743885834014819 ], [ 16.220728389706213, 48.740795915085123 ], [ 16.270246299768875, 48.741968668168312 ], [ 16.35699545719752, 48.728758918668149 ], [ 16.425453394516435, 48.763338706586516 ], [ 16.432228250167324, 48.766320727833921 ], [ 16.445926809612626, 48.800069518899967 ], [ 16.531282013407491, 48.811517501346984 ], [ 16.590462975440541, 48.783483036326558 ], [ 16.648649736507402, 48.785836644453411 ], [ 16.679775730542573, 48.728777011117067 ], [ 16.679817776884818, 48.728482535918694 ], [ 16.744512212590028, 48.732807947030523 ], [ 16.757694009288155, 48.717480378029023 ], [ 16.902880513107171, 48.714653628662539 ], [ 16.907712808998578, 48.679380703520607 ], [ 16.925637128813538, 48.639579950535108 ], [ 16.932088347684548, 48.602928166820696 ], [ 16.935745550204242, 48.566067809993598 ], [ 16.918697640430135, 48.516464836554292 ], [ 16.877946595193354, 48.478172288644259 ], [ 16.84837565916137, 48.439322345890581 ], [ 16.859357845974603, 48.418261072041929 ], [ 16.839425868164401, 48.360823172964537 ], [ 16.904578010832964, 48.327419832777174 ], [ 16.897937963088001, 48.298573169937285 ], [ 16.949336383327477, 48.25837219940928 ], [ 16.959323827464573, 48.218181372351339 ], [ 16.97334065223632, 48.172958126717262 ], [ 16.996780750915089, 48.159295815236241 ], [ 17.059408008536607, 48.123719918463117 ], [ 17.063970338966801, 48.119372977795003 ], [ 17.033224294610196, 48.084994026127497 ], [ 17.004371904272329, 48.092157682271612 ], [ 16.995086756880209, 48.109778326838715 ], [ 16.983774626560141, 48.112100974566474 ], [ 16.968312239323314, 48.101263859754013 ], [ 16.995991166528455, 48.084821275472564 ], [ 17.013523461741293, 48.074212586719469 ], [ 16.990966118475157, 48.046156741028177 ], [ 16.966191013958028, 48.026883759331326 ], [ 16.912439984108136, 48.057397876338896 ], [ 16.901505578559604, 48.071707569119269 ], [ 16.871311734331908, 48.073043203973519 ], [ 16.825388139976685, 48.029851275277565 ], [ 16.8224484323827, 48.029842217267436 ], [ 16.699325155015398, 48.012345414974668 ], [ 16.698409667384464, 47.974499943912654 ], [ 16.662417861038595, 47.957763857583593 ], [ 16.637013055109616, 47.946636176459251 ], [ 16.629113866608552, 47.934487523744856 ], [ 16.629303767916955, 47.93410193548187 ], [ 16.605575246026643, 47.913049268193646 ], [ 16.59453528022339, 47.90458679138213 ], [ 16.577502815389312, 47.889302841196105 ], [ 16.571232259949394, 47.88696873231212 ], [ 16.538264510538703, 47.920369002731974 ], [ 16.515899532448145, 47.944264537338306 ], [ 16.449579415505003, 47.934958462722626 ], [ 16.420026545995331, 47.902622189746069 ], [ 16.386112966164124, 47.882296412258121 ], [ 16.379864999603505, 47.876973130296378 ], [ 16.345205623935428, 47.868841806616309 ], [ 16.371726354412612, 47.853182427916721 ], [ 16.374408353813276, 47.828016195607177 ], [ 16.359575179437723, 47.823950744911457 ], [ 16.351975718624281, 47.821408012438177 ], [ 16.312839520214343, 47.785288704512979 ], [ 16.283111982106668, 47.812154047917055 ], [ 16.265966961792859, 47.791772415076913 ], [ 16.29560707465297, 47.762426246673286 ], [ 16.296561008927558, 47.761880949706523 ], [ 16.292853913209843, 47.742983473599843 ], [ 16.292270048199715, 47.716008525394308 ], [ 16.306333454333661, 47.696108535386578 ], [ 16.306260070360711, 47.68786961112027 ], [ 16.32098198217421, 47.684020871094084 ], [ 16.353910123786463, 47.680223516491566 ], [ 16.369721064624478, 47.643182430568785 ], [ 16.341578046239949, 47.603496687062126 ], [ 16.328181570547695, 47.590201338388717 ], [ 16.310379184086287, 47.566042673232261 ], [ 16.310899424541972, 47.543433288816047 ], [ 16.313433123133191, 47.543029021593533 ], [ 16.336897934663291, 47.516868622641162 ], [ 16.31803676050826, 47.494408563797727 ], [ 16.278297289270832, 47.455830723251871 ], [ 16.250379469394755, 47.448791973027113 ] ], [ [ 16.205295593469874, 48.264791213360155 ], [ 16.18239186839708, 48.22390134272117 ], [ 16.20461564491174, 48.203034394417507 ], [ 16.179122869495856, 48.171725058076639 ], [ 16.195198488648696, 48.155241722116926 ], [ 16.220427352575459, 48.153878432240852 ], [ 16.215319946458333, 48.128762607027817 ], [ 16.222751181809326, 48.126165367516812 ], [ 16.226346919323102, 48.127846987362993 ], [ 16.29577743156106, 48.126017999864594 ], [ 16.309429782935833, 48.120227143062479 ], [ 16.362860914712996, 48.129367403838152 ], [ 16.363113841196046, 48.129094678210095 ], [ 16.38556577135256, 48.126064945544883 ], [ 16.410046375913776, 48.118937473447055 ], [ 16.434246243952863, 48.120625961069237 ], [ 16.433448043594019, 48.138672585502619 ], [ 16.511013602174128, 48.159621550077297 ], [ 16.57325705011586, 48.135912775126229 ], [ 16.574217561105915, 48.145130070999159 ], [ 16.533509707881418, 48.177768384145324 ], [ 16.549971211397587, 48.23969285403885 ], [ 16.544208253547762, 48.263691788261042 ], [ 16.512124331592528, 48.286226701478839 ], [ 16.4994138251528, 48.291052237931495 ], [ 16.471936075452582, 48.276008516001454 ], [ 16.425226930412876, 48.321073846194217 ], [ 16.392399504249159, 48.323256351480374 ], [ 16.360411753940745, 48.282996034427839 ], [ 16.353184316827658, 48.284042653322786 ], [ 16.282784673675316, 48.259018225238762 ], [ 16.253842706615437, 48.240576011871539 ], [ 16.205295593469874, 48.264791213360155 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "AT-4", "NAME_1": "Oberösterreich" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.691787532748462, 47.579980415929889 ], [ 13.732654022442613, 47.57773034335252 ], [ 13.757865107283767, 47.5210073854116 ], [ 13.746326261587271, 47.502320056853719 ], [ 13.719754990487411, 47.462819997610183 ], [ 13.605942430202054, 47.475845735607123 ], [ 13.602876972006017, 47.475896454616894 ], [ 13.582856450628059, 47.47550827496876 ], [ 13.513361713701769, 47.497213452876281 ], [ 13.473934783049749, 47.531024630060806 ], [ 13.478469659926446, 47.562433763605 ], [ 13.517474413472071, 47.62388895672504 ], [ 13.487057210977767, 47.63103549735677 ], [ 13.514140817579701, 47.676241041265023 ], [ 13.548063967268417, 47.714823454292123 ], [ 13.433469015572669, 47.739258710477962 ], [ 13.462474874718307, 47.786859531354402 ], [ 13.532580670419073, 47.776844478910341 ], [ 13.5266703981245, 47.797732246245786 ], [ 13.447610880717811, 47.804451135674846 ], [ 13.395275767028675, 47.798600571919962 ], [ 13.348156258606874, 47.810649045104206 ], [ 13.309401296692693, 47.813536413134202 ], [ 13.290325527302539, 47.864466895045233 ], [ 13.267308525551996, 47.892135525827619 ], [ 13.278323565236123, 47.905342939368751 ], [ 13.27748367233546, 47.955422124340892 ], [ 13.30473321992954, 47.964721795386232 ], [ 13.355740647248055, 47.940468302241094 ], [ 13.360320994161707, 47.94478873157334 ], [ 13.368852912648117, 47.9726880695492 ], [ 13.301126898814976, 48.00857637935583 ], [ 13.209901470411149, 47.983174706180847 ], [ 13.20707267531659, 47.979650150038374 ], [ 13.195874250533201, 47.974880264576974 ], [ 13.142370975421642, 47.975052733456842 ], [ 13.12144503777586, 47.99688921221891 ], [ 13.101131942650055, 47.997459459925935 ], [ 13.099958187932289, 47.998269288651613 ], [ 13.054856938977494, 48.013999417805628 ], [ 13.044399891734093, 48.027968838524316 ], [ 13.044189302795095, 48.038069073068378 ], [ 13.009492383988002, 48.037218846330312 ], [ 12.986804806863335, 48.028545962297123 ], [ 12.936698792726006, 48.037115468453756 ], [ 12.935265163581597, 48.0366690206478 ], [ 12.889187330800945, 47.991719778098854 ], [ 12.857373111808512, 47.997348909747551 ], [ 12.83118509068697, 48.028771977184299 ], [ 12.767673450093653, 48.066656771166961 ], [ 12.747826656014277, 48.100304100647094 ], [ 12.790346772329324, 48.133157445376511 ], [ 12.845252918438023, 48.168569682734407 ], [ 12.870881070167139, 48.203182106974296 ], [ 12.952378942158441, 48.209673641849349 ], [ 13.015391671626906, 48.257038517536088 ], [ 13.061375271190983, 48.270045011978539 ], [ 13.139822670863945, 48.283597041547388 ], [ 13.192688191200137, 48.296170250328196 ], [ 13.250882941370181, 48.293861753673042 ], [ 13.311682411530184, 48.317127695243862 ], [ 13.338548653413923, 48.332397411068207 ], [ 13.341050019387982, 48.334187921088557 ], [ 13.37125457639638, 48.35717518435716 ], [ 13.405037671422647, 48.372865347155617 ], [ 13.417363959519246, 48.400736976270053 ], [ 13.433191830057275, 48.426441313931221 ], [ 13.431445079844236, 48.445828560810327 ], [ 13.436763053259218, 48.479597690391955 ], [ 13.440462322656579, 48.485963812481039 ], [ 13.442133477067269, 48.528795266536655 ], [ 13.47228162522768, 48.55669015613033 ], [ 13.508662244547365, 48.591828028544256 ], [ 13.548703234276186, 48.571480842988677 ], [ 13.638347253103191, 48.553199784453028 ], [ 13.674360798678439, 48.531203739405335 ], [ 13.724293960302278, 48.513722341359873 ], [ 13.761501495250306, 48.561311205551938 ], [ 13.798201945685692, 48.574392440490229 ], [ 13.822976306837825, 48.619325703855495 ], [ 13.814563703814196, 48.659415265237797 ], [ 13.830810367795081, 48.692603328274984 ], [ 13.834546973023194, 48.700829893613104 ], [ 13.818321368921968, 48.755236982934399 ], [ 13.874166490423294, 48.766675076313589 ], [ 13.923547047315743, 48.735391949209777 ], [ 13.973700672480517, 48.711793195634613 ], [ 14.000496542506999, 48.709283571478409 ], [ 14.055060253195919, 48.658439820225752 ], [ 14.00777687982591, 48.640354736463792 ], [ 14.03940102613522, 48.613557738746344 ], [ 14.092791744772713, 48.592939510821019 ], [ 14.160742302808048, 48.589936241744411 ], [ 14.267600759754272, 48.581695154079561 ], [ 14.330418283185368, 48.552526433358068 ], [ 14.33862381175925, 48.555384787996168 ], [ 14.390866619742345, 48.578173995886182 ], [ 14.440767624693814, 48.604844417155988 ], [ 14.471901256140397, 48.644650018063714 ], [ 14.501203068003178, 48.617915201286756 ], [ 14.552094269195178, 48.606455588137642 ], [ 14.603578015697249, 48.629287997532494 ], [ 14.623950449236242, 48.605054704256489 ], [ 14.688226952664776, 48.585001092388516 ], [ 14.733512866405684, 48.553484172246414 ], [ 14.808355569985297, 48.554452147316738 ], [ 14.872313402415301, 48.528442462549009 ], [ 14.918171068511841, 48.506423610629525 ], [ 14.874229757250031, 48.46507772877569 ], [ 14.908937674498883, 48.435379100482479 ], [ 14.925412208947593, 48.424502749993884 ], [ 14.95359394767566, 48.392005112113246 ], [ 14.961661862276186, 48.379211004643508 ], [ 14.944696456681836, 48.334060909925796 ], [ 14.940899818669662, 48.324346429340999 ], [ 14.98229724223215, 48.299809064582774 ], [ 14.989257710600386, 48.256627721661452 ], [ 14.967176679359643, 48.246454313680665 ], [ 14.9493765953804, 48.219832562456659 ], [ 14.9713677938265, 48.199533558138796 ], [ 14.959655590894204, 48.203081360223401 ], [ 14.941654295692935, 48.227976825078045 ], [ 14.882880860379144, 48.233459357193851 ], [ 14.853860494650831, 48.212026718935761 ], [ 14.837515898992754, 48.194435338792047 ], [ 14.7662172367989, 48.179814509183586 ], [ 14.75880317196169, 48.178278333262355 ], [ 14.71249549298957, 48.17936993754109 ], [ 14.685579357914088, 48.157991811975457 ], [ 14.640839520032836, 48.175943831718847 ], [ 14.620464597522956, 48.191385824204254 ], [ 14.55807323829416, 48.231687424757496 ], [ 14.518386993837433, 48.238310752577775 ], [ 14.512754675251516, 48.234761231194582 ], [ 14.47815826291343, 48.202624776750156 ], [ 14.479323305252938, 48.179197356647158 ], [ 14.480047265119381, 48.172261697684455 ], [ 14.465119466732309, 48.148296658581444 ], [ 14.490160602378694, 48.110668444125508 ], [ 14.476249613684136, 48.105116645362891 ], [ 14.455116114019029, 48.089391233995592 ], [ 14.456054223911236, 48.074714092617512 ], [ 14.453328788357997, 48.043739680891349 ], [ 14.489303378556682, 48.01155203960905 ], [ 14.552335912421619, 47.980563687413081 ], [ 14.613423048698143, 47.948802065598308 ], [ 14.646271824385098, 47.942846942149735 ], [ 14.667816193597279, 47.935441548970879 ], [ 14.725084760353196, 47.935665590452615 ], [ 14.766758218261662, 47.88031598057858 ], [ 14.759948034358755, 47.87294189127239 ], [ 14.707199855307106, 47.851343953564772 ], [ 14.70908265136549, 47.790788831858599 ], [ 14.73566808338259, 47.749426793777985 ], [ 14.694168395716099, 47.766504626899781 ], [ 14.643463521446574, 47.726160420642856 ], [ 14.528885381761471, 47.714301967210197 ], [ 14.485769844431777, 47.682746730614916 ], [ 14.441435979634011, 47.656118020052254 ], [ 14.41805486150295, 47.657280316408951 ], [ 14.388734994989315, 47.636643741682384 ], [ 14.323597311082393, 47.60825952976716 ], [ 14.261611978484815, 47.611178964524491 ], [ 14.229754900473345, 47.651335265305775 ], [ 14.202993128424746, 47.653243494259669 ], [ 14.174786412508292, 47.63865431978715 ], [ 14.090321147711409, 47.620244800293115 ], [ 14.04797578242021, 47.617863145539587 ], [ 14.045938276604826, 47.637628329582569 ], [ 14.052627135407647, 47.668593666839087 ], [ 14.007797462698619, 47.701597915639432 ], [ 13.893114702931202, 47.718186452830928 ], [ 13.857510045138977, 47.7279221891866 ], [ 13.774852101100302, 47.719032619853486 ], [ 13.70505213579654, 47.657162403720513 ], [ 13.695703979460355, 47.602759006021877 ], [ 13.691787532748462, 47.579980415929889 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "AT-5", "NAME_1": "Salzburg" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.798352103631528, 46.951844674621924 ], [ 13.781858253483055, 46.944566726240176 ], [ 13.768931487558667, 46.977793555752463 ], [ 13.696406737061356, 47.003996430624163 ], [ 13.683729312368797, 47.040529825142869 ], [ 13.634826979627563, 47.056210337271956 ], [ 13.591419662691269, 47.056673264809525 ], [ 13.424763290456012, 47.0820862928719 ], [ 13.403554866604855, 47.069963523632971 ], [ 13.351707999171319, 47.097815364816057 ], [ 13.274503599910444, 47.095862267896415 ], [ 13.245313561168297, 47.05128768878815 ], [ 13.077521976587828, 47.02752186224722 ], [ 13.070207373241482, 47.014124041715412 ], [ 13.000275721836859, 47.044584319508182 ], [ 12.982537409143534, 47.036315422559284 ], [ 12.950189502492924, 47.049969416717801 ], [ 12.934473141851598, 47.076719888242259 ], [ 12.817464537284497, 47.098377156087039 ], [ 12.736033033360467, 47.101029819451412 ], [ 12.728080438914334, 47.131706108560309 ], [ 12.663320495046412, 47.12354691699273 ], [ 12.654016066248188, 47.100231353836485 ], [ 12.5894168444659, 47.125586745956561 ], [ 12.563556470390875, 47.136739497405685 ], [ 12.48070043046074, 47.158559641541459 ], [ 12.462736611250595, 47.145068463698053 ], [ 12.396701690532645, 47.153515959952031 ], [ 12.360454539252105, 47.142098997698724 ], [ 12.342795704847681, 47.109984760288611 ], [ 12.280957414203254, 47.093264806477933 ], [ 12.237924613286085, 47.069884004190115 ], [ 12.183138449276436, 47.092861795264653 ], [ 12.133192576151718, 47.08138357679902 ], [ 12.090447365445778, 47.146768243155321 ], [ 12.079968912093101, 47.196434418696505 ], [ 12.107262767387029, 47.241104643341593 ], [ 12.075754696908119, 47.275895220457372 ], [ 12.11172562405633, 47.307158890850715 ], [ 12.161804090720976, 47.302255484213141 ], [ 12.216161380621619, 47.311844938364253 ], [ 12.251875731910911, 47.30867861955565 ], [ 12.261297429832275, 47.302924956931115 ], [ 12.29368730421171, 47.328803644915268 ], [ 12.332437254976149, 47.329231610715048 ], [ 12.37177067497208, 47.312022624514228 ], [ 12.475499766426189, 47.327107745894352 ], [ 12.492393544557732, 47.338123300740122 ], [ 12.476154094388688, 47.368943885527884 ], [ 12.503274276420276, 47.394842678075356 ], [ 12.542482549397553, 47.398754069956937 ], [ 12.575794307927712, 47.39321028987878 ], [ 12.621757739986972, 47.423227670102513 ], [ 12.629478377239565, 47.432807492676346 ], [ 12.629463336415112, 47.465777514603346 ], [ 12.696777382304528, 47.47859809099986 ], [ 12.662316157261458, 47.506781030711906 ], [ 12.651318336612611, 47.537482285607737 ], [ 12.62535195417081, 47.550258426215443 ], [ 12.650732825987651, 47.588739771087816 ], [ 12.571713210946912, 47.605701242175037 ], [ 12.572213000152678, 47.633027342837437 ], [ 12.600584094360492, 47.672926872733029 ], [ 12.663274400481706, 47.681752463021496 ], [ 12.742010996435436, 47.676471656466219 ], [ 12.786886172366993, 47.63393170802258 ], [ 12.788515205985565, 47.599078180363499 ], [ 12.776444015382088, 47.579996690540888 ], [ 12.783545828560367, 47.568731782868802 ], [ 12.881657514824614, 47.513466587663615 ], [ 12.929111962535124, 47.488461701056174 ], [ 12.99824236041834, 47.464722019004448 ], [ 13.015056978575542, 47.475388366440598 ], [ 13.043245063668714, 47.521212831363364 ], [ 13.068698231612442, 47.590608271804619 ], [ 13.095138628499006, 47.634426505171646 ], [ 13.075814245585148, 47.688675076569837 ], [ 13.043132293801934, 47.713407424860314 ], [ 12.984388964825083, 47.708121198638366 ], [ 12.930368321934951, 47.710254613862048 ], [ 12.940655718630108, 47.763615072042811 ], [ 12.986257062250298, 47.832672123818163 ], [ 12.998581847888278, 47.855103374993483 ], [ 12.984790236493808, 47.869900339367774 ], [ 12.963649379017989, 47.901374259029168 ], [ 12.936454197863693, 47.937366661659517 ], [ 12.917879824205455, 47.951591297071886 ], [ 12.868304939173719, 47.967142186635243 ], [ 12.857373111808512, 47.997348909747551 ], [ 12.889187330800945, 47.991719778098854 ], [ 12.935265163581597, 48.0366690206478 ], [ 12.936698792726006, 48.037115468453756 ], [ 12.986804806863335, 48.028545962297123 ], [ 13.009492383988002, 48.037218846330312 ], [ 13.044189302795095, 48.038069073068378 ], [ 13.044399891734093, 48.027968838524316 ], [ 13.054856938977494, 48.013999417805628 ], [ 13.099958187932289, 47.998269288651613 ], [ 13.101131942650055, 47.997459459925935 ], [ 13.12144503777586, 47.99688921221891 ], [ 13.142370975421642, 47.975052733456842 ], [ 13.195874250533201, 47.974880264576974 ], [ 13.20707267531659, 47.979650150038374 ], [ 13.209901470411149, 47.983174706180847 ], [ 13.301126898814976, 48.00857637935583 ], [ 13.368852912648117, 47.9726880695492 ], [ 13.360320994161707, 47.94478873157334 ], [ 13.355740647248055, 47.940468302241094 ], [ 13.30473321992954, 47.964721795386232 ], [ 13.27748367233546, 47.955422124340892 ], [ 13.278323565236123, 47.905342939368751 ], [ 13.267308525551996, 47.892135525827619 ], [ 13.290325527302539, 47.864466895045233 ], [ 13.309401296692693, 47.813536413134202 ], [ 13.348156258606874, 47.810649045104206 ], [ 13.395275767028675, 47.798600571919962 ], [ 13.447610880717811, 47.804451135674846 ], [ 13.5266703981245, 47.797732246245786 ], [ 13.532580670419073, 47.776844478910341 ], [ 13.462474874718307, 47.786859531354402 ], [ 13.433469015572669, 47.739258710477962 ], [ 13.548063967268417, 47.714823454292123 ], [ 13.514140817579701, 47.676241041265023 ], [ 13.487057210977767, 47.63103549735677 ], [ 13.517474413472071, 47.62388895672504 ], [ 13.478469659926446, 47.562433763605 ], [ 13.473934783049749, 47.531024630060806 ], [ 13.513361713701769, 47.497213452876281 ], [ 13.582856450628059, 47.47550827496876 ], [ 13.561322502595704, 47.418777955313921 ], [ 13.561746557279987, 47.417397878953672 ], [ 13.569492539300748, 47.393810566065227 ], [ 13.596895659286297, 47.341409015053536 ], [ 13.605134010473964, 47.284096828348758 ], [ 13.693014143657168, 47.26079573074071 ], [ 13.709056671941815, 47.260211054806817 ], [ 13.757832871689208, 47.266979618653856 ], [ 13.822535502019646, 47.293910759286383 ], [ 13.86137413022891, 47.252877782610945 ], [ 13.861939615717835, 47.220644199306889 ], [ 13.939942624981187, 47.167102731357758 ], [ 13.99009642683173, 47.142949667273598 ], [ 13.985012729848352, 47.127811122529558 ], [ 13.932850541084347, 47.135804198877892 ], [ 13.875611432150723, 47.101074589620247 ], [ 13.903967588488547, 47.0708202774534 ], [ 13.829007172764317, 46.966158008302273 ], [ 13.798352103631528, 46.951844674621924 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "AT-6", "NAME_1": "Steiermark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.062313842013335, 46.652776574936851 ], [ 15.021723960006229, 46.670440196765838 ], [ 15.039478767649438, 46.721584636243662 ], [ 15.028749900382708, 46.746421499326736 ], [ 14.993871884429375, 46.78153279916539 ], [ 14.973464266422333, 46.785491239529001 ], [ 15.016832434338669, 46.844960815216176 ], [ 15.005425055975238, 46.880570359407294 ], [ 15.012112493120615, 46.881946353479314 ], [ 15.024207631891255, 46.910440804398895 ], [ 14.964149997281826, 46.982472194636294 ], [ 14.882741006492154, 47.01187740670246 ], [ 14.84417882509954, 47.033644547403178 ], [ 14.841676489061658, 47.048805304818195 ], [ 14.771524903004831, 47.04001782848264 ], [ 14.695861526766844, 47.016987732711392 ], [ 14.624948149152406, 47.014282982537956 ], [ 14.612463774440057, 46.998655758835234 ], [ 14.583124270383646, 47.012423298433802 ], [ 14.4690500355669, 47.008417942844218 ], [ 14.42739604891257, 47.001186504425426 ], [ 14.327397088037056, 47.029845907629053 ], [ 14.234893334266026, 47.02906133305401 ], [ 14.232236104985565, 47.02653071848637 ], [ 14.19962181928544, 47.0766044867391 ], [ 14.158799840554162, 47.05312008248935 ], [ 14.129757610613044, 47.063050773447742 ], [ 14.076338288515274, 47.022738813911211 ], [ 14.013625887190985, 46.989780922491505 ], [ 13.965353819946968, 46.963757501988013 ], [ 13.943915683091751, 46.941339953575834 ], [ 13.879060825088889, 46.918525694557829 ], [ 13.812548725751137, 46.919220797162133 ], [ 13.781858253483055, 46.944566726240176 ], [ 13.798352103631528, 46.951844674621924 ], [ 13.829007172764317, 46.966158008302273 ], [ 13.903967588488547, 47.0708202774534 ], [ 13.875611432150723, 47.101074589620247 ], [ 13.932850541084347, 47.135804198877892 ], [ 13.985012729848352, 47.127811122529558 ], [ 13.99009642683173, 47.142949667273598 ], [ 13.939942624981187, 47.167102731357758 ], [ 13.861939615717835, 47.220644199306889 ], [ 13.86137413022891, 47.252877782610945 ], [ 13.822535502019646, 47.293910759286383 ], [ 13.757832871689208, 47.266979618653856 ], [ 13.709056671941815, 47.260211054806817 ], [ 13.693014143657168, 47.26079573074071 ], [ 13.605134010473964, 47.284096828348758 ], [ 13.596895659286297, 47.341409015053536 ], [ 13.569492539300748, 47.393810566065227 ], [ 13.561746557279987, 47.417397878953672 ], [ 13.561322502595704, 47.418777955313921 ], [ 13.582856450628059, 47.47550827496876 ], [ 13.602876972006017, 47.475896454616894 ], [ 13.605942430202054, 47.475845735607123 ], [ 13.719754990487411, 47.462819997610183 ], [ 13.746326261587271, 47.502320056853719 ], [ 13.757865107283767, 47.5210073854116 ], [ 13.732654022442613, 47.57773034335252 ], [ 13.691787532748462, 47.579980415929889 ], [ 13.695703979460355, 47.602759006021877 ], [ 13.70505213579654, 47.657162403720513 ], [ 13.774852101100302, 47.719032619853486 ], [ 13.857510045138977, 47.7279221891866 ], [ 13.893114702931202, 47.718186452830928 ], [ 14.007797462698619, 47.701597915639432 ], [ 14.052627135407647, 47.668593666839087 ], [ 14.045938276604826, 47.637628329582569 ], [ 14.04797578242021, 47.617863145539587 ], [ 14.090321147711409, 47.620244800293115 ], [ 14.174786412508292, 47.63865431978715 ], [ 14.202993128424746, 47.653243494259669 ], [ 14.229754900473345, 47.651335265305775 ], [ 14.261611978484815, 47.611178964524491 ], [ 14.323597311082393, 47.60825952976716 ], [ 14.388734994989315, 47.636643741682384 ], [ 14.41805486150295, 47.657280316408951 ], [ 14.441435979634011, 47.656118020052254 ], [ 14.485769844431777, 47.682746730614916 ], [ 14.528885381761471, 47.714301967210197 ], [ 14.643463521446574, 47.726160420642856 ], [ 14.694168395716099, 47.766504626899781 ], [ 14.73566808338259, 47.749426793777985 ], [ 14.764254891795062, 47.727012692624101 ], [ 14.815521484791581, 47.744909610498432 ], [ 14.85526693611768, 47.741193978845203 ], [ 14.898419706847834, 47.711530267676075 ], [ 14.970044350325894, 47.744303408961784 ], [ 15.031926069993437, 47.753442002338261 ], [ 15.086457681336192, 47.742172229086812 ], [ 15.132045631353076, 47.758701008757107 ], [ 15.196587995010171, 47.754127920091442 ], [ 15.214516325735632, 47.79672841493683 ], [ 15.286082617985503, 47.791878647618312 ], [ 15.297045639104294, 47.821744142842498 ], [ 15.342419192626412, 47.826374245194202 ], [ 15.343100790488187, 47.826458307274905 ], [ 15.376750891518832, 47.824240317243053 ], [ 15.458173341840908, 47.770446655783324 ], [ 15.503824297663224, 47.768497070729218 ], [ 15.511001453148991, 47.747251532270077 ], [ 15.608925525753648, 47.751786051060961 ], [ 15.633173122593981, 47.716120757997125 ], [ 15.675945114743612, 47.699694878045619 ], [ 15.716360145031679, 47.710582813285662 ], [ 15.722316227177309, 47.6471548134285 ], [ 15.739522772636551, 47.642908508568475 ], [ 15.778544678678688, 47.642999404482921 ], [ 15.837512602790229, 47.618800148847249 ], [ 15.857781054846029, 47.617376268322836 ], [ 15.844224479544629, 47.56848860973404 ], [ 15.902627080805715, 47.560504791177991 ], [ 15.911075331820498, 47.531126328144452 ], [ 15.917716205195124, 47.530717675513877 ], [ 15.955735933816998, 47.518553434992604 ], [ 15.997287113811915, 47.516538148561374 ], [ 16.062303772060602, 47.487035116629556 ], [ 16.084613735772102, 47.50785604821462 ], [ 16.108419408036877, 47.522672175356192 ], [ 16.135190690234339, 47.462135952541018 ], [ 16.168984537359943, 47.423098517805521 ], [ 16.162255087575112, 47.421446209348034 ], [ 16.138900969885999, 47.418207935842311 ], [ 16.113357185217723, 47.414570192435072 ], [ 16.081326072415987, 47.409855179462141 ], [ 16.057632977972251, 47.384938827570679 ], [ 16.055967976466043, 47.384506814206084 ], [ 16.027326205771232, 47.37998987335984 ], [ 16.031256102645052, 47.372894344310296 ], [ 16.027430487596547, 47.372102454013238 ], [ 16.031718176228672, 47.356307783280435 ], [ 16.05673238140275, 47.315391460800434 ], [ 16.055664585847495, 47.310823162464693 ], [ 16.071944319118813, 47.275387030187574 ], [ 16.07348043721224, 47.272327492912929 ], [ 16.083734166890213, 47.234241601114029 ], [ 16.090014113418867, 47.200610938367774 ], [ 16.088709821837281, 47.199163592268384 ], [ 16.099793329518068, 47.184351259774807 ], [ 16.106498791610996, 47.167486430814769 ], [ 16.112237068087179, 47.133891695121079 ], [ 16.09200488331858, 47.112900947470955 ], [ 16.08379119127893, 47.088540159123625 ], [ 16.0955744934835, 47.061767746088016 ], [ 16.127938594903458, 47.012827133836367 ], [ 16.142810831509557, 47.000501223744557 ], [ 16.151740961122126, 46.99151535103217 ], [ 16.104969698078822, 46.966031480721185 ], [ 16.092612098137973, 46.954737775552992 ], [ 16.0920023328516, 46.935046143625151 ], [ 16.051258370533102, 46.911077148922466 ], [ 16.032607364588106, 46.893565782674635 ], [ 16.020635651813429, 46.888630613920313 ], [ 15.999889799681938, 46.847595478742932 ], [ 15.993444557407093, 46.8361010228545 ], [ 15.990246335972122, 46.805038270112412 ], [ 15.991074058234284, 46.731309120135435 ], [ 15.998980769151713, 46.679139410017747 ], [ 15.944271763223398, 46.689769621296598 ], [ 15.874362255140666, 46.720374191638349 ], [ 15.827678233311913, 46.722356741882379 ], [ 15.749649088414047, 46.698673134056747 ], [ 15.671143464648242, 46.707698920368387 ], [ 15.611752080737702, 46.682874015004302 ], [ 15.567357317663744, 46.681614908969578 ], [ 15.543483174661946, 46.670858586786288 ], [ 15.540751620293973, 46.6329194776281 ], [ 15.470055643657179, 46.612702899943322 ], [ 15.446856573597634, 46.643045303573068 ], [ 15.38009834434934, 46.652329541572676 ], [ 15.305197043876301, 46.653143869104198 ], [ 15.233115175955071, 46.640092008456122 ], [ 15.179858196910967, 46.656728141586918 ], [ 15.062313842013335, 46.652776574936851 ] ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/belgium.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/belgium.geojson new file mode 100644 index 000000000000..98acae908046 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/belgium.geojson @@ -0,0 +1,17 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "BE-VWV", "NAME_1": "West Flanders" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.650618123000044, 50.812248434000097 ], [ 2.642453247000049, 50.812455139000079 ], [ 2.627777140000148, 50.814418844 ], [ 2.620439087000136, 50.816485902000053 ], [ 2.615168091000015, 50.822170309000015 ], [ 2.606589803000077, 50.834831034000061 ], [ 2.602042277000066, 50.838086649000033 ], [ 2.589949992000072, 50.842014059000107 ], [ 2.586746053000098, 50.845424704000024 ], [ 2.587779582000081, 50.850023906000061 ], [ 2.595531046000076, 50.861134339 ], [ 2.596667928000102, 50.867645569000061 ], [ 2.576927531000138, 50.911518860000072 ], [ 2.582715291000113, 50.92066558900008 ], [ 2.605762980000065, 50.935238343000023 ], [ 2.611654093000055, 50.941232809000056 ], [ 2.608450154000082, 50.961128235000061 ], [ 2.592740519000131, 50.976114400000128 ], [ 2.556980428000116, 51.001177470000059 ], [ 2.547058553000113, 51.020478618000098 ], [ 2.537033325000095, 51.064610291000079 ], [ 2.521799927545686, 51.08754088371883 ], [ 2.542002800000091, 51.096869208000044 ], [ 2.579925977000073, 51.104803778000075 ], [ 2.715668165000068, 51.169501044000071 ], [ 2.92359459700009, 51.246486721000053 ], [ 3.124847852000073, 51.329657294000071 ], [ 3.34896894600007, 51.375148830000057 ], [ 3.349414674000116, 51.375223118000051 ], [ 3.358068481000061, 51.336712546000015 ], [ 3.353934366000146, 51.311907858000083 ], [ 3.353210897000054, 51.288601787000047 ], [ 3.367370240000099, 51.263487040000101 ], [ 3.391658163000102, 51.24676971500007 ], [ 3.398798476568402, 51.24469829349141 ], [ 3.400030552268163, 51.242660631183185 ], [ 3.366957635086806, 51.229586494121406 ], [ 3.384062533559074, 51.203644925572803 ], [ 3.359826287353258, 51.192844549836082 ], [ 3.387008091150449, 51.18721181887031 ], [ 3.410314162268776, 51.161115220690874 ], [ 3.374450718026196, 51.118120428714803 ], [ 3.330680779694205, 51.100137031099052 ], [ 3.443800489700834, 51.049313259399355 ], [ 3.422148064981229, 51.039468898970483 ], [ 3.452017043052081, 51.00704193783514 ], [ 3.425868768029204, 50.982418118001704 ], [ 3.442973667400793, 50.967793688228085 ], [ 3.412071160555627, 50.958957018151864 ], [ 3.460233594604688, 50.943712469854574 ], [ 3.440131462596923, 50.943945013851305 ], [ 3.455324334050772, 50.934384874262491 ], [ 3.448399691892234, 50.929863186436876 ], [ 3.424731885568065, 50.932059435194731 ], [ 3.432586703713412, 50.920561428367193 ], [ 3.419150832345053, 50.912189846284377 ], [ 3.427315707953539, 50.898443914754864 ], [ 3.45046675034024, 50.907461452883695 ], [ 3.46607303204479, 50.9033531762081 ], [ 3.474031202977642, 50.884594632236485 ], [ 3.45046675034024, 50.869298407995132 ], [ 3.512375115918871, 50.835502021301238 ], [ 3.499456007588662, 50.825218411300625 ], [ 3.522503696288538, 50.805167955236925 ], [ 3.520023227589888, 50.797907416294208 ], [ 3.457607785570815, 50.768514830694869 ], [ 3.41275264300009, 50.747405008000044 ], [ 3.367432412000085, 50.717303486000048 ], [ 3.363453327000059, 50.709655375000068 ], [ 3.35363480500007, 50.711644917000058 ], [ 3.34779536800005, 50.711929137000084 ], [ 3.323145710000063, 50.723452982000083 ], [ 3.324582405000058, 50.73715651100008 ], [ 3.303301960000056, 50.756422546000067 ], [ 3.260823932000051, 50.752340107000066 ], [ 3.219689492000043, 50.76727459600005 ], [ 3.175068197000087, 50.752715222000063 ], [ 3.162810519000061, 50.749939075000029 ], [ 3.146195109000104, 50.768891907000025 ], [ 3.129245239000085, 50.779072165000102 ], [ 3.103303671000049, 50.784084778000064 ], [ 3.023816593000049, 50.768262116000074 ], [ 3.022962125000049, 50.771618256000068 ], [ 3.014424008000049, 50.805130366000071 ], [ 2.998824421000052, 50.81161297500006 ], [ 2.940636758000039, 50.796678486000076 ], [ 2.939706582000042, 50.792234313000051 ], [ 2.960205294000048, 50.776795737000043 ], [ 2.922446653000065, 50.766964538000082 ], [ 2.918105834000073, 50.757714456000087 ], [ 2.889632120000044, 50.754148782000073 ], [ 2.87542110000004, 50.76246868800007 ], [ 2.868806517000053, 50.761228453000058 ], [ 2.842193154000086, 50.750841491000074 ], [ 2.86250199300008, 50.709552022000082 ], [ 2.866725884000061, 50.700091003000068 ], [ 2.786733846000033, 50.723364970000048 ], [ 2.768233683000119, 50.733235169000054 ], [ 2.762962687000083, 50.739384665000031 ], [ 2.74952681500011, 50.75959014900009 ], [ 2.743842407000074, 50.766204732000105 ], [ 2.706635376000065, 50.788787334000048 ], [ 2.700020792000089, 50.796280416000073 ], [ 2.696920207000119, 50.803050028000101 ], [ 2.691855916000065, 50.808837789000094 ], [ 2.678730102000088, 50.813230286000064 ], [ 2.669221639000114, 50.813902079000073 ], [ 2.650618123000044, 50.812248434000097 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BE-WHT", "NAME_1": "Hainaut" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 2.886882772000149, 50.696648255000085 ], [ 2.87127648900011, 50.698766989000077 ], [ 2.866725884000061, 50.700091003000068 ], [ 2.86250199300008, 50.709552022000082 ], [ 2.842193154000086, 50.750841491000074 ], [ 2.868806517000053, 50.761228453000058 ], [ 2.87542110000004, 50.76246868800007 ], [ 2.889632120000044, 50.754148782000073 ], [ 2.918105834000073, 50.757714456000087 ], [ 2.922446653000065, 50.766964538000082 ], [ 2.960205294000048, 50.776795737000043 ], [ 2.939706582000042, 50.792234313000051 ], [ 2.940636758000039, 50.796678486000076 ], [ 2.998824421000052, 50.81161297500006 ], [ 3.014424008000049, 50.805130366000071 ], [ 3.022962125000049, 50.771618256000068 ], [ 3.023816593000049, 50.768262116000074 ], [ 2.971425415000112, 50.757833150000025 ], [ 2.948377726000047, 50.748686422000034 ], [ 2.930187622000119, 50.736232402000056 ], [ 2.900111938000038, 50.703107809000059 ], [ 2.886882772000149, 50.696648255000085 ] ] ], [ [ [ 3.361065714000091, 50.48978749700008 ], [ 3.343599080000047, 50.492939759000066 ], [ 3.299880819000066, 50.507460836000106 ], [ 3.286755005000089, 50.51407542 ], [ 3.27104537000011, 50.526942851000101 ], [ 3.265877726000042, 50.53831166600007 ], [ 3.264327433000091, 50.570196025000044 ], [ 3.237869100000097, 50.626471660000036 ], [ 3.229807576000042, 50.655410462000091 ], [ 3.243760213000115, 50.672101950000027 ], [ 3.232391398000118, 50.695924785 ], [ 3.224433227000077, 50.705174866000036 ], [ 3.210997355000103, 50.707965394000084 ], [ 3.1969413650001, 50.709205628000021 ], [ 3.188983195000048, 50.715096742000114 ], [ 3.176684204000082, 50.734113668000091 ], [ 3.162810519000061, 50.749939075000029 ], [ 3.175068197000087, 50.752715222000063 ], [ 3.219689492000043, 50.76727459600005 ], [ 3.260823932000051, 50.752340107000066 ], [ 3.303301960000056, 50.756422546000067 ], [ 3.324582405000058, 50.73715651100008 ], [ 3.323145710000063, 50.723452982000083 ], [ 3.34779536800005, 50.711929137000084 ], [ 3.35363480500007, 50.711644917000058 ], [ 3.363453327000059, 50.709655375000068 ], [ 3.367432412000085, 50.717303486000048 ], [ 3.41275264300009, 50.747405008000044 ], [ 3.457607785570815, 50.768514830694869 ], [ 3.494143024000039, 50.758877176000055 ], [ 3.533979145000046, 50.766420721000088 ], [ 3.540545448000046, 50.734939611000073 ], [ 3.60664261800008, 50.73420167900008 ], [ 3.634651244000054, 50.721851013000048 ], [ 3.675320596000063, 50.771925475000046 ], [ 3.704001016000063, 50.782105733000037 ], [ 3.714543008000078, 50.768644022000046 ], [ 3.757794537000052, 50.780322451000075 ], [ 3.774634822000053, 50.74896996800004 ], [ 3.814691933000063, 50.751900858000056 ], [ 3.828024453000069, 50.743503437000072 ], [ 3.884402746000092, 50.751383996000072 ], [ 3.894988299870136, 50.734164335715491 ], [ 3.887969115000089, 50.717561869000065 ], [ 3.892770668000082, 50.706409874000087 ], [ 3.906934365000041, 50.69466920900004 ], [ 3.928225056000088, 50.689811624000072 ], [ 3.988841511000089, 50.688726419000034 ], [ 4.008995320000054, 50.698984191000079 ], [ 4.02801224600006, 50.695030944000052 ], [ 4.051473347000069, 50.702834085000063 ], [ 4.058501342000056, 50.696012796000048 ], [ 4.072712360000082, 50.712910990000069 ], [ 4.09973913500005, 50.707123229000047 ], [ 4.11244184711353, 50.706879381478245 ], [ 4.094200067079441, 50.703468735893409 ], [ 4.090220980713696, 50.690601305305961 ], [ 4.091357863174835, 50.653652656345002 ], [ 4.101124709237922, 50.636030992136568 ], [ 4.118643018860212, 50.631328437157606 ], [ 4.141845737191034, 50.633576361859582 ], [ 4.173316684817166, 50.661094062441009 ], [ 4.184323765229578, 50.663884589502175 ], [ 4.203650749982103, 50.647709866117395 ], [ 4.198586459797298, 50.62678091091027 ], [ 4.25196821456143, 50.618202623252444 ], [ 4.246490513226604, 50.597325343989382 ], [ 4.278943311884348, 50.593010361738777 ], [ 4.304109734976294, 50.568128160386266 ], [ 4.333616977841245, 50.570014349882342 ], [ 4.33082644988076, 50.544563706849544 ], [ 4.35583784334176, 50.562392075733669 ], [ 4.41252689000396, 50.56626780931191 ], [ 4.422965528736142, 50.559343167153429 ], [ 4.468079054204964, 50.55954987182912 ], [ 4.472884962870751, 50.554408067278473 ], [ 4.470094434910209, 50.529732571500972 ], [ 4.503063999304118, 50.540687975069943 ], [ 4.501875440898857, 50.531386217000261 ], [ 4.516551548415237, 50.52717458843648 ], [ 4.576754590751761, 50.543426826187044 ], [ 4.558926221867637, 50.494127508777467 ], [ 4.594789666110216, 50.499863593430064 ], [ 4.586986524808253, 50.490613512203822 ], [ 4.599337192357552, 50.479838975788084 ], [ 4.586004672877323, 50.456455390303972 ], [ 4.57246544782214, 50.454930935114533 ], [ 4.582128940198402, 50.447877101746826 ], [ 4.57267215339715, 50.44177928278765 ], [ 4.615977003735736, 50.42519114825285 ], [ 4.601094190644346, 50.404288032366765 ], [ 4.585126173733897, 50.401213284465484 ], [ 4.605848423366012, 50.385736192171521 ], [ 4.581560500316812, 50.360027166720329 ], [ 4.587865023951679, 50.32248423945606 ], [ 4.520272250563892, 50.315430406088353 ], [ 4.501978793686362, 50.330442410388912 ], [ 4.47417687316414, 50.328788763990246 ], [ 4.45376468279386, 50.306232000806176 ], [ 4.398315871380362, 50.311218777524516 ], [ 4.39015099397318, 50.292537747019367 ], [ 4.372167596357485, 50.293106187800277 ], [ 4.359248488027276, 50.278068345977374 ], [ 4.325710482852514, 50.276621406053039 ], [ 4.285971306830334, 50.257966213969553 ], [ 4.302456088577628, 50.243600164815746 ], [ 4.338939650444502, 50.229776719819711 ], [ 4.346639438958903, 50.230035102238162 ], [ 4.365139601411443, 50.243729356024915 ], [ 4.386223586249514, 50.240757961810459 ], [ 4.400537956761298, 50.233729966864473 ], [ 4.38844567163045, 50.20169057935675 ], [ 4.396558872194191, 50.187350369523926 ], [ 4.360075311226637, 50.169341131687872 ], [ 4.398367547324426, 50.126423854976906 ], [ 4.385345086206769, 50.109344794026981 ], [ 4.386171909406073, 50.069295558743022 ], [ 4.39056440602252, 50.052965807525993 ], [ 4.406739129407299, 50.049322617944426 ], [ 4.414748976284216, 49.997310288738788 ], [ 4.443997836730773, 49.958966375797559 ], [ 4.430561965362415, 49.937779039071359 ], [ 4.427719760558489, 49.933670763295083 ], [ 4.42765120883621, 49.933571674193388 ], [ 4.27759891700012, 49.960155742 ], [ 4.215944527318072, 49.954410856375887 ], [ 4.201117798000041, 49.953024394000053 ], [ 4.187681925000078, 49.95550486300003 ], [ 4.131664672000056, 49.974986878000024 ], [ 4.132364978000112, 49.974945951 ], [ 4.139622843000041, 49.97452179 ], [ 4.138382609000075, 49.989197897000068 ], [ 4.132904907000096, 50.004494121000036 ], [ 4.128150675000114, 50.005786031000085 ], [ 4.132284790000114, 50.017568258 ], [ 4.137349080000092, 50.025061341000125 ], [ 4.14458378100008, 50.030797425000074 ], [ 4.162877238000135, 50.041804505000087 ], [ 4.186028279000141, 50.05244984900007 ], [ 4.210006144000147, 50.060149638000055 ], [ 4.210316203000048, 50.066712545000044 ], [ 4.203391561000046, 50.074670716000114 ], [ 4.197397095000042, 50.084075827000063 ], [ 4.180550578000037, 50.127225647000088 ], [ 4.170628703000148, 50.13048126200006 ], [ 4.159880005000048, 50.129396058000069 ], [ 4.139932902000112, 50.123556620000087 ], [ 4.125773559000066, 50.128155823000029 ], [ 4.128150675000114, 50.146242575000045 ], [ 4.147374308000025, 50.186343486000041 ], [ 4.152748657000103, 50.20453359 ], [ 4.157296183000113, 50.212698466000106 ], [ 4.167941528000114, 50.222465312000068 ], [ 4.19150598100012, 50.234299215000064 ], [ 4.20132450300008, 50.241533916000051 ], [ 4.203701619000128, 50.251972554000091 ], [ 4.197603800000081, 50.258483785000053 ], [ 4.185201457000119, 50.265460104000041 ], [ 4.17176558500006, 50.270886129000118 ], [ 4.162773885000121, 50.272953187000084 ], [ 4.150268189000116, 50.269542542000053 ], [ 4.149751424000073, 50.26313466500001 ], [ 4.150991658000123, 50.256261698000046 ], [ 4.143653605000111, 50.251610820000067 ], [ 4.125256795000041, 50.257140198000073 ], [ 4.097868286000079, 50.294812317000023 ], [ 4.077197713000146, 50.306646220000047 ], [ 4.055907023000088, 50.31455271500009 ], [ 4.022730753000076, 50.338117167000078 ], [ 4.003300415000098, 50.344059957000084 ], [ 3.982113077000122, 50.34261301700009 ], [ 3.918551066000049, 50.325456441000043 ], [ 3.895916789000097, 50.32530141300002 ], [ 3.878036743000052, 50.330779114000094 ], [ 3.860880168000079, 50.338478902000091 ], [ 3.840209595000061, 50.345196839000025 ], [ 3.798661743000082, 50.348452454 ], [ 3.755046834000041, 50.346333721000022 ], [ 3.741507609000053, 50.343129781000059 ], [ 3.733446085000054, 50.33723866800004 ], [ 3.71546268700007, 50.317653300000032 ], [ 3.711121867000088, 50.309333395000053 ], [ 3.708434692000083, 50.306336162000051 ], [ 3.703887167000119, 50.304320780000111 ], [ 3.702233520000078, 50.305250956000052 ], [ 3.700786580000084, 50.304682516000085 ], [ 3.696859172000131, 50.298222962000054 ], [ 3.661719198000071, 50.319306946000083 ], [ 3.652934204000076, 50.360183004000092 ], [ 3.652830851000147, 50.406846822000048 ], [ 3.644355916000052, 50.445500793000051 ], [ 3.628129517000048, 50.46436269200008 ], [ 3.608285766000051, 50.476506653000072 ], [ 3.586374959000096, 50.483482971000072 ], [ 3.56374068100007, 50.486531881000118 ], [ 3.499145142000089, 50.486790263000088 ], [ 3.486742798000137, 50.492681376000078 ], [ 3.496457967000083, 50.50379181000001 ], [ 3.498008260000091, 50.511853332 ], [ 3.491497029000129, 50.517072652000095 ], [ 3.477130982000119, 50.519863180000058 ], [ 3.462868286000059, 50.519139710000061 ], [ 3.45263635200007, 50.514850566000106 ], [ 3.442714477000067, 50.508494365000089 ], [ 3.429175252000078, 50.501828105000058 ], [ 3.385353637000094, 50.491647848000085 ], [ 3.361065714000091, 50.48978749700008 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BE-WNA", "NAME_1": "Namur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.831363566000078, 50.143400371000084 ], [ 4.820098103000106, 50.146449280000112 ], [ 4.815550578000085, 50.161332092000052 ], [ 4.788575480000134, 50.153373922000085 ], [ 4.681915324000073, 50.083920797000118 ], [ 4.676127563000108, 50.076065980000081 ], [ 4.673440389000064, 50.066195781000019 ], [ 4.675817505000111, 50.060201315000072 ], [ 4.67953820800011, 50.055188700000102 ], [ 4.680571737000093, 50.04831573500006 ], [ 4.672923624000134, 50.016379700000059 ], [ 4.665895629000119, 50.000515035000049 ], [ 4.656697225000102, 49.989094544000054 ], [ 4.645845174000073, 49.984495342000102 ], [ 4.60419396900005, 49.980206198000033 ], [ 4.464770956000081, 49.935609436000036 ], [ 4.435108683000095, 49.932250468000106 ], [ 4.42765120883621, 49.933571674193388 ], [ 4.427719760558489, 49.933670763295083 ], [ 4.430561965362415, 49.937779039071359 ], [ 4.443997836730773, 49.958966375797559 ], [ 4.414748976284216, 49.997310288738788 ], [ 4.406739129407299, 50.049322617944426 ], [ 4.39056440602252, 50.052965807525993 ], [ 4.386171909406073, 50.069295558743022 ], [ 4.385345086206769, 50.109344794026981 ], [ 4.398367547324426, 50.126423854976906 ], [ 4.360075311226637, 50.169341131687872 ], [ 4.396558872194191, 50.187350369523926 ], [ 4.38844567163045, 50.20169057935675 ], [ 4.400537956761298, 50.233729966864473 ], [ 4.386223586249514, 50.240757961810459 ], [ 4.365139601411443, 50.243729356024915 ], [ 4.346639438958903, 50.230035102238162 ], [ 4.338939650444502, 50.229776719819711 ], [ 4.302456088577628, 50.243600164815746 ], [ 4.285971306830334, 50.257966213969553 ], [ 4.325710482852514, 50.276621406053039 ], [ 4.359248488027276, 50.278068345977374 ], [ 4.372167596357485, 50.293106187800277 ], [ 4.39015099397318, 50.292537747019367 ], [ 4.398315871380362, 50.311218777524516 ], [ 4.45376468279386, 50.306232000806176 ], [ 4.47417687316414, 50.328788763990246 ], [ 4.501978793686362, 50.330442410388912 ], [ 4.520272250563892, 50.315430406088353 ], [ 4.587865023951679, 50.32248423945606 ], [ 4.581560500316812, 50.360027166720329 ], [ 4.605848423366012, 50.385736192171521 ], [ 4.585126173733897, 50.401213284465484 ], [ 4.601094190644346, 50.404288032366765 ], [ 4.615977003735736, 50.42519114825285 ], [ 4.57267215339715, 50.44177928278765 ], [ 4.582128940198402, 50.447877101746826 ], [ 4.57246544782214, 50.454930935114533 ], [ 4.586004672877323, 50.456455390303972 ], [ 4.599337192357552, 50.479838975788084 ], [ 4.586986524808253, 50.490613512203822 ], [ 4.594789666110216, 50.499863593430064 ], [ 4.558926221867637, 50.494127508777467 ], [ 4.576754590751761, 50.543426826187044 ], [ 4.573188918233996, 50.560428371871865 ], [ 4.590138787075375, 50.568929145163906 ], [ 4.607812127227874, 50.570479437875747 ], [ 4.644192336307242, 50.5622370470021 ], [ 4.666619907382824, 50.565440986112606 ], [ 4.655044386189445, 50.596576036055183 ], [ 4.666103143445298, 50.608487454032741 ], [ 4.67576663582156, 50.608539129976862 ], [ 4.703723585974728, 50.596059272117714 ], [ 4.708271112222064, 50.607092190052526 ], [ 4.734109327983106, 50.611665553822206 ], [ 4.740465529360677, 50.591563421814442 ], [ 4.780721470219646, 50.601614487818324 ], [ 4.791935256207069, 50.590969143511131 ], [ 4.788059522628828, 50.602622179070295 ], [ 4.793227165601195, 50.605671088549855 ], [ 4.900404087178856, 50.623680325486589 ], [ 4.901437615953228, 50.629829820389887 ], [ 4.927947625282684, 50.628357042043831 ], [ 4.950840285250933, 50.64796824853579 ], [ 4.982569614396198, 50.64336904634439 ], [ 4.979107292867241, 50.619287827970879 ], [ 5.027734815809083, 50.589935614736817 ], [ 5.053366326894434, 50.541928209419325 ], [ 5.034556105180116, 50.532884832868717 ], [ 5.090366651799513, 50.530921129006856 ], [ 5.105352816779032, 50.507356676369511 ], [ 5.119047072364481, 50.50575470591491 ], [ 5.142818230576893, 50.512886054547778 ], [ 5.129279006420973, 50.504566148408969 ], [ 5.136255323624255, 50.488753160230146 ], [ 5.15604739726956, 50.490613512203822 ], [ 5.151034783928139, 50.48188019491505 ], [ 5.162093540284673, 50.469942939415091 ], [ 5.19594160292263, 50.478624578961103 ], [ 5.217594027642235, 50.464671942755899 ], [ 5.236094190994095, 50.438058579739618 ], [ 5.220487909289545, 50.418421535725258 ], [ 5.232786899096084, 50.40555410423849 ], [ 5.282396273968857, 50.396949978158943 ], [ 5.281259393306357, 50.378449814807084 ], [ 5.295108676724055, 50.366176663422266 ], [ 5.349937371412523, 50.389741116059611 ], [ 5.392415398551805, 50.380465196411649 ], [ 5.401200391784641, 50.36757192650316 ], [ 5.380219760633452, 50.349640203932267 ], [ 5.39443078015637, 50.337754625275693 ], [ 5.34006717256193, 50.311838894249547 ], [ 5.347766961076388, 50.306645412855516 ], [ 5.360220981413136, 50.318143418783734 ], [ 5.383372022900517, 50.319176948457368 ], [ 5.39365563290113, 50.30323476817 ], [ 5.392673780970199, 50.288067735137815 ], [ 5.365181918810492, 50.269696763894501 ], [ 5.294488559999024, 50.240447903447944 ], [ 5.283998244423458, 50.249232897580157 ], [ 5.27304283995511, 50.248535264690702 ], [ 5.250718620767714, 50.238845933892719 ], [ 5.253250767209124, 50.227063707124387 ], [ 5.224466993856652, 50.228252265529591 ], [ 5.205863477717287, 50.219906520969118 ], [ 5.244362420289463, 50.206186427861326 ], [ 5.23351036860862, 50.196264553066669 ], [ 5.245550977795403, 50.196212877122548 ], [ 5.244052361926947, 50.186006782387096 ], [ 5.27955407096357, 50.1594709337366 ], [ 5.270252312893888, 50.141435859277465 ], [ 5.241778598803307, 50.135544744993979 ], [ 5.267255080257712, 50.120300198495329 ], [ 5.262190789173587, 50.109603176445432 ], [ 5.235370720582296, 50.111308498788162 ], [ 5.208292271371192, 50.099061184026368 ], [ 5.187001580058848, 50.096218981021138 ], [ 5.093312209390945, 50.092007351557982 ], [ 5.072073194921984, 50.096761583380328 ], [ 5.066233758381259, 50.12477020947756 ], [ 5.051505974920815, 50.086322943748826 ], [ 5.060187616265466, 50.080612698417269 ], [ 5.049645622947139, 50.063714505520011 ], [ 5.016986117815065, 50.041829535904355 ], [ 5.007322625438803, 50.039684963989885 ], [ 4.99817589700001, 50.045834458893125 ], [ 4.991147902054024, 50.030331529076761 ], [ 4.97218265070876, 50.030641588338597 ], [ 4.996522250601345, 50.015345364097243 ], [ 5.009441358931554, 49.98271169738689 ], [ 5.020035028194002, 49.97927521427971 ], [ 5.062564731277291, 49.984778754036256 ], [ 5.071763135660149, 49.971291204925137 ], [ 5.100960321061962, 49.96155019818309 ], [ 5.09723961801393, 49.939277655839135 ], [ 5.118892042733592, 49.92529918121221 ], [ 5.068714227079909, 49.912405911303722 ], [ 5.043237745625447, 49.896851305543294 ], [ 5.059929232947752, 49.886102607549276 ], [ 4.984946730307342, 49.851272691181748 ], [ 4.980657585579081, 49.842539373892976 ], [ 4.989184198192163, 49.823367417872021 ], [ 4.976265089862011, 49.820938626016755 ], [ 4.971769239558739, 49.80388540348855 ], [ 4.968513625403489, 49.797270819692528 ], [ 4.968370956954061, 49.796980956505934 ], [ 4.950012654000119, 49.79639312799999 ], [ 4.906604451000106, 49.786471252000084 ], [ 4.884176879000023, 49.78414581300008 ], [ 4.858028605000129, 49.786574605000041 ], [ 4.849036906000066, 49.794171041000098 ], [ 4.849243611000134, 49.83158477800005 ], [ 4.846763142000071, 49.837527568000084 ], [ 4.836944620000082, 49.848017884000015 ], [ 4.834877564000124, 49.853030498000081 ], [ 4.836737915000128, 49.859128317000042 ], [ 4.845626261000064, 49.865846253000072 ], [ 4.848933553000052, 49.871065572000091 ], [ 4.854307902000102, 49.883312887000031 ], [ 4.85937219200008, 49.891684469 ], [ 4.8619560140001, 49.900314433000048 ], [ 4.860199016000109, 49.913336894000068 ], [ 4.84459273300007, 49.931733704000081 ], [ 4.797257120000097, 49.944291077000074 ], [ 4.783924601000081, 49.958295390000089 ], [ 4.78826542200008, 49.974263408000027 ], [ 4.826712687000111, 50.036016744 ], [ 4.827642863000079, 50.046713766000025 ], [ 4.826092570000128, 50.055033672000079 ], [ 4.827229451000051, 50.064077047000026 ], [ 4.846039673000064, 50.09069041000005 ], [ 4.852137492000111, 50.091620586000019 ], [ 4.86288619000004, 50.084075827000063 ], [ 4.865159953000074, 50.101594137000021 ], [ 4.870534302000124, 50.122264710000039 ], [ 4.871877889000075, 50.13978302 ], [ 4.862679484000097, 50.147586162000025 ], [ 4.831363566000078, 50.143400371000084 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BE-WLX", "NAME_1": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.192478475000087, 49.682808329000025 ], [ 5.169430786000135, 49.687200827000126 ], [ 5.151240682000093, 49.695985820000018 ], [ 5.13635787000004, 49.705339254000066 ], [ 5.093776489000078, 49.745336812000019 ], [ 5.081890909000037, 49.752726543000037 ], [ 5.04623417200014, 49.75939280200005 ], [ 5.026287068000045, 49.766730856000052 ], [ 4.989080037000122, 49.790553691000113 ], [ 4.970993286000123, 49.797064922000075 ], [ 4.968370956954061, 49.796980956505934 ], [ 4.968513625403489, 49.797270819692528 ], [ 4.971769239558739, 49.80388540348855 ], [ 4.976265089862011, 49.820938626016755 ], [ 4.989184198192163, 49.823367417872021 ], [ 4.980657585579081, 49.842539373892976 ], [ 4.984946730307342, 49.851272691181748 ], [ 5.059929232947752, 49.886102607549276 ], [ 5.043237745625447, 49.896851305543294 ], [ 5.068714227079909, 49.912405911303722 ], [ 5.118892042733592, 49.92529918121221 ], [ 5.09723961801393, 49.939277655839135 ], [ 5.100960321061962, 49.96155019818309 ], [ 5.071763135660149, 49.971291204925137 ], [ 5.062564731277291, 49.984778754036256 ], [ 5.020035028194002, 49.97927521427971 ], [ 5.009441358931554, 49.98271169738689 ], [ 4.996522250601345, 50.015345364097243 ], [ 4.97218265070876, 50.030641588338597 ], [ 4.991147902054024, 50.030331529076761 ], [ 4.99817589700001, 50.045834458893125 ], [ 5.007322625438803, 50.039684963989885 ], [ 5.016986117815065, 50.041829535904355 ], [ 5.049645622947139, 50.063714505520011 ], [ 5.060187616265466, 50.080612698417269 ], [ 5.051505974920815, 50.086322943748826 ], [ 5.066233758381259, 50.12477020947756 ], [ 5.072073194921984, 50.096761583380328 ], [ 5.093312209390945, 50.092007351557982 ], [ 5.187001580058848, 50.096218981021138 ], [ 5.208292271371192, 50.099061184026368 ], [ 5.235370720582296, 50.111308498788162 ], [ 5.262190789173587, 50.109603176445432 ], [ 5.267255080257712, 50.120300198495329 ], [ 5.241778598803307, 50.135544744993979 ], [ 5.270252312893888, 50.141435859277465 ], [ 5.27955407096357, 50.1594709337366 ], [ 5.244052361926947, 50.186006782387096 ], [ 5.245550977795403, 50.196212877122548 ], [ 5.23351036860862, 50.196264553066669 ], [ 5.244362420289463, 50.206186427861326 ], [ 5.205863477717287, 50.219906520969118 ], [ 5.224466993856652, 50.228252265529591 ], [ 5.253250767209124, 50.227063707124387 ], [ 5.250718620767714, 50.238845933892719 ], [ 5.27304283995511, 50.248535264690702 ], [ 5.283998244423458, 50.249232897580157 ], [ 5.294488559999024, 50.240447903447944 ], [ 5.365181918810492, 50.269696763894501 ], [ 5.392673780970199, 50.288067735137815 ], [ 5.39365563290113, 50.30323476817 ], [ 5.383372022900517, 50.319176948457368 ], [ 5.360220981413136, 50.318143418783734 ], [ 5.347766961076388, 50.306645412855516 ], [ 5.34006717256193, 50.311838894249547 ], [ 5.39443078015637, 50.337754625275693 ], [ 5.380219760633452, 50.349640203932267 ], [ 5.401200391784641, 50.36757192650316 ], [ 5.392415398551805, 50.380465196411649 ], [ 5.425746698151613, 50.400593166841134 ], [ 5.405696242087913, 50.423382473122615 ], [ 5.41179406104709, 50.430307115281096 ], [ 5.425074903683822, 50.430772203274557 ], [ 5.468483106809913, 50.409068101711512 ], [ 5.508635694881377, 50.42596629550809 ], [ 5.51778242421949, 50.406277573751026 ], [ 5.534680617116749, 50.404107164314155 ], [ 5.531580030793748, 50.395115465506308 ], [ 5.537109408972015, 50.391911526395802 ], [ 5.553697544406134, 50.390283718418857 ], [ 5.587700635775718, 50.400593166841134 ], [ 5.641857536895827, 50.368243720071575 ], [ 5.67503380686469, 50.369587307208462 ], [ 5.670279575042343, 50.357650050809184 ], [ 5.720767449957862, 50.357546698920999 ], [ 5.703404168167822, 50.332638658247447 ], [ 5.704489372886258, 50.321631577835035 ], [ 5.720612420326916, 50.304113268212745 ], [ 5.747587517649833, 50.299824124383804 ], [ 5.720715773114421, 50.263082180098479 ], [ 5.780867140406201, 50.269024970326086 ], [ 5.797248569365991, 50.265717678428075 ], [ 5.803914829106077, 50.256105861995934 ], [ 5.810426060114594, 50.265872708059021 ], [ 5.873781365617504, 50.271505439024793 ], [ 5.880292595726701, 50.281323961031944 ], [ 5.845462681157812, 50.284579576086514 ], [ 5.867786899445832, 50.319461168398163 ], [ 5.849286736993292, 50.329538071924446 ], [ 5.858071730226129, 50.347883206544736 ], [ 5.97930463989718, 50.330881659960596 ], [ 5.98106163908335, 50.32230337230277 ], [ 6.012997673803568, 50.311761379883762 ], [ 6.007468295625358, 50.218743800985578 ], [ 6.011912469085189, 50.207659207106701 ], [ 6.033823276223188, 50.204842840724496 ], [ 6.019870640017984, 50.194688421933108 ], [ 6.024056431059421, 50.183862210472626 ], [ 6.024934930202846, 50.18161428487133 ], [ 6.022971226340985, 50.150892646078717 ], [ 6.022966605624333, 50.150820360371313 ], [ 6.014133749000052, 50.153580628000057 ], [ 6.008035929000073, 50.160918681000041 ], [ 6.004728638000074, 50.170478821000032 ], [ 5.998320760000041, 50.174974671000072 ], [ 5.982921183000144, 50.167068177000019 ], [ 5.961630493000087, 50.165621236000035 ], [ 5.953155558000077, 50.156371155 ], [ 5.949021444000067, 50.142676900000069 ], [ 5.941063273000083, 50.12831085200007 ], [ 5.926180461000058, 50.118337301000068 ], [ 5.888973429000117, 50.106606751000086 ], [ 5.872436971000127, 50.096891581000037 ], [ 5.868819621000057, 50.090535381 ], [ 5.866855916000134, 50.074308981000016 ], [ 5.864375447000043, 50.067487691000068 ], [ 5.858277628000081, 50.061803284000106 ], [ 5.843704874000139, 50.053638408 ], [ 5.837710408000106, 50.047437236000107 ], [ 5.838847290000103, 50.035861715000053 ], [ 5.838847290000103, 50.026456604000018 ], [ 5.836366821000126, 50.018550110000049 ], [ 5.829132121000072, 50.013589173000113 ], [ 5.808874959000065, 50.007801412000035 ], [ 5.802673787000089, 50.002478740000086 ], [ 5.801536906000081, 49.988681133000043 ], [ 5.808564901000096, 49.983100078000021 ], [ 5.812595662000092, 49.977570700000015 ], [ 5.801640258000106, 49.963824768000094 ], [ 5.793372029000068, 49.958812155000018 ], [ 5.778592570000058, 49.956590067000022 ], [ 5.771564575000127, 49.953541158000078 ], [ 5.7637097570001, 49.946823222000077 ], [ 5.759989054000101, 49.94160390200004 ], [ 5.757611939000128, 49.936539612000061 ], [ 5.75358117600004, 49.930183411000044 ], [ 5.718957967000051, 49.891374410000097 ], [ 5.714927205000038, 49.881865946000019 ], [ 5.726709432000064, 49.878196920000036 ], [ 5.748826945000047, 49.867293193000066 ], [ 5.758128702000079, 49.858198141000074 ], [ 5.731877075000057, 49.859955139000064 ], [ 5.731980428000071, 49.85416738 ], [ 5.730533488000077, 49.851170146000086 ], [ 5.728673136000083, 49.848844707000055 ], [ 5.726916137000103, 49.84522735700007 ], [ 5.73652795400011, 49.83943959599999 ], [ 5.724642374000098, 49.834271953 ], [ 5.720198202000091, 49.824711813000093 ], [ 5.721645142000085, 49.812774557000054 ], [ 5.727742960000114, 49.800217184000033 ], [ 5.73828495300009, 49.788848368000046 ], [ 5.748413533000132, 49.785644430000062 ], [ 5.759162231000062, 49.784455872000066 ], [ 5.771874634000113, 49.779391582000088 ], [ 5.7784892170001, 49.773035380000053 ], [ 5.802053670000106, 49.74285634400006 ], [ 5.803603963000057, 49.738153789000066 ], [ 5.805774373000133, 49.72420115199999 ], [ 5.805360961000105, 49.721875713000045 ], [ 5.81176884000007, 49.718516745000031 ], [ 5.825721476000041, 49.715777894 ], [ 5.831715942000073, 49.713607483000018 ], [ 5.837296997000095, 49.712935690000037 ], [ 5.843704874000139, 49.714330954 ], [ 5.850216105000101, 49.714020894000029 ], [ 5.856003865000076, 49.708078105000098 ], [ 5.856402763876417, 49.705807450053726 ], [ 5.857347453000045, 49.700429993000014 ], [ 5.853626749000028, 49.6962958780001 ], [ 5.848769165000107, 49.692730205000046 ], [ 5.847218872000099, 49.687200827000126 ], [ 5.846702108000045, 49.68068959600005 ], [ 5.843704874000139, 49.67748565699999 ], [ 5.842257934000145, 49.673919983000118 ], [ 5.845771932000105, 49.666581930000021 ], [ 5.852593221000063, 49.66322296200012 ], [ 5.872643676000109, 49.661724345000025 ], [ 5.879878377000068, 49.657745260000027 ], [ 5.88545943200009, 49.643534241000069 ], [ 5.879878377000068, 49.63485260100002 ], [ 5.86995650200015, 49.628858135000073 ], [ 5.861998331000109, 49.622760316000026 ], [ 5.849182577000107, 49.599712626000056 ], [ 5.841224406000066, 49.589687398000038 ], [ 5.829958944000111, 49.582762756000065 ], [ 5.846908813000113, 49.576716614000091 ], [ 5.837400350000109, 49.561110332000069 ], [ 5.814456014000086, 49.545142314000131 ], [ 5.790684855000023, 49.537752585000121 ], [ 5.779005982000058, 49.539612936000125 ], [ 5.757095174000114, 49.548397929000018 ], [ 5.74634647600007, 49.549431458000086 ], [ 5.735597779000074, 49.545710755000087 ], [ 5.72267867000005, 49.53460032200006 ], [ 5.710276327000088, 49.531086325 ], [ 5.688675578000101, 49.533515117000078 ], [ 5.667178182000072, 49.540439759000051 ], [ 5.644647257000145, 49.543798727000066 ], [ 5.619739217000074, 49.535530497000124 ], [ 5.607853638000051, 49.524936829000055 ], [ 5.605579875000046, 49.517753805 ], [ 5.60227258300003, 49.513723043000098 ], [ 5.587493124000019, 49.512431133000049 ], [ 5.578914836000081, 49.513929749000042 ], [ 5.547598918000091, 49.52343821200013 ], [ 5.528788696000078, 49.517960511000055 ], [ 5.503673950000064, 49.505093079000048 ], [ 5.477723891744176, 49.495224343728466 ], [ 5.456131633000041, 49.498943584000088 ], [ 5.449930461000037, 49.50783193000008 ], [ 5.450963989000115, 49.516771952000013 ], [ 5.454167928000089, 49.526177063000077 ], [ 5.454374633000043, 49.53661570300001 ], [ 5.450240519000118, 49.545762431000085 ], [ 5.402078084000038, 49.602451477 ], [ 5.391165749000066, 49.608817006 ], [ 5.3834745690001, 49.61330352800006 ], [ 5.352468709000078, 49.62069325800006 ], [ 5.341099894000081, 49.625137432000074 ], [ 5.334898722000077, 49.625809225000054 ], [ 5.331178019000077, 49.623122050000021 ], [ 5.326940552000025, 49.617644349000031 ], [ 5.321669555000085, 49.612580058000063 ], [ 5.314538208000073, 49.611133118000069 ], [ 5.29789839700004, 49.613251852000033 ], [ 5.2930408120001, 49.617179261 ], [ 5.29066369700007, 49.62637766600001 ], [ 5.293764282000012, 49.640537008000038 ], [ 5.301825806000096, 49.643895976000053 ], [ 5.306373332000135, 49.647513327000055 ], [ 5.299448690000048, 49.662499492 ], [ 5.280121704000095, 49.67789906900002 ], [ 5.259244425000134, 49.691334941000051 ], [ 5.237643677000079, 49.690973206000066 ], [ 5.192478475000087, 49.682808329000025 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BE-WLG", "NAME_1": "Liege" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.038628377000094, 50.148412985000036 ], [ 6.02736291500014, 50.149446513000029 ], [ 6.022966605624333, 50.150820360371313 ], [ 6.022971226340985, 50.150892646078717 ], [ 6.024934930202846, 50.18161428487133 ], [ 6.024056431059421, 50.183862210472626 ], [ 6.019870640017984, 50.194688421933108 ], [ 6.033823276223188, 50.204842840724496 ], [ 6.011912469085189, 50.207659207106701 ], [ 6.007468295625358, 50.218743800985578 ], [ 6.012997673803568, 50.311761379883762 ], [ 5.98106163908335, 50.32230337230277 ], [ 5.97930463989718, 50.330881659960596 ], [ 5.858071730226129, 50.347883206544736 ], [ 5.849286736993292, 50.329538071924446 ], [ 5.867786899445832, 50.319461168398163 ], [ 5.845462681157812, 50.284579576086514 ], [ 5.880292595726701, 50.281323961031944 ], [ 5.873781365617504, 50.271505439024793 ], [ 5.810426060114594, 50.265872708059021 ], [ 5.803914829106077, 50.256105861995934 ], [ 5.797248569365991, 50.265717678428075 ], [ 5.780867140406201, 50.269024970326086 ], [ 5.720715773114421, 50.263082180098479 ], [ 5.747587517649833, 50.299824124383804 ], [ 5.720612420326916, 50.304113268212745 ], [ 5.704489372886258, 50.321631577835035 ], [ 5.703404168167822, 50.332638658247447 ], [ 5.720767449957862, 50.357546698920999 ], [ 5.670279575042343, 50.357650050809184 ], [ 5.67503380686469, 50.369587307208462 ], [ 5.641857536895827, 50.368243720071575 ], [ 5.587700635775718, 50.400593166841134 ], [ 5.553697544406134, 50.390283718418857 ], [ 5.537109408972015, 50.391911526395802 ], [ 5.531580030793748, 50.395115465506308 ], [ 5.534680617116749, 50.404107164314155 ], [ 5.51778242421949, 50.406277573751026 ], [ 5.508635694881377, 50.42596629550809 ], [ 5.468483106809913, 50.409068101711512 ], [ 5.425074903683822, 50.430772203274557 ], [ 5.41179406104709, 50.430307115281096 ], [ 5.405696242087913, 50.423382473122615 ], [ 5.425746698151613, 50.400593166841134 ], [ 5.392415398551805, 50.380465196411649 ], [ 5.349937371412523, 50.389741116059611 ], [ 5.295108676724055, 50.366176663422266 ], [ 5.281259393306357, 50.378449814807084 ], [ 5.282396273968857, 50.396949978158943 ], [ 5.232786899096084, 50.40555410423849 ], [ 5.220487909289545, 50.418421535725258 ], [ 5.236094190994095, 50.438058579739618 ], [ 5.217594027642235, 50.464671942755899 ], [ 5.19594160292263, 50.478624578961103 ], [ 5.162093540284673, 50.469942939415091 ], [ 5.151034783928139, 50.48188019491505 ], [ 5.15604739726956, 50.490613512203822 ], [ 5.136255323624255, 50.488753160230146 ], [ 5.129279006420973, 50.504566148408969 ], [ 5.142818230576893, 50.512886054547778 ], [ 5.119047072364481, 50.50575470591491 ], [ 5.105352816779032, 50.507356676369511 ], [ 5.090366651799513, 50.530921129006856 ], [ 5.034556105180116, 50.532884832868717 ], [ 5.053366326894434, 50.541928209419325 ], [ 5.027734815809083, 50.589935614736817 ], [ 4.979107292867241, 50.619287827970879 ], [ 4.982569614396198, 50.64336904634439 ], [ 5.001793247260537, 50.666158351726551 ], [ 5.000759717586902, 50.695794785800672 ], [ 5.016572706665045, 50.70295197195594 ], [ 4.991974725253328, 50.725327867087344 ], [ 5.015849237152565, 50.733492744494527 ], [ 5.019103290000089, 50.75193237600007 ], [ 5.043547489000048, 50.742835366000065 ], [ 5.04304072900004, 50.725106628000049 ], [ 5.059525511000061, 50.71156740300006 ], [ 5.074718383000061, 50.706916523000075 ], [ 5.101102895000054, 50.709756344000084 ], [ 5.167735961000062, 50.69725303000007 ], [ 5.180438604000074, 50.707163546000061 ], [ 5.169389606000038, 50.723556335000069 ], [ 5.228920857000048, 50.718750426000042 ], [ 5.236155317000055, 50.728232737000042 ], [ 5.243380921000039, 50.716878909000059 ], [ 5.275584675000061, 50.729447448000087 ], [ 5.307365681000078, 50.718388691000087 ], [ 5.312274941000055, 50.729705830000057 ], [ 5.332118692000051, 50.740971293000086 ], [ 5.37821406900008, 50.750841491000074 ], [ 5.391752632000077, 50.747120969000036 ], [ 5.40409492100008, 50.727498117000039 ], [ 5.430975706000083, 50.720869160000063 ], [ 5.453248249000069, 50.722264424000059 ], [ 5.461154743000066, 50.739963601000056 ], [ 5.480843464000088, 50.726398538000069 ], [ 5.496811481000066, 50.728853169000047 ], [ 5.52383825600009, 50.743761820000032 ], [ 5.521926228000041, 50.76003989600008 ], [ 5.608484252000039, 50.776421325000058 ], [ 5.657432381000092, 50.80764098200008 ], [ 5.663250773000101, 50.805065410000068 ], [ 5.68485152100007, 50.79850250300008 ], [ 5.700457804000109, 50.795556946000076 ], [ 5.698700806000119, 50.783774720000068 ], [ 5.688365519000115, 50.760830384000045 ], [ 5.706555623000071, 50.75421580000004 ], [ 5.717407674000128, 50.752820537000062 ], [ 5.727846313000072, 50.754164124000042 ], [ 5.732776968000053, 50.758851489000051 ], [ 5.735298216000047, 50.756370869000079 ], [ 5.750284382000075, 50.746862405000059 ], [ 5.775967568000056, 50.751203226000086 ], [ 5.818290567000076, 50.715598164000085 ], [ 5.854154011000048, 50.718853779000085 ], [ 5.878183552000053, 50.710998962000076 ], [ 5.886916869000061, 50.713350239000079 ], [ 5.910157819000062, 50.735969562000037 ], [ 5.891287548000093, 50.751246327000047 ], [ 5.902202596000024, 50.749048157000047 ], [ 5.974756307000035, 50.747549540000037 ], [ 5.994910116000113, 50.749926656000085 ], [ 5.993256469000073, 50.74806630500008 ], [ 5.992636353000108, 50.746257630000073 ], [ 5.992739705000133, 50.744448955000095 ], [ 5.994186645000127, 50.742588603000073 ], [ 6.010826457000036, 50.737059225000067 ], [ 6.011343221000089, 50.72744740800006 ], [ 6.007622518000062, 50.716905417000092 ], [ 6.011549926000043, 50.708533835000125 ], [ 6.02477909300012, 50.707551982000055 ], [ 6.064363240000091, 50.714476624000056 ], [ 6.081003052000113, 50.713494772000089 ], [ 6.100226685000052, 50.701299134000053 ], [ 6.161101521000063, 50.642181296 ], [ 6.147769002000047, 50.636755270000023 ], [ 6.159447876000115, 50.622389222000024 ], [ 6.180015096000119, 50.615516256000049 ], [ 6.249054809000086, 50.614431051000068 ], [ 6.251328572000091, 50.608436585000035 ], [ 6.244300577000075, 50.599548239000015 ], [ 6.232931763000096, 50.590763245000048 ], [ 6.232931763000096, 50.587145894000045 ], [ 6.210607543000037, 50.578670959000036 ], [ 6.17908492000015, 50.561979472000118 ], [ 6.160688110000052, 50.543582663 ], [ 6.177327922000075, 50.530198466000073 ], [ 6.169473103000144, 50.52249867799999 ], [ 6.170816691000113, 50.517951152000037 ], [ 6.178878214000093, 50.515780742000047 ], [ 6.190557088000077, 50.515212301000091 ], [ 6.182598917000121, 50.506582337000069 ], [ 6.190660441000091, 50.501828105000058 ], [ 6.199238729000029, 50.490407613000073 ], [ 6.207196900000099, 50.486325175000061 ], [ 6.217118774000085, 50.486015117000065 ], [ 6.25091516100008, 50.492681376000078 ], [ 6.253085571000071, 50.494076640000074 ], [ 6.255566040000133, 50.494593404000099 ], [ 6.257839803000053, 50.494076640000074 ], [ 6.260113566000086, 50.492681376000078 ], [ 6.27540979000014, 50.488030497000025 ], [ 6.31871464000011, 50.481674296000094 ], [ 6.336904744000037, 50.481002502000095 ], [ 6.325742635000097, 50.474026184000095 ], [ 6.32326216600012, 50.466016337000028 ], [ 6.326156046000108, 50.457024638000078 ], [ 6.331633748000115, 50.446896057000046 ], [ 6.340212036000139, 50.43785268200007 ], [ 6.347343384000084, 50.436974183000061 ], [ 6.351167440000012, 50.43356353800003 ], [ 6.350443969000111, 50.416872051000084 ], [ 6.34331262200007, 50.393307597000089 ], [ 6.336387980000097, 50.379923402000045 ], [ 6.337731567000077, 50.368089498000032 ], [ 6.372458130000098, 50.32943552700003 ], [ 6.373399684000105, 50.323080035000075 ], [ 6.374525187000074, 50.31548289100003 ], [ 6.36201949000008, 50.306956279000119 ], [ 6.335457804000043, 50.303855692000084 ], [ 6.322021932000098, 50.305405986 ], [ 6.310653116000111, 50.308248190000072 ], [ 6.299491007000086, 50.308868307000054 ], [ 6.285951782000097, 50.303855692000084 ], [ 6.276029907000094, 50.296104228000061 ], [ 6.269415324000107, 50.286492412000072 ], [ 6.267348267000045, 50.276415507000124 ], [ 6.271792439000137, 50.267423808000089 ], [ 6.253395630000057, 50.256778463000089 ], [ 6.210400838000083, 50.24902699799999 ], [ 6.189626912000023, 50.242722473000057 ], [ 6.179808390000062, 50.233007304000026 ], [ 6.15717411300011, 50.222723694000038 ], [ 6.146838827000096, 50.214042054000075 ], [ 6.160171346000112, 50.20453359 ], [ 6.165752400000144, 50.193164775000085 ], [ 6.165132284000066, 50.181899312000056 ], [ 6.159137817000044, 50.172442526000069 ], [ 6.151696411000017, 50.169341939000034 ], [ 6.13174930800011, 50.168308411000041 ], [ 6.123171020000058, 50.164897767000028 ], [ 6.121310668000149, 50.161590475000125 ], [ 6.11800337700015, 50.150376689000083 ], [ 6.115832967000074, 50.145467428000032 ], [ 6.125961547000117, 50.140196432000025 ], [ 6.129475545000076, 50.134046937000036 ], [ 6.126581665000089, 50.127329000000103 ], [ 6.11748661300004, 50.120456035000061 ], [ 6.102603800000082, 50.124745179000016 ], [ 6.100330037000077, 50.132651673000069 ], [ 6.101466919000075, 50.142108460000131 ], [ 6.097126098000103, 50.151306865000024 ], [ 6.084206991000087, 50.159316712000091 ], [ 6.076455525000085, 50.158644918000036 ], [ 6.070047648000127, 50.154200745000097 ], [ 6.061366008000078, 50.150738424000068 ], [ 6.038628377000094, 50.148412985000036 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BE-VOV", "NAME_1": "East Flanders" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.398798476568402, 51.24469829349141 ], [ 3.421940552000109, 51.237984720999989 ], [ 3.45387658700011, 51.235633444000044 ], [ 3.501212199000065, 51.240284323000097 ], [ 3.504106079000053, 51.249741110000073 ], [ 3.501522258000136, 51.262401836000024 ], [ 3.503382609000141, 51.273951518000061 ], [ 3.514338012000024, 51.281031188999989 ], [ 3.529014120000113, 51.283330791000097 ], [ 3.54503381300006, 51.283925069000063 ], [ 3.584824666000088, 51.289531963000101 ], [ 3.609526001000091, 51.290436300000053 ], [ 3.635054159000049, 51.287826640000034 ], [ 3.757320597000046, 51.262324321 ], [ 3.776234172000102, 51.254521180000083 ], [ 3.781401815000095, 51.241421204000019 ], [ 3.779748169000129, 51.230310771000106 ], [ 3.781401815000095, 51.219872132000077 ], [ 3.796284627000119, 51.20876169800006 ], [ 3.8086869710001, 51.20532521600002 ], [ 3.927026001000058, 51.206255392000074 ], [ 3.949453572000067, 51.210777080000085 ], [ 3.995032186000032, 51.233230489000093 ], [ 4.118952271000097, 51.272401225000053 ], [ 4.168561645000096, 51.296870016000085 ], [ 4.207939087000085, 51.330588888000037 ], [ 4.213520141000089, 51.340536601000039 ], [ 4.220961547000115, 51.363816834000076 ], [ 4.221491455000091, 51.368000603000027 ], [ 4.222178582000083, 51.367743231000077 ], [ 4.241058790000068, 51.356594143000052 ], [ 4.249034050000091, 51.346665757000039 ], [ 4.256114129000082, 51.32843659100007 ], [ 4.272634311000047, 51.315822658000059 ], [ 4.29078209700009, 51.305894273000035 ], [ 4.302989129000082, 51.296087958000044 ], [ 4.306651238000086, 51.289740302000041 ], [ 4.308116082000083, 51.283636786000045 ], [ 4.305430535000085, 51.276597398000035 ], [ 4.29865043466981, 51.269572093377406 ], [ 4.295014683380941, 51.267878730219195 ], [ 4.28860680515993, 51.257853501737713 ], [ 4.309845818729514, 51.214910387504347 ], [ 4.301112502340118, 51.211396389132005 ], [ 4.325348747646558, 51.189433906049885 ], [ 4.33061974430575, 51.176824856082192 ], [ 4.333048537060336, 51.16969350924802 ], [ 4.328552686757064, 51.147782701210645 ], [ 4.315995313632811, 51.132176419506152 ], [ 4.276204460767246, 51.123959866154848 ], [ 4.235690138389145, 51.123959866154848 ], [ 4.215846387900456, 51.121531074299639 ], [ 4.197966343072267, 51.113624579310851 ], [ 4.185357293104573, 51.104271145297105 ], [ 4.181998325262498, 51.099878647781338 ], [ 4.183341912399328, 51.095641180795837 ], [ 4.184582146748653, 51.086701157932055 ], [ 4.187527703440765, 51.077399399862372 ], [ 4.193315464037425, 51.066082261986764 ], [ 4.196416050360426, 51.054506740793443 ], [ 4.191403436119685, 51.04461070442045 ], [ 4.189129672995989, 51.04386139648625 ], [ 4.201273634070958, 51.037195135846844 ], [ 4.21228071538269, 51.034068712001442 ], [ 4.231866081654346, 51.044274806736894 ], [ 4.240341017423987, 51.038073634990212 ], [ 4.2170866231491, 50.990117906516161 ], [ 4.19414228723673, 50.983503322720139 ], [ 4.161741163623788, 50.990582994509566 ], [ 4.146496616225875, 50.97058421528925 ], [ 4.160707634849473, 50.942653103557859 ], [ 4.160190870911947, 50.929914863280317 ], [ 4.137039829424566, 50.919579576436263 ], [ 4.09125451038733, 50.931826891198057 ], [ 4.100142856407672, 50.912499905546156 ], [ 4.073632847078215, 50.900045885209408 ], [ 4.088102248120265, 50.891932685544987 ], [ 4.087120396189334, 50.881390693125979 ], [ 4.040404901165232, 50.838447577993293 ], [ 4.065984735407199, 50.835424506036077 ], [ 4.07487308142754, 50.820722560997353 ], [ 4.060352004441427, 50.792636420534336 ], [ 4.03037967268375, 50.776487535571277 ], [ 4.013326450155546, 50.772146714898952 ], [ 3.999270461162837, 50.780466620138384 ], [ 3.982165561791248, 50.766849880717416 ], [ 3.956275669186766, 50.779768989047568 ], [ 3.943976677581588, 50.775350654009458 ], [ 3.931160922938204, 50.757573961069397 ], [ 3.952038202201265, 50.739487209766878 ], [ 3.950642938220994, 50.734112861219558 ], [ 3.918293490552117, 50.728841865459685 ], [ 3.894988299870136, 50.734164335715491 ], [ 3.884402746000092, 50.751383996000072 ], [ 3.828024453000069, 50.743503437000072 ], [ 3.814691933000063, 50.751900858000056 ], [ 3.774634822000053, 50.74896996800004 ], [ 3.757794537000052, 50.780322451000075 ], [ 3.714543008000078, 50.768644022000046 ], [ 3.704001016000063, 50.782105733000037 ], [ 3.675320596000063, 50.771925475000046 ], [ 3.634651244000054, 50.721851013000048 ], [ 3.60664261800008, 50.73420167900008 ], [ 3.540545448000046, 50.734939611000073 ], [ 3.533979145000046, 50.766420721000088 ], [ 3.494143024000039, 50.758877176000055 ], [ 3.457607785570815, 50.768514830694869 ], [ 3.520023227589888, 50.797907416294208 ], [ 3.522503696288538, 50.805167955236925 ], [ 3.499456007588662, 50.825218411300625 ], [ 3.512375115918871, 50.835502021301238 ], [ 3.45046675034024, 50.869298407995132 ], [ 3.474031202977642, 50.884594632236485 ], [ 3.46607303204479, 50.9033531762081 ], [ 3.45046675034024, 50.907461452883695 ], [ 3.427315707953539, 50.898443914754864 ], [ 3.419150832345053, 50.912189846284377 ], [ 3.432586703713412, 50.920561428367193 ], [ 3.424731885568065, 50.932059435194731 ], [ 3.448399691892234, 50.929863186436876 ], [ 3.455324334050772, 50.934384874262491 ], [ 3.440131462596923, 50.943945013851305 ], [ 3.460233594604688, 50.943712469854574 ], [ 3.412071160555627, 50.958957018151864 ], [ 3.442973667400793, 50.967793688228085 ], [ 3.425868768029204, 50.982418118001704 ], [ 3.452017043052081, 51.00704193783514 ], [ 3.422148064981229, 51.039468898970483 ], [ 3.443800489700834, 51.049313259399355 ], [ 3.330680779694205, 51.100137031099052 ], [ 3.374450718026196, 51.118120428714803 ], [ 3.410314162268776, 51.161115220690874 ], [ 3.387008091150449, 51.18721181887031 ], [ 3.359826287353258, 51.192844549836082 ], [ 3.384062533559074, 51.203644925572803 ], [ 3.366957635086806, 51.229586494121406 ], [ 3.400030552268163, 51.242660631183185 ], [ 3.398798476568402, 51.24469829349141 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BE-VAN", "NAME_1": "Antwerp" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.764184204000117, 51.496237691000047 ], [ 4.778653605000045, 51.495359192000123 ], [ 4.796843709000086, 51.491018372000028 ], [ 4.813586873000133, 51.484119569000072 ], [ 4.823922159000062, 51.475644633000073 ], [ 4.826092570000128, 51.460555115000048 ], [ 4.819891398000067, 51.446214905000076 ], [ 4.815447224000138, 51.431073711000053 ], [ 4.822681925000012, 51.413684591000035 ], [ 4.779067016000056, 51.426422832000085 ], [ 4.767801554000101, 51.425389303000102 ], [ 4.762117146000151, 51.413374532000049 ], [ 4.783304484000013, 51.407638448000071 ], [ 4.853274373000119, 51.406139832000079 ], [ 4.871671183000046, 51.403039246000034 ], [ 4.910325154000134, 51.391902975 ], [ 4.931925903000092, 51.395623678000035 ], [ 4.957144002000064, 51.410997416 ], [ 4.980191691000101, 51.430531108000096 ], [ 4.995797973000066, 51.446705831000102 ], [ 5.002722616000142, 51.45900482200004 ], [ 5.00613326000007, 51.468306580000061 ], [ 5.012127727000092, 51.474326884 ], [ 5.027527303000085, 51.476807353000069 ], [ 5.030317831000048, 51.474430237000021 ], [ 5.060290161000069, 51.461976217000043 ], [ 5.079927205000104, 51.438540955000079 ], [ 5.076413208000048, 51.421901144000046 ], [ 5.065251099000108, 51.405907288000023 ], [ 5.061737101000062, 51.384254863000123 ], [ 5.068144979000095, 51.374539694000092 ], [ 5.102561483000073, 51.3506651820001 ], [ 5.107832479000081, 51.341983541000033 ], [ 5.118064412000081, 51.319917705000037 ], [ 5.122921997000105, 51.313380636000076 ], [ 5.140181926000082, 51.307386170000044 ], [ 5.178835897000084, 51.309504903000018 ], [ 5.197336059000122, 51.308342183000022 ], [ 5.214906047000085, 51.29433787 ], [ 5.215422811000025, 51.258732808000033 ], [ 5.232992798000112, 51.255916443000061 ], [ 5.239455934000091, 51.25693018200009 ], [ 5.227412549649443, 51.250670478060101 ], [ 5.216508822923799, 51.212481593850441 ], [ 5.25717817493279, 51.188477892540675 ], [ 5.260433790886736, 51.148066922050759 ], [ 5.235370720582296, 51.134036770580451 ], [ 5.203021273812737, 51.140005398330459 ], [ 5.180386997162202, 51.119205634332559 ], [ 5.130260858351903, 51.117551987933894 ], [ 5.089849887862044, 51.085202542063655 ], [ 5.009803094137453, 51.075125636738733 ], [ 5.009699741349948, 51.061431382951923 ], [ 4.980915967997532, 51.036006578340903 ], [ 4.967066684579834, 51.046471056394125 ], [ 4.948308139708843, 51.045721747560549 ], [ 4.909705845248538, 51.035903225553398 ], [ 4.882834099813863, 51.020865383730438 ], [ 4.870586785951389, 51.024689439565975 ], [ 4.818548618324087, 51.01107270014495 ], [ 4.805732862781383, 51.016524563058113 ], [ 4.788679640253179, 51.040089015695514 ], [ 4.756020135121105, 51.02437938120346 ], [ 4.733902622408095, 51.027350776317235 ], [ 4.694938591842515, 50.999781398892424 ], [ 4.706255730617443, 51.015594387071303 ], [ 4.679383986082087, 51.024844469196864 ], [ 4.606468540091043, 51.012493800748302 ], [ 4.593394403029265, 50.992107448799686 ], [ 4.57804650194447, 50.992288315952976 ], [ 4.546162144067694, 51.004122219564749 ], [ 4.528023715921734, 50.993425198414172 ], [ 4.494279006071281, 51.009729112108801 ], [ 4.476140577925321, 50.992391668740481 ], [ 4.453816358737981, 51.00680939383841 ], [ 4.393096550665291, 50.997455959824663 ], [ 4.38823896605544, 51.012287096072612 ], [ 4.369532098027889, 51.015930283855482 ], [ 4.379092237616646, 51.03109731688761 ], [ 4.347931349252349, 51.017919827038384 ], [ 4.341420119143152, 51.019935207743629 ], [ 4.348189730771423, 51.027014879533056 ], [ 4.298890415160542, 51.041019192581643 ], [ 4.274602492111285, 51.04368052843364 ], [ 4.240341017423987, 51.038073634990212 ], [ 4.231866081654346, 51.044274806736894 ], [ 4.21228071538269, 51.034068712001442 ], [ 4.201273634070958, 51.037195135846844 ], [ 4.189129672995989, 51.04386139648625 ], [ 4.191403436119685, 51.04461070442045 ], [ 4.196416050360426, 51.054506740793443 ], [ 4.193315464037425, 51.066082261986764 ], [ 4.187527703440765, 51.077399399862372 ], [ 4.184582146748653, 51.086701157932055 ], [ 4.183341912399328, 51.095641180795837 ], [ 4.181998325262498, 51.099878647781338 ], [ 4.185357293104573, 51.104271145297105 ], [ 4.197966343072267, 51.113624579310851 ], [ 4.215846387900456, 51.121531074299639 ], [ 4.235690138389145, 51.123959866154848 ], [ 4.276204460767246, 51.123959866154848 ], [ 4.315995313632811, 51.132176419506152 ], [ 4.328552686757064, 51.147782701210645 ], [ 4.333048537060336, 51.16969350924802 ], [ 4.33061974430575, 51.176824856082192 ], [ 4.325348747646558, 51.189433906049885 ], [ 4.301112502340118, 51.211396389132005 ], [ 4.309845818729514, 51.214910387504347 ], [ 4.28860680515993, 51.257853501737713 ], [ 4.295014683380941, 51.267878730219195 ], [ 4.29865043466981, 51.269572093377406 ], [ 4.296722852000073, 51.267564195000034 ], [ 4.30836022200009, 51.271226304000038 ], [ 4.316416863000086, 51.276841539000088 ], [ 4.330821160000085, 51.296087958000044 ], [ 4.297129754000082, 51.305161851000037 ], [ 4.289317254000082, 51.309149481000077 ], [ 4.285411004000082, 51.318019924000055 ], [ 4.286143425000091, 51.339667059000078 ], [ 4.283050977000073, 51.350083726000037 ], [ 4.275645379000082, 51.358099677000041 ], [ 4.261067579000098, 51.369379275000071 ], [ 4.281124221805385, 51.368946510373121 ], [ 4.290104614000114, 51.368751933000013 ], [ 4.326278117000129, 51.356427104000076 ], [ 4.345605103000082, 51.352292990000038 ], [ 4.392217244000051, 51.350406799000027 ], [ 4.411234171000018, 51.356737162000044 ], [ 4.416195109000085, 51.37397125300005 ], [ 4.410097290000124, 51.383789775000096 ], [ 4.387669719000115, 51.400532939000058 ], [ 4.379918253000113, 51.409524638000093 ], [ 4.3806417240001, 51.41965321900004 ], [ 4.387152954000072, 51.427456360000079 ], [ 4.389220011000134, 51.434587708000024 ], [ 4.37712772600014, 51.44288177500006 ], [ 4.429424275000059, 51.461976217000043 ], [ 4.483064412000147, 51.474326884 ], [ 4.512623331000071, 51.477375794000025 ], [ 4.525232381000109, 51.475928854000031 ], [ 4.533190551000075, 51.467583110000064 ], [ 4.531846964000096, 51.450865784000129 ], [ 4.523372029000086, 51.438411764000037 ], [ 4.521511678000081, 51.428644917999989 ], [ 4.540631958000091, 51.420066630000051 ], [ 4.553861125000083, 51.419291484000055 ], [ 4.582696573000106, 51.422598776000044 ], [ 4.614632609000097, 51.417560322999989 ], [ 4.630135539000094, 51.418206279000046 ], [ 4.643571411000067, 51.42141021700003 ], [ 4.653906697000053, 51.426216126000028 ], [ 4.731214641000065, 51.485618185000064 ], [ 4.764184204000117, 51.496237691000047 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BE-VLI", "NAME_1": "Limburg" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.551406597000096, 51.216767134000108 ], [ 5.568372843000134, 51.207650655000052 ], [ 5.62501021300011, 51.196901957000122 ], [ 5.638549438000098, 51.19090749100009 ], [ 5.648161255000105, 51.183957011000089 ], [ 5.659013306000048, 51.179073588000065 ], [ 5.676169881000106, 51.179176941000023 ], [ 5.718027791000083, 51.184602967000089 ], [ 5.730843547000063, 51.18375030600005 ], [ 5.74717329900011, 51.177600810000072 ], [ 5.768050577000082, 51.159462383000047 ], [ 5.781383098000106, 51.152408549000128 ], [ 5.812078898000038, 51.157317810000066 ], [ 5.829132121000072, 51.156465149000027 ], [ 5.838020467000092, 51.14372690900008 ], [ 5.840500936000069, 51.138921 ], [ 5.826444946000038, 51.130161844999989 ], [ 5.823241007000064, 51.118741354000079 ], [ 5.845978638000048, 51.103393454000113 ], [ 5.836780232000137, 51.099491883000056 ], [ 5.826651652000095, 51.096908061000065 ], [ 5.81590295400008, 51.095874532000082 ], [ 5.804947550000094, 51.096623840000078 ], [ 5.807428019000071, 51.089389140000023 ], [ 5.808978312000107, 51.08634023000009 ], [ 5.81176884000007, 51.082309469000094 ], [ 5.804327434000129, 51.068589376000048 ], [ 5.798849731000132, 51.061483866000046 ], [ 5.791304972000091, 51.054998475000062 ], [ 5.779626098000023, 51.061302999000091 ], [ 5.771461222000113, 51.05812489900002 ], [ 5.766396932000134, 51.048435568000073 ], [ 5.764019816000086, 51.035180563000083 ], [ 5.777559041000075, 51.02355336600003 ], [ 5.761746053000081, 50.999162090000098 ], [ 5.722368612000082, 50.959422913000097 ], [ 5.744692830000133, 50.963246969000053 ], [ 5.75430464700014, 50.963091940000098 ], [ 5.764019816000086, 50.959422913000097 ], [ 5.752547648000075, 50.947227275000088 ], [ 5.73528771900007, 50.923972881000068 ], [ 5.722368612000082, 50.911673890000131 ], [ 5.717614380000072, 50.909245097000067 ], [ 5.706038859000046, 50.906609599000049 ], [ 5.694463338000077, 50.903664042000045 ], [ 5.622323039000094, 50.852659404000079 ], [ 5.624493448000067, 50.830283509000097 ], [ 5.640719849000078, 50.81503896100007 ], [ 5.657432381000092, 50.80764098200008 ], [ 5.608484252000039, 50.776421325000058 ], [ 5.521926228000041, 50.76003989600008 ], [ 5.52383825600009, 50.743761820000032 ], [ 5.496811481000066, 50.728853169000047 ], [ 5.480843464000088, 50.726398538000069 ], [ 5.461154743000066, 50.739963601000056 ], [ 5.453248249000069, 50.722264424000059 ], [ 5.430975706000083, 50.720869160000063 ], [ 5.40409492100008, 50.727498117000039 ], [ 5.391752632000077, 50.747120969000036 ], [ 5.37821406900008, 50.750841491000074 ], [ 5.332118692000051, 50.740971293000086 ], [ 5.312274941000055, 50.729705830000057 ], [ 5.307365681000078, 50.718388691000087 ], [ 5.275584675000061, 50.729447448000087 ], [ 5.243380921000039, 50.716878909000059 ], [ 5.236155317000055, 50.728232737000042 ], [ 5.228920857000048, 50.718750426000042 ], [ 5.169389606000038, 50.723556335000069 ], [ 5.180438604000074, 50.707163546000061 ], [ 5.167735961000062, 50.69725303000007 ], [ 5.101102895000054, 50.709756344000084 ], [ 5.120442336344752, 50.736024889137298 ], [ 5.101115349793531, 50.743311266501735 ], [ 5.114551222061209, 50.763568427241125 ], [ 5.106386345553403, 50.78196523690616 ], [ 5.15160322380973, 50.811627509402001 ], [ 5.129485711096663, 50.816588446799358 ], [ 5.136513706042706, 50.850255642284026 ], [ 5.153205194264274, 50.879633693939809 ], [ 5.172687208647744, 50.875447902898372 ], [ 5.177493117313475, 50.878626004486478 ], [ 5.186226433702927, 50.906298732900154 ], [ 5.17165367987343, 50.914308579777128 ], [ 5.136617058830211, 50.914592799717923 ], [ 5.133154738200574, 50.922525133128374 ], [ 5.09455244284095, 50.910975450356716 ], [ 5.077809278675261, 50.922576809072439 ], [ 5.061221144140461, 50.918029282825103 ], [ 5.05465823718788, 50.921233221935609 ], [ 5.041480747338596, 50.943092353129543 ], [ 5.081685011354182, 50.965649116313614 ], [ 5.082615187340991, 50.98774078970564 ], [ 5.124369744068417, 50.999833075735808 ], [ 5.117961866746725, 51.023345852429145 ], [ 5.127780388753933, 51.02494782198437 ], [ 5.132948031726244, 51.016989651051517 ], [ 5.158269484449136, 51.023500882060034 ], [ 5.131191034338769, 51.045463365142155 ], [ 5.108918491095494, 51.051871243363166 ], [ 5.080858189054197, 51.049545803396086 ], [ 5.081013217785767, 51.024482733990965 ], [ 5.063184848901642, 51.017454739044922 ], [ 5.042514276112968, 51.025567938709401 ], [ 5.022463820049268, 51.020658678155428 ], [ 5.006340772608553, 51.040399074957293 ], [ 4.980915967997532, 51.036006578340903 ], [ 5.009699741349948, 51.061431382951923 ], [ 5.009803094137453, 51.075125636738733 ], [ 5.089849887862044, 51.085202542063655 ], [ 5.130260858351903, 51.117551987933894 ], [ 5.180386997162202, 51.119205634332559 ], [ 5.203021273812737, 51.140005398330459 ], [ 5.235370720582296, 51.134036770580451 ], [ 5.260433790886736, 51.148066922050759 ], [ 5.25717817493279, 51.188477892540675 ], [ 5.216508822923799, 51.212481593850441 ], [ 5.227412549649443, 51.250670478060101 ], [ 5.239455934000091, 51.25693018200009 ], [ 5.270716593000145, 51.261833395000068 ], [ 5.389055623000104, 51.258706971000024 ], [ 5.409932901000076, 51.263538717000031 ], [ 5.451894165000084, 51.282116394000084 ], [ 5.471634562000133, 51.288085023000107 ], [ 5.49323531100012, 51.286534729000081 ], [ 5.516696411000083, 51.27723297200005 ], [ 5.535196573000121, 51.262040100000021 ], [ 5.542327921000066, 51.242661439000059 ], [ 5.54553186000004, 51.21992380799999 ], [ 5.551406597000096, 51.216767134000108 ] ] ], [ [ [ 5.752444296000135, 50.773439433000064 ], [ 5.762469523000078, 50.771010641000018 ], [ 5.782933390000039, 50.75669627000012 ], [ 5.793165324000114, 50.752148743000092 ], [ 5.879878377000068, 50.75354400600007 ], [ 5.891287548000093, 50.751246327000047 ], [ 5.910157819000062, 50.735969562000037 ], [ 5.886916869000061, 50.713350239000079 ], [ 5.878183552000053, 50.710998962000076 ], [ 5.854154011000048, 50.718853779000085 ], [ 5.818290567000076, 50.715598164000085 ], [ 5.775967568000056, 50.751203226000086 ], [ 5.750284382000075, 50.746862405000059 ], [ 5.735298216000047, 50.756370869000079 ], [ 5.732776968000053, 50.758851489000051 ], [ 5.74355594900004, 50.769098613 ], [ 5.752444296000135, 50.773439433000064 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BE-BRU", "NAME_1": "Brussels" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.479745550000075, 50.795422745000053 ], [ 4.398428913000089, 50.767791360000047 ], [ 4.377241576000074, 50.764639098000032 ], [ 4.355279092000046, 50.767145405000065 ], [ 4.327632201000085, 50.778979308000032 ], [ 4.30122554400009, 50.814403503000051 ], [ 4.283035439000059, 50.808409036000057 ], [ 4.245570027000042, 50.821638203000077 ], [ 4.257455606000065, 50.836934427000074 ], [ 4.282828734000077, 50.839621602000079 ], [ 4.289174242000058, 50.856428323000046 ], [ 4.278953001000048, 50.867785257000037 ], [ 4.297918253000091, 50.891453063000085 ], [ 4.334608519000085, 50.903131937000069 ], [ 4.37734492900006, 50.898584410000069 ], [ 4.403286498000057, 50.914810811000052 ], [ 4.420494749000056, 50.906335876000071 ], [ 4.436194492000084, 50.88929339200007 ], [ 4.435687621000056, 50.879670837000049 ], [ 4.420029661000058, 50.869490580000047 ], [ 4.460230903000081, 50.853213727000082 ], [ 4.476098590000049, 50.821534850000035 ], [ 4.454911254000081, 50.819777851000083 ], [ 4.446487995000041, 50.810992858000077 ], [ 4.479745550000075, 50.795422745000053 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BE-VBR", "NAME_1": "Flemish Brabant" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.09973913500005, 50.707123229000047 ], [ 4.072712360000082, 50.712910990000069 ], [ 4.058501342000056, 50.696012796000048 ], [ 4.051473347000069, 50.702834085000063 ], [ 4.02801224600006, 50.695030944000052 ], [ 4.008995320000054, 50.698984191000079 ], [ 3.988841511000089, 50.688726419000034 ], [ 3.928225056000088, 50.689811624000072 ], [ 3.906934365000041, 50.69466920900004 ], [ 3.892770668000082, 50.706409874000087 ], [ 3.887969115000089, 50.717561869000065 ], [ 3.894988299870136, 50.734164335715491 ], [ 3.918293490552117, 50.728841865459685 ], [ 3.950642938220994, 50.734112861219558 ], [ 3.952038202201265, 50.739487209766878 ], [ 3.931160922938204, 50.757573961069397 ], [ 3.943976677581588, 50.775350654009458 ], [ 3.956275669186766, 50.779768989047568 ], [ 3.982165561791248, 50.766849880717416 ], [ 3.999270461162837, 50.780466620138384 ], [ 4.013326450155546, 50.772146714898952 ], [ 4.03037967268375, 50.776487535571277 ], [ 4.060352004441427, 50.792636420534336 ], [ 4.07487308142754, 50.820722560997353 ], [ 4.065984735407199, 50.835424506036077 ], [ 4.040404901165232, 50.838447577993293 ], [ 4.087120396189334, 50.881390693125979 ], [ 4.088102248120265, 50.891932685544987 ], [ 4.073632847078215, 50.900045885209408 ], [ 4.100142856407672, 50.912499905546156 ], [ 4.09125451038733, 50.931826891198057 ], [ 4.137039829424566, 50.919579576436263 ], [ 4.160190870911947, 50.929914863280317 ], [ 4.160707634849473, 50.942653103557859 ], [ 4.146496616225875, 50.97058421528925 ], [ 4.161741163623788, 50.990582994509566 ], [ 4.19414228723673, 50.983503322720139 ], [ 4.2170866231491, 50.990117906516161 ], [ 4.240341017423987, 51.038073634990212 ], [ 4.274602492111285, 51.04368052843364 ], [ 4.298890415160542, 51.041019192581643 ], [ 4.348189730771423, 51.027014879533056 ], [ 4.341420119143152, 51.019935207743629 ], [ 4.347931349252349, 51.017919827038384 ], [ 4.379092237616646, 51.03109731688761 ], [ 4.369532098027889, 51.015930283855482 ], [ 4.38823896605544, 51.012287096072612 ], [ 4.393096550665291, 50.997455959824663 ], [ 4.453816358737981, 51.00680939383841 ], [ 4.476140577925321, 50.992391668740481 ], [ 4.494279006071281, 51.009729112108801 ], [ 4.528023715921734, 50.993425198414172 ], [ 4.546162144067694, 51.004122219564749 ], [ 4.57804650194447, 50.992288315952976 ], [ 4.593394403029265, 50.992107448799686 ], [ 4.606468540091043, 51.012493800748302 ], [ 4.679383986082087, 51.024844469196864 ], [ 4.706255730617443, 51.015594387071303 ], [ 4.694938591842515, 50.999781398892424 ], [ 4.733902622408095, 51.027350776317235 ], [ 4.756020135121105, 51.02437938120346 ], [ 4.788679640253179, 51.040089015695514 ], [ 4.805732862781383, 51.016524563058113 ], [ 4.818548618324087, 51.01107270014495 ], [ 4.870586785951389, 51.024689439565975 ], [ 4.882834099813863, 51.020865383730438 ], [ 4.909705845248538, 51.035903225553398 ], [ 4.948308139708843, 51.045721747560549 ], [ 4.967066684579834, 51.046471056394125 ], [ 4.980915967997532, 51.036006578340903 ], [ 5.006340772608553, 51.040399074957293 ], [ 5.022463820049268, 51.020658678155428 ], [ 5.042514276112968, 51.025567938709401 ], [ 5.063184848901642, 51.017454739044922 ], [ 5.081013217785767, 51.024482733990965 ], [ 5.080858189054197, 51.049545803396086 ], [ 5.108918491095494, 51.051871243363166 ], [ 5.131191034338769, 51.045463365142155 ], [ 5.158269484449136, 51.023500882060034 ], [ 5.132948031726244, 51.016989651051517 ], [ 5.127780388753933, 51.02494782198437 ], [ 5.117961866746725, 51.023345852429145 ], [ 5.124369744068417, 50.999833075735808 ], [ 5.082615187340991, 50.98774078970564 ], [ 5.081685011354182, 50.965649116313614 ], [ 5.041480747338596, 50.943092353129543 ], [ 5.05465823718788, 50.921233221935609 ], [ 5.061221144140461, 50.918029282825103 ], [ 5.077809278675261, 50.922576809072439 ], [ 5.09455244284095, 50.910975450356716 ], [ 5.133154738200574, 50.922525133128374 ], [ 5.136617058830211, 50.914592799717923 ], [ 5.17165367987343, 50.914308579777128 ], [ 5.186226433702927, 50.906298732900154 ], [ 5.177493117313475, 50.878626004486478 ], [ 5.172687208647744, 50.875447902898372 ], [ 5.153205194264274, 50.879633693939809 ], [ 5.136513706042706, 50.850255642284026 ], [ 5.129485711096663, 50.816588446799358 ], [ 5.15160322380973, 50.811627509402001 ], [ 5.106386345553403, 50.78196523690616 ], [ 5.114551222061209, 50.763568427241125 ], [ 5.101115349793531, 50.743311266501735 ], [ 5.120442336344752, 50.736024889137298 ], [ 5.101102895000054, 50.709756344000084 ], [ 5.074718383000061, 50.706916523000075 ], [ 5.059525511000061, 50.71156740300006 ], [ 5.04304072900004, 50.725106628000049 ], [ 5.043547489000048, 50.742835366000065 ], [ 5.019103290000089, 50.75193237600007 ], [ 4.981442422000043, 50.770943623000051 ], [ 4.932349811000051, 50.746293964000074 ], [ 4.917208617000085, 50.744795348000082 ], [ 4.90454789100005, 50.751564961000042 ], [ 4.90804920100004, 50.769573368000067 ], [ 4.832614298000067, 50.764639098000032 ], [ 4.836888355000042, 50.775492027000041 ], [ 4.812925577000044, 50.776886413000057 ], [ 4.791531533000068, 50.799469013000078 ], [ 4.749621947000094, 50.808667419000074 ], [ 4.722853555000086, 50.802569600000083 ], [ 4.714163395000071, 50.789821775000064 ], [ 4.710242762000064, 50.797297977000085 ], [ 4.692674518000047, 50.790994079000086 ], [ 4.640481322000085, 50.799572366000064 ], [ 4.636347207000085, 50.773992532000079 ], [ 4.654627032000064, 50.758397879000086 ], [ 4.635210326000049, 50.744071878000057 ], [ 4.601823778000039, 50.742949739000039 ], [ 4.596551071000079, 50.764687122000055 ], [ 4.572940225000082, 50.74836102200004 ], [ 4.529170287000056, 50.741823953000051 ], [ 4.526948200000049, 50.729447448000087 ], [ 4.495115518000091, 50.741074645000083 ], [ 4.490206257000068, 50.746087259000035 ], [ 4.494532424000056, 50.757612459000086 ], [ 4.480026, 50.758954690000053 ], [ 4.458011839000051, 50.754562194000073 ], [ 4.421734984000068, 50.736552958000061 ], [ 4.373675902000059, 50.731824563000032 ], [ 4.367888142000083, 50.716735045000064 ], [ 4.349026244000072, 50.717613545000063 ], [ 4.329905964000091, 50.734305033000055 ], [ 4.322619587000077, 50.729034036000087 ], [ 4.333249524000053, 50.719049120000079 ], [ 4.311405801000092, 50.718802103000087 ], [ 4.308770303000074, 50.703557556000078 ], [ 4.301845661000073, 50.698286559000053 ], [ 4.287221230000057, 50.695237649000035 ], [ 4.259574340000086, 50.701077086000055 ], [ 4.239988972000049, 50.692033710000032 ], [ 4.207432819000076, 50.709086934000084 ], [ 4.180251016000057, 50.708725199000071 ], [ 4.158598591000043, 50.727845479000052 ], [ 4.149038451000081, 50.730377623000038 ], [ 4.13911657500006, 50.727948831000049 ], [ 4.131830199000092, 50.716941751000036 ], [ 4.107490599000073, 50.717200133000063 ], [ 4.09973913500005, 50.707123229000047 ] ], [ [ 4.479745550000075, 50.795422745000053 ], [ 4.446487995000041, 50.810992858000077 ], [ 4.454911254000081, 50.819777851000083 ], [ 4.476098590000049, 50.821534850000035 ], [ 4.460230903000081, 50.853213727000082 ], [ 4.420029661000058, 50.869490580000047 ], [ 4.435687621000056, 50.879670837000049 ], [ 4.436194492000084, 50.88929339200007 ], [ 4.420494749000056, 50.906335876000071 ], [ 4.403286498000057, 50.914810811000052 ], [ 4.37734492900006, 50.898584410000069 ], [ 4.334608519000085, 50.903131937000069 ], [ 4.297918253000091, 50.891453063000085 ], [ 4.278953001000048, 50.867785257000037 ], [ 4.289174242000058, 50.856428323000046 ], [ 4.282828734000077, 50.839621602000079 ], [ 4.257455606000065, 50.836934427000074 ], [ 4.245570027000042, 50.821638203000077 ], [ 4.283035439000059, 50.808409036000057 ], [ 4.30122554400009, 50.814403503000051 ], [ 4.327632201000085, 50.778979308000032 ], [ 4.355279092000046, 50.767145405000065 ], [ 4.377241576000074, 50.764639098000032 ], [ 4.398428913000089, 50.767791360000047 ], [ 4.479745550000075, 50.795422745000053 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BE-WBR", "NAME_1": "Walloon Brabant" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.09973913500005, 50.707123229000047 ], [ 4.107490599000073, 50.717200133000063 ], [ 4.131830199000092, 50.716941751000036 ], [ 4.13911657500006, 50.727948831000049 ], [ 4.149038451000081, 50.730377623000038 ], [ 4.158598591000043, 50.727845479000052 ], [ 4.180251016000057, 50.708725199000071 ], [ 4.207432819000076, 50.709086934000084 ], [ 4.239988972000049, 50.692033710000032 ], [ 4.259574340000086, 50.701077086000055 ], [ 4.287221230000057, 50.695237649000035 ], [ 4.301845661000073, 50.698286559000053 ], [ 4.308770303000074, 50.703557556000078 ], [ 4.311405801000092, 50.718802103000087 ], [ 4.333249524000053, 50.719049120000079 ], [ 4.322619587000077, 50.729034036000087 ], [ 4.329905964000091, 50.734305033000055 ], [ 4.349026244000072, 50.717613545000063 ], [ 4.367888142000083, 50.716735045000064 ], [ 4.373675902000059, 50.731824563000032 ], [ 4.421734984000068, 50.736552958000061 ], [ 4.458011839000051, 50.754562194000073 ], [ 4.480026, 50.758954690000053 ], [ 4.494532424000056, 50.757612459000086 ], [ 4.490206257000068, 50.746087259000035 ], [ 4.495115518000091, 50.741074645000083 ], [ 4.526948200000049, 50.729447448000087 ], [ 4.529170287000056, 50.741823953000051 ], [ 4.572940225000082, 50.74836102200004 ], [ 4.596551071000079, 50.764687122000055 ], [ 4.601823778000039, 50.742949739000039 ], [ 4.635210326000049, 50.744071878000057 ], [ 4.654627032000064, 50.758397879000086 ], [ 4.636347207000085, 50.773992532000079 ], [ 4.640481322000085, 50.799572366000064 ], [ 4.692674518000047, 50.790994079000086 ], [ 4.710242762000064, 50.797297977000085 ], [ 4.714163395000071, 50.789821775000064 ], [ 4.722853555000086, 50.802569600000083 ], [ 4.749621947000094, 50.808667419000074 ], [ 4.791531533000068, 50.799469013000078 ], [ 4.812925577000044, 50.776886413000057 ], [ 4.836888355000042, 50.775492027000041 ], [ 4.832614298000067, 50.764639098000032 ], [ 4.90804920100004, 50.769573368000067 ], [ 4.90454789100005, 50.751564961000042 ], [ 4.917208617000085, 50.744795348000082 ], [ 4.932349811000051, 50.746293964000074 ], [ 4.981442422000043, 50.770943623000051 ], [ 5.019103290000089, 50.75193237600007 ], [ 5.015849237152565, 50.733492744494527 ], [ 4.991974725253328, 50.725327867087344 ], [ 5.016572706665045, 50.70295197195594 ], [ 5.000759717586902, 50.695794785800672 ], [ 5.001793247260537, 50.666158351726551 ], [ 4.982569614396198, 50.64336904634439 ], [ 4.950840285250933, 50.64796824853579 ], [ 4.927947625282684, 50.628357042043831 ], [ 4.901437615953228, 50.629829820389887 ], [ 4.900404087178856, 50.623680325486589 ], [ 4.793227165601195, 50.605671088549855 ], [ 4.788059522628828, 50.602622179070295 ], [ 4.791935256207069, 50.590969143511131 ], [ 4.780721470219646, 50.601614487818324 ], [ 4.740465529360677, 50.591563421814442 ], [ 4.734109327983106, 50.611665553822206 ], [ 4.708271112222064, 50.607092190052526 ], [ 4.703723585974728, 50.596059272117714 ], [ 4.67576663582156, 50.608539129976862 ], [ 4.666103143445298, 50.608487454032741 ], [ 4.655044386189445, 50.596576036055183 ], [ 4.666619907382824, 50.565440986112606 ], [ 4.644192336307242, 50.5622370470021 ], [ 4.607812127227874, 50.570479437875747 ], [ 4.590138787075375, 50.568929145163906 ], [ 4.573188918233996, 50.560428371871865 ], [ 4.576754590751761, 50.543426826187044 ], [ 4.516551548415237, 50.52717458843648 ], [ 4.501875440898857, 50.531386217000261 ], [ 4.503063999304118, 50.540687975069943 ], [ 4.470094434910209, 50.529732571500972 ], [ 4.472884962870751, 50.554408067278473 ], [ 4.468079054204964, 50.55954987182912 ], [ 4.422965528736142, 50.559343167153429 ], [ 4.41252689000396, 50.56626780931191 ], [ 4.35583784334176, 50.562392075733669 ], [ 4.33082644988076, 50.544563706849544 ], [ 4.333616977841245, 50.570014349882342 ], [ 4.304109734976294, 50.568128160386266 ], [ 4.278943311884348, 50.593010361738777 ], [ 4.246490513226604, 50.597325343989382 ], [ 4.25196821456143, 50.618202623252444 ], [ 4.198586459797298, 50.62678091091027 ], [ 4.203650749982103, 50.647709866117395 ], [ 4.184323765229578, 50.663884589502175 ], [ 4.173316684817166, 50.661094062441009 ], [ 4.141845737191034, 50.633576361859582 ], [ 4.118643018860212, 50.631328437157606 ], [ 4.101124709237922, 50.636030992136568 ], [ 4.091357863174835, 50.653652656345002 ], [ 4.090220980713696, 50.690601305305961 ], [ 4.094200067079441, 50.703468735893409 ], [ 4.11244184711353, 50.706879381478245 ], [ 4.09973913500005, 50.707123229000047 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/brazil.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/brazil.geojson new file mode 100644 index 000000000000..721aadb7eacb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/brazil.geojson @@ -0,0 +1,33 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "BR-AC", "NAME_1": "Acre" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.627670235635748, -9.925465695489663 ], [ -66.730040845009626, -9.975431517708216 ], [ -67.111420254089353, -10.269052134377702 ], [ -67.190400969992851, -10.311349499272467 ], [ -67.280400973426083, -10.317194226057921 ], [ -67.332816746909955, -10.357931532299432 ], [ -67.416972023557719, -10.389879775705666 ], [ -67.582349227131985, -10.505983295759663 ], [ -67.666724230350638, -10.598905662585608 ], [ -67.721842640656362, -10.683038966576291 ], [ -67.785750113797363, -10.685983302626113 ], [ -67.835023797317632, -10.662802149398075 ], [ -67.991622924385169, -10.674491602968985 ], [ -68.071724245800169, -10.703078029840725 ], [ -68.158571172941237, -10.784970122808403 ], [ -68.266566782529694, -10.933021886268634 ], [ -68.311116344775996, -10.975099524592522 ], [ -68.397974258245611, -11.018737221569666 ], [ -68.498323383167374, -11.05475040653721 ], [ -68.622743553929254, -11.109198650801744 ], [ -68.678323390033839, -11.112802166564208 ], [ -68.727597073554108, -11.122470135683017 ], [ -68.769894438448873, -11.097728923801711 ], [ -68.784066802270758, -11.044621011619554 ], [ -68.848424714882057, -11.011090736902972 ], [ -69.001651039086553, -10.99445743548722 ], [ -69.228441819222311, -10.955741613697825 ], [ -69.462450617211545, -10.948095129031131 ], [ -69.578543150936994, -10.951698644793595 ], [ -69.673948428013915, -10.954181555044556 ], [ -69.839776071058495, -10.933483312067494 ], [ -69.960372999487021, -10.92987979630503 ], [ -70.066347124623363, -10.982526282688326 ], [ -70.220023888298172, -11.047543375012282 ], [ -70.290446254265817, -11.064198649085128 ], [ -70.341972135137624, -11.066681559336104 ], [ -70.392366424169396, -11.058573648870549 ], [ -70.450868623666693, -11.024823647583091 ], [ -70.533222142433232, -10.946974523519643 ], [ -70.596448463204496, -10.976901282473747 ], [ -70.642349343861724, -11.010189857962359 ], [ -70.641448464921112, -10.840780671812411 ], [ -70.640316873081076, -10.586073630846116 ], [ -70.639415994140464, -10.361293348833925 ], [ -70.638526101528385, -10.181513068538351 ], [ -70.637625222587772, -9.971828001945752 ], [ -70.636944070218036, -9.823776238485522 ], [ -70.593745826382658, -9.767526236339762 ], [ -70.56719187029158, -9.704530628467907 ], [ -70.599151100026347, -9.62059507839102 ], [ -70.592174781400843, -9.543427106697308 ], [ -70.570125220012855, -9.489879741373386 ], [ -70.541099339999349, -9.437452981560966 ], [ -70.607918190204529, -9.463776224752607 ], [ -70.636944070218036, -9.478168315145382 ], [ -70.672495829386733, -9.518004742446266 ], [ -70.758441877587188, -9.571771834341064 ], [ -70.816273911043297, -9.625319199664986 ], [ -70.884444079659417, -9.668978869299224 ], [ -70.970840567330171, -9.765724478458523 ], [ -71.041724359096676, -9.818832390640679 ], [ -71.115299801356485, -9.852340692700167 ], [ -71.237918214237126, -9.965983275160283 ], [ -71.339398930998939, -9.988483276018599 ], [ -71.608047622887696, -10.006017456374977 ], [ -71.887495875735297, -10.005578003233211 ], [ -72.142873082742796, -10.005116577434364 ], [ -72.181566931875096, -10.003776245351972 ], [ -72.179095007952668, -9.91017272615629 ], [ -72.172799841696914, -9.844013055663751 ], [ -72.259866495408858, -9.774271842065829 ], [ -72.26572220852286, -9.688556506764797 ], [ -72.289123088321787, -9.629142441998326 ], [ -72.318148968335294, -9.556698591578566 ], [ -72.379123091755019, -9.510116558551601 ], [ -72.464849413384584, -9.492120952396377 ], [ -72.605474418749012, -9.452064798524603 ], [ -72.814269592729531, -9.410448585999575 ], [ -73.013847237061569, -9.407526222606847 ], [ -73.20937092616083, -9.411349464940187 ], [ -73.089894603243792, -9.265780611730932 ], [ -72.970418280326768, -9.120189785864582 ], [ -72.974021796089232, -8.993077964609398 ], [ -73.070547678677642, -8.882819171340856 ], [ -73.122523999019762, -8.81397883668356 ], [ -73.203075759905062, -8.719254711976376 ], [ -73.302524005886212, -8.65399592042445 ], [ -73.356741537251324, -8.566918280383945 ], [ -73.351797689406482, -8.514271794000649 ], [ -73.360345053013788, -8.479401187201688 ], [ -73.398149009534023, -8.458922670795488 ], [ -73.435941979725712, -8.426974427389268 ], [ -73.488149012967241, -8.392103820590307 ], [ -73.549123136386982, -8.345741514134218 ], [ -73.549123136386982, -8.299401180335224 ], [ -73.572293303286472, -8.249896783915531 ], [ -73.610097259806707, -8.191845023888533 ], [ -73.610097259806707, -8.145504690089538 ], [ -73.644967866605668, -8.072819140441808 ], [ -73.68277182312589, -8.020612107200265 ], [ -73.720345066746702, -7.985741500401318 ], [ -73.775694189951849, -7.936478803209596 ], [ -73.772771826559122, -7.895741496968085 ], [ -73.732045506646159, -7.875504679789856 ], [ -73.714500339961234, -7.828922646762891 ], [ -73.720345066746702, -7.78258231296391 ], [ -73.76691611344512, -7.753556432950404 ], [ -73.822045510079391, -7.738922643329673 ], [ -73.894720073398574, -7.654767366681895 ], [ -73.94691612031157, -7.611129669704752 ], [ -73.981797713439079, -7.585026153083987 ], [ -74.002045516945842, -7.556000273070481 ], [ -73.981797713439079, -7.535741483235171 ], [ -73.958396833640151, -7.506715603221679 ], [ -73.952771833425572, -7.460375269422684 ], [ -73.964241560425606, -7.416715599788446 ], [ -73.964241560425606, -7.378922629596758 ], [ -73.929370953626659, -7.367233176025834 ], [ -73.891797710005847, -7.373077902811303 ], [ -73.853993753485611, -7.349896749583266 ], [ -73.804720069965356, -7.34112965940507 ], [ -73.749370946760195, -7.33526295996252 ], [ -73.720345066746702, -7.309181415998836 ], [ -73.72326743013943, -7.262819109542761 ], [ -73.758149023266924, -7.172819106109529 ], [ -73.793019630065885, -7.13502613591784 ], [ -73.796842872399239, -7.116788830534645 ], [ -72.66352617877601, -7.592672637750681 ], [ -70.373250212502668, -8.155172659208347 ], [ -69.806465522912788, -8.454198549521536 ], [ -66.828599198378711, -9.838168328878282 ], [ -66.627670235635748, -9.925245968918787 ], [ -66.627670235635748, -9.925465695489663 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-RO", "NAME_1": "Rondônia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.627670235635748, -9.925465695489663 ], [ -66.627670235635748, -9.925245968918787 ], [ -66.828599198378711, -9.838168328878282 ], [ -66.743773755689745, -9.748849477814787 ], [ -66.694719798740365, -9.748849477814787 ], [ -66.59662287117014, -9.664013048797287 ], [ -66.502799625403568, -9.63274595776079 ], [ -66.404691711504796, -9.525651227112959 ], [ -66.395693908427177, -9.405043312355886 ], [ -66.105446094620731, -9.418556496465115 ], [ -65.998340377644354, -9.400780616880766 ], [ -65.931290814539736, -9.414052101762039 ], [ -65.766144323864893, -9.565927107555609 ], [ -65.676825472801397, -9.534638043862032 ], [ -65.632275910555094, -9.449823587501612 ], [ -65.525170193578717, -9.414052101762039 ], [ -65.444849145592826, -9.445319192798536 ], [ -65.418075462930872, -9.391771827474614 ], [ -65.221650894890999, -9.257892427836268 ], [ -65.199150894032684, -9.266681490671544 ], [ -65.172366225042182, -9.373995947890265 ], [ -65.092045177056306, -9.436332376049464 ], [ -65.038497811732384, -9.400780616880766 ], [ -64.904618412094038, -9.213112152690542 ], [ -64.926898686381463, -9.11953060615194 ], [ -64.886622805938813, -9.061478846124942 ], [ -64.779517088962422, -8.985431479942704 ], [ -64.69019823789894, -9.021202965682278 ], [ -64.596594718703244, -9.025707360385354 ], [ -64.475997790274718, -8.949879720774021 ], [ -64.417946030247705, -8.972138022404351 ], [ -64.382174544508132, -8.940870931367854 ], [ -64.217017067504756, -8.949879720774021 ], [ -64.118920139934531, -8.936366536664778 ], [ -64.12769821644126, -8.68640558962953 ], [ -64.074150851117338, -8.713168285962936 ], [ -63.998323211505991, -8.681901194926454 ], [ -63.922495571894657, -8.534530583835959 ], [ -63.993818816802914, -8.440927064640263 ], [ -63.917991177191567, -8.333832333992419 ], [ -63.752844686516738, -8.284547664143616 ], [ -63.72607100385477, -8.19094414494792 ], [ -63.591971877645548, -8.164181448614499 ], [ -63.587698195841895, -8.079345019597 ], [ -63.538424512321626, -7.9987932587117 ], [ -62.904590259627142, -8.007802048117853 ], [ -62.828773606344342, -8.016788864866925 ], [ -62.721448162797074, -8.061349413441775 ], [ -62.676898600550771, -8.114896778765697 ], [ -62.636622720108122, -8.222233208641498 ], [ -62.556290685793698, -8.289052058846693 ], [ -62.538525792537897, -8.36059503032584 ], [ -62.45370034984893, -8.347103818873691 ], [ -62.373368315534506, -8.382875304613265 ], [ -62.306318752429902, -8.570302069575533 ], [ -62.172450339120104, -8.610577950018182 ], [ -62.13217445867744, -8.766715651286859 ], [ -61.998295059039108, -8.811495926432599 ], [ -61.917974011053218, -8.873832354591784 ], [ -61.873424448806915, -8.856056475007449 ], [ -61.837641976738794, -8.744457349656528 ], [ -61.761825323455994, -8.72668147007218 ], [ -61.717045048310268, -8.68640558962953 ], [ -61.609950317662424, -8.722177075369103 ], [ -61.609950317662424, -8.766715651286859 ], [ -61.507348995389123, -8.847047685601282 ], [ -61.484848994530822, -8.914108235034448 ], [ -61.529618283348, -8.998922691394853 ], [ -61.556391966009969, -9.128297696330122 ], [ -61.529618283348, -9.226625336799771 ], [ -61.592174438078075, -9.239896821681043 ], [ -61.609950317662424, -9.320448582566343 ], [ -61.547394162932349, -9.409547707058962 ], [ -61.551898557635425, -9.463095072382885 ], [ -61.480575312727169, -9.63725035246388 ], [ -61.520620480270395, -9.704288929239937 ], [ -61.565400755416121, -9.726569203527362 ], [ -61.520620480270395, -9.860448603165707 ], [ -61.534122678051077, -9.994547729374943 ], [ -61.569674437219774, -10.061366579580124 ], [ -61.565400755416121, -10.262306528651621 ], [ -61.471566523321002, -10.436439836075536 ], [ -61.502844600686046, -10.686422755767879 ], [ -61.471566523321002, -10.757746000676136 ], [ -61.520620480270395, -10.789013091712633 ], [ -61.507348995389123, -10.878353915433223 ], [ -61.520620480270395, -10.954181555044556 ], [ -61.471566523321002, -10.998939857533202 ], [ -60.440400712500775, -11.003444252236292 ], [ -60.440400712500775, -11.038996011404976 ], [ -60.382348952473777, -11.10155216613505 ], [ -60.279516917301038, -11.079271891847625 ], [ -60.176915595027737, -11.119547772290289 ], [ -60.069820864379906, -11.115043377587199 ], [ -60.002771301275288, -11.146332441280791 ], [ -59.908948055508716, -11.382802176863891 ], [ -60.025040589234166, -11.534677182657461 ], [ -60.101098941744937, -11.601496032862656 ], [ -60.101098941744937, -11.744362249250059 ], [ -60.060823061302287, -11.905246044449797 ], [ -59.98499542169094, -11.918517529331055 ], [ -59.931448056367017, -12.052396928969401 ], [ -59.886667781221291, -12.128444295151638 ], [ -59.891172175924368, -12.244547815205635 ], [ -59.82412261281975, -12.387194305022163 ], [ -59.908948055508716, -12.619401345130157 ], [ -60.002771301275288, -12.731000470481078 ], [ -60.043047181717938, -12.873866686868496 ], [ -60.083092349261165, -12.927414052192404 ], [ -60.194691474612085, -12.972194327338144 ], [ -60.270749827122856, -13.070302241236917 ], [ -60.275023508926509, -13.137340818012973 ], [ -60.351070875108732, -13.271220217651319 ], [ -60.382348952473777, -13.418590828741813 ], [ -60.659094568499526, -13.601513199001005 ], [ -60.724792813193218, -13.662948748219577 ], [ -60.914471775507025, -13.561479017786311 ], [ -61.076915629360016, -13.489694347079194 ], [ -61.12912266260156, -13.498483409914471 ], [ -61.415997673544965, -13.526608410987365 ], [ -61.511622677192776, -13.541220227951001 ], [ -61.575749876904652, -13.524806653106126 ], [ -61.789950324528888, -13.525707532046738 ], [ -61.874094614848104, -13.470358408841591 ], [ -61.944747693715186, -13.406220222801167 ], [ -62.094820941627518, -13.241974611066937 ], [ -62.117991108527022, -13.159840818871288 ], [ -62.176042868554021, -13.133737302250523 ], [ -62.264021387535138, -13.143646970597288 ], [ -62.352900785456868, -13.132396970168131 ], [ -62.525474034227514, -13.064215815223477 ], [ -62.687017009139879, -12.994254875054679 ], [ -62.765547285573078, -12.997177238447421 ], [ -62.83506877260011, -12.953737295384059 ], [ -62.957917898380188, -12.847103990535075 ], [ -63.015299492365997, -12.805465805352952 ], [ -63.041392022658215, -12.750358381375776 ], [ -63.067495539278994, -12.669125468120725 ], [ -63.116769222799263, -12.651569315107267 ], [ -63.180665709611716, -12.666203104727998 ], [ -63.249747743496982, -12.70781931725304 ], [ -63.346724065555719, -12.680155741979007 ], [ -63.46529950953213, -12.605228981308272 ], [ -63.541797315184667, -12.546715795482427 ], [ -63.585665725061233, -12.519052220208394 ], [ -63.688497760233972, -12.478095187396008 ], [ -63.788165732785998, -12.469547823788702 ], [ -63.938469693597767, -12.529621068267815 ], [ -64.061549532277269, -12.505099582957385 ], [ -64.255040750595867, -12.483280734468821 ], [ -64.420417954170134, -12.439840791405459 ], [ -64.48072191154867, -12.326220181602437 ], [ -64.513340320996093, -12.251073694360826 ], [ -64.611667961465741, -12.20383248162122 ], [ -64.689967524999503, -12.146439901306863 ], [ -64.783340331295776, -12.059362261266358 ], [ -64.829922364322741, -12.030358353909946 ], [ -64.914297367541394, -12.006056595170406 ], [ -64.992596931075155, -11.975228957275675 ], [ -65.001144294682462, -11.920099560641404 ], [ -65.030170174695954, -11.847414010993674 ], [ -65.037146493321458, -11.829418404838449 ], [ -65.090243419175067, -11.741220159286456 ], [ -65.115215343955796, -11.735155705930111 ], [ -65.142670178987501, -11.752250433144724 ], [ -65.163368421964563, -11.76508246488423 ], [ -65.185648696251988, -11.749547796322872 ], [ -65.189691665156218, -11.710172794820835 ], [ -65.175299574763457, -11.646957460378118 ], [ -65.206116226329641, -11.58057806331469 ], [ -65.282174578840412, -11.511056576287658 ], [ -65.322000019812762, -11.43927190558054 ], [ -65.325592549246679, -11.364806570708666 ], [ -65.342467549890415, -11.315082447718083 ], [ -65.372844748314833, -11.289879810037931 ], [ -65.389950461857993, -11.246220140403707 ], [ -65.393542991291909, -11.184345138043355 ], [ -65.371493429903907, -11.110319256313247 ], [ -65.323790791365454, -11.024823647583091 ], [ -65.333920186283109, -10.892746005825984 ], [ -65.402321067798638, -10.714767483411634 ], [ -65.439894311419451, -10.586293357416992 ], [ -65.447090356615831, -10.507323627842041 ], [ -65.436971948026709, -10.449052141244152 ], [ -65.395344749173134, -10.392340713299532 ], [ -65.312991230406595, -10.253078012674592 ], [ -65.298599140013835, -10.14686218831028 ], [ -65.324471943735176, -10.026957398580024 ], [ -65.32807545949764, -9.935595090407318 ], [ -65.309398700972679, -9.872599482535477 ], [ -65.337974141515872, -9.790245963768939 ], [ -65.396245628113761, -9.712396839705491 ], [ -65.436741235127286, -9.710375355253376 ], [ -65.492090358332447, -9.731754750600174 ], [ -65.558700468295285, -9.797452995293867 ], [ -65.637219758399937, -9.80914244886479 ], [ -65.706741245426969, -9.768427115280375 ], [ -65.924775921713092, -9.785521842494987 ], [ -66.26361626667007, -9.826017449508512 ], [ -66.399297424189641, -9.868095087832401 ], [ -66.478948306134328, -9.886090693987626 ], [ -66.575243475823328, -9.899823604667745 ], [ -66.627670235635748, -9.925465695489663 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-RR", "NAME_1": "Roraima" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.868773455282323, 0.224275902629742 ], [ -59.770575247495842, 0.228780297332833 ], [ -60.025040589234166, 0.224275902629742 ], [ -60.127872624406905, 0.13067238343406 ], [ -60.167917791950131, 0.005582046630991 ], [ -60.21697174889951, -0.043482896646935 ], [ -60.252743234639084, -0.15057762729478 ], [ -60.310794994666082, -0.235392083655199 ], [ -60.315299389369159, -0.306957027791427 ], [ -60.38662263427743, -0.463094729060117 ], [ -60.391116042651959, -0.521146489087116 ], [ -60.315299389369159, -0.619474129556764 ], [ -60.306290599963006, -0.673021494880686 ], [ -60.337568677328051, -0.704288585917183 ], [ -60.467174395162729, -0.740082044313837 ], [ -60.516217365783575, -0.829181168806457 ], [ -60.641098962344302, -0.86044825984294 ], [ -60.734922208110873, -0.851681169664758 ], [ -60.815243256096764, -0.686292979761944 ], [ -60.904573093488793, -0.610465340150597 ], [ -60.931346776150761, -0.556917974826689 ], [ -61.060721781086016, -0.530155278493268 ], [ -61.105491069903209, -0.4943618200966 ], [ -61.221594589957206, -0.498866214799691 ], [ -61.243874864244631, -0.547931158077617 ], [ -61.458075311868853, -0.637250009141113 ], [ -61.534122678051077, -0.726568860204608 ], [ -61.578672240297394, -0.945262716203359 ], [ -61.560896360713045, -1.021332055042677 ], [ -61.574167845594303, -1.14169827057178 ], [ -61.618948120740043, -1.275797396781002 ], [ -61.619848999680656, -1.449491251063151 ], [ -61.717275761209692, -1.401129432812041 ], [ -61.798497688136194, -1.388736854214301 ], [ -61.880840220574186, -1.389198280013161 ], [ -61.877698130610568, -1.369400915976698 ], [ -61.935749890637567, -1.244530305744519 ], [ -62.029573136404139, -1.146202665274856 ], [ -62.141172261755059, -1.065870630960433 ], [ -62.203717430156601, -1.043590356673008 ], [ -62.243773584028361, -0.981056174600027 ], [ -62.315316555507508, -0.945262716203359 ], [ -62.417917877780823, -0.829181168806457 ], [ -62.507247715172852, -0.771129408779444 ], [ -62.475969637807822, -0.695301769168111 ], [ -62.377872710237597, -0.717582043455536 ], [ -62.310823147132979, -0.641754403844189 ], [ -62.319820950210598, -0.521146489087116 ], [ -62.368874907159977, -0.467599123763193 ], [ -62.373368315534506, -0.342728513531 ], [ -62.404646392899551, -0.271163569394773 ], [ -62.475969637807822, -0.222120598773927 ], [ -62.511741123547395, -0.123792958304278 ], [ -62.569792883574394, -0.047965318692931 ], [ -62.578790686651999, 0.018853531512249 ], [ -62.525023594757201, 0.094900897694487 ], [ -62.565299475199851, 0.17523293200891 ], [ -62.569792883574394, 0.246556176917167 ], [ -62.53402139783482, 0.313605740021785 ], [ -62.52951700313173, 0.429698273747235 ], [ -62.489471835588503, 0.487750033774233 ], [ -62.484967440885427, 0.541297399098156 ], [ -62.538525792537897, 0.675176798736501 ], [ -62.53402139783482, 0.7332285587635 ], [ -62.444691560442777, 0.804782516571194 ], [ -62.511741123547395, 0.960931204168418 ], [ -62.516245518250471, 1.059247858309519 ], [ -62.614342445820697, 1.362778143325784 ], [ -62.623340248898316, 1.416325508649706 ], [ -62.721448162797074, 1.49665754296413 ], [ -62.788497725901692, 1.603752273611974 ], [ -62.712670086290345, 1.73763167325032 ], [ -62.730445965874694, 1.831454919016892 ], [ -62.690400798331467, 1.911775967002768 ], [ -62.708165691587268, 1.947547452742342 ], [ -62.846549485928691, 2.018881683979146 ], [ -63.002698173525914, 2.018881683979146 ], [ -63.123295101954454, 2.112704929745718 ], [ -63.150068784616408, 2.179754492850336 ], [ -63.306448185113055, 2.16625229506964 ], [ -63.393745551724436, 2.224073342197215 ], [ -63.374849066628599, 2.340407575150635 ], [ -63.38924115702136, 2.411950546629782 ], [ -63.584545119549745, 2.434000108017784 ], [ -63.712568806074088, 2.434000108017784 ], [ -63.924066616876459, 2.45245713997187 ], [ -64.024866181268536, 2.481922473127128 ], [ -64.046696016085647, 2.502400989533328 ], [ -64.048717500537762, 2.525131703291052 ], [ -64.028700409930423, 2.575976431793123 ], [ -64.009122772464849, 2.671832148340357 ], [ -64.037698213008028, 2.801426879846503 ], [ -64.143441625244947, 3.00482776651188 ], [ -64.218818825385981, 3.204625137414794 ], [ -64.228717507404212, 3.343898824368296 ], [ -64.227146462422411, 3.491280421787323 ], [ -64.221071022737533, 3.587355864905447 ], [ -64.275299540431178, 3.662733065046481 ], [ -64.568019278160051, 3.89987296667077 ], [ -64.669049555451551, 4.011702804921114 ], [ -64.702568843839586, 4.089332202413701 ], [ -64.817771484952971, 4.232198418801104 ], [ -64.788745604939464, 4.276077815006218 ], [ -64.72236620787605, 4.274506770024416 ], [ -64.665446039689087, 4.237153252974494 ], [ -64.613700432246404, 4.15773308392923 ], [ -64.576346915196481, 4.139957204344881 ], [ -64.525491200365863, 4.139957204344881 ], [ -64.255721902965604, 4.140407643815195 ], [ -64.19249558219434, 4.126905446034499 ], [ -64.154241186203791, 4.100131763372545 ], [ -64.121622776756382, 4.067051928126276 ], [ -64.073469698747601, 3.974349287871192 ], [ -64.021493378405495, 3.9291295595837 ], [ -63.914618374328541, 3.930700604565502 ], [ -63.746999959731269, 3.932502362446741 ], [ -63.652946001065274, 3.940829999483157 ], [ -63.596695998919515, 3.914957195761815 ], [ -63.526724072422169, 3.893797526985892 ], [ -63.379792914473441, 3.942851483935272 ], [ -63.338616155090165, 3.943983075775321 ], [ -63.294747745213598, 3.922153240958195 ], [ -63.136116147365414, 3.756556310813053 ], [ -63.045215264991569, 3.686573397987161 ], [ -62.968717459339032, 3.593881744060639 ], [ -62.856898607417236, 3.593431304590325 ], [ -62.764646406632465, 3.672851473635589 ], [ -62.739894208422612, 3.940379560012857 ], [ -62.712219646820046, 4.017997971176882 ], [ -62.665417887222191, 4.039608079423118 ], [ -62.609849037446168, 4.042299729916422 ], [ -62.543920079853052, 4.084377368240311 ], [ -62.472596834944781, 4.138605885933956 ], [ -62.410721832584429, 4.156832204988618 ], [ -62.153092428225406, 4.098330005491306 ], [ -62.081549456746259, 4.126224293664762 ], [ -61.820766976095072, 4.197108085431267 ], [ -61.554150754986964, 4.287778254905689 ], [ -61.479443720887119, 4.402299743649337 ], [ -61.367624868965322, 4.432907654973178 ], [ -61.280096789454518, 4.516832218721532 ], [ -61.209443710587436, 4.508054142214789 ], [ -61.102348979939592, 4.504681339351762 ], [ -61.0362002957756, 4.519304142643946 ], [ -61.002900733958441, 4.535278264347056 ], [ -60.966448095849145, 4.574653265849093 ], [ -60.906144138470594, 4.686702830670328 ], [ -60.833469575151412, 4.729230908464515 ], [ -60.741667813836955, 4.774230910181132 ], [ -60.679122645435413, 4.827108109463865 ], [ -60.627596764563606, 4.892575641258119 ], [ -60.603745445294379, 4.949276082874206 ], [ -60.604415611335568, 4.994506797490246 ], [ -60.635023522659424, 5.082023890672502 ], [ -60.671915613910485, 5.164377409439041 ], [ -60.711971767782259, 5.191601531571308 ], [ -60.742118253307254, 5.201950653059839 ], [ -60.651448083832847, 5.221077851055114 ], [ -60.576521323162112, 5.192502410511921 ], [ -60.459516924167502, 5.187998015808844 ], [ -60.408891922236307, 5.210047577196846 ], [ -60.335096753405622, 5.199248016238002 ], [ -60.241723947109364, 5.257980928634737 ], [ -60.18165070263025, 5.238853730639462 ], [ -60.142044988228776, 5.238853730639462 ], [ -60.106042789589779, 5.19430416839316 ], [ -60.078148501416322, 5.143898893032841 ], [ -59.990620421905518, 5.082924769613115 ], [ -59.999398498412248, 4.989782676216279 ], [ -60.015372620115372, 4.907429157449741 ], [ -60.026842347115405, 4.812705032742556 ], [ -60.031797181288781, 4.740480908893673 ], [ -60.06891998543928, 4.666674753734441 ], [ -60.124499821543864, 4.597603706177708 ], [ -60.140924382717287, 4.569698431675718 ], [ -60.148570867383981, 4.533256779894955 ], [ -60.111217350334044, 4.511207218506954 ], [ -60.045068666170053, 4.504681339351762 ], [ -59.962275694261749, 4.501747989630488 ], [ -59.906025692115989, 4.480379580612222 ], [ -59.833340142468245, 4.475875185909146 ], [ -59.745823049285988, 4.416702820370645 ], [ -59.7032949714918, 4.381151061201948 ], [ -59.699691455729337, 4.353476499599381 ], [ -59.72759673023134, 4.287547542006266 ], [ -59.738616017761061, 4.226804131485963 ], [ -59.716797169272496, 4.188099296025115 ], [ -59.69114409212203, 4.160424734422534 ], [ -59.620271286684073, 4.023172531921148 ], [ -59.586521285396614, 3.975480879711242 ], [ -59.557715131953998, 3.959957197478431 ], [ -59.55120023912734, 3.933622967958229 ], [ -59.575491011538332, 3.883448405497347 ], [ -59.604516891551839, 3.819782631584317 ], [ -59.670215136245531, 3.752733068479714 ], [ -59.67899321275226, 3.699855869196981 ], [ -59.731650685464103, 3.666556307379821 ], [ -59.854499811244182, 3.587575591476323 ], [ -59.833120415897369, 3.462254541773831 ], [ -59.828846734093716, 3.398577781532254 ], [ -59.831098931445254, 3.349304098011984 ], [ -59.87294585686972, 3.283155413847993 ], [ -59.945620420188902, 3.087851451319608 ], [ -59.97239410285087, 2.990424689790572 ], [ -59.995794982649784, 2.765424681207506 ], [ -59.994443664238858, 2.690047481066472 ], [ -59.9606936629514, 2.58835802406233 ], [ -59.889590144614019, 2.362907576008951 ], [ -59.849094537600479, 2.32712510394083 ], [ -59.755271291833907, 2.274028178087221 ], [ -59.74357085193445, 2.121702732823337 ], [ -59.751667776071443, 1.962400968933963 ], [ -59.756172170774533, 1.900525966573611 ], [ -59.740648488541723, 1.874202723381956 ], [ -59.698570850217834, 1.861381677970996 ], [ -59.668424364692839, 1.842254479975736 ], [ -59.663700243418873, 1.795232993807005 ], [ -59.6666226068116, 1.746179036857626 ], [ -59.596650680314269, 1.718054035784732 ], [ -59.535665570565996, 1.70004744330096 ], [ -59.479415568420222, 1.632327714155167 ], [ -59.377715125087533, 1.527254467959438 ], [ -59.337219518074008, 1.508127269964163 ], [ -59.316971714567231, 1.464698313229363 ], [ -59.231245392937666, 1.376049628207056 ], [ -59.100299343020595, 1.343650945330523 ], [ -58.968441427834364, 1.304506656727909 ], [ -58.966419943382249, 1.302474185947247 ], [ -58.868773455282323, 0.224275902629742 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-AM", "NAME_1": "Amazonas" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.828599198378711, -9.838168328878282 ], [ -69.806465522912788, -8.454198549521536 ], [ -70.373250212502668, -8.155172659208347 ], [ -72.66352617877601, -7.592672637750681 ], [ -73.796842872399239, -7.116788830534645 ], [ -73.804720069965356, -7.079896739283569 ], [ -73.776375342321586, -6.973483161005475 ], [ -73.758149023266924, -6.905741459202574 ], [ -73.694472263025361, -6.83373706192458 ], [ -73.499849452866712, -6.679401118537129 ], [ -73.325474446214827, -6.574767325483165 ], [ -73.240418290626451, -6.563978750852868 ], [ -73.17742268275461, -6.525262929063473 ], [ -73.137366528882836, -6.465870836954096 ], [ -73.126347241353102, -6.40085374463014 ], [ -73.135345044430721, -6.34436204325641 ], [ -73.167743727307254, -6.260668192407493 ], [ -73.206448562768102, -6.156495825152376 ], [ -73.235474442781609, -6.098444065125378 ], [ -73.20937092616083, -6.028702851527456 ], [ -73.162799879462412, -5.933297574450535 ], [ -73.068075754755228, -5.789530479122504 ], [ -72.979866522874687, -5.634952836507097 ], [ -72.970198553755878, -5.58973310821959 ], [ -72.958948553326721, -5.495228710083282 ], [ -72.918222233413772, -5.302616398048215 ], [ -72.895722232555457, -5.198224304222222 ], [ -72.907422672454928, -5.157728697208682 ], [ -72.887174868948151, -5.122858090409721 ], [ -72.832045472313879, -5.093832210396229 ], [ -72.698616512145847, -5.067267267976604 ], [ -72.608396782141739, -5.009676933748452 ], [ -72.468892382288814, -4.901219898361148 ], [ -72.352799848563365, -4.786017257247764 ], [ -72.256724405445254, -4.748905439425812 ], [ -72.082569125364259, -4.642250161919733 ], [ -71.982450713341919, -4.57453043277394 ], [ -71.943075711839882, -4.553370763998004 ], [ -71.844748071370233, -4.504327793377172 ], [ -71.668340593937685, -4.48723306616256 ], [ -71.521420422317505, -4.469676913149087 ], [ -71.438166024610354, -4.437486970514897 ], [ -71.316898930140624, -4.424215485633624 ], [ -71.234995850844399, -4.388224273323175 ], [ -71.144325681369978, -4.387323394382548 ], [ -70.973773917051446, -4.350431303131487 ], [ -70.915722157024447, -4.295301906497215 ], [ -70.865998034033879, -4.229603661803523 ], [ -70.79961863697045, -4.173353659657764 ], [ -70.721549786336112, -4.158939596607908 ], [ -70.634472146295607, -4.168629538383797 ], [ -70.530750218510818, -4.167486960215214 ], [ -70.404748016438589, -4.150172506429712 ], [ -70.343543180119426, -4.193590476835979 ], [ -70.317000210356895, -4.246918115589011 ], [ -70.239151086293433, -4.30114663328267 ], [ -70.184021689659161, -4.298224269889943 ], [ -70.128892293024904, -4.286512843661939 ], [ -70.05329536631298, -4.333094876688904 ], [ -70.004021682792711, -4.327250149903449 ], [ -69.972073439386477, -4.30114663328267 ], [ -69.965997999701599, -4.235887841730744 ], [ -69.948222120117251, -4.200577781790031 ], [ -69.911099315966752, -3.996495742754917 ], [ -69.849674753076712, -3.659896608820929 ], [ -69.794094916972142, -3.354564565923425 ], [ -69.732670354082103, -3.01662509990706 ], [ -69.668993593840526, -2.667655360032427 ], [ -69.604646667557759, -2.314181225454703 ], [ -69.55176946827504, -2.024142151890601 ], [ -69.506549739987534, -1.77484038456798 ], [ -69.47864446548553, -1.622064499833797 ], [ -69.434995782179854, -1.421607949218242 ], [ -69.417901054965242, -1.245650911256007 ], [ -69.400344901951769, -1.195025909324826 ], [ -69.411375175810036, -1.152267118631201 ], [ -69.449168146001725, -1.091512721782351 ], [ -69.448717706531426, -1.06496975201982 ], [ -69.444444024727773, -1.029637719422013 ], [ -69.448717706531426, -0.998832054184362 ], [ -69.488323420932886, -0.96574123260956 ], [ -69.519370785398493, -0.945724142002206 ], [ -69.54344183123861, -0.91713771513048 ], [ -69.554691831667768, -0.877323260486676 ], [ -69.574500182032764, -0.837728532413763 ], [ -69.583267272210961, -0.79587062066075 ], [ -69.611842712754154, -0.762801771743028 ], [ -69.620620789260883, -0.72094385999003 ], [ -69.600823425224419, -0.681349131917102 ], [ -69.59204534871769, -0.639271493593228 ], [ -69.600823425224419, -0.5996767655203 ], [ -69.611842712754154, -0.553314459064225 ], [ -69.633892274142141, -0.509215336288221 ], [ -69.667422548858724, -0.482452639954801 ], [ -69.747523870273724, -0.452525881000696 ], [ -69.827844918259601, -0.381422362663301 ], [ -69.922799755866222, -0.317525875850848 ], [ -70.044066850335938, -0.196236808724038 ], [ -70.070620806427016, -0.138866201066776 ], [ -70.070840532997906, 0.018622818612826 ], [ -70.065665972253626, 0.189405295830795 ], [ -70.058019487586947, 0.447254426760708 ], [ -70.053965532354169, 0.578650916148078 ], [ -69.98534492426775, 0.585857947673006 ], [ -69.925040966889213, 0.589450477106922 ], [ -69.862045359017372, 0.598448280184542 ], [ -69.807146675282524, 0.607457069590694 ], [ -69.75674139992222, 0.626353554686546 ], [ -69.718948429730531, 0.649754434485459 ], [ -69.673717715114492, 0.665047403818846 ], [ -69.638616395416108, 0.659653116503691 ], [ -69.603526062046271, 0.680351359480767 ], [ -69.564821226585423, 0.700148723517231 ], [ -69.527017270065187, 0.716353558119778 ], [ -69.472118586330339, 0.729855755900459 ], [ -69.420823418357969, 0.698357951964539 ], [ -69.392017264915353, 0.666849161700071 ], [ -69.358717703098193, 0.651556192366698 ], [ -69.327219899162273, 0.655148721800614 ], [ -69.305620777244584, 0.65245707130731 ], [ -69.283120776386269, 0.627254433627158 ], [ -69.254094896372777, 0.625452675745933 ], [ -69.212698410418625, 0.629957070449009 ], [ -69.173993574957777, 0.635351357764151 ], [ -69.155997968802552, 0.642547402960545 ], [ -69.153295331980701, 0.658752237563078 ], [ -69.163194013998933, 0.686657512065082 ], [ -69.176696211779628, 0.712750042357314 ], [ -69.165896650820784, 0.753256635699387 ], [ -69.164995771880157, 0.801849166849919 ], [ -69.163194013998933, 0.863954882109695 ], [ -69.19379093899424, 0.898375049438343 ], [ -69.224398850318082, 0.963172415191409 ], [ -69.258599291075853, 1.015379448432952 ], [ -69.311915943500352, 1.050480768131337 ], [ -69.361420339920045, 1.063982965912032 ], [ -69.402816825874197, 1.042372857665796 ], [ -69.441521661335045, 1.03878032823188 ], [ -69.470316828449114, 1.058577692268329 ], [ -69.517118588046955, 1.059478571208956 ], [ -69.567523863407274, 1.065773737464724 ], [ -69.620840515831759, 1.073200495560528 ], [ -69.716915958949869, 1.059028131738643 ], [ -69.751347112607064, 1.076573298423568 ], [ -69.798148872204919, 1.078375056304793 ], [ -69.852146676999141, 1.059478571208956 ], [ -69.850795358588215, 1.308780338531562 ], [ -69.849444040177289, 1.543898755703736 ], [ -69.848543161236677, 1.708825519807704 ], [ -69.799950630086144, 1.705232990373773 ], [ -69.739646672707607, 1.734929036428468 ], [ -69.650097108744689, 1.739422444802997 ], [ -69.581245787758846, 1.770700522168042 ], [ -69.542991391768297, 1.773172446090456 ], [ -69.470097101878224, 1.757879476757083 ], [ -69.394269462266891, 1.725700520451426 ], [ -69.319793141066469, 1.721207112076897 ], [ -69.124269451967209, 1.721207112076897 ], [ -68.913222080635137, 1.721426838647773 ], [ -68.678543116604715, 1.721426838647773 ], [ -68.443424699432541, 1.721657551547196 ], [ -68.239573373296849, 1.721657551547196 ], [ -68.176566779096461, 1.719855793665971 ], [ -68.213250130105195, 1.774523764501382 ], [ -68.255997934470273, 1.845407556267887 ], [ -68.239342660397426, 1.901426845514223 ], [ -68.218424690849474, 1.957676847659997 ], [ -68.193892219210497, 1.986922454244379 ], [ -68.130215458968934, 1.955875089778772 ], [ -68.077118533115311, 1.860030359560085 ], [ -68.032799683768431, 1.788025962282077 ], [ -67.98982116650393, 1.75247420311338 ], [ -67.936273801180022, 1.748431234209164 ], [ -67.875519404331172, 1.760582113578934 ], [ -67.814995720381745, 1.790047446734192 ], [ -67.71194395863813, 1.922125088491299 ], [ -67.609122909793953, 2.035075532253146 ], [ -67.556025983940344, 2.073099215344257 ], [ -67.499545268895147, 2.107980808471765 ], [ -67.457698343470682, 2.121252293353024 ], [ -67.400547462384296, 2.116747898649948 ], [ -67.35194394490523, 2.085931247083764 ], [ -67.320665867540185, 2.032153168860418 ], [ -67.205924652225661, 1.84472640389815 ], [ -67.11929745165547, 1.703650959063424 ], [ -67.09004085874254, 1.615672440082307 ], [ -67.088250087189849, 1.400582099846019 ], [ -67.093644374505004, 1.210002258591601 ], [ -67.082174647504971, 1.185480773281185 ], [ -67.065299646861234, 1.178273741756257 ], [ -66.876071124017741, 1.223054016901983 ], [ -66.619122872028441, 0.992198295204915 ], [ -66.429224183143759, 0.821657517214916 ], [ -66.347090390948111, 0.767198286621849 ], [ -66.301650936089729, 0.751905317288461 ], [ -66.191172416250311, 0.763375044288495 ], [ -66.059995653433816, 0.785424605676496 ], [ -65.996318893192239, 0.809726364416036 ], [ -65.92589652722458, 0.863054003169069 ], [ -65.811375038480932, 0.937299611470067 ], [ -65.718221958755549, 0.97802593138303 ], [ -65.681549594075364, 0.983431205026719 ], [ -65.64464651649574, 0.970379446716336 ], [ -65.566116240062556, 0.926049611040909 ], [ -65.522917996227179, 0.843476365703495 ], [ -65.562743437199515, 0.747400922585385 ], [ -65.555997831473448, 0.687997844147461 ], [ -65.473424586136019, 0.691150920439611 ], [ -65.407275901972028, 0.790379439849886 ], [ -65.360924581844486, 0.868679003383647 ], [ -65.263948259785764, 0.931905324154911 ], [ -65.169674574548878, 1.022125054159034 ], [ -65.103745616955763, 1.108082088688022 ], [ -65.02656665893349, 1.158476377719794 ], [ -64.910023685737741, 1.219681214038943 ], [ -64.817991211523847, 1.257023744760332 ], [ -64.731594723853092, 1.253431215326401 ], [ -64.667467524141202, 1.293926822339941 ], [ -64.584443839333474, 1.369974188522164 ], [ -64.5261723527356, 1.430948311941904 ], [ -64.486116198863826, 1.452778146759016 ], [ -64.405124984836746, 1.446922433645014 ], [ -64.304094707545261, 1.45525007068143 ], [ -64.205096901034409, 1.529506665310976 ], [ -64.114866184701754, 1.61927595584477 ], [ -64.06694381959241, 1.770480795597152 ], [ -64.03544601565649, 1.904349208906964 ], [ -64.008441620095113, 1.931573331039232 ], [ -63.97582321064769, 1.95295272638603 ], [ -63.937118375186841, 1.966905363637039 ], [ -63.844415734931772, 1.976804045655271 ], [ -63.682191607649656, 2.048127290563528 ], [ -63.57037275572786, 2.120582127311835 ], [ -63.463948191121204, 2.136105809544645 ], [ -63.432450387185284, 2.155452734110796 ], [ -63.393965278295326, 2.222502297215414 ], [ -63.393745551724436, 2.224073342197215 ], [ -63.306448185113055, 2.16625229506964 ], [ -63.150068784616408, 2.179754492850336 ], [ -63.123295101954454, 2.112704929745718 ], [ -63.002698173525914, 2.018881683979146 ], [ -62.846549485928691, 2.018881683979146 ], [ -62.708165691587268, 1.947547452742342 ], [ -62.690400798331467, 1.911775967002768 ], [ -62.730445965874694, 1.831454919016892 ], [ -62.712670086290345, 1.73763167325032 ], [ -62.788497725901692, 1.603752273611974 ], [ -62.721448162797074, 1.49665754296413 ], [ -62.623340248898316, 1.416325508649706 ], [ -62.614342445820697, 1.362778143325784 ], [ -62.516245518250471, 1.059247858309519 ], [ -62.511741123547395, 0.960931204168418 ], [ -62.444691560442777, 0.804782516571194 ], [ -62.53402139783482, 0.7332285587635 ], [ -62.538525792537897, 0.675176798736501 ], [ -62.484967440885427, 0.541297399098156 ], [ -62.489471835588503, 0.487750033774233 ], [ -62.52951700313173, 0.429698273747235 ], [ -62.53402139783482, 0.313605740021785 ], [ -62.569792883574394, 0.246556176917167 ], [ -62.565299475199851, 0.17523293200891 ], [ -62.525023594757201, 0.094900897694487 ], [ -62.578790686651999, 0.018853531512249 ], [ -62.569792883574394, -0.047965318692931 ], [ -62.511741123547395, -0.123792958304278 ], [ -62.475969637807822, -0.222120598773927 ], [ -62.404646392899551, -0.271163569394773 ], [ -62.373368315534506, -0.342728513531 ], [ -62.368874907159977, -0.467599123763193 ], [ -62.319820950210598, -0.521146489087116 ], [ -62.310823147132979, -0.641754403844189 ], [ -62.377872710237597, -0.717582043455536 ], [ -62.475969637807822, -0.695301769168111 ], [ -62.507247715172852, -0.771129408779444 ], [ -62.417917877780823, -0.829181168806457 ], [ -62.315316555507508, -0.945262716203359 ], [ -62.243773584028361, -0.981056174600027 ], [ -62.203717430156601, -1.043590356673008 ], [ -62.141172261755059, -1.065870630960433 ], [ -62.029573136404139, -1.146202665274856 ], [ -61.935749890637567, -1.244530305744519 ], [ -61.877698130610568, -1.369400915976698 ], [ -61.880840220574186, -1.389198280013161 ], [ -61.798497688136194, -1.388736854214301 ], [ -61.717275761209692, -1.401129432812041 ], [ -61.619848999680656, -1.449491251063151 ], [ -61.618948120740043, -1.275797396781002 ], [ -61.574167845594303, -1.14169827057178 ], [ -61.560896360713045, -1.021332055042677 ], [ -61.578672240297394, -0.945262716203359 ], [ -61.534122678051077, -0.726568860204608 ], [ -61.458075311868853, -0.637250009141113 ], [ -61.243874864244631, -0.547931158077617 ], [ -61.221594589957206, -0.498866214799691 ], [ -61.105491069903209, -0.4943618200966 ], [ -61.060721781086016, -0.530155278493268 ], [ -60.931346776150761, -0.556917974826689 ], [ -60.904573093488793, -0.610465340150597 ], [ -60.815243256096764, -0.686292979761944 ], [ -60.734922208110873, -0.851681169664758 ], [ -60.641098962344302, -0.86044825984294 ], [ -60.516217365783575, -0.829181168806457 ], [ -60.467174395162729, -0.740082044313837 ], [ -60.337568677328051, -0.704288585917183 ], [ -60.306290599963006, -0.673021494880686 ], [ -60.315299389369159, -0.619474129556764 ], [ -60.391116042651959, -0.521146489087116 ], [ -60.38662263427743, -0.463094729060117 ], [ -60.315299389369159, -0.306957027791427 ], [ -60.310794994666082, -0.235392083655199 ], [ -60.252743234639084, -0.15057762729478 ], [ -60.21697174889951, -0.043482896646935 ], [ -60.167917791950131, 0.005582046630991 ], [ -60.127872624406905, 0.13067238343406 ], [ -60.025040589234166, 0.224275902629742 ], [ -59.770575247495842, 0.228780297332833 ], [ -58.868773455282323, 0.224275902629742 ], [ -58.850997575697988, -0.083736804432505 ], [ -58.86449977347867, -0.173077628153081 ], [ -58.855490984072517, -0.351495603709196 ], [ -58.739398450347068, -0.432047364594496 ], [ -58.748396253424673, -0.62397852425984 ], [ -58.703615978278947, -0.695301769168111 ], [ -58.627799324996147, -0.766844740647258 ], [ -58.569747564969148, -0.762340345944182 ], [ -58.440372560033893, -0.86044825984294 ], [ -58.39109887651361, -1.048094751376084 ], [ -58.315271236902262, -1.119417996284355 ], [ -58.252715082172188, -1.128426785690522 ], [ -58.159122549305039, -1.235521516338338 ], [ -58.083075183122816, -1.298077671068427 ], [ -57.980473860849543, -1.34712064168923 ], [ -57.900141826535105, -1.422948281300592 ], [ -57.828598855055944, -1.445228555588045 ], [ -57.654674287874371, -1.588094771975463 ], [ -57.565344450482328, -1.623866257715036 ], [ -57.449240930428331, -1.690926807148188 ], [ -57.337641805077411, -1.730982961019961 ], [ -57.275096636675883, -1.713207081435613 ], [ -57.248322954013915, -1.757745657353368 ], [ -57.167990919699491, -1.771236868805516 ], [ -57.087669871713615, -1.81129302267729 ], [ -57.007348823727739, -1.936405332137454 ], [ -56.824195740569124, -2.034491273379132 ], [ -56.743874692583248, -2.052486879534356 ], [ -56.748368100957777, -2.17737946242363 ], [ -56.63676897560687, -2.222137764912276 ], [ -56.498396167593981, -2.159603582839281 ], [ -56.484893969813299, -2.248922433902749 ], [ -56.400969406064945, -2.336219800514158 ], [ -56.391070724046713, -2.391788650290195 ], [ -56.75714617746452, -3.186495711855869 ], [ -58.292990962614851, -6.49893968587179 ], [ -58.374443602440763, -6.57050463000806 ], [ -58.436769044271415, -6.675797602774665 ], [ -58.455445802796376, -6.793922607280777 ], [ -58.385924315769344, -6.949181402265936 ], [ -58.228424309761195, -7.141552015073032 ], [ -58.146290517565546, -7.263500261912498 ], [ -58.136622548446738, -7.338207296012342 ], [ -58.201870353670117, -7.414474388765456 ], [ -58.223700188487229, -7.484677028162224 ], [ -58.223919915058119, -7.574677031595442 ], [ -58.259471674226816, -7.67322439863598 ], [ -58.330344479664774, -7.780099402712935 ], [ -58.353525632892811, -7.905870891885741 ], [ -58.328773434682958, -8.050538866154383 ], [ -58.354415525504876, -8.27600030053631 ], [ -58.397174316198502, -8.415504700389221 ], [ -58.426650635682307, -8.523038884178831 ], [ -58.471650637398923, -8.690888011675511 ], [ -58.547467290681723, -8.74893977170251 ], [ -61.609950317662424, -8.766715651286859 ], [ -61.609950317662424, -8.722177075369103 ], [ -61.717045048310268, -8.68640558962953 ], [ -61.761825323455994, -8.72668147007218 ], [ -61.837641976738794, -8.744457349656528 ], [ -61.873424448806915, -8.856056475007449 ], [ -61.917974011053218, -8.873832354591784 ], [ -61.998295059039108, -8.811495926432599 ], [ -62.13217445867744, -8.766715651286859 ], [ -62.172450339120104, -8.610577950018182 ], [ -62.306318752429902, -8.570302069575533 ], [ -62.373368315534506, -8.382875304613265 ], [ -62.45370034984893, -8.347103818873691 ], [ -62.538525792537897, -8.36059503032584 ], [ -62.556290685793698, -8.289052058846693 ], [ -62.636622720108122, -8.222233208641498 ], [ -62.676898600550771, -8.114896778765697 ], [ -62.721448162797074, -8.061349413441775 ], [ -62.828773606344342, -8.016788864866925 ], [ -62.904590259627142, -8.007802048117853 ], [ -63.538424512321626, -7.9987932587117 ], [ -63.587698195841895, -8.079345019597 ], [ -63.591971877645548, -8.164181448614499 ], [ -63.72607100385477, -8.19094414494792 ], [ -63.752844686516738, -8.284547664143616 ], [ -63.917991177191567, -8.333832333992419 ], [ -63.993818816802914, -8.440927064640263 ], [ -63.922495571894657, -8.534530583835959 ], [ -63.998323211505991, -8.681901194926454 ], [ -64.074150851117338, -8.713168285962936 ], [ -64.12769821644126, -8.68640558962953 ], [ -64.118920139934531, -8.936366536664778 ], [ -64.217017067504756, -8.949879720774021 ], [ -64.382174544508132, -8.940870931367854 ], [ -64.417946030247705, -8.972138022404351 ], [ -64.475997790274718, -8.949879720774021 ], [ -64.596594718703244, -9.025707360385354 ], [ -64.69019823789894, -9.021202965682278 ], [ -64.779517088962422, -8.985431479942704 ], [ -64.886622805938813, -9.061478846124942 ], [ -64.926898686381463, -9.11953060615194 ], [ -64.904618412094038, -9.213112152690542 ], [ -65.038497811732384, -9.400780616880766 ], [ -65.092045177056306, -9.436332376049464 ], [ -65.172366225042182, -9.373995947890265 ], [ -65.199150894032684, -9.266681490671544 ], [ -65.221650894890999, -9.257892427836268 ], [ -65.418075462930872, -9.391771827474614 ], [ -65.444849145592826, -9.445319192798536 ], [ -65.525170193578717, -9.414052101762039 ], [ -65.632275910555094, -9.449823587501612 ], [ -65.676825472801397, -9.534638043862032 ], [ -65.766144323864893, -9.565927107555609 ], [ -65.931290814539736, -9.414052101762039 ], [ -65.998340377644354, -9.400780616880766 ], [ -66.105446094620731, -9.418556496465115 ], [ -66.395693908427177, -9.405043312355886 ], [ -66.404691711504796, -9.525651227112959 ], [ -66.502799625403568, -9.63274595776079 ], [ -66.59662287117014, -9.664013048797287 ], [ -66.694719798740365, -9.748849477814787 ], [ -66.743773755689745, -9.748849477814787 ], [ -66.828599198378711, -9.838168328878282 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-PA", "NAME_1": "Pará" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -58.868773455282323, 0.224275902629742 ], [ -58.966419943382249, 1.302474185947247 ], [ -58.916695820391681, 1.248926820623353 ], [ -58.862467302698008, 1.203707092335833 ], [ -58.821740982785059, 1.2012241820849 ], [ -58.787320815456383, 1.208431213609913 ], [ -58.730400647269448, 1.247575502212442 ], [ -58.684719493183024, 1.281105776928996 ], [ -58.60506861123838, 1.279073306148348 ], [ -58.511915531513012, 1.284698306362941 ], [ -58.495721683239026, 1.312153141394674 ], [ -58.486943606732268, 1.347704900563258 ], [ -58.506070804727528, 1.438605782937259 ], [ -58.472990969481316, 1.466280344539769 ], [ -58.395822997787548, 1.481804026772636 ], [ -58.380299315554737, 1.530176831352151 ], [ -58.362743162541221, 1.556730787443371 ], [ -58.340693601153305, 1.58754743900937 ], [ -58.31415063139076, 1.592051833712503 ], [ -58.28107079614449, 1.574275954128211 ], [ -58.230445794213267, 1.563256666598477 ], [ -58.173075186555991, 1.547952710936613 ], [ -58.142247548661317, 1.516905346470935 ], [ -58.091391833830642, 1.514422436220059 ], [ -58.034691392214654, 1.520278149333876 ], [ -58.011740951885997, 1.539855786799592 ], [ -57.99509666414167, 1.574275954128211 ], [ -57.982715071872519, 1.648532548757714 ], [ -57.9462734200917, 1.650554033209858 ], [ -57.873368143873051, 1.667198320954185 ], [ -57.795749732709112, 1.70004744330106 ], [ -57.691797092024899, 1.704782550903417 ], [ -57.594370330495849, 1.704101398533737 ], [ -57.545766813016712, 1.726150959921654 ], [ -57.500547084729249, 1.773853598460107 ], [ -57.412799278647583, 1.908853603609998 ], [ -57.366898397990326, 1.940131680975128 ], [ -57.317394001570563, 1.963532560774013 ], [ -57.275547076146154, 1.959247892641883 ], [ -57.189590041617123, 1.981528166929309 ], [ -57.118947949078688, 2.013926849805898 ], [ -57.092624705887033, 2.005829925668877 ], [ -57.037495309252733, 1.936528165212735 ], [ -57.010040474221057, 1.921224209550701 ], [ -56.969544867207446, 1.916500088276791 ], [ -56.83679705940915, 1.881179042007489 ], [ -56.766374693441492, 1.892198329537223 ], [ -56.68986590146045, 1.914247890925139 ], [ -56.616521172100022, 1.922575527961612 ], [ -56.563643972817317, 1.907282558628253 ], [ -56.525400563155301, 1.927299649235522 ], [ -56.482872485361213, 1.942153165427158 ], [ -56.452945726407052, 1.932254483408883 ], [ -56.385896163302448, 1.923926846372581 ], [ -56.22704483888333, 1.885452723811113 ], [ -56.019820709884584, 1.842254479975736 ], [ -55.96333999483943, 1.857107996167372 ], [ -55.929589993551929, 1.887474208263313 ], [ -55.921723782314359, 1.976573332755947 ], [ -55.91541762973003, 2.039579926956264 ], [ -55.961999662757023, 2.095148776732287 ], [ -56.020040436455531, 2.158155370932775 ], [ -56.073598788108029, 2.236674661037284 ], [ -56.137715001491358, 2.258954935324823 ], [ -56.12939835078339, 2.29945054233832 ], [ -56.087771151929871, 2.341297467762729 ], [ -56.045023347564779, 2.364478620990781 ], [ -56.020271149354983, 2.392823348634579 ], [ -55.993497466692929, 2.497457141688471 ], [ -55.975490874209186, 2.515903187313995 ], [ -55.957495268054004, 2.520407582017128 ], [ -55.935896146136315, 2.516573353355284 ], [ -55.893818507812398, 2.489579944122454 ], [ -55.730473775018822, 2.406105819844413 ], [ -55.658919817211142, 2.41870713868434 ], [ -55.385316291148968, 2.440525987173032 ], [ -55.343919805194787, 2.488679065181771 ], [ -55.286098758067283, 2.499698352711505 ], [ -55.187771117597606, 2.547400991249958 ], [ -55.148846555565854, 2.55077379411307 ], [ -55.114195675337783, 2.53930406711288 ], [ -55.070316279132669, 2.548301870190642 ], [ -55.005749626279055, 2.593082145336382 ], [ -54.978745230717664, 2.59757555371084 ], [ -54.968396109229104, 2.548301870190642 ], [ -54.926549183804582, 2.497457141688471 ], [ -54.876143908444305, 2.45042466919125 ], [ -54.851622423133847, 2.439625108232349 ], [ -54.766796980444951, 2.454698350994931 ], [ -54.722247418198663, 2.441657579013167 ], [ -54.714820660102873, 2.425002304940222 ], [ -54.73484873703876, 2.416224228433464 ], [ -54.717072857454411, 2.264579935539416 ], [ -54.78839610236264, 2.130480809330038 ], [ -54.752844343193885, 2.081426852380673 ], [ -54.792900497065716, 2.010103607472502 ], [ -54.7616224197007, 1.969827727029838 ], [ -54.766115828075158, 1.898504482121496 ], [ -54.73484873703876, 1.773403158989879 ], [ -54.578700049441466, 1.782400962067584 ], [ -54.498368015127028, 1.746629476328053 ], [ -54.364499601817215, 1.760131674108663 ], [ -54.203615806617563, 1.657299638935967 ], [ -54.172348715580995, 1.657299638935967 ], [ -54.083249591088475, 1.541207105210503 ], [ -54.078745196385341, 1.505655346041749 ], [ -54.007191238577661, 1.523431225626041 ], [ -53.922365795888709, 1.460875070896009 ], [ -53.891098704852141, 1.407327705572129 ], [ -53.757219305213823, 1.394056220690743 ], [ -53.739443425629474, 1.434101388234183 ], [ -53.659122377643598, 1.420829903352796 ], [ -53.650124574566064, 1.362778143325841 ], [ -53.556290342470902, 1.367282538028917 ], [ -53.538525449215058, 1.2421812148973 ], [ -53.440197808745438, 1.259957094481592 ], [ -53.408919731380422, 1.184129454870344 ], [ -53.466971491407435, 1.152851377505215 ], [ -53.41791753445807, 0.94315532458404 ], [ -53.266273241563908, 0.782282515712836 ], [ -53.132174115354644, 0.751004438347934 ], [ -53.114398235770352, 0.719957073882256 ], [ -53.141171918432292, 0.536803990723683 ], [ -53.127669720651625, 0.384928984930184 ], [ -53.042844277962672, 0.246556176917181 ], [ -53.007292518793975, 0.134957051566346 ], [ -53.016070595300675, 0.054625017251851 ], [ -52.976025427757463, -0.016698227656377 ], [ -52.913469273027374, -0.190853507737359 ], [ -52.828643830338422, -0.181844718331263 ], [ -52.699268825403124, -0.302452633088365 ], [ -52.627714867595444, -0.396275878854851 ], [ -52.63221926229852, -0.556917974826604 ], [ -52.605445579636523, -0.610465340150597 ], [ -52.525124531650647, -0.646236825890128 ], [ -52.507348652066355, -0.731073254907699 ], [ -52.516115742244551, -0.873939471295046 ], [ -52.400023208519087, -0.869457049249036 ], [ -52.368745131153958, -0.923004414573029 ], [ -52.39124513201233, -0.954271505609483 ], [ -52.359967054647313, -1.070375025663452 ], [ -52.239370126218773, -1.146202665274814 ], [ -52.132275395570957, -1.15070705997789 ], [ -52.051943361256519, -1.177469756311268 ], [ -51.984893798151859, -1.141698270571794 ], [ -51.888148188992545, -1.160375029096713 ], [ -51.921667477380652, -1.180853545502885 ], [ -51.934499509120144, -1.320357945355852 ], [ -51.980839842919124, -1.368038611237182 ], [ -52.020445557320613, -1.39910794835987 ], [ -52.229240731301161, -1.362413611022589 ], [ -52.553469259294388, -1.514068890245312 ], [ -52.664167505704711, -1.551642133866153 ], [ -52.31024293165666, -1.559530317760732 ], [ -52.196622321853681, -1.64008207864606 ], [ -51.947540281101965, -1.586754439893014 ], [ -51.646273179765785, -1.394361854428894 ], [ -51.531290265223333, -1.354107946643353 ], [ -51.297292453562591, -1.223590363539415 ], [ -51.202348602284587, -1.136512723498981 ], [ -51.028874474573229, -1.032120629672988 ], [ -50.99197139699362, -0.986219749015731 ], [ -50.894995074934968, -0.937616231536595 ], [ -50.842348588551602, -0.999491233896947 ], [ -50.838294633318867, -1.038866235398984 ], [ -50.917945515263568, -1.115155300809249 ], [ -50.89724727228645, -1.164417998000999 ], [ -50.844589799574635, -1.226293000361238 ], [ -50.825473587907936, -1.311349155949642 ], [ -50.818716995853265, -1.376146521702708 ], [ -50.786098586405842, -1.489986858076691 ], [ -50.678992869429521, -1.643905320979457 ], [ -50.675400339995576, -1.694750049481513 ], [ -50.690023143287704, -1.761788626257555 ], [ -50.638716988986857, -1.817137749462688 ], [ -50.585620063133149, -1.849986871809563 ], [ -50.403148132344256, -2.015594788283238 ], [ -50.260490656199295, -1.922892148028211 ], [ -50.172742850117572, -1.896129451694776 ], [ -50.116492847971813, -1.857413629905352 ], [ -49.999268722406327, -1.831771539083491 ], [ -49.902973552717242, -1.870707087443691 ], [ -49.719589756659275, -1.926275937219714 ], [ -49.58527090387912, -1.867103571681298 ], [ -49.313699848597707, -1.731642140732561 ], [ -49.398745017857493, -1.971495665507291 ], [ -49.460169580747561, -2.191551826245473 ], [ -49.506971340345444, -2.280189524939203 ], [ -49.553322660472929, -2.5198233231431 ], [ -49.599223541130186, -2.583939536526429 ], [ -49.636566071851519, -2.656844812744964 ], [ -49.575822661331244, -2.631422448493993 ], [ -49.52384634098911, -2.596771568265922 ], [ -49.457466943925681, -2.504530353809628 ], [ -49.407742820935141, -2.344327710979655 ], [ -49.211098526324349, -1.916607968100948 ], [ -49.15484852417859, -1.87857329868126 ], [ -48.991273078485619, -1.829750054631404 ], [ -48.710023067756765, -1.4877456470536 ], [ -48.599994987387618, -1.488646525994284 ], [ -48.529572621419959, -1.567396528998415 ], [ -48.462973497785697, -1.613978562025295 ], [ -48.445867784242466, -1.520375042829585 ], [ -48.349792341124385, -1.482120646839121 ], [ -48.451492784457059, -1.435780313040141 ], [ -48.468148058529948, -1.393922401287114 ], [ -48.477816027648714, -1.323719761890345 ], [ -48.408525253521134, -1.229215363754008 ], [ -48.449691026575863, -1.145521512905134 ], [ -48.306594097288951, -1.039767114339611 ], [ -48.317624371147247, -0.960577658193756 ], [ -48.266548929745738, -0.895099140071011 ], [ -48.201740577664111, -0.827818864066955 ], [ -48.128395848303796, -0.795189468291028 ], [ -48.115124363422524, -0.737599134062862 ], [ -48.068773043294982, -0.713736828465073 ], [ -48.032540131756605, -0.704969738286877 ], [ -47.960997160277429, -0.769547377469053 ], [ -47.883367762784758, -0.693280284716025 ], [ -47.807770836072905, -0.663573252332753 ], [ -47.773790121886066, -0.676844737214026 ], [ -47.731492756991315, -0.71037501193058 ], [ -47.687173907644365, -0.724767102323369 ], [ -47.651171709005439, -0.718702648966996 ], [ -47.557348463238782, -0.669879404917026 ], [ -47.470721262668633, -0.748629407921158 ], [ -47.418744942326441, -0.76594386170666 ], [ -47.432917306148397, -0.721844738930656 ], [ -47.460372141180073, -0.680887706118199 ], [ -47.438992745833275, -0.647599130629658 ], [ -47.398046699349436, -0.626681161081649 ], [ -47.268671694414138, -0.645357919606681 ], [ -47.200490539469513, -0.680448252976419 ], [ -47.126915097209633, -0.745465345300431 ], [ -47.02454448783584, -0.750189466574341 ], [ -46.944443166420854, -0.743443860848345 ], [ -46.893598437918683, -0.779896498957612 ], [ -46.811244919152273, -0.779676772386722 ], [ -46.769848433198092, -0.836607926902275 ], [ -46.644516397167081, -0.916478535417809 ], [ -46.617292275034742, -0.970707053111482 ], [ -46.516272984071861, -0.996788597075124 ], [ -46.421768585935524, -1.030099145220788 ], [ -46.320749294972529, -1.039107934626998 ], [ -46.219048851639855, -1.031219750732305 ], [ -46.214994896407063, -1.099840358818767 ], [ -46.14029884863578, -1.118297390772852 ], [ -46.044673844987983, -1.103004421439437 ], [ -46.007089615038637, -1.146861844987484 ], [ -46.141199727576407, -1.240025911041414 ], [ -46.158964620832137, -1.315853550652776 ], [ -46.123193135092549, -1.34712064168923 ], [ -46.199240501274801, -1.485504436030624 ], [ -46.181244895119619, -1.574823287094205 ], [ -46.199240501274801, -1.677413623038944 ], [ -46.243790063521089, -1.722193898184685 ], [ -46.315344021328883, -1.73098296101989 ], [ -46.301841823548159, -1.802525932499123 ], [ -46.217016380859263, -1.807030327202142 ], [ -46.212522972484635, -1.927396542731231 ], [ -46.279572535589239, -2.141827703254933 ], [ -46.377669463159521, -2.253426828605825 ], [ -46.413440948899051, -2.239913644496539 ], [ -46.408947540524537, -2.387306228244199 ], [ -46.435721223186533, -2.409564529874501 ], [ -46.426943146679776, -2.512396565047197 ], [ -46.484994906706731, -2.547948324215952 ], [ -46.507275180994213, -2.614986900991994 ], [ -46.600867713861305, -2.664051844269977 ], [ -46.667917276965966, -2.739879483881225 ], [ -46.574094031199365, -2.847193941099988 ], [ -46.650141397381617, -2.91401279130514 ], [ -46.636650185929511, -2.985577735441382 ], [ -46.667917276965966, -3.092672466089311 ], [ -46.743744916577327, -3.190780379988041 ], [ -46.824296677462542, -3.329142201672369 ], [ -46.859848436631296, -3.329142201672369 ], [ -46.944673879320192, -3.396202751105534 ], [ -46.966943167279112, -3.525797482611608 ], [ -47.029499322009201, -3.570358031186515 ], [ -47.024994927306068, -3.59712072751995 ], [ -47.065270807748732, -3.842599252509217 ], [ -47.28846905845063, -4.079288714663221 ], [ -47.310749332738055, -4.065797503211058 ], [ -47.333018620696976, -4.164125143680735 ], [ -47.382292304217231, -4.275724269031571 ], [ -47.458119943828592, -4.338280423761717 ], [ -47.489398021193608, -4.423094880122107 ], [ -47.583221266960209, -4.547965490354329 ], [ -47.65454451186838, -4.606017250381342 ], [ -47.801915122958917, -4.597030433632256 ], [ -48.252816019065619, -4.954327810543248 ], [ -48.730490597834375, -5.338168157216899 ], [ -48.721943234227098, -5.355043157860635 ], [ -48.721492794756784, -5.355724310230372 ], [ -48.721492794756784, -5.355944036801247 ], [ -48.597523063465246, -5.398702827494787 ], [ -48.51111558946593, -5.408151070042777 ], [ -48.421566025503012, -5.398483100923954 ], [ -48.356999372649341, -5.424344918316791 ], [ -48.31717393167699, -5.486219920677129 ], [ -48.275316019923991, -5.522452832215549 ], [ -48.231447610047439, -5.533241406845832 ], [ -48.192742774586577, -5.565431349480036 ], [ -48.159223486198584, -5.619198441374863 ], [ -48.181273047586529, -5.672064654329048 ], [ -48.258671732179693, -5.723590535200856 ], [ -48.280040141197958, -5.795814659049739 ], [ -48.24540024729842, -5.888517299304809 ], [ -48.254398050376039, -5.945228727249429 ], [ -48.307044536759349, -5.965926970226505 ], [ -48.321216900581248, -6.006642303810906 ], [ -48.296695415270818, -6.067396700659771 ], [ -48.319415142699995, -6.112396702376316 ], [ -48.389848494996187, -6.141862035531645 ], [ -48.413699814265414, -6.207340553654447 ], [ -48.391199813407098, -6.308832256744807 ], [ -48.410096298502964, -6.357655500794763 ], [ -48.470619982452376, -6.353370832662506 ], [ -48.527320424068449, -6.3722673177584 ], [ -48.579966910451759, -6.414125229511413 ], [ -48.622044548775648, -6.488590564383287 ], [ -48.652872186670379, -6.595707267688226 ], [ -48.805417358505139, -6.71831469424032 ], [ -49.079471324037627, -6.856237062782895 ], [ -49.209747207913466, -7.005651130982585 ], [ -49.195124404621282, -7.168556410634423 ], [ -49.239673966867599, -7.334823506820669 ], [ -49.340473531259647, -7.510099392413281 ], [ -49.333947652104456, -7.649142366467331 ], [ -49.220316055972887, -7.752194128210874 ], [ -49.172393690863544, -7.867396769324316 ], [ -49.189949843877002, -7.994970016378346 ], [ -49.226841935128078, -8.139418264076113 ], [ -49.282641497803553, -8.301422664787339 ], [ -49.378947653821115, -8.498297672297554 ], [ -49.502697658541763, -8.70866389125986 ], [ -49.612945465481772, -8.839181474363713 ], [ -49.707900303088365, -8.894970050710626 ], [ -49.829848549927817, -9.022103844622904 ], [ -49.979240645470441, -9.220099457644579 ], [ -50.08409416509528, -9.421918312999608 ], [ -50.175214774040001, -9.730172719289826 ], [ -50.234848565377348, -9.842672723581373 ], [ -51.297523166462042, -9.789125358257451 ], [ -55.092146113949809, -9.565927107555609 ], [ -56.462624681854408, -9.467599467085961 ], [ -56.489398364516376, -9.467599467085961 ], [ -56.67682512947863, -9.378280616022494 ], [ -56.770648375245202, -9.39627622217769 ], [ -56.837697938349834, -9.271163912717554 ], [ -56.926797062842439, -9.244401216384119 ], [ -57.047393991270965, -9.231129731502847 ], [ -57.074167673932948, -9.18634945635705 ], [ -57.083165477010539, -9.079254725709276 ], [ -57.100941356594888, -9.052470056718775 ], [ -57.297365924634761, -8.958646810952203 ], [ -57.480519007793376, -8.79350032027736 ], [ -57.578615935363601, -8.757948561108677 ], [ -57.641172090093676, -8.615082344721259 ], [ -57.650169893171295, -8.498978824667262 ], [ -57.681447970536325, -8.436422669937187 ], [ -57.641172090093676, -8.231000298819694 ], [ -57.779544898106565, -8.048077928560417 ], [ -57.895648418160548, -7.690780551649439 ], [ -57.94919578348447, -7.619457306741182 ], [ -57.980473860849543, -7.530116483020606 ], [ -58.060794908835419, -7.409530540920628 ], [ -58.136622548446738, -7.338207296012342 ], [ -58.146290517565546, -7.263500261912498 ], [ -58.228424309761195, -7.141552015073032 ], [ -58.385924315769344, -6.949181402265936 ], [ -58.455445802796376, -6.793922607280777 ], [ -58.436769044271415, -6.675797602774665 ], [ -58.374443602440763, -6.57050463000806 ], [ -58.292990962614851, -6.49893968587179 ], [ -56.75714617746452, -3.186495711855869 ], [ -56.391070724046713, -2.391788650290195 ], [ -56.400969406064945, -2.336219800514158 ], [ -56.484893969813299, -2.248922433902749 ], [ -56.498396167593981, -2.159603582839281 ], [ -56.63676897560687, -2.222137764912276 ], [ -56.748368100957777, -2.17737946242363 ], [ -56.743874692583248, -2.052486879534356 ], [ -56.824195740569124, -2.034491273379132 ], [ -57.007348823727739, -1.936405332137454 ], [ -57.087669871713615, -1.81129302267729 ], [ -57.167990919699491, -1.771236868805516 ], [ -57.248322954013915, -1.757745657353368 ], [ -57.275096636675883, -1.713207081435613 ], [ -57.337641805077411, -1.730982961019961 ], [ -57.449240930428331, -1.690926807148188 ], [ -57.565344450482328, -1.623866257715036 ], [ -57.654674287874371, -1.588094771975463 ], [ -57.828598855055944, -1.445228555588045 ], [ -57.900141826535105, -1.422948281300592 ], [ -57.980473860849543, -1.34712064168923 ], [ -58.083075183122816, -1.298077671068427 ], [ -58.159122549305039, -1.235521516338338 ], [ -58.252715082172188, -1.128426785690522 ], [ -58.315271236902262, -1.119417996284355 ], [ -58.39109887651361, -1.048094751376084 ], [ -58.440372560033893, -0.86044825984294 ], [ -58.569747564969148, -0.762340345944182 ], [ -58.627799324996147, -0.766844740647258 ], [ -58.703615978278947, -0.695301769168111 ], [ -58.748396253424673, -0.62397852425984 ], [ -58.739398450347068, -0.432047364594496 ], [ -58.855490984072517, -0.351495603709196 ], [ -58.86449977347867, -0.173077628153081 ], [ -58.850997575697988, -0.083736804432505 ], [ -58.868773455282323, 0.224275902629742 ] ] ], [ [ [ -51.424415261146351, -0.565926764232813 ], [ -51.254094209727157, -0.541405278922355 ], [ -51.160721403430955, -0.6667153422963 ], [ -51.276374484014639, -1.021771508184429 ], [ -51.310124485302083, -1.023792992636515 ], [ -51.465141581059243, -1.211219757598826 ], [ -51.637714829829918, -1.34195706727354 ], [ -51.664949938290761, -1.35476712635591 ], [ -51.832568352888018, -1.433736855930931 ], [ -51.938322751453427, -1.452655313683863 ], [ -51.801971427892624, -1.202452667420573 ], [ -51.68002318105323, -1.086129420795658 ], [ -51.679572741583002, -1.018629418220826 ], [ -51.678221423172033, -0.855042986199237 ], [ -51.546143781414855, -0.649620615081744 ], [ -51.424415261146351, -0.565926764232813 ] ] ], [ [ [ -48.444516465831612, -0.271844721764467 ], [ -48.392770858388872, -0.297267086015552 ], [ -48.379719100078489, -0.352857908448641 ], [ -48.428091904658174, -0.441495607142429 ], [ -48.46387437672621, -0.534879399767249 ], [ -48.497393665114316, -0.664913584415103 ], [ -48.523266468835629, -0.691478526834715 ], [ -48.566695425570458, -0.684491221880705 ], [ -48.539691030009067, -0.80105616773352 ], [ -48.549589712027341, -0.847616228103448 ], [ -48.57096910737414, -0.892857929048034 ], [ -48.624066033227791, -0.986900901385468 ], [ -48.704617794113062, -1.106607937201943 ], [ -48.728469113382289, -1.131788602225015 ], [ -48.7898936762723, -1.173426787407095 ], [ -48.839617799262896, -1.226512726932128 ], [ -48.829048951203447, -1.276478549150681 ], [ -48.804066040094142, -1.326861851853948 ], [ -48.833542359577962, -1.390099158953774 ], [ -48.928947636654925, -1.482340373410011 ], [ -48.985867804841803, -1.504620647697379 ], [ -49.038525277553731, -1.514068890245312 ], [ -49.086898082133416, -1.505082073496283 ], [ -49.172624403762882, -1.412599159812089 ], [ -49.18162220684053, -1.485043010231834 ], [ -49.204792373740077, -1.559068891961942 ], [ -49.234048966653006, -1.599564498975496 ], [ -49.344747213063272, -1.59530180350032 ], [ -49.406622215423624, -1.555465376199436 ], [ -49.506740627445993, -1.511607952651389 ], [ -49.52564809887042, -1.630392136870171 ], [ -49.587973540701, -1.712306202495029 ], [ -49.650518709102585, -1.73816801988778 ], [ -49.748846349572204, -1.755262747102392 ], [ -49.805096351717964, -1.790155326558363 ], [ -49.911290203425153, -1.762931204426195 ], [ -50.010068283365172, -1.708482960161632 ], [ -50.065648119469756, -1.703736866230599 ], [ -50.109296802775475, -1.747857961663669 ], [ -50.338339780262743, -1.755943899472072 ], [ -50.44342401278692, -1.800724174617812 ], [ -50.507540226170363, -1.78789214287832 ], [ -50.602044624306586, -1.697672412874226 ], [ -50.617117867069169, -1.63759916839507 ], [ -50.673367869214928, -1.516090374697455 ], [ -50.723773144575262, -1.371422400428798 ], [ -50.759775343214187, -1.240245637612304 ], [ -50.729398144789741, -1.126844754380102 ], [ -50.668424021370015, -1.130448270142608 ], [ -50.595969184621708, -1.14754299735722 ], [ -50.580445502388898, -1.139457059548818 ], [ -50.576841986626505, -1.103224148010327 ], [ -50.5928161083296, -1.072857935914499 ], [ -50.709589794424801, -1.077801783759355 ], [ -50.783395949583962, -1.01030178118441 ], [ -50.795997268424117, -0.906349140500197 ], [ -50.780924025661591, -0.689896495524408 ], [ -50.771464796785153, -0.645357919606681 ], [ -50.719949902241865, -0.583482917246329 ], [ -50.703074901598086, -0.528573247182862 ], [ -50.71589594700913, -0.470301760585016 ], [ -50.693615672721648, -0.364547362019607 ], [ -50.645473581041415, -0.272745600705093 ], [ -50.461650331841668, -0.157323233020861 ], [ -50.248339776829539, -0.116366200208404 ], [ -49.628699860614006, -0.229107903727936 ], [ -49.535096341418296, -0.233590325773889 ], [ -49.402798973090228, -0.214693840678137 ], [ -49.314370014638882, -0.167892081080254 ], [ -49.215141495228636, -0.158663565103154 ], [ -49.117044567658297, -0.163629385605191 ], [ -48.786520873409302, -0.215594719618707 ], [ -48.588074820917257, -0.231568841321803 ], [ -48.51540025759806, -0.248224115394692 ], [ -48.444516465831612, -0.271844721764467 ] ] ], [ [ [ -50.765169630529329, -0.040780259825112 ], [ -50.66707270295916, -0.058094713610558 ], [ -50.650648141785723, -0.105797352149011 ], [ -50.652900339137261, -0.131681142198886 ], [ -50.926273152299984, -0.327413571540546 ], [ -51.01896480622645, -0.26307763158627 ], [ -51.038092004221767, -0.22594384110721 ], [ -51.022348595418066, -0.188370597486426 ], [ -51.025721398281121, -0.172396475783273 ], [ -50.995124473285784, -0.105357899007231 ], [ -50.84211787565215, -0.050228502372988 ], [ -50.765169630529329, -0.040780259825112 ] ] ], [ [ [ -49.503367824582938, 0.083650897265329 ], [ -49.400546775738803, 0.057327654073731 ], [ -49.372421774665895, 0.001077651927972 ], [ -49.380969138273201, -0.055392076788678 ], [ -49.443964746145014, -0.112323231304231 ], [ -49.708790195700431, -0.143832021568699 ], [ -49.830068276498707, -0.093866199350146 ], [ -49.802624427795536, -0.051788561026285 ], [ -49.712393711462937, 0.015030289178867 ], [ -49.602145904522899, 0.06273292771732 ], [ -49.503367824582938, 0.083650897265329 ] ] ], [ [ [ -49.878891520548677, 0.304607936944308 ], [ -49.738266515184193, 0.26815529883487 ], [ -49.697320468700354, 0.215948265593283 ], [ -49.839066079576355, 0.006922378713398 ], [ -49.917145916539141, -0.023224106811597 ], [ -50.002421798698435, -0.02928856016797 ], [ -50.113120045108758, 0.033025895334163 ], [ -50.285693293879376, 0.028532486959705 ], [ -50.339471372102707, 0.043375016822665 ], [ -50.3450963723173, 0.134506612095947 ], [ -50.272641535568994, 0.231702660725603 ], [ -50.127973561300337, 0.226528099981408 ], [ -49.878891520548677, 0.304607936944308 ] ] ], [ [ [ -50.350941099102783, 0.5818039924402 ], [ -50.342624448394929, 0.381556182067072 ], [ -50.33227532690637, 0.258926782857827 ], [ -50.42609857267297, 0.139230733370027 ], [ -50.443874452257262, -0.007700424578843 ], [ -50.623874459123726, 0.054405290681018 ], [ -50.610372261343059, 0.204698265164097 ], [ -50.526216984695338, 0.247006616387409 ], [ -50.451520936923941, 0.326877224903058 ], [ -50.42609857267297, 0.424974152473396 ], [ -50.424516541362607, 0.558172399741864 ], [ -50.39684197976004, 0.581353552969972 ], [ -50.372770933919924, 0.590801795517962 ], [ -50.350941099102783, 0.5818039924402 ] ] ], [ [ [ -50.098716968387407, 0.625002236275577 ], [ -50.058891527415085, 0.63805399458596 ], [ -50.036841966027168, 0.594855750750639 ], [ -50.039995042319219, 0.522851353472561 ], [ -50.15294548608108, 0.393025909067035 ], [ -50.261391535139808, 0.359275907779647 ], [ -50.281650324975203, 0.390773711715553 ], [ -50.281650324975203, 0.516556187216906 ], [ -50.251273126550757, 0.58540750820282 ], [ -50.112900318537868, 0.604754432768857 ], [ -50.098716968387407, 0.625002236275577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-MS", "NAME_1": "Mato Grosso do Sul" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.96429683539111, -19.511366940069024 ], [ -50.997596397208241, -19.663923098232331 ], [ -50.99377315487493, -20.101552509457804 ], [ -51.063964807943137, -20.223039330498423 ], [ -51.160721403430983, -20.306513454776464 ], [ -51.396971412443207, -20.441755159154269 ], [ -51.534223614944608, -20.55761697998031 ], [ -51.593165267583686, -20.666513468509322 ], [ -51.619049057633561, -20.806918747302916 ], [ -51.691943347523647, -20.943720510334003 ], [ -51.811419670440642, -21.077138484173474 ], [ -51.866318354175519, -21.18267315616805 ], [ -51.856650385056696, -21.260082827089718 ], [ -51.872844233330682, -21.32982404068764 ], [ -51.936290280672836, -21.422746407513614 ], [ -51.954747312626921, -21.469548167111469 ], [ -51.989848632325305, -21.493630199280119 ], [ -52.047669679452866, -21.510944653065621 ], [ -52.072641604233596, -21.554142896900998 ], [ -52.064995119566902, -21.622763504987418 ], [ -52.12259644012363, -21.718168782064367 ], [ -52.245665292474555, -21.840358728131761 ], [ -52.338818372199967, -21.957341154469304 ], [ -52.402495132441516, -22.069181979048096 ], [ -52.566070578134543, -22.207324074161647 ], [ -52.960721472095528, -22.454824083603015 ], [ -53.116199993651563, -22.639987664885183 ], [ -53.272348681248786, -22.752048216034964 ], [ -53.480693415759006, -22.852397340956728 ], [ -53.619967102712508, -23.001130256786681 ], [ -53.677348696698317, -23.173483778986451 ], [ -53.771171942464889, -23.322194722159324 ], [ -53.907523266025649, -23.407031151176824 ], [ -53.995490798678219, -23.570156157399552 ], [ -54.050169755842191, -23.822819741256652 ], [ -54.124646077042598, -23.978517989383576 ], [ -54.242540368649287, -24.046918870899106 ], [ -54.370794768073054, -23.971091231287758 ], [ -54.440316255100086, -23.901789470831602 ], [ -54.529646092492129, -23.852065347841034 ], [ -54.625490822710816, -23.812470619768121 ], [ -54.671842142838358, -23.829125893840967 ], [ -54.72134653925805, -23.852065347841034 ], [ -54.817191269476737, -23.888517985950344 ], [ -54.926549183804653, -23.951293867251295 ], [ -54.982568473051003, -23.974475020479346 ], [ -55.081796992461264, -23.997656173707384 ], [ -55.194296996752797, -24.017453537743847 ], [ -55.286999637007881, -24.004401779433451 ], [ -55.366419806053145, -23.991130294552192 ], [ -55.415924202472837, -23.951293867251295 ], [ -55.442467172235368, -23.865358805379387 ], [ -55.442467172235368, -23.792673255731657 ], [ -55.458891733408791, -23.686699130595315 ], [ -55.518525524746138, -23.627307038485938 ], [ -55.538322888782602, -23.580944732029849 ], [ -55.541695691645629, -23.524694729884089 ], [ -55.534950085919562, -23.461918848583124 ], [ -55.518525524746138, -23.41557851478413 ], [ -55.52842420676437, -23.359328512638371 ], [ -55.554747449956025, -23.319733784565443 ], [ -55.54822157080082, -23.250190324881331 ], [ -55.561493055682092, -23.154345594662644 ], [ -55.601098770083553, -23.094733775982377 ], [ -55.620896134120017, -23.02519031629825 ], [ -55.620896134120017, -22.955888555842108 ], [ -55.650822893074135, -22.886367068815062 ], [ -55.653964983037739, -22.810319702632839 ], [ -55.627641739846084, -22.741017942176683 ], [ -55.617743057827866, -22.671496455149651 ], [ -55.647450090211095, -22.621772332159082 ], [ -55.703700092356854, -22.59206529977584 ], [ -55.746667623292822, -22.512656117059123 ], [ -55.753193502448013, -22.410043808457274 ], [ -55.799544822575541, -22.353793806311515 ], [ -55.849268945566124, -22.307673199083396 ], [ -55.905299221141007, -22.307673199083396 ], [ -55.991464995912352, -22.281130229320866 ], [ -56.067523348423123, -22.284492045855359 ], [ -56.189922034732888, -22.281130229320866 ], [ -56.245941323979224, -22.264694681818895 ], [ -56.275868082933343, -22.228242043709585 ], [ -56.351915449115566, -22.178517920719017 ], [ -56.394893966380067, -22.092582858847109 ], [ -56.4477711656628, -22.076147311345139 ], [ -56.523818531845023, -22.102470554536794 ], [ -56.550372487936102, -22.135539403454516 ], [ -56.580068533990783, -22.181901709910591 ], [ -56.632945733273516, -22.234767922864776 ], [ -56.702467220300548, -22.231625832901173 ], [ -56.775141783619745, -22.261332865284402 ], [ -56.844674256975324, -22.264694681818895 ], [ -56.93714618433097, -22.271220560974086 ], [ -57.02984882458604, -22.244897317782446 ], [ -57.142348828877573, -22.214970558828327 ], [ -57.23819355909626, -22.195173194791863 ], [ -57.330896199351344, -22.214970558828327 ], [ -57.393672080652294, -22.198315284755481 ], [ -57.476465052560599, -22.188647315636672 ], [ -57.568947966244792, -22.181901709910591 ], [ -57.641622529563989, -22.129013524299324 ], [ -57.721042698609253, -22.099328464573176 ], [ -57.764021215873754, -22.109216160262861 ], [ -57.820271218019514, -22.142306981837677 ], [ -57.879894023028328, -22.135539403454516 ], [ -57.955941389210551, -22.109216160262861 ], [ -57.98564842159378, -22.04644027896191 ], [ -57.979122542438589, -22.006625824318107 ], [ -57.962467268365742, -21.967031096245179 ], [ -57.932771222311047, -21.91078109409942 ], [ -57.94941551005536, -21.851147302762072 ], [ -57.942669904329279, -21.798281089807887 ], [ -57.92939841944802, -21.751918783351798 ], [ -57.9161159482382, -21.699052570397612 ], [ -57.926245343155855, -21.649548173977919 ], [ -57.92939841944802, -21.596681961023734 ], [ -57.936144025174087, -21.546957838033165 ], [ -57.946042707192319, -21.494069652421885 ], [ -57.906217266219969, -21.418022286239662 ], [ -57.873148417302247, -21.355026678367821 ], [ -57.893165507909586, -21.302138492756541 ], [ -57.886419902183519, -21.265927553875201 ], [ -57.860096658991864, -21.206293762537854 ], [ -57.827016823745595, -21.133630185547219 ], [ -57.830169900037745, -20.997949028027634 ], [ -57.860096658991864, -20.918517872653823 ], [ -57.892275615297521, -20.897138477307024 ], [ -57.90059226600539, -20.873078417795455 ], [ -57.884848857201703, -20.841789354101863 ], [ -57.901943584416316, -20.809401657553877 ], [ -57.908469463571507, -20.776332808636155 ], [ -57.891374736356894, -20.747526655193525 ], [ -57.915215069297588, -20.690375774107153 ], [ -57.962467268365742, -20.673720500034307 ], [ -57.979122542438589, -20.657306925189417 ], [ -57.995547103612012, -20.594531043888466 ], [ -58.008818588493284, -20.521625767669846 ], [ -58.002292709338079, -20.465375765524072 ], [ -58.02547386256613, -20.41587136910438 ], [ -58.058542711483852, -20.386164336721151 ], [ -58.091391833830698, -20.333298123766966 ], [ -58.124691395647844, -20.293483669123162 ], [ -58.13774315395824, -20.237233666977403 ], [ -58.159792715346228, -20.164548117329659 ], [ -58.093644031182237, -20.15105690587751 ], [ -58.067540514561472, -20.110319599636014 ], [ -58.021200180762477, -20.055190203001743 ], [ -57.960215071014204, -20.040798112608982 ], [ -57.887540507695007, -20.020319596202782 ], [ -57.860766825033053, -19.979604262618366 ], [ -58.029967270940659, -19.832673104669638 ], [ -58.131447987702472, -19.744474859117645 ], [ -58.072044909264548, -19.62522924910003 ], [ -57.971695784342785, -19.424289300028533 ], [ -57.874499735713172, -19.229457749627542 ], [ -57.800473853983064, -19.080944560368465 ], [ -57.78134665598779, -19.053500711665322 ], [ -57.7167690168056, -19.044052469117403 ], [ -57.72870016960448, -18.967323950565444 ], [ -57.730941380627485, -18.917138401776015 ], [ -57.783148413869014, -18.914216038383287 ], [ -57.725096653842016, -18.733095426005335 ], [ -57.639150605641561, -18.475026568504532 ], [ -57.574122526989058, -18.279272166505848 ], [ -57.553193571112558, -18.246423044159002 ], [ -57.506172084943842, -18.237194528181959 ], [ -57.495592250555873, -18.214694527323658 ], [ -57.55207296560107, -18.183207709716271 ], [ -57.586493132929718, -18.122233586296545 ], [ -57.661650606499876, -17.947397153845813 ], [ -57.75322165491491, -17.734767751203393 ], [ -57.752771215444596, -17.734548024632517 ], [ -57.632174287016056, -17.739953298276205 ], [ -57.600896209651026, -17.816000664458443 ], [ -57.493790492674634, -17.869548029782365 ], [ -57.471521204715756, -17.900595394247972 ], [ -57.41932515780276, -17.882138362293887 ], [ -57.369820761383068, -17.875612483138696 ], [ -57.198598831023347, -17.812397148695979 ], [ -57.079792674147498, -17.734328298061641 ], [ -56.980124701595471, -17.594823898208716 ], [ -56.887422061340402, -17.517875653085866 ], [ -56.789995299811366, -17.386017737899635 ], [ -56.745215024665626, -17.316957676671464 ], [ -56.6680470529719, -17.320319493205957 ], [ -56.489398364516376, -17.302543613621609 ], [ -56.435840012863906, -17.320319493205957 ], [ -56.328745282216062, -17.284548007466384 ], [ -56.248424234230185, -17.217729157261189 ], [ -56.101042636811144, -17.186440093567612 ], [ -56.024995270628921, -17.213224762558113 ], [ -55.984950103085694, -17.266772127882035 ], [ -55.833075097292124, -17.311332676456885 ], [ -55.788525535045821, -17.351608556899535 ], [ -55.609865860261749, -17.391862464685104 ], [ -55.534049206978949, -17.503483562693106 ], [ -55.337624638939062, -17.583793624350449 ], [ -55.181245238442415, -17.686405932952297 ], [ -55.07415050779457, -17.681901538249207 ], [ -54.899995227713575, -17.650612474555629 ], [ -54.810896103220969, -17.601569503934783 ], [ -54.779618025855925, -17.557030928017028 ], [ -54.699296977870048, -17.516755047574378 ], [ -54.525141697789053, -17.512250652871302 ], [ -54.422320648944861, -17.579289229647358 ], [ -54.391273284479254, -17.673112475413944 ], [ -54.31971932667156, -17.673112475413944 ], [ -54.234893883982593, -17.637340989674357 ], [ -54.145575032919112, -17.628354172925299 ], [ -54.08324959108846, -17.588298019053525 ], [ -54.03846931594272, -17.512250652871302 ], [ -53.949150464879224, -17.45870328754738 ], [ -53.819775459943969, -17.307048008324685 ], [ -53.743947820332622, -17.253500643000763 ], [ -53.681391665602547, -17.257763338475868 ], [ -53.752714910510804, -17.641845384377447 ], [ -53.859820627487196, -17.690888354998279 ], [ -53.989415358993341, -17.900595394247972 ], [ -53.975924147541193, -17.931862485284469 ], [ -53.868818430564801, -17.945375669393698 ], [ -53.72594122784885, -18.007931824123787 ], [ -53.60534429942031, -17.994418640014544 ], [ -53.493745174069389, -18.012414246169769 ], [ -53.306318409107135, -17.99892303471762 ], [ -53.145665326806835, -18.030190125754118 ], [ -53.065344278820945, -18.021203309005045 ], [ -53.051842081040249, -18.016698914301969 ], [ -53.042844277962644, -18.097250675187283 ], [ -53.056346475743339, -18.293664256898609 ], [ -53.034066201455914, -18.356000685057808 ], [ -52.989296912638721, -18.387267776094305 ], [ -52.908964878324298, -18.347233594879611 ], [ -52.784094268092119, -18.391772170797381 ], [ -52.788598662795195, -18.463095415705638 ], [ -52.84641970992277, -18.534638387184799 ], [ -52.891199985068496, -18.637250695786648 ], [ -52.868919710781071, -18.682030970932374 ], [ -52.761594267233804, -18.708793667265795 ], [ -52.6144433827142, -18.722065152147053 ], [ -52.498339862660202, -18.704289272562704 ], [ -52.341971448492089, -18.815888397913625 ], [ -52.270648203583818, -18.811405975867643 ], [ -52.096492923502822, -18.896220432228048 ], [ -52.060721437763249, -18.945263402848894 ], [ -51.91357055324363, -18.99004367799462 ], [ -51.84201659543595, -19.048095438021619 ], [ -51.641098619021534, -19.128427472336043 ], [ -51.542990705122776, -19.137414289085115 ], [ -51.404617897109887, -19.168483626207816 ], [ -51.310794651343315, -19.253298082568236 ], [ -51.136650357590867, -19.284565173604733 ], [ -51.034049035317565, -19.369401602622233 ], [ -50.96429683539111, -19.511366940069024 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-AP", "NAME_1": "Amapá" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -51.888148188992545, -1.160375029096713 ], [ -51.984893798151859, -1.141698270571794 ], [ -52.051943361256519, -1.177469756311268 ], [ -52.132275395570957, -1.15070705997789 ], [ -52.239370126218773, -1.146202665274814 ], [ -52.359967054647313, -1.070375025663452 ], [ -52.39124513201233, -0.954271505609483 ], [ -52.368745131153958, -0.923004414573029 ], [ -52.400023208519087, -0.869457049249036 ], [ -52.516115742244551, -0.873939471295046 ], [ -52.507348652066355, -0.731073254907699 ], [ -52.525124531650647, -0.646236825890128 ], [ -52.605445579636523, -0.610465340150597 ], [ -52.63221926229852, -0.556917974826604 ], [ -52.627714867595444, -0.396275878854851 ], [ -52.699268825403124, -0.302452633088365 ], [ -52.828643830338422, -0.181844718331263 ], [ -52.913469273027374, -0.190853507737359 ], [ -52.976025427757463, -0.016698227656377 ], [ -53.016070595300675, 0.054625017251851 ], [ -53.007292518793975, 0.134957051566346 ], [ -53.042844277962672, 0.246556176917181 ], [ -53.127669720651625, 0.384928984930184 ], [ -53.141171918432292, 0.536803990723683 ], [ -53.114398235770352, 0.719957073882256 ], [ -53.132174115354644, 0.751004438347934 ], [ -53.266273241563908, 0.782282515712836 ], [ -53.41791753445807, 0.94315532458404 ], [ -53.466971491407435, 1.152851377505215 ], [ -53.408919731380422, 1.184129454870344 ], [ -53.440197808745438, 1.259957094481592 ], [ -53.538525449215058, 1.2421812148973 ], [ -53.556290342470902, 1.367282538028917 ], [ -53.650124574566064, 1.362778143325841 ], [ -53.659122377643598, 1.420829903352796 ], [ -53.739443425629474, 1.434101388234183 ], [ -53.757219305213823, 1.394056220690743 ], [ -53.891098704852141, 1.407327705572129 ], [ -53.922365795888709, 1.460875070896009 ], [ -54.007191238577661, 1.523431225626041 ], [ -54.078745196385341, 1.505655346041749 ], [ -54.083249591088475, 1.541207105210503 ], [ -54.172348715580995, 1.657299638935967 ], [ -54.203615806617563, 1.657299638935967 ], [ -54.364499601817215, 1.760131674108663 ], [ -54.498368015127028, 1.746629476328053 ], [ -54.578700049441466, 1.782400962067584 ], [ -54.73484873703876, 1.773403158989879 ], [ -54.766115828075158, 1.898504482121496 ], [ -54.7616224197007, 1.969827727029838 ], [ -54.792900497065716, 2.010103607472502 ], [ -54.752844343193885, 2.081426852380673 ], [ -54.78839610236264, 2.130480809330038 ], [ -54.717072857454411, 2.264579935539416 ], [ -54.73484873703876, 2.416224228433464 ], [ -54.714820660102873, 2.425002304940222 ], [ -54.702900493632512, 2.397997909378716 ], [ -54.697495219988809, 2.359754499716871 ], [ -54.661943460820055, 2.327575543411285 ], [ -54.61627329306225, 2.326674664470602 ], [ -54.591971534322738, 2.313853619059614 ], [ -54.550575048368614, 2.293155376082495 ], [ -54.515023289199917, 2.245452737543985 ], [ -54.433120209903677, 2.207429054452973 ], [ -54.293165370580425, 2.154332128599378 ], [ -54.227917565357018, 2.153431249658695 ], [ -54.167393881407634, 2.137006688485371 ], [ -54.13004036435774, 2.121032566782276 ], [ -54.089775470243637, 2.150497899937534 ], [ -53.946447828057387, 2.232631692133054 ], [ -53.876695628130904, 2.27830185989086 ], [ -53.829443429062678, 2.312952740118931 ], [ -53.794342109364379, 2.346032575365257 ], [ -53.767799139601777, 2.354799665543339 ], [ -53.750242986588376, 2.335002301507075 ], [ -53.734719304355565, 2.308448345415854 ], [ -53.683643862954057, 2.292924663183044 ], [ -53.563947813466143, 2.261877298717536 ], [ -53.509049129731295, 2.253099222210778 ], [ -53.431870171709022, 2.279422465402376 ], [ -53.365941214115935, 2.324202740548117 ], [ -53.334443410180029, 2.339726422780984 ], [ -53.285400439559169, 2.295176860534639 ], [ -53.252089891413391, 2.232181252662826 ], [ -53.229820603454584, 2.204957130530545 ], [ -53.180096480463988, 2.21125229678637 ], [ -53.082219279464653, 2.20180405423838 ], [ -53.009775429044907, 2.181775977302436 ], [ -52.964775427328277, 2.18357773518369 ], [ -52.903570591009156, 2.211483009685821 ], [ -52.87049075576283, 2.266601419991446 ], [ -52.783424102050844, 2.317226421922612 ], [ -52.700620143814092, 2.363577742050097 ], [ -52.653148218174977, 2.425672470981453 ], [ -52.582945578778208, 2.528954945624434 ], [ -52.559544698979323, 2.573054068400438 ], [ -52.554589864805905, 2.647750116171721 ], [ -52.455822771194505, 2.864202761147453 ], [ -52.418469254144611, 2.903797489220437 ], [ -52.396419692756581, 2.972198370735896 ], [ -52.356594251784259, 3.051629526109878 ], [ -52.356594251784259, 3.117778210273684 ], [ -52.327799084670232, 3.181674697086237 ], [ -52.271318369624964, 3.237023820291483 ], [ -52.229471444200556, 3.271674700519384 ], [ -52.162641607666842, 3.364608053674033 ], [ -52.116070560968353, 3.452355859755698 ], [ -51.9995166014441, 3.64697866991429 ], [ -51.990518798366452, 3.702108066548533 ], [ -51.944398191138305, 3.735176915466184 ], [ -51.928874508905551, 3.77702384089082 ], [ -51.879589839056678, 3.828549721762442 ], [ -51.827393792143766, 3.869506754575013 ], [ -51.805344230755679, 3.930030438524398 ], [ -51.767089834765216, 3.992575606925811 ], [ -51.683395983916284, 4.039608079423203 ], [ -51.652568346021496, 4.061207201340892 ], [ -51.557844221314383, 4.233780450111567 ], [ -51.547044660355539, 4.310948421805278 ], [ -51.461549051625411, 4.313881771526439 ], [ -51.326999485945862, 4.224782647033805 ], [ -51.219893768969428, 4.093605884217311 ], [ -51.076346400212287, 3.671730868124087 ], [ -51.052495080943118, 3.281804095437053 ], [ -50.994223594345158, 3.07750232983102 ], [ -50.827275345789133, 2.651804071404399 ], [ -50.816464798501727, 2.573054068400438 ], [ -50.789691115839787, 2.477879504222983 ], [ -50.737044629456477, 2.376849226931483 ], [ -50.678773142858631, 2.210351417845686 ], [ -50.676520945507036, 2.179523779951012 ], [ -50.714324902027272, 2.134073338763983 ], [ -50.658964792493578, 2.130931248800493 ], [ -50.608790230032696, 2.104157566138497 ], [ -50.575941107685878, 1.998622894143864 ], [ -50.534324895160751, 1.927299649235522 ], [ -50.458947695019731, 1.829653161135639 ], [ -50.304370052404295, 1.797704917729448 ], [ -50.187596366309151, 1.786004477830033 ], [ -50.05461784561146, 1.730655354624787 ], [ -49.957191084082353, 1.6597825491869 ], [ -49.881594157370444, 1.419929024412284 ], [ -49.906346355580297, 1.268954897559297 ], [ -49.898919597484564, 1.162980772422884 ], [ -49.937844159516317, 1.121353573569309 ], [ -50.047191087515671, 1.052051813113167 ], [ -50.071042406784898, 1.015148735533614 ], [ -50.294471370386134, 0.835829881036886 ], [ -50.343294614436104, 0.751004438347934 ], [ -50.462990663924018, 0.63737284221628 ], [ -50.581566107900471, 0.420480744098768 ], [ -50.755040235611716, 0.22247414474856 ], [ -50.816245071930837, 0.17253029518713 ], [ -50.910068317697437, 0.161049581858492 ], [ -50.966999472212933, 0.130232930292266 ], [ -51.101999477362767, -0.03133201727718 ], [ -51.282900363169858, -0.085099109171949 ], [ -51.299544650914186, -0.17892235493855 ], [ -51.404167457639517, -0.392672363092458 ], [ -51.496199931853425, -0.509457035516164 ], [ -51.554921857921613, -0.549051763589034 ], [ -51.702742908482492, -0.762340345944153 ], [ -51.72141966700741, -0.855504411998083 ], [ -51.720518788066784, -1.018387718992813 ], [ -51.819066155107294, -1.117857937631129 ], [ -51.888148188992545, -1.160375029096713 ] ] ], [ [ [ -50.362641539002311, 2.154551855170212 ], [ -50.341943296025136, 2.141730809759224 ], [ -50.291999446463706, 1.979506682477108 ], [ -50.298964778760705, 1.938549649664708 ], [ -50.398874450540688, 1.892879481906903 ], [ -50.456025331627075, 1.910424648591913 ], [ -50.508891544581275, 2.029450532038538 ], [ -50.491115664996926, 2.128679051448842 ], [ -50.418671814577067, 2.161528173795716 ], [ -50.362641539002311, 2.154551855170212 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-MT", "NAME_1": "Mato Grosso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.724792813193218, -13.662948748219577 ], [ -60.659094568499526, -13.601513199001005 ], [ -60.382348952473777, -13.418590828741813 ], [ -60.351070875108732, -13.271220217651319 ], [ -60.275023508926509, -13.137340818012973 ], [ -60.270749827122856, -13.070302241236917 ], [ -60.194691474612085, -12.972194327338144 ], [ -60.083092349261165, -12.927414052192404 ], [ -60.043047181717938, -12.873866686868496 ], [ -60.002771301275288, -12.731000470481078 ], [ -59.908948055508716, -12.619401345130157 ], [ -59.82412261281975, -12.387194305022163 ], [ -59.891172175924368, -12.244547815205635 ], [ -59.886667781221291, -12.128444295151638 ], [ -59.931448056367017, -12.052396928969401 ], [ -59.98499542169094, -11.918517529331055 ], [ -60.060823061302287, -11.905246044449797 ], [ -60.101098941744937, -11.744362249250059 ], [ -60.101098941744937, -11.601496032862656 ], [ -60.025040589234166, -11.534677182657461 ], [ -59.908948055508716, -11.382802176863891 ], [ -60.002771301275288, -11.146332441280791 ], [ -60.069820864379906, -11.115043377587199 ], [ -60.176915595027737, -11.119547772290289 ], [ -60.279516917301038, -11.079271891847625 ], [ -60.382348952473777, -11.10155216613505 ], [ -60.440400712500775, -11.038996011404976 ], [ -60.440400712500775, -11.003444252236292 ], [ -61.471566523321002, -10.998939857533202 ], [ -61.520620480270395, -10.954181555044556 ], [ -61.507348995389123, -10.878353915433223 ], [ -61.520620480270395, -10.789013091712633 ], [ -61.471566523321002, -10.757746000676136 ], [ -61.502844600686046, -10.686422755767879 ], [ -61.471566523321002, -10.436439836075536 ], [ -61.565400755416121, -10.262306528651621 ], [ -61.569674437219774, -10.061366579580124 ], [ -61.534122678051077, -9.994547729374943 ], [ -61.520620480270395, -9.860448603165707 ], [ -61.565400755416121, -9.726569203527362 ], [ -61.520620480270395, -9.704288929239937 ], [ -61.480575312727169, -9.63725035246388 ], [ -61.551898557635425, -9.463095072382885 ], [ -61.547394162932349, -9.409547707058962 ], [ -61.609950317662424, -9.320448582566343 ], [ -61.592174438078075, -9.239896821681043 ], [ -61.529618283348, -9.226625336799771 ], [ -61.556391966009969, -9.128297696330122 ], [ -61.529618283348, -8.998922691394853 ], [ -61.484848994530822, -8.914108235034448 ], [ -61.507348995389123, -8.847047685601282 ], [ -61.609950317662424, -8.766715651286859 ], [ -58.547467290681723, -8.74893977170251 ], [ -58.471650637398923, -8.690888011675511 ], [ -58.426650635682307, -8.523038884178831 ], [ -58.397174316198502, -8.415504700389221 ], [ -58.354415525504876, -8.27600030053631 ], [ -58.328773434682958, -8.050538866154383 ], [ -58.353525632892811, -7.905870891885741 ], [ -58.330344479664774, -7.780099402712935 ], [ -58.259471674226816, -7.67322439863598 ], [ -58.223919915058119, -7.574677031595442 ], [ -58.223700188487229, -7.484677028162224 ], [ -58.201870353670117, -7.414474388765456 ], [ -58.136622548446738, -7.338207296012342 ], [ -58.060794908835419, -7.409530540920628 ], [ -57.980473860849543, -7.530116483020606 ], [ -57.94919578348447, -7.619457306741182 ], [ -57.895648418160548, -7.690780551649439 ], [ -57.779544898106565, -8.048077928560417 ], [ -57.641172090093676, -8.231000298819694 ], [ -57.681447970536325, -8.436422669937187 ], [ -57.650169893171295, -8.498978824667262 ], [ -57.641172090093676, -8.615082344721259 ], [ -57.578615935363601, -8.757948561108677 ], [ -57.480519007793376, -8.79350032027736 ], [ -57.297365924634761, -8.958646810952203 ], [ -57.100941356594888, -9.052470056718775 ], [ -57.083165477010539, -9.079254725709276 ], [ -57.074167673932948, -9.18634945635705 ], [ -57.047393991270965, -9.231129731502847 ], [ -56.926797062842439, -9.244401216384119 ], [ -56.837697938349834, -9.271163912717554 ], [ -56.770648375245202, -9.39627622217769 ], [ -56.67682512947863, -9.378280616022494 ], [ -56.489398364516376, -9.467599467085961 ], [ -56.462624681854408, -9.467599467085961 ], [ -55.092146113949809, -9.565927107555609 ], [ -51.297523166462042, -9.789125358257451 ], [ -50.234848565377348, -9.842672723581373 ], [ -50.337449887650649, -10.034362184018732 ], [ -50.395270934778239, -10.176788947264384 ], [ -50.402697692874028, -10.258241587090311 ], [ -50.454674013216163, -10.388517470966192 ], [ -50.550749456334273, -10.567177145750264 ], [ -50.59912226091393, -10.689806544959453 ], [ -50.610372261343059, -11.000983314642411 ], [ -50.64524286814202, -11.162746016125666 ], [ -50.708018749442999, -11.345668386384844 ], [ -50.716566113050305, -11.482689875986807 ], [ -50.671346384762813, -11.573832457588622 ], [ -50.66572138454822, -11.651901308222961 ], [ -50.717466991990904, -11.749108343181121 ], [ -50.661447702744567, -11.853500437007099 ], [ -50.653570505178465, -11.922340771664409 ], [ -50.67471918762584, -11.990082473467297 ], [ -50.667523142429445, -12.112030720306748 ], [ -50.631740670361324, -12.288646937981625 ], [ -50.629268746438925, -12.437379853811592 ], [ -50.660546823803969, -12.558207495139541 ], [ -50.655372263059689, -12.666862284440654 ], [ -50.613964790777004, -12.763388167029063 ], [ -50.566042425667661, -12.819638169174837 ], [ -50.484820498741158, -12.842599595831999 ], [ -50.566042425667661, -13.014733391460879 ], [ -50.595068305681139, -13.130814938857782 ], [ -50.598441108544193, -13.249401369162754 ], [ -50.666622263488847, -13.409604011992741 ], [ -50.799589797858033, -13.611862320489536 ], [ -50.860574907606292, -13.806056663834966 ], [ -50.851796831099563, -13.995043487450488 ], [ -50.867540239903263, -14.095172885801375 ], [ -50.908497272715636, -14.107323765171145 ], [ -50.941115682163058, -14.200927284366827 ], [ -50.977568320272354, -14.46328080999983 ], [ -51.114370083303442, -14.837892640696381 ], [ -51.18861569160444, -14.976496161608694 ], [ -51.246217012161139, -15.004401436110683 ], [ -51.286273166032885, -15.002819404800334 ], [ -51.471447733643629, -15.044215890754487 ], [ -51.589792464720603, -15.141422925712646 ], [ -51.664719225391337, -15.261349688099983 ], [ -51.695997302756382, -15.403315025546789 ], [ -51.731999501395393, -15.490392665587279 ], [ -51.772714834979809, -15.52280233479236 ], [ -51.788249503541152, -15.556991789221584 ], [ -51.778790274664686, -15.592763274961158 ], [ -51.798598625029683, -15.656220308631859 ], [ -51.847421869079653, -15.747121191005704 ], [ -51.961492918352974, -15.819125588283697 ], [ -52.142393804160051, -15.872672953607619 ], [ -52.256695566332823, -15.93566856147946 ], [ -52.308441173775506, -16.009254990067816 ], [ -52.361768812528553, -16.058297960688648 ], [ -52.416667496263386, -16.082379992857312 ], [ -52.538396016531962, -16.168556753957191 ], [ -52.534122334728309, -16.226608513984189 ], [ -52.667990748038108, -16.289142696057183 ], [ -52.681273219247927, -16.36046594096544 ], [ -52.6144433827142, -16.427526490398606 ], [ -52.679921900837002, -16.576017707000588 ], [ -52.789049102265494, -16.704953258794092 ], [ -52.942714879611756, -16.813630020752285 ], [ -53.024167519437682, -16.910375629911584 ], [ -53.033165322515288, -16.995190086272004 ], [ -53.077945597661028, -17.094638332253155 ], [ -53.158266645646904, -17.208720367855037 ], [ -53.202596481322331, -17.304125644931958 ], [ -53.21137455782906, -17.409198891127687 ], [ -53.115068401811527, -17.854914240161619 ], [ -53.051842081040249, -18.016698914301969 ], [ -53.065344278820945, -18.021203309005045 ], [ -53.145665326806835, -18.030190125754118 ], [ -53.306318409107135, -17.99892303471762 ], [ -53.493745174069389, -18.012414246169769 ], [ -53.60534429942031, -17.994418640014544 ], [ -53.72594122784885, -18.007931824123787 ], [ -53.868818430564801, -17.945375669393698 ], [ -53.975924147541193, -17.931862485284469 ], [ -53.989415358993341, -17.900595394247972 ], [ -53.859820627487196, -17.690888354998279 ], [ -53.752714910510804, -17.641845384377447 ], [ -53.681391665602547, -17.257763338475868 ], [ -53.743947820332622, -17.253500643000763 ], [ -53.819775459943969, -17.307048008324685 ], [ -53.949150464879224, -17.45870328754738 ], [ -54.03846931594272, -17.512250652871302 ], [ -54.08324959108846, -17.588298019053525 ], [ -54.145575032919112, -17.628354172925299 ], [ -54.234893883982593, -17.637340989674357 ], [ -54.31971932667156, -17.673112475413944 ], [ -54.391273284479254, -17.673112475413944 ], [ -54.422320648944861, -17.579289229647358 ], [ -54.525141697789053, -17.512250652871302 ], [ -54.699296977870048, -17.516755047574378 ], [ -54.779618025855925, -17.557030928017028 ], [ -54.810896103220969, -17.601569503934783 ], [ -54.899995227713575, -17.650612474555629 ], [ -55.07415050779457, -17.681901538249207 ], [ -55.181245238442415, -17.686405932952297 ], [ -55.337624638939062, -17.583793624350449 ], [ -55.534049206978949, -17.503483562693106 ], [ -55.609865860261749, -17.391862464685104 ], [ -55.788525535045821, -17.351608556899535 ], [ -55.833075097292124, -17.311332676456885 ], [ -55.984950103085694, -17.266772127882035 ], [ -56.024995270628921, -17.213224762558113 ], [ -56.101042636811144, -17.186440093567612 ], [ -56.248424234230185, -17.217729157261189 ], [ -56.328745282216062, -17.284548007466384 ], [ -56.435840012863906, -17.320319493205957 ], [ -56.489398364516376, -17.302543613621609 ], [ -56.6680470529719, -17.320319493205957 ], [ -56.745215024665626, -17.316957676671464 ], [ -56.789995299811366, -17.386017737899635 ], [ -56.887422061340402, -17.517875653085866 ], [ -56.980124701595471, -17.594823898208716 ], [ -57.079792674147498, -17.734328298061641 ], [ -57.198598831023347, -17.812397148695979 ], [ -57.369820761383068, -17.875612483138696 ], [ -57.41932515780276, -17.882138362293887 ], [ -57.471521204715756, -17.900595394247972 ], [ -57.493790492674634, -17.869548029782365 ], [ -57.600896209651026, -17.816000664458443 ], [ -57.632174287016056, -17.739953298276205 ], [ -57.752771215444596, -17.734548024632517 ], [ -57.75322165491491, -17.734767751203393 ], [ -57.78021506414774, -17.671772143331552 ], [ -57.788773414083593, -17.573005049720138 ], [ -57.832422097389284, -17.512030926300412 ], [ -57.90509666070848, -17.532267743478641 ], [ -57.990822982338045, -17.512931805241024 ], [ -58.205473869432581, -17.363078283899569 ], [ -58.347669919778809, -17.282065097215408 ], [ -58.396042724358452, -17.234362458676955 ], [ -58.417422119705265, -17.08046596843127 ], [ -58.459719484600029, -16.91081508305335 ], [ -58.478165530225567, -16.700668590661891 ], [ -58.470519045558873, -16.650263315301586 ], [ -58.350372556600647, -16.490741824841322 ], [ -58.35082299607096, -16.410190063956023 ], [ -58.340473874582429, -16.339987424559254 ], [ -58.345648435326694, -16.284418574783217 ], [ -58.375344481381376, -16.283517695842605 ], [ -58.423717285961033, -16.307819454582145 ], [ -58.496622562179653, -16.326715939677982 ], [ -58.538019048133805, -16.328297970988331 ], [ -58.957191427405206, -16.313224728225833 ], [ -59.43419584013273, -16.295888301783251 ], [ -59.831098931445254, -16.281715937961366 ], [ -60.175575262945358, -16.26934533202072 ], [ -60.187275702844815, -16.132104115847881 ], [ -60.206622627410979, -15.901918560192001 ], [ -60.220344551762551, -15.738573827398397 ], [ -60.242394113150553, -15.479604090956983 ], [ -60.380547194592538, -15.318280842615493 ], [ -60.530400715934007, -15.143224683593871 ], [ -60.583266928888193, -15.098224681877269 ], [ -60.401915603610803, -15.092819408233566 ], [ -60.27344147761616, -15.088776439329337 ], [ -60.298874828195736, -14.618517632327894 ], [ -60.33801911679835, -14.57059526721855 ], [ -60.372669997026435, -14.41872026142498 ], [ -60.396290603396238, -14.332763226895977 ], [ -60.460198076537239, -14.263022013298055 ], [ -60.47459016693, -14.184733436092841 ], [ -60.462900713359076, -14.132526402851298 ], [ -60.428019120231582, -14.099897007075342 ], [ -60.405068679902968, -14.019125519619152 ], [ -60.422394120017003, -13.937892606364102 ], [ -60.460198076537239, -13.862306665980739 ], [ -60.506549396664767, -13.789840842903885 ], [ -60.595198081687073, -13.745302266986116 ], [ -60.722320889270804, -13.664289080301955 ], [ -60.724792813193218, -13.662948748219577 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-PR", "NAME_1": "Paraná" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.242540368649287, -24.046918870899106 ], [ -54.124646077042598, -23.978517989383576 ], [ -54.050169755842191, -23.822819741256652 ], [ -53.995490798678219, -23.570156157399552 ], [ -53.907523266025649, -23.407031151176824 ], [ -53.771171942464889, -23.322194722159324 ], [ -53.677348696698317, -23.173483778986451 ], [ -53.619967102712508, -23.001130256786681 ], [ -53.480693415759006, -22.852397340956728 ], [ -53.272348681248786, -22.752048216034964 ], [ -53.116199993651563, -22.639987664885183 ], [ -53.044415322944445, -22.636406121779814 ], [ -52.949240758766962, -22.570466177858123 ], [ -52.694775417028623, -22.601513542323772 ], [ -52.6144433827142, -22.570466177858151 ], [ -52.520620136947628, -22.615026726433001 ], [ -52.44479249733628, -22.601513542323772 ], [ -52.315197765830135, -22.619531121136077 ], [ -52.261650400506213, -22.601513542323772 ], [ -52.217089851931362, -22.641789422766422 ], [ -52.16354248660744, -22.601513542323772 ], [ -52.141273198648562, -22.543483754953854 ], [ -52.065214846137792, -22.521203480666429 ], [ -51.984893798151916, -22.54796617699985 ], [ -51.873294672800995, -22.610522331729925 ], [ -51.743919667865725, -22.619531121136077 ], [ -51.69464598434547, -22.664069697053776 ], [ -51.641098619021534, -22.650798212172575 ], [ -51.547495099825852, -22.686349971341272 ], [ -51.35534421358966, -22.65079821217256 ], [ -51.181419646408045, -22.739897336665194 ], [ -51.002770957952521, -22.793664428559993 ], [ -50.882174029523981, -22.820449097550494 ], [ -50.784066115625222, -22.945319707782687 ], [ -50.726025341926771, -22.949824102485763 ], [ -50.627697701457123, -22.923039433495262 ], [ -50.431273133417221, -22.945319707782687 ], [ -50.368947691586584, -22.91405261674619 ], [ -50.292900325404389, -22.95432849718884 ], [ -50.123249440026427, -22.940815313079611 ], [ -49.971594160803761, -22.914052616746176 ], [ -49.958091963023065, -22.963315313937912 ], [ -49.913542400776748, -22.985595588225337 ], [ -49.909048992402205, -23.034638558846183 ], [ -49.730400303946681, -23.105983776411534 ], [ -49.636796784750999, -23.257858782205105 ], [ -49.614296783892684, -23.409733787998675 ], [ -49.654572664335348, -23.507819729240353 ], [ -49.605518707385954, -23.641699128878713 ], [ -49.551971342062075, -23.713242100357832 ], [ -49.569747221646367, -23.833850015114933 ], [ -49.601025299011411, -23.86489737958054 ], [ -49.409094139346081, -24.083832934807262 ], [ -49.333046773163858, -24.14186272217718 ], [ -49.337540181538373, -24.213207939742531 ], [ -49.274995013136845, -24.315798275687285 ], [ -49.22594105618748, -24.338298276545572 ], [ -49.239443253968147, -24.418630310860024 ], [ -49.310766498876433, -24.530229436210945 ], [ -49.29749501399516, -24.664108835849291 ], [ -49.216943253109861, -24.690871532182697 ], [ -49.092072642877667, -24.686367137479621 ], [ -49.025023079773064, -24.668591257895272 ], [ -48.828598511733162, -24.66410883584922 ], [ -48.779544554783797, -24.695375926885774 ], [ -48.61439806410894, -24.681862742776545 ], [ -48.489296740977352, -24.74441889750662 ], [ -48.54284410630126, -24.811479446939771 ], [ -48.565344107159603, -25.056957971928966 ], [ -48.511796741835639, -25.083720668262458 ], [ -48.41346910136599, -24.958850058030265 ], [ -48.26609849027551, -25.034677697641598 ], [ -48.230546731106813, -25.012397423354116 ], [ -48.185766455961073, -25.190815398910289 ], [ -48.091943210194501, -25.235595674056029 ], [ -48.087669528390848, -25.280156222630879 ], [ -48.077540133473207, -25.290263644891439 ], [ -48.202641456604795, -25.416496559863091 ], [ -48.242466897577145, -25.403225074981833 ], [ -48.185997168860496, -25.309841282357027 ], [ -48.2735252483713, -25.306237766594563 ], [ -48.402449813836256, -25.272048312165339 ], [ -48.458469103082621, -25.31074216129764 ], [ -48.427641465187889, -25.403225074981833 ], [ -48.476025256096079, -25.443039529625636 ], [ -48.564223501648058, -25.447543924328713 ], [ -48.64409411016365, -25.436513650470445 ], [ -48.731841916245315, -25.368793921324638 ], [ -48.692247188172416, -25.491423320533826 ], [ -48.507072620561672, -25.521350079487945 ], [ -48.429893662539428, -25.550156232930561 ], [ -48.401098495425344, -25.597397445670168 ], [ -48.545096303652798, -25.815871575098043 ], [ -48.665693232081338, -25.844458001969784 ], [ -48.678964716962611, -25.87526366720742 ], [ -48.612816032798605, -25.875043940636544 ], [ -48.576374381017843, -25.935358884343628 ], [ -48.585372184095462, -25.986203612845699 ], [ -48.650169549848528, -25.97225097559469 ], [ -48.917917362796658, -25.97651367106981 ], [ -48.944691045458626, -26.007802734763388 ], [ -49.109848522462016, -25.994531249882129 ], [ -49.212669571306208, -26.030302735621696 ], [ -49.29749501399516, -26.106130375233022 ], [ -49.45364370159237, -26.16866455730603 ], [ -49.489415187331957, -26.22223389528704 ], [ -49.596520904308335, -26.22223389528704 ], [ -49.721622227439951, -26.159677740556958 ], [ -49.752669591905601, -26.123906254817314 ], [ -49.882275309740265, -26.039069825799885 ], [ -49.949094159945446, -26.012307129466471 ], [ -50.190299003131059, -26.052583009909121 ], [ -50.315169613363224, -26.052583009909121 ], [ -50.369167418157474, -26.085871585397726 ], [ -50.45804681607919, -26.02579834091862 ], [ -50.542872258768142, -26.02579834091862 ], [ -50.645693307612333, -26.07035888949347 ], [ -50.735023145004391, -26.231000985465229 ], [ -50.77057490417306, -26.22223389528704 ], [ -50.900169635679219, -26.280263682656951 ], [ -50.944719197925508, -26.244492196917378 ], [ -51.074094202860806, -26.23550538016832 ], [ -51.248249482941787, -26.347104505519212 ], [ -51.288525363384451, -26.423151871701464 ], [ -51.279516573978299, -26.498979511312712 ], [ -51.239471406435086, -26.606074241960584 ], [ -51.284020968681347, -26.650854517106367 ], [ -51.422393776694236, -26.699897487727206 ], [ -51.502714824680112, -26.601569847257558 ], [ -51.873294672800995, -26.601569847257558 ], [ -52.007174072439341, -26.583793967673216 ], [ -52.199094245776138, -26.44991456803487 ], [ -52.458074968546086, -26.431918961879639 ], [ -52.542900411235053, -26.400651870843141 ], [ -52.641217065376168, -26.400651870843092 ], [ -52.672495142741198, -26.378371596555716 ], [ -52.815372345457149, -26.33831544268395 ], [ -52.913469273027374, -26.365100111674394 ], [ -52.99379032101325, -26.351608900222303 ], [ -53.123396038847943, -26.369604506377534 ], [ -53.279544726445167, -26.262268076501719 ], [ -53.355372366056514, -26.239987802214294 ], [ -53.458193414900734, -26.289052745492199 ], [ -53.516245174927704, -26.289052745492228 ], [ -53.663396059447336, -26.257763681798622 ], [ -53.669921938602499, -26.258005381026635 ], [ -53.671273257013425, -26.225156258679768 ], [ -53.746870183725349, -26.083630374374735 ], [ -53.823148262806995, -25.959638670426074 ], [ -53.864094309290849, -25.748832998321973 ], [ -53.891098704852226, -25.668940417149315 ], [ -53.954775465093803, -25.647582994459597 ], [ -54.012365799321955, -25.577819808204595 ], [ -54.085040362641138, -25.57197508141914 ], [ -54.11924080339891, -25.545190412428624 ], [ -54.154572835996717, -25.52315183736917 ], [ -54.206098716868524, -25.529677716524361 ], [ -54.250197839644528, -25.570393050108777 ], [ -54.33187020604133, -25.57197508141914 ], [ -54.383396086913137, -25.588630355491986 ], [ -54.44391977086255, -25.625082993601296 ], [ -54.501521091419249, -25.60820799295756 ], [ -54.537743016629122, -25.576479476122216 ], [ -54.615822853592007, -25.576018050323356 ], [ -54.610648292847742, -25.432690408137091 ], [ -54.473165377446932, -25.220302704722641 ], [ -54.43627328619587, -25.121293911883257 ], [ -54.454049165780205, -25.065263636308373 ], [ -54.413092132967819, -24.867487749857574 ], [ -54.312973720945479, -24.52820795175883 ], [ -54.281025477539259, -24.306130306568491 ], [ -54.317247402749132, -24.201276786943637 ], [ -54.318368008260634, -24.128151784154142 ], [ -54.266842127388827, -24.065815355994943 ], [ -54.241870202608098, -24.047380296697952 ], [ -54.242540368649287, -24.046918870899106 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-DF", "NAME_1": "Distrito Federal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.301971256231354, -16.039181749021921 ], [ -47.855473474611387, -16.043664171067917 ], [ -48.181273047586529, -16.039181749021921 ], [ -48.252816019065676, -16.030172959615768 ], [ -48.234820412910466, -15.958849714707497 ], [ -48.279589701727645, -15.838241799950424 ], [ -48.203773048444845, -15.73543173743478 ], [ -48.239324807613542, -15.69087118885993 ], [ -48.181273047586529, -15.489953212445528 ], [ -47.766143637219358, -15.489953212445528 ], [ -47.422348458089004, -15.498940029194586 ], [ -47.413570381582247, -15.534733487591254 ], [ -47.306244938035007, -15.588280852915176 ], [ -47.306244938035007, -15.708647068444279 ], [ -47.351025213180719, -15.833737405247348 ], [ -47.359792303358915, -15.985612411040918 ], [ -47.301971256231354, -16.039181749021921 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-GO", "NAME_1": "Goiás" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.96429683539111, -19.511366940069024 ], [ -51.034049035317565, -19.369401602622233 ], [ -51.136650357590867, -19.284565173604733 ], [ -51.310794651343315, -19.253298082568236 ], [ -51.404617897109887, -19.168483626207816 ], [ -51.542990705122776, -19.137414289085115 ], [ -51.641098619021534, -19.128427472336043 ], [ -51.84201659543595, -19.048095438021619 ], [ -51.91357055324363, -18.99004367799462 ], [ -52.060721437763249, -18.945263402848894 ], [ -52.096492923502822, -18.896220432228048 ], [ -52.270648203583818, -18.811405975867643 ], [ -52.341971448492089, -18.815888397913625 ], [ -52.498339862660202, -18.704289272562704 ], [ -52.6144433827142, -18.722065152147053 ], [ -52.761594267233804, -18.708793667265795 ], [ -52.868919710781071, -18.682030970932374 ], [ -52.891199985068496, -18.637250695786648 ], [ -52.84641970992277, -18.534638387184799 ], [ -52.788598662795195, -18.463095415705638 ], [ -52.784094268092119, -18.391772170797381 ], [ -52.908964878324298, -18.347233594879611 ], [ -52.989296912638721, -18.387267776094305 ], [ -53.034066201455914, -18.356000685057808 ], [ -53.056346475743339, -18.293664256898609 ], [ -53.042844277962644, -18.097250675187283 ], [ -53.051842081040249, -18.016698914301969 ], [ -53.115068401811527, -17.854914240161619 ], [ -53.21137455782906, -17.409198891127687 ], [ -53.202596481322331, -17.304125644931958 ], [ -53.158266645646904, -17.208720367855037 ], [ -53.077945597661028, -17.094638332253155 ], [ -53.033165322515288, -16.995190086272004 ], [ -53.024167519437682, -16.910375629911584 ], [ -52.942714879611756, -16.813630020752285 ], [ -52.789049102265494, -16.704953258794092 ], [ -52.679921900837002, -16.576017707000588 ], [ -52.6144433827142, -16.427526490398606 ], [ -52.681273219247927, -16.36046594096544 ], [ -52.667990748038108, -16.289142696057183 ], [ -52.534122334728309, -16.226608513984189 ], [ -52.538396016531962, -16.168556753957191 ], [ -52.416667496263386, -16.082379992857312 ], [ -52.361768812528553, -16.058297960688648 ], [ -52.308441173775506, -16.009254990067816 ], [ -52.256695566332823, -15.93566856147946 ], [ -52.142393804160051, -15.872672953607619 ], [ -51.961492918352974, -15.819125588283697 ], [ -51.847421869079653, -15.747121191005704 ], [ -51.798598625029683, -15.656220308631859 ], [ -51.778790274664686, -15.592763274961158 ], [ -51.788249503541152, -15.556991789221584 ], [ -51.772714834979809, -15.52280233479236 ], [ -51.731999501395393, -15.490392665587279 ], [ -51.695997302756382, -15.403315025546789 ], [ -51.664719225391337, -15.261349688099983 ], [ -51.589792464720603, -15.141422925712646 ], [ -51.471447733643629, -15.044215890754487 ], [ -51.286273166032885, -15.002819404800334 ], [ -51.246217012161139, -15.004401436110683 ], [ -51.18861569160444, -14.976496161608694 ], [ -51.114370083303442, -14.837892640696381 ], [ -50.977568320272354, -14.46328080999983 ], [ -50.941115682163058, -14.200927284366827 ], [ -50.908497272715636, -14.107323765171145 ], [ -50.867540239903263, -14.095172885801375 ], [ -50.851796831099563, -13.995043487450488 ], [ -50.860574907606292, -13.806056663834966 ], [ -50.799589797858033, -13.611862320489536 ], [ -50.666622263488847, -13.409604011992741 ], [ -50.598441108544193, -13.249401369162754 ], [ -50.595068305681139, -13.130814938857782 ], [ -50.566042425667661, -13.014733391460879 ], [ -50.484820498741158, -12.842599595831999 ], [ -50.392348571385497, -12.617138161450072 ], [ -50.295591975897651, -12.490026340194888 ], [ -50.163745047039981, -12.38765573082101 ], [ -50.13674065147859, -12.476513156085659 ], [ -50.203570488012303, -12.570358374509311 ], [ -50.19929680620865, -12.655172830869731 ], [ -50.275124445820012, -12.789052230508076 ], [ -50.270620051116936, -12.891862293023721 ], [ -50.239341973751891, -12.931918446895494 ], [ -50.051915208789637, -13.021237297958976 ], [ -49.971594160803761, -13.025741692662066 ], [ -49.913542400776748, -13.070302241236917 ], [ -49.685839755371831, -13.177396971884747 ], [ -49.520693264697002, -13.199896972743062 ], [ -49.382320456684113, -13.248939943363894 ], [ -49.359820455825798, -13.132858395966991 ], [ -49.29749501399516, -13.003483391031722 ], [ -49.136622205123956, -12.735504865184154 ], [ -49.016245003266306, -12.655172830869731 ], [ -48.998249397111096, -12.748996076636303 ], [ -48.926915165874277, -12.784547835805 ], [ -48.824094117030086, -12.873866686868496 ], [ -48.797320434368146, -12.927414052192404 ], [ -48.801824829071222, -12.998978996328646 ], [ -48.766273069902525, -13.097064937570323 ], [ -48.761768675199448, -13.208664062921244 ], [ -48.775040160080721, -13.351552251965742 ], [ -48.739268674341133, -13.38281934300224 ], [ -48.685721309017225, -13.338280767084484 ], [ -48.654443231652181, -13.177396971884747 ], [ -48.587624381447, -13.155116697597322 ], [ -48.480518664470594, -13.195392578039986 ], [ -48.368919539119673, -13.186405761290914 ], [ -48.226042336403736, -13.092582515524342 ], [ -48.163716894573071, -13.102470211214026 ], [ -48.174966895002228, -13.180780761076335 ], [ -48.074167330610152, -13.195392578039986 ], [ -48.002844085701895, -13.248939943363894 ], [ -47.935794522597291, -13.244457521317912 ], [ -47.855473474611387, -13.293500491938744 ], [ -47.681318194530405, -13.356056646668833 ], [ -47.659048906571513, -13.320263188272165 ], [ -47.721594074973069, -13.150612302894245 ], [ -47.641042314087741, -13.115082516382643 ], [ -47.556447584298212, -13.244457521317912 ], [ -47.440344064244215, -13.248939943363894 ], [ -47.292973453153735, -13.199896972743062 ], [ -47.092044490410757, -13.097064937570323 ], [ -46.971447561982245, -13.070302241236917 ], [ -46.82857035926628, -13.070302241236917 ], [ -46.752742719654947, -13.034750482068219 ], [ -46.645647989007102, -12.922931630146422 ], [ -46.592089637354633, -12.891862293023721 ], [ -46.435721223186533, -12.847103990535075 ], [ -46.301841823548187, -12.833832505653803 ], [ -46.234792260443555, -12.798039047257149 ], [ -46.087641375923965, -12.914142567311146 ], [ -46.074150164471803, -12.976698722041192 ], [ -46.150197530654054, -13.025741692662052 ], [ -46.181244895119647, -13.159621092300398 ], [ -46.176971213315994, -13.217672852327382 ], [ -46.083147967549422, -13.253444338066984 ], [ -46.096419452430723, -13.351552251965757 ], [ -46.185749289822724, -13.405099617289665 ], [ -46.270574732511704, -13.655082536981979 ], [ -46.261796656004947, -13.869491724848501 ], [ -46.221520775562311, -13.998866729783842 ], [ -46.172466818612918, -14.074914095966065 ], [ -46.127697529795739, -14.18203079927099 ], [ -46.038367692403682, -14.253354044179261 ], [ -46.011594009741771, -14.298112346667835 ], [ -45.922494885249108, -14.351681684648909 ], [ -45.962540052792349, -14.467763232045797 ], [ -45.962540052792349, -14.534604054908087 ], [ -45.913497082171517, -14.690983455404748 ], [ -45.931272961755838, -14.749013242774652 ], [ -46.025096207522409, -14.869401430960849 ], [ -46.078643572846346, -14.922948796284771 ], [ -46.190242698197267, -14.93644000773692 ], [ -46.297348415173644, -14.909677311403499 ], [ -46.315344021328883, -14.847121156673424 ], [ -46.38666726623714, -14.771293517062077 ], [ -46.51604227117241, -14.713241757035078 ], [ -46.583091834277013, -14.793573791349502 ], [ -46.556318151615045, -14.869401430960849 ], [ -46.57859842590247, -14.914181706106575 ], [ -46.547320348537454, -15.039052316338768 ], [ -46.636650185929483, -15.070319407375266 ], [ -46.734966840070598, -15.016772042051343 ], [ -46.833074753969356, -15.012267647348267 ], [ -46.891115527667807, -15.04803913308784 ], [ -46.931391408110471, -15.226698807871912 ], [ -46.891115527667807, -15.239970292753185 ], [ -46.855344041928248, -15.324806721770685 ], [ -46.935895802813548, -15.431901452418515 ], [ -46.931391408110471, -15.543500577769436 ], [ -46.868846239708944, -15.592763274961158 ], [ -46.833074753969356, -15.8427461946535 ], [ -46.864341845005839, -15.882802348525274 ], [ -47.07854229263009, -15.936349713849197 ], [ -47.127815976150345, -15.923078228967924 ], [ -47.230417298423646, -16.034677354318845 ], [ -47.301971256231354, -16.039181749021921 ], [ -47.359792303358915, -15.985612411040918 ], [ -47.351025213180719, -15.833737405247348 ], [ -47.306244938035007, -15.708647068444279 ], [ -47.306244938035007, -15.588280852915176 ], [ -47.413570381582247, -15.534733487591254 ], [ -47.422348458089004, -15.498940029194586 ], [ -47.766143637219358, -15.489953212445528 ], [ -48.181273047586529, -15.489953212445528 ], [ -48.239324807613542, -15.69087118885993 ], [ -48.203773048444845, -15.73543173743478 ], [ -48.279589701727645, -15.838241799950424 ], [ -48.234820412910466, -15.958849714707497 ], [ -48.252816019065676, -16.030172959615768 ], [ -48.181273047586529, -16.039181749021921 ], [ -47.855473474611387, -16.043664171067917 ], [ -47.301971256231354, -16.039181749021921 ], [ -47.337523015400023, -16.146276479669766 ], [ -47.324240544190218, -16.226608513984189 ], [ -47.351025213180719, -16.302414180938442 ], [ -47.431346261166595, -16.409750610814257 ], [ -47.453615549125487, -16.494345340603786 ], [ -47.404572578504656, -16.570392706786023 ], [ -47.266199770491767, -16.6597335305066 ], [ -47.159094053515389, -16.918483540377125 ], [ -47.15009625043777, -16.976513327747043 ], [ -47.230417298423646, -17.025797997595845 ], [ -47.212641418839297, -17.074840968216691 ], [ -47.310749332738084, -17.141901517649842 ], [ -47.422348458089004, -17.271276522585111 ], [ -47.453615549125487, -17.347104162196459 ], [ -47.498395824271228, -17.32932828261211 ], [ -47.529443188736821, -17.454198892844303 ], [ -47.458119943828564, -17.52574186432345 ], [ -47.40906598687917, -17.498979167990029 ], [ -47.288469058450659, -17.548022138610875 ], [ -47.27069317886631, -17.668630053367949 ], [ -47.328744938893294, -17.744457692979296 ], [ -47.355518621555262, -17.824767754636625 ], [ -47.346520818477643, -17.878315119960547 ], [ -47.279471255373039, -18.061479189447695 ], [ -47.318846256875077, -18.083298037936274 ], [ -47.446419503929093, -18.170595404547655 ], [ -47.786171714155245, -18.379401564856721 ], [ -47.928818203971787, -18.445319536121303 ], [ -48.017917328464392, -18.434530961490992 ], [ -48.226943215344335, -18.340246289925574 ], [ -48.953699834864778, -18.325854199532813 ], [ -49.108266491151653, -18.388388381605793 ], [ -49.179370009489048, -18.404823929107764 ], [ -49.247540178105169, -18.468500689349341 ], [ -49.336650288926307, -18.584823935974214 ], [ -49.41674062401276, -18.602819542129453 ], [ -49.488294581820469, -18.522048054673263 ], [ -49.553322660472958, -18.510116901874369 ], [ -49.611824859970255, -18.566828329818989 ], [ -49.677973544134261, -18.600116905307601 ], [ -49.788671790544555, -18.614530968357457 ], [ -49.960124433803713, -18.616332726238682 ], [ -50.093773120542636, -18.641293664690863 ], [ -50.246999444747132, -18.690116908740833 ], [ -50.368266539216847, -18.768647185174018 ], [ -50.457596376608876, -18.876642794762475 ], [ -50.498992862563028, -18.953151586743559 ], [ -50.489775332914547, -19.0204318627476 ], [ -50.531622258339013, -19.087030986381905 ], [ -50.577523138996241, -19.112233624062057 ], [ -50.641870065278994, -19.118517803989278 ], [ -50.713193310187251, -19.160595442313166 ], [ -50.791943313191325, -19.238444566376614 ], [ -50.84391963353346, -19.310888416796388 ], [ -50.868891558314175, -19.377487540430693 ], [ -50.870924029094823, -19.423849846886768 ], [ -50.864167437040209, -19.437802484137762 ], [ -50.880822711113069, -19.459181879484575 ], [ -50.923790242049023, -19.464125727329417 ], [ -50.96429683539111, -19.511366940069024 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-TO", "NAME_1": "Tocantins" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.234848565377348, -9.842672723581373 ], [ -50.175214774040001, -9.730172719289826 ], [ -50.08409416509528, -9.421918312999608 ], [ -49.979240645470441, -9.220099457644579 ], [ -49.829848549927817, -9.022103844622904 ], [ -49.707900303088365, -8.894970050710626 ], [ -49.612945465481772, -8.839181474363713 ], [ -49.502697658541763, -8.70866389125986 ], [ -49.378947653821115, -8.498297672297554 ], [ -49.282641497803553, -8.301422664787339 ], [ -49.226841935128078, -8.139418264076113 ], [ -49.189949843877002, -7.994970016378346 ], [ -49.172393690863544, -7.867396769324316 ], [ -49.220316055972887, -7.752194128210874 ], [ -49.333947652104456, -7.649142366467331 ], [ -49.340473531259647, -7.510099392413281 ], [ -49.239673966867599, -7.334823506820669 ], [ -49.195124404621282, -7.168556410634423 ], [ -49.209747207913466, -7.005651130982585 ], [ -49.079471324037627, -6.856237062782895 ], [ -48.805417358505139, -6.71831469424032 ], [ -48.652872186670379, -6.595707267688226 ], [ -48.622044548775648, -6.488590564383287 ], [ -48.579966910451759, -6.414125229511413 ], [ -48.527320424068449, -6.3722673177584 ], [ -48.470619982452376, -6.353370832662506 ], [ -48.410096298502964, -6.357655500794763 ], [ -48.391199813407098, -6.308832256744807 ], [ -48.413699814265414, -6.207340553654447 ], [ -48.389848494996187, -6.141862035531645 ], [ -48.319415142699995, -6.112396702376316 ], [ -48.296695415270818, -6.067396700659771 ], [ -48.321216900581248, -6.006642303810906 ], [ -48.307044536759349, -5.965926970226505 ], [ -48.254398050376039, -5.945228727249429 ], [ -48.24540024729842, -5.888517299304809 ], [ -48.280040141197958, -5.795814659049739 ], [ -48.258671732179693, -5.723590535200856 ], [ -48.181273047586529, -5.672064654329048 ], [ -48.159223486198584, -5.619198441374863 ], [ -48.192742774586577, -5.565431349480036 ], [ -48.231447610047439, -5.533241406845832 ], [ -48.275316019923991, -5.522452832215549 ], [ -48.31717393167699, -5.486219920677129 ], [ -48.356999372649341, -5.424344918316791 ], [ -48.421566025503012, -5.398483100923954 ], [ -48.51111558946593, -5.408151070042777 ], [ -48.597523063465246, -5.398702827494787 ], [ -48.721492794756784, -5.355944036801247 ], [ -48.721492794756784, -5.355724310230372 ], [ -48.721943234227098, -5.355043157860635 ], [ -48.630591912382954, -5.330301945979329 ], [ -48.574341910237166, -5.28822430765544 ], [ -48.52349718173511, -5.220504578509647 ], [ -48.458249376511731, -5.180887877779639 ], [ -48.378148055096744, -5.169418150779563 ], [ -48.281622172508321, -5.189457214043955 ], [ -48.16889145531735, -5.240741395687863 ], [ -48.059544527317968, -5.263021669975288 ], [ -47.953119962711327, -5.256276064249221 ], [ -47.884499354624893, -5.285521670833603 ], [ -47.853891443301052, -5.350780462385529 ], [ -47.763221273826645, -5.407250191102179 ], [ -47.612466873544577, -5.454952829640604 ], [ -47.519994946188945, -5.506478710512454 ], [ -47.48579450543113, -5.561146681347864 ], [ -47.444848458947291, -5.749913778392497 ], [ -47.397145820408838, -6.072340548504613 ], [ -47.405473457445254, -6.42109056180837 ], [ -47.47049054976921, -6.795944091732892 ], [ -47.537089673403528, -7.027250252900274 ], [ -47.605721267818495, -7.11476734608253 ], [ -47.665344072827281, -7.16719410589495 ], [ -47.715969074758476, -7.184750258908423 ], [ -47.717089680269964, -7.22210377595826 ], [ -47.668947588589759, -7.279694110186497 ], [ -47.611796707503373, -7.301512958675062 ], [ -47.545867749910258, -7.287582294081119 ], [ -47.506943187878534, -7.305797626807262 ], [ -47.495023021408201, -7.356202902167524 ], [ -47.498395824271256, -7.449806421363292 ], [ -47.458119943828592, -7.534620877723682 ], [ -47.413570381582247, -7.530116483020592 ], [ -47.346520818477643, -7.659733187183832 ], [ -47.303542301213156, -7.66287527714745 ], [ -47.279471255373039, -7.731056432092103 ], [ -47.15009625043777, -7.856146768895158 ], [ -47.078542292630118, -7.976512984424289 ], [ -47.016216850799424, -8.043573533857341 ], [ -46.984949759762941, -8.03906913915435 ], [ -46.868846239708944, -7.958737104839884 ], [ -46.743744916577327, -7.922965619100353 ], [ -46.574094031199394, -7.905189739516004 ], [ -46.489268588510441, -7.963241499543003 ], [ -46.466999300551549, -8.070358202847899 ], [ -46.502770786291137, -8.172948538792639 ], [ -46.507275180994213, -8.27578057396542 ], [ -46.543046666733801, -8.320319149883176 ], [ -46.502770786291137, -8.396146789494537 ], [ -46.658919473888375, -8.396146789494537 ], [ -46.793018600097582, -8.436422669937187 ], [ -46.837568162343928, -8.485465640557948 ], [ -46.882117724590216, -8.583793281027681 ], [ -46.92239360503288, -8.744457349656443 ], [ -46.904617725448503, -8.829271806016934 ], [ -47.065270807748817, -8.976642417107428 ], [ -47.083046687333194, -9.03469417713444 ], [ -47.038497125086849, -9.065983240828018 ], [ -46.940169484617201, -9.070245936303124 ], [ -46.846565965421519, -9.168573576772772 ], [ -46.82857035926628, -9.306957371114194 ], [ -46.752742719654975, -9.409547707058948 ], [ -46.56082254631815, -9.498866558122458 ], [ -46.534048863656182, -9.556918318149457 ], [ -46.600867713861362, -9.650741563916029 ], [ -46.650141397381617, -9.664013048797287 ], [ -46.667917276965966, -9.74434508311171 ], [ -46.507275180994213, -9.855944208462631 ], [ -46.462494905848473, -9.949767454229232 ], [ -46.471492708926121, -10.003314819553111 ], [ -46.346622098693899, -10.168483282885049 ], [ -46.284065943963839, -10.186478889040274 ], [ -46.190242698197267, -10.177470099634036 ], [ -46.087641375923965, -10.208737190670604 ], [ -46.034094010600029, -10.271293345400693 ], [ -45.944775159536533, -10.315853893975543 ], [ -45.757117681674856, -10.329345105427691 ], [ -45.859949716847581, -10.467728899769114 ], [ -46.038367692403682, -10.570319235713882 ], [ -46.087641375923965, -10.583832419823125 ], [ -46.301841823548187, -10.757746000676136 ], [ -46.234792260443555, -10.882858310136299 ], [ -46.248294458224251, -10.914125401172797 ], [ -46.368891386652791, -10.967672766496719 ], [ -46.462494905848473, -11.177599532317288 ], [ -46.529544468953105, -11.235431565773396 ], [ -46.569820349395741, -11.315983326658738 ], [ -46.551824743240559, -11.378297782160814 ], [ -46.489268588510441, -11.414069267900388 ], [ -46.426943146679804, -11.498905696917888 ], [ -46.190242698197267, -11.543444272835643 ], [ -46.083147967549422, -11.601496032862656 ], [ -46.105417255508314, -11.664052187592731 ], [ -46.243790063521175, -11.726608342322805 ], [ -46.275068140886219, -11.766862250108375 ], [ -46.248294458224251, -11.842689889719722 ], [ -46.158964620832222, -11.83370307297065 ], [ -46.100923847133771, -11.864970164007147 ], [ -46.078643572846346, -11.927526318737222 ], [ -46.212522972484692, -11.998849563645479 ], [ -46.248294458224251, -12.048112260837215 ], [ -46.324122097835613, -12.092672809412065 ], [ -46.337624295616308, -12.128444295151638 ], [ -46.346622098693899, -12.342655729104393 ], [ -46.315344021328883, -12.42296579076168 ], [ -46.158964620832222, -12.50329782507616 ], [ -46.158964620832222, -12.601625465545808 ], [ -46.234792260443555, -12.713224590896743 ], [ -46.234792260443555, -12.798039047257149 ], [ -46.301841823548187, -12.833832505653803 ], [ -46.435721223186533, -12.847103990535075 ], [ -46.592089637354633, -12.891862293023721 ], [ -46.645647989007102, -12.922931630146422 ], [ -46.752742719654947, -13.034750482068219 ], [ -46.82857035926628, -13.070302241236917 ], [ -46.971447561982245, -13.070302241236917 ], [ -47.092044490410757, -13.097064937570323 ], [ -47.292973453153735, -13.199896972743062 ], [ -47.440344064244215, -13.248939943363894 ], [ -47.556447584298212, -13.244457521317912 ], [ -47.641042314087741, -13.115082516382643 ], [ -47.721594074973069, -13.150612302894245 ], [ -47.659048906571513, -13.320263188272165 ], [ -47.681318194530405, -13.356056646668833 ], [ -47.855473474611387, -13.293500491938744 ], [ -47.935794522597291, -13.244457521317912 ], [ -48.002844085701895, -13.248939943363894 ], [ -48.074167330610152, -13.195392578039986 ], [ -48.174966895002228, -13.180780761076335 ], [ -48.163716894573071, -13.102470211214026 ], [ -48.226042336403736, -13.092582515524342 ], [ -48.368919539119673, -13.186405761290914 ], [ -48.480518664470594, -13.195392578039986 ], [ -48.587624381447, -13.155116697597322 ], [ -48.654443231652181, -13.177396971884747 ], [ -48.685721309017225, -13.338280767084484 ], [ -48.739268674341133, -13.38281934300224 ], [ -48.775040160080721, -13.351552251965742 ], [ -48.761768675199448, -13.208664062921244 ], [ -48.766273069902525, -13.097064937570323 ], [ -48.801824829071222, -12.998978996328646 ], [ -48.797320434368146, -12.927414052192404 ], [ -48.824094117030086, -12.873866686868496 ], [ -48.926915165874277, -12.784547835805 ], [ -48.998249397111096, -12.748996076636303 ], [ -49.016245003266306, -12.655172830869731 ], [ -49.136622205123956, -12.735504865184154 ], [ -49.29749501399516, -13.003483391031722 ], [ -49.359820455825798, -13.132858395966991 ], [ -49.382320456684113, -13.248939943363894 ], [ -49.520693264697002, -13.199896972743062 ], [ -49.685839755371831, -13.177396971884747 ], [ -49.913542400776748, -13.070302241236917 ], [ -49.971594160803761, -13.025741692662066 ], [ -50.051915208789637, -13.021237297958976 ], [ -50.239341973751891, -12.931918446895494 ], [ -50.270620051116936, -12.891862293023721 ], [ -50.275124445820012, -12.789052230508076 ], [ -50.19929680620865, -12.655172830869731 ], [ -50.203570488012303, -12.570358374509311 ], [ -50.13674065147859, -12.476513156085659 ], [ -50.163745047039981, -12.38765573082101 ], [ -50.295591975897651, -12.490026340194888 ], [ -50.392348571385497, -12.617138161450072 ], [ -50.484820498741158, -12.842599595831999 ], [ -50.566042425667661, -12.819638169174837 ], [ -50.613964790777004, -12.763388167029063 ], [ -50.655372263059689, -12.666862284440654 ], [ -50.660546823803969, -12.558207495139541 ], [ -50.629268746438925, -12.437379853811592 ], [ -50.631740670361324, -12.288646937981625 ], [ -50.667523142429445, -12.112030720306748 ], [ -50.67471918762584, -11.990082473467297 ], [ -50.653570505178465, -11.922340771664409 ], [ -50.661447702744567, -11.853500437007099 ], [ -50.717466991990904, -11.749108343181121 ], [ -50.66572138454822, -11.651901308222961 ], [ -50.671346384762813, -11.573832457588622 ], [ -50.716566113050305, -11.482689875986807 ], [ -50.708018749442999, -11.345668386384844 ], [ -50.64524286814202, -11.162746016125666 ], [ -50.610372261343059, -11.000983314642411 ], [ -50.59912226091393, -10.689806544959453 ], [ -50.550749456334273, -10.567177145750264 ], [ -50.454674013216163, -10.388517470966192 ], [ -50.402697692874028, -10.258241587090311 ], [ -50.395270934778239, -10.176788947264384 ], [ -50.337449887650649, -10.034362184018732 ], [ -50.234848565377348, -9.842672723581373 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-SP", "NAME_1": "São Paulo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.116199993651563, -22.639987664885183 ], [ -52.960721472095528, -22.454824083603015 ], [ -52.566070578134543, -22.207324074161647 ], [ -52.402495132441516, -22.069181979048096 ], [ -52.338818372199967, -21.957341154469304 ], [ -52.245665292474555, -21.840358728131761 ], [ -52.12259644012363, -21.718168782064367 ], [ -52.064995119566902, -21.622763504987418 ], [ -52.072641604233596, -21.554142896900998 ], [ -52.047669679452866, -21.510944653065621 ], [ -51.989848632325305, -21.493630199280119 ], [ -51.954747312626921, -21.469548167111469 ], [ -51.936290280672836, -21.422746407513614 ], [ -51.872844233330682, -21.32982404068764 ], [ -51.856650385056696, -21.260082827089718 ], [ -51.866318354175519, -21.18267315616805 ], [ -51.811419670440642, -21.077138484173474 ], [ -51.691943347523647, -20.943720510334003 ], [ -51.619049057633561, -20.806918747302916 ], [ -51.593165267583686, -20.666513468509322 ], [ -51.534223614944608, -20.55761697998031 ], [ -51.396971412443207, -20.441755159154269 ], [ -51.160721403430983, -20.306513454776464 ], [ -51.063964807943137, -20.223039330498423 ], [ -50.99377315487493, -20.101552509457804 ], [ -50.584049018151433, -19.821203377669605 ], [ -50.488643741074497, -19.790815192916568 ], [ -50.43374505733965, -19.800263435464558 ], [ -50.364443296883508, -19.858556894719527 ], [ -49.377145895939833, -19.978483657106864 ], [ -49.2783678159999, -19.98703102071417 ], [ -49.258790178534298, -20.016957779668289 ], [ -49.288046771447227, -20.073647234955814 ], [ -49.283542376744151, -20.148573995626549 ], [ -49.238992814497863, -20.245539331356738 ], [ -49.199848525895277, -20.294362575406637 ], [ -49.166318251178666, -20.295043727776431 ], [ -49.112770885854729, -20.259272242036786 ], [ -49.039645883065248, -20.18726784475885 ], [ -48.994645881348617, -20.213591087950419 ], [ -48.977990607275785, -20.338241971611808 ], [ -48.952568243024757, -20.41002664231894 ], [ -48.918367802266971, -20.429142853985638 ], [ -48.886869998331065, -20.369970488447152 ], [ -48.858294557787872, -20.232729272274312 ], [ -48.81194323766033, -20.158923117115094 ], [ -48.71564806797133, -20.143849874352583 ], [ -48.363744978375422, -20.138224874138018 ], [ -48.25326645853599, -20.093005145850512 ], [ -48.178339697865255, -20.082875750932857 ], [ -48.109499363207959, -20.116625752220315 ], [ -48.051216890281552, -20.120229267982779 ], [ -47.991143645802424, -20.082875750932857 ], [ -47.9087901270359, -20.081755145421369 ], [ -47.861768640867155, -20.055651628800589 ], [ -47.860197595885353, -20.011991959166366 ], [ -47.818570397031777, -19.980724868129869 ], [ -47.749719076045949, -19.977121352367419 ], [ -47.695490558352276, -19.9910739896184 ], [ -47.655895830279405, -20.022802506453729 ], [ -47.594240554489943, -20.018517838321486 ], [ -47.517742748837378, -19.994216079582017 ], [ -47.459921701709789, -20.000983657965179 ], [ -47.427742745404146, -20.036293717905892 ], [ -47.328964665464184, -20.117526631160942 ], [ -47.244369935674655, -20.173996359877592 ], [ -47.234921693126722, -20.204362571973462 ], [ -47.266199770491767, -20.284694606287886 ], [ -47.292973453153763, -20.423078400629322 ], [ -47.252697572711099, -20.476625765953202 ], [ -47.154589658812313, -20.525668736574076 ], [ -47.109820369995106, -20.632763467221906 ], [ -47.212641418839326, -20.806918747302916 ], [ -47.221419495346026, -20.914013477950732 ], [ -47.145591855734693, -20.981074027383912 ], [ -47.123322567775801, -21.132949033177482 ], [ -47.056273004671198, -21.195263488679586 ], [ -46.993947562840532, -21.342656072427161 ], [ -47.002714653018757, -21.400707832454088 ], [ -46.895619922370884, -21.405190254500155 ], [ -46.815298874385007, -21.3606516785824 ], [ -46.685693156550315, -21.396203437751083 ], [ -46.654645792084722, -21.373923163463658 ], [ -46.605372108564438, -21.42747052878758 ], [ -46.507275180994213, -21.458737619824078 ], [ -46.493772983213518, -21.525798169257229 ], [ -46.56082254631815, -21.672949053776847 ], [ -46.605372108564438, -21.681957843183 ], [ -46.627872109422754, -21.771276694246495 ], [ -46.667917276965966, -21.811552574689145 ], [ -46.658919473888375, -21.905156093884841 ], [ -46.618874306345134, -21.98546615554217 ], [ -46.658919473888375, -22.052526704975335 ], [ -46.600867713861362, -22.132858739289759 ], [ -46.663423868591451, -22.204401710768877 ], [ -46.69919535433101, -22.320263531594932 ], [ -46.641143594304026, -22.409604355315508 ], [ -46.547320348537454, -22.440871446352006 ], [ -46.543046666733801, -22.472138537388503 ], [ -46.453716829341744, -22.516699085963353 ], [ -46.395665069314759, -22.615026726433001 ], [ -46.471492708926121, -22.682065303209072 ], [ -46.368891386652791, -22.748906126071347 ], [ -46.359893583575172, -22.842729371837919 ], [ -46.288570338666915, -22.882763553052598 ], [ -46.154471212457679, -22.847233766540995 ], [ -46.14569313595095, -22.891772342458765 ], [ -46.020591812819333, -22.873996462874416 ], [ -45.908992687468412, -22.820449097550494 ], [ -45.859949716847581, -22.860505251422268 ], [ -45.792900153742977, -22.851716188586991 ], [ -45.743846196793584, -22.797949096692193 ], [ -45.743846196793584, -22.726625851783922 ], [ -45.801897956820596, -22.699841182793421 ], [ -45.672292238985904, -22.619531121136077 ], [ -45.629775147520235, -22.622673211099695 ], [ -45.58319311449327, -22.615026726433001 ], [ -45.52964574916939, -22.65079821217256 ], [ -45.470923823101202, -22.611642937241413 ], [ -45.40904882074085, -22.646293817469484 ], [ -45.270665026399399, -22.606017937026849 ], [ -45.243891343737459, -22.561479361109079 ], [ -45.056244852204316, -22.467656115342507 ], [ -44.92236545256597, -22.449880235758172 ], [ -44.833046601502474, -22.405099960612404 ], [ -44.770721159671723, -22.423095566767586 ], [ -44.650124231243183, -22.561479361109093 ], [ -44.636622033462515, -22.601513542323801 ], [ -44.538525105892347, -22.619531121136106 ], [ -44.216999214720829, -22.592746452145548 ], [ -44.167945257771521, -22.699841182793421 ], [ -44.248266305757397, -22.74890612607129 ], [ -44.275039988419337, -22.820449097550522 ], [ -44.35986543110829, -22.85600085671922 ], [ -44.471464556459125, -22.851716188586977 ], [ -44.587568076513207, -22.878500857577478 ], [ -44.72594088452604, -22.936552617604434 ], [ -44.79749484233372, -22.990099982928371 ], [ -44.806272918840477, -23.13725086744796 ], [ -44.864324678867433, -23.204289444224003 ], [ -44.782872039041592, -23.353923238994639 ], [ -44.951622045478871, -23.381367087697811 ], [ -45.21531590319421, -23.575539458386174 ], [ -45.325343983563357, -23.599621490554739 ], [ -45.423221184562749, -23.68535879851288 ], [ -45.4333395931518, -23.758483801302418 ], [ -45.464397943945983, -23.802582924078365 ], [ -45.527173825246848, -23.804824135101398 ], [ -45.664645754319167, -23.764767981229625 ], [ -45.843074716203887, -23.763647375718108 ], [ -45.971999281668786, -23.795595619124356 ], [ -46.630794472815467, -24.110375904569707 ], [ -46.867275194727029, -24.236367120313503 ], [ -47.137275205026754, -24.493095645731842 ], [ -47.5922190700378, -24.781091262186806 ], [ -47.831171715871847, -24.953005331244754 ], [ -47.876622157058762, -24.997543907162594 ], [ -47.914195400679546, -24.999807090842637 ], [ -47.989122161350281, -25.035798303153058 ], [ -47.959415128967009, -25.065505335536272 ], [ -47.908339687565501, -25.068207972358152 ], [ -47.929499356341466, -25.168315398051959 ], [ -48.024443207619584, -25.236716279567474 ], [ -48.077540133473207, -25.290263644891439 ], [ -48.087669528390848, -25.280156222630879 ], [ -48.091943210194501, -25.235595674056029 ], [ -48.185766455961073, -25.190815398910289 ], [ -48.230546731106813, -25.012397423354116 ], [ -48.26609849027551, -25.034677697641598 ], [ -48.41346910136599, -24.958850058030265 ], [ -48.511796741835639, -25.083720668262458 ], [ -48.565344107159603, -25.056957971928966 ], [ -48.54284410630126, -24.811479446939771 ], [ -48.489296740977352, -24.74441889750662 ], [ -48.61439806410894, -24.681862742776545 ], [ -48.779544554783797, -24.695375926885774 ], [ -48.828598511733162, -24.66410883584922 ], [ -49.025023079773064, -24.668591257895272 ], [ -49.092072642877667, -24.686367137479621 ], [ -49.216943253109861, -24.690871532182697 ], [ -49.29749501399516, -24.664108835849291 ], [ -49.310766498876433, -24.530229436210945 ], [ -49.239443253968147, -24.418630310860024 ], [ -49.22594105618748, -24.338298276545572 ], [ -49.274995013136845, -24.315798275687285 ], [ -49.337540181538373, -24.213207939742531 ], [ -49.333046773163858, -24.14186272217718 ], [ -49.409094139346081, -24.083832934807262 ], [ -49.601025299011411, -23.86489737958054 ], [ -49.569747221646367, -23.833850015114933 ], [ -49.551971342062075, -23.713242100357832 ], [ -49.605518707385954, -23.641699128878713 ], [ -49.654572664335348, -23.507819729240353 ], [ -49.614296783892684, -23.409733787998675 ], [ -49.636796784750999, -23.257858782205105 ], [ -49.730400303946681, -23.105983776411534 ], [ -49.909048992402205, -23.034638558846183 ], [ -49.913542400776748, -22.985595588225337 ], [ -49.958091963023065, -22.963315313937912 ], [ -49.971594160803761, -22.914052616746176 ], [ -50.123249440026427, -22.940815313079611 ], [ -50.292900325404389, -22.95432849718884 ], [ -50.368947691586584, -22.91405261674619 ], [ -50.431273133417221, -22.945319707782687 ], [ -50.627697701457123, -22.923039433495262 ], [ -50.726025341926771, -22.949824102485763 ], [ -50.784066115625222, -22.945319707782687 ], [ -50.882174029523981, -22.820449097550494 ], [ -51.002770957952521, -22.793664428559993 ], [ -51.181419646408045, -22.739897336665194 ], [ -51.35534421358966, -22.65079821217256 ], [ -51.547495099825852, -22.686349971341272 ], [ -51.641098619021534, -22.650798212172575 ], [ -51.69464598434547, -22.664069697053776 ], [ -51.743919667865725, -22.619531121136077 ], [ -51.873294672800995, -22.610522331729925 ], [ -51.984893798151916, -22.54796617699985 ], [ -52.065214846137792, -22.521203480666429 ], [ -52.141273198648562, -22.543483754953854 ], [ -52.16354248660744, -22.601513542323772 ], [ -52.217089851931362, -22.641789422766422 ], [ -52.261650400506213, -22.601513542323772 ], [ -52.315197765830135, -22.619531121136077 ], [ -52.44479249733628, -22.601513542323772 ], [ -52.520620136947628, -22.615026726433001 ], [ -52.6144433827142, -22.570466177858151 ], [ -52.694775417028623, -22.601513542323772 ], [ -52.949240758766962, -22.570466177858123 ], [ -53.044415322944445, -22.636406121779814 ], [ -53.116199993651563, -22.639987664885183 ] ] ], [ [ [ -45.249065904481711, -23.782543860813973 ], [ -45.233091782778615, -23.825302651507627 ], [ -45.250197496321732, -23.852966226781632 ], [ -45.260315904910783, -23.889199138320066 ], [ -45.260997057280576, -23.941406171561539 ], [ -45.302624256134209, -23.914841229141985 ], [ -45.412872063074133, -23.934880292406433 ], [ -45.4513461856356, -23.895505290904396 ], [ -45.302393543234757, -23.72765616340763 ], [ -45.272247057709762, -23.751957922147199 ], [ -45.249065904481711, -23.782543860813973 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-MA", "NAME_1": "Maranhão" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -48.721943234227098, -5.355043157860635 ], [ -48.730490597834375, -5.338168157216899 ], [ -48.252816019065619, -4.954327810543248 ], [ -47.801915122958917, -4.597030433632256 ], [ -47.65454451186838, -4.606017250381342 ], [ -47.583221266960209, -4.547965490354329 ], [ -47.489398021193608, -4.423094880122107 ], [ -47.458119943828592, -4.338280423761717 ], [ -47.382292304217231, -4.275724269031571 ], [ -47.333018620696976, -4.164125143680735 ], [ -47.310749332738055, -4.065797503211058 ], [ -47.28846905845063, -4.079288714663221 ], [ -47.065270807748732, -3.842599252509217 ], [ -47.024994927306068, -3.59712072751995 ], [ -47.029499322009201, -3.570358031186515 ], [ -46.966943167279112, -3.525797482611608 ], [ -46.944673879320192, -3.396202751105534 ], [ -46.859848436631296, -3.329142201672369 ], [ -46.824296677462542, -3.329142201672369 ], [ -46.743744916577327, -3.190780379988041 ], [ -46.667917276965966, -3.092672466089311 ], [ -46.636650185929511, -2.985577735441382 ], [ -46.650141397381617, -2.91401279130514 ], [ -46.574094031199365, -2.847193941099988 ], [ -46.667917276965966, -2.739879483881225 ], [ -46.600867713861305, -2.664051844269977 ], [ -46.507275180994213, -2.614986900991994 ], [ -46.484994906706731, -2.547948324215952 ], [ -46.426943146679776, -2.512396565047197 ], [ -46.435721223186533, -2.409564529874501 ], [ -46.408947540524537, -2.387306228244199 ], [ -46.413440948899051, -2.239913644496539 ], [ -46.377669463159521, -2.253426828605825 ], [ -46.279572535589239, -2.141827703254933 ], [ -46.212522972484635, -1.927396542731231 ], [ -46.217016380859263, -1.807030327202142 ], [ -46.301841823548159, -1.802525932499123 ], [ -46.315344021328883, -1.73098296101989 ], [ -46.243790063521089, -1.722193898184685 ], [ -46.199240501274801, -1.677413623038944 ], [ -46.181244895119619, -1.574823287094205 ], [ -46.199240501274801, -1.485504436030624 ], [ -46.123193135092549, -1.34712064168923 ], [ -46.158964620832137, -1.315853550652776 ], [ -46.141199727576407, -1.240025911041414 ], [ -46.007089615038637, -1.146861844987484 ], [ -45.972219008239676, -1.187379424658161 ], [ -45.778716803592545, -1.250814485671697 ], [ -45.644848390282675, -1.347801794059023 ], [ -45.556869871301558, -1.330707066844354 ], [ -45.458542230831938, -1.35634915766633 ], [ -45.353018545165924, -1.567396528998415 ], [ -45.329167225896754, -1.717250050339828 ], [ -45.28214573972798, -1.696551807362709 ], [ -45.238497056422204, -1.629491257929601 ], [ -45.182016341377107, -1.507103557948312 ], [ -45.076272929140146, -1.466366251706802 ], [ -45.025867653779869, -1.513387737875576 ], [ -44.91967380207268, -1.588775924345214 ], [ -44.828322480228508, -1.671568896253461 ], [ -44.78984835766704, -1.724896535006508 ], [ -44.72121676325213, -1.733443898613814 ], [ -44.778598357237854, -1.798922416736616 ], [ -44.72099703668124, -1.792396537581453 ], [ -44.651244836754756, -1.74581450455446 ], [ -44.591622031745942, -1.841900934001103 ], [ -44.546841756600202, -1.946293027827096 ], [ -44.537843953522554, -2.052728578762299 ], [ -44.579921591846528, -2.113922428752971 ], [ -44.617275108896422, -2.152176824743435 ], [ -44.658671594850546, -2.22754303855595 ], [ -44.707494838900516, -2.241056222665179 ], [ -44.756318082950543, -2.265577707975638 ], [ -44.700749233174406, -2.320465405381867 ], [ -44.662494837183942, -2.373353590993133 ], [ -44.579020712905901, -2.23046540194872 ], [ -44.520298786837714, -2.190431220734013 ], [ -44.435473344148761, -2.168150946446588 ], [ -44.391374221372701, -2.269620676879811 ], [ -44.381914992496263, -2.365465407098554 ], [ -44.520068073938262, -2.405521560970271 ], [ -44.520749226307998, -2.481349200581633 ], [ -44.561914999362671, -2.524327717846177 ], [ -44.588919394924062, -2.57337068846698 ], [ -44.610749229741202, -2.676861903352346 ], [ -44.638874230814167, -2.762599211310487 ], [ -44.721447476151525, -3.142396589079851 ], [ -44.723018521133326, -3.204733017238993 ], [ -44.622669396211563, -3.137892194376775 ], [ -44.437494828600848, -2.944400976058205 ], [ -44.381244826455088, -2.738297452570919 ], [ -44.30811982366555, -2.535116292476459 ], [ -44.2286996546203, -2.47121980566402 ], [ -44.179414984771427, -2.47121980566402 ], [ -44.105619815940827, -2.493500079951446 ], [ -44.101346134137202, -2.560099203585764 ], [ -44.112596134566274, -2.598573326147118 ], [ -44.191565864141296, -2.699603603438618 ], [ -44.225096138857907, -2.754952726643808 ], [ -44.192697455981374, -2.809620697479147 ], [ -44.013147888585195, -2.642232995781399 ], [ -43.932815854270757, -2.583500083384649 ], [ -43.864414972755185, -2.595431236183515 ], [ -43.728525074993286, -2.51824129183268 ], [ -43.455141275502001, -2.502047443558695 ], [ -43.434673745424391, -2.413629471435797 ], [ -43.379994788260376, -2.376056227815013 ], [ -43.229690827448678, -2.385943923504726 ], [ -42.936740376820353, -2.465155352307647 ], [ -42.83234828299436, -2.529491292261866 ], [ -42.675968882497727, -2.589564536741022 ], [ -42.593615363731146, -2.661129480877207 ], [ -42.24958947170137, -2.792064544465745 ], [ -41.999848251236983, -2.806017181716754 ], [ -41.876098246516335, -2.746625089607392 ], [ -41.846171487562231, -2.758775968977091 ], [ -41.868891214991407, -2.851698335803107 ], [ -41.815343849667499, -2.936293065592636 ], [ -41.842117532329439, -3.034620706062299 ], [ -41.922449566643877, -3.110448345673632 ], [ -42.002770614629753, -3.231056260430719 ], [ -42.105371936903055, -3.262323351467202 ], [ -42.100867542199978, -3.302379505338976 ], [ -42.216971062253975, -3.431974236845122 ], [ -42.364341673344484, -3.44975011642947 ], [ -42.453671510736513, -3.476512812762891 ], [ -42.502714481357344, -3.44975011642947 ], [ -42.574268439165053, -3.570358031186515 ], [ -42.627815804488961, -3.614896607104313 ], [ -42.676869761438354, -3.699733036121813 ], [ -42.663367563657658, -3.789051887185309 ], [ -42.734921521465367, -3.922931286823655 ], [ -42.851025041519335, -4.039012834220557 ], [ -42.891070209062576, -4.141844869393296 ], [ -42.989397849532224, -4.239952783292068 ], [ -42.953615377464104, -4.391827789085639 ], [ -42.895574603765681, -4.405099273966925 ], [ -42.864296526400608, -4.498922519733469 ], [ -42.913570209920863, -4.637306314074863 ], [ -42.94912196908956, -4.659564615705236 ], [ -42.931346089505212, -4.731129559841463 ], [ -42.953615377464104, -4.775668135759233 ], [ -42.904572406843272, -4.829215501083155 ], [ -42.855518449893907, -4.936332204388066 ], [ -42.833018449035563, -5.097194026930723 ], [ -42.806244766373652, -5.159530455089907 ], [ -42.833018449035563, -5.311405460883492 ], [ -42.913570209920863, -5.391715522540821 ], [ -43.047449609559209, -5.597137893658314 ], [ -43.100996974883174, -5.623922562648772 ], [ -43.083221095298796, -5.713241413712311 ], [ -43.109994777960765, -5.771293173739309 ], [ -43.074223292221177, -6.057047579171225 ], [ -43.002669334413497, -6.12386642937642 ], [ -42.962624166870256, -6.186422584106495 ], [ -42.851025041519335, -6.253483133539646 ], [ -42.868789934775151, -6.436405503798838 ], [ -42.855518449893907, -6.480944079716608 ], [ -42.913570209920863, -6.615043205925815 ], [ -42.917843891724516, -6.668590571249737 ], [ -42.980400046454633, -6.744418210861056 ], [ -43.13227505224819, -6.780189696600658 ], [ -43.19909390245337, -6.753427000267237 ], [ -43.30191495129759, -6.802469970888012 ], [ -43.462568033597847, -6.842745851330733 ], [ -43.560895674067524, -6.753427000267266 ], [ -43.676768481222069, -6.699879634943329 ], [ -43.815372002134382, -6.708646725121511 ], [ -43.953744810147271, -6.762194090445348 ], [ -44.038570252836223, -6.766698485148481 ], [ -44.060839540795115, -6.829254639878584 ], [ -44.092117618160131, -6.806974365591159 ], [ -44.163440863068445, -6.887306399905583 ], [ -44.167945257771521, -6.923077885645114 ], [ -44.257275095163521, -7.007892342005576 ], [ -44.306318065784353, -7.110504650607368 ], [ -44.449195268500318, -7.146276136347012 ], [ -44.578570273435588, -7.248866472291766 ], [ -44.712669399644824, -7.396237083382246 ], [ -44.815270721918125, -7.364969992345763 ], [ -44.909093967684726, -7.445302026660158 ], [ -45.024966774839299, -7.494344997281019 ], [ -45.297449695389901, -7.556901152011108 ], [ -45.471593989142377, -7.673004672065105 ], [ -45.542917234050634, -7.869418253776431 ], [ -45.578699706118755, -8.150668264505271 ], [ -45.654516359401555, -8.253280573107133 ], [ -45.659020754104631, -8.311332333134118 ], [ -45.734848393715993, -8.431918275234068 ], [ -45.752843999871203, -8.561293280169366 ], [ -45.819673836404945, -8.699896801081678 ], [ -45.926768567052761, -8.788995925574284 ], [ -45.980546645276121, -8.927599446486596 ], [ -45.940270764833457, -9.012194176276125 ], [ -45.935766370130409, -9.119530606151898 ], [ -45.904499279093898, -9.177582366178939 ], [ -45.895721202587197, -9.32921567274451 ], [ -45.828671639482536, -9.373995947890265 ], [ -45.79739356211752, -9.463095072382885 ], [ -45.837669442560156, -9.534638043862032 ], [ -45.859949716847581, -9.833663934175206 ], [ -45.859949716847581, -9.99883239750713 ], [ -45.899994884390821, -10.02559509384055 ], [ -45.899994884390821, -10.083646853867549 ], [ -45.953542249714729, -10.181974494337197 ], [ -45.935766370130409, -10.213241585373623 ], [ -45.944775159536533, -10.315853893975543 ], [ -46.034094010600029, -10.271293345400693 ], [ -46.087641375923965, -10.208737190670604 ], [ -46.190242698197267, -10.177470099634036 ], [ -46.284065943963839, -10.186478889040274 ], [ -46.346622098693899, -10.168483282885049 ], [ -46.471492708926121, -10.003314819553111 ], [ -46.462494905848473, -9.949767454229232 ], [ -46.507275180994213, -9.855944208462631 ], [ -46.667917276965966, -9.74434508311171 ], [ -46.650141397381617, -9.664013048797287 ], [ -46.600867713861362, -9.650741563916029 ], [ -46.534048863656182, -9.556918318149457 ], [ -46.56082254631815, -9.498866558122458 ], [ -46.752742719654975, -9.409547707058948 ], [ -46.82857035926628, -9.306957371114194 ], [ -46.846565965421519, -9.168573576772772 ], [ -46.940169484617201, -9.070245936303124 ], [ -47.038497125086849, -9.065983240828018 ], [ -47.083046687333194, -9.03469417713444 ], [ -47.065270807748817, -8.976642417107428 ], [ -46.904617725448503, -8.829271806016934 ], [ -46.92239360503288, -8.744457349656443 ], [ -46.882117724590216, -8.583793281027681 ], [ -46.837568162343928, -8.485465640557948 ], [ -46.793018600097582, -8.436422669937187 ], [ -46.658919473888375, -8.396146789494537 ], [ -46.502770786291137, -8.396146789494537 ], [ -46.543046666733801, -8.320319149883176 ], [ -46.507275180994213, -8.27578057396542 ], [ -46.502770786291137, -8.172948538792639 ], [ -46.466999300551549, -8.070358202847899 ], [ -46.489268588510441, -7.963241499543003 ], [ -46.574094031199394, -7.905189739516004 ], [ -46.743744916577327, -7.922965619100353 ], [ -46.868846239708944, -7.958737104839884 ], [ -46.984949759762941, -8.03906913915435 ], [ -47.016216850799424, -8.043573533857341 ], [ -47.078542292630118, -7.976512984424289 ], [ -47.15009625043777, -7.856146768895158 ], [ -47.279471255373039, -7.731056432092103 ], [ -47.303542301213156, -7.66287527714745 ], [ -47.346520818477643, -7.659733187183832 ], [ -47.413570381582247, -7.530116483020592 ], [ -47.458119943828592, -7.534620877723682 ], [ -47.498395824271256, -7.449806421363292 ], [ -47.495023021408201, -7.356202902167524 ], [ -47.506943187878534, -7.305797626807262 ], [ -47.545867749910258, -7.287582294081119 ], [ -47.611796707503373, -7.301512958675062 ], [ -47.668947588589759, -7.279694110186497 ], [ -47.717089680269964, -7.22210377595826 ], [ -47.715969074758476, -7.184750258908423 ], [ -47.665344072827281, -7.16719410589495 ], [ -47.605721267818495, -7.11476734608253 ], [ -47.537089673403528, -7.027250252900274 ], [ -47.47049054976921, -6.795944091732892 ], [ -47.405473457445254, -6.42109056180837 ], [ -47.397145820408838, -6.072340548504613 ], [ -47.444848458947291, -5.749913778392497 ], [ -47.48579450543113, -5.561146681347864 ], [ -47.519994946188945, -5.506478710512454 ], [ -47.612466873544577, -5.454952829640604 ], [ -47.763221273826645, -5.407250191102179 ], [ -47.853891443301052, -5.350780462385529 ], [ -47.884499354624893, -5.285521670833603 ], [ -47.953119962711327, -5.256276064249221 ], [ -48.059544527317968, -5.263021669975288 ], [ -48.16889145531735, -5.240741395687863 ], [ -48.281622172508321, -5.189457214043955 ], [ -48.378148055096744, -5.169418150779563 ], [ -48.458249376511731, -5.180887877779639 ], [ -48.52349718173511, -5.220504578509647 ], [ -48.574341910237166, -5.28822430765544 ], [ -48.630591912382954, -5.330301945979329 ], [ -48.721943234227098, -5.355043157860635 ] ] ], [ [ [ -44.565298788554287, -2.923922459651919 ], [ -44.581943076298614, -2.845611909789682 ], [ -44.569122030887684, -2.784879485597855 ], [ -44.501841754883628, -2.726146573201106 ], [ -44.481374224806018, -2.717599209593914 ], [ -44.487218951591387, -2.789823333442769 ], [ -44.482494830317421, -2.811861908502237 ], [ -44.4993698309612, -2.939676854784238 ], [ -44.59769747143082, -3.037543069454955 ], [ -44.565298788554287, -2.923922459651919 ] ] ], [ [ [ -45.011244850487628, -1.34463773143824 ], [ -44.99549045535548, -1.347582067488133 ], [ -44.978615454711758, -1.267250033173696 ], [ -44.88839572470755, -1.276918002292462 ], [ -44.882990451063961, -1.317875035104862 ], [ -44.947117650775738, -1.366017126785096 ], [ -44.967815893752913, -1.39078031132351 ], [ -45.020923805935013, -1.372323279369425 ], [ -45.011244850487628, -1.34463773143824 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-RJ", "NAME_1": "Rio de Janeiro" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.782872039041592, -23.353923238994639 ], [ -44.864324678867433, -23.204289444224003 ], [ -44.806272918840477, -23.13725086744796 ], [ -44.79749484233372, -22.990099982928371 ], [ -44.72594088452604, -22.936552617604434 ], [ -44.587568076513207, -22.878500857577478 ], [ -44.471464556459125, -22.851716188586977 ], [ -44.35986543110829, -22.85600085671922 ], [ -44.275039988419337, -22.820449097550522 ], [ -44.248266305757397, -22.74890612607129 ], [ -44.167945257771521, -22.699841182793421 ], [ -44.216999214720829, -22.592746452145548 ], [ -44.538525105892347, -22.619531121136106 ], [ -44.636622033462515, -22.601513542323801 ], [ -44.650124231243183, -22.561479361109093 ], [ -44.770721159671723, -22.423095566767586 ], [ -44.833046601502474, -22.405099960612404 ], [ -44.730445279229173, -22.360539412037582 ], [ -44.663395716124569, -22.369548201443706 ], [ -44.601070274293903, -22.316000836119827 ], [ -44.534020711189271, -22.302487652010583 ], [ -44.444690873797242, -22.253444681389752 ], [ -44.293046580903109, -22.239953469937589 ], [ -44.216999214720857, -22.248940286686661 ], [ -44.092117618160131, -22.173112647075314 ], [ -43.895693050120258, -22.106074070299258 ], [ -43.815372002134382, -22.065798189856594 ], [ -43.565169355871149, -22.065798189856594 ], [ -43.462568033597847, -22.057031099678412 ], [ -43.341971105169364, -22.003483734354461 ], [ -43.13227505224819, -22.02574203598482 ], [ -43.063423731262333, -22.063556978833603 ], [ -42.279516230655531, -21.713224934219511 ], [ -42.284020625358579, -21.641901689311226 ], [ -42.36884606804756, -21.632892899905073 ], [ -42.364341673344484, -21.592617019462423 ], [ -42.301796504942928, -21.485522288814579 ], [ -42.297292110239852, -21.405190254500155 ], [ -42.221464470628518, -21.338151677724113 ], [ -42.181419303085278, -21.163996397643089 ], [ -42.096593860396325, -21.003354301671337 ], [ -42.141143422642642, -20.963298147799563 ], [ -42.096593860396325, -20.923022267356913 ], [ -41.998266219926677, -20.932031056763066 ], [ -41.962494734187089, -20.909750782475641 ], [ -41.92694297501842, -20.829199021590341 ], [ -41.864397806616864, -20.775651656266419 ], [ -41.743789891859791, -20.820431931412145 ], [ -41.712522800823308, -20.976569632680821 ], [ -41.730518406978518, -21.043630182113986 ], [ -41.712522800823308, -21.110449032319167 ], [ -41.440270593172073, -21.199767883382663 ], [ -41.391216636222708, -21.186496398501404 ], [ -41.266115313091092, -21.231056947076254 ], [ -41.069690745051219, -21.213281067491906 ], [ -40.967539862248202, -21.27559552299401 ], [ -41.047190744192903, -21.505781078649875 ], [ -41.02311969835273, -21.596901687594595 ], [ -41.021548653370985, -21.610854324845604 ], [ -40.987798652083427, -21.92022933664731 ], [ -41.000399970923581, -21.998979339651441 ], [ -41.122567944333866, -22.084474948381569 ], [ -41.582917082988558, -22.243556985700025 ], [ -41.705546482197747, -22.309694683535497 ], [ -41.980490340342328, -22.580595572775735 ], [ -41.997596053885445, -22.644733758816187 ], [ -41.986115340556921, -22.735854367760908 ], [ -41.940895612269344, -22.788281127573384 ], [ -41.987466658967833, -22.845190309431814 ], [ -42.042365342702681, -22.94712146566394 ], [ -42.12246666411761, -22.940815313079611 ], [ -42.581025031219667, -22.94105701230751 ], [ -42.829195206702195, -22.973224982284705 ], [ -42.958339498738042, -22.967138556271266 ], [ -43.016171532194221, -22.942617070960807 ], [ -43.081199610846681, -22.902582889746157 ], [ -43.100766261983722, -22.850156129933737 ], [ -43.065445215714476, -22.770724974559869 ], [ -43.086374171590933, -22.723242062592306 ], [ -43.154324613636163, -22.725263547044392 ], [ -43.229020661407503, -22.747543821331874 ], [ -43.241841706818434, -22.795026733299437 ], [ -43.236667146074183, -22.828776734586938 ], [ -43.208772857900669, -22.878039431778575 ], [ -43.1936996151382, -22.938574102056521 ], [ -43.224065827234085, -22.991220588439887 ], [ -43.369414953872422, -22.997966194165997 ], [ -43.532770672994559, -23.04634998507413 ], [ -43.736621999130307, -23.066608774909412 ], [ -43.898846126412366, -23.101479381708486 ], [ -43.973772887083101, -23.057380258932426 ], [ -43.898846126412366, -23.035319711215834 ], [ -43.791520682865098, -23.04588855927534 ], [ -43.675867602281471, -23.009457893823082 ], [ -43.702871997842863, -22.966237677330582 ], [ -43.866216730636381, -22.910449100983726 ], [ -44.047568055913871, -22.944638555412894 ], [ -44.147917180835577, -23.011017952476379 ], [ -44.367973341573816, -23.004953499120006 ], [ -44.637292199503747, -23.05557850105123 ], [ -44.681171595708861, -23.106862682695066 ], [ -44.673744837613071, -23.206552627904102 ], [ -44.621098351229705, -23.228591202963571 ], [ -44.569792196928859, -23.274052630479048 ], [ -44.619065880449114, -23.316349995373798 ], [ -44.667218958457852, -23.335246480469664 ], [ -44.782872039041592, -23.353923238994639 ] ] ], [ [ [ -44.155794378401652, -23.166496474032442 ], [ -44.220591744154774, -23.190798232771897 ], [ -44.320039990135911, -23.212397354689585 ], [ -44.360096144007684, -23.172121474246921 ], [ -44.274150095807272, -23.116332897900065 ], [ -44.242872018442199, -23.074013560348192 ], [ -44.220372017583884, -23.083022349754401 ], [ -44.191565864141296, -23.113168835279282 ], [ -44.129240422310602, -23.141974988721927 ], [ -44.097973331274147, -23.169418837425098 ], [ -44.155794378401652, -23.166496474032442 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-PI", "NAME_1": "Piauí" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.757117681674856, -10.329345105427691 ], [ -45.944775159536533, -10.315853893975543 ], [ -45.935766370130409, -10.213241585373623 ], [ -45.953542249714729, -10.181974494337197 ], [ -45.899994884390821, -10.083646853867549 ], [ -45.899994884390821, -10.02559509384055 ], [ -45.859949716847581, -9.99883239750713 ], [ -45.859949716847581, -9.833663934175206 ], [ -45.837669442560156, -9.534638043862032 ], [ -45.79739356211752, -9.463095072382885 ], [ -45.828671639482536, -9.373995947890265 ], [ -45.895721202587197, -9.32921567274451 ], [ -45.904499279093898, -9.177582366178939 ], [ -45.935766370130409, -9.119530606151898 ], [ -45.940270764833457, -9.012194176276125 ], [ -45.980546645276121, -8.927599446486596 ], [ -45.926768567052761, -8.788995925574284 ], [ -45.819673836404945, -8.699896801081678 ], [ -45.752843999871203, -8.561293280169366 ], [ -45.734848393715993, -8.431918275234068 ], [ -45.659020754104631, -8.311332333134118 ], [ -45.654516359401555, -8.253280573107133 ], [ -45.578699706118755, -8.150668264505271 ], [ -45.542917234050634, -7.869418253776431 ], [ -45.471593989142377, -7.673004672065105 ], [ -45.297449695389901, -7.556901152011108 ], [ -45.024966774839299, -7.494344997281019 ], [ -44.909093967684726, -7.445302026660158 ], [ -44.815270721918125, -7.364969992345763 ], [ -44.712669399644824, -7.396237083382246 ], [ -44.578570273435588, -7.248866472291766 ], [ -44.449195268500318, -7.146276136347012 ], [ -44.306318065784353, -7.110504650607368 ], [ -44.257275095163521, -7.007892342005576 ], [ -44.167945257771521, -6.923077885645114 ], [ -44.163440863068445, -6.887306399905583 ], [ -44.092117618160131, -6.806974365591159 ], [ -44.060839540795115, -6.829254639878584 ], [ -44.038570252836223, -6.766698485148481 ], [ -43.953744810147271, -6.762194090445348 ], [ -43.815372002134382, -6.708646725121511 ], [ -43.676768481222069, -6.699879634943329 ], [ -43.560895674067524, -6.753427000267266 ], [ -43.462568033597847, -6.842745851330733 ], [ -43.30191495129759, -6.802469970888012 ], [ -43.19909390245337, -6.753427000267237 ], [ -43.13227505224819, -6.780189696600658 ], [ -42.980400046454633, -6.744418210861056 ], [ -42.917843891724516, -6.668590571249737 ], [ -42.913570209920863, -6.615043205925815 ], [ -42.855518449893907, -6.480944079716608 ], [ -42.868789934775151, -6.436405503798838 ], [ -42.851025041519335, -6.253483133539646 ], [ -42.962624166870256, -6.186422584106495 ], [ -43.002669334413497, -6.12386642937642 ], [ -43.074223292221177, -6.057047579171225 ], [ -43.109994777960765, -5.771293173739309 ], [ -43.083221095298796, -5.713241413712311 ], [ -43.100996974883174, -5.623922562648772 ], [ -43.047449609559209, -5.597137893658314 ], [ -42.913570209920863, -5.391715522540821 ], [ -42.833018449035563, -5.311405460883492 ], [ -42.806244766373652, -5.159530455089907 ], [ -42.833018449035563, -5.097194026930723 ], [ -42.855518449893907, -4.936332204388066 ], [ -42.904572406843272, -4.829215501083155 ], [ -42.953615377464104, -4.775668135759233 ], [ -42.931346089505212, -4.731129559841463 ], [ -42.94912196908956, -4.659564615705236 ], [ -42.913570209920863, -4.637306314074863 ], [ -42.864296526400608, -4.498922519733469 ], [ -42.895574603765681, -4.405099273966925 ], [ -42.953615377464104, -4.391827789085639 ], [ -42.989397849532224, -4.239952783292068 ], [ -42.891070209062576, -4.141844869393296 ], [ -42.851025041519335, -4.039012834220557 ], [ -42.734921521465367, -3.922931286823655 ], [ -42.663367563657658, -3.789051887185309 ], [ -42.676869761438354, -3.699733036121813 ], [ -42.627815804488961, -3.614896607104313 ], [ -42.574268439165053, -3.570358031186515 ], [ -42.502714481357344, -3.44975011642947 ], [ -42.453671510736513, -3.476512812762891 ], [ -42.364341673344484, -3.44975011642947 ], [ -42.216971062253975, -3.431974236845122 ], [ -42.100867542199978, -3.302379505338976 ], [ -42.105371936903055, -3.262323351467202 ], [ -42.002770614629753, -3.231056260430719 ], [ -41.922449566643877, -3.110448345673632 ], [ -41.842117532329439, -3.034620706062299 ], [ -41.815343849667499, -2.936293065592636 ], [ -41.868891214991407, -2.851698335803107 ], [ -41.846171487562231, -2.758775968977091 ], [ -41.721971043371212, -2.808939545109496 ], [ -41.640067964075001, -2.878702731364498 ], [ -41.479865321245001, -2.916495701556187 ], [ -41.318322346332621, -2.936293065592636 ], [ -41.268598223342053, -2.916056248414421 ], [ -41.257117510013472, -3.079181254637149 ], [ -41.377714438442013, -3.271332140873369 ], [ -41.426768395391377, -3.320375111494201 ], [ -41.449268396249693, -3.436478631548212 ], [ -41.382218833145089, -3.592616332816888 ], [ -41.355445150483121, -3.708719852870885 ], [ -41.283891192675441, -3.811332161472734 ], [ -41.230343827351504, -4.043517228923633 ], [ -41.181289870402111, -4.123849263238057 ], [ -41.118744702000583, -4.177396628561979 ], [ -41.074195139754295, -4.324767239652473 ], [ -41.141244702858899, -4.427379548254322 ], [ -41.23484822205458, -4.539198400176133 ], [ -41.2438460251322, -4.615026039787466 ], [ -41.226070145547851, -4.726625165138387 ], [ -41.181289870402111, -4.811439621498806 ], [ -41.185794265105216, -4.914051930100655 ], [ -41.12324909670366, -5.007875175867227 ], [ -41.11447102019693, -5.065926935894225 ], [ -41.060692941973599, -5.168517271838979 ], [ -41.069690745051219, -5.306901066180416 ], [ -41.025141182804902, -5.364952826207414 ], [ -40.949093816622678, -5.418500191531322 ], [ -40.917815739257634, -5.60164228836139 ], [ -40.92232013396071, -5.681974322675813 ], [ -40.891042056595666, -5.905172573377655 ], [ -40.891042056595666, -6.012267304025499 ], [ -40.806216613906713, -6.253483133539646 ], [ -40.797449523728517, -6.378353743771839 ], [ -40.770664854738015, -6.494457263825836 ], [ -40.721391171217761, -6.570262930780089 ], [ -40.708119686336488, -6.659603754500665 ], [ -40.614296440569916, -6.708646725121511 ], [ -40.48041704093157, -6.735431394112013 ], [ -40.417871872530043, -6.81147876029425 ], [ -40.440141160488906, -6.905082279489932 ], [ -40.511695118296615, -7.0033879473025 ], [ -40.583018363204872, -7.195319106967844 ], [ -40.533964406255507, -7.324694111903099 ], [ -40.538468800958583, -7.391754661336265 ], [ -40.645574517934961, -7.400741478085337 ], [ -40.690343806752139, -7.427526147075838 ], [ -40.690343806752139, -7.512340603436257 ], [ -40.618789848944459, -7.637233186325531 ], [ -40.659065729387095, -7.762323523128586 ], [ -40.547466604036174, -7.833646768036857 ], [ -40.529470997880964, -7.905189739516004 ], [ -40.542973195661659, -8.030082322405278 ], [ -40.592016166282491, -8.12390556817185 ], [ -40.748395566779152, -8.244491510271843 ], [ -40.833221009468105, -8.36487969845804 ], [ -40.886768374792013, -8.351608213576768 ], [ -40.92232013396071, -8.431918275234111 ], [ -41.016143379727282, -8.418646790352838 ], [ -41.083192942831886, -8.525741521000683 ], [ -41.159020582443247, -8.548021795288108 ], [ -41.212567947767155, -8.632858224305608 ], [ -41.368716635364422, -8.713168285962922 ], [ -41.399994712729438, -8.784733230099178 ], [ -41.467044275834041, -8.865043291756422 ], [ -41.498322353199114, -8.936366536664764 ], [ -41.55637411322607, -8.972138022404351 ], [ -41.609921478550007, -8.963151205655279 ], [ -41.734792088782172, -8.981146811810504 ], [ -41.734792088782172, -9.132802091033199 ], [ -41.797348243512261, -9.173077971475848 ], [ -41.850895608836169, -9.253388033133191 ], [ -41.917945171940801, -9.213112152690485 ], [ -42.043046495072417, -9.208849457215422 ], [ -42.150141225720233, -9.293444187004965 ], [ -42.310794308020547, -9.306957371114194 ], [ -42.431391236449088, -9.409547707058962 ], [ -42.489442996476072, -9.498866558122458 ], [ -42.574268439165053, -9.485595073241143 ], [ -42.618818001411341, -9.565927107555609 ], [ -42.752697401049687, -9.521146832409883 ], [ -42.851025041519335, -9.547931501400399 ], [ -42.931346089505212, -9.516862164277654 ], [ -42.936971089719805, -9.474345072812028 ], [ -43.029443017075437, -9.436332376049464 ], [ -43.042945214856132, -9.39627622217769 ], [ -43.127770657545085, -9.373995947890265 ], [ -43.185822417572126, -9.418556496465044 ], [ -43.377742590908895, -9.414052101762039 ], [ -43.414865395059394, -9.33552182532884 ], [ -43.449296548716575, -9.302452976411118 ], [ -43.538395673209209, -9.360504736438116 ], [ -43.605445236313813, -9.338224462150691 ], [ -43.658992601637721, -9.364987158484112 ], [ -43.694775073705841, -9.445319192798536 ], [ -43.810867607431305, -9.427543313214187 ], [ -43.828643487015654, -9.498866558122458 ], [ -43.784093924769337, -9.565927107555609 ], [ -43.726042164742353, -9.748849477814815 ], [ -43.681272875925174, -9.802396843138695 ], [ -43.712539966961657, -9.949767454229203 ], [ -43.703542163884038, -10.034603883246703 ], [ -43.752815847404293, -10.106146854725807 ], [ -43.76159392391105, -10.168483282885063 ], [ -43.801869804353714, -10.204254768624651 ], [ -43.913468929704607, -10.43195741402954 ], [ -43.993789977690483, -10.454215715659814 ], [ -44.118891300822099, -10.588095115298231 ], [ -44.216999214720857, -10.62837099574088 ], [ -44.310822460487458, -10.601608299407459 ], [ -44.417917191135274, -10.588095115298231 ], [ -44.538525105892347, -10.628370995740852 ], [ -44.618846153878252, -10.686422755767879 ], [ -44.645619836540192, -10.735465726388711 ], [ -44.752714567188036, -10.784750396237527 ], [ -44.783992644553109, -10.85607364114577 ], [ -44.851042207657684, -10.878353915433223 ], [ -44.931374241972122, -10.860578035848874 ], [ -45.042973367323043, -10.896349521588448 ], [ -45.315214588645745, -10.780246001534408 ], [ -45.440315911777333, -10.619362206334714 ], [ -45.471593989142377, -10.485504779353462 ], [ -45.516143551388666, -10.414181534445163 ], [ -45.605473388780695, -10.333849500130768 ], [ -45.757117681674856, -10.329345105427691 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-MG", "NAME_1": "Minas Gerais" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.99377315487493, -20.101552509457804 ], [ -50.997596397208241, -19.663923098232331 ], [ -50.96429683539111, -19.511366940069024 ], [ -50.923790242049023, -19.464125727329417 ], [ -50.880822711113069, -19.459181879484575 ], [ -50.864167437040209, -19.437802484137762 ], [ -50.870924029094823, -19.423849846886768 ], [ -50.868891558314175, -19.377487540430693 ], [ -50.84391963353346, -19.310888416796388 ], [ -50.791943313191325, -19.238444566376614 ], [ -50.713193310187251, -19.160595442313166 ], [ -50.641870065278994, -19.118517803989278 ], [ -50.577523138996241, -19.112233624062057 ], [ -50.531622258339013, -19.087030986381905 ], [ -50.489775332914547, -19.0204318627476 ], [ -50.498992862563028, -18.953151586743559 ], [ -50.457596376608876, -18.876642794762475 ], [ -50.368266539216847, -18.768647185174018 ], [ -50.246999444747132, -18.690116908740833 ], [ -50.093773120542636, -18.641293664690863 ], [ -49.960124433803713, -18.616332726238682 ], [ -49.788671790544555, -18.614530968357457 ], [ -49.677973544134261, -18.600116905307601 ], [ -49.611824859970255, -18.566828329818989 ], [ -49.553322660472958, -18.510116901874369 ], [ -49.488294581820469, -18.522048054673263 ], [ -49.41674062401276, -18.602819542129453 ], [ -49.336650288926307, -18.584823935974214 ], [ -49.247540178105169, -18.468500689349341 ], [ -49.179370009489048, -18.404823929107764 ], [ -49.108266491151653, -18.388388381605793 ], [ -48.953699834864778, -18.325854199532813 ], [ -48.226943215344335, -18.340246289925574 ], [ -48.017917328464392, -18.434530961490992 ], [ -47.928818203971787, -18.445319536121303 ], [ -47.786171714155245, -18.379401564856721 ], [ -47.446419503929093, -18.170595404547655 ], [ -47.318846256875077, -18.083298037936274 ], [ -47.279471255373039, -18.061479189447695 ], [ -47.346520818477643, -17.878315119960547 ], [ -47.355518621555262, -17.824767754636625 ], [ -47.328744938893294, -17.744457692979296 ], [ -47.27069317886631, -17.668630053367949 ], [ -47.288469058450659, -17.548022138610875 ], [ -47.40906598687917, -17.498979167990029 ], [ -47.458119943828564, -17.52574186432345 ], [ -47.529443188736821, -17.454198892844303 ], [ -47.498395824271228, -17.32932828261211 ], [ -47.453615549125487, -17.347104162196459 ], [ -47.422348458089004, -17.271276522585111 ], [ -47.310749332738084, -17.141901517649842 ], [ -47.212641418839297, -17.074840968216691 ], [ -47.230417298423646, -17.025797997595845 ], [ -47.15009625043777, -16.976513327747043 ], [ -47.159094053515389, -16.918483540377125 ], [ -47.266199770491767, -16.6597335305066 ], [ -47.404572578504656, -16.570392706786023 ], [ -47.453615549125487, -16.494345340603786 ], [ -47.431346261166595, -16.409750610814257 ], [ -47.351025213180719, -16.302414180938442 ], [ -47.324240544190218, -16.226608513984189 ], [ -47.337523015400023, -16.146276479669766 ], [ -47.301971256231354, -16.039181749021921 ], [ -47.230417298423646, -16.034677354318845 ], [ -47.127815976150345, -15.923078228967924 ], [ -47.07854229263009, -15.936349713849197 ], [ -46.864341845005839, -15.882802348525274 ], [ -46.833074753969356, -15.8427461946535 ], [ -46.868846239708944, -15.592763274961158 ], [ -46.931391408110471, -15.543500577769436 ], [ -46.935895802813548, -15.431901452418515 ], [ -46.855344041928248, -15.324806721770685 ], [ -46.891115527667807, -15.239970292753185 ], [ -46.931391408110471, -15.226698807871912 ], [ -46.891115527667807, -15.04803913308784 ], [ -46.833074753969356, -15.012267647348267 ], [ -46.734966840070598, -15.016772042051343 ], [ -46.636650185929483, -15.070319407375266 ], [ -46.547320348537454, -15.039052316338768 ], [ -46.57859842590247, -14.914181706106575 ], [ -46.556318151615045, -14.869401430960849 ], [ -46.583091834277013, -14.793573791349502 ], [ -46.51604227117241, -14.713241757035078 ], [ -46.38666726623714, -14.771293517062077 ], [ -46.315344021328883, -14.847121156673424 ], [ -46.297348415173644, -14.909677311403499 ], [ -46.190242698197267, -14.93644000773692 ], [ -46.078643572846346, -14.922948796284771 ], [ -46.025096207522409, -14.869401430960849 ], [ -45.976042250573073, -14.985504951014832 ], [ -46.074150164471803, -15.248979082159337 ], [ -45.967044447495425, -15.186422927429248 ], [ -45.926768567052761, -15.128371167402264 ], [ -45.766115484752476, -15.146147046986613 ], [ -45.712568119428539, -15.123866772699188 ], [ -45.654516359401555, -15.043556711041788 ], [ -45.551915037128254, -14.93644000773692 ], [ -45.462596186064758, -14.940944402439996 ], [ -45.319718983348793, -14.856129946079577 ], [ -45.225895737582221, -14.74002642602558 ], [ -45.101025127350027, -14.717746151738154 ], [ -44.882320285022729, -14.597138236981039 ], [ -44.837540009876989, -14.516828175323752 ], [ -44.560794393851239, -14.347177289945833 ], [ -44.35986543110829, -14.271349650334457 ], [ -44.319820263565049, -14.244345254773094 ], [ -44.212494820017781, -14.240082559297988 ], [ -44.158947454693873, -14.271349650334486 ], [ -43.837641290093273, -14.315888226252241 ], [ -43.781391287947486, -14.342892621813633 ], [ -43.800068046472461, -14.369897017375024 ], [ -43.860822443321297, -14.534362355680116 ], [ -43.879499201846272, -14.624604058341333 ], [ -43.864414972755213, -14.659694391711156 ], [ -43.824150078641111, -14.695246150879854 ], [ -43.708046558587114, -14.735522031322503 ], [ -43.493846110962892, -14.789069396646426 ], [ -43.449296548716575, -14.780082579897353 ], [ -43.386740393986543, -14.699750545582901 ], [ -43.230371979818415, -14.637414117423731 ], [ -42.953615377464104, -14.677470271295505 ], [ -42.891070209062576, -14.749013242774652 ], [ -42.632320199192037, -14.940944402439996 ], [ -42.578542120968706, -14.931957585690924 ], [ -42.431391236449088, -15.034547921635692 ], [ -42.261740351071154, -15.106090893114839 ], [ -42.176914908382201, -15.106090893114839 ], [ -42.087596057318706, -15.181918532726186 ], [ -41.940214459899664, -15.172931715977143 ], [ -41.801841651886804, -15.110595287817915 ], [ -41.359949545186197, -15.494457607148604 ], [ -41.333164876195724, -15.717655857850389 ], [ -41.159020582443247, -15.780190039923411 ], [ -41.029645577507978, -15.73543173743478 ], [ -40.944820134819025, -15.673095309275581 ], [ -40.891042056595666, -15.69537558356302 ], [ -40.828716614765028, -15.681862399453777 ], [ -40.761667051660396, -15.739914159480776 ], [ -40.667843805893824, -15.717655857850431 ], [ -40.574240286698142, -15.757931738293095 ], [ -40.533964406255507, -15.797965919507703 ], [ -40.475923632557027, -15.77570761787743 ], [ -40.328542035138014, -15.824750588498276 ], [ -40.234949502270865, -15.820246193795199 ], [ -40.167899939166233, -15.896293559977423 ], [ -40.132117467098112, -15.891789165274304 ], [ -40.002742462162871, -15.994401473876223 ], [ -39.935692899058239, -15.998905868579271 ], [ -39.864369654149982, -16.110504993930192 ], [ -39.940197293761315, -16.311422970344609 ], [ -40.056289827486779, -16.396237426705014 ], [ -40.132117467098112, -16.503354130009953 ], [ -40.136621861801217, -16.543630010452603 ], [ -40.252714395526652, -16.565888312082905 ], [ -40.274994669814077, -16.614953255360874 ], [ -40.283992472891697, -16.744547986867019 ], [ -40.243716592449033, -16.833647111359625 ], [ -40.297494670672393, -16.878427386505351 ], [ -40.471419237853979, -16.869418597099184 ], [ -40.524966603177887, -16.931974751829273 ], [ -40.574240286698142, -17.132892728243689 ], [ -40.565242483620523, -17.262267733178959 ], [ -40.605518364063187, -17.311332676456885 ], [ -40.60979204586684, -17.391862464685104 ], [ -40.498192920515919, -17.418647133675606 ], [ -40.48041704093157, -17.557030928017028 ], [ -40.413367477826966, -17.557030928017028 ], [ -40.382320113361345, -17.623849778222223 ], [ -40.283992472891697, -17.717673023988795 ], [ -40.208164833280364, -17.766715994609626 ], [ -40.1858955453215, -17.816000664458443 ], [ -40.230445107567789, -17.918591000403126 ], [ -40.208164833280364, -17.976642760430195 ], [ -40.216942909787093, -17.972138365727119 ], [ -40.426869675607662, -17.89182830406979 ], [ -40.475923632557027, -17.927599789809364 ], [ -40.533964406255507, -17.900595394247972 ], [ -40.667843805893824, -17.95436248614277 ], [ -40.725895565920837, -17.945375669393698 ], [ -40.788440734322364, -17.972138365727119 ], [ -40.909048649079438, -17.972138365727119 ], [ -40.775169249441092, -18.092746280484192 ], [ -40.766171446363501, -18.137306829059042 ], [ -40.837494691271758, -18.150798040511191 ], [ -40.913542057453981, -18.101513370662389 ], [ -41.016143379727282, -18.173078314798616 ], [ -41.060692941973599, -18.177582709501706 ], [ -41.141244702858899, -18.297948925030809 ], [ -41.127742505078203, -18.333720410770383 ], [ -41.025141182804902, -18.40526338224953 ], [ -41.002641181946586, -18.454328325527456 ], [ -41.029645577507978, -18.637250695786648 ], [ -40.926824528663786, -18.695302455813646 ], [ -40.93131793703833, -18.806901581164553 ], [ -41.091971019338644, -18.829401582022868 ], [ -41.194792068182807, -18.806901581164553 ], [ -41.23484822205458, -18.851681856310293 ], [ -41.163524977146324, -18.905229221634215 ], [ -41.105473217119311, -18.887233615478976 ], [ -41.025141182804902, -18.981056861245563 ], [ -41.05191486546687, -19.034604226569471 ], [ -40.944820134819025, -19.146203351920391 ], [ -40.926824528663786, -19.293573963010886 ], [ -40.958091619700298, -19.472233637794957 ], [ -41.047421457092327, -19.489987544722226 ], [ -41.029645577507978, -19.548039304749224 ], [ -41.159020582443247, -19.659638430100145 ], [ -41.185794265105216, -19.865082773874718 ], [ -41.306391193533727, -19.954401624938214 ], [ -41.36444295356074, -20.186366965818237 ], [ -41.404499107432514, -20.213151634808739 ], [ -41.717016209197851, -20.208647240105662 ], [ -41.855400003539273, -20.369531035305386 ], [ -41.797348243512261, -20.427582795332398 ], [ -41.797348243512261, -20.534677525980229 ], [ -41.850895608836169, -20.623996377043724 ], [ -41.810839454964423, -20.646276651331149 ], [ -41.882173686201213, -20.75787577668207 ], [ -41.864397806616864, -20.775651656266419 ], [ -41.92694297501842, -20.829199021590341 ], [ -41.962494734187089, -20.909750782475641 ], [ -41.998266219926677, -20.932031056763066 ], [ -42.096593860396325, -20.923022267356913 ], [ -42.141143422642642, -20.963298147799563 ], [ -42.096593860396325, -21.003354301671337 ], [ -42.181419303085278, -21.163996397643089 ], [ -42.221464470628518, -21.338151677724113 ], [ -42.297292110239852, -21.405190254500155 ], [ -42.301796504942928, -21.485522288814579 ], [ -42.364341673344484, -21.592617019462423 ], [ -42.36884606804756, -21.632892899905073 ], [ -42.284020625358579, -21.641901689311226 ], [ -42.279516230655531, -21.713224934219511 ], [ -43.063423731262333, -22.063556978833603 ], [ -43.13227505224819, -22.02574203598482 ], [ -43.341971105169364, -22.003483734354461 ], [ -43.462568033597847, -22.057031099678412 ], [ -43.565169355871149, -22.065798189856594 ], [ -43.815372002134382, -22.065798189856594 ], [ -43.895693050120258, -22.106074070299258 ], [ -44.092117618160131, -22.173112647075314 ], [ -44.216999214720857, -22.248940286686661 ], [ -44.293046580903109, -22.239953469937589 ], [ -44.444690873797242, -22.253444681389752 ], [ -44.534020711189271, -22.302487652010583 ], [ -44.601070274293903, -22.316000836119827 ], [ -44.663395716124569, -22.369548201443706 ], [ -44.730445279229173, -22.360539412037582 ], [ -44.833046601502474, -22.405099960612404 ], [ -44.92236545256597, -22.449880235758172 ], [ -45.056244852204316, -22.467656115342507 ], [ -45.243891343737459, -22.561479361109079 ], [ -45.270665026399399, -22.606017937026849 ], [ -45.40904882074085, -22.646293817469484 ], [ -45.470923823101202, -22.611642937241413 ], [ -45.52964574916939, -22.65079821217256 ], [ -45.58319311449327, -22.615026726433001 ], [ -45.629775147520235, -22.622673211099695 ], [ -45.672292238985904, -22.619531121136077 ], [ -45.801897956820596, -22.699841182793421 ], [ -45.743846196793584, -22.726625851783922 ], [ -45.743846196793584, -22.797949096692193 ], [ -45.792900153742977, -22.851716188586991 ], [ -45.859949716847581, -22.860505251422268 ], [ -45.908992687468412, -22.820449097550494 ], [ -46.020591812819333, -22.873996462874416 ], [ -46.14569313595095, -22.891772342458765 ], [ -46.154471212457679, -22.847233766540995 ], [ -46.288570338666915, -22.882763553052598 ], [ -46.359893583575172, -22.842729371837919 ], [ -46.368891386652791, -22.748906126071347 ], [ -46.471492708926121, -22.682065303209072 ], [ -46.395665069314759, -22.615026726433001 ], [ -46.453716829341744, -22.516699085963353 ], [ -46.543046666733801, -22.472138537388503 ], [ -46.547320348537454, -22.440871446352006 ], [ -46.641143594304026, -22.409604355315508 ], [ -46.69919535433101, -22.320263531594932 ], [ -46.663423868591451, -22.204401710768877 ], [ -46.600867713861362, -22.132858739289759 ], [ -46.658919473888375, -22.052526704975335 ], [ -46.618874306345134, -21.98546615554217 ], [ -46.658919473888375, -21.905156093884841 ], [ -46.667917276965966, -21.811552574689145 ], [ -46.627872109422754, -21.771276694246495 ], [ -46.605372108564438, -21.681957843183 ], [ -46.56082254631815, -21.672949053776847 ], [ -46.493772983213518, -21.525798169257229 ], [ -46.507275180994213, -21.458737619824078 ], [ -46.605372108564438, -21.42747052878758 ], [ -46.654645792084722, -21.373923163463658 ], [ -46.685693156550315, -21.396203437751083 ], [ -46.815298874385007, -21.3606516785824 ], [ -46.895619922370884, -21.405190254500155 ], [ -47.002714653018757, -21.400707832454088 ], [ -46.993947562840532, -21.342656072427161 ], [ -47.056273004671198, -21.195263488679586 ], [ -47.123322567775801, -21.132949033177482 ], [ -47.145591855734693, -20.981074027383912 ], [ -47.221419495346026, -20.914013477950732 ], [ -47.212641418839326, -20.806918747302916 ], [ -47.109820369995106, -20.632763467221906 ], [ -47.154589658812313, -20.525668736574076 ], [ -47.252697572711099, -20.476625765953202 ], [ -47.292973453153763, -20.423078400629322 ], [ -47.266199770491767, -20.284694606287886 ], [ -47.234921693126722, -20.204362571973462 ], [ -47.244369935674655, -20.173996359877592 ], [ -47.328964665464184, -20.117526631160942 ], [ -47.427742745404146, -20.036293717905892 ], [ -47.459921701709789, -20.000983657965179 ], [ -47.517742748837378, -19.994216079582017 ], [ -47.594240554489943, -20.018517838321486 ], [ -47.655895830279405, -20.022802506453729 ], [ -47.695490558352276, -19.9910739896184 ], [ -47.749719076045949, -19.977121352367419 ], [ -47.818570397031777, -19.980724868129869 ], [ -47.860197595885353, -20.011991959166366 ], [ -47.861768640867155, -20.055651628800589 ], [ -47.9087901270359, -20.081755145421369 ], [ -47.991143645802424, -20.082875750932857 ], [ -48.051216890281552, -20.120229267982779 ], [ -48.109499363207959, -20.116625752220315 ], [ -48.178339697865255, -20.082875750932857 ], [ -48.25326645853599, -20.093005145850512 ], [ -48.363744978375422, -20.138224874138018 ], [ -48.71564806797133, -20.143849874352583 ], [ -48.81194323766033, -20.158923117115094 ], [ -48.858294557787872, -20.232729272274312 ], [ -48.886869998331065, -20.369970488447152 ], [ -48.918367802266971, -20.429142853985638 ], [ -48.952568243024757, -20.41002664231894 ], [ -48.977990607275785, -20.338241971611808 ], [ -48.994645881348617, -20.213591087950419 ], [ -49.039645883065248, -20.18726784475885 ], [ -49.112770885854729, -20.259272242036786 ], [ -49.166318251178666, -20.295043727776431 ], [ -49.199848525895277, -20.294362575406637 ], [ -49.238992814497863, -20.245539331356738 ], [ -49.283542376744151, -20.148573995626549 ], [ -49.288046771447227, -20.073647234955814 ], [ -49.258790178534298, -20.016957779668289 ], [ -49.2783678159999, -19.98703102071417 ], [ -49.377145895939833, -19.978483657106864 ], [ -50.364443296883508, -19.858556894719527 ], [ -50.43374505733965, -19.800263435464558 ], [ -50.488643741074497, -19.790815192916568 ], [ -50.584049018151433, -19.821203377669605 ], [ -50.99377315487493, -20.101552509457804 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-ES", "NAME_1": "Espírito Santo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.967539862248202, -21.27559552299401 ], [ -41.069690745051219, -21.213281067491906 ], [ -41.266115313091092, -21.231056947076254 ], [ -41.391216636222708, -21.186496398501404 ], [ -41.440270593172073, -21.199767883382663 ], [ -41.712522800823308, -21.110449032319167 ], [ -41.730518406978518, -21.043630182113986 ], [ -41.712522800823308, -20.976569632680821 ], [ -41.743789891859791, -20.820431931412145 ], [ -41.864397806616864, -20.775651656266419 ], [ -41.882173686201213, -20.75787577668207 ], [ -41.810839454964423, -20.646276651331149 ], [ -41.850895608836169, -20.623996377043724 ], [ -41.797348243512261, -20.534677525980229 ], [ -41.797348243512261, -20.427582795332398 ], [ -41.855400003539273, -20.369531035305386 ], [ -41.717016209197851, -20.208647240105662 ], [ -41.404499107432514, -20.213151634808739 ], [ -41.36444295356074, -20.186366965818237 ], [ -41.306391193533727, -19.954401624938214 ], [ -41.185794265105216, -19.865082773874718 ], [ -41.159020582443247, -19.659638430100145 ], [ -41.029645577507978, -19.548039304749224 ], [ -41.047421457092327, -19.489987544722226 ], [ -40.958091619700298, -19.472233637794957 ], [ -40.926824528663786, -19.293573963010886 ], [ -40.944820134819025, -19.146203351920391 ], [ -41.05191486546687, -19.034604226569471 ], [ -41.025141182804902, -18.981056861245563 ], [ -41.105473217119311, -18.887233615478976 ], [ -41.163524977146324, -18.905229221634215 ], [ -41.23484822205458, -18.851681856310293 ], [ -41.194792068182807, -18.806901581164553 ], [ -41.091971019338644, -18.829401582022868 ], [ -40.93131793703833, -18.806901581164553 ], [ -40.926824528663786, -18.695302455813646 ], [ -41.029645577507978, -18.637250695786648 ], [ -41.002641181946586, -18.454328325527456 ], [ -41.025141182804902, -18.40526338224953 ], [ -41.127742505078203, -18.333720410770383 ], [ -41.141244702858899, -18.297948925030809 ], [ -41.060692941973599, -18.177582709501706 ], [ -41.016143379727282, -18.173078314798616 ], [ -40.913542057453981, -18.101513370662389 ], [ -40.837494691271758, -18.150798040511191 ], [ -40.766171446363501, -18.137306829059042 ], [ -40.775169249441092, -18.092746280484192 ], [ -40.909048649079438, -17.972138365727119 ], [ -40.788440734322364, -17.972138365727119 ], [ -40.725895565920837, -17.945375669393698 ], [ -40.667843805893824, -17.95436248614277 ], [ -40.533964406255507, -17.900595394247972 ], [ -40.475923632557027, -17.927599789809364 ], [ -40.426869675607662, -17.89182830406979 ], [ -40.216942909787093, -17.972138365727119 ], [ -40.208164833280364, -17.976642760430195 ], [ -40.1858955453215, -18.007931824123773 ], [ -39.672449480813185, -18.324733594021311 ], [ -39.667714373210686, -18.325854199532813 ], [ -39.739718770488679, -18.639953332608485 ], [ -39.741970967840217, -18.846056856095714 ], [ -39.699893329516328, -19.277819567878652 ], [ -39.731391133452263, -19.453996332411762 ], [ -39.783367453794369, -19.571681883776108 ], [ -39.844792016684409, -19.649069582040724 ], [ -40.001391143751931, -19.741991948866669 ], [ -40.141796422545468, -19.968354262189209 ], [ -40.202770545965194, -20.205944603283811 ], [ -40.298845989083304, -20.29258279018255 ], [ -40.318643353119768, -20.425781037451159 ], [ -40.396042037712931, -20.56954813277919 ], [ -40.596520560985567, -20.783737594074864 ], [ -40.727016171432325, -20.846074022234063 ], [ -40.789341613262991, -20.906147266713177 ], [ -40.828716614765028, -21.031237603516246 ], [ -40.954499090266381, -21.237802552802322 ], [ -40.967539862248202, -21.27559552299401 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-BA", "NAME_1": "Bahia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.025096207522409, -14.869401430960849 ], [ -45.931272961755838, -14.749013242774652 ], [ -45.913497082171517, -14.690983455404748 ], [ -45.962540052792349, -14.534604054908087 ], [ -45.962540052792349, -14.467763232045797 ], [ -45.922494885249108, -14.351681684648909 ], [ -46.011594009741771, -14.298112346667835 ], [ -46.038367692403682, -14.253354044179261 ], [ -46.127697529795739, -14.18203079927099 ], [ -46.172466818612918, -14.074914095966065 ], [ -46.221520775562311, -13.998866729783842 ], [ -46.261796656004947, -13.869491724848501 ], [ -46.270574732511704, -13.655082536981979 ], [ -46.185749289822724, -13.405099617289665 ], [ -46.096419452430723, -13.351552251965757 ], [ -46.083147967549422, -13.253444338066984 ], [ -46.176971213315994, -13.217672852327382 ], [ -46.181244895119647, -13.159621092300398 ], [ -46.150197530654054, -13.025741692662052 ], [ -46.074150164471803, -12.976698722041192 ], [ -46.087641375923965, -12.914142567311146 ], [ -46.234792260443555, -12.798039047257149 ], [ -46.234792260443555, -12.713224590896743 ], [ -46.158964620832222, -12.601625465545808 ], [ -46.158964620832222, -12.50329782507616 ], [ -46.315344021328883, -12.42296579076168 ], [ -46.346622098693899, -12.342655729104393 ], [ -46.337624295616308, -12.128444295151638 ], [ -46.324122097835613, -12.092672809412065 ], [ -46.248294458224251, -12.048112260837215 ], [ -46.212522972484692, -11.998849563645479 ], [ -46.078643572846346, -11.927526318737222 ], [ -46.100923847133771, -11.864970164007147 ], [ -46.158964620832222, -11.83370307297065 ], [ -46.248294458224251, -11.842689889719722 ], [ -46.275068140886219, -11.766862250108375 ], [ -46.243790063521175, -11.726608342322805 ], [ -46.105417255508314, -11.664052187592731 ], [ -46.083147967549422, -11.601496032862656 ], [ -46.190242698197267, -11.543444272835643 ], [ -46.426943146679804, -11.498905696917888 ], [ -46.489268588510441, -11.414069267900388 ], [ -46.551824743240559, -11.378297782160814 ], [ -46.569820349395741, -11.315983326658738 ], [ -46.529544468953105, -11.235431565773396 ], [ -46.462494905848473, -11.177599532317288 ], [ -46.368891386652791, -10.967672766496719 ], [ -46.248294458224251, -10.914125401172797 ], [ -46.234792260443555, -10.882858310136299 ], [ -46.301841823548187, -10.757746000676136 ], [ -46.087641375923965, -10.583832419823125 ], [ -46.038367692403682, -10.570319235713882 ], [ -45.859949716847581, -10.467728899769114 ], [ -45.757117681674856, -10.329345105427691 ], [ -45.605473388780695, -10.333849500130768 ], [ -45.516143551388666, -10.414181534445163 ], [ -45.471593989142377, -10.485504779353462 ], [ -45.440315911777333, -10.619362206334714 ], [ -45.315214588645745, -10.780246001534408 ], [ -45.042973367323043, -10.896349521588448 ], [ -44.931374241972122, -10.860578035848874 ], [ -44.851042207657684, -10.878353915433223 ], [ -44.783992644553109, -10.85607364114577 ], [ -44.752714567188036, -10.784750396237527 ], [ -44.645619836540192, -10.735465726388711 ], [ -44.618846153878252, -10.686422755767879 ], [ -44.538525105892347, -10.628370995740852 ], [ -44.417917191135274, -10.588095115298231 ], [ -44.310822460487458, -10.601608299407459 ], [ -44.216999214720857, -10.62837099574088 ], [ -44.118891300822099, -10.588095115298231 ], [ -43.993789977690483, -10.454215715659814 ], [ -43.913468929704607, -10.43195741402954 ], [ -43.801869804353714, -10.204254768624651 ], [ -43.76159392391105, -10.168483282885063 ], [ -43.752815847404293, -10.106146854725807 ], [ -43.703542163884038, -10.034603883246703 ], [ -43.712539966961657, -9.949767454229203 ], [ -43.681272875925174, -9.802396843138695 ], [ -43.726042164742353, -9.748849477814815 ], [ -43.784093924769337, -9.565927107555609 ], [ -43.828643487015654, -9.498866558122458 ], [ -43.810867607431305, -9.427543313214187 ], [ -43.694775073705841, -9.445319192798536 ], [ -43.658992601637721, -9.364987158484112 ], [ -43.605445236313813, -9.338224462150691 ], [ -43.538395673209209, -9.360504736438116 ], [ -43.449296548716575, -9.302452976411118 ], [ -43.414865395059394, -9.33552182532884 ], [ -43.377742590908895, -9.414052101762039 ], [ -43.185822417572126, -9.418556496465044 ], [ -43.127770657545085, -9.373995947890265 ], [ -43.042945214856132, -9.39627622217769 ], [ -43.029443017075437, -9.436332376049464 ], [ -42.936971089719805, -9.474345072812028 ], [ -42.931346089505212, -9.516862164277654 ], [ -42.851025041519335, -9.547931501400399 ], [ -42.752697401049687, -9.521146832409883 ], [ -42.618818001411341, -9.565927107555609 ], [ -42.574268439165053, -9.485595073241143 ], [ -42.489442996476072, -9.498866558122458 ], [ -42.431391236449088, -9.409547707058962 ], [ -42.310794308020547, -9.306957371114194 ], [ -42.150141225720233, -9.293444187004965 ], [ -42.043046495072417, -9.208849457215422 ], [ -41.917945171940801, -9.213112152690485 ], [ -41.850895608836169, -9.253388033133191 ], [ -41.797348243512261, -9.173077971475848 ], [ -41.734792088782172, -9.132802091033199 ], [ -41.734792088782172, -8.981146811810504 ], [ -41.609921478550007, -8.963151205655279 ], [ -41.55637411322607, -8.972138022404351 ], [ -41.498322353199114, -8.936366536664764 ], [ -41.467044275834041, -8.865043291756422 ], [ -41.399994712729438, -8.784733230099178 ], [ -41.368716635364422, -8.713168285962922 ], [ -41.324167073118076, -8.735448560250362 ], [ -41.159020582443247, -8.708663891259846 ], [ -41.105473217119311, -8.717672680666027 ], [ -41.100968822416235, -8.775724440693025 ], [ -41.003992500357526, -8.781349440907604 ], [ -40.980371893987723, -8.815780594564785 ], [ -40.891042056595666, -8.856056475007449 ], [ -40.891042056595666, -9.03469417713444 ], [ -40.855490297426996, -9.092745937161425 ], [ -40.850996889052453, -9.150797697188352 ], [ -40.703615291633412, -9.217616547393618 ], [ -40.690343806752139, -9.342728856853768 ], [ -40.743891172076076, -9.423038918511111 ], [ -40.685839412049063, -9.47210386178898 ], [ -40.564792044150238, -9.460172708990143 ], [ -40.412697311785791, -9.396957374547355 ], [ -40.319774944959818, -9.293004733863199 ], [ -40.273192911932853, -9.144952970402969 ], [ -40.212218788513155, -9.101513027339593 ], [ -40.077669222833606, -9.08824154245832 ], [ -40.004994659514409, -9.058095056933354 ], [ -39.948744657368621, -9.022103844622904 ], [ -39.909149929295722, -8.980245932869821 ], [ -39.887770533948924, -8.923995930724061 ], [ -39.884617457656759, -8.853353838185598 ], [ -39.834893334666162, -8.809013016181552 ], [ -39.738367452077739, -8.791237136597275 ], [ -39.687742450146573, -8.749401197501371 ], [ -39.682798602301716, -8.683021800437942 ], [ -39.600895523005477, -8.619564766767255 ], [ -39.441824472015526, -8.559271795717166 ], [ -39.332697270587033, -8.565797674872442 ], [ -39.25664990440481, -8.640263009744331 ], [ -39.098249019456034, -8.714970043844119 ], [ -38.834994614882476, -8.800245926003356 ], [ -38.705399883376288, -8.879896807948114 ], [ -38.667815653426942, -8.896090656222128 ], [ -38.619223122276424, -8.896090656222128 ], [ -38.57759592342282, -8.860538897053431 ], [ -38.544296361605689, -8.831073563898173 ], [ -38.504690647204228, -8.834896806231512 ], [ -38.483992404227138, -8.877655596925138 ], [ -38.482190646345913, -8.959547689892815 ], [ -38.43291696282563, -9.003646812668819 ], [ -38.335940640766921, -9.01017269182401 ], [ -38.294324428241907, -9.043021814170856 ], [ -38.307595913123151, -9.102194179709358 ], [ -38.283074427812721, -9.203663910142609 ], [ -38.221199425452397, -9.34767270469861 ], [ -37.975720900463131, -9.512138043003716 ], [ -38.042990190138653, -9.605983261427355 ], [ -37.993716506618341, -9.646237169212938 ], [ -38.029498978686462, -9.726569203527362 ], [ -37.962669142152777, -9.873939814617813 ], [ -37.900123973751192, -9.913995968489587 ], [ -37.900123973751192, -9.949767454229232 ], [ -37.779516058994119, -10.079362185735349 ], [ -37.784020453697195, -10.306845104569391 ], [ -37.83756781902116, -10.422948624623359 ], [ -37.824065621240436, -10.548038961426414 ], [ -37.784020453697195, -10.62837099574088 ], [ -37.81529853106224, -10.677413966361712 ], [ -37.971447218659478, -10.75348330520103 ], [ -38.011723099102113, -10.75348330520103 ], [ -38.109820026672338, -10.708703030055304 ], [ -38.190141074658214, -10.717689846804376 ], [ -38.243919152881574, -10.824806550109301 ], [ -38.234921349803955, -10.896349521588448 ], [ -38.17686958977697, -10.980944251377977 ], [ -38.109820026672338, -11.030228921226794 ], [ -38.060766069722973, -11.168590742911121 ], [ -37.980445021737097, -11.239913987819392 ], [ -38.007218704399037, -11.356017507873389 ], [ -37.966942823956401, -11.400797783019115 ], [ -37.851070016801827, -11.440853936890889 ], [ -37.797291938578496, -11.525668393251294 ], [ -37.658919130565607, -11.556957456944886 ], [ -37.632145447903639, -11.521163998548232 ], [ -37.574093687876626, -11.539181577360537 ], [ -37.411869560594539, -11.497323665607496 ], [ -37.469240168251758, -11.653703066104185 ], [ -37.68861517662026, -12.100099567507868 ], [ -37.957274854837578, -12.475392550574156 ], [ -38.019149857197931, -12.591276344057235 ], [ -38.239645471077893, -12.844181627142348 ], [ -38.401869598359951, -12.966129873981799 ], [ -38.44732003954698, -12.967030752922426 ], [ -38.498845920418717, -12.95668163143381 ], [ -38.524949437039481, -12.76226756151749 ], [ -38.654093729075328, -12.644603982810281 ], [ -38.690996806654937, -12.623905739833219 ], [ -38.743874005937755, -12.748556623494494 ], [ -38.787973128713702, -12.782746077923775 ], [ -38.851869615526141, -12.790172836019565 ], [ -38.783699446910077, -12.844401353713238 ], [ -38.763671369974134, -12.90717723501416 ], [ -38.833192857001166, -13.032948724186951 ], [ -38.835214341453252, -13.147250486359724 ], [ -38.959195059073409, -13.273021975532515 ], [ -39.030968743451979, -13.365043463417862 ], [ -39.067421381561303, -13.480465831102151 ], [ -39.089240230049882, -13.588241714119647 ], [ -39.03502269868477, -13.558776380964389 ], [ -39.009149894963457, -13.581496108393651 ], [ -38.988671378557228, -13.615026383110262 ], [ -39.001272697397269, -13.664530779529912 ], [ -39.041098138369591, -13.758112326068499 ], [ -39.03502269868477, -13.99100051854623 ], [ -39.048074456995153, -14.04386673150043 ], [ -39.008468742593607, -14.101237339157706 ], [ -38.966391104269746, -14.003371124486875 ], [ -38.94232005842963, -14.030595246619157 ], [ -39.059544183995115, -14.654750543866328 ], [ -39.013423576767082, -14.935539128796336 ], [ -38.996098136653018, -15.253922930004194 ], [ -38.943220937370313, -15.564418547317416 ], [ -38.8851691773433, -15.842065042283764 ], [ -38.880664782640167, -15.864345316571132 ], [ -38.960766104055153, -16.186552360112387 ], [ -39.063147699757621, -16.504474735521399 ], [ -39.125022702117974, -16.763664198533661 ], [ -39.16394726414967, -17.043573877180108 ], [ -39.202871826181479, -17.178112456531096 ], [ -39.215242432122068, -17.315815098502867 ], [ -39.170692869875779, -17.642065110948352 ], [ -39.154048582131452, -17.703940113308647 ], [ -39.278468752893389, -17.849530939174997 ], [ -39.412567879102596, -17.919953305142656 ], [ -39.486824473732156, -17.990155944539367 ], [ -39.65083937256685, -18.252267770944457 ], [ -39.667714373210686, -18.325854199532813 ], [ -39.672449480813185, -18.324733594021311 ], [ -40.1858955453215, -18.007931824123773 ], [ -40.208164833280364, -17.976642760430195 ], [ -40.230445107567789, -17.918591000403126 ], [ -40.1858955453215, -17.816000664458443 ], [ -40.208164833280364, -17.766715994609626 ], [ -40.283992472891697, -17.717673023988795 ], [ -40.382320113361345, -17.623849778222223 ], [ -40.413367477826966, -17.557030928017028 ], [ -40.48041704093157, -17.557030928017028 ], [ -40.498192920515919, -17.418647133675606 ], [ -40.60979204586684, -17.391862464685104 ], [ -40.605518364063187, -17.311332676456885 ], [ -40.565242483620523, -17.262267733178959 ], [ -40.574240286698142, -17.132892728243689 ], [ -40.524966603177887, -16.931974751829273 ], [ -40.471419237853979, -16.869418597099184 ], [ -40.297494670672393, -16.878427386505351 ], [ -40.243716592449033, -16.833647111359625 ], [ -40.283992472891697, -16.744547986867019 ], [ -40.274994669814077, -16.614953255360874 ], [ -40.252714395526652, -16.565888312082905 ], [ -40.136621861801217, -16.543630010452603 ], [ -40.132117467098112, -16.503354130009953 ], [ -40.056289827486779, -16.396237426705014 ], [ -39.940197293761315, -16.311422970344609 ], [ -39.864369654149982, -16.110504993930192 ], [ -39.935692899058239, -15.998905868579271 ], [ -40.002742462162871, -15.994401473876223 ], [ -40.132117467098112, -15.891789165274304 ], [ -40.167899939166233, -15.896293559977423 ], [ -40.234949502270865, -15.820246193795199 ], [ -40.328542035138014, -15.824750588498276 ], [ -40.475923632557027, -15.77570761787743 ], [ -40.533964406255507, -15.797965919507703 ], [ -40.574240286698142, -15.757931738293095 ], [ -40.667843805893824, -15.717655857850431 ], [ -40.761667051660396, -15.739914159480776 ], [ -40.828716614765028, -15.681862399453777 ], [ -40.891042056595666, -15.69537558356302 ], [ -40.944820134819025, -15.673095309275581 ], [ -41.029645577507978, -15.73543173743478 ], [ -41.159020582443247, -15.780190039923411 ], [ -41.333164876195724, -15.717655857850389 ], [ -41.359949545186197, -15.494457607148604 ], [ -41.801841651886804, -15.110595287817915 ], [ -41.940214459899664, -15.172931715977143 ], [ -42.087596057318706, -15.181918532726186 ], [ -42.176914908382201, -15.106090893114839 ], [ -42.261740351071154, -15.106090893114839 ], [ -42.431391236449088, -15.034547921635692 ], [ -42.578542120968706, -14.931957585690924 ], [ -42.632320199192037, -14.940944402439996 ], [ -42.891070209062576, -14.749013242774652 ], [ -42.953615377464104, -14.677470271295505 ], [ -43.230371979818415, -14.637414117423731 ], [ -43.386740393986543, -14.699750545582901 ], [ -43.449296548716575, -14.780082579897353 ], [ -43.493846110962892, -14.789069396646426 ], [ -43.708046558587114, -14.735522031322503 ], [ -43.824150078641111, -14.695246150879854 ], [ -43.864414972755213, -14.659694391711156 ], [ -43.879499201846272, -14.624604058341333 ], [ -43.860822443321297, -14.534362355680116 ], [ -43.800068046472461, -14.369897017375024 ], [ -43.781391287947486, -14.342892621813633 ], [ -43.837641290093273, -14.315888226252241 ], [ -44.158947454693873, -14.271349650334486 ], [ -44.212494820017781, -14.240082559297988 ], [ -44.319820263565049, -14.244345254773094 ], [ -44.35986543110829, -14.271349650334457 ], [ -44.560794393851239, -14.347177289945833 ], [ -44.837540009876989, -14.516828175323752 ], [ -44.882320285022729, -14.597138236981039 ], [ -45.101025127350027, -14.717746151738154 ], [ -45.225895737582221, -14.74002642602558 ], [ -45.319718983348793, -14.856129946079577 ], [ -45.462596186064758, -14.940944402439996 ], [ -45.551915037128254, -14.93644000773692 ], [ -45.654516359401555, -15.043556711041788 ], [ -45.712568119428539, -15.123866772699188 ], [ -45.766115484752476, -15.146147046986613 ], [ -45.926768567052761, -15.128371167402264 ], [ -45.967044447495425, -15.186422927429248 ], [ -46.074150164471803, -15.248979082159337 ], [ -45.976042250573073, -14.985504951014832 ], [ -46.025096207522409, -14.869401430960849 ] ] ], [ [ [ -38.907218738731331, -13.401056648385349 ], [ -38.903615222968824, -13.473500498805151 ], [ -38.93781566372661, -13.532233411201901 ], [ -38.977641104698932, -13.523444348366638 ], [ -38.993164786931686, -13.484069346864658 ], [ -39.022190666945278, -13.44559522430319 ], [ -39.00666698471241, -13.415448738778196 ], [ -38.980124014949865, -13.398354011563526 ], [ -38.907218738731331, -13.401056648385349 ] ] ], [ [ [ -38.601216529792623, -12.992672843744288 ], [ -38.743874005937755, -13.097064937570281 ], [ -38.783018294540284, -13.118664059487969 ], [ -38.787072249773132, -13.05498729924642 ], [ -38.684921366970116, -12.974896964159996 ], [ -38.668046366326337, -12.880172839452769 ], [ -38.614499001002457, -12.924052235657825 ], [ -38.600315650852053, -12.972414053909006 ], [ -38.601216529792623, -12.992672843744288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-CE", "NAME_1": "Ceará" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.538468800958583, -7.391754661336265 ], [ -40.533964406255507, -7.324694111903099 ], [ -40.583018363204872, -7.195319106967844 ], [ -40.511695118296615, -7.0033879473025 ], [ -40.440141160488906, -6.905082279489932 ], [ -40.417871872530043, -6.81147876029425 ], [ -40.48041704093157, -6.735431394112013 ], [ -40.614296440569916, -6.708646725121511 ], [ -40.708119686336488, -6.659603754500665 ], [ -40.721391171217761, -6.570262930780089 ], [ -40.770664854738015, -6.494457263825836 ], [ -40.797449523728517, -6.378353743771839 ], [ -40.806216613906713, -6.253483133539646 ], [ -40.891042056595666, -6.012267304025499 ], [ -40.891042056595666, -5.905172573377655 ], [ -40.92232013396071, -5.681974322675813 ], [ -40.917815739257634, -5.60164228836139 ], [ -40.949093816622678, -5.418500191531322 ], [ -41.025141182804902, -5.364952826207414 ], [ -41.069690745051219, -5.306901066180416 ], [ -41.060692941973599, -5.168517271838979 ], [ -41.11447102019693, -5.065926935894225 ], [ -41.12324909670366, -5.007875175867227 ], [ -41.185794265105216, -4.914051930100655 ], [ -41.181289870402111, -4.811439621498806 ], [ -41.226070145547851, -4.726625165138387 ], [ -41.2438460251322, -4.615026039787466 ], [ -41.23484822205458, -4.539198400176133 ], [ -41.141244702858899, -4.427379548254322 ], [ -41.074195139754295, -4.324767239652473 ], [ -41.118744702000583, -4.177396628561979 ], [ -41.181289870402111, -4.123849263238057 ], [ -41.230343827351504, -4.043517228923633 ], [ -41.283891192675441, -3.811332161472734 ], [ -41.355445150483121, -3.708719852870885 ], [ -41.382218833145089, -3.592616332816888 ], [ -41.449268396249693, -3.436478631548212 ], [ -41.426768395391377, -3.320375111494201 ], [ -41.377714438442013, -3.271332140873369 ], [ -41.257117510013472, -3.079181254637149 ], [ -41.268598223342053, -2.916056248414421 ], [ -41.194572341611945, -2.886129489460302 ], [ -40.875518374362855, -2.869693941958332 ], [ -40.474572314146116, -2.795668060228223 ], [ -40.23539994174115, -2.813224213241682 ], [ -39.964718779071745, -2.861608004149886 ], [ -39.771897726794322, -2.985797462012329 ], [ -39.609442886612783, -3.056219827979987 ], [ -39.511115246143135, -3.125521588436129 ], [ -39.352714361194387, -3.197306259143247 ], [ -39.014324455707708, -3.390116325092123 ], [ -38.895968738302173, -3.501715450443044 ], [ -38.686272685381027, -3.653832155464585 ], [ -38.475895480090145, -3.717486943049067 ], [ -38.361824430816796, -3.87634925379669 ], [ -38.271824427383564, -3.948111951846712 ], [ -38.048845903252612, -4.216332176922251 ], [ -37.795720893596666, -4.404198395026285 ], [ -37.626289734789623, -4.592064613130319 ], [ -37.301391040755107, -4.713111981029158 ], [ -37.230748948216586, -4.824271653238313 ], [ -37.54281561051161, -4.93204753625588 ], [ -37.596593688734941, -4.958832205246381 ], [ -37.721464298967135, -5.061422541191149 ], [ -37.913395458632465, -5.463280466677062 ], [ -38.047494584841701, -5.614913773242662 ], [ -38.078541949307322, -5.686478717378904 ], [ -38.078541949307322, -5.762306356990237 ], [ -38.127815632827577, -5.878387904387154 ], [ -38.301740200009135, -6.074823458755574 ], [ -38.368789763113767, -6.092599338339923 ], [ -38.413570038259479, -6.061332247303426 ], [ -38.493891086245384, -6.128370824079497 ], [ -38.511666965829704, -6.181918189403419 ], [ -38.578716528934336, -6.262250223717842 ], [ -38.605490211596305, -6.396129623356174 ], [ -38.5251691636104, -6.382858138474916 ], [ -38.578716528934336, -6.480944079716593 ], [ -38.650039773842593, -6.690870845537162 ], [ -38.61877268280611, -6.757931394970328 ], [ -38.650039773842593, -6.838241456627657 ], [ -38.725867413453955, -6.891788821951579 ], [ -38.730371808157031, -7.0033879473025 ], [ -38.685822245910714, -7.030172616293001 ], [ -38.676824442833095, -7.15954762122827 ], [ -38.600996803221761, -7.222103775958345 ], [ -38.547449437897825, -7.235594987410494 ], [ -38.533947240117129, -7.293646747437492 ], [ -38.582990210737989, -7.427526147075838 ], [ -38.632274880586806, -7.458793238112335 ], [ -38.636768288961321, -7.534620877723682 ], [ -38.699093730791986, -7.619457306741182 ], [ -38.819690659220527, -7.663995882658938 ], [ -38.864240221466815, -7.704271763101588 ], [ -38.96707225663954, -7.847137979489005 ], [ -38.998339347676051, -7.820375283155585 ], [ -39.074166987287384, -7.856146768895158 ], [ -39.109949459355505, -7.753314733722434 ], [ -39.243817872665318, -7.681991488814162 ], [ -39.306374027395378, -7.623939728787164 ], [ -39.350923589641695, -7.548112089175831 ], [ -39.534065686471763, -7.47656911769667 ], [ -39.654442888329413, -7.373978781751916 ], [ -39.846593774565633, -7.347194112761414 ], [ -39.953699491542011, -7.360465597642673 ], [ -40.065298616892932, -7.405245872788413 ], [ -40.172393347540776, -7.418517357669671 ], [ -40.261723184932805, -7.391754661336265 ], [ -40.538468800958583, -7.391754661336265 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-SE", "NAME_1": "Sergipe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -37.411869560594539, -11.497323665607496 ], [ -37.574093687876626, -11.539181577360537 ], [ -37.632145447903639, -11.521163998548232 ], [ -37.658919130565607, -11.556957456944886 ], [ -37.797291938578496, -11.525668393251294 ], [ -37.851070016801827, -11.440853936890889 ], [ -37.966942823956401, -11.400797783019115 ], [ -38.007218704399037, -11.356017507873389 ], [ -37.980445021737097, -11.239913987819392 ], [ -38.060766069722973, -11.168590742911121 ], [ -38.109820026672338, -11.030228921226794 ], [ -38.17686958977697, -10.980944251377977 ], [ -38.234921349803955, -10.896349521588448 ], [ -38.243919152881574, -10.824806550109301 ], [ -38.190141074658214, -10.717689846804376 ], [ -38.109820026672338, -10.708703030055304 ], [ -38.011723099102113, -10.75348330520103 ], [ -37.971447218659478, -10.75348330520103 ], [ -37.81529853106224, -10.677413966361712 ], [ -37.784020453697195, -10.62837099574088 ], [ -37.824065621240436, -10.548038961426414 ], [ -37.83756781902116, -10.422948624623359 ], [ -37.784020453697195, -10.306845104569391 ], [ -37.779516058994119, -10.079362185735349 ], [ -37.900123973751192, -9.949767454229232 ], [ -37.900123973751192, -9.913995968489587 ], [ -37.962669142152777, -9.873939814617813 ], [ -38.029498978686462, -9.726569203527362 ], [ -37.993716506618341, -9.646237169212938 ], [ -38.042990190138653, -9.605983261427355 ], [ -37.975720900463131, -9.512138043003716 ], [ -37.938147656842318, -9.537802106482729 ], [ -37.425591484946096, -9.778314810970059 ], [ -37.196098067988487, -9.88587096741675 ], [ -37.019240151085654, -9.956974485754131 ], [ -36.956464269784703, -10.013663941041671 ], [ -36.939589269140953, -10.083646853867549 ], [ -36.879746737561277, -10.153629766693442 ], [ -36.776694975817662, -10.22359070686224 ], [ -36.699065578325076, -10.257340708149698 ], [ -36.647539697453283, -10.253978891615205 ], [ -36.607044090439757, -10.292892467318381 ], [ -36.579819968307476, -10.37142274375158 ], [ -36.538423482353323, -10.410578018682727 ], [ -36.482623919677877, -10.410578018682727 ], [ -36.443018205276417, -10.43195741402954 ], [ -36.431768204847259, -10.452875383577506 ], [ -36.414673477632647, -10.491349506138917 ], [ -36.635839257553812, -10.589896873179455 ], [ -36.768367338781246, -10.671569239576257 ], [ -36.937798497588261, -10.820521881977101 ], [ -37.093266032815762, -11.05475040653721 ], [ -37.125444989121434, -11.084896892062204 ], [ -37.182815596778681, -11.068483317217328 ], [ -37.18124455179688, -11.187487228006972 ], [ -37.315123951435226, -11.376056571137823 ], [ -37.356069997919064, -11.403939872982733 ], [ -37.354949392407576, -11.35039250765881 ], [ -37.331548512608634, -11.309896900645271 ], [ -37.32074895164979, -11.266698656809893 ], [ -37.321869557161307, -11.215172775938086 ], [ -37.359223074211229, -11.252526292988009 ], [ -37.438423516685617, -11.393832450722158 ], [ -37.411869560594539, -11.497323665607496 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-AL", "NAME_1": "Alagoas" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -37.975720900463131, -9.512138043003716 ], [ -38.221199425452397, -9.34767270469861 ], [ -38.154589315489545, -9.266681490671544 ], [ -38.092044147087989, -9.186349456357121 ], [ -37.966942823956401, -9.141788907782271 ], [ -37.81529853106224, -8.976642417107428 ], [ -37.806289741656087, -8.896332355450099 ], [ -37.748248967957636, -8.860538897053431 ], [ -37.681419131423894, -8.976642417107428 ], [ -37.627641053200563, -8.981146811810504 ], [ -37.520546322552718, -8.945375326070931 ], [ -37.471492365603325, -9.003427086097929 ], [ -37.391171317617449, -9.043483239969703 ], [ -37.18124455179688, -9.239896821681043 ], [ -36.998322181537702, -9.306957371114194 ], [ -36.940270421510689, -9.35600034173504 ], [ -36.90449893577113, -9.289181491529845 ], [ -36.833164704534312, -9.262396822539344 ], [ -36.578699362795987, -9.293444187004965 ], [ -36.440315568454565, -9.208849457215422 ], [ -36.346492322687993, -9.199840667809269 ], [ -36.266171274702117, -9.141788907782271 ], [ -36.239397592040149, -9.088241542458348 ], [ -36.123294071986152, -9.016698570979202 ], [ -36.118789677283075, -8.967655600358356 ], [ -36.016199341338307, -8.896332355450099 ], [ -35.971419066192567, -8.905099445628281 ], [ -35.882319941699961, -8.873832354591784 ], [ -35.801768180814662, -8.869547686459597 ], [ -35.721447132828786, -8.918590657080429 ], [ -35.609848007477865, -8.865043291756507 ], [ -35.471464213136443, -8.833776200720024 ], [ -35.391143165150567, -8.882819171340856 ], [ -35.301824314087071, -8.887323566043932 ], [ -35.151740079846178, -8.913866535806477 ], [ -35.157815519531056, -8.930521809879323 ], [ -35.340968602689685, -9.230668305704 ], [ -35.597015975738344, -9.540724469875457 ], [ -35.763964224294426, -9.702487171358712 ], [ -35.830123894786965, -9.719142445431558 ], [ -35.890867305307268, -9.686974475454448 ], [ -35.84766906147189, -9.772470084184604 ], [ -35.885473017992126, -9.847616571426215 ], [ -36.054893190470608, -10.075780642629979 ], [ -36.223643196907915, -10.225172738172589 ], [ -36.39824891645921, -10.484142474613989 ], [ -36.411520401340482, -10.489987201399458 ], [ -36.414673477632647, -10.491349506138917 ], [ -36.431768204847259, -10.452875383577506 ], [ -36.443018205276417, -10.43195741402954 ], [ -36.482623919677877, -10.410578018682727 ], [ -36.538423482353323, -10.410578018682727 ], [ -36.579819968307476, -10.37142274375158 ], [ -36.607044090439757, -10.292892467318381 ], [ -36.647539697453283, -10.253978891615205 ], [ -36.699065578325076, -10.257340708149698 ], [ -36.776694975817662, -10.22359070686224 ], [ -36.879746737561277, -10.153629766693442 ], [ -36.939589269140953, -10.083646853867549 ], [ -36.956464269784703, -10.013663941041671 ], [ -37.019240151085654, -9.956974485754131 ], [ -37.196098067988487, -9.88587096741675 ], [ -37.425591484946096, -9.778314810970059 ], [ -37.938147656842318, -9.537802106482729 ], [ -37.975720900463131, -9.512138043003716 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-RN", "NAME_1": "Rio Grande do Norte" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -38.5251691636104, -6.382858138474916 ], [ -38.605490211596305, -6.396129623356174 ], [ -38.578716528934336, -6.262250223717842 ], [ -38.511666965829704, -6.181918189403419 ], [ -38.493891086245384, -6.128370824079497 ], [ -38.413570038259479, -6.061332247303426 ], [ -38.368789763113767, -6.092599338339923 ], [ -38.301740200009135, -6.074823458755574 ], [ -38.127815632827577, -5.878387904387154 ], [ -38.078541949307322, -5.762306356990237 ], [ -38.078541949307322, -5.686478717378904 ], [ -38.047494584841701, -5.614913773242662 ], [ -37.913395458632465, -5.463280466677062 ], [ -37.721464298967135, -5.061422541191149 ], [ -37.596593688734941, -4.958832205246381 ], [ -37.54281561051161, -4.93204753625588 ], [ -37.230748948216586, -4.824271653238313 ], [ -37.174718672641688, -4.912469898790306 ], [ -36.954893224802873, -4.936771657529846 ], [ -36.861069979036301, -4.96669841648395 ], [ -36.747449369233294, -5.050611993903757 ], [ -36.59061952926632, -5.097655452729569 ], [ -36.386768203130629, -5.084361995191216 ], [ -36.161768194547562, -5.093832210396229 ], [ -35.979966429799873, -5.054457208894192 ], [ -35.549324323528452, -5.129361996907832 ], [ -35.481593608054084, -5.166056334245113 ], [ -35.392494483561478, -5.250870790605518 ], [ -35.235444917023642, -5.566771681562443 ], [ -35.14184139782796, -5.917103726176549 ], [ -35.095490077700418, -6.185301978594993 ], [ -34.988164634153151, -6.393646713105213 ], [ -34.971740072979713, -6.503905506373755 ], [ -35.047347986020185, -6.534733144268486 ], [ -35.257274751840754, -6.507948475277985 ], [ -35.306317722461586, -6.53022874956541 ], [ -35.4669708047619, -6.463168200132245 ], [ -35.667899767504849, -6.427396714392671 ], [ -35.721447132828786, -6.44539232054791 ], [ -35.926869503946278, -6.467672594835335 ], [ -36.252669076921421, -6.414125229511413 ], [ -36.292944957364057, -6.307030498863568 ], [ -36.382274794756114, -6.302526104160492 ], [ -36.493873920107035, -6.378353743771839 ], [ -36.516143208065898, -6.480944079716593 ], [ -36.444819963157641, -6.623832268761092 ], [ -36.533919087650247, -6.63732348021324 ], [ -36.529414692947171, -6.735431394112013 ], [ -36.502641010285203, -6.784694091303734 ], [ -36.574194968092911, -6.927582280348247 ], [ -36.659020410781864, -6.931844975823353 ], [ -36.712567776105772, -6.976625250969079 ], [ -36.770619536132784, -6.931844975823353 ], [ -36.743845853470816, -6.824750245175508 ], [ -36.792899810420209, -6.76669848514851 ], [ -36.944774816213766, -6.748922605564161 ], [ -36.989324378460083, -6.708646725121511 ], [ -37.042871743783991, -6.753427000267237 ], [ -37.154470869134911, -6.784694091303734 ], [ -37.217016037536467, -6.824750245175508 ], [ -37.270574389188909, -6.739913816158008 ], [ -37.337623952293541, -6.699879634943329 ], [ -37.516041927849642, -6.68186205613101 ], [ -37.507274837671446, -6.55248705119574 ], [ -37.431216485160689, -6.516715565456167 ], [ -37.395664725991992, -6.391844955223988 ], [ -37.176740157093803, -6.114879612627348 ], [ -37.176740157093803, -6.052543184468149 ], [ -37.261565599782756, -6.025780488134728 ], [ -37.422449394982493, -6.097103733042999 ], [ -37.475996760306401, -6.083832248161727 ], [ -37.641143250981258, -6.128370824079497 ], [ -37.757246771035256, -6.177413794700328 ], [ -37.793018256774815, -6.293517314754325 ], [ -37.842072213724208, -6.342582258032266 ], [ -38.002714309695961, -6.431901109095762 ], [ -38.05627266134843, -6.44539232054791 ], [ -38.132320027530653, -6.521219960159243 ], [ -38.239414758178498, -6.48544847441967 ], [ -38.283964320424815, -6.503444080574909 ], [ -38.435839326218371, -6.414125229511413 ], [ -38.5251691636104, -6.382858138474916 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-PE", "NAME_1": "Pernambuco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -41.368716635364422, -8.713168285962922 ], [ -41.212567947767155, -8.632858224305608 ], [ -41.159020582443247, -8.548021795288108 ], [ -41.083192942831886, -8.525741521000683 ], [ -41.016143379727282, -8.418646790352838 ], [ -40.92232013396071, -8.431918275234111 ], [ -40.886768374792013, -8.351608213576768 ], [ -40.833221009468105, -8.36487969845804 ], [ -40.748395566779152, -8.244491510271843 ], [ -40.592016166282491, -8.12390556817185 ], [ -40.542973195661659, -8.030082322405278 ], [ -40.529470997880964, -7.905189739516004 ], [ -40.547466604036174, -7.833646768036857 ], [ -40.659065729387095, -7.762323523128586 ], [ -40.618789848944459, -7.637233186325531 ], [ -40.690343806752139, -7.512340603436257 ], [ -40.690343806752139, -7.427526147075838 ], [ -40.645574517934961, -7.400741478085337 ], [ -40.538468800958583, -7.391754661336265 ], [ -40.261723184932805, -7.391754661336265 ], [ -40.172393347540776, -7.418517357669671 ], [ -40.065298616892932, -7.405245872788413 ], [ -39.953699491542011, -7.360465597642673 ], [ -39.846593774565633, -7.347194112761414 ], [ -39.654442888329413, -7.373978781751916 ], [ -39.534065686471763, -7.47656911769667 ], [ -39.350923589641695, -7.548112089175831 ], [ -39.306374027395378, -7.623939728787164 ], [ -39.243817872665318, -7.681991488814162 ], [ -39.109949459355505, -7.753314733722434 ], [ -39.074166987287384, -7.856146768895158 ], [ -38.998339347676051, -7.820375283155585 ], [ -38.96707225663954, -7.847137979489005 ], [ -38.864240221466815, -7.704271763101588 ], [ -38.819690659220527, -7.663995882658938 ], [ -38.699093730791986, -7.619457306741182 ], [ -38.64554636546805, -7.677487094111086 ], [ -38.591999000144142, -7.690780551649439 ], [ -38.587494605441066, -7.740043248841161 ], [ -38.5251691636104, -7.766827917831677 ], [ -38.449121797428177, -7.735538854138085 ], [ -38.417843720063132, -7.748832311676438 ], [ -38.355518278232495, -7.699767368398511 ], [ -38.304223110260125, -7.78234061373594 ], [ -38.301740200009135, -7.829362099904657 ], [ -38.257190637762847, -7.851642374192082 ], [ -38.225923546726335, -7.811366493749432 ], [ -38.167871786699351, -7.806862099046356 ], [ -38.150095907115002, -7.771332312534753 ], [ -38.087539752384913, -7.820375283155585 ], [ -38.057393266859918, -7.75781912842551 ], [ -37.975940627033992, -7.771332312534753 ], [ -37.895619579048116, -7.686495883517253 ], [ -37.793018256774815, -7.637233186325531 ], [ -37.708192814085862, -7.548112089175831 ], [ -37.551824399917763, -7.47656911769667 ], [ -37.435720879863766, -7.347194112761414 ], [ -37.382173514539829, -7.351698507464491 ], [ -37.346391042471708, -7.297931415569693 ], [ -37.25279850960456, -7.271146746579191 ], [ -37.149966474431835, -7.347194112761414 ], [ -37.016098061122051, -7.400741478085337 ], [ -37.016098061122051, -7.507858181390262 ], [ -37.199240157952119, -7.574896758166332 ], [ -37.212522629161924, -7.646220003074589 ], [ -37.167973066915607, -7.762323523128586 ], [ -37.22602482694262, -7.815870888452508 ], [ -37.342117360668055, -7.9987932587117 ], [ -37.212522629161924, -7.958737104839926 ], [ -37.149966474431835, -7.976512984424275 ], [ -37.127697186472972, -8.164181448614499 ], [ -37.06086734993923, -8.231000298819694 ], [ -36.962539709469581, -8.284547664143616 ], [ -36.833164704534312, -8.226495904116618 ], [ -36.783891021014057, -8.222233208641498 ], [ -36.627742333416819, -8.0836296877292 ], [ -36.659020410781864, -8.012306442820929 ], [ -36.569690573389835, -7.922965619100353 ], [ -36.449093644961295, -7.90969413421908 ], [ -36.422319962299326, -7.824879677858675 ], [ -36.337494519610374, -7.811366493749432 ], [ -36.266171274702117, -7.824879677858675 ], [ -36.217117317752724, -7.780099402712935 ], [ -36.16784363423244, -7.824879677858675 ], [ -36.123294071986152, -7.780099402712935 ], [ -36.074240115036758, -7.824879677858675 ], [ -35.966914671489491, -7.815870888452508 ], [ -35.931373898649355, -7.838151162739933 ], [ -35.886593623503614, -7.732177037603591 ], [ -35.837539666554221, -7.744327916973361 ], [ -35.712669056322056, -7.708776157804678 ], [ -35.681390978957012, -7.713280552507754 ], [ -35.556289655825395, -7.655228792480756 ], [ -35.498248882126944, -7.454288843409245 ], [ -35.373367285566218, -7.458793238112335 ], [ -35.270546236722026, -7.382745871930098 ], [ -35.065343592175424, -7.409530540920613 ], [ -34.980518149486443, -7.512340603436257 ], [ -34.858569902646991, -7.54969412048618 ], [ -34.860822099998529, -7.594913848773672 ], [ -34.854746660313651, -7.634288850275709 ], [ -34.872972979368313, -7.692120883731818 ], [ -34.878597979582878, -7.747470006936979 ], [ -34.836970780729303, -7.871681437456516 ], [ -34.834718583377764, -7.971569136579433 ], [ -34.890518146053239, -8.092177051336506 ], [ -34.966565512235462, -8.407616516494571 ], [ -35.151740079846178, -8.913866535806477 ], [ -35.301824314087071, -8.887323566043932 ], [ -35.391143165150567, -8.882819171340856 ], [ -35.471464213136443, -8.833776200720024 ], [ -35.609848007477865, -8.865043291756507 ], [ -35.721447132828786, -8.918590657080429 ], [ -35.801768180814662, -8.869547686459597 ], [ -35.882319941699961, -8.873832354591784 ], [ -35.971419066192567, -8.905099445628281 ], [ -36.016199341338307, -8.896332355450099 ], [ -36.118789677283075, -8.967655600358356 ], [ -36.123294071986152, -9.016698570979202 ], [ -36.239397592040149, -9.088241542458348 ], [ -36.266171274702117, -9.141788907782271 ], [ -36.346492322687993, -9.199840667809269 ], [ -36.440315568454565, -9.208849457215422 ], [ -36.578699362795987, -9.293444187004965 ], [ -36.833164704534312, -9.262396822539344 ], [ -36.90449893577113, -9.289181491529845 ], [ -36.940270421510689, -9.35600034173504 ], [ -36.998322181537702, -9.306957371114194 ], [ -37.18124455179688, -9.239896821681043 ], [ -37.391171317617449, -9.043483239969703 ], [ -37.471492365603325, -9.003427086097929 ], [ -37.520546322552718, -8.945375326070931 ], [ -37.627641053200563, -8.981146811810504 ], [ -37.681419131423894, -8.976642417107428 ], [ -37.748248967957636, -8.860538897053431 ], [ -37.806289741656087, -8.896332355450099 ], [ -37.81529853106224, -8.976642417107428 ], [ -37.966942823956401, -9.141788907782271 ], [ -38.092044147087989, -9.186349456357121 ], [ -38.154589315489545, -9.266681490671544 ], [ -38.221199425452397, -9.34767270469861 ], [ -38.283074427812721, -9.203663910142609 ], [ -38.307595913123151, -9.102194179709358 ], [ -38.294324428241907, -9.043021814170856 ], [ -38.335940640766921, -9.01017269182401 ], [ -38.43291696282563, -9.003646812668819 ], [ -38.482190646345913, -8.959547689892815 ], [ -38.483992404227138, -8.877655596925138 ], [ -38.504690647204228, -8.834896806231512 ], [ -38.544296361605689, -8.831073563898173 ], [ -38.57759592342282, -8.860538897053431 ], [ -38.619223122276424, -8.896090656222128 ], [ -38.667815653426942, -8.896090656222128 ], [ -38.705399883376288, -8.879896807948114 ], [ -38.834994614882476, -8.800245926003356 ], [ -39.098249019456034, -8.714970043844119 ], [ -39.25664990440481, -8.640263009744331 ], [ -39.332697270587033, -8.565797674872442 ], [ -39.441824472015526, -8.559271795717166 ], [ -39.600895523005477, -8.619564766767255 ], [ -39.682798602301716, -8.683021800437942 ], [ -39.687742450146573, -8.749401197501371 ], [ -39.738367452077739, -8.791237136597275 ], [ -39.834893334666162, -8.809013016181552 ], [ -39.884617457656759, -8.853353838185598 ], [ -39.887770533948924, -8.923995930724061 ], [ -39.909149929295722, -8.980245932869821 ], [ -39.948744657368621, -9.022103844622904 ], [ -40.004994659514409, -9.058095056933354 ], [ -40.077669222833606, -9.08824154245832 ], [ -40.212218788513155, -9.101513027339593 ], [ -40.273192911932853, -9.144952970402969 ], [ -40.319774944959818, -9.293004733863199 ], [ -40.412697311785791, -9.396957374547355 ], [ -40.564792044150238, -9.460172708990143 ], [ -40.685839412049063, -9.47210386178898 ], [ -40.743891172076076, -9.423038918511111 ], [ -40.690343806752139, -9.342728856853768 ], [ -40.703615291633412, -9.217616547393618 ], [ -40.850996889052453, -9.150797697188352 ], [ -40.855490297426996, -9.092745937161425 ], [ -40.891042056595666, -9.03469417713444 ], [ -40.891042056595666, -8.856056475007449 ], [ -40.980371893987723, -8.815780594564785 ], [ -41.003992500357526, -8.781349440907604 ], [ -41.100968822416235, -8.775724440693025 ], [ -41.105473217119311, -8.717672680666027 ], [ -41.159020582443247, -8.708663891259846 ], [ -41.324167073118076, -8.735448560250362 ], [ -41.368716635364422, -8.713168285962922 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-PB", "NAME_1": "Paraíba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -38.699093730791986, -7.619457306741182 ], [ -38.636768288961321, -7.534620877723682 ], [ -38.632274880586806, -7.458793238112335 ], [ -38.582990210737989, -7.427526147075838 ], [ -38.533947240117129, -7.293646747437492 ], [ -38.547449437897825, -7.235594987410494 ], [ -38.600996803221761, -7.222103775958345 ], [ -38.676824442833095, -7.15954762122827 ], [ -38.685822245910714, -7.030172616293001 ], [ -38.730371808157031, -7.0033879473025 ], [ -38.725867413453955, -6.891788821951579 ], [ -38.650039773842593, -6.838241456627657 ], [ -38.61877268280611, -6.757931394970328 ], [ -38.650039773842593, -6.690870845537162 ], [ -38.578716528934336, -6.480944079716593 ], [ -38.5251691636104, -6.382858138474916 ], [ -38.435839326218371, -6.414125229511413 ], [ -38.283964320424815, -6.503444080574909 ], [ -38.239414758178498, -6.48544847441967 ], [ -38.132320027530653, -6.521219960159243 ], [ -38.05627266134843, -6.44539232054791 ], [ -38.002714309695961, -6.431901109095762 ], [ -37.842072213724208, -6.342582258032266 ], [ -37.793018256774815, -6.293517314754325 ], [ -37.757246771035256, -6.177413794700328 ], [ -37.641143250981258, -6.128370824079497 ], [ -37.475996760306401, -6.083832248161727 ], [ -37.422449394982493, -6.097103733042999 ], [ -37.261565599782756, -6.025780488134728 ], [ -37.176740157093803, -6.052543184468149 ], [ -37.176740157093803, -6.114879612627348 ], [ -37.395664725991992, -6.391844955223988 ], [ -37.431216485160689, -6.516715565456167 ], [ -37.507274837671446, -6.55248705119574 ], [ -37.516041927849642, -6.68186205613101 ], [ -37.337623952293541, -6.699879634943329 ], [ -37.270574389188909, -6.739913816158008 ], [ -37.217016037536467, -6.824750245175508 ], [ -37.154470869134911, -6.784694091303734 ], [ -37.042871743783991, -6.753427000267237 ], [ -36.989324378460083, -6.708646725121511 ], [ -36.944774816213766, -6.748922605564161 ], [ -36.792899810420209, -6.76669848514851 ], [ -36.743845853470816, -6.824750245175508 ], [ -36.770619536132784, -6.931844975823353 ], [ -36.712567776105772, -6.976625250969079 ], [ -36.659020410781864, -6.931844975823353 ], [ -36.574194968092911, -6.927582280348247 ], [ -36.502641010285203, -6.784694091303734 ], [ -36.529414692947171, -6.735431394112013 ], [ -36.533919087650247, -6.63732348021324 ], [ -36.444819963157641, -6.623832268761092 ], [ -36.516143208065898, -6.480944079716593 ], [ -36.493873920107035, -6.378353743771839 ], [ -36.382274794756114, -6.302526104160492 ], [ -36.292944957364057, -6.307030498863568 ], [ -36.252669076921421, -6.414125229511413 ], [ -35.926869503946278, -6.467672594835335 ], [ -35.721447132828786, -6.44539232054791 ], [ -35.667899767504849, -6.427396714392671 ], [ -35.4669708047619, -6.463168200132245 ], [ -35.306317722461586, -6.53022874956541 ], [ -35.257274751840754, -6.507948475277985 ], [ -35.047347986020185, -6.534733144268486 ], [ -34.971740072979713, -6.503905506373755 ], [ -34.929673420984386, -6.785155517102595 ], [ -34.879949297993818, -6.908224369453549 ], [ -34.875895342761027, -7.002948494160734 ], [ -34.833817704437166, -7.024327889507546 ], [ -34.805472976793396, -7.288483173021774 ], [ -34.816492264323102, -7.394896751299868 ], [ -34.857669023706393, -7.53328054564129 ], [ -34.858569902646991, -7.54969412048618 ], [ -34.980518149486443, -7.512340603436257 ], [ -35.065343592175424, -7.409530540920613 ], [ -35.270546236722026, -7.382745871930098 ], [ -35.373367285566218, -7.458793238112335 ], [ -35.498248882126944, -7.454288843409245 ], [ -35.556289655825395, -7.655228792480756 ], [ -35.681390978957012, -7.713280552507754 ], [ -35.712669056322056, -7.708776157804678 ], [ -35.837539666554221, -7.744327916973361 ], [ -35.886593623503614, -7.732177037603591 ], [ -35.931373898649355, -7.838151162739933 ], [ -35.966914671489491, -7.815870888452508 ], [ -36.074240115036758, -7.824879677858675 ], [ -36.123294071986152, -7.780099402712935 ], [ -36.16784363423244, -7.824879677858675 ], [ -36.217117317752724, -7.780099402712935 ], [ -36.266171274702117, -7.824879677858675 ], [ -36.337494519610374, -7.811366493749432 ], [ -36.422319962299326, -7.824879677858675 ], [ -36.449093644961295, -7.90969413421908 ], [ -36.569690573389835, -7.922965619100353 ], [ -36.659020410781864, -8.012306442820929 ], [ -36.627742333416819, -8.0836296877292 ], [ -36.783891021014057, -8.222233208641498 ], [ -36.833164704534312, -8.226495904116618 ], [ -36.962539709469581, -8.284547664143616 ], [ -37.06086734993923, -8.231000298819694 ], [ -37.127697186472972, -8.164181448614499 ], [ -37.149966474431835, -7.976512984424275 ], [ -37.212522629161924, -7.958737104839926 ], [ -37.342117360668055, -7.9987932587117 ], [ -37.22602482694262, -7.815870888452508 ], [ -37.167973066915607, -7.762323523128586 ], [ -37.212522629161924, -7.646220003074589 ], [ -37.199240157952119, -7.574896758166332 ], [ -37.016098061122051, -7.507858181390262 ], [ -37.016098061122051, -7.400741478085337 ], [ -37.149966474431835, -7.347194112761414 ], [ -37.25279850960456, -7.271146746579191 ], [ -37.346391042471708, -7.297931415569693 ], [ -37.382173514539829, -7.351698507464491 ], [ -37.435720879863766, -7.347194112761414 ], [ -37.551824399917763, -7.47656911769667 ], [ -37.708192814085862, -7.548112089175831 ], [ -37.793018256774815, -7.637233186325531 ], [ -37.895619579048116, -7.686495883517253 ], [ -37.975940627033992, -7.771332312534753 ], [ -38.057393266859918, -7.75781912842551 ], [ -38.087539752384913, -7.820375283155585 ], [ -38.150095907115002, -7.771332312534753 ], [ -38.167871786699351, -7.806862099046356 ], [ -38.225923546726335, -7.811366493749432 ], [ -38.257190637762847, -7.851642374192082 ], [ -38.301740200009135, -7.829362099904657 ], [ -38.304223110260125, -7.78234061373594 ], [ -38.355518278232495, -7.699767368398511 ], [ -38.417843720063132, -7.748832311676438 ], [ -38.449121797428177, -7.735538854138085 ], [ -38.5251691636104, -7.766827917831677 ], [ -38.587494605441066, -7.740043248841161 ], [ -38.591999000144142, -7.690780551649439 ], [ -38.64554636546805, -7.677487094111086 ], [ -38.699093730791986, -7.619457306741182 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-SC", "NAME_1": "Santa Catarina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.669921938602499, -26.258005381026635 ], [ -53.663396059447336, -26.257763681798622 ], [ -53.516245174927704, -26.289052745492228 ], [ -53.458193414900734, -26.289052745492199 ], [ -53.355372366056514, -26.239987802214294 ], [ -53.279544726445167, -26.262268076501719 ], [ -53.123396038847943, -26.369604506377534 ], [ -52.99379032101325, -26.351608900222303 ], [ -52.913469273027374, -26.365100111674394 ], [ -52.815372345457149, -26.33831544268395 ], [ -52.672495142741198, -26.378371596555716 ], [ -52.641217065376168, -26.400651870843092 ], [ -52.542900411235053, -26.400651870843141 ], [ -52.458074968546086, -26.431918961879639 ], [ -52.199094245776138, -26.44991456803487 ], [ -52.007174072439341, -26.583793967673216 ], [ -51.873294672800995, -26.601569847257558 ], [ -51.502714824680112, -26.601569847257558 ], [ -51.422393776694236, -26.699897487727206 ], [ -51.284020968681347, -26.650854517106367 ], [ -51.239471406435086, -26.606074241960584 ], [ -51.279516573978299, -26.498979511312712 ], [ -51.288525363384451, -26.423151871701464 ], [ -51.248249482941787, -26.347104505519212 ], [ -51.074094202860806, -26.23550538016832 ], [ -50.944719197925508, -26.244492196917378 ], [ -50.900169635679219, -26.280263682656951 ], [ -50.77057490417306, -26.22223389528704 ], [ -50.735023145004391, -26.231000985465229 ], [ -50.645693307612333, -26.07035888949347 ], [ -50.542872258768142, -26.02579834091862 ], [ -50.45804681607919, -26.02579834091862 ], [ -50.369167418157474, -26.085871585397726 ], [ -50.315169613363224, -26.052583009909121 ], [ -50.190299003131059, -26.052583009909121 ], [ -49.949094159945446, -26.012307129466471 ], [ -49.882275309740265, -26.039069825799885 ], [ -49.752669591905601, -26.123906254817314 ], [ -49.721622227439951, -26.159677740556958 ], [ -49.596520904308335, -26.22223389528704 ], [ -49.489415187331957, -26.22223389528704 ], [ -49.45364370159237, -26.16866455730603 ], [ -49.29749501399516, -26.106130375233022 ], [ -49.212669571306208, -26.030302735621696 ], [ -49.109848522462016, -25.994531249882129 ], [ -48.944691045458626, -26.007802734763388 ], [ -48.917917362796658, -25.97651367106981 ], [ -48.650169549848528, -25.97225097559469 ], [ -48.585372184095462, -25.986203612845699 ], [ -48.619341911953825, -26.179475104593394 ], [ -48.678964716962525, -26.225815438392431 ], [ -48.713846310090048, -26.226958016561014 ], [ -48.748266477418667, -26.268574229086028 ], [ -48.700794551779722, -26.348225111030729 ], [ -48.651520868259468, -26.406496597628575 ], [ -48.65804674741463, -26.519216328491041 ], [ -48.676492793040154, -26.612380394544971 ], [ -48.677844111451122, -26.702819851119898 ], [ -48.61574938251988, -26.878095736712453 ], [ -48.593469108232398, -27.058095743578804 ], [ -48.568266470552317, -27.123354535130829 ], [ -48.554094106730417, -27.196018112121465 ], [ -48.595490592684484, -27.2639795404952 ], [ -48.571869986314709, -27.372876029024326 ], [ -48.64252306518182, -27.55781988373559 ], [ -48.605619987602211, -27.825117257213435 ], [ -48.620693230364736, -28.075539630047501 ], [ -48.648367791967303, -28.207177818662899 ], [ -48.693148067113043, -28.310229580406485 ], [ -48.797320434368146, -28.442746675305386 ], [ -48.799572631719684, -28.575263770204174 ], [ -49.023671761362095, -28.698574321783155 ], [ -49.271391497374395, -28.871147570553831 ], [ -49.499995021719883, -29.075449336159807 ], [ -49.712844150933222, -29.324531376911544 ], [ -49.8152147603071, -29.271203738158505 ], [ -49.86877311195957, -29.21765637283459 ], [ -49.953598554648522, -29.195376098547115 ], [ -50.078699877780139, -29.244419069168003 ], [ -50.033919602634398, -29.320466435350227 ], [ -50.051915208789637, -29.356018194518924 ], [ -50.168018728843663, -29.284694949610639 ], [ -50.163525320469091, -29.195376098547165 ], [ -50.069691088373986, -29.092763789945316 ], [ -50.007145919972459, -29.101552852780515 ], [ -49.944820478141793, -28.949897573557898 ], [ -49.953598554648522, -28.793518173061251 ], [ -49.846492837672145, -28.695432231819552 ], [ -49.797449867051284, -28.623867287683332 ], [ -49.699122226581636, -28.597104591349918 ], [ -49.708120029659256, -28.530263768487643 ], [ -49.736695470202449, -28.511367283391792 ], [ -49.839066079576355, -28.465246676163645 ], [ -49.938525311886025, -28.448151948949075 ], [ -50.068790209433359, -28.444328706615693 ], [ -50.141025319610776, -28.452876070223034 ], [ -50.154966970533252, -28.473794039770993 ], [ -50.233046807496123, -28.468630465355268 ], [ -50.446566102750609, -28.422048432328303 ], [ -50.577523138996241, -28.38627694658873 ], [ -50.736143750515879, -28.235983972105508 ], [ -50.965867880372912, -27.959458082650634 ], [ -51.117292446696183, -27.807802803427933 ], [ -51.190417449485665, -27.781237861008321 ], [ -51.286723605503198, -27.716220768684309 ], [ -51.406419654991112, -27.613169006940751 ], [ -51.487641581917615, -27.564126036319912 ], [ -51.530169659711817, -27.568850157593872 ], [ -51.582365706624842, -27.547470762247087 ], [ -51.644691148455451, -27.499768123708598 ], [ -51.701622302970947, -27.488078670137682 ], [ -51.75359862331311, -27.51191900307839 ], [ -51.873294672800995, -27.509458065484495 ], [ -51.912900387202455, -27.472544001576331 ], [ -51.984223632110712, -27.376699271357644 ], [ -52.059589845923213, -27.31348393691492 ], [ -52.1392407278679, -27.283315478732838 ], [ -52.192348640050056, -27.280854541138964 ], [ -52.228570565259943, -27.292543994709881 ], [ -52.264792490469816, -27.277251025376501 ], [ -52.304398204871291, -27.283095752161898 ], [ -52.348046888177009, -27.276350146435902 ], [ -52.414646011811286, -27.236293992564114 ], [ -52.51072145492941, -27.230449265778645 ], [ -52.636492944102201, -27.259475145792123 ], [ -52.741566190297917, -27.245742235112033 ], [ -52.826391632986883, -27.189492232966188 ], [ -52.900197788146116, -27.176682173883854 ], [ -52.952844274529411, -27.178923384906845 ], [ -52.994240760483564, -27.163388716345494 ], [ -53.030473672021984, -27.137526898952693 ], [ -53.070749552464648, -27.141789594427806 ], [ -53.103598674811508, -27.154401899596394 ], [ -53.134195599806787, -27.140449262345427 ], [ -53.184370162267669, -27.14945805175158 ], [ -53.227117966632761, -27.173737837833983 ], [ -53.263339891842634, -27.163388716345494 ], [ -53.304747364125333, -27.097690471651809 ], [ -53.347495168490411, -27.080595744437176 ], [ -53.398120170421592, -27.082397502318429 ], [ -53.456622369918932, -27.103315471866381 ], [ -53.48969121883664, -27.133242230820429 ], [ -53.498018855873042, -27.172177779180771 ], [ -53.540096494196931, -27.197819870002689 ], [ -53.615693420908883, -27.209970749372474 ], [ -53.659572817113968, -27.200522506824541 ], [ -53.671492983584315, -27.169475142358927 ], [ -53.718525456081579, -27.157543989559997 ], [ -53.800417549049271, -27.16475102108496 ], [ -53.851723703350189, -27.156203657477654 ], [ -53.935417554199105, -27.161147505322504 ], [ -53.915620190162599, -27.159565474012084 ], [ -53.838221505569436, -27.12109135145073 ], [ -53.758570623624792, -26.978225135063269 ], [ -53.717393864241558, -26.882819857986362 ], [ -53.727072819688885, -26.804751007352024 ], [ -53.75339606288054, -26.748720731777155 ], [ -53.744617986373783, -26.666608912238587 ], [ -53.718075016611238, -26.443168962308732 ], [ -53.710867985086338, -26.351828626793122 ], [ -53.668570620191588, -26.288151866551573 ], [ -53.669921938602499, -26.258005381026635 ] ] ], [ [ [ -48.464775255666893, -27.436333062694985 ], [ -48.414820419776902, -27.399638725357704 ], [ -48.377917342197293, -27.451406305457454 ], [ -48.409645859032651, -27.566367247342839 ], [ -48.496723499073084, -27.706992252707323 ], [ -48.48592393811424, -27.767065497186366 ], [ -48.554544546200759, -27.812307198130952 ], [ -48.54217394026, -27.574694884379255 ], [ -48.505270862680447, -27.495505428233514 ], [ -48.464775255666893, -27.436333062694985 ] ] ], [ [ [ -48.603148063679726, -26.413703629153474 ], [ -48.66569323208131, -26.289733897861879 ], [ -48.539691030009067, -26.170246588616294 ], [ -48.497624378013768, -26.218850106095431 ], [ -48.531143666401817, -26.313112805003755 ], [ -48.568046743981427, -26.379733901295197 ], [ -48.58447130515475, -26.401552749783775 ], [ -48.603148063679726, -26.413703629153474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BR-RS", "NAME_1": "Rio Grande do Sul" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.935417554199105, -27.161147505322504 ], [ -53.851723703350189, -27.156203657477654 ], [ -53.800417549049271, -27.16475102108496 ], [ -53.718525456081579, -27.157543989559997 ], [ -53.671492983584315, -27.169475142358927 ], [ -53.659572817113968, -27.200522506824541 ], [ -53.615693420908883, -27.209970749372474 ], [ -53.540096494196931, -27.197819870002689 ], [ -53.498018855873042, -27.172177779180771 ], [ -53.48969121883664, -27.133242230820429 ], [ -53.456622369918932, -27.103315471866381 ], [ -53.398120170421592, -27.082397502318429 ], [ -53.347495168490411, -27.080595744437176 ], [ -53.304747364125333, -27.097690471651809 ], [ -53.263339891842634, -27.163388716345494 ], [ -53.227117966632761, -27.173737837833983 ], [ -53.184370162267669, -27.14945805175158 ], [ -53.134195599806787, -27.140449262345427 ], [ -53.103598674811508, -27.154401899596394 ], [ -53.070749552464648, -27.141789594427806 ], [ -53.030473672021984, -27.137526898952693 ], [ -52.994240760483564, -27.163388716345494 ], [ -52.952844274529411, -27.178923384906845 ], [ -52.900197788146116, -27.176682173883854 ], [ -52.826391632986883, -27.189492232966188 ], [ -52.741566190297917, -27.245742235112033 ], [ -52.636492944102201, -27.259475145792123 ], [ -52.51072145492941, -27.230449265778645 ], [ -52.414646011811286, -27.236293992564114 ], [ -52.348046888177009, -27.276350146435902 ], [ -52.304398204871291, -27.283095752161898 ], [ -52.264792490469816, -27.277251025376501 ], [ -52.228570565259943, -27.292543994709881 ], [ -52.192348640050056, -27.280854541138964 ], [ -52.1392407278679, -27.283315478732838 ], [ -52.059589845923213, -27.31348393691492 ], [ -51.984223632110712, -27.376699271357644 ], [ -51.912900387202455, -27.472544001576331 ], [ -51.873294672800995, -27.509458065484495 ], [ -51.75359862331311, -27.51191900307839 ], [ -51.701622302970947, -27.488078670137682 ], [ -51.644691148455451, -27.499768123708598 ], [ -51.582365706624842, -27.547470762247087 ], [ -51.530169659711817, -27.568850157593872 ], [ -51.487641581917615, -27.564126036319912 ], [ -51.406419654991112, -27.613169006940751 ], [ -51.286723605503198, -27.716220768684309 ], [ -51.190417449485665, -27.781237861008321 ], [ -51.117292446696183, -27.807802803427933 ], [ -50.965867880372912, -27.959458082650634 ], [ -50.736143750515879, -28.235983972105508 ], [ -50.577523138996241, -28.38627694658873 ], [ -50.446566102750609, -28.422048432328303 ], [ -50.233046807496123, -28.468630465355268 ], [ -50.154966970533252, -28.473794039770993 ], [ -50.141025319610776, -28.452876070223034 ], [ -50.068790209433359, -28.444328706615693 ], [ -49.938525311886025, -28.448151948949075 ], [ -49.839066079576355, -28.465246676163645 ], [ -49.736695470202449, -28.511367283391792 ], [ -49.708120029659256, -28.530263768487643 ], [ -49.699122226581636, -28.597104591349918 ], [ -49.797449867051284, -28.623867287683332 ], [ -49.846492837672145, -28.695432231819552 ], [ -49.953598554648522, -28.793518173061251 ], [ -49.944820478141793, -28.949897573557898 ], [ -50.007145919972459, -29.101552852780515 ], [ -50.069691088373986, -29.092763789945316 ], [ -50.163525320469091, -29.195376098547165 ], [ -50.168018728843663, -29.284694949610639 ], [ -50.051915208789637, -29.356018194518924 ], [ -50.033919602634398, -29.320466435350227 ], [ -50.078699877780139, -29.244419069168003 ], [ -49.953598554648522, -29.195376098547115 ], [ -49.86877311195957, -29.21765637283459 ], [ -49.8152147603071, -29.271203738158505 ], [ -49.712844150933222, -29.324531376911544 ], [ -49.745923986179491, -29.363225226043852 ], [ -50.033249436593223, -29.801074363840215 ], [ -50.29941521823099, -30.425669114229116 ], [ -50.620040230461882, -30.897729679111798 ], [ -50.748074903314773, -31.068039744202359 ], [ -50.921318318126595, -31.258388872557354 ], [ -51.151723600353364, -31.480466517747693 ], [ -51.460417459785361, -31.702324436367149 ], [ -51.79814818555937, -31.900320049388839 ], [ -51.920316158969712, -31.989638900452327 ], [ -52.03912231584556, -32.114751209912484 ], [ -52.069049074799679, -32.063005602469801 ], [ -52.04316528474979, -31.977488021082557 ], [ -52.059589845923213, -31.913371807699221 ], [ -52.063193361685677, -31.830359109220041 ], [ -51.995023193069557, -31.815044167229566 ], [ -51.893092036837459, -31.867690653612875 ], [ -51.841115716495324, -31.831919167873302 ], [ -51.80332274630365, -31.796609107932575 ], [ -51.680693347094461, -31.774548560216033 ], [ -51.446245095963462, -31.557414762870536 ], [ -51.272089815882481, -31.47686300198523 ], [ -51.174223601211679, -31.339841512383273 ], [ -51.157568327138819, -31.266716509593778 ], [ -51.161391569472158, -31.118906445361525 ], [ -51.106042446267026, -31.081333201740719 ], [ -50.980040244194782, -31.094143260823131 ], [ -50.954398153372864, -31.052065622499249 ], [ -50.965417440902598, -31.005505562129372 ], [ -50.940895955592168, -30.903794132468136 ], [ -50.770124464702775, -30.813354675893144 ], [ -50.689341990918024, -30.704216488136105 ], [ -50.716346386479415, -30.425888840799999 ], [ -50.685068309114371, -30.413518234859346 ], [ -50.614865669717602, -30.456958177922701 ], [ -50.582016547370756, -30.438940599110381 ], [ -50.546464788202059, -30.316772625700047 ], [ -50.563570501745232, -30.253557291257323 ], [ -50.646143747082647, -30.236902017184477 ], [ -50.931898152514549, -30.374362959928192 ], [ -51.025040245911413, -30.368737959713613 ], [ -51.040344201573333, -30.26052262355428 ], [ -51.17939816195593, -30.211018227134588 ], [ -51.233615693321042, -30.121479649500209 ], [ -51.249820527923589, -30.06004410028163 ], [ -51.297973605932356, -30.034841462601477 ], [ -51.295040256211081, -30.14105728696579 ], [ -51.281768771329808, -30.244109048709397 ], [ -51.157348600567929, -30.364255537667624 ], [ -51.187495086092923, -30.411958176206085 ], [ -51.246667451631424, -30.467527025982122 ], [ -51.287624484443825, -30.591277030702805 ], [ -51.283120089740748, -30.751479673532806 ], [ -51.316419651557879, -30.702656429482843 ], [ -51.359167455922972, -30.674531428409963 ], [ -51.376492896037007, -30.84686297795264 ], [ -51.459066141374421, -30.912802921874295 ], [ -51.485169657995186, -30.977600287627368 ], [ -51.463570536077498, -31.052746774868979 ], [ -51.50631834044259, -31.104492382311669 ], [ -51.716915272304334, -31.243777055593711 ], [ -51.926842038124903, -31.338940633442661 ], [ -51.97252319221127, -31.383720908588394 ], [ -51.994792480170133, -31.489914760295619 ], [ -52.02697143647579, -31.599052948052659 ], [ -52.11989380330175, -31.694897678271346 ], [ -52.193469245561559, -31.885466533197217 ], [ -52.191447761109444, -31.967600325392873 ], [ -52.167146002369904, -32.088427966720836 ], [ -52.127320561397553, -32.16785912209464 ], [ -52.190096442698518, -32.220725335048826 ], [ -52.274691172488048, -32.32377709679244 ], [ -52.341740735592666, -32.439638917618467 ], [ -52.508469257577858, -32.875246844391839 ], [ -52.652247339234421, -33.137820096595718 ], [ -52.762945585644729, -33.266294222590368 ], [ -52.920896031123192, -33.401975380109938 ], [ -53.370665335389901, -33.742178029806389 ], [ -53.397669730951279, -33.737234181961547 ], [ -53.463598688544394, -33.709768360601309 ], [ -53.518947811749555, -33.677138964825346 ], [ -53.531318417690201, -33.655539842907658 ], [ -53.537624570274517, -33.622932419788782 ], [ -53.530417538749589, -33.500303020579594 ], [ -53.531318417690201, -33.17088894551344 ], [ -53.511971493124051, -33.108574490011335 ], [ -53.482945613110545, -33.068518336139562 ], [ -53.395197807028865, -33.01024684954168 ], [ -53.310141651440475, -32.926992451834529 ], [ -53.214066208322365, -32.821018326698187 ], [ -53.125648236199481, -32.736643323479534 ], [ -53.157365766706292, -32.680173594762884 ], [ -53.231171921865524, -32.625505623927474 ], [ -53.362799124152332, -32.581164801923499 ], [ -53.489471492265736, -32.503315677860044 ], [ -53.601740783657846, -32.402966552938281 ], [ -53.653717103999966, -32.298794185683171 ], [ -53.701200015967544, -32.186294181391631 ], [ -53.746650457154473, -32.097414783469901 ], [ -53.761723699916971, -32.056919176456368 ], [ -53.80604254926385, -32.039824449241756 ], [ -53.876464915231495, -31.994604720954264 ], [ -53.920575024336031, -31.952307356059492 ], [ -53.985141677189688, -31.928225323890835 ], [ -54.100344318303073, -31.901440654900334 ], [ -54.220490807261285, -31.855100321101339 ], [ -54.369893889132442, -31.745083227060768 ], [ -54.477669772150008, -31.622673554422462 ], [ -54.530997410903055, -31.541902066966273 ], [ -54.587697852519128, -31.485190639021653 ], [ -54.895941272480812, -31.391147666684198 ], [ -55.036115838374911, -31.279109088191518 ], [ -55.091245235009183, -31.313979694990479 ], [ -55.173598753775721, -31.279548541333284 ], [ -55.254589967802801, -31.225539750210508 ], [ -55.278891726542327, -31.184143264256356 ], [ -55.313322880199522, -31.141626172790708 ], [ -55.345490850176631, -31.093022655311636 ], [ -55.365969366582831, -31.046220895713788 ], [ -55.449674203760296, -30.964548529316986 ], [ -55.557219373878439, -30.875888857966139 ], [ -55.603120254535668, -30.850708192943074 ], [ -55.627191300375785, -30.85811297838179 ], [ -55.650592180174698, -30.892104678897219 ], [ -55.665214983466896, -30.924953801244065 ], [ -55.705941303379859, -30.946552923161761 ], [ -55.756346578740164, -30.987048530175294 ], [ -55.807872459611971, -31.036772653165869 ], [ -55.873570704305664, -31.069621775512708 ], [ -55.952089994410315, -31.080871775941866 ], [ -56.004747467122158, -31.079289744631517 ], [ -56.015547028081002, -31.059734079823023 ], [ -56.01846939147373, -30.991772651449253 ], [ -55.998891754008156, -30.837195008833831 ], [ -56.044792634665384, -30.777583190153571 ], [ -56.10576675808511, -30.71366473068403 ], [ -56.176200110381302, -30.628388848524764 ], [ -56.40727555864926, -30.447487962717688 ], [ -56.721594418295822, -30.186958167623018 ], [ -56.83274310417643, -30.107307285678324 ], [ -56.93714618433097, -30.101001133094016 ], [ -57.032771187978781, -30.109987949843088 ], [ -57.120518994060461, -30.144419103500283 ], [ -57.18689839112389, -30.264807291686473 ], [ -57.214342239827033, -30.283484050211435 ], [ -57.383773398634077, -30.28078141338959 ], [ -57.552292692171946, -30.26120377592401 ], [ -57.608993133788019, -30.187859046563631 ], [ -57.563773405500527, -30.1399147087972 ], [ -57.405141807652342, -30.033940583660858 ], [ -57.317394001570648, -29.939458158181644 ], [ -57.300749713826349, -29.856643213616252 ], [ -57.224691361315578, -29.782177878744378 ], [ -57.089240916695417, -29.716237934822715 ], [ -56.938717229312772, -29.59475111378211 ], [ -56.772450133126441, -29.41789319687927 ], [ -56.671419855834941, -29.287397586432505 ], [ -56.635868096666243, -29.203022583213851 ], [ -56.570620291442864, -29.138005490889896 ], [ -56.47589616673568, -29.092544063374433 ], [ -56.393322921398266, -28.997380485525483 ], [ -56.322450115960308, -28.852470812028862 ], [ -56.225473793901571, -28.737268170915485 ], [ -56.102844394692383, -28.651772562185336 ], [ -56.034223786605963, -28.580888770418831 ], [ -56.019589996985232, -28.524638768273064 ], [ -55.984950103085694, -28.488647555962608 ], [ -55.930271145921736, -28.472893160830374 ], [ -55.903717189830658, -28.443208101104233 ], [ -55.905518947711883, -28.399548431469995 ], [ -55.890445704949386, -28.37008309831473 ], [ -55.858947901013465, -28.35410897661162 ], [ -55.806070701730746, -28.359733976826199 ], [ -55.732044820000624, -28.386716399730496 ], [ -55.687275531183445, -28.38155282531477 ], [ -55.671971575521511, -28.344880460634577 ], [ -55.691549212987098, -28.302802822310696 ], [ -55.745997457251633, -28.255539636913994 ], [ -55.725518940845433, -28.204013756042194 ], [ -55.582422011558592, -28.121001057563006 ], [ -55.47666761299314, -28.089272540727663 ], [ -55.409848762787945, -28.037746659855856 ], [ -55.346391729117258, -27.956074293459054 ], [ -55.243790406843942, -27.898923412372667 ], [ -55.101594356497728, -27.866755442395558 ], [ -55.063790399977492, -27.835927804500827 ], [ -55.068964960721758, -27.796333076427906 ], [ -55.039950067036813, -27.767746649556173 ], [ -54.955794790389035, -27.74726813314998 ], [ -54.91012462263123, -27.708574284017672 ], [ -54.902697864535426, -27.651862856073052 ], [ -54.875693468974035, -27.599216369689749 ], [ -54.829122422275617, -27.550612852210676 ], [ -54.777146101933511, -27.532397519484562 ], [ -54.719775494276234, -27.544987851996098 ], [ -54.665766703153466, -27.526552792699107 ], [ -54.615372414121708, -27.477048396279415 ], [ -54.554848730172282, -27.454108942279341 ], [ -54.48441537787609, -27.457251032242951 ], [ -54.448193452666203, -27.446440484955566 ], [ -54.326915371867941, -27.423501030955492 ], [ -54.26009652166276, -27.38210454500134 ], [ -54.205197837927912, -27.289621631317146 ], [ -54.156374593877956, -27.253850145577573 ], [ -54.113846516083754, -27.274768115125532 ], [ -54.040040360924522, -27.243720750659918 ], [ -53.935417554199105, -27.161147505322504 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/bulgaria.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/bulgaria.geojson new file mode 100644 index 000000000000..781c30bbeb70 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/bulgaria.geojson @@ -0,0 +1,34 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "BG-02", "NAME_1": "Burgas" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.546411173000109, 41.901164449000092 ], [ 27.533182007000107, 41.908063253000094 ], [ 27.509462524000071, 41.933177999000108 ], [ 27.494321330000048, 41.942841492000028 ], [ 27.420837443000096, 41.973718160000018 ], [ 27.396859578000061, 41.989324443000058 ], [ 27.374845418000092, 42.008703105000038 ], [ 27.332470744000091, 42.057433981000074 ], [ 27.305288940000082, 42.077587789000049 ], [ 27.273352906000099, 42.091747132000094 ], [ 27.238212931000078, 42.097922465000082 ], [ 27.216405477000137, 42.095622864000049 ], [ 27.203796427000015, 42.088129781000092 ], [ 27.181575561000074, 42.065883077000066 ], [ 27.178991740000072, 42.06187815400007 ], [ 27.178164917000061, 42.058364156000025 ], [ 27.173824097000079, 42.057072246000061 ], [ 27.149587849000085, 42.061826478000071 ], [ 27.127211954000103, 42.062575786000068 ], [ 27.116049845000077, 42.061826478000071 ], [ 27.100650268000095, 42.071102397000075 ], [ 27.083700398000076, 42.07841461200006 ], [ 27.065510294000035, 42.082703756000043 ], [ 27.047903040892606, 42.082919649022585 ], [ 27.047889438646678, 42.083090522009968 ], [ 27.047062616346636, 42.093477484798086 ], [ 27.054917432693344, 42.130322780971539 ], [ 27.033936802441474, 42.157427070402946 ], [ 27.019880811650125, 42.184453844569248 ], [ 27.029389276194138, 42.21357351290726 ], [ 27.039931267713825, 42.234089056964365 ], [ 27.036623975815814, 42.25134898506758 ], [ 27.036623975815814, 42.274525864976681 ], [ 27.050059848982812, 42.291759955557495 ], [ 27.083339470839917, 42.306022651024477 ], [ 27.089540642586542, 42.337312729698681 ], [ 27.070317009722203, 42.364907945545212 ], [ 27.040137974188156, 42.379144801691211 ], [ 27.009028761767922, 42.379532376218151 ], [ 26.97967654763454, 42.387180487889168 ], [ 26.968721144065512, 42.404078680786483 ], [ 26.960556267557706, 42.421907050569928 ], [ 26.870019159156868, 42.47146474949858 ], [ 26.869192335957507, 42.491773587081354 ], [ 26.847798292756977, 42.501023668307596 ], [ 26.808524203828938, 42.536990465337681 ], [ 26.799945916171055, 42.546240546563922 ], [ 26.79798221230925, 42.559004625263242 ], [ 26.790747511788197, 42.57223379195591 ], [ 26.777621697883035, 42.580992946767083 ], [ 26.765529412752187, 42.606391912956383 ], [ 26.75746788903183, 42.634219671900325 ], [ 26.719434035352435, 42.689177557798018 ], [ 26.660832960772495, 42.695843818437424 ], [ 26.627656690803633, 42.683208930048067 ], [ 26.593136833697884, 42.675586655899451 ], [ 26.568848910648683, 42.684965929234238 ], [ 26.544457634811977, 42.696618963894025 ], [ 26.512831659353594, 42.704189562098577 ], [ 26.498982375036576, 42.73010529222546 ], [ 26.523993767598256, 42.746900133234533 ], [ 26.5553096855935, 42.755478420892359 ], [ 26.57825402240519, 42.770593777081103 ], [ 26.573189732220328, 42.795527656176375 ], [ 26.577427199205886, 42.814027817729595 ], [ 26.592310012297219, 42.828626409980814 ], [ 26.58073449110384, 42.854335436331326 ], [ 26.566368441950033, 42.881129666500897 ], [ 26.57577355280722, 42.903996487148163 ], [ 26.572362909021024, 42.923762722371691 ], [ 26.645226678168626, 42.937172757117025 ], [ 26.655458612225175, 42.922186591238187 ], [ 26.654631789025814, 42.899965724838296 ], [ 26.689668410069032, 42.888906969381082 ], [ 26.728735793422118, 42.894229641085019 ], [ 26.762325473641681, 42.908388983764553 ], [ 26.783822869629716, 42.938697211407145 ], [ 26.800979444945426, 42.946913763859072 ], [ 26.820823195434116, 42.946112779081488 ], [ 26.87756391804038, 42.949600938132789 ], [ 26.909189894398082, 42.93399465642824 ], [ 26.941952752317661, 42.93898143224726 ], [ 26.981536899608216, 42.940221665697266 ], [ 27.023704868384925, 42.928801174134833 ], [ 27.072074008908373, 42.93838715304463 ], [ 27.119099562294934, 42.953657537965 ], [ 27.176770460888065, 42.963010972878067 ], [ 27.236508416130505, 42.988409939067424 ], [ 27.284877556653896, 42.976705227564196 ], [ 27.324151645581935, 42.948334866261064 ], [ 27.355364210789674, 42.91143789324417 ], [ 27.376758253990204, 42.905830999800799 ], [ 27.400116001052595, 42.903893134360658 ], [ 27.445797967302326, 42.883739326408772 ], [ 27.495200636600089, 42.875677801789095 ], [ 27.583153924414034, 42.8919817163831 ], [ 27.620567661368455, 42.909396674117204 ], [ 27.647646112378141, 42.903221339892923 ], [ 27.673277621664909, 42.89177501080809 ], [ 27.697358840038419, 42.875135200329225 ], [ 27.718856235127134, 42.8549555530563 ], [ 27.744797803675681, 42.841080431216881 ], [ 27.772703077884728, 42.830409246689385 ], [ 27.8018485864431, 42.822063503927552 ], [ 27.831510858039621, 42.826585190853848 ], [ 27.852801547553383, 42.840744534432702 ], [ 27.876882765027574, 42.847798366901088 ], [ 27.883962436000047, 42.848374742000033 ], [ 27.883555535000085, 42.831935940000051 ], [ 27.891612175000034, 42.810370184000078 ], [ 27.897146030000044, 42.784002997000073 ], [ 27.897146030000044, 42.736232815000051 ], [ 27.894704623000052, 42.717474677000041 ], [ 27.89226321700005, 42.710516669000071 ], [ 27.841075066000087, 42.708319403000075 ], [ 27.787364129000082, 42.71515534100007 ], [ 27.743174675000034, 42.716050523000035 ], [ 27.732676629000082, 42.714504299000055 ], [ 27.725596550000034, 42.708482164000088 ], [ 27.719004754000082, 42.694566148000035 ], [ 27.715830925000034, 42.683742580000057 ], [ 27.716970248000052, 42.674505927000041 ], [ 27.724131707000083, 42.666978257000039 ], [ 27.739512566000087, 42.661078192000048 ], [ 27.712738477000073, 42.65766022300005 ], [ 27.669200066000087, 42.643703518000052 ], [ 27.646739129000082, 42.640570380000042 ], [ 27.628428582000083, 42.628973700000074 ], [ 27.630381707000083, 42.602728583000044 ], [ 27.641449415000068, 42.574774481000077 ], [ 27.65015709700009, 42.55805084800005 ], [ 27.634043816000087, 42.563706773000035 ], [ 27.540863477000073, 42.565497137000079 ], [ 27.51148522200009, 42.55304596600007 ], [ 27.498545769000089, 42.532456773000035 ], [ 27.491465691000087, 42.507757880000042 ], [ 27.48015384200005, 42.482896226000037 ], [ 27.46225019600007, 42.489569403000075 ], [ 27.45289147200009, 42.480129299000055 ], [ 27.453379754000082, 42.465236721000053 ], [ 27.465668165000068, 42.455633856000077 ], [ 27.462087436000047, 42.448716539000088 ], [ 27.461110873000052, 42.443548895000049 ], [ 27.465668165000068, 42.428290106000077 ], [ 27.46843509200005, 42.435777085000041 ], [ 27.469899936000047, 42.437079169000071 ], [ 27.469411655000044, 42.437201239000046 ], [ 27.465668165000068, 42.441351630000042 ], [ 27.472666863000086, 42.461859442000048 ], [ 27.503916863000086, 42.437323309000078 ], [ 27.514170769000089, 42.435126044000071 ], [ 27.526377800000034, 42.44367096600007 ], [ 27.534434441000087, 42.455267645000049 ], [ 27.544444207000083, 42.460028387000079 ], [ 27.562022332000083, 42.448187567000048 ], [ 27.571055535000085, 42.458482164000088 ], [ 27.579600457000083, 42.457220770000049 ], [ 27.587738477000073, 42.45148346600007 ], [ 27.595550977000073, 42.448187567000048 ], [ 27.609629754000082, 42.451157945000034 ], [ 27.619476759000065, 42.455877997000073 ], [ 27.629405144000089, 42.458644924000055 ], [ 27.643321160000085, 42.455633856000077 ], [ 27.642832879000082, 42.450506903000075 ], [ 27.641774936000047, 42.44953034100007 ], [ 27.639821811000047, 42.449774481000077 ], [ 27.63648522200009, 42.448187567000048 ], [ 27.642425977000073, 42.430894273000035 ], [ 27.652191602000073, 42.418524481000077 ], [ 27.66773522200009, 42.416083075000074 ], [ 27.691661004000082, 42.428290106000077 ], [ 27.693532748000052, 42.418890692000048 ], [ 27.699066602000073, 42.413885809000078 ], [ 27.707855665000068, 42.41274648600006 ], [ 27.719004754000082, 42.41469961100006 ], [ 27.719004754000082, 42.407212632000039 ], [ 27.713226759000065, 42.405951239000046 ], [ 27.698008660000085, 42.400376695000034 ], [ 27.705414259000065, 42.390611070000034 ], [ 27.709646030000044, 42.38812897300005 ], [ 27.719004754000082, 42.386704820000034 ], [ 27.709483269000089, 42.376776434000078 ], [ 27.70834394600007, 42.363104559000078 ], [ 27.714366082000083, 42.349188544000071 ], [ 27.725840691000087, 42.338934637000079 ], [ 27.740407748000052, 42.33429596600007 ], [ 27.752126498000052, 42.33539459800005 ], [ 27.764496290000068, 42.338324286000045 ], [ 27.780446811000047, 42.338934637000079 ], [ 27.780446811000047, 42.332709052000041 ], [ 27.774587436000047, 42.327215887000079 ], [ 27.774424675000034, 42.32172272300005 ], [ 27.779144727000073, 42.316310940000051 ], [ 27.787852410000085, 42.310980536000045 ], [ 27.762950066000087, 42.295599677000041 ], [ 27.751149936000047, 42.277044989000046 ], [ 27.755869988000086, 42.258490302000041 ], [ 27.780446811000047, 42.243353583000044 ], [ 27.776052280000044, 42.240668036000045 ], [ 27.775645379000082, 42.239650783000059 ], [ 27.773692254000082, 42.235907294000071 ], [ 27.809743686000047, 42.218410549000055 ], [ 27.815277540000068, 42.211981512000079 ], [ 27.81999759200005, 42.204657294000071 ], [ 27.83139082100007, 42.195013739000046 ], [ 27.844899936000047, 42.186102606000077 ], [ 27.856211785000085, 42.181301174000055 ], [ 27.854177280000044, 42.177923895000049 ], [ 27.851410352000073, 42.170111395000049 ], [ 27.84937584700009, 42.167059637000079 ], [ 27.879079623000052, 42.154242255000042 ], [ 27.886729363000086, 42.147365627000056 ], [ 27.90398196700005, 42.119818427000041 ], [ 27.957774285000085, 42.094305731000077 ], [ 27.964366082000083, 42.08462148600006 ], [ 27.972666863000086, 42.075384833000044 ], [ 27.986582879000082, 42.072088934000078 ], [ 27.982432488000086, 42.061102606000077 ], [ 27.987315300000034, 42.051743882000039 ], [ 27.996918165000068, 42.044012762000079 ], [ 28.007009311000047, 42.037909247000073 ], [ 28.00757897200009, 42.032904364000046 ], [ 28.006114129000082, 42.03156159100007 ], [ 28.003428582000083, 42.031480210000041 ], [ 28.000173373000052, 42.030462958000044 ], [ 28.011566602000073, 42.021389065000051 ], [ 28.019053582000083, 42.00844961100006 ], [ 28.020355665000068, 41.994574286000045 ], [ 28.013845248000052, 41.982652085000041 ], [ 28.016774936000047, 41.972560940000051 ], [ 27.981009969000098, 41.978524069000045 ], [ 27.965920451000102, 41.982141419000115 ], [ 27.91703454600011, 41.977903951000073 ], [ 27.903391968000108, 41.981056213000031 ], [ 27.876933634000096, 41.990719707000054 ], [ 27.852232300000111, 41.995448100000019 ], [ 27.843033895000104, 41.995758159 ], [ 27.824016968000137, 41.993484395000095 ], [ 27.819934529000108, 41.994698792000023 ], [ 27.815955445000043, 41.99513804200005 ], [ 27.81192468200004, 41.994698792000023 ], [ 27.807997274000087, 41.993484395000095 ], [ 27.804948364000069, 41.98343332900005 ], [ 27.804896687000053, 41.96989410400009 ], [ 27.802726278000137, 41.960049744000017 ], [ 27.818280884000075, 41.952866720000046 ], [ 27.815335327000071, 41.946794739000026 ], [ 27.802829631000066, 41.943074036 ], [ 27.789807170000131, 41.942686463000101 ], [ 27.776164592000043, 41.946122945000027 ], [ 27.723971395000063, 41.967594503000058 ], [ 27.687074422000109, 41.968602193000024 ], [ 27.609301392000106, 41.953486837000028 ], [ 27.606872599000042, 41.943513285 ], [ 27.603358602000071, 41.938629863000088 ], [ 27.598087606000064, 41.938604025000089 ], [ 27.590542847000108, 41.942893169000044 ], [ 27.582377970000067, 41.934883322000061 ], [ 27.572197713, 41.929844869000092 ], [ 27.55075199400008, 41.924212138000073 ], [ 27.55209558100006, 41.921835022000025 ], [ 27.554886108000119, 41.920336405000015 ], [ 27.557935018000137, 41.919070334000068 ], [ 27.560673869000084, 41.917675070000101 ], [ 27.55746993000011, 41.915504659000092 ], [ 27.55126875800002, 41.913101705000045 ], [ 27.548891642000086, 41.910879619000056 ], [ 27.56274092600006, 41.906435445000042 ], [ 27.546411173000109, 41.901164449000092 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-28", "NAME_1": "Yambol" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.047903040892606, 42.082919649022585 ], [ 27.046545044000084, 42.0829363000001 ], [ 27.022618856000094, 42.073892924000049 ], [ 27.000397990000067, 42.042809550000086 ], [ 26.981071004000086, 42.032861837 ], [ 26.967170044000113, 42.028495179000103 ], [ 26.958230021000105, 42.018237406000125 ], [ 26.950065144000064, 42.006170960000034 ], [ 26.938903035000038, 41.996223247000032 ], [ 26.930221395000075, 41.994517924000078 ], [ 26.911462850000078, 41.996791687 ], [ 26.901075887000076, 41.993484395000095 ], [ 26.890327189000061, 41.985422873000104 ], [ 26.881128784000055, 41.985526225000044 ], [ 26.871723674000094, 41.988135885000034 ], [ 26.860768269000118, 41.987903341000063 ], [ 26.850019572000093, 41.982864889000027 ], [ 26.837899180702607, 41.975219502777804 ], [ 26.827695353000109, 41.968783061000082 ], [ 26.819427124000072, 41.965656636000048 ], [ 26.808420044000087, 41.967878724000045 ], [ 26.78991988100006, 41.979945170000022 ], [ 26.780566447000126, 41.98343332900005 ], [ 26.768577515000061, 41.980771994000051 ], [ 26.746976766000103, 41.964493917000098 ], [ 26.736744833000103, 41.958964539000121 ], [ 26.717572876000105, 41.95731089300007 ], [ 26.62357344600008, 41.969041444000041 ], [ 26.605693400000092, 41.967413636000018 ], [ 26.589467, 41.958757834000053 ], [ 26.560631552000075, 41.935684306 ], [ 26.553293497000084, 41.931576030000073 ], [ 26.547092326000097, 41.926899312 ], [ 26.542958211000069, 41.920362244000032 ], [ 26.544715210000049, 41.916434835000061 ], [ 26.556807495000044, 41.910750427000025 ], [ 26.559804728000131, 41.907339783000097 ], [ 26.55897790500012, 41.901732890000076 ], [ 26.554740438000067, 41.89294789700007 ], [ 26.553603557000145, 41.887702739000062 ], [ 26.552894853000026, 41.88164332500007 ], [ 26.552312452957324, 41.881397407464362 ], [ 26.530711704181783, 41.87227651654797 ], [ 26.505493605145716, 41.881836656136727 ], [ 26.480275506109706, 41.89385142690179 ], [ 26.460018345370315, 41.911524767054345 ], [ 26.461568638082156, 41.949274399893625 ], [ 26.437280715032955, 41.974182441466496 ], [ 26.402967564401536, 41.979918525219716 ], [ 26.381573521201005, 41.958601996385028 ], [ 26.366794060897178, 41.940747789079182 ], [ 26.357905714876836, 41.956457424470557 ], [ 26.350360955993324, 41.987566636890733 ], [ 26.320078565873075, 42.004594020997274 ], [ 26.228507927798603, 42.013508206338656 ], [ 26.142828403108297, 42.045702623477268 ], [ 26.143345167945142, 42.07365957273106 ], [ 26.129599237314949, 42.100608832531577 ], [ 26.130116001252418, 42.157039495876006 ], [ 26.166392856645018, 42.180345566994276 ], [ 26.180862257687011, 42.217165024746066 ], [ 26.17373090995352, 42.265740871743787 ], [ 26.224993931224901, 42.357595729759112 ], [ 26.206597120660547, 42.367465929509024 ], [ 26.175384556352185, 42.368576971749803 ], [ 26.168563266981153, 42.405370591979192 ], [ 26.204943475161258, 42.407489326371319 ], [ 26.234192335607759, 42.422475491350838 ], [ 26.224063755238092, 42.453429674140125 ], [ 26.245251091964292, 42.463015652150602 ], [ 26.29589399561138, 42.44929555904281 ], [ 26.342402785060472, 42.460767727448626 ], [ 26.363176710636651, 42.500326036317517 ], [ 26.380023227589845, 42.512185777451634 ], [ 26.399040154879231, 42.519394640450287 ], [ 26.388394809672718, 42.53275299745286 ], [ 26.378162875616226, 42.548953559259303 ], [ 26.404517857113376, 42.562751165833618 ], [ 26.433249952723145, 42.567996324071089 ], [ 26.490920851316218, 42.564017239503983 ], [ 26.548798456383622, 42.577556464559166 ], [ 26.563991326938151, 42.592206732754505 ], [ 26.5795976086427, 42.603032945114307 ], [ 26.593860304109739, 42.610138455325455 ], [ 26.603472121441257, 42.619776109279996 ], [ 26.630240513189108, 42.61618459744119 ], [ 26.643366327094327, 42.621843166828683 ], [ 26.653598260251499, 42.633211982446994 ], [ 26.663726840621166, 42.662874254043572 ], [ 26.660832960772495, 42.695843818437424 ], [ 26.719434035352435, 42.689177557798018 ], [ 26.75746788903183, 42.634219671900325 ], [ 26.765529412752187, 42.606391912956383 ], [ 26.777621697883035, 42.580992946767083 ], [ 26.790747511788197, 42.57223379195591 ], [ 26.79798221230925, 42.559004625263242 ], [ 26.799945916171055, 42.546240546563922 ], [ 26.808524203828938, 42.536990465337681 ], [ 26.847798292756977, 42.501023668307596 ], [ 26.869192335957507, 42.491773587081354 ], [ 26.870019159156868, 42.47146474949858 ], [ 26.960556267557706, 42.421907050569928 ], [ 26.968721144065512, 42.404078680786483 ], [ 26.97967654763454, 42.387180487889168 ], [ 27.009028761767922, 42.379532376218151 ], [ 27.040137974188156, 42.379144801691211 ], [ 27.070317009722203, 42.364907945545212 ], [ 27.089540642586542, 42.337312729698681 ], [ 27.083339470839917, 42.306022651024477 ], [ 27.050059848982812, 42.291759955557495 ], [ 27.036623975815814, 42.274525864976681 ], [ 27.036623975815814, 42.25134898506758 ], [ 27.039931267713825, 42.234089056964365 ], [ 27.029389276194138, 42.21357351290726 ], [ 27.019880811650125, 42.184453844569248 ], [ 27.033936802441474, 42.157427070402946 ], [ 27.054917432693344, 42.130322780971539 ], [ 27.047062616346636, 42.093477484798086 ], [ 27.047889438646678, 42.083090522009968 ], [ 27.047903040892606, 42.082919649022585 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-26", "NAME_1": "Haskovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.552894853000026, 41.88164332500007 ], [ 26.552053263000118, 41.874447734000043 ], [ 26.547815796000094, 41.856283468000115 ], [ 26.539547567000028, 41.837990011000059 ], [ 26.526111694000093, 41.824244080000099 ], [ 26.478362671000099, 41.813288676000028 ], [ 26.37552657100008, 41.816621806000043 ], [ 26.334185425000044, 41.78954335499999 ], [ 26.320026082000084, 41.765462138000132 ], [ 26.316305379000084, 41.743758036000045 ], [ 26.323230021000143, 41.723681743000085 ], [ 26.333358602000118, 41.713036397000096 ], [ 26.294911336000069, 41.710323385000052 ], [ 26.273930705000055, 41.714896749 ], [ 26.261011597000049, 41.723061626000018 ], [ 26.234449910000137, 41.745825094000011 ], [ 26.226181681000099, 41.749674988000052 ], [ 26.2118156330001, 41.750475973000064 ], [ 26.189904826000117, 41.73468882300007 ], [ 26.13512780800005, 41.733396912000032 ], [ 26.108359415000081, 41.727893372000025 ], [ 26.081487671000076, 41.711511943000076 ], [ 26.07404626500005, 41.709134827000028 ], [ 26.067224975000101, 41.70885060600007 ], [ 26.06050704000009, 41.707300314000051 ], [ 26.053685750000113, 41.701512553000057 ], [ 26.048104695000092, 41.68908437099999 ], [ 26.047484578000137, 41.674614970000064 ], [ 26.0502751060001, 41.660455627000019 ], [ 26.055029337000093, 41.648750916000026 ], [ 26.05948958500008, 41.643776770000059 ], [ 26.059009230391666, 41.643970038086763 ], [ 26.052394646595644, 41.64663137483808 ], [ 26.009813266668914, 41.635753486534156 ], [ 25.998857863099886, 41.619061998312532 ], [ 25.980564406222356, 41.619372057574367 ], [ 25.964234653206688, 41.612602444147456 ], [ 25.95689659989813, 41.591983548202165 ], [ 25.916899040558235, 41.562708849333887 ], [ 25.873077427181499, 41.578160102306867 ], [ 25.827602165607459, 41.614772854483647 ], [ 25.820884229923251, 41.634358222553885 ], [ 25.81716352687522, 41.654822088868286 ], [ 25.782230258619506, 41.664640610875495 ], [ 25.746986932001278, 41.651695665022885 ], [ 25.73489464687043, 41.632006944165141 ], [ 25.714740838019225, 41.621051541495433 ], [ 25.697067497866726, 41.623351142141473 ], [ 25.680220981812852, 41.63043081303158 ], [ 25.658516880249806, 41.623144436566463 ], [ 25.639086540911137, 41.620353909505297 ], [ 25.605600212579702, 41.633660590563807 ], [ 25.61138797407574, 41.661204129566897 ], [ 25.634022250726275, 41.700917467167358 ], [ 25.607770622915893, 41.740940864029653 ], [ 25.597125277709381, 41.753214016313791 ], [ 25.585756462990332, 41.761378892821597 ], [ 25.567152947750344, 41.761482244709782 ], [ 25.55009972522214, 41.76977631332619 ], [ 25.53159956187028, 41.786700343745849 ], [ 25.509688754732224, 41.785925198289249 ], [ 25.492222121053999, 41.771378281982095 ], [ 25.470828077853469, 41.7699830189012 ], [ 25.449227329077985, 41.784013170371509 ], [ 25.408402948337368, 41.797784939423366 ], [ 25.398894483793356, 41.811866766837795 ], [ 25.400238070930186, 41.83140045806465 ], [ 25.389282668260535, 41.846645006361939 ], [ 25.370162388183644, 41.846024888737588 ], [ 25.35310916475612, 41.838480129854076 ], [ 25.330371535318079, 41.817551173747631 ], [ 25.299985793309702, 41.809696357400924 ], [ 25.247172479326423, 41.817034409810162 ], [ 25.210792271146374, 41.878477688294652 ], [ 25.222574497015387, 41.903695787330719 ], [ 25.2737341646, 41.929172267885804 ], [ 25.307530552193214, 41.972012031130305 ], [ 25.310424432041884, 41.987876695253249 ], [ 25.299055617322836, 41.996868394960416 ], [ 25.294301384601226, 42.005756740980814 ], [ 25.299985793309702, 42.017022202912301 ], [ 25.29223432795186, 42.052937323998265 ], [ 25.282312453157147, 42.087095444998738 ], [ 25.283966098656492, 42.133242499241931 ], [ 25.29337120861436, 42.133449204816941 ], [ 25.308460728180023, 42.131356309745854 ], [ 25.329544712118775, 42.124509181953158 ], [ 25.365098097099462, 42.11298533850254 ], [ 25.386802198662508, 42.114018867276855 ], [ 25.398171014280877, 42.113088691290045 ], [ 25.406025832426224, 42.109238797032845 ], [ 25.41708458788338, 42.101564846040787 ], [ 25.428556756289254, 42.099652818123047 ], [ 25.439615512645787, 42.099937038963162 ], [ 25.449847445802959, 42.098670966192117 ], [ 25.459459263134477, 42.134276028016245 ], [ 25.473928664176469, 42.166522121998298 ], [ 25.506794874883553, 42.176288967162066 ], [ 25.540487908789942, 42.167323105876619 ], [ 25.588857049313333, 42.192747911386959 ], [ 25.622963495269062, 42.180216375785108 ], [ 25.624410435193397, 42.162827257371987 ], [ 25.622550083219721, 42.145489814003668 ], [ 25.607563918240203, 42.12998688418736 ], [ 25.63257531080194, 42.124586697218263 ], [ 25.663684523222173, 42.135774644784021 ], [ 25.691589797431163, 42.118333849527517 ], [ 25.732930942109249, 42.086423652329643 ], [ 25.756598748433476, 42.061515610756828 ], [ 25.803520949032531, 42.078310451765901 ], [ 25.845068801084267, 42.108567003464429 ], [ 25.8561275574408, 42.120478421441987 ], [ 25.869976840858499, 42.127299709913643 ], [ 25.878451775728877, 42.123217270760392 ], [ 25.949765252164639, 42.108076077049304 ], [ 26.002165154997897, 42.065210476282459 ], [ 26.028003370758938, 42.037150174241106 ], [ 26.057045525630485, 42.019606025297833 ], [ 26.099006788832241, 42.035858263048397 ], [ 26.142828403108297, 42.045702623477268 ], [ 26.228507927798603, 42.013508206338656 ], [ 26.320078565873075, 42.004594020997274 ], [ 26.350360955993324, 41.987566636890733 ], [ 26.357905714876836, 41.956457424470557 ], [ 26.366794060897178, 41.940747789079182 ], [ 26.381573521201005, 41.958601996385028 ], [ 26.402967564401536, 41.979918525219716 ], [ 26.437280715032955, 41.974182441466496 ], [ 26.461568638082156, 41.949274399893625 ], [ 26.460018345370315, 41.911524767054345 ], [ 26.480275506109706, 41.89385142690179 ], [ 26.505493605145716, 41.881836656136727 ], [ 26.530711704181783, 41.87227651654797 ], [ 26.552312452957324, 41.881397407464362 ], [ 26.552894853000026, 41.88164332500007 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-05", "NAME_1": "Vidin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.575190064000083, 44.061394348000064 ], [ 22.592966757000113, 44.063926494000057 ], [ 22.604748982000018, 44.079377747000038 ], [ 22.604645630000107, 44.088162740000129 ], [ 22.598134399000116, 44.109298401000061 ], [ 22.597100871000038, 44.119065247000023 ], [ 22.599064575000085, 44.130330709000091 ], [ 22.609399861000099, 44.159941305000032 ], [ 22.607952921000106, 44.159992981000059 ], [ 22.605989217000058, 44.163145244000091 ], [ 22.604852335000146, 44.16846791600004 ], [ 22.606195923000115, 44.174565735 ], [ 22.608573039000078, 44.175857646000068 ], [ 22.624799438000082, 44.189396872000131 ], [ 22.63999231000011, 44.207328593000014 ], [ 22.648777303000088, 44.213994853000102 ], [ 22.691640373000098, 44.22843453899999 ], [ 22.906435995000095, 44.122889303000065 ], [ 22.942609497000035, 44.111468811000051 ], [ 22.988084757000081, 44.107024638000055 ], [ 23.008306708587725, 44.100446412771703 ], [ 23.03097619600004, 44.093072002000056 ], [ 23.040071248000089, 44.062324524000118 ], [ 23.023018025000084, 44.031628723000082 ], [ 22.988084757000081, 44.017676087000083 ], [ 22.96627730300014, 44.015557353000091 ], [ 22.926486450000141, 44.006152243000045 ], [ 22.905815877000123, 44.003981832000065 ], [ 22.885868774000102, 43.994525045000088 ], [ 22.874706665000076, 43.972045797000092 ], [ 22.850522095000088, 43.89698577899999 ], [ 22.851038859000141, 43.874351502000039 ], [ 22.863441203, 43.855412089000097 ], [ 22.888762655000079, 43.839521587000078 ], [ 22.919561808000054, 43.834224752000026 ], [ 23.052551214666778, 43.842819856551102 ], [ 23.048133579301236, 43.807042141081922 ], [ 23.040175409267704, 43.783555202810362 ], [ 23.015474074169163, 43.778516751047221 ], [ 22.990876091858127, 43.779912014128115 ], [ 22.975166457366072, 43.765752672347901 ], [ 22.989945915871317, 43.752006740818388 ], [ 23.010099724722522, 43.748415228979582 ], [ 23.029426711273686, 43.742498277173752 ], [ 23.035937941382883, 43.722137762747536 ], [ 23.046893344951911, 43.701673896433135 ], [ 23.035937941382883, 43.687566229697723 ], [ 22.987568800859435, 43.674414578270159 ], [ 22.952635531704402, 43.634752915714444 ], [ 22.938062777874904, 43.581061103487116 ], [ 22.949018182343195, 43.566152451974062 ], [ 22.970928988581932, 43.562586778556977 ], [ 22.976923455652923, 43.543595688789992 ], [ 22.968655226357612, 43.526800849579502 ], [ 22.912431267688817, 43.51408844682436 ], [ 22.854657017207558, 43.509256699736852 ], [ 22.817656691403158, 43.499153957788906 ], [ 22.797502882551953, 43.490885729392858 ], [ 22.798019647388799, 43.469750067711459 ], [ 22.771561314003407, 43.417246812990015 ], [ 22.724343132000087, 43.386060131000093 ], [ 22.719367309000063, 43.388670553000068 ], [ 22.702934204000087, 43.394044902000033 ], [ 22.693219035000055, 43.394871725000073 ], [ 22.674202108000088, 43.394148255000076 ], [ 22.664693644000096, 43.396732077000067 ], [ 22.658926066000106, 43.401295034000029 ], [ 22.656528768000101, 43.403191631000126 ], [ 22.645366658000057, 43.420296529000055 ], [ 22.63782190000012, 43.426368511000121 ], [ 22.628520141000081, 43.428254700000124 ], [ 22.606919393000112, 43.427402038000096 ], [ 22.596274048000112, 43.429159038000066 ], [ 22.586765584000119, 43.434430033000112 ], [ 22.572709595000106, 43.448150127000034 ], [ 22.565784953000048, 43.453343608000054 ], [ 22.53260868400011, 43.464841614000065 ], [ 22.518862752000075, 43.474246725000043 ], [ 22.509354288000111, 43.493341166 ], [ 22.49064742000013, 43.540883485000037 ], [ 22.478451783000111, 43.559228617000102 ], [ 22.477624959000082, 43.564163717000056 ], [ 22.478658488000065, 43.569176331000037 ], [ 22.481449015000123, 43.574111430000059 ], [ 22.48268925000005, 43.57669525200005 ], [ 22.483102661000061, 43.579279073000052 ], [ 22.48268925000005, 43.58173370400003 ], [ 22.481449015000123, 43.58413665799999 ], [ 22.478141723000107, 43.587573141000021 ], [ 22.477108194000039, 43.59129384400002 ], [ 22.478141723000107, 43.594911194000119 ], [ 22.481449015000123, 43.598528545000093 ], [ 22.481759074000109, 43.598941956000019 ], [ 22.481965780000053, 43.599458720000044 ], [ 22.481759074000109, 43.599975485000087 ], [ 22.481449015000123, 43.600647278000068 ], [ 22.47380090300004, 43.612997946000021 ], [ 22.472870728000089, 43.635942282000073 ], [ 22.466256144000084, 43.649119772000049 ], [ 22.455920858000098, 43.656406149000119 ], [ 22.426465291000085, 43.668214213000041 ], [ 22.41395959500008, 43.676663310000023 ], [ 22.404864543000116, 43.687179464000067 ], [ 22.396906372000046, 43.699400940000103 ], [ 22.390498495000116, 43.712449240000055 ], [ 22.386054321000103, 43.725497538000084 ], [ 22.385847616000063, 43.733817444000053 ], [ 22.389568319000148, 43.750508932000074 ], [ 22.38853479000008, 43.758286235000085 ], [ 22.362593221000026, 43.780842998000125 ], [ 22.349467407000077, 43.807921448000073 ], [ 22.354738403000084, 43.829703065 ], [ 22.367554159000065, 43.85275075300008 ], [ 22.377062622000068, 43.883524068000028 ], [ 22.379026326000087, 43.913496399000067 ], [ 22.382023560000107, 43.918560690000064 ], [ 22.39194543500011, 43.931867371000052 ], [ 22.394529256000112, 43.93633738199999 ], [ 22.396803019000117, 43.95194366500003 ], [ 22.397319783000057, 43.980934144000102 ], [ 22.399593546000091, 43.993336487000064 ], [ 22.411789184000099, 44.006927389000069 ], [ 22.434320109000112, 44.013955384000056 ], [ 22.465885256999002, 44.017624140341752 ], [ 22.481449015000123, 44.019433085000045 ], [ 22.503669882000054, 44.019898173000072 ], [ 22.514935343000019, 44.030285136000103 ], [ 22.522583455000103, 44.044702861000118 ], [ 22.534158976000128, 44.057156881000097 ], [ 22.554622844000107, 44.062427877000047 ], [ 22.575190064000083, 44.061394348000064 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-14", "NAME_1": "Pernik" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.666243937000047, 42.871932068000078 ], [ 22.696629680000086, 42.877409770000057 ], [ 22.727015422000136, 42.886892395000032 ], [ 22.738797648000059, 42.89738271099999 ], [ 22.739578617958841, 42.89885754334091 ], [ 22.744896275043061, 42.894798081865986 ], [ 22.76680708218106, 42.880432034510761 ], [ 22.78396365659745, 42.860743312753641 ], [ 22.789338006044147, 42.848495998891224 ], [ 22.7984330576395, 42.839116726455757 ], [ 22.80804487497096, 42.839866035289276 ], [ 22.815176221805189, 42.834853421048535 ], [ 22.831919385970878, 42.837463080057091 ], [ 22.845148552663545, 42.855084744265525 ], [ 22.860031365754935, 42.849012762828693 ], [ 22.853830194008253, 42.817645168889385 ], [ 22.873363885235108, 42.807568264463782 ], [ 22.898375277796788, 42.818239448092015 ], [ 22.917702264348009, 42.801005357511201 ], [ 22.934755486876213, 42.776097316837706 ], [ 22.96493452330958, 42.776200670524474 ], [ 22.975579867616773, 42.762816474200918 ], [ 22.994493442118653, 42.75974172629958 ], [ 23.02487918502635, 42.762661445469291 ], [ 23.044412876253205, 42.739613755870096 ], [ 23.059502394020228, 42.709873969008413 ], [ 23.085857374618115, 42.696877346312476 ], [ 23.109318475367331, 42.679410711734931 ], [ 23.126785109045557, 42.668868720215244 ], [ 23.147559034621736, 42.661143093279122 ], [ 23.158101027040743, 42.644425768434417 ], [ 23.165129021986786, 42.625538032354314 ], [ 23.169676548234122, 42.590501410411719 ], [ 23.200785759754979, 42.581535549126272 ], [ 23.260006951959269, 42.548126736059999 ], [ 23.278507114411809, 42.532287910358775 ], [ 23.244917433292869, 42.494667466930025 ], [ 23.222489862217344, 42.449915675767784 ], [ 23.232721795374516, 42.406274929544338 ], [ 23.219699334256859, 42.39146963171811 ], [ 23.215668572846369, 42.37317617394126 ], [ 23.187866652324146, 42.370618190876769 ], [ 23.161201613363744, 42.381341051348443 ], [ 23.131229281606068, 42.384984239131313 ], [ 23.102807245258134, 42.403226020064778 ], [ 23.090198195290441, 42.37604421626753 ], [ 23.073041619974788, 42.374468085134026 ], [ 23.054128044573588, 42.383330592732648 ], [ 23.000074497140304, 42.396766465899645 ], [ 22.977750277952964, 42.39245148454836 ], [ 22.917288853197988, 42.388782457444449 ], [ 22.877498000332423, 42.364132799189292 ], [ 22.850109490960222, 42.360179552144587 ], [ 22.826441684635995, 42.370824897351099 ], [ 22.809801873257811, 42.392193102129909 ], [ 22.787581007757296, 42.408471178302193 ], [ 22.7652567885699, 42.418780625825207 ], [ 22.749650505966088, 42.437823391536256 ], [ 22.729083285964862, 42.456633613250631 ], [ 22.713166944998477, 42.473996894141351 ], [ 22.716267531321478, 42.505881252917447 ], [ 22.69880089674399, 42.525389105722638 ], [ 22.669138625147411, 42.519162096453556 ], [ 22.652602165657413, 42.533734850283111 ], [ 22.648364698671912, 42.554431261493505 ], [ 22.630898064993687, 42.567996324071089 ], [ 22.612191196066817, 42.59212921838872 ], [ 22.598962030273469, 42.620447902848412 ], [ 22.568472934578267, 42.63238515924769 ], [ 22.530439080898873, 42.629723823395693 ], [ 22.481449822751074, 42.635279039096361 ], [ 22.441318218560923, 42.632891463170438 ], [ 22.444552042000083, 42.643289694000046 ], [ 22.449202921000051, 42.667965190000061 ], [ 22.442071573000106, 42.681685282000089 ], [ 22.468116496000107, 42.718323873000131 ], [ 22.481449015000123, 42.727677307000064 ], [ 22.482585897000035, 42.730674541 ], [ 22.482895955000117, 42.733775126000026 ], [ 22.482585897000035, 42.736824036000073 ], [ 22.481449015000123, 42.739821269000075 ], [ 22.46656620300007, 42.748528748000055 ], [ 22.453130331000125, 42.763592428000052 ], [ 22.429359172000062, 42.806122131000095 ], [ 22.425845174000102, 42.809842835 ], [ 22.427395467000053, 42.813615214000023 ], [ 22.430446174000025, 42.817076593000067 ], [ 22.436800578000089, 42.824286398000126 ], [ 22.445482218000052, 42.830177511000031 ], [ 22.470907023000052, 42.840125224000033 ], [ 22.481449015000123, 42.84673980700002 ], [ 22.497055298000078, 42.864413147000036 ], [ 22.506046997000112, 42.870123393000071 ], [ 22.519792928000129, 42.870355937000042 ], [ 22.537569621000074, 42.868340556000092 ], [ 22.544494262000057, 42.871389466000025 ], [ 22.544785162000068, 42.871706438000061 ], [ 22.549971965000054, 42.877358093000041 ], [ 22.563614542000039, 42.884282735000042 ], [ 22.590899699000147, 42.886892395000032 ], [ 22.666243937000047, 42.871932068000078 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-23", "NAME_1": "Sofia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.739578617958841, 42.89885754334091 ], [ 22.74551558400006, 42.910069275000026 ], [ 22.763188924000076, 42.958645121000032 ], [ 22.769390096000052, 42.971280009000068 ], [ 22.776418091000068, 42.97972910600005 ], [ 22.788096964000147, 42.984896749000072 ], [ 22.815795532000067, 42.98970265700008 ], [ 22.828817993000115, 42.993449198000079 ], [ 22.828921346000129, 42.993449198000079 ], [ 22.829024699000058, 42.993500875 ], [ 22.829024699000058, 42.99365590500004 ], [ 22.842253865000146, 43.007505188000025 ], [ 22.884215128000051, 43.036650696000024 ], [ 22.889486124000086, 43.044376323000037 ], [ 22.896720825000045, 43.062721457000109 ], [ 22.901681763000113, 43.069749451000021 ], [ 22.910156698000094, 43.075278829000027 ], [ 22.927106568000113, 43.081144105000121 ], [ 22.935271443000119, 43.085562439000014 ], [ 22.955631958000055, 43.108274232 ], [ 22.974028768000068, 43.141192118000035 ], [ 22.984570760000111, 43.174626771000121 ], [ 22.982901934576603, 43.187317918886833 ], [ 23.028909946436841, 43.19493480070048 ], [ 23.101050246071964, 43.131812039194244 ], [ 23.127301872983026, 43.117161770099585 ], [ 23.22031945188121, 43.111193142349634 ], [ 23.254735956199397, 43.123001207539687 ], [ 23.286051873295321, 43.129150702442928 ], [ 23.318091260803044, 43.120830797203496 ], [ 23.36273969917778, 43.133698228690264 ], [ 23.398913201782818, 43.162947089136821 ], [ 23.431366001339882, 43.161965237205891 ], [ 23.462061801710774, 43.150312202546104 ], [ 23.469813267068616, 43.136850490957386 ], [ 23.448625929443097, 43.136643785382375 ], [ 23.434569939551068, 43.128143012090334 ], [ 23.435190057175362, 43.108247586556843 ], [ 23.450279574942385, 43.097473049241785 ], [ 23.46712609189558, 43.088998115270783 ], [ 23.493584426180291, 43.070549627862988 ], [ 23.516942173242683, 43.048328762362473 ], [ 23.532031691009706, 43.026004544074453 ], [ 23.552598911010932, 43.009158027121259 ], [ 23.591666294363961, 43.026728014486253 ], [ 23.634351027078196, 43.053031318240699 ], [ 23.650164015257076, 43.042101752194071 ], [ 23.665356885811605, 43.028304144720494 ], [ 23.691711867308811, 43.027296454367843 ], [ 23.716723259870548, 43.034608670154 ], [ 23.738427362332914, 43.054788316527549 ], [ 23.766022577280125, 43.067862454488647 ], [ 23.803539666122674, 43.056080226820995 ], [ 23.9023450047182, 43.042799384184207 ], [ 23.918571404946363, 43.03670156522503 ], [ 23.935624626575247, 43.027761542361247 ], [ 23.959085728223783, 43.039492092286196 ], [ 23.977482537888818, 43.059878445134132 ], [ 24.00621463439785, 43.060214341918311 ], [ 24.024301384801049, 43.045641588088813 ], [ 24.031949497371386, 43.030836290262584 ], [ 24.046005487263415, 43.020423489052746 ], [ 24.052310010898282, 42.999778753786416 ], [ 24.044661900126584, 42.978772285112825 ], [ 24.065642531277774, 42.960427151391912 ], [ 24.090550571052006, 42.942340400089392 ], [ 24.129307896042576, 42.935777493136754 ], [ 24.151425408755586, 42.908724881448109 ], [ 24.154009230241741, 42.87634959625683 ], [ 24.152148879167441, 42.843845119856383 ], [ 24.138609653212882, 42.803589178997413 ], [ 24.158556755589757, 42.780851549559316 ], [ 24.285164014707505, 42.779662991154112 ], [ 24.30934858586852, 42.769792792303519 ], [ 24.332499627355901, 42.757778022437776 ], [ 24.364332310187933, 42.752481188256183 ], [ 24.396681756058172, 42.754909980111449 ], [ 24.360198195090618, 42.707419338731484 ], [ 24.373117303420827, 42.661685696537631 ], [ 24.416318800971851, 42.644994208316064 ], [ 24.447221306917754, 42.612618924024105 ], [ 24.47295616989129, 42.599286404543932 ], [ 24.468305290856449, 42.577143053409145 ], [ 24.441846958370434, 42.563190416304622 ], [ 24.408153923564726, 42.562079373164522 ], [ 24.386966586838469, 42.567608751342789 ], [ 24.365675897324763, 42.564559840963852 ], [ 24.35037967308341, 42.565154120166483 ], [ 24.338597446315077, 42.57781484607824 ], [ 24.319477166238187, 42.581845608388107 ], [ 24.301803826985008, 42.587995104190668 ], [ 24.296222771963357, 42.605849311496513 ], [ 24.284957310031814, 42.621274726047773 ], [ 24.257465447872107, 42.628225205728654 ], [ 24.228940056938086, 42.629672146552309 ], [ 24.211576776047366, 42.624271959583268 ], [ 24.194110142369141, 42.621765652462841 ], [ 24.157523227714762, 42.610732734528028 ], [ 24.129617954405035, 42.581613064391377 ], [ 24.106570264805839, 42.573163967043399 ], [ 24.081455518557334, 42.572879747102604 ], [ 24.034740025331871, 42.55337189429747 ], [ 24.009831983759, 42.558229478907322 ], [ 23.988024530307825, 42.572027086380899 ], [ 23.961359491347423, 42.579287625323616 ], [ 23.933660922713386, 42.577375597405876 ], [ 23.903998651116865, 42.569520779260529 ], [ 23.898107537732642, 42.547015692919842 ], [ 23.90751264769051, 42.525828355294323 ], [ 23.921361932007528, 42.507509059995073 ], [ 23.937691685023253, 42.497897244462251 ], [ 23.950197381304065, 42.483970444880129 ], [ 23.988127883095331, 42.458726508321661 ], [ 24.038667433055593, 42.464901842545999 ], [ 24.054687126809426, 42.445032254534908 ], [ 24.038357374693078, 42.408006090308788 ], [ 23.999600050601828, 42.395758775547051 ], [ 23.959395785686922, 42.392296454018094 ], [ 23.941515740858733, 42.346795355820973 ], [ 23.957535434612623, 42.30958832534094 ], [ 23.973348422791446, 42.299898992744318 ], [ 23.974071893203302, 42.283259182265454 ], [ 23.958052199449412, 42.268040473289204 ], [ 23.937174920186408, 42.27313060189573 ], [ 23.924152459068694, 42.283259182265454 ], [ 23.912473585987186, 42.295997423442316 ], [ 23.888495721300501, 42.29070058926078 ], [ 23.880640903155154, 42.261477566336566 ], [ 23.848084750810585, 42.225743313303269 ], [ 23.800852491849014, 42.21127391226122 ], [ 23.794134556164806, 42.202075506979043 ], [ 23.795684848876647, 42.188691311554749 ], [ 23.780698682997809, 42.180991523040348 ], [ 23.763128695632759, 42.177606715877232 ], [ 23.747109001878925, 42.178304347867311 ], [ 23.735946892734887, 42.167038885935824 ], [ 23.717963495119193, 42.160475978983243 ], [ 23.698429802993019, 42.166832180360814 ], [ 23.664220005149105, 42.162594713375313 ], [ 23.637658318976207, 42.154739895229966 ], [ 23.600244582021844, 42.150915839394429 ], [ 23.580814242683118, 42.114380602482811 ], [ 23.54753462082607, 42.084124049884963 ], [ 23.493584426180291, 42.099084378241457 ], [ 23.519112582679554, 42.11355377928345 ], [ 23.529757927886067, 42.135232042424775 ], [ 23.503196241713169, 42.144559638016858 ], [ 23.473327263642261, 42.146368313147093 ], [ 23.453896926102232, 42.17197398491146 ], [ 23.428058709441871, 42.186856798002793 ], [ 23.383823683116475, 42.177942613560731 ], [ 23.338968540066048, 42.173162543316721 ], [ 23.324602491811504, 42.195719306500791 ], [ 23.356228469068583, 42.226673489290079 ], [ 23.368424106986936, 42.244553535017587 ], [ 23.388577914938821, 42.249669501146514 ], [ 23.399326612932839, 42.262071845539197 ], [ 23.384547152628954, 42.283155829477948 ], [ 23.362843051965285, 42.289227810015404 ], [ 23.34651329894956, 42.302612006339018 ], [ 23.339175245641059, 42.31245636676789 ], [ 23.327599725347056, 42.317158921746795 ], [ 23.293906691440668, 42.373589585990601 ], [ 23.272822706602597, 42.369662177367559 ], [ 23.24956831232771, 42.368706162959029 ], [ 23.233238560211362, 42.375243232389266 ], [ 23.215668572846369, 42.37317617394126 ], [ 23.219699334256859, 42.39146963171811 ], [ 23.232721795374516, 42.406274929544338 ], [ 23.222489862217344, 42.449915675767784 ], [ 23.244917433292869, 42.494667466930025 ], [ 23.278507114411809, 42.532287910358775 ], [ 23.360259229579754, 42.499835109902392 ], [ 23.396329380296663, 42.479216213957102 ], [ 23.432089470852361, 42.472653307004464 ], [ 23.456687453163397, 42.501333727569431 ], [ 23.475704379553463, 42.530427558385099 ], [ 23.516322055618332, 42.524278063481802 ], [ 23.516735466768353, 42.512185777451634 ], [ 23.523246697776869, 42.49477081971753 ], [ 23.543400505728755, 42.467485663132834 ], [ 23.532031691009706, 42.43425771721985 ], [ 23.558800082757614, 42.420796007429772 ], [ 23.600968052433643, 42.426041164767923 ], [ 23.629596795255907, 42.416946113172571 ], [ 23.654401483141896, 42.435859686775075 ], [ 23.64427290187291, 42.469294339162388 ], [ 23.612750278302656, 42.491463527819519 ], [ 23.560247022681949, 42.560089829981621 ], [ 23.517975702016997, 42.635950833564095 ], [ 23.502782830563149, 42.657913315746896 ], [ 23.521282993015689, 42.719046535868927 ], [ 23.575646599710808, 42.806534735689468 ], [ 23.596317173398802, 42.834853421048535 ], [ 23.608512811317155, 42.861053372015476 ], [ 23.572959426336411, 42.842940782291237 ], [ 23.535545689382047, 42.844646103734704 ], [ 23.496168246767184, 42.870716865291058 ], [ 23.450382927729891, 42.863482163870742 ], [ 23.400566847282164, 42.847772529378688 ], [ 23.351887648396257, 42.85784943290497 ], [ 23.302174919836659, 42.882240708741676 ], [ 23.289565870768286, 42.89350617157254 ], [ 23.273649529801958, 42.898002020976492 ], [ 23.249671665115216, 42.862810370302327 ], [ 23.248948194703416, 42.817205919317701 ], [ 23.199752231879984, 42.787388618090233 ], [ 23.212154575373347, 42.769146837156768 ], [ 23.209984165037156, 42.749380601933183 ], [ 23.194998000057637, 42.735893052822121 ], [ 23.177221307117634, 42.728942573141239 ], [ 23.153450148005902, 42.731500556205674 ], [ 23.132366164067207, 42.742145901412187 ], [ 23.090611607339781, 42.738838609514175 ], [ 23.059502394020228, 42.709873969008413 ], [ 23.044412876253205, 42.739613755870096 ], [ 23.02487918502635, 42.762661445469291 ], [ 22.994493442118653, 42.75974172629958 ], [ 22.975579867616773, 42.762816474200918 ], [ 22.96493452330958, 42.776200670524474 ], [ 22.934755486876213, 42.776097316837706 ], [ 22.917702264348009, 42.801005357511201 ], [ 22.898375277796788, 42.818239448092015 ], [ 22.873363885235108, 42.807568264463782 ], [ 22.853830194008253, 42.817645168889385 ], [ 22.860031365754935, 42.849012762828693 ], [ 22.845148552663545, 42.855084744265525 ], [ 22.831919385970878, 42.837463080057091 ], [ 22.815176221805189, 42.834853421048535 ], [ 22.80804487497096, 42.839866035289276 ], [ 22.7984330576395, 42.839116726455757 ], [ 22.789338006044147, 42.848495998891224 ], [ 22.78396365659745, 42.860743312753641 ], [ 22.76680708218106, 42.880432034510761 ], [ 22.744896275043061, 42.894798081865986 ], [ 22.739578617958841, 42.89885754334091 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-12", "NAME_1": "Montana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.982901934576603, 43.187317918886833 ], [ 22.981366822000069, 43.198992208000035 ], [ 22.964727010000047, 43.204418234000016 ], [ 22.915531046000069, 43.212247213000055 ], [ 22.897754353000039, 43.220334574000034 ], [ 22.88380171700004, 43.230592347000126 ], [ 22.857343384000046, 43.25694732699999 ], [ 22.833158814000086, 43.274646505000092 ], [ 22.82695764200011, 43.281390279000036 ], [ 22.823857056000065, 43.289296773000061 ], [ 22.820756469000116, 43.307538554000033 ], [ 22.817139119000046, 43.315496724000084 ], [ 22.804530070000112, 43.328984274000064 ], [ 22.733009888000083, 43.381513367000125 ], [ 22.724343132000087, 43.386060131000093 ], [ 22.771561314003407, 43.417246812990015 ], [ 22.798019647388799, 43.469750067711459 ], [ 22.797502882551953, 43.490885729392858 ], [ 22.817656691403158, 43.499153957788906 ], [ 22.854657017207558, 43.509256699736852 ], [ 22.912431267688817, 43.51408844682436 ], [ 22.968655226357612, 43.526800849579502 ], [ 22.976923455652923, 43.543595688789992 ], [ 22.970928988581932, 43.562586778556977 ], [ 22.949018182343195, 43.566152451974062 ], [ 22.938062777874904, 43.581061103487116 ], [ 22.952635531704402, 43.634752915714444 ], [ 22.987568800859435, 43.674414578270159 ], [ 23.035937941382883, 43.687566229697723 ], [ 23.046893344951911, 43.701673896433135 ], [ 23.035937941382883, 43.722137762747536 ], [ 23.029426711273686, 43.742498277173752 ], [ 23.010099724722522, 43.748415228979582 ], [ 22.989945915871317, 43.752006740818388 ], [ 22.975166457366072, 43.765752672347901 ], [ 22.990876091858127, 43.779912014128115 ], [ 23.015474074169163, 43.778516751047221 ], [ 23.040175409267704, 43.783555202810362 ], [ 23.048133579301236, 43.807042141081922 ], [ 23.052551214666778, 43.842819856551102 ], [ 23.13184859200004, 43.847944845000072 ], [ 23.161924275000104, 43.857324117000118 ], [ 23.196960896000121, 43.862750143000071 ], [ 23.23447798700002, 43.877297059000043 ], [ 23.325150732000054, 43.886592281000063 ], [ 23.484695272000096, 43.880604350000041 ], [ 23.592699016000068, 43.837428691000113 ], [ 23.620853516000068, 43.834009930000022 ], [ 23.633317498303882, 43.800944322122746 ], [ 23.622465448421679, 43.714102078348219 ], [ 23.606652459343479, 43.678316148471424 ], [ 23.58680870885479, 43.645114040980161 ], [ 23.584224888267954, 43.633254298946724 ], [ 23.585775180979795, 43.621032823505971 ], [ 23.574096306998968, 43.607777818391583 ], [ 23.556422966846412, 43.59868276589691 ], [ 23.551048618299092, 43.583825792126561 ], [ 23.567998488039791, 43.571604315786544 ], [ 23.578643833246304, 43.565971584820772 ], [ 23.590839471164657, 43.563051866550381 ], [ 23.598590935623179, 43.553336697330678 ], [ 23.609236280829691, 43.545533556028772 ], [ 23.621535272434869, 43.540546780209695 ], [ 23.622775505884874, 43.528299466347278 ], [ 23.609029575254681, 43.519230252274326 ], [ 23.592493116664002, 43.527007555154512 ], [ 23.56851525197726, 43.513442490778289 ], [ 23.54619103368924, 43.494399725966559 ], [ 23.52614057762554, 43.493366197192245 ], [ 23.506193475248665, 43.494399725966559 ], [ 23.48221560966266, 43.505303452692146 ], [ 23.441391228922043, 43.488017687066588 ], [ 23.410798781338656, 43.455926621816104 ], [ 23.412762485200517, 43.41747935608737 ], [ 23.405011020741995, 43.378541164842886 ], [ 23.380723096793474, 43.35355560980355 ], [ 23.360362583266578, 43.325779526803672 ], [ 23.335661248168037, 43.303326118205746 ], [ 23.327186314197036, 43.27565338799343 ], [ 23.401910435318314, 43.256171372710639 ], [ 23.46350874163511, 43.231470038511418 ], [ 23.450692986991726, 43.208603216964889 ], [ 23.424648064756354, 43.206768704312253 ], [ 23.396639438659122, 43.189870510515618 ], [ 23.398913201782818, 43.162947089136821 ], [ 23.36273969917778, 43.133698228690264 ], [ 23.318091260803044, 43.120830797203496 ], [ 23.286051873295321, 43.129150702442928 ], [ 23.254735956199397, 43.123001207539687 ], [ 23.22031945188121, 43.111193142349634 ], [ 23.127301872983026, 43.117161770099585 ], [ 23.101050246071964, 43.131812039194244 ], [ 23.028909946436841, 43.19493480070048 ], [ 22.982901934576603, 43.187317918886833 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-10", "NAME_1": "Kyustendil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.345023234000053, 42.313439026000125 ], [ 22.364143514000148, 42.320983785000081 ], [ 22.405794718000067, 42.321552226000037 ], [ 22.423984822000108, 42.325893047000093 ], [ 22.438454223000036, 42.340052388000046 ], [ 22.454370565000147, 42.376768494000132 ], [ 22.46977014100014, 42.391702983000087 ], [ 22.485066365000108, 42.397154846000078 ], [ 22.497572062000103, 42.399196065000027 ], [ 22.508837525000075, 42.40493215 ], [ 22.519482870000047, 42.420926005000027 ], [ 22.533125448000078, 42.457590434000096 ], [ 22.536536092000091, 42.478390198000042 ], [ 22.532505330000106, 42.493402202000127 ], [ 22.532505330000106, 42.493557231000054 ], [ 22.524857218000108, 42.507664897 ], [ 22.512144816000074, 42.519188742000026 ], [ 22.481449015000123, 42.535621846000097 ], [ 22.429669230000059, 42.571407776000015 ], [ 22.425328410000077, 42.572854716 ], [ 22.428842407000047, 42.592775981000031 ], [ 22.441318218560923, 42.632891463170438 ], [ 22.481449822751074, 42.635279039096361 ], [ 22.530439080898873, 42.629723823395693 ], [ 22.568472934578267, 42.63238515924769 ], [ 22.598962030273469, 42.620447902848412 ], [ 22.612191196066817, 42.59212921838872 ], [ 22.630898064993687, 42.567996324071089 ], [ 22.648364698671912, 42.554431261493505 ], [ 22.652602165657413, 42.533734850283111 ], [ 22.669138625147411, 42.519162096453556 ], [ 22.69880089674399, 42.525389105722638 ], [ 22.716267531321478, 42.505881252917447 ], [ 22.713166944998477, 42.473996894141351 ], [ 22.729083285964862, 42.456633613250631 ], [ 22.749650505966088, 42.437823391536256 ], [ 22.7652567885699, 42.418780625825207 ], [ 22.787581007757296, 42.408471178302193 ], [ 22.809801873257811, 42.392193102129909 ], [ 22.826441684635995, 42.370824897351099 ], [ 22.850109490960222, 42.360179552144587 ], [ 22.877498000332423, 42.364132799189292 ], [ 22.917288853197988, 42.388782457444449 ], [ 22.977750277952964, 42.39245148454836 ], [ 23.000074497140304, 42.396766465899645 ], [ 23.054128044573588, 42.383330592732648 ], [ 23.073041619974788, 42.374468085134026 ], [ 23.090198195290441, 42.37604421626753 ], [ 23.102807245258134, 42.403226020064778 ], [ 23.131229281606068, 42.384984239131313 ], [ 23.161201613363744, 42.381341051348443 ], [ 23.187866652324146, 42.370618190876769 ], [ 23.215668572846369, 42.37317617394126 ], [ 23.233238560211362, 42.375243232389266 ], [ 23.24956831232771, 42.368706162959029 ], [ 23.272822706602597, 42.369662177367559 ], [ 23.293906691440668, 42.373589585990601 ], [ 23.327599725347056, 42.317158921746795 ], [ 23.339175245641059, 42.31245636676789 ], [ 23.34651329894956, 42.302612006339018 ], [ 23.362843051965285, 42.289227810015404 ], [ 23.384547152628954, 42.283155829477948 ], [ 23.399326612932839, 42.262071845539197 ], [ 23.388577914938821, 42.249669501146514 ], [ 23.368424106986936, 42.244553535017587 ], [ 23.356228469068583, 42.226673489290079 ], [ 23.324602491811504, 42.195719306500791 ], [ 23.338968540066048, 42.173162543316721 ], [ 23.383823683116475, 42.177942613560731 ], [ 23.428058709441871, 42.186856798002793 ], [ 23.453896926102232, 42.17197398491146 ], [ 23.473327263642261, 42.146368313147093 ], [ 23.503196241713169, 42.144559638016858 ], [ 23.529757927886067, 42.135232042424775 ], [ 23.519112582679554, 42.11355377928345 ], [ 23.493584426180291, 42.099084378241457 ], [ 23.444285108770714, 42.069680488163954 ], [ 23.387234327801991, 42.062342433956132 ], [ 23.260523715896738, 42.092883206494776 ], [ 23.241403435819905, 42.090299384109244 ], [ 23.222283155743014, 42.091901354563845 ], [ 23.200579054179968, 42.091694648089515 ], [ 23.150866327419067, 42.072651882378466 ], [ 23.122650994847504, 42.057614041454826 ], [ 23.092058547264116, 42.050999456759484 ], [ 23.06074262926893, 42.048674017691724 ], [ 23.034697707033558, 42.061851508440327 ], [ 23.005138788224485, 42.069887192839644 ], [ 22.976199985241124, 42.06828522418374 ], [ 22.959043409925414, 42.087121284319778 ], [ 22.933618605314393, 42.086010240280359 ], [ 22.904576450442789, 42.050508531243679 ], [ 22.896928337872453, 42.030380560814194 ], [ 22.875430941884417, 42.033067735087855 ], [ 22.858377720255589, 42.019812729973467 ], [ 22.845621158989275, 42.00740772898348 ], [ 22.843700806000044, 42.014465027000099 ], [ 22.838223104000065, 42.019477641000051 ], [ 22.82695764200011, 42.025084534000072 ], [ 22.821273234000046, 42.02536875400007 ], [ 22.805977010000106, 42.021389669000072 ], [ 22.79894901500009, 42.021234640000031 ], [ 22.791094198000053, 42.025808004000069 ], [ 22.787683553000136, 42.032577616000097 ], [ 22.785306437000088, 42.039140523000086 ], [ 22.780862264000064, 42.043171286000089 ], [ 22.770630330000103, 42.043998108000025 ], [ 22.725051717000099, 42.042473654 ], [ 22.718437134000112, 42.044463196000052 ], [ 22.713992961000116, 42.048623149000079 ], [ 22.710272258000089, 42.052989808000049 ], [ 22.705724731000146, 42.055935364000064 ], [ 22.675855753000036, 42.060612081000031 ], [ 22.627176664971103, 42.07912659191868 ], [ 22.617771443000066, 42.082703756000043 ], [ 22.531058390000112, 42.129109193000048 ], [ 22.510181112000026, 42.14479299 ], [ 22.506938534000142, 42.148927276000038 ], [ 22.494678182000115, 42.164559225000076 ], [ 22.481449015000123, 42.193317160000092 ], [ 22.443621867000047, 42.21442698200012 ], [ 22.345023234000053, 42.313439026000125 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-01", "NAME_1": "Blagoevgrad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.916977986000063, 41.335772604000098 ], [ 22.94085249800014, 41.349828593000026 ], [ 22.944469849000114, 41.368432109000068 ], [ 22.939405558000146, 41.389412740000054 ], [ 22.937338501000085, 41.410755107000071 ], [ 22.940542440000058, 41.416904602000031 ], [ 22.952117960000095, 41.427704976000072 ], [ 22.954598429000072, 41.432407532000056 ], [ 22.953358195000135, 41.438195293000021 ], [ 22.947570435000074, 41.44837554900009 ], [ 22.946226848000094, 41.453233135000104 ], [ 22.943599338000126, 41.523201176000057 ], [ 22.943022909000035, 41.538550924000091 ], [ 22.947880493000071, 41.555139059000098 ], [ 22.948707316000082, 41.560978495000072 ], [ 22.946433553000077, 41.567748108000032 ], [ 22.936925090000074, 41.578910218000047 ], [ 22.9337211510001, 41.584594625000094 ], [ 22.932067505000049, 41.597952983000127 ], [ 22.932997681000103, 41.61234486900004 ], [ 22.936098266000045, 41.626168315000101 ], [ 22.94085249800014, 41.637640483000027 ], [ 22.945813436000094, 41.641076966000057 ], [ 22.961523071000073, 41.644487611000059 ], [ 22.967000773000052, 41.647045594000062 ], [ 22.970101359000097, 41.652032369000025 ], [ 22.976612590000059, 41.666553446000066 ], [ 22.985434527981056, 41.677197757370607 ], [ 22.998626750000142, 41.693115133000092 ], [ 23.00958215300011, 41.716369528000101 ], [ 23.008858683000113, 41.73993398 ], [ 22.991185344000115, 41.760992127000023 ], [ 22.98053999800004, 41.764738668000049 ], [ 22.956872192000105, 41.765668844000103 ], [ 22.945916788000119, 41.769337870000086 ], [ 22.939715617000047, 41.776701762000087 ], [ 22.918321573000128, 41.814348043000038 ], [ 22.907676229000117, 41.848583679000015 ], [ 22.901371704000013, 41.860417582000039 ], [ 22.896720825000045, 41.864448344000024 ], [ 22.88504195200008, 41.869150899000019 ], [ 22.882088304631509, 41.871618274863465 ], [ 22.880804484000123, 41.872690735000063 ], [ 22.878220662000047, 41.880261333000036 ], [ 22.878634073000057, 41.895014954000132 ], [ 22.877083781000124, 41.902042949000062 ], [ 22.866335083000109, 41.924883932000043 ], [ 22.858893677000083, 41.947879944000093 ], [ 22.857136678000103, 41.971883647000126 ], [ 22.85475956200014, 41.982632345000056 ], [ 22.846904744000113, 41.993484395000095 ], [ 22.846594686000032, 41.99363942500004 ], [ 22.845767863000106, 42.006868592000032 ], [ 22.845621158989275, 42.00740772898348 ], [ 22.858377720255589, 42.019812729973467 ], [ 22.875430941884417, 42.033067735087855 ], [ 22.896928337872453, 42.030380560814194 ], [ 22.904576450442789, 42.050508531243679 ], [ 22.933618605314393, 42.086010240280359 ], [ 22.959043409925414, 42.087121284319778 ], [ 22.976199985241124, 42.06828522418374 ], [ 23.005138788224485, 42.069887192839644 ], [ 23.034697707033558, 42.061851508440327 ], [ 23.06074262926893, 42.048674017691724 ], [ 23.092058547264116, 42.050999456759484 ], [ 23.122650994847504, 42.057614041454826 ], [ 23.150866327419067, 42.072651882378466 ], [ 23.200579054179968, 42.091694648089515 ], [ 23.222283155743014, 42.091901354563845 ], [ 23.241403435819905, 42.090299384109244 ], [ 23.260523715896738, 42.092883206494776 ], [ 23.387234327801991, 42.062342433956132 ], [ 23.444285108770714, 42.069680488163954 ], [ 23.493584426180291, 42.099084378241457 ], [ 23.54753462082607, 42.084124049884963 ], [ 23.580814242683118, 42.114380602482811 ], [ 23.600244582021844, 42.150915839394429 ], [ 23.637658318976207, 42.154739895229966 ], [ 23.664220005149105, 42.162594713375313 ], [ 23.698429802993019, 42.166832180360814 ], [ 23.717963495119193, 42.160475978983243 ], [ 23.735946892734887, 42.167038885935824 ], [ 23.747109001878925, 42.178304347867311 ], [ 23.763128695632759, 42.177606715877232 ], [ 23.772637160176771, 42.158202215859546 ], [ 23.792170851403625, 42.146704209931329 ], [ 23.809637485081851, 42.132880764036031 ], [ 23.816045363302862, 42.112313544034805 ], [ 23.813254836241697, 42.096242174336851 ], [ 23.800955844636519, 42.084640814721809 ], [ 23.801265902999035, 42.062704169162032 ], [ 23.820489535863373, 42.045340888271369 ], [ 23.791860793041167, 42.020691230016212 ], [ 23.7666426940051, 41.976456203690816 ], [ 23.767882928354425, 41.956405748526436 ], [ 23.762508578907784, 41.939869289935757 ], [ 23.774394159362942, 41.921911728943087 ], [ 23.78958702991747, 41.905969550454358 ], [ 23.795684848876647, 41.860907700929658 ], [ 23.821729771112018, 41.823829860759417 ], [ 23.84643110531124, 41.812021796468684 ], [ 23.868238559661791, 41.795381985090501 ], [ 23.885808547026784, 41.792436428398446 ], [ 23.905548943828705, 41.796544705074041 ], [ 23.917744581747058, 41.784529934308978 ], [ 23.928183221378561, 41.768975328548549 ], [ 24.041974724953604, 41.710425929912731 ], [ 24.054170362871957, 41.693166001809516 ], [ 24.072567173436312, 41.686344713337803 ], [ 24.087036573578985, 41.680918687047722 ], [ 24.096338331648667, 41.668309637979405 ], [ 24.123106724295894, 41.654615383293276 ], [ 24.103573032169663, 41.636631984778262 ], [ 24.077941521983632, 41.624022935709888 ], [ 24.197314080580327, 41.54795522745178 ], [ 24.197697918000074, 41.547710635000087 ], [ 24.196279744000066, 41.547025859000073 ], [ 24.18160363800007, 41.537362366000067 ], [ 24.177469523000127, 41.531006165000051 ], [ 24.173128703000145, 41.515296529000054 ], [ 24.170234823000072, 41.511575826000055 ], [ 24.162793416000056, 41.512040914000082 ], [ 24.158452596000075, 41.516330058000037 ], [ 24.154008423000079, 41.522117818000126 ], [ 24.146256958000066, 41.526768697000094 ], [ 24.116491333000084, 41.533383280000081 ], [ 24.076597127000127, 41.536018779000088 ], [ 24.047348267000075, 41.5257351690001 ], [ 24.049828736000052, 41.493644104000069 ], [ 24.052515910000096, 41.471474915000059 ], [ 24.051999146000043, 41.462999980000049 ], [ 24.045901327000081, 41.455455221000094 ], [ 24.034739217000066, 41.451321106000094 ], [ 24.022853637000139, 41.453078105000074 ], [ 24.000736125000117, 41.464136861000057 ], [ 23.997118774000057, 41.457005514000045 ], [ 23.992364542000132, 41.454628398000082 ], [ 23.986886841000057, 41.453698222000028 ], [ 23.981305786000036, 41.450856019000057 ], [ 23.964665975000116, 41.438350322000062 ], [ 23.949886515000117, 41.437575175000049 ], [ 23.902860962000119, 41.463516745 ], [ 23.894799438000035, 41.464343567000029 ], [ 23.867720988000087, 41.445481669000102 ], [ 23.851597941000108, 41.439590556 ], [ 23.83092736800009, 41.435611470000097 ], [ 23.809740031000047, 41.433802795000119 ], [ 23.792066691000116, 41.434474589 ], [ 23.777080526000049, 41.429048564000126 ], [ 23.754446248000107, 41.400678202000037 ], [ 23.738219848000085, 41.397474264000053 ], [ 23.705353638000076, 41.403158671000099 ], [ 23.672177368000064, 41.402951965000042 ], [ 23.6528503830001, 41.397629293000094 ], [ 23.627735637000086, 41.378509014000102 ], [ 23.624846739885129, 41.377093844905005 ], [ 23.612439412000128, 41.371015931000059 ], [ 23.578953084000119, 41.371997783000026 ], [ 23.513013957000112, 41.397732646000023 ], [ 23.414518677000046, 41.399903056000099 ], [ 23.395501750000079, 41.395252177000046 ], [ 23.36511600700004, 41.3785606900001 ], [ 23.34723596200007, 41.371222636000127 ], [ 23.326048625000112, 41.369310608000021 ], [ 23.315609985000066, 41.376855367000061 ], [ 23.306204875000105, 41.388379212000089 ], [ 23.287704712000078, 41.39819773400005 ], [ 23.269928019000048, 41.397267558000081 ], [ 23.246570272000099, 41.38972279900004 ], [ 23.224246053000059, 41.379025778000042 ], [ 23.209776652000102, 41.368587138000109 ], [ 23.206366007000099, 41.360939026000025 ], [ 23.204815714000063, 41.342697245000082 ], [ 23.19954471900013, 41.332982076000022 ], [ 23.190656372000035, 41.326057435000038 ], [ 23.179700968000134, 41.321354879000083 ], [ 23.157170043000121, 41.316342265000017 ], [ 23.115208781000035, 41.312673238000016 ], [ 22.916977986000063, 41.335772604000098 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-19", "NAME_1": "Silistra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.027476441000118, 44.177046204000092 ], [ 27.100236857000084, 44.144490052000052 ], [ 27.20555342600008, 44.129245504 ], [ 27.226740763000066, 44.120718893000074 ], [ 27.251132039000083, 44.122372539000125 ], [ 27.252662457806139, 44.12151886650247 ], [ 27.269012085000043, 44.11239898700002 ], [ 27.264309530000048, 44.089764710000068 ], [ 27.285341838000079, 44.072453105000065 ], [ 27.341669149000069, 44.053074443000085 ], [ 27.353554728000091, 44.045271302000074 ], [ 27.372881714000073, 44.020724996000112 ], [ 27.383837117000041, 44.015092265000064 ], [ 27.57452315200004, 44.016280823 ], [ 27.633434285000135, 44.029768372000078 ], [ 27.656275268000059, 44.023877259000059 ], [ 27.676119019000055, 43.993543193000036 ], [ 27.682514975685535, 43.987256009757004 ], [ 27.68216596858457, 43.987263698960533 ], [ 27.655190871261652, 43.987857978163163 ], [ 27.636587355122344, 43.976385809757289 ], [ 27.641444939732139, 43.954216620200839 ], [ 27.62315148285461, 43.9392046167996 ], [ 27.604754673189575, 43.938662014440411 ], [ 27.610439080998788, 43.927086493247032 ], [ 27.607441846563972, 43.908017890013582 ], [ 27.577986281441724, 43.90372874618464 ], [ 27.555765415041833, 43.9184048528017 ], [ 27.530857375267658, 43.913469753826064 ], [ 27.518971794812444, 43.883084010918367 ], [ 27.52145226441047, 43.852052313763238 ], [ 27.481248000394885, 43.830864977037038 ], [ 27.430191684698457, 43.844404202092221 ], [ 27.39887576670327, 43.83975332305738 ], [ 27.373761021354028, 43.825077216440377 ], [ 27.386060012059886, 43.776036282348514 ], [ 27.342238396884511, 43.775364487880779 ], [ 27.29634972505977, 43.802468777312185 ], [ 27.276402621783575, 43.794691474432 ], [ 27.264000278290212, 43.774744371155805 ], [ 27.215527784979258, 43.742704982748705 ], [ 27.212943962593783, 43.69792735496344 ], [ 27.237025180967294, 43.670719712744528 ], [ 27.219558547289125, 43.665629584137946 ], [ 27.200128207950399, 43.668911038513613 ], [ 27.133775668911994, 43.669996243231992 ], [ 27.094088168833878, 43.703120836357471 ], [ 27.054090610393359, 43.72162099881001 ], [ 27.000760531573235, 43.699581000462786 ], [ 26.971408319238549, 43.716918442931785 ], [ 26.947533807339312, 43.742834173957931 ], [ 26.931307407111149, 43.749991360113142 ], [ 26.913324008596078, 43.741361396511195 ], [ 26.903298781013916, 43.753040270492079 ], [ 26.903092075438906, 43.775519518411045 ], [ 26.888209263246893, 43.785131333943866 ], [ 26.878080681977849, 43.79624176714384 ], [ 26.85978722510032, 43.806163641938497 ], [ 26.843870884133992, 43.824534614081131 ], [ 26.837152947550464, 43.843680732579742 ], [ 26.822166781671626, 43.842207953334366 ], [ 26.808110792678917, 43.826369126733766 ], [ 26.790334099738914, 43.821304837448281 ], [ 26.775141229184385, 43.819289455843716 ], [ 26.767389763826543, 43.807248847556252 ], [ 26.753127069258824, 43.825800685952856 ], [ 26.735453729106268, 43.844920966029747 ], [ 26.701864047987385, 43.847608141202727 ], [ 26.617218052071451, 43.869363918709837 ], [ 26.593756952221554, 43.901920071054406 ], [ 26.586005486863712, 43.919024970425994 ], [ 26.568332146711157, 43.936956692097624 ], [ 26.545697870060621, 43.944863186187092 ], [ 26.520066358975271, 43.930910549082569 ], [ 26.491644320828698, 43.925019435698403 ], [ 26.464772577192662, 43.946826890948216 ], [ 26.431389600749469, 43.953286445113349 ], [ 26.396249626918745, 43.949565742065317 ], [ 26.382813754651011, 43.989253242143377 ], [ 26.376199171754365, 44.019483954520865 ], [ 26.349637484682148, 44.02227448248135 ], [ 26.334547966915125, 44.045322171181226 ], [ 26.332335497984843, 44.054926298409896 ], [ 26.415790672801279, 44.063788794317361 ], [ 26.614168335000102, 44.084855448000027 ], [ 26.647758016000125, 44.093382060000053 ], [ 26.667808471000086, 44.095087382000102 ], [ 26.677316935000079, 44.097051087000054 ], [ 26.697212361000084, 44.106094463000019 ], [ 26.708684530000085, 44.108109843000065 ], [ 26.753694702000104, 44.108109843000065 ], [ 26.789454793000033, 44.115964661000092 ], [ 26.884126017000142, 44.15653066 ], [ 27.001534871000075, 44.165108949000043 ], [ 27.027476441000118, 44.177046204000092 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-18", "NAME_1": "Ruse" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.533820841000079, 43.668679301000068 ], [ 25.556558472000063, 43.670358785000118 ], [ 25.575058634000072, 43.67738678000002 ], [ 25.593868856000086, 43.680668234 ], [ 25.616503134000141, 43.687747904000034 ], [ 25.637897176000138, 43.697282207000043 ], [ 25.653503458000102, 43.708134257000083 ], [ 25.671383504000062, 43.717358500000088 ], [ 25.732947936597952, 43.718781010834959 ], [ 25.739596395000092, 43.718934631000096 ], [ 25.781144246000082, 43.732008769000075 ], [ 25.804398641000091, 43.759914042000034 ], [ 25.806258993000085, 43.76366058400005 ], [ 25.839331909000094, 43.788439433000079 ], [ 25.869304240000133, 43.800893453000086 ], [ 25.916433146000116, 43.844379171000085 ], [ 25.924494670000115, 43.858616028000071 ], [ 25.93400313300009, 43.870320740000054 ], [ 26.054305868000085, 43.934322001000041 ], [ 26.061643921000098, 43.949773254000021 ], [ 26.079317260000096, 43.969048564000062 ], [ 26.116214233000107, 43.99886586500007 ], [ 26.150734091000089, 44.012405090000058 ], [ 26.231452678000039, 44.027494609000044 ], [ 26.310517619000109, 44.052609355000058 ], [ 26.332335497984843, 44.054926298409896 ], [ 26.334547966915125, 44.045322171181226 ], [ 26.349637484682148, 44.02227448248135 ], [ 26.376199171754365, 44.019483954520865 ], [ 26.382813754651011, 43.989253242143377 ], [ 26.396249626918745, 43.949565742065317 ], [ 26.32152550579741, 43.890163682707794 ], [ 26.299511345871906, 43.852724107331653 ], [ 26.253932733309, 43.832105211386363 ], [ 26.251555617397798, 43.792107652046468 ], [ 26.303335401707386, 43.774434312793289 ], [ 26.33351443904013, 43.772522284875549 ], [ 26.35780236208933, 43.762936305965752 ], [ 26.339922316361765, 43.745082099559227 ], [ 26.342506137847977, 43.704386909128516 ], [ 26.322248976209266, 43.696454575718064 ], [ 26.308503044679753, 43.674337063005055 ], [ 26.295273878886405, 43.658369046094606 ], [ 26.243597445565626, 43.663950100216937 ], [ 26.206287062298088, 43.643537909846657 ], [ 26.192851190030353, 43.653537299007098 ], [ 26.179932081700201, 43.661624661149176 ], [ 26.168563266981153, 43.643537909846657 ], [ 26.17104373478054, 43.620722765143455 ], [ 26.166909620582487, 43.615477606905984 ], [ 26.161535272035167, 43.611550198282998 ], [ 26.163705682371301, 43.604496364915292 ], [ 26.165566034344977, 43.59677073797917 ], [ 26.162362095234471, 43.562121690563572 ], [ 26.184169548685702, 43.535947577118975 ], [ 26.164325799096332, 43.527420966304533 ], [ 26.139107700060265, 43.530883286934113 ], [ 26.116886833660431, 43.527472643147917 ], [ 26.094045851434885, 43.530934963777554 ], [ 26.070481397898163, 43.517809149872335 ], [ 26.039165479902977, 43.507267158352647 ], [ 26.033894484143104, 43.475046901892995 ], [ 26.019631788676065, 43.453316961908229 ], [ 25.996480747188741, 43.435695299498434 ], [ 25.970642531427643, 43.421794339237351 ], [ 25.946147901904112, 43.4165750194216 ], [ 25.95172895692582, 43.394044093759874 ], [ 25.969402297078318, 43.373838608964604 ], [ 25.996170688826226, 43.371306464321833 ], [ 26.018804966376081, 43.363399970232422 ], [ 26.022215610162277, 43.341463325572022 ], [ 26.020458611875426, 43.318854885544511 ], [ 25.984078402796058, 43.320637722253082 ], [ 25.949351841014618, 43.330249539584543 ], [ 25.940566846882462, 43.353684801012719 ], [ 25.935399203910094, 43.375208035422474 ], [ 25.906460401826052, 43.37572479936 ], [ 25.878348422941372, 43.365105292575151 ], [ 25.852200147918495, 43.364330146219231 ], [ 25.826258579369949, 43.368774318779742 ], [ 25.791738722264199, 43.371125597168543 ], [ 25.7578389827828, 43.378231106480371 ], [ 25.738098585980936, 43.391615301904608 ], [ 25.723112420102098, 43.403759263878896 ], [ 25.707816195860744, 43.403552558303886 ], [ 25.699754673039706, 43.415128079497265 ], [ 25.675673455565516, 43.41502472581044 ], [ 25.662754347235307, 43.39667959208947 ], [ 25.605703566266527, 43.412570095533454 ], [ 25.55009972522214, 43.453265285964164 ], [ 25.557127720168126, 43.480214544865305 ], [ 25.566842889387829, 43.508352363071083 ], [ 25.55185672440831, 43.514811917236159 ], [ 25.538214145666245, 43.503494778461231 ], [ 25.522814568637386, 43.505355130434907 ], [ 25.521057570350592, 43.517654120241446 ], [ 25.470104608340989, 43.545869451913632 ], [ 25.464833611681797, 43.567418524745108 ], [ 25.486744418819853, 43.57997589786936 ], [ 25.508241814807889, 43.614444078131669 ], [ 25.489845005142854, 43.658369046094606 ], [ 25.482450034641374, 43.669714752733626 ], [ 25.488758993000118, 43.670539653000063 ], [ 25.533820841000079, 43.668679301000068 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-08", "NAME_1": "Dobrich" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.682514975685535, 43.987256009757004 ], [ 27.72169763100004, 43.948739726000056 ], [ 27.787326701000069, 43.960418600000125 ], [ 27.856469767000135, 43.988633932000099 ], [ 27.912073608000071, 43.993336487000064 ], [ 27.912073608000071, 43.99323313400005 ], [ 27.935844767000106, 43.964397685 ], [ 27.981009969000098, 43.849340109000039 ], [ 28.014806355000076, 43.830038961000085 ], [ 28.221253703000059, 43.761981100000114 ], [ 28.434574015000123, 43.735212707000031 ], [ 28.578379754000082, 43.741278387000079 ], [ 28.576182488000086, 43.727525132000039 ], [ 28.573090040000068, 43.606146552000041 ], [ 28.57553144600007, 43.593329169000071 ], [ 28.58570397200009, 43.575832424000055 ], [ 28.595876498000052, 43.563706773000035 ], [ 28.602712436000047, 43.552720445000034 ], [ 28.603526238000086, 43.538153387000079 ], [ 28.594574415000068, 43.512518622000073 ], [ 28.578461134000065, 43.48078034100007 ], [ 28.56031334700009, 43.453843492000033 ], [ 28.545176629000082, 43.442531643000052 ], [ 28.535004102000073, 43.438625393000052 ], [ 28.488617384000065, 43.406439520000049 ], [ 28.479258660000085, 43.39679596600007 ], [ 28.473887566000087, 43.384263414000088 ], [ 28.473155144000089, 43.366848049000055 ], [ 28.459483269000089, 43.380682684000078 ], [ 28.414561394000089, 43.398871161000045 ], [ 28.404958530000044, 43.404689846000053 ], [ 28.393809441000087, 43.414292710000041 ], [ 28.368662957000083, 43.421779690000051 ], [ 28.32162519600007, 43.428290106000077 ], [ 28.299164259000065, 43.425034898000035 ], [ 28.261566602000073, 43.410956122000073 ], [ 28.243174675000034, 43.407782294000071 ], [ 28.177989129000082, 43.409979559000078 ], [ 28.157237175000034, 43.407782294000071 ], [ 28.11882571700005, 43.391546942000048 ], [ 28.09156334700009, 43.363959052000041 ], [ 28.086997312875667, 43.35523474928425 ], [ 28.083898553075755, 43.35621694655481 ], [ 28.048758579245032, 43.353219713019314 ], [ 28.013515251727483, 43.353090521810088 ], [ 27.992948031726257, 43.372546699570478 ], [ 27.965456169566551, 43.392829697832269 ], [ 27.933830194108168, 43.394302477077645 ], [ 27.904477979974786, 43.384277249495426 ], [ 27.888148227858437, 43.370531317965913 ], [ 27.867684359745397, 43.365415350937667 ], [ 27.808669874914756, 43.387687893281623 ], [ 27.75926720561705, 43.431767889976129 ], [ 27.740870395952015, 43.456779283437129 ], [ 27.715135532079103, 43.473315742027864 ], [ 27.678031854386575, 43.478896796150195 ], [ 27.63824100062169, 43.505923570316497 ], [ 27.603824497202766, 43.541942044189966 ], [ 27.588321568285721, 43.53775625314853 ], [ 27.577882927754899, 43.518532620284191 ], [ 27.558659294890504, 43.511788845278943 ], [ 27.538505486938675, 43.509850978939483 ], [ 27.530547316005823, 43.503701484036242 ], [ 27.51990197079931, 43.499153957788906 ], [ 27.494993931025078, 43.508042303809248 ], [ 27.488379347229056, 43.532123521283438 ], [ 27.458510370057525, 43.562715968866826 ], [ 27.41892622186765, 43.571242581479908 ], [ 27.408797642397246, 43.598631089952789 ], [ 27.385646600010546, 43.609353950424463 ], [ 27.345442335995017, 43.603850409768597 ], [ 27.305858188704406, 43.594858710061374 ], [ 27.276919386620364, 43.604935615386296 ], [ 27.256248813831689, 43.63529551897301 ], [ 27.200128207950399, 43.668911038513613 ], [ 27.219558547289125, 43.665629584137946 ], [ 27.237025180967294, 43.670719712744528 ], [ 27.212943962593783, 43.69792735496344 ], [ 27.215527784979258, 43.742704982748705 ], [ 27.264000278290212, 43.774744371155805 ], [ 27.276402621783575, 43.794691474432 ], [ 27.29634972505977, 43.802468777312185 ], [ 27.342238396884511, 43.775364487880779 ], [ 27.386060012059886, 43.776036282348514 ], [ 27.373761021354028, 43.825077216440377 ], [ 27.39887576670327, 43.83975332305738 ], [ 27.430191684698457, 43.844404202092221 ], [ 27.481248000394885, 43.830864977037038 ], [ 27.52145226441047, 43.852052313763238 ], [ 27.518971794812444, 43.883084010918367 ], [ 27.530857375267658, 43.913469753826064 ], [ 27.555765415041833, 43.9184048528017 ], [ 27.577986281441724, 43.90372874618464 ], [ 27.607441846563972, 43.908017890013582 ], [ 27.610439080998788, 43.927086493247032 ], [ 27.604754673189575, 43.938662014440411 ], [ 27.62315148285461, 43.9392046167996 ], [ 27.641444939732139, 43.954216620200839 ], [ 27.636587355122344, 43.976385809757289 ], [ 27.655190871261652, 43.987857978163163 ], [ 27.68216596858457, 43.987263698960533 ], [ 27.682514975685535, 43.987256009757004 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-06", "NAME_1": "Vratsa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.620853516000068, 43.834009930000022 ], [ 23.636107219000053, 43.832157695000078 ], [ 23.720753215000059, 43.845826111000079 ], [ 23.742870727000053, 43.842699687000035 ], [ 23.799921509000058, 43.818463440000059 ], [ 24.149605832000134, 43.754719949000062 ], [ 24.159382772000129, 43.752937724000063 ], [ 24.336705386944061, 43.759250924690377 ], [ 24.328985629882879, 43.711234036021949 ], [ 24.287541130618649, 43.665242011409703 ], [ 24.231523879323561, 43.645036525715057 ], [ 24.199484490916518, 43.647413642525578 ], [ 24.17230268711927, 43.629972846369753 ], [ 24.145120884221399, 43.606020820104732 ], [ 24.120212844447224, 43.588993435098928 ], [ 24.140159945924722, 43.558426825937261 ], [ 24.151425408755586, 43.522356676119671 ], [ 24.178710565340282, 43.491350816486943 ], [ 24.224909294628219, 43.484529527115967 ], [ 24.243202752405068, 43.437503973729406 ], [ 24.24423628117944, 43.420450751201201 ], [ 24.236484815821598, 43.400968735918411 ], [ 24.228113233738725, 43.343065294227927 ], [ 24.180674269202143, 43.324926866081967 ], [ 24.145844353733935, 43.329241848332629 ], [ 24.111944614252536, 43.327743232464172 ], [ 24.092927686963151, 43.318699855913621 ], [ 24.081868930606618, 43.308080349128772 ], [ 24.067192823989615, 43.313015449003728 ], [ 24.052413363685787, 43.315805976064894 ], [ 23.978619418551318, 43.29459280001771 ], [ 23.960842725611258, 43.265163072417806 ], [ 23.950714146140911, 43.245164293197547 ], [ 23.959395785686922, 43.231625068142364 ], [ 24.026781854399019, 43.211729640810233 ], [ 24.034946730007562, 43.173308214402539 ], [ 24.026781854399019, 43.133233140696859 ], [ 24.016343214767517, 43.110753892777893 ], [ 23.991021762944001, 43.110857245565398 ], [ 23.973761833941467, 43.122148545918662 ], [ 23.958362257811928, 43.114500434247645 ], [ 23.963736607258625, 43.086233424832642 ], [ 23.977482537888818, 43.059878445134132 ], [ 23.959085728223783, 43.039492092286196 ], [ 23.935624626575247, 43.027761542361247 ], [ 23.918571404946363, 43.03670156522503 ], [ 23.9023450047182, 43.042799384184207 ], [ 23.803539666122674, 43.056080226820995 ], [ 23.766022577280125, 43.067862454488647 ], [ 23.738427362332914, 43.054788316527549 ], [ 23.716723259870548, 43.034608670154 ], [ 23.691711867308811, 43.027296454367843 ], [ 23.665356885811605, 43.028304144720494 ], [ 23.650164015257076, 43.042101752194071 ], [ 23.634351027078196, 43.053031318240699 ], [ 23.591666294363961, 43.026728014486253 ], [ 23.552598911010932, 43.009158027121259 ], [ 23.532031691009706, 43.026004544074453 ], [ 23.516942173242683, 43.048328762362473 ], [ 23.493584426180291, 43.070549627862988 ], [ 23.46712609189558, 43.088998115270783 ], [ 23.450279574942385, 43.097473049241785 ], [ 23.435190057175362, 43.108247586556843 ], [ 23.434569939551068, 43.128143012090334 ], [ 23.448625929443097, 43.136643785382375 ], [ 23.469813267068616, 43.136850490957386 ], [ 23.462061801710774, 43.150312202546104 ], [ 23.431366001339882, 43.161965237205891 ], [ 23.398913201782818, 43.162947089136821 ], [ 23.396639438659122, 43.189870510515618 ], [ 23.424648064756354, 43.206768704312253 ], [ 23.450692986991726, 43.208603216964889 ], [ 23.46350874163511, 43.231470038511418 ], [ 23.401910435318314, 43.256171372710639 ], [ 23.327186314197036, 43.27565338799343 ], [ 23.335661248168037, 43.303326118205746 ], [ 23.360362583266578, 43.325779526803672 ], [ 23.380723096793474, 43.35355560980355 ], [ 23.405011020741995, 43.378541164842886 ], [ 23.412762485200517, 43.41747935608737 ], [ 23.410798781338656, 43.455926621816104 ], [ 23.441391228922043, 43.488017687066588 ], [ 23.48221560966266, 43.505303452692146 ], [ 23.506193475248665, 43.494399725966559 ], [ 23.52614057762554, 43.493366197192245 ], [ 23.54619103368924, 43.494399725966559 ], [ 23.56851525197726, 43.513442490778289 ], [ 23.592493116664002, 43.527007555154512 ], [ 23.609029575254681, 43.519230252274326 ], [ 23.622775505884874, 43.528299466347278 ], [ 23.621535272434869, 43.540546780209695 ], [ 23.609236280829691, 43.545533556028772 ], [ 23.598590935623179, 43.553336697330678 ], [ 23.590839471164657, 43.563051866550381 ], [ 23.578643833246304, 43.565971584820772 ], [ 23.567998488039791, 43.571604315786544 ], [ 23.551048618299092, 43.583825792126561 ], [ 23.556422966846412, 43.59868276589691 ], [ 23.574096306998968, 43.607777818391583 ], [ 23.585775180979795, 43.621032823505971 ], [ 23.584224888267954, 43.633254298946724 ], [ 23.58680870885479, 43.645114040980161 ], [ 23.606652459343479, 43.678316148471424 ], [ 23.622465448421679, 43.714102078348219 ], [ 23.633317498303882, 43.800944322122746 ], [ 23.620853516000068, 43.834009930000022 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-15", "NAME_1": "Pleven" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.46634077900012, 43.802417908000095 ], [ 24.500137166000115, 43.799498190000108 ], [ 24.661763224000083, 43.755656716000047 ], [ 24.705602661000057, 43.743765158000045 ], [ 24.752628215000101, 43.738804220000091 ], [ 24.963674764000075, 43.749604594000047 ], [ 25.08160038200009, 43.718934631000096 ], [ 25.211308227000131, 43.711880799000099 ], [ 25.252339315000086, 43.704646098000026 ], [ 25.285404774710571, 43.690391315007162 ], [ 25.282519158732157, 43.684413967430601 ], [ 25.255647414196801, 43.672295843878089 ], [ 25.23115278467327, 43.656095282970909 ], [ 25.217303501255572, 43.615684313380314 ], [ 25.187434523184663, 43.589122626308153 ], [ 25.195185987643185, 43.558168443518809 ], [ 25.211619094345735, 43.556204738757685 ], [ 25.219370557904881, 43.546644599168872 ], [ 25.196736281254346, 43.511530462860549 ], [ 25.167797479170304, 43.484839586377802 ], [ 25.135964797237591, 43.461688543991102 ], [ 25.147540316632274, 43.440346178533275 ], [ 25.190328403033334, 43.442051499976742 ], [ 25.199113397165547, 43.406007188580872 ], [ 25.220300733891747, 43.374148668226439 ], [ 25.225675083338388, 43.336528224797689 ], [ 25.184127232185972, 43.307486069926142 ], [ 25.166040479984133, 43.298442695174231 ], [ 25.149607375080279, 43.287125556399303 ], [ 25.130693800578399, 43.282836412570362 ], [ 25.111573521400885, 43.27989085497893 ], [ 25.075193312321517, 43.305935777214302 ], [ 25.049871859598625, 43.343607895687796 ], [ 25.029821405333564, 43.363813382281762 ], [ 25.024447055886924, 43.337639268837165 ], [ 25.006670362946863, 43.324978542925408 ], [ 24.980108676774023, 43.310741685880089 ], [ 24.950239698703115, 43.301414090288006 ], [ 24.922231072605882, 43.295471300060399 ], [ 24.896289504057336, 43.294515286551189 ], [ 24.87458540159497, 43.313325507366244 ], [ 24.836964959065597, 43.309863185837344 ], [ 24.813813917578216, 43.311258449817558 ], [ 24.752835727986451, 43.308726305174844 ], [ 24.699609001953831, 43.280381782293375 ], [ 24.685553012961179, 43.264697984424402 ], [ 24.674287551029636, 43.258961899771862 ], [ 24.663538853035618, 43.270434068177678 ], [ 24.652170038316569, 43.258729355775131 ], [ 24.643901808121939, 43.244621689939038 ], [ 24.625194940094389, 43.227439277100927 ], [ 24.589848259789335, 43.205399277854383 ], [ 24.574448682760476, 43.201135973346481 ], [ 24.570934686186774, 43.208525701699728 ], [ 24.564216749603304, 43.214080919199034 ], [ 24.515330845142387, 43.215657050332595 ], [ 24.443087191820439, 43.231004951417333 ], [ 24.424070265430373, 43.244621689939038 ], [ 24.41053104037519, 43.263871161225097 ], [ 24.392547641860176, 43.27797882706119 ], [ 24.373013949734002, 43.278211371057921 ], [ 24.353893669657111, 43.273793036019754 ], [ 24.334049920067741, 43.260460517438901 ], [ 24.316996698438857, 43.245629381190952 ], [ 24.288884718654799, 43.240358385431136 ], [ 24.259532505420793, 43.231573391298923 ], [ 24.235244582371536, 43.226276557117387 ], [ 24.209819776861195, 43.229170436966058 ], [ 24.179020622803478, 43.241521104515357 ], [ 24.156489698940447, 43.237981269519935 ], [ 24.132821892616221, 43.252347316875159 ], [ 24.080215285107329, 43.23482900725287 ], [ 24.026781854399019, 43.211729640810233 ], [ 23.959395785686922, 43.231625068142364 ], [ 23.950714146140911, 43.245164293197547 ], [ 23.960842725611258, 43.265163072417806 ], [ 23.978619418551318, 43.29459280001771 ], [ 24.052413363685787, 43.315805976064894 ], [ 24.067192823989615, 43.313015449003728 ], [ 24.081868930606618, 43.308080349128772 ], [ 24.092927686963151, 43.318699855913621 ], [ 24.111944614252536, 43.327743232464172 ], [ 24.145844353733935, 43.329241848332629 ], [ 24.180674269202143, 43.324926866081967 ], [ 24.228113233738725, 43.343065294227927 ], [ 24.236484815821598, 43.400968735918411 ], [ 24.24423628117944, 43.420450751201201 ], [ 24.243202752405068, 43.437503973729406 ], [ 24.224909294628219, 43.484529527115967 ], [ 24.178710565340282, 43.491350816486943 ], [ 24.151425408755586, 43.522356676119671 ], [ 24.140159945924722, 43.558426825937261 ], [ 24.120212844447224, 43.588993435098928 ], [ 24.145120884221399, 43.606020820104732 ], [ 24.17230268711927, 43.629972846369753 ], [ 24.199484490916518, 43.647413642525578 ], [ 24.231523879323561, 43.645036525715057 ], [ 24.287541130618649, 43.665242011409703 ], [ 24.328985629882879, 43.711234036021949 ], [ 24.336705386944061, 43.759250924690377 ], [ 24.35823368400014, 43.760017395000077 ], [ 24.375493612000042, 43.763867290000022 ], [ 24.431200806000078, 43.794175517000056 ], [ 24.46634077900012, 43.802417908000095 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-04", "NAME_1": "Veliko Tarnovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.285404774710571, 43.690391315007162 ], [ 25.288719523000083, 43.688962301000075 ], [ 25.323032674000103, 43.669712830000051 ], [ 25.359619588000044, 43.654287415000042 ], [ 25.403131144000071, 43.650049948000103 ], [ 25.426075480000094, 43.654390767000066 ], [ 25.467416626000045, 43.6677491250001 ], [ 25.482450034641374, 43.669714752733626 ], [ 25.489845005142854, 43.658369046094606 ], [ 25.508241814807889, 43.614444078131669 ], [ 25.486744418819853, 43.57997589786936 ], [ 25.464833611681797, 43.567418524745108 ], [ 25.470104608340989, 43.545869451913632 ], [ 25.521057570350592, 43.517654120241446 ], [ 25.522814568637386, 43.505355130434907 ], [ 25.538214145666245, 43.503494778461231 ], [ 25.55185672440831, 43.514811917236159 ], [ 25.566842889387829, 43.508352363071083 ], [ 25.557127720168126, 43.480214544865305 ], [ 25.55009972522214, 43.453265285964164 ], [ 25.605703566266527, 43.412570095533454 ], [ 25.662754347235307, 43.39667959208947 ], [ 25.675673455565516, 43.41502472581044 ], [ 25.699754673039706, 43.415128079497265 ], [ 25.707816195860744, 43.403552558303886 ], [ 25.723112420102098, 43.403759263878896 ], [ 25.738098585980936, 43.391615301904608 ], [ 25.7578389827828, 43.378231106480371 ], [ 25.791738722264199, 43.371125597168543 ], [ 25.826258579369949, 43.368774318779742 ], [ 25.852200147918495, 43.364330146219231 ], [ 25.878348422941372, 43.365105292575151 ], [ 25.906460401826052, 43.37572479936 ], [ 25.935399203910094, 43.375208035422474 ], [ 25.940566846882462, 43.353684801012719 ], [ 25.949351841014618, 43.330249539584543 ], [ 25.984078402796058, 43.320637722253082 ], [ 26.020458611875426, 43.318854885544511 ], [ 26.058802524816656, 43.308209540337998 ], [ 26.086294386976363, 43.285420234056517 ], [ 26.065210402138348, 43.268780423577653 ], [ 26.063453402952177, 43.246559557177818 ], [ 26.096216261771019, 43.214881903976675 ], [ 26.107688429277573, 43.17793325501566 ], [ 26.093735793072369, 43.175737006257805 ], [ 26.079163039242871, 43.175814521522909 ], [ 26.07275516102186, 43.161345120480917 ], [ 26.073065220283695, 43.144136868321766 ], [ 26.059112583179171, 43.122381089915336 ], [ 26.057252232104815, 43.098454902072035 ], [ 26.070171340434968, 43.077060858871505 ], [ 26.081643507941521, 43.054762478105829 ], [ 26.086397738864548, 43.039543769129637 ], [ 26.09838667210721, 43.030345363847459 ], [ 26.112132602737404, 43.026805527952718 ], [ 26.111305780437419, 43.01378306683506 ], [ 26.089394972400044, 43.00006297552585 ], [ 26.09456261627173, 42.977480373920116 ], [ 26.1355937025873, 42.970762438235909 ], [ 26.171973910767349, 42.949058335773543 ], [ 26.149546339691824, 42.909835923688888 ], [ 26.106138136565733, 42.891258245971244 ], [ 26.082263624666552, 42.886064765476533 ], [ 26.066864047637694, 42.868288072536473 ], [ 26.069137810761333, 42.839375107974831 ], [ 26.056838820055475, 42.817231756840101 ], [ 26.033481072993084, 42.817335110526926 ], [ 26.010330030606383, 42.813459377848005 ], [ 25.989659457817709, 42.79635447937568 ], [ 25.967335238630312, 42.784210517401448 ], [ 25.901602817216201, 42.791212673925713 ], [ 25.856437615803316, 42.783900458139613 ], [ 25.81085900234109, 42.782815253421177 ], [ 25.789671664715513, 42.785089016544873 ], [ 25.768587680776818, 42.782401842271156 ], [ 25.749777459062443, 42.784443061398122 ], [ 25.731690707759924, 42.788809718693528 ], [ 25.69520714679237, 42.77632986083438 ], [ 25.676603630653005, 42.764961046115388 ], [ 25.661204053624147, 42.757390448810156 ], [ 25.643530715270288, 42.765607001262083 ], [ 25.620069613621752, 42.766950589298233 ], [ 25.597228631396206, 42.807826645982914 ], [ 25.618519320909911, 42.839090888034036 ], [ 25.627200962254562, 42.862345283208242 ], [ 25.627614373404583, 42.888519395753463 ], [ 25.615832146636251, 42.903376370423132 ], [ 25.596195102621891, 42.907639674931033 ], [ 25.553303664332645, 42.939084785034765 ], [ 25.576454705820026, 42.994275214029869 ], [ 25.559401483291822, 43.033213406173729 ], [ 25.498629998375691, 43.040706489113177 ], [ 25.467624138742963, 43.047811998424947 ], [ 25.397757603130856, 43.045744940876318 ], [ 25.332852004016729, 43.051222643110464 ], [ 25.306807081781358, 43.060110989130806 ], [ 25.293474562301185, 43.086646836881982 ], [ 25.279108514046641, 43.107963364817408 ], [ 25.143716261696113, 43.109642848738474 ], [ 25.117464633885731, 43.124732368304137 ], [ 25.100618116932537, 43.150131334493494 ], [ 25.078603957006976, 43.161861884418386 ], [ 25.0725061380478, 43.181085517282781 ], [ 25.116534457898922, 43.215243639182574 ], [ 25.111573521400885, 43.27989085497893 ], [ 25.130693800578399, 43.282836412570362 ], [ 25.149607375080279, 43.287125556399303 ], [ 25.166040479984133, 43.298442695174231 ], [ 25.184127232185972, 43.307486069926142 ], [ 25.225675083338388, 43.336528224797689 ], [ 25.220300733891747, 43.374148668226439 ], [ 25.199113397165547, 43.406007188580872 ], [ 25.190328403033334, 43.442051499976742 ], [ 25.147540316632274, 43.440346178533275 ], [ 25.135964797237591, 43.461688543991102 ], [ 25.167797479170304, 43.484839586377802 ], [ 25.196736281254346, 43.511530462860549 ], [ 25.219370557904881, 43.546644599168872 ], [ 25.211619094345735, 43.556204738757685 ], [ 25.195185987643185, 43.558168443518809 ], [ 25.187434523184663, 43.589122626308153 ], [ 25.217303501255572, 43.615684313380314 ], [ 25.23115278467327, 43.656095282970909 ], [ 25.255647414196801, 43.672295843878089 ], [ 25.282519158732157, 43.684413967430601 ], [ 25.285404774710571, 43.690391315007162 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-09", "NAME_1": "Kardzhali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.05948958500008, 41.643776770000059 ], [ 26.066914917000105, 41.63549591100012 ], [ 26.08117761200009, 41.630457459000056 ], [ 26.095233602000121, 41.628390401 ], [ 26.106705770000133, 41.624282125000079 ], [ 26.115284057000054, 41.616634013000109 ], [ 26.121071818000132, 41.608210755000115 ], [ 26.130270223000139, 41.582682597000073 ], [ 26.130993693000022, 41.575137838000032 ], [ 26.129443400000099, 41.559376527000055 ], [ 26.13120039800009, 41.552658590000121 ], [ 26.136781453000111, 41.549196269000063 ], [ 26.15249108900008, 41.547025859000073 ], [ 26.158072144000073, 41.542323303 ], [ 26.163136434000052, 41.529145813000028 ], [ 26.164480021000116, 41.517725322000032 ], [ 26.162929728000108, 41.506459860000078 ], [ 26.159312378000038, 41.493799134000128 ], [ 26.147633504000055, 41.484755758000077 ], [ 26.145876506000064, 41.478037822000047 ], [ 26.156211792000079, 41.460416158000058 ], [ 26.160449260000121, 41.455868632000019 ], [ 26.174298543000106, 41.445998434000032 ], [ 26.177399129000037, 41.439952291000097 ], [ 26.175642130000142, 41.431890767000098 ], [ 26.170577840000078, 41.429565328000066 ], [ 26.164273316000077, 41.427860006000017 ], [ 26.159002319000138, 41.421813863000054 ], [ 26.147840210000112, 41.396905823000097 ], [ 26.132440633000016, 41.371532695 ], [ 26.120865112000075, 41.357786764000068 ], [ 26.114663941000089, 41.355202942000076 ], [ 26.107325887000087, 41.356598206000044 ], [ 26.02185306800007, 41.341663717000088 ], [ 26.008933960000064, 41.336806132000063 ], [ 25.982268921000127, 41.323266907000075 ], [ 25.959634643000072, 41.314998678000038 ], [ 25.948575887000061, 41.313965150000072 ], [ 25.935140015000115, 41.315928854 ], [ 25.921187378000127, 41.316032206000031 ], [ 25.896279338000056, 41.306265361000058 ], [ 25.882016642000082, 41.30404327400008 ], [ 25.862689657000118, 41.3100894170001 ], [ 25.833337443000062, 41.334635722000073 ], [ 25.811013224000078, 41.34104360000002 ], [ 25.800781290000117, 41.338046366000114 ], [ 25.763470906000066, 41.319029440000051 ], [ 25.72874434400012, 41.317065735000099 ], [ 25.71747888200008, 41.31412017800001 ], [ 25.705179891000029, 41.307298889000052 ], [ 25.698048543000084, 41.301924540000087 ], [ 25.691227255000058, 41.298410543000031 ], [ 25.679961792000086, 41.297170309000094 ], [ 25.670453328000093, 41.299185689000055 ], [ 25.649576050000121, 41.308487447000076 ], [ 25.639757528000047, 41.311071269000067 ], [ 25.551494182000084, 41.315670471000132 ], [ 25.537954956000107, 41.312208150000075 ], [ 25.530203491000094, 41.302751364000116 ], [ 25.523692261000122, 41.291692607000115 ], [ 25.514907267000126, 41.283476054000076 ], [ 25.50508874500008, 41.280582174000088 ], [ 25.497337280000067, 41.281202291000071 ], [ 25.489482462000126, 41.283062643000065 ], [ 25.479095500000113, 41.283786112000072 ], [ 25.453463989000056, 41.280427144000058 ], [ 25.285722290000052, 41.239396057000093 ], [ 25.262261190000089, 41.238104147000044 ], [ 25.239110148000094, 41.240894674000018 ], [ 25.219679810000116, 41.249731344000011 ], [ 25.177098430000058, 41.293863017000021 ], [ 25.157874797000119, 41.306110332000046 ], [ 25.153847444703786, 41.307535007834304 ], [ 25.154775018052646, 41.318305161853687 ], [ 25.146403435969773, 41.365511583292914 ], [ 25.149710727867784, 41.375045885359327 ], [ 25.154775018052646, 41.383753364226379 ], [ 25.143819613584299, 41.396026516510517 ], [ 25.134827914776452, 41.40819631600715 ], [ 25.148263787943449, 41.430598049560331 ], [ 25.151777785416471, 41.455325222181216 ], [ 25.146920199907299, 41.464652817773299 ], [ 25.152914666078971, 41.477468574215322 ], [ 25.142062616196768, 41.523486437249232 ], [ 25.088629184589195, 41.512014268843416 ], [ 25.070749138861629, 41.491602078473136 ], [ 25.047081333436779, 41.500516262015879 ], [ 25.027547642209925, 41.5286540802216 ], [ 25.01163130124354, 41.558988146285913 ], [ 24.993647901829206, 41.577514146260796 ], [ 24.993441196254196, 41.599683335817247 ], [ 25.014731886667221, 41.605781154776423 ], [ 25.037469517004581, 41.602551378143573 ], [ 25.065064731951793, 41.607719021115884 ], [ 25.090179478200355, 41.621723334164528 ], [ 25.09390018124833, 41.629242255525639 ], [ 25.086252068677993, 41.638724880748612 ], [ 25.084391716704317, 41.661798407870208 ], [ 25.091006301399659, 41.681383775041184 ], [ 25.077053664295136, 41.691925768359511 ], [ 25.066098259826788, 41.725360418948128 ], [ 25.048941685410455, 41.743576362359192 ], [ 25.038296340203942, 41.760810452040687 ], [ 25.049561802135429, 41.780602524786673 ], [ 25.067131788601159, 41.794968573940537 ], [ 25.091109653287845, 41.793340765963535 ], [ 25.097000766672011, 41.809024562933189 ], [ 25.102065056856873, 41.831012885336349 ], [ 25.124285923256707, 41.844526271969869 ], [ 25.133484327639565, 41.866385403163804 ], [ 25.149400668605949, 41.881784980192663 ], [ 25.163973423334824, 41.885764064759769 ], [ 25.172965122142671, 41.897494615584037 ], [ 25.195909458055041, 41.908579210362234 ], [ 25.222574497015387, 41.903695787330719 ], [ 25.210792271146374, 41.878477688294652 ], [ 25.247172479326423, 41.817034409810162 ], [ 25.299985793309702, 41.809696357400924 ], [ 25.330371535318079, 41.817551173747631 ], [ 25.35310916475612, 41.838480129854076 ], [ 25.370162388183644, 41.846024888737588 ], [ 25.389282668260535, 41.846645006361939 ], [ 25.400238070930186, 41.83140045806465 ], [ 25.398894483793356, 41.811866766837795 ], [ 25.408402948337368, 41.797784939423366 ], [ 25.449227329077985, 41.784013170371509 ], [ 25.470828077853469, 41.7699830189012 ], [ 25.492222121053999, 41.771378281982095 ], [ 25.509688754732224, 41.785925198289249 ], [ 25.53159956187028, 41.786700343745849 ], [ 25.55009972522214, 41.76977631332619 ], [ 25.567152947750344, 41.761482244709782 ], [ 25.585756462990332, 41.761378892821597 ], [ 25.597125277709381, 41.753214016313791 ], [ 25.607770622915893, 41.740940864029653 ], [ 25.634022250726275, 41.700917467167358 ], [ 25.61138797407574, 41.661204129566897 ], [ 25.605600212579702, 41.633660590563807 ], [ 25.639086540911137, 41.620353909505297 ], [ 25.658516880249806, 41.623144436566463 ], [ 25.680220981812852, 41.63043081303158 ], [ 25.697067497866726, 41.623351142141473 ], [ 25.714740838019225, 41.621051541495433 ], [ 25.73489464687043, 41.632006944165141 ], [ 25.746986932001278, 41.651695665022885 ], [ 25.782230258619506, 41.664640610875495 ], [ 25.81716352687522, 41.654822088868286 ], [ 25.820884229923251, 41.634358222553885 ], [ 25.827602165607459, 41.614772854483647 ], [ 25.873077427181499, 41.578160102306867 ], [ 25.916899040558235, 41.562708849333887 ], [ 25.95689659989813, 41.591983548202165 ], [ 25.964234653206688, 41.612602444147456 ], [ 25.980564406222356, 41.619372057574367 ], [ 25.998857863099886, 41.619061998312532 ], [ 26.009813266668914, 41.635753486534156 ], [ 26.052394646595644, 41.64663137483808 ], [ 26.059009230391666, 41.643970038086763 ], [ 26.05948958500008, 41.643776770000059 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-21", "NAME_1": "Smolyan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.296118612000072, 41.515244853000056 ], [ 24.286816854000051, 41.517621969000103 ], [ 24.285059855000071, 41.523151347000109 ], [ 24.287333618000105, 41.531626282 ], [ 24.286403442000051, 41.54035959900007 ], [ 24.26686975100003, 41.549764710000048 ], [ 24.250746704000051, 41.563458964000048 ], [ 24.23328007, 41.561805318 ], [ 24.214366496000082, 41.555759176000052 ], [ 24.197697918000074, 41.547710635000087 ], [ 24.197314080580327, 41.54795522745178 ], [ 24.077941521983632, 41.624022935709888 ], [ 24.103573032169663, 41.636631984778262 ], [ 24.123106724295894, 41.654615383293276 ], [ 24.096338331648667, 41.668309637979405 ], [ 24.087036573578985, 41.680918687047722 ], [ 24.072567173436312, 41.686344713337803 ], [ 24.102332797820338, 41.709392402037679 ], [ 24.099645622647358, 41.742051907169753 ], [ 24.08465945766784, 41.756986396205207 ], [ 24.06636600079031, 41.767941798874915 ], [ 24.063058708892299, 41.791997178826705 ], [ 24.099645622647358, 41.797061469011567 ], [ 24.14956505678191, 41.791144518105 ], [ 24.189252556859969, 41.764091905516977 ], [ 24.184705030612633, 41.745746771796064 ], [ 24.177160271729122, 41.72812510848695 ], [ 24.195040316557368, 41.727117418134299 ], [ 24.214263950321026, 41.740708320032923 ], [ 24.271314732189126, 41.741948554382247 ], [ 24.314619581628392, 41.771042385197916 ], [ 24.315239699252686, 41.817396145016062 ], [ 24.357717726391968, 41.861476141710568 ], [ 24.38686323405102, 41.875428778815092 ], [ 24.423966912642868, 41.889510606229464 ], [ 24.439883253609253, 41.921524156214787 ], [ 24.451148716440116, 41.949429430423834 ], [ 24.562563104103958, 41.885247300822243 ], [ 24.610312127003056, 41.901835436256363 ], [ 24.659094678676468, 41.925348212050324 ], [ 24.71097781667288, 41.936510322093682 ], [ 24.760173781294952, 41.941135361807483 ], [ 24.808749627393354, 41.930980943016095 ], [ 24.845233189260284, 41.895815130763651 ], [ 24.889778273048819, 41.874937853299286 ], [ 24.914376255359855, 41.858065497025052 ], [ 24.933806593799261, 41.83140045806465 ], [ 24.966879510081299, 41.8323823108949 ], [ 24.993751254616711, 41.838945216948161 ], [ 25.031268345257899, 41.800937200791168 ], [ 25.05018191886046, 41.800756334537198 ], [ 25.067131788601159, 41.794968573940537 ], [ 25.049561802135429, 41.780602524786673 ], [ 25.038296340203942, 41.760810452040687 ], [ 25.048941685410455, 41.743576362359192 ], [ 25.066098259826788, 41.725360418948128 ], [ 25.077053664295136, 41.691925768359511 ], [ 25.091006301399659, 41.681383775041184 ], [ 25.084391716704317, 41.661798407870208 ], [ 25.086252068677993, 41.638724880748612 ], [ 25.09390018124833, 41.629242255525639 ], [ 25.090179478200355, 41.621723334164528 ], [ 25.065064731951793, 41.607719021115884 ], [ 25.037469517004581, 41.602551378143573 ], [ 25.014731886667221, 41.605781154776423 ], [ 24.993441196254196, 41.599683335817247 ], [ 24.993647901829206, 41.577514146260796 ], [ 25.01163130124354, 41.558988146285913 ], [ 25.027547642209925, 41.5286540802216 ], [ 25.047081333436779, 41.500516262015879 ], [ 25.070749138861629, 41.491602078473136 ], [ 25.088629184589195, 41.512014268843416 ], [ 25.142062616196768, 41.523486437249232 ], [ 25.152914666078971, 41.477468574215322 ], [ 25.146920199907299, 41.464652817773299 ], [ 25.151777785416471, 41.455325222181216 ], [ 25.148263787943449, 41.430598049560331 ], [ 25.134827914776452, 41.40819631600715 ], [ 25.143819613584299, 41.396026516510517 ], [ 25.154775018052646, 41.383753364226379 ], [ 25.149710727867784, 41.375045885359327 ], [ 25.146403435969773, 41.365511583292914 ], [ 25.154775018052646, 41.318305161853687 ], [ 25.153847444703786, 41.307535007834304 ], [ 25.116533650000093, 41.3207347620001 ], [ 25.112606242000112, 41.324145406000028 ], [ 25.104854777000128, 41.334067282000021 ], [ 25.101857544000097, 41.336651103000023 ], [ 25.096793254000119, 41.336702779000049 ], [ 25.080360148000068, 41.334067282000021 ], [ 24.916959269000074, 41.386363831000025 ], [ 24.88636682200007, 41.400626526000011 ], [ 24.872930949000107, 41.401866761000051 ], [ 24.863009074000104, 41.400316468000128 ], [ 24.842131795000029, 41.394735413000021 ], [ 24.803271118000083, 41.392668355000055 ], [ 24.800170532000038, 41.379335836000038 ], [ 24.802857706000054, 41.36192087799999 ], [ 24.794279419000134, 41.347399801000037 ], [ 24.774435669000127, 41.348071595000036 ], [ 24.752628215000101, 41.362747701000032 ], [ 24.718728475000091, 41.395717265000073 ], [ 24.69919478300011, 41.408946432000064 ], [ 24.680901326000111, 41.415509338000064 ], [ 24.661264282000104, 41.417679749000044 ], [ 24.638216594000113, 41.417679749000044 ], [ 24.644314413000075, 41.427653300000046 ], [ 24.609484497000039, 41.427239888000045 ], [ 24.595841919000122, 41.429772034000038 ], [ 24.58044234200014, 41.440520732000053 ], [ 24.579718872000029, 41.444189759000054 ], [ 24.58219934100012, 41.455248515000065 ], [ 24.581062459000094, 41.460209453000104 ], [ 24.577238403000052, 41.463568421 ], [ 24.567729939000088, 41.468115947000044 ], [ 24.564112589000104, 41.471061504000048 ], [ 24.558738241000128, 41.476849264000023 ], [ 24.553570598000135, 41.48077667299999 ], [ 24.549436483000108, 41.485427552000047 ], [ 24.54654260300012, 41.493644104000069 ], [ 24.543338664000146, 41.521342672000017 ], [ 24.53093632000008, 41.547542623000126 ], [ 24.510162395000123, 41.56165028900007 ], [ 24.481326945000092, 41.553227031000077 ], [ 24.45920943200008, 41.549506328000049 ], [ 24.438848917000144, 41.527698873000034 ], [ 24.423966105000119, 41.525218405000075 ], [ 24.40288212100009, 41.527853902000075 ], [ 24.387482544000108, 41.526665345000069 ], [ 24.353892863000084, 41.519120586 ], [ 24.345004517000064, 41.518397115000099 ], [ 24.318236124000094, 41.520774231000061 ], [ 24.309554484000046, 41.519792379000094 ], [ 24.303043254000073, 41.516950175000019 ], [ 24.296118612000072, 41.515244853000056 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-03", "NAME_1": "Varna" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.086997312875667, 43.35523474928425 ], [ 28.031097852000073, 43.248968817000048 ], [ 28.017588738000086, 43.23273346600007 ], [ 28.000173373000052, 43.223211981000077 ], [ 27.931976759000065, 43.209784247000073 ], [ 27.920583530000044, 43.204046942000048 ], [ 27.91382897200009, 43.202337958000044 ], [ 27.90398196700005, 43.202337958000044 ], [ 27.90398196700005, 43.195502020000049 ], [ 27.938731316000087, 43.176499742000033 ], [ 27.945567254000082, 43.168850002000056 ], [ 27.944346550000034, 43.157131252000056 ], [ 27.92514082100007, 43.11359284100007 ], [ 27.911387566000087, 43.065171617000033 ], [ 27.904307488000086, 43.055853583000044 ], [ 27.895518425000034, 43.049261786000045 ], [ 27.887705925000034, 43.042141018000052 ], [ 27.883555535000085, 43.030991929000038 ], [ 27.885427280000044, 43.008612372000073 ], [ 27.900401238000086, 42.962876695000034 ], [ 27.90398196700005, 42.942287502000056 ], [ 27.898448113000086, 42.874660549000055 ], [ 27.90398196700005, 42.85968659100007 ], [ 27.883962436000047, 42.848374742000033 ], [ 27.876882765027574, 42.847798366901088 ], [ 27.852801547553383, 42.840744534432702 ], [ 27.831510858039621, 42.826585190853848 ], [ 27.8018485864431, 42.822063503927552 ], [ 27.772703077884728, 42.830409246689385 ], [ 27.744797803675681, 42.841080431216881 ], [ 27.718856235127134, 42.8549555530563 ], [ 27.697358840038419, 42.875135200329225 ], [ 27.673277621664909, 42.89177501080809 ], [ 27.647646112378141, 42.903221339892923 ], [ 27.620567661368455, 42.909396674117204 ], [ 27.583153924414034, 42.8919817163831 ], [ 27.495200636600089, 42.875677801789095 ], [ 27.445797967302326, 42.883739326408772 ], [ 27.400116001052595, 42.903893134360658 ], [ 27.376758253990204, 42.905830999800799 ], [ 27.355364210789674, 42.91143789324417 ], [ 27.324151645581935, 42.948334866261064 ], [ 27.284877556653896, 42.976705227564196 ], [ 27.236508416130505, 42.988409939067424 ], [ 27.176770460888065, 42.963010972878067 ], [ 27.119099562294934, 42.953657537965 ], [ 27.093364699321398, 42.976214301149071 ], [ 27.078481887129385, 43.000941473769956 ], [ 27.101942986979225, 43.014273993250185 ], [ 27.161887647796675, 43.038639431564491 ], [ 27.209119906758247, 43.047398587274984 ], [ 27.203642206322741, 43.071712347846528 ], [ 27.15796023917369, 43.083287869039907 ], [ 27.185865513382737, 43.10008270914966 ], [ 27.162714470996036, 43.120003974004192 ], [ 27.179250928687395, 43.141423854727066 ], [ 27.211600376356273, 43.154885566315784 ], [ 27.212323845868752, 43.178450018953185 ], [ 27.179250928687395, 43.187984321019599 ], [ 27.153102654563838, 43.206949571465543 ], [ 27.15682335761187, 43.231676744086428 ], [ 27.179250928687395, 43.243924058848222 ], [ 27.214390903417438, 43.246404527546872 ], [ 27.248704054048858, 43.252398992819224 ], [ 27.250564406022477, 43.271984360889519 ], [ 27.250254346760698, 43.297228299246569 ], [ 27.27784956170791, 43.304695542864977 ], [ 27.302550896806451, 43.3190357526978 ], [ 27.289011671751211, 43.33621816733455 ], [ 27.271751742748734, 43.353607285747614 ], [ 27.270718214873682, 43.378799547261281 ], [ 27.279813267368354, 43.39768728334144 ], [ 27.299863721633415, 43.414301256297904 ], [ 27.335417108412798, 43.45202505071552 ], [ 27.322808058445105, 43.465719306300912 ], [ 27.310922478889267, 43.473677477233764 ], [ 27.3227047056576, 43.485563055890282 ], [ 27.333970167589143, 43.508093979753312 ], [ 27.285084263128226, 43.52003123615259 ], [ 27.338517693836479, 43.554396064526713 ], [ 27.41892622186765, 43.571242581479908 ], [ 27.458510370057525, 43.562715968866826 ], [ 27.488379347229056, 43.532123521283438 ], [ 27.494993931025078, 43.508042303809248 ], [ 27.51990197079931, 43.499153957788906 ], [ 27.530547316005823, 43.503701484036242 ], [ 27.538505486938675, 43.509850978939483 ], [ 27.558659294890504, 43.511788845278943 ], [ 27.577882927754899, 43.518532620284191 ], [ 27.588321568285721, 43.53775625314853 ], [ 27.603824497202766, 43.541942044189966 ], [ 27.63824100062169, 43.505923570316497 ], [ 27.678031854386575, 43.478896796150195 ], [ 27.715135532079103, 43.473315742027864 ], [ 27.740870395952015, 43.456779283437129 ], [ 27.75926720561705, 43.431767889976129 ], [ 27.808669874914756, 43.387687893281623 ], [ 27.867684359745397, 43.365415350937667 ], [ 27.888148227858437, 43.370531317965913 ], [ 27.904477979974786, 43.384277249495426 ], [ 27.933830194108168, 43.394302477077645 ], [ 27.965456169566551, 43.392829697832269 ], [ 27.992948031726257, 43.372546699570478 ], [ 28.013515251727483, 43.353090521810088 ], [ 28.048758579245032, 43.353219713019314 ], [ 28.083898553075755, 43.35621694655481 ], [ 28.086997312875667, 43.35523474928425 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-16", "NAME_1": "Plovdiv" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.011527947556715, 42.748269557893764 ], [ 25.006360303685028, 42.713052069697255 ], [ 25.022896763175083, 42.641557726108147 ], [ 25.013491652317896, 42.622101549247077 ], [ 24.994371372241005, 42.616985582218831 ], [ 25.018659295290206, 42.57667796541574 ], [ 25.018245884140242, 42.563293769092127 ], [ 25.025997348598764, 42.541331285110687 ], [ 25.042740512764453, 42.524278063481802 ], [ 25.081601189643152, 42.502548123497093 ], [ 25.126559686380403, 42.501721300297731 ], [ 25.159529249874936, 42.509705308752984 ], [ 25.175859001991341, 42.489473985535994 ], [ 25.156325310764487, 42.454049790865156 ], [ 25.179269646676858, 42.434516100537564 ], [ 25.192292107794515, 42.429761867815898 ], [ 25.197356397979377, 42.416868597907467 ], [ 25.19105187344519, 42.402528388074643 ], [ 25.173585238867645, 42.404233710417373 ], [ 25.136378208387612, 42.4159125843982 ], [ 25.108369582290379, 42.401107286571971 ], [ 25.114260694775226, 42.365734767845254 ], [ 25.115810988386386, 42.341291816064427 ], [ 25.126559686380403, 42.319070950563912 ], [ 25.149090610243434, 42.286153063013444 ], [ 25.119738397009371, 42.273414821836525 ], [ 25.085838656628709, 42.263208727101073 ], [ 25.073126254772831, 42.228973089936119 ], [ 25.088009066964844, 42.188045356408054 ], [ 25.10723269982924, 42.177632555198215 ], [ 25.11529422444886, 42.181249905458742 ], [ 25.126146275230383, 42.1719998242325 ], [ 25.141959263409262, 42.167038885935824 ], [ 25.152914666078971, 42.160450141460842 ], [ 25.149400668605949, 42.146471665934598 ], [ 25.167384067120963, 42.143991197235948 ], [ 25.182163527424848, 42.168253281863429 ], [ 25.200560337089883, 42.169777737052925 ], [ 25.235596958133101, 42.176831570420632 ], [ 25.267222935390123, 42.170733751461455 ], [ 25.304533318657718, 42.151587632962844 ], [ 25.329544712118775, 42.124509181953158 ], [ 25.308460728180023, 42.131356309745854 ], [ 25.29337120861436, 42.133449204816941 ], [ 25.283966098656492, 42.133242499241931 ], [ 25.282312453157147, 42.087095444998738 ], [ 25.29223432795186, 42.052937323998265 ], [ 25.299985793309702, 42.017022202912301 ], [ 25.294301384601226, 42.005756740980814 ], [ 25.299055617322836, 41.996868394960416 ], [ 25.310424432041884, 41.987876695253249 ], [ 25.307530552193214, 41.972012031130305 ], [ 25.2737341646, 41.929172267885804 ], [ 25.222574497015387, 41.903695787330719 ], [ 25.195909458055041, 41.908579210362234 ], [ 25.172965122142671, 41.897494615584037 ], [ 25.163973423334824, 41.885764064759769 ], [ 25.149400668605949, 41.881784980192663 ], [ 25.133484327639565, 41.866385403163804 ], [ 25.124285923256707, 41.844526271969869 ], [ 25.102065056856873, 41.831012885336349 ], [ 25.097000766672011, 41.809024562933189 ], [ 25.091109653287845, 41.793340765963535 ], [ 25.067131788601159, 41.794968573940537 ], [ 25.05018191886046, 41.800756334537198 ], [ 25.031268345257899, 41.800937200791168 ], [ 24.993751254616711, 41.838945216948161 ], [ 24.966879510081299, 41.8323823108949 ], [ 24.933806593799261, 41.83140045806465 ], [ 24.914376255359855, 41.858065497025052 ], [ 24.889778273048819, 41.874937853299286 ], [ 24.845233189260284, 41.895815130763651 ], [ 24.808749627393354, 41.930980943016095 ], [ 24.760173781294952, 41.941135361807483 ], [ 24.71097781667288, 41.936510322093682 ], [ 24.659094678676468, 41.925348212050324 ], [ 24.610312127003056, 41.901835436256363 ], [ 24.562563104103958, 41.885247300822243 ], [ 24.451148716440116, 41.949429430423834 ], [ 24.462620883946613, 41.995964057395327 ], [ 24.447014601342744, 42.043273830722683 ], [ 24.441433547220413, 42.070869046569214 ], [ 24.453525832351261, 42.093399970432245 ], [ 24.450321893240755, 42.134896144741276 ], [ 24.473369581940631, 42.148564561905005 ], [ 24.500964796887843, 42.153706367354971 ], [ 24.515744256292351, 42.168795885121995 ], [ 24.499827915326023, 42.182877713435687 ], [ 24.483084751160334, 42.192360337759339 ], [ 24.483808220672813, 42.212359116979655 ], [ 24.48876915896949, 42.240884507913677 ], [ 24.481121047298473, 42.26814382607671 ], [ 24.464894647070309, 42.285636298176598 ], [ 24.463551059933479, 42.300364080737722 ], [ 24.478330519337987, 42.326512355760599 ], [ 24.455179477850606, 42.356097113890655 ], [ 24.437092725648768, 42.361626492068922 ], [ 24.437299432123098, 42.380979316142486 ], [ 24.427584262903395, 42.403200182542378 ], [ 24.42655073412908, 42.425472723987014 ], [ 24.428411086102699, 42.43539459878167 ], [ 24.416112095396841, 42.460793564971027 ], [ 24.394407992934532, 42.464100856869038 ], [ 24.396681756058172, 42.51440786373189 ], [ 24.408153923564726, 42.562079373164522 ], [ 24.441846958370434, 42.563190416304622 ], [ 24.468305290856449, 42.577143053409145 ], [ 24.47295616989129, 42.599286404543932 ], [ 24.447221306917754, 42.612618924024105 ], [ 24.416318800971851, 42.644994208316064 ], [ 24.373117303420827, 42.661685696537631 ], [ 24.360198195090618, 42.707419338731484 ], [ 24.396681756058172, 42.754909980111449 ], [ 24.437609491384876, 42.751706041000944 ], [ 24.500034620901033, 42.792013657804034 ], [ 24.537861769005417, 42.792478745797439 ], [ 24.585300734441319, 42.788551337174454 ], [ 24.630672642328591, 42.775296332060066 ], [ 24.664365676234979, 42.742455959774702 ], [ 24.703949822626214, 42.716669419957725 ], [ 24.75200890478709, 42.709434719436729 ], [ 24.767098422554113, 42.711941026557099 ], [ 24.775056594386285, 42.719098211812991 ], [ 24.827663201895234, 42.718994859025486 ], [ 24.878719516692342, 42.710235704214369 ], [ 24.924711541304589, 42.714033922527506 ], [ 24.966156039669499, 42.732094835408304 ], [ 24.969566685254279, 42.744367987692442 ], [ 24.980005323986518, 42.753178819346999 ], [ 25.011217889194199, 42.758527330371976 ], [ 25.011527947556715, 42.748269557893764 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-24", "NAME_1": "Stara Zagora" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.126559686380403, 42.501721300297731 ], [ 25.081601189643152, 42.502548123497093 ], [ 25.042740512764453, 42.524278063481802 ], [ 25.025997348598764, 42.541331285110687 ], [ 25.018245884140242, 42.563293769092127 ], [ 25.018659295290206, 42.57667796541574 ], [ 24.994371372241005, 42.616985582218831 ], [ 25.013491652317896, 42.622101549247077 ], [ 25.022896763175083, 42.641557726108147 ], [ 25.006360303685028, 42.713052069697255 ], [ 25.011527947556715, 42.748269557893764 ], [ 25.062894320716282, 42.745091458104298 ], [ 25.114570754037061, 42.752532864200305 ], [ 25.166143832771638, 42.770697129868608 ], [ 25.21626997158188, 42.772634996208069 ], [ 25.23073937262393, 42.755555935258201 ], [ 25.247172479326423, 42.742766018137218 ], [ 25.287686801704524, 42.760439358289716 ], [ 25.341843702824633, 42.752584540144369 ], [ 25.394036900082881, 42.735789700034616 ], [ 25.426282993165557, 42.737856757583245 ], [ 25.45046756432663, 42.751551012269374 ], [ 25.467314081279824, 42.749458116299024 ], [ 25.483850538971183, 42.745401516466814 ], [ 25.501937290273702, 42.751344305795044 ], [ 25.517026808040725, 42.758527330371976 ], [ 25.535733676967595, 42.752972113771989 ], [ 25.559401483291822, 42.772738348995574 ], [ 25.575731235408171, 42.767234809239028 ], [ 25.592784457936375, 42.750026557079934 ], [ 25.61273156121257, 42.737934271949086 ], [ 25.627200962254562, 42.748502101890494 ], [ 25.620069613621752, 42.766950589298233 ], [ 25.643530715270288, 42.765607001262083 ], [ 25.661204053624147, 42.757390448810156 ], [ 25.676603630653005, 42.764961046115388 ], [ 25.69520714679237, 42.77632986083438 ], [ 25.731690707759924, 42.788809718693528 ], [ 25.749777459062443, 42.784443061398122 ], [ 25.768587680776818, 42.782401842271156 ], [ 25.789671664715513, 42.785089016544873 ], [ 25.81085900234109, 42.782815253421177 ], [ 25.821917758697566, 42.714912420771554 ], [ 25.850546502419149, 42.644167385116702 ], [ 25.87865848220315, 42.604040636366278 ], [ 25.882999301976213, 42.568280544911204 ], [ 25.831012811192238, 42.538644110837026 ], [ 25.842071566649452, 42.523916327376583 ], [ 25.864705845098626, 42.51768931720818 ], [ 25.881862420414336, 42.49378896688728 ], [ 25.884342889113043, 42.469707750312409 ], [ 25.872664015132159, 42.449812323879598 ], [ 25.900569289341206, 42.411778469300884 ], [ 25.899329054092561, 42.386741238317484 ], [ 25.912661573572734, 42.364132799189292 ], [ 25.958860303759991, 42.316228745759986 ], [ 25.979220819085526, 42.27085683877209 ], [ 25.974363233576355, 42.197553819153427 ], [ 26.024592726073422, 42.152724514524721 ], [ 26.05539188013114, 42.160320950251617 ], [ 26.084434035002687, 42.161044419764153 ], [ 26.106448194928248, 42.153603014567466 ], [ 26.130116001252418, 42.157039495876006 ], [ 26.129599237314949, 42.100608832531577 ], [ 26.143345167945142, 42.07365957273106 ], [ 26.142828403108297, 42.045702623477268 ], [ 26.099006788832241, 42.035858263048397 ], [ 26.057045525630485, 42.019606025297833 ], [ 26.028003370758938, 42.037150174241106 ], [ 26.002165154997897, 42.065210476282459 ], [ 25.949765252164639, 42.108076077049304 ], [ 25.878451775728877, 42.123217270760392 ], [ 25.869976840858499, 42.127299709913643 ], [ 25.8561275574408, 42.120478421441987 ], [ 25.845068801084267, 42.108567003464429 ], [ 25.803520949032531, 42.078310451765901 ], [ 25.756598748433476, 42.061515610756828 ], [ 25.732930942109249, 42.086423652329643 ], [ 25.691589797431163, 42.118333849527517 ], [ 25.663684523222173, 42.135774644784021 ], [ 25.63257531080194, 42.124586697218263 ], [ 25.607563918240203, 42.12998688418736 ], [ 25.622550083219721, 42.145489814003668 ], [ 25.624410435193397, 42.162827257371987 ], [ 25.622963495269062, 42.180216375785108 ], [ 25.588857049313333, 42.192747911386959 ], [ 25.540487908789942, 42.167323105876619 ], [ 25.506794874883553, 42.176288967162066 ], [ 25.473928664176469, 42.166522121998298 ], [ 25.459459263134477, 42.134276028016245 ], [ 25.449847445802959, 42.098670966192117 ], [ 25.439615512645787, 42.099937038963162 ], [ 25.428556756289254, 42.099652818123047 ], [ 25.41708458788338, 42.101564846040787 ], [ 25.406025832426224, 42.109238797032845 ], [ 25.398171014280877, 42.113088691290045 ], [ 25.386802198662508, 42.114018867276855 ], [ 25.365098097099462, 42.11298533850254 ], [ 25.329544712118775, 42.124509181953158 ], [ 25.304533318657718, 42.151587632962844 ], [ 25.267222935390123, 42.170733751461455 ], [ 25.235596958133101, 42.176831570420632 ], [ 25.200560337089883, 42.169777737052925 ], [ 25.182163527424848, 42.168253281863429 ], [ 25.167384067120963, 42.143991197235948 ], [ 25.149400668605949, 42.146471665934598 ], [ 25.152914666078971, 42.160450141460842 ], [ 25.141959263409262, 42.167038885935824 ], [ 25.126146275230383, 42.1719998242325 ], [ 25.11529422444886, 42.181249905458742 ], [ 25.10723269982924, 42.177632555198215 ], [ 25.088009066964844, 42.188045356408054 ], [ 25.073126254772831, 42.228973089936119 ], [ 25.085838656628709, 42.263208727101073 ], [ 25.119738397009371, 42.273414821836525 ], [ 25.149090610243434, 42.286153063013444 ], [ 25.126559686380403, 42.319070950563912 ], [ 25.115810988386386, 42.341291816064427 ], [ 25.114260694775226, 42.365734767845254 ], [ 25.108369582290379, 42.401107286571971 ], [ 25.136378208387612, 42.4159125843982 ], [ 25.173585238867645, 42.404233710417373 ], [ 25.19105187344519, 42.402528388074643 ], [ 25.197356397979377, 42.416868597907467 ], [ 25.192292107794515, 42.429761867815898 ], [ 25.179269646676858, 42.434516100537564 ], [ 25.156325310764487, 42.454049790865156 ], [ 25.175859001991341, 42.489473985535994 ], [ 25.159529249874936, 42.509705308752984 ], [ 25.126559686380403, 42.501721300297731 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-20", "NAME_1": "Sliven" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.024592726073422, 42.152724514524721 ], [ 25.974363233576355, 42.197553819153427 ], [ 25.979220819085526, 42.27085683877209 ], [ 25.958860303759991, 42.316228745759986 ], [ 25.912661573572734, 42.364132799189292 ], [ 25.899329054092561, 42.386741238317484 ], [ 25.900569289341206, 42.411778469300884 ], [ 25.872664015132159, 42.449812323879598 ], [ 25.884342889113043, 42.469707750312409 ], [ 25.881862420414336, 42.49378896688728 ], [ 25.864705845098626, 42.51768931720818 ], [ 25.842071566649452, 42.523916327376583 ], [ 25.831012811192238, 42.538644110837026 ], [ 25.882999301976213, 42.568280544911204 ], [ 25.87865848220315, 42.604040636366278 ], [ 25.850546502419149, 42.644167385116702 ], [ 25.821917758697566, 42.714912420771554 ], [ 25.81085900234109, 42.782815253421177 ], [ 25.856437615803316, 42.783900458139613 ], [ 25.901602817216201, 42.791212673925713 ], [ 25.967335238630312, 42.784210517401448 ], [ 25.989659457817709, 42.79635447937568 ], [ 26.010330030606383, 42.813459377848005 ], [ 26.033481072993084, 42.817335110526926 ], [ 26.056838820055475, 42.817231756840101 ], [ 26.069137810761333, 42.839375107974831 ], [ 26.066864047637694, 42.868288072536473 ], [ 26.082263624666552, 42.886064765476533 ], [ 26.106138136565733, 42.891258245971244 ], [ 26.149546339691824, 42.909835923688888 ], [ 26.171973910767349, 42.949058335773543 ], [ 26.198742303414576, 42.952236437361648 ], [ 26.224270460813102, 42.958721829049125 ], [ 26.236879509881476, 42.9729328485721 ], [ 26.251348910923468, 42.985774440737828 ], [ 26.267988722301652, 42.991329658237134 ], [ 26.274706658885179, 43.004843044870597 ], [ 26.275636833972669, 43.020268460321176 ], [ 26.274706658885179, 43.034660346098065 ], [ 26.291759881413384, 43.031740627827674 ], [ 26.308503044679753, 43.032360745452024 ], [ 26.335788202163769, 43.041507472991441 ], [ 26.360902948412331, 43.03303253812112 ], [ 26.356355422164995, 43.021121121042881 ], [ 26.363383416211661, 43.010010687842964 ], [ 26.37361535026821, 43.015152493292931 ], [ 26.381263461939227, 43.025022691244203 ], [ 26.41867719889359, 43.006315823216653 ], [ 26.444205357191436, 43.005178940755513 ], [ 26.469010044178162, 43.009364731796893 ], [ 26.491437616153064, 43.019855048271836 ], [ 26.513451776078568, 43.01339549410676 ], [ 26.542907342100136, 42.998461005071306 ], [ 26.574326612882885, 42.986575426414788 ], [ 26.552519159431654, 42.95768830027481 ], [ 26.572362909021024, 42.923762722371691 ], [ 26.57577355280722, 42.903996487148163 ], [ 26.566368441950033, 42.881129666500897 ], [ 26.58073449110384, 42.854335436331326 ], [ 26.592310012297219, 42.828626409980814 ], [ 26.577427199205886, 42.814027817729595 ], [ 26.573189732220328, 42.795527656176375 ], [ 26.57825402240519, 42.770593777081103 ], [ 26.5553096855935, 42.755478420892359 ], [ 26.523993767598256, 42.746900133234533 ], [ 26.498982375036576, 42.73010529222546 ], [ 26.512831659353594, 42.704189562098577 ], [ 26.544457634811977, 42.696618963894025 ], [ 26.568848910648683, 42.684965929234238 ], [ 26.593136833697884, 42.675586655899451 ], [ 26.627656690803633, 42.683208930048067 ], [ 26.660832960772495, 42.695843818437424 ], [ 26.663726840621166, 42.662874254043572 ], [ 26.653598260251499, 42.633211982446994 ], [ 26.643366327094327, 42.621843166828683 ], [ 26.630240513189108, 42.61618459744119 ], [ 26.603472121441257, 42.619776109279996 ], [ 26.593860304109739, 42.610138455325455 ], [ 26.5795976086427, 42.603032945114307 ], [ 26.563991326938151, 42.592206732754505 ], [ 26.548798456383622, 42.577556464559166 ], [ 26.490920851316218, 42.564017239503983 ], [ 26.433249952723145, 42.567996324071089 ], [ 26.404517857113376, 42.562751165833618 ], [ 26.378162875616226, 42.548953559259303 ], [ 26.388394809672718, 42.53275299745286 ], [ 26.399040154879231, 42.519394640450287 ], [ 26.380023227589845, 42.512185777451634 ], [ 26.363176710636651, 42.500326036317517 ], [ 26.342402785060472, 42.460767727448626 ], [ 26.29589399561138, 42.44929555904281 ], [ 26.245251091964292, 42.463015652150602 ], [ 26.224063755238092, 42.453429674140125 ], [ 26.234192335607759, 42.422475491350838 ], [ 26.204943475161258, 42.407489326371319 ], [ 26.168563266981153, 42.405370591979192 ], [ 26.175384556352185, 42.368576971749803 ], [ 26.206597120660547, 42.367465929509024 ], [ 26.224993931224901, 42.357595729759112 ], [ 26.17373090995352, 42.265740871743787 ], [ 26.180862257687011, 42.217165024746066 ], [ 26.166392856645018, 42.180345566994276 ], [ 26.130116001252418, 42.157039495876006 ], [ 26.106448194928248, 42.153603014567466 ], [ 26.084434035002687, 42.161044419764153 ], [ 26.05539188013114, 42.160320950251617 ], [ 26.024592726073422, 42.152724514524721 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-27", "NAME_1": "Shumen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.572362909021024, 42.923762722371691 ], [ 26.552519159431654, 42.95768830027481 ], [ 26.574326612882885, 42.986575426414788 ], [ 26.590863070574244, 42.991510525390424 ], [ 26.605125766940546, 43.002181708119338 ], [ 26.629827101139767, 43.006470851948222 ], [ 26.628276808427927, 43.023601589741531 ], [ 26.614220819435275, 43.037683417155961 ], [ 26.627346633340437, 43.047295234487478 ], [ 26.645019971694296, 43.049233099927619 ], [ 26.653908318614015, 43.066208808089982 ], [ 26.65649214010017, 43.080988268393867 ], [ 26.677989536088205, 43.084889837695812 ], [ 26.686257765383573, 43.09891999006544 ], [ 26.667344190881693, 43.107239895304929 ], [ 26.65690555214951, 43.121244208353517 ], [ 26.6778861833007, 43.146358953702702 ], [ 26.709925570808423, 43.155143947834915 ], [ 26.723878207912946, 43.174574286274265 ], [ 26.73535037631882, 43.200464178878747 ], [ 26.749923130148318, 43.209145820223398 ], [ 26.764289178402862, 43.209352524899089 ], [ 26.766046176689656, 43.252192288143533 ], [ 26.733490025244464, 43.297512519187364 ], [ 26.739071079366795, 43.320508531043856 ], [ 26.748682895798993, 43.343711249374621 ], [ 26.762532179216691, 43.358542384723251 ], [ 26.781342400931067, 43.368154202054768 ], [ 26.772660759586358, 43.403475043038782 ], [ 26.723051384713642, 43.410942288455828 ], [ 26.732146437208314, 43.439002591396445 ], [ 26.718090448215605, 43.459931545704251 ], [ 26.723258091187915, 43.484736232690977 ], [ 26.757571241819335, 43.501686103330997 ], [ 26.79508833156126, 43.510522773407217 ], [ 26.809351027028242, 43.529643053484108 ], [ 26.792607862862553, 43.549538479017542 ], [ 26.818342725836089, 43.563387763334561 ], [ 26.848004998331987, 43.583128160136482 ], [ 26.873119744580549, 43.603462836140977 ], [ 26.883971795362072, 43.607364407241562 ], [ 26.895547315656074, 43.607881171179088 ], [ 26.906812777587618, 43.594600328542299 ], [ 26.922315708303302, 43.587624010439697 ], [ 26.988151483404238, 43.651651109511079 ], [ 27.013162875965918, 43.667412420846517 ], [ 27.000760531573235, 43.699581000462786 ], [ 27.054090610393359, 43.72162099881001 ], [ 27.094088168833878, 43.703120836357471 ], [ 27.133775668911994, 43.669996243231992 ], [ 27.200128207950399, 43.668911038513613 ], [ 27.256248813831689, 43.63529551897301 ], [ 27.276919386620364, 43.604935615386296 ], [ 27.305858188704406, 43.594858710061374 ], [ 27.345442335995017, 43.603850409768597 ], [ 27.385646600010546, 43.609353950424463 ], [ 27.408797642397246, 43.598631089952789 ], [ 27.41892622186765, 43.571242581479908 ], [ 27.338517693836479, 43.554396064526713 ], [ 27.285084263128226, 43.52003123615259 ], [ 27.333970167589143, 43.508093979753312 ], [ 27.3227047056576, 43.485563055890282 ], [ 27.310922478889267, 43.473677477233764 ], [ 27.322808058445105, 43.465719306300912 ], [ 27.335417108412798, 43.45202505071552 ], [ 27.299863721633415, 43.414301256297904 ], [ 27.279813267368354, 43.39768728334144 ], [ 27.270718214873682, 43.378799547261281 ], [ 27.271751742748734, 43.353607285747614 ], [ 27.289011671751211, 43.33621816733455 ], [ 27.302550896806451, 43.3190357526978 ], [ 27.27784956170791, 43.304695542864977 ], [ 27.250254346760698, 43.297228299246569 ], [ 27.250564406022477, 43.271984360889519 ], [ 27.248704054048858, 43.252398992819224 ], [ 27.214390903417438, 43.246404527546872 ], [ 27.179250928687395, 43.243924058848222 ], [ 27.15682335761187, 43.231676744086428 ], [ 27.153102654563838, 43.206949571465543 ], [ 27.179250928687395, 43.187984321019599 ], [ 27.212323845868752, 43.178450018953185 ], [ 27.211600376356273, 43.154885566315784 ], [ 27.179250928687395, 43.141423854727066 ], [ 27.162714470996036, 43.120003974004192 ], [ 27.185865513382737, 43.10008270914966 ], [ 27.15796023917369, 43.083287869039907 ], [ 27.203642206322741, 43.071712347846528 ], [ 27.209119906758247, 43.047398587274984 ], [ 27.161887647796675, 43.038639431564491 ], [ 27.101942986979225, 43.014273993250185 ], [ 27.078481887129385, 43.000941473769956 ], [ 27.093364699321398, 42.976214301149071 ], [ 27.119099562294934, 42.953657537965 ], [ 27.072074008908373, 42.93838715304463 ], [ 27.023704868384925, 42.928801174134833 ], [ 26.981536899608216, 42.940221665697266 ], [ 26.941952752317661, 42.93898143224726 ], [ 26.909189894398082, 42.93399465642824 ], [ 26.87756391804038, 42.949600938132789 ], [ 26.820823195434116, 42.946112779081488 ], [ 26.800979444945426, 42.946913763859072 ], [ 26.783822869629716, 42.938697211407145 ], [ 26.762325473641681, 42.908388983764553 ], [ 26.728735793422118, 42.894229641085019 ], [ 26.689668410069032, 42.888906969381082 ], [ 26.654631789025814, 42.899965724838296 ], [ 26.655458612225175, 42.922186591238187 ], [ 26.645226678168626, 42.937172757117025 ], [ 26.572362909021024, 42.923762722371691 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-17", "NAME_1": "Razgrad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.000760531573235, 43.699581000462786 ], [ 27.013162875965918, 43.667412420846517 ], [ 26.988151483404238, 43.651651109511079 ], [ 26.922315708303302, 43.587624010439697 ], [ 26.906812777587618, 43.594600328542299 ], [ 26.895547315656074, 43.607881171179088 ], [ 26.883971795362072, 43.607364407241562 ], [ 26.873119744580549, 43.603462836140977 ], [ 26.848004998331987, 43.583128160136482 ], [ 26.818342725836089, 43.563387763334561 ], [ 26.792607862862553, 43.549538479017542 ], [ 26.809351027028242, 43.529643053484108 ], [ 26.79508833156126, 43.510522773407217 ], [ 26.757571241819335, 43.501686103330997 ], [ 26.723258091187915, 43.484736232690977 ], [ 26.718090448215605, 43.459931545704251 ], [ 26.732146437208314, 43.439002591396445 ], [ 26.723051384713642, 43.410942288455828 ], [ 26.70176069519988, 43.415076401754504 ], [ 26.681193475198711, 43.415308945751235 ], [ 26.677059360101396, 43.376525784137584 ], [ 26.656078728950149, 43.372029933834369 ], [ 26.63416792181215, 43.369342760460029 ], [ 26.598407831256395, 43.342160955763461 ], [ 26.574119907307875, 43.342057603875276 ], [ 26.550452100983648, 43.349809068333798 ], [ 26.487200148268187, 43.349705716445612 ], [ 26.480068801434015, 43.37895457599285 ], [ 26.485339797193888, 43.417660224140036 ], [ 26.434180128709954, 43.429959214845837 ], [ 26.373822055843164, 43.435746975442555 ], [ 26.360489536362991, 43.441483059195775 ], [ 26.348500604019648, 43.448614406929323 ], [ 26.363693474574177, 43.483573512707437 ], [ 26.322765741046112, 43.515096137176954 ], [ 26.271502719774674, 43.537704576305146 ], [ 26.227267694348598, 43.547678127943243 ], [ 26.184169548685702, 43.535947577118975 ], [ 26.162362095234471, 43.562121690563572 ], [ 26.165566034344977, 43.59677073797917 ], [ 26.163705682371301, 43.604496364915292 ], [ 26.161535272035167, 43.611550198282998 ], [ 26.166909620582487, 43.615477606905984 ], [ 26.17104373478054, 43.620722765143455 ], [ 26.168563266981153, 43.643537909846657 ], [ 26.179932081700201, 43.661624661149176 ], [ 26.192851190030353, 43.653537299007098 ], [ 26.206287062298088, 43.643537909846657 ], [ 26.243597445565626, 43.663950100216937 ], [ 26.295273878886405, 43.658369046094606 ], [ 26.308503044679753, 43.674337063005055 ], [ 26.322248976209266, 43.696454575718064 ], [ 26.342506137847977, 43.704386909128516 ], [ 26.339922316361765, 43.745082099559227 ], [ 26.35780236208933, 43.762936305965752 ], [ 26.33351443904013, 43.772522284875549 ], [ 26.303335401707386, 43.774434312793289 ], [ 26.251555617397798, 43.792107652046468 ], [ 26.253932733309, 43.832105211386363 ], [ 26.299511345871906, 43.852724107331653 ], [ 26.32152550579741, 43.890163682707794 ], [ 26.396249626918745, 43.949565742065317 ], [ 26.431389600749469, 43.953286445113349 ], [ 26.464772577192662, 43.946826890948216 ], [ 26.491644320828698, 43.925019435698403 ], [ 26.520066358975271, 43.930910549082569 ], [ 26.545697870060621, 43.944863186187092 ], [ 26.568332146711157, 43.936956692097624 ], [ 26.586005486863712, 43.919024970425994 ], [ 26.593756952221554, 43.901920071054406 ], [ 26.617218052071451, 43.869363918709837 ], [ 26.701864047987385, 43.847608141202727 ], [ 26.735453729106268, 43.844920966029747 ], [ 26.753127069258824, 43.825800685952856 ], [ 26.767389763826543, 43.807248847556252 ], [ 26.775141229184385, 43.819289455843716 ], [ 26.790334099738914, 43.821304837448281 ], [ 26.808110792678917, 43.826369126733766 ], [ 26.822166781671626, 43.842207953334366 ], [ 26.837152947550464, 43.843680732579742 ], [ 26.843870884133992, 43.824534614081131 ], [ 26.85978722510032, 43.806163641938497 ], [ 26.878080681977849, 43.79624176714384 ], [ 26.888209263246893, 43.785131333943866 ], [ 26.903092075438906, 43.775519518411045 ], [ 26.903298781013916, 43.753040270492079 ], [ 26.913324008596078, 43.741361396511195 ], [ 26.931307407111149, 43.749991360113142 ], [ 26.947533807339312, 43.742834173957931 ], [ 26.971408319238549, 43.716918442931785 ], [ 27.000760531573235, 43.699581000462786 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-25", "NAME_1": "Targovishte" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.363383416211661, 43.010010687842964 ], [ 26.356355422164995, 43.021121121042881 ], [ 26.360902948412331, 43.03303253812112 ], [ 26.335788202163769, 43.041507472991441 ], [ 26.308503044679753, 43.032360745452024 ], [ 26.291759881413384, 43.031740627827674 ], [ 26.274706658885179, 43.034660346098065 ], [ 26.275636833972669, 43.020268460321176 ], [ 26.274706658885179, 43.004843044870597 ], [ 26.267988722301652, 42.991329658237134 ], [ 26.251348910923468, 42.985774440737828 ], [ 26.236879509881476, 42.9729328485721 ], [ 26.224270460813102, 42.958721829049125 ], [ 26.198742303414576, 42.952236437361648 ], [ 26.171973910767349, 42.949058335773543 ], [ 26.1355937025873, 42.970762438235909 ], [ 26.09456261627173, 42.977480373920116 ], [ 26.089394972400044, 43.00006297552585 ], [ 26.111305780437419, 43.01378306683506 ], [ 26.112132602737404, 43.026805527952718 ], [ 26.09838667210721, 43.030345363847459 ], [ 26.086397738864548, 43.039543769129637 ], [ 26.081643507941521, 43.054762478105829 ], [ 26.070171340434968, 43.077060858871505 ], [ 26.057252232104815, 43.098454902072035 ], [ 26.059112583179171, 43.122381089915336 ], [ 26.073065220283695, 43.144136868321766 ], [ 26.07275516102186, 43.161345120480917 ], [ 26.079163039242871, 43.175814521522909 ], [ 26.093735793072369, 43.175737006257805 ], [ 26.107688429277573, 43.17793325501566 ], [ 26.096216261771019, 43.214881903976675 ], [ 26.063453402952177, 43.246559557177818 ], [ 26.065210402138348, 43.268780423577653 ], [ 26.086294386976363, 43.285420234056517 ], [ 26.058802524816656, 43.308209540337998 ], [ 26.020458611875426, 43.318854885544511 ], [ 26.022215610162277, 43.341463325572022 ], [ 26.018804966376081, 43.363399970232422 ], [ 25.996170688826226, 43.371306464321833 ], [ 25.969402297078318, 43.373838608964604 ], [ 25.95172895692582, 43.394044093759874 ], [ 25.946147901904112, 43.4165750194216 ], [ 25.970642531427643, 43.421794339237351 ], [ 25.996480747188741, 43.435695299498434 ], [ 26.019631788676065, 43.453316961908229 ], [ 26.033894484143104, 43.475046901892995 ], [ 26.039165479902977, 43.507267158352647 ], [ 26.070481397898163, 43.517809149872335 ], [ 26.094045851434885, 43.530934963777554 ], [ 26.116886833660431, 43.527472643147917 ], [ 26.139107700060265, 43.530883286934113 ], [ 26.164325799096332, 43.527420966304533 ], [ 26.184169548685702, 43.535947577118975 ], [ 26.227267694348598, 43.547678127943243 ], [ 26.271502719774674, 43.537704576305146 ], [ 26.322765741046112, 43.515096137176954 ], [ 26.363693474574177, 43.483573512707437 ], [ 26.348500604019648, 43.448614406929323 ], [ 26.360489536362991, 43.441483059195775 ], [ 26.373822055843164, 43.435746975442555 ], [ 26.434180128709954, 43.429959214845837 ], [ 26.485339797193888, 43.417660224140036 ], [ 26.480068801434015, 43.37895457599285 ], [ 26.487200148268187, 43.349705716445612 ], [ 26.550452100983648, 43.349809068333798 ], [ 26.574119907307875, 43.342057603875276 ], [ 26.598407831256395, 43.342160955763461 ], [ 26.63416792181215, 43.369342760460029 ], [ 26.656078728950149, 43.372029933834369 ], [ 26.677059360101396, 43.376525784137584 ], [ 26.681193475198711, 43.415308945751235 ], [ 26.70176069519988, 43.415076401754504 ], [ 26.723051384713642, 43.410942288455828 ], [ 26.772660759586358, 43.403475043038782 ], [ 26.781342400931067, 43.368154202054768 ], [ 26.762532179216691, 43.358542384723251 ], [ 26.748682895798993, 43.343711249374621 ], [ 26.739071079366795, 43.320508531043856 ], [ 26.733490025244464, 43.297512519187364 ], [ 26.766046176689656, 43.252192288143533 ], [ 26.764289178402862, 43.209352524899089 ], [ 26.749923130148318, 43.209145820223398 ], [ 26.73535037631882, 43.200464178878747 ], [ 26.723878207912946, 43.174574286274265 ], [ 26.709925570808423, 43.155143947834915 ], [ 26.6778861833007, 43.146358953702702 ], [ 26.65690555214951, 43.121244208353517 ], [ 26.667344190881693, 43.107239895304929 ], [ 26.686257765383573, 43.09891999006544 ], [ 26.677989536088205, 43.084889837695812 ], [ 26.65649214010017, 43.080988268393867 ], [ 26.653908318614015, 43.066208808089982 ], [ 26.645019971694296, 43.049233099927619 ], [ 26.627346633340437, 43.047295234487478 ], [ 26.614220819435275, 43.037683417155961 ], [ 26.628276808427927, 43.023601589741531 ], [ 26.629827101139767, 43.006470851948222 ], [ 26.605125766940546, 43.002181708119338 ], [ 26.590863070574244, 42.991510525390424 ], [ 26.574326612882885, 42.986575426414788 ], [ 26.542907342100136, 42.998461005071306 ], [ 26.513451776078568, 43.01339549410676 ], [ 26.491437616153064, 43.019855048271836 ], [ 26.469010044178162, 43.009364731796893 ], [ 26.444205357191436, 43.005178940755513 ], [ 26.41867719889359, 43.006315823216653 ], [ 26.381263461939227, 43.025022691244203 ], [ 26.37361535026821, 43.015152493292931 ], [ 26.363383416211661, 43.010010687842964 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-07", "NAME_1": "Gabrovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.011527947556715, 42.748269557893764 ], [ 25.011217889194199, 42.758527330371976 ], [ 25.002536247849548, 42.807413234832893 ], [ 24.977628208075316, 42.853198553870129 ], [ 24.938250767259092, 42.873533229874624 ], [ 24.894842564133, 42.888803615694258 ], [ 24.885127394013978, 42.899784858584326 ], [ 24.879236280629812, 42.912678128492814 ], [ 24.883163690152173, 42.927922674991407 ], [ 24.878306104643002, 42.942288723245952 ], [ 24.867454053861479, 42.986833807933863 ], [ 24.920164015057253, 43.03362681732375 ], [ 24.911585728298689, 43.066260484034103 ], [ 24.924298130154568, 43.106929836942413 ], [ 24.961711867108988, 43.126928616162672 ], [ 24.96904992041749, 43.164704088322992 ], [ 24.985379673433158, 43.19586497668729 ], [ 25.031991814770436, 43.190904039289933 ], [ 25.0725061380478, 43.181085517282781 ], [ 25.078603957006976, 43.161861884418386 ], [ 25.100618116932537, 43.150131334493494 ], [ 25.117464633885731, 43.124732368304137 ], [ 25.143716261696113, 43.109642848738474 ], [ 25.279108514046641, 43.107963364817408 ], [ 25.293474562301185, 43.086646836881982 ], [ 25.306807081781358, 43.060110989130806 ], [ 25.332852004016729, 43.051222643110464 ], [ 25.397757603130856, 43.045744940876318 ], [ 25.467624138742963, 43.047811998424947 ], [ 25.498629998375691, 43.040706489113177 ], [ 25.559401483291822, 43.033213406173729 ], [ 25.576454705820026, 42.994275214029869 ], [ 25.553303664332645, 42.939084785034765 ], [ 25.596195102621891, 42.907639674931033 ], [ 25.615832146636251, 42.903376370423132 ], [ 25.627614373404583, 42.888519395753463 ], [ 25.627200962254562, 42.862345283208242 ], [ 25.618519320909911, 42.839090888034036 ], [ 25.597228631396206, 42.807826645982914 ], [ 25.620069613621752, 42.766950589298233 ], [ 25.627200962254562, 42.748502101890494 ], [ 25.61273156121257, 42.737934271949086 ], [ 25.592784457936375, 42.750026557079934 ], [ 25.575731235408171, 42.767234809239028 ], [ 25.559401483291822, 42.772738348995574 ], [ 25.535733676967595, 42.752972113771989 ], [ 25.517026808040725, 42.758527330371976 ], [ 25.501937290273702, 42.751344305795044 ], [ 25.483850538971183, 42.745401516466814 ], [ 25.467314081279824, 42.749458116299024 ], [ 25.45046756432663, 42.751551012269374 ], [ 25.426282993165557, 42.737856757583245 ], [ 25.394036900082881, 42.735789700034616 ], [ 25.341843702824633, 42.752584540144369 ], [ 25.287686801704524, 42.760439358289716 ], [ 25.247172479326423, 42.742766018137218 ], [ 25.23073937262393, 42.755555935258201 ], [ 25.21626997158188, 42.772634996208069 ], [ 25.166143832771638, 42.770697129868608 ], [ 25.114570754037061, 42.752532864200305 ], [ 25.062894320716282, 42.745091458104298 ], [ 25.011527947556715, 42.748269557893764 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-13", "NAME_1": "Pazardzhik" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.408153923564726, 42.562079373164522 ], [ 24.396681756058172, 42.51440786373189 ], [ 24.394407992934532, 42.464100856869038 ], [ 24.416112095396841, 42.460793564971027 ], [ 24.428411086102699, 42.43539459878167 ], [ 24.42655073412908, 42.425472723987014 ], [ 24.427584262903395, 42.403200182542378 ], [ 24.437299432123098, 42.380979316142486 ], [ 24.437092725648768, 42.361626492068922 ], [ 24.455179477850606, 42.356097113890655 ], [ 24.478330519337987, 42.326512355760599 ], [ 24.463551059933479, 42.300364080737722 ], [ 24.464894647070309, 42.285636298176598 ], [ 24.481121047298473, 42.26814382607671 ], [ 24.48876915896949, 42.240884507913677 ], [ 24.483808220672813, 42.212359116979655 ], [ 24.483084751160334, 42.192360337759339 ], [ 24.499827915326023, 42.182877713435687 ], [ 24.515744256292351, 42.168795885121995 ], [ 24.500964796887843, 42.153706367354971 ], [ 24.473369581940631, 42.148564561905005 ], [ 24.450321893240755, 42.134896144741276 ], [ 24.453525832351261, 42.093399970432245 ], [ 24.441433547220413, 42.070869046569214 ], [ 24.447014601342744, 42.043273830722683 ], [ 24.462620883946613, 41.995964057395327 ], [ 24.451148716440116, 41.949429430423834 ], [ 24.439883253609253, 41.921524156214787 ], [ 24.423966912642868, 41.889510606229464 ], [ 24.38686323405102, 41.875428778815092 ], [ 24.357717726391968, 41.861476141710568 ], [ 24.315239699252686, 41.817396145016062 ], [ 24.314619581628392, 41.771042385197916 ], [ 24.271314732189126, 41.741948554382247 ], [ 24.214263950321026, 41.740708320032923 ], [ 24.195040316557368, 41.727117418134299 ], [ 24.177160271729122, 41.72812510848695 ], [ 24.184705030612633, 41.745746771796064 ], [ 24.189252556859969, 41.764091905516977 ], [ 24.14956505678191, 41.791144518105 ], [ 24.099645622647358, 41.797061469011567 ], [ 24.063058708892299, 41.791997178826705 ], [ 24.06636600079031, 41.767941798874915 ], [ 24.08465945766784, 41.756986396205207 ], [ 24.099645622647358, 41.742051907169753 ], [ 24.102332797820338, 41.709392402037679 ], [ 24.072567173436312, 41.686344713337803 ], [ 24.054170362871957, 41.693166001809516 ], [ 24.041974724953604, 41.710425929912731 ], [ 23.928183221378561, 41.768975328548549 ], [ 23.917744581747058, 41.784529934308978 ], [ 23.905548943828705, 41.796544705074041 ], [ 23.885808547026784, 41.792436428398446 ], [ 23.868238559661791, 41.795381985090501 ], [ 23.84643110531124, 41.812021796468684 ], [ 23.821729771112018, 41.823829860759417 ], [ 23.795684848876647, 41.860907700929658 ], [ 23.78958702991747, 41.905969550454358 ], [ 23.774394159362942, 41.921911728943087 ], [ 23.762508578907784, 41.939869289935757 ], [ 23.767882928354425, 41.956405748526436 ], [ 23.7666426940051, 41.976456203690816 ], [ 23.791860793041167, 42.020691230016212 ], [ 23.820489535863373, 42.045340888271369 ], [ 23.801265902999035, 42.062704169162032 ], [ 23.800955844636519, 42.084640814721809 ], [ 23.813254836241697, 42.096242174336851 ], [ 23.816045363302862, 42.112313544034805 ], [ 23.809637485081851, 42.132880764036031 ], [ 23.792170851403625, 42.146704209931329 ], [ 23.772637160176771, 42.158202215859546 ], [ 23.763128695632759, 42.177606715877232 ], [ 23.780698682997809, 42.180991523040348 ], [ 23.795684848876647, 42.188691311554749 ], [ 23.794134556164806, 42.202075506979043 ], [ 23.800852491849014, 42.21127391226122 ], [ 23.848084750810585, 42.225743313303269 ], [ 23.880640903155154, 42.261477566336566 ], [ 23.888495721300501, 42.29070058926078 ], [ 23.912473585987186, 42.295997423442316 ], [ 23.924152459068694, 42.283259182265454 ], [ 23.937174920186408, 42.27313060189573 ], [ 23.958052199449412, 42.268040473289204 ], [ 23.974071893203302, 42.283259182265454 ], [ 23.973348422791446, 42.299898992744318 ], [ 23.957535434612623, 42.30958832534094 ], [ 23.941515740858733, 42.346795355820973 ], [ 23.959395785686922, 42.392296454018094 ], [ 23.999600050601828, 42.395758775547051 ], [ 24.038357374693078, 42.408006090308788 ], [ 24.054687126809426, 42.445032254534908 ], [ 24.038667433055593, 42.464901842545999 ], [ 23.988127883095331, 42.458726508321661 ], [ 23.950197381304065, 42.483970444880129 ], [ 23.937691685023253, 42.497897244462251 ], [ 23.921361932007528, 42.507509059995073 ], [ 23.90751264769051, 42.525828355294323 ], [ 23.898107537732642, 42.547015692919842 ], [ 23.903998651116865, 42.569520779260529 ], [ 23.933660922713386, 42.577375597405876 ], [ 23.961359491347423, 42.579287625323616 ], [ 23.988024530307825, 42.572027086380899 ], [ 24.009831983759, 42.558229478907322 ], [ 24.034740025331871, 42.55337189429747 ], [ 24.081455518557334, 42.572879747102604 ], [ 24.106570264805839, 42.573163967043399 ], [ 24.129617954405035, 42.581613064391377 ], [ 24.157523227714762, 42.610732734528028 ], [ 24.194110142369141, 42.621765652462841 ], [ 24.211576776047366, 42.624271959583268 ], [ 24.228940056938086, 42.629672146552309 ], [ 24.257465447872107, 42.628225205728654 ], [ 24.284957310031814, 42.621274726047773 ], [ 24.296222771963357, 42.605849311496513 ], [ 24.301803826985008, 42.587995104190668 ], [ 24.319477166238187, 42.581845608388107 ], [ 24.338597446315077, 42.57781484607824 ], [ 24.35037967308341, 42.565154120166483 ], [ 24.365675897324763, 42.564559840963852 ], [ 24.386966586838469, 42.567608751342789 ], [ 24.408153923564726, 42.562079373164522 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-11", "NAME_1": "Lovech" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.75200890478709, 42.709434719436729 ], [ 24.703949822626214, 42.716669419957725 ], [ 24.664365676234979, 42.742455959774702 ], [ 24.630672642328591, 42.775296332060066 ], [ 24.585300734441319, 42.788551337174454 ], [ 24.537861769005417, 42.792478745797439 ], [ 24.500034620901033, 42.792013657804034 ], [ 24.437609491384876, 42.751706041000944 ], [ 24.396681756058172, 42.754909980111449 ], [ 24.364332310187933, 42.752481188256183 ], [ 24.332499627355901, 42.757778022437776 ], [ 24.30934858586852, 42.769792792303519 ], [ 24.285164014707505, 42.779662991154112 ], [ 24.158556755589757, 42.780851549559316 ], [ 24.138609653212882, 42.803589178997413 ], [ 24.152148879167441, 42.843845119856383 ], [ 24.154009230241741, 42.87634959625683 ], [ 24.151425408755586, 42.908724881448109 ], [ 24.129307896042576, 42.935777493136754 ], [ 24.090550571052006, 42.942340400089392 ], [ 24.065642531277774, 42.960427151391912 ], [ 24.044661900126584, 42.978772285112825 ], [ 24.052310010898282, 42.999778753786416 ], [ 24.046005487263415, 43.020423489052746 ], [ 24.031949497371386, 43.030836290262584 ], [ 24.024301384801049, 43.045641588088813 ], [ 24.00621463439785, 43.060214341918311 ], [ 23.977482537888818, 43.059878445134132 ], [ 23.963736607258625, 43.086233424832642 ], [ 23.958362257811928, 43.114500434247645 ], [ 23.973761833941467, 43.122148545918662 ], [ 23.991021762944001, 43.110857245565398 ], [ 24.016343214767517, 43.110753892777893 ], [ 24.026781854399019, 43.133233140696859 ], [ 24.034946730007562, 43.173308214402539 ], [ 24.026781854399019, 43.211729640810233 ], [ 24.080215285107329, 43.23482900725287 ], [ 24.132821892616221, 43.252347316875159 ], [ 24.156489698940447, 43.237981269519935 ], [ 24.179020622803478, 43.241521104515357 ], [ 24.209819776861195, 43.229170436966058 ], [ 24.235244582371536, 43.226276557117387 ], [ 24.259532505420793, 43.231573391298923 ], [ 24.288884718654799, 43.240358385431136 ], [ 24.316996698438857, 43.245629381190952 ], [ 24.334049920067741, 43.260460517438901 ], [ 24.353893669657111, 43.273793036019754 ], [ 24.373013949734002, 43.278211371057921 ], [ 24.392547641860176, 43.27797882706119 ], [ 24.41053104037519, 43.263871161225097 ], [ 24.424070265430373, 43.244621689939038 ], [ 24.443087191820439, 43.231004951417333 ], [ 24.515330845142387, 43.215657050332595 ], [ 24.564216749603304, 43.214080919199034 ], [ 24.570934686186774, 43.208525701699728 ], [ 24.574448682760476, 43.201135973346481 ], [ 24.589848259789335, 43.205399277854383 ], [ 24.625194940094389, 43.227439277100927 ], [ 24.643901808121939, 43.244621689939038 ], [ 24.652170038316569, 43.258729355775131 ], [ 24.663538853035618, 43.270434068177678 ], [ 24.674287551029636, 43.258961899771862 ], [ 24.685553012961179, 43.264697984424402 ], [ 24.699609001953831, 43.280381782293375 ], [ 24.752835727986451, 43.308726305174844 ], [ 24.813813917578216, 43.311258449817558 ], [ 24.836964959065597, 43.309863185837344 ], [ 24.87458540159497, 43.313325507366244 ], [ 24.896289504057336, 43.294515286551189 ], [ 24.922231072605882, 43.295471300060399 ], [ 24.950239698703115, 43.301414090288006 ], [ 24.980108676774023, 43.310741685880089 ], [ 25.006670362946863, 43.324978542925408 ], [ 25.024447055886924, 43.337639268837165 ], [ 25.029821405333564, 43.363813382281762 ], [ 25.049871859598625, 43.343607895687796 ], [ 25.075193312321517, 43.305935777214302 ], [ 25.111573521400885, 43.27989085497893 ], [ 25.116534457898922, 43.215243639182574 ], [ 25.0725061380478, 43.181085517282781 ], [ 25.031991814770436, 43.190904039289933 ], [ 24.985379673433158, 43.19586497668729 ], [ 24.96904992041749, 43.164704088322992 ], [ 24.961711867108988, 43.126928616162672 ], [ 24.924298130154568, 43.106929836942413 ], [ 24.911585728298689, 43.066260484034103 ], [ 24.920164015057253, 43.03362681732375 ], [ 24.867454053861479, 42.986833807933863 ], [ 24.878306104643002, 42.942288723245952 ], [ 24.883163690152173, 42.927922674991407 ], [ 24.879236280629812, 42.912678128492814 ], [ 24.885127394013978, 42.899784858584326 ], [ 24.894842564133, 42.888803615694258 ], [ 24.938250767259092, 42.873533229874624 ], [ 24.977628208075316, 42.853198553870129 ], [ 25.002536247849548, 42.807413234832893 ], [ 25.011217889194199, 42.758527330371976 ], [ 24.980005323986518, 42.753178819346999 ], [ 24.969566685254279, 42.744367987692442 ], [ 24.966156039669499, 42.732094835408304 ], [ 24.924711541304589, 42.714033922527506 ], [ 24.878719516692342, 42.710235704214369 ], [ 24.827663201895234, 42.718994859025486 ], [ 24.775056594386285, 42.719098211812991 ], [ 24.767098422554113, 42.711941026557099 ], [ 24.75200890478709, 42.709434719436729 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "BG-22", "NAME_1": "Grad Sofiya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.273649529801958, 42.898002020976492 ], [ 23.289565870768286, 42.89350617157254 ], [ 23.302174919836659, 42.882240708741676 ], [ 23.351887648396257, 42.85784943290497 ], [ 23.400566847282164, 42.847772529378688 ], [ 23.450382927729891, 42.863482163870742 ], [ 23.496168246767184, 42.870716865291058 ], [ 23.535545689382047, 42.844646103734704 ], [ 23.572959426336411, 42.842940782291237 ], [ 23.608512811317155, 42.861053372015476 ], [ 23.596317173398802, 42.834853421048535 ], [ 23.575646599710808, 42.806534735689468 ], [ 23.521282993015689, 42.719046535868927 ], [ 23.502782830563149, 42.657913315746896 ], [ 23.517975702016997, 42.635950833564095 ], [ 23.560247022681949, 42.560089829981621 ], [ 23.612750278302656, 42.491463527819519 ], [ 23.64427290187291, 42.469294339162388 ], [ 23.654401483141896, 42.435859686775075 ], [ 23.629596795255907, 42.416946113172571 ], [ 23.600968052433643, 42.426041164767923 ], [ 23.558800082757614, 42.420796007429772 ], [ 23.532031691009706, 42.43425771721985 ], [ 23.543400505728755, 42.467485663132834 ], [ 23.523246697776869, 42.49477081971753 ], [ 23.516735466768353, 42.512185777451634 ], [ 23.516322055618332, 42.524278063481802 ], [ 23.475704379553463, 42.530427558385099 ], [ 23.456687453163397, 42.501333727569431 ], [ 23.432089470852361, 42.472653307004464 ], [ 23.396329380296663, 42.479216213957102 ], [ 23.360259229579754, 42.499835109902392 ], [ 23.278507114411809, 42.532287910358775 ], [ 23.260006951959269, 42.548126736059999 ], [ 23.200785759754979, 42.581535549126272 ], [ 23.169676548234122, 42.590501410411719 ], [ 23.165129021986786, 42.625538032354314 ], [ 23.158101027040743, 42.644425768434417 ], [ 23.147559034621736, 42.661143093279122 ], [ 23.126785109045557, 42.668868720215244 ], [ 23.109318475367331, 42.679410711734931 ], [ 23.085857374618115, 42.696877346312476 ], [ 23.059502394020228, 42.709873969008413 ], [ 23.090611607339781, 42.738838609514175 ], [ 23.132366164067207, 42.742145901412187 ], [ 23.153450148005902, 42.731500556205674 ], [ 23.177221307117634, 42.728942573141239 ], [ 23.194998000057637, 42.735893052822121 ], [ 23.209984165037156, 42.749380601933183 ], [ 23.212154575373347, 42.769146837156768 ], [ 23.199752231879984, 42.787388618090233 ], [ 23.248948194703416, 42.817205919317701 ], [ 23.249671665115216, 42.862810370302327 ], [ 23.273649529801958, 42.898002020976492 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/canada.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/canada.geojson new file mode 100644 index 000000000000..9d801a7e4dda --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/canada.geojson @@ -0,0 +1,19 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "CA-AB", "NAME_1": "Alberta" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.999432144043411, 48.993082694652713 ], [ -110.321298611399769, 48.993082694652713 ], [ -110.747678022196112, 48.993082694652713 ], [ -111.174062926156708, 48.993082694652713 ], [ -111.600442336953051, 48.993082694652713 ], [ -112.026827240913647, 48.993082694652713 ], [ -112.453206651709991, 48.993082694652713 ], [ -112.879591555670586, 48.993082694652713 ], [ -113.30597096646693, 48.993082694652713 ], [ -113.732355870427526, 48.993082694652713 ], [ -114.062517015834686, 48.993082694652713 ], [ -114.050602342528606, 49.014626884927679 ], [ -114.057474291032946, 49.037961846755337 ], [ -114.132538380810473, 49.094058040301491 ], [ -114.163673635904431, 49.146770444656056 ], [ -114.189793632018024, 49.168061949374504 ], [ -114.354846738900235, 49.210688904125618 ], [ -114.378154234906532, 49.232266053386212 ], [ -114.386163268415174, 49.252030458437048 ], [ -114.425906311923441, 49.274409609681356 ], [ -114.479645937996892, 49.333428166620223 ], [ -114.565223944191118, 49.39388593259838 ], [ -114.588015082755845, 49.42031903907548 ], [ -114.590053046700774, 49.451706979725969 ], [ -114.576254218049385, 49.51865766587369 ], [ -114.577473700517785, 49.543618604325872 ], [ -114.601550239522169, 49.550539991308653 ], [ -114.680898997431896, 49.555549757124766 ], [ -114.716714428485645, 49.568502638478236 ], [ -114.734023389106866, 49.587201369660278 ], [ -114.737330273998637, 49.603845657404605 ], [ -114.686040599190534, 49.643066850307008 ], [ -114.642842355355143, 49.730298298947133 ], [ -114.637596383475341, 49.796754600310351 ], [ -114.684930980007579, 49.934270474696802 ], [ -114.677877757082271, 49.954727018445908 ], [ -114.651395212126729, 49.985323943441216 ], [ -114.65196100804674, 50.019612274827324 ], [ -114.667748362164616, 50.060975801795848 ], [ -114.716379345465043, 50.129343724325764 ], [ -114.789136306248324, 50.359144758482586 ], [ -114.992795371634486, 50.545033437448694 ], [ -115.047880822954582, 50.577047598826169 ], [ -115.091188930075404, 50.584814933106856 ], [ -115.127669034006061, 50.584946769049395 ], [ -115.188698089068509, 50.557173330489917 ], [ -115.205957611211289, 50.553657705355789 ], [ -115.222085541514019, 50.562622549447781 ], [ -115.266629610596055, 50.594230216669132 ], [ -115.305438816178068, 50.634561028754518 ], [ -115.310964939435749, 50.642130609121409 ], [ -115.307630588722617, 50.655819574487339 ], [ -115.298358127431399, 50.673496577114804 ], [ -115.311019871078472, 50.696853511599528 ], [ -115.334997533125957, 50.7195952116858 ], [ -115.346522191768713, 50.728944577276849 ], [ -115.359777197157172, 50.728636960077608 ], [ -115.375509619632311, 50.727010983453084 ], [ -115.386204810469991, 50.726461667025859 ], [ -115.398712745517443, 50.731372555885088 ], [ -115.43310544702473, 50.756388425979992 ], [ -115.633891587496606, 50.855243410219742 ], [ -115.639884629717415, 50.869174074813657 ], [ -115.588001693167925, 50.909197269699803 ], [ -115.596192001097549, 50.93626758323245 ], [ -115.618933701183821, 50.962316168210521 ], [ -115.7937811199631, 51.070421641084408 ], [ -115.94043761969823, 51.102051280962854 ], [ -115.997643432427338, 51.129539074980187 ], [ -116.013535156666364, 51.150698743756095 ], [ -116.035002442641527, 51.217649429903815 ], [ -116.041879884310134, 51.229998063187395 ], [ -116.05438232619332, 51.236919450170177 ], [ -116.134923100750072, 51.266219988397268 ], [ -116.176341559361305, 51.297003680977809 ], [ -116.250312509448705, 51.322656758128289 ], [ -116.278761607213639, 51.3478264368228 ], [ -116.309951793950319, 51.447769067588439 ], [ -116.377100234011834, 51.497273464008146 ], [ -116.410795303656585, 51.543723661092571 ], [ -116.457717912868404, 51.573650420046675 ], [ -116.501745624508857, 51.614783234115777 ], [ -116.567350485409932, 51.650697542126437 ], [ -116.633856225251606, 51.75847342514399 ], [ -116.674033228737358, 51.790685340435289 ], [ -116.717703884700143, 51.799935829069426 ], [ -116.758188505385135, 51.788543006369196 ], [ -116.79077395584693, 51.770953894370081 ], [ -116.808236725067758, 51.75260672570144 ], [ -116.814696686251693, 51.721855992106526 ], [ -116.829918244449544, 51.715242222322985 ], [ -116.912782627493371, 51.713846958597884 ], [ -116.938721349185982, 51.735753697714813 ], [ -117.037059975984178, 51.885903849926962 ], [ -117.076984293913426, 51.926388470611954 ], [ -117.244569749525056, 52.047106248654472 ], [ -117.320144703579871, 52.155958791869352 ], [ -117.347588552283028, 52.159089895504422 ], [ -117.384947562497217, 52.144412160569516 ], [ -117.587315734279457, 52.141731496404759 ], [ -117.750638494415966, 52.207715385640597 ], [ -117.787766791730746, 52.232522515493173 ], [ -117.821818917053164, 52.272161188880261 ], [ -117.734642400055776, 52.352570127494488 ], [ -117.731698064005954, 52.383156066161263 ], [ -117.757614813041471, 52.394636779489815 ], [ -117.883056712357956, 52.430155579672885 ], [ -118.001989212012063, 52.485889224377075 ], [ -118.028603592910116, 52.465894106426816 ], [ -118.044286576906813, 52.427419983865406 ], [ -118.060101396846051, 52.412720276273404 ], [ -118.19125618700545, 52.384144835730211 ], [ -118.221023644195682, 52.386100402211071 ], [ -118.242804040534352, 52.408864074954437 ], [ -118.246676721346148, 52.440757386717934 ], [ -118.225028160950004, 52.48269220277075 ], [ -118.266314783618711, 52.518287907253608 ], [ -118.288435756142249, 52.562266180415634 ], [ -118.350261320024146, 52.62346003040625 ], [ -118.319334805172517, 52.674458567507941 ], [ -118.330211270431164, 52.708823803193866 ], [ -118.357935270512201, 52.74192561109723 ], [ -118.412894379054023, 52.78422297599198 ], [ -118.428423554451115, 52.835540116621445 ], [ -118.476922701809016, 52.878507647557399 ], [ -118.501856174439837, 52.888373370590017 ], [ -118.605495704760557, 52.89511897631607 ], [ -118.630709328769257, 52.909434162409042 ], [ -118.668178202268905, 52.971671713611329 ], [ -118.678357035665002, 53.025911217633535 ], [ -118.731481427339972, 53.057848474711221 ], [ -118.76636302046748, 53.065418055078112 ], [ -118.773570051992408, 53.12156918026696 ], [ -118.803672592203228, 53.153396574059229 ], [ -118.914365345449255, 53.211690033314198 ], [ -118.992549552533319, 53.235585297897586 ], [ -119.0161152272604, 53.204373138503826 ], [ -119.022108269481194, 53.13944393680822 ], [ -119.045542108265749, 53.143783536583129 ], [ -119.261060915315269, 53.209492767605354 ], [ -119.308785526510817, 53.241891450481916 ], [ -119.399763313184465, 53.352501806263859 ], [ -119.434903085032758, 53.361598486298362 ], [ -119.592386611548079, 53.372452978899929 ], [ -119.64773024158896, 53.363048681666186 ], [ -119.680106951808426, 53.370640234690143 ], [ -119.723255757165347, 53.399786964317627 ], [ -119.819605858497056, 53.490995463890727 ], [ -119.85508071336595, 53.508617534875441 ], [ -119.893840480469521, 53.515549908186784 ], [ -119.896114650478154, 53.566702253888081 ], [ -119.92081191704527, 53.602286972042407 ], [ -119.918230129837411, 53.612229599374814 ], [ -119.886968531965181, 53.614712509625775 ], [ -119.743124532337347, 53.615020126825016 ], [ -119.734829854286545, 53.633652940035802 ], [ -119.811569359167066, 53.698790881973736 ], [ -119.88463943031384, 53.707931507322428 ], [ -119.904431301186023, 53.723004750084925 ], [ -119.917169949132898, 53.769894400311131 ], [ -119.97269485359476, 53.797052604472128 ], [ -120.001017608581435, 53.843788446098699 ], [ -120.000962676938713, 54.228628548669803 ], [ -120.00088577263891, 54.613457664912374 ], [ -120.000808868339107, 54.998297767483479 ], [ -120.000759429860651, 55.38312688372605 ], [ -120.000704498217928, 55.767966986297154 ], [ -120.000627593918125, 56.152796102539725 ], [ -120.000550689618308, 56.537636205110829 ], [ -120.000501251139866, 56.922443348696305 ], [ -120.000446319497144, 57.307250492281781 ], [ -120.000369415197326, 57.692090594852914 ], [ -120.000292510897523, 58.076919711095456 ], [ -120.000243072419082, 58.461759813666589 ], [ -120.000188140776359, 58.846588929909132 ], [ -120.000138702297903, 59.231429032480264 ], [ -120.000083770655181, 59.616258148722835 ], [ -120.000006866355378, 60.001087264965378 ], [ -119.375005621810345, 60.001087264965378 ], [ -118.750031843086674, 60.001087264965378 ], [ -118.125030598541656, 60.001087264965378 ], [ -117.500029353996609, 60.001087264965378 ], [ -116.875033602615858, 60.001087264965378 ], [ -116.250032358070825, 60.001087264965378 ], [ -115.625031113525793, 60.001087264965378 ], [ -115.000029868980775, 60.001087264965378 ], [ -114.375028624435743, 60.001087264965378 ], [ -113.75002737989071, 60.001087264965378 ], [ -113.125026135345678, 60.001087264965378 ], [ -112.500024890800645, 60.001087264965378 ], [ -111.875023646255613, 60.001087264965378 ], [ -111.250027894874862, 60.001087264965378 ], [ -110.625026650329829, 60.001087264965378 ], [ -110.000025405784797, 60.001087264965378 ], [ -109.999997939963436, 59.65713827723539 ], [ -109.999970474142074, 59.313145344191241 ], [ -109.999970474142074, 58.969163397475626 ], [ -109.999948501484994, 58.625203423417076 ], [ -109.999921035663633, 58.281254435687089 ], [ -109.999921035663633, 57.937239529985845 ], [ -109.999893569842271, 57.593279555927325 ], [ -109.999871597185177, 57.249319581868775 ], [ -109.999844131363815, 56.905359607810254 ], [ -109.999816665542454, 56.561377661094639 ], [ -109.999816665542454, 56.217395714378995 ], [ -109.999789199721107, 55.873435740320474 ], [ -109.999767227064012, 55.529475766261953 ], [ -109.999767227064012, 55.185471846889243 ], [ -109.999739761242651, 54.841511872830694 ], [ -109.99971229542129, 54.497551898772173 ], [ -109.999690322764209, 54.153591924713652 ], [ -109.999662856942848, 53.809609977998036 ], [ -109.999662856942848, 53.465628031282392 ], [ -109.999635391121487, 53.121668057223872 ], [ -109.999613418464392, 52.777708083165351 ], [ -109.999613418464392, 52.433726136449707 ], [ -109.999585952643031, 52.089744189734091 ], [ -109.99955848682167, 51.74578421567557 ], [ -109.999531021000308, 51.401824241617049 ], [ -109.999509048343228, 51.057842294901405 ], [ -109.999509048343228, 50.71386034818579 ], [ -109.999481582521867, 50.369900374127269 ], [ -109.999454116700505, 50.02594040006872 ], [ -109.999454116700505, 49.681958453353104 ], [ -109.999432144043411, 49.337965520308956 ], [ -109.999432144043411, 48.993082694652713 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CA-BC", "NAME_1": "British Columbia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.000006866355378, 60.001087264965378 ], [ -120.000083770655181, 59.616258148722835 ], [ -120.000138702297903, 59.231429032480264 ], [ -120.000188140776359, 58.846588929909132 ], [ -120.000243072419082, 58.461759813666589 ], [ -120.000292510897523, 58.076919711095456 ], [ -120.000369415197326, 57.692090594852914 ], [ -120.000446319497144, 57.307250492281781 ], [ -120.000501251139866, 56.922443348696305 ], [ -120.000550689618308, 56.537636205110829 ], [ -120.000627593918125, 56.152796102539725 ], [ -120.000704498217928, 55.767966986297154 ], [ -120.000759429860651, 55.38312688372605 ], [ -120.000808868339107, 54.998297767483479 ], [ -120.00088577263891, 54.613457664912374 ], [ -120.000962676938713, 54.228628548669803 ], [ -120.001017608581435, 53.843788446098699 ], [ -119.97269485359476, 53.797052604472128 ], [ -119.917169949132898, 53.769894400311131 ], [ -119.904431301186023, 53.723004750084925 ], [ -119.88463943031384, 53.707931507322428 ], [ -119.811569359167066, 53.698790881973736 ], [ -119.734829854286545, 53.633652940035802 ], [ -119.743124532337347, 53.615020126825016 ], [ -119.886968531965181, 53.614712509625775 ], [ -119.918230129837411, 53.612229599374814 ], [ -119.92081191704527, 53.602286972042407 ], [ -119.896114650478154, 53.566702253888081 ], [ -119.893840480469521, 53.515549908186784 ], [ -119.85508071336595, 53.508617534875441 ], [ -119.819605858497056, 53.490995463890727 ], [ -119.723255757165347, 53.399786964317627 ], [ -119.680106951808426, 53.370640234690143 ], [ -119.64773024158896, 53.363048681666186 ], [ -119.592386611548079, 53.372452978899929 ], [ -119.434903085032758, 53.361598486298362 ], [ -119.399763313184465, 53.352501806263859 ], [ -119.308785526510817, 53.241891450481916 ], [ -119.261060915315269, 53.209492767605354 ], [ -119.045542108265749, 53.143783536583129 ], [ -119.022108269481194, 53.13944393680822 ], [ -119.0161152272604, 53.204373138503826 ], [ -118.992549552533319, 53.235585297897586 ], [ -118.914365345449255, 53.211690033314198 ], [ -118.803672592203228, 53.153396574059229 ], [ -118.773570051992408, 53.12156918026696 ], [ -118.76636302046748, 53.065418055078112 ], [ -118.731481427339972, 53.057848474711221 ], [ -118.678357035665002, 53.025911217633535 ], [ -118.668178202268905, 52.971671713611329 ], [ -118.630709328769257, 52.909434162409042 ], [ -118.605495704760557, 52.89511897631607 ], [ -118.501856174439837, 52.888373370590017 ], [ -118.476922701809016, 52.878507647557399 ], [ -118.428423554451115, 52.835540116621445 ], [ -118.412894379054023, 52.78422297599198 ], [ -118.357935270512201, 52.74192561109723 ], [ -118.330211270431164, 52.708823803193866 ], [ -118.319334805172517, 52.674458567507941 ], [ -118.350261320024146, 52.62346003040625 ], [ -118.288435756142249, 52.562266180415634 ], [ -118.266314783618711, 52.518287907253608 ], [ -118.225028160950004, 52.48269220277075 ], [ -118.246676721346148, 52.440757386717934 ], [ -118.242804040534352, 52.408864074954437 ], [ -118.221023644195682, 52.386100402211071 ], [ -118.19125618700545, 52.384144835730211 ], [ -118.060101396846051, 52.412720276273404 ], [ -118.044286576906813, 52.427419983865406 ], [ -118.028603592910116, 52.465894106426816 ], [ -118.001989212012063, 52.485889224377075 ], [ -117.883056712357956, 52.430155579672885 ], [ -117.757614813041471, 52.394636779489815 ], [ -117.731698064005954, 52.383156066161263 ], [ -117.734642400055776, 52.352570127494488 ], [ -117.821818917053164, 52.272161188880261 ], [ -117.787766791730746, 52.232522515493173 ], [ -117.750638494415966, 52.207715385640597 ], [ -117.587315734279457, 52.141731496404759 ], [ -117.384947562497217, 52.144412160569516 ], [ -117.347588552283028, 52.159089895504422 ], [ -117.320144703579871, 52.155958791869352 ], [ -117.244569749525056, 52.047106248654472 ], [ -117.076984293913426, 51.926388470611954 ], [ -117.037059975984178, 51.885903849926962 ], [ -116.938721349185982, 51.735753697714813 ], [ -116.912782627493371, 51.713846958597884 ], [ -116.829918244449544, 51.715242222322985 ], [ -116.814696686251693, 51.721855992106526 ], [ -116.808236725067758, 51.75260672570144 ], [ -116.79077395584693, 51.770953894370081 ], [ -116.758188505385135, 51.788543006369196 ], [ -116.717703884700143, 51.799935829069426 ], [ -116.674033228737358, 51.790685340435289 ], [ -116.633856225251606, 51.75847342514399 ], [ -116.567350485409932, 51.650697542126437 ], [ -116.501745624508857, 51.614783234115777 ], [ -116.457717912868404, 51.573650420046675 ], [ -116.410795303656585, 51.543723661092571 ], [ -116.377100234011834, 51.497273464008146 ], [ -116.309951793950319, 51.447769067588439 ], [ -116.278761607213639, 51.3478264368228 ], [ -116.250312509448705, 51.322656758128289 ], [ -116.176341559361305, 51.297003680977809 ], [ -116.134923100750072, 51.266219988397268 ], [ -116.05438232619332, 51.236919450170177 ], [ -116.041879884310134, 51.229998063187395 ], [ -116.035002442641527, 51.217649429903815 ], [ -116.013535156666364, 51.150698743756095 ], [ -115.997643432427338, 51.129539074980187 ], [ -115.94043761969823, 51.102051280962854 ], [ -115.7937811199631, 51.070421641084408 ], [ -115.618933701183821, 50.962316168210521 ], [ -115.596192001097549, 50.93626758323245 ], [ -115.588001693167925, 50.909197269699803 ], [ -115.639884629717415, 50.869174074813657 ], [ -115.633891587496606, 50.855243410219742 ], [ -115.43310544702473, 50.756388425979992 ], [ -115.398712745517443, 50.731372555885088 ], [ -115.386204810469991, 50.726461667025859 ], [ -115.375509619632311, 50.727010983453084 ], [ -115.359777197157172, 50.728636960077608 ], [ -115.346522191768713, 50.728944577276849 ], [ -115.334997533125957, 50.7195952116858 ], [ -115.311019871078472, 50.696853511599528 ], [ -115.298358127431399, 50.673496577114804 ], [ -115.307630588722617, 50.655819574487339 ], [ -115.310964939435749, 50.642130609121409 ], [ -115.305438816178068, 50.634561028754518 ], [ -115.266629610596055, 50.594230216669132 ], [ -115.222085541514019, 50.562622549447781 ], [ -115.205957611211289, 50.553657705355789 ], [ -115.188698089068509, 50.557173330489917 ], [ -115.127669034006061, 50.584946769049395 ], [ -115.091188930075404, 50.584814933106856 ], [ -115.047880822954582, 50.577047598826169 ], [ -114.992795371634486, 50.545033437448694 ], [ -114.789136306248324, 50.359144758482586 ], [ -114.716379345465043, 50.129343724325764 ], [ -114.667748362164616, 50.060975801795848 ], [ -114.65196100804674, 50.019612274827324 ], [ -114.651395212126729, 49.985323943441216 ], [ -114.677877757082271, 49.954727018445908 ], [ -114.684930980007579, 49.934270474696802 ], [ -114.637596383475341, 49.796754600310351 ], [ -114.642842355355143, 49.730298298947133 ], [ -114.686040599190534, 49.643066850307008 ], [ -114.737330273998637, 49.603845657404605 ], [ -114.734023389106866, 49.587201369660278 ], [ -114.716714428485645, 49.568502638478236 ], [ -114.680898997431896, 49.555549757124766 ], [ -114.601550239522169, 49.550539991308653 ], [ -114.577473700517785, 49.543618604325872 ], [ -114.576254218049385, 49.51865766587369 ], [ -114.590053046700774, 49.451706979725969 ], [ -114.588015082755845, 49.42031903907548 ], [ -114.565223944191118, 49.39388593259838 ], [ -114.479645937996892, 49.333428166620223 ], [ -114.425906311923441, 49.274409609681356 ], [ -114.386163268415174, 49.252030458437048 ], [ -114.378154234906532, 49.232266053386212 ], [ -114.354846738900235, 49.210688904125618 ], [ -114.189793632018024, 49.168061949374504 ], [ -114.163673635904431, 49.146770444656056 ], [ -114.132538380810473, 49.094058040301491 ], [ -114.057474291032946, 49.037961846755337 ], [ -114.050602342528606, 49.014626884927679 ], [ -114.062517015834686, 48.993082694652713 ], [ -114.158735281223869, 48.993082694652713 ], [ -114.585120185184465, 48.993082694652713 ], [ -115.011499595980808, 48.993082694652713 ], [ -115.437884499941404, 48.993082694652713 ], [ -115.864263910737748, 48.993082694652713 ], [ -116.048493654093676, 48.993082694652713 ], [ -116.290648814698358, 48.993082694652713 ], [ -116.717028225494687, 48.993082694652713 ], [ -117.039053994614932, 48.993082694652713 ], [ -117.143413129455297, 48.993082694652713 ], [ -117.569792540251626, 48.993082694652713 ], [ -117.996177444212236, 48.993082694652713 ], [ -118.422556855008565, 48.993082694652713 ], [ -118.848941758969175, 48.993082694652713 ], [ -119.275321169765505, 48.993060721995619 ], [ -119.701706073726115, 48.993027763009991 ], [ -120.128090977686711, 48.993027763009991 ], [ -120.554470388483054, 48.993027763009991 ], [ -120.980855292443664, 48.993027763009991 ], [ -121.407234703239993, 48.993027763009991 ], [ -121.833619607200603, 48.993027763009991 ], [ -122.259999017996932, 48.993027763009991 ], [ -122.686383921957542, 48.993027763009991 ], [ -122.788776503988501, 48.993027763009991 ], [ -122.826706803286982, 49.028425713579054 ], [ -122.924172016965926, 49.074678156749712 ], [ -122.962723043827168, 49.07462322510699 ], [ -123.002306785571534, 49.060879328098338 ], [ -123.027240258202355, 49.038511163182534 ], [ -123.049201928962006, 48.993027763009991 ], [ -123.086434596397936, 48.993027763009991 ], [ -123.117646755791725, 49.056330988081072 ], [ -123.109330105083842, 49.084598811425025 ], [ -123.077288477884991, 49.118348812712497 ], [ -123.07956264789361, 49.130598569039165 ], [ -123.150149808789422, 49.121029476877254 ], [ -123.181883818789032, 49.129510922513276 ], [ -123.19635281348161, 49.147693296253777 ], [ -123.191079375780447, 49.219532898603603 ], [ -123.229421662399346, 49.26051190407307 ], [ -123.183949248555336, 49.277716494573127 ], [ -123.067263453088486, 49.291570254867224 ], [ -122.947633321571843, 49.293273135791566 ], [ -122.913009907165133, 49.323188908417137 ], [ -122.879111590442321, 49.398950630057215 ], [ -122.964453390572857, 49.329363225058927 ], [ -123.015534325138617, 49.322156193533999 ], [ -123.174286772600794, 49.348204778512041 ], [ -123.276761752095837, 49.343964055694016 ], [ -123.290505649104517, 49.359465765269732 ], [ -123.286292392107839, 49.374967474845448 ], [ -123.264072542627417, 49.390469184421192 ], [ -123.247719392589531, 49.443027780176124 ], [ -123.223016632858133, 49.590464309237888 ], [ -123.190667388460042, 49.644308305432503 ], [ -123.179609648780414, 49.673553912016871 ], [ -123.18748684634653, 49.68033247672858 ], [ -123.324997227568701, 49.577698195469651 ], [ -123.336675694811078, 49.545145703993484 ], [ -123.322415440360828, 49.516998730263509 ], [ -123.335642979927925, 49.459199655793043 ], [ -123.398973670820368, 49.441896188336102 ], [ -123.436980874418651, 49.451300485569845 ], [ -123.508194256041492, 49.402466255191342 ], [ -123.530567914121534, 49.397291694447063 ], [ -123.858921808483188, 49.482842234819941 ], [ -123.89183684880129, 49.494707469647551 ], [ -123.948399961310571, 49.534697705548069 ], [ -124.028600159682455, 49.602867874164161 ], [ -124.053791811034074, 49.661721636174889 ], [ -124.024024353843842, 49.711335895880012 ], [ -123.992608947371991, 49.736164998389683 ], [ -123.959534605290003, 49.736164998389683 ], [ -123.922768856817186, 49.717532185178896 ], [ -123.847111505298273, 49.636661820765795 ], [ -123.817190239508435, 49.586586135261825 ], [ -123.739055470902827, 49.59356245388733 ], [ -123.612756637959905, 49.657590776642309 ], [ -123.582478316492384, 49.681255328326301 ], [ -123.708310230472179, 49.656920610601134 ], [ -123.762670584108363, 49.658524614568563 ], [ -123.81801970731351, 49.685133502302364 ], [ -123.874396052237529, 49.736813191773791 ], [ -123.903800960585812, 49.795458213542162 ], [ -123.904267879548939, 49.981138152265913 ], [ -123.88496490029695, 50.017052460276545 ], [ -123.823804009291976, 50.043716279653069 ], [ -123.784659720689376, 50.088002170014335 ], [ -123.787708426860348, 50.106755832839099 ], [ -123.825457451737861, 50.144230199502999 ], [ -123.880108943080472, 50.173629614687002 ], [ -123.93356841777603, 50.188307349621908 ], [ -123.945889585238234, 50.183912818204277 ], [ -123.863052668015754, 50.102570041663796 ], [ -123.865738825344792, 50.072082979953933 ], [ -123.957441709702351, 49.992761687865567 ], [ -123.97139434695336, 49.969503630337726 ], [ -123.972119444637258, 49.892050014101841 ], [ -123.98493499688395, 49.875559534957148 ], [ -124.058779604193091, 49.853652795840219 ], [ -124.141616521415557, 49.79266768609196 ], [ -124.281269236703821, 49.772101279057409 ], [ -124.412605301284216, 49.778154746085221 ], [ -124.483247393822751, 49.808224327310398 ], [ -124.70228182600637, 49.957671354495716 ], [ -124.78237765425709, 50.020095673283265 ], [ -124.784261809602413, 50.072808077637831 ], [ -124.934175755750857, 50.258070535876925 ], [ -124.933351781110048, 50.297906963177809 ], [ -124.9855972665015, 50.355607160691392 ], [ -125.043599588050057, 50.363748030142574 ], [ -125.056700784838881, 50.418624741220327 ], [ -124.9368399404228, 50.537375966453453 ], [ -124.862654756928805, 50.637296624561998 ], [ -124.854261201921105, 50.668640619898298 ], [ -124.857540620991529, 50.717343014334261 ], [ -124.875420870697042, 50.825635254793411 ], [ -124.859864229478603, 50.872404055405639 ], [ -124.933582494009471, 50.810594971016542 ], [ -124.949265478006168, 50.764705076687875 ], [ -124.931077611101429, 50.718408688203056 ], [ -124.942547338101463, 50.66569628384849 ], [ -124.985415992080519, 50.591956046660528 ], [ -125.058771707769438, 50.513865223369095 ], [ -125.209872177400655, 50.476302966076815 ], [ -125.476312617252063, 50.497176990310606 ], [ -125.507189693625236, 50.507251453585553 ], [ -125.525976315435628, 50.5341459858615 ], [ -125.539335690945251, 50.649030023447096 ], [ -125.555562498204893, 50.634846673296664 ], [ -125.585818847015332, 50.573652823306048 ], [ -125.610131592083405, 50.486036853166894 ], [ -125.641316285655819, 50.466217516473336 ], [ -125.697544315144498, 50.464569567191745 ], [ -125.741231450600083, 50.478577136085448 ], [ -125.772421637336777, 50.508185291511779 ], [ -125.839597543219639, 50.510668201762769 ], [ -125.965044935700405, 50.487355212592178 ], [ -126.024134903774808, 50.49671556451176 ], [ -126.094337543171576, 50.497594470795292 ], [ -126.236550073010619, 50.523269520602838 ], [ -126.404476104807117, 50.52988329038638 ], [ -126.449948518651127, 50.549735586065566 ], [ -126.447471101564432, 50.587770255485225 ], [ -126.416127106228132, 50.606963371451741 ], [ -126.238906640483322, 50.623805413109835 ], [ -126.067234270653302, 50.664301020123389 ], [ -125.897605357932463, 50.684395015030532 ], [ -125.904120250759121, 50.704917476750893 ], [ -125.980727919697102, 50.711377437934829 ], [ -126.37031960936352, 50.666728998731628 ], [ -126.492943515408442, 50.672101313389703 ], [ -126.514339390248068, 50.67938524921442 ], [ -126.517338657940599, 50.724451168902306 ], [ -126.472223299774271, 50.76728686389572 ], [ -126.397137237339663, 50.807079345882443 ], [ -126.37460427749572, 50.837357667349977 ], [ -126.418198029158702, 50.850200685418031 ], [ -126.488164462491767, 50.841862062053053 ], [ -126.521755162015324, 50.866042971178615 ], [ -126.484599398879197, 50.960503424000734 ], [ -126.517338657940599, 51.056831552675362 ], [ -126.562866003427331, 50.965469244502657 ], [ -126.631799721877258, 50.915140873442169 ], [ -126.960384329138336, 50.893684573795554 ], [ -127.014052544076236, 50.866823000505235 ], [ -127.057585870932215, 50.867537111860599 ], [ -127.267474184602889, 50.916063725039862 ], [ -127.356946844265991, 50.945551030852215 ], [ -127.441233956856294, 50.989397468071701 ], [ -127.590862258462593, 51.087527354627554 ], [ -127.70811934301372, 51.151193128540598 ], [ -127.714315632312591, 51.268658953334068 ], [ -127.689178912603694, 51.343486837047891 ], [ -127.632720170215606, 51.4273015375108 ], [ -127.419656807595686, 51.60805960104679 ], [ -127.346586736448913, 51.642380891418554 ], [ -127.28064679252725, 51.654103303975091 ], [ -126.968135183926194, 51.669923617078581 ], [ -126.735411786376631, 51.692610385522158 ], [ -126.691433513214605, 51.703409946481003 ], [ -127.034102593669218, 51.716714390347903 ], [ -127.338731511539891, 51.707386997413948 ], [ -127.442706124881198, 51.67896536547039 ], [ -127.575745070385921, 51.562949736044743 ], [ -127.609593948630277, 51.514038601366423 ], [ -127.644865556421095, 51.47846486954063 ], [ -127.668689409868961, 51.477585963257127 ], [ -127.714057453591806, 51.490187282097196 ], [ -127.728735188526713, 51.505535183073306 ], [ -127.747521810337119, 51.543569852492965 ], [ -127.818960411695102, 51.60392874151421 ], [ -127.850535119930839, 51.673175570327629 ], [ -127.869113001498903, 51.775238562502295 ], [ -127.863224329399259, 51.82082083963175 ], [ -127.829968712896289, 51.879004435601274 ], [ -127.727653035165133, 51.993207320817135 ], [ -127.858807825324533, 51.990284957424393 ], [ -127.843328088405912, 52.08648125015651 ], [ -127.795345298489565, 52.191027152582109 ], [ -127.67333662684311, 52.252913141270994 ], [ -127.549729444393506, 52.297605525788384 ], [ -127.437927071964509, 52.356129697942777 ], [ -127.242255067429909, 52.39509820528869 ], [ -127.175743834423969, 52.314843075274069 ], [ -127.007977104391358, 52.290662166148508 ], [ -126.959455984376348, 52.254539117895519 ], [ -126.899976001638635, 52.188335502088819 ], [ -126.826334641407556, 52.125142140303183 ], [ -126.738564862668781, 52.06495903253861 ], [ -126.713993938879909, 52.060696337063519 ], [ -126.752643842698035, 52.112376026534946 ], [ -126.89521892137904, 52.225469292567851 ], [ -126.901393238020816, 52.265316706197297 ], [ -126.9381644796579, 52.308591854332462 ], [ -127.127068905809352, 52.370961241477289 ], [ -127.16057720786884, 52.394889465046333 ], [ -127.193986632971431, 52.457676332675845 ], [ -127.208252380585947, 52.498237857660655 ], [ -127.187114684467105, 52.537667790805415 ], [ -126.995189017966027, 52.657924143049058 ], [ -126.951315114925194, 52.72122736812014 ], [ -126.951364553403636, 52.751022291131733 ], [ -126.966404837180505, 52.78466242913376 ], [ -127.008235283112143, 52.842560380561139 ], [ -127.019347954434494, 52.842461503604227 ], [ -127.006378593588181, 52.754614820565649 ], [ -127.01322307627116, 52.719985912994673 ], [ -127.034877129831571, 52.681742503332657 ], [ -127.06619365934651, 52.652705636990618 ], [ -127.107068294694812, 52.63280939599727 ], [ -127.519264355340738, 52.359282774234941 ], [ -127.560320265110022, 52.343209775574906 ], [ -127.713387287550617, 52.318512509007803 ], [ -127.791884604998174, 52.289365779380319 ], [ -127.834308312671197, 52.251001520104325 ], [ -127.902187343580891, 52.150905080739079 ], [ -127.995384368620449, 51.950525434423326 ], [ -128.102253879533123, 51.788411170426656 ], [ -128.193566749227386, 51.998272018275969 ], [ -128.357614607047822, 52.158881155262094 ], [ -128.037478486437152, 52.31814996016584 ], [ -128.029128876743641, 52.342484677891008 ], [ -128.060319063480335, 52.427551819807945 ], [ -128.05155746646642, 52.453336732900937 ], [ -128.02130111765598, 52.490668277293764 ], [ -127.94022201300055, 52.545160466872488 ], [ -127.943375089292715, 52.550741521772864 ], [ -128.03825302259952, 52.53116388430729 ], [ -128.183981177572662, 52.407908264371088 ], [ -128.240978250059413, 52.368280577312532 ], [ -128.271542216069093, 52.363007139611369 ], [ -128.275162211324385, 52.435505921673865 ], [ -128.196769263997993, 52.623295235478082 ], [ -128.132378392401051, 52.805822097909669 ], [ -128.108818210838251, 52.85804011747976 ], [ -128.053265840555014, 52.910675617534537 ], [ -128.105945285923951, 52.906896320515358 ], [ -128.365024885650797, 52.825773270545767 ], [ -128.451970689748777, 52.876617999047824 ], [ -128.524683705217853, 53.140685391933687 ], [ -128.652322870243154, 53.243825044305652 ], [ -128.868539309155238, 53.328112156895969 ], [ -129.080927012569674, 53.367256445498583 ], [ -129.129530530048754, 53.442271096797668 ], [ -129.171569716222734, 53.533578473327623 ], [ -129.114462780450538, 53.641123643445781 ], [ -129.021419564010586, 53.692144153204566 ], [ -128.935610844916937, 53.715171497832984 ], [ -128.854586671904229, 53.70454771813084 ], [ -128.850422853386021, 53.665194689285897 ], [ -128.905612674827296, 53.559319441106453 ], [ -128.833036988464983, 53.549387800102579 ], [ -128.542124501781615, 53.420671974879951 ], [ -128.478612536468205, 53.41027890807726 ], [ -128.358048567025321, 53.459816263482566 ], [ -128.291075908220506, 53.457871683330268 ], [ -128.132691502764544, 53.417771584144333 ], [ -128.079177096426264, 53.369431738550304 ], [ -127.927845913895624, 53.274707613843105 ], [ -127.95006576337606, 53.32981503782031 ], [ -128.115146336079647, 53.445940530531374 ], [ -128.20723374193625, 53.483195170624413 ], [ -128.369161238347658, 53.490380229492246 ], [ -128.469647692376213, 53.47092344164065 ], [ -128.511763782850011, 53.476559428183776 ], [ -128.600335563572514, 53.506090679310319 ], [ -128.675553461949647, 53.554617292489581 ], [ -128.750793332983903, 53.66085508951096 ], [ -128.767899046527049, 53.710205677331061 ], [ -128.763658323709024, 53.746900014668313 ], [ -128.745931882603145, 53.780177603828378 ], [ -128.714719723209356, 53.809994499497066 ], [ -128.652866693506098, 53.831648553057477 ], [ -128.560444204628908, 53.845084832866917 ], [ -128.532121449642204, 53.858103632191671 ], [ -128.650900140696706, 53.918825070054879 ], [ -128.704799068534044, 53.918616329812522 ], [ -128.890165896894274, 53.829758904547901 ], [ -128.92783801747197, 53.822815544908025 ], [ -128.944009893088889, 53.840020135408082 ], [ -128.959357794064999, 53.841470330775905 ], [ -129.013981819586235, 53.797437125971157 ], [ -129.056405527259244, 53.777804556862861 ], [ -129.208126724453223, 53.641585069244627 ], [ -129.231741837658745, 53.576425154649598 ], [ -129.240322160251679, 53.479064311091832 ], [ -129.257839861115258, 53.417980324386662 ], [ -129.284300433413705, 53.393173194534086 ], [ -129.462399805442033, 53.346558202521493 ], [ -129.563715727275678, 53.251482515300893 ], [ -129.686729647983896, 53.333539403196738 ], [ -129.821784584776481, 53.412761818328221 ], [ -129.911883465166596, 53.551354352911972 ], [ -130.074382250662296, 53.575645125322978 ], [ -130.263259210992373, 53.654142442770535 ], [ -130.335241635613301, 53.723905629025523 ], [ -130.232843560418075, 53.867431025125597 ], [ -130.085956347783508, 53.97577819722747 ], [ -130.063500292239382, 54.105636600618681 ], [ -130.043296434046795, 54.13354187512067 ], [ -129.79078116562502, 54.165786749397597 ], [ -129.626035675942035, 54.230254525294328 ], [ -129.794966956800323, 54.236121224736877 ], [ -129.898419719535809, 54.226354378661171 ], [ -130.084247973694914, 54.181398322258758 ], [ -130.290313045032235, 54.270387583465919 ], [ -130.396787048117318, 54.351664442035144 ], [ -130.430251404862645, 54.421021134134008 ], [ -130.393458190568452, 54.479622210588218 ], [ -130.388624206009069, 54.539354878882449 ], [ -130.369996885962536, 54.620027489381755 ], [ -130.350485166468218, 54.655315576665373 ], [ -130.307231990990118, 54.700304592053442 ], [ -130.218945854809789, 54.730253323664641 ], [ -130.140860524682637, 54.822747223677396 ], [ -130.108643116227057, 54.887247958559783 ], [ -129.948522870861154, 55.08103580774906 ], [ -129.890152507306368, 55.164641767969641 ], [ -129.780756140828544, 55.280448657152931 ], [ -129.560667021104678, 55.462536066442766 ], [ -129.630117096996173, 55.452219903939863 ], [ -129.666630159912472, 55.436663262721424 ], [ -129.701330478619013, 55.438574883888094 ], [ -129.734196080458673, 55.457987726425529 ], [ -129.765457678330904, 55.498263606868164 ], [ -129.795170203878399, 55.559556333815692 ], [ -129.81191336857961, 55.532628842554089 ], [ -129.815637733956038, 55.41760198269742 ], [ -129.837725747493948, 55.319109547299604 ], [ -129.877155680638708, 55.250631761484271 ], [ -129.985184249212807, 55.111467937816201 ], [ -130.048465501626765, 55.057261392779651 ], [ -130.09179558140471, 55.107743572439773 ], [ -130.058413622123453, 55.194766280837541 ], [ -129.995830001572017, 55.264068041293683 ], [ -129.985134810734337, 55.358847097643604 ], [ -130.044048997552068, 55.471907404690882 ], [ -130.079985278219795, 55.562918150350157 ], [ -130.09296013223036, 55.631846375635831 ], [ -130.094690478976077, 55.694787051864949 ], [ -130.085126879978418, 55.751685247394818 ], [ -130.060352709111498, 55.813703072026243 ], [ -130.020302048404005, 55.880774607787941 ], [ -130.025081101320666, 55.888212352212292 ], [ -130.014072800119493, 55.95053779404293 ], [ -130.02288383561185, 56.014511185155214 ], [ -130.055958177693867, 56.065235064043293 ], [ -130.097865527925308, 56.109290241505107 ], [ -130.214705131991764, 56.082835162370941 ], [ -130.413145691319471, 56.12251778107219 ], [ -130.477097109774661, 56.230568322303384 ], [ -130.649071603639641, 56.263670130206748 ], [ -130.741680860102093, 56.340827115571926 ], [ -130.930217244247331, 56.378598113106506 ], [ -131.082921717845977, 56.404822479341277 ], [ -131.199404266234751, 56.44921823298796 ], [ -131.335799535109686, 56.501227512315694 ], [ -131.471892679949661, 56.55673044412049 ], [ -131.575114729785696, 56.598819068772912 ], [ -131.65151915164563, 56.596083472965432 ], [ -131.824273674837229, 56.58998606062346 ], [ -131.833084710329615, 56.684809062287542 ], [ -131.886000361762228, 56.742113751973534 ], [ -131.866159052411604, 56.792837630861612 ], [ -131.962509153743326, 56.818699448254421 ], [ -132.104282230440589, 56.856789049316802 ], [ -132.062913210307784, 56.953369863547948 ], [ -132.031519776493042, 57.026549797980152 ], [ -132.157016607452249, 57.04819286521203 ], [ -132.337988904394848, 57.079459956248513 ], [ -132.279415293762014, 57.145344968527468 ], [ -132.232157601529593, 57.198529785009441 ], [ -132.301662609063811, 57.276323977430167 ], [ -132.442479875177753, 57.406731697248574 ], [ -132.550480977930476, 57.499906749631037 ], [ -132.691506984286747, 57.645113053998358 ], [ -132.815531647221036, 57.772697287380936 ], [ -132.916842075890429, 57.876979517921484 ], [ -133.001409339858583, 57.948972928870944 ], [ -133.12042423697676, 58.077743685736266 ], [ -133.275298510462875, 58.222851113146675 ], [ -133.422575737760752, 58.337064984691096 ], [ -133.401102958621323, 58.410882126178876 ], [ -133.546391660452684, 58.503485889477048 ], [ -133.67392645535682, 58.597144340315452 ], [ -133.820742256855851, 58.705052059275573 ], [ -133.965745314145096, 58.757863340587022 ], [ -134.069203570044834, 58.795535461164746 ], [ -134.218518761287612, 58.849895814800931 ], [ -134.296994106078103, 58.898499332279982 ], [ -134.329650967675434, 58.939709050648901 ], [ -134.363527311741137, 58.968723944333846 ], [ -134.393058562867679, 59.009164619704677 ], [ -134.410213714889267, 59.056241037516116 ], [ -134.440755708241852, 59.085332835500878 ], [ -134.621980690740969, 59.155304761998224 ], [ -134.677225443824966, 59.199283035160221 ], [ -134.802409164420652, 59.2499739550627 ], [ -134.907240711388397, 59.271210528138425 ], [ -134.943770253797538, 59.28827229636741 ], [ -135.071310541865927, 59.441432702600622 ], [ -135.050843011788288, 59.496056728121886 ], [ -135.036659661637856, 59.550702726300216 ], [ -135.051029779373522, 59.578662932444928 ], [ -135.26078076393739, 59.695008151726881 ], [ -135.36785352192814, 59.743304052006749 ], [ -135.475937022144961, 59.793280860553836 ], [ -135.702590473173899, 59.728758153014354 ], [ -135.934643704682287, 59.662642427836005 ], [ -136.097164462835082, 59.638373628082093 ], [ -136.32182938839756, 59.604832367036948 ], [ -136.247133340626249, 59.532904874058772 ], [ -136.277982951178075, 59.480324305646718 ], [ -136.347845014389975, 59.45603353323574 ], [ -136.466343554066583, 59.459087732570993 ], [ -136.466728075565641, 59.279944659330994 ], [ -136.578739188236966, 59.152250562662971 ], [ -136.813269836832035, 59.150031324297061 ], [ -136.939310491054158, 59.106107982777758 ], [ -137.126198925917777, 59.040948068182729 ], [ -137.277557574269764, 58.988213691171069 ], [ -137.438578698576293, 58.903124576597065 ], [ -137.520877285700124, 58.915374332923733 ], [ -137.484160975705748, 58.991234931520694 ], [ -137.543695890086184, 59.119445385630286 ], [ -137.593299163462774, 59.226254471735984 ], [ -137.696625583420001, 59.281131182813738 ], [ -137.870572123258654, 59.373581137512303 ], [ -138.001133651676696, 59.442937829611168 ], [ -138.187450797455995, 59.541946622450553 ], [ -138.317625057792839, 59.611116546964183 ], [ -138.453635805168744, 59.683384616127256 ], [ -138.632257027802922, 59.778284522091127 ], [ -138.70545618831008, 59.901331401785001 ], [ -138.868754229207383, 59.945749128088778 ], [ -139.043445092804888, 59.993243026384903 ], [ -139.056518823772365, 60.00158164974988 ], [ -138.095495227541903, 60.001087264965378 ], [ -137.143738599438393, 60.001087264965378 ], [ -136.191965491842097, 60.001087264965378 ], [ -135.24021435690284, 60.001087264965378 ], [ -134.28846322196361, 60.001087264965378 ], [ -133.336690114367286, 60.001087264965378 ], [ -132.384938979428057, 60.001087264965378 ], [ -131.433187844488828, 60.001087264965378 ], [ -130.48143670954957, 60.001087264965378 ], [ -129.52968557461034, 60.001087264965378 ], [ -128.577934439671083, 60.001087264965378 ], [ -127.626183304731853, 60.001087264965378 ], [ -126.674432169792624, 60.001087264965378 ], [ -125.722681034853395, 60.001087264965378 ], [ -124.77090792725707, 60.001087264965378 ], [ -123.819156792317827, 60.001087264965378 ], [ -123.341740392269898, 60.001087264965378 ], [ -122.864356951207611, 60.001087264965378 ], [ -122.386968016981029, 60.001087264965378 ], [ -121.909579082754476, 60.001087264965378 ], [ -121.432195641692175, 60.001087264965378 ], [ -120.954806707465593, 60.001087264965378 ], [ -120.477423266403306, 60.001087264965378 ], [ -120.000006866355378, 60.001087264965378 ] ] ], [ [ [ -130.214089897593283, 55.025895424786256 ], [ -130.218506401668009, 55.060260660472181 ], [ -130.171841971176974, 55.137000165352703 ], [ -130.036550828320713, 55.297916919538039 ], [ -130.039264451471098, 55.343598073624406 ], [ -130.059473802827966, 55.412306572339162 ], [ -130.120425953590598, 55.524411068803118 ], [ -130.140421071540857, 55.585033629709443 ], [ -130.146518483882829, 55.654489198765191 ], [ -130.137064748170644, 55.719385441475168 ], [ -130.111977466940203, 55.779799262139164 ], [ -130.074640429383095, 55.836027291627829 ], [ -130.025081101320666, 55.888212352212292 ], [ -130.091564868505259, 55.786160346366188 ], [ -130.122518849178249, 55.691018741174332 ], [ -130.109961475652369, 55.580946715491024 ], [ -130.068543017041122, 55.482838801592266 ], [ -130.037611009025227, 55.416459404528837 ], [ -130.021823654907337, 55.371767020011447 ], [ -130.014902267924583, 55.331666920825512 ], [ -130.017874069795766, 55.284942065527474 ], [ -130.063994677023857, 55.22606633085968 ], [ -130.214089897593283, 55.025895424786256 ] ] ], [ [ [ -130.214089897593283, 55.025895424786256 ], [ -130.203905571032919, 54.947035558496736 ], [ -130.349430478928014, 54.814562408912053 ], [ -130.535489445986514, 54.748754300932916 ], [ -130.575331366451678, 54.769683256809401 ], [ -130.493241519570205, 54.834173005363255 ], [ -130.312532894512657, 54.945947911970876 ], [ -130.214089897593283, 55.025895424786256 ] ] ], [ [ [ -130.92716853807633, 54.479050921503926 ], [ -130.950272787004565, 54.477765521064271 ], [ -130.959028890854199, 54.498694476940756 ], [ -130.953447835953796, 54.54183778913341 ], [ -130.921768757596908, 54.614907860280198 ], [ -130.906810871284108, 54.631804833581015 ], [ -130.777078810671185, 54.618884911213172 ], [ -130.758006544318619, 54.613776268440148 ], [ -130.753436231644287, 54.599713767903722 ], [ -130.763356886319599, 54.576719382260933 ], [ -130.80513789377278, 54.543804341942803 ], [ -130.92716853807633, 54.479050921503926 ] ] ], [ [ [ -132.655515771976297, 54.127466435435792 ], [ -132.564049093682428, 54.06863464608216 ], [ -132.344421399757437, 54.106054081103338 ], [ -132.303365489988153, 54.098869022235505 ], [ -132.261639414177665, 54.076336062391562 ], [ -132.215903328448604, 54.028435669939313 ], [ -132.166085821665405, 53.955211790192919 ], [ -132.155104986285579, 53.875209345734817 ], [ -132.175105597400091, 53.84653502823474 ], [ -132.214508064723503, 53.81475157975666 ], [ -132.564873068323237, 53.687628772172928 ], [ -132.574096091135999, 53.675379015846261 ], [ -132.567119772510495, 53.663964220488964 ], [ -132.534644185334173, 53.651714464162296 ], [ -132.464414080116029, 53.653318468129726 ], [ -132.186965339063448, 53.684838244722727 ], [ -132.171666876565808, 53.706854847125101 ], [ -132.15223755453556, 53.806995231804535 ], [ -132.11402161069492, 53.86018004828648 ], [ -132.110610355681985, 53.900280147472444 ], [ -132.135906377154754, 53.995850219477518 ], [ -132.13441223647277, 54.034269410396234 ], [ -131.94082763436154, 54.041970826705636 ], [ -131.819648430520175, 54.077324831960539 ], [ -131.695936877949407, 54.143154912596742 ], [ -131.667641588784079, 54.141342168386984 ], [ -131.685395495711333, 54.022799683396187 ], [ -131.702550647732949, 53.986390990601052 ], [ -131.821120598545093, 53.841525262418628 ], [ -131.889153438054393, 53.713984974350211 ], [ -131.922304684436199, 53.587894881649646 ], [ -131.928067013757584, 53.379220557283105 ], [ -131.957416990463116, 53.308688328030001 ], [ -132.011315918300454, 53.265171480666851 ], [ -132.347288831507427, 53.189212005112978 ], [ -132.520460835183741, 53.194067962329456 ], [ -132.674818751228258, 53.263204927857458 ], [ -132.747526273533083, 53.310490085911226 ], [ -132.69256716499126, 53.367849707239969 ], [ -132.654790674292371, 53.370541357733259 ], [ -132.546218282455357, 53.359280370975569 ], [ -132.462398088828195, 53.337879002971675 ], [ -132.425011612792645, 53.336956151373954 ], [ -132.431345231198293, 53.350436376497555 ], [ -132.670166041089828, 53.458596781014194 ], [ -132.845013459869108, 53.507694683277748 ], [ -132.897978549780191, 53.562670271312385 ], [ -132.899582553747649, 53.605385116691849 ], [ -132.913381382399024, 53.629181504318353 ], [ -133.052237588867854, 53.778112174062102 ], [ -133.079467204164388, 53.837020867715552 ], [ -133.097660564233422, 53.920275265422703 ], [ -133.097940715611287, 54.005595092896129 ], [ -133.063861124467508, 54.144055791537369 ], [ -133.048386880713139, 54.158920294057538 ], [ -132.991461219361895, 54.157832647531649 ], [ -132.893073154085272, 54.140781865631226 ], [ -132.655515771976297, 54.127466435435792 ] ] ], [ [ [ -130.236282281252358, 53.958562620398851 ], [ -130.267236261925348, 53.92260436707403 ], [ -130.337570737264656, 53.866277460628453 ], [ -130.38422967459141, 53.843953241026867 ], [ -130.40722955339848, 53.855521844983798 ], [ -130.470247133927415, 53.861773065925377 ], [ -130.537477971453001, 53.917847286814435 ], [ -130.589827826965632, 53.940270383372933 ], [ -130.624632515793309, 53.941412961541545 ], [ -130.641837106293366, 53.921154171706235 ], [ -130.646281076189439, 53.894017940202303 ], [ -130.637909493838833, 53.860015253358341 ], [ -130.643699288981594, 53.844513543782625 ], [ -130.663595529974941, 53.847567743117878 ], [ -130.683436839325566, 53.863453974192623 ], [ -130.703179271719307, 53.892216182321079 ], [ -130.707260692773445, 53.921494747891074 ], [ -130.695686595652262, 53.95125671191704 ], [ -130.646901803752201, 53.991279906803186 ], [ -130.494614810638211, 54.074171755668374 ], [ -130.447999818625618, 54.089003299202915 ], [ -130.397308898723168, 54.085696414311144 ], [ -130.315861752061522, 54.046936647207559 ], [ -130.298503352961859, 54.035664674121335 ], [ -130.236282281252358, 53.958562620398851 ] ] ], [ [ [ -129.848607705916891, 53.167920500394501 ], [ -129.86855338538868, 53.164503752217286 ], [ -129.934388959189164, 53.17665463158707 ], [ -130.151401906920682, 53.345679296237961 ], [ -130.305682918665411, 53.407389503670146 ], [ -130.410739685368327, 53.490841655291092 ], [ -130.517559757802559, 53.544224225686861 ], [ -130.451982362722845, 53.631148057127746 ], [ -130.394825988472206, 53.620392441483062 ], [ -130.195017631240745, 53.549673444644725 ], [ -130.035391770659317, 53.481107768201042 ], [ -129.944749067006256, 53.436371438369463 ], [ -129.754839391793013, 53.244758882231906 ], [ -129.768945837643628, 53.217271088214574 ], [ -129.848607705916891, 53.167920500394501 ] ] ], [ [ [ -129.167740980725114, 53.117899746533254 ], [ -129.1732451313257, 53.110758632979582 ], [ -129.276829730003726, 53.11092342790775 ], [ -129.305718280910412, 53.121151699782303 ], [ -129.323884175158071, 53.14213558730151 ], [ -129.33127248110398, 53.173962981093752 ], [ -129.314375507803163, 53.212305267712651 ], [ -129.253088274019916, 53.285485202144883 ], [ -129.251149187031899, 53.316697361538644 ], [ -129.238201798842681, 53.330078709705361 ], [ -129.195206802085352, 53.293230563768475 ], [ -129.177018935180598, 53.259150972624667 ], [ -129.167740980725114, 53.117899746533254 ] ] ], [ [ [ -128.552429677955985, 52.939767415519299 ], [ -128.506567249448665, 52.620713448270209 ], [ -128.509929065983158, 52.51860651078141 ], [ -128.576824820488156, 52.451787660576201 ], [ -128.624005608420759, 52.339902890683135 ], [ -128.678937251141235, 52.289651423922464 ], [ -128.730924557811903, 52.356525205770367 ], [ -128.735571774786052, 52.467706850636603 ], [ -128.749420041915869, 52.556069891116749 ], [ -128.766448851159225, 52.598389228668623 ], [ -128.746321897266455, 52.763392897072379 ], [ -128.769651365929832, 52.751198072388434 ], [ -128.83120227159813, 52.678798167282849 ], [ -128.899828372848816, 52.67384333310946 ], [ -129.022869759378409, 52.755955152648028 ], [ -129.084700816424572, 52.822455399325435 ], [ -129.094852183999308, 52.891867023067022 ], [ -129.175931288654738, 52.964937094213809 ], [ -129.184302871005343, 52.990667075664078 ], [ -129.177689101221802, 53.017902184124893 ], [ -129.11107899125895, 53.09066463807244 ], [ -129.084107554683186, 53.139707608693271 ], [ -129.060333139713777, 53.240628022699326 ], [ -129.033229867195502, 53.279948092558641 ], [ -128.970234259323661, 53.274367037658237 ], [ -128.857712282375019, 53.228587006615015 ], [ -128.740378293524088, 53.17887386995298 ], [ -128.632684807970605, 53.112516445546646 ], [ -128.552429677955985, 52.939767415519299 ] ] ], [ [ [ -131.753735952419873, 53.195562103011468 ], [ -131.652321153629316, 53.102958339713268 ], [ -131.622169174940069, 53.020044518190986 ], [ -131.634671616823255, 52.922167317191651 ], [ -131.795258781152285, 52.885044513041152 ], [ -131.879694209177927, 52.914652668467482 ], [ -131.916333614872485, 52.909126545209801 ], [ -131.97178161503453, 52.879826006982711 ], [ -131.904396968909339, 52.866697344372511 ], [ -131.81006285886545, 52.818687088634817 ], [ -131.727302845942774, 52.756416578446874 ], [ -131.610617050475952, 52.745199537003373 ], [ -131.455226419548268, 52.701693675968755 ], [ -131.572818587119997, 52.62332819446371 ], [ -131.590594466704317, 52.578207343133101 ], [ -131.443883035326479, 52.453336732900937 ], [ -131.429957863896846, 52.422124573507148 ], [ -131.38298032304229, 52.415719543965935 ], [ -131.273611422385841, 52.425815979897976 ], [ -131.259735689434649, 52.41591729787973 ], [ -131.259938936512697, 52.390033507829855 ], [ -131.327070897081398, 52.317534725767359 ], [ -131.319935276692007, 52.303065731074781 ], [ -131.259164400350357, 52.291639949388923 ], [ -131.142637906647394, 52.291123591947354 ], [ -131.1161498685276, 52.219086235683733 ], [ -131.221547211415356, 52.153640676546559 ], [ -131.421871926088386, 52.238004693436665 ], [ -131.51114133867344, 52.322083065784625 ], [ -131.562040998818247, 52.399954162505168 ], [ -131.623690781443429, 52.443987367309916 ], [ -131.80967284420214, 52.541699773381083 ], [ -132.092213748534903, 52.752802076355863 ], [ -132.165108038424989, 52.783289138065726 ], [ -132.238562631070806, 52.866796221329395 ], [ -132.259985971731794, 52.906973224815175 ], [ -132.258123789043566, 52.933900716076749 ], [ -132.229548348500373, 52.948084066227153 ], [ -132.144926152889468, 52.957488363460925 ], [ -132.14376160206379, 52.999302329899734 ], [ -132.468676775591149, 53.071856043604953 ], [ -132.504854755486861, 53.086731532453655 ], [ -132.546789571539648, 53.137477383998828 ], [ -132.524207173217263, 53.144926114751712 ], [ -132.34543214198348, 53.136082120273727 ], [ -132.15389099698146, 53.160471769641617 ], [ -132.035914307910673, 53.179126555509498 ], [ -131.989480590319062, 53.201967132552653 ], [ -131.893130488987367, 53.23143246570794 ], [ -131.853442377121809, 53.229718598455037 ], [ -131.753735952419873, 53.195562103011468 ] ] ], [ [ [ -129.31370534176196, 52.992194175331718 ], [ -129.328690693896107, 52.984207114480142 ], [ -129.370032248207536, 52.99758846264686 ], [ -129.409720360073095, 53.023735924581814 ], [ -129.47777517223949, 53.097739833654828 ], [ -129.500154323483798, 53.128897061405894 ], [ -129.514722195133288, 53.179390227394549 ], [ -129.501082668245772, 53.188333098829446 ], [ -129.471419581176718, 53.183037688471188 ], [ -129.450748804021003, 53.174688078777677 ], [ -129.343494771609301, 53.052783777252387 ], [ -129.31370534176196, 52.992194175331718 ] ] ], [ [ [ -128.936879765863779, 52.510026188188448 ], [ -128.968712652820301, 52.464235170816664 ], [ -129.102322887409315, 52.574362128142695 ], [ -129.151025281845278, 52.605321601979938 ], [ -129.25050099364779, 52.722161206046394 ], [ -129.267787981611917, 52.772390700149998 ], [ -129.263525286136826, 52.800779373107929 ], [ -129.245958146794806, 52.811249344210466 ], [ -129.215053604600257, 52.803855545100276 ], [ -129.186165053693571, 52.791243239931674 ], [ -128.99400867429307, 52.661692453739704 ], [ -128.940312993533809, 52.600718330319978 ], [ -128.936879765863779, 52.510026188188448 ] ] ], [ [ [ -128.368776716848629, 52.400888000431422 ], [ -128.445384385786582, 52.387495665936171 ], [ -128.419879624071484, 52.441086976574269 ], [ -128.412518783946922, 52.472870425052321 ], [ -128.42629014677695, 52.502742252363731 ], [ -128.435925156910116, 52.560354559248964 ], [ -128.439803330886207, 52.69636530662487 ], [ -128.364871077051191, 52.781893874340625 ], [ -128.247284402643743, 52.784376784591615 ], [ -128.248421487648045, 52.741222486070399 ], [ -128.298156596967175, 52.548269597850464 ], [ -128.323765728803465, 52.458972719444063 ], [ -128.343557599675648, 52.426046692797399 ], [ -128.368776716848629, 52.400888000431422 ] ] ], [ [ [ -131.029308434550785, 51.961632612581411 ], [ -131.047243615899021, 51.959699018757647 ], [ -131.080521205059085, 51.980419234391803 ], [ -131.103438686402058, 52.01388359113713 ], [ -131.117314419353249, 52.10100517649181 ], [ -131.107108120135791, 52.136556935660479 ], [ -131.098115810222453, 52.150619436196934 ], [ -131.010653648682904, 52.095270312991772 ], [ -131.029308434550785, 51.961632612581411 ] ] ], [ [ [ -127.924643399125017, 51.473861597880671 ], [ -127.941282193705064, 51.457173364822182 ], [ -127.981228484291393, 51.457217310136372 ], [ -128.04455368201954, 51.474015406480277 ], [ -128.091789401594895, 51.511116237973681 ], [ -128.148786474081646, 51.626692414257576 ], [ -128.142403417197528, 51.646588655250923 ], [ -128.122770848089232, 51.666792513443511 ], [ -128.031716157115767, 51.708419712297086 ], [ -127.99869125351222, 51.703816440637127 ], [ -127.986809539191796, 51.673593050812315 ], [ -127.932493130869773, 51.605477813838917 ], [ -127.916370693731324, 51.585427764245964 ], [ -127.916321255252882, 51.506205349114481 ], [ -127.924643399125017, 51.473861597880671 ] ] ], [ [ [ -127.197320983684563, 50.640372796554345 ], [ -126.700942180569527, 50.515524158979247 ], [ -126.203865745591941, 50.45384691053269 ], [ -125.839163583242154, 50.380798812042997 ], [ -125.615223755363587, 50.358529524084133 ], [ -125.534347897786233, 50.342478498081192 ], [ -125.482074946573434, 50.316770489288018 ], [ -125.420452629769599, 50.254653787699709 ], [ -125.313945667698874, 50.106711887524909 ], [ -125.233179673406966, 50.012218475717162 ], [ -125.066418192436132, 49.848192590553822 ], [ -124.934642674713984, 49.731638631029512 ], [ -124.904617038802968, 49.685364215201787 ], [ -124.932417943183808, 49.670455767367457 ], [ -124.930665623781024, 49.643176713592453 ], [ -124.830618622894221, 49.530105420216643 ], [ -124.642851281747085, 49.428657662440457 ], [ -124.49593660329117, 49.380295844189334 ], [ -124.185902411776809, 49.300579044273405 ], [ -123.995811462142598, 49.224026306978146 ], [ -123.93715545404568, 49.170819517839078 ], [ -123.854499811244182, 49.119172787353307 ], [ -123.820035698601345, 49.083511164899164 ], [ -123.75228301046991, 48.951224782899715 ], [ -123.626582932432655, 48.824047043673261 ], [ -123.497032146240684, 48.582095130146655 ], [ -123.472845743950856, 48.602309974667804 ], [ -123.457964761937887, 48.674391276245586 ], [ -123.443056314103544, 48.690486247562689 ], [ -123.41545865680078, 48.698187663872119 ], [ -123.389876990785851, 48.670205485070312 ], [ -123.366316809223036, 48.606462806857451 ], [ -123.283787509199797, 48.455181062805281 ], [ -123.310660068818649, 48.411027008386554 ], [ -123.33453336074497, 48.406478668369289 ], [ -123.445896280032201, 48.42722085666054 ], [ -123.484551677014593, 48.40009561148517 ], [ -123.536456586221163, 48.344955228522366 ], [ -123.573150923558444, 48.322784817520386 ], [ -123.594618209533607, 48.333540433165041 ], [ -123.916924130031731, 48.386560454718847 ], [ -124.115260319238274, 48.436427399980488 ], [ -124.376202101653348, 48.51525430728438 ], [ -124.689383876295608, 48.597289222523131 ], [ -124.868235811829209, 48.653594156311641 ], [ -125.01722141321568, 48.711492107739019 ], [ -125.12072910759386, 48.760798750244902 ], [ -125.140262799745273, 48.802656661997901 ], [ -125.13568699390666, 48.822399094391642 ], [ -124.934747044835149, 48.956344412001272 ], [ -124.849657930261145, 49.028271904979448 ], [ -124.817028534485175, 49.083313410985369 ], [ -124.800230438141256, 49.141551938597615 ], [ -124.812634003067529, 49.212655456935011 ], [ -124.82074740669735, 49.207129333677329 ], [ -124.838732026524042, 49.139069028346654 ], [ -124.868318209293278, 49.078501399083052 ], [ -124.904463230203362, 49.031007500786927 ], [ -124.927358738889239, 49.014220390771555 ], [ -125.168217512725718, 48.991017264886409 ], [ -125.362730459598936, 48.998246269068432 ], [ -125.460294550234764, 48.941040456339323 ], [ -125.489441279862248, 48.933811452157329 ], [ -125.543131467457243, 48.952828786867144 ], [ -125.660487428965268, 49.02915081126298 ], [ -125.828539803540025, 49.09183880193558 ], [ -125.811955940602701, 49.107230648225851 ], [ -125.702295902239825, 49.139200864289165 ], [ -125.644260621705627, 49.18578289731613 ], [ -125.65464819534408, 49.193220641740481 ], [ -125.693693606989797, 49.190386168976119 ], [ -125.728031376854361, 49.199834411524051 ], [ -125.796399299384262, 49.260193300545296 ], [ -125.835439217865712, 49.276683779689989 ], [ -125.918353039387995, 49.249503602871897 ], [ -125.95163612171234, 49.248053407504074 ], [ -125.983831557510797, 49.287900821133519 ], [ -125.937683484461331, 49.379779486747765 ], [ -125.935409314452698, 49.401477485622365 ], [ -126.020311661441468, 49.367991156219972 ], [ -126.048321306064651, 49.378999457421145 ], [ -126.074908221141357, 49.408772407775643 ], [ -126.099841693772177, 49.421274849658829 ], [ -126.168830343864812, 49.415177437316856 ], [ -126.243608789100207, 49.442665231334189 ], [ -126.269701319392425, 49.431865670375316 ], [ -126.279627467232018, 49.392183051674067 ], [ -126.304484035563036, 49.382053656756398 ], [ -126.418582550657732, 49.449026315561213 ], [ -126.44452676551461, 49.451113717984583 ], [ -126.49987039555549, 49.399928413297658 ], [ -126.519145908986104, 49.396775337005494 ], [ -126.548550817334387, 49.418945748007474 ], [ -126.563717443889516, 49.543278028141003 ], [ -126.557488195605004, 49.578599074410278 ], [ -126.54190958172947, 49.590464309237888 ], [ -126.442790925604641, 49.619292435337599 ], [ -126.157800070006545, 49.650153032217958 ], [ -126.134080586679858, 49.672312456891405 ], [ -126.347577909277248, 49.660842729891357 ], [ -126.403157745381833, 49.677739703192174 ], [ -126.462764070897805, 49.720223835672186 ], [ -126.525243321328077, 49.719597614945172 ], [ -126.558262731767371, 49.733396443596575 ], [ -126.592886146174081, 49.764092245548767 ], [ -126.683116862506722, 49.87643844124068 ], [ -126.744607343368031, 49.904915004826989 ], [ -126.849356492871706, 49.922822720353849 ], [ -126.903310352351752, 49.944136197729392 ], [ -126.926095997752213, 49.934731900495649 ], [ -126.947958791554953, 49.902695766461079 ], [ -126.977100028018185, 49.882799525467703 ], [ -127.048752862782763, 49.87152755238148 ], [ -127.114302792041116, 49.879745326132451 ], [ -127.165515562549416, 49.91044112808467 ], [ -127.19587628148102, 49.949145963545504 ], [ -127.207499817080674, 49.992432098009232 ], [ -127.179078185137087, 50.050275117793916 ], [ -127.179622008400031, 50.073115694837071 ], [ -127.192333190525545, 50.099889377499039 ], [ -127.215690125010298, 50.121488499416728 ], [ -127.249797181975424, 50.138000951218515 ], [ -127.268402529364863, 50.129343724325764 ], [ -127.271555605657014, 50.095549777724131 ], [ -127.290029117103913, 50.070841524828438 ], [ -127.349432195541823, 50.051956026061163 ], [ -127.397903877078377, 50.085002902321776 ], [ -127.429764229856261, 50.130837865007749 ], [ -127.467150705891811, 50.163445288126638 ], [ -127.674836260689389, 50.163346411169726 ], [ -127.770439291680105, 50.121125950574765 ], [ -127.816301720187425, 50.117720188726111 ], [ -127.863894495440448, 50.127739720358306 ], [ -127.872991175474965, 50.150118871602643 ], [ -127.828161461850783, 50.21140061222161 ], [ -127.839169763051956, 50.293204814560937 ], [ -127.850848230294332, 50.313727276281298 ], [ -127.946681974184486, 50.326229718164484 ], [ -127.962930754101194, 50.345972150558225 ], [ -127.905884243135972, 50.445189683639938 ], [ -127.873996424536742, 50.463943346464731 ], [ -127.831517785220996, 50.471029528375652 ], [ -127.641426835586799, 50.479093493527017 ], [ -127.578151076337079, 50.46493211603368 ], [ -127.486503123622242, 50.404628158655157 ], [ -127.489343089550886, 50.427358872412896 ], [ -127.524021435600318, 50.495726794942783 ], [ -127.529003735595069, 50.536760732054972 ], [ -127.465936716587692, 50.583112052182514 ], [ -127.526240673966228, 50.596680167934466 ], [ -127.751471395448732, 50.607347892950798 ], [ -127.749691610224573, 50.577739737524468 ], [ -127.731163167134966, 50.535728017171834 ], [ -127.864696497424177, 50.498879871234948 ], [ -127.963655851785106, 50.492628650293341 ], [ -128.058352510670943, 50.498473377078824 ], [ -128.13563583881438, 50.520533924795359 ], [ -128.267438822357889, 50.609259514117468 ], [ -128.349885724917044, 50.69660082604301 ], [ -128.346035016762329, 50.744237546610208 ], [ -128.300842754296212, 50.7941594235146 ], [ -128.241571511800799, 50.828162110358562 ], [ -128.101320041606897, 50.857770265784893 ], [ -127.918079067819917, 50.860538820578 ], [ -127.713052204530015, 50.820746338591306 ], [ -127.197320983684563, 50.640372796554345 ] ] ], [ [ [ -125.184136702786105, 50.097120822705932 ], [ -125.195090072344584, 50.044331514051549 ], [ -125.259557848241329, 50.130013890366939 ], [ -125.358467764123816, 50.311508037915388 ], [ -125.345289663035174, 50.353959211409773 ], [ -125.301157581273543, 50.414076401203062 ], [ -125.26095311196643, 50.417800766579518 ], [ -125.195996444449463, 50.389741683477894 ], [ -125.139488263582905, 50.339720929616647 ], [ -125.126491436915245, 50.320264141765051 ], [ -125.091428569366769, 50.267782450309909 ], [ -125.074015238624384, 50.220651100855719 ], [ -125.113005718627363, 50.163500219769361 ], [ -125.184136702786105, 50.097120822705932 ] ] ], [ [ [ -124.977742041592478, 50.029609833802454 ], [ -125.001565895040343, 50.020776825653002 ], [ -125.025955544408234, 50.134100804585358 ], [ -124.995671729776433, 50.175178687011709 ], [ -124.986992530226601, 50.195854957331704 ], [ -124.990815772559941, 50.217146462050152 ], [ -124.937845189484591, 50.1659281983776 ], [ -124.916399876166508, 50.131562962691675 ], [ -124.907462497895892, 50.083970187438638 ], [ -124.908440281136308, 50.071313936955846 ], [ -124.977742041592478, 50.029609833802454 ] ] ], [ [ [ -126.641231484932376, 49.605812210213998 ], [ -126.680425212013432, 49.601362747153644 ], [ -126.743420819885273, 49.613458694880677 ], [ -126.814216721023428, 49.642089067066593 ], [ -126.938549001156943, 49.718466023105151 ], [ -126.951265676446738, 49.735703572590836 ], [ -126.940048635003222, 49.750480184482626 ], [ -126.904859424676474, 49.762806845109111 ], [ -126.896850391167831, 49.782900840016254 ], [ -126.925837819031429, 49.837733605779846 ], [ -126.826076462686771, 49.872351527022289 ], [ -126.738125409527015, 49.843677209522184 ], [ -126.698124187297964, 49.808487999195449 ], [ -126.649910684482194, 49.745800008522849 ], [ -126.628185219786246, 49.675157915984329 ], [ -126.625779213835102, 49.626785111404672 ], [ -126.641231484932376, 49.605812210213998 ] ] ], [ [ [ -124.153685003321243, 49.531160107756875 ], [ -124.139809270370051, 49.510341015165807 ], [ -124.362326368702156, 49.588190139229255 ], [ -124.457204302008961, 49.634200883171928 ], [ -124.493970050481778, 49.667456499674898 ], [ -124.517821369751005, 49.686320025785108 ], [ -124.630942101605285, 49.735703572590836 ], [ -124.64985506619395, 49.758357382048757 ], [ -124.623290123774325, 49.77510054674994 ], [ -124.547171346456565, 49.764916220189576 ], [ -124.421493241076391, 49.727771443381982 ], [ -124.309152538548744, 49.667302691075292 ], [ -124.153685003321243, 49.531160107756875 ] ] ], [ [ [ -126.092063373162958, 49.353994573654774 ], [ -126.064031755882695, 49.263610048722512 ], [ -126.186814963691504, 49.278101016072185 ], [ -126.229628686027837, 49.295646182757082 ], [ -126.231435937073343, 49.339053166834816 ], [ -126.208545921551718, 49.379779486747765 ], [ -126.115293964869437, 49.365046820170136 ], [ -126.092063373162958, 49.353994573654774 ] ] ], [ [ [ -123.372359289922287, 48.886108813618847 ], [ -123.38481229332703, 48.875210375703119 ], [ -123.541032392059776, 48.945951345198552 ], [ -123.645627732963845, 49.038610040139446 ], [ -123.689237964119627, 49.095090755184629 ], [ -123.482326945484402, 48.954707449048186 ], [ -123.377918372165595, 48.908224292978133 ], [ -123.372359289922287, 48.886108813618847 ] ] ], [ [ [ -123.435382363615503, 48.754437666017878 ], [ -123.477262248025582, 48.728762616210332 ], [ -123.499613933448543, 48.732168378058986 ], [ -123.517521648975418, 48.750152997885692 ], [ -123.582346480549859, 48.925802418648686 ], [ -123.554677412111545, 48.92207805327223 ], [ -123.467857950791839, 48.867410082436805 ], [ -123.487545451542857, 48.845723069890767 ], [ -123.422742592625511, 48.793351241721069 ], [ -123.406801429908029, 48.756063642642403 ], [ -123.435382363615503, 48.754437666017878 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CA-MB", "NAME_1": "Manitoba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.948495061717026, 56.851306871373311 ], [ -89.205223587135436, 56.694839580248299 ], [ -89.463687952463815, 56.535252171816779 ], [ -89.722141331463661, 56.375675749713793 ], [ -89.980572737806412, 56.216099327610806 ], [ -90.330036862465533, 55.991341018255696 ], [ -90.679500987124655, 55.766571722572053 ], [ -91.028987084440871, 55.541780454231343 ], [ -91.378451209099993, 55.3170111585477 ], [ -91.68388212895438, 55.107930340025007 ], [ -91.989335021465862, 54.898849521502342 ], [ -92.294776927648797, 54.689757716651116 ], [ -92.600207847503185, 54.480676898128451 ], [ -92.855206026175907, 54.297512828641288 ], [ -93.110204204848628, 54.114315800168498 ], [ -93.36522435617843, 53.931129758024269 ], [ -93.620222534851152, 53.747932729551479 ], [ -94.003634414711527, 53.516549664084295 ], [ -94.387024321914822, 53.285166598617081 ], [ -94.770408735953836, 53.053761560492831 ], [ -95.153826108978492, 52.822356522368551 ], [ -95.154781919561827, 52.39096734575611 ], [ -95.155710264323801, 51.959512251172384 ], [ -95.156638609085775, 51.52806814291722 ], [ -95.157572447012029, 51.096624034662085 ], [ -95.158500791774003, 50.665179926406921 ], [ -95.159429136535977, 50.233757790808824 ], [ -95.160362974462231, 49.802335655210754 ], [ -95.155298277003396, 49.369672064487219 ], [ -95.158242613053218, 49.203097351101633 ], [ -95.162043882729478, 48.99176433522743 ], [ -95.397920356571191, 48.993181571609597 ], [ -95.824299767367535, 48.993181571609597 ], [ -96.250684671328131, 48.993181571609597 ], [ -96.677064082124474, 48.993181571609597 ], [ -97.10344898608507, 48.993181571609597 ], [ -97.225737809109404, 48.993181571609597 ], [ -97.529828396881413, 48.993181571609597 ], [ -97.956213300842009, 48.993181571609597 ], [ -98.382592711638353, 48.993181571609597 ], [ -98.808977615598948, 48.993159598952531 ], [ -99.235357026395292, 48.993137626295436 ], [ -99.661741930355888, 48.993137626295436 ], [ -100.088121341152231, 48.993137626295436 ], [ -100.514506245112827, 48.993137626295436 ], [ -100.94088565590917, 48.993137626295436 ], [ -101.367270559869766, 48.993137626295436 ], [ -101.404217582763565, 49.420549751974903 ], [ -101.444010064750273, 49.847039026056677 ], [ -101.483802546736996, 50.273473368495729 ], [ -101.523589535559424, 50.69995165624897 ], [ -101.563382017546147, 51.12641895767365 ], [ -101.603174499532855, 51.552875272769796 ], [ -101.642961488355297, 51.979331587865943 ], [ -101.682753970342006, 52.405798889290622 ], [ -101.722546452328729, 52.832255204386769 ], [ -101.762333441151156, 53.258711519482915 ], [ -101.802125923137879, 53.68520079356469 ], [ -101.841918405124588, 54.111657108660836 ], [ -101.881710887111296, 54.538113423756982 ], [ -101.921497875933738, 54.964602697838757 ], [ -101.961290357920461, 55.391037040277809 ], [ -102.00110481256425, 55.817526314359583 ], [ -102.001132278385612, 56.07900093370904 ], [ -102.001181716864068, 56.340464566729963 ], [ -102.001209182685429, 56.601917213422354 ], [ -102.00123664850679, 56.863402819100344 ], [ -102.001286086985232, 57.124888424778362 ], [ -102.001313552806593, 57.386363044127819 ], [ -102.001341018627954, 57.647848649805837 ], [ -102.001390457106396, 57.909279323841133 ], [ -102.001417922927757, 58.170764929519123 ], [ -102.001445388749119, 58.432250535197142 ], [ -102.001494827227575, 58.693725154546598 ], [ -102.001522293048936, 58.955210760224617 ], [ -102.001544265706016, 59.216696365902635 ], [ -102.001599197348739, 59.478149012594997 ], [ -102.001621170005834, 59.739612645615921 ], [ -102.001648635827195, 60.001087264965378 ], [ -101.551731016125132, 60.001087264965378 ], [ -101.101807903258802, 60.001087264965378 ], [ -100.651884790392472, 60.001087264965378 ], [ -100.201967170690409, 60.001087264965378 ], [ -99.752044057824079, 60.001087264965378 ], [ -99.302126438122031, 60.001087264965378 ], [ -98.85217585943434, 60.001087264965378 ], [ -98.402258239732276, 60.001087264965378 ], [ -97.952335126865947, 60.001087264965378 ], [ -97.502390041342537, 60.001087264965378 ], [ -97.052466928476207, 60.001087264965378 ], [ -96.602549308774144, 60.001087264965378 ], [ -96.152626195907814, 60.001087264965378 ], [ -95.702708576205751, 60.001087264965378 ], [ -95.252785463339421, 60.001087264965378 ], [ -94.771886397143021, 60.001768417335114 ], [ -94.785811568572655, 59.953340681112763 ], [ -94.776637984238349, 59.478127039937903 ], [ -94.788267013002269, 59.267859697932465 ], [ -94.819556076695847, 59.15132771106525 ], [ -94.870252489762578, 59.087969554351474 ], [ -94.957352102460163, 59.068853342684747 ], [ -94.84660991073568, 59.050352365416472 ], [ -94.776171065275221, 59.020579415061974 ], [ -94.743772382398674, 58.975414618417204 ], [ -94.713384197645709, 58.903333316839394 ], [ -94.673388468580939, 58.870099672993518 ], [ -94.623730263561626, 58.875735659536616 ], [ -94.579180701315323, 58.8684517237119 ], [ -94.539701329692107, 58.84836871513329 ], [ -94.419241730370388, 58.745514707303471 ], [ -94.287054225327822, 58.716005428834023 ], [ -94.280803004386243, 58.658931452047455 ], [ -94.332636502457277, 58.339097455471745 ], [ -94.332219021972605, 58.297371379661286 ], [ -94.272145777493492, 58.378043990160563 ], [ -94.208919456722228, 58.626346001585659 ], [ -94.123187641928382, 58.736703671811114 ], [ -94.055753557324721, 58.76002764731021 ], [ -93.780035163017843, 58.772541075521957 ], [ -93.486172847120372, 58.744481992420333 ], [ -93.375046133896859, 58.741010312600395 ], [ -93.278124743480845, 58.756413145219199 ], [ -93.178753401799511, 58.725618466310124 ], [ -93.154566999509683, 58.694560115515969 ], [ -93.126507916408059, 58.564383108596985 ], [ -93.100201152709232, 58.489862842082374 ], [ -92.925150486851891, 58.224510048756855 ], [ -92.841769746366481, 58.075886996212319 ], [ -92.739838590134354, 57.844042504946287 ], [ -92.70167208477217, 57.777761984839771 ], [ -92.489646930199683, 57.468584726951832 ], [ -92.449387529249847, 57.38484693078874 ], [ -92.432803666312537, 57.320324223249258 ], [ -92.439779984938028, 57.275060549647606 ], [ -92.47835298445635, 57.205297363392589 ], [ -92.548478719553316, 57.110935787527353 ], [ -92.614111046275738, 57.039030267206243 ], [ -92.675244471459351, 56.98954784344366 ], [ -92.738003873267502, 56.952644765864022 ], [ -92.802389251700163, 56.928310048138854 ], [ -92.798154022046418, 56.921948963911831 ], [ -92.725292691141973, 56.933528554197295 ], [ -92.650981164869719, 56.958280752407148 ], [ -92.510317707355398, 57.022309075162156 ], [ -92.456314409396896, 57.036723138211983 ], [ -92.303351757077465, 57.045874749889236 ], [ -92.29828705961863, 57.022748528303907 ], [ -92.372131666927771, 56.975122794065243 ], [ -92.355701612590067, 56.970574454048005 ], [ -92.249040841919722, 57.008971672309599 ], [ -92.018020325294486, 57.063749506430469 ], [ -91.111285671564687, 57.241211671403249 ], [ -90.897447772782414, 57.256922121221294 ], [ -90.592192634184727, 57.224468506702038 ], [ -90.344813474357338, 57.149069333903924 ], [ -90.075165026571071, 57.051917230588487 ], [ -89.790838843849883, 56.98133006969266 ], [ -89.342310994708654, 56.915412098428106 ], [ -89.211551712376831, 56.883815417535288 ], [ -88.948495061717026, 56.851306871373311 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CA-NB", "NAME_1": "New Brunswick" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.030941620953413, 46.012667541896406 ], [ -64.051354219388344, 45.9778628530687 ], [ -64.159591528204771, 45.964789122101223 ], [ -64.216467751077545, 45.900793758331872 ], [ -64.272838602837297, 45.849861139201437 ], [ -64.314652569276134, 45.835677789051033 ], [ -64.404048324639433, 45.82692168520137 ], [ -64.482238024887764, 45.806355278166848 ], [ -64.536334706638883, 45.866604303902648 ], [ -64.632684807970591, 45.94665069367494 ], [ -64.642045159890159, 45.913318172872152 ], [ -64.593672355310517, 45.813694145634287 ], [ -64.778517333064912, 45.63842924637035 ], [ -64.897894779025052, 45.626003708786953 ], [ -65.05728443354279, 45.544243451761815 ], [ -65.282339373768579, 45.473085001781698 ], [ -65.545011502929341, 45.337282994648149 ], [ -65.884478068613348, 45.222904328175559 ], [ -65.955603559607823, 45.222464875033808 ], [ -66.109752735410012, 45.316617710656715 ], [ -66.066631395874438, 45.359453405650129 ], [ -66.026586228331212, 45.417593056305492 ], [ -66.064906542293016, 45.400849891604281 ], [ -66.089735644802673, 45.375625281267048 ], [ -66.182723929599902, 45.335217564881845 ], [ -66.107357715787401, 45.256928987676645 ], [ -66.143733449596908, 45.227606476792431 ], [ -66.25155327792865, 45.189022490945575 ], [ -66.351968320821683, 45.133211941941568 ], [ -66.439836976517356, 45.095902370205835 ], [ -66.510951481183284, 45.143341336859237 ], [ -66.707167308980829, 45.083399928322649 ], [ -66.872478594583825, 45.067271998019919 ], [ -66.908184162352129, 45.097638210115804 ], [ -66.918698078768827, 45.14561550686787 ], [ -66.976574057539125, 45.157195097153334 ], [ -67.084064296014546, 45.143967557586251 ], [ -67.124834561241684, 45.169444853480002 ], [ -67.170988127455431, 45.18200222700591 ], [ -67.213230560707473, 45.192538116079703 ], [ -67.249584321859885, 45.200777862487769 ], [ -67.270722017978727, 45.186704375622782 ], [ -67.290662204286264, 45.167917753812361 ], [ -67.315293552882125, 45.153833280618841 ], [ -67.36694028336791, 45.17378445325491 ], [ -67.399778419386209, 45.210160187064417 ], [ -67.452600687026219, 45.247678499042507 ], [ -67.472540873333756, 45.275891390743737 ], [ -67.461972025274335, 45.308707554104956 ], [ -67.438516213832699, 45.340381139297591 ], [ -67.427947365773278, 45.377954382918375 ], [ -67.45375425152335, 45.421262490039197 ], [ -67.477221049293547, 45.445904824963606 ], [ -67.493656596795503, 45.474073771350675 ], [ -67.487789897352968, 45.501045207926438 ], [ -67.454918802349027, 45.513965130294281 ], [ -67.424431740639164, 45.530400677796251 ], [ -67.413862892579743, 45.565589888122986 ], [ -67.43264951439015, 45.603108200101076 ], [ -67.486625346527291, 45.618401169434463 ], [ -67.531196881430688, 45.612534469991914 ], [ -67.595741561627236, 45.62073027108579 ], [ -67.657935167515362, 45.644186082527455 ], [ -67.698991077284646, 45.671190478088818 ], [ -67.730664662477281, 45.68646147476511 ], [ -67.755317983730222, 45.68646147476511 ], [ -67.784640494614408, 45.701710498784337 ], [ -67.802240592942056, 45.727517384534394 ], [ -67.7999114912907, 45.769759817786451 ], [ -67.791693717539729, 45.79557768986507 ], [ -67.775258170037759, 45.817879936809589 ], [ -67.774104605540629, 45.842522271733998 ], [ -67.781124869480308, 45.860144342718712 ], [ -67.782289420305972, 45.874173884269538 ], [ -67.777609244346195, 45.891795955254253 ], [ -67.767051382615321, 45.926985165580987 ], [ -67.784640494614408, 45.952803037659635 ], [ -67.786475211481275, 46.042154847708758 ], [ -67.789913932315585, 46.209322822835702 ], [ -67.792517692180525, 46.337379468345688 ], [ -67.795835563400843, 46.49840608581647 ], [ -67.797692252924804, 46.615630211381983 ], [ -67.800350944432466, 46.779853850459119 ], [ -67.802855827340522, 46.935738866171278 ], [ -67.806788932959307, 47.082812846391079 ], [ -67.934834592140746, 47.167616316422937 ], [ -68.096795047537796, 47.274842883013321 ], [ -68.235497445406992, 47.345946401350687 ], [ -68.310885631876573, 47.354471792300927 ], [ -68.358016981330735, 47.34452916496852 ], [ -68.376902480098039, 47.316151478339123 ], [ -68.480382708654872, 47.285796252571771 ], [ -68.668545557629585, 47.253441515009428 ], [ -68.828715241473958, 47.203321884191269 ], [ -68.887415194885051, 47.202827499406766 ], [ -68.937183263189809, 47.211254013400094 ], [ -69.003090248125829, 47.236445664751699 ], [ -69.048573648298387, 47.273656359530548 ], [ -69.053660318414302, 47.294585315407062 ], [ -68.628467431100731, 47.420697380764722 ], [ -68.496016254173114, 47.480309199444974 ], [ -68.429636857109699, 47.528187619240157 ], [ -68.393678603784878, 47.563146116667468 ], [ -68.3792096090923, 47.588985961403182 ], [ -68.378814101264709, 47.691872928218629 ], [ -68.378528456722563, 47.765151739607745 ], [ -68.378253798508965, 47.8384195646683 ], [ -68.377913222324096, 47.929375378684881 ], [ -68.252493295664706, 47.929375378684881 ], [ -68.113516239581898, 47.929375378684881 ], [ -68.113516239581898, 47.998567275855578 ], [ -68.023417359191782, 47.998567275855578 ], [ -67.913444210465386, 47.998567275855578 ], [ -67.739321889370018, 47.998567275855578 ], [ -67.61289122048457, 47.998567275855578 ], [ -67.609463485978821, 47.968827284486707 ], [ -67.579042342240214, 47.939504773602522 ], [ -67.364852880944539, 47.854800180527548 ], [ -67.307053806474059, 47.887231822389737 ], [ -67.187236907372153, 47.894076305072701 ], [ -67.057576257894738, 47.918575817726037 ], [ -66.951821859329286, 47.899448619730748 ], [ -66.925026204010237, 47.963509901471383 ], [ -66.842683671572232, 47.997897109814403 ], [ -66.704376781530627, 48.022440567781899 ], [ -66.631559395940357, 48.011069717738764 ], [ -66.428784730001993, 48.066968157371122 ], [ -66.359614805488377, 48.06066200478682 ], [ -66.210211723617221, 47.988591689537543 ], [ -65.849387735243511, 47.911028210016241 ], [ -65.755718298076545, 47.859744028372404 ], [ -65.666454378655772, 47.696157596350815 ], [ -65.60726004046019, 47.670010134415861 ], [ -65.483521022068047, 47.687016971002123 ], [ -65.343939717915319, 47.767942267057947 ], [ -65.228154801389095, 47.811272346835864 ], [ -65.001682624781125, 47.846846078661628 ], [ -65.046385995627048, 47.793002082467012 ], [ -64.873966555456008, 47.797242805285038 ], [ -64.703228023552228, 47.724842900179453 ], [ -64.766300535723886, 47.673470827907266 ], [ -64.852158693295991, 47.569858763407893 ], [ -64.912177006132382, 47.368633169794265 ], [ -65.086123545971034, 47.233808945901131 ], [ -65.31890187516332, 47.10120396037388 ], [ -65.260223894409307, 47.069244730639127 ], [ -65.192064712121748, 47.049579202545175 ], [ -65.042408944694088, 47.088800395447606 ], [ -64.942433354942821, 47.086174662925572 ], [ -64.831416505004739, 47.060796243988705 ], [ -64.865880617647562, 46.95783237287344 ], [ -64.905771976591168, 46.887937350675912 ], [ -64.882546878048956, 46.822832367723606 ], [ -64.816705811084191, 46.698697841503872 ], [ -64.725859860353069, 46.671440760385963 ], [ -64.689506099200656, 46.512303791424756 ], [ -64.641342034863342, 46.425588700226228 ], [ -64.647856927689986, 46.355979322570818 ], [ -64.556857168359258, 46.311440746653062 ], [ -64.541509267383148, 46.240326241987134 ], [ -64.21184250676049, 46.220232247079991 ], [ -64.144990697569668, 46.192887275333732 ], [ -63.915914761096744, 46.165816961801085 ], [ -63.872628626633002, 46.146173406364255 ], [ -63.831913293048586, 46.107160953704152 ], [ -64.056396944190084, 46.021346741446223 ], [ -64.030941620953413, 46.012667541896406 ] ] ], [ [ [ -64.476085680903068, 47.9588846571543 ], [ -64.591299308344986, 47.907204967682901 ], [ -64.540707265399433, 47.984977187446532 ], [ -64.519569569280591, 48.005082168682236 ], [ -64.500189685728813, 48.013761368232082 ], [ -64.481282214304414, 48.006938858206183 ], [ -64.476085680903068, 47.9588846571543 ] ] ], [ [ [ -64.508561268079404, 47.886737437605234 ], [ -64.533906728030644, 47.813777229743891 ], [ -64.62127001261328, 47.751913213712101 ], [ -64.664622065048277, 47.74760657292282 ], [ -64.684573237684361, 47.753594121979347 ], [ -64.660491205515697, 47.793573371551304 ], [ -64.663281732965899, 47.863017954278547 ], [ -64.591090568102658, 47.872477183155013 ], [ -64.5648662018679, 47.866280893856128 ], [ -64.508561268079404, 47.886737437605234 ] ] ], [ [ [ -66.762483473200348, 44.681772715736173 ], [ -66.897044025208416, 44.628906502781973 ], [ -66.844705156024347, 44.763939466917464 ], [ -66.802166091901611, 44.805379898185777 ], [ -66.745432691299911, 44.791405288277701 ], [ -66.75336482050875, 44.709798839852141 ], [ -66.762483473200348, 44.681772715736173 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CA-NL", "NAME_1": "Newfoundland and Labrador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.100128368282626, 51.44334157718518 ], [ -57.100974315580515, 51.710693882305719 ], [ -57.101029247223238, 52.001117477368894 ], [ -57.507622280311651, 52.001084518383237 ], [ -57.914215313400078, 52.001062545726171 ], [ -58.320797360159943, 52.001062545726171 ], [ -58.727412365905451, 52.001040573069076 ], [ -59.134038357979506, 52.001007614083449 ], [ -59.540620404739386, 52.001007614083449 ], [ -59.947213437827799, 52.000985641426354 ], [ -60.353806470916211, 52.000963668769259 ], [ -60.760399504004639, 52.000963668769259 ], [ -61.166981550764504, 52.000930709783631 ], [ -61.573574583852931, 52.000908737126537 ], [ -61.980189589598439, 52.000908737126537 ], [ -62.386804595343946, 52.000853805483814 ], [ -62.793397628432359, 52.000853805483814 ], [ -63.199990661520772, 52.000853805483814 ], [ -63.606572708280652, 52.000831832826748 ], [ -63.756898641749501, 52.010521774602637 ], [ -63.783364707212229, 52.020442429277949 ], [ -63.792197715361681, 52.044063035647753 ], [ -63.785507041278336, 52.050775682388206 ], [ -63.704010456138235, 52.048369676437034 ], [ -63.664294878451329, 52.060125047979227 ], [ -63.668019243827771, 52.094182666465912 ], [ -63.683751666302925, 52.138029103685398 ], [ -63.76558882762788, 52.297528621488567 ], [ -63.883955531361963, 52.344923642827808 ], [ -63.935492398562317, 52.380936827795352 ], [ -63.942787320715595, 52.418092590931479 ], [ -63.951103971423478, 52.428793274933412 ], [ -64.061670381891247, 52.457753236975663 ], [ -64.06616379026579, 52.465894106426816 ], [ -64.059418184539709, 52.485120181378988 ], [ -64.017615204429433, 52.52547296612147 ], [ -63.955465543855482, 52.565606024293032 ], [ -63.898545375668519, 52.58924860331993 ], [ -63.810676719972847, 52.611254219393743 ], [ -63.522549267575414, 52.648805490357461 ], [ -63.422760445409395, 52.66988825483358 ], [ -63.409686714441918, 52.688718821958162 ], [ -63.550245801835075, 52.774148512717062 ], [ -63.563484327730706, 52.796989089760217 ], [ -63.566791212622476, 52.82587214750265 ], [ -63.548696729510354, 52.939712483876576 ], [ -63.554585401609998, 52.964310873486795 ], [ -63.606188186781608, 53.034854089068432 ], [ -63.671611773261688, 53.100739101347358 ], [ -63.722544392392123, 53.109187587997781 ], [ -63.798965293744843, 53.104298671795647 ], [ -63.905060268495177, 53.076920741063759 ], [ -63.917463833421451, 53.065593836334813 ], [ -63.973373259382356, 52.895064044673376 ], [ -64.007892303667902, 52.878222003015253 ], [ -64.139365697355089, 52.854238847803515 ], [ -64.178477026972075, 52.815325272100324 ], [ -64.187211158164629, 52.625964913314306 ], [ -64.183464820131093, 52.554158269950079 ], [ -64.103187717459392, 52.378486876530019 ], [ -64.13067551147671, 52.1866875528072 ], [ -64.159569555547677, 52.148026662660527 ], [ -64.259611063270214, 52.099511035809797 ], [ -64.270828104713729, 52.083229296907462 ], [ -64.321420147659296, 51.929651410189535 ], [ -64.334570782926576, 51.84190360410787 ], [ -64.326067364633445, 51.811460487712168 ], [ -64.289373027296165, 51.7690862185176 ], [ -64.290515605464748, 51.728777379089308 ], [ -64.506342029713508, 51.608894562016133 ], [ -64.598011955085425, 51.600369171065921 ], [ -64.697416255752401, 51.720460728381425 ], [ -64.702327144611615, 51.745421666833607 ], [ -64.692736079792624, 51.762626257333665 ], [ -64.638968987897826, 51.790531531835654 ], [ -64.626719231571158, 51.825314248006265 ], [ -64.657964349950561, 51.848561319205572 ], [ -64.76464160011372, 51.90541556942128 ], [ -64.932150151425546, 52.055016405206203 ], [ -65.036179696409576, 52.113463673060807 ], [ -65.137133069401273, 52.154695364086791 ], [ -65.268156023618147, 52.185215384782282 ], [ -65.398047385994985, 52.202958305381003 ], [ -65.452100122431929, 52.202914360066814 ], [ -65.474270533433923, 52.196245658640549 ], [ -65.551647245369978, 52.093951953566489 ], [ -65.589143584690973, 52.073363573874843 ], [ -65.631100373400884, 52.073099901989792 ], [ -65.690635287781333, 52.093589404724526 ], [ -65.780558386914748, 52.103894580898896 ], [ -65.805903846865974, 52.063695604756049 ], [ -65.826799843756845, 52.052379686355636 ], [ -65.882928996288626, 52.054214403222488 ], [ -65.978839644478583, 52.080746386656472 ], [ -66.035781785322627, 52.109244922899876 ], [ -66.096964648984695, 52.209528129850355 ], [ -66.148545461499211, 52.229830864999855 ], [ -66.279535456730457, 52.300813533723243 ], [ -66.29602593587515, 52.294584285438759 ], [ -66.326820614784253, 52.188654105616592 ], [ -66.345453427995039, 52.154849172686397 ], [ -66.37886285309763, 52.16451714180522 ], [ -66.407438293640823, 52.18368828511467 ], [ -66.439276673761611, 52.22911675364449 ], [ -66.462216127761678, 52.294529353796037 ], [ -66.463402651244436, 52.341331113393892 ], [ -66.401681457483718, 52.397833801096169 ], [ -66.39423272673082, 52.4178289190464 ], [ -66.426093079508689, 52.660868479098895 ], [ -66.416589905318048, 52.688433177416016 ], [ -66.366360411214444, 52.741431226312727 ], [ -66.35680230538108, 52.806261551051449 ], [ -66.34134454111954, 52.840077470310177 ], [ -66.310472957910633, 52.861006426186663 ], [ -66.300211727050453, 52.896876788883134 ], [ -66.328138974209537, 52.933878743419655 ], [ -66.389893126955897, 52.991985435089362 ], [ -66.428037659661001, 53.010816002213943 ], [ -66.467950991261702, 53.01862728180879 ], [ -66.489912662021339, 53.005037193399744 ], [ -66.521025944458216, 52.958499105686968 ], [ -66.615277657038007, 52.931549641768299 ], [ -66.631383614683656, 52.910258137049851 ], [ -66.671296946284357, 52.748825025422917 ], [ -66.688347728184795, 52.72688532732036 ], [ -66.814778397070242, 52.686499583592251 ], [ -66.855834306839526, 52.698441722719679 ], [ -66.897483478350182, 52.693761546759902 ], [ -66.951019857345557, 52.698309886777167 ], [ -67.029473229478938, 52.720370434493702 ], [ -67.068024256340181, 52.75492243776489 ], [ -67.06969417827888, 52.832584794243104 ], [ -67.0536541386045, 52.920024983125558 ], [ -67.028023034111129, 52.980482749103714 ], [ -66.970300863940452, 53.072987635444974 ], [ -66.965236166481617, 53.182960784171371 ], [ -66.937902181063905, 53.328837254579867 ], [ -66.944439046547643, 53.355138525114427 ], [ -66.980353354558289, 53.383999610199766 ], [ -67.025902672702117, 53.393118262891363 ], [ -67.076055262505903, 53.41740903530237 ], [ -67.128482022318323, 53.502827739732709 ], [ -67.164912687770553, 53.543037702204089 ], [ -67.457094095400763, 53.601221298173613 ], [ -67.473529642902733, 53.613317245900674 ], [ -67.476957377408482, 53.635202012360509 ], [ -67.455742776989837, 53.730464467166371 ], [ -67.470991801009035, 53.796459342730742 ], [ -67.530625592346382, 53.839371942023973 ], [ -67.757251577553987, 54.033654175997754 ], [ -67.761470327714918, 54.060735475858962 ], [ -67.731411732818273, 54.099923709775737 ], [ -67.681061389100691, 54.141342168386984 ], [ -67.511322613094407, 54.236176156379599 ], [ -67.507993755545556, 54.252809457795365 ], [ -67.515332623013009, 54.281725474523427 ], [ -67.581942732975861, 54.391819472863801 ], [ -67.609716171535325, 54.451640031786411 ], [ -67.620131210995126, 54.506538715521231 ], [ -67.601421493484537, 54.552791158691889 ], [ -67.578525984798645, 54.565458395503214 ], [ -67.536514264446026, 54.572665427028141 ], [ -67.314568455198213, 54.517393208122797 ], [ -67.285520602527626, 54.518557758948475 ], [ -67.236071137750656, 54.58566225369583 ], [ -67.150180021192924, 54.616665672847262 ], [ -67.146873136301139, 54.65304140665674 ], [ -67.19917904649958, 54.682089259327341 ], [ -67.204595306471816, 54.699271877170304 ], [ -67.290024997230702, 54.825779450355554 ], [ -67.372026953483825, 54.917350498770588 ], [ -67.415774513746413, 54.983773841148206 ], [ -67.437087991121956, 55.036222573617692 ], [ -67.426442238762732, 55.05886539674708 ], [ -67.408150001736814, 55.071785319114952 ], [ -67.338650487366877, 55.07459781922222 ], [ -67.301747409787254, 55.063721353963587 ], [ -67.166725431980325, 54.937477452663387 ], [ -66.867051348283042, 54.780977202552748 ], [ -66.724448803780689, 54.747974271606267 ], [ -66.650785470892529, 54.798566314551834 ], [ -66.656729074634882, 54.846785310531885 ], [ -66.710364330587154, 54.948222081979509 ], [ -66.692797191245148, 54.998012122941333 ], [ -66.747443189423478, 55.129144940443666 ], [ -66.719043530136986, 55.192547042471631 ], [ -66.725064038179156, 55.213190353805999 ], [ -66.797310134685119, 55.293830005319649 ], [ -66.79961726367938, 55.311199390747873 ], [ -66.773986159186009, 55.328250172648296 ], [ -66.733413647872666, 55.318900807057275 ], [ -66.617914375888589, 55.255960130828157 ], [ -66.239797906386471, 55.008372230758425 ], [ -66.15663139930767, 54.967755774130893 ], [ -66.082836230476985, 54.941707189152851 ], [ -65.883643107643991, 54.90718814486732 ], [ -65.86811942541118, 54.898256259760956 ], [ -65.796829139488551, 54.80502627573577 ], [ -65.741644811211557, 54.768881254825686 ], [ -65.675803744246807, 54.744931058599576 ], [ -65.121785168425163, 54.719168118163651 ], [ -64.815189697745112, 54.733867825755652 ], [ -64.341052716767592, 54.726320218045856 ], [ -63.91017989759672, 54.634035058275458 ], [ -63.751240682549295, 54.612172264472719 ], [ -63.698824909065422, 54.615193504822344 ], [ -63.657999712195561, 54.644362207106923 ], [ -63.569658644372495, 54.776297026592943 ], [ -63.49149091678126, 54.917789951912368 ], [ -63.476044138848252, 54.961867102031277 ], [ -63.48012006673811, 54.987234534639583 ], [ -63.551157667104235, 55.086254313807501 ], [ -63.534018994575447, 55.140350995558634 ], [ -63.510892772990132, 55.167641035662172 ], [ -63.429275338236039, 55.209883468914228 ], [ -63.161384703016822, 55.307475025371417 ], [ -63.111825374954407, 55.339829762933761 ], [ -63.151310239741889, 55.40447332008722 ], [ -63.159473081850152, 55.440442559740603 ], [ -63.151079526842466, 55.484080256717732 ], [ -63.154353452748609, 55.51358953518718 ], [ -63.30455853660348, 55.54211004408765 ], [ -63.363390325957099, 55.564675962917221 ], [ -63.415168892385424, 55.596008971924988 ], [ -63.524416943427909, 55.705696476109239 ], [ -63.700571735303924, 55.860911325780222 ], [ -63.708404987555866, 55.883356394995786 ], [ -63.698407428580737, 55.923379589881932 ], [ -63.661119829502084, 55.947802198235451 ], [ -63.586478713373495, 55.976168898536315 ], [ -63.55846357558606, 55.99249458275284 ], [ -63.578304884936699, 56.02557441799911 ], [ -63.83612105688097, 56.063323442876623 ], [ -63.885889125185727, 56.088416217271345 ], [ -63.968363493566244, 56.094711383527084 ], [ -64.004145965634365, 56.097457965663125 ], [ -63.991720428050996, 56.144633260431476 ], [ -63.899325404995153, 56.212331016920189 ], [ -63.912816616447301, 56.229019249978649 ], [ -64.083654025307979, 56.275249720492212 ], [ -64.115283665186439, 56.288653041316024 ], [ -64.121479954485309, 56.299408656960679 ], [ -64.118711399692188, 56.334334195402363 ], [ -64.136102757777493, 56.39457223480963 ], [ -64.052650606156547, 56.42973947247927 ], [ -63.954927213756818, 56.438880097827962 ], [ -63.925571743887005, 56.475365694922914 ], [ -63.954905241099738, 56.526990452751619 ], [ -64.111866917009223, 56.690906474629514 ], [ -64.115591282385665, 56.707396953774207 ], [ -64.100660861894241, 56.73788401548407 ], [ -64.030370331869122, 56.787080794704508 ], [ -64.003552703892993, 56.82056712410693 ], [ -63.950378873739567, 56.863457750743066 ], [ -63.903302455928113, 56.889341540792969 ], [ -63.876352992009458, 57.023034172846053 ], [ -63.835758508039021, 57.083129389982247 ], [ -63.791813193862637, 57.12987621793738 ], [ -63.757854452332836, 57.227665528308364 ], [ -63.760007772727491, 57.240794190918564 ], [ -63.793285361887555, 57.279037600580551 ], [ -63.799899131671097, 57.318720219281829 ], [ -63.742100057200616, 57.395778327690124 ], [ -63.761556845052198, 57.513134289198149 ], [ -63.758502645716945, 57.552926771184843 ], [ -63.743726033825141, 57.580875991001022 ], [ -63.614691605074739, 57.66929396312392 ], [ -63.598157180615871, 57.692453143694848 ], [ -63.601255325265313, 57.723061055018718 ], [ -63.617635941124561, 57.726137227011066 ], [ -63.715568073766619, 57.695858905543531 ], [ -63.793494102129884, 57.705966327804106 ], [ -63.841910852023716, 57.713349140585734 ], [ -63.871914515277638, 57.731157979155711 ], [ -63.921462857011505, 57.783299094425985 ], [ -63.961310270640936, 57.801690208408786 ], [ -63.985985564550973, 57.803140403776609 ], [ -64.045465547288714, 57.785254660906844 ], [ -64.078798068091501, 57.812522728353287 ], [ -64.133575902212357, 57.875430445596777 ], [ -64.226586159666667, 58.017549591643188 ], [ -64.386997542738996, 58.098881381855108 ], [ -64.400378890905699, 58.121414341699051 ], [ -64.394589095762967, 58.144331823042052 ], [ -64.371385969877835, 58.169292761494233 ], [ -64.097760471158608, 58.359180464050354 ], [ -64.022679901888253, 58.398764205794748 ], [ -63.848008264365689, 58.459738329214474 ], [ -63.837109826449947, 58.482578906257629 ], [ -63.840823205497855, 58.505166797744295 ], [ -63.882373500051614, 58.555209524262665 ], [ -64.038741914219727, 58.544750539488689 ], [ -64.062494356532056, 58.554825002763607 ], [ -64.085873263673889, 58.599374565009924 ], [ -64.084994357390357, 58.621171440841408 ], [ -64.070811007239939, 58.641693902561769 ], [ -64.031414033080807, 58.666314264829083 ], [ -63.960508268657222, 58.684221980355971 ], [ -63.553190137884897, 58.731606015366651 ], [ -63.506014843116546, 58.743416318551539 ], [ -63.4967094228397, 58.753446836512296 ], [ -63.504048290307153, 58.770574522712565 ], [ -63.535260449700928, 58.798787414413795 ], [ -63.591796096388848, 58.829790833565227 ], [ -63.665931841404401, 58.853620180177359 ], [ -63.72713667772355, 58.861684145328724 ], [ -63.990632781525136, 58.81098223909774 ], [ -64.155328832729666, 58.770574522712565 ], [ -64.191781470838976, 58.768739805845684 ], [ -64.235561990087191, 58.78576861508904 ], [ -64.294075175913036, 58.865990786118005 ], [ -64.617864250764612, 58.911496158947671 ], [ -64.808619873275731, 58.929370915488903 ], [ -64.848313478305556, 58.949223211168089 ], [ -64.851125978412838, 58.983687323810898 ], [ -64.832833741386921, 59.020019112306244 ], [ -64.801676513635869, 59.040277902141554 ], [ -64.770255613999751, 59.04869342980632 ], [ -64.393501449237107, 58.998496894688344 ], [ -64.358180402967832, 59.001924629194122 ], [ -64.324364483709104, 59.019964180663521 ], [ -64.332373517217761, 59.043760568290026 ], [ -64.441698472560049, 59.091067699000888 ], [ -64.47781053448449, 59.116182446052704 ], [ -64.505485096087057, 59.166005446000156 ], [ -64.519492664980788, 59.225793045937138 ], [ -64.518668690339979, 59.355860189570677 ], [ -64.503134021778621, 59.39865193924993 ], [ -64.425757309842567, 59.456418054734769 ], [ -64.378669905702566, 59.47507284060265 ], [ -64.385294661814655, 59.514766445632461 ], [ -64.444818589866571, 59.527993985199572 ], [ -64.714620846252458, 59.46629476409592 ], [ -64.775551024358009, 59.488311366498294 ], [ -64.818024170509489, 59.54024374152624 ], [ -64.790822021034302, 59.815572121169794 ], [ -64.761851072663518, 59.864043802706334 ], [ -64.665577875631612, 59.905539165617398 ], [ -64.661468988756127, 59.921513287320494 ], [ -64.665039545532963, 59.93271934243549 ], [ -64.682375971975546, 59.942903668995854 ], [ -64.834042237526774, 59.985772322974924 ], [ -64.868154787656195, 60.008788681274808 ], [ -64.887270999322908, 60.035408555337142 ], [ -64.88034961234014, 60.049668809787363 ], [ -64.782164794141551, 60.063775255638006 ], [ -64.710588863676776, 60.091010364098793 ], [ -64.649867425813568, 60.110082630451359 ], [ -64.622302727496432, 60.141316762502214 ], [ -64.644528070141135, 60.161344839438101 ], [ -64.789349853009398, 60.196116569280179 ], [ -64.84678637863793, 60.238183221275506 ], [ -64.846687501681032, 60.25076256745848 ], [ -64.815859863786301, 60.267428827859874 ], [ -64.614271721330695, 60.30597985472113 ], [ -64.499442615387807, 60.268263788829245 ], [ -64.436348130559068, 60.228108758000559 ], [ -64.419572006872244, 60.171364371070325 ], [ -64.527710438731773, 60.09452598923292 ], [ -64.71330248682716, 60.037166367904206 ], [ -64.768442869789979, 60.012095566166579 ], [ -64.732583493422055, 59.997549667174184 ], [ -64.559153311024971, 60.043417588845784 ], [ -64.407717758373153, 60.064807970521144 ], [ -64.283517314182163, 60.064082872837218 ], [ -64.182849585732626, 59.97292930490687 ], [ -64.168787085196172, 59.846531595007065 ], [ -64.226311501453054, 59.741183690597722 ], [ -64.150681615755502, 59.793610450410142 ], [ -64.056056368005216, 59.822548439795298 ], [ -63.978701628726242, 59.753719091466536 ], [ -63.969506071734841, 59.697622897920382 ], [ -63.928834683464601, 59.644943452551445 ], [ -63.841262658639607, 59.574400236969808 ], [ -63.750185995009062, 59.51259115258074 ], [ -63.850359338674124, 59.447793786827674 ], [ -63.97071456787468, 59.409055992381184 ], [ -63.945446012223272, 59.380194907295845 ], [ -63.780859824304173, 59.349246419787136 ], [ -63.758579550016748, 59.318649494791828 ], [ -63.775872031145155, 59.277154131880792 ], [ -63.751998739218834, 59.27736287212312 ], [ -63.637510209460828, 59.341446126520822 ], [ -63.539885694017997, 59.332865803927888 ], [ -63.415146919728343, 59.194372146301021 ], [ -63.506190624373247, 59.11520466281226 ], [ -63.64551924296947, 59.078927805959665 ], [ -63.75641524329356, 59.063470041698139 ], [ -63.91048751479596, 59.065590403107137 ], [ -63.971154021016446, 59.053813058907878 ], [ -63.941029508148546, 59.027401925087872 ], [ -63.793669883386599, 59.02699543093172 ], [ -63.567900831805431, 59.047045480524702 ], [ -63.398964057782891, 59.079652903643591 ], [ -63.325531437794154, 59.081586497467327 ], [ -63.248407411414604, 59.06833698524315 ], [ -63.222490662379087, 59.057174875442371 ], [ -63.303723575634123, 59.034433175356071 ], [ -63.309875919618818, 59.026479073490151 ], [ -63.279443789551678, 59.003166084319588 ], [ -63.216393250037115, 58.927975651763802 ], [ -63.221919373294796, 58.911034733148796 ], [ -63.282124453716435, 58.867364077186039 ], [ -63.18533489924296, 58.857751039709939 ], [ -63.050301935107484, 58.878163638144883 ], [ -63.008345146397588, 58.855421938058612 ], [ -62.926079518259399, 58.765048399454884 ], [ -62.873883471346403, 58.672444636156683 ], [ -63.102322200763766, 58.545728322729104 ], [ -63.218667420045733, 58.519525929151428 ], [ -63.389922309391096, 58.452553270346641 ], [ -63.43793256512879, 58.398808151108909 ], [ -63.53705122125362, 58.329923871137424 ], [ -63.473616160240013, 58.330681927806978 ], [ -63.296494571452115, 58.441182420303477 ], [ -63.209988220495902, 58.466923388082307 ], [ -63.145498471942062, 58.460463426898372 ], [ -63.119504818606742, 58.441753709387768 ], [ -63.132106137446812, 58.410849167193248 ], [ -63.075680354044337, 58.414782272812033 ], [ -62.83737590159437, 58.479381884651303 ], [ -62.737301434886206, 58.492191943733729 ], [ -62.607882484636761, 58.496377734909032 ], [ -62.593852943085963, 58.473998583664695 ], [ -62.67433878599999, 58.319179241821303 ], [ -62.812052414300226, 58.20040604393111 ], [ -63.062815363319203, 58.127094273556366 ], [ -63.151672788583852, 58.08415970160604 ], [ -63.261503115039162, 58.014671173564636 ], [ -63.220040711113754, 58.002146759024356 ], [ -62.98090129769443, 58.093300326954704 ], [ -62.817534592243732, 58.129269566608087 ], [ -62.588085120600311, 58.158108679036332 ], [ -62.486252841325083, 58.154076696460663 ], [ -62.305648586388713, 57.972274931712974 ], [ -62.201520164447771, 57.954652860728231 ], [ -62.11741981944273, 57.964112089604697 ], [ -61.958645399323458, 57.911762234092095 ], [ -61.899055553300286, 57.861323999746133 ], [ -61.914040905434433, 57.825047142893538 ], [ -61.967786024672151, 57.803349144018966 ], [ -61.99488929719044, 57.769445334131888 ], [ -61.931278454920118, 57.668568865439994 ], [ -61.967939833271771, 57.611934341795177 ], [ -62.083955462697418, 57.56191358793393 ], [ -62.166902243205328, 57.536590100639785 ], [ -62.253606348075337, 57.528767834716376 ], [ -62.338563626706815, 57.484503917012233 ], [ -62.377169585210765, 57.477989024185575 ], [ -62.495558261601943, 57.489206065629105 ], [ -62.454963777631505, 57.46197095716829 ], [ -62.396494537119835, 57.448172128516916 ], [ -62.30319863512338, 57.440679452449842 ], [ -62.194203269637413, 57.4545771580581 ], [ -62.088064349572903, 57.452852304476693 ], [ -61.921127087345383, 57.420783211456467 ], [ -61.851100229205315, 57.381309332997546 ], [ -61.849814828765659, 57.370421881410351 ], [ -61.885828013733203, 57.347866948909314 ], [ -61.938848035287009, 57.274357424620774 ], [ -61.977453993790959, 57.247924318143674 ], [ -61.944538953472843, 57.228137940435772 ], [ -61.860823129966846, 57.197541015440464 ], [ -61.798343879536574, 57.186225097040051 ], [ -61.716330936954904, 57.196200683358086 ], [ -61.628528199230487, 57.183181884033331 ], [ -61.333743031735324, 57.010575676277057 ], [ -61.345762075162568, 56.921586415069868 ], [ -61.390487418665586, 56.852965806983462 ], [ -61.37278844338104, 56.775808821618284 ], [ -61.371623892555377, 56.680832011354568 ], [ -61.531694699442838, 56.654574686134197 ], [ -62.062488176722255, 56.699069316737763 ], [ -62.36610635236687, 56.766975813468832 ], [ -62.381739897885112, 56.787696029102989 ], [ -62.295826808670284, 56.832805894105036 ], [ -62.372027983452128, 56.836167710639529 ], [ -62.460215242675588, 56.818446762697903 ], [ -62.49726114252627, 56.80170359799672 ], [ -62.395516753879406, 56.730028790575034 ], [ -62.116485981516476, 56.666824442460864 ], [ -61.991615371284297, 56.590810035264269 ], [ -61.854923471538655, 56.584295142437611 ], [ -61.813351204327802, 56.570529272771864 ], [ -61.737754277615892, 56.526012669511175 ], [ -61.76004553823185, 56.510763645491977 ], [ -61.899396129485154, 56.505435276148091 ], [ -62.009676895410792, 56.453865449962109 ], [ -61.940430066597358, 56.423587128494574 ], [ -61.692457645028583, 56.397077117717686 ], [ -61.514588985899678, 56.390331511991604 ], [ -61.425292107493277, 56.360646452265456 ], [ -61.498691768496371, 56.327566617019187 ], [ -61.707135379963489, 56.288707972958719 ], [ -61.713078983705842, 56.230930871145347 ], [ -61.558589231718784, 56.207837608545645 ], [ -61.421073357332347, 56.221845177439377 ], [ -61.364702505572595, 56.216022423310989 ], [ -61.324393666144303, 56.076210406258838 ], [ -61.301113635959368, 56.047173539916798 ], [ -61.448901727534533, 56.022366410064222 ], [ -61.449527948261547, 55.995702590687699 ], [ -61.351288198420249, 55.973685988285354 ], [ -61.187888533983923, 55.955393751259436 ], [ -61.133890729189687, 55.930257031550525 ], [ -61.122981304945412, 55.888552928397161 ], [ -61.089341166943385, 55.866360544738086 ], [ -60.995759620404783, 55.862350534819484 ], [ -60.892663913346993, 55.914206005547612 ], [ -60.831865571183968, 55.957876661510397 ], [ -60.743238858818756, 55.941441114008427 ], [ -60.736625089035215, 55.886981883415359 ], [ -60.630969567426646, 55.825018990426656 ], [ -60.592572349165039, 55.814834663866264 ], [ -60.562140219097898, 55.726987980827687 ], [ -60.475842608384028, 55.805122749433281 ], [ -60.412616287612764, 55.788555365988799 ], [ -60.341018384490894, 55.784655219355642 ], [ -60.365408033858785, 55.709102237957893 ], [ -60.408298660494935, 55.649578309905991 ], [ -60.351971754049359, 55.612367615127141 ], [ -60.308334057072202, 55.556974546607819 ], [ -60.192362372960744, 55.480905207768501 ], [ -60.224013985496271, 55.444364679030826 ], [ -60.360958570798417, 55.366284842067955 ], [ -60.433105790347497, 55.242776536575235 ], [ -60.450101640605212, 55.199940841581821 ], [ -60.520534992901403, 55.128991131844032 ], [ -60.617126793461097, 55.060205728829459 ], [ -60.556559164197495, 55.067489664654204 ], [ -60.340754712605829, 55.19397526518236 ], [ -60.212544258496237, 55.236426438676745 ], [ -59.930316464526982, 55.259420824319534 ], [ -59.862102350596686, 55.294862720202786 ], [ -59.758797903296568, 55.309595386780416 ], [ -59.695494678225486, 55.269132738752518 ], [ -59.689089648684288, 55.19632633949081 ], [ -59.605450729478079, 55.173320967519459 ], [ -59.517702923396399, 55.197359054373948 ], [ -59.437865273866464, 55.175913741055865 ], [ -59.485820597961435, 55.130177655326804 ], [ -59.741725148739036, 54.942586095436383 ], [ -59.816399223853253, 54.867219881623896 ], [ -59.837789605528613, 54.813936188185039 ], [ -59.749909963504393, 54.886984286674704 ], [ -59.428559853589604, 55.055503580212587 ], [ -59.394172645246584, 55.080717204221287 ], [ -59.324178746092159, 55.152809492127631 ], [ -59.259579134252874, 55.199940841581821 ], [ -59.086313746783958, 55.183241622194799 ], [ -58.997115745334455, 55.149447675593137 ], [ -58.955796163680105, 55.055086099727902 ], [ -58.88580226452568, 54.952254064555177 ], [ -58.780157729245659, 54.838358796538557 ], [ -58.499885501757248, 54.783119536618841 ], [ -58.398130126781837, 54.774121733541222 ], [ -58.222854241189339, 54.81267276040245 ], [ -58.195256583886575, 54.865901522198584 ], [ -58.058465807184049, 54.882205233758043 ], [ -57.962456282037195, 54.875745272574108 ], [ -57.929299542491123, 54.773143950300806 ], [ -57.826852028817427, 54.718673733379177 ], [ -57.72489889992822, 54.673717676976736 ], [ -57.6266042184442, 54.650360742491984 ], [ -57.483001918044337, 54.640286279217065 ], [ -57.404504600596781, 54.59088075975427 ], [ -57.404449668954058, 54.570413229676603 ], [ -57.485352992352773, 54.517503071408242 ], [ -57.563224089073316, 54.440444962999976 ], [ -57.699267795434849, 54.386546035162638 ], [ -57.889122539005356, 54.384096083897305 ], [ -58.151377187681462, 54.350433973238182 ], [ -58.161924063083788, 54.319990856842509 ], [ -58.219745110211363, 54.286449595797393 ], [ -58.359117674121748, 54.253325815236934 ], [ -58.435187012961066, 54.228112191228234 ], [ -58.558387701254546, 54.10297790911099 ], [ -58.633215584968383, 54.049573366058155 ], [ -58.719458264039531, 54.039411012154858 ], [ -58.840846208123239, 54.04450866859932 ], [ -58.920222431854327, 54.033082886913462 ], [ -58.978460959466574, 54.010242309870279 ], [ -59.012650413895798, 53.976294554669039 ], [ -59.038819848487833, 53.963627317857686 ], [ -59.201417510940445, 53.929108273572155 ], [ -59.496521281963382, 53.834153435965533 ], [ -59.652680955889153, 53.831231072572791 ], [ -59.749470510362627, 53.842294305416715 ], [ -59.823034966293889, 53.834439080507678 ], [ -59.873341364697296, 53.807753288474061 ], [ -60.014164123975519, 53.761577749603248 ], [ -60.056538393170086, 53.733364857901989 ], [ -60.081345523022662, 53.701010120339646 ], [ -60.100516666332098, 53.634246201777188 ], [ -60.117303776347484, 53.610109237965787 ], [ -60.144901433650247, 53.596134628057712 ], [ -60.263323069027052, 53.610065292651626 ], [ -60.395400710784159, 53.653318468129726 ], [ -60.369538893391365, 53.60747251911522 ], [ -60.160249334626343, 53.529985943893706 ], [ -60.100307926089769, 53.48696348131503 ], [ -60.157151189976915, 53.449807718178903 ], [ -60.290272532945721, 53.391470313609773 ], [ -60.305774242521437, 53.360104345616378 ], [ -60.25120514864291, 53.343569921157496 ], [ -60.272694407275168, 53.317103855694768 ], [ -60.345720533107766, 53.289000827278983 ], [ -60.337502759356781, 53.277421236993519 ], [ -60.329460766862496, 53.266105318593077 ], [ -60.148340154484544, 53.306567966621003 ], [ -59.987082824114324, 53.392810645692151 ], [ -59.881712947047902, 53.480064066989343 ], [ -59.829055474336059, 53.504541606985583 ], [ -59.621084274996335, 53.536808453919605 ], [ -59.498169231245001, 53.574766219039446 ], [ -59.322267124925489, 53.643749375967815 ], [ -59.129413113662437, 53.743955678618505 ], [ -58.919574238470219, 53.875319209020262 ], [ -58.65202417943587, 53.977898558636468 ], [ -58.326718991245215, 54.051792604424065 ], [ -58.08807396261038, 54.089519656644484 ], [ -57.935990216574467, 54.091167605926103 ], [ -57.92826682760797, 54.103571170852376 ], [ -58.064848864068168, 54.126774296737494 ], [ -58.177425772659504, 54.13132263675476 ], [ -58.317468502611092, 54.114469608768133 ], [ -58.360776609731914, 54.154470830997184 ], [ -58.35617333807194, 54.171917120725197 ], [ -58.309975826544019, 54.201657112094068 ], [ -58.192103507594425, 54.228167122870957 ], [ -57.614947723858918, 54.191110236691713 ], [ -57.416073204553712, 54.162765509047972 ], [ -57.198884475565492, 53.924362179641093 ], [ -57.148962598661129, 53.847721551717484 ], [ -57.134977002424492, 53.791856071070754 ], [ -57.156949659512676, 53.756875600986376 ], [ -57.243994340567554, 53.715479115032224 ], [ -57.489483851885353, 53.633103623608577 ], [ -57.524079800470716, 53.611405624734005 ], [ -57.527331753719764, 53.599880966091234 ], [ -57.420182091429197, 53.583236678346935 ], [ -57.38615743192814, 53.560549909903386 ], [ -57.331764119306328, 53.469088724773798 ], [ -57.221384476423793, 53.528513775868817 ], [ -57.012149849301508, 53.672588488396059 ], [ -56.840862000970517, 53.739429311258334 ], [ -56.696589534529465, 53.757644643984463 ], [ -56.524290943972417, 53.766433706819726 ], [ -56.464997728819938, 53.765038443094625 ], [ -56.44433244482849, 53.718324574125148 ], [ -56.354024824196031, 53.624479355701482 ], [ -56.270199137404589, 53.600111678990658 ], [ -56.110161289502756, 53.587587264450406 ], [ -55.966086576975485, 53.471132181883007 ], [ -55.911253811211907, 53.390822120225664 ], [ -55.859376367826684, 53.343877538356736 ], [ -55.863408350402366, 53.31224789847829 ], [ -55.85477309616671, 53.28581479200119 ], [ -55.816892235346671, 53.245747651800883 ], [ -55.797929832279564, 53.211942718870688 ], [ -55.80821303579684, 53.134664883891531 ], [ -55.892346339787522, 53.000433921739784 ], [ -55.829867089357251, 52.87843074325761 ], [ -55.857926172458875, 52.823389237251689 ], [ -55.872527003093978, 52.735696362812718 ], [ -55.818683006899363, 52.677150218001231 ], [ -55.802818748481684, 52.643169503814363 ], [ -55.848444970925314, 52.62332819446371 ], [ -56.167004553389901, 52.574779608627352 ], [ -56.292369548406569, 52.573790839058375 ], [ -56.324900067225627, 52.544523259816913 ], [ -56.228396157294299, 52.535964909881073 ], [ -56.052592927931684, 52.537415105248897 ], [ -55.840205224517248, 52.507620182237304 ], [ -55.746458883050479, 52.474573305976662 ], [ -55.705974262365487, 52.428276917491843 ], [ -55.71620253424004, 52.391483703197679 ], [ -55.77713271234559, 52.364248594736864 ], [ -55.896685939562431, 52.369598936737844 ], [ -56.011712799419115, 52.394471984561676 ], [ -56.004637603836713, 52.370389952392998 ], [ -55.833635400047868, 52.310393612213716 ], [ -55.783493796572628, 52.279906550503853 ], [ -55.691065814531157, 52.241619195527676 ], [ -55.67279555016232, 52.190148246298577 ], [ -55.695229633049365, 52.137798390785974 ], [ -56.017502594561847, 51.929288861347601 ], [ -56.282558757016687, 51.797046424662312 ], [ -56.54858171638341, 51.681008822579571 ], [ -56.976004828391439, 51.457689722263751 ], [ -57.018247261643481, 51.446780298019462 ], [ -57.09558002826536, 51.442550561529998 ], [ -57.100128368282626, 51.44334157718518 ] ] ], [ [ [ -61.743620977058427, 57.554574720466462 ], [ -61.659542604710467, 57.524966565040131 ], [ -61.637471070665384, 57.416081062839595 ], [ -61.795267707544227, 57.422442147066619 ], [ -61.975487440981567, 57.495402354927961 ], [ -62.011225967735498, 57.54847730812449 ], [ -62.007237930473991, 57.557628919801715 ], [ -61.983287734247867, 57.566769545150407 ], [ -61.937507703204631, 57.554113294667616 ], [ -61.893068004243759, 57.573130629377431 ], [ -61.848342660740741, 57.579326918676315 ], [ -61.743620977058427, 57.554574720466462 ] ] ], [ [ [ -60.994485206293675, 56.039318315007762 ], [ -60.982729834751495, 56.015137405882228 ], [ -61.137010846496224, 56.032550736624614 ], [ -61.191294295832591, 56.04787666494363 ], [ -61.195842635849843, 56.063916704618009 ], [ -61.188196151183163, 56.08895454736998 ], [ -61.15755528087368, 56.11838692153961 ], [ -61.086891215678051, 56.140831990755203 ], [ -61.048537942730619, 56.129230427812644 ], [ -60.96640415053497, 56.098853229388226 ], [ -60.955340917691061, 56.080396197434141 ], [ -60.994485206293675, 56.039318315007762 ] ] ], [ [ [ -55.361245245308865, 51.889650187960484 ], [ -55.408914924861705, 51.888826213319675 ], [ -55.419604622535104, 51.900032268434671 ], [ -55.399818244827188, 51.938484418338987 ], [ -55.346490606074155, 51.982869185657137 ], [ -55.274090700968557, 51.995173873626527 ], [ -55.293569461477247, 51.929959027388776 ], [ -55.361245245308865, 51.889650187960484 ] ] ], [ [ [ -55.458726938480623, 51.536549588553271 ], [ -55.532445203011505, 51.436969506629595 ], [ -55.583421767456102, 51.388596702049938 ], [ -55.630783829809701, 51.372886252231893 ], [ -55.730704487918246, 51.358669943095833 ], [ -55.941180570166026, 51.343014424920483 ], [ -56.031092682970893, 51.328391621628299 ], [ -56.043935701038947, 51.261880388622359 ], [ -56.030653229829127, 51.226899918537953 ], [ -55.999913482562761, 51.199247329592453 ], [ -55.96084609825995, 51.191425063669072 ], [ -55.873559717977116, 51.207904556485204 ], [ -55.841106103457861, 51.205070083720841 ], [ -55.815090477465446, 51.191139419126927 ], [ -55.795479881014231, 51.166178480674745 ], [ -55.785350486096576, 51.131450696146857 ], [ -55.784702292712481, 51.087065928828707 ], [ -55.800028221031482, 51.033320809591004 ], [ -55.871417383911023, 50.907384525490045 ], [ -55.96199966275708, 50.837676270877751 ], [ -56.07809219648253, 50.780931883947488 ], [ -56.106546787411745, 50.759277830387077 ], [ -56.121224522346651, 50.733800534493326 ], [ -56.135638585396507, 50.650963617270861 ], [ -56.1957338025327, 50.584770987792666 ], [ -56.382413497153976, 50.416976791938708 ], [ -56.454351976460714, 50.38002976904491 ], [ -56.454791429602466, 50.350487531589835 ], [ -56.48393815922995, 50.270836649645162 ], [ -56.539331227749287, 50.206753395247461 ], [ -56.693996760993059, 50.059679415027659 ], [ -56.732350033940492, 50.007692108356991 ], [ -56.749554624440549, 49.96655929428789 ], [ -56.747181577475018, 49.908474575275278 ], [ -56.7541029644578, 49.882898402424615 ], [ -56.789500915026878, 49.833756554846872 ], [ -56.83885150284695, 49.787767783561293 ], [ -56.848618348922656, 49.765311728017167 ], [ -56.829183533728141, 49.724618367089846 ], [ -56.809243347420619, 49.710402057953786 ], [ -56.806892273112183, 49.673356158103076 ], [ -56.822185242445556, 49.613458694880677 ], [ -56.756783628622557, 49.651592241257219 ], [ -56.61064348632901, 49.78771285191857 ], [ -56.500934009487665, 49.869648890200438 ], [ -56.427589280127293, 49.897389369774288 ], [ -56.376392989111807, 49.933666226626883 ], [ -56.321823895233294, 50.013800507027497 ], [ -56.247050943162179, 50.09006759978061 ], [ -56.179408118316175, 50.11497360659007 ], [ -56.148404699164743, 50.100350803297886 ], [ -56.122180332929986, 50.062832491319796 ], [ -56.127420811645521, 50.015140839109876 ], [ -56.164159094296977, 49.957264860339592 ], [ -56.161291662546972, 49.940159146796447 ], [ -56.075016024490196, 49.982632292947898 ], [ -55.927019192672688, 50.017777557960471 ], [ -55.873329005077693, 50.013119354657761 ], [ -55.764729147419303, 49.960461881945918 ], [ -55.674454485772486, 49.96655929428789 ], [ -55.530039197060347, 49.997156219283198 ], [ -55.502913951884977, 49.983148650389495 ], [ -55.526995984053627, 49.936742398619231 ], [ -55.583685439341167, 49.892412562943804 ], [ -55.717630756950769, 49.829021447244372 ], [ -56.039980622763068, 49.704667194453748 ], [ -56.140186925413758, 49.619116654080898 ], [ -56.121224522346651, 49.621731400274371 ], [ -56.051615144691269, 49.658414751283118 ], [ -55.978490141901773, 49.678135211019764 ], [ -55.901849513978163, 49.680848834170149 ], [ -55.869813379943579, 49.670148150168217 ], [ -55.882315821826765, 49.645967241042655 ], [ -55.892038722588282, 49.58025801002043 ], [ -56.087320712459572, 49.45197065161102 ], [ -56.041222077888548, 49.456848581484593 ], [ -55.815244286065052, 49.515273876682102 ], [ -55.678090960520578, 49.434601266182796 ], [ -55.489763316617697, 49.462506540684814 ], [ -55.375944952900866, 49.489741649145628 ], [ -55.379141974507206, 49.472899607487534 ], [ -55.354499639582798, 49.437710397160799 ], [ -55.355345586880688, 49.380834174287997 ], [ -55.343853887223574, 49.372880072422078 ], [ -55.289954959386236, 49.391919379788987 ], [ -55.28018811331053, 49.412749458708618 ], [ -55.283033572403454, 49.513823681314278 ], [ -55.26636731200206, 49.523931103574853 ], [ -55.229541138722254, 49.508143749456991 ], [ -55.207008178878311, 49.482018260179132 ], [ -55.200295532137872, 49.408508735890592 ], [ -55.224970826047908, 49.334658635417185 ], [ -55.259314089076753, 49.266971865257005 ], [ -55.342502568812648, 49.168105894688694 ], [ -55.331911748096132, 49.125577816894491 ], [ -55.3531812801575, 49.079435237009307 ], [ -55.334757207189057, 49.077886164684571 ], [ -55.252337770451248, 49.12087566827762 ], [ -55.247371949949326, 49.138552670905085 ], [ -55.253831911133247, 49.179630553331435 ], [ -55.244526490856401, 49.199790466209862 ], [ -55.176136595669405, 49.244438905413062 ], [ -55.063197138236106, 49.297349063681423 ], [ -55.026173211042504, 49.305358097190066 ], [ -55.010385856924643, 49.293009463906515 ], [ -55.015911980182324, 49.260358095473464 ], [ -54.982634391022259, 49.268103457097055 ], [ -54.910542103115915, 49.316267521434355 ], [ -54.843646348610918, 49.34541425106184 ], [ -54.781892195864557, 49.355488714336786 ], [ -54.717633160210141, 49.388557563254494 ], [ -54.650869241647669, 49.444532907186669 ], [ -54.579040625626376, 49.490807323014394 ], [ -54.502202243788986, 49.527336865423507 ], [ -54.469177340185425, 49.529797803017402 ], [ -54.480625094528378, 49.469329050710684 ], [ -54.465452974808983, 49.400554634024672 ], [ -54.463464449342496, 49.341744817328106 ], [ -54.448248384308926, 49.329440129358744 ], [ -54.389076018770439, 49.392128120031344 ], [ -54.356160978452323, 49.415045601374317 ], [ -54.316731045307563, 49.424120308751753 ], [ -54.270786219336159, 49.419308296849437 ], [ -53.957730787472173, 49.44184125669338 ], [ -53.86244636000923, 49.426306588132007 ], [ -53.755011053176517, 49.385305610005446 ], [ -53.619461731599472, 49.32163983609243 ], [ -53.569561827352203, 49.264148378821176 ], [ -53.560080625818642, 49.191671569415774 ], [ -53.573418028671171, 49.141189389755652 ], [ -53.671141421070899, 49.077545588499703 ], [ -53.758054266183237, 49.035402032204559 ], [ -53.809316475169979, 48.993390311851954 ], [ -53.82492804803114, 48.951378591499321 ], [ -53.845230783180639, 48.925439869806723 ], [ -53.903238597893449, 48.889163012954128 ], [ -54.161285482737156, 48.787693282520848 ], [ -54.09953132999081, 48.784770919128135 ], [ -53.950710523532493, 48.806787521530481 ], [ -53.852888254175866, 48.811335861547747 ], [ -53.847768625074323, 48.79665812661284 ], [ -53.88683600937712, 48.767830000513129 ], [ -53.961510084491337, 48.73888102479944 ], [ -53.969563063314155, 48.72488444223427 ], [ -53.966003492865866, 48.706691082165236 ], [ -53.886132884350303, 48.684674479762862 ], [ -53.784080878504199, 48.695397136421917 ], [ -53.698035953346846, 48.679818522546384 ], [ -53.706330631397634, 48.655527750135377 ], [ -53.774588690642105, 48.576316321332456 ], [ -53.794638740235072, 48.526394444428092 ], [ -53.885539622608917, 48.484558505332188 ], [ -54.067758867841277, 48.418849274309935 ], [ -54.114472736810768, 48.393580718658541 ], [ -54.104233478607682, 48.388362212600072 ], [ -53.937010571838002, 48.436625153894283 ], [ -53.852723459247699, 48.448852937563856 ], [ -53.799340888851944, 48.449237459062914 ], [ -53.738883122873787, 48.495797519432784 ], [ -53.644422670051668, 48.511222324708712 ], [ -53.552027646995825, 48.481800936867614 ], [ -53.411336723660142, 48.562154943839118 ], [ -53.361074270570896, 48.572591955956 ], [ -53.275446825898229, 48.563341467321891 ], [ -53.220262497621235, 48.577865393657191 ], [ -53.127373089780903, 48.63258829613531 ], [ -53.057269327341032, 48.659043375269505 ], [ -53.042646524048848, 48.656615396661266 ], [ -53.027584267614898, 48.634708657544337 ], [ -53.020739784931919, 48.571614172715584 ], [ -53.03732914103351, 48.515847569025766 ], [ -53.060213663390854, 48.480317782514163 ], [ -53.135722699474428, 48.401853424052234 ], [ -53.182117964916131, 48.374365630034902 ], [ -53.225118454837727, 48.364027494874904 ], [ -53.301187793677045, 48.368158354407484 ], [ -53.334311574237489, 48.355963529723539 ], [ -53.405524955860315, 48.294308253934076 ], [ -53.531197568076223, 48.231883935146527 ], [ -53.609749817166502, 48.207703026020994 ], [ -53.560190489104087, 48.173832175119543 ], [ -53.541843320435447, 48.10843056129653 ], [ -53.569408018752583, 48.088072894504336 ], [ -53.704309146945519, 48.067923967954471 ], [ -53.710153873730988, 48.056860735110547 ], [ -53.758208074782857, 48.042391740417969 ], [ -53.869576487234355, 48.019682999317325 ], [ -53.79358405269484, 48.009729385656385 ], [ -53.653024965301682, 48.02574745267367 ], [ -53.63821539442425, 48.014640274515585 ], [ -53.657628236961656, 47.968651503230006 ], [ -53.695014712997221, 47.921212536576604 ], [ -53.861666330682596, 47.799253303408619 ], [ -53.863654856149083, 47.787036506067579 ], [ -53.837738107113566, 47.727270878787692 ], [ -53.805339424237019, 47.6820511505002 ], [ -53.765140448094172, 47.650091920765419 ], [ -53.672349917210752, 47.648257203898567 ], [ -53.603751281781427, 47.662308718106459 ], [ -53.503753719373066, 47.743860234889269 ], [ -53.282741748051507, 47.99784217817168 ], [ -53.085438273728101, 48.068484270710201 ], [ -52.921005894408623, 48.147091451443202 ], [ -52.883278842188204, 48.131172261382801 ], [ -52.865997347388344, 48.112978901313795 ], [ -52.872017855430499, 48.093961566603951 ], [ -52.954953649609877, 48.02931800945052 ], [ -52.998261756730699, 47.975913466397657 ], [ -53.110805706336421, 47.811909553891411 ], [ -53.153861127900726, 47.734554814612437 ], [ -53.175537154118217, 47.652981325172533 ], [ -53.169824263275288, 47.512092647923055 ], [ -53.157684370234065, 47.487801875512048 ], [ -53.122440228264608, 47.455117548093369 ], [ -53.056862833184908, 47.483121699552271 ], [ -52.945032994934564, 47.55280798150747 ], [ -52.873204378913272, 47.619418091470322 ], [ -52.81692141778187, 47.727886113186173 ], [ -52.782402373496325, 47.769436407739931 ], [ -52.744938993160957, 47.768974981941085 ], [ -52.711397732115827, 47.745299443928559 ], [ -52.703289821650287, 47.693004520058679 ], [ -52.67217653921341, 47.621769165778744 ], [ -52.653653589288069, 47.549402219658788 ], [ -52.668507105479691, 47.469817255685371 ], [ -52.683624293556363, 47.42630040832222 ], [ -52.912425571815689, 47.103192485840367 ], [ -52.888134799404696, 47.04586582349728 ], [ -52.882092318705446, 47.01108310732667 ], [ -52.889200473273476, 46.974136084432899 ], [ -52.961721227993038, 46.81941561954639 ], [ -53.031945840046902, 46.722724942029799 ], [ -53.069782755552765, 46.681229579118764 ], [ -53.114815716255009, 46.655807214867735 ], [ -53.167011763168006, 46.646501794590876 ], [ -53.213692673151868, 46.660509363484607 ], [ -53.254880418863678, 46.697720058263457 ], [ -53.291311084315893, 46.717045010172512 ], [ -53.323017628494156, 46.71834139694073 ], [ -53.381750540890891, 46.711409023629386 ], [ -53.536108456935423, 46.632505212025706 ], [ -53.567782042128059, 46.628286461864775 ], [ -53.589798644530418, 46.638888268909824 ], [ -53.616363586950044, 46.680251795878348 ], [ -53.595170959188479, 46.888486667103109 ], [ -53.58132818522293, 46.957294042774777 ], [ -53.612177795774741, 47.010358009642772 ], [ -53.579647276955683, 47.099402202492655 ], [ -53.57846075347291, 47.133251080737011 ], [ -53.597368224897295, 47.146006208176715 ], [ -53.636380677557383, 47.137689557468832 ], [ -53.69537726183917, 47.09294224130872 ], [ -53.774336005085587, 47.011808205010595 ], [ -53.860018381400991, 46.939463231547734 ], [ -54.009597244528834, 46.839619477738978 ], [ -54.076020586906438, 46.819986908630682 ], [ -54.102398761740815, 46.824897797489911 ], [ -54.132808919150861, 46.83858676285584 ], [ -54.173743979306167, 46.880389742966116 ], [ -54.173271567178773, 46.917182957260309 ], [ -54.155243002037906, 46.967467383006607 ], [ -54.092686847307831, 47.086218608239733 ], [ -53.970496901240409, 47.261977892288172 ], [ -53.869104075106947, 47.387002311119971 ], [ -53.849526437641373, 47.440307977215923 ], [ -53.877871165285143, 47.463566034743792 ], [ -53.900843578270837, 47.509324093129948 ], [ -53.939746167645481, 47.644686647121745 ], [ -53.988997878508656, 47.756208868172848 ], [ -54.047291337763625, 47.805636360292738 ], [ -54.191827476089742, 47.859820932672221 ], [ -54.218414391166462, 47.846747201704744 ], [ -54.233894128085083, 47.771655646105842 ], [ -54.404687591631586, 47.555906126156913 ], [ -54.434504487300259, 47.462324579618297 ], [ -54.455894868975619, 47.427596795090409 ], [ -54.488139743252532, 47.403877311763722 ], [ -54.562550146481698, 47.375192007935084 ], [ -54.542401219931818, 47.425113884839448 ], [ -54.463233736443073, 47.536218625405894 ], [ -54.473934420445019, 47.547073118007461 ], [ -54.574492285609125, 47.457754266943965 ], [ -54.651154886189829, 47.408216911538631 ], [ -54.744659528428613, 47.395450797770394 ], [ -54.801502792315759, 47.398636833048187 ], [ -54.856643175278577, 47.385013785653513 ], [ -55.090432246696921, 47.173944441664332 ], [ -55.09921032320365, 47.103587993667958 ], [ -55.139672971231562, 47.045964700454192 ], [ -55.254919557659122, 46.941737401556338 ], [ -55.315717899822133, 46.905713230260261 ], [ -55.401268440195011, 46.899253269076326 ], [ -55.479293345515174, 46.917292820545725 ], [ -55.530709363101536, 46.914007908311049 ], [ -55.652339006413214, 46.881433444177816 ], [ -55.788525535045821, 46.867217135041756 ], [ -55.844698632891777, 46.873830904825297 ], [ -55.880612940902424, 46.887212252992015 ], [ -55.94991470135858, 46.927674901019913 ], [ -55.95817642042374, 46.956415136491273 ], [ -55.954506986690006, 46.973257178149368 ], [ -55.919218899406374, 47.01687290246943 ], [ -55.838370507650382, 47.071650736590271 ], [ -55.771815329330252, 47.092118266667939 ], [ -55.610085586832625, 47.119606060685243 ], [ -55.491521129184747, 47.160639997797432 ], [ -55.401213508552289, 47.221460312617552 ], [ -55.360904669123997, 47.258583116768051 ], [ -55.190836303261406, 47.448987176765769 ], [ -54.975636099739674, 47.516168575812912 ], [ -54.869508166003712, 47.57089147829106 ], [ -54.795361434659611, 47.640347047346808 ], [ -54.784605819014942, 47.664736696714698 ], [ -54.891008410964503, 47.629492554745241 ], [ -54.945940053684978, 47.620868286838146 ], [ -55.03500621919197, 47.6338870861629 ], [ -55.074567988279256, 47.657584596832493 ], [ -55.196604125747058, 47.650036989122697 ], [ -55.366276983782072, 47.661067262980993 ], [ -55.390776496435393, 47.642884889240491 ], [ -55.412683235552322, 47.550380002899232 ], [ -55.434644906311974, 47.501282100635649 ], [ -55.460638559647293, 47.484747676176795 ], [ -55.498651256409872, 47.475035761743811 ], [ -55.576137831631371, 47.465213984025411 ], [ -55.774682761080257, 47.49829381927168 ], [ -55.81136611208899, 47.516377316055241 ], [ -55.862068018319988, 47.530066281421199 ], [ -56.08137710871722, 47.499941768553271 ], [ -56.127267003045901, 47.502842159288917 ], [ -56.083673251382933, 47.524485226520795 ], [ -55.8670777841361, 47.592336791609114 ], [ -55.844391015692537, 47.787827521722761 ], [ -55.857926172458875, 47.819204476044689 ], [ -55.91843887007974, 47.791914435941152 ], [ -56.020139313412429, 47.763701544239922 ], [ -56.089649814110928, 47.77186438634817 ], [ -56.121422276260446, 47.789178840133673 ], [ -56.150569005887931, 47.774501105198766 ], [ -56.221266030069188, 47.671405398140962 ], [ -56.262970133222566, 47.658430544130397 ], [ -56.325757000852079, 47.654508424840145 ], [ -56.45954850986206, 47.616935181219361 ], [ -56.722319515979734, 47.592292846294953 ], [ -56.774098082408059, 47.565002806191416 ], [ -56.952483098978533, 47.574462035067882 ], [ -57.473432825882426, 47.631096558712699 ], [ -57.659804903304462, 47.625416626855383 ], [ -57.884112773189258, 47.66001257544076 ], [ -57.925553204457586, 47.67492102327509 ], [ -58.239311761348389, 47.668823610933117 ], [ -58.333233884071859, 47.676854617098854 ], [ -58.326927731487558, 47.719877079677531 ], [ -58.33684838616287, 47.730830449235981 ], [ -58.428056885735955, 47.683391482582579 ], [ -58.508905277491948, 47.652596803673475 ], [ -58.613132576389773, 47.626240601496193 ], [ -58.941151387730827, 47.580460570452942 ], [ -59.116954617093441, 47.570715697034331 ], [ -59.219303253810224, 47.602521118169506 ], [ -59.259732942852494, 47.634194703362112 ], [ -59.320663120958045, 47.736905888920859 ], [ -59.36242215575416, 47.865687632114742 ], [ -59.362059606912197, 47.888967662299706 ], [ -59.340866979150647, 47.933660046817067 ], [ -59.272059603478979, 47.995568008163048 ], [ -58.960838888481845, 48.15938515308406 ], [ -58.710592296904451, 48.325058987529019 ], [ -58.604969734281511, 48.4113126529287 ], [ -58.502654056550355, 48.442052400195081 ], [ -58.335551999394667, 48.513683262302578 ], [ -58.330234616379329, 48.522098789967345 ], [ -58.492239017090554, 48.513057041575564 ], [ -58.606134285107188, 48.532854405612028 ], [ -58.722556408688959, 48.540709630521036 ], [ -58.943788106581408, 48.521791172768104 ], [ -59.166821562355082, 48.521769200111038 ], [ -59.167700468638614, 48.558485510105385 ], [ -59.063418238098066, 48.62767740727611 ], [ -58.841780046049479, 48.746428632509236 ], [ -58.819192154562828, 48.746846112993921 ], [ -58.887098651293883, 48.691551921431483 ], [ -58.906445575860033, 48.650210367120053 ], [ -58.877254900918373, 48.62272257310272 ], [ -58.843406022674017, 48.605298256031773 ], [ -58.716458996346987, 48.598069251849779 ], [ -58.687345225705144, 48.622041420732984 ], [ -58.641609139976069, 48.749427900201766 ], [ -58.545588628500681, 48.89686442926353 ], [ -58.493733157772553, 49.003212089570354 ], [ -58.403667236368065, 49.084346125868507 ], [ -58.358678220979982, 49.096507991566824 ], [ -58.318731930393653, 49.081346858175976 ], [ -58.186104972209336, 49.061912042981476 ], [ -58.049654771691678, 48.987556571395032 ], [ -58.005544662587141, 48.981250418810731 ], [ -57.990515365138819, 48.98794109289409 ], [ -58.040558091657175, 49.009770927711202 ], [ -58.081844714325882, 49.044707452481418 ], [ -58.098906482554852, 49.077413752557192 ], [ -58.049061509950292, 49.179993102173398 ], [ -57.990669173738439, 49.209447449000123 ], [ -57.980100325679018, 49.229629334535616 ], [ -58.096863025445657, 49.230068787677396 ], [ -58.190938956768747, 49.258754091506034 ], [ -58.218899162913459, 49.305105411633548 ], [ -58.213395012312873, 49.386645942087824 ], [ -58.182699210360667, 49.435381295509444 ], [ -58.10739891451945, 49.499695262806569 ], [ -58.015827866104416, 49.542508985142916 ], [ -57.961214826911714, 49.53152265659881 ], [ -57.856053690087634, 49.473800486428132 ], [ -57.791322242305824, 49.490005321030679 ], [ -57.798847877358526, 49.508550243613115 ], [ -57.897472148698867, 49.6003849639132 ], [ -57.929068829591685, 49.668412310258248 ], [ -57.926146466198958, 49.700843952120408 ], [ -57.712517307659027, 50.024907685185582 ], [ -57.607949432576333, 50.198799293381512 ], [ -57.465555628316309, 50.463690660908213 ], [ -57.432585656355485, 50.50580125821773 ], [ -57.360449423134952, 50.583936026823324 ], [ -57.330555623166475, 50.605183586227611 ], [ -57.23743550242672, 50.605392326469939 ], [ -57.179581496313517, 50.614840569017872 ], [ -57.264143267117419, 50.649359613303403 ], [ -57.294399615927858, 50.673397700157892 ], [ -57.297992145361775, 50.698710201123475 ], [ -57.274898882762088, 50.725275143543115 ], [ -57.242137651043592, 50.744918698979944 ], [ -57.131648144875626, 50.787391845131424 ], [ -57.053282663370595, 50.857308839986047 ], [ -57.005656929131945, 50.939629399766943 ], [ -57.012743111042894, 50.96774341451129 ], [ -57.037308541667485, 50.995648689013279 ], [ -57.035913277942385, 51.010842781389783 ], [ -56.97635639090484, 51.027970467590023 ], [ -56.825151551152459, 51.125715832646847 ], [ -56.805497009387082, 51.144480481800144 ], [ -56.750224790481738, 51.274910174275647 ], [ -56.682395198050486, 51.33278615304593 ], [ -56.619048027665244, 51.362449240115012 ], [ -56.517940846073927, 51.399297386051899 ], [ -56.207368324460901, 51.488616237115394 ], [ -56.025566559713212, 51.568376982345512 ], [ -55.902113185863215, 51.563927519285158 ], [ -55.865836329010619, 51.508281765209318 ], [ -55.690450580132676, 51.471323755986987 ], [ -55.659568010595237, 51.511017361016798 ], [ -55.700656879350149, 51.559434110910615 ], [ -55.666390520621107, 51.578923857747839 ], [ -55.521623669395566, 51.596381133804414 ], [ -55.496453990701056, 51.589822295663595 ], [ -55.453200815222942, 51.56227957000354 ], [ -55.458726938480623, 51.536549588553271 ] ] ], [ [ [ -55.53613660940232, 50.719694088642711 ], [ -55.56967787044745, 50.708685787441539 ], [ -55.600758193898685, 50.709048336283473 ], [ -55.629333634441878, 50.720781735168572 ], [ -55.633860001802049, 50.740183591377445 ], [ -55.604504531932221, 50.780701171048065 ], [ -55.52720472429597, 50.801245605425521 ], [ -55.469295786540044, 50.796378661880482 ], [ -55.472734507374341, 50.775922118131376 ], [ -55.50381483082559, 50.742128171529743 ], [ -55.53613660940232, 50.719694088642711 ] ] ], [ [ [ -54.093697589533889, 49.744459676440471 ], [ -54.019924393360284, 49.679497515759238 ], [ -53.980648268815145, 49.66198530805994 ], [ -54.238387536459626, 49.59165083272066 ], [ -54.269237147011438, 49.587003615746511 ], [ -54.286134120312255, 49.595375198097088 ], [ -54.288770839162837, 49.660842729891357 ], [ -54.277663661004766, 49.711489704479646 ], [ -54.258953943494163, 49.71898238054672 ], [ -54.199375083799538, 49.688539264151018 ], [ -54.137719808010075, 49.75115035052383 ], [ -54.093697589533889, 49.744459676440471 ] ] ], [ [ [ -54.554420263359063, 49.588860305270458 ], [ -54.708701275103792, 49.530676709300934 ], [ -54.743835553787804, 49.507781200615028 ], [ -54.786495467524531, 49.496157665015375 ], [ -54.818509628902021, 49.514449902041292 ], [ -54.863575548589907, 49.576094191502222 ], [ -54.855401720153097, 49.59656172157986 ], [ -54.813082382601237, 49.599352249030062 ], [ -54.788791610190245, 49.591189406921785 ], [ -54.782650252534097, 49.572062208926525 ], [ -54.764072370966034, 49.562350294493541 ], [ -54.733112897128777, 49.562141554251212 ], [ -54.618778175970377, 49.6220829627878 ], [ -54.55916635729011, 49.631498246350077 ], [ -54.537699071314947, 49.619973587707335 ], [ -54.554420263359063, 49.588860305270458 ] ] ], [ [ [ -54.227126549701921, 47.441340692099089 ], [ -54.276059657037322, 47.406536003271384 ], [ -54.325959561284606, 47.408118034581747 ], [ -54.320136807156231, 47.438528191991793 ], [ -54.258701257937659, 47.497667598544666 ], [ -54.227379235258439, 47.539997922425044 ], [ -54.226247643418404, 47.565519163632985 ], [ -54.214953697675071, 47.58510778742712 ], [ -54.168371664648106, 47.607091430843838 ], [ -54.128161702176712, 47.646807008530743 ], [ -54.147541585728504, 47.573121702985503 ], [ -54.227126549701921, 47.441340692099089 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CA-NS", "NAME_1": "Nova Scotia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.314652569276134, 45.835677789051033 ], [ -64.272838602837297, 45.849861139201437 ], [ -64.216467751077545, 45.900793758331872 ], [ -64.159591528204771, 45.964789122101223 ], [ -64.051354219388344, 45.9778628530687 ], [ -64.030941620953413, 46.012667541896406 ], [ -63.87470504272784, 45.959208067200819 ], [ -63.702878864298185, 45.858023981309714 ], [ -63.567692091563103, 45.877953181288689 ], [ -63.509244823708514, 45.874723200696735 ], [ -63.358018011299038, 45.811266167026048 ], [ -63.315918400318068, 45.779867240047025 ], [ -63.292803165061287, 45.751939992887941 ], [ -63.216909607478684, 45.757960500930096 ], [ -63.107925228321264, 45.782427054597804 ], [ -62.910808521583107, 45.776384573898554 ], [ -62.700684001848742, 45.740569142844805 ], [ -62.718339031819099, 45.686000048966264 ], [ -62.750122480297165, 45.648251024088751 ], [ -62.585657141992058, 45.660676561672119 ], [ -62.483055819718757, 45.621817917611679 ], [ -62.447273347650636, 45.640549607779349 ], [ -62.421872956056689, 45.664653612605093 ], [ -62.217724999050319, 45.730857228411821 ], [ -61.955514295688403, 45.868153376227383 ], [ -61.923577038610716, 45.851157525969654 ], [ -61.911612926826194, 45.799115287656264 ], [ -61.877247691140269, 45.714212940667494 ], [ -61.776503058390915, 45.655611864213313 ], [ -61.656905885859885, 45.642175584403873 ], [ -61.492286738955173, 45.68703276384943 ], [ -61.427665154458793, 45.648272996745845 ], [ -61.350508169093615, 45.573675825931446 ], [ -61.277086535433426, 45.476040324160067 ], [ -61.281964465307013, 45.441048867747128 ], [ -61.376117300929906, 45.410616737679987 ], [ -61.460997675261581, 45.366693396160684 ], [ -61.10673252502869, 45.348653844691285 ], [ -61.070818217018044, 45.330152867423038 ], [ -61.031520119815809, 45.291755649161416 ], [ -61.067687113382974, 45.252842073458226 ], [ -61.101074565828483, 45.233462189906447 ], [ -61.165300642497257, 45.256105013035835 ], [ -61.28379918217388, 45.235483674358562 ], [ -61.387257438073618, 45.18504544001263 ], [ -61.497889766512657, 45.1570083295681 ], [ -61.56874059929352, 45.153833280618841 ], [ -61.647424684326339, 45.130531277776811 ], [ -61.719220341362004, 45.094485133823639 ], [ -61.793894416476206, 45.084432643205787 ], [ -62.026804581611032, 44.994465598758211 ], [ -62.264977198118473, 44.936479756702454 ], [ -62.514004307227481, 44.843645280504859 ], [ -62.768052168481134, 44.785121108350467 ], [ -63.031800957839224, 44.714786633011158 ], [ -63.089215510810661, 44.70853541206958 ], [ -63.155726743816615, 44.711325939519782 ], [ -63.30631634917053, 44.642595468147931 ], [ -63.380825629356579, 44.651900888424763 ], [ -63.456840036553174, 44.639958749297335 ], [ -63.544335157078351, 44.655053964716927 ], [ -63.604023880058421, 44.683211924775435 ], [ -63.558254835343718, 44.610614265756055 ], [ -63.544818555534292, 44.543762456565247 ], [ -63.567692091563103, 44.514439945681062 ], [ -63.609758743558444, 44.479975833038225 ], [ -63.761139364567526, 44.486402835236532 ], [ -63.820641319962348, 44.510671634990416 ], [ -63.891316371486511, 44.546322271116026 ], [ -63.923693081705963, 44.603835701044346 ], [ -63.999729461559639, 44.644924569799258 ], [ -64.04492721719005, 44.587872565669784 ], [ -64.044608613662277, 44.545399419518304 ], [ -64.100858615808036, 44.487468509105298 ], [ -64.167007299972028, 44.586686042187011 ], [ -64.286066142404394, 44.550332281034599 ], [ -64.338525861202442, 44.444863527011307 ], [ -64.312246563324976, 44.414760986800474 ], [ -64.275706034587316, 44.334088376301196 ], [ -64.334570782926576, 44.291977778991679 ], [ -64.378208479903719, 44.30354638294861 ], [ -64.468801745078324, 44.185157706557419 ], [ -64.578478262934027, 44.142058339678954 ], [ -64.691571528966946, 44.021340561636435 ], [ -64.825648682519088, 43.929363019065249 ], [ -64.862343019856368, 43.867861551875421 ], [ -65.086826670997866, 43.727181614868272 ], [ -65.172091566828584, 43.731389378700669 ], [ -65.234922379772257, 43.72674216172652 ], [ -65.329602559165281, 43.668108126286683 ], [ -65.344302266757268, 43.549620572938608 ], [ -65.386083274210463, 43.565276091113958 ], [ -65.428534447704848, 43.561419889794962 ], [ -65.450441186821777, 43.52424215400174 ], [ -65.48168630520118, 43.518067837359979 ], [ -65.564446318123856, 43.553257047686714 ], [ -65.66190603863852, 43.534030972734541 ], [ -65.738151158734539, 43.560727751096692 ], [ -65.835303262049976, 43.734388646393199 ], [ -65.886906047221586, 43.795208961213319 ], [ -65.978400191336817, 43.814841530321615 ], [ -66.002163619977694, 43.778103247670145 ], [ -66.037638474846574, 43.742166967002419 ], [ -66.125726857113136, 43.813841774424105 ], [ -66.192545707318317, 44.079688952534127 ], [ -66.19308403741698, 44.143871083888712 ], [ -66.099579395178182, 44.367497801403772 ], [ -65.868020548454297, 44.568800299317246 ], [ -65.94193656689896, 44.575523932386233 ], [ -66.14639214110457, 44.435942628233477 ], [ -66.125309376628451, 44.469714602178044 ], [ -66.090636523743285, 44.504936771490406 ], [ -66.021697312129092, 44.561703131077735 ], [ -65.917052532746581, 44.615107674130599 ], [ -65.777679968836196, 44.646220956567475 ], [ -65.681824252288962, 44.650923105184347 ], [ -65.615752472424774, 44.680399424668138 ], [ -65.519995632834437, 44.732672375880952 ], [ -65.502274684892811, 44.760390882797708 ], [ -65.5871550592245, 44.728508557362744 ], [ -65.728230504059226, 44.697120616712255 ], [ -65.692052524163515, 44.738308362424078 ], [ -65.65670950523716, 44.760313978497891 ], [ -64.902937503826791, 45.120808377015294 ], [ -64.751260251947016, 45.180244414438846 ], [ -64.448850572442254, 45.256050081393113 ], [ -64.406893783732357, 45.305708286412425 ], [ -64.44815843374397, 45.337436803247755 ], [ -64.330747540593222, 45.309322788503437 ], [ -64.340437482369126, 45.268189974434335 ], [ -64.358828596351941, 45.238252229151669 ], [ -64.365706038020534, 45.18726467837854 ], [ -64.3542363110205, 45.13822170775768 ], [ -64.23501267365998, 45.114304470517197 ], [ -64.135509496036107, 45.02306301195847 ], [ -64.182717749790086, 45.147010770592971 ], [ -64.093190158484262, 45.217081574047199 ], [ -63.748329305485115, 45.310882847156677 ], [ -63.46025678473039, 45.321111119031229 ], [ -63.368015570274167, 45.364781774994015 ], [ -63.614460892175316, 45.394126258535294 ], [ -63.906455532220278, 45.378163123160732 ], [ -64.087169650442092, 45.410869423236505 ], [ -64.336405499793443, 45.389533973203868 ], [ -64.600187248137161, 45.410045448595696 ], [ -64.68111254419297, 45.382964148734487 ], [ -64.74666796661559, 45.324363072280278 ], [ -64.831954835103389, 45.350257848658714 ], [ -64.873164553472293, 45.354597448433651 ], [ -64.912880131159199, 45.374801306626239 ], [ -64.827384522429057, 45.475545939375593 ], [ -64.560087148951212, 45.625487351345384 ], [ -64.397093978671023, 45.755862112178164 ], [ -64.35110520738543, 45.783196097595891 ], [ -64.314652569276134, 45.835677789051033 ] ] ], [ [ [ -61.105183452703969, 45.94473907250827 ], [ -61.071334574459613, 45.937092587841562 ], [ -60.936554295880654, 45.985564269378102 ], [ -60.865242037300931, 45.983498839611826 ], [ -60.868395113593095, 45.948639219141398 ], [ -60.984278907076202, 45.910681454021557 ], [ -61.037562600515074, 45.882215876763809 ], [ -60.970611914367353, 45.855804742943803 ], [ -60.971523779636513, 45.83800689070236 ], [ -61.051954690907834, 45.795039359766406 ], [ -61.092109721736506, 45.748369436111091 ], [ -61.059029886490237, 45.703358448065956 ], [ -60.930379979238879, 45.747699270069916 ], [ -60.877601656913043, 45.748116750554573 ], [ -60.806102630748072, 45.738064259936749 ], [ -60.737910489474871, 45.751423635446372 ], [ -60.699051845414402, 45.773330374563272 ], [ -60.472370928564089, 45.9465188577324 ], [ -60.460593584364815, 45.96868926873438 ], [ -60.704896572199871, 45.932906796666259 ], [ -60.733285245157802, 45.956571348350252 ], [ -60.573192465613246, 46.061424867975092 ], [ -60.585749839139154, 46.116664127894808 ], [ -60.50493440636879, 46.203851631220743 ], [ -60.430875565653039, 46.255630197649054 ], [ -60.376515212016855, 46.28456818703421 ], [ -60.297940990269495, 46.311253979067828 ], [ -60.243833322189829, 46.270099192341632 ], [ -60.226452950433071, 46.195556953169955 ], [ -60.092452701180733, 46.206015937943931 ], [ -59.961396787978231, 46.190975654167062 ], [ -59.865046686646508, 46.159510809216783 ], [ -59.849984430212558, 46.141416326104661 ], [ -59.848764947744158, 46.112950748846885 ], [ -59.880910945064187, 46.06163360821742 ], [ -59.934040829903424, 46.019413147622458 ], [ -59.828022759452907, 45.965151670943186 ], [ -59.842184136946244, 45.941542050901916 ], [ -60.015812073257123, 45.880458064196745 ], [ -60.114469303583107, 45.818912651692727 ], [ -60.205084541414806, 45.742997121453044 ], [ -60.386106276835861, 45.654656053629964 ], [ -60.672959315122185, 45.590814498460219 ], [ -60.76372836155349, 45.590814498460219 ], [ -60.871603121527968, 45.610677780467967 ], [ -60.978620947875996, 45.606162399436329 ], [ -61.083705180400273, 45.582387984466919 ], [ -61.186438338616099, 45.585024703317487 ], [ -61.236305283877755, 45.572489302448673 ], [ -61.28366734623134, 45.573862593516679 ], [ -61.32340489657534, 45.598504928441088 ], [ -61.408340202549738, 45.669070116679819 ], [ -61.449780633818065, 45.716223438791076 ], [ -61.495307979304798, 45.941432187616471 ], [ -61.480608271712796, 46.059776918693473 ], [ -61.408647819748964, 46.17036530181835 ], [ -61.302201282485228, 46.243841867121262 ], [ -61.240524034038685, 46.302552806860888 ], [ -60.982499121852058, 46.650489831852383 ], [ -60.931983983206308, 46.72942660244172 ], [ -60.870152926160145, 46.796783782745564 ], [ -60.759696378977807, 46.863393892708416 ], [ -60.616654381333689, 46.97578403371449 ], [ -60.571050131547153, 46.998811378342936 ], [ -60.489070147951111, 47.009709816258663 ], [ -60.408221756195118, 47.003535499616873 ], [ -60.431347977780433, 46.96291904298937 ], [ -60.425448319352256, 46.923181492645369 ], [ -60.331767895856757, 46.767845793360408 ], [ -60.332921460353887, 46.736996182808582 ], [ -60.384084792383746, 46.613334068716256 ], [ -60.482401446524847, 46.413525711484795 ], [ -60.507691974833364, 46.303376781501697 ], [ -60.494541339566069, 46.270274973598333 ], [ -60.534410725852595, 46.214541328894143 ], [ -60.57686189934698, 46.172167059699575 ], [ -60.744809903800558, 46.092691959011574 ], [ -60.830569184415765, 46.074136050100606 ], [ -60.912197605498392, 46.044582826316997 ], [ -61.105183452703969, 45.94473907250827 ] ] ], [ [ [ -60.961570165975559, 45.489938029768354 ], [ -61.002889747629908, 45.481720256017354 ], [ -61.012524757763074, 45.496035442110326 ], [ -61.076168559019024, 45.537322064779033 ], [ -61.081749613919413, 45.557789594856672 ], [ -61.025983010229595, 45.577323287008085 ], [ -60.91245029105491, 45.567292769047327 ], [ -60.953022802368253, 45.515514202619016 ], [ -60.961570165975559, 45.489938029768354 ] ] ], [ [ [ -66.273778620573353, 44.292307368847986 ], [ -66.324106991633855, 44.257293939777952 ], [ -66.311945125935537, 44.291582271164089 ], [ -66.250498590388418, 44.379000487389447 ], [ -66.210376518545388, 44.392019286714202 ], [ -66.273778620573353, 44.292307368847986 ] ] ], [ [ [ -59.787582084082089, 43.939591290939802 ], [ -59.922285458361245, 43.903885723171499 ], [ -60.03775177135968, 43.906621318978978 ], [ -60.114282535997859, 43.939129865140956 ], [ -60.117457584947104, 43.95336814693411 ], [ -59.936029355369911, 43.939591290939802 ], [ -59.866365046071806, 43.947160871306693 ], [ -59.727124318103947, 44.002839584368161 ], [ -59.787582084082089, 43.939591290939802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CA-NT", "NAME_1": "Northwest Territories" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -110.000025405784797, 60.001087264965378 ], [ -110.625026650329829, 60.001087264965378 ], [ -111.250027894874862, 60.001087264965378 ], [ -111.875023646255613, 60.001087264965378 ], [ -112.500024890800645, 60.001087264965378 ], [ -113.125026135345678, 60.001087264965378 ], [ -113.75002737989071, 60.001087264965378 ], [ -114.375028624435743, 60.001087264965378 ], [ -115.000029868980775, 60.001087264965378 ], [ -115.625031113525793, 60.001087264965378 ], [ -116.250032358070825, 60.001087264965378 ], [ -116.875033602615858, 60.001087264965378 ], [ -117.500029353996609, 60.001087264965378 ], [ -118.125030598541656, 60.001087264965378 ], [ -118.750031843086674, 60.001087264965378 ], [ -119.375005621810345, 60.001087264965378 ], [ -120.000006866355378, 60.001087264965378 ], [ -120.477423266403306, 60.001087264965378 ], [ -120.954806707465593, 60.001087264965378 ], [ -121.432195641692175, 60.001087264965378 ], [ -121.909579082754476, 60.001087264965378 ], [ -122.386968016981029, 60.001087264965378 ], [ -122.864356951207611, 60.001087264965378 ], [ -123.341740392269898, 60.001087264965378 ], [ -123.819156792317827, 60.001087264965378 ], [ -123.842074273660813, 60.020214462960666 ], [ -123.879488215517725, 60.039715196126423 ], [ -123.993718566554946, 60.040495225453043 ], [ -124.01082428009812, 60.046131211996169 ], [ -124.013120422763819, 60.060105821904273 ], [ -123.992295837008498, 60.09917320620707 ], [ -123.997360534467319, 60.12656212326749 ], [ -124.103274234796672, 60.225285271564729 ], [ -124.184688422472689, 60.320965206855249 ], [ -124.204529731823328, 60.352902463932935 ], [ -124.225486153521189, 60.452768190398785 ], [ -124.249337472790415, 60.473466433375847 ], [ -124.402838455208524, 60.49408777205312 ], [ -124.469217852271939, 60.56715784319988 ], [ -124.599444297669379, 60.662134653463596 ], [ -124.611304039332722, 60.6822396346993 ], [ -124.611227135032919, 60.701202037766393 ], [ -124.505027790161421, 60.788488418049241 ], [ -124.506477985529244, 60.822282364650874 ], [ -124.582596762847004, 60.952821920411822 ], [ -124.61574800922881, 60.960391500778684 ], [ -124.80650912490421, 60.961061666819887 ], [ -124.837281831156218, 60.948196676094739 ], [ -124.859556612279363, 60.924136616583183 ], [ -124.880485568155876, 60.860317034070533 ], [ -125.151633649788408, 60.844353898695942 ], [ -125.229740952572655, 60.826215470269659 ], [ -125.322498524470447, 60.792388564682398 ], [ -125.378699088137765, 60.791663466998472 ], [ -125.706948612378241, 60.84047572471988 ], [ -125.863756479688107, 60.889980121139587 ], [ -125.89915992342145, 60.890232806696105 ], [ -125.931404797698377, 60.882641253672119 ], [ -125.957085340670204, 60.865096086987222 ], [ -126.003183975241228, 60.808791153198712 ], [ -126.064213030303677, 60.816009171052201 ], [ -126.098578265989602, 60.828896134434416 ], [ -126.114596333006887, 60.863360247077253 ], [ -126.16151894221872, 60.865876116313842 ], [ -126.222756737523511, 60.855845598353085 ], [ -126.234589013365508, 60.843551896712228 ], [ -126.234665917665311, 60.808944961798346 ], [ -126.25505105027888, 60.793805801064565 ], [ -126.296886989374798, 60.784511367116266 ], [ -126.350500272669976, 60.780523329854759 ], [ -126.520074253748078, 60.800320693891223 ], [ -126.665159708501406, 60.762340956114286 ], [ -126.767398481932759, 60.774920302297261 ], [ -126.832410081092434, 60.76409876868135 ], [ -126.859277147547033, 60.769416151696674 ], [ -126.889665332299984, 60.795618545274351 ], [ -126.888138232632372, 60.833136857252441 ], [ -126.911599537238288, 60.859591936386607 ], [ -126.91805949842221, 60.884245257639577 ], [ -126.908501392588846, 60.950108297261409 ], [ -126.94421245352143, 61.052445947649659 ], [ -126.963746145672829, 61.06345424885086 ], [ -127.054592096403951, 61.05123745150982 ], [ -127.092906917201475, 61.070507471776153 ], [ -127.096471980814044, 61.081438868677537 ], [ -127.082134822064006, 61.093688625004205 ], [ -127.02676372620175, 61.126471829379767 ], [ -127.014799614417228, 61.197784087959491 ], [ -127.021259575601164, 61.236752595305404 ], [ -127.072521784587906, 61.369643225374773 ], [ -127.116060604608165, 61.404085365360515 ], [ -127.166597715910996, 61.464521158681578 ], [ -127.229280213419344, 61.494436931307149 ], [ -127.299356510037853, 61.512157879248775 ], [ -127.468051584832438, 61.510509929967156 ], [ -127.608665603868303, 61.532856122225866 ], [ -127.656467119363668, 61.552159101477827 ], [ -127.713024738708668, 61.588183272773932 ], [ -127.80723250597427, 61.618747238783584 ], [ -127.993577117574944, 61.711219166139244 ], [ -128.019416962310657, 61.779642020311854 ], [ -128.046569673307374, 61.813381035270794 ], [ -128.093827365539823, 61.841264337115689 ], [ -128.206327369831342, 61.86526946498455 ], [ -128.232090310267267, 61.883583674667562 ], [ -128.258369608144733, 61.927748715414822 ], [ -128.36621690229785, 61.990898131886269 ], [ -128.400065780542207, 62.033733826879711 ], [ -128.560828726127937, 62.116911320287045 ], [ -128.61583727314823, 62.122096867359858 ], [ -128.678519770656578, 62.11228607596999 ], [ -128.775518065372381, 62.068923037206446 ], [ -128.813860351991281, 62.063814394433422 ], [ -128.840914186031114, 62.072955019782114 ], [ -128.879750857434487, 62.110989689201773 ], [ -128.907370487394331, 62.118998722710415 ], [ -129.013773079343906, 62.131654973193207 ], [ -129.136221204132113, 62.125513615537074 ], [ -129.208879287958496, 62.135741887411626 ], [ -129.25471425064444, 62.152770696654983 ], [ -129.268979998258942, 62.166305853421306 ], [ -129.261613664970128, 62.18375214314932 ], [ -129.23949818561087, 62.201967475875421 ], [ -129.232829484184606, 62.219820259759587 ], [ -129.243942155506971, 62.236409615861163 ], [ -129.293369647626832, 62.294230662988753 ], [ -129.291018573318411, 62.322289746090348 ], [ -129.239289445368541, 62.373244337877878 ], [ -129.249133195744037, 62.388548293539799 ], [ -129.293627826347631, 62.411224075654815 ], [ -129.296313983676669, 62.42528657619124 ], [ -129.287140399342348, 62.441150834608919 ], [ -129.199551895024541, 62.470033892351353 ], [ -129.189449965928247, 62.490292682186663 ], [ -129.211125992145753, 62.513440876429058 ], [ -129.449122827396479, 62.58005098639191 ], [ -129.490255641465581, 62.598716758588324 ], [ -129.494727077183029, 62.619074425380546 ], [ -129.525345974835432, 62.673533655973614 ], [ -129.544050199181754, 62.68803560965182 ], [ -129.620015167899879, 62.71224947776301 ], [ -129.636291413637963, 62.728311490094484 ], [ -129.642443757622658, 62.75642550483883 ], [ -129.658308016040337, 62.776475554431812 ], [ -129.718666905061582, 62.831670869037339 ], [ -129.72892264275751, 62.864871553897586 ], [ -129.71440420958649, 62.894787326523158 ], [ -129.713937290623363, 62.930602757576906 ], [ -129.617482819170476, 63.037290994068627 ], [ -129.611775421491814, 63.058681375743959 ], [ -129.629782013975586, 63.068272440562964 ], [ -129.734426793358097, 63.070129130086912 ], [ -129.827497475619396, 63.091761210990228 ], [ -129.87033866377709, 63.15689915292819 ], [ -129.90568168270346, 63.187408187295148 ], [ -129.97867484955043, 63.215752914938889 ], [ -130.059731981548737, 63.261203356125833 ], [ -130.133604054679239, 63.276452380145031 ], [ -130.139778371321029, 63.293349353445848 ], [ -130.101666797601553, 63.318793690353971 ], [ -129.948341596440173, 63.375691885883839 ], [ -129.905319133861497, 63.405772453437578 ], [ -129.844938272183157, 63.485785884224214 ], [ -129.855067667100798, 63.521700192234874 ], [ -129.887801432997946, 63.554823972795305 ], [ -129.945523603168624, 63.586354735716867 ], [ -129.975988692221392, 63.615655273943958 ], [ -130.063038866440536, 63.635628419237122 ], [ -130.081743090786858, 63.650196290886612 ], [ -130.097662280847231, 63.679112307614645 ], [ -130.110681080171986, 63.695031497675046 ], [ -130.141689992487699, 63.69761328488292 ], [ -130.243571710241383, 63.678332278288025 ], [ -130.284990168852602, 63.685934817640543 ], [ -130.302606746673064, 63.703710697224892 ], [ -130.298448421319108, 63.721025151010394 ], [ -130.259589777258668, 63.737405766869614 ], [ -130.145123220157728, 63.761839361551694 ], [ -130.120810475089655, 63.773133307295012 ], [ -130.117915577518289, 63.793370124473256 ], [ -130.139597096900047, 63.807839119165834 ], [ -130.282556697080082, 63.822560799414902 ], [ -130.363613829078417, 63.850213388360402 ], [ -130.512879581842782, 63.920130383215024 ], [ -130.660574289625316, 63.950518567967976 ], [ -130.757726392940754, 63.993046645762178 ], [ -130.791855422562975, 64.030510026097545 ], [ -130.846660722505192, 64.048802263123463 ], [ -130.871978716635056, 64.080607684258609 ], [ -130.929700886805733, 64.125464863704167 ], [ -130.941280477091226, 64.140505147481036 ], [ -130.913012653747273, 64.167608419999311 ], [ -130.913320270946485, 64.192514426808771 ], [ -130.930837971810064, 64.219233177828016 ], [ -130.981688193476401, 64.259465112956491 ], [ -131.012076378229381, 64.272824488466114 ], [ -131.026133385601554, 64.298093044117536 ], [ -131.02176632000527, 64.324416287309162 ], [ -131.106718105472481, 64.400903106633166 ], [ -131.26508053827132, 64.447045686518379 ], [ -131.358771948095381, 64.458471468204237 ], [ -131.399262061944654, 64.451385286293288 ], [ -131.449617898826489, 64.41596536306713 ], [ -131.512794781119339, 64.393432403223187 ], [ -131.58591429074454, 64.380259795298798 ], [ -131.763733511395003, 64.380512480855316 ], [ -131.796807853476992, 64.387906279965506 ], [ -131.802778923040705, 64.406561065833387 ], [ -131.790375358114431, 64.42596292204226 ], [ -131.730274647813957, 64.488881625614283 ], [ -131.71598692754236, 64.515029087549237 ], [ -131.729005726867115, 64.533815709359629 ], [ -131.752313222873397, 64.544944860174809 ], [ -131.893207393287156, 64.577200720780269 ], [ -132.05216858099169, 64.684196574471201 ], [ -132.106270755907076, 64.702148235312251 ], [ -132.320679943773627, 64.762715864575853 ], [ -132.401731582607681, 64.777437544824949 ], [ -132.553688985865335, 64.78022807227515 ], [ -132.588103660029731, 64.794081832569248 ], [ -132.599677757150914, 64.808550827261826 ], [ -132.601127952518766, 64.825909226361489 ], [ -132.583813498733264, 64.84182841642189 ], [ -132.50479982384411, 64.883741259817612 ], [ -132.497356586255506, 64.912679249202739 ], [ -132.496999530577824, 64.957481497005574 ], [ -132.480953997739164, 64.970225638116716 ], [ -132.380879531031013, 65.021685601017253 ], [ -132.35382569699118, 65.038505670018282 ], [ -132.352589735029966, 65.057248346514513 ], [ -132.381269545694323, 65.075068171413022 ], [ -132.516066303766081, 65.094162410422655 ], [ -132.538313619067878, 65.109147762556802 ], [ -132.540148335934759, 65.170055968005272 ], [ -132.57944643313698, 65.184579894340573 ], [ -132.609911522189748, 65.181448790705502 ], [ -132.708096340388352, 65.167155577269625 ], [ -132.75181643482955, 65.173176085311781 ], [ -132.768092680567634, 65.184755675597273 ], [ -132.773234282326285, 65.203410461465154 ], [ -132.762484159845883, 65.225009583382842 ], [ -132.596887229700741, 65.28024884330253 ], [ -132.566422140647944, 65.300254947581351 ], [ -132.541697408259466, 65.340816472566132 ], [ -132.345871595125232, 65.443417794839434 ], [ -132.267758799176733, 65.53770246640488 ], [ -132.194688728029945, 65.597654861270001 ], [ -132.19618836187621, 65.627669510852456 ], [ -132.295252086358317, 65.716142414618076 ], [ -132.377753920560224, 65.766657553263826 ], [ -132.489039935547623, 65.819600670517815 ], [ -132.533172017309255, 65.833893883953664 ], [ -132.554848043526761, 65.85700911921046 ], [ -132.538983785109082, 65.886056971881032 ], [ -132.340751966023703, 65.955248869051758 ], [ -132.342745984654442, 65.978968352378445 ], [ -132.370909437877231, 65.993569183013562 ], [ -132.483403949004497, 65.989020842996297 ], [ -132.577249167428164, 66.02377060018128 ], [ -132.614328026264474, 66.029230805467677 ], [ -132.71364992946738, 65.997754974188865 ], [ -132.766181059400964, 65.971222990754853 ], [ -132.821321442363796, 65.927991787933848 ], [ -132.902504917140362, 65.913544765898365 ], [ -132.948026769462842, 65.916752773833252 ], [ -132.967796667677931, 65.933704678776792 ], [ -132.939556310155325, 65.976441496813322 ], [ -132.916457554391371, 66.001655120822022 ], [ -132.917902256594914, 66.017552338225329 ], [ -132.937979772009271, 66.028659516383385 ], [ -133.041460000566076, 66.02754989720043 ], [ -133.229095505770687, 66.006148529196537 ], [ -133.41213323247959, 65.956028898378378 ], [ -133.49972722996165, 65.955457609294086 ], [ -133.588947204068262, 65.962587736519197 ], [ -133.621631531486941, 65.974628752603536 ], [ -133.623801331374409, 66.01033432037184 ], [ -133.645351014813627, 66.049357759360475 ], [ -133.675739199566607, 66.073956148970694 ], [ -133.67718390177015, 66.0956321751882 ], [ -133.659792543684858, 66.111551365248602 ], [ -133.593775695463393, 66.149860692881845 ], [ -133.568715880054299, 66.176634375543813 ], [ -133.566958067487235, 66.208417824021893 ], [ -133.571248228783702, 66.248748636107251 ], [ -133.583157408925501, 66.285102397259664 ], [ -133.612095398310657, 66.295231792177333 ], [ -133.65114080995636, 66.300263530650511 ], [ -133.759636297493586, 66.303526470228121 ], [ -133.79017279768189, 66.304449321825814 ], [ -133.800120918178578, 66.325587017944656 ], [ -133.790095893382102, 66.348098005131504 ], [ -133.759553900029516, 66.415993515534012 ], [ -133.739377507658276, 66.439844834803239 ], [ -133.705968082555671, 66.444316270520687 ], [ -133.674316470020131, 66.445865342845423 ], [ -133.654030214363473, 66.452841661470899 ], [ -133.65201971623992, 66.472485216907756 ], [ -133.658375307302663, 66.509278431201921 ], [ -133.64927862726816, 66.536304799420407 ], [ -133.635194154074611, 66.565649282961687 ], [ -133.651761537519121, 66.586061881396603 ], [ -133.725606144828248, 66.631281609684095 ], [ -133.7639209656258, 66.650969110435113 ], [ -133.768601141585577, 66.669371210746476 ], [ -133.77074347565167, 66.684356562880623 ], [ -133.799038764816999, 66.711119259214058 ], [ -133.805855781678588, 66.73342150615855 ], [ -133.797539130970733, 66.752460813525488 ], [ -133.782735053257539, 66.785485717129035 ], [ -133.794155341779145, 66.81863147034656 ], [ -133.847510446353539, 66.861708864567959 ], [ -133.923859936570722, 66.902973514579571 ], [ -134.031322709224781, 66.944029424348855 ], [ -134.053388750105597, 66.97270374184896 ], [ -134.05558052265016, 67.004487190327012 ], [ -134.117982868780615, 67.004465217669917 ], [ -134.404868866052567, 67.004487190327012 ], [ -134.691743876995986, 67.004542121969735 ], [ -134.978602408446591, 67.004564094626829 ], [ -135.265460939897167, 67.004597053612457 ], [ -135.55231397818352, 67.004640998926646 ], [ -135.839167016469844, 67.004673957912274 ], [ -136.126053013741796, 67.004695930569369 ], [ -136.169306189219895, 67.015242805971695 ], [ -136.194552772214223, 67.03621570716237 ], [ -136.2232270897143, 67.088279918132827 ], [ -136.223820351455686, 67.13489491014542 ], [ -136.220546425549543, 67.163085829189583 ], [ -136.217986610998764, 67.181224257615867 ], [ -136.15015701856754, 67.226334122617942 ], [ -136.10776077671585, 67.287571917922719 ], [ -136.105178989508005, 67.304216205667018 ], [ -136.128535923992757, 67.354083150928659 ], [ -136.140906529933403, 67.375264792361691 ], [ -136.158528600918146, 67.393710837987214 ], [ -136.177622839927778, 67.422626854715276 ], [ -136.177908484469924, 67.450048730761353 ], [ -136.169251257577173, 67.514230862115937 ], [ -136.207934120380912, 67.576907866460004 ], [ -136.233307046153527, 67.600264800944757 ], [ -136.264755411610992, 67.615975250762801 ], [ -136.400711227344175, 67.665897127667193 ], [ -136.434406296988897, 67.702536533361723 ], [ -136.445436570847164, 67.746591710823566 ], [ -136.445310228068934, 68.037707444584981 ], [ -136.445183885290646, 68.328801205689331 ], [ -136.445052049348135, 68.619916939450775 ], [ -136.443755662579917, 68.895124469480351 ], [ -136.122361607350967, 68.882204547112508 ], [ -135.866632837830082, 68.832590287407356 ], [ -135.362173590070853, 68.696425731431844 ], [ -135.258819704292279, 68.684307811047717 ], [ -135.231222046989501, 68.694283397365751 ], [ -135.406920906230937, 68.828975785316345 ], [ -135.434573495176437, 68.8419945846411 ], [ -135.637968888677534, 68.892224078744704 ], [ -135.876322779605971, 68.916987263283119 ], [ -135.894724879917305, 68.926699177716074 ], [ -135.939010770278571, 68.974193076012199 ], [ -135.924772488485416, 68.992639121637751 ], [ -135.872840113457471, 69.001032676645423 ], [ -135.695224139885084, 69.000648155146393 ], [ -135.589986098761187, 69.00823970817035 ], [ -135.575544569889985, 69.026949425680954 ], [ -135.651245866723087, 69.031289025455862 ], [ -135.742641133881421, 69.049427453882174 ], [ -135.849686426050795, 69.081419642602583 ], [ -135.910199123671674, 69.11148922382776 ], [ -135.691455829194467, 69.31116574511671 ], [ -135.614919571392022, 69.290994845909751 ], [ -135.499552135350484, 69.33715939845203 ], [ -135.292822391136241, 69.307858860224911 ], [ -135.254990968794658, 69.323832981928035 ], [ -135.229799317443053, 69.425214821732936 ], [ -135.199026611191016, 69.449615457429388 ], [ -135.140843015221492, 69.467797831169861 ], [ -134.852902330409307, 69.485892314281983 ], [ -134.493852634095475, 69.467907694455306 ], [ -134.456823213737607, 69.47761960888829 ], [ -134.491215915244879, 69.545317365377002 ], [ -134.495374240598835, 69.571926253110803 ], [ -134.473676241724235, 69.632801499573617 ], [ -134.451478364900879, 69.665485826992324 ], [ -134.408944793942425, 69.681789538551755 ], [ -134.242029504371999, 69.668825670869722 ], [ -134.189888389101725, 69.638800034958706 ], [ -134.134055867440622, 69.587274154086884 ], [ -134.077470782274247, 69.55787473890291 ], [ -133.899959178823053, 69.528211651833828 ], [ -133.879804759108907, 69.507722149099095 ], [ -133.947475049776244, 69.429510476193684 ], [ -134.018402786856939, 69.388476539081495 ], [ -134.165037313934988, 69.280579806449936 ], [ -134.174337241047539, 69.252828340547552 ], [ -133.94806831151763, 69.301321994741187 ], [ -133.694058902413872, 69.368426489488513 ], [ -133.475930842335146, 69.405373512382312 ], [ -133.293640185967263, 69.412141090765488 ], [ -133.163133589191943, 69.433905007611315 ], [ -133.084427531502058, 69.470643290262785 ], [ -133.028254433656087, 69.508260479197759 ], [ -132.915342442044135, 69.629648423281481 ], [ -132.840311311252265, 69.650687242443411 ], [ -132.526788960425137, 69.643238511690527 ], [ -132.452323625553248, 69.646907945424232 ], [ -132.40390138249515, 69.658751207594776 ], [ -132.412739883808882, 69.674099108570886 ], [ -132.47893800645133, 69.69285277139565 ], [ -132.56836122763599, 69.698126209096813 ], [ -132.570607931823247, 69.706706531689747 ], [ -132.537539082905539, 69.7265478410404 ], [ -132.488496112284679, 69.738072499683142 ], [ -132.333984387640527, 69.751816396691822 ], [ -132.232415780250363, 69.708145740729037 ], [ -132.163427130157743, 69.704992664436872 ], [ -131.934109494456834, 69.753464345973413 ], [ -131.581860335511777, 69.882147212210413 ], [ -131.440938699276671, 69.917929684278533 ], [ -131.318957493451592, 69.924158932563017 ], [ -131.215861786393788, 69.900801998078293 ], [ -131.136381192541535, 69.906899410420266 ], [ -131.031840783280188, 69.979497069439645 ], [ -130.990603599089923, 70.018125000600691 ], [ -130.926163289014539, 70.051611330003084 ], [ -130.665479685320264, 70.127032475458293 ], [ -130.498438052971551, 70.143182378418118 ], [ -130.396375060796913, 70.129262700152736 ], [ -130.27493767823475, 70.097995609116253 ], [ -130.174940115826416, 70.085899661389192 ], [ -130.043323899868142, 70.095051273066417 ], [ -129.94498527306996, 70.090942386190932 ], [ -129.898062663858127, 70.106158451224502 ], [ -129.730087193583188, 70.192093513096438 ], [ -129.675644442482906, 70.192950446722875 ], [ -129.622986969771063, 70.167604986771636 ], [ -129.538441678459975, 70.105180667984087 ], [ -129.538183499739205, 70.073913576947604 ], [ -129.648282991243832, 69.997745361151374 ], [ -130.458854311227185, 69.77997435675033 ], [ -130.708529613720287, 69.685975329727057 ], [ -130.832087357691449, 69.651489244427125 ], [ -130.960116537380088, 69.63203245657553 ], [ -131.207979095663404, 69.615750717673194 ], [ -131.306345188282961, 69.596634506006467 ], [ -131.472952860654175, 69.579473860820599 ], [ -131.86279723587711, 69.549349347952671 ], [ -131.937778928190568, 69.534726544660487 ], [ -131.988782958456511, 69.517642803774407 ], [ -132.128776249929643, 69.402352272032687 ], [ -132.196809089438972, 69.364702124112085 ], [ -132.33078187286992, 69.307968723510356 ], [ -132.481212176459962, 69.273131075697052 ], [ -132.686727931370058, 69.259859590815779 ], [ -132.817470734209081, 69.205751922736113 ], [ -132.967950476277537, 69.101414760552842 ], [ -133.089442790482423, 69.02876216989074 ], [ -133.22824406530853, 68.967161825744 ], [ -133.378932547619343, 68.886643023844329 ], [ -133.418313042285632, 68.844268754649733 ], [ -133.373378958540286, 68.788458205645725 ], [ -133.348390554266757, 68.769880324077661 ], [ -133.196823165672413, 68.739832715509579 ], [ -133.138018842140127, 68.746600293892726 ], [ -133.192175948698264, 68.776527052846859 ], [ -133.319556935002765, 68.819725296682236 ], [ -133.336662648545939, 68.835227006257952 ], [ -133.304027759605674, 68.847421830941897 ], [ -132.706030910622047, 68.81486933946573 ], [ -132.577611716270098, 68.84778437978386 ], [ -132.532655659867686, 68.875645708971689 ], [ -132.542241231522411, 68.889960895064632 ], [ -132.704350002354801, 68.895893512478438 ], [ -132.739099759539783, 68.922458454898077 ], [ -132.764681425554699, 68.972479208759324 ], [ -132.770130644512562, 69.012172813789135 ], [ -132.755458402741937, 69.04162716061586 ], [ -132.718923367168543, 69.07918941790814 ], [ -132.545185567572219, 69.140635953455245 ], [ -132.358066419809177, 69.166937223989805 ], [ -132.213964241460559, 69.201665008517693 ], [ -132.134357304830047, 69.234459199221817 ], [ -131.919640499764256, 69.290522433782343 ], [ -131.833392327528827, 69.335972874969258 ], [ -131.786936637280121, 69.371293921238532 ], [ -131.781069937837572, 69.388861060580524 ], [ -131.820164787961744, 69.401627174348789 ], [ -131.788386832647944, 69.431960427459018 ], [ -131.631804185073236, 69.459063699977293 ], [ -131.562919905101751, 69.461392801628648 ], [ -131.342935155499077, 69.435399148293328 ], [ -131.303010837569843, 69.415096413143829 ], [ -131.324719822772948, 69.361197485306519 ], [ -131.293919650699593, 69.363702368214547 ], [ -131.209011810546542, 69.432191140358441 ], [ -131.161732145657027, 69.454987772087435 ], [ -131.112842983635801, 69.459481180461978 ], [ -131.063415491515912, 69.450692117626716 ], [ -131.013416710311759, 69.428730446867064 ], [ -130.986285971972109, 69.362900366230832 ], [ -130.981973838018547, 69.253289766346398 ], [ -130.970657919618134, 69.209058807627883 ], [ -130.914331013172557, 69.284864474582122 ], [ -130.875027422806056, 69.32003171225179 ], [ -130.660700632403575, 69.481289042622024 ], [ -130.515955753835129, 69.56965208310217 ], [ -130.353588804281941, 69.655795885216406 ], [ -130.117635426140396, 69.720087879856464 ], [ -129.57210928228335, 69.826721184705463 ], [ -129.264871111383457, 69.855428461191167 ], [ -129.109117931613838, 69.881938471968084 ], [ -129.032894784174886, 69.904987789253596 ], [ -128.984318732517181, 69.933453366511344 ], [ -128.898949466565284, 69.96617065291565 ], [ -128.883678469888991, 69.963479002422361 ], [ -128.916774784628075, 69.894880366993021 ], [ -128.938637578430814, 69.875017084985302 ], [ -129.138314099719764, 69.832532952505289 ], [ -129.157897230349619, 69.800079337986034 ], [ -129.136221204132113, 69.750058584124758 ], [ -129.101724132503648, 69.717033680521212 ], [ -129.054340097492968, 69.701070545146621 ], [ -128.97144824862778, 69.712386463547062 ], [ -128.853010133758147, 69.751036367365174 ], [ -128.705496700396594, 69.810153801260952 ], [ -128.386733870853931, 69.960172117530561 ], [ -128.359185652029623, 69.987615966233733 ], [ -128.278622904815762, 70.108125004033894 ], [ -128.095870822649033, 70.161353765830057 ], [ -127.764962606900866, 70.221866463450908 ], [ -127.683779132124272, 70.260362558669442 ], [ -127.974043425423545, 70.292915050145581 ], [ -128.034171601545381, 70.31534913303264 ], [ -128.043652803078942, 70.328785412842052 ], [ -127.988902434779433, 70.363150648527977 ], [ -128.121474461321043, 70.397362075614296 ], [ -128.17010544462147, 70.418444840090416 ], [ -128.16806198751226, 70.479781512352105 ], [ -128.127313694942217, 70.523814717156824 ], [ -128.040499726786777, 70.566386740265216 ], [ -127.990995330367085, 70.5738354710181 ], [ -127.861647791253176, 70.549050313822619 ], [ -127.752817220695377, 70.51714601573056 ], [ -127.376870551080714, 70.368731703428381 ], [ -127.225973328527573, 70.296145030737563 ], [ -127.138461728509583, 70.239334725836045 ], [ -126.926821095436125, 70.061718752263658 ], [ -126.833492234454042, 69.959084471004701 ], [ -126.758664350740204, 69.853363031424891 ], [ -126.684924113552228, 69.777084952343216 ], [ -126.612161659604695, 69.730338124388112 ], [ -126.250453271783186, 69.54526243373428 ], [ -126.063823015640367, 69.467072733485963 ], [ -125.90739966982953, 69.418557106635234 ], [ -125.727800663954937, 69.380006079774006 ], [ -125.524965573209585, 69.351584447830419 ], [ -125.386785025946224, 69.349200414536341 ], [ -125.171864973802357, 69.427983376526072 ], [ -125.166849714821979, 69.479794901940011 ], [ -125.261573839529177, 69.566136457968071 ], [ -125.356918691799109, 69.625957016890652 ], [ -125.345520375934598, 69.662442613985604 ], [ -125.219402817412657, 69.732381581497293 ], [ -125.227878769884427, 69.756727285551023 ], [ -125.201165512029462, 69.828808587128833 ], [ -125.114010967689154, 69.815020744805992 ], [ -125.079596293524787, 69.817833244913288 ], [ -125.031020241867054, 69.844288324047454 ], [ -124.968282812716012, 69.894385982208519 ], [ -124.889164767705694, 69.935782468162671 ], [ -124.793671600000437, 69.9685217272241 ], [ -124.767908659564526, 69.990021972184877 ], [ -124.862605318450363, 70.005490722774965 ], [ -124.9200198714218, 70.005545654417688 ], [ -124.962597387694444, 70.012576904685915 ], [ -124.99040378523955, 70.026628418893807 ], [ -124.952418554298333, 70.041745606970494 ], [ -124.745117520999798, 70.08019775687481 ], [ -124.706335781239147, 70.117012943826069 ], [ -124.639956384175719, 70.141457524836682 ], [ -124.555026571365602, 70.151224370912388 ], [ -124.502577838896087, 70.141094975994747 ], [ -124.444493119883447, 70.110607914284884 ], [ -124.441493852190916, 70.061927492505987 ], [ -124.46717988832701, 69.982551268774898 ], [ -124.471931475422338, 69.918500973362825 ], [ -124.406925369426915, 69.767416983224422 ], [ -124.349378980512938, 69.73450194290632 ], [ -124.124615177993576, 69.690007312302725 ], [ -124.138463445123406, 69.653192125351467 ], [ -124.398372512655342, 69.493846416147903 ], [ -124.45389741711719, 69.454833963487829 ], [ -124.481335772656081, 69.425170876418775 ], [ -124.472085284021944, 69.400056129366959 ], [ -124.426145951214806, 69.379434790689714 ], [ -124.338090527933886, 69.364833960054597 ], [ -124.11172272144708, 69.358890356312259 ], [ -124.049655458337213, 69.372875952548867 ], [ -123.609142135868893, 69.377424292566133 ], [ -123.528398114234079, 69.389355445365027 ], [ -123.460442179024568, 69.419996315674496 ], [ -123.361455358842278, 69.496636943598105 ], [ -123.248955354550745, 69.519993878082857 ], [ -123.213661774102832, 69.541494123043663 ], [ -123.144469876932135, 69.632493882374405 ], [ -123.110384792624075, 69.738116444997331 ], [ -123.076618311843788, 69.782457267001291 ], [ -123.025768090177451, 69.809999992661346 ], [ -122.956675069963637, 69.818843987139331 ], [ -122.785420180618274, 69.808450920336611 ], [ -122.704857433404428, 69.817393791771508 ], [ -122.387511840243974, 69.808450920336611 ], [ -122.070061876962342, 69.816174309303108 ], [ -121.741867284364588, 69.797497550778161 ], [ -121.531105557574662, 69.775788565575027 ], [ -121.336257527680857, 69.741533193174547 ], [ -120.962431219475206, 69.660399156876394 ], [ -120.81463763473576, 69.616838364199054 ], [ -120.681851374787556, 69.566938459951785 ], [ -120.680148493863214, 69.237216767686391 ], [ -120.67978594502128, 69.031497765698219 ], [ -120.679423396179317, 68.825778763710019 ], [ -120.679060847337354, 68.620048775393315 ], [ -120.678698298495405, 68.414329773405115 ], [ -120.678341242817723, 68.208599785088381 ], [ -120.677951228154399, 68.002847824114582 ], [ -120.422491623682831, 67.924691082851893 ], [ -120.167053991868357, 67.846556314246271 ], [ -119.91161636005387, 67.768421545640678 ], [ -119.656178728239382, 67.690286777035084 ], [ -119.400741096424895, 67.612152008429462 ], [ -119.145303464610407, 67.534017239823868 ], [ -118.8898713259602, 67.455882471218246 ], [ -118.634433694145713, 67.377725729955557 ], [ -118.378996062331225, 67.299558002364336 ], [ -118.123558430516738, 67.221423233758713 ], [ -117.86812079870225, 67.14328846515312 ], [ -117.612688660052044, 67.065153696547497 ], [ -117.357251028237556, 66.987018927941904 ], [ -117.101813396423069, 66.90888415933631 ], [ -116.846375764608581, 66.830749390730688 ], [ -116.590938132794093, 66.752570676810905 ], [ -116.335505994143887, 66.674435908205311 ], [ -116.080068362329399, 66.596301139599717 ], [ -115.824630730514926, 66.518166370994095 ], [ -115.569193098700438, 66.440031602388501 ], [ -115.313755466885951, 66.361896833782879 ], [ -115.058317835071463, 66.283762065177285 ], [ -114.802885696421257, 66.205627296571691 ], [ -114.547420598785408, 66.127459568980441 ], [ -114.29196099431384, 66.049302827717753 ], [ -114.036523362499352, 65.971168059112159 ], [ -113.781085730684865, 65.893033290506537 ], [ -113.525648098870377, 65.814898521900943 ], [ -113.27021046705589, 65.736763753295321 ], [ -113.014778328405683, 65.658628984689727 ], [ -112.759340696591195, 65.580494216084134 ], [ -112.503903064776708, 65.502337474821417 ], [ -112.045300752360546, 65.501019115396133 ], [ -111.586698439944385, 65.499722728627944 ], [ -111.128068661706862, 65.498426341859727 ], [ -110.669466349290687, 65.497140941420071 ], [ -110.381190581457915, 65.348572820518285 ], [ -110.092936786282209, 65.200026672273566 ], [ -109.804661018449423, 65.051480524028847 ], [ -109.516385250616636, 64.902912403127061 ], [ -109.21511265611619, 64.81304423563634 ], [ -108.972930029690161, 64.779195357391984 ], [ -108.537063924195991, 64.744786176391898 ], [ -108.101225284523196, 64.71036600906325 ], [ -107.665359179029039, 64.675945841734602 ], [ -107.229493073534883, 64.64150370174886 ], [ -106.793632461204993, 64.607061561763118 ], [ -106.357766355710822, 64.572652380763003 ], [ -105.921900250216666, 64.538232213434355 ], [ -105.48603414472251, 64.503812046105708 ], [ -105.05017353239262, 64.469402865105593 ], [ -104.614307426898463, 64.434982697776945 ], [ -104.178441321404307, 64.400562530448298 ], [ -103.742575215910136, 64.366120390462555 ], [ -103.306714603580261, 64.331678250476813 ], [ -102.87084849808609, 64.297269069476727 ], [ -102.435009858413295, 64.262848902148079 ], [ -101.999143752919139, 64.228428734819403 ], [ -101.986635817871687, 64.08022316275958 ], [ -102.00560371410306, 63.849279550434147 ], [ -102.00536750803937, 63.608777832275365 ], [ -102.005109329318572, 63.36822118247386 ], [ -102.004851150597787, 63.127719464315078 ], [ -102.004592971877003, 62.887217746156267 ], [ -102.004334793156218, 62.646716027997485 ], [ -102.004104080256795, 62.406214309838703 ], [ -102.003873367357372, 62.16571259167992 ], [ -102.003615188636587, 61.925188900864043 ], [ -102.003357009915788, 61.684654223719633 ], [ -102.003120803852099, 61.444152505560822 ], [ -102.002890090952675, 61.20365078740204 ], [ -102.002631912231891, 60.963149069243258 ], [ -102.002373733511092, 60.722647351084476 ], [ -102.002143020611669, 60.482123660268599 ], [ -102.001906814547979, 60.241599969452722 ], [ -102.001648635827195, 60.001087264965378 ], [ -102.50154306407633, 60.001087264965378 ], [ -103.001431999161213, 60.001087264965378 ], [ -103.501353893231723, 60.001087264965378 ], [ -104.001242828316592, 60.001087264965378 ], [ -104.501137256565741, 60.001087264965378 ], [ -105.001053657471971, 60.001087264965378 ], [ -105.500942592556854, 60.001087264965378 ], [ -106.000837020805989, 60.001087264965378 ], [ -106.500731449055138, 60.001087264965378 ], [ -107.000620384140021, 60.001087264965378 ], [ -107.500536785046251, 60.001087264965378 ], [ -108.0004312132954, 60.001087264965378 ], [ -108.500320148380268, 60.001087264965378 ], [ -109.000242042450779, 60.001087264965378 ], [ -109.500130977535648, 60.001087264965378 ], [ -110.000025405784797, 60.001087264965378 ] ] ], [ [ [ -110.00436500555972, 78.686722743390817 ], [ -110.003667373697169, 78.321701977513243 ], [ -110.021855240601909, 78.322789624039103 ], [ -110.293442775376221, 78.298191234428884 ], [ -110.418368317251122, 78.294961253836931 ], [ -110.755093793963368, 78.310726635297698 ], [ -110.840051072594861, 78.322295239254629 ], [ -111.026730767216122, 78.367624830827566 ], [ -111.169179503118869, 78.386279616695447 ], [ -111.229016541534278, 78.376304030377412 ], [ -111.30051556769925, 78.336566480033412 ], [ -111.435054147050238, 78.287369700812945 ], [ -111.517501049609393, 78.274702464001621 ], [ -111.759711141856798, 78.282975169395314 ], [ -112.131235814232454, 78.366064772174298 ], [ -112.557829458435407, 78.341499341549707 ], [ -112.999891853228434, 78.292917796727721 ], [ -113.172520033641803, 78.283799144036124 ], [ -113.223057144944633, 78.297905589886739 ], [ -113.292562152478851, 78.334391186981691 ], [ -113.281685687220204, 78.352760328307397 ], [ -113.149937635319418, 78.408395096054704 ], [ -112.855872072343885, 78.466842363909279 ], [ -112.640820184257493, 78.499812335870132 ], [ -112.213995827155131, 78.547789632622198 ], [ -111.708784015890643, 78.574684164898144 ], [ -111.519852123917843, 78.603237632784243 ], [ -111.40032636252235, 78.644040856997009 ], [ -111.07145611071914, 78.708376796951228 ], [ -110.877569384572951, 78.735040616327751 ], [ -110.618072304361419, 78.757826261728184 ], [ -110.407804962355982, 78.75663973824544 ], [ -110.14048012305679, 78.704421718675349 ], [ -110.00436500555972, 78.686722743390817 ] ] ], [ [ [ -110.00354103091891, 78.089648746004883 ], [ -110.003590469397352, 77.928940732061847 ], [ -110.19949318683139, 77.904858699893197 ], [ -110.751116743030408, 77.857210992997437 ], [ -110.865605272788429, 77.834117730397764 ], [ -110.856536058575273, 77.820362847060551 ], [ -110.811629440651288, 77.803158256560494 ], [ -110.719388226195065, 77.781427298700294 ], [ -110.292179347593645, 77.786360160216589 ], [ -110.189209983314115, 77.777010794625568 ], [ -110.152751852040538, 77.762959280417647 ], [ -110.130845112923609, 77.742381887054563 ], [ -110.117562641713803, 77.715564259078434 ], [ -110.116892475672614, 77.624718308347298 ], [ -110.139447408173638, 77.572115767278177 ], [ -110.198487937769599, 77.524522992025169 ], [ -110.371550078160467, 77.49061918213809 ], [ -110.682853190621671, 77.445915811292167 ], [ -110.89399943891064, 77.42597562498463 ], [ -111.06045330268222, 77.43314969752393 ], [ -111.226226014084077, 77.428502480549781 ], [ -111.951971891378463, 77.344193395302369 ], [ -112.176532446819763, 77.343753942160617 ], [ -112.372671370317491, 77.36411160895284 ], [ -112.643813958785771, 77.443696572926257 ], [ -112.925635258598888, 77.474930704977112 ], [ -113.04606739209926, 77.510724163373766 ], [ -113.164351698369273, 77.530257855525178 ], [ -113.197118423252036, 77.558855268725466 ], [ -113.208538711773613, 77.580201705086637 ], [ -113.188642470780266, 77.599757369895116 ], [ -113.13738026179351, 77.617533249479465 ], [ -113.120637097092313, 77.632628464899057 ], [ -113.16779041920357, 77.676452929461448 ], [ -113.189521377063784, 77.718310841214446 ], [ -113.271270647760403, 77.778406058350669 ], [ -113.283465472444348, 77.813023979593112 ], [ -113.282949115002779, 77.835666802722471 ], [ -113.269331560772372, 77.860056452090362 ], [ -113.215201920035611, 77.903518367810818 ], [ -113.187065932634184, 77.91235137596027 ], [ -113.021622811088648, 77.919118954343418 ], [ -112.804527465893059, 77.941596982544638 ], [ -112.304589092329735, 78.006767883468228 ], [ -111.20659344497578, 78.08815460532287 ], [ -110.873224291633761, 78.080606997613074 ], [ -110.727342328060985, 78.096581119316198 ], [ -110.458056429116667, 78.103238834413929 ], [ -110.00354103091891, 78.089648746004883 ] ] ], [ [ [ -113.832452309792785, 77.754631643381231 ], [ -114.105896534091045, 77.720683888179991 ], [ -114.287231379875607, 77.721485890163706 ], [ -114.608345283726692, 77.769331350973232 ], [ -114.980419272529559, 77.915449520609712 ], [ -115.029357873029227, 77.967535704237264 ], [ -114.890446734917688, 77.976896056156818 ], [ -114.789498855090272, 77.992914123174103 ], [ -114.726481274561337, 78.015545959974958 ], [ -114.606900581523135, 78.040353089827505 ], [ -114.330380185232542, 78.077563784606355 ], [ -114.296893855830135, 78.063193666870689 ], [ -114.302864925393848, 78.032706605160826 ], [ -114.279843073929698, 78.004306945874333 ], [ -114.18093315804721, 77.998231506189455 ], [ -114.087192309744722, 77.977928771039956 ], [ -113.897744060330339, 77.915559383895129 ], [ -113.768039465538749, 77.903562313124979 ], [ -113.721375035047714, 77.88987334775905 ], [ -113.696699741137664, 77.868944391882536 ], [ -113.617916779147961, 77.83240386314489 ], [ -113.61938894717288, 77.813496391720491 ], [ -113.725840977600882, 77.775769339500073 ], [ -113.832452309792785, 77.754631643381231 ] ] ], [ [ [ -115.551285383173564, 77.36328763431203 ], [ -115.475584086340476, 77.324319126966117 ], [ -115.470206278518134, 77.308663608790766 ], [ -115.506614971313269, 77.292129184331912 ], [ -115.623921494342852, 77.265926790754236 ], [ -116.213700569575508, 77.178233916315293 ], [ -116.329199841559586, 77.137046170603469 ], [ -116.285737925839129, 77.101648220034406 ], [ -116.073114016360989, 77.029973412612719 ], [ -115.856848138970477, 76.969251974749511 ], [ -115.810057365701184, 76.939127461881583 ], [ -115.912867428216828, 76.908431659929391 ], [ -116.109753422055547, 76.918220478662192 ], [ -116.183240973687006, 76.915561787154502 ], [ -116.252745981221224, 76.901400409661164 ], [ -116.233959359410818, 76.874330096128517 ], [ -116.016221313995402, 76.784516860280547 ], [ -115.94456847923081, 76.736220960000708 ], [ -115.946304319140779, 76.711260021548526 ], [ -115.984800414359285, 76.686925303823358 ], [ -116.076217654174698, 76.653515878720754 ], [ -116.220446175301589, 76.611086677883463 ], [ -116.46763856754373, 76.577138922682195 ], [ -116.999234046806862, 76.531611577195463 ], [ -117.016779213491773, 76.496103763340955 ], [ -117.01326358835766, 76.469077395122468 ], [ -117.026183510725531, 76.403500000042783 ], [ -117.044475747751449, 76.373111815289803 ], [ -117.107784465986782, 76.321904537945784 ], [ -117.153905073214901, 76.29797631437674 ], [ -117.233616379966577, 76.281518794217675 ], [ -117.346940358898934, 76.272575922782806 ], [ -117.492410335151291, 76.272707758725318 ], [ -117.732395695868505, 76.316740963530066 ], [ -117.841407540847285, 76.344843991945851 ], [ -117.99297492944163, 76.405829101694138 ], [ -118.020232010559525, 76.446544435278554 ], [ -118.005400467024998, 76.496675052425246 ], [ -117.965404737960228, 76.57402979170422 ], [ -117.899492259859926, 76.653098398236068 ], [ -117.807635566902746, 76.73392481733498 ], [ -117.780455390084654, 76.784253188395496 ], [ -117.817918770420022, 76.804094497746121 ], [ -117.880810008170684, 76.805083267315098 ], [ -118.076432574226843, 76.772365980910763 ], [ -118.202780845648221, 76.760478773426058 ], [ -118.300603115004833, 76.736660413142459 ], [ -118.369877409639628, 76.700954845374156 ], [ -118.409148041020501, 76.662293955227483 ], [ -118.43101083482324, 76.588015387940857 ], [ -118.468161104795101, 76.547365972327697 ], [ -118.57368479046113, 76.525195561325717 ], [ -118.731558331639775, 76.525591069153307 ], [ -118.791400863219479, 76.512978763984677 ], [ -118.820750839925012, 76.485820559823679 ], [ -118.799563705327728, 76.463781984764239 ], [ -118.643887429857898, 76.417507568936486 ], [ -118.624535012127481, 76.365882811107809 ], [ -118.64339853823769, 76.334670651714021 ], [ -118.811555282933611, 76.277102290142949 ], [ -118.851139024677991, 76.257821283548083 ], [ -118.9554487210399, 76.16764549885815 ], [ -118.993944816258406, 76.144859853457689 ], [ -119.080709345935404, 76.12408470618081 ], [ -119.16822643911766, 76.126490712131954 ], [ -119.249250612130368, 76.159482656749873 ], [ -119.367902960406582, 76.221753166937816 ], [ -119.447795541579254, 76.275399409218636 ], [ -119.488823985527176, 76.320300533978354 ], [ -119.52370557865467, 76.340306638257147 ], [ -119.580345595463768, 76.326507809605772 ], [ -119.648944230893093, 76.279870844936084 ], [ -119.65077894775996, 76.243692865040373 ], [ -119.635843034104255, 76.189870841502852 ], [ -119.639666276437595, 76.156692129299671 ], [ -119.739636373024595, 76.117734608282319 ], [ -119.725194844153378, 76.09995872869797 ], [ -119.549726697811366, 76.05204734991716 ], [ -119.527166272146076, 76.030558091284917 ], [ -119.526133557262924, 75.997225570482129 ], [ -119.537762586026844, 75.98218528670526 ], [ -119.607937759602265, 75.984558333670805 ], [ -119.667132097797833, 75.946007306809577 ], [ -119.734829854286545, 75.915421368142802 ], [ -119.912879787836431, 75.858830789812174 ], [ -120.160566564863061, 75.851964334472115 ], [ -120.36538468791062, 75.824773171325489 ], [ -120.408874069452423, 75.825630104951927 ], [ -120.458329027393674, 75.870146708212587 ], [ -120.513799000212799, 75.958355940093128 ], [ -120.563308889796772, 76.008431625597126 ], [ -120.637153497105913, 76.034018784776322 ], [ -120.728669613878225, 76.134060292498845 ], [ -120.771565733678642, 76.166305166775771 ], [ -120.81339617961028, 76.179280020786337 ], [ -120.848382142858952, 76.182685782635019 ], [ -120.900105777644555, 76.163415762368658 ], [ -121.019301949183713, 76.020274887767641 ], [ -121.213474319872063, 75.983679427387273 ], [ -121.32018452902085, 75.977021712289542 ], [ -121.42795491887415, 75.981097640179399 ], [ -121.69453268783235, 76.020318833081831 ], [ -121.908211284850722, 76.034787827774409 ], [ -122.057427599136631, 76.018198471672804 ], [ -122.30276330185481, 75.959806135460951 ], [ -122.400481201090273, 75.944249494242513 ], [ -122.533058720796134, 75.950918195668777 ], [ -122.591088508166052, 75.972989729713873 ], [ -122.640494027628847, 76.009079818981206 ], [ -122.645943246586711, 76.030997544426697 ], [ -122.607392219725483, 76.038666001750471 ], [ -122.54625879454187, 76.080501940846375 ], [ -122.548175908872821, 76.097322009847403 ], [ -122.608661140672325, 76.121447987330214 ], [ -122.60946314265604, 76.140267568126262 ], [ -122.587913459216807, 76.152978750251776 ], [ -122.592719977954857, 76.162064443957746 ], [ -122.623932137348618, 76.167491690258515 ], [ -122.684648082047573, 76.162405020142614 ], [ -122.902803607947661, 76.13473045854002 ], [ -122.878282122637245, 76.164811026093759 ], [ -122.773999892096697, 76.227696770680154 ], [ -122.519391728087285, 76.353171628982267 ], [ -122.423063599412657, 76.390063720233343 ], [ -122.365368895063341, 76.40122583003415 ], [ -121.61376120037616, 76.44143579250553 ], [ -121.561125700321398, 76.453443849604241 ], [ -121.203888748217338, 76.622149910727359 ], [ -121.102007030463653, 76.660744882902776 ], [ -120.997620429801941, 76.691440684854967 ], [ -120.485355395612146, 76.793196059830365 ], [ -120.437603318595237, 76.816443131029672 ], [ -120.357661298944123, 76.88690944231152 ], [ -120.310919964153271, 76.904608417596052 ], [ -120.200331581028422, 76.931327168615297 ], [ -119.831157982961173, 77.073896754132022 ], [ -119.494817027747985, 77.176893584232914 ], [ -119.323979618887307, 77.240658235102842 ], [ -119.09019054746895, 77.305104038342506 ], [ -118.820003769584019, 77.332690709316722 ], [ -118.005197219946922, 77.381217322495985 ], [ -117.418615166320592, 77.317397739983335 ], [ -117.279088793810587, 77.313398716393294 ], [ -117.210797775580488, 77.331460240519789 ], [ -117.148994184355686, 77.360859655703763 ], [ -117.061378214216532, 77.348511022420212 ], [ -116.843535798679937, 77.339568150985315 ], [ -116.79529483004282, 77.346599401253542 ], [ -116.703619411506622, 77.379953894713424 ], [ -116.7662524705365, 77.398246131739342 ], [ -117.029776040159447, 77.431864297084275 ], [ -117.045772134519638, 77.44897001062742 ], [ -117.039724160656121, 77.465119913587245 ], [ -116.947169835836391, 77.503846721705173 ], [ -116.835290559107591, 77.528862591800078 ], [ -116.511309223506501, 77.547616254624842 ], [ -116.362609266662176, 77.542815229051087 ], [ -116.208872078180377, 77.516019573732024 ], [ -116.008003540244417, 77.460648477869796 ], [ -115.551285383173564, 77.36328763431203 ] ] ], [ [ [ -113.560710966418867, 76.743274182926001 ], [ -113.712459629434179, 76.710567882850228 ], [ -114.751491651491975, 76.758907728444257 ], [ -114.808285476900679, 76.774068861835104 ], [ -114.835256913476428, 76.794690200512377 ], [ -114.647055612351807, 76.851017106957954 ], [ -114.419858338059925, 76.875362811011655 ], [ -113.891646647988367, 76.89486354417744 ], [ -113.707526767917869, 76.872956805060511 ], [ -113.585413726150264, 76.847303727910059 ], [ -113.516501980357418, 76.825023453622634 ], [ -113.487591456793638, 76.783275405155052 ], [ -113.560710966418867, 76.743274182926001 ] ] ], [ [ [ -110.002403945914594, 75.539062711207748 ], [ -110.002349014271871, 75.430484826206452 ], [ -110.002118301372448, 74.887551455885813 ], [ -110.002815933234999, 74.850988954491044 ], [ -110.17580116932605, 74.839980653289871 ], [ -110.386744170536943, 74.813965027297456 ], [ -110.543425695068564, 74.780368834609618 ], [ -110.624768471609045, 74.752694273007023 ], [ -110.749331464641998, 74.687688167011629 ], [ -110.940872609644018, 74.638722100690586 ], [ -111.287540713688671, 74.585163749038117 ], [ -111.728729695362446, 74.501964282973688 ], [ -112.519355335873982, 74.41685319574259 ], [ -113.016920662471776, 74.401922775251165 ], [ -113.514046535927818, 74.430080735309673 ], [ -113.671606966742957, 74.453031175638301 ], [ -113.836791909567694, 74.488945483648934 ], [ -114.174758841405435, 74.573737967352258 ], [ -114.268241510987139, 74.604334892347566 ], [ -114.376940245602412, 74.670846125353535 ], [ -114.312681209947996, 74.71507708407205 ], [ -114.132483449167751, 74.766130552816463 ], [ -113.862862467202845, 74.812536804586728 ], [ -113.324345600956931, 74.87527972690205 ], [ -112.836003297171899, 74.975573920181091 ], [ -112.663040033737929, 74.994415473634206 ], [ -112.192836158379208, 75.009763374610316 ], [ -111.955745695233361, 75.000381050033667 ], [ -111.784232627167214, 75.00565448773483 ], [ -111.671111895312933, 75.019453316386205 ], [ -111.503268260980519, 75.055620309953383 ], [ -111.257960024083701, 75.127712597859727 ], [ -111.078899348307758, 75.195201614106111 ], [ -111.033476372942204, 75.226776322341834 ], [ -111.0934727131215, 75.256285600811282 ], [ -111.181220519203194, 75.260471391986584 ], [ -111.473912791110706, 75.191125686216253 ], [ -111.62082746956662, 75.167768751731501 ], [ -111.78087081063272, 75.166164747764071 ], [ -112.000498504557726, 75.142445264437356 ], [ -112.214177101576112, 75.132931103918168 ], [ -112.255518655887542, 75.133711133244788 ], [ -112.478090685862355, 75.200013626008428 ], [ -112.597050651337824, 75.211659134265147 ], [ -112.652394281378704, 75.204715774625299 ], [ -112.703140132923878, 75.187137648954746 ], [ -112.799622070198126, 75.138204541619331 ], [ -112.855328249080955, 75.120582470634616 ], [ -112.951343267392076, 75.10781635686638 ], [ -113.339638570290305, 75.09324848521689 ], [ -113.711789463392989, 75.068617136621043 ], [ -113.794648353272549, 75.083811228997519 ], [ -113.844982217497318, 75.112210888284011 ], [ -113.855369791135772, 75.129470410426791 ], [ -113.860950846036161, 75.18776386968176 ], [ -113.886038127266602, 75.210912063924155 ], [ -113.853304361369482, 75.259383745460696 ], [ -113.810875160532177, 75.296330768354494 ], [ -113.758788976904626, 75.321709187291361 ], [ -113.503038234726631, 75.396690879604819 ], [ -113.467074488237543, 75.416125694799319 ], [ -113.58897878976282, 75.412093712223623 ], [ -113.878523478542448, 75.375454306529065 ], [ -113.916349407719764, 75.388165488654579 ], [ -113.984146041165374, 75.4300783320503 ], [ -114.016522751384827, 75.434264123225603 ], [ -114.053392869978808, 75.416894737797406 ], [ -114.074893114939599, 75.392406211472604 ], [ -114.124655690080075, 75.291222125581498 ], [ -114.168480154642481, 75.239487504467348 ], [ -114.284957209866974, 75.24992451658423 ], [ -114.429031922394245, 75.281136675978019 ], [ -114.482826480110404, 75.285377398796044 ], [ -114.513829899261836, 75.275511675763426 ], [ -114.503958683064965, 75.257988481735595 ], [ -114.357769102292963, 75.171273390537067 ], [ -114.356115659847077, 75.14094013742681 ], [ -114.45176812931625, 75.087876170558843 ], [ -114.859185137045472, 74.999765815635186 ], [ -115.020107384395104, 74.976145209265383 ], [ -115.077055018403414, 74.985296820942608 ], [ -115.12831722739017, 75.00947773006817 ], [ -115.173844572876902, 75.048808786256046 ], [ -115.27964840992081, 75.101565135924773 ], [ -115.34261655197129, 75.113397411766783 ], [ -115.413154274388646, 75.115001415734213 ], [ -115.47806150342717, 75.104124950475551 ], [ -115.537283307444113, 75.080713084348076 ], [ -115.57404905591693, 75.055883981838434 ], [ -115.608985580687147, 75.009576607025082 ], [ -115.683165271016875, 74.97417865645599 ], [ -115.728846425103228, 74.96813617575674 ], [ -116.142646489716569, 75.041568795745462 ], [ -116.476087054194124, 75.171789747978636 ], [ -116.841003449950534, 75.151541944471859 ], [ -117.004842567528613, 75.156079298160591 ], [ -117.501968440984655, 75.203858840998862 ], [ -117.56522222757728, 75.233346146811186 ], [ -117.600103820704788, 75.271688433430086 ], [ -117.596742004170295, 75.292507526021154 ], [ -117.57607122701458, 75.314062702624653 ], [ -117.513130550785462, 75.356799520661184 ], [ -117.387814994247236, 75.421498009457366 ], [ -117.335520070377328, 75.442350061034062 ], [ -117.257643480492519, 75.459532678877025 ], [ -117.154185224592766, 75.473012904000626 ], [ -116.890793490912358, 75.4805055800677 ], [ -116.212744758992173, 75.482933558675967 ], [ -116.077145998936686, 75.492964076636724 ], [ -115.335332616146559, 75.618043427111246 ], [ -115.250688447878574, 75.638565888831607 ], [ -115.14185787732076, 75.678534152075031 ], [ -115.117259487710541, 75.695013644891162 ], [ -115.121884732027596, 75.705813205850006 ], [ -116.034332276600338, 75.606705536053738 ], [ -116.425654313012473, 75.585359099692567 ], [ -117.025200234320835, 75.601530975309458 ], [ -117.137958417333152, 75.617142548170619 ], [ -117.163644453469232, 75.644894014073003 ], [ -117.038559609830443, 75.718403538361542 ], [ -116.972647131730156, 75.745737523779269 ], [ -116.802166778547146, 75.771599341172049 ], [ -116.389635634880648, 75.808194801552446 ], [ -115.838067010324352, 75.840593484428979 ], [ -115.476847514123051, 75.841318582112876 ], [ -115.173740202755724, 75.866993631920423 ], [ -114.991526450687644, 75.896349101790264 ], [ -115.602267440782441, 75.894800029465529 ], [ -116.337879041109417, 75.881056132456877 ], [ -116.444254167237617, 75.890614238290226 ], [ -116.654296289507897, 75.929319073751088 ], [ -116.66452456138245, 75.957586897095041 ], [ -116.580473654855851, 75.991534652296309 ], [ -116.549678975946762, 76.016858139590425 ], [ -116.609774193082956, 76.073756335120294 ], [ -116.591328147457418, 76.095816882836857 ], [ -116.454229753555666, 76.143233876833165 ], [ -116.209849861420793, 76.19441918152009 ], [ -116.059111940631539, 76.201703117344834 ], [ -115.768248892426627, 76.184234854959726 ], [ -114.939412801238731, 76.166096426533414 ], [ -114.778594924010264, 76.172611319360072 ], [ -114.880190997221774, 76.194880607318964 ], [ -115.024551354291191, 76.211469963420541 ], [ -115.664461046670553, 76.239847650049938 ], [ -115.796851798791181, 76.252558832175453 ], [ -115.822175286085312, 76.270027094560561 ], [ -115.831733391918675, 76.295779048667924 ], [ -115.825586541098261, 76.329836667154609 ], [ -115.779284659449175, 76.364696287625037 ], [ -115.580690291521833, 76.437502686886745 ], [ -114.998480796656054, 76.497455081751866 ], [ -114.766867018289432, 76.50569482815996 ], [ -114.534786320959697, 76.501739749884081 ], [ -114.298959285596425, 76.474812258622507 ], [ -114.193951957371965, 76.451455324137754 ], [ -114.141245046181666, 76.422671143352233 ], [ -114.115767750287915, 76.395853515376075 ], [ -114.112768482595371, 76.349447263605839 ], [ -114.101452564194958, 76.331209958222644 ], [ -114.058820116279591, 76.300722896512781 ], [ -113.923270794702546, 76.229146966047978 ], [ -113.823487465700808, 76.206822746446392 ], [ -113.362973532117962, 76.248449945299967 ], [ -113.171278578516322, 76.257777338233893 ], [ -112.978474005731726, 76.244703607266416 ], [ -112.697614009666196, 76.201703117344834 ], [ -112.333862164735478, 76.071899645596346 ], [ -111.865256800179921, 75.939294660069123 ], [ -111.867635340309718, 75.910741192183025 ], [ -112.047162935048775, 75.866433329164693 ], [ -112.080907443171967, 75.847415994454849 ], [ -112.056671602403682, 75.834232400201955 ], [ -111.87740218638541, 75.825553200652109 ], [ -111.709349811810668, 75.832068093478767 ], [ -111.549103223666492, 75.822147438803427 ], [ -111.513238354134288, 75.810666725474846 ], [ -111.454456003259111, 75.762151098624145 ], [ -111.372756171040947, 75.676468722308726 ], [ -111.275708437846689, 75.61249533119647 ], [ -111.163285337854958, 75.570219938958786 ], [ -111.052696954730095, 75.548510953755653 ], [ -110.889610400657276, 75.546917936116756 ], [ -110.725590008658202, 75.559519254956854 ], [ -110.459402254363326, 75.555333463781551 ], [ -110.002761001592276, 75.539062711207748 ], [ -110.002403945914594, 75.539062711207748 ] ] ], [ [ [ -110.003409194976385, 76.479668215838984 ], [ -110.002634658814017, 76.244231195139037 ], [ -110.200762107778232, 76.289450923426529 ], [ -110.247014550948876, 76.306347896727345 ], [ -110.284889918604648, 76.332967770789679 ], [ -110.314448635552523, 76.369398436241909 ], [ -110.309488308214867, 76.39740258770081 ], [ -110.270008936591665, 76.416991211494917 ], [ -110.003409194976385, 76.479668215838984 ] ] ], [ [ [ -118.328145840664888, 75.579679167835252 ], [ -118.613889259768257, 75.515442104837945 ], [ -118.817136337834015, 75.522110806264209 ], [ -119.086652949677756, 75.569341032675254 ], [ -119.306044437539072, 75.585359099692567 ], [ -119.383250861382692, 75.601014617867889 ], [ -119.394566779783105, 75.61731832942732 ], [ -119.320150883389687, 75.662560030371907 ], [ -119.226800049750508, 75.698639133310706 ], [ -119.003480949434675, 75.769566870391401 ], [ -118.626089577616469, 75.906269756465576 ], [ -118.379023528152587, 75.957949445937004 ], [ -118.136659627305576, 75.994478988346117 ], [ -117.88933539912091, 76.076052477786021 ], [ -117.752473211282847, 76.112461170581156 ], [ -117.633716492885441, 76.115097889431723 ], [ -117.512614193343879, 76.099442371256401 ], [ -117.499128475056011, 76.077217028611699 ], [ -117.626355652760907, 75.965958479445646 ], [ -117.715960148366534, 75.921156231642811 ], [ -117.890835032967175, 75.805481178402033 ], [ -118.226522301632002, 75.611176971771187 ], [ -118.328145840664888, 75.579679167835252 ] ] ], [ [ [ -121.076222117370662, 75.745276097980394 ], [ -121.154307447497828, 75.74065085366334 ], [ -121.240912675410925, 75.751856908778308 ], [ -121.221098831881648, 75.777498999600226 ], [ -121.026300240466298, 75.847514871411761 ], [ -121.015451241029012, 75.86750998936202 ], [ -121.018087959879594, 75.883846659907078 ], [ -121.042296334826503, 75.9029848442309 ], [ -120.993022651306234, 75.927462384227141 ], [ -120.913959537938666, 75.937514874844993 ], [ -120.887812076003712, 75.92797874166871 ], [ -120.878715395969209, 75.906687236950262 ], [ -120.896853824395492, 75.844515603719202 ], [ -120.921243473763383, 75.814446022494025 ], [ -120.954938543408133, 75.788759986357945 ], [ -121.00661273971528, 75.765710669072433 ], [ -121.076222117370662, 75.745276097980394 ] ] ], [ [ [ -119.736302022311463, 74.112630772028041 ], [ -119.728551167523605, 74.108444980852738 ], [ -119.471097544421269, 74.201202552750544 ], [ -119.314855473031429, 74.206267250209379 ], [ -119.205947998173812, 74.198005531144219 ], [ -119.171428953888267, 74.186173255302236 ], [ -119.149621091728235, 74.167881018276319 ], [ -119.138766599126669, 74.127572178848027 ], [ -119.131894650622343, 74.027860260981811 ], [ -119.117942013371334, 74.015533600355326 ], [ -119.08254406280227, 74.021169586898452 ], [ -119.025700798915125, 74.044735261625533 ], [ -118.744115705165683, 74.192083900058947 ], [ -118.625309548289835, 74.232502602772684 ], [ -118.543972264913634, 74.244642495813906 ], [ -118.199677207834497, 74.266736002516069 ], [ -117.965866163759074, 74.266065836474894 ], [ -117.707484195894779, 74.252365884780403 ], [ -117.514838924874056, 74.23174454610313 ], [ -117.19883366379598, 74.171132971525367 ], [ -116.950377843771264, 74.101391757927445 ], [ -116.722378567495667, 74.027135163297913 ], [ -115.957724607662357, 73.747928609678269 ], [ -115.634331040638372, 73.665531145597555 ], [ -115.510696392367407, 73.618762344985328 ], [ -115.455687845347114, 73.584660781184482 ], [ -115.4075237810098, 73.541923963147951 ], [ -115.392824073417799, 73.501977672561623 ], [ -115.411577736242577, 73.464821909425467 ], [ -115.446849344033396, 73.438850228747242 ], [ -115.524467755197421, 73.416756722045051 ], [ -115.992271117769263, 73.323230107149186 ], [ -116.238612069549248, 73.294599734963271 ], [ -116.482525042720965, 73.253203249009118 ], [ -117.065404703627934, 73.107293819614995 ], [ -117.46442815634947, 73.037761346259401 ], [ -117.983208083365923, 72.90221202468237 ], [ -118.961568106038953, 72.684144389410619 ], [ -119.077995722785005, 72.640319924848228 ], [ -119.131559567601755, 72.60885507989795 ], [ -119.407772346693122, 72.360388273544686 ], [ -119.512856579217384, 72.302666103374008 ], [ -119.767464743226782, 72.24385628667747 ], [ -120.089743197903545, 72.229134606428374 ], [ -120.17989151677213, 72.212644127283681 ], [ -120.194415443107417, 72.126763997054496 ], [ -120.310013592048392, 71.984084548252326 ], [ -120.366263594194152, 71.888020091462778 ], [ -120.443156907674279, 71.630819153916946 ], [ -120.460910814601533, 71.605089172466677 ], [ -120.519665699655349, 71.557419492913851 ], [ -120.619322685878842, 71.505761776099519 ], [ -120.930312687976539, 71.446237848047616 ], [ -121.159833570755509, 71.414970757011105 ], [ -121.472163904935599, 71.389032035318507 ], [ -121.54681051422844, 71.406807914902856 ], [ -121.622182221205207, 71.447633111772717 ], [ -121.700679538652764, 71.451192682221006 ], [ -121.749359960431661, 71.444787652679793 ], [ -122.156623159561263, 71.265930223981911 ], [ -122.549516240955199, 71.193563277861955 ], [ -122.719793347060119, 71.12816166403897 ], [ -122.839939836018345, 71.09746586208675 ], [ -122.936548116070853, 71.088017619538846 ], [ -123.095657619210712, 71.093796428353045 ], [ -123.21061306793186, 71.123459515422098 ], [ -123.314741489872773, 71.169173628494065 ], [ -123.393343177441523, 71.218853806170472 ], [ -123.595162032796537, 71.423188530762104 ], [ -123.681849658173718, 71.493127498273793 ], [ -123.7555679227046, 71.528042050386944 ], [ -123.953255918527049, 71.652473207477357 ], [ -124.00777557392712, 71.677434145929539 ], [ -124.759976530355686, 71.835175851165673 ], [ -125.126101422251935, 71.923615795945636 ], [ -125.214623764495968, 71.954784010025236 ], [ -125.296664172899, 71.973021315408431 ], [ -125.766890020914829, 71.960826490724486 ], [ -125.829111092624316, 71.965638502626803 ], [ -125.845310434062583, 71.978657301951557 ], [ -125.789631721001101, 72.025008622079099 ], [ -125.767719488719905, 72.054254228663467 ], [ -125.760484991373616, 72.082884600849383 ], [ -125.768598395003437, 72.129137044020013 ], [ -125.762577886961267, 72.137508626370618 ], [ -125.583802855727484, 72.183057944514445 ], [ -125.612790283591067, 72.192517173390911 ], [ -125.633796143767384, 72.210326011960888 ], [ -125.646770997777963, 72.236517419210003 ], [ -125.627314209926368, 72.254809656235921 ], [ -125.575480711855334, 72.265301599995524 ], [ -125.512386227026582, 72.307730800832843 ], [ -125.438074700754328, 72.382064299762192 ], [ -125.382780509191889, 72.423823334558278 ], [ -125.305991565832954, 72.450717866834225 ], [ -125.168321882846897, 72.52260141449824 ], [ -125.07019199629103, 72.551594335526119 ], [ -124.987118873004846, 72.588003028321253 ], [ -124.98466342857526, 72.604405616837568 ], [ -125.018567238462325, 72.617017922006198 ], [ -125.030245705704701, 72.644769387908582 ], [ -125.014738502964718, 72.731429547464415 ], [ -125.015414162170174, 72.776077986667616 ], [ -125.000373878393304, 72.813332626760626 ], [ -124.969678076441113, 72.84330333102892 ], [ -124.930868870859086, 72.863199572022296 ], [ -124.582569297025628, 72.925931508009057 ], [ -124.564947226040914, 72.944124868078092 ], [ -124.560816366508334, 72.965053823954577 ], [ -124.570220663742077, 72.98871837563857 ], [ -124.588254722047211, 73.005307731740146 ], [ -124.643290734888851, 73.018952751791915 ], [ -124.736438321449967, 73.022699089825466 ], [ -124.817105438784978, 73.05880016542136 ], [ -124.836402924872687, 73.076268427806468 ], [ -124.804053680474595, 73.12566296094073 ], [ -124.646910730144128, 73.204423950273338 ], [ -124.593989585547234, 73.243337525976528 ], [ -124.42420686422679, 73.418723274854443 ], [ -124.114178165876694, 73.527378064155556 ], [ -124.030149232007176, 73.644217668222012 ], [ -123.797272025857978, 73.768154440527951 ], [ -123.797810355956642, 73.785315085713819 ], [ -123.873055720155151, 73.827590477951503 ], [ -124.08802521077746, 73.856891016178594 ], [ -124.191510932498574, 73.902000881180669 ], [ -124.260730295490646, 73.953263090167411 ], [ -124.575362265500715, 74.248125161962378 ], [ -124.629079918917057, 74.27004288740784 ], [ -124.644993615813178, 74.304353191451042 ], [ -124.709307583110331, 74.326985028251897 ], [ -124.696261317964201, 74.348177656013462 ], [ -123.468324869754966, 74.436123216008923 ], [ -122.623157601186264, 74.464138353796386 ], [ -121.747909765063838, 74.540647145777456 ], [ -121.504156093655993, 74.545118581494904 ], [ -121.315224201683193, 74.530001393418218 ], [ -121.128698315661552, 74.490230884088589 ], [ -120.881659732019017, 74.420731369718652 ], [ -120.554497854304401, 74.352934736273056 ], [ -119.943603055609998, 74.253706216862781 ], [ -119.562646620179223, 74.23283219262899 ], [ -119.715373066434964, 74.153664709140259 ], [ -119.736922749874196, 74.129945225813543 ], [ -119.736302022311463, 74.112630772028041 ] ] ], [ [ [ -110.001832656830302, 72.98185192029851 ], [ -110.001184463446194, 72.71579600194616 ], [ -110.00095375054677, 72.172851645296987 ], [ -110.000723037647347, 71.629918274976347 ], [ -110.000486831583643, 71.086973918327146 ], [ -110.00025611868422, 70.544062520663601 ], [ -110.000025405784797, 70.001151123000056 ], [ -110.312509548564492, 70.001151123000056 ], [ -110.625026650329829, 70.001151123000056 ], [ -110.937538258930886, 70.001151123000056 ], [ -111.250027894874862, 70.001151123000056 ], [ -111.562512037654557, 70.001151123000056 ], [ -111.875023646255613, 70.001151123000056 ], [ -112.18754074802095, 70.001151123000056 ], [ -112.500024890800645, 70.001151123000056 ], [ -112.499821643722584, 69.911546627394415 ], [ -112.649993768591813, 69.834444573671959 ], [ -112.762466307061999, 69.833906243573296 ], [ -112.874938845532171, 69.83335692714607 ], [ -112.877987551703157, 69.911645504351299 ], [ -112.881063723695505, 70.001359863242385 ], [ -113.426919457408871, 70.001260986285502 ], [ -113.955026777359251, 70.001414794885108 ], [ -114.483161563130992, 70.001546630827647 ], [ -115.011268883081385, 70.001667480441625 ], [ -115.539376203031765, 70.001777343727071 ], [ -116.067510988803505, 70.001931152326677 ], [ -116.595618308753885, 70.002062988269216 ], [ -117.055357706174362, 70.002183837883194 ], [ -117.07530338564618, 69.889013667550472 ], [ -116.948076207941284, 69.824523918996618 ], [ -116.820876496057735, 69.760001211457165 ], [ -116.693671291009935, 69.695489490246246 ], [ -116.650495019831652, 69.649808336159879 ], [ -116.856038240563123, 69.649676500217367 ], [ -116.992752112965832, 69.719362782172539 ], [ -117.104010662131884, 69.804265129161308 ], [ -117.121995281958576, 69.825864251079025 ], [ -117.148659101335085, 69.88813476126694 ], [ -117.184029586082801, 69.99107665972511 ], [ -117.195400436125951, 70.05407226759695 ], [ -117.162738081364353, 70.092491458515667 ], [ -117.135426068603735, 70.100170902167974 ], [ -116.553809835479342, 70.175042731195987 ], [ -115.529120465335851, 70.257110605420365 ], [ -114.592327216709393, 70.312448742296993 ], [ -114.167002493453296, 70.307493908123604 ], [ -113.916580120619187, 70.28152222744535 ], [ -113.665509554400984, 70.269667978946273 ], [ -113.210757950139524, 70.263823252160819 ], [ -112.637897820864765, 70.225228279985402 ], [ -112.522766590886931, 70.228579110191362 ], [ -112.265961161168704, 70.254682626812127 ], [ -112.189655616265682, 70.27561158268864 ], [ -111.783688803904283, 70.272919932195322 ], [ -111.704856403436125, 70.285762950263376 ], [ -111.632560868451705, 70.308834240205982 ], [ -111.72583479779108, 70.352032484041359 ], [ -112.11415756651067, 70.446866472034003 ], [ -113.145515638080411, 70.616363548812302 ], [ -113.397025657440381, 70.652376733779846 ], [ -113.75728934305836, 70.690719020398717 ], [ -113.966062544381799, 70.696201198342237 ], [ -114.232195367033952, 70.674294459225308 ], [ -114.33141290011568, 70.675217310823001 ], [ -114.5926403270729, 70.642247338862177 ], [ -114.840739091419934, 70.62139528728548 ], [ -115.311223118156533, 70.601169456435798 ], [ -115.990897826701257, 70.586282981258563 ], [ -116.086088870371569, 70.590677512676194 ], [ -116.225895394259453, 70.616385521469368 ], [ -116.327288220392916, 70.62374636159393 ], [ -116.992543372723503, 70.603652366686759 ], [ -117.587057555558658, 70.629536156736663 ], [ -118.264068079431439, 70.888308139264268 ], [ -118.376513152080264, 70.967706335652451 ], [ -118.352535490032778, 71.000061073214823 ], [ -118.269105311068913, 71.034733926099989 ], [ -117.933857495545851, 71.1346765568656 ], [ -117.814068062265306, 71.158450971835038 ], [ -117.313942921116734, 71.212086227787296 ], [ -116.815295441157346, 71.276938525183112 ], [ -116.421517960315612, 71.337967580245561 ], [ -116.228224495910808, 71.359160208007097 ], [ -116.042110597209557, 71.361687063572248 ], [ -115.891652827798168, 71.381792044807952 ], [ -115.922271725450571, 71.401073051402847 ], [ -116.045291139323069, 71.423078667476659 ], [ -116.043917848255063, 71.45429082687042 ], [ -115.980252074342033, 71.469276179004567 ], [ -115.733757313962442, 71.485096492108084 ], [ -115.471859720964019, 71.46581548551319 ], [ -115.341018041168127, 71.472429255296731 ], [ -115.303422824890234, 71.493720760015179 ], [ -115.338123143596761, 71.510881405201076 ], [ -115.586661361085547, 71.546411191712679 ], [ -116.780282012087312, 71.444161431952779 ], [ -117.337124074344786, 71.434603326119401 ], [ -117.72335394747671, 71.390679984600126 ], [ -117.935637280769996, 71.392075248325227 ], [ -118.188180015013103, 71.435954644530341 ], [ -118.221875084657853, 71.449072320811979 ], [ -118.226445397332185, 71.467111872281379 ], [ -118.148338094547938, 71.525712948735588 ], [ -117.878404002219526, 71.5608472274196 ], [ -117.742343816365178, 71.659350649145978 ], [ -117.887605052375207, 71.661053530070291 ], [ -118.371530852085513, 71.639937806608543 ], [ -118.582990210737989, 71.64901251398598 ], [ -118.868398546820771, 71.686783511520559 ], [ -118.952086904505407, 71.731750554251562 ], [ -118.987721061138188, 71.764248114084978 ], [ -118.993741569180344, 71.803029853845629 ], [ -118.984205436004061, 71.913079906871843 ], [ -118.95981578663617, 71.972197340767622 ], [ -118.944621694259695, 71.985523757291617 ], [ -118.589862159242315, 72.167479330638912 ], [ -118.368663420335508, 72.205492027401476 ], [ -118.213503502307248, 72.262873621387286 ], [ -118.207482994265092, 72.286900721913241 ], [ -118.245880212526686, 72.311037685724614 ], [ -118.39049325515262, 72.369539885221911 ], [ -118.448627412643702, 72.399202972290965 ], [ -118.481289767405286, 72.427668549548713 ], [ -118.456587007673903, 72.47252572899427 ], [ -118.374524626613777, 72.533862401255931 ], [ -118.133122029514368, 72.632827248781155 ], [ -117.551709043468037, 72.831108506344975 ], [ -117.25645695700976, 72.914417835694849 ], [ -116.97166385532546, 72.959318960454567 ], [ -116.573239157509562, 73.054921991445298 ], [ -115.552191755278443, 73.213465698665118 ], [ -114.638217111038088, 73.372679571926142 ], [ -114.301909114810513, 73.33072278321626 ], [ -114.206410453940961, 73.297796756569596 ], [ -114.163981253103671, 73.269847536753417 ], [ -114.127034230209873, 73.230703248150803 ], [ -114.095459521974149, 73.180286986461965 ], [ -114.051689989054481, 73.070994990105305 ], [ -114.046158372632519, 73.014613152017006 ], [ -114.053755418820771, 72.958055532672006 ], [ -114.074739306339993, 72.90681529634233 ], [ -114.10915398050436, 72.861002306313452 ], [ -114.177675711633881, 72.805070907695466 ], [ -114.280304499728544, 72.739076032131095 ], [ -114.497839298065912, 72.625905861798373 ], [ -114.521531315571252, 72.592935889837548 ], [ -114.458123720379007, 72.580345557326012 ], [ -114.342421201316867, 72.590760596785799 ], [ -114.174473196863275, 72.624093117588586 ], [ -113.957817304809453, 72.651482034649035 ], [ -113.692437045662558, 72.672828471010206 ], [ -113.622179474623067, 72.646834817674886 ], [ -113.578074858682797, 72.652108255376049 ], [ -113.500066432855462, 72.694427592927894 ], [ -113.486141261425814, 72.722277935787162 ], [ -113.495908107501521, 72.753643903780556 ], [ -113.491387233305616, 72.822066757953195 ], [ -113.449836938751858, 72.86325450366499 ], [ -113.292408343879245, 72.94981578626394 ], [ -113.208022354332044, 72.981027945657701 ], [ -113.073555186116593, 72.99528820010795 ], [ -112.753627805748266, 72.986015738816718 ], [ -112.453777940794282, 72.936610219353923 ], [ -112.048091279810748, 72.888061633517566 ], [ -111.455411813842446, 72.765893660107224 ], [ -111.269742861447241, 72.713730572179855 ], [ -111.250412416373905, 72.668565775535086 ], [ -111.355496648898168, 72.572105810917947 ], [ -111.610906814891294, 72.435578706100472 ], [ -111.816010582481013, 72.386326995237283 ], [ -111.895178065969759, 72.356103605412471 ], [ -111.761595297202106, 72.33527352649287 ], [ -111.675116412067268, 72.300139247808858 ], [ -111.54354963458745, 72.35092904466822 ], [ -111.447353341855347, 72.407728363241176 ], [ -111.311183292715569, 72.454859712695367 ], [ -111.264777040945305, 72.459045503870641 ], [ -111.25343365672353, 72.449069917552606 ], [ -111.277153140050231, 72.42483407678435 ], [ -111.287260562310792, 72.401136566114729 ], [ -111.283744937176692, 72.377955412886678 ], [ -111.268083925837075, 72.363848967036063 ], [ -111.184631774216129, 72.356619962854069 ], [ -111.139878964891764, 72.365354094046609 ], [ -110.958983572248968, 72.431964204009461 ], [ -110.78155436626183, 72.533895360241587 ], [ -110.512548618695376, 72.599703468220696 ], [ -110.439324738948983, 72.633343606222724 ], [ -110.205129173374516, 72.661303812367436 ], [ -110.207947166646065, 72.681046244761177 ], [ -110.197169578344315, 72.758862409839026 ], [ -110.279105616626182, 72.792041122042178 ], [ -110.553631994286022, 72.861441759455232 ], [ -110.689412028762504, 72.944542348562777 ], [ -110.660836588219311, 73.008208122475793 ], [ -110.509269199624967, 72.998924674856028 ], [ -110.094617694549456, 72.992135123815785 ], [ -110.008446426613844, 72.983653678179735 ], [ -110.001832656830302, 72.98185192029851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CA-NU", "NAME_1": "Nunavut" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.771886397143021, 60.001768417335114 ], [ -95.252785463339421, 60.001087264965378 ], [ -95.702708576205751, 60.001087264965378 ], [ -96.152626195907814, 60.001087264965378 ], [ -96.602549308774144, 60.001087264965378 ], [ -97.052466928476207, 60.001087264965378 ], [ -97.502390041342537, 60.001087264965378 ], [ -97.952335126865947, 60.001087264965378 ], [ -98.402258239732276, 60.001087264965378 ], [ -98.85217585943434, 60.001087264965378 ], [ -99.302126438122031, 60.001087264965378 ], [ -99.752044057824079, 60.001087264965378 ], [ -100.201967170690409, 60.001087264965378 ], [ -100.651884790392472, 60.001087264965378 ], [ -101.101807903258802, 60.001087264965378 ], [ -101.551731016125132, 60.001087264965378 ], [ -102.001648635827195, 60.001087264965378 ], [ -102.001906814547979, 60.241599969452722 ], [ -102.002143020611669, 60.482123660268599 ], [ -102.002373733511092, 60.722647351084476 ], [ -102.002631912231891, 60.963149069243258 ], [ -102.002890090952675, 61.20365078740204 ], [ -102.003120803852099, 61.444152505560822 ], [ -102.003357009915788, 61.684654223719633 ], [ -102.003615188636587, 61.925188900864043 ], [ -102.003873367357372, 62.16571259167992 ], [ -102.004104080256795, 62.406214309838703 ], [ -102.004334793156218, 62.646716027997485 ], [ -102.004592971877003, 62.887217746156267 ], [ -102.004851150597787, 63.127719464315078 ], [ -102.005109329318572, 63.36822118247386 ], [ -102.00536750803937, 63.608777832275365 ], [ -102.00560371410306, 63.849279550434147 ], [ -101.986635817871687, 64.08022316275958 ], [ -101.999143752919139, 64.228428734819403 ], [ -102.435009858413295, 64.262848902148079 ], [ -102.87084849808609, 64.297269069476727 ], [ -103.306714603580261, 64.331678250476813 ], [ -103.742575215910136, 64.366120390462555 ], [ -104.178441321404307, 64.400562530448298 ], [ -104.614307426898463, 64.434982697776945 ], [ -105.05017353239262, 64.469402865105593 ], [ -105.48603414472251, 64.503812046105708 ], [ -105.921900250216666, 64.538232213434355 ], [ -106.357766355710822, 64.572652380763003 ], [ -106.793632461204993, 64.607061561763118 ], [ -107.229493073534883, 64.64150370174886 ], [ -107.665359179029039, 64.675945841734602 ], [ -108.101225284523196, 64.71036600906325 ], [ -108.537063924195991, 64.744786176391898 ], [ -108.972930029690161, 64.779195357391984 ], [ -109.21511265611619, 64.81304423563634 ], [ -109.516385250616636, 64.902912403127061 ], [ -109.804661018449423, 65.051480524028847 ], [ -110.092936786282209, 65.200026672273566 ], [ -110.381190581457915, 65.348572820518285 ], [ -110.669466349290687, 65.497140941420071 ], [ -111.128068661706862, 65.498426341859727 ], [ -111.586698439944385, 65.499722728627944 ], [ -112.045300752360546, 65.501019115396133 ], [ -112.503903064776708, 65.502337474821417 ], [ -112.759340696591195, 65.580494216084134 ], [ -113.014778328405683, 65.658628984689727 ], [ -113.27021046705589, 65.736763753295321 ], [ -113.525648098870377, 65.814898521900943 ], [ -113.781085730684865, 65.893033290506537 ], [ -114.036523362499352, 65.971168059112159 ], [ -114.29196099431384, 66.049302827717753 ], [ -114.547420598785408, 66.127459568980441 ], [ -114.802885696421257, 66.205627296571691 ], [ -115.058317835071463, 66.283762065177285 ], [ -115.313755466885951, 66.361896833782879 ], [ -115.569193098700438, 66.440031602388501 ], [ -115.824630730514926, 66.518166370994095 ], [ -116.080068362329399, 66.596301139599717 ], [ -116.335505994143887, 66.674435908205311 ], [ -116.590938132794093, 66.752570676810905 ], [ -116.846375764608581, 66.830749390730688 ], [ -117.101813396423069, 66.90888415933631 ], [ -117.357251028237556, 66.987018927941904 ], [ -117.612688660052044, 67.065153696547497 ], [ -117.86812079870225, 67.14328846515312 ], [ -118.123558430516738, 67.221423233758713 ], [ -118.378996062331225, 67.299558002364336 ], [ -118.634433694145713, 67.377725729955557 ], [ -118.8898713259602, 67.455882471218246 ], [ -119.145303464610407, 67.534017239823868 ], [ -119.400741096424895, 67.612152008429462 ], [ -119.656178728239382, 67.690286777035084 ], [ -119.91161636005387, 67.768421545640678 ], [ -120.167053991868357, 67.846556314246271 ], [ -120.422491623682831, 67.924691082851893 ], [ -120.677951228154399, 68.002847824114582 ], [ -120.678341242817723, 68.208599785088381 ], [ -120.678698298495405, 68.414329773405115 ], [ -120.679060847337354, 68.620048775393315 ], [ -120.679423396179317, 68.825778763710019 ], [ -120.67978594502128, 69.031497765698219 ], [ -120.680148493863214, 69.237216767686391 ], [ -120.681851374787556, 69.566938459951785 ], [ -120.292550822827536, 69.420567604758787 ], [ -120.14000015782851, 69.380566382529736 ], [ -119.852834009178679, 69.342333959196282 ], [ -118.868706164019997, 69.257167940322461 ], [ -118.744890241328051, 69.234272431636583 ], [ -118.485579928701767, 69.14487667627327 ], [ -118.306986171888951, 69.092735561002996 ], [ -118.095191730215888, 69.042912561055516 ], [ -117.830322335346295, 68.999923057462468 ], [ -117.311284229609072, 68.934916951467073 ], [ -117.226947678540313, 68.913416706506268 ], [ -117.131762128034268, 68.907110553921967 ], [ -117.025744057583751, 68.915943562071419 ], [ -116.549959127324627, 68.878798785263825 ], [ -116.424539200665237, 68.880622515802145 ], [ -116.334083264597439, 68.873624224519574 ], [ -116.222692879488847, 68.846806596543416 ], [ -116.059474489473502, 68.836984818825016 ], [ -116.065209352973511, 68.85543086445054 ], [ -116.251608896216908, 68.957911337109863 ], [ -116.243391122465923, 68.974083212726782 ], [ -116.16675598770658, 68.975324667852249 ], [ -115.936070554101946, 68.958120077352191 ], [ -115.883231806969121, 68.987310752293865 ], [ -115.806360466146089, 68.986640586252662 ], [ -115.631128525867766, 68.972534140402047 ], [ -115.44230100401613, 68.940904500523601 ], [ -115.239833955277007, 68.891872516231302 ], [ -114.99372371639646, 68.850058549792465 ], [ -114.620183052732955, 68.746116895436785 ], [ -114.413887268496197, 68.659577585494958 ], [ -114.218138359661793, 68.552043401705362 ], [ -114.110834888771606, 68.477314394948422 ], [ -114.092020801139853, 68.435412537881234 ], [ -114.051118699970175, 68.414637390604355 ], [ -113.988178023741057, 68.414999939446318 ], [ -113.964409101935914, 68.399080749385917 ], [ -114.020785446859932, 68.306498958744811 ], [ -114.053239061379188, 68.28337273715951 ], [ -114.095948413594357, 68.266794367386467 ], [ -114.274778376470877, 68.247875909633535 ], [ -114.765290480143364, 68.270200129235121 ], [ -114.852208818419967, 68.195273368564415 ], [ -115.127048306443328, 68.132014088807495 ], [ -115.175910002643192, 68.104372486190556 ], [ -115.186764495244759, 68.084190600655063 ], [ -115.16707150132946, 68.01853630127556 ], [ -115.20185421750007, 67.998431320039856 ], [ -115.42684873291887, 67.923559491011844 ], [ -115.43450071074983, 67.902366863250279 ], [ -115.288459445413167, 67.871671061298088 ], [ -115.133222623085103, 67.819167397185851 ], [ -115.011164512960207, 67.806401283417614 ], [ -114.856757158437219, 67.813586342285447 ], [ -114.662864939126763, 67.795195228302646 ], [ -114.429416443893288, 67.751238927797715 ], [ -114.267027521683005, 67.731166905547639 ], [ -114.17571465198877, 67.734990147881007 ], [ -114.051069261491733, 67.726926182729642 ], [ -113.893195720313088, 67.70687613313666 ], [ -113.681945101902954, 67.699954746153878 ], [ -113.214998672957549, 67.701734531378008 ], [ -113.074950449841694, 67.686672274944073 ], [ -112.879459719728061, 67.679871737575269 ], [ -112.503051624314551, 67.681937167341545 ], [ -112.435145127583496, 67.684760653777403 ], [ -112.314531719662142, 67.719587315262174 ], [ -112.236737527241402, 67.731111973904916 ], [ -112.101320041606897, 67.731727208303397 ], [ -111.710904377299656, 67.757314367482593 ], [ -111.575717604564559, 67.756841955355213 ], [ -111.450709665225574, 67.776177893592802 ], [ -111.290825625923361, 67.815212318909971 ], [ -111.192173888761658, 67.822584145363066 ], [ -111.154809385383189, 67.798238441309337 ], [ -111.087424739257983, 67.78764762059285 ], [ -110.990014457221761, 67.790800696884986 ], [ -110.804856369103845, 67.832350991438773 ], [ -110.371967558645139, 67.954200361321313 ], [ -110.216263817353948, 67.954013593736079 ], [ -110.101956562016909, 67.992235030740972 ], [ -110.073946917393741, 67.99292716943927 ], [ -110.042504045100543, 67.977194746964102 ], [ -109.936540906292748, 67.887897868557701 ], [ -109.904241100373099, 67.873527750822035 ], [ -109.831324837825946, 67.865837320841166 ], [ -109.760166387845842, 67.8201232077692 ], [ -109.686014163337475, 67.751777257896379 ], [ -109.630357422933088, 67.732715977872374 ], [ -109.224335678928952, 67.729771641822538 ], [ -109.081244242806392, 67.710721348127095 ], [ -109.038040505806734, 67.691165683318587 ], [ -108.994479713129394, 67.637112946881643 ], [ -108.967656591988984, 67.532369290542249 ], [ -108.949908178226011, 67.493972072280627 ], [ -108.890972018751214, 67.438106591633897 ], [ -108.852009004569567, 67.421978661331167 ], [ -108.815188324454041, 67.437491357235444 ], [ -108.715113857745877, 67.582829497545276 ], [ -108.680232264618368, 67.606208404687123 ], [ -108.61331453745629, 67.598045562578847 ], [ -108.59290193902136, 67.590882476368108 ], [ -108.491509112887911, 67.483326319921417 ], [ -108.346972974561794, 67.40343373874876 ], [ -107.988725280231662, 67.256414690171653 ], [ -107.930536191097858, 67.202515762334343 ], [ -107.909195247900954, 67.162569471748014 ], [ -107.929454037736264, 67.12680897233696 ], [ -107.991307067439521, 67.095179332458514 ], [ -108.088437198097864, 67.06977894086458 ], [ -108.220778511740036, 67.050607797555131 ], [ -108.344336255711212, 67.057507211880818 ], [ -108.459060991532922, 67.09042225219892 ], [ -108.496057452905163, 67.092289928051429 ], [ -108.455287187678024, 67.062989389824338 ], [ -108.218141792889455, 66.941238896898653 ], [ -108.157684026911298, 66.892613406762507 ], [ -108.10148346324398, 66.860335573499952 ], [ -108.049600526694491, 66.844339479139734 ], [ -108.001771545377778, 66.818038208605174 ], [ -107.957980039801015, 66.781299925953732 ], [ -107.760962210019756, 66.683708369496514 ], [ -107.704893482294963, 66.637126336469549 ], [ -107.480332926853663, 66.491777209831184 ], [ -107.373672156183304, 66.434648301401893 ], [ -107.291351596402407, 66.401788192726514 ], [ -107.259491243624524, 66.398536239477437 ], [ -107.278096591013949, 66.424881455326187 ], [ -107.564438765022985, 66.618515495915858 ], [ -107.710342701252841, 66.740057248599186 ], [ -107.730887135630297, 66.76920397822667 ], [ -107.740214528564223, 66.813753540472987 ], [ -107.74600432370697, 66.961497686733964 ], [ -107.72507536783047, 66.984129523534818 ], [ -107.626187424605064, 67.003146858244634 ], [ -107.499218425620953, 66.936174199439847 ], [ -107.451263101525981, 66.926736943220448 ], [ -107.418864418649449, 66.930692021496327 ], [ -107.402093788126891, 66.948006475281829 ], [ -107.329204991401085, 66.931988408264544 ], [ -107.200170562650683, 66.88258288880175 ], [ -107.156505399852179, 66.88175891416094 ], [ -107.253756380124514, 66.976373175582665 ], [ -107.323365757779897, 67.022570687110601 ], [ -107.347859777268965, 67.054771616073339 ], [ -107.283161288472783, 67.103265270266974 ], [ -107.318454868920682, 67.127764782920309 ], [ -107.482376383962858, 67.199131973142755 ], [ -107.567487471193971, 67.273047991587418 ], [ -107.644067674310577, 67.384778952880879 ], [ -107.650917650157822, 67.428240868601307 ], [ -107.63838774245329, 67.474229639886886 ], [ -107.649884935274684, 67.511275539737596 ], [ -107.753002614989555, 67.586883452778039 ], [ -107.865090631960683, 67.63923330829067 ], [ -107.954052427346497, 67.699998691468039 ], [ -107.972113951472991, 67.732045811831171 ], [ -107.95839202712142, 67.818596108101559 ], [ -107.890903010875036, 67.856323160321978 ], [ -107.763104544085849, 67.906816326310633 ], [ -107.728640431443026, 67.95884757829549 ], [ -107.787472220796658, 68.012493820576282 ], [ -107.798271781755503, 68.036927415258361 ], [ -107.761039114319559, 68.0321813213273 ], [ -107.509347820538608, 68.059152757903064 ], [ -107.446198404067161, 68.049649583712437 ], [ -107.35111722368228, 68.061174242355179 ], [ -107.224148224698169, 68.09378166547404 ], [ -107.124826321495277, 68.108448414080414 ], [ -106.993644065514516, 68.106306080014321 ], [ -106.922562519834216, 68.114161304923357 ], [ -106.835644181557612, 68.12860832695884 ], [ -106.790737563633627, 68.144835134218454 ], [ -106.710998791060575, 68.206765068221529 ], [ -106.668421274787931, 68.216015556855666 ], [ -106.534887944498735, 68.209269951129585 ], [ -106.459488771700606, 68.195635917406349 ], [ -106.424250122895415, 68.200590751579739 ], [ -106.429518067432312, 68.288492366261039 ], [ -106.404375854559149, 68.31932000415577 ], [ -106.271232538933262, 68.383194518311143 ], [ -106.132145619565023, 68.389885192394502 ], [ -106.039311143367414, 68.40735345477961 ], [ -105.933062360017473, 68.443113954190636 ], [ -105.856916116878352, 68.47512811556814 ], [ -105.781187354223903, 68.526566105811582 ], [ -105.750205907729551, 68.592297309490931 ], [ -105.774315405719562, 68.611138862944046 ], [ -105.932238385376664, 68.636539254537979 ], [ -106.027138291340563, 68.623333687627991 ], [ -106.237306756389103, 68.576542914358697 ], [ -106.458044069497063, 68.516436710893942 ], [ -106.543308965327782, 68.460571230247211 ], [ -106.56666589981252, 68.388951354468247 ], [ -106.608474373087077, 68.357376646232524 ], [ -106.78042689429499, 68.387325377843723 ], [ -106.853705705684106, 68.386830993059249 ], [ -106.94582057736207, 68.374383482818786 ], [ -107.04332973635519, 68.346840757158731 ], [ -107.146194730513542, 68.304202816079112 ], [ -107.29814664060693, 68.296446468126987 ], [ -107.499119548664055, 68.323527767988168 ], [ -107.619342941922099, 68.331075375697964 ], [ -107.74150542216816, 68.28575677045356 ], [ -107.73424345900051, 68.252061700808838 ], [ -107.677658373834149, 68.202941825888189 ], [ -107.734166554700707, 68.173718191960887 ], [ -108.027199402793087, 68.162918631002043 ], [ -108.104587101057689, 68.169301687886161 ], [ -108.261010446868511, 68.149899831677288 ], [ -108.322786572271966, 68.154085622852591 ], [ -108.367901930438293, 68.177541434294227 ], [ -108.686565883024045, 68.27733025646026 ], [ -108.718113125438407, 68.297490169338658 ], [ -108.640906701594787, 68.378514342351366 ], [ -108.345731519436313, 68.597801460091517 ], [ -108.313486645159387, 68.610776314102083 ], [ -107.766334524677816, 68.64893183313572 ], [ -107.435915200549886, 68.688856151064982 ], [ -106.830683854219956, 68.809497024807683 ], [ -106.713481701311537, 68.819472611125718 ], [ -106.324280026308429, 68.899464069255288 ], [ -106.164472891306019, 68.919876667690204 ], [ -106.015696030161877, 68.906077839038829 ], [ -105.797930518925099, 68.864791216370122 ], [ -105.685584323233186, 68.828151810675564 ], [ -105.606054290902478, 68.782415724946475 ], [ -105.53985616826003, 68.718651074076547 ], [ -105.456914880916386, 68.578091986683404 ], [ -105.428625084915339, 68.458253114924418 ], [ -105.377461752885495, 68.413813415963546 ], [ -105.194967849439522, 68.330350278014066 ], [ -105.101331371258198, 68.298006526780227 ], [ -105.04360920108752, 68.287877131862587 ], [ -104.993791694304321, 68.307410824013971 ], [ -104.959816473281705, 68.310563900306136 ], [ -104.936739690174832, 68.303038265253434 ], [ -104.911965519307898, 68.250512628484103 ], [ -104.87943500048884, 68.245239190782939 ], [ -104.76962115352633, 68.251776056266692 ], [ -104.653193536780293, 68.230078057392092 ], [ -104.63640093360064, 68.213895195446639 ], [ -104.66115313181048, 68.148757253508705 ], [ -104.628183159849655, 68.12147819973373 ], [ -104.486822070472783, 68.063184740478761 ], [ -104.350728925632808, 68.041223069719109 ], [ -104.193531043659618, 68.031192551758352 ], [ -103.901558376271737, 68.041069261119475 ], [ -103.657205949958254, 68.069106371564004 ], [ -103.47414625059227, 68.115018238549794 ], [ -103.323221562217753, 68.063799974877213 ], [ -103.021767693296326, 67.940247724070332 ], [ -102.84156993251608, 67.852752603545156 ], [ -102.691996562552504, 67.811575844161894 ], [ -102.389092498263253, 67.762225256341793 ], [ -102.320362026891388, 67.735660313922182 ], [ -102.209751671109444, 67.732715977872374 ], [ -102.057255937753126, 67.753337316549647 ], [ -101.883644480935061, 67.745317296712443 ], [ -101.68887884850534, 67.708633945703696 ], [ -101.55498296937418, 67.693176181442169 ], [ -101.09640812277938, 67.7623461059558 ], [ -101.026414223624954, 67.765685949833198 ], [ -100.855593294257091, 67.798963538993263 ], [ -100.74560366603788, 67.809092933910904 ], [ -100.616124290981446, 67.808268959270123 ], [ -100.519647846871464, 67.818398354187764 ], [ -100.456086443079613, 67.839481118663883 ], [ -100.212948006070235, 67.838602212380351 ], [ -99.772951041043498, 67.814827797410942 ], [ -99.472271708284424, 67.784077063816 ], [ -99.293573581350444, 67.745317296712443 ], [ -99.146889615793967, 67.723619297837843 ], [ -99.032164879972242, 67.718862217578248 ], [ -98.920466877664438, 67.72578360456103 ], [ -98.811740677227789, 67.744449376757473 ], [ -98.697279613291144, 67.779737464041091 ], [ -98.452795351035121, 67.797875892467403 ], [ -98.412129455929147, 67.807181312744234 ], [ -98.417139221745259, 67.826451333010596 ], [ -98.467835634811976, 67.855806802880409 ], [ -98.606483101038464, 67.911441570627716 ], [ -98.703558300054084, 67.965725019964083 ], [ -98.722235058579045, 68.00018913260692 ], [ -98.720065258691591, 68.041992112717196 ], [ -98.689836375702512, 68.066129076528568 ], [ -98.631542916447543, 68.072534106069782 ], [ -98.539872991075612, 68.046650316019878 ], [ -98.414815613258185, 67.988411788407632 ], [ -98.062560961148861, 67.769663000766172 ], [ -97.97763114833873, 67.738626622629084 ], [ -97.93076347076962, 67.710776279769817 ], [ -97.607397369566996, 67.631070466182393 ], [ -97.454923608867773, 67.617007965645968 ], [ -97.274264422288667, 67.666259676509128 ], [ -97.194421279594451, 67.696900546818625 ], [ -97.155408826934377, 67.726409825288044 ], [ -97.157166639501426, 67.754831457231631 ], [ -97.139852185715938, 67.796227943185784 ], [ -97.158045545784958, 67.82190299299333 ], [ -97.206566665799954, 67.855081705196511 ], [ -97.336122945156191, 67.901356121024236 ], [ -97.546648465882413, 67.96075919946216 ], [ -97.73909048982506, 67.978172530204546 ], [ -97.913344646862953, 67.953574140594299 ], [ -98.110516285243833, 67.903037029291482 ], [ -98.192529227825503, 67.922988201927552 ], [ -98.438381287985266, 68.064678881160745 ], [ -98.500289249331246, 68.117654957400362 ], [ -98.500261783509885, 68.132277760692574 ], [ -98.386080870951105, 68.115325855749035 ], [ -98.38086236489265, 68.132486500934903 ], [ -98.44918084894411, 68.200799491822096 ], [ -98.49124200777517, 68.223618096208185 ], [ -98.632993111815367, 68.331152279997781 ], [ -98.65048334685757, 68.363528990217219 ], [ -98.562246649155668, 68.370867857684686 ], [ -98.522195988448161, 68.383425231210566 ], [ -98.468555239331621, 68.382128844442377 ], [ -98.218544853817917, 68.317430355646195 ], [ -98.090521167293574, 68.346324399717162 ], [ -97.794258338609239, 68.387611022385869 ], [ -97.91104850419724, 68.449518983731849 ], [ -97.938876874399426, 68.510449161837414 ], [ -97.925078045748052, 68.523698674061592 ], [ -97.828546669995362, 68.532773381439 ], [ -97.639565339544106, 68.481972598251105 ], [ -97.548043729607514, 68.474941347982906 ], [ -97.481126002445436, 68.495145206175494 ], [ -97.410352073964376, 68.496540469900594 ], [ -97.335782368971323, 68.47912713915818 ], [ -97.265892839938061, 68.452924745580532 ], [ -97.135979504904142, 68.377997984909797 ], [ -97.071797373549543, 68.33288811990775 ], [ -96.999551277043565, 68.264926691533958 ], [ -96.976710700000396, 68.255423517343331 ], [ -96.628152947446154, 68.250303888241774 ], [ -96.430646226044686, 68.310607845620325 ], [ -96.434936387341153, 68.290096370228497 ], [ -96.480205554107101, 68.242811212174701 ], [ -96.725151242161971, 68.061251146654996 ], [ -96.722075070169623, 68.03879509111087 ], [ -96.592183707792785, 68.048452073901132 ], [ -96.531313954494237, 68.063129808836038 ], [ -96.493691272394983, 68.084937670996055 ], [ -96.461188219397272, 68.135837331140863 ], [ -96.439380357237241, 68.150877614917704 ], [ -96.075601046485161, 68.236505059590399 ], [ -95.970286101061461, 68.249139337416096 ], [ -96.036017304740781, 68.157755056586325 ], [ -96.171335913418403, 67.831669839069036 ], [ -96.198851173257097, 67.71782950269511 ], [ -96.228486794504789, 67.679179598876999 ], [ -96.371374983549288, 67.553858549174493 ], [ -96.36912278619775, 67.509759426398489 ], [ -96.212831276329453, 67.404312645032263 ], [ -96.185002906127266, 67.375572409560931 ], [ -96.169243017830752, 67.28896718164782 ], [ -96.141464086107007, 67.27183949544758 ], [ -96.012583465956226, 67.270905657521325 ], [ -95.879105067309752, 67.298481342167008 ], [ -95.71994063252717, 67.316795551850021 ], [ -95.695188434317316, 67.298734027723526 ], [ -95.782496787257244, 67.193781631141775 ], [ -95.777690268519208, 67.184630019464549 ], [ -95.626403031302743, 67.211579483383218 ], [ -95.55700239388969, 67.21528187610258 ], [ -95.528685132067295, 67.209184463760607 ], [ -95.415926949054963, 67.15559315312251 ], [ -95.40461103065455, 67.115591930893459 ], [ -95.406989570784347, 67.056111948155717 ], [ -95.418898750926147, 67.013243294176675 ], [ -95.456982858824247, 66.989446906550143 ], [ -95.502224559768834, 66.979888800716793 ], [ -95.559353468198125, 66.972758673491683 ], [ -95.610670608827604, 66.97570300954149 ], [ -95.768670492784508, 66.966716192792433 ], [ -95.861845545166972, 66.978185919792452 ], [ -95.954059293801834, 67.010892219868225 ], [ -96.019532318760369, 67.018747444777262 ], [ -96.095475314821428, 66.993533820768562 ], [ -96.215566872136932, 66.997719611943864 ], [ -96.350446027672788, 67.070009653764004 ], [ -96.404240585388948, 67.063220102723761 ], [ -96.422532822414865, 67.051772348380808 ], [ -96.420286118227608, 67.03617176184818 ], [ -96.359515241885944, 66.989402961235982 ], [ -95.885306849772888, 66.74137560802447 ], [ -95.813269493509253, 66.690146358023355 ], [ -95.797350303448866, 66.616548943106466 ], [ -95.787534018894718, 66.616812614991545 ], [ -95.743143758412302, 66.690453975222596 ], [ -95.772109213618805, 66.726060666034016 ], [ -96.016099091090339, 66.870442995760499 ], [ -96.045372163496083, 66.923155400115093 ], [ -96.036874238367233, 66.937492558865131 ], [ -95.972378996649113, 66.952247198099855 ], [ -95.625035233399004, 66.916277958446472 ], [ -95.490392283926852, 66.924133183355508 ], [ -95.399650703316894, 66.949456670649653 ], [ -95.3540958920088, 66.980690802700508 ], [ -95.32107648156952, 67.152495008473068 ], [ -95.258751039738868, 67.262556047827815 ], [ -95.29562665149713, 67.361059469554164 ], [ -95.389570746877681, 67.517845364206948 ], [ -95.463365915708366, 67.610185455620069 ], [ -95.633692460291755, 67.70387686544413 ], [ -95.650485063471393, 67.73744009914634 ], [ -95.460707224200704, 68.021381760368456 ], [ -95.426495797114384, 68.045255052294777 ], [ -95.384094062098455, 68.055560228469147 ], [ -95.23469647339158, 68.059724046987355 ], [ -95.125865902833766, 68.083289721714436 ], [ -94.955231741051151, 68.050286790767984 ], [ -94.861023973785535, 68.041640550203766 ], [ -94.744420575782783, 68.070886156788163 ], [ -94.485286044413215, 68.19007683516304 ], [ -94.38384377980131, 68.227023858056839 ], [ -94.254809351050909, 68.296809016968922 ], [ -94.098127826519303, 68.399388366585157 ], [ -93.927751843457472, 68.473809756142856 ], [ -93.651692872965711, 68.543100530270465 ], [ -93.483019770828221, 68.598867133960283 ], [ -93.448918207027347, 68.618917183553265 ], [ -93.60580297863703, 68.623663277484297 ], [ -93.643969483999214, 68.633122506360763 ], [ -93.67618689245478, 68.685966746657868 ], [ -93.659861208238254, 68.783756057028853 ], [ -93.662805544288062, 68.83817134230776 ], [ -93.681460330155943, 68.887269244571314 ], [ -93.715770634199146, 68.931038777491011 ], [ -93.765741949581965, 68.969589804352239 ], [ -93.81132422671142, 68.992683066951912 ], [ -93.852457040780507, 69.000340537947153 ], [ -93.880697398303113, 68.996824912813054 ], [ -93.896100230921931, 68.982202109520841 ], [ -93.938084485453189, 68.889081988781101 ], [ -93.991571425970122, 68.820604202965768 ], [ -94.064872210016318, 68.78474482659783 ], [ -94.21692849023087, 68.760552931143735 ], [ -94.478337191609072, 68.742755078902292 ], [ -94.586777747503561, 68.775549269606415 ], [ -94.60042276755533, 68.803245803866076 ], [ -94.562569372556652, 68.911658893939233 ], [ -94.475623568458673, 68.958164022666381 ], [ -94.236594018324794, 69.049735071081415 ], [ -94.083631366005363, 69.123090786770319 ], [ -94.081126483097307, 69.13583492788149 ], [ -94.221811913268724, 69.13639523063722 ], [ -94.255380640135201, 69.151490446056812 ], [ -94.28493935708309, 69.241611299104022 ], [ -94.276749049153466, 69.27525143710605 ], [ -94.254732446751106, 69.313758518653117 ], [ -94.156366354131549, 69.34176267011199 ], [ -93.854418100425633, 69.376380591354433 ], [ -93.61949743716724, 69.417008034310498 ], [ -93.612625488662914, 69.402846656817161 ], [ -93.800986091551422, 69.280909396306271 ], [ -93.820442879403018, 69.252619600305223 ], [ -93.748537359081922, 69.226131562185401 ], [ -93.567460692018145, 69.296883518009366 ], [ -93.450571649473233, 69.35519894992143 ], [ -93.430983025679112, 69.375073218257711 ], [ -93.537078000429446, 69.3823241950968 ], [ -93.542862302407912, 69.406461158908172 ], [ -93.522427731315886, 69.450692117626716 ], [ -93.532271481691396, 69.480926493780061 ], [ -93.649781251799041, 69.519060040156603 ], [ -93.794372321767881, 69.497856426066505 ], [ -93.915090099810399, 69.457668436252192 ], [ -94.015290909296823, 69.446715066693741 ], [ -94.163188864157433, 69.445946023695655 ], [ -94.270777979589752, 69.455141580687069 ], [ -94.338140653057877, 69.474257792353797 ], [ -94.419192291891932, 69.51704954203305 ], [ -94.513916416599116, 69.583450911753545 ], [ -94.633854165315014, 69.649654527560273 ], [ -94.676283366152305, 69.656883531742295 ], [ -94.71271403160452, 69.649390855675222 ], [ -94.789244796242684, 69.58547239620566 ], [ -94.82252787856703, 69.577770979896258 ], [ -95.292111026363017, 69.667375475501899 ], [ -95.491271190210369, 69.717604969605503 ], [ -95.587599318884998, 69.755694570667885 ], [ -95.707410724822623, 69.778216544183266 ], [ -95.850705408023259, 69.785093985851887 ], [ -95.964935759060495, 69.802770988479324 ], [ -96.050151216412772, 69.831137688780188 ], [ -96.119090428026965, 69.871864008693137 ], [ -96.171797339217264, 69.924927975561104 ], [ -96.269361429853092, 69.991801757409036 ], [ -96.492400378791046, 70.1248901413922 ], [ -96.551364004087205, 70.210286873165444 ], [ -96.559576284673909, 70.243026132226845 ], [ -96.545623647422914, 70.327236340517345 ], [ -96.336570294721596, 70.470168474876004 ], [ -96.297706157496862, 70.511378193244923 ], [ -96.226421364738499, 70.541689473698085 ], [ -96.122732395939337, 70.561223165849469 ], [ -96.048135225124923, 70.567089865292019 ], [ -95.878638148346624, 70.548973409522802 ], [ -95.980184783079693, 70.593215354569878 ], [ -95.988193816588335, 70.616857933596776 ], [ -95.886339564656041, 70.694289577175567 ], [ -95.906389614249008, 70.697750270666944 ], [ -96.186425635673729, 70.638270287929231 ], [ -96.257996072974237, 70.642302270504899 ], [ -96.358867048501835, 70.678656031657312 ], [ -96.548930532314685, 70.808723175290851 ], [ -96.551050893723698, 70.889725375646464 ], [ -96.491312732265186, 71.002335243223456 ], [ -96.470383776388672, 71.069714396184366 ], [ -96.524749623189138, 71.12703007219892 ], [ -96.504441394875371, 71.143147016173117 ], [ -96.445477769579213, 71.159220014833124 ], [ -96.420747544026455, 71.176479536975904 ], [ -96.446559922940807, 71.239892625332402 ], [ -96.405657821771143, 71.273631640291342 ], [ -96.271355448483845, 71.339110158414144 ], [ -96.139656835061515, 71.396392875443041 ], [ -96.061988985419035, 71.413883110485244 ], [ -95.994445037529928, 71.410631157236196 ], [ -95.924061123712193, 71.393064017894176 ], [ -95.850864709787146, 71.361071829173795 ], [ -95.725367878827953, 71.328156788855665 ], [ -95.6325828411088, 71.318796436936111 ], [ -95.564236891235979, 71.336781056762788 ], [ -95.447501657290701, 71.46008062201318 ], [ -95.406264473100435, 71.491655330248904 ], [ -95.445381295881688, 71.505355281943395 ], [ -95.674204546798109, 71.504058895175177 ], [ -95.77337264140138, 71.514243221735569 ], [ -95.830347741231051, 71.526075497577551 ], [ -95.872331995762309, 71.573151915388991 ], [ -95.837736047176961, 71.598266662440807 ], [ -95.615916580707406, 71.685388247795458 ], [ -95.5116837886453, 71.776805487610886 ], [ -95.201237609810534, 71.903730541280822 ], [ -94.886968188642413, 71.96336433261817 ], [ -94.734856976785153, 71.982974929069371 ], [ -94.61111795839301, 71.986875075702528 ], [ -94.557065221956051, 71.978964919150798 ], [ -94.491075839555947, 71.915507885480082 ], [ -94.478826083229279, 71.848590158318018 ], [ -94.308345730046284, 71.764874334811992 ], [ -94.171225363487437, 71.758458318942246 ], [ -94.085982440313799, 71.771125555753599 ], [ -93.810187141707104, 71.766236639551465 ], [ -93.746312627551731, 71.742802800766924 ], [ -93.750860967568997, 71.71665533883197 ], [ -93.781661139642367, 71.674336001280125 ], [ -93.762852545174866, 71.638059144427501 ], [ -93.575887206011458, 71.568702452328637 ], [ -93.407472282594753, 71.520703182919476 ], [ -93.256371812963536, 71.4608606513398 ], [ -93.031294900080667, 71.335693410236928 ], [ -92.982587012480423, 71.300350391310559 ], [ -92.94868869575761, 71.262106981648571 ], [ -92.890191989424579, 71.122382855224771 ], [ -92.882721286014586, 71.069362833670965 ], [ -92.90419406515403, 70.916081577823746 ], [ -92.921997410559726, 70.887099643124429 ], [ -92.981449927476106, 70.852261995311096 ], [ -92.960883520441556, 70.838155549460481 ], [ -92.783014861312651, 70.79815432723143 ], [ -92.641703210414235, 70.718811062485969 ], [ -92.567468588441784, 70.693201930649707 ], [ -92.388462844308563, 70.650421167298987 ], [ -92.355827955368326, 70.634271264339162 ], [ -92.31539277316179, 70.60753054066285 ], [ -92.214466865991454, 70.492910174962304 ], [ -92.049100648745735, 70.389660659304894 ], [ -92.037191468603936, 70.367380385017469 ], [ -92.072589419173013, 70.318754894881295 ], [ -92.047342836178686, 70.303330089605396 ], [ -91.983534239994583, 70.285532237363952 ], [ -91.926218563980029, 70.29478272599809 ], [ -91.875516657749031, 70.331158459807568 ], [ -91.82038726111476, 70.341650403567201 ], [ -91.76085234673431, 70.326247570948368 ], [ -91.715643604775366, 70.299221202729882 ], [ -91.654032274300079, 70.232973641608993 ], [ -91.564076216181022, 70.178250739130874 ], [ -91.571634810219365, 70.161562506072386 ], [ -91.616129440822945, 70.147862554377895 ], [ -91.858575739134039, 70.132668462001419 ], [ -91.994971008008974, 70.143215337403745 ], [ -92.121039128052473, 70.169934088422991 ], [ -92.208627632370266, 70.197520759397207 ], [ -92.29032746458843, 70.239851083277614 ], [ -92.320506909099066, 70.235346688574538 ], [ -92.363298658778319, 70.200827644288978 ], [ -92.454710405429452, 70.150444341585768 ], [ -92.511866779680119, 70.103840335901708 ], [ -92.445745561337475, 70.083164065581713 ], [ -92.12700470445192, 70.084504397664091 ], [ -92.057735902981392, 70.071430666696614 ], [ -91.976700743640151, 70.038669434978146 ], [ -92.069051821381819, 69.984001464142722 ], [ -92.28474640968804, 69.892111812199914 ], [ -92.750923795635359, 69.713935535871769 ], [ -92.887785983473421, 69.668199450142708 ], [ -92.854557832791798, 69.654873033618713 ], [ -92.802652923585228, 69.651456285441498 ], [ -92.64281282959719, 69.659267565036345 ], [ -92.493470172533023, 69.683217761262483 ], [ -92.311673900949614, 69.67290159875958 ], [ -92.230748604893805, 69.653367906608167 ], [ -92.25829133055386, 69.634306626584163 ], [ -92.209094551333393, 69.603292221104198 ], [ -91.911947323201247, 69.531254864840548 ], [ -91.724114064082855, 69.545624982576243 ], [ -91.532391644659853, 69.615025619989268 ], [ -91.384230017914192, 69.649445787317944 ], [ -91.201813018768036, 69.644798570343767 ], [ -91.15085842698052, 69.637141099348554 ], [ -91.170326201160648, 69.62029905769046 ], [ -91.305040561768351, 69.581286605030357 ], [ -91.426835000008182, 69.537923566266812 ], [ -91.439974648946929, 69.525706768925801 ], [ -91.288121615810439, 69.543197003967975 ], [ -90.950182149794074, 69.515500469708314 ], [ -90.785716811488967, 69.508579082725532 ], [ -90.666657969056615, 69.515522442365409 ], [ -90.554937994091702, 69.504492168507142 ], [ -90.450545900265709, 69.47544431583654 ], [ -90.415565430181317, 69.456998270211017 ], [ -90.513299808909579, 69.445111062726312 ], [ -90.605573982351444, 69.44531980296864 ], [ -90.683961436513556, 69.42775266362662 ], [ -90.748539075695746, 69.392486549000097 ], [ -90.794582778624047, 69.346728490613941 ], [ -90.822125504284102, 69.290500461125248 ], [ -90.892284198366696, 69.26729733524013 ], [ -91.004981956572024, 69.277086153972903 ], [ -91.049190942633459, 69.293027316690399 ], [ -91.024845238579744, 69.315252659335101 ], [ -91.057738306240765, 69.318405735627266 ], [ -91.147870145616523, 69.302563449866682 ], [ -91.217962921727846, 69.302102024067807 ], [ -91.237210969337099, 69.285534640623325 ], [ -90.744759778676581, 69.105908168927357 ], [ -90.587281745325527, 68.946848104265968 ], [ -90.479022463852004, 68.881171832229342 ], [ -90.46837671149278, 68.863758501486956 ], [ -90.538963872388592, 68.819571488082602 ], [ -90.542523442836881, 68.785986281723325 ], [ -90.510179691603057, 68.688878123722048 ], [ -90.525241948037021, 68.611292671543652 ], [ -90.573636725273758, 68.474688662426388 ], [ -90.528351079014996, 68.432204529946375 ], [ -90.423058106248391, 68.394741149611008 ], [ -90.36006249837655, 68.346730893873314 ], [ -90.317215817054574, 68.330295346371344 ], [ -90.285234614662713, 68.291667415210298 ], [ -90.247760247998798, 68.267409601784948 ], [ -90.204770744405764, 68.257488947109607 ], [ -90.174437491295507, 68.270200129235121 ], [ -90.156815420310778, 68.305499202847301 ], [ -90.116407703925603, 68.338590024422132 ], [ -90.005324936016251, 68.398048034502779 ], [ -89.897713847926838, 68.490750674757834 ], [ -89.879498515200737, 68.521556339995499 ], [ -89.896571269758255, 68.594362739257207 ], [ -89.884222636474689, 68.625574898650967 ], [ -89.783093482226292, 68.735954541533516 ], [ -89.750848607949379, 68.812441360857491 ], [ -89.720152805997174, 68.931610066575303 ], [ -89.666616427001799, 69.014600792397403 ], [ -89.551996061301253, 69.084935267736682 ], [ -89.351913045856193, 69.226988495811838 ], [ -89.279557086064784, 69.255465059398148 ], [ -89.198499954066449, 69.269472628291851 ], [ -89.056732370533453, 69.266110811757358 ], [ -88.953526800190218, 69.220429657671019 ], [ -88.814571716764505, 69.135878873195651 ], [ -88.637735772518738, 69.058831751115918 ], [ -88.315528728977526, 68.954450643618458 ], [ -88.223551186406354, 68.915020710473726 ], [ -88.041331941173993, 68.811716263173594 ], [ -87.964361723394063, 68.709290722156993 ], [ -87.911495510439877, 68.564677679531059 ], [ -87.865946192296065, 68.477632998476196 ], [ -87.827757714276785, 68.44809076102112 ], [ -87.810289451891677, 68.404145446844751 ], [ -87.813596336783448, 68.345698178990148 ], [ -87.827911522876406, 68.299962093261087 ], [ -87.853289941813259, 68.26689324434335 ], [ -87.892686915972391, 68.248139581518586 ], [ -87.990948638470769, 68.242031182848081 ], [ -88.111161045400266, 68.251182794525306 ], [ -88.145800939299789, 68.266014338059847 ], [ -88.20908219171379, 68.334843686388581 ], [ -88.23522965364873, 68.339084409206606 ], [ -88.346949628613629, 68.28828362601871 ], [ -88.360671552965215, 68.259861994075152 ], [ -88.319615643195931, 68.165764090094967 ], [ -88.325119793796517, 67.988774337249595 ], [ -88.313836834381732, 67.95032218734525 ], [ -88.195909583789415, 67.765839758432804 ], [ -87.997188873083815, 67.625687165195785 ], [ -87.499101695880171, 67.355324606054154 ], [ -87.470778940893496, 67.324628804101962 ], [ -87.417945686924952, 67.214139297933997 ], [ -87.391952033589618, 67.191046035334296 ], [ -87.359388555784918, 67.177247206682921 ], [ -87.320277226167946, 67.17285267526529 ], [ -87.266246462388082, 67.183860976466462 ], [ -87.083203242514912, 67.267785540214788 ], [ -86.923934437611166, 67.356247457651847 ], [ -86.812807724387639, 67.402368064879965 ], [ -86.749845075501426, 67.406114402913516 ], [ -86.682015483070188, 67.422297264858969 ], [ -86.609362892408086, 67.450817773759439 ], [ -86.560814306571729, 67.482106837453017 ], [ -86.536413670875291, 67.516164455939702 ], [ -86.50352060321427, 67.649461580165223 ], [ -86.475538424412463, 67.713127354078239 ], [ -86.398029876533869, 67.800095130833313 ], [ -86.369663176233018, 67.824803383728977 ], [ -85.984460524819951, 68.045353929251689 ], [ -85.952578199384988, 68.072490160755592 ], [ -85.788870917749421, 68.328021176362711 ], [ -85.731093815936035, 68.445025575357334 ], [ -85.722821110542327, 68.515458927653526 ], [ -85.744892644587409, 68.578289740597199 ], [ -85.733862370729142, 68.630123238668233 ], [ -85.689774234281685, 68.670948435538094 ], [ -85.643137269611998, 68.699677684680893 ], [ -85.562475645441253, 68.728824414308377 ], [ -85.517794247252425, 68.769803419777872 ], [ -85.491086482561727, 68.773989210953175 ], [ -85.425069634340261, 68.774252882838226 ], [ -85.338090871256654, 68.746292676693486 ], [ -85.275073290727732, 68.741337842520124 ], [ -84.867579378698693, 68.773319044911972 ], [ -84.867480501741795, 68.790402785798051 ], [ -85.106663860475294, 68.844071000735937 ], [ -85.104356731481033, 68.870943560354789 ], [ -85.083383830290359, 68.907890583248587 ], [ -85.008292274691456, 68.949232137560017 ], [ -84.916073032892328, 68.962250936884772 ], [ -84.895330844601077, 68.988497275776609 ], [ -84.892749057393218, 69.021005821938587 ], [ -84.862207064040632, 69.073970911849671 ], [ -84.890035434242819, 69.092790492645719 ], [ -85.113530315815353, 69.165860563792506 ], [ -85.242619676208463, 69.162751432814503 ], [ -85.275457812226776, 69.172320524976413 ], [ -85.386771293035537, 69.231899384671038 ], [ -85.427541558262675, 69.318405735627266 ], [ -85.431914117023226, 69.353880590496146 ], [ -85.416379448461882, 69.410877662982898 ], [ -85.402218070968544, 69.426774880386205 ], [ -85.409194389594035, 69.452504861836474 ], [ -85.437231500038564, 69.488210429604777 ], [ -85.439483697390116, 69.519938946440135 ], [ -85.415972954305744, 69.547745343985241 ], [ -85.430123345470534, 69.580660384303343 ], [ -85.482011775184304, 69.618771958022819 ], [ -85.502424373619235, 69.65151121708422 ], [ -85.44791021138343, 69.748146962958089 ], [ -85.446097467173658, 69.777777091041514 ], [ -85.497458553117298, 69.819041741053127 ], [ -85.534823056495767, 69.835070794398973 ], [ -85.50735723513553, 69.845244134630804 ], [ -85.415137993336401, 69.849539789091523 ], [ -85.304967090696209, 69.836147454596272 ], [ -85.17681156822934, 69.80514403544484 ], [ -85.019816933334212, 69.804781486602906 ], [ -84.83396121335376, 69.835070794398973 ], [ -84.64511721200931, 69.849693597691157 ], [ -84.318801281592599, 69.843695062306068 ], [ -84.241644296227406, 69.835015862756251 ], [ -83.917196041663189, 69.745356435507887 ], [ -83.665356432446899, 69.699730213064242 ], [ -83.551691877329688, 69.703959949553735 ], [ -82.991367148923743, 69.685876452770145 ], [ -82.745591993063798, 69.695104968747188 ], [ -82.618359322194635, 69.691040027185863 ], [ -82.374188170302119, 69.641799302651236 ], [ -82.390206237319404, 69.600864242495931 ], [ -82.495685977671258, 69.532243634409525 ], [ -82.633322701671688, 69.51813718855891 ], [ -82.754842481697921, 69.494362773589472 ], [ -82.642034860207161, 69.458393533936118 ], [ -82.3098522303479, 69.410031715685022 ], [ -82.231827325027723, 69.332567113120604 ], [ -82.208151787015211, 69.297015353951906 ], [ -82.246757745519162, 69.264968233588775 ], [ -82.227564629552617, 69.248895234928767 ], [ -82.150539480129964, 69.248873262271673 ], [ -81.95178581043875, 69.276086398075392 ], [ -81.732158116513745, 69.258101778248715 ], [ -81.412291160952407, 69.198149383383594 ], [ -81.377849020966664, 69.185646941500409 ], [ -81.321599018820905, 69.138933072530904 ], [ -81.328674214403293, 69.119937710478183 ], [ -81.611451324799759, 69.00302120211191 ], [ -81.758360510091407, 68.95672481362709 ], [ -81.95163200183913, 68.90907710673136 ], [ -81.957938154423431, 68.883654742480331 ], [ -81.686916415569158, 68.87895259386346 ], [ -81.47603383916524, 68.865560259368209 ], [ -81.380914206630464, 68.850058549792465 ], [ -81.331310933253874, 68.82799800207593 ], [ -81.263514299808264, 68.780602980736717 ], [ -81.252505998607091, 68.743139600401349 ], [ -81.259119768390633, 68.692448680498899 ], [ -81.281542864949131, 68.657204538529442 ], [ -81.52685659501023, 68.555965520995585 ], [ -81.639510407901383, 68.524346867445701 ], [ -81.831386635924005, 68.486883487110333 ], [ -81.914838787544952, 68.458769472365987 ], [ -82.006486740259788, 68.462647646342049 ], [ -82.106352466725625, 68.498561954352709 ], [ -82.210173271467312, 68.506263370662111 ], [ -82.397215514930537, 68.477578066833473 ], [ -82.498707218020897, 68.478610781716611 ], [ -82.548651067582341, 68.468591250084415 ], [ -82.552683050158024, 68.446464784396596 ], [ -82.464155214749709, 68.382436461641618 ], [ -82.413002869048398, 68.357200864975823 ], [ -82.392842956169986, 68.338304379879986 ], [ -82.430646912690221, 68.306575863044628 ], [ -82.422714783481382, 68.296578304069499 ], [ -82.39253533897076, 68.285240413011991 ], [ -82.22242302779398, 68.145241628374606 ], [ -82.186552665097508, 68.134442067415762 ], [ -82.151341482113693, 68.13969353245983 ], [ -82.077623217582811, 68.179661795703254 ], [ -82.033897629977318, 68.19594353460559 ], [ -82.012507248301958, 68.193878104839314 ], [ -82.013364181928395, 68.173410574761647 ], [ -82.091883472033047, 68.051451341593662 ], [ -82.102144702893227, 68.018898850117495 ], [ -82.100463794625981, 67.989829024789827 ], [ -82.062528002163219, 67.92815177634327 ], [ -81.976494063334414, 67.862003092179265 ], [ -81.869333414715314, 67.802479164127362 ], [ -81.708570469129569, 67.722377842712376 ], [ -81.492744044880808, 67.636904206639315 ], [ -81.412313133609501, 67.595353912085557 ], [ -81.29436391036009, 67.497432765772032 ], [ -81.27012806959182, 67.459914453793942 ], [ -81.301054584443449, 67.356972555335773 ], [ -81.387198386557699, 67.188563125083334 ], [ -81.442723291019547, 67.09286121713572 ], [ -81.467585352514831, 67.069888804150025 ], [ -81.63010611066764, 67.002004280076051 ], [ -81.722347325123863, 66.986096076344211 ], [ -81.874475016473951, 66.987952765868158 ], [ -81.925539471546898, 66.974725226301075 ], [ -82.005069503877607, 66.920408817979052 ], [ -82.113174976751509, 66.825124390516123 ], [ -82.19834099562533, 66.764655638209433 ], [ -82.260556574170536, 66.739134397001493 ], [ -82.374759459386411, 66.709416378289717 ], [ -82.553660833398453, 66.621382927665877 ], [ -82.641518502765578, 66.587512076764426 ], [ -82.94888301644373, 66.550817739427146 ], [ -83.19878903183627, 66.43150621143829 ], [ -83.298369113759946, 66.392153182593319 ], [ -83.406452613976754, 66.371246199373928 ], [ -83.523083477800867, 66.368763289122938 ], [ -83.590297835833638, 66.387835555475505 ], [ -83.628354477910392, 66.460696886379935 ], [ -83.651063219011036, 66.484625109948979 ], [ -83.739195546591759, 66.534393178253737 ], [ -83.920217282012814, 66.679028193536737 ], [ -83.998022460762101, 66.728532589956444 ], [ -84.050009767432755, 66.739496945843456 ], [ -84.154445806572923, 66.73168566624858 ], [ -84.207982185568312, 66.736343869551291 ], [ -84.324360363835908, 66.781761351752579 ], [ -84.366262220903081, 66.811116821622392 ], [ -84.361098646487363, 66.822531616979717 ], [ -84.272581797407582, 66.839230836366738 ], [ -84.310330822285096, 66.862741579451097 ], [ -84.466051043069101, 66.927440068247279 ], [ -84.530650654908385, 66.961343878134358 ], [ -84.538450948174685, 66.972813605134405 ], [ -84.692600123976888, 67.016583138054074 ], [ -84.845771516538662, 67.028723031095296 ], [ -85.040020791526814, 66.956070440433194 ], [ -85.113717083400601, 66.906928592855451 ], [ -85.111289104792348, 66.890899539509604 ], [ -85.018267861009505, 66.872090945042117 ], [ -84.977959021581214, 66.881242556719371 ], [ -84.899055209977519, 66.926583134620842 ], [ -84.857373079481221, 66.940667607814362 ], [ -84.737742947964577, 66.933592412231974 ], [ -84.638580346525572, 66.902325321195462 ], [ -84.6025342025724, 66.875145144377399 ], [ -84.589504416919098, 66.856644167109124 ], [ -84.318933117535124, 66.711789425255233 ], [ -84.223066414659343, 66.682488887028143 ], [ -84.183120124073014, 66.647848993128605 ], [ -84.152742925648596, 66.590247672571905 ], [ -84.094218753494204, 66.526219349816927 ], [ -83.96419555517484, 66.420541855551278 ], [ -83.825833733490498, 66.289980327133236 ], [ -83.797565910146545, 66.238465432589976 ], [ -83.869064936311517, 66.213581398437611 ], [ -83.905078121279061, 66.211768654227825 ], [ -84.01168945347095, 66.231203469422326 ], [ -84.293038341156688, 66.291815044000117 ], [ -84.324250500550463, 66.290661479502972 ], [ -84.398463149865833, 66.258746195082381 ], [ -84.459382341642836, 66.186247413019885 ], [ -84.478399676352666, 66.17931503970857 ], [ -84.628055443780326, 66.207692726337967 ], [ -84.908404575568554, 66.271358500251011 ], [ -85.096193889372771, 66.325356305045233 ], [ -85.191489303164246, 66.369697127049193 ], [ -85.306823780220157, 66.440339219587742 ], [ -85.442219293197596, 66.537337514303545 ], [ -85.603861145066858, 66.568242056498093 ], [ -85.79176032215652, 66.532942982885913 ], [ -86.063221514152573, 66.520385609360005 ], [ -86.633181252691685, 66.531338978918484 ], [ -86.708162945005128, 66.523066273524762 ], [ -86.737100934390284, 66.510904407826445 ], [ -86.68862925285373, 66.457488878445076 ], [ -86.700131938839405, 66.44276719819598 ], [ -86.738364362172845, 66.432846543520668 ], [ -86.746999616408516, 66.417081162059873 ], [ -86.685113627719616, 66.360391706772361 ], [ -86.584786475454948, 66.32195054319655 ], [ -86.301009609160971, 66.269908304883188 ], [ -86.113088459414215, 66.22531479732271 ], [ -86.000841140679199, 66.186840674761271 ], [ -85.964256666627364, 66.154463964541833 ], [ -85.958730543369683, 66.119066013972741 ], [ -86.012266922365058, 66.048478853076944 ], [ -86.042852861031818, 66.022529145055785 ], [ -86.701966655706258, 65.670560137488621 ], [ -86.953191030524081, 65.528243237528415 ], [ -87.0810828811059, 65.440814034974494 ], [ -87.193824584625403, 65.383036933161094 ], [ -87.291460086396782, 65.354824041459864 ], [ -87.452904184352249, 65.338959783042185 ], [ -87.678134905834753, 65.335345280951174 ], [ -87.969975737280095, 65.34893536936022 ], [ -88.121004795775775, 65.39458356446093 ], [ -88.394850021065892, 65.516235180429703 ], [ -88.586737235417061, 65.587624343309244 ], [ -88.672463557046626, 65.611552566878288 ], [ -88.74392962422597, 65.678777911239592 ], [ -88.808474304422532, 65.691653888293274 ], [ -88.94614398740859, 65.703013752007877 ], [ -89.087757762341965, 65.738982991661231 ], [ -89.420357872685912, 65.86078841622961 ], [ -89.592689422228588, 65.909337002065968 ], [ -89.749398412581556, 65.936022794099586 ], [ -89.890484843744829, 65.940834806001902 ], [ -89.944010236411657, 65.933572842834252 ], [ -89.847748025708299, 65.872280115886753 ], [ -89.889693828089648, 65.868533777853202 ], [ -90.003797836348625, 65.882563319404028 ], [ -90.116605457839398, 65.882442469790021 ], [ -90.316270992799787, 65.926365811309324 ], [ -90.513277836252499, 65.92052108452387 ], [ -90.655495859255808, 65.929365079001855 ], [ -90.825740006375113, 65.953853605326657 ], [ -91.009530296589276, 65.965740812811362 ], [ -91.305480014910117, 65.964554289328589 ], [ -91.411520058017715, 65.959357755927243 ], [ -91.427252480492868, 65.94791000158429 ], [ -91.285177279760617, 65.894428554231638 ], [ -91.041105004824999, 65.829828942392368 ], [ -91.073668482629699, 65.885540614439464 ], [ -91.064923365108598, 65.899910732175158 ], [ -90.983459738954139, 65.919235684084214 ], [ -90.59683985115889, 65.884815516755566 ], [ -90.158628164520564, 65.812679283535033 ], [ -90.047567369268307, 65.805593101624083 ], [ -89.924059063775587, 65.780269614329939 ], [ -89.788004371085506, 65.736708821652599 ], [ -89.600423797523632, 65.647774492088161 ], [ -89.241731156887468, 65.446395089874898 ], [ -89.126539502102631, 65.395616279344097 ], [ -88.974049261910579, 65.348309148633206 ], [ -88.197788245970457, 65.279886294460596 ], [ -87.929535061909277, 65.280303774945253 ], [ -87.391952033589618, 65.26056134255154 ], [ -87.108010372367474, 65.224800843140486 ], [ -87.027546502110525, 65.198093078449801 ], [ -87.002695426943774, 65.108587459801043 ], [ -87.02850231269386, 65.063620417070069 ], [ -87.182893187724034, 64.926785695053383 ], [ -87.280506716838318, 64.82617289824654 ], [ -87.885018458648602, 64.400463653491414 ], [ -87.963592680395976, 64.302509548192262 ], [ -87.997562408254325, 64.243930444395147 ], [ -88.105623935814037, 64.183318869817356 ], [ -88.378941817334038, 64.089264911151361 ], [ -88.653028741852125, 64.009372329978703 ], [ -88.817724793056655, 63.992222671121368 ], [ -88.964381292791785, 64.011240005831212 ], [ -89.059621774940538, 64.03444313171633 ], [ -89.200653274461089, 64.113764423804696 ], [ -89.209431350967819, 64.10543678676828 ], [ -89.107654003335327, 63.98110450663475 ], [ -89.131549267918729, 63.968503187794681 ], [ -89.214550980069376, 63.984125746984375 ], [ -89.403526817356351, 64.039969254974011 ], [ -89.464764612661142, 64.029686051456736 ], [ -89.500931606228306, 64.01449195908026 ], [ -89.551292936274436, 64.014799576279472 ], [ -89.615815643813903, 64.030608903054429 ], [ -89.732732152180162, 64.076971209510532 ], [ -89.763812475631411, 64.099493183025913 ], [ -89.792091285303911, 64.168278586040486 ], [ -89.811306373927536, 64.180583274009877 ], [ -90.041656724511583, 64.140889668980066 ], [ -90.080020983787563, 64.127717061055705 ], [ -89.98558250362251, 64.10017433539565 ], [ -89.953568342245021, 64.080640643244237 ], [ -89.860602030104886, 63.978830336626118 ], [ -89.855724100231313, 63.956978529151911 ], [ -89.921894757052399, 63.943542249342471 ], [ -90.141906972476448, 63.981983412918282 ], [ -90.168186270353928, 63.9787534323263 ], [ -90.05964134433826, 63.877492442135377 ], [ -90.017992172827604, 63.829361336783705 ], [ -90.013443832810339, 63.804268562388984 ], [ -90.154728017887408, 63.689648196688438 ], [ -90.245288324076384, 63.641901612835795 ], [ -90.368851561211827, 63.624433350450687 ], [ -90.446261232133523, 63.636166749335786 ], [ -90.533492680773634, 63.665412355920182 ], [ -90.596400398017124, 63.661281496387602 ], [ -90.635006356521075, 63.623763184409512 ], [ -90.706834972542367, 63.596945556433383 ], [ -90.811886246081002, 63.580894530430442 ], [ -90.945655782433903, 63.587848876398851 ], [ -91.108077663629814, 63.617819580667145 ], [ -91.538807660529599, 63.725595463684726 ], [ -91.674664599305885, 63.742228765100492 ], [ -91.926009823737701, 63.757093267620633 ], [ -91.956002500663075, 63.772331305311297 ], [ -91.95380523495426, 63.786800300003875 ], [ -91.919450985596868, 63.80059912865525 ], [ -91.928910214473333, 63.812431404497261 ], [ -91.98223785322638, 63.822406990815296 ], [ -92.037586976431527, 63.813057625224275 ], [ -92.094891666117519, 63.784427253038359 ], [ -92.19519135256084, 63.77595679373087 ], [ -92.338442090447302, 63.787657233630313 ], [ -92.550110189342107, 63.829537118040406 ], [ -92.970238379196857, 63.937642590914294 ], [ -93.429692132075189, 64.028807145173204 ], [ -93.696341312168926, 64.147140889921644 ], [ -93.596711791766793, 64.040584489372463 ], [ -93.604874633875056, 64.004494400105131 ], [ -93.655801759841211, 63.972787855926867 ], [ -93.664173342191802, 63.941421887933473 ], [ -93.559814207351451, 63.865297617451432 ], [ -93.415585686224574, 63.837963632033734 ], [ -93.270220080093367, 63.840853036440819 ], [ -93.266188097517684, 63.853311533009844 ], [ -93.326854603738184, 63.872273936076937 ], [ -93.3802646399553, 63.90002540197932 ], [ -93.40586827862731, 63.941213147691144 ], [ -93.378534293209611, 63.948497083515861 ], [ -93.250428209221184, 63.926897961598172 ], [ -93.165937849552819, 63.901728282903662 ], [ -92.529230671944063, 63.761224127153213 ], [ -92.339189160788294, 63.734922856618653 ], [ -92.196460273507682, 63.70778662511475 ], [ -92.156876531763317, 63.691691653797648 ], [ -92.205013130279269, 63.656788088013059 ], [ -92.461044023835129, 63.56945776241605 ], [ -92.465076006410811, 63.555087644680356 ], [ -92.289552928426076, 63.562997801232115 ], [ -92.076621401748696, 63.639989991669125 ], [ -91.956815488975337, 63.675651614123268 ], [ -91.841854547089923, 63.697558353240197 ], [ -91.686024463020473, 63.659732424062867 ], [ -91.489292277781374, 63.5621957992484 ], [ -91.330078404520336, 63.506824703386144 ], [ -91.103067897813702, 63.475898188534529 ], [ -90.970045431801793, 63.442796380631165 ], [ -90.746605481871995, 63.351587881058094 ], [ -90.711273449274174, 63.304039051119247 ], [ -90.690740001225265, 63.110569805457743 ], [ -90.698595226134287, 63.063855936488238 ], [ -90.727643078804888, 63.017493630032163 ], [ -90.777872572908478, 62.971603735703468 ], [ -90.871212420219123, 62.945928685895922 ], [ -91.007695579722409, 62.94044650795243 ], [ -91.114900173655698, 62.921582981842221 ], [ -91.349491247057756, 62.818904755269102 ], [ -91.448983438353082, 62.804051239077467 ], [ -91.869627985649402, 62.834714082044059 ], [ -92.034225159897034, 62.863454317515391 ], [ -92.110074772165461, 62.861696504948355 ], [ -92.152097478846628, 62.839053681818967 ], [ -92.196125190487095, 62.828825409944415 ], [ -92.361282667490471, 62.819366181067949 ], [ -92.388155227109337, 62.800865203799702 ], [ -92.377712721828175, 62.772399626541926 ], [ -92.345264600473186, 62.733848599680698 ], [ -92.30515900812297, 62.711678188678718 ], [ -92.243152169820092, 62.683641078234189 ], [ -92.149098211154097, 62.665271936908454 ], [ -91.955848692063455, 62.644760461516654 ], [ -91.935831601456115, 62.592410606004023 ], [ -91.944466855691772, 62.575480673717578 ], [ -92.007868957719751, 62.540522176290267 ], [ -92.08113678278032, 62.544092733067089 ], [ -92.207232368645165, 62.58535738307873 ], [ -92.269502878833109, 62.586983359703254 ], [ -92.324077465875902, 62.564604208458917 ], [ -92.399987502951319, 62.557210409348755 ], [ -92.497348346509099, 62.564867880343968 ], [ -92.551401082946043, 62.546729451917685 ], [ -92.562200643904887, 62.502904987355294 ], [ -92.594961875623383, 62.470088823994075 ], [ -92.70741244143646, 62.418233353265947 ], [ -92.767974577535796, 62.379967970946865 ], [ -92.765986052069309, 62.349942335035848 ], [ -92.701468837694108, 62.328233349832715 ], [ -92.62746492862108, 62.279036570612249 ], [ -92.54406221547859, 62.202297065731756 ], [ -92.527961750997207, 62.168426214830305 ], [ -92.579174521505507, 62.177347113608107 ], [ -92.648113733119715, 62.207779243675247 ], [ -92.734773892675534, 62.259711618703193 ], [ -92.865824312713769, 62.306227733758902 ], [ -93.154462629388519, 62.366839308336665 ], [ -93.205362289533312, 62.364927687169995 ], [ -93.17926975924108, 62.349579786193885 ], [ -92.987805518538863, 62.28591401228087 ], [ -92.914427830192849, 62.244989938454097 ], [ -92.905539890400675, 62.215118111142715 ], [ -93.065890848666015, 62.149749456305358 ], [ -93.07027988691938, 62.127831730859867 ], [ -93.027751809125192, 62.108660587550418 ], [ -93.016254616303797, 62.092697452175855 ], [ -93.073383524733089, 62.06055145485584 ], [ -93.16748692187754, 62.033634949922799 ], [ -93.349750112424076, 62.029800721260926 ], [ -93.366339468525666, 62.014562683570261 ], [ -93.296856433648529, 61.981592711609437 ], [ -93.273422594863973, 61.961081236217609 ], [ -93.333056386201321, 61.93291228983054 ], [ -93.372019400382953, 61.928935238897566 ], [ -93.581775878111088, 61.942063901507765 ], [ -93.526690426791006, 61.871619562883041 ], [ -93.494236812271751, 61.84692229631591 ], [ -93.429950310795974, 61.81209563483111 ], [ -93.314401600333454, 61.779773856254394 ], [ -93.312023060203657, 61.767293387028303 ], [ -93.352331899631935, 61.73954192112592 ], [ -93.420595452040672, 61.705791919838447 ], [ -93.709673221857173, 61.602542404181065 ], [ -93.912760998159044, 61.481462077296584 ], [ -93.94087501290339, 61.443636148119253 ], [ -93.889250255074685, 61.364062170474369 ], [ -93.888838267754281, 61.344034093538482 ], [ -93.942012097907707, 61.307987949585311 ], [ -94.060763323140833, 61.317809727303739 ], [ -94.083450091584382, 61.303648349810402 ], [ -94.055209734061791, 61.266184969475034 ], [ -94.049963762181989, 61.211275299411653 ], [ -94.067794573409046, 61.138875394306069 ], [ -94.154042745644475, 61.025452538416829 ], [ -94.308708278888247, 60.871017718072466 ], [ -94.427173859579213, 60.730711316235841 ], [ -94.509395542403226, 60.604522346578364 ], [ -94.568897497798048, 60.541988164505369 ], [ -94.678760783238999, 60.537703496373183 ], [ -94.761702070582643, 60.498218631585701 ], [ -94.705248821358808, 60.477553347594238 ], [ -94.670647379609179, 60.453317506825982 ], [ -94.646774087682871, 60.416414429246373 ], [ -94.670416666709755, 60.301101924847529 ], [ -94.74160258251122, 60.107369007300974 ], [ -94.771886397143021, 60.001768417335114 ] ] ], [ [ [ -110.003667373697169, 78.321701977513243 ], [ -110.00436500555972, 78.686722743390817 ], [ -109.940853040246296, 78.678450037997123 ], [ -109.81597693684985, 78.650390954895499 ], [ -109.640948243649589, 78.59209749564053 ], [ -109.580853026513395, 78.593240073809113 ], [ -109.50416296011133, 78.582495444492992 ], [ -109.467265375695987, 78.567191488831071 ], [ -109.362236074814447, 78.492879962558789 ], [ -109.342158559400104, 78.455987871307713 ], [ -109.336006215415409, 78.408439041368894 ], [ -109.352106679896792, 78.368657545710704 ], [ -109.39052587081548, 78.336665356990295 ], [ -109.484475459360311, 78.316406567154985 ], [ -109.708799808737922, 78.303750316672193 ], [ -110.003667373697169, 78.321701977513243 ] ] ], [ [ [ -110.003590469397352, 77.928940732061847 ], [ -110.00354103091891, 78.089648746004883 ], [ -109.656867433709991, 78.079266665530696 ], [ -109.622244019303267, 78.074773257156181 ], [ -109.619063477189755, 78.056832582643665 ], [ -109.679400393553919, 77.999297180058221 ], [ -109.771795416609763, 77.957417295648156 ], [ -110.003590469397352, 77.928940732061847 ] ] ], [ [ [ -110.002815933234999, 74.850988954491044 ], [ -110.002118301372448, 74.887551455885813 ], [ -110.002349014271871, 75.430484826206452 ], [ -110.002403945914594, 75.539062711207748 ], [ -109.086358378743668, 75.506499233403048 ], [ -109.005048561188815, 75.515002651696165 ], [ -108.94714511659717, 75.541798307015227 ], [ -108.912571140668902, 75.586963103659997 ], [ -108.899497409701425, 75.624063935153401 ], [ -108.918229099869109, 75.674765841384414 ], [ -108.944766576467373, 75.699001682152669 ], [ -109.796058723199394, 75.863016580987477 ], [ -109.870496592249921, 75.929055401866037 ], [ -109.454658563691638, 76.021252671008085 ], [ -109.4247372979018, 76.042544175726533 ], [ -109.416623894271979, 76.071844713953624 ], [ -109.430367791280645, 76.109154285689385 ], [ -109.486826533668747, 76.14465111321536 ], [ -109.710145633984581, 76.212458732989518 ], [ -109.90783362980703, 76.222632073221348 ], [ -110.002634658814017, 76.244231195139037 ], [ -110.003409194976385, 76.479668215838984 ], [ -109.981601332816354, 76.484787844940541 ], [ -109.864866098871062, 76.522361088561354 ], [ -109.505041866394862, 76.691649425097296 ], [ -109.338538564144827, 76.759940443327395 ], [ -109.219556626012277, 76.792009536347621 ], [ -109.098218120407012, 76.811850845698245 ], [ -108.831645844613092, 76.821156265975105 ], [ -108.553911459018366, 76.758050794817819 ], [ -108.492388019171429, 76.75418360717029 ], [ -108.467015093398842, 76.737594251068714 ], [ -108.477765215879245, 76.708238781198901 ], [ -108.512438068764411, 76.680256602397066 ], [ -108.611842369431386, 76.629741463751316 ], [ -108.635171838094763, 76.608548835989779 ], [ -108.627629723549248, 76.586697028515573 ], [ -108.559519979740131, 76.536313725812334 ], [ -108.538640462342073, 76.503135013609182 ], [ -108.523550740086762, 76.447170656005568 ], [ -108.512493000407133, 76.438897950611846 ], [ -108.345473340715515, 76.391667724200801 ], [ -108.193543403279236, 76.330067380054032 ], [ -108.123214421104208, 76.233431634180192 ], [ -108.177915350925247, 76.200055168063216 ], [ -108.305812694671332, 76.154055410449104 ], [ -108.381904006167744, 76.115713123830204 ], [ -108.406139846936014, 76.085072253520735 ], [ -108.386814895026944, 76.066571276252461 ], [ -108.292376414861906, 76.057112047375995 ], [ -108.166286322161326, 76.054277574611632 ], [ -108.01877838196404, 76.065252916827177 ], [ -107.852275079714005, 76.057738268103009 ], [ -107.776875906915876, 76.035304185215978 ], [ -107.723498829684388, 75.995412826272371 ], [ -107.721274098154211, 75.974022444597011 ], [ -107.731842946213632, 75.955620344285649 ], [ -107.755172414877009, 75.940272443309539 ], [ -107.970405577384383, 75.839604714860002 ], [ -108.02069000313071, 75.80477805337523 ], [ -107.951080625475313, 75.796307594067713 ], [ -107.917539364430198, 75.802141334524634 ], [ -107.702569873807889, 75.877595438965471 ], [ -107.540922528774345, 75.901150127364019 ], [ -107.418271156908062, 75.906577373664817 ], [ -107.216188629667982, 75.89154807621648 ], [ -107.135675320932577, 75.878573222205915 ], [ -107.080436061012861, 75.863170389587083 ], [ -107.050382959280498, 75.845394510002734 ], [ -106.970935324413873, 75.773104468182595 ], [ -106.913520771442421, 75.679621798600891 ], [ -106.904220844329856, 75.689278781391153 ], [ -106.902770648962033, 75.741628636903755 ], [ -106.891712909282404, 75.782398902130893 ], [ -106.693118541355062, 75.809941627790948 ], [ -106.688081309717589, 75.819038307825451 ], [ -106.759393568297313, 75.841626199312117 ], [ -106.820087540339173, 75.87242087822122 ], [ -106.862049822213336, 75.930066144092081 ], [ -106.845641740532741, 75.951544416395791 ], [ -106.80411891180033, 75.974637678995492 ], [ -106.67702357003796, 76.023735581259047 ], [ -106.528609257735781, 76.053036119486137 ], [ -106.39660302711421, 76.060111315068525 ], [ -105.904849468316229, 76.009002914681417 ], [ -105.711319797847722, 75.966991194328784 ], [ -105.632668671800545, 75.945337140768373 ], [ -105.604428314277953, 75.929934308149541 ], [ -105.563290007044586, 75.880638651972191 ], [ -105.480892542963872, 75.745660619479452 ], [ -105.481436366226802, 75.702253635401718 ], [ -105.519498501467822, 75.632391572189817 ], [ -105.678399264365339, 75.501390590630024 ], [ -105.70264059829789, 75.412500206379747 ], [ -105.862574076078559, 75.191532180372377 ], [ -105.97197593572065, 75.131491894878906 ], [ -106.092638782120446, 75.089447215540645 ], [ -106.588243049073128, 75.015443306467603 ], [ -106.961113546695444, 74.940077092655116 ], [ -107.0556289311603, 74.928189885170411 ], [ -107.153429227859831, 74.927157170287273 ], [ -107.461908853885205, 74.95214008139655 ], [ -107.820052178094173, 75.000051460177332 ], [ -108.023634339180518, 74.98648334442538 ], [ -108.226617745361224, 74.951887395840032 ], [ -108.354438184807506, 74.942603948220267 ], [ -108.47474397552962, 74.947207219880255 ], [ -108.594192832625296, 74.959555853163806 ], [ -108.751313810298669, 74.991965522368872 ], [ -108.6702621714646, 75.006709175275063 ], [ -108.633309655406549, 75.023298531376639 ], [ -108.665999475989494, 75.040327340619996 ], [ -108.831283295771144, 75.064870798587492 ], [ -109.002538185116492, 75.010301704708979 ], [ -109.503130245228192, 74.882772402969124 ], [ -110.002815933234999, 74.850988954491044 ] ] ], [ [ [ -116.856038240563123, 69.649676500217367 ], [ -116.650495019831652, 69.649808336159879 ], [ -116.693671291009935, 69.695489490246246 ], [ -116.820876496057735, 69.760001211457165 ], [ -116.948076207941284, 69.824523918996618 ], [ -117.07530338564618, 69.889013667550472 ], [ -117.055357706174362, 70.002183837883194 ], [ -116.595618308753885, 70.002062988269216 ], [ -116.067510988803505, 70.001931152326677 ], [ -115.539376203031765, 70.001777343727071 ], [ -115.011268883081385, 70.001667480441625 ], [ -114.483161563130992, 70.001546630827647 ], [ -113.955026777359251, 70.001414794885108 ], [ -113.426919457408871, 70.001260986285502 ], [ -112.881063723695505, 70.001359863242385 ], [ -112.877987551703157, 69.911645504351299 ], [ -112.874938845532171, 69.83335692714607 ], [ -112.762466307061999, 69.833906243573296 ], [ -112.649993768591813, 69.834444573671959 ], [ -112.499821643722584, 69.911546627394415 ], [ -112.500024890800645, 70.001151123000056 ], [ -112.18754074802095, 70.001151123000056 ], [ -111.875023646255613, 70.001151123000056 ], [ -111.562512037654557, 70.001151123000056 ], [ -111.250027894874862, 70.001151123000056 ], [ -110.937538258930886, 70.001151123000056 ], [ -110.625026650329829, 70.001151123000056 ], [ -110.312509548564492, 70.001151123000056 ], [ -110.000025405784797, 70.001151123000056 ], [ -110.00025611868422, 70.544062520663601 ], [ -110.000486831583643, 71.086973918327146 ], [ -110.000723037647347, 71.629918274976347 ], [ -110.00095375054677, 72.172851645296987 ], [ -110.001184463446194, 72.71579600194616 ], [ -110.001832656830302, 72.98185192029851 ], [ -109.609972290319519, 72.875702013905453 ], [ -109.469072626741493, 72.808421737901426 ], [ -109.35711644571289, 72.775045271784478 ], [ -109.121910137912366, 72.726408795319742 ], [ -109.04300083314439, 72.686879985218098 ], [ -108.987399024382725, 72.670806986558091 ], [ -108.968172949430567, 72.654118753499603 ], [ -108.985383033094891, 72.6368042997141 ], [ -108.994424781486686, 72.595979102844268 ], [ -108.950759618688167, 72.582861426562602 ], [ -108.797851898011459, 72.56751352558652 ], [ -108.754983244032402, 72.55107797808455 ], [ -108.698293788744863, 72.499244480013488 ], [ -108.627728600506146, 72.412013031373391 ], [ -108.566336996601734, 72.317343838308915 ], [ -108.469602373770982, 72.138750081496113 ], [ -108.276435252144424, 71.900368724746329 ], [ -108.210390938101597, 71.751174383117501 ], [ -108.188220527099617, 71.72378546605708 ], [ -108.144687200243638, 71.704921939946871 ], [ -108.020788880087608, 71.677511050229356 ], [ -107.925345150860778, 71.638674378825982 ], [ -107.812845146569245, 71.626171936942796 ], [ -107.78545622950881, 71.629687562076896 ], [ -107.757474050707003, 71.663020082879683 ], [ -107.687271411310235, 71.716117008733306 ], [ -107.346931432506977, 71.819234688448176 ], [ -107.329281895700888, 71.835252755465461 ], [ -107.369409460708198, 71.858972238792177 ], [ -107.381785559813125, 71.875144114409096 ], [ -107.37685269829683, 71.88610847029608 ], [ -107.306001865515952, 71.89467780656048 ], [ -107.542630902862953, 72.025316239278311 ], [ -107.695851733903169, 72.149318929555534 ], [ -107.794036552101758, 72.302611171731286 ], [ -107.809021904235891, 72.347468351176815 ], [ -107.823749077649254, 72.442763764968305 ], [ -107.855631403084217, 72.467823580377399 ], [ -107.909815975463701, 72.490774020705999 ], [ -107.93250274390725, 72.520404148789424 ], [ -107.923664242593532, 72.556659032984953 ], [ -107.934364926595478, 72.587761329093269 ], [ -107.997173766882071, 72.652701517117407 ], [ -108.238219308303798, 73.105821651590077 ], [ -108.237417306320069, 73.149898801708986 ], [ -108.204139717160004, 73.183077513912167 ], [ -108.118303532244994, 73.20203991697926 ], [ -107.979914244739291, 73.206742065596131 ], [ -107.936194150298064, 73.217135132398852 ], [ -107.987071837785777, 73.233098267773414 ], [ -108.077478335375133, 73.281416140710348 ], [ -108.089393008681213, 73.303696414997773 ], [ -108.029034119659954, 73.348751348357126 ], [ -107.720010670371636, 73.329041874949013 ], [ -107.496274089571145, 73.288392459335853 ], [ -107.113455471452141, 73.192119262303947 ], [ -107.074443018792067, 73.197392700005111 ], [ -107.032530175396346, 73.245293092457359 ], [ -106.950802877356821, 73.276021853395207 ], [ -106.828360245732881, 73.265914431134632 ], [ -106.482126101665713, 73.196206176522367 ], [ -106.081630480919273, 73.071917841702998 ], [ -105.812707130816904, 73.010636101084032 ], [ -105.624165253507414, 72.92751353931942 ], [ -105.495932826740741, 72.848994249214769 ], [ -105.415133873463191, 72.788327742994284 ], [ -105.4116731799718, 72.764652204981758 ], [ -105.430097252940243, 72.740361432570751 ], [ -105.411079918230413, 72.708742779020838 ], [ -105.354544271542508, 72.669730326360764 ], [ -105.323178303549113, 72.634793801590547 ], [ -105.297574664877104, 72.560460302661198 ], [ -105.246905717631734, 72.463582857559373 ], [ -105.234090165385041, 72.415089203365739 ], [ -104.878297915484524, 71.979997634033936 ], [ -104.810314514453665, 71.903159252196531 ], [ -104.76701190049711, 71.867607493027833 ], [ -104.518319874408704, 71.699242008089584 ], [ -104.385923629123809, 71.576953185065264 ], [ -104.373157515355572, 71.49511602374028 ], [ -104.355354169949862, 71.471660212298644 ], [ -104.349569867971397, 71.433988091720948 ], [ -104.355793623091628, 71.382099662007192 ], [ -104.384890914240671, 71.337528127103781 ], [ -104.436823289268602, 71.30027348701077 ], [ -104.487052783372206, 71.247901658841045 ], [ -104.563067190568802, 71.132402386856995 ], [ -104.569582083395446, 71.104035686556131 ], [ -104.51480424927459, 71.064265177226503 ], [ -104.166867224283095, 70.927199742310364 ], [ -103.953468778642588, 70.762657499705455 ], [ -103.853449243577145, 70.73377444196305 ], [ -103.584575331953232, 70.630854516161946 ], [ -103.294673587495922, 70.572462179950094 ], [ -103.197186401159897, 70.547292501255555 ], [ -103.104967159360768, 70.510268574061968 ], [ -103.07719372080129, 70.508818378694144 ], [ -103.021201897376315, 70.515794697319649 ], [ -103.005178337194749, 70.52592409223729 ], [ -103.001201286261789, 70.540964376014159 ], [ -103.082796748358774, 70.619077171962687 ], [ -103.088586543501521, 70.649696069615089 ], [ -103.049568597677165, 70.655068384273136 ], [ -102.750465803064174, 70.521892109661621 ], [ -102.589159034215498, 70.468850115450721 ], [ -102.368734831471045, 70.41324830668907 ], [ -101.98984382580656, 70.285037852579478 ], [ -101.937208325751797, 70.274578867805502 ], [ -101.732236394104618, 70.286356212004762 ], [ -101.676321474979446, 70.278270274196302 ], [ -101.641181703131153, 70.265581064727883 ], [ -101.626817078559753, 70.248321542585103 ], [ -101.618445496209148, 70.172406012345419 ], [ -101.562426206962812, 70.134997563652774 ], [ -101.239137010059991, 70.150960699027337 ], [ -101.148549238049654, 70.147631841478471 ], [ -101.090777629400534, 70.135689702351044 ], [ -101.042690469363023, 70.110816654527213 ], [ -100.973311804607064, 70.029473877986732 ], [ -100.909080234774009, 69.869194330856914 ], [ -100.905723911403797, 69.811735832571316 ], [ -100.935123326587785, 69.71533079959687 ], [ -100.98238101882022, 69.679877917385085 ], [ -101.043695718424814, 69.668715807584277 ], [ -101.216219528717005, 69.679625231828567 ], [ -101.337272389780125, 69.710266102138036 ], [ -101.400108695888079, 69.74927855479811 ], [ -101.456748712697163, 69.833873284587668 ], [ -101.483824519394076, 69.850209955132726 ], [ -101.508395443182948, 69.833159173232303 ], [ -101.565084898470474, 69.755639639025162 ], [ -101.602476867670305, 69.721274403339237 ], [ -101.647641664315088, 69.698532703252937 ], [ -101.733576726186996, 69.704168689796063 ], [ -101.860238107971867, 69.738072499683142 ], [ -102.0979218328591, 69.824600823296436 ], [ -102.182132041149586, 69.845947259657606 ], [ -102.234322594898302, 69.842244866938245 ], [ -102.348113492793772, 69.812999260353877 ], [ -102.523504734835981, 69.758221426233007 ], [ -102.595904639941566, 69.717912586804744 ], [ -102.565258276467816, 69.692182605354475 ], [ -102.544922582332688, 69.659827867792103 ], [ -102.534870091714851, 69.620815415132029 ], [ -102.540918065578367, 69.592086165989201 ], [ -102.563115942401723, 69.573585188720955 ], [ -102.621096291293185, 69.551513654675858 ], [ -102.743621320381195, 69.547745343985241 ], [ -102.919759632764411, 69.564642317286058 ], [ -103.059181635153251, 69.594667953197074 ], [ -103.303198978446147, 69.674296862484681 ], [ -103.35926770617094, 69.685360095328576 ], [ -103.434765755925952, 69.667683092701139 ], [ -103.464895761958132, 69.644479966815993 ], [ -103.418022591224755, 69.611411117898285 ], [ -103.294052859933188, 69.568465559619398 ], [ -103.142430539696122, 69.497252177996586 ], [ -103.101841548889965, 69.483354472388299 ], [ -103.062746698765807, 69.484903544713006 ], [ -103.048947870114418, 69.471785868431368 ], [ -103.031847649735539, 69.433487527126658 ], [ -103.039801751601459, 69.367602514847704 ], [ -103.112718014148626, 69.235986298889458 ], [ -103.1202106902157, 69.20460934456753 ], [ -103.09034435606857, 69.212003143677691 ], [ -102.884103503474549, 69.341323216970238 ], [ -102.777442732804204, 69.377578101165739 ], [ -102.546499120478771, 69.434465310367074 ], [ -102.446765229955474, 69.476301249462978 ], [ -102.151408773376019, 69.487694072163208 ], [ -102.045961992009794, 69.464831522462958 ], [ -101.978214797042639, 69.425115944776053 ], [ -101.975528639713602, 69.407032447992464 ], [ -102.052861406335481, 69.360472387622593 ], [ -102.066890947886293, 69.337115453137841 ], [ -102.070922930461975, 69.307606174668422 ], [ -102.063996050314927, 69.281151095534227 ], [ -102.046093827952319, 69.25768429776403 ], [ -101.992991408934444, 69.236030244203619 ], [ -101.899096752032335, 69.245489473080085 ], [ -101.872844919976217, 69.239963349822403 ], [ -101.822511055751448, 69.217067841136526 ], [ -101.789282905069825, 69.18161495892474 ], [ -101.787810737044921, 69.13226437110464 ], [ -101.857112497501078, 69.023950157988423 ], [ -101.980565871351075, 68.988497275776609 ], [ -102.358808683631452, 68.922875935382734 ], [ -102.488414401466144, 68.888917193852933 ], [ -102.73832041685867, 68.864999956612451 ], [ -102.83485179261136, 68.833271439777093 ], [ -102.895056873033013, 68.823658402301021 ], [ -103.16224987638968, 68.828723099759856 ], [ -103.468202646849903, 68.808563186881429 ], [ -103.820347435673796, 68.847993120026189 ], [ -104.067336580837861, 68.865560259368209 ], [ -104.3526954784422, 68.928193318398087 ], [ -104.460180223753355, 68.912405964280225 ], [ -104.571438772919407, 68.872130083837561 ], [ -105.105879711275463, 68.920393025131773 ], [ -105.169287306467695, 68.955373495216179 ], [ -105.148358350591195, 68.978115195302451 ], [ -105.021647530327883, 69.052503625874522 ], [ -105.013583565176518, 69.068082239750055 ], [ -105.019576607397312, 69.081265834002949 ], [ -105.262352495564727, 69.093977016128491 ], [ -105.533011685577065, 69.133560757872857 ], [ -105.804983741850407, 69.153193326981153 ], [ -106.008406601172879, 69.14761227208075 ], [ -106.140852284936216, 69.162037321459138 ], [ -106.270150385571668, 69.194589812935305 ], [ -106.341176999609246, 69.224351776961242 ], [ -106.353943113377483, 69.251224336580123 ], [ -106.355700925944546, 69.280634738092658 ], [ -106.344253171601594, 69.339642308702992 ], [ -106.361358885144753, 69.381038794657144 ], [ -106.419981934256043, 69.413745094732917 ], [ -106.539798833357949, 69.443078591945635 ], [ -106.659066416032644, 69.439584939468631 ], [ -106.759937391560243, 69.407109352292281 ], [ -106.855798601271758, 69.347288793369671 ], [ -107.033464013322586, 69.180736052641208 ], [ -107.122497219843936, 69.152314420697621 ], [ -107.353391393690913, 69.03167354695492 ], [ -107.439897744647112, 69.002142295828378 ], [ -107.863382257872075, 68.954340780333041 ], [ -108.364979567045566, 68.934763142867439 ], [ -108.552543661114626, 68.897398639488983 ], [ -108.730412320243531, 68.827426712991638 ], [ -108.945876195650328, 68.759838819788371 ], [ -109.472099360255399, 68.676683299038103 ], [ -109.958552015530842, 68.630277047267867 ], [ -110.467620028114311, 68.609996284775463 ], [ -110.848109544581959, 68.578399603882644 ], [ -110.957253225503266, 68.594208930657601 ], [ -111.127601742743735, 68.588342231215051 ], [ -111.310925113994784, 68.542012883744604 ], [ -111.518072338693699, 68.533080998638241 ], [ -112.304946148007417, 68.516227970651613 ], [ -112.666193110030093, 68.485279483142875 ], [ -112.864265627351585, 68.477116641034627 ], [ -113.019502449679649, 68.48134637752409 ], [ -113.127712292674715, 68.49416742293505 ], [ -113.231401261473877, 68.535377141303968 ], [ -113.338062032144222, 68.598757270674838 ], [ -113.554822294319223, 68.767584181411962 ], [ -113.616834625786367, 68.838489945835533 ], [ -113.592543853375375, 68.959877889919255 ], [ -113.608561920392674, 69.030179406272907 ], [ -113.680676180956112, 69.181977507766675 ], [ -113.694139926586899, 69.195029266077057 ], [ -114.073420946914695, 69.251334199865568 ], [ -114.322964413465272, 69.269154024764077 ], [ -114.699064891679555, 69.272779513183622 ], [ -115.159035001999456, 69.264759493346446 ], [ -115.618131699200106, 69.282952853415452 ], [ -115.860753778767901, 69.30355221943563 ], [ -116.101535648304576, 69.33715939845203 ], [ -116.51350099605105, 69.424599587334484 ], [ -116.536808492057347, 69.433542458769381 ], [ -116.568795187613489, 69.462689188396865 ], [ -116.609466575883715, 69.512039776216938 ], [ -116.711990993857214, 69.576221907571551 ], [ -116.856038240563123, 69.649676500217367 ] ] ], [ [ [ -86.595531104771069, 67.7359129994787 ], [ -86.638169045850702, 67.734880284595562 ], [ -86.705943706639232, 67.75012930861476 ], [ -86.861103624667479, 67.810488197636005 ], [ -86.892524524303596, 67.836580727928236 ], [ -86.90827891943583, 67.867045816981005 ], [ -86.90843272803545, 67.901927410108527 ], [ -86.894556995084258, 67.938072431018583 ], [ -86.847041124131039, 68.010263595881838 ], [ -86.937733266262541, 68.067601244553487 ], [ -86.959804800307637, 68.100241626657976 ], [ -86.949181020605494, 68.118687672283528 ], [ -86.898665881959744, 68.16286369935932 ], [ -86.884845080651274, 68.190516288304821 ], [ -86.833967393163562, 68.229682549564501 ], [ -86.70208750532025, 68.305598079804213 ], [ -86.569900000277698, 68.287723323262952 ], [ -86.451983736013915, 68.225496758389198 ], [ -86.421123139133556, 68.183430106393871 ], [ -86.430329682453504, 68.138737721876481 ], [ -86.420046478936243, 68.073929369794882 ], [ -86.390328460224453, 67.988928145849201 ], [ -86.38245126265835, 67.927305829045366 ], [ -86.39644784522352, 67.88898551508359 ], [ -86.446941011212175, 67.817003090462663 ], [ -86.489655856591625, 67.783615638017153 ], [ -86.546026708351377, 67.752194738381036 ], [ -86.595531104771069, 67.7359129994787 ] ] ], [ [ [ -109.323168690511636, 67.99088371233006 ], [ -109.360813345267985, 67.987576827438289 ], [ -109.497961177648193, 68.047012864861841 ], [ -109.469127558384216, 68.098011401963532 ], [ -109.341719106258338, 68.045848314036164 ], [ -109.32355321201068, 68.013317795217091 ], [ -109.323168690511636, 67.99088371233006 ] ] ], [ [ [ -73.621731781734894, 67.78382437825951 ], [ -74.109085315950963, 67.782506018834198 ], [ -74.374064574106001, 67.789614173402242 ], [ -74.480719851612065, 67.80490714273563 ], [ -74.573378546552973, 67.828648598719411 ], [ -74.678638560333951, 67.905574871185166 ], [ -74.745995740637795, 67.984819258973715 ], [ -74.749280652872471, 68.018437424318648 ], [ -74.731449841645414, 68.048770677428905 ], [ -74.706543834835941, 68.067106859768984 ], [ -74.37940392977842, 68.093463061946267 ], [ -74.111392444945224, 68.06056999428526 ], [ -73.880734477161951, 68.021942063124214 ], [ -73.58402670217157, 68.015328293340673 ], [ -73.49377401318182, 68.000650558405766 ], [ -73.459232996239194, 67.98988395643255 ], [ -73.435227868370347, 67.970009688096269 ], [ -73.401565757711239, 67.878702311566315 ], [ -73.398203941176746, 67.8299449854876 ], [ -73.407190757925804, 67.793041907907991 ], [ -73.621731781734894, 67.78382437825951 ] ] ], [ [ [ -109.166404768515946, 67.982358321379849 ], [ -109.053904764224413, 67.971877363948778 ], [ -108.970502051081908, 67.979721602529253 ], [ -108.909599338797719, 67.939390790443895 ], [ -108.886061129891999, 67.898543620916939 ], [ -108.89386691632258, 67.884492106709047 ], [ -108.92016818685714, 67.878801188523198 ], [ -109.096229594940539, 67.92402091681069 ], [ -109.161548811299454, 67.951717451070351 ], [ -109.18361485218027, 67.975019453912381 ], [ -109.166404768515946, 67.982358321379849 ] ] ], [ [ [ -107.899867854967027, 67.401829734781302 ], [ -107.950251157670237, 67.318212788232188 ], [ -107.969526671100851, 67.326024067827063 ], [ -108.003968811086594, 67.36591542677067 ], [ -108.073347475842553, 67.385064597423025 ], [ -108.152256780610514, 67.429427392084079 ], [ -108.151119695606212, 67.524821682832453 ], [ -108.120835880974411, 67.56815176261037 ], [ -108.127526555057756, 67.628587555931432 ], [ -108.048979799131757, 67.664886385441122 ], [ -107.990873107462036, 67.622127594747496 ], [ -107.974926451580274, 67.549365140799949 ], [ -107.989373473615757, 67.513549709746201 ], [ -107.9318051120447, 67.476470850909891 ], [ -107.905190731146632, 67.467044581019053 ], [ -107.890979915174853, 67.437227685350393 ], [ -107.899867854967027, 67.401829734781302 ] ] ], [ [ [ -62.681567790182015, 67.056320688398046 ], [ -62.805416671859604, 67.028832894380741 ], [ -62.871631273994865, 67.062571909339653 ], [ -62.825104172610622, 67.072130015173002 ], [ -62.756988935637224, 67.112548717886739 ], [ -62.664385172339053, 67.148254285655042 ], [ -62.625317788036241, 67.176928603155147 ], [ -62.469718416866229, 67.190057265765319 ], [ -62.416775299612226, 67.188486220783517 ], [ -62.396340728520215, 67.178323866880248 ], [ -62.484604892043478, 67.134246716761339 ], [ -62.681567790182015, 67.056320688398046 ] ] ], [ [ [ -108.092727359394345, 67.005190315353843 ], [ -107.966455992272785, 66.997280158802084 ], [ -107.805533744923153, 66.998598518227396 ], [ -107.83336211512534, 66.921342655905306 ], [ -107.895165706350141, 66.871882204799789 ], [ -107.943923032428842, 66.857830690591896 ], [ -107.965110167026126, 66.884857058810354 ], [ -108.059729921612146, 66.94687488344178 ], [ -108.092727359394345, 67.005190315353843 ] ] ], [ [ [ -83.123499722323587, 66.282828227251031 ], [ -83.023864708757188, 66.270633402567086 ], [ -82.948157918759819, 66.271918803006741 ], [ -82.931337849758819, 66.257295999714557 ], [ -83.010845909432433, 66.208461769336054 ], [ -83.059888880053265, 66.199266212344639 ], [ -83.147889371691477, 66.234246682429045 ], [ -83.213928192570023, 66.277038432108299 ], [ -83.232582978437904, 66.302977153800896 ], [ -83.237856416139067, 66.331530621687023 ], [ -83.222255829606453, 66.336463483203318 ], [ -83.123499722323587, 66.282828227251031 ] ] ], [ [ [ -83.725989979681756, 65.796705161831909 ], [ -83.597526840015661, 65.757483968929506 ], [ -83.469448221848594, 65.735214680970614 ], [ -83.263179903433212, 65.723272541843187 ], [ -83.233747529263582, 65.715032795435121 ], [ -83.23393429684883, 65.696553790823941 ], [ -83.263641329232058, 65.667824541681142 ], [ -83.332426732246645, 65.63103132738695 ], [ -83.381469702867477, 65.629998612503812 ], [ -83.495419902526834, 65.655937334196409 ], [ -83.537113019351679, 65.669164873763521 ], [ -83.583211653922703, 65.698652179575873 ], [ -83.606546615750361, 65.701365802726258 ], [ -83.636363511419034, 65.691489093365107 ], [ -83.644394517584772, 65.678525225683074 ], [ -83.630650620576105, 65.662353350066184 ], [ -83.649514146686315, 65.65777205106329 ], [ -83.787546378514321, 65.668890215549908 ], [ -83.809244377388922, 65.678338458097841 ], [ -83.798192130873559, 65.709990070633381 ], [ -83.701918933841654, 65.756220541146917 ], [ -83.786502677302636, 65.770425863954443 ], [ -83.81358397716383, 65.787509604840494 ], [ -83.938948972180498, 65.758461752169922 ], [ -84.008514404521719, 65.751485433544417 ], [ -84.118245854020131, 65.77179915502245 ], [ -84.129946293919602, 65.877421717645376 ], [ -84.143228765129408, 65.915972744506604 ], [ -84.193205573676494, 65.942120206441558 ], [ -84.222967537702445, 65.969772795387058 ], [ -84.27092286179743, 65.990624846963726 ], [ -84.370140394879144, 66.011806488396758 ], [ -84.450571306150465, 66.064387056808783 ], [ -84.467391375151479, 66.088271335063666 ], [ -84.456339128636117, 66.106244968561782 ], [ -84.407164322072745, 66.130997166771635 ], [ -84.122244877610186, 66.077823336618223 ], [ -83.950374753866356, 66.027494965557736 ], [ -83.786942130444402, 65.965795744454084 ], [ -83.701347644757362, 65.920114590367746 ], [ -83.693646228447946, 65.89039657165597 ], [ -83.714882801523686, 65.860755457243982 ], [ -83.76511229562729, 65.831147301817651 ], [ -83.725989979681756, 65.796705161831909 ] ] ], [ [ [ -84.674769312749817, 65.575012038140613 ], [ -84.726998318648455, 65.5636961197402 ], [ -84.782929717266441, 65.570079176624319 ], [ -84.830269806962946, 65.59899519335238 ], [ -84.868919710781071, 65.65051008789564 ], [ -84.931146275654825, 65.689170978042313 ], [ -85.0719580486045, 65.737335042379613 ], [ -85.096347697972391, 65.756198568489822 ], [ -85.13629398855872, 65.820864098300376 ], [ -85.144050336510844, 65.885331874197135 ], [ -85.174152876721664, 65.943724210408988 ], [ -85.175668990060757, 65.972409514237626 ], [ -85.149631391411248, 66.015399017830674 ], [ -85.031396523619691, 66.025484467434154 ], [ -84.938584020079176, 66.008532562490615 ], [ -84.919819370925865, 65.997007903847845 ], [ -84.889442172501447, 65.972046965395663 ], [ -84.869545931508085, 65.941504972043077 ], [ -84.757353544415778, 65.85892074037713 ], [ -84.691754176678998, 65.79314559138362 ], [ -84.602633079529298, 65.657387529564232 ], [ -84.602215599044612, 65.631492753185825 ], [ -84.626253685899101, 65.604059890811214 ], [ -84.674769312749817, 65.575012038140613 ] ] ], [ [ [ -84.919621617012069, 65.261077699993109 ], [ -84.885102572726524, 65.24899273859458 ], [ -84.842102082804928, 65.255914125577362 ], [ -84.771306181666787, 65.305264713397463 ], [ -84.612498802561888, 65.447295968815524 ], [ -84.567938253987037, 65.460655344325119 ], [ -84.501141376438937, 65.458436105959237 ], [ -84.266429453422887, 65.367227606386137 ], [ -84.180000006766491, 65.316327946241358 ], [ -84.133494878039343, 65.245477113460481 ], [ -84.084891360560263, 65.217824524515009 ], [ -83.900123287105671, 65.181240050463146 ], [ -83.722562245176007, 65.168990294136506 ], [ -83.490761699224137, 65.13179058568619 ], [ -83.407155739003571, 65.103907283841266 ], [ -83.222255829606453, 64.967973440765178 ], [ -83.200986297545086, 64.959656790057295 ], [ -82.990587119597123, 64.904098926609805 ], [ -82.66761103305781, 64.780337935560595 ], [ -82.585806830718482, 64.761935835249233 ], [ -82.271663752328621, 64.721165570022094 ], [ -82.15891106248057, 64.690656535655137 ], [ -82.050025560280048, 64.644294229199062 ], [ -81.928923260738486, 64.559413854867358 ], [ -81.787199622519651, 64.425984894699326 ], [ -81.676116854610314, 64.212641380701541 ], [ -81.667360750760665, 64.170497824406397 ], [ -81.680895907526988, 64.145536885954215 ], [ -81.720952061398762, 64.118873066577692 ], [ -81.902643962861006, 64.031257096438537 ], [ -81.887087321642568, 64.01640358024693 ], [ -81.71609610418227, 64.021885758190422 ], [ -81.335650533028797, 64.075773699699226 ], [ -81.104036754662189, 64.037123795881087 ], [ -81.023572884405226, 64.031081315181837 ], [ -81.005027961822805, 64.033300553547747 ], [ -80.921158329717173, 64.10048195259489 ], [ -80.828961060575125, 64.089935077192564 ], [ -80.694290645281612, 64.024753189940441 ], [ -80.60757555408307, 63.972062758242942 ], [ -80.568870718622222, 63.931907727414284 ], [ -80.579186881125125, 63.909220958970735 ], [ -80.668275019289197, 63.901475597347144 ], [ -80.45059190551649, 63.862924570485916 ], [ -80.261319437358821, 63.80195044706619 ], [ -80.302067729928865, 63.762201910393657 ], [ -80.504073352869142, 63.673783938270759 ], [ -80.71175890766672, 63.596374267349091 ], [ -80.953524053608078, 63.480259760966533 ], [ -81.013882942629337, 63.462538813024906 ], [ -81.046369516134234, 63.461550043455929 ], [ -81.179688613016822, 63.48320409701634 ], [ -81.371718649639064, 63.538058835437027 ], [ -81.963332441738586, 63.664434572679738 ], [ -82.145991140112713, 63.691175296356079 ], [ -82.378121275920904, 63.706808841874334 ], [ -82.411739441265837, 63.736493901600454 ], [ -82.467110537128079, 63.926952893240895 ], [ -82.571491644625524, 63.960691908199806 ], [ -82.929711873134295, 64.000429458543806 ], [ -83.033895226717945, 64.0232260902728 ], [ -83.038696252291714, 64.061414568292093 ], [ -83.016163292447771, 64.126991963371779 ], [ -83.0651293587688, 64.159028097406377 ], [ -83.185539519612092, 64.157533956724365 ], [ -83.30395016866035, 64.143790059715712 ], [ -83.494332256000973, 64.099240497469395 ], [ -83.583596175421746, 64.058074724414666 ], [ -83.61708250482414, 64.0134043125544 ], [ -83.637989488043559, 63.917834240549297 ], [ -83.661610094413362, 63.87259253960471 ], [ -83.728264149690389, 63.813365242423487 ], [ -84.022104492930765, 63.659886232662501 ], [ -84.141624761161964, 63.613743652777288 ], [ -84.260463877023454, 63.600516113210205 ], [ -84.307639171791791, 63.585783446632576 ], [ -84.387509780307369, 63.529093991345036 ], [ -84.506206073897772, 63.390029044633877 ], [ -84.554578878477415, 63.350005849747731 ], [ -84.632911400996818, 63.309213611863527 ], [ -84.795542022435058, 63.246943101675583 ], [ -84.961501501422163, 63.197229965013548 ], [ -85.238148240491029, 63.139299054600542 ], [ -85.392616019821006, 63.119666485492246 ], [ -85.495502986636453, 63.139090314358214 ], [ -85.566090147532265, 63.270893297901722 ], [ -85.714141910992495, 63.657974611495831 ], [ -85.738740300602714, 63.684122073430757 ], [ -85.768919745113351, 63.700326908033304 ], [ -85.804680244524377, 63.706556156317816 ], [ -86.301547939259621, 63.656788088013059 ], [ -86.575689795420431, 63.66231421127074 ], [ -86.846887315531418, 63.575313475530038 ], [ -86.91525523806132, 63.568985350288642 ], [ -87.052924921047378, 63.571775877738844 ], [ -87.151878782244054, 63.585629638032941 ], [ -87.177125365238382, 63.595132812223596 ], [ -87.193868529939579, 63.632804932801292 ], [ -87.188935668423284, 63.672289797588775 ], [ -87.154416624137738, 63.714872807025699 ], [ -87.031919060871076, 63.830416024323938 ], [ -86.932053334405254, 63.901684337589472 ], [ -86.88606456311966, 63.923744885306036 ], [ -86.42174935986057, 64.051537858930942 ], [ -86.308601162184942, 64.093659442568992 ], [ -86.252098474482651, 64.136857686404397 ], [ -86.252197351439548, 64.18125344005108 ], [ -86.2741590221992, 64.238041772295503 ], [ -86.354469083856529, 64.37653542992237 ], [ -86.374925627605634, 64.502988071464898 ], [ -86.374255461564445, 64.565829870737133 ], [ -86.34386727681148, 64.662355753325556 ], [ -86.227653893472038, 64.896353564986214 ], [ -86.188300864627095, 65.010292778317051 ], [ -86.11419807859717, 65.417303291890136 ], [ -86.074581377867162, 65.533824292428818 ], [ -86.017067947938827, 65.640281816021087 ], [ -85.961674879419505, 65.704255207133343 ], [ -85.813985664801223, 65.831949303801366 ], [ -85.699057681901451, 65.883167567473947 ], [ -85.554664365846406, 65.918664394999922 ], [ -85.523045712296494, 65.914533535467342 ], [ -85.495524959293533, 65.899701991932801 ], [ -85.442428033439924, 65.84557235119604 ], [ -85.241092576540836, 65.795518638349165 ], [ -85.176218306487954, 65.74689314821299 ], [ -85.130350384816353, 65.692917316075835 ], [ -85.105389446364171, 65.622714676679067 ], [ -85.130306439502178, 65.592095779026693 ], [ -85.226315964649032, 65.545766431556245 ], [ -85.242751512151003, 65.526232739404833 ], [ -85.239939012043706, 65.510313549344431 ], [ -85.056038858544099, 65.437397286797278 ], [ -84.919621617012069, 65.261077699993109 ] ] ], [ [ [ -77.642079835489639, 63.991904067593595 ], [ -77.714062260110538, 63.945706556065659 ], [ -77.928833996819066, 63.961988294968023 ], [ -77.957925794803828, 63.976039809175916 ], [ -77.965989759955193, 63.992936782476733 ], [ -77.931360852384202, 64.014799576279472 ], [ -77.710810306861489, 64.035629655199102 ], [ -77.617294678294158, 64.037233659166532 ], [ -77.569394285841895, 64.030411149140633 ], [ -77.563604490699163, 64.022083512104217 ], [ -77.642079835489639, 63.991904067593595 ] ] ], [ [ [ -76.67759005260352, 63.393962150252662 ], [ -76.783157683583724, 63.38404149557735 ], [ -76.921860081452934, 63.406365715178964 ], [ -77.057233621773264, 63.44977269925667 ], [ -77.364751944051037, 63.588310302197698 ], [ -77.133687482111625, 63.682056643664481 ], [ -76.763623991432326, 63.573566649291536 ], [ -76.65244234656609, 63.503561763808563 ], [ -76.67759005260352, 63.393962150252662 ] ] ], [ [ [ -77.876692881548792, 63.470547846533549 ], [ -77.79206519277362, 63.427811028497018 ], [ -77.703724124950554, 63.430854241503738 ], [ -77.654791017615153, 63.395972648376244 ], [ -77.538489743647361, 63.287043200861547 ], [ -77.527272702203845, 63.268959704077957 ], [ -77.532732907490256, 63.233660630465778 ], [ -77.593915771152325, 63.188440902178286 ], [ -77.657680422022253, 63.164622541894687 ], [ -77.791449958375154, 63.129609112824653 ], [ -77.942424085228112, 63.114393047791083 ], [ -78.024426041481235, 63.138881574115857 ], [ -78.255962915548039, 63.239856919764634 ], [ -78.46874612679008, 63.357894033642395 ], [ -78.536751500478019, 63.423724114278627 ], [ -78.507352085294031, 63.451113031339048 ], [ -78.417275177560995, 63.469976557449257 ], [ -78.234913110057548, 63.489565181243393 ], [ -77.933920666934981, 63.478941401541249 ], [ -77.876692881548792, 63.470547846533549 ] ] ], [ [ [ -82.000466232217633, 62.954190404961082 ], [ -81.960574873274027, 62.926241185144903 ], [ -81.94858878883241, 62.884020724549941 ], [ -81.964420088264447, 62.827638886461642 ], [ -81.990183028700358, 62.776321745832178 ], [ -82.025844651154486, 62.730069302661548 ], [ -82.1137462658358, 62.652253137583727 ], [ -82.388041930596216, 62.519131794614907 ], [ -82.490950870068758, 62.446600053566783 ], [ -82.568261664033557, 62.403215042146172 ], [ -83.015800743605823, 62.209899605084274 ], [ -83.071380579710393, 62.200385444565086 ], [ -83.129674038965362, 62.204109809941514 ], [ -83.252380342474368, 62.232948922369786 ], [ -83.376822485893328, 62.238112496785504 ], [ -83.698864734506387, 62.160263372722056 ], [ -83.714421375724825, 62.173567816588957 ], [ -83.728626698532338, 62.257184763138042 ], [ -83.760959463437615, 62.303536083265584 ], [ -83.903144527455296, 62.40246797180518 ], [ -83.91239501608942, 62.425517289090692 ], [ -83.910505367579844, 62.454169633933674 ], [ -83.899266353479234, 62.476449908221099 ], [ -83.739063710649233, 62.568844931276942 ], [ -83.376405005408657, 62.904949680426455 ], [ -83.289437228653597, 62.921582981842221 ], [ -83.110942348797678, 62.884119601506853 ], [ -83.026292687365427, 62.872078585422514 ], [ -82.965758017087467, 62.873935274946462 ], [ -82.706414745475556, 62.944533422170821 ], [ -82.459716738017903, 62.936161839820215 ], [ -82.234771661077545, 62.977448462488923 ], [ -82.129247975411516, 62.977701148045441 ], [ -82.04761955432889, 62.97057102082033 ], [ -82.000466232217633, 62.954190404961082 ] ] ], [ [ [ -70.337072232606957, 62.548739950041238 ], [ -70.406373993063113, 62.544839803408109 ], [ -70.541472875169845, 62.552354452132249 ], [ -70.686558329923173, 62.573184531051851 ], [ -70.766066389596787, 62.596849082735844 ], [ -70.837554429433212, 62.648111291722586 ], [ -70.851254381127703, 62.704339321211279 ], [ -70.986155509320639, 62.787791472832225 ], [ -71.136942868588349, 62.815905487576543 ], [ -71.220142334652778, 62.873913302289367 ], [ -71.134877438822059, 62.877967257522158 ], [ -71.013698234980694, 62.865311007039338 ], [ -70.83461009338339, 62.840097383030667 ], [ -70.674341532582133, 62.807050506770025 ], [ -70.44261789093008, 62.733793668037976 ], [ -70.366812223975828, 62.665843225992774 ], [ -70.291489955477502, 62.615976280731104 ], [ -70.268836146019581, 62.578095419911079 ], [ -70.288545619427694, 62.561560995452197 ], [ -70.337072232606957, 62.548739950041238 ] ] ], [ [ [ -74.000441512978412, 62.618426231996438 ], [ -74.053560411489102, 62.609692100803898 ], [ -74.253522577320183, 62.621996788773288 ], [ -74.499528446079566, 62.668787562042581 ], [ -74.626442513420955, 62.712765835204578 ], [ -74.619982552237019, 62.726300991970902 ], [ -74.564204962218653, 62.733277310596407 ], [ -74.500923709804667, 62.726509732213259 ], [ -74.394784789740157, 62.695813930261039 ], [ -74.108931507351343, 62.680312220685323 ], [ -74.016822128837646, 62.662690149700609 ], [ -73.988191756651744, 62.636070275638275 ], [ -74.000441512978412, 62.618426231996438 ] ] ], [ [ [ -64.823835938309315, 62.558737509016368 ], [ -64.631816888015607, 62.54801485235734 ], [ -64.515306873805486, 62.551794149376519 ], [ -64.465055407044787, 62.53592989095884 ], [ -64.418077866190245, 62.487403277779578 ], [ -64.478337878254607, 62.417892777081079 ], [ -64.546497060542166, 62.391382766304162 ], [ -64.657393060866269, 62.383582473037876 ], [ -64.837327149761464, 62.40624726882433 ], [ -64.901223636573917, 62.421045853373244 ], [ -64.956495855479261, 62.458355425108977 ], [ -64.930787846686073, 62.4850192444855 ], [ -64.841930421421438, 62.494115924520003 ], [ -64.827098877886911, 62.504970417121569 ], [ -64.849862550630263, 62.525437947199237 ], [ -64.848774904104403, 62.543312703740469 ], [ -64.823835938309315, 62.558737509016368 ] ] ], [ [ [ -79.545318433483047, 62.411696487782194 ], [ -79.466227854294104, 62.384516310964102 ], [ -79.336028874718039, 62.293714305547155 ], [ -79.286469546655624, 62.247670602618854 ], [ -79.272000551963046, 62.185993354172325 ], [ -79.306420719291694, 62.1034970131347 ], [ -79.323932926990992, 62.026054383227375 ], [ -79.372250799927912, 61.967793882958034 ], [ -79.462173899061341, 61.894108577412794 ], [ -79.541857739991656, 61.808008720612719 ], [ -79.611313309047432, 61.709615162171815 ], [ -79.668771807333044, 61.644455247576786 ], [ -79.714255207505602, 61.612572922141823 ], [ -79.763342123440623, 61.595928634397495 ], [ -79.816109459437911, 61.594643233957839 ], [ -79.896353603123984, 61.630140061483814 ], [ -80.004151458798646, 61.702539966589399 ], [ -80.091976169180143, 61.746825856950665 ], [ -80.204915626613442, 61.777257987017805 ], [ -80.265175638677803, 61.818193047173111 ], [ -80.276150980893348, 61.858578790901191 ], [ -80.27985337361271, 61.989502868161168 ], [ -80.275118266010196, 62.054640810099102 ], [ -80.260056009576246, 62.109056095378008 ], [ -80.234688576967926, 62.152693792355166 ], [ -80.178559424436145, 62.21278900949136 ], [ -80.021597748526659, 62.342966016410344 ], [ -79.926741787876949, 62.39285493432908 ], [ -79.868041834465842, 62.404357620314755 ], [ -79.712541340252727, 62.395008254723734 ], [ -79.64955671870942, 62.398315139615505 ], [ -79.597646316338569, 62.41324556010693 ], [ -79.545318433483047, 62.411696487782194 ] ] ], [ [ [ -65.030543709866464, 61.879035334650297 ], [ -65.008065681665244, 61.870279230800662 ], [ -64.981039313446772, 61.880617365960632 ], [ -64.960571783369119, 61.871674494525763 ], [ -64.946674077760832, 61.843362725867621 ], [ -64.923547856175517, 61.823719170430763 ], [ -64.865133547306556, 61.798164970237224 ], [ -64.845489991869727, 61.779894705868372 ], [ -64.847039064194433, 61.761503591885571 ], [ -64.896598392256848, 61.733290700184341 ], [ -64.927711674693725, 61.732510670857693 ], [ -65.165939222843889, 61.797648612795626 ], [ -65.230275162798108, 61.864028009859055 ], [ -65.235339860256943, 61.897723079503805 ], [ -65.210532730404367, 61.928363949813274 ], [ -65.173948256352531, 61.943195493347815 ], [ -65.125630383415597, 61.9422177101074 ], [ -65.068347666386686, 61.926034848161947 ], [ -65.030543709866464, 61.879035334650297 ] ] ], [ [ [ -93.043951150563458, 61.844076837222985 ], [ -93.08480381325468, 61.841703790257469 ], [ -93.176583601912043, 61.892713313687693 ], [ -93.196683089983466, 61.918542172094874 ], [ -93.075762064862886, 61.935010678582472 ], [ -92.993024024597304, 61.889714045995163 ], [ -92.999950904744352, 61.86748870335046 ], [ -93.043951150563458, 61.844076837222985 ] ] ], [ [ [ -64.832625001144578, 61.366050695940856 ], [ -64.85680591027014, 61.354449132998298 ], [ -64.879778323255834, 61.357085851848865 ], [ -64.954243658127723, 61.410413490601911 ], [ -65.054395029135691, 61.432034585176694 ], [ -65.091473887972015, 61.452996500038836 ], [ -65.393883567476777, 61.562859785479787 ], [ -65.426798607794879, 61.611023849817087 ], [ -65.432126977138765, 61.649519945035593 ], [ -65.331613057288848, 61.668273607860385 ], [ -65.129761242948177, 61.685697924931304 ], [ -64.954430425712971, 61.685126635847013 ], [ -64.789635497551544, 61.662231127161135 ], [ -64.756346922062932, 61.637632737550888 ], [ -64.669587885550214, 61.59303922999041 ], [ -64.69095629456848, 61.539349042395429 ], [ -64.696405513526344, 61.471497477307082 ], [ -64.73231982153699, 61.438417642060813 ], [ -64.787614013099429, 61.413302895009025 ], [ -64.832625001144578, 61.366050695940856 ] ] ], [ [ [ -78.531631871376476, 60.728547009512653 ], [ -78.668884073877862, 60.716912487584466 ], [ -78.669092814120191, 60.731337536962855 ], [ -78.611996864676527, 60.772316542432321 ], [ -78.399554229619369, 60.808120987157537 ], [ -78.241680688440709, 60.818667862559863 ], [ -78.278858424233931, 60.783885146389252 ], [ -78.372472929758175, 60.75639735237192 ], [ -78.531631871376476, 60.728547009512653 ] ] ], [ [ [ -68.233816537139745, 60.240918817082985 ], [ -68.324091198786576, 60.232887810917248 ], [ -68.365256971841305, 60.254047479693185 ], [ -68.367860731706244, 60.314746944899298 ], [ -68.338252576279913, 60.360603880242365 ], [ -68.234739388737452, 60.455591676834615 ], [ -68.141882939882763, 60.561983282455628 ], [ -68.087599490546381, 60.58785608617697 ], [ -67.97804382230467, 60.570387823791862 ], [ -67.914191280806378, 60.539823857782181 ], [ -67.847537225529365, 60.488814334351957 ], [ -67.818851921700727, 60.449494264492643 ], [ -67.844252313294675, 60.39166223103652 ], [ -67.922310177600465, 60.33988366460818 ], [ -68.012332153690792, 60.304639522638723 ], [ -68.233816537139745, 60.240918817082985 ] ] ], [ [ [ -64.407014633346336, 60.367063841426273 ], [ -64.441951158116566, 60.297871944255576 ], [ -64.558175527784542, 60.323239376863881 ], [ -64.737955808080116, 60.375644164019235 ], [ -64.809015381103322, 60.410426880189817 ], [ -64.83381152462735, 60.448450563280943 ], [ -64.836426270820837, 60.501009159035902 ], [ -64.782549315640594, 60.509644413271559 ], [ -64.646307855365279, 60.514599247444949 ], [ -64.532544423291171, 60.441430299341278 ], [ -64.49982713688685, 60.430213257897748 ], [ -64.407014633346336, 60.367063841426273 ] ] ], [ [ [ -80.064224703277759, 59.77082480500971 ], [ -80.167089697436111, 59.763848486384205 ], [ -80.122232517990568, 59.823174660522312 ], [ -80.083637545815165, 59.851848978022389 ], [ -80.04118637232078, 59.870141215048307 ], [ -79.955866544847339, 59.876963725074205 ], [ -79.898627773132603, 59.853145364790606 ], [ -79.949637296562841, 59.809914161969573 ], [ -80.064224703277759, 59.77082480500971 ] ] ], [ [ [ -80.285247660927865, 59.624113373631843 ], [ -80.31723984964826, 59.62105917429659 ], [ -80.324655621415531, 59.633210053666346 ], [ -80.298969585279437, 59.674189059135841 ], [ -80.256650247727578, 59.679143893309231 ], [ -80.209980324072262, 59.724627293481774 ], [ -80.167243506035732, 59.708861912021007 ], [ -80.183063819139235, 59.683494479412673 ], [ -80.240522317424848, 59.644943452551445 ], [ -80.285247660927865, 59.624113373631843 ] ] ], [ [ [ -69.160062910363862, 59.040222970498832 ], [ -69.220861252526888, 58.967559393508168 ], [ -69.30170964428288, 58.97661212822851 ], [ -69.330823414924737, 58.96161578976583 ], [ -69.352818044670016, 58.960747869810831 ], [ -69.316332447575078, 59.028950997412579 ], [ -69.311531422001309, 59.074796946427085 ], [ -69.329977467626847, 59.121247143511539 ], [ -69.303203784964879, 59.144867749881342 ], [ -69.195175216390794, 59.146153150320998 ], [ -69.193801925322788, 59.092770579925229 ], [ -69.180684249041136, 59.072720530332248 ], [ -69.155206953147371, 59.063579904983555 ], [ -69.160062910363862, 59.040222970498832 ] ] ], [ [ [ -79.716496418528592, 57.515507336163665 ], [ -79.732228841003746, 57.507498302655023 ], [ -79.775174399282605, 57.514474621280527 ], [ -79.792027427269247, 57.448589609001573 ], [ -79.80845198844267, 57.442437265016878 ], [ -79.838224938797168, 57.482998790001687 ], [ -79.815900719195568, 57.517726574529576 ], [ -79.819152672444616, 57.541599866455897 ], [ -79.810857994393828, 57.559276869083334 ], [ -79.767890463457874, 57.598706802228094 ], [ -79.742566976163729, 57.607957290862231 ], [ -79.726702717746065, 57.604595474327738 ], [ -79.713497150836062, 57.555036146265309 ], [ -79.716496418528592, 57.515507336163665 ] ] ], [ [ [ -79.867009119582704, 56.774567366492789 ], [ -79.894474940942942, 56.757099104107681 ], [ -79.943671720163394, 56.776764632201605 ], [ -79.945704190944056, 56.82691722200542 ], [ -79.898166347333756, 56.865259508624291 ], [ -79.860549158398769, 56.863501696057256 ], [ -79.82664534851169, 56.843089097622311 ], [ -79.835016930862295, 56.816018784089664 ], [ -79.867009119582704, 56.774567366492789 ] ] ], [ [ [ -79.518193188307677, 56.656695047543195 ], [ -79.553481275591309, 56.643830056818075 ], [ -79.577387526503259, 56.644917703343936 ], [ -79.55074567978383, 56.733489484066411 ], [ -79.581749098935262, 56.764855452059805 ], [ -79.583561843145048, 56.780983382362535 ], [ -79.570125563335623, 56.795705062611631 ], [ -79.552866041192843, 56.798759261946884 ], [ -79.511216869682173, 56.771414290200653 ], [ -79.49105695680376, 56.742685041057825 ], [ -79.482169017011586, 56.714395245056778 ], [ -79.484553050305664, 56.686511943211883 ], [ -79.496539134747266, 56.667285868259711 ], [ -79.518193188307677, 56.656695047543195 ] ] ], [ [ [ -78.935588185614307, 56.266076136157892 ], [ -79.01796367703794, 56.16499092722367 ], [ -79.083903620959589, 56.067893755550955 ], [ -79.175474669374623, 55.885059275920128 ], [ -79.227824524887239, 55.878500437779309 ], [ -79.27362652858757, 55.922478710941306 ], [ -79.142273984514375, 56.136415486680477 ], [ -79.136099667872585, 56.160266805949703 ], [ -79.142295957171456, 56.180701377041743 ], [ -79.182143370800901, 56.212177208320554 ], [ -79.221825989502165, 56.175955283110682 ], [ -79.407418037597566, 55.934882275867608 ], [ -79.455329416378362, 55.896177440406746 ], [ -79.495088939379443, 55.874754099745758 ], [ -79.526773510900611, 55.8706781718559 ], [ -79.605732254147028, 55.875654978686384 ], [ -79.764737387165724, 55.806770698714899 ], [ -79.497440013687878, 56.093162311202377 ], [ -79.494682445223319, 56.114970173362423 ], [ -79.544725171741661, 56.128362507857673 ], [ -79.564566481092299, 56.120968708747483 ], [ -79.781118003024957, 55.940562207724895 ], [ -79.904571376874955, 55.871062693354958 ], [ -79.98751815738288, 55.892145457831077 ], [ -80.008238373017036, 55.911052929255447 ], [ -80.000800628592685, 55.932091748417406 ], [ -79.790060874459854, 56.114146198721613 ], [ -79.596327956913285, 56.244477014240204 ], [ -79.51527082491495, 56.326533902136049 ], [ -79.482355784596834, 56.403822723443767 ], [ -79.46790876256135, 56.460347383803139 ], [ -79.468941477444503, 56.522617893991054 ], [ -79.45886701416957, 56.539723607534228 ], [ -79.447671945383135, 56.536548558584968 ], [ -79.435301339442475, 56.51303781550061 ], [ -79.432049386193427, 56.447460420420896 ], [ -79.476280344911956, 56.312844936770119 ], [ -79.511832104080653, 56.246597375649202 ], [ -79.554184400618141, 56.191973350127967 ], [ -79.536331616733975, 56.180086142643262 ], [ -79.458295725085264, 56.211067589137599 ], [ -79.392641425705762, 56.276458216632051 ], [ -79.339368718595438, 56.376301970440807 ], [ -79.305333072765833, 56.463061006953524 ], [ -79.272418032447732, 56.600423072740341 ], [ -79.261146059361479, 56.595665992480747 ], [ -79.245754213071208, 56.568277075420326 ], [ -79.210433166801934, 56.548897191868548 ], [ -79.155193906882232, 56.537614232453762 ], [ -79.123542294346692, 56.519959202483392 ], [ -79.100229305176114, 56.47391549955509 ], [ -79.077729304317813, 56.453634737062686 ], [ -78.994969291395151, 56.436430146562628 ], [ -78.963185842917085, 56.421719452642094 ], [ -78.940345265873901, 56.3714460132243 ], [ -78.942410695640191, 56.344936002447412 ], [ -78.931193654196676, 56.32792916586115 ], [ -78.906650196229165, 56.320381558151354 ], [ -78.935588185614307, 56.266076136157892 ] ] ], [ [ [ -79.977597502707567, 56.207013633904836 ], [ -80.028596039809258, 56.199411094552318 ], [ -80.08885605187362, 56.213880089244896 ], [ -80.057490083880225, 56.28736764087634 ], [ -80.005085296724886, 56.317909634228926 ], [ -79.874446864007055, 56.348451627581511 ], [ -79.852177576048177, 56.367183317749209 ], [ -79.810418541252062, 56.376510710683135 ], [ -79.749180745947285, 56.376510710683135 ], [ -79.681021563659712, 56.403943573057745 ], [ -79.605831131103926, 56.458853243121126 ], [ -79.579738600811694, 56.4663459191882 ], [ -79.632549882123158, 56.386530242315359 ], [ -79.687942950642494, 56.3267975740211 ], [ -79.977597502707567, 56.207013633904836 ] ] ], [ [ [ -78.82650492949999, 56.145303426472651 ], [ -78.877294726359338, 56.131460652507087 ], [ -78.913835255096998, 56.132800984589466 ], [ -78.907012745071114, 56.16634224563461 ], [ -78.856882127924408, 56.23207344931393 ], [ -78.82841655066666, 56.28985055112733 ], [ -78.821594040640775, 56.339662564746249 ], [ -78.799423629638795, 56.383278289066311 ], [ -78.761850386017983, 56.420686737758956 ], [ -78.72449686896806, 56.439187715027202 ], [ -78.668730265278242, 56.438627412271444 ], [ -78.657161661321311, 56.317393276787357 ], [ -78.672817179496647, 56.260495081257488 ], [ -78.710181682875117, 56.21290230600448 ], [ -78.761388960219136, 56.174505087742858 ], [ -78.82650492949999, 56.145303426472651 ] ] ], [ [ [ -79.938211514876983, 53.304139988012736 ], [ -79.939299161402843, 53.274268160701354 ], [ -80.00410751348447, 53.280079928501181 ], [ -80.039351655453927, 53.29716366938726 ], [ -80.067872164354398, 53.324080174320272 ], [ -80.074024508339079, 53.34428403251286 ], [ -80.049678804285364, 53.364443945391287 ], [ -79.974565276029395, 53.352249120707341 ], [ -79.938211514876983, 53.304139988012736 ] ] ], [ [ [ -80.731677121317162, 52.747275953098182 ], [ -80.802319213855696, 52.733993481888376 ], [ -81.009883919039282, 52.760657301264899 ], [ -81.096599010237838, 52.779883376217072 ], [ -81.352239889130388, 52.852019609437605 ], [ -81.839055093247779, 52.957905843945582 ], [ -82.005036544891979, 53.010508385014703 ], [ -82.039280930963912, 53.04988338651674 ], [ -81.951137617054641, 53.132203946297665 ], [ -81.901380535078431, 53.165591398743175 ], [ -81.847294839655859, 53.186267669063142 ], [ -81.335364888486652, 53.224247406840078 ], [ -81.135611462897913, 53.205801361214554 ], [ -80.900383182440294, 53.037172204391226 ], [ -80.765350218304818, 52.923232991060416 ], [ -80.710473507227064, 52.83160701100266 ], [ -80.70953966930081, 52.787419997598306 ], [ -80.731677121317162, 52.747275953098182 ] ] ], [ [ [ -79.384291816012251, 51.95197562979115 ], [ -79.425611397666586, 51.9448894478802 ], [ -79.520621166915916, 51.952953413031565 ], [ -79.596888259669029, 51.978013228440659 ], [ -79.643766923566687, 52.01006034880379 ], [ -79.334864323892361, 52.098159717398886 ], [ -79.271308413264777, 52.086799853684283 ], [ -79.270198794081821, 52.071089403866239 ], [ -79.316605045852071, 52.023903122769326 ], [ -79.328953679135637, 51.99227348289088 ], [ -79.351530584293755, 51.968301314007675 ], [ -79.384291816012251, 51.95197562979115 ] ] ], [ [ [ -69.48888372368863, 83.016797371460683 ], [ -68.673269678903551, 82.998757819991283 ], [ -68.409026504760973, 83.005294685475008 ], [ -68.106869510812729, 82.961184576370471 ], [ -67.924639279251821, 82.956021001954753 ], [ -67.624470810770049, 82.96439258430533 ], [ -67.405645118828758, 82.953900640545726 ], [ -66.591635078011123, 82.944056890170231 ], [ -66.422577454374576, 82.926874272327268 ], [ -66.424774720083406, 82.906154056693083 ], [ -66.600369209203677, 82.861252931933365 ], [ -66.836300614688113, 82.817944824812542 ], [ -68.357555555531889, 82.676814448335108 ], [ -68.469352434796605, 82.653358636893472 ], [ -68.1728643863771, 82.645964837783282 ], [ -67.735883168535722, 82.652424798967218 ], [ -67.397064796235824, 82.668135248785262 ], [ -66.997689781000872, 82.716090572880233 ], [ -66.865711016200663, 82.718826168687741 ], [ -66.611871895189338, 82.742084226215582 ], [ -66.120453419411959, 82.807145263853698 ], [ -65.727428502075497, 82.842433351137345 ], [ -65.54963674724641, 82.826931641561629 ], [ -65.40000295247583, 82.802388183594104 ], [ -65.299005634169973, 82.799597656143902 ], [ -65.246600847014633, 82.818516113896834 ], [ -65.162423597709775, 82.870140871725539 ], [ -65.113182873175148, 82.888894534550332 ], [ -64.983884772539682, 82.902275882717021 ], [ -64.904871097650556, 82.900836673677759 ], [ -64.776759520497862, 82.876436037981307 ], [ -64.634783196722523, 82.818614990853746 ], [ -64.504012928062153, 82.778405028382366 ], [ -64.433370835523618, 82.777734862341163 ], [ -64.134246068253546, 82.823218262513706 ], [ -63.983612517585456, 82.82910693461335 ], [ -63.641047807252022, 82.812616455468657 ], [ -63.498697948306187, 82.792566405875704 ], [ -63.473022898498627, 82.771230955843066 ], [ -63.564077589472092, 82.748752927641846 ], [ -63.620580277174369, 82.729318112447345 ], [ -63.642519975276926, 82.71299242823082 ], [ -63.59269697532946, 82.694019038835165 ], [ -63.385406928359473, 82.653457513850356 ], [ -63.085337336834598, 82.565248281969815 ], [ -63.087051204087473, 82.53279466745056 ], [ -63.250835390022843, 82.466854723528911 ], [ -63.24678143479008, 82.450210435784612 ], [ -62.47517862215264, 82.519567127883477 ], [ -61.697159793645454, 82.488607654046206 ], [ -61.477070673921602, 82.467426012613203 ], [ -61.392475944132059, 82.441893785076729 ], [ -61.302508899684469, 82.399772201438651 ], [ -61.207213485892979, 82.341050275370463 ], [ -61.273537951313685, 82.279834452722781 ], [ -61.615377563963207, 82.184440161974408 ], [ -61.968642958298588, 82.11023849898757 ], [ -62.17671303459521, 82.04341964878239 ], [ -62.496492099528183, 82.006780243087832 ], [ -63.592312453830417, 81.845500940060504 ], [ -64.12791794301215, 81.79366744198947 ], [ -64.435798814131871, 81.742602986916523 ], [ -64.574006827216579, 81.733715047124349 ], [ -65.22619923490825, 81.743481893200055 ], [ -65.399157005177941, 81.715378864784242 ], [ -65.495430202209846, 81.668093706730474 ], [ -65.701072299898215, 81.645560746886531 ], [ -66.004723434528472, 81.629432816583801 ], [ -66.62574762814053, 81.616414017259046 ], [ -66.765010328765484, 81.563031446863278 ], [ -66.80059504691981, 81.526809521653405 ], [ -66.861162676183412, 81.498695506909058 ], [ -66.914072834451773, 81.485105418500012 ], [ -68.688540675579844, 81.293328067434288 ], [ -68.7211700713558, 81.261237001756996 ], [ -68.542576314542998, 81.248009462189884 ], [ -68.317686169245363, 81.261237001756996 ], [ -65.735701207469205, 81.494246043848705 ], [ -65.239987077231092, 81.509648876467537 ], [ -64.780066405389633, 81.492850780123604 ], [ -64.832756837087118, 81.438622262429959 ], [ -65.483960475209813, 81.284780703826982 ], [ -66.312846004876164, 81.146155210257604 ], [ -66.726876782388928, 81.040895196476612 ], [ -67.774357291097147, 80.859401048928163 ], [ -68.630455956567218, 80.678697917034896 ], [ -68.959353674191789, 80.586863196734782 ], [ -69.400103202723798, 80.422848297900003 ], [ -69.550681821749166, 80.383264556155609 ], [ -69.733768986936511, 80.366927885610551 ], [ -69.949320752971659, 80.373805327279143 ], [ -70.143493123659994, 80.397678619205465 ], [ -70.402627655029576, 80.458993318810059 ], [ -70.638679910128005, 80.527537022596675 ], [ -70.712573955915587, 80.539578038681015 ], [ -70.667826639755489, 80.505575351837024 ], [ -70.212783897787602, 80.277740870489595 ], [ -70.264881067743701, 80.233608788727963 ], [ -71.100281490236711, 80.187048728358093 ], [ -71.470048350045317, 80.145904927960459 ], [ -71.660836931542079, 80.135940327970957 ], [ -71.795924827320263, 80.143378072395308 ], [ -71.927650906563969, 80.139137349577283 ], [ -72.055982210287539, 80.123218159516881 ], [ -72.062991487898671, 80.105552143217977 ], [ -71.948678739397366, 80.086172259666199 ], [ -71.616089615381981, 80.071033098932446 ], [ -70.877061266877774, 80.122295307919188 ], [ -70.758518781886991, 80.118680805828177 ], [ -70.568400366431419, 80.093719867375995 ], [ -70.559072973497493, 80.071000139946818 ], [ -70.757508039660934, 79.998215713342177 ], [ -71.355823492172362, 79.911302868229825 ], [ -71.277611819266951, 79.906337047727902 ], [ -71.106323970935961, 79.875542368818799 ], [ -71.110180172254928, 79.847790902916415 ], [ -71.298584720457626, 79.782576056678664 ], [ -71.387837653549852, 79.761745977759062 ], [ -71.964542997815045, 79.701057498881482 ], [ -72.215536659733445, 79.686819217088328 ], [ -72.436504685740829, 79.694388797455218 ], [ -73.44814779073819, 79.827114632596448 ], [ -73.805049659821677, 79.846285775905869 ], [ -74.144252553620618, 79.879772105308291 ], [ -74.394466186212384, 79.874092173450975 ], [ -74.660214487365494, 79.835178597747813 ], [ -74.540716191791375, 79.815589973953678 ], [ -74.051033555923965, 79.778236456903755 ], [ -73.642067475870022, 79.7709964663932 ], [ -73.472460535806277, 79.756428594743738 ], [ -73.405905357486148, 79.732192753975454 ], [ -73.229377030439636, 79.64397253576638 ], [ -73.201109207095669, 79.596588500755701 ], [ -73.240121659755758, 79.552478391651135 ], [ -73.293581134451316, 79.521606808442243 ], [ -73.361509603839465, 79.5039847374575 ], [ -73.466055506265079, 79.495151729308049 ], [ -73.865946878941585, 79.501402950249656 ], [ -74.015371933469837, 79.490548457648089 ], [ -74.188692252581475, 79.464763544555097 ], [ -74.40599084485514, 79.453546503111568 ], [ -74.797939101994274, 79.458688104870191 ], [ -75.259485750460257, 79.421048943278123 ], [ -75.503448162110431, 79.41417150160953 ], [ -75.773821707580623, 79.431167351867259 ], [ -76.066871035165818, 79.473190058548397 ], [ -76.37608125203937, 79.494426631624151 ], [ -76.89884372315305, 79.512301388165383 ], [ -76.855096162890462, 79.488219355996733 ], [ -76.670921351177256, 79.478089961079064 ], [ -76.295672313425143, 79.413600212525239 ], [ -76.116353458928415, 79.326116078328596 ], [ -75.947504575534211, 79.311339466436806 ], [ -75.602742599491961, 79.239554795729674 ], [ -75.353660558740245, 79.228337754286173 ], [ -75.093603175772969, 79.203904159604093 ], [ -74.727264050470112, 79.235369004554371 ], [ -74.481181277410926, 79.229480332454756 ], [ -74.53232263678369, 79.052743265165901 ], [ -74.640889535456438, 79.035538674665844 ], [ -75.233151520940055, 79.035538674665844 ], [ -75.51466520355396, 79.061246683459018 ], [ -75.638942552044753, 79.08773472157884 ], [ -75.911799007765907, 79.117782330146923 ], [ -76.15756317729732, 79.100390972061632 ], [ -76.380343947514476, 79.104159282752249 ], [ -76.531449910309959, 79.08651523911044 ], [ -76.771149626485027, 79.087163432494549 ], [ -77.398062492196729, 79.057291605183138 ], [ -77.729256352487027, 79.056929056341176 ], [ -77.973790053221492, 79.07621006293607 ], [ -78.257907495700337, 79.082197611992598 ], [ -78.581652625237737, 79.075023539453326 ], [ -78.558998815779816, 79.054577982032754 ], [ -78.421768585935524, 79.048403665390964 ], [ -78.221993187689691, 79.015126076230899 ], [ -78.036829606407522, 78.96391879888688 ], [ -77.882757334905122, 78.942363622283352 ], [ -77.698219974349954, 78.954558446967297 ], [ -77.510408687888656, 78.978486670536341 ], [ -76.824817841422941, 79.017861672038379 ], [ -76.524111042842506, 79.024222756265431 ], [ -76.25585785878134, 79.006853370837206 ], [ -76.077319033611246, 78.985155371962605 ], [ -75.952668149949943, 78.959051855341841 ], [ -75.795058280656349, 78.889761081214232 ], [ -75.399836097611072, 78.881279635578181 ], [ -75.098558009946345, 78.858285249935392 ], [ -74.618411507255217, 78.7577273847713 ], [ -74.486300906512469, 78.750102872761687 ], [ -74.433127076359057, 78.724131192083462 ], [ -74.535080205248249, 78.659278894687674 ], [ -74.546604863891005, 78.620321373670293 ], [ -74.878600726165018, 78.544823323915267 ], [ -75.396551185376381, 78.522828694169988 ], [ -75.965851744202851, 78.529826985452587 ], [ -76.373477492174416, 78.521070881602952 ], [ -76.416126419582596, 78.511534748426669 ], [ -76.136513371806828, 78.491693439076045 ], [ -75.488352946690853, 78.403539138838227 ], [ -75.237205476172832, 78.355737623342861 ], [ -75.193435943253149, 78.327722485555427 ], [ -75.550678388521504, 78.221122139692056 ], [ -75.865953058751401, 78.00981109647492 ], [ -75.969620054893483, 77.99312286341646 ], [ -76.077516787525042, 77.987278136631005 ], [ -76.355591749304637, 77.991002502007433 ], [ -76.708077114313383, 77.937883603496743 ], [ -76.974001196723208, 77.927237851137505 ], [ -77.455938470967027, 77.947178037445042 ], [ -78.012593765639238, 77.946046445604992 ], [ -78.056396257544549, 77.911725155233256 ], [ -78.084114764461305, 77.846103814839381 ], [ -78.081071551454585, 77.747347707556486 ], [ -78.047167741567506, 77.615467819713189 ], [ -78.076160662595385, 77.519062786738743 ], [ -78.167984396566922, 77.458110635976112 ], [ -78.283747340436051, 77.413099647930949 ], [ -78.493212680457773, 77.369385046654003 ], [ -78.708467815622228, 77.342149938193188 ], [ -78.869549364735761, 77.332536900717088 ], [ -79.137593808554584, 77.330987828392381 ], [ -79.906384121084741, 77.299544956099169 ], [ -80.281710063136657, 77.301478549922933 ], [ -80.573056509797524, 77.314815952775461 ], [ -80.874620242004383, 77.358585485695158 ], [ -81.376838278740607, 77.482148722830573 ], [ -81.519287014643353, 77.509559612548117 ], [ -81.659088045366957, 77.525445843622862 ], [ -81.653825593994341, 77.498836955889061 ], [ -81.503543605839667, 77.429765908332342 ], [ -81.378178610822985, 77.385194373428959 ], [ -81.277719622615791, 77.3651992554787 ], [ -81.30138417429977, 77.344061559359858 ], [ -81.522956448377073, 77.310838901842516 ], [ -81.767325354183384, 77.295952426665252 ], [ -82.05679313866321, 77.296523715749544 ], [ -82.06598869565461, 77.283658725024424 ], [ -81.967803877456035, 77.247843293970675 ], [ -81.840219644073457, 77.214093292683202 ], [ -81.756317052982197, 77.204018829408284 ], [ -81.534470120691296, 77.214455841525165 ], [ -81.277466937059273, 77.257093782604784 ], [ -81.11720936258655, 77.269651156130692 ], [ -80.798188354323116, 77.259466829570329 ], [ -80.672537714764303, 77.244305696179481 ], [ -80.274217387069584, 77.150954862540289 ], [ -80.218714455264816, 77.146560331122657 ], [ -79.923742520184405, 77.193603789948469 ], [ -79.497264232431178, 77.19608670019943 ], [ -79.340884831934531, 77.15839260696464 ], [ -79.281097231997563, 77.085168727218246 ], [ -79.273813296172818, 77.025787621437416 ], [ -79.31892316117488, 76.980370139236129 ], [ -79.220738342976304, 76.936051289889235 ], [ -78.97920390993437, 76.892875018710953 ], [ -78.791777144972102, 76.883580584762655 ], [ -78.658556925046412, 76.908014179444706 ], [ -78.455980013021829, 76.967241476625929 ], [ -78.370044951149922, 76.981271018176756 ], [ -78.288855983209061, 76.977986105942051 ], [ -78.165094992159823, 76.934886739063586 ], [ -77.998750991673688, 76.851950944884209 ], [ -77.983293227412148, 76.7550075818111 ], [ -78.118688740389572, 76.644056649844288 ], [ -78.284307643191809, 76.571217291596923 ], [ -78.934302785174651, 76.451147706938514 ], [ -79.130716366885991, 76.403972412170162 ], [ -79.28590924389988, 76.354775632949725 ], [ -79.511030102096925, 76.310489742588459 ], [ -79.953559415853078, 76.251262445407264 ], [ -80.186810157172772, 76.24019921256334 ], [ -80.690258662705929, 76.176456534350507 ], [ -80.799715453990743, 76.173567129943422 ], [ -80.962961309827463, 76.183927237760486 ], [ -80.996656379472199, 76.21498558855464 ], [ -80.955182989218244, 76.270180903160195 ], [ -80.901229129738184, 76.321541989103821 ], [ -80.834805787360594, 76.369134764356858 ], [ -80.832377808752341, 76.408641601801406 ], [ -80.974529913784394, 76.470066164691445 ], [ -81.074373667593122, 76.498487796635033 ], [ -81.17070179626775, 76.512748051085254 ], [ -81.364797262656282, 76.50447534569156 ], [ -81.474451807854891, 76.487633304033466 ], [ -81.591994536948178, 76.484425296098578 ], [ -81.717381504621926, 76.494972171500905 ], [ -81.822960121930677, 76.520855961550808 ], [ -82.034161301862369, 76.629400887566476 ], [ -82.1137462658358, 76.643232675203478 ], [ -82.217918633090903, 76.639815927026262 ], [ -82.311148617116103, 76.655372568244701 ], [ -82.393469176897, 76.689891612530261 ], [ -82.529842473114854, 76.723279064975742 ], [ -82.493411807662639, 76.697801769081991 ], [ -82.356983579802062, 76.636047616335645 ], [ -82.261973810552732, 76.574710944073956 ], [ -82.20836052725754, 76.513758793311325 ], [ -82.233167657110116, 76.46582544187342 ], [ -83.388984351591645, 76.439260499453809 ], [ -83.885698237727269, 76.453114259747906 ], [ -83.986311034534097, 76.495016116815094 ], [ -84.223791512343254, 76.675323740880771 ], [ -84.275339365872156, 76.35653344551676 ], [ -85.141259809060642, 76.304568111503187 ], [ -85.343616994514335, 76.313379146995572 ], [ -85.680578677290285, 76.349029783121154 ], [ -86.115802082564613, 76.4349208996789 ], [ -86.296197597258654, 76.491874026851491 ], [ -86.366839689797189, 76.548607427453192 ], [ -86.419420258209229, 76.579610846604623 ], [ -86.453708589595351, 76.584884284305787 ], [ -86.561923925754684, 76.516516361775871 ], [ -86.680235697846044, 76.376627440423931 ], [ -86.977679556848869, 76.412750488676892 ], [ -87.354192022383558, 76.448049562289071 ], [ -87.489796275603325, 76.585818122232041 ], [ -87.497552623555464, 76.386295409542726 ], [ -88.104327549045834, 76.412750488676892 ], [ -88.395992599234475, 76.405257812609847 ], [ -88.481620043907157, 76.580083258732031 ], [ -88.495858325700297, 76.772838393038171 ], [ -88.614115166148935, 76.650879159870158 ], [ -88.562545339962952, 76.547212163728091 ], [ -88.545780202604675, 76.420913330785169 ], [ -88.803695251505843, 76.456827638795829 ], [ -89.369655966454914, 76.474449709780544 ], [ -89.570079558084842, 76.491917972165652 ], [ -89.544349576634573, 76.659657236376887 ], [ -89.499745082745534, 76.82678126618967 ], [ -88.770912047130267, 76.993334006918161 ], [ -88.556217214721556, 77.072193873207681 ], [ -88.39816789228621, 77.103955349028666 ], [ -88.147943273365897, 77.124027371278714 ], [ -87.82840590766088, 77.136485867847711 ], [ -87.610514053645844, 77.126872830371639 ], [ -87.361739630093354, 77.136222195962659 ], [ -87.064471552347229, 77.165885283031713 ], [ -86.852215684875304, 77.174410673981924 ], [ -86.812236435303348, 77.184924590398623 ], [ -86.873759875150284, 77.200305450360361 ], [ -87.100858272485269, 77.307740757193073 ], [ -87.182398802939545, 77.332130406560964 ], [ -87.26536755610455, 77.343006871819625 ], [ -87.429668099481489, 77.347785924736314 ], [ -87.589167617284673, 77.394807410905031 ], [ -87.681463763383618, 77.436357705458789 ], [ -87.780186911680858, 77.492838420504 ], [ -87.937928616916963, 77.599812301537838 ], [ -88.094670566255573, 77.719178761169445 ], [ -88.016975250791731, 77.784734183592064 ], [ -87.757115621738251, 77.83622710547823 ], [ -87.49677259422883, 77.871943659575095 ], [ -87.236012086234723, 77.891806941582814 ], [ -87.017988396277161, 77.892246394724566 ], [ -86.755063581559881, 77.863725885824095 ], [ -86.385109954166012, 77.808607475518386 ], [ -86.17297493630808, 77.746161184073742 ], [ -85.906633373413584, 77.613896774731387 ], [ -85.73122565187856, 77.50865873360749 ], [ -85.588491271433668, 77.46114286265427 ], [ -84.950855749062939, 77.374966101554406 ], [ -84.738698758547912, 77.361013464303397 ], [ -84.487034930588322, 77.367989782928902 ], [ -83.973577879751488, 77.390544715429911 ], [ -83.721287831064885, 77.414187294456809 ], [ -83.608073715417987, 77.442246377558433 ], [ -83.549835187805741, 77.482555216986725 ], [ -83.477358378400339, 77.51361356778088 ], [ -83.250314912708077, 77.584826949403691 ], [ -82.902707477572903, 77.732724904264302 ], [ -82.710369823751421, 77.849509576688035 ], [ -82.664688669665082, 77.888840632875912 ], [ -82.626324410389103, 77.936323544843475 ], [ -82.595288032252029, 77.992134093847483 ], [ -82.703580272711179, 77.96242706146424 ], [ -83.303774387403635, 77.673706347325435 ], [ -83.428205544494062, 77.621312546498643 ], [ -83.779372550077525, 77.532630902490695 ], [ -83.928149411221654, 77.518315716397751 ], [ -84.167827154739641, 77.522710247815382 ], [ -84.485848407105564, 77.561986372360536 ], [ -84.860548128430466, 77.499507121930264 ], [ -85.087877238664888, 77.515371380347943 ], [ -85.289366504163596, 77.5590420363107 ], [ -85.292025195671258, 77.763882132015368 ], [ -85.547534238621282, 77.927699276936352 ], [ -85.265328417309107, 78.010591125801568 ], [ -85.031495400576588, 78.062007143387916 ], [ -84.615421165954615, 78.195688789112467 ], [ -84.524168721067369, 78.197084052837567 ], [ -84.222703865817394, 78.176001288361448 ], [ -84.388125014705835, 78.206367500457333 ], [ -84.549997579474535, 78.251345529516868 ], [ -84.910371128377946, 78.239721993917215 ], [ -84.783193389151492, 78.527607747086677 ], [ -85.024310341708755, 78.312374584579317 ], [ -85.270162401868518, 78.199512031445835 ], [ -85.418994194655369, 78.142416082002171 ], [ -85.585931456882903, 78.10954498699823 ], [ -86.217777184110901, 78.081178286697366 ], [ -86.06261726608264, 78.186954657919927 ], [ -85.920047680565915, 78.34286164628918 ], [ -86.070966875776151, 78.284623118676933 ], [ -86.427044770218828, 78.197040107523407 ], [ -86.693595073355667, 78.1510183772522 ], [ -86.913244739937753, 78.12680450914101 ], [ -87.33933850619195, 78.132649235926465 ], [ -87.551726209606386, 78.176627509088462 ], [ -87.491114635028623, 78.284425364763138 ], [ -87.491290416285324, 78.417173172561434 ], [ -87.361278204294507, 78.478729571394013 ], [ -87.16431530615597, 78.557633382997693 ], [ -86.952905385981936, 78.663904139004728 ], [ -86.807929794514067, 78.774360686187066 ], [ -86.241914147922273, 78.823612397050226 ], [ -85.690993716750086, 78.84371737828593 ], [ -85.229677781183526, 78.9020108375409 ], [ -85.003743934674205, 78.912239109415452 ], [ -84.78726931704135, 78.884586520469981 ], [ -83.907890621386343, 78.839136079283037 ], [ -83.547044660355539, 78.804496185383499 ], [ -83.3886987070495, 78.779348479346083 ], [ -83.271419649841278, 78.770339689939931 ], [ -83.147394986906988, 78.807847015589459 ], [ -82.989785117613394, 78.844123872442054 ], [ -82.441787049833934, 78.84041049339416 ], [ -82.29068108703845, 78.847079194820424 ], [ -82.151055837571548, 78.864097017735219 ], [ -81.981086348665841, 78.8984952124068 ], [ -81.780794592978452, 78.950328710477834 ], [ -81.750098791026247, 78.975773047385957 ], [ -81.889108806094683, 78.97487216844533 ], [ -82.02829460241982, 78.961842382792042 ], [ -82.237375420942499, 78.924071385257434 ], [ -82.438787782141389, 78.903680759479613 ], [ -82.644100289973451, 78.907536960798581 ], [ -83.058537561642353, 78.939518163190456 ], [ -83.778603507079438, 78.945264013018999 ], [ -84.145788579680186, 78.959831884668489 ], [ -84.316142590084922, 78.975278662601482 ], [ -84.411998306632157, 78.996570167319931 ], [ -84.495867938737774, 79.028562356040339 ], [ -84.567751486401789, 79.07129917407687 ], [ -84.530288106066422, 79.101269878345164 ], [ -84.383576674688584, 79.118529400487944 ], [ -84.256662607347195, 79.122143902578927 ], [ -84.053031007782394, 79.098688091137291 ], [ -83.824592278365017, 79.058818704850779 ], [ -83.57587278645525, 79.053677103092127 ], [ -83.6620165885695, 79.090052836901634 ], [ -83.97812621976874, 79.163122908048422 ], [ -84.197391364851796, 79.225085801037096 ], [ -84.381071791780528, 79.301254016833326 ], [ -84.5224328811574, 79.376631216974346 ], [ -84.836444123604721, 79.494734248823391 ], [ -85.089788859831557, 79.612145141974139 ], [ -85.268481493601271, 79.664132448644779 ], [ -85.456951959775225, 79.689862430095047 ], [ -86.031482010988682, 79.721931523115273 ], [ -86.146618734130797, 79.742838506334692 ], [ -86.420738617634512, 79.84520911570857 ], [ -86.494358005208497, 80.018166885978246 ], [ -86.614504494166724, 80.123536763044655 ], [ -86.4985437963838, 80.258229150995277 ], [ -86.307183925802747, 80.319335110357542 ], [ -85.159606977729283, 80.271797266747228 ], [ -84.675417506133925, 80.278927393972339 ], [ -84.056513673930866, 80.261953516371733 ], [ -83.72361693271624, 80.228950585425252 ], [ -83.343775609632686, 80.146992574486319 ], [ -83.004309043948695, 80.054597551430476 ], [ -82.677476756090414, 79.992788467041379 ], [ -82.376978697752321, 79.908248668894572 ], [ -82.048784105154567, 79.78277381059246 ], [ -81.855721353649173, 79.722579716499382 ], [ -81.688366610936967, 79.685808474862284 ], [ -81.46303701249758, 79.654134889669649 ], [ -81.038096810740527, 79.614210571740415 ], [ -80.667813593490337, 79.601037963816054 ], [ -80.475937365467715, 79.606256469874495 ], [ -80.270624857635667, 79.635194459259651 ], [ -80.12448471534212, 79.669504763302854 ], [ -80.287444926636681, 79.67896399217932 ], [ -80.714033077675353, 79.674932009603623 ], [ -81.010169563581428, 79.693125369672657 ], [ -81.179073378618355, 79.733423222772387 ], [ -81.358699850314309, 79.787794562737133 ], [ -81.64423452917535, 79.8902420764108 ], [ -81.860247721009344, 79.957181776229987 ], [ -82.332385190191829, 80.066374895629735 ], [ -82.681299998423754, 80.174897848988309 ], [ -82.961132772770398, 80.277894679089201 ], [ -82.987027549148834, 80.322587063606591 ], [ -82.784813185966215, 80.35375527768619 ], [ -82.53614862569917, 80.375563139846207 ], [ -80.979649542885937, 80.445271394458501 ], [ -80.051074068010465, 80.528569737479813 ], [ -79.674352862233448, 80.625260414996404 ], [ -79.629341874188285, 80.647837320154508 ], [ -78.386161895124104, 80.784375411300545 ], [ -77.507145748311061, 80.834780686660849 ], [ -77.169162336980506, 80.842921556112032 ], [ -76.863006319442206, 80.864784349914771 ], [ -76.850339082630867, 80.878165698081489 ], [ -77.118548321377872, 80.896457935107406 ], [ -77.389427237961073, 80.905400806542303 ], [ -78.003815689132509, 80.904829517457983 ], [ -78.550956823285546, 80.921418873559588 ], [ -78.716224163574367, 80.951653249712933 ], [ -78.68191385953115, 81.001047782847195 ], [ -78.629300332133482, 81.043476983684485 ], [ -78.463934114887763, 81.114382748108056 ], [ -78.286790553442771, 81.167600523575658 ], [ -77.536039792382027, 81.321079533336672 ], [ -77.030723610996375, 81.385679145175942 ], [ -76.885121798801478, 81.430272652736448 ], [ -77.972339857853683, 81.330802434098189 ], [ -78.352137235623047, 81.258918886434174 ], [ -78.733868207216176, 81.151011167474081 ], [ -78.931556203038625, 81.119238705324562 ], [ -79.072477839273731, 81.127654232989329 ], [ -79.198337219074887, 81.117579769714411 ], [ -79.309189274084815, 81.08905926081394 ], [ -79.40215558622495, 81.036863213900943 ], [ -79.477236155495291, 80.961002615303954 ], [ -79.545428296768492, 80.909322925832527 ], [ -79.606655105744736, 80.881780200172471 ], [ -79.761353597974136, 80.841943772871588 ], [ -80.133526463733901, 80.763929853879972 ], [ -81.007016487289278, 80.654868570422735 ], [ -81.300977680143632, 80.627194008820169 ], [ -81.552696439745944, 80.622777504745443 ], [ -82.368200621245578, 80.561308996541214 ], [ -82.613041939179283, 80.55890299059007 ], [ -82.884338336247168, 80.577557776457951 ], [ -82.768322706821536, 80.630687661297202 ], [ -82.336779721609474, 80.72866373925342 ], [ -82.222368096151257, 80.772334395216205 ], [ -82.498421573478737, 80.762776289382856 ], [ -82.779957228749723, 80.73605753836361 ], [ -83.401409889175014, 80.713986004318514 ], [ -83.647141099720784, 80.674094645374907 ], [ -83.885368647870948, 80.601749671912046 ], [ -84.076256106324607, 80.556277258068036 ], [ -84.219792488753214, 80.53777628079979 ], [ -84.417843033417611, 80.526767979598588 ], [ -85.145852094392083, 80.521131993055462 ], [ -85.307395069304448, 80.525987950271968 ], [ -85.726237858719543, 80.581128333234773 ], [ -86.097169269353827, 80.562110998524957 ], [ -86.250340661915601, 80.565780432258663 ], [ -86.531612645301522, 80.604748939604576 ], [ -86.615405373107336, 80.630039467913093 ], [ -86.603078712480865, 80.664020182099961 ], [ -86.440481050028254, 80.728048504854968 ], [ -86.252120447139745, 80.789538985716263 ], [ -85.639314027278658, 80.924626881494447 ], [ -85.246267137285102, 80.987875174922806 ], [ -84.679910914508454, 81.042389337158625 ], [ -83.349191869604937, 81.103319515264161 ], [ -83.288832980583678, 81.147945981810267 ], [ -84.635449242890502, 81.098068050220093 ], [ -85.780861884240778, 81.035083428676785 ], [ -85.966816481178128, 81.011902275448762 ], [ -86.233443688614784, 80.950093191059665 ], [ -87.08025890646509, 80.726290692287904 ], [ -87.329912236301112, 80.669755045599999 ], [ -87.711665180551336, 80.656263834147836 ], [ -88.00364883426775, 80.675391032143125 ], [ -88.231999673056762, 80.703812664086684 ], [ -88.625079522035946, 80.770060225207573 ], [ -88.921446720841459, 80.805633957033365 ], [ -89.061698191035376, 80.829540207945314 ], [ -89.144579053572031, 80.853666185428153 ], [ -89.211782425276255, 80.881934008772106 ], [ -89.263253374505354, 80.914288746334449 ], [ -89.166903273173631, 80.941315114552935 ], [ -88.413065353791993, 80.999762382407511 ], [ -87.388667121354928, 80.988391532364375 ], [ -86.928977162412906, 81.000432548448714 ], [ -86.476757906880863, 81.035720635732361 ], [ -85.809591133383591, 81.123600277756566 ], [ -85.083328898647636, 81.246877870349863 ], [ -84.941220738929758, 81.286230899194805 ], [ -85.206320846698773, 81.294888126087557 ], [ -85.402481742853595, 81.285319033925646 ], [ -85.875036692520766, 81.241186952164014 ], [ -86.622744240574789, 81.122644467173217 ], [ -87.275101443194615, 81.080786555420218 ], [ -88.886795840613388, 81.058517267461355 ], [ -89.398385215597713, 81.025338555258173 ], [ -89.623055634324459, 81.032468682483284 ], [ -89.792289039217707, 81.064823420045656 ], [ -89.980935286648361, 81.124709896939521 ], [ -89.947295148646347, 81.172643248377398 ], [ -89.563366911344389, 81.226487244572013 ], [ -89.262550249478522, 81.239044618097921 ], [ -89.208717239612454, 81.250074891956189 ], [ -89.635711884807264, 81.302062198626857 ], [ -89.673669649927106, 81.328627141046468 ], [ -89.427015587783629, 81.387436957743006 ], [ -88.892289004885427, 81.47409711729884 ], [ -88.621915459415249, 81.501409130059443 ], [ -88.126497960047814, 81.518800488144763 ], [ -87.616688370287633, 81.509341259268297 ], [ -87.597022842193695, 81.525820752084428 ], [ -88.101361240338932, 81.558636915445646 ], [ -88.479038256699283, 81.564635450830707 ], [ -88.978388861685502, 81.541487256588312 ], [ -90.30352685168863, 81.401125923108964 ], [ -90.416334473179404, 81.405366645926961 ], [ -90.609034675842835, 81.429547555052523 ], [ -90.553773443266024, 81.464231394266221 ], [ -89.845210183814615, 81.611656936999452 ], [ -89.821688454401709, 81.63486006288457 ], [ -90.330860837106343, 81.631553177992799 ], [ -90.480362795934383, 81.638529496618304 ], [ -90.626305184314148, 81.655997759003412 ], [ -90.833727067226661, 81.640496049427696 ], [ -91.102760280614461, 81.591969436248434 ], [ -91.29240628394264, 81.571249220614277 ], [ -91.40278592682516, 81.578225539239753 ], [ -91.684068896539628, 81.63568403752538 ], [ -91.647572313116143, 81.683848101862708 ], [ -91.423824745987105, 81.744261922526675 ], [ -91.219457062409845, 81.787723838247103 ], [ -90.941964376043089, 81.827461388591104 ], [ -90.490184573652812, 81.877229456895861 ], [ -90.163011709609648, 81.894016566911233 ], [ -89.633338837841734, 81.894532924352802 ], [ -89.381004843840955, 81.916758266997505 ], [ -89.156356397771305, 81.955408170815645 ], [ -88.87523822298499, 82.018019257188428 ], [ -88.566830008095152, 82.061085665081293 ], [ -88.063194734976747, 82.096483615650357 ], [ -87.638935685589416, 82.08506882029306 ], [ -87.404399543830081, 82.054219209741234 ], [ -87.218181275007666, 82.000111541661568 ], [ -87.018197136519504, 81.958715055707415 ], [ -86.999234733452397, 81.992157439795648 ], [ -86.834022324806284, 82.03333419917891 ], [ -86.626798195807567, 82.051011201806347 ], [ -86.377507414813493, 82.045122529706731 ], [ -86.158352133015896, 82.025533905912596 ], [ -85.874784006964248, 81.975666960650955 ], [ -85.645642152520054, 81.953287809406618 ], [ -85.537976132787918, 81.954639127817558 ], [ -85.403151908894785, 81.982236785120335 ], [ -85.044832803429117, 81.982797087876065 ], [ -85.052248575196387, 81.994530486761164 ], [ -85.169241987862463, 82.023369599189408 ], [ -85.310570118253693, 82.043979951538148 ], [ -86.580600684279645, 82.187230689424581 ], [ -86.615636086006759, 82.218552712103815 ], [ -86.187597739600264, 82.247952127287817 ], [ -85.920025707908835, 82.283064433314735 ], [ -85.794451972649824, 82.291622783250574 ], [ -85.480880183344254, 82.366318831021886 ], [ -85.275974169668345, 82.405199447739449 ], [ -84.896824985283075, 82.449441392786525 ], [ -84.744741239247162, 82.437345445059464 ], [ -84.553381368666109, 82.398332992399389 ], [ -84.368129896755576, 82.373943343031499 ], [ -83.823614495124588, 82.35068528550363 ], [ -83.590682357332682, 82.326449444735374 ], [ -83.175695769236583, 82.187208716767515 ], [ -83.010175743391244, 82.141681371280782 ], [ -82.774189406264071, 82.09493454332565 ], [ -82.633707223170731, 82.077312472340935 ], [ -82.356027769218727, 82.06602951292615 ], [ -82.327452328675534, 82.092462619403221 ], [ -82.657064157655483, 82.158292700039453 ], [ -82.74747065524484, 82.196426246415996 ], [ -82.708590038527291, 82.228726052335645 ], [ -82.638387399130522, 82.245732888921907 ], [ -82.536895696040162, 82.247281961246614 ], [ -82.276574641187835, 82.21844284881837 ], [ -81.584501860881105, 82.120565647819035 ], [ -80.549908315555115, 82.004604950036111 ], [ -80.15336777308454, 81.977633513460347 ], [ -79.90863631843628, 81.936237027506195 ], [ -79.685547931019883, 81.885875697460051 ], [ -79.465634592552732, 81.851125940275097 ], [ -79.424864327325594, 81.854432825166867 ], [ -79.629495682787905, 81.932314908215943 ], [ -80.129835057343087, 82.02837936500552 ], [ -81.46825551855602, 82.192394263840328 ], [ -81.997620773124709, 82.278285380398046 ], [ -82.253679132501929, 82.336315167767964 ], [ -82.447543885991038, 82.395026107507618 ], [ -82.451345155667298, 82.427117173184911 ], [ -82.268895197535514, 82.464635485163001 ], [ -82.023229904960999, 82.494397449188938 ], [ -81.717798985106612, 82.506229725030948 ], [ -81.681159579412054, 82.518633289957222 ], [ -81.95860832046462, 82.5632267975177 ], [ -82.12252434234253, 82.601777824378928 ], [ -82.116844410485228, 82.62865038399778 ], [ -81.785342932995704, 82.64921679103233 ], [ -81.579667876321693, 82.643020501733474 ], [ -81.188862197351142, 82.594493888554211 ], [ -80.862524294277335, 82.571554434554145 ], [ -80.809691040308792, 82.586385978088657 ], [ -81.1466197640991, 82.715574215438664 ], [ -81.178062636392298, 82.744687986080521 ], [ -81.128195691130642, 82.761716795323878 ], [ -81.010169563581428, 82.77903124910938 ], [ -80.657134882145485, 82.769110594434039 ], [ -80.075782320906143, 82.70621386351911 ], [ -79.035069390581086, 82.674639155283387 ], [ -78.74877665505052, 82.679374262885887 ], [ -78.791799117629196, 82.693898189221187 ], [ -79.207203186209981, 82.732756833281627 ], [ -79.642009110999624, 82.784974852851718 ], [ -79.833775475736815, 82.816494629444719 ], [ -79.974312590472877, 82.85897876192476 ], [ -80.141172948400595, 82.894211917565656 ], [ -80.154949804394889, 82.911119877195034 ], [ -79.88633407149176, 82.938508794255455 ], [ -79.180583312147633, 82.933180424911569 ], [ -78.524974156278759, 82.891113772916214 ], [ -77.968670424119949, 82.90636279693544 ], [ -77.618074707620778, 82.895870853175808 ], [ -77.479581049993925, 82.883159671050294 ], [ -77.225873764925126, 82.837214845078904 ], [ -76.421015335784716, 82.670925776235464 ], [ -76.335541699711655, 82.644415765458575 ], [ -76.244025582939344, 82.604106926030283 ], [ -76.146488958124863, 82.549867422008077 ], [ -76.009357605237469, 82.535167714416076 ], [ -75.744312429111176, 82.572433340837648 ], [ -75.565619795341462, 82.608545402762104 ], [ -75.642875657663552, 82.643481927532321 ], [ -76.086976016401508, 82.723638180590029 ], [ -76.187797553450665, 82.757915525647604 ], [ -76.409952102940821, 82.815824463403544 ], [ -76.908456760629136, 82.919414555245822 ], [ -77.041204568427432, 82.967545660597494 ], [ -77.124920391933443, 83.008546638724056 ], [ -75.744927663509642, 83.047174569885101 ], [ -74.41418664594903, 83.013127937726949 ], [ -74.19773400097327, 82.988990973915577 ], [ -74.055889513140457, 82.955350835913549 ], [ -73.916494976572977, 82.904187503883691 ], [ -73.703118503589565, 82.851837648371088 ], [ -73.272036944176349, 82.771593504685029 ], [ -72.658714166873693, 82.721638668795009 ], [ -72.775916319782098, 82.755674314624628 ], [ -73.234650468140799, 82.844246095347131 ], [ -73.441863610810969, 82.904835697267799 ], [ -73.440710046313839, 82.945836675394361 ], [ -73.403784996077135, 82.977158698073595 ], [ -73.3311214190865, 82.998757819991283 ], [ -72.811676819193124, 83.081177256729063 ], [ -72.069209749854636, 83.106039318224362 ], [ -71.983219756340006, 83.101436046564373 ], [ -71.405943122990521, 82.974862555407867 ], [ -71.132010007072054, 82.9230510299939 ], [ -70.940364491948856, 82.90223193740286 ], [ -70.932981679167227, 82.91127368579464 ], [ -71.19833447249276, 82.969556158721076 ], [ -71.402405525199327, 83.001295661884967 ], [ -71.423521248661075, 83.021136971235592 ], [ -71.08482372597517, 83.082682383739609 ], [ -70.870557360379678, 83.098129161672603 ], [ -69.969931105320384, 83.116113781499308 ], [ -69.867670359231951, 83.109609875001183 ], [ -69.782141791516167, 83.092548106772199 ], [ -69.569391539259769, 83.024905281926209 ], [ -69.48888372368863, 83.016797371460683 ] ] ], [ [ [ -91.885547175709789, 81.13287273904777 ], [ -91.754963674634681, 81.04932171046994 ], [ -91.272477083963651, 80.850106614979865 ], [ -91.053915063907425, 80.77770670987428 ], [ -90.682906748973323, 80.687706706441048 ], [ -90.636742196431044, 80.655340982550143 ], [ -90.632479500955924, 80.641695962498375 ], [ -90.643015390029717, 80.593685706760681 ], [ -90.537260991464251, 80.575909827176332 ], [ -90.217613762473803, 80.548257238230832 ], [ -89.861854471558914, 80.498445224611913 ], [ -89.79787009411811, 80.501290683704838 ], [ -89.673856417512354, 80.530745030531563 ], [ -89.52479391182608, 80.538830968340022 ], [ -89.329061482484477, 80.531722813771978 ], [ -89.235578812902773, 80.510640049295858 ], [ -89.166903273173631, 80.479636630144427 ], [ -89.138272900987715, 80.457411287499724 ], [ -89.13416401411223, 80.440261628642389 ], [ -89.204366653508998, 80.406929107839602 ], [ -89.196588332899779, 80.394064117114482 ], [ -89.154686475832605, 80.37852944855311 ], [ -89.147259717736787, 80.360369047469732 ], [ -89.217704056361526, 80.289254542803803 ], [ -89.198324172809748, 80.263162012511572 ], [ -89.019214058555363, 80.19846352371539 ], [ -88.857330507458116, 80.166196676781396 ], [ -88.53756242885369, 80.13112831606864 ], [ -88.329261639657645, 80.133710103276513 ], [ -88.19990860737947, 80.111495746960344 ], [ -88.196810462730028, 80.125184712326273 ], [ -88.255389566527143, 80.166526266637703 ], [ -88.380776534200905, 80.225182274734635 ], [ -88.612511162181505, 80.255383691902352 ], [ -88.646239190811869, 80.289726954931183 ], [ -88.663443781311926, 80.34827309974267 ], [ -88.643624444618382, 80.38687905824662 ], [ -88.524818287742534, 80.418036285997687 ], [ -88.424359299535325, 80.428066803958444 ], [ -88.125234532265253, 80.42948404034064 ], [ -87.960033109947688, 80.415608307389448 ], [ -87.675003802199683, 80.37210244635483 ], [ -87.645527482715877, 80.348426908342304 ], [ -87.630256486039585, 80.301614162415916 ], [ -87.618336319569238, 80.207461326793009 ], [ -87.625499405779991, 80.187202536957699 ], [ -87.869154200230938, 80.133863911876119 ], [ -87.92232803038435, 80.097718890966036 ], [ -87.860705713580529, 80.087512591748578 ], [ -87.651361223172785, 80.079448626597213 ], [ -87.328484013590383, 80.046533586279111 ], [ -87.202064331033469, 80.04322670138734 ], [ -87.076150019589605, 79.966948622305694 ], [ -86.977196158392928, 79.894219127343774 ], [ -87.049541131855804, 79.805416633721848 ], [ -87.144232297577361, 79.662627321634233 ], [ -87.220279663759584, 79.629921021558459 ], [ -87.295184451773224, 79.58015295325373 ], [ -87.24288952790333, 79.571133177519016 ], [ -86.925230824379369, 79.590952514212574 ], [ -86.861026720367676, 79.597731078924284 ], [ -86.648814798209926, 79.646246705774985 ], [ -86.336967862485793, 79.634985719017294 ], [ -86.232246178803479, 79.622428345491386 ], [ -86.180467612375153, 79.605421508905152 ], [ -86.085545733754174, 79.551214963868574 ], [ -86.007048416306617, 79.479441279490004 ], [ -85.948985669951071, 79.486000117630823 ], [ -85.803856269883568, 79.573022826028591 ], [ -85.750935125286659, 79.594523070989396 ], [ -85.67864508346652, 79.615265259280648 ], [ -85.647872377214512, 79.611420044290213 ], [ -85.501391658736082, 79.530340939634783 ], [ -85.175570113103859, 79.387244010347956 ], [ -85.063740274853515, 79.3281815080949 ], [ -85.042141152935827, 79.284565783774838 ], [ -85.181337935589511, 79.233721055272781 ], [ -85.289849902619537, 79.208342636335914 ], [ -86.091643146096146, 79.099973491576947 ], [ -86.450533540646106, 79.03869175095798 ], [ -86.629434914658148, 78.9913077159473 ], [ -86.720830181816481, 78.975487402843811 ], [ -86.91347545283719, 78.982826270311278 ], [ -86.957190054114136, 78.974916113759519 ], [ -87.016461296609535, 78.898703952649129 ], [ -87.080368769750535, 78.866118502187334 ], [ -87.246405153037443, 78.813483002132585 ], [ -87.478766001745058, 78.718143643026934 ], [ -87.617380508985903, 78.676329676588097 ], [ -87.861485742907149, 78.706849697283587 ], [ -87.922306057727269, 78.751344327887182 ], [ -87.956231840271428, 78.851594575852062 ], [ -87.960725248645971, 78.893122897748725 ], [ -87.953177640936175, 78.915029636865654 ], [ -87.922591702269415, 78.950581396034352 ], [ -87.816749413075598, 79.036340676649559 ], [ -87.829416649886937, 79.045327493398617 ], [ -87.878349757222338, 79.038175393516411 ], [ -88.040200349333958, 78.995328712194436 ], [ -88.104074863489316, 78.972806738679054 ], [ -88.163807531783561, 78.933497655148273 ], [ -88.190240638260661, 78.867436861612646 ], [ -88.166598059233763, 78.745532560087355 ], [ -88.189702308161998, 78.696390712509611 ], [ -88.253785562559713, 78.671990076813188 ], [ -88.227890786181277, 78.653027673746067 ], [ -88.037003327727618, 78.626935143453835 ], [ -88.003099517840539, 78.615509361767977 ], [ -87.981983794378792, 78.594734214491098 ], [ -87.973645171013828, 78.564741537565737 ], [ -87.982840728005229, 78.537066975963143 ], [ -88.040255280976666, 78.494429034883524 ], [ -88.147591710852481, 78.477125567426555 ], [ -88.284580241468802, 78.496549396292522 ], [ -88.580661795732169, 78.601919273358931 ], [ -88.709256771340804, 78.596085532902038 ], [ -88.741578549917534, 78.584044516817698 ], [ -88.713958919957676, 78.546416341554163 ], [ -88.623058037583831, 78.46210725630678 ], [ -88.60644670882516, 78.392014480195456 ], [ -88.648381524877976, 78.333721020940487 ], [ -88.732976254667506, 78.241688546726607 ], [ -88.791017028365957, 78.192436835863418 ], [ -88.822426941673527, 78.185877997722599 ], [ -88.969610785178773, 78.184405829697681 ], [ -89.095689891550805, 78.209234932207352 ], [ -89.470016077705225, 78.370206618035439 ], [ -89.655289522272838, 78.438882157764567 ], [ -89.926212384170228, 78.573036215616526 ], [ -89.995382308683844, 78.600677818233464 ], [ -90.037086411837237, 78.606830162218159 ], [ -90.076307604739654, 78.549162923690204 ], [ -90.001007308898423, 78.495780353294435 ], [ -89.757253637490592, 78.370206618035439 ], [ -89.611651825295695, 78.278888255176923 ], [ -89.506831264656483, 78.203291328464985 ], [ -89.489835414398769, 78.171947333128685 ], [ -89.525694790766693, 78.159598699845134 ], [ -89.579483855318585, 78.166596991127705 ], [ -89.651114717426083, 78.19300812494771 ], [ -89.873038554016802, 78.237601632508216 ], [ -89.965202864173222, 78.262463694003486 ], [ -90.025462876237583, 78.291236888460475 ], [ -90.136095204676622, 78.313077709606148 ], [ -90.297220699104315, 78.3280410890832 ], [ -90.45904931855884, 78.330930493490285 ], [ -90.621603035697277, 78.321734936498871 ], [ -90.652386728277833, 78.307727367605168 ], [ -90.46920068613359, 78.268528147359831 ], [ -90.405436035263662, 78.246676339885624 ], [ -90.357942136967537, 78.218738106397979 ], [ -90.326751950230843, 78.184790351196739 ], [ -90.386979003309577, 78.163290106235934 ], [ -90.614417976829444, 78.149831853769427 ], [ -90.918113056773862, 78.158379217376734 ], [ -91.409630409508139, 78.187987372803065 ], [ -91.899192195761557, 78.23687653482429 ], [ -92.35125764269398, 78.312890942020886 ], [ -92.678265711808976, 78.38911408945981 ], [ -92.807613250922884, 78.429730546087342 ], [ -92.848229707550402, 78.460118730840293 ], [ -92.725600308341214, 78.486661700602838 ], [ -92.296737987293909, 78.520785237060807 ], [ -91.866892389841922, 78.542702962506269 ], [ -91.934952695172584, 78.561720297216084 ], [ -92.715547817723362, 78.605017418008373 ], [ -92.972512549205476, 78.612927574560132 ], [ -93.109347271222191, 78.601556724516996 ], [ -93.266600084838089, 78.608280357585983 ], [ -93.38943822428962, 78.642689538586069 ], [ -93.552063352563593, 78.707805507866937 ], [ -93.634405885001584, 78.750926847402496 ], [ -93.623348145321955, 78.767779875389152 ], [ -93.561412718154614, 78.777359953879596 ], [ -93.208334091404481, 78.769175139114253 ], [ -93.159840437210846, 78.775657072955255 ], [ -93.33646764121427, 78.808055755831788 ], [ -93.902274547563707, 78.872215914529306 ], [ -94.114612812499715, 78.928927342473941 ], [ -94.153625265159789, 78.951042821833198 ], [ -94.16967079799845, 78.972806738679054 ], [ -94.162798849494109, 78.994197120354414 ], [ -93.950202405837331, 79.037395364189791 ], [ -93.29388463177736, 79.139513288007151 ], [ -93.068472635873874, 79.15537754642483 ], [ -92.841615937766861, 79.156410261307968 ], [ -92.683638026467037, 79.185809676491971 ], [ -92.54721529177074, 79.282599230965445 ], [ -91.867562555883111, 79.317436878778778 ], [ -91.343646520272301, 79.360887808170673 ], [ -91.299898960009713, 79.372731070341217 ], [ -91.692638232804029, 79.364744009489641 ], [ -92.247953195393862, 79.373445181696582 ], [ -92.484554766919487, 79.439231317018624 ], [ -92.64472445076386, 79.450448358462125 ], [ -92.821922943851561, 79.449910028363462 ], [ -93.028114357967141, 79.429255730700561 ], [ -93.380885367518047, 79.368182730323952 ], [ -93.550459348596149, 79.353966421187891 ], [ -93.933173596593974, 79.290718127759533 ], [ -94.039834367264334, 79.295211536134076 ], [ -94.093370746259708, 79.302759143843872 ], [ -94.10939430644126, 79.315107777127423 ], [ -94.040301286227447, 79.357020620523144 ], [ -93.939688489420632, 79.385694938023249 ], [ -93.960254896455169, 79.39551671574165 ], [ -94.110322651203248, 79.4015591964409 ], [ -94.284109889278014, 79.400427604600878 ], [ -94.404877105798974, 79.390506949925538 ], [ -94.846038621651388, 79.335058949763493 ], [ -95.043704644816756, 79.293563586852457 ], [ -95.103179134390217, 79.289894153118723 ], [ -95.316605045852071, 79.354746450514511 ], [ -95.657049394776493, 79.390397086640121 ], [ -95.732986897673285, 79.418203484185227 ], [ -95.662916094219042, 79.527341671942253 ], [ -95.563489820894986, 79.549764768500751 ], [ -95.302366764058931, 79.568089964512296 ], [ -94.519678745920501, 79.667131716337309 ], [ -94.475519198337508, 79.686192996361314 ], [ -94.40188333127071, 79.736323613508034 ], [ -94.580834143761209, 79.725622929506073 ], [ -94.973062552278222, 79.677206179612256 ], [ -95.296966983579509, 79.653069215800883 ], [ -95.552508985515161, 79.653223024400489 ], [ -95.739369954557404, 79.660155397711833 ], [ -95.857500452227782, 79.67378943143504 ], [ -95.999663543588383, 79.704693973629588 ], [ -96.462737291721993, 79.847527231031364 ], [ -96.589085563143357, 79.9166751828879 ], [ -96.606757072606527, 79.977704237950348 ], [ -96.639210687125782, 80.024154435034774 ], [ -96.773260374856562, 80.135775533042789 ], [ -95.781974936651409, 80.066429827272458 ], [ -95.393833442352786, 80.053257219348097 ], [ -94.645895181399339, 80.048708879330832 ], [ -94.610859779672211, 80.05553138935673 ], [ -94.599802039992582, 80.073614886140291 ], [ -94.612721962360439, 80.102970356010132 ], [ -94.606987098860429, 80.125602192810959 ], [ -94.582591956328258, 80.141411519585915 ], [ -94.304445583413127, 80.181621482057295 ], [ -94.262587671660128, 80.194870994281473 ], [ -94.590139564038054, 80.201517723050642 ], [ -95.19237713583972, 80.134380269317688 ], [ -95.405077949617677, 80.135006490044702 ], [ -95.646222367996288, 80.23093911089174 ], [ -95.90398360829785, 80.21411904189074 ], [ -96.025657196923703, 80.221721581243258 ], [ -96.215105446338086, 80.245902490368792 ], [ -96.308329937199005, 80.266985254844911 ], [ -96.368425154335199, 80.293088771465676 ], [ -96.394111190471293, 80.3150174832397 ], [ -96.385327620800297, 80.332870267123866 ], [ -96.334400494834142, 80.352766508117213 ], [ -96.112163547879916, 80.380419097062713 ], [ -96.01188583409369, 80.383055815913281 ], [ -95.747357015408966, 80.365301908986027 ], [ -95.549070264680864, 80.36662026841131 ], [ -95.614466385339583, 80.396228423837641 ], [ -95.901066738069389, 80.470847567309136 ], [ -96.151824193924099, 80.553486730617834 ], [ -96.132834325035631, 80.69140909916041 ], [ -95.926956021283559, 80.720654705744778 ], [ -95.713634479942854, 80.725455731318561 ], [ -95.505278759104101, 80.690574138191039 ], [ -95.225808533599405, 80.685773112617284 ], [ -95.02574199764716, 80.646420083772341 ], [ -94.892576709364178, 80.570922034017315 ], [ -94.73449442794319, 80.57233927039951 ], [ -94.485390414534379, 80.558079015949261 ], [ -93.927905652057092, 80.559188635132216 ], [ -94.028727189106249, 80.586193030693607 ], [ -94.202151878339066, 80.609703773777966 ], [ -94.596264442201388, 80.640608315972514 ], [ -94.788470260080331, 80.751251630740086 ], [ -95.195865295152473, 80.808292648541027 ], [ -95.514732494816286, 80.838120530538248 ], [ -95.509283275858422, 80.863235277590064 ], [ -95.269759340940055, 81.000795097290677 ], [ -94.980527762523934, 81.049673272983341 ], [ -94.519442539856797, 81.031183282043628 ], [ -94.216285790011042, 81.057198908036042 ], [ -93.82599646848206, 81.105725521215334 ], [ -93.443749139447348, 81.083269465671179 ], [ -93.345097402285646, 81.085334895437484 ], [ -93.286705066073793, 81.100265315928908 ], [ -93.235646104165099, 81.128851742800634 ], [ -93.235387925444314, 81.155153013335195 ], [ -93.285930529911425, 81.179235045503873 ], [ -93.406538444668499, 81.209095886486722 ], [ -93.894419322654684, 81.21325970500493 ], [ -94.11037208968169, 81.224993103890029 ], [ -94.19445046202965, 81.240934266607496 ], [ -94.218636864319478, 81.264961367133424 ], [ -94.231479882387518, 81.289713565343277 ], [ -94.232974023069517, 81.315135929594305 ], [ -94.220136498165743, 81.330747502455466 ], [ -94.179360739774339, 81.339272893405706 ], [ -94.059703142436319, 81.349303411366463 ], [ -93.604902099696417, 81.350588811806119 ], [ -93.332748769002094, 81.364387640457494 ], [ -93.034678689272241, 81.346304143673905 ], [ -92.412572342298589, 81.278265811000324 ], [ -92.211780708662431, 81.243592958115158 ], [ -91.997838439758993, 81.185508239102546 ], [ -91.885547175709789, 81.13287273904777 ] ] ], [ [ [ -98.791613723335018, 79.981109999799031 ], [ -98.768954420712816, 79.850889047565857 ], [ -98.789779006468152, 79.785410529443055 ], [ -98.840629228134489, 79.737048711191932 ], [ -98.885200763037886, 79.725677861148796 ], [ -98.945197103217197, 79.724073857181367 ], [ -99.218432587273114, 79.761844854715974 ], [ -99.301763889280068, 79.784092170017772 ], [ -99.306235324997516, 79.802878791828164 ], [ -99.333003514495203, 79.839573129165444 ], [ -99.515623760719421, 79.887165904418453 ], [ -99.857463373368944, 79.879486460766145 ], [ -99.999884643450329, 79.884034800783382 ], [ -100.056832277458639, 79.898229137262376 ], [ -100.092438968270059, 79.918641735697292 ], [ -100.126029667793631, 80.001269912677429 ], [ -100.120344242772063, 80.030416642304914 ], [ -100.078535769497506, 80.081107562207364 ], [ -100.053267213846084, 80.093357318534032 ], [ -99.802789909369253, 80.140126119146259 ], [ -99.731219472068759, 80.144103170079205 ], [ -99.424854714288116, 80.126426167451768 ], [ -99.153217741035363, 80.124206929085858 ], [ -99.016586266096724, 80.111133198118381 ], [ -98.894681964571447, 80.081777728248568 ], [ -98.823188431570742, 80.037338029287696 ], [ -98.791613723335018, 79.981109999799031 ] ] ], [ [ [ -103.426009652076317, 79.315624134568992 ], [ -103.191654784737949, 79.295310413090959 ], [ -102.914332386463627, 79.231084336422185 ], [ -102.652280984865598, 79.095018657403557 ], [ -102.638949075177337, 79.077605326661171 ], [ -102.637581277273597, 79.054973489860345 ], [ -102.64819956381146, 79.027167092315239 ], [ -102.682850444039531, 78.990989112419527 ], [ -102.73052012359237, 78.969335058859116 ], [ -102.595591529578058, 78.942989843010366 ], [ -102.580787451864893, 78.930113865956685 ], [ -102.592751563649415, 78.900923191015039 ], [ -102.576189673369186, 78.879368014411511 ], [ -102.49456674545084, 78.900659519129988 ], [ -102.424803559195837, 78.933190037949032 ], [ -102.407335296810714, 78.954097021168451 ], [ -102.393173919317377, 79.010325050657144 ], [ -102.188564536512146, 79.038384133758768 ], [ -101.973638991204012, 79.079209330628601 ], [ -101.872614207076793, 79.088404887620015 ], [ -101.703655460397144, 79.078923686086455 ], [ -101.299028980118123, 78.982156104270075 ], [ -101.144572187116694, 78.972905615635938 ], [ -101.08847599357054, 78.961512792935736 ], [ -101.037158852941076, 78.939034764734515 ], [ -101.033670693628324, 78.914722019666414 ], [ -101.115941814930778, 78.858285249935392 ], [ -101.147461591523793, 78.823974945892189 ], [ -101.128136639614723, 78.801650726290603 ], [ -100.916984898161488, 78.782897063465811 ], [ -100.435492570223701, 78.82032748481555 ], [ -100.014765625463298, 78.728635586786538 ], [ -99.781811515014311, 78.619651207629119 ], [ -99.609419540664646, 78.583033774591655 ], [ -99.582134993725376, 78.563269369540819 ], [ -99.631095566882138, 78.544658528987128 ], [ -99.680187975981426, 78.493506183285803 ], [ -99.818297112109249, 78.455394609566355 ], [ -99.847800897414416, 78.438211991723392 ], [ -99.774110098704895, 78.392992263435872 ], [ -99.76863341392567, 78.364548658835218 ], [ -99.778246451401756, 78.325118725690459 ], [ -99.751346425961529, 78.302970287345573 ], [ -99.562469465631452, 78.279360667304303 ], [ -99.131563687474952, 78.117510075192712 ], [ -99.053121301670103, 78.072345278547914 ], [ -99.004572715833746, 78.015963440459615 ], [ -98.999634361153184, 77.996891174107077 ], [ -99.061185266821468, 77.965624083070594 ], [ -99.128361172704345, 77.877162165633536 ], [ -99.166395842124004, 77.856958307440948 ], [ -99.341320165203086, 77.839643853655446 ], [ -99.659132677326667, 77.824065239779912 ], [ -99.955906370288318, 77.793808890969473 ], [ -100.274674692995234, 77.832722466672664 ], [ -100.586049216591988, 77.891806941582814 ], [ -100.680256983857603, 77.930643612986188 ], [ -100.757902860842989, 77.977665099154905 ], [ -100.778238554978117, 77.996045226809173 ], [ -100.809549591328775, 78.071620180864016 ], [ -100.826193879073088, 78.087737124838213 ], [ -100.957606847953286, 78.130221257318226 ], [ -101.074133341656221, 78.193832099588519 ], [ -101.297996265234985, 78.199391181831828 ], [ -101.829487374376939, 78.264111643285105 ], [ -102.056970293210981, 78.279558421218098 ], [ -102.284447718880742, 78.275021067529394 ], [ -102.606989845442556, 78.248917550908629 ], [ -102.667683817484416, 78.255893869534134 ], [ -102.72271433716179, 78.275251780428817 ], [ -102.772064924981862, 78.306903392964358 ], [ -102.78431468130853, 78.330150464163665 ], [ -102.731322125576085, 78.371030592676249 ], [ -103.677234026894141, 78.31955964344715 ], [ -103.9465693643169, 78.260024729066714 ], [ -104.324218914855905, 78.26948395794318 ], [ -104.512634449387136, 78.29465363663769 ], [ -104.763545713841452, 78.351650709124442 ], [ -104.879330630367676, 78.401264968829594 ], [ -104.985420111953729, 78.468028887392052 ], [ -104.995549506871384, 78.518511067052174 ], [ -104.909608951835196, 78.552623617181581 ], [ -104.82013629217208, 78.572882407016891 ], [ -104.727065609910781, 78.579386313515016 ], [ -104.21397110791591, 78.539758626456461 ], [ -103.764361105413087, 78.519543781935312 ], [ -103.570518324581073, 78.53983553075625 ], [ -103.482567271421317, 78.593932212507383 ], [ -103.58795912114482, 78.62300203783505 ], [ -104.020825958946446, 78.63491121797685 ], [ -103.928507840190406, 78.663365808906065 ], [ -103.562718031314759, 78.692666347133155 ], [ -103.371566900976049, 78.736326016767407 ], [ -103.408409553748669, 78.751629972429328 ], [ -103.518377209310785, 78.769142180128625 ], [ -104.008735504383665, 78.764033537355601 ], [ -104.185005652709393, 78.781293059498381 ], [ -104.194563758542756, 78.795608245591353 ], [ -104.154952550977029, 78.813944427931432 ], [ -103.87564162723622, 78.902681003582103 ], [ -103.887144313221896, 78.918775974899205 ], [ -104.007213897880305, 78.947845800226872 ], [ -104.112737583546334, 78.98561679776148 ], [ -104.151931310627404, 78.9899124522222 ], [ -104.394811568915983, 78.956162450934755 ], [ -104.73605791982412, 78.825941498701582 ], [ -104.817444641678776, 78.807077972591372 ], [ -104.895502505984581, 78.808165619117233 ], [ -104.97022601957724, 78.829138520307907 ], [ -104.969528387714689, 78.856483492054167 ], [ -104.89340961039693, 78.890167575370356 ], [ -104.735255917840405, 78.991098975704972 ], [ -104.746780576483161, 79.027112160672516 ], [ -104.901341739605769, 79.051139261198443 ], [ -105.308813678977714, 79.033209573014489 ], [ -105.535670377084728, 79.032539406973285 ], [ -105.570760710454564, 79.060961038916872 ], [ -105.580192473509683, 79.114189800713007 ], [ -105.571046354996724, 79.164210554574282 ], [ -105.514538174130166, 79.242477159122416 ], [ -105.435705773662008, 79.302242786402303 ], [ -105.387668052102953, 79.323578236434912 ], [ -104.847365907468628, 79.310976917594843 ], [ -103.964603422622034, 79.34813268073097 ], [ -103.706375263357344, 79.352054800021222 ], [ -103.426009652076317, 79.315624134568992 ] ] ], [ [ [ -96.204509132457304, 78.53127718082041 ], [ -95.968451384194609, 78.505129718885456 ], [ -95.561111280765189, 78.516599445885504 ], [ -95.412927681362433, 78.497538165861499 ], [ -95.031196709769304, 78.430246903528911 ], [ -94.915389820585986, 78.39050935318491 ], [ -94.887742724804781, 78.360483717273894 ], [ -94.887176928884756, 78.345190747940535 ], [ -95.013860283326721, 78.312583324821645 ], [ -95.267847719773386, 78.262661447917282 ], [ -95.329239323677783, 78.225044258982308 ], [ -95.102745174412718, 78.178066718127752 ], [ -94.987789725691584, 78.136263738017476 ], [ -94.936011159263259, 78.106391910706066 ], [ -94.934302785174651, 78.075652163439685 ], [ -95.087007258773298, 77.992606505974891 ], [ -95.199117248401521, 77.968161924964278 ], [ -95.370531439510771, 77.970798643814845 ], [ -95.451561105687745, 77.963251036105049 ], [ -95.670793291785159, 77.924447323687303 ], [ -96.011578216894449, 77.887390437508088 ], [ -96.476843737572608, 77.87214141348889 ], [ -96.60301073457299, 77.849300836445707 ], [ -96.833981812719784, 77.811892387753062 ], [ -96.989630622368253, 77.806025688310513 ], [ -97.04048084403459, 77.827416069985873 ], [ -97.063837778519343, 77.859067682521413 ], [ -97.051950571034624, 77.880952448981247 ], [ -97.019084969194964, 77.90808868048515 ], [ -97.093319591167415, 77.933489072079112 ], [ -97.426655785523806, 77.982268370814893 ], [ -97.620855622033503, 78.050218812860123 ], [ -97.648398347693558, 78.071642153521111 ], [ -97.65816519376925, 78.090637515573832 ], [ -97.226616715392922, 78.103238834413929 ], [ -97.040942269833451, 78.116938786108392 ], [ -96.958363531331756, 78.138999333824955 ], [ -96.944669072801545, 78.151875310878637 ], [ -97.02733020876731, 78.157401434136318 ], [ -97.323071186845809, 78.203236396822263 ], [ -97.819059975297534, 78.230603341225617 ], [ -97.84273002014578, 78.262353830718041 ], [ -98.049487230181384, 78.325920727674173 ], [ -98.069306566874928, 78.386323562009608 ], [ -98.114317554920092, 78.403022781396629 ], [ -98.254926080791691, 78.429269120288495 ], [ -98.27570122806857, 78.437904374524152 ], [ -98.31735039957924, 78.476861895541504 ], [ -98.323705990641997, 78.498131427602885 ], [ -98.315647518654899, 78.517478352169036 ], [ -98.060363695440032, 78.558358480681619 ], [ -98.095997852072813, 78.586681235668294 ], [ -98.289884578219002, 78.692402675248104 ], [ -98.340811704185157, 78.751212491944642 ], [ -98.332599423598438, 78.773514738889162 ], [ -98.212084892633996, 78.804518158040594 ], [ -98.042845994576481, 78.805221283067425 ], [ -97.595900176745602, 78.79580599950512 ], [ -97.382320456684113, 78.782897063465811 ], [ -97.16933399836401, 78.757672453128578 ], [ -96.935781133009371, 78.720264004435933 ], [ -96.587042106034147, 78.687107264889846 ], [ -96.475344103726343, 78.665200525772917 ], [ -96.265280008798968, 78.595360435218112 ], [ -96.242648171998127, 78.573190024216132 ], [ -96.256496439127957, 78.551118490171035 ], [ -96.204509132457304, 78.53127718082041 ] ] ], [ [ [ -103.003371086149244, 78.146448064577839 ], [ -103.118194698927852, 78.126343083342164 ], [ -103.252244386658631, 78.138120427541423 ], [ -103.271003542647676, 78.150633855753142 ], [ -103.273585329855536, 78.165773016486895 ], [ -103.260050173089212, 78.183493964428521 ], [ -103.110443844139994, 78.24587433790191 ], [ -102.973296011759786, 78.267209787934547 ], [ -102.891799426619684, 78.271241770510215 ], [ -102.825524399677434, 78.250060129077212 ], [ -102.788269759584409, 78.218166817313687 ], [ -103.003371086149244, 78.146448064577839 ] ] ], [ [ [ -101.693580997122211, 77.696601856011313 ], [ -101.831041939865941, 77.687351367377204 ], [ -102.079838336075511, 77.692185351936587 ], [ -102.377826018341281, 77.728121632604342 ], [ -102.458185518477066, 77.770166311942575 ], [ -102.475033053299427, 77.836666558619982 ], [ -102.471544893986689, 77.873492731899802 ], [ -102.447721040538809, 77.880622859124912 ], [ -102.263156214162279, 77.889356990317481 ], [ -101.91785590802138, 77.899585262192033 ], [ -101.639423890564103, 77.89209258612496 ], [ -101.322028858925194, 77.854167779990746 ], [ -101.193197677252854, 77.829767144294294 ], [ -101.127592816351793, 77.812617485436959 ], [ -101.046255532975579, 77.777812796609282 ], [ -101.019564247777708, 77.762464895633173 ], [ -101.002046546914144, 77.735097951229847 ], [ -101.397680717279826, 77.729055470530568 ], [ -101.584541686322069, 77.718332813871541 ], [ -101.693580997122211, 77.696601856011313 ] ] ], [ [ [ -95.484371775884682, 77.791996146759715 ], [ -95.233043030945694, 77.753807668740421 ], [ -94.959906423846661, 77.774066458575732 ], [ -94.666802164618744, 77.776230765298919 ], [ -94.01477455185524, 77.759905081082394 ], [ -93.582863524636963, 77.770759573683961 ], [ -93.471083124865061, 77.764299612500025 ], [ -93.300965320524028, 77.739800099846718 ], [ -93.210767563177001, 77.710213917077454 ], [ -93.128727154773969, 77.660171190559112 ], [ -93.339181264364655, 77.629684128849249 ], [ -93.519582272222976, 77.474392374878448 ], [ -93.543922483112411, 77.466636026926324 ], [ -93.740187749388397, 77.464570597160019 ], [ -93.836180795042438, 77.452221963876468 ], [ -94.408958526853112, 77.474216593621748 ], [ -95.987056731584033, 77.484104289311432 ], [ -96.056122285976485, 77.50348417286321 ], [ -96.263862772416772, 77.594538863836675 ], [ -96.276595927199381, 77.630563035132781 ], [ -96.239132546864013, 77.672574755485385 ], [ -96.194588477781991, 77.700523975301564 ], [ -96.142963719953286, 77.714377735595662 ], [ -95.683921954395359, 77.782284232326731 ], [ -95.484371775884682, 77.791996146759715 ] ] ], [ [ [ -104.558134329052507, 77.141726346563246 ], [ -104.711382625914084, 77.123972439635992 ], [ -105.015572090642991, 77.164588896263524 ], [ -105.215072830675211, 77.182057158648632 ], [ -105.379917197315095, 77.254248323511888 ], [ -105.556341154240442, 77.352641881952792 ], [ -105.695092990588094, 77.461373575553694 ], [ -105.747234105858368, 77.525401898308701 ], [ -105.848132547207342, 77.56343656772836 ], [ -105.883145976277376, 77.626531052557084 ], [ -106.066128771343557, 77.725386036796863 ], [ -106.035586777990972, 77.739855031489412 ], [ -105.86299155656323, 77.754378957824713 ], [ -105.58791586247618, 77.736009816499006 ], [ -105.456090906275577, 77.70094145578625 ], [ -105.289664508325359, 77.642087693775522 ], [ -105.073893015719321, 77.548286420666045 ], [ -105.007200508292399, 77.50674711244082 ], [ -104.994286079088809, 77.449640176668595 ], [ -104.95531757174291, 77.41871366181698 ], [ -104.770186949446355, 77.413231483873489 ], [ -104.542242604813467, 77.337755406775557 ], [ -104.500796680380873, 77.308542759176788 ], [ -104.453720262569419, 77.249139680738864 ], [ -104.456977708982748, 77.220816925752189 ], [ -104.493358935956522, 77.162347685240519 ], [ -104.558134329052507, 77.141726346563246 ] ] ], [ [ [ -89.833246072030093, 77.267607699021482 ], [ -90.094753650365192, 77.210379913635308 ], [ -90.228292473818669, 77.212445343401583 ], [ -90.99320461237275, 77.329493687710396 ], [ -91.147254911218056, 77.387314734837958 ], [ -91.176599394759336, 77.426283242183871 ], [ -91.185069854066825, 77.481522502103559 ], [ -91.182652861787133, 77.55717436045822 ], [ -91.149474149583966, 77.60808500693156 ], [ -91.109132351170047, 77.625751023230464 ], [ -91.019066429765545, 77.643889451656747 ], [ -90.842560075376113, 77.654996629814832 ], [ -90.674875742807586, 77.648646531916341 ], [ -90.422772461706245, 77.628387742081031 ], [ -90.171932608387465, 77.59469267243631 ], [ -89.838958962873022, 77.49139921146471 ], [ -89.719471653627437, 77.442147500601521 ], [ -89.694203097976029, 77.378119177846543 ], [ -89.694576633146525, 77.338952916586862 ], [ -89.712044895531633, 77.31042142135783 ], [ -89.746662816774077, 77.292590610130759 ], [ -89.833246072030093, 77.267607699021482 ] ] ], [ [ [ -94.294964381879581, 76.912463642505088 ], [ -94.107944111073451, 76.903784442955242 ], [ -93.948060071771224, 76.917110859479237 ], [ -93.81093421204811, 76.914144550772335 ], [ -93.608417724830531, 76.873813738686948 ], [ -93.420754753804559, 76.812213394540208 ], [ -93.276575671156124, 76.78430812003819 ], [ -93.230015610786253, 76.770245619501765 ], [ -93.211877182359956, 76.754699964611859 ], [ -93.189239852394849, 76.708030040956544 ], [ -93.189992415900122, 76.686375987396133 ], [ -93.200561263959543, 76.669094492596287 ], [ -93.263655748788281, 76.626489510502267 ], [ -93.31675267464189, 76.573667242862257 ], [ -93.42628087706224, 76.527162114135109 ], [ -93.484546870495848, 76.492027835451097 ], [ -93.534567624357123, 76.447687013447137 ], [ -93.421886345644609, 76.474142092581303 ], [ -92.99537509890574, 76.62041407081739 ], [ -92.716272915407274, 76.602967781089376 ], [ -92.297023631836055, 76.615997566742664 ], [ -91.789427787277504, 76.675785166679645 ], [ -91.548409711677138, 76.685090586956477 ], [ -91.305040561768351, 76.680750987181568 ], [ -91.124249539246719, 76.66193140638552 ], [ -90.738431653435185, 76.581368659171687 ], [ -90.60479395302481, 76.542971440910065 ], [ -90.554652349549556, 76.515791264091973 ], [ -90.542611333465231, 76.495774173484619 ], [ -90.621646981011452, 76.464682863704837 ], [ -90.864060320336918, 76.483601321457769 ], [ -91.263050814072812, 76.500245609202068 ], [ -91.33596707661998, 76.510572758033533 ], [ -91.398083778208289, 76.509748783392723 ], [ -91.443270547510153, 76.498531741949193 ], [ -91.415079628466003, 76.455849855555385 ], [ -91.33390164685369, 76.446500489964365 ], [ -90.854754900060058, 76.437326905630044 ], [ -89.284522906566721, 76.301623775453379 ], [ -89.21908833375808, 76.258216791375673 ], [ -89.236512650829013, 76.238990716423501 ], [ -89.292114459590692, 76.217721184362119 ], [ -89.406581016691618, 76.189145743818926 ], [ -90.312052242638856, 76.157988516067888 ], [ -90.827344010342543, 76.185586173370638 ], [ -91.26039212256515, 76.229970940688787 ], [ -91.407334266842412, 76.220050286013475 ], [ -91.279442416260608, 76.159900137234558 ], [ -91.019769554792376, 76.141552968565918 ], [ -90.802383071890361, 76.105946277754498 ], [ -90.712130382900625, 76.076184313728561 ], [ -90.251385736418356, 76.053475572627917 ], [ -90.17604149526295, 76.030294419399866 ], [ -90.032768784719408, 75.970891340961941 ], [ -89.912545391461379, 75.966321028287609 ], [ -89.79343161738629, 75.924869610690735 ], [ -89.695323703487517, 75.853612283753733 ], [ -89.65006002988585, 75.844109109563078 ], [ -89.511247768731209, 75.856919168645504 ], [ -89.277601519583939, 75.795088111599341 ], [ -89.204883010950567, 75.761986303695977 ], [ -89.204520462108619, 75.737234105486124 ], [ -89.256617632064717, 75.6984853247111 ], [ -89.361207479804506, 75.645816865670696 ], [ -89.625450653947084, 75.583733123068015 ], [ -89.646039033638715, 75.565056364543068 ], [ -89.337279256235462, 75.572340300367813 ], [ -89.280435992348316, 75.564122526616814 ], [ -88.916678654253317, 75.453951623976621 ], [ -88.868866152429419, 75.451930139524507 ], [ -88.83891742081822, 75.463454798167277 ], [ -88.804090759333434, 75.502467250827351 ], [ -88.819636414223325, 75.53859029908034 ], [ -88.864054140527102, 75.588611052941616 ], [ -88.852144960385303, 75.624887909794211 ], [ -88.783930846455021, 75.647475801280876 ], [ -88.714881771555383, 75.658637911081655 ], [ -88.64496477670076, 75.658429170839327 ], [ -88.569027273803968, 75.645124726972426 ], [ -88.201303871104557, 75.512036342989262 ], [ -87.729759663663458, 75.575647185259584 ], [ -87.643659806863383, 75.547093717373457 ], [ -87.572424452583462, 75.493634242677899 ], [ -87.539124890766317, 75.484845179842637 ], [ -87.364640020829, 75.591324676092 ], [ -87.256941042111237, 75.617713837254911 ], [ -86.814433701012163, 75.491360072669266 ], [ -86.544741307911721, 75.46337789386746 ], [ -86.436525971752374, 75.436274621349185 ], [ -86.236333093021884, 75.406358848723613 ], [ -85.951490552859127, 75.395009971337572 ], [ -85.904545970990199, 75.441954553206472 ], [ -86.068747637410254, 75.502269496913556 ], [ -85.972990797819918, 75.52872457604775 ], [ -85.581251280923112, 75.579778044792164 ], [ -85.372302298342973, 75.572625944909959 ], [ -84.986770057073585, 75.644948945715726 ], [ -84.750223417190668, 75.654715791791432 ], [ -84.604852317895194, 75.653474336665937 ], [ -84.127650151253889, 75.762634497080086 ], [ -84.014271240678823, 75.779926978208493 ], [ -83.931972653555007, 75.818961403525662 ], [ -83.744600820235462, 75.812842018526595 ], [ -83.237131318455155, 75.75082419389517 ], [ -83.093397182112767, 75.756460180438296 ], [ -82.553485052141752, 75.818236305841737 ], [ -82.353852476166992, 75.833331521261329 ], [ -82.153659597436487, 75.831035378595601 ], [ -81.647365632810406, 75.794912330342612 ], [ -81.268546038281471, 75.75599875463945 ], [ -81.150805555274403, 75.735531224561782 ], [ -81.192663467027401, 75.684367892531952 ], [ -81.173514296375046, 75.669228731798171 ], [ -81.124394421454397, 75.658176485282809 ], [ -81.000765266347685, 75.643136201505939 ], [ -80.52771593189604, 75.642158418265524 ], [ -80.321985943579307, 75.629073700969514 ], [ -80.158355566243557, 75.581173308517265 ], [ -80.119189304983863, 75.562057096850538 ], [ -80.125748143124682, 75.542160855857162 ], [ -80.286620951995872, 75.490382289428851 ], [ -80.260473490060917, 75.479450892527467 ], [ -80.099600681189742, 75.467409876443156 ], [ -79.737711018947238, 75.461488245357884 ], [ -79.66019148474011, 75.449502160916268 ], [ -79.585759108853864, 75.384858603762808 ], [ -79.507833080490599, 75.295352985114079 ], [ -79.50909650827316, 75.259801225945381 ], [ -79.634439530632747, 75.199332473638691 ], [ -79.977125090580159, 75.118615917825224 ], [ -80.357570661733632, 75.051544382063526 ], [ -80.381982283758617, 75.034174996635301 ], [ -80.260627298660538, 75.002138862600731 ], [ -80.135229344658242, 74.98808734839281 ], [ -80.036429292061186, 74.990899848500106 ], [ -79.732986897673285, 75.021419869195597 ], [ -79.664069658716173, 75.020848580111306 ], [ -79.524828930748313, 74.989691352360268 ], [ -79.460416086494277, 74.958808782822814 ], [ -79.401430488541038, 74.91762103711099 ], [ -79.507953930104577, 74.880135684118528 ], [ -79.944495694804203, 74.833619569062847 ], [ -80.202432716362466, 74.894813419053463 ], [ -80.289202739203731, 74.908326603162692 ], [ -80.347748884015218, 74.902998233818806 ], [ -80.314570171812051, 74.876158633185582 ], [ -80.189721534236952, 74.827708924306108 ], [ -80.148929296352719, 74.7957167355857 ], [ -80.192226417145008, 74.780160094367261 ], [ -80.212671974565566, 74.74946429241507 ], [ -80.210265968614408, 74.70360735707203 ], [ -80.220604103774406, 74.657014337716504 ], [ -80.26274766006955, 74.584493582996942 ], [ -80.277733012203697, 74.5815712196042 ], [ -81.226226700729612, 74.566640799112776 ], [ -81.340484517588195, 74.553534109159671 ], [ -81.607188629324654, 74.502348804472746 ], [ -81.808820717094434, 74.476618823022477 ], [ -81.940184247496177, 74.47271867638932 ], [ -82.068504564891214, 74.482068041980341 ], [ -82.414760681615462, 74.53518694049103 ], [ -82.645385690413107, 74.525222340501557 ], [ -82.735792188002463, 74.530287037960363 ], [ -82.931052205216673, 74.56557512524401 ], [ -82.978392294913178, 74.583460868113804 ], [ -83.057614710044646, 74.629757256598623 ], [ -83.11701778848257, 74.693115413312398 ], [ -83.112282680880057, 74.732127865972501 ], [ -83.087321742427875, 74.788355895461166 ], [ -83.10264767074689, 74.816568787162396 ], [ -83.158304411151278, 74.81672259576203 ], [ -83.220311249454156, 74.828401063004407 ], [ -83.40704587571814, 74.8848378327354 ], [ -83.522083721903357, 74.901471134151166 ], [ -83.54355100787852, 74.892275577159779 ], [ -83.509779033933967, 74.848198427040842 ], [ -83.487322978389841, 74.834135926504416 ], [ -83.364210180724712, 74.801924011213117 ], [ -83.34131467203882, 74.764581480491756 ], [ -83.393719459194145, 74.670175959312331 ], [ -83.412220436462405, 74.654981866935856 ], [ -83.531894513293238, 74.585680106479714 ], [ -83.621861557740829, 74.565915701428878 ], [ -83.86805419408546, 74.564388601761237 ], [ -84.24515992136152, 74.5151918225408 ], [ -84.42553346339848, 74.508083667972755 ], [ -84.667100855426042, 74.519586353958431 ], [ -84.818283722521343, 74.542009450516929 ], [ -84.916314732120298, 74.567695486653008 ], [ -85.011544227940519, 74.60418108374796 ], [ -85.061422159530707, 74.606916679555439 ], [ -85.086767619481932, 74.527694264423957 ], [ -85.133459515794343, 74.517411060906682 ], [ -85.21432988020743, 74.518652516032176 ], [ -85.339277394739412, 74.543305837285118 ], [ -85.442329156483027, 74.600566581656949 ], [ -85.474420222160333, 74.600335868757526 ], [ -85.488680476610568, 74.567003347954739 ], [ -85.51172979389608, 74.545118581494904 ], [ -85.543502256045599, 74.534758473677812 ], [ -85.807987129416148, 74.498965015281158 ], [ -85.955621412391707, 74.498756275038829 ], [ -86.109880451479341, 74.539735280508296 ], [ -86.210932701427936, 74.535604420975716 ], [ -86.340560391919709, 74.513488941616458 ], [ -86.655428567993482, 74.55540178501218 ], [ -86.730772809148874, 74.557049734293798 ], [ -86.666129251995429, 74.489099292248568 ], [ -86.770147810650911, 74.478607348488964 ], [ -86.994741325077854, 74.480310229413277 ], [ -87.363761114545468, 74.502194995873111 ], [ -87.592584365461889, 74.470334643095242 ], [ -88.005835113648018, 74.489351977805086 ], [ -88.423040940110042, 74.494163989707403 ], [ -88.500736255573884, 74.509720630925841 ], [ -88.555667898294359, 74.541471120418265 ], [ -88.55784319134608, 74.569716971105123 ], [ -88.537639333153493, 74.60878435540792 ], [ -88.476610278091044, 74.66691301973475 ], [ -88.374723067173107, 74.744124936742651 ], [ -88.33954484317492, 74.784840270327066 ], [ -88.431412522460633, 74.803703796437276 ], [ -88.488189868376523, 74.828895447788881 ], [ -88.534947682660189, 74.8317628795389 ], [ -88.68202166287999, 74.802000915512934 ], [ -88.777833434113049, 74.715175961028962 ], [ -88.85109027284507, 74.689984309677328 ], [ -88.8834120514218, 74.711100033139104 ], [ -88.90780170078969, 74.763812437493669 ], [ -88.940145452023515, 74.789487487301216 ], [ -88.980377387151989, 74.788092223576115 ], [ -89.019620552711487, 74.774040709368222 ], [ -89.057863962373489, 74.747267026706254 ], [ -89.115278515344926, 74.737610043915993 ], [ -89.19194111592563, 74.744893979740738 ], [ -89.219121292743722, 74.731798276116166 ], [ -89.19683003212775, 74.698235042413955 ], [ -89.189073684175611, 74.666869074420561 ], [ -89.195819289901692, 74.63756853619347 ], [ -89.261891069765881, 74.609190849564072 ], [ -89.449988000769338, 74.567904226895365 ], [ -89.558719694370239, 74.554720632642443 ], [ -89.844386209173805, 74.548579274986281 ], [ -90.015333481319928, 74.560872976627138 ], [ -90.361644529686899, 74.610432304689539 ], [ -90.553246099495908, 74.612761406340894 ], [ -90.784090834864443, 74.6959059407626 ], [ -90.966793478552745, 74.71507708407205 ], [ -90.957542989918622, 74.745157651625789 ], [ -90.87765040874595, 74.80106707758668 ], [ -90.880243182282356, 74.817755310645168 ], [ -91.129852566804203, 74.736291684490709 ], [ -91.163712431377107, 74.710276058498295 ], [ -91.134587674406717, 74.649862237834299 ], [ -91.167711454967161, 74.64552263805939 ], [ -91.339449742768451, 74.667220636933962 ], [ -91.508364544133912, 74.650686212475108 ], [ -91.54913480936105, 74.655542169691614 ], [ -91.665765673185163, 74.699157894011648 ], [ -91.871034235703036, 74.743498716015637 ], [ -91.961583555563479, 74.793211852677672 ], [ -92.102516178127132, 74.948393743362999 ], [ -92.174163519727443, 75.051082956264651 ], [ -92.165220648292546, 75.072011912141164 ], [ -92.060504457774513, 75.100993846840481 ], [ -92.07633575720655, 75.123559765670052 ], [ -92.206820381324761, 75.181248976855102 ], [ -92.347456373017735, 75.229775590034365 ], [ -92.389237380470931, 75.26331685107948 ], [ -92.408359085301925, 75.297264606280748 ], [ -92.42711824129097, 75.346406453858492 ], [ -92.427997147574487, 75.38273824235381 ], [ -92.41110017427367, 75.406248985438168 ], [ -92.330691235659444, 75.479450892527467 ], [ -92.110448307335972, 75.610627655343961 ], [ -92.080730288624181, 75.634457001956122 ], [ -92.068876040125105, 75.657912813397758 ], [ -92.099176334249719, 75.727313450810811 ], [ -92.141863713807808, 75.796845924166377 ], [ -92.185116889285908, 75.846537088171317 ], [ -92.30660920349078, 75.915157696257751 ], [ -92.473727740139282, 75.986469954837474 ], [ -92.708884609461379, 76.114449696047643 ], [ -92.883314547755973, 76.213952873671502 ], [ -93.091730693401729, 76.353995603623076 ], [ -93.192288558565835, 76.366036619707415 ], [ -93.308589832533627, 76.359631590166202 ], [ -93.55994055012971, 76.31141259418618 ], [ -93.644458375619436, 76.288517085500274 ], [ -93.665184084417859, 76.273125239210003 ], [ -93.852325204837982, 76.269664545718598 ], [ -94.382580352018735, 76.282320796201418 ], [ -94.585333045300018, 76.297152339735931 ], [ -94.736719159473367, 76.293274165759868 ], [ -94.996622733841036, 76.257722406591171 ], [ -95.273895693636902, 76.264391108017435 ], [ -95.447424752990884, 76.363037352014885 ], [ -95.841663659631479, 76.416167236854108 ], [ -95.959277799860288, 76.445984132522796 ], [ -96.039714204295876, 76.486699466107211 ], [ -96.013072357576448, 76.513319340169545 ], [ -95.788874350977096, 76.537192632095866 ], [ -95.695704791758899, 76.563438970987704 ], [ -95.651001420912976, 76.584675544063458 ], [ -95.873188929388746, 76.56638330703754 ], [ -95.971346281765975, 76.569646246615122 ], [ -96.639705071910271, 76.702910411855015 ], [ -96.845660279962161, 76.726432141267907 ], [ -96.880723147510636, 76.738308362424078 ], [ -96.898010135474763, 76.753996839585056 ], [ -96.89754321651165, 76.773508559079346 ], [ -96.878009524360237, 76.802809097306465 ], [ -96.67941515643291, 76.765752211127221 ], [ -96.590272086626115, 76.763016615319742 ], [ -96.451163194600781, 76.774068861835104 ], [ -96.401576400717005, 76.797228042406061 ], [ -96.433206040595465, 76.810708267529662 ], [ -96.661018549285814, 76.855158952819068 ], [ -96.77114001344755, 76.888897967777979 ], [ -96.813514282642132, 76.913474384731131 ], [ -96.769799681365171, 76.94824611457318 ], [ -96.758324461200871, 76.971789816643195 ], [ -96.685100581454478, 76.985017356210278 ], [ -96.550122548961724, 76.987961692260086 ], [ -96.377291121470293, 77.004605980004413 ], [ -96.061236421913762, 77.050023462205701 ], [ -95.849518884540501, 77.06622829680822 ], [ -95.638240800309006, 77.063767359214353 ], [ -95.126437191918058, 77.017317162129928 ], [ -94.616133217373388, 76.958353536833755 ], [ -94.294964381879581, 76.912463642505088 ] ] ], [ [ [ -89.726458958581489, 76.507419681741368 ], [ -89.773282690836425, 76.493829593332322 ], [ -89.924124981746843, 76.500860843600549 ], [ -89.974134749279571, 76.487523440748021 ], [ -90.054291002337294, 76.495125980100539 ], [ -90.164571768262917, 76.52360254368682 ], [ -90.29350732005642, 76.57951196964774 ], [ -90.440987794432345, 76.662810312669052 ], [ -90.556223394531358, 76.734562024390527 ], [ -90.562474615472951, 76.754282484127202 ], [ -90.524802494895255, 76.787823745172318 ], [ -90.409522949482067, 76.810147964773904 ], [ -90.136303944918964, 76.836965592750062 ], [ -89.948767316671251, 76.836240495066136 ], [ -89.77456809127608, 76.782033950029586 ], [ -89.725316380412906, 76.763423109475866 ], [ -89.695400607787334, 76.741153821517003 ], [ -89.694444797204, 76.719818371484365 ], [ -89.70866110634006, 76.701163585616484 ], [ -89.78756491794374, 76.659613291062726 ], [ -89.82210593488638, 76.630620370034848 ], [ -89.82193015362968, 76.602198738091289 ], [ -89.804791481100892, 76.561065924022188 ], [ -89.772964087308637, 76.533929692518285 ], [ -89.726349095296044, 76.520812016236619 ], [ -89.726458958581489, 76.507419681741368 ] ] ], [ [ [ -101.226118210735237, 76.579358161048106 ], [ -101.485219783119177, 76.575018561273197 ], [ -101.605009216399722, 76.587004645714785 ], [ -101.61306768838682, 76.604571785056805 ], [ -101.509455623887447, 76.627730965627762 ], [ -101.165034224030066, 76.665447031519648 ], [ -100.962177160627618, 76.734177502891498 ], [ -100.886470370630263, 76.742658948527549 ], [ -100.621579003103591, 76.752502698903044 ], [ -100.467248552880406, 76.750349378508417 ], [ -100.269143076573286, 76.734122571248776 ], [ -100.746559476621215, 76.649176278945845 ], [ -101.226118210735237, 76.579358161048106 ] ] ], [ [ [ -97.700929477627142, 76.466495607914624 ], [ -97.689767367826349, 76.421847168711423 ], [ -97.701835849732035, 76.387383056068586 ], [ -97.737129430179934, 76.363147215300302 ], [ -97.738782872625833, 76.335241940798312 ], [ -97.706823642891052, 76.30371117787675 ], [ -97.573158476659316, 76.224236077188777 ], [ -97.53067983734357, 76.181554190794969 ], [ -97.524274807802371, 76.138707509472994 ], [ -97.531042386185533, 76.109406971245903 ], [ -97.613467316087608, 76.052618639001452 ], [ -97.650002351660987, 75.979131087370007 ], [ -97.652172151548456, 75.94019553900975 ], [ -97.603030303970712, 75.879353251532535 ], [ -97.601657012902706, 75.851052469202955 ], [ -97.694238803543797, 75.802613746652042 ], [ -97.890504069819784, 75.760338354414358 ], [ -97.862807535560123, 75.738069066455466 ], [ -97.439548242070302, 75.684576632774281 ], [ -97.407539573857079, 75.672513644032847 ], [ -97.409605003623369, 75.552103483189569 ], [ -97.336018575035027, 75.419839073847214 ], [ -97.363484396395265, 75.417257286639341 ], [ -97.465234278206395, 75.458653772593493 ], [ -97.653309236552772, 75.507773647514142 ], [ -97.878232340836021, 75.416125694799319 ], [ -97.852727579120909, 75.26031758338695 ], [ -97.704884555903021, 75.190807082688451 ], [ -97.659923006336314, 75.151179395629924 ], [ -97.674342562550436, 75.127273144717975 ], [ -97.799350501889421, 75.116660351344365 ], [ -97.842702554324418, 75.121823925760083 ], [ -97.970863569955569, 75.15328877071039 ], [ -98.045328904827443, 75.200815627992142 ], [ -98.068735277790637, 75.19915669238199 ], [ -98.091680224954985, 75.17623921103899 ], [ -98.076744311299279, 75.152981153511149 ], [ -97.989979781622296, 75.110716747601998 ], [ -97.953345869092004, 75.06016864997062 ], [ -97.991814498489148, 75.045809518563487 ], [ -98.120958790524995, 75.03273578759601 ], [ -98.295158015920165, 75.032164498511719 ], [ -98.568629706039786, 75.009323921468564 ], [ -98.703530834232723, 75.005808296334436 ], [ -98.834811967170396, 75.018156929618016 ], [ -99.010049400612985, 75.021101265667824 ], [ -99.155805021407488, 75.015728951009777 ], [ -99.244942598050017, 75.025759468970534 ], [ -99.326126072826597, 75.049424020654499 ], [ -99.420592018813011, 75.043744088797212 ], [ -99.626882309885474, 74.983747748617901 ], [ -99.9466339089971, 75.002809028641906 ], [ -100.234393319388317, 75.007719917501106 ], [ -100.292269298158601, 75.027715035451365 ], [ -100.356660169755543, 75.066738474440001 ], [ -100.483497332797128, 75.188434035722935 ], [ -100.459497698092548, 75.219074906032432 ], [ -100.152072759607407, 75.235664262134009 ], [ -100.14571716854465, 75.246156205893612 ], [ -100.364125380001255, 75.289563189971346 ], [ -100.614888329020232, 75.32144551540631 ], [ -100.731156644002397, 75.346516317143937 ], [ -100.704234645905089, 75.394317832639274 ], [ -100.711936062214491, 75.406358848723613 ], [ -100.27963502033289, 75.460971887916315 ], [ -99.965261229043605, 75.568517058034445 ], [ -99.7702374178931, 75.612231659311419 ], [ -99.75602660192132, 75.633424287072984 ], [ -99.59117674211717, 75.655385957832607 ], [ -99.209440277359761, 75.668613497399718 ], [ -99.194559295346792, 75.698375461425655 ], [ -99.91513610506118, 75.68126974788251 ], [ -100.901741367306556, 75.620394501419668 ], [ -101.206842697304623, 75.590445769808468 ], [ -101.461319025371495, 75.607892059536482 ], [ -102.541384984541494, 75.513629360628158 ], [ -102.587428687469796, 75.513684292270881 ], [ -102.70039011756019, 75.543611051224985 ], [ -102.797492782397171, 75.599674285785511 ], [ -102.727855938920428, 75.638741670088308 ], [ -102.410691620180941, 75.712844456118233 ], [ -102.252071008661289, 75.777751685156744 ], [ -102.270648890229353, 75.812787086883873 ], [ -102.144718099292675, 75.875057597071788 ], [ -101.942844312294923, 75.883813700921451 ], [ -101.599658874398742, 75.83268332787722 ], [ -101.421246392006907, 75.781937476332047 ], [ -101.26141179118315, 75.758196020348265 ], [ -101.119380535765075, 75.762898168965137 ], [ -100.972795447165495, 75.79842795547674 ], [ -101.009901771823166, 75.802405006409685 ], [ -101.25882451081101, 75.783640357256388 ], [ -101.288026172081217, 75.78912253519988 ], [ -101.414995171065328, 75.845866922130142 ], [ -101.470289362627753, 75.881935038740409 ], [ -101.505890560274892, 75.918080059650464 ], [ -101.507879085741379, 75.943579328201309 ], [ -101.431320855281854, 75.991974105438061 ], [ -101.716811588828705, 76.007915268155529 ], [ -101.823389962034966, 76.041357652243761 ], [ -101.872119822292305, 76.083105700711343 ], [ -101.861375192976183, 76.101244129137626 ], [ -101.771402655364312, 76.150078359516129 ], [ -101.528939877560404, 76.217259758563273 ], [ -101.55702642648339, 76.235859612788431 ], [ -101.909791942870015, 76.234365472106418 ], [ -101.987437819855401, 76.243099603298987 ], [ -102.13774178066717, 76.28484765176654 ], [ -102.104667438585167, 76.331209958222644 ], [ -101.964207228148908, 76.39900659166824 ], [ -101.858480295404817, 76.439007813897291 ], [ -101.787530585667042, 76.451279542881053 ], [ -101.677249819741419, 76.45104882998163 ], [ -101.41519841814339, 76.424901368046676 ], [ -101.33974980686682, 76.410476318668287 ], [ -101.139040570694746, 76.345162595473624 ], [ -101.087882731829154, 76.307853023737891 ], [ -101.094183391249203, 76.271938715727231 ], [ -101.055813638808942, 76.24554955456432 ], [ -100.900087924860671, 76.20707543200291 ], [ -100.230674447176128, 76.007662582599039 ], [ -100.105721439479865, 75.96045432884506 ], [ -100.020115967464278, 75.939547345625641 ], [ -99.865472406877601, 75.924199444649531 ], [ -99.774835196388807, 75.927385479927324 ], [ -99.701248767800465, 75.941458966792311 ], [ -99.688894641352618, 75.959707258504039 ], [ -99.978334960011082, 76.029470444759056 ], [ -100.050993043837451, 76.066626207895183 ], [ -100.11285156670499, 76.11721825084075 ], [ -100.085797732665156, 76.133543935057276 ], [ -100.001746826138557, 76.139223866914563 ], [ -99.790183097364917, 76.132610097131021 ], [ -99.54105161813473, 76.146288076168418 ], [ -99.81723693140475, 76.16760155354396 ], [ -99.997610473441696, 76.195869376887913 ], [ -100.182768561559612, 76.197231681627386 ], [ -100.4142285313266, 76.242528314214695 ], [ -100.41438233992622, 76.256689691708033 ], [ -100.357643446160239, 76.271158686400611 ], [ -100.042725831608024, 76.291263667636315 ], [ -99.983092040270677, 76.29988793554341 ], [ -99.977714232448349, 76.312445309069318 ], [ -100.081897586031999, 76.34275658952248 ], [ -100.174655157929791, 76.359269041324239 ], [ -100.650698266909714, 76.395952392332987 ], [ -100.819887726488773, 76.436986329445176 ], [ -100.87363284572649, 76.456574953239311 ], [ -100.890787997748092, 76.475482424663682 ], [ -100.829731476864282, 76.523855229243338 ], [ -100.573750021786864, 76.584598639763641 ], [ -100.387949233449135, 76.613569588134425 ], [ -100.068692019121997, 76.634751229567428 ], [ -99.814083855112585, 76.632246346659372 ], [ -99.669053332001994, 76.624105477208218 ], [ -99.329515355182451, 76.521273442035465 ], [ -99.169653288537333, 76.453674562503664 ], [ -98.890342364796524, 76.465561769988369 ], [ -98.971009482131535, 76.536566411368852 ], [ -99.02361202320067, 76.61454737137484 ], [ -98.940852010278007, 76.643177743560756 ], [ -98.710814770057468, 76.693868663463206 ], [ -98.527595768927583, 76.667358652686318 ], [ -98.288698054736244, 76.598738044599884 ], [ -98.236194390624007, 76.575326178472437 ], [ -97.967347944821455, 76.532896977635119 ], [ -97.808392250281216, 76.518790531784504 ], [ -97.725890416079338, 76.496103763340955 ], [ -97.700929477627142, 76.466495607914624 ] ] ], [ [ [ -104.02284195023428, 76.583126471738723 ], [ -103.973491362414208, 76.577578375823975 ], [ -103.821099999179069, 76.597496589474417 ], [ -103.722761372380873, 76.601056159922706 ], [ -103.613150772496425, 76.563438970987704 ], [ -103.584602797774593, 76.538840581377485 ], [ -103.190127685070323, 76.477448977473074 ], [ -103.051326410244215, 76.449851320170325 ], [ -103.033550530659866, 76.431515137830218 ], [ -103.082950556958394, 76.405158935652935 ], [ -103.199510009646971, 76.370837645281171 ], [ -103.311389286375771, 76.347535642439169 ], [ -103.472207163604239, 76.329034665170894 ], [ -104.270660563203435, 76.326244137720693 ], [ -104.357501997180236, 76.334615720071298 ], [ -104.407676559641118, 76.365157713423883 ], [ -104.506432666923985, 76.47895410448362 ], [ -104.576607840499406, 76.540180913459864 ], [ -104.603040946976492, 76.582719977582599 ], [ -104.585704520533909, 76.606483406223475 ], [ -104.500384693060468, 76.630356698149797 ], [ -104.205105140780816, 76.666117197560823 ], [ -104.074494173884347, 76.666095224903728 ], [ -103.992486724466943, 76.65697657221213 ], [ -103.959077299364353, 76.638783212143125 ], [ -103.969201201117741, 76.614129890890183 ], [ -104.02284195023428, 76.583126471738723 ] ] ], [ [ [ -102.227346276272812, 76.014891586781033 ], [ -102.017875443086822, 75.95349998287665 ], [ -102.008031692711313, 75.939393537026007 ], [ -102.047461625856059, 75.927715069783659 ], [ -102.318115322704116, 75.895162578307492 ], [ -102.423457733949178, 75.869168924972172 ], [ -102.511359348630478, 75.808392555466241 ], [ -102.579600928382135, 75.780234595407705 ], [ -102.943556020390915, 75.763436499063801 ], [ -103.314745609745984, 75.764216528390421 ], [ -103.244751710591558, 75.822971413444236 ], [ -103.041510125690067, 75.918827129991485 ], [ -103.201575439413261, 75.958520735021295 ], [ -103.76978285854959, 75.89237205085729 ], [ -103.985274199777749, 75.933087384441706 ], [ -103.800764305043941, 76.037018052468852 ], [ -103.984527129436756, 76.046521226659479 ], [ -104.242469644159286, 76.046982652458354 ], [ -104.406050583016594, 76.108484119648182 ], [ -104.35063004867591, 76.182323233793056 ], [ -104.012042389275436, 76.222994622063283 ], [ -103.571424696685952, 76.258183832390017 ], [ -103.098249019456048, 76.311467525828903 ], [ -102.728015240684314, 76.30701806276852 ], [ -102.584066870935303, 76.281650630160215 ], [ -102.536139012661693, 76.196429679643671 ], [ -102.490045871254935, 76.09504783983877 ], [ -102.425682465479355, 76.086412585603114 ], [ -102.227346276272812, 76.014891586781033 ] ] ], [ [ [ -79.063106501025629, 75.925858380259683 ], [ -79.051757623639574, 75.866993631920423 ], [ -79.124410214301676, 75.869685282413741 ], [ -79.355639471169241, 75.831134255552513 ], [ -79.544516431499332, 75.825630104951927 ], [ -79.63877913040767, 75.842911599751773 ], [ -79.698742511601338, 75.883275370822787 ], [ -79.551262037225399, 75.958355940093128 ], [ -79.381786933104195, 76.010859604205365 ], [ -79.178342101124642, 76.092356189345452 ], [ -79.009328422802284, 76.145892568340827 ], [ -78.925898243838418, 76.134686513225859 ], [ -78.845159715367856, 76.106308826596461 ], [ -78.946420705558793, 76.025438462183388 ], [ -79.056613580856066, 75.985184554397819 ], [ -79.063106501025629, 75.925858380259683 ] ] ], [ [ [ -94.526550694424827, 75.749330053213185 ], [ -94.624345497960093, 75.748868627414311 ], [ -94.751446332886729, 75.769665747348284 ], [ -94.787333175076014, 75.791418677865607 ], [ -94.814722092136449, 75.821191628220106 ], [ -94.833635056725115, 75.858962625754714 ], [ -94.860095629023562, 75.889218974565125 ], [ -94.894098315867538, 75.911883770351608 ], [ -94.901206470435568, 75.930769269118912 ], [ -94.881359667920663, 75.945930402509759 ], [ -94.839787400709795, 75.954433820802876 ], [ -94.744805097281827, 75.957224348253078 ], [ -94.537894078646616, 75.996445541155509 ], [ -94.498672885744185, 75.992204818337484 ], [ -94.471283968683764, 75.971440657389138 ], [ -94.44337869418176, 75.917069317424421 ], [ -94.413765045591148, 75.884846415804589 ], [ -94.332246487793967, 75.825970681136795 ], [ -94.296304713961959, 75.788056861331114 ], [ -94.304006130271361, 75.776334448774548 ], [ -94.329532864643568, 75.765919409314762 ], [ -94.526550694424827, 75.749330053213185 ] ] ], [ [ [ -96.078572848356345, 75.510124721822592 ], [ -96.156399999762712, 75.477253626818651 ], [ -96.23660019813461, 75.474825648210413 ], [ -96.344502423930436, 75.505938930647289 ], [ -96.461627672539038, 75.494260463404913 ], [ -96.621978630804378, 75.431308800847262 ], [ -96.679003169112505, 75.394207969353829 ], [ -96.722877072153352, 75.380771689544417 ], [ -96.857108034305099, 75.369148153944764 ], [ -96.915110355853656, 75.379684043018557 ], [ -96.969630011253727, 75.412654014979381 ], [ -97.020661507341046, 75.468058069827237 ], [ -96.982808112342369, 75.509806118294819 ], [ -96.856152223721764, 75.537920133039137 ], [ -96.522887440500909, 75.583656218768226 ], [ -96.427701889994864, 75.60636495986887 ], [ -96.417237412056622, 75.630710663922571 ], [ -96.397264266763457, 75.646805635239673 ], [ -96.367809919936732, 75.654660860148709 ], [ -96.145391698561525, 75.613528046079608 ], [ -96.039818574417041, 75.585776580177225 ], [ -95.95987106160166, 75.554333707884041 ], [ -95.968605192794215, 75.54185323865795 ], [ -96.078572848356345, 75.510124721822592 ] ] ], [ [ [ -93.542604123687127, 75.027923775693722 ], [ -93.478268183732908, 74.951964300139821 ], [ -93.466589716490532, 74.921323429830352 ], [ -93.463464106019728, 74.856515077748725 ], [ -93.490853023080163, 74.771975279601918 ], [ -93.509194698584537, 74.756473570026202 ], [ -93.535627805061623, 74.749343442801091 ], [ -93.548289548708695, 74.727535580641046 ], [ -93.547152463704379, 74.691049983546122 ], [ -93.573096678561257, 74.66882464090142 ], [ -93.626166138593518, 74.6608705390355 ], [ -93.984595107344617, 74.644182305977012 ], [ -94.206052024972209, 74.647412286568965 ], [ -94.534510289455028, 74.636733575224099 ], [ -94.697289226328621, 74.642160821524897 ], [ -94.803873092699149, 74.660090509708851 ], [ -94.958747366185264, 74.699937923338297 ], [ -95.286063052499486, 74.794090758961175 ], [ -95.451220529502876, 74.797342712210252 ], [ -95.865410608779527, 74.830422547456521 ], [ -96.094255832353042, 74.93252948494532 ], [ -96.181717993892576, 74.950777776657077 ], [ -96.270141459179726, 74.920312687604309 ], [ -96.294168559705668, 74.927179142944368 ], [ -96.318536236416463, 74.947723577321824 ], [ -96.343184064505138, 74.981935004408115 ], [ -96.386332869862073, 74.999458198435946 ], [ -96.559889395037416, 74.990361518401443 ], [ -96.591150992909647, 75.00183124540149 ], [ -96.599599479560055, 75.031801949669784 ], [ -96.596913322231018, 75.057850534647827 ], [ -96.56577806713706, 75.098719676831848 ], [ -96.382844710549335, 75.211373489723002 ], [ -96.292383281317242, 75.219283646274761 ], [ -96.180350195988837, 75.240113725194362 ], [ -96.118392796164414, 75.300934040014482 ], [ -96.124929661648153, 75.358293661343197 ], [ -95.95465255554322, 75.443822229058981 ], [ -95.853188318274235, 75.46903585306768 ], [ -95.670793291785159, 75.528669644405028 ], [ -95.049516412616583, 75.621844696787491 ], [ -94.878184618971417, 75.630007538895768 ], [ -94.648636270371085, 75.623031220270263 ], [ -94.427228791221935, 75.59336813320121 ], [ -94.256693506396218, 75.544072477023832 ], [ -93.90906959176823, 75.422530724340533 ], [ -93.750833501747636, 75.349043172709059 ], [ -93.666837526863745, 75.273545122954033 ], [ -93.591235106987554, 75.230237015833211 ], [ -93.497543697163522, 75.136864209536952 ], [ -93.531727658428466, 75.100323680799306 ], [ -93.551805173842808, 75.051159860564468 ], [ -93.542604123687127, 75.027923775693722 ] ] ], [ [ [ -104.119944615071262, 75.036350289687022 ], [ -104.308667766801733, 75.030977975028975 ], [ -104.634308038012989, 75.061289255482137 ], [ -104.828145325680737, 75.119703564351084 ], [ -104.88738910235476, 75.147762647452709 ], [ -104.88165423885475, 75.160473829578223 ], [ -104.84809100515254, 75.173031203104131 ], [ -104.801300231883232, 75.2110219272096 ], [ -104.690398738394862, 75.32069844506529 ], [ -104.648826471184009, 75.349768270392985 ], [ -104.474160326825711, 75.413016563821344 ], [ -104.346208051436903, 75.429913537122161 ], [ -104.074675448305328, 75.424497277149925 ], [ -103.917010647369011, 75.391856895045407 ], [ -103.851175073568527, 75.370796103226382 ], [ -103.804098655757073, 75.34552754757496 ], [ -103.757901144229152, 75.289046832529749 ], [ -103.746480855707574, 75.252462358477914 ], [ -103.66723097475473, 75.210703323681827 ], [ -103.643489518770949, 75.186577346198987 ], [ -103.642143693524289, 75.162956739829184 ], [ -103.664259172883561, 75.139083447902863 ], [ -103.709737079891838, 75.115001415734213 ], [ -103.813914940311221, 75.079757273764756 ], [ -104.119944615071262, 75.036350289687022 ] ] ], [ [ [ -95.306656925355398, 74.505424976465093 ], [ -95.352442449562915, 74.500415210648981 ], [ -95.441508615069893, 74.506095142506268 ], [ -95.77719588373472, 74.550743581709469 ], [ -95.834352257985373, 74.569035818735387 ], [ -95.85073287384462, 74.582472098544827 ], [ -95.774405356284518, 74.598698905804468 ], [ -95.745621175498997, 74.61595842794722 ], [ -95.660460649789442, 74.636887383823733 ], [ -95.510211620620396, 74.636788506866822 ], [ -95.352519353862718, 74.585680106479714 ], [ -95.278367129354351, 74.539537526594501 ], [ -95.274461489556927, 74.519168873473745 ], [ -95.306656925355398, 74.505424976465093 ] ] ], [ [ [ -97.355497335543703, 74.526299000698856 ], [ -97.65609976400296, 74.465687426121093 ], [ -97.721572788961495, 74.489198169205451 ], [ -97.749994420905082, 74.510544605566622 ], [ -97.51631521277217, 74.602478202823619 ], [ -97.416526390606151, 74.626560234992269 ], [ -97.318215229629317, 74.59800676710617 ], [ -97.291315204189104, 74.576374686202854 ], [ -97.303872577714998, 74.559686453144366 ], [ -97.355497335543703, 74.526299000698856 ] ] ], [ [ [ -93.170870711069114, 74.161003576607698 ], [ -92.778027068153634, 74.11371841855393 ], [ -92.586821006172201, 74.082714999402469 ], [ -92.492821979148928, 74.062038729082502 ], [ -92.313843700837069, 73.99238540611293 ], [ -92.22268463974244, 73.972379301834138 ], [ -91.874176325666653, 74.012798004547847 ], [ -91.630422654258808, 74.027783356681994 ], [ -91.08797268239411, 74.009282379413747 ], [ -90.627436776154184, 73.951714017842676 ], [ -90.457994631018607, 73.908405910721854 ], [ -90.354613279418672, 73.868646387720787 ], [ -90.381375975752093, 73.824745018858579 ], [ -90.466146486798323, 73.753839254434979 ], [ -90.565572760122393, 73.686405169831346 ], [ -90.76453517005595, 73.580628798608785 ], [ -90.9336696979923, 73.527707654011891 ], [ -90.975472678102577, 73.502307262417929 ], [ -91.001927757236757, 73.4670960794341 ], [ -91.067615015601902, 73.415515266919584 ], [ -91.249306917064146, 73.304004032197014 ], [ -91.297811557586328, 73.284931765844476 ], [ -91.553727094692491, 73.236097535465973 ], [ -91.466034220253519, 73.214190796349044 ], [ -91.42591214841049, 73.19486584443996 ], [ -91.459629190712306, 73.145350461691748 ], [ -91.621018357025065, 73.025874138774697 ], [ -91.788351127080176, 72.915395618935293 ], [ -91.905311580760625, 72.84930186641401 ], [ -92.117940983403031, 72.753797712380191 ], [ -92.234934396069107, 72.726826275804427 ], [ -92.391951003621315, 72.718454693453822 ], [ -93.340625966568211, 72.801862899760607 ], [ -93.57867773346166, 72.800522567678229 ], [ -94.211325462673386, 72.756950788672327 ], [ -94.151713643993119, 72.735659283953879 ], [ -93.919995495505333, 72.703370464362791 ], [ -93.770548468320015, 72.668203226693151 ], [ -93.572239744934819, 72.558625585794346 ], [ -93.546482297663189, 72.531280614048086 ], [ -93.533924924137281, 72.499453220255845 ], [ -93.541620847282431, 72.437028901468295 ], [ -93.555161497213021, 72.421164643050616 ], [ -93.870622935028166, 72.252645349512733 ], [ -93.972581557081654, 72.12999397764645 ], [ -94.037560197255701, 72.028754960112622 ], [ -94.143759542127199, 72.000827712953537 ], [ -94.497145786076558, 72.043586503647163 ], [ -94.611222328514174, 72.042323075864573 ], [ -95.007867241105913, 72.012791824738059 ], [ -95.192942931759745, 72.027436600687338 ], [ -95.166822935646152, 72.18003670416482 ], [ -95.1926572872176, 72.344787687012058 ], [ -95.251027650772372, 72.501958103163901 ], [ -95.547598096655946, 72.781549178282575 ], [ -95.580309889895986, 72.831141465330603 ], [ -95.602167190534473, 72.884491076740744 ], [ -95.613202957557007, 72.941598012512941 ], [ -95.612219681152311, 72.999056510798567 ], [ -95.591576369817957, 73.115280880466543 ], [ -95.589274733987978, 73.174189574119993 ], [ -95.604078811701143, 73.327723515523729 ], [ -95.644233842529815, 73.557469618037828 ], [ -95.648007646384713, 73.638504777379069 ], [ -95.645266557412953, 73.670804583298718 ], [ -95.632917924129387, 73.695446918223126 ], [ -95.569405958815977, 73.728164204627433 ], [ -95.447397287169522, 73.751674947711791 ], [ -95.385983710608031, 73.755135641203196 ], [ -94.996161308042176, 73.685735003790143 ], [ -94.816842453545462, 73.662531877905025 ], [ -94.697596843527847, 73.663564592788163 ], [ -94.691038005387028, 73.671419817697199 ], [ -94.797154952794443, 73.686097552632106 ], [ -94.896943774960462, 73.716013325257677 ], [ -95.059491998934618, 73.80505751810756 ], [ -95.134138608227474, 73.881225733903761 ], [ -95.149019590240442, 73.906417385255395 ], [ -95.152584653853012, 73.932773587432678 ], [ -95.144778867422431, 73.960316313092704 ], [ -95.121163754216894, 73.985046538645463 ], [ -95.03982647084068, 74.023850251063209 ], [ -94.973523978077068, 74.041428376733762 ], [ -94.728968304685509, 74.085966952651546 ], [ -94.482550448605735, 74.11314712946961 ], [ -93.9388095831371, 74.131604161423695 ], [ -93.784605475692175, 74.118365635528079 ], [ -93.54924535929203, 74.167155920592393 ], [ -93.410290275866316, 74.178779456192046 ], [ -93.170870711069114, 74.161003576607698 ] ] ], [ [ [ -98.270378351888965, 73.868514551778247 ], [ -98.558214666579985, 73.847431787302128 ], [ -98.691077830827993, 73.856473535693937 ], [ -98.761357374524579, 73.828875878391159 ], [ -98.816596634444281, 73.817153465834622 ], [ -98.973926352359996, 73.812055809390159 ], [ -99.298039523903626, 73.861955713637428 ], [ -99.385144629765477, 73.879314112737092 ], [ -99.41699948937908, 73.895409084054194 ], [ -99.403821388290439, 73.910888820972843 ], [ -99.345610326499553, 73.925720364507356 ], [ -99.096890834589786, 73.948275297008394 ], [ -99.004699058612005, 73.964941557409787 ], [ -98.966691855013707, 73.988199614937628 ], [ -98.904498249125595, 74.006909332448231 ], [ -98.818151199933268, 74.021015778298846 ], [ -98.584982856077673, 74.034496003422447 ], [ -98.061039354645501, 74.104676670162121 ], [ -97.800432655251015, 74.114652256480156 ], [ -97.698215854476757, 74.108708652737818 ], [ -97.667415682403387, 74.09015274382682 ], [ -97.659148470173946, 74.071629793901479 ], [ -97.67335928614574, 74.053051912333416 ], [ -97.754751501164662, 74.00551406872313 ], [ -97.861099161471515, 73.968457182543887 ], [ -98.146974416517409, 73.88882827325628 ], [ -98.270378351888965, 73.868514551778247 ] ] ], [ [ [ -100.001900634738163, 73.945902250042877 ], [ -99.157947355473596, 73.731569966476115 ], [ -99.039635583382235, 73.749246969103552 ], [ -98.784533034588335, 73.760562887503966 ], [ -98.519356022519517, 73.792082664096995 ], [ -98.151857839555262, 73.818230126031921 ], [ -97.927714764598633, 73.865778955970768 ], [ -97.832161172086359, 73.879369044379814 ], [ -97.669948031132805, 73.88774062673042 ], [ -97.581843169373428, 73.887531886488091 ], [ -97.327026265121688, 73.861845850351983 ], [ -97.224760025868974, 73.843817285211145 ], [ -97.170498549189688, 73.824843895815491 ], [ -97.111743664135872, 73.790324851529931 ], [ -97.011284675928664, 73.706169574882153 ], [ -96.996606940993743, 73.674913470174204 ], [ -97.001693611109673, 73.666486956180904 ], [ -97.09458301894999, 73.614730362409659 ], [ -97.156392103339073, 73.592197402565716 ], [ -97.284185076963979, 73.570752089247634 ], [ -97.394773460088842, 73.564193251106815 ], [ -97.489777736173906, 73.526620007486002 ], [ -97.596982330107195, 73.536595593804066 ], [ -97.625898346835243, 73.502285289760835 ], [ -97.614604401091924, 73.481334361227255 ], [ -97.585820220306388, 73.471150034666891 ], [ -97.531816922347886, 73.473599985932225 ], [ -97.470117701244249, 73.488222789224409 ], [ -97.350306295306623, 73.480938853399664 ], [ -97.287129413013801, 73.458460825198443 ], [ -97.230363053426458, 73.421305062062316 ], [ -97.272506609721617, 73.386840949419479 ], [ -97.484070338495258, 73.339193242523748 ], [ -97.795884315233764, 73.285294314686411 ], [ -98.175835501602748, 73.115775265251045 ], [ -98.375594420355753, 73.044693719570745 ], [ -98.416831604546019, 73.022523308568765 ], [ -98.436958558438803, 73.00024303428134 ], [ -98.430910584575273, 72.958077505329101 ], [ -98.421764466062314, 72.941026723428649 ], [ -98.366651548920871, 72.934149281760057 ], [ -98.180823294761765, 72.99306896174204 ], [ -98.06101188882414, 73.02050182411665 ], [ -97.939393231841009, 73.035597039536214 ], [ -97.724802769553463, 73.036673699733541 ], [ -97.636335358952138, 73.02763195134176 ], [ -97.475671290323291, 72.992266959758325 ], [ -97.328756611867377, 72.93781871549379 ], [ -97.295836078384994, 72.91803233778586 ], [ -97.309920551578529, 72.898136096792513 ], [ -97.3710045382837, 72.878140978842254 ], [ -97.377667746545697, 72.864957384589331 ], [ -97.237575578115667, 72.837469590571999 ], [ -97.083008921828792, 72.762850447100504 ], [ -97.072879526911137, 72.71757578717029 ], [ -97.140472913278671, 72.672751566710389 ], [ -97.15892445206849, 72.642780862442095 ], [ -97.128124279995106, 72.627608742722714 ], [ -97.051796762435018, 72.6368042997141 ], [ -96.869017214446899, 72.687033793817704 ], [ -96.671301752803089, 72.713181255752659 ], [ -96.592084830835887, 72.710236919702851 ], [ -96.542113515453082, 72.698712261060081 ], [ -96.48919786402044, 72.629882912731347 ], [ -96.445631578178833, 72.552418310166928 ], [ -96.440154893399594, 72.487280368228966 ], [ -96.472866686639648, 72.4343921826177 ], [ -96.519866200151284, 72.393105559948992 ], [ -96.638282342363809, 72.342041104876046 ], [ -96.745486936297098, 72.322617276010078 ], [ -96.801451293900712, 72.32240853576775 ], [ -96.795892211657403, 72.313773281532093 ], [ -96.668747431416591, 72.271245203737891 ], [ -96.615568108098898, 72.237242516893929 ], [ -96.592859366998255, 72.204481285175433 ], [ -96.600610221786113, 72.172851645296987 ], [ -96.618127922649677, 72.145880208721223 ], [ -96.766311522052433, 72.045937577955584 ], [ -96.758324461200871, 72.031677323505363 ], [ -96.717296017252949, 72.025162430678705 ], [ -96.624357170934175, 71.967594069107633 ], [ -96.613425774032791, 71.833857491740361 ], [ -96.946503789668398, 71.79186774404485 ], [ -97.024666024095367, 71.760732488950879 ], [ -97.116703991473528, 71.710821598375048 ], [ -97.222227677139557, 71.673512026639315 ], [ -97.461257227273435, 71.634202943108534 ], [ -97.582282622515194, 71.629687562076896 ], [ -98.181339652203334, 71.662448793795392 ], [ -98.241929254124031, 71.681521060147958 ], [ -98.283864070176833, 71.71552374699192 ], [ -98.307067196061965, 71.764511785970058 ], [ -98.31337334864628, 71.803062812831286 ], [ -98.3026781578086, 71.831121895932881 ], [ -98.305803768279389, 71.847557443434852 ], [ -98.322700741580221, 71.852358469008635 ], [ -98.389283385721697, 71.824244454264289 ], [ -98.458843324898638, 71.773190985519875 ], [ -98.420808655478979, 71.716501530232364 ], [ -98.231464776185774, 71.55893560625293 ], [ -98.195292289454343, 71.491193904450057 ], [ -98.190150687695706, 71.46246465530723 ], [ -98.198626640167475, 71.440854547061008 ], [ -98.412283264528767, 71.348822072847128 ], [ -98.535945378621108, 71.317631886110433 ], [ -98.662886911783843, 71.302108203877623 ], [ -98.783835402725799, 71.313687794163087 ], [ -98.898763385625571, 71.352337697981227 ], [ -98.986253012986481, 71.369498343167095 ], [ -99.167120939807916, 71.367169241515768 ], [ -99.22362912067446, 71.387120414151838 ], [ -99.276182223265153, 71.424221245645242 ], [ -99.403667579690833, 71.557177793685895 ], [ -99.58145933451992, 71.651539369551102 ], [ -99.734735097202858, 71.757227850145313 ], [ -100.124140019284042, 71.911530834547136 ], [ -100.325706189082553, 72.003870925960257 ], [ -100.594475730585302, 72.152340169905159 ], [ -100.706816433112948, 72.185925376264436 ], [ -100.800172759916393, 72.199416587716598 ], [ -100.983649939767062, 72.210062340075837 ], [ -101.026232949203973, 72.228563317344083 ], [ -101.093101237887609, 72.279056483332738 ], [ -101.208545578228964, 72.316981289466952 ], [ -101.250661668702747, 72.321782315040736 ], [ -101.318721974033423, 72.312850429934372 ], [ -101.498320979908016, 72.277858973521433 ], [ -101.723914250232468, 72.314915859700676 ], [ -101.774506293178021, 72.340931485693091 ], [ -101.804427558967859, 72.385041594797627 ], [ -101.832898629389888, 72.409277435565912 ], [ -101.909330517071155, 72.431030366083206 ], [ -101.973666457025374, 72.486115817403316 ], [ -102.402221160873438, 72.594737647718773 ], [ -102.657087503603634, 72.719432476694266 ], [ -102.7087397272537, 72.764498396382123 ], [ -102.713672588769995, 72.782900496693486 ], [ -102.687475688356599, 72.842841905230074 ], [ -102.628457131417719, 72.910792347275304 ], [ -102.551074926317384, 72.978281363521688 ], [ -102.503789768263601, 73.00593395246716 ], [ -102.336127408352169, 73.064117548436684 ], [ -102.203989341788059, 73.077301142689606 ], [ -102.019605789832511, 73.069907343579445 ], [ -101.922453686517073, 73.056965448554479 ], [ -101.835381539640849, 73.01801891386566 ], [ -101.798071967905102, 72.97311778910597 ], [ -101.754533147884857, 72.942839467638436 ], [ -101.617769837003692, 72.909704700749444 ], [ -101.543590146673949, 72.883040881372921 ], [ -101.43460576751653, 72.821034043070057 ], [ -101.350576833647025, 72.746305036313117 ], [ -101.27319462854669, 72.721662701388709 ], [ -101.08762455310837, 72.713291119038104 ], [ -100.896055942284988, 72.725947369520895 ], [ -100.48476625374397, 72.772979842018174 ], [ -100.468023089042759, 72.778813582475095 ], [ -100.442595231627465, 72.806817733933997 ], [ -100.395700088236993, 72.976995963082032 ], [ -100.367509169192843, 72.97772106076593 ], [ -100.227933358204382, 72.8989051397906 ], [ -100.188349616460002, 72.890280871883476 ], [ -100.128144536038363, 72.906716419385447 ], [ -100.092384036627337, 72.944948842718901 ], [ -100.096729129566526, 72.963142202787907 ], [ -100.18447144248394, 73.055339471929955 ], [ -100.236200570433809, 73.095439571115918 ], [ -100.282683726503876, 73.120290646282655 ], [ -100.334363415975304, 73.128486447376559 ], [ -100.446215226882742, 73.120554318167706 ], [ -100.531375752592297, 73.138275266109332 ], [ -100.55018984022405, 73.163697630360389 ], [ -100.536391011572675, 73.197854125803957 ], [ -100.489314593761222, 73.233933228742785 ], [ -100.438826920936833, 73.254576540077124 ], [ -100.340719007038061, 73.265189333450735 ], [ -100.225867928438092, 73.254697389691103 ], [ -100.066989138197656, 73.211081665371069 ], [ -99.966398314047922, 73.201424682580807 ], [ -99.825141594792214, 73.213850220164176 ], [ -100.005905151492485, 73.239514283643189 ], [ -100.257958994115398, 73.340225957406886 ], [ -100.366113905467742, 73.359034551874373 ], [ -100.497993793311053, 73.315836308038996 ], [ -100.587032492996684, 73.29955456913666 ], [ -100.755343046292211, 73.278471804660541 ], [ -100.88936526820163, 73.275351687354004 ], [ -101.450854547433252, 73.430973031181111 ], [ -101.482066706827027, 73.445848520029841 ], [ -101.523205014060395, 73.486366099700462 ], [ -101.5184479338008, 73.505020885568314 ], [ -101.463049372117197, 73.533859997996586 ], [ -101.323165943929496, 73.571993544373129 ], [ -101.114958538526082, 73.59586683629945 ], [ -100.975794714858026, 73.599745010275512 ], [ -100.854099153575092, 73.571301405674859 ], [ -100.676796290366212, 73.494276256252192 ], [ -100.521663838159313, 73.449320199849751 ], [ -100.508925190212437, 73.46549207546667 ], [ -100.536314107272858, 73.509723034185185 ], [ -100.607110008411013, 73.575410292550345 ], [ -100.657932764255989, 73.593339980734299 ], [ -100.782731963352646, 73.612950577185501 ], [ -100.898231235336723, 73.658038469530482 ], [ -100.952591588972894, 73.69141493564743 ], [ -100.98152957835805, 73.727175435058484 ], [ -100.985094641970605, 73.76531996776356 ], [ -100.962979162611347, 73.791412498055792 ], [ -100.91512820863754, 73.805365135306801 ], [ -100.483629168739654, 73.843498681683343 ], [ -100.182301642596485, 73.801278221088381 ], [ -99.991101073779319, 73.795180808746409 ], [ -99.911878658647851, 73.847014306817471 ], [ -99.939503781771975, 73.857143701735112 ], [ -100.040089112757443, 73.843817285211145 ], [ -100.153830572174456, 73.844069970767634 ], [ -100.224780281912231, 73.872491602711222 ], [ -100.22705445192085, 73.88913589045552 ], [ -100.138482671198361, 73.928873440799521 ], [ -100.001900634738163, 73.945902250042877 ] ] ], [ [ [ -86.589356788129294, 71.010805702530945 ], [ -86.549674169428016, 70.988789100128571 ], [ -86.321290371653362, 71.016804237916006 ], [ -86.127139973622121, 71.04899418055021 ], [ -85.824576485517738, 71.125733685430731 ], [ -85.64386236729591, 71.152452436449948 ], [ -85.094853557290392, 71.151936079008379 ], [ -85.001579627951017, 71.137467084315801 ], [ -85.042789346319921, 71.091577189987134 ], [ -85.065783731962711, 71.078602335976541 ], [ -85.047667276193494, 71.058684122326099 ], [ -84.988505896983554, 71.031767617393086 ], [ -84.870314974506172, 71.001785926796231 ], [ -84.823710968822112, 71.028636513758016 ], [ -84.789598418692705, 71.093280070911476 ], [ -84.708596218337092, 71.358698782208251 ], [ -84.67430788695097, 71.438789117294704 ], [ -84.658081079691343, 71.514605770577504 ], [ -84.65993776921529, 71.586126769399584 ], [ -84.699400661345678, 71.631467347301054 ], [ -84.840135529995536, 71.658625551462052 ], [ -85.0322204982605, 71.654077211444815 ], [ -85.130921673900659, 71.661207338669925 ], [ -85.25049687377458, 71.67531378452054 ], [ -85.339079640825631, 71.697275455280192 ], [ -85.396691947710863, 71.72704840563469 ], [ -85.511521053653738, 71.816543037954887 ], [ -85.596214660400179, 71.866409983216528 ], [ -85.813304512431486, 71.956431959306855 ], [ -85.911599193915507, 71.986512526860565 ], [ -85.862094797495814, 72.021965409072379 ], [ -85.664791323172409, 72.06279060594224 ], [ -85.545776426054232, 72.101539386717263 ], [ -85.405887504702264, 72.214874351978153 ], [ -85.321864063997026, 72.233133630018415 ], [ -85.018729286808352, 72.218181236869924 ], [ -84.608477806314752, 72.129499592861976 ], [ -84.351639417610897, 72.052661211024571 ], [ -84.28374390720839, 72.044487382587761 ], [ -84.282348643483289, 72.05844001983877 ], [ -84.347453626435595, 72.094442218477781 ], [ -84.642996850600298, 72.189550864684009 ], [ -84.777535429951286, 72.2587647345118 ], [ -84.842003205848044, 72.3081482813175 ], [ -84.811043732010774, 72.32953866299286 ], [ -84.644677758867545, 72.3514014567956 ], [ -84.623045677964228, 72.376560149161577 ], [ -84.849440950272395, 72.406223236230659 ], [ -84.964160192929839, 72.405608001832178 ], [ -85.056818887870733, 72.384371428756452 ], [ -85.156398969794409, 72.382921233388629 ], [ -85.341112111606279, 72.421527191892579 ], [ -85.391297660395708, 72.4440052200938 ], [ -85.497777156645085, 72.510615330056623 ], [ -85.553686582605977, 72.568590185783819 ], [ -85.615594543951957, 72.604636329736991 ], [ -85.637896790896463, 72.633189797623118 ], [ -85.64990484799516, 72.722179058830278 ], [ -85.644532533337099, 72.774452010043092 ], [ -85.619450745270939, 72.819177353546081 ], [ -85.574615538482476, 72.856377061996398 ], [ -85.454809625709117, 72.92516246501097 ], [ -85.387573295019266, 72.945003774361624 ], [ -85.262131395702781, 72.954001577439243 ], [ -84.989538611866692, 72.919889027309807 ], [ -84.256629648361553, 72.79674327065905 ], [ -84.274251719346282, 72.836436875688861 ], [ -85.094029582649583, 73.002627067575389 ], [ -85.383903861285532, 73.045407830926109 ], [ -85.454754694066409, 73.105459102748114 ], [ -85.018399696952031, 73.335501836132948 ], [ -84.616047386681629, 73.389521613584265 ], [ -84.416085220850562, 73.456494272389051 ], [ -84.088967288450121, 73.459394663124698 ], [ -83.781888419314114, 73.416910530644685 ], [ -83.776538077313148, 73.428490120930149 ], [ -83.914976803297293, 73.508382702102807 ], [ -83.904067379053004, 73.528333874738905 ], [ -83.729846181000738, 73.575871718349191 ], [ -83.410352760609911, 73.631682267353199 ], [ -83.020458946908519, 73.676023089357159 ], [ -82.943203084586443, 73.69911635195686 ], [ -82.843315385463526, 73.715420063516291 ], [ -82.659601999549167, 73.729603413666723 ], [ -82.202779472357136, 73.736458882678221 ], [ -81.946160810224171, 73.729812153909052 ], [ -81.605353912457787, 73.696018207307418 ], [ -81.406138816967712, 73.634527726446123 ], [ -81.344077047022125, 73.597734512151931 ], [ -81.238344621113754, 73.479543589674563 ], [ -81.151728406872095, 73.314023563829238 ], [ -81.025121956729947, 73.245194215500476 ], [ -80.821732056393117, 73.207159546080817 ], [ -80.681172968999959, 73.165817991769387 ], [ -80.60344469455049, 73.121169552566187 ], [ -80.582779410559041, 73.064941523077493 ], [ -80.619155144368548, 72.997144889631898 ], [ -80.591876090593559, 72.927689320576121 ], [ -80.500920276576991, 72.856585802238726 ], [ -80.430816514137121, 72.816276962810463 ], [ -80.277260600076303, 72.770189314567972 ], [ -80.274711771854072, 72.745557965972125 ], [ -80.322667095949043, 72.717476910213406 ], [ -80.424334580296104, 72.678925883352179 ], [ -80.675119501972162, 72.558625585794346 ], [ -80.998721809238489, 72.426229340509451 ], [ -81.229346818036134, 72.311707851765789 ], [ -81.24056385947965, 72.277913905164155 ], [ -80.760801878287566, 72.45717782801816 ], [ -80.611453728059132, 72.45082773011967 ], [ -80.60468614967597, 72.425756928382043 ], [ -80.70243151473278, 72.338272794185428 ], [ -80.821468384508051, 72.260236902536718 ], [ -80.941230351967235, 72.21016121703272 ], [ -80.919345585507401, 72.191253745608321 ], [ -80.691401240874512, 72.103451007883933 ], [ -80.733259152627511, 72.089014972176983 ], [ -80.843276246668083, 72.096167072059188 ], [ -80.888386111670144, 72.088289874493086 ], [ -80.921070439088822, 72.072293780132867 ], [ -80.941384160566855, 72.04826667960694 ], [ -80.942702519992153, 72.014362869719861 ], [ -80.925025517364702, 71.970703200085637 ], [ -80.926783329931752, 71.938084790638214 ], [ -80.947921026050594, 71.916562573020315 ], [ -80.925135380650133, 71.907652660571074 ], [ -80.858448366387478, 71.911420971261691 ], [ -80.802242309555893, 71.92919685084604 ], [ -80.70540880976823, 71.988116530828023 ], [ -80.386146102276825, 72.148769613128309 ], [ -80.181921240970638, 72.208765953307619 ], [ -80.11609116033442, 72.214039391008782 ], [ -79.928290860201656, 72.174972006705985 ], [ -79.884367518682367, 72.177202231400429 ], [ -80.090888522654268, 72.300853359164222 ], [ -80.108928074123682, 72.332175381843456 ], [ -80.066971285413771, 72.378295989071546 ], [ -80.041801606719247, 72.394237151789042 ], [ -79.926719815219855, 72.428162934333216 ], [ -79.831292565485853, 72.446279390102404 ], [ -79.777866049775909, 72.438709809735542 ], [ -79.693326251629102, 72.375944914763124 ], [ -79.65384138684162, 72.332175381843456 ], [ -79.583693679087574, 72.314652187815625 ], [ -79.427424141876358, 72.337316983602079 ], [ -79.323317692592511, 72.390831389940359 ], [ -79.194382140799021, 72.355708097584909 ], [ -79.000231742767767, 72.272025233064511 ], [ -79.01796367703794, 72.188254477915791 ], [ -79.017754936795598, 72.104362873153093 ], [ -79.007834282120285, 72.042938310263054 ], [ -78.775934859211517, 71.930394360657345 ], [ -78.614468788598955, 71.880988841194551 ], [ -78.585091346072048, 71.880626292352588 ], [ -78.588870643091212, 71.89750129299631 ], [ -78.62253275375032, 71.934942700674583 ], [ -78.711159466115532, 71.97240608100995 ], [ -78.790843307045861, 72.030282059780262 ], [ -78.862748827366957, 72.100814289033337 ], [ -78.820088913630244, 72.265411463280969 ], [ -78.699250285973733, 72.3514014567956 ], [ -78.582487586207094, 72.329362881736159 ], [ -78.428799836203751, 72.279770594688102 ], [ -78.307488796419847, 72.275123377713953 ], [ -78.116337666081137, 72.280319911115328 ], [ -77.72602637189506, 72.179992758850631 ], [ -77.516506100230629, 72.177795493141815 ], [ -77.535732175182787, 72.218774498611282 ], [ -77.694473636316417, 72.238407067719578 ], [ -77.926197277968484, 72.293833095224556 ], [ -78.287175074941814, 72.359816984460394 ], [ -78.453057649629102, 72.435194184601414 ], [ -78.484302768008519, 72.4706141078276 ], [ -78.479490756106202, 72.508725681547048 ], [ -78.458847444771848, 72.542343846891981 ], [ -78.422416779319619, 72.571534521833655 ], [ -78.350225614456377, 72.600219825662265 ], [ -78.001025161682307, 72.687605082902024 ], [ -77.753206548713152, 72.724760846038151 ], [ -77.566779539648408, 72.736856793765185 ], [ -77.255383043394573, 72.735868024196208 ], [ -76.893493381152069, 72.720673931819732 ], [ -76.697947719395728, 72.695042827326375 ], [ -76.473255328011888, 72.633343606222724 ], [ -76.188775336691094, 72.572215674203392 ], [ -76.087283633600734, 72.561306249959102 ], [ -75.968741148609951, 72.56272348634127 ], [ -75.833191827032906, 72.576522314992673 ], [ -75.704311206882124, 72.571534521833655 ], [ -75.294257480302321, 72.480842379702153 ], [ -75.18578945858647, 72.434238374018094 ], [ -75.120091213892778, 72.377724699987255 ], [ -75.07145473742807, 72.322847988909501 ], [ -75.039858056535252, 72.269564295470644 ], [ -75.052679101946211, 72.226366051635267 ], [ -75.39415616575377, 72.039785233970889 ], [ -75.542768231969745, 72.007979812835742 ], [ -75.640964036496868, 71.937161939040493 ], [ -75.787411795989655, 71.803062812831286 ], [ -75.911282650324338, 71.731278142124154 ], [ -75.922807308967094, 71.717226627916261 ], [ -75.89681365563176, 71.713711002782162 ], [ -75.822084648874821, 71.745900945416338 ], [ -75.69335783732366, 71.838581613014327 ], [ -75.599875167741956, 71.918474194186985 ], [ -75.428356606511542, 71.984392165451567 ], [ -75.147655912209913, 72.062988359856035 ], [ -74.903177143118157, 72.100506671834097 ], [ -74.694920299236287, 72.096947101385808 ], [ -74.519688358957978, 72.08565315564249 ], [ -74.377415404311947, 72.066558916632857 ], [ -74.292974483122023, 72.050584794929733 ], [ -74.266343622731142, 72.037675858890424 ], [ -74.209313591258748, 71.978657301951557 ], [ -74.212598503493425, 71.938656079722506 ], [ -74.24824913961902, 71.893645091677342 ], [ -74.31573815586539, 71.842690499889841 ], [ -74.621509651904645, 71.786264716487352 ], [ -74.789051162202099, 71.741978826126115 ], [ -74.892970843900699, 71.725543278624144 ], [ -75.204806793296299, 71.709107731122174 ], [ -75.191062896287633, 71.691595523422876 ], [ -74.959449117921011, 71.667458559611504 ], [ -74.700754039693209, 71.675577456405591 ], [ -74.70736780947675, 71.646947084219676 ], [ -74.828942521145706, 71.570877745380358 ], [ -74.868295549990663, 71.504729061216381 ], [ -74.834501603389029, 71.45059942047962 ], [ -74.840752824330607, 71.406599174660499 ], [ -74.931291157862503, 71.31405034300505 ], [ -75.035331689175081, 71.230532273412848 ], [ -74.996220359558109, 71.21810673582948 ], [ -74.75894862199128, 71.338121388845167 ], [ -74.695326793392425, 71.469440973932734 ], [ -74.599569953802089, 71.584885314274089 ], [ -74.488113650722241, 71.648397279587499 ], [ -74.404079223688456, 71.672523257070338 ], [ -74.139034047562163, 71.682235171503322 ], [ -73.992091903284887, 71.749625310792794 ], [ -73.866595072325694, 71.771048651453782 ], [ -73.814036476570749, 71.77143317295284 ], [ -73.70722739046505, 71.746340398558118 ], [ -73.713555515706446, 71.719863346766857 ], [ -73.868616556777809, 71.599354308966667 ], [ -74.197272575174409, 71.40417119605226 ], [ -74.063327257564808, 71.426440484011152 ], [ -73.972503279490766, 71.472868708438483 ], [ -73.850884622507635, 71.519154110594769 ], [ -73.712863377008176, 71.587620910081569 ], [ -73.621698822749266, 71.525559140135982 ], [ -73.481612147483517, 71.479251765322601 ], [ -73.39778646069206, 71.373420462457347 ], [ -73.262423906700263, 71.322465870669845 ], [ -73.180619704360936, 71.282882128925451 ], [ -73.192188308317867, 71.349854787730266 ], [ -73.310456135095052, 71.484272517467275 ], [ -73.278211260818139, 71.538006650376445 ], [ -73.186815993659806, 71.564912168980925 ], [ -72.901929508182874, 71.677774722114407 ], [ -72.703054988877668, 71.6401465468509 ], [ -72.580623343582261, 71.606792053391018 ], [ -72.519286671320586, 71.61562506154047 ], [ -72.364599165419719, 71.610977844566321 ], [ -72.116494907908418, 71.592784484497287 ], [ -71.875191187765921, 71.561209776261563 ], [ -71.640688004992199, 71.516253719859122 ], [ -71.459918955127662, 71.463695124104163 ], [ -71.332949956143551, 71.403446098368363 ], [ -71.256089601649066, 71.361796926857693 ], [ -71.22937085062982, 71.338747609572181 ], [ -71.186557128293487, 71.278696337750148 ], [ -71.219373291654691, 71.238826951463636 ], [ -71.396571784742406, 71.146871381549573 ], [ -71.495009288497499, 71.105112346753458 ], [ -71.593095229739177, 71.08638065658576 ], [ -71.856129907741902, 71.104804729554218 ], [ -71.937934110081244, 71.094290813137519 ], [ -72.023869171953152, 71.065330851095297 ], [ -72.297703410914721, 70.938823277910018 ], [ -72.449116990909445, 70.884100375431899 ], [ -72.598047660653194, 70.849218782304376 ], [ -72.632720513538359, 70.830772736678853 ], [ -72.312556927106343, 70.832497590260289 ], [ -72.223908242084036, 70.87014773818089 ], [ -72.149981237310826, 70.940679967433994 ], [ -72.00916946436115, 71.013442421381512 ], [ -71.742542256924509, 71.046873819141211 ], [ -71.370852789620685, 70.975155066405364 ], [ -71.186238524765713, 70.978022498155354 ], [ -71.045371820173315, 71.049982950119187 ], [ -70.888014636436239, 71.099014934411485 ], [ -70.826062729776083, 71.108759807830097 ], [ -70.792466537088245, 71.103310588872233 ], [ -70.672627665329259, 71.052202188485097 ], [ -70.636460671762094, 71.006575966041453 ], [ -70.639097390612676, 70.902447544100539 ], [ -70.655247293572501, 70.870916781178977 ], [ -70.761726789821864, 70.792221709817625 ], [ -71.021762200132059, 70.674107691640046 ], [ -71.191819579666102, 70.629799828621714 ], [ -71.380443854439676, 70.605970482009582 ], [ -71.585910170871344, 70.565870382823618 ], [ -71.658463884576548, 70.533526631589808 ], [ -71.729391621657228, 70.487691668903835 ], [ -71.800154563809741, 70.457017839608739 ], [ -71.890176539900054, 70.431540543714988 ], [ -71.772381125250277, 70.394208999322132 ], [ -71.727249287591135, 70.395241714205298 ], [ -71.683677508585248, 70.417565933806884 ], [ -71.564981214994845, 70.505676288730541 ], [ -71.476662119828859, 70.544040548006507 ], [ -71.426641365967598, 70.552104513157872 ], [ -71.375071539781615, 70.548435079424138 ], [ -71.324842045678011, 70.531175557281387 ], [ -71.275854006699888, 70.500292987743933 ], [ -71.279567385747796, 70.425212418473592 ], [ -71.429431893417799, 70.12775757314219 ], [ -71.405141121006807, 70.128636479425722 ], [ -71.31305371515019, 70.209309089925029 ], [ -71.045272943216418, 70.51905763689723 ], [ -70.979794425093615, 70.581064475200122 ], [ -70.850551256100871, 70.643598657273117 ], [ -70.560962622007068, 70.738267850337564 ], [ -70.337248013863658, 70.787827178399993 ], [ -70.08470527962055, 70.829531281553358 ], [ -69.949782178770519, 70.845032991129102 ], [ -69.795709907268119, 70.834595979012192 ], [ -69.695481631960348, 70.785915557233324 ], [ -69.560086118982909, 70.777126494398033 ], [ -69.395368095121299, 70.789266387439255 ], [ -69.289042407471541, 70.783432646982334 ], [ -69.168687178270986, 70.764151640387468 ], [ -69.065701334498627, 70.728083523777201 ], [ -68.890755038762464, 70.687104518307734 ], [ -68.49576356861661, 70.610266136470329 ], [ -68.446665666353042, 70.594116233510505 ], [ -68.400830703667083, 70.564991476540115 ], [ -68.358247694230172, 70.522880879230598 ], [ -68.363521131931336, 70.481231707719928 ], [ -68.416640030442039, 70.439989030365382 ], [ -68.482579974363688, 70.414819351670872 ], [ -68.56134096369631, 70.405678726322179 ], [ -68.642837548836411, 70.383200698120959 ], [ -68.793679839746829, 70.324390881424421 ], [ -68.842920564281471, 70.314437267763481 ], [ -69.079445231507293, 70.289146739454964 ], [ -69.29871037659035, 70.276798106171384 ], [ -69.435676934549576, 70.25313355448742 ], [ -69.698975284437367, 70.189302985646236 ], [ -70.061458208421243, 70.070837404955256 ], [ -70.057733843044787, 70.042624513253998 ], [ -69.913087841433239, 70.029034424844951 ], [ -69.795841743210659, 70.04694214037184 ], [ -69.634551453854797, 70.128746342711167 ], [ -69.482984065260453, 70.16005737906184 ], [ -69.246206712478113, 70.185117194470934 ], [ -68.918550449979023, 70.206979988273673 ], [ -68.778222075485289, 70.203541267439363 ], [ -68.752953519833881, 70.199146736021731 ], [ -68.73460635116524, 70.179854743098304 ], [ -68.723290432764813, 70.145643316011984 ], [ -68.776958647702727, 70.101049808451506 ], [ -68.839097321948131, 70.079912112332664 ], [ -69.008319740512817, 69.978936766683887 ], [ -68.897028232361137, 69.95273437310621 ], [ -68.744065580041706, 69.941418454705797 ], [ -68.656713281787603, 69.968444822924283 ], [ -68.577820456512455, 70.030451661227147 ], [ -68.489358539075397, 70.0648498558987 ], [ -68.391272597833719, 70.071617434281876 ], [ -68.305073864076746, 70.087404788399738 ], [ -68.230663460847595, 70.112211918252314 ], [ -68.210426643669365, 70.128427739183394 ], [ -68.318620007171617, 70.160573736503409 ], [ -68.327189343436004, 70.180162360297544 ], [ -68.283112193317095, 70.228271492992121 ], [ -68.203527229343678, 70.281500254788284 ], [ -68.120646366807023, 70.314624035348714 ], [ -68.059100954303005, 70.31726075419931 ], [ -67.855337518795665, 70.28178589933043 ], [ -67.716019886528002, 70.219844978998822 ], [ -67.363688330118862, 70.034428712160121 ], [ -67.318413670188647, 69.998415527192577 ], [ -67.195894134264904, 69.86070189889233 ], [ -67.172636076737049, 69.799464103587553 ], [ -67.192763030629834, 69.756826162507906 ], [ -67.221624115715173, 69.730733632215703 ], [ -67.259296236292869, 69.721274403339237 ], [ -67.336705907214565, 69.721010731454157 ], [ -67.806195671217935, 69.777392569542457 ], [ -68.02038513251361, 69.770053702075018 ], [ -68.113977665380759, 69.754299306942784 ], [ -68.189475715135771, 69.730623768930258 ], [ -68.248098764247075, 69.700762927947409 ], [ -68.289802867400454, 69.664683825008581 ], [ -68.37210145452427, 69.64438108985911 ], [ -68.669940821354686, 69.643655992175184 ], [ -68.837086823824549, 69.623551010939508 ], [ -69.124511151195179, 69.574508040318648 ], [ -69.227683762552772, 69.547437726786001 ], [ -69.250777025152459, 69.511929912931492 ], [ -69.074929850475669, 69.518104229573282 ], [ -68.785275298410596, 69.564224836801372 ], [ -68.513023090759376, 69.57729856776885 ], [ -68.058167116376751, 69.475861796321226 ], [ -67.908247677064026, 69.460096414860459 ], [ -67.824850457085802, 69.474730204481176 ], [ -67.724512318492586, 69.479245585512814 ], [ -67.360952734311383, 69.472499979786733 ], [ -67.236950044034188, 69.460096414860459 ], [ -67.052676355364071, 69.421193825485801 ], [ -66.770855055550939, 69.336643041010461 ], [ -66.716747387471273, 69.311846897486419 ], [ -66.685227610878272, 69.285743380865654 ], [ -66.676284739443375, 69.25843136810505 ], [ -66.679284007135905, 69.191074187801206 ], [ -66.707398021880252, 69.168233610758023 ], [ -66.802891189585523, 69.152753873839401 ], [ -67.208012054649032, 69.170661589366262 ], [ -67.331652196084278, 69.184713103574154 ], [ -67.483812846419994, 69.166992155632528 ], [ -67.607233261284364, 69.173199431259945 ], [ -67.765051870820287, 69.200225799478432 ], [ -67.93846008056029, 69.24812619193068 ], [ -68.198209846328339, 69.202697723400831 ], [ -68.406279922624947, 69.232228974527374 ], [ -68.618909325267367, 69.206004608292631 ], [ -69.040608560103919, 69.098008998704159 ], [ -68.993488196978291, 69.079354212836279 ], [ -68.415530411259084, 69.172056853091362 ], [ -68.303942272236711, 69.166420866548236 ], [ -68.121261601205489, 69.132604947289508 ], [ -67.832595818709393, 69.065961878341028 ], [ -67.751703481639211, 69.038682824566052 ], [ -67.751022329269489, 68.933829304941213 ], [ -67.795132438374026, 68.863319048345204 ], [ -67.883187861654946, 68.78396479727121 ], [ -68.015639038582563, 68.794665481273142 ], [ -68.324201062072021, 68.844071000735937 ], [ -68.450412004386578, 68.850838579119113 ], [ -68.542785054785327, 68.842774613967748 ], [ -68.66667788177709, 68.811298782688908 ], [ -68.725311917216928, 68.810189163505953 ], [ -69.218872727060401, 68.872800249878765 ], [ -69.329768727384504, 68.875799517571295 ], [ -69.342688649752361, 68.869383501701549 ], [ -69.319101002368186, 68.856990923103808 ], [ -68.871419100524847, 68.759937696745254 ], [ -68.540642720719234, 68.749346876028767 ], [ -68.333187878821093, 68.732548779684834 ], [ -68.210404671012284, 68.702962596915597 ], [ -68.152495733256359, 68.681077830455763 ], [ -68.148309942081056, 68.616126656103063 ], [ -68.037930299198521, 68.550747014937144 ], [ -67.93846008056029, 68.524193058846066 ], [ -67.875046992203778, 68.5229516037206 ], [ -67.765985708746541, 68.54703363588925 ], [ -67.655968614705969, 68.55072504228005 ], [ -67.566924421856086, 68.533981877578867 ], [ -67.455512064090414, 68.497891788311506 ], [ -67.32068784019728, 68.487806338708026 ], [ -67.202507904048446, 68.465844667948375 ], [ -67.111200527518463, 68.461450136530743 ], [ -66.854208330214988, 68.471634463091107 ], [ -66.742741040806607, 68.45778070279701 ], [ -66.713901928378348, 68.445717714055604 ], [ -66.762406568900531, 68.424656922236579 ], [ -66.997272300516201, 68.374174742576457 ], [ -67.032955895627424, 68.326087582538946 ], [ -66.900405841742909, 68.263531427808857 ], [ -66.830950272687147, 68.215631035356608 ], [ -66.83431208922164, 68.179870535945582 ], [ -66.905107990359781, 68.09848381409094 ], [ -66.923092610186472, 68.065711596043883 ], [ -66.899790607344443, 68.063085863521849 ], [ -66.72899714379794, 68.129014821114964 ], [ -66.702333324421417, 68.120544361807475 ], [ -66.684579417494163, 68.029236985277493 ], [ -66.662716623691409, 68.034400559693211 ], [ -66.60546686564814, 68.110008472733682 ], [ -66.630966134198985, 68.210665214854686 ], [ -66.530770817876828, 68.250358819884497 ], [ -66.212387016668956, 68.280428401109674 ], [ -66.266285944506279, 68.122719654859196 ], [ -66.274679499513979, 68.040761643920263 ], [ -66.413876282167664, 67.904278484416949 ], [ -66.529990788550208, 67.860300211254952 ], [ -66.526475163416094, 67.85115958590626 ], [ -66.443978822378483, 67.833845132120757 ], [ -66.392376037206859, 67.831933510954087 ], [ -66.342970517744064, 67.853279947315258 ], [ -66.225175103094287, 67.95871574235295 ], [ -65.985837935761168, 68.068557055136807 ], [ -65.942376020040726, 68.070941088430885 ], [ -65.943980024008169, 68.031192551758352 ], [ -65.974884566202704, 67.957430341913295 ], [ -65.864351114720563, 67.922834393327946 ], [ -65.758926306011432, 67.957089765728426 ], [ -65.701720493282323, 67.986653975840596 ], [ -65.569346220654523, 67.982314376065659 ], [ -65.509075222261615, 67.968251875529234 ], [ -65.491134547749098, 67.935699384053066 ], [ -65.551987821554846, 67.799348060492292 ], [ -65.540847684411133, 67.765631018190476 ], [ -65.401277366586953, 67.674839999102062 ], [ -65.387115989093616, 67.680289218059954 ], [ -65.413472191270898, 67.724080723636717 ], [ -65.44225637205642, 67.832350991438773 ], [ -65.415306908137765, 67.879262614322045 ], [ -65.300345966252351, 67.93950065372934 ], [ -65.06439258811082, 68.026237717584962 ], [ -64.976908453914191, 68.043387376442297 ], [ -64.922306401050037, 68.031664963885731 ], [ -64.835470460237502, 67.990015792375061 ], [ -64.862551760098697, 67.965131758222697 ], [ -64.956385992193816, 67.939105145901749 ], [ -65.02602832883484, 67.892028728090281 ], [ -65.071445811036128, 67.823847573145628 ], [ -65.021117439975626, 67.787570716293033 ], [ -64.829856446351471, 67.784263831401262 ], [ -64.637782464415054, 67.84025016166197 ], [ -64.527523671146511, 67.812707436001915 ], [ -64.396423812629834, 67.739944982054368 ], [ -64.156229711670278, 67.622973542045401 ], [ -64.019449921296285, 67.654888826465992 ], [ -63.850183557417424, 67.566086332844066 ], [ -64.077501681323284, 67.495620021562246 ], [ -64.007947235310624, 67.347337545202606 ], [ -64.303281719232984, 67.353456930201645 ], [ -64.469285143534265, 67.341855367259086 ], [ -64.580444815743419, 67.355192770111614 ], [ -64.699943111317552, 67.350545553137465 ], [ -64.589233878578696, 67.315532124067431 ], [ -64.375912337238006, 67.301063129374853 ], [ -64.356422590400783, 67.256151018286602 ], [ -64.188946998074599, 67.257293596455185 ], [ -64.063219454215968, 67.265917864362308 ], [ -63.836252892823509, 67.264116106481083 ], [ -63.824112999782287, 67.315685932667066 ], [ -63.676445757821099, 67.345140279493791 ], [ -63.591587356146505, 67.377538962370323 ], [ -63.521099072207591, 67.358367819060874 ], [ -63.315841496018265, 67.336329244001405 ], [ -63.040128594875654, 67.235013322167759 ], [ -63.161615415916259, 67.174346815947274 ], [ -63.194695251162528, 67.117042126261282 ], [ -63.235564393346564, 67.068515513081991 ], [ -63.258404970389734, 67.024647103205439 ], [ -63.306799747626471, 66.994467658694816 ], [ -63.701527545887259, 66.822377808380082 ], [ -63.636213822692625, 66.820784790741214 ], [ -63.469199656165287, 66.862379030609134 ], [ -63.14368572773229, 66.924341923597837 ], [ -62.962301443469272, 66.949247930407296 ], [ -62.833343919018688, 66.932713505948442 ], [ -62.768184004423659, 66.931988408264544 ], [ -62.710428875267354, 66.954103887623802 ], [ -62.602894691477744, 66.928626591730051 ], [ -62.379751372418625, 66.905368534202182 ], [ -62.123594136084506, 67.046707650921974 ], [ -61.968533095013143, 67.019066048305035 ], [ -61.824128792629566, 66.931724736379465 ], [ -61.514709835513671, 66.778487425846436 ], [ -61.353408559829262, 66.689212520097129 ], [ -61.299718372234267, 66.648749872069203 ], [ -61.307233020958435, 66.608858513125597 ], [ -61.453087518709836, 66.566583120887941 ], [ -61.527816525466775, 66.558112661580424 ], [ -61.724131230221204, 66.637796502510753 ], [ -61.90448279960107, 66.678105341939045 ], [ -62.014247208085123, 66.673754755835574 ], [ -62.123330464199455, 66.643058953883383 ], [ -62.089305804698384, 66.625909295026048 ], [ -61.652643190384779, 66.503126087217225 ], [ -61.576420042945841, 66.412488876728446 ], [ -61.570784056402729, 66.37290513498408 ], [ -61.862679819490793, 66.312820904176419 ], [ -61.95637122931484, 66.309316265370853 ], [ -62.15845375655492, 66.33799058287093 ], [ -62.276886378260272, 66.391504989209238 ], [ -62.374510893703103, 66.410829941118294 ], [ -62.509818516052178, 66.417191025345318 ], [ -62.553126623173, 66.40685289018532 ], [ -62.405646148797061, 66.315897076168767 ], [ -62.419851471604574, 66.288585063408135 ], [ -62.496019687400789, 66.270886088123603 ], [ -62.533570958364507, 66.227017678247023 ], [ -62.242081689432581, 66.14792709905808 ], [ -62.023904190875385, 66.067540133100948 ], [ -61.991615371284297, 66.035295258824021 ], [ -62.138656392518456, 66.011367035254978 ], [ -62.2443558594412, 66.005840911997296 ], [ -62.467784823042464, 66.01746444759695 ], [ -62.59035929060893, 66.034416352540489 ], [ -62.624131264553483, 66.016255951457111 ], [ -62.497371005811715, 65.974013518205055 ], [ -62.448382966833591, 65.945482022976051 ], [ -62.41029336577121, 65.905744472632051 ], [ -62.388177886411952, 65.868336023939406 ], [ -62.382003569770177, 65.833289635883744 ], [ -62.485637606926616, 65.804505455098223 ], [ -62.610255531602292, 65.72363509068515 ], [ -62.658913980724094, 65.639919267179124 ], [ -62.771721602214853, 65.631965165313204 ], [ -62.817292893015761, 65.647719560445438 ], [ -62.968893240595733, 65.622352127837132 ], [ -63.168954283383712, 65.65733259792151 ], [ -63.240684022448107, 65.695576007583526 ], [ -63.458751657719844, 65.853032068277486 ], [ -63.464332712620248, 65.835366051978582 ], [ -63.409763618741735, 65.755836019647887 ], [ -63.420881783228353, 65.70859480690828 ], [ -63.651946245167764, 65.674339434507772 ], [ -63.651045366227152, 65.661002031655244 ], [ -63.509222851051419, 65.636041093203062 ], [ -63.337451604264501, 65.616771072936729 ], [ -63.36426923224063, 65.543239575991095 ], [ -63.363357366971471, 65.229711731999714 ], [ -63.401809516875801, 65.118453182833662 ], [ -63.485832957581039, 65.021224175218407 ], [ -63.60660566726628, 64.928082081821572 ], [ -63.737167195684307, 64.98911113688402 ], [ -63.789385215254399, 65.051381647071963 ], [ -63.833198693488242, 65.083285945163993 ], [ -63.895633998604339, 65.109257625842247 ], [ -63.976273650118003, 65.121507382168915 ], [ -64.061428682663276, 65.121946835310666 ], [ -64.15184616658118, 65.066180231620848 ], [ -64.250437478935893, 65.114322323301081 ], [ -64.345732892727369, 65.172407042313694 ], [ -64.309763653074, 65.324567692649424 ], [ -64.269663553888066, 65.40075788110272 ], [ -64.285736552548073, 65.400197578346962 ], [ -64.339921124927542, 65.364173407050885 ], [ -64.469834459961476, 65.252706117642504 ], [ -64.555077383135114, 65.116596493309714 ], [ -64.665325190075109, 65.168946348822317 ], [ -64.764806395041887, 65.234084290760251 ], [ -64.846940187237536, 65.299584781540148 ], [ -64.979644049721671, 65.375082831295174 ], [ -65.108469738229729, 65.463753488974561 ], [ -65.175706068919595, 65.568145582800554 ], [ -65.206995132613173, 65.589667800418454 ], [ -65.282009783912258, 65.676668536159127 ], [ -65.311464130738969, 65.701519611325864 ], [ -65.33740285243158, 65.709792316719586 ], [ -65.401606956443274, 65.763998861756136 ], [ -65.378096213358916, 65.822083580768776 ], [ -65.276967059110518, 65.890660243541021 ], [ -65.184879653253901, 65.93995589971837 ], [ -65.032257577119339, 65.988526458211823 ], [ -64.853707765620698, 66.015893402615148 ], [ -64.772529784008384, 66.078548434302121 ], [ -64.672993647398883, 66.19270737420382 ], [ -64.563965322927288, 66.272182474891821 ], [ -64.445367906293768, 66.317116558637167 ], [ -64.504375476904116, 66.325510113644839 ], [ -64.655173822500359, 66.287014018426333 ], [ -64.761158933965248, 66.230895852223114 ], [ -64.887249026665828, 66.137380223655754 ], [ -65.004506111216955, 66.077724459661312 ], [ -65.305388691054091, 66.00842269920517 ], [ -65.415592552679911, 65.994579925239606 ], [ -65.543693143504058, 65.987186126129444 ], [ -65.825745156216612, 65.996930999548056 ], [ -65.891058879411261, 66.020211029732991 ], [ -65.85716605585273, 66.086403659211157 ], [ -65.656346956395211, 66.204748390288159 ], [ -65.688383090429795, 66.213065040996042 ], [ -65.75898123765414, 66.171207129243044 ], [ -65.855979532369957, 66.142214208215165 ], [ -65.94002494573229, 66.127437596323347 ], [ -66.063709032481711, 66.13271103402451 ], [ -66.208585746992696, 66.206396339569778 ], [ -66.277393122664364, 66.229083108013327 ], [ -66.419193665183002, 66.254505472264356 ], [ -66.476970766996402, 66.279730082601617 ], [ -66.712330883396547, 66.460444200823417 ], [ -66.759747877392869, 66.5084984018753 ], [ -66.787389480009807, 66.555684682972185 ], [ -66.862887529764834, 66.59531237003074 ], [ -66.986340903614831, 66.627513298993478 ], [ -67.014795494544032, 66.622239861292314 ], [ -66.970432699882977, 66.5818760902213 ], [ -66.968982504515154, 66.547148305693412 ], [ -67.076879237146713, 66.525505238461562 ], [ -67.189642913323311, 66.533019887185731 ], [ -67.307306492030563, 66.569736197180077 ], [ -67.317699558833283, 66.520385609360005 ], [ -67.191763274732324, 66.432769639220851 ], [ -67.189763762937289, 66.321741802954222 ], [ -67.22537045374871, 66.310272075954174 ], [ -67.311239597649347, 66.303757183127544 ], [ -67.368851904534594, 66.317501080136196 ], [ -67.559750349316786, 66.400447860644107 ], [ -67.740772084737841, 66.458192003471879 ], [ -67.868433222420222, 66.49015123320666 ], [ -67.883396601897289, 66.467420519448922 ], [ -67.80058165733189, 66.367324080083677 ], [ -67.704495227885246, 66.268611918114971 ], [ -67.547214948447973, 66.187225196260329 ], [ -67.296715671314061, 66.09028183318722 ], [ -67.183226897453551, 66.034416352540489 ], [ -67.272633639145397, 65.955556486250998 ], [ -67.350460790551779, 65.929749600500912 ], [ -67.398778663488699, 65.921707608006642 ], [ -67.550752546239167, 65.92160873104973 ], [ -67.828047478692127, 65.96516952372707 ], [ -67.958224485611112, 66.013795013863245 ], [ -68.147277227197904, 66.129810643288891 ], [ -68.459893205920139, 66.249286966205915 ], [ -68.527777729994099, 66.248616800164712 ], [ -68.748921537258198, 66.200046241671288 ], [ -68.71419375273031, 66.192234962076441 ], [ -68.571679098856308, 66.188730323270875 ], [ -68.467078264787972, 66.173173682052436 ], [ -68.217172249395446, 66.078856051501361 ], [ -68.198363654927945, 66.038964692557755 ], [ -68.260689096758597, 65.9946018978967 ], [ -68.256810922782535, 65.938615567635992 ], [ -68.186740119328292, 65.871016688104163 ], [ -68.115065311906619, 65.827763512626063 ], [ -67.968090208643716, 65.7972764509162 ], [ -67.894196162856133, 65.793244468340532 ], [ -67.866444696953749, 65.773655844546397 ], [ -67.954346311635049, 65.62307722552103 ], [ -67.961838987702123, 65.581944411451929 ], [ -67.936757199635949, 65.5649156022086 ], [ -67.906028438698115, 65.563487379497872 ], [ -67.717129505710943, 65.625351395529663 ], [ -67.638115830821818, 65.640435624620693 ], [ -67.569638045006471, 65.643533769270135 ], [ -67.490162944318485, 65.626230301813195 ], [ -67.399679542429325, 65.588404372635864 ], [ -67.346395848990454, 65.549380933647257 ], [ -67.330333836658994, 65.50918195750441 ], [ -67.3034283180545, 65.482924632284011 ], [ -67.117968105901625, 65.440396554489809 ], [ -67.134963956159339, 65.420500313496461 ], [ -67.326071141183888, 65.356625799341089 ], [ -67.33650815330077, 65.346606267708893 ], [ -67.29836362059568, 65.341959050734715 ], [ -67.177601897238972, 65.30381451802964 ], [ -67.06649715667254, 65.24408184973538 ], [ -66.998568687284404, 65.17300030405508 ], [ -66.984901694575555, 65.138041806627768 ], [ -66.985626792259467, 65.104808162781893 ], [ -66.970377768240255, 65.084911921788546 ], [ -66.911545978886622, 65.081352351340257 ], [ -66.887518878360694, 65.094008601823049 ], [ -66.860646318741829, 65.09158062321481 ], [ -66.830906327372972, 65.074167292472396 ], [ -66.799639236336475, 65.019697075550795 ], [ -66.732765454488572, 64.860076708133619 ], [ -66.697422435562217, 64.815164597045367 ], [ -66.677163645726907, 64.813692429020449 ], [ -66.666671701967289, 64.973807181222099 ], [ -66.635514474216237, 65.000317191998988 ], [ -66.517773991209168, 64.971950491698152 ], [ -66.345222715095602, 64.909625049867486 ], [ -66.223757866712091, 64.854100145405624 ], [ -66.209695366175652, 64.828139451055932 ], [ -66.301530086475736, 64.777723189367094 ], [ -66.282150202923958, 64.755322065465691 ], [ -66.214661186677574, 64.722407025147561 ], [ -66.152489553446543, 64.734909467030747 ], [ -66.107511524387021, 64.791192428162134 ], [ -66.030200730422223, 64.84656352402439 ], [ -65.938530805050291, 64.885751757941165 ], [ -65.76804495870303, 64.853561815306989 ], [ -65.626738800968866, 64.77074687074159 ], [ -65.605271514993717, 64.742358197783631 ], [ -65.513151150151472, 64.706487835087188 ], [ -65.431940209553517, 64.726439007723258 ], [ -65.274824725044411, 64.631528115430825 ], [ -65.349290059916299, 64.588516639180682 ], [ -65.512788601309524, 64.525982457107688 ], [ -65.529323025768377, 64.504800815674685 ], [ -65.489980983251982, 64.509623813905534 ], [ -65.178595473326681, 64.509700718205352 ], [ -65.09451710097872, 64.484585971153535 ], [ -65.074631846313906, 64.436685578701287 ], [ -65.212993667998248, 64.303256618533254 ], [ -65.339885762682542, 64.315088894375236 ], [ -65.507471218294171, 64.31831887496719 ], [ -65.593636993065516, 64.311111843442291 ], [ -65.580332549198616, 64.293852321299511 ], [ -65.347784932905753, 64.232306908795493 ], [ -65.281976824926616, 64.181659934207204 ], [ -65.192756850820018, 64.129837422464703 ], [ -65.149613538627364, 64.087144549742362 ], [ -65.150646253510502, 64.067511980634066 ], [ -65.187329604519235, 64.038002702164619 ], [ -65.169861342134126, 64.028158951789095 ], [ -65.010603523558927, 64.008855972537134 ], [ -64.911847416276061, 64.026170426322636 ], [ -64.787822753341771, 64.032784196106178 ], [ -64.678453852685294, 64.027983170532394 ], [ -64.669741694149835, 64.009581070221031 ], [ -64.686177241651791, 63.960933607427791 ], [ -64.798160888501755, 63.915944592039722 ], [ -64.768135252590753, 63.905397716637395 ], [ -64.636716790546274, 63.918350597990866 ], [ -64.576313956210839, 63.897344737814564 ], [ -64.498486804804472, 63.790348884123631 ], [ -64.41094773896512, 63.706347416075459 ], [ -64.482205065902122, 63.687066409480593 ], [ -64.56158128963321, 63.679705569356031 ], [ -64.550320302875519, 63.572555907065492 ], [ -64.498618640746997, 63.46276952592433 ], [ -64.498102283305428, 63.357575430114622 ], [ -64.514351063222151, 63.26397191091894 ], [ -64.586904776927355, 63.243163804656405 ], [ -64.66465502403392, 63.245339097708154 ], [ -64.695603511542629, 63.268827868135418 ], [ -64.886293216082493, 63.548704587796237 ], [ -64.933292729594129, 63.59927465808471 ], [ -64.989696540339509, 63.643351808203619 ], [ -65.191855971879406, 63.764278326488494 ], [ -65.183923842670566, 63.744843511293993 ], [ -65.133848157166582, 63.689054934947052 ], [ -65.089408458205725, 63.605932373182441 ], [ -65.031323739193084, 63.440159661780598 ], [ -65.004813728416195, 63.333416493646155 ], [ -65.0167009359009, 63.292832996004279 ], [ -65.05804249021233, 63.282857409686244 ], [ -65.068918955470977, 63.263477526134437 ], [ -65.049330331676856, 63.234638413706193 ], [ -64.894840579689799, 63.125632061891679 ], [ -64.820177490904129, 63.060021707826337 ], [ -64.767355223264119, 62.991818580224617 ], [ -64.718114498729477, 62.945818822610477 ], [ -64.672378413000416, 62.921945530684155 ], [ -64.683639399758107, 62.902389865875676 ], [ -64.751853513688403, 62.887173800842106 ], [ -64.868693117754844, 62.879878878688828 ], [ -64.923218266319196, 62.88918429896566 ], [ -65.132969250883065, 62.952333715437135 ], [ -65.162786146551738, 62.932591283043394 ], [ -65.046594735869377, 62.701438930475632 ], [ -65.050187265303308, 62.646155725241755 ], [ -65.108469738229729, 62.626457238162175 ], [ -65.18033131323665, 62.649462610133526 ], [ -65.265804949309711, 62.715083950527401 ], [ -65.396520286327359, 62.788208953316882 ], [ -65.572422392646871, 62.868870577487627 ], [ -65.740370397100449, 62.931976048644913 ], [ -65.779910193530654, 62.930262181392038 ], [ -65.805640174980923, 62.911585422867091 ], [ -65.833699258082532, 62.908542209860371 ], [ -65.864087442835498, 62.921121556043346 ], [ -65.920260540681468, 62.968505591054026 ], [ -65.978861617135664, 63.000706520016792 ], [ -66.224010552268609, 63.107153057280527 ], [ -66.249202203620214, 63.108240703806388 ], [ -66.226054009377805, 63.076303446728701 ], [ -66.201071098268542, 63.006232643274473 ], [ -66.228668755571306, 62.990983619255246 ], [ -66.29274102364046, 62.996674537441095 ], [ -66.414469543909036, 63.02721653079368 ], [ -66.496405582190903, 63.097287334247909 ], [ -66.600479072489122, 63.218884018573959 ], [ -66.654971262067832, 63.264773912902655 ], [ -66.659827219284324, 63.234902085591244 ], [ -66.630867257242087, 63.119062237422327 ], [ -66.636448312142477, 63.080126689062041 ], [ -66.697477367204925, 63.069535868345525 ], [ -66.723262280297917, 63.080181620704764 ], [ -66.748530835949339, 63.111086162899312 ], [ -66.77322810251647, 63.162238508600609 ], [ -66.831466630128716, 63.201108138989611 ], [ -66.923279377771721, 63.227662095080689 ], [ -66.974717368015177, 63.255567369582707 ], [ -67.000139732266206, 63.305126697645107 ], [ -67.017915611850555, 63.316497547688243 ], [ -67.179799162947802, 63.305027820688224 ], [ -67.260955171903035, 63.340733388456528 ], [ -67.494996928877882, 63.481446284449305 ], [ -67.709219349159198, 63.633947510969875 ], [ -67.844252313294675, 63.714565189826459 ], [ -67.893262324929879, 63.733736333135909 ], [ -67.821433708908586, 63.635035157495736 ], [ -67.742529897304891, 63.489246577715619 ], [ -67.722578724668821, 63.422746331038184 ], [ -67.758800649878708, 63.419725090688559 ], [ -67.837891229067637, 63.449223382829473 ], [ -68.243528451572729, 63.637045655619318 ], [ -68.493742084164495, 63.725463627742187 ], [ -68.632861962518376, 63.741119145917537 ], [ -68.858938631298756, 63.751874761562192 ], [ -68.911090732897577, 63.703216312440389 ], [ -68.789230376686476, 63.595132812223596 ], [ -68.670556055753167, 63.513691158726203 ], [ -68.555111715411812, 63.458913324605362 ], [ -68.373936171391136, 63.352181142799481 ], [ -68.208053596703849, 63.214698227398657 ], [ -68.141256719155749, 63.172323958204089 ], [ -67.915355831632056, 63.113689922764252 ], [ -67.797461540025367, 63.098089336231652 ], [ -67.675963732656228, 63.093562968871481 ], [ -67.664911486140866, 63.072634012994968 ], [ -67.723765248151579, 63.033676491977616 ], [ -67.736948842404502, 63.009594459808966 ], [ -67.468223246215928, 62.948246801218716 ], [ -67.366654638825764, 62.914145237417841 ], [ -67.268502779612817, 62.857554659087214 ], [ -67.212692230608823, 62.843503144879321 ], [ -66.979518393588947, 62.700823696077151 ], [ -66.921543537861751, 62.67808199599088 ], [ -66.714011791663793, 62.63178560750606 ], [ -66.644863839807257, 62.602067588794284 ], [ -66.530529118648857, 62.509980182937682 ], [ -66.458733461613193, 62.463112505368571 ], [ -66.357285703837022, 62.351908887845241 ], [ -66.281249323983346, 62.302679149639147 ], [ -66.095031055160931, 62.246385202179198 ], [ -66.015654831429842, 62.230257271876468 ], [ -65.980201949218042, 62.208866890201108 ], [ -66.004338913029429, 62.158329778898292 ], [ -66.026970749830255, 62.13719208277945 ], [ -66.133164601537487, 62.102409366608839 ], [ -66.116421436836276, 62.053915712415204 ], [ -66.05642509665698, 61.967486265758794 ], [ -66.058886034250861, 61.913840023478002 ], [ -66.123870167589175, 61.893064876201095 ], [ -66.256694879687288, 61.86826873267708 ], [ -66.323744442791906, 61.870279230800662 ], [ -66.424522034526888, 61.890746760878301 ], [ -66.551337224911379, 61.925573422363072 ], [ -66.803154861470588, 62.012618103417935 ], [ -67.181062590730363, 62.072856142825231 ], [ -67.322039158608192, 62.105046085459435 ], [ -67.3690057131342, 62.134093938130007 ], [ -67.440120217800128, 62.151243596987342 ], [ -68.378583388365286, 62.235168160735697 ], [ -68.535885640459639, 62.255635690813335 ], [ -68.633663964502091, 62.281310740620881 ], [ -68.724378079290688, 62.318982861198577 ], [ -69.08234562224294, 62.405181594955565 ], [ -69.12559879772104, 62.423990189423051 ], [ -69.366045584237099, 62.571866171626567 ], [ -69.545155698491484, 62.744593228996848 ], [ -69.604734558186124, 62.767741423239244 ], [ -69.799511176944378, 62.790483123325515 ], [ -69.962075880411362, 62.776167937232572 ], [ -70.070961382611884, 62.75720553416545 ], [ -70.236151818600902, 62.76337985080724 ], [ -70.344070523889542, 62.791515838208653 ], [ -70.571322729824161, 62.869189181015429 ], [ -70.801409408523142, 62.910475803684136 ], [ -71.002118644695216, 62.978250464472637 ], [ -71.105785640837297, 63.002255592341498 ], [ -71.096172603361211, 63.019668923083884 ], [ -70.946055410134704, 63.120699200375384 ], [ -70.99265941581875, 63.119303936650283 ], [ -71.25373852734063, 63.042509500127068 ], [ -71.347265142236509, 63.066130106496871 ], [ -71.501260509439092, 63.126434063875394 ], [ -71.617122330265119, 63.187199447052791 ], [ -71.855481714357808, 63.355279287448894 ], [ -71.992239532074706, 63.416176506568831 ], [ -71.973046416108176, 63.429876458263323 ], [ -71.819171898519571, 63.435457513163726 ], [ -71.69655348563893, 63.430239007105257 ], [ -71.614276871172194, 63.444081781070821 ], [ -71.455843027237805, 63.512251949686942 ], [ -71.387398200408086, 63.555032713037633 ], [ -71.380828375938719, 63.580301268689055 ], [ -71.513455334123037, 63.586563475959196 ], [ -71.54187696606661, 63.59880224595733 ], [ -71.565596449393311, 63.626762452102042 ], [ -71.626735367741205, 63.662577883155791 ], [ -71.725282734781729, 63.706138675833131 ], [ -71.837552026173839, 63.724947270300618 ], [ -72.222974404157796, 63.70887427164061 ], [ -72.290155803204939, 63.728001469635871 ], [ -72.288760539479838, 63.756983404335216 ], [ -72.213471229967155, 63.838743661360354 ], [ -72.172437292854951, 63.871658701678456 ], [ -72.159363561887474, 63.889896007061679 ], [ -72.174272009721818, 63.893411632195779 ], [ -72.226435097649187, 63.891368175086569 ], [ -72.449995897192977, 63.818122322683081 ], [ -72.498467578729517, 63.823494637341156 ], [ -72.586105521525766, 63.90080543130594 ], [ -72.63931231066482, 63.989069594829203 ], [ -72.678094050425472, 64.020018082337941 ], [ -72.729608944968746, 64.03048805344045 ], [ -72.913168522283485, 64.117170185653379 ], [ -73.17429157911954, 64.281866236857894 ], [ -73.27030110426638, 64.333490994686599 ], [ -73.377121176700626, 64.379589629257623 ], [ -73.454552820279403, 64.399277130008642 ], [ -73.443621423378033, 64.423512970776926 ], [ -73.278156329175417, 64.560248815836729 ], [ -73.27127888750681, 64.582518103795593 ], [ -73.413079430025448, 64.574146521445016 ], [ -73.62697226045043, 64.602513221745852 ], [ -73.728409031898067, 64.568257849345372 ], [ -73.792799903495009, 64.566214392236162 ], [ -73.867891459093897, 64.585363562888517 ], [ -73.910342632588282, 64.578123572377962 ], [ -73.950387800131509, 64.465832308328771 ], [ -73.981083602083714, 64.437718293584425 ], [ -74.025600205344389, 64.422656037150489 ], [ -74.064799425589712, 64.424677521602575 ], [ -74.09870323547679, 64.443716828969514 ], [ -74.097901233493076, 64.469919222547162 ], [ -74.130453724969229, 64.607786659447015 ], [ -74.205105827426351, 64.628122353582143 ], [ -74.415867554216277, 64.633472695583123 ], [ -74.461241091103389, 64.644689737026653 ], [ -74.512448368447423, 64.670156046591842 ], [ -74.556239874024186, 64.717342327688726 ], [ -74.592593635176598, 64.786171676017489 ], [ -74.634297738329977, 64.82395365988063 ], [ -74.681407115127058, 64.830666306621083 ], [ -74.719211071647294, 64.825140183363402 ], [ -74.747731580547764, 64.807309372136331 ], [ -74.813407852584362, 64.796257125620969 ], [ -74.916250874085634, 64.791983443817315 ], [ -74.919447895691974, 64.765506392026055 ], [ -74.823020890060448, 64.71688090188988 ], [ -74.729856824006518, 64.647370401191409 ], [ -74.640010629172906, 64.557095739544565 ], [ -74.694711558993959, 64.496583041923685 ], [ -74.893926654484034, 64.465733431371859 ], [ -75.067400782195293, 64.456680696651546 ], [ -75.215046051499385, 64.469402865105593 ], [ -75.32842496207445, 64.49043069793899 ], [ -75.487792643935094, 64.540759068999506 ], [ -75.715011890884071, 64.524378453140258 ], [ -75.766691580355499, 64.391938262541174 ], [ -75.815207207206228, 64.384654326716458 ], [ -76.031835633438689, 64.388115020207835 ], [ -76.118089298838385, 64.376326689680013 ], [ -76.406853958291379, 64.303157741576342 ], [ -76.494755572972679, 64.292973415015979 ], [ -76.561552450520779, 64.301608669251635 ], [ -76.626503624873479, 64.283931666624198 ], [ -76.723809536788522, 64.242018823228449 ], [ -76.856150850430694, 64.237624291810818 ], [ -77.023538552128528, 64.270857935656721 ], [ -77.165668684503487, 64.28506325846422 ], [ -77.282508288569943, 64.280361109847348 ], [ -77.402863517770498, 64.299894801998761 ], [ -77.526734372105182, 64.343774198203874 ], [ -77.627764649396681, 64.363461698954893 ], [ -77.760523443523525, 64.360154814063122 ], [ -77.791164313833008, 64.367076201045904 ], [ -77.984842299736854, 64.461075228069177 ], [ -78.045234147743756, 64.499263706088442 ], [ -78.174554221036288, 64.617740273107984 ], [ -78.197570579336173, 64.664629923334161 ], [ -78.200910423213571, 64.714760540480881 ], [ -78.189693381770056, 64.751806440331563 ], [ -78.144627462082184, 64.807726852621016 ], [ -78.095617450446966, 64.939244191622379 ], [ -78.055253679375966, 64.982903861256602 ], [ -77.994587173155466, 65.022597466286413 ], [ -77.876143565121581, 65.072925837346929 ], [ -77.447468011659538, 65.161552549712127 ], [ -77.360906729060602, 65.196533019796533 ], [ -77.363873037767505, 65.219791077324402 ], [ -77.461464594224708, 65.328160222083341 ], [ -77.460409906684475, 65.355911687985724 ], [ -77.427692620280155, 65.372138495245366 ], [ -77.358039297310597, 65.435441720316419 ], [ -77.326695301974297, 65.453107736615351 ], [ -77.251142320576548, 65.462874582691029 ], [ -77.094147685681435, 65.430860421313554 ], [ -76.958609350432923, 65.4180174032455 ], [ -76.778927947094246, 65.41388654371292 ], [ -76.481681842005216, 65.369710516637099 ], [ -76.066980898451249, 65.285467349360999 ], [ -75.828335869816414, 65.227031067834957 ], [ -75.648138109036168, 65.14083233407797 ], [ -75.519927654926576, 65.056028864046112 ], [ -75.501591472586483, 65.013083305767225 ], [ -75.560939619381685, 64.947044484888693 ], [ -75.590855392007256, 64.927664601336886 ], [ -75.589130538425835, 64.90503276453606 ], [ -75.555743085980325, 64.879192919800346 ], [ -75.452109048823871, 64.841619676179533 ], [ -75.427126137714609, 64.855857957972688 ], [ -75.435135171223251, 64.900792041718034 ], [ -75.413656898919541, 64.938519093938453 ], [ -75.362779211431842, 64.969061087291038 ], [ -75.357099279574541, 65.008743705992316 ], [ -75.396661048661826, 65.057577936370819 ], [ -75.445824868896651, 65.099699520008897 ], [ -75.504689617235911, 65.135141415892122 ], [ -75.772942801297091, 65.257023744760318 ], [ -75.79867278274736, 65.29750836544531 ], [ -75.708606861342872, 65.315701725514344 ], [ -75.316636631546643, 65.274832583330294 ], [ -75.16631069807778, 65.283918277036264 ], [ -75.109258693948306, 65.331467106975111 ], [ -75.047735254101369, 65.363964666808556 ], [ -74.981751364865531, 65.381432929193664 ], [ -74.849849504365125, 65.389079413860344 ], [ -74.665487925066657, 65.366941961843992 ], [ -74.57492761887768, 65.363657049609316 ], [ -74.494771365819972, 65.371666083117958 ], [ -74.390752807164475, 65.397560859496394 ], [ -74.236856316918789, 65.483913401852988 ], [ -74.138495717463499, 65.503447094004372 ], [ -73.989587020376845, 65.516982250770695 ], [ -73.877910990726107, 65.518838940294671 ], [ -73.675389010344261, 65.484319896009112 ], [ -73.550804044654228, 65.485253733935366 ], [ -73.56072469932954, 65.542920972463321 ], [ -73.6434078079524, 65.65320173838893 ], [ -73.746086034525518, 65.766679525920893 ], [ -73.826077492655074, 65.805186607467959 ], [ -74.033092881411463, 65.877059168803413 ], [ -74.276187373106652, 66.012762298980078 ], [ -74.401090942324473, 66.096950534613484 ], [ -74.433951050999852, 66.139017186608839 ], [ -74.416383911657846, 66.167076269710464 ], [ -74.374888548746796, 66.208154152136814 ], [ -73.93369956707302, 66.358073591449539 ], [ -73.584213469756818, 66.506949329550594 ], [ -73.430943200238147, 66.583172476989517 ], [ -73.357378744306885, 66.636291375500207 ], [ -73.280793048025998, 66.67495226564688 ], [ -73.201109207095669, 66.699188106415164 ], [ -73.033260079598989, 66.728170041114481 ], [ -72.985337714489646, 66.765380735893331 ], [ -72.974845770730028, 66.828530152364777 ], [ -72.946786687628418, 66.883253054842925 ], [ -72.788836242149955, 67.030634652261966 ], [ -72.667733942608393, 67.070482065891383 ], [ -72.485152148534084, 67.098079723194161 ], [ -72.36492875527604, 67.13342274212053 ], [ -72.220030068107974, 67.254294328762654 ], [ -72.234136513958589, 67.284418841630554 ], [ -72.301087200106309, 67.307259418673738 ], [ -72.352887739191715, 67.341888326244714 ], [ -72.576437552406972, 67.658657137156609 ], [ -72.725324276836545, 67.811619789476055 ], [ -72.90397296529207, 67.944796064087569 ], [ -73.063439524109612, 68.107009205041152 ], [ -73.328232014679401, 68.266739435743744 ], [ -73.331461995271368, 68.309003841652867 ], [ -73.284484454416813, 68.3569701520764 ], [ -73.306885578318216, 68.367813658349434 ], [ -73.580203459838216, 68.297742854895176 ], [ -73.64449545447826, 68.294534846960318 ], [ -73.749447851060012, 68.324977963355991 ], [ -73.82049643775467, 68.362957701132927 ], [ -73.879361186093931, 68.429414002496173 ], [ -73.873362650708856, 68.464141787024033 ], [ -73.834427102348585, 68.497056827342163 ], [ -73.782494727320639, 68.578037055040681 ], [ -73.780605078811064, 68.619279732395228 ], [ -73.798435890038121, 68.658654733897265 ], [ -73.822100441722114, 68.685988719314963 ], [ -73.851554788548825, 68.701391551933796 ], [ -73.935171735097938, 68.711004589409868 ], [ -74.072995226683616, 68.714926708700119 ], [ -74.117973255743138, 68.700919139806388 ], [ -73.966043318306845, 68.578762152724579 ], [ -73.989279403177605, 68.548637639856679 ], [ -74.182825553138926, 68.535454045603757 ], [ -74.270111933421759, 68.541188909103795 ], [ -74.349982541937337, 68.556053411623935 ], [ -74.422426392357096, 68.579948676207351 ], [ -74.647942758381745, 68.707532909589929 ], [ -74.695821178176914, 68.755543165327623 ], [ -74.680528208843526, 68.790292922512606 ], [ -74.699952037709494, 68.8083544466391 ], [ -74.746028699623423, 68.796708938382352 ], [ -74.808343155125527, 68.795906936398637 ], [ -74.892992816557779, 68.808156692725305 ], [ -74.910406147300179, 68.823142044859452 ], [ -74.752378797521914, 68.892070270145098 ], [ -74.743260144830316, 68.913361774863546 ], [ -74.816099503077666, 68.936125447606912 ], [ -74.925083882235086, 68.940706746609806 ], [ -74.954021871620228, 68.961064413402028 ], [ -74.917283588968786, 68.982872275562045 ], [ -74.769330702465453, 69.02067623208228 ], [ -74.716728161396318, 69.045527307249017 ], [ -74.805475723375523, 69.06423702475962 ], [ -74.854859270181237, 69.06584102872705 ], [ -74.954439352104913, 69.024620324029598 ], [ -75.104248928132193, 68.940596883324361 ], [ -75.213288238932336, 68.9093847239306 ], [ -75.362735266117667, 68.948298299633791 ], [ -75.456986978697458, 68.961273153644356 ], [ -75.522674237062603, 68.952747762694145 ], [ -75.623023361984366, 68.887730670370189 ], [ -75.8422335754247, 68.840192826759875 ], [ -76.234720162662498, 68.728022412324663 ], [ -76.403393264799988, 68.692349803541987 ], [ -76.585085166262232, 68.6987548330832 ], [ -76.619450401948171, 68.721386669884026 ], [ -76.616253380341831, 68.759882765102532 ], [ -76.603663047830295, 68.791567336623729 ], [ -76.581723349727739, 68.816319534833553 ], [ -76.574549277188453, 68.846707719586533 ], [ -76.587666953470105, 68.974445761568717 ], [ -76.55723482340295, 69.009481163295845 ], [ -76.495173053457364, 69.03041011917233 ], [ -76.380915236598767, 69.052426721574705 ], [ -76.089228213753046, 69.026147423697239 ], [ -75.953700864833081, 69.030827599657016 ], [ -75.858570245969773, 69.060281946483741 ], [ -75.7633517364781, 69.102908901234827 ], [ -75.667990404715354, 69.158829313524279 ], [ -75.64773161488003, 69.212574432761983 ], [ -75.74906950937077, 69.299542209517057 ], [ -75.787148124104604, 69.318658421183756 ], [ -76.046458436730887, 69.386356177672496 ], [ -76.189786078917152, 69.411009498925438 ], [ -76.31623872045968, 69.421655251284648 ], [ -76.407963577474334, 69.441134011793338 ], [ -76.464938677304005, 69.469456766780013 ], [ -76.520364704808969, 69.516588116234175 ], [ -76.524935017483315, 69.54870115456859 ], [ -76.516102009333864, 69.590921615163523 ], [ -76.4632907280224, 69.619958481505591 ], [ -76.231105660571487, 69.653477769893613 ], [ -76.234104928264031, 69.662102037800736 ], [ -76.423805863234918, 69.6868102906964 ], [ -76.513256550240939, 69.683909899960753 ], [ -76.590050986764169, 69.656268297343814 ], [ -76.686532924038417, 69.591284164005486 ], [ -76.742343473042411, 69.572915022679751 ], [ -76.915553928868619, 69.611180404998834 ], [ -77.019638405495371, 69.616838364199054 ], [ -77.089917949191957, 69.635130601224972 ], [ -77.128798565909506, 69.652752672209715 ], [ -77.105079082582805, 69.670759264693487 ], [ -77.018704567569131, 69.689084460705033 ], [ -76.868609346999705, 69.74514769526553 ], [ -76.85858981536748, 69.77540404407597 ], [ -76.962278784166656, 69.824831536195859 ], [ -77.015968971761652, 69.836147454596272 ], [ -77.232465562051587, 69.854604486550357 ], [ -77.494280757585926, 69.836257317881717 ], [ -77.591641601143692, 69.845606683472738 ], [ -77.635312257106477, 69.90043944923633 ], [ -77.663008791366138, 69.965709227116804 ], [ -77.67473120392269, 70.041514894071042 ], [ -77.721939457676655, 70.170780035720867 ], [ -77.774003668647126, 70.238499764866674 ], [ -77.842525399776648, 70.247080087459608 ], [ -78.156778341451954, 70.219119881314896 ], [ -78.231441430237624, 70.218790291458589 ], [ -78.282813502509811, 70.229150399275653 ], [ -78.490729770206812, 70.315557873274969 ], [ -78.574786169897678, 70.346198743584438 ], [ -78.62144510722446, 70.353405775109366 ], [ -78.772649946976841, 70.445317399709268 ], [ -78.830844529274913, 70.463192156250528 ], [ -78.899882617846004, 70.508543720480532 ], [ -78.979775199018661, 70.581328147085173 ], [ -79.066380426931758, 70.603542503401343 ], [ -79.159764219556578, 70.575252707400296 ], [ -79.253191957495559, 70.534713155072581 ], [ -79.346652654420183, 70.481901873761103 ], [ -79.397321601665539, 70.437253434557903 ], [ -79.40522077188875, 70.400712905820257 ], [ -79.347399724761175, 70.372291273876669 ], [ -79.017546196553255, 70.32521485606523 ], [ -78.933830373047257, 70.293717052129296 ], [ -78.862825731666774, 70.241883554058262 ], [ -78.809838669098596, 70.178558356330086 ], [ -78.774847212685657, 70.10363159565938 ], [ -78.777824507721107, 70.04763427907011 ], [ -78.818803513190574, 70.010456543276888 ], [ -78.889654345971451, 69.977508543973158 ], [ -79.092890437708661, 69.92534545604579 ], [ -79.303322574642266, 69.894803462693204 ], [ -79.51542463351457, 69.887618403825371 ], [ -79.615905594378859, 69.894726558393387 ], [ -80.162134863262722, 69.995987548584338 ], [ -80.260418558418209, 69.996756591582425 ], [ -80.386794295660934, 70.010456543276888 ], [ -80.670318476398393, 70.052083742130463 ], [ -80.825764038968799, 70.056654054804824 ], [ -81.098301891162166, 70.091173099090355 ], [ -81.559562895086003, 70.111223148683337 ], [ -81.651935945484752, 70.094611819924665 ], [ -81.529229641975761, 70.0480297868977 ], [ -81.421739403500325, 70.024617920770226 ], [ -81.329498189044102, 70.024354248885174 ], [ -81.196849258202704, 69.982803954331416 ], [ -81.023759651990474, 69.899999996094579 ], [ -80.924827763450907, 69.850594476631755 ], [ -80.842858766183411, 69.791652823992706 ], [ -80.840276978975552, 69.771372061500301 ], [ -80.921718632472931, 69.730887440815309 ], [ -81.564682524187546, 69.942703855145453 ], [ -81.957729414181102, 69.868754877715162 ], [ -82.138707204287982, 69.841212152055107 ], [ -82.293834163330601, 69.836927483922921 ], [ -82.48772088947679, 69.86596435026496 ], [ -82.925372273359372, 69.968159178382137 ], [ -83.091144984761229, 70.003897705136069 ], [ -83.149954801457767, 70.009061279551787 ], [ -83.530740948796108, 69.96477538919055 ], [ -83.859089349993468, 69.96273193208134 ], [ -84.521861592073108, 70.005238037218447 ], [ -84.765131865024998, 70.033659669162034 ], [ -84.829204133094166, 70.063322756231088 ], [ -84.909096714266823, 70.07819824507979 ], [ -85.052655069352525, 70.07819824507979 ], [ -85.432375542822086, 70.111376957282943 ], [ -85.780026923271421, 70.036658936854565 ], [ -86.198199546645327, 70.105125736341364 ], [ -86.322015469337273, 70.145434575769656 ], [ -86.361445402482033, 70.173032233072405 ], [ -86.483086032122259, 70.288575450370672 ], [ -86.499829196823455, 70.350384534759741 ], [ -86.465365084180632, 70.406250015406471 ], [ -86.431021821151788, 70.444537370382648 ], [ -86.396865325708191, 70.465312517659527 ], [ -86.624315285556605, 70.401284194904548 ], [ -86.704163921415088, 70.390737319502222 ], [ -86.809270126596445, 70.388265395579793 ], [ -87.122479367060052, 70.411951919920853 ], [ -87.171983763479744, 70.399833999536725 ], [ -87.155811887862839, 70.377465834620949 ], [ -87.074007685523497, 70.344803479859337 ], [ -87.063263056207376, 70.325115979108318 ], [ -87.237868775758685, 70.309713146489514 ], [ -87.502452526086131, 70.32568726819261 ], [ -87.617797989470574, 70.318754894881295 ], [ -87.670202776625914, 70.309812023446398 ], [ -87.789470359300608, 70.258242197260415 ], [ -87.838150781079491, 70.246563730018039 ], [ -87.900706935809581, 70.251892099361925 ], [ -88.178309485461767, 70.368621840142936 ], [ -88.402122970562075, 70.442471940616343 ], [ -88.66298235551308, 70.470838640917208 ], [ -88.782733336643716, 70.494481219944106 ], [ -88.848420595008861, 70.522880879230598 ], [ -89.208299759127783, 70.759713163655647 ], [ -89.257540483662424, 70.810711700757338 ], [ -89.371534628635956, 70.996127967596038 ], [ -89.409756065640863, 71.035711709340404 ], [ -89.455909631854595, 71.061705362675724 ], [ -89.365514120593787, 71.067187540619244 ], [ -89.025157662297715, 71.044599649132579 ], [ -88.695666682931758, 71.045588418701556 ], [ -88.516666431962818, 71.030548134924686 ], [ -88.309101726779232, 70.984328650739684 ], [ -88.038607331695061, 70.951325719793203 ], [ -87.844918359462653, 70.944404332810421 ], [ -87.534444714806526, 70.956599157494367 ], [ -87.18159680095583, 70.987558631331638 ], [ -87.14010143804478, 71.01160770451466 ], [ -87.36861707176196, 71.052850381869206 ], [ -87.572292616640937, 71.10755131169023 ], [ -87.760246725373321, 71.178501021428019 ], [ -87.872428126137081, 71.208548629996102 ], [ -88.060645906754516, 71.227225388521077 ], [ -88.589494803881621, 71.240299119488554 ], [ -89.079342234677199, 71.287946826384285 ], [ -89.417688194849688, 71.352183889381621 ], [ -89.693324191692497, 71.423496147961345 ], [ -89.805384742842264, 71.462299860379062 ], [ -89.845748513913279, 71.492281550975918 ], [ -89.88850730460689, 71.585764220557621 ], [ -89.933683087580206, 71.742703923810012 ], [ -89.977342757214444, 71.848073800876421 ], [ -90.019541245152311, 71.901807933785591 ], [ -90.025177231695437, 71.948785474640147 ], [ -89.931507794528486, 72.049035722605026 ], [ -89.663792940565969, 72.157976156448257 ], [ -89.657267061410778, 72.175048911005803 ], [ -89.710539768521087, 72.180113608464609 ], [ -89.822885964213015, 72.207788170067204 ], [ -89.858668436281135, 72.248327722394919 ], [ -89.873115458316619, 72.312641689692043 ], [ -89.874049296242859, 72.367210783570556 ], [ -89.86153586803114, 72.411914154416479 ], [ -89.816832497185217, 72.467724703420487 ], [ -89.701519992786388, 72.568051855685155 ], [ -89.536439420082814, 72.689824321267906 ], [ -89.357691854670392, 72.80413706976924 ], [ -89.327105916003632, 72.841545518461885 ], [ -89.311395466185573, 72.942993276238042 ], [ -89.287664996530324, 73.016942253668361 ], [ -89.263231401848259, 73.06897350565319 ], [ -89.225328568371125, 73.108040889955987 ], [ -89.114762157903357, 73.182198607628635 ], [ -88.976784857718059, 73.252478151325221 ], [ -88.760936460812232, 73.31241955986178 ], [ -88.742534360500869, 73.334589970863789 ], [ -88.739590024451047, 73.36528577281598 ], [ -88.727164486867679, 73.388181281501858 ], [ -88.705202816108027, 73.40327649692145 ], [ -88.170014807410979, 73.595306533543692 ], [ -87.926414944602755, 73.673331438863869 ], [ -87.719751118359781, 73.72289076692627 ], [ -87.472382944860939, 73.759420309335383 ], [ -86.768752546925811, 73.833995507492716 ], [ -86.406401458884474, 73.854770654769595 ], [ -85.950765455175215, 73.850167383109607 ], [ -85.110487102808634, 73.808155662757002 ], [ -85.009324989574608, 73.77862441163046 ], [ -84.983562049138698, 73.76371596379613 ], [ -84.946801793830161, 73.721649311800803 ], [ -84.974498328089823, 73.694776752181923 ], [ -85.204299362246658, 73.603568252608852 ], [ -85.493591365469783, 73.527707654011891 ], [ -85.681897036715569, 73.461460092890974 ], [ -86.000533523479959, 73.312529423147225 ], [ -86.086468585351881, 73.260234499277345 ], [ -86.481383151197917, 72.960252798380822 ], [ -86.574657080537293, 72.910539661718786 ], [ -86.62933603770125, 72.870802111374786 ], [ -86.667777201277033, 72.762564802558359 ], [ -86.656307474277, 72.724035748354225 ], [ -86.594608253173362, 72.661117044782202 ], [ -86.380297942263695, 72.524666844264544 ], [ -86.322553799435937, 72.460825289094799 ], [ -86.324025967460841, 72.402169280997867 ], [ -86.348053067986783, 72.262258386988833 ], [ -86.350997404036605, 72.191330649908139 ], [ -86.341340421246343, 72.123193440277674 ], [ -86.297153407841989, 72.025788651405719 ], [ -86.218480309137718, 71.899127269620834 ], [ -86.036140214291379, 71.770971747153965 ], [ -85.75011115064585, 71.641333070333644 ], [ -85.537152158147123, 71.555430967447364 ], [ -85.327192433340912, 71.492127742376283 ], [ -85.078725626987662, 71.39848027786644 ], [ -85.023409462768143, 71.353238576921854 ], [ -85.137612347984003, 71.30340459064584 ], [ -85.405371147260695, 71.226763962722231 ], [ -85.757263250528069, 71.193947799361013 ], [ -85.945415113174235, 71.162658735667435 ], [ -86.179467856477643, 71.095916789762043 ], [ -86.473220309089655, 71.042644082651719 ], [ -86.589356788129294, 71.010805702530945 ] ] ], [ [ [ -79.53728742731731, 73.65446791275366 ], [ -79.366779608312953, 73.641350236471993 ], [ -78.286537867886253, 73.665838762796795 ], [ -78.062933123028287, 73.647645402727761 ], [ -77.382143302136342, 73.53665052544676 ], [ -77.20654881301607, 73.499549693953355 ], [ -77.119778790174806, 73.450473764346896 ], [ -77.041490212969578, 73.373042120768105 ], [ -77.005323219402428, 73.356035284181843 ], [ -76.758669157258936, 73.309991581253541 ], [ -76.657276331125487, 73.254181032249534 ], [ -76.62157076335717, 73.225319947164195 ], [ -76.569792196928859, 73.159259153628568 ], [ -76.458456743462989, 73.121839718607362 ], [ -76.331147168294024, 73.100504268574753 ], [ -76.289519969440448, 73.080992549080435 ], [ -76.309548046376335, 72.997924918958518 ], [ -76.255286569697049, 72.959220083497684 ], [ -76.135041203781924, 72.912418323899828 ], [ -76.089997256751133, 72.881184191848973 ], [ -76.183403022033033, 72.843050645472402 ], [ -76.400547805707063, 72.820671494228094 ], [ -77.013562965810493, 72.843973497070124 ], [ -77.835911629993106, 72.896839710024295 ], [ -78.314201443160286, 72.881854357890148 ], [ -78.554065954263521, 72.857695421421681 ], [ -79.134155087720288, 72.771628523607262 ], [ -79.319307682673923, 72.757708845341881 ], [ -79.500516185680226, 72.755973005431912 ], [ -79.820701744769337, 72.826329453428286 ], [ -79.93684921013751, 72.863617052506953 ], [ -79.975323332698935, 72.892500110249387 ], [ -80.051590425452048, 72.976995963082032 ], [ -80.114432224724268, 73.078223994287328 ], [ -80.146424413444677, 73.161324583394844 ], [ -80.183316504695739, 73.224682740108648 ], [ -80.292718364337844, 73.245611695985161 ], [ -80.617913689243068, 73.270825319993861 ], [ -80.726876095743393, 73.305443241236304 ], [ -80.77640246482018, 73.334183476707636 ], [ -80.824160035001356, 73.380688605434813 ], [ -80.82294055253297, 73.428951546728996 ], [ -80.798012573066416, 73.471534556165921 ], [ -80.776973753904471, 73.481971568282802 ], [ -80.735840939835384, 73.483081187465757 ], [ -80.826994507765733, 73.534683972637367 ], [ -80.858525270687295, 73.59142835956763 ], [ -80.860722536396111, 73.670540911413667 ], [ -80.848857301568486, 73.721231831316118 ], [ -80.822863648233152, 73.74345717396082 ], [ -80.762768431096958, 73.757772360053764 ], [ -80.621374382734444, 73.767330465887142 ], [ -80.41229356421178, 73.765418844720472 ], [ -80.120276951509723, 73.707081440151313 ], [ -79.889333339184304, 73.70150038525091 ], [ -79.53728742731731, 73.65446791275366 ] ] ], [ [ [ -105.288917437984352, 72.91994395895253 ], [ -105.33937764498738, 72.914879261493695 ], [ -105.434074303873217, 72.937972524093396 ], [ -105.572979948820475, 72.989289664722861 ], [ -105.80014975729101, 73.093319209706891 ], [ -106.071039660202757, 73.196381957779067 ], [ -106.112639393234971, 73.258092165211252 ], [ -106.180024039360191, 73.304102909153897 ], [ -106.525714360164415, 73.413394905510557 ], [ -106.750379285726893, 73.457735727514546 ], [ -106.921529804951078, 73.479851206873803 ], [ -106.949665792352505, 73.510371227569294 ], [ -106.830991471419182, 73.599074844234309 ], [ -106.69482691544367, 73.669925677015186 ], [ -106.613951057866316, 73.695600726822732 ], [ -106.362105955485745, 73.718606098794083 ], [ -105.512313442599989, 73.76575942090534 ], [ -105.317959797490673, 73.767121725644813 ], [ -105.114432568047036, 73.744412984544169 ], [ -104.8346547253431, 73.647282853885798 ], [ -104.718254574418424, 73.636285539013187 ], [ -104.648799005362648, 73.614422745210419 ], [ -104.587511771579415, 73.578090956715101 ], [ -104.555058157060159, 73.54108900217858 ], [ -104.55232256125268, 73.465590952423554 ], [ -104.582859061440985, 73.353925909101378 ], [ -104.621750664487081, 73.311134159422124 ], [ -104.790989562544596, 73.167630735979174 ], [ -104.968627508774077, 73.088661006404209 ], [ -105.002575263975331, 73.037552606017073 ], [ -105.074612620238966, 72.997046012674986 ], [ -105.200653274461089, 72.94733287601295 ], [ -105.288917437984352, 72.91994395895253 ] ] ], [ [ [ -96.782329589069718, 72.936632192011018 ], [ -96.943790166518014, 72.926711537335706 ], [ -97.092775767904484, 72.996936149389541 ], [ -97.097659190942338, 73.062392694855276 ], [ -97.087683604624303, 73.098482784122638 ], [ -97.069210093177404, 73.130156369315245 ], [ -97.015003548140839, 73.157292600819176 ], [ -96.862430910484719, 73.188812377412177 ], [ -96.793156615849924, 73.165455442927424 ], [ -96.767756224255976, 73.137319455526011 ], [ -96.744426755592585, 73.126289181667744 ], [ -96.645983758673225, 73.101899532299853 ], [ -96.5984898603771, 73.073829462869668 ], [ -96.603505119357479, 73.04154064327858 ], [ -96.635387444792443, 72.992442741015026 ], [ -96.6706315867619, 72.960922964421997 ], [ -96.709232052101584, 72.946970327171016 ], [ -96.782329589069718, 72.936632192011018 ] ] ], [ [ [ -100.308342296818608, 70.49579957936939 ], [ -100.321234753365104, 70.487691668903835 ], [ -100.537269917856193, 70.525001240639597 ], [ -100.620672630998698, 70.546907979756526 ], [ -100.647753930859892, 70.563134787016139 ], [ -100.666925074169342, 70.596236594919503 ], [ -100.678295924212478, 70.646180444480962 ], [ -100.635300927455162, 70.670317408292334 ], [ -100.537940083897382, 70.668581568382365 ], [ -100.433916032077619, 70.64943239773001 ], [ -100.276119395198791, 70.594610618294979 ], [ -100.321080944765498, 70.578350852049709 ], [ -100.323223278831591, 70.542414571381983 ], [ -100.305502330889965, 70.50841188453802 ], [ -100.308342296818608, 70.49579957936939 ] ] ], [ [ [ -86.913035999695424, 70.113244633135452 ], [ -86.798778182836827, 70.10527954494097 ], [ -86.691189067404508, 70.115046391016676 ], [ -86.61274668159966, 70.105697025425656 ], [ -86.563396093779588, 70.077220461839374 ], [ -86.53088754761761, 70.047667238055737 ], [ -86.515232029442274, 70.017048340403363 ], [ -86.557661230279578, 69.995284423557507 ], [ -86.73434336592571, 69.976322020490386 ], [ -86.854929308025703, 69.985759276709786 ], [ -86.983985709433185, 70.011126709318091 ], [ -87.04380626835578, 69.999865722560401 ], [ -87.190792357947231, 70.018564453742442 ], [ -87.263917360736727, 70.043964845336376 ], [ -87.323243534874848, 70.080120852574993 ], [ -87.323166630575031, 70.102236331934279 ], [ -87.16813854848931, 70.127241215700622 ], [ -87.107263302026482, 70.146676030895122 ], [ -86.913035999695424, 70.113244633135452 ] ] ], [ [ [ -97.439471337770499, 69.642700181591863 ], [ -97.408649193040034, 69.630736069807341 ], [ -97.350690816805667, 69.640865464724982 ], [ -97.305734760403226, 69.673472887843872 ], [ -97.278450213463969, 69.679625231828567 ], [ -97.236097916926482, 69.673472887843872 ], [ -97.09634083151704, 69.614970688346574 ], [ -96.989059333283961, 69.553634016084885 ], [ -96.875218996910036, 69.510018291764823 ], [ -96.694532344509582, 69.471104716061632 ], [ -96.2999583548484, 69.344399388962586 ], [ -96.183733985180424, 69.258662081004474 ], [ -96.060978243192977, 69.12544186107877 ], [ -95.95137313647281, 69.023741417746066 ], [ -95.854891199198562, 68.953571737334954 ], [ -95.751361532163287, 68.897651325045501 ], [ -95.585478957475985, 68.83512812930104 ], [ -95.437526070972666, 68.88060054314505 ], [ -95.374173407423129, 68.89212520178782 ], [ -95.319549381901894, 68.873217730363422 ], [ -95.267770815473568, 68.82608638090926 ], [ -95.295159732534003, 68.80504756174733 ], [ -95.359495672488222, 68.778361769713712 ], [ -95.465590647238557, 68.747281446262463 ], [ -95.614208206618798, 68.74500727625383 ], [ -95.685624835319686, 68.735855664576604 ], [ -95.802129356365541, 68.68645014511381 ], [ -95.894634242706829, 68.627233834261148 ], [ -96.024003754477818, 68.60728266162505 ], [ -96.267609110450309, 68.507889347286635 ], [ -96.401576400717005, 68.470700625164881 ], [ -96.598824943397702, 68.460834902132262 ], [ -97.008389778357298, 68.538684026195739 ], [ -97.263668108407884, 68.527752629294355 ], [ -97.472029322410918, 68.543726750997479 ], [ -97.704807651603218, 68.62593744749293 ], [ -97.885362468061146, 68.67245356254864 ], [ -98.235029839798329, 68.739371289710732 ], [ -98.257974786962677, 68.74926997172895 ], [ -98.273064509217988, 68.77187983587271 ], [ -98.280194636443113, 68.807167923156328 ], [ -98.296036922203697, 68.830788529526131 ], [ -98.320558407514113, 68.842719682325026 ], [ -98.375594420355753, 68.841686967441888 ], [ -98.431816956680166, 68.818362991942763 ], [ -98.539664250833283, 68.798258010707059 ], [ -98.703816478774868, 68.802773391738697 ], [ -98.775255080132851, 68.816726028989706 ], [ -98.829620926933302, 68.838643754435168 ], [ -98.859130205402749, 68.864351763228342 ], [ -98.863727983898457, 68.893784137397972 ], [ -98.87886714463221, 68.916470905841521 ], [ -98.904498249125595, 68.932434041216112 ], [ -98.964005697684684, 68.932851521700769 ], [ -99.057383997145223, 68.917657429324294 ], [ -99.0938421284188, 68.898892780170968 ], [ -99.073380091505427, 68.876568560569382 ], [ -99.090639613648193, 68.863341021002299 ], [ -99.254011812263158, 68.863187212402664 ], [ -99.317990696539695, 68.876260943370141 ], [ -99.440850808648321, 68.917657429324294 ], [ -99.494694804842922, 68.95959224537711 ], [ -99.564046003777534, 69.034134484548787 ], [ -99.557382795515537, 69.054283411098652 ], [ -99.513300152232347, 69.099602016343056 ], [ -99.455731790661289, 69.131176724578779 ], [ -99.085470546068194, 69.149732633489748 ], [ -98.912199665434997, 69.167585417373914 ], [ -98.723630322304146, 69.219133270902802 ], [ -98.503541202580294, 69.308276340709597 ], [ -98.455975893148633, 69.334687474529602 ], [ -98.450367372426868, 69.354056371752847 ], [ -98.466594179686496, 69.374985327629332 ], [ -98.535374089536802, 69.426302468258825 ], [ -98.558527776943492, 69.46144773327137 ], [ -98.536719914783461, 69.478037089372947 ], [ -98.448406312781756, 69.47953123005496 ], [ -98.494862003030462, 69.49935056674849 ], [ -98.534390813132106, 69.527431622507208 ], [ -98.548244573426217, 69.544954816535039 ], [ -98.54601984189604, 69.572915022679751 ], [ -98.475817202499272, 69.579056380335913 ], [ -98.38933831736442, 69.565059797770743 ], [ -98.222318657672815, 69.484540995871072 ], [ -98.155736013531325, 69.468830546052999 ], [ -98.041346360730202, 69.456635721369054 ], [ -98.162970510877614, 69.512193584816544 ], [ -98.288824397514503, 69.629011216225905 ], [ -98.304512874675467, 69.669287096668569 ], [ -98.301227962440777, 69.691710193227067 ], [ -98.268208552001497, 69.75445311554239 ], [ -98.238649835053607, 69.780029288393052 ], [ -98.200510795512784, 69.796981193336592 ], [ -98.080754321217881, 69.833049309946858 ], [ -97.888954997495063, 69.858273920284091 ], [ -97.790742713475126, 69.861602777832957 ], [ -97.691190097372811, 69.841267083697829 ], [ -97.60434866339601, 69.802199699395032 ], [ -97.411362816190433, 69.738478993839266 ], [ -97.382551169583536, 69.712386463547062 ], [ -97.385704245875701, 69.70024657050584 ], [ -97.460142114926214, 69.682723376478009 ], [ -97.469447535203059, 69.666804186417608 ], [ -97.439471337770499, 69.642700181591863 ] ] ], [ [ [ -79.430654122468326, 69.787785636345177 ], [ -79.390290351397326, 69.730426015016462 ], [ -79.364966864103181, 69.71233153190434 ], [ -79.402430244438548, 69.685151355086248 ], [ -79.552844068535748, 69.630845933092786 ], [ -79.881708827174705, 69.608675522090806 ], [ -80.04751449756219, 69.634306626584163 ], [ -79.971137541523632, 69.556325666578175 ], [ -79.954493253779333, 69.523487530559891 ], [ -79.977850188264071, 69.509688701908487 ], [ -80.046866304178081, 69.513841534098162 ], [ -80.161486669878627, 69.535967999785981 ], [ -80.227349709500473, 69.562423078920148 ], [ -80.244499368357808, 69.593173812515062 ], [ -80.26863633216918, 69.599985336212427 ], [ -80.299694682963349, 69.582879622669253 ], [ -80.32961045558892, 69.586757796645315 ], [ -80.397824569519202, 69.632592759331288 ], [ -80.448054063622806, 69.649698472874434 ], [ -80.778237181687047, 69.676988512977971 ], [ -80.794782592474448, 69.689238269304639 ], [ -80.777545042988763, 69.710375965423481 ], [ -80.726590451201247, 69.740445546648658 ], [ -80.652509637828416, 69.750574941566327 ], [ -80.465939806492585, 69.737083730114165 ], [ -80.450690782473387, 69.744785146423595 ], [ -80.438309190204194, 69.782720938886342 ], [ -80.424235703339207, 69.797596427735044 ], [ -80.294937602703754, 69.793773185401704 ], [ -80.213649757805996, 69.801936027509981 ], [ -80.168825537346081, 69.782435294344197 ], [ -80.124616551284646, 69.737237538713799 ], [ -80.061774752012425, 69.745510244107493 ], [ -79.970851896981486, 69.738951405966674 ], [ -79.869590906790563, 69.75554076206825 ], [ -79.714815510261346, 69.795684806568374 ], [ -79.593976882604849, 69.810516350102915 ], [ -79.430654122468326, 69.787785636345177 ] ] ], [ [ [ -78.029084244783931, 69.714891346455119 ], [ -77.977822035797175, 69.664892565250938 ], [ -77.969164808904438, 69.638953843558312 ], [ -78.039982682699673, 69.608411850205727 ], [ -78.307203151877701, 69.551832258203632 ], [ -78.470086458872458, 69.502525615697749 ], [ -78.552407018653355, 69.49157224613927 ], [ -78.662039591194883, 69.502635478983194 ], [ -78.79533671542039, 69.479717997640194 ], [ -78.848202928374576, 69.482783183304008 ], [ -78.78929423472114, 69.523146954375022 ], [ -78.578554480588309, 69.638800034958706 ], [ -78.401872344942163, 69.650632310800688 ], [ -78.344183133757127, 69.67481321992625 ], [ -78.295502711978244, 69.667122789945381 ], [ -78.267333765591175, 69.687139880552735 ], [ -78.262455835717603, 69.716824940278855 ], [ -78.200745628285418, 69.739511708722432 ], [ -78.145198751166475, 69.739204091523192 ], [ -78.029084244783931, 69.714891346455119 ] ] ], [ [ [ -67.914707638247961, 69.540944806616437 ], [ -67.940261838441529, 69.534880353260093 ], [ -68.202340705860919, 69.580407698746825 ], [ -68.221412972213457, 69.616728500913609 ], [ -68.093279422403683, 69.657037340341901 ], [ -67.989096068820018, 69.678746325545035 ], [ -67.908818966148317, 69.681844470194477 ], [ -67.82908019357528, 69.675021960168579 ], [ -67.754614858703405, 69.631461167491238 ], [ -67.844900506678769, 69.591745589804333 ], [ -67.914707638247961, 69.540944806616437 ] ] ], [ [ [ -95.513672314111787, 69.573640120363677 ], [ -95.38091901314921, 69.50661252991614 ], [ -95.382078070810607, 69.47404905211144 ], [ -95.39941449725319, 69.4197985617607 ], [ -95.437449166672849, 69.378457007449271 ], [ -95.496231517548026, 69.350079320819873 ], [ -95.578530104671842, 69.335819066369652 ], [ -95.684361407537111, 69.33572018941274 ], [ -95.730146931744628, 69.347552465254751 ], [ -95.695908038836961, 69.389564185607355 ], [ -95.670178057386693, 69.402022682176352 ], [ -95.665832964447503, 69.43896970507015 ], [ -95.682834307869484, 69.500306377331839 ], [ -95.704103839930852, 69.538033429552257 ], [ -95.763605795325674, 69.559632551469946 ], [ -95.806188804762584, 69.560511457753478 ], [ -95.817762901883796, 69.540582257774503 ], [ -95.798333579853562, 69.49979001989027 ], [ -95.811819298141444, 69.447022683892982 ], [ -95.858225549911694, 69.382225318139916 ], [ -95.89344222605979, 69.351738256430053 ], [ -95.956047819268321, 69.367141089048857 ], [ -95.985947112401078, 69.391915259915805 ], [ -95.977910613071074, 69.432718484128571 ], [ -95.99478012055053, 69.46966550702237 ], [ -95.978838957833048, 69.50883176828205 ], [ -95.936206509917682, 69.567015364251574 ], [ -95.875820155075061, 69.605983871597488 ], [ -95.797740318112176, 69.625726303991229 ], [ -95.706630695496003, 69.624331040266128 ], [ -95.602507766719341, 69.601798080422185 ], [ -95.513672314111787, 69.573640120363677 ] ] ], [ [ [ -101.171724898113425, 69.397078834331523 ], [ -101.253501634631391, 69.388476539081495 ], [ -101.268514452586899, 69.390596900490493 ], [ -101.261516161304314, 69.417832008951308 ], [ -101.267613573646287, 69.431477029003076 ], [ -101.289520312763216, 69.441243875078783 ], [ -101.217768601041726, 69.462941873953383 ], [ -101.207304123103469, 69.4798388472542 ], [ -101.230144700146653, 69.492813701264765 ], [ -101.328488820109115, 69.517412090874984 ], [ -101.356492971568017, 69.539681378833876 ], [ -101.351301931330937, 69.559215070985289 ], [ -101.312904713069315, 69.576068098971916 ], [ -101.244871873560015, 69.573530257078232 ], [ -101.098347209767411, 69.540769025359737 ], [ -101.031138344898906, 69.495450420115361 ], [ -101.000623817367682, 69.461909159070217 ], [ -101.049150430546959, 69.456954324896827 ], [ -101.086850016946016, 69.443353250159248 ], [ -101.126950116131965, 69.414678932659172 ], [ -101.171724898113425, 69.397078834331523 ] ] ], [ [ [ -76.995347633084378, 69.143734098104687 ], [ -77.1216464660273, 69.132132535162128 ], [ -77.215052231309201, 69.138109097890123 ], [ -77.275564928930081, 69.161674772617204 ], [ -77.321938221714703, 69.193579070709234 ], [ -77.379374747343235, 69.274009981980555 ], [ -77.358061269967678, 69.311528293958645 ], [ -77.351502431826859, 69.378654761363066 ], [ -77.340911611110357, 69.403879371700327 ], [ -77.31868626846564, 69.416326881940762 ], [ -77.187531478306241, 69.4401012969102 ], [ -77.10916599680121, 69.437420632745443 ], [ -76.994084205301817, 69.411789528252058 ], [ -76.745694303248371, 69.403978248657211 ], [ -76.684093959101617, 69.38041257393013 ], [ -76.668855921410966, 69.36615231947988 ], [ -76.669987513251002, 69.348585180137889 ], [ -76.68745577563611, 69.327711155904097 ], [ -76.810293915087641, 69.266759005141466 ], [ -76.869312472026522, 69.224846161745745 ], [ -76.911214329093696, 69.174638640299236 ], [ -76.995347633084378, 69.143734098104687 ] ] ], [ [ [ -90.199815910232374, 69.419073464076803 ], [ -90.177381827345329, 69.357055639445377 ], [ -90.267271967493116, 69.272878390140534 ], [ -90.295462886537265, 69.257783174720942 ], [ -90.330289548022051, 69.252202119820538 ], [ -90.36403954930951, 69.262595186623258 ], [ -90.464707277759047, 69.328688939144541 ], [ -90.492041263176759, 69.369876684856337 ], [ -90.455116212940055, 69.39049802353361 ], [ -90.377245116219513, 69.416228004983878 ], [ -90.322071774271066, 69.428730446867064 ], [ -90.25283593178618, 69.41793088590822 ], [ -90.228545159375187, 69.436047341677437 ], [ -90.199815910232374, 69.419073464076803 ] ] ], [ [ [ -79.210663879701372, 68.845466264461038 ], [ -79.279723940929543, 68.838742631392051 ], [ -79.361374334669264, 68.857661089144983 ], [ -79.390499091639654, 68.890158648978428 ], [ -79.405770088315947, 68.923051716639435 ], [ -79.391169257680843, 68.939926717283186 ], [ -79.354738592228628, 68.955889852657748 ], [ -79.305234195808936, 68.992331504438511 ], [ -79.242678041078861, 69.049273645282568 ], [ -79.14498760766476, 69.087462123301833 ], [ -78.930468556512764, 69.122915005513619 ], [ -78.899981494802901, 69.135417447396804 ], [ -78.804125778255667, 69.235107392605926 ], [ -78.771825972336032, 69.252202119820538 ], [ -78.662017618537803, 69.262331514738207 ], [ -78.650207315352901, 69.275207491791861 ], [ -78.689043986756275, 69.299750949759385 ], [ -78.689043986756275, 69.325118382367691 ], [ -78.650207315352901, 69.351221898988456 ], [ -78.596670936357512, 69.370601782540263 ], [ -78.457891634188513, 69.389509253964633 ], [ -78.332581570814554, 69.386048560473256 ], [ -78.300490505137262, 69.378709693005788 ], [ -78.272475367349813, 69.36124143062068 ], [ -78.234078149088205, 69.314582493293898 ], [ -78.228969506315195, 69.303991672577411 ], [ -78.286999293685113, 69.262694063580142 ], [ -78.438951203778487, 69.199182098266732 ], [ -78.532928258144679, 69.146063199756043 ], [ -78.551736852612166, 69.128649869013657 ], [ -78.560317175205114, 69.10627071776932 ], [ -78.595660194131469, 69.079035609308505 ], [ -78.705347698315705, 69.013666954471148 ], [ -78.779219771446208, 68.950473592685512 ], [ -78.852696336749119, 68.915690876514901 ], [ -79.053614313163521, 68.882929644796405 ], [ -79.210663879701372, 68.845466264461038 ] ] ], [ [ [ -90.492557620618328, 69.221099823712194 ], [ -90.574416754600392, 69.209421356469818 ], [ -90.625755867886937, 69.250916719380882 ], [ -90.667437998383235, 69.259497041973816 ], [ -90.685873057680226, 69.287138644590755 ], [ -90.771566420324177, 69.292565890891552 ], [ -90.765699720881628, 69.335972874969258 ], [ -90.74236475905397, 69.357319311330428 ], [ -90.662779795080539, 69.374161352988551 ], [ -90.5996853102518, 69.367811255090061 ], [ -90.539842778672124, 69.324602024926122 ], [ -90.510641117401917, 69.290445529482525 ], [ -90.485372561750495, 69.246621064920134 ], [ -90.492557620618328, 69.221099823712194 ] ] ], [ [ [ -99.994693603213236, 69.013513145871514 ], [ -100.018023071876627, 68.953978231491078 ], [ -100.141300664469924, 68.96989742155148 ], [ -100.195688483927469, 68.991452598154979 ], [ -100.242017831397916, 69.040385705490394 ], [ -100.247362680234616, 69.052789270416667 ], [ -100.237079476717341, 69.071498987927271 ], [ -100.186954352734901, 69.114027065721444 ], [ -100.153132940311906, 69.129473843654438 ], [ -100.072800905997482, 69.11148922382776 ], [ -100.035337525662129, 69.086583217018301 ], [ -100.005619506950339, 69.047098352230819 ], [ -99.994693603213236, 69.013513145871514 ] ] ], [ [ [ -100.217238167366702, 68.806706497357482 ], [ -100.248757943959717, 68.775021925836313 ], [ -100.287957164205054, 68.766090040729949 ], [ -100.365701918147337, 68.728824414308377 ], [ -100.397331558025783, 68.723814648492294 ], [ -100.442595231627465, 68.747534131818981 ], [ -100.480684832689832, 68.78618403563712 ], [ -100.49691163994946, 68.792237502664904 ], [ -100.521043110596565, 68.790655471354569 ], [ -100.573392966109182, 68.766057081744322 ], [ -100.596541160351592, 68.76639765792919 ], [ -100.615970482381826, 68.782932082388044 ], [ -100.625374779615569, 68.815902054348896 ], [ -100.624677147753019, 68.865307573811691 ], [ -100.599902976886085, 68.941376912651009 ], [ -100.598348411397097, 68.96907344691067 ], [ -100.611581444128461, 68.990211143029512 ], [ -100.60062258140573, 69.009426231653123 ], [ -100.565482809557437, 69.026795617081348 ], [ -100.520290547091292, 69.035068322475041 ], [ -100.413970352605816, 69.028092003849537 ], [ -100.329941418736311, 68.997550010496951 ], [ -100.288934947445469, 68.957647665224812 ], [ -100.206900032206718, 68.926182820274505 ], [ -100.178478400263131, 68.903913532315642 ], [ -100.217238167366702, 68.806706497357482 ] ] ], [ [ [ -101.845922921878909, 68.586309760434375 ], [ -101.887209544547616, 68.584958442023463 ], [ -101.944651563340429, 68.602844184893257 ], [ -102.266364222097167, 68.663664499713349 ], [ -102.308167202207443, 68.681978709396361 ], [ -102.270495081629747, 68.707587841232652 ], [ -102.15334786036405, 68.740458936236593 ], [ -102.074383623953366, 68.774044142595869 ], [ -102.013354568890918, 68.825416214868085 ], [ -101.828350289372636, 68.798950149405357 ], [ -101.759312200801531, 68.774615431680189 ], [ -101.732955998624249, 68.753422803918625 ], [ -101.721640080223835, 68.724122265691506 ], [ -101.732027653862275, 68.652139841070607 ], [ -101.794298164050204, 68.63684687173722 ], [ -101.845922921878909, 68.586309760434375 ] ] ], [ [ [ -74.880852923516557, 68.348697446682706 ], [ -74.959317281978485, 68.342237485498771 ], [ -75.07252041129685, 68.404145446844751 ], [ -75.310154697705627, 68.474479922184031 ], [ -75.400253578095743, 68.525478459285722 ], [ -75.403406654387908, 68.550131780538692 ], [ -75.396166663877338, 68.588836615999526 ], [ -75.370173010542018, 68.6360668424106 ], [ -75.287391024962261, 68.687746531882027 ], [ -75.199742095837465, 68.696118114232604 ], [ -75.074684718020038, 68.684692332546746 ], [ -74.983630027046573, 68.647591501053341 ], [ -74.884753070149713, 68.544649602595172 ], [ -74.81894496217059, 68.494420108491568 ], [ -74.798246719193514, 68.457945497725177 ], [ -74.830985978254915, 68.440729920896587 ], [ -74.827909806262568, 68.423778015953047 ], [ -74.812869522485698, 68.413341003836138 ], [ -74.818582413328627, 68.394070983569804 ], [ -74.844982560820085, 68.365956968825458 ], [ -74.880852923516557, 68.348697446682706 ] ] ], [ [ [ -104.540693532488746, 68.405903259411787 ], [ -104.595987724051184, 68.402211853020987 ], [ -104.699445979950923, 68.418251892695366 ], [ -104.851139711323526, 68.45395746046367 ], [ -104.965243719582489, 68.491739444326811 ], [ -105.041747018399306, 68.531531926313534 ], [ -105.051360055875378, 68.559019720330866 ], [ -104.994000434546663, 68.574213812707342 ], [ -104.907285343348121, 68.581783393074204 ], [ -104.700401790534258, 68.576696722958303 ], [ -104.602008232093354, 68.561502630581828 ], [ -104.472116869716515, 68.503516788526071 ], [ -104.444524705578019, 68.470678652507786 ], [ -104.440492723002336, 68.449518983731849 ], [ -104.457131517582368, 68.431171815063209 ], [ -104.540693532488746, 68.405903259411787 ] ] ], [ [ [ -78.982719535068483, 68.192845389956148 ], [ -79.064062311608964, 68.181782157112252 ], [ -79.174046446663894, 68.234977959922759 ], [ -79.174771544347806, 68.264465265735112 ], [ -79.153458066972263, 68.335261166873266 ], [ -78.952595022200569, 68.353037046457615 ], [ -78.868725390094951, 68.310300228421085 ], [ -78.828515427623557, 68.268189631111568 ], [ -78.982719535068483, 68.192845389956148 ] ] ], [ [ [ -75.675867602281457, 68.32249505310503 ], [ -75.153808256194608, 68.234022149339438 ], [ -75.10310634996361, 68.201887138347956 ], [ -75.078145411511429, 68.173146902876596 ], [ -75.063500635562136, 68.141220632127471 ], [ -75.062336084736472, 68.075401537819772 ], [ -75.072882960138799, 68.049001390328328 ], [ -75.12388149724049, 67.985258712115495 ], [ -75.127342190731881, 67.965252607836675 ], [ -75.0863631852624, 67.751425695382949 ], [ -75.090505031123527, 67.634783845230288 ], [ -75.127298245417705, 67.537324124715639 ], [ -75.201972320531922, 67.459189356110016 ], [ -75.314516270137631, 67.400434471056201 ], [ -75.400099769496137, 67.366684469768757 ], [ -75.780072928522202, 67.283539935347022 ], [ -76.048974305967477, 67.261995745072056 ], [ -76.332751172261453, 67.258117571095994 ], [ -76.693948695805673, 67.235815324151474 ], [ -76.858842500923998, 67.240473527454185 ], [ -76.944184301054534, 67.25031727782968 ], [ -77.004905738917742, 67.266950579245446 ], [ -77.075910380298225, 67.319608051957289 ], [ -77.157088361910553, 67.40834462760796 ], [ -77.224192856657879, 67.508177395088154 ], [ -77.304393055029777, 67.685123202619337 ], [ -77.305898182040323, 67.706096103810012 ], [ -77.22856541541843, 67.850126871023122 ], [ -77.125876202516778, 67.947092206753297 ], [ -76.944755590138826, 68.090991138023867 ], [ -76.740245084290493, 68.231231621889236 ], [ -76.688235804962744, 68.25441277511726 ], [ -76.595785850264178, 68.27893426042769 ], [ -76.364424757454088, 68.318726742414412 ], [ -76.172812201316518, 68.308806087739072 ], [ -76.088272403169711, 68.313815853555184 ], [ -75.982748717503668, 68.332316830823459 ], [ -75.86646941619297, 68.336810239197973 ], [ -75.675867602281457, 68.32249505310503 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CA-ON", "NAME_1": "Ontario" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.155298277003396, 49.369672064487219 ], [ -95.160362974462231, 49.802335655210754 ], [ -95.159429136535977, 50.233757790808824 ], [ -95.158500791774003, 50.665179926406921 ], [ -95.157572447012029, 51.096624034662085 ], [ -95.156638609085775, 51.52806814291722 ], [ -95.155710264323801, 51.959512251172384 ], [ -95.154781919561827, 52.39096734575611 ], [ -95.153826108978492, 52.822356522368551 ], [ -94.770408735953836, 53.053761560492831 ], [ -94.387024321914822, 53.285166598617081 ], [ -94.003634414711527, 53.516549664084295 ], [ -93.620222534851152, 53.747932729551479 ], [ -93.36522435617843, 53.931129758024269 ], [ -93.110204204848628, 54.114315800168498 ], [ -92.855206026175907, 54.297512828641288 ], [ -92.600207847503185, 54.480676898128451 ], [ -92.294776927648797, 54.689757716651116 ], [ -91.989335021465862, 54.898849521502342 ], [ -91.68388212895438, 55.107930340025007 ], [ -91.378451209099993, 55.3170111585477 ], [ -91.028987084440871, 55.541780454231343 ], [ -90.679500987124655, 55.766571722572053 ], [ -90.330036862465533, 55.991341018255696 ], [ -89.980572737806412, 56.216099327610806 ], [ -89.722141331463661, 56.375675749713793 ], [ -89.463687952463815, 56.535252171816779 ], [ -89.205223587135436, 56.694839580248299 ], [ -88.948495061717026, 56.851306871373311 ], [ -88.826480896906304, 56.8142609715226 ], [ -88.679901301470977, 56.725062970073111 ], [ -88.447057054307422, 56.608684791805501 ], [ -88.271352701901719, 56.535669652301436 ], [ -88.075081942461452, 56.467301729771549 ], [ -87.87814101698001, 56.341629117555641 ], [ -87.560877821283626, 56.056369096908213 ], [ -87.482402476493149, 56.02131172252399 ], [ -87.286867801065341, 55.974674757854302 ], [ -86.919397083922448, 55.91454658173248 ], [ -86.376947112057749, 55.773240423998317 ], [ -86.138664632264877, 55.717891300793184 ], [ -85.984482497477046, 55.69587469839081 ], [ -85.830520089260091, 55.656917177373458 ], [ -85.676678530657128, 55.601051696726728 ], [ -85.559322569149103, 55.540176450263885 ], [ -85.478441218407468, 55.474291437984959 ], [ -85.407260795770284, 55.431137139463743 ], [ -85.282697802737331, 55.383291678654217 ], [ -85.217999313941149, 55.348970388282453 ], [ -85.212033737541702, 55.297477466396288 ], [ -85.362019094825698, 55.095449870798916 ], [ -85.365271048074746, 55.079277995182025 ], [ -85.213582809866423, 55.224385422592434 ], [ -85.128856244134369, 55.26618840270271 ], [ -85.060949747403313, 55.285667163211372 ], [ -84.91992923421131, 55.283349047888578 ], [ -84.705783718229796, 55.259212084077205 ], [ -84.517961445439951, 55.258904466877965 ], [ -84.356473402170295, 55.282514086919235 ], [ -84.218935555126762, 55.293137866621379 ], [ -84.105347904309369, 55.290808764970024 ], [ -84.022983399214283, 55.297818042581156 ], [ -83.971765135541716, 55.314143726797681 ], [ -83.910604244536742, 55.31466008423925 ], [ -83.667652575112612, 55.264485521778369 ], [ -83.569467756914037, 55.261793871285079 ], [ -83.214345673054709, 55.214618576516727 ], [ -82.986269492479295, 55.231405686532099 ], [ -82.947026326919783, 55.222210129540684 ], [ -82.867748980145592, 55.16071964867939 ], [ -82.800677444383894, 55.155907636777073 ], [ -82.687507274051171, 55.165520674253173 ], [ -82.577435248367877, 55.14872257790924 ], [ -82.393260436654671, 55.067797281853444 ], [ -82.308248226380456, 54.998143958883873 ], [ -82.226608818969282, 54.855925935880549 ], [ -82.219390801115807, 54.813474762386164 ], [ -82.370628599853831, 54.48350038456428 ], [ -82.418067566507233, 54.355828260553352 ], [ -82.424164978849205, 54.244591684044394 ], [ -82.394139342938189, 54.180464484332504 ], [ -82.263555841863081, 54.072974245857068 ], [ -82.239913262836183, 54.044816285798561 ], [ -82.162624441528479, 53.885701289494421 ], [ -82.141442800095462, 53.817640984163745 ], [ -82.150023122688395, 53.739561147200874 ], [ -82.190606620330286, 53.610944198935158 ], [ -82.180356375798638, 53.512858257693466 ], [ -82.146199880355056, 53.364597753990893 ], [ -82.159163748037088, 53.264138765783684 ], [ -82.219269951501829, 53.211459320414747 ], [ -82.259908380786442, 53.159801603600414 ], [ -82.291614924964691, 53.066110193776382 ], [ -82.291559993321982, 53.030712243207319 ], [ -82.260446710885091, 52.961113851880469 ], [ -82.202702568057333, 52.92168391873571 ], [ -82.107978443350149, 52.877398028374472 ], [ -82.020021897026126, 52.811611893052429 ], [ -81.859291910426009, 52.651409250222429 ], [ -81.742342443074108, 52.563617498826545 ], [ -81.599410308715434, 52.432616517266752 ], [ -81.571680815470145, 52.367291807743584 ], [ -81.611528229099576, 52.324071591251112 ], [ -81.661241365761597, 52.293914119397556 ], [ -81.776345129918084, 52.253605279969292 ], [ -81.827892983446986, 52.22420586478529 ], [ -81.814533607937364, 52.217196587174158 ], [ -81.647980867208886, 52.239081353633992 ], [ -81.549488431811071, 52.23676323831117 ], [ -81.46619008878973, 52.204518364034271 ], [ -81.398074851816347, 52.142247853846328 ], [ -81.285058490083244, 52.089227832292522 ], [ -81.127184948904599, 52.045403367730131 ], [ -80.968487433085144, 51.972223433297927 ], [ -80.705529659382222, 51.798331825101968 ], [ -80.657936884129199, 51.758341589201478 ], [ -80.588041861931671, 51.667231966585291 ], [ -80.495855579118157, 51.52506887522469 ], [ -80.447592637823959, 51.43221242637 ], [ -80.443296983363211, 51.388596702049938 ], [ -80.495493030276208, 51.344673360530663 ], [ -80.672691523363923, 51.264725847715283 ], [ -80.851230348534017, 51.125023693948549 ], [ -80.794980346388243, 51.13181324498882 ], [ -80.677239863381175, 51.190875747241876 ], [ -80.478343371418873, 51.307308857152179 ], [ -80.367952742207805, 51.329863789653217 ], [ -80.26565903713373, 51.316350605543988 ], [ -80.103555759465607, 51.282842303484472 ], [ -79.960414884864591, 51.235172623931646 ], [ -79.836236413330695, 51.173363539542578 ], [ -79.651512285190279, 51.00778858205453 ], [ -79.51955549304715, 50.918524662633757 ], [ -79.519379711790435, 50.742150144186837 ], [ -79.518885327005961, 50.500275134960049 ], [ -79.51840192855002, 50.258400125733232 ], [ -79.517907543765531, 50.016536102834976 ], [ -79.517413158981043, 49.774683066265283 ], [ -79.516918774196569, 49.532819043367027 ], [ -79.516435375740627, 49.29094403414021 ], [ -79.515940990956139, 49.04910198389905 ], [ -79.515446606171651, 48.807226974672261 ], [ -79.514963207715709, 48.565351965445444 ], [ -79.514468822931235, 48.323487942547189 ], [ -79.513974438146747, 48.0816129333204 ], [ -79.513458080705178, 47.839737924093612 ], [ -79.512974682249236, 47.556422483598482 ], [ -79.513249340462835, 47.551050168940407 ], [ -79.559293043391136, 47.483044795252454 ], [ -79.546713697208148, 47.407447868540544 ], [ -79.479224680961778, 47.318865101489507 ], [ -79.441937081883111, 47.227656601916436 ], [ -79.434916817943432, 47.13381138349277 ], [ -79.3649448914461, 47.021959572585331 ], [ -79.16555401469931, 46.827171967498515 ], [ -79.014579887846352, 46.606511558690386 ], [ -78.90316753008068, 46.486463946689042 ], [ -78.780999556670352, 46.393442702906185 ], [ -78.460451448739278, 46.306892406635797 ], [ -77.682674319460062, 46.186669013377781 ], [ -77.37300267678765, 46.063699037983724 ], [ -77.371343741177498, 46.06285309068582 ], [ -77.292747546773043, 45.97677520654284 ], [ -77.282464343255768, 45.961998594651021 ], [ -77.266797838751884, 45.92939117153216 ], [ -77.233234605049674, 45.903584285782074 ], [ -77.100684551165173, 45.832656548701408 ], [ -77.030844460610354, 45.807464897349774 ], [ -76.976747778859234, 45.79810454543022 ], [ -76.940932347805486, 45.800971977180239 ], [ -76.925529515186653, 45.819681694690814 ], [ -76.912895237360942, 45.875799860894062 ], [ -76.890208468917393, 45.89026885558664 ], [ -76.871608614692235, 45.887434382822249 ], [ -76.823708222239986, 45.879678034870125 ], [ -76.753813200042444, 45.797829887216608 ], [ -76.666581751402333, 45.642593064888558 ], [ -76.553125936527465, 45.542079145038628 ], [ -76.41344575541784, 45.496343059309567 ], [ -76.26994233197486, 45.483939494383264 ], [ -76.122637638855636, 45.504868450259778 ], [ -76.000623474044914, 45.483631877184024 ], [ -75.903965755513966, 45.420229775156059 ], [ -75.626132492962341, 45.450760782180112 ], [ -75.167134672718589, 45.57530180255597 ], [ -74.864186663115163, 45.642175584403873 ], [ -74.717211559852259, 45.651371141395288 ], [ -74.577223761543408, 45.632199998085838 ], [ -74.396564574964302, 45.567710249532013 ], [ -74.41501062058984, 45.508845501192724 ], [ -74.453067262666579, 45.393554969451003 ], [ -74.478061160104403, 45.317903111096371 ], [ -74.41294519082355, 45.269101839703495 ], [ -74.340446408761068, 45.214444855196632 ], [ -74.358299192645219, 45.2063918763738 ], [ -74.708872936487296, 45.003869895991954 ], [ -74.762464247125394, 44.999057884089638 ], [ -74.856639055405381, 45.003924827634677 ], [ -74.996143455258292, 44.970119894704482 ], [ -75.179384429045257, 44.899378925209049 ], [ -75.401253333993267, 44.772278090282413 ], [ -75.791960136006921, 44.497048587595742 ], [ -75.819316094081714, 44.468011721253703 ], [ -75.875928645069436, 44.416980225166384 ], [ -76.02023407049613, 44.3626198715302 ], [ -76.151158147756107, 44.303941890776173 ], [ -76.185787055327097, 44.242231683344016 ], [ -76.248540963970967, 44.214128654928203 ], [ -76.464609087447684, 44.057595445831936 ], [ -76.586117881145384, 43.924298321606443 ], [ -76.696497524027905, 43.784793921753504 ], [ -76.81996188420645, 43.628788056427368 ], [ -77.073350565747461, 43.62684347627507 ], [ -77.266720934452081, 43.62749166965915 ], [ -77.596519531017265, 43.628601288842106 ], [ -77.879241709771009, 43.629557099425455 ], [ -78.214786156164777, 43.63066671860841 ], [ -78.458254183030462, 43.631501679577752 ], [ -78.72043192740675, 43.624931855108372 ], [ -78.845566209523994, 43.583337615240453 ], [ -79.002483940119305, 43.527164517394482 ], [ -79.171849180955078, 43.466574915473785 ], [ -79.083046687333152, 43.331410115395784 ], [ -79.059228327049553, 43.278060503985671 ], [ -79.066050837075437, 43.106102489613477 ], [ -79.048011285606037, 43.08729389514599 ], [ -79.029070855196011, 43.061761667609517 ], [ -79.026181450788926, 43.017321968648645 ], [ -79.01167949711072, 42.997041206156268 ], [ -78.980752982259091, 42.980605658654298 ], [ -78.946003225074108, 42.961302679402309 ], [ -78.920866505365225, 42.935210149110077 ], [ -78.915076710222479, 42.90913959147494 ], [ -78.939235646690946, 42.863744081930747 ], [ -79.036695367205624, 42.802319519040708 ], [ -79.173738829464668, 42.748530454488815 ], [ -79.446232736343859, 42.651455255473195 ], [ -79.762023764015325, 42.538977223838742 ], [ -80.035726167034369, 42.44146257168137 ], [ -80.247575540350155, 42.365997480911972 ], [ -80.52076158592763, 42.324392254715491 ], [ -80.682645137024863, 42.299771892448177 ], [ -81.028198128722295, 42.247158365050495 ], [ -81.277642718315974, 42.209178627273559 ], [ -81.507344875515912, 42.103479160350815 ], [ -81.760920324642186, 41.98681533754106 ], [ -81.974186934340153, 41.88874038262793 ], [ -82.213326347759477, 41.778690329601744 ], [ -82.439073426683535, 41.674869524860043 ], [ -82.690012156959213, 41.675177142059283 ], [ -82.866199907820871, 41.753004293465636 ], [ -83.02996212109916, 41.832973778938111 ], [ -83.12166500545672, 41.950000150589801 ], [ -83.141945767949125, 41.97586196798261 ], [ -83.149669156915621, 42.141920323926598 ], [ -83.109525112415497, 42.250706949170251 ], [ -83.073138392277457, 42.300310222546841 ], [ -83.003682823221681, 42.33173112218293 ], [ -82.867748980145592, 42.385212569535582 ], [ -82.744196729338697, 42.493482837337666 ], [ -82.645133004856589, 42.558049490191308 ], [ -82.54532221003349, 42.624681572811227 ], [ -82.488347110203804, 42.739510678754129 ], [ -82.417232605537876, 43.017376900291367 ], [ -82.408190857146096, 43.072638132868178 ], [ -82.304765560231985, 43.26322896045113 ], [ -82.190375907430862, 43.474089564197953 ], [ -82.137850270661545, 43.570879118671428 ], [ -82.196605155715361, 43.822213356774711 ], [ -82.240792169119715, 44.015353012579908 ], [ -82.281221858161985, 44.192232902139835 ], [ -82.326804135291439, 44.391557860915356 ], [ -82.368277525545395, 44.57298609049252 ], [ -82.407388855162367, 44.743933362638643 ], [ -82.446588075407703, 44.915506855511779 ], [ -82.485062197969128, 45.083762477164612 ], [ -82.515241642479751, 45.204370391921685 ], [ -82.551079046190594, 45.347357457923096 ], [ -82.760423536598324, 45.447717569173392 ], [ -82.919351765317202, 45.517975140212883 ], [ -83.1792882986705, 45.632771287170129 ], [ -83.397311988628061, 45.729044484202035 ], [ -83.592692855456249, 45.817154839125692 ], [ -83.469470194505689, 45.9946829220697 ], [ -83.480148905850541, 46.023752747397396 ], [ -83.524764386068114, 46.058711244824707 ], [ -83.615950912984104, 46.116828922822975 ], [ -83.669300524394231, 46.122739567579686 ], [ -83.763200674460606, 46.109072574870822 ], [ -83.913043209473528, 46.072894594975139 ], [ -83.977785643583886, 46.084913638402355 ], [ -84.029201661170248, 46.146997381005036 ], [ -84.088406985694377, 46.226527413335759 ], [ -84.107775882917608, 46.288622142266973 ], [ -84.115169682027783, 46.370810866105359 ], [ -84.150468755639963, 46.444792802521306 ], [ -84.128144536038363, 46.483596514939023 ], [ -84.12317871553644, 46.502954425833735 ], [ -84.125222172645636, 46.527234211916181 ], [ -84.149479986071, 46.542768880477524 ], [ -84.192172858793356, 46.549558431517795 ], [ -84.336708997119473, 46.518500080723641 ], [ -84.401715103114881, 46.515610676316527 ], [ -84.440496842875532, 46.498142413931419 ], [ -84.501580829580703, 46.461865557078823 ], [ -84.561752951016715, 46.45737214870428 ], [ -84.665782496000745, 46.543252278933466 ], [ -84.779414092132328, 46.637284264942394 ], [ -84.827061799028073, 46.766857023791431 ], [ -84.875972933706379, 46.899901462460434 ], [ -85.070046427437816, 46.979925879575632 ], [ -85.264119921169268, 47.059939310362267 ], [ -85.458193414900705, 47.139963727477465 ], [ -85.652255922303596, 47.219988144592662 ], [ -85.846329416035047, 47.300012561707831 ], [ -86.040402909766485, 47.380025992494495 ], [ -86.234498376155017, 47.460050409609664 ], [ -86.428571869886454, 47.540074826724862 ], [ -86.49556650134835, 47.56658483750175 ], [ -86.672171732694679, 47.636424928056584 ], [ -86.921825062530701, 47.735224980653612 ], [ -87.208029907432916, 47.84850501427178 ], [ -87.494245738663693, 47.961752088904319 ], [ -87.743888082171168, 48.060530168844281 ], [ -87.920493313517497, 48.130392232056181 ], [ -87.987465972322298, 48.156902242833098 ], [ -88.160665441819958, 48.225402001305525 ], [ -88.378194746993046, 48.303097316769367 ], [ -88.611764091840499, 48.264007959809476 ], [ -88.898705020755187, 48.155715719350326 ], [ -89.062599069975988, 48.093807758004345 ], [ -89.185634963341315, 48.047434465219709 ], [ -89.273174029180666, 48.019968643859471 ], [ -89.455645959969544, 47.996216201547156 ], [ -89.498382778006075, 47.997897109814403 ], [ -89.550567838590524, 47.999907607937956 ], [ -89.775370093259795, 48.015310440556789 ], [ -89.901042705475703, 47.995469131206164 ], [ -89.993646468773889, 48.015310440556789 ], [ -90.039942857258694, 48.078152239829024 ], [ -90.091776355329742, 48.118098530415352 ], [ -90.320138180447302, 48.099180072662421 ], [ -90.607101082019071, 48.112594379814738 ], [ -90.744408216163166, 48.10460731896319 ], [ -90.797318374431526, 48.131062398097384 ], [ -90.840318864353122, 48.200517967153132 ], [ -90.916047627007572, 48.209153221388789 ], [ -91.04347805179053, 48.193695457127262 ], [ -91.22065457222115, 48.10460731896319 ], [ -91.387240271935269, 48.058541643377794 ], [ -91.518307171466319, 48.05831093047837 ], [ -91.647286668573997, 48.10460731896319 ], [ -91.858399957877339, 48.197573631103324 ], [ -92.005155334569352, 48.301833888986778 ], [ -92.171784979597646, 48.338396390381547 ], [ -92.29867707428194, 48.328882229862359 ], [ -92.348439649422431, 48.27658730599245 ], [ -92.414588333586423, 48.27658730599245 ], [ -92.460890215235509, 48.365884184398851 ], [ -92.500578327101053, 48.435339753454627 ], [ -92.583255942559646, 48.465101717480593 ], [ -92.732653531266521, 48.53182169072889 ], [ -92.836732514729007, 48.567779944053711 ], [ -92.996254005189272, 48.611813148858431 ], [ -93.051707498515597, 48.619877114009796 ], [ -93.155215192893777, 48.625348305624755 ], [ -93.257942857945352, 48.628863930758882 ], [ -93.377886099825503, 48.616537270132397 ], [ -93.463617914619348, 48.561276037555587 ], [ -93.564285643068899, 48.536908360844791 ], [ -93.707739628033423, 48.525460606501838 ], [ -93.803545906102201, 48.54894937692913 ], [ -93.851627572975431, 48.60728678149826 ], [ -94.055182268240429, 48.65902140261241 ], [ -94.414155060254473, 48.704109294957391 ], [ -94.620884804468702, 48.742605390175896 ], [ -94.675355021390331, 48.774443770296671 ], [ -94.705095012759188, 48.80852336144045 ], [ -94.7125602230049, 48.863015551019174 ], [ -94.712768963247242, 48.863422045175298 ], [ -94.803461105378744, 49.002948417685303 ], [ -94.842605393981358, 49.119172787353307 ], [ -94.860403246222802, 49.2586002829064 ], [ -94.854333299702176, 49.304589054191979 ], [ -94.874795336615563, 49.319036076227462 ], [ -94.939340016812125, 49.349413274651909 ], [ -95.155298277003396, 49.369672064487219 ] ] ], [ [ [ -79.52046735831631, 50.965985601944226 ], [ -79.636197343199811, 51.049031259409048 ], [ -79.714452961419397, 51.117607922181293 ], [ -79.731404866362936, 51.150500989842328 ], [ -79.737458333390734, 51.186283461910421 ], [ -79.723242024254674, 51.251652116747806 ], [ -79.688821856926026, 51.346584981697333 ], [ -79.642986894240053, 51.413502708859397 ], [ -79.585726149868236, 51.452471216205311 ], [ -79.547438794892059, 51.49385671583093 ], [ -79.528003979697559, 51.537681180393321 ], [ -79.521346264599828, 51.544712430661548 ], [ -79.520357495030865, 51.22588917631191 ], [ -79.52046735831631, 50.965985601944226 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CA-PE", "NAME_1": "Prince Edward Island" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.811269981714233, 46.468688067104694 ], [ -63.784243613495761, 46.454658525553896 ], [ -63.737013387084687, 46.48049837028961 ], [ -63.681433550980117, 46.561918051129879 ], [ -63.534359570760316, 46.540626546411431 ], [ -63.456477487711226, 46.503932209074151 ], [ -63.413147407933309, 46.51201814688261 ], [ -63.368663763658276, 46.508249836191993 ], [ -63.2860795319923, 46.460217607797205 ], [ -63.129370541639332, 46.42220491103464 ], [ -62.964004324393613, 46.427731034292322 ], [ -62.712032879234783, 46.450296953121892 ], [ -62.681908366366883, 46.459437578470585 ], [ -62.423114411182169, 46.478246172938071 ], [ -62.16356239932793, 46.487189044372968 ], [ -62.074265520921514, 46.465743731054886 ], [ -62.040889054804566, 46.445693681461904 ], [ -62.023728409618684, 46.421556717650532 ], [ -62.17175820042182, 46.35538606082946 ], [ -62.319985745138752, 46.278316966092632 ], [ -62.526045323311806, 46.202862861651766 ], [ -62.55199503133295, 46.165937811415063 ], [ -62.539228917564714, 46.09793243772711 ], [ -62.543260900140396, 46.028663636256596 ], [ -62.502589511870156, 46.022928772756586 ], [ -62.47808999921682, 45.99972564687144 ], [ -62.531318761012969, 45.977302550312942 ], [ -62.74319010698585, 45.966887510853155 ], [ -62.804889328089487, 45.973215636094551 ], [ -62.878354907063851, 46.001373596153059 ], [ -62.903546558415457, 46.068247378000962 ], [ -62.994601249388921, 46.058425600282561 ], [ -63.02208904340624, 46.066599428719371 ], [ -62.894548755337837, 46.123596501206123 ], [ -62.952666433336105, 46.195161445342364 ], [ -63.015057793138027, 46.189942939283924 ], [ -63.056322443149639, 46.223945626127886 ], [ -63.052916681300971, 46.269813547799487 ], [ -62.995139579487585, 46.292137767401101 ], [ -62.978473319086191, 46.316351635512262 ], [ -63.05687175957685, 46.295367747993055 ], [ -63.117021908355767, 46.252839670198853 ], [ -63.194717223819609, 46.236711739896123 ], [ -63.270808535316021, 46.199995429901776 ], [ -63.152782407766807, 46.188338935316466 ], [ -63.213503845630015, 46.15984039907309 ], [ -63.276598330458754, 46.153281560932271 ], [ -63.568878615045861, 46.20922394587879 ], [ -63.6409928756093, 46.230460518954544 ], [ -63.731783894697699, 46.289061595408754 ], [ -63.800547325055192, 46.367328199956887 ], [ -63.763237753319444, 46.370371412963578 ], [ -63.750548543851025, 46.384357009200215 ], [ -63.758656454316565, 46.397606521424393 ], [ -63.860543665234502, 46.408175369483814 ], [ -64.019702606852803, 46.404813552949321 ], [ -64.110812229468991, 46.425434891626594 ], [ -64.106571506650965, 46.562115805043675 ], [ -64.136058812463318, 46.599689048664487 ], [ -64.235638894386994, 46.63143953815694 ], [ -64.388052230279229, 46.640876794376311 ], [ -64.403147445698821, 46.691622645921484 ], [ -64.354620832519544, 46.769241057085509 ], [ -64.280001689048049, 46.835741303762916 ], [ -64.223235329460707, 46.901241794542813 ], [ -64.156899877711467, 46.954888036823633 ], [ -63.993577117574944, 47.061576273315353 ], [ -63.997279510294305, 46.981727637456856 ], [ -63.981492156176444, 46.912997166085006 ], [ -64.087861789140376, 46.775437346384393 ], [ -63.903049770371609, 46.639118981809247 ], [ -63.879330287044908, 46.608961509955719 ], [ -63.863718714183747, 46.572355063246789 ], [ -63.875627894325547, 46.538659993602039 ], [ -63.905554653279651, 46.508766193633562 ], [ -63.833616173972928, 46.493879718456299 ], [ -63.811269981714233, 46.468688067104694 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CA-QC", "NAME_1": "Québec" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.704376781530627, 48.022440567781899 ], [ -66.842683671572232, 47.997897109814403 ], [ -66.925026204010237, 47.963509901471383 ], [ -66.951821859329286, 47.899448619730748 ], [ -67.057576257894738, 47.918575817726037 ], [ -67.187236907372153, 47.894076305072701 ], [ -67.307053806474059, 47.887231822389737 ], [ -67.364852880944539, 47.854800180527548 ], [ -67.579042342240214, 47.939504773602522 ], [ -67.609463485978821, 47.968827284486707 ], [ -67.61289122048457, 47.998567275855578 ], [ -67.739321889370018, 47.998567275855578 ], [ -67.913444210465386, 47.998567275855578 ], [ -68.023417359191782, 47.998567275855578 ], [ -68.113516239581898, 47.998567275855578 ], [ -68.113516239581898, 47.929375378684881 ], [ -68.252493295664706, 47.929375378684881 ], [ -68.377913222324096, 47.929375378684881 ], [ -68.378253798508965, 47.8384195646683 ], [ -68.378528456722563, 47.765151739607745 ], [ -68.378814101264709, 47.691872928218629 ], [ -68.3792096090923, 47.588985961403182 ], [ -68.393678603784878, 47.563146116667468 ], [ -68.429636857109699, 47.528187619240157 ], [ -68.496016254173114, 47.480309199444974 ], [ -68.628467431100731, 47.420697380764722 ], [ -69.053660318414302, 47.294585315407062 ], [ -69.064284098116445, 47.338146108084402 ], [ -69.050221597580006, 47.426619011849994 ], [ -69.146286054369568, 47.444757440276305 ], [ -69.242877854929262, 47.4629947456595 ], [ -69.302149097424646, 47.401987663254118 ], [ -69.358882498026361, 47.350648549967559 ], [ -69.471492365603325, 47.238664903117609 ], [ -69.629772400938108, 47.081362651023255 ], [ -69.717520207019803, 46.994856300067056 ], [ -69.871724314464714, 46.842926362630749 ], [ -70.007680130197897, 46.708937099706986 ], [ -70.038222123550483, 46.571421225320535 ], [ -70.067215044578347, 46.441046464487755 ], [ -70.179660117227158, 46.34181794507748 ], [ -70.248291711642125, 46.25087311738946 ], [ -70.278877650308885, 46.149996648697595 ], [ -70.304519741130804, 46.057392885399395 ], [ -70.306431362297474, 45.979829405878093 ], [ -70.287150355702593, 45.939158017607866 ], [ -70.296247035737096, 45.90608916869013 ], [ -70.333457730515946, 45.868054499270471 ], [ -70.407868133745112, 45.801905815106466 ], [ -70.421095673312195, 45.73824004119345 ], [ -70.466568087156205, 45.706819141557332 ], [ -70.59638254523324, 45.643988328613659 ], [ -70.702213848098509, 45.551384565315459 ], [ -70.707410381499855, 45.498924846517411 ], [ -70.692139384823577, 45.455364053840071 ], [ -70.689788310515127, 45.428337685621614 ], [ -70.710947979291063, 45.409474159511404 ], [ -70.753300275828551, 45.410693641979776 ], [ -70.799190170157232, 45.404772010894533 ], [ -70.837818101318277, 45.366177038719115 ], [ -70.8368293317493, 45.310696079571443 ], [ -70.865053209779077, 45.270694857342392 ], [ -70.897990222754288, 45.262455110934326 ], [ -70.926236073441146, 45.290700961621184 ], [ -70.9601838286424, 45.333097203472846 ], [ -70.999877433672225, 45.337228063005426 ], [ -71.060225336364937, 45.309125034589641 ], [ -71.084549067761557, 45.294007846512955 ], [ -71.134646725922636, 45.26281765977626 ], [ -71.201619384727437, 45.260334749525299 ], [ -71.327291996943345, 45.290107699879798 ], [ -71.419016853957999, 45.200338409345989 ], [ -71.517520275684348, 45.007561302382754 ], [ -71.933638455620496, 45.00706691759828 ], [ -72.349767621885192, 45.006605491799434 ], [ -72.765885801821341, 45.006111107014931 ], [ -73.182014968086037, 45.00562770855899 ], [ -73.352182210905525, 45.005418968316661 ], [ -73.598133148022185, 45.00515529643161 ], [ -74.014262314286881, 45.004693870632764 ], [ -74.430391480551563, 45.004177513191195 ], [ -74.663235727715119, 45.003924827634677 ], [ -74.708872936487296, 45.003869895991954 ], [ -74.566292364642024, 45.041596948212373 ], [ -74.269057245881527, 45.188297393261678 ], [ -74.049792100798484, 45.241427278100929 ], [ -73.764663916093582, 45.395477576946206 ], [ -73.558087980478959, 45.425085732372565 ], [ -73.518811855933819, 45.458978555931083 ], [ -73.484193934691376, 45.586782515884551 ], [ -73.465275476938444, 45.632309861371283 ], [ -73.368848471306919, 45.757828664987557 ], [ -73.25301960946652, 45.86365996785284 ], [ -73.159558912541911, 46.01003082304581 ], [ -72.989962958806714, 46.103590396927331 ], [ -72.733432187302085, 46.181857001475464 ], [ -72.496193408720899, 46.352672437679047 ], [ -72.366170210401535, 46.404791580292255 ], [ -72.240135049343664, 46.442101152027988 ], [ -72.187213904746756, 46.511523762098136 ], [ -72.10928787638349, 46.551217367127947 ], [ -71.900932155544723, 46.631911950284319 ], [ -71.67127394365896, 46.653763757758526 ], [ -71.439198739493492, 46.720769375548969 ], [ -71.261176271764981, 46.756266203074944 ], [ -71.152005125022299, 46.81910800234715 ], [ -70.993252677560136, 46.852209810250514 ], [ -70.519489231753113, 47.032528420644752 ], [ -70.388103728694276, 47.116947369177581 ], [ -70.217771690946634, 47.289828235147468 ], [ -70.069588091543878, 47.37778478147149 ], [ -70.017139359074363, 47.4714212596528 ], [ -69.802224800094777, 47.623450074045991 ], [ -69.581070006502131, 47.823697884419232 ], [ -69.471052912461573, 47.967300184819095 ], [ -69.306334888599949, 48.047038957392147 ], [ -68.987072181108545, 48.274983302025021 ], [ -68.815685455820656, 48.366037992998486 ], [ -68.746054105508179, 48.376431059801206 ], [ -68.552013570762369, 48.457301424214279 ], [ -68.431504532962194, 48.54168741376148 ], [ -68.238211068557376, 48.626435952150615 ], [ -67.888999629454773, 48.730904950276425 ], [ -67.560881941156822, 48.855929369108225 ], [ -67.117495693774231, 48.964144705267557 ], [ -66.598095039195044, 49.12635784622114 ], [ -66.178175589582636, 49.213116882733857 ], [ -65.882797160346101, 49.225674256259765 ], [ -65.523390408354572, 49.266136904287663 ], [ -65.396157737485396, 49.262060976397805 ], [ -64.836349366521034, 49.191726501058497 ], [ -64.567733633617905, 49.104802669617612 ], [ -64.261830301636124, 48.921869313029902 ], [ -64.216226051849574, 48.873661303378384 ], [ -64.208810280082318, 48.806216232446189 ], [ -64.370737776493741, 48.838988450493247 ], [ -64.513735828823684, 48.841097825573712 ], [ -64.414562241056132, 48.803634445238345 ], [ -64.24607590650389, 48.691112468289703 ], [ -64.253744363827664, 48.550366613311297 ], [ -64.348831037376812, 48.423199860413405 ], [ -64.633157220097999, 48.360511869740805 ], [ -64.705765865445912, 48.310589992836441 ], [ -64.7644877915141, 48.228093651798815 ], [ -64.822056153085171, 48.196485984577464 ], [ -64.95990161732793, 48.159846578882906 ], [ -65.036080819452678, 48.106266254573342 ], [ -65.259421892425593, 48.021254044299155 ], [ -65.360012716575326, 48.011124649381486 ], [ -65.475896510058448, 48.031482316173708 ], [ -65.754718542179035, 48.111693500874139 ], [ -65.92672050186539, 48.188839499910756 ], [ -66.0125566867804, 48.146673970958545 ], [ -66.083121875019131, 48.10269569779652 ], [ -66.24864190086447, 48.117318501088704 ], [ -66.324271786562022, 48.097894672222736 ], [ -66.448988588194581, 48.119647602740059 ], [ -66.704376781530627, 48.022440567781899 ] ] ], [ [ [ -64.614271721330695, 60.30597985472113 ], [ -64.815859863786301, 60.267428827859874 ], [ -64.846687501681032, 60.25076256745848 ], [ -64.84678637863793, 60.238183221275506 ], [ -64.789349853009398, 60.196116569280179 ], [ -64.644528070141135, 60.161344839438101 ], [ -64.622302727496432, 60.141316762502214 ], [ -64.649867425813568, 60.110082630451359 ], [ -64.710588863676776, 60.091010364098793 ], [ -64.782164794141551, 60.063775255638006 ], [ -64.88034961234014, 60.049668809787363 ], [ -64.887270999322908, 60.035408555337142 ], [ -64.868154787656195, 60.008788681274808 ], [ -64.834042237526774, 59.985772322974924 ], [ -64.682375971975546, 59.942903668995854 ], [ -64.665039545532963, 59.93271934243549 ], [ -64.661468988756127, 59.921513287320494 ], [ -64.665577875631612, 59.905539165617398 ], [ -64.761851072663518, 59.864043802706334 ], [ -64.790822021034302, 59.815572121169794 ], [ -64.818024170509489, 59.54024374152624 ], [ -64.775551024358009, 59.488311366498294 ], [ -64.714620846252458, 59.46629476409592 ], [ -64.444818589866571, 59.527993985199572 ], [ -64.385294661814655, 59.514766445632461 ], [ -64.378669905702566, 59.47507284060265 ], [ -64.425757309842567, 59.456418054734769 ], [ -64.503134021778621, 59.39865193924993 ], [ -64.518668690339979, 59.355860189570677 ], [ -64.519492664980788, 59.225793045937138 ], [ -64.505485096087057, 59.166005446000156 ], [ -64.47781053448449, 59.116182446052704 ], [ -64.441698472560049, 59.091067699000888 ], [ -64.332373517217761, 59.043760568290026 ], [ -64.324364483709104, 59.019964180663521 ], [ -64.358180402967832, 59.001924629194122 ], [ -64.393501449237107, 58.998496894688344 ], [ -64.770255613999751, 59.04869342980632 ], [ -64.801676513635869, 59.040277902141554 ], [ -64.832833741386921, 59.020019112306244 ], [ -64.851125978412838, 58.983687323810898 ], [ -64.848313478305556, 58.949223211168089 ], [ -64.808619873275731, 58.929370915488903 ], [ -64.617864250764612, 58.911496158947671 ], [ -64.294075175913036, 58.865990786118005 ], [ -64.235561990087191, 58.78576861508904 ], [ -64.191781470838976, 58.768739805845684 ], [ -64.155328832729666, 58.770574522712565 ], [ -63.990632781525136, 58.81098223909774 ], [ -63.72713667772355, 58.861684145328724 ], [ -63.665931841404401, 58.853620180177359 ], [ -63.591796096388848, 58.829790833565227 ], [ -63.535260449700928, 58.798787414413795 ], [ -63.504048290307153, 58.770574522712565 ], [ -63.4967094228397, 58.753446836512296 ], [ -63.506014843116546, 58.743416318551539 ], [ -63.553190137884897, 58.731606015366651 ], [ -63.960508268657222, 58.684221980355971 ], [ -64.031414033080807, 58.666314264829083 ], [ -64.070811007239939, 58.641693902561769 ], [ -64.084994357390357, 58.621171440841408 ], [ -64.085873263673889, 58.599374565009924 ], [ -64.062494356532056, 58.554825002763607 ], [ -64.038741914219727, 58.544750539488689 ], [ -63.882373500051614, 58.555209524262665 ], [ -63.840823205497855, 58.505166797744295 ], [ -63.837109826449947, 58.482578906257629 ], [ -63.848008264365689, 58.459738329214474 ], [ -64.022679901888253, 58.398764205794748 ], [ -64.097760471158608, 58.359180464050354 ], [ -64.371385969877835, 58.169292761494233 ], [ -64.394589095762967, 58.144331823042052 ], [ -64.400378890905699, 58.121414341699051 ], [ -64.386997542738996, 58.098881381855108 ], [ -64.226586159666667, 58.017549591643188 ], [ -64.133575902212357, 57.875430445596777 ], [ -64.078798068091501, 57.812522728353287 ], [ -64.045465547288714, 57.785254660906844 ], [ -63.985985564550973, 57.803140403776609 ], [ -63.961310270640936, 57.801690208408786 ], [ -63.921462857011505, 57.783299094425985 ], [ -63.871914515277638, 57.731157979155711 ], [ -63.841910852023716, 57.713349140585734 ], [ -63.793494102129884, 57.705966327804106 ], [ -63.715568073766619, 57.695858905543531 ], [ -63.617635941124561, 57.726137227011066 ], [ -63.601255325265313, 57.723061055018718 ], [ -63.598157180615871, 57.692453143694848 ], [ -63.614691605074739, 57.66929396312392 ], [ -63.743726033825141, 57.580875991001022 ], [ -63.758502645716945, 57.552926771184843 ], [ -63.761556845052198, 57.513134289198149 ], [ -63.742100057200616, 57.395778327690124 ], [ -63.799899131671097, 57.318720219281829 ], [ -63.793285361887555, 57.279037600580551 ], [ -63.760007772727491, 57.240794190918564 ], [ -63.757854452332836, 57.227665528308364 ], [ -63.791813193862637, 57.12987621793738 ], [ -63.835758508039021, 57.083129389982247 ], [ -63.876352992009458, 57.023034172846053 ], [ -63.903302455928113, 56.889341540792969 ], [ -63.950378873739567, 56.863457750743066 ], [ -64.003552703892993, 56.82056712410693 ], [ -64.030370331869122, 56.787080794704508 ], [ -64.100660861894241, 56.73788401548407 ], [ -64.115591282385665, 56.707396953774207 ], [ -64.111866917009223, 56.690906474629514 ], [ -63.954905241099738, 56.526990452751619 ], [ -63.925571743887005, 56.475365694922914 ], [ -63.954927213756818, 56.438880097827962 ], [ -64.052650606156547, 56.42973947247927 ], [ -64.136102757777493, 56.39457223480963 ], [ -64.118711399692188, 56.334334195402363 ], [ -64.121479954485309, 56.299408656960679 ], [ -64.115283665186439, 56.288653041316024 ], [ -64.083654025307979, 56.275249720492212 ], [ -63.912816616447301, 56.229019249978649 ], [ -63.899325404995153, 56.212331016920189 ], [ -63.991720428050996, 56.144633260431476 ], [ -64.004145965634365, 56.097457965663125 ], [ -63.968363493566244, 56.094711383527084 ], [ -63.885889125185727, 56.088416217271345 ], [ -63.83612105688097, 56.063323442876623 ], [ -63.578304884936699, 56.02557441799911 ], [ -63.55846357558606, 55.99249458275284 ], [ -63.586478713373495, 55.976168898536315 ], [ -63.661119829502084, 55.947802198235451 ], [ -63.698407428580737, 55.923379589881932 ], [ -63.708404987555866, 55.883356394995786 ], [ -63.700571735303924, 55.860911325780222 ], [ -63.524416943427909, 55.705696476109239 ], [ -63.415168892385424, 55.596008971924988 ], [ -63.363390325957099, 55.564675962917221 ], [ -63.30455853660348, 55.54211004408765 ], [ -63.154353452748609, 55.51358953518718 ], [ -63.151079526842466, 55.484080256717732 ], [ -63.159473081850152, 55.440442559740603 ], [ -63.151310239741889, 55.40447332008722 ], [ -63.111825374954407, 55.339829762933761 ], [ -63.161384703016822, 55.307475025371417 ], [ -63.429275338236039, 55.209883468914228 ], [ -63.510892772990132, 55.167641035662172 ], [ -63.534018994575447, 55.140350995558634 ], [ -63.551157667104235, 55.086254313807501 ], [ -63.48012006673811, 54.987234534639583 ], [ -63.476044138848252, 54.961867102031277 ], [ -63.49149091678126, 54.917789951912368 ], [ -63.569658644372495, 54.776297026592943 ], [ -63.657999712195561, 54.644362207106923 ], [ -63.698824909065422, 54.615193504822344 ], [ -63.751240682549295, 54.612172264472719 ], [ -63.91017989759672, 54.634035058275458 ], [ -64.341052716767592, 54.726320218045856 ], [ -64.815189697745112, 54.733867825755652 ], [ -65.121785168425163, 54.719168118163651 ], [ -65.675803744246807, 54.744931058599576 ], [ -65.741644811211557, 54.768881254825686 ], [ -65.796829139488551, 54.80502627573577 ], [ -65.86811942541118, 54.898256259760956 ], [ -65.883643107643991, 54.90718814486732 ], [ -66.082836230476985, 54.941707189152851 ], [ -66.15663139930767, 54.967755774130893 ], [ -66.239797906386471, 55.008372230758425 ], [ -66.617914375888589, 55.255960130828157 ], [ -66.733413647872666, 55.318900807057275 ], [ -66.773986159186009, 55.328250172648296 ], [ -66.79961726367938, 55.311199390747873 ], [ -66.797310134685119, 55.293830005319649 ], [ -66.725064038179156, 55.213190353805999 ], [ -66.719043530136986, 55.192547042471631 ], [ -66.747443189423478, 55.129144940443666 ], [ -66.692797191245148, 54.998012122941333 ], [ -66.710364330587154, 54.948222081979509 ], [ -66.656729074634882, 54.846785310531885 ], [ -66.650785470892529, 54.798566314551834 ], [ -66.724448803780689, 54.747974271606267 ], [ -66.867051348283042, 54.780977202552748 ], [ -67.166725431980325, 54.937477452663387 ], [ -67.301747409787254, 55.063721353963587 ], [ -67.338650487366877, 55.07459781922222 ], [ -67.408150001736814, 55.071785319114952 ], [ -67.426442238762732, 55.05886539674708 ], [ -67.437087991121956, 55.036222573617692 ], [ -67.415774513746413, 54.983773841148206 ], [ -67.372026953483825, 54.917350498770588 ], [ -67.290024997230702, 54.825779450355554 ], [ -67.204595306471816, 54.699271877170304 ], [ -67.19917904649958, 54.682089259327341 ], [ -67.146873136301139, 54.65304140665674 ], [ -67.150180021192924, 54.616665672847262 ], [ -67.236071137750656, 54.58566225369583 ], [ -67.285520602527626, 54.518557758948475 ], [ -67.314568455198213, 54.517393208122797 ], [ -67.536514264446026, 54.572665427028141 ], [ -67.578525984798645, 54.565458395503214 ], [ -67.601421493484537, 54.552791158691889 ], [ -67.620131210995126, 54.506538715521231 ], [ -67.609716171535325, 54.451640031786411 ], [ -67.581942732975861, 54.391819472863801 ], [ -67.515332623013009, 54.281725474523427 ], [ -67.507993755545556, 54.252809457795365 ], [ -67.511322613094407, 54.236176156379599 ], [ -67.681061389100691, 54.141342168386984 ], [ -67.731411732818273, 54.099923709775737 ], [ -67.761470327714918, 54.060735475858962 ], [ -67.757251577553987, 54.033654175997754 ], [ -67.530625592346382, 53.839371942023973 ], [ -67.470991801009035, 53.796459342730742 ], [ -67.455742776989837, 53.730464467166371 ], [ -67.476957377408482, 53.635202012360509 ], [ -67.473529642902733, 53.613317245900674 ], [ -67.457094095400763, 53.601221298173613 ], [ -67.164912687770553, 53.543037702204089 ], [ -67.128482022318323, 53.502827739732709 ], [ -67.076055262505903, 53.41740903530237 ], [ -67.025902672702117, 53.393118262891363 ], [ -66.980353354558289, 53.383999610199766 ], [ -66.944439046547643, 53.355138525114427 ], [ -66.937902181063905, 53.328837254579867 ], [ -66.965236166481617, 53.182960784171371 ], [ -66.970300863940452, 53.072987635444974 ], [ -67.028023034111129, 52.980482749103714 ], [ -67.0536541386045, 52.920024983125558 ], [ -67.06969417827888, 52.832584794243104 ], [ -67.068024256340181, 52.75492243776489 ], [ -67.029473229478938, 52.720370434493702 ], [ -66.951019857345557, 52.698309886777167 ], [ -66.897483478350182, 52.693761546759902 ], [ -66.855834306839526, 52.698441722719679 ], [ -66.814778397070242, 52.686499583592251 ], [ -66.688347728184795, 52.72688532732036 ], [ -66.671296946284357, 52.748825025422917 ], [ -66.631383614683656, 52.910258137049851 ], [ -66.615277657038007, 52.931549641768299 ], [ -66.521025944458216, 52.958499105686968 ], [ -66.489912662021339, 53.005037193399744 ], [ -66.467950991261702, 53.01862728180879 ], [ -66.428037659661001, 53.010816002213943 ], [ -66.389893126955897, 52.991985435089362 ], [ -66.328138974209537, 52.933878743419655 ], [ -66.300211727050453, 52.896876788883134 ], [ -66.310472957910633, 52.861006426186663 ], [ -66.34134454111954, 52.840077470310177 ], [ -66.35680230538108, 52.806261551051449 ], [ -66.366360411214444, 52.741431226312727 ], [ -66.416589905318048, 52.688433177416016 ], [ -66.426093079508689, 52.660868479098895 ], [ -66.39423272673082, 52.4178289190464 ], [ -66.401681457483718, 52.397833801096169 ], [ -66.463402651244436, 52.341331113393892 ], [ -66.462216127761678, 52.294529353796037 ], [ -66.439276673761611, 52.22911675364449 ], [ -66.407438293640823, 52.18368828511467 ], [ -66.37886285309763, 52.16451714180522 ], [ -66.345453427995039, 52.154849172686397 ], [ -66.326820614784253, 52.188654105616592 ], [ -66.29602593587515, 52.294584285438759 ], [ -66.279535456730457, 52.300813533723243 ], [ -66.148545461499211, 52.229830864999855 ], [ -66.096964648984695, 52.209528129850355 ], [ -66.035781785322627, 52.109244922899876 ], [ -65.978839644478583, 52.080746386656472 ], [ -65.882928996288626, 52.054214403222488 ], [ -65.826799843756845, 52.052379686355636 ], [ -65.805903846865974, 52.063695604756049 ], [ -65.780558386914748, 52.103894580898896 ], [ -65.690635287781333, 52.093589404724526 ], [ -65.631100373400884, 52.073099901989792 ], [ -65.589143584690973, 52.073363573874843 ], [ -65.551647245369978, 52.093951953566489 ], [ -65.474270533433923, 52.196245658640549 ], [ -65.452100122431929, 52.202914360066814 ], [ -65.398047385994985, 52.202958305381003 ], [ -65.268156023618147, 52.185215384782282 ], [ -65.137133069401273, 52.154695364086791 ], [ -65.036179696409576, 52.113463673060807 ], [ -64.932150151425546, 52.055016405206203 ], [ -64.76464160011372, 51.90541556942128 ], [ -64.657964349950561, 51.848561319205572 ], [ -64.626719231571158, 51.825314248006265 ], [ -64.638968987897826, 51.790531531835654 ], [ -64.692736079792624, 51.762626257333665 ], [ -64.702327144611615, 51.745421666833607 ], [ -64.697416255752401, 51.720460728381425 ], [ -64.598011955085425, 51.600369171065921 ], [ -64.506342029713508, 51.608894562016133 ], [ -64.290515605464748, 51.728777379089308 ], [ -64.289373027296165, 51.7690862185176 ], [ -64.326067364633445, 51.811460487712168 ], [ -64.334570782926576, 51.84190360410787 ], [ -64.321420147659296, 51.929651410189535 ], [ -64.270828104713729, 52.083229296907462 ], [ -64.259611063270214, 52.099511035809797 ], [ -64.159569555547677, 52.148026662660527 ], [ -64.13067551147671, 52.1866875528072 ], [ -64.103187717459392, 52.378486876530019 ], [ -64.183464820131093, 52.554158269950079 ], [ -64.187211158164629, 52.625964913314306 ], [ -64.178477026972075, 52.815325272100324 ], [ -64.139365697355089, 52.854238847803515 ], [ -64.007892303667902, 52.878222003015253 ], [ -63.973373259382356, 52.895064044673376 ], [ -63.917463833421451, 53.065593836334813 ], [ -63.905060268495177, 53.076920741063759 ], [ -63.798965293744843, 53.104298671795647 ], [ -63.722544392392123, 53.109187587997781 ], [ -63.671611773261688, 53.100739101347358 ], [ -63.606188186781608, 53.034854089068432 ], [ -63.554585401609998, 52.964310873486795 ], [ -63.548696729510354, 52.939712483876576 ], [ -63.566791212622476, 52.82587214750265 ], [ -63.563484327730706, 52.796989089760217 ], [ -63.550245801835075, 52.774148512717062 ], [ -63.409686714441918, 52.688718821958162 ], [ -63.422760445409395, 52.66988825483358 ], [ -63.522549267575414, 52.648805490357461 ], [ -63.810676719972847, 52.611254219393743 ], [ -63.898545375668519, 52.58924860331993 ], [ -63.955465543855482, 52.565606024293032 ], [ -64.017615204429433, 52.52547296612147 ], [ -64.059418184539709, 52.485120181378988 ], [ -64.06616379026579, 52.465894106426816 ], [ -64.061670381891247, 52.457753236975663 ], [ -63.951103971423478, 52.428793274933412 ], [ -63.942787320715595, 52.418092590931479 ], [ -63.935492398562317, 52.380936827795352 ], [ -63.883955531361963, 52.344923642827808 ], [ -63.76558882762788, 52.297528621488567 ], [ -63.683751666302925, 52.138029103685398 ], [ -63.668019243827771, 52.094182666465912 ], [ -63.664294878451329, 52.060125047979227 ], [ -63.704010456138235, 52.048369676437034 ], [ -63.785507041278336, 52.050775682388206 ], [ -63.792197715361681, 52.044063035647753 ], [ -63.783364707212229, 52.020442429277949 ], [ -63.756898641749501, 52.010521774602637 ], [ -63.606572708280652, 52.000831832826748 ], [ -63.199990661520772, 52.000853805483814 ], [ -62.793397628432359, 52.000853805483814 ], [ -62.386804595343946, 52.000853805483814 ], [ -61.980189589598439, 52.000908737126537 ], [ -61.573574583852931, 52.000908737126537 ], [ -61.166981550764504, 52.000930709783631 ], [ -60.760399504004639, 52.000963668769259 ], [ -60.353806470916211, 52.000963668769259 ], [ -59.947213437827799, 52.000985641426354 ], [ -59.540620404739386, 52.001007614083449 ], [ -59.134038357979506, 52.001007614083449 ], [ -58.727412365905451, 52.001040573069076 ], [ -58.320797360159943, 52.001062545726171 ], [ -57.914215313400078, 52.001062545726171 ], [ -57.507622280311651, 52.001084518383237 ], [ -57.101029247223238, 52.001117477368894 ], [ -57.100974315580515, 51.710693882305719 ], [ -57.100128368282626, 51.44334157718518 ], [ -57.299233600487256, 51.478256129298302 ], [ -57.461655481683167, 51.469104517621076 ], [ -57.769569311788516, 51.425906273785699 ], [ -57.853746561093374, 51.399495139965694 ], [ -58.022650376130301, 51.322085469043998 ], [ -58.089425281021306, 51.311000263543008 ], [ -58.270447016442361, 51.295212909425146 ], [ -58.442262208543468, 51.305913593427078 ], [ -58.510377445516852, 51.295059100825512 ], [ -58.593269294382054, 51.257134294691298 ], [ -58.614758553014298, 51.237051286112688 ], [ -58.637599130057481, 51.171660658618237 ], [ -59.054947778790563, 50.879116702146064 ], [ -59.165371366987259, 50.77989916906435 ], [ -59.378044714943854, 50.67543017093854 ], [ -59.61188871800492, 50.492112292851772 ], [ -59.815311577327392, 50.418262192378364 ], [ -59.886316218707876, 50.316385967788989 ], [ -60.080202944854065, 50.254576883399892 ], [ -60.438115556163609, 50.238844460924753 ], [ -60.60820589468328, 50.221123512983127 ], [ -60.807234222588107, 50.249797830483203 ], [ -60.956296728274395, 50.205413063165082 ], [ -61.18070347511609, 50.191515357556796 ], [ -61.289764758573313, 50.201952369673677 ], [ -61.724856327905115, 50.104075168674342 ], [ -61.835345834073081, 50.196964576514659 ], [ -61.919523083377939, 50.232856911868225 ], [ -62.165221334938082, 50.23892136522457 ], [ -62.36166787563505, 50.277296610829097 ], [ -62.540931798489055, 50.284525615011091 ], [ -62.715438641083466, 50.301686260196988 ], [ -62.830212815383618, 50.301477519954631 ], [ -62.949766042600459, 50.29134812503699 ], [ -63.135621762580925, 50.293776103645229 ], [ -63.238640565338898, 50.242568826301209 ], [ -63.58667646728729, 50.258224344476531 ], [ -63.733574666250391, 50.304630596246795 ], [ -63.853951868108041, 50.314342510679779 ], [ -64.015824432876741, 50.303960430205592 ], [ -64.170391089163616, 50.269441385920061 ], [ -64.508945789578448, 50.308915264378982 ], [ -64.867847170456955, 50.275483866619311 ], [ -65.180902602320941, 50.297906963177809 ], [ -65.268617449417007, 50.320033428865628 ], [ -65.762441931145531, 50.259257059359669 ], [ -65.955372846708386, 50.294160625144258 ], [ -66.125518116870794, 50.201018531747422 ], [ -66.242203912337629, 50.220343483656507 ], [ -66.3688652941225, 50.206654518290549 ], [ -66.411085754717462, 50.224276589275291 ], [ -66.495526675907371, 50.211873024348989 ], [ -66.550062810800256, 50.161171118118006 ], [ -66.621715645564848, 50.155414281960901 ], [ -66.740884351282645, 50.065524141813114 ], [ -66.941176106970047, 49.993695525791821 ], [ -67.234390229483409, 49.601780227638301 ], [ -67.261889009829275, 49.4511906222844 ], [ -67.372004980826745, 49.348457464068559 ], [ -67.46921201578489, 49.33463666276009 ], [ -67.549280378214263, 49.33228558845164 ], [ -68.056222536224453, 49.256787538696642 ], [ -68.281925669834337, 49.197153747359295 ], [ -68.220588997572648, 49.149637876406075 ], [ -68.294559947660048, 49.114371761779523 ], [ -68.414398819419034, 49.099540218244982 ], [ -68.543850728654107, 49.056122247838744 ], [ -68.627896142016439, 49.007189140503328 ], [ -68.669061915071168, 48.939491384014616 ], [ -68.929042393738627, 48.828957932532461 ], [ -69.230759934545119, 48.573624670839166 ], [ -69.374955496686368, 48.386395659790679 ], [ -69.550121518993421, 48.250802392899459 ], [ -69.67388251004266, 48.199177635070754 ], [ -69.76193793332358, 48.191168601562111 ], [ -69.851696237528827, 48.207395408821753 ], [ -70.001022415100181, 48.270951319449324 ], [ -70.110654987641695, 48.277982569717551 ], [ -70.383709197276644, 48.366510405125865 ], [ -71.018246574997946, 48.455598543289938 ], [ -70.922588612364507, 48.422320954129873 ], [ -70.83874095291597, 48.367389311409397 ], [ -70.671078593004538, 48.353194974930432 ], [ -70.500647678299984, 48.354359525756109 ], [ -70.145327840526861, 48.243540429731809 ], [ -69.971172560445865, 48.205736473211601 ], [ -69.865495066180216, 48.17225014380918 ], [ -69.774989691633962, 48.098103412465093 ], [ -69.839809030044123, 47.952578504569999 ], [ -69.90555122005199, 47.832223275369444 ], [ -69.9944525906308, 47.73987219762779 ], [ -70.300092250727531, 47.503017940545618 ], [ -70.448045137230864, 47.423465935557829 ], [ -70.705861309175148, 47.13980991887783 ], [ -70.972719229511213, 47.006688575909038 ], [ -71.115651363869901, 46.924939305212433 ], [ -71.267790041548523, 46.795959808104755 ], [ -71.624768814931812, 46.698390224304632 ], [ -71.75726393717359, 46.673583094452084 ], [ -71.879607691840647, 46.686810634019167 ], [ -72.028461457284592, 46.607434410288079 ], [ -72.204627235489156, 46.558863851794626 ], [ -72.256647501145437, 46.485068682963941 ], [ -72.680126521206134, 46.28730378284169 ], [ -72.842702211001651, 46.26239777603223 ], [ -72.981020087371817, 46.209740303320388 ], [ -73.021922188541481, 46.120256657328724 ], [ -73.145430494034201, 46.066280825191569 ], [ -73.179685866434681, 46.024994202522862 ], [ -73.283528643833478, 45.899837947748551 ], [ -73.476591395338858, 45.73824004119345 ], [ -73.711852634782119, 45.711158741332241 ], [ -73.797842628296749, 45.654941698172109 ], [ -73.897400737563331, 45.564139692755163 ], [ -74.037827989013962, 45.501869182567248 ], [ -74.315100948809842, 45.531070843837455 ], [ -74.247633905220553, 45.492882365818161 ], [ -73.999606552009055, 45.433347451437726 ], [ -73.973854597901692, 45.345138219557185 ], [ -74.098109973735419, 45.324000523438343 ], [ -74.340446408761068, 45.214444855196632 ], [ -74.41294519082355, 45.269101839703495 ], [ -74.478061160104403, 45.317903111096371 ], [ -74.453067262666579, 45.393554969451003 ], [ -74.41501062058984, 45.508845501192724 ], [ -74.396564574964302, 45.567710249532013 ], [ -74.577223761543408, 45.632199998085838 ], [ -74.717211559852259, 45.651371141395288 ], [ -74.864186663115163, 45.642175584403873 ], [ -75.167134672718589, 45.57530180255597 ], [ -75.626132492962341, 45.450760782180112 ], [ -75.903965755513966, 45.420229775156059 ], [ -76.000623474044914, 45.483631877184024 ], [ -76.122637638855636, 45.504868450259778 ], [ -76.26994233197486, 45.483939494383264 ], [ -76.41344575541784, 45.496343059309567 ], [ -76.553125936527465, 45.542079145038628 ], [ -76.666581751402333, 45.642593064888558 ], [ -76.753813200042444, 45.797829887216608 ], [ -76.823708222239986, 45.879678034870125 ], [ -76.871608614692235, 45.887434382822249 ], [ -76.890208468917393, 45.89026885558664 ], [ -76.912895237360942, 45.875799860894062 ], [ -76.925529515186653, 45.819681694690814 ], [ -76.940932347805486, 45.800971977180239 ], [ -76.976747778859234, 45.79810454543022 ], [ -77.030844460610354, 45.807464897349774 ], [ -77.100684551165173, 45.832656548701408 ], [ -77.233234605049674, 45.903584285782074 ], [ -77.266797838751884, 45.92939117153216 ], [ -77.282464343255768, 45.961998594651021 ], [ -77.292747546773043, 45.97677520654284 ], [ -77.371343741177498, 46.06285309068582 ], [ -77.37300267678765, 46.063699037983724 ], [ -77.682674319460062, 46.186669013377781 ], [ -78.460451448739278, 46.306892406635797 ], [ -78.780999556670352, 46.393442702906185 ], [ -78.90316753008068, 46.486463946689042 ], [ -79.014579887846352, 46.606511558690386 ], [ -79.16555401469931, 46.827171967498515 ], [ -79.3649448914461, 47.021959572585331 ], [ -79.434916817943432, 47.13381138349277 ], [ -79.441937081883111, 47.227656601916436 ], [ -79.479224680961778, 47.318865101489507 ], [ -79.546713697208148, 47.407447868540544 ], [ -79.559293043391136, 47.483044795252454 ], [ -79.513249340462835, 47.551050168940407 ], [ -79.512974682249236, 47.556422483598482 ], [ -79.513458080705178, 47.839737924093612 ], [ -79.513974438146747, 48.0816129333204 ], [ -79.514468822931235, 48.323487942547189 ], [ -79.514963207715709, 48.565351965445444 ], [ -79.515446606171651, 48.807226974672261 ], [ -79.515940990956139, 49.04910198389905 ], [ -79.516435375740627, 49.29094403414021 ], [ -79.516918774196569, 49.532819043367027 ], [ -79.517413158981043, 49.774683066265283 ], [ -79.517907543765531, 50.016536102834976 ], [ -79.51840192855002, 50.258400125733232 ], [ -79.518885327005961, 50.500275134960049 ], [ -79.519379711790435, 50.742150144186837 ], [ -79.51955549304715, 50.918524662633757 ], [ -79.456131418362091, 50.875601077011964 ], [ -79.347894109545663, 50.762639646921571 ], [ -79.380732245563962, 50.834523194585586 ], [ -79.452637765885058, 50.917305180165357 ], [ -79.52046735831631, 50.965985601944226 ], [ -79.520357495030865, 51.22588917631191 ], [ -79.521346264599828, 51.544712430661548 ], [ -79.497571849630418, 51.569926054670248 ], [ -79.338665593568621, 51.628164582282494 ], [ -79.296961490415228, 51.622792267624419 ], [ -79.264255190339469, 51.551996366486264 ], [ -79.226110657634365, 51.537318631551358 ], [ -79.152732969288351, 51.526211453393273 ], [ -79.090879939585093, 51.501711940739938 ], [ -79.040540582196058, 51.463787134605724 ], [ -79.005043754670083, 51.425334984701408 ], [ -78.984323539035913, 51.386377463684028 ], [ -78.936928517696686, 51.25914479281488 ], [ -78.90316753008068, 51.200291030804152 ], [ -78.897509570880473, 51.271702166340759 ], [ -78.85800273343591, 51.383949485075789 ], [ -78.827427781097697, 51.42999318800409 ], [ -78.73136332430812, 51.497482204250474 ], [ -78.73640604910986, 51.526617947549425 ], [ -78.77629740805348, 51.565795195137667 ], [ -78.977753714566546, 51.733798131233954 ], [ -78.981631888542609, 51.774568396461092 ], [ -78.927886769304905, 51.798804237229376 ], [ -78.891093555010727, 51.845100625714196 ], [ -78.871252245660088, 51.913424602929922 ], [ -78.828207810424331, 51.963005903649417 ], [ -78.701985881781212, 52.032692185604617 ], [ -78.593309119823019, 52.139710011952644 ], [ -78.5373667348765, 52.213296440541001 ], [ -78.491641635475972, 52.25211113928728 ], [ -78.448102815455726, 52.261361627921417 ], [ -78.51308694879404, 52.291123591947354 ], [ -78.526050816476072, 52.310712215741489 ], [ -78.529072056825697, 52.399174133178548 ], [ -78.557065221956051, 52.491887759762164 ], [ -78.600571082990669, 52.535118962583169 ], [ -78.723793743941243, 52.627744698538436 ], [ -78.744129438076371, 52.655386301155374 ], [ -78.765783491636782, 52.760031080537885 ], [ -78.753632612267012, 52.812380936050516 ], [ -78.721706341517873, 52.856469072497958 ], [ -78.739866742601251, 52.898997150292161 ], [ -78.854091600474206, 52.976099204014616 ], [ -78.898223682235837, 53.043379480018643 ], [ -78.947134816914158, 53.206185882713584 ], [ -78.992024955345329, 53.410355812377048 ], [ -79.043100396746823, 53.560505964589197 ], [ -79.100361141118654, 53.656625353021496 ], [ -79.113149227543971, 53.717214954942193 ], [ -79.081442683365722, 53.742274770351258 ], [ -79.040342828282263, 53.817959587691547 ], [ -79.003187065146122, 53.836559441916677 ], [ -78.945695607874882, 53.831593621414754 ], [ -78.944377248449584, 53.840228875650411 ], [ -79.032015191245833, 53.881054072520271 ], [ -79.075169489767035, 53.932393185806831 ], [ -79.07327984125746, 53.951432493173741 ], [ -78.996023978935384, 54.002496948246687 ], [ -79.009899711886575, 54.023986206878959 ], [ -79.067160456258392, 54.051946413023671 ], [ -79.241799134795329, 54.098869022235505 ], [ -79.178825499580583, 54.116952519019094 ], [ -79.138835263680065, 54.157206426804663 ], [ -79.146734433903276, 54.169247442888974 ], [ -79.21598126271671, 54.185682990390944 ], [ -79.295676089975572, 54.216851204470544 ], [ -79.356133855953729, 54.263378305854786 ], [ -79.430544259182881, 54.336635144586808 ], [ -79.475972727712715, 54.394763808913609 ], [ -79.520665112230105, 54.491553363387112 ], [ -79.597931960880715, 54.601680320713115 ], [ -79.631725907482362, 54.629124169416258 ], [ -79.670397783957569, 54.646845117357884 ], [ -79.713936603977828, 54.654964014151972 ], [ -79.712343586338932, 54.671806055810066 ], [ -79.665519854083996, 54.697437160303451 ], [ -78.909231983437024, 54.881480136074117 ], [ -78.846236375565184, 54.907990146851034 ], [ -78.475052279374381, 55.011008949608993 ], [ -78.30358864978669, 55.06855533852297 ], [ -78.12887306694995, 55.151337324102741 ], [ -77.891106944598633, 55.236426438676745 ], [ -77.775278082758248, 55.291248218111775 ], [ -77.702153079968753, 55.344169362708698 ], [ -77.324937489407233, 55.555524351239995 ], [ -77.165108381747743, 55.663530947157 ], [ -77.072548563763746, 55.756288519054777 ], [ -76.938086888712562, 55.867239451021618 ], [ -76.761822233551101, 55.996427688371625 ], [ -76.650453821099603, 56.107224811738831 ], [ -76.604047569329339, 56.199564903151952 ], [ -76.546380330801384, 56.358778776412976 ], [ -76.529823933685435, 56.499964084533133 ], [ -76.519639607125058, 56.706979473289522 ], [ -76.525561238210329, 56.891769519401208 ], [ -76.572835409935564, 57.181182372238311 ], [ -76.601421836807305, 57.272270022197404 ], [ -76.65541964160154, 57.38058423531362 ], [ -76.786266814561714, 57.59860792527121 ], [ -76.809799530303152, 57.657978044723478 ], [ -76.89091159394421, 57.758129415731474 ], [ -77.156780744711313, 58.018889923725567 ], [ -77.489161128484369, 58.195308387486648 ], [ -77.552420408241275, 58.239594277847885 ], [ -77.684091555842258, 58.291372844276196 ], [ -77.884130625973143, 58.350753950057054 ], [ -78.013549576222573, 58.399170699950872 ], [ -78.351719755138376, 58.580664847499321 ], [ -78.463011263290056, 58.60243975067371 ], [ -78.505901889926207, 58.64913164698612 ], [ -78.515097446917608, 58.682365290832024 ], [ -78.502287387835196, 58.769102354687647 ], [ -78.48258890075563, 58.829098694866957 ], [ -78.458671663515133, 58.873307680928377 ], [ -78.430502717128078, 58.901784244514687 ], [ -78.244438256905283, 59.035048409754552 ], [ -78.140232930664538, 59.141736646246272 ], [ -78.067679216959334, 59.200183914100847 ], [ -77.987632827187056, 59.245502519345251 ], [ -77.842844003304435, 59.305015461068592 ], [ -77.760677252123145, 59.380041098696239 ], [ -77.779430914947909, 59.410374351806468 ], [ -77.844678720171288, 59.443509118695459 ], [ -77.85901587892134, 59.475797938286576 ], [ -77.749042730194944, 59.558173429710195 ], [ -77.733519047962133, 59.580959075110655 ], [ -77.747526616855865, 59.658500581974863 ], [ -77.726158207837599, 59.675869967403088 ], [ -77.590400146018212, 59.680517184377237 ], [ -77.396689201128723, 59.56923666255409 ], [ -77.34907445321862, 59.578948576987074 ], [ -77.411026359878761, 59.609622406282199 ], [ -77.485293940836854, 59.68457113961 ], [ -77.474571284177813, 59.715684422046877 ], [ -77.33166112247622, 59.796609718102701 ], [ -77.327629139900537, 59.833402932396865 ], [ -77.368399405127676, 59.884357524184367 ], [ -77.372969717802022, 59.925105816754439 ], [ -77.289209948981835, 60.022016220841891 ], [ -77.311808826797048, 60.042384873962646 ], [ -77.547146970540112, 60.061138536787411 ], [ -77.585906737643668, 60.088164905005897 ], [ -77.572184813292097, 60.1009529914312 ], [ -77.46136571726781, 60.1335164692359 ], [ -77.452884271631774, 60.145788198219662 ], [ -77.648616700973363, 60.362515501409035 ], [ -77.681454836991676, 60.427115113248306 ], [ -77.598156493970336, 60.506744022535912 ], [ -77.50355321887713, 60.542713262189267 ], [ -77.515572262304374, 60.563180792266934 ], [ -77.639465089296138, 60.566894171314829 ], [ -77.714996098036792, 60.577803595559118 ], [ -77.790801764991045, 60.639865365504704 ], [ -77.761215582221794, 60.679031626764413 ], [ -77.734211186660417, 60.696972301276929 ], [ -77.660624758072061, 60.789521132932379 ], [ -77.589576171377402, 60.808593399284916 ], [ -77.603012451186828, 60.82517176905796 ], [ -77.871551279790154, 60.785851699198645 ], [ -77.998124770946674, 60.818195450432455 ], [ -78.122435078423109, 60.809626114168083 ], [ -78.181376731062173, 60.81912928835871 ], [ -78.159645773201959, 60.852198137276446 ], [ -77.934206311477126, 61.002655906687835 ], [ -77.830132821178907, 61.084020655885382 ], [ -77.765016851898054, 61.157508207516855 ], [ -77.730596684569406, 61.206397369538081 ], [ -77.726828373878789, 61.230677155620526 ], [ -77.749614019279235, 61.393000159859525 ], [ -77.736177739469809, 61.437340981863485 ], [ -77.648902345515509, 61.478671549846382 ], [ -77.514363766164522, 61.556289961010407 ], [ -77.698450687249391, 61.626415696107358 ], [ -77.813774177976754, 61.694783618637274 ], [ -77.889887462130247, 61.728687428524353 ], [ -77.947532728001107, 61.761866140727534 ], [ -78.021382828474515, 61.832090752781369 ], [ -78.077479022020668, 61.923376156654257 ], [ -78.13713478601511, 62.107375187110762 ], [ -78.146956563733525, 62.208713081601502 ], [ -78.133421406967202, 62.282299510189858 ], [ -78.108581318128998, 62.318103954915046 ], [ -78.0681186701011, 62.355413526650807 ], [ -77.899917980091004, 62.42655000397383 ], [ -77.603968261770163, 62.531381550941575 ], [ -77.372431387703358, 62.572514365010676 ], [ -77.205252426247867, 62.549959432509638 ], [ -76.879386935301454, 62.525383015556514 ], [ -76.616352257298729, 62.465694292576444 ], [ -75.816888115473475, 62.315862743892069 ], [ -75.675527026096603, 62.249538278471363 ], [ -75.809219658149686, 62.193409125939581 ], [ -75.789839774597908, 62.179566351974017 ], [ -75.488825358818247, 62.286430369722439 ], [ -75.409240394844815, 62.307073681056778 ], [ -75.341180089514154, 62.31208344687289 ], [ -75.114015774207886, 62.27074189256146 ], [ -75.022752342992092, 62.264468698962787 ], [ -74.907571674535802, 62.230048531634139 ], [ -74.632572884748555, 62.115691837818645 ], [ -74.612907356654617, 62.125205998337833 ], [ -74.689910533420189, 62.18344452595008 ], [ -74.645778451658558, 62.211141060209741 ], [ -74.4292269297259, 62.271807566430255 ], [ -74.205435417282672, 62.321366894492655 ], [ -74.046485215906714, 62.370047316271553 ], [ -73.87781211376921, 62.434383256225772 ], [ -73.763971777395298, 62.468748491911697 ], [ -73.705052097413315, 62.473143023329328 ], [ -73.629971528142974, 62.454202592919302 ], [ -73.428383385687368, 62.368827833803152 ], [ -73.298986408095018, 62.325058300883484 ], [ -73.195165603353317, 62.279146433897694 ], [ -73.049355050916091, 62.198221137841898 ], [ -72.992357978429325, 62.180445258257549 ], [ -72.881846499604265, 62.125403752251628 ], [ -72.734937314312631, 62.131094670437477 ], [ -72.686949031232018, 62.124557804953724 ], [ -72.670832087257835, 62.113879093608887 ], [ -72.646002984748179, 62.076624453515848 ], [ -72.633083062380322, 62.052806093232249 ], [ -72.632094292811345, 62.027218934053053 ], [ -72.665998102698424, 61.955335386389038 ], [ -72.771620665321365, 61.840407403489252 ], [ -72.727389706602835, 61.838627618265122 ], [ -72.660625788040363, 61.863247980532435 ], [ -72.573855765199099, 61.907149349394643 ], [ -72.505564746969014, 61.922684017955987 ], [ -72.360720991443657, 61.887802424828493 ], [ -72.226127480449946, 61.8315743953398 ], [ -72.178479773554201, 61.801812431313863 ], [ -72.126129918041599, 61.753230886491849 ], [ -72.081459506181304, 61.728269948039667 ], [ -72.040041047570057, 61.680270678630535 ], [ -72.042963410962798, 61.664714037412097 ], [ -72.082030795265595, 61.641401048241505 ], [ -72.247056436326446, 61.602026046739468 ], [ -72.215866249589766, 61.587271407504772 ], [ -72.023089142626517, 61.611946701414809 ], [ -71.964389189215424, 61.63629240546851 ], [ -71.92226760557736, 61.676930834753108 ], [ -71.866094507731404, 61.688532397695695 ], [ -71.638303971698136, 61.617165207473249 ], [ -71.604773696981553, 61.592369063949207 ], [ -71.619418472930832, 61.57291227609764 ], [ -71.656189714567915, 61.55091764635236 ], [ -71.755747823834511, 61.526736737226798 ], [ -71.841034692322324, 61.465993326706496 ], [ -71.854394067831947, 61.439812905785914 ], [ -71.793650657311645, 61.421213051560756 ], [ -71.645335221966349, 61.413149086409391 ], [ -71.646422868492223, 61.398735023359535 ], [ -71.732105244807613, 61.372071203983012 ], [ -71.743443135865121, 61.337233556169707 ], [ -71.551522962528324, 61.21326382487814 ], [ -71.42271924667736, 61.158958402884679 ], [ -71.348451665719267, 61.148982816566615 ], [ -71.175164305593256, 61.146521878972749 ], [ -71.034956780713514, 61.125516018796446 ], [ -70.723219708274812, 61.0551925297857 ], [ -70.54075876381448, 61.042481347660157 ], [ -70.383654265633922, 61.063970606292429 ], [ -70.279273158136476, 61.068672754909301 ], [ -70.187229697594049, 61.040536767507859 ], [ -70.157962118352572, 61.020640526514512 ], [ -70.144163289701197, 60.981089743755774 ], [ -70.145899129611152, 60.921807514931828 ], [ -70.095307086665599, 60.880290179363698 ], [ -69.992442092507233, 60.856493791737194 ], [ -69.909220653785709, 60.860108293828176 ], [ -69.800434028542085, 60.906668354198075 ], [ -69.708401554328205, 60.914633442392528 ], [ -69.677606875419102, 60.949558980834212 ], [ -69.650448671258104, 61.014158592673482 ], [ -69.623653015939055, 61.049501611599851 ], [ -69.556987974333481, 61.059685938160214 ], [ -69.503352718381208, 61.040404931565348 ], [ -69.471931818745091, 61.010950584738623 ], [ -69.414341484516953, 60.922488667301565 ], [ -69.398345390156749, 60.882849993914476 ], [ -69.404728447040867, 60.846803849961276 ], [ -69.43345769618368, 60.814273331142232 ], [ -69.489960383885958, 60.779600478257066 ], [ -69.574225523819166, 60.742730359663085 ], [ -69.640473084940055, 60.689787242409068 ], [ -69.721398380995865, 60.567443487742025 ], [ -69.751292180964342, 60.487474002269579 ], [ -69.759487982058246, 60.440243775858505 ], [ -69.75591742528141, 60.388509154744355 ], [ -69.740569524305315, 60.332292111584223 ], [ -69.708500431285103, 60.285929805128148 ], [ -69.633112244815521, 60.220352410048434 ], [ -69.628739686054971, 60.19859947953114 ], [ -69.623136658497472, 60.145480581020422 ], [ -69.629805359923736, 60.12212364653567 ], [ -69.67375067410012, 60.07587120336504 ], [ -69.795654975625396, 60.029717637151293 ], [ -69.962833937080902, 60.017830429666589 ], [ -70.509304905192735, 60.015204697144554 ], [ -70.654829813087829, 60.026234971002822 ], [ -70.619739479717978, 59.984300154950006 ], [ -70.466644991456022, 59.970830916154938 ], [ -70.326843960732404, 59.971380232582163 ], [ -69.805685493586168, 59.944870221805246 ], [ -69.733933781864678, 59.917997662186394 ], [ -69.673421084243799, 59.870767435775321 ], [ -69.630244813065502, 59.821823342111372 ], [ -69.587398131743541, 59.722298191830419 ], [ -69.579422057220526, 59.675122897062096 ], [ -69.602361511220593, 59.622718109906742 ], [ -69.656205507415208, 59.565094816692977 ], [ -69.692383487310906, 59.488410243455178 ], [ -69.710884464579166, 59.39252156792233 ], [ -69.681891543551302, 59.341731771062967 ], [ -69.399993339438353, 59.337776692787088 ], [ -69.34402898183474, 59.303103839901922 ], [ -69.350434011375953, 59.277209063523486 ], [ -69.450453546441395, 59.180034987550982 ], [ -69.459780939375321, 59.152437330248205 ], [ -69.414099785288983, 59.086881907825585 ], [ -69.420329033573481, 59.068227121957733 ], [ -69.448080499475864, 59.049165841933728 ], [ -69.47466741455257, 58.999991035370357 ], [ -69.500089778803613, 58.920636784296335 ], [ -69.531664487039336, 58.869220766709986 ], [ -69.608228210663142, 58.829505189023081 ], [ -69.648405214148895, 58.820782044159074 ], [ -69.677343203534036, 58.831339905889934 ], [ -69.752995061888683, 58.939610173691989 ], [ -69.784163275968282, 58.955727117666186 ], [ -69.813661568109168, 58.945553777434355 ], [ -69.828493111643709, 58.928755681090422 ], [ -69.82860297492914, 58.905343814962976 ], [ -69.841621774253895, 58.881129946851786 ], [ -69.867560495946506, 58.856147035742509 ], [ -69.979137648640332, 58.816354553755787 ], [ -70.159972616476139, 58.789383117180051 ], [ -70.15434761626156, 58.760598936394501 ], [ -70.032981644834948, 58.745152158461508 ], [ -69.878568797147693, 58.696988094124208 ], [ -69.789898139468292, 58.689286677814778 ], [ -69.650547548214988, 58.728255185160691 ], [ -69.381854911012056, 58.850719789441712 ], [ -69.271068773973397, 58.883953433287616 ], [ -69.173499190173288, 58.896642642756035 ], [ -69.063635904732337, 58.898268619380559 ], [ -68.941522862964717, 58.888908267461005 ], [ -68.698175685713011, 58.904541812979261 ], [ -68.637300439250183, 58.892896304722512 ], [ -68.562868063363936, 58.865913881818216 ], [ -68.474889544382819, 58.823484680980926 ], [ -68.414321915119231, 58.782714415753787 ], [ -68.381143202916064, 58.743493222851356 ], [ -68.326442273095012, 58.595386527748417 ], [ -68.252987680449195, 58.556637746973394 ], [ -68.235156869222124, 58.528161183387084 ], [ -68.229367074079391, 58.484600390709744 ], [ -68.23386048245392, 58.399225631593595 ], [ -68.314686901552832, 58.226883095722371 ], [ -68.356544813305831, 58.163217321809327 ], [ -68.468165911313832, 58.076304476697004 ], [ -68.596892722865007, 58.036841584566616 ], [ -68.825792878081231, 57.999839630030095 ], [ -68.945291173655349, 57.968792265564474 ], [ -69.035444985688187, 57.926022488542316 ], [ -69.040795327689167, 57.902511745457957 ], [ -68.780935698635687, 57.975845488489796 ], [ -68.495060443589779, 58.011649933215011 ], [ -68.41359681743532, 58.051750032400946 ], [ -68.351842664688959, 58.09071853974686 ], [ -68.28911072870217, 58.177686316501905 ], [ -68.175523077884776, 58.402587448128088 ], [ -68.111055301988031, 58.47332841762352 ], [ -68.021033325897704, 58.485314502065108 ], [ -67.981163939611193, 58.46124345622502 ], [ -67.88779113331492, 58.329407513695855 ], [ -67.888252559113781, 58.295767375693856 ], [ -67.91140075335619, 58.267246866793386 ], [ -68.063847048234052, 58.138981481041071 ], [ -68.00899230981338, 58.152055212008548 ], [ -67.855853876237234, 58.272619181451432 ], [ -67.823345330075256, 58.310236370386406 ], [ -67.805206901648958, 58.365486616634684 ], [ -67.755933218128689, 58.404597946251641 ], [ -67.73706969201848, 58.38542680294222 ], [ -67.6896856570078, 58.243813028008816 ], [ -67.688191516325801, 58.140222936166538 ], [ -67.680567004316202, 58.107044223963385 ], [ -67.697672717859362, 58.008760528807898 ], [ -67.678270861650489, 57.991138457823183 ], [ -67.632194199736546, 58.07615066809737 ], [ -67.617208847602399, 58.140332799451983 ], [ -67.596334823368622, 58.186112830495233 ], [ -67.569616072349376, 58.213501747555654 ], [ -67.38198056714478, 58.300008098511853 ], [ -67.162847258004263, 58.370364546508256 ], [ -67.019420738861101, 58.432920701238316 ], [ -66.900405841742909, 58.462792528549727 ], [ -66.722152661114976, 58.491005420250957 ], [ -66.607916816913473, 58.548936330663963 ], [ -66.557687322809869, 58.636629205102935 ], [ -66.515027409073141, 58.697295711323449 ], [ -66.479992007346027, 58.730880917682725 ], [ -66.362427305595659, 58.791162902404182 ], [ -66.298530818783206, 58.794524718938675 ], [ -66.23740288676386, 58.772255430979811 ], [ -66.168200003264602, 58.727112606992108 ], [ -66.09090019562835, 58.659052301661433 ], [ -66.044647752457706, 58.605625785951503 ], [ -66.029530564381034, 58.566811087205224 ], [ -66.017050095154943, 58.430800339829318 ], [ -66.002405319205664, 58.431217820314004 ], [ -65.931246869225561, 58.535082570369866 ], [ -65.92289725953205, 58.571985647949475 ], [ -65.92796195699087, 58.610943168966855 ], [ -65.949659955865457, 58.649856744670046 ], [ -66.021257858987326, 58.734759091658788 ], [ -66.049349901074578, 58.787888976498039 ], [ -66.043043748490277, 58.820650208216534 ], [ -65.967029341293681, 58.839228089784598 ], [ -65.854836954201375, 58.846610902566226 ], [ -65.83592948277699, 58.860486635517418 ], [ -65.918425823814601, 58.895631900529992 ], [ -65.92067802116614, 58.914649235239807 ], [ -65.841422647049029, 58.977073554027356 ], [ -65.794840614022078, 58.980457343218944 ], [ -65.703577182806271, 58.970613592843449 ], [ -65.721924351474911, 59.00260578156383 ], [ -65.720990513548671, 59.023765450339766 ], [ -65.695260532098388, 59.032060128390555 ], [ -65.544000760703298, 59.011845283869434 ], [ -65.52633474440438, 59.036245919565857 ], [ -65.396234641785213, 59.038410226289045 ], [ -65.38354543231678, 59.060218088449062 ], [ -65.496001491294138, 59.091331370885968 ], [ -65.606227325577052, 59.110755199751907 ], [ -65.639867463579066, 59.127707104695446 ], [ -65.665597445029334, 59.15276692010454 ], [ -65.700017612357982, 59.213312576711047 ], [ -65.691689975321566, 59.229407548028149 ], [ -65.660741487812842, 59.2296712199132 ], [ -65.60710623186057, 59.213125809125785 ], [ -65.578036406532902, 59.244964189246588 ], [ -65.545319120128582, 59.319737141317688 ], [ -65.512766628652429, 59.350410970612813 ], [ -65.411736351360929, 59.314980061058094 ], [ -65.407264915643481, 59.330229085077292 ], [ -65.489376735182049, 59.447738855184951 ], [ -65.475072535417638, 59.470326746671617 ], [ -65.349696554072423, 59.478797205979106 ], [ -65.273792010161273, 59.464174402686922 ], [ -65.074313242786133, 59.378008627915563 ], [ -65.038245126175866, 59.387896323605247 ], [ -65.068842051171174, 59.411461998332356 ], [ -65.170948988660001, 59.462262781520252 ], [ -65.263190203116224, 59.495441493723405 ], [ -65.345510762897121, 59.511042080256033 ], [ -65.407418724243101, 59.539342862585613 ], [ -65.475193385031616, 59.616774506164404 ], [ -65.486487330774949, 59.648689790584996 ], [ -65.480851344231837, 59.690262057795849 ], [ -65.433412377578435, 59.776504736866997 ], [ -65.406133323803445, 59.7952144543776 ], [ -65.357914327823408, 59.809068214671697 ], [ -65.28877736229542, 59.818055031420755 ], [ -65.212246597657256, 59.809529640470544 ], [ -65.054471933435494, 59.752785253540281 ], [ -65.028170662900934, 59.770714941724265 ], [ -65.113281750132046, 59.801619483918785 ], [ -65.15922657610345, 59.830150979147817 ], [ -65.181386000776882, 59.866625589914207 ], [ -65.171729017986621, 59.908022075868359 ], [ -65.104855236138718, 59.993396834984509 ], [ -65.073390391188425, 60.062226183313271 ], [ -64.931227299827839, 60.25198204992688 ], [ -64.889545169331541, 60.28650109421244 ], [ -64.845028566070866, 60.308308956372457 ], [ -64.817332031811205, 60.331050656458729 ], [ -64.705864742402809, 60.336137326574658 ], [ -64.614271721330695, 60.30597985472113 ] ] ], [ [ [ -61.801134406986776, 49.093904231701885 ], [ -62.219504784274463, 49.079127619810066 ], [ -62.552610265731431, 49.140881772556412 ], [ -62.799593917731229, 49.1706986682251 ], [ -63.041523858600755, 49.224949158575839 ], [ -63.565857374696236, 49.399335151556272 ], [ -63.625853714875532, 49.45992475347694 ], [ -63.676215044921676, 49.534346143034639 ], [ -63.776619101486162, 49.601988967880629 ], [ -63.884911341945298, 49.657689653599192 ], [ -64.440039536949882, 49.827758019461811 ], [ -64.485204333594666, 49.886985316643006 ], [ -64.372935042202556, 49.925942837660386 ], [ -64.243768777509629, 49.94438888328591 ], [ -64.13143356814625, 49.941653287478431 ], [ -63.760183553984191, 49.875251917757936 ], [ -63.292001163077572, 49.816859581546055 ], [ -63.088830989311617, 49.772694540798796 ], [ -62.858535570370293, 49.705491169094557 ], [ -62.633436684830329, 49.623950638640281 ], [ -62.132998433318249, 49.407058540522769 ], [ -62.04305336152774, 49.389799018379989 ], [ -61.817152474004061, 49.283550235030049 ], [ -61.73580969746358, 49.203767517142836 ], [ -61.696127078762302, 49.139014096703932 ], [ -61.745532598225111, 49.105736507543867 ], [ -61.801134406986776, 49.093904231701885 ] ] ], [ [ [ -61.914095837077156, 47.284499865803582 ], [ -61.878697886508078, 47.265537462736461 ], [ -61.815471565736814, 47.267558947188576 ], [ -61.772558966443583, 47.259802599236451 ], [ -61.833741830105652, 47.222591904457602 ], [ -61.950812147071517, 47.21897740236659 ], [ -62.008281631685691, 47.234270371699978 ], [ -61.924686657793671, 47.42516881648217 ], [ -61.827303841578811, 47.469092158001473 ], [ -61.627858033189298, 47.59384191861966 ], [ -61.548020383659363, 47.631766724753874 ], [ -61.474071406229058, 47.646752076888021 ], [ -61.395519157138779, 47.637666383182051 ], [ -61.475543574253962, 47.563970091308278 ], [ -61.582253783402763, 47.560015013032398 ], [ -61.684086062677977, 47.498755245070527 ], [ -61.750904912883172, 47.430804803025296 ], [ -61.831258919854676, 47.392045035921711 ], [ -61.886608043059837, 47.344606069268309 ], [ -61.914095837077156, 47.284499865803582 ] ] ], [ [ [ -71.025739251065019, 46.872951998541765 ], [ -71.116640133438864, 46.864844088076239 ], [ -71.094986079878453, 46.899571872604099 ], [ -70.970851553658719, 46.961424902307357 ], [ -70.879643054085648, 46.996097755192523 ], [ -70.825799057891032, 46.995372657508625 ], [ -70.913469959672909, 46.919512058911636 ], [ -71.025739251065019, 46.872951998541765 ] ] ], [ [ [ -73.566514494472273, 45.469107950848752 ], [ -73.64356161655202, 45.449112832898493 ], [ -73.775331641109901, 45.467613810166739 ], [ -73.920241314606514, 45.44192777403066 ], [ -73.960539167706258, 45.441411416589091 ], [ -73.85290610695975, 45.515722942861345 ], [ -73.687430026428586, 45.561404096947683 ], [ -73.522481289667539, 45.701194141342768 ], [ -73.476075037897289, 45.704753711791028 ], [ -73.538839932869706, 45.546418744813536 ], [ -73.551649991952118, 45.489861125468536 ], [ -73.566514494472273, 45.469107950848752 ] ] ], [ [ [ -73.695340182980345, 45.585486129116333 ], [ -73.815926125080324, 45.564897749424716 ], [ -73.85770713253352, 45.573598921631628 ], [ -73.724640721207436, 45.671838671472926 ], [ -73.572348234929194, 45.694470508273781 ], [ -73.695340182980345, 45.585486129116333 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CA-SK", "NAME_1": "Saskatchewan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.999432144043411, 48.993082694652713 ], [ -109.999432144043411, 49.337965520308956 ], [ -109.999454116700505, 49.681958453353104 ], [ -109.999454116700505, 50.02594040006872 ], [ -109.999481582521867, 50.369900374127269 ], [ -109.999509048343228, 50.71386034818579 ], [ -109.999509048343228, 51.057842294901405 ], [ -109.999531021000308, 51.401824241617049 ], [ -109.99955848682167, 51.74578421567557 ], [ -109.999585952643031, 52.089744189734091 ], [ -109.999613418464392, 52.433726136449707 ], [ -109.999613418464392, 52.777708083165351 ], [ -109.999635391121487, 53.121668057223872 ], [ -109.999662856942848, 53.465628031282392 ], [ -109.999662856942848, 53.809609977998036 ], [ -109.999690322764209, 54.153591924713652 ], [ -109.99971229542129, 54.497551898772173 ], [ -109.999739761242651, 54.841511872830694 ], [ -109.999767227064012, 55.185471846889243 ], [ -109.999767227064012, 55.529475766261953 ], [ -109.999789199721107, 55.873435740320474 ], [ -109.999816665542454, 56.217395714378995 ], [ -109.999816665542454, 56.561377661094639 ], [ -109.999844131363815, 56.905359607810254 ], [ -109.999871597185177, 57.249319581868775 ], [ -109.999893569842271, 57.593279555927325 ], [ -109.999921035663633, 57.937239529985845 ], [ -109.999921035663633, 58.281254435687089 ], [ -109.999948501484994, 58.625203423417076 ], [ -109.999970474142074, 58.969163397475626 ], [ -109.999970474142074, 59.313145344191241 ], [ -109.999997939963436, 59.65713827723539 ], [ -110.000025405784797, 60.001087264965378 ], [ -109.500130977535648, 60.001087264965378 ], [ -109.000242042450779, 60.001087264965378 ], [ -108.500320148380268, 60.001087264965378 ], [ -108.0004312132954, 60.001087264965378 ], [ -107.500536785046251, 60.001087264965378 ], [ -107.000620384140021, 60.001087264965378 ], [ -106.500731449055138, 60.001087264965378 ], [ -106.000837020805989, 60.001087264965378 ], [ -105.500942592556854, 60.001087264965378 ], [ -105.001053657471971, 60.001087264965378 ], [ -104.501137256565741, 60.001087264965378 ], [ -104.001242828316592, 60.001087264965378 ], [ -103.501353893231723, 60.001087264965378 ], [ -103.001431999161213, 60.001087264965378 ], [ -102.50154306407633, 60.001087264965378 ], [ -102.001648635827195, 60.001087264965378 ], [ -102.001621170005834, 59.739612645615921 ], [ -102.001599197348739, 59.478149012594997 ], [ -102.001544265706016, 59.216696365902635 ], [ -102.001522293048936, 58.955210760224617 ], [ -102.001494827227575, 58.693725154546598 ], [ -102.001445388749119, 58.432250535197142 ], [ -102.001417922927757, 58.170764929519123 ], [ -102.001390457106396, 57.909279323841133 ], [ -102.001341018627954, 57.647848649805837 ], [ -102.001313552806593, 57.386363044127819 ], [ -102.001286086985232, 57.124888424778362 ], [ -102.00123664850679, 56.863402819100344 ], [ -102.001209182685429, 56.601917213422354 ], [ -102.001181716864068, 56.340464566729963 ], [ -102.001132278385612, 56.07900093370904 ], [ -102.00110481256425, 55.817526314359583 ], [ -101.961290357920461, 55.391037040277809 ], [ -101.921497875933738, 54.964602697838757 ], [ -101.881710887111296, 54.538113423756982 ], [ -101.841918405124588, 54.111657108660836 ], [ -101.802125923137879, 53.68520079356469 ], [ -101.762333441151156, 53.258711519482915 ], [ -101.722546452328729, 52.832255204386769 ], [ -101.682753970342006, 52.405798889290622 ], [ -101.642961488355297, 51.979331587865943 ], [ -101.603174499532855, 51.552875272769796 ], [ -101.563382017546147, 51.12641895767365 ], [ -101.523589535559424, 50.69995165624897 ], [ -101.483802546736996, 50.273473368495729 ], [ -101.444010064750273, 49.847039026056677 ], [ -101.404217582763565, 49.420549751974903 ], [ -101.367270559869766, 48.993137626295436 ], [ -101.79364997066611, 48.993137626295436 ], [ -102.220034874626705, 48.993137626295436 ], [ -102.646414285423049, 48.993137626295436 ], [ -103.072799189383645, 48.993137626295436 ], [ -103.499178600179988, 48.993137626295436 ], [ -103.925563504140598, 48.993137626295436 ], [ -104.03392715573527, 48.993137626295436 ], [ -104.351942914936927, 48.993137626295436 ], [ -104.778327818897537, 48.993137626295436 ], [ -105.204707229693867, 48.993137626295436 ], [ -105.631092133654477, 48.993137626295436 ], [ -106.057477037615072, 48.993137626295436 ], [ -106.483856448411416, 48.993137626295436 ], [ -106.910241352372012, 48.993137626295436 ], [ -107.336620763168355, 48.993137626295436 ], [ -107.763005667128951, 48.993137626295436 ], [ -108.189385077925294, 48.993137626295436 ], [ -108.61576998188589, 48.993137626295436 ], [ -109.042149392682234, 48.993104667309808 ], [ -109.468534296642829, 48.993082694652713 ], [ -109.894913707439173, 48.993082694652713 ], [ -109.999432144043411, 48.993082694652713 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CA-YT", "NAME_1": "Yukon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.819156792317827, 60.001087264965378 ], [ -124.77090792725707, 60.001087264965378 ], [ -125.722681034853395, 60.001087264965378 ], [ -126.674432169792624, 60.001087264965378 ], [ -127.626183304731853, 60.001087264965378 ], [ -128.577934439671083, 60.001087264965378 ], [ -129.52968557461034, 60.001087264965378 ], [ -130.48143670954957, 60.001087264965378 ], [ -131.433187844488828, 60.001087264965378 ], [ -132.384938979428057, 60.001087264965378 ], [ -133.336690114367286, 60.001087264965378 ], [ -134.28846322196361, 60.001087264965378 ], [ -135.24021435690284, 60.001087264965378 ], [ -136.191965491842097, 60.001087264965378 ], [ -137.143738599438393, 60.001087264965378 ], [ -138.095495227541903, 60.001087264965378 ], [ -139.056518823772365, 60.00158164974988 ], [ -139.185168731023737, 60.083572619674442 ], [ -139.136979947447173, 60.172704703152704 ], [ -139.079257777276496, 60.279447871287118 ], [ -139.079257777276496, 60.343706906941549 ], [ -139.234777497564579, 60.339729856008574 ], [ -139.467992533316504, 60.333709347966419 ], [ -139.676301562258971, 60.328337033308344 ], [ -139.830659478303488, 60.252882928867507 ], [ -139.973283995462936, 60.183152701598146 ], [ -140.196916206142276, 60.237491082577236 ], [ -140.452818010337751, 60.299728633779523 ], [ -140.525421162521383, 60.218341911924881 ], [ -140.762745085148794, 60.259112177152019 ], [ -141.002137184124649, 60.300244991221092 ], [ -141.002137184124649, 60.592448371508397 ], [ -141.002137184124649, 60.884651751795701 ], [ -141.002137184124649, 61.176855132083006 ], [ -141.002137184124649, 61.469069498698843 ], [ -141.002137184124649, 61.761272878986148 ], [ -141.002137184124649, 62.053476259273452 ], [ -141.002137184124649, 62.345679639560728 ], [ -141.002137184124649, 62.637883019848033 ], [ -141.002137184124649, 62.930086400135337 ], [ -141.002137184124649, 63.222289780422642 ], [ -141.002137184124649, 63.514471188052852 ], [ -141.002137184124649, 63.806696540997223 ], [ -141.002137184124649, 64.098877948627432 ], [ -141.002137184124649, 64.391103301571832 ], [ -141.002137184124649, 64.683317668187669 ], [ -141.002137184124649, 64.975521048474974 ], [ -141.002137184124649, 65.267724428762278 ], [ -141.002137184124649, 65.559927809049583 ], [ -141.002137184124649, 65.852131189336887 ], [ -141.002137184124649, 66.144334569624164 ], [ -141.002137184124649, 66.436537949911468 ], [ -141.002137184124649, 66.728741330198773 ], [ -141.002137184124649, 67.020944710486077 ], [ -141.002137184124649, 67.313148090773382 ], [ -141.002137184124649, 67.605351471060658 ], [ -141.002137184124649, 67.897565837676524 ], [ -141.002137184124649, 68.189736258978172 ], [ -141.002137184124649, 68.481972598251105 ], [ -141.002137184124649, 68.774175978538409 ], [ -141.002137184124649, 69.066379358825714 ], [ -141.002137184124649, 69.358582739113018 ], [ -141.002137184124649, 69.650786119400323 ], [ -140.86002627782463, 69.635229478181884 ], [ -140.405118118381409, 69.602468246463388 ], [ -139.976593626936847, 69.621749253058255 ], [ -139.181524016529238, 69.515555401351037 ], [ -138.689874827852407, 69.316801731659808 ], [ -138.291035396133992, 69.219034393945918 ], [ -138.128355336217311, 69.151951871855658 ], [ -137.869407572432976, 69.09283443795988 ], [ -137.259962969106397, 68.964107626408719 ], [ -137.070415842735116, 68.950880086841636 ], [ -136.717337215984969, 68.889180865738012 ], [ -136.498687305300393, 68.897288776203538 ], [ -136.443755662579917, 68.895124469480351 ], [ -136.445052049348135, 68.619916939450775 ], [ -136.445183885290646, 68.328801205689331 ], [ -136.445310228068934, 68.037707444584981 ], [ -136.445436570847164, 67.746591710823566 ], [ -136.434406296988897, 67.702536533361723 ], [ -136.400711227344175, 67.665897127667193 ], [ -136.264755411610992, 67.615975250762801 ], [ -136.233307046153527, 67.600264800944757 ], [ -136.207934120380912, 67.576907866460004 ], [ -136.169251257577173, 67.514230862115937 ], [ -136.177908484469924, 67.450048730761353 ], [ -136.177622839927778, 67.422626854715276 ], [ -136.158528600918146, 67.393710837987214 ], [ -136.140906529933403, 67.375264792361691 ], [ -136.128535923992757, 67.354083150928659 ], [ -136.105178989508005, 67.304216205667018 ], [ -136.10776077671585, 67.287571917922719 ], [ -136.15015701856754, 67.226334122617942 ], [ -136.217986610998764, 67.181224257615867 ], [ -136.220546425549543, 67.163085829189583 ], [ -136.223820351455686, 67.13489491014542 ], [ -136.2232270897143, 67.088279918132827 ], [ -136.194552772214223, 67.03621570716237 ], [ -136.169306189219895, 67.015242805971695 ], [ -136.126053013741796, 67.004695930569369 ], [ -135.839167016469844, 67.004673957912274 ], [ -135.55231397818352, 67.004640998926646 ], [ -135.265460939897167, 67.004597053612457 ], [ -134.978602408446591, 67.004564094626829 ], [ -134.691743876995986, 67.004542121969735 ], [ -134.404868866052567, 67.004487190327012 ], [ -134.117982868780615, 67.004465217669917 ], [ -134.05558052265016, 67.004487190327012 ], [ -134.053388750105597, 66.97270374184896 ], [ -134.031322709224781, 66.944029424348855 ], [ -133.923859936570722, 66.902973514579571 ], [ -133.847510446353539, 66.861708864567959 ], [ -133.794155341779145, 66.81863147034656 ], [ -133.782735053257539, 66.785485717129035 ], [ -133.797539130970733, 66.752460813525488 ], [ -133.805855781678588, 66.73342150615855 ], [ -133.799038764816999, 66.711119259214058 ], [ -133.77074347565167, 66.684356562880623 ], [ -133.768601141585577, 66.669371210746476 ], [ -133.7639209656258, 66.650969110435113 ], [ -133.725606144828248, 66.631281609684095 ], [ -133.651761537519121, 66.586061881396603 ], [ -133.635194154074611, 66.565649282961687 ], [ -133.64927862726816, 66.536304799420407 ], [ -133.658375307302663, 66.509278431201921 ], [ -133.65201971623992, 66.472485216907756 ], [ -133.654030214363473, 66.452841661470899 ], [ -133.674316470020131, 66.445865342845423 ], [ -133.705968082555671, 66.444316270520687 ], [ -133.739377507658276, 66.439844834803239 ], [ -133.759553900029516, 66.415993515534012 ], [ -133.790095893382102, 66.348098005131504 ], [ -133.800120918178578, 66.325587017944656 ], [ -133.79017279768189, 66.304449321825814 ], [ -133.759636297493586, 66.303526470228121 ], [ -133.65114080995636, 66.300263530650511 ], [ -133.612095398310657, 66.295231792177333 ], [ -133.583157408925501, 66.285102397259664 ], [ -133.571248228783702, 66.248748636107251 ], [ -133.566958067487235, 66.208417824021893 ], [ -133.568715880054299, 66.176634375543813 ], [ -133.593775695463393, 66.149860692881845 ], [ -133.659792543684858, 66.111551365248602 ], [ -133.67718390177015, 66.0956321751882 ], [ -133.675739199566607, 66.073956148970694 ], [ -133.645351014813627, 66.049357759360475 ], [ -133.623801331374409, 66.01033432037184 ], [ -133.621631531486941, 65.974628752603536 ], [ -133.588947204068262, 65.962587736519197 ], [ -133.49972722996165, 65.955457609294086 ], [ -133.41213323247959, 65.956028898378378 ], [ -133.229095505770687, 66.006148529196537 ], [ -133.041460000566076, 66.02754989720043 ], [ -132.937979772009271, 66.028659516383385 ], [ -132.917902256594914, 66.017552338225329 ], [ -132.916457554391371, 66.001655120822022 ], [ -132.939556310155325, 65.976441496813322 ], [ -132.967796667677931, 65.933704678776792 ], [ -132.948026769462842, 65.916752773833252 ], [ -132.902504917140362, 65.913544765898365 ], [ -132.821321442363796, 65.927991787933848 ], [ -132.766181059400964, 65.971222990754853 ], [ -132.71364992946738, 65.997754974188865 ], [ -132.614328026264474, 66.029230805467677 ], [ -132.577249167428164, 66.02377060018128 ], [ -132.483403949004497, 65.989020842996297 ], [ -132.370909437877231, 65.993569183013562 ], [ -132.342745984654442, 65.978968352378445 ], [ -132.340751966023703, 65.955248869051758 ], [ -132.538983785109082, 65.886056971881032 ], [ -132.554848043526761, 65.85700911921046 ], [ -132.533172017309255, 65.833893883953664 ], [ -132.489039935547623, 65.819600670517815 ], [ -132.377753920560224, 65.766657553263826 ], [ -132.295252086358317, 65.716142414618076 ], [ -132.19618836187621, 65.627669510852456 ], [ -132.194688728029945, 65.597654861270001 ], [ -132.267758799176733, 65.53770246640488 ], [ -132.345871595125232, 65.443417794839434 ], [ -132.541697408259466, 65.340816472566132 ], [ -132.566422140647944, 65.300254947581351 ], [ -132.596887229700741, 65.28024884330253 ], [ -132.762484159845883, 65.225009583382842 ], [ -132.773234282326285, 65.203410461465154 ], [ -132.768092680567634, 65.184755675597273 ], [ -132.75181643482955, 65.173176085311781 ], [ -132.708096340388352, 65.167155577269625 ], [ -132.609911522189748, 65.181448790705502 ], [ -132.57944643313698, 65.184579894340573 ], [ -132.540148335934759, 65.170055968005272 ], [ -132.538313619067878, 65.109147762556802 ], [ -132.516066303766081, 65.094162410422655 ], [ -132.381269545694323, 65.075068171413022 ], [ -132.352589735029966, 65.057248346514513 ], [ -132.35382569699118, 65.038505670018282 ], [ -132.380879531031013, 65.021685601017253 ], [ -132.480953997739164, 64.970225638116716 ], [ -132.496999530577824, 64.957481497005574 ], [ -132.497356586255506, 64.912679249202739 ], [ -132.50479982384411, 64.883741259817612 ], [ -132.583813498733264, 64.84182841642189 ], [ -132.601127952518766, 64.825909226361489 ], [ -132.599677757150914, 64.808550827261826 ], [ -132.588103660029731, 64.794081832569248 ], [ -132.553688985865335, 64.78022807227515 ], [ -132.401731582607681, 64.777437544824949 ], [ -132.320679943773627, 64.762715864575853 ], [ -132.106270755907076, 64.702148235312251 ], [ -132.05216858099169, 64.684196574471201 ], [ -131.893207393287156, 64.577200720780269 ], [ -131.752313222873397, 64.544944860174809 ], [ -131.729005726867115, 64.533815709359629 ], [ -131.71598692754236, 64.515029087549237 ], [ -131.730274647813957, 64.488881625614283 ], [ -131.790375358114431, 64.42596292204226 ], [ -131.802778923040705, 64.406561065833387 ], [ -131.796807853476992, 64.387906279965506 ], [ -131.763733511395003, 64.380512480855316 ], [ -131.58591429074454, 64.380259795298798 ], [ -131.512794781119339, 64.393432403223187 ], [ -131.449617898826489, 64.41596536306713 ], [ -131.399262061944654, 64.451385286293288 ], [ -131.358771948095381, 64.458471468204237 ], [ -131.26508053827132, 64.447045686518379 ], [ -131.106718105472481, 64.400903106633166 ], [ -131.02176632000527, 64.324416287309162 ], [ -131.026133385601554, 64.298093044117536 ], [ -131.012076378229381, 64.272824488466114 ], [ -130.981688193476401, 64.259465112956491 ], [ -130.930837971810064, 64.219233177828016 ], [ -130.913320270946485, 64.192514426808771 ], [ -130.913012653747273, 64.167608419999311 ], [ -130.941280477091226, 64.140505147481036 ], [ -130.929700886805733, 64.125464863704167 ], [ -130.871978716635056, 64.080607684258609 ], [ -130.846660722505192, 64.048802263123463 ], [ -130.791855422562975, 64.030510026097545 ], [ -130.757726392940754, 63.993046645762178 ], [ -130.660574289625316, 63.950518567967976 ], [ -130.512879581842782, 63.920130383215024 ], [ -130.363613829078417, 63.850213388360402 ], [ -130.282556697080082, 63.822560799414902 ], [ -130.139597096900047, 63.807839119165834 ], [ -130.117915577518289, 63.793370124473256 ], [ -130.120810475089655, 63.773133307295012 ], [ -130.145123220157728, 63.761839361551694 ], [ -130.259589777258668, 63.737405766869614 ], [ -130.298448421319108, 63.721025151010394 ], [ -130.302606746673064, 63.703710697224892 ], [ -130.284990168852602, 63.685934817640543 ], [ -130.243571710241383, 63.678332278288025 ], [ -130.141689992487699, 63.69761328488292 ], [ -130.110681080171986, 63.695031497675046 ], [ -130.097662280847231, 63.679112307614645 ], [ -130.081743090786858, 63.650196290886612 ], [ -130.063038866440536, 63.635628419237122 ], [ -129.975988692221392, 63.615655273943958 ], [ -129.945523603168624, 63.586354735716867 ], [ -129.887801432997946, 63.554823972795305 ], [ -129.855067667100798, 63.521700192234874 ], [ -129.844938272183157, 63.485785884224214 ], [ -129.905319133861497, 63.405772453437578 ], [ -129.948341596440173, 63.375691885883839 ], [ -130.101666797601553, 63.318793690353971 ], [ -130.139778371321029, 63.293349353445848 ], [ -130.133604054679239, 63.276452380145031 ], [ -130.059731981548737, 63.261203356125833 ], [ -129.97867484955043, 63.215752914938889 ], [ -129.90568168270346, 63.187408187295148 ], [ -129.87033866377709, 63.15689915292819 ], [ -129.827497475619396, 63.091761210990228 ], [ -129.734426793358097, 63.070129130086912 ], [ -129.629782013975586, 63.068272440562964 ], [ -129.611775421491814, 63.058681375743959 ], [ -129.617482819170476, 63.037290994068627 ], [ -129.713937290623363, 62.930602757576906 ], [ -129.71440420958649, 62.894787326523158 ], [ -129.72892264275751, 62.864871553897586 ], [ -129.718666905061582, 62.831670869037339 ], [ -129.658308016040337, 62.776475554431812 ], [ -129.642443757622658, 62.75642550483883 ], [ -129.636291413637963, 62.728311490094484 ], [ -129.620015167899879, 62.71224947776301 ], [ -129.544050199181754, 62.68803560965182 ], [ -129.525345974835432, 62.673533655973614 ], [ -129.494727077183029, 62.619074425380546 ], [ -129.490255641465581, 62.598716758588324 ], [ -129.449122827396479, 62.58005098639191 ], [ -129.211125992145753, 62.513440876429058 ], [ -129.189449965928247, 62.490292682186663 ], [ -129.199551895024541, 62.470033892351353 ], [ -129.287140399342348, 62.441150834608919 ], [ -129.296313983676669, 62.42528657619124 ], [ -129.293627826347631, 62.411224075654815 ], [ -129.249133195744037, 62.388548293539799 ], [ -129.239289445368541, 62.373244337877878 ], [ -129.291018573318411, 62.322289746090348 ], [ -129.293369647626832, 62.294230662988753 ], [ -129.243942155506971, 62.236409615861163 ], [ -129.232829484184606, 62.219820259759587 ], [ -129.23949818561087, 62.201967475875421 ], [ -129.261613664970128, 62.18375214314932 ], [ -129.268979998258942, 62.166305853421306 ], [ -129.25471425064444, 62.152770696654983 ], [ -129.208879287958496, 62.135741887411626 ], [ -129.136221204132113, 62.125513615537074 ], [ -129.013773079343906, 62.131654973193207 ], [ -128.907370487394331, 62.118998722710415 ], [ -128.879750857434487, 62.110989689201773 ], [ -128.840914186031114, 62.072955019782114 ], [ -128.813860351991281, 62.063814394433422 ], [ -128.775518065372381, 62.068923037206446 ], [ -128.678519770656578, 62.11228607596999 ], [ -128.61583727314823, 62.122096867359858 ], [ -128.560828726127937, 62.116911320287045 ], [ -128.400065780542207, 62.033733826879711 ], [ -128.36621690229785, 61.990898131886269 ], [ -128.258369608144733, 61.927748715414822 ], [ -128.232090310267267, 61.883583674667562 ], [ -128.206327369831342, 61.86526946498455 ], [ -128.093827365539823, 61.841264337115689 ], [ -128.046569673307374, 61.813381035270794 ], [ -128.019416962310657, 61.779642020311854 ], [ -127.993577117574944, 61.711219166139244 ], [ -127.80723250597427, 61.618747238783584 ], [ -127.713024738708668, 61.588183272773932 ], [ -127.656467119363668, 61.552159101477827 ], [ -127.608665603868303, 61.532856122225866 ], [ -127.468051584832438, 61.510509929967156 ], [ -127.299356510037853, 61.512157879248775 ], [ -127.229280213419344, 61.494436931307149 ], [ -127.166597715910996, 61.464521158681578 ], [ -127.116060604608165, 61.404085365360515 ], [ -127.072521784587906, 61.369643225374773 ], [ -127.021259575601164, 61.236752595305404 ], [ -127.014799614417228, 61.197784087959491 ], [ -127.02676372620175, 61.126471829379767 ], [ -127.082134822064006, 61.093688625004205 ], [ -127.096471980814044, 61.081438868677537 ], [ -127.092906917201475, 61.070507471776153 ], [ -127.054592096403951, 61.05123745150982 ], [ -126.963746145672829, 61.06345424885086 ], [ -126.94421245352143, 61.052445947649659 ], [ -126.908501392588846, 60.950108297261409 ], [ -126.91805949842221, 60.884245257639577 ], [ -126.911599537238288, 60.859591936386607 ], [ -126.888138232632372, 60.833136857252441 ], [ -126.889665332299984, 60.795618545274351 ], [ -126.859277147547033, 60.769416151696674 ], [ -126.832410081092434, 60.76409876868135 ], [ -126.767398481932759, 60.774920302297261 ], [ -126.665159708501406, 60.762340956114286 ], [ -126.520074253748078, 60.800320693891223 ], [ -126.350500272669976, 60.780523329854759 ], [ -126.296886989374798, 60.784511367116266 ], [ -126.25505105027888, 60.793805801064565 ], [ -126.234665917665311, 60.808944961798346 ], [ -126.234589013365508, 60.843551896712228 ], [ -126.222756737523511, 60.855845598353085 ], [ -126.16151894221872, 60.865876116313842 ], [ -126.114596333006887, 60.863360247077253 ], [ -126.098578265989602, 60.828896134434416 ], [ -126.064213030303677, 60.816009171052201 ], [ -126.003183975241228, 60.808791153198712 ], [ -125.957085340670204, 60.865096086987222 ], [ -125.931404797698377, 60.882641253672119 ], [ -125.89915992342145, 60.890232806696105 ], [ -125.863756479688107, 60.889980121139587 ], [ -125.706948612378241, 60.84047572471988 ], [ -125.378699088137765, 60.791663466998472 ], [ -125.322498524470447, 60.792388564682398 ], [ -125.229740952572655, 60.826215470269659 ], [ -125.151633649788408, 60.844353898695942 ], [ -124.880485568155876, 60.860317034070533 ], [ -124.859556612279363, 60.924136616583183 ], [ -124.837281831156218, 60.948196676094739 ], [ -124.80650912490421, 60.961061666819887 ], [ -124.61574800922881, 60.960391500778684 ], [ -124.582596762847004, 60.952821920411822 ], [ -124.506477985529244, 60.822282364650874 ], [ -124.505027790161421, 60.788488418049241 ], [ -124.611227135032919, 60.701202037766393 ], [ -124.611304039332722, 60.6822396346993 ], [ -124.599444297669379, 60.662134653463596 ], [ -124.469217852271939, 60.56715784319988 ], [ -124.402838455208524, 60.49408777205312 ], [ -124.249337472790415, 60.473466433375847 ], [ -124.225486153521189, 60.452768190398785 ], [ -124.204529731823328, 60.352902463932935 ], [ -124.184688422472689, 60.320965206855249 ], [ -124.103274234796672, 60.225285271564729 ], [ -123.997360534467319, 60.12656212326749 ], [ -123.992295837008498, 60.09917320620707 ], [ -124.013120422763819, 60.060105821904273 ], [ -124.01082428009812, 60.046131211996169 ], [ -123.993718566554946, 60.040495225453043 ], [ -123.879488215517725, 60.039715196126423 ], [ -123.842074273660813, 60.020214462960666 ], [ -123.819156792317827, 60.001087264965378 ] ] ], [ [ [ -139.043134729023535, 69.576892073612726 ], [ -139.125740933346577, 69.539318829991913 ], [ -139.256997347045029, 69.578540022894344 ], [ -139.291390048552302, 69.597875961131962 ], [ -139.139613919715629, 69.64959959591755 ], [ -139.072668726732189, 69.647633043108158 ], [ -138.931541096836895, 69.616937241155966 ], [ -138.878856158303677, 69.589702132695152 ], [ -139.043134729023535, 69.576892073612726 ] ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/china.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/china.geojson new file mode 100644 index 000000000000..2e946a60b92c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/china.geojson @@ -0,0 +1,41 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "CN-65", "NAME_1": "Xinjiang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.883131958000035, 35.431068420000045 ], [ 77.800346314000137, 35.495405579000121 ], [ 77.383730916000047, 35.47199615500007 ], [ 77.281101522000085, 35.528013408000092 ], [ 76.896422160000043, 35.589611715000032 ], [ 76.570757284000138, 35.751255595000131 ], [ 76.537167603000114, 35.902512513000048 ], [ 76.403118937000102, 35.830992330000086 ], [ 76.16602746600006, 35.806239319000085 ], [ 76.089959757000031, 35.978115133000088 ], [ 75.899997193000104, 36.063484599000063 ], [ 76.014408814000092, 36.230399475000027 ], [ 75.968830200000127, 36.301971334000072 ], [ 75.976581665000083, 36.462633362000119 ], [ 75.849767700000029, 36.64474111 ], [ 75.649779907000038, 36.75403676400002 ], [ 75.431912069000134, 36.722927551000041 ], [ 75.37796187400005, 36.894286601000104 ], [ 75.313469686000133, 36.92875478100008 ], [ 75.100149373000079, 36.994125468000036 ], [ 74.924966268000105, 36.970871074000016 ], [ 74.872359660000086, 36.907102356000095 ], [ 74.792571248000115, 37.015157776000038 ], [ 74.662449992000063, 37.054483541000039 ], [ 74.542353963000039, 37.021669006000124 ], [ 74.382570434000115, 37.126572164000024 ], [ 74.368307740000034, 37.167060649000021 ], [ 74.721464477000097, 37.297776185000131 ], [ 74.794018189000099, 37.213931173000063 ], [ 74.892306763000079, 37.231113587000024 ], [ 75.164124797000056, 37.400638123000093 ], [ 74.891893352000068, 37.599204814000032 ], [ 74.965170533000105, 37.767463278000051 ], [ 74.886105591000046, 37.830560202000086 ], [ 74.880421183000067, 38.021659648000124 ], [ 74.79071089700011, 38.081449280000058 ], [ 74.771073853000075, 38.291539816000054 ], [ 74.838253214000133, 38.379415588000128 ], [ 74.832878866000044, 38.463648173000095 ], [ 74.313427368000134, 38.66921702100008 ], [ 74.123361450000061, 38.66947540300005 ], [ 74.037268514000061, 38.598471986000035 ], [ 74.045536743000127, 38.530414124000046 ], [ 73.932882121000034, 38.529664815000061 ], [ 73.797386515000085, 38.60283864400013 ], [ 73.73640832600006, 38.721668600000029 ], [ 73.680804484000134, 38.87297719300004 ], [ 73.829115845000047, 38.960155335000124 ], [ 73.607837362000112, 39.207323710000068 ], [ 73.63264204900014, 39.448342590000053 ], [ 73.838314250000053, 39.475679424000091 ], [ 73.921616659000051, 39.582132874000095 ], [ 73.893504680000035, 39.710393779000057 ], [ 73.818573853000089, 39.786048076000029 ], [ 73.957893514000034, 40.021434225000078 ], [ 74.167596476000085, 40.106390279000053 ], [ 74.369858033000071, 40.105821839 ], [ 74.705754842000033, 40.331286113000075 ], [ 74.862127726000097, 40.326170146000081 ], [ 74.787403605000122, 40.420738017000062 ], [ 74.835359335000135, 40.511636861000071 ], [ 75.002377563000039, 40.44729970300007 ], [ 75.193890422000038, 40.441253561000039 ], [ 75.523792766000099, 40.633179830000088 ], [ 75.587664836000044, 40.611940817000018 ], [ 75.666936483000086, 40.450245260000074 ], [ 75.638307740000073, 40.386114808000073 ], [ 75.681819296000128, 40.291701966000105 ], [ 75.901857544000109, 40.298884990000047 ], [ 76.051615845000072, 40.390197245000067 ], [ 76.151351359000103, 40.368131409000071 ], [ 76.244162231000132, 40.441201884000023 ], [ 76.330151815000079, 40.348080953000121 ], [ 76.476499471000125, 40.436137594000044 ], [ 76.620780071000127, 40.611320699000046 ], [ 76.647858521000103, 40.764851380000053 ], [ 76.76247684700013, 40.847016907000082 ], [ 76.766817668000044, 40.944685364000023 ], [ 76.860972128000128, 41.01320831300005 ], [ 77.007733195000071, 41.044214173000071 ], [ 77.503516887000103, 40.98106557200002 ], [ 77.83104211400007, 41.062972718000069 ], [ 78.07495487500006, 41.039511617000088 ], [ 78.349460083000054, 41.270401917000029 ], [ 78.359898723000072, 41.377527161000032 ], [ 78.619211060000055, 41.478089499000063 ], [ 78.658278442000039, 41.532453105000045 ], [ 79.282323039000119, 41.783497213000132 ], [ 79.390843547000088, 41.772696838000101 ], [ 79.7475142830001, 41.87974456799999 ], [ 79.842908977000036, 42.001830139000063 ], [ 80.231205689000035, 42.03368866000001 ], [ 80.256527141000106, 42.08435740099999 ], [ 80.210328410000045, 42.18951894100006 ], [ 80.268412720000129, 42.237965597000127 ], [ 80.143769165000037, 42.644762472000039 ], [ 80.24825891100005, 42.816199036000043 ], [ 80.548602336000044, 42.878469136000049 ], [ 80.542917928000122, 42.916658021000032 ], [ 80.373832642000082, 42.975181580000125 ], [ 80.368148234000046, 43.028459982000086 ], [ 80.618468872000051, 43.134267477000051 ], [ 80.731536906000088, 43.101091207000039 ], [ 80.793445272000099, 43.14946034800009 ], [ 80.74848677600005, 43.275163269000032 ], [ 80.642860148000068, 43.326219585 ], [ 80.712726685000064, 43.45887298600006 ], [ 80.338899374000107, 44.121494039000098 ], [ 80.373212525000099, 44.230996400000052 ], [ 80.330424439000069, 44.453050029000067 ], [ 80.383754517000057, 44.602808330000059 ], [ 80.35584924300008, 44.652882793000074 ], [ 80.492275024000037, 44.727968648000072 ], [ 80.24474491400008, 44.815973613000082 ], [ 79.991737101000069, 44.793649394000013 ], [ 79.868643840000118, 44.849356588000049 ], [ 79.8582052000001, 44.90372019500002 ], [ 80.103358195000055, 45.032187805000021 ], [ 80.390059041000086, 45.045778707000025 ], [ 80.445352824000111, 45.104224752 ], [ 80.69712040200011, 45.143653870000023 ], [ 80.853855022000118, 45.12649729500005 ], [ 81.66522668500005, 45.347982483000024 ], [ 81.76516890500011, 45.307726543000101 ], [ 81.793642619000138, 45.195640361000031 ], [ 81.950118856000074, 45.144480693000034 ], [ 82.245294638000075, 45.231813863000056 ], [ 82.539746949000062, 45.123655091000089 ], [ 82.614574423000079, 45.248557027000018 ], [ 82.63198938000005, 45.41583363900007 ], [ 82.291493368000033, 45.533190817000062 ], [ 82.48894901500006, 45.90169545500008 ], [ 82.568272339000032, 46.19650950099999 ], [ 82.985507853000058, 46.942510478000074 ], [ 83.021474650000073, 47.205905254000058 ], [ 83.150355672000046, 47.211537985000078 ], [ 83.905348348000132, 46.97395558700002 ], [ 84.663544963000106, 46.98385162400011 ], [ 84.75160160300004, 46.9179900110001 ], [ 84.739612671000089, 46.81476633700008 ], [ 84.916036011000131, 46.850552266000093 ], [ 85.225836223000101, 47.041574199000095 ], [ 85.498636109000131, 47.051831971000084 ], [ 85.55682377100004, 47.178749288000077 ], [ 85.659659872000077, 47.206525370000108 ], [ 85.678986857000041, 47.274893290000094 ], [ 85.670356893000076, 47.384343974000032 ], [ 85.584574015000044, 47.492941997000045 ], [ 85.59542606600013, 47.624070944000053 ], [ 85.515379272000075, 47.920280253000058 ], [ 85.718674357000111, 48.358832296000102 ], [ 85.783683309000082, 48.407589010000052 ], [ 86.192030477000117, 48.418234355000052 ], [ 86.56508264200005, 48.527323303000074 ], [ 86.751996297000062, 48.715425517000099 ], [ 86.739180542000099, 48.783535055000087 ], [ 86.789461711000058, 48.839138896000108 ], [ 86.709414917000117, 48.954222311000066 ], [ 86.859483276000049, 49.105324199000037 ], [ 87.116315145000044, 49.129767151000081 ], [ 87.400432170000045, 49.071011048000102 ], [ 87.816324097000063, 49.165837301000082 ], [ 87.821905151000067, 49.028739726000126 ], [ 87.87259973200014, 48.968019918000024 ], [ 87.737879273000033, 48.869369609000032 ], [ 87.821078329000045, 48.788289287000097 ], [ 88.059410034000109, 48.708087464000087 ], [ 87.942828004000035, 48.599489441000074 ], [ 87.983032268000045, 48.552334697000063 ], [ 88.502690471000051, 48.392551168000054 ], [ 88.565115601000116, 48.342993470000081 ], [ 88.596224813000049, 48.197679342000114 ], [ 88.805411011000103, 48.105953675000094 ], [ 88.916825399000061, 48.105953675000094 ], [ 89.04555139200005, 47.9929889940001 ], [ 89.541800171000091, 48.031022848000035 ], [ 89.751296427000113, 47.824317119000071 ], [ 90.04461185800011, 47.879765931000051 ], [ 90.082852417000083, 47.756104228000041 ], [ 90.344800252000027, 47.658642477000043 ], [ 90.327436972000044, 47.62303741500007 ], [ 90.487220500000035, 47.378194479000044 ], [ 90.468720337000036, 47.308922221000032 ], [ 90.712116334000029, 47.014702454000101 ], [ 90.885129028000051, 46.944732564000091 ], [ 90.925333293000108, 46.813138530000018 ], [ 91.004811645000075, 46.740429790000078 ], [ 90.995923299000083, 46.594624736000057 ], [ 91.047496379000052, 46.566409404000083 ], [ 90.896187785000052, 46.302032776000047 ], [ 91.002434529000027, 46.021843160000017 ], [ 90.710772746000089, 45.752195537000048 ], [ 90.651138143000082, 45.493141581000074 ], [ 90.753250774000037, 45.420949606000065 ], [ 90.873243449000029, 45.186183574000083 ], [ 91.056798137000101, 45.217551168000099 ], [ 91.249137818000065, 45.129701233000034 ], [ 91.438480265000123, 45.146134339000085 ], [ 91.533978312000045, 45.071100159000096 ], [ 92.04299117000005, 45.074820862000095 ], [ 92.218897746000039, 45.010121969000025 ], [ 92.847593222000057, 45.039112448000097 ], [ 93.525277955000035, 44.951262513000032 ], [ 93.714000285000111, 44.874574687000106 ], [ 93.927423950000048, 44.672933248000035 ], [ 94.181878703000109, 44.660840963000041 ], [ 94.338458293000031, 44.512116191000118 ], [ 94.588055461000067, 44.436100159000077 ], [ 94.698229614000127, 44.343495992 ], [ 95.036813599000027, 44.254974264000069 ], [ 95.397721802000092, 44.280502422 ], [ 95.322687622000103, 44.158235982000079 ], [ 95.318966919000047, 44.017107646000042 ], [ 95.535284465000132, 43.957679748000075 ], [ 95.832837362000078, 43.408901876000058 ], [ 95.874385214000085, 43.247102966000014 ], [ 96.33068811000004, 42.889708761000108 ], [ 96.366339900965613, 42.722922619283452 ], [ 96.053393182249522, 42.541072902692292 ], [ 96.044401483441675, 42.0131464711327 ], [ 95.863947381566391, 41.855016588444755 ], [ 95.491980422358552, 41.856024277898086 ], [ 95.058260126303765, 41.788560695719525 ], [ 94.580924920648556, 41.585213934775254 ], [ 94.011037224987888, 41.104028835762165 ], [ 93.57747195766467, 40.587962145336689 ], [ 93.286326939436663, 40.46926138030841 ], [ 92.941541783126752, 40.472568671307101 ], [ 92.915341831260491, 40.093315334734882 ], [ 92.764498325936927, 39.86242503478752 ], [ 92.951463657921465, 39.44167552300695 ], [ 92.935960728105101, 39.152855942947383 ], [ 92.367571649212209, 39.062887275327455 ], [ 92.122728713059644, 38.940646674404491 ], [ 91.294407180247106, 38.745128893183846 ], [ 90.659303827109909, 38.677122707746719 ], [ 90.631501905688367, 38.62030446987535 ], [ 90.380922885782525, 38.486178290295811 ], [ 90.159282667960724, 38.445844835071057 ], [ 90.193492465804638, 38.325671291696722 ], [ 90.439265577944013, 37.99607900594134 ], [ 90.42262576656583, 37.788546453955689 ], [ 91.081655308445704, 37.483293768992212 ], [ 91.163149042094574, 37.300126655320867 ], [ 91.316317987385162, 37.118974921455447 ], [ 91.298748000020169, 37.017637437317831 ], [ 90.826425408605701, 36.923612168966429 ], [ 90.689999628380122, 36.776256821794846 ], [ 90.697751091939324, 36.655463161695536 ], [ 90.760279576041569, 36.59060923942485 ], [ 91.006724480850096, 36.503482773910889 ], [ 91.135760532722372, 36.140636704720123 ], [ 91.111317580042225, 36.073922431375081 ], [ 90.853400506827882, 36.004727688432069 ], [ 90.622665235612089, 36.111129461855171 ], [ 90.154218377775862, 36.13247182911158 ], [ 90.029574823419352, 36.258846544232597 ], [ 89.946117385009245, 36.080020250334258 ], [ 89.677813348107463, 36.081958115774398 ], [ 89.223629184838956, 36.263574936733903 ], [ 88.982920362884386, 36.276080633914091 ], [ 88.83863976361414, 36.37165619587671 ], [ 88.398253207819266, 36.454829413446646 ], [ 88.000086297644486, 36.428371080061254 ], [ 87.887586704362889, 36.369098211912956 ], [ 87.570913526937659, 36.333803209350606 ], [ 87.345604282911268, 36.374059150209575 ], [ 87.179877963597107, 36.301014513009363 ], [ 86.47475304611612, 36.223939114398604 ], [ 86.212340121699242, 36.115935370520901 ], [ 86.087438185823601, 35.875588283772231 ], [ 85.951219110273655, 35.764070543320884 ], [ 85.728855422040056, 35.766085924026129 ], [ 85.571345656077142, 35.656040961021517 ], [ 85.44256798662326, 35.752055772555821 ], [ 85.149769321996587, 35.749807847853901 ], [ 84.563448521432065, 35.559483548027288 ], [ 84.174324986009253, 35.376807358972428 ], [ 84.009063754688498, 35.418510239755733 ], [ 83.615082634655835, 35.359004828510024 ], [ 83.121779412989497, 35.40442841234136 ], [ 82.971762729965974, 35.490443833815846 ], [ 82.95682824093052, 35.657203681005058 ], [ 82.825415074046418, 35.691775214054871 ], [ 82.710435012066114, 35.650175686059015 ], [ 82.41453576021712, 35.685729071939079 ], [ 82.318934360732101, 35.633742581155161 ], [ 82.289168736348074, 35.544962470141854 ], [ 82.066133253646683, 35.433651435265517 ], [ 82.002209507362863, 35.319446520540453 ], [ 81.604197625919653, 35.236919257217949 ], [ 81.417387322666798, 35.326035265015435 ], [ 81.21021650588699, 35.316914374099042 ], [ 81.073532342343697, 35.389468084884186 ], [ 81.035188430301787, 35.30420197224322 ], [ 80.978861117946224, 35.293401598305081 ], [ 80.486022984273291, 35.404247545188014 ], [ 80.274201287559322, 35.527599189251134 ], [ 80.176171096219093, 35.253249010233617 ], [ 80.014165479952908, 35.085920722263495 ], [ 80.037884963120518, 34.989957587572576 ], [ 79.883837517787185, 34.919600125545344 ], [ 79.960008578832799, 34.697391466043314 ], [ 79.793972202055443, 34.431025296380312 ], [ 79.48112308136507, 34.471177883552457 ], [ 79.204499139223856, 34.43944855440725 ], [ 78.956939515746001, 34.339960905571331 ], [ 78.664582968000047, 34.526420797000057 ], [ 78.296026652000137, 34.624657695000039 ], [ 78.001160929000093, 35.268907776000091 ], [ 78.044259074000081, 35.49163319899999 ], [ 77.883131958000035, 35.431068420000045 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-54", "NAME_1": "Xizang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.917694132000122, 33.386257833000045 ], [ 78.781371704000094, 33.552785136000082 ], [ 78.79408410700006, 33.743910421000024 ], [ 78.730108684000072, 34.079264629000036 ], [ 78.976191854000035, 34.2171631880001 ], [ 78.956939515746001, 34.339960905571331 ], [ 79.037687616090579, 34.384671536562166 ], [ 79.48112308136507, 34.471177883552457 ], [ 79.793972202055443, 34.431025296380312 ], [ 79.960008578832799, 34.697391466043314 ], [ 79.883837517787185, 34.919600125545344 ], [ 80.037884963120518, 34.989957587572576 ], [ 80.014165479952908, 35.085920722263495 ], [ 80.176171096219093, 35.253249010233617 ], [ 80.274201287559322, 35.527599189251134 ], [ 80.486022984273291, 35.404247545188014 ], [ 80.978861117946224, 35.293401598305081 ], [ 81.035188430301787, 35.30420197224322 ], [ 81.073532342343697, 35.389468084884186 ], [ 81.21021650588699, 35.316914374099042 ], [ 81.417387322666798, 35.326035265015435 ], [ 81.604197625919653, 35.236919257217949 ], [ 82.002209507362863, 35.319446520540453 ], [ 82.066133253646683, 35.433651435265517 ], [ 82.289168736348074, 35.544962470141854 ], [ 82.318934360732101, 35.633742581155161 ], [ 82.41453576021712, 35.685729071939079 ], [ 82.710435012066114, 35.650175686059015 ], [ 82.825415074046418, 35.691775214054871 ], [ 82.95682824093052, 35.657203681005058 ], [ 82.971762729965974, 35.490443833815846 ], [ 83.121779412989497, 35.40442841234136 ], [ 83.615082634655835, 35.359004828510024 ], [ 84.009063754688498, 35.418510239755733 ], [ 84.174324986009253, 35.376807358972428 ], [ 84.563448521432065, 35.559483548027288 ], [ 85.149769321996587, 35.749807847853901 ], [ 85.44256798662326, 35.752055772555821 ], [ 85.571345656077142, 35.656040961021517 ], [ 85.728855422040056, 35.766085924026129 ], [ 85.951219110273655, 35.764070543320884 ], [ 86.087438185823601, 35.875588283772231 ], [ 86.212340121699242, 36.115935370520901 ], [ 86.47475304611612, 36.223939114398604 ], [ 87.179877963597107, 36.301014513009363 ], [ 87.345604282911268, 36.374059150209575 ], [ 87.570913526937659, 36.333803209350606 ], [ 88.276761915729764, 36.44857656485658 ], [ 88.83863976361414, 36.37165619587671 ], [ 88.974910516007469, 36.278716132243687 ], [ 89.223629184838956, 36.263574936733903 ], [ 89.677813348107463, 36.081958115774398 ], [ 89.514670852078098, 36.053251857687087 ], [ 89.435140822291089, 35.987803657113091 ], [ 89.511621941699218, 35.863909409791404 ], [ 89.792638381356198, 35.818046576388383 ], [ 89.690680779594288, 35.519847723893349 ], [ 89.73755130424928, 35.449981187381866 ], [ 89.491623163378222, 35.350400702430477 ], [ 89.454054396792912, 35.22462026651209 ], [ 89.571669956203493, 35.073311672295802 ], [ 89.569189488404106, 34.948048001214261 ], [ 89.77822065625827, 34.930426337005827 ], [ 89.825246209644831, 34.84609040035167 ], [ 89.715847202686234, 34.72506419535631 ], [ 89.84446984160985, 34.357954819859003 ], [ 89.786592238341086, 34.198533026877669 ], [ 89.635903761749148, 34.074483750824413 ], [ 89.741892124022286, 33.909506741243092 ], [ 89.886999545592516, 33.813853664914689 ], [ 89.975107863037408, 33.630557359134798 ], [ 90.160212843947534, 33.56043244110424 ], [ 90.205688103722991, 33.401501572739392 ], [ 90.30563032388028, 33.29507396089457 ], [ 90.424382765752, 33.288045965948527 ], [ 90.773818801096752, 33.139114488542816 ], [ 90.940010206605734, 33.236627915945519 ], [ 91.127905714577025, 33.254327094519795 ], [ 91.177566766293182, 33.334554755397619 ], [ 91.370733270024346, 33.335717475381159 ], [ 91.376469353777622, 33.271251125838774 ], [ 91.542660760185868, 33.080332546809586 ], [ 91.976846145133436, 32.848615424562183 ], [ 92.196109247044092, 32.868640042204163 ], [ 92.221379022024223, 32.744978338879207 ], [ 92.99776574089617, 32.741516018249627 ], [ 93.043964471083427, 32.652322496086299 ], [ 93.195738153293121, 32.667153632334248 ], [ 93.494893020196685, 32.514036362987724 ], [ 93.734154901327599, 32.572456570414374 ], [ 93.852390578362474, 32.499773668420062 ], [ 94.110772739570223, 32.478224596487905 ], [ 94.334996778878178, 32.549951484073688 ], [ 94.356752557284665, 32.614081935932575 ], [ 94.410599400042258, 32.59147349680444 ], [ 94.614928012917403, 32.672734687355899 ], [ 94.755229526721223, 32.535456243710655 ], [ 94.924366489821637, 32.456029568509734 ], [ 94.968394809672702, 32.319577948963172 ], [ 95.078258904624704, 32.254517320218156 ], [ 95.269461703594686, 32.240900579897811 ], [ 95.396223993242643, 32.162068183000201 ], [ 95.424335972127381, 32.018304348566801 ], [ 95.354314405985008, 31.954406439805325 ], [ 95.40676598476233, 31.810668442894325 ], [ 95.486864455330306, 31.746667182244664 ], [ 95.644942662074129, 31.760361436031417 ], [ 95.784779086985225, 31.694654853039026 ], [ 96.062074822694854, 31.71377513311586 ], [ 96.193022901585607, 31.53474213274319 ], [ 96.236017693561678, 31.577736924719261 ], [ 96.222840203712394, 31.719976304862541 ], [ 96.141243117276019, 31.797051703473301 ], [ 96.182635939696809, 31.871155706970285 ], [ 96.307434523684265, 31.906192328013503 ], [ 96.464582554441279, 31.760671495293252 ], [ 96.763737421344899, 31.680908922408832 ], [ 96.796655307996048, 31.737365424174982 ], [ 96.748544549891051, 31.823897610486313 ], [ 96.789678989893446, 31.896838893999757 ], [ 96.737692499109528, 31.968850003324974 ], [ 97.142835728286173, 32.012671616701709 ], [ 97.254870232675046, 32.075794379107265 ], [ 97.276936070343311, 32.2522952339379 ], [ 97.388505486738779, 32.280768948028481 ], [ 97.393156365773621, 32.384974474492367 ], [ 97.325977004435174, 32.41223379175608 ], [ 97.360858595847503, 32.500187079570026 ], [ 97.630867955092015, 32.444092312110513 ], [ 97.715720655683697, 32.544189560999428 ], [ 98.014152053074724, 32.464504503380113 ], [ 98.205768264094047, 32.355648097881385 ], [ 98.220185988292712, 32.252191881150395 ], [ 98.452988316157814, 31.984094549823624 ], [ 98.425651482729677, 31.81340729401137 ], [ 98.592152948399814, 31.598820909557332 ], [ 98.884951613026487, 31.354081326192215 ], [ 98.767801140710048, 31.230367946923195 ], [ 98.649100375681769, 31.316693426760196 ], [ 98.603780144637938, 31.16975149253733 ], [ 98.803044468227597, 30.990976874583055 ], [ 98.787696568042122, 30.880880234735002 ], [ 98.96070926292208, 30.727194526406265 ], [ 98.905363804296087, 30.663813381582258 ], [ 99.056310663306419, 29.915331936020038 ], [ 98.986754185157452, 29.650903631797178 ], [ 99.108813918027863, 29.223772081116635 ], [ 98.980242955048311, 29.193153795111527 ], [ 99.007734816308698, 29.043731391290635 ], [ 98.917094354221035, 28.961488348808246 ], [ 98.950890740914929, 28.859375719214029 ], [ 98.911978387192789, 28.822142849412955 ], [ 98.850690139238509, 28.820075791864269 ], [ 98.783045689007281, 29.001589260036326 ], [ 98.646154819888977, 28.964382229556236 ], [ 98.678659296289425, 28.749124049735087 ], [ 98.589207390808383, 28.670291652837477 ], [ 98.644294467915302, 28.44389720319333 ], [ 98.575823195384146, 28.317548326494034 ], [ 98.447562289867733, 28.231713772172839 ], [ 98.299767694023842, 28.354807033817565 ], [ 98.247677849553099, 28.220034898191955 ], [ 98.115002276000098, 28.14388835700008 ], [ 97.9910518800001, 28.214015401000026 ], [ 97.992912232000094, 28.268921611000039 ], [ 97.897517538000102, 28.355324605000121 ], [ 97.765329224000084, 28.352430725000133 ], [ 97.699596802000087, 28.488029683000079 ], [ 97.613607218000027, 28.481983541000133 ], [ 97.546221151000111, 28.538465881000079 ], [ 97.445348755000111, 28.382971497000128 ], [ 97.447829224000088, 28.297602031000039 ], [ 97.323495728000125, 28.217477723000073 ], [ 97.115549764000036, 28.366564230000066 ], [ 96.897888632000047, 28.354704489000042 ], [ 96.884913430336212, 28.428040080179684 ], [ 96.698677684340112, 28.589108833473531 ], [ 96.557742525207971, 28.584075434933155 ], [ 96.495225871000059, 28.421470439000089 ], [ 96.426874163156697, 28.518641253907518 ], [ 96.467141351480166, 28.56394184077142 ], [ 96.435177857000042, 28.611226298000034 ], [ 96.59800971353144, 28.709910398443995 ], [ 96.576667928000063, 28.808526917000066 ], [ 96.351373185050136, 29.097482086057354 ], [ 96.195337830296751, 29.027014506491341 ], [ 96.183513631000096, 29.123778992000027 ], [ 96.316425415000083, 29.171863912000063 ], [ 96.366241496000043, 29.257233379000056 ], [ 96.235293416000047, 29.241213684000016 ], [ 96.141965780000078, 29.368466899000097 ], [ 96.074536265326344, 29.369285607240855 ], [ 95.744780721000041, 29.340432435000068 ], [ 95.717164968955558, 29.218283651027733 ], [ 95.564429973000074, 29.245606181000099 ], [ 95.515337362000139, 29.209432679000074 ], [ 95.521435181000072, 29.137860820000029 ], [ 95.466348104000133, 29.122719625000016 ], [ 95.445145909918438, 29.186227727272396 ], [ 95.409826808295634, 29.130305816369784 ], [ 95.274436918741969, 29.112646265558411 ], [ 95.281553182000096, 29.052672221000094 ], [ 94.954648071000065, 29.169073385000033 ], [ 94.988237753000078, 29.124295757000041 ], [ 94.776571085000114, 29.16669626900007 ], [ 94.704224080000131, 29.284699402000044 ], [ 94.59994104000009, 29.316635437000016 ], [ 94.514778280000087, 29.221059876000041 ], [ 94.287505331000034, 29.147937724000073 ], [ 94.270785780963479, 29.097929973215642 ], [ 94.347310501145955, 29.024348511501685 ], [ 94.2501829716835, 28.933107498976327 ], [ 93.918535604000056, 28.833228252000069 ], [ 93.722475220000092, 28.696647441000053 ], [ 93.446213013000033, 28.671894430000023 ], [ 93.220042507687992, 28.541654122658045 ], [ 93.093159627000091, 28.366641744000091 ], [ 92.85028039600013, 28.19194956500003 ], [ 92.67861128800007, 28.133064270000105 ], [ 92.638923788000056, 28.057487488000092 ], [ 92.701348918000065, 28.025241394000133 ], [ 92.628485148000038, 27.915764873000072 ], [ 92.439039348000051, 27.823289897000066 ], [ 92.32917525300013, 27.832927552000072 ], [ 92.303853801000059, 27.786160380000055 ], [ 92.239568319000057, 27.865276998000056 ], [ 92.229026327000099, 27.810655010000019 ], [ 92.106553182000027, 27.810861715000087 ], [ 91.975088338000035, 27.726577454000065 ], [ 91.632887004000054, 27.759443665 ], [ 91.637951295000107, 27.939742737000088 ], [ 91.418843221000088, 27.994726461000042 ], [ 91.29016890500003, 28.091413066000101 ], [ 91.051940552000076, 27.962790426000069 ], [ 90.667467896000119, 28.090327860000016 ], [ 90.475231567000094, 28.072344463000022 ], [ 90.587725533448861, 28.233297804528476 ], [ 90.386905304456036, 28.299140502558899 ], [ 90.291470175000086, 28.261351014000084 ], [ 90.22559069428155, 28.358398930786237 ], [ 89.916130013538748, 28.315601177066512 ], [ 89.755843954000113, 28.184378967000058 ], [ 89.561488891000124, 28.134640401000055 ], [ 89.336024618000067, 27.869075216000098 ], [ 89.224920288000078, 27.807812806000058 ], [ 89.124654945727059, 27.614851589150547 ], [ 89.064028574364443, 27.615946263377637 ], [ 88.978365706058185, 27.530283395071351 ], [ 88.971932994800284, 27.312385231937938 ], [ 88.892330770000115, 27.315543111000082 ], [ 88.759780722000073, 27.435070699000065 ], [ 88.741022177000104, 27.545709941000027 ], [ 88.853883504000066, 27.843676249000097 ], [ 88.817710002000126, 27.994881490000083 ], [ 88.610487508000119, 28.105830790000127 ], [ 88.378770386000042, 27.982634176000047 ], [ 88.115737346000117, 27.947261658000045 ], [ 88.118217814000047, 27.860884501000058 ], [ 87.836684612000056, 27.908323467000073 ], [ 87.726820516000032, 27.807761129000042 ], [ 87.53158695500008, 27.836803284000027 ], [ 87.36911625200014, 27.803937073 ], [ 87.363845255000115, 27.855251770000038 ], [ 87.155795939000086, 27.825796204000042 ], [ 87.0056759040001, 27.951499126 ], [ 86.739800659000139, 28.021494853000021 ], [ 86.680062703000033, 28.105727437 ], [ 86.553558797000051, 28.104151306000077 ], [ 86.510460653000052, 27.952429301000038 ], [ 86.425297892000117, 27.909925435 ], [ 86.20303755700013, 28.002581279000069 ], [ 86.155960328000106, 28.156525371 ], [ 86.068730509000034, 28.076762797000029 ], [ 86.112862183000118, 27.926797791000084 ], [ 85.980260458000089, 27.885172424000061 ], [ 85.863368368000124, 28.143347880000121 ], [ 85.734487345000105, 28.221534323000057 ], [ 85.692939494000029, 28.335222473000059 ], [ 85.61180749500005, 28.251144918000094 ], [ 85.087395061000052, 28.304113261000097 ], [ 85.07757653800013, 28.435681457000058 ], [ 85.160982300000057, 28.59499989900003 ], [ 85.054942261000065, 28.638692322000011 ], [ 84.928490031000081, 28.538465881000079 ], [ 84.811959676000129, 28.541979879000039 ], [ 84.677755981000075, 28.604405009000075 ], [ 84.682975301000113, 28.650758769000092 ], [ 84.616209351000066, 28.693650207000033 ], [ 84.450844768000138, 28.73388031000006 ], [ 84.376585735000049, 28.848834534 ], [ 84.20672530100012, 28.940663554000068 ], [ 84.231426636000094, 29.025981343000026 ], [ 84.175461060000089, 29.057400614000059 ], [ 84.132259562000058, 29.143803609000045 ], [ 84.161663453000074, 29.192534485000081 ], [ 84.089729858000112, 29.256613261 ], [ 83.914391724000041, 29.28940195700001 ], [ 83.695490357000097, 29.226175842000131 ], [ 83.639266398000132, 29.154759013000032 ], [ 83.523717895000118, 29.183594462000073 ], [ 83.355201050000119, 29.460735168000056 ], [ 83.263940470000136, 29.47300832100008 ], [ 83.260839885000109, 29.542048035000064 ], [ 83.173558391000086, 29.62126800500009 ], [ 83.064934530000073, 29.578789978000131 ], [ 82.975896037000098, 29.664030253000092 ], [ 82.836576376000039, 29.65979278600004 ], [ 82.541814005000049, 29.923239238000022 ], [ 82.153827352000121, 30.058166402 ], [ 82.155687703000126, 30.181363017000066 ], [ 82.084994345000098, 30.230817363000099 ], [ 82.088766724000038, 30.330087789000075 ], [ 81.614015340000037, 30.416904195000072 ], [ 81.509370565000097, 30.328382467000026 ], [ 81.387517538000111, 30.37390940300007 ], [ 81.350052124000115, 30.157230123000105 ], [ 81.266956421000032, 30.125087382000075 ], [ 81.216830282000046, 30.008195292000025 ], [ 81.097767782000062, 30.01692860900009 ], [ 80.976018107000073, 30.255208638000042 ], [ 80.781663045000073, 30.320992737 ], [ 80.596351360000028, 30.45979563500002 ], [ 80.179839315000038, 30.559479472000092 ], [ 80.166610148000075, 30.674407858000038 ], [ 80.231412394000074, 30.724947408000062 ], [ 80.157101684000111, 30.793160299000093 ], [ 80.062533814000062, 30.784788717000097 ], [ 79.833503866000058, 30.961522115000051 ], [ 79.577808879000088, 30.938371074000045 ], [ 79.401592245000131, 31.023637187000119 ], [ 79.372343384000089, 31.094072165000043 ], [ 79.282219686000076, 31.138203837000034 ], [ 79.193749634000142, 31.335349426 ], [ 79.077787720000117, 31.42717844700006 ], [ 79.014639120000083, 31.425473125000096 ], [ 78.976191854000035, 31.320001526000041 ], [ 78.918107544000065, 31.354418030000076 ], [ 78.861986938000086, 31.291476135 ], [ 78.745094849000054, 31.308115947000104 ], [ 78.76256148300007, 31.445110169000131 ], [ 78.699516235000033, 31.510015768000059 ], [ 78.818888794000088, 31.607374166000014 ], [ 78.670887492000077, 31.770516663000038 ], [ 78.744578085000114, 31.964199931000067 ], [ 78.457980591000137, 32.229661764000085 ], [ 78.452192830000058, 32.41678212500004 ], [ 78.384806762000039, 32.547549337000063 ], [ 78.736826619000112, 32.629844056000124 ], [ 78.771449829000119, 32.461663106000046 ], [ 78.943428996000137, 32.346372986000105 ], [ 79.07530725100014, 32.370790100000036 ], [ 79.132874797000113, 32.485460104000097 ], [ 79.29431197100007, 32.494580994000088 ], [ 79.505048463000037, 32.714179993000059 ], [ 79.334206177000112, 32.956826681000067 ], [ 79.378647909000051, 33.164281718000055 ], [ 79.087399536000135, 33.215596416000082 ], [ 78.917694132000122, 33.386257833000045 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-15", "NAME_1": "Inner Mongol" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.914505656000131, 47.683912252000127 ], [ 115.575714966000078, 47.909738261000072 ], [ 115.514220011000077, 48.131636862000065 ], [ 115.7999906820001, 48.242327779000036 ], [ 115.8004040940001, 48.530372213000092 ], [ 116.028193808000083, 48.767463685000038 ], [ 116.0378056240001, 48.870144755000027 ], [ 116.684277792000159, 49.823264873000099 ], [ 117.057588338000073, 49.67288645400005 ], [ 117.836868938000123, 49.509020488000019 ], [ 118.644364868000025, 49.954574687000061 ], [ 119.091676066000161, 49.986562398000061 ], [ 119.316210165000086, 50.092654114000098 ], [ 119.356621134000079, 50.340752666000085 ], [ 119.137564738000037, 50.392532451000065 ], [ 119.243656454000075, 50.445500793000051 ], [ 119.293575887000145, 50.599238179000039 ], [ 119.496664267000028, 50.737059225000067 ], [ 119.517954956000096, 50.904800924000071 ], [ 119.740835409000056, 51.071534932000063 ], [ 119.762177776000044, 51.215040385000052 ], [ 119.814991090000092, 51.21589304600009 ], [ 119.819641968000042, 51.274726665000074 ], [ 119.915656779000074, 51.330743917000078 ], [ 119.895296265000127, 51.383970642000051 ], [ 119.952863811000043, 51.39766489700007 ], [ 120.100451701000054, 51.659948629000027 ], [ 120.493140910000079, 51.875723572000069 ], [ 120.647601766000093, 51.911018575000057 ], [ 120.710905396000044, 51.988326518000051 ], [ 120.697314494000011, 52.048710429000053 ], [ 120.779169963000072, 52.117595114000082 ], [ 120.758085979000043, 52.237406922000034 ], [ 120.62615604699999, 52.34680592900007 ], [ 120.72397953300009, 52.542168681000035 ], [ 120.454021851000107, 52.639036154000067 ], [ 120.079367717000139, 52.589969381000046 ], [ 120.033789103000061, 52.625367737000047 ], [ 120.032962280000106, 52.76065663700011 ], [ 120.280182332000095, 52.865921530000023 ], [ 120.845729207000147, 53.273441875000046 ], [ 121.203485149000073, 53.276749166000045 ], [ 121.35763594600013, 53.324058940000086 ], [ 121.637878046034984, 53.220266018062262 ], [ 121.677152134063704, 53.137635402851515 ], [ 121.765415481139485, 53.09495067013728 ], [ 121.790116815338706, 53.000486152214137 ], [ 121.169121128037546, 52.576610215688902 ], [ 121.702990349824745, 52.383831284686039 ], [ 121.831251255341158, 52.2693679884419 ], [ 122.017906528963067, 52.283113919072093 ], [ 122.207662388008771, 52.490181383064339 ], [ 122.34641360910075, 52.449615383842854 ], [ 122.501907994358362, 52.285956122077323 ], [ 122.7520219262708, 52.241152655870337 ], [ 122.762873977052323, 52.180148626957532 ], [ 122.63254601398728, 52.116095689464487 ], [ 122.761013625078704, 51.826139227843043 ], [ 122.709027134294729, 51.711107489918675 ], [ 122.884365269141767, 51.448126126519469 ], [ 123.088125442135379, 51.31247549085117 ], [ 123.463916457178698, 51.271134345273765 ], [ 123.621942987079137, 51.197133694564343 ], [ 123.774130080438795, 51.222093411181959 ], [ 123.848595819141678, 51.311596991707802 ], [ 124.162065056557026, 51.328365994295154 ], [ 124.369855991860504, 51.280901191336909 ], [ 124.464992304251382, 51.356400457914788 ], [ 124.828070917438822, 51.367588406379809 ], [ 125.127535841805638, 51.615738634430386 ], [ 125.486635370425915, 51.507398993768504 ], [ 125.70295291564446, 51.266741847758055 ], [ 125.984382765552141, 51.104219469352984 ], [ 126.05626468276887, 50.980273546087233 ], [ 125.990325555779691, 50.875241197323362 ], [ 125.951671583576626, 50.892604479113402 ], [ 125.754009231340888, 50.754344184436547 ], [ 125.808579542711641, 50.695975653853338 ], [ 125.793334996213048, 50.534383450535813 ], [ 125.574743686971487, 50.436353258296208 ], [ 125.43418379074933, 50.200657050582379 ], [ 125.264426710923885, 50.105727443766511 ], [ 125.329435662825517, 50.062267563796979 ], [ 125.243601109403585, 50.051053778708877 ], [ 125.295225864981603, 50.014466864953818 ], [ 125.186602004378983, 49.951679999332498 ], [ 125.244996373383856, 49.877033393476324 ], [ 125.177920363034332, 49.818974921255574 ], [ 125.223292270921547, 49.786987209691972 ], [ 125.219571567873459, 49.668131415032747 ], [ 125.125210402737821, 49.656581733160408 ], [ 125.235694615314173, 49.554391588301144 ], [ 125.267372267615997, 49.43848135033403 ], [ 125.225772739620197, 49.225574448901682 ], [ 125.135649042369323, 49.138913072280445 ], [ 124.87354617721428, 49.178445542727616 ], [ 124.822283155942841, 49.115710353949623 ], [ 124.607102492286117, 48.638736884399691 ], [ 124.531603224808919, 48.559310208299451 ], [ 124.56224734923569, 48.236177476709145 ], [ 124.520492791608945, 48.128690496768968 ], [ 124.482355585142045, 48.111585598296699 ], [ 124.421170689076007, 48.178299872541061 ], [ 124.317197706608795, 48.350950833114439 ], [ 124.303761835240493, 48.487583319814348 ], [ 124.234050328359899, 48.530836494208813 ], [ 123.577552932022172, 48.054328110853589 ], [ 123.286562941626357, 47.941311754533842 ], [ 123.206826207163658, 47.81382599537335 ], [ 122.565366652648891, 47.5311559111164 ], [ 122.405221389255644, 47.33168488195173 ], [ 122.574048293094165, 47.131128648068625 ], [ 122.787678664039049, 47.040720729977693 ], [ 123.072622512319072, 46.795826117881006 ], [ 123.186827427044022, 46.761642158458812 ], [ 123.391156040818601, 46.899876613814627 ], [ 123.460092401343218, 46.884657904838434 ], [ 123.489392937733896, 46.817297675447321 ], [ 123.579309931208286, 46.875614529187146 ], [ 123.613313022577927, 46.841094672081454 ], [ 123.536108432757942, 46.691982327522396 ], [ 123.391311070449547, 46.595218207154517 ], [ 123.01009402911609, 46.602685452571563 ], [ 122.988906692389946, 46.406573391248969 ], [ 123.161661004851453, 46.220073147257892 ], [ 123.09525678896955, 46.120440986362382 ], [ 122.801217889094232, 46.094189358552057 ], [ 122.772020704591796, 45.78144358974987 ], [ 122.702825961648728, 45.712326362071906 ], [ 122.508522577255121, 45.812656154957551 ], [ 122.414368116795117, 45.947273260952215 ], [ 122.239805129203319, 45.813482978156912 ], [ 122.010775181229633, 45.974868475899427 ], [ 121.795387811098522, 46.015072739915013 ], [ 121.81058068165305, 45.897844754132052 ], [ 121.649505243172371, 45.740955104894169 ], [ 121.759110955705978, 45.674860948274102 ], [ 121.939358352006252, 45.68677236625166 ], [ 121.984988641412656, 45.636697903385482 ], [ 121.980492792008704, 45.528875027560446 ], [ 122.128390740640157, 45.456398831141144 ], [ 122.208902623257359, 45.356818346189698 ], [ 122.218101027640273, 45.22390656253782 ], [ 122.036975132196517, 45.145513414312575 ], [ 122.005814243832219, 45.089909573268187 ], [ 122.041781040862247, 44.706677151229542 ], [ 122.278149042144491, 44.43857981990277 ], [ 122.277942335670218, 44.218799954054589 ], [ 122.726287063297264, 44.338198351073004 ], [ 123.111379836410265, 44.519040024777325 ], [ 123.121198358417473, 44.39615346870761 ], [ 123.253231642925925, 44.207896227329002 ], [ 123.359064975568117, 44.151336370976708 ], [ 123.322271356238048, 44.041859850551646 ], [ 123.526496617225007, 43.686170965717452 ], [ 123.516729771161977, 43.612015286276403 ], [ 123.41864790297825, 43.618268133967206 ], [ 123.350538364753675, 43.479310208199536 ], [ 123.696253697050452, 43.353478095437708 ], [ 123.620392694367297, 43.086931056822777 ], [ 123.261241489802842, 42.998796901855485 ], [ 123.058979933577007, 42.787621161187587 ], [ 122.763339065045784, 42.732327379405035 ], [ 122.392043899406417, 42.853560289076029 ], [ 122.363466831628898, 42.809376938694754 ], [ 122.434211867283807, 42.696748155103251 ], [ 122.399588658289872, 42.658326727796236 ], [ 122.283109978642528, 42.637475286954896 ], [ 122.045036655916874, 42.720855210999161 ], [ 121.933932325716228, 42.673364570518515 ], [ 121.877760043890817, 42.539574285924516 ], [ 121.723660922613476, 42.457667141125626 ], [ 121.628989699115323, 42.457408758707231 ], [ 121.551785110194601, 42.535491848569905 ], [ 121.38280317582587, 42.506966458535203 ], [ 121.014091831672658, 42.25059967713338 ], [ 120.912599318803473, 42.296565864223226 ], [ 120.627862176997837, 42.160372626195738 ], [ 120.495725538802503, 42.144094550023453 ], [ 120.458415154635645, 42.025083727531978 ], [ 120.331342808423869, 41.960152289096868 ], [ 120.095646599810721, 41.702106025572618 ], [ 120.032601352670213, 41.71156281237387 ], [ 120.03032759044595, 41.860597643466463 ], [ 119.800935907266307, 42.128850003524803 ], [ 119.8369543802404, 42.199129951186251 ], [ 119.636449823200678, 42.240083523136036 ], [ 119.51170291605672, 42.394518541197669 ], [ 119.246706171052892, 42.197786363150101 ], [ 119.374243606157506, 42.080429186157971 ], [ 119.298640984993426, 41.777346909732103 ], [ 119.39067671106136, 41.460001938738458 ], [ 119.361634556189756, 41.374994208515886 ], [ 119.230996534762198, 41.273398341959876 ], [ 119.235027297072065, 41.322801012156958 ], [ 118.867142776118158, 41.336546942787152 ], [ 118.808903435844854, 41.382849025761914 ], [ 118.358905063617726, 41.322620144104349 ], [ 118.294722934915512, 41.460622057262128 ], [ 118.313636509417279, 41.569555976227321 ], [ 118.231212599781657, 41.599424954298172 ], [ 118.151630894050527, 41.75047516519669 ], [ 118.183411900039118, 41.796673896283266 ], [ 118.263200311345258, 41.752335517170366 ], [ 118.302887811423261, 41.785563463083349 ], [ 118.277152948449725, 42.062445786743638 ], [ 118.232297805399298, 42.084201565150067 ], [ 118.188992955060826, 42.026737372132004 ], [ 118.124810826358498, 42.029321194517479 ], [ 118.098559197648797, 42.175643012015371 ], [ 117.989315220321146, 42.221609199105217 ], [ 118.041301711105007, 42.278246568024656 ], [ 118.024248487677482, 42.382632962541152 ], [ 117.80576053302218, 42.559521389200711 ], [ 117.801884800343259, 42.609750881697835 ], [ 117.593628777945696, 42.551589056689579 ], [ 117.529394973299304, 42.620241197273401 ], [ 117.412399529714435, 42.458080553174966 ], [ 117.103426140803663, 42.476115628533421 ], [ 116.887108595585119, 42.395371201919431 ], [ 116.826595493986815, 42.308167222938948 ], [ 116.884783155618038, 42.203160711697478 ], [ 116.854242384878148, 42.117274482331482 ], [ 116.889434034652936, 42.063375962730447 ], [ 116.797294956696874, 41.986998196109823 ], [ 116.599735956349264, 41.923720404972698 ], [ 116.377527296847234, 42.009684150503119 ], [ 116.05661665243656, 41.798482571413501 ], [ 115.937347446627314, 41.927466946442394 ], [ 115.880089960083524, 41.933409735770681 ], [ 115.339761184131248, 41.720838731122512 ], [ 115.341311476843089, 41.615858059202026 ], [ 115.239973992705586, 41.586040757974558 ], [ 114.877153761936484, 41.612447415415886 ], [ 114.868885532641229, 41.795898749028026 ], [ 114.931310663056593, 41.847781887024439 ], [ 114.844907667954431, 42.148332017908274 ], [ 114.804858432670471, 42.178407701554136 ], [ 114.54993859299168, 42.130064399452465 ], [ 114.419713982714029, 41.956302394839611 ], [ 114.231921828429563, 41.826904609560074 ], [ 114.190373977277204, 41.584206244422603 ], [ 114.016741163873576, 41.525475979532814 ], [ 113.927961053759532, 41.418350734798537 ], [ 113.91028771360709, 41.286110744715074 ], [ 113.980257602906022, 41.24864533091727 ], [ 113.987699009001972, 41.169838772441381 ], [ 113.822799513786435, 41.094184475333236 ], [ 114.154097120985284, 40.74257803055167 ], [ 114.028420037854403, 40.642429103919994 ], [ 114.075703972760039, 40.502696030897084 ], [ 113.676606886598506, 40.428540351456036 ], [ 113.437345004568215, 40.32477407546321 ], [ 113.310841099137406, 40.324670721776386 ], [ 113.207694939869498, 40.424096177996205 ], [ 113.086462030198504, 40.404433295560125 ], [ 112.726328972803799, 40.171450100541676 ], [ 112.399217156646387, 40.288342190439721 ], [ 112.279276158168159, 40.228965969503861 ], [ 111.846951125194209, 39.628795885521697 ], [ 111.751401401653311, 39.597790024989649 ], [ 111.452970005161546, 39.645254827947952 ], [ 111.421188999172955, 39.522135728780825 ], [ 111.342692499059524, 39.444414374124051 ], [ 111.105704380152986, 39.380904038990195 ], [ 111.041005486613869, 39.4229686549794 ], [ 111.136761915729778, 39.573398749152943 ], [ 111.018061150701499, 39.567817695030556 ], [ 110.845668573445892, 39.46518829970023 ], [ 110.656326124650889, 39.245976873733696 ], [ 110.513440790260233, 39.371964016126412 ], [ 110.347094354221042, 39.316282659816864 ], [ 110.215526157705995, 39.430177517078732 ], [ 110.117599318253895, 39.435345160051099 ], [ 110.174081659341084, 39.279928290058535 ], [ 109.963345168244871, 39.181277981093956 ], [ 109.820563185742401, 39.054464016401198 ], [ 109.67426720576691, 39.011210842006733 ], [ 109.548900180998487, 38.795255031994088 ], [ 109.403482701065741, 38.754223944779199 ], [ 109.313152297340594, 38.62048533792796 ], [ 109.045365025275657, 38.422461248687682 ], [ 108.952244093590025, 38.212241523327634 ], [ 109.03539147273824, 38.075221463000105 ], [ 108.942632277157827, 37.918254299396381 ], [ 108.851526727076759, 37.990239570299934 ], [ 108.790703567115884, 37.941767076089661 ], [ 108.754323358036515, 37.675452582370781 ], [ 108.015453728906436, 37.636772773544635 ], [ 107.928740676341079, 37.785342515744503 ], [ 107.411976353026205, 37.911975613283914 ], [ 107.324178094843148, 38.065945543352143 ], [ 107.162637566570424, 38.138602606924735 ], [ 106.829169549934761, 38.150384832793804 ], [ 106.470121698157811, 38.290686347496944 ], [ 106.644994745011445, 38.45920319297295 ], [ 106.708918492194641, 38.645290024914686 ], [ 106.981718377600998, 39.014621486692249 ], [ 106.808240594727636, 39.19905467403396 ], [ 106.773772413566007, 39.372997544900727 ], [ 106.614092238166222, 39.358321438283724 ], [ 106.496941765849783, 39.285793565020981 ], [ 106.302069939775834, 39.289488430546612 ], [ 106.278143751932589, 39.150427151092117 ], [ 106.110402052812447, 39.116734117185729 ], [ 105.841219516767239, 38.571289374205207 ], [ 105.847524042200746, 38.265416572516813 ], [ 105.755643344864438, 38.147801012206912 ], [ 105.826129999000216, 37.999877224254476 ], [ 105.799464960039813, 37.812782701060769 ], [ 105.641645135714384, 37.734854640828985 ], [ 105.246578810963285, 37.725268662818507 ], [ 104.944323357736721, 37.545718899407632 ], [ 104.475204706332079, 37.521430976358431 ], [ 104.358519322009045, 37.401231594562432 ], [ 104.248810255788612, 37.3944103051914 ], [ 103.678715854552991, 37.77503306732217 ], [ 103.427154982716218, 37.849576321290158 ], [ 103.387467482638158, 37.999102077898556 ], [ 103.388087600262509, 38.101989853848636 ], [ 103.528957553947919, 38.146612453801652 ], [ 103.439402296578692, 38.413624579510724 ], [ 103.873432651895314, 38.642680365906131 ], [ 104.21682254422501, 39.034723618700014 ], [ 104.218372836936851, 39.10309153934304 ], [ 104.052388137002879, 39.322225450044471 ], [ 104.060604690354126, 39.427386990017567 ], [ 103.749254184632889, 39.424880682897196 ], [ 103.463793573314717, 39.357184556721904 ], [ 102.965374383720814, 39.119369615515325 ], [ 102.393109572149001, 39.237191881400179 ], [ 101.830766636271221, 39.082420966554366 ], [ 102.031219517366765, 38.8791775583976 ], [ 101.831076694633737, 38.689835110501917 ], [ 101.580187616365379, 38.688233140946693 ], [ 101.319790073553008, 38.75815135430156 ], [ 101.336171503412118, 38.81825104385058 ], [ 101.206360305183921, 38.930802313975562 ], [ 101.211321241681901, 39.008342800579783 ], [ 101.052106154275577, 38.999351100872559 ], [ 100.876612989797593, 39.12006724750546 ], [ 100.810208774815067, 39.403874213324286 ], [ 100.506661412194376, 39.418524482418889 ], [ 100.473330112594567, 39.485600490969887 ], [ 100.318145786598734, 39.533375353189967 ], [ 100.221614211126905, 39.680420641099658 ], [ 99.762004021568316, 39.860202949406585 ], [ 99.430861444000413, 39.87880646374731 ], [ 99.627025181267072, 40.06918244131657 ], [ 99.91703331883258, 40.219044093809885 ], [ 100.004366489921551, 40.390894070504942 ], [ 100.189781529194192, 40.580081488769679 ], [ 100.190298293131661, 40.70940176058275 ], [ 100.049686720965383, 40.880450750701584 ], [ 99.766654900603157, 40.909854640779031 ], [ 99.496025424633615, 40.842881985015595 ], [ 99.157441440969706, 40.836319078062957 ], [ 98.825678745777452, 40.72655833589846 ], [ 98.600679559214257, 40.547964585996851 ], [ 98.234448683759695, 40.528172512351546 ], [ 98.320593296443462, 40.891922919107401 ], [ 97.950538365153363, 41.119815986418644 ], [ 97.658979933976752, 41.413441474244621 ], [ 97.659083286764258, 41.483876451536958 ], [ 97.846875441048724, 41.619268703887542 ], [ 97.190679733982506, 42.787061492393946 ], [ 99.474475545000132, 42.564198914000073 ], [ 100.016974731000062, 42.676517639000068 ], [ 101.218710164000072, 42.529834087000026 ], [ 101.524944702000084, 42.537456360000093 ], [ 101.735371135000037, 42.461156108000054 ], [ 101.886473023000121, 42.278014832000011 ], [ 102.034164266000118, 42.184609681000026 ], [ 103.07348067300012, 42.004517314000097 ], [ 103.691427450000106, 41.759235128000043 ], [ 104.500783732000116, 41.870597839000098 ], [ 104.504917847000058, 41.656554057000037 ], [ 104.892336060000105, 41.644771830000039 ], [ 104.973829794000039, 41.586144918000016 ], [ 105.200896037000064, 41.743473816000076 ], [ 106.767828818000112, 42.286618958000034 ], [ 108.177355184000078, 42.454308981000011 ], [ 108.7968522540001, 42.398369243 ], [ 108.961286662000077, 42.447539368000051 ], [ 109.485130656000081, 42.449296367000031 ], [ 109.667341757000031, 42.548980204000131 ], [ 110.406728150000106, 42.7686050410001 ], [ 110.97341190700007, 43.315600078000031 ], [ 111.567690877000075, 43.502539572000032 ], [ 111.753829387000053, 43.663201600000079 ], [ 111.933353313000111, 43.696636251000044 ], [ 111.94430871600008, 43.786372376000131 ], [ 111.838785441000027, 43.938792013000054 ], [ 111.543816366000044, 44.156737366000058 ], [ 111.397055298000112, 44.387369283000041 ], [ 111.738533163000056, 44.96630035400004 ], [ 111.958261352000079, 45.084536031000042 ], [ 112.412807251, 45.066035869000032 ], [ 112.586026652000157, 44.923822327 ], [ 112.748497356000087, 44.865272930000074 ], [ 113.604775839000069, 44.739699199000071 ], [ 113.889306275000138, 44.908267721000058 ], [ 114.089294068000072, 44.961752828 ], [ 114.418886353000062, 45.201479797000033 ], [ 114.533711385000061, 45.385499573000018 ], [ 114.70331343600003, 45.427150777000051 ], [ 114.938854614000093, 45.373769023000037 ], [ 115.337279908000085, 45.394697978000025 ], [ 115.667388957000071, 45.4542809040001 ], [ 116.002148885000054, 45.675559388000053 ], [ 116.169890584000086, 45.709097392000061 ], [ 116.251642701000037, 45.803251852000031 ], [ 116.213195435000159, 45.908155009000026 ], [ 116.568315878000078, 46.290870666000032 ], [ 116.81460575400007, 46.38673044800008 ], [ 117.337467895000032, 46.357274882000056 ], [ 117.393795207000039, 46.571370341000048 ], [ 117.568151490000105, 46.603538920000076 ], [ 117.673364706000029, 46.5160248830001 ], [ 117.797594849000063, 46.520262350000039 ], [ 117.900637655000139, 46.607595521000079 ], [ 118.268987264000145, 46.722937317000017 ], [ 118.720070842000098, 46.67673858700006 ], [ 118.846523072000082, 46.765492859000076 ], [ 118.907087850000039, 46.709398092000029 ], [ 118.967239217000042, 46.740455628000078 ], [ 119.062375529000121, 46.660951437000065 ], [ 119.680115601000068, 46.591627503000055 ], [ 119.907026815000108, 46.718312276000049 ], [ 119.896433146000049, 46.898585510000046 ], [ 119.770135946000096, 46.9929983520001 ], [ 119.699959351000132, 47.159525655000053 ], [ 119.281897013000048, 47.41485890700001 ], [ 119.310112346000096, 47.476095480000069 ], [ 119.133895712000026, 47.527539368000035 ], [ 119.08345951400014, 47.661562195000059 ], [ 118.767406454000081, 47.756155904000039 ], [ 118.472799113000121, 47.989449158000028 ], [ 118.182480916000031, 48.028206482000073 ], [ 117.766899049000017, 47.993144023000056 ], [ 117.360825643, 47.650865174000032 ], [ 117.069680623000067, 47.810157776000025 ], [ 116.822047160000011, 47.876303609 ], [ 116.499689576000037, 47.836357728000038 ], [ 116.243891236000081, 47.862893575000058 ], [ 115.914505656000131, 47.683912252000127 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-62", "NAME_1": "Gansu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.366339900965613, 42.722922619283452 ], [ 97.190679733982506, 42.787061492393946 ], [ 97.846875441048724, 41.619268703887542 ], [ 97.659083286764258, 41.483876451536958 ], [ 97.658979933976752, 41.413441474244621 ], [ 97.950538365153363, 41.119815986418644 ], [ 98.320593296443462, 40.891922919107401 ], [ 98.234448683759695, 40.528172512351546 ], [ 98.600679559214257, 40.547964585996851 ], [ 98.825678745777452, 40.72655833589846 ], [ 99.157441440969706, 40.836319078062957 ], [ 99.496025424633615, 40.842881985015595 ], [ 99.766654900603157, 40.909854640779031 ], [ 100.06348432843896, 40.869960436025281 ], [ 100.190298293131661, 40.70940176058275 ], [ 100.189781529194192, 40.580081488769679 ], [ 100.004366489921551, 40.390894070504942 ], [ 99.91703331883258, 40.219044093809885 ], [ 99.627025181267072, 40.06918244131657 ], [ 99.430861444000413, 39.87880646374731 ], [ 99.762004021568316, 39.860202949406585 ], [ 100.221614211126905, 39.680420641099658 ], [ 100.318145786598734, 39.533375353189967 ], [ 100.473330112594567, 39.485600490969887 ], [ 100.506661412194376, 39.418524482418889 ], [ 100.810208774815067, 39.403874213324286 ], [ 100.876612989797593, 39.12006724750546 ], [ 101.052106154275577, 38.999351100872559 ], [ 101.211321241681901, 39.008342800579783 ], [ 101.206360305183921, 38.930802313975562 ], [ 101.336171503412118, 38.81825104385058 ], [ 101.319790073553008, 38.75815135430156 ], [ 101.580187616365379, 38.688233140946693 ], [ 101.831076694633737, 38.689835110501917 ], [ 102.031219517366765, 38.8791775583976 ], [ 101.830766636271221, 39.082420966554366 ], [ 102.393109572149001, 39.237191881400179 ], [ 102.965374383720814, 39.119369615515325 ], [ 103.463793573314717, 39.357184556721904 ], [ 103.749254184632889, 39.424880682897196 ], [ 104.060604690354126, 39.427386990017567 ], [ 104.052388137002879, 39.322225450044471 ], [ 104.218372836936851, 39.10309153934304 ], [ 104.21682254422501, 39.034723618700014 ], [ 103.873432651895314, 38.642680365906131 ], [ 103.439402296578692, 38.413624579510724 ], [ 103.528957553947919, 38.146612453801652 ], [ 103.388087600262509, 38.101989853848636 ], [ 103.420953810969536, 37.860299180862512 ], [ 103.678715854552991, 37.77503306732217 ], [ 104.248810255788612, 37.3944103051914 ], [ 104.476289911050515, 37.443761298545098 ], [ 104.717567172886675, 37.406864326427524 ], [ 104.68046349519409, 37.3732229684652 ], [ 104.722424758395846, 37.328445339780558 ], [ 104.630544061059538, 37.274831041019695 ], [ 104.636435175343024, 37.234936835366625 ], [ 104.855388217991845, 37.218193671200936 ], [ 104.965252312943846, 37.063836168404407 ], [ 105.180174595081439, 36.972136339120709 ], [ 105.320579461672764, 36.796565660276997 ], [ 105.22048221188453, 36.692954413015741 ], [ 105.447961867146432, 36.240010484096558 ], [ 105.437419874727368, 36.10668528929466 ], [ 105.330966425360202, 36.032426256166787 ], [ 105.320579461672764, 35.923440660358153 ], [ 105.431838819705717, 35.756422430750547 ], [ 105.563096957858249, 35.699991767406118 ], [ 105.725567662117896, 35.710068670932401 ], [ 105.693114861661513, 35.647075099736071 ], [ 105.829385614054786, 35.493647772926352 ], [ 105.936149122683844, 35.524808661290649 ], [ 106.076760694850122, 35.478945827887628 ], [ 105.900647413647164, 35.44677724917068 ], [ 105.897960240272823, 35.40765818897421 ], [ 106.177323032631818, 35.413006699999187 ], [ 106.377775913727419, 35.260664577907903 ], [ 106.490120477378071, 35.40517772117488 ], [ 106.496580030643884, 35.474785875267912 ], [ 106.415034621050893, 35.550905260369461 ], [ 106.510894402954307, 35.560930487951623 ], [ 106.448831007744786, 35.620435899197389 ], [ 106.437668898600748, 35.713479316517237 ], [ 106.557609897978352, 35.733219713319102 ], [ 106.728452183421496, 35.677047431493747 ], [ 106.910921665102705, 35.782364000198413 ], [ 106.843225538927413, 35.882202867568253 ], [ 106.938568556893358, 35.923905748351558 ], [ 106.939808791242683, 36.085833849352639 ], [ 106.824828729262379, 36.209624742088181 ], [ 106.496580030643884, 36.26835500697797 ], [ 106.492911005338556, 36.44625112578882 ], [ 106.430847609229716, 36.502320054826669 ], [ 106.491980829351746, 36.542627672529022 ], [ 106.496011590762237, 36.700240790380178 ], [ 106.612231887091866, 36.731194973169465 ], [ 106.649645624046286, 36.800027980906577 ], [ 106.574818150137503, 36.93133779590255 ], [ 106.637036574078593, 37.006010240180444 ], [ 106.644064569024579, 37.181658434289261 ], [ 106.74721072829243, 37.206308092544418 ], [ 106.919293248084898, 37.10941478096737 ], [ 107.243924594644284, 37.098252671823332 ], [ 107.285472446696019, 37.068461209017585 ], [ 107.287849562607164, 36.911028958319775 ], [ 107.500911492771138, 36.890771795781745 ], [ 107.548867222144565, 36.840025540246472 ], [ 107.886521030720928, 36.755379544330481 ], [ 108.03302371627143, 36.6543779569771 ], [ 108.041705356716818, 36.597740587158341 ], [ 108.218748813906586, 36.598593247880046 ], [ 108.695877313087465, 36.367005316841869 ], [ 108.644355910296952, 36.24853709581032 ], [ 108.699132929041411, 36.135934149741217 ], [ 108.674948357880396, 35.999818426978777 ], [ 108.490463494594565, 35.871066595946616 ], [ 108.614900344275441, 35.384507148386149 ], [ 108.503899366862242, 35.274823919688117 ], [ 108.154980096354336, 35.290559394400532 ], [ 107.971838820205335, 35.222604884907469 ], [ 107.741671990669772, 35.318361314023377 ], [ 107.672218866207686, 35.220589505101543 ], [ 107.842441034026479, 34.998122464080438 ], [ 107.724515415354119, 34.953163967343187 ], [ 107.310483840157076, 34.94324209254853 ], [ 107.210851678362246, 34.891772365702082 ], [ 107.051533238168361, 35.038145860043358 ], [ 106.914849073725748, 35.089047146108896 ], [ 106.583396437795329, 35.08488719348918 ], [ 106.491205682096506, 35.030110174744721 ], [ 106.543192172880424, 34.820045478116299 ], [ 106.317727899223144, 34.583341580049876 ], [ 106.368370802870231, 34.52021881854364 ], [ 106.596315546125538, 34.472934881839308 ], [ 106.673623487833652, 34.384671536562166 ], [ 106.678791131705339, 34.260389716512179 ], [ 106.496786737118157, 34.266487535471356 ], [ 106.552493930950106, 34.242147936478091 ], [ 106.58742719920582, 34.137451484498399 ], [ 106.524381952065369, 34.120966701851785 ], [ 106.423199497558699, 33.925164699791026 ], [ 106.490895623733991, 33.855582384119714 ], [ 106.466711052572975, 33.724246730702021 ], [ 106.557609897978352, 33.63427806218283 ], [ 106.542882115417228, 33.563429673740416 ], [ 106.471206902876247, 33.548701891179292 ], [ 106.392658725919432, 33.61882680920985 ], [ 106.170605096048291, 33.562241116234532 ], [ 106.005653924888691, 33.614951077430248 ], [ 105.840909458404724, 33.505190335265752 ], [ 105.715335728061348, 33.353158271536984 ], [ 105.74716840999406, 33.293988756176134 ], [ 105.92467695517729, 33.224096381242987 ], [ 105.891759067626822, 32.985402939993662 ], [ 105.667069940325462, 32.887501938963283 ], [ 105.413338658152497, 32.901893826538867 ], [ 105.375201450786278, 32.847607734209532 ], [ 105.437213169152415, 32.746451117225263 ], [ 105.269988233969798, 32.641702989301507 ], [ 105.194747348910994, 32.661650092577702 ], [ 105.112685175380477, 32.59434153913071 ], [ 105.047314488272946, 32.637594713525175 ], [ 104.916831495577014, 32.610516262515489 ], [ 104.645426874150871, 32.657877712686286 ], [ 104.299504836279141, 32.83791840341155 ], [ 104.290719843046304, 32.923107000787411 ], [ 104.387561476880592, 32.965791734401023 ], [ 104.415776808552835, 33.034469713406509 ], [ 104.282038201701596, 33.282103175720977 ], [ 104.385804477694421, 33.320085354355626 ], [ 104.174654576347564, 33.490152493442793 ], [ 104.144527215858261, 33.639600734786086 ], [ 103.531282993914999, 33.706315009030448 ], [ 103.541411574284666, 33.817419339231094 ], [ 103.390102980967754, 33.757733059033399 ], [ 103.228562452694973, 33.783312893275365 ], [ 103.147378778307939, 33.930254828397608 ], [ 103.140557488936906, 34.147270006505551 ], [ 102.91245771695003, 34.299715481384339 ], [ 102.588498163059739, 34.16039582041077 ], [ 102.635161981240401, 34.088513902294721 ], [ 102.458583612044038, 34.069238593486261 ], [ 102.371973912266185, 33.975962633069059 ], [ 102.171210971908806, 33.941752835225145 ], [ 102.24738203295442, 33.797678941529909 ], [ 102.324845005192799, 33.751790268805848 ], [ 102.290686884192326, 33.725125229845446 ], [ 102.343138462070328, 33.725176906688887 ], [ 102.356005893557096, 33.609395859930999 ], [ 102.481838007218244, 33.540149441043866 ], [ 102.481838007218244, 33.465037747194231 ], [ 102.14563113766684, 33.303393867033321 ], [ 102.099380730636142, 33.222236030168631 ], [ 101.987501254978895, 33.213580227245643 ], [ 101.852780796196726, 33.122087104436275 ], [ 101.824720494155429, 33.248280951504682 ], [ 101.925076124563475, 33.42168122001226 ], [ 101.883993361404464, 33.546324775268147 ], [ 101.795368280022046, 33.605080878579656 ], [ 101.777539911137922, 33.530046699095863 ], [ 101.623130730598689, 33.507154039127556 ], [ 101.508925815873681, 33.704868069106055 ], [ 101.376892531365172, 33.639574897263685 ], [ 101.170496860941341, 33.654431871033978 ], [ 101.129465773726452, 33.850647284244758 ], [ 100.947978143076796, 33.929763901982483 ], [ 100.791708612362527, 34.154866441333184 ], [ 100.806488071767035, 34.278063055765415 ], [ 100.935265741220917, 34.386325182061455 ], [ 101.569852330420645, 34.208170680832211 ], [ 101.780382115042528, 34.067507432721811 ], [ 102.153796014174645, 34.285762844279816 ], [ 102.216066114959176, 34.364311021236631 ], [ 102.150282016701681, 34.495078232974038 ], [ 101.959234247362588, 34.558252672223034 ], [ 101.913914016318756, 34.661398831490885 ], [ 101.793352899316801, 34.631891587726557 ], [ 101.755060663219012, 34.70367015215578 ], [ 101.906937697316835, 34.755708319783139 ], [ 101.932414177871976, 34.878982449480418 ], [ 102.267122429756284, 35.055870877039297 ], [ 102.374454380065572, 35.173563950815662 ], [ 102.317713658358628, 35.274978950218383 ], [ 102.260249465340507, 35.290352687926202 ], [ 102.298128290288332, 35.420628974147803 ], [ 102.42644087084949, 35.435305080764863 ], [ 102.534961378664661, 35.535634874549771 ], [ 102.702186313847278, 35.524033514934729 ], [ 102.700325961873602, 35.839466458010634 ], [ 102.976019728927326, 35.833291123786296 ], [ 102.999532504721287, 35.990749212905826 ], [ 102.928425733860479, 36.067824612415905 ], [ 103.040356887260486, 36.216497708302597 ], [ 102.818561638908477, 36.326051743992764 ], [ 102.769727411290944, 36.497565823004322 ], [ 102.598523390641901, 36.672387193014515 ], [ 102.678621861209876, 36.7950412050875 ], [ 102.460133904755878, 36.955651557373471 ], [ 102.550619338111915, 37.163830064505873 ], [ 102.42664757732382, 37.278060818551921 ], [ 102.040107863387163, 37.464845283383113 ], [ 102.067237990340914, 37.548302720893844 ], [ 101.995872837061711, 37.61450023030136 ], [ 101.965590447840839, 37.734854640828985 ], [ 101.7656026547387, 37.524970812253173 ], [ 101.049780715207817, 37.963729560071101 ], [ 100.635749139111454, 38.105400499433472 ], [ 100.530122512044272, 38.27420156485033 ], [ 100.330238071729582, 38.320710354299365 ], [ 100.14079227104645, 38.485842394410952 ], [ 100.103688593353866, 38.485532335149117 ], [ 100.083069695609936, 38.394504299433834 ], [ 100.155520053607574, 38.302778631728472 ], [ 100.158465611198949, 38.207435615561167 ], [ 100.00064578687352, 38.314405828865915 ], [ 99.799882847415461, 38.365720526980738 ], [ 99.099253778439106, 38.889642035551503 ], [ 99.081890496649066, 38.968629462080003 ], [ 98.781908807445461, 39.067693183093922 ], [ 98.602229851926097, 38.947597154085372 ], [ 98.444565057231557, 38.957312324204395 ], [ 98.324313998592118, 39.023251451193516 ], [ 98.068619011658029, 38.80184377736839 ], [ 97.362563918190233, 39.150427151092117 ], [ 97.013282911577051, 39.192078355032038 ], [ 96.961606480054968, 39.112083238150888 ], [ 96.971218295587846, 38.567258612794717 ], [ 96.958660923362856, 38.387192084547053 ], [ 96.912255486701326, 38.350837713889348 ], [ 96.532433710247517, 38.45765290026111 ], [ 96.50835249187395, 38.544831040819872 ], [ 96.300561558369168, 38.632991034208828 ], [ 96.054788446229793, 38.678828030089505 ], [ 96.018614942725378, 38.745904039539766 ], [ 95.70282026624227, 38.883234158229811 ], [ 95.313696730819458, 39.181277981093956 ], [ 95.005963576258011, 39.151202298347357 ], [ 94.631051060358118, 39.295379543930778 ], [ 94.149891798867372, 39.324266669171436 ], [ 93.733844842965084, 39.308531196257661 ], [ 92.935960728105101, 39.152855942947383 ], [ 92.951463657921465, 39.44167552300695 ], [ 92.764498325936927, 39.86242503478752 ], [ 92.915341831260491, 40.093315334734882 ], [ 92.941541783126752, 40.472568671307101 ], [ 93.286326939436663, 40.46926138030841 ], [ 93.57747195766467, 40.587962145336689 ], [ 94.011037224987888, 41.104028835762165 ], [ 94.580924920648556, 41.585213934775254 ], [ 95.058260126303765, 41.788560695719525 ], [ 95.491980422358552, 41.856024277898086 ], [ 95.863947381566391, 41.855016588444755 ], [ 96.044401483441675, 42.0131464711327 ], [ 96.017839797268778, 42.138720201476076 ], [ 96.062849969050774, 42.559263006782317 ], [ 96.366339900965613, 42.722922619283452 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-53", "NAME_1": "Yunnan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.867921183000078, 22.378841858000058 ], [ 101.713150268000106, 22.491548157000082 ], [ 101.654549195000072, 22.446124573000034 ], [ 101.601219117000085, 22.276987610000091 ], [ 101.515746298000067, 22.245361634000105 ], [ 101.606800171000032, 21.967600810000121 ], [ 101.751080770000101, 21.816137187000081 ], [ 101.728549845000089, 21.717538554000086 ], [ 101.803842407000047, 21.625916239000091 ], [ 101.736197958000048, 21.570880839000026 ], [ 101.71511397300003, 21.321128642000062 ], [ 101.823737834000042, 21.234467265000134 ], [ 101.755990032000057, 21.143258362000054 ], [ 101.581788778000032, 21.175659485000054 ], [ 101.583959188000108, 21.2243903600001 ], [ 101.517606649000072, 21.242632141000044 ], [ 101.244341675000044, 21.192867737000128 ], [ 101.208994995000126, 21.245526021000032 ], [ 101.233127889000059, 21.371719869000017 ], [ 101.171426229000133, 21.403397522000134 ], [ 101.168842408000103, 21.637853496000034 ], [ 101.082801148000044, 21.766734518000064 ], [ 100.834909302000085, 21.657542217000085 ], [ 100.621744018000072, 21.469078268000075 ], [ 100.456689494000045, 21.455022278000044 ], [ 100.341967814000043, 21.530366517000019 ], [ 100.162495565000086, 21.436367086000089 ], [ 100.086066122000034, 21.550933737000022 ], [ 100.14280684400012, 21.654906718000078 ], [ 99.950260458000116, 21.721155904000071 ], [ 99.942405640000061, 22.045528869000108 ], [ 99.84783776900008, 22.055037333000072 ], [ 99.821017701000073, 22.017778626000066 ], [ 99.723659302000044, 22.070591940000028 ], [ 99.683868449000045, 22.039017639000022 ], [ 99.53896773300005, 22.106713766000027 ], [ 99.252887004000058, 22.102786357000056 ], [ 99.144469849000075, 22.153532613000053 ], [ 99.243068482000069, 22.393156230000059 ], [ 99.357790162000128, 22.495475566000053 ], [ 99.307974080000122, 22.745176087000104 ], [ 99.414427532000047, 22.856900533000058 ], [ 99.413394003000064, 22.930746155000023 ], [ 99.538037557000109, 22.92643117300004 ], [ 99.493079061000117, 23.057379252000132 ], [ 99.333812297000122, 23.129622904000044 ], [ 99.216610149000076, 23.057379252000132 ], [ 99.055069621000086, 23.109598287000026 ], [ 99.02644087800013, 23.160447897000026 ], [ 98.859009237000123, 23.179387309000063 ], [ 98.910685669000088, 23.297597148000094 ], [ 98.853428182000073, 23.324882304000099 ], [ 98.889601684000127, 23.406789449000073 ], [ 98.780874471000061, 23.532854106000016 ], [ 98.856012004000092, 23.610007020000083 ], [ 98.793173462000027, 23.758473409000104 ], [ 98.663672323000128, 23.796946513000066 ], [ 98.658814738000046, 23.961122539000073 ], [ 98.856218710000064, 24.083802388000024 ], [ 98.865727173000039, 24.145684917000025 ], [ 98.585227499000041, 24.075715027000015 ], [ 98.434952433000092, 24.130259501000026 ], [ 98.105050090000077, 24.101527405000027 ], [ 97.889972778000129, 24.022617493 ], [ 97.624665975000028, 23.846710918 ], [ 97.516455526000129, 23.942829081000113 ], [ 97.720060669000077, 24.147441915000101 ], [ 97.718407023000111, 24.277666524 ], [ 97.644509725000034, 24.302393698000103 ], [ 97.68957157400007, 24.346473694000068 ], [ 97.647300252000093, 24.432334086000097 ], [ 97.51325158700007, 24.438586935 ], [ 97.532785278000063, 24.723324077000072 ], [ 97.66394006400003, 24.829777527000104 ], [ 97.765225871000041, 24.834660950000043 ], [ 97.699596802000087, 25.065008647000113 ], [ 97.80098596300013, 25.237633769000112 ], [ 97.909919881000064, 25.207558085000059 ], [ 98.044898723000131, 25.311944479000104 ], [ 98.112078085000064, 25.396228739000023 ], [ 98.140086711000095, 25.611461080000097 ], [ 98.312065877000123, 25.557459208000111 ], [ 98.498101034000058, 25.830724183000072 ], [ 98.610032187000058, 25.800596822000088 ], [ 98.690234009000051, 25.865554097000128 ], [ 98.582436972000096, 25.982291159000042 ], [ 98.545539999000027, 26.105642803000066 ], [ 98.619333944000118, 26.145743714000062 ], [ 98.644448690000047, 26.097891337000064 ], [ 98.705530233000104, 26.174940898000088 ], [ 98.642174927000099, 26.25452260400003 ], [ 98.755553019000104, 26.625042623000084 ], [ 98.714521932000082, 26.862030741000083 ], [ 98.737776326000073, 27.048686015 ], [ 98.672560669000063, 27.17560333200008 ], [ 98.707700644000113, 27.337247213000083 ], [ 98.679278605000093, 27.577335918000031 ], [ 98.410251099000106, 27.68425445600009 ], [ 98.38327600100007, 27.555786845000071 ], [ 98.294702596000093, 27.536614889000063 ], [ 98.140086711000095, 27.878557841000074 ], [ 98.177293742000074, 27.91292266900011 ], [ 98.10711714700011, 27.973074036000057 ], [ 98.115002276000098, 28.14388835700008 ], [ 98.247677849553099, 28.220034898191955 ], [ 98.299767694023842, 28.354807033817565 ], [ 98.447562289867733, 28.231713772172839 ], [ 98.575823195384146, 28.317548326494034 ], [ 98.644294467915302, 28.44389720319333 ], [ 98.589207390808383, 28.670291652837477 ], [ 98.678659296289425, 28.749124049735087 ], [ 98.635302769107454, 28.941386216800424 ], [ 98.778704869234275, 29.003036199960661 ], [ 98.850690139238509, 28.820075791864269 ], [ 98.945619745155057, 28.842012437424046 ], [ 98.908412713775704, 28.936425279403124 ], [ 99.007734816308698, 29.043731391290635 ], [ 98.990164829842968, 29.201990465187805 ], [ 99.108813918027863, 29.223772081116635 ], [ 99.09661828010951, 28.835940456886533 ], [ 99.172375930005103, 28.592647813445808 ], [ 99.162557407997951, 28.43816111944011 ], [ 99.386729771361843, 28.13939382616411 ], [ 99.416443718902485, 28.254761460872714 ], [ 99.373448927825734, 28.518931383576444 ], [ 99.502898390848031, 28.579366969909699 ], [ 99.61524295539806, 28.805063788463031 ], [ 99.712808058744884, 28.845810654837805 ], [ 99.732341749971738, 28.745015773958755 ], [ 99.845616489609256, 28.603809923489166 ], [ 99.945093621773196, 28.55972992589534 ], [ 100.150249057847702, 28.327831936494647 ], [ 100.162031284616035, 28.236261298420175 ], [ 100.028241000921412, 28.169366157022523 ], [ 100.072062616096787, 28.044179999407447 ], [ 100.288070102952872, 27.864371853578177 ], [ 100.320626255297384, 27.733139552947989 ], [ 100.432040642961283, 27.845639146229587 ], [ 100.543455030625125, 27.817087917773165 ], [ 100.614665155172759, 27.893362332505603 ], [ 100.6609155622034, 27.875094713150474 ], [ 100.872117141293018, 27.561987210041707 ], [ 100.871186965306151, 27.485325222580911 ], [ 100.977950473935209, 27.373652452498675 ], [ 101.008801303936991, 27.188444118801044 ], [ 101.168016392242691, 27.19601471610622 ], [ 101.152513462426327, 27.027342840999268 ], [ 101.350330845192332, 26.863166816195587 ], [ 101.397666456941408, 26.735293484306851 ], [ 101.500399205059239, 26.774800116332301 ], [ 101.412445917245236, 26.569670517780139 ], [ 101.54416914339123, 26.494972235979901 ], [ 101.643749628342619, 26.368442491227995 ], [ 101.574089797406202, 26.298601793138232 ], [ 101.582358025802193, 26.219045924929446 ], [ 101.667934197704994, 26.232197577256386 ], [ 101.763742302765024, 26.176335353793547 ], [ 101.849525181142155, 26.034845282483786 ], [ 101.921562127989773, 26.098872382454488 ], [ 102.112558221384745, 26.084428818934839 ], [ 102.252084588832645, 26.228864447835974 ], [ 102.568137648633524, 26.378648586862766 ], [ 102.626480340795069, 26.345136420109668 ], [ 102.609943882204334, 26.260206204252881 ], [ 102.681102329908583, 26.221603908893258 ], [ 102.878196242262732, 26.365057684964199 ], [ 102.988473749264074, 26.365186876173368 ], [ 102.995811801673256, 26.485412096391144 ], [ 103.057926873726217, 26.557242336764432 ], [ 102.97529625941479, 26.831127427788545 ], [ 102.901347283750113, 26.924739284989982 ], [ 102.889461705093595, 27.291486925281333 ], [ 102.95483239130175, 27.420781357773421 ], [ 102.991522657844314, 27.386028958469637 ], [ 103.120765415291658, 27.412254746958979 ], [ 103.218123813962791, 27.566870632173902 ], [ 103.296206902926201, 27.587851264224469 ], [ 103.284424677057132, 27.640509548576802 ], [ 103.45170128818387, 27.759985459961001 ], [ 103.564976026922068, 27.983124295449841 ], [ 103.514229771386795, 27.971445421469014 ], [ 103.489218377925738, 28.037746282764715 ], [ 103.441210971708927, 28.042397161799556 ], [ 103.455111931970066, 28.133941962351685 ], [ 103.57179731719242, 28.243185940578655 ], [ 103.643782587196597, 28.270496934685752 ], [ 103.722279087309971, 28.21553904878806 ], [ 103.880305617210411, 28.325739041423617 ], [ 103.795246210144455, 28.531178697438918 ], [ 103.851056756763853, 28.668121243400662 ], [ 103.973064812790824, 28.613111681558848 ], [ 104.248345167795208, 28.661997586019766 ], [ 104.442958612350026, 28.624532172221961 ], [ 104.249895461406368, 28.520094101761345 ], [ 104.268498976646413, 28.333800564244598 ], [ 104.417327102163995, 28.239310207899734 ], [ 104.443061965137531, 28.110506700024189 ], [ 104.328443638363183, 28.023070177047032 ], [ 104.492102899229394, 27.885895087088556 ], [ 104.604757522141881, 27.845845851804597 ], [ 104.887996047179797, 27.895765285939149 ], [ 105.017393833358653, 28.085236925044057 ], [ 105.282390578362481, 28.000745957859635 ], [ 105.228130323555547, 27.855793565020974 ], [ 105.296963332191979, 27.721744899807277 ], [ 105.192886997836638, 27.395020657277485 ], [ 105.068760207417597, 27.411195379762944 ], [ 104.856318393978654, 27.306808987045088 ], [ 104.515563999079234, 27.318281155450961 ], [ 104.360999789808432, 27.447007148061402 ], [ 104.174344517085729, 27.271513984482795 ], [ 103.93983686687784, 27.399025580266311 ], [ 103.596291944917255, 27.069665839406923 ], [ 103.637116326557191, 27.018428657456582 ], [ 103.706466099131148, 27.050002956970843 ], [ 103.778296340403756, 26.955874334932616 ], [ 103.77643598843008, 26.87479401333303 ], [ 103.71514773957648, 26.815960394756416 ], [ 103.73349287329745, 26.740538642544323 ], [ 103.774575637355724, 26.736843777018692 ], [ 103.762483352224876, 26.615740058556867 ], [ 103.829249302413359, 26.547113756394708 ], [ 104.027066685179364, 26.515384426350181 ], [ 104.123753290282082, 26.643903713385669 ], [ 104.330614047799997, 26.631268825895575 ], [ 104.417172071633729, 26.718162747412862 ], [ 104.482129347591297, 26.593054104163571 ], [ 104.567550489863152, 26.578067939184052 ], [ 104.676949496821805, 26.381619981077222 ], [ 104.545174594731691, 26.27041229898839 ], [ 104.498975865443811, 26.030788683550895 ], [ 104.390041944679979, 25.943610541193493 ], [ 104.42182295066857, 25.875268459871506 ], [ 104.388491651968138, 25.771528022300345 ], [ 104.298626337135715, 25.754500637294541 ], [ 104.308703240661998, 25.652388006801061 ], [ 104.429884475288247, 25.57138519956726 ], [ 104.433450148705333, 25.500666002334128 ], [ 104.546104770718557, 25.501286119059102 ], [ 104.565845168419742, 25.381190090050609 ], [ 104.789087355796767, 25.250758775097381 ], [ 104.719737583222866, 25.210942083810096 ], [ 104.704854771030796, 25.008732205327021 ], [ 104.552202589677734, 24.833549099211552 ], [ 104.483059523578106, 24.665781562569066 ], [ 104.569255813105258, 24.44341787433541 ], [ 104.69803348165982, 24.328308621145936 ], [ 104.730589634004389, 24.352932440979373 ], [ 104.694726189761809, 24.439335435182159 ], [ 104.735447218614183, 24.465664578257645 ], [ 105.093409864773378, 24.426881414845411 ], [ 105.175523716046598, 24.315622056812458 ], [ 105.175523716046598, 24.145942491352855 ], [ 105.28290734319927, 24.074060574136183 ], [ 105.296704949773584, 24.129354355918792 ], [ 105.472198114251512, 24.042512112144266 ], [ 105.52728519135843, 24.12390249300563 ], [ 105.601595900430425, 24.141524156314745 ], [ 105.66737999868792, 24.0609089218093 ], [ 105.872225376399967, 24.024709580782485 ], [ 105.899717237660354, 24.077703761919054 ], [ 106.021105177861614, 24.110905870309637 ], [ 106.015162387634064, 24.059436143463245 ], [ 106.151846552076677, 23.980603746565635 ], [ 106.199647250919838, 23.853686428186109 ], [ 106.133088007205743, 23.807487697998852 ], [ 106.124096306599199, 23.530579535017523 ], [ 106.004878777633451, 23.469963079732338 ], [ 105.843389927103431, 23.516885281230714 ], [ 105.693114861661513, 23.396143297075469 ], [ 105.692391392148977, 23.347360745402057 ], [ 105.631723260919728, 23.351701565175063 ], [ 105.521325358000126, 23.163147762000037 ], [ 105.293655233000038, 23.366275127000065 ], [ 105.200896037000064, 23.254008077000051 ], [ 104.935072469000033, 23.154272563000049 ], [ 104.880863892000093, 23.171713359000094 ], [ 104.797923218000051, 23.08556874599999 ], [ 104.823606405000135, 22.924131572000121 ], [ 104.715344279000135, 22.827083232000049 ], [ 104.553545370000052, 22.836049093 ], [ 104.340173381000113, 22.686368306000119 ], [ 104.23682051600008, 22.742075501000059 ], [ 104.241161337000108, 22.824396057000016 ], [ 104.086855510000078, 22.791555685 ], [ 103.959524780000038, 22.507102763000105 ], [ 103.646934042000055, 22.799048768000134 ], [ 103.590038290000052, 22.76801707 ], [ 103.503635295000095, 22.581413473000012 ], [ 103.321579224000118, 22.790392965000095 ], [ 103.244891398000107, 22.668694967000121 ], [ 103.141745240000091, 22.60704498300008 ], [ 103.142003621000129, 22.537798564000056 ], [ 103.00893680900009, 22.430311585000041 ], [ 102.902586711000083, 22.477233785000081 ], [ 102.831841675000078, 22.599706930000067 ], [ 102.586688680000066, 22.716082256000092 ], [ 102.535787394000124, 22.695825094 ], [ 102.467781210000055, 22.768585510000051 ], [ 102.355850057000055, 22.669935201000058 ], [ 102.384323771000084, 22.628852437000077 ], [ 102.218029012000102, 22.410674540000016 ], [ 102.107345434000081, 22.397548726000039 ], [ 101.994993530000102, 22.447416484000101 ], [ 101.891640666000114, 22.429691467000069 ], [ 101.867921183000078, 22.378841858000058 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-23", "NAME_1": "Heilongjiang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.27731205300006, 53.569444479000069 ], [ 123.481537313000103, 53.5180781050001 ], [ 123.514403525000034, 53.562416484000053 ], [ 123.541895386000135, 53.514099020000018 ], [ 123.614294068000106, 53.563346660000022 ], [ 123.876551962000065, 53.488674215000017 ], [ 124.121808309000016, 53.35268768400006 ], [ 124.253066447000037, 53.375502828000052 ], [ 124.408199097000079, 53.235692241000081 ], [ 124.65159509300014, 53.20876882000006 ], [ 124.870134725000128, 53.107999776000085 ], [ 124.919175660000064, 53.193937683000044 ], [ 125.127431681000132, 53.206546733000053 ], [ 125.521309449000057, 53.042422384000062 ], [ 125.621355022000103, 53.062136943000027 ], [ 125.733544556000084, 52.981650900000048 ], [ 125.646469768000145, 52.884886780000059 ], [ 125.837362508000126, 52.906720073000102 ], [ 125.976940552000144, 52.764997458 ], [ 126.088044881000144, 52.775410258000122 ], [ 126.035128215000157, 52.727118632999989 ], [ 126.068614543000137, 52.679886373000059 ], [ 125.982779989000051, 52.653040467000054 ], [ 125.990841512000088, 52.586429545000058 ], [ 126.212326701000109, 52.533047791000072 ], [ 126.200337769000043, 52.467082825000048 ], [ 126.275992066000072, 52.463284608000023 ], [ 126.350716187000103, 52.376907451000037 ], [ 126.315731242000084, 52.316213481000048 ], [ 126.43928959200008, 52.275285747000041 ], [ 126.316713095000068, 52.199760641000111 ], [ 126.555974976000073, 52.130643412000026 ], [ 126.43928959200008, 51.997860820000042 ], [ 126.64790734900015, 51.741261496000035 ], [ 126.725577027000156, 51.708731182000079 ], [ 126.676897827000118, 51.576594543000098 ], [ 126.807432496000104, 51.534219869000069 ], [ 126.800301148000074, 51.41895558700007 ], [ 126.909441773000026, 51.39110199 ], [ 126.808982789000083, 51.289066875000074 ], [ 126.869909302, 51.251730652000035 ], [ 126.899364868000077, 51.316507060000035 ], [ 126.972176961000059, 51.324000143000049 ], [ 126.905152629000156, 51.208115743000079 ], [ 126.931765992000066, 51.063783468000068 ], [ 127.28735152199999, 50.751011862000084 ], [ 127.288953492000019, 50.675150859000055 ], [ 127.367088258000138, 50.577792460000111 ], [ 127.288953492000019, 50.466016337000028 ], [ 127.35850997, 50.415115051 ], [ 127.330656372000078, 50.32819529199999 ], [ 127.590640503000088, 50.208719381000023 ], [ 127.486667522000062, 50.025629782000081 ], [ 127.538654012000052, 49.789933574000045 ], [ 127.64428064000009, 49.767144267000063 ], [ 127.703605185000015, 49.660639141 ], [ 127.854655395, 49.584881491000019 ], [ 127.967930135000074, 49.603226624000015 ], [ 128.198303670000087, 49.538992819000057 ], [ 128.671866496000064, 49.611443177000055 ], [ 128.801677694000148, 49.565141093000065 ], [ 128.76012984200014, 49.470883281000042 ], [ 128.998151490000112, 49.441272685000015 ], [ 129.115353638000158, 49.348771871000068 ], [ 129.21787968000001, 49.390784811000074 ], [ 129.340972941000075, 49.341175436000114 ], [ 129.378696737000041, 49.425046286000097 ], [ 129.480602662000024, 49.421273906000081 ], [ 129.551812785000038, 49.29048085600003 ], [ 129.711182902000076, 49.274151103000108 ], [ 129.741775351, 49.195706278000088 ], [ 129.920679159000088, 49.081863099000046 ], [ 129.926466920000053, 49.025690816000079 ], [ 130.201798951000058, 48.882598775000119 ], [ 130.674328248000052, 48.870816549000025 ], [ 130.529737590000082, 48.616258443000035 ], [ 130.620171346000063, 48.560499573000087 ], [ 130.626372518000039, 48.482261455000028 ], [ 130.758974243000068, 48.485723775000068 ], [ 130.743264608, 48.411593934000038 ], [ 130.823983195000096, 48.294159241000031 ], [ 130.674741659000063, 48.135926006000048 ], [ 130.674741659000063, 48.063940735000088 ], [ 130.906975546000069, 47.884261780000045 ], [ 130.965679973000135, 47.703936870000049 ], [ 131.103862753000044, 47.676548360000126 ], [ 131.440896444000032, 47.741169739000085 ], [ 131.603263794000156, 47.661536357000031 ], [ 132.332418254000061, 47.736518860000032 ], [ 132.524654582000096, 47.707528381000131 ], [ 132.668005005000055, 47.881316224000059 ], [ 132.674619589000031, 47.950614319000081 ], [ 132.805877727000109, 47.936196594000066 ], [ 133.091958456000043, 48.106780497000031 ], [ 133.524386841000023, 48.095437521000051 ], [ 133.737913860000049, 48.251086935000032 ], [ 134.386349731554787, 48.381337382714037 ], [ 134.718732544000147, 48.263411764000082 ], [ 134.682972453000048, 48.135512594000019 ], [ 134.559362427000053, 48.009525452000091 ], [ 134.772579387000064, 47.710732321000094 ], [ 134.556881959000066, 47.471186219000018 ], [ 134.31286584500009, 47.420129904000063 ], [ 134.183571411000059, 47.327499899000074 ], [ 134.154115845000149, 47.257891744000077 ], [ 134.227289673000087, 47.117745260000092 ], [ 134.124246867000011, 47.070513001000066 ], [ 134.069159790000072, 46.981241964 ], [ 134.014796183000101, 46.665033874000088 ], [ 133.84581425000016, 46.470652975000078 ], [ 133.933870891000083, 46.390761211000054 ], [ 133.863384237000105, 46.339291484000071 ], [ 133.91599084500001, 46.312988180000033 ], [ 133.902451620000079, 46.258986308000047 ], [ 133.687374309, 46.141835836000027 ], [ 133.720033814000089, 46.063752747000095 ], [ 133.658125448000078, 45.93450999 ], [ 133.514361613, 45.879267884000072 ], [ 133.477257935000011, 45.820098369 ], [ 133.511364381000021, 45.778550517000028 ], [ 133.443048137000062, 45.709665833000102 ], [ 133.487799927000083, 45.686669820000063 ], [ 133.477257935000011, 45.627707011000027 ], [ 133.179808391000108, 45.493813375000045 ], [ 133.101880331000132, 45.287210999000123 ], [ 133.115419556, 45.123034973000117 ], [ 132.921219523000161, 45.027898662000055 ], [ 131.968822876000161, 45.233984274000065 ], [ 131.853067668000051, 45.337595520000022 ], [ 131.723153118000027, 45.215329082 ], [ 131.627758424000035, 45.19848256500002 ], [ 131.609051555000121, 45.089703674000063 ], [ 131.433765097000105, 44.96128774000006 ], [ 131.051566203000164, 44.909042867000082 ], [ 130.933433879000063, 44.841708476000079 ], [ 131.065828899000053, 44.682028301000074 ], [ 131.264473104000103, 44.054211325000026 ], [ 131.206698853000091, 43.974784648000124 ], [ 131.160706828, 43.532770284000023 ], [ 131.252848462686302, 43.469168591257471 ], [ 131.123707309744532, 43.432698065962938 ], [ 131.00299116401095, 43.509024155740178 ], [ 130.849977248351252, 43.438279120085326 ], [ 130.619397006766349, 43.61604604768695 ], [ 130.400443964117585, 43.674957179730029 ], [ 130.328768751576604, 44.048319403817402 ], [ 130.272699823438074, 43.954475003518553 ], [ 130.103614537181102, 43.845437729967216 ], [ 130.033179558989445, 43.855617988079644 ], [ 130.000106642707351, 43.983568834334221 ], [ 129.912928502148588, 44.021602688013616 ], [ 129.805544874995917, 43.969357814811303 ], [ 129.772006870720475, 43.87907908792954 ], [ 129.284336379120532, 43.800840969335241 ], [ 129.217415399301217, 43.750404771263163 ], [ 129.233383417110986, 43.612118639063908 ], [ 128.992106154375506, 43.536671048430094 ], [ 128.866119012882109, 43.571552638943103 ], [ 128.74741824785383, 43.80218455737139 ], [ 128.445937941882448, 44.153946030884583 ], [ 128.438754918204836, 44.400804347742451 ], [ 128.370025263255229, 44.498059394525399 ], [ 128.206934442270608, 44.44049184782051 ], [ 128.136189405716436, 44.341686510124305 ], [ 128.046169061253181, 44.357912910352525 ], [ 128.039812859875497, 44.113276678875593 ], [ 127.778691847550704, 44.069196682181087 ], [ 127.609813266868741, 44.220091865247355 ], [ 127.616066114559544, 44.277401027735209 ], [ 127.492817824183135, 44.410907091489037 ], [ 127.513023308978518, 44.518264879320725 ], [ 127.582838168646504, 44.538367011328489 ], [ 127.555553012961127, 44.577176012263124 ], [ 127.375202264772611, 44.648825385483121 ], [ 127.254951207032491, 44.610972398057697 ], [ 127.172423943709987, 44.65825633386271 ], [ 127.044989862292255, 44.598234157780155 ], [ 126.97827558804795, 44.826101385770301 ], [ 127.076615838650014, 44.934001776860498 ], [ 126.952695753805983, 45.134196275537647 ], [ 126.795341018373279, 45.145720119887585 ], [ 126.559334751397614, 45.246747544763366 ], [ 126.150470819172938, 45.141172594539569 ], [ 125.910382114842719, 45.206646633535286 ], [ 125.70775882431019, 45.349428616037756 ], [ 125.69933556538399, 45.512002672185531 ], [ 125.451392042908424, 45.484872545231781 ], [ 125.37480756981347, 45.398469550129619 ], [ 125.082939081173663, 45.386067205736936 ], [ 125.041649612439642, 45.492934068052762 ], [ 124.915610793203541, 45.532828273705832 ], [ 124.861350539295927, 45.44435822195436 ], [ 124.589532504921067, 45.457380683072017 ], [ 124.549534947379925, 45.414489243883452 ], [ 124.39559085483404, 45.451489569687851 ], [ 124.352337681338895, 45.541871650256439 ], [ 124.274823033156395, 45.550346585126761 ], [ 124.223560011884956, 45.635509344980278 ], [ 124.149197625969578, 45.622228502343489 ], [ 124.165010614148514, 45.662846178408358 ], [ 124.013546991200656, 45.768653673528206 ], [ 124.061967807668111, 45.871670640687512 ], [ 123.975151402315305, 45.939831854856209 ], [ 124.038920118968235, 46.034451402410241 ], [ 123.954274123052301, 46.292420152468026 ], [ 123.356119418876006, 46.235162665024973 ], [ 123.23385298132996, 46.265858466295185 ], [ 123.161661004851453, 46.220073147257892 ], [ 122.988906692389946, 46.406573391248969 ], [ 123.01009402911609, 46.602685452571563 ], [ 123.39725385977772, 46.597827867062392 ], [ 123.60871382038647, 46.774638780255486 ], [ 123.591815626589892, 46.875640366709547 ], [ 123.504275750825173, 46.814326280333546 ], [ 123.460092401343218, 46.884657904838434 ], [ 123.379993930775186, 46.898067939583711 ], [ 123.194113804408516, 46.764174303101584 ], [ 123.124402296628659, 46.775336412245622 ], [ 122.787678664039049, 47.040720729977693 ], [ 122.574048293094165, 47.131128648068625 ], [ 122.405221389255644, 47.33168488195173 ], [ 122.565366652648891, 47.5311559111164 ], [ 123.206826207163658, 47.81382599537335 ], [ 123.286562941626357, 47.941311754533842 ], [ 123.577552932022172, 48.054328110853589 ], [ 124.234050328359899, 48.530836494208813 ], [ 124.303761835240493, 48.487583319814348 ], [ 124.317197706608795, 48.350950833114439 ], [ 124.421170689076007, 48.178299872541061 ], [ 124.482355585142045, 48.111585598296699 ], [ 124.520492791608945, 48.128690496768968 ], [ 124.56224734923569, 48.236177476709145 ], [ 124.531603224808919, 48.559310208299451 ], [ 124.607102492286117, 48.638736884399691 ], [ 124.822283155942841, 49.115710353949623 ], [ 124.87354617721428, 49.178445542727616 ], [ 125.135649042369323, 49.138913072280445 ], [ 125.225772739620197, 49.225574448901682 ], [ 125.267372267615997, 49.43848135033403 ], [ 125.235694615314173, 49.554391588301144 ], [ 125.125210402737821, 49.656581733160408 ], [ 125.219571567873459, 49.668131415032747 ], [ 125.223292270921547, 49.786987209691972 ], [ 125.177920363034332, 49.818974921255574 ], [ 125.244996373383856, 49.877033393476324 ], [ 125.186602004378983, 49.951679999332498 ], [ 125.295225864981603, 50.014466864953818 ], [ 125.243601109403585, 50.051053778708877 ], [ 125.329435662825517, 50.062267563796979 ], [ 125.264426710923885, 50.105727443766511 ], [ 125.43418379074933, 50.200657050582379 ], [ 125.574743686971487, 50.436353258296208 ], [ 125.793334996213048, 50.534383450535813 ], [ 125.808579542711641, 50.695975653853338 ], [ 125.754009231340888, 50.754344184436547 ], [ 125.951671583576626, 50.892604479113402 ], [ 125.990325555779691, 50.875241197323362 ], [ 126.05626468276887, 50.980273546087233 ], [ 125.984382765552141, 51.104219469352984 ], [ 125.70295291564446, 51.266741847758055 ], [ 125.486635370425915, 51.507398993768504 ], [ 125.127535841805638, 51.615738634430386 ], [ 124.828070917438822, 51.367588406379809 ], [ 124.464992304251382, 51.356400457914788 ], [ 124.369855991860504, 51.280901191336909 ], [ 124.162065056557026, 51.328365994295154 ], [ 123.848595819141678, 51.311596991707802 ], [ 123.774130080438795, 51.222093411181959 ], [ 123.621942987079137, 51.197133694564343 ], [ 123.463916457178698, 51.271134345273765 ], [ 123.088125442135379, 51.31247549085117 ], [ 122.884365269141767, 51.448126126519469 ], [ 122.709027134294729, 51.711107489918675 ], [ 122.761013625078704, 51.826139227843043 ], [ 122.63254601398728, 52.116095689464487 ], [ 122.762873977052323, 52.180148626957532 ], [ 122.7520219262708, 52.241152655870337 ], [ 122.501907994358362, 52.285956122077323 ], [ 122.34641360910075, 52.449615383842854 ], [ 122.207662388008771, 52.490181383064339 ], [ 122.017906528963067, 52.283113919072093 ], [ 121.831251255341158, 52.2693679884419 ], [ 121.702990349824745, 52.383831284686039 ], [ 121.166899041757347, 52.581286933145407 ], [ 121.502744175203475, 52.774685980873301 ], [ 121.79910851414661, 53.018030301157467 ], [ 121.626199172054044, 53.22969696734117 ], [ 121.413274785, 53.317334824000071 ], [ 122.316750529000046, 53.496012269000104 ], [ 122.401603231000081, 53.450950419000051 ], [ 122.859663127000147, 53.473946432 ], [ 123.27731205300006, 53.569444479000069 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-22", "NAME_1": "Jilin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.252848462686302, 43.469168591257471 ], [ 131.280906210000069, 43.380221456000086 ], [ 131.16907841, 43.201705221000068 ], [ 131.183961223000097, 43.120805766 ], [ 131.078334595, 43.031818950000016 ], [ 131.103035929000043, 42.910431010000039 ], [ 130.992448365000087, 42.848729350000056 ], [ 130.769516236000129, 42.865808411 ], [ 130.407161092000081, 42.735377096000079 ], [ 130.403750448000153, 42.677551168000051 ], [ 130.503899374000071, 42.677809551000038 ], [ 130.571905559000015, 42.621818136000016 ], [ 130.584514608000063, 42.568901469000039 ], [ 130.530771119000065, 42.530480042000093 ], [ 130.501418905000094, 42.610785217000014 ], [ 130.452533, 42.549341940000019 ], [ 130.262673787000097, 42.708608704000099 ], [ 130.239005982000094, 42.902240296000016 ], [ 130.098756145000038, 42.921515605000039 ], [ 130.121493774000157, 42.981847840000043 ], [ 129.995713338000087, 42.961900736000118 ], [ 129.909206991000076, 43.00843536400005 ], [ 129.761309042000164, 42.746048279000078 ], [ 129.787560669000129, 42.676853536000081 ], [ 129.703328085000123, 42.442371724000068 ], [ 129.591706991000024, 42.447952779000062 ], [ 129.535172974000034, 42.369559631000087 ], [ 129.434093872000062, 42.441105653000122 ], [ 129.340146118000064, 42.445472311000103 ], [ 129.193901815, 42.318244934000049 ], [ 129.228008260000081, 42.297729391000061 ], [ 129.180776001000027, 42.24310740200012 ], [ 129.211161743000105, 42.219956360000126 ], [ 128.963838338000073, 42.088517355000121 ], [ 128.940067180000028, 42.03536814400006 ], [ 128.034592733000125, 41.993742778000055 ], [ 128.047821900000031, 41.863983256000026 ], [ 128.303000122000071, 41.58340606700007 ], [ 128.146110474000011, 41.376338603000093 ], [ 128.015162395000061, 41.413287252000046 ], [ 128.001416463000112, 41.470854798000076 ], [ 127.638337850000141, 41.429875387000052 ], [ 127.542891479000104, 41.491318665000065 ], [ 127.134647665000102, 41.522014466000101 ], [ 127.104675334000035, 41.537414043000084 ], [ 127.179709513000034, 41.58516306600005 ], [ 127.058993368000131, 41.643299052000046 ], [ 127.042663616000027, 41.732647604000121 ], [ 126.92980228700003, 41.801041362000021 ], [ 126.78862227400009, 41.695905661000054 ], [ 126.679481649000138, 41.735980733000034 ], [ 126.72795414300009, 41.701254171000087 ], [ 126.567033732000084, 41.614153544000132 ], [ 126.50130131100002, 41.434371236000075 ], [ 126.52212691200009, 41.351947327000076 ], [ 126.440891561000115, 41.348381653000033 ], [ 126.274751832000163, 41.152579651000011 ], [ 126.123753297, 41.07553009100009 ], [ 125.980557902000101, 40.913627828000088 ], [ 126.007843059000038, 40.899313457000105 ], [ 125.7040896919857, 40.859194624832071 ], [ 125.576449009314274, 40.912619330317796 ], [ 125.691739129657094, 41.004060777183099 ], [ 125.768892042633638, 41.14420726225535 ], [ 125.746361118770551, 41.236811428204817 ], [ 125.650759719285588, 41.286265774345964 ], [ 125.563426548196617, 41.410754299071641 ], [ 125.449531691834068, 41.679936835116848 ], [ 125.306284621338136, 41.680376084688533 ], [ 125.291866897139585, 41.95320180941593 ], [ 125.480537550567419, 42.151432604231275 ], [ 125.318583612043994, 42.169364325902905 ], [ 125.285200637399498, 42.298762112081761 ], [ 125.175801630440787, 42.338346259372372 ], [ 125.208719517091936, 42.405835679972654 ], [ 125.101956007563672, 42.493866482152384 ], [ 125.092654250393252, 42.582103989907182 ], [ 124.949872267890782, 42.661763210903416 ], [ 124.967907343249294, 42.780929063025837 ], [ 124.86176395134521, 42.854697171537225 ], [ 124.885638462345128, 43.102253119485852 ], [ 124.765697462967523, 43.105586248906263 ], [ 124.480495233168426, 42.851260688429988 ], [ 124.385668980039327, 42.884772854283767 ], [ 124.436880323568062, 42.949161689460368 ], [ 124.370114374278955, 43.002336737750227 ], [ 124.418173456439831, 43.089256496789858 ], [ 124.303451775978601, 43.148839423300728 ], [ 124.268673537353834, 43.234415595203529 ], [ 124.016027459899306, 43.305186469280102 ], [ 123.782036573628943, 43.466184394294316 ], [ 123.706640659838513, 43.420709132720276 ], [ 123.696253697050452, 43.353478095437708 ], [ 123.36821170490623, 43.45972484012924 ], [ 123.355344273419405, 43.53393219731305 ], [ 123.41864790297825, 43.618268133967206 ], [ 123.49419884729889, 43.589458523092333 ], [ 123.526496617225007, 43.686170965717452 ], [ 123.322271356238048, 44.041859850551646 ], [ 123.359064975568117, 44.151336370976708 ], [ 123.253231642925925, 44.207896227329002 ], [ 123.121198358417473, 44.39615346870761 ], [ 123.098822463285956, 44.531494046013393 ], [ 122.726287063297264, 44.338198351073004 ], [ 122.277942335670218, 44.218799954054589 ], [ 122.278149042144491, 44.43857981990277 ], [ 122.041781040862247, 44.706677151229542 ], [ 122.005814243832219, 45.089909573268187 ], [ 122.036975132196517, 45.145513414312575 ], [ 122.218101027640273, 45.22390656253782 ], [ 122.208902623257359, 45.356818346189698 ], [ 122.128390740640157, 45.456398831141144 ], [ 121.980492792008704, 45.528875027560446 ], [ 121.984988641412656, 45.636697903385482 ], [ 121.939358352006252, 45.68677236625166 ], [ 121.759110955705978, 45.674860948274102 ], [ 121.649505243172371, 45.740955104894169 ], [ 121.81058068165305, 45.897844754132052 ], [ 121.795387811098522, 46.015072739915013 ], [ 122.010775181229633, 45.974868475899427 ], [ 122.239805129203319, 45.813482978156912 ], [ 122.414368116795117, 45.947273260952215 ], [ 122.508522577255121, 45.812656154957551 ], [ 122.69631473243885, 45.710750230039082 ], [ 122.772020704591796, 45.78144358974987 ], [ 122.801217889094232, 46.094189358552057 ], [ 123.085955030899868, 46.113412991416396 ], [ 123.226514927122139, 46.26477326157675 ], [ 123.356119418876006, 46.235162665024973 ], [ 123.954274123052301, 46.292420152468026 ], [ 124.038920118968235, 46.034451402410241 ], [ 123.975151402315305, 45.939831854856209 ], [ 124.061967807668111, 45.871670640687512 ], [ 124.013546991200656, 45.768653673528206 ], [ 124.165010614148514, 45.662846178408358 ], [ 124.149197625969578, 45.622228502343489 ], [ 124.223560011884956, 45.635509344980278 ], [ 124.274823033156395, 45.550346585126761 ], [ 124.352337681338895, 45.541871650256439 ], [ 124.376677281231537, 45.457380683072017 ], [ 124.549534947379925, 45.414489243883452 ], [ 124.589532504921067, 45.457380683072017 ], [ 124.861350539295927, 45.44435822195436 ], [ 124.915610793203541, 45.532828273705832 ], [ 125.041649612439642, 45.492934068052762 ], [ 125.082939081173663, 45.386067205736936 ], [ 125.37480756981347, 45.398469550129619 ], [ 125.451392042908424, 45.484872545231781 ], [ 125.69933556538399, 45.512002672185531 ], [ 125.70775882431019, 45.349428616037756 ], [ 125.910382114842719, 45.206646633535286 ], [ 126.150470819172938, 45.141172594539569 ], [ 126.559334751397614, 45.246747544763366 ], [ 126.795341018373279, 45.145720119887585 ], [ 126.952695753805983, 45.134196275537647 ], [ 127.076615838650014, 44.934001776860498 ], [ 126.97827558804795, 44.826101385770301 ], [ 127.044989862292255, 44.598234157780155 ], [ 127.172423943709987, 44.65825633386271 ], [ 127.254951207032491, 44.610972398057697 ], [ 127.375202264772611, 44.648825385483121 ], [ 127.555553012961127, 44.577176012263124 ], [ 127.582838168646504, 44.538367011328489 ], [ 127.513023308978518, 44.518264879320725 ], [ 127.492817824183135, 44.410907091489037 ], [ 127.616066114559544, 44.277401027735209 ], [ 127.609813266868741, 44.220091865247355 ], [ 127.778691847550704, 44.069196682181087 ], [ 128.039812859875497, 44.113276678875593 ], [ 128.046169061253181, 44.357912910352525 ], [ 128.136189405716436, 44.341686510124305 ], [ 128.206934442270608, 44.44049184782051 ], [ 128.370025263255229, 44.498059394525399 ], [ 128.438754918204836, 44.400804347742451 ], [ 128.445937941882448, 44.153946030884583 ], [ 128.74741824785383, 43.80218455737139 ], [ 128.882862177047741, 43.556153062813564 ], [ 129.002183058801052, 43.53682607716172 ], [ 129.223254835841999, 43.605555732111327 ], [ 129.249248082133249, 43.786164862718238 ], [ 129.478588087570188, 43.860475571790175 ], [ 129.772006870720475, 43.87907908792954 ], [ 129.805544874995917, 43.969357814811303 ], [ 129.912928502148588, 44.021602688013616 ], [ 130.000106642707351, 43.983568834334221 ], [ 130.033179558989445, 43.855617988079644 ], [ 130.103614537181102, 43.845437729967216 ], [ 130.272699823438074, 43.954475003518553 ], [ 130.328768751576604, 44.048319403817402 ], [ 130.400443964117585, 43.674957179730029 ], [ 130.619397006766349, 43.61604604768695 ], [ 130.849977248351252, 43.438279120085326 ], [ 131.00299116401095, 43.509024155740178 ], [ 131.123707309744532, 43.432698065962938 ], [ 131.252848462686302, 43.469168591257471 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-21", "NAME_1": "Liaoning" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.7040896919857, 40.859194624832071 ], [ 125.644816121000076, 40.810585023 ], [ 125.682643270000085, 40.768882141000049 ], [ 125.571745647000057, 40.784901836000117 ], [ 125.413254029000086, 40.631784566000093 ], [ 125.293313029000103, 40.648579407000071 ], [ 125.025112345000025, 40.534374492000055 ], [ 125.041287069000134, 40.461097310000028 ], [ 124.895507854000016, 40.483628235000069 ], [ 124.71246993, 40.310305481000071 ], [ 124.358246290000011, 40.089056708000044 ], [ 124.361338738000086, 40.01117584800005 ], [ 124.29420006600003, 39.933783270000049 ], [ 124.118174675000091, 39.833156643000052 ], [ 123.773041212000066, 39.818345445000034 ], [ 123.643077019000089, 39.878566799000055 ], [ 123.656748894000089, 39.919501044000071 ], [ 123.591400587000066, 39.784328518000052 ], [ 123.513194207000083, 39.797796942000048 ], [ 123.427744988000086, 39.726629950000074 ], [ 123.417084181000064, 39.82453034100007 ], [ 123.314056837000066, 39.77610911700009 ], [ 123.252045118000069, 39.817084052000041 ], [ 123.265391472000033, 39.754095770000049 ], [ 123.204193556000064, 39.745062567000048 ], [ 123.269134962000066, 39.707586981000077 ], [ 123.223155144000089, 39.679754950000074 ], [ 123.009125196000014, 39.680487372000073 ], [ 122.96412194100003, 39.61163971600007 ], [ 122.848643425000091, 39.617865302000041 ], [ 122.290049675000091, 39.350978908000059 ], [ 122.115000847000033, 39.200751044000071 ], [ 122.104502800000091, 39.159125067000048 ], [ 122.162689649000072, 39.146144924000055 ], [ 122.042328321000014, 39.059719143000052 ], [ 121.888438347000033, 39.042466539000088 ], [ 121.923187696000014, 39.008978583000044 ], [ 121.826914910000028, 39.036281643000052 ], [ 121.895274285000028, 38.981024481000077 ], [ 121.871348504000025, 38.95062897300005 ], [ 121.724701368000069, 39.030178127000056 ], [ 121.738780144000089, 39.001532294000071 ], [ 121.635752800000091, 38.995306708000044 ], [ 121.652598504000025, 38.963446356000077 ], [ 121.587412957000083, 38.94009023600006 ], [ 121.693614129000025, 38.90961334800005 ], [ 121.696299675000091, 38.862941799000055 ], [ 121.236664259, 38.798488674000055 ], [ 121.179535352000016, 38.720933335000041 ], [ 121.11451256600003, 38.768133856000077 ], [ 121.152354363000086, 38.886297919000071 ], [ 121.086192254000025, 38.90570709800005 ], [ 121.117930535000028, 38.943426825000074 ], [ 121.334320509, 38.968573309000078 ], [ 121.374847852000016, 39.044175523000035 ], [ 121.467295769000089, 39.015122789000088 ], [ 121.674082879000025, 39.088039455000057 ], [ 121.589938564000022, 39.264053964000084 ], [ 121.680186394000089, 39.275213934000078 ], [ 121.779795769000089, 39.371486721000053 ], [ 121.942963087000066, 39.399359442000048 ], [ 121.525889519000089, 39.364650783000059 ], [ 121.436045769000089, 39.508612372000073 ], [ 121.223399285000028, 39.528631903000075 ], [ 121.463877800000091, 39.645819403000075 ], [ 121.533295118000069, 39.622300523000035 ], [ 121.550140821000014, 39.678656317000048 ], [ 121.457286004000025, 39.748480536000045 ], [ 121.470713738000086, 39.810248114000046 ], [ 121.873789910000028, 39.991400458000044 ], [ 121.826914910000028, 40.022528387000079 ], [ 121.995667793000052, 40.123895275000052 ], [ 121.99146569100003, 40.186997789000088 ], [ 122.091645693000032, 40.227207388000068 ], [ 122.106116120000024, 40.310122817000035 ], [ 122.301849806000064, 40.502346096000053 ], [ 122.150434015000087, 40.603864464000083 ], [ 122.15943444100003, 40.701605536000045 ], [ 122.121836785000028, 40.680121161000045 ], [ 121.851084832000083, 40.832261460000041 ], [ 121.825938347000033, 40.948187567000048 ], [ 121.867930535000028, 40.995794989000046 ], [ 121.777709038000012, 40.934971529000052 ], [ 121.73955232000003, 40.849078718000044 ], [ 121.575043165000011, 40.841498114000046 ], [ 121.361338738000086, 40.939642645000049 ], [ 121.299327019000089, 40.899603583000044 ], [ 121.175791863000086, 40.922308661000045 ], [ 121.049850107, 40.797400734000064 ], [ 120.981944207000083, 40.82680898600006 ], [ 120.939545118000069, 40.74054596600007 ], [ 121.020737908, 40.719330067000044 ], [ 120.825320815000055, 40.674033480000048 ], [ 120.798431837000066, 40.599676825000074 ], [ 120.545664910000028, 40.402411200000074 ], [ 120.591152897000029, 40.367297693000069 ], [ 120.501757645, 40.326909952000051 ], [ 120.472015821000014, 40.21430084800005 ], [ 119.950276920000078, 40.056502133000038 ], [ 119.850189649000072, 39.986314195000034 ], [ 119.741818068748785, 40.090473130830276 ], [ 119.742593215104762, 40.205194811291506 ], [ 119.634744500858005, 40.209070543071107 ], [ 119.563689405941318, 40.540058091907383 ], [ 119.293628370752685, 40.530704657893637 ], [ 119.189758741972355, 40.620104884732598 ], [ 119.190998977220943, 40.700410060875583 ], [ 119.061549514198646, 40.651369126783777 ], [ 118.847557408047919, 40.835027166870248 ], [ 118.902179397161376, 40.956621811747198 ], [ 119.010338168871385, 40.976258857560197 ], [ 118.937112665417089, 41.060543118270289 ], [ 119.163507115061293, 41.176401679393962 ], [ 119.382305128978487, 41.409514064722259 ], [ 119.298640984993426, 41.777346909732103 ], [ 119.374243606157506, 42.080429186157971 ], [ 119.245259231128557, 42.191946925710056 ], [ 119.51170291605672, 42.394518541197669 ], [ 119.636449823200678, 42.240083523136036 ], [ 119.8369543802404, 42.199129951186251 ], [ 119.800935907266307, 42.128850003524803 ], [ 120.03032759044595, 41.860597643466463 ], [ 120.032601352670213, 41.71156281237387 ], [ 120.095646599810721, 41.702106025572618 ], [ 120.331342808423869, 41.960152289096868 ], [ 120.458415154635645, 42.025083727531978 ], [ 120.495725538802503, 42.144094550023453 ], [ 120.627862176997837, 42.160372626195738 ], [ 120.912599318803473, 42.296565864223226 ], [ 121.014091831672658, 42.25059967713338 ], [ 121.38280317582587, 42.506966458535203 ], [ 121.551785110194601, 42.535491848569905 ], [ 121.628989699115323, 42.457408758707231 ], [ 121.723660922613476, 42.457667141125626 ], [ 121.877760043890817, 42.539574285924516 ], [ 121.933932325716228, 42.673364570518515 ], [ 122.045036655916874, 42.720855210999161 ], [ 122.283109978642528, 42.637475286954896 ], [ 122.399588658289872, 42.658326727796236 ], [ 122.434211867283807, 42.696748155103251 ], [ 122.363466831628898, 42.809376938694754 ], [ 122.392043899406417, 42.853560289076029 ], [ 122.763339065045784, 42.732327379405035 ], [ 123.067454869346648, 42.790515041935635 ], [ 123.261241489802842, 42.998796901855485 ], [ 123.620392694367297, 43.086931056822777 ], [ 123.748705275827774, 43.472282213253493 ], [ 124.016027459899306, 43.305186469280102 ], [ 124.281851028102437, 43.225992337176592 ], [ 124.303451775978601, 43.148839423300728 ], [ 124.418173456439831, 43.089256496789858 ], [ 124.370114374278955, 43.002336737750227 ], [ 124.436880323568062, 42.949161689460368 ], [ 124.385668980039327, 42.884772854283767 ], [ 124.480495233168426, 42.851260688429988 ], [ 124.765697462967523, 43.105586248906263 ], [ 124.885638462345128, 43.102253119485852 ], [ 124.86176395134521, 42.854697171537225 ], [ 124.967907343249294, 42.780929063025837 ], [ 124.949872267890782, 42.661763210903416 ], [ 125.092654250393252, 42.582103989907182 ], [ 125.101956007563672, 42.493866482152384 ], [ 125.208719517091936, 42.405835679972654 ], [ 125.175801630440787, 42.338346259372372 ], [ 125.285200637399498, 42.298762112081761 ], [ 125.318583612043994, 42.169364325902905 ], [ 125.480537550567419, 42.151432604231275 ], [ 125.291866897139585, 41.95320180941593 ], [ 125.306284621338136, 41.680376084688533 ], [ 125.449531691834068, 41.679936835116848 ], [ 125.563426548196617, 41.410754299071641 ], [ 125.650759719285588, 41.286265774345964 ], [ 125.746361118770551, 41.236811428204817 ], [ 125.768892042633638, 41.14420726225535 ], [ 125.691739129657094, 41.004060777183099 ], [ 125.576449009314274, 40.912619330317796 ], [ 125.7040896919857, 40.859194624832071 ] ] ], [ [ [ 122.321299675000091, 39.165961005000042 ], [ 122.354828321000014, 39.19562409100007 ], [ 122.402598504000025, 39.213812567000048 ], [ 122.402598504000025, 39.159125067000048 ], [ 122.321299675000091, 39.165961005000042 ] ] ], [ [ [ 122.63599694100003, 39.234279690000051 ], [ 122.718597852000016, 39.241888739000046 ], [ 122.741953972000033, 39.236070054000038 ], [ 122.69068444100003, 39.193304755000042 ], [ 122.63599694100003, 39.234279690000051 ] ] ], [ [ [ 122.684418165000011, 39.262193101000037 ], [ 122.586192254000025, 39.258002020000049 ], [ 122.505056186000047, 39.296942450000074 ], [ 122.643890821000014, 39.278509833000044 ], [ 122.684418165000011, 39.262193101000037 ] ] ], [ [ [ 121.422536655000044, 39.474514065000051 ], [ 121.421722852000016, 39.37368398600006 ], [ 121.336924675000091, 39.377386786000045 ], [ 121.364268425000091, 39.445461330000057 ], [ 121.25945071700005, 39.391506252000056 ], [ 121.340586785000028, 39.481350002000056 ], [ 121.422536655000044, 39.474514065000051 ] ] ], [ [ [ 122.964366082000083, 39.515448309000078 ], [ 122.989756707000083, 39.549505927000041 ], [ 123.040049675000091, 39.529730536000045 ], [ 123.005707227000016, 39.497300523000035 ], [ 122.964366082000083, 39.515448309000078 ] ] ], [ [ [ 123.180674675000091, 39.091945705000057 ], [ 123.195567254000025, 39.052069403000075 ], [ 123.160655144000089, 39.029242255000042 ], [ 123.143565300000091, 39.080877997000073 ], [ 123.180674675000091, 39.091945705000057 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-45", "NAME_1": "Guangxi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.664950399000134, 23.043374939000032 ], [ 105.551572307000129, 23.05967885400004 ], [ 105.52728519135843, 23.197576606375264 ], [ 105.631723260919728, 23.351701565175063 ], [ 105.692391392148977, 23.347360745402057 ], [ 105.693114861661513, 23.396143297075469 ], [ 105.843389927103431, 23.516885281230714 ], [ 106.004878777633451, 23.469963079732338 ], [ 106.124096306599199, 23.530579535017523 ], [ 106.133088007205743, 23.807487697998852 ], [ 106.199957310181674, 23.847924506011111 ], [ 106.157427606199008, 23.973730781250538 ], [ 106.015162387634064, 24.059436143463245 ], [ 106.014232211647197, 24.113618883005017 ], [ 105.899717237660354, 24.077703761919054 ], [ 105.872225376399967, 24.024709580782485 ], [ 105.66737999868792, 24.0609089218093 ], [ 105.601595900430425, 24.141524156314745 ], [ 105.447186720790512, 24.037602850690973 ], [ 105.296704949773584, 24.129354355918792 ], [ 105.270608351594092, 24.07747121792238 ], [ 105.175523716046598, 24.145942491352855 ], [ 105.175523716046598, 24.315622056812458 ], [ 105.093409864773378, 24.426881414845411 ], [ 104.735447218614183, 24.465664578257645 ], [ 104.692865838687453, 24.427398180581577 ], [ 104.728109165305682, 24.34246796292615 ], [ 104.67891320158293, 24.333269558543293 ], [ 104.501869745292481, 24.578190009061643 ], [ 104.483059523578106, 24.665781562569066 ], [ 104.537578159904115, 24.741254990725224 ], [ 104.729349399655007, 24.631390895773222 ], [ 104.889649692679143, 24.765387885042855 ], [ 105.012484571905418, 24.797478949393962 ], [ 105.048089633729546, 24.895379950424342 ], [ 105.188701205895882, 25.008783881271086 ], [ 105.267197706908632, 24.938219712769524 ], [ 105.430805291830723, 24.934111436093872 ], [ 105.508629999275001, 24.817451891091878 ], [ 105.675338168721453, 24.789675808092056 ], [ 105.805666131786495, 24.707122708146471 ], [ 105.916460401826043, 24.728723456022635 ], [ 106.020743442655714, 24.641907049770509 ], [ 106.199440546244148, 24.829854233685921 ], [ 106.155722283856278, 24.960363063904254 ], [ 106.456685825890133, 25.036094876277502 ], [ 106.666802199361996, 25.173502509333332 ], [ 106.98621422700495, 25.242929796273074 ], [ 107.015514764294892, 25.3478329529284 ], [ 106.974587029867507, 25.440437119777243 ], [ 107.077939894710312, 25.52844208443463 ], [ 107.244234653906119, 25.558595282446333 ], [ 107.326296828335899, 25.475654608873072 ], [ 107.316581659116252, 25.419223945528643 ], [ 107.477192011402167, 25.279955960499137 ], [ 107.473574660242321, 25.219494533945578 ], [ 107.640902948212442, 25.31277049436278 ], [ 107.676869745242527, 25.20603282325618 ], [ 107.744979282567783, 25.22626414647317 ], [ 107.776036818144576, 25.152986965276227 ], [ 107.873963657596676, 25.148051866300591 ], [ 108.109659865310505, 25.235798448539526 ], [ 108.134154493934716, 25.39139618568538 ], [ 108.293369582240359, 25.538699856013523 ], [ 108.421113722919927, 25.508701686733446 ], [ 108.598467237572891, 25.311323554438445 ], [ 108.568029819620449, 25.447206733204155 ], [ 108.655104608290969, 25.50417999890783 ], [ 108.69463707873814, 25.602003486471688 ], [ 108.759491001008826, 25.60859223094667 ], [ 108.774115431681764, 25.521930854325433 ], [ 108.9359143405743, 25.550249538785181 ], [ 109.003455438018023, 25.514101873702487 ], [ 109.041437615753296, 25.543350735048364 ], [ 109.044744907651307, 25.716673489190157 ], [ 108.878346795668051, 25.650346788573415 ], [ 108.870905388672725, 25.70747508390798 ], [ 109.085362582816913, 25.805427760882424 ], [ 109.128047317329788, 25.749410508688015 ], [ 109.173522577105189, 25.808967596777165 ], [ 109.228609654212107, 25.738351752331482 ], [ 109.292068313401899, 25.735767930845327 ], [ 109.398004998831595, 25.913198960763395 ], [ 109.387049595262567, 25.981256822144587 ], [ 109.470817092035134, 26.046343289311324 ], [ 109.603160434906101, 26.052673652267231 ], [ 109.672251825061608, 25.985313421976798 ], [ 109.657524041601221, 25.898626206933898 ], [ 109.75942996562037, 25.902579453978603 ], [ 109.781340773657746, 26.023760687705533 ], [ 109.95853925957914, 26.195378119504596 ], [ 110.062047154052891, 26.149928697251539 ], [ 110.033625115906318, 26.036498927983132 ], [ 110.164573194797072, 26.047040921301459 ], [ 110.246997105332127, 25.978207913564347 ], [ 110.352830437974262, 26.126648464554989 ], [ 110.536540154904174, 26.224859523947828 ], [ 110.562791782714555, 26.346919256818239 ], [ 110.688623894577006, 26.332320665466341 ], [ 110.713273553731483, 26.276148382741667 ], [ 110.878948195302939, 26.275218206754801 ], [ 110.947264439102526, 26.389888211271909 ], [ 111.273446080172391, 26.257751573076632 ], [ 111.194484491166293, 25.966348171530854 ], [ 111.242905307633805, 25.878058986932672 ], [ 111.453900181148413, 25.928650213736375 ], [ 111.476121046648927, 25.895861518294396 ], [ 111.319954868722164, 25.72504507127303 ], [ 111.282747837342754, 25.430024319466725 ], [ 111.171333448779592, 25.372379259295371 ], [ 111.099038121312219, 25.213732611770581 ], [ 110.993204786871388, 25.150764878995972 ], [ 110.954602492411027, 25.025346178283485 ], [ 111.006278924832486, 24.935455024130022 ], [ 111.079039341192583, 24.944240017362915 ], [ 111.125754836216686, 25.044466458360375 ], [ 111.2639892915725, 25.143866075259155 ], [ 111.388581170884265, 25.134771022764482 ], [ 111.461858352081265, 25.019480903321039 ], [ 111.428630406168281, 24.94834829403851 ], [ 111.474415725205517, 24.798796699008449 ], [ 111.432506137947883, 24.677486274072294 ], [ 111.516945429188183, 24.642656357704709 ], [ 111.667117140943276, 24.779676418931558 ], [ 111.995314161819067, 24.7465776642278 ], [ 111.923018832553055, 24.633096218115952 ], [ 112.005546095875616, 24.553075262813138 ], [ 111.988337843716465, 24.471607366686612 ], [ 112.05009117966415, 24.351614692264206 ], [ 111.866536493264505, 24.22717784348265 ], [ 111.900797967951803, 23.995357367548479 ], [ 111.789590284963651, 23.840534775859226 ], [ 111.657505323611758, 23.841697495842766 ], [ 111.621848585843509, 23.675686957487073 ], [ 111.467594435834485, 23.607654934527602 ], [ 111.366411981327815, 23.350848904453358 ], [ 111.369667596382442, 23.132981064724333 ], [ 111.412817417090082, 23.05970388442671 ], [ 111.351219109873966, 22.908214423057188 ], [ 111.192314080830101, 22.751789862711973 ], [ 111.052012567026281, 22.7349691841805 ], [ 111.08322513223402, 22.705410265371427 ], [ 111.030928583087587, 22.642132473334982 ], [ 110.749912144329926, 22.576219183868204 ], [ 110.726812778786666, 22.484622708271331 ], [ 110.675446404727779, 22.47824066847204 ], [ 110.772236362618003, 22.27802033137317 ], [ 110.682112665367185, 22.27802033137317 ], [ 110.598913609375529, 22.159888007125801 ], [ 110.333555129165859, 22.190454617186845 ], [ 110.374999628430089, 21.896286526102301 ], [ 109.967220900923792, 21.866727607293228 ], [ 109.910531854261649, 21.67692007140414 ], [ 109.745942417408571, 21.648678901310234 ], [ 109.773203972000033, 21.485663153000075 ], [ 109.74146569100003, 21.474025783000059 ], [ 109.64966881600003, 21.520453192000048 ], [ 109.67701256600003, 21.623439846000053 ], [ 109.608002149000072, 21.575100002000056 ], [ 109.56771894600007, 21.759995835000041 ], [ 109.492686394000032, 21.698553778000075 ], [ 109.521006707000026, 21.665757554000038 ], [ 109.464691602000073, 21.664455471000053 ], [ 109.572764519000032, 21.581732489000046 ], [ 109.530772332000026, 21.49164459800005 ], [ 109.424408399000072, 21.452378648000035 ], [ 109.320811394000032, 21.480129299000055 ], [ 109.244965040000068, 21.431626695000091 ], [ 109.238780144000032, 21.485663153000075 ], [ 109.214610222000033, 21.41742584800005 ], [ 109.149424675000034, 21.438544012000079 ], [ 109.138682488000029, 21.401597398000035 ], [ 109.05014082100007, 21.437160549000055 ], [ 109.142588738000029, 21.510199286000045 ], [ 109.135752800000034, 21.60297272300005 ], [ 109.046397332000026, 21.60297272300005 ], [ 109.066742384000065, 21.643947658000059 ], [ 108.927989129000025, 21.615057684000078 ], [ 108.855235222000033, 21.684963283000059 ], [ 108.924082879000025, 21.766831773000035 ], [ 108.869476759000065, 21.753810940000051 ], [ 108.861420118000069, 21.815252997000073 ], [ 108.801361524000072, 21.818345445000091 ], [ 108.843516472000033, 21.745021877000056 ], [ 108.779551629000025, 21.725816148000035 ], [ 108.861420118000069, 21.643947658000059 ], [ 108.74537194100003, 21.60297272300005 ], [ 108.724864129000025, 21.74640534100007 ], [ 108.683197462000066, 21.70538971600007 ], [ 108.649180535000028, 21.733343817000048 ], [ 108.683197462000066, 21.740179755000042 ], [ 108.646332227000073, 21.751369533000059 ], [ 108.67701256600003, 21.815252997000073 ], [ 108.594493035000028, 21.740179755000042 ], [ 108.571381056000064, 21.81281159100007 ], [ 108.635508660000028, 21.890326239000046 ], [ 108.560313347000033, 21.895493882000039 ], [ 108.573334181000064, 21.95180898600006 ], [ 108.49146569100003, 21.856268622000073 ], [ 108.47779381600003, 21.945013739000046 ], [ 108.458018425000034, 21.917669989000046 ], [ 108.50513756600003, 21.787909247000073 ], [ 108.47779381600003, 21.698553778000075 ], [ 108.50513756600003, 21.671291408000059 ], [ 108.520111524000072, 21.712632554000038 ], [ 108.533050977000073, 21.71906159100007 ], [ 108.51880944100003, 21.671291408000059 ], [ 108.565440300000034, 21.678534247000073 ], [ 108.470957879000025, 21.561997789000088 ], [ 108.389659050000034, 21.575100002000056 ], [ 108.470957879000025, 21.671291408000059 ], [ 108.38599694100003, 21.672919012000079 ], [ 108.341319207000026, 21.725816148000035 ], [ 108.283783399000072, 21.544745184000078 ], [ 108.211029493000069, 21.50063711100006 ], [ 108.252777540000068, 21.58852773600006 ], [ 108.206065300000034, 21.642564195000091 ], [ 108.176361524000072, 21.575751044000071 ], [ 107.991221550000034, 21.548407294000071 ], [ 108.039561394000032, 21.520453192000048 ], [ 108.022227410000028, 21.485663153000075 ], [ 108.080577019000032, 21.485663153000075 ], [ 107.970713738000029, 21.431626695000091 ], [ 107.991221550000034, 21.485663153000075 ], [ 107.811641073000033, 21.647827047000035 ], [ 107.501324097000065, 21.581526184000026 ], [ 107.42603153500005, 21.652064514000088 ], [ 107.348155152000061, 21.599354553000083 ], [ 107.272655884000073, 21.718313701000099 ], [ 107.172351929000115, 21.715058085000109 ], [ 107.002904908000062, 21.810556132000059 ], [ 107.009364462000121, 21.927448222000024 ], [ 106.92037764500003, 21.916957906000064 ], [ 106.728761434000091, 22.008321839000089 ], [ 106.65310713700012, 21.968892720000085 ], [ 106.662925659000109, 22.223295797 ], [ 106.633780151000053, 22.309440410000022 ], [ 106.541796102000092, 22.34509714799999 ], [ 106.526913290000039, 22.438269755000093 ], [ 106.577142782000067, 22.59531443300007 ], [ 106.680185588000086, 22.57944976800006 ], [ 106.789842977000092, 22.797188416000026 ], [ 106.487794231000123, 22.925423483000074 ], [ 106.255405314000086, 22.854652609000041 ], [ 106.132105347000049, 22.975007019000046 ], [ 105.99924524000005, 22.975368754000058 ], [ 105.853879435000067, 22.904649556000024 ], [ 105.664950399000134, 23.043374939000032 ] ] ], [ [ [ 109.10092207100007, 21.021185614000046 ], [ 109.090505405000044, 21.041937567000048 ], [ 109.12273196700005, 21.065415757000039 ], [ 109.127696160000028, 21.032171942000048 ], [ 109.10092207100007, 21.021185614000046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-44", "NAME_1": "Guangdong" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.183035116000042, 22.55619537400004 ], [ 114.055267774000072, 22.50694407800006 ], [ 113.963796420000108, 22.538112697000088 ], [ 113.89034489800008, 22.452712399000063 ], [ 113.893890821000014, 22.521144924000055 ], [ 113.758067254000025, 22.753404039000088 ], [ 113.65357506600003, 22.758734442000048 ], [ 113.592295769000089, 22.889064846000053 ], [ 113.638194207000083, 23.034898179000038 ], [ 113.596690300000091, 22.918198960000041 ], [ 113.617198113000086, 23.034898179000038 ], [ 113.576182488000086, 22.938706773000035 ], [ 113.583018425000091, 23.021226304000038 ], [ 113.542002800000091, 22.986517645000049 ], [ 113.53638756600003, 23.06313711100006 ], [ 113.691986524000072, 23.132554429000038 ], [ 113.813243035000028, 23.129787502000056 ], [ 113.703135613000086, 23.157782294000071 ], [ 113.509125196000014, 23.062160549000055 ], [ 113.417491082000083, 23.096991278000075 ], [ 113.502312001000064, 23.020423688000051 ], [ 113.483978712000066, 22.924261786000045 ], [ 113.212982618000069, 22.904527085000041 ], [ 113.350433790000011, 22.889715887000079 ], [ 113.494232618000069, 22.77484772300005 ], [ 113.439545118000069, 22.739447333000044 ], [ 113.377533399000072, 22.767401434000078 ], [ 113.599169995000011, 22.575179846000083 ], [ 113.546354837000081, 22.437585488000082 ], [ 113.558116082000083, 22.380764065000051 ], [ 113.610362175000091, 22.370184637000079 ], [ 113.587654701000019, 22.237882255000045 ], [ 113.483745490000047, 22.155142169000044 ], [ 113.276377800000091, 22.372056382000039 ], [ 113.16529381600003, 22.575588283000059 ], [ 113.160166863000086, 22.487616278000075 ], [ 113.401970530000085, 22.179574118000062 ], [ 113.302744988000086, 22.183294989000046 ], [ 113.250987175000091, 22.115668036000045 ], [ 113.247162306000064, 22.054266669000071 ], [ 113.157466616000079, 22.024699645000055 ], [ 113.085052931000064, 22.207586981000077 ], [ 113.057893130000025, 22.121093894000069 ], [ 113.020637769000018, 22.125977567000064 ], [ 113.025620043, 21.949425357000052 ], [ 112.911586066000041, 21.856290824000041 ], [ 112.826019727000016, 21.966131903000075 ], [ 112.645111524000072, 21.849351304000038 ], [ 112.608002149000072, 21.775091864000046 ], [ 112.550873243000069, 21.772853908000059 ], [ 112.426036004000025, 21.84516022300005 ], [ 112.411143425000091, 21.901190497000073 ], [ 112.493662957000083, 21.966131903000075 ], [ 112.390635613000086, 21.955511786000045 ], [ 112.397471550000091, 22.068508205000057 ], [ 112.356537306000064, 21.979722398000035 ], [ 112.402110222000033, 21.80141836100006 ], [ 112.286224806000064, 21.708807684000078 ], [ 112.182383660000028, 21.752997137000079 ], [ 112.19263756600003, 21.843166408000059 ], [ 112.028168165000011, 21.797349351000037 ], [ 112.041270379000025, 21.884182033000059 ], [ 111.969248894000032, 21.824042059000078 ], [ 111.890391472000033, 21.925116278000075 ], [ 111.904063347000033, 21.815252997000073 ], [ 112.000254754000025, 21.774318752000056 ], [ 111.867930535000028, 21.676703192000048 ], [ 111.835052931000064, 21.766831773000035 ], [ 111.678070509000065, 21.781154690000051 ], [ 111.760590040000068, 21.725816148000035 ], [ 111.746918165000068, 21.643947658000059 ], [ 111.787933790000068, 21.616034247000073 ], [ 111.712901238000029, 21.623439846000053 ], [ 111.630463087000066, 21.529852606000077 ], [ 111.581879102000073, 21.581854559000078 ], [ 111.595550977000073, 21.534084377000056 ], [ 111.476084832000026, 21.513617255000042 ], [ 111.432220899000072, 21.60297272300005 ], [ 111.437998894000032, 21.534084377000056 ], [ 111.362803582000026, 21.541205145000049 ], [ 111.404307488000029, 21.526678778000075 ], [ 111.267344597000033, 21.439357815000051 ], [ 111.301280144000032, 21.499335028000075 ], [ 111.192393425000034, 21.531195380000042 ], [ 111.157969597000033, 21.513617255000042 ], [ 111.226328972000033, 21.499335028000075 ], [ 111.088389519000032, 21.472642320000091 ], [ 111.129974806000064, 21.499335028000075 ], [ 111.027598504000025, 21.540920315000051 ], [ 110.97974694100003, 21.444728908000059 ], [ 111.04224694100003, 21.484564520000049 ], [ 111.068614129000025, 21.472642320000091 ], [ 110.992930535000028, 21.424872137000079 ], [ 110.768158399000072, 21.397528387000079 ], [ 110.650889519000032, 21.26040273600006 ], [ 110.677582227000073, 21.348537502000056 ], [ 110.643321160000028, 21.321844794000071 ], [ 110.636485222000033, 21.370266018000052 ], [ 110.755381707000026, 21.413397528000075 ], [ 110.760020379000025, 21.444728908000059 ], [ 110.635590040000068, 21.381048895000049 ], [ 110.636485222000033, 21.230169989000046 ], [ 110.431162957000026, 21.191473700000074 ], [ 110.424327019000032, 21.287665106000077 ], [ 110.478851759000065, 21.273382880000042 ], [ 110.444834832000026, 21.307562567000048 ], [ 110.486338738000029, 21.335516669000071 ], [ 110.433929884000065, 21.308783270000049 ], [ 110.437347852000073, 21.397528387000079 ], [ 110.358490431000064, 21.435736395000049 ], [ 110.389496290000068, 21.328680731000077 ], [ 110.328135613000029, 21.335516669000071 ], [ 110.408213738000029, 21.238023179000038 ], [ 110.399424675000034, 21.176581122000073 ], [ 110.218841993000069, 21.027573960000041 ], [ 110.195567254000025, 21.071275132000039 ], [ 110.143077019000032, 20.992254950000074 ], [ 110.156748894000032, 20.848863023000035 ], [ 110.368988477000073, 20.848863023000035 ], [ 110.40943444100003, 20.750962632000039 ], [ 110.356455925000034, 20.732326565000051 ], [ 110.341807488000029, 20.821519273000035 ], [ 110.300791863000029, 20.657049872000073 ], [ 110.328135613000029, 20.677557684000078 ], [ 110.314463738000029, 20.636542059000078 ], [ 110.478851759000065, 20.567694403000075 ], [ 110.534190300000034, 20.478257554000038 ], [ 110.406830274000072, 20.305161851000037 ], [ 110.280284050000034, 20.252997137000079 ], [ 110.127533399000072, 20.247992255000042 ], [ 110.037852410000028, 20.301703192000048 ], [ 109.91724694100003, 20.239325262000079 ], [ 109.928721550000034, 20.326361395000049 ], [ 109.862803582000026, 20.406317450000074 ], [ 109.90357506600003, 20.43109772300005 ], [ 109.982432488000029, 20.351548570000091 ], [ 110.009776238000029, 20.43423086100006 ], [ 109.93091881600003, 20.506252346000053 ], [ 109.91724694100003, 20.44476959800005 ], [ 109.822113477000073, 20.516546942000048 ], [ 109.848236524000072, 20.595648505000042 ], [ 109.821055535000028, 20.554632880000042 ], [ 109.751556837000066, 20.673732815000051 ], [ 109.860443556000064, 20.71548086100006 ], [ 109.786875847000033, 20.691148179000038 ], [ 109.759532097000033, 20.855047919000071 ], [ 109.739024285000028, 20.807847398000035 ], [ 109.70435631600003, 20.842027085000041 ], [ 109.717865431000064, 20.807847398000035 ], [ 109.661224806000064, 20.927557684000078 ], [ 109.711680535000028, 21.03384023600006 ], [ 109.670176629000025, 21.123236395000049 ], [ 109.773203972000033, 21.215399481000077 ], [ 109.765716993000069, 21.355943101000037 ], [ 109.924082879000025, 21.362779039000088 ], [ 109.951263868000069, 21.458400783000059 ], [ 109.841400587000066, 21.506781317000048 ], [ 109.814219597000033, 21.458400783000059 ], [ 109.745942417408571, 21.648678901310234 ], [ 109.910531854261649, 21.67692007140414 ], [ 109.967220900923792, 21.866727607293228 ], [ 110.369211866934052, 21.89086050071154 ], [ 110.333555129165859, 22.190454617186845 ], [ 110.405282016751642, 22.202960313467656 ], [ 110.4826933130459, 22.145005194933788 ], [ 110.628885940233886, 22.172186997831659 ], [ 110.676376580714589, 22.273937893119239 ], [ 110.774561801685763, 22.283653062338942 ], [ 110.696995476659879, 22.368712470304217 ], [ 110.675446404727779, 22.47824066847204 ], [ 110.726812778786666, 22.484622708271331 ], [ 110.749912144329926, 22.576219183868204 ], [ 111.030928583087587, 22.642132473334982 ], [ 111.08322513223402, 22.705410265371427 ], [ 111.052012567026281, 22.7349691841805 ], [ 111.192314080830101, 22.751789862711973 ], [ 111.351219109873966, 22.908214423057188 ], [ 111.412817417090082, 23.05970388442671 ], [ 111.369667596382442, 23.132981064724333 ], [ 111.366411981327815, 23.350848904453358 ], [ 111.467594435834485, 23.607654934527602 ], [ 111.621848585843509, 23.675686957487073 ], [ 111.657505323611758, 23.841697495842766 ], [ 111.789590284963651, 23.840534775859226 ], [ 111.900797967951803, 23.995357367548479 ], [ 111.866536493264505, 24.22717784348265 ], [ 112.05009117966415, 24.351614692264206 ], [ 111.988337843716465, 24.471607366686612 ], [ 112.005546095875616, 24.553075262813138 ], [ 111.925964390144429, 24.616223862741037 ], [ 111.932475621152946, 24.698286038070194 ], [ 112.091225620565865, 24.809157823374846 ], [ 112.143057081718894, 24.787970485749327 ], [ 112.166776564886504, 24.906981310039384 ], [ 112.120991245849268, 24.949278469126057 ], [ 112.191116163879769, 25.197790432382533 ], [ 112.637393833058923, 25.130352687726315 ], [ 112.714081658941382, 24.999507962522443 ], [ 112.850920852115564, 24.939330755909623 ], [ 112.988896925952304, 24.963928738220659 ], [ 112.966882766026743, 25.172365627771512 ], [ 113.028481073242915, 25.230372423148765 ], [ 112.889109735425905, 25.241457017927019 ], [ 112.854538202376148, 25.333776963935691 ], [ 112.913035923269149, 25.321994737167358 ], [ 113.217461785932642, 25.505575262888044 ], [ 113.287741733594089, 25.517047431293918 ], [ 113.357556594161451, 25.424365750079289 ], [ 113.523437942207238, 25.385582587566319 ], [ 113.569533318707613, 25.323441677091694 ], [ 113.785644159250523, 25.341735133969223 ], [ 113.886103143345395, 25.437259019088458 ], [ 114.012090284838678, 25.435114448073307 ], [ 114.026042921943258, 25.267656968893959 ], [ 114.127018670874918, 25.310548407183205 ], [ 114.29109134289115, 25.293133450348421 ], [ 114.553039179314624, 25.415322374428001 ], [ 114.710032180440749, 25.28483938173207 ], [ 114.683057082218511, 25.16345144332945 ], [ 114.729307489249209, 25.118880520219818 ], [ 114.413512810967404, 24.979690050455474 ], [ 114.314707473271255, 24.774741319056602 ], [ 114.169600050801705, 24.674695746111752 ], [ 114.405761345609562, 24.501528022500224 ], [ 114.641922642216173, 24.58526967995175 ], [ 114.707241651580944, 24.551886705307197 ], [ 114.757212762558879, 24.632062690240957 ], [ 114.87022911977806, 24.588034369490515 ], [ 115.046962517705992, 24.70665762015301 ], [ 115.152175735421793, 24.685547796893275 ], [ 115.263900181448207, 24.759057522086948 ], [ 115.420583124211817, 24.78455984106381 ], [ 115.691522657644441, 24.547985134206556 ], [ 115.790379673083407, 24.561265976843345 ], [ 115.754981316834233, 24.819596462107029 ], [ 115.811308628290476, 24.872590644142917 ], [ 115.903447707145915, 24.871634629734331 ], [ 115.887531366179587, 24.916773992725552 ], [ 116.268438348251152, 24.807762560293895 ], [ 116.372101272355735, 24.841300564569394 ], [ 116.516588576301729, 24.615422878862773 ], [ 116.772593621598276, 24.662784329033514 ], [ 116.749339227323389, 24.533438218798722 ], [ 116.885713331604961, 24.390036119571221 ], [ 116.963331332574853, 24.206920680944677 ], [ 116.924832390902111, 24.077600409131549 ], [ 117.036505161883724, 23.738267117533439 ], [ 117.174622247618572, 23.616347697788001 ], [ 117.084227758, 23.55060551300005 ], [ 117.068412988000091, 23.651272715000061 ], [ 116.95070523000004, 23.610883295000065 ], [ 116.916514519000089, 23.66274648600006 ], [ 116.872080925000091, 23.60687897300005 ], [ 116.866628204000108, 23.450232931000073 ], [ 116.773224451000033, 23.349432372000081 ], [ 116.523203972000033, 23.418524481000077 ], [ 116.573008660000028, 23.32367584800005 ], [ 116.748634830000015, 23.326288333000036 ], [ 116.804822489, 23.236122461000036 ], [ 116.66724694100003, 23.281317450000074 ], [ 116.715098504000025, 23.243801174000055 ], [ 116.646754959000077, 23.162991383000076 ], [ 116.611510141000053, 23.238729609000075 ], [ 116.508881056000064, 23.234116929000038 ], [ 116.604504249, 23.209556543000076 ], [ 116.533648114000016, 23.109134538000092 ], [ 116.563250095000058, 23.018773721000059 ], [ 116.494687913, 22.939352413000051 ], [ 116.213633660000028, 22.982814846000053 ], [ 116.281458392000104, 22.957857275000038 ], [ 116.144909913000106, 22.847822500000063 ], [ 116.095689905000086, 22.825900457000046 ], [ 116.123721040000078, 22.894729239000071 ], [ 116.042104908000056, 22.932918286000074 ], [ 116.076177807000022, 22.867871480000076 ], [ 115.810029869, 22.746090775000084 ], [ 115.804779493000069, 22.81509023600006 ], [ 115.684266229000059, 22.877779098000076 ], [ 115.730316602000016, 22.93423086100006 ], [ 115.560557488000086, 22.849310614000046 ], [ 115.547618035000028, 22.895412502000056 ], [ 115.406016472000033, 22.925034898000035 ], [ 115.483002149000072, 22.901841539000088 ], [ 115.46802819100003, 22.849310614000046 ], [ 115.559418165000011, 22.836086330000057 ], [ 115.612071160000028, 22.86359284100007 ], [ 115.527016969000101, 22.767042406000087 ], [ 115.555588182000065, 22.714370293000059 ], [ 115.590098504000025, 22.737209377000056 ], [ 115.575218948000042, 22.668335972000079 ], [ 115.373508023, 22.694177267000043 ], [ 115.338470899000072, 22.733099677000041 ], [ 115.411208225, 22.788267543000075 ], [ 115.233390927000073, 22.788208507000036 ], [ 115.320160352000016, 22.850531317000048 ], [ 115.317149285000028, 22.904527085000041 ], [ 115.172943556000064, 22.821193752000056 ], [ 115.18027057300003, 22.784805971000083 ], [ 115.065475480000032, 22.795984798000063 ], [ 114.985341740000081, 22.689309001000083 ], [ 114.941661004000025, 22.753851630000042 ], [ 114.862523800000076, 22.763215635000051 ], [ 114.966629401000091, 22.676486944000089 ], [ 114.895966425000097, 22.547524404000058 ], [ 114.865816191000022, 22.601744611000072 ], [ 114.743775851, 22.609404292000079 ], [ 114.74195106600007, 22.732652740000049 ], [ 114.821252066000056, 22.790560097000082 ], [ 114.784759962000066, 22.81586334800005 ], [ 114.522064649000072, 22.705959377000056 ], [ 114.506607020000047, 22.64652286900008 ], [ 114.590342644000089, 22.643866278000075 ], [ 114.49537194100003, 22.56195709800005 ], [ 114.617686394000089, 22.514146226000037 ], [ 114.515816214000097, 22.45264280300006 ], [ 114.408702019000089, 22.61163971600007 ], [ 114.183035116000042, 22.55619537400004 ] ] ], [ [ [ 111.962657097000033, 21.657619533000059 ], [ 111.999847852000073, 21.621161200000074 ], [ 111.809336785000028, 21.565497137000079 ], [ 111.83529707100007, 21.643947658000059 ], [ 111.962657097000033, 21.657619533000059 ] ] ], [ [ [ 112.645355665000011, 21.712836005000042 ], [ 112.650401238000086, 21.640448309000078 ], [ 112.525401238000086, 21.598863023000035 ], [ 112.55591881600003, 21.678127346000053 ], [ 112.645355665000011, 21.712836005000042 ] ] ], [ [ [ 112.844004754000025, 21.774318752000056 ], [ 112.86255944100003, 21.745591539000088 ], [ 112.797536655000044, 21.705877997000073 ], [ 112.810557488000086, 21.58930084800005 ], [ 112.76490319100003, 21.581854559000078 ], [ 112.734385613000086, 21.628729559000078 ], [ 112.774424675000091, 21.69171784100007 ], [ 112.711680535000028, 21.702541408000059 ], [ 112.777517123000052, 21.772650458000044 ], [ 112.844004754000025, 21.774318752000056 ] ] ], [ [ [ 113.391449415000011, 22.027533270000049 ], [ 113.405772332000083, 22.007025458000044 ], [ 113.309418165000011, 22.024115302000041 ], [ 113.382660352000016, 22.089585679000038 ], [ 113.391449415000011, 22.027533270000049 ] ] ], [ [ [ 113.364756707000083, 22.157904364000046 ], [ 113.313649936000047, 22.076402085000041 ], [ 113.279144727000016, 22.074693101000037 ], [ 113.271739129000025, 22.120021877000056 ], [ 113.364756707000083, 22.157904364000046 ] ] ], [ [ [ 113.593516472000033, 22.784816799000055 ], [ 113.55827884200005, 22.757879950000074 ], [ 113.39616946700005, 22.898098049000055 ], [ 113.475596550000091, 22.90070221600007 ], [ 113.593516472000033, 22.784816799000055 ] ] ], [ [ [ 117.07154381600003, 23.473089911000045 ], [ 117.125852157000054, 23.482691873000078 ], [ 117.12878132000003, 23.399369184000079 ], [ 116.942989291, 23.43006217900006 ], [ 117.07154381600003, 23.473089911000045 ] ] ], [ [ [ 110.595876498000052, 20.958726304000038 ], [ 110.63249759200005, 20.936672268000052 ], [ 110.58920332100007, 20.883490302000041 ], [ 110.547536655000044, 20.917710679000038 ], [ 110.595876498000052, 20.958726304000038 ] ] ], [ [ [ 110.547536655000044, 21.037258205000057 ], [ 110.51693769600007, 20.937648830000057 ], [ 110.441416863000029, 21.005845445000091 ], [ 110.245860222000033, 20.986029364000046 ], [ 110.27312259200005, 21.061102606000077 ], [ 110.30990644600007, 21.052923895000049 ], [ 110.33521569100003, 21.068589585000041 ], [ 110.287364129000025, 21.074448960000041 ], [ 110.389821811000047, 21.095892645000049 ], [ 110.417735222000033, 21.040594794000071 ], [ 110.526377800000034, 21.082098700000074 ], [ 110.547536655000044, 21.037258205000057 ] ] ], [ [ [ 110.616953972000033, 21.191473700000074 ], [ 110.543223504000025, 21.104966539000088 ], [ 110.417735222000033, 21.17845286700009 ], [ 110.543223504000025, 21.204169012000079 ], [ 110.554942254000025, 21.156724351000037 ], [ 110.616953972000033, 21.191473700000074 ] ] ], [ [ [ 110.471364780000044, 20.647365627000056 ], [ 110.47584069100003, 20.595933335000041 ], [ 110.457286004000025, 20.586859442000048 ], [ 110.41765384200005, 20.654771226000037 ], [ 110.471364780000044, 20.647365627000056 ] ] ], [ [ [ 113.278005405000044, 21.925034898000035 ], [ 113.258474155000044, 21.880438544000071 ], [ 113.22584069100003, 21.900824286000045 ], [ 113.24773196700005, 21.943182684000078 ], [ 113.278005405000044, 21.925034898000035 ] ] ], [ [ [ 113.771746629000063, 22.000343410000085 ], [ 113.764476783000077, 21.966817927000079 ], [ 113.748205648000067, 21.972788470000069 ], [ 113.736279280000076, 21.997162124000056 ], [ 113.771746629000063, 22.000343410000085 ] ] ], [ [ [ 114.306813998000052, 22.057196356000077 ], [ 114.302500847000033, 22.044867255000042 ], [ 114.20671634200005, 22.025783596000053 ], [ 114.304209832000083, 22.069281317000048 ], [ 114.306813998000052, 22.057196356000077 ] ] ], [ [ [ 113.473480665000011, 22.098537502000056 ], [ 113.518890821000014, 22.12726471600007 ], [ 113.547618035000028, 22.092596747000073 ], [ 113.484711134, 22.071356512000079 ], [ 113.473480665000011, 22.098537502000056 ] ] ], [ [ [ 113.6233788830001, 22.439872186000059 ], [ 113.657824572000095, 22.423751330000073 ], [ 113.621186661000024, 22.39141902700004 ], [ 113.61044137500005, 22.413337446000071 ], [ 113.6233788830001, 22.439872186000059 ] ] ], [ [ [ 113.546759202000089, 22.741884151000079 ], [ 113.635686524000107, 22.656474951000064 ], [ 113.641831517000014, 22.601623679000056 ], [ 113.476511416000108, 22.719514324000045 ], [ 113.546759202000089, 22.741884151000079 ] ] ], [ [ [ 113.529209751000053, 22.96035383800006 ], [ 113.55359928200005, 22.911280871000088 ], [ 113.545013691, 22.879960560000086 ], [ 113.509959735000052, 22.921216480000055 ], [ 113.529209751000053, 22.96035383800006 ] ] ], [ [ [ 116.995616082000083, 23.563544012000079 ], [ 116.987803582000083, 23.524115302000041 ], [ 116.937266472000033, 23.526271877000056 ], [ 116.936045769000089, 23.535549221000053 ], [ 116.995616082000083, 23.563544012000079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-46", "NAME_1": "Hainan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.010508660000028, 19.683783270000049 ], [ 111.034678582000026, 19.642238674000055 ], [ 110.965830925000034, 19.635972398000035 ], [ 110.876475457000026, 19.53978099200009 ], [ 110.821787957000026, 19.567775783000059 ], [ 110.847666863000029, 19.622463283000059 ], [ 110.794444207000026, 19.601263739000046 ], [ 110.79623457100007, 19.484605210000041 ], [ 110.669688347000033, 19.381740627000056 ], [ 110.580332879000025, 19.155178127000056 ], [ 110.479177280000044, 19.169256903000075 ], [ 110.554942254000025, 19.08734772300005 ], [ 110.582286004000025, 19.150051174000055 ], [ 110.51335696700005, 18.906398830000057 ], [ 110.431488477000073, 18.821478583000044 ], [ 110.492849155000044, 18.793117580000057 ], [ 110.503428582000026, 18.881903387000079 ], [ 110.53443444100003, 18.785630601000037 ], [ 110.469004754000025, 18.777167059000078 ], [ 110.403493686000047, 18.662787177000041 ], [ 110.33521569100003, 18.673325914000088 ], [ 110.410899285000028, 18.690130927000041 ], [ 110.403493686000047, 18.70376211100006 ], [ 110.27084394600007, 18.668158270000049 ], [ 110.088145379000025, 18.504339911000045 ], [ 110.034190300000034, 18.511948960000041 ], [ 110.082530144000032, 18.477769273000092 ], [ 110.04029381600003, 18.38226959800005 ], [ 109.968597852000073, 18.389837958000044 ], [ 110.013682488000029, 18.40892161700009 ], [ 110.020518425000034, 18.450506903000075 ], [ 109.835459832000026, 18.38226959800005 ], [ 109.746104363000029, 18.395900783000059 ], [ 109.73178144600007, 18.273016669000071 ], [ 109.670420769000032, 18.273016669000071 ], [ 109.739268425000034, 18.258734442000048 ], [ 109.708750847000033, 18.207220770000049 ], [ 109.677256707000026, 18.245062567000048 ], [ 109.561208530000044, 18.169338283000059 ], [ 109.561208530000044, 18.258734442000048 ], [ 109.478688998000052, 18.192694403000075 ], [ 109.506521030000044, 18.252752997000073 ], [ 109.439952019000032, 18.288967190000051 ], [ 109.162608269000032, 18.28782786700009 ], [ 109.13599694100003, 18.361151434000078 ], [ 108.990896030000044, 18.368719794000071 ], [ 108.68490644600007, 18.515204169000071 ], [ 108.693614129000025, 18.719875393000052 ], [ 108.623871290000068, 18.849188544000071 ], [ 108.656260613000029, 18.94399648600006 ], [ 108.615244988000029, 19.101629950000074 ], [ 108.683441602000073, 19.156236070000091 ], [ 108.626963738000029, 19.274969794000071 ], [ 108.686534050000034, 19.377875067000048 ], [ 108.944834832000026, 19.492010809000078 ], [ 109.008474155000044, 19.597072658000059 ], [ 109.156504754000025, 19.649644273000035 ], [ 109.211192254000025, 19.724798895000049 ], [ 109.307383660000028, 19.711127020000049 ], [ 109.273203972000033, 19.793646552000041 ], [ 109.16334069100003, 19.724798895000049 ], [ 109.166840040000068, 19.805487372000073 ], [ 109.25513756600003, 19.898342190000051 ], [ 109.311371290000068, 19.919501044000071 ], [ 109.465017123000052, 19.834051825000074 ], [ 109.58171634200005, 19.855698960000041 ], [ 109.520192905000044, 19.882473049000055 ], [ 109.557465040000068, 19.917303778000075 ], [ 109.52702884200005, 19.951361395000049 ], [ 109.719004754000025, 20.010646877000056 ], [ 109.71810957100007, 19.957505601000037 ], [ 109.807627800000034, 19.951361395000049 ], [ 109.815928582000026, 19.991197007000039 ], [ 109.835459832000026, 19.930853583000044 ], [ 109.94263756600003, 19.990912177000041 ], [ 109.990082227000073, 19.905951239000046 ], [ 110.013682488000029, 19.957505601000037 ], [ 110.12273196700005, 19.974310614000046 ], [ 110.149587436000047, 20.00657786700009 ], [ 110.068207227000073, 19.984849351000037 ], [ 110.156993035000028, 20.067368882000039 ], [ 110.344737175000034, 20.05805084800005 ], [ 110.417735222000033, 19.923407294000071 ], [ 110.382985873000052, 20.081040757000039 ], [ 110.57545006600003, 19.999172268000052 ], [ 110.605804884000065, 19.923163153000075 ], [ 110.566172722000033, 20.069525458000044 ], [ 110.677907748000052, 20.163560289000088 ], [ 110.78834069100003, 20.01040273600006 ], [ 110.934580925000034, 19.995062567000048 ], [ 111.010508660000028, 19.683783270000049 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-35", "NAME_1": "Fujian" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.468900667000071, 23.753090464000081 ], [ 117.526660765000088, 23.740106905000061 ], [ 117.421149445000083, 23.64646441900004 ], [ 117.431558644, 23.582630235000067 ], [ 117.320482728, 23.574015926000072 ], [ 117.393728061000047, 23.679185289000088 ], [ 117.340505405000044, 23.688950914000088 ], [ 117.37273196700005, 23.766750393000052 ], [ 117.468900667000071, 23.753090464000081 ] ] ], [ [ [ 119.305430535000028, 26.035956122000073 ], [ 119.401215040000011, 25.996039130000042 ], [ 119.404958530000044, 25.977932033000059 ], [ 119.257578972000033, 26.001450914000088 ], [ 119.209239129000025, 26.098578192000048 ], [ 119.257578972000033, 26.047552802000041 ], [ 119.305430535000028, 26.035956122000073 ] ] ], [ [ [ 120.41920006600003, 27.206366278000075 ], [ 120.429209832000083, 27.173651434000078 ], [ 120.37623131600003, 27.236273505000042 ], [ 120.347259962000066, 27.249416408000059 ], [ 120.292002800000091, 27.249416408000059 ], [ 120.311859571000014, 27.317694403000075 ], [ 120.223724806000064, 27.311468817000048 ], [ 120.225677931000064, 27.268622137000079 ], [ 120.195811394000089, 27.297796942000048 ], [ 120.182383660000028, 27.216864325000074 ], [ 120.347259962000066, 27.242580471000053 ], [ 120.347259962000066, 27.180487372000073 ], [ 120.421722852000016, 27.146958726000037 ], [ 120.373871290000011, 27.146958726000037 ], [ 120.407969597000033, 27.139553127000056 ], [ 120.377533399000072, 27.098578192000048 ], [ 120.243662957000083, 27.132717190000051 ], [ 120.278330925000091, 27.063788153000075 ], [ 120.216319207000083, 27.037095445000091 ], [ 120.255218946000014, 26.997056382000039 ], [ 120.148692254000025, 26.98187897300005 ], [ 120.235687696000014, 26.966376044000071 ], [ 120.219086134, 26.915432033000059 ], [ 120.031993035000028, 26.899888414000088 ], [ 120.024506056000064, 26.837876695000091 ], [ 120.12818444100003, 26.796942450000074 ], [ 120.100189649000072, 26.74290599200009 ], [ 120.148692254000025, 26.721177476000037 ], [ 120.090342644000089, 26.622219143000052 ], [ 119.959971550000091, 26.611273505000042 ], [ 119.884287957000083, 26.523179429000038 ], [ 119.835703972000033, 26.531398830000057 ], [ 119.853770379000025, 26.59829336100006 ], [ 119.984141472000033, 26.653509833000044 ], [ 120.067474806000064, 26.800482489000046 ], [ 119.925140821000014, 26.792181708000044 ], [ 119.879649285000028, 26.655340887000079 ], [ 119.829193556000064, 26.714992580000057 ], [ 119.791758660000028, 26.687689520000049 ], [ 119.840098504000025, 26.790025132000039 ], [ 119.797373894000089, 26.816392320000091 ], [ 119.846283399000072, 26.85219961100006 ], [ 119.781993035000028, 26.828517971000053 ], [ 119.756195509, 26.73773834800005 ], [ 119.685801629000025, 26.811997789000088 ], [ 119.724945509, 26.697821356000077 ], [ 119.606049024000072, 26.796942450000074 ], [ 119.552093946000014, 26.749090887000079 ], [ 119.606049024000072, 26.694525458000044 ], [ 119.599864129000025, 26.646063544000071 ], [ 119.541107618000069, 26.656317450000074 ], [ 119.599864129000025, 26.570379950000074 ], [ 119.67505944100003, 26.618801174000055 ], [ 119.784922722000033, 26.577826239000046 ], [ 119.791758660000028, 26.413316148000035 ], [ 119.653656446000014, 26.498032945000091 ], [ 119.566416863000086, 26.454901434000078 ], [ 119.648448113000086, 26.437445380000042 ], [ 119.681895379000025, 26.31712474200009 ], [ 119.747080925000091, 26.327622789000088 ], [ 119.825775587000066, 26.426947333000044 ], [ 119.840098504000025, 26.378566799000055 ], [ 119.949961785000028, 26.364935614000046 ], [ 119.792735222000033, 26.284084377000056 ], [ 119.654307488000086, 26.272406317000048 ], [ 119.668223504000025, 26.221502997000073 ], [ 119.600108269000089, 26.176336981000077 ], [ 119.458506707000083, 25.982489325000074 ], [ 119.435557488000086, 25.981350002000056 ], [ 119.415049675000091, 26.009263414000088 ], [ 119.277110222000033, 26.052923895000049 ], [ 119.215830925000091, 26.100083726000037 ], [ 119.093516472000033, 26.145819403000075 ], [ 119.195160352000016, 26.087591864000046 ], [ 119.246836785000028, 25.967230536000045 ], [ 119.329844597000033, 25.944281317000048 ], [ 119.440928582000083, 25.963812567000048 ], [ 119.519053582000083, 26.044501044000071 ], [ 119.695404493000069, 26.002630927000041 ], [ 119.599864129000025, 25.844183661000045 ], [ 119.566416863000086, 25.872056382000039 ], [ 119.620860222000033, 25.760321356000077 ], [ 119.589935743000069, 25.687160549000055 ], [ 119.449066602000016, 25.687160549000055 ], [ 119.492442254000025, 25.56476471600007 ], [ 119.579437696000014, 25.584662177000041 ], [ 119.572601759, 25.487860419000071 ], [ 119.628021681000064, 25.461371161000045 ], [ 119.62037194100003, 25.364976304000038 ], [ 119.654551629000025, 25.35814036700009 ], [ 119.579437696000014, 25.34446849200009 ], [ 119.576019727000016, 25.467352606000077 ], [ 119.538584832000083, 25.461167710000041 ], [ 119.544444207000083, 25.377183335000041 ], [ 119.483246290000011, 25.371161200000074 ], [ 119.507334832000083, 25.474432684000078 ], [ 119.447032097000033, 25.438788153000075 ], [ 119.449066602000016, 25.505275783000059 ], [ 119.356537306000064, 25.526922919000071 ], [ 119.380869988000086, 25.590887762000079 ], [ 119.305186394000089, 25.604559637000079 ], [ 119.237803582000083, 25.481756903000075 ], [ 119.102549675000091, 25.420314846000053 ], [ 119.173187696000014, 25.325140692000048 ], [ 119.203379754000025, 25.35814036700009 ], [ 119.201263868000069, 25.259711005000042 ], [ 119.277842644000089, 25.330226955000057 ], [ 119.344248894000089, 25.242377020000049 ], [ 119.281260613000086, 25.241441148000035 ], [ 119.255626253000059, 25.17589713600006 ], [ 119.116096198000037, 25.213781835000077 ], [ 119.153086785000028, 25.139715887000079 ], [ 119.099131707000083, 25.111151434000078 ], [ 119.064707879000025, 25.162543036000045 ], [ 119.029063347000033, 25.140529690000051 ], [ 119.068858269000089, 25.216742255000042 ], [ 118.969330274000072, 25.226385809000078 ], [ 119.027297615000066, 25.278237969000088 ], [ 118.875580274000072, 25.243841864000046 ], [ 118.91529381600003, 25.179388739000046 ], [ 118.974619988000086, 25.182562567000048 ], [ 118.942963087000066, 25.10883209800005 ], [ 118.849131707000083, 25.073797919000071 ], [ 118.953705274000072, 25.002997137000079 ], [ 119.004161004000025, 25.05023834800005 ], [ 119.017670118000069, 24.960272528000075 ], [ 118.911631707000083, 24.95343659100007 ], [ 118.951996290000011, 24.870754299000055 ], [ 118.792084181000064, 24.891099351000037 ], [ 118.71607506600003, 24.843573309000078 ], [ 118.729502800000091, 24.900539455000057 ], [ 118.695567254000025, 24.940415757000039 ], [ 118.688812696000014, 24.895738023000035 ], [ 118.667735222000033, 24.95343659100007 ], [ 118.67115319100003, 24.874660549000055 ], [ 118.572032097000033, 24.885199286000045 ], [ 118.63795006600003, 24.77212148600006 ], [ 118.701752149000072, 24.810044664000088 ], [ 118.76295006600003, 24.762681382000039 ], [ 118.685394727000016, 24.666489976000037 ], [ 118.642100457000083, 24.678697007000039 ], [ 118.661468946000014, 24.590318101000037 ], [ 118.620453321000014, 24.545477606000077 ], [ 118.55396569100003, 24.518052476000037 ], [ 118.578135613000086, 24.560207424000055 ], [ 118.428070509, 24.631333726000037 ], [ 118.431244337000066, 24.699693101000037 ], [ 118.404795769000089, 24.606634833000044 ], [ 118.284027540000011, 24.597805080000057 ], [ 118.219004754000025, 24.541449286000045 ], [ 118.160492384, 24.693426825000074 ], [ 118.110362175000091, 24.584051825000074 ], [ 118.044444207000083, 24.617661851000037 ], [ 118.037364129000025, 24.560614325000074 ], [ 117.974864129000025, 24.552720445000091 ], [ 118.058116082000083, 24.515855210000041 ], [ 117.999522332000083, 24.470851955000057 ], [ 118.021739129000025, 24.445746161000045 ], [ 117.791270379000025, 24.467474677000041 ], [ 117.907318556000064, 24.384914455000057 ], [ 118.042979363000086, 24.406683661000045 ], [ 118.015879754000025, 24.326849677000041 ], [ 118.090586785000028, 24.341457424000055 ], [ 118.126475457000083, 24.26203034100007 ], [ 117.978770379000025, 24.162095445000091 ], [ 117.943614129000025, 24.212591864000046 ], [ 117.907318556000064, 24.18626536700009 ], [ 117.937754754000025, 24.161688544000071 ], [ 117.893646681000064, 24.028021552000041 ], [ 117.83912194100003, 24.023627020000049 ], [ 117.748057488000086, 23.907538153000075 ], [ 117.79810631600003, 24.02179596600007 ], [ 117.761729363000086, 24.014837958000044 ], [ 117.763275587000066, 24.070257880000042 ], [ 117.724131707000083, 24.033758856000077 ], [ 117.667084181000064, 24.062730210000041 ], [ 117.708750847000033, 24.03546784100007 ], [ 117.695078972000033, 23.953558661000045 ], [ 117.591668788000106, 23.73706444600009 ], [ 117.571055535000028, 23.903265692000048 ], [ 117.416595899000072, 23.946844794000071 ], [ 117.499596288000021, 23.87407223200006 ], [ 117.463477444000091, 23.788287134000086 ], [ 117.277354363000086, 23.782212632000039 ], [ 117.279122111000106, 23.636267573000055 ], [ 117.238964320000036, 23.605472819000056 ], [ 117.229502800000091, 23.69281647300005 ], [ 117.174622247618572, 23.616347697788001 ], [ 117.036505161883724, 23.738267117533439 ], [ 116.924832390902111, 24.077600409131549 ], [ 116.963331332574853, 24.206920680944677 ], [ 116.885713331604961, 24.390036119571221 ], [ 116.749339227323389, 24.533438218798722 ], [ 116.772593621598276, 24.662784329033514 ], [ 116.516588576301729, 24.615422878862773 ], [ 116.377992384840695, 24.838406683821404 ], [ 116.268438348251152, 24.807762560293895 ], [ 115.85600874171007, 24.953076687439136 ], [ 115.888461542166397, 24.999947211194808 ], [ 115.84283125186073, 25.194741522902916 ], [ 115.974554478006667, 25.332045803171241 ], [ 116.027574497564956, 25.636368313047171 ], [ 116.159659458017472, 25.775532945289171 ], [ 116.135164830292638, 25.866328437007724 ], [ 116.329261509111348, 25.961490586921059 ], [ 116.416801385775329, 26.13029165323718 ], [ 116.398973015991828, 26.287543035882379 ], [ 116.505271438426121, 26.409473578442885 ], [ 116.598030634006477, 26.402703965915293 ], [ 116.619889764301092, 26.498227851034471 ], [ 116.542323440174528, 26.562797553364362 ], [ 116.504961379164229, 26.689301458795285 ], [ 116.547749464666026, 26.872933661359355 ], [ 116.669705844748933, 26.986906032987008 ], [ 116.923437127821103, 27.021012478043417 ], [ 117.040122512144194, 27.109534207537649 ], [ 117.156187778842877, 27.282211004734052 ], [ 117.101100701735959, 27.346651515854774 ], [ 117.105751580770743, 27.554080715052919 ], [ 117.287135857733574, 27.772620348350358 ], [ 117.292923619229555, 27.864578559153188 ], [ 117.521798536673032, 27.974442654105189 ], [ 117.613627557165955, 27.859462592124885 ], [ 117.745557488886902, 27.813289700359348 ], [ 117.817387730159567, 27.935091050811309 ], [ 118.363762649126897, 28.093608507126874 ], [ 118.348879836035508, 28.219802354195281 ], [ 118.408101028239798, 28.269876817061458 ], [ 118.735212844397211, 28.325971585420291 ], [ 118.802392205735714, 28.222696234943271 ], [ 118.7481319518281, 27.973202419755864 ], [ 118.819807164369081, 27.909950466141083 ], [ 118.889466994406234, 27.722158310957241 ], [ 118.898613722844971, 27.487728176014514 ], [ 119.256731398635111, 27.419799505842491 ], [ 119.459871454004315, 27.519896754731406 ], [ 119.530306431296708, 27.65838959430431 ], [ 119.604358758849571, 27.669060777033224 ], [ 119.770085077264412, 27.315878201118096 ], [ 120.057922805393105, 27.341716416879137 ], [ 120.234656203321038, 27.413029893314899 ], [ 120.358472935377563, 27.367244574277663 ], [ 120.41920006600003, 27.206366278000075 ] ] ], [ [ [ 118.092539910000028, 24.556219794000071 ], [ 118.181407097000033, 24.535101630000042 ], [ 118.136485222000033, 24.429266669000071 ], [ 118.06999759200005, 24.460272528000075 ], [ 118.092539910000028, 24.556219794000071 ] ] ], [ [ [ 119.846527540000011, 25.536322333000044 ], [ 119.798838738000086, 25.515814520000049 ], [ 119.846527540000011, 25.461167710000041 ], [ 119.771983269000089, 25.450588283000059 ], [ 119.757334832000083, 25.40493398600006 ], [ 119.668467644000089, 25.487860419000071 ], [ 119.778330925000091, 25.522040106000077 ], [ 119.726328972000033, 25.525132554000038 ], [ 119.692718946000014, 25.594224351000037 ], [ 119.763519727000016, 25.659491278000075 ], [ 119.874522332000083, 25.556789455000057 ], [ 119.846527540000011, 25.536322333000044 ] ] ], [ [ [ 119.551036004000025, 25.209458726000037 ], [ 119.52898196700005, 25.165350653000075 ], [ 119.444672071000014, 25.229071356000077 ], [ 119.47038821700005, 25.252183335000041 ], [ 119.551036004000025, 25.209458726000037 ] ] ], [ [ [ 119.346527540000011, 25.56671784100007 ], [ 119.334971550000091, 25.437974351000037 ], [ 119.296885613000086, 25.422919012000079 ], [ 119.281504754000025, 25.482896226000037 ], [ 119.346527540000011, 25.56671784100007 ] ] ], [ [ [ 119.626963738000086, 26.107896226000037 ], [ 119.62037194100003, 26.064195054000038 ], [ 119.55396569100003, 26.095648505000042 ], [ 119.599375847000033, 26.128119208000044 ], [ 119.626963738000086, 26.107896226000037 ] ] ], [ [ [ 120.326833530000044, 26.939683335000041 ], [ 120.344899936000047, 26.971950588000084 ], [ 120.385671420000108, 26.935166734000063 ], [ 120.352549675000091, 26.923773505000042 ], [ 120.326833530000044, 26.939683335000041 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-33", "NAME_1": "Zhejiang" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.25553061200003, 28.140000892000046 ], [ 121.279144727000016, 28.085435289000088 ], [ 121.151572802000032, 28.041232470000068 ], [ 121.12037194100003, 28.135687567000048 ], [ 121.230587604000107, 28.219732518000058 ], [ 121.25553061200003, 28.140000892000046 ] ] ], [ [ [ 122.238780144000089, 30.31313711100006 ], [ 122.202321811000047, 30.241929429000038 ], [ 122.073578321000014, 30.291408596000053 ], [ 122.211436394000089, 30.346625067000048 ], [ 122.238780144000089, 30.31313711100006 ] ] ], [ [ [ 122.398936394000089, 30.45648834800005 ], [ 122.42310631600003, 30.414943752000056 ], [ 122.272797071000014, 30.435980536000045 ], [ 122.280039910000028, 30.482611395000049 ], [ 122.398936394000089, 30.45648834800005 ] ] ], [ [ [ 121.274807312923841, 30.691240300890588 ], [ 120.977758677, 30.543317594000087 ], [ 120.915131056000064, 30.374579169000071 ], [ 120.831791303000045, 30.305250446000059 ], [ 120.787433195000062, 30.29362528200005 ], [ 120.698148226000058, 30.393950619000066 ], [ 120.479144932000054, 30.403523661000065 ], [ 120.430315379000035, 30.389840062000076 ], [ 120.37896691200001, 30.273523748000059 ], [ 120.257904493000069, 30.298081773000035 ], [ 120.147094433, 30.198890965000089 ], [ 120.274387135000097, 30.277618205000067 ], [ 120.384720043000016, 30.24958816600008 ], [ 120.450494314000025, 30.368860059000042 ], [ 120.62160579500005, 30.372562878000053 ], [ 120.734401161000051, 30.232213143000081 ], [ 120.631789022000021, 30.122387742000058 ], [ 120.682465040000011, 30.084906317000048 ], [ 120.79224694100003, 30.066066799000055 ], [ 120.646250847000033, 30.126939195000034 ], [ 120.75142508700003, 30.225625953000076 ], [ 120.892812151000044, 30.169796399000063 ], [ 121.25410242800001, 30.348393234000071 ], [ 121.429591945000084, 30.292976266000039 ], [ 121.72193444100003, 29.960516669000071 ], [ 121.935557488000086, 29.88735586100006 ], [ 122.129143302000102, 29.903776502000085 ], [ 121.873148944000036, 29.753828466000073 ], [ 121.687347852000016, 29.562648830000057 ], [ 121.443369988000086, 29.524237372000073 ], [ 121.442592894000086, 29.415369252000062 ], [ 121.504893425000091, 29.48383209800005 ], [ 121.484864074000029, 29.390540112000053 ], [ 121.710948113000086, 29.538641669000071 ], [ 121.76399931200001, 29.530761435000045 ], [ 121.7783813100001, 29.469423078000091 ], [ 121.81198839800004, 29.490118476000077 ], [ 121.844818556000064, 29.536200262000079 ], [ 121.744965040000011, 29.544663804000038 ], [ 121.79612041300004, 29.600591156000064 ], [ 121.915782097000033, 29.640855210000041 ], [ 121.971202019000089, 29.593329169000071 ], [ 121.910411004000025, 29.524562893000052 ], [ 121.970957879000025, 29.449123440000051 ], [ 121.922555636000084, 29.418146385000057 ], [ 121.900482618000069, 29.298651434000078 ], [ 121.99146569100003, 29.257310289000088 ], [ 121.942963087000066, 29.195868231000077 ], [ 121.785346744000094, 29.168085488000088 ], [ 121.799652540000011, 29.305121161000045 ], [ 121.840586785000028, 29.318793036000045 ], [ 121.788177931000064, 29.328558661000045 ], [ 121.786631707000083, 29.374497789000088 ], [ 121.724328159000038, 29.182034848000058 ], [ 121.652457796000022, 29.183020241000065 ], [ 121.640391472000033, 29.306626695000091 ], [ 121.628916863000086, 29.188421942000048 ], [ 121.574310743000069, 29.305121161000045 ], [ 121.503509962000066, 29.178941148000035 ], [ 121.408539259, 29.161118882000039 ], [ 121.456390821000014, 29.133775132000039 ], [ 121.401703321000014, 29.106512762000079 ], [ 121.621429884, 29.113267320000091 ], [ 121.614756707000083, 29.05805084800005 ], [ 121.536875847000033, 29.06118398600006 ], [ 121.532074415000011, 29.020493882000039 ], [ 121.641937696000014, 29.051255601000037 ], [ 121.689789259, 29.017075914000088 ], [ 121.653819207000083, 28.98859284100007 ], [ 121.717784050000091, 28.948797919000071 ], [ 121.684174024000072, 28.91469961100006 ], [ 121.587412957000083, 28.963120835000041 ], [ 121.570811394000089, 28.930080471000053 ], [ 121.51685631600003, 28.956366278000075 ], [ 121.491791212000066, 28.92837148600006 ], [ 121.669932488000086, 28.825344143000052 ], [ 121.621429884, 28.735907294000071 ], [ 121.351166212000066, 28.711859442000048 ], [ 121.142344597000033, 28.845851955000057 ], [ 121.299327019000089, 28.722886460000041 ], [ 121.258392774000072, 28.675116278000075 ], [ 121.413828972000033, 28.696600653000075 ], [ 121.51012813400007, 28.65705930900009 ], [ 121.581619206000028, 28.504690259000085 ], [ 121.511566602000016, 28.489488023000035 ], [ 121.607742701, 28.477202856000076 ], [ 121.583776933000081, 28.44294618400005 ], [ 121.656341993000069, 28.33930084800005 ], [ 121.621348504000025, 28.285101630000042 ], [ 121.585541212000066, 28.256822007000039 ], [ 121.499986486000012, 28.332673020000072 ], [ 121.408946160000028, 28.304917710000041 ], [ 121.330088738000086, 28.147528387000079 ], [ 121.261694504000047, 28.225790679000056 ], [ 121.225165393, 28.238862571000084 ], [ 121.248871290000011, 28.270209052000041 ], [ 121.203135613000086, 28.331854559000078 ], [ 121.264659050000091, 28.366034247000073 ], [ 121.168955925000091, 28.384833075000074 ], [ 121.130250038000099, 28.305554447000077 ], [ 121.024994337000066, 28.304592190000051 ], [ 121.121803213000021, 28.28436223600005 ], [ 121.124753056000031, 28.235520137000037 ], [ 120.965227775000017, 27.98714491700008 ], [ 120.606049024000072, 28.042222398000035 ], [ 120.576996290000011, 28.115627346000053 ], [ 120.559580925000091, 28.112779039000088 ], [ 120.588959181000064, 28.026678778000075 ], [ 120.835297071000014, 27.955959377000056 ], [ 120.868363681, 27.882559233000052 ], [ 120.722614496, 27.715909536000083 ], [ 120.635264519000089, 27.763332424000055 ], [ 120.675629102000016, 27.659654039000088 ], [ 120.596574425000085, 27.570282778000035 ], [ 120.678070509, 27.466457424000055 ], [ 120.635264519000089, 27.379706122000073 ], [ 120.545909050000091, 27.403265692000048 ], [ 120.504893425000091, 27.344956773000035 ], [ 120.549327019000089, 27.32103099200009 ], [ 120.517832879000025, 27.201605536000045 ], [ 120.468353712000066, 27.182196356000077 ], [ 120.459727410000028, 27.220445054000038 ], [ 120.416505569176593, 27.208649604495633 ], [ 120.351341586744752, 27.374970201213785 ], [ 120.234656203321038, 27.413029893314899 ], [ 120.057922805393105, 27.341716416879137 ], [ 119.770085077264412, 27.315878201118096 ], [ 119.604358758849571, 27.669060777033224 ], [ 119.530306431296708, 27.65838959430431 ], [ 119.459871454004315, 27.519896754731406 ], [ 119.256731398635111, 27.419799505842491 ], [ 118.898613722844971, 27.487728176014514 ], [ 118.889466994406234, 27.722158310957241 ], [ 118.819807164369081, 27.909950466141083 ], [ 118.7481319518281, 27.973202419755864 ], [ 118.800841913023874, 28.230809435507012 ], [ 118.735212844397211, 28.325971585420291 ], [ 118.516001418430619, 28.262280382233826 ], [ 118.446444940281708, 28.288687038775777 ], [ 118.476262242408552, 28.332250271532814 ], [ 118.42551598507464, 28.695199693511029 ], [ 118.227130162426988, 28.958077704122729 ], [ 118.00962405790392, 29.112616074971868 ], [ 118.05199873315496, 29.275319322328869 ], [ 118.162637973563619, 29.330354723491666 ], [ 118.174730258694467, 29.407869370774847 ], [ 118.310535923094335, 29.446910915706155 ], [ 118.319941033951523, 29.491016750822382 ], [ 118.389497512100434, 29.456316026563343 ], [ 118.723740675991394, 29.730201116688193 ], [ 118.73614302038402, 29.82265025480541 ], [ 118.893962843810186, 29.982588813522909 ], [ 118.852725051020229, 30.159270535506778 ], [ 118.909465773626494, 30.222212428960404 ], [ 118.881095412323361, 30.324350897875604 ], [ 118.95432091667692, 30.354788315828102 ], [ 119.237817824133231, 30.298641873323788 ], [ 119.392382033404033, 30.36843089457011 ], [ 119.326287875884759, 30.514959418542333 ], [ 119.242933791161477, 30.556584784060533 ], [ 119.360290969052926, 30.680453192960442 ], [ 119.451448195078115, 30.648129583713285 ], [ 119.578262159770816, 30.855197047705587 ], [ 119.653089633679656, 31.159080308909097 ], [ 119.909404738237981, 31.164919745449879 ], [ 119.94309777214437, 31.086578274068074 ], [ 120.128616164204573, 30.943176173941254 ], [ 120.437796258690355, 30.901163234795433 ], [ 120.490971306980214, 30.76370392489622 ], [ 120.592360467961157, 30.855636298176591 ], [ 120.70532514923616, 30.881655381990242 ], [ 120.692095981644229, 30.976559150384446 ], [ 120.969185011778791, 31.009451199513251 ], [ 120.984894647170222, 30.826490790517539 ], [ 121.09413862539725, 30.840779324406299 ], [ 121.235215284657556, 30.767295436735026 ], [ 121.274807312923841, 30.691240300890588 ] ] ], [ [ [ 121.957530144000089, 29.119533596000053 ], [ 121.935313347000033, 29.062892971000053 ], [ 121.888682488000086, 29.072333075000074 ], [ 121.868174675000091, 29.147406317000048 ], [ 121.926605665000011, 29.16673411700009 ], [ 121.957530144000089, 29.119533596000053 ] ] ], [ [ [ 122.143239780000044, 29.733384507000039 ], [ 122.186859571000014, 29.673407294000071 ], [ 122.162933790000011, 29.654527085000041 ], [ 122.03288821700005, 29.730943101000037 ], [ 122.107432488000086, 29.789618231000077 ], [ 122.143239780000044, 29.733384507000039 ] ] ], [ [ [ 122.395192905000044, 29.883612372000073 ], [ 122.395192905000044, 29.833319403000075 ], [ 122.32545006600003, 29.953924872000073 ], [ 122.406748894000089, 29.952704169000071 ], [ 122.395192905000044, 29.883612372000073 ] ] ], [ [ [ 121.881846550000091, 30.076361395000049 ], [ 121.910492384, 30.024115302000041 ], [ 121.860118035000028, 29.978094794000071 ], [ 121.834727410000028, 30.044989325000074 ], [ 121.881846550000091, 30.076361395000049 ] ] ], [ [ [ 122.327484571000014, 30.024481512000079 ], [ 122.293630405000044, 29.933783270000049 ], [ 122.098968946000014, 30.014471747000073 ], [ 122.019053582000083, 29.997219143000052 ], [ 121.963145379000025, 30.142401434000078 ], [ 122.103282097000033, 30.143703518000052 ], [ 122.327484571000014, 30.024481512000079 ] ] ], [ [ [ 121.074002263000011, 27.479483886000082 ], [ 121.10336493, 27.451879507000058 ], [ 121.067263555000068, 27.436770104000061 ], [ 121.046108644000014, 27.465199494000046 ], [ 121.074002263000011, 27.479483886000082 ] ] ], [ [ [ 121.181651238000086, 27.864650783000059 ], [ 121.171234571000014, 27.818793036000045 ], [ 121.097992384, 27.81781647300005 ], [ 121.114024285000028, 27.844142971000053 ], [ 121.181651238000086, 27.864650783000059 ] ] ], [ [ [ 121.049327019000089, 27.950873114000046 ], [ 121.070160352000016, 27.982896226000037 ], [ 121.139659050000091, 27.965765692000048 ], [ 121.103282097000033, 27.946193752000056 ], [ 121.049327019000089, 27.950873114000046 ] ] ], [ [ [ 121.862152540000011, 29.129584052000041 ], [ 121.842051629000025, 29.095038153000075 ], [ 121.782725457000083, 29.124660549000055 ], [ 121.789805535000028, 29.14984772300005 ], [ 121.862152540000011, 29.129584052000041 ] ] ], [ [ [ 122.304698113000086, 29.817450262000079 ], [ 122.308360222000033, 29.776271877000056 ], [ 122.23170006600003, 29.83624909100007 ], [ 122.27116946700005, 29.846828518000052 ], [ 122.304698113000086, 29.817450262000079 ] ] ], [ [ [ 121.972178582000083, 29.94476959800005 ], [ 121.992442254000025, 29.908270575000074 ], [ 121.946136915000011, 29.903957424000055 ], [ 121.940928582000083, 29.937689520000049 ], [ 121.972178582000083, 29.94476959800005 ] ] ], [ [ [ 122.345713738000086, 30.241929429000038 ], [ 122.305349155000044, 30.240139065000051 ], [ 122.277598504000025, 30.235541083000044 ], [ 122.323985222000033, 30.272162177000041 ], [ 122.407725457000083, 30.26593659100007 ], [ 122.345713738000086, 30.241929429000038 ] ] ], [ [ [ 122.529307488000086, 30.720770575000074 ], [ 122.524750196000014, 30.70180898600006 ], [ 122.427256707000083, 30.703924872000073 ], [ 122.429942254000025, 30.743068752000056 ], [ 122.529307488000086, 30.720770575000074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-31", "NAME_1": "Shanghai" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.837738477000016, 31.375148830000057 ], [ 121.881846550000091, 31.336615302000041 ], [ 121.834727410000028, 31.292547919000071 ], [ 121.79420006600003, 31.368801174000055 ], [ 121.837738477000016, 31.375148830000057 ] ] ], [ [ [ 121.340912306000064, 31.49095286700009 ], [ 121.725163995, 31.281567150000058 ], [ 121.950820062000048, 30.982080909000047 ], [ 121.960075378000056, 30.874256782000089 ], [ 121.542937038000105, 30.816494909000085 ], [ 121.274807312923841, 30.691240300890588 ], [ 121.235215284657556, 30.767295436735026 ], [ 121.09413862539725, 30.840779324406299 ], [ 120.984894647170222, 30.826490790517539 ], [ 120.984274530445191, 30.992372138563326 ], [ 120.909343702849583, 31.011724961737571 ], [ 120.865212030210955, 31.135722560947386 ], [ 121.062977736133575, 31.153680121040736 ], [ 121.061272413790789, 31.266618963894075 ], [ 121.128865188077953, 31.280261541736763 ], [ 121.18043826681253, 31.451233019288395 ], [ 121.340912306000064, 31.49095286700009 ] ] ], [ [ [ 121.844075352, 31.607946968000078 ], [ 121.980085675000055, 31.540295811000078 ], [ 121.977850604000082, 31.477771002000054 ], [ 121.851373504000094, 31.439178905000063 ], [ 121.57154381600003, 31.529364325000074 ], [ 121.314463738000086, 31.655585028000075 ], [ 121.176287604000095, 31.784322892000034 ], [ 121.219300745000055, 31.829472772000088 ], [ 121.322563521, 31.82933065800006 ], [ 121.844075352, 31.607946968000078 ] ] ], [ [ [ 121.762380405000044, 31.37376536700009 ], [ 121.766368035000028, 31.32062409100007 ], [ 121.584483269000089, 31.441392320000034 ], [ 121.691254102000016, 31.419175523000035 ], [ 121.762380405000044, 31.37376536700009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-32", "NAME_1": "Jiangsu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.880707227000016, 32.125189520000049 ], [ 119.901866082000083, 32.073391018000052 ], [ 119.792002800000091, 32.121771552000041 ], [ 119.819346550000091, 32.20376211100006 ], [ 119.716156446000014, 32.272650458000044 ], [ 119.814300977000016, 32.275580145000049 ], [ 119.880707227000016, 32.125189520000049 ] ] ], [ [ [ 119.280284050000091, 35.076605536000045 ], [ 119.212657097000033, 35.058010158000059 ], [ 119.192881707000083, 35.000433661000045 ], [ 119.192230665000011, 34.71820709800005 ], [ 119.346690300000091, 34.780829169000071 ], [ 119.442230665000011, 34.746039130000042 ], [ 119.456553582000083, 34.684556382000039 ], [ 119.64771569100003, 34.53384023600006 ], [ 120.25709069100003, 34.311835028000075 ], [ 120.39966881600003, 33.869330145000049 ], [ 120.504893425000091, 33.735581773000035 ], [ 120.483734571000014, 33.649969794000071 ], [ 120.634369337000066, 33.466945705000057 ], [ 120.66724694100003, 33.325100002000056 ], [ 120.750254754000025, 33.269598700000074 ], [ 120.730235222000033, 33.204901434000078 ], [ 120.806976759, 33.137762762000079 ], [ 120.825938347000033, 33.030178127000056 ], [ 120.89576256600003, 33.013576565000051 ], [ 120.904795769000089, 32.812648830000057 ], [ 120.830332879000025, 32.697658596000053 ], [ 121.10084069100003, 32.497951565000051 ], [ 121.38940888400009, 32.384947575000069 ], [ 121.419281446000014, 32.25031159100007 ], [ 121.360850457000083, 32.231634833000044 ], [ 121.443369988000086, 32.114325262000079 ], [ 121.655365431000064, 32.062933661000045 ], [ 121.821945116000052, 31.952486444000044 ], [ 121.93038277800008, 31.726714179000055 ], [ 121.871997941000018, 31.690681688000041 ], [ 121.675554272, 31.723572594000075 ], [ 121.286418364000042, 31.890589166000041 ], [ 121.115087061000054, 31.796333603000051 ], [ 120.977816792, 31.814365316000078 ], [ 120.810801629000025, 32.022609768000052 ], [ 120.634376476000057, 32.077009598000075 ], [ 120.490757629000086, 32.08245338200004 ], [ 120.267100457000083, 31.94867584800005 ], [ 120.131358269000089, 31.943182684000078 ], [ 119.992035352000016, 32.015855210000041 ], [ 119.912201368000069, 32.123724677000041 ], [ 119.922129754000025, 32.21743398600006 ], [ 119.842133009, 32.299058335000041 ], [ 119.612884962000066, 32.354559637000079 ], [ 119.685394727000016, 32.29242584800005 ], [ 119.606049024000072, 32.196926174000055 ], [ 119.690440300000091, 32.235337632000039 ], [ 119.788584832000083, 32.198635158000059 ], [ 119.772471550000091, 32.126776434000078 ], [ 120.006395532000056, 31.950304999000082 ], [ 120.229991082000083, 31.908880927000041 ], [ 120.455781043, 31.982518923000043 ], [ 120.469493035000028, 32.025132554000038 ], [ 120.750353874000098, 31.97833627600005 ], [ 120.824798601, 31.828702466000038 ], [ 120.717133009, 31.861070054000038 ], [ 120.731455925000091, 31.813869533000059 ], [ 121.144402290000016, 31.684658291000062 ], [ 121.340912306000064, 31.49095286700009 ], [ 121.18043826681253, 31.451233019288395 ], [ 121.128865188077953, 31.280261541736763 ], [ 121.061272413790789, 31.266618963894075 ], [ 121.062977736133575, 31.153680121040736 ], [ 120.865212030210955, 31.135722560947386 ], [ 120.894254185082559, 30.997565619058037 ], [ 120.686514926622522, 30.973381048796341 ], [ 120.70532514923616, 30.881655381990242 ], [ 120.592360467961157, 30.855636298176591 ], [ 120.490971306980214, 30.76370392489622 ], [ 120.437796258690355, 30.901163234795433 ], [ 120.128616164204573, 30.943176173941254 ], [ 119.94309777214437, 31.086578274068074 ], [ 119.909404738237981, 31.164919745449879 ], [ 119.574954868772124, 31.13311290103951 ], [ 119.362771437751576, 31.192359930766145 ], [ 119.344581332762232, 31.2875220815788 ], [ 118.799291620312033, 31.230884710860721 ], [ 118.737383253834082, 31.333875841396946 ], [ 118.827248569565768, 31.397541205262371 ], [ 118.880940382692415, 31.522443142037332 ], [ 118.865747512137887, 31.620680039851948 ], [ 118.777277460386472, 31.674165147403585 ], [ 118.673924594644291, 31.649773871566879 ], [ 118.680125767290292, 31.709537665231039 ], [ 118.484168735598587, 31.784442654404984 ], [ 118.460397577386289, 31.890663561574115 ], [ 118.350223423172338, 31.95239105910008 ], [ 118.507888217866935, 32.19751821519344 ], [ 118.665397983829848, 32.249737249974089 ], [ 118.666793247810119, 32.458871772414341 ], [ 118.597340123347976, 32.486854560089853 ], [ 118.558892856719922, 32.587468573815613 ], [ 118.897476841283151, 32.595530097535971 ], [ 119.080514763745327, 32.446081855293357 ], [ 119.199370559303816, 32.593721422405679 ], [ 119.153378533792306, 32.824534207087993 ], [ 118.992974887980608, 32.962045192931271 ], [ 118.857375930055127, 32.972302965409483 ], [ 118.720175001674988, 32.732136745814159 ], [ 118.381435988380076, 32.729837144268799 ], [ 118.299683873212189, 32.77740530001455 ], [ 118.237465448371722, 32.911247260552614 ], [ 118.299063754688518, 32.967962143837838 ], [ 118.24842085194075, 33.013411566990214 ], [ 118.209043410225149, 33.193969020753684 ], [ 118.166462030298362, 33.212339992896318 ], [ 118.080730828764672, 33.149553128174318 ], [ 117.931851027302969, 33.2351292991778 ], [ 118.052928908242507, 33.476923325850805 ], [ 118.115457391445375, 33.484442247211916 ], [ 118.121503533561167, 33.611256211904617 ], [ 118.176745640299032, 33.692620755243638 ], [ 118.144189487954463, 33.755614325540648 ], [ 117.726902296803473, 33.727915757805931 ], [ 117.74865807520996, 33.875710354549199 ], [ 117.690935499773445, 33.883513494951785 ], [ 117.634453159585632, 34.00138743678076 ], [ 117.159443393897504, 34.091175239046038 ], [ 117.018418409681772, 34.170653591090343 ], [ 116.949482050056531, 34.389296576275967 ], [ 116.814503207956591, 34.392087104236452 ], [ 116.377217237585455, 34.639539700296893 ], [ 116.470028110908515, 34.898257758288878 ], [ 116.818533970266458, 34.962078151785249 ], [ 116.967672154146499, 34.851516424843112 ], [ 117.181819289028908, 34.450145575557826 ], [ 117.336951939080677, 34.588612575809691 ], [ 117.546603224559135, 34.462444566263684 ], [ 117.671195102971524, 34.532827866712637 ], [ 117.768501824799273, 34.523241888702159 ], [ 117.790050896731486, 34.651166897434337 ], [ 117.928130324254994, 34.677831936394739 ], [ 118.076958448873256, 34.640754096224555 ], [ 118.152871128399852, 34.541509508057345 ], [ 118.165428500624785, 34.399244290391664 ], [ 118.342782017076388, 34.418571275144188 ], [ 118.409858025627386, 34.471694648389303 ], [ 118.464014926747382, 34.680880845874299 ], [ 118.680745884015323, 34.683852240988131 ], [ 118.745961542391228, 34.730076808697731 ], [ 118.866781040912315, 35.036311347390722 ], [ 119.076277296759827, 35.049824734024241 ], [ 119.193582797807835, 35.110027778159406 ], [ 119.280284050000091, 35.076605536000045 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-37", "NAME_1": "Shandong" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.837159029465624, 38.270907582019277 ], [ 118.084808790000011, 38.138739325000074 ], [ 118.542979363000086, 38.068345445000034 ], [ 118.654870943000105, 38.145694596000055 ], [ 118.840098504000025, 38.152573960000041 ], [ 118.950036761000092, 38.097261868000089 ], [ 118.924815300000091, 38.057766018000052 ], [ 118.996592644000089, 37.963120835000041 ], [ 119.259597456000051, 37.715847412000073 ], [ 119.255663536000043, 37.67186657700006 ], [ 119.120140997000021, 37.737507864000065 ], [ 119.037127726000108, 37.722088826000061 ], [ 118.957855665000011, 37.531398830000057 ], [ 118.961192254000025, 37.29564036700009 ], [ 119.287119988000086, 37.137274481000077 ], [ 119.770599806000064, 37.151841539000088 ], [ 119.897308790000011, 37.249416408000059 ], [ 119.858897332000083, 37.360174872000073 ], [ 120.187591993000069, 37.511786200000074 ], [ 120.322520379000025, 37.632391669000071 ], [ 120.215668165000011, 37.684068101000037 ], [ 120.368500196000014, 37.694728908000059 ], [ 120.738047722000033, 37.833970445000034 ], [ 120.925791863000086, 37.819281317000048 ], [ 121.032562696000014, 37.71039459800005 ], [ 121.13795006600003, 37.701157945000034 ], [ 121.171641472000033, 37.577093817000048 ], [ 121.393565300000091, 37.622463283000059 ], [ 121.429779493000069, 37.596869208000044 ], [ 121.381683790000011, 37.566107489000046 ], [ 121.570323113000086, 37.428656317000048 ], [ 121.676117384, 37.439195054000038 ], [ 121.587412957000083, 37.453558661000045 ], [ 121.635020379000025, 37.481268622000073 ], [ 121.937836134, 37.464260158000059 ], [ 121.988047722000033, 37.425604559000078 ], [ 122.025645379000025, 37.528021552000041 ], [ 122.121836785000028, 37.562730210000041 ], [ 122.183197462000066, 37.418158270000049 ], [ 122.24537194100003, 37.45970286700009 ], [ 122.296478712000066, 37.418158270000049 ], [ 122.68873131600003, 37.389715887000079 ], [ 122.570811394000089, 37.344794012000079 ], [ 122.594737175000091, 37.29523346600007 ], [ 122.549652540000011, 37.31976959800005 ], [ 122.628916863000086, 37.19281647300005 ], [ 122.470713738000086, 37.110296942000048 ], [ 122.453949415000011, 37.154282945000034 ], [ 122.457041863000086, 37.065904039000088 ], [ 122.402354363000086, 37.021470445000034 ], [ 122.540049675000091, 37.027736721000053 ], [ 122.526459181000064, 36.914252020000049 ], [ 122.405772332000083, 36.92218659100007 ], [ 122.436371290000011, 36.870672919000071 ], [ 122.355235222000033, 36.829087632000039 ], [ 122.185313347000033, 36.84992096600007 ], [ 122.196869337000066, 36.898016669000071 ], [ 122.265879754000025, 36.898016669000071 ], [ 122.162689649000072, 36.945786851000037 ], [ 122.166107618000069, 37.014105536000045 ], [ 122.142914259, 36.945786851000037 ], [ 122.033050977000016, 36.898016669000071 ], [ 122.049164259, 36.97992584800005 ], [ 121.926280144000089, 36.99359772300005 ], [ 121.949799024000072, 36.93891022300005 ], [ 121.637461785000028, 36.831366278000075 ], [ 121.625254754000025, 36.740383205000057 ], [ 121.496429884, 36.774481512000079 ], [ 121.607188347000033, 36.844956773000035 ], [ 121.459483269000089, 36.828680731000077 ], [ 121.401703321000014, 36.712388414000088 ], [ 121.157725457000083, 36.66860586100006 ], [ 121.023529493000069, 36.583929755000042 ], [ 120.850596550000091, 36.650946356000077 ], [ 120.750580274000072, 36.616848049000055 ], [ 120.750254754000025, 36.540757554000038 ], [ 120.850352410000028, 36.604559637000079 ], [ 120.963633660000028, 36.547919012000079 ], [ 120.87427819100003, 36.380601304000038 ], [ 120.832041863000086, 36.455267645000049 ], [ 120.750580274000072, 36.459173895000049 ], [ 120.686534050000091, 36.387152411000045 ], [ 120.722178582000083, 36.330552476000037 ], [ 120.64771569100003, 36.330877997000073 ], [ 120.696787957000083, 36.14398834800005 ], [ 120.353526238000086, 36.040838934000078 ], [ 120.292002800000091, 36.06195709800005 ], [ 120.361582879000025, 36.191636460000041 ], [ 120.306407097000033, 36.274237372000073 ], [ 120.284515821000014, 36.175970770000049 ], [ 120.097178582000083, 36.226385809000078 ], [ 120.089691602000016, 36.111721096000053 ], [ 120.168467644000089, 36.06195709800005 ], [ 120.175303582000083, 35.993638414000088 ], [ 120.242767774000072, 35.973578192000048 ], [ 120.284922722000033, 36.010931708000044 ], [ 120.298838738000086, 35.973130601000037 ], [ 120.175303582000083, 35.890041408000059 ], [ 120.188975457000083, 35.945257880000042 ], [ 120.097178582000083, 35.900824286000045 ], [ 120.002940300000091, 35.727769273000035 ], [ 119.908213738000086, 35.74485911700009 ], [ 119.904551629000025, 35.624579169000071 ], [ 119.860199415000011, 35.60610586100006 ], [ 119.840098504000025, 35.657904364000046 ], [ 119.743907097000033, 35.575913804000038 ], [ 119.732513868000069, 35.620835679000038 ], [ 119.647959832000083, 35.583929755000042 ], [ 119.551524285000028, 35.380031643000052 ], [ 119.423920118000069, 35.313462632000039 ], [ 119.358002149000072, 35.09711334800005 ], [ 119.193582797807835, 35.110027778159406 ], [ 119.076277296759827, 35.049824734024241 ], [ 118.861820102615638, 35.032745673074317 ], [ 118.745961542391228, 34.730076808697731 ], [ 118.680745884015323, 34.683852240988131 ], [ 118.464014926747382, 34.680880845874299 ], [ 118.409858025627386, 34.471694648389303 ], [ 118.342782017076388, 34.418571275144188 ], [ 118.165428500624785, 34.399244290391664 ], [ 118.152871128399852, 34.541509508057345 ], [ 118.076958448873256, 34.640754096224555 ], [ 117.928130324254994, 34.677831936394739 ], [ 117.790050896731486, 34.651166897434337 ], [ 117.768501824799273, 34.523241888702159 ], [ 117.671195102971524, 34.532827866712637 ], [ 117.546603224559135, 34.462444566263684 ], [ 117.336951939080677, 34.588612575809691 ], [ 117.181819289028908, 34.450145575557826 ], [ 116.967672154146499, 34.851516424843112 ], [ 116.818533970266458, 34.962078151785249 ], [ 116.470028110908515, 34.898257758288878 ], [ 116.377217237585455, 34.639539700296893 ], [ 116.243323602002533, 34.568329575749317 ], [ 115.993674758083557, 34.621607977725944 ], [ 115.816424595318722, 34.571430162072318 ], [ 115.541712681095305, 34.577527981031494 ], [ 115.442803989712274, 34.660055243454678 ], [ 115.429264763757828, 34.779712021992225 ], [ 115.306533238218321, 34.846917223551031 ], [ 115.216047804862228, 34.835729275085953 ], [ 115.181631301443417, 34.939986477493903 ], [ 114.834210646803854, 35.016183376961237 ], [ 114.851573927694517, 35.178163153906382 ], [ 114.941749301788832, 35.218832505915373 ], [ 115.068356560906523, 35.380114650870439 ], [ 115.340381300856279, 35.48517283805603 ], [ 115.341621535205604, 35.555452785717478 ], [ 115.504247268196877, 35.722832750530984 ], [ 115.61798709492848, 35.731256008557921 ], [ 115.761337518211803, 35.84918162723028 ], [ 115.873785434650017, 35.865511380246005 ], [ 115.863450148705397, 35.925042629913435 ], [ 115.965717807930446, 35.985917466717694 ], [ 116.033672317423452, 35.96581533470993 ], [ 116.091704950323106, 36.068238023565925 ], [ 116.077287225225177, 36.103119614978255 ], [ 115.926908806995812, 36.021987617434547 ], [ 115.833167758585091, 36.032426256166787 ], [ 115.669198440255741, 35.943775336362648 ], [ 115.468228794323409, 35.912924506360866 ], [ 115.40399498877764, 35.812568875053501 ], [ 115.320330844792579, 35.781072089005704 ], [ 115.335730421821495, 35.936437283054147 ], [ 115.423993767997899, 35.994599107163026 ], [ 115.460322300233884, 36.157870795300937 ], [ 115.448850131828067, 36.249157213434614 ], [ 115.354178908329914, 36.302952379348824 ], [ 115.276147496209887, 36.479737454120198 ], [ 115.477840610755493, 36.753570868300926 ], [ 115.664392530690748, 36.81527252920381 ], [ 115.773016392192744, 36.945703844157038 ], [ 115.975019566000128, 37.321701564775367 ], [ 116.226528761892837, 37.363456122402113 ], [ 116.256501092751137, 37.39425527645983 ], [ 116.219914178996078, 37.462364813785086 ], [ 116.350087110631648, 37.620908108522372 ], [ 116.425172967858089, 37.480709947506057 ], [ 116.792799107292922, 37.83825918251523 ], [ 117.420616083065738, 37.846682441441487 ], [ 117.568669061328023, 38.048918159245659 ], [ 117.754084099701345, 38.128163967293233 ], [ 117.775168085438736, 38.235805975964979 ], [ 117.837159029465624, 38.270907582019277 ] ] ], [ [ [ 120.748383009, 37.938706773000035 ], [ 120.757334832000083, 37.922674872000073 ], [ 120.754567905000044, 37.896673895000049 ], [ 120.722422722000033, 37.919094143000052 ], [ 120.748383009, 37.938706773000035 ] ] ], [ [ [ 120.606781446000014, 37.979885158000059 ], [ 120.625824415000011, 37.972560940000051 ], [ 120.622894727000016, 37.948797919000071 ], [ 120.601898634, 37.969305731000077 ], [ 120.606781446000014, 37.979885158000059 ] ] ], [ [ [ 120.720062696000014, 37.980943101000037 ], [ 120.720469597000033, 37.964016018000052 ], [ 120.688243035000028, 37.985256252000056 ], [ 120.704112175000091, 37.989650783000059 ], [ 120.720062696000014, 37.980943101000037 ] ] ], [ [ [ 120.760427280000044, 38.170477606000077 ], [ 120.773285352000016, 38.159735419000071 ], [ 120.742686394000089, 38.187567450000074 ], [ 120.760427280000044, 38.170477606000077 ] ] ], [ [ [ 120.806488477000016, 38.288234768000052 ], [ 120.807383660000028, 38.304877020000049 ], [ 120.833750847000033, 38.312567450000074 ], [ 120.836192254000025, 38.304266669000071 ], [ 120.806488477000016, 38.288234768000052 ] ] ], [ [ [ 120.914235873000052, 38.384100653000075 ], [ 120.906911655000044, 38.392564195000034 ], [ 120.917816602000016, 38.395453192000048 ], [ 120.924571160000028, 38.386867580000057 ], [ 120.914235873000052, 38.384100653000075 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-13", "NAME_1": "Hebei" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.543549024000072, 38.621323960000041 ], [ 117.837159029465624, 38.270907582019277 ], [ 117.775168085438736, 38.235805975964979 ], [ 117.754084099701345, 38.128163967293233 ], [ 117.568669061328023, 38.048918159245659 ], [ 117.413174676969675, 37.843685207905992 ], [ 116.781947055612136, 37.83384084747712 ], [ 116.425172967858089, 37.480709947506057 ], [ 116.350087110631648, 37.620908108522372 ], [ 116.219914178996078, 37.462364813785086 ], [ 116.256501092751137, 37.39425527645983 ], [ 116.226528761892837, 37.363456122402113 ], [ 115.977189976336263, 37.323794460745773 ], [ 115.773016392192744, 36.945703844157038 ], [ 115.664392530690748, 36.81527252920381 ], [ 115.477840610755493, 36.753570868300926 ], [ 115.276147496209887, 36.479737454120198 ], [ 115.349838087657531, 36.308972683042839 ], [ 115.455826450830045, 36.227091375766349 ], [ 115.460322300233884, 36.157870795300937 ], [ 115.349683058925962, 36.082190659771129 ], [ 115.189796177051903, 36.182933864706058 ], [ 115.106080357122778, 36.184561673582323 ], [ 114.930690546331562, 36.056559150484361 ], [ 114.842272169624835, 36.148646552496359 ], [ 114.560635614142257, 36.134383857029377 ], [ 114.343077833675011, 36.244713039974783 ], [ 114.073533563323281, 36.27161062293186 ], [ 113.989300978557253, 36.359021308386673 ], [ 113.721048619398175, 36.355869046119551 ], [ 113.535116815288802, 36.483380641903068 ], [ 113.547364130050482, 36.548518785013869 ], [ 113.45501834472077, 36.640192775875903 ], [ 113.440290562159703, 36.725148831053673 ], [ 113.607773878861394, 36.76907379811729 ], [ 113.679242384928102, 36.87159983976079 ], [ 113.770813023002574, 36.868189195075274 ], [ 113.75432824125528, 37.11494415914558 ], [ 114.05151940339772, 37.497969876508591 ], [ 114.106451450873692, 37.669380601833268 ], [ 113.790656772591888, 38.152865302391774 ], [ 113.539457635961071, 38.252135728980704 ], [ 113.534496697664395, 38.53728628193636 ], [ 113.825124952854253, 38.810267035395327 ], [ 113.754224887568512, 38.931267401969023 ], [ 113.853340285425816, 39.072292385285323 ], [ 114.02118533733335, 39.1192662618285 ], [ 114.116683384030921, 39.065574448701796 ], [ 114.267991978247096, 39.082085068870811 ], [ 114.405606316877993, 39.183913479423495 ], [ 114.540946893284399, 39.531230781275497 ], [ 114.402143996248356, 39.658458157118218 ], [ 114.388088007255647, 39.857619127021053 ], [ 114.058030634406236, 39.924488429997041 ], [ 113.924447056286567, 40.02908152918917 ], [ 113.995967238297339, 40.131814277307058 ], [ 114.060821160568025, 40.086674913416516 ], [ 114.099630162402036, 40.196823229208633 ], [ 114.510767856851089, 40.333559067796728 ], [ 114.295122105200903, 40.366787013709711 ], [ 114.256209750579501, 40.557473048742168 ], [ 114.156267531321419, 40.663874823963909 ], [ 114.154097120985284, 40.74257803055167 ], [ 113.822799513786435, 41.094184475333236 ], [ 113.987699009001972, 41.169838772441381 ], [ 113.980257602906022, 41.24864533091727 ], [ 113.91028771360709, 41.286110744715074 ], [ 113.927961053759532, 41.418350734798537 ], [ 114.016741163873576, 41.525475979532814 ], [ 114.190373977277204, 41.584206244422603 ], [ 114.231921828429563, 41.826904609560074 ], [ 114.419713982714029, 41.956302394839611 ], [ 114.522911818825378, 42.115879218351211 ], [ 114.804858432670471, 42.178407701554136 ], [ 114.923094109705403, 41.927105211236494 ], [ 114.931310663056593, 41.838609321063302 ], [ 114.868885532641229, 41.795898749028026 ], [ 114.877153761936484, 41.612447415415886 ], [ 115.239973992705586, 41.586040757974558 ], [ 115.341311476843089, 41.615858059202026 ], [ 115.339761184131248, 41.720838731122512 ], [ 115.880089960083524, 41.933409735770681 ], [ 115.937347446627314, 41.927466946442394 ], [ 116.05661665243656, 41.798482571413501 ], [ 116.377527296847234, 42.009684150503119 ], [ 116.599735956349264, 41.923720404972698 ], [ 116.797294956696874, 41.986998196109823 ], [ 116.889434034652936, 42.063375962730447 ], [ 116.854242384878148, 42.117274482331482 ], [ 116.884783155618038, 42.203160711697478 ], [ 116.826595493986815, 42.308167222938948 ], [ 116.887108595585119, 42.395371201919431 ], [ 117.103426140803663, 42.476115628533421 ], [ 117.412399529714435, 42.458080553174966 ], [ 117.529394973299304, 42.620241197273401 ], [ 117.593628777945696, 42.551589056689579 ], [ 117.801884800343259, 42.609750881697835 ], [ 117.80576053302218, 42.559521389200711 ], [ 118.024248487677482, 42.382632962541152 ], [ 118.041301711105007, 42.278246568024656 ], [ 117.989315220321146, 42.221609199105217 ], [ 118.098559197648797, 42.175643012015371 ], [ 118.124810826358498, 42.029321194517479 ], [ 118.188992955060826, 42.026737372132004 ], [ 118.232297805399298, 42.084201565150067 ], [ 118.277152948449725, 42.062445786743638 ], [ 118.302887811423261, 41.785563463083349 ], [ 118.263200311345258, 41.752335517170366 ], [ 118.183411900039118, 41.796673896283266 ], [ 118.151630894050527, 41.75047516519669 ], [ 118.231212599781657, 41.599424954298172 ], [ 118.313636509417279, 41.569555976227321 ], [ 118.294722934915512, 41.460622057262128 ], [ 118.358905063617726, 41.322620144104349 ], [ 118.808903435844854, 41.382849025761914 ], [ 118.867142776118158, 41.336546942787152 ], [ 119.238282912126692, 41.319829617043183 ], [ 119.163507115061293, 41.176401679393962 ], [ 118.937112665417089, 41.060543118270289 ], [ 119.010338168871385, 40.976258857560197 ], [ 118.902179397161376, 40.956621811747198 ], [ 118.849262730390592, 40.82983368637548 ], [ 119.061549514198646, 40.651369126783777 ], [ 119.190998977220943, 40.700410060875583 ], [ 119.189758741972355, 40.620104884732598 ], [ 119.293628370752685, 40.530704657893637 ], [ 119.563689405941318, 40.540058091907383 ], [ 119.634744500858005, 40.209070543071107 ], [ 119.742593215104762, 40.205194811291506 ], [ 119.741818068748785, 40.090473130830276 ], [ 119.850189649000072, 39.986314195000034 ], [ 119.535592388000055, 39.890825588000041 ], [ 119.530698935000032, 39.814702212000043 ], [ 119.367865716000097, 39.748348207000049 ], [ 119.284922722000033, 39.595445054000038 ], [ 119.208588087000066, 39.569566148000035 ], [ 119.229340040000011, 39.535956122000073 ], [ 119.281398136, 39.575013724000087 ], [ 119.279429329000095, 39.384005608000052 ], [ 119.184804225000107, 39.354814110000063 ], [ 118.910411004000025, 39.125433661000045 ], [ 118.96998131600003, 39.193304755000042 ], [ 118.880625847000033, 39.172796942000048 ], [ 118.873789910000028, 39.213812567000048 ], [ 118.795990592000066, 39.151777127000059 ], [ 118.527110222000033, 39.149237372000073 ], [ 118.32609628900002, 39.030932246000077 ], [ 118.235284622000108, 39.053097566000076 ], [ 118.096403590000023, 39.202391937000073 ], [ 118.009563314133601, 39.21855181175426 ], [ 118.007918735561134, 39.342663478836471 ], [ 117.87619551031446, 39.424596462956401 ], [ 117.905082635555118, 39.553890896347752 ], [ 117.756254510936856, 39.581511948817365 ], [ 117.713569777323301, 39.533142809193293 ], [ 117.62478966720937, 39.578463040237068 ], [ 117.62727013590802, 39.660473537823464 ], [ 117.533115676347393, 39.750416367921048 ], [ 117.502988315858033, 39.992908027483452 ], [ 117.772687615840709, 39.9648994004869 ], [ 117.755324334950046, 40.058175360904158 ], [ 117.287962680932878, 40.297850654084414 ], [ 117.184144728995989, 40.497270006405643 ], [ 117.243107537882565, 40.570159613974965 ], [ 117.411779412989517, 40.597367255294557 ], [ 117.485935093329886, 40.661936956725128 ], [ 117.07273034133209, 40.673538316340228 ], [ 116.958835484070278, 40.718341783446533 ], [ 116.668052199249587, 40.947940172201186 ], [ 116.642730748325334, 41.045608629234835 ], [ 116.454060093098747, 40.902826645832988 ], [ 116.350862257886888, 40.926132716951315 ], [ 116.468012730203327, 40.765574042408105 ], [ 116.22611534984344, 40.7647472192088 ], [ 116.039408401176729, 40.601914781541893 ], [ 115.887944777329608, 40.613102729107652 ], [ 115.727851189880425, 40.556026108817832 ], [ 115.943031854436526, 40.271521511008928 ], [ 115.845001662196864, 40.160572211338433 ], [ 115.577627802181269, 40.096312568270378 ], [ 115.425234003246601, 39.985466620488125 ], [ 115.56569054578199, 39.8007233747839 ], [ 115.440943637738656, 39.770053411935407 ], [ 115.471949498270646, 39.629157619828277 ], [ 115.66036177017952, 39.595516261865953 ], [ 115.755911492821042, 39.508958238032221 ], [ 115.938070917039113, 39.575465806701573 ], [ 116.195522902260109, 39.577842923512094 ], [ 116.317634311973848, 39.460899155871346 ], [ 116.410393507554318, 39.440435289556945 ], [ 116.464602084618491, 39.466299342840387 ], [ 116.428273554181146, 39.521412258369025 ], [ 116.564389276044153, 39.597531643470575 ], [ 116.793419224017953, 39.602311712815265 ], [ 116.853157180159656, 39.352249456846948 ], [ 116.826130405993354, 39.216547146133848 ], [ 116.91010460834093, 39.130066637565221 ], [ 116.695802443827688, 38.993382473122608 ], [ 116.723449334719021, 38.803213202027621 ], [ 116.897495559272556, 38.692780667194029 ], [ 117.035626661840979, 38.707715156229426 ], [ 117.07273034133209, 38.62415436503187 ], [ 117.255664911006761, 38.561367499410551 ], [ 117.543549024000072, 38.621323960000041 ] ] ], [ [ [ 118.6327429910001, 39.074580773000037 ], [ 118.648736281000083, 39.04465116700004 ], [ 118.594320566000079, 38.972197399000038 ], [ 118.480275913000014, 38.934819522000055 ], [ 118.478482745000065, 39.042857813000069 ], [ 118.559717761, 39.003125154000088 ], [ 118.6327429910001, 39.074580773000037 ] ] ], [ [ [ 117.239076775572698, 40.092617702744747 ], [ 117.148436314384298, 39.955752672048163 ], [ 117.179648878692774, 39.879400742949883 ], [ 117.263106317102825, 39.851237088121081 ], [ 117.184299757727558, 39.808784898504257 ], [ 117.169416944636282, 39.627245591910537 ], [ 116.875636428078678, 39.686466783215451 ], [ 116.928708123581032, 39.801395169251634 ], [ 116.784427525210049, 39.885627753118285 ], [ 116.76499718587138, 40.018952948819503 ], [ 117.239076775572698, 40.092617702744747 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-12", "NAME_1": "Tianjin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.009563314133601, 39.21855181175426 ], [ 117.715424024000072, 39.111395575000074 ], [ 117.775263945, 38.981058362000056 ], [ 117.701914910000028, 38.995306708000044 ], [ 117.583994988000086, 38.811590887000079 ], [ 117.543549024000072, 38.621323960000041 ], [ 117.248533563273327, 38.563150336119122 ], [ 117.07273034133209, 38.62415436503187 ], [ 117.035626661840979, 38.707715156229426 ], [ 116.880752395106924, 38.699395250090674 ], [ 116.738177118179465, 38.787064317064562 ], [ 116.687740920107331, 38.874940090512723 ], [ 116.700608351594155, 39.000410468068651 ], [ 116.91010460834093, 39.130066637565221 ], [ 116.826130405993354, 39.216547146133848 ], [ 116.853157180159656, 39.352249456846948 ], [ 116.793419224017953, 39.602311712815265 ], [ 116.875636428078678, 39.686466783215451 ], [ 117.174377882932959, 39.632929998820373 ], [ 117.184299757727558, 39.808784898504257 ], [ 117.263106317102825, 39.851237088121081 ], [ 117.179648878692774, 39.879400742949883 ], [ 117.148436314384298, 39.955752672048163 ], [ 117.363668653985201, 40.180493476192964 ], [ 117.356795688670104, 40.257026272444477 ], [ 117.755324334950046, 40.058175360904158 ], [ 117.772687615840709, 39.9648994004869 ], [ 117.502988315858033, 39.992908027483452 ], [ 117.533115676347393, 39.750416367921048 ], [ 117.62727013590802, 39.660473537823464 ], [ 117.62478966720937, 39.578463040237068 ], [ 117.713569777323301, 39.533142809193293 ], [ 117.756254510936856, 39.581511948817365 ], [ 117.905082635555118, 39.553890896347752 ], [ 117.87619551031446, 39.424596462956401 ], [ 118.007918735561134, 39.342663478836471 ], [ 118.009563314133601, 39.21855181175426 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-X01~", "NAME_1": "Paracel Islands" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 111.19654381600003, 15.775376695000091 ], [ 111.196299675000034, 15.785711981000077 ], [ 111.207530144000032, 15.789292710000041 ], [ 111.207530144000032, 15.782171942000048 ], [ 111.19654381600003, 15.775376695000091 ] ] ], [ [ [ 111.76335696700005, 16.043443101000037 ], [ 111.753103061000047, 16.044663804000038 ], [ 111.753428582000026, 16.047430731000077 ], [ 111.76140384200005, 16.048651434000078 ], [ 111.76335696700005, 16.043443101000037 ] ] ], [ [ [ 111.600108269000032, 16.527289130000042 ], [ 111.60287519600007, 16.533351955000057 ], [ 111.609629754000025, 16.528265692000048 ], [ 111.606293165000068, 16.524237372000073 ], [ 111.600108269000032, 16.527289130000042 ] ] ], [ [ [ 112.735036655000044, 16.657945054000038 ], [ 112.725271030000044, 16.666205145000049 ], [ 112.72624759200005, 16.669012762000079 ], [ 112.733409050000091, 16.666083075000074 ], [ 112.735036655000044, 16.657945054000038 ] ] ], [ [ [ 112.333181186000047, 16.825018622000073 ], [ 112.327159050000091, 16.829738674000055 ], [ 112.327891472000033, 16.837103583000044 ], [ 112.335459832000083, 16.832586981000077 ], [ 112.333181186000047, 16.825018622000073 ] ] ], [ [ [ 112.33366946700005, 16.933254299000055 ], [ 112.34107506600003, 16.926988023000092 ], [ 112.340505405000044, 16.923570054000038 ], [ 112.335459832000083, 16.923814195000091 ], [ 112.33366946700005, 16.933254299000055 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-11", "NAME_1": "Beijing" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.356795688670104, 40.257026272444477 ], [ 117.370800001718635, 40.194032701248148 ], [ 117.301088494838154, 40.104322415147294 ], [ 116.76499718587138, 40.018952948819503 ], [ 116.784427525210049, 39.885627753118285 ], [ 116.928708123581032, 39.801395169251634 ], [ 116.875636428078678, 39.686466783215451 ], [ 116.793419224017953, 39.602311712815265 ], [ 116.604386835384048, 39.611174221313263 ], [ 116.444293247934979, 39.531980089209753 ], [ 116.433544549940962, 39.442347317474685 ], [ 116.317634311973848, 39.460899155871346 ], [ 116.195522902260109, 39.577842923512094 ], [ 115.938070917039113, 39.575465806701573 ], [ 115.755911492821042, 39.508958238032221 ], [ 115.66036177017952, 39.595516261865953 ], [ 115.463422885657565, 39.643213608820986 ], [ 115.440943637738656, 39.770053411935407 ], [ 115.56569054578199, 39.8007233747839 ], [ 115.425234003246601, 39.985466620488125 ], [ 115.577627802181269, 40.096312568270378 ], [ 115.845001662196864, 40.160572211338433 ], [ 115.943031854436526, 40.271521511008928 ], [ 115.727851189880425, 40.556026108817832 ], [ 115.887944777329608, 40.613102729107652 ], [ 116.039408401176729, 40.601914781541893 ], [ 116.22611534984344, 40.7647472192088 ], [ 116.468012730203327, 40.765574042408105 ], [ 116.350862257886888, 40.926132716951315 ], [ 116.454060093098747, 40.902826645832988 ], [ 116.617926060439345, 41.045169378763774 ], [ 116.675803663708052, 40.940137030899223 ], [ 116.958835484070278, 40.718341783446533 ], [ 117.07273034133209, 40.673538316340228 ], [ 117.485935093329886, 40.661936956725128 ], [ 117.184919875351966, 40.512049464910831 ], [ 117.250548943978515, 40.337822374103268 ], [ 117.356795688670104, 40.257026272444477 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-51", "NAME_1": "Sichuan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.518368767904292, 32.197569892036881 ], [ 108.361169061203157, 32.167184150028504 ], [ 108.416876255035106, 32.089333604162505 ], [ 108.344735956299303, 32.073546454405346 ], [ 108.260193313170817, 31.954638983802056 ], [ 108.480851679061686, 31.810823473424534 ], [ 108.516198357568101, 31.708271593359314 ], [ 108.352332391126879, 31.517404690274191 ], [ 108.232236363017705, 31.481282864512593 ], [ 108.175909051561462, 31.306125596818845 ], [ 108.037364536943755, 31.229799506142285 ], [ 107.929515821797679, 30.872663683182395 ], [ 107.824922722605493, 30.798637193151933 ], [ 107.721518181818567, 30.889225979295475 ], [ 107.477192011402167, 30.791118271790765 ], [ 107.477605421652868, 30.60950145083126 ], [ 107.228731724089755, 30.238154609247772 ], [ 107.032929722028996, 30.057855536104114 ], [ 106.729227329777416, 30.049949042014646 ], [ 106.54412234886729, 30.339905504535409 ], [ 106.239024692635439, 30.220248725098543 ], [ 106.12471642512287, 30.342334296390618 ], [ 105.833106317102818, 30.436282050376292 ], [ 105.728254836391557, 30.276731065286413 ], [ 105.639164667015734, 30.279237372406783 ], [ 105.648311394555151, 30.213918362142692 ], [ 105.555190463768838, 30.175858670041578 ], [ 105.748563673974331, 30.020777695933873 ], [ 105.716575962410673, 29.873267320030777 ], [ 105.567747836893091, 29.816836655787029 ], [ 105.542788121174794, 29.730717882424301 ], [ 105.390859410233531, 29.692193102329782 ], [ 105.291072218807813, 29.58478363675539 ], [ 105.29779015539134, 29.500318507992745 ], [ 105.405173780745315, 29.429961045965456 ], [ 105.457883741941089, 29.315032659929273 ], [ 105.653892449576858, 29.268885605686137 ], [ 105.703656854080521, 29.299762275008959 ], [ 105.739106887173079, 29.012234605242838 ], [ 105.795124139367488, 28.93652863219063 ], [ 105.869744907701261, 28.917847601685423 ], [ 106.000382928229499, 28.974433295560118 ], [ 106.247602981192586, 28.884723009459321 ], [ 106.282019483712133, 28.702666938028756 ], [ 106.382426791862883, 28.572494005493922 ], [ 106.314162224906738, 28.471027330147137 ], [ 106.287290481270645, 28.545027980856617 ], [ 105.975268181980994, 28.755221868694264 ], [ 105.891914097257711, 28.609313463245712 ], [ 105.679472283818825, 28.579134425913026 ], [ 105.618804151690199, 28.491465358939138 ], [ 105.652187128133392, 28.331165065915059 ], [ 105.866024204653286, 28.258352972711521 ], [ 105.891759067626822, 28.15388906472856 ], [ 106.172982211959493, 28.148178819397003 ], [ 106.298969354352153, 28.00043589949712 ], [ 106.339742059148648, 27.828379218126372 ], [ 106.229102817840726, 27.768951321246448 ], [ 106.094899122996082, 27.787477322120708 ], [ 105.646916132373576, 27.678129991106175 ], [ 105.479794549978465, 27.783885810281902 ], [ 105.296963332191979, 27.721744899807277 ], [ 105.228130323555547, 27.855793565020974 ], [ 105.282390578362481, 28.000745957859635 ], [ 105.055737746299883, 28.088130804892728 ], [ 104.971918572683933, 28.056065578963285 ], [ 104.956105585404373, 27.945736396017821 ], [ 104.887996047179797, 27.895765285939149 ], [ 104.588479445070277, 27.848274644559183 ], [ 104.349837680664393, 27.990178127918227 ], [ 104.333817986910503, 28.046737983371202 ], [ 104.442441848412557, 28.089655260082168 ], [ 104.423993361004761, 28.229155789108347 ], [ 104.263538039249056, 28.345996202163008 ], [ 104.254546340441209, 28.53949860357767 ], [ 104.442958612350026, 28.624532172221961 ], [ 104.248345167795208, 28.661997586019766 ], [ 103.973064812790824, 28.613111681558848 ], [ 103.87818688371766, 28.630552476815353 ], [ 103.866611363423658, 28.67520091429077 ], [ 103.795246210144455, 28.531178697438918 ], [ 103.880305617210411, 28.325739041423617 ], [ 103.722279087309971, 28.21553904878806 ], [ 103.643782587196597, 28.270496934685752 ], [ 103.57179731719242, 28.243185940578655 ], [ 103.455111931970066, 28.133941962351685 ], [ 103.441210971708927, 28.042397161799556 ], [ 103.489218377925738, 28.037746282764715 ], [ 103.514229771386795, 27.971445421469014 ], [ 103.564976026922068, 27.983124295449841 ], [ 103.45170128818387, 27.759985459961001 ], [ 103.284424677057132, 27.640509548576802 ], [ 103.296206902926201, 27.587851264224469 ], [ 103.218123813962791, 27.566870632173902 ], [ 103.120765415291658, 27.412254746958979 ], [ 102.991522657844314, 27.386028958469637 ], [ 102.95483239130175, 27.420781357773421 ], [ 102.889461705093595, 27.291486925281333 ], [ 102.901347283750113, 26.924739284989982 ], [ 102.97529625941479, 26.831127427788545 ], [ 103.057926873726217, 26.557242336764432 ], [ 102.995811801673256, 26.485412096391144 ], [ 102.988473749264074, 26.365186876173368 ], [ 102.878196242262732, 26.365057684964199 ], [ 102.681102329908583, 26.221603908893258 ], [ 102.609943882204334, 26.260206204252881 ], [ 102.626480340795069, 26.345136420109668 ], [ 102.568137648633524, 26.378648586862766 ], [ 102.252084588832645, 26.228864447835974 ], [ 102.112558221384745, 26.084428818934839 ], [ 101.921562127989773, 26.098872382454488 ], [ 101.849525181142155, 26.034845282483786 ], [ 101.763742302765024, 26.176335353793547 ], [ 101.667934197704994, 26.232197577256386 ], [ 101.582358025802193, 26.219045924929446 ], [ 101.574089797406202, 26.298601793138232 ], [ 101.643749628342619, 26.368442491227995 ], [ 101.54416914339123, 26.494972235979901 ], [ 101.412445917245236, 26.569670517780139 ], [ 101.500399205059239, 26.774800116332301 ], [ 101.397666456941408, 26.735293484306851 ], [ 101.350330845192332, 26.863166816195587 ], [ 101.152513462426327, 27.027342840999268 ], [ 101.168016392242691, 27.19601471610622 ], [ 101.008801303936991, 27.188444118801044 ], [ 100.977950473935209, 27.373652452498675 ], [ 100.871186965306151, 27.485325222580911 ], [ 100.872117141293018, 27.561987210041707 ], [ 100.6609155622034, 27.875094713150474 ], [ 100.614665155172759, 27.893362332505603 ], [ 100.543455030625125, 27.817087917773165 ], [ 100.432040642961283, 27.845639146229587 ], [ 100.320626255297384, 27.733139552947989 ], [ 100.288070102952872, 27.864371853578177 ], [ 100.072062616096787, 28.044179999407447 ], [ 100.028241000921412, 28.169366157022523 ], [ 100.162031284616035, 28.236261298420175 ], [ 100.150249057847702, 28.327831936494647 ], [ 99.945093621773196, 28.55972992589534 ], [ 99.845616489609256, 28.603809923489166 ], [ 99.732341749971738, 28.745015773958755 ], [ 99.718854200860619, 28.84227081984244 ], [ 99.61524295539806, 28.805063788463031 ], [ 99.502898390848031, 28.579366969909699 ], [ 99.373448927825734, 28.518931383576444 ], [ 99.398925409280196, 28.126500556255621 ], [ 99.162557407997951, 28.43816111944011 ], [ 99.172375930005103, 28.592647813445808 ], [ 99.09661828010951, 28.835940456886533 ], [ 99.108813918027863, 29.224185492266656 ], [ 98.986754185157452, 29.650903631797178 ], [ 99.056310663306419, 29.915331936020038 ], [ 98.905363804296087, 30.663813381582258 ], [ 98.96070926292208, 30.727194526406265 ], [ 98.787696568042122, 30.880880234735002 ], [ 98.803044468227597, 30.990976874583055 ], [ 98.603780144637938, 31.16975149253733 ], [ 98.649100375681769, 31.316693426760196 ], [ 98.767801140710048, 31.230367946923195 ], [ 98.884951613026487, 31.354081326192215 ], [ 98.592152948399814, 31.598820909557332 ], [ 98.425651482729677, 31.81340729401137 ], [ 98.452988316157814, 31.984094549823624 ], [ 98.220185988292712, 32.252191881150395 ], [ 98.205768264094047, 32.355648097881385 ], [ 98.014152053074724, 32.464504503380113 ], [ 97.663734164899722, 32.559899197290122 ], [ 97.39160607306178, 32.761618150257391 ], [ 97.360961948635008, 32.897036241029696 ], [ 97.499919875301941, 33.008295599961968 ], [ 97.495062289792827, 33.187457791543807 ], [ 97.737476434090127, 33.39646312097625 ], [ 97.509221633371624, 33.471238918940912 ], [ 97.477388951438911, 33.562241116234532 ], [ 97.386180047671019, 33.621384793173661 ], [ 97.364837681313929, 33.825790921313967 ], [ 97.383544550240742, 33.869870917109097 ], [ 97.610249058247405, 33.930874946021902 ], [ 97.658463169139907, 34.004798082365596 ], [ 97.731430291974334, 33.96089895282438 ], [ 97.751119011932815, 33.859432278376914 ], [ 98.034925978650961, 33.959787908784961 ], [ 98.227679071232103, 33.934130561076529 ], [ 98.288967320085703, 33.846926581196726 ], [ 98.429217157046139, 33.855763251273004 ], [ 98.65375125471661, 33.665723172286562 ], [ 98.627861363011448, 33.615881253417115 ], [ 98.735710077258204, 33.489764919815173 ], [ 98.774157342986939, 33.291198228215649 ], [ 98.871619094445634, 33.159216620550581 ], [ 99.199971144952315, 33.017028917250684 ], [ 99.289371371791333, 32.887140203757383 ], [ 99.698545363277844, 32.744616604572627 ], [ 99.769290398932696, 32.921763414549901 ], [ 99.875898878830128, 33.024599514555916 ], [ 100.144823033356261, 32.838616034502365 ], [ 100.142032505395775, 32.647594102685673 ], [ 100.223164503838746, 32.636897081535039 ], [ 100.254997185771458, 32.725806382858252 ], [ 100.399432814672593, 32.758388372725221 ], [ 100.488781365567547, 32.683612576559142 ], [ 100.56092166520267, 32.563335680397302 ], [ 100.466457147279471, 32.464737047376786 ], [ 100.531207716762651, 32.403397122579122 ], [ 100.603037958035316, 32.451223659844004 ], [ 100.674713168777657, 32.683095810822977 ], [ 100.921468133747339, 32.626225897906863 ], [ 101.170806919303857, 32.688340969060448 ], [ 101.237366163917272, 32.81828135849787 ], [ 101.127192010602755, 32.954112861319459 ], [ 101.18413943878403, 33.152757066385504 ], [ 101.32428592295696, 33.202340602836557 ], [ 101.374257033035576, 33.17864695898993 ], [ 101.445157098321374, 33.235852768690279 ], [ 101.643646274655794, 33.127771511346168 ], [ 101.726948684334275, 33.267788805209193 ], [ 101.665143670643829, 33.320395412718085 ], [ 101.668761020904356, 33.382846381555225 ], [ 101.766067742732105, 33.471213080519249 ], [ 101.795368280022046, 33.605080878579656 ], [ 101.883993361404464, 33.546324775268147 ], [ 101.924662714312774, 33.433153388418134 ], [ 101.824720494155429, 33.248280951504682 ], [ 101.856036412150672, 33.120175076518535 ], [ 102.481838007218244, 33.465037747194231 ], [ 102.481838007218244, 33.540149441043866 ], [ 102.356005893557096, 33.609395859930999 ], [ 102.343138462070328, 33.725176906688887 ], [ 102.290686884192326, 33.725125229845446 ], [ 102.324845005192799, 33.751790268805848 ], [ 102.24738203295442, 33.797678941529909 ], [ 102.171210971908806, 33.941752835225145 ], [ 102.371973912266185, 33.975962633069059 ], [ 102.458583612044038, 34.069238593486261 ], [ 102.635161981240401, 34.088513902294721 ], [ 102.588498163059739, 34.16039582041077 ], [ 102.91245771695003, 34.299715481384339 ], [ 103.140557488936906, 34.147270006505551 ], [ 103.147378778307939, 33.930254828397608 ], [ 103.228562452694973, 33.783312893275365 ], [ 103.390102980967754, 33.757733059033399 ], [ 103.541411574284666, 33.817419339231094 ], [ 103.531282993914999, 33.706315009030448 ], [ 104.144527215858261, 33.639600734786086 ], [ 104.174654576347564, 33.490152493442793 ], [ 104.385804477694421, 33.320085354355626 ], [ 104.282038201701596, 33.282103175720977 ], [ 104.415776808552835, 33.034469713406509 ], [ 104.387561476880592, 32.965791734401023 ], [ 104.290719843046304, 32.923107000787411 ], [ 104.282141555388421, 32.85721954974241 ], [ 104.585688918009112, 32.675447700051279 ], [ 104.898331333124474, 32.611834011230599 ], [ 105.047314488272946, 32.637594713525175 ], [ 105.112685175380477, 32.59434153913071 ], [ 105.428893263912983, 32.737485255939816 ], [ 105.375201450786278, 32.847607734209532 ], [ 105.446566604065481, 32.917086697093396 ], [ 105.491886835109312, 32.91964468015783 ], [ 105.613688185561273, 32.702577826105767 ], [ 105.805976190149011, 32.75505524330481 ], [ 105.875480992353857, 32.844713853461542 ], [ 106.08234174987183, 32.873523464336415 ], [ 106.059500766746964, 32.706091824478108 ], [ 106.228947789109156, 32.591964423219508 ], [ 106.625564405672719, 32.680098578186801 ], [ 106.723129510818239, 32.741645209458852 ], [ 107.038975865044108, 32.717977403134626 ], [ 107.096233351587841, 32.669246528304598 ], [ 107.079593540209657, 32.51357127499432 ], [ 107.256223586249462, 32.444531562581517 ], [ 107.441793654253672, 32.532846584702099 ], [ 107.459622024037117, 32.408642279917274 ], [ 107.659196405089972, 32.388617662275294 ], [ 107.980417107863218, 32.148322252370008 ], [ 108.051782261142421, 32.226612046908429 ], [ 108.250994907888639, 32.264826769539752 ], [ 108.463591750059152, 32.256610216188506 ], [ 108.518368767904292, 32.197569892036881 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-50", "NAME_1": "Chongqing" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.811538527181256, 30.798017076426902 ], [ 107.94920454265548, 30.899923001345428 ], [ 107.932926467382515, 30.956379503111577 ], [ 108.006772089360368, 31.038622544694647 ], [ 108.037364536943755, 31.229799506142285 ], [ 108.175909051561462, 31.306125596818845 ], [ 108.232236363017705, 31.481282864512593 ], [ 108.352332391126879, 31.517404690274191 ], [ 108.521159295864777, 31.719821275231652 ], [ 108.480851679061686, 31.810823473424534 ], [ 108.260193313170817, 31.948127752793539 ], [ 108.344735956299303, 32.073546454405346 ], [ 108.416876255035106, 32.089333604162505 ], [ 108.361169061203157, 32.167184150028504 ], [ 108.388970981725379, 32.184289049400093 ], [ 108.518368767904292, 32.197569892036881 ], [ 109.055907016795345, 31.940634670753411 ], [ 109.303230421646617, 31.709356798077749 ], [ 109.658764275950546, 31.718115952888922 ], [ 109.732609897928398, 31.561122951762798 ], [ 109.968151076011281, 31.503426214748004 ], [ 110.146744825912947, 31.331111151858124 ], [ 110.174856804797685, 31.18866506613989 ], [ 110.107625766615797, 31.122338365523149 ], [ 110.137598098373473, 31.000175278965912 ], [ 110.078635288587634, 30.834603990181961 ], [ 109.870689324552643, 30.88858002414878 ], [ 109.394180942996059, 30.583740750335323 ], [ 109.152438593166494, 30.562010810350614 ], [ 108.964646437982708, 30.607486070126015 ], [ 108.732515903685965, 30.519713650364679 ], [ 108.661305780037651, 30.575420844196572 ], [ 108.589785598026879, 30.5035389269799 ], [ 108.433206008050774, 30.487286689229279 ], [ 108.380599399642563, 30.399695135721913 ], [ 108.543483514152797, 30.280994370693634 ], [ 108.536558872893636, 29.874352524749213 ], [ 108.404783969904258, 29.838669949458563 ], [ 108.440492385415212, 29.743481961123564 ], [ 108.512632684151015, 29.72185537392636 ], [ 108.640790235980546, 29.846550605126311 ], [ 108.696032342718411, 29.698161729180413 ], [ 108.889405552024584, 29.622352403340699 ], [ 108.870905388672725, 29.48670176947104 ], [ 108.920566441288202, 29.348984076254112 ], [ 109.014152460067919, 29.307487901045761 ], [ 109.285712111125008, 29.030269679701917 ], [ 109.240391880081177, 28.8827076278547 ], [ 109.281061232989487, 28.720882880540501 ], [ 109.213210077183248, 28.628795478528502 ], [ 109.284626906406572, 28.573475857424853 ], [ 109.155332473015164, 28.435525621110514 ], [ 109.084587437360312, 28.193602403228283 ], [ 108.736391636364885, 28.21553904878806 ], [ 108.783727248113962, 28.426094671831606 ], [ 108.712362094834759, 28.484799099199051 ], [ 108.640790235980546, 28.45857330981039 ], [ 108.679134148921776, 28.332792873892004 ], [ 108.600947707170917, 28.341732895856467 ], [ 108.578881871301292, 28.606729640860237 ], [ 108.323031853836937, 28.705845037818221 ], [ 108.375948520607722, 28.794366767312454 ], [ 108.29321455260947, 29.077243557144413 ], [ 108.054572789102906, 29.064505316866871 ], [ 107.850037469753374, 28.982598171168661 ], [ 107.78983442561821, 29.04019155539595 ], [ 107.777587110856416, 29.145947374571676 ], [ 107.671443719851766, 29.146334947299977 ], [ 107.486648798203419, 29.244210109908636 ], [ 107.417247348786077, 29.137808336485534 ], [ 107.499671259321133, 29.003062039281645 ], [ 107.446599562919459, 28.885058906243501 ], [ 107.270176223353985, 28.804753730100572 ], [ 107.130856560581776, 28.898029690517774 ], [ 107.015514764294892, 28.87986542395015 ], [ 106.959497512100484, 28.790956121727618 ], [ 106.84916832915502, 28.773024400055988 ], [ 106.837231072755742, 28.622852688300895 ], [ 106.693984003159187, 28.482783718493806 ], [ 106.555129429279702, 28.51523651805087 ], [ 106.62773481690823, 28.648355007277758 ], [ 106.489190302290581, 28.831677151479312 ], [ 106.462990350424263, 28.799947822334104 ], [ 106.522211541729234, 28.672668768748679 ], [ 106.474462517930817, 28.53681142840469 ], [ 106.298039178365343, 28.672436224751948 ], [ 106.22724246586705, 28.896789456168449 ], [ 106.000382928229499, 28.974433295560118 ], [ 105.869744907701261, 28.917847601685423 ], [ 105.795124139367488, 28.93652863219063 ], [ 105.739106887173079, 29.012234605242838 ], [ 105.703656854080521, 29.299762275008959 ], [ 105.653892449576858, 29.268885605686137 ], [ 105.457883741941089, 29.315032659929273 ], [ 105.405173780745315, 29.429961045965456 ], [ 105.292622512418973, 29.510472926784132 ], [ 105.291072218807813, 29.58478363675539 ], [ 105.390859410233531, 29.692193102329782 ], [ 105.542788121174794, 29.730717882424301 ], [ 105.567747836893091, 29.816836655787029 ], [ 105.716575962410673, 29.873267320030777 ], [ 105.748563673974331, 30.020777695933873 ], [ 105.552865024701077, 30.167254543962031 ], [ 105.648311394555151, 30.213918362142692 ], [ 105.629656203371042, 30.273397935866001 ], [ 105.728254836391557, 30.276731065286413 ], [ 105.801790399107574, 30.432742214481607 ], [ 106.12471642512287, 30.342334296390618 ], [ 106.239024692635439, 30.220248725098543 ], [ 106.54412234886729, 30.339905504535409 ], [ 106.729227329777416, 30.049949042014646 ], [ 107.018201938568552, 30.054289862686971 ], [ 107.228731724089755, 30.238154609247772 ], [ 107.477605421652868, 30.60950145083126 ], [ 107.452800733766821, 30.74752920241076 ], [ 107.507577753410544, 30.821994941113644 ], [ 107.721518181818567, 30.889225979295475 ], [ 107.811538527181256, 30.798017076426902 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-52", "NAME_1": "Guizhou" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.496105585004727, 29.246096300303975 ], [ 107.579924757721358, 29.178270982020194 ], [ 107.777587110856416, 29.145947374571676 ], [ 107.78983442561821, 29.04019155539595 ], [ 107.850037469753374, 28.982598171168661 ], [ 108.054572789102906, 29.064505316866871 ], [ 108.296160109301582, 29.075925808429304 ], [ 108.375948520607722, 28.794366767312454 ], [ 108.330318231201375, 28.689153551395236 ], [ 108.578881871301292, 28.606729640860237 ], [ 108.607458938179434, 28.335195828224869 ], [ 108.681304559257967, 28.337702135345239 ], [ 108.649936965318659, 28.470949814882033 ], [ 108.712362094834759, 28.484799099199051 ], [ 108.780936721052797, 28.432140814846719 ], [ 108.736391636364885, 28.21553904878806 ], [ 109.084587437360312, 28.193602403228283 ], [ 109.163135614317127, 28.449891669365059 ], [ 109.258375278596191, 28.505908922458786 ], [ 109.263852980830336, 28.322225043051276 ], [ 109.358627557116051, 28.248069362710908 ], [ 109.295892369237379, 28.083144029073651 ], [ 109.367464227192272, 28.046117865746908 ], [ 109.310826858272833, 27.887652086274727 ], [ 109.33506310357933, 27.792489936361449 ], [ 109.413404575860454, 27.738953151966371 ], [ 109.441929965895156, 27.591081040857318 ], [ 109.27687544194805, 27.438532213191081 ], [ 109.135643752157364, 27.411195379762944 ], [ 108.900102574074481, 27.188805854006944 ], [ 108.890025668749558, 27.131005764204644 ], [ 108.787913039155399, 27.09410879208707 ], [ 108.892196079985069, 27.009023545700074 ], [ 109.0954911640859, 27.134442247311824 ], [ 109.147581007657323, 27.077882391858907 ], [ 109.225819126251622, 27.15307160097359 ], [ 109.3818819522902, 27.151857205045985 ], [ 109.504200066679687, 27.054266262378064 ], [ 109.503269890692877, 26.964220079493032 ], [ 109.443841993812896, 26.897919216398691 ], [ 109.515517206353934, 26.83391795484971 ], [ 109.281371291351945, 26.711057237201715 ], [ 109.406738316120368, 26.597239895205007 ], [ 109.291603225408494, 26.337514145961052 ], [ 109.406893344851937, 26.263771878569344 ], [ 109.385292596076397, 26.219588528188012 ], [ 109.456709426199041, 26.038850206371933 ], [ 109.387049595262567, 25.981256822144587 ], [ 109.398004998831595, 25.913198960763395 ], [ 109.300439894585395, 25.743054308209764 ], [ 109.242407260786422, 25.731297918963776 ], [ 109.166701287734213, 25.80943268477057 ], [ 109.138589308849475, 25.747989407185401 ], [ 109.085362582816913, 25.805427760882424 ], [ 108.926509230616432, 25.760288397891259 ], [ 108.865479364181283, 25.658098253031937 ], [ 109.041334262965847, 25.720394192238189 ], [ 109.041437615753296, 25.543350735048364 ], [ 108.774115431681764, 25.521930854325433 ], [ 108.759491001008826, 25.60859223094667 ], [ 108.69463707873814, 25.602003486471688 ], [ 108.655104608290969, 25.50417999890783 ], [ 108.568029819620449, 25.447206733204155 ], [ 108.598467237572891, 25.311323554438445 ], [ 108.421113722919927, 25.508701686733446 ], [ 108.293369582240359, 25.538699856013523 ], [ 108.134154493934716, 25.39139618568538 ], [ 108.109659865310505, 25.235798448539526 ], [ 107.861871373365148, 25.145958971229504 ], [ 107.776036818144576, 25.152986965276227 ], [ 107.744979282567783, 25.22626414647317 ], [ 107.676869745242527, 25.20603282325618 ], [ 107.640902948212442, 25.31277049436278 ], [ 107.473574660242321, 25.219494533945578 ], [ 107.477192011402167, 25.279955960499137 ], [ 107.316581659116252, 25.419223945528643 ], [ 107.326296828335899, 25.475654608873072 ], [ 107.244234653906119, 25.558595282446333 ], [ 107.077939894710312, 25.52844208443463 ], [ 106.974587029867507, 25.440437119777243 ], [ 107.015514764294892, 25.3478329529284 ], [ 106.98621422700495, 25.242929796273074 ], [ 106.666802199361996, 25.173502509333332 ], [ 106.456685825890133, 25.036094876277502 ], [ 106.155722283856278, 24.960363063904254 ], [ 106.199440546244148, 24.829854233685921 ], [ 106.020743442655714, 24.641907049770509 ], [ 105.916460401826043, 24.728723456022635 ], [ 105.805666131786495, 24.707122708146471 ], [ 105.675338168721453, 24.789675808092056 ], [ 105.508629999275001, 24.817451891091878 ], [ 105.430805291830723, 24.934111436093872 ], [ 105.267197706908632, 24.938219712769524 ], [ 105.188701205895882, 25.008783881271086 ], [ 105.048089633729546, 24.895379950424342 ], [ 105.012484571905418, 24.797478949393962 ], [ 104.889649692679143, 24.765387885042855 ], [ 104.841073845681365, 24.694952907750462 ], [ 104.729349399655007, 24.631390895773222 ], [ 104.630337356383848, 24.682912299463055 ], [ 104.539851923027811, 24.74177175556207 ], [ 104.545639682725152, 24.813421128782068 ], [ 104.70051395125779, 24.998965359263877 ], [ 104.719737583222866, 25.210942083810096 ], [ 104.789087355796767, 25.250758775097381 ], [ 104.565845168419742, 25.381190090050609 ], [ 104.546104770718557, 25.501286119059102 ], [ 104.433450148705333, 25.500666002334128 ], [ 104.429884475288247, 25.57138519956726 ], [ 104.308703240661998, 25.652388006801061 ], [ 104.298626337135715, 25.754500637294541 ], [ 104.388491651968138, 25.771528022300345 ], [ 104.42182295066857, 25.875268459871506 ], [ 104.390041944679979, 25.943610541193493 ], [ 104.498975865443811, 26.030788683550895 ], [ 104.545174594731691, 26.27041229898839 ], [ 104.676949496821805, 26.381619981077222 ], [ 104.567550489863152, 26.578067939184052 ], [ 104.482129347591297, 26.593054104163571 ], [ 104.417172071633729, 26.718162747412862 ], [ 104.330614047799997, 26.631268825895575 ], [ 104.123753290282082, 26.643903713385669 ], [ 104.027066685179364, 26.515384426350181 ], [ 103.829249302413359, 26.547113756394708 ], [ 103.762483352224876, 26.615740058556867 ], [ 103.774575637355724, 26.736843777018692 ], [ 103.73349287329745, 26.740538642544323 ], [ 103.71514773957648, 26.815960394756416 ], [ 103.77643598843008, 26.87479401333303 ], [ 103.778296340403756, 26.955874334932616 ], [ 103.711323683740943, 27.046824856282058 ], [ 103.637116326557191, 27.018428657456582 ], [ 103.599289177553487, 27.083127550096322 ], [ 103.923713820336502, 27.395020657277485 ], [ 104.174344517085729, 27.271513984482795 ], [ 104.360999789808432, 27.447007148061402 ], [ 104.509672885695068, 27.319288844904236 ], [ 104.864018181593735, 27.307920030185244 ], [ 105.068760207417597, 27.411195379762944 ], [ 105.19738284724059, 27.398638007538011 ], [ 105.296963332191979, 27.721744899807277 ], [ 105.368380162314622, 27.763706163008976 ], [ 105.519533726000589, 27.777064520910869 ], [ 105.646916132373576, 27.678129991106175 ], [ 106.285740187659485, 27.795900580147645 ], [ 106.34537479011442, 27.83494212507901 ], [ 106.302690057400184, 27.991030789539309 ], [ 106.181457146829814, 28.141745102754271 ], [ 105.891759067626822, 28.15388906472856 ], [ 105.866024204653286, 28.258352972711521 ], [ 105.652187128133392, 28.331165065915059 ], [ 105.618804151690199, 28.491465358939138 ], [ 105.679472283818825, 28.579134425913026 ], [ 105.891914097257711, 28.609313463245712 ], [ 105.975268181980994, 28.755221868694264 ], [ 106.287290481270645, 28.545027980856617 ], [ 106.325634393312555, 28.471440741297158 ], [ 106.382426791862883, 28.572494005493922 ], [ 106.488725214297176, 28.540971381024406 ], [ 106.521901483366719, 28.685045273820322 ], [ 106.476322869904493, 28.834751899380649 ], [ 106.62773481690823, 28.648355007277758 ], [ 106.555129429279702, 28.51523651805087 ], [ 106.730157504864906, 28.483326320852996 ], [ 106.761990187696938, 28.590890815158957 ], [ 106.837231072755742, 28.622852688300895 ], [ 106.84916832915502, 28.773024400055988 ], [ 106.959497512100484, 28.790956121727618 ], [ 107.015514764294892, 28.87986542395015 ], [ 107.130856560581776, 28.898029690517774 ], [ 107.270176223353985, 28.804753730100572 ], [ 107.446599562919459, 28.885058906243501 ], [ 107.499671259321133, 29.003062039281645 ], [ 107.417247348786077, 29.137808336485534 ], [ 107.496105585004727, 29.246096300303975 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-43", "NAME_1": "Hunan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.258375278596191, 28.505908922458786 ], [ 109.285091994399977, 28.584637966568891 ], [ 109.213210077183248, 28.628795478528502 ], [ 109.281061232989487, 28.720882880540501 ], [ 109.240391880081177, 28.8827076278547 ], [ 109.285712111125008, 29.030269679701917 ], [ 109.206595494286603, 29.104244492888995 ], [ 109.436348911772825, 29.54031606733264 ], [ 109.586417270740412, 29.616073717228232 ], [ 109.685119257447752, 29.600725816143495 ], [ 109.783201124732102, 29.734929510988138 ], [ 110.103905063567765, 29.78541738500428 ], [ 110.376859978605069, 29.653539130126717 ], [ 110.427451207207412, 29.722165432288875 ], [ 110.591162144017687, 29.771361396011571 ], [ 110.473391554976217, 29.90626272194703 ], [ 110.506567824045817, 29.984604194228154 ], [ 110.463159620919726, 30.013982244984618 ], [ 110.50119347459912, 30.04615082370151 ], [ 110.698700799901928, 30.024730942978636 ], [ 110.764794957421316, 30.098395697803198 ], [ 111.246160922688375, 30.031733100402221 ], [ 111.396229282555282, 29.924685370033785 ], [ 111.754760370394706, 29.924711209354825 ], [ 111.923638951076668, 29.856394965555182 ], [ 112.172822707002297, 29.645606798514905 ], [ 112.213802118273065, 29.673098659775292 ], [ 112.281911655598378, 29.536931261068844 ], [ 112.450893589067846, 29.644004828060361 ], [ 112.664885695218572, 29.631938381351176 ], [ 112.886164178733793, 29.791773587281227 ], [ 112.936290318443412, 29.693304145469938 ], [ 113.012926466583167, 29.772989203089253 ], [ 112.90848839702187, 29.600803331408599 ], [ 112.935825229550687, 29.480526435246759 ], [ 113.032873569859362, 29.519051215341278 ], [ 113.066463250978245, 29.442363390358139 ], [ 113.590307245183226, 29.879959418192584 ], [ 113.533256464214446, 29.693304145469938 ], [ 113.649425082801258, 29.676276760464077 ], [ 113.729523554268553, 29.445541490147605 ], [ 113.580902134326038, 29.253046779984913 ], [ 113.641363559980277, 29.22175670041139 ], [ 113.701928339321398, 29.072385973433882 ], [ 113.772828403707763, 29.125302639305346 ], [ 113.902381220416942, 29.066339830418826 ], [ 113.905171746578844, 28.955984809051699 ], [ 114.130480992403818, 28.826121934879382 ], [ 114.112807652251263, 28.615514634992394 ], [ 114.056945428788481, 28.564277452142676 ], [ 114.177041456897655, 28.507304185539738 ], [ 114.17161543240627, 28.439711412151951 ], [ 114.233988885978306, 28.388861802929853 ], [ 114.19223432835156, 28.300598455854015 ], [ 114.023872511607124, 28.17913300218629 ], [ 113.989145948926307, 28.071852728720444 ], [ 113.7188265322186, 27.963719794532892 ], [ 113.708129511068023, 27.83455455235071 ], [ 113.558526239194521, 27.575448919831786 ], [ 113.608600702060698, 27.356728421179696 ], [ 113.850963168615294, 27.345902207920517 ], [ 113.752467889281661, 27.097002671935741 ], [ 113.893234491078829, 26.961041977904927 ], [ 113.83163618386277, 26.827484239106354 ], [ 113.864709100144864, 26.655866808206611 ], [ 114.087847934734327, 26.568481961173575 ], [ 113.925377232273377, 26.17036672604354 ], [ 114.149239537274752, 26.222068996886662 ], [ 114.215230341107258, 26.180572822577687 ], [ 114.018601515847195, 26.037222398394931 ], [ 114.014570754436704, 25.916842149445642 ], [ 113.902846306611764, 25.740186265883437 ], [ 113.982428013242156, 25.581668810467193 ], [ 113.927547641710248, 25.448111069869981 ], [ 113.80910525910042, 25.348220527455339 ], [ 113.569533318707613, 25.323441677091694 ], [ 113.523437942207238, 25.385582587566319 ], [ 113.357556594161451, 25.424365750079289 ], [ 113.282935825827622, 25.517590032753787 ], [ 112.913035923269149, 25.321994737167358 ], [ 112.864615105902317, 25.342794501165258 ], [ 112.889109735425905, 25.241457017927019 ], [ 113.028481073242915, 25.230372423148765 ], [ 112.966882766026743, 25.172365627771512 ], [ 112.988896925952304, 24.963928738220659 ], [ 112.876397332670763, 24.942172959814229 ], [ 112.714081658941382, 24.999507962522443 ], [ 112.637393833058923, 25.130352687726315 ], [ 112.195353631764647, 25.199883328352882 ], [ 112.122386508930163, 24.960750637531874 ], [ 112.167396681611535, 24.901167711021003 ], [ 112.139646437932697, 24.784430649854585 ], [ 112.091225620565865, 24.809157823374846 ], [ 111.996554397067712, 24.735673935703574 ], [ 111.933405796240436, 24.774715481534201 ], [ 111.667117140943276, 24.779676418931558 ], [ 111.516945429188183, 24.642656357704709 ], [ 111.42661502456366, 24.687253119236061 ], [ 111.474415725205517, 24.804817002702521 ], [ 111.415297885788732, 25.122859604786925 ], [ 111.2639892915725, 25.143866075259155 ], [ 111.023022088998175, 24.921140651819599 ], [ 110.954602492411027, 25.025346178283485 ], [ 110.993204786871388, 25.150764878995972 ], [ 111.099038121312219, 25.213732611770581 ], [ 111.171333448779592, 25.372379259295371 ], [ 111.282747837342754, 25.430024319466725 ], [ 111.319954868722164, 25.72504507127303 ], [ 111.476121046648927, 25.895861518294396 ], [ 111.453900181148413, 25.928650213736375 ], [ 111.317371047236009, 25.909013169721959 ], [ 111.278510370357253, 25.861057441247908 ], [ 111.202080926893188, 25.93027802171332 ], [ 111.270965610574422, 26.261498115445647 ], [ 110.947264439102526, 26.389888211271909 ], [ 110.878948195302939, 26.275218206754801 ], [ 110.713273553731483, 26.276148382741667 ], [ 110.688623894577006, 26.332320665466341 ], [ 110.577054478181594, 26.35079499039648 ], [ 110.536540154904174, 26.224859523947828 ], [ 110.352830437974262, 26.126648464554989 ], [ 110.246997105332127, 25.978207913564347 ], [ 110.164573194797072, 26.047040921301459 ], [ 110.033625115906318, 26.036498927983132 ], [ 110.062047154052891, 26.149928697251539 ], [ 109.927326695270722, 26.197083441847326 ], [ 109.850380486969868, 26.057247016036968 ], [ 109.774622837074219, 26.013761298545091 ], [ 109.7808240088209, 25.916377061452181 ], [ 109.67659264483467, 25.889066067345141 ], [ 109.672251825061608, 25.985313421976798 ], [ 109.613392368962593, 26.046059068471209 ], [ 109.456709426199041, 26.038850206371933 ], [ 109.385292596076397, 26.219588528188012 ], [ 109.406893344851937, 26.263771878569344 ], [ 109.291603225408494, 26.337514145961052 ], [ 109.408908725557183, 26.577990423918891 ], [ 109.282921584063786, 26.718627835406267 ], [ 109.515517206353934, 26.83391795484971 ], [ 109.443841993812896, 26.897919216398691 ], [ 109.503269890692877, 26.964220079493032 ], [ 109.501254510886952, 27.059821478978051 ], [ 109.3818819522902, 27.151857205045985 ], [ 109.225819126251622, 27.15307160097359 ], [ 109.147581007657323, 27.077882391858907 ], [ 109.0954911640859, 27.134442247311824 ], [ 108.903513217860677, 27.010186266582934 ], [ 108.788378127148803, 27.088217677803584 ], [ 108.890025668749558, 27.131005764204644 ], [ 108.900102574074481, 27.188805854006944 ], [ 109.135643752157364, 27.411195379762944 ], [ 109.27687544194805, 27.438532213191081 ], [ 109.441929965895156, 27.591081040857318 ], [ 109.413404575860454, 27.738953151966371 ], [ 109.33506310357933, 27.792489936361449 ], [ 109.310826858272833, 27.887652086274727 ], [ 109.367464227192272, 28.046117865746908 ], [ 109.295892369237379, 28.083144029073651 ], [ 109.358627557116051, 28.248069362710908 ], [ 109.263852980830336, 28.322225043051276 ], [ 109.258375278596191, 28.505908922458786 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-64", "NAME_1": "Ningxia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.773772413566007, 39.372997544900727 ], [ 106.808240594727636, 39.19905467403396 ], [ 106.981718377600998, 39.014621486692249 ], [ 106.708918492194641, 38.645290024914686 ], [ 106.644994745011445, 38.45920319297295 ], [ 106.470121698157811, 38.290686347496944 ], [ 106.829169549934761, 38.150384832793804 ], [ 107.162637566570424, 38.138602606924735 ], [ 107.324178094843148, 38.065945543352143 ], [ 107.411976353026205, 37.911975613283914 ], [ 107.657646112378131, 37.85293528913229 ], [ 107.661676873788679, 37.810715644411459 ], [ 107.496415643367186, 37.761106269538686 ], [ 107.311000604094545, 37.578430081383146 ], [ 107.238033482159437, 37.306353665489269 ], [ 107.326968621904314, 37.155355130534815 ], [ 107.285472446696019, 37.068461209017585 ], [ 107.125688917609409, 37.124633490842882 ], [ 106.919293248084898, 37.10941478096737 ], [ 106.74721072829243, 37.206308092544418 ], [ 106.644064569024579, 37.181658434289261 ], [ 106.637036574078593, 37.006010240180444 ], [ 106.574818150137503, 36.93133779590255 ], [ 106.649645624046286, 36.800027980906577 ], [ 106.612231887091866, 36.731194973169465 ], [ 106.496011590762237, 36.700240790380178 ], [ 106.491980829351746, 36.542627672529022 ], [ 106.431467726854066, 36.507823595482535 ], [ 106.495391473137943, 36.436742662144127 ], [ 106.474927605924222, 36.300239365754123 ], [ 106.82947960829722, 36.206730862239453 ], [ 106.94476972864004, 36.076945502432977 ], [ 106.938568556893358, 35.923905748351558 ], [ 106.843225538927413, 35.882202867568253 ], [ 106.910921665102705, 35.782364000198413 ], [ 106.750518020190441, 35.680664780854954 ], [ 106.557609897978352, 35.733219713319102 ], [ 106.434103225183662, 35.709577745416595 ], [ 106.510894402954307, 35.560930487951623 ], [ 106.413794386701568, 35.540621650368848 ], [ 106.496580030643884, 35.474785875267912 ], [ 106.490120477378071, 35.40517772117488 ], [ 106.457719353765128, 35.323528957895064 ], [ 106.338966912792728, 35.257124742013218 ], [ 106.177323032631818, 35.413006699999187 ], [ 105.897960240272823, 35.40765818897421 ], [ 105.900647413647164, 35.44677724917068 ], [ 106.076760694850122, 35.478945827887628 ], [ 105.936149122683844, 35.524808661290649 ], [ 105.829385614054786, 35.493647772926352 ], [ 105.693114861661513, 35.647075099736071 ], [ 105.725567662117896, 35.710068670932401 ], [ 105.563096957858249, 35.699991767406118 ], [ 105.427497999932712, 35.759548855495268 ], [ 105.314843377919487, 35.972791652812532 ], [ 105.346469354277247, 36.054802151298247 ], [ 105.437419874727368, 36.10668528929466 ], [ 105.44594648644113, 36.254583237926056 ], [ 105.219241978434525, 36.702411200716313 ], [ 105.320579461672764, 36.796565660276997 ], [ 105.151545852259233, 36.996088365385731 ], [ 104.922412550598665, 37.096754055055555 ], [ 104.855388217991845, 37.218193671200936 ], [ 104.621397332620745, 37.249277045199449 ], [ 104.719944288797819, 37.323716946379932 ], [ 104.68046349519409, 37.3732229684652 ], [ 104.717567172886675, 37.406864326427524 ], [ 104.476289911050515, 37.443761298545098 ], [ 104.358519322009045, 37.401231594562432 ], [ 104.475204706332079, 37.521430976358431 ], [ 104.944323357736721, 37.545718899407632 ], [ 105.246578810963285, 37.725268662818507 ], [ 105.641645135714384, 37.734854640828985 ], [ 105.799464960039813, 37.812782701060769 ], [ 105.826129999000216, 37.999877224254476 ], [ 105.755643344864438, 38.147801012206912 ], [ 105.847524042200746, 38.265416572516813 ], [ 105.841219516767239, 38.571289374205207 ], [ 106.110402052812447, 39.116734117185729 ], [ 106.278143751932589, 39.150427151092117 ], [ 106.302069939775834, 39.289488430546612 ], [ 106.496941765849783, 39.285793565020981 ], [ 106.614092238166222, 39.358321438283724 ], [ 106.773772413566007, 39.372997544900727 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-61", "NAME_1": "Shaanxi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.335993279566139, 31.705248521402098 ], [ 109.11766035364235, 31.905727240919418 ], [ 108.663166132011327, 32.112458808127485 ], [ 108.463591750059152, 32.256610216188506 ], [ 108.064649692629189, 32.23108205789066 ], [ 107.990494012288821, 32.145221666047007 ], [ 107.659196405089972, 32.388617662275294 ], [ 107.459622024037117, 32.408642279917274 ], [ 107.441793654253672, 32.532846584702099 ], [ 107.202170037916858, 32.452773953455164 ], [ 107.06998172377746, 32.522924709907443 ], [ 107.097783645199002, 32.658006903895455 ], [ 107.052928501249312, 32.714256700086594 ], [ 106.723129510818239, 32.741645209458852 ], [ 106.625564405672719, 32.680098578186801 ], [ 106.228947789109156, 32.591964423219508 ], [ 106.059500766746964, 32.706091824478108 ], [ 106.095519239721114, 32.868381658886449 ], [ 105.875480992353857, 32.844713853461542 ], [ 105.805976190149011, 32.75505524330481 ], [ 105.613688185561273, 32.702577826105767 ], [ 105.498553094849399, 32.907397366295413 ], [ 105.667069940325462, 32.887501938963283 ], [ 105.891759067626822, 32.985402939993662 ], [ 105.92467695517729, 33.224096381242987 ], [ 105.74716840999406, 33.293988756176134 ], [ 105.715129021587018, 33.374810696256588 ], [ 105.992941522133492, 33.610636095179643 ], [ 106.170605096048291, 33.562241116234532 ], [ 106.405836215768716, 33.617379869285514 ], [ 106.495546502768832, 33.543585924151046 ], [ 106.559470249052708, 33.59862132441458 ], [ 106.471516962138026, 33.712386990467223 ], [ 106.455135533178293, 33.815610663201539 ], [ 106.490895623733991, 33.855582384119714 ], [ 106.423199497558699, 33.925164699791026 ], [ 106.524381952065369, 34.120966701851785 ], [ 106.58742719920582, 34.137451484498399 ], [ 106.552493930950106, 34.242147936478091 ], [ 106.496786737118157, 34.266487535471356 ], [ 106.678791131705339, 34.260389716512179 ], [ 106.673623487833652, 34.384671536562166 ], [ 106.596315546125538, 34.472934881839308 ], [ 106.368370802870231, 34.52021881854364 ], [ 106.317727899223144, 34.583341580049876 ], [ 106.543192172880424, 34.820045478116299 ], [ 106.491205682096506, 35.030110174744721 ], [ 106.583396437795329, 35.08488719348918 ], [ 106.914849073725748, 35.089047146108896 ], [ 107.051533238168361, 35.038145860043358 ], [ 107.210851678362246, 34.891772365702082 ], [ 107.310483840157076, 34.94324209254853 ], [ 107.724515415354119, 34.953163967343187 ], [ 107.842441034026479, 34.998122464080438 ], [ 107.672218866207686, 35.220589505101543 ], [ 107.741671990669772, 35.318361314023377 ], [ 107.971838820205335, 35.222604884907469 ], [ 108.154980096354336, 35.290559394400532 ], [ 108.503899366862242, 35.274823919688117 ], [ 108.614900344275441, 35.384507148386149 ], [ 108.490928582587969, 35.876415106971592 ], [ 108.674948357880396, 35.999818426978777 ], [ 108.699132929041411, 36.135934149741217 ], [ 108.644355910296952, 36.24853709581032 ], [ 108.703680455288747, 36.358969631543232 ], [ 108.218748813906586, 36.598593247880046 ], [ 108.041705356716818, 36.597740587158341 ], [ 108.03302371627143, 36.6543779569771 ], [ 107.886521030720928, 36.755379544330481 ], [ 107.548867222144565, 36.840025540246472 ], [ 107.500911492771138, 36.890771795781745 ], [ 107.281958449222998, 36.91490469009932 ], [ 107.326968621904314, 37.155355130534815 ], [ 107.238033482159437, 37.306353665489269 ], [ 107.317201775841227, 37.590186468830439 ], [ 107.465823194884479, 37.6896894394161 ], [ 107.496415643367186, 37.761106269538686 ], [ 107.643693475273608, 37.780278225559641 ], [ 107.657646112378131, 37.85293528913229 ], [ 107.928740676341079, 37.785342515744503 ], [ 108.038708124080642, 37.632509467238094 ], [ 108.754323358036515, 37.675452582370781 ], [ 108.790703567115884, 37.941767076089661 ], [ 108.851526727076759, 37.990239570299934 ], [ 108.942632277157827, 37.918254299396381 ], [ 109.03539147273824, 38.075221463000105 ], [ 108.952244093590025, 38.212241523327634 ], [ 109.045365025275657, 38.422461248687682 ], [ 109.313152297340594, 38.62048533792796 ], [ 109.403482701065741, 38.754223944779199 ], [ 109.548900180998487, 38.795255031994088 ], [ 109.67426720576691, 39.011210842006733 ], [ 109.820563185742401, 39.054464016401198 ], [ 109.963345168244871, 39.181277981093956 ], [ 110.174081659341084, 39.279928290058535 ], [ 110.112793409588164, 39.432037869052408 ], [ 110.215526157705995, 39.430177517078732 ], [ 110.347094354221042, 39.316282659816864 ], [ 110.513440790260233, 39.371964016126412 ], [ 110.646249221124606, 39.244271552290286 ], [ 110.900238885715964, 39.506787827696087 ], [ 111.127305128928526, 39.580581772830556 ], [ 111.041005486613869, 39.4229686549794 ], [ 111.226730585148346, 39.297033189430124 ], [ 111.118003370858844, 39.067434801574791 ], [ 110.972895949288556, 38.974288032366758 ], [ 111.003591749659449, 38.902586982303376 ], [ 110.871816847569391, 38.621363837071385 ], [ 110.897138300292283, 38.535451769283725 ], [ 110.852799921179383, 38.457239488211769 ], [ 110.579689975611814, 38.287327378755492 ], [ 110.499953241149115, 38.166146145028563 ], [ 110.515042758916138, 37.954996242782329 ], [ 110.742935826227381, 37.764878648530782 ], [ 110.705367058742695, 37.713667304102785 ], [ 110.794767287380353, 37.65842519826424 ], [ 110.788772821208681, 37.561428533899686 ], [ 110.738801711130009, 37.469547838362018 ], [ 110.63710249178655, 37.418233141146516 ], [ 110.687383661127001, 37.357229112233711 ], [ 110.66500776599554, 37.282272447115702 ], [ 110.417994418607464, 37.035259101526265 ], [ 110.445279576091536, 37.021616522784257 ], [ 110.373294305187983, 37.017869981314561 ], [ 110.418304477869299, 36.967304592033258 ], [ 110.369573602140008, 36.89123688377515 ], [ 110.417994418607464, 36.816151028347235 ], [ 110.376963332291893, 36.775171617076467 ], [ 110.441248813781669, 36.726544094134624 ], [ 110.390089146197113, 36.688923652504513 ], [ 110.4989197123748, 36.524592597170624 ], [ 110.447243279953341, 36.141876939069448 ], [ 110.619842563683335, 35.597259020187607 ], [ 110.547702264048212, 35.438224799035254 ], [ 110.335415481139478, 35.198006904395129 ], [ 110.237436964843994, 34.80139028603287 ], [ 110.252268101091943, 34.663259182565184 ], [ 110.336035597864509, 34.615846056450323 ], [ 110.340376417637515, 34.436813056077654 ], [ 110.47695722929268, 34.357334703134029 ], [ 110.433807407685663, 34.26139740686483 ], [ 110.618292270971494, 34.162462877060079 ], [ 110.593332554353879, 34.045855007102887 ], [ 110.644233840419361, 33.969606431691432 ], [ 110.593797642347283, 33.879741115959689 ], [ 110.749240349862191, 33.802794908558155 ], [ 110.80050337113363, 33.696031399029835 ], [ 110.968245070253772, 33.598828029989591 ], [ 111.015580682002849, 33.374448961050689 ], [ 110.974601271631343, 33.266471056494026 ], [ 110.817556593661834, 33.194899196740494 ], [ 110.747741733993792, 33.095887153469334 ], [ 110.610437452826147, 33.148881333706584 ], [ 110.539330681965339, 33.246110541168491 ], [ 110.43861331635145, 33.174461167948493 ], [ 110.234439732207818, 33.15632273980259 ], [ 110.110416293676963, 33.211642360906183 ], [ 109.659694451937355, 33.264093940582882 ], [ 109.462290481220691, 33.189033921778048 ], [ 109.453143751882578, 33.148157864194047 ], [ 109.753383824403954, 33.083794867439167 ], [ 109.7808240088209, 33.0335653749421 ], [ 109.739586216031, 32.930005805423548 ], [ 109.783201124732102, 32.901196194548731 ], [ 109.899111362699159, 32.914425361241399 ], [ 110.095843539847465, 32.841251532831961 ], [ 110.171291132279862, 32.633047187277839 ], [ 110.073829379921904, 32.616562405530544 ], [ 110.013316278323543, 32.549150499296104 ], [ 109.658144159225515, 32.599121609374777 ], [ 109.57944095263781, 32.541218166784972 ], [ 109.56130252539117, 32.405024928757427 ], [ 109.486061639433046, 32.346656399073538 ], [ 109.673802117773448, 32.069360663363909 ], [ 109.610911900263943, 31.936681422809386 ], [ 109.593962029623924, 31.737597968171656 ], [ 109.335993279566139, 31.705248521402098 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-63", "NAME_1": "Qinghai" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.923868442974197, 39.153114326265097 ], [ 93.275629917386766, 39.188719387189963 ], [ 93.733844842965084, 39.308531196257661 ], [ 94.149891798867372, 39.324266669171436 ], [ 94.631051060358118, 39.295379543930778 ], [ 95.005963576258011, 39.151202298347357 ], [ 95.313696730819458, 39.181277981093956 ], [ 95.70282026624227, 38.883234158229811 ], [ 96.018614942725378, 38.745904039539766 ], [ 96.054788446229793, 38.678828030089505 ], [ 96.300561558369168, 38.632991034208828 ], [ 96.50835249187395, 38.544831040819872 ], [ 96.532433710247517, 38.45765290026111 ], [ 96.912255486701326, 38.350837713889348 ], [ 96.958660923362856, 38.387192084547053 ], [ 96.971218295587846, 38.567258612794717 ], [ 96.961606480054968, 39.112083238150888 ], [ 97.013282911577051, 39.192078355032038 ], [ 97.362563918190233, 39.150427151092117 ], [ 98.068619011658029, 38.80184377736839 ], [ 98.324313998592118, 39.023251451193516 ], [ 98.444565057231557, 38.957312324204395 ], [ 98.602229851926097, 38.947597154085372 ], [ 98.781908807445461, 39.067693183093922 ], [ 99.081890496649066, 38.968629462080003 ], [ 99.099253778439106, 38.889642035551503 ], [ 99.799882847415461, 38.365720526980738 ], [ 100.00064578687352, 38.314405828865915 ], [ 100.158465611198949, 38.207435615561167 ], [ 100.155520053607574, 38.302778631728472 ], [ 100.083069695609936, 38.394504299433834 ], [ 100.103688593353866, 38.485532335149117 ], [ 100.14079227104645, 38.485842394410952 ], [ 100.330238071729582, 38.320710354299365 ], [ 100.530122512044272, 38.27420156485033 ], [ 100.635749139111454, 38.105400499433472 ], [ 101.049780715207817, 37.963729560071101 ], [ 101.7656026547387, 37.524970812253173 ], [ 101.965590447840839, 37.734854640828985 ], [ 101.995872837061711, 37.61450023030136 ], [ 102.067237990340914, 37.548302720893844 ], [ 102.040107863387163, 37.464845283383113 ], [ 102.42664757732382, 37.278060818551921 ], [ 102.550619338111915, 37.163830064505873 ], [ 102.460133904755878, 36.955651557373471 ], [ 102.678621861209876, 36.7950412050875 ], [ 102.598523390641901, 36.672387193014515 ], [ 102.769727411290944, 36.497565823004322 ], [ 102.818561638908477, 36.326051743992764 ], [ 103.040356887260486, 36.216497708302597 ], [ 102.928425733860479, 36.067824612415905 ], [ 102.999532504721287, 35.990749212905826 ], [ 102.976019728927326, 35.833291123786296 ], [ 102.700325961873602, 35.839466458010634 ], [ 102.702186313847278, 35.524033514934729 ], [ 102.534961378664661, 35.535634874549771 ], [ 102.42644087084949, 35.435305080764863 ], [ 102.298128290288332, 35.420628974147803 ], [ 102.260249465340507, 35.290352687926202 ], [ 102.317713658358628, 35.274978950218383 ], [ 102.374454380065572, 35.173563950815662 ], [ 102.267122429756284, 35.055870877039297 ], [ 101.932414177871976, 34.878982449480418 ], [ 101.906937697316835, 34.755708319783139 ], [ 101.755060663219012, 34.70367015215578 ], [ 101.793352899316801, 34.631891587726557 ], [ 101.913914016318756, 34.661398831490885 ], [ 101.959234247362588, 34.558252672223034 ], [ 102.150282016701681, 34.495078232974038 ], [ 102.216066114959176, 34.364311021236631 ], [ 102.153796014174645, 34.285762844279816 ], [ 101.780382115042528, 34.067507432721811 ], [ 101.569852330420645, 34.208170680832211 ], [ 100.935265741220917, 34.386325182061455 ], [ 100.806488071767035, 34.278063055765415 ], [ 100.791708612362527, 34.154866441333184 ], [ 100.947978143076796, 33.929763901982483 ], [ 101.129465773726452, 33.850647284244758 ], [ 101.170496860941341, 33.654431871033978 ], [ 101.376892531365172, 33.639574897263685 ], [ 101.508925815873681, 33.704868069106055 ], [ 101.613363886334241, 33.511856594106519 ], [ 101.777539911137922, 33.530046699095863 ], [ 101.668761020904356, 33.382846381555225 ], [ 101.665143670643829, 33.320395412718085 ], [ 101.726948684334275, 33.267788805209193 ], [ 101.643646274655794, 33.127771511346168 ], [ 101.445157098321374, 33.235852768690279 ], [ 101.374257033035576, 33.17864695898993 ], [ 101.32428592295696, 33.202340602836557 ], [ 101.18413943878403, 33.152757066385504 ], [ 101.127192010602755, 32.954112861319459 ], [ 101.237366163917272, 32.81828135849787 ], [ 101.170806919303857, 32.688340969060448 ], [ 100.921468133747339, 32.626225897906863 ], [ 100.674713168777657, 32.683095810822977 ], [ 100.603037958035316, 32.451223659844004 ], [ 100.531207716762651, 32.403397122579122 ], [ 100.466457147279471, 32.464737047376786 ], [ 100.56092166520267, 32.563335680397302 ], [ 100.488781365567547, 32.683612576559142 ], [ 100.399432814672593, 32.758388372725221 ], [ 100.254997185771458, 32.725806382858252 ], [ 100.223164503838746, 32.636897081535039 ], [ 100.142032505395775, 32.647594102685673 ], [ 100.144823033356261, 32.838616034502365 ], [ 99.875898878830128, 33.024599514555916 ], [ 99.769290398932696, 32.921763414549901 ], [ 99.698545363277844, 32.744616604572627 ], [ 99.289371371791333, 32.887140203757383 ], [ 99.199971144952315, 33.017028917250684 ], [ 98.871619094445634, 33.159216620550581 ], [ 98.774157342986939, 33.291198228215649 ], [ 98.735710077258204, 33.489764919815173 ], [ 98.627861363011448, 33.615881253417115 ], [ 98.65375125471661, 33.665723172286562 ], [ 98.444151646081536, 33.848735256327018 ], [ 98.288967320085703, 33.846926581196726 ], [ 98.227679071232103, 33.934130561076529 ], [ 98.034925978650961, 33.959787908784961 ], [ 97.751119011932815, 33.859432278376914 ], [ 97.731430291974334, 33.96089895282438 ], [ 97.641564976242591, 34.001129055261686 ], [ 97.610249058247405, 33.930874946021902 ], [ 97.375172968157926, 33.86242951101309 ], [ 97.386180047671019, 33.621384793173661 ], [ 97.477388951438911, 33.562241116234532 ], [ 97.521313917603152, 33.462608954439702 ], [ 97.735771111747397, 33.389435126030207 ], [ 97.615675082738846, 33.328379422072658 ], [ 97.495062289792827, 33.187457791543807 ], [ 97.499919875301941, 33.008295599961968 ], [ 97.360961948635008, 32.897036241029696 ], [ 97.430673456414866, 32.70032990230311 ], [ 97.715720655683697, 32.544189560999428 ], [ 97.702853225096248, 32.509695543214718 ], [ 97.630867955092015, 32.444092312110513 ], [ 97.360858595847503, 32.500187079570026 ], [ 97.325977004435174, 32.41223379175608 ], [ 97.393156365773621, 32.384974474492367 ], [ 97.388505486738779, 32.280768948028481 ], [ 97.276936070343311, 32.2522952339379 ], [ 97.244638300417193, 32.164471137333123 ], [ 97.273163689552575, 32.100805772568322 ], [ 97.158648715565732, 32.020190538062877 ], [ 96.737692499109528, 31.968850003324974 ], [ 96.789678989893446, 31.896838893999757 ], [ 96.748544549891051, 31.823897610486313 ], [ 96.796655307996048, 31.737365424174982 ], [ 96.763737421344899, 31.680908922408832 ], [ 96.464582554441279, 31.760671495293252 ], [ 96.307434523684265, 31.906192328013503 ], [ 96.197053663895417, 31.881930243386023 ], [ 96.141243117276019, 31.797051703473301 ], [ 96.2295064643518, 31.702147935978417 ], [ 96.235397576836647, 31.568874417120639 ], [ 96.193022901585607, 31.53474213274319 ], [ 96.062074822694854, 31.71377513311586 ], [ 95.784779086985225, 31.694654853039026 ], [ 95.644942662074129, 31.760361436031417 ], [ 95.486864455330306, 31.746667182244664 ], [ 95.40676598476233, 31.810668442894325 ], [ 95.354314405985008, 31.954406439805325 ], [ 95.424335972127381, 32.018304348566801 ], [ 95.396223993242643, 32.162068183000201 ], [ 95.269461703594686, 32.240900579897811 ], [ 95.078258904624704, 32.254517320218156 ], [ 94.968394809672702, 32.319577948963172 ], [ 94.924366489821637, 32.456029568509734 ], [ 94.755229526721223, 32.535456243710655 ], [ 94.614928012917403, 32.672734687355899 ], [ 94.410599400042258, 32.59147349680444 ], [ 94.356752557284665, 32.614081935932575 ], [ 94.334996778878178, 32.549951484073688 ], [ 94.110772739570223, 32.478224596487905 ], [ 93.852390578362474, 32.499773668420062 ], [ 93.734154901327599, 32.572456570414374 ], [ 93.494893020196685, 32.514036362987724 ], [ 93.195738153293121, 32.667153632334248 ], [ 93.043964471083427, 32.652322496086299 ], [ 92.99776574089617, 32.741516018249627 ], [ 92.221379022024223, 32.744978338879207 ], [ 92.196109247044092, 32.868640042204163 ], [ 91.976846145133436, 32.848615424562183 ], [ 91.542660760185868, 33.080332546809586 ], [ 91.376469353777622, 33.271251125838774 ], [ 91.370733270024346, 33.335717475381159 ], [ 91.177566766293182, 33.334554755397619 ], [ 91.127905714577025, 33.254327094519795 ], [ 90.940010206605734, 33.236627915945519 ], [ 90.773818801096752, 33.139114488542816 ], [ 90.288887159714591, 33.305047512532667 ], [ 90.205688103722991, 33.401501572739392 ], [ 90.160212843947534, 33.56043244110424 ], [ 89.975107863037408, 33.630557359134798 ], [ 89.886999545592516, 33.813853664914689 ], [ 89.741892124022286, 33.909506741243092 ], [ 89.640141228734706, 34.057973131554775 ], [ 89.657969597618774, 34.130966091012283 ], [ 89.786592238341086, 34.198533026877669 ], [ 89.84446984160985, 34.357954819859003 ], [ 89.715847202686234, 34.72506419535631 ], [ 89.825246209644831, 34.84609040035167 ], [ 89.77822065625827, 34.930426337005827 ], [ 89.569189488404106, 34.948048001214261 ], [ 89.571669956203493, 35.073311672295802 ], [ 89.454054396792912, 35.22462026651209 ], [ 89.491623163378222, 35.350400702430477 ], [ 89.73755130424928, 35.449981187381866 ], [ 89.690680779594288, 35.519847723893349 ], [ 89.792638381356198, 35.818046576388383 ], [ 89.511621941699218, 35.863909409791404 ], [ 89.435140822291089, 35.987803657113091 ], [ 89.592960646616518, 36.07273387296982 ], [ 89.946117385009245, 36.080020250334258 ], [ 90.020996534862149, 36.258510647448418 ], [ 90.154218377775862, 36.13247182911158 ], [ 90.622665235612089, 36.111129461855171 ], [ 90.853400506827882, 36.004727688432069 ], [ 91.111317580042225, 36.073922431375081 ], [ 91.135760532722372, 36.140636704720123 ], [ 91.006724480850096, 36.503482773910889 ], [ 90.760279576041569, 36.59060923942485 ], [ 90.697751091939324, 36.655463161695536 ], [ 90.689999628380122, 36.776256821794846 ], [ 90.826425408605701, 36.923612168966429 ], [ 91.054990268585982, 36.945135403376128 ], [ 91.298748000020169, 37.017637437317831 ], [ 91.32592980291804, 37.070192368882715 ], [ 91.081655308445704, 37.483293768992212 ], [ 90.42262576656583, 37.788546453955689 ], [ 90.439265577944013, 37.99607900594134 ], [ 90.150911085877851, 38.432796536430999 ], [ 90.478229607610274, 38.532506211692294 ], [ 90.659303827109909, 38.677122707746719 ], [ 91.294407180247106, 38.745128893183846 ], [ 92.122728713059644, 38.940646674404491 ], [ 92.367571649212209, 39.062887275327455 ], [ 92.923868442974197, 39.153114326265097 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-14", "NAME_1": "Shanxi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.154097120985284, 40.74257803055167 ], [ 114.156267531321419, 40.663874823963909 ], [ 114.256209750579501, 40.557473048742168 ], [ 114.295122105200903, 40.366787013709711 ], [ 114.510664504063584, 40.324980781038164 ], [ 114.099630162402036, 40.196823229208633 ], [ 114.060821160568025, 40.086674913416516 ], [ 113.995967238297339, 40.131814277307058 ], [ 113.924447056286567, 40.02908152918917 ], [ 114.058030634406236, 39.924488429997041 ], [ 114.388088007255647, 39.857619127021053 ], [ 114.402143996248356, 39.658458157118218 ], [ 114.540946893284399, 39.531230781275497 ], [ 114.405606316877993, 39.183913479423495 ], [ 114.267991978247096, 39.082085068870811 ], [ 114.116683384030921, 39.065574448701796 ], [ 114.02118533733335, 39.1192662618285 ], [ 113.853340285425816, 39.072292385285323 ], [ 113.754224887568512, 38.931267401969023 ], [ 113.825124952854253, 38.810267035395327 ], [ 113.534496697664395, 38.53728628193636 ], [ 113.539457635961071, 38.252135728980704 ], [ 113.790656772591888, 38.152865302391774 ], [ 114.106451450873692, 37.669380601833268 ], [ 114.05151940339772, 37.497969876508591 ], [ 113.75432824125528, 37.11494415914558 ], [ 113.770813023002574, 36.868189195075274 ], [ 113.679242384928102, 36.87159983976079 ], [ 113.607773878861394, 36.76907379811729 ], [ 113.438378534241906, 36.719464423244517 ], [ 113.547364130050482, 36.548518785013869 ], [ 113.535116815288802, 36.483380641903068 ], [ 113.721772088910711, 36.354835517345236 ], [ 113.672886183550531, 36.221458644800578 ], [ 113.685288527043895, 36.043975938039068 ], [ 113.590307245183226, 35.786653144027355 ], [ 113.609582553991572, 35.634104316361118 ], [ 113.46762739468852, 35.505636705269694 ], [ 113.299989048355883, 35.464657293998926 ], [ 112.902752313268593, 35.240588284321859 ], [ 112.674600865337652, 35.312185980698416 ], [ 112.525979445395024, 35.220279445839708 ], [ 112.058462762646286, 35.234490465362683 ], [ 112.038153925063511, 35.045768134192031 ], [ 111.957693720189013, 35.094163113137142 ], [ 111.8294328146726, 35.08256175442142 ], [ 111.682930129122099, 35.00794098608759 ], [ 111.557666457141238, 34.863402005298269 ], [ 111.138673943647518, 34.819218654916995 ], [ 110.989949171816761, 34.72196360903331 ], [ 110.910832554079036, 34.732505602351637 ], [ 110.883805779912791, 34.666101386469791 ], [ 110.647644485104877, 34.602151800864874 ], [ 110.411173130135808, 34.589103502224816 ], [ 110.270096469976068, 34.637317613117318 ], [ 110.237436964843994, 34.80139028603287 ], [ 110.335415481139478, 35.198006904395129 ], [ 110.547702264048212, 35.438224799035254 ], [ 110.619842563683335, 35.597259020187607 ], [ 110.447243279953341, 36.141876939069448 ], [ 110.4989197123748, 36.524592597170624 ], [ 110.390089146197113, 36.688923652504513 ], [ 110.441248813781669, 36.726544094134624 ], [ 110.376963332291893, 36.775171617076467 ], [ 110.417994418607464, 36.816151028347235 ], [ 110.369573602140008, 36.89123688377515 ], [ 110.418304477869299, 36.967304592033258 ], [ 110.373294305187983, 37.017869981314561 ], [ 110.445279576091536, 37.021616522784257 ], [ 110.417994418607464, 37.035259101526265 ], [ 110.66500776599554, 37.282272447115702 ], [ 110.687383661127001, 37.357229112233711 ], [ 110.63710249178655, 37.418233141146516 ], [ 110.738801711130009, 37.469547838362018 ], [ 110.788772821208681, 37.561428533899686 ], [ 110.794767287380353, 37.65842519826424 ], [ 110.705367058742695, 37.713667304102785 ], [ 110.742935826227381, 37.764878648530782 ], [ 110.515042758916138, 37.954996242782329 ], [ 110.499953241149115, 38.166146145028563 ], [ 110.579689975611814, 38.287327378755492 ], [ 110.852799921179383, 38.457239488211769 ], [ 110.897138300292283, 38.535451769283725 ], [ 110.871816847569391, 38.621363837071385 ], [ 111.003591749659449, 38.902586982303376 ], [ 110.972895949288556, 38.974288032366758 ], [ 111.118003370858844, 39.067434801574791 ], [ 111.226730585148346, 39.297033189430124 ], [ 111.110045200825311, 39.385193182819137 ], [ 111.342692499059524, 39.444414374124051 ], [ 111.421188999172955, 39.522135728780825 ], [ 111.452970005161546, 39.645254827947952 ], [ 111.751401401653311, 39.597790024989649 ], [ 111.846951125194209, 39.628795885521697 ], [ 112.279276158168159, 40.228965969503861 ], [ 112.399217156646387, 40.288342190439721 ], [ 112.715631951653222, 40.170985012548272 ], [ 112.8157292014414, 40.202430120853364 ], [ 112.950553013011131, 40.350431423171642 ], [ 113.183148635301222, 40.425284736401466 ], [ 113.323760206568181, 40.320562446000054 ], [ 113.487316114646887, 40.333145657546027 ], [ 113.676606886598506, 40.428540351456036 ], [ 114.068727654657437, 40.497915961552337 ], [ 114.028420037854403, 40.642429103919994 ], [ 114.154097120985284, 40.74257803055167 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-36", "NAME_1": "Jiangxi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.984805129153301, 25.422324530952324 ], [ 113.927547641710248, 25.448111069869981 ], [ 113.982428013242156, 25.581668810467193 ], [ 113.902846306611764, 25.740186265883437 ], [ 114.014570754436704, 25.916842149445642 ], [ 114.026352981205036, 26.049624741888294 ], [ 114.215230341107258, 26.180572822577687 ], [ 114.149239537274752, 26.222068996886662 ], [ 113.925377232273377, 26.17036672604354 ], [ 114.087847934734327, 26.568481961173575 ], [ 113.864709100144864, 26.655866808206611 ], [ 113.83163618386277, 26.827484239106354 ], [ 113.893234491078829, 26.961041977904927 ], [ 113.752467889281661, 27.097002671935741 ], [ 113.850963168615294, 27.345902207920517 ], [ 113.608600702060698, 27.356728421179696 ], [ 113.558526239194521, 27.575448919831786 ], [ 113.708129511068023, 27.83455455235071 ], [ 113.7188265322186, 27.963719794532892 ], [ 113.989145948926307, 28.071852728720444 ], [ 114.023872511607124, 28.17913300218629 ], [ 114.231921828429563, 28.368294582928627 ], [ 114.177041456897655, 28.507304185539738 ], [ 114.056945428788481, 28.564277452142676 ], [ 114.112807652251263, 28.615514634992394 ], [ 114.130480992403818, 28.826121934879382 ], [ 113.899125603563675, 28.974588324291688 ], [ 113.902381220416942, 29.066339830418826 ], [ 113.996742384653317, 29.16429250739327 ], [ 114.243755731142073, 29.242117213938229 ], [ 114.28938602144774, 29.358440863954684 ], [ 114.463225538627626, 29.317228908687184 ], [ 114.708688593303918, 29.389524237953196 ], [ 114.758194615389129, 29.360973009496774 ], [ 114.881184524246351, 29.522668564702485 ], [ 114.932240839043402, 29.500060126473613 ], [ 114.965468784956443, 29.557782701010808 ], [ 115.07528120306506, 29.554242866015443 ], [ 115.113935175268125, 29.506907254266366 ], [ 115.140186802179187, 29.587522487872491 ], [ 115.08122399329261, 29.655735378884629 ], [ 115.342706739924097, 29.640284125012329 ], [ 115.486212192838366, 29.86427562122293 ], [ 115.705165236386506, 29.86081329969403 ], [ 115.888874953316417, 29.731828925564457 ], [ 116.236192255168362, 29.781334946750349 ], [ 116.513332961247102, 29.894196275237903 ], [ 116.593948194853283, 30.010674953985927 ], [ 116.701693557211797, 30.056460273023163 ], [ 116.886798537222717, 29.920422065525884 ], [ 116.794142694429752, 29.751982734415662 ], [ 116.674976841408011, 29.708006090508661 ], [ 116.648466832078611, 29.62741669442488 ], [ 116.734301386399807, 29.546336371026655 ], [ 116.876204868859531, 29.549772854133892 ], [ 116.962866246380145, 29.661471463537168 ], [ 117.085752801550484, 29.715499172548732 ], [ 117.106681756757666, 29.78637339941281 ], [ 117.063686964781596, 29.836861274328328 ], [ 117.181302525091382, 29.92708832436665 ], [ 117.245898064943731, 29.835801907132293 ], [ 117.404338006893454, 29.834432481573742 ], [ 117.406921828379609, 29.764850165003111 ], [ 117.540867140805858, 29.614058336522987 ], [ 117.637243686646798, 29.612559718855948 ], [ 117.707678663939191, 29.555638129096337 ], [ 117.985904575635573, 29.572019558056127 ], [ 118.104605340663852, 29.530032457332027 ], [ 118.182481724052309, 29.362885037414514 ], [ 118.05199873315496, 29.275319322328869 ], [ 117.999237095115745, 29.134423530221738 ], [ 118.371669143216309, 28.798604234297954 ], [ 118.427686395410774, 28.688533433770942 ], [ 118.471456332843445, 28.32039053039864 ], [ 118.348879836035508, 28.219802354195281 ], [ 118.363762649126897, 28.093608507126874 ], [ 117.817387730159567, 27.935091050811309 ], [ 117.753153924613912, 27.816106064942915 ], [ 117.613627557165955, 27.859462592124885 ], [ 117.521798536673032, 27.974442654105189 ], [ 117.292923619229555, 27.864578559153188 ], [ 117.287135857733574, 27.772620348350358 ], [ 117.105751580770743, 27.554080715052919 ], [ 117.101100701735959, 27.346651515854774 ], [ 117.156187778842877, 27.282211004734052 ], [ 117.040122512144194, 27.109534207537649 ], [ 116.923437127821103, 27.021012478043417 ], [ 116.669705844748933, 26.986906032987008 ], [ 116.547749464666026, 26.872933661359355 ], [ 116.504961379164229, 26.689301458795285 ], [ 116.542323440174528, 26.562797553364362 ], [ 116.619889764301092, 26.498227851034471 ], [ 116.598030634006477, 26.402703965915293 ], [ 116.505271438426121, 26.409473578442885 ], [ 116.398973015991828, 26.287543035882379 ], [ 116.397267693649042, 26.061458645500068 ], [ 116.323215366995555, 25.955108547121711 ], [ 116.135164830292638, 25.866328437007724 ], [ 116.159659458017472, 25.775532945289171 ], [ 116.030106643107047, 25.642336940797179 ], [ 115.974554478006667, 25.332045803171241 ], [ 115.841280959148889, 25.186111559301025 ], [ 115.888461542166397, 24.999947211194808 ], [ 115.85445844899823, 24.959510403182549 ], [ 115.907685175030792, 24.875562039256693 ], [ 115.811308628290476, 24.872590644142917 ], [ 115.754981316834233, 24.819596462107029 ], [ 115.797045932823494, 24.564134019169614 ], [ 115.691522657644441, 24.547985134206556 ], [ 115.420583124211817, 24.78455984106381 ], [ 115.263900181448207, 24.759057522086948 ], [ 115.152175735421793, 24.685547796893275 ], [ 115.046962517705992, 24.70665762015301 ], [ 114.87022911977806, 24.588034369490515 ], [ 114.757212762558879, 24.632062690240957 ], [ 114.707241651580944, 24.551886705307197 ], [ 114.641922642216173, 24.58526967995175 ], [ 114.405761345609562, 24.501528022500224 ], [ 114.169600050801705, 24.674695746111752 ], [ 114.314707473271255, 24.774741319056602 ], [ 114.413512810967404, 24.979690050455474 ], [ 114.729307489249209, 25.118880520219818 ], [ 114.683057082218511, 25.16345144332945 ], [ 114.712719353815032, 25.279490872505733 ], [ 114.545907830681813, 25.415942491153032 ], [ 114.29109134289115, 25.293133450348421 ], [ 114.127018670874918, 25.310548407183205 ], [ 114.019376662203172, 25.268535468037385 ], [ 114.018601515847195, 25.426742865091114 ], [ 113.984805129153301, 25.422324530952324 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-41", "NAME_1": "Henan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.867292921631019, 36.365299994499139 ], [ 114.004493850011158, 36.353311062155797 ], [ 114.156267531321419, 36.246676743836645 ], [ 114.343077833675011, 36.244713039974783 ], [ 114.560635614142257, 36.134383857029377 ], [ 114.842272169624835, 36.148646552496359 ], [ 114.930690546331562, 36.056559150484361 ], [ 115.112436557600972, 36.186008613506715 ], [ 115.234392937683879, 36.169988918853505 ], [ 115.322087843978807, 36.077875678419787 ], [ 115.460322300233884, 36.157870795300937 ], [ 115.423993767997899, 35.994599107163026 ], [ 115.333870069847762, 35.931140448872611 ], [ 115.331079542786597, 35.773734035697146 ], [ 115.468228794323409, 35.912924506360866 ], [ 116.090309686342948, 36.078624986354043 ], [ 116.033672317423452, 35.96581533470993 ], [ 115.943962030423336, 35.979767970915077 ], [ 115.863450148705397, 35.925042629913435 ], [ 115.873785434650017, 35.865511380246005 ], [ 115.761337518211803, 35.84918162723028 ], [ 115.61798709492848, 35.731256008557921 ], [ 115.504247268196877, 35.722832750530984 ], [ 115.341621535205604, 35.555452785717478 ], [ 115.340381300856279, 35.48517283805603 ], [ 115.068356560906523, 35.380114650870439 ], [ 114.941749301788832, 35.218832505915373 ], [ 114.851573927694517, 35.178163153906382 ], [ 114.834210646803854, 35.016183376961237 ], [ 115.181631301443417, 34.939986477493903 ], [ 115.216047804862228, 34.835729275085953 ], [ 115.306533238218321, 34.846917223551031 ], [ 115.429264763757828, 34.779712021992225 ], [ 115.442803989712274, 34.660055243454678 ], [ 115.530757276627014, 34.580060126573585 ], [ 116.100851678761956, 34.607732855886582 ], [ 116.163380161964824, 34.534739895529754 ], [ 116.156713902224737, 34.447303372552597 ], [ 116.369310744395307, 34.286072903541651 ], [ 116.573380974852057, 34.278812363699615 ], [ 116.542943556899559, 34.120915025008401 ], [ 116.641180454714117, 33.953225002731642 ], [ 116.632498814268843, 33.904571642267456 ], [ 116.456230503434995, 33.855866604060509 ], [ 116.42372602703449, 33.792304592083212 ], [ 116.166170689025989, 33.716701971818509 ], [ 115.967733188635748, 33.908421536524656 ], [ 115.96137698815744, 34.000147203330755 ], [ 115.66170535731635, 34.054097397976534 ], [ 115.561349725109721, 33.898137926524043 ], [ 115.629304233703351, 33.844601142128965 ], [ 115.622482945231695, 33.766156317959712 ], [ 115.573545363028074, 33.750188300149887 ], [ 115.634575230362543, 33.584772040097562 ], [ 115.349993117288477, 33.516869208347259 ], [ 115.315059849032764, 33.367756862888882 ], [ 115.349217970932614, 33.263344630849986 ], [ 115.279093052002736, 33.138029282925061 ], [ 115.142822299609406, 33.084259955432572 ], [ 114.969189488004417, 33.123740749935621 ], [ 114.886558872793671, 33.083407293811547 ], [ 114.899219597806109, 32.974240830849624 ], [ 115.189382765901883, 32.854015611531224 ], [ 115.199304640696596, 32.59147349680444 ], [ 115.379965448146891, 32.554033922327619 ], [ 115.546673619391981, 32.409184882276463 ], [ 115.64661583864995, 32.402441108170592 ], [ 115.693848097611522, 32.49181549748721 ], [ 115.790069614720892, 32.470705675126794 ], [ 115.920397576886671, 32.574368598332114 ], [ 115.86174482636261, 32.515018214918655 ], [ 115.928149042244513, 32.024583035578587 ], [ 115.901328972753845, 31.794493720408866 ], [ 115.531532423882254, 31.736383572244051 ], [ 115.338365920151091, 31.402760525078122 ], [ 115.211396925827444, 31.455134589489717 ], [ 115.215427688137197, 31.540555731761572 ], [ 115.159410435043469, 31.603445950170453 ], [ 115.037764113323078, 31.485985419491499 ], [ 114.790750766834321, 31.483763333211243 ], [ 114.547871535442937, 31.572879340109466 ], [ 114.535469191949574, 31.748450018953179 ], [ 114.361836379445322, 31.734264837851981 ], [ 114.149549594738005, 31.849554959094064 ], [ 114.057875603876028, 31.765709947056394 ], [ 113.958088414248891, 31.750310370027535 ], [ 113.957158238262082, 31.838289496263201 ], [ 113.872150507140191, 31.846945299186189 ], [ 113.791121860585349, 31.979236965213772 ], [ 113.752364537393419, 32.137599391898391 ], [ 113.784300572113693, 32.35228913003931 ], [ 113.729213495006775, 32.419261785802746 ], [ 113.630201450836239, 32.395878201218011 ], [ 113.535116815288802, 32.299010728062626 ], [ 113.435949742386697, 32.288752957383053 ], [ 113.218702020281967, 32.410270086994899 ], [ 113.112403598747051, 32.381563828907531 ], [ 113.045844354133578, 32.425230414452017 ], [ 112.760797153965427, 32.350325426177449 ], [ 112.304287550729782, 32.344666855890694 ], [ 111.779254999018917, 32.520366725943632 ], [ 111.657970411605163, 32.622531033280552 ], [ 111.54557417201039, 32.596770330985976 ], [ 111.497825149111293, 32.692862656886064 ], [ 111.214483270386552, 32.924734808764413 ], [ 111.104309117072034, 33.153454698375583 ], [ 110.994134962858197, 33.21988475177983 ], [ 110.977081740329993, 33.583867703431736 ], [ 110.80050337113363, 33.696031399029835 ], [ 110.749240349862191, 33.802794908558155 ], [ 110.598293491751178, 33.873488268268943 ], [ 110.644233840419361, 33.969606431691432 ], [ 110.593332554353879, 34.045855007102887 ], [ 110.618292270971494, 34.162462877060079 ], [ 110.446209751179026, 34.24439586028069 ], [ 110.472616407720977, 34.36560293242934 ], [ 110.329421014068487, 34.463193875097261 ], [ 110.336035597864509, 34.615846056450323 ], [ 110.647644485104877, 34.602151800864874 ], [ 110.883805779912791, 34.666101386469791 ], [ 110.910832554079036, 34.732505602351637 ], [ 110.989949171816761, 34.72196360903331 ], [ 111.138673943647518, 34.819218654916995 ], [ 111.557666457141238, 34.863402005298269 ], [ 111.682930129122099, 35.00794098608759 ], [ 111.8294328146726, 35.08256175442142 ], [ 111.957693720189013, 35.094163113137142 ], [ 112.038153925063511, 35.045768134192031 ], [ 112.058462762646286, 35.234490465362683 ], [ 112.525979445395024, 35.220279445839708 ], [ 112.674600865337652, 35.312185980698416 ], [ 112.902752313268593, 35.240588284321859 ], [ 113.299989048355883, 35.464657293998926 ], [ 113.46762739468852, 35.505636705269694 ], [ 113.609582553991572, 35.634104316361118 ], [ 113.590307245183226, 35.786653144027355 ], [ 113.685288527043895, 36.043975938039068 ], [ 113.672886183550531, 36.221458644800578 ], [ 113.721048619398175, 36.355869046119551 ], [ 113.867292921631019, 36.365299994499139 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-42", "NAME_1": "Hubei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.022307977131391, 30.822770087469564 ], [ 110.127676222679497, 30.906408393032905 ], [ 110.104835239554632, 31.110892035538996 ], [ 110.175476923321298, 31.198406073781257 ], [ 110.146744825912947, 31.331111151858124 ], [ 109.968151076011281, 31.503426214748004 ], [ 109.732609897928398, 31.561122951762798 ], [ 109.703257683795016, 31.6737000603095 ], [ 109.583006626054896, 31.746176255829539 ], [ 109.673802117773448, 32.069360663363909 ], [ 109.486061639433046, 32.346656399073538 ], [ 109.56130252539117, 32.405024928757427 ], [ 109.57944095263781, 32.541218166784972 ], [ 109.639643995873655, 32.594832465545835 ], [ 110.020912714050496, 32.550468248011214 ], [ 110.073829379921904, 32.616562405530544 ], [ 110.168293898744366, 32.622350165227942 ], [ 110.154961379264194, 32.729578761850348 ], [ 110.08204593327315, 32.848202013412163 ], [ 109.739586216031, 32.930005805423548 ], [ 109.7808240088209, 33.0335653749421 ], [ 109.749043002832252, 33.087050483393057 ], [ 109.447562696860928, 33.167975776261073 ], [ 109.522803582819051, 33.24127879498036 ], [ 109.659694451937355, 33.264093940582882 ], [ 110.110416293676963, 33.211642360906183 ], [ 110.234439732207818, 33.15632273980259 ], [ 110.43861331635145, 33.174461167948493 ], [ 110.539330681965339, 33.246110541168491 ], [ 110.610437452826147, 33.148881333706584 ], [ 110.747741733993792, 33.095887153469334 ], [ 110.817556593661834, 33.194899196740494 ], [ 110.974601271631343, 33.266471056494026 ], [ 111.108804965576667, 33.148028672984822 ], [ 111.214483270386552, 32.924734808764413 ], [ 111.497825149111293, 32.692862656886064 ], [ 111.54557417201039, 32.596770330985976 ], [ 111.657970411605163, 32.622531033280552 ], [ 111.779254999018917, 32.520366725943632 ], [ 112.304287550729782, 32.344666855890694 ], [ 112.760797153965427, 32.350325426177449 ], [ 113.045844354133578, 32.425230414452017 ], [ 113.112403598747051, 32.381563828907531 ], [ 113.218702020281967, 32.410270086994899 ], [ 113.435949742386697, 32.288752957383053 ], [ 113.535116815288802, 32.299010728062626 ], [ 113.630201450836239, 32.395878201218011 ], [ 113.729213495006775, 32.419261785802746 ], [ 113.784300572113693, 32.35228913003931 ], [ 113.752364537393419, 32.137599391898391 ], [ 113.791121860585349, 31.979236965213772 ], [ 113.872150507140191, 31.846945299186189 ], [ 113.957158238262082, 31.838289496263201 ], [ 113.958088414248891, 31.750310370027535 ], [ 114.057875603876028, 31.765709947056394 ], [ 114.149549594738005, 31.849554959094064 ], [ 114.361836379445322, 31.734264837851981 ], [ 114.535469191949574, 31.748450018953179 ], [ 114.547871535442937, 31.572879340109466 ], [ 114.790750766834321, 31.483763333211243 ], [ 115.037764113323078, 31.485985419491499 ], [ 115.165921666051986, 31.601456406987552 ], [ 115.211396925827444, 31.455134589489717 ], [ 115.278007847284243, 31.396145942181477 ], [ 115.374022657919227, 31.417539985382007 ], [ 115.380378860196174, 31.35051565187581 ], [ 115.568946160836617, 31.163757026365658 ], [ 115.656331007869653, 31.221789659265369 ], [ 115.792963494569562, 31.127712714070469 ], [ 115.876937696917139, 31.129366360469135 ], [ 115.939517856963448, 31.035366930539396 ], [ 116.035377638866862, 31.030948595501286 ], [ 116.016929152358443, 30.963975937939153 ], [ 115.858644240039553, 30.860958970779848 ], [ 115.857869093683689, 30.779025987559237 ], [ 115.780561151076199, 30.763497219321209 ], [ 115.766608513971732, 30.694405829165646 ], [ 115.940137973688479, 30.50563182205093 ], [ 115.946029087072702, 30.445868028386769 ], [ 115.876627638554623, 30.375691433512827 ], [ 116.040493605895108, 30.221437283503803 ], [ 116.147257115423486, 29.788776352846412 ], [ 115.888874953316417, 29.731828925564457 ], [ 115.705165236386506, 29.86081329969403 ], [ 115.486212192838366, 29.86427562122293 ], [ 115.342706739924097, 29.640284125012329 ], [ 115.08122399329261, 29.655735378884629 ], [ 115.140186802179187, 29.587522487872491 ], [ 115.113935175268125, 29.506907254266366 ], [ 115.07528120306506, 29.554242866015443 ], [ 114.965468784956443, 29.557782701010808 ], [ 114.932240839043402, 29.500060126473613 ], [ 114.881184524246351, 29.522668564702485 ], [ 114.758194615389129, 29.360973009496774 ], [ 114.708688593303918, 29.389524237953196 ], [ 114.463225538627626, 29.317228908687184 ], [ 114.28938602144774, 29.358440863954684 ], [ 114.243755731142073, 29.242117213938229 ], [ 114.063456658897621, 29.203153185171345 ], [ 113.902381220416942, 29.066339830418826 ], [ 113.772828403707763, 29.125302639305346 ], [ 113.701928339321398, 29.072385973433882 ], [ 113.641363559980277, 29.22175670041139 ], [ 113.580902134326038, 29.253046779984913 ], [ 113.729523554268553, 29.445541490147605 ], [ 113.649425082801258, 29.676276760464077 ], [ 113.533256464214446, 29.693304145469938 ], [ 113.590307245183226, 29.879959418192584 ], [ 113.066463250978245, 29.442363390358139 ], [ 113.032873569859362, 29.519051215341278 ], [ 112.935825229550687, 29.480526435246759 ], [ 112.90848839702187, 29.600803331408599 ], [ 113.012926466583167, 29.772989203089253 ], [ 112.936290318443412, 29.693304145469938 ], [ 112.886164178733793, 29.791773587281227 ], [ 112.664885695218572, 29.631938381351176 ], [ 112.450893589067846, 29.644004828060361 ], [ 112.281911655598378, 29.536931261068844 ], [ 112.213802118273065, 29.673098659775292 ], [ 112.172822707002297, 29.645606798514905 ], [ 111.923638951076668, 29.856394965555182 ], [ 111.754760370394706, 29.924711209354825 ], [ 111.396229282555282, 29.924685370033785 ], [ 111.246160922688375, 30.031733100402221 ], [ 110.741850620609625, 30.096173611522943 ], [ 110.715598992799244, 30.029640204431871 ], [ 110.543361444275206, 30.055013333098827 ], [ 110.463159620919726, 30.013982244984618 ], [ 110.506567824045817, 29.984604194228154 ], [ 110.473391554976217, 29.90626272194703 ], [ 110.591162144017687, 29.771361396011571 ], [ 110.427451207207412, 29.722165432288875 ], [ 110.376859978605069, 29.653539130126717 ], [ 110.103905063567765, 29.78541738500428 ], [ 109.783201124732102, 29.734929510988138 ], [ 109.685119257447752, 29.600725816143495 ], [ 109.598819615133095, 29.618864244289398 ], [ 109.465856153738457, 29.566412665512075 ], [ 109.206595494286603, 29.104244492888995 ], [ 108.920566441288202, 29.348984076254112 ], [ 108.870905388672725, 29.48670176947104 ], [ 108.889405552024584, 29.622352403340699 ], [ 108.696032342718411, 29.698161729180413 ], [ 108.640790235980546, 29.846550605126311 ], [ 108.512632684151015, 29.72185537392636 ], [ 108.440492385415212, 29.743481961123564 ], [ 108.400443150131252, 29.831073512832347 ], [ 108.531081170659434, 29.86580007641237 ], [ 108.55051150909884, 29.999512843942568 ], [ 108.538832636017275, 30.302879340309289 ], [ 108.380392694067552, 30.388610540943716 ], [ 108.433206008050774, 30.487286689229279 ], [ 108.589785598026879, 30.5035389269799 ], [ 108.661305780037651, 30.575420844196572 ], [ 108.732515903685965, 30.519713650364679 ], [ 108.964646437982708, 30.607486070126015 ], [ 109.152438593166494, 30.562010810350614 ], [ 109.270984327664564, 30.602576809572099 ], [ 109.377747837192885, 30.580252590384703 ], [ 109.55479129438271, 30.653219713219187 ], [ 109.730439487592207, 30.822925116201134 ], [ 109.870689324552643, 30.88858002414878 ], [ 110.022307977131391, 30.822770087469564 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-34", "NAME_1": "Anhui" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.629783562561329, 31.132880357042836 ], [ 119.578262159770816, 30.855197047705587 ], [ 119.451448195078115, 30.648129583713285 ], [ 119.360290969052926, 30.680453192960442 ], [ 119.242933791161477, 30.556584784060533 ], [ 119.326287875884759, 30.514959418542333 ], [ 119.392382033404033, 30.36843089457011 ], [ 119.237817824133231, 30.298641873323788 ], [ 118.95432091667692, 30.354788315828102 ], [ 118.881095412323361, 30.324350897875604 ], [ 118.909465773626494, 30.222212428960404 ], [ 118.852725051020229, 30.159270535506778 ], [ 118.890552199124613, 29.975069892161798 ], [ 118.73614302038402, 29.82265025480541 ], [ 118.723740675991394, 29.730201116688193 ], [ 118.389497512100434, 29.456316026563343 ], [ 118.319941033951523, 29.491016750822382 ], [ 118.310535923094335, 29.446910915706155 ], [ 118.174730258694467, 29.407869370774847 ], [ 118.104605340663852, 29.530032457332027 ], [ 118.002337681438803, 29.569952501406817 ], [ 117.707678663939191, 29.555638129096337 ], [ 117.637243686646798, 29.612559718855948 ], [ 117.540867140805858, 29.614058336522987 ], [ 117.406921828379609, 29.764850165003111 ], [ 117.404338006893454, 29.834432481573742 ], [ 117.245898064943731, 29.835801907132293 ], [ 117.181302525091382, 29.92708832436665 ], [ 117.063686964781596, 29.836861274328328 ], [ 117.106681756757666, 29.78637339941281 ], [ 117.085752801550484, 29.715499172548732 ], [ 116.962866246380145, 29.661471463537168 ], [ 116.876204868859531, 29.549772854133892 ], [ 116.734301386399807, 29.546336371026655 ], [ 116.649086948803642, 29.640206611545864 ], [ 116.682004836354054, 29.718754788502679 ], [ 116.797915074321168, 29.755935981460368 ], [ 116.880132276583254, 29.939077256709993 ], [ 116.777709588626522, 30.031242173987096 ], [ 116.650482211884537, 30.050672512426502 ], [ 116.513332961247102, 29.894196275237903 ], [ 116.389516229190576, 29.876057847991262 ], [ 116.265492791559041, 29.788931383376621 ], [ 116.147257115423486, 29.788776352846412 ], [ 116.040493605895108, 30.221437283503803 ], [ 115.876627638554623, 30.375691433512827 ], [ 115.946029087072702, 30.445868028386769 ], [ 115.940137973688479, 30.50563182205093 ], [ 115.766608513971732, 30.694405829165646 ], [ 115.780561151076199, 30.763497219321209 ], [ 115.857869093683689, 30.779025987559237 ], [ 115.858644240039553, 30.860958970779848 ], [ 116.016929152358443, 30.963975937939153 ], [ 116.035377638866862, 31.030948595501286 ], [ 115.939517856963448, 31.035366930539396 ], [ 115.876937696917139, 31.129366360469135 ], [ 115.792963494569562, 31.127712714070469 ], [ 115.656331007869653, 31.221789659265369 ], [ 115.568946160836617, 31.163757026365658 ], [ 115.374022657919227, 31.366276964110568 ], [ 115.391127557290929, 31.517585558326857 ], [ 115.531532423882254, 31.736383572244051 ], [ 115.901328972753845, 31.794493720408866 ], [ 115.928149042244513, 32.024583035578587 ], [ 115.86174482636261, 32.515018214918655 ], [ 115.920397576886671, 32.574368598332114 ], [ 115.790069614720892, 32.470705675126794 ], [ 115.693848097611522, 32.49181549748721 ], [ 115.64661583864995, 32.402441108170592 ], [ 115.546673619391981, 32.409184882276463 ], [ 115.379965448146891, 32.554033922327619 ], [ 115.199304640696596, 32.59147349680444 ], [ 115.189382765901883, 32.854015611531224 ], [ 114.899219597806109, 32.974240830849624 ], [ 114.886558872793671, 33.083407293811547 ], [ 114.969189488004417, 33.123740749935621 ], [ 115.142822299609406, 33.084259955432572 ], [ 115.279093052002736, 33.138029282925061 ], [ 115.349217970932614, 33.263344630849986 ], [ 115.315059849032764, 33.367756862888882 ], [ 115.349993117288477, 33.516869208347259 ], [ 115.634575230362543, 33.584772040097562 ], [ 115.573545363028074, 33.750188300149887 ], [ 115.622482945231695, 33.766156317959712 ], [ 115.629304233703351, 33.844601142128965 ], [ 115.561349725109721, 33.898137926524043 ], [ 115.66170535731635, 34.054097397976534 ], [ 115.96137698815744, 34.000147203330755 ], [ 115.967733188635748, 33.908421536524656 ], [ 116.157282343005704, 33.717890530223769 ], [ 116.632498814268843, 33.904571642267456 ], [ 116.542943556899559, 34.120915025008401 ], [ 116.573380974852057, 34.278812363699615 ], [ 116.386518995655024, 34.276486925531174 ], [ 116.153768344633363, 34.455261541686752 ], [ 116.151287875934713, 34.566727607093355 ], [ 116.428118523650937, 34.63969472902852 ], [ 116.598030634006477, 34.494768175510842 ], [ 116.769544712118773, 34.451825060378212 ], [ 116.814503207956591, 34.392087104236452 ], [ 116.949482050056531, 34.389296576275967 ], [ 117.033921340397455, 34.155538234901599 ], [ 117.406921828379609, 34.025003567160866 ], [ 117.508931106085583, 34.049291490210067 ], [ 117.576265497055033, 33.988442490928207 ], [ 117.634453159585632, 34.00138743678076 ], [ 117.690935499773445, 33.883513494951785 ], [ 117.74865807520996, 33.875710354549199 ], [ 117.726902296803473, 33.727915757805931 ], [ 118.104760370294798, 33.767629096305711 ], [ 118.163258091187913, 33.736752427882209 ], [ 118.115457391445375, 33.484442247211916 ], [ 118.052928908242507, 33.476923325850805 ], [ 117.931851027302969, 33.2351292991778 ], [ 118.080730828764672, 33.149553128174318 ], [ 118.166462030298362, 33.212339992896318 ], [ 118.209043410225149, 33.193969020753684 ], [ 118.24842085194075, 33.013411566990214 ], [ 118.299063754688518, 32.967962143837838 ], [ 118.237465448371722, 32.911247260552614 ], [ 118.299683873212189, 32.77740530001455 ], [ 118.381435988380076, 32.729837144268799 ], [ 118.720175001674988, 32.732136745814159 ], [ 118.857375930055127, 32.972302965409483 ], [ 118.992974887980608, 32.962045192931271 ], [ 119.153378533792306, 32.824534207087993 ], [ 119.199370559303816, 32.593721422405679 ], [ 119.080514763745327, 32.446081855293357 ], [ 118.897476841283151, 32.595530097535971 ], [ 118.558892856719922, 32.587468573815613 ], [ 118.597340123347976, 32.486854560089853 ], [ 118.666793247810119, 32.458871772414341 ], [ 118.665397983829848, 32.249737249974089 ], [ 118.507888217866935, 32.19751821519344 ], [ 118.350223423172338, 31.95239105910008 ], [ 118.460397577386289, 31.890663561574115 ], [ 118.484168735598587, 31.784442654404984 ], [ 118.680125767290292, 31.709537665231039 ], [ 118.673924594644291, 31.649773871566879 ], [ 118.777277460386472, 31.674165147403585 ], [ 118.865747512137887, 31.620680039851948 ], [ 118.880940382692415, 31.522443142037332 ], [ 118.827248569565768, 31.397541205262371 ], [ 118.737383253834082, 31.333875841396946 ], [ 118.803632440085039, 31.227629095806094 ], [ 119.344581332762232, 31.2875220815788 ], [ 119.369902784585747, 31.188355006878055 ], [ 119.629783562561329, 31.132880357042836 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-91", "NAME_1": "Hong Kong" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.229828321000014, 22.555812893000052 ], [ 114.209320509, 22.523708401000079 ], [ 114.254567905000044, 22.550970770000049 ], [ 114.335134311000047, 22.506415106000077 ], [ 114.167491082000083, 22.448065497000073 ], [ 114.209320509, 22.398667710000041 ], [ 114.323741082000083, 22.480047919000071 ], [ 114.347585483000103, 22.422919012000079 ], [ 114.359873894000089, 22.461167710000041 ], [ 114.399750196000014, 22.436143296000068 ], [ 114.357595248000052, 22.332424221000053 ], [ 114.318614129000025, 22.38939036700009 ], [ 114.258392774000072, 22.362087307000081 ], [ 114.296722852000016, 22.258286851000037 ], [ 114.25554446700005, 22.322333075000074 ], [ 114.238942905000044, 22.281683661000045 ], [ 114.195485873000052, 22.318264065000051 ], [ 114.171885613000086, 22.288723049000055 ], [ 114.104828321000014, 22.36985911700009 ], [ 113.944834832000083, 22.362087307000081 ], [ 113.896983269000089, 22.408758856000077 ], [ 114.091464478000091, 22.534387919000025 ], [ 114.229828321000014, 22.555812893000052 ] ] ], [ [ [ 114.137380405000044, 22.178778387000079 ], [ 114.110850457000083, 22.177069403000075 ], [ 114.10670006600003, 22.23578522300005 ], [ 114.154633009, 22.203599351000037 ], [ 114.137380405000044, 22.178778387000079 ] ] ], [ [ [ 114.215586785000028, 22.285630601000037 ], [ 114.256114129000025, 22.203599351000037 ], [ 114.222666863000086, 22.238836981000077 ], [ 114.207692905000044, 22.189561265000066 ], [ 114.11255944100003, 22.271511135000083 ], [ 114.215586785000028, 22.285630601000037 ] ] ], [ [ [ 113.846446160000028, 22.197088934000078 ], [ 113.892507358000103, 22.292710679000038 ], [ 114.054860873000052, 22.336330471000053 ], [ 114.000173373000052, 22.216131903000075 ], [ 113.846446160000028, 22.197088934000078 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-71", "NAME_1": "Taiwan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.905772332000083, 24.950100002000056 ], [ 121.806813998000052, 24.77875397300005 ], [ 121.814952019000089, 24.644354559000078 ], [ 121.881846550000091, 24.597805080000057 ], [ 121.840830925000091, 24.590318101000037 ], [ 121.840017123000052, 24.481350002000056 ], [ 121.780039910000028, 24.432684637000079 ], [ 121.77271569100003, 24.30923086100006 ], [ 121.607432488000086, 24.076849677000041 ], [ 121.629161004000025, 24.014960028000075 ], [ 121.40007571700005, 23.145493882000039 ], [ 121.17741946700005, 22.778631903000075 ], [ 120.948252800000091, 22.52680084800005 ], [ 120.881358269000089, 22.345933335000041 ], [ 120.840342644000089, 21.90460846600007 ], [ 120.767425977000016, 21.95929596600007 ], [ 120.714366082000083, 21.937486070000091 ], [ 120.621267123000052, 22.295070705000057 ], [ 120.511973504000025, 22.424750067000048 ], [ 120.380869988000086, 22.483872789000088 ], [ 120.331228061000047, 22.519720770000049 ], [ 120.285166863000086, 22.580064195000091 ], [ 120.33366946700005, 22.525946356000077 ], [ 120.239593946000014, 22.659084377000056 ], [ 120.142100457000083, 22.980292059000078 ], [ 120.166188998000052, 23.031724351000037 ], [ 120.055186394000089, 23.04368724200009 ], [ 120.100433790000011, 23.096991278000075 ], [ 120.059418165000011, 23.15102773600006 ], [ 120.148936394000089, 23.322251695000091 ], [ 120.12077884200005, 23.34125397300005 ], [ 120.164577389000101, 23.36171145600008 ], [ 120.124261533000094, 23.520020550000083 ], [ 120.184418165000011, 23.76439036700009 ], [ 120.702159050000091, 24.607001044000071 ], [ 120.826670769000089, 24.666083075000074 ], [ 121.059336785000028, 25.05023834800005 ], [ 121.378754102000016, 25.157945054000038 ], [ 121.443207227000016, 25.136419989000046 ], [ 121.39576256600003, 25.182806708000044 ], [ 121.436289910000028, 25.241441148000035 ], [ 121.580821160000028, 25.283026434000078 ], [ 121.703868035000028, 25.15688711100006 ], [ 121.892832879000025, 25.113674221000053 ], [ 121.91920006600003, 25.022040106000077 ], [ 122.005381707000083, 25.001898505000042 ], [ 121.905772332000083, 24.950100002000056 ] ] ], [ [ [ 121.563487175000091, 22.044623114000046 ], [ 121.587657097000033, 22.013861395000049 ], [ 121.492035352000016, 22.082180080000057 ], [ 121.566579623000052, 22.082180080000057 ], [ 121.563487175000091, 22.044623114000046 ] ] ], [ [ [ 118.39421634200005, 24.522691148000035 ], [ 118.44958993900002, 24.505527833000087 ], [ 118.463355546, 24.431523084000048 ], [ 118.283946160000028, 24.401271877000056 ], [ 118.282074415000011, 24.477362372000073 ], [ 118.381414146, 24.473511031000044 ], [ 118.39421634200005, 24.522691148000035 ] ] ], [ [ [ 119.647959832000083, 23.603461005000042 ], [ 119.668467644000089, 23.548814195000091 ], [ 119.563975457000083, 23.516587632000039 ], [ 119.527110222000033, 23.539984442000048 ], [ 119.58716881600003, 23.548814195000091 ], [ 119.55241946700005, 23.590399481000077 ], [ 119.647959832000083, 23.603461005000042 ] ] ], [ [ [ 119.477061394000089, 23.603461005000042 ], [ 119.501312696000014, 23.650376695000091 ], [ 119.491709832000083, 23.57103099200009 ], [ 119.442393425000091, 23.562486070000091 ], [ 119.477061394000089, 23.603461005000042 ] ] ], [ [ [ 119.572601759, 23.62767161700009 ], [ 119.545258009, 23.664943752000056 ], [ 119.566416863000086, 23.679185289000088 ], [ 119.596202019000089, 23.653265692000048 ], [ 119.572601759, 23.62767161700009 ] ] ], [ [ [ 121.460703972000033, 22.659002997000073 ], [ 121.457530144000089, 22.675930080000057 ], [ 121.502777540000011, 22.669501044000071 ], [ 121.496104363000086, 22.634670315000051 ], [ 121.460703972000033, 22.659002997000073 ] ] ], [ [ [ 120.021860789000016, 23.45164440700006 ], [ 120.115251230000013, 23.547911555000042 ], [ 120.124769932000049, 23.550453797000046 ], [ 120.007656285000053, 23.432593713000074 ], [ 120.021860789000016, 23.45164440700006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CN-92", "NAME_1": "Macao" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.558604363000086, 22.163031317000048 ], [ 113.587494337000066, 22.12486399900007 ], [ 113.546804233000103, 22.105373440000051 ], [ 113.532237175000091, 22.152614651000079 ], [ 113.558604363000086, 22.163031317000048 ] ] ], [ [ [ 113.536468946000014, 22.217067776000079 ], [ 113.557139519000089, 22.202460028000075 ], [ 113.524750196000014, 22.173732815000051 ], [ 113.524343295000108, 22.212551174000055 ], [ 113.536468946000014, 22.217067776000079 ] ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/denmark.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/denmark.geojson new file mode 100644 index 000000000000..5dc2d5469657 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/denmark.geojson @@ -0,0 +1,11 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "DK-83", "NAME_1": "Syddanmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.317032918000052, 54.801617330000042 ], [ 9.244065796000143, 54.801772360000101 ], [ 9.226392456000042, 54.805906474000025 ], [ 9.219054403000143, 54.817792054000037 ], [ 9.216057169000123, 54.831744690000036 ], [ 9.211509644000103, 54.841821594000081 ], [ 9.194766480000055, 54.850399882000019 ], [ 8.982686401000109, 54.879338684000075 ], [ 8.904138224000064, 54.897942200000031 ], [ 8.824246459000079, 54.905900370000083 ], [ 8.80088871200013, 54.903833314000039 ], [ 8.732779175000104, 54.889053854000011 ], [ 8.695882202000092, 54.889984029000047 ], [ 8.660775934000071, 54.896311156000067 ], [ 8.668793165000068, 54.91351959800005 ], [ 8.661387566000087, 54.920314846000053 ], [ 8.674815300000091, 54.947943427000041 ], [ 8.666351759000065, 54.973334052000041 ], [ 8.650401238000086, 54.997992255000042 ], [ 8.640961134000065, 55.023382880000042 ], [ 8.644786004000082, 55.055731512000079 ], [ 8.656504754000082, 55.082505601000037 ], [ 8.670909050000091, 55.107123114000046 ], [ 8.681895379000082, 55.133205471000053 ], [ 8.57553144600007, 55.144110419000071 ], [ 8.563649936000047, 55.143377997000073 ], [ 8.55990644600007, 55.13507721600007 ], [ 8.557383660000085, 55.096380927000041 ], [ 8.551117384000065, 55.091376044000071 ], [ 8.541351759000065, 55.090277411000045 ], [ 8.528575066000087, 55.081976630000042 ], [ 8.514821811000047, 55.070786851000037 ], [ 8.49935957100007, 55.065578518000052 ], [ 8.483897332000083, 55.067613023000035 ], [ 8.470225457000083, 55.078599351000037 ], [ 8.458832227000073, 55.103461005000042 ], [ 8.460215691000087, 55.127386786000045 ], [ 8.46648196700005, 55.151597398000035 ], [ 8.470225457000083, 55.177557684000078 ], [ 8.488942905000044, 55.197170315000051 ], [ 8.530528191000087, 55.200751044000071 ], [ 8.572601759000065, 55.19367096600007 ], [ 8.593760613000086, 55.180975653000075 ], [ 8.580332879000082, 55.178941148000035 ], [ 8.569509311000047, 55.173773505000042 ], [ 8.55209394600007, 55.160549221000053 ], [ 8.555186394000089, 55.149359442000048 ], [ 8.614756707000083, 55.144354559000078 ], [ 8.66928144600007, 55.136908270000049 ], [ 8.689463738000086, 55.141587632000039 ], [ 8.68718509200005, 55.160589911000045 ], [ 8.668793165000068, 55.194647528000075 ], [ 8.65593509200005, 55.237494208000044 ], [ 8.648448113000086, 55.280259507000039 ], [ 8.650401238000086, 55.291734117000033 ], [ 8.659353061000047, 55.305812893000052 ], [ 8.661387566000087, 55.314439195000034 ], [ 8.659678582000083, 55.327215887000079 ], [ 8.648448113000086, 55.352280992000033 ], [ 8.639414910000085, 55.397406317000048 ], [ 8.632090691000087, 55.418768622000073 ], [ 8.617686394000089, 55.437933661000045 ], [ 8.592539910000085, 55.449286200000074 ], [ 8.556651238000086, 55.454291083000044 ], [ 8.49000084700009, 55.455308335000041 ], [ 8.441905144000089, 55.463934637000079 ], [ 8.401133660000085, 55.485663153000075 ], [ 8.310394727000073, 55.562689520000049 ], [ 8.311208530000044, 55.56976959800005 ], [ 8.332367384000065, 55.572007554000038 ], [ 8.332367384000065, 55.578273830000057 ], [ 8.313161655000044, 55.582709052000041 ], [ 8.290212436000047, 55.583807684000078 ], [ 8.267832879000082, 55.580511786000045 ], [ 8.250498894000089, 55.572007554000038 ], [ 8.239024285000085, 55.557928778000075 ], [ 8.242035352000073, 55.548529364000046 ], [ 8.271739129000082, 55.530462958000044 ], [ 8.262461785000085, 55.529201565000051 ], [ 8.256358269000089, 55.52680084800005 ], [ 8.243662957000083, 55.516791083000044 ], [ 8.266774936000047, 55.514390367000033 ], [ 8.293955925000091, 55.504339911000045 ], [ 8.316742384000065, 55.489406643000052 ], [ 8.326182488000086, 55.47211334800005 ], [ 8.313324415000068, 55.469305731000077 ], [ 8.193614129000082, 55.525946356000077 ], [ 8.169200066000087, 55.534084377000056 ], [ 8.110606316000087, 55.540228583000044 ], [ 8.095225457000083, 55.549058335000041 ], [ 8.094004754000082, 55.56391022300005 ], [ 8.150238477000073, 55.649237372000073 ], [ 8.169118686000047, 55.687933661000045 ], [ 8.181651238000086, 55.729071356000077 ], [ 8.18336022200009, 55.769598700000074 ], [ 8.175607072135389, 55.801476429694382 ], [ 8.175811395279652, 55.801477972930059 ], [ 8.3683061054424, 55.802537340126094 ], [ 8.399208612287623, 55.790109158211067 ], [ 8.424478387267754, 55.783752956833439 ], [ 8.459721713885983, 55.771066393399281 ], [ 8.471969027748401, 55.769412747000672 ], [ 8.490159132737745, 55.771479804549301 ], [ 8.503026564224569, 55.779282944951945 ], [ 8.553307732665701, 55.811296494937267 ], [ 8.555478143001892, 55.813492743695122 ], [ 8.555943230995297, 55.816076565181334 ], [ 8.554237908652567, 55.819125475560213 ], [ 8.549121941624321, 55.82545583851612 ], [ 8.54850182489929, 55.82868561514897 ], [ 8.553617791028216, 55.831527818154257 ], [ 8.560749138761707, 55.834111640539732 ], [ 8.569585808837985, 55.835403550833178 ], [ 8.578732537276778, 55.835248522101608 ], [ 8.588499383339865, 55.831476142210192 ], [ 8.598886346127983, 55.829202379086496 ], [ 8.610875277572006, 55.827936306315451 ], [ 8.627618441737695, 55.829796658289126 ], [ 8.644051548440189, 55.833904934065401 ], [ 8.654593539959876, 55.834783434108147 ], [ 8.687201369147829, 55.829951687020696 ], [ 8.757481316809333, 55.801788032191894 ], [ 8.774586216180921, 55.798816637078119 ], [ 8.806987338894544, 55.804552720831396 ], [ 8.823110386335259, 55.810340481428057 ], [ 8.822955355804993, 55.816800034693813 ], [ 8.817684360045178, 55.833749905333832 ], [ 8.828278029307569, 55.842844956929184 ], [ 8.843470899862098, 55.872300522950752 ], [ 8.880057813617213, 55.882584133850685 ], [ 8.92909874770902, 55.880000312364473 ], [ 8.959381137829212, 55.864006456133041 ], [ 8.999275342582962, 55.834731757264763 ], [ 9.013072950955916, 55.828788967936475 ], [ 9.047334425643214, 55.830907701429226 ], [ 9.058083122737912, 55.836617946760782 ], [ 9.070950555124, 55.835713609195693 ], [ 9.079787225200278, 55.848270982319946 ], [ 9.085058220960093, 55.853541978979138 ], [ 9.093894891036371, 55.859329739575799 ], [ 9.102886589844218, 55.8632054713554 ], [ 9.121076693934242, 55.866047675260006 ], [ 9.137974887730877, 55.873902493405296 ], [ 9.184380324392464, 55.90710460089656 ], [ 9.211665480077841, 55.938343004526018 ], [ 9.249389276294039, 55.94299388356086 ], [ 9.343130323805383, 55.925475572139931 ], [ 9.374756301062405, 55.914365138939957 ], [ 9.399922723255088, 55.901652737084135 ], [ 9.450668979689624, 55.865789292841555 ], [ 9.458265415416577, 55.858451240432373 ], [ 9.459660679396848, 55.853309434982407 ], [ 9.462916293552098, 55.846100571983754 ], [ 9.468807406936264, 55.836850490757513 ], [ 9.491131626123661, 55.821709296147048 ], [ 9.516453077947176, 55.797576401829474 ], [ 9.5304057150517, 55.787551175146575 ], [ 9.546218703230579, 55.784502264767696 ], [ 9.581617058580377, 55.786827703835456 ], [ 9.600685661813827, 55.784528103189359 ], [ 9.605491571378877, 55.778869533801924 ], [ 9.602546013787503, 55.772668362055242 ], [ 9.598360222746066, 55.766906439880245 ], [ 9.596344842040821, 55.760834459342789 ], [ 9.597895134752662, 55.753393053246782 ], [ 9.608747186433504, 55.749465643724477 ], [ 9.641665073084653, 55.746933499081706 ], [ 9.663989292271992, 55.74295441271596 ], [ 9.675513135722611, 55.737063300231114 ], [ 9.680629102750856, 55.728485012573231 ], [ 9.679698926764047, 55.719648343396329 ], [ 9.675564812566051, 55.708718777349645 ], [ 9.675520592898721, 55.708598177530696 ], [ 9.583018425000091, 55.708889065000051 ], [ 9.559580925000091, 55.715399481000077 ], [ 9.55640709700009, 55.71157461100006 ], [ 9.554535352000073, 55.708807684000078 ], [ 9.553477410000085, 55.705796617000033 ], [ 9.552744988000086, 55.701117255000042 ], [ 9.57357832100007, 55.695461330000057 ], [ 9.645518425000091, 55.694891669000071 ], [ 9.658539259000065, 55.690375067000048 ], [ 9.71029707100007, 55.660142320000034 ], [ 9.720957879000082, 55.648260809000078 ], [ 9.72820071700005, 55.637518622000073 ], [ 9.738291863000086, 55.629706122000073 ], [ 9.758148634000065, 55.626654364000046 ], [ 9.853770379000082, 55.626654364000046 ], [ 9.837412957000083, 55.615220445000034 ], [ 9.785492384000065, 55.591945705000057 ], [ 9.757660352000073, 55.571600653000075 ], [ 9.744151238000086, 55.566351630000042 ], [ 9.720876498000052, 55.564601955000057 ], [ 9.712412957000083, 55.560288804000038 ], [ 9.71062259200005, 55.550930080000057 ], [ 9.71029707100007, 55.541571356000077 ], [ 9.706879102000073, 55.537298895000049 ], [ 9.64389082100007, 55.528306382000039 ], [ 9.621104363000086, 55.518947658000059 ], [ 9.607269727000073, 55.516791083000044 ], [ 9.595225457000083, 55.518377997000073 ], [ 9.572764519000089, 55.523911851000037 ], [ 9.559580925000091, 55.523627020000049 ], [ 9.56218509200005, 55.519517320000034 ], [ 9.566416863000086, 55.516791083000044 ], [ 9.551931186000047, 55.505113023000035 ], [ 9.514903191000087, 55.498195705000057 ], [ 9.498057488000086, 55.489447333000044 ], [ 9.515635613000086, 55.483140367000033 ], [ 9.534434441000087, 55.48383209800005 ], [ 9.58366946700005, 55.491156317000048 ], [ 9.592784050000091, 55.494289455000057 ], [ 9.602386915000068, 55.495794989000046 ], [ 9.660166863000086, 55.47797272300005 ], [ 9.664235873000052, 55.466701565000051 ], [ 9.65992272200009, 55.453029690000051 ], [ 9.648936394000089, 55.441066799000055 ], [ 9.635264519000089, 55.435736395000049 ], [ 9.601410352000073, 55.431830145000049 ], [ 9.586761915000068, 55.427435614000046 ], [ 9.592051629000082, 55.41632721600007 ], [ 9.604340040000068, 55.401190497000073 ], [ 9.607920769000089, 55.393255927000041 ], [ 9.60515384200005, 55.382025458000044 ], [ 9.59929446700005, 55.37335846600007 ], [ 9.600840691000087, 55.365912177000041 ], [ 9.621104363000086, 55.358547268000052 ], [ 9.633474155000044, 55.351996161000045 ], [ 9.645274285000085, 55.342718817000048 ], [ 9.648285352000073, 55.332912502000056 ], [ 9.634613477000073, 55.325018622000073 ], [ 9.634613477000073, 55.317572333000044 ], [ 9.644867384000065, 55.310939846000053 ], [ 9.681895379000082, 55.274644273000035 ], [ 9.694183790000068, 55.271633205000057 ], [ 9.706065300000091, 55.26508209800005 ], [ 9.71029707100007, 55.24868398600006 ], [ 9.706553582000083, 55.237005927000041 ], [ 9.699473504000082, 55.229803778000075 ], [ 9.692881707000083, 55.22101471600007 ], [ 9.689789259000065, 55.204901434000078 ], [ 9.684418165000068, 55.19757721600007 ], [ 9.67156009200005, 55.192450262000079 ], [ 9.655772332000083, 55.189439195000034 ], [ 9.642100457000083, 55.188421942000048 ], [ 9.58334394600007, 55.194647528000075 ], [ 9.569834832000083, 55.192531643000052 ], [ 9.561534050000091, 55.187201239000046 ], [ 9.554942254000082, 55.180568752000056 ], [ 9.545909050000091, 55.17413971600007 ], [ 9.521820509000065, 55.165432033000059 ], [ 9.50717207100007, 55.161932684000078 ], [ 9.494395379000082, 55.160549221000053 ], [ 9.486338738000086, 55.156236070000034 ], [ 9.486338738000086, 55.147406317000048 ], [ 9.494639519000089, 55.14008209800005 ], [ 9.511892123000052, 55.14008209800005 ], [ 9.511892123000052, 55.133205471000053 ], [ 9.482432488000086, 55.133775132000039 ], [ 9.468760613000086, 55.131781317000048 ], [ 9.456553582000083, 55.125718492000033 ], [ 9.466644727000073, 55.12140534100007 ], [ 9.479177280000044, 55.119696356000077 ], [ 9.508067254000082, 55.119533596000053 ], [ 9.521332227000073, 55.11587148600006 ], [ 9.535817905000044, 55.10687897300005 ], [ 9.559580925000091, 55.08539459800005 ], [ 9.533702019000089, 55.065822658000059 ], [ 9.516612175000091, 55.056545315000051 ], [ 9.498057488000086, 55.050685940000051 ], [ 9.452403191000087, 55.045355536000045 ], [ 9.434336785000085, 55.037543036000045 ], [ 9.442881707000083, 55.023382880000042 ], [ 9.455251498000052, 55.023179429000038 ], [ 9.511892123000052, 55.036363023000035 ], [ 9.537364129000082, 55.035386460000041 ], [ 9.545909050000091, 55.036363023000035 ], [ 9.553233269000089, 55.039618231000077 ], [ 9.56023196700005, 55.044419664000031 ], [ 9.568532748000052, 55.048773505000042 ], [ 9.579925977000073, 55.050685940000051 ], [ 9.601573113000086, 55.045396226000037 ], [ 9.641856316000087, 55.019720770000049 ], [ 9.662608269000089, 55.009711005000042 ], [ 9.717539910000085, 55.001166083000044 ], [ 9.730967644000089, 54.995428778000075 ], [ 9.738617384000065, 54.980861721000053 ], [ 9.760752800000091, 54.904974677000041 ], [ 9.763194207000083, 54.900458075000074 ], [ 9.761566602000073, 54.897406317000048 ], [ 9.751963738000086, 54.893011786000045 ], [ 9.737071160000085, 54.892767645000049 ], [ 9.722992384000065, 54.897650458000044 ], [ 9.711436394000089, 54.898586330000057 ], [ 9.703461134000065, 54.88617584800005 ], [ 9.715993686000047, 54.883775132000039 ], [ 9.72787519600007, 54.879461981000077 ], [ 9.737803582000083, 54.873521226000037 ], [ 9.744476759000065, 54.866278387000079 ], [ 9.748301629000082, 54.857855536000045 ], [ 9.750254754000082, 54.846258856000077 ], [ 9.745941602000073, 54.836004950000074 ], [ 9.731211785000085, 54.831529039000031 ], [ 9.719574415000068, 54.835842190000051 ], [ 9.705332879000082, 54.854559637000079 ], [ 9.69662519600007, 54.858872789000031 ], [ 9.655039910000085, 54.857082424000055 ], [ 9.642100457000083, 54.858872789000031 ], [ 9.623301629000082, 54.865301825000074 ], [ 9.62468509200005, 54.869289455000057 ], [ 9.632823113000086, 54.873114325000074 ], [ 9.634613477000073, 54.879339911000045 ], [ 9.61695397200009, 54.894232489000046 ], [ 9.610362175000091, 54.903225002000056 ], [ 9.617523634000065, 54.907294012000079 ], [ 9.64421634200005, 54.913275458000044 ], [ 9.638845248000052, 54.924750067000048 ], [ 9.61500084700009, 54.932684637000079 ], [ 9.586761915000068, 54.927720445000034 ], [ 9.581228061000047, 54.921779690000051 ], [ 9.56804446700005, 54.901434637000079 ], [ 9.556813998000052, 54.890326239000046 ], [ 9.55054772200009, 54.882717190000051 ], [ 9.545909050000091, 54.879339911000045 ], [ 9.538340691000087, 54.877915757000039 ], [ 9.522146030000044, 54.879299221000053 ], [ 9.515147332000083, 54.875921942000048 ], [ 9.498057488000086, 54.864325262000079 ], [ 9.45639082100007, 54.843817450000074 ], [ 9.442881707000083, 54.831529039000031 ], [ 9.436289910000085, 54.810451565000051 ], [ 9.437503027053964, 54.810411127382693 ], [ 9.436922241000048, 54.810143942000067 ], [ 9.422142781000019, 54.80725006100009 ], [ 9.405192911000114, 54.808386943000087 ], [ 9.385039103000054, 54.819394023000072 ], [ 9.366952352000112, 54.817016907000024 ], [ 9.35599694800004, 54.811332499000073 ], [ 9.341734253000084, 54.809058736000068 ], [ 9.332019084000137, 54.803219300000094 ], [ 9.317032918000052, 54.801617330000042 ] ] ], [ [ [ 10.450205925000091, 54.899807033000059 ], [ 10.466644727000073, 54.890570380000042 ], [ 10.48568769600007, 54.883693752000056 ], [ 10.499196811000047, 54.874579169000071 ], [ 10.498708530000044, 54.858872789000031 ], [ 10.508148634000065, 54.85492584800005 ], [ 10.518565300000091, 54.851996161000045 ], [ 10.440114780000044, 54.841498114000046 ], [ 10.418630405000044, 54.827826239000046 ], [ 10.406260613000086, 54.824693101000037 ], [ 10.383474155000044, 54.830755927000041 ], [ 10.211436394000089, 54.939357815000051 ], [ 10.195160352000073, 54.961859442000048 ], [ 10.18921959700009, 54.977484442000048 ], [ 10.203868035000085, 54.968085028000075 ], [ 10.28874759200005, 54.940741278000075 ], [ 10.313731316000087, 54.927720445000034 ], [ 10.33725019600007, 54.905910549000055 ], [ 10.349619988000086, 54.896714585000041 ], [ 10.364268425000091, 54.893011786000045 ], [ 10.379405144000089, 54.893052476000037 ], [ 10.391368035000085, 54.895453192000048 ], [ 10.39584394600007, 54.903469143000052 ], [ 10.388845248000052, 54.920314846000053 ], [ 10.403086785000085, 54.908392645000049 ], [ 10.415212436000047, 54.878485419000071 ], [ 10.426036004000082, 54.87250397300005 ], [ 10.446787957000083, 54.872381903000075 ], [ 10.460948113000086, 54.874497789000031 ], [ 10.463633660000085, 54.882473049000055 ], [ 10.450205925000091, 54.899807033000059 ] ] ], [ [ [ 10.01140384200005, 54.975531317000048 ], [ 10.025889519000089, 54.959784247000073 ], [ 10.065114780000044, 54.890814520000049 ], [ 10.064463738000086, 54.881008205000057 ], [ 10.05046634200005, 54.878851630000042 ], [ 10.021983269000089, 54.879339911000045 ], [ 10.007090691000087, 54.874823309000078 ], [ 9.987559441000087, 54.865912177000041 ], [ 9.968028191000087, 54.859523830000057 ], [ 9.953623894000089, 54.862616278000075 ], [ 9.93718509200005, 54.870917059000078 ], [ 9.891123894000089, 54.879299221000053 ], [ 9.874278191000087, 54.88617584800005 ], [ 9.874278191000087, 54.893011786000045 ], [ 9.900889519000089, 54.90070221600007 ], [ 9.932302280000044, 54.892808335000041 ], [ 9.963877800000091, 54.879950262000079 ], [ 9.99154707100007, 54.87250397300005 ], [ 9.99154707100007, 54.879339911000045 ], [ 9.943695509000065, 54.903631903000075 ], [ 9.898285352000073, 54.912990627000056 ], [ 9.887950066000087, 54.91351959800005 ], [ 9.877940300000091, 54.911322333000044 ], [ 9.863536004000082, 54.903062242000033 ], [ 9.853770379000082, 54.899807033000059 ], [ 9.814707879000082, 54.901068427000041 ], [ 9.78093509200005, 54.916815497000073 ], [ 9.761241082000083, 54.943060614000046 ], [ 9.764414910000085, 54.975531317000048 ], [ 9.758148634000065, 54.975531317000048 ], [ 9.758148634000065, 54.981756903000075 ], [ 9.780284050000091, 54.972845770000049 ], [ 9.80404707100007, 54.957180080000057 ], [ 9.827403191000087, 54.945461330000057 ], [ 9.847504102000073, 54.948187567000048 ], [ 9.843272332000083, 54.951727606000077 ], [ 9.836680535000085, 54.958563544000071 ], [ 9.832774285000085, 54.96515534100007 ], [ 9.836680535000085, 54.968085028000075 ], [ 9.842133009000065, 54.970282294000071 ], [ 9.835215691000087, 54.975165106000077 ], [ 9.793711785000085, 54.992173570000034 ], [ 9.78679446700005, 55.000148830000057 ], [ 9.799082879000082, 55.009711005000042 ], [ 9.799082879000082, 55.016546942000048 ], [ 9.720550977000073, 55.012274481000077 ], [ 9.706879102000073, 55.01312897300005 ], [ 9.69695071700005, 55.017523505000042 ], [ 9.684825066000087, 55.018540757000039 ], [ 9.674164259000065, 55.021063544000071 ], [ 9.668793165000068, 55.030218817000048 ], [ 9.672373894000089, 55.034654039000031 ], [ 9.691254102000073, 55.042792059000078 ], [ 9.69662519600007, 55.050685940000051 ], [ 9.678233269000089, 55.050197658000059 ], [ 9.661631707000083, 55.046535549000055 ], [ 9.645518425000091, 55.044867255000042 ], [ 9.628428582000083, 55.050685940000051 ], [ 9.628428582000083, 55.05805084800005 ], [ 9.716644727000073, 55.082220770000049 ], [ 9.751963738000086, 55.08539459800005 ], [ 9.793467644000089, 55.080755927000041 ], [ 9.853037957000083, 55.040106512000079 ], [ 9.884776238000086, 55.030218817000048 ], [ 9.92904707100007, 55.026190497000073 ], [ 9.960948113000086, 55.015041408000059 ], [ 9.986582879000082, 54.997748114000046 ], [ 10.01140384200005, 54.975531317000048 ] ] ], [ [ [ 10.854991082000083, 55.043850002000056 ], [ 10.861989780000044, 55.072088934000078 ], [ 10.895518425000091, 55.121527411000045 ], [ 10.934255405000044, 55.159654039000031 ], [ 10.95671634200005, 55.153713283000059 ], [ 10.908946160000085, 55.030218817000048 ], [ 10.889903191000087, 54.997381903000075 ], [ 10.837738477000073, 54.937241929000038 ], [ 10.741058790000068, 54.752386786000045 ], [ 10.731293165000068, 54.740057684000078 ], [ 10.717539910000085, 54.73578522300005 ], [ 10.693858269000089, 54.735296942000048 ], [ 10.681895379000082, 54.744818427000041 ], [ 10.656423373000052, 54.803656317000048 ], [ 10.645518425000091, 54.814601955000057 ], [ 10.632090691000087, 54.823431708000044 ], [ 10.601084832000083, 54.838324286000045 ], [ 10.625336134000065, 54.83930084800005 ], [ 10.640879754000082, 54.84320709800005 ], [ 10.653493686000047, 54.851629950000074 ], [ 10.66928144600007, 54.866278387000079 ], [ 10.678558790000068, 54.883042710000041 ], [ 10.684418165000068, 54.887844143000052 ], [ 10.693858269000089, 54.882757880000042 ], [ 10.69890384200005, 54.88117096600007 ], [ 10.724457227000073, 54.88617584800005 ], [ 10.722178582000083, 54.896063544000071 ], [ 10.717784050000091, 54.907294012000079 ], [ 10.708994988000086, 54.90298086100006 ], [ 10.700368686000047, 54.901556708000044 ], [ 10.691905144000089, 54.90298086100006 ], [ 10.68295332100007, 54.907294012000079 ], [ 10.69703209700009, 54.931341864000046 ], [ 10.718272332000083, 54.949164130000042 ], [ 10.774099155000044, 54.986558335000041 ], [ 10.79818769600007, 54.996568101000037 ], [ 10.854991082000083, 55.043850002000056 ] ] ], [ [ [ 8.476410352000073, 55.345445054000038 ], [ 8.451670769000089, 55.339748440000051 ], [ 8.425303582000083, 55.355536200000074 ], [ 8.402354363000086, 55.380031643000052 ], [ 8.370941602000073, 55.427435614000046 ], [ 8.364268425000091, 55.449042059000078 ], [ 8.37435957100007, 55.463283596000053 ], [ 8.408213738000086, 55.468410549000055 ], [ 8.411957227000073, 55.438706773000035 ], [ 8.428558790000068, 55.433539130000042 ], [ 8.44890384200005, 55.435532945000034 ], [ 8.463389519000089, 55.427435614000046 ], [ 8.463063998000052, 55.415716864000046 ], [ 8.450205925000091, 55.393377997000073 ], [ 8.45289147200009, 55.383368231000077 ], [ 8.460459832000083, 55.372381903000075 ], [ 8.467458530000044, 55.353705145000049 ], [ 8.476410352000073, 55.345445054000038 ] ] ], [ [ [ 10.666270379000082, 55.064276434000078 ], [ 10.621429884000065, 55.064276434000078 ], [ 10.604746941000087, 55.062567450000074 ], [ 10.586110873000052, 55.057521877000056 ], [ 10.568858269000089, 55.049872137000079 ], [ 10.55640709700009, 55.040106512000079 ], [ 10.538259311000047, 55.029730536000045 ], [ 10.516856316000087, 55.031317450000074 ], [ 10.477549675000091, 55.043850002000056 ], [ 10.410655144000089, 55.046942450000074 ], [ 10.388845248000052, 55.050685940000051 ], [ 10.379161004000082, 55.054510809000078 ], [ 10.371348504000082, 55.059027411000045 ], [ 10.362559441000087, 55.062730210000041 ], [ 10.35092207100007, 55.064276434000078 ], [ 10.32593834700009, 55.062892971000053 ], [ 10.312754754000082, 55.063666083000044 ], [ 10.234222852000073, 55.092230536000045 ], [ 10.205251498000052, 55.093695380000042 ], [ 10.197601759000065, 55.086086330000057 ], [ 10.19703209700009, 55.064276434000078 ], [ 10.181895379000082, 55.070868231000077 ], [ 10.158376498000052, 55.086655992000033 ], [ 10.141774936000047, 55.092230536000045 ], [ 10.121267123000052, 55.092474677000041 ], [ 10.083506707000083, 55.086981512000079 ], [ 10.065928582000083, 55.092230536000045 ], [ 10.142588738000086, 55.125799872000073 ], [ 10.15601647200009, 55.14008209800005 ], [ 10.138682488000086, 55.154282945000034 ], [ 10.126149936000047, 55.170640367000033 ], [ 10.11296634200005, 55.183783270000049 ], [ 10.094004754000082, 55.188421942000048 ], [ 10.078949415000068, 55.185939846000053 ], [ 10.067556186000047, 55.18227773600006 ], [ 10.055837436000047, 55.179754950000074 ], [ 10.039317254000082, 55.180975653000075 ], [ 10.016612175000091, 55.194281317000048 ], [ 10.00359134200005, 55.197333075000074 ], [ 9.99154707100007, 55.188421942000048 ], [ 9.994476759000065, 55.172796942000048 ], [ 10.029144727000073, 55.142401434000078 ], [ 10.025645379000082, 55.125718492000033 ], [ 10.020681186000047, 55.12445709800005 ], [ 9.985524936000047, 55.127752997000073 ], [ 9.982920769000089, 55.130601304000038 ], [ 9.984385613000086, 55.134670315000051 ], [ 9.98414147200009, 55.14008209800005 ], [ 9.986989780000044, 55.139349677000041 ], [ 9.989756707000083, 55.143377997000073 ], [ 9.988780144000089, 55.151841539000031 ], [ 9.97429446700005, 55.174017645000049 ], [ 9.97201582100007, 55.184719143000052 ], [ 9.97429446700005, 55.195257880000042 ], [ 9.980723504000082, 55.204901434000078 ], [ 9.979502800000091, 55.212836005000042 ], [ 9.964121941000087, 55.218166408000059 ], [ 9.924001498000052, 55.223944403000075 ], [ 9.911387566000087, 55.228501695000034 ], [ 9.90015709700009, 55.234116929000038 ], [ 9.895355665000068, 55.238999742000033 ], [ 9.893239780000044, 55.24445221600007 ], [ 9.883962436000047, 55.253485419000071 ], [ 9.881683790000068, 55.259507554000038 ], [ 9.883962436000047, 55.265611070000034 ], [ 9.893239780000044, 55.274644273000035 ], [ 9.895355665000068, 55.280259507000039 ], [ 9.893239780000044, 55.291245835000041 ], [ 9.883962436000047, 55.308783270000049 ], [ 9.881683790000068, 55.314439195000034 ], [ 9.884776238000086, 55.348863023000035 ], [ 9.874522332000083, 55.353338934000078 ], [ 9.858897332000083, 55.354071356000077 ], [ 9.82984459700009, 55.352280992000033 ], [ 9.816579623000052, 55.355210679000038 ], [ 9.80241946700005, 55.362372137000079 ], [ 9.778086785000085, 55.380275783000059 ], [ 9.794932488000086, 55.383856512000079 ], [ 9.813649936000047, 55.385158596000053 ], [ 9.830088738000086, 55.388902085000041 ], [ 9.840098504000082, 55.400091864000046 ], [ 9.785492384000065, 55.413763739000046 ], [ 9.793711785000085, 55.412787177000041 ], [ 9.819590691000087, 55.413763739000046 ], [ 9.809255405000044, 55.425482489000046 ], [ 9.791026238000086, 55.431830145000049 ], [ 9.75131269600007, 55.434881903000075 ], [ 9.737315300000091, 55.438177802000041 ], [ 9.703461134000065, 55.462144273000035 ], [ 9.703461134000065, 55.468410549000055 ], [ 9.73023522200009, 55.461493231000077 ], [ 9.758474155000044, 55.447495835000041 ], [ 9.786306186000047, 55.437201239000046 ], [ 9.81218509200005, 55.441066799000055 ], [ 9.713389519000089, 55.491034247000073 ], [ 9.676280144000089, 55.495672919000071 ], [ 9.683929884000065, 55.506048895000049 ], [ 9.693532748000052, 55.510199286000045 ], [ 9.70476321700005, 55.512396552000041 ], [ 9.717784050000091, 55.516791083000044 ], [ 9.755137566000087, 55.544134833000044 ], [ 9.809092644000089, 55.550279039000031 ], [ 9.827403191000087, 55.548407294000071 ], [ 9.830821160000085, 55.543117580000057 ], [ 9.831309441000087, 55.534735419000071 ], [ 9.840098504000082, 55.523627020000049 ], [ 9.888194207000083, 55.508693752000056 ], [ 9.940277540000068, 55.519232489000046 ], [ 10.039317254000082, 55.557766018000052 ], [ 10.168630405000044, 55.582261460000041 ], [ 10.21265709700009, 55.600653387000079 ], [ 10.237315300000091, 55.605536200000074 ], [ 10.264170769000089, 55.606634833000044 ], [ 10.272146030000044, 55.605536200000074 ], [ 10.27279707100007, 55.602525132000039 ], [ 10.27906334700009, 55.588324286000045 ], [ 10.279551629000082, 55.585109768000052 ], [ 10.293630405000044, 55.588080145000049 ], [ 10.297129754000082, 55.595648505000042 ], [ 10.293793165000068, 55.616115627000056 ], [ 10.307627800000091, 55.618231512000079 ], [ 10.338389519000089, 55.610093492000033 ], [ 10.407399936000047, 55.582953192000048 ], [ 10.423024936000047, 55.572007554000038 ], [ 10.435394727000073, 55.559719143000052 ], [ 10.444183790000068, 55.553168036000045 ], [ 10.453623894000089, 55.550279039000031 ], [ 10.471934441000087, 55.549017645000049 ], [ 10.488536004000082, 55.545477606000077 ], [ 10.518809441000087, 55.533433335000041 ], [ 10.502452019000089, 55.537176825000074 ], [ 10.486827019000089, 55.537176825000074 ], [ 10.475271030000044, 55.531968492000033 ], [ 10.470713738000086, 55.520209052000041 ], [ 10.47437584700009, 55.515814520000049 ], [ 10.489105665000068, 55.509100653000075 ], [ 10.491221550000091, 55.503119208000044 ], [ 10.48601321700005, 55.49477773600006 ], [ 10.477793816000087, 55.49249909100007 ], [ 10.467784050000091, 55.492132880000042 ], [ 10.457041863000086, 55.489447333000044 ], [ 10.41960696700005, 55.458807684000078 ], [ 10.436045769000089, 55.442124742000033 ], [ 10.471527540000068, 55.443060614000046 ], [ 10.491221550000091, 55.465277411000045 ], [ 10.502452019000089, 55.463568427000041 ], [ 10.566905144000089, 55.482652085000041 ], [ 10.604746941000087, 55.489447333000044 ], [ 10.60914147200009, 55.492580471000053 ], [ 10.60718834700009, 55.499416408000059 ], [ 10.602305535000085, 55.506252346000053 ], [ 10.597666863000086, 55.509344794000071 ], [ 10.588715040000068, 55.510687567000048 ], [ 10.579112175000091, 55.514105536000045 ], [ 10.571055535000085, 55.518703518000052 ], [ 10.566905144000089, 55.523627020000049 ], [ 10.569834832000083, 55.532416083000044 ], [ 10.582286004000082, 55.529120184000078 ], [ 10.595550977000073, 55.521389065000051 ], [ 10.601084832000083, 55.516791083000044 ], [ 10.613780144000089, 55.527899481000077 ], [ 10.610524936000047, 55.543646552000041 ], [ 10.600840691000087, 55.561224677000041 ], [ 10.594248894000089, 55.578273830000057 ], [ 10.599131707000083, 55.57367584800005 ], [ 10.61459394600007, 55.564601955000057 ], [ 10.61500084700009, 55.581447658000059 ], [ 10.608409050000091, 55.606268622000073 ], [ 10.608571811000047, 55.612982489000046 ], [ 10.627614780000044, 55.61359284100007 ], [ 10.656911655000044, 55.594875393000052 ], [ 10.704112175000091, 55.550279039000031 ], [ 10.706065300000091, 55.543890692000048 ], [ 10.707041863000086, 55.534979559000078 ], [ 10.709239129000082, 55.527044989000046 ], [ 10.714366082000083, 55.523627020000049 ], [ 10.716807488000086, 55.521429755000042 ], [ 10.738129102000073, 55.509344794000071 ], [ 10.744476759000065, 55.49555084800005 ], [ 10.742360873000052, 55.487494208000044 ], [ 10.733083530000044, 55.48187897300005 ], [ 10.703949415000068, 55.471136786000045 ], [ 10.657481316000087, 55.459702867000033 ], [ 10.588389519000089, 55.463364976000037 ], [ 10.571299675000091, 55.46124909100007 ], [ 10.559418165000068, 55.455308335000041 ], [ 10.55404707100007, 55.442572333000044 ], [ 10.563324415000068, 55.436224677000041 ], [ 10.57943769600007, 55.43585846600007 ], [ 10.594248894000089, 55.441066799000055 ], [ 10.58961022200009, 55.446234442000048 ], [ 10.588552280000044, 55.449408270000049 ], [ 10.595957879000082, 55.459662177000041 ], [ 10.615733269000089, 55.456854559000078 ], [ 10.68295332100007, 55.44790273600006 ], [ 10.697927280000044, 55.440252997000073 ], [ 10.79664147200009, 55.358547268000052 ], [ 10.803070509000065, 55.349758205000057 ], [ 10.828379754000082, 55.306586005000042 ], [ 10.834320509000065, 55.290269273000035 ], [ 10.826914910000085, 55.290269273000035 ], [ 10.815114780000044, 55.300848700000074 ], [ 10.796885613000086, 55.307684637000079 ], [ 10.780284050000091, 55.304917710000041 ], [ 10.772959832000083, 55.287095445000034 ], [ 10.77865644600007, 55.27484772300005 ], [ 10.805349155000044, 55.250433661000045 ], [ 10.813324415000068, 55.235581773000035 ], [ 10.815196160000085, 55.214056708000044 ], [ 10.812673373000052, 55.194281317000048 ], [ 10.80600019600007, 55.177394924000055 ], [ 10.79078209700009, 55.156927802000041 ], [ 10.787852410000085, 55.149481512000079 ], [ 10.786631707000083, 55.129461981000077 ], [ 10.783376498000052, 55.124212958000044 ], [ 10.758799675000091, 55.105292059000078 ], [ 10.74935957100007, 55.093085028000075 ], [ 10.742686394000089, 55.081691799000055 ], [ 10.733653191000087, 55.071844794000071 ], [ 10.717784050000091, 55.064276434000078 ], [ 10.705577019000089, 55.062567450000074 ], [ 10.666270379000082, 55.064276434000078 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DK-82", "NAME_1": "Midtjylland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.175607072135389, 55.801476429694382 ], [ 8.135590040000068, 55.966009833000044 ], [ 8.130707227000073, 55.976141669000071 ], [ 8.127777540000068, 55.978216864000046 ], [ 8.126800977000073, 55.982977606000077 ], [ 8.127777540000068, 55.987616278000075 ], [ 8.130707227000073, 55.989732164000031 ], [ 8.136729363000086, 55.98859284100007 ], [ 8.139414910000085, 55.986029364000046 ], [ 8.141123894000089, 55.983465887000079 ], [ 8.144053582000083, 55.982326565000051 ], [ 8.150563998000052, 55.977036851000037 ], [ 8.17546634200005, 55.900336005000042 ], [ 8.193369988000086, 55.873846747000073 ], [ 8.195974155000044, 55.862779039000031 ], [ 8.193614129000082, 55.853216864000046 ], [ 8.183848504000082, 55.839504299000055 ], [ 8.181651238000086, 55.828355210000041 ], [ 8.185069207000083, 55.814642645000049 ], [ 8.193614129000082, 55.811835028000075 ], [ 8.238536004000082, 55.826076565000051 ], [ 8.286306186000047, 55.847479559000078 ], [ 8.308848504000082, 55.851996161000045 ], [ 8.347829623000052, 55.869330145000049 ], [ 8.387705925000091, 55.89288971600007 ], [ 8.393321160000085, 55.909165757000039 ], [ 8.386892123000052, 55.926499742000033 ], [ 8.372894727000073, 55.943426825000074 ], [ 8.356944207000083, 55.958685614000046 ], [ 8.319509311000047, 55.986029364000046 ], [ 8.319509311000047, 56.01703522300005 ], [ 8.308116082000083, 56.052923895000049 ], [ 8.282399936000047, 56.075873114000046 ], [ 8.24773196700005, 56.089829820000034 ], [ 8.170583530000044, 56.109564520000049 ], [ 8.149668816000087, 56.111151434000078 ], [ 8.140635613000086, 56.102728583000044 ], [ 8.141612175000091, 56.06000397300005 ], [ 8.139903191000087, 56.039740302000041 ], [ 8.133799675000091, 56.01703522300005 ], [ 8.137461785000085, 56.000392971000053 ], [ 8.134776238000086, 55.993963934000078 ], [ 8.120127800000091, 55.996568101000037 ], [ 8.115977410000085, 56.001857815000051 ], [ 8.111664259000065, 56.012274481000077 ], [ 8.107920769000089, 56.024318752000056 ], [ 8.103363477000073, 56.096869208000044 ], [ 8.106455925000091, 56.11945221600007 ], [ 8.13062584700009, 56.18195221600007 ], [ 8.133799675000091, 56.205471096000053 ], [ 8.12240644600007, 56.551662502000056 ], [ 8.12663821700005, 56.568426825000074 ], [ 8.133799675000091, 56.585638739000046 ], [ 8.178721550000091, 56.672064520000049 ], [ 8.19898522200009, 56.698879299000055 ], [ 8.213877800000091, 56.711818752000056 ], [ 8.219981316000087, 56.709173895000049 ], [ 8.22396894600007, 56.700425523000035 ], [ 8.233164910000085, 56.695461330000057 ], [ 8.232432488000086, 56.688381252000056 ], [ 8.209971550000091, 56.655951239000046 ], [ 8.202159050000091, 56.647040106000077 ], [ 8.202159050000091, 56.640204169000071 ], [ 8.20834394600007, 56.636786200000074 ], [ 8.215098504000082, 56.634955145000049 ], [ 8.233164910000085, 56.633978583000044 ], [ 8.236582879000082, 56.629706122000073 ], [ 8.240489129000082, 56.620062567000048 ], [ 8.24577884200005, 56.610419012000079 ], [ 8.253916863000086, 56.60610586100006 ], [ 8.294932488000086, 56.601996161000045 ], [ 8.305918816000087, 56.597805080000057 ], [ 8.291514519000089, 56.593003648000035 ], [ 8.295176629000082, 56.583807684000078 ], [ 8.292491082000083, 56.567694403000075 ], [ 8.298350457000083, 56.558294989000046 ], [ 8.307383660000085, 56.554348049000055 ], [ 8.315196160000085, 56.556870835000041 ], [ 8.31804446700005, 56.563625393000052 ], [ 8.312022332000083, 56.571966864000046 ], [ 8.312022332000083, 56.578802802000041 ], [ 8.34351647200009, 56.584540106000077 ], [ 8.392100457000083, 56.585272528000075 ], [ 8.436534050000091, 56.580226955000057 ], [ 8.455902540000068, 56.568548895000049 ], [ 8.465179884000065, 56.566880601000037 ], [ 8.514659050000091, 56.544663804000038 ], [ 8.528493686000047, 56.548163153000075 ], [ 8.541351759000065, 56.556830145000049 ], [ 8.55209394600007, 56.568019924000055 ], [ 8.559580925000091, 56.578802802000041 ], [ 8.56576582100007, 56.578802802000041 ], [ 8.596039259000065, 56.531805731000077 ], [ 8.596853061000047, 56.524155992000033 ], [ 8.593028191000087, 56.519924221000053 ], [ 8.594574415000068, 56.510484117000033 ], [ 8.601084832000083, 56.501125393000052 ], [ 8.617442254000082, 56.493801174000055 ], [ 8.636973504000082, 56.479722398000035 ], [ 8.648448113000086, 56.475734768000052 ], [ 8.665537957000083, 56.475897528000075 ], [ 8.726573113000086, 56.483221747000073 ], [ 8.733164910000085, 56.485052802000041 ], [ 8.738536004000082, 56.490057684000078 ], [ 8.742035352000073, 56.497748114000046 ], [ 8.743418816000087, 56.507066148000035 ], [ 8.743662957000083, 56.521673895000049 ], [ 8.744965040000068, 56.53156159100007 ], [ 8.750824415000068, 56.552069403000075 ], [ 8.755137566000087, 56.557806708000044 ], [ 8.760427280000044, 56.560126044000071 ], [ 8.762543165000068, 56.563381252000056 ], [ 8.75757897200009, 56.571966864000046 ], [ 8.726573113000086, 56.585638739000046 ], [ 8.71656334700009, 56.586167710000041 ], [ 8.708994988000086, 56.588568427000041 ], [ 8.70443769600007, 56.593695380000042 ], [ 8.702972852000073, 56.602362372000073 ], [ 8.698496941000087, 56.611232815000051 ], [ 8.681488477000073, 56.616278387000079 ], [ 8.681895379000082, 56.626532294000071 ], [ 8.695160352000073, 56.633246161000045 ], [ 8.740896030000044, 56.634955145000049 ], [ 8.805430535000085, 56.695461330000057 ], [ 8.820485873000052, 56.700384833000044 ], [ 8.861582879000082, 56.707464911000045 ], [ 8.916758660000085, 56.708807684000078 ], [ 8.918711785000085, 56.711004950000074 ], [ 8.894786004000082, 56.715969143000052 ], [ 8.851084832000083, 56.716782945000034 ], [ 8.840830925000091, 56.722357489000046 ], [ 8.850108269000089, 56.740179755000042 ], [ 8.864756707000083, 56.755845445000034 ], [ 8.87663821700005, 56.76430898600006 ], [ 8.908457879000082, 56.777411200000074 ], [ 8.955739780000044, 56.802964585000041 ], [ 8.97429446700005, 56.805365302000041 ], [ 8.985199415000068, 56.80414459800005 ], [ 9.00367272200009, 56.799058335000041 ], [ 9.014903191000087, 56.797837632000039 ], [ 9.026621941000087, 56.799627997000073 ], [ 9.032725457000083, 56.803778387000079 ], [ 9.037608269000089, 56.808539130000042 ], [ 9.045583530000044, 56.812201239000046 ], [ 9.063161655000044, 56.812567450000074 ], [ 9.086110873000052, 56.808417059000078 ], [ 9.105967644000089, 56.800116278000075 ], [ 9.114512566000087, 56.787990627000056 ], [ 9.12045332100007, 56.764593817000048 ], [ 9.13445071700005, 56.750718492000033 ], [ 9.150563998000052, 56.740912177000041 ], [ 9.162852410000085, 56.729641018000052 ], [ 9.176036004000082, 56.708563544000071 ], [ 9.14820397200009, 56.704738674000055 ], [ 9.11882571700005, 56.678778387000079 ], [ 9.09343509200005, 56.674994208000044 ], [ 9.09343509200005, 56.667547919000071 ], [ 9.097504102000073, 56.658433335000041 ], [ 9.086680535000085, 56.649603583000044 ], [ 9.059336785000085, 56.633978583000044 ], [ 9.049978061000047, 56.619818427000041 ], [ 9.048838738000086, 56.607163804000038 ], [ 9.052989129000082, 56.575384833000044 ], [ 9.060557488000086, 56.565741278000075 ], [ 9.076996290000068, 56.567368882000039 ], [ 9.09343509200005, 56.578070380000042 ], [ 9.10678144600007, 56.61078522300005 ], [ 9.121592644000089, 56.613023179000038 ], [ 9.139659050000091, 56.611029364000046 ], [ 9.155446811000047, 56.612941799000055 ], [ 9.149180535000085, 56.62250397300005 ], [ 9.141123894000089, 56.626044012000079 ], [ 9.131521030000044, 56.624823309000078 ], [ 9.121348504000082, 56.620347398000035 ], [ 9.128916863000086, 56.631252346000053 ], [ 9.136729363000086, 56.639064846000053 ], [ 9.143728061000047, 56.647691148000035 ], [ 9.148610873000052, 56.661322333000044 ], [ 9.155446811000047, 56.661322333000044 ], [ 9.149424675000091, 56.638861395000049 ], [ 9.17554772200009, 56.635443427000041 ], [ 9.211192254000082, 56.638861395000049 ], [ 9.233653191000087, 56.637152411000045 ], [ 9.247243686000047, 56.632025458000044 ], [ 9.262461785000085, 56.633734442000048 ], [ 9.276215040000068, 56.632961330000057 ], [ 9.285329623000052, 56.620347398000035 ], [ 9.282399936000047, 56.610541083000044 ], [ 9.25945071700005, 56.591945705000057 ], [ 9.250336134000065, 56.578802802000041 ], [ 9.261241082000083, 56.576361395000049 ], [ 9.26335696700005, 56.571966864000046 ], [ 9.264008009000065, 56.565904039000031 ], [ 9.27084394600007, 56.558294989000046 ], [ 9.28060957100007, 56.552801825000074 ], [ 9.305674675000091, 56.544663804000038 ], [ 9.309743686000047, 56.540513414000031 ], [ 9.31218509200005, 56.535101630000042 ], [ 9.316416863000086, 56.530829169000071 ], [ 9.326182488000086, 56.530340887000079 ], [ 9.340586785000085, 56.547064520000049 ], [ 9.346690300000091, 56.552069403000075 ], [ 9.360850457000083, 56.544745184000078 ], [ 9.373057488000086, 56.552720445000034 ], [ 9.37273196700005, 56.565375067000048 ], [ 9.350352410000085, 56.571966864000046 ], [ 9.319346550000091, 56.561712958000044 ], [ 9.317393425000091, 56.558661200000074 ], [ 9.312836134000065, 56.557766018000052 ], [ 9.302256707000083, 56.558294989000046 ], [ 9.293711785000085, 56.561021226000037 ], [ 9.293142123000052, 56.566799221000053 ], [ 9.296153191000087, 56.571600653000075 ], [ 9.298838738000086, 56.571966864000046 ], [ 9.300629102000073, 56.609116929000038 ], [ 9.317067905000044, 56.641099351000037 ], [ 9.326019727000073, 56.669419664000031 ], [ 9.397700636075456, 56.649824123384576 ], [ 9.435424432291711, 56.638506986408288 ], [ 9.459557325710023, 56.661192939002888 ], [ 9.450720655633745, 56.675223090473196 ], [ 9.458782179354102, 56.685119126846189 ], [ 9.487669304594704, 56.683827217452119 ], [ 9.502500440842653, 56.674732164058071 ], [ 9.496299269095971, 56.650883491479931 ], [ 9.524049513674129, 56.633701076843181 ], [ 9.637737663562291, 56.633003444853045 ], [ 9.657323033431226, 56.622461452434038 ], [ 9.631278110296535, 56.605795804432773 ], [ 9.624095086618922, 56.583962510761239 ], [ 9.643267042639877, 56.580448513288218 ], [ 9.675926547771951, 56.590422064926315 ], [ 9.725432569857219, 56.559080309408728 ], [ 9.769305860976715, 56.565643215461989 ], [ 9.796125929568007, 56.557400825487662 ], [ 9.813024121565945, 56.555256253573191 ], [ 9.854623649561745, 56.558925279777839 ], [ 9.887903273217489, 56.580655218863228 ], [ 9.927694126083054, 56.593522650349996 ], [ 9.952033725975639, 56.597682603869032 ], [ 10.01161665158719, 56.601532498126232 ], [ 10.080139600961786, 56.625148628506395 ], [ 10.113470900561595, 56.651296901730575 ], [ 10.159979689111367, 56.672897651405435 ], [ 10.193207227000073, 56.693589585000041 ], [ 10.24195397200009, 56.688381252000056 ], [ 10.283539259000065, 56.68976471600007 ], [ 10.31031334700009, 56.698879299000055 ], [ 10.334239129000082, 56.703843492000033 ], [ 10.352793816000087, 56.681830145000049 ], [ 10.357676629000082, 56.64874909100007 ], [ 10.340342644000089, 56.620347398000035 ], [ 10.272959832000083, 56.591701565000051 ], [ 10.223317905000044, 56.560614325000074 ], [ 10.214366082000083, 56.558294989000046 ], [ 10.207286004000082, 56.525783596000053 ], [ 10.203868035000085, 56.516669012000079 ], [ 10.211436394000089, 56.50531647300005 ], [ 10.20679772200009, 56.490952867000033 ], [ 10.195485873000052, 56.477687893000052 ], [ 10.18336022200009, 56.469549872000073 ], [ 10.214121941000087, 56.470445054000038 ], [ 10.225596550000091, 56.475734768000052 ], [ 10.22437584700009, 56.513617255000042 ], [ 10.227549675000091, 56.541083075000074 ], [ 10.23764082100007, 56.554388739000046 ], [ 10.279551629000082, 56.571966864000046 ], [ 10.312673373000052, 56.596625067000048 ], [ 10.330332879000082, 56.603216864000046 ], [ 10.35092207100007, 56.595892645000049 ], [ 10.354502800000091, 56.589544989000046 ], [ 10.359873894000089, 56.568101304000038 ], [ 10.360850457000083, 56.561712958000044 ], [ 10.365244988000086, 56.558417059000078 ], [ 10.394867384000065, 56.544663804000038 ], [ 10.469899936000047, 56.520900783000059 ], [ 10.551524285000085, 56.515570380000042 ], [ 10.789073113000086, 56.536363023000035 ], [ 10.822276238000086, 56.534247137000079 ], [ 10.854991082000083, 56.524155992000033 ], [ 10.869883660000085, 56.514715887000079 ], [ 10.90211022200009, 56.483221747000073 ], [ 10.964121941000087, 56.448431708000044 ], [ 10.964121941000087, 56.442206122000073 ], [ 10.940928582000083, 56.429510809000078 ], [ 10.928477410000085, 56.406480210000041 ], [ 10.92351321700005, 56.379868882000039 ], [ 10.922618035000085, 56.356268622000073 ], [ 10.911631707000083, 56.334051825000074 ], [ 10.819590691000087, 56.260931708000044 ], [ 10.772959832000083, 56.242987372000073 ], [ 10.755381707000083, 56.229315497000073 ], [ 10.750010613000086, 56.216050523000035 ], [ 10.752614780000044, 56.184963283000059 ], [ 10.738617384000065, 56.154527085000041 ], [ 10.707041863000086, 56.150864976000037 ], [ 10.672211134000065, 56.165187893000052 ], [ 10.648936394000089, 56.188381252000056 ], [ 10.674652540000068, 56.190822658000059 ], [ 10.68523196700005, 56.196234442000048 ], [ 10.690440300000091, 56.208889065000051 ], [ 10.687673373000052, 56.222235419000071 ], [ 10.677582227000073, 56.226304429000038 ], [ 10.664561394000089, 56.227606512000079 ], [ 10.652598504000082, 56.23273346600007 ], [ 10.62859134200005, 56.237534898000035 ], [ 10.603770379000082, 56.22101471600007 ], [ 10.581228061000047, 56.199204820000034 ], [ 10.549164259000065, 56.178208726000037 ], [ 10.556162957000083, 56.15493398600006 ], [ 10.569346550000091, 56.129461981000077 ], [ 10.573741082000083, 56.112616278000075 ], [ 10.563975457000083, 56.105617580000057 ], [ 10.548024936000047, 56.101263739000046 ], [ 10.53101647200009, 56.100165106000077 ], [ 10.518565300000091, 56.102728583000044 ], [ 10.508474155000044, 56.111029364000046 ], [ 10.498545769000089, 56.130194403000075 ], [ 10.491221550000091, 56.139960028000075 ], [ 10.499196811000047, 56.144720770000049 ], [ 10.516123894000089, 56.151597398000035 ], [ 10.525401238000086, 56.153631903000075 ], [ 10.518239780000044, 56.164780992000033 ], [ 10.50945071700005, 56.170111395000049 ], [ 10.46810957100007, 56.177069403000075 ], [ 10.458994988000086, 56.17609284100007 ], [ 10.436696811000047, 56.167914130000042 ], [ 10.408702019000089, 56.164862372000073 ], [ 10.391449415000068, 56.172674872000073 ], [ 10.376231316000087, 56.186672268000052 ], [ 10.354665561000047, 56.202053127000056 ], [ 10.376963738000086, 56.203314520000049 ], [ 10.410411004000082, 56.218491929000038 ], [ 10.429209832000083, 56.222479559000078 ], [ 10.443369988000086, 56.216620184000078 ], [ 10.46070397200009, 56.206203518000052 ], [ 10.477793816000087, 56.202337958000044 ], [ 10.491221550000091, 56.216294664000031 ], [ 10.47429446700005, 56.232245184000078 ], [ 10.475433790000068, 56.244696356000077 ], [ 10.504730665000068, 56.277777411000045 ], [ 10.491221550000091, 56.27765534100007 ], [ 10.476817254000082, 56.280910549000055 ], [ 10.463633660000085, 56.286851304000038 ], [ 10.453623894000089, 56.294501044000071 ], [ 10.442637566000087, 56.298651434000078 ], [ 10.416758660000085, 56.291896877000056 ], [ 10.403005405000044, 56.298244533000059 ], [ 10.399261915000068, 56.284857489000046 ], [ 10.393809441000087, 56.276516018000052 ], [ 10.385020379000082, 56.272162177000041 ], [ 10.371104363000086, 56.27094147300005 ], [ 10.363780144000089, 56.265570380000042 ], [ 10.336924675000091, 56.23273346600007 ], [ 10.312510613000086, 56.21515534100007 ], [ 10.258474155000044, 56.190252997000073 ], [ 10.234222852000073, 56.17133209800005 ], [ 10.220225457000083, 56.14789459800005 ], [ 10.226898634000065, 56.133246161000045 ], [ 10.243418816000087, 56.119574286000045 ], [ 10.259043816000087, 56.099025783000059 ], [ 10.265635613000086, 56.073716539000031 ], [ 10.26148522200009, 56.054429429000038 ], [ 10.249196811000047, 56.036932684000078 ], [ 10.231130405000044, 56.01703522300005 ], [ 10.255137566000087, 56.023627020000049 ], [ 10.272715691000087, 56.02484772300005 ], [ 10.277517123000052, 56.017767645000049 ], [ 10.252452019000089, 55.986232815000051 ], [ 10.250010613000086, 55.973456122000073 ], [ 10.25163821700005, 55.948187567000048 ], [ 10.250743035000085, 55.930731512000079 ], [ 10.249278191000087, 55.923041083000044 ], [ 10.245371941000087, 55.914618231000077 ], [ 10.221364780000044, 55.896918036000045 ], [ 10.217539910000085, 55.889837958000044 ], [ 10.21265709700009, 55.889878648000035 ], [ 10.201833530000044, 55.885891018000052 ], [ 10.190196160000085, 55.879706122000073 ], [ 10.18336022200009, 55.873724677000041 ], [ 10.188324415000068, 55.871161200000074 ], [ 10.195567254000082, 55.861314195000034 ], [ 10.199392123000052, 55.850734768000052 ], [ 10.190603061000047, 55.843491929000038 ], [ 10.187347852000073, 55.838609117000033 ], [ 10.182139519000089, 55.833685614000046 ], [ 10.172699415000068, 55.83148834800005 ], [ 10.160411004000082, 55.833319403000075 ], [ 10.151052280000044, 55.838120835000041 ], [ 10.135508660000085, 55.851996161000045 ], [ 10.131032748000052, 55.858465887000079 ], [ 10.128103061000047, 55.86587148600006 ], [ 10.123789910000085, 55.873277085000041 ], [ 10.114512566000087, 55.879868882000039 ], [ 10.101817254000082, 55.882391669000071 ], [ 10.004649285000085, 55.879868882000039 ], [ 9.991709832000083, 55.877346096000053 ], [ 9.983653191000087, 55.87140534100007 ], [ 9.977386915000068, 55.864569403000075 ], [ 9.97046959700009, 55.859442450000074 ], [ 9.944509311000047, 55.853583075000074 ], [ 9.891774936000047, 55.855373440000051 ], [ 9.867442254000082, 55.851996161000045 ], [ 9.892588738000086, 55.83624909100007 ], [ 10.035655144000089, 55.818426825000074 ], [ 10.045746290000068, 55.813950914000031 ], [ 10.042165561000047, 55.803412177000041 ], [ 10.025645379000082, 55.783026434000078 ], [ 10.01734459700009, 55.765570380000042 ], [ 10.019786004000082, 55.757879950000074 ], [ 10.033702019000089, 55.756048895000049 ], [ 10.059825066000087, 55.756415106000077 ], [ 10.059825066000087, 55.749497789000031 ], [ 10.018809441000087, 55.736273505000042 ], [ 10.006846550000091, 55.725043036000045 ], [ 10.018239780000044, 55.708563544000071 ], [ 10.014496290000068, 55.706854559000078 ], [ 10.00521894600007, 55.701117255000042 ], [ 9.981700066000087, 55.709418036000045 ], [ 9.871836785000085, 55.691229559000078 ], [ 9.821787957000083, 55.675970770000049 ], [ 9.792246941000087, 55.67446523600006 ], [ 9.730967644000089, 55.68813711100006 ], [ 9.695648634000065, 55.705796617000033 ], [ 9.686534050000091, 55.708563544000071 ], [ 9.675520592898721, 55.708598177530696 ], [ 9.675564812566051, 55.708718777349645 ], [ 9.679698926764047, 55.719648343396329 ], [ 9.680629102750856, 55.728485012573231 ], [ 9.675513135722611, 55.737063300231114 ], [ 9.663989292271992, 55.74295441271596 ], [ 9.641665073084653, 55.746933499081706 ], [ 9.608747186433504, 55.749465643724477 ], [ 9.597895134752662, 55.753393053246782 ], [ 9.596344842040821, 55.760834459342789 ], [ 9.598360222746066, 55.766906439880245 ], [ 9.602546013787503, 55.772668362055242 ], [ 9.605491571378877, 55.778869533801924 ], [ 9.600685661813827, 55.784528103189359 ], [ 9.581617058580377, 55.786827703835456 ], [ 9.546218703230579, 55.784502264767696 ], [ 9.5304057150517, 55.787551175146575 ], [ 9.516453077947176, 55.797576401829474 ], [ 9.491131626123661, 55.821709296147048 ], [ 9.468807406936264, 55.836850490757513 ], [ 9.462916293552098, 55.846100571983754 ], [ 9.459660679396848, 55.853309434982407 ], [ 9.458265415416577, 55.858451240432373 ], [ 9.450668979689624, 55.865789292841555 ], [ 9.399922723255088, 55.901652737084135 ], [ 9.374756301062405, 55.914365138939957 ], [ 9.343130323805383, 55.925475572139931 ], [ 9.249389276294039, 55.94299388356086 ], [ 9.211665480077841, 55.938343004526018 ], [ 9.184380324392464, 55.90710460089656 ], [ 9.137974887730877, 55.873902493405296 ], [ 9.121076693934242, 55.866047675260006 ], [ 9.102886589844218, 55.8632054713554 ], [ 9.093894891036371, 55.859329739575799 ], [ 9.085058220960093, 55.853541978979138 ], [ 9.079787225200278, 55.848270982319946 ], [ 9.070950555124, 55.835713609195693 ], [ 9.058083122737912, 55.836617946760782 ], [ 9.047334425643214, 55.830907701429226 ], [ 9.013072950955916, 55.828788967936475 ], [ 8.999275342582962, 55.834731757264763 ], [ 8.959381137829212, 55.864006456133041 ], [ 8.92909874770902, 55.880000312364473 ], [ 8.880057813617213, 55.882584133850685 ], [ 8.843470899862098, 55.872300522950752 ], [ 8.828278029307569, 55.842844956929184 ], [ 8.817684360045178, 55.833749905333832 ], [ 8.822955355804993, 55.816800034693813 ], [ 8.823110386335259, 55.810340481428057 ], [ 8.806987338894544, 55.804552720831396 ], [ 8.774586216180921, 55.798816637078119 ], [ 8.757481316809333, 55.801788032191894 ], [ 8.687201369147829, 55.829951687020696 ], [ 8.654593539959876, 55.834783434108147 ], [ 8.644051548440189, 55.833904934065401 ], [ 8.627618441737695, 55.829796658289126 ], [ 8.610875277572006, 55.827936306315451 ], [ 8.598886346127983, 55.829202379086496 ], [ 8.588499383339865, 55.831476142210192 ], [ 8.578732537276778, 55.835248522101608 ], [ 8.569585808837985, 55.835403550833178 ], [ 8.560749138761707, 55.834111640539732 ], [ 8.553617791028216, 55.831527818154257 ], [ 8.54850182489929, 55.82868561514897 ], [ 8.549121941624321, 55.82545583851612 ], [ 8.554237908652567, 55.819125475560213 ], [ 8.555943230995297, 55.816076565181334 ], [ 8.555478143001892, 55.813492743695122 ], [ 8.553307732665701, 55.811296494937267 ], [ 8.503026564224569, 55.779282944951945 ], [ 8.490159132737745, 55.771479804549301 ], [ 8.471969027748401, 55.769412747000672 ], [ 8.459721713885983, 55.771066393399281 ], [ 8.424478387267754, 55.783752956833439 ], [ 8.399208612287623, 55.790109158211067 ], [ 8.3683061054424, 55.802537340126094 ], [ 8.175811395279652, 55.801477972930059 ], [ 8.175607072135389, 55.801476429694382 ] ] ], [ [ [ 10.559418165000068, 55.866278387000079 ], [ 10.573090040000068, 55.878851630000042 ], [ 10.581065300000091, 55.894517320000034 ], [ 10.580251498000052, 55.911525783000059 ], [ 10.566905144000089, 55.928290106000077 ], [ 10.54859459700009, 55.935736395000049 ], [ 10.528330925000091, 55.940619208000044 ], [ 10.51539147200009, 55.951239325000074 ], [ 10.518565300000091, 55.976141669000071 ], [ 10.528819207000083, 55.989203192000048 ], [ 10.543955925000091, 55.997992255000042 ], [ 10.556813998000052, 55.995794989000046 ], [ 10.56421959700009, 55.953843492000033 ], [ 10.580251498000052, 55.936509507000039 ], [ 10.602793816000087, 55.92523834800005 ], [ 10.62826582100007, 55.920843817000048 ], [ 10.619395379000082, 55.910956122000073 ], [ 10.615407748000052, 55.900336005000042 ], [ 10.616384311000047, 55.889797268000052 ], [ 10.621429884000065, 55.879868882000039 ], [ 10.638682488000086, 55.866115627000056 ], [ 10.650645379000082, 55.870103257000039 ], [ 10.659190300000091, 55.880764065000051 ], [ 10.666270379000082, 55.886704820000034 ], [ 10.66928144600007, 55.880031643000052 ], [ 10.655039910000085, 55.865383205000057 ], [ 10.62826582100007, 55.845770575000074 ], [ 10.623301629000082, 55.827704169000071 ], [ 10.62435957100007, 55.794338283000059 ], [ 10.61459394600007, 55.776841539000031 ], [ 10.582204623000052, 55.759751695000034 ], [ 10.547129754000082, 55.765204169000071 ], [ 10.520274285000085, 55.788560289000031 ], [ 10.511566602000073, 55.825262762000079 ], [ 10.51726321700005, 55.845526434000078 ], [ 10.527679884000065, 55.853908596000053 ], [ 10.542165561000047, 55.858140367000033 ], [ 10.559418165000068, 55.866278387000079 ] ] ], [ [ [ 11.512217644000089, 56.695461330000057 ], [ 11.50953209700009, 56.710150458000044 ], [ 11.52084394600007, 56.715399481000077 ], [ 11.606130405000044, 56.720404364000046 ], [ 11.649424675000091, 56.729641018000052 ], [ 11.649424675000091, 56.722154039000031 ], [ 11.645192905000044, 56.721991278000075 ], [ 11.64193769600007, 56.720648505000042 ], [ 11.635752800000091, 56.715969143000052 ], [ 11.618011915000068, 56.711330471000053 ], [ 11.604258660000085, 56.701157945000034 ], [ 11.592539910000085, 56.689846096000053 ], [ 11.581065300000091, 56.681219794000071 ], [ 11.56421959700009, 56.677435614000046 ], [ 11.543711785000085, 56.678656317000048 ], [ 11.524587436000047, 56.684719143000052 ], [ 11.512217644000089, 56.695461330000057 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DK-81", "NAME_1": "Nordjylland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.326019727000073, 56.669419664000031 ], [ 9.32593834700009, 56.669623114000046 ], [ 9.305674675000091, 56.695461330000057 ], [ 9.295909050000091, 56.701564846000053 ], [ 9.29070071700005, 56.703843492000033 ], [ 9.27084394600007, 56.702337958000044 ], [ 9.230642123000052, 56.692084052000041 ], [ 9.220713738000086, 56.684271552000041 ], [ 9.199066602000073, 56.676581122000073 ], [ 9.177907748000052, 56.675848700000074 ], [ 9.169118686000047, 56.688666083000044 ], [ 9.180349155000044, 56.700751044000071 ], [ 9.226410352000073, 56.71625397300005 ], [ 9.236827019000089, 56.73305898600006 ], [ 9.242523634000065, 56.747056382000039 ], [ 9.240489129000082, 56.753973700000074 ], [ 9.215505405000044, 56.758856512000079 ], [ 9.205251498000052, 56.763820705000057 ], [ 9.196543816000087, 56.770453192000048 ], [ 9.189707879000082, 56.777411200000074 ], [ 9.184418165000068, 56.784002997000073 ], [ 9.178721550000091, 56.794134833000044 ], [ 9.174978061000047, 56.806057033000059 ], [ 9.176036004000082, 56.818426825000074 ], [ 9.181162957000083, 56.82172272300005 ], [ 9.204112175000091, 56.841620184000078 ], [ 9.20671634200005, 56.84634023600006 ], [ 9.211436394000089, 56.851507880000042 ], [ 9.21062259200005, 56.863104559000078 ], [ 9.205902540000068, 56.874579169000071 ], [ 9.199554884000065, 56.879828192000048 ], [ 9.187836134000065, 56.88117096600007 ], [ 9.178965691000087, 56.884588934000078 ], [ 9.162852410000085, 56.894110419000071 ], [ 9.181488477000073, 56.919094143000052 ], [ 9.200205925000091, 56.93891022300005 ], [ 9.22046959700009, 56.955064195000034 ], [ 9.251475457000083, 56.972560940000051 ], [ 9.258474155000044, 56.974839585000041 ], [ 9.265961134000065, 56.976223049000055 ], [ 9.274668816000087, 56.976629950000074 ], [ 9.279958530000044, 56.979803778000075 ], [ 9.285492384000065, 56.993963934000078 ], [ 9.28874759200005, 56.997137762000079 ], [ 9.437022332000083, 57.024400132000039 ], [ 9.47006269600007, 57.023830471000053 ], [ 9.586761915000068, 56.997137762000079 ], [ 9.586761915000068, 56.98969147300005 ], [ 9.57398522200009, 56.98501211100006 ], [ 9.573090040000068, 56.97882721600007 ], [ 9.580821160000085, 56.97296784100007 ], [ 9.594248894000089, 56.969183661000045 ], [ 9.607920769000089, 56.969875393000052 ], [ 9.617686394000089, 56.975043036000045 ], [ 9.654144727000073, 57.006781317000048 ], [ 9.670664910000085, 57.02484772300005 ], [ 9.688975457000083, 57.039129950000074 ], [ 9.72820071700005, 57.047064520000049 ], [ 9.761241082000083, 57.058579820000034 ], [ 9.809092644000089, 57.051743882000039 ], [ 9.91578209700009, 57.058579820000034 ], [ 9.856618686000047, 57.088690497000073 ], [ 9.826670769000089, 57.094875393000052 ], [ 9.80640709700009, 57.104234117000033 ], [ 9.795664910000085, 57.106390692000048 ], [ 9.787608269000089, 57.103949286000045 ], [ 9.752452019000089, 57.077785549000055 ], [ 9.733246290000068, 57.066799221000053 ], [ 9.711924675000091, 57.061265367000033 ], [ 9.693207227000073, 57.069159247000073 ], [ 9.67514082100007, 57.079169012000079 ], [ 9.656097852000073, 57.076361395000049 ], [ 9.621104363000086, 57.058579820000034 ], [ 9.580821160000085, 57.049302476000037 ], [ 9.493988477000073, 57.048570054000038 ], [ 9.265147332000083, 57.003404039000031 ], [ 9.245371941000087, 57.002346096000053 ], [ 9.226410352000073, 57.007025458000044 ], [ 9.114512566000087, 57.058579820000034 ], [ 9.12086022200009, 57.045396226000037 ], [ 9.112803582000083, 57.038641669000071 ], [ 9.07984459700009, 57.031236070000034 ], [ 9.055430535000085, 57.021144924000055 ], [ 9.04265384200005, 57.017726955000057 ], [ 9.025726759000065, 57.017564195000034 ], [ 9.031993035000085, 57.023830471000053 ], [ 9.014008009000065, 57.030178127000056 ], [ 8.996755405000044, 57.028062242000033 ], [ 8.979665561000047, 57.020493882000039 ], [ 8.963145379000082, 57.010199286000045 ], [ 8.94695071700005, 57.01117584800005 ], [ 8.926442905000044, 57.000148830000057 ], [ 8.909027540000068, 56.988185940000051 ], [ 8.901621941000087, 56.986273505000042 ], [ 8.893077019000089, 56.999660549000055 ], [ 8.873220248000052, 57.004828192000048 ], [ 8.850433790000068, 57.003485419000071 ], [ 8.83334394600007, 56.997137762000079 ], [ 8.847992384000065, 56.988470770000049 ], [ 8.811696811000047, 56.969875393000052 ], [ 8.762054884000065, 56.955471096000053 ], [ 8.726410352000073, 56.96124909100007 ], [ 8.702972852000073, 56.95844147300005 ], [ 8.679535352000073, 56.952541408000059 ], [ 8.668793165000068, 56.945298570000034 ], [ 8.663340691000087, 56.925930080000057 ], [ 8.649912957000083, 56.914129950000074 ], [ 8.63412519600007, 56.905178127000056 ], [ 8.621104363000086, 56.894110419000071 ], [ 8.615407748000052, 56.865627346000053 ], [ 8.614268425000091, 56.863348700000074 ], [ 8.612559441000087, 56.854681708000044 ], [ 8.607920769000089, 56.849676825000074 ], [ 8.60132897200009, 56.845526434000078 ], [ 8.569590691000087, 56.818426825000074 ], [ 8.547048373000052, 56.817328192000048 ], [ 8.536306186000047, 56.814520575000074 ], [ 8.531748894000089, 56.808783270000049 ], [ 8.524261915000068, 56.804754950000074 ], [ 8.507823113000086, 56.80109284100007 ], [ 8.491384311000047, 56.794256903000075 ], [ 8.483897332000083, 56.781154690000051 ], [ 8.492442254000082, 56.747259833000044 ], [ 8.491465691000087, 56.731390692000048 ], [ 8.476410352000073, 56.722154039000031 ], [ 8.476410352000073, 56.715969143000052 ], [ 8.516368035000085, 56.71820709800005 ], [ 8.525563998000052, 56.715969143000052 ], [ 8.533050977000073, 56.703802802000041 ], [ 8.52702884200005, 56.695298570000034 ], [ 8.514008009000065, 56.690252997000073 ], [ 8.500987175000091, 56.688666083000044 ], [ 8.489268425000091, 56.690741278000075 ], [ 8.465830925000091, 56.700140692000048 ], [ 8.45289147200009, 56.702337958000044 ], [ 8.440928582000083, 56.700384833000044 ], [ 8.420909050000091, 56.691351630000042 ], [ 8.408213738000086, 56.688666083000044 ], [ 8.408213738000086, 56.681219794000071 ], [ 8.455902540000068, 56.688666083000044 ], [ 8.470225457000083, 56.686102606000077 ], [ 8.491221550000091, 56.676988023000035 ], [ 8.500987175000091, 56.674994208000044 ], [ 8.571543816000087, 56.691961981000077 ], [ 8.586273634000065, 56.688666083000044 ], [ 8.589040561000047, 56.681341864000046 ], [ 8.586273634000065, 56.662298895000049 ], [ 8.586273634000065, 56.653876044000071 ], [ 8.60132897200009, 56.640611070000034 ], [ 8.608083530000044, 56.631048895000049 ], [ 8.593272332000083, 56.616359768000052 ], [ 8.583018425000091, 56.609320380000042 ], [ 8.569590691000087, 56.60610586100006 ], [ 8.555430535000085, 56.604885158000059 ], [ 8.54664147200009, 56.601711330000057 ], [ 8.547048373000052, 56.597479559000078 ], [ 8.559580925000091, 56.593003648000035 ], [ 8.539317254000082, 56.592759507000039 ], [ 8.51148522200009, 56.607001044000071 ], [ 8.486989780000044, 56.62531159100007 ], [ 8.476410352000073, 56.637152411000045 ], [ 8.467295769000089, 56.652044989000046 ], [ 8.444834832000083, 56.664048570000034 ], [ 8.416758660000085, 56.672064520000049 ], [ 8.391123894000089, 56.674994208000044 ], [ 8.373383009000065, 56.680243231000077 ], [ 8.352224155000044, 56.692938544000071 ], [ 8.332530144000089, 56.708400783000059 ], [ 8.319509311000047, 56.722154039000031 ], [ 8.30836022200009, 56.758205471000053 ], [ 8.302012566000087, 56.763739325000074 ], [ 8.28842207100007, 56.766343492000033 ], [ 8.260264519000089, 56.776678778000075 ], [ 8.243662957000083, 56.777411200000074 ], [ 8.258067254000082, 56.74054596600007 ], [ 8.263194207000083, 56.718939520000049 ], [ 8.260752800000091, 56.70538971600007 ], [ 8.24586022200009, 56.704006252000056 ], [ 8.238291863000086, 56.725043036000045 ], [ 8.236175977000073, 56.771185614000046 ], [ 8.247894727000073, 56.812445380000042 ], [ 8.270355665000068, 56.843247789000031 ], [ 8.449717644000089, 57.003973700000074 ], [ 8.50359134200005, 57.034654039000031 ], [ 8.586273634000065, 57.106390692000048 ], [ 8.618011915000068, 57.122870184000078 ], [ 8.653819207000083, 57.12250397300005 ], [ 8.737152540000068, 57.106390692000048 ], [ 8.783946160000085, 57.104803778000075 ], [ 8.87435957100007, 57.116115627000056 ], [ 8.914561394000089, 57.127427476000037 ], [ 8.96257571700005, 57.15656159100007 ], [ 8.980479363000086, 57.161037502000056 ], [ 9.230642123000052, 57.141099351000037 ], [ 9.321543816000087, 57.147040106000077 ], [ 9.412119988000086, 57.165432033000059 ], [ 9.49781334700009, 57.197007554000038 ], [ 9.573252800000091, 57.242905992000033 ], [ 9.78842207100007, 57.45929596600007 ], [ 9.826426629000082, 57.489935614000046 ], [ 9.895355665000068, 57.53156159100007 ], [ 9.929860873000052, 57.567450262000079 ], [ 9.94312584700009, 57.572495835000041 ], [ 9.966970248000052, 57.591376044000071 ], [ 10.01539147200009, 57.596625067000048 ], [ 10.107676629000082, 57.592962958000044 ], [ 10.197601759000065, 57.601223049000055 ], [ 10.279551629000082, 57.620917059000078 ], [ 10.350596550000091, 57.648993231000077 ], [ 10.472504102000073, 57.716986395000049 ], [ 10.539073113000086, 57.743841864000046 ], [ 10.56609134200005, 57.74945709800005 ], [ 10.596039259000065, 57.751166083000044 ], [ 10.625010613000086, 57.74750397300005 ], [ 10.648936394000089, 57.737005927000041 ], [ 10.594411655000044, 57.725897528000075 ], [ 10.542491082000083, 57.698919989000046 ], [ 10.460459832000083, 57.630560614000046 ], [ 10.430430535000085, 57.570542710000041 ], [ 10.45834394600007, 57.525458075000074 ], [ 10.508962436000047, 57.484035549000055 ], [ 10.54656009200005, 57.435288804000038 ], [ 10.517425977000073, 57.391302802000041 ], [ 10.517914259000065, 57.339178778000075 ], [ 10.539073113000086, 57.236721096000053 ], [ 10.521983269000089, 57.221747137000079 ], [ 10.470876498000052, 57.201157945000034 ], [ 10.446787957000083, 57.184881903000075 ], [ 10.41146894600007, 57.144435940000051 ], [ 10.395518425000091, 57.117254950000074 ], [ 10.384043816000087, 57.074204820000034 ], [ 10.359222852000073, 57.026109117000033 ], [ 10.347178582000083, 57.010199286000045 ], [ 10.338715040000068, 57.003241278000075 ], [ 10.330577019000089, 56.999335028000075 ], [ 10.31967207100007, 56.99750397300005 ], [ 10.272471550000091, 56.997870184000078 ], [ 10.257985873000052, 56.995835679000038 ], [ 10.239756707000083, 56.99282461100006 ], [ 10.15601647200009, 57.023830471000053 ], [ 10.094004754000082, 57.060492255000042 ], [ 10.052744988000086, 57.069728908000059 ], [ 10.019379102000073, 57.088446356000077 ], [ 9.994639519000089, 57.092718817000048 ], [ 9.974457227000073, 57.086493231000077 ], [ 9.946136915000068, 57.06118398600006 ], [ 9.926931186000047, 57.058579820000034 ], [ 9.945485873000052, 57.057318427000041 ], [ 9.96656334700009, 57.072211005000042 ], [ 9.98414147200009, 57.079046942000048 ], [ 10.001963738000086, 57.083889065000051 ], [ 10.022634311000047, 57.079087632000039 ], [ 10.121267123000052, 57.02212148600006 ], [ 10.15398196700005, 57.013251044000071 ], [ 10.192393425000091, 56.994045315000051 ], [ 10.214366082000083, 56.98969147300005 ], [ 10.295095248000052, 56.98859284100007 ], [ 10.313731316000087, 56.982855536000045 ], [ 10.285655144000089, 56.963690497000073 ], [ 10.279551629000082, 56.955511786000045 ], [ 10.27475019600007, 56.942287502000056 ], [ 10.26929772200009, 56.915025132000039 ], [ 10.265879754000082, 56.907700914000031 ], [ 10.27312259200005, 56.891343492000033 ], [ 10.284027540000068, 56.840318101000037 ], [ 10.288340691000087, 56.800116278000075 ], [ 10.295420769000089, 56.778876044000071 ], [ 10.31999759200005, 56.736476955000057 ], [ 10.328461134000065, 56.729803778000075 ], [ 10.338226759000065, 56.723944403000075 ], [ 10.340586785000085, 56.717352606000077 ], [ 10.326833530000044, 56.708563544000071 ], [ 10.318695509000065, 56.708238023000035 ], [ 10.295176629000082, 56.71430084800005 ], [ 10.28256269600007, 56.715969143000052 ], [ 10.237559441000087, 56.715969143000052 ], [ 10.221853061000047, 56.712103583000044 ], [ 10.203868035000085, 56.702337958000044 ], [ 10.187022332000083, 56.712225653000075 ], [ 10.168142123000052, 56.720038153000075 ], [ 10.146494988000086, 56.722357489000046 ], [ 10.121267123000052, 56.715969143000052 ], [ 10.09896894600007, 56.706122137000079 ], [ 10.08961022200009, 56.704046942000048 ], [ 10.073496941000087, 56.702337958000044 ], [ 10.05836022200009, 56.698228257000039 ], [ 10.027517123000052, 56.684271552000041 ], [ 9.990896030000044, 56.676947333000044 ], [ 9.945567254000082, 56.658148505000042 ], [ 9.805918816000087, 56.647040106000077 ], [ 9.805918816000087, 56.640204169000071 ], [ 9.85132897200009, 56.635728257000039 ], [ 10.001475457000083, 56.661322333000044 ], [ 10.03492272200009, 56.672837632000039 ], [ 10.049571160000085, 56.674994208000044 ], [ 10.052907748000052, 56.677150783000059 ], [ 10.053477410000085, 56.681830145000049 ], [ 10.055430535000085, 56.686509507000039 ], [ 10.062836134000065, 56.688666083000044 ], [ 10.070974155000044, 56.687486070000034 ], [ 10.084320509000065, 56.682359117000033 ], [ 10.090586785000085, 56.681219794000071 ], [ 10.10132897200009, 56.682684637000079 ], [ 10.113617384000065, 56.686712958000044 ], [ 10.123789910000085, 56.692328192000048 ], [ 10.128103061000047, 56.698879299000055 ], [ 10.134776238000086, 56.712388414000031 ], [ 10.150563998000052, 56.714422919000071 ], [ 10.18336022200009, 56.708563544000071 ], [ 10.180837436000047, 56.704901434000078 ], [ 10.175791863000086, 56.695461330000057 ], [ 10.193207227000073, 56.693589585000041 ], [ 10.159979689111367, 56.672897651405435 ], [ 10.113470900561595, 56.651296901730575 ], [ 10.080139600961786, 56.625148628506395 ], [ 10.01161665158719, 56.601532498126232 ], [ 9.952033725975639, 56.597682603869032 ], [ 9.927694126083054, 56.593522650349996 ], [ 9.887903273217489, 56.580655218863228 ], [ 9.854623649561745, 56.558925279777839 ], [ 9.813024121565945, 56.555256253573191 ], [ 9.796125929568007, 56.557400825487662 ], [ 9.769305860976715, 56.565643215461989 ], [ 9.725432569857219, 56.559080309408728 ], [ 9.675926547771951, 56.590422064926315 ], [ 9.643267042639877, 56.580448513288218 ], [ 9.624095086618922, 56.583962510761239 ], [ 9.631278110296535, 56.605795804432773 ], [ 9.657323033431226, 56.622461452434038 ], [ 9.637737663562291, 56.633003444853045 ], [ 9.524049513674129, 56.633701076843181 ], [ 9.496299269095971, 56.650883491479931 ], [ 9.502500440842653, 56.674732164058071 ], [ 9.487669304594704, 56.683827217452119 ], [ 9.458782179354102, 56.685119126846189 ], [ 9.450720655633745, 56.675223090473196 ], [ 9.459557325710023, 56.661192939002888 ], [ 9.435424432291711, 56.638506986408288 ], [ 9.397700636075456, 56.649824123384576 ], [ 9.326019727000073, 56.669419664000031 ] ] ], [ [ [ 8.82585696700005, 56.743841864000046 ], [ 8.812673373000052, 56.734564520000049 ], [ 8.77125084700009, 56.715969143000052 ], [ 8.766123894000089, 56.698716539000031 ], [ 8.686371290000068, 56.686590887000079 ], [ 8.658376498000052, 56.678127346000053 ], [ 8.648448113000086, 56.681057033000059 ], [ 8.621755405000044, 56.713934637000079 ], [ 8.610850457000083, 56.722154039000031 ], [ 8.586273634000065, 56.736476955000057 ], [ 8.56226647200009, 56.743231512000079 ], [ 8.555918816000087, 56.743841864000046 ], [ 8.524912957000083, 56.737290757000039 ], [ 8.514659050000091, 56.738226630000042 ], [ 8.518077019000089, 56.750067450000074 ], [ 8.52279707100007, 56.755072333000044 ], [ 8.530284050000091, 56.759344794000071 ], [ 8.539235873000052, 56.762518622000073 ], [ 8.548675977000073, 56.763739325000074 ], [ 8.553233269000089, 56.768133856000077 ], [ 8.551605665000068, 56.777777411000045 ], [ 8.548024936000047, 56.787258205000057 ], [ 8.545258009000065, 56.791083075000074 ], [ 8.573008660000085, 56.802557684000078 ], [ 8.643809441000087, 56.80805084800005 ], [ 8.668793165000068, 56.825832424000055 ], [ 8.656260613000086, 56.825140692000048 ], [ 8.643809441000087, 56.825873114000046 ], [ 8.632009311000047, 56.828070380000042 ], [ 8.621104363000086, 56.832017320000034 ], [ 8.62671959700009, 56.841538804000038 ], [ 8.646739129000082, 56.856350002000056 ], [ 8.655121290000068, 56.866848049000055 ], [ 8.651866082000083, 56.866034247000073 ], [ 8.64975019600007, 56.874253648000035 ], [ 8.648448113000086, 56.890692450000074 ], [ 8.651621941000087, 56.894191799000055 ], [ 8.659353061000047, 56.894476630000042 ], [ 8.668223504000082, 56.893784898000035 ], [ 8.675059441000087, 56.894110419000071 ], [ 8.703786655000044, 56.900051174000055 ], [ 8.762461785000085, 56.905422268000052 ], [ 8.791758660000085, 56.914536851000037 ], [ 8.813649936000047, 56.910345770000049 ], [ 8.83375084700009, 56.924750067000048 ], [ 8.867442254000082, 56.962958075000074 ], [ 8.89039147200009, 56.954820054000038 ], [ 8.905039910000085, 56.966009833000044 ], [ 8.916270379000082, 56.979071356000077 ], [ 8.928884311000047, 56.976629950000074 ], [ 8.923106316000087, 56.968573309000078 ], [ 8.911387566000087, 56.956122137000079 ], [ 8.908457879000082, 56.948716539000031 ], [ 8.910411004000082, 56.944403387000079 ], [ 8.920420769000089, 56.930487372000073 ], [ 8.922699415000068, 56.922023830000057 ], [ 8.920420769000089, 56.919907945000034 ], [ 8.908457879000082, 56.887274481000077 ], [ 8.900401238000086, 56.874823309000078 ], [ 8.895274285000085, 56.870306708000044 ], [ 8.887950066000087, 56.866848049000055 ], [ 8.887705925000091, 56.878729559000078 ], [ 8.882660352000073, 56.886379299000055 ], [ 8.875010613000086, 56.891099351000037 ], [ 8.867442254000082, 56.894110419000071 ], [ 8.843760613000086, 56.88344961100006 ], [ 8.83961022200009, 56.879828192000048 ], [ 8.836436394000089, 56.869289455000057 ], [ 8.839040561000047, 56.862860419000071 ], [ 8.843597852000073, 56.858221747000073 ], [ 8.84701582100007, 56.853094794000071 ], [ 8.85515384200005, 56.81976959800005 ], [ 8.863942905000044, 56.809515692000048 ], [ 8.881114129000082, 56.805365302000041 ], [ 8.87476647200009, 56.800360419000071 ], [ 8.868418816000087, 56.798081773000035 ], [ 8.861338738000086, 56.797552802000041 ], [ 8.85328209700009, 56.797837632000039 ], [ 8.86068769600007, 56.794907945000034 ], [ 8.867442254000082, 56.791083075000074 ], [ 8.854177280000044, 56.77993398600006 ], [ 8.839121941000087, 56.75726959800005 ], [ 8.82585696700005, 56.743841864000046 ] ] ], [ [ [ 11.14234459700009, 57.33234284100007 ], [ 11.169932488000086, 57.332709052000041 ], [ 11.181488477000073, 57.330308335000041 ], [ 11.190114780000044, 57.325506903000075 ], [ 11.197276238000086, 57.313381252000056 ], [ 11.196501696000041, 57.302821193000057 ], [ 11.189113397000085, 57.294282642000042 ], [ 11.166875953000044, 57.296775063000041 ], [ 11.143231237000066, 57.301351214000078 ], [ 11.066579623000052, 57.29132721600007 ], [ 11.082692905000044, 57.283880927000041 ], [ 11.094164612000043, 57.268996019000042 ], [ 11.09110071300006, 57.252784057000042 ], [ 11.067166313000087, 57.238362011000049 ], [ 11.053517093000039, 57.226202113000056 ], [ 11.045137624000063, 57.212714961000074 ], [ 11.028835411000045, 57.201914301000045 ], [ 10.997904579000078, 57.197909953000078 ], [ 10.977961920000041, 57.206732946000045 ], [ 10.95181488500009, 57.233729677000042 ], [ 10.916536645000065, 57.237368674000038 ], [ 10.888799328000061, 57.245344161000048 ], [ 10.871104363000086, 57.254624742000033 ], [ 10.854991082000083, 57.264634507000039 ], [ 10.854991082000083, 57.270900783000059 ], [ 10.888424550000082, 57.274864843000046 ], [ 10.921263275000058, 57.292279959000041 ], [ 10.94660123500006, 57.304643287000033 ], [ 10.986869588000047, 57.305992644000071 ], [ 11.010083612000074, 57.309873311000047 ], [ 11.027723181000056, 57.320690509000087 ], [ 11.101927424000053, 57.320416925000075 ], [ 11.14234459700009, 57.33234284100007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DK-85", "NAME_1": "Sjaælland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.845225457000083, 54.731919664000031 ], [ 11.833832227000073, 54.724554755000042 ], [ 11.82357832100007, 54.72211334800005 ], [ 11.814707879000082, 54.718695380000042 ], [ 11.806976759000065, 54.707993882000039 ], [ 11.846446160000085, 54.697821356000077 ], [ 11.842621290000068, 54.676214911000045 ], [ 11.810720248000052, 54.655096747000073 ], [ 11.766123894000089, 54.646551825000074 ], [ 11.610524936000047, 54.666408596000053 ], [ 11.560069207000083, 54.65961334800005 ], [ 11.512217644000089, 54.646551825000074 ], [ 11.47437584700009, 54.626125393000052 ], [ 11.451833530000044, 54.62836334800005 ], [ 11.35873457100007, 54.660549221000053 ], [ 11.297699415000068, 54.691555080000057 ], [ 11.187754754000082, 54.732245184000078 ], [ 11.138194207000083, 54.73859284100007 ], [ 11.084646030000044, 54.753119208000044 ], [ 11.030528191000087, 54.760646877000056 ], [ 11.009287957000083, 54.771633205000057 ], [ 10.999196811000047, 54.786769924000055 ], [ 11.005707227000073, 54.803656317000048 ], [ 11.030772332000083, 54.812160549000055 ], [ 11.061289910000085, 54.809312242000033 ], [ 11.089691602000073, 54.810614325000074 ], [ 11.108164910000085, 54.831529039000031 ], [ 11.091970248000052, 54.835028387000079 ], [ 11.078379754000082, 54.841131903000075 ], [ 11.025238477000073, 54.879461981000077 ], [ 11.018809441000087, 54.88617584800005 ], [ 11.018809441000087, 54.903387762000079 ], [ 11.032399936000047, 54.919256903000075 ], [ 11.07398522200009, 54.948187567000048 ], [ 11.088145379000082, 54.944159247000073 ], [ 11.231700066000087, 54.96124909100007 ], [ 11.256032748000052, 54.954575914000031 ], [ 11.303477410000085, 54.932440497000073 ], [ 11.321055535000085, 54.927720445000034 ], [ 11.338877800000091, 54.919134833000044 ], [ 11.36890709700009, 54.881089585000041 ], [ 11.392751498000052, 54.87250397300005 ], [ 11.416758660000085, 54.869330145000049 ], [ 11.594737175000091, 54.811102606000077 ], [ 11.585134311000047, 54.828517971000053 ], [ 11.57357832100007, 54.839341539000031 ], [ 11.572764519000089, 54.84796784100007 ], [ 11.594737175000091, 54.858872789000031 ], [ 11.622080925000091, 54.858872789000031 ], [ 11.646332227000073, 54.865383205000057 ], [ 11.656260613000086, 54.866278387000079 ], [ 11.647227410000085, 54.877142645000049 ], [ 11.644786004000082, 54.889634507000039 ], [ 11.646332227000073, 54.902289130000042 ], [ 11.649424675000091, 54.91351959800005 ], [ 11.725759311000047, 54.87335846600007 ], [ 11.731944207000083, 54.858872789000031 ], [ 11.75562584700009, 54.841131903000075 ], [ 11.770681186000047, 54.83429596600007 ], [ 11.787282748000052, 54.831529039000031 ], [ 11.777191602000073, 54.825995184000078 ], [ 11.772959832000083, 54.824693101000037 ], [ 11.787608269000089, 54.806870835000041 ], [ 11.837738477000073, 54.782782294000071 ], [ 11.848643425000091, 54.773179429000038 ], [ 11.85132897200009, 54.756822007000039 ], [ 11.855479363000086, 54.74945709800005 ], [ 11.855479363000086, 54.74359772300005 ], [ 11.845225457000083, 54.731919664000031 ] ] ], [ [ [ 12.417165561000047, 55.030218817000048 ], [ 12.504730665000068, 55.019761460000041 ], [ 12.537608269000089, 55.002386786000045 ], [ 12.553721550000091, 54.968085028000075 ], [ 12.551768425000091, 54.957180080000057 ], [ 12.54265384200005, 54.951157945000034 ], [ 12.526215040000068, 54.94867584800005 ], [ 12.502777540000068, 54.948187567000048 ], [ 12.384613477000073, 54.963080145000049 ], [ 12.348399285000085, 54.960028387000079 ], [ 12.313975457000083, 54.950873114000046 ], [ 12.280039910000085, 54.934556382000039 ], [ 12.226817254000082, 54.892645575000074 ], [ 12.207774285000085, 54.88617584800005 ], [ 12.178721550000091, 54.88898346600007 ], [ 12.11500084700009, 54.907294012000079 ], [ 12.11500084700009, 54.91351959800005 ], [ 12.129161004000082, 54.91351959800005 ], [ 12.12468509200005, 54.923732815000051 ], [ 12.128916863000086, 54.931626695000034 ], [ 12.138194207000083, 54.937241929000038 ], [ 12.149099155000044, 54.940822658000059 ], [ 12.144053582000083, 54.943793036000045 ], [ 12.13453209700009, 54.951605536000045 ], [ 12.129161004000082, 54.954413153000075 ], [ 12.151377800000091, 54.968898830000057 ], [ 12.164398634000065, 54.972642320000034 ], [ 12.177012566000087, 54.968085028000075 ], [ 12.184336785000085, 54.975531317000048 ], [ 12.177012566000087, 54.989203192000048 ], [ 12.19312584700009, 54.988348700000074 ], [ 12.217295769000089, 54.978664455000057 ], [ 12.23218834700009, 54.975531317000048 ], [ 12.242198113000086, 54.976629950000074 ], [ 12.27475019600007, 54.984442450000074 ], [ 12.28687584700009, 54.989203192000048 ], [ 12.281504754000082, 54.999090887000079 ], [ 12.281260613000086, 55.007147528000075 ], [ 12.285655144000089, 55.01312897300005 ], [ 12.294200066000087, 55.016546942000048 ], [ 12.294200066000087, 55.023382880000042 ], [ 12.261566602000073, 55.036810614000046 ], [ 12.252696160000085, 55.043850002000056 ], [ 12.247569207000083, 55.053859768000052 ], [ 12.250987175000091, 55.060736395000049 ], [ 12.261973504000082, 55.064276434000078 ], [ 12.280039910000085, 55.064276434000078 ], [ 12.301768425000091, 55.042059637000079 ], [ 12.33529707100007, 55.033270575000074 ], [ 12.417165561000047, 55.030218817000048 ] ] ], [ [ [ 12.359205490098605, 55.604593096413055 ], [ 12.331309441000087, 55.595404364000046 ], [ 12.312022332000083, 55.583970445000034 ], [ 12.248383009000065, 55.546250718000067 ], [ 12.248220248000052, 55.546128648000035 ], [ 12.198090040000068, 55.487494208000044 ], [ 12.224864129000082, 55.434881903000075 ], [ 12.273448113000086, 55.410223700000074 ], [ 12.290537957000083, 55.406927802000041 ], [ 12.352061394000089, 55.404445705000057 ], [ 12.36882571700005, 55.400091864000046 ], [ 12.412119988000086, 55.379136460000041 ], [ 12.434743686000047, 55.363674221000053 ], [ 12.444590691000087, 55.348863023000035 ], [ 12.446299675000091, 55.331691799000055 ], [ 12.45085696700005, 55.317206122000073 ], [ 12.465017123000052, 55.290269273000035 ], [ 12.450205925000091, 55.279689846000053 ], [ 12.444590691000087, 55.276556708000044 ], [ 12.392425977000073, 55.25531647300005 ], [ 12.182790561000047, 55.22719961100006 ], [ 12.167002800000091, 55.217352606000077 ], [ 12.141368035000085, 55.207993882000039 ], [ 12.121104363000086, 55.191066799000055 ], [ 12.10906009200005, 55.170721747000073 ], [ 12.11500084700009, 55.153713283000059 ], [ 12.107432488000086, 55.145086981000077 ], [ 12.09896894600007, 55.141424872000073 ], [ 12.090098504000082, 55.142238674000055 ], [ 12.080739780000044, 55.146877346000053 ], [ 12.088145379000082, 55.168361721000053 ], [ 12.076670769000089, 55.18195221600007 ], [ 12.05640709700009, 55.185695705000057 ], [ 12.03679446700005, 55.177557684000078 ], [ 12.027842644000089, 55.172674872000073 ], [ 12.020030144000089, 55.170965887000079 ], [ 12.014659050000091, 55.167466539000031 ], [ 12.012461785000085, 55.157131252000056 ], [ 12.017914259000065, 55.153021552000041 ], [ 12.04664147200009, 55.14008209800005 ], [ 12.13054446700005, 55.135891018000052 ], [ 12.168630405000044, 55.128485419000071 ], [ 12.177012566000087, 55.105292059000078 ], [ 12.171397332000083, 55.095445054000038 ], [ 12.165049675000091, 55.091294664000031 ], [ 12.157725457000083, 55.089178778000075 ], [ 12.149099155000044, 55.08539459800005 ], [ 12.128428582000083, 55.078843492000033 ], [ 12.11850019600007, 55.073553778000075 ], [ 12.125743035000085, 55.071112372000073 ], [ 12.163340691000087, 55.023382880000042 ], [ 12.162282748000052, 55.004380601000037 ], [ 12.148936394000089, 54.994126695000034 ], [ 12.128428582000083, 54.989976304000038 ], [ 12.104991082000083, 54.989203192000048 ], [ 12.08952884200005, 54.985663153000075 ], [ 12.055918816000087, 54.970770575000074 ], [ 12.03296959700009, 54.968085028000075 ], [ 11.998057488000086, 54.976507880000042 ], [ 11.943858269000089, 55.006089585000041 ], [ 11.910166863000086, 55.009711005000042 ], [ 11.90951582100007, 55.004950262000079 ], [ 11.911143425000091, 55.003810940000051 ], [ 11.91382897200009, 55.003851630000042 ], [ 11.916840040000068, 55.002875067000048 ], [ 11.911387566000087, 55.000921942000048 ], [ 11.908376498000052, 54.998602606000077 ], [ 11.904633009000065, 54.996568101000037 ], [ 11.897146030000044, 54.995428778000075 ], [ 11.901540561000047, 54.976385809000078 ], [ 11.894379102000073, 54.964992580000057 ], [ 11.885020379000082, 54.955145575000074 ], [ 11.882823113000086, 54.940822658000059 ], [ 11.890147332000083, 54.929632880000042 ], [ 11.903330925000091, 54.923000393000052 ], [ 11.918467644000089, 54.921942450000074 ], [ 11.931162957000083, 54.927720445000034 ], [ 11.928558790000068, 54.931382554000038 ], [ 11.923675977000073, 54.940822658000059 ], [ 11.932383660000085, 54.941473700000074 ], [ 11.957855665000068, 54.948187567000048 ], [ 11.965993686000047, 54.942613023000035 ], [ 11.98023522200009, 54.924261786000045 ], [ 11.98218834700009, 54.920314846000053 ], [ 11.991465691000087, 54.91632721600007 ], [ 12.023936394000089, 54.898016669000071 ], [ 12.04037519600007, 54.893011786000045 ], [ 12.058929884000065, 54.894354559000078 ], [ 12.078298373000052, 54.897853908000059 ], [ 12.096446160000085, 54.898098049000055 ], [ 12.111827019000089, 54.889593817000048 ], [ 12.139903191000087, 54.864935614000046 ], [ 12.170176629000082, 54.844549872000073 ], [ 12.170176629000082, 54.838324286000045 ], [ 12.08171634200005, 54.796454169000071 ], [ 12.067149285000085, 54.786810614000046 ], [ 12.028005405000044, 54.743557033000059 ], [ 12.022715691000087, 54.735296942000048 ], [ 12.012705925000091, 54.73110586100006 ], [ 11.985850457000083, 54.712307033000059 ], [ 11.975271030000044, 54.707993882000039 ], [ 11.96070397200009, 54.694077867000033 ], [ 11.960215691000087, 54.662339585000041 ], [ 11.971446160000085, 54.605617580000057 ], [ 11.969004754000082, 54.56976959800005 ], [ 11.949066602000073, 54.568589585000041 ], [ 11.928233269000089, 54.583970445000034 ], [ 11.923675977000073, 54.598130601000037 ], [ 11.909353061000047, 54.609523830000057 ], [ 11.87663821700005, 54.646958726000037 ], [ 11.869151238000086, 54.65961334800005 ], [ 11.870616082000083, 54.680365302000041 ], [ 11.882660352000073, 54.696437893000052 ], [ 11.910166863000086, 54.721665757000039 ], [ 11.889903191000087, 54.724188544000071 ], [ 11.875824415000068, 54.729722398000035 ], [ 11.872325066000087, 54.739935614000046 ], [ 11.882823113000086, 54.756415106000077 ], [ 11.871429884000065, 54.760321356000077 ], [ 11.865244988000086, 54.765448309000078 ], [ 11.855479363000086, 54.776922919000071 ], [ 11.809092644000089, 54.804917710000041 ], [ 11.805430535000085, 54.809515692000048 ], [ 11.800954623000052, 54.817857164000031 ], [ 11.798838738000086, 54.825873114000046 ], [ 11.800059441000087, 54.831203518000052 ], [ 11.799815300000091, 54.83657461100006 ], [ 11.793467644000089, 54.844549872000073 ], [ 11.776052280000044, 54.856146552000041 ], [ 11.760590040000068, 54.863226630000042 ], [ 11.74968509200005, 54.873114325000074 ], [ 11.745616082000083, 54.893011786000045 ], [ 11.745371941000087, 54.911322333000044 ], [ 11.742035352000073, 54.925441799000055 ], [ 11.731944207000083, 54.935288804000038 ], [ 11.711436394000089, 54.940822658000059 ], [ 11.711436394000089, 54.948187567000048 ], [ 11.74976647200009, 54.965725002000056 ], [ 11.759287957000083, 54.968085028000075 ], [ 11.773610873000052, 54.965033270000049 ], [ 11.792979363000086, 54.951320705000057 ], [ 11.803965691000087, 54.948187567000048 ], [ 11.814789259000065, 54.952093817000048 ], [ 11.83757571700005, 54.966131903000075 ], [ 11.841807488000086, 54.964667059000078 ], [ 11.848317905000044, 54.959133205000057 ], [ 11.862478061000047, 54.963690497000073 ], [ 11.882823113000086, 54.975531317000048 ], [ 11.882823113000086, 54.981756903000075 ], [ 11.872325066000087, 54.989569403000075 ], [ 11.853526238000086, 55.020086981000077 ], [ 11.841807488000086, 55.030218817000048 ], [ 11.774668816000087, 55.048570054000038 ], [ 11.75562584700009, 55.050685940000051 ], [ 11.750254754000082, 55.052801825000074 ], [ 11.736989780000044, 55.062201239000046 ], [ 11.728770379000082, 55.064276434000078 ], [ 11.665537957000083, 55.066392320000034 ], [ 11.646657748000052, 55.072333075000074 ], [ 11.630381707000083, 55.081122137000079 ], [ 11.615896030000044, 55.092230536000045 ], [ 11.66960696700005, 55.085638739000046 ], [ 11.775238477000073, 55.057440497000073 ], [ 11.82748457100007, 55.050685940000051 ], [ 11.805349155000044, 55.073879299000055 ], [ 11.743418816000087, 55.100531317000048 ], [ 11.717621290000068, 55.125718492000033 ], [ 11.803965691000087, 55.134833075000074 ], [ 11.809580925000091, 55.138861395000049 ], [ 11.806976759000065, 55.146877346000053 ], [ 11.785411004000082, 55.157212632000039 ], [ 11.728526238000086, 55.154771226000037 ], [ 11.711436394000089, 55.167914130000042 ], [ 11.72624759200005, 55.176947333000044 ], [ 11.734711134000065, 55.188666083000044 ], [ 11.733083530000044, 55.200140692000048 ], [ 11.717621290000068, 55.208319403000075 ], [ 11.69507897200009, 55.208075262000079 ], [ 11.678233269000089, 55.199367580000057 ], [ 11.66382897200009, 55.188299872000073 ], [ 11.649424675000091, 55.180975653000075 ], [ 11.636241082000083, 55.181626695000034 ], [ 11.59937584700009, 55.191310940000051 ], [ 11.524180535000085, 55.202093817000048 ], [ 11.506032748000052, 55.208319403000075 ], [ 11.492360873000052, 55.204169012000079 ], [ 11.42318769600007, 55.221909898000035 ], [ 11.410329623000052, 55.220119533000059 ], [ 11.382985873000052, 55.211167710000041 ], [ 11.36890709700009, 55.208319403000075 ], [ 11.299978061000047, 55.208319403000075 ], [ 11.299978061000047, 55.20148346600007 ], [ 11.320485873000052, 55.194647528000075 ], [ 11.285899285000085, 55.195379950000074 ], [ 11.260996941000087, 55.200588283000059 ], [ 11.245371941000087, 55.214789130000042 ], [ 11.238536004000082, 55.242417710000041 ], [ 11.253103061000047, 55.236273505000042 ], [ 11.267832879000082, 55.235907294000071 ], [ 11.280039910000085, 55.242336330000057 ], [ 11.286306186000047, 55.256089585000041 ], [ 11.276052280000044, 55.251613674000055 ], [ 11.26539147200009, 55.24945709800005 ], [ 11.24195397200009, 55.24868398600006 ], [ 11.238780144000089, 55.254136460000041 ], [ 11.24154707100007, 55.278509833000044 ], [ 11.235118035000085, 55.284002997000073 ], [ 11.217133009000065, 55.290228583000044 ], [ 11.162119988000086, 55.319159247000073 ], [ 11.152842644000089, 55.32843659100007 ], [ 11.161957227000073, 55.330877997000073 ], [ 11.176442905000044, 55.331854559000078 ], [ 11.188243035000085, 55.335272528000075 ], [ 11.190114780000044, 55.345445054000038 ], [ 11.182302280000044, 55.350409247000073 ], [ 11.167979363000086, 55.352769273000035 ], [ 11.152598504000082, 55.353216864000046 ], [ 11.14234459700009, 55.352280992000033 ], [ 11.135427280000044, 55.346869208000044 ], [ 11.130869988000086, 55.338446356000077 ], [ 11.123545769000089, 55.331854559000078 ], [ 11.108164910000085, 55.331854559000078 ], [ 11.101898634000065, 55.336330471000053 ], [ 11.087738477000073, 55.358547268000052 ], [ 11.087738477000073, 55.365952867000033 ], [ 11.11459394600007, 55.364406643000052 ], [ 11.128916863000086, 55.365179755000042 ], [ 11.138926629000082, 55.369370835000041 ], [ 11.147715691000087, 55.375921942000048 ], [ 11.159190300000091, 55.381293036000045 ], [ 11.171722852000073, 55.38507721600007 ], [ 11.18327884200005, 55.386419989000046 ], [ 11.204356316000087, 55.391831773000035 ], [ 11.21420332100007, 55.403794664000031 ], [ 11.213145379000082, 55.415757554000038 ], [ 11.20093834700009, 55.421210028000075 ], [ 11.20484459700009, 55.431341864000046 ], [ 11.196462436000047, 55.453843492000033 ], [ 11.176442905000044, 55.489447333000044 ], [ 11.163910352000073, 55.501898505000042 ], [ 11.151133660000085, 55.510321356000077 ], [ 11.135590040000068, 55.515122789000031 ], [ 11.11500084700009, 55.516791083000044 ], [ 11.097178582000083, 55.509507554000038 ], [ 11.085785352000073, 55.507554429000038 ], [ 11.080902540000068, 55.513088283000059 ], [ 11.082774285000085, 55.526556708000044 ], [ 11.088552280000044, 55.53384023600006 ], [ 11.098155144000089, 55.536688544000071 ], [ 11.111582879000082, 55.537298895000049 ], [ 11.137950066000087, 55.542914130000042 ], [ 11.148448113000086, 55.557318427000041 ], [ 11.145681186000047, 55.576117255000042 ], [ 11.132090691000087, 55.595282294000071 ], [ 11.087901238000086, 55.626939195000034 ], [ 11.039235873000052, 55.643459377000056 ], [ 10.929942254000082, 55.660142320000034 ], [ 10.929942254000082, 55.667629299000055 ], [ 11.087738477000073, 55.660142320000034 ], [ 11.071055535000085, 55.676947333000044 ], [ 11.008636915000068, 55.692287502000056 ], [ 10.984629754000082, 55.701117255000042 ], [ 10.97429446700005, 55.710842190000051 ], [ 10.968272332000083, 55.718410549000055 ], [ 10.960215691000087, 55.724351304000038 ], [ 10.943614129000082, 55.729071356000077 ], [ 10.891449415000068, 55.731268622000073 ], [ 10.875498894000089, 55.736517645000049 ], [ 10.875498894000089, 55.742743231000077 ], [ 11.033050977000073, 55.729071356000077 ], [ 11.065684441000087, 55.732245184000078 ], [ 11.128184441000087, 55.746323960000041 ], [ 11.162771030000044, 55.749497789000031 ], [ 11.162771030000044, 55.742743231000077 ], [ 11.15170332100007, 55.743638414000031 ], [ 11.141123894000089, 55.743231512000079 ], [ 11.130869988000086, 55.741034247000073 ], [ 11.121836785000085, 55.736517645000049 ], [ 11.137543165000068, 55.71906159100007 ], [ 11.16342207100007, 55.70538971600007 ], [ 11.192637566000087, 55.700344143000052 ], [ 11.218028191000087, 55.708563544000071 ], [ 11.176442905000044, 55.729071356000077 ], [ 11.190114780000044, 55.736517645000049 ], [ 11.199473504000082, 55.73110586100006 ], [ 11.21615644600007, 55.728745835000041 ], [ 11.252207879000082, 55.729071356000077 ], [ 11.268402540000068, 55.73273346600007 ], [ 11.30241946700005, 55.746527411000045 ], [ 11.336680535000085, 55.750921942000048 ], [ 11.352224155000044, 55.755804755000042 ], [ 11.364024285000085, 55.765122789000031 ], [ 11.36890709700009, 55.779974677000041 ], [ 11.369965040000068, 55.787787177000041 ], [ 11.37468509200005, 55.801581122000073 ], [ 11.375661655000044, 55.807928778000075 ], [ 11.372080925000091, 55.81586334800005 ], [ 11.354665561000047, 55.830226955000057 ], [ 11.348399285000085, 55.838324286000045 ], [ 11.373871290000068, 55.82876211100006 ], [ 11.398448113000086, 55.826402085000041 ], [ 11.421722852000073, 55.831976630000042 ], [ 11.443369988000086, 55.845770575000074 ], [ 11.477549675000091, 55.841538804000038 ], [ 11.50521894600007, 55.868719794000071 ], [ 11.510508660000085, 55.908270575000074 ], [ 11.477386915000068, 55.941351630000042 ], [ 11.448415561000047, 55.948187567000048 ], [ 11.384287957000083, 55.950832424000055 ], [ 11.304535352000073, 55.967840887000079 ], [ 11.281911655000044, 55.978949286000045 ], [ 11.272634311000047, 55.996568101000037 ], [ 11.400563998000052, 55.961981512000079 ], [ 11.426931186000047, 55.965521552000041 ], [ 11.581065300000091, 55.951849677000041 ], [ 11.59937584700009, 55.942084052000041 ], [ 11.640879754000082, 55.943426825000074 ], [ 11.711436394000089, 55.955633856000077 ], [ 11.74781334700009, 55.968247789000031 ], [ 11.768321160000085, 55.970526434000078 ], [ 11.779795769000089, 55.961859442000048 ], [ 11.775401238000086, 55.951849677000041 ], [ 11.747325066000087, 55.932806708000044 ], [ 11.738780144000089, 55.920843817000048 ], [ 11.750498894000089, 55.910386460000041 ], [ 11.743988477000073, 55.90375397300005 ], [ 11.72787519600007, 55.902289130000042 ], [ 11.711436394000089, 55.907171942000048 ], [ 11.713552280000044, 55.910834052000041 ], [ 11.717621290000068, 55.920843817000048 ], [ 11.685801629000082, 55.919867255000042 ], [ 11.672862175000091, 55.915920315000051 ], [ 11.663096550000091, 55.907171942000048 ], [ 11.71265709700009, 55.858099677000041 ], [ 11.731618686000047, 55.83071523600006 ], [ 11.717621290000068, 55.810980536000045 ], [ 11.702403191000087, 55.809475002000056 ], [ 11.67123457100007, 55.814276434000078 ], [ 11.656260613000086, 55.810980536000045 ], [ 11.637950066000087, 55.796087958000044 ], [ 11.626231316000087, 55.790594794000071 ], [ 11.607758009000065, 55.79047272300005 ], [ 11.607758009000065, 55.783026434000078 ], [ 11.624278191000087, 55.780015367000033 ], [ 11.67359459700009, 55.783026434000078 ], [ 11.687022332000083, 55.786444403000075 ], [ 11.70281009200005, 55.793402411000045 ], [ 11.72038821700005, 55.798651434000078 ], [ 11.738780144000089, 55.797349351000037 ], [ 11.74545332100007, 55.78937409100007 ], [ 11.755869988000086, 55.772935289000031 ], [ 11.763682488000086, 55.756822007000039 ], [ 11.762705925000091, 55.749497789000031 ], [ 11.682302280000044, 55.741278387000079 ], [ 11.664561394000089, 55.737127997000073 ], [ 11.657237175000091, 55.730861721000053 ], [ 11.669932488000086, 55.722845770000049 ], [ 11.684336785000085, 55.721625067000048 ], [ 11.729258660000085, 55.723578192000048 ], [ 11.738780144000089, 55.725978908000059 ], [ 11.746348504000082, 55.731024481000077 ], [ 11.76303144600007, 55.721380927000041 ], [ 11.787282748000052, 55.701117255000042 ], [ 11.794444207000083, 55.687933661000045 ], [ 11.793793165000068, 55.683010158000059 ], [ 11.787933790000068, 55.676947333000044 ], [ 11.779795769000089, 55.660142320000034 ], [ 11.797618035000085, 55.669623114000046 ], [ 11.810557488000086, 55.679103908000059 ], [ 11.852305535000085, 55.730902411000045 ], [ 11.854404203790978, 55.73215354145276 ], [ 11.855638462145293, 55.732050685990316 ], [ 11.893517287093118, 55.733652656444917 ], [ 11.905764600955536, 55.736882433077824 ], [ 11.907521600141706, 55.739440416142259 ], [ 11.909071892853547, 55.740628974547519 ], [ 11.924884881032426, 55.737941800273859 ], [ 11.972666863000086, 55.721421617000033 ], [ 11.965342644000089, 55.704901434000078 ], [ 11.958181186000047, 55.693426825000074 ], [ 11.923024936000047, 55.67413971600007 ], [ 11.910166863000086, 55.660142320000034 ], [ 11.930430535000085, 55.657619533000059 ], [ 11.959157748000052, 55.665106512000079 ], [ 11.98218834700009, 55.678900458000044 ], [ 11.985199415000068, 55.694891669000071 ], [ 12.001149936000047, 55.69867584800005 ], [ 12.017588738000086, 55.695705471000053 ], [ 12.031911655000044, 55.687201239000046 ], [ 12.04037519600007, 55.67446523600006 ], [ 12.009287957000083, 55.680487372000073 ], [ 12.005137566000087, 55.678168036000045 ], [ 12.01140384200005, 55.669012762000079 ], [ 12.026621941000087, 55.662054755000042 ], [ 12.06031334700009, 55.653998114000046 ], [ 12.069102410000085, 55.674953518000052 ], [ 12.092051629000082, 55.706732489000046 ], [ 12.09506269600007, 55.729071356000077 ], [ 12.076088197422171, 55.77892118906162 ], [ 12.076296828036163, 55.778921209745988 ], [ 12.112935417735343, 55.778817856958483 ], [ 12.151589389938408, 55.757578844288219 ], [ 12.167867466110636, 55.748561306159331 ], [ 12.2404728528399, 55.741249091272493 ], [ 12.226675246265586, 55.733807685176487 ], [ 12.228380567708996, 55.728381659785725 ], [ 12.230550978045187, 55.725849514243635 ], [ 12.232876418012268, 55.72347239833249 ], [ 12.236442092328673, 55.721198635208793 ], [ 12.255717401137133, 55.714532376368027 ], [ 12.258042840204894, 55.712206936400946 ], [ 12.254942253881893, 55.707762762941115 ], [ 12.215668165853174, 55.691484686768831 ], [ 12.192672153097362, 55.686342882218185 ], [ 12.157945591315979, 55.670555732461082 ], [ 12.165542026143555, 55.66430288387096 ], [ 12.166317173398795, 55.662442531897284 ], [ 12.167092318855396, 55.660168768773644 ], [ 12.166627231761311, 55.657714138496658 ], [ 12.16507693904947, 55.654691067438762 ], [ 12.163836703800825, 55.650711981972336 ], [ 12.16259647035082, 55.643735662970414 ], [ 12.164456821425176, 55.638412991266534 ], [ 12.169107699560698, 55.634046332172488 ], [ 12.170192905178396, 55.622212429460035 ], [ 12.201095412023619, 55.614280096948903 ], [ 12.220164015257069, 55.614900214573197 ], [ 12.239852736114869, 55.621566474313283 ], [ 12.251996698089158, 55.616347154497532 ], [ 12.2812972353791, 55.618982651927809 ], [ 12.316695590728898, 55.616553860072543 ], [ 12.359121941924059, 55.604616604572641 ], [ 12.359205490098605, 55.604593096413055 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DK-84", "NAME_1": "Hovedstaden" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.151377800000091, 55.133205471000053 ], [ 15.146657748000052, 55.128241278000075 ], [ 15.144541863000086, 55.124823309000078 ], [ 15.14234459700009, 55.122137762000079 ], [ 15.137705925000091, 55.119533596000053 ], [ 15.145030144000089, 55.104885158000059 ], [ 15.147715691000087, 55.095607815000051 ], [ 15.144704623000052, 55.087103583000044 ], [ 15.134287957000083, 55.07485586100006 ], [ 15.112803582000083, 55.054632880000042 ], [ 15.106618686000047, 55.044663804000038 ], [ 15.110362175000091, 55.036363023000035 ], [ 15.110362175000091, 55.030218817000048 ], [ 15.113242231000072, 55.018294874000048 ], [ 15.097353257000066, 55.007822963000081 ], [ 15.086685936000038, 54.999213378000036 ], [ 15.072666226000081, 54.991638006000073 ], [ 15.023663842000076, 54.999339294000038 ], [ 14.982869819000086, 55.001013408000063 ], [ 14.92726517400007, 55.013691882000046 ], [ 14.858606616000088, 55.038226353000084 ], [ 14.780832726000085, 55.051128327000072 ], [ 14.699554884000065, 55.089178778000075 ], [ 14.684172687000057, 55.101346808000073 ], [ 14.697044746000074, 55.12265371400008 ], [ 14.701426629000082, 55.16469961100006 ], [ 14.705739780000044, 55.225653387000079 ], [ 14.709239129000082, 55.235825914000031 ], [ 14.717539910000085, 55.246771552000041 ], [ 14.737071160000085, 55.266669012000079 ], [ 14.745127800000091, 55.28156159100007 ], [ 14.752126498000052, 55.298773505000042 ], [ 14.760915561000047, 55.309271552000041 ], [ 14.774587436000047, 55.303900458000044 ], [ 14.814952019000089, 55.270412502000056 ], [ 14.828949415000068, 55.261704820000034 ], [ 14.851422204000073, 55.248199851000038 ], [ 14.889008009000065, 55.233221747000073 ], [ 14.926799100000039, 55.215798735000078 ], [ 14.954354434000038, 55.219254417000059 ], [ 14.973399285000085, 55.216131903000075 ], [ 14.989756707000083, 55.196030992000033 ], [ 15.000498894000089, 55.188421942000048 ], [ 15.012868686000047, 55.183823960000041 ], [ 15.084542879000082, 55.154579496000053 ], [ 15.131602410000085, 55.145453192000048 ], [ 15.151377800000091, 55.133205471000053 ] ] ], [ [ [ 12.615733269000089, 55.68813711100006 ], [ 12.673838738000086, 55.605536200000074 ], [ 12.674571160000085, 55.601263739000046 ], [ 12.639414910000085, 55.578273830000057 ], [ 12.624196811000047, 55.57562897300005 ], [ 12.605723504000082, 55.569281317000048 ], [ 12.588877800000091, 55.561346747000073 ], [ 12.577972852000073, 55.554022528000075 ], [ 12.55632571700005, 55.550482489000046 ], [ 12.53484134200005, 55.569322007000039 ], [ 12.520518425000091, 55.596747137000079 ], [ 12.520192905000044, 55.619208075000074 ], [ 12.53101647200009, 55.631903387000079 ], [ 12.543955925000091, 55.640366929000038 ], [ 12.556813998000052, 55.646958726000037 ], [ 12.567393425000091, 55.653998114000046 ], [ 12.578135613000086, 55.666449286000045 ], [ 12.59506269600007, 55.691351630000042 ], [ 12.608409050000091, 55.701117255000042 ], [ 12.612559441000087, 55.695135809000078 ], [ 12.614105665000068, 55.692450262000079 ], [ 12.615733269000089, 55.68813711100006 ] ] ], [ [ [ 11.854404203790978, 55.73215354145276 ], [ 11.855479363000086, 55.732814846000053 ], [ 11.85328209700009, 55.739976304000038 ], [ 11.844004754000082, 55.752671617000033 ], [ 11.841807488000086, 55.756415106000077 ], [ 11.844981316000087, 55.76788971600007 ], [ 11.852712436000047, 55.782294012000079 ], [ 11.869151238000086, 55.804754950000074 ], [ 11.884043816000087, 55.813666083000044 ], [ 11.919444207000083, 55.819403387000079 ], [ 11.937347852000073, 55.825262762000079 ], [ 11.953623894000089, 55.853501695000034 ], [ 11.933116082000083, 55.886135158000059 ], [ 11.90951582100007, 55.91547272300005 ], [ 11.916840040000068, 55.934515692000048 ], [ 11.934743686000047, 55.933661200000074 ], [ 11.969981316000087, 55.912583726000037 ], [ 11.988617384000065, 55.907171942000048 ], [ 11.998220248000052, 55.902818101000037 ], [ 11.997894727000073, 55.892767645000049 ], [ 11.99382571700005, 55.881537177000041 ], [ 11.992035352000073, 55.873724677000041 ], [ 11.996348504000082, 55.861070054000038 ], [ 12.000173373000052, 55.856512762000079 ], [ 12.004893425000091, 55.853461005000042 ], [ 12.012461785000085, 55.845770575000074 ], [ 12.031260613000086, 55.816595770000049 ], [ 12.049001498000052, 55.775336005000042 ], [ 12.051931186000047, 55.73663971600007 ], [ 12.026133660000085, 55.715399481000077 ], [ 11.99000084700009, 55.722805080000057 ], [ 11.972666863000086, 55.721421617000033 ], [ 11.924884881032426, 55.737941800273859 ], [ 11.909071892853547, 55.740628974547519 ], [ 11.907521600141706, 55.739440416142259 ], [ 11.905764600955536, 55.736882433077824 ], [ 11.893517287093118, 55.733652656444917 ], [ 11.855638462145293, 55.732050685990316 ], [ 11.854404203790978, 55.73215354145276 ] ] ], [ [ [ 12.076088197422171, 55.77892118906162 ], [ 12.053477410000085, 55.838324286000045 ], [ 12.053477410000085, 55.873724677000041 ], [ 12.049815300000091, 55.888006903000075 ], [ 12.026133660000085, 55.941351630000042 ], [ 12.010590040000068, 55.955267645000049 ], [ 11.992442254000082, 55.960598049000055 ], [ 11.970713738000086, 55.959865627000056 ], [ 11.89429772200009, 55.942287502000056 ], [ 11.865489129000082, 55.939357815000051 ], [ 11.848643425000091, 55.948187567000048 ], [ 11.865570509000065, 55.972723700000074 ], [ 11.91732832100007, 55.997626044000071 ], [ 12.012461785000085, 56.03070709800005 ], [ 12.16537519600007, 56.103705145000049 ], [ 12.245127800000091, 56.128729559000078 ], [ 12.328461134000065, 56.126898505000042 ], [ 12.414886915000068, 56.099025783000059 ], [ 12.48609459700009, 56.099025783000059 ], [ 12.505381707000083, 56.093166408000059 ], [ 12.54037519600007, 56.075384833000044 ], [ 12.57007897200009, 56.068264065000051 ], [ 12.621918165000068, 56.043768622000073 ], [ 12.608409050000091, 56.028021552000041 ], [ 12.567393425000091, 55.996568101000037 ], [ 12.552744988000086, 55.979681708000044 ], [ 12.525563998000052, 55.939886786000045 ], [ 12.512705925000091, 55.928290106000077 ], [ 12.512705925000091, 55.920843817000048 ], [ 12.540293816000087, 55.898260809000078 ], [ 12.55445397200009, 55.882879950000074 ], [ 12.560557488000086, 55.869940497000073 ], [ 12.565114780000044, 55.851141669000071 ], [ 12.576019727000073, 55.829169012000079 ], [ 12.589691602000073, 55.809475002000056 ], [ 12.602224155000044, 55.797349351000037 ], [ 12.597992384000065, 55.787583726000037 ], [ 12.595876498000052, 55.774237372000073 ], [ 12.594737175000091, 55.752997137000079 ], [ 12.589040561000047, 55.735744533000059 ], [ 12.587901238000086, 55.729071356000077 ], [ 12.58920332100007, 55.724269924000055 ], [ 12.592784050000091, 55.719142971000053 ], [ 12.602224155000044, 55.708563544000071 ], [ 12.581228061000047, 55.693060614000046 ], [ 12.541026238000086, 55.648871161000045 ], [ 12.50326582100007, 55.634019273000035 ], [ 12.496755405000044, 55.621771552000041 ], [ 12.487152540000068, 55.609849351000037 ], [ 12.465017123000052, 55.605536200000074 ], [ 12.44857832100007, 55.608872789000031 ], [ 12.436778191000087, 55.614406643000052 ], [ 12.423675977000073, 55.618841864000046 ], [ 12.403575066000087, 55.619208075000074 ], [ 12.359205490098605, 55.604593096413055 ], [ 12.359121941924059, 55.604616604572641 ], [ 12.316695590728898, 55.616553860072543 ], [ 12.2812972353791, 55.618982651927809 ], [ 12.251996698089158, 55.616347154497532 ], [ 12.239852736114869, 55.621566474313283 ], [ 12.220164015257069, 55.614900214573197 ], [ 12.201095412023619, 55.614280096948903 ], [ 12.170192905178396, 55.622212429460035 ], [ 12.169107699560698, 55.634046332172488 ], [ 12.164456821425176, 55.638412991266534 ], [ 12.16259647035082, 55.643735662970414 ], [ 12.163836703800825, 55.650711981972336 ], [ 12.16507693904947, 55.654691067438762 ], [ 12.166627231761311, 55.657714138496658 ], [ 12.167092318855396, 55.660168768773644 ], [ 12.166317173398795, 55.662442531897284 ], [ 12.165542026143555, 55.66430288387096 ], [ 12.157945591315979, 55.670555732461082 ], [ 12.192672153097362, 55.686342882218185 ], [ 12.215668165853174, 55.691484686768831 ], [ 12.254942253881893, 55.707762762941115 ], [ 12.258042840204894, 55.712206936400946 ], [ 12.255717401137133, 55.714532376368027 ], [ 12.236442092328673, 55.721198635208793 ], [ 12.232876418012268, 55.72347239833249 ], [ 12.230550978045187, 55.725849514243635 ], [ 12.228380567708996, 55.728381659785725 ], [ 12.226675246265586, 55.733807685176487 ], [ 12.2404728528399, 55.741249091272493 ], [ 12.167867466110636, 55.748561306159331 ], [ 12.151589389938408, 55.757578844288219 ], [ 12.112935417735343, 55.778817856958483 ], [ 12.076296828036163, 55.778921209745988 ], [ 12.076088197422171, 55.77892118906162 ] ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/egypt.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/egypt.geojson new file mode 100644 index 000000000000..2078f8062057 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/egypt.geojson @@ -0,0 +1,33 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "EG-SIN", "NAME_1": "Shamal Sina'" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 34.248350857000048, 31.211448958000076 ], [ 34.480406535000043, 30.651205139000027 ], [ 34.504384400000049, 30.530333965000082 ], [ 34.536217081000075, 30.482171530000088 ], [ 34.526915324000072, 30.409617818000086 ], [ 34.599469035000084, 30.344505513000072 ], [ 34.733207642000082, 30.012587789000108 ], [ 34.741372518000048, 29.940240784000039 ], [ 34.824364868000089, 29.741699931000099 ], [ 34.855267375000096, 29.545717062000065 ], [ 34.886729362000096, 29.490057684000064 ], [ 34.468160027663146, 29.54646556223588 ], [ 34.024362827182699, 29.707205104831701 ], [ 33.768306105042711, 29.82704275232112 ], [ 33.130257196112666, 29.925202134870631 ], [ 32.854821812376713, 29.913755804886478 ], [ 32.829862094859777, 29.957577420061853 ], [ 32.798649529652039, 30.254045111792436 ], [ 32.745732862881312, 30.372900906451662 ], [ 32.648426141053562, 30.517491563185047 ], [ 32.599678244755182, 31.061515647129397 ], [ 32.761973504000082, 31.081203518000052 ], [ 32.927256707000083, 31.155422268000052 ], [ 32.83961022200009, 31.101223049000055 ], [ 32.666514519000089, 31.052313544000071 ], [ 32.715017123000052, 31.052313544000071 ], [ 32.700694207000083, 31.038723049000055 ], [ 32.769541863000086, 31.04555898600006 ], [ 32.893077019000089, 31.100775458000044 ], [ 32.91773522200009, 31.092230536000045 ], [ 32.906748894000089, 31.079657294000071 ], [ 32.940928582000083, 31.093329169000071 ], [ 32.913584832000083, 31.100775458000044 ], [ 32.92709394600007, 31.111802476000037 ], [ 32.968760613000086, 31.086493231000077 ], [ 32.975108269000089, 31.065985419000071 ], [ 32.961273634000065, 31.065985419000071 ], [ 33.009938998000052, 31.056301174000055 ], [ 33.023448113000086, 31.073431708000044 ], [ 33.00912519600007, 31.086493231000077 ], [ 33.057465040000068, 31.100775458000044 ], [ 33.064300977000073, 31.134914455000057 ], [ 33.030284050000034, 31.100775458000044 ], [ 32.95443769600007, 31.106919664000088 ], [ 32.984629754000082, 31.109523830000057 ], [ 33.030284050000034, 31.162176825000074 ], [ 33.109385613000086, 31.196437893000052 ], [ 33.126475457000083, 31.189520575000074 ], [ 33.098643425000034, 31.183294989000046 ], [ 33.157725457000083, 31.117865302000041 ], [ 33.118988477000073, 31.106919664000088 ], [ 33.144704623000052, 31.077866929000038 ], [ 33.133311394000089, 31.04555898600006 ], [ 33.221446160000085, 31.059800523000035 ], [ 33.194834832000083, 31.073431708000044 ], [ 33.262461785000085, 31.100775458000044 ], [ 33.303965691000087, 31.079657294000071 ], [ 33.303233269000089, 31.099798895000049 ], [ 33.317637566000087, 31.100775458000044 ], [ 33.277191602000073, 31.106919664000088 ], [ 33.38648522200009, 31.114406643000052 ], [ 33.377696160000085, 31.132554429000038 ], [ 33.406423373000052, 31.137274481000077 ], [ 33.406423373000052, 31.155422268000052 ], [ 33.499522332000083, 31.128078518000052 ], [ 33.647959832000083, 31.117254950000074 ], [ 33.854340040000068, 31.163478908000059 ], [ 34.047048373000052, 31.229193427000041 ], [ 34.200269441306034, 31.314266688845734 ], [ 34.248350857000048, 31.211448958000076 ] ] ], [ [ [ 32.978526238000086, 31.081691799000055 ], [ 32.969737175000034, 31.08657461100006 ], [ 32.983083530000044, 31.089911200000074 ], [ 32.989268425000034, 31.073431708000044 ], [ 32.978526238000086, 31.081691799000055 ] ] ], [ [ [ 33.375987175000034, 31.189520575000074 ], [ 33.43295332100007, 31.172064520000049 ], [ 33.47592207100007, 31.141750393000052 ], [ 33.269786004000082, 31.216782945000034 ], [ 33.375987175000034, 31.189520575000074 ] ] ], [ [ [ 33.078623894000089, 31.227118231000077 ], [ 33.104746941000087, 31.240301825000074 ], [ 33.262461785000085, 31.223618882000039 ], [ 33.102549675000034, 31.226752020000049 ], [ 32.934743686000047, 31.147935289000088 ], [ 33.078623894000089, 31.227118231000077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-ASN", "NAME_1": "Aswan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.435476115000085, 21.995351054000068 ], [ 31.490563192000081, 22.148209941000104 ], [ 31.482915080000055, 22.195442200000045 ], [ 31.442504110000073, 22.224174296000044 ], [ 31.3853499760001, 22.214459127000097 ], [ 31.314388101000134, 22.102273188000041 ], [ 31.232336866852904, 22.175390936942165 ], [ 31.228306105442414, 22.210608425138673 ], [ 31.264014520054047, 22.259339300868021 ], [ 31.302461785782782, 22.280526638493541 ], [ 31.426743604933392, 22.297011420240835 ], [ 31.491804233678408, 22.323728136044622 ], [ 31.597327507958084, 22.432532863800589 ], [ 31.620271843870455, 22.502683621152187 ], [ 31.593555128965988, 22.648436997869112 ], [ 31.622907342200051, 22.704841823691197 ], [ 31.651432733134129, 22.730214952358153 ], [ 31.703109164656212, 22.744296779772526 ], [ 31.83395389165878, 22.722592678209537 ], [ 32.193311801798188, 22.872066758873814 ], [ 32.296974725003508, 22.813698228290605 ], [ 32.374851109291228, 22.813569037081379 ], [ 32.414590285313409, 22.771478583569774 ], [ 32.435984327614619, 22.772692979497378 ], [ 32.491588168659064, 22.859922796899525 ], [ 32.523214145916086, 22.971388862306128 ], [ 32.633698357593119, 23.215508328046894 ], [ 32.76185591032197, 23.361752631178945 ], [ 32.764801467014081, 23.39619497301959 ], [ 32.747748243586557, 23.419475205716139 ], [ 32.501044956359635, 23.405755113507666 ], [ 32.437844679588295, 23.42257579203914 ], [ 32.426372512081741, 23.448879095793643 ], [ 32.47897911959069, 23.651140652019478 ], [ 32.527709995319981, 23.714030870428303 ], [ 32.584657424400575, 23.750979519389318 ], [ 32.732865431394544, 23.772502752899697 ], [ 32.762941115040405, 23.794181016940342 ], [ 32.745112746156281, 23.835961412089489 ], [ 32.645635613992397, 23.895776881697714 ], [ 32.655247430424538, 23.999129747439895 ], [ 32.694521519352634, 24.024270331210801 ], [ 32.831102329209102, 24.037757880321919 ], [ 32.873993768397668, 24.080287584304529 ], [ 32.886396111891031, 24.126331284860896 ], [ 32.870738153343098, 24.199143378064434 ], [ 32.878024529808158, 24.490004177250967 ], [ 32.930321078954591, 24.64903839840332 ], [ 32.899211867433735, 24.758618272515264 ], [ 32.849705845348467, 24.857139391169937 ], [ 32.834823032257134, 24.973876451437093 ], [ 32.808416374815806, 25.032994289954502 ], [ 32.770227492404842, 25.078495388151623 ], [ 32.653852166444324, 25.14570058791179 ], [ 32.693746372097394, 25.179212755564208 ], [ 32.704753451610486, 25.269879055174215 ], [ 32.907583448617231, 25.128983263067141 ], [ 32.979568718621465, 25.031185614824267 ], [ 33.009075962385737, 24.913776760089377 ], [ 33.018687777918615, 24.744148871473215 ], [ 33.131497429562728, 24.52380056394486 ], [ 33.108088005656896, 24.441454169574229 ], [ 33.002099644283135, 24.30314219805399 ], [ 32.972127313424778, 24.155916042990953 ], [ 33.009541050379141, 23.962155260057216 ], [ 33.068503859265661, 23.836193956086163 ], [ 33.158317499053339, 23.74614777320113 ], [ 33.168446079423006, 23.630909328802488 ], [ 33.14002404127649, 23.531406358216827 ], [ 33.162038202101314, 23.43818207374369 ], [ 33.212784457636587, 23.329635728406117 ], [ 33.162244906777005, 23.198506782362074 ], [ 33.115219354289763, 23.157165635885349 ], [ 33.055946486141409, 23.056965033309609 ], [ 33.075325147737374, 23.025390732895971 ], [ 33.214954867972779, 22.960330105050275 ], [ 33.283116082141476, 22.884133206482261 ], [ 33.331536900407627, 22.743134059788986 ], [ 33.329676548433952, 22.706314602037253 ], [ 33.290247429874967, 22.709337673095092 ], [ 33.121420526036445, 22.843954779989076 ], [ 32.959879998662984, 22.845375881491748 ], [ 32.869859653300352, 22.919660753041285 ], [ 32.837768588949189, 22.927541408709033 ], [ 32.779890984781105, 22.840234076041781 ], [ 32.784386834185057, 22.75445119946329 ], [ 32.761545851060134, 22.702309679048426 ], [ 32.537321811752179, 22.499298813989071 ], [ 32.454794549328994, 22.465709132870188 ], [ 32.33826419373753, 22.461471665884631 ], [ 32.2775960634076, 22.486276352871357 ], [ 32.18121951666734, 22.571930040039319 ], [ 32.136984491241265, 22.580740871693877 ], [ 32.044173617918091, 22.372407334930529 ], [ 31.996114535757215, 22.312023424541394 ], [ 31.944593132966702, 22.27858877215408 ], [ 31.86030887225661, 22.264894518367328 ], [ 31.798555536308925, 22.19383942345064 ], [ 31.569525588335239, 22.09128754338542 ], [ 31.524360386022977, 22.05043732332382 ], [ 31.494719175649436, 21.995386529364794 ], [ 31.435476115000085, 21.995351054000068 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-WAD", "NAME_1": "Al Wadi at Jadid" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.314388101000134, 22.102273188000041 ], [ 31.248407430000043, 21.994369202000101 ], [ 24.981244751000133, 21.995351054000068 ], [ 24.981244750744622, 27.666502793968732 ], [ 30.687822299859249, 27.667639675530609 ], [ 30.671234165324449, 27.634024155990005 ], [ 30.67030398933764, 27.568085029000883 ], [ 30.790865106339538, 27.337453111471916 ], [ 30.939383171696022, 27.208985501279869 ], [ 31.080408155911641, 27.149505927556504 ], [ 31.162056919191457, 27.079794419776647 ], [ 31.299981317084075, 26.83738027637861 ], [ 31.438887566907681, 26.683462022254503 ], [ 31.533972201555855, 26.6105982531069 ], [ 31.952344598324544, 26.139851792825937 ], [ 32.110784540274267, 26.005415553984619 ], [ 32.224059279012522, 25.970094713000606 ], [ 32.361053500918331, 26.000144558224747 ], [ 32.618660515770159, 26.104117539792583 ], [ 32.681654086966546, 26.108225816468234 ], [ 32.727284377272156, 26.086470038061805 ], [ 32.746663038868121, 26.055515855272461 ], [ 32.748058302848392, 26.001152249476718 ], [ 32.687080112357307, 25.894156195951666 ], [ 32.664445834807395, 25.802740587508083 ], [ 32.464716424123651, 25.637350164978102 ], [ 32.44192711784217, 25.576346136964617 ], [ 32.519338413237165, 25.260293077163738 ], [ 32.5589225596284, 25.211691393542935 ], [ 32.770227492404842, 25.078495388151623 ], [ 32.808416374815806, 25.032994289954502 ], [ 32.834823032257134, 24.973876451437093 ], [ 32.849705845348467, 24.857139391169937 ], [ 32.918435500298074, 24.705469061747806 ], [ 32.930321078954591, 24.64903839840332 ], [ 32.878024529808158, 24.490004177250967 ], [ 32.870738153343098, 24.199143378064434 ], [ 32.886396111891031, 24.126331284860896 ], [ 32.873993768397668, 24.080287584304529 ], [ 32.831102329209102, 24.037757880321919 ], [ 32.694521519352634, 24.024270331210801 ], [ 32.655247430424538, 23.999129747439895 ], [ 32.645635613992397, 23.895776881697714 ], [ 32.745112746156281, 23.835961412089489 ], [ 32.762941115040405, 23.794181016940342 ], [ 32.732865431394544, 23.772502752899697 ], [ 32.584657424400575, 23.750979519389318 ], [ 32.527709995319981, 23.714030870428303 ], [ 32.47897911959069, 23.651140652019478 ], [ 32.426372512081741, 23.448879095793643 ], [ 32.437844679588295, 23.42257579203914 ], [ 32.501044956359635, 23.405755113507666 ], [ 32.747748243586557, 23.419475205716139 ], [ 32.764801467014081, 23.39619497301959 ], [ 32.76185591032197, 23.361752631178945 ], [ 32.633698357593119, 23.215508328046894 ], [ 32.523214145916086, 22.971388862306128 ], [ 32.491588168659064, 22.859922796899525 ], [ 32.435984327614619, 22.772692979497378 ], [ 32.414590285313409, 22.771478583569774 ], [ 32.374851109291228, 22.813569037081379 ], [ 32.296974725003508, 22.813698228290605 ], [ 32.193311801798188, 22.872066758873814 ], [ 31.83395389165878, 22.722592678209537 ], [ 31.703109164656212, 22.744296779772526 ], [ 31.636859979304575, 22.71915619600162 ], [ 31.593555128965988, 22.648436997869112 ], [ 31.620271843870455, 22.502683621152187 ], [ 31.597327507958084, 22.432532863800589 ], [ 31.491804233678408, 22.323728136044622 ], [ 31.426743604933392, 22.297011420240835 ], [ 31.302461785782782, 22.280526638493541 ], [ 31.23574751243774, 22.225594591017568 ], [ 31.232336866852904, 22.175390936942165 ], [ 31.314388101000134, 22.102273188000041 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-BA", "NAME_1": "Al Bahr al Ahmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.524518789710385, 21.995402731550826 ], [ 31.494719175649436, 21.995386529364794 ], [ 31.524360386022977, 22.05043732332382 ], [ 31.569525588335239, 22.09128754338542 ], [ 31.798555536308925, 22.19383942345064 ], [ 31.86030887225661, 22.264894518367328 ], [ 31.944593132966702, 22.27858877215408 ], [ 31.996114535757215, 22.312023424541394 ], [ 32.044173617918091, 22.372407334930529 ], [ 32.136984491241265, 22.580740871693877 ], [ 32.18121951666734, 22.571930040039319 ], [ 32.2775960634076, 22.486276352871357 ], [ 32.33826419373753, 22.461471665884631 ], [ 32.454794549328994, 22.465709132870188 ], [ 32.537321811752179, 22.499298813989071 ], [ 32.761545851060134, 22.702309679048426 ], [ 32.784386834185057, 22.75445119946329 ], [ 32.779890984781105, 22.840234076041781 ], [ 32.837768588949189, 22.927541408709033 ], [ 32.869859653300352, 22.919660753041285 ], [ 32.959879998662984, 22.845375881491748 ], [ 33.121420526036445, 22.843954779989076 ], [ 33.290247429874967, 22.709337673095092 ], [ 33.321098259876749, 22.701198635009007 ], [ 33.333707309844442, 22.717554226446396 ], [ 33.283116082141476, 22.884133206482261 ], [ 33.214954867972779, 22.960330105050275 ], [ 33.075325147737374, 23.025390732895971 ], [ 33.055946486141409, 23.056965033309609 ], [ 33.115219354289763, 23.157165635885349 ], [ 33.162244906777005, 23.198506782362074 ], [ 33.212784457636587, 23.329635728406117 ], [ 33.162038202101314, 23.43818207374369 ], [ 33.14002404127649, 23.531406358216827 ], [ 33.168446079423006, 23.630909328802488 ], [ 33.158317499053339, 23.74614777320113 ], [ 33.068503859265661, 23.836193956086163 ], [ 33.009541050379141, 23.962155260057216 ], [ 32.972127313424778, 24.155916042990953 ], [ 33.002099644283135, 24.30314219805399 ], [ 33.108088005656896, 24.441454169574229 ], [ 33.131497429562728, 24.52380056394486 ], [ 33.018687777918615, 24.744148871473215 ], [ 33.009075962385737, 24.913776760089377 ], [ 32.979568718621465, 25.031185614824267 ], [ 32.907583448617231, 25.128983263067141 ], [ 32.672972445621838, 25.296828314974732 ], [ 32.623001336442485, 25.431522935335181 ], [ 32.623001336442485, 25.499012355935463 ], [ 32.645480584361451, 25.552058213915416 ], [ 32.845209995045195, 25.739540309837423 ], [ 32.915024854713238, 25.858525295705817 ], [ 32.931147902153953, 25.935523179950792 ], [ 32.919210645754674, 26.044534614181089 ], [ 32.894405958767948, 26.114013577064895 ], [ 32.840869175272189, 26.184732774298084 ], [ 32.762476027047001, 26.238347073058947 ], [ 32.684444614027711, 26.258940131481836 ], [ 32.539802279551566, 26.251653754117456 ], [ 32.307516717422573, 26.158196926546907 ], [ 32.155277948118794, 26.346841742452455 ], [ 32.032701450411594, 26.383919583521958 ], [ 31.974513787880994, 26.421049098736887 ], [ 31.919426710774076, 26.499416409439732 ], [ 31.906404249656362, 26.57088491550644 ], [ 31.831008334966668, 26.68997325326302 ], [ 31.61903161042045, 26.833194485337231 ], [ 31.489013705717923, 27.067805488332624 ], [ 31.340650669093066, 27.19048533792801 ], [ 31.288354119946632, 27.283373724717592 ], [ 31.23667768662591, 27.317170112310805 ], [ 31.071881545097199, 27.37318736450527 ], [ 30.984238315645712, 27.418352565918156 ], [ 30.958451775828792, 27.447756455995602 ], [ 30.937677850252555, 27.53178233518662 ], [ 30.95473107278076, 27.785720322934537 ], [ 30.920934686086866, 27.881037503378082 ], [ 30.907395461031683, 28.002683824199096 ], [ 30.833394810322204, 28.148049628187778 ], [ 30.817736850874951, 28.27664643048837 ], [ 30.907240431400794, 28.450951036561094 ], [ 30.946049432335428, 28.735920722363403 ], [ 30.971784295308964, 28.811549181049827 ], [ 31.204431594442497, 29.100213731478505 ], [ 31.25326582206003, 29.202713934700284 ], [ 31.255281202765275, 29.298754583756988 ], [ 31.393412306232904, 29.139513657928944 ], [ 31.482140741302146, 29.073910426824739 ], [ 31.911520216684607, 28.951333930016858 ], [ 32.145046014062302, 28.967896227029257 ], [ 32.499649693278684, 29.106104844862671 ], [ 32.656174473173394, 29.120649241269462 ], [ 32.659678582000083, 29.089097398000035 ], [ 32.62468509200005, 29.048163153000075 ], [ 32.625498894000089, 28.972723700000074 ], [ 32.673350457000083, 28.921535549000055 ], [ 32.680837436000047, 28.880560614000046 ], [ 32.749196811000047, 28.804836330000057 ], [ 32.806895379000082, 28.778143622000073 ], [ 32.86890709700009, 28.578924872000073 ], [ 33.002940300000034, 28.489488023000035 ], [ 33.043223504000082, 28.400783596000053 ], [ 33.106700066000087, 28.34711334800005 ], [ 33.126475457000083, 28.287502346000053 ], [ 33.212168816000087, 28.189927476000037 ], [ 33.24195397200009, 28.174872137000079 ], [ 33.24935957100007, 28.14288971600007 ], [ 33.338145379000082, 28.085435289000088 ], [ 33.343597852000073, 28.050604559000078 ], [ 33.441742384000065, 28.016546942000048 ], [ 33.512543165000068, 27.959051825000074 ], [ 33.55437259200005, 27.896470445000091 ], [ 33.592051629000082, 27.791245835000041 ], [ 33.488942905000044, 27.845892645000049 ], [ 33.473480665000068, 27.823187567000048 ], [ 33.522715691000087, 27.751898505000042 ], [ 33.557871941000087, 27.759914455000057 ], [ 33.53679446700005, 27.708075262000079 ], [ 33.574961785000085, 27.681382554000038 ], [ 33.592051629000082, 27.646633205000057 ], [ 33.557871941000087, 27.681382554000038 ], [ 33.557871941000087, 27.659654039000088 ], [ 33.544200066000087, 27.679185289000088 ], [ 33.526540561000047, 27.677557684000078 ], [ 33.496348504000082, 27.646633205000057 ], [ 33.564707879000082, 27.571519273000035 ], [ 33.557871941000087, 27.536769924000055 ], [ 33.632985873000052, 27.495835679000038 ], [ 33.691661004000082, 27.341864325000074 ], [ 33.838389519000089, 27.242580471000053 ], [ 33.838389519000089, 27.194159247000073 ], [ 33.824717644000089, 27.180487372000073 ], [ 33.836761915000068, 27.120754299000055 ], [ 33.901377800000034, 27.058742580000057 ], [ 33.900889519000089, 27.014227606000077 ], [ 33.951670769000089, 26.930975653000075 ], [ 33.996104363000086, 26.896551825000074 ], [ 33.996104363000086, 26.837876695000091 ], [ 33.959646030000044, 26.849798895000049 ], [ 33.948252800000034, 26.831000067000048 ], [ 33.951914910000085, 26.743353583000044 ], [ 33.932139519000089, 26.682603257000039 ], [ 33.941416863000086, 26.653509833000044 ], [ 34.014008009000065, 26.61163971600007 ], [ 34.338715040000068, 26.001776434000078 ], [ 34.54656009200005, 25.725043036000045 ], [ 34.633474155000044, 25.569403387000079 ], [ 34.681895379000082, 25.428697007000039 ], [ 34.743337436000047, 25.351304429000038 ], [ 34.806895379000082, 25.211615302000041 ], [ 34.93913821700005, 25.00336334800005 ], [ 34.953725323000072, 24.944142343000067 ], [ 34.989756707000083, 24.90501536700009 ], [ 35.002207879000082, 24.815619208000044 ], [ 35.063487175000034, 24.764105536000045 ], [ 35.109548373000052, 24.643784898000035 ], [ 35.160269724000045, 24.574618369000063 ], [ 35.144556478000084, 24.500206473000048 ], [ 35.185720248000052, 24.485663153000075 ], [ 35.235454875000073, 24.400125862000039 ], [ 35.391856316000087, 24.282782294000071 ], [ 35.428645313000061, 24.185953023000081 ], [ 35.493828162000057, 24.10889989900005 ], [ 35.510508660000085, 24.111232815000051 ], [ 35.493766615000084, 24.138988741000048 ], [ 35.503899670000067, 24.140537567000081 ], [ 35.588371941000048, 24.075837120000074 ], [ 35.605260501000089, 24.01881704200008 ], [ 35.738571013000069, 23.98331737500007 ], [ 35.792535291000036, 23.902291028000036 ], [ 35.785778825000079, 23.893045961000041 ], [ 35.750355743000057, 23.932423406000055 ], [ 35.684520448000058, 23.910916206000081 ], [ 35.598533165000049, 23.929413472000078 ], [ 35.513926629000082, 23.977118231000077 ], [ 35.483871160000035, 23.917787169000064 ], [ 35.490658112000062, 23.86999553600009 ], [ 35.474767778000057, 23.797915038000042 ], [ 35.483223858000088, 23.772486864000086 ], [ 35.510148144000084, 23.75637860900008 ], [ 35.489431186000047, 23.497015692000048 ], [ 35.547536655000044, 23.39398834800005 ], [ 35.574680423000075, 23.212565219000055 ], [ 35.65464215500009, 23.073749597000074 ], [ 35.667816602000073, 22.982611395000049 ], [ 35.695305231000077, 22.93212649700007 ], [ 35.763682488000086, 22.870428778000075 ], [ 35.723399285000085, 22.931870835000041 ], [ 35.755707227000073, 22.922308661000045 ], [ 35.78492272200009, 22.833197333000044 ], [ 35.885963812000057, 22.735694864000038 ], [ 35.969493035000085, 22.69798411700009 ], [ 36.120616082000083, 22.675685940000051 ], [ 36.226084832000083, 22.635443427000041 ], [ 36.290537957000083, 22.568182684000078 ], [ 36.313415640000073, 22.491612729000053 ], [ 36.428099623000037, 22.426045101000057 ], [ 36.439822916000082, 22.356442976000039 ], [ 36.56283906200008, 22.296676577000085 ], [ 36.713715040000068, 22.169134833000044 ], [ 36.747569207000083, 22.160956122000073 ], [ 36.756846550000034, 22.176906643000052 ], [ 36.782237175000034, 22.164455471000053 ], [ 36.818207227000073, 22.10883209800005 ], [ 36.895382773000051, 22.066132567000068 ], [ 36.899180535000085, 22.029852606000077 ], [ 36.883636915000068, 21.995713609000063 ], [ 32.524518789710385, 21.995402731550826 ] ] ], [ [ [ 33.955088738000086, 26.790025132000039 ], [ 33.975596550000034, 26.790025132000039 ], [ 34.00359134200005, 26.708197333000044 ], [ 33.98959394600007, 26.720282294000071 ], [ 33.955088738000086, 26.790025132000039 ] ] ], [ [ [ 34.006602410000085, 27.509466864000046 ], [ 34.028493686000047, 27.502020575000074 ], [ 34.051280144000089, 27.448635158000059 ], [ 33.95639082100007, 27.504380601000037 ], [ 33.933767123000052, 27.494696356000077 ], [ 33.913584832000083, 27.52374909100007 ], [ 33.964121941000087, 27.534125067000048 ], [ 34.006602410000085, 27.509466864000046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-MT", "NAME_1": "Matruh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.981244750744622, 28.096700612842994 ], [ 24.974320109000047, 29.238939922 ], [ 24.86383589700003, 29.502903137000104 ], [ 24.870657185000084, 29.638347066000037 ], [ 24.804924764000134, 29.754799907000049 ], [ 24.798206827000087, 29.796425273000082 ], [ 24.811642701000068, 29.890889791000049 ], [ 24.697334432000105, 30.122606913000098 ], [ 24.688652792000141, 30.182758280000044 ], [ 24.772368612000093, 30.331017965000015 ], [ 24.907657511000139, 30.49865631200008 ], [ 24.994887329000051, 30.785098776 ], [ 24.882646118000139, 31.039088440000015 ], [ 24.859495076000144, 31.145955303000036 ], [ 24.848953084000101, 31.348630270000015 ], [ 24.861252075000039, 31.38035959900013 ], [ 25.023722778000064, 31.49440948500002 ], [ 25.060413045000132, 31.579365539000023 ], [ 25.150889519000089, 31.656480210000041 ], [ 25.16179446700005, 31.583563544000071 ], [ 25.190928582000083, 31.531480210000041 ], [ 25.30209394600007, 31.506537177000041 ], [ 25.401866082000083, 31.503159898000035 ], [ 25.824066602000073, 31.614935614000046 ], [ 25.966807488000086, 31.616603908000059 ], [ 26.362152540000068, 31.521918036000045 ], [ 26.753184441000087, 31.477484442000048 ], [ 26.865733269000089, 31.436835028000075 ], [ 26.965505405000044, 31.449652411000045 ], [ 27.05437259200005, 31.408636786000045 ], [ 27.22624759200005, 31.367661851000037 ], [ 27.246104363000086, 31.381293036000045 ], [ 27.320648634000065, 31.381008205000057 ], [ 27.342295769000089, 31.368231512000079 ], [ 27.393565300000091, 31.254706122000073 ], [ 27.446299675000034, 31.223211981000077 ], [ 27.587738477000073, 31.193101304000038 ], [ 27.609873894000089, 31.203192450000074 ], [ 27.660329623000052, 31.180243231000077 ], [ 27.85287519600007, 31.240301825000074 ], [ 27.897146030000044, 31.114406643000052 ], [ 27.926931186000047, 31.099025783000059 ], [ 28.154551629000082, 31.093329169000071 ], [ 28.203868035000085, 31.070502020000049 ], [ 28.318369988000086, 31.059800523000035 ], [ 28.424327019000089, 31.08344147300005 ], [ 28.478526238000086, 31.051825262000079 ], [ 28.527598504000082, 31.050116278000075 ], [ 28.812022332000083, 30.956773179000038 ], [ 28.83570397200009, 30.91079336100006 ], [ 29.028086785000085, 30.827053127000056 ], [ 29.218923373000052, 30.838039455000057 ], [ 29.598069538977995, 31.009505672348894 ], [ 29.624889764051375, 30.337089138153203 ], [ 29.67176028780699, 30.251978054243807 ], [ 30.32861941935073, 29.898201199125992 ], [ 29.55057905408006, 29.482826035892799 ], [ 28.901006300800134, 28.908881741299297 ], [ 28.699158155724263, 28.775091458503994 ], [ 27.831872593245578, 28.566473700001211 ], [ 27.757096795280859, 28.483558864849726 ], [ 27.324771763206286, 27.667898057949003 ], [ 24.981244750744622, 27.666502793968732 ], [ 24.981244750744622, 28.096700612842994 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-SUZ", "NAME_1": "As Suways" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.651774816136211, 29.790019194924447 ], [ 32.604502800000034, 29.824164130000042 ], [ 32.625498894000089, 29.84634023600006 ], [ 32.625336134000065, 29.874253648000035 ], [ 32.571543816000087, 29.928900458000044 ], [ 32.585459832000083, 29.952460028000075 ], [ 32.561615431000064, 29.976385809000078 ], [ 32.57781009200005, 29.983547268000052 ], [ 32.571543816000087, 30.011419989000046 ], [ 32.557465040000068, 29.976467190000051 ], [ 32.571543816000087, 29.942572333000044 ], [ 32.553965691000087, 29.962103583000044 ], [ 32.51343834700009, 29.96157461100006 ], [ 32.476898634000065, 29.932196356000077 ], [ 32.472911004000082, 29.881984768000052 ], [ 32.50953209700009, 29.866848049000055 ], [ 32.392832879000082, 29.734361070000091 ], [ 32.363942905000044, 29.68821849200009 ], [ 32.33765709700009, 29.592474677000041 ], [ 32.387705925000034, 29.525620835000041 ], [ 32.451345248000052, 29.487290757000039 ], [ 32.581228061000047, 29.369126695000091 ], [ 32.632334832000083, 29.243068752000056 ], [ 32.656174473173394, 29.120649241269462 ], [ 32.499649693278684, 29.106104844862671 ], [ 32.145046014062302, 28.967896227029257 ], [ 31.911520216684607, 28.951333930016858 ], [ 31.869145542332888, 28.968206285391716 ], [ 31.936376581414095, 29.872518012096577 ], [ 31.887335646422912, 30.232366847751791 ], [ 32.247623731649867, 30.242960517014239 ], [ 32.334078402696093, 30.237121080473457 ], [ 32.45913537000132, 30.203763943351305 ], [ 32.577371047036195, 30.263269355496334 ], [ 32.798649529652039, 30.254045111792436 ], [ 32.829862094859777, 29.957577420061853 ], [ 32.854821812376713, 29.913755804886478 ], [ 32.651774816136211, 29.790019194924447 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-JS", "NAME_1": "Janub Sina'" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 34.885509286712626, 29.48949557787477 ], [ 34.736582879000082, 29.31126536700009 ], [ 34.745290561000047, 29.29132721600007 ], [ 34.729014519000089, 29.198919989000046 ], [ 34.69499759200005, 29.164496161000045 ], [ 34.674571160000085, 29.106512762000079 ], [ 34.685720248000052, 28.988674221000053 ], [ 34.64031009200005, 28.948797919000071 ], [ 34.647146030000044, 28.862860419000071 ], [ 34.62045332100007, 28.845851955000057 ], [ 34.633474155000044, 28.770697333000044 ], [ 34.624522332000083, 28.735988674000055 ], [ 34.510590040000068, 28.537990627000056 ], [ 34.523610873000052, 28.507310289000088 ], [ 34.469004754000082, 28.45538971600007 ], [ 34.410166863000086, 28.320013739000046 ], [ 34.412933790000068, 28.23314036700009 ], [ 34.455332879000082, 28.174872137000079 ], [ 34.426753309000048, 28.081543500000066 ], [ 34.444026568000083, 28.053540502000089 ], [ 34.43490644600007, 27.975572007000039 ], [ 34.400726759000065, 27.968736070000091 ], [ 34.37086022200009, 27.923651434000078 ], [ 34.331309441000087, 27.914129950000074 ], [ 34.320974155000044, 27.861273505000042 ], [ 34.279470248000052, 27.858343817000048 ], [ 34.25912519600007, 27.801703192000048 ], [ 34.214121941000087, 27.791489976000037 ], [ 34.221202019000089, 27.76984284100007 ], [ 34.257334832000083, 27.769517320000091 ], [ 34.263519727000073, 27.736029364000046 ], [ 34.249847852000073, 27.74282461100006 ], [ 34.249847852000073, 27.728583075000074 ], [ 34.189789259000065, 27.786769924000055 ], [ 34.05445397200009, 27.814520575000074 ], [ 33.987559441000087, 27.886664130000042 ], [ 33.90398196700005, 27.941799221000053 ], [ 33.879405144000089, 27.934637762000079 ], [ 33.865570509000065, 27.961330471000053 ], [ 33.76335696700005, 28.023993231000077 ], [ 33.763926629000082, 28.049017645000049 ], [ 33.715993686000047, 28.075262762000079 ], [ 33.674571160000085, 28.160549221000053 ], [ 33.634776238000086, 28.181301174000055 ], [ 33.618174675000034, 28.233303127000056 ], [ 33.564707879000082, 28.297105210000041 ], [ 33.433929884000065, 28.366400458000044 ], [ 33.369151238000086, 28.447943427000041 ], [ 33.256195509000065, 28.544134833000044 ], [ 33.269786004000082, 28.544134833000044 ], [ 33.262950066000087, 28.577053127000056 ], [ 33.23764082100007, 28.566107489000046 ], [ 33.256195509000065, 28.551581122000073 ], [ 33.228688998000052, 28.569403387000079 ], [ 33.194834832000083, 28.675116278000075 ], [ 33.22828209700009, 28.763861395000049 ], [ 33.174571160000085, 28.836981512000079 ], [ 33.165863477000073, 28.976060289000088 ], [ 33.177907748000052, 28.989569403000075 ], [ 33.145030144000089, 29.031724351000037 ], [ 33.078623894000089, 29.064886786000045 ], [ 33.061208530000044, 29.101385809000078 ], [ 32.957855665000068, 29.202093817000048 ], [ 32.885590040000068, 29.243068752000056 ], [ 32.868337436000047, 29.297430731000077 ], [ 32.839366082000083, 29.316229559000078 ], [ 32.817393425000034, 29.359767971000053 ], [ 32.817230665000068, 29.414048570000091 ], [ 32.74154707100007, 29.455959377000056 ], [ 32.734711134000065, 29.48383209800005 ], [ 32.728526238000086, 29.455959377000056 ], [ 32.715017123000052, 29.455959377000056 ], [ 32.724131707000083, 29.539536851000037 ], [ 32.712412957000083, 29.580471096000053 ], [ 32.680837436000047, 29.59992096600007 ], [ 32.69312584700009, 29.722845770000049 ], [ 32.651774816136211, 29.790019194924447 ], [ 32.854821812376713, 29.913755804886478 ], [ 33.130257196112666, 29.925202134870631 ], [ 33.768306105042711, 29.82704275232112 ], [ 34.024362827182699, 29.707205104831701 ], [ 34.468160027663146, 29.54646556223588 ], [ 34.885509286712626, 29.48949557787477 ] ] ], [ [ [ 34.585134311000047, 27.955145575000074 ], [ 34.62045332100007, 27.920355536000045 ], [ 34.518077019000089, 27.93040599200009 ], [ 34.496348504000082, 27.955145575000074 ], [ 34.489512566000087, 27.996039130000042 ], [ 34.51734459700009, 28.016546942000048 ], [ 34.544200066000087, 27.996039130000042 ], [ 34.506846550000034, 27.986232815000051 ], [ 34.511892123000052, 27.967474677000041 ], [ 34.570567254000082, 27.974107164000088 ], [ 34.585134311000047, 27.955145575000074 ] ] ], [ [ [ 34.731882011000039, 27.957141114000081 ], [ 34.732161965000046, 27.918943023000054 ], [ 34.704694776000053, 27.908368047000067 ], [ 34.661785763000069, 27.930218099000058 ], [ 34.681773328000077, 27.958703245000038 ], [ 34.731882011000039, 27.957141114000081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-PTS", "NAME_1": "Bur Sa`id" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.256602410000085, 31.288804429000038 ], [ 32.33139082100007, 31.271429755000042 ], [ 32.344248894000089, 31.241888739000046 ], [ 32.389903191000087, 31.226507880000042 ], [ 32.50953209700009, 31.106919664000088 ], [ 32.599678244755182, 31.061515647129397 ], [ 32.602072381235359, 30.973742784002241 ], [ 32.311237419571228, 31.118772691206686 ], [ 32.289998406900963, 31.113785916286986 ], [ 32.295095248000052, 31.213364976000037 ], [ 32.270518425000034, 31.257554429000038 ], [ 32.28296959700009, 31.265285549000055 ], [ 32.256602410000085, 31.288804429000038 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-DK", "NAME_1": "Ad Daqahliyah" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.256460401695868, 31.276218775179043 ], [ 32.214121941000087, 31.278265692000048 ], [ 32.207041863000086, 31.295070705000057 ], [ 32.256602410000085, 31.288804429000038 ], [ 32.256460401695868, 31.276218775179043 ] ] ], [ [ [ 31.794932488000086, 31.277696031000062 ], [ 31.828623894000089, 31.274115302000041 ], [ 31.834157748000052, 31.251613674000055 ], [ 31.885752800000034, 31.223618882000039 ], [ 31.906260613000086, 31.251613674000055 ], [ 31.906260613000086, 31.223618882000039 ], [ 31.892588738000086, 31.216782945000034 ], [ 31.906260613000086, 31.216782945000034 ], [ 31.899424675000034, 31.203192450000074 ], [ 31.926605665000068, 31.210638739000046 ], [ 31.926442905000044, 31.186997789000088 ], [ 31.986582879000082, 31.230292059000078 ], [ 32.009287957000083, 31.210638739000046 ], [ 32.037119988000086, 31.216782945000034 ], [ 32.03687584700009, 31.150295315000051 ], [ 32.016123894000089, 31.128078518000052 ], [ 32.043955925000034, 31.141750393000052 ], [ 32.052336731754735, 31.128773884407224 ], [ 31.948158807283107, 31.084071966947704 ], [ 31.783517693586646, 31.065856025335279 ], [ 31.668227573243882, 30.908552964947376 ], [ 31.620271843870455, 30.884394233107344 ], [ 31.622287224575757, 30.848194892080585 ], [ 31.57572676008192, 30.805380968157124 ], [ 31.420852492448546, 30.795743313303262 ], [ 31.367315708053468, 30.771687934250735 ], [ 31.357548861990381, 30.726238511997735 ], [ 31.380699904377082, 30.616710312930593 ], [ 31.352897983854859, 30.573767197797906 ], [ 31.295795526042696, 30.570330714690726 ], [ 31.253730910053434, 30.588391629370165 ], [ 31.270422398275059, 30.661022854521093 ], [ 31.213888381243805, 30.837032782936546 ], [ 31.254764438827749, 30.853698431837131 ], [ 31.234817335551554, 30.881784573199468 ], [ 31.255281202765275, 30.888631700092844 ], [ 31.241793653654156, 30.899251206877693 ], [ 31.262154168080372, 30.922763984470294 ], [ 31.255281202765275, 30.963717556420079 ], [ 31.296880730761075, 30.984207262055463 ], [ 31.305717400837352, 31.017021795919106 ], [ 31.301531609795916, 31.032162991428891 ], [ 31.247529738306753, 31.017771103853363 ], [ 31.218384229748381, 31.031077785811135 ], [ 31.23745283388115, 31.114741929796196 ], [ 31.299516229090671, 31.130968329125096 ], [ 31.273471306855299, 31.162155055911057 ], [ 31.282463005663146, 31.349017035108091 ], [ 31.270370721431618, 31.419064438772807 ], [ 31.245049268708783, 31.45534129506467 ], [ 31.251715529348189, 31.478518174973772 ], [ 31.349906907977413, 31.529664195346299 ], [ 31.523692254000082, 31.449652411000045 ], [ 31.571611637766864, 31.443751973774567 ], [ 31.50033084539217, 31.364959215395459 ], [ 31.559603712641206, 31.35131663755277 ], [ 31.564254591676047, 31.325814316777269 ], [ 31.633914421713143, 31.29059682948008 ], [ 31.650192498784747, 31.299640204231991 ], [ 31.651122673872294, 31.325969347307534 ], [ 31.682025180717517, 31.333384914981821 ], [ 31.690500115587838, 31.31062144622274 ], [ 31.689776646075359, 31.28656606717027 ], [ 31.666212193437957, 31.29268972455111 ], [ 31.659390903167605, 31.278401191561727 ], [ 31.67628909696424, 31.258970852223058 ], [ 31.625646193317152, 31.243183702465899 ], [ 31.632054070638844, 31.216957913077181 ], [ 31.596759068076494, 31.190861313998425 ], [ 31.610039910713283, 31.164790554240653 ], [ 31.779641960907725, 31.246025906370448 ], [ 31.794932488000086, 31.277696031000062 ] ] ], [ [ [ 32.093760613000086, 31.365668036000045 ], [ 32.129161004000082, 31.337388414000088 ], [ 32.199554884000065, 31.295070705000057 ], [ 32.07007897200009, 31.353989976000037 ], [ 32.090586785000085, 31.347154039000088 ], [ 32.093760613000086, 31.365668036000045 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-SHR", "NAME_1": "Ash Sharqiyah" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.141840340467233, 31.087357671315797 ], [ 32.166270379000082, 31.114406643000052 ], [ 32.179942254000082, 31.106919664000088 ], [ 32.183848504000082, 31.124945380000042 ], [ 32.21851647200009, 31.105210679000038 ], [ 32.272227410000085, 31.118882554000038 ], [ 32.280528191000087, 31.154974677000041 ], [ 32.262461785000085, 31.169623114000046 ], [ 32.288138054927288, 31.169028022125474 ], [ 32.289998406900963, 31.113785916286986 ], [ 32.141840340467233, 31.087357671315797 ] ] ], [ [ [ 32.052336731754735, 31.128773884407224 ], [ 32.07007897200009, 31.106919664000088 ], [ 32.043955925000034, 31.086493231000077 ], [ 32.08375084700009, 31.084418036000045 ], [ 32.08375084700009, 31.065985419000071 ], [ 32.106455925000034, 31.05337148600006 ], [ 32.132090691000087, 31.065985419000071 ], [ 32.107432488000086, 31.072821356000077 ], [ 32.097992384000065, 31.093329169000071 ], [ 32.142578794176018, 31.080269188172451 ], [ 32.192226597079753, 31.035961208842707 ], [ 32.200443150430999, 30.981416734094978 ], [ 32.117915887108495, 30.833389594254356 ], [ 32.130008172239343, 30.742103176120679 ], [ 32.119621208551905, 30.716058254784627 ], [ 32.032081332787243, 30.601775823895139 ], [ 31.974048699887589, 30.559607856017749 ], [ 31.877258741997309, 30.547980657980986 ], [ 31.763777296784781, 30.557204902584147 ], [ 31.809717644553643, 30.479225165508979 ], [ 31.843100620097516, 30.339027005391983 ], [ 31.593865187328504, 30.190431422971756 ], [ 31.385660841774381, 30.280451769233764 ], [ 31.342666049798368, 30.359206650866213 ], [ 31.27254113086849, 30.436979682366427 ], [ 31.294090203699909, 30.528240261179064 ], [ 31.37604902534224, 30.596582343400428 ], [ 31.357548861990381, 30.726238511997735 ], [ 31.367315708053468, 30.771687934250735 ], [ 31.420852492448546, 30.795743313303262 ], [ 31.57572676008192, 30.805380968157124 ], [ 31.622287224575757, 30.848194892080585 ], [ 31.620271843870455, 30.884394233107344 ], [ 31.668227573243882, 30.908552964947376 ], [ 31.783517693586646, 31.065856025335279 ], [ 31.948158807283107, 31.084071966947704 ], [ 32.052336731754735, 31.128773884407224 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-IS", "NAME_1": "Al Isma`iliyah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.142578794176018, 31.080269188172451 ], [ 32.311237419571228, 31.118772691206686 ], [ 32.602072381235359, 30.973742784002241 ], [ 32.651991815369968, 30.50410736686149 ], [ 32.745732862881312, 30.372900906451662 ], [ 32.798649529652039, 30.254045111792436 ], [ 32.577371047036195, 30.263269355496334 ], [ 32.45913537000132, 30.203763943351305 ], [ 32.334078402696093, 30.237121080473457 ], [ 32.247623731649867, 30.242960517014239 ], [ 31.887335646422912, 30.232366847751791 ], [ 31.800415887383281, 30.504365750179204 ], [ 31.763777296784781, 30.557204902584147 ], [ 31.877258741997309, 30.547980657980986 ], [ 31.974048699887589, 30.559607856017749 ], [ 32.098640578300035, 30.677275092271657 ], [ 32.130008172239343, 30.742103176120679 ], [ 32.117915887108495, 30.833389594254356 ], [ 32.201838412612631, 30.993819078487661 ], [ 32.192226597079753, 31.035961208842707 ], [ 32.142578794176018, 31.080269188172451 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-DT", "NAME_1": "Dumyat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.082916688798996, 31.359007045313227 ], [ 31.994965040000068, 31.394964911000045 ], [ 31.968272332000083, 31.436509507000039 ], [ 31.99350019600007, 31.43781159100007 ], [ 31.917979363000086, 31.523993231000077 ], [ 31.865244988000086, 31.525336005000042 ], [ 31.844737175000034, 31.497992255000042 ], [ 31.865244988000086, 31.497992255000042 ], [ 31.878916863000086, 31.42914459800005 ], [ 31.841644727000073, 31.464504299000055 ], [ 31.824229363000086, 31.443345445000034 ], [ 31.858409050000034, 31.443345445000034 ], [ 31.85482832100007, 31.423163153000075 ], [ 31.878916863000086, 31.416083075000074 ], [ 31.830414259000065, 31.408636786000045 ], [ 31.844737175000034, 31.394964911000045 ], [ 31.82789147200009, 31.368353583000044 ], [ 31.858409050000034, 31.353989976000037 ], [ 31.797211134000065, 31.359523830000057 ], [ 31.795909050000034, 31.310980536000045 ], [ 31.769053582000083, 31.298773505000042 ], [ 31.77320397200009, 31.275864976000037 ], [ 31.794932488000086, 31.277696031000062 ], [ 31.779641960907725, 31.246025906370448 ], [ 31.610039910713283, 31.164790554240653 ], [ 31.596759068076494, 31.190861313998425 ], [ 31.632054070638844, 31.216957913077181 ], [ 31.625646193317152, 31.243183702465899 ], [ 31.67628909696424, 31.258970852223058 ], [ 31.659390903167605, 31.278401191561727 ], [ 31.666212193437957, 31.29268972455111 ], [ 31.693135613917434, 31.291087754995885 ], [ 31.686210971758896, 31.325788479254868 ], [ 31.651122673872294, 31.325969347307534 ], [ 31.650192498784747, 31.299640204231991 ], [ 31.633914421713143, 31.29059682948008 ], [ 31.564254591676047, 31.325814316777269 ], [ 31.559603712641206, 31.35131663755277 ], [ 31.499245639774415, 31.37054026951779 ], [ 31.571611637766864, 31.443751973774567 ], [ 31.748301629000082, 31.481594143000052 ], [ 31.87435957100007, 31.535589911000045 ], [ 31.912933790000068, 31.534898179000038 ], [ 31.944834832000083, 31.52094147300005 ], [ 32.009043816000087, 31.417181708000044 ], [ 32.056976759000065, 31.375148830000057 ], [ 32.093760613000086, 31.365668036000045 ], [ 32.082916688798996, 31.359007045313227 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-KFS", "NAME_1": "Kafr ash Shaykh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.398248833996501, 31.443581717556 ], [ 30.370616082000083, 31.461615302000041 ], [ 30.362152540000068, 31.508734442000048 ], [ 30.45639082100007, 31.462713934000078 ], [ 30.535817905000044, 31.463853257000039 ], [ 30.973887566000087, 31.586737372000073 ], [ 30.628103061000047, 31.43431224200009 ], [ 30.557871941000087, 31.42218659100007 ], [ 30.54265384200005, 31.394964911000045 ], [ 30.62671959700009, 31.388657945000034 ], [ 30.675059441000087, 31.421576239000046 ], [ 30.734385613000086, 31.38812897300005 ], [ 30.756195509000065, 31.423000393000052 ], [ 30.79851321700005, 31.446478583000044 ], [ 30.892425977000073, 31.419094143000052 ], [ 30.939707879000082, 31.443345445000034 ], [ 30.939707879000082, 31.457017320000034 ], [ 30.980723504000082, 31.436509507000039 ], [ 31.029144727000073, 31.518500067000048 ], [ 31.080739780000044, 31.514227606000077 ], [ 31.11109459700009, 31.491156317000048 ], [ 31.129242384000065, 31.504461981000077 ], [ 31.11109459700009, 31.512274481000077 ], [ 31.130381707000083, 31.516994533000059 ], [ 31.070811394000089, 31.565375067000048 ], [ 30.978037957000083, 31.58429596600007 ], [ 31.09742272200009, 31.607896226000037 ], [ 31.349906907977413, 31.529664195346299 ], [ 31.276881952440135, 31.49601064707366 ], [ 31.245979444695593, 31.463893744300833 ], [ 31.282463005663146, 31.349017035108091 ], [ 31.273471306855299, 31.162155055911057 ], [ 31.299516229090671, 31.130968329125096 ], [ 31.248459914293562, 31.109858506764681 ], [ 31.201641065582692, 31.133087063517166 ], [ 31.157251011424989, 31.11058197717648 ], [ 31.070796340378763, 31.121227322382992 ], [ 31.04010053910855, 31.025677598842094 ], [ 30.849052768870195, 30.982501938813414 ], [ 30.780168084289642, 31.004464422794854 ], [ 30.763631625698963, 30.983612982852833 ], [ 30.727716506411639, 31.018959662258567 ], [ 30.727716506411639, 31.052471829011665 ], [ 30.699346144209187, 31.092159329089725 ], [ 30.652010531560791, 31.114561061743586 ], [ 30.570155063605284, 31.199594631287198 ], [ 30.525403273342363, 31.196494045863517 ], [ 30.514809604979291, 31.238067735437596 ], [ 30.494345736866251, 31.238067735437596 ], [ 30.520235630370053, 31.289459947018941 ], [ 30.518220248765431, 31.328139756744349 ], [ 30.483338657353158, 31.354572251708021 ], [ 30.473830193708466, 31.339870307568617 ], [ 30.458275587947981, 31.34800934475544 ], [ 30.448560417829015, 31.375087795765126 ], [ 30.426081169910049, 31.384854640928893 ], [ 30.424840935560724, 31.429089667254345 ], [ 30.398248833996501, 31.443581717556 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-BH", "NAME_1": "Al Buhayrah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.098480665000068, 31.284654039000088 ], [ 30.172618035000085, 31.271429755000042 ], [ 30.140147332000083, 31.237250067000048 ], [ 30.165212436000047, 31.216782945000034 ], [ 30.20679772200009, 31.237941799000055 ], [ 30.201670769000089, 31.226507880000042 ], [ 30.22046959700009, 31.220200914000088 ], [ 30.26140384200005, 31.244126695000034 ], [ 30.268809441000087, 31.265285549000055 ], [ 30.28874759200005, 31.237941799000055 ], [ 30.302989129000082, 31.271429755000042 ], [ 30.287608269000089, 31.278225002000056 ], [ 30.240896030000044, 31.265285549000055 ], [ 30.254567905000044, 31.278265692000048 ], [ 30.17945397200009, 31.278265692000048 ], [ 30.25171959700009, 31.303412177000041 ], [ 30.312836134000065, 31.350572007000039 ], [ 30.348399285000085, 31.42133209800005 ], [ 30.350759311000047, 31.497992255000042 ], [ 30.378428582000083, 31.446682033000059 ], [ 30.424840935560724, 31.429089667254345 ], [ 30.426081169910049, 31.384854640928893 ], [ 30.448560417829015, 31.375087795765126 ], [ 30.458275587947981, 31.34800934475544 ], [ 30.473830193708466, 31.339870307568617 ], [ 30.483338657353158, 31.354572251708021 ], [ 30.518220248765431, 31.328139756744349 ], [ 30.520235630370053, 31.289459947018941 ], [ 30.494345736866251, 31.238067735437596 ], [ 30.514809604979291, 31.238067735437596 ], [ 30.525403273342363, 31.196494045863517 ], [ 30.570155063605284, 31.199594631287198 ], [ 30.723220656108367, 31.062264513496473 ], [ 30.727716506411639, 31.018959662258567 ], [ 30.763631625698963, 30.983612982852833 ], [ 30.75164269425494, 30.976765855060137 ], [ 30.782338494625833, 30.922763984470294 ], [ 30.757120395589766, 30.885970364240904 ], [ 30.79381066303165, 30.868297024088349 ], [ 30.761874627412112, 30.827162584085954 ], [ 30.816496615626306, 30.827162584085954 ], [ 30.753244662910845, 30.775537828507936 ], [ 30.768540887152199, 30.760086575535013 ], [ 30.792415399051379, 30.763626410530378 ], [ 30.774431999637045, 30.716445828412247 ], [ 30.793655633400761, 30.694586697218256 ], [ 30.804662712913853, 30.613454697875966 ], [ 30.837580601363641, 30.58697052696823 ], [ 30.823938022621633, 30.552218125865807 ], [ 30.851223179206329, 30.545991115697404 ], [ 30.830759311992608, 30.497596136752293 ], [ 30.851223179206329, 30.453206081695271 ], [ 30.844401889835353, 30.401374620542299 ], [ 30.879490186822636, 30.372900906451662 ], [ 30.833239779791995, 30.361687120464239 ], [ 30.833084751060369, 30.333807685576232 ], [ 30.368978712997205, 29.970780748332857 ], [ 30.32861941935073, 29.898201199125992 ], [ 29.67176028780699, 30.251978054243807 ], [ 29.624889764051375, 30.337089138153203 ], [ 29.684472690562188, 30.462197781402494 ], [ 29.728707716887584, 30.502789618146323 ], [ 29.928437126672065, 30.590923774012936 ], [ 30.012669712337356, 30.698307400266287 ], [ 29.984764439027629, 30.760525825106697 ], [ 29.867148878717785, 30.916743678977582 ], [ 29.864203322025674, 30.939662177367552 ], [ 29.90983361233134, 31.005110378840868 ], [ 29.86761396671119, 31.075571194554982 ], [ 30.011429477987974, 31.148693346120979 ], [ 30.098480665000068, 31.284654039000088 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-ALX", "NAME_1": "Al Iskandariyah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.598069538977995, 31.009505672348894 ], [ 29.765961134000065, 31.121568101000037 ], [ 29.781504754000082, 31.147935289000088 ], [ 29.838389519000089, 31.154120184000078 ], [ 29.884613477000073, 31.189520575000074 ], [ 29.863536004000082, 31.196356512000079 ], [ 29.876963738000086, 31.213568427000041 ], [ 29.89820397200009, 31.203192450000074 ], [ 30.069590691000087, 31.333482164000088 ], [ 30.066661004000082, 31.304877020000049 ], [ 30.098480665000068, 31.284654039000088 ], [ 30.038456252154276, 31.181275335987948 ], [ 30.000112339213047, 31.140786852031567 ], [ 29.867148878717785, 31.071566269767516 ], [ 29.90983361233134, 31.005110378840868 ], [ 29.864203322025674, 30.939662177367552 ], [ 29.867148878717785, 30.916743678977582 ], [ 29.984764439027629, 30.760525825106697 ], [ 30.012669712337356, 30.698307400266287 ], [ 29.928437126672065, 30.590923774012936 ], [ 29.728707716887584, 30.502789618146323 ], [ 29.684472690562188, 30.462197781402494 ], [ 29.624889764051375, 30.337089138153203 ], [ 29.598069538977995, 31.009505672348894 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-C", "NAME_1": "Al Qahirah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.887335646422912, 30.232366847751791 ], [ 31.936376581414095, 29.872518012096577 ], [ 31.928935174418768, 29.78316946120168 ], [ 31.291609735001259, 29.759863390083353 ], [ 31.288819207040774, 29.88507538522083 ], [ 31.221174757708866, 30.007858588503041 ], [ 31.237607862612776, 30.114777126762988 ], [ 31.306182488830757, 30.137204697838513 ], [ 31.326232943995137, 30.164593207210714 ], [ 31.593865187328504, 30.190431422971756 ], [ 31.843100620097516, 30.339027005391983 ], [ 31.887335646422912, 30.232366847751791 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-GZ", "NAME_1": "Al Jizah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.749223260045369, 28.759304307847515 ], [ 29.587062615946934, 28.384443467891685 ], [ 29.459938591992398, 28.236054591945845 ], [ 29.30852664588798, 28.136448269472055 ], [ 28.846125929268226, 27.920828355344327 ], [ 28.774864128776528, 27.873156846811014 ], [ 28.653217807955457, 27.667898057949003 ], [ 27.324771763206286, 27.667898057949003 ], [ 27.757096795280859, 28.483558864849726 ], [ 27.831872593245578, 28.566473700001211 ], [ 28.699158155724263, 28.775091458503994 ], [ 28.901006300800134, 28.908881741299297 ], [ 29.55057905408006, 29.482826035892799 ], [ 30.32861941935073, 29.898201199125992 ], [ 30.368978712997205, 29.970780748332857 ], [ 30.833084751060369, 30.333807685576232 ], [ 30.909565871367874, 30.339931342057753 ], [ 30.926980829101979, 30.291820583952756 ], [ 30.969923944234608, 30.273449611810122 ], [ 30.991214633748314, 30.215365302067028 ], [ 31.067850782787389, 30.221618149757774 ], [ 31.166552768595352, 30.156014920452208 ], [ 31.228616163804872, 30.141157944883219 ], [ 31.237607862612776, 30.114777126762988 ], [ 31.221174757708866, 30.007858588503041 ], [ 31.288819207040774, 29.88507538522083 ], [ 31.291609735001259, 29.759863390083353 ], [ 31.928935174418768, 29.78316946120168 ], [ 31.869145542332888, 28.968206285391716 ], [ 31.501105990848771, 29.065926419268806 ], [ 31.432996454422835, 29.103133449748896 ], [ 31.255281202765275, 29.298754583756988 ], [ 31.255901320389626, 29.339346422299514 ], [ 31.234817335551554, 29.371540839438183 ], [ 31.172598910711145, 29.397921658457733 ], [ 31.101853875056293, 29.400117906316325 ], [ 31.03048872177709, 29.680514228348954 ], [ 30.955816278398515, 29.737074082902609 ], [ 30.746009963289168, 29.714284775721808 ], [ 30.536255324123886, 29.630362250217672 ], [ 30.281593865964112, 29.485048123072374 ], [ 29.814852328672032, 29.088431504710172 ], [ 29.749223260045369, 28.759304307847515 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-MN", "NAME_1": "Al Minya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.653217807955457, 27.667898057949003 ], [ 28.774864128776528, 27.873156846811014 ], [ 28.846125929268226, 27.920828355344327 ], [ 29.30852664588798, 28.136448269472055 ], [ 29.459938591992398, 28.236054591945845 ], [ 29.587062615946934, 28.384443467891685 ], [ 29.749223260045369, 28.759304307847515 ], [ 30.768695915883768, 28.780956733466439 ], [ 30.944189081261072, 28.71566355982543 ], [ 30.907240431400794, 28.450951036561094 ], [ 30.8526184431866, 28.365943305439203 ], [ 30.815411410907871, 28.25871470791742 ], [ 30.833394810322204, 28.148049628187778 ], [ 30.907395461031683, 28.002683824199096 ], [ 30.920934686086866, 27.881037503378082 ], [ 30.95473107278076, 27.785720322934537 ], [ 30.959226922184712, 27.715724596113205 ], [ 30.941243523669641, 27.620149034150586 ], [ 30.83448001504064, 27.608702704166433 ], [ 30.765440300829198, 27.630923570566324 ], [ 30.698415969121641, 27.623611354780166 ], [ 30.671234165324449, 27.634024155990005 ], [ 30.687822299859249, 27.667639675530609 ], [ 28.653217807955457, 27.667898057949003 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-FYM", "NAME_1": "Al Fayyum" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.101853875056293, 29.400117906316325 ], [ 30.864297316268107, 29.120625921848784 ], [ 30.780168084289642, 29.08238536169506 ], [ 30.363707717237332, 28.979755968163374 ], [ 30.316372104588936, 28.976241969791033 ], [ 30.24976118313208, 29.018125719526324 ], [ 29.814852328672032, 29.088431504710172 ], [ 30.35497439994856, 29.536440335553038 ], [ 30.536255324123886, 29.630362250217672 ], [ 30.746009963289168, 29.714284775721808 ], [ 30.955816278398515, 29.737074082902609 ], [ 31.002376742892352, 29.705396429701466 ], [ 31.03048872177709, 29.680514228348954 ], [ 31.101853875056293, 29.400117906316325 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-BNS", "NAME_1": "Bani Suwayf" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.316372104588936, 28.976241969791033 ], [ 30.780168084289642, 29.08238536169506 ], [ 30.864297316268107, 29.120625921848784 ], [ 31.101853875056293, 29.400117906316325 ], [ 31.202364535994548, 29.389885973159096 ], [ 31.255901320389626, 29.339346422299514 ], [ 31.25326582206003, 29.202713934700284 ], [ 31.216988966667486, 29.12207286177312 ], [ 30.9929199560911, 28.846043198834536 ], [ 30.944189081261072, 28.71566355982543 ], [ 30.768695915883768, 28.780956733466439 ], [ 29.749223260045369, 28.759304307847515 ], [ 29.814852328672032, 29.088431504710172 ], [ 30.24976118313208, 29.018125719526324 ], [ 30.316372104588936, 28.976241969791033 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-MNF", "NAME_1": "Al Minufiyah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.029351841114533, 30.209577542369686 ], [ 30.97881229025495, 30.22580394079921 ], [ 30.969923944234608, 30.273449611810122 ], [ 30.926980829101979, 30.291820583952756 ], [ 30.917007276564561, 30.336184801487377 ], [ 30.882745802776583, 30.345822455441919 ], [ 30.851223179206329, 30.326262925793344 ], [ 30.826573520951229, 30.34796702735639 ], [ 30.879490186822636, 30.372900906451662 ], [ 30.844401889835353, 30.401374620542299 ], [ 30.851223179206329, 30.453206081695271 ], [ 30.830759311992608, 30.497596136752293 ], [ 30.851223179206329, 30.545991115697404 ], [ 30.823938022621633, 30.552218125865807 ], [ 30.837580601363641, 30.58697052696823 ], [ 30.817168410094041, 30.595652167413562 ], [ 30.798306512435602, 30.637665107458702 ], [ 30.796084426155346, 30.680220648963768 ], [ 30.822077670647957, 30.694379990743982 ], [ 30.927600945826953, 30.716730048353043 ], [ 30.996485630407506, 30.679574692917697 ], [ 31.060564406322271, 30.68812714305318 ], [ 31.090330030706355, 30.646243394217265 ], [ 31.179575229713066, 30.630559597247611 ], [ 31.262154168080372, 30.552218125865807 ], [ 31.227996047079898, 30.559659531961813 ], [ 31.227996047079898, 30.518060003966013 ], [ 31.13606367379947, 30.446384793223615 ], [ 31.125211623017947, 30.402769884522513 ], [ 31.101285435174645, 30.416360785521817 ], [ 31.106711459666087, 30.382486884462139 ], [ 31.056068556019, 30.374683743160176 ], [ 31.103869255761538, 30.332489935961746 ], [ 31.111310662756864, 30.22696666078275 ], [ 31.145417107813273, 30.175445257992237 ], [ 31.067850782787389, 30.221618149757774 ], [ 31.029351841114533, 30.209577542369686 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-KB", "NAME_1": "Al Qalyubiyah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.593865187328504, 30.190431422971756 ], [ 31.326232943995137, 30.164593207210714 ], [ 31.306182488830757, 30.137204697838513 ], [ 31.237607862612776, 30.114777126762988 ], [ 31.228616163804872, 30.141157944883219 ], [ 31.166552768595352, 30.156014920452208 ], [ 31.115496453798301, 30.215494493276196 ], [ 31.103869255761538, 30.332489935961746 ], [ 31.056068556019, 30.374683743160176 ], [ 31.106711459666087, 30.382486884462139 ], [ 31.101285435174645, 30.416360785521817 ], [ 31.125211623017947, 30.402769884522513 ], [ 31.13606367379947, 30.446384793223615 ], [ 31.227996047079898, 30.518060003966013 ], [ 31.227996047079898, 30.559659531961813 ], [ 31.262154168080372, 30.552218125865807 ], [ 31.253730910053434, 30.588391629370165 ], [ 31.295795526042696, 30.570330714690726 ], [ 31.352897983854859, 30.573767197797906 ], [ 31.294090203699909, 30.528240261179064 ], [ 31.27254113086849, 30.436979682366427 ], [ 31.342666049798368, 30.359206650866213 ], [ 31.385660841774381, 30.280451769233764 ], [ 31.593865187328504, 30.190431422971756 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-GH", "NAME_1": "Al Gharbiyah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.996485630407506, 30.679574692917697 ], [ 30.927600945826953, 30.716730048353043 ], [ 30.796084426155346, 30.680220648963768 ], [ 30.774431999637045, 30.716445828412247 ], [ 30.792415399051379, 30.763626410530378 ], [ 30.768540887152199, 30.760086575535013 ], [ 30.753244662910845, 30.775537828507936 ], [ 30.816496615626306, 30.827162584085954 ], [ 30.761874627412112, 30.827162584085954 ], [ 30.79381066303165, 30.868297024088349 ], [ 30.757120395589766, 30.885970364240904 ], [ 30.782338494625833, 30.922763984470294 ], [ 30.75164269425494, 30.976765855060137 ], [ 30.780168084289642, 31.004464422794854 ], [ 30.849052768870195, 30.982501938813414 ], [ 30.908480665750119, 30.99015005138375 ], [ 30.951785516088648, 31.015238959210592 ], [ 31.023770786092882, 31.019037177523728 ], [ 31.048937209184828, 31.034281724921641 ], [ 31.070796340378763, 31.121227322382992 ], [ 31.157251011424989, 31.11058197717648 ], [ 31.190117222132073, 31.132441108370415 ], [ 31.221949904064786, 31.129805610040876 ], [ 31.248459914293562, 31.109858506764681 ], [ 31.236212598632505, 31.112804063456736 ], [ 31.218384229748381, 31.031077785811135 ], [ 31.247529738306753, 31.017771103853363 ], [ 31.305407341575517, 31.029708360252584 ], [ 31.296880730761075, 30.984207262055463 ], [ 31.255281202765275, 30.963717556420079 ], [ 31.262154168080372, 30.922763984470294 ], [ 31.241793653654156, 30.899251206877693 ], [ 31.255281202765275, 30.888631700092844 ], [ 31.234817335551554, 30.881784573199468 ], [ 31.254764438827749, 30.853698431837131 ], [ 31.213888381243805, 30.837032782936546 ], [ 31.270422398275059, 30.661022854521093 ], [ 31.251198765410663, 30.565085558251894 ], [ 31.17213382271774, 30.634952093864001 ], [ 31.090330030706355, 30.646243394217265 ], [ 31.060564406322271, 30.68812714305318 ], [ 30.996485630407506, 30.679574692917697 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-SHG", "NAME_1": "Suhaj" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.269999626781328, 26.131195989903006 ], [ 32.211191846626377, 26.158817044171258 ], [ 32.137139519972834, 26.236796780347106 ], [ 32.085463087551432, 26.194964708354576 ], [ 32.013012729553793, 26.184060980729669 ], [ 31.952344598324544, 26.139851792825937 ], [ 31.533972201555855, 26.6105982531069 ], [ 31.438887566907681, 26.683462022254503 ], [ 31.299981317084075, 26.83738027637861 ], [ 31.393102247870445, 26.882467963425768 ], [ 31.461986931551621, 26.940113022697801 ], [ 31.552782424169493, 26.837225246747721 ], [ 31.61903161042045, 26.833194485337231 ], [ 31.786928338272162, 26.728420518092435 ], [ 31.831008334966668, 26.68997325326302 ], [ 31.895862258136674, 26.589152533062929 ], [ 31.919426710774076, 26.499416409439732 ], [ 31.958855829333061, 26.439084174095342 ], [ 32.032701450411594, 26.383919583521958 ], [ 32.155277948118794, 26.346841742452455 ], [ 32.307516717422573, 26.158196926546907 ], [ 32.269999626781328, 26.131195989903006 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-KN", "NAME_1": "Qina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.137139519972834, 26.236796780347106 ], [ 32.211191846626377, 26.158817044171258 ], [ 32.269999626781328, 26.131195989903006 ], [ 32.539802279551566, 26.251653754117456 ], [ 32.684444614027711, 26.258940131481836 ], [ 32.806400995009881, 26.213516546751237 ], [ 32.894405958767948, 26.114013577064895 ], [ 32.929907667804628, 25.97128327140581 ], [ 32.915024854713238, 25.858525295705817 ], [ 32.845209995045195, 25.739540309837423 ], [ 32.660570103027794, 25.571876125982385 ], [ 32.623001336442485, 25.499012355935463 ], [ 32.640209587702316, 25.356566270217172 ], [ 32.664135777344256, 25.307163600919409 ], [ 32.704753451610486, 25.269879055174215 ], [ 32.693746372097394, 25.179212755564208 ], [ 32.653852166444324, 25.14570058791179 ], [ 32.5589225596284, 25.211691393542935 ], [ 32.519338413237165, 25.260293077163738 ], [ 32.443012322560605, 25.597120063440173 ], [ 32.494068638257033, 25.664816188716145 ], [ 32.65839969269166, 25.79263784376144 ], [ 32.687080112357307, 25.894156195951666 ], [ 32.748058302848392, 26.001152249476718 ], [ 32.742322219095115, 26.065980333325683 ], [ 32.696071812064474, 26.10584870055709 ], [ 32.618660515770159, 26.104117539792583 ], [ 32.361053500918331, 26.000144558224747 ], [ 32.224059279012522, 25.970094713000606 ], [ 32.162926059789811, 25.978724677501873 ], [ 32.110784540274267, 26.005415553984619 ], [ 31.952344598324544, 26.139851792825937 ], [ 32.013012729553793, 26.184060980729669 ], [ 32.085463087551432, 26.194964708354576 ], [ 32.137139519972834, 26.236796780347106 ] ], [ [ 32.651394433506255, 25.683120587644964 ], [ 32.66937040901712, 25.72110755606883 ], [ 32.649683683754972, 25.729934598902616 ], [ 32.624912353522291, 25.687206197807768 ], [ 32.651394433506255, 25.683120587644964 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-AST", "NAME_1": "Asyut" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.671234165324449, 27.634024155990005 ], [ 30.765440300829198, 27.630923570566324 ], [ 30.83448001504064, 27.608702704166433 ], [ 30.941243523669641, 27.620149034150586 ], [ 30.939228142964396, 27.502481797896621 ], [ 30.965583123562283, 27.436465156541715 ], [ 31.071881545097199, 27.37318736450527 ], [ 31.23667768662591, 27.317170112310805 ], [ 31.288354119946632, 27.283373724717592 ], [ 31.340650669093066, 27.19048533792801 ], [ 31.489013705717923, 27.067805488332624 ], [ 31.61903161042045, 26.833194485337231 ], [ 31.552782424169493, 26.837225246747721 ], [ 31.461986931551621, 26.940113022697801 ], [ 31.393102247870445, 26.882467963425768 ], [ 31.299981317084075, 26.83738027637861 ], [ 31.162056919191457, 27.079794419776647 ], [ 31.080408155911641, 27.149505927556504 ], [ 30.939383171696022, 27.208985501279869 ], [ 30.790865106339538, 27.337453111471916 ], [ 30.681001011387536, 27.53658824295303 ], [ 30.671234165324449, 27.634024155990005 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EG-LX", "NAME_1": "Luxor" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.649683683754972, 25.729934598902616 ], [ 32.66937040901712, 25.72110755606883 ], [ 32.651394433506255, 25.683120587644964 ], [ 32.624912353522291, 25.687206197807768 ], [ 32.649683683754972, 25.729934598902616 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/estonia.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/estonia.geojson new file mode 100644 index 000000000000..86e5f8b2efc6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/estonia.geojson @@ -0,0 +1,21 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "EE-84", "NAME_1": "Viljandi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.333678019000104, 58.03180776 ], [ 25.324582967000111, 58.034753317000096 ], [ 25.318278443000111, 58.040618592 ], [ 25.30639286300007, 58.058731181000027 ], [ 25.299571574000112, 58.065604147 ], [ 25.281691528000067, 58.073407288000013 ], [ 25.263501424000111, 58.075138449000079 ], [ 25.250685669000035, 58.068498027 ], [ 25.249548788000141, 58.051186422000072 ], [ 25.277557414000057, 58.024107972000124 ], [ 25.284378703000101, 58.008139954000072 ], [ 25.264534953000094, 57.994187318000101 ], [ 25.232495565000107, 57.985376486000106 ], [ 25.216785930000128, 57.985376486000106 ], [ 25.20210982200004, 57.991965230000076 ], [ 25.189914184000116, 58.013514303000036 ], [ 25.180715780000128, 58.038163961000052 ], [ 25.166969848000093, 58.058731181000027 ], [ 25.141028280000057, 58.068007101000049 ], [ 25.094209432000127, 58.067309469000051 ], [ 25.070644978000132, 58.063614604000051 ], [ 25.048837524000106, 58.056199036000052 ], [ 25.034856819000083, 58.048574085000027 ], [ 25.034472284368405, 58.048911851900414 ], [ 25.026824171798069, 58.055629788483941 ], [ 25.023878615105957, 58.059815579525321 ], [ 25.022173292763227, 58.064879868810863 ], [ 25.021243116776418, 58.070667630306843 ], [ 25.019227736071173, 58.075886949223275 ], [ 25.015507033023141, 58.080331121783843 ], [ 25.010236037263269, 58.085240384136398 ], [ 25.011476270713331, 58.09107981977786 ], [ 25.018917677708657, 58.097177638737037 ], [ 25.036642693805277, 58.103146267386307 ], [ 25.046719598230879, 58.108236395992833 ], [ 25.051990593990695, 58.115832830820466 ], [ 25.054316033957775, 58.121413885842117 ], [ 25.060207147341941, 58.125392971308543 ], [ 25.07384972518463, 58.126581528814484 ], [ 25.08873253827602, 58.124669500896744 ], [ 25.103046908787803, 58.124178575380938 ], [ 25.112348666857486, 58.126038927354614 ], [ 25.114053989200215, 58.13286021582627 ], [ 25.109093051802859, 58.137433580495326 ], [ 25.105062290392368, 58.140172430713051 ], [ 25.09545047396017, 58.144203193022918 ], [ 25.090799594925329, 58.147407132133424 ], [ 25.09028283098786, 58.152006334324824 ], [ 25.095605502691797, 58.158000800496495 ], [ 25.10955813979632, 58.165545559380007 ], [ 25.121185336933706, 58.164977119498417 ], [ 25.13017703574161, 58.162393297112942 ], [ 25.137308384374421, 58.161178901185338 ], [ 25.141649204147427, 58.164305325030682 ], [ 25.142786085709247, 58.172676907113555 ], [ 25.139013705817831, 58.180686753990472 ], [ 25.137308384374421, 58.18916168886085 ], [ 25.143716261696113, 58.196344713437725 ], [ 25.152242873409875, 58.201770737929166 ], [ 25.206399773630608, 58.208514512934414 ], [ 25.218337030029886, 58.204251207527193 ], [ 25.223763055420648, 58.199807034067362 ], [ 25.22980919843576, 58.200375474848272 ], [ 25.23399498857782, 58.204767971464662 ], [ 25.232909783859441, 58.239701239720432 ], [ 25.23151451987917, 58.247556056966403 ], [ 25.231824579141005, 58.252723700838089 ], [ 25.249497918394184, 58.263730781250501 ], [ 25.245157097721858, 58.27354930325771 ], [ 25.233219842221899, 58.279802150948456 ], [ 25.17425703333538, 58.300136826952951 ], [ 25.134982944407341, 58.318921210245605 ], [ 25.120565220208732, 58.322590237349573 ], [ 25.041448601571688, 58.3308067898015 ], [ 25.035712517818411, 58.3339073761245 ], [ 25.021553176038253, 58.334708360002764 ], [ 24.990392286774579, 58.318481961573241 ], [ 24.972822300308906, 58.320936590950907 ], [ 24.966931186924739, 58.323727118911393 ], [ 24.954993931424781, 58.336284492035645 ], [ 24.969566685254279, 58.367186997981548 ], [ 24.976594679301002, 58.388865261122874 ], [ 24.972977329040475, 58.411086127522765 ], [ 24.977628208075316, 58.423255927019397 ], [ 25.006670362946863, 58.434908963477881 ], [ 25.006050246221889, 58.458912664787647 ], [ 25.001244337556102, 58.470023097987564 ], [ 24.98946211078777, 58.483045559105221 ], [ 24.987601759713414, 58.485939439853212 ], [ 24.994733107446905, 58.494207669148579 ], [ 25.032095167557941, 58.515653388293231 ], [ 25.099636265001607, 58.532319038093078 ], [ 25.141649204147427, 58.548881334206158 ], [ 25.154878370840152, 58.557097887557461 ], [ 25.167745803226239, 58.568311673544883 ], [ 25.182008497793902, 58.575649725954065 ], [ 25.221437616352887, 58.583401191311907 ], [ 25.231979607872574, 58.588000393503307 ], [ 25.2313594911476, 58.59807729792891 ], [ 25.226708612112759, 58.605260322505842 ], [ 25.223297967427243, 58.612391669340013 ], [ 25.225003288870653, 58.619574693017626 ], [ 25.23228966623509, 58.626137599970207 ], [ 25.258541294045472, 58.633294786125475 ], [ 25.305360141857022, 58.622830308971572 ], [ 25.328666212975349, 58.620608221791997 ], [ 25.348975050558124, 58.61507884451305 ], [ 25.437755160672111, 58.613683580532779 ], [ 25.47263675298376, 58.618747870717641 ], [ 25.509120313951314, 58.633423977334644 ], [ 25.539557732803132, 58.629961655805744 ], [ 25.556921013693795, 58.642002264992527 ], [ 25.621619907232912, 58.653732814917419 ], [ 25.639138217754521, 58.658642076370711 ], [ 25.65934370344911, 58.666393540829233 ], [ 25.732879266165185, 58.679777737152847 ], [ 25.777114291591261, 58.689777127212608 ], [ 25.785330844942507, 58.682413235482386 ], [ 25.787191196016863, 58.65704010681543 ], [ 25.79370242702538, 58.643655911391193 ], [ 25.791687046320135, 58.63546519646161 ], [ 25.785950961667538, 58.630788479005048 ], [ 25.767812534420898, 58.625620836032738 ], [ 25.757373894789396, 58.621021633841281 ], [ 25.749157342337469, 58.61311513885255 ], [ 25.750707635049309, 58.607068996736757 ], [ 25.760009393118992, 58.603916734469692 ], [ 25.790446811970753, 58.604200955309807 ], [ 25.81199588390291, 58.602056383395336 ], [ 25.828325636918578, 58.603348293688782 ], [ 25.916588983095096, 58.596527005217069 ], [ 25.928991326588459, 58.592444566063818 ], [ 25.942685581274532, 58.586346747104642 ], [ 25.945786166698213, 58.579163723427087 ], [ 25.950437045733054, 58.572600816474448 ], [ 25.957723423097491, 58.566347967884383 ], [ 25.968575473879014, 58.559371649781781 ], [ 25.981287875734836, 58.557072049135741 ], [ 26.012810500204409, 58.556787828295626 ], [ 26.021802199012257, 58.550483302862119 ], [ 26.028778517114858, 58.541930854525276 ], [ 26.032964308156295, 58.534153550745714 ], [ 26.064331902994923, 58.513586330744545 ], [ 26.131511265232689, 58.484673367082223 ], [ 26.165514356602273, 58.420258694383222 ], [ 26.165359327870647, 58.412817288287215 ], [ 26.09817996563288, 58.361657619803282 ], [ 26.063866815001518, 58.329411525821229 ], [ 26.038700391909515, 58.300059313486486 ], [ 26.044953241398957, 58.223733221910607 ], [ 26.071463249829094, 58.127718411275623 ], [ 25.981442905365782, 58.11417918622044 ], [ 25.960979038152061, 58.108649807142854 ], [ 25.929921501675949, 58.108908190460568 ], [ 25.917829217444421, 58.115987861350675 ], [ 25.905271844320168, 58.129320379931585 ], [ 25.89178429520905, 58.140198269134771 ], [ 25.865532668297988, 58.150145982351148 ], [ 25.853285352636874, 58.151231187968904 ], [ 25.847549268883654, 58.146787014509073 ], [ 25.846309035433592, 58.142084459530167 ], [ 25.843983594567192, 58.137640286070337 ], [ 25.830030959261364, 58.13133576153615 ], [ 25.822899610628497, 58.126659044079588 ], [ 25.820057406723947, 58.120561225120412 ], [ 25.820884229923251, 58.115987861350675 ], [ 25.825535108958093, 58.110665187848099 ], [ 25.821814405910061, 58.103895576219827 ], [ 25.814941440594964, 58.098676256404076 ], [ 25.760319452380827, 58.084206855362083 ], [ 25.723422479363933, 58.068135483865433 ], [ 25.694535353223955, 58.050229601514843 ], [ 25.678257277051671, 58.044054267290562 ], [ 25.661359084154412, 58.042400620891897 ], [ 25.646114535857123, 58.043873399237953 ], [ 25.620689732145422, 58.041625475435296 ], [ 25.611232944444794, 58.036406154720225 ], [ 25.610302769357304, 58.028447983787373 ], [ 25.61138797407574, 58.018965359463721 ], [ 25.609062534108659, 58.010077013443379 ], [ 25.584361199909438, 57.987416897471803 ], [ 25.57707482344432, 57.978993639444866 ], [ 25.571028680429265, 57.969123439694954 ], [ 25.551815984000143, 57.949859510000024 ], [ 25.550253947000044, 57.955326640000024 ], [ 25.541675659000106, 57.962819723000067 ], [ 25.531960489000056, 57.966437073000051 ], [ 25.496613810000071, 57.970597026000078 ], [ 25.457184692000055, 57.984058736000051 ], [ 25.419731367148021, 58.008250005422155 ], [ 25.396619914000098, 58.02317779600007 ], [ 25.356519002000084, 58.034753317000096 ], [ 25.346390421000137, 58.034443258000024 ], [ 25.33987919100008, 58.03258290600003 ], [ 25.333678019000104, 58.03180776 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EE-68", "NAME_1": "Pärnu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.034856819000083, 58.048574085000027 ], [ 24.9748368730001, 58.015839742000068 ], [ 24.949308716000047, 58.006434631000033 ], [ 24.872517537000078, 58.000440165 ], [ 24.848332967000118, 57.992146098000049 ], [ 24.827417479000076, 57.981876936000091 ], [ 24.816810344000146, 57.976669007000041 ], [ 24.790765421000089, 57.978994446000073 ], [ 24.764720500000095, 57.987908631 ], [ 24.733507935000119, 57.992197774000047 ], [ 24.718831828000134, 57.981836650000034 ], [ 24.700435018000121, 57.954189758000027 ], [ 24.684828735000082, 57.94757517500004 ], [ 24.624057251000096, 57.943957825000055 ], [ 24.582445250259351, 57.946010847151072 ], [ 24.553880656000103, 57.947420146000084 ], [ 24.533830200000068, 57.945068868000035 ], [ 24.481326945000092, 57.91930816700004 ], [ 24.441639445000106, 57.908094381000083 ], [ 24.429133748000112, 57.900342916000099 ], [ 24.412700643000051, 57.876571757000036 ], [ 24.401538533000121, 57.866469014000089 ], [ 24.378180786000087, 57.859441020000091 ], [ 24.349655395000127, 57.858640036000068 ], [ 24.306158734238295, 57.868186255842957 ], [ 24.316661004000082, 57.87726471600007 ], [ 24.324392123000052, 57.886786200000074 ], [ 24.32789147200009, 57.898138739000046 ], [ 24.330332879000082, 57.910101630000042 ], [ 24.333832227000073, 57.92133209800005 ], [ 24.381114129000082, 57.98383209800005 ], [ 24.398285352000073, 58.023260809000078 ], [ 24.446543816000087, 58.054510809000078 ], [ 24.464121941000087, 58.072170315000051 ], [ 24.464121941000087, 58.12055084800005 ], [ 24.471446160000085, 58.142482815000051 ], [ 24.472911004000082, 58.154730536000045 ], [ 24.467539910000085, 58.165269273000035 ], [ 24.459808790000068, 58.174505927000041 ], [ 24.455088738000086, 58.185248114000046 ], [ 24.45484459700009, 58.196437893000052 ], [ 24.467539910000085, 58.217840887000079 ], [ 24.46810957100007, 58.22882721600007 ], [ 24.467621290000068, 58.239813544000071 ], [ 24.470957879000082, 58.250921942000048 ], [ 24.491465691000087, 58.265692450000074 ], [ 24.521494988000086, 58.276109117000033 ], [ 24.54851321700005, 58.289292710000041 ], [ 24.560394727000073, 58.312323309000078 ], [ 24.551036004000082, 58.333726304000038 ], [ 24.528819207000083, 58.350653387000079 ], [ 24.444183790000068, 58.386135158000059 ], [ 24.403168165000068, 58.395331122000073 ], [ 24.361827019000089, 58.397284247000073 ], [ 24.326996290000068, 58.38812897300005 ], [ 24.315928582000083, 58.379950262000079 ], [ 24.304535352000073, 58.368068752000056 ], [ 24.295746290000068, 58.354966539000031 ], [ 24.292246941000087, 58.343085028000075 ], [ 24.29078209700009, 58.327541408000059 ], [ 24.28687584700009, 58.318548895000049 ], [ 24.255869988000086, 58.289536851000037 ], [ 24.243337436000047, 58.280218817000048 ], [ 24.228851759000065, 58.274115302000041 ], [ 24.210785352000073, 58.271389065000051 ], [ 24.174164259000065, 58.27680084800005 ], [ 24.15601647200009, 58.276841539000031 ], [ 24.138926629000082, 58.267971096000053 ], [ 24.12086022200009, 58.245184637000079 ], [ 24.111664259000065, 58.241034247000073 ], [ 24.094086134000065, 58.244696356000077 ], [ 24.083506707000083, 58.250881252000056 ], [ 24.053233269000089, 58.278265692000048 ], [ 24.007090691000087, 58.300523179000038 ], [ 23.98023522200009, 58.318426825000074 ], [ 23.91382897200009, 58.333319403000075 ], [ 23.873708530000044, 58.335191148000035 ], [ 23.854665561000047, 58.339667059000078 ], [ 23.849457227000073, 58.342759507000039 ], [ 23.838389519000089, 58.351385809000078 ], [ 23.833506707000083, 58.353949286000045 ], [ 23.824473504000082, 58.354559637000079 ], [ 23.818369988000086, 58.351752020000049 ], [ 23.812836134000065, 58.34829336100006 ], [ 23.805674675000091, 58.346502997000073 ], [ 23.79664147200009, 58.348822333000044 ], [ 23.78687584700009, 58.353094794000071 ], [ 23.77711022200009, 58.354966539000031 ], [ 23.768077019000089, 58.35024648600006 ], [ 23.762054884000065, 58.34438711100006 ], [ 23.75562584700009, 58.340033270000049 ], [ 23.748545769000089, 58.339056708000044 ], [ 23.740977410000085, 58.343085028000075 ], [ 23.734873894000089, 58.351385809000078 ], [ 23.729258660000085, 58.362860419000071 ], [ 23.725271030000044, 58.374904690000051 ], [ 23.723643425000091, 58.384711005000042 ], [ 23.718923373000052, 58.399562893000052 ], [ 23.707530144000089, 58.407375393000052 ], [ 23.694183790000068, 58.413153387000079 ], [ 23.68336022200009, 58.42218659100007 ], [ 23.67741946700005, 58.435248114000046 ], [ 23.67750084700009, 58.445542710000041 ], [ 23.68336022200009, 58.470038153000075 ], [ 23.684336785000085, 58.499660549000055 ], [ 23.678965691000087, 58.524155992000033 ], [ 23.66382897200009, 58.536200262000079 ], [ 23.634938998000052, 58.528387762000079 ], [ 23.62240644600007, 58.529120184000078 ], [ 23.60320071700005, 58.535956122000073 ], [ 23.585804963999561, 58.544166617807221 ], [ 23.585981885655485, 58.544282132014757 ], [ 23.586705356966661, 58.544747219108842 ], [ 23.635746291058467, 58.555547593946301 ], [ 23.651094191243885, 58.556219387514716 ], [ 23.747625766715771, 58.548881334206158 ], [ 23.824571974117305, 58.559216621050211 ], [ 23.902758415868163, 58.555625108312086 ], [ 23.901828240780674, 58.563350735248207 ], [ 23.898572624826784, 58.566218777574477 ], [ 23.865241327025615, 58.586191718373072 ], [ 23.861210564715748, 58.601565456980211 ], [ 23.861365594346694, 58.607430731942713 ], [ 23.86400109177697, 58.613373522170264 ], [ 23.864466179770375, 58.617197578005801 ], [ 23.863380975051939, 58.620918281053775 ], [ 23.861365594346694, 58.624742336889312 ], [ 23.859143508066438, 58.630271715067579 ], [ 23.861365594346694, 58.634069933380715 ], [ 23.872527704390052, 58.633139757393849 ], [ 23.899037712820189, 58.625155748039333 ], [ 23.915987582560888, 58.625259100826838 ], [ 23.932885776357466, 58.630504259064253 ], [ 23.953659701933702, 58.646446438452358 ], [ 23.959705844948758, 58.657582709174676 ], [ 23.961721225654003, 58.666910304766702 ], [ 23.964511752715225, 58.672956447781814 ], [ 23.972159865285562, 58.675281886849575 ], [ 24.005491163985994, 58.670424303139043 ], [ 24.022130975364178, 58.671044419864074 ], [ 24.060423210562703, 58.683860175406721 ], [ 24.086674839272405, 58.688511054441562 ], [ 24.133235303766241, 58.701481838715836 ], [ 24.161605665968693, 58.688666083173189 ], [ 24.284957310031814, 58.675927842895589 ], [ 24.363505486988629, 58.670320950351538 ], [ 24.414665154573186, 58.677038886035746 ], [ 24.42959964360864, 58.681689765070587 ], [ 24.438901400779002, 58.686495672836998 ], [ 24.443087191820439, 58.690268052728413 ], [ 24.449288363567121, 58.702773749009282 ], [ 24.455644565844011, 58.709543362436193 ], [ 24.461535679228177, 58.714245917415155 ], [ 24.492593214805026, 58.728766995300589 ], [ 24.524994338417969, 58.73646678291567 ], [ 24.536673210600156, 58.736001694922265 ], [ 24.551711053322435, 58.73377960954133 ], [ 24.555431756370467, 58.730058906493298 ], [ 24.554346550752712, 58.723754381059791 ], [ 24.554036493289516, 58.718405870034871 ], [ 24.56473351444015, 58.71142955193227 ], [ 24.578376092282838, 58.711662095928943 ], [ 24.610828891839844, 58.718638414031545 ], [ 24.654443801440266, 58.724012763478243 ], [ 24.69056562720192, 58.751246243219498 ], [ 24.724413689839878, 58.750264391288624 ], [ 24.786477085049398, 58.741427721212347 ], [ 24.81195356560454, 58.743468940339312 ], [ 24.837068311853102, 58.749179186570188 ], [ 24.855671827992467, 58.749954332026789 ], [ 24.880063103829173, 58.746698716972162 ], [ 24.8913802426041, 58.741892809205751 ], [ 24.897581414350782, 58.735794990246575 ], [ 24.900371942311267, 58.71967194280586 ], [ 24.909363641119114, 58.69621084295602 ], [ 24.91215416818028, 58.681689765070587 ], [ 24.916184929590827, 58.672336331056783 ], [ 24.937165561641336, 58.676677150829846 ], [ 24.971892124322039, 58.701120104409256 ], [ 24.98775678934436, 58.709233303174358 ], [ 25.008065626927134, 58.7169847685322 ], [ 25.023568555844179, 58.720343736374332 ], [ 25.029304639597399, 58.720240384486146 ], [ 25.046564568599933, 58.718018297306571 ], [ 25.057261589750567, 58.718380032512471 ], [ 25.060982292798542, 58.719723618749981 ], [ 25.062842644772218, 58.728198554519622 ], [ 25.129866978278415, 58.720240384486146 ], [ 25.161079542586776, 58.720886338733521 ], [ 25.199836866678027, 58.725769761765093 ], [ 25.23461510620217, 58.719956162746712 ], [ 25.266447788134883, 58.718380032512471 ], [ 25.283345981931518, 58.713599962268404 ], [ 25.292492710370254, 58.707657172040854 ], [ 25.292647739101881, 58.702101956340186 ], [ 25.289082065684738, 58.69657257816192 ], [ 25.283345981931518, 58.690087185575123 ], [ 25.279160190890082, 58.684118556925853 ], [ 25.275594516573676, 58.671251126338404 ], [ 25.258541294045472, 58.633294786125475 ], [ 25.23228966623509, 58.626137599970207 ], [ 25.225003288870653, 58.619574693017626 ], [ 25.223297967427243, 58.612391669340013 ], [ 25.226708612112759, 58.605260322505842 ], [ 25.2313594911476, 58.59807729792891 ], [ 25.231979607872574, 58.588000393503307 ], [ 25.221437616352887, 58.583401191311907 ], [ 25.182008497793902, 58.575649725954065 ], [ 25.167745803226239, 58.568311673544883 ], [ 25.154878370840152, 58.557097887557461 ], [ 25.141649204147427, 58.548881334206158 ], [ 25.099636265001607, 58.532319038093078 ], [ 25.032095167557941, 58.515653388293231 ], [ 24.994733107446905, 58.494207669148579 ], [ 24.987601759713414, 58.485939439853212 ], [ 24.98946211078777, 58.483045559105221 ], [ 25.001244337556102, 58.470023097987564 ], [ 25.006050246221889, 58.458912664787647 ], [ 25.006670362946863, 58.434908963477881 ], [ 24.977628208075316, 58.423255927019397 ], [ 24.972977329040475, 58.411086127522765 ], [ 24.976594679301002, 58.388865261122874 ], [ 24.969566685254279, 58.367186997981548 ], [ 24.954993931424781, 58.336284492035645 ], [ 24.966931186924739, 58.323727118911393 ], [ 24.972822300308906, 58.320936590950907 ], [ 24.990392286774579, 58.318481961573241 ], [ 25.021553176038253, 58.334708360002764 ], [ 25.035712517818411, 58.3339073761245 ], [ 25.041448601571688, 58.3308067898015 ], [ 25.120565220208732, 58.322590237349573 ], [ 25.134982944407341, 58.318921210245605 ], [ 25.17425703333538, 58.300136826952951 ], [ 25.233219842221899, 58.279802150948456 ], [ 25.245157097721858, 58.27354930325771 ], [ 25.249497918394184, 58.263730781250501 ], [ 25.231824579141005, 58.252723700838089 ], [ 25.23151451987917, 58.247556056966403 ], [ 25.232909783859441, 58.239701239720432 ], [ 25.23399498857782, 58.204767971464662 ], [ 25.22980919843576, 58.200375474848272 ], [ 25.223763055420648, 58.199807034067362 ], [ 25.218337030029886, 58.204251207527193 ], [ 25.206399773630608, 58.208514512934414 ], [ 25.152242873409875, 58.201770737929166 ], [ 25.143716261696113, 58.196344713437725 ], [ 25.137308384374421, 58.18916168886085 ], [ 25.139013705817831, 58.180686753990472 ], [ 25.142786085709247, 58.172676907113555 ], [ 25.141649204147427, 58.164305325030682 ], [ 25.137308384374421, 58.161178901185338 ], [ 25.13017703574161, 58.162393297112942 ], [ 25.121185336933706, 58.164977119498417 ], [ 25.10955813979632, 58.165545559380007 ], [ 25.095605502691797, 58.158000800496495 ], [ 25.09028283098786, 58.152006334324824 ], [ 25.090799594925329, 58.147407132133424 ], [ 25.09545047396017, 58.144203193022918 ], [ 25.105062290392368, 58.140172430713051 ], [ 25.109093051802859, 58.137433580495326 ], [ 25.114053989200215, 58.13286021582627 ], [ 25.112348666857486, 58.126038927354614 ], [ 25.103046908787803, 58.124178575380938 ], [ 25.08873253827602, 58.124669500896744 ], [ 25.07384972518463, 58.126581528814484 ], [ 25.060207147341941, 58.125392971308543 ], [ 25.054316033957775, 58.121413885842117 ], [ 25.051990593990695, 58.115832830820466 ], [ 25.046719598230879, 58.108236395992833 ], [ 25.036642693805277, 58.103146267386307 ], [ 25.018917677708657, 58.097177638737037 ], [ 25.011476270713331, 58.09107981977786 ], [ 25.010236037263269, 58.085240384136398 ], [ 25.015507033023141, 58.080331121783843 ], [ 25.019227736071173, 58.075886949223275 ], [ 25.021243116776418, 58.070667630306843 ], [ 25.022173292763227, 58.064879868810863 ], [ 25.023878615105957, 58.059815579525321 ], [ 25.026824171798069, 58.055629788483941 ], [ 25.034472284368405, 58.048911851900414 ], [ 25.034856819000083, 58.048574085000027 ] ] ], [ [ [ 23.943369988000086, 58.113185940000051 ], [ 23.937998894000089, 58.137274481000077 ], [ 23.955332879000082, 58.15180084800005 ], [ 23.984222852000073, 58.157131252000056 ], [ 24.01335696700005, 58.153509833000044 ], [ 24.022146030000044, 58.129868882000039 ], [ 24.002452019000089, 58.108547268000052 ], [ 23.970713738000086, 58.099595445000034 ], [ 23.943369988000086, 58.113185940000051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EE-81", "NAME_1": "Valga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.625081421000061, 57.910290630000091 ], [ 25.601516968000055, 57.912202658000112 ], [ 25.579399455000072, 57.919463196 ], [ 25.55831547000011, 57.934242656000023 ], [ 25.552941122000078, 57.942174988000048 ], [ 25.552114298000049, 57.948815410000051 ], [ 25.551815984000143, 57.949859510000024 ], [ 25.571028680429265, 57.969123439694954 ], [ 25.57707482344432, 57.978993639444866 ], [ 25.584361199909438, 57.987416897471803 ], [ 25.609062534108659, 58.010077013443379 ], [ 25.61138797407574, 58.018965359463721 ], [ 25.610302769357304, 58.028447983787373 ], [ 25.611232944444794, 58.036406154720225 ], [ 25.620689732145422, 58.041625475435296 ], [ 25.646114535857123, 58.043873399237953 ], [ 25.661359084154412, 58.042400620891897 ], [ 25.678257277051671, 58.044054267290562 ], [ 25.694535353223955, 58.050229601514843 ], [ 25.723422479363933, 58.068135483865433 ], [ 25.760319452380827, 58.084206855362083 ], [ 25.814941440594964, 58.098676256404076 ], [ 25.821814405910061, 58.103895576219827 ], [ 25.825535108958093, 58.110665187848099 ], [ 25.820884229923251, 58.115987861350675 ], [ 25.820057406723947, 58.120561225120412 ], [ 25.822899610628497, 58.126659044079588 ], [ 25.830030959261364, 58.13133576153615 ], [ 25.843983594567192, 58.137640286070337 ], [ 25.846309035433592, 58.142084459530167 ], [ 25.847549268883654, 58.146787014509073 ], [ 25.853285352636874, 58.151231187968904 ], [ 25.865532668297988, 58.150145982351148 ], [ 25.89178429520905, 58.140198269134771 ], [ 25.905271844320168, 58.129320379931585 ], [ 25.917829217444421, 58.115987861350675 ], [ 25.929921501675949, 58.108908190460568 ], [ 25.960979038152061, 58.108649807142854 ], [ 25.981442905365782, 58.11417918622044 ], [ 26.071463249829094, 58.127718411275623 ], [ 26.23904992021761, 58.120561225120412 ], [ 26.257808465088601, 58.125806383357883 ], [ 26.280494418582521, 58.134436346959831 ], [ 26.296772494754805, 58.13709768281177 ], [ 26.314290806175734, 58.145185044953848 ], [ 26.354029982197915, 58.170532335199084 ], [ 26.366277296959652, 58.175157375812205 ], [ 26.37857628766551, 58.175364081387215 ], [ 26.389428338447033, 58.166372382579368 ], [ 26.3991951836108, 58.161643989178742 ], [ 26.41888390536792, 58.149344998472884 ], [ 26.430046013612639, 58.150404364769599 ], [ 26.448701205696068, 58.154021715030069 ], [ 26.462343784438076, 58.158052477339936 ], [ 26.51944624225024, 58.167612616928693 ], [ 26.53851484458437, 58.160016181201797 ], [ 26.547971633184318, 58.153815009455116 ], [ 26.569107293067077, 58.145908515365647 ], [ 26.578409051136759, 58.140482489974886 ], [ 26.594997185671559, 58.123377591502617 ], [ 26.57499840735062, 58.11185374625336 ], [ 26.571742791396673, 58.108262234414553 ], [ 26.565231561287533, 58.09759105078632 ], [ 26.554224480875064, 58.076300361272615 ], [ 26.554999627230984, 58.068393867183204 ], [ 26.553449333619824, 58.05769684513325 ], [ 26.55592980321785, 58.03785309554388 ], [ 26.552519159431654, 58.020128079447261 ], [ 26.544250929236966, 58.007622382267073 ], [ 26.540220167826476, 57.955635891483155 ], [ 26.425705193839633, 57.946618354253644 ], [ 26.392373895139144, 57.940262152876016 ], [ 26.388963249554308, 57.935249539534595 ], [ 26.388033075366138, 57.927032986183349 ], [ 26.388653192091112, 57.918015448953781 ], [ 26.383227165801031, 57.905225531832798 ], [ 26.371703322350413, 57.894941921832185 ], [ 26.364882032979438, 57.887578030101963 ], [ 26.364882032979438, 57.878948066500016 ], [ 26.393149040595745, 57.875201524131 ], [ 26.402760857927206, 57.864375311771198 ], [ 26.389893426440437, 57.845306708537748 ], [ 26.391133660789819, 57.840604153558786 ], [ 26.392994011864118, 57.809081529089269 ], [ 26.419504022092951, 57.796756699961691 ], [ 26.447460972246063, 57.791873276930176 ], [ 26.456142611792075, 57.784173489315037 ], [ 26.457382847040719, 57.776835436006536 ], [ 26.451956820750638, 57.763399562839538 ], [ 26.445135532278982, 57.757379259145466 ], [ 26.435317010271774, 57.75396861445995 ], [ 26.428340692169172, 57.74975698499685 ], [ 26.428340692169172, 57.744175929975142 ], [ 26.433456659197418, 57.736527818304126 ], [ 26.43562706863429, 57.726399237934459 ], [ 26.443275181204626, 57.719784654138437 ], [ 26.4555224950671, 57.714591172744406 ], [ 26.467304721835433, 57.708364163475323 ], [ 26.468699984916327, 57.700612698117482 ], [ 26.464514193874948, 57.693739731903065 ], [ 26.444825473916467, 57.683792018686688 ], [ 26.425550165108007, 57.666351223430183 ], [ 26.427565544913932, 57.662630520382208 ], [ 26.440019566150056, 57.65376801188421 ], [ 26.461568638082156, 57.641236477181621 ], [ 26.461568638082156, 57.635810451790917 ], [ 26.45815799339664, 57.62986766246263 ], [ 26.449321323320419, 57.624958401009394 ], [ 26.431131219230338, 57.617775377331782 ], [ 26.425240105846171, 57.61250438157191 ], [ 26.426015252202092, 57.60868032483711 ], [ 26.430356072874417, 57.602789212352263 ], [ 26.434076775922449, 57.598525906045722 ], [ 26.428030632907337, 57.576485907698441 ], [ 26.430614455292869, 57.562119859443953 ], [ 26.430678413000066, 57.561764252 ], [ 26.351325149735828, 57.580203000867755 ], [ 26.33862959800004, 57.583152975000118 ], [ 26.297185099000075, 57.599146830000066 ], [ 26.26318200700004, 57.62082509400004 ], [ 26.168510783000016, 57.704049988000051 ], [ 26.135231161000092, 57.724772238000085 ], [ 26.024746948000143, 57.774355774000057 ], [ 26.016065308000094, 57.786680603000022 ], [ 26.013068074000074, 57.807299500000013 ], [ 26.016065308000094, 57.816472067000106 ], [ 26.021749715000055, 57.822414856000123 ], [ 26.025263713000101, 57.828409322000041 ], [ 26.021956421000112, 57.837943624000033 ], [ 26.014515015000086, 57.842827047000057 ], [ 26.002732788000088, 57.845979310000118 ], [ 25.792616415000083, 57.855978699000033 ], [ 25.767501668000079, 57.868923646000056 ], [ 25.754685913000088, 57.888896586000087 ], [ 25.745384155000067, 57.909179586000093 ], [ 25.730294637000071, 57.923132223 ], [ 25.714998413000103, 57.923390605000051 ], [ 25.703799772000053, 57.921326524000065 ], [ 25.650092814000061, 57.911427511000014 ], [ 25.625081421000061, 57.910290630000091 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EE-87", "NAME_1": "Võru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.499550008000057, 57.515818583000012 ], [ 26.481049846000133, 57.527135722000097 ], [ 26.447563517000049, 57.552922262 ], [ 26.430923706000016, 57.561707255000087 ], [ 26.430678413000066, 57.561764252 ], [ 26.430614455292869, 57.562119859443953 ], [ 26.428030632907337, 57.576485907698441 ], [ 26.434076775922449, 57.598525906045722 ], [ 26.430356072874417, 57.602789212352263 ], [ 26.426015252202092, 57.60868032483711 ], [ 26.425240105846171, 57.61250438157191 ], [ 26.431131219230338, 57.617775377331782 ], [ 26.449321323320419, 57.624958401009394 ], [ 26.45815799339664, 57.62986766246263 ], [ 26.461568638082156, 57.635810451790917 ], [ 26.461568638082156, 57.641236477181621 ], [ 26.440019566150056, 57.65376801188421 ], [ 26.427565544913932, 57.662630520382208 ], [ 26.425550165108007, 57.666351223430183 ], [ 26.444825473916467, 57.683792018686688 ], [ 26.464514193874948, 57.693739731903065 ], [ 26.468699984916327, 57.700612698117482 ], [ 26.467304721835433, 57.708364163475323 ], [ 26.4555224950671, 57.714591172744406 ], [ 26.443275181204626, 57.719784654138437 ], [ 26.43562706863429, 57.726399237934459 ], [ 26.433456659197418, 57.736527818304126 ], [ 26.428340692169172, 57.744175929975142 ], [ 26.428340692169172, 57.74975698499685 ], [ 26.435317010271774, 57.75396861445995 ], [ 26.445135532278982, 57.757379259145466 ], [ 26.451956820750638, 57.763399562839538 ], [ 26.457382847040719, 57.776835436006536 ], [ 26.456142611792075, 57.784173489315037 ], [ 26.447460972246063, 57.791873276930176 ], [ 26.419504022092951, 57.796756699961691 ], [ 26.392994011864118, 57.809081529089269 ], [ 26.391133660789819, 57.840604153558786 ], [ 26.389893426440437, 57.845306708537748 ], [ 26.402760857927206, 57.864375311771198 ], [ 26.393149040595745, 57.875201524131 ], [ 26.364882032979438, 57.878948066500016 ], [ 26.364882032979438, 57.887578030101963 ], [ 26.371703322350413, 57.894941921832185 ], [ 26.383227165801031, 57.905225531832798 ], [ 26.388653192091112, 57.918015448953781 ], [ 26.388033075366138, 57.927032986183349 ], [ 26.388963249554308, 57.935249539534595 ], [ 26.392373895139144, 57.940262152876016 ], [ 26.425705193839633, 57.946618354253644 ], [ 26.540220167826476, 57.955635891483155 ], [ 26.578874139130221, 57.947471014975349 ], [ 26.588951042656447, 57.943078518358902 ], [ 26.604505650215572, 57.940236315353616 ], [ 26.634271274599598, 57.938117580961546 ], [ 26.659282668060655, 57.939926256091837 ], [ 26.682537062335541, 57.944602973548342 ], [ 26.73591881709973, 57.938375963379997 ], [ 26.766924675833081, 57.930211086872134 ], [ 26.855084670121414, 57.93398346586423 ], [ 26.876478713321944, 57.930676174865539 ], [ 26.900559929896815, 57.93491364185104 ], [ 26.928000116112457, 57.940494696872747 ], [ 27.039104445413784, 57.917860419322892 ], [ 27.047320997865768, 57.921555283949147 ], [ 27.042205030837465, 57.945455634270104 ], [ 27.056829460611084, 57.952638657947659 ], [ 27.074967888757044, 57.956566067470021 ], [ 27.085819940437887, 57.957392889770006 ], [ 27.094966667977303, 57.95708283140749 ], [ 27.110934685787129, 57.951656806016729 ], [ 27.175220168176224, 57.927265530180023 ], [ 27.231392450001522, 57.912434393932131 ], [ 27.246585320556107, 57.910005602076865 ], [ 27.256662224981653, 57.91010895396505 ], [ 27.262553338365876, 57.912537746719579 ], [ 27.267049187769771, 57.91584503771827 ], [ 27.274025505872373, 57.918325507316297 ], [ 27.28089847208679, 57.917498684116936 ], [ 27.296246372272265, 57.906620794913749 ], [ 27.29903690023275, 57.8921513938717 ], [ 27.265188835796096, 57.87597667138624 ], [ 27.255732048994844, 57.866132310957369 ], [ 27.249220818885647, 57.853058172996271 ], [ 27.252786493202109, 57.847632148504829 ], [ 27.259762811304654, 57.846443590099568 ], [ 27.268444451750042, 57.847890530023903 ], [ 27.276402621783575, 57.84804555875553 ], [ 27.283068882422981, 57.845203355750243 ], [ 27.298416781709079, 57.831560777008235 ], [ 27.32136111762145, 57.82933869072798 ], [ 27.359394972200164, 57.839777330359482 ], [ 27.394173210824988, 57.844376533450259 ], [ 27.449260287931907, 57.838640448797662 ], [ 27.54589521709056, 57.817866523221426 ], [ 27.555610386310263, 57.813422349761595 ], [ 27.55634348486393, 57.813086996167897 ], [ 27.537626180000103, 57.811562805000065 ], [ 27.524603719000083, 57.807299500000013 ], [ 27.532561890000039, 57.805077414000024 ], [ 27.553852580000125, 57.794767965000105 ], [ 27.526154012000092, 57.787274882000062 ], [ 27.512408081000075, 57.781306255000047 ], [ 27.502434530000073, 57.772547099000079 ], [ 27.497835327000104, 57.755674744 ], [ 27.508894084000104, 57.727459412000101 ], [ 27.507757202000107, 57.714772847000077 ], [ 27.490393921000077, 57.704618429 ], [ 27.407711629000119, 57.688986309000072 ], [ 27.391433553000098, 57.680201314000087 ], [ 27.384663940000053, 57.674387716000084 ], [ 27.379703003000117, 57.666455384000059 ], [ 27.377015829000072, 57.656714376000096 ], [ 27.377946004000137, 57.65170176200003 ], [ 27.380219767000142, 57.647722677000061 ], [ 27.382803589000048, 57.634467672000042 ], [ 27.38512902800008, 57.63121205700007 ], [ 27.386989380000102, 57.627646383000084 ], [ 27.38487064600011, 57.606975810000094 ], [ 27.382080119000051, 57.602686666000025 ], [ 27.374845418000092, 57.597854920000017 ], [ 27.362546428000144, 57.594547628 ], [ 27.348903849000038, 57.59405670200006 ], [ 27.336604858000101, 57.591731263000057 ], [ 27.328026571000066, 57.583152975000118 ], [ 27.32854333500012, 57.570569763 ], [ 27.335571330000107, 57.553904115000066 ], [ 27.344976440000067, 57.538091126000054 ], [ 27.352934611000137, 57.527600810000123 ], [ 27.319965047000068, 57.516128642000083 ], [ 27.165659220000066, 57.546695252000106 ], [ 27.085354045000116, 57.549434103000053 ], [ 27.061531209000066, 57.555661113000056 ], [ 27.041325724000075, 57.56845103000002 ], [ 27.004635458000109, 57.598914286000095 ], [ 26.981071004000086, 57.608991191000129 ], [ 26.946551148000111, 57.615347392000061 ], [ 26.929187866000092, 57.615554098000118 ], [ 26.911617880000023, 57.61343536400004 ], [ 26.896114950000111, 57.614985657000048 ], [ 26.884952840000096, 57.622091166000089 ], [ 26.87265384900013, 57.627181295000085 ], [ 26.854153687000121, 57.622556254000116 ], [ 26.838547404000082, 57.609869690000082 ], [ 26.828315471000082, 57.595038555000045 ], [ 26.816326538000055, 57.581189270000081 ], [ 26.795759318000137, 57.571319071000104 ], [ 26.778085978000064, 57.568476868000019 ], [ 26.700467976000141, 57.570750631000053 ], [ 26.666981649000064, 57.564859518000034 ], [ 26.634322144000095, 57.554420879000091 ], [ 26.604763224000067, 57.540313213000061 ], [ 26.598355347000108, 57.53385365900003 ], [ 26.594841349000063, 57.526489767000029 ], [ 26.590087118000071, 57.520366109000051 ], [ 26.579855183000092, 57.517833965000065 ], [ 26.570243367000074, 57.519590963000056 ], [ 26.551743205000065, 57.526825664000015 ], [ 26.542234741000073, 57.528169251000079 ], [ 26.528695516000084, 57.523880107000096 ], [ 26.515052938000082, 57.517265524000024 ], [ 26.499550008000057, 57.515818583000012 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EE-45", "NAME_1": "Ida-Viru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.019053582000083, 59.481756903000075 ], [ 28.038577514000025, 59.462986552000061 ], [ 28.083432657000117, 59.450894267000095 ], [ 28.104826701000036, 59.439215394000101 ], [ 28.128391154000042, 59.409449769000034 ], [ 28.137796264000087, 59.400354716000052 ], [ 28.149578491000085, 59.393171692000109 ], [ 28.175365031000098, 59.381854554000128 ], [ 28.186475464000125, 59.374929911000052 ], [ 28.181824585000044, 59.35606801400003 ], [ 28.157536662000069, 59.364026185000071 ], [ 28.113560018000101, 59.34542266900003 ], [ 28.032376343000038, 59.341960348 ], [ 28.000647014000037, 59.333743796000064 ], [ 28.073200724000031, 59.318964335000047 ], [ 28.096868531000069, 59.319429423000074 ], [ 28.076611369000148, 59.305270081000018 ], [ 27.959719279000097, 59.306458639000041 ], [ 27.903908733000037, 59.29038726800006 ], [ 27.882307984000079, 59.275659485000077 ], [ 27.890782919000088, 59.258037822000077 ], [ 27.873522990000083, 59.236488750000021 ], [ 27.842413778000036, 59.161196188000062 ], [ 27.784329467000134, 59.077170309000039 ], [ 27.767172892000076, 59.055931295000065 ], [ 27.724384807000064, 59.014435120000101 ], [ 27.713326049000074, 58.991904196000078 ], [ 27.69588933300011, 58.977183033000088 ], [ 27.69441247600011, 58.975936178000026 ], [ 27.605322306000119, 58.934698385000033 ], [ 27.477784871000068, 58.875425517000039 ], [ 27.446269007000126, 58.818866663000065 ], [ 27.445746291358262, 58.81891653097307 ], [ 26.95905765078993, 58.865347805157057 ], [ 26.953631626298488, 58.865761217206398 ], [ 26.924899529789457, 58.867156481186612 ], [ 26.91745812279413, 58.868965156316904 ], [ 26.910326775959902, 58.871704007433948 ], [ 26.89683922684884, 58.882349351741141 ], [ 26.871517775025268, 58.890100816199663 ], [ 26.846713088038541, 58.892684637685875 ], [ 26.83710127070708, 58.892503771431905 ], [ 26.824027133645302, 58.890643419458229 ], [ 26.797517124315789, 58.884261380558257 ], [ 26.775451288446163, 58.884158026871432 ], [ 26.766459587839677, 58.883202013362222 ], [ 26.759638299368021, 58.8811866317576 ], [ 26.751731805278553, 58.881625882228661 ], [ 26.745840691894387, 58.886922716410197 ], [ 26.74087975359771, 58.902348130961457 ], [ 26.73669396255633, 58.923793850106051 ], [ 26.731112909333262, 58.928806464346849 ], [ 26.730492790809649, 58.933974107319159 ], [ 26.728012323010262, 58.937901515942201 ], [ 26.728012323010262, 58.941673895833617 ], [ 26.703000928649942, 58.955884915356535 ], [ 26.738864372892465, 58.970483506708433 ], [ 26.769766879737688, 58.976710516876835 ], [ 26.77674319784029, 58.980482896768251 ], [ 26.780463900888321, 58.984772039697873 ], [ 26.781084019411935, 58.991593329068849 ], [ 26.783254428848807, 58.998828030489165 ], [ 26.788835483870457, 59.007147935728597 ], [ 26.803253208069066, 59.014796048298933 ], [ 26.810539585433503, 59.02011872000287 ], [ 26.810694614165072, 59.026423245436376 ], [ 26.799222445759256, 59.040427558485021 ], [ 26.79891238829606, 59.096806545885329 ], [ 26.801547885726336, 59.111896064551729 ], [ 26.808679234359147, 59.117192897833945 ], [ 26.875548537335135, 59.13850942756801 ], [ 26.928775261569058, 59.142566026500901 ], [ 26.93750857885783, 59.145020656777888 ], [ 26.94133263469331, 59.149878242287002 ], [ 26.939368930831449, 59.155355942722565 ], [ 26.937611931645336, 59.158766588307401 ], [ 26.930015496817703, 59.165742906409946 ], [ 26.938748814106475, 59.194681708494045 ], [ 26.933271111872273, 59.200262763515695 ], [ 26.922884149084211, 59.205120348125547 ], [ 26.892653435807404, 59.206386419997273 ], [ 26.878959181121274, 59.209409491954489 ], [ 26.860665724243745, 59.219744777899166 ], [ 26.854154494134605, 59.228762315128733 ], [ 26.843457472084651, 59.255143134148284 ], [ 26.774727817135044, 59.243386745801672 ], [ 26.767854851819948, 59.244549465785212 ], [ 26.754522332339775, 59.249717108757523 ], [ 26.74165490085295, 59.26103424753245 ], [ 26.747701042968743, 59.284288641807336 ], [ 26.789455600595488, 59.327748521776812 ], [ 26.79891238829606, 59.34046092453201 ], [ 26.795501742711224, 59.345680244347761 ], [ 26.786665072635003, 59.347669785732023 ], [ 26.745375603900982, 59.350951240107634 ], [ 26.736383905093135, 59.350176092852394 ], [ 26.725996942305017, 59.350331122483283 ], [ 26.717883741741275, 59.352010607303669 ], [ 26.709822218920237, 59.35779836700101 ], [ 26.708581983671593, 59.360614732483896 ], [ 26.711217482001189, 59.363663641963456 ], [ 26.728787469366182, 59.370019843341083 ], [ 26.744910515907577, 59.379089057414035 ], [ 26.739794548879331, 59.399346218153426 ], [ 26.744135369551657, 59.403221950832346 ], [ 26.750181511667392, 59.407588609027073 ], [ 26.757932977025234, 59.409707343419143 ], [ 26.764289178402862, 59.409862372150712 ], [ 26.771937290073879, 59.407407741873783 ], [ 26.786665072635003, 59.398751939850115 ], [ 26.794416537992788, 59.404643053234281 ], [ 26.789455600595488, 59.427742417878278 ], [ 26.790230746951408, 59.439292101549199 ], [ 26.785424839184941, 59.449963284278112 ], [ 26.769456821375172, 59.469755357024098 ], [ 26.766304559108107, 59.47556895604248 ], [ 26.765684442383076, 59.479909775815486 ], [ 26.769766879737688, 59.487428697176597 ], [ 26.779223667438259, 59.500761217556089 ], [ 26.780853712000066, 59.502549546000068 ], [ 26.826914910000085, 59.476955471000053 ], [ 26.875743035000085, 59.467718817000048 ], [ 26.917491082000083, 59.454169012000079 ], [ 26.937673373000052, 59.450100002000056 ], [ 27.116221550000091, 59.44204336100006 ], [ 27.27507571700005, 59.446966864000046 ], [ 27.409027540000068, 59.451890367000033 ], [ 27.563161655000044, 59.432074286000045 ], [ 27.717051629000082, 59.427150783000059 ], [ 27.873301629000082, 59.407619533000059 ], [ 27.914724155000044, 59.414536851000037 ], [ 27.953461134000065, 59.428168036000045 ], [ 27.983164910000085, 59.446966864000046 ], [ 28.019053582000083, 59.481756903000075 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EE-64", "NAME_1": "Põlva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.519585014636675, 58.194509827566435 ], [ 27.540003296000066, 58.171799215000036 ], [ 27.579690796000136, 58.125858867000076 ], [ 27.630437053000037, 58.088290100000066 ], [ 27.63658654800011, 58.059196269000054 ], [ 27.630126993000147, 58.032996318000031 ], [ 27.63157393400013, 58.004160868 ], [ 27.650642537000124, 58.000078431000091 ], [ 27.669091024000124, 57.991965230000076 ], [ 27.675188843000086, 57.967806499000019 ], [ 27.670434611000104, 57.954964906000029 ], [ 27.663199911000049, 57.943957825000055 ], [ 27.659375855000093, 57.932459819000101 ], [ 27.664956909000125, 57.918403829000098 ], [ 27.673121785000035, 57.912822774000077 ], [ 27.774407593000063, 57.890705262000083 ], [ 27.790840698000125, 57.880860901000105 ], [ 27.79931563300002, 57.86106882700004 ], [ 27.786809936000111, 57.847581279000067 ], [ 27.763452189000077, 57.83866709400003 ], [ 27.700717, 57.824843649000073 ], [ 27.55634348486393, 57.813086996167897 ], [ 27.555610386310263, 57.813422349761595 ], [ 27.54589521709056, 57.817866523221426 ], [ 27.449260287931907, 57.838640448797662 ], [ 27.394173210824988, 57.844376533450259 ], [ 27.359394972200164, 57.839777330359482 ], [ 27.32136111762145, 57.82933869072798 ], [ 27.298416781709079, 57.831560777008235 ], [ 27.283068882422981, 57.845203355750243 ], [ 27.276402621783575, 57.84804555875553 ], [ 27.268444451750042, 57.847890530023903 ], [ 27.259762811304654, 57.846443590099568 ], [ 27.252786493202109, 57.847632148504829 ], [ 27.249220818885647, 57.853058172996271 ], [ 27.255732048994844, 57.866132310957369 ], [ 27.265188835796096, 57.87597667138624 ], [ 27.29903690023275, 57.8921513938717 ], [ 27.296246372272265, 57.906620794913749 ], [ 27.28089847208679, 57.917498684116936 ], [ 27.274025505872373, 57.918325507316297 ], [ 27.267049187769771, 57.91584503771827 ], [ 27.262553338365876, 57.912537746719579 ], [ 27.256662224981653, 57.91010895396505 ], [ 27.246585320556107, 57.910005602076865 ], [ 27.231392450001522, 57.912434393932131 ], [ 27.175220168176224, 57.927265530180023 ], [ 27.110934685787129, 57.951656806016729 ], [ 27.094966667977303, 57.95708283140749 ], [ 27.085819940437887, 57.957392889770006 ], [ 27.074967888757044, 57.956566067470021 ], [ 27.056829460611084, 57.952638657947659 ], [ 27.042205030837465, 57.945455634270104 ], [ 27.047320997865768, 57.921555283949147 ], [ 27.039104445413784, 57.917860419322892 ], [ 26.928000116112457, 57.940494696872747 ], [ 26.900559929896815, 57.93491364185104 ], [ 26.876478713321944, 57.930676174865539 ], [ 26.855084670121414, 57.93398346586423 ], [ 26.766924675833081, 57.930211086872134 ], [ 26.73591881709973, 57.938375963379997 ], [ 26.682537062335541, 57.944602973548342 ], [ 26.659282668060655, 57.939926256091837 ], [ 26.634271274599598, 57.938117580961546 ], [ 26.604505650215572, 57.940236315353616 ], [ 26.588951042656447, 57.943078518358902 ], [ 26.578874139130221, 57.947471014975349 ], [ 26.540220167826476, 57.955635891483155 ], [ 26.544250929236966, 58.007622382267073 ], [ 26.552519159431654, 58.020128079447261 ], [ 26.55592980321785, 58.03785309554388 ], [ 26.553449333619824, 58.05769684513325 ], [ 26.554999627230984, 58.068393867183204 ], [ 26.554224480875064, 58.076300361272615 ], [ 26.565231561287533, 58.09759105078632 ], [ 26.571742791396673, 58.108262234414553 ], [ 26.57499840735062, 58.11185374625336 ], [ 26.594997185671559, 58.123377591502617 ], [ 26.623574253449021, 58.130508938336789 ], [ 26.630240513189108, 58.1349531108973 ], [ 26.638612095271981, 58.143583076297887 ], [ 26.63969729999036, 58.152109687112329 ], [ 26.638147007278519, 58.161153062763617 ], [ 26.635976596942385, 58.169007880009644 ], [ 26.636131625673954, 58.174537259087231 ], [ 26.640782504708795, 58.175725815693795 ], [ 26.655510288169239, 58.171488348708294 ], [ 26.665638869438283, 58.172315171907655 ], [ 26.675250684971104, 58.177482814879966 ], [ 26.686877883007867, 58.186629544218079 ], [ 26.69835005141374, 58.190091864847659 ], [ 26.706721632597237, 58.189781806485144 ], [ 26.717263625016244, 58.181771958708907 ], [ 26.72010582892085, 58.177896226929306 ], [ 26.750026482935823, 58.177637844510912 ], [ 26.812244906876913, 58.188748276811509 ], [ 26.840046828298455, 58.203734442690347 ], [ 26.848573439112897, 58.220270901281026 ], [ 26.864076368929261, 58.23729828628683 ], [ 26.87601362532854, 58.242440090837476 ], [ 26.886452264060722, 58.244558824330227 ], [ 26.897924431567219, 58.243887030761812 ], [ 26.905055780200087, 58.241406562063162 ], [ 26.950531039975488, 58.245799059578928 ], [ 26.976886020573374, 58.231691392843459 ], [ 26.996936475737755, 58.232776598461214 ], [ 27.000192091691645, 58.234740302323075 ], [ 27.005928176344241, 58.239804593407257 ], [ 27.02189619325469, 58.259054063793997 ], [ 27.033988478385538, 58.262826442786093 ], [ 27.044375441173656, 58.261534532492647 ], [ 27.072642449689283, 58.251483466488764 ], [ 27.092796257641169, 58.249984849720988 ], [ 27.105353630765421, 58.252620348050584 ], [ 27.120598179062711, 58.263058986782767 ], [ 27.128504673152122, 58.263420721988723 ], [ 27.132845492925128, 58.262671414054466 ], [ 27.139976840658676, 58.257477931761116 ], [ 27.155324740844094, 58.251431790544643 ], [ 27.243794792595565, 58.251896878538105 ], [ 27.262088250372415, 58.241484077328266 ], [ 27.266429071044797, 58.223319810760643 ], [ 27.274852329071734, 58.219134019719206 ], [ 27.285549351121631, 58.216395169501425 ], [ 27.296401401003834, 58.215025743043554 ], [ 27.307098423053787, 58.214689846259375 ], [ 27.316090121861635, 58.215309963883726 ], [ 27.332109815615468, 58.217971299735666 ], [ 27.47902591321531, 58.192313951127915 ], [ 27.519585014636675, 58.194509827566435 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EE-79", "NAME_1": "Tartu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.428848762000086, 58.709402604000061 ], [ 27.449259480000109, 58.658539531000017 ], [ 27.498868856000087, 58.53456776900002 ], [ 27.554886108000119, 58.395248109000065 ], [ 27.494114624000105, 58.319542135000077 ], [ 27.482849161000047, 58.26864084900005 ], [ 27.495354859000116, 58.221460266000051 ], [ 27.519585014636675, 58.194509827566435 ], [ 27.47902591321531, 58.192313951127915 ], [ 27.332109815615468, 58.217971299735666 ], [ 27.316090121861635, 58.215309963883726 ], [ 27.307098423053787, 58.214689846259375 ], [ 27.296401401003834, 58.215025743043554 ], [ 27.285549351121631, 58.216395169501425 ], [ 27.274852329071734, 58.219134019719206 ], [ 27.266429071044797, 58.223319810760643 ], [ 27.262088250372415, 58.241484077328266 ], [ 27.243794792595565, 58.251896878538105 ], [ 27.155324740844094, 58.251431790544643 ], [ 27.139976840658676, 58.257477931761116 ], [ 27.132845492925128, 58.262671414054466 ], [ 27.128504673152122, 58.263420721988723 ], [ 27.120598179062711, 58.263058986782767 ], [ 27.105353630765421, 58.252620348050584 ], [ 27.092796257641169, 58.249984849720988 ], [ 27.072642449689283, 58.251483466488764 ], [ 27.044375441173656, 58.261534532492647 ], [ 27.033988478385538, 58.262826442786093 ], [ 27.02189619325469, 58.259054063793997 ], [ 27.005928176344241, 58.239804593407257 ], [ 27.000192091691645, 58.234740302323075 ], [ 26.996936475737755, 58.232776598461214 ], [ 26.976886020573374, 58.231691392843459 ], [ 26.950531039975488, 58.245799059578928 ], [ 26.905055780200087, 58.241406562063162 ], [ 26.897924431567219, 58.243887030761812 ], [ 26.886452264060722, 58.244558824330227 ], [ 26.87601362532854, 58.242440090837476 ], [ 26.864076368929261, 58.23729828628683 ], [ 26.848573439112897, 58.220270901281026 ], [ 26.840046828298455, 58.203734442690347 ], [ 26.812244906876913, 58.188748276811509 ], [ 26.750026482935823, 58.177637844510912 ], [ 26.72010582892085, 58.177896226929306 ], [ 26.717263625016244, 58.181771958708907 ], [ 26.706721632597237, 58.189781806485144 ], [ 26.69835005141374, 58.190091864847659 ], [ 26.686877883007867, 58.186629544218079 ], [ 26.675250684971104, 58.177482814879966 ], [ 26.665638869438283, 58.172315171907655 ], [ 26.655510288169239, 58.171488348708294 ], [ 26.640782504708795, 58.175725815693795 ], [ 26.636131625673954, 58.174537259087231 ], [ 26.635976596942385, 58.169007880009644 ], [ 26.638147007278519, 58.161153062763617 ], [ 26.63969729999036, 58.152109687112329 ], [ 26.638612095271981, 58.143583076297887 ], [ 26.630240513189108, 58.1349531108973 ], [ 26.623574253449021, 58.130508938336789 ], [ 26.594997185671559, 58.123377591502617 ], [ 26.578409051136759, 58.140482489974886 ], [ 26.569107293067077, 58.145908515365647 ], [ 26.547971633184318, 58.153815009455116 ], [ 26.53851484458437, 58.160016181201797 ], [ 26.51944624225024, 58.167612616928693 ], [ 26.462343784438076, 58.158052477339936 ], [ 26.448701205696068, 58.154021715030069 ], [ 26.430046013612639, 58.150404364769599 ], [ 26.41888390536792, 58.149344998472884 ], [ 26.3991951836108, 58.161643989178742 ], [ 26.389428338447033, 58.166372382579368 ], [ 26.37857628766551, 58.175364081387215 ], [ 26.366277296959652, 58.175157375812205 ], [ 26.354029982197915, 58.170532335199084 ], [ 26.314290806175734, 58.145185044953848 ], [ 26.296772494754805, 58.13709768281177 ], [ 26.280494418582521, 58.134436346959831 ], [ 26.257808465088601, 58.125806383357883 ], [ 26.23904992021761, 58.120561225120412 ], [ 26.071463249829094, 58.127718411275623 ], [ 26.044953241398957, 58.223733221910607 ], [ 26.038700391909515, 58.300059313486486 ], [ 26.063866815001518, 58.329411525821229 ], [ 26.09817996563288, 58.361657619803282 ], [ 26.165359327870647, 58.412817288287215 ], [ 26.165514356602273, 58.420258694383222 ], [ 26.131511265232689, 58.484673367082223 ], [ 26.167529738206838, 58.491365465243973 ], [ 26.197140333859295, 58.490461126779564 ], [ 26.217810906648026, 58.49343252189334 ], [ 26.235329217169635, 58.49766998977816 ], [ 26.323489210558591, 58.531776434834569 ], [ 26.342402785060472, 58.535419623516759 ], [ 26.3568205101584, 58.533998522014144 ], [ 26.364727004247811, 58.528624173466824 ], [ 26.371238234357008, 58.521286119258946 ], [ 26.379506462753056, 58.518133856991881 ], [ 26.390048456071383, 58.520821031265541 ], [ 26.412062615996888, 58.534179389167434 ], [ 26.437694126182976, 58.53699575554964 ], [ 26.4555224950671, 58.528624173466824 ], [ 26.46048343336372, 58.528391629470093 ], [ 26.47381595194463, 58.53337840438985 ], [ 26.508284133106258, 58.540871487329241 ], [ 26.542700637424446, 58.530587877328628 ], [ 26.580424431842061, 58.523456528695817 ], [ 26.61737308080302, 58.522035427193202 ], [ 26.621868931106292, 58.522888088814227 ], [ 26.625434605422697, 58.524283351895122 ], [ 26.63721683129171, 58.533223374758904 ], [ 26.65302981857127, 58.555935167573921 ], [ 26.664398635088901, 58.562498074526502 ], [ 26.674320509883614, 58.563092352829813 ], [ 26.685947707021057, 58.558131415432456 ], [ 26.720880975276771, 58.549914862980529 ], [ 26.811779818883508, 58.561438707330467 ], [ 26.841597121010295, 58.591514390976329 ], [ 26.862060988224016, 58.633139757393849 ], [ 26.891568231088968, 58.629729111809013 ], [ 26.93885216599466, 58.610169583059758 ], [ 26.977041050204264, 58.606681424008457 ], [ 26.989598423328573, 58.603348293688782 ], [ 27.013524611171874, 58.602366440858532 ], [ 27.018020460575769, 58.612236639709124 ], [ 27.010579053580443, 58.64009023707473 ], [ 27.013679639903444, 58.646989040811548 ], [ 27.019725782918556, 58.650270494287838 ], [ 27.027942336269803, 58.65052887580697 ], [ 27.03770918143357, 58.653164374136509 ], [ 27.049956496195307, 58.657763577227286 ], [ 27.066131218680766, 58.667013658453527 ], [ 27.078533563073449, 58.672517198210073 ], [ 27.090935906566813, 58.67616038689232 ], [ 27.146798130029651, 58.683550117044263 ], [ 27.428693067930737, 58.709388332805304 ], [ 27.428848762000086, 58.709402604000061 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EE-50", "NAME_1": "Jõgeva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.446269007000126, 58.818866663000065 ], [ 27.410605509000106, 58.754864400000073 ], [ 27.428848762000086, 58.709402604000061 ], [ 27.428693067930737, 58.709388332805304 ], [ 27.146798130029651, 58.683550117044263 ], [ 27.090935906566813, 58.67616038689232 ], [ 27.078533563073449, 58.672517198210073 ], [ 27.066131218680766, 58.667013658453527 ], [ 27.049956496195307, 58.657763577227286 ], [ 27.03770918143357, 58.653164374136509 ], [ 27.027942336269803, 58.65052887580697 ], [ 27.019725782918556, 58.650270494287838 ], [ 27.013679639903444, 58.646989040811548 ], [ 27.010579053580443, 58.64009023707473 ], [ 27.018020460575769, 58.612236639709124 ], [ 27.013524611171874, 58.602366440858532 ], [ 26.989598423328573, 58.603348293688782 ], [ 26.977041050204264, 58.606681424008457 ], [ 26.93885216599466, 58.610169583059758 ], [ 26.891568231088968, 58.629729111809013 ], [ 26.862060988224016, 58.633139757393849 ], [ 26.841597121010295, 58.591514390976329 ], [ 26.811779818883508, 58.561438707330467 ], [ 26.720880975276771, 58.549914862980529 ], [ 26.685947707021057, 58.558131415432456 ], [ 26.674320509883614, 58.563092352829813 ], [ 26.664398635088901, 58.562498074526502 ], [ 26.65302981857127, 58.555935167573921 ], [ 26.63721683129171, 58.533223374758904 ], [ 26.625434605422697, 58.524283351895122 ], [ 26.621868931106292, 58.522888088814227 ], [ 26.61737308080302, 58.522035427193202 ], [ 26.580424431842061, 58.523456528695817 ], [ 26.542700637424446, 58.530587877328628 ], [ 26.508284133106258, 58.540871487329241 ], [ 26.47381595194463, 58.53337840438985 ], [ 26.46048343336372, 58.528391629470093 ], [ 26.4555224950671, 58.528624173466824 ], [ 26.437694126182976, 58.53699575554964 ], [ 26.412062615996888, 58.534179389167434 ], [ 26.390048456071383, 58.520821031265541 ], [ 26.379506462753056, 58.518133856991881 ], [ 26.371238234357008, 58.521286119258946 ], [ 26.364727004247811, 58.528624173466824 ], [ 26.3568205101584, 58.533998522014144 ], [ 26.342402785060472, 58.535419623516759 ], [ 26.323489210558591, 58.531776434834569 ], [ 26.235329217169635, 58.49766998977816 ], [ 26.217810906648026, 58.49343252189334 ], [ 26.197140333859295, 58.490461126779564 ], [ 26.167529738206838, 58.491365465243973 ], [ 26.131511265232689, 58.484673367082223 ], [ 26.064331902994923, 58.513586330744545 ], [ 26.032964308156295, 58.534153550745714 ], [ 26.028778517114858, 58.541930854525276 ], [ 26.021802199012257, 58.550483302862119 ], [ 26.012810500204409, 58.556787828295626 ], [ 25.981287875734836, 58.557072049135741 ], [ 25.968575473879014, 58.559371649781781 ], [ 25.957723423097491, 58.566347967884383 ], [ 25.950437045733054, 58.572600816474448 ], [ 25.945786166698213, 58.579163723427087 ], [ 25.942685581274532, 58.586346747104642 ], [ 25.928991326588459, 58.592444566063818 ], [ 25.916588983095096, 58.596527005217069 ], [ 25.828325636918578, 58.603348293688782 ], [ 25.81199588390291, 58.602056383395336 ], [ 25.790446811970753, 58.604200955309807 ], [ 25.760009393118992, 58.603916734469692 ], [ 25.750707635049309, 58.607068996736757 ], [ 25.749157342337469, 58.61311513885255 ], [ 25.757373894789396, 58.621021633841281 ], [ 25.767812534420898, 58.625620836032738 ], [ 25.785950961667538, 58.630788479005048 ], [ 25.791687046320135, 58.63546519646161 ], [ 25.79370242702538, 58.643655911391193 ], [ 25.787191196016863, 58.65704010681543 ], [ 25.785330844942507, 58.682413235482386 ], [ 25.777114291591261, 58.689777127212608 ], [ 25.783315464237262, 58.704995836188857 ], [ 25.81199588390291, 58.721428941092711 ], [ 25.819747349260751, 58.729748847231463 ], [ 25.827860548925173, 58.741737779574862 ], [ 25.835767043014584, 58.747267157753072 ], [ 25.847859328145432, 58.751685492791239 ], [ 25.85669599822171, 58.753571682287259 ], [ 25.887288445805098, 58.767420965704957 ], [ 25.907597284287249, 58.769591376041149 ], [ 25.927286004245673, 58.761478177276047 ], [ 25.9555530127613, 58.77346710872007 ], [ 25.958498568554091, 58.780598456453561 ], [ 25.961134066883687, 58.789848538579179 ], [ 25.961444126145466, 58.799512030955441 ], [ 25.965474887556013, 58.810544948890254 ], [ 25.976792026330941, 58.816591091905366 ], [ 26.001493361429482, 58.820647690838257 ], [ 26.009554885149839, 58.825556953190812 ], [ 26.021182082287226, 58.829536037757919 ], [ 26.030948928350369, 58.831809800881558 ], [ 26.050999382615373, 58.832610786558519 ], [ 26.113837925080134, 58.83532379835458 ], [ 26.117868687390001, 58.844367174005868 ], [ 26.111357456381484, 58.856821194342615 ], [ 26.112597690730809, 58.861549587743241 ], [ 26.11647342340973, 58.868086656274158 ], [ 26.121899447901171, 58.872789212152384 ], [ 26.127170443661043, 58.875889798475384 ], [ 26.15368045388982, 58.887155260406928 ], [ 26.235329217169635, 58.898317369550909 ], [ 26.29460208531799, 58.91609406249097 ], [ 26.31460086363893, 58.918497015924515 ], [ 26.330000440667789, 58.916042384748209 ], [ 26.356510450896565, 58.895991930483149 ], [ 26.410357292754838, 58.885527452429983 ], [ 26.451801792019069, 58.895061754496339 ], [ 26.455367466335474, 58.900022690994376 ], [ 26.456607699785479, 58.904156806091692 ], [ 26.456917759047315, 58.920176499845581 ], [ 26.505028517152311, 58.938754177563226 ], [ 26.526732618715357, 58.937746487210575 ], [ 26.538204787121231, 58.932940579444164 ], [ 26.5584102719165, 58.931441961777068 ], [ 26.574378289726269, 58.933405667437569 ], [ 26.61411746574845, 58.944309394163156 ], [ 26.667034133418497, 58.955704047303925 ], [ 26.67711103694478, 58.95676341449996 ], [ 26.703000928649942, 58.955884915356535 ], [ 26.728012323010262, 58.941673895833617 ], [ 26.728012323010262, 58.937901515942201 ], [ 26.730492790809649, 58.933974107319159 ], [ 26.731112909333262, 58.928806464346849 ], [ 26.73669396255633, 58.923793850106051 ], [ 26.74087975359771, 58.902348130961457 ], [ 26.745840691894387, 58.886922716410197 ], [ 26.751731805278553, 58.881625882228661 ], [ 26.759638299368021, 58.8811866317576 ], [ 26.766459587839677, 58.883202013362222 ], [ 26.775451288446163, 58.884158026871432 ], [ 26.797517124315789, 58.884261380558257 ], [ 26.824027133645302, 58.890643419458229 ], [ 26.83710127070708, 58.892503771431905 ], [ 26.846713088038541, 58.892684637685875 ], [ 26.871517775025268, 58.890100816199663 ], [ 26.89683922684884, 58.882349351741141 ], [ 26.910326775959902, 58.871704007433948 ], [ 26.91745812279413, 58.868965156316904 ], [ 26.924899529789457, 58.867156481186612 ], [ 26.953631626298488, 58.865761217206398 ], [ 26.95905765078993, 58.865347805157057 ], [ 27.445746291358262, 58.81891653097307 ], [ 27.446269007000126, 58.818866663000065 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EE-56", "NAME_1": "Lääne" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.585804963999561, 58.544166617807221 ], [ 23.584320509000065, 58.544867255000042 ], [ 23.573496941000087, 58.551947333000044 ], [ 23.566254102000073, 58.565904039000031 ], [ 23.565114780000044, 58.577378648000035 ], [ 23.561208530000044, 58.583156643000052 ], [ 23.546153191000087, 58.579901434000078 ], [ 23.532725457000083, 58.570257880000042 ], [ 23.52475019600007, 58.559556382000039 ], [ 23.516368035000085, 58.554632880000042 ], [ 23.501475457000083, 58.562486070000034 ], [ 23.498057488000086, 58.572211005000042 ], [ 23.504405144000089, 58.582953192000048 ], [ 23.513519727000073, 58.593817450000074 ], [ 23.518239780000044, 58.603745835000041 ], [ 23.512461785000085, 58.622381903000075 ], [ 23.500987175000091, 58.64712148600006 ], [ 23.493174675000091, 58.673407294000071 ], [ 23.49773196700005, 58.696600653000075 ], [ 23.506521030000044, 58.70538971600007 ], [ 23.514821811000047, 58.706691799000055 ], [ 23.535899285000085, 58.702785549000055 ], [ 23.543223504000082, 58.704901434000078 ], [ 23.54664147200009, 58.70962148600006 ], [ 23.54623457100007, 58.71430084800005 ], [ 23.530039910000085, 58.722845770000049 ], [ 23.527354363000086, 58.736151434000078 ], [ 23.533050977000073, 58.747463283000059 ], [ 23.546153191000087, 58.747748114000046 ], [ 23.584483269000089, 58.737941799000055 ], [ 23.621755405000044, 58.741400458000044 ], [ 23.658946160000085, 58.748928127000056 ], [ 23.69703209700009, 58.751166083000044 ], [ 23.716644727000073, 58.747015692000048 ], [ 23.75521894600007, 58.733587958000044 ], [ 23.771820509000065, 58.730698960000041 ], [ 23.80250084700009, 58.730698960000041 ], [ 23.805430535000085, 58.733872789000031 ], [ 23.806651238000086, 58.740952867000033 ], [ 23.804860873000052, 58.747992255000042 ], [ 23.799082879000082, 58.751166083000044 ], [ 23.783376498000052, 58.755845445000034 ], [ 23.779551629000082, 58.766424872000073 ], [ 23.785492384000065, 58.77798086100006 ], [ 23.799489780000044, 58.785345770000049 ], [ 23.81617272200009, 58.78461334800005 ], [ 23.85515384200005, 58.773260809000078 ], [ 23.87435957100007, 58.771673895000049 ], [ 23.84742272200009, 58.788234768000052 ], [ 23.815684441000087, 58.799953518000052 ], [ 23.784190300000091, 58.800970770000049 ], [ 23.757660352000073, 58.785345770000049 ], [ 23.739512566000087, 58.798000393000052 ], [ 23.719086134000065, 58.799058335000041 ], [ 23.676524285000085, 58.792181708000044 ], [ 23.603363477000073, 58.794826565000051 ], [ 23.580332879000082, 58.792181708000044 ], [ 23.56031334700009, 58.785834052000041 ], [ 23.55014082100007, 58.780910549000055 ], [ 23.54273522200009, 58.775376695000034 ], [ 23.536631707000083, 58.774481512000079 ], [ 23.504893425000091, 58.779120184000078 ], [ 23.485524936000047, 58.777329820000034 ], [ 23.42945397200009, 58.764837958000044 ], [ 23.46656334700009, 58.800726630000042 ], [ 23.48568769600007, 58.809637762000079 ], [ 23.518809441000087, 58.812648830000057 ], [ 23.526133660000085, 58.81976959800005 ], [ 23.463633660000085, 58.864162502000056 ], [ 23.455088738000086, 58.883002020000049 ], [ 23.422373894000089, 58.908677476000037 ], [ 23.422048373000052, 58.928697007000039 ], [ 23.443695509000065, 58.944037177000041 ], [ 23.510101759000065, 58.941595770000049 ], [ 23.531911655000044, 58.956691799000055 ], [ 23.549164259000065, 58.950832424000055 ], [ 23.566905144000089, 58.950140692000048 ], [ 23.584483269000089, 58.953558661000045 ], [ 23.616709832000083, 58.967678127000056 ], [ 23.624847852000073, 58.972601630000042 ], [ 23.627696160000085, 58.97915273600006 ], [ 23.628103061000047, 58.991400458000044 ], [ 23.621592644000089, 59.015326239000046 ], [ 23.605479363000086, 59.03266022300005 ], [ 23.583506707000083, 59.044745184000078 ], [ 23.559825066000087, 59.052801825000074 ], [ 23.572276238000086, 59.039740302000041 ], [ 23.601898634000065, 59.024481512000079 ], [ 23.614431186000047, 59.011297919000071 ], [ 23.605967644000089, 59.008490302000041 ], [ 23.58757571700005, 59.007473049000055 ], [ 23.580332879000082, 59.005072333000044 ], [ 23.559825066000087, 58.991400458000044 ], [ 23.558441602000073, 58.987941799000055 ], [ 23.558604363000086, 58.982001044000071 ], [ 23.552989129000082, 58.970892645000049 ], [ 23.543304884000065, 58.969875393000052 ], [ 23.537119988000086, 58.974351304000038 ], [ 23.531993035000085, 58.980536200000074 ], [ 23.525645379000082, 58.983954169000071 ], [ 23.461273634000065, 58.992377020000049 ], [ 23.434825066000087, 59.003810940000051 ], [ 23.408376498000052, 59.025580145000049 ], [ 23.415212436000047, 59.024969794000071 ], [ 23.42945397200009, 59.025864976000037 ], [ 23.436289910000085, 59.025580145000049 ], [ 23.429209832000083, 59.04360586100006 ], [ 23.43490644600007, 59.05609772300005 ], [ 23.480316602000073, 59.083644924000055 ], [ 23.490733269000089, 59.088283596000053 ], [ 23.501231316000087, 59.085435289000031 ], [ 23.518239780000044, 59.073309637000079 ], [ 23.519379102000073, 59.124986070000034 ], [ 23.486175977000073, 59.17413971600007 ], [ 23.470876498000052, 59.212144273000035 ], [ 23.525645379000082, 59.230414130000042 ], [ 23.53679446700005, 59.229681708000044 ], [ 23.557790561000047, 59.22524648600006 ], [ 23.56967207100007, 59.224188544000071 ], [ 23.578461134000065, 59.226304429000038 ], [ 23.592784050000091, 59.235663153000075 ], [ 23.615489129000082, 59.241766669000071 ], [ 23.627696160000085, 59.250067450000074 ], [ 23.641856316000087, 59.257391669000071 ], [ 23.662282748000052, 59.258286851000037 ], [ 23.715505405000044, 59.231675523000035 ], [ 23.718492145396169, 59.231437429493724 ], [ 23.718893670206683, 59.230545151837248 ], [ 23.734861688016451, 59.216437486001155 ], [ 23.76684939958011, 59.206257228788047 ], [ 23.778941684710958, 59.196955470718365 ], [ 23.795994907239162, 59.175974840466495 ], [ 23.80674360523318, 59.170497138232292 ], [ 23.838369581590882, 59.165768744831666 ], [ 23.860435418359828, 59.15985179302578 ], [ 23.874543084195977, 59.153624782857435 ], [ 23.908184442158245, 59.131352241412799 ], [ 23.931800570739711, 59.128277493511462 ], [ 23.942032504796259, 59.129362698229897 ], [ 23.968077427031631, 59.134737046777275 ], [ 24.021820916102399, 59.136984972378571 ], [ 24.073445671680361, 59.126262111906897 ], [ 24.115045199676217, 59.106883450310931 ], [ 24.117990757267592, 59.102025864801817 ], [ 24.119541049979432, 59.094584458705754 ], [ 24.118300815630107, 59.087401435028198 ], [ 24.122176548309028, 59.07758291302099 ], [ 24.132408482365577, 59.070968329224968 ], [ 24.143467237822733, 59.065232246371068 ], [ 24.147808057595739, 59.061149807217816 ], [ 24.147808057595739, 59.058075060215856 ], [ 24.144552443440489, 59.054380194690225 ], [ 24.10527835541177, 59.023942775838407 ], [ 24.099232212396657, 59.01805166335356 ], [ 24.092565951757251, 59.010196845208213 ], [ 24.08946536633357, 59.00068838246284 ], [ 24.08946536633357, 58.995830796953669 ], [ 24.093031039750656, 58.991386624393158 ], [ 24.10450320815653, 58.984668687809688 ], [ 24.08465945766784, 58.964902451686783 ], [ 24.08884524870922, 58.950303860334884 ], [ 24.1274475440689, 58.916920884790954 ], [ 24.165946485741699, 58.864469306013632 ], [ 24.176953566154111, 58.853152167238704 ], [ 24.186875440948825, 58.844728909211767 ], [ 24.185945264962015, 58.837029120697309 ], [ 24.176333449429137, 58.832119859244074 ], [ 24.149513380837845, 58.825505276347371 ], [ 24.142382033104354, 58.819769191694832 ], [ 24.142071973842519, 58.810105699318513 ], [ 24.145792677789814, 58.803129381215967 ], [ 24.160675489981884, 58.79431854956141 ], [ 24.118610873992623, 58.776412665412124 ], [ 24.111324496628185, 58.769746406571358 ], [ 24.074995965291521, 58.76111644117077 ], [ 24.07019005662579, 58.751091214487928 ], [ 24.075771111647441, 58.745871893772858 ], [ 24.094116245368411, 58.742202867568267 ], [ 24.140676710761568, 58.741996161993256 ], [ 24.151218703180575, 58.738611354830141 ], [ 24.154629346966772, 58.733650418332104 ], [ 24.151838819905606, 58.727914334578827 ], [ 24.133235303766241, 58.701481838715836 ], [ 24.086674839272405, 58.688511054441562 ], [ 24.060423210562703, 58.683860175406721 ], [ 24.022130975364178, 58.671044419864074 ], [ 24.005491163985994, 58.670424303139043 ], [ 23.972159865285562, 58.675281886849575 ], [ 23.964511752715225, 58.672956447781814 ], [ 23.961721225654003, 58.666910304766702 ], [ 23.959705844948758, 58.657582709174676 ], [ 23.953659701933702, 58.646446438452358 ], [ 23.932885776357466, 58.630504259064253 ], [ 23.915987582560888, 58.625259100826838 ], [ 23.899037712820189, 58.625155748039333 ], [ 23.872527704390052, 58.633139757393849 ], [ 23.861365594346694, 58.634069933380715 ], [ 23.859143508066438, 58.630271715067579 ], [ 23.861365594346694, 58.624742336889312 ], [ 23.863380975051939, 58.620918281053775 ], [ 23.864466179770375, 58.617197578005801 ], [ 23.86400109177697, 58.613373522170264 ], [ 23.861365594346694, 58.607430731942713 ], [ 23.861210564715748, 58.601565456980211 ], [ 23.865241327025615, 58.586191718373072 ], [ 23.898572624826784, 58.566218777574477 ], [ 23.901828240780674, 58.563350735248207 ], [ 23.902758415868163, 58.555625108312086 ], [ 23.824571974117305, 58.559216621050211 ], [ 23.747625766715771, 58.548881334206158 ], [ 23.651094191243885, 58.556219387514716 ], [ 23.635746291058467, 58.555547593946301 ], [ 23.586705356966661, 58.544747219108842 ], [ 23.585981885655485, 58.544282132014757 ], [ 23.585804963999561, 58.544166617807221 ] ] ], [ [ [ 23.364024285000085, 59.028957424000055 ], [ 23.389659050000091, 59.007513739000046 ], [ 23.393728061000047, 58.996242580000057 ], [ 23.384776238000086, 58.980536200000074 ], [ 23.374278191000087, 58.975531317000048 ], [ 23.362315300000091, 58.977484442000048 ], [ 23.350433790000068, 58.98187897300005 ], [ 23.340098504000082, 58.983954169000071 ], [ 23.32943769600007, 58.981838283000059 ], [ 23.299082879000082, 58.970892645000049 ], [ 23.278575066000087, 58.970689195000034 ], [ 23.244395379000082, 58.981350002000056 ], [ 23.223399285000085, 58.983954169000071 ], [ 23.217539910000085, 58.98187897300005 ], [ 23.215098504000082, 58.977362372000073 ], [ 23.210785352000073, 58.97296784100007 ], [ 23.174164259000065, 58.968329169000071 ], [ 23.163259311000047, 58.968939520000049 ], [ 23.148285352000073, 58.974025783000059 ], [ 23.119395379000082, 59.016099351000037 ], [ 23.114105665000068, 59.02179596600007 ], [ 23.11890709700009, 59.03351471600007 ], [ 23.131358269000089, 59.040716864000046 ], [ 23.14820397200009, 59.044419664000031 ], [ 23.170176629000082, 59.045884507000039 ], [ 23.208018425000091, 59.044094143000052 ], [ 23.278005405000044, 59.032375393000052 ], [ 23.32203209700009, 59.039007880000042 ], [ 23.344248894000089, 59.039292710000041 ], [ 23.364024285000085, 59.028957424000055 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EE-37", "NAME_1": "Harju" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.718492145396169, 59.231437429493724 ], [ 23.730479363000086, 59.230414130000042 ], [ 23.742198113000086, 59.239406643000052 ], [ 23.742930535000085, 59.250148830000057 ], [ 23.73601321700005, 59.259588934000078 ], [ 23.723643425000091, 59.26508209800005 ], [ 23.734873894000089, 59.277736721000053 ], [ 23.756846550000091, 59.283636786000045 ], [ 23.84538821700005, 59.284654039000031 ], [ 23.888845248000052, 59.27875397300005 ], [ 23.935557488000086, 59.280585028000075 ], [ 23.98764082100007, 59.290920315000051 ], [ 24.038584832000083, 59.29328034100007 ], [ 24.080577019000089, 59.271307684000078 ], [ 24.100108269000089, 59.294501044000071 ], [ 24.092051629000082, 59.312567450000074 ], [ 24.028168165000068, 59.357652085000041 ], [ 24.019379102000073, 59.367254950000074 ], [ 24.022227410000085, 59.378119208000044 ], [ 24.03484134200005, 59.388657945000034 ], [ 24.04818769600007, 59.395086981000077 ], [ 24.062998894000089, 59.397365627000056 ], [ 24.080577019000089, 59.395453192000048 ], [ 24.108653191000087, 59.384833075000074 ], [ 24.164886915000068, 59.354071356000077 ], [ 24.193858269000089, 59.347723700000074 ], [ 24.221934441000087, 59.355169989000046 ], [ 24.213389519000089, 59.372259833000044 ], [ 24.18726647200009, 59.390692450000074 ], [ 24.163096550000091, 59.402289130000042 ], [ 24.182871941000087, 59.408758856000077 ], [ 24.27125084700009, 59.412095445000034 ], [ 24.306162957000083, 59.419094143000052 ], [ 24.31771894600007, 59.430975653000075 ], [ 24.329600457000083, 59.463812567000048 ], [ 24.333832227000073, 59.470607815000051 ], [ 24.399668816000087, 59.47882721600007 ], [ 24.422536655000044, 59.477443752000056 ], [ 24.442149285000085, 59.469875393000052 ], [ 24.47828209700009, 59.448391018000052 ], [ 24.498301629000082, 59.443833726000037 ], [ 24.516774936000047, 59.448228257000039 ], [ 24.532399936000047, 59.456773179000038 ], [ 24.54818769600007, 59.462958075000074 ], [ 24.567149285000085, 59.460028387000079 ], [ 24.624847852000073, 59.43891022300005 ], [ 24.642588738000086, 59.436428127000056 ], [ 24.660492384000065, 59.440619208000044 ], [ 24.656586134000065, 59.449896552000041 ], [ 24.64039147200009, 59.459051825000074 ], [ 24.621836785000085, 59.463120835000041 ], [ 24.621836785000085, 59.470607815000051 ], [ 24.64812259200005, 59.469224351000037 ], [ 24.658539259000065, 59.472072658000059 ], [ 24.662771030000044, 59.481146552000041 ], [ 24.666270379000082, 59.492092190000051 ], [ 24.674978061000047, 59.496039130000042 ], [ 24.686289910000085, 59.495062567000048 ], [ 24.697520379000082, 59.491034247000073 ], [ 24.715586785000085, 59.475897528000075 ], [ 24.72828209700009, 59.458563544000071 ], [ 24.744395379000082, 59.447211005000042 ], [ 24.772634311000047, 59.450100002000056 ], [ 24.784190300000091, 59.454779364000046 ], [ 24.790049675000091, 59.458929755000042 ], [ 24.813243035000085, 59.484035549000055 ], [ 24.81576582100007, 59.489325262000079 ], [ 24.806813998000052, 59.504706122000073 ], [ 24.800303582000083, 59.510565497000073 ], [ 24.791351759000065, 59.514715887000079 ], [ 24.783539259000065, 59.51984284100007 ], [ 24.780121290000068, 59.528957424000055 ], [ 24.779958530000044, 59.538397528000075 ], [ 24.77898196700005, 59.545477606000077 ], [ 24.77670332100007, 59.552150783000059 ], [ 24.772634311000047, 59.559963283000059 ], [ 24.803477410000085, 59.570502020000049 ], [ 24.841644727000073, 59.554429429000038 ], [ 24.909190300000091, 59.511542059000078 ], [ 24.934418165000068, 59.508042710000041 ], [ 25.012217644000089, 59.518377997000073 ], [ 25.035817905000044, 59.515204169000071 ], [ 25.077159050000091, 59.501044012000079 ], [ 25.097829623000052, 59.497870184000078 ], [ 25.116465691000087, 59.503119208000044 ], [ 25.107920769000089, 59.528998114000046 ], [ 25.122080925000091, 59.539496161000045 ], [ 25.145518425000091, 59.539129950000074 ], [ 25.194102410000085, 59.522650458000044 ], [ 25.407725457000083, 59.491034247000073 ], [ 25.409434441000087, 59.491034247000073 ], [ 25.402354363000086, 59.51430898600006 ], [ 25.41578209700009, 59.527085679000038 ], [ 25.440114780000044, 59.532131252000056 ], [ 25.533213738000086, 59.532049872000073 ], [ 25.543711785000085, 59.535142320000034 ], [ 25.543304884000065, 59.542222398000035 ], [ 25.536143425000091, 59.549302476000037 ], [ 25.525726759000065, 59.552476304000038 ], [ 25.497080925000091, 59.570868231000077 ], [ 25.481944207000083, 59.611151434000078 ], [ 25.478526238000086, 59.651516018000052 ], [ 25.484873894000089, 59.669826565000051 ], [ 25.502452019000089, 59.662258205000057 ], [ 25.535329623000052, 59.628973700000074 ], [ 25.553721550000091, 59.62140534100007 ], [ 25.575043165000068, 59.616888739000046 ], [ 25.592051629000082, 59.606024481000077 ], [ 25.622325066000087, 59.580471096000053 ], [ 25.644541863000086, 59.571844794000071 ], [ 25.676768425000091, 59.566066799000055 ], [ 25.705902540000068, 59.569281317000048 ], [ 25.71851647200009, 59.587591864000046 ], [ 25.710785352000073, 59.604559637000079 ], [ 25.695567254000082, 59.615912177000041 ], [ 25.684825066000087, 59.628648179000038 ], [ 25.690684441000087, 59.649359442000048 ], [ 25.684336785000085, 59.650213934000078 ], [ 25.675303582000083, 59.654120184000078 ], [ 25.670664910000085, 59.655503648000035 ], [ 25.69467207100007, 59.670884507000039 ], [ 25.725352410000085, 59.665838934000078 ], [ 25.780528191000087, 59.635687567000048 ], [ 25.77312259200005, 59.628241278000075 ], [ 25.785411004000082, 59.615464585000041 ], [ 25.793711785000085, 59.591213283000059 ], [ 25.807383660000085, 59.580471096000053 ], [ 25.826182488000086, 59.575262762000079 ], [ 25.836874902554712, 59.576477809803066 ], [ 25.837782423719887, 59.572849840347828 ], [ 25.837317335726425, 59.549130357180218 ], [ 25.832356398329125, 59.544531154988761 ], [ 25.814941440594964, 59.532697252276364 ], [ 25.813236118252235, 59.526857814836262 ], [ 25.81509647022591, 59.52143179034482 ], [ 25.824449904239657, 59.510062974726452 ], [ 25.828945753643609, 59.505877184584392 ], [ 25.841193068405346, 59.496833808033784 ], [ 25.848479444870463, 59.456267808812299 ], [ 25.850959913569113, 59.450738429734713 ], [ 25.859486525282875, 59.443245347694585 ], [ 25.888838739416258, 59.431540636191357 ], [ 25.891939324839939, 59.425752874695377 ], [ 25.894419792639326, 59.418492337551299 ], [ 25.892714471195859, 59.411412664862553 ], [ 25.896435174243891, 59.39906199821263 ], [ 25.897675408593216, 59.390587063342252 ], [ 25.901086053278732, 59.380665188547596 ], [ 25.907287225025414, 59.372035224046328 ], [ 25.917674187813475, 59.3610798204773 ], [ 25.924185417922672, 59.349607652071484 ], [ 25.944545933248207, 59.29942983731712 ], [ 25.945476109235017, 59.293797106351349 ], [ 25.944080845254803, 59.284857083487566 ], [ 25.925890741164778, 59.276330470874484 ], [ 25.848169387407268, 59.289766344041539 ], [ 25.798663364422737, 59.292091783109299 ], [ 25.666009963189254, 59.272713121513334 ], [ 25.664614699208983, 59.2600523947022 ], [ 25.658413526562981, 59.2585537788338 ], [ 25.648284946193314, 59.257830309321264 ], [ 25.632626986746004, 59.260620836382486 ], [ 25.593507928348174, 59.272196357575808 ], [ 25.523383010317673, 59.267907212847547 ], [ 25.489431593992833, 59.263773097750231 ], [ 25.487416213287588, 59.259638984451556 ], [ 25.489276564361944, 59.253592841436443 ], [ 25.499663527150062, 59.244084377791751 ], [ 25.510515577931585, 59.231914578295118 ], [ 25.516871779309156, 59.211631578234744 ], [ 25.512841016999289, 59.19881582269204 ], [ 25.504159376553957, 59.184733995277611 ], [ 25.485814242833044, 59.167164007912618 ], [ 25.45852908714761, 59.131998196559493 ], [ 25.473256869708734, 59.105591539118222 ], [ 25.477597691280437, 59.101974188857696 ], [ 25.48958662272446, 59.095824693055135 ], [ 25.489741652355349, 59.085773627051196 ], [ 25.484160597333698, 59.080812690553216 ], [ 25.476512484763361, 59.07525747305391 ], [ 25.465195346887754, 59.071304226009204 ], [ 25.450622593058199, 59.071924342734178 ], [ 25.434344516885915, 59.074792385060505 ], [ 25.411038445767645, 59.075024929057179 ], [ 25.401426629335447, 59.069779771719084 ], [ 25.398946160636797, 59.06099477848619 ], [ 25.402511834053882, 59.039962470491616 ], [ 25.397395867924956, 59.01593292896149 ], [ 25.320449659624046, 58.992213446693199 ], [ 25.279315219621651, 59.003168850262227 ], [ 25.247017449695534, 59.01805166335356 ], [ 25.216011590062806, 59.028671170138352 ], [ 25.202524040951687, 59.036629340171885 ], [ 25.19642622199251, 59.044044907846171 ], [ 25.194720899649781, 59.051021226848093 ], [ 25.19239546058202, 59.056705633757986 ], [ 25.190845167870179, 59.063423570341456 ], [ 25.188054639909694, 59.069573066144073 ], [ 25.184488967391928, 59.080786852131496 ], [ 25.167590772695974, 59.089830226883407 ], [ 25.156583693182881, 59.0943777531308 ], [ 25.147126906381629, 59.094532782761689 ], [ 25.141339145784912, 59.093085842837354 ], [ 25.118394809872541, 59.093085842837354 ], [ 25.060517205704457, 59.109673977372154 ], [ 25.046099480606529, 59.125745347969428 ], [ 24.980108676774023, 59.137630927525265 ], [ 24.956544224136621, 59.146519274444927 ], [ 24.951583285839945, 59.150214138171918 ], [ 24.941661411045288, 59.15964508745077 ], [ 24.923678013429537, 59.175251370054639 ], [ 24.905332878809304, 59.183958848921691 ], [ 24.899286736693512, 59.192356269426284 ], [ 24.897891472713297, 59.202226468276876 ], [ 24.903627557365837, 59.225739244070837 ], [ 24.866110466724649, 59.226566067270142 ], [ 24.797949252555952, 59.216825060528095 ], [ 24.783841586719859, 59.21307851815908 ], [ 24.775625034267875, 59.208996079905148 ], [ 24.663900588241518, 59.216850898050495 ], [ 24.63082767106016, 59.204913642550537 ], [ 24.616875033955637, 59.195250149274955 ], [ 24.597186313997156, 59.187085272767092 ], [ 24.589279819008425, 59.181400864957936 ], [ 24.573570183617051, 59.166207994403408 ], [ 24.568454216588805, 59.146183376761428 ], [ 24.554966668377006, 59.134582018045649 ], [ 24.556982049082308, 59.129155991755567 ], [ 24.563493280090768, 59.123884995995752 ], [ 24.571089714918401, 59.115461737968815 ], [ 24.57279503816045, 59.110345770940569 ], [ 24.565818719158528, 59.09667735557548 ], [ 24.556361932357277, 59.095566311536004 ], [ 24.482826368741883, 59.099287014584036 ], [ 24.430219761232991, 59.092930813206408 ], [ 24.374357537770152, 59.086212877522257 ], [ 24.365055779700469, 59.080528468813782 ], [ 24.311363966573765, 59.03613841375676 ], [ 24.290228305791686, 59.015261135393075 ], [ 24.222738885191404, 59.018387560137739 ], [ 24.190596143996856, 59.023374335057497 ], [ 24.16827192570878, 59.022754218332466 ], [ 24.154629346966772, 59.019343574546326 ], [ 24.1474980001326, 59.01438263624965 ], [ 24.143312209091164, 59.009680081270687 ], [ 24.140831740392514, 59.004770819817452 ], [ 24.132563511097146, 58.995830796953669 ], [ 24.10450320815653, 58.984668687809688 ], [ 24.093031039750656, 58.991386624393158 ], [ 24.08946536633357, 58.995830796953669 ], [ 24.08946536633357, 59.00068838246284 ], [ 24.092565951757251, 59.010196845208213 ], [ 24.099232212396657, 59.01805166335356 ], [ 24.10527835541177, 59.023942775838407 ], [ 24.144552443440489, 59.054380194690225 ], [ 24.147808057595739, 59.058075060215856 ], [ 24.147808057595739, 59.061149807217816 ], [ 24.143467237822733, 59.065232246371068 ], [ 24.132408482365577, 59.070968329224968 ], [ 24.122176548309028, 59.07758291302099 ], [ 24.118300815630107, 59.087401435028198 ], [ 24.119541049979432, 59.094584458705754 ], [ 24.117990757267592, 59.102025864801817 ], [ 24.115045199676217, 59.106883450310931 ], [ 24.073445671680361, 59.126262111906897 ], [ 24.021820916102399, 59.136984972378571 ], [ 23.968077427031631, 59.134737046777275 ], [ 23.942032504796259, 59.129362698229897 ], [ 23.931800570739711, 59.128277493511462 ], [ 23.908184442158245, 59.131352241412799 ], [ 23.874543084195977, 59.153624782857435 ], [ 23.860435418359828, 59.15985179302578 ], [ 23.838369581590882, 59.165768744831666 ], [ 23.80674360523318, 59.170497138232292 ], [ 23.795994907239162, 59.175974840466495 ], [ 23.778941684710958, 59.196955470718365 ], [ 23.76684939958011, 59.206257228788047 ], [ 23.734861688016451, 59.216437486001155 ], [ 23.718893670206683, 59.230545151837248 ], [ 23.718492145396169, 59.231437429493724 ] ] ], [ [ [ 24.515879754000082, 59.598089911000045 ], [ 24.53093509200005, 59.583970445000034 ], [ 24.550059441000087, 59.557766018000052 ], [ 24.542816602000073, 59.547796942000048 ], [ 24.516286655000044, 59.544256903000075 ], [ 24.489105665000068, 59.559637762000079 ], [ 24.487315300000091, 59.578517971000053 ], [ 24.500498894000089, 59.596258856000077 ], [ 24.515879754000082, 59.598089911000045 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EE-60", "NAME_1": "Lääne-Viru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.836874902554712, 59.576477809803066 ], [ 25.844493035000085, 59.577337958000044 ], [ 25.861338738000086, 59.586127020000049 ], [ 25.876231316000087, 59.600897528000075 ], [ 25.86882571700005, 59.60773346600007 ], [ 25.883067254000082, 59.631333726000037 ], [ 25.904470248000052, 59.624009507000039 ], [ 25.926931186000047, 59.605292059000078 ], [ 25.944509311000047, 59.594671942000048 ], [ 25.965017123000052, 59.597316799000055 ], [ 25.967051629000082, 59.60382721600007 ], [ 25.962738477000073, 59.612534898000035 ], [ 25.964366082000083, 59.62140534100007 ], [ 25.976898634000065, 59.631252346000053 ], [ 25.988536004000082, 59.634344794000071 ], [ 26.001800977000073, 59.632635809000078 ], [ 26.036387566000087, 59.623236395000049 ], [ 26.074473504000082, 59.604315497000073 ], [ 26.078379754000082, 59.600287177000041 ], [ 26.080332879000082, 59.594671942000048 ], [ 26.08171634200005, 59.587307033000059 ], [ 26.090993686000047, 59.585638739000046 ], [ 26.280039910000085, 59.587307033000059 ], [ 26.299327019000089, 59.584214585000041 ], [ 26.340098504000082, 59.570502020000049 ], [ 26.40170332100007, 59.563055731000077 ], [ 26.457692905000044, 59.545884507000039 ], [ 26.49781334700009, 59.539984442000048 ], [ 26.519867384000065, 59.539496161000045 ], [ 26.53646894600007, 59.542669989000046 ], [ 26.570323113000086, 59.556789455000057 ], [ 26.584727410000085, 59.559963283000059 ], [ 26.62631269600007, 59.55805084800005 ], [ 26.665049675000091, 59.551947333000044 ], [ 26.702321811000047, 59.541408596000053 ], [ 26.739024285000085, 59.525824286000045 ], [ 26.780853712000066, 59.502549546000068 ], [ 26.779223667438259, 59.500761217556089 ], [ 26.769766879737688, 59.487428697176597 ], [ 26.765684442383076, 59.479909775815486 ], [ 26.766304559108107, 59.47556895604248 ], [ 26.769456821375172, 59.469755357024098 ], [ 26.785424839184941, 59.449963284278112 ], [ 26.790230746951408, 59.439292101549199 ], [ 26.789455600595488, 59.427742417878278 ], [ 26.794416537992788, 59.404643053234281 ], [ 26.786665072635003, 59.398751939850115 ], [ 26.771937290073879, 59.407407741873783 ], [ 26.764289178402862, 59.409862372150712 ], [ 26.757932977025234, 59.409707343419143 ], [ 26.750181511667392, 59.407588609027073 ], [ 26.744135369551657, 59.403221950832346 ], [ 26.739794548879331, 59.399346218153426 ], [ 26.744910515907577, 59.379089057414035 ], [ 26.728787469366182, 59.370019843341083 ], [ 26.711217482001189, 59.363663641963456 ], [ 26.708581983671593, 59.360614732483896 ], [ 26.709822218920237, 59.35779836700101 ], [ 26.717883741741275, 59.352010607303669 ], [ 26.725996942305017, 59.350331122483283 ], [ 26.736383905093135, 59.350176092852394 ], [ 26.745375603900982, 59.350951240107634 ], [ 26.786665072635003, 59.347669785732023 ], [ 26.795501742711224, 59.345680244347761 ], [ 26.79891238829606, 59.34046092453201 ], [ 26.789455600595488, 59.327748521776812 ], [ 26.747701042968743, 59.284288641807336 ], [ 26.74165490085295, 59.26103424753245 ], [ 26.754522332339775, 59.249717108757523 ], [ 26.767854851819948, 59.244549465785212 ], [ 26.774727817135044, 59.243386745801672 ], [ 26.843457472084651, 59.255143134148284 ], [ 26.854154494134605, 59.228762315128733 ], [ 26.860665724243745, 59.219744777899166 ], [ 26.878959181121274, 59.209409491954489 ], [ 26.892653435807404, 59.206386419997273 ], [ 26.922884149084211, 59.205120348125547 ], [ 26.933271111872273, 59.200262763515695 ], [ 26.938748814106475, 59.194681708494045 ], [ 26.930015496817703, 59.165742906409946 ], [ 26.937611931645336, 59.158766588307401 ], [ 26.939368930831449, 59.155355942722565 ], [ 26.94133263469331, 59.149878242287002 ], [ 26.93750857885783, 59.145020656777888 ], [ 26.928775261569058, 59.142566026500901 ], [ 26.875548537335135, 59.13850942756801 ], [ 26.808679234359147, 59.117192897833945 ], [ 26.801547885726336, 59.111896064551729 ], [ 26.79891238829606, 59.096806545885329 ], [ 26.799222445759256, 59.040427558485021 ], [ 26.810694614165072, 59.026423245436376 ], [ 26.810539585433503, 59.02011872000287 ], [ 26.803253208069066, 59.014796048298933 ], [ 26.788835483870457, 59.007147935728597 ], [ 26.783254428848807, 58.998828030489165 ], [ 26.781084019411935, 58.991593329068849 ], [ 26.780463900888321, 58.984772039697873 ], [ 26.77674319784029, 58.980482896768251 ], [ 26.769766879737688, 58.976710516876835 ], [ 26.738864372892465, 58.970483506708433 ], [ 26.703000928649942, 58.955884915356535 ], [ 26.67711103694478, 58.95676341449996 ], [ 26.667034133418497, 58.955704047303925 ], [ 26.61411746574845, 58.944309394163156 ], [ 26.574378289726269, 58.933405667437569 ], [ 26.5584102719165, 58.931441961777068 ], [ 26.538204787121231, 58.932940579444164 ], [ 26.526732618715357, 58.937746487210575 ], [ 26.505028517152311, 58.938754177563226 ], [ 26.456917759047315, 58.920176499845581 ], [ 26.456607699785479, 58.904156806091692 ], [ 26.455367466335474, 58.900022690994376 ], [ 26.451801792019069, 58.895061754496339 ], [ 26.410357292754838, 58.885527452429983 ], [ 26.356510450896565, 58.895991930483149 ], [ 26.330000440667789, 58.916042384748209 ], [ 26.31460086363893, 58.918497015924515 ], [ 26.29460208531799, 58.91609406249097 ], [ 26.235329217169635, 58.898317369550909 ], [ 26.15368045388982, 58.887155260406928 ], [ 26.1563676290628, 58.898420722338415 ], [ 26.162258742446966, 58.911959947393655 ], [ 26.164894239877242, 58.920176499845581 ], [ 26.165979444595678, 58.927695421206693 ], [ 26.164274123152268, 58.936971340854654 ], [ 26.160553420104236, 58.948443509260528 ], [ 26.147634311774027, 58.967382921284752 ], [ 26.135076938649775, 58.981258043124171 ], [ 26.11554324742292, 58.991334947549774 ], [ 26.086501091652053, 59.013762519524619 ], [ 26.066192254069279, 59.017586575360156 ], [ 26.040922479089147, 59.044871731045532 ], [ 26.027383254033907, 59.049005846142848 ], [ 26.005524122839972, 59.050478624488903 ], [ 25.980202671016457, 59.057015693019764 ], [ 25.966560093173769, 59.05830760421253 ], [ 25.939584994951531, 59.057067368963885 ], [ 25.930851677662758, 59.058772691306615 ], [ 25.927957797814088, 59.064508775059892 ], [ 25.937569614246286, 59.083680731980166 ], [ 25.939119906958126, 59.102387600007717 ], [ 25.971676060202014, 59.121559556927991 ], [ 25.984285109270331, 59.13582225239503 ], [ 26.011415236224138, 59.155976061246179 ], [ 26.018701612689256, 59.178713691583596 ], [ 25.982683139715107, 59.185379951323682 ], [ 25.956793247110625, 59.195766913212424 ], [ 25.95307254406265, 59.203259996151871 ], [ 25.960048862165252, 59.214267076564283 ], [ 25.947801548302778, 59.225945950545167 ], [ 25.932298617587094, 59.242379055449021 ], [ 25.925115593909538, 59.244756171360166 ], [ 25.920154657411501, 59.247856756783847 ], [ 25.917674187813475, 59.250879828741063 ], [ 25.918604363800341, 59.257313544484475 ], [ 25.925270622641108, 59.265194200152166 ], [ 25.930231560937784, 59.272764798356718 ], [ 25.925890741164778, 59.276330470874484 ], [ 25.944080845254803, 59.284857083487566 ], [ 25.945476109235017, 59.293797106351349 ], [ 25.944545933248207, 59.29942983731712 ], [ 25.924185417922672, 59.349607652071484 ], [ 25.917674187813475, 59.3610798204773 ], [ 25.907287225025414, 59.372035224046328 ], [ 25.901086053278732, 59.380665188547596 ], [ 25.897675408593216, 59.390587063342252 ], [ 25.896435174243891, 59.39906199821263 ], [ 25.892714471195859, 59.411412664862553 ], [ 25.894419792639326, 59.418492337551299 ], [ 25.891939324839939, 59.425752874695377 ], [ 25.888838739416258, 59.431540636191357 ], [ 25.859486525282875, 59.443245347694585 ], [ 25.850959913569113, 59.450738429734713 ], [ 25.848479444870463, 59.456267808812299 ], [ 25.841193068405346, 59.496833808033784 ], [ 25.828945753643609, 59.505877184584392 ], [ 25.824449904239657, 59.510062974726452 ], [ 25.81509647022591, 59.52143179034482 ], [ 25.813236118252235, 59.526857814836262 ], [ 25.814941440594964, 59.532697252276364 ], [ 25.832356398329125, 59.544531154988761 ], [ 25.837317335726425, 59.549130357180218 ], [ 25.837782423719887, 59.572849840347828 ], [ 25.836874902554712, 59.576477809803066 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EE-74", "NAME_1": "Saare" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.230642123000052, 58.504828192000048 ], [ 23.255137566000087, 58.500067450000074 ], [ 23.288584832000083, 58.488185940000051 ], [ 23.318369988000086, 58.472479559000078 ], [ 23.333262566000087, 58.456366278000075 ], [ 23.324961785000085, 58.442287502000056 ], [ 23.26140384200005, 58.465887762000079 ], [ 23.23764082100007, 58.456366278000075 ], [ 23.250254754000082, 58.45453522300005 ], [ 23.261729363000086, 58.451605536000045 ], [ 23.271332227000073, 58.445990302000041 ], [ 23.278005405000044, 58.436509507000039 ], [ 23.234873894000089, 58.439886786000045 ], [ 23.215668165000068, 58.445868231000077 ], [ 23.196055535000085, 58.456366278000075 ], [ 23.192230665000068, 58.461127020000049 ], [ 23.188243035000085, 58.46820709800005 ], [ 23.181895379000082, 58.474676825000074 ], [ 23.171885613000086, 58.477484442000048 ], [ 23.156504754000082, 58.477525132000039 ], [ 23.154795769000089, 58.475490627000056 ], [ 23.148936394000089, 58.470038153000075 ], [ 23.146983269000089, 58.466376044000071 ], [ 23.141612175000091, 58.451849677000041 ], [ 23.13803144600007, 58.446112372000073 ], [ 23.130381707000083, 58.439520575000074 ], [ 23.123545769000089, 58.435695705000057 ], [ 23.108653191000087, 58.429022528000075 ], [ 23.101898634000065, 58.429592190000051 ], [ 23.092539910000085, 58.431545315000051 ], [ 23.084239129000082, 58.429632880000042 ], [ 23.080577019000089, 58.418524481000077 ], [ 23.081065300000091, 58.41242096600007 ], [ 23.082286004000082, 58.405991929000038 ], [ 23.084239129000082, 58.399969794000071 ], [ 23.086761915000068, 58.394964911000045 ], [ 23.06381269600007, 58.385443427000041 ], [ 23.042491082000083, 58.371486721000053 ], [ 23.021983269000089, 58.363226630000042 ], [ 22.977549675000091, 58.381659247000073 ], [ 22.95484459700009, 58.381048895000049 ], [ 22.947520379000082, 58.372626044000071 ], [ 22.969493035000085, 58.360174872000073 ], [ 22.902679884000065, 58.311835028000075 ], [ 22.886973504000082, 58.307359117000033 ], [ 22.870941602000073, 58.304673570000034 ], [ 22.854014519000089, 58.298732815000051 ], [ 22.824880405000044, 58.279201565000051 ], [ 22.811208530000044, 58.273423570000034 ], [ 22.788584832000083, 58.271389065000051 ], [ 22.742930535000085, 58.273830471000053 ], [ 22.721202019000089, 58.270331122000073 ], [ 22.710134311000047, 58.257757880000042 ], [ 22.756683790000068, 58.242254950000074 ], [ 22.723155144000089, 58.225409247000073 ], [ 22.669200066000087, 58.221502997000073 ], [ 22.654958530000044, 58.244696356000077 ], [ 22.639821811000047, 58.250230210000041 ], [ 22.621348504000082, 58.252752997000073 ], [ 22.602549675000091, 58.252101955000057 ], [ 22.586192254000082, 58.247788804000038 ], [ 22.570974155000044, 58.239447333000044 ], [ 22.564952019000089, 58.235174872000073 ], [ 22.56031334700009, 58.237250067000048 ], [ 22.549082879000082, 58.247788804000038 ], [ 22.535004102000073, 58.254055080000057 ], [ 22.526133660000085, 58.247381903000075 ], [ 22.517588738000086, 58.230414130000042 ], [ 22.510427280000044, 58.22719961100006 ], [ 22.50717207100007, 58.22492096600007 ], [ 22.504161004000082, 58.223537502000056 ], [ 22.497243686000047, 58.223049221000053 ], [ 22.496836785000085, 58.226507880000042 ], [ 22.49154707100007, 58.241522528000075 ], [ 22.490977410000085, 58.244696356000077 ], [ 22.476817254000082, 58.245103257000039 ], [ 22.459320509000065, 58.240912177000041 ], [ 22.44304446700005, 58.234076239000046 ], [ 22.432383660000085, 58.226752020000049 ], [ 22.42164147200009, 58.221625067000048 ], [ 22.410004102000073, 58.224025783000059 ], [ 22.398448113000086, 58.227728583000044 ], [ 22.387950066000087, 58.226752020000049 ], [ 22.38054446700005, 58.223456122000073 ], [ 22.361501498000052, 58.217718817000048 ], [ 22.353770379000082, 58.216782945000034 ], [ 22.323415561000047, 58.206610419000071 ], [ 22.295095248000052, 58.192857164000031 ], [ 22.281993035000085, 58.182562567000048 ], [ 22.27475019600007, 58.179266669000071 ], [ 22.271739129000082, 58.174261786000045 ], [ 22.269867384000065, 58.13703034100007 ], [ 22.26539147200009, 58.115057684000078 ], [ 22.256846550000091, 58.093247789000031 ], [ 22.229258660000085, 58.05219147300005 ], [ 22.221039259000065, 58.042954820000034 ], [ 22.209808790000068, 58.034898179000038 ], [ 22.199880405000044, 58.02602773600006 ], [ 22.198415561000047, 58.016343492000033 ], [ 22.202972852000073, 57.993963934000078 ], [ 22.189952019000089, 57.98383209800005 ], [ 22.048350457000083, 57.915106512000079 ], [ 22.016856316000087, 57.914496161000045 ], [ 21.990082227000073, 57.935614325000074 ], [ 21.994395379000082, 57.947251695000034 ], [ 21.990733269000089, 57.958238023000035 ], [ 21.980804884000065, 57.966498114000046 ], [ 21.966807488000086, 57.969712632000039 ], [ 21.964121941000087, 57.971380927000041 ], [ 21.96265709700009, 57.975287177000041 ], [ 21.96225019600007, 57.979966539000031 ], [ 21.963389519000089, 57.984035549000055 ], [ 21.989756707000083, 57.98273346600007 ], [ 21.997569207000083, 57.984035549000055 ], [ 22.004567905000044, 57.990952867000033 ], [ 22.01539147200009, 58.01203034100007 ], [ 22.021332227000073, 58.021226304000038 ], [ 22.058929884000065, 58.052313544000071 ], [ 22.076182488000086, 58.073391018000052 ], [ 22.08570397200009, 58.082586981000077 ], [ 22.096202019000089, 58.086411851000037 ], [ 22.11068769600007, 58.084051825000074 ], [ 22.123545769000089, 58.07953522300005 ], [ 22.135508660000085, 58.076727606000077 ], [ 22.147715691000087, 58.079575914000031 ], [ 22.153168165000068, 58.08624909100007 ], [ 22.159027540000068, 58.107123114000046 ], [ 22.165049675000091, 58.116888739000046 ], [ 22.202972852000073, 58.14789459800005 ], [ 22.180349155000044, 58.160834052000041 ], [ 22.141856316000087, 58.169501044000071 ], [ 22.072276238000086, 58.175848700000074 ], [ 22.052989129000082, 58.186590887000079 ], [ 22.016856316000087, 58.233872789000031 ], [ 21.99382571700005, 58.244696356000077 ], [ 21.928884311000047, 58.245103257000039 ], [ 21.896494988000086, 58.250718492000033 ], [ 21.867849155000044, 58.264593817000048 ], [ 21.85132897200009, 58.28188711100006 ], [ 21.843760613000086, 58.29360586100006 ], [ 21.843272332000083, 58.302150783000059 ], [ 21.855642123000052, 58.306870835000041 ], [ 21.908213738000086, 58.298732815000051 ], [ 21.896657748000052, 58.31391022300005 ], [ 21.879567905000044, 58.32953522300005 ], [ 21.873301629000082, 58.341620184000078 ], [ 21.894541863000086, 58.346502997000073 ], [ 21.912364129000082, 58.339748440000051 ], [ 21.928396030000044, 58.32680898600006 ], [ 21.944590691000087, 58.318752346000053 ], [ 21.963389519000089, 58.326605536000045 ], [ 21.954925977000073, 58.34406159100007 ], [ 21.968028191000087, 58.354559637000079 ], [ 21.990489129000082, 58.357855536000045 ], [ 22.011241082000083, 58.353949286000045 ], [ 22.002207879000082, 58.365423895000049 ], [ 21.990082227000073, 58.386948960000041 ], [ 21.945974155000044, 58.43227773600006 ], [ 21.924489780000044, 58.446966864000046 ], [ 21.901133660000085, 58.468410549000055 ], [ 21.887705925000091, 58.477484442000048 ], [ 21.859385613000086, 58.491888739000046 ], [ 21.832367384000065, 58.510972398000035 ], [ 21.885020379000082, 58.498195705000057 ], [ 21.901377800000091, 58.497992255000042 ], [ 21.916270379000082, 58.501166083000044 ], [ 21.918467644000089, 58.504706122000073 ], [ 21.918955925000091, 58.509955145000049 ], [ 21.928477410000085, 58.518377997000073 ], [ 21.966644727000073, 58.517564195000034 ], [ 21.995616082000083, 58.512518622000073 ], [ 22.020762566000087, 58.499253648000035 ], [ 22.06421959700009, 58.456691799000055 ], [ 22.069834832000083, 58.446478583000044 ], [ 22.07203209700009, 58.432806708000044 ], [ 22.07357832100007, 58.426906643000052 ], [ 22.07781009200005, 58.423773505000042 ], [ 22.08334394600007, 58.42251211100006 ], [ 22.089366082000083, 58.42218659100007 ], [ 22.098480665000068, 58.42609284100007 ], [ 22.098643425000091, 58.434759833000044 ], [ 22.09310957100007, 58.44953034100007 ], [ 22.098806186000047, 58.475775458000044 ], [ 22.103688998000052, 58.487209377000056 ], [ 22.113617384000065, 58.497992255000042 ], [ 22.126800977000073, 58.504624742000033 ], [ 22.158946160000085, 58.513617255000042 ], [ 22.171885613000086, 58.521551825000074 ], [ 22.18327884200005, 58.53546784100007 ], [ 22.187754754000082, 58.542873440000051 ], [ 22.194590691000087, 58.545843817000048 ], [ 22.212901238000086, 58.546372789000031 ], [ 22.215586785000085, 58.544175523000035 ], [ 22.219004754000082, 58.539007880000042 ], [ 22.222178582000083, 58.533026434000078 ], [ 22.223480665000068, 58.528387762000079 ], [ 22.224864129000082, 58.516424872000073 ], [ 22.228851759000065, 58.510565497000073 ], [ 22.243337436000047, 58.504828192000048 ], [ 22.27320397200009, 58.502020575000074 ], [ 22.28288821700005, 58.522040106000077 ], [ 22.283946160000085, 58.549546617000033 ], [ 22.288340691000087, 58.569322007000039 ], [ 22.32195071700005, 58.584784247000073 ], [ 22.463063998000052, 58.592922268000052 ], [ 22.550303582000083, 58.629584052000041 ], [ 22.583181186000047, 58.634507554000038 ], [ 22.594086134000065, 58.629136460000041 ], [ 22.61264082100007, 58.605698960000041 ], [ 22.623789910000085, 58.600327867000033 ], [ 22.630137566000087, 58.598211981000077 ], [ 22.640798373000052, 58.588853257000039 ], [ 22.64812259200005, 58.586737372000073 ], [ 22.658213738000086, 58.588853257000039 ], [ 22.675791863000086, 58.59829336100006 ], [ 22.682139519000089, 58.600327867000033 ], [ 22.702647332000083, 58.59711334800005 ], [ 22.719248894000089, 58.591213283000059 ], [ 22.736338738000086, 58.588080145000049 ], [ 22.757985873000052, 58.592922268000052 ], [ 22.79070071700005, 58.614813544000071 ], [ 22.811371290000068, 58.622951565000051 ], [ 22.846364780000044, 58.613430080000057 ], [ 22.899668816000087, 58.620266018000052 ], [ 22.922048373000052, 58.617417710000041 ], [ 22.944021030000044, 58.610174872000073 ], [ 22.989756707000083, 58.601752020000049 ], [ 23.03646894600007, 58.584173895000049 ], [ 23.091075066000087, 58.57094961100006 ], [ 23.111338738000086, 58.555731512000079 ], [ 23.125824415000068, 58.535101630000042 ], [ 23.133555535000085, 58.528998114000046 ], [ 23.148285352000073, 58.521551825000074 ], [ 23.188649936000047, 58.51040273600006 ], [ 23.230642123000052, 58.504828192000048 ] ] ], [ [ [ 23.381602410000085, 58.579901434000078 ], [ 23.397146030000044, 58.563666083000044 ], [ 23.400238477000073, 58.555405992000033 ], [ 23.379893425000091, 58.547552802000041 ], [ 23.371592644000089, 58.538763739000046 ], [ 23.362152540000068, 58.532456773000035 ], [ 23.346934441000087, 58.53546784100007 ], [ 23.330902540000068, 58.541489976000037 ], [ 23.313731316000087, 58.544663804000038 ], [ 23.278575066000087, 58.546372789000031 ], [ 23.264659050000091, 58.543850002000056 ], [ 23.234873894000089, 58.534654039000031 ], [ 23.223806186000047, 58.53546784100007 ], [ 23.134613477000073, 58.579901434000078 ], [ 23.083262566000087, 58.590521552000041 ], [ 23.059336785000085, 58.603461005000042 ], [ 23.062836134000065, 58.624579169000071 ], [ 23.075450066000087, 58.629828192000048 ], [ 23.106130405000044, 58.624212958000044 ], [ 23.120941602000073, 58.628322658000059 ], [ 23.123545769000089, 58.633693752000056 ], [ 23.130381707000083, 58.654486395000049 ], [ 23.134613477000073, 58.661810614000046 ], [ 23.154633009000065, 58.675930080000057 ], [ 23.175791863000086, 58.68109772300005 ], [ 23.197764519000089, 58.680609442000048 ], [ 23.288340691000087, 58.666489976000037 ], [ 23.330251498000052, 58.653062242000033 ], [ 23.343760613000086, 58.644720770000049 ], [ 23.349131707000083, 58.63507721600007 ], [ 23.348155144000089, 58.625189520000049 ], [ 23.345957879000082, 58.615668036000045 ], [ 23.347504102000073, 58.607163804000038 ], [ 23.355642123000052, 58.598334052000041 ], [ 23.374034050000091, 58.586371161000045 ], [ 23.381602410000085, 58.579901434000078 ] ] ], [ [ [ 23.260508660000085, 57.813544012000079 ], [ 23.270681186000047, 57.807806708000044 ], [ 23.27507571700005, 57.798732815000051 ], [ 23.270192905000044, 57.785630601000037 ], [ 23.250254754000082, 57.784369208000044 ], [ 23.229502800000091, 57.791693427000041 ], [ 23.217784050000091, 57.800930080000057 ], [ 23.218597852000073, 57.809515692000048 ], [ 23.220550977000073, 57.817694403000075 ], [ 23.22429446700005, 57.823716539000031 ], [ 23.23959394600007, 57.82257721600007 ], [ 23.260508660000085, 57.813544012000079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EE-39", "NAME_1": "Hiiu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.291758660000085, 58.895209052000041 ], [ 22.226898634000065, 58.886460679000038 ], [ 22.19499759200005, 58.888006903000075 ], [ 22.062510613000086, 58.925848700000074 ], [ 22.04468834700009, 58.93618398600006 ], [ 22.055511915000068, 58.952704169000071 ], [ 22.094248894000089, 58.956040757000039 ], [ 22.168223504000082, 58.950384833000044 ], [ 22.463063998000052, 58.970892645000049 ], [ 22.443532748000052, 58.977728583000044 ], [ 22.442067905000044, 58.98468659100007 ], [ 22.454600457000083, 58.987209377000056 ], [ 22.476735873000052, 58.980536200000074 ], [ 22.488454623000052, 58.981146552000041 ], [ 22.487559441000087, 59.016424872000073 ], [ 22.504242384000065, 59.025580145000049 ], [ 22.526866082000083, 59.026353257000039 ], [ 22.544444207000083, 59.030096747000073 ], [ 22.559255405000044, 59.038397528000075 ], [ 22.572927280000044, 59.052801825000074 ], [ 22.576426629000082, 59.061712958000044 ], [ 22.576426629000082, 59.070135809000078 ], [ 22.578298373000052, 59.07843659100007 ], [ 22.587168816000087, 59.086981512000079 ], [ 22.597666863000086, 59.089504299000055 ], [ 22.640472852000073, 59.087062893000052 ], [ 22.641123894000089, 59.086981512000079 ], [ 22.666677280000044, 59.084906317000048 ], [ 22.696543816000087, 59.079169012000079 ], [ 22.714121941000087, 59.069566148000035 ], [ 22.691579623000052, 59.041164455000057 ], [ 22.701345248000052, 59.024969794000071 ], [ 22.72046959700009, 59.011623440000051 ], [ 22.736664259000065, 59.005072333000044 ], [ 22.837168816000087, 59.008612372000073 ], [ 22.934092644000089, 58.984035549000055 ], [ 22.949554884000065, 58.970892645000049 ], [ 22.952647332000083, 58.960598049000055 ], [ 22.947601759000065, 58.945135809000078 ], [ 22.949554884000065, 58.93618398600006 ], [ 22.958506707000083, 58.926703192000048 ], [ 22.979502800000091, 58.917629299000055 ], [ 22.987559441000087, 58.911932684000078 ], [ 22.993988477000073, 58.905829169000071 ], [ 23.008067254000082, 58.897406317000048 ], [ 23.015147332000083, 58.891791083000044 ], [ 23.018077019000089, 58.887193101000037 ], [ 23.019053582000083, 58.882025458000044 ], [ 23.018565300000091, 58.870672919000071 ], [ 23.021739129000082, 58.864081122000073 ], [ 23.028493686000047, 58.862127997000073 ], [ 23.035492384000065, 58.862005927000041 ], [ 23.039073113000086, 58.861029364000046 ], [ 23.040537957000083, 58.840765692000048 ], [ 23.033539259000065, 58.830308335000041 ], [ 23.019053582000083, 58.829087632000039 ], [ 22.977793816000087, 58.844183661000045 ], [ 22.967295769000089, 58.846502997000073 ], [ 22.95679772200009, 58.847398179000038 ], [ 22.949554884000065, 58.843939520000049 ], [ 22.94703209700009, 58.837551174000055 ], [ 22.942230665000068, 58.834214585000041 ], [ 22.929209832000083, 58.839992580000057 ], [ 22.912608269000089, 58.835598049000055 ], [ 22.895518425000091, 58.835516669000071 ], [ 22.879567905000044, 58.832709052000041 ], [ 22.867198113000086, 58.820054429000038 ], [ 22.87663821700005, 58.819891669000071 ], [ 22.883067254000082, 58.817287502000056 ], [ 22.886973504000082, 58.811835028000075 ], [ 22.888194207000083, 58.80304596600007 ], [ 22.886729363000086, 58.79047272300005 ], [ 22.882090691000087, 58.788031317000048 ], [ 22.874278191000087, 58.787909247000073 ], [ 22.863617384000065, 58.782212632000039 ], [ 22.84538821700005, 58.776516018000052 ], [ 22.816661004000082, 58.775946356000077 ], [ 22.790049675000091, 58.780991929000038 ], [ 22.778330925000091, 58.792181708000044 ], [ 22.789317254000082, 58.802639065000051 ], [ 22.811208530000044, 58.81085846600007 ], [ 22.826914910000085, 58.819159247000073 ], [ 22.819346550000091, 58.829657294000071 ], [ 22.802256707000083, 58.83038971600007 ], [ 22.777598504000082, 58.824367580000057 ], [ 22.753184441000087, 58.815130927000041 ], [ 22.736664259000065, 58.806463934000078 ], [ 22.715179884000065, 58.782049872000073 ], [ 22.68100019600007, 58.72406647300005 ], [ 22.654958530000044, 58.702785549000055 ], [ 22.611175977000073, 58.690497137000079 ], [ 22.555674675000091, 58.686997789000031 ], [ 22.50171959700009, 58.69476959800005 ], [ 22.463063998000052, 58.716457424000055 ], [ 22.472178582000083, 58.719916083000044 ], [ 22.480967644000089, 58.724798895000049 ], [ 22.497243686000047, 58.737534898000035 ], [ 22.483409050000091, 58.748195705000057 ], [ 22.465179884000065, 58.766587632000039 ], [ 22.449473504000082, 58.786810614000046 ], [ 22.442637566000087, 58.80304596600007 ], [ 22.442637566000087, 58.827215887000079 ], [ 22.439789259000065, 58.841376044000071 ], [ 22.429942254000082, 58.852443752000056 ], [ 22.382090691000087, 58.88226959800005 ], [ 22.354746941000087, 58.892075914000031 ], [ 22.324961785000085, 58.896633205000057 ], [ 22.291758660000085, 58.895209052000041 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EE-71", "NAME_1": "Rapla" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.133235303766241, 58.701481838715836 ], [ 24.151838819905606, 58.727914334578827 ], [ 24.154629346966772, 58.733650418332104 ], [ 24.151218703180575, 58.738611354830141 ], [ 24.140676710761568, 58.741996161993256 ], [ 24.094116245368411, 58.742202867568267 ], [ 24.075771111647441, 58.745871893772858 ], [ 24.07019005662579, 58.751091214487928 ], [ 24.074995965291521, 58.76111644117077 ], [ 24.111324496628185, 58.769746406571358 ], [ 24.118610873992623, 58.776412665412124 ], [ 24.160675489981884, 58.79431854956141 ], [ 24.145792677789814, 58.803129381215967 ], [ 24.142071973842519, 58.810105699318513 ], [ 24.142382033104354, 58.819769191694832 ], [ 24.149513380837845, 58.825505276347371 ], [ 24.176333449429137, 58.832119859244074 ], [ 24.185945264962015, 58.837029120697309 ], [ 24.186875440948825, 58.844728909211767 ], [ 24.176953566154111, 58.853152167238704 ], [ 24.165946485741699, 58.864469306013632 ], [ 24.1274475440689, 58.916920884790954 ], [ 24.08884524870922, 58.950303860334884 ], [ 24.08465945766784, 58.964902451686783 ], [ 24.10450320815653, 58.984668687809688 ], [ 24.132563511097146, 58.995830796953669 ], [ 24.140831740392514, 59.004770819817452 ], [ 24.143312209091164, 59.009680081270687 ], [ 24.1474980001326, 59.01438263624965 ], [ 24.154629346966772, 59.019343574546326 ], [ 24.16827192570878, 59.022754218332466 ], [ 24.190596143996856, 59.023374335057497 ], [ 24.222738885191404, 59.018387560137739 ], [ 24.290228305791686, 59.015261135393075 ], [ 24.311363966573765, 59.03613841375676 ], [ 24.365055779700469, 59.080528468813782 ], [ 24.374357537770152, 59.086212877522257 ], [ 24.430219761232991, 59.092930813206408 ], [ 24.482826368741883, 59.099287014584036 ], [ 24.556361932357277, 59.095566311536004 ], [ 24.565818719158528, 59.09667735557548 ], [ 24.57279503816045, 59.110345770940569 ], [ 24.571089714918401, 59.115461737968815 ], [ 24.563493280090768, 59.123884995995752 ], [ 24.556982049082308, 59.129155991755567 ], [ 24.554966668377006, 59.134582018045649 ], [ 24.568454216588805, 59.146183376761428 ], [ 24.573570183617051, 59.166207994403408 ], [ 24.589279819008425, 59.181400864957936 ], [ 24.597186313997156, 59.187085272767092 ], [ 24.616875033955637, 59.195250149274955 ], [ 24.63082767106016, 59.204913642550537 ], [ 24.663900588241518, 59.216850898050495 ], [ 24.775625034267875, 59.208996079905148 ], [ 24.783841586719859, 59.21307851815908 ], [ 24.797949252555952, 59.216825060528095 ], [ 24.866110466724649, 59.226566067270142 ], [ 24.903627557365837, 59.225739244070837 ], [ 24.897891472713297, 59.202226468276876 ], [ 24.899286736693512, 59.192356269426284 ], [ 24.905332878809304, 59.183958848921691 ], [ 24.923678013429537, 59.175251370054639 ], [ 24.941661411045288, 59.15964508745077 ], [ 24.951583285839945, 59.150214138171918 ], [ 24.956544224136621, 59.146519274444927 ], [ 24.980108676774023, 59.137630927525265 ], [ 25.046099480606529, 59.125745347969428 ], [ 25.060517205704457, 59.109673977372154 ], [ 25.118394809872541, 59.093085842837354 ], [ 25.141339145784912, 59.093085842837354 ], [ 25.147126906381629, 59.094532782761689 ], [ 25.156583693182881, 59.0943777531308 ], [ 25.167590772695974, 59.089830226883407 ], [ 25.184488967391928, 59.080786852131496 ], [ 25.188054639909694, 59.069573066144073 ], [ 25.190845167870179, 59.063423570341456 ], [ 25.19239546058202, 59.056705633757986 ], [ 25.194720899649781, 59.051021226848093 ], [ 25.19642622199251, 59.044044907846171 ], [ 25.202524040951687, 59.036629340171885 ], [ 25.216011590062806, 59.028671170138352 ], [ 25.247017449695534, 59.01805166335356 ], [ 25.279315219621651, 59.003168850262227 ], [ 25.320449659624046, 58.992213446693199 ], [ 25.286601596986088, 58.973041489772925 ], [ 25.285361361737444, 58.969992581192628 ], [ 25.287376743342008, 58.964979966951887 ], [ 25.294198031813721, 58.961259263903855 ], [ 25.301019321184697, 58.956298326506555 ], [ 25.302724644426803, 58.945704658143427 ], [ 25.302724644426803, 58.935679430561265 ], [ 25.301019321184697, 58.925059922877097 ], [ 25.293887974350525, 58.91857453118962 ], [ 25.283501010663088, 58.91493134250743 ], [ 25.274974399848645, 58.913148504899539 ], [ 25.258231234783636, 58.906223862741058 ], [ 25.238025749988367, 58.879429633470806 ], [ 25.239576042700207, 58.875734767945175 ], [ 25.244226921735049, 58.871497300959618 ], [ 25.259884881182302, 58.866846421924777 ], [ 25.277299838916406, 58.853927314493944 ], [ 25.270013461551969, 58.841809190042056 ], [ 25.260815057169111, 58.833670151955914 ], [ 25.253063591811269, 58.820130926900731 ], [ 25.247327508058049, 58.814394843147454 ], [ 25.240351189955447, 58.810415758580348 ], [ 25.217716913304912, 58.806695055532373 ], [ 25.204074333663527, 58.801940822810707 ], [ 25.200146925939862, 58.796566474263329 ], [ 25.203247512262863, 58.790261948829823 ], [ 25.219732293110837, 58.773622138350959 ], [ 25.222987909064727, 58.760496324445796 ], [ 25.220507440366077, 58.752899888718844 ], [ 25.199836866678027, 58.725769761765093 ], [ 25.161079542586776, 58.720886338733521 ], [ 25.129866978278415, 58.720240384486146 ], [ 25.062842644772218, 58.728198554519622 ], [ 25.060982292798542, 58.719723618749981 ], [ 25.057261589750567, 58.718380032512471 ], [ 25.046564568599933, 58.718018297306571 ], [ 25.029304639597399, 58.720240384486146 ], [ 25.023568555844179, 58.720343736374332 ], [ 25.008065626927134, 58.7169847685322 ], [ 24.98775678934436, 58.709233303174358 ], [ 24.971892124322039, 58.701120104409256 ], [ 24.937165561641336, 58.676677150829846 ], [ 24.916184929590827, 58.672336331056783 ], [ 24.91215416818028, 58.681689765070587 ], [ 24.909363641119114, 58.69621084295602 ], [ 24.900371942311267, 58.71967194280586 ], [ 24.897581414350782, 58.735794990246575 ], [ 24.8913802426041, 58.741892809205751 ], [ 24.880063103829173, 58.746698716972162 ], [ 24.855671827992467, 58.749954332026789 ], [ 24.837068311853102, 58.749179186570188 ], [ 24.81195356560454, 58.743468940339312 ], [ 24.786477085049398, 58.741427721212347 ], [ 24.724413689839878, 58.750264391288624 ], [ 24.69056562720192, 58.751246243219498 ], [ 24.654443801440266, 58.724012763478243 ], [ 24.610828891839844, 58.718638414031545 ], [ 24.578376092282838, 58.711662095928943 ], [ 24.56473351444015, 58.71142955193227 ], [ 24.554036493289516, 58.718405870034871 ], [ 24.554346550752712, 58.723754381059791 ], [ 24.555431756370467, 58.730058906493298 ], [ 24.551711053322435, 58.73377960954133 ], [ 24.536673210600156, 58.736001694922265 ], [ 24.524994338417969, 58.73646678291567 ], [ 24.492593214805026, 58.728766995300589 ], [ 24.461535679228177, 58.714245917415155 ], [ 24.455644565844011, 58.709543362436193 ], [ 24.449288363567121, 58.702773749009282 ], [ 24.443087191820439, 58.690268052728413 ], [ 24.438901400779002, 58.686495672836998 ], [ 24.42959964360864, 58.681689765070587 ], [ 24.414665154573186, 58.677038886035746 ], [ 24.363505486988629, 58.670320950351538 ], [ 24.284957310031814, 58.675927842895589 ], [ 24.161605665968693, 58.688666083173189 ], [ 24.133235303766241, 58.701481838715836 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "EE-52", "NAME_1": "Järva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.777114291591261, 58.689777127212608 ], [ 25.732879266165185, 58.679777737152847 ], [ 25.65934370344911, 58.666393540829233 ], [ 25.639138217754521, 58.658642076370711 ], [ 25.621619907232912, 58.653732814917419 ], [ 25.556921013693795, 58.642002264992527 ], [ 25.539557732803132, 58.629961655805744 ], [ 25.509120313951314, 58.633423977334644 ], [ 25.47263675298376, 58.618747870717641 ], [ 25.437755160672111, 58.613683580532779 ], [ 25.348975050558124, 58.61507884451305 ], [ 25.328666212975349, 58.620608221791997 ], [ 25.305360141857022, 58.622830308971572 ], [ 25.258541294045472, 58.633294786125475 ], [ 25.275594516573676, 58.671251126338404 ], [ 25.279160190890082, 58.684118556925853 ], [ 25.283345981931518, 58.690087185575123 ], [ 25.289082065684738, 58.69657257816192 ], [ 25.292647739101881, 58.702101956340186 ], [ 25.292492710370254, 58.707657172040854 ], [ 25.283345981931518, 58.713599962268404 ], [ 25.266447788134883, 58.718380032512471 ], [ 25.23461510620217, 58.719956162746712 ], [ 25.199836866678027, 58.725769761765093 ], [ 25.220507440366077, 58.752899888718844 ], [ 25.222987909064727, 58.760496324445796 ], [ 25.219732293110837, 58.773622138350959 ], [ 25.203247512262863, 58.790261948829823 ], [ 25.200146925939862, 58.796566474263329 ], [ 25.204074333663527, 58.801940822810707 ], [ 25.217716913304912, 58.806695055532373 ], [ 25.240351189955447, 58.810415758580348 ], [ 25.247327508058049, 58.814394843147454 ], [ 25.253063591811269, 58.820130926900731 ], [ 25.260815057169111, 58.833670151955914 ], [ 25.270013461551969, 58.841809190042056 ], [ 25.277299838916406, 58.853927314493944 ], [ 25.259884881182302, 58.866846421924777 ], [ 25.244226921735049, 58.871497300959618 ], [ 25.239576042700207, 58.875734767945175 ], [ 25.238025749988367, 58.879429633470806 ], [ 25.258231234783636, 58.906223862741058 ], [ 25.274974399848645, 58.913148504899539 ], [ 25.283501010663088, 58.91493134250743 ], [ 25.293887974350525, 58.91857453118962 ], [ 25.301019321184697, 58.925059922877097 ], [ 25.302724644426803, 58.935679430561265 ], [ 25.302724644426803, 58.945704658143427 ], [ 25.301019321184697, 58.956298326506555 ], [ 25.294198031813721, 58.961259263903855 ], [ 25.287376743342008, 58.964979966951887 ], [ 25.285361361737444, 58.969992581192628 ], [ 25.286601596986088, 58.973041489772925 ], [ 25.320449659624046, 58.992213446693199 ], [ 25.397395867924956, 59.01593292896149 ], [ 25.402511834053882, 59.039962470491616 ], [ 25.398946160636797, 59.06099477848619 ], [ 25.401426629335447, 59.069779771719084 ], [ 25.411038445767645, 59.075024929057179 ], [ 25.434344516885915, 59.074792385060505 ], [ 25.450622593058199, 59.071924342734178 ], [ 25.465195346887754, 59.071304226009204 ], [ 25.476512484763361, 59.07525747305391 ], [ 25.484160597333698, 59.080812690553216 ], [ 25.489741652355349, 59.085773627051196 ], [ 25.48958662272446, 59.095824693055135 ], [ 25.477597691280437, 59.101974188857696 ], [ 25.473256869708734, 59.105591539118222 ], [ 25.45852908714761, 59.131998196559493 ], [ 25.485814242833044, 59.167164007912618 ], [ 25.504159376553957, 59.184733995277611 ], [ 25.512841016999289, 59.19881582269204 ], [ 25.516871779309156, 59.211631578234744 ], [ 25.510515577931585, 59.231914578295118 ], [ 25.499663527150062, 59.244084377791751 ], [ 25.489276564361944, 59.253592841436443 ], [ 25.487416213287588, 59.259638984451556 ], [ 25.489431593992833, 59.263773097750231 ], [ 25.523383010317673, 59.267907212847547 ], [ 25.593507928348174, 59.272196357575808 ], [ 25.632626986746004, 59.260620836382486 ], [ 25.648284946193314, 59.257830309321264 ], [ 25.658413526562981, 59.2585537788338 ], [ 25.664614699208983, 59.2600523947022 ], [ 25.666009963189254, 59.272713121513334 ], [ 25.798663364422737, 59.292091783109299 ], [ 25.848169387407268, 59.289766344041539 ], [ 25.925890741164778, 59.276330470874484 ], [ 25.930231560937784, 59.272764798356718 ], [ 25.925270622641108, 59.265194200152166 ], [ 25.918604363800341, 59.257313544484475 ], [ 25.917674187813475, 59.250879828741063 ], [ 25.920154657411501, 59.247856756783847 ], [ 25.925115593909538, 59.244756171360166 ], [ 25.932298617587094, 59.242379055449021 ], [ 25.947801548302778, 59.225945950545167 ], [ 25.960048862165252, 59.214267076564283 ], [ 25.95307254406265, 59.203259996151871 ], [ 25.956793247110625, 59.195766913212424 ], [ 25.982683139715107, 59.185379951323682 ], [ 26.018701612689256, 59.178713691583596 ], [ 26.011415236224138, 59.155976061246179 ], [ 25.984285109270331, 59.13582225239503 ], [ 25.971676060202014, 59.121559556927991 ], [ 25.939119906958126, 59.102387600007717 ], [ 25.937569614246286, 59.083680731980166 ], [ 25.927957797814088, 59.064508775059892 ], [ 25.930851677662758, 59.058772691306615 ], [ 25.939584994951531, 59.057067368963885 ], [ 25.966560093173769, 59.05830760421253 ], [ 25.980202671016457, 59.057015693019764 ], [ 26.005524122839972, 59.050478624488903 ], [ 26.027383254033907, 59.049005846142848 ], [ 26.040922479089147, 59.044871731045532 ], [ 26.066192254069279, 59.017586575360156 ], [ 26.086501091652053, 59.013762519524619 ], [ 26.11554324742292, 58.991334947549774 ], [ 26.135076938649775, 58.981258043124171 ], [ 26.147634311774027, 58.967382921284752 ], [ 26.160553420104236, 58.948443509260528 ], [ 26.164274123152268, 58.936971340854654 ], [ 26.165979444595678, 58.927695421206693 ], [ 26.164894239877242, 58.920176499845581 ], [ 26.162258742446966, 58.911959947393655 ], [ 26.1563676290628, 58.898420722338415 ], [ 26.15368045388982, 58.887155260406928 ], [ 26.127170443661043, 58.875889798475384 ], [ 26.121899447901171, 58.872789212152384 ], [ 26.11647342340973, 58.868086656274158 ], [ 26.112597690730809, 58.861549587743241 ], [ 26.111357456381484, 58.856821194342615 ], [ 26.117868687390001, 58.844367174005868 ], [ 26.113837925080134, 58.83532379835458 ], [ 26.050999382615373, 58.832610786558519 ], [ 26.030948928350369, 58.831809800881558 ], [ 26.021182082287226, 58.829536037757919 ], [ 26.009554885149839, 58.825556953190812 ], [ 26.001493361429482, 58.820647690838257 ], [ 25.976792026330941, 58.816591091905366 ], [ 25.965474887556013, 58.810544948890254 ], [ 25.961444126145466, 58.799512030955441 ], [ 25.961134066883687, 58.789848538579179 ], [ 25.958498568554091, 58.780598456453561 ], [ 25.9555530127613, 58.77346710872007 ], [ 25.927286004245673, 58.761478177276047 ], [ 25.907597284287249, 58.769591376041149 ], [ 25.887288445805098, 58.767420965704957 ], [ 25.85669599822171, 58.753571682287259 ], [ 25.847859328145432, 58.751685492791239 ], [ 25.835767043014584, 58.747267157753072 ], [ 25.827860548925173, 58.741737779574862 ], [ 25.819747349260751, 58.729748847231463 ], [ 25.81199588390291, 58.721428941092711 ], [ 25.783315464237262, 58.704995836188857 ], [ 25.777114291591261, 58.689777127212608 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/finland.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/finland.geojson new file mode 100644 index 000000000000..7fdc95da4b5c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/finland.geojson @@ -0,0 +1,25 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "FI-01", "NAME_1": "Ahvenanmaa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.277598504000082, 60.142157294000071 ], [ 20.297618035000085, 60.121527411000045 ], [ 20.26889082100007, 60.086004950000074 ], [ 20.277598504000082, 60.066473700000074 ], [ 20.201914910000085, 60.087551174000055 ], [ 20.22242272200009, 60.149603583000044 ], [ 20.258067254000082, 60.107977606000077 ], [ 20.255707227000073, 60.145412502000056 ], [ 20.277598504000082, 60.142157294000071 ] ] ], [ [ [ 19.639496290000068, 60.220933335000041 ], [ 19.670909050000091, 60.190578518000052 ], [ 19.671071811000047, 60.158107815000051 ], [ 19.646983269000089, 60.155829169000071 ], [ 19.591644727000073, 60.196763414000031 ], [ 19.60328209700009, 60.164007880000042 ], [ 19.584808790000068, 60.135321356000077 ], [ 19.52702884200005, 60.148627020000049 ], [ 19.513194207000083, 60.183783270000049 ], [ 19.537282748000052, 60.201117255000042 ], [ 19.537119988000086, 60.232163804000038 ], [ 19.567881707000083, 60.255113023000035 ], [ 19.608409050000091, 60.256903387000079 ], [ 19.639496290000068, 60.220933335000041 ] ] ], [ [ [ 20.427907748000052, 60.265692450000074 ], [ 20.441416863000086, 60.245184637000079 ], [ 20.392914259000065, 60.196763414000031 ], [ 20.380869988000086, 60.198879299000055 ], [ 20.382660352000073, 60.240708726000037 ], [ 20.34538821700005, 60.237697658000059 ], [ 20.358897332000083, 60.265692450000074 ], [ 20.427907748000052, 60.265692450000074 ] ] ], [ [ [ 20.818858269000089, 60.232163804000038 ], [ 20.790537957000083, 60.238714911000045 ], [ 20.787282748000052, 60.286322333000044 ], [ 20.853037957000083, 60.265692450000074 ], [ 20.838877800000091, 60.246812242000033 ], [ 20.811371290000068, 60.245184637000079 ], [ 20.818858269000089, 60.232163804000038 ] ] ], [ [ [ 20.20875084700009, 60.224676825000074 ], [ 20.229746941000087, 60.204250393000052 ], [ 20.161957227000073, 60.167141018000052 ], [ 20.09546959700009, 60.176336981000077 ], [ 20.088877800000091, 60.195868231000077 ], [ 20.102305535000085, 60.220933335000041 ], [ 20.188243035000085, 60.245184637000079 ], [ 20.11101321700005, 60.239447333000044 ], [ 20.057871941000087, 60.190619208000044 ], [ 20.060883009000065, 60.214748440000051 ], [ 20.023692254000082, 60.255113023000035 ], [ 20.061289910000085, 60.310044664000031 ], [ 20.023692254000082, 60.313462632000039 ], [ 20.024912957000083, 60.276434637000079 ], [ 20.00326582100007, 60.26703522300005 ], [ 19.97592207100007, 60.278713283000059 ], [ 19.993988477000073, 60.241441148000035 ], [ 20.030528191000087, 60.217230536000045 ], [ 20.016286655000044, 60.183742580000057 ], [ 19.948008660000085, 60.204250393000052 ], [ 19.95484459700009, 60.224676825000074 ], [ 19.914561394000089, 60.21820709800005 ], [ 19.943614129000082, 60.186224677000041 ], [ 20.010020379000082, 60.155829169000071 ], [ 20.044200066000087, 60.176336981000077 ], [ 20.030528191000087, 60.114813544000071 ], [ 20.05046634200005, 60.097805080000057 ], [ 19.94898522200009, 60.083889065000051 ], [ 19.948496941000087, 60.047674872000073 ], [ 19.910329623000052, 60.101060289000031 ], [ 19.84506269600007, 60.078680731000077 ], [ 19.806976759000065, 60.099839585000041 ], [ 19.76303144600007, 60.073919989000046 ], [ 19.646983269000089, 60.265692450000074 ], [ 19.682871941000087, 60.264349677000041 ], [ 19.688487175000091, 60.238348700000074 ], [ 19.709320509000065, 60.268866278000075 ], [ 19.770518425000091, 60.286200262000079 ], [ 19.74935957100007, 60.306626695000034 ], [ 19.79656009200005, 60.299790757000039 ], [ 19.765147332000083, 60.248968817000048 ], [ 19.792002800000091, 60.200140692000048 ], [ 19.81421959700009, 60.190619208000044 ], [ 19.817637566000087, 60.232163804000038 ], [ 19.851817254000082, 60.217230536000045 ], [ 19.892832879000082, 60.306626695000034 ], [ 19.905528191000087, 60.27179596600007 ], [ 19.934336785000085, 60.282416083000044 ], [ 19.924001498000052, 60.314276434000078 ], [ 19.889496290000068, 60.344671942000048 ], [ 19.857676629000082, 60.313218492000033 ], [ 19.819183790000068, 60.346828518000052 ], [ 19.777354363000086, 60.355047919000071 ], [ 19.838145379000082, 60.400458075000074 ], [ 19.882334832000083, 60.405585028000075 ], [ 19.906423373000052, 60.402167059000078 ], [ 19.92750084700009, 60.356431382000039 ], [ 19.995616082000083, 60.356431382000039 ], [ 20.03679446700005, 60.333929755000042 ], [ 20.023692254000082, 60.361273505000042 ], [ 20.093028191000087, 60.355129299000055 ], [ 20.192067905000044, 60.312323309000078 ], [ 20.18140709700009, 60.286200262000079 ], [ 20.277598504000082, 60.278713283000059 ], [ 20.23601321700005, 60.232163804000038 ], [ 20.20875084700009, 60.224676825000074 ] ] ], [ [ [ 20.875254754000082, 59.914129950000074 ], [ 20.862071160000085, 59.928168036000045 ], [ 20.897471550000091, 59.940130927000041 ], [ 20.920176629000082, 59.909247137000079 ], [ 20.875254754000082, 59.914129950000074 ] ] ], [ [ [ 20.983571811000047, 59.942775783000059 ], [ 20.969248894000089, 59.942084052000041 ], [ 20.982758009000065, 59.921535549000055 ], [ 20.913259311000047, 59.948431708000044 ], [ 20.99586022200009, 59.949896552000041 ], [ 20.983571811000047, 59.942775783000059 ] ] ], [ [ [ 20.610118035000085, 60.044989325000074 ], [ 20.587168816000087, 60.00812409100007 ], [ 20.500824415000068, 60.012681382000039 ], [ 20.544932488000086, 60.05609772300005 ], [ 20.610118035000085, 60.044989325000074 ] ] ], [ [ [ 20.424082879000082, 60.055243231000077 ], [ 20.46257571700005, 60.066799221000053 ], [ 20.432139519000089, 60.025091864000046 ], [ 20.390147332000083, 60.028225002000056 ], [ 20.424082879000082, 60.055243231000077 ] ] ], [ [ [ 20.52116946700005, 60.048041083000044 ], [ 20.471364780000044, 60.04132721600007 ], [ 20.469737175000091, 60.057359117000033 ], [ 20.541840040000068, 60.070990302000041 ], [ 20.52116946700005, 60.048041083000044 ] ] ], [ [ [ 20.68336022200009, 60.130519924000055 ], [ 20.688243035000085, 60.117010809000078 ], [ 20.67156009200005, 60.109198309000078 ], [ 20.635508660000085, 60.143947658000059 ], [ 20.65992272200009, 60.149725653000075 ], [ 20.68336022200009, 60.130519924000055 ] ] ], [ [ [ 20.683767123000052, 60.229396877000056 ], [ 20.705902540000068, 60.218247789000031 ], [ 20.716319207000083, 60.20929596600007 ], [ 20.670664910000085, 60.199204820000034 ], [ 20.66342207100007, 60.216376044000071 ], [ 20.683767123000052, 60.229396877000056 ] ] ], [ [ [ 20.777354363000086, 60.32648346600007 ], [ 20.74000084700009, 60.312404690000051 ], [ 20.732676629000082, 60.314357815000051 ], [ 20.75717207100007, 60.366115627000056 ], [ 20.787364129000082, 60.36196523600006 ], [ 20.777354363000086, 60.32648346600007 ] ] ], [ [ [ 20.281315311000071, 59.976616123000042 ], [ 20.339446925000061, 60.020109724000065 ], [ 20.44705937100008, 59.995180558000072 ], [ 20.324819234000074, 59.977195317000053 ], [ 20.306648030000076, 59.953624346000083 ], [ 20.283707094000079, 59.958475456000031 ], [ 20.281315311000071, 59.976616123000042 ] ] ], [ [ [ 20.033649523000065, 60.063626004000071 ], [ 20.101269174000038, 60.094974635000085 ], [ 20.163259320000066, 60.087845341000047 ], [ 20.193190627000035, 60.06556971100008 ], [ 20.225218278000057, 60.00547772200008 ], [ 20.175120918000061, 59.971435922000069 ], [ 20.184036574000061, 59.992937835000077 ], [ 20.105254921000039, 59.996469169000079 ], [ 20.121317588000068, 60.016627195000069 ], [ 20.025256327000079, 60.042485236000061 ], [ 20.033649523000065, 60.063626004000071 ] ] ], [ [ [ 21.088633660000085, 60.480129299000055 ], [ 21.088226759000065, 60.452215887000079 ], [ 21.064952019000089, 60.454779364000046 ], [ 21.064300977000073, 60.474351304000038 ], [ 21.088633660000085, 60.480129299000055 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-02", "NAME_1": "Etelä-Karjala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.145649005000109, 61.85046941100002 ], [ 29.977683960000093, 61.728171286000034 ], [ 29.842240030000085, 61.660165100000071 ], [ 29.779143107000039, 61.593114930000056 ], [ 29.635120891000042, 61.511104432000067 ], [ 29.517040242000064, 61.475060120000066 ], [ 29.463400106000051, 61.413823548000025 ], [ 29.31839603700007, 61.338427633000052 ], [ 29.203157593000071, 61.24590098100002 ], [ 28.797600952000067, 61.096840312 ], [ 28.614563029000124, 60.96193898500006 ], [ 28.480927775000112, 60.933465271 ], [ 28.335923706000131, 60.859387105000067 ], [ 28.243939657000027, 60.791587626000066 ], [ 28.148131551000091, 60.757713725000045 ], [ 28.003781678781422, 60.664225534880529 ], [ 27.956051059608683, 60.668157661346982 ], [ 27.954604119684348, 60.681929430398839 ], [ 27.887528110234086, 60.708439439728352 ], [ 27.852904901240208, 60.755671698689923 ], [ 27.730431756320456, 60.765231839178 ], [ 27.688367140331252, 60.798692329087714 ], [ 27.510806919203958, 60.797787991522569 ], [ 27.371487258230388, 60.872925523793867 ], [ 27.211807081931283, 60.909254055130532 ], [ 27.142974074194171, 60.946874498559225 ], [ 27.131295200213287, 60.96392772108743 ], [ 27.23929894409099, 60.962144884378858 ], [ 27.204262323047772, 60.999687812542504 ], [ 27.144731073380342, 61.013717963113493 ], [ 27.161267531071701, 61.02712799695945 ], [ 27.149692009878322, 61.053327948825768 ], [ 27.168295526017687, 61.072861640052622 ], [ 27.229273715609452, 61.096865343161028 ], [ 27.187622511669531, 61.113427639274107 ], [ 27.213150669068114, 61.161796779797498 ], [ 27.348646275105466, 61.171408596229696 ], [ 27.389884067895423, 61.203758042999254 ], [ 27.335830518663499, 61.218330796828809 ], [ 27.331076287740473, 61.252824816412101 ], [ 27.226069777398266, 61.316102607549283 ], [ 27.255732048994844, 61.324370835945274 ], [ 26.976369255736529, 61.343878688750465 ], [ 26.968514439389821, 61.359820869037833 ], [ 27.250254346760698, 61.40374583610145 ], [ 27.540262485225469, 61.360337632975359 ], [ 28.181463657321899, 61.373308417249632 ], [ 28.341557244771025, 61.418576972349342 ], [ 28.468887974300571, 61.509217434437005 ], [ 28.510125767090472, 61.50836477281598 ], [ 28.562939081073694, 61.472888902201021 ], [ 28.653166131112016, 61.469581611202386 ], [ 28.809332309938156, 61.498003649348902 ], [ 28.820701124657148, 61.538001206890158 ], [ 29.053348422891361, 61.534228827898062 ], [ 29.24610151457324, 61.559912014028214 ], [ 29.341082798232549, 61.621510322143649 ], [ 29.532388949990036, 61.684788113280774 ], [ 29.564014927247058, 61.724139716574655 ], [ 30.057214797025267, 61.848809109352885 ], [ 30.145649005000109, 61.85046941100002 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-03", "NAME_1": "Etelä-Pohjanmaa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.699359978979828, 63.380627753467991 ], [ 23.799405551924679, 63.301562812573707 ], [ 24.043214959302929, 63.263063870001588 ], [ 24.224909294628219, 63.174542141406675 ], [ 24.178297153290998, 63.151597805494305 ], [ 24.362782016576773, 63.119196681881306 ], [ 24.32650516118423, 63.076822008428906 ], [ 24.266147088317439, 63.060337225782291 ], [ 24.278342726235792, 63.03470571649558 ], [ 24.296739535900826, 63.034964098014655 ], [ 24.304697706833679, 62.994863185887311 ], [ 24.339320915827614, 62.965355943022303 ], [ 24.34655561724793, 62.934195055557325 ], [ 24.364228957400428, 62.917865302541657 ], [ 24.419936151232378, 62.911095690014065 ], [ 24.450942009965786, 62.883087063017513 ], [ 24.441123487958578, 62.867971706828769 ], [ 24.365469190850433, 62.861848050347191 ], [ 24.365159133387294, 62.843477078204558 ], [ 24.571141391761785, 62.660568346052287 ], [ 24.51171349488186, 62.628218899282729 ], [ 24.582510207380153, 62.617211818870317 ], [ 24.555638461945421, 62.60935700072497 ], [ 24.563699984766458, 62.580883287533652 ], [ 24.527423130273235, 62.560936184257457 ], [ 24.513573845956216, 62.503937080132118 ], [ 24.434302198587602, 62.478563951465162 ], [ 24.372290480221466, 62.499957993766373 ], [ 24.32784874832106, 62.491328030164425 ], [ 24.326298455609219, 62.458720200976472 ], [ 24.198140902880368, 62.468797106301395 ], [ 24.020270623390559, 62.363997301534198 ], [ 23.922085402419384, 62.406992093510269 ], [ 23.899451124869472, 62.479855861758608 ], [ 23.839093052002738, 62.462905992017909 ], [ 23.834028760918557, 62.488020738266414 ], [ 23.698119744630503, 62.426732490312133 ], [ 23.505676711311139, 62.409007473316194 ], [ 23.505056593686845, 62.373454088335507 ], [ 23.420720656133369, 62.379758612869637 ], [ 23.357055291368567, 62.417249864189841 ], [ 23.316127556941183, 62.419394436104312 ], [ 23.166782668385395, 62.318418688071972 ], [ 23.06074262926893, 62.289996649925399 ], [ 22.838327264191889, 62.271186428211081 ], [ 22.586973097030807, 62.301830553537172 ], [ 22.558964470933574, 62.251135973046701 ], [ 22.507804803348961, 62.211267604916031 ], [ 22.33882286987955, 62.124037788413148 ], [ 22.17769575365611, 62.083316759560773 ], [ 22.018222283831335, 61.993167222988916 ], [ 21.932956170290993, 61.985312404843569 ], [ 21.646565382986012, 62.020504055517733 ], [ 21.632406040306478, 62.037634793311042 ], [ 21.652456496370178, 62.142331245290734 ], [ 21.697725050570625, 62.14742137299794 ], [ 21.675297478595724, 62.195428779214751 ], [ 21.766247999945222, 62.230801297042206 ], [ 21.680878533617431, 62.269532782711735 ], [ 21.667339307662928, 62.335394396234392 ], [ 21.688319939713438, 62.338727524755427 ], [ 21.684909295027921, 62.351956692347471 ], [ 21.636023389667685, 62.365702622977665 ], [ 21.5576819191852, 62.355574041708621 ], [ 21.559128859109535, 62.370043442750671 ], [ 21.532360467361684, 62.379086819301222 ], [ 21.552514276212833, 62.410971178077375 ], [ 21.554477980074694, 62.455697129918576 ], [ 21.612355584242778, 62.544089667304263 ], [ 21.590961541042248, 62.600830389910527 ], [ 21.770588819718228, 62.683357652333768 ], [ 21.780200636150425, 62.703588976450078 ], [ 21.739376255409866, 62.735137438441996 ], [ 21.727594027742157, 62.774489040836556 ], [ 21.733898553175663, 62.808362941896235 ], [ 21.767798292657062, 62.851719469078205 ], [ 21.791776157343747, 62.85662873053144 ], [ 21.873424919724243, 62.813427232980416 ], [ 21.991247185609097, 62.782292182138463 ], [ 22.17903934079294, 62.761983344555688 ], [ 22.288800082957437, 62.793583483390989 ], [ 22.394013298874654, 62.858023994511711 ], [ 22.428429803192842, 62.956674303476291 ], [ 22.497986281341809, 63.028246162330504 ], [ 22.554520298373063, 63.050983791768545 ], [ 22.539844190856684, 63.061784165706626 ], [ 22.550076124913232, 63.070879218201355 ], [ 22.632241652130517, 63.081240343467073 ], [ 22.640303175850875, 63.121625475535211 ], [ 22.674202915332273, 63.137180081295696 ], [ 22.677303500755954, 63.171699938401389 ], [ 22.664901157262591, 63.188649807242768 ], [ 22.581702101270935, 63.183482164270458 ], [ 22.59782514781233, 63.210948188008445 ], [ 22.574777459112454, 63.215030626262376 ], [ 22.59782514781233, 63.242238268481287 ], [ 22.569609816140087, 63.247121691512802 ], [ 22.568369581790762, 63.260790106877892 ], [ 22.674202915332273, 63.29717031505794 ], [ 22.653739048118553, 63.31551544877891 ], [ 22.750580681952897, 63.344402574019568 ], [ 22.736111280910848, 63.355719712794496 ], [ 22.955839470814908, 63.338924871785366 ], [ 22.975993279666113, 63.343472398932022 ], [ 22.988395623159477, 63.369749864264804 ], [ 23.156964146378243, 63.367346909931939 ], [ 23.297937452851158, 63.474730537084611 ], [ 23.394365676434802, 63.489768378008193 ], [ 23.549188267224736, 63.465351263749767 ], [ 23.613267043139501, 63.414269111430315 ], [ 23.699359978979828, 63.380627753467991 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-04", "NAME_1": "Etelä-Savo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520357700247644, 62.555510158866696 ], [ 28.535447218913987, 62.57121979425807 ], [ 28.478913201882733, 62.581012477843558 ], [ 28.615959099732663, 62.596386217350016 ], [ 28.630635207248986, 62.605429593001304 ], [ 28.608827751999115, 62.606463120876299 ], [ 28.658230422196198, 62.653333645531291 ], [ 28.809849073875625, 62.630802720768941 ], [ 29.039809197836178, 62.523987535296499 ], [ 29.014487746012662, 62.514427394808422 ], [ 29.02409956244486, 62.509440619888665 ], [ 29.107091912861449, 62.491121323690095 ], [ 29.084560988099099, 62.433657132470671 ], [ 29.107815383273305, 62.41433014591945 ], [ 29.101924268989819, 62.396734321032056 ], [ 29.159285109220377, 62.385546373466354 ], [ 29.208791131305645, 62.417585760974077 ], [ 29.249512160158019, 62.409601752518824 ], [ 29.339842563883224, 62.299117539942472 ], [ 29.413119745080166, 62.244753933247409 ], [ 29.422111443888014, 62.160598862847223 ], [ 29.493838332373116, 62.061483465889182 ], [ 29.656412387621572, 61.973142605346936 ], [ 29.616621534756007, 61.9235073920525 ], [ 29.69279259580162, 61.867128403752815 ], [ 29.673568962937281, 61.850385240486446 ], [ 29.693826124575992, 61.824857083087863 ], [ 29.532388949990036, 61.684788113280774 ], [ 29.341082798232549, 61.621510322143649 ], [ 29.24610151457324, 61.559912014028214 ], [ 29.053348422891361, 61.534228827898062 ], [ 28.820701124657148, 61.538001206890158 ], [ 28.809332309938156, 61.498003649348902 ], [ 28.653166131112016, 61.469581611202386 ], [ 28.562939081073694, 61.472888902201021 ], [ 28.510125767090472, 61.50836477281598 ], [ 28.468887974300571, 61.509217434437005 ], [ 28.341557244771025, 61.418576972349342 ], [ 28.181463657321899, 61.373308417249632 ], [ 27.540262485225469, 61.360337632975359 ], [ 27.250254346760698, 61.40374583610145 ], [ 26.968514439389821, 61.359820869037833 ], [ 26.976369255736529, 61.343878688750465 ], [ 27.255732048994844, 61.324370835945274 ], [ 27.226069777398266, 61.316102607549283 ], [ 27.331076287740473, 61.252824816412101 ], [ 27.335830518663499, 61.218330796828809 ], [ 27.385749952798051, 61.213008124225496 ], [ 27.366629672721217, 61.181382147867794 ], [ 27.330352818227936, 61.168308009906696 ], [ 27.001587354772596, 61.151539008218606 ], [ 26.928516880049983, 61.184689439765805 ], [ 26.918284945993435, 61.226754054855689 ], [ 26.871879510231167, 61.283288071887 ], [ 26.796948682635559, 61.273469549879792 ], [ 26.732869906720794, 61.2258238797682 ], [ 26.649154086791668, 61.211974596350501 ], [ 26.640265740771326, 61.221483059095874 ], [ 26.665897250957357, 61.248148098056276 ], [ 26.634684685749619, 61.282564602374464 ], [ 26.515105421577914, 61.273676256354122 ], [ 26.479241978234711, 61.311632594768412 ], [ 26.403277621864731, 61.324060777582815 ], [ 26.29362023338706, 61.370802110129262 ], [ 26.31863162594874, 61.397131253204748 ], [ 26.256929965945176, 61.439066677085464 ], [ 26.283801711379851, 61.478418281278607 ], [ 26.26023725784313, 61.502086086703514 ], [ 26.290726352639069, 61.524823717040874 ], [ 26.282044712193681, 61.576913561511617 ], [ 26.316667922086936, 61.572805283936702 ], [ 26.319458449148101, 61.60763520030423 ], [ 26.354598422978825, 61.617531235777903 ], [ 26.372788527068849, 61.651947740096091 ], [ 26.515002068790409, 61.638460190984972 ], [ 26.529161410570623, 61.701660467756369 ], [ 26.47438439272554, 61.758375352840233 ], [ 26.377956170041216, 61.81245473869518 ], [ 26.378989698815531, 61.875344957104062 ], [ 26.334134555765104, 61.883845730396104 ], [ 26.347467075245333, 61.939527085806333 ], [ 26.386637811385867, 61.965184435313404 ], [ 26.390255160747074, 61.990299181561966 ], [ 26.247524855087988, 62.100654202029773 ], [ 26.244837680814328, 62.136672675003922 ], [ 26.334031202977599, 62.197340807132491 ], [ 26.39997033086604, 62.223385729367862 ], [ 26.460845167670357, 62.213980618510732 ], [ 26.520273065449601, 62.255761012760502 ], [ 26.656802199362005, 62.23046540025797 ], [ 26.635821567311439, 62.246020006018455 ], [ 26.626933221291097, 62.295836087365501 ], [ 26.67633588968954, 62.311339016282545 ], [ 26.666103957431687, 62.321364243864707 ], [ 26.685327590296026, 62.340303656788308 ], [ 26.766459587839677, 62.362085272717138 ], [ 26.693595818692074, 62.393427029134045 ], [ 26.711785922782099, 62.451278794880466 ], [ 26.801289504207261, 62.4322618684904 ], [ 26.861234165024655, 62.473758042799432 ], [ 26.966964145778661, 62.454095161262671 ], [ 26.959419386895149, 62.479080716302008 ], [ 26.970581496039188, 62.482026272094743 ], [ 27.032593215304644, 62.472595322815891 ], [ 27.122613559767956, 62.48838247347237 ], [ 27.202505323861601, 62.464146227266554 ], [ 27.305134719191926, 62.480631009013848 ], [ 27.351333449379183, 62.499363715463062 ], [ 27.347509392644326, 62.521248684179398 ], [ 27.380892368188199, 62.517295437134692 ], [ 27.506776156894091, 62.47215607414347 ], [ 27.692501255428567, 62.386295681400554 ], [ 27.688780552380592, 62.376012071399941 ], [ 27.763814731864386, 62.363635566328298 ], [ 27.743144159075655, 62.339864407216567 ], [ 27.838228793723829, 62.278989570412307 ], [ 27.899723748152439, 62.285862534828084 ], [ 27.967213168752721, 62.260127671854548 ], [ 27.981372512331575, 62.276844998497836 ], [ 27.959461704294199, 62.277594306432093 ], [ 28.068395623259391, 62.286120917246478 ], [ 28.090306431296767, 62.317075100035822 ], [ 28.210402459405941, 62.354075425840222 ], [ 28.310344678663967, 62.357899482575021 ], [ 28.328844842015826, 62.379086819301222 ], [ 28.295255160896943, 62.389137885305161 ], [ 28.254844191306347, 62.42960053173914 ], [ 28.303213331829795, 62.443579007265328 ], [ 28.282852818302899, 62.465076402354043 ], [ 28.38692915175892, 62.461381537727732 ], [ 28.395300733841793, 62.473964749273705 ], [ 28.371426221942556, 62.499596259459793 ], [ 28.40315555198714, 62.52920685511225 ], [ 28.412664014732457, 62.576852525223842 ], [ 28.520357700247644, 62.555510158866696 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-05", "NAME_1": "Kainuu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.731532793000099, 65.496921399000016 ], [ 29.718164917000081, 65.454171245000012 ], [ 29.730567260000043, 65.365365296000093 ], [ 29.720128622000118, 65.329088440000035 ], [ 29.580085490000045, 65.235399069000081 ], [ 29.626697632000059, 65.2152194210001 ], [ 29.833196655000052, 65.205013327000117 ], [ 29.839294475000088, 65.166901958000054 ], [ 29.808185262000052, 65.135301819000077 ], [ 29.850198201000069, 65.121504211000044 ], [ 29.820484253000075, 65.093650615000072 ], [ 29.667832072000124, 65.077940980000093 ], [ 29.598378947000128, 65.03437774700005 ], [ 29.588147013000082, 64.991434632000093 ], [ 29.633622274000118, 64.907150371000071 ], [ 29.698321167000074, 64.839144186000013 ], [ 29.780279989000064, 64.795580954000073 ], [ 30.06253666200007, 64.78416046200006 ], [ 30.118863973000146, 64.767934062000066 ], [ 30.109148803000039, 64.720081686000057 ], [ 30.170540405000111, 64.681686096000035 ], [ 30.187800334000087, 64.662359111000072 ], [ 30.180824015000098, 64.642773743000063 ], [ 30.136433960000147, 64.615385234000101 ], [ 29.954842977000112, 64.568979798 ], [ 29.990499715000055, 64.504177551000097 ], [ 30.070391479000079, 64.471879781000027 ], [ 30.032460978000074, 64.39694895500007 ], [ 30.093129110000064, 64.361240540000054 ], [ 30.321125529000085, 64.317677307000039 ], [ 30.445975790000034, 64.250756327000047 ], [ 30.558475382000097, 64.219698792000017 ], [ 30.532792196000116, 64.162544658000073 ], [ 30.586432332000072, 64.084668275000112 ], [ 30.580489543000112, 64.051078594000089 ], [ 30.50933109500005, 63.991392314000066 ], [ 30.32856693500014, 63.895997620000045 ], [ 30.265573365000137, 63.830678609000088 ], [ 30.201546265000047, 63.792644756000058 ], [ 29.766586540936089, 63.714147446947095 ], [ 29.735890740565196, 63.73218252230555 ], [ 29.686591424054939, 63.85801463506732 ], [ 29.656205682046561, 63.873362535252795 ], [ 28.934699333807202, 63.841994941313487 ], [ 28.518600701960793, 63.882018338175726 ], [ 28.465477328715735, 63.871347154547493 ], [ 28.441189405666535, 63.824941717885963 ], [ 28.326054314954661, 63.714922594202335 ], [ 28.260838656578699, 63.678645737910472 ], [ 28.152008091300331, 63.722028103514162 ], [ 28.082865025200761, 63.775642402275025 ], [ 27.744694451787495, 63.908295803508508 ], [ 27.522072381135445, 63.956845812084509 ], [ 27.445177849677975, 63.944856878841847 ], [ 27.387920363134242, 63.972581284998284 ], [ 26.872086215806178, 64.03340444585848 ], [ 26.803459913644076, 64.058725898581315 ], [ 26.779378696169886, 64.118980617761281 ], [ 26.773280877210709, 64.244683539313883 ], [ 26.760051711417304, 64.264398097694027 ], [ 26.691425409255203, 64.273053901516334 ], [ 26.67695600821321, 64.315893662962139 ], [ 26.557376743142186, 64.318580838135119 ], [ 26.474694451987375, 64.350904446483014 ], [ 26.466322869904502, 64.394364326452489 ], [ 26.295997349298204, 64.480431423871096 ], [ 26.319355096360596, 64.502678127793331 ], [ 26.433043247148134, 64.545207830876677 ], [ 26.550038689833627, 64.564018053490372 ], [ 26.535569288791635, 64.570968533171254 ], [ 26.647087030142302, 64.624660346297901 ], [ 26.646260206942998, 64.647268785426093 ], [ 26.808730910303268, 64.658999335351041 ], [ 26.904228957000726, 64.707187607821822 ], [ 26.908156365623768, 64.732328193391368 ], [ 26.892240024657383, 64.732483222122994 ], [ 26.907329543323726, 64.752068590193232 ], [ 26.992699008752254, 64.793693955711433 ], [ 27.115275505560135, 64.826586004840237 ], [ 27.360221795399525, 64.817801012506663 ], [ 27.388023715921747, 64.84549958024138 ], [ 27.38399295361188, 64.877177233442524 ], [ 27.405076939349271, 64.931670030447492 ], [ 27.382029249750076, 64.942315374754685 ], [ 27.392364535694753, 64.951591295302023 ], [ 27.380065544988895, 64.964096992482212 ], [ 27.280950148030911, 65.015670071216789 ], [ 27.282397087955246, 65.048794664342267 ], [ 27.363425733610711, 65.085665798937441 ], [ 27.764331495801855, 65.107240709291261 ], [ 27.883497348823596, 65.092151191524238 ], [ 27.940341424217308, 65.175246893829069 ], [ 28.02343712742146, 65.231470852497807 ], [ 28.613788690295792, 65.296505641921783 ], [ 28.60603722493795, 65.316323553988809 ], [ 28.573894483743402, 65.31882986110918 ], [ 28.650478956838356, 65.36564870892073 ], [ 28.648515252077175, 65.384691473732516 ], [ 28.948548618124221, 65.446729031419636 ], [ 29.115876906094343, 65.455178127868294 ], [ 29.196595493387292, 65.474143378314238 ], [ 29.246618280309349, 65.521892402112655 ], [ 29.488774041288934, 65.491920071254242 ], [ 29.731532793000099, 65.496921399000016 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-06", "NAME_1": "Kanta-Häme" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.804202101146018, 61.267475083708121 ], [ 24.881199985390992, 61.284114895086304 ], [ 24.918303663982897, 61.322303779295964 ], [ 24.921300896619073, 61.291711330813257 ], [ 25.003569776623863, 61.281660264809318 ], [ 25.0324052259204, 61.253935859552257 ], [ 25.187744582446498, 61.240034899291118 ], [ 25.260711704381606, 61.180968735818453 ], [ 25.240557896429777, 61.120558987007598 ], [ 25.287583448917019, 61.103040677385309 ], [ 25.286653272930209, 61.075703843957228 ], [ 25.236630486907416, 61.013847154322661 ], [ 25.209138624747709, 61.010617376790492 ], [ 25.254303827059971, 60.976588446999187 ], [ 25.164593540059798, 60.929872951975142 ], [ 25.084185012028684, 60.837837225907208 ], [ 25.156221957976982, 60.771975613283871 ], [ 25.096380649947037, 60.756550197833349 ], [ 25.063411085553128, 60.716449287504588 ], [ 25.123769159319238, 60.734200141123608 ], [ 25.182370232999858, 60.723580634338759 ], [ 25.093280063624036, 60.698259182515244 ], [ 25.107646111878523, 60.666504014948316 ], [ 24.994681430603521, 60.680017402481099 ], [ 24.75066531675094, 60.654437568239132 ], [ 24.612379184551685, 60.660509548776645 ], [ 24.574552036447301, 60.636454168824798 ], [ 24.566283807151933, 60.578214830350134 ], [ 24.524942660675208, 60.558526109492334 ], [ 24.414045037848211, 60.56343537094557 ], [ 24.397198520895017, 60.596249904809213 ], [ 24.340561151076258, 60.60183095983092 ], [ 24.309245233081015, 60.594027818528957 ], [ 24.304077590108704, 60.568267117133701 ], [ 24.283923781257499, 60.565399074807431 ], [ 24.252401156787926, 60.597128403952638 ], [ 24.192766554332991, 60.619788519924214 ], [ 23.94782026539292, 60.652680569053018 ], [ 23.7046309747397, 60.661129666400939 ], [ 23.652851190430056, 60.689551704547512 ], [ 23.528000928699896, 60.712780260400677 ], [ 23.477047966690293, 60.74652497025113 ], [ 23.267345005267771, 60.72820567495188 ], [ 23.176497836705778, 60.763733222410281 ], [ 23.162441846813749, 60.779882107373339 ], [ 23.212051221686522, 60.829310615092766 ], [ 23.141977979600085, 60.846208807990081 ], [ 23.138257276552054, 60.870910143088622 ], [ 23.157687615890723, 60.890237127841147 ], [ 23.267138298793441, 60.893337714164147 ], [ 23.256389600799423, 60.914576727733788 ], [ 23.294940220214983, 60.936280830196154 ], [ 23.279747348761134, 60.958243313278274 ], [ 23.197375115968782, 60.999946194061579 ], [ 23.275199823413118, 61.019118150082534 ], [ 23.469296502231771, 60.964211941028225 ], [ 23.457927686613402, 60.982195340442559 ], [ 23.707008090650845, 61.007000027429285 ], [ 23.778941684710958, 60.993073228746482 ], [ 23.852322218695406, 60.946331896200036 ], [ 23.865964797437414, 60.959225165209205 ], [ 23.82524376768572, 60.999687812542504 ], [ 23.878057081668942, 61.027179673802891 ], [ 23.796408319288503, 61.028316555364711 ], [ 23.804469842109484, 61.048367011428411 ], [ 23.766952752367615, 61.057152005560567 ], [ 23.778528272661617, 61.068314113805286 ], [ 24.032879673358195, 61.121385810206959 ], [ 24.140159945924722, 61.12541657251677 ], [ 24.135715773364211, 61.138852443885128 ], [ 24.282166782071329, 61.18401764619739 ], [ 24.293845656052156, 61.195412299338102 ], [ 24.265526970693145, 61.215695299398533 ], [ 24.279479607797668, 61.237141018543127 ], [ 24.380352003941823, 61.243807278283214 ], [ 24.517501254579201, 61.290729478882326 ], [ 24.584370557555189, 61.294811917136258 ], [ 24.687826776084819, 61.274399725866601 ], [ 24.736505974970726, 61.310392361318407 ], [ 24.764514601067958, 61.277138576983702 ], [ 24.804202101146018, 61.267475083708121 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-07", "NAME_1": "Keski-Pohjanmaa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.990733268725364, 63.787624416133895 ], [ 22.990733269000089, 63.815375067000048 ], [ 23.074961785000085, 63.857367255000042 ], [ 23.13257897200009, 63.852484442000048 ], [ 23.153493686000047, 63.863470770000049 ], [ 23.141856316000087, 63.875962632000039 ], [ 23.155039910000085, 63.883693752000056 ], [ 23.39421634200005, 63.911078192000048 ], [ 23.41578209700009, 63.924627997000073 ], [ 23.37086022200009, 63.946519273000035 ], [ 23.381602410000085, 64.048163153000075 ], [ 23.415212436000047, 64.056219794000071 ], [ 23.477305535000085, 64.035101630000042 ], [ 23.604502800000091, 64.02765534100007 ], [ 23.619802280000044, 64.038031317000048 ], [ 23.56609134200005, 64.096584377000056 ], [ 23.57357832100007, 64.107245184000078 ], [ 23.614431186000047, 64.103420315000051 ], [ 23.706472200831399, 64.168076889836584 ], [ 24.036393669931897, 64.077846177758886 ], [ 24.093961215737522, 64.047718818168903 ], [ 24.12724083759457, 63.977748927970595 ], [ 24.223875766753224, 63.925374864458377 ], [ 24.243099399617563, 63.883801174884297 ], [ 24.40825727725155, 63.83414012316814 ], [ 24.630362583066756, 63.658982856373711 ], [ 24.768648716165274, 63.604593411256872 ], [ 25.028684522872425, 63.458039048862986 ], [ 24.895669387332362, 63.418119004788196 ], [ 24.811230096092061, 63.380782783098937 ], [ 24.783428175569838, 63.352205716220794 ], [ 24.799861281373012, 63.275750434335066 ], [ 24.759346958095648, 63.262857164426578 ], [ 24.764101189917938, 63.231567083953735 ], [ 24.736402622183277, 63.137076728508191 ], [ 24.528249952573219, 63.159142565277136 ], [ 24.362782016576773, 63.119196681881306 ], [ 24.178297153290998, 63.151597805494305 ], [ 24.224909294628219, 63.174542141406675 ], [ 24.043214959302929, 63.263063870001588 ], [ 23.87051232278543, 63.281615709297512 ], [ 23.76953657385377, 63.316962388703246 ], [ 23.699359978979828, 63.380627753467991 ], [ 23.710728793698877, 63.386027941336408 ], [ 23.675278760606318, 63.424190986225028 ], [ 23.639932082099904, 63.53214305325929 ], [ 23.578023715621953, 63.556741035570326 ], [ 23.566758253690466, 63.59244944928264 ], [ 23.443561639258235, 63.607487291105542 ], [ 23.485212844097475, 63.637072049235655 ], [ 23.483352492123799, 63.665106512855232 ], [ 23.499578892351963, 63.668465480697364 ], [ 23.517562289967714, 63.640456855499451 ], [ 23.545674268852395, 63.635185858840259 ], [ 23.733983188873026, 63.668232936700633 ], [ 23.715379672733718, 63.688670966391953 ], [ 23.503092888925664, 63.767012437773758 ], [ 23.475911086027793, 63.768252672123083 ], [ 23.449452751743081, 63.743447984237037 ], [ 23.32150190638788, 63.753318183087629 ], [ 23.245847609279735, 63.719831854756251 ], [ 23.197891879906308, 63.723810940222677 ], [ 23.036144646957894, 63.786959540150633 ], [ 22.990733268725364, 63.787624416133895 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-08", "NAME_1": "Keski-Suomi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.137764112923435, 63.456282050576135 ], [ 26.170010206905488, 63.443311266301862 ], [ 26.163292271221337, 63.429797878769079 ], [ 26.087224562063852, 63.368018704399674 ], [ 26.184376255160032, 63.228130601745818 ], [ 26.154817336350959, 63.202757473078861 ], [ 26.160915155310136, 63.151442775863359 ], [ 26.313567335763935, 63.038503933010077 ], [ 26.2338822772453, 63.03222524689761 ], [ 26.247628207875493, 63.006722927021428 ], [ 26.324316033757952, 62.96881826455126 ], [ 26.290829706325894, 62.945460517488868 ], [ 26.184169548685702, 62.954012966725031 ], [ 26.063866815001518, 62.937528184977737 ], [ 26.052187941020634, 62.921017564808722 ], [ 26.187476840583713, 62.861124579935392 ], [ 26.161741977610177, 62.843942166197962 ], [ 26.17414432110354, 62.831927395432899 ], [ 26.360489536362991, 62.757513333573456 ], [ 26.440277947669131, 62.779217434237182 ], [ 26.506527133920088, 62.748676663497179 ], [ 26.583214958903227, 62.657467759729286 ], [ 26.59696089043274, 62.625480048165684 ], [ 26.581871371766397, 62.600933742698032 ], [ 26.594997185671559, 62.594009101438871 ], [ 26.481825798821546, 62.524555976077409 ], [ 26.488130324255053, 62.511740221434025 ], [ 26.589106073186713, 62.47060578143163 ], [ 26.711785922782099, 62.451278794880466 ], [ 26.693595818692074, 62.393427029134045 ], [ 26.766459587839677, 62.362085272717138 ], [ 26.685327590296026, 62.340303656788308 ], [ 26.666103957431687, 62.321364243864707 ], [ 26.67633588968954, 62.311339016282545 ], [ 26.626933221291097, 62.295836087365501 ], [ 26.635821567311439, 62.246020006018455 ], [ 26.656802199362005, 62.23046540025797 ], [ 26.647603794079828, 62.226176256429085 ], [ 26.520273065449601, 62.255761012760502 ], [ 26.460845167670357, 62.213980618510732 ], [ 26.39997033086604, 62.223385729367862 ], [ 26.334031202977599, 62.197340807132491 ], [ 26.244837680814328, 62.136672675003922 ], [ 26.247524855087988, 62.100654202029773 ], [ 26.390255160747074, 61.990299181561966 ], [ 26.386637811385867, 61.965184435313404 ], [ 26.347467075245333, 61.939527085806333 ], [ 26.334134555765104, 61.883845730396104 ], [ 26.370101352795189, 61.88400076002705 ], [ 26.377956170041216, 61.81245473869518 ], [ 26.521099887749585, 61.715458076129266 ], [ 26.529058057783118, 61.686364244414335 ], [ 26.515002068790409, 61.638460190984972 ], [ 26.496605259125374, 61.630992947366622 ], [ 26.394699334206905, 61.656211046402632 ], [ 26.372788527068849, 61.651947740096091 ], [ 26.354598422978825, 61.617531235777903 ], [ 26.319458449148101, 61.60763520030423 ], [ 26.312120395839599, 61.638460190984972 ], [ 26.289382764602863, 61.652076931305317 ], [ 26.146135695006308, 61.62631622991006 ], [ 26.057562289568011, 61.66564199478222 ], [ 26.081643507941521, 61.705019436497764 ], [ 26.052394646595644, 61.72749868441673 ], [ 26.009296501832068, 61.720677395045698 ], [ 25.978393995886165, 61.758091132000118 ], [ 25.924857212390407, 61.783722643085468 ], [ 25.901086053278732, 61.761010851169829 ], [ 25.874937778255855, 61.760209866392188 ], [ 25.877935011791351, 61.787133286871665 ], [ 25.862018669925646, 61.798037014496572 ], [ 25.764040155428802, 61.693030504154422 ], [ 25.690866327019364, 61.705897936540509 ], [ 25.582242466416687, 61.675408840845307 ], [ 25.516199984841421, 61.678044339174903 ], [ 25.461009555846317, 61.52704580332113 ], [ 25.426489698740568, 61.490355536778566 ], [ 24.966879510081299, 61.451133123794591 ], [ 24.921094191044062, 61.539241441239483 ], [ 24.896702915207356, 61.549938463289436 ], [ 24.912102492236215, 61.561772366001833 ], [ 24.906624790002013, 61.580220852510308 ], [ 24.829006789032064, 61.56792186090513 ], [ 24.789939405679036, 61.615024929556796 ], [ 24.797587518249372, 61.637271634378408 ], [ 24.82973025944392, 61.653136298501352 ], [ 24.957887811273451, 61.637762559894213 ], [ 24.965949334094489, 61.667088934706555 ], [ 24.922747837442728, 61.709411933114211 ], [ 24.945278762205078, 61.735017604878522 ], [ 24.995714959377835, 61.731555284248941 ], [ 24.965742629418799, 61.780932115124983 ], [ 24.980728794398317, 61.78723664055849 ], [ 24.937837355209751, 61.801447659182088 ], [ 24.946725702129413, 61.917667955511718 ], [ 24.887814569187015, 62.038849189238647 ], [ 24.868797641897629, 62.055747382135962 ], [ 24.773506300775125, 62.034353338935432 ], [ 24.685242953699344, 62.049468696023496 ], [ 24.66860314322048, 62.058512070775407 ], [ 24.669119907157949, 62.109025784112589 ], [ 24.564940220015103, 62.180856025385253 ], [ 24.499621208851693, 62.192638251254266 ], [ 24.431304965951426, 62.174086411958342 ], [ 24.443603956657284, 62.159513658128787 ], [ 24.376424595318781, 62.158764350194588 ], [ 24.332602980143406, 62.17496491200103 ], [ 24.24578657389128, 62.25475332330717 ], [ 24.077528109934292, 62.285836697305683 ], [ 24.023474561601745, 62.33069184035611 ], [ 24.020270623390559, 62.363997301534198 ], [ 24.049622836624565, 62.390688178016944 ], [ 24.169202100796269, 62.458694363454072 ], [ 24.220775181329543, 62.470579942110589 ], [ 24.326298455609219, 62.458720200976472 ], [ 24.32784874832106, 62.491328030164425 ], [ 24.372290480221466, 62.499957993766373 ], [ 24.434302198587602, 62.478563951465162 ], [ 24.513573845956216, 62.503937080132118 ], [ 24.527423130273235, 62.560936184257457 ], [ 24.563699984766458, 62.580883287533652 ], [ 24.555638461945421, 62.60935700072497 ], [ 24.581683384180792, 62.611579087904545 ], [ 24.515020785880552, 62.618555406007147 ], [ 24.520291781640367, 62.635350247016277 ], [ 24.571141391761785, 62.660568346052287 ], [ 24.365159133387294, 62.843477078204558 ], [ 24.365469190850433, 62.861848050347191 ], [ 24.441123487958578, 62.867971706828769 ], [ 24.443603956657284, 62.895799465772711 ], [ 24.34655561724793, 62.934195055557325 ], [ 24.339320915827614, 62.965355943022303 ], [ 24.304697706833679, 62.994863185887311 ], [ 24.296739535900826, 63.034964098014655 ], [ 24.278342726235792, 63.03470571649558 ], [ 24.266147088317439, 63.060337225782291 ], [ 24.32650516118423, 63.076822008428906 ], [ 24.362782016576773, 63.119196681881306 ], [ 24.528249952573219, 63.159142565277136 ], [ 24.736402622183277, 63.137076728508191 ], [ 24.764101189917938, 63.231567083953735 ], [ 24.759346958095648, 63.262857164426578 ], [ 24.799861281373012, 63.275750434335066 ], [ 24.783428175569838, 63.352205716220794 ], [ 24.811230096092061, 63.380782783098937 ], [ 24.895669387332362, 63.418119004788196 ], [ 25.080671013656342, 63.471035672458299 ], [ 25.150537551067089, 63.5754479026985 ], [ 25.231566195823234, 63.600924384152961 ], [ 25.358380161415312, 63.582114163337963 ], [ 25.491395297854694, 63.53154877405666 ], [ 25.736341586794765, 63.51767365221724 ], [ 25.912144809635265, 63.438531196057795 ], [ 25.971055941678344, 63.430288805184205 ], [ 26.137764112923435, 63.456282050576135 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-09", "NAME_1": "Kymenlaakso" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.003781678781422, 60.664225534880529 ], [ 27.807871941000087, 60.55304596600007 ], [ 27.762054884000065, 60.580145575000074 ], [ 27.739512566000087, 60.574164130000042 ], [ 27.753184441000087, 60.559881903000075 ], [ 27.733409050000034, 60.544256903000075 ], [ 27.753184441000087, 60.518947658000059 ], [ 27.732676629000082, 60.512111721000053 ], [ 27.753184441000087, 60.505845445000034 ], [ 27.71843509200005, 60.488470770000049 ], [ 27.63648522200009, 60.492254950000074 ], [ 27.691661004000082, 60.518947658000059 ], [ 27.63217207100007, 60.521673895000049 ], [ 27.608246290000068, 60.499945380000042 ], [ 27.629649285000085, 60.471136786000045 ], [ 27.508474155000044, 60.513861395000049 ], [ 27.472666863000086, 60.505845445000034 ], [ 27.493174675000034, 60.492254950000074 ], [ 27.472666863000086, 60.47797272300005 ], [ 27.506683790000068, 60.457464911000045 ], [ 27.369313998000052, 60.497870184000078 ], [ 27.232432488000086, 60.512111721000053 ], [ 27.230804884000065, 60.526312567000048 ], [ 27.308116082000083, 60.525783596000053 ], [ 27.211924675000091, 60.559881903000075 ], [ 27.227712436000047, 60.579575914000031 ], [ 27.21461022200009, 60.584947007000039 ], [ 27.177744988000086, 60.567328192000048 ], [ 27.200694207000083, 60.523260809000078 ], [ 27.177744988000086, 60.512111721000053 ], [ 27.16968834700009, 60.528631903000075 ], [ 27.112559441000087, 60.546820380000042 ], [ 27.088389519000089, 60.525783596000053 ], [ 27.05437259200005, 60.546820380000042 ], [ 27.024424675000091, 60.536078192000048 ], [ 27.02711022200009, 60.519924221000053 ], [ 26.998220248000052, 60.488023179000038 ], [ 26.93140709700009, 60.485419012000079 ], [ 26.962412957000083, 60.447211005000042 ], [ 26.914724155000044, 60.474554755000042 ], [ 26.793630405000044, 60.457464911000045 ], [ 26.814707879000082, 60.485419012000079 ], [ 26.797048373000052, 60.485907294000071 ], [ 26.742442254000082, 60.468003648000035 ], [ 26.739024285000085, 60.43695709800005 ], [ 26.701426629000082, 60.419907945000034 ], [ 26.617035352000073, 60.452948309000078 ], [ 26.553396030000044, 60.433010158000059 ], [ 26.501963738000086, 60.453070380000042 ], [ 26.474864129000082, 60.487250067000048 ], [ 26.536631707000083, 60.515529690000051 ], [ 26.57984459700009, 60.591376044000071 ], [ 26.625010613000086, 60.609605210000041 ], [ 26.666677280000044, 60.606431382000039 ], [ 26.753184441000087, 60.574164130000042 ], [ 26.73178144600007, 60.612860419000071 ], [ 26.659190300000091, 60.65180084800005 ], [ 26.615489129000082, 60.643052476000037 ], [ 26.553301563316495, 60.591770431160455 ], [ 26.501049431685885, 60.599402167076335 ], [ 26.416300082982445, 60.651285305072747 ], [ 26.348293898444638, 60.671103217139716 ], [ 26.328656854430278, 60.687872218827806 ], [ 26.327933384018422, 60.717224432961189 ], [ 26.288659295090383, 60.752002672485332 ], [ 26.215485466680946, 60.755413316271472 ], [ 26.180345492850222, 60.815616360406693 ], [ 26.093115676347395, 60.830654202229596 ], [ 26.085777622139517, 60.852513333423587 ], [ 26.118953892108436, 60.867861232709686 ], [ 26.159364861698975, 60.919976914702829 ], [ 26.042782831062766, 60.955091051011152 ], [ 26.046193474848963, 60.984055691516915 ], [ 26.111615837900558, 60.985631821751156 ], [ 26.136627232260935, 61.024905911578514 ], [ 26.108721958051888, 61.066918849825015 ], [ 26.058182407192305, 61.090199083420941 ], [ 26.052084588233129, 61.107614041155045 ], [ 26.085467563777001, 61.137844754431853 ], [ 26.130219354039923, 61.151358141065316 ], [ 26.197915480215215, 61.133013007344402 ], [ 26.300648228333046, 61.154923815381721 ], [ 26.395422803719384, 61.199830634376269 ], [ 26.43314659993564, 61.253677477133806 ], [ 26.465392693917693, 61.26607981972785 ], [ 26.634684685749619, 61.282564602374464 ], [ 26.665897250957357, 61.248148098056276 ], [ 26.640265740771326, 61.221483059095874 ], [ 26.664450311033022, 61.209804186014367 ], [ 26.761395297654872, 61.239156399248373 ], [ 26.796948682635559, 61.273469549879792 ], [ 26.871879510231167, 61.283288071887 ], [ 26.943606397817007, 61.171305244341511 ], [ 27.001587354772596, 61.151539008218606 ], [ 27.213150669068114, 61.161796779797498 ], [ 27.187622511669531, 61.113427639274107 ], [ 27.229273715609452, 61.096865343161028 ], [ 27.168295526017687, 61.072861640052622 ], [ 27.149692009878322, 61.053327948825768 ], [ 27.161267531071701, 61.02712799695945 ], [ 27.144731073380342, 61.013717963113493 ], [ 27.204262323047772, 60.999687812542504 ], [ 27.23929894409099, 60.962144884378858 ], [ 27.131295200213287, 60.96392772108743 ], [ 27.142974074194171, 60.946874498559225 ], [ 27.211807081931283, 60.909254055130532 ], [ 27.371487258230388, 60.872925523793867 ], [ 27.510806919203958, 60.797787991522569 ], [ 27.688367140331252, 60.798692329087714 ], [ 27.730431756320456, 60.765231839178 ], [ 27.852904901240208, 60.755671698689923 ], [ 27.887528110234086, 60.708439439728352 ], [ 27.954604119684348, 60.681929430398839 ], [ 27.956051059608683, 60.668157661346982 ], [ 28.003781678781422, 60.664225534880529 ] ] ], [ [ [ 26.602061394000089, 60.446519273000035 ], [ 26.652598504000082, 60.426906643000052 ], [ 26.573090040000068, 60.405340887000079 ], [ 26.54859459700009, 60.37836334800005 ], [ 26.50717207100007, 60.403469143000052 ], [ 26.574717644000089, 60.421779690000051 ], [ 26.602061394000089, 60.446519273000035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-10", "NAME_1": "Lappi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.866908407000096, 70.075310364000117 ], [ 27.927163127000142, 70.053270366000035 ], [ 28.167355184000115, 69.894339499000054 ], [ 28.381192260000034, 69.856202291000088 ], [ 28.37974532000004, 69.822354228000066 ], [ 28.404550008000058, 69.802252096000117 ], [ 29.131223999000099, 69.674197897000042 ], [ 29.203157593000071, 69.58598622600006 ], [ 29.34454431100005, 69.464391582000118 ], [ 29.229254191000052, 69.37685170500005 ], [ 28.852171265000095, 69.203528952000042 ], [ 28.827573283000106, 69.090770976 ], [ 28.954077189000088, 69.027260641000041 ], [ 28.833464396000096, 68.984472555000124 ], [ 28.410234415000104, 68.89853464800008 ], [ 28.41312829600011, 68.880086162000069 ], [ 28.444237508000043, 68.865823466000094 ], [ 28.728251180000115, 68.865048320000071 ], [ 28.801476684000107, 68.835489400000043 ], [ 28.716365600000103, 68.72795074500003 ], [ 28.459947144000125, 68.542432353000024 ], [ 28.447441447000131, 68.514888815000049 ], [ 28.690320679000109, 68.18317779600001 ], [ 29.330850057000134, 68.072693583000088 ], [ 29.651192261000062, 67.823561503000079 ], [ 30.009413290000111, 67.685843811999987 ], [ 29.977683960000093, 67.662227681000061 ], [ 29.959907268000052, 67.571587219000023 ], [ 29.91624068200008, 67.508128561 ], [ 29.519830770000112, 67.298167216000039 ], [ 29.490685262000056, 67.262975566000065 ], [ 29.429397014000131, 67.232770691999988 ], [ 29.099908081000109, 66.991209208000029 ], [ 29.051538940000057, 66.907803447000063 ], [ 29.089159383000094, 66.837549337 ], [ 29.322220093000112, 66.680065410000012 ], [ 29.409449910000035, 66.568470154000082 ], [ 29.524481648000062, 66.491213888000075 ], [ 29.546194294000145, 66.431969319000117 ], [ 29.169103631227586, 66.419201972293138 ], [ 28.734504836029316, 66.484365952926339 ], [ 28.689339633717111, 66.472997138207347 ], [ 28.669392531340236, 66.415067858095142 ], [ 28.610791456760296, 66.409125067867535 ], [ 28.553947381366527, 66.367835598234251 ], [ 28.548159620769866, 66.310629788533902 ], [ 28.573687778168392, 66.28608348306625 ], [ 28.650582309625861, 66.260219427984168 ], [ 28.646241488953535, 66.250220038823727 ], [ 28.735641716691873, 66.257816474550623 ], [ 28.764063754838389, 66.238902900048743 ], [ 28.736571892678683, 66.20650177733512 ], [ 28.762616814914054, 66.181206163033949 ], [ 28.711043735280157, 66.136996975130273 ], [ 28.608517693636657, 66.118083401527713 ], [ 28.644484490666684, 66.083253486059505 ], [ 28.633529087097656, 66.073900052045758 ], [ 28.756518995954877, 66.042790838726205 ], [ 28.756415643167372, 66.020569973225633 ], [ 28.675386996612588, 65.992251288765942 ], [ 28.436951938681034, 65.987135321737696 ], [ 28.389409621356947, 66.003258369178354 ], [ 28.396127557041098, 65.975353094969307 ], [ 28.376283806552408, 65.969617011216087 ], [ 28.496689893923474, 65.901507472991455 ], [ 28.514569939650983, 65.874635729355418 ], [ 28.470024854963071, 65.83861725548195 ], [ 28.42299930157651, 65.828850410318125 ], [ 28.193969353602768, 65.805389309568966 ], [ 27.764951613426206, 65.829315497412267 ], [ 27.769705845248552, 65.84267385531416 ], [ 27.637724236684164, 65.953648994305638 ], [ 27.554318475117498, 65.92491689689723 ], [ 27.430708448635983, 65.951736966387841 ], [ 27.102149692554235, 65.750844834821237 ], [ 26.841803826585306, 65.70521454541489 ], [ 26.187993605420559, 65.71893463852274 ], [ 26.158434685712166, 65.741801459169949 ], [ 26.162982211959502, 65.809290879770231 ], [ 26.128359002066247, 65.813941758805072 ], [ 25.762283156242631, 65.746374823839005 ], [ 25.505968051684192, 65.753273627575823 ], [ 25.388249138586843, 65.736142889782514 ], [ 25.093185233711552, 65.591917624898429 ], [ 25.074229363000086, 65.614162502000056 ], [ 24.93718509200005, 65.624090887000079 ], [ 24.85914147200009, 65.659125067000048 ], [ 24.780284050000091, 65.659735419000071 ], [ 24.675791863000086, 65.635443427000041 ], [ 24.66773522200009, 65.69086334800005 ], [ 24.583994988000086, 65.716864325000074 ], [ 24.55046634200005, 65.763495184000078 ], [ 24.645762566000087, 65.879461981000077 ], [ 24.707530144000089, 65.899237372000073 ], [ 24.71062259200005, 65.912095445000034 ], [ 24.617930535000085, 65.889227606000077 ], [ 24.614512566000087, 65.866156317000048 ], [ 24.518809441000087, 65.796047268000052 ], [ 24.452972852000073, 65.796942450000074 ], [ 24.404795769000089, 65.769232489000046 ], [ 24.238291863000086, 65.822699286000045 ], [ 24.244313998000052, 65.78156159100007 ], [ 24.206228061000047, 65.77875397300005 ], [ 24.054789673000101, 65.947913717000077 ], [ 24.055306437000041, 65.985172424999988 ], [ 24.01964969900007, 66.048941142000032 ], [ 23.97458785000012, 66.072815654000109 ], [ 23.889321737000046, 66.161104839000089 ], [ 23.785555461000058, 66.176685283000026 ], [ 23.724163859000072, 66.206631775000076 ], [ 23.662772258000103, 66.316521709000128 ], [ 23.67703495300006, 66.363624776000037 ], [ 23.642308390000039, 66.436256002000064 ], [ 23.6524369710001, 66.458838603000075 ], [ 23.881880330000115, 66.563535055000031 ], [ 23.893249146000102, 66.596039531000073 ], [ 23.881880330000115, 66.631799622000088 ], [ 23.903171020000116, 66.686318258000099 ], [ 23.892422322000101, 66.750913798000042 ], [ 23.939241170000116, 66.79111806300007 ], [ 24.004043416000115, 66.8051998910001 ], [ 23.933350057000013, 66.888760682000012 ], [ 23.816664672000115, 66.975499573000079 ], [ 23.72033980300003, 67.016866558000018 ], [ 23.676724894000074, 67.058491923000119 ], [ 23.666596313000127, 67.097921041000049 ], [ 23.581330200000082, 67.15313730900003 ], [ 23.57399214700007, 67.173032736000053 ], [ 23.614919881000105, 67.213986308000059 ], [ 23.591458781000114, 67.225019226000072 ], [ 23.602724243000068, 67.260262553000032 ], [ 23.73542932100014, 67.289692281000029 ], [ 23.785658814000072, 67.337518820000028 ], [ 23.751449015000077, 67.346226299000094 ], [ 23.765194946000122, 67.420071920000069 ], [ 23.594559367000073, 67.453609925000066 ], [ 23.477150513000055, 67.443817241000019 ], [ 23.431261841000094, 67.48552012200004 ], [ 23.484695272000096, 67.542958477000056 ], [ 23.473429810000141, 67.554999085000034 ], [ 23.553528279000119, 67.587038473000021 ], [ 23.484591919000081, 67.737158509000025 ], [ 23.481284627000093, 67.86464426700006 ], [ 23.532547648000104, 67.893169658000019 ], [ 23.636107219000053, 67.913478496000025 ], [ 23.662152140000046, 67.950427145000063 ], [ 23.382996053000085, 68.051247864000047 ], [ 23.306514933000102, 68.145609029000084 ], [ 23.165644979000035, 68.122044577000096 ], [ 23.149418579000013, 68.139407857000023 ], [ 23.155206340000092, 68.217439271000032 ], [ 23.066942993000112, 68.290251364000099 ], [ 22.903748820000146, 68.336605124000087 ], [ 22.808250773000111, 68.394896139000039 ], [ 22.748616170000105, 68.385491028000061 ], [ 22.662213175000119, 68.427400615000053 ], [ 22.377992798, 68.454117330000017 ], [ 22.371068156000035, 68.468380026 ], [ 22.303061971000147, 68.476131490000014 ], [ 22.07217167200011, 68.477009990000042 ], [ 21.919209432000059, 68.568218893000036 ], [ 21.737101685000084, 68.587907614000059 ], [ 21.716844523000077, 68.619223532 ], [ 21.463630005000084, 68.686867981000049 ], [ 21.406372518000126, 68.748879700000018 ], [ 21.305396769000083, 68.755804342 ], [ 21.216616658000049, 68.817247620000089 ], [ 21.072129353000093, 68.869440817000068 ], [ 20.905731242000087, 68.894607240000099 ], [ 20.884543905000044, 68.906699525000093 ], [ 20.887644490000071, 68.927060038000022 ], [ 20.934256632000142, 68.949022522000078 ], [ 20.934566691000043, 68.966954245000053 ], [ 20.911208944000066, 68.980700175 ], [ 20.62316451, 69.036355693000118 ], [ 20.744397421000144, 69.104361878000091 ], [ 21.071509237000043, 69.036665752000019 ], [ 21.156361938000089, 69.087618714000044 ], [ 21.03357873500002, 69.181204733000087 ], [ 21.098380981000048, 69.239495749000113 ], [ 21.313561646000096, 69.29143056300002 ], [ 21.638813110000086, 69.27138010700007 ], [ 22.023079061000089, 69.012016093000014 ], [ 22.160745076000097, 68.956102194000024 ], [ 22.2002258710001, 68.908456523000055 ], [ 22.277223755000136, 68.857451884000014 ], [ 22.371378215000107, 68.822621969000053 ], [ 22.409205363000098, 68.712912903000031 ], [ 22.570125773000115, 68.726813864000022 ], [ 22.851658976000095, 68.675705872000023 ], [ 23.071490519000037, 68.680873515000044 ], [ 23.197581014000093, 68.618034973000064 ], [ 23.481594686000079, 68.685627747000026 ], [ 23.734809204000072, 68.715445048000035 ], [ 23.787209106000091, 68.799780986000044 ], [ 23.929009237000031, 68.816214091000106 ], [ 24.13116744000007, 68.776164856000022 ], [ 24.186874633000087, 68.744538880000036 ], [ 24.332498820000069, 68.708623760000066 ], [ 24.663434693000085, 68.666094056000119 ], [ 24.754178508000052, 68.637878724000061 ], [ 24.879235474000012, 68.554834697000089 ], [ 24.905177042000076, 68.556953430000064 ], [ 24.951789185000024, 68.605064189000032 ], [ 25.132449992000119, 68.64764556900009 ], [ 25.149606567000092, 68.764641012000098 ], [ 25.201283, 68.812648418000052 ], [ 25.433930298000121, 68.883858542 ], [ 25.627768595000106, 68.874143372000034 ], [ 25.7263672280001, 68.942459615000089 ], [ 25.753859090000049, 68.978374736000077 ], [ 25.795820353000067, 68.993309225000033 ], [ 25.801091350000092, 69.013152975000096 ], [ 25.765848022000114, 69.030671286000072 ], [ 25.750241739000074, 69.05924835200004 ], [ 25.771222372000068, 69.13510935500004 ], [ 25.734118693000084, 69.191333314000033 ], [ 25.737219279000044, 69.218205058000038 ], [ 25.78662194900005, 69.312772929000019 ], [ 25.877365763000114, 69.370805563 ], [ 25.841398966000042, 69.417779439000057 ], [ 25.886667521000049, 69.455193176000122 ], [ 25.885737346000099, 69.479119365000017 ], [ 25.906407918000099, 69.501856995000097 ], [ 25.886667521000049, 69.520873922000064 ], [ 25.960254761000044, 69.548675842000122 ], [ 26.0039730230001, 69.587174785000073 ], [ 26.005109904000022, 69.610842590000019 ], [ 25.961701701000038, 69.652545472000057 ], [ 26.005109904000022, 69.689339091000036 ], [ 26.198276408000112, 69.715435690000035 ], [ 26.31682214300011, 69.79491404200003 ], [ 26.418728068000092, 69.835635071000084 ], [ 26.44787357600012, 69.856047262000047 ], [ 26.435884643000065, 69.874237366000088 ], [ 26.533863159000077, 69.925242005000044 ], [ 26.864592326000064, 69.938083599000024 ], [ 27.100340210000098, 69.901755066000064 ], [ 27.311800170000055, 69.929479472000097 ], [ 27.352417847000083, 69.948703105 ], [ 27.323168986000042, 69.959684347000078 ], [ 27.334537801000124, 69.96862436900004 ], [ 27.563309367000102, 70.023582255000051 ], [ 27.612557007000078, 70.062055359000013 ], [ 27.792184286000094, 70.058928936000072 ], [ 27.866908407000096, 70.075310364000117 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-11", "NAME_1": "Pirkanmaa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.020270623390559, 62.363997301534198 ], [ 24.023474561601745, 62.33069184035611 ], [ 24.053860303610122, 62.295913600831966 ], [ 24.24578657389128, 62.25475332330717 ], [ 24.332602980143406, 62.17496491200103 ], [ 24.415698683347557, 62.154656074418256 ], [ 24.443603956657284, 62.159513658128787 ], [ 24.431304965951426, 62.174086411958342 ], [ 24.448461541267079, 62.180339260548408 ], [ 24.530317010121905, 62.192948310516101 ], [ 24.669119907157949, 62.109025784112589 ], [ 24.66860314322048, 62.058512070775407 ], [ 24.685242953699344, 62.049468696023496 ], [ 24.773506300775125, 62.034353338935432 ], [ 24.868797641897629, 62.055747382135962 ], [ 24.887814569187015, 62.038849189238647 ], [ 24.946725702129413, 61.917667955511718 ], [ 24.937837355209751, 61.801447659182088 ], [ 24.980728794398317, 61.78723664055849 ], [ 24.965742629418799, 61.780932115124983 ], [ 24.995714959377835, 61.731555284248941 ], [ 24.945278762205078, 61.735017604878522 ], [ 24.922747837442728, 61.709411933114211 ], [ 24.965949334094489, 61.667088934706555 ], [ 24.957887811273451, 61.637762559894213 ], [ 24.82973025944392, 61.653136298501352 ], [ 24.797587518249372, 61.637271634378408 ], [ 24.789939405679036, 61.615024929556796 ], [ 24.829006789032064, 61.56792186090513 ], [ 24.906624790002013, 61.580220852510308 ], [ 24.912102492236215, 61.561772366001833 ], [ 24.896702915207356, 61.549938463289436 ], [ 24.936183708811086, 61.517304796579083 ], [ 24.958197869635967, 61.455939033359698 ], [ 24.860012647765473, 61.46539582016095 ], [ 24.903627557365837, 61.408370876714571 ], [ 24.901147087767868, 61.339977119448463 ], [ 24.918303663982897, 61.322303779295964 ], [ 24.881199985390992, 61.284114895086304 ], [ 24.778673943747492, 61.268663642113381 ], [ 24.736505974970726, 61.310392361318407 ], [ 24.687826776084819, 61.274399725866601 ], [ 24.550780877335626, 61.295948797798758 ], [ 24.380352003941823, 61.243807278283214 ], [ 24.279479607797668, 61.237141018543127 ], [ 24.265526970693145, 61.215695299398533 ], [ 24.293845656052156, 61.195412299338102 ], [ 24.282166782071329, 61.18401764619739 ], [ 24.135715773364211, 61.138852443885128 ], [ 24.140159945924722, 61.12541657251677 ], [ 24.032879673358195, 61.121385810206959 ], [ 23.778528272661617, 61.068314113805286 ], [ 23.766952752367615, 61.057152005560567 ], [ 23.804469842109484, 61.048367011428411 ], [ 23.796408319288503, 61.028316555364711 ], [ 23.878057081668942, 61.027179673802891 ], [ 23.82524376768572, 60.999687812542504 ], [ 23.865964797437414, 60.959225165209205 ], [ 23.852322218695406, 60.946331896200036 ], [ 23.778941684710958, 60.993073228746482 ], [ 23.707008090650845, 61.007000027429285 ], [ 23.457927686613402, 60.982195340442559 ], [ 23.469296502231771, 60.964211941028225 ], [ 23.275199823413118, 61.019118150082534 ], [ 23.197375115968782, 60.999946194061579 ], [ 23.122444289272494, 61.031572171318601 ], [ 22.995423618105463, 61.032037259312062 ], [ 22.967104932746452, 61.057307034292194 ], [ 23.000901320339665, 61.078856106224293 ], [ 22.923283319369659, 61.088545437022276 ], [ 22.96896528472007, 61.113582668904996 ], [ 22.921939732232829, 61.153270168983056 ], [ 22.921422967395984, 61.176886298463899 ], [ 22.949534946280721, 61.176834622519777 ], [ 22.923800083307185, 61.210889390732746 ], [ 22.867266066275931, 61.230578110691226 ], [ 22.661490512577075, 61.245202542263485 ], [ 22.572710401563768, 61.324474188732779 ], [ 22.590487095403091, 61.340132148180089 ], [ 22.571883579263726, 61.395451769283682 ], [ 22.639889763801534, 61.390620022196231 ], [ 22.673789504182253, 61.409688626329 ], [ 22.675236444106588, 61.426121731232854 ], [ 22.728773227602346, 61.436767076439423 ], [ 22.724742466191856, 61.470847683074112 ], [ 22.64061323421339, 61.499967353210764 ], [ 22.599892206260279, 61.532885239861912 ], [ 22.601545850860305, 61.552651475984817 ], [ 22.662834099713905, 61.582752997153079 ], [ 22.686295199563801, 61.607945257767426 ], [ 22.685261671688806, 61.630760403369891 ], [ 22.721848586343185, 61.647736111532311 ], [ 22.7039685397163, 61.675176296848576 ], [ 22.666451449974431, 61.655100003262532 ], [ 22.653945753693563, 61.675357164001866 ], [ 22.693943312134138, 61.731477769883156 ], [ 22.805461052585486, 61.781138820699994 ], [ 22.82292768716303, 61.822815863960898 ], [ 22.742829216595055, 61.853873399537747 ], [ 22.783653599134254, 61.875965073829093 ], [ 22.723398879055026, 61.915600897963031 ], [ 22.681127556591434, 61.923972480045904 ], [ 22.640199823063369, 61.967587388746949 ], [ 22.550282831387563, 61.991565253433691 ], [ 22.549249301713871, 62.003295803358583 ], [ 22.626350538746351, 62.040864569943892 ], [ 22.772801548352732, 62.067684638535184 ], [ 22.769390902767952, 62.151193752889355 ], [ 22.855277133932589, 62.173130398449075 ], [ 22.838327264191889, 62.271186428211081 ], [ 23.06074262926893, 62.289996649925399 ], [ 23.166782668385395, 62.318418688071972 ], [ 23.316127556941183, 62.419394436104312 ], [ 23.357055291368567, 62.417249864189841 ], [ 23.420720656133369, 62.379758612869637 ], [ 23.505056593686845, 62.373454088335507 ], [ 23.505676711311139, 62.409007473316194 ], [ 23.698119744630503, 62.426732490312133 ], [ 23.834028760918557, 62.488020738266414 ], [ 23.839093052002738, 62.462905992017909 ], [ 23.899451124869472, 62.479855861758608 ], [ 23.922085402419384, 62.406992093510269 ], [ 24.020270623390559, 62.363997301534198 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-12", "NAME_1": "Pohjanmaa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.316694227356663, 61.939186587191216 ], [ 21.277517123000052, 61.95148346600007 ], [ 21.294932488000086, 61.97134023600006 ], [ 21.236582879000082, 61.98501211100006 ], [ 21.276215040000068, 62.050197658000059 ], [ 21.289073113000086, 62.121568101000037 ], [ 21.296397332000083, 62.130438544000071 ], [ 21.31226647200009, 62.109116929000038 ], [ 21.32593834700009, 62.163763739000046 ], [ 21.383962436000047, 62.194484768000052 ], [ 21.389903191000087, 62.208156643000052 ], [ 21.35328209700009, 62.232001044000071 ], [ 21.374278191000087, 62.266791083000044 ], [ 21.352305535000085, 62.266017971000053 ], [ 21.31226647200009, 62.232001044000071 ], [ 21.339040561000047, 62.355536200000074 ], [ 21.270681186000047, 62.349310614000046 ], [ 21.260427280000044, 62.371975002000056 ], [ 21.277517123000052, 62.396470445000034 ], [ 21.270681186000047, 62.41079336100006 ], [ 21.205088738000086, 62.35968659100007 ], [ 21.216075066000087, 62.335028387000079 ], [ 21.194346550000091, 62.337062893000052 ], [ 21.202403191000087, 62.390326239000046 ], [ 21.18132571700005, 62.396470445000034 ], [ 21.202403191000087, 62.417629299000055 ], [ 21.166758660000085, 62.42133209800005 ], [ 21.133555535000085, 62.403957424000055 ], [ 21.154551629000082, 62.464789130000042 ], [ 21.116384311000047, 62.460150458000044 ], [ 21.115570509000065, 62.495794989000046 ], [ 21.154551629000082, 62.527492580000057 ], [ 21.12671959700009, 62.55414459800005 ], [ 21.209239129000082, 62.582098700000074 ], [ 21.193532748000052, 62.600897528000075 ], [ 21.106211785000085, 62.623032945000034 ], [ 21.065196160000085, 62.595770575000074 ], [ 21.067881707000083, 62.620103257000039 ], [ 21.078949415000068, 62.678290106000077 ], [ 21.125743035000085, 62.690171617000033 ], [ 21.160817905000044, 62.719305731000077 ], [ 21.116465691000087, 62.749660549000055 ], [ 21.113536004000082, 62.781195380000042 ], [ 21.150889519000089, 62.79437897300005 ], [ 21.18336022200009, 62.782375393000052 ], [ 21.243418816000087, 62.86945221600007 ], [ 21.356700066000087, 62.859523830000057 ], [ 21.390798373000052, 62.88031647300005 ], [ 21.422129754000082, 62.941799221000053 ], [ 21.463145379000082, 62.951402085000041 ], [ 21.444102410000085, 63.040920315000051 ], [ 21.480479363000086, 63.043036200000074 ], [ 21.495127800000091, 63.07172272300005 ], [ 21.625743035000085, 63.023871161000045 ], [ 21.688487175000091, 63.027085679000038 ], [ 21.559580925000091, 63.095119533000059 ], [ 21.553233269000089, 63.108587958000044 ], [ 21.572438998000052, 63.12335846600007 ], [ 21.52084394600007, 63.126776434000078 ], [ 21.516123894000089, 63.155462958000044 ], [ 21.503428582000083, 63.157456773000035 ], [ 21.551931186000047, 63.177923895000049 ], [ 21.500987175000091, 63.192450262000079 ], [ 21.504893425000091, 63.21743398600006 ], [ 21.558116082000083, 63.232611395000049 ], [ 21.647227410000085, 63.197658596000053 ], [ 21.667979363000086, 63.219549872000073 ], [ 21.742360873000052, 63.199652411000045 ], [ 21.764170769000089, 63.205877997000073 ], [ 21.702647332000083, 63.225775458000044 ], [ 21.894541863000086, 63.260484117000033 ], [ 21.880869988000086, 63.177923895000049 ], [ 21.983897332000083, 63.14321523600006 ], [ 21.955902540000068, 63.184759833000044 ], [ 21.994395379000082, 63.196437893000052 ], [ 22.02475019600007, 63.239406643000052 ], [ 22.043142123000052, 63.245591539000031 ], [ 22.07203209700009, 63.225775458000044 ], [ 22.175059441000087, 63.232611395000049 ], [ 22.244639519000089, 63.267075914000031 ], [ 22.278086785000085, 63.301459052000041 ], [ 22.307627800000091, 63.275864976000037 ], [ 22.330088738000086, 63.28384023600006 ], [ 22.373708530000044, 63.321356512000079 ], [ 22.250498894000089, 63.411322333000044 ], [ 22.205821160000085, 63.420314846000053 ], [ 22.190928582000083, 63.45844147300005 ], [ 22.246755405000044, 63.469631252000056 ], [ 22.304942254000082, 63.43585846600007 ], [ 22.401621941000087, 63.418158270000049 ], [ 22.279958530000044, 63.487616278000075 ], [ 22.27125084700009, 63.513739325000074 ], [ 22.292246941000087, 63.529730536000045 ], [ 22.337412957000083, 63.523342190000051 ], [ 22.33334394600007, 63.493231512000079 ], [ 22.38021894600007, 63.485419012000079 ], [ 22.396820509000065, 63.476955471000053 ], [ 22.394786004000082, 63.452337958000044 ], [ 22.407399936000047, 63.456935940000051 ], [ 22.435801629000082, 63.472805080000057 ], [ 22.431488477000073, 63.497381903000075 ], [ 22.497243686000047, 63.585760809000078 ], [ 22.545664910000085, 63.575181382000039 ], [ 22.497243686000047, 63.622992255000042 ], [ 22.531993035000085, 63.644110419000071 ], [ 22.52507571700005, 63.657700914000031 ], [ 22.58570397200009, 63.657049872000073 ], [ 22.589040561000047, 63.703314520000049 ], [ 22.637054884000065, 63.683091539000031 ], [ 22.65406334700009, 63.70376211100006 ], [ 22.675303582000083, 63.702378648000035 ], [ 22.73406009200005, 63.62759023600006 ], [ 22.773448113000086, 63.627508856000077 ], [ 22.829274936000047, 63.646226304000038 ], [ 22.840342644000089, 63.677639065000051 ], [ 22.901866082000083, 63.705511786000045 ], [ 22.833018425000091, 63.72601959800005 ], [ 22.901866082000083, 63.72601959800005 ], [ 22.87468509200005, 63.746527411000045 ], [ 22.925791863000086, 63.743394273000035 ], [ 22.929209832000083, 63.764349677000041 ], [ 22.898773634000065, 63.783270575000074 ], [ 22.922373894000089, 63.801703192000048 ], [ 22.99000084700009, 63.761297919000071 ], [ 23.001800977000073, 63.77374909100007 ], [ 22.990733268725364, 63.787624416133895 ], [ 23.036144646957894, 63.786959540150633 ], [ 23.197891879906308, 63.723810940222677 ], [ 23.245847609279735, 63.719831854756251 ], [ 23.32150190638788, 63.753318183087629 ], [ 23.449452751743081, 63.743447984237037 ], [ 23.475911086027793, 63.768252672123083 ], [ 23.503092888925664, 63.767012437773758 ], [ 23.715379672733718, 63.688670966391953 ], [ 23.733983188873026, 63.668232936700633 ], [ 23.545674268852395, 63.635185858840259 ], [ 23.517562289967714, 63.640456855499451 ], [ 23.495444777254647, 63.667897039916454 ], [ 23.475704379553463, 63.662315985794066 ], [ 23.485212844097475, 63.637072049235655 ], [ 23.443561639258235, 63.607487291105542 ], [ 23.566758253690466, 63.59244944928264 ], [ 23.578023715621953, 63.556741035570326 ], [ 23.639932082099904, 63.53214305325929 ], [ 23.675278760606318, 63.424190986225028 ], [ 23.707421501800866, 63.381609606298241 ], [ 23.613267043139501, 63.414269111430315 ], [ 23.549188267224736, 63.465351263749767 ], [ 23.50609012156184, 63.478606268864212 ], [ 23.350544061259427, 63.488011379721343 ], [ 23.262177362295404, 63.45256134752816 ], [ 23.156964146378243, 63.367346909931939 ], [ 22.988395623159477, 63.369749864264804 ], [ 22.975993279666113, 63.343472398932022 ], [ 22.955839470814908, 63.338924871785366 ], [ 22.736111280910848, 63.355719712794496 ], [ 22.750580681952897, 63.344402574019568 ], [ 22.653739048118553, 63.31551544877891 ], [ 22.674202915332273, 63.29717031505794 ], [ 22.578188103797913, 63.27081533535943 ], [ 22.569609816140087, 63.247121691512802 ], [ 22.598135207074108, 63.234590155910951 ], [ 22.574777459112454, 63.215030626262376 ], [ 22.59782514781233, 63.210948188008445 ], [ 22.581702101270935, 63.183482164270458 ], [ 22.664901157262591, 63.188649807242768 ], [ 22.674202915332273, 63.137180081295696 ], [ 22.640303175850875, 63.121625475535211 ], [ 22.632241652130517, 63.081240343467073 ], [ 22.550076124913232, 63.070879218201355 ], [ 22.539844190856684, 63.061784165706626 ], [ 22.554520298373063, 63.050983791768545 ], [ 22.497986281341809, 63.028246162330504 ], [ 22.428429803192842, 62.956674303476291 ], [ 22.394013298874654, 62.858023994511711 ], [ 22.247872349429372, 62.774540716780621 ], [ 22.17903934079294, 62.761983344555688 ], [ 21.991247185609097, 62.782292182138463 ], [ 21.873424919724243, 62.813427232980416 ], [ 21.791776157343747, 62.85662873053144 ], [ 21.767798292657062, 62.851719469078205 ], [ 21.733898553175663, 62.808362941896235 ], [ 21.727594027742157, 62.774489040836556 ], [ 21.739376255409866, 62.735137438441996 ], [ 21.780200636150425, 62.703588976450078 ], [ 21.770588819718228, 62.683357652333768 ], [ 21.590961541042248, 62.600830389910527 ], [ 21.612355584242778, 62.544089667304263 ], [ 21.554477980074694, 62.455697129918576 ], [ 21.552514276212833, 62.410971178077375 ], [ 21.532360467361684, 62.379086819301222 ], [ 21.559128859109535, 62.370043442750671 ], [ 21.5576819191852, 62.355574041708621 ], [ 21.636023389667685, 62.365702622977665 ], [ 21.684909295027921, 62.351956692347471 ], [ 21.688319939713438, 62.338727524755427 ], [ 21.667339307662928, 62.335394396234392 ], [ 21.680878533617431, 62.269532782711735 ], [ 21.7577730650749, 62.239017849494132 ], [ 21.76118370886104, 62.219509995789622 ], [ 21.675297478595724, 62.195428779214751 ], [ 21.699998813694265, 62.159436143763003 ], [ 21.697725050570625, 62.14742137299794 ], [ 21.652456496370178, 62.142331245290734 ], [ 21.632406040306478, 62.037634793311042 ], [ 21.646565382986012, 62.020504055517733 ], [ 21.475516391967915, 62.022312731547288 ], [ 21.425803664307637, 62.0094452991612 ], [ 21.316694227356663, 61.939186587191216 ] ] ], [ [ [ 21.422129754000082, 63.246812242000033 ], [ 21.414805535000085, 63.220445054000038 ], [ 21.428396030000044, 63.198431708000044 ], [ 21.377452019000089, 63.190130927000041 ], [ 21.363942905000044, 63.19367096600007 ], [ 21.38054446700005, 63.205877997000073 ], [ 21.362803582000083, 63.206244208000044 ], [ 21.291188998000052, 63.177923895000049 ], [ 21.318532748000052, 63.164943752000056 ], [ 21.301524285000085, 63.156154690000051 ], [ 21.243418816000087, 63.15070221600007 ], [ 21.18881269600007, 63.191595770000049 ], [ 21.147227410000085, 63.182196356000077 ], [ 21.133555535000085, 63.198431708000044 ], [ 21.154551629000082, 63.205877997000073 ], [ 21.102793816000087, 63.235988674000055 ], [ 21.078949415000068, 63.287787177000041 ], [ 21.120290561000047, 63.271958726000037 ], [ 21.243418816000087, 63.280991929000038 ], [ 21.19507897200009, 63.225775458000044 ], [ 21.28679446700005, 63.211371161000045 ], [ 21.291188998000052, 63.239406643000052 ], [ 21.31576582100007, 63.251939195000034 ], [ 21.396332227000073, 63.260687567000048 ], [ 21.422129754000082, 63.246812242000033 ] ] ], [ [ [ 21.318532748000052, 63.287787177000041 ], [ 21.315277540000068, 63.304022528000075 ], [ 21.277517123000052, 63.301459052000041 ], [ 21.229177280000044, 63.328802802000041 ], [ 21.345957879000082, 63.363755601000037 ], [ 21.374278191000087, 63.349269924000055 ], [ 21.358246290000068, 63.315659898000035 ], [ 21.318532748000052, 63.287787177000041 ] ] ], [ [ [ 22.026215040000068, 63.322211005000042 ], [ 22.060801629000082, 63.302150783000059 ], [ 22.04664147200009, 63.282171942000048 ], [ 22.013845248000052, 63.277736721000053 ], [ 22.004567905000044, 63.291164455000057 ], [ 21.97828209700009, 63.280015367000033 ], [ 21.989024285000085, 63.310370184000078 ], [ 22.029958530000044, 63.308417059000078 ], [ 22.00757897200009, 63.324896552000041 ], [ 22.026215040000068, 63.322211005000042 ] ] ], [ [ [ 22.14421634200005, 63.25141022300005 ], [ 22.079356316000087, 63.266302802000041 ], [ 22.068695509000065, 63.283880927000041 ], [ 22.088877800000091, 63.294623114000046 ], [ 22.069183790000068, 63.318548895000049 ], [ 22.110199415000068, 63.328924872000073 ], [ 22.195648634000065, 63.309759833000044 ], [ 22.231293165000068, 63.338812567000048 ], [ 22.246267123000052, 63.307074286000045 ], [ 22.20866946700005, 63.273260809000078 ], [ 22.114431186000047, 63.284165757000039 ], [ 22.158539259000065, 63.27407461100006 ], [ 22.14421634200005, 63.25141022300005 ] ] ], [ [ [ 21.957204623000052, 63.331610419000071 ], [ 21.951345248000052, 63.343654690000051 ], [ 21.996429884000065, 63.384711005000042 ], [ 22.096039259000065, 63.383490302000041 ], [ 22.076182488000086, 63.360052802000041 ], [ 22.012705925000091, 63.363714911000045 ], [ 21.957204623000052, 63.331610419000071 ] ] ], [ [ [ 22.80795332100007, 63.779527085000041 ], [ 22.828868035000085, 63.776312567000048 ], [ 22.80209394600007, 63.738185940000051 ], [ 22.782074415000068, 63.744818427000041 ], [ 22.776052280000044, 63.728176174000055 ], [ 22.73959394600007, 63.720526434000078 ], [ 22.681488477000073, 63.763413804000038 ], [ 22.763845248000052, 63.791449286000045 ], [ 22.80795332100007, 63.779527085000041 ] ] ], [ [ [ 21.208506707000083, 62.946234442000048 ], [ 21.146657748000052, 62.953273830000057 ], [ 21.13648522200009, 62.967230536000045 ], [ 21.159353061000047, 62.975409247000073 ], [ 21.130381707000083, 63.000799872000073 ], [ 21.151621941000087, 63.010321356000077 ], [ 21.195648634000065, 62.994370835000041 ], [ 21.221202019000089, 62.961371161000045 ], [ 21.208506707000083, 62.946234442000048 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-13", "NAME_1": "Pohjois-Karjala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.998432858889316, 63.747100381077701 ], [ 29.980784546000052, 63.741536764000088 ], [ 30.001145060000056, 63.715336813000064 ], [ 30.24247399900014, 63.581804912000067 ], [ 30.380450073000134, 63.532453919000076 ], [ 30.461065307000126, 63.472870993000086 ], [ 30.820939982000141, 63.375667624000059 ], [ 30.974935750000043, 63.289161276000058 ], [ 31.203965698000104, 63.212680155 ], [ 31.225669800000105, 63.196040345000071 ], [ 31.262773478000042, 63.100593974000034 ], [ 31.48064131700005, 62.986337383 ], [ 31.535831747000145, 62.919519756000042 ], [ 31.569524780000108, 62.905928854000038 ], [ 31.441263875000061, 62.788700867 ], [ 31.363335815000084, 62.651577454000048 ], [ 31.284064169000146, 62.572977600000073 ], [ 31.243756551000104, 62.503343608000066 ], [ 31.168619019000062, 62.476006775000045 ], [ 31.123350463000065, 62.434820659000039 ], [ 30.980620158000079, 62.358804627 ], [ 30.925636433000079, 62.302115581000081 ], [ 30.647720581000044, 62.192768250000071 ], [ 30.607206258000133, 62.15127207500008 ], [ 30.339574015000039, 61.991669414000043 ], [ 30.145649005000109, 61.85046941100002 ], [ 30.057214797025267, 61.848809109352885 ], [ 29.564014927247058, 61.724139716574655 ], [ 29.693826124575992, 61.824857083087863 ], [ 29.673568962937281, 61.850385240486446 ], [ 29.69279259580162, 61.867128403752815 ], [ 29.616621534756007, 61.9235073920525 ], [ 29.656412387621572, 61.973142605346936 ], [ 29.54520470643206, 62.025930080908495 ], [ 29.459111768793093, 62.098742174112033 ], [ 29.422111443888014, 62.160598862847223 ], [ 29.413119745080166, 62.244753933247409 ], [ 29.339842563883224, 62.299117539942472 ], [ 29.281448194878294, 62.382962551980143 ], [ 29.249512160158019, 62.409601752518824 ], [ 29.208791131305645, 62.417585760974077 ], [ 29.159285109220377, 62.385546373466354 ], [ 29.111639439108785, 62.391902573944606 ], [ 29.107815383273305, 62.41433014591945 ], [ 29.084044224161573, 62.421254788077988 ], [ 29.107091912861449, 62.491121323690095 ], [ 29.02409956244486, 62.509440619888665 ], [ 29.014487746012662, 62.514427394808422 ], [ 29.039809197836178, 62.523987535296499 ], [ 28.827419061240676, 62.624834093018933 ], [ 28.658230422196198, 62.653333645531291 ], [ 28.70205203557299, 62.692297675197494 ], [ 28.646448195427865, 62.744335842824853 ], [ 28.726546665096521, 62.781129462154922 ], [ 28.76985151543505, 62.825571194055328 ], [ 28.92405398860069, 62.781956285354283 ], [ 29.081460401776098, 62.837534287976951 ], [ 29.088281691147131, 62.849962469892034 ], [ 29.010456983702795, 62.876575832908316 ], [ 28.933459100357197, 62.927735501392249 ], [ 28.990406527639095, 62.927787177336313 ], [ 28.9693225437004, 62.945615546220438 ], [ 28.976040480283928, 62.954813951502615 ], [ 29.057275832413723, 62.981634020093907 ], [ 29.051901482967025, 62.999048976928691 ], [ 28.876925083325943, 63.060233872994786 ], [ 28.719725375725488, 63.164465236981073 ], [ 28.618232862856303, 63.208803616093974 ], [ 28.657196893421883, 63.236192125466175 ], [ 28.652959426436382, 63.25154002475233 ], [ 28.710216912980115, 63.276732286265997 ], [ 28.703085565246624, 63.289987291380385 ], [ 28.748044061084556, 63.322956854874917 ], [ 28.761376580564729, 63.3765969920575 ], [ 28.661227654832373, 63.43690338808085 ], [ 28.616992629406298, 63.513694565851495 ], [ 28.62092003802934, 63.539791164930307 ], [ 28.675180291037577, 63.549041246156548 ], [ 28.615028923745797, 63.59513662445562 ], [ 28.587950473635431, 63.656683254828295 ], [ 28.60738081207478, 63.673478094938105 ], [ 28.469611443813051, 63.697197578105715 ], [ 28.358403761724219, 63.753421535875134 ], [ 28.441189405666535, 63.824941717885963 ], [ 28.465477328715735, 63.871347154547493 ], [ 28.572034132669046, 63.883361925312556 ], [ 28.934699333807202, 63.841994941313487 ], [ 29.656205682046561, 63.873362535252795 ], [ 29.686591424054939, 63.85801463506732 ], [ 29.735890740565196, 63.73218252230555 ], [ 29.758731723690062, 63.71559438687143 ], [ 29.998432858889316, 63.747100381077701 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-14", "NAME_1": "Pohjois-Pohjanmaa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.546194294000145, 66.431969319000117 ], [ 29.569698527000071, 66.378171693000084 ], [ 29.650882202000105, 66.28789296500004 ], [ 29.900169311000127, 66.10805898100007 ], [ 29.958460327000068, 65.973881124000016 ], [ 30.075145711000062, 65.822805075000062 ], [ 30.113903035000135, 65.66550201500003 ], [ 30.098503459000142, 65.656381124000049 ], [ 30.003005411000061, 65.678136902000077 ], [ 29.702868693000141, 65.629380189000031 ], [ 29.838571004000073, 65.564888001 ], [ 29.731532793000099, 65.496921399000016 ], [ 29.488774041288934, 65.491920071254242 ], [ 29.246618280309349, 65.521892402112655 ], [ 29.196595493387292, 65.474143378314238 ], [ 29.115876906094343, 65.455178127868294 ], [ 28.948548618124221, 65.446729031419636 ], [ 28.648515252077175, 65.384691473732516 ], [ 28.650478956838356, 65.36564870892073 ], [ 28.573894483743402, 65.31882986110918 ], [ 28.60603722493795, 65.316323553988809 ], [ 28.613788690295792, 65.296505641921783 ], [ 28.02343712742146, 65.231470852497807 ], [ 27.940341424217308, 65.175246893829069 ], [ 27.883497348823596, 65.092151191524238 ], [ 27.764331495801855, 65.107240709291261 ], [ 27.363425733610711, 65.085665798937441 ], [ 27.307201775841236, 65.068535061144132 ], [ 27.282397087955246, 65.048794664342267 ], [ 27.280950148030911, 65.015670071216789 ], [ 27.380065544988895, 64.964096992482212 ], [ 27.392364535694753, 64.951591295302023 ], [ 27.382029249750076, 64.942315374754685 ], [ 27.405076939349271, 64.931670030447492 ], [ 27.38399295361188, 64.877177233442524 ], [ 27.388023715921747, 64.84549958024138 ], [ 27.360221795399525, 64.817801012506663 ], [ 27.115275505560135, 64.826586004840237 ], [ 26.992699008752254, 64.793693955711433 ], [ 26.907329543323726, 64.752068590193232 ], [ 26.892240024657383, 64.732483222122994 ], [ 26.908156365623768, 64.732328193391368 ], [ 26.904228957000726, 64.707187607821822 ], [ 26.808730910303268, 64.658999335351041 ], [ 26.646260206942998, 64.647268785426093 ], [ 26.647087030142302, 64.624660346297901 ], [ 26.535569288791635, 64.570968533171254 ], [ 26.550038689833627, 64.564018053490372 ], [ 26.433043247148134, 64.545207830876677 ], [ 26.319355096360596, 64.502678127793331 ], [ 26.295997349298204, 64.480431423871096 ], [ 26.466322869904502, 64.394364326452489 ], [ 26.474694451987375, 64.350904446483014 ], [ 26.557376743142186, 64.318580838135119 ], [ 26.67695600821321, 64.315893662962139 ], [ 26.691425409255203, 64.273053901516334 ], [ 26.760051711417304, 64.264398097694027 ], [ 26.773280877210709, 64.244683539313883 ], [ 26.788473747765238, 64.07732941382136 ], [ 26.872086215806178, 64.03340444585848 ], [ 26.694009229842038, 64.005266629451341 ], [ 26.29858116988504, 63.8537771671825 ], [ 26.238016392342615, 63.806854967482707 ], [ 26.289279412714734, 63.622706000081791 ], [ 26.285662061554888, 63.588754583757009 ], [ 26.199052361777035, 63.55296865477959 ], [ 26.17548790913969, 63.490801906782565 ], [ 26.137764112923435, 63.456282050576135 ], [ 26.029036900432573, 63.434629624957211 ], [ 25.912144809635265, 63.438531196057795 ], [ 25.736341586794765, 63.51767365221724 ], [ 25.491395297854694, 63.53154877405666 ], [ 25.358380161415312, 63.582114163337963 ], [ 25.231566195823234, 63.600924384152961 ], [ 25.150537551067089, 63.5754479026985 ], [ 25.080671013656342, 63.471035672458299 ], [ 25.028684522872425, 63.458039048862986 ], [ 24.768648716165274, 63.604593411256872 ], [ 24.630362583066756, 63.658982856373711 ], [ 24.40825727725155, 63.83414012316814 ], [ 24.243099399617563, 63.883801174884297 ], [ 24.223875766753224, 63.925374864458377 ], [ 24.12724083759457, 63.977748927970595 ], [ 24.093961215737522, 64.047718818168903 ], [ 24.036393669931897, 64.077846177758886 ], [ 23.706472200831399, 64.168076889836584 ], [ 23.723643425000091, 64.178534247000073 ], [ 23.72437584700009, 64.208929755000042 ], [ 23.819102410000085, 64.220648505000042 ], [ 23.86109459700009, 64.26788971600007 ], [ 23.943369988000086, 64.246771552000041 ], [ 23.92904707100007, 64.30141836100006 ], [ 23.984222852000073, 64.349798895000049 ], [ 24.004405144000089, 64.389105536000045 ], [ 24.068614129000082, 64.405585028000075 ], [ 24.084727410000085, 64.414740302000041 ], [ 24.080577019000089, 64.431708075000074 ], [ 24.205739780000044, 64.452215887000079 ], [ 24.217784050000091, 64.487005927000041 ], [ 24.25757897200009, 64.485988674000055 ], [ 24.285980665000068, 64.514960028000075 ], [ 24.344086134000065, 64.530747789000031 ], [ 24.36109459700009, 64.548407294000071 ], [ 24.354991082000083, 64.572414455000057 ], [ 24.373871290000068, 64.57953522300005 ], [ 24.375498894000089, 64.617254950000074 ], [ 24.422862175000091, 64.675604559000078 ], [ 24.530284050000091, 64.717840887000079 ], [ 24.546071811000047, 64.733384507000039 ], [ 24.532399936000047, 64.753851630000042 ], [ 24.58765709700009, 64.781195380000042 ], [ 24.53842207100007, 64.80532461100006 ], [ 24.668304884000065, 64.789129950000074 ], [ 24.670664910000085, 64.829738674000055 ], [ 24.731700066000087, 64.835842190000051 ], [ 24.736338738000086, 64.855373440000051 ], [ 24.896983269000089, 64.873114325000074 ], [ 25.094737175000091, 64.918361721000053 ], [ 25.143239780000044, 64.88422272300005 ], [ 25.177256707000083, 64.88422272300005 ], [ 25.217621290000068, 64.841457424000055 ], [ 25.259287957000083, 64.835842190000051 ], [ 25.225108269000089, 64.822739976000037 ], [ 25.362152540000068, 64.833075262000079 ], [ 25.350433790000068, 64.851711330000057 ], [ 25.36850019600007, 64.898504950000074 ], [ 25.359548373000052, 64.911118882000039 ], [ 25.321299675000091, 64.904730536000045 ], [ 25.241221550000091, 64.929022528000075 ], [ 25.190928582000083, 64.966782945000034 ], [ 25.220957879000082, 64.99054596600007 ], [ 25.32162519600007, 64.983587958000044 ], [ 25.42156009200005, 64.948879299000055 ], [ 25.443532748000052, 64.966782945000034 ], [ 25.416758660000085, 64.998602606000077 ], [ 25.416270379000082, 65.035060940000051 ], [ 25.380869988000086, 65.055975653000075 ], [ 25.355479363000086, 65.096502997000073 ], [ 25.211436394000089, 65.123765367000033 ], [ 25.225840691000087, 65.156642971000053 ], [ 25.282481316000087, 65.191392320000034 ], [ 25.279795769000089, 65.219956773000035 ], [ 25.32748457100007, 65.22687409100007 ], [ 25.30014082100007, 65.233628648000035 ], [ 25.31381269600007, 65.254136460000041 ], [ 25.279795769000089, 65.260972398000035 ], [ 25.321299675000091, 65.316229559000078 ], [ 25.306976759000065, 65.329820054000038 ], [ 25.334971550000091, 65.343491929000038 ], [ 25.266123894000089, 65.377630927000041 ], [ 25.321299675000091, 65.38507721600007 ], [ 25.355479363000086, 65.411810614000046 ], [ 25.344493035000085, 65.428534247000073 ], [ 25.358653191000087, 65.465521552000041 ], [ 25.293711785000085, 65.525091864000046 ], [ 25.197113477000073, 65.562648830000057 ], [ 25.124847852000073, 65.561102606000077 ], [ 25.093185233711552, 65.591917624898429 ], [ 25.388249138586843, 65.736142889782514 ], [ 25.505968051684192, 65.753273627575823 ], [ 25.762283156242631, 65.746374823839005 ], [ 26.128359002066247, 65.813941758805072 ], [ 26.162982211959502, 65.809290879770231 ], [ 26.158434685712166, 65.741801459169949 ], [ 26.187993605420559, 65.71893463852274 ], [ 26.841803826585306, 65.70521454541489 ], [ 27.102149692554235, 65.750844834821237 ], [ 27.430708448635983, 65.951736966387841 ], [ 27.554318475117498, 65.92491689689723 ], [ 27.637724236684164, 65.953648994305638 ], [ 27.769705845248552, 65.84267385531416 ], [ 27.764951613426206, 65.829315497412267 ], [ 28.193969353602768, 65.805389309568966 ], [ 28.42299930157651, 65.828850410318125 ], [ 28.470024854963071, 65.83861725548195 ], [ 28.514569939650983, 65.874635729355418 ], [ 28.496689893923474, 65.901507472991455 ], [ 28.376283806552408, 65.969617011216087 ], [ 28.396127557041098, 65.975353094969307 ], [ 28.389409621356947, 66.003258369178354 ], [ 28.436951938681034, 65.987135321737696 ], [ 28.675386996612588, 65.992251288765942 ], [ 28.756415643167372, 66.020569973225633 ], [ 28.756518995954877, 66.042790838726205 ], [ 28.633529087097656, 66.073900052045758 ], [ 28.644484490666684, 66.083253486059505 ], [ 28.608517693636657, 66.118083401527713 ], [ 28.711043735280157, 66.136996975130273 ], [ 28.762616814914054, 66.181206163033949 ], [ 28.736571892678683, 66.20650177733512 ], [ 28.764063754838389, 66.238902900048743 ], [ 28.735641716691873, 66.257816474550623 ], [ 28.646241488953535, 66.250220038823727 ], [ 28.650582309625861, 66.260219427984168 ], [ 28.573687778168392, 66.28608348306625 ], [ 28.548159620769866, 66.310629788533902 ], [ 28.553947381366527, 66.367835598234251 ], [ 28.610791456760296, 66.409125067867535 ], [ 28.669392531340236, 66.415067858095142 ], [ 28.689339633717111, 66.472997138207347 ], [ 28.734504836029316, 66.484365952926339 ], [ 29.169103631227586, 66.419201972293138 ], [ 29.546194294000145, 66.431969319000117 ] ] ], [ [ [ 24.993436910000071, 65.055103572000064 ], [ 25.06181765000008, 65.043479603000037 ], [ 24.81965686500007, 65.043280278000054 ], [ 24.801552192000088, 65.024266165000085 ], [ 24.722366527000077, 65.003466929000069 ], [ 24.750774947000082, 64.975965600000052 ], [ 24.827321811000047, 64.97296784100007 ], [ 24.734711134000065, 64.950913804000038 ], [ 24.700694207000083, 64.958156643000052 ], [ 24.71062259200005, 64.97296784100007 ], [ 24.683929884000065, 64.996568101000037 ], [ 24.631602410000085, 64.967840887000079 ], [ 24.562754754000082, 65.037176825000074 ], [ 24.654190125000071, 65.080220526000062 ], [ 24.834505536000052, 65.094800307000071 ], [ 24.883095541000046, 65.086904059000062 ], [ 24.896982584000057, 65.072415474000081 ], [ 24.873012834000065, 65.065834429000063 ], [ 24.882842351000079, 65.059139178000066 ], [ 24.993436910000071, 65.055103572000064 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-15", "NAME_1": "Pohjois-Savo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.872086215806178, 64.03340444585848 ], [ 27.387920363134242, 63.972581284998284 ], [ 27.445177849677975, 63.944856878841847 ], [ 27.522072381135445, 63.956845812084509 ], [ 27.744694451787495, 63.908295803508508 ], [ 28.082865025200761, 63.775642402275025 ], [ 28.152008091300331, 63.722028103514162 ], [ 28.260838656578699, 63.678645737910472 ], [ 28.306520622828486, 63.697507636468231 ], [ 28.358403761724219, 63.753421535875134 ], [ 28.469611443813051, 63.697197578105715 ], [ 28.595598586205767, 63.682056383495251 ], [ 28.60738081207478, 63.673478094938105 ], [ 28.587950473635431, 63.656683254828295 ], [ 28.615028923745797, 63.59513662445562 ], [ 28.675180291037577, 63.549041246156548 ], [ 28.62092003802934, 63.539791164930307 ], [ 28.616992629406298, 63.513694565851495 ], [ 28.661227654832373, 63.43690338808085 ], [ 28.761376580564729, 63.3765969920575 ], [ 28.748044061084556, 63.322956854874917 ], [ 28.703085565246624, 63.289987291380385 ], [ 28.710216912980115, 63.276732286265997 ], [ 28.652959426436382, 63.25154002475233 ], [ 28.657196893421883, 63.236192125466175 ], [ 28.618232862856303, 63.208803616093974 ], [ 28.719725375725488, 63.164465236981073 ], [ 28.876925083325943, 63.060233872994786 ], [ 29.051901482967025, 62.999048976928691 ], [ 29.057275832413723, 62.981634020093907 ], [ 28.976040480283928, 62.954813951502615 ], [ 28.9693225437004, 62.945615546220438 ], [ 28.990406527639095, 62.927787177336313 ], [ 28.933459100357197, 62.927735501392249 ], [ 29.010456983702795, 62.876575832908316 ], [ 29.088281691147131, 62.849962469892034 ], [ 28.92405398860069, 62.781956285354283 ], [ 28.76985151543505, 62.825571194055328 ], [ 28.726546665096521, 62.781129462154922 ], [ 28.646448195427865, 62.744335842824853 ], [ 28.70205203557299, 62.692297675197494 ], [ 28.608827751999115, 62.606463120876299 ], [ 28.630635207248986, 62.605429593001304 ], [ 28.478913201882733, 62.581012477843558 ], [ 28.535447218913987, 62.57121979425807 ], [ 28.520357700247644, 62.555510158866696 ], [ 28.412664014732457, 62.576852525223842 ], [ 28.40315555198714, 62.52920685511225 ], [ 28.371426221942556, 62.499596259459793 ], [ 28.395300733841793, 62.473964749273705 ], [ 28.38692915175892, 62.461381537727732 ], [ 28.282852818302899, 62.465076402354043 ], [ 28.303213331829795, 62.443579007265328 ], [ 28.257634719266889, 62.422727566424044 ], [ 28.328844842015826, 62.379086819301222 ], [ 28.32450402224282, 62.365702622977665 ], [ 28.210402459405941, 62.354075425840222 ], [ 28.090306431296767, 62.317075100035822 ], [ 28.068395623259391, 62.286120917246478 ], [ 27.959461704294199, 62.277594306432093 ], [ 27.981372512331575, 62.276844998497836 ], [ 27.967213168752721, 62.260127671854548 ], [ 27.899723748152439, 62.285862534828084 ], [ 27.838228793723829, 62.278989570412307 ], [ 27.743144159075655, 62.339864407216567 ], [ 27.763814731864386, 62.363635566328298 ], [ 27.688780552380592, 62.376012071399941 ], [ 27.692501255428567, 62.386295681400554 ], [ 27.506776156894091, 62.47215607414347 ], [ 27.380892368188199, 62.517295437134692 ], [ 27.347509392644326, 62.521248684179398 ], [ 27.351333449379183, 62.499363715463062 ], [ 27.305134719191926, 62.480631009013848 ], [ 27.202505323861601, 62.464146227266554 ], [ 27.122613559767956, 62.48838247347237 ], [ 27.032593215304644, 62.472595322815891 ], [ 26.970581496039188, 62.482026272094743 ], [ 26.959419386895149, 62.479080716302008 ], [ 26.966964145778661, 62.454095161262671 ], [ 26.861234165024655, 62.473758042799432 ], [ 26.801289504207261, 62.4322618684904 ], [ 26.589106073186713, 62.47060578143163 ], [ 26.488130324255053, 62.511740221434025 ], [ 26.481825798821546, 62.524555976077409 ], [ 26.594997185671559, 62.594009101438871 ], [ 26.581871371766397, 62.600933742698032 ], [ 26.59696089043274, 62.625480048165684 ], [ 26.583214958903227, 62.657467759729286 ], [ 26.52078982938707, 62.736351834369657 ], [ 26.440277947669131, 62.779217434237182 ], [ 26.360489536362991, 62.757513333573456 ], [ 26.17414432110354, 62.831927395432899 ], [ 26.161741977610177, 62.843942166197962 ], [ 26.187476840583713, 62.861124579935392 ], [ 26.052187941020634, 62.921017564808722 ], [ 26.063866815001518, 62.937528184977737 ], [ 26.184169548685702, 62.954012966725031 ], [ 26.290829706325894, 62.945460517488868 ], [ 26.324316033757952, 62.96881826455126 ], [ 26.236776157093971, 63.015120348425285 ], [ 26.244010857614967, 63.037547919500867 ], [ 26.313567335763935, 63.038503933010077 ], [ 26.160915155310136, 63.151442775863359 ], [ 26.154817336350959, 63.202757473078861 ], [ 26.184376255160032, 63.228130601745818 ], [ 26.087224562063852, 63.368018704399674 ], [ 26.163292271221337, 63.429797878769079 ], [ 26.170010206905488, 63.443311266301862 ], [ 26.137764112923435, 63.456282050576135 ], [ 26.17548790913969, 63.490801906782565 ], [ 26.199052361777035, 63.55296865477959 ], [ 26.285662061554888, 63.588754583757009 ], [ 26.289279412714734, 63.622706000081791 ], [ 26.238016392342615, 63.806854967482707 ], [ 26.29858116988504, 63.8537771671825 ], [ 26.694009229842038, 64.005266629451341 ], [ 26.872086215806178, 64.03340444585848 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-16", "NAME_1": "Päijät-Häme" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.319458449148101, 61.60763520030423 ], [ 26.316667922086936, 61.572805283936702 ], [ 26.282044712193681, 61.576913561511617 ], [ 26.290726352639069, 61.524823717040874 ], [ 26.26023725784313, 61.502086086703514 ], [ 26.283801711379851, 61.478418281278607 ], [ 26.256929965945176, 61.439066677085464 ], [ 26.31863162594874, 61.397131253204748 ], [ 26.29362023338706, 61.370802110129262 ], [ 26.403277621864731, 61.324060777582815 ], [ 26.479241978234711, 61.311632594768412 ], [ 26.515105421577914, 61.273676256354122 ], [ 26.442758416367781, 61.259155178468689 ], [ 26.395422803719384, 61.199830634376269 ], [ 26.300648228333046, 61.154923815381721 ], [ 26.197915480215215, 61.133013007344402 ], [ 26.130219354039923, 61.151358141065316 ], [ 26.085467563777001, 61.137844754431853 ], [ 26.052084588233129, 61.107614041155045 ], [ 26.058182407192305, 61.090199083420941 ], [ 26.108721958051888, 61.066918849825015 ], [ 26.136627232260935, 61.024905911578514 ], [ 26.111615837900558, 60.985631821751156 ], [ 26.046193474848963, 60.984055691516915 ], [ 26.042782831062766, 60.955091051011152 ], [ 26.159364861698975, 60.919976914702829 ], [ 26.083400506228372, 60.838095608325659 ], [ 26.180345492850222, 60.815616360406693 ], [ 26.224890578437453, 60.733399156345968 ], [ 26.173317497904179, 60.697225653740873 ], [ 25.948214958553478, 60.708852850878316 ], [ 25.888270297736028, 60.734019273970262 ], [ 25.571803826785185, 60.689319160550781 ], [ 25.523434686261737, 60.704408678317805 ], [ 25.509895461206554, 60.758100491444509 ], [ 25.473825311388964, 60.792051906869972 ], [ 25.329544712118775, 60.757273668245148 ], [ 25.278901807572367, 60.773965156466772 ], [ 25.207071567199023, 60.82708852791319 ], [ 25.093383416411541, 60.821378282581634 ], [ 25.088319126226679, 60.847759100701921 ], [ 25.141649204147427, 60.908711452771286 ], [ 25.254303827059971, 60.976588446999187 ], [ 25.209138624747709, 61.010617376790492 ], [ 25.236630486907416, 61.013847154322661 ], [ 25.286653272930209, 61.075703843957228 ], [ 25.287583448917019, 61.103040677385309 ], [ 25.240557896429777, 61.120558987007598 ], [ 25.260711704381606, 61.180968735818453 ], [ 25.187744582446498, 61.240034899291118 ], [ 25.0324052259204, 61.253935859552257 ], [ 25.003569776623863, 61.281660264809318 ], [ 24.921300896619073, 61.291711330813257 ], [ 24.901147087767868, 61.339977119448463 ], [ 24.903627557365837, 61.408370876714571 ], [ 24.860012647765473, 61.46539582016095 ], [ 24.966879510081299, 61.451133123794591 ], [ 25.426489698740568, 61.490355536778566 ], [ 25.461009555846317, 61.52704580332113 ], [ 25.516199984841421, 61.678044339174903 ], [ 25.582242466416687, 61.675408840845307 ], [ 25.690866327019364, 61.705897936540509 ], [ 25.764040155428802, 61.693030504154422 ], [ 25.862018669925646, 61.798037014496572 ], [ 25.877935011791351, 61.787133286871665 ], [ 25.874937778255855, 61.760209866392188 ], [ 25.901086053278732, 61.761010851169829 ], [ 25.924857212390407, 61.783722643085468 ], [ 25.978393995886165, 61.758091132000118 ], [ 26.009296501832068, 61.720677395045698 ], [ 26.065417107713358, 61.719178779177298 ], [ 26.081643507941521, 61.705019436497764 ], [ 26.057562289568011, 61.66564199478222 ], [ 26.077819452105985, 61.65153432894607 ], [ 26.146135695006308, 61.62631622991006 ], [ 26.303955519331737, 61.649932359390846 ], [ 26.319458449148101, 61.60763520030423 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-17", "NAME_1": "Satakunta" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.408105239365284, 61.048152549200779 ], [ 21.36695397200009, 61.060126044000071 ], [ 21.482269727000073, 61.060126044000071 ], [ 21.45484459700009, 61.078192450000074 ], [ 21.463145379000082, 61.101141669000071 ], [ 21.43523196700005, 61.142726955000057 ], [ 21.469981316000087, 61.149562893000052 ], [ 21.442637566000087, 61.155747789000031 ], [ 21.456309441000087, 61.169989325000074 ], [ 21.442637566000087, 61.169989325000074 ], [ 21.503428582000083, 61.177435614000046 ], [ 21.496592644000089, 61.191107489000046 ], [ 21.558116082000083, 61.204169012000079 ], [ 21.543467644000089, 61.225083726000037 ], [ 21.476084832000083, 61.245754299000055 ], [ 21.508311394000089, 61.266831773000035 ], [ 21.503428582000083, 61.279852606000077 ], [ 21.544444207000083, 61.279852606000077 ], [ 21.524261915000068, 61.37531159100007 ], [ 21.44890384200005, 61.402777411000045 ], [ 21.572438998000052, 61.416408596000053 ], [ 21.510264519000089, 61.457993882000039 ], [ 21.422129754000082, 61.485337632000039 ], [ 21.555674675000091, 61.475165106000077 ], [ 21.592133009000065, 61.485337632000039 ], [ 21.565603061000047, 61.519476630000042 ], [ 21.510264519000089, 61.519476630000042 ], [ 21.460134311000047, 61.562404690000051 ], [ 21.507985873000052, 61.570135809000078 ], [ 21.716319207000083, 61.526922919000071 ], [ 21.614268425000091, 61.585435289000031 ], [ 21.591807488000086, 61.628119208000044 ], [ 21.537608269000089, 61.64984772300005 ], [ 21.544118686000047, 61.672837632000039 ], [ 21.517751498000052, 61.71124909100007 ], [ 21.585948113000086, 61.697658596000053 ], [ 21.489268425000091, 61.73696523600006 ], [ 21.469981316000087, 61.759711005000042 ], [ 21.48609459700009, 61.81118398600006 ], [ 21.444590691000087, 61.826320705000057 ], [ 21.44890384200005, 61.841620184000078 ], [ 21.403168165000068, 61.87641022300005 ], [ 21.39421634200005, 61.889390367000033 ], [ 21.414073113000086, 61.90688711100006 ], [ 21.38054446700005, 61.93781159100007 ], [ 21.316694227356663, 61.939186587191216 ], [ 21.425803664307637, 62.0094452991612 ], [ 21.475516391967915, 62.022312731547288 ], [ 21.646565382986012, 62.020504055517733 ], [ 21.932956170290993, 61.985312404843569 ], [ 22.018222283831335, 61.993167222988916 ], [ 22.17769575365611, 62.083316759560773 ], [ 22.33882286987955, 62.124037788413148 ], [ 22.507804803348961, 62.211267604916031 ], [ 22.558964470933574, 62.251135973046701 ], [ 22.586973097030807, 62.301830553537172 ], [ 22.838327264191889, 62.271186428211081 ], [ 22.855277133932589, 62.173130398449075 ], [ 22.769390902767952, 62.151193752889355 ], [ 22.772801548352732, 62.067684638535184 ], [ 22.626350538746351, 62.040864569943892 ], [ 22.549249301713871, 62.003295803358583 ], [ 22.550282831387563, 61.991565253433691 ], [ 22.640199823063369, 61.967587388746949 ], [ 22.681127556591434, 61.923972480045904 ], [ 22.723398879055026, 61.915600897963031 ], [ 22.783653599134254, 61.875965073829093 ], [ 22.742829216595055, 61.853873399537747 ], [ 22.82292768716303, 61.822815863960898 ], [ 22.805461052585486, 61.781138820699994 ], [ 22.693943312134138, 61.731477769883156 ], [ 22.653945753693563, 61.675357164001866 ], [ 22.666451449974431, 61.655100003262532 ], [ 22.7039685397163, 61.675176296848576 ], [ 22.721848586343185, 61.647736111532311 ], [ 22.685261671688806, 61.630760403369891 ], [ 22.686295199563801, 61.607945257767426 ], [ 22.662834099713905, 61.582752997153079 ], [ 22.601545850860305, 61.552651475984817 ], [ 22.599892206260279, 61.532885239861912 ], [ 22.64061323421339, 61.499967353210764 ], [ 22.724742466191856, 61.470847683074112 ], [ 22.728773227602346, 61.436767076439423 ], [ 22.675236444106588, 61.426121731232854 ], [ 22.673789504182253, 61.409688626329 ], [ 22.639889763801534, 61.390620022196231 ], [ 22.571883579263726, 61.395451769283682 ], [ 22.590487095403091, 61.340132148180089 ], [ 22.569919875401922, 61.333259181965673 ], [ 22.661490512577075, 61.245202542263485 ], [ 22.867266066275931, 61.230578110691226 ], [ 22.923800083307185, 61.210889390732746 ], [ 22.949534946280721, 61.176834622519777 ], [ 22.921422967395984, 61.176886298463899 ], [ 22.921939732232829, 61.153270168983056 ], [ 22.96896528472007, 61.113582668904996 ], [ 22.923283319369659, 61.088545437022276 ], [ 22.999661085990283, 61.070742906559872 ], [ 22.974856398104293, 61.06490346911977 ], [ 22.969792107919432, 61.045524807523805 ], [ 22.826028272586711, 61.090018216267651 ], [ 22.837603793780033, 61.059839178934908 ], [ 22.819723748052525, 61.04025381086467 ], [ 22.827681918985377, 61.012503567185831 ], [ 22.80112023281248, 60.996561387797783 ], [ 22.570229932865118, 60.986045233800496 ], [ 22.534573195096868, 60.969973863203222 ], [ 22.573123813613108, 60.948011380121045 ], [ 22.561858350782245, 60.943618883504655 ], [ 22.246218703030706, 60.924576117793549 ], [ 22.151134066583893, 60.88568960249313 ], [ 22.005613233863642, 60.898660386767403 ], [ 21.945358513784356, 60.950698554394762 ], [ 21.951869744792873, 60.973151963892008 ], [ 21.809966261433829, 61.018291327782549 ], [ 21.824435663375141, 61.032476507984427 ], [ 21.814307082106154, 61.035809638304158 ], [ 21.7789604018011, 61.035344550310697 ], [ 21.755499301951204, 61.006018175498355 ], [ 21.706406691015957, 60.998757636555638 ], [ 21.649665969309012, 61.009506334549656 ], [ 21.623724399861146, 61.045783189942256 ], [ 21.60026329911193, 61.034414374323887 ], [ 21.60047000468694, 61.016275947077247 ], [ 21.493396436796104, 61.003692735531274 ], [ 21.450608351294363, 61.014622301577901 ], [ 21.408105239365284, 61.048152549200779 ] ] ], [ [ [ 21.421885613000086, 61.176743882000039 ], [ 21.431651238000086, 61.171454169000071 ], [ 21.352386915000068, 61.176011460000041 ], [ 21.342946811000047, 61.190619208000044 ], [ 21.380056186000047, 61.214016018000052 ], [ 21.389170769000089, 61.192206122000073 ], [ 21.421885613000086, 61.176743882000039 ] ] ], [ [ [ 21.52125084700009, 61.633978583000044 ], [ 21.507823113000086, 61.618068752000056 ], [ 21.459971550000091, 61.629339911000045 ], [ 21.484548373000052, 61.640448309000078 ], [ 21.52125084700009, 61.633978583000044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-18", "NAME_1": "Uusimaa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.553301563316495, 60.591770431160455 ], [ 26.465830925000091, 60.50812409100007 ], [ 26.456228061000047, 60.474554755000042 ], [ 26.48568769600007, 60.443793036000045 ], [ 26.451508009000065, 60.416489976000037 ], [ 26.416351759000065, 60.411932684000078 ], [ 26.424164259000065, 60.395982164000031 ], [ 26.383311394000089, 60.416489976000037 ], [ 26.381195509000065, 60.39874909100007 ], [ 26.351410352000073, 60.392808335000041 ], [ 26.342051629000082, 60.375555731000077 ], [ 26.245616082000083, 60.450873114000046 ], [ 26.229340040000068, 60.438421942000048 ], [ 26.273448113000086, 60.402167059000078 ], [ 26.178965691000087, 60.410630601000037 ], [ 26.142425977000073, 60.395982164000031 ], [ 25.980967644000089, 60.475775458000044 ], [ 25.917246941000087, 60.485419012000079 ], [ 26.02898196700005, 60.433335679000038 ], [ 26.040049675000091, 60.405951239000046 ], [ 26.006846550000091, 60.400539455000057 ], [ 26.012217644000089, 60.388576565000051 ], [ 26.108164910000085, 60.335923570000034 ], [ 26.091319207000083, 60.306626695000034 ], [ 26.040049675000091, 60.299790757000039 ], [ 26.03882897200009, 60.322658596000053 ], [ 25.997080925000091, 60.35492584800005 ], [ 26.005869988000086, 60.368109442000048 ], [ 25.956553582000083, 60.356024481000077 ], [ 25.842051629000082, 60.402167059000078 ], [ 25.917246941000087, 60.361273505000042 ], [ 25.883067254000082, 60.306626695000034 ], [ 25.930186394000089, 60.245184637000079 ], [ 25.753754102000073, 60.320746161000045 ], [ 25.739024285000085, 60.313462632000039 ], [ 25.745371941000087, 60.295803127000056 ], [ 25.848887566000087, 60.265692450000074 ], [ 25.761973504000082, 60.240383205000057 ], [ 25.735524936000047, 60.247259833000044 ], [ 25.649668816000087, 60.299790757000039 ], [ 25.670583530000044, 60.327460028000075 ], [ 25.649668816000087, 60.341376044000071 ], [ 25.704356316000087, 60.341376044000071 ], [ 25.690196160000085, 60.362860419000071 ], [ 25.668630405000044, 60.364650783000059 ], [ 25.526133660000085, 60.327093817000048 ], [ 25.545095248000052, 60.292303778000075 ], [ 25.502777540000068, 60.246161200000074 ], [ 25.361664259000065, 60.245184637000079 ], [ 25.363454623000052, 60.26007721600007 ], [ 25.31381269600007, 60.272528387000079 ], [ 25.321299675000091, 60.25141022300005 ], [ 25.197520379000082, 60.245184637000079 ], [ 25.185801629000082, 60.223130601000037 ], [ 25.156260613000086, 60.232163804000038 ], [ 25.203949415000068, 60.204250393000052 ], [ 25.18140709700009, 60.200506903000075 ], [ 25.197113477000073, 60.190619208000044 ], [ 25.094737175000091, 60.176336981000077 ], [ 25.101573113000086, 60.190619208000044 ], [ 25.058604363000086, 60.177313544000071 ], [ 25.047862175000091, 60.168890692000048 ], [ 25.067393425000091, 60.162665106000077 ], [ 25.029307488000086, 60.147853908000059 ], [ 24.997894727000073, 60.162665106000077 ], [ 25.025889519000089, 60.199448960000041 ], [ 24.998789910000085, 60.212836005000042 ], [ 24.95093834700009, 60.143459377000056 ], [ 24.845225457000083, 60.143744208000044 ], [ 24.834157748000052, 60.155829169000071 ], [ 24.870941602000073, 60.161688544000071 ], [ 24.86882571700005, 60.179754950000074 ], [ 24.842458530000044, 60.194647528000075 ], [ 24.806813998000052, 60.190619208000044 ], [ 24.827321811000047, 60.162665106000077 ], [ 24.679698113000086, 60.130113023000035 ], [ 24.670258009000065, 60.101223049000055 ], [ 24.63062584700009, 60.136297919000071 ], [ 24.55404707100007, 60.155951239000046 ], [ 24.596853061000047, 60.12726471600007 ], [ 24.54037519600007, 60.087551174000055 ], [ 24.608164910000085, 60.101223049000055 ], [ 24.57398522200009, 60.073919989000046 ], [ 24.594493035000085, 60.060248114000046 ], [ 24.445648634000065, 59.992254950000074 ], [ 24.416270379000082, 59.991359768000052 ], [ 24.464121941000087, 60.046576239000046 ], [ 24.37476647200009, 60.004950262000079 ], [ 24.367686394000089, 60.022040106000077 ], [ 24.312673373000052, 59.99750397300005 ], [ 24.357676629000082, 60.036037502000056 ], [ 24.367930535000085, 60.073919989000046 ], [ 24.31967207100007, 60.075832424000055 ], [ 24.252452019000089, 60.039740302000041 ], [ 24.158457879000082, 60.043036200000074 ], [ 24.18295332100007, 60.025458075000074 ], [ 24.164235873000052, 60.019435940000051 ], [ 24.105967644000089, 60.031927802000041 ], [ 24.009613477000073, 60.010565497000073 ], [ 24.01921634200005, 60.039740302000041 ], [ 24.000824415000068, 60.038275458000044 ], [ 23.955332879000082, 60.003566799000055 ], [ 23.873057488000086, 59.993068752000056 ], [ 23.799489780000044, 59.956610419000071 ], [ 23.77125084700009, 59.967962958000044 ], [ 23.607595248000052, 59.956610419000071 ], [ 23.573496941000087, 59.977687893000052 ], [ 23.42945397200009, 59.956610419000071 ], [ 23.483571811000047, 60.011297919000071 ], [ 23.540863477000073, 60.029120184000078 ], [ 23.546153191000087, 60.073919989000046 ], [ 23.498301629000082, 60.063299872000073 ], [ 23.453786655000044, 60.02798086100006 ], [ 23.439707879000082, 59.99445221600007 ], [ 23.326426629000082, 59.923041083000044 ], [ 23.237152540000068, 59.898016669000071 ], [ 23.222178582000083, 59.86782461100006 ], [ 23.25131269600007, 59.841131903000075 ], [ 22.888194207000083, 59.813177802000041 ], [ 22.946136915000068, 59.84796784100007 ], [ 23.168142123000052, 59.888902085000041 ], [ 23.165863477000073, 59.917669989000046 ], [ 23.247080925000091, 59.922430731000077 ], [ 23.293711785000085, 59.958685614000046 ], [ 23.332855665000068, 60.029852606000077 ], [ 23.223399285000085, 59.929877020000049 ], [ 23.203623894000089, 59.929877020000049 ], [ 23.209727410000085, 59.943548895000049 ], [ 23.18881269600007, 59.950181382000039 ], [ 23.17123457100007, 59.936428127000056 ], [ 23.131846550000091, 59.942938544000071 ], [ 23.11068769600007, 59.92328522300005 ], [ 23.100596550000091, 59.940415757000039 ], [ 23.111338738000086, 59.974269924000055 ], [ 23.203623894000089, 59.99750397300005 ], [ 23.25757897200009, 60.039740302000041 ], [ 23.035492384000065, 60.044582424000055 ], [ 22.990733269000089, 60.077337958000044 ], [ 23.021254328975665, 60.106801994754179 ], [ 23.06859744561558, 60.089355781244308 ], [ 23.114176059977183, 60.094730129791628 ], [ 23.310546501919532, 60.186404121552926 ], [ 23.333284133156212, 60.16547516544648 ], [ 23.393022088398652, 60.160049140055719 ], [ 23.563037550642434, 60.203767402443646 ], [ 23.641689081286074, 60.198031317791049 ], [ 23.64602990105908, 60.223533636767911 ], [ 23.592389763876497, 60.258518581867008 ], [ 23.625566033845359, 60.261903388130804 ], [ 23.641068962762404, 60.28303904891294 ], [ 23.724578078015895, 60.319186713096315 ], [ 23.746178826791379, 60.370733955207811 ], [ 23.786073032444449, 60.392593085502483 ], [ 23.793617791328018, 60.41853465405103 ], [ 23.779251743073473, 60.449695543314647 ], [ 23.699670038241663, 60.451917630494222 ], [ 23.744215122030255, 60.486282457069706 ], [ 23.865034620551285, 60.512094835308346 ], [ 23.861417271190078, 60.556329860734479 ], [ 23.913920525911522, 60.597490139158595 ], [ 23.880537551266968, 60.620382799126844 ], [ 23.896660596908987, 60.648753160429976 ], [ 24.192766554332991, 60.619788519924214 ], [ 24.252401156787926, 60.597128403952638 ], [ 24.283923781257499, 60.565399074807431 ], [ 24.304077590108704, 60.568267117133701 ], [ 24.309245233081015, 60.594027818528957 ], [ 24.340561151076258, 60.60183095983092 ], [ 24.397198520895017, 60.596249904809213 ], [ 24.414045037848211, 60.56343537094557 ], [ 24.524942660675208, 60.558526109492334 ], [ 24.566283807151933, 60.578214830350134 ], [ 24.574552036447301, 60.636454168824798 ], [ 24.612379184551685, 60.660509548776645 ], [ 24.75066531675094, 60.654437568239132 ], [ 24.994681430603521, 60.680017402481099 ], [ 25.107646111878523, 60.666504014948316 ], [ 25.093280063624036, 60.698259182515244 ], [ 25.182370232999858, 60.723580634338759 ], [ 25.123769159319238, 60.734200141123608 ], [ 25.059897088080106, 60.720893460065099 ], [ 25.096380649947037, 60.756550197833349 ], [ 25.156221957976982, 60.771975613283871 ], [ 25.108886346227905, 60.819853828291514 ], [ 25.19373904771885, 60.830137438292127 ], [ 25.329544712118775, 60.757273668245148 ], [ 25.473825311388964, 60.792051906869972 ], [ 25.509895461206554, 60.758100491444509 ], [ 25.523434686261737, 60.704408678317805 ], [ 25.571803826785185, 60.689319160550781 ], [ 25.888270297736028, 60.734019273970262 ], [ 25.948214958553478, 60.708852850878316 ], [ 26.173317497904179, 60.697225653740873 ], [ 26.214555290694079, 60.715570787461843 ], [ 26.215485466680946, 60.755413316271472 ], [ 26.288659295090383, 60.752002672485332 ], [ 26.327933384018422, 60.717224432961189 ], [ 26.328656854430278, 60.687872218827806 ], [ 26.348293898444638, 60.671103217139716 ], [ 26.416300082982445, 60.651285305072747 ], [ 26.501049431685885, 60.599402167076335 ], [ 26.553301563316495, 60.591770431160455 ] ] ], [ [ [ 25.81421959700009, 60.20766836100006 ], [ 25.82203209700009, 60.216294664000031 ], [ 25.876231316000087, 60.217230536000045 ], [ 25.83562259200005, 60.196030992000033 ], [ 25.81421959700009, 60.20766836100006 ] ] ], [ [ [ 25.622325066000087, 60.238348700000074 ], [ 25.570160352000073, 60.258042710000041 ], [ 25.564463738000086, 60.278265692000048 ], [ 25.58171634200005, 60.296372789000031 ], [ 25.684418165000068, 60.245184637000079 ], [ 25.643728061000047, 60.228094794000071 ], [ 25.635996941000087, 60.204250393000052 ], [ 25.603363477000073, 60.215399481000077 ], [ 25.622325066000087, 60.238348700000074 ] ] ], [ [ [ 23.915212436000047, 59.973456122000073 ], [ 23.920420769000089, 59.959418036000045 ], [ 23.89421634200005, 59.949693101000037 ], [ 23.84742272200009, 59.954657294000071 ], [ 23.870290561000047, 59.972805080000057 ], [ 23.915212436000047, 59.973456122000073 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FI-19", "NAME_1": "Varsinais-Suomi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.021254328975665, 60.106801994754179 ], [ 23.045909050000091, 60.121649481000077 ], [ 23.025401238000086, 60.135321356000077 ], [ 23.004893425000091, 60.107367255000042 ], [ 22.969493035000085, 60.09438711100006 ], [ 22.95866946700005, 60.121568101000037 ], [ 22.87468509200005, 60.149603583000044 ], [ 22.885590040000068, 60.169338283000059 ], [ 22.867198113000086, 60.183742580000057 ], [ 23.00757897200009, 60.277004299000055 ], [ 23.080577019000089, 60.355047919000071 ], [ 23.034190300000091, 60.343939520000049 ], [ 22.998057488000086, 60.306626695000034 ], [ 22.94117272200009, 60.316473700000074 ], [ 22.736175977000073, 60.238185940000051 ], [ 22.52507571700005, 60.204250393000052 ], [ 22.59343509200005, 60.232163804000038 ], [ 22.57203209700009, 60.242661851000037 ], [ 22.590342644000089, 60.262274481000077 ], [ 22.64812259200005, 60.278713283000059 ], [ 22.449473504000082, 60.245184637000079 ], [ 22.459157748000052, 60.264960028000075 ], [ 22.545664910000085, 60.333929755000042 ], [ 22.627614780000044, 60.375392971000053 ], [ 22.624278191000087, 60.39907461100006 ], [ 22.543467644000089, 60.372544664000031 ], [ 22.463063998000052, 60.375555731000077 ], [ 22.483571811000047, 60.402167059000078 ], [ 22.291514519000089, 60.382635809000078 ], [ 22.181488477000073, 60.430487372000073 ], [ 22.116709832000083, 60.43695709800005 ], [ 22.101084832000083, 60.462144273000035 ], [ 22.047048373000052, 60.438788153000075 ], [ 22.018077019000089, 60.471136786000045 ], [ 21.981944207000083, 60.476752020000049 ], [ 21.983897332000083, 60.492254950000074 ], [ 21.935394727000073, 60.492254950000074 ], [ 21.950368686000047, 60.518947658000059 ], [ 21.903168165000068, 60.528876044000071 ], [ 21.843923373000052, 60.515529690000051 ], [ 21.874034050000091, 60.47797272300005 ], [ 21.785329623000052, 60.47797272300005 ], [ 21.807871941000087, 60.575588283000059 ], [ 21.846039259000065, 60.587836005000042 ], [ 21.828461134000065, 60.606390692000048 ], [ 21.840505405000044, 60.628729559000078 ], [ 21.66179446700005, 60.567328192000048 ], [ 21.668955925000091, 60.54523346600007 ], [ 21.641449415000068, 60.495754299000055 ], [ 21.558116082000083, 60.492254950000074 ], [ 21.58375084700009, 60.505031643000052 ], [ 21.517751498000052, 60.567328192000048 ], [ 21.578623894000089, 60.567328192000048 ], [ 21.48609459700009, 60.574164130000042 ], [ 21.442637566000087, 60.567328192000048 ], [ 21.408539259000065, 60.58038971600007 ], [ 21.428396030000044, 60.59406159100007 ], [ 21.414805535000085, 60.608303127000056 ], [ 21.469981316000087, 60.608303127000056 ], [ 21.399912957000083, 60.634100653000075 ], [ 21.35328209700009, 60.676581122000073 ], [ 21.35328209700009, 60.690171617000033 ], [ 21.438975457000083, 60.68032461100006 ], [ 21.445648634000065, 60.692857164000031 ], [ 21.422129754000082, 60.725002346000053 ], [ 21.469981316000087, 60.731146552000041 ], [ 21.387380405000044, 60.752346096000053 ], [ 21.422129754000082, 60.759100653000075 ], [ 21.374278191000087, 60.77960846600007 ], [ 21.374278191000087, 60.807603257000039 ], [ 21.328868035000085, 60.827541408000059 ], [ 21.336436394000089, 60.844712632000039 ], [ 21.318532748000052, 60.86469147300005 ], [ 21.428396030000044, 60.875799872000073 ], [ 21.380869988000086, 60.882025458000044 ], [ 21.35328209700009, 60.902533270000049 ], [ 21.390798373000052, 60.916815497000073 ], [ 21.428396030000044, 60.902533270000049 ], [ 21.412771030000044, 60.933498440000051 ], [ 21.318532748000052, 61.01235586100006 ], [ 21.339040561000047, 61.026597398000035 ], [ 21.298675977000073, 61.060126044000071 ], [ 21.387380405000044, 61.040269273000035 ], [ 21.41949913887413, 61.047023424291581 ], [ 21.450608351294363, 61.014622301577901 ], [ 21.493396436796104, 61.003692735531274 ], [ 21.60047000468694, 61.016275947077247 ], [ 21.60026329911193, 61.034414374323887 ], [ 21.623724399861146, 61.045783189942256 ], [ 21.649665969309012, 61.009506334549656 ], [ 21.706406691015957, 60.998757636555638 ], [ 21.755499301951204, 61.006018175498355 ], [ 21.7789604018011, 61.035344550310697 ], [ 21.814307082106154, 61.035809638304158 ], [ 21.824435663375141, 61.032476507984427 ], [ 21.809966261433829, 61.018291327782549 ], [ 21.951869744792873, 60.973151963892008 ], [ 21.945358513784356, 60.950698554394762 ], [ 22.005613233863642, 60.898660386767403 ], [ 22.151134066583893, 60.88568960249313 ], [ 22.246218703030706, 60.924576117793549 ], [ 22.561858350782245, 60.943618883504655 ], [ 22.573123813613108, 60.948011380121045 ], [ 22.534573195096868, 60.969973863203222 ], [ 22.570229932865118, 60.986045233800496 ], [ 22.80112023281248, 60.996561387797783 ], [ 22.827681918985377, 61.012503567185831 ], [ 22.819723748052525, 61.04025381086467 ], [ 22.837603793780033, 61.059839178934908 ], [ 22.826028272586711, 61.090018216267651 ], [ 22.840704380103034, 61.091103420986087 ], [ 23.007412551348125, 61.029324245717362 ], [ 23.122444289272494, 61.031572171318601 ], [ 23.295767043414287, 60.946719468928336 ], [ 23.288428989206466, 60.922199001882404 ], [ 23.256389600799423, 60.914576727733788 ], [ 23.267138298793441, 60.893337714164147 ], [ 23.157687615890723, 60.890237127841147 ], [ 23.138257276552054, 60.870910143088622 ], [ 23.141977979600085, 60.846208807990081 ], [ 23.212051221686522, 60.829310615092766 ], [ 23.162441846813749, 60.779882107373339 ], [ 23.231998324962717, 60.739832872089323 ], [ 23.30775597485831, 60.722986355136129 ], [ 23.477047966690293, 60.74652497025113 ], [ 23.528000928699896, 60.712780260400677 ], [ 23.652851190430056, 60.689551704547512 ], [ 23.7046309747397, 60.661129666400939 ], [ 23.896660596908987, 60.648753160429976 ], [ 23.880537551266968, 60.620382799126844 ], [ 23.913920525911522, 60.597490139158595 ], [ 23.861417271190078, 60.556329860734479 ], [ 23.865034620551285, 60.512094835308346 ], [ 23.744215122030255, 60.486282457069706 ], [ 23.699670038241663, 60.451917630494222 ], [ 23.779251743073473, 60.449695543314647 ], [ 23.793617791328018, 60.41853465405103 ], [ 23.786073032444449, 60.392593085502483 ], [ 23.746178826791379, 60.370733955207811 ], [ 23.724578078015895, 60.319186713096315 ], [ 23.641068962762404, 60.28303904891294 ], [ 23.625566033845359, 60.261903388130804 ], [ 23.592389763876497, 60.258518581867008 ], [ 23.64602990105908, 60.223533636767911 ], [ 23.641689081286074, 60.198031317791049 ], [ 23.563037550642434, 60.203767402443646 ], [ 23.393022088398652, 60.160049140055719 ], [ 23.333284133156212, 60.16547516544648 ], [ 23.310546501919532, 60.186404121552926 ], [ 23.114176059977183, 60.094730129791628 ], [ 23.06859744561558, 60.089355781244308 ], [ 23.021254328975665, 60.106801994754179 ] ] ], [ [ [ 22.408376498000052, 60.052801825000074 ], [ 22.41179446700005, 60.085191148000035 ], [ 22.449473504000082, 60.066473700000074 ], [ 22.442637566000087, 59.99750397300005 ], [ 22.40951582100007, 60.009344794000071 ], [ 22.382823113000086, 59.992580471000053 ], [ 22.348887566000087, 60.063218492000033 ], [ 22.370616082000083, 60.080755927000041 ], [ 22.387217644000089, 60.051662502000056 ], [ 22.408376498000052, 60.052801825000074 ] ] ], [ [ [ 21.496592644000089, 60.135321356000077 ], [ 21.571055535000085, 60.170355536000045 ], [ 21.654307488000086, 60.155829169000071 ], [ 21.613291863000086, 60.129095770000049 ], [ 21.636973504000082, 60.12368398600006 ], [ 21.613129102000073, 60.102118231000077 ], [ 21.514414910000085, 60.097357489000046 ], [ 21.482269727000073, 60.114813544000071 ], [ 21.558116082000083, 60.121649481000077 ], [ 21.496592644000089, 60.135321356000077 ] ] ], [ [ [ 21.743662957000083, 60.190619208000044 ], [ 21.853526238000086, 60.196763414000031 ], [ 21.887705925000091, 60.176336981000077 ], [ 21.846039259000065, 60.170111395000049 ], [ 21.867849155000044, 60.155829169000071 ], [ 21.791514519000089, 60.155829169000071 ], [ 21.826182488000086, 60.149603583000044 ], [ 21.783213738000086, 60.123236395000049 ], [ 21.695811394000089, 60.121649481000077 ], [ 21.722504102000073, 60.149603583000044 ], [ 21.708181186000047, 60.171779690000051 ], [ 21.743662957000083, 60.190619208000044 ] ] ], [ [ [ 21.35328209700009, 60.211086330000057 ], [ 21.36890709700009, 60.196600653000075 ], [ 21.44890384200005, 60.183742580000057 ], [ 21.409353061000047, 60.184515692000048 ], [ 21.38054446700005, 60.162665106000077 ], [ 21.270681186000047, 60.190619208000044 ], [ 21.35328209700009, 60.211086330000057 ] ] ], [ [ [ 22.058929884000065, 60.211086330000057 ], [ 22.07203209700009, 60.196763414000031 ], [ 22.011241082000083, 60.170111395000049 ], [ 22.037852410000085, 60.155829169000071 ], [ 22.009287957000083, 60.137274481000077 ], [ 21.950694207000083, 60.14907461100006 ], [ 21.935394727000073, 60.176336981000077 ], [ 22.058929884000065, 60.211086330000057 ] ] ], [ [ [ 22.209239129000082, 60.204250393000052 ], [ 22.24586022200009, 60.243068752000056 ], [ 22.291758660000085, 60.245184637000079 ], [ 22.296885613000086, 60.221258856000077 ], [ 22.26929772200009, 60.195868231000077 ], [ 22.232269727000073, 60.184963283000059 ], [ 22.209239129000082, 60.204250393000052 ] ] ], [ [ [ 22.84351647200009, 60.241766669000071 ], [ 22.890961134000065, 60.285549221000053 ], [ 22.95639082100007, 60.292954820000034 ], [ 22.949473504000082, 60.270453192000048 ], [ 22.833506707000083, 60.193060614000046 ], [ 22.840342644000089, 60.170111395000049 ], [ 22.819346550000091, 60.162665106000077 ], [ 22.840342644000089, 60.155829169000071 ], [ 22.846853061000047, 60.111029364000046 ], [ 22.730479363000086, 60.046576239000046 ], [ 22.757985873000052, 60.032294012000079 ], [ 22.72982832100007, 60.004950262000079 ], [ 22.682139519000089, 59.99750397300005 ], [ 22.654958530000044, 60.032294012000079 ], [ 22.600271030000044, 59.984523830000057 ], [ 22.59896894600007, 60.008042710000041 ], [ 22.574880405000044, 60.01703522300005 ], [ 22.59343509200005, 60.046576239000046 ], [ 22.529958530000044, 60.008246161000045 ], [ 22.469899936000047, 59.99750397300005 ], [ 22.473643425000091, 60.090969143000052 ], [ 22.422129754000082, 60.114813544000071 ], [ 22.600271030000044, 60.142157294000071 ], [ 22.415212436000047, 60.149603583000044 ], [ 22.448090040000068, 60.221380927000041 ], [ 22.477305535000085, 60.224676825000074 ], [ 22.451019727000073, 60.188544012000079 ], [ 22.46648196700005, 60.183742580000057 ], [ 22.814952019000089, 60.226996161000045 ], [ 22.84351647200009, 60.241766669000071 ] ] ], [ [ [ 22.10678144600007, 60.313462632000039 ], [ 22.24976647200009, 60.311468817000048 ], [ 22.33961022200009, 60.286200262000079 ], [ 22.33179772200009, 60.269435940000051 ], [ 22.215505405000044, 60.253119208000044 ], [ 22.20085696700005, 60.254339911000045 ], [ 22.216644727000073, 60.265692450000074 ], [ 22.203949415000068, 60.276312567000048 ], [ 22.181162957000083, 60.281317450000074 ], [ 22.140879754000082, 60.278713283000059 ], [ 22.181895379000082, 60.278713283000059 ], [ 22.163340691000087, 60.25922272300005 ], [ 22.080088738000086, 60.269476630000042 ], [ 22.083832227000073, 60.301459052000041 ], [ 22.10678144600007, 60.313462632000039 ] ] ], [ [ [ 22.387950066000087, 60.32094961100006 ], [ 22.312836134000065, 60.32094961100006 ], [ 22.350271030000044, 60.347845770000049 ], [ 22.39820397200009, 60.355047919000071 ], [ 22.401621941000087, 60.341376044000071 ], [ 22.477305535000085, 60.32094961100006 ], [ 22.367442254000082, 60.292954820000034 ], [ 22.387950066000087, 60.32094961100006 ] ] ], [ [ [ 21.997569207000083, 60.333929755000042 ], [ 21.901377800000091, 60.327093817000048 ], [ 21.901377800000091, 60.341376044000071 ], [ 21.794118686000047, 60.373968817000048 ], [ 21.792246941000087, 60.396958726000037 ], [ 21.846039259000065, 60.409654039000031 ], [ 21.798350457000083, 60.443793036000045 ], [ 21.808116082000083, 60.466701565000051 ], [ 21.832367384000065, 60.471136786000045 ], [ 21.931976759000065, 60.423325914000031 ], [ 21.950368686000047, 60.395982164000031 ], [ 21.894541863000086, 60.395982164000031 ], [ 21.950368686000047, 60.375555731000077 ], [ 21.942230665000068, 60.368109442000048 ], [ 21.988617384000065, 60.365912177000041 ], [ 21.997569207000083, 60.355047919000071 ], [ 21.963389519000089, 60.347601630000042 ], [ 21.997569207000083, 60.333929755000042 ] ] ], [ [ [ 21.72592207100007, 60.481675523000035 ], [ 21.700694207000083, 60.459702867000033 ], [ 21.681651238000086, 60.464911200000074 ], [ 21.71420332100007, 60.508612372000073 ], [ 21.764170769000089, 60.525783596000053 ], [ 21.72592207100007, 60.481675523000035 ] ] ], [ [ [ 21.319102410000085, 60.481675523000035 ], [ 21.250254754000082, 60.498439846000053 ], [ 21.260590040000068, 60.519720770000049 ], [ 21.229177280000044, 60.559881903000075 ], [ 21.278493686000047, 60.542303778000075 ], [ 21.319102410000085, 60.481675523000035 ] ] ], [ [ [ 21.39421634200005, 60.559881903000075 ], [ 21.482269727000073, 60.525783596000053 ], [ 21.463145379000082, 60.525783596000053 ], [ 21.463145379000082, 60.492254950000074 ], [ 21.433604363000086, 60.489081122000073 ], [ 21.442637566000087, 60.471136786000045 ], [ 21.39226321700005, 60.489976304000038 ], [ 21.360118035000085, 60.533189195000034 ], [ 21.328623894000089, 60.525336005000042 ], [ 21.333832227000073, 60.557359117000033 ], [ 21.39421634200005, 60.559881903000075 ] ] ], [ [ [ 21.298675977000073, 60.567328192000048 ], [ 21.233164910000085, 60.593898830000057 ], [ 21.213877800000091, 60.616359768000052 ], [ 21.270681186000047, 60.643052476000037 ], [ 21.291188998000052, 60.615139065000051 ], [ 21.281504754000082, 60.57562897300005 ], [ 21.298675977000073, 60.567328192000048 ] ] ], [ [ [ 21.264414910000085, 60.882025458000044 ], [ 21.202403191000087, 60.889471747000073 ], [ 21.298675977000073, 60.895697333000044 ], [ 21.291188998000052, 60.909979559000078 ], [ 21.31226647200009, 60.923000393000052 ], [ 21.243418816000087, 60.950873114000046 ], [ 21.270030144000089, 60.967962958000044 ], [ 21.304942254000082, 60.971380927000041 ], [ 21.374278191000087, 60.930405992000033 ], [ 21.32789147200009, 60.910142320000034 ], [ 21.31812584700009, 60.880194403000075 ], [ 21.264414910000085, 60.882025458000044 ] ] ], [ [ [ 22.887380405000044, 60.067775783000059 ], [ 22.926605665000068, 60.065375067000048 ], [ 22.872243686000047, 60.006048895000049 ], [ 22.851084832000083, 60.027899481000077 ], [ 22.883799675000091, 60.048081773000035 ], [ 22.85515384200005, 60.055568752000056 ], [ 22.887380405000044, 60.067775783000059 ] ] ], [ [ [ 22.957530144000089, 60.11078522300005 ], [ 22.963145379000082, 60.096869208000044 ], [ 22.946787957000083, 60.084702867000033 ], [ 22.84546959700009, 60.082220770000049 ], [ 22.891612175000091, 60.119086005000042 ], [ 22.937673373000052, 60.124335028000075 ], [ 22.957530144000089, 60.11078522300005 ] ] ], [ [ [ 21.99154707100007, 60.129950262000079 ], [ 22.012380405000044, 60.122748114000046 ], [ 21.971364780000044, 60.111395575000074 ], [ 21.929942254000082, 60.124579169000071 ], [ 21.962087436000047, 60.137884833000044 ], [ 21.99154707100007, 60.129950262000079 ] ] ], [ [ [ 22.313161655000044, 60.191961981000077 ], [ 22.375010613000086, 60.204046942000048 ], [ 22.385590040000068, 60.195257880000042 ], [ 22.31999759200005, 60.164048570000034 ], [ 22.336924675000091, 60.148504950000074 ], [ 22.288340691000087, 60.14984772300005 ], [ 22.313161655000044, 60.191961981000077 ] ] ], [ [ [ 21.983164910000085, 60.284979559000078 ], [ 21.972911004000082, 60.285345770000049 ], [ 22.008311394000089, 60.297308661000045 ], [ 22.006032748000052, 60.292141018000052 ], [ 21.983164910000085, 60.284979559000078 ] ] ], [ [ [ 21.956879102000073, 60.281398830000057 ], [ 21.909678582000083, 60.280096747000073 ], [ 21.875336134000065, 60.304877020000049 ], [ 21.973806186000047, 60.309312242000033 ], [ 21.956879102000073, 60.281398830000057 ] ] ], [ [ [ 22.299652540000068, 60.367580471000053 ], [ 22.19109134200005, 60.341742255000042 ], [ 22.157237175000091, 60.35187409100007 ], [ 22.255707227000073, 60.374172268000052 ], [ 22.299652540000068, 60.367580471000053 ] ] ], [ [ [ 22.206228061000047, 60.382554429000038 ], [ 22.207530144000089, 60.375555731000077 ], [ 22.104258660000085, 60.35415273600006 ], [ 22.137868686000047, 60.379095770000049 ], [ 22.206228061000047, 60.382554429000038 ] ] ], [ [ [ 21.338063998000052, 60.383368231000077 ], [ 21.355316602000073, 60.351792710000041 ], [ 21.294444207000083, 60.370510158000059 ], [ 21.307790561000047, 60.389593817000048 ], [ 21.338063998000052, 60.383368231000077 ] ] ], [ [ [ 22.498545769000089, 59.877630927000041 ], [ 22.512868686000047, 59.873724677000041 ], [ 22.443695509000065, 59.851467190000051 ], [ 22.41382897200009, 59.861232815000051 ], [ 22.498545769000089, 59.877630927000041 ] ] ], [ [ [ 21.600433790000068, 60.254828192000048 ], [ 21.62671959700009, 60.25259023600006 ], [ 21.601735873000052, 60.222560940000051 ], [ 21.563487175000091, 60.226223049000055 ], [ 21.586924675000091, 60.269354559000078 ], [ 21.604665561000047, 60.268784898000035 ], [ 21.600433790000068, 60.254828192000048 ] ] ], [ [ [ 21.25953209700009, 60.853094794000071 ], [ 21.263194207000083, 60.830267645000049 ], [ 21.186289910000085, 60.856512762000079 ], [ 21.206553582000083, 60.863185940000051 ], [ 21.24586022200009, 60.84601471600007 ], [ 21.25953209700009, 60.853094794000071 ] ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/france.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/france.geojson new file mode 100644 index 000000000000..5925ddaa6275 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/france.geojson @@ -0,0 +1,102 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "FR-59", "NAME_1": "Nord" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 2.521799927545686, 51.08754088371883 ], [ 2.556980428000116, 51.001177470000059 ], [ 2.608450154000082, 50.961128235000061 ], [ 2.611654093000055, 50.941232809000056 ], [ 2.576927531000138, 50.911518860000072 ], [ 2.596667928000102, 50.867645569000061 ], [ 2.586746053000098, 50.845424704000024 ], [ 2.620439087000136, 50.816485902000053 ], [ 2.691855916000065, 50.808837789000094 ], [ 2.768233683000119, 50.733235169000054 ], [ 2.886882772000149, 50.696648255000085 ], [ 2.971425415000112, 50.757833150000025 ], [ 3.129245239000085, 50.779072165000102 ], [ 3.188983195000048, 50.715096742000114 ], [ 3.232391398000118, 50.695924785 ], [ 3.243760213000115, 50.672101950000027 ], [ 3.229807576000042, 50.655410462000091 ], [ 3.27104537000011, 50.526942851000101 ], [ 3.361065714000091, 50.48978749700008 ], [ 3.477130982000119, 50.519863180000058 ], [ 3.498008260000091, 50.511853332 ], [ 3.486742798000137, 50.492681376000078 ], [ 3.499145142000089, 50.486790263000088 ], [ 3.608285766000051, 50.476506653000072 ], [ 3.644355916000052, 50.445500793000051 ], [ 3.661719198000071, 50.319306946000083 ], [ 3.696859172000131, 50.298222962000054 ], [ 3.755046834000041, 50.346333721000022 ], [ 3.840209595000061, 50.345196839000025 ], [ 3.895916789000097, 50.32530141300002 ], [ 4.003300415000098, 50.344059957000084 ], [ 4.097868286000079, 50.294812317000023 ], [ 4.125256795000041, 50.257140198000073 ], [ 4.143653605000111, 50.251610820000067 ], [ 4.162773885000121, 50.272953187000084 ], [ 4.197603800000081, 50.258483785000053 ], [ 4.20132450300008, 50.241533916000051 ], [ 4.152748657000103, 50.20453359 ], [ 4.125773559000066, 50.128155823000029 ], [ 4.180550578000037, 50.127225647000088 ], [ 4.210006144000147, 50.060149638000055 ], [ 4.137349080000092, 50.025061341000125 ], [ 4.128150675000114, 50.005786031000085 ], [ 4.139622843000041, 49.97452179 ], [ 4.099357609765889, 49.969044646293355 ], [ 3.990900574302032, 49.994620818495946 ], [ 3.983473816363528, 50.037050019642663 ], [ 3.962072448184927, 50.042609101528797 ], [ 3.895802914772673, 50.019768524897472 ], [ 3.853901057188011, 50.043048555246628 ], [ 3.696862477521336, 50.060099337014776 ], [ 3.61617888015121, 50.036687470550305 ], [ 3.554743331339637, 50.049453584415346 ], [ 3.448615396982973, 50.015373993115247 ], [ 3.361999183415548, 50.03244674801897 ], [ 3.316208165374519, 50.018296357191105 ], [ 3.225944490445841, 50.028986054262987 ], [ 3.15699429115358, 50.018680878519717 ], [ 3.088265268427392, 50.05002124818202 ], [ 3.126078763024509, 50.183025367027028 ], [ 3.16835415492028, 50.232617653881618 ], [ 3.116696438289978, 50.267598123954258 ], [ 3.043000146939221, 50.256919413000503 ], [ 3.019753075843767, 50.267444315602631 ], [ 3.062533839065395, 50.31644334128714 ], [ 3.001911278282876, 50.381306624600995 ], [ 3.058754541588826, 50.442632310432771 ], [ 3.01491909124303, 50.453530748245385 ], [ 2.972555807704339, 50.506528797366059 ], [ 2.910790669054109, 50.503859119402819 ], [ 2.877062639828978, 50.53099535095464 ], [ 2.824218399959193, 50.524952869978961 ], [ 2.790644179984895, 50.541970693392784 ], [ 2.81116664162721, 50.610371575088095 ], [ 2.869811663377561, 50.63120165343355 ], [ 2.803102676247477, 50.668445307904619 ], [ 2.726264294861323, 50.625829339152631 ], [ 2.489201297501893, 50.633256097091191 ], [ 2.425129029081404, 50.666819330947362 ], [ 2.371471800283359, 50.674312006493892 ], [ 2.35352013974267, 50.73730761465464 ], [ 2.393422485159533, 50.770793943885394 ], [ 2.222299431373642, 50.805730468586205 ], [ 2.187406852044603, 50.878405032066553 ], [ 2.105668567550367, 50.983676032123185 ], [ 2.063324013288276, 51.014319513588532 ], [ 2.31609134200005, 51.059027411000045 ], [ 2.38445071700005, 51.05532461100006 ], [ 2.521799927545686, 51.08754088371883 ] ] ], [ [ [ 3.062731592788737, 50.173862769151469 ], [ 3.072355616618381, 50.130796361462899 ], [ 3.001383933821501, 50.123435521132365 ], [ 3.003713035827957, 50.15008835449396 ], [ 3.062731592788737, 50.173862769151469 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-08", "NAME_1": "Ardennes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.815550578000085, 50.161332092000052 ], [ 4.820098103000106, 50.146449280000112 ], [ 4.871877889000075, 50.13978302 ], [ 4.86288619000004, 50.084075827000063 ], [ 4.846039673000064, 50.09069041000005 ], [ 4.827229451000051, 50.064077047000026 ], [ 4.826712687000111, 50.036016744 ], [ 4.783924601000081, 49.958295390000089 ], [ 4.860199016000109, 49.913336894000068 ], [ 4.834877564000124, 49.853030498000081 ], [ 4.849036906000066, 49.794171041000098 ], [ 4.884176879000023, 49.78414581300008 ], [ 4.970993286000123, 49.797064922000075 ], [ 5.081890909000037, 49.752726543000037 ], [ 5.169430786000135, 49.687200827000126 ], [ 5.259244425000134, 49.691334941000051 ], [ 5.299448690000048, 49.662499492 ], [ 5.29789839700004, 49.613251852000033 ], [ 5.341099894000081, 49.625137432000074 ], [ 5.391165749000066, 49.608817006 ], [ 5.389943595720354, 49.593257278000976 ], [ 5.283178454821837, 49.543027783705213 ], [ 5.139521222426481, 49.585039504269673 ], [ 5.105507549633671, 49.569922316161922 ], [ 5.094653057192829, 49.520802441379544 ], [ 5.071098368494916, 49.498917675010659 ], [ 5.099618877009561, 49.461476267715568 ], [ 5.110165752747264, 49.41145551326133 ], [ 5.037084695702106, 49.323268254226548 ], [ 5.049499246592916, 49.27978436595572 ], [ 4.978747290654951, 49.23567425636179 ], [ 4.940405003687943, 49.254526796574396 ], [ 4.836188691654797, 49.236135682315876 ], [ 4.723117398449176, 49.252483339034825 ], [ 4.636523156218686, 49.235015076684419 ], [ 4.577306845534508, 49.284398623697484 ], [ 4.413808304309782, 49.282102480944729 ], [ 4.374938673780775, 49.318730900210824 ], [ 4.334311231078459, 49.318906681697968 ], [ 4.196564643543468, 49.394624458352041 ], [ 4.05528045852634, 49.407291695355411 ], [ 4.033879090347739, 49.426748482856169 ], [ 4.072243349550945, 49.447578562100944 ], [ 4.043041688223298, 49.487447948264162 ], [ 4.071935732847805, 49.522615185942072 ], [ 4.073166201459003, 49.5673075705879 ], [ 4.046447450489438, 49.625699906225691 ], [ 4.117550968502371, 49.648705278225975 ], [ 4.234862985138648, 49.736705769655543 ], [ 4.209836128734366, 49.778223105911593 ], [ 4.250221872341513, 49.870189661523625 ], [ 4.216999214442183, 49.916793667593652 ], [ 4.215944527318072, 49.954410856375887 ], [ 4.27759891700012, 49.960155742 ], [ 4.435108683000095, 49.932250468000106 ], [ 4.645845174000073, 49.984495342000102 ], [ 4.672923624000134, 50.016379700000059 ], [ 4.681915324000073, 50.083920797000118 ], [ 4.815550578000085, 50.161332092000052 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-02", "NAME_1": "Aisne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.131664672000056, 49.974986878000024 ], [ 4.215944527318072, 49.954410856375887 ], [ 4.216999214442183, 49.916793667593652 ], [ 4.250221872341513, 49.870189661523625 ], [ 4.209836128734366, 49.778223105911593 ], [ 4.234862985138648, 49.736705769655543 ], [ 4.117550968502371, 49.648705278225975 ], [ 4.046447450489438, 49.625699906225691 ], [ 4.073166201459003, 49.5673075705879 ], [ 4.071935732847805, 49.522615185942072 ], [ 4.04196502886299, 49.496149120185748 ], [ 4.072243349550945, 49.447578562100944 ], [ 4.033879090347739, 49.426748482856169 ], [ 4.05528045852634, 49.407291695355411 ], [ 4.046601258841008, 49.366829047122792 ], [ 3.96361053349932, 49.362049994012011 ], [ 3.877939143176889, 49.381012397204358 ], [ 3.859020685356313, 49.371201605769443 ], [ 3.8574825991426, 49.347328313350943 ], [ 3.703366382652405, 49.324531682091447 ], [ 3.650148607572191, 49.302833683327776 ], [ 3.675307299192468, 49.210021179533783 ], [ 3.746674489436145, 49.169690367416479 ], [ 3.72373503594315, 49.149354673379435 ], [ 3.625495286378339, 49.138401304076922 ], [ 3.626110520683994, 49.090336116418598 ], [ 3.586383956754162, 49.06031048094394 ], [ 3.584823897404931, 49.041326104616019 ], [ 3.656960131205096, 49.033031427158619 ], [ 3.670802905329822, 49.015508232418938 ], [ 3.511764812596027, 48.89267009315023 ], [ 3.477904948154844, 48.85009806977007 ], [ 3.435212075676759, 48.848384202968589 ], [ 3.383092933092371, 48.870763354545147 ], [ 3.363229651127483, 48.920476490497606 ], [ 3.319943516579997, 48.919905201563779 ], [ 3.169145170713023, 49.010344657979545 ], [ 3.175649077642788, 49.046105157726799 ], [ 3.159015776456897, 49.078141291487384 ], [ 3.07973842918517, 49.106200374947321 ], [ 3.123068509104428, 49.140653501457905 ], [ 3.117619290198093, 49.181116148791205 ], [ 3.067543604253899, 49.197134216570817 ], [ 2.985190085454065, 49.187378356625857 ], [ 2.969655417663375, 49.200880553894422 ], [ 2.965238912745633, 49.224369324984309 ], [ 3.019818993451793, 49.262920351792786 ], [ 2.964250143229492, 49.321334660566094 ], [ 3.070509913701528, 49.350789007106982 ], [ 3.100436672314572, 49.41894818970718 ], [ 3.154313627072213, 49.420629098154336 ], [ 3.169386869808193, 49.437295358593872 ], [ 3.12287075538103, 49.491776561539041 ], [ 3.132340969959785, 49.580161574297165 ], [ 3.107380032062792, 49.626194291433364 ], [ 3.121288723795544, 49.696924274235869 ], [ 3.105248683779735, 49.754009237536252 ], [ 3.056755030320403, 49.778453818888579 ], [ 3.084989894368107, 49.81426924922647 ], [ 3.084067042460049, 49.861081995137965 ], [ 3.193073394621479, 49.975581511577445 ], [ 3.15699429115358, 50.018680878519717 ], [ 3.225944490445841, 50.028986054262987 ], [ 3.316208165374519, 50.018296357191105 ], [ 3.361999183415548, 50.03244674801897 ], [ 3.464567546255239, 50.016373749648778 ], [ 3.554743331339637, 50.049453584415346 ], [ 3.61617888015121, 50.036687470550305 ], [ 3.696862477521336, 50.060099337014776 ], [ 3.853901057188011, 50.043048555246628 ], [ 3.895802914772673, 50.019768524897472 ], [ 3.974926452793568, 50.041389619934989 ], [ 3.990900574302032, 49.994620818495946 ], [ 4.081076359386486, 49.970879363092081 ], [ 4.131664672000056, 49.974986878000024 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-55", "NAME_1": "Meuse" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.391165749000066, 49.608817006 ], [ 5.450240519000118, 49.545762431000085 ], [ 5.456131633000041, 49.498943584000088 ], [ 5.477723891744176, 49.495224343728466 ], [ 5.464123286160714, 49.464596384615447 ], [ 5.489062251821451, 49.41780561094015 ], [ 5.581017821315413, 49.412642036500756 ], [ 5.643595948893903, 49.43579023073454 ], [ 5.717907475449636, 49.382308783423582 ], [ 5.726960210345396, 49.320708439243049 ], [ 5.75945777006001, 49.300273868344334 ], [ 5.727992925233309, 49.259338808039558 ], [ 5.722411870211602, 49.211416443514054 ], [ 5.75969946915518, 49.193937194146145 ], [ 5.749635991607704, 49.151277280921761 ], [ 5.760073004365665, 49.109144711259376 ], [ 5.820761482756211, 49.103926204430763 ], [ 5.842492440773526, 49.046280939213943 ], [ 5.818498299257101, 48.990876884360716 ], [ 5.849545663501544, 48.960093191447584 ], [ 5.843393319546067, 48.943196218031005 ], [ 5.797206794957617, 48.94517375706323 ], [ 5.762226324884978, 48.919213062632707 ], [ 5.775783453643442, 48.823049728961792 ], [ 5.725729740834879, 48.741520185208344 ], [ 5.752140875101304, 48.701233318462869 ], [ 5.757941656082551, 48.627262367863977 ], [ 5.716061771633463, 48.569781897116854 ], [ 5.759347906180892, 48.539525548665097 ], [ 5.765236578805059, 48.496601963210026 ], [ 5.736144780457266, 48.466807039813034 ], [ 5.668864504393355, 48.466279696250979 ], [ 5.479152583524922, 48.411864410913779 ], [ 5.344767812884243, 48.500403232922849 ], [ 5.187004135032794, 48.541898595144005 ], [ 5.035854226191589, 48.618066811634037 ], [ 5.004631080460001, 48.65539835594933 ], [ 4.982768287226691, 48.750001631170335 ], [ 4.906918674457245, 48.804768478582389 ], [ 4.930165745552699, 48.832157395347508 ], [ 4.928781468589875, 48.897789722217908 ], [ 5.008520240916368, 48.934736745204589 ], [ 5.034140359390051, 49.006049003958367 ], [ 4.991777076750679, 49.036931573733114 ], [ 4.984789771630631, 49.10279461268118 ], [ 4.95543430195147, 49.173096129682619 ], [ 4.979977759266148, 49.209757507303095 ], [ 4.978747290654951, 49.23567425636179 ], [ 5.049499246592916, 49.27978436595572 ], [ 5.037084695702106, 49.323268254226548 ], [ 5.110165752747264, 49.41145551326133 ], [ 5.099618877009561, 49.461476267715568 ], [ 5.071098368494916, 49.498917675010659 ], [ 5.094653057192829, 49.520802441379544 ], [ 5.100849346520135, 49.563539259229401 ], [ 5.139521222426481, 49.585039504269673 ], [ 5.283178454821837, 49.543027783705213 ], [ 5.389943595720354, 49.593257278000976 ], [ 5.391165749000066, 49.608817006 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-54", "NAME_1": "Meurthe-et-Moselle" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.74634647600007, 49.549431458000086 ], [ 5.790684855000023, 49.537752585000121 ], [ 5.8395707600001, 49.499873760000028 ], [ 5.928141857960384, 49.482306346061023 ], [ 5.942204358944025, 49.430330025710077 ], [ 5.92409888915239, 49.376497016324208 ], [ 5.996059341465411, 49.304811222360001 ], [ 6.019723893143123, 49.244331483810925 ], [ 5.986545180615565, 49.200649840917379 ], [ 6.015549088219814, 49.15198040597096 ], [ 6.009396744264336, 49.130941586884717 ], [ 5.934689710261921, 49.098564876267972 ], [ 5.967385023699876, 49.041490899985035 ], [ 6.034357682161271, 49.020144463296333 ], [ 6.051760026903708, 48.981142996651954 ], [ 6.10849342722986, 48.966322440028534 ], [ 6.14316628059936, 48.934560963717502 ], [ 6.308664333991828, 48.924607350049143 ], [ 6.322638943332549, 48.902195240118203 ], [ 6.29871072032347, 48.870609545294258 ], [ 6.302292263177378, 48.847076829731861 ], [ 6.371506132901686, 48.780203048132137 ], [ 6.433183381707693, 48.78908000154081 ], [ 6.520678501811403, 48.754451093543082 ], [ 6.557614538680014, 48.755022383376286 ], [ 6.598923134195275, 48.715735272264965 ], [ 6.706896770569472, 48.668098551307082 ], [ 6.868417772761973, 48.620121254392359 ], [ 6.925436818454386, 48.626361489091437 ], [ 6.970436819803354, 48.610991615770445 ], [ 7.088649715212171, 48.523441563277515 ], [ 7.054723932263641, 48.518442784207082 ], [ 6.887424121326148, 48.419433991085782 ], [ 6.864484666933834, 48.435594880199517 ], [ 6.807245895281824, 48.396044097756885 ], [ 6.663852335117156, 48.423114411700737 ], [ 6.63548563495408, 48.470575350272156 ], [ 6.606218056018463, 48.46928995017106 ], [ 6.5018039893626, 48.414512115741502 ], [ 6.433029572456803, 48.410491120069139 ], [ 6.402575470281704, 48.393769928139648 ], [ 6.387414336802181, 48.392078033574364 ], [ 6.389875274024689, 48.40777749673407 ], [ 6.33103249855094, 48.4063273012639 ], [ 6.2841867933858, 48.437814119226175 ], [ 6.256830835874382, 48.403679596436177 ], [ 6.147428976266212, 48.40777749673407 ], [ 6.149230733811294, 48.371522612678405 ], [ 6.117216572286964, 48.361305326779359 ], [ 5.976855239177951, 48.357493070948465 ], [ 5.948664319602642, 48.365326323351098 ], [ 5.954970472809066, 48.387364898071553 ], [ 5.874045176343827, 48.414182525902845 ], [ 5.901994395924646, 48.459907625436529 ], [ 5.895885997340883, 48.487637119057752 ], [ 5.842009042583243, 48.501974277490888 ], [ 5.779518805748296, 48.486208895823836 ], [ 5.765236578805059, 48.496601963210026 ], [ 5.759347906180892, 48.539525548665097 ], [ 5.716061771633463, 48.569781897116854 ], [ 5.757941656082551, 48.627262367863977 ], [ 5.752140875101304, 48.701233318462869 ], [ 5.723906010154224, 48.729984539954557 ], [ 5.775783453643442, 48.823049728961792 ], [ 5.762226324884978, 48.919213062632707 ], [ 5.797206794957617, 48.94517375706323 ], [ 5.847546152233122, 48.947371022954314 ], [ 5.847590097604893, 48.96564128721559 ], [ 5.818498299257101, 48.990876884360716 ], [ 5.841459725885613, 49.055575373204874 ], [ 5.809533455104884, 49.11207806055404 ], [ 5.753591070571417, 49.117834897062835 ], [ 5.75969946915518, 49.193937194146145 ], [ 5.720851810862371, 49.222347840580369 ], [ 5.727992925233309, 49.259338808039558 ], [ 5.75945777006001, 49.300273868344334 ], [ 5.726960210345396, 49.320708439243049 ], [ 5.724982670413908, 49.370443549230401 ], [ 5.6992966343322, 49.402633491342499 ], [ 5.643595948893903, 49.43579023073454 ], [ 5.581017821315413, 49.412642036500756 ], [ 5.498532466400206, 49.412092720702447 ], [ 5.464123286160714, 49.464596384615447 ], [ 5.477723891744176, 49.495224343728466 ], [ 5.528788696000078, 49.517960511000055 ], [ 5.60227258300003, 49.513723043000098 ], [ 5.644647257000145, 49.543798727000066 ], [ 5.710276327000088, 49.531086325 ], [ 5.74634647600007, 49.549431458000086 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-57", "NAME_1": "Moselle" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.345307071000093, 49.455348652000097 ], [ 6.402740519000133, 49.465457255000089 ], [ 6.511674438000114, 49.424736226 ], [ 6.518805786000058, 49.402153626000072 ], [ 6.577716919000068, 49.355799866000083 ], [ 6.555599406000056, 49.347169902000033 ], [ 6.556426228000078, 49.326395976000086 ], [ 6.639676961000106, 49.27115387 ], [ 6.680604696000046, 49.207488505000086 ], [ 6.702515503000086, 49.213638001000064 ], [ 6.713780965000126, 49.158860982000064 ], [ 6.821784709000099, 49.147750550000055 ], [ 6.839044637000086, 49.162788392000053 ], [ 6.833463583000054, 49.209452210000038 ], [ 6.914388876000146, 49.206661683000064 ], [ 7.009473510000078, 49.181701965000073 ], [ 7.020532267000078, 49.11896677700004 ], [ 7.042546427000076, 49.107597962000042 ], [ 7.073242228000112, 49.120310364000019 ], [ 7.079856812000116, 49.142014465 ], [ 7.154994344000016, 49.114419251000086 ], [ 7.274366902000054, 49.105014140000051 ], [ 7.297104533000038, 49.12811350500003 ], [ 7.33400150600005, 49.13415964800005 ], [ 7.350951376000069, 49.159171042000068 ], [ 7.410482625000043, 49.168937887000098 ], [ 7.476111694000082, 49.15152292900008 ], [ 7.471047404000103, 49.128320212000077 ], [ 7.52086348500012, 49.083671774000052 ], [ 7.608610066000068, 49.061967672000051 ], [ 7.644932350047895, 49.036295448176361 ], [ 7.564072096150312, 48.939647634430742 ], [ 7.490683421502695, 48.958851736718259 ], [ 7.341708806316319, 48.943371999518149 ], [ 7.301806461798776, 48.954742849402976 ], [ 7.284448062428112, 48.977473563054446 ], [ 7.145427060910094, 49.00990520516109 ], [ 7.11266582896485, 49.061859553275724 ], [ 7.078674128408295, 49.060156671692994 ], [ 7.082541316628465, 49.035250665285957 ], [ 7.042858697171141, 48.97734172693913 ], [ 6.985136527328848, 48.936857106470256 ], [ 6.981093558520911, 48.904919849571399 ], [ 7.096384089853871, 48.858030199034431 ], [ 7.074938777202817, 48.824543869803733 ], [ 7.110973934399567, 48.789090987658938 ], [ 7.183879210856901, 48.82462077442915 ], [ 7.204401672499159, 48.854173997831708 ], [ 7.216332825199686, 48.829839280358499 ], [ 7.317670719428122, 48.755890302895125 ], [ 7.264914370301938, 48.684885661743863 ], [ 7.300422183936632, 48.655640055044501 ], [ 7.262892885897941, 48.57579141883889 ], [ 7.193019836496262, 48.533527013061189 ], [ 7.088649715212171, 48.523441563277515 ], [ 6.970436819803354, 48.610991615770445 ], [ 6.925436818454386, 48.626361489091437 ], [ 6.868417772761973, 48.620121254392359 ], [ 6.706896770569472, 48.668098551307082 ], [ 6.598923134195275, 48.715735272264965 ], [ 6.557614538680014, 48.755022383376286 ], [ 6.520678501811403, 48.754451093543082 ], [ 6.433183381707693, 48.78908000154081 ], [ 6.371506132901686, 48.780203048132137 ], [ 6.302292263177378, 48.847076829731861 ], [ 6.29871072032347, 48.870609545294258 ], [ 6.322638943332549, 48.902195240118203 ], [ 6.308664333991828, 48.924607350049143 ], [ 6.14316628059936, 48.934560963717502 ], [ 6.10849342722986, 48.966322440028534 ], [ 6.051760026903708, 48.981142996651954 ], [ 6.034357682161271, 49.020144463296333 ], [ 5.954333265367893, 49.052598077639118 ], [ 5.934689710261921, 49.098564876267972 ], [ 6.009396744264336, 49.130941586884717 ], [ 6.015549088219814, 49.15198040597096 ], [ 5.986545180615565, 49.200649840917379 ], [ 6.019723893143123, 49.244331483810925 ], [ 5.996059341465411, 49.304811222360001 ], [ 5.92409888915239, 49.376497016324208 ], [ 5.942204358944025, 49.430330025710077 ], [ 5.928141857960384, 49.482306346061023 ], [ 5.960700317000118, 49.441324362000032 ], [ 6.078005819000083, 49.45202138300003 ], [ 6.10725467900005, 49.482510478 ], [ 6.142601359000139, 49.486076152000081 ], [ 6.136090129000081, 49.495274556000069 ], [ 6.193554321000079, 49.499408672000087 ], [ 6.345307071000093, 49.455348652000097 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-06", "NAME_1": "Alpes-Maritimes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.687931964188806, 44.09079857219632 ], [ 7.689948771000076, 44.06733713800007 ], [ 7.65336185700005, 44.039690247000053 ], [ 7.630934285000137, 43.993543193000036 ], [ 7.477868693000062, 43.86551483200013 ], [ 7.502289259000065, 43.792222398000035 ], [ 7.476410352000073, 43.784491278000075 ], [ 7.476410352000073, 43.764634507000039 ], [ 7.43745403212602, 43.743360540834651 ], [ 7.406968628000072, 43.76350555400002 ], [ 7.387538289000105, 43.757898662000102 ], [ 7.330533323000054, 43.686424123000052 ], [ 7.257273161000057, 43.691648004000058 ], [ 7.203791110000054, 43.644359650000069 ], [ 7.196677433000048, 43.656916607000085 ], [ 7.151621941000087, 43.654771226000037 ], [ 7.126154018000079, 43.605832972000087 ], [ 7.138916191000078, 43.554020358000059 ], [ 7.08842678700006, 43.568674446000045 ], [ 7.03720222700008, 43.536263506000068 ], [ 7.03063439400006, 43.547889169000086 ], [ 6.975599612000053, 43.546945957000048 ], [ 6.945203125000091, 43.527252672000088 ], [ 6.954298556000083, 43.500106394000056 ], [ 6.933184539115985, 43.480345841348736 ], [ 6.878744921640816, 43.517861538978821 ], [ 6.912033497148173, 43.598259490982684 ], [ 6.83666728346833, 43.613102020741621 ], [ 6.775231734656813, 43.655080782052437 ], [ 6.757367963960348, 43.730908421686308 ], [ 6.665390421330869, 43.752628393585496 ], [ 6.63638651372662, 43.788905249877359 ], [ 6.701183880331826, 43.806164772386296 ], [ 6.692284953787578, 43.845199197385 ], [ 6.707380168759755, 43.871050028835725 ], [ 6.759806928946603, 43.877564921883618 ], [ 6.80942118893671, 43.912402569722815 ], [ 6.893049121719571, 43.892473369250581 ], [ 6.942311818735448, 43.897241436243291 ], [ 6.858222459998501, 43.955468977411329 ], [ 6.818649704420295, 44.006720199577501 ], [ 6.757609663055518, 44.037251207277393 ], [ 6.745414839023567, 44.099829333956563 ], [ 6.695031535476971, 44.153091055307925 ], [ 6.743327436112281, 44.263075189967992 ], [ 6.799006149314323, 44.318380367959605 ], [ 6.878434882973598, 44.35462280714269 ], [ 6.982808471000055, 44.241745098000067 ], [ 7.046060425000121, 44.240298157000055 ], [ 7.144969116000084, 44.207225240000085 ], [ 7.309300171000132, 44.147487284000064 ], [ 7.331004272000143, 44.125266419000113 ], [ 7.583598674000086, 44.160716451000056 ], [ 7.624733114000065, 44.180095113 ], [ 7.655635620000055, 44.176064352000097 ], [ 7.64188968900001, 44.143559876000083 ], [ 7.687931964188806, 44.09079857219632 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-04", "NAME_1": "Alpes-de-Haute-Provence" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.938299759716933, 44.657969781048649 ], [ 6.945601441000122, 44.625442607000096 ], [ 6.835737345000069, 44.534026998000073 ], [ 6.861265503000112, 44.474909160000024 ], [ 6.917799519000084, 44.436306864000031 ], [ 6.877181844000035, 44.414396057000076 ], [ 6.866123088000052, 44.372124736000089 ], [ 6.878434882973598, 44.35462280714269 ], [ 6.799006149314323, 44.318380367959605 ], [ 6.743327436112281, 44.263075189967992 ], [ 6.695031535476971, 44.153091055307925 ], [ 6.745414839023567, 44.099829333956563 ], [ 6.757609663055518, 44.037251207277393 ], [ 6.818649704420295, 44.006720199577501 ], [ 6.858222459998501, 43.955468977411329 ], [ 6.942311818735448, 43.897241436243291 ], [ 6.893049121719571, 43.892473369250581 ], [ 6.80942118893671, 43.912402569722815 ], [ 6.759806928946603, 43.877564921883618 ], [ 6.700041301564795, 43.863886942228589 ], [ 6.701183880331826, 43.806164772386296 ], [ 6.63638651372662, 43.788905249877359 ], [ 6.616918740107735, 43.806538307596782 ], [ 6.549770300159196, 43.7910146250249 ], [ 6.5239084825904, 43.802330543419828 ], [ 6.427338654455355, 43.793838111339767 ], [ 6.385986113568265, 43.741048802959881 ], [ 6.354455351133538, 43.736423559099933 ], [ 6.243603296055255, 43.801067115554929 ], [ 6.140705342477588, 43.737544163832069 ], [ 6.073381121941225, 43.715571506719641 ], [ 6.028183365969539, 43.671582248022332 ], [ 5.929548108058725, 43.749475316532596 ], [ 5.855324472246593, 43.725459202779973 ], [ 5.778552008468409, 43.758220434725274 ], [ 5.753775092546448, 43.732054942181833 ], [ 5.662756105809649, 43.812119362618489 ], [ 5.609406494614007, 43.835003884621528 ], [ 5.544740965023493, 43.817612526896596 ], [ 5.589367431162032, 43.90429465897131 ], [ 5.576799071020275, 43.936187970498395 ], [ 5.507958736506453, 43.957798078518465 ], [ 5.544037839974351, 44.04984153965529 ], [ 5.502575436107463, 44.063442613785583 ], [ 5.506156978961371, 44.121780018832794 ], [ 5.603781494220584, 44.181029288770617 ], [ 5.664140383671736, 44.148828359641072 ], [ 5.678884036569002, 44.190653312600261 ], [ 5.805116951086404, 44.21070336217042 ], [ 5.889975352480519, 44.191444328393004 ], [ 5.900763927313392, 44.199870841965776 ], [ 5.891425547950689, 44.21366967071873 ], [ 5.823090584762667, 44.276522456646035 ], [ 5.835263436558364, 44.300472652790688 ], [ 5.914299083835658, 44.26850243663813 ], [ 5.919572522154169, 44.305976803186866 ], [ 5.903818126605245, 44.325389645315852 ], [ 5.966066664345078, 44.405710693593619 ], [ 6.073490984921023, 44.467596682241094 ], [ 6.134900482171531, 44.472146700509825 ], [ 6.162458273630421, 44.434417969713479 ], [ 6.236022729765182, 44.384748779132849 ], [ 6.269706812719221, 44.422245117917839 ], [ 6.258698511027433, 44.467794435964436 ], [ 6.324704373108318, 44.493601322043332 ], [ 6.365243925966411, 44.534690190699735 ], [ 6.467438753595616, 44.458939455691279 ], [ 6.61291971667157, 44.446755616878193 ], [ 6.630366005886458, 44.452402589507869 ], [ 6.684001262448305, 44.540600835560099 ], [ 6.713730267337951, 44.543391362621264 ], [ 6.919020802268221, 44.66092310521708 ], [ 6.938299759716933, 44.657969781048649 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-05", "NAME_1": "Hautes-Alpes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.03881884212556, 44.712119593556416 ], [ 7.055155476000095, 44.684870504000074 ], [ 6.982808471000055, 44.692156881000031 ], [ 6.938299759716933, 44.657969781048649 ], [ 6.791930953450731, 44.599498542523691 ], [ 6.713730267337951, 44.543391362621264 ], [ 6.684001262448305, 44.540600835560099 ], [ 6.630366005886458, 44.452402589507869 ], [ 6.61291971667157, 44.446755616878193 ], [ 6.467438753595616, 44.458939455691279 ], [ 6.365243925966411, 44.534690190699735 ], [ 6.324704373108318, 44.493601322043332 ], [ 6.258698511027433, 44.467794435964436 ], [ 6.269706812719221, 44.422245117917839 ], [ 6.236022729765182, 44.384748779132849 ], [ 6.162458273630421, 44.434417969713479 ], [ 6.134900482171531, 44.472146700509825 ], [ 6.073490984921023, 44.467596682241094 ], [ 5.966066664345078, 44.405710693593619 ], [ 5.908586193597955, 44.337035153549493 ], [ 5.914299083835658, 44.26850243663813 ], [ 5.835263436558364, 44.300472652790688 ], [ 5.828078377714974, 44.263196039965237 ], [ 5.891425547950689, 44.21366967071873 ], [ 5.900763927313392, 44.199870841965776 ], [ 5.889975352480519, 44.191444328393004 ], [ 5.805116951086404, 44.21070336217042 ], [ 5.678884036569002, 44.190653312600261 ], [ 5.683981692501106, 44.259416742488668 ], [ 5.623161377995189, 44.30334008447727 ], [ 5.627028565316039, 44.329674314118279 ], [ 5.496708736618871, 44.348197263592795 ], [ 5.459289301560034, 44.370268797566951 ], [ 5.426725823338074, 44.419355713995003 ], [ 5.500422115588151, 44.43097924909307 ], [ 5.468627680922737, 44.464883058906025 ], [ 5.472363032128214, 44.489327640258352 ], [ 5.595563720489281, 44.47063989541482 ], [ 5.651264405927577, 44.495941410167916 ], [ 5.658229738811372, 44.513717289221518 ], [ 5.608110107495463, 44.555838872765719 ], [ 5.657922121208912, 44.64141138622648 ], [ 5.800546638716412, 44.658561044856299 ], [ 5.829550545421341, 44.68342310679094 ], [ 5.812038338598427, 44.712053478285384 ], [ 5.845041268739521, 44.749670667966939 ], [ 5.957848890613775, 44.765172377403246 ], [ 5.972482680531243, 44.77680689951876 ], [ 5.968461683959561, 44.801240493853697 ], [ 5.996366958168551, 44.821971695337425 ], [ 6.077336200005618, 44.829870866247461 ], [ 6.138530049722021, 44.857600358969364 ], [ 6.296139919221901, 44.868015398591751 ], [ 6.356806425376192, 44.857886003436306 ], [ 6.369726347592859, 44.91193874058041 ], [ 6.335405057197647, 44.953587912052456 ], [ 6.325319607413917, 44.999477806055893 ], [ 6.246218042528653, 45.001488304341763 ], [ 6.222289818620197, 45.017253686008758 ], [ 6.239494408739972, 45.099673122416618 ], [ 6.266366968960426, 45.1247878695645 ], [ 6.357114042978708, 45.107835964658022 ], [ 6.393742462244802, 45.070427515717256 ], [ 6.459374788215882, 45.053585473790577 ], [ 6.495541782427324, 45.070844996299513 ], [ 6.510900669630189, 45.100683865068277 ], [ 6.629385185000046, 45.123545113000048 ], [ 6.602728312000067, 45.103449606000098 ], [ 6.636576375000061, 45.074459127000111 ], [ 6.651665894000075, 45.035650126000078 ], [ 6.723496134000072, 45.013377584000025 ], [ 6.727940307000097, 44.928731588000019 ], [ 6.745406941000027, 44.907802633000031 ], [ 6.847106161000056, 44.859071758000098 ], [ 6.932682332000127, 44.8616555790001 ], [ 6.982808471000055, 44.846979472 ], [ 7.004925985000057, 44.827962545000034 ], [ 6.998414754000066, 44.793752747000056 ], [ 7.03881884212556, 44.712119593556416 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-73", "NAME_1": "Savoie" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.075368543000081, 45.466285856000056 ], [ 7.096806681000118, 45.435419007000078 ], [ 7.160678752000081, 45.410924378000047 ], [ 7.092569213000075, 45.323952942000105 ], [ 7.108382202000143, 45.259202373 ], [ 7.055465536000071, 45.213675436000031 ], [ 7.029730672000085, 45.228196513000071 ], [ 6.958727254000081, 45.209799703000087 ], [ 6.913768758000089, 45.170163880000118 ], [ 6.873461141000121, 45.165926412000076 ], [ 6.876665079000105, 45.141225078000062 ], [ 6.84410892700015, 45.130114645000035 ], [ 6.736415242000078, 45.157348125000041 ], [ 6.52004129526955, 45.104012721809625 ], [ 6.480820101766255, 45.057892114829201 ], [ 6.459374788215882, 45.053585473790577 ], [ 6.393742462244802, 45.070427515717256 ], [ 6.357114042978708, 45.107835964658022 ], [ 6.282802516422976, 45.115284694832781 ], [ 6.256633081251664, 45.142981229200359 ], [ 6.160063254015938, 45.154956327272657 ], [ 6.132883077092345, 45.280222445409493 ], [ 6.189528586674896, 45.329924596143201 ], [ 6.194758079621693, 45.352226843094286 ], [ 6.168874288917266, 45.400105263147339 ], [ 6.125412373782012, 45.435085733219978 ], [ 6.045036394014346, 45.443545206046394 ], [ 5.948224866784187, 45.489501018557121 ], [ 5.915287854251062, 45.47649320469759 ], [ 5.910805431725294, 45.3941726451514 ], [ 5.756205816145496, 45.439326455751313 ], [ 5.600485595833561, 45.655581347001544 ], [ 5.640871339440764, 45.645770555566685 ], [ 5.762376969421609, 45.724231573828035 ], [ 5.840352601091638, 45.938766102473608 ], [ 5.867277598082694, 45.922637020581988 ], [ 5.883625254801643, 45.835317681965421 ], [ 5.969538344219188, 45.804742729793134 ], [ 5.992763443078445, 45.757699270904595 ], [ 6.049430925796571, 45.7419338892376 ], [ 6.136838155156738, 45.759072561749292 ], [ 6.2544358162599, 45.683563525836007 ], [ 6.330241482758197, 45.703877246737534 ], [ 6.367946562284033, 45.770520316259535 ], [ 6.416440216642684, 45.797447807070625 ], [ 6.462780550482023, 45.86698028051552 ], [ 6.522875767702487, 45.908442684382351 ], [ 6.56220682418558, 45.885481257753838 ], [ 6.541838170894835, 45.843667291812039 ], [ 6.552912390194649, 45.825638726645877 ], [ 6.602724403908098, 45.796645805159756 ], [ 6.680024211248337, 45.780342093812578 ], [ 6.697778118065685, 45.758490285798018 ], [ 6.689538371198864, 45.728146046602717 ], [ 6.783868043959269, 45.764994751134779 ], [ 6.816100301000034, 45.696850077000121 ], [ 6.963378133000049, 45.640729472000075 ], [ 6.952939494000105, 45.594272360000062 ], [ 6.982808471000055, 45.511124980000048 ], [ 7.075368543000081, 45.466285856000056 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-74", "NAME_1": "Haute-Savoie" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.022082560000115, 45.92525990899999 ], [ 6.949012085000049, 45.857822164000069 ], [ 6.873461141000121, 45.844799704000124 ], [ 6.864440509042115, 45.826890588930986 ], [ 6.843355552194634, 45.838642859960729 ], [ 6.800804077000095, 45.826454570000053 ], [ 6.783868043959269, 45.764994751134779 ], [ 6.711291302351697, 45.727541798415245 ], [ 6.689538371198864, 45.728146046602717 ], [ 6.697778118065685, 45.758490285798018 ], [ 6.680024211248337, 45.780342093812578 ], [ 6.602724403908098, 45.796645805159756 ], [ 6.552912390194649, 45.825638726645877 ], [ 6.541838170894835, 45.843667291812039 ], [ 6.56220682418558, 45.885481257753838 ], [ 6.512262974356759, 45.906596981465498 ], [ 6.462780550482023, 45.86698028051552 ], [ 6.416440216642684, 45.797447807070625 ], [ 6.367946562284033, 45.770520316259535 ], [ 6.330241482758197, 45.703877246737534 ], [ 6.2544358162599, 45.683563525836007 ], [ 6.136838155156738, 45.759072561749292 ], [ 6.049430925796571, 45.7419338892376 ], [ 6.00320045493703, 45.752140188119142 ], [ 5.969538344219188, 45.804742729793134 ], [ 5.883625254801643, 45.835317681965421 ], [ 5.867277598082694, 45.922637020581988 ], [ 5.840352601091638, 45.938766102473608 ], [ 5.825199959910208, 46.095287174463522 ], [ 5.845942148411382, 46.111030582994999 ], [ 5.871584239121319, 46.093331607667551 ], [ 5.913727794901774, 46.128246159232845 ], [ 5.982921183000144, 46.14044057200006 ], [ 6.140327596000134, 46.150207418000022 ], [ 6.281197550000115, 46.240072734000123 ], [ 6.276029907000094, 46.26312042299999 ], [ 6.237582642000064, 46.267926331000083 ], [ 6.214121541000083, 46.315468649000096 ], [ 6.269105265000121, 46.375025737000087 ], [ 6.301558065000052, 46.394481914000082 ], [ 6.397676229000069, 46.408176168000082 ], [ 6.482942342000115, 46.448587138000065 ], [ 6.613683716000139, 46.455899354000067 ], [ 6.787058146000049, 46.414170635000019 ], [ 6.782097209000113, 46.378462220000117 ], [ 6.750367879000095, 46.345518494000075 ], [ 6.827675822000089, 46.269476624 ], [ 6.765664103000034, 46.151602681000085 ], [ 6.774345743000083, 46.134807841000011 ], [ 6.869223673000079, 46.1123285930001 ], [ 6.848553100000061, 46.085043437000095 ], [ 6.850930216000108, 46.049645081000065 ], [ 6.91511234500004, 46.0486115530001 ], [ 6.987666056000052, 45.993111064000018 ], [ 7.022082560000115, 45.92525990899999 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-64", "NAME_1": "Pyrénées-Atlantiques" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.747356322999906, 43.291002096000042 ], [ -1.755779581999889, 43.318545634000102 ], [ -1.796914021999953, 43.341128235000056 ], [ -1.794074744885912, 43.386015332062847 ], [ -1.775502081999946, 43.376166083000044 ], [ -1.661000128999945, 43.399684963000084 ], [ -1.596750454999949, 43.442531643000052 ], [ -1.51398678299995, 43.538641669000071 ], [ -1.440663354230423, 43.499085903391688 ], [ -1.316638691722233, 43.508698940203885 ], [ -1.242909441117831, 43.530913297310804 ], [ -1.204127701332368, 43.564278776544256 ], [ -1.172981459326877, 43.551095182096958 ], [ -1.171718031461978, 43.505172328839876 ], [ -1.153997083898332, 43.489989223124098 ], [ -1.081102793559069, 43.522893277302899 ], [ -1.005308113178899, 43.50534811032702 ], [ -0.983346442184597, 43.523376675493182 ], [ -0.983752936648727, 43.545228482608366 ], [ -0.923844487033477, 43.533747769743741 ], [ -0.780187255537442, 43.569343474122036 ], [ -0.715345944459784, 43.547469693871278 ], [ -0.672048822894851, 43.557258513069883 ], [ -0.562251455839998, 43.543108121342698 ], [ -0.460441149539406, 43.592063201655435 ], [ -0.446851060627978, 43.58848165880147 ], [ -0.450817125709818, 43.559730436410462 ], [ -0.434008043036783, 43.552962858149385 ], [ -0.202954567399388, 43.588998016245455 ], [ -0.089652561216724, 43.564520475639426 ], [ -0.017769013529175, 43.467884729896355 ], [ -0.01981247016937, 43.45398702428173 ], [ -0.049684297292515, 43.449856164730193 ], [ -0.049014131496961, 43.42117086084653 ], [ 0.007005157661865, 43.428564660430709 ], [ 0.023231965282946, 43.339168905020927 ], [ -0.027513886456688, 43.31030781965012 ], [ -0.027206269753549, 43.247927446694291 ], [ -0.066350557732051, 43.211474808015964 ], [ -0.085928195230053, 43.165947463104942 ], [ -0.110944065516208, 43.16476093896614 ], [ -0.138871312860829, 43.124990429664592 ], [ -0.191407936027417, 43.091844676390679 ], [ -0.189617164600463, 43.039417917103151 ], [ -0.246053934341603, 43.030497018322706 ], [ -0.288318340119304, 42.994692573203679 ], [ -0.284187480567766, 42.940760686956139 ], [ -0.317025616239221, 42.893871036419171 ], [ -0.305138881054518, 42.830811870471393 ], [ -0.322792113999952, 42.842502340000081 ], [ -0.423922892999911, 42.790670878000086 ], [ -0.533890339999914, 42.80800832200002 ], [ -0.535647338999894, 42.784211324000054 ], [ -0.56903031399986, 42.772635804000103 ], [ -0.648301961999891, 42.849788717000067 ], [ -0.740286010999881, 42.884799499000067 ], [ -0.759664672999861, 42.946501160000039 ], [ -0.943219360999905, 42.947896423000103 ], [ -1.028485473999893, 42.98670542400005 ], [ -1.149925088999879, 43.00572235200012 ], [ -1.293688923999952, 43.055202535000078 ], [ -1.315082966999853, 43.082875265 ], [ -1.286040811999953, 43.109178569000036 ], [ -1.348259236999866, 43.093081360000056 ], [ -1.366139282999939, 43.033317567000026 ], [ -1.457141478999858, 43.04507395500012 ], [ -1.487837279999894, 43.081815898000102 ], [ -1.425773884999927, 43.135275167000131 ], [ -1.399677286999946, 43.206743673000048 ], [ -1.403501342999959, 43.243330587000074 ], [ -1.432233438999987, 43.265008850000086 ], [ -1.559047403999926, 43.284077454000069 ], [ -1.587572794999886, 43.251598817000044 ], [ -1.621885945999907, 43.246999613000085 ], [ -1.654907185999889, 43.297539164000014 ], [ -1.747356322999906, 43.291002096000042 ] ], [ [ -0.09680466080647, 43.327787068118653 ], [ -0.066185763262354, 43.351363729952141 ], [ -0.075524142625113, 43.384146934133696 ], [ -0.111921848914221, 43.369491171979973 ], [ -0.11228439800658, 43.338476766089855 ], [ -0.09680466080647, 43.327787068118653 ] ], [ [ -0.117975316008028, 43.247564897601933 ], [ -0.080500949459235, 43.272152300288383 ], [ -0.113635715715702, 43.305265095207972 ], [ -0.138618626748212, 43.271789752095344 ], [ -0.117975316008028, 43.247564897601933 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-31", "NAME_1": "Haute-Garonne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.776313924000078, 42.832451274000036 ], [ 0.706757446000097, 42.846584779000082 ], [ 0.656321248000097, 42.838419902000069 ], [ 0.639681437000149, 42.774677023000052 ], [ 0.650740194000065, 42.76338572300007 ], [ 0.633480265000088, 42.744782206000124 ], [ 0.666449829000044, 42.714758200000077 ], [ 0.656734660000097, 42.687989808000097 ], [ 0.46692711609353, 42.690444434563005 ], [ 0.455763720019661, 42.765265074523541 ], [ 0.464464891941191, 42.850486025010014 ], [ 0.47703325208289, 42.868965029112758 ], [ 0.549938527640904, 42.867119326195905 ], [ 0.644904351954267, 42.956877630698102 ], [ 0.605858939938116, 43.031507760075044 ], [ 0.531085988327675, 43.003459663632555 ], [ 0.562946341500435, 43.073827098241964 ], [ 0.441635301427993, 43.131076856012044 ], [ 0.52466997214151, 43.202696731468961 ], [ 0.569318411415566, 43.221549271681511 ], [ 0.566769583449513, 43.252398882202613 ], [ 0.615307183179937, 43.291345416457773 ], [ 0.606715874238205, 43.310934040073846 ], [ 0.663317438449042, 43.32391988079786 ], [ 0.782145568163457, 43.412359825945202 ], [ 0.911872135690487, 43.407262169113778 ], [ 0.999586982653113, 43.359131063847485 ], [ 1.025338937242168, 43.377478232734234 ], [ 1.035182687031352, 43.475476283203875 ], [ 1.054914132880924, 43.520388393809299 ], [ 1.071503489594363, 43.537142544992435 ], [ 1.132741284682538, 43.536494351433134 ], [ 1.177301833212994, 43.561675017088362 ], [ 1.192331130577202, 43.59878683454474 ], [ 1.067350656907252, 43.669967257183146 ], [ 0.953927801626719, 43.787334205309321 ], [ 1.164843336950412, 43.815634987864371 ], [ 1.221598709512818, 43.773777075651481 ], [ 1.24616414086239, 43.774337378467237 ], [ 1.358356527531726, 43.821314919747749 ], [ 1.299557697429805, 43.850813211660352 ], [ 1.373649497126564, 43.883947977916819 ], [ 1.440138757397733, 43.878740459004973 ], [ 1.48393026327102, 43.907326885127645 ], [ 1.510934658707527, 43.899493633624274 ], [ 1.55569296096138, 43.91832420070125 ], [ 1.548947354936445, 43.884079814032191 ], [ 1.580324309918979, 43.8143276146277 ], [ 1.643803316270009, 43.792420875123241 ], [ 1.681486422660271, 43.710243137810551 ], [ 1.726310643421471, 43.673164278708498 ], [ 1.728859471387466, 43.657464815548792 ], [ 1.687814548102892, 43.630779023832872 ], [ 1.821144631619461, 43.578626921994839 ], [ 1.950036237981976, 43.481958216998066 ], [ 1.982863387535303, 43.485792445964591 ], [ 2.011317978441923, 43.511006069974144 ], [ 2.053131944383722, 43.486111048785858 ], [ 2.026852647131932, 43.455283411400274 ], [ 2.031686631732669, 43.422566124826801 ], [ 1.883854594414004, 43.392804160683454 ], [ 1.86643027743537, 43.419731652393807 ], [ 1.840854104333459, 43.421126915474758 ], [ 1.807301857494735, 43.380323691285298 ], [ 1.803280860922996, 43.335829061262132 ], [ 1.730221776114092, 43.322733357558377 ], [ 1.702558201000159, 43.266736040635749 ], [ 1.675268161096767, 43.274481402294839 ], [ 1.647340913752146, 43.247949418930489 ], [ 1.57423788357147, 43.263132524646267 ], [ 1.515219326610634, 43.296728717756082 ], [ 1.488544521012841, 43.279831744339504 ], [ 1.504562587893133, 43.249476519026132 ], [ 1.490016688719209, 43.226635941495488 ], [ 1.440929773190476, 43.212968948857906 ], [ 1.417067467789423, 43.2263722692648 ], [ 1.419836022614334, 43.261396684709212 ], [ 1.373781333241936, 43.296465045525395 ], [ 1.325771077073512, 43.30844014359775 ], [ 1.30566609601351, 43.299046832745091 ], [ 1.301337482738631, 43.27281148086513 ], [ 1.315509846702071, 43.259836626259244 ], [ 1.382306723676322, 43.231316117744598 ], [ 1.349391683379451, 43.204300735290701 ], [ 1.236584062404518, 43.184800002418172 ], [ 1.220456131645165, 43.169572951330622 ], [ 1.290109455087247, 43.123452343450879 ], [ 1.24269246098828, 43.088779490980698 ], [ 1.137025952585645, 43.154027296522486 ], [ 1.065065501171944, 43.144106641208509 ], [ 0.987765692932385, 43.081001170067907 ], [ 0.992248115458153, 42.990309028438901 ], [ 0.956432684220999, 42.967127874951473 ], [ 0.886603580191036, 42.958987005845643 ], [ 0.869157290076885, 42.925006291407215 ], [ 0.837560609134812, 42.907329288315964 ], [ 0.856102336000077, 42.812762553000098 ], [ 0.776313924000078, 42.832451274000036 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-65", "NAME_1": "Hautes-Pyrénées" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.208354654999937, 42.783875427000041 ], [ -0.305138881054518, 42.830811870471393 ], [ -0.317025616239221, 42.893871036419171 ], [ -0.284187480567766, 42.940760686956139 ], [ -0.288318340119304, 42.994692573203679 ], [ -0.246053934341603, 43.030497018322706 ], [ -0.189617164600463, 43.039417917103151 ], [ -0.191407936027417, 43.091844676390679 ], [ -0.138871312860829, 43.124990429664592 ], [ -0.110944065516208, 43.16476093896614 ], [ -0.085928195230053, 43.165947463104942 ], [ -0.066350557732051, 43.211474808015964 ], [ -0.027206269753549, 43.247927446694291 ], [ -0.027513886456688, 43.31030781965012 ], [ 0.023231965282946, 43.339168905020927 ], [ 0.007005157661865, 43.428564660430709 ], [ -0.049014131496961, 43.42117086084653 ], [ -0.049684297292515, 43.449856164730193 ], [ -0.01981247016937, 43.45398702428173 ], [ -0.017769013529175, 43.467884729896355 ], [ -0.047278291559905, 43.522223110608024 ], [ -0.109680637651309, 43.574803679146441 ], [ -0.08915817600905, 43.591404021978008 ], [ -0.005859833064846, 43.608696502841326 ], [ 0.024550324637744, 43.535549527288822 ], [ 0.123603062231552, 43.504886684372934 ], [ 0.149618688151918, 43.45640401703173 ], [ 0.140236364316763, 43.419248253304204 ], [ 0.195717322896144, 43.371611533245641 ], [ 0.308722698493739, 43.377566123477777 ], [ 0.35108598113311, 43.347782186198913 ], [ 0.387472701304091, 43.362756552073222 ], [ 0.40929155006495, 43.334774373238702 ], [ 0.606715874238205, 43.310934040073846 ], [ 0.615307183179937, 43.291345416457773 ], [ 0.566769583449513, 43.252398882202613 ], [ 0.569318411415566, 43.221549271681511 ], [ 0.52466997214151, 43.202696731468961 ], [ 0.441635301427993, 43.131076856012044 ], [ 0.562946341500435, 43.073827098241964 ], [ 0.531085988327675, 43.003459663632555 ], [ 0.605858939938116, 43.031507760075044 ], [ 0.644904351954267, 42.956877630698102 ], [ 0.549938527640904, 42.867119326195905 ], [ 0.47703325208289, 42.868965029112758 ], [ 0.464464891941191, 42.850486025010014 ], [ 0.455763720019661, 42.765265074523541 ], [ 0.46692711609353, 42.690444434563005 ], [ 0.389283285000118, 42.685147604000022 ], [ 0.354169148000096, 42.717497050000119 ], [ 0.275388428000099, 42.668688660000058 ], [ 0.238362264000045, 42.710365703000079 ], [ 0.169167521000134, 42.726462911000041 ], [ -0.038933471999911, 42.685147604000022 ], [ -0.119031941999879, 42.716851095000052 ], [ -0.157789265999924, 42.760698547000047 ], [ -0.161406615999908, 42.79534759600007 ], [ -0.208354654999937, 42.783875427000041 ] ] ], [ [ [ -0.087356418463969, 43.38665181672792 ], [ -0.064021456624914, 43.359218954591086 ], [ -0.09680466080647, 43.327787068118653 ], [ -0.11228439800658, 43.338476766089855 ], [ -0.111921848914221, 43.369491171979973 ], [ -0.087356418463969, 43.38665181672792 ] ] ], [ [ [ -0.113635715715702, 43.305265095207972 ], [ -0.080500949459235, 43.272152300288383 ], [ -0.117975316008028, 43.247564897601933 ], [ -0.138618626748212, 43.271789752095344 ], [ -0.113635715715702, 43.305265095207972 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-09", "NAME_1": "Ariège" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.921111287000116, 42.784366354000085 ], [ 0.856102336000077, 42.812762553000098 ], [ 0.837560609134812, 42.907329288315964 ], [ 0.869157290076885, 42.925006291407215 ], [ 0.886603580191036, 42.958987005845643 ], [ 0.956432684220999, 42.967127874951473 ], [ 0.992248115458153, 42.990309028438901 ], [ 0.996598700969287, 43.094690135841063 ], [ 1.038434640046603, 43.109499706346355 ], [ 1.065065501171944, 43.144106641208509 ], [ 1.130631909534998, 43.155213819761968 ], [ 1.24269246098828, 43.088779490980698 ], [ 1.290109455087247, 43.123452343450879 ], [ 1.220456131645165, 43.169572951330622 ], [ 1.236584062404518, 43.184800002418172 ], [ 1.349391683379451, 43.204300735290701 ], [ 1.382306723676322, 43.231316117744598 ], [ 1.315509846702071, 43.259836626259244 ], [ 1.301337482738631, 43.27281148086513 ], [ 1.30566609601351, 43.299046832745091 ], [ 1.325771077073512, 43.30844014359775 ], [ 1.373781333241936, 43.296465045525395 ], [ 1.419836022614334, 43.261396684709212 ], [ 1.417067467789423, 43.2263722692648 ], [ 1.440929773190476, 43.212968948857906 ], [ 1.490016688719209, 43.226635941495488 ], [ 1.504562587893133, 43.249476519026132 ], [ 1.488544521012841, 43.279831744339504 ], [ 1.515219326610634, 43.296728717756082 ], [ 1.630509857943593, 43.244873246503118 ], [ 1.675268161096767, 43.274481402294839 ], [ 1.702558201000159, 43.266736040635749 ], [ 1.696515720024422, 43.243851518632653 ], [ 1.719059666070734, 43.183415725455347 ], [ 1.77491416075992, 43.152203565841887 ], [ 1.94544395247641, 43.103808788344907 ], [ 1.960319441489048, 43.069102976621025 ], [ 1.942653424515925, 43.0458449194075 ], [ 1.973503035936346, 43.022773628899813 ], [ 1.992311629877804, 42.967347601810332 ], [ 1.941554792020042, 42.935058781937187 ], [ 1.974601668432229, 42.913404728545345 ], [ 1.985631942360214, 42.87306293030997 ], [ 1.894071880312993, 42.848189882257259 ], [ 1.865485453291001, 42.815890076265987 ], [ 1.910199810173083, 42.790621520766535 ], [ 1.9179561579503, 42.752147397684212 ], [ 1.973503035936346, 42.73083392114853 ], [ 2.075148546867922, 42.743907651716711 ], [ 2.168752066454715, 42.670057551115065 ], [ 2.154008413557449, 42.656445489967382 ], [ 1.994157332794657, 42.652874933231544 ], [ 1.962802351847074, 42.621761650479755 ], [ 1.956298444917309, 42.587033866519675 ], [ 1.92850303368806, 42.569181082840657 ], [ 1.872824320486018, 42.578980887258126 ], [ 1.761107147000132, 42.567646197 ], [ 1.713310995000086, 42.589546204000058 ], [ 1.721992635000049, 42.609855042000063 ], [ 1.608304484000143, 42.618123271000016 ], [ 1.543088827000133, 42.649361674000019 ], [ 1.466814412000105, 42.641455180000051 ], [ 1.451414835826029, 42.602051901673917 ], [ 1.42929732200011, 42.59538564100005 ], [ 1.361084432000069, 42.686723735000058 ], [ 1.338243449000061, 42.694449361000053 ], [ 1.342584269000042, 42.708660381000115 ], [ 1.151484823000118, 42.70672251399999 ], [ 1.089059692000149, 42.771318054000048 ], [ 0.950256795000143, 42.796122742000065 ], [ 0.921111287000116, 42.784366354000085 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-66", "NAME_1": "Pyrénées-Orientales" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.717091134804584, 42.539890071086553 ], [ 1.761107147000132, 42.567646197 ], [ 1.938302839004791, 42.571795828414736 ], [ 1.96761436331218, 42.629023613948618 ], [ 2.005649032676729, 42.656126886246795 ], [ 2.166074435786584, 42.663835145475559 ], [ 2.189450309584117, 42.652160822064275 ], [ 2.264684687148588, 42.708938167762199 ], [ 2.32256066624177, 42.708037288989658 ], [ 2.35116906549996, 42.730163754453656 ], [ 2.330910276088332, 42.82240496931388 ], [ 2.341193479595404, 42.837445252796158 ], [ 2.374987425529241, 42.847256044231017 ], [ 2.703962047910181, 42.834039491429337 ], [ 2.783920547095533, 42.889839053729304 ], [ 2.855309709575408, 42.913800235992085 ], [ 3.0462758278677, 42.837076341874791 ], [ 3.037608269000089, 42.683213609000063 ], [ 3.051849806000064, 42.554877020000049 ], [ 3.137380405000044, 42.52492910400008 ], [ 3.181569858000046, 42.43508535400008 ], [ 3.086147094000097, 42.427178854000047 ], [ 3.029613077000135, 42.46565195699999 ], [ 2.933701619000061, 42.470225322000019 ], [ 2.850812622000149, 42.44836619100009 ], [ 2.788594198000055, 42.412011821000092 ], [ 2.690408976000072, 42.406172384000016 ], [ 2.640282837000143, 42.372841085000076 ], [ 2.662193644000098, 42.339018861000071 ], [ 2.548092081000107, 42.352248027000073 ], [ 2.514812459000069, 42.325660503000037 ], [ 2.445566040000131, 42.351963806000086 ], [ 2.422518351000065, 42.383693136000019 ], [ 2.277410930000144, 42.428625794000126 ], [ 2.136954386000099, 42.416223450000061 ], [ 2.063263794000079, 42.35790659700011 ], [ 2.009210245000077, 42.347080383000062 ], [ 1.963734985000116, 42.367234192000055 ], [ 1.927458129000058, 42.436894023000079 ], [ 1.712174112944922, 42.493712260112716 ], [ 1.717091134804584, 42.539890071086553 ] ], [ [ 1.983372030000055, 42.44126068100006 ], [ 1.99949507600013, 42.443896180000067 ], [ 1.967972453000073, 42.485702413000027 ], [ 1.956603638000075, 42.481775005000074 ], [ 1.947508585000122, 42.451234233000079 ], [ 1.983372030000055, 42.44126068100006 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-67", "NAME_1": "Bas-Rhin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.644932350047895, 49.036295448176361 ], [ 7.773664591000113, 49.04811838799999 ], [ 7.931897827000114, 49.034837546000077 ], [ 8.090441121000083, 48.979182028000068 ], [ 8.200305216000032, 48.958563131000048 ], [ 8.090337769000143, 48.807512920000093 ], [ 8.038764689000061, 48.790769756000074 ], [ 8.017267293000117, 48.761830954000104 ], [ 7.970138387000105, 48.757283427000075 ], [ 7.959182983000119, 48.72136830700002 ], [ 7.852419475000119, 48.658684794000081 ], [ 7.810251506000071, 48.615018209000098 ], [ 7.801673217000115, 48.547580465000081 ], [ 7.813455444000027, 48.519468486000036 ], [ 7.776455119000076, 48.498177796000064 ], [ 7.738317912000099, 48.406607158000085 ], [ 7.75072025500009, 48.341365662000058 ], [ 7.702454467000081, 48.311186625000047 ], [ 7.687158243000113, 48.252921448000038 ], [ 7.613364298000079, 48.179205018000104 ], [ 7.581976474333016, 48.121353059320732 ], [ 7.543285963176629, 48.122901997828933 ], [ 7.51443586392395, 48.151477437833478 ], [ 7.470073069116836, 48.160156637518753 ], [ 7.466096018816188, 48.207277001032764 ], [ 7.303454410992288, 48.259956446432852 ], [ 7.291567202764156, 48.293508693271576 ], [ 7.208730285774038, 48.303407375449979 ], [ 7.188537413970494, 48.331005032955886 ], [ 7.109875301903628, 48.342266019860915 ], [ 7.127717099464576, 48.484099520676295 ], [ 7.14885479541249, 48.499886875478921 ], [ 7.088649715212171, 48.523441563277515 ], [ 7.193019836496262, 48.533527013061189 ], [ 7.262892885897941, 48.57579141883889 ], [ 7.300422183936632, 48.655640055044501 ], [ 7.264914370301938, 48.684885661743863 ], [ 7.317670719428122, 48.755890302895125 ], [ 7.216332825199686, 48.829839280358499 ], [ 7.204401672499159, 48.854173997831708 ], [ 7.183879210856901, 48.82462077442915 ], [ 7.103217586622293, 48.792529708279403 ], [ 7.074938777202817, 48.824543869803733 ], [ 7.096384089853871, 48.858030199034431 ], [ 6.9995505903874, 48.889363208645136 ], [ 6.977072561949171, 48.917532155084871 ], [ 7.042858697171141, 48.97734172693913 ], [ 7.086430476185512, 49.064551203475219 ], [ 7.119191708130813, 49.056388361233871 ], [ 7.145427060910094, 49.00990520516109 ], [ 7.284448062428112, 48.977473563054446 ], [ 7.301806461798776, 48.954742849402976 ], [ 7.341708806316319, 48.943371999518149 ], [ 7.490683421502695, 48.958851736718259 ], [ 7.564072096150312, 48.939647634430742 ], [ 7.644932350047895, 49.036295448176361 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-68", "NAME_1": "Haute-Rhin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.581976474333016, 48.121353059320732 ], [ 7.575743856000145, 48.053708802000088 ], [ 7.618945353000072, 48.00265248700002 ], [ 7.621115763000063, 47.971439922000044 ], [ 7.584942261000037, 47.940408224000109 ], [ 7.55900069100008, 47.882711488000027 ], [ 7.561997925000099, 47.839225769000038 ], [ 7.542877645000118, 47.829433086000066 ], [ 7.525927775000099, 47.783156840000075 ], [ 7.537813355000139, 47.731816304000048 ], [ 7.511871785000096, 47.707321676000092 ], [ 7.517866251000015, 47.675023906000021 ], [ 7.590316609000098, 47.607947896000084 ], [ 7.586028488000125, 47.584618544000065 ], [ 7.482726278000058, 47.542267151000047 ], [ 7.505463908000138, 47.523017681000013 ], [ 7.476938517000093, 47.514878643000102 ], [ 7.485826864000103, 47.495784200000102 ], [ 7.467430053000101, 47.481909078000044 ], [ 7.414306681000085, 47.490177307000081 ], [ 7.429292847000056, 47.465114238000083 ], [ 7.406348511000118, 47.438242493000061 ], [ 7.2380900470001, 47.416796773000058 ], [ 7.168326863000061, 47.44356516500001 ], [ 7.180832560000056, 47.48826528000005 ], [ 7.142169389000088, 47.48765096800004 ], [ 7.142900205180297, 47.540253049138869 ], [ 7.079750788667923, 47.590921997152407 ], [ 7.023434868924028, 47.60598425287094 ], [ 7.057887995434612, 47.666442019183819 ], [ 7.050307428245219, 47.71558386710177 ], [ 6.870153612699028, 47.802255012159037 ], [ 6.86892314408783, 47.818998177224103 ], [ 6.923854786868901, 47.843179086345742 ], [ 6.91495586032471, 47.875687632178483 ], [ 6.951760061077948, 47.956964490718633 ], [ 7.081157038766321, 48.104609760432083 ], [ 7.083156550934063, 48.164507223929206 ], [ 7.208730285774038, 48.303407375449979 ], [ 7.291567202764156, 48.293508693271576 ], [ 7.303454410992288, 48.259956446432852 ], [ 7.466096018816188, 48.207277001032764 ], [ 7.470073069116836, 48.160156637518753 ], [ 7.51443586392395, 48.151477437833478 ], [ 7.525927563806022, 48.127395405573509 ], [ 7.581976474333016, 48.121353059320732 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-90", "NAME_1": "Territoire de Belfort" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.053915242000073, 47.490384013000053 ], [ 6.973300008000137, 47.48909210300009 ], [ 6.990973348000068, 47.452220968000077 ], [ 6.939169949951677, 47.426844260931965 ], [ 6.914428516762598, 47.487002314804954 ], [ 6.919152638383537, 47.53415563757261 ], [ 6.89375224676877, 47.551755735139068 ], [ 6.824845993747601, 47.547613889469403 ], [ 6.807070114694, 47.56286291369247 ], [ 6.759081831661206, 47.722790898181358 ], [ 6.784767867742914, 47.779974738343469 ], [ 6.836011674099495, 47.824165475756104 ], [ 6.86892314408783, 47.818998177224103 ], [ 6.882721972840784, 47.791037971525157 ], [ 7.050307428245219, 47.71558386710177 ], [ 7.057887995434612, 47.666442019183819 ], [ 7.023434868924028, 47.60598425287094 ], [ 7.079750788667923, 47.590921997152407 ], [ 7.151491514122085, 47.519060421701056 ], [ 7.142169389000088, 47.48765096800004 ], [ 7.053915242000073, 47.490384013000053 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-25", "NAME_1": "Doubs" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.939169949951677, 47.426844260931965 ], [ 6.866639852000077, 47.354164937000021 ], [ 7.003995809000088, 47.368143413000027 ], [ 7.044303426000056, 47.34049652100002 ], [ 7.036551961000043, 47.329515279000034 ], [ 6.958623901000067, 47.290551250000036 ], [ 6.956246785000104, 47.245231018000126 ], [ 6.689699747000105, 47.078290304000078 ], [ 6.676263875000132, 47.062399801000041 ], [ 6.688252807000111, 47.043847961000026 ], [ 6.665411824000103, 47.021291199000089 ], [ 6.598697550000082, 46.986538798000041 ], [ 6.442634725000062, 46.944164124000039 ], [ 6.427751913000122, 46.909075827 ], [ 6.4467688390001, 46.857709453000027 ], [ 6.417106568000122, 46.802157288000032 ], [ 6.432609497000044, 46.785982565000054 ], [ 6.429198853000116, 46.76081614200011 ], [ 6.131852661000039, 46.595606588000024 ], [ 6.118416789000065, 46.583462626000127 ], [ 6.137978215924945, 46.557587778130546 ], [ 6.085246356134405, 46.579861167159095 ], [ 6.053781511307704, 46.616346764191803 ], [ 6.095617450385021, 46.648723474808492 ], [ 6.08335670784578, 46.691009852822447 ], [ 6.206645286950447, 46.766398039637807 ], [ 6.082016376254728, 46.846664155526355 ], [ 6.024755631467201, 46.858188814662014 ], [ 5.993510513499359, 46.895575290467264 ], [ 5.984216079508428, 46.949287450755207 ], [ 5.949740979862327, 46.984806250508029 ], [ 5.83735083946965, 47.008965187393471 ], [ 5.80397437321875, 47.031421242696183 ], [ 5.766928473370342, 47.014029884971194 ], [ 5.747878179434394, 47.024939308901935 ], [ 5.81524634624185, 47.143591657129264 ], [ 5.781584235524065, 47.189844100225002 ], [ 5.725180425036569, 47.217804306823268 ], [ 5.69883520927749, 47.265001574063376 ], [ 5.731574468087217, 47.264364367521523 ], [ 5.927087170836273, 47.343015493470205 ], [ 5.997399673056464, 47.336467641168667 ], [ 6.074523699808879, 47.355473989732843 ], [ 6.123083271775556, 47.393926139679593 ], [ 6.17357643830195, 47.397276969556458 ], [ 6.206403587855277, 47.431202752504987 ], [ 6.260917750054091, 47.428511102305492 ], [ 6.321100858018156, 47.501196651903911 ], [ 6.424548127394132, 47.517687130856359 ], [ 6.475810336577752, 47.495340938533445 ], [ 6.500463657771604, 47.510161495156865 ], [ 6.553835241203387, 47.490419063189165 ], [ 6.595934852511448, 47.538363400850244 ], [ 6.63388163113234, 47.532903195825781 ], [ 6.703425090695362, 47.557710325371204 ], [ 6.779758101655034, 47.542768918750596 ], [ 6.807070114694, 47.56286291369247 ], [ 6.824845993747601, 47.547613889469403 ], [ 6.89375224676877, 47.551755735139068 ], [ 6.919152638383537, 47.53415563757261 ], [ 6.914428516762598, 47.487002314804954 ], [ 6.939169949951677, 47.426844260931965 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-01", "NAME_1": "Ain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.118607036585445, 46.331771084867626 ], [ 6.089684692000077, 46.246377259000027 ], [ 5.958529907000127, 46.211960754000089 ], [ 5.982921183000144, 46.170826314000109 ], [ 5.958839966000113, 46.13046702100003 ], [ 5.913727794901774, 46.128246159232845 ], [ 5.871584239121319, 46.093331607667551 ], [ 5.845942148411382, 46.111030582994999 ], [ 5.825199959910208, 46.095287174463522 ], [ 5.840580819349327, 45.932931211106506 ], [ 5.772426560537326, 45.741530021693109 ], [ 5.640871339440764, 45.645770555566685 ], [ 5.600485595833561, 45.655581347001544 ], [ 5.547026120758858, 45.719554737660985 ], [ 5.450192621292445, 45.792987357680374 ], [ 5.430175530975987, 45.844260552982121 ], [ 5.36904759886761, 45.87995513422203 ], [ 5.333495839861087, 45.867991023167178 ], [ 5.272851305942993, 45.799820854448853 ], [ 5.239167222988954, 45.785659476603541 ], [ 5.118405499614084, 45.826605523026444 ], [ 4.91689426126112, 45.81134551268525 ], [ 4.909093968112131, 45.87416533935891 ], [ 4.845944551599757, 45.909673152993605 ], [ 4.820060760895387, 45.906564022211853 ], [ 4.784421111145377, 45.944774473063433 ], [ 4.748539762300197, 45.956903379487358 ], [ 4.749023160490481, 46.059438783972666 ], [ 4.79457247943634, 46.1514382988384 ], [ 4.815182831822199, 46.250556954939498 ], [ 4.872751193312922, 46.337590649988499 ], [ 4.946601293015249, 46.507186603678804 ], [ 5.041435281213239, 46.490904864567824 ], [ 5.155319563347177, 46.511218586368614 ], [ 5.240375718464634, 46.4687124814958 ], [ 5.310973866051086, 46.455353105561358 ], [ 5.320268300042017, 46.408386551298292 ], [ 5.36388402442816, 46.391401687138114 ], [ 5.391789298637207, 46.346918043233075 ], [ 5.46911107911302, 46.320298169125181 ], [ 5.469880121770188, 46.276869212344252 ], [ 5.509870357930652, 46.260686350094943 ], [ 5.595409912137711, 46.300017406578036 ], [ 5.647858644560813, 46.344039624529046 ], [ 5.697824466625832, 46.312113353748259 ], [ 5.721686772026885, 46.273606272311611 ], [ 5.871913828960032, 46.2719033916282 ], [ 6.059013168023284, 46.417385842182853 ], [ 6.135056600000098, 46.370400696000033 ], [ 6.118607036585445, 46.331771084867626 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-39", "NAME_1": "Jura" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.137978215924945, 46.557587778130546 ], [ 6.060229126000081, 46.46502024400003 ], [ 6.059013168023284, 46.417385842182853 ], [ 5.880922618484021, 46.275473948363981 ], [ 5.721686772026885, 46.273606272311611 ], [ 5.697824466625832, 46.312113353748259 ], [ 5.647858644560813, 46.344039624529046 ], [ 5.552717039659626, 46.279659739405417 ], [ 5.509870357930652, 46.260686350094943 ], [ 5.48258031802726, 46.266168528254923 ], [ 5.46911107911302, 46.320298169125181 ], [ 5.382956290600305, 46.352334302885765 ], [ 5.36388402442816, 46.391401687138114 ], [ 5.311281482754225, 46.41985627804479 ], [ 5.310973866051086, 46.455353105561358 ], [ 5.424550530582508, 46.491014728446942 ], [ 5.361093496467674, 46.546561605533668 ], [ 5.368849845144211, 46.576224692815288 ], [ 5.406884514508704, 46.596582359088586 ], [ 5.424396722230938, 46.643768640210567 ], [ 5.394272208995233, 46.727275723895502 ], [ 5.370409903594179, 46.744689053856746 ], [ 5.386362051967126, 46.77140780572563 ], [ 5.350239004026776, 46.80970614642149 ], [ 5.437118889824887, 46.828097260680011 ], [ 5.458344477415665, 46.856266207119745 ], [ 5.330199940574801, 46.903133884521139 ], [ 5.250153551545168, 46.980961036322753 ], [ 5.306623279640633, 47.006998634479373 ], [ 5.306777087992202, 47.055986673146435 ], [ 5.404357658778906, 47.098569682644722 ], [ 5.493918208658386, 47.202544296482074 ], [ 5.521713619887635, 47.289259387810489 ], [ 5.599958252271506, 47.260848742275584 ], [ 5.69883520927749, 47.265001574063376 ], [ 5.725180425036569, 47.217804306823268 ], [ 5.781584235524065, 47.189844100225002 ], [ 5.81524634624185, 47.143591657129264 ], [ 5.777892828790982, 47.091868022890935 ], [ 5.775695562899898, 47.058293802916637 ], [ 5.747570561831935, 47.032772561304625 ], [ 5.752228765844848, 47.018863869571874 ], [ 5.80397437321875, 47.031421242696183 ], [ 5.83735083946965, 47.008965187393471 ], [ 5.949740979862327, 46.984806250508029 ], [ 5.984216079508428, 46.949287450755207 ], [ 5.993510513499359, 46.895575290467264 ], [ 6.024755631467201, 46.858188814662014 ], [ 6.082016376254728, 46.846664155526355 ], [ 6.206645286950447, 46.766398039637807 ], [ 6.08335670784578, 46.691009852822447 ], [ 6.095617450385021, 46.648723474808492 ], [ 6.053781511307704, 46.616346764191803 ], [ 6.085246356134405, 46.579861167159095 ], [ 6.137978215924945, 46.557587778130546 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-83", "NAME_1": "Var" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.933184539115985, 43.480345841348736 ], [ 6.894027990000041, 43.427628415000072 ], [ 6.857987506000086, 43.436175765000087 ], [ 6.860136328000067, 43.415867890000072 ], [ 6.746501343000091, 43.417906118000076 ], [ 6.731146285000079, 43.407846721000055 ], [ 6.717837534000068, 43.350604247000035 ], [ 6.674571160000085, 43.346380927000041 ], [ 6.661306186000047, 43.322333075000074 ], [ 6.597242936000043, 43.284007286000076 ], [ 6.590891640000052, 43.268897951000042 ], [ 6.611672016000057, 43.264288237000073 ], [ 6.693373608000059, 43.272972798000069 ], [ 6.668355527000074, 43.239535642000078 ], [ 6.679800772000078, 43.201552814000081 ], [ 6.609873894000089, 43.173407294000071 ], [ 6.593272332000083, 43.187730210000041 ], [ 6.53991191700004, 43.182204009000088 ], [ 6.505683047000048, 43.150971264000077 ], [ 6.401678985000046, 43.146938167000087 ], [ 6.36608020500006, 43.118634922000069 ], [ 6.37537147200004, 43.090841114000057 ], [ 6.28037394100005, 43.118665523000061 ], [ 6.193198227000039, 43.108773327000051 ], [ 6.153168165000068, 43.071966864000046 ], [ 6.152767707000066, 43.048107306000077 ], [ 6.185420303000058, 43.045443635000083 ], [ 6.180072448000089, 43.035922138000046 ], [ 6.088517320000051, 43.034848587000056 ], [ 6.132065822000072, 43.052638336000086 ], [ 6.129087889000061, 43.07136218800008 ], [ 6.10966232800007, 43.084315665000076 ], [ 6.027008490000071, 43.078195102000052 ], [ 6.016520033000063, 43.098936371000036 ], [ 5.934092644000089, 43.11359284100007 ], [ 5.940928582000083, 43.134019273000035 ], [ 5.879405144000089, 43.120428778000075 ], [ 5.951378968000085, 43.07997756900005 ], [ 5.940288036000084, 43.070909717000063 ], [ 5.875336134000065, 43.068793036000045 ], [ 5.856605081000055, 43.044828515000063 ], [ 5.818960387000061, 43.053468984000062 ], [ 5.781873138000037, 43.07911819900005 ], [ 5.818085226000051, 43.099089592000041 ], [ 5.811464562000083, 43.106725482000058 ], [ 5.776126699000088, 43.130811081000047 ], [ 5.696298672000069, 43.146875111000043 ], [ 5.672188786100056, 43.180416012612682 ], [ 5.691891849529213, 43.23572163564495 ], [ 5.761017828509978, 43.278634234981951 ], [ 5.748185797036911, 43.298684284552053 ], [ 5.688288333539731, 43.322546589953163 ], [ 5.700900639053259, 43.358537801778084 ], [ 5.682685306281826, 43.399088340754304 ], [ 5.77890357144264, 43.410074669310518 ], [ 5.713381107552038, 43.476684779578875 ], [ 5.725070561157452, 43.551380826563843 ], [ 5.682004153468881, 43.583812468670487 ], [ 5.680883547837425, 43.610816864106994 ], [ 5.707316654340104, 43.643490205308694 ], [ 5.790834724143167, 43.661222139889844 ], [ 5.813224861837909, 43.68909445574451 ], [ 5.753775092546448, 43.732054942181833 ], [ 5.778552008468409, 43.758220434725274 ], [ 5.855324472246593, 43.725459202779973 ], [ 5.929548108058725, 43.749475316532596 ], [ 6.028183365969539, 43.671582248022332 ], [ 6.073381121941225, 43.715571506719641 ], [ 6.140705342477588, 43.737544163832069 ], [ 6.243603296055255, 43.801067115554929 ], [ 6.354455351133538, 43.736423559099933 ], [ 6.385986113568265, 43.741048802959881 ], [ 6.427338654455355, 43.793838111339767 ], [ 6.5239084825904, 43.802330543419828 ], [ 6.549770300159196, 43.7910146250249 ], [ 6.616918740107735, 43.806538307596782 ], [ 6.665390421330869, 43.752628393585496 ], [ 6.757367963960348, 43.730908421686308 ], [ 6.775231734656813, 43.655080782052437 ], [ 6.83666728346833, 43.613102020741621 ], [ 6.912033497148173, 43.598259490982684 ], [ 6.878744921640816, 43.517861538978821 ], [ 6.933184539115985, 43.480345841348736 ] ] ], [ [ [ 6.235036655000044, 43.022406317000048 ], [ 6.252208826000071, 43.002632198000072 ], [ 6.20248457100007, 42.987127997000073 ], [ 6.166188998000052, 42.999660549000055 ], [ 6.235036655000044, 43.022406317000048 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-13", "NAME_1": "Bouches-du-Rhône" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.672188786100056, 43.180416012612682 ], [ 5.63421264200008, 43.187229117000072 ], [ 5.612420433000068, 43.160428659000047 ], [ 5.572706403000041, 43.169148290000066 ], [ 5.524952486000075, 43.212629082000035 ], [ 5.346980067000061, 43.215899318000083 ], [ 5.369151238000086, 43.270412502000056 ], [ 5.338882958000056, 43.334288836000042 ], [ 5.294173414000056, 43.355471883000064 ], [ 5.238278858000058, 43.32804075100006 ], [ 5.034022073000074, 43.335476431000075 ], [ 5.005572076000078, 43.381627502000072 ], [ 5.026133660000085, 43.409328518000052 ], [ 5.173838738000086, 43.428290106000077 ], [ 5.22632897200009, 43.480292059000078 ], [ 5.222829623000052, 43.503973700000074 ], [ 5.13998457100007, 43.48578522300005 ], [ 5.105723504000082, 43.533026434000078 ], [ 5.053721550000091, 43.538153387000079 ], [ 5.029144727000073, 43.558579820000034 ], [ 5.009287957000083, 43.517645575000074 ], [ 5.06226647200009, 43.451646226000037 ], [ 5.051117384000065, 43.429266669000071 ], [ 4.998465760000045, 43.414699406000068 ], [ 4.928477410000085, 43.440130927000041 ], [ 4.868174675000091, 43.421454169000071 ], [ 4.850271030000044, 43.401434637000079 ], [ 4.867531575000044, 43.365112099000044 ], [ 4.901005115000089, 43.366965085000061 ], [ 4.855778264000094, 43.341779141000075 ], [ 4.833262566000087, 43.381984768000052 ], [ 4.757823113000086, 43.422349351000037 ], [ 4.742442254000082, 43.448716539000088 ], [ 4.742442254000082, 43.524481512000079 ], [ 4.694590691000087, 43.579087632000039 ], [ 4.728770379000082, 43.527899481000077 ], [ 4.742523634000065, 43.422552802000041 ], [ 4.823018876000049, 43.36716896300004 ], [ 4.820279138000046, 43.346355716000062 ], [ 4.592335626000079, 43.359889274000068 ], [ 4.566288765000081, 43.37109356600007 ], [ 4.58570397200009, 43.404242255000042 ], [ 4.57959363000009, 43.43006620400007 ], [ 4.51303144600007, 43.455796617000033 ], [ 4.205902540000068, 43.459906317000048 ], [ 4.247585153631917, 43.500964565562242 ], [ 4.453051470049274, 43.59098654139575 ], [ 4.462961138345861, 43.615112519027491 ], [ 4.429430863743335, 43.627878632892589 ], [ 4.477067583801954, 43.693071506045158 ], [ 4.530922566323341, 43.71361594082299 ], [ 4.608793663496783, 43.698729465692281 ], [ 4.648849817265216, 43.805857154783837 ], [ 4.640939660237109, 43.870599588999823 ], [ 4.772819548283508, 43.932826154503402 ], [ 4.905907932704906, 43.895450663916961 ], [ 5.08716038074698, 43.786806861747266 ], [ 5.192629134526953, 43.749090795203983 ], [ 5.336572011389194, 43.739763402858728 ], [ 5.413564202026294, 43.695180881192698 ], [ 5.530898190898768, 43.669253146015876 ], [ 5.582511962157298, 43.66603415135495 ], [ 5.753775092546448, 43.732054942181833 ], [ 5.77398169609836, 43.725975560223901 ], [ 5.813224861837909, 43.68909445574451 ], [ 5.790834724143167, 43.661222139889844 ], [ 5.707316654340104, 43.643490205308694 ], [ 5.680883547837425, 43.610816864106994 ], [ 5.682004153468881, 43.583812468670487 ], [ 5.725070561157452, 43.551380826563843 ], [ 5.713381107552038, 43.476684779578875 ], [ 5.77890357144264, 43.410074669310518 ], [ 5.682685306281826, 43.399088340754304 ], [ 5.700900639053259, 43.358537801778084 ], [ 5.690990969857353, 43.312955525377163 ], [ 5.720324467300316, 43.313175251336759 ], [ 5.761017828509978, 43.278634234981951 ], [ 5.691891849529213, 43.23572163564495 ], [ 5.672188786100056, 43.180416012612682 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-30", "NAME_1": "Gard" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.205902540000068, 43.459906317000048 ], [ 4.132823113000086, 43.487046617000033 ], [ 4.117198113000086, 43.510484117000033 ], [ 4.132823113000086, 43.532782294000071 ], [ 4.100148624659312, 43.559730436410462 ], [ 4.099841007056796, 43.585251678022473 ], [ 4.155014348933037, 43.601379607882564 ], [ 4.180700385014745, 43.640699678247529 ], [ 4.17639374487544, 43.690522678079105 ], [ 4.12840546184259, 43.745948705168587 ], [ 4.024958191567293, 43.795672828138493 ], [ 3.970729673835365, 43.802253639693674 ], [ 3.954382017116359, 43.871830057611021 ], [ 3.83144500098598, 43.871533427026009 ], [ 3.79951873020525, 43.890737529313526 ], [ 3.823688653208762, 43.936001202893181 ], [ 3.783193045722498, 43.9651039873591 ], [ 3.721603688559355, 43.970652083127106 ], [ 3.682470385799661, 43.945273664647857 ], [ 3.667616869922597, 43.913786846685582 ], [ 3.609191574131842, 43.911347881699385 ], [ 3.565597822881216, 43.866018290511647 ], [ 3.494406414124683, 43.892253642391665 ], [ 3.448857096078086, 43.852021708035352 ], [ 3.409701821082194, 43.89761497145372 ], [ 3.342004064436026, 43.903932109878951 ], [ 3.356879553448607, 43.938637921602776 ], [ 3.446901529282115, 44.014388657510494 ], [ 3.386388831479394, 44.05395042607131 ], [ 3.306452305429559, 44.069144518804478 ], [ 3.286764804052439, 44.086250232062525 ], [ 3.323656895549277, 44.104443592597704 ], [ 3.326601231861332, 44.133150868717621 ], [ 3.376720862277978, 44.168263174905576 ], [ 3.517939129687079, 44.113441395104303 ], [ 3.616288743130951, 44.11683617125226 ], [ 3.636613450150605, 44.127262196992774 ], [ 3.642721848734311, 44.176909415337207 ], [ 3.671000659053163, 44.184105460298724 ], [ 3.790993338871488, 44.135996328168005 ], [ 3.875785822657576, 44.131371083408737 ], [ 3.920412289695378, 44.16642845810685 ], [ 3.96536834567263, 44.247166986067555 ], [ 3.92652068827914, 44.35073510544072 ], [ 3.894836116593467, 44.390230956393509 ], [ 3.959216001717095, 44.413785645091423 ], [ 3.993998718066393, 44.457851808414205 ], [ 4.049699403504633, 44.40354638695618 ], [ 4.036076356238823, 44.375564208121659 ], [ 4.049875184991777, 44.325202877710637 ], [ 4.130580754598157, 44.331684811504829 ], [ 4.251144724249627, 44.281795894065226 ], [ 4.34224336034282, 44.333673337554444 ], [ 4.38643037366279, 44.338891843483793 ], [ 4.395636916910178, 44.301120845450612 ], [ 4.418114945348464, 44.290475093750558 ], [ 4.445075395413141, 44.301120845450612 ], [ 4.455666216522673, 44.331816647620144 ], [ 4.520837117438987, 44.336826413708025 ], [ 4.657836633653687, 44.28171898943981 ], [ 4.68998263129339, 44.214922112465501 ], [ 4.721293667768521, 44.190246818136131 ], [ 4.725951870882113, 44.088832019282222 ], [ 4.777939177351129, 44.084338610638326 ], [ 4.844384492250526, 44.022068100662295 ], [ 4.847482636914151, 44.002248764069179 ], [ 4.820917695195476, 44.000392075034199 ], [ 4.819994843287361, 43.96807029590741 ], [ 4.800307342809617, 43.948844221383695 ], [ 4.640939660237109, 43.870599588999823 ], [ 4.648849817265216, 43.805857154783837 ], [ 4.608793663496783, 43.698729465692281 ], [ 4.530922566323341, 43.71361594082299 ], [ 4.477067583801954, 43.693071506045158 ], [ 4.429430863743335, 43.627878632892589 ], [ 4.462961138345861, 43.615112519027491 ], [ 4.453051470049274, 43.59098654139575 ], [ 4.247585153631917, 43.500964565562242 ], [ 4.205902540000068, 43.459906317000048 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-34", "NAME_1": "Hérault" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.105316602000073, 43.55186595300006 ], [ 3.952972852000073, 43.539943752000056 ], [ 3.73991946700005, 43.412827867000033 ], [ 3.622162306000064, 43.374904690000051 ], [ 3.51335696700005, 43.281073309000078 ], [ 3.385427280000044, 43.283921617000033 ], [ 3.244313997592883, 43.219427801551774 ], [ 3.189469878631996, 43.246081742878118 ], [ 3.010985985414891, 43.282556353792643 ], [ 3.004416160877099, 43.319679158266524 ], [ 2.932565572443195, 43.316064656158915 ], [ 2.870229143959818, 43.386717734335946 ], [ 2.851266740767471, 43.373413290790722 ], [ 2.839533341790286, 43.316196492274287 ], [ 2.755641736776738, 43.257957964088746 ], [ 2.711059216010028, 43.275118609736012 ], [ 2.687702281035456, 43.323051961278964 ], [ 2.663400522815891, 43.29844258455762 ], [ 2.611413216346818, 43.306891071265909 ], [ 2.558525030205942, 43.347199911146959 ], [ 2.55516321421095, 43.368952841400471 ], [ 2.593044074324553, 43.411645713878556 ], [ 2.567511847493734, 43.422829797057489 ], [ 2.662038218089265, 43.469159143879381 ], [ 2.650348764483908, 43.490417689824483 ], [ 2.6573360696039, 43.529792691679347 ], [ 2.621213020764287, 43.565201628452371 ], [ 2.641383920331634, 43.633097138821881 ], [ 2.688229625496831, 43.639249482777359 ], [ 2.775636854856941, 43.617903046088657 ], [ 2.885631976534455, 43.652894503178743 ], [ 2.934477192968075, 43.693664768114559 ], [ 3.034123193530547, 43.690874240154017 ], [ 3.056183740487199, 43.715571506719641 ], [ 3.049152490894755, 43.791563941722529 ], [ 3.06747768664593, 43.820941384537264 ], [ 3.198742340386673, 43.814536354469169 ], [ 3.232272614989199, 43.83905783954765 ], [ 3.244687165880009, 43.872027812233739 ], [ 3.342004064436026, 43.903932109878951 ], [ 3.409701821082194, 43.89761497145372 ], [ 3.448857096078086, 43.852021708035352 ], [ 3.494406414124683, 43.892253642391665 ], [ 3.565597822881216, 43.866018290511647 ], [ 3.609191574131842, 43.911347881699385 ], [ 3.667616869922597, 43.913786846685582 ], [ 3.682470385799661, 43.945273664647857 ], [ 3.721603688559355, 43.970652083127106 ], [ 3.783193045722498, 43.9651039873591 ], [ 3.823688653208762, 43.936001202893181 ], [ 3.79951873020525, 43.890737529313526 ], [ 3.83144500098598, 43.871533427026009 ], [ 3.940011899429578, 43.878993144218214 ], [ 3.963830259458916, 43.861590799475778 ], [ 3.970729673835365, 43.802253639693674 ], [ 4.024958191567293, 43.795672828138493 ], [ 4.14163300076234, 43.738148412019598 ], [ 4.17639374487544, 43.690522678079105 ], [ 4.180700385014745, 43.640699678247529 ], [ 4.155014348933037, 43.601379607882564 ], [ 4.099841007056796, 43.585251678022473 ], [ 4.105316602000073, 43.55186595300006 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-11", "NAME_1": "Aude" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.244313997592883, 43.219427801551774 ], [ 3.114024285000085, 43.106309312000064 ], [ 3.070404493000069, 43.026922919000071 ], [ 3.038991733000046, 42.942775783000059 ], [ 3.056081576000054, 42.907131252000056 ], [ 3.0462758278677, 42.837076341874791 ], [ 2.855309709575408, 42.913800235992085 ], [ 2.783920547095533, 42.889839053729304 ], [ 2.703962047910181, 42.834039491429337 ], [ 2.374987425529241, 42.847256044231017 ], [ 2.330910276088332, 42.82240496931388 ], [ 2.350707639545931, 42.745247983307763 ], [ 2.342995237140485, 42.718759945315185 ], [ 2.264684687148588, 42.708938167762199 ], [ 2.189450309584117, 42.652160822064275 ], [ 2.166074435786584, 42.663835145475559 ], [ 2.157721792526672, 42.691447933175539 ], [ 2.075148546867922, 42.743907651716711 ], [ 1.973503035936346, 42.73083392114853 ], [ 1.912682720531109, 42.75661883409191 ], [ 1.910199810173083, 42.790621520766535 ], [ 1.869066996144966, 42.810330994379854 ], [ 1.870319437891737, 42.824569275951319 ], [ 1.894071880312993, 42.848189882257259 ], [ 1.985631942360214, 42.87306293030997 ], [ 1.974601668432229, 42.913404728545345 ], [ 1.941554792020042, 42.935058781937187 ], [ 1.992311629877804, 42.967347601810332 ], [ 1.973503035936346, 43.022773628899813 ], [ 1.942653424515925, 43.0458449194075 ], [ 1.95755088666408, 43.086977733435617 ], [ 1.924921490834151, 43.11671772444339 ], [ 1.77491416075992, 43.152203565841887 ], [ 1.726794041611697, 43.178351027877625 ], [ 1.696515720024422, 43.243851518632653 ], [ 1.730221776114092, 43.322733357558377 ], [ 1.811191017951103, 43.343914998878063 ], [ 1.807301857494735, 43.380323691285298 ], [ 1.840854104333459, 43.421126915474758 ], [ 1.86643027743537, 43.419731652393807 ], [ 1.883854594414004, 43.392804160683454 ], [ 2.031686631732669, 43.422566124826801 ], [ 2.080575793538003, 43.393221641265711 ], [ 2.16717003486923, 43.400967002924801 ], [ 2.208171012782032, 43.383191122971937 ], [ 2.231418084776806, 43.396012168326877 ], [ 2.233900994235512, 43.432926232959232 ], [ 2.261498651741363, 43.442253625304545 ], [ 2.367165160143998, 43.424818322207784 ], [ 2.567511847493734, 43.422829797057489 ], [ 2.593044074324553, 43.411645713878556 ], [ 2.55516321421095, 43.368952841400471 ], [ 2.583112433791769, 43.324601033610804 ], [ 2.638066048809094, 43.295608112124626 ], [ 2.687702281035456, 43.323051961278964 ], [ 2.711059216010028, 43.275118609736012 ], [ 2.755641736776738, 43.257957964088746 ], [ 2.839533341790286, 43.316196492274287 ], [ 2.851266740767471, 43.373413290790722 ], [ 2.870229143959818, 43.386717734335946 ], [ 2.932565572443195, 43.316064656158915 ], [ 3.004416160877099, 43.319679158266524 ], [ 3.010985985414891, 43.282556353792643 ], [ 3.189469878631996, 43.246081742878118 ], [ 3.244313997592883, 43.219427801551774 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-40", "NAME_1": "Landes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.51398678299995, 43.538641669000071 ], [ -1.47687740799995, 43.580064195000034 ], [ -1.38117428299995, 43.889593817000048 ], [ -1.251303275603018, 44.468215156904627 ], [ -1.144988294374286, 44.493535403536043 ], [ -1.079399912875715, 44.529768315355454 ], [ -1.000232429483049, 44.504378909858758 ], [ -0.989388923160277, 44.483164310184748 ], [ -1.007758064283223, 44.436439454117476 ], [ -0.989443854650176, 44.431462647283297 ], [ -0.921921879491151, 44.440097901596857 ], [ -0.841150392276802, 44.42299218833881 ], [ -0.64405565794226, 44.448601319795046 ], [ -0.60993212127039, 44.399975830220342 ], [ -0.531346913828997, 44.36615991115093 ], [ -0.517679921191416, 44.339100583325262 ], [ -0.438061997962848, 44.318830807795507 ], [ -0.390546127002153, 44.288772212167828 ], [ -0.39633592186533, 44.237488030748011 ], [ -0.379878402166526, 44.208835686117993 ], [ -0.238967752359883, 44.197959220541577 ], [ -0.223674782765045, 44.211999748389644 ], [ -0.219829567680392, 44.258153314623769 ], [ -0.203218238730756, 44.264470453948263 ], [ -0.140640111152209, 44.226501702191797 ], [ -0.129203343659412, 44.152486807120454 ], [ 0.135490270459627, 44.117275624070771 ], [ 0.060321810503126, 44.024858628622781 ], [ 0.085239584539181, 43.967321195716579 ], [ 0.073263704955991, 43.912567364192455 ], [ -0.000278778043196, 43.91494041157074 ], [ 0.002973174972055, 43.958709944308453 ], [ -0.023976288974552, 43.971113509081135 ], [ -0.100012668449892, 43.928376691231279 ], [ -0.167479712119018, 43.930914533079203 ], [ -0.221916969692415, 43.89866965857783 ], [ -0.183442847509411, 43.835355447595816 ], [ -0.208118141838781, 43.788026344240393 ], [ -0.196912086423652, 43.732600316251592 ], [ -0.22210373729763, 43.692730930088317 ], [ -0.252667703351847, 43.686479709271168 ], [ -0.245251931531413, 43.659640108304359 ], [ -0.267905741456786, 43.628988251506598 ], [ -0.236342019768415, 43.587053435567555 ], [ -0.434008043036783, 43.552962858149385 ], [ -0.450817125709818, 43.559730436410462 ], [ -0.446851060627978, 43.58848165880147 ], [ -0.460441149539406, 43.592063201655435 ], [ -0.562251455839998, 43.543108121342698 ], [ -0.672048822894851, 43.557258513069883 ], [ -0.715345944459784, 43.547469693871278 ], [ -0.799973632876856, 43.56742086657971 ], [ -0.923844487033477, 43.533747769743741 ], [ -0.983752936648727, 43.545228482608366 ], [ -0.983346442184597, 43.523376675493182 ], [ -1.005308113178899, 43.50534811032702 ], [ -1.081102793559069, 43.522893277302899 ], [ -1.153997083898332, 43.489989223124098 ], [ -1.171718031461978, 43.505172328839876 ], [ -1.172981459326877, 43.551095182096958 ], [ -1.204127701332368, 43.564278776544256 ], [ -1.242909441117831, 43.530913297310804 ], [ -1.316638691722233, 43.508698940203885 ], [ -1.440663354230423, 43.499085903391688 ], [ -1.51398678299995, 43.538641669000071 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-33", "NAME_1": "Gironde" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.251303275603018, 44.468215156904627 ], [ -1.257232225999928, 44.556057033000059 ], [ -1.22687740799995, 44.589911200000074 ], [ -1.206288214999915, 44.64789459800005 ], [ -1.186512824999909, 44.66547272300005 ], [ -1.100209113999938, 44.655340887000079 ], [ -1.044748501999948, 44.669419664000088 ], [ -1.065297003999945, 44.717474677000041 ], [ -1.172230597999942, 44.778265692000048 ], [ -1.233631964999915, 44.706854559000078 ], [ -1.260365363999938, 44.627427476000037 ], [ -1.19945227799991, 45.120835679000038 ], [ -1.157866990999935, 45.279120184000078 ], [ -1.139963344999956, 45.490057684000078 ], [ -1.099598761999914, 45.553534247000073 ], [ -1.069162563999953, 45.573309637000079 ], [ -1.056223110999952, 45.565130927000041 ], [ -1.062326626999948, 45.532416083000044 ], [ -1.039947068999936, 45.50726959800005 ], [ -0.915272589999915, 45.450425523000035 ], [ -0.766184048999946, 45.326076565000051 ], [ -0.715972459999932, 45.134507554000038 ], [ -0.682199673999946, 45.07648346600007 ], [ -0.568959113999938, 44.997992255000042 ], [ -0.556507941999939, 44.918524481000077 ], [ -0.534657355999911, 44.894964911000045 ], [ -0.548451300999943, 44.94953034100007 ], [ -0.538970506999931, 44.976507880000042 ], [ -0.596180792999917, 45.024644273000035 ], [ -0.493763800999943, 44.997992255000042 ], [ -0.518950975999928, 45.029445705000057 ], [ -0.602162238999938, 45.053452867000033 ], [ -0.655995245999918, 45.099107164000088 ], [ -0.706603083541026, 45.322155321409937 ], [ -0.626752190960872, 45.319663364872383 ], [ -0.583729727744753, 45.346480992703619 ], [ -0.556725332308247, 45.299195834719967 ], [ -0.485160388341285, 45.288967563602171 ], [ -0.429218003807819, 45.258293733668836 ], [ -0.421285874543457, 45.201736114829828 ], [ -0.394281479107008, 45.166491972526501 ], [ -0.339119123348894, 45.1665469040164 ], [ -0.226388406100057, 45.112955593725644 ], [ -0.17380783756164, 45.101145290123043 ], [ 0.031493684386021, 45.120129666450907 ], [ 0.065880892389259, 45.063506129104553 ], [ 0.03938186827861, 44.99626979841247 ], [ 0.007213898402654, 44.960421407921615 ], [ 0.030592804714161, 44.910774189577182 ], [ -0.012693328934006, 44.861346697192289 ], [ 0.031076203803764, 44.840274918852401 ], [ 0.174469763968432, 44.826673844722109 ], [ 0.239904336216114, 44.867619891145011 ], [ 0.233048867211437, 44.881297869900777 ], [ 0.322169964272405, 44.856633562588797 ], [ 0.263766642516543, 44.826487077116894 ], [ 0.297406780098811, 44.762337904070989 ], [ 0.232367715297812, 44.758481702868266 ], [ 0.213844764923977, 44.714734143266071 ], [ 0.158627477675964, 44.740068616373549 ], [ 0.11870316002279, 44.723918713377884 ], [ 0.113209995744683, 44.683598887378707 ], [ 0.16563675593153, 44.663922373019091 ], [ 0.17016312292975, 44.637434335026512 ], [ 0.081876987033297, 44.557069342276293 ], [ 0.03325149655933, 44.549148199130059 ], [ -0.01383590770098, 44.497710208459353 ], [ -0.015011444822335, 44.473803957686471 ], [ 0.011333770936744, 44.448854005907606 ], [ -0.001190642933807, 44.410434815214501 ], [ 0.014794464692784, 44.366687254712986 ], [ -0.085356906296226, 44.34574731248847 ], [ -0.03473190455378, 44.275863276069288 ], [ -0.140640111152209, 44.226501702191797 ], [ -0.203218238730756, 44.264470453948263 ], [ -0.219829567680392, 44.258153314623769 ], [ -0.223674782765045, 44.211999748389644 ], [ -0.238967752359883, 44.197959220541577 ], [ -0.379878402166526, 44.208835686117993 ], [ -0.39633592186533, 44.237488030748011 ], [ -0.390546127002153, 44.288772212167828 ], [ -0.438061997962848, 44.318830807795507 ], [ -0.517679921191416, 44.339100583325262 ], [ -0.531346913828997, 44.36615991115093 ], [ -0.60993212127039, 44.399975830220342 ], [ -0.64405565794226, 44.448601319795046 ], [ -0.841150392276802, 44.42299218833881 ], [ -0.921921879491151, 44.440097901596857 ], [ -0.989443854650176, 44.431462647283297 ], [ -1.007758064283223, 44.436439454117476 ], [ -0.989388923160277, 44.483164310184748 ], [ -1.000232429483049, 44.504378909858758 ], [ -1.079399912875715, 44.529768315355454 ], [ -1.144988294374286, 44.493535403536043 ], [ -1.251303275603018, 44.468215156904627 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-17", "NAME_1": "Charente-Maritime" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.706603083541026, 45.322155321409937 ], [ -0.753041144999941, 45.424058335000041 ], [ -0.841786261999914, 45.514553127000056 ], [ -0.983509894999941, 45.586981512000079 ], [ -0.99087480399993, 45.610052802000041 ], [ -1.083811001999948, 45.660386460000041 ], [ -1.149322068999936, 45.678900458000044 ], [ -1.194203253999945, 45.710191148000035 ], [ -1.247303839999915, 45.709906317000048 ], [ -1.230295376999948, 45.79242584800005 ], [ -1.163807745999918, 45.806708075000074 ], [ -1.057240363999938, 45.740220445000034 ], [ -0.987172003999945, 45.717352606000077 ], [ -1.125355597999942, 45.807684637000079 ], [ -1.151722785999937, 45.868150132000039 ], [ -1.073353644999941, 45.904364325000074 ], [ -1.070423956999946, 45.926336981000077 ], [ -1.089751756999931, 45.950751044000071 ], [ -1.069162563999953, 45.964341539000088 ], [ -1.110747850999928, 46.018377997000073 ], [ -1.072987433999913, 46.007473049000055 ], [ -1.048695441999939, 46.038804429000038 ], [ -1.08421790299991, 46.056545315000051 ], [ -1.097035285999937, 46.101548570000034 ], [ -1.129017706999946, 46.115790106000077 ], [ -1.117014126999948, 46.128241278000075 ], [ -1.151722785999937, 46.156195380000042 ], [ -1.209706183999913, 46.166164455000057 ], [ -1.179595506999931, 46.229478257000039 ], [ -1.110747850999928, 46.25922272300005 ], [ -1.103505011999914, 46.280015367000033 ], [ -1.119189720473402, 46.311010963543303 ], [ -1.090287364570202, 46.33954621678447 ], [ -0.969833258797848, 46.362441724905636 ], [ -0.955001715157039, 46.353707593730462 ], [ -0.973118171066744, 46.329219067905626 ], [ -0.959934576619446, 46.320067456148138 ], [ -0.825088380024738, 46.331328443053167 ], [ -0.756588621467699, 46.301203929817461 ], [ -0.741383542616404, 46.272035227743515 ], [ -0.751392087774661, 46.245140695286807 ], [ -0.637101312075913, 46.154481512012126 ], [ -0.54986986330357, 46.139660955388763 ], [ -0.489983386823837, 46.102659000912126 ], [ -0.421879135713539, 46.104768375160347 ], [ -0.371254133971092, 46.077533266746855 ], [ -0.259611063100067, 46.065173647345944 ], [ -0.177620093392591, 46.023425599012171 ], [ -0.086818087884467, 45.949289853943583 ], [ -0.151186986889968, 45.926647031035657 ], [ -0.123556371029736, 45.847347711527618 ], [ -0.173148657884269, 45.790361625088906 ], [ -0.204009254523498, 45.77602446665577 ], [ -0.272058573244578, 45.803962700118518 ], [ -0.413188949910136, 45.783154594009261 ], [ -0.451959703577472, 45.764697562142771 ], [ -0.459265612418108, 45.740187063182418 ], [ -0.415847641755249, 45.741604299398887 ], [ -0.420450913378943, 45.620161423211073 ], [ -0.29652512683316, 45.564416792401005 ], [ -0.321639873980985, 45.5350283634682 ], [ -0.244482888874245, 45.50317899731283 ], [ -0.267136698799618, 45.471549357117112 ], [ -0.248306131722586, 45.434997842476434 ], [ -0.256403055456644, 45.415486122586458 ], [ -0.3106425593067, 45.376682410564797 ], [ -0.280254374739627, 45.351238073578202 ], [ -0.285044413968535, 45.31878445923536 ], [ -0.108790744996895, 45.289648715515796 ], [ -0.115294651926661, 45.248153352395263 ], [ -0.005475311736234, 45.22604886006684 ], [ -0.005629120087804, 45.145793729397042 ], [ -0.060846407335816, 45.111505398255474 ], [ -0.088795626916635, 45.118998074701381 ], [ -0.17380783756164, 45.101145290123043 ], [ -0.226388406100057, 45.112955593725644 ], [ -0.339119123348894, 45.1665469040164 ], [ -0.394281479107008, 45.166491972526501 ], [ -0.421285874543457, 45.201736114829828 ], [ -0.429218003807819, 45.258293733668836 ], [ -0.485160388341285, 45.288967563602171 ], [ -0.556725332308247, 45.299195834719967 ], [ -0.583729727744753, 45.346480992703619 ], [ -0.626752190960872, 45.319663364872383 ], [ -0.706603083541026, 45.322155321409937 ] ] ], [ [ [ -1.21939042899993, 45.943915106000077 ], [ -1.17609615799995, 45.89874909100007 ], [ -1.20921790299991, 45.814154364000046 ], [ -1.22687740799995, 45.81976959800005 ], [ -1.260365363999938, 45.881822007000039 ], [ -1.378325975999928, 45.975978908000059 ], [ -1.371652798999946, 45.995306708000044 ], [ -1.40493730399993, 46.053168036000045 ], [ -1.339914516999954, 46.037827867000033 ], [ -1.273833787999934, 45.997626044000071 ], [ -1.247629360999952, 46.001776434000078 ], [ -1.21939042899993, 45.943915106000077 ] ] ], [ [ [ -1.281402147999927, 46.156195380000042 ], [ -1.432850714999915, 46.210842190000051 ], [ -1.504261847999942, 46.20766836100006 ], [ -1.555816209999932, 46.251776434000078 ], [ -1.480091925999943, 46.25922272300005 ], [ -1.473866339999915, 46.238104559000078 ], [ -1.507964647999927, 46.24555084800005 ], [ -1.49054928299995, 46.224432684000078 ], [ -1.411122199999909, 46.238104559000078 ], [ -1.425363735999952, 46.223822333000044 ], [ -1.308094855999911, 46.206935940000051 ], [ -1.25413977799991, 46.16242096600007 ], [ -1.281402147999927, 46.156195380000042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-85", "NAME_1": "Vendée" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.119189720473402, 46.311010963543303 ], [ -1.177235480999911, 46.326157945000034 ], [ -1.214344855999911, 46.310695705000057 ], [ -1.21320553299995, 46.279120184000078 ], [ -1.240101691999939, 46.284247137000079 ], [ -1.277414516999954, 46.319525458000044 ], [ -1.370228644999941, 46.354193427000041 ], [ -1.448719855999911, 46.343410549000055 ], [ -1.481434699999909, 46.408189195000034 ], [ -1.62564042899993, 46.431138414000088 ], [ -1.617176886999914, 46.443548895000049 ], [ -1.63345292899993, 46.454291083000044 ], [ -1.761138475999928, 46.492010809000078 ], [ -1.789173956999946, 46.532945054000038 ], [ -1.781727667999917, 46.495428778000075 ], [ -1.795399542999917, 46.494533596000053 ], [ -1.822661912999934, 46.59438711100006 ], [ -1.909901495999918, 46.691799221000053 ], [ -1.956450975999928, 46.704291083000044 ], [ -2.050282355999911, 46.792059637000079 ], [ -2.118763800999943, 46.819973049000055 ], [ -2.128773566999939, 46.893459377000056 ], [ -2.09634355399993, 46.916489976000037 ], [ -2.102162238999938, 46.930650132000039 ], [ -2.049224412999934, 46.957464911000045 ], [ -1.990715865444827, 47.035387307778024 ], [ -1.876611857351349, 46.959372900538881 ], [ -1.77157157027176, 46.924458348074268 ], [ -1.720331334223715, 46.884599948029177 ], [ -1.550142118464009, 46.859946626835324 ], [ -1.499956569540075, 46.88267734048685 ], [ -1.539353543631137, 46.945749853273071 ], [ -1.546648466353645, 47.020105324301255 ], [ -1.498176784231191, 47.035387307778024 ], [ -1.474797877020421, 47.026290627510434 ], [ -1.467975367269389, 46.955571630826057 ], [ -1.443113305334805, 46.933577000578111 ], [ -1.370284933502887, 46.964668311093646 ], [ -1.362825217210002, 47.035947610593723 ], [ -1.305388690935331, 47.039166604355273 ], [ -1.269683123577295, 47.076322368082799 ], [ -1.07525806720605, 47.007196388202715 ], [ -1.034905281953229, 47.003186378648422 ], [ -0.993442878086341, 47.020390968768197 ], [ -0.909397464721224, 46.982378272539222 ], [ -0.833613770459124, 46.919250828263102 ], [ -0.812421143021368, 46.86282504553941 ], [ -0.712017086819117, 46.802048675505944 ], [ -0.724728268294939, 46.767507658251816 ], [ -0.626774163197069, 46.606557945892462 ], [ -0.615952630009872, 46.547550375049752 ], [ -0.640133539131511, 46.514942951456021 ], [ -0.624115472251276, 46.461428545790739 ], [ -0.62992723935065, 46.408507400396161 ], [ -0.60349413284797, 46.406189285407152 ], [ -0.555286123855524, 46.369725661510074 ], [ -0.649515862966723, 46.325725414895942 ], [ -0.756588621467699, 46.301203929817461 ], [ -0.85060962073743, 46.334305737719603 ], [ -0.959934576619446, 46.320067456148138 ], [ -0.973118171066744, 46.329219067905626 ], [ -0.955001715157039, 46.353707593730462 ], [ -0.969833258797848, 46.362441724905636 ], [ -1.090287364570202, 46.33954621678447 ], [ -1.119189720473402, 46.311010963543303 ] ] ], [ [ [ -2.337228969999956, 46.731594143000052 ], [ -2.298207160999937, 46.72016022300005 ], [ -2.268950975999928, 46.697414455000057 ], [ -2.37140865799995, 46.704291083000044 ], [ -2.382923956999946, 46.722642320000034 ], [ -2.337228969999956, 46.731594143000052 ] ] ], [ [ [ -2.200103318999936, 46.985419012000079 ], [ -2.14484615799995, 46.957464911000045 ], [ -2.142567511999914, 46.909857489000046 ], [ -2.194813605999911, 46.961859442000048 ], [ -2.220204230999911, 46.973863023000035 ], [ -2.247303839999915, 46.96430084800005 ], [ -2.295643683999913, 47.033189195000034 ], [ -2.200021938999953, 47.024359442000048 ], [ -2.200103318999936, 46.985419012000079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-44", "NAME_1": "Loire-Atlantique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.990715865444827, 47.035387307778024 ], [ -2.030018683999913, 47.09210846600007 ], [ -2.241118943999936, 47.142482815000051 ], [ -2.165191209999932, 47.167873440000051 ], [ -2.170887824999909, 47.246323960000041 ], [ -2.151682094999956, 47.279689846000053 ], [ -2.014556443999936, 47.300116278000075 ], [ -1.947865363999938, 47.279364325000074 ], [ -1.927805141999954, 47.286322333000044 ], [ -1.898426886999914, 47.273423570000034 ], [ -1.918853318999936, 47.266017971000053 ], [ -1.877837693999936, 47.245510158000059 ], [ -1.780995245999918, 47.211981512000079 ], [ -1.727040167999917, 47.210760809000078 ], [ -1.788238084999932, 47.225572007000039 ], [ -1.905629035999937, 47.293931382000039 ], [ -2.010121222999942, 47.319728908000059 ], [ -2.148101365999935, 47.313218492000033 ], [ -2.278391079999949, 47.24640534100007 ], [ -2.316070115999935, 47.251654364000046 ], [ -2.37140865799995, 47.286444403000075 ], [ -2.448394334999932, 47.266587632000039 ], [ -2.541981574999909, 47.300116278000075 ], [ -2.476063605999911, 47.290676174000055 ], [ -2.43618730399993, 47.307033596000053 ], [ -2.480620897999927, 47.347886460000041 ], [ -2.501698370999918, 47.32062409100007 ], [ -2.514800584999932, 47.364935614000046 ], [ -2.556385870999918, 47.383246161000045 ], [ -2.47679602799991, 47.415676174000055 ], [ -2.439035610999952, 47.409979559000078 ], [ -2.439035610999952, 47.396307684000078 ], [ -2.391835089999915, 47.423651434000078 ], [ -2.448150193999936, 47.430609442000048 ], [ -2.439035610999952, 47.44476959800005 ], [ -2.461097448878091, 47.452644464493062 ], [ -2.452888735226963, 47.461854609302748 ], [ -2.345739072999834, 47.45948156192452 ], [ -2.292356502550547, 47.505887813371885 ], [ -2.253366022024295, 47.495264033908029 ], [ -2.20252129342299, 47.506766719908171 ], [ -2.179263236209408, 47.482475947806734 ], [ -2.109972461859627, 47.542318478914638 ], [ -2.081034472762724, 47.649808717997928 ], [ -2.030695115487219, 47.6712210722946 ], [ -1.685317904897431, 47.718484257142734 ], [ -1.592011016795027, 47.775481329699574 ], [ -1.461713160334114, 47.823436654378099 ], [ -1.409495139988735, 47.823590462729669 ], [ -1.351311544192413, 47.791861945672224 ], [ -1.251006364851889, 47.780392218925726 ], [ -1.247974137796234, 47.733974980460971 ], [ -1.1793425440232, 47.699488895596005 ], [ -1.17612354936233, 47.655246950786136 ], [ -1.158083998078041, 47.631472535229307 ], [ -1.008208504119182, 47.587757933981436 ], [ -1.0583171484177, 47.564148313793623 ], [ -1.161731459439295, 47.571311400400759 ], [ -1.178892104187241, 47.563785765600585 ], [ -1.174651381655963, 47.541999876093371 ], [ -1.128959241375924, 47.504975948481217 ], [ -0.96559253536725, 47.491759395679537 ], [ -0.955869634675935, 47.438838250285016 ], [ -0.923778569425451, 47.39425572951825 ], [ -1.164796644849275, 47.37579869765176 ], [ -1.334722188378294, 47.323855336554516 ], [ -1.339259542393961, 47.300893909926003 ], [ -1.301488544360836, 47.297114612449377 ], [ -1.250577898151505, 47.246423692199585 ], [ -1.196371352655831, 47.248159532136697 ], [ -1.16185230853722, 47.185823104552583 ], [ -1.230110367999089, 47.109424175984884 ], [ -1.160533949182422, 47.084133647349915 ], [ -1.118357434148265, 47.041045266525828 ], [ -1.148613782600023, 47.029498635153857 ], [ -1.269683123577295, 47.076322368082799 ], [ -1.305388690935331, 47.039166604355273 ], [ -1.362825217210002, 47.035947610593723 ], [ -1.370284933502887, 46.964668311093646 ], [ -1.443113305334805, 46.933577000578111 ], [ -1.467975367269389, 46.955571630826057 ], [ -1.474797877020421, 47.026290627510434 ], [ -1.498176784231191, 47.035387307778024 ], [ -1.546648466353645, 47.020105324301255 ], [ -1.539353543631137, 46.945749853273071 ], [ -1.499956569540075, 46.88267734048685 ], [ -1.550142118464009, 46.859946626835324 ], [ -1.720331334223715, 46.884599948029177 ], [ -1.77157157027176, 46.924458348074268 ], [ -1.876611857351349, 46.959372900538881 ], [ -1.990715865444827, 47.035387307778024 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-56", "NAME_1": "Morbihan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.461097448878091, 47.452644464493062 ], [ -2.48892167899993, 47.459173895000049 ], [ -2.480620897999927, 47.478216864000046 ], [ -2.494740363999938, 47.491197007000039 ], [ -2.36392167899993, 47.50617096600007 ], [ -2.517486131999931, 47.528387762000079 ], [ -2.631988084999932, 47.51984284100007 ], [ -2.599354620999918, 47.529120184000078 ], [ -2.57681230399993, 47.553941148000035 ], [ -2.638254360999952, 47.540269273000035 ], [ -2.617787238999938, 47.526678778000075 ], [ -2.665516730999911, 47.53351471600007 ], [ -2.680734829999949, 47.50421784100007 ], [ -2.817128058999913, 47.499212958000044 ], [ -2.909250454999949, 47.558417059000078 ], [ -2.865305141999954, 47.566636460000041 ], [ -2.850575324999909, 47.546535549000055 ], [ -2.816395636999914, 47.546535549000055 ], [ -2.809559699999909, 47.567613023000035 ], [ -2.741444464999915, 47.551336981000077 ], [ -2.720204230999911, 47.560777085000041 ], [ -2.683990037999934, 47.622992255000042 ], [ -2.706532355999911, 47.642726955000057 ], [ -2.69562740799995, 47.62335846600007 ], [ -2.714019334999932, 47.616034247000073 ], [ -2.699777798999946, 47.609198309000078 ], [ -2.720204230999911, 47.601752020000049 ], [ -2.775380011999914, 47.629095770000049 ], [ -2.734486456999946, 47.622259833000044 ], [ -2.74632727799991, 47.633856512000079 ], [ -2.789133266999954, 47.642726955000057 ], [ -2.775380011999914, 47.636542059000078 ], [ -2.919422980999911, 47.595526434000078 ], [ -2.912668423999946, 47.609198309000078 ], [ -2.939930792999917, 47.601752020000049 ], [ -2.933094855999911, 47.636542059000078 ], [ -2.957997199999909, 47.642157294000071 ], [ -2.967193162999934, 47.663804429000038 ], [ -2.967193162999934, 47.612616278000075 ], [ -2.933094855999911, 47.574448960000041 ], [ -2.939930792999917, 47.560777085000041 ], [ -2.994496222999942, 47.595526434000078 ], [ -2.98859615799995, 47.582261460000041 ], [ -3.003407355999911, 47.578680731000077 ], [ -3.011789516999954, 47.607163804000038 ], [ -3.015695766999954, 47.581244208000044 ], [ -3.073841925999943, 47.57648346600007 ], [ -3.12328040299991, 47.598781643000052 ], [ -3.12328040299991, 47.51898834800005 ], [ -3.084543423999946, 47.478216864000046 ], [ -3.131703253999945, 47.478216864000046 ], [ -3.145375128999945, 47.516099351000037 ], [ -3.131703253999945, 47.557440497000073 ], [ -3.141184048999946, 47.598049221000053 ], [ -3.200591600999928, 47.639593817000048 ], [ -3.186350063999953, 47.680609442000048 ], [ -3.111195441999939, 47.704169012000079 ], [ -3.118031378999945, 47.732123114000046 ], [ -3.139149542999917, 47.724676825000074 ], [ -3.139149542999917, 47.75259023600006 ], [ -3.193186001999948, 47.74640534100007 ], [ -3.159087693999936, 47.711004950000074 ], [ -3.207386847999942, 47.697333075000074 ], [ -3.193186001999948, 47.683742580000057 ], [ -3.224191860999952, 47.656398830000057 ], [ -3.262074347999942, 47.683742580000057 ], [ -3.358265753999945, 47.697333075000074 ], [ -3.282622850999928, 47.691148179000038 ], [ -3.358265753999945, 47.711004950000074 ], [ -3.282622850999928, 47.787339585000041 ], [ -3.383168097999942, 47.737046617000033 ], [ -3.364491339999915, 47.718451239000046 ], [ -3.460682745999918, 47.707586981000077 ], [ -3.528309699999909, 47.77993398600006 ], [ -3.546621686841377, 47.78177649588855 ], [ -3.5516314529292, 47.815405648252067 ], [ -3.533569928509394, 47.835587533038222 ], [ -3.47864927184645, 47.828259651961332 ], [ -3.44986509110106, 47.861394419117119 ], [ -3.39819638835263, 47.870765757733523 ], [ -3.39392270656765, 47.952460096855987 ], [ -3.425266701397163, 47.966445692314835 ], [ -3.472727640867959, 47.95867835841949 ], [ -3.548445417522032, 47.989451064315119 ], [ -3.626668076770329, 47.982661513817789 ], [ -3.681028430617573, 48.062532122259597 ], [ -3.730532826728563, 48.101203998165943 ], [ -3.72480894947347, 48.131691060494006 ], [ -3.564924910356353, 48.185732810620664 ], [ -3.441702248859713, 48.18297524191388 ], [ -3.419641701903004, 48.150752340548081 ], [ -3.340463231492947, 48.168418356621828 ], [ -3.291782809529025, 48.144171529892162 ], [ -3.16273739481494, 48.155915914987474 ], [ -3.122725186418222, 48.202783592388869 ], [ -3.037328454444605, 48.204321678602582 ], [ -3.01608089551695, 48.19805947076793 ], [ -2.99971126566237, 48.160607077354712 ], [ -2.916962238516476, 48.168747946460542 ], [ -2.795772048441279, 48.129438863113023 ], [ -2.769888258636229, 48.093689349483839 ], [ -2.672483470235989, 48.129230122372235 ], [ -2.659277902653116, 48.123550190488857 ], [ -2.65987116472246, 48.040394669778152 ], [ -2.638315988192289, 48.034451066563463 ], [ -2.54940363097279, 48.085482562770039 ], [ -2.52392633563187, 48.160398336613923 ], [ -2.401758362158716, 48.161936422827637 ], [ -2.356000303371331, 48.117441791905151 ], [ -2.287346736462723, 48.133690571762429 ], [ -2.235205620742818, 48.078583148393534 ], [ -2.177922903719036, 48.073232806348926 ], [ -2.191348197261505, 48.052501603965823 ], [ -2.257573786201306, 48.03890052983553 ], [ -2.271130915859089, 48.005436172841087 ], [ -2.124342579546408, 47.963578260628196 ], [ -2.099744189842511, 47.919852673262255 ], [ -2.109478077551273, 47.848837045992866 ], [ -2.051668016066117, 47.83610389048215 ], [ -2.067982714430741, 47.79620154596455 ], [ -2.12231010902434, 47.774294806460148 ], [ -2.06240165940909, 47.744653692314046 ], [ -2.115927052091763, 47.731744756215505 ], [ -2.126320118578633, 47.714243534611398 ], [ -2.085835498109759, 47.607994751156809 ], [ -2.109972461859627, 47.542318478914638 ], [ -2.179263236209408, 47.482475947806734 ], [ -2.20252129342299, 47.506766719908171 ], [ -2.253366022024295, 47.495264033908029 ], [ -2.292356502550547, 47.505887813371885 ], [ -2.345739072999834, 47.45948156192452 ], [ -2.433102356988172, 47.465831659603396 ], [ -2.461097448878091, 47.452644464493062 ] ] ], [ [ [ -3.114654100999928, 47.33148834800005 ], [ -3.072743292999917, 47.328314520000049 ], [ -3.067005988999938, 47.301947333000044 ], [ -3.223459438999953, 47.312160549000055 ], [ -3.240956183999913, 47.32062409100007 ], [ -3.262074347999942, 47.383246161000045 ], [ -3.242990688999953, 47.395331122000073 ], [ -3.114654100999928, 47.33148834800005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-29", "NAME_1": "Finistère" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.539297107175742, 47.773749107735114 ], [ -3.686919725999928, 47.792303778000075 ], [ -3.723215298999946, 47.813381252000056 ], [ -3.775380011999914, 47.79360586100006 ], [ -3.851714647999927, 47.801011460000041 ], [ -3.885853644999941, 47.855047919000071 ], [ -3.961822068999936, 47.899969794000071 ], [ -3.988270636999914, 47.903469143000052 ], [ -3.979237433999913, 47.883002020000049 ], [ -4.008900519999941, 47.851263739000046 ], [ -4.029204881999931, 47.855047919000071 ], [ -4.001942511999914, 47.869289455000057 ], [ -4.036691860999952, 47.855047919000071 ], [ -4.106556769999941, 47.880113023000035 ], [ -4.132191535999937, 47.923895575000074 ], [ -4.142730272999927, 47.912014065000051 ], [ -4.111195441999939, 47.869289455000057 ], [ -4.152740037999934, 47.855047919000071 ], [ -4.185617641999954, 47.874416408000059 ], [ -4.180043097999942, 47.841986395000049 ], [ -4.152740037999934, 47.841986395000049 ], [ -4.185210740999935, 47.813381252000056 ], [ -4.371815558999913, 47.807196356000077 ], [ -4.371815558999913, 47.834458726000037 ], [ -4.347645636999914, 47.838324286000045 ], [ -4.347320115999935, 47.862941799000055 ], [ -4.371978318999936, 47.915838934000078 ], [ -4.434641079999949, 47.975653387000079 ], [ -4.533273891999954, 48.026312567000048 ], [ -4.572010870999918, 48.005926825000074 ], [ -4.601958787999934, 48.025580145000049 ], [ -4.728138800999943, 48.040594794000071 ], [ -4.700795050999943, 48.074774481000077 ], [ -4.28538977799991, 48.115383205000057 ], [ -4.27570553299995, 48.143622137000079 ], [ -4.302357550999943, 48.196356512000079 ], [ -4.366118943999936, 48.21515534100007 ], [ -4.379261847999942, 48.232367255000042 ], [ -4.485463019999941, 48.242621161000045 ], [ -4.531646287999934, 48.183091539000088 ], [ -4.557484503999945, 48.17719147300005 ], [ -4.543771938999953, 48.205064195000034 ], [ -4.563628709999932, 48.232367255000042 ], [ -4.54718990799995, 48.25259023600006 ], [ -4.626332160999937, 48.266546942000048 ], [ -4.626332160999937, 48.287054755000042 ], [ -4.575184699999909, 48.290025132000039 ], [ -4.546701626999948, 48.346828518000052 ], [ -4.530140753999945, 48.341620184000078 ], [ -4.54320227799991, 48.304673570000034 ], [ -4.515533006999931, 48.295843817000048 ], [ -4.426503058999913, 48.300034898000035 ], [ -4.38898678299995, 48.287054755000042 ], [ -4.262603318999936, 48.300034898000035 ], [ -4.289906378999945, 48.293850002000056 ], [ -4.269357876999948, 48.288397528000075 ], [ -4.187489386999914, 48.307521877000056 ], [ -4.324696417999917, 48.32172272300005 ], [ -4.269398566999939, 48.36273834800005 ], [ -4.453724738999938, 48.33539459800005 ], [ -4.396595831999946, 48.387762762000079 ], [ -4.289906378999945, 48.431586005000042 ], [ -4.599354620999918, 48.350165106000077 ], [ -4.690541144999941, 48.36273834800005 ], [ -4.704497850999928, 48.341620184000078 ], [ -4.768381313999953, 48.345404364000046 ], [ -4.783355272999927, 48.37641022300005 ], [ -4.764759894999941, 48.377630927000041 ], [ -4.766346808999913, 48.390448309000078 ], [ -4.784901495999918, 48.43618398600006 ], [ -4.768055792999917, 48.468654690000051 ], [ -4.749256964999915, 48.472601630000042 ], [ -4.774647589999915, 48.491278387000079 ], [ -4.764556443999936, 48.520209052000041 ], [ -4.721994594999956, 48.568182684000078 ], [ -4.700795050999943, 48.560736395000049 ], [ -4.708241339999915, 48.568182684000078 ], [ -4.692290818999936, 48.575506903000075 ], [ -4.642486131999931, 48.581854559000078 ], [ -4.577259894999941, 48.568182684000078 ], [ -4.60773678299995, 48.603013414000088 ], [ -4.530140753999945, 48.601711330000057 ], [ -4.557484503999945, 48.609116929000038 ], [ -4.563628709999932, 48.629624742000033 ], [ -4.406605597999942, 48.643255927000041 ], [ -4.426503058999913, 48.657538153000075 ], [ -4.343251105999911, 48.678859768000052 ], [ -4.29914303299995, 48.663641669000071 ], [ -4.306507941999939, 48.641546942000048 ], [ -4.242054816999939, 48.657538153000075 ], [ -4.193755662999934, 48.650091864000046 ], [ -4.213002081999946, 48.661200262000079 ], [ -4.173898891999954, 48.691107489000046 ], [ -4.079253709999932, 48.696926174000055 ], [ -4.064035610999952, 48.684881903000075 ], [ -4.056548631999931, 48.712144273000035 ], [ -3.973988410999937, 48.732814846000053 ], [ -3.954741990999935, 48.657538153000075 ], [ -3.891997850999928, 48.67804596600007 ], [ -3.906320766999954, 48.66437409100007 ], [ -3.851714647999927, 48.629624742000033 ], [ -3.857899542999917, 48.684881903000075 ], [ -3.837473110999952, 48.670599677000041 ], [ -3.837147589999915, 48.707261460000041 ], [ -3.816965298999946, 48.712144273000035 ], [ -3.810129360999952, 48.733221747000073 ], [ -3.686634894999941, 48.698553778000075 ], [ -3.638172980999911, 48.704738674000055 ], [ -3.631831651209723, 48.611255288001132 ], [ -3.568001081884404, 48.540701085786452 ], [ -3.597213729330178, 48.473706454189482 ], [ -3.555059187431539, 48.451195467396872 ], [ -3.567473738322349, 48.423487946011846 ], [ -3.609111923676323, 48.41793985024384 ], [ -3.613550399931, 48.392374664159377 ], [ -3.566847517898623, 48.373642973944072 ], [ -3.522979107399919, 48.281720362804492 ], [ -3.554158307759678, 48.22183388632476 ], [ -3.543171979203464, 48.193577049141481 ], [ -3.708230579777421, 48.143270650220302 ], [ -3.730532826728563, 48.101203998165943 ], [ -3.681028430617573, 48.062532122259597 ], [ -3.626668076770329, 47.982661513817789 ], [ -3.548445417522032, 47.989451064315119 ], [ -3.472727640867959, 47.95867835841949 ], [ -3.407260109366575, 47.963633193017415 ], [ -3.386660743098844, 47.931717908354756 ], [ -3.39819638835263, 47.870765757733523 ], [ -3.44986509110106, 47.861394419117119 ], [ -3.47864927184645, 47.828259651961332 ], [ -3.541095563309625, 47.830951303060147 ], [ -3.553367292866255, 47.805243293842921 ], [ -3.539297107175742, 47.773749107735114 ] ] ], [ [ [ -5.050282355999911, 48.47882721600007 ], [ -5.036610480999911, 48.46515534100007 ], [ -5.087961391999954, 48.447211005000042 ], [ -5.105539516999954, 48.444647528000075 ], [ -5.097767706999946, 48.461330471000053 ], [ -5.132801886999914, 48.458319403000075 ], [ -5.091786261999914, 48.48078034100007 ], [ -5.050282355999911, 48.47882721600007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-22", "NAME_1": "Côtes-d'Armor" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.638539191999939, 48.68781159100007 ], [ -3.57054602799991, 48.687974351000037 ], [ -3.580474412999934, 48.733221747000073 ], [ -3.528309699999909, 48.739488023000035 ], [ -3.581532355999911, 48.790594794000071 ], [ -3.542591925999943, 48.807806708000044 ], [ -3.515288865999935, 48.841945705000057 ], [ -3.397613084999932, 48.807318427000041 ], [ -3.213612433999913, 48.869818427000041 ], [ -3.220529751999948, 48.794134833000044 ], [ -3.178822394999941, 48.841009833000044 ], [ -3.10374915299991, 48.876654364000046 ], [ -3.084339972999942, 48.862209377000056 ], [ -3.090728318999936, 48.835679429000038 ], [ -3.077056443999936, 48.828273830000057 ], [ -3.125477667999917, 48.759955145000049 ], [ -3.065500454999949, 48.823960679000038 ], [ -3.008168097999942, 48.821437893000052 ], [ -3.042388475999928, 48.787909247000073 ], [ -2.933094855999911, 48.767401434000078 ], [ -2.946685350999928, 48.733221747000073 ], [ -2.826975063999953, 48.657538153000075 ], [ -2.812977667999917, 48.598578192000048 ], [ -2.714019334999932, 48.560736395000049 ], [ -2.734486456999946, 48.534002997000073 ], [ -2.682362433999913, 48.509019273000035 ], [ -2.676136847999942, 48.540228583000044 ], [ -2.620025193999936, 48.54360586100006 ], [ -2.569406704999949, 48.588690497000073 ], [ -2.459543423999946, 48.636460679000038 ], [ -2.487456834999932, 48.650091864000046 ], [ -2.386219855999911, 48.650091864000046 ], [ -2.316070115999935, 48.698553778000075 ], [ -2.281971808999913, 48.670599677000041 ], [ -2.33031165299991, 48.629624742000033 ], [ -2.312652147999927, 48.620184637000079 ], [ -2.250965949999909, 48.650091864000046 ], [ -2.213693813999953, 48.581854559000078 ], [ -2.192616339999915, 48.615912177000041 ], [ -2.17406165299991, 48.582953192000048 ], [ -2.159087693999936, 48.588690497000073 ], [ -2.17210852799991, 48.601711330000057 ], [ -2.161040818999936, 48.613023179000038 ], [ -2.124338344999956, 48.609116929000038 ], [ -2.14484615799995, 48.636460679000038 ], [ -2.052357550999943, 48.650091864000046 ], [ -2.000884568999936, 48.588690497000073 ], [ -2.008290167999917, 48.575018622000073 ], [ -1.976389126999948, 48.535630601000037 ], [ -1.980295376999948, 48.513576565000051 ], [ -1.93340019006672, 48.550434972595895 ], [ -1.90887870408892, 48.489350985859289 ], [ -1.952033002521034, 48.429761139964626 ], [ -1.931807172363108, 48.356196683829864 ], [ -1.961492231880982, 48.342068265238197 ], [ -1.961481245762911, 48.300342190039999 ], [ -1.982432174105554, 48.280336085841668 ], [ -2.065972216144871, 48.295178615600605 ], [ -2.117168507720464, 48.260813379833564 ], [ -2.160179983919136, 48.260659571481995 ], [ -2.210804985661582, 48.209628075275418 ], [ -2.231865776984023, 48.164133688718721 ], [ -2.339696592024097, 48.118386616049463 ], [ -2.425258118467411, 48.16740761397017 ], [ -2.52392633563187, 48.160398336613923 ], [ -2.54940363097279, 48.085482562770039 ], [ -2.638315988192289, 48.034451066563463 ], [ -2.65987116472246, 48.040394669778152 ], [ -2.659277902653116, 48.123550190488857 ], [ -2.672483470235989, 48.129230122372235 ], [ -2.769888258636229, 48.093689349483839 ], [ -2.795772048441279, 48.129438863113023 ], [ -2.916962238516476, 48.168747946460542 ], [ -2.99971126566237, 48.160607077354712 ], [ -3.01608089551695, 48.19805947076793 ], [ -3.037328454444605, 48.204321678602582 ], [ -3.122725186418222, 48.202783592388869 ], [ -3.16273739481494, 48.155915914987474 ], [ -3.291782809529025, 48.144171529892162 ], [ -3.340463231492947, 48.168418356621828 ], [ -3.419641701903004, 48.150752340548081 ], [ -3.441702248859713, 48.18297524191388 ], [ -3.564924910356353, 48.185732810620664 ], [ -3.543171979203464, 48.193577049141481 ], [ -3.554158307759678, 48.22183388632476 ], [ -3.522979107399919, 48.281720362804492 ], [ -3.566847517898623, 48.373642973944072 ], [ -3.613550399931, 48.392374664159377 ], [ -3.609111923676323, 48.41793985024384 ], [ -3.567473738322349, 48.423487946011846 ], [ -3.555059187431539, 48.451195467396872 ], [ -3.597213729330178, 48.473706454189482 ], [ -3.568001081884404, 48.540701085786452 ], [ -3.631831651209723, 48.611255288001132 ], [ -3.638539191999939, 48.68781159100007 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-35", "NAME_1": "Ille-et-Vilaine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.948544880126293, 48.538300348455202 ], [ -1.967274542999917, 48.547064520000049 ], [ -1.980295376999948, 48.588690497000073 ], [ -1.952951626999948, 48.575018622000073 ], [ -1.960357225999928, 48.586615302000041 ], [ -2.000477667999917, 48.601304429000038 ], [ -2.025542772999927, 48.651312567000048 ], [ -1.976958787999934, 48.691107489000046 ], [ -1.843739386999914, 48.712144273000035 ], [ -1.836333787999934, 48.691107489000046 ], [ -1.861195441999939, 48.664211330000057 ], [ -1.860951300999943, 48.640855210000041 ], [ -1.83820553299995, 48.623765367000033 ], [ -1.722808397999927, 48.615301825000074 ], [ -1.589670928670444, 48.641808267037845 ], [ -1.528762723420982, 48.530736486000023 ], [ -1.448254907537944, 48.465752352688924 ], [ -1.381688742641359, 48.470399569684389 ], [ -1.265728045512901, 48.53548257985716 ], [ -1.079081309155129, 48.498689365221992 ], [ -1.06977588904607, 48.318183987600946 ], [ -1.101658214455028, 48.267394190489483 ], [ -1.070292246489998, 48.174318015364065 ], [ -1.082333263069643, 48.152411275859663 ], [ -1.070391123351669, 48.090580218702087 ], [ -1.04179371021155, 48.062334368536256 ], [ -1.040629159208322, 48.001514053131018 ], [ -1.134935803844257, 47.983166885143589 ], [ -1.167697035789558, 47.960798719685158 ], [ -1.251006364851889, 47.780392218925726 ], [ -1.351311544192413, 47.791861945672224 ], [ -1.409495139988735, 47.823590462729669 ], [ -1.461713160334114, 47.823436654378099 ], [ -1.592011016795027, 47.775481329699574 ], [ -1.685317904897431, 47.718484257142734 ], [ -1.806134559762143, 47.692336795106996 ], [ -1.865845255654051, 47.702795780101155 ], [ -2.030695115487219, 47.6712210722946 ], [ -2.081034472762724, 47.649808717997928 ], [ -2.088549121444828, 47.632626100114408 ], [ -2.102754444661912, 47.639327759868195 ], [ -2.12433159342828, 47.725361699282985 ], [ -2.06240165940909, 47.744653692314046 ], [ -2.12231010902434, 47.774294806460148 ], [ -2.067982714430741, 47.79620154596455 ], [ -2.051668016066117, 47.83610389048215 ], [ -2.109478077551273, 47.848837045992866 ], [ -2.099744189842511, 47.919852673262255 ], [ -2.124342579546408, 47.963578260628196 ], [ -2.271130915859089, 48.005436172841087 ], [ -2.257573786201306, 48.03890052983553 ], [ -2.191348197261505, 48.052501603965823 ], [ -2.177922903719036, 48.073232806348926 ], [ -2.235205620742818, 48.078583148393534 ], [ -2.287346736462723, 48.133690571762429 ], [ -2.231865776984023, 48.164133688718721 ], [ -2.170430228172506, 48.255847559117512 ], [ -2.117168507720464, 48.260813379833564 ], [ -2.065972216144871, 48.295178615600605 ], [ -1.982432174105554, 48.280336085841668 ], [ -1.961481245762911, 48.300342190039999 ], [ -1.961492231880982, 48.342068265238197 ], [ -1.931807172363108, 48.356196683829864 ], [ -1.952033002521034, 48.429761139964626 ], [ -1.90887870408892, 48.489350985859289 ], [ -1.925083538574484, 48.544766026830644 ], [ -1.948544880126293, 48.538300348455202 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-50", "NAME_1": "Manche" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.589670928670444, 48.641808267037845 ], [ -1.356556769999941, 48.643255927000041 ], [ -1.394602016999954, 48.66828034100007 ], [ -1.443267381999931, 48.662827867000033 ], [ -1.455799933999913, 48.683417059000078 ], [ -1.502674933999913, 48.695502020000049 ], [ -1.516468878999945, 48.725165106000077 ], [ -1.553618943999936, 48.747137762000079 ], [ -1.566761847999942, 48.822170315000051 ], [ -1.602935350999928, 48.849351304000038 ], [ -1.578521287999934, 48.862616278000075 ], [ -1.563710089999915, 48.922105210000041 ], [ -1.542795376999948, 48.935248114000046 ], [ -1.563059048999946, 48.957586981000077 ], [ -1.545765753999945, 49.030340887000079 ], [ -1.507964647999927, 49.033677476000037 ], [ -1.549712693999936, 49.039780992000033 ], [ -1.579457160999937, 49.013169664000088 ], [ -1.593576626999948, 49.028998114000046 ], [ -1.589344855999911, 49.082098700000074 ], [ -1.60773678299995, 49.102728583000044 ], [ -1.569488084999932, 49.143540757000039 ], [ -1.589344855999911, 49.143540757000039 ], [ -1.610422329999949, 49.215887762000079 ], [ -1.548410610999952, 49.225490627000056 ], [ -1.616851365999935, 49.238226630000042 ], [ -1.624663865999935, 49.219305731000077 ], [ -1.671864386999914, 49.280096747000073 ], [ -1.658192511999914, 49.287543036000045 ], [ -1.699086066999939, 49.313544012000079 ], [ -1.706654425999943, 49.329169012000079 ], [ -1.68618730399993, 49.335353908000059 ], [ -1.699126756999931, 49.355861721000053 ], [ -1.714751756999931, 49.33852773600006 ], [ -1.775502081999946, 49.370103257000039 ], [ -1.767974412999934, 49.383734442000048 ], [ -1.816477016999954, 49.383734442000048 ], [ -1.819406704999949, 49.452053127000056 ], [ -1.884673631999931, 49.530910549000055 ], [ -1.843739386999914, 49.571844794000071 ], [ -1.839507615999935, 49.61977773600006 ], [ -1.869496222999942, 49.661688544000071 ], [ -1.94562740799995, 49.677964585000041 ], [ -1.935210740999935, 49.724107164000088 ], [ -1.839426235999952, 49.715399481000077 ], [ -1.816477016999954, 49.691636460000041 ], [ -1.617176886999914, 49.664292710000041 ], [ -1.606678839999915, 49.650051174000055 ], [ -1.511463995999918, 49.662543036000045 ], [ -1.45571855399993, 49.702215887000079 ], [ -1.409494594999956, 49.71157461100006 ], [ -1.263050910999937, 49.695502020000049 ], [ -1.227772589999915, 49.624090887000079 ], [ -1.264027472999942, 49.589260158000059 ], [ -1.30142167899993, 49.581773179000038 ], [ -1.306263800999943, 49.558091539000088 ], [ -1.261586066999939, 49.493150132000039 ], [ -1.175689256999931, 49.415228583000044 ], [ -1.181996222999942, 49.356187242000033 ], [ -1.151722785999937, 49.362697658000059 ], [ -1.118763772743309, 49.34620165683242 ], [ -1.137056165109925, 49.298109561706895 ], [ -1.122784924284815, 49.276202823101755 ], [ -1.008922615286451, 49.19737591566593 ], [ -0.912407719540624, 49.209109314643115 ], [ -0.922449223053206, 49.162966734527174 ], [ -0.884282718472662, 49.108386653821015 ], [ -0.862639651198947, 49.026384697995411 ], [ -0.983258552340317, 48.95331462706838 ], [ -1.05646045938272, 48.953105886327592 ], [ -1.064194834024363, 48.926848561312056 ], [ -1.03776172752174, 48.898295093543709 ], [ -1.131178479503262, 48.850010179925846 ], [ -1.146910901916613, 48.821808274232467 ], [ -1.108195079739176, 48.81535929969192 ], [ -1.092166026740756, 48.787190353252186 ], [ -1.044968759500648, 48.775160322790612 ], [ -0.897378421277153, 48.772402754983148 ], [ -0.840886720046115, 48.75229777302377 ], [ -0.842457765513473, 48.72852335836626 ], [ -0.736813230246412, 48.686127116473244 ], [ -0.766674071251373, 48.659858805339582 ], [ -0.755907468654755, 48.602839759647168 ], [ -0.785691405933619, 48.559597570471453 ], [ -0.862705568806973, 48.501798496003744 ], [ -1.02871997964337, 48.493108310200341 ], [ -1.247820329444664, 48.537009679053426 ], [ -1.410165306683552, 48.463247469195323 ], [ -1.448254907537944, 48.465752352688924 ], [ -1.498693141675176, 48.494866123272971 ], [ -1.589670928670444, 48.641808267037845 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-14", "NAME_1": "Calvados" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.118763772743309, 49.34620165683242 ], [ -1.103423631999931, 49.349025783000059 ], [ -1.106353318999936, 49.379461981000077 ], [ -1.072255011999914, 49.39679596600007 ], [ -0.940419074999909, 49.392279364000046 ], [ -0.822132941999939, 49.362697658000059 ], [ -0.411122199999909, 49.342759507000039 ], [ -0.219471808999913, 49.280096747000073 ], [ 0.012868686000047, 49.33462148600006 ], [ 0.162364129000082, 49.415187893000052 ], [ 0.294264260238489, 49.434715000239002 ], [ 0.304987347288261, 49.313061955344949 ], [ 0.325421918186976, 49.287892276707169 ], [ 0.376486372747877, 49.268622255912362 ], [ 0.33519975036819, 49.237816590763032 ], [ 0.420871140690565, 49.13731365769911 ], [ 0.414850631951083, 49.076284602452404 ], [ 0.373542037335142, 49.065485041501461 ], [ 0.43049516452021, 49.009125175486417 ], [ 0.426452194812953, 48.959313161772968 ], [ 0.41717666547072, 48.946120917646226 ], [ 0.379826216506672, 48.963520925949922 ], [ 0.328542035086855, 48.944734304244719 ], [ 0.267787638188963, 48.969321707830545 ], [ 0.238849649092003, 48.942493092981806 ], [ 0.155199743173625, 48.925222584354742 ], [ 0.127624058803235, 48.952139089947025 ], [ 0.105058139621462, 48.947942311888141 ], [ 0.056520540790302, 48.902568775328689 ], [ -0.140365453702714, 48.825499680965493 ], [ -0.310345928721631, 48.856195482235705 ], [ -0.345161603425254, 48.82768595983913 ], [ -0.44127000560627, 48.873433031609068 ], [ -0.612898430718019, 48.831915696252338 ], [ -0.690945308479229, 48.842627366459794 ], [ -0.708611324552976, 48.799604904142996 ], [ -0.775660887639845, 48.787585860698869 ], [ -0.840886720046115, 48.75229777302377 ], [ -0.956704595840449, 48.783004561311429 ], [ -1.044968759500648, 48.775160322790612 ], [ -1.092166026740756, 48.787190353252186 ], [ -1.108195079739176, 48.81535929969192 ], [ -1.146910901916613, 48.821808274232467 ], [ -1.14386768874283, 48.836277268780918 ], [ -1.03776172752174, 48.898295093543709 ], [ -1.064194834024363, 48.926848561312056 ], [ -1.05646045938272, 48.953105886327592 ], [ -0.983258552340317, 48.95331462706838 ], [ -0.862639651198947, 49.026384697995411 ], [ -0.884282718472662, 49.108386653821015 ], [ -0.922449223053206, 49.162966734527174 ], [ -0.912407719540624, 49.209109314643115 ], [ -1.008922615286451, 49.19737591566593 ], [ -1.122784924284815, 49.276202823101755 ], [ -1.137056165109925, 49.298109561706895 ], [ -1.118763772743309, 49.34620165683242 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-27", "NAME_1": "Eure" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.294264260238489, 49.434715000239002 ], [ 0.411306186000047, 49.452053127000056 ], [ 0.50186235476383, 49.493600292219696 ], [ 0.572899954269474, 49.444040963719488 ], [ 0.633786187282681, 49.444601266535187 ], [ 0.663976618126412, 49.407709175038349 ], [ 0.804689514209713, 49.419860054597791 ], [ 0.919101139905649, 49.361291937472913 ], [ 0.920045964050018, 49.338594182175768 ], [ 0.859489320875468, 49.34532880208252 ], [ 0.873551821859053, 49.315105411985144 ], [ 1.022460518538082, 49.256306581883223 ], [ 1.044499094157857, 49.261843691533102 ], [ 1.045905344256198, 49.291671573284475 ], [ 1.127379956519746, 49.313127872952975 ], [ 1.170973707770372, 49.346471379950174 ], [ 1.279254961747085, 49.355183538889207 ], [ 1.350116781564225, 49.442008493197363 ], [ 1.392480064203596, 49.453862741272474 ], [ 1.539015714403661, 49.43975629581638 ], [ 1.677179781621589, 49.398689399396233 ], [ 1.71798408859479, 49.410994334620796 ], [ 1.783439552093625, 49.251208925051799 ], [ 1.760807715303827, 49.247506532200703 ], [ 1.7255635730005, 49.27043500047489 ], [ 1.692165134513345, 49.252318544565128 ], [ 1.698053806238136, 49.230664491173286 ], [ 1.61987509236161, 49.082590754759508 ], [ 1.444533289179958, 49.042688409342588 ], [ 1.45152059340063, 48.986152762739778 ], [ 1.488302821917671, 48.97332073126671 ], [ 1.492807216679694, 48.939548757569071 ], [ 1.448092858898292, 48.917268482854183 ], [ 1.451366785049061, 48.870763354545147 ], [ 1.372397055379793, 48.830795090620938 ], [ 1.334054769312161, 48.780225020368391 ], [ 1.248998613295385, 48.749737958939647 ], [ 1.108900951517683, 48.778214522082521 ], [ 1.096815990465586, 48.752374677649243 ], [ 1.038918039136206, 48.747727460653778 ], [ 0.99949909190957, 48.717591961299945 ], [ 0.872738832930793, 48.698970134963758 ], [ 0.816422913186898, 48.665088297387001 ], [ 0.729960507971043, 48.706309002158719 ], [ 0.758371153505891, 48.743662519609586 ], [ 0.747165098090818, 48.770073652976691 ], [ 0.659977594690247, 48.803406173855819 ], [ 0.599772514489928, 48.873861499208772 ], [ 0.540512258433978, 48.867478442276251 ], [ 0.40113969394173, 48.897174487912253 ], [ 0.43049516452021, 49.009125175486417 ], [ 0.373542037335142, 49.065485041501461 ], [ 0.414850631951083, 49.076284602452404 ], [ 0.408126999061722, 49.106200374947321 ], [ 0.422585007492103, 49.130436215558859 ], [ 0.38455033812761, 49.195134704403074 ], [ 0.33519975036819, 49.237816590763032 ], [ 0.376486372747877, 49.268622255912362 ], [ 0.325421918186976, 49.287892276707169 ], [ 0.304987347288261, 49.313061955344949 ], [ 0.294264260238489, 49.434715000239002 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-76", "NAME_1": "Seine-Maritime" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.493174675000091, 49.49359772300005 ], [ 0.422129754000082, 49.464422919000071 ], [ 0.33961022200009, 49.456732489000046 ], [ 0.12435957100007, 49.48578522300005 ], [ 0.075368686000047, 49.52407461100006 ], [ 0.170909050000091, 49.691636460000041 ], [ 0.235850457000083, 49.729315497000073 ], [ 0.596690300000091, 49.857245184000078 ], [ 0.674815300000091, 49.875799872000073 ], [ 0.760915561000047, 49.875067450000074 ], [ 1.172618035000085, 49.961004950000074 ], [ 1.373068742764048, 50.065719674367529 ], [ 1.516383877613862, 50.00067428558981 ], [ 1.680871188354672, 49.888481898920475 ], [ 1.753468847209547, 49.776805868795805 ], [ 1.679157321553134, 49.697045124233057 ], [ 1.729430760321293, 49.693760211964161 ], [ 1.730353612229408, 49.676709430196013 ], [ 1.680871188354672, 49.645079790000295 ], [ 1.712533786904714, 49.509893017448746 ], [ 1.761576757960995, 49.508398876606861 ], [ 1.767926855639871, 49.489897899368543 ], [ 1.737494725701026, 49.464629343869092 ], [ 1.71798408859479, 49.410994334620796 ], [ 1.677179781621589, 49.398689399396233 ], [ 1.539015714403661, 49.43975629581638 ], [ 1.392480064203596, 49.453862741272474 ], [ 1.350116781564225, 49.442008493197363 ], [ 1.266510821017562, 49.348064397653786 ], [ 1.170973707770372, 49.346471379950174 ], [ 1.127379956519746, 49.313127872952975 ], [ 1.045905344256198, 49.291671573284475 ], [ 1.044499094157857, 49.261843691533102 ], [ 1.022460518538082, 49.256306581883223 ], [ 0.873551821859053, 49.315105411985144 ], [ 0.859489320875468, 49.34532880208252 ], [ 0.920045964050018, 49.338594182175768 ], [ 0.919101139905649, 49.361291937472913 ], [ 0.818795960565126, 49.415828071907981 ], [ 0.663976618126412, 49.407709175038349 ], [ 0.633786187282681, 49.444601266535187 ], [ 0.572899954269474, 49.444040963719488 ], [ 0.493174675000091, 49.49359772300005 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-80", "NAME_1": "Somme" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.373068742764048, 50.065719674367529 ], [ 1.46452884200005, 50.132147528000075 ], [ 1.486827019000089, 50.185044664000088 ], [ 1.521006707000083, 50.214667059000078 ], [ 1.672536655000044, 50.192531643000052 ], [ 1.644541863000086, 50.212388414000088 ], [ 1.665049675000091, 50.219794012000079 ], [ 1.625498894000089, 50.224310614000046 ], [ 1.541514519000089, 50.277899481000077 ], [ 1.551524285000085, 50.34906647300005 ], [ 1.57203209700009, 50.375677802000041 ], [ 1.653712984566596, 50.339042218823295 ], [ 1.803742286877025, 50.356774153404444 ], [ 1.887106547429198, 50.313828594813799 ], [ 1.938610455707931, 50.328967755157748 ], [ 1.952101667757745, 50.31990403414386 ], [ 1.935973736998335, 50.296360332463337 ], [ 2.046144640162993, 50.256238260187558 ], [ 2.069259875143132, 50.218533180661723 ], [ 2.09751671232641, 50.204174049093069 ], [ 2.288525020313443, 50.217764138004554 ], [ 2.325153439579537, 50.240242166442783 ], [ 2.364396605319087, 50.214226540522418 ], [ 2.395905395517559, 50.227838601670101 ], [ 2.455956667366308, 50.208667457736965 ], [ 2.467887820066835, 50.194176490952259 ], [ 2.377140746048553, 50.142002415978709 ], [ 2.376635374722753, 50.116580052127688 ], [ 2.395905395517559, 50.095991671978027 ], [ 2.414670044087245, 50.095859836762031 ], [ 2.442311646964924, 50.12476486660529 ], [ 2.567072393775959, 50.134125219103566 ], [ 2.572785284912982, 50.105879368038359 ], [ 2.691042125693514, 50.077952120693794 ], [ 2.710553844684171, 50.128621067808012 ], [ 2.762848768755646, 50.084620822093257 ], [ 2.747358045437409, 50.040093232816389 ], [ 2.832414201454242, 50.071052706317289 ], [ 2.8493111739715, 50.057462618305181 ], [ 2.852409318635125, 50.020559540690215 ], [ 2.868229631792076, 50.018549042404345 ], [ 2.96460170620378, 50.038082734530576 ], [ 2.978708151659873, 50.072623751784704 ], [ 3.022961083487189, 50.075007785281059 ], [ 3.15699429115358, 50.018680878519717 ], [ 3.193073394621479, 49.975581511577445 ], [ 3.084067042460049, 49.861081995137965 ], [ 3.084989894368107, 49.81426924922647 ], [ 3.057018701651771, 49.788264609424175 ], [ 3.1003927269428, 49.765874472628809 ], [ 3.118564114342405, 49.705768268390841 ], [ 3.05240444390995, 49.713843219888645 ], [ 3.052975732843777, 49.694737995362175 ], [ 3.026740380064496, 49.685894000307826 ], [ 2.996549949220764, 49.701164996767147 ], [ 2.935993306945534, 49.693024127661317 ], [ 2.884818988505515, 49.708679645449251 ], [ 2.842543595710367, 49.664822221967938 ], [ 2.80398158278382, 49.657417437164952 ], [ 2.792423965293779, 49.61616377313959 ], [ 2.698644665119161, 49.621602005927798 ], [ 2.644635873346886, 49.575008986875218 ], [ 2.621300911507831, 49.610143265299428 ], [ 2.576081183299948, 49.600101760887526 ], [ 2.521061649775334, 49.6297868204054 ], [ 2.47680871884728, 49.626589798880104 ], [ 2.437631470715814, 49.652814165541258 ], [ 2.357738890037751, 49.664448686757453 ], [ 2.306564571597676, 49.689222857948494 ], [ 2.066425402710138, 49.68445479185516 ], [ 1.972206648817803, 49.715293415358815 ], [ 1.856212991536324, 49.701406696761637 ], [ 1.836503518822326, 49.740309285644969 ], [ 1.754545507469174, 49.765621786516192 ], [ 1.680871188354672, 49.888481898920475 ], [ 1.516383877613862, 50.00067428558981 ], [ 1.373068742764048, 50.065719674367529 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-62", "NAME_1": "Pas-de-Calais" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.594981316000087, 50.372666734000063 ], [ 1.610362175000091, 50.376898505000042 ], [ 1.555186394000089, 50.404771226000037 ], [ 1.573496941000087, 50.445379950000074 ], [ 1.579274936000047, 50.533148505000042 ], [ 1.610362175000091, 50.548163153000075 ], [ 1.57789147200009, 50.588609117000033 ], [ 1.563161655000044, 50.678290106000077 ], [ 1.605642123000052, 50.790025132000039 ], [ 1.580577019000089, 50.868801174000055 ], [ 1.653330925000091, 50.889105536000045 ], [ 1.72982832100007, 50.943915106000077 ], [ 1.921397332000083, 50.996771552000041 ], [ 2.063324013288276, 51.014319513588532 ], [ 2.105668567550367, 50.983676032123185 ], [ 2.187406852044603, 50.878405032066553 ], [ 2.222299431373642, 50.805730468586205 ], [ 2.393422485159533, 50.770793943885394 ], [ 2.35352013974267, 50.73730761465464 ], [ 2.371471800283359, 50.674312006493892 ], [ 2.425129029081404, 50.666819330947362 ], [ 2.489201297501893, 50.633256097091191 ], [ 2.726264294861323, 50.625829339152631 ], [ 2.803102676247477, 50.668445307904619 ], [ 2.839489396418514, 50.656580072812062 ], [ 2.869811663377561, 50.63120165343355 ], [ 2.81116664162721, 50.610371575088095 ], [ 2.790644179984895, 50.541970693392784 ], [ 2.824218399959193, 50.524952869978961 ], [ 2.877062639828978, 50.53099535095464 ], [ 2.910790669054109, 50.503859119402819 ], [ 2.972555807704339, 50.506528797366059 ], [ 3.01491909124303, 50.453530748245385 ], [ 3.058754541588826, 50.442632310432771 ], [ 3.001911278282876, 50.381306624600995 ], [ 3.062533839065395, 50.31644334128714 ], [ 3.019753075843767, 50.267444315602631 ], [ 3.043000146939221, 50.256919413000503 ], [ 3.116696438289978, 50.267598123954258 ], [ 3.169298979963969, 50.224399880150315 ], [ 3.126078763024509, 50.183025367027028 ], [ 3.088265268427392, 50.05002124818202 ], [ 2.989562645000035, 50.076556857612843 ], [ 2.96460170620378, 50.038082734530576 ], [ 2.860011858060773, 50.018032684960417 ], [ 2.832414201454242, 50.071052706317289 ], [ 2.747358045437409, 50.040093232816389 ], [ 2.762848768755646, 50.084620822093257 ], [ 2.710553844684171, 50.128621067808012 ], [ 2.691042125693514, 50.077952120693794 ], [ 2.572785284912982, 50.105879368038359 ], [ 2.567072393775959, 50.134125219103566 ], [ 2.442311646964924, 50.12476486660529 ], [ 2.414670044087245, 50.095859836762031 ], [ 2.395905395517559, 50.095991671978027 ], [ 2.374460081967186, 50.122941135924634 ], [ 2.381491332459007, 50.148572240516444 ], [ 2.467887820066835, 50.194176490952259 ], [ 2.410319458576168, 50.224839333868147 ], [ 2.364396605319087, 50.214226540522418 ], [ 2.325153439579537, 50.240242166442783 ], [ 2.288525020313443, 50.217764138004554 ], [ 2.09751671232641, 50.204174049093069 ], [ 2.069259875143132, 50.218533180661723 ], [ 2.046144640162993, 50.256238260187558 ], [ 1.935973736998335, 50.296360332463337 ], [ 1.952101667757745, 50.31990403414386 ], [ 1.938610455707931, 50.328967755157748 ], [ 1.887106547429198, 50.313828594813799 ], [ 1.803742286877025, 50.356774153404444 ], [ 1.653712984566596, 50.339042218823295 ], [ 1.594981316000087, 50.372666734000063 ] ], [ [ 3.020170555526704, 50.121095433007781 ], [ 3.072355616618381, 50.130796361462899 ], [ 3.062731592788737, 50.173862769151469 ], [ 3.003713035827957, 50.15008835449396 ], [ 3.001383933821501, 50.123435521132365 ], [ 3.020170555526704, 50.121095433007781 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-2B", "NAME_1": "Haute-Corse" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.456553582000083, 42.647406317000048 ], [ 9.48210696700005, 42.620103257000039 ], [ 9.476817254000082, 42.619086005000042 ], [ 9.456553582000083, 42.647406317000048 ] ] ], [ [ [ 8.570485872824747, 42.381781317154037 ], [ 8.598643425000091, 42.387600002000056 ], [ 8.618662957000083, 42.419582424000055 ], [ 8.65951582100007, 42.429877020000049 ], [ 8.676768425000091, 42.472479559000078 ], [ 8.657074415000068, 42.480047919000071 ], [ 8.667491082000083, 42.509711005000042 ], [ 8.71656334700009, 42.53070709800005 ], [ 8.709157748000052, 42.579169012000079 ], [ 8.723480665000068, 42.565497137000079 ], [ 8.786957227000073, 42.561997789000088 ], [ 8.807465040000068, 42.585109768000052 ], [ 8.805430535000085, 42.606431382000039 ], [ 9.049978061000047, 42.662176825000074 ], [ 9.052989129000082, 42.681586005000042 ], [ 9.117849155000044, 42.732001044000071 ], [ 9.236827019000089, 42.722560940000051 ], [ 9.292165561000047, 42.674750067000048 ], [ 9.342539910000085, 42.749090887000079 ], [ 9.335459832000083, 42.807603257000039 ], [ 9.305674675000091, 42.839260158000059 ], [ 9.333018425000091, 42.867132880000042 ], [ 9.330251498000052, 42.903550523000035 ], [ 9.360199415000068, 42.928615627000056 ], [ 9.346690300000091, 43.003729559000078 ], [ 9.422373894000089, 43.017401434000078 ], [ 9.464040561000047, 42.990057684000078 ], [ 9.453868035000085, 42.963812567000048 ], [ 9.47006269600007, 42.942287502000056 ], [ 9.482758009000065, 42.802313544000071 ], [ 9.442881707000083, 42.640570380000042 ], [ 9.476898634000065, 42.579169012000079 ], [ 9.511892123000052, 42.565497137000079 ], [ 9.48959394600007, 42.612616278000075 ], [ 9.528086785000085, 42.563544012000079 ], [ 9.545909050000091, 42.435126044000071 ], [ 9.532237175000091, 42.373724677000041 ], [ 9.559580925000091, 42.294582424000055 ], [ 9.559580925000091, 42.146551825000074 ], [ 9.545583530000044, 42.103989976000037 ], [ 9.403168165000068, 41.952948309000078 ], [ 9.395832225648281, 41.860441163183417 ], [ 9.312831928450748, 41.83405288073584 ], [ 9.227424210359004, 41.855498194286213 ], [ 9.244716692121642, 41.90678237570603 ], [ 9.220612686726099, 41.959340971108929 ], [ 9.221140030288154, 42.027533112962772 ], [ 9.155705458040416, 42.030916902093338 ], [ 9.12863514409662, 42.097966465180207 ], [ 9.062739145894852, 42.157325598097827 ], [ 9.042722055578395, 42.204929359802065 ], [ 8.993371466919655, 42.21278458444101 ], [ 8.887067751975167, 42.267716227222081 ], [ 8.868083376546565, 42.321428387510025 ], [ 8.70944079215883, 42.342192548247453 ], [ 8.570485872824747, 42.381781317154037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-2A", "NAME_1": "Corse-du-Sud" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.395832225648281, 41.860441163183417 ], [ 9.401621941000087, 41.706447658000059 ], [ 9.372243686000047, 41.68390534100007 ], [ 9.377940300000091, 41.656439520000049 ], [ 9.345225457000083, 41.640326239000046 ], [ 9.346690300000091, 41.619574286000045 ], [ 9.292165561000047, 41.62641022300005 ], [ 9.278575066000087, 41.598374742000033 ], [ 9.34506269600007, 41.604478257000039 ], [ 9.350596550000091, 41.581203518000052 ], [ 9.264659050000091, 41.530829169000071 ], [ 9.279144727000073, 41.49164459800005 ], [ 9.27084394600007, 41.468736070000034 ], [ 9.21070397200009, 41.448228257000039 ], [ 9.223317905000044, 41.427313544000071 ], [ 9.21070397200009, 41.407294012000079 ], [ 9.250336134000065, 41.427801825000074 ], [ 9.223155144000089, 41.37250397300005 ], [ 9.20671634200005, 41.365912177000041 ], [ 9.096446160000085, 41.403509833000044 ], [ 9.121348504000082, 41.434637762000079 ], [ 9.066579623000052, 41.461900132000039 ], [ 9.07984459700009, 41.482367255000042 ], [ 9.03874759200005, 41.461900132000039 ], [ 9.03874759200005, 41.476141669000071 ], [ 8.935720248000052, 41.489203192000048 ], [ 8.83961022200009, 41.530829169000071 ], [ 8.85328209700009, 41.543850002000056 ], [ 8.797211134000065, 41.557074286000045 ], [ 8.793223504000082, 41.587307033000059 ], [ 8.778086785000085, 41.591620184000078 ], [ 8.801768425000091, 41.639064846000053 ], [ 8.872569207000083, 41.651068427000041 ], [ 8.922699415000068, 41.694647528000075 ], [ 8.78882897200009, 41.712551174000055 ], [ 8.776133660000085, 41.722398179000038 ], [ 8.78492272200009, 41.74249909100007 ], [ 8.695567254000082, 41.729437567000048 ], [ 8.702972852000073, 41.74249909100007 ], [ 8.655121290000068, 41.749904690000051 ], [ 8.717539910000085, 41.772040106000077 ], [ 8.709157748000052, 41.804510809000078 ], [ 8.78492272200009, 41.824408270000049 ], [ 8.750824415000068, 41.845526434000078 ], [ 8.791758660000085, 41.859116929000038 ], [ 8.778086785000085, 41.872788804000038 ], [ 8.805430535000085, 41.906927802000041 ], [ 8.764414910000085, 41.934271552000041 ], [ 8.614268425000091, 41.900783596000053 ], [ 8.607269727000073, 41.913763739000046 ], [ 8.614431186000047, 41.944077867000033 ], [ 8.586273634000065, 41.968980210000041 ], [ 8.655039910000085, 41.978705145000049 ], [ 8.664561394000089, 42.014471747000073 ], [ 8.743418816000087, 42.044134833000044 ], [ 8.744965040000068, 42.056586005000042 ], [ 8.699229363000086, 42.109320380000042 ], [ 8.660899285000085, 42.105454820000034 ], [ 8.559580925000091, 42.153998114000046 ], [ 8.593760613000086, 42.174505927000041 ], [ 8.56576582100007, 42.174505927000041 ], [ 8.58179772200009, 42.194525458000044 ], [ 8.549489780000044, 42.242254950000074 ], [ 8.688731316000087, 42.280951239000046 ], [ 8.625173373000052, 42.319159247000073 ], [ 8.605316602000073, 42.310451565000051 ], [ 8.599864129000082, 42.321926174000055 ], [ 8.634776238000086, 42.338934637000079 ], [ 8.612803582000083, 42.352443752000056 ], [ 8.55209394600007, 42.338934637000079 ], [ 8.55209394600007, 42.386704820000034 ], [ 8.70944079215883, 42.342192548247453 ], [ 8.868083376546565, 42.321428387510025 ], [ 8.887067751975167, 42.267716227222081 ], [ 8.993371466919655, 42.21278458444101 ], [ 9.042722055578395, 42.204929359802065 ], [ 9.062739145894852, 42.157325598097827 ], [ 9.12863514409662, 42.097966465180207 ], [ 9.155705458040416, 42.030916902093338 ], [ 9.221140030288154, 42.027533112962772 ], [ 9.220612686726099, 41.959340971108929 ], [ 9.244716692121642, 41.90678237570603 ], [ 9.227424210359004, 41.855498194286213 ], [ 9.312831928450748, 41.83405288073584 ], [ 9.395832225648281, 41.860441163183417 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-32", "NAME_1": "Gers" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.104376987707781, 43.508512172598671 ], [ 0.024550324637744, 43.535549527288822 ], [ -0.005859833064846, 43.608696502841326 ], [ -0.063164522324882, 43.604851287756674 ], [ -0.109680637651309, 43.574803679146441 ], [ -0.243856668450519, 43.594293425900844 ], [ -0.267905741456786, 43.628988251506598 ], [ -0.245251931531413, 43.659640108304359 ], [ -0.252667703351847, 43.686479709271168 ], [ -0.22210373729763, 43.692730930088317 ], [ -0.196912086423652, 43.732600316251592 ], [ -0.208118141838781, 43.788026344240393 ], [ -0.183442847509411, 43.835355447595816 ], [ -0.221916969692415, 43.89866965857783 ], [ -0.167479712119018, 43.930914533079203 ], [ -0.100012668449892, 43.928376691231279 ], [ -0.023976288974552, 43.971113509081135 ], [ 0.002973174972055, 43.958709944308453 ], [ -0.000278778043196, 43.91494041157074 ], [ 0.06436477931112, 43.908535381502645 ], [ 0.089743197790312, 43.972871321254445 ], [ 0.123998570577555, 43.981297835726537 ], [ 0.157067419225996, 43.96912498393084 ], [ 0.211867225891751, 44.017102279946243 ], [ 0.303734905541432, 43.996645736811274 ], [ 0.466310594858044, 44.056334459567609 ], [ 0.592499564902994, 44.07281395240193 ], [ 0.658900934430562, 44.03756981009866 ], [ 0.74173785142068, 44.06702415753881 ], [ 0.764171934487194, 44.029582749344399 ], [ 0.837978089717069, 44.050456773960946 ], [ 0.839406312950985, 44.008313217281113 ], [ 0.760128965679201, 43.945240705394212 ], [ 0.801877014012973, 43.922641827858058 ], [ 0.873771547818649, 43.919576641548758 ], [ 0.908180728957461, 43.816074440682883 ], [ 0.897392155023908, 43.788454810940721 ], [ 0.953927801626719, 43.787334205309321 ], [ 1.067350656907252, 43.669967257183146 ], [ 1.192331130577202, 43.59878683454474 ], [ 1.177301833212994, 43.561675017088362 ], [ 1.132741284682538, 43.536494351433134 ], [ 1.071503489594363, 43.537142544992435 ], [ 1.054914132880924, 43.520388393809299 ], [ 1.035182687031352, 43.475476283203875 ], [ 1.025338937242168, 43.377478232734234 ], [ 0.999586982653113, 43.359131063847485 ], [ 0.911872135690487, 43.407262169113778 ], [ 0.788869201052762, 43.413667198282553 ], [ 0.638312555180278, 43.312516071659331 ], [ 0.422804734351018, 43.33176411931862 ], [ 0.387472701304091, 43.362756552073222 ], [ 0.35108598113311, 43.347782186198913 ], [ 0.292814494593244, 43.379829306976887 ], [ 0.195717322896144, 43.371611533245641 ], [ 0.143993688657815, 43.412348838927755 ], [ 0.149618688151918, 43.45640401703173 ], [ 0.123603062231552, 43.504886684372934 ], [ 0.104376987707781, 43.508512172598671 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-87", "NAME_1": "Haute-Vienne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.893566508987192, 45.696164844332088 ], [ 1.909386822144143, 45.681717822019834 ], [ 1.872956156601333, 45.668369433102839 ], [ 1.789328223818472, 45.678037402304255 ], [ 1.750150976586269, 45.645605760197668 ], [ 1.566393645050653, 45.559802534659241 ], [ 1.507836514043902, 45.555693647343901 ], [ 1.444357507692814, 45.58429106048402 ], [ 1.407223717100862, 45.527568646275995 ], [ 1.307467853558592, 45.494049357791596 ], [ 1.255302466035971, 45.446473417514198 ], [ 1.130609937298743, 45.482986125509285 ], [ 1.158712965231132, 45.52824979908894 ], [ 1.082643626502147, 45.546937543932472 ], [ 1.017472725585833, 45.611328415174171 ], [ 0.872277407876084, 45.619798875018034 ], [ 0.836110413664642, 45.597013228977289 ], [ 0.785529357293967, 45.601924118203442 ], [ 0.761007872215544, 45.614316696858054 ], [ 0.770785704396758, 45.661810594683175 ], [ 0.734596737949062, 45.692506396852707 ], [ 0.635895562430278, 45.710337208295527 ], [ 0.711042050150468, 45.797151176485556 ], [ 0.785836974896483, 45.802578422256374 ], [ 0.810050842372448, 45.921900937178464 ], [ 0.87662799338716, 45.933755185253574 ], [ 0.923803288391014, 45.965725401406132 ], [ 0.891811100002258, 46.017141418941321 ], [ 0.84742633205957, 46.020140686743275 ], [ 0.809127991363709, 46.060493471096777 ], [ 0.796361877498612, 46.13289337622831 ], [ 0.827585023230199, 46.139869695230232 ], [ 0.794801819048701, 46.22627716895613 ], [ 0.901720768298787, 46.277484446649851 ], [ 0.987106513254957, 46.283526927625587 ], [ 1.057990305308351, 46.35970612933437 ], [ 1.177016188746109, 46.387018142373336 ], [ 1.221093339086337, 46.36890168646363 ], [ 1.290768634764675, 46.371593336663125 ], [ 1.334670003617759, 46.397059646785237 ], [ 1.439962975910589, 46.336030591538531 ], [ 1.385119223873062, 46.23731842990162 ], [ 1.386569419343232, 46.209061592718285 ], [ 1.487665614476498, 46.147307439286863 ], [ 1.493378505613521, 46.084267886653606 ], [ 1.526403408890189, 46.069502260620823 ], [ 1.551540129173588, 45.997366027719977 ], [ 1.578127044027838, 45.99388336172774 ], [ 1.517350673994372, 45.952058408768551 ], [ 1.515856534051807, 45.93116241191575 ], [ 1.609152436036084, 45.915649716361315 ], [ 1.625148529780802, 45.84511748638289 ], [ 1.755797949215946, 45.856455377913335 ], [ 1.799875099556175, 45.818299858551597 ], [ 1.868319925723995, 45.793174125285645 ], [ 1.885304789884117, 45.773003226617618 ], [ 1.871000589805362, 45.709908741595143 ], [ 1.893566508987192, 45.696164844332088 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-19", "NAME_1": "Corrèze" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.864430765267571, 45.667578417310096 ], [ 1.909386822144143, 45.681717822019834 ], [ 1.893566508987192, 45.696164844332088 ], [ 1.980226668825708, 45.703734424504091 ], [ 2.040563585141342, 45.760346975732318 ], [ 2.173717887170767, 45.726223439060448 ], [ 2.288964473131898, 45.675224902107516 ], [ 2.328097775891649, 45.679839159849337 ], [ 2.363737425641659, 45.712545460304739 ], [ 2.434665162167505, 45.708491505378618 ], [ 2.489943776883763, 45.736086327322141 ], [ 2.524687138900333, 45.697724902781999 ], [ 2.52049036084145, 45.644375291586414 ], [ 2.48137903121733, 45.623731979946911 ], [ 2.46509729210635, 45.584554732714707 ], [ 2.495397586829142, 45.545179730859843 ], [ 2.499418582501562, 45.491017131635317 ], [ 2.518644657924597, 45.479239787286303 ], [ 2.488673953939838, 45.396974159230012 ], [ 2.351828245177387, 45.406631142313358 ], [ 2.369032835297105, 45.376605505939324 ], [ 2.347785276369393, 45.339713414442485 ], [ 2.194635856259765, 45.223697784924809 ], [ 2.206874626562751, 45.159493681288325 ], [ 2.160666128838784, 45.08623684275608 ], [ 2.107448352859194, 45.050948755080981 ], [ 2.131618275862706, 44.992655296304861 ], [ 1.953507917856086, 44.960871847757517 ], [ 1.917472759760017, 44.970386007708044 ], [ 1.766212988838333, 44.935240743165764 ], [ 1.609811615713511, 45.029085961847613 ], [ 1.546178800111534, 45.0276357663775 ], [ 1.522580166941168, 45.045049097238007 ], [ 1.458639734636051, 45.015078392353928 ], [ 1.397511802527674, 45.084742701914138 ], [ 1.397050376573588, 45.131917996917991 ], [ 1.321969807360688, 45.133939481321988 ], [ 1.280353595142287, 45.154044462381989 ], [ 1.288263751271074, 45.194968536568695 ], [ 1.238913163511654, 45.213161896204497 ], [ 1.282550861033371, 45.254547395445911 ], [ 1.243263749922107, 45.289483921046099 ], [ 1.253634844172723, 45.320355503803455 ], [ 1.32693562807674, 45.376374792962281 ], [ 1.272926837203784, 45.390250526340708 ], [ 1.29090046998067, 45.433635537749865 ], [ 1.255302466035971, 45.446473417514198 ], [ 1.281100665563258, 45.477767619579936 ], [ 1.407223717100862, 45.527568646275995 ], [ 1.444357507692814, 45.58429106048402 ], [ 1.507836514043902, 45.555693647343901 ], [ 1.566393645050653, 45.559802534659241 ], [ 1.750150976586269, 45.645605760197668 ], [ 1.789328223818472, 45.678037402304255 ], [ 1.864430765267571, 45.667578417310096 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-82", "NAME_1": "Tarn-et-Garonne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.97744250986392, 44.170645428643581 ], [ 1.853839945057416, 44.146762929865304 ], [ 1.777968360051773, 44.096863025408254 ], [ 1.686144625773863, 44.124625477383859 ], [ 1.658634859011499, 44.116605458275274 ], [ 1.651911226122195, 44.09732445136234 ], [ 1.699152438734075, 44.051841050923713 ], [ 1.681200778193329, 44.015476303888306 ], [ 1.617238373652015, 43.966477278203797 ], [ 1.55182577364053, 43.959017561011592 ], [ 1.55569296096138, 43.91832420070125 ], [ 1.522448330825796, 43.902372051428983 ], [ 1.48393026327102, 43.907326885127645 ], [ 1.440138757397733, 43.878740459004973 ], [ 1.373649497126564, 43.883947977916819 ], [ 1.299557697429805, 43.850813211660352 ], [ 1.358356527531726, 43.821314919747749 ], [ 1.24616414086239, 43.774337378467237 ], [ 1.221598709512818, 43.773777075651481 ], [ 1.164843336950412, 43.815634987864371 ], [ 0.897392155023908, 43.788454810940721 ], [ 0.908180728957461, 43.816074440682883 ], [ 0.884669986530639, 43.907458721242961 ], [ 0.760128965679201, 43.945240705394212 ], [ 0.839406312950985, 44.008313217281113 ], [ 0.847843812641827, 44.039712144499845 ], [ 0.818927795781121, 44.052928697301525 ], [ 0.764171934487194, 44.029582749344399 ], [ 0.74173785142068, 44.06702415753881 ], [ 0.758371153505891, 44.105366443606442 ], [ 0.807897521853135, 44.145422597374932 ], [ 0.894294010360284, 44.14965233378814 ], [ 0.871815981921998, 44.1808644934016 ], [ 0.905917545458351, 44.201024406850877 ], [ 0.947204167838038, 44.272907954538425 ], [ 0.886537661683747, 44.312645504586328 ], [ 0.901105533993189, 44.36711572141337 ], [ 0.92008990942179, 44.378991942624054 ], [ 0.969528387924754, 44.362798094256618 ], [ 1.051332590027016, 44.367785887208925 ], [ 1.118942455929584, 44.39274682600518 ], [ 1.128632397367255, 44.31615014371414 ], [ 1.2169624795348, 44.276104976063777 ], [ 1.285143634371195, 44.281631098696209 ], [ 1.299645588173348, 44.268886957966686 ], [ 1.287538653985678, 44.23408226938119 ], [ 1.364333090000116, 44.220481194351635 ], [ 1.437106530342078, 44.24946312882031 ], [ 1.473603114392176, 44.284146968307937 ], [ 1.544904386128508, 44.234192132360988 ], [ 1.566086027448193, 44.234741449058617 ], [ 1.581225188691519, 44.243882073798659 ], [ 1.57333700479893, 44.294572994048394 ], [ 1.616711030089959, 44.29760522110405 ], [ 1.643210054200608, 44.270029535834396 ], [ 1.684540621952124, 44.301670162148241 ], [ 1.767399512077816, 44.32816918715821 ], [ 1.882052836868922, 44.339990475979675 ], [ 1.868913187793396, 44.292595455016226 ], [ 1.970646590367835, 44.276291743668992 ], [ 1.962736433339728, 44.249858637166369 ], [ 1.920417096072129, 44.235235833366971 ], [ 1.908288189648204, 44.21237328360013 ], [ 1.918241803316562, 44.189862296807519 ], [ 1.97744250986392, 44.170645428643581 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-81", "NAME_1": "Tarn" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.967790144799324, 44.162418447653238 ], [ 1.97744250986392, 44.170645428643581 ], [ 1.990158309358492, 44.149344717085 ], [ 2.13370567787473, 44.194509513802984 ], [ 2.234230584074169, 44.143686757437877 ], [ 2.381161742620293, 44.099785388584792 ], [ 2.41027551320434, 44.055807116005553 ], [ 2.476413210501278, 44.034471665434978 ], [ 2.521588994236708, 43.980715559775263 ], [ 2.514975224327145, 43.950876691905762 ], [ 2.550746710192527, 43.917478253418665 ], [ 2.585859015481162, 43.829499734225351 ], [ 2.672431284576135, 43.753342504752766 ], [ 2.740634412548104, 43.729018773397627 ], [ 2.817275040210916, 43.754748754851107 ], [ 2.903627582446973, 43.737412328616074 ], [ 2.934477192968075, 43.693664768114559 ], [ 2.885631976534455, 43.652894503178743 ], [ 2.775636854856941, 43.617903046088657 ], [ 2.688229625496831, 43.639249482777359 ], [ 2.641383920331634, 43.633097138821881 ], [ 2.621213020764287, 43.565201628452371 ], [ 2.6573360696039, 43.529792691679347 ], [ 2.650348764483908, 43.490417689824483 ], [ 2.662038218089265, 43.469159143879381 ], [ 2.60587610669694, 43.430608117070904 ], [ 2.367165160143998, 43.424818322207784 ], [ 2.249875116643295, 43.441792199350516 ], [ 2.22908898277035, 43.427070519588767 ], [ 2.231418084776806, 43.396012168326877 ], [ 2.217157830069766, 43.384201865623595 ], [ 2.16717003486923, 43.400967002924801 ], [ 2.063371203418285, 43.398593955546573 ], [ 2.025446397033591, 43.439265344520038 ], [ 2.053131944383722, 43.486111048785858 ], [ 2.043793565920339, 43.498305873717072 ], [ 2.011317978441923, 43.511006069974144 ], [ 1.982863387535303, 43.485792445964591 ], [ 1.950036237981976, 43.481958216998066 ], [ 1.821144631619461, 43.578626921994839 ], [ 1.687814548102892, 43.630779023832872 ], [ 1.728859471387466, 43.657464815548792 ], [ 1.726310643421471, 43.673164278708498 ], [ 1.681486422660271, 43.710243137810551 ], [ 1.643803316270009, 43.792420875123241 ], [ 1.580324309918979, 43.8143276146277 ], [ 1.548947354936445, 43.884079814032191 ], [ 1.55182577364053, 43.959017561011592 ], [ 1.617238373652015, 43.966477278203797 ], [ 1.697636325655878, 44.031175767048012 ], [ 1.699152438734075, 44.051841050923713 ], [ 1.651911226122195, 44.09732445136234 ], [ 1.658634859011499, 44.116605458275274 ], [ 1.686144625773863, 44.124625477383859 ], [ 1.777968360051773, 44.096863025408254 ], [ 1.853839945057416, 44.146762929865304 ], [ 1.967790144799324, 44.162418447653238 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-38", "NAME_1": "Isère" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.029899636858715, 45.317674839722031 ], [ 4.990063209049822, 45.343932164737566 ], [ 4.877760958501426, 45.300854770930925 ], [ 4.811381562109375, 45.296284457661557 ], [ 4.783454314764811, 45.324892857819123 ], [ 4.75537325906862, 45.402049842925862 ], [ 4.760009489046695, 45.444457070937062 ], [ 4.854733614264887, 45.515011273151686 ], [ 4.870026583859726, 45.549673139503739 ], [ 4.802394744821584, 45.592959274051225 ], [ 5.034755593695706, 45.622149949260745 ], [ 5.056969949903248, 45.660239550115136 ], [ 5.103112530019246, 45.690144336491926 ], [ 5.154462629047089, 45.700262744629924 ], [ 5.145827375632848, 45.725036915820965 ], [ 5.071493875941599, 45.762258597156517 ], [ 5.102431377206301, 45.826188042444187 ], [ 5.239167222988954, 45.785659476603541 ], [ 5.272851305942993, 45.799820854448853 ], [ 5.333495839861087, 45.867991023167178 ], [ 5.36904759886761, 45.87995513422203 ], [ 5.430175530975987, 45.844260552982121 ], [ 5.450192621292445, 45.792987357680374 ], [ 5.565922606343179, 45.701361378025126 ], [ 5.756205816145496, 45.439326455751313 ], [ 5.910805431725294, 45.3941726451514 ], [ 5.915287854251062, 45.47649320469759 ], [ 5.966374281947537, 45.488105754576907 ], [ 6.045036394014346, 45.443545206046394 ], [ 6.125412373782012, 45.435085733219978 ], [ 6.168874288917266, 45.400105263147339 ], [ 6.187463156899184, 45.377616248590982 ], [ 6.189528586674896, 45.329924596143201 ], [ 6.144264913095242, 45.298393832809097 ], [ 6.130949483431891, 45.261249056099018 ], [ 6.155954366700655, 45.161701933297536 ], [ 6.256633081251664, 45.142981229200359 ], [ 6.266366968960426, 45.1247878695645 ], [ 6.239494408739972, 45.099673122416618 ], [ 6.222289818620197, 45.017253686008758 ], [ 6.246218042528653, 45.001488304341763 ], [ 6.325319607413917, 44.999477806055893 ], [ 6.335405057197647, 44.953587912052456 ], [ 6.367704863188862, 44.919793965219299 ], [ 6.365068144479267, 44.868169206943321 ], [ 6.349203885950544, 44.857007097799283 ], [ 6.296139919221901, 44.868015398591751 ], [ 6.138530049722021, 44.857600358969364 ], [ 6.077336200005618, 44.829870866247461 ], [ 6.021987076642233, 44.832507584957057 ], [ 5.973097914836899, 44.80806300360473 ], [ 5.957848890613775, 44.765172377403246 ], [ 5.845041268739521, 44.749670667966939 ], [ 5.812038338598427, 44.712053478285384 ], [ 5.654670168193718, 44.72388575412424 ], [ 5.566296141553664, 44.786672622443575 ], [ 5.548344480113656, 44.793066665494166 ], [ 5.548783933831487, 44.770632582427709 ], [ 5.460190180332518, 44.80002101136057 ], [ 5.493171138237415, 44.995379905758 ], [ 5.470956782029873, 45.055826685053432 ], [ 5.486425533111856, 45.080831569221516 ], [ 5.39082250135732, 45.046719018667773 ], [ 5.245231676200888, 45.063572046712579 ], [ 5.233124742013217, 45.085742457548349 ], [ 5.177489974182947, 45.081172145178357 ], [ 5.190300033419817, 45.149946562084153 ], [ 5.17329319702344, 45.237771272026578 ], [ 5.160373273907453, 45.257436800268067 ], [ 5.122184796191391, 45.245461702195769 ], [ 5.130710187525096, 45.283595248421932 ], [ 5.085182841714754, 45.284276401234877 ], [ 5.048949929895343, 45.319092075938556 ], [ 5.029899636858715, 45.317674839722031 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-26", "NAME_1": "Drôme" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.990063209049822, 45.343932164737566 ], [ 5.020583229732267, 45.319256871307516 ], [ 5.048949929895343, 45.319092075938556 ], [ 5.085182841714754, 45.284276401234877 ], [ 5.130710187525096, 45.283595248421932 ], [ 5.122184796191391, 45.245461702195769 ], [ 5.160373273907453, 45.257436800268067 ], [ 5.190300033419817, 45.149946562084153 ], [ 5.177489974182947, 45.081172145178357 ], [ 5.233124742013217, 45.085742457548349 ], [ 5.245231676200888, 45.063572046712579 ], [ 5.39082250135732, 45.046719018667773 ], [ 5.486425533111856, 45.080831569221516 ], [ 5.470956782029873, 45.055826685053432 ], [ 5.493171138237415, 44.995379905758 ], [ 5.459860590493861, 44.81817042652392 ], [ 5.475768794394355, 44.787068129890258 ], [ 5.548783933831487, 44.770632582427709 ], [ 5.548344480113656, 44.793066665494166 ], [ 5.654670168193718, 44.72388575412424 ], [ 5.812038338598427, 44.712053478285384 ], [ 5.828605721277029, 44.696881358687733 ], [ 5.793053962270506, 44.654902597376918 ], [ 5.657922121208912, 44.64141138622648 ], [ 5.608110107495463, 44.555838872765719 ], [ 5.658229738811372, 44.513717289221518 ], [ 5.651264405927577, 44.495941410167916 ], [ 5.595563720489281, 44.47063989541482 ], [ 5.472363032128214, 44.489327640258352 ], [ 5.468627680922737, 44.464883058906025 ], [ 5.497939205230125, 44.42726587012379 ], [ 5.428132073436416, 44.424782959765764 ], [ 5.459289301560034, 44.370268797566951 ], [ 5.496708736618871, 44.348197263592795 ], [ 5.627028565316039, 44.329674314118279 ], [ 5.623161377995189, 44.30334008447727 ], [ 5.683981692501106, 44.259416742488668 ], [ 5.670951907304641, 44.15110252925831 ], [ 5.603781494220584, 44.181029288770617 ], [ 5.506156978961371, 44.121780018832794 ], [ 5.471264399632332, 44.124856190360845 ], [ 5.398776603757256, 44.163165518074152 ], [ 5.371178946251348, 44.20608910352928 ], [ 5.177489974182947, 44.233884514758529 ], [ 5.162306868467169, 44.254330072674691 ], [ 5.167096907696134, 44.308174069078007 ], [ 5.127260479887241, 44.289343502000975 ], [ 5.052289773654138, 44.296209957123779 ], [ 4.984482154028171, 44.282026607042269 ], [ 4.831772187636318, 44.236675042719014 ], [ 4.759174528781443, 44.320083248642959 ], [ 4.657529016950548, 44.326751950042421 ], [ 4.672118861496244, 44.428529297988689 ], [ 4.703363979464086, 44.474726809594586 ], [ 4.721337613140349, 44.573427985113426 ], [ 4.789452850368718, 44.658462167994628 ], [ 4.796396209217676, 44.696354015125678 ], [ 4.771237517597342, 44.77936671360294 ], [ 4.86180881012848, 44.87506862131977 ], [ 4.892570529906038, 44.949533956227071 ], [ 4.850976289923835, 45.021549340029992 ], [ 4.858403047862339, 45.065615504252094 ], [ 4.844736055224757, 45.101024441025118 ], [ 4.822763398112329, 45.111197780653015 ], [ 4.811381562109375, 45.296284457661557 ], [ 4.877760958501426, 45.300854770930925 ], [ 4.990063209049822, 45.343932164737566 ] ], [ [ 4.897009006160715, 44.312381832355641 ], [ 4.991799048986934, 44.31560082701651 ], [ 5.043412820245464, 44.377739500877226 ], [ 4.992370337920761, 44.423080079082354 ], [ 4.949897192301592, 44.424475343062625 ], [ 4.888659396314097, 44.355964597488139 ], [ 4.880683322577283, 44.332014401343542 ], [ 4.897009006160715, 44.312381832355641 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-12", "NAME_1": "Aveyron" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.141374135807723, 44.581448005121331 ], [ 2.203996208758042, 44.599377693425765 ], [ 2.214213493757711, 44.647201181089599 ], [ 2.229879998563092, 44.652979989834648 ], [ 2.30045617301397, 44.668723399265446 ], [ 2.340050900828373, 44.651903329574964 ], [ 2.471623171272313, 44.668229014057715 ], [ 2.533981572891264, 44.723160656838843 ], [ 2.594032844739957, 44.834990495315083 ], [ 2.734504040828824, 44.934724385721779 ], [ 2.770055799835291, 44.899996600862437 ], [ 2.775768690972313, 44.863104510264918 ], [ 2.830085099447786, 44.86459865020754 ], [ 2.878600726042635, 44.797164565792059 ], [ 2.926567036839288, 44.778092299619914 ], [ 2.906879536361487, 44.756778822184856 ], [ 2.933708150310849, 44.677611338792246 ], [ 3.084396632298706, 44.537260991801304 ], [ 3.08547329255839, 44.489382571748251 ], [ 3.140097318636322, 44.428661134104004 ], [ 3.12552944632688, 44.363545164677589 ], [ 3.147370267323993, 44.310217525718201 ], [ 3.123354153571313, 44.263393793688579 ], [ 3.21302456732991, 44.230709466368751 ], [ 3.240973786910729, 44.192191397914655 ], [ 3.341081212527911, 44.195750968532366 ], [ 3.369601721941876, 44.182776114825799 ], [ 3.377028479880437, 44.168416983257146 ], [ 3.341828282948882, 44.149916006018827 ], [ 3.323656895549277, 44.104443592597704 ], [ 3.28614956974684, 44.080976794643334 ], [ 3.386388831479394, 44.05395042607131 ], [ 3.447516763587771, 44.008060532067873 ], [ 3.356879553448607, 43.938637921602776 ], [ 3.342004064436026, 43.903932109878951 ], [ 3.244687165880009, 43.872027812233739 ], [ 3.209443024476002, 43.818513405669137 ], [ 3.057414209997773, 43.816294167541798 ], [ 3.056183740487199, 43.715571506719641 ], [ 3.034123193530547, 43.690874240154017 ], [ 2.934477192968075, 43.693664768114559 ], [ 2.903627582446973, 43.737412328616074 ], [ 2.817275040210916, 43.754748754851107 ], [ 2.740634412548104, 43.729018773397627 ], [ 2.706884411086719, 43.735588597935418 ], [ 2.585859015481162, 43.829499734225351 ], [ 2.550746710192527, 43.917478253418665 ], [ 2.514975224327145, 43.950876691905762 ], [ 2.521588994236708, 43.980715559775263 ], [ 2.460109499154044, 44.046743394991665 ], [ 2.41027551320434, 44.055807116005553 ], [ 2.381161742620293, 44.099785388584792 ], [ 2.234230584074169, 44.143686757437877 ], [ 2.155172964560677, 44.190642325582814 ], [ 2.110370716935051, 44.192916496099372 ], [ 1.990158309358492, 44.149344717085 ], [ 1.974162215613774, 44.176140372680038 ], [ 1.918241803316562, 44.189862296807519 ], [ 1.908288189648204, 44.21237328360013 ], [ 1.920417096072129, 44.235235833366971 ], [ 1.962736433339728, 44.249858637166369 ], [ 1.970646590367835, 44.276291743668992 ], [ 1.868913187793396, 44.292595455016226 ], [ 1.870736918473995, 44.329685300236406 ], [ 1.902267680908722, 44.361721433996934 ], [ 1.861178812252376, 44.411478516220541 ], [ 1.833998635328726, 44.488338870742268 ], [ 2.0629976682078, 44.586611579560724 ], [ 2.141374135807723, 44.581448005121331 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-46", "NAME_1": "Lot" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.20531456811284, 44.622339120054335 ], [ 2.203996208758042, 44.599377693425765 ], [ 2.179958121869845, 44.589336189013864 ], [ 2.0629976682078, 44.586611579560724 ], [ 1.833998635328726, 44.488338870742268 ], [ 1.902201763300752, 44.349966062783551 ], [ 1.767399512077816, 44.32816918715821 ], [ 1.684540621952124, 44.301670162148241 ], [ 1.643210054200608, 44.270029535834396 ], [ 1.616711030089959, 44.29760522110405 ], [ 1.57333700479893, 44.294572994048394 ], [ 1.581225188691519, 44.243882073798659 ], [ 1.566086027448193, 44.234741449058617 ], [ 1.544904386128508, 44.234192132360988 ], [ 1.473603114392176, 44.284146968307937 ], [ 1.437106530342078, 44.24946312882031 ], [ 1.339679768806263, 44.221689690726635 ], [ 1.280836993332571, 44.240388421688294 ], [ 1.299645588173348, 44.268886957966686 ], [ 1.285143634371195, 44.281631098696209 ], [ 1.250426835629924, 44.269787836739226 ], [ 1.146759840294408, 44.303845454903808 ], [ 1.117008862269188, 44.330696041988745 ], [ 1.128720288110799, 44.383705077227489 ], [ 1.064523960912084, 44.378741181959981 ], [ 1.067460520786369, 44.422245117917839 ], [ 1.037533761274062, 44.446437013157606 ], [ 0.998268623298316, 44.532712651667509 ], [ 1.119909253209471, 44.603629402075228 ], [ 1.189562575752234, 44.682566172490851 ], [ 1.299601642801576, 44.725643567196869 ], [ 1.321662190657548, 44.751428480140248 ], [ 1.313905841981011, 44.788738052219287 ], [ 1.363673910322689, 44.810963394545013 ], [ 1.437260339592967, 44.883440204301962 ], [ 1.446708581935525, 44.932944600412952 ], [ 1.429965416870459, 45.000093040361492 ], [ 1.522580166941168, 45.045049097238007 ], [ 1.546178800111534, 45.0276357663775 ], [ 1.580917571089003, 45.035600853996186 ], [ 1.626247163176004, 45.022889672520364 ], [ 1.777858497071975, 44.933384053231464 ], [ 1.917472759760017, 44.970386007708044 ], [ 1.953507917856086, 44.960871847757517 ], [ 2.058712999405373, 44.975110129328982 ], [ 2.085387805003165, 44.879792742940708 ], [ 2.156798940618614, 44.783827162993134 ], [ 2.132255483303879, 44.698672130114687 ], [ 2.161281363144383, 44.684554698540467 ], [ 2.1816060710633, 44.631227059581136 ], [ 2.20531456811284, 44.622339120054335 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-37", "NAME_1": "Indre-et-Loire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.326671955846052, 47.186273543489222 ], [ 1.35692830519713, 47.151864362350409 ], [ 1.355631918078529, 47.108446392586927 ], [ 1.317487385734239, 47.102843364429702 ], [ 1.30702840074008, 47.071576274225663 ], [ 1.236803788364114, 47.016996193519503 ], [ 1.154318434348284, 47.034420510498137 ], [ 1.056408273722866, 46.996528663367087 ], [ 1.057990305308351, 46.949649999847566 ], [ 1.037336007550721, 46.942025487286401 ], [ 1.005805245115937, 46.803564788584083 ], [ 0.979833563668024, 46.755268888848093 ], [ 0.940700261807649, 46.743227872268449 ], [ 0.91653033880408, 46.766299162776136 ], [ 0.88075084357655, 46.750453065156819 ], [ 0.831452210551049, 46.779416838716088 ], [ 0.713371151257604, 46.900079685229286 ], [ 0.671776911275401, 46.965975683430997 ], [ 0.572438529214764, 47.003900489815749 ], [ 0.583666556866092, 46.965041846304132 ], [ 0.572746145917904, 46.954989354874783 ], [ 0.433922899022548, 46.93274204031286 ], [ 0.326674359034428, 46.938531835176036 ], [ 0.303581097189863, 46.965920751941098 ], [ 0.306986858556684, 47.042583352739484 ], [ 0.257943888399723, 47.063435404220513 ], [ 0.20006790930654, 47.055503274956152 ], [ 0.191850135575294, 47.102294048631393 ], [ 0.147157750929466, 47.09883335487541 ], [ 0.135534214932079, 47.127046246686916 ], [ 0.100114292040928, 47.118575787742373 ], [ 0.066759798925546, 47.153688093031064 ], [ 0.105255894244124, 47.299081165363475 ], [ 0.177062537306256, 47.377446646845272 ], [ 0.173986364878829, 47.414734245788793 ], [ 0.221776894188281, 47.502240352909951 ], [ 0.214328164013523, 47.548514768241944 ], [ 0.241772012268541, 47.602886108207315 ], [ 0.385011764081639, 47.581440795556261 ], [ 0.381298385112359, 47.617453980516757 ], [ 0.397426314972449, 47.63091223241355 ], [ 0.443832567319134, 47.618849243597708 ], [ 0.608166069708318, 47.670759646340571 ], [ 0.609572319806716, 47.689216678207117 ], [ 0.64538775014455, 47.70614661087734 ], [ 0.70625201092156, 47.684448611214407 ], [ 0.741034726371538, 47.694105594297696 ], [ 0.851051821184569, 47.671243044530854 ], [ 0.863224672980266, 47.647380739129801 ], [ 0.855731996534416, 47.614267945109532 ], [ 0.872914614417937, 47.59994177279458 ], [ 0.96216754759422, 47.629198365612069 ], [ 0.987370185485645, 47.621969361396907 ], [ 0.997499580641147, 47.595008911332172 ], [ 1.037775460369176, 47.601348022892921 ], [ 1.06730671153548, 47.566609251915395 ], [ 1.05247516789467, 47.523520871091307 ], [ 1.119557690235183, 47.442595574626068 ], [ 1.105143627176631, 47.313264515444985 ], [ 1.151769605482912, 47.283546496673466 ], [ 1.23913289037057, 47.278240100000573 ], [ 1.326671955846052, 47.186273543489222 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-36", "NAME_1": "Indre" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.30702840074008, 47.071576274225663 ], [ 1.317487385734239, 47.102843364429702 ], [ 1.355631918078529, 47.108446392586927 ], [ 1.362355550967891, 47.130012555235226 ], [ 1.326671955846052, 47.186273543489222 ], [ 1.423703209935184, 47.226406601883127 ], [ 1.52473348746048, 47.225747422205757 ], [ 1.548200284515531, 47.25784947447363 ], [ 1.59293661453313, 47.25759678836107 ], [ 1.603857025481318, 47.284656116186795 ], [ 1.672697359995141, 47.272692004232567 ], [ 1.724377049761017, 47.289215442438717 ], [ 1.838986429180352, 47.219243516175311 ], [ 1.82538535415074, 47.166904646732064 ], [ 1.774386817197865, 47.130649762676398 ], [ 1.794865333468351, 47.121937603737422 ], [ 1.885722270466374, 47.10366733947609 ], [ 1.966515730816297, 47.123805279789792 ], [ 2.038586046109117, 47.112698101236333 ], [ 2.052648546193439, 47.085891459523225 ], [ 2.042013780611455, 47.047637064199137 ], [ 2.093100208307931, 46.999593848777067 ], [ 2.07897178971632, 46.942344091006987 ], [ 2.132299428675708, 46.902782322446171 ], [ 2.077653430361522, 46.839061616100651 ], [ 2.077257922015463, 46.806355316544625 ], [ 2.11395225978896, 46.775362883790024 ], [ 2.066776964785106, 46.727154873898314 ], [ 2.137770619818241, 46.702095058240332 ], [ 2.144955678661631, 46.662390467446073 ], [ 2.183473746216407, 46.63706697955746 ], [ 2.186022575081779, 46.607008384829044 ], [ 2.158512808319415, 46.549099447381593 ], [ 2.183781363818866, 46.526951008782021 ], [ 2.191230094892944, 46.477798174745942 ], [ 2.139174556860326, 46.421365434866914 ], [ 1.881525493306867, 46.438203446931482 ], [ 1.831383889754704, 46.420471512350389 ], [ 1.770739355836611, 46.452002275684436 ], [ 1.736879491395428, 46.39825715614279 ], [ 1.672477633136225, 46.401014724849631 ], [ 1.628883881885656, 46.381250319746414 ], [ 1.598034271364497, 46.40735383641038 ], [ 1.525524502353903, 46.414429032273972 ], [ 1.41443074818045, 46.350939038905494 ], [ 1.344909261753003, 46.396136794877179 ], [ 1.247130937242957, 46.367660231734305 ], [ 1.177016188746109, 46.387018142373336 ], [ 1.194682204819912, 46.427920243424467 ], [ 1.14238728074838, 46.464504717318846 ], [ 1.149418531240201, 46.50047395690757 ], [ 1.136806226626049, 46.518403645212004 ], [ 1.026789131812961, 46.538299886430593 ], [ 1.014088936455266, 46.564392416976432 ], [ 0.95959674649265, 46.581135581142121 ], [ 0.916002995242025, 46.615138267816803 ], [ 0.916925847150139, 46.699480312666253 ], [ 0.88075084357655, 46.750453065156819 ], [ 0.91653033880408, 46.766299162776136 ], [ 0.940700261807649, 46.743227872268449 ], [ 0.979833563668024, 46.755268888848093 ], [ 1.005805245115937, 46.803564788584083 ], [ 1.037336007550721, 46.942025487286401 ], [ 1.057990305308351, 46.949649999847566 ], [ 1.056408273722866, 46.996528663367087 ], [ 1.074294016655529, 47.014018898853067 ], [ 1.154318434348284, 47.034420510498137 ], [ 1.236803788364114, 47.016996193519503 ], [ 1.30702840074008, 47.071576274225663 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-41", "NAME_1": "Loir-et-Cher" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.838986429180352, 47.219243516175311 ], [ 1.724377049761017, 47.289215442438717 ], [ 1.672697359995141, 47.272692004232567 ], [ 1.603857025481318, 47.284656116186795 ], [ 1.59293661453313, 47.25759678836107 ], [ 1.548200284515531, 47.25784947447363 ], [ 1.52473348746048, 47.225747422205757 ], [ 1.423703209935184, 47.226406601883127 ], [ 1.326671955846052, 47.186273543489222 ], [ 1.23913289037057, 47.278240100000573 ], [ 1.151769605482912, 47.283546496673466 ], [ 1.105143627176631, 47.313264515444985 ], [ 1.119557690235183, 47.442595574626068 ], [ 1.05247516789467, 47.523520871091307 ], [ 1.06730671153548, 47.566609251915395 ], [ 1.037775460369176, 47.601348022892921 ], [ 0.997499580641147, 47.595008911332172 ], [ 0.987370185485645, 47.621969361396907 ], [ 0.96216754759422, 47.629198365612069 ], [ 0.872914614417937, 47.59994177279458 ], [ 0.855731996534416, 47.614267945109532 ], [ 0.859796938477928, 47.662080446655239 ], [ 0.838659242530014, 47.67598913838799 ], [ 0.741034726371538, 47.694105594297696 ], [ 0.70625201092156, 47.684448611214407 ], [ 0.64538775014455, 47.70614661087734 ], [ 0.609572319806716, 47.689216678207117 ], [ 0.613263725640422, 47.722900761161156 ], [ 0.744704160868309, 47.787522346279218 ], [ 0.779618712433603, 47.907097545515285 ], [ 0.837187073924326, 47.945890272318195 ], [ 0.844152406808121, 48.021641007326593 ], [ 0.81470904638536, 48.029364395850166 ], [ 0.79761431834612, 48.062806780608412 ], [ 0.852238344424052, 48.076243060269007 ], [ 0.832550843946308, 48.094480365276638 ], [ 1.006112861819133, 48.130713277096049 ], [ 1.026701241968738, 48.11921059109585 ], [ 1.036325265798382, 48.082208636619271 ], [ 1.0971455803043, 48.068025286537704 ], [ 1.205119216678497, 47.968609999851594 ], [ 1.25178914035655, 47.975399550348925 ], [ 1.348798422209427, 47.950932996760343 ], [ 1.470373133613236, 47.993494033123113 ], [ 1.551759855133184, 47.98688026411287 ], [ 1.567997648872392, 47.965984267260126 ], [ 1.536928311492375, 47.926059948707632 ], [ 1.57922567652372, 47.903570934151276 ], [ 1.578940032056835, 47.865514292550529 ], [ 1.533500576990036, 47.826413949044479 ], [ 1.570260832371503, 47.796805793252759 ], [ 1.547848722440563, 47.769438849623214 ], [ 1.599088958488608, 47.735271367579514 ], [ 1.628883881885656, 47.76393469832766 ], [ 1.706139743854067, 47.733711309129603 ], [ 1.733100193918801, 47.676362673598476 ], [ 1.788976660844185, 47.641250367410521 ], [ 1.819672463013774, 47.643667360160521 ], [ 1.860871195549237, 47.70000525303999 ], [ 1.940939557714387, 47.667079226624992 ], [ 2.171652457394998, 47.67718664864492 ], [ 2.223771599979329, 47.663003298563353 ], [ 2.239108514046677, 47.620958618745249 ], [ 2.132760853730417, 47.587703002491537 ], [ 2.128366322847512, 47.559127561587673 ], [ 2.199162224157305, 47.5412528056724 ], [ 2.253544550240804, 47.469226435751409 ], [ 2.258642206172851, 47.439211785495502 ], [ 2.245129022786159, 47.411240593678428 ], [ 2.152448355107481, 47.427170769815177 ], [ 2.127289662587827, 47.416085564397235 ], [ 2.116237415524324, 47.375183463346104 ], [ 2.148669057630912, 47.308584339195875 ], [ 2.139088979173039, 47.286073352403264 ], [ 2.051066514607953, 47.265671739858874 ], [ 1.941598737391814, 47.283030139229538 ], [ 1.914396588231966, 47.261156358978781 ], [ 1.905124126477233, 47.222242783077945 ], [ 1.838986429180352, 47.219243516175311 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-23", "NAME_1": "Creuse" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.920065533097841, 45.695505664654661 ], [ 1.871000589805362, 45.709908741595143 ], [ 1.885304789884117, 45.773003226617618 ], [ 1.868319925723995, 45.793174125285645 ], [ 1.799875099556175, 45.818299858551597 ], [ 1.755797949215946, 45.856455377913335 ], [ 1.625148529780802, 45.84511748638289 ], [ 1.609152436036084, 45.915649716361315 ], [ 1.515856534051807, 45.93116241191575 ], [ 1.517350673994372, 45.952058408768551 ], [ 1.578127044027838, 45.99388336172774 ], [ 1.551540129173588, 45.997366027719977 ], [ 1.526403408890189, 46.069502260620823 ], [ 1.493378505613521, 46.084267886653606 ], [ 1.487665614476498, 46.147307439286863 ], [ 1.386569419343232, 46.209061592718285 ], [ 1.385119223873062, 46.23731842990162 ], [ 1.438161218365508, 46.312849438051103 ], [ 1.439962975910589, 46.336030591538531 ], [ 1.41443074818045, 46.350939038905494 ], [ 1.525524502353903, 46.414429032273972 ], [ 1.598034271364497, 46.40735383641038 ], [ 1.628883881885656, 46.381250319746414 ], [ 1.672477633136225, 46.401014724849631 ], [ 1.736879491395428, 46.39825715614279 ], [ 1.770739355836611, 46.452002275684436 ], [ 1.831383889754704, 46.420471512350389 ], [ 1.881525493306867, 46.438203446931482 ], [ 2.102328723791572, 46.415879226844822 ], [ 2.253896112315715, 46.419801346554891 ], [ 2.315968868568405, 46.366682448336292 ], [ 2.339743284125234, 46.322649243367835 ], [ 2.396828246526354, 46.310146801733481 ], [ 2.424601685519349, 46.275111399271623 ], [ 2.463405397541067, 46.279857494028079 ], [ 2.51460168911666, 46.225804756883974 ], [ 2.566742803937245, 46.135947576419483 ], [ 2.561161748915595, 46.081894839275378 ], [ 2.594648079045612, 46.026853333514509 ], [ 2.595285285587465, 45.971196593447985 ], [ 2.505768681079758, 45.872912897612139 ], [ 2.464020632745985, 45.868672175080803 ], [ 2.398234496624696, 45.821804497679409 ], [ 2.438576295759447, 45.761544485089871 ], [ 2.489943776883763, 45.736086327322141 ], [ 2.434665162167505, 45.708491505378618 ], [ 2.363737425641659, 45.712545460304739 ], [ 2.301444942530054, 45.673895556634591 ], [ 2.040563585141342, 45.760346975732318 ], [ 1.980226668825708, 45.703734424504091 ], [ 1.920065533097841, 45.695505664654661 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-53", "NAME_1": "Mayenne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.381559310613682, 47.800420295360311 ], [ -0.383899397838945, 47.781238166208368 ], [ -0.419791733701572, 47.76178137780829 ], [ -0.502266101599332, 47.77886511883014 ], [ -0.5276115617242, 47.756562871878998 ], [ -0.579357169098103, 47.757639532138683 ], [ -0.626938958566086, 47.735051640720599 ], [ -0.956451910627209, 47.793411018004065 ], [ -0.984368170954326, 47.763264532532105 ], [ -1.13853931983374, 47.777535773357215 ], [ -1.24296437260773, 47.809538948763475 ], [ -1.167697035789558, 47.960798719685158 ], [ -1.134935803844257, 47.983166885143589 ], [ -1.040629159208322, 48.001514053131018 ], [ -1.04179371021155, 48.062334368536256 ], [ -1.070391123351669, 48.090580218702087 ], [ -1.082333263069643, 48.152411275859663 ], [ -1.070292246489998, 48.174318015364065 ], [ -1.101658214455028, 48.267394190489483 ], [ -1.06977588904607, 48.318183987600946 ], [ -1.079081309155129, 48.498689365221992 ], [ -0.862705568806973, 48.501798496003744 ], [ -0.816892578529689, 48.454381501904777 ], [ -0.754369383340361, 48.441285799100342 ], [ -0.730463131668216, 48.461852206114372 ], [ -0.674399897137562, 48.473212069881072 ], [ -0.64099047253228, 48.454612214881763 ], [ -0.55429735433944, 48.468312166773046 ], [ -0.483138903937288, 48.50629190464764 ], [ -0.337932599210092, 48.493734531523387 ], [ -0.319124005268634, 48.512334385623376 ], [ -0.248866433639023, 48.526803380171827 ], [ -0.233496560318031, 48.561278478918666 ], [ -0.162854468259127, 48.539877110740065 ], [ -0.154405981550838, 48.48985635718509 ], [ -0.062241671316087, 48.439418123047915 ], [ -0.052727510466241, 48.380641265182192 ], [ -0.124424290548575, 48.370478911672421 ], [ -0.147539525528714, 48.352757963209399 ], [ -0.138300023926945, 48.229315575753219 ], [ -0.155251928833479, 48.200410545010641 ], [ -0.231519021285806, 48.163891989623608 ], [ -0.22993698970032, 48.073122942469809 ], [ -0.337877667720193, 48.040383683660025 ], [ -0.34241502173586, 48.026584854907128 ], [ -0.289384013361541, 47.955942762848224 ], [ -0.386613021174014, 47.927246472846434 ], [ -0.39658860797789, 47.904757458290021 ], [ -0.385239730329317, 47.865602183294072 ], [ -0.443818834471642, 47.839399789768436 ], [ -0.432173326238001, 47.812417366568184 ], [ -0.381559310613682, 47.800420295360311 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-72", "NAME_1": "Sarthe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.419791733701572, 47.76178137780829 ], [ -0.383899397838945, 47.781238166208368 ], [ -0.381559310613682, 47.800420295360311 ], [ -0.432173326238001, 47.812417366568184 ], [ -0.443818834471642, 47.839399789768436 ], [ -0.385239730329317, 47.865602183294072 ], [ -0.39658860797789, 47.904757458290021 ], [ -0.386613021174014, 47.927246472846434 ], [ -0.289384013361541, 47.955942762848224 ], [ -0.34241502173586, 48.026584854907128 ], [ -0.337877667720193, 48.040383683660025 ], [ -0.22993698970032, 48.073122942469809 ], [ -0.231519021285806, 48.163891989623608 ], [ -0.155251928833479, 48.200410545010641 ], [ -0.138300023926945, 48.229315575753219 ], [ -0.153362279645478, 48.337640775101647 ], [ -0.124424290548575, 48.370478911672421 ], [ 0.061310580019267, 48.379575591040691 ], [ 0.073725130910077, 48.401702056504689 ], [ 0.115473179243793, 48.412809235058148 ], [ 0.152584997599547, 48.445471590141722 ], [ 0.309931194868739, 48.471564119788297 ], [ 0.371520552931145, 48.448514803315504 ], [ 0.377892622846275, 48.356482328296806 ], [ 0.416081101461657, 48.315756008732819 ], [ 0.493183155078555, 48.304593898689461 ], [ 0.515177784427181, 48.265845118157642 ], [ 0.655341363812852, 48.25289223668733 ], [ 0.750285214990697, 48.184348532758577 ], [ 0.798383361902609, 48.18595253658026 ], [ 0.912882877442826, 48.147192769930371 ], [ 0.831606018902619, 48.102851948258774 ], [ 0.852238344424052, 48.076243060269007 ], [ 0.79761431834612, 48.062806780608412 ], [ 0.81470904638536, 48.029364395850166 ], [ 0.844152406808121, 48.021641007326593 ], [ 0.84059283619041, 47.954646375729624 ], [ 0.779618712433603, 47.907097545515285 ], [ 0.744704160868309, 47.787522346279218 ], [ 0.613263725640422, 47.722900761161156 ], [ 0.608166069708318, 47.670759646340571 ], [ 0.443832567319134, 47.618849243597708 ], [ 0.38470414647918, 47.624122681916219 ], [ 0.385011764081639, 47.581440795556261 ], [ 0.185939490714929, 47.6164761971188 ], [ 0.175216834389403, 47.588834594241121 ], [ 0.151464391968091, 47.588010620093996 ], [ -0.097397921976551, 47.65719153056466 ], [ -0.142617651083754, 47.634328980797818 ], [ -0.168918921471061, 47.638613648700925 ], [ -0.207074439933479, 47.668880984170073 ], [ -0.208491677049267, 47.690952518144172 ], [ -0.184376685535597, 47.705289676577308 ], [ -0.194637916806414, 47.719473026658818 ], [ -0.244120339781887, 47.70558630806164 ], [ -0.419791733701572, 47.76178137780829 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-84", "NAME_1": "Vaucluse" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.753775092546448, 43.732054942181833 ], [ 5.582511962157298, 43.66603415135495 ], [ 5.530898190898768, 43.669253146015876 ], [ 5.413564202026294, 43.695180881192698 ], [ 5.336572011389194, 43.739763402858728 ], [ 5.192629134526953, 43.749090795203983 ], [ 5.08716038074698, 43.786806861747266 ], [ 4.905907932704906, 43.895450663916961 ], [ 4.772819548283508, 43.932826154503402 ], [ 4.817973358883421, 43.964554670661471 ], [ 4.820917695195476, 44.000392075034199 ], [ 4.849811738920607, 44.012663803691566 ], [ 4.772973357534397, 44.087744372904467 ], [ 4.725951870882113, 44.088832019282222 ], [ 4.721293667768521, 44.190246818136131 ], [ 4.667284876895565, 44.257966547018498 ], [ 4.657529016950548, 44.326751950042421 ], [ 4.759174528781443, 44.320083248642959 ], [ 4.831772187636318, 44.236675042719014 ], [ 4.984482154028171, 44.282026607042269 ], [ 5.052289773654138, 44.296209957123779 ], [ 5.127260479887241, 44.289343502000975 ], [ 5.167096907696134, 44.308174069078007 ], [ 5.162306868467169, 44.254330072674691 ], [ 5.177489974182947, 44.233884514758529 ], [ 5.378935294028565, 44.202057121738733 ], [ 5.398776603757256, 44.163165518074152 ], [ 5.506156978961371, 44.121780018832794 ], [ 5.502575436107463, 44.063442613785583 ], [ 5.544037839974351, 44.04984153965529 ], [ 5.507958736506453, 43.957798078518465 ], [ 5.576799071020275, 43.936187970498395 ], [ 5.589367431162032, 43.90429465897131 ], [ 5.544740965023493, 43.817612526896596 ], [ 5.609406494614007, 43.835003884621528 ], [ 5.662756105809649, 43.812119362618489 ], [ 5.753775092546448, 43.732054942181833 ] ] ], [ [ [ 4.963717993290743, 44.42886987394553 ], [ 5.03218479259408, 44.39354882791605 ], [ 5.04339084800921, 44.367862791834341 ], [ 4.991799048986934, 44.31560082701651 ], [ 4.888000216636669, 44.316260006693938 ], [ 4.888659396314097, 44.355964597488139 ], [ 4.963717993290743, 44.42886987394553 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-52", "NAME_1": "Haute-Marne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.866972384567873, 48.693279216062933 ], [ 4.992084693453819, 48.692894694734377 ], [ 5.014914283967016, 48.637183023177954 ], [ 5.070790750892456, 48.597917884302888 ], [ 5.26858861027614, 48.510840244781434 ], [ 5.344767812884243, 48.500403232922849 ], [ 5.45524633275204, 48.419214264226866 ], [ 5.422397210063195, 48.380146879974518 ], [ 5.438195550084572, 48.331444485774398 ], [ 5.508486080068508, 48.35069253343363 ], [ 5.58440161044598, 48.283774806462134 ], [ 5.645529542554357, 48.276073390174815 ], [ 5.654977784896857, 48.242993554508928 ], [ 5.713007572341553, 48.2114298328205 ], [ 5.720302495064061, 48.19595009562039 ], [ 5.697516849023373, 48.180492331555854 ], [ 5.658075929560482, 48.095535053300068 ], [ 5.787956306338458, 48.022541886099134 ], [ 5.80428198992189, 47.958359754698904 ], [ 5.849238046798405, 47.967610243318063 ], [ 5.897819591001337, 47.919292370446499 ], [ 5.704328373555597, 47.801134407426957 ], [ 5.692397219955751, 47.685668093707534 ], [ 5.576337645965566, 47.656883912962201 ], [ 5.501344966596946, 47.681899783248355 ], [ 5.433405510855607, 47.674143435471137 ], [ 5.365597891229697, 47.596678832761881 ], [ 5.33050755817726, 47.608566040090636 ], [ 5.283793689127435, 47.588307250679065 ], [ 5.263490954344036, 47.618959107476826 ], [ 5.203593490846913, 47.646315064988244 ], [ 5.179357650235374, 47.676571414339264 ], [ 5.109374736954521, 47.648336549392241 ], [ 5.033678933436022, 47.703806522752814 ], [ 4.981691626967006, 47.68784338736242 ], [ 4.931571995651041, 47.773437873059379 ], [ 4.989447974744223, 47.800804817588244 ], [ 4.967892798214052, 47.842146371457829 ], [ 4.894613986546233, 47.910975719853582 ], [ 4.848888887012492, 47.900253063528055 ], [ 4.860666231361449, 47.943846814778681 ], [ 4.800768768763646, 47.966379774706809 ], [ 4.80481173757164, 47.991329726485674 ], [ 4.698508022627152, 48.022025528655206 ], [ 4.718415249963812, 48.042910539389879 ], [ 4.695212123340809, 48.078769915998805 ], [ 4.711142300376821, 48.103445209428855 ], [ 4.827597382713009, 48.11146522943676 ], [ 4.862446016670333, 48.198290183744973 ], [ 4.846625703513382, 48.290058986532983 ], [ 4.819181855258421, 48.313130276141294 ], [ 4.824015839859101, 48.342101224491898 ], [ 4.77391818167871, 48.35842690897465 ], [ 4.637270226639657, 48.460775545854744 ], [ 4.6702292123083, 48.531813146259651 ], [ 4.78521212693812, 48.538339025425671 ], [ 4.768820524847342, 48.575516760490075 ], [ 4.775719939223791, 48.595116371123595 ], [ 4.8543820512906, 48.612782387197399 ], [ 4.837397188029797, 48.644598794998387 ], [ 4.773390837217335, 48.643961587557214 ], [ 4.802131073490216, 48.678425700185869 ], [ 4.866972384567873, 48.693279216062933 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-51", "NAME_1": "Marne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.992084693453819, 48.692894694734377 ], [ 4.802131073490216, 48.678425700185869 ], [ 4.773390837217335, 48.643961587557214 ], [ 4.837397188029797, 48.644598794998387 ], [ 4.8543820512906, 48.612782387197399 ], [ 4.775719939223791, 48.595116371123595 ], [ 4.768820524847342, 48.575516760490075 ], [ 4.78521212693812, 48.538339025425671 ], [ 4.6702292123083, 48.531813146259651 ], [ 4.599411338762252, 48.549907629033839 ], [ 4.526110554858235, 48.528879796065723 ], [ 4.328180859359179, 48.611167397257532 ], [ 4.331806348484179, 48.67539347402959 ], [ 4.317194530802965, 48.702738445422881 ], [ 4.196037299981413, 48.710736492295268 ], [ 4.078615420365338, 48.694531657809762 ], [ 4.057301942930337, 48.667263590142568 ], [ 4.009599304364372, 48.657870279289909 ], [ 3.869215998119785, 48.570342199932554 ], [ 3.848429865146159, 48.525803624537616 ], [ 3.748058767298289, 48.540228673714296 ], [ 3.715978688165933, 48.568672278502845 ], [ 3.635646653770038, 48.541283360838406 ], [ 3.623913254792853, 48.579142249615074 ], [ 3.600182784607796, 48.578186438453372 ], [ 3.565619795117414, 48.614770912347694 ], [ 3.537802411651967, 48.613419594638572 ], [ 3.501217937757588, 48.643642983836628 ], [ 3.459294107936728, 48.642401529107246 ], [ 3.451252115692569, 48.724359539561078 ], [ 3.3949142228131, 48.760152998562035 ], [ 3.425610024083312, 48.790486251639152 ], [ 3.409328285871709, 48.813140060665262 ], [ 3.463952311050321, 48.817172043355072 ], [ 3.503063640674441, 48.884353442557313 ], [ 3.670802905329822, 49.015508232418938 ], [ 3.656960131205096, 49.033031427158619 ], [ 3.584823897404931, 49.041326104616019 ], [ 3.586383956754162, 49.06031048094394 ], [ 3.626110520683994, 49.090336116418598 ], [ 3.625495286378339, 49.138401304076922 ], [ 3.72373503594315, 49.149354673379435 ], [ 3.746674489436145, 49.169690367416479 ], [ 3.675307299192468, 49.210021179533783 ], [ 3.650148607572191, 49.302833683327776 ], [ 3.703366382652405, 49.324531682091447 ], [ 3.8574825991426, 49.347328313350943 ], [ 3.859020685356313, 49.371201605769443 ], [ 3.877939143176889, 49.381012397204358 ], [ 4.040866395467788, 49.361951117150284 ], [ 4.05528045852634, 49.407291695355411 ], [ 4.196564643543468, 49.394624458352041 ], [ 4.334311231078459, 49.318906681697968 ], [ 4.374938673780775, 49.318730900210824 ], [ 4.413808304309782, 49.282102480944729 ], [ 4.577306845534508, 49.284398623697484 ], [ 4.636523156218686, 49.235015076684419 ], [ 4.723117398449176, 49.252483339034825 ], [ 4.836188691654797, 49.236135682315876 ], [ 4.940405003687943, 49.254526796574396 ], [ 4.978747290654951, 49.23567425636179 ], [ 4.95543430195147, 49.165218931908157 ], [ 4.984789771630631, 49.10279461268118 ], [ 4.991777076750679, 49.036931573733114 ], [ 5.034140359390051, 49.006049003958367 ], [ 5.008520240916368, 48.934736745204589 ], [ 4.928781468589875, 48.897789722217908 ], [ 4.930165745552699, 48.832157395347508 ], [ 4.906918674457245, 48.804768478582389 ], [ 4.982768287226691, 48.750001631170335 ], [ 4.992084693453819, 48.692894694734377 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-24", "NAME_1": "Dordogne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.012693328934006, 44.861346697192289 ], [ 0.030592804714161, 44.910774189577182 ], [ 0.007213898402654, 44.960421407921615 ], [ 0.03938186827861, 44.99626979841247 ], [ 0.065880892389259, 45.063506129104553 ], [ 0.031493684386021, 45.120129666450907 ], [ -0.033556367432425, 45.12011867943346 ], [ -0.001157684579482, 45.151660428885634 ], [ -0.012187958507468, 45.17759915107996 ], [ 0.072780306765708, 45.220390900419716 ], [ 0.142499547815873, 45.217864044689861 ], [ 0.173041540734516, 45.255349398256101 ], [ 0.24941849706596, 45.292999545392661 ], [ 0.256251993834439, 45.366168494080739 ], [ 0.280905315028235, 45.422495399942704 ], [ 0.433922899022548, 45.489160441701017 ], [ 0.504806690176622, 45.568097212116641 ], [ 0.517199268831178, 45.634476609407955 ], [ 0.564857962025314, 45.647857957578651 ], [ 0.635895562430278, 45.710337208295527 ], [ 0.734596737949062, 45.692506396852707 ], [ 0.770785704396758, 45.661810594683175 ], [ 0.761007872215544, 45.614316696858054 ], [ 0.785529357293967, 45.601924118203442 ], [ 0.836110413664642, 45.597013228977289 ], [ 0.872277407876084, 45.619798875018034 ], [ 1.017472725585833, 45.611328415174171 ], [ 1.082643626502147, 45.546937543932472 ], [ 1.158712965231132, 45.52824979908894 ], [ 1.130609937298743, 45.482986125509285 ], [ 1.287340900262336, 45.440073526172284 ], [ 1.272926837203784, 45.390250526340708 ], [ 1.32693562807674, 45.376374792962281 ], [ 1.253634844172723, 45.320355503803455 ], [ 1.242956132319648, 45.282430697418704 ], [ 1.282550861033371, 45.254547395445911 ], [ 1.239088944998798, 45.207218292090488 ], [ 1.288263751271074, 45.194968536568695 ], [ 1.277892657020516, 45.160855986014894 ], [ 1.289054767063817, 45.146749540558801 ], [ 1.397050376573588, 45.131917996917991 ], [ 1.397511802527674, 45.084742701914138 ], [ 1.458639734636051, 45.015078392353928 ], [ 1.425021569289981, 44.983822288267959 ], [ 1.446708581935525, 44.932944600412952 ], [ 1.4333711791366, 44.87596950099163 ], [ 1.363673910322689, 44.810963394545013 ], [ 1.313905841981011, 44.788738052219287 ], [ 1.321662190657548, 44.751428480140248 ], [ 1.299601642801576, 44.725643567196869 ], [ 1.174994704342112, 44.673041026422197 ], [ 1.077210823820451, 44.574533434470425 ], [ 1.056320382979266, 44.600311531452007 ], [ 0.972231024242376, 44.638357186934627 ], [ 0.840768617677554, 44.602091315861514 ], [ 0.817082092864268, 44.627085213911471 ], [ 0.842065003896778, 44.659615732879729 ], [ 0.811720764701533, 44.690058848936701 ], [ 0.685817439123525, 44.673656260727853 ], [ 0.640751520166532, 44.699891612607814 ], [ 0.600453666403553, 44.700935314513117 ], [ 0.546598683882166, 44.665218760137634 ], [ 0.505377979110449, 44.676479747042663 ], [ 0.416960007098623, 44.645256601311075 ], [ 0.375277877272197, 44.657462412360417 ], [ 0.27448929884207, 44.790078383810339 ], [ 0.263766642516543, 44.826487077116894 ], [ 0.311271526459791, 44.843999284839072 ], [ 0.322169964272405, 44.856633562588797 ], [ 0.310216839335681, 44.865664324349041 ], [ 0.233048867211437, 44.881297869900777 ], [ 0.239904336216114, 44.867619891145011 ], [ 0.174469763968432, 44.826673844722109 ], [ 0.031076203803764, 44.840274918852401 ], [ -0.012693328934006, 44.861346697192289 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-69", "NAME_1": "Rhône" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.797824432451591, 46.17175202063919 ], [ 4.749023160490481, 46.059438783972666 ], [ 4.748539762300197, 45.956903379487358 ], [ 4.784421111145377, 45.944774473063433 ], [ 4.820060760895387, 45.906564022211853 ], [ 4.845944551599757, 45.909673152993605 ], [ 4.909093968112131, 45.87416533935891 ], [ 4.91689426126112, 45.81134551268525 ], [ 5.102431377206301, 45.826188042444187 ], [ 5.071493875941599, 45.762258597156517 ], [ 5.156901594033343, 45.714951466037292 ], [ 5.154462629047089, 45.700262744629924 ], [ 5.103112530019246, 45.690144336491926 ], [ 5.056969949903248, 45.660239550115136 ], [ 5.014342995033189, 45.612361130062084 ], [ 4.802394744821584, 45.592959274051225 ], [ 4.870026583859726, 45.549673139503739 ], [ 4.854733614264887, 45.515011273151686 ], [ 4.760009489046695, 45.444457070937062 ], [ 4.718151577733124, 45.479734172494034 ], [ 4.654255090799779, 45.491214885358659 ], [ 4.665944544405193, 45.554891645433088 ], [ 4.640214562951712, 45.58131376581764 ], [ 4.49704072964596, 45.584730514201851 ], [ 4.38416719016368, 45.654372850626544 ], [ 4.365424513830249, 45.698537891710316 ], [ 4.396823440149603, 45.749448537919648 ], [ 4.344220899374989, 45.760346975732318 ], [ 4.344154981766962, 45.77772734733918 ], [ 4.393835159365096, 45.842832330647525 ], [ 4.334091504219543, 45.886700740246965 ], [ 4.340309766682367, 45.924669492003432 ], [ 4.327697461168896, 45.94197295898482 ], [ 4.258879098891271, 45.970328673029826 ], [ 4.253034372538252, 45.984885558321821 ], [ 4.308009960691095, 46.012175598225269 ], [ 4.252638864192193, 46.049792787906824 ], [ 4.339936231471881, 46.132377018784382 ], [ 4.432155473196531, 46.150735173789201 ], [ 4.432660844522331, 46.191516425742407 ], [ 4.383947463304764, 46.224772041996118 ], [ 4.414225784892039, 46.293458568158371 ], [ 4.498930377934585, 46.275034495545526 ], [ 4.554323446669741, 46.288668528929463 ], [ 4.591589072477689, 46.262444163167572 ], [ 4.614220909267544, 46.267256174632735 ], [ 4.628217492643159, 46.297018138776082 ], [ 4.664955774889108, 46.292162181939148 ], [ 4.67741427115169, 46.261312571417989 ], [ 4.704089076749483, 46.247458810275873 ], [ 4.720217007508893, 46.188648994055825 ], [ 4.797824432451591, 46.17175202063919 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-88", "NAME_1": "Vosges" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.887424121326148, 48.419433991085782 ], [ 7.054723932263641, 48.518442784207082 ], [ 7.088649715212171, 48.523441563277515 ], [ 7.14885479541249, 48.499886875478921 ], [ 7.127717099464576, 48.484099520676295 ], [ 7.107392391545602, 48.34575967197128 ], [ 7.188537413970494, 48.331005032955886 ], [ 7.208730285774038, 48.303407375449979 ], [ 7.083156550934063, 48.164507223929206 ], [ 7.081157038766321, 48.104609760432083 ], [ 6.951760061077948, 47.956964490718633 ], [ 6.91495586032471, 47.875687632178483 ], [ 6.923854786868901, 47.843179086345742 ], [ 6.86892314408783, 47.818998177224103 ], [ 6.684990031964389, 47.895572887278888 ], [ 6.624631142513181, 47.940331189532742 ], [ 6.537773228951323, 47.899945445925539 ], [ 6.37343972656214, 47.953020398772367 ], [ 6.243844995150369, 47.932212292663166 ], [ 6.186122825308132, 47.952833632066415 ], [ 6.166896749885098, 47.992109756160289 ], [ 6.09939674786159, 48.008699111974408 ], [ 5.970922621182012, 47.940902478466569 ], [ 5.961738051070199, 47.979288710805349 ], [ 5.891755137789346, 47.932629773245424 ], [ 5.849238046798405, 47.967610243318063 ], [ 5.80428198992189, 47.958359754698904 ], [ 5.787956306338458, 48.022541886099134 ], [ 5.658075929560482, 48.095535053300068 ], [ 5.697516849023373, 48.180492331555854 ], [ 5.720302495064061, 48.19595009562039 ], [ 5.713007572341553, 48.2114298328205 ], [ 5.654977784896857, 48.242993554508928 ], [ 5.645529542554357, 48.276073390174815 ], [ 5.58440161044598, 48.283774806462134 ], [ 5.508486080068508, 48.35069253343363 ], [ 5.438195550084572, 48.331444485774398 ], [ 5.422397210063195, 48.380146879974518 ], [ 5.45524633275204, 48.419214264226866 ], [ 5.479152583524922, 48.411864410913779 ], [ 5.553771726783737, 48.439626862889384 ], [ 5.614943604263885, 48.440527741661924 ], [ 5.668864504393355, 48.466279696250979 ], [ 5.736144780457266, 48.466807039813034 ], [ 5.765236578805059, 48.496601963210026 ], [ 5.779518805748296, 48.486208895823836 ], [ 5.842009042583243, 48.501974277490888 ], [ 5.902038341296418, 48.480320224099046 ], [ 5.874045176343827, 48.414182525902845 ], [ 5.954970472809066, 48.387364898071553 ], [ 5.948664319602642, 48.365326323351098 ], [ 5.976855239177951, 48.357493070948465 ], [ 6.117216572286964, 48.361305326779359 ], [ 6.149230733811294, 48.371522612678405 ], [ 6.147428976266212, 48.40777749673407 ], [ 6.256830835874382, 48.403679596436177 ], [ 6.2841867933858, 48.437814119226175 ], [ 6.33103249855094, 48.4063273012639 ], [ 6.389875274024689, 48.40777749673407 ], [ 6.387414336802181, 48.392078033574364 ], [ 6.402575470281704, 48.393769928139648 ], [ 6.433029572456803, 48.410491120069139 ], [ 6.5018039893626, 48.414512115741502 ], [ 6.606218056018463, 48.46928995017106 ], [ 6.63548563495408, 48.470575350272156 ], [ 6.663852335117156, 48.423114411700737 ], [ 6.807245895281824, 48.396044097756885 ], [ 6.864484666933834, 48.435594880199517 ], [ 6.887424121326148, 48.419433991085782 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-07", "NAME_1": "Ardèche" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.811381562109375, 45.296284457661557 ], [ 4.822763398112329, 45.111197780653015 ], [ 4.844736055224757, 45.101024441025118 ], [ 4.858403047862339, 45.065615504252094 ], [ 4.850976289923835, 45.021549340029992 ], [ 4.892570529906038, 44.949533956227071 ], [ 4.86180881012848, 44.87506862131977 ], [ 4.771237517597342, 44.77936671360294 ], [ 4.796396209217676, 44.696354015125678 ], [ 4.789452850368718, 44.658462167994628 ], [ 4.721337613140349, 44.573427985113426 ], [ 4.703363979464086, 44.474726809594586 ], [ 4.670317103051843, 44.420915772444914 ], [ 4.657836633653687, 44.28171898943981 ], [ 4.520837117438987, 44.336826413708025 ], [ 4.455666216522673, 44.331816647620144 ], [ 4.445075395413141, 44.301120845450612 ], [ 4.418114945348464, 44.290475093750558 ], [ 4.395636916910178, 44.301120845450612 ], [ 4.38643037366279, 44.338891843483793 ], [ 4.34224336034282, 44.333673337554444 ], [ 4.251144724249627, 44.281795894065226 ], [ 4.130580754598157, 44.331684811504829 ], [ 4.049875184991777, 44.325202877710637 ], [ 4.036076356238823, 44.375564208121659 ], [ 4.049699403504633, 44.40354638695618 ], [ 3.993998718066393, 44.457851808414205 ], [ 3.957414244172014, 44.550873052948987 ], [ 3.911777035381874, 44.594950202389896 ], [ 3.871105647307786, 44.709878185529817 ], [ 3.872204279803668, 44.750912122696263 ], [ 3.94748260273991, 44.818401138601644 ], [ 4.013444519449024, 44.836078141692838 ], [ 4.03141815312523, 44.865268816902358 ], [ 4.153520208091095, 44.875354265786711 ], [ 4.215417183756017, 44.95893825409712 ], [ 4.296628123788878, 44.974176291302797 ], [ 4.288849803775406, 45.001279563600974 ], [ 4.301901562107389, 45.021131859447735 ], [ 4.367665724193785, 45.038127709725984 ], [ 4.347824415364471, 45.06843899056696 ], [ 4.383486037350735, 45.101299099373932 ], [ 4.369994826200241, 45.132851834944177 ], [ 4.419960648265317, 45.116833767164621 ], [ 4.439494340391491, 45.125567898339796 ], [ 4.47599092354227, 45.207218292090488 ], [ 4.462649882985716, 45.236496332839465 ], [ 4.597543662709882, 45.241968050085404 ], [ 4.594797081020488, 45.286429721754246 ], [ 4.60951876078218, 45.312720005124106 ], [ 4.720217007508893, 45.358796667632078 ], [ 4.769826001069077, 45.365706998878863 ], [ 4.811381562109375, 45.296284457661557 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-42", "NAME_1": "Loire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.760009489046695, 45.444457070937062 ], [ 4.769826001069077, 45.365706998878863 ], [ 4.60951876078218, 45.312720005124106 ], [ 4.594797081020488, 45.286429721754246 ], [ 4.597543662709882, 45.241968050085404 ], [ 4.462649882985716, 45.236496332839465 ], [ 4.405700393558277, 45.269378939086721 ], [ 4.359140333759399, 45.273564731027477 ], [ 4.338793652704908, 45.306688511165817 ], [ 4.344880079052416, 45.356302771155924 ], [ 4.302516796412988, 45.392887245050304 ], [ 4.264635935400065, 45.372265906546318 ], [ 4.160046087257115, 45.386690955722997 ], [ 4.137721868069718, 45.359554724171176 ], [ 4.042096864078985, 45.34642606121372 ], [ 3.998634948943732, 45.345602087066652 ], [ 3.961764829683148, 45.369947790657989 ], [ 3.890177913479931, 45.351029332837413 ], [ 3.895495296270894, 45.395831581362359 ], [ 3.953547055951844, 45.452674844668309 ], [ 3.96747772082017, 45.498202190478708 ], [ 3.927135922584739, 45.570085738166256 ], [ 3.803935234223673, 45.649099413207352 ], [ 3.694840992218019, 45.795349418041212 ], [ 3.730392751224485, 45.892029110055375 ], [ 3.681657397770664, 45.93342559541486 ], [ 3.679504077251352, 45.957035215602673 ], [ 3.816349785114483, 46.000991515945657 ], [ 3.785500174593381, 46.203843086788993 ], [ 3.766515799164779, 46.228760079314156 ], [ 3.821139824343391, 46.261806955726399 ], [ 3.886464534510651, 46.276199046548754 ], [ 3.897670589026461, 46.21320343838795 ], [ 3.991669616059937, 46.176355292262883 ], [ 4.07534149421457, 46.193559883281978 ], [ 4.28902558436323, 46.172740790155331 ], [ 4.328400586218095, 46.181958319520788 ], [ 4.383947463304764, 46.224772041996118 ], [ 4.419059769492776, 46.207995918576785 ], [ 4.439208695924549, 46.173619696691617 ], [ 4.432155473196531, 46.150735173789201 ], [ 4.339936231471881, 46.132377018784382 ], [ 4.252638864192193, 46.049792787906824 ], [ 4.308009960691095, 46.012175598225269 ], [ 4.253034372538252, 45.984885558321821 ], [ 4.258879098891271, 45.970328673029826 ], [ 4.327697461168896, 45.94197295898482 ], [ 4.340309766682367, 45.924669492003432 ], [ 4.334091504219543, 45.886700740246965 ], [ 4.393835159365096, 45.842832330647525 ], [ 4.344154981766962, 45.77772734733918 ], [ 4.344220899374989, 45.760346975732318 ], [ 4.396823440149603, 45.749448537919648 ], [ 4.365424513830249, 45.698537891710316 ], [ 4.38416719016368, 45.654372850626544 ], [ 4.49704072964596, 45.584730514201851 ], [ 4.640214562951712, 45.58131376581764 ], [ 4.665944544405193, 45.554891645433088 ], [ 4.654255090799779, 45.491214885358659 ], [ 4.718151577733124, 45.479734172494034 ], [ 4.760009489046695, 45.444457070937062 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-63", "NAME_1": "Puy-de-Dôme" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.87178920240973, 46.262663889127168 ], [ 2.909582172679109, 46.252578440242814 ], [ 2.923776508878746, 46.174421698602487 ], [ 2.950055807029855, 46.141770330536303 ], [ 3.016962547883281, 46.10249420554311 ], [ 3.090988429972072, 46.11168976267237 ], [ 3.127770657589792, 46.07153473204221 ], [ 3.233393220620599, 46.073182681235721 ], [ 3.332094396139439, 46.044178773631472 ], [ 3.438112466617042, 46.071765445019253 ], [ 3.457030924437618, 46.003243713326697 ], [ 3.520026531699045, 46.014790344698611 ], [ 3.584450362194445, 46.00478179954041 ], [ 3.679504077251352, 45.957035215602673 ], [ 3.681657397770664, 45.93342559541486 ], [ 3.730392751224485, 45.892029110055375 ], [ 3.697016284973586, 45.789295951846668 ], [ 3.803935234223673, 45.649099413207352 ], [ 3.927135922584739, 45.570085738166256 ], [ 3.96747772082017, 45.498202190478708 ], [ 3.961281431492864, 45.464331339020077 ], [ 3.907909847161704, 45.414178749349787 ], [ 3.885519710366339, 45.358675817634833 ], [ 3.80474822225267, 45.385910926048382 ], [ 3.759836111647246, 45.349667028110844 ], [ 3.678515307735267, 45.369563269329376 ], [ 3.62342985660257, 45.347623571470649 ], [ 3.567685224893182, 45.393897986802642 ], [ 3.505041179706666, 45.416441933748217 ], [ 3.395133948772695, 45.40095121042998 ], [ 3.325810216068589, 45.421627480423865 ], [ 3.200500152559982, 45.359719518640873 ], [ 3.103534816978197, 45.354468054357199 ], [ 3.033991357415175, 45.300261508861524 ], [ 2.995451316724882, 45.288616000627883 ], [ 2.948561666187913, 45.309160435405772 ], [ 2.900441547039748, 45.372639441756803 ], [ 2.833820451552583, 45.396413856414313 ], [ 2.703478649719898, 45.38803128731405 ], [ 2.668036753693229, 45.434525430404278 ], [ 2.502362918813617, 45.487171916550665 ], [ 2.495397586829142, 45.545179730859843 ], [ 2.46509729210635, 45.584554732714707 ], [ 2.48137903121733, 45.623731979946911 ], [ 2.52049036084145, 45.644375291586414 ], [ 2.524687138900333, 45.697724902781999 ], [ 2.484169559177815, 45.74118681881663 ], [ 2.438576295759447, 45.761544485089871 ], [ 2.400563598631152, 45.829187310246141 ], [ 2.464020632745985, 45.868672175080803 ], [ 2.501593876156448, 45.869858698320229 ], [ 2.595285285587465, 45.971196593447985 ], [ 2.594648079045612, 46.026853333514509 ], [ 2.561161748915595, 46.081894839275378 ], [ 2.566742803937245, 46.135947576419483 ], [ 2.650854135809709, 46.125752262756691 ], [ 2.713630017111598, 46.169203192673194 ], [ 2.732570447168371, 46.223387765033294 ], [ 2.815649064152979, 46.201316231059195 ], [ 2.819142716263343, 46.241756906156297 ], [ 2.87178920240973, 46.262663889127168 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-03", "NAME_1": "Allier" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.016962547883281, 46.10249420554311 ], [ 2.950055807029855, 46.141770330536303 ], [ 2.923776508878746, 46.174421698602487 ], [ 2.909582172679109, 46.252578440242814 ], [ 2.87178920240973, 46.262663889127168 ], [ 2.819142716263343, 46.241756906156297 ], [ 2.815649064152979, 46.201316231059195 ], [ 2.732570447168371, 46.223387765033294 ], [ 2.713630017111598, 46.169203192673194 ], [ 2.650854135809709, 46.125752262756691 ], [ 2.566742803937245, 46.135947576419483 ], [ 2.474084109394141, 46.271409007319789 ], [ 2.449430788200289, 46.283373118374698 ], [ 2.424601685519349, 46.275111399271623 ], [ 2.396828246526354, 46.310146801733481 ], [ 2.339743284125234, 46.322649243367835 ], [ 2.315968868568405, 46.366682448336292 ], [ 2.253896112315715, 46.419801346554891 ], [ 2.340050900828373, 46.50057283376924 ], [ 2.617345833443437, 46.551966879068175 ], [ 2.585507453406251, 46.601394371453068 ], [ 2.593417609535038, 46.628728356728232 ], [ 2.57621301941532, 46.650591149961599 ], [ 2.619674935449893, 46.661368738676344 ], [ 2.628024544397192, 46.689295986020909 ], [ 2.653293100795963, 46.690119960167976 ], [ 2.722243298289584, 46.734306973488003 ], [ 2.772692519444206, 46.713345059027233 ], [ 2.805541641233731, 46.730736416752222 ], [ 2.838149064827462, 46.725935391405187 ], [ 2.86761439748642, 46.754411955447381 ], [ 2.975763816247138, 46.793215667469042 ], [ 3.029772607120094, 46.790941497851804 ], [ 3.051525537373664, 46.750325041267615 ], [ 3.147370267323993, 46.724639004286587 ], [ 3.204191559293008, 46.687274501616912 ], [ 3.285512363204987, 46.702424648079045 ], [ 3.358439611898575, 46.684648769025443 ], [ 3.397243323920236, 46.709631680057953 ], [ 3.433520181111476, 46.70577547885523 ], [ 3.470456217980086, 46.649964929537816 ], [ 3.559862959507939, 46.681385828992802 ], [ 3.596755050105457, 46.742887296311665 ], [ 3.62488005117342, 46.739261808085928 ], [ 3.657882982213835, 46.685934169126597 ], [ 3.74001677505413, 46.615445885419263 ], [ 3.740939626062868, 46.549330160358579 ], [ 3.978815612350616, 46.462637041266419 ], [ 3.98949432330437, 46.427239090611522 ], [ 3.978947447566668, 46.388171706359117 ], [ 3.999733581439614, 46.326340650100917 ], [ 3.766515799164779, 46.228760079314156 ], [ 3.785500174593381, 46.203843086788993 ], [ 3.790290213822288, 46.109481510663159 ], [ 3.817580254625057, 46.008616028506879 ], [ 3.796969902239198, 45.98543487501945 ], [ 3.679504077251352, 45.957035215602673 ], [ 3.584450362194445, 46.00478179954041 ], [ 3.520026531699045, 46.014790344698611 ], [ 3.457030924437618, 46.003243713326697 ], [ 3.438112466617042, 46.071765445019253 ], [ 3.332094396139439, 46.044178773631472 ], [ 3.233393220620599, 46.073182681235721 ], [ 3.127770657589792, 46.07153473204221 ], [ 3.090988429972072, 46.11168976267237 ], [ 3.016962547883281, 46.10249420554311 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-45", "NAME_1": "Loiret" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.599088958488608, 47.735271367579514 ], [ 1.547848722440563, 47.769438849623214 ], [ 1.570260832371503, 47.796805793252759 ], [ 1.533500576990036, 47.826413949044479 ], [ 1.578940032056835, 47.865514292550529 ], [ 1.57922567652372, 47.903570934151276 ], [ 1.536928311492375, 47.926059948707632 ], [ 1.567997648872392, 47.965984267260126 ], [ 1.551759855133184, 47.98688026411287 ], [ 1.519657548357145, 47.985524886864027 ], [ 1.521371670566111, 48.029364395850166 ], [ 1.55303426911621, 48.042547990297464 ], [ 1.599418548327321, 48.03527504071053 ], [ 1.647055269285261, 48.072408831302482 ], [ 1.729342869577749, 48.066728899419161 ], [ 1.854543070106615, 48.086163714683664 ], [ 1.918483502411675, 48.166528708333203 ], [ 1.97132774228146, 48.186457907906117 ], [ 1.965065535346184, 48.24610268619 ], [ 1.988444442556954, 48.276743555970313 ], [ 2.133507924151388, 48.299067776056972 ], [ 2.197712028687135, 48.338706449243205 ], [ 2.255917596719712, 48.30560464134112 ], [ 2.315968868568405, 48.328005765153932 ], [ 2.360353636511093, 48.310460598178054 ], [ 2.39946496613527, 48.314514554003438 ], [ 2.436884401194163, 48.24981606515928 ], [ 2.513678837208545, 48.206617821355337 ], [ 2.500187626058107, 48.181195456604996 ], [ 2.507482547881295, 48.157212301206698 ], [ 2.450837038298687, 48.146621480996544 ], [ 2.46681115980715, 48.124319234045402 ], [ 2.68482386323069, 48.122594380226417 ], [ 2.788337051114013, 48.159958883795412 ], [ 2.803234512362849, 48.151433492461706 ], [ 2.795456191450057, 48.133240132825847 ], [ 2.811122696255438, 48.13081215395772 ], [ 2.956559713959621, 48.154322897283862 ], [ 3.02265346588473, 48.131844868845576 ], [ 3.045109522086761, 48.076396868620577 ], [ 3.107995266368448, 48.03236366365212 ], [ 3.117926906901232, 48.00084388733552 ], [ 3.085011866604361, 47.948757704004834 ], [ 2.994572410188596, 47.907262340884301 ], [ 3.012106591046347, 47.847233041271807 ], [ 2.992353172061257, 47.792378303116152 ], [ 2.834897110912948, 47.749125127822367 ], [ 2.83689662308069, 47.715869511568656 ], [ 2.87534877302744, 47.704191044081369 ], [ 2.928434712891658, 47.659542604807314 ], [ 2.92500697838932, 47.619003052848598 ], [ 2.969259909317373, 47.567587035313409 ], [ 2.858913225564891, 47.544252073474411 ], [ 2.874716754674466, 47.520525423609399 ], [ 2.818593399565714, 47.498603877666824 ], [ 2.733119763866, 47.52496008044335 ], [ 2.703874157166581, 47.48666173884817 ], [ 2.678913218370326, 47.484991816519084 ], [ 2.566281377983216, 47.572761595870929 ], [ 2.489179324366319, 47.57657385170188 ], [ 2.441916139518241, 47.606929077015252 ], [ 2.372504515171215, 47.595151733565615 ], [ 2.294479610545579, 47.622167115120249 ], [ 2.239108514046677, 47.620958618745249 ], [ 2.223771599979329, 47.663003298563353 ], [ 2.171652457394998, 47.67718664864492 ], [ 1.970382918137147, 47.66412390419481 ], [ 1.860871195549237, 47.70000525303999 ], [ 1.819672463013774, 47.643667360160521 ], [ 1.788976660844185, 47.641250367410521 ], [ 1.733100193918801, 47.676362673598476 ], [ 1.706139743854067, 47.733711309129603 ], [ 1.628883881885656, 47.76393469832766 ], [ 1.599088958488608, 47.735271367579514 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-49", "NAME_1": "Maine-et-Loire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0583171484177, 47.564148313793623 ], [ -1.008208504119182, 47.587757933981436 ], [ -1.170092055404041, 47.641096559058951 ], [ -1.1793425440232, 47.699488895596005 ], [ -1.247974137796234, 47.733974980460971 ], [ -1.24296437260773, 47.809538948763475 ], [ -1.13853931983374, 47.777535773357215 ], [ -0.984368170954326, 47.763264532532105 ], [ -0.956451910627209, 47.793411018004065 ], [ -0.626938958566086, 47.735051640720599 ], [ -0.579357169098103, 47.757639532138683 ], [ -0.5276115617242, 47.756562871878998 ], [ -0.502266101599332, 47.77886511883014 ], [ -0.244120339781887, 47.70558630806164 ], [ -0.194637916806414, 47.719473026658818 ], [ -0.184376685535597, 47.705289676577308 ], [ -0.208491677049267, 47.690952518144172 ], [ -0.207074439933479, 47.668880984170073 ], [ -0.168918921471061, 47.638613648700925 ], [ -0.142617651083754, 47.634328980797818 ], [ -0.097397921976551, 47.65719153056466 ], [ 0.151464391968091, 47.588010620093996 ], [ 0.175216834389403, 47.588834594241121 ], [ 0.185939490714929, 47.6164761971188 ], [ 0.241772012268541, 47.602886108207315 ], [ 0.214328164013523, 47.548514768241944 ], [ 0.221776894188281, 47.502240352909951 ], [ 0.173986364878829, 47.414734245788793 ], [ 0.177062537306256, 47.377446646845272 ], [ 0.105255894244124, 47.299081165363475 ], [ 0.066759798925546, 47.153688093031064 ], [ -0.004047088502318, 47.156555524717646 ], [ -0.053068086423082, 47.096251567655713 ], [ -0.091849826208545, 47.086144145635785 ], [ -0.118228001221269, 47.057337991754878 ], [ -0.181322486243744, 47.100635112420491 ], [ -0.376329817666942, 47.088132670786081 ], [ -0.473196276387057, 47.066379740532568 ], [ -0.517657948055842, 47.07536655692104 ], [ -0.555132314604634, 47.060952493862487 ], [ -0.549155752136244, 47.025170021878978 ], [ -0.632410149708676, 46.992430763069251 ], [ -0.696460444993534, 46.988091162776925 ], [ -0.851125978181358, 46.989640235108766 ], [ -0.935006597076779, 47.016556740700992 ], [ -0.96076953778396, 47.00288974806341 ], [ -0.993442878086341, 47.020390968768197 ], [ -1.034905281953229, 47.003186378648422 ], [ -1.07525806720605, 47.007196388202715 ], [ -1.148613782600023, 47.029498635153857 ], [ -1.118357434148265, 47.041045266525828 ], [ -1.129354748822607, 47.062644388427771 ], [ -1.230110367999089, 47.109424175984884 ], [ -1.16185230853722, 47.185823104552583 ], [ -1.183945815646894, 47.231592149458095 ], [ -1.196371352655831, 47.248159532136697 ], [ -1.250577898151505, 47.246423692199585 ], [ -1.301488544360836, 47.297114612449377 ], [ -1.339259542393961, 47.300893909926003 ], [ -1.334722188378294, 47.323855336554516 ], [ -1.164796644849275, 47.37579869765176 ], [ -0.923778569425451, 47.39425572951825 ], [ -0.955869634675935, 47.438838250285016 ], [ -0.96559253536725, 47.491759395679537 ], [ -1.128959241375924, 47.504975948481217 ], [ -1.174651381655963, 47.541999876093371 ], [ -1.178892104187241, 47.563785765600585 ], [ -1.0583171484177, 47.564148313793623 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-10", "NAME_1": "Aube" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.196037299981413, 48.710736492295268 ], [ 4.317194530802965, 48.702738445422881 ], [ 4.331806348484179, 48.67539347402959 ], [ 4.328180859359179, 48.611167397257532 ], [ 4.526110554858235, 48.528879796065723 ], [ 4.599411338762252, 48.549907629033839 ], [ 4.6702292123083, 48.531813146259651 ], [ 4.637270226639657, 48.460775545854744 ], [ 4.77391818167871, 48.35842690897465 ], [ 4.824015839859101, 48.342101224491898 ], [ 4.819181855258421, 48.313130276141294 ], [ 4.846625703513382, 48.290058986532983 ], [ 4.861676974013108, 48.19031410910884 ], [ 4.827597382713009, 48.11146522943676 ], [ 4.726061733861911, 48.111750873903702 ], [ 4.695212123340809, 48.078769915998805 ], [ 4.718415249963812, 48.042910539389879 ], [ 4.698508022627152, 48.022025528655206 ], [ 4.583217490394873, 48.010742569513923 ], [ 4.541777059663559, 47.965292128329054 ], [ 4.325917675860069, 47.946044080669765 ], [ 4.288410350057575, 47.924258191162551 ], [ 4.255495309760704, 47.934541394669623 ], [ 4.218229683952757, 47.972422255682545 ], [ 4.203024605101405, 47.939144666293316 ], [ 4.161737981822398, 47.954097059032051 ], [ 4.127482609934475, 47.933146130689352 ], [ 4.067892764039811, 47.938210828267074 ], [ 4.037614442452536, 47.922654187340868 ], [ 3.925114438180742, 47.930926892562013 ], [ 3.904196468192424, 47.947922742840262 ], [ 3.898439632582949, 47.986352919651495 ], [ 3.83168670008115, 47.9938126368437 ], [ 3.858713068653174, 48.015257950394073 ], [ 3.733183278285651, 48.157212301206698 ], [ 3.665793139241998, 48.14388588542522 ], [ 3.581571944389736, 48.18096474362801 ], [ 3.613234542939779, 48.217208641565549 ], [ 3.599875167904656, 48.267240382137913 ], [ 3.50974332819203, 48.347440580418436 ], [ 3.421281410808433, 48.369808744977547 ], [ 3.391816078149475, 48.421103913414868 ], [ 3.391047034592987, 48.474453524610453 ], [ 3.42064420426658, 48.49849161149865 ], [ 3.405922523605568, 48.524715977260541 ], [ 3.461315592340725, 48.539800207013911 ], [ 3.493571452960168, 48.587733558556863 ], [ 3.537802411651967, 48.613419594638572 ], [ 3.565619795117414, 48.614770912347694 ], [ 3.600182784607796, 48.578186438453372 ], [ 3.623913254792853, 48.579142249615074 ], [ 3.635646653770038, 48.541283360838406 ], [ 3.715978688165933, 48.568672278502845 ], [ 3.748058767298289, 48.540228673714296 ], [ 3.848429865146159, 48.525803624537616 ], [ 3.869215998119785, 48.570342199932554 ], [ 4.009599304364372, 48.657870279289909 ], [ 4.057301942930337, 48.667263590142568 ], [ 4.078615420365338, 48.694531657809762 ], [ 4.196037299981413, 48.710736492295268 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-75", "NAME_1": "Paris" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.235351189705625, 48.83380534454102 ], [ 2.233153924713861, 48.869082446097991 ], [ 2.266596308572787, 48.901140552994093 ], [ 2.376613402486498, 48.901217456720246 ], [ 2.473420416019394, 48.859200672972634 ], [ 2.443366334988355, 48.815831711764076 ], [ 2.235351189705625, 48.83380534454102 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-92", "NAME_1": "Hauts-de-Seine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.266596308572787, 48.901140552994093 ], [ 2.226803826135665, 48.852800706987011 ], [ 2.235351189705625, 48.83380534454102 ], [ 2.331964963212499, 48.817117111865173 ], [ 2.320758907797369, 48.748705244051735 ], [ 2.30256554816151, 48.730105389951746 ], [ 2.165983511629747, 48.817820236914372 ], [ 2.152536245851081, 48.841506760828338 ], [ 2.151613393942966, 48.882881274850945 ], [ 2.183737418447095, 48.912906910325603 ], [ 2.294677364268921, 48.956731374553272 ], [ 2.329833615828704, 48.9483048609805 ], [ 2.319088986367603, 48.923453786063362 ], [ 2.266596308572787, 48.901140552994093 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-93", "NAME_1": "Seine-Saint-Denis" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.266596308572787, 48.901140552994093 ], [ 2.327306760098907, 48.930726735650296 ], [ 2.31884728727249, 48.958126638533543 ], [ 2.346269163291254, 48.972320975632499 ], [ 2.441191041333468, 48.955445974452118 ], [ 2.564215948207448, 49.007268486451437 ], [ 2.592297004802901, 48.933583180319488 ], [ 2.571071417212124, 48.858041186051878 ], [ 2.592384894647182, 48.807471115799331 ], [ 2.515041141935114, 48.8499442614185 ], [ 2.429084107145798, 48.869060472962417 ], [ 2.391554809107163, 48.897020679560683 ], [ 2.266596308572787, 48.901140552994093 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-95", "NAME_1": "Val-d'Oise" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.31884728727249, 48.958126638533543 ], [ 2.254643182736686, 48.944888112596288 ], [ 2.151613393942966, 48.882881274850945 ], [ 2.124894642973402, 48.886177173237911 ], [ 2.121730579802431, 48.910709644434519 ], [ 2.172267691700597, 48.960027273839614 ], [ 2.173102652865111, 48.988591727726032 ], [ 2.072753527253496, 48.995183524500021 ], [ 2.024413682145678, 48.942811696702393 ], [ 2.008307724521842, 48.946645925668918 ], [ 2.007714462452498, 48.979066580758058 ], [ 1.977941512191023, 49.009542656068675 ], [ 1.881151958096382, 48.998369559907246 ], [ 1.841447366402804, 49.067506525905401 ], [ 1.802621681245569, 49.072659114226724 ], [ 1.704997165986413, 49.047115900378458 ], [ 1.699108493362246, 49.069033625101667 ], [ 1.61987509236161, 49.082590754759508 ], [ 1.698053806238136, 49.230664491173286 ], [ 1.737494725701026, 49.189454772519696 ], [ 1.885700297330857, 49.167800719127854 ], [ 1.987521590648896, 49.17746868832927 ], [ 2.071588977149588, 49.211932800957982 ], [ 2.237790154691879, 49.163098570642489 ], [ 2.318737423393372, 49.179578063476811 ], [ 2.509196415582096, 49.112561458744324 ], [ 2.535695439692802, 49.117823910045388 ], [ 2.583332160650684, 49.084546321555479 ], [ 2.553119756671435, 49.009784355163845 ], [ 2.473512820460257, 48.962598074041864 ], [ 2.346269163291254, 48.972320975632499 ], [ 2.31884728727249, 48.958126638533543 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-78", "NAME_1": "Yvelines" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.61987509236161, 49.082590754759508 ], [ 1.699108493362246, 49.069033625101667 ], [ 1.704997165986413, 49.047115900378458 ], [ 1.802621681245569, 49.072659114226724 ], [ 1.841447366402804, 49.067506525905401 ], [ 1.881151958096382, 48.998369559907246 ], [ 1.977941512191023, 49.009542656068675 ], [ 2.007714462452498, 48.979066580758058 ], [ 2.008307724521842, 48.946645925668918 ], [ 2.024413682145678, 48.942811696702393 ], [ 2.072753527253496, 48.995183524500021 ], [ 2.177387320768219, 48.984977225618422 ], [ 2.172267691700597, 48.960027273839614 ], [ 2.136232533604527, 48.93854900103554 ], [ 2.124894642973402, 48.886177173237911 ], [ 2.151613393942966, 48.882881274850945 ], [ 2.165983511629747, 48.817820236914372 ], [ 2.226540154804297, 48.776072188580599 ], [ 2.123642201226573, 48.755989179756796 ], [ 2.090221789603902, 48.69771769321693 ], [ 2.045793077188762, 48.686797282268742 ], [ 2.028061142607612, 48.65257486963452 ], [ 2.029115830631042, 48.579043372753404 ], [ 1.94891563235052, 48.548863928027856 ], [ 1.919340435812444, 48.444482820625637 ], [ 1.875153422492417, 48.444120271533279 ], [ 1.784977637408019, 48.47678262661691 ], [ 1.763752050716562, 48.501205234833719 ], [ 1.757819433619943, 48.552181798651077 ], [ 1.576105559623841, 48.698036296937516 ], [ 1.606383881211116, 48.748606367190064 ], [ 1.567733976641705, 48.772886153173431 ], [ 1.57037069625062, 48.845395921284705 ], [ 1.492807216679694, 48.939548757569071 ], [ 1.488302821917671, 48.97332073126671 ], [ 1.45152059340063, 48.986152762739778 ], [ 1.443456628920273, 49.035712091239986 ], [ 1.61987509236161, 49.082590754759508 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-16", "NAME_1": "Charente" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.204009254523498, 45.77602446665577 ], [ -0.128060765791702, 45.831955865071109 ], [ -0.151186986889968, 45.926647031035657 ], [ -0.100693821262837, 45.936029355770131 ], [ -0.086818087884467, 45.949289853943583 ], [ -0.102957004761947, 45.96971343872417 ], [ -0.062801974131787, 45.982754210938083 ], [ -0.011034393622367, 46.051528627843879 ], [ 0.088732456038031, 46.098835758063785 ], [ 0.135929723278082, 46.104065250111205 ], [ 0.286706096009539, 46.062207338797634 ], [ 0.442096727382079, 46.053517152994175 ], [ 0.470793017383812, 46.081092837364508 ], [ 0.44365678583199, 46.096385806959404 ], [ 0.487887744523789, 46.133662419784798 ], [ 0.553278372299019, 46.090661929704254 ], [ 0.599926322841497, 46.082773745811721 ], [ 0.646794000242892, 46.091035464914739 ], [ 0.707768123999699, 46.136694645941134 ], [ 0.796361877498612, 46.13289337622831 ], [ 0.813478576874786, 46.053572084484074 ], [ 0.84742633205957, 46.020140686743275 ], [ 0.885153384720923, 46.021975403542001 ], [ 0.92411090599353, 45.97373443529591 ], [ 0.889481997995802, 45.939391171765124 ], [ 0.810050842372448, 45.921900937178464 ], [ 0.780695372693287, 45.796997368133987 ], [ 0.711042050150468, 45.797151176485556 ], [ 0.564857962025314, 45.647857957578651 ], [ 0.517199268831178, 45.634476609407955 ], [ 0.504806690176622, 45.568097212116641 ], [ 0.433922899022548, 45.489160441701017 ], [ 0.280905315028235, 45.422495399942704 ], [ 0.256251993834439, 45.366168494080739 ], [ 0.24941849706596, 45.292999545392661 ], [ 0.179084021710196, 45.259568147651862 ], [ 0.13346878605563, 45.214919708377806 ], [ 0.08275589267032, 45.222357453333757 ], [ 0.00033645626246, 45.19202420025664 ], [ -0.005475311736234, 45.22604886006684 ], [ -0.036467744490835, 45.242330598278443 ], [ -0.115294651926661, 45.248153352395263 ], [ -0.108790744996895, 45.289648715515796 ], [ -0.285044413968535, 45.31878445923536 ], [ -0.280254374739627, 45.351238073578202 ], [ -0.3106425593067, 45.376682410564797 ], [ -0.256403055456644, 45.415486122586458 ], [ -0.248306131722586, 45.434997842476434 ], [ -0.267136698799618, 45.471549357117112 ], [ -0.244482888874245, 45.50317899731283 ], [ -0.321639873980985, 45.5350283634682 ], [ -0.29652512683316, 45.564416792401005 ], [ -0.420450913378943, 45.620161423211073 ], [ -0.415847641755249, 45.741604299398887 ], [ -0.459265612418108, 45.740187063182418 ], [ -0.435513169996796, 45.777947074198096 ], [ -0.272058573244578, 45.803962700118518 ], [ -0.204009254523498, 45.77602446665577 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-18", "NAME_1": "Cher" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.885722270466374, 47.10366733947609 ], [ 1.774386817197865, 47.130649762676398 ], [ 1.82538535415074, 47.166904646732064 ], [ 1.838986429180352, 47.219243516175311 ], [ 1.905124126477233, 47.222242783077945 ], [ 1.914396588231966, 47.261156358978781 ], [ 1.941598737391814, 47.283030139229538 ], [ 2.051066514607953, 47.265671739858874 ], [ 2.139088979173039, 47.286073352403264 ], [ 2.148669057630912, 47.308584339195875 ], [ 2.116237415524324, 47.375183463346104 ], [ 2.127289662587827, 47.416085564397235 ], [ 2.152448355107481, 47.427170769815177 ], [ 2.245129022786159, 47.411240593678428 ], [ 2.258642206172851, 47.439211785495502 ], [ 2.245963983051354, 47.481684932013991 ], [ 2.199162224157305, 47.5412528056724 ], [ 2.128366322847512, 47.559127561587673 ], [ 2.132760853730417, 47.587703002491537 ], [ 2.27070519498875, 47.624353394893262 ], [ 2.372504515171215, 47.595151733565615 ], [ 2.441916139518241, 47.606929077015252 ], [ 2.489179324366319, 47.57657385170188 ], [ 2.584430793146566, 47.56366491560334 ], [ 2.678913218370326, 47.484991816519084 ], [ 2.703874157166581, 47.48666173884817 ], [ 2.733119763866, 47.52496008044335 ], [ 2.79760951196937, 47.497373409055569 ], [ 2.881764789213662, 47.51456701305716 ], [ 2.932148091860938, 47.440178582775332 ], [ 2.875041155424981, 47.337115834727967 ], [ 2.97686244874302, 47.260453233929582 ], [ 3.033485986089374, 47.122190288950662 ], [ 3.031618310036947, 47.075838968993196 ], [ 3.068422510790242, 47.045505715916022 ], [ 3.075563624261861, 46.97395175806713 ], [ 3.054162256083259, 46.913263279676585 ], [ 3.073234523154724, 46.870317721085939 ], [ 3.029772607120094, 46.790941497851804 ], [ 2.93137904830445, 46.783240081564486 ], [ 2.838149064827462, 46.725935391405187 ], [ 2.805541641233731, 46.730736416752222 ], [ 2.780734511688365, 46.714586513756558 ], [ 2.722243298289584, 46.734306973488003 ], [ 2.62200403655703, 46.686120936731811 ], [ 2.619674935449893, 46.661368738676344 ], [ 2.580871222528913, 46.659654870975487 ], [ 2.593417609535038, 46.628728356728232 ], [ 2.583332160650684, 46.608139976578627 ], [ 2.615785774993526, 46.569896567372666 ], [ 2.613478646122587, 46.549461996473951 ], [ 2.399640746723094, 46.521765462106373 ], [ 2.340050900828373, 46.50057283376924 ], [ 2.253896112315715, 46.419801346554891 ], [ 2.139174556860326, 46.421365434866914 ], [ 2.194679801631537, 46.489971027440959 ], [ 2.158512808319415, 46.549099447381593 ], [ 2.187406852044603, 46.622718835006197 ], [ 2.144955678661631, 46.662390467446073 ], [ 2.137770619818241, 46.702095058240332 ], [ 2.066776964785106, 46.727154873898314 ], [ 2.11395225978896, 46.775362883790024 ], [ 2.077257922015463, 46.806355316544625 ], [ 2.077653430361522, 46.839061616100651 ], [ 2.132299428675708, 46.902782322446171 ], [ 2.07897178971632, 46.942344091006987 ], [ 2.093100208307931, 46.999593848777067 ], [ 2.042013780611455, 47.047637064199137 ], [ 2.047419054146019, 47.105644878508315 ], [ 1.966515730816297, 47.123805279789792 ], [ 1.885722270466374, 47.10366733947609 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-28", "NAME_1": "Eure-et-Loir" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.211798905095407, 47.967742079433378 ], [ 1.0971455803043, 48.068025286537704 ], [ 1.036325265798382, 48.082208636619271 ], [ 1.018944893292201, 48.129285054761453 ], [ 0.832550843946308, 48.094480365276638 ], [ 0.912882877442826, 48.147192769930371 ], [ 0.798383361902609, 48.18595253658026 ], [ 0.827409241743112, 48.208990867834245 ], [ 0.796823303452697, 48.253232812644171 ], [ 0.778849669776434, 48.32416055006928 ], [ 0.916464421196054, 48.368732084717919 ], [ 0.979811591431769, 48.433111969841491 ], [ 0.949071843890465, 48.469498690012529 ], [ 0.951071356058208, 48.515674229382171 ], [ 0.850370668371625, 48.58297647768228 ], [ 0.822773010865774, 48.620571694228261 ], [ 0.816422913186898, 48.665088297387001 ], [ 0.872738832930793, 48.698970134963758 ], [ 0.99949909190957, 48.717591961299945 ], [ 1.038918039136206, 48.747727460653778 ], [ 1.096815990465586, 48.752374677649243 ], [ 1.108900951517683, 48.778214522082521 ], [ 1.248998613295385, 48.749737958939647 ], [ 1.323683675061545, 48.775369063531457 ], [ 1.372397055379793, 48.830795090620938 ], [ 1.444225671577499, 48.863787035543226 ], [ 1.448092858898292, 48.917268482854183 ], [ 1.492807216679694, 48.939548757569071 ], [ 1.57037069625062, 48.845395921284705 ], [ 1.57052450460219, 48.76803019633644 ], [ 1.606383881211116, 48.748606367190064 ], [ 1.578896086685063, 48.692894694734377 ], [ 1.698053806238136, 48.611969399168402 ], [ 1.70943564224109, 48.581965735929941 ], [ 1.757819433619943, 48.552181798651077 ], [ 1.763752050716562, 48.501205234833719 ], [ 1.784977637408019, 48.47678262661691 ], [ 1.875153422492417, 48.444120271533279 ], [ 1.919340435812444, 48.444482820625637 ], [ 1.923053814781724, 48.413061920271389 ], [ 1.998683700692197, 48.325522854795906 ], [ 1.971657332120174, 48.294936916505492 ], [ 1.988444442556954, 48.276743555970313 ], [ 1.965065535346184, 48.24610268619 ], [ 1.976469344484656, 48.200531395007829 ], [ 1.963527449132471, 48.178437887898156 ], [ 1.918483502411675, 48.166528708333203 ], [ 1.854543070106615, 48.086163714683664 ], [ 1.729342869577749, 48.066728899419161 ], [ 1.647055269285261, 48.072408831302482 ], [ 1.599418548327321, 48.03527504071053 ], [ 1.537433682818175, 48.040460588285498 ], [ 1.515900478524259, 48.017949600593568 ], [ 1.520031338075796, 47.98229896472543 ], [ 1.470373133613236, 47.993494033123113 ], [ 1.348798422209427, 47.950932996760343 ], [ 1.25178914035655, 47.975399550348925 ], [ 1.211798905095407, 47.967742079433378 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-43", "NAME_1": "Haute-Loire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.112301907407073, 45.284715854053388 ], [ 3.103534816978197, 45.354468054357199 ], [ 3.200500152559982, 45.359719518640873 ], [ 3.325810216068589, 45.421627480423865 ], [ 3.395133948772695, 45.40095121042998 ], [ 3.505041179706666, 45.416441933748217 ], [ 3.567685224893182, 45.393897986802642 ], [ 3.62342985660257, 45.347623571470649 ], [ 3.678515307735267, 45.369563269329376 ], [ 3.759836111647246, 45.349667028110844 ], [ 3.80474822225267, 45.385910926048382 ], [ 3.902482601390943, 45.345503210204981 ], [ 3.961764829683148, 45.369947790657989 ], [ 3.998634948943732, 45.345602087066652 ], [ 4.042096864078985, 45.34642606121372 ], [ 4.137721868069718, 45.359554724171176 ], [ 4.160046087257115, 45.386690955722997 ], [ 4.264635935400065, 45.372265906546318 ], [ 4.302516796412988, 45.392887245050304 ], [ 4.350768750777206, 45.343558629527081 ], [ 4.338793652704908, 45.306688511165817 ], [ 4.353559278737691, 45.278497592489884 ], [ 4.429584672094904, 45.259458284672064 ], [ 4.478166217197156, 45.218116730802478 ], [ 4.435780961422211, 45.119800076612194 ], [ 4.369994826200241, 45.132851834944177 ], [ 4.383486037350735, 45.101299099373932 ], [ 4.347824415364471, 45.06843899056696 ], [ 4.367665724193785, 45.038127709725984 ], [ 4.301901562107389, 45.021131859447735 ], [ 4.288849803775406, 45.001279563600974 ], [ 4.296628123788878, 44.974176291302797 ], [ 4.215417183756017, 44.95893825409712 ], [ 4.153520208091095, 44.875354265786711 ], [ 4.03141815312523, 44.865268816902358 ], [ 4.013444519449024, 44.836078141692838 ], [ 3.94748260273991, 44.818401138601644 ], [ 3.872204279803668, 44.750912122696263 ], [ 3.795102226186771, 44.776180678195715 ], [ 3.728678883523628, 44.820938981348888 ], [ 3.655114427388924, 44.833518326709395 ], [ 3.661156908364603, 44.862687029682661 ], [ 3.643468919155282, 44.874310564780728 ], [ 3.594601730485465, 44.870981707140061 ], [ 3.569465010202066, 44.829145768062745 ], [ 3.478673991711332, 44.821653092516158 ], [ 3.386696449081853, 44.953489035190785 ], [ 3.369733557157929, 44.954236104712436 ], [ 3.355802893188979, 44.993160666731342 ], [ 3.296322910274057, 45.039094507005871 ], [ 3.294806797195918, 45.069724390668057 ], [ 3.330600255297554, 45.098146022321032 ], [ 3.327831700472586, 45.112032741817529 ], [ 3.274591952256799, 45.1361477333312 ], [ 3.268131990698805, 45.188014189802971 ], [ 3.233459138228625, 45.232267121630343 ], [ 3.226515778480405, 45.268005648242024 ], [ 3.192809722390791, 45.286001254154542 ], [ 3.112301907407073, 45.284715854053388 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-15", "NAME_1": "Cantal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.103534816978197, 45.354468054357199 ], [ 3.112301907407073, 45.284715854053388 ], [ 3.192809722390791, 45.286001254154542 ], [ 3.226515778480405, 45.268005648242024 ], [ 3.233459138228625, 45.232267121630343 ], [ 3.268131990698805, 45.188014189802971 ], [ 3.274591952256799, 45.1361477333312 ], [ 3.327831700472586, 45.112032741817529 ], [ 3.330600255297554, 45.098146022321032 ], [ 3.294806797195918, 45.069724390668057 ], [ 3.296322910274057, 45.039094507005871 ], [ 3.355802893188979, 44.993160666731342 ], [ 3.369733557157929, 44.954236104712436 ], [ 3.244225739925923, 44.922068134836536 ], [ 3.16820034656871, 44.871761736814676 ], [ 3.124298977715625, 44.895657001469431 ], [ 3.107072414460333, 44.888526874115939 ], [ 3.08949428913013, 44.837000993600952 ], [ 3.053547021777604, 44.811271012147472 ], [ 3.024960594755612, 44.715052746087338 ], [ 2.980114401758215, 44.644278817913118 ], [ 2.925797993282742, 44.690816905475799 ], [ 2.906879536361487, 44.756778822184856 ], [ 2.926567036839288, 44.778092299619914 ], [ 2.878600726042635, 44.797164565792059 ], [ 2.830085099447786, 44.86459865020754 ], [ 2.775768690972313, 44.863104510264918 ], [ 2.770055799835291, 44.899996600862437 ], [ 2.726725720815352, 44.935350606145505 ], [ 2.594032844739957, 44.834990495315083 ], [ 2.533981572891264, 44.723160656838843 ], [ 2.471623171272313, 44.668229014057715 ], [ 2.340050900828373, 44.651903329574964 ], [ 2.30045617301397, 44.668723399265446 ], [ 2.214213493757711, 44.647201181089599 ], [ 2.20531456811284, 44.622339120054335 ], [ 2.1816060710633, 44.631227059581136 ], [ 2.161281363144383, 44.684554698540467 ], [ 2.132255483303879, 44.698672130114687 ], [ 2.156798940618614, 44.783827162993134 ], [ 2.085387805003165, 44.879792742940708 ], [ 2.058712999405373, 44.975110129328982 ], [ 2.131618275862706, 44.992655296304861 ], [ 2.107448352859194, 45.050948755080981 ], [ 2.160666128838784, 45.08623684275608 ], [ 2.206874626562751, 45.159493681288325 ], [ 2.194635856259765, 45.223697784924809 ], [ 2.347785276369393, 45.339713414442485 ], [ 2.369032835297105, 45.376605505939324 ], [ 2.351828245177387, 45.406631142313358 ], [ 2.391247192404023, 45.413277870577247 ], [ 2.482170047010072, 45.391799598672492 ], [ 2.518644657924597, 45.479239787286303 ], [ 2.537365362021831, 45.480041789197173 ], [ 2.668036753693229, 45.434525430404278 ], [ 2.703478649719898, 45.38803128731405 ], [ 2.833820451552583, 45.396413856414313 ], [ 2.900441547039748, 45.372639441756803 ], [ 2.948561666187913, 45.309160435405772 ], [ 2.995451316724882, 45.288616000627883 ], [ 3.033991357415175, 45.300261508861524 ], [ 3.103534816978197, 45.354468054357199 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-47", "NAME_1": "Lot-et-Garonne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.129203343659412, 44.152486807120454 ], [ -0.140640111152209, 44.226501702191797 ], [ -0.03473190455378, 44.275863276069288 ], [ -0.085356906296226, 44.34574731248847 ], [ 0.014794464692784, 44.366687254712986 ], [ -0.001190642933807, 44.410434815214501 ], [ 0.011333770936744, 44.448854005907606 ], [ -0.015011444822335, 44.473803957686471 ], [ -0.01383590770098, 44.497710208459353 ], [ 0.03325149655933, 44.549148199130059 ], [ 0.081876987033297, 44.557069342276293 ], [ 0.17016312292975, 44.637434335026512 ], [ 0.174557654711975, 44.655638681679818 ], [ 0.125338902168608, 44.67293116254308 ], [ 0.108419956515775, 44.696485851240993 ], [ 0.11870316002279, 44.723918713377884 ], [ 0.143444371960186, 44.737245130058682 ], [ 0.213844764923977, 44.714734143266071 ], [ 0.232367715297812, 44.758481702868266 ], [ 0.297406780098811, 44.762337904070989 ], [ 0.375277877272197, 44.657462412360417 ], [ 0.416960007098623, 44.645256601311075 ], [ 0.505377979110449, 44.676479747042663 ], [ 0.546598683882166, 44.665218760137634 ], [ 0.600453666403553, 44.700935314513117 ], [ 0.640751520166532, 44.699891612607814 ], [ 0.685817439123525, 44.673656260727853 ], [ 0.811720764701533, 44.690058848936701 ], [ 0.842065003896778, 44.659615732879729 ], [ 0.817082092864268, 44.627085213911471 ], [ 0.840768617677554, 44.602091315861514 ], [ 0.972231024242376, 44.638357186934627 ], [ 1.056320382979266, 44.600311531452007 ], [ 1.077210823820451, 44.574533434470425 ], [ 0.998268623298316, 44.532712651667509 ], [ 1.037533761274062, 44.446437013157606 ], [ 1.067460520786369, 44.422245117917839 ], [ 1.064516184474314, 44.378431639808298 ], [ 0.969528387924754, 44.362798094256618 ], [ 0.92008990942179, 44.378991942624054 ], [ 0.901105533993189, 44.36711572141337 ], [ 0.886537661683747, 44.312645504586328 ], [ 0.947204167838038, 44.272907954538425 ], [ 0.905917545458351, 44.201024406850877 ], [ 0.871815981921998, 44.1808644934016 ], [ 0.894294010360284, 44.14965233378814 ], [ 0.807897521853135, 44.145422597374932 ], [ 0.758371153505891, 44.105366443606442 ], [ 0.74173785142068, 44.06702415753881 ], [ 0.679665095167991, 44.040459214920816 ], [ 0.576635306374271, 44.070902330977788 ], [ 0.466310594858044, 44.056334459567609 ], [ 0.303734905541432, 43.996645736811274 ], [ 0.211867225891751, 44.017102279946243 ], [ 0.157067419225996, 43.96912498393084 ], [ 0.123998570577555, 43.981297835726537 ], [ 0.085239584539181, 43.967321195716579 ], [ 0.060321810503126, 44.024858628622781 ], [ 0.135490270459627, 44.117275624070771 ], [ -0.129203343659412, 44.152486807120454 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-48", "NAME_1": "Lozère" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.993998718066393, 44.457851808414205 ], [ 3.959216001717095, 44.413785645091423 ], [ 3.894836116593467, 44.390230956393509 ], [ 3.92652068827914, 44.35073510544072 ], [ 3.96536834567263, 44.247166986067555 ], [ 3.920412289695378, 44.16642845810685 ], [ 3.875785822657576, 44.131371083408737 ], [ 3.790993338871488, 44.135996328168005 ], [ 3.671000659053163, 44.184105460298724 ], [ 3.642721848734311, 44.176909415337207 ], [ 3.636613450150605, 44.127262196992774 ], [ 3.616288743130951, 44.11683617125226 ], [ 3.517939129687079, 44.113441395104303 ], [ 3.376720862277978, 44.168263174905576 ], [ 3.350683264121358, 44.193971183223482 ], [ 3.233678865087541, 44.194905021249724 ], [ 3.21302456732991, 44.230709466368751 ], [ 3.123354153571313, 44.263393793688579 ], [ 3.147370267323993, 44.310217525718201 ], [ 3.12552944632688, 44.363545164677589 ], [ 3.140097318636322, 44.428661134104004 ], [ 3.08547329255839, 44.489382571748251 ], [ 3.084396632298706, 44.537260991801304 ], [ 3.066247218034675, 44.564210455747912 ], [ 2.980114401758215, 44.644278817913118 ], [ 3.024960594755612, 44.715052746087338 ], [ 3.053547021777604, 44.811271012147472 ], [ 3.08949428913013, 44.837000993600952 ], [ 3.107072414460333, 44.888526874115939 ], [ 3.124298977715625, 44.895657001469431 ], [ 3.16820034656871, 44.871761736814676 ], [ 3.244225739925923, 44.922068134836536 ], [ 3.379203772636004, 44.956795919695935 ], [ 3.478673991711332, 44.821653092516158 ], [ 3.569465010202066, 44.829145768062745 ], [ 3.594601730485465, 44.870981707140061 ], [ 3.643468919155282, 44.874310564780728 ], [ 3.661156908364603, 44.862687029682661 ], [ 3.655114427388924, 44.833518326709395 ], [ 3.728678883523628, 44.820938981348888 ], [ 3.795102226186771, 44.776180678195715 ], [ 3.872204279803668, 44.750912122696263 ], [ 3.900307308635377, 44.622130379313546 ], [ 3.957414244172014, 44.550873052948987 ], [ 3.993998718066393, 44.457851808414205 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-58", "NAME_1": "Nièvre" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.106125187127645, 47.339247182111762 ], [ 4.123351750382938, 47.323306019856886 ], [ 4.124977727340251, 47.249818468347598 ], [ 4.191466987611363, 47.244588975400859 ], [ 4.224052438069577, 47.199940536126803 ], [ 4.209748237990766, 47.155325056106449 ], [ 4.057016298463395, 47.114368023565419 ], [ 4.047084657930611, 47.085254252981372 ], [ 4.062531435877077, 47.026235696020535 ], [ 4.001117859301758, 47.001340675731569 ], [ 4.000436706488813, 46.977390479586916 ], [ 4.045898133791809, 46.957615087466309 ], [ 4.043898622523386, 46.908352390450432 ], [ 4.08905243222398, 46.881897311711555 ], [ 4.093007511187693, 46.864868502179604 ], [ 4.039196474038022, 46.83573275935936 ], [ 4.05262176758049, 46.817275726593493 ], [ 4.047260438518435, 46.785624114161521 ], [ 3.80927459015021, 46.701754482283491 ], [ 3.738742361071104, 46.752049894187223 ], [ 3.596755050105457, 46.742887296311665 ], [ 3.559862959507939, 46.681385828992802 ], [ 3.483486003176495, 46.650843836074159 ], [ 3.460700358035069, 46.651470056497885 ], [ 3.439255044484696, 46.700095546971909 ], [ 3.407614418170851, 46.711356533876938 ], [ 3.358439611898575, 46.684648769025443 ], [ 3.285512363204987, 46.702424648079045 ], [ 3.204191559293008, 46.687274501616912 ], [ 3.147370267323993, 46.724639004286587 ], [ 3.071059229499838, 46.739162931224257 ], [ 3.031178857218492, 46.772001066895712 ], [ 3.035199852890912, 46.814869720860884 ], [ 3.073234523154724, 46.870317721085939 ], [ 3.054162256083259, 46.913263279676585 ], [ 3.075563624261861, 46.97395175806713 ], [ 3.068422510790242, 47.045505715916022 ], [ 3.031618310036947, 47.075838968993196 ], [ 3.033485986089374, 47.122190288950662 ], [ 2.97686244874302, 47.260453233929582 ], [ 2.875041155424981, 47.337115834727967 ], [ 2.931840474258479, 47.447781122200979 ], [ 2.855968889252836, 47.536374875699948 ], [ 2.909670063422652, 47.562214720133227 ], [ 3.098722804613715, 47.578760131474837 ], [ 3.118542142106151, 47.572618773637487 ], [ 3.1451290569604, 47.525355587890033 ], [ 3.211552398724223, 47.515962277037431 ], [ 3.23945767383259, 47.492605342962179 ], [ 3.290873691367779, 47.501306514883709 ], [ 3.345871251756876, 47.48053136712889 ], [ 3.415436684455415, 47.508821163565813 ], [ 3.488210124797433, 47.493780880083534 ], [ 3.492011394510257, 47.55995153663406 ], [ 3.587328780898531, 47.465249384551441 ], [ 3.644699388665856, 47.456723993217679 ], [ 3.715890797422333, 47.411537224263441 ], [ 3.813207695079029, 47.386477408605515 ], [ 3.838586114457598, 47.424226433503065 ], [ 3.865920099732818, 47.431367546974684 ], [ 3.877214045891492, 47.417052360777802 ], [ 3.868908381416645, 47.374018912342933 ], [ 3.950690611282653, 47.393080192396951 ], [ 3.977035827041789, 47.32685460345715 ], [ 4.0007003787195, 47.312330677418799 ], [ 4.048029482074924, 47.339466908970621 ], [ 4.106125187127645, 47.339247182111762 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-21", "NAME_1": "Côte-d'Or" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.156354681423409, 47.245039415236818 ], [ 4.124977727340251, 47.249818468347598 ], [ 4.123351750382938, 47.323306019856886 ], [ 4.064926455491502, 47.415041863391252 ], [ 4.117155461055688, 47.455647332958051 ], [ 4.126208195951449, 47.517214718784203 ], [ 4.250705270531796, 47.665903688604317 ], [ 4.258637399796157, 47.733865117481173 ], [ 4.341144726947562, 47.774514533319007 ], [ 4.313063671251427, 47.841498177898586 ], [ 4.262702341739669, 47.843904184530459 ], [ 4.288410350057575, 47.924258191162551 ], [ 4.325917675860069, 47.946044080669765 ], [ 4.541777059663559, 47.965292128329054 ], [ 4.560365926746101, 47.974432753968415 ], [ 4.563156454706586, 47.997844619533566 ], [ 4.597170127499396, 48.014664688324672 ], [ 4.659220911515831, 48.008699111974408 ], [ 4.698508022627152, 48.022025528655206 ], [ 4.793320037689568, 47.996888809271127 ], [ 4.806965057191633, 47.98536415013541 ], [ 4.800768768763646, 47.966379774706809 ], [ 4.856469454201942, 47.948439100284247 ], [ 4.848888887012492, 47.900253063528055 ], [ 4.894613986546233, 47.910975719853582 ], [ 4.986349830080599, 47.813878548156424 ], [ 4.986349830080599, 47.795113898687475 ], [ 4.931571995651041, 47.773437873059379 ], [ 4.981691626967006, 47.68784338736242 ], [ 5.033678933436022, 47.703806522752814 ], [ 5.109374736954521, 47.648336549392241 ], [ 5.179357650235374, 47.676571414339264 ], [ 5.203593490846913, 47.646315064988244 ], [ 5.263490954344036, 47.618959107476826 ], [ 5.283793689127435, 47.588307250679065 ], [ 5.33050755817726, 47.608566040090636 ], [ 5.358610586109648, 47.593448851982885 ], [ 5.374892325220628, 47.60784094280524 ], [ 5.408752189661811, 47.596832641113451 ], [ 5.4512253361803, 47.619365601041636 ], [ 5.475614985143466, 47.604951537983084 ], [ 5.496225337529268, 47.545965940275892 ], [ 5.460673578522801, 47.500614375952637 ], [ 5.415409904943147, 47.486222286029658 ], [ 5.40734593956347, 47.456943720076595 ], [ 5.448588617470705, 47.43948644384426 ], [ 5.458036859813205, 47.39529943052429 ], [ 5.49686254497044, 47.364526724628604 ], [ 5.503212642649316, 47.307551624308019 ], [ 5.521713619887635, 47.289259387810489 ], [ 5.493918208658386, 47.202544296482074 ], [ 5.392887931133089, 47.087770121693723 ], [ 5.306777087992202, 47.055986673146435 ], [ 5.306623279640633, 47.006998634479373 ], [ 5.250626287373279, 46.981225383944263 ], [ 5.078700907920563, 46.961218603455734 ], [ 5.038337136549615, 46.981103858556196 ], [ 4.67717257205652, 46.904979587437992 ], [ 4.655090051964294, 46.940937840908589 ], [ 4.58218477550696, 46.965898779704901 ], [ 4.546435262777152, 47.020160255791154 ], [ 4.440878618253635, 47.034101906777551 ], [ 4.394054885324692, 47.072685892839672 ], [ 4.352262891619148, 47.065423929370809 ], [ 4.3238522460843, 47.10335972187363 ], [ 4.209748237990766, 47.155325056106449 ], [ 4.219174508097069, 47.219474228253034 ], [ 4.191466987611363, 47.244588975400859 ], [ 4.156354681423409, 47.245039415236818 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-60", "NAME_1": "Oise" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.118564114342405, 49.705768268390841 ], [ 3.107380032062792, 49.626194291433364 ], [ 3.132340969959785, 49.580161574297165 ], [ 3.12287075538103, 49.491776561539041 ], [ 3.169386869808193, 49.437295358593872 ], [ 3.154313627072213, 49.420629098154336 ], [ 3.100436672314572, 49.41894818970718 ], [ 3.070509913701528, 49.350789007106982 ], [ 2.964250143229492, 49.321334660566094 ], [ 3.019818993451793, 49.262920351792786 ], [ 2.965238912745633, 49.224369324984309 ], [ 2.977323874697049, 49.191267517082224 ], [ 3.067543604253899, 49.197134216570817 ], [ 3.128649564126079, 49.170547300817248 ], [ 3.109731106305503, 49.125876889306994 ], [ 3.056315576602572, 49.095400813996321 ], [ 2.978554343308303, 49.078141291487384 ], [ 2.794709121928406, 49.086666682821146 ], [ 2.755729627520282, 49.06780315649047 ], [ 2.626486459082798, 49.097828792864448 ], [ 2.583332160650684, 49.084546321555479 ], [ 2.535695439692802, 49.117823910045388 ], [ 2.509196415582096, 49.112561458744324 ], [ 2.318737423393372, 49.179578063476811 ], [ 2.237790154691879, 49.163098570642489 ], [ 2.071588977149588, 49.211932800957982 ], [ 1.987521590648896, 49.17746868832927 ], [ 1.885700297330857, 49.167800719127854 ], [ 1.737494725701026, 49.189454772519696 ], [ 1.692780368818944, 49.243122987435868 ], [ 1.714862888911171, 49.269654970800218 ], [ 1.783439552093625, 49.251208925051799 ], [ 1.721212986590047, 49.382056098210342 ], [ 1.716554783476454, 49.423804146544114 ], [ 1.769486914089782, 49.49876386665909 ], [ 1.712533786904714, 49.509893017448746 ], [ 1.680871188354672, 49.645079790000295 ], [ 1.734858006991431, 49.685344683610253 ], [ 1.680695406867528, 49.688959185717806 ], [ 1.685353610880441, 49.709624470492884 ], [ 1.754545507469174, 49.765621786516192 ], [ 1.836503518822326, 49.740309285644969 ], [ 1.856212991536324, 49.701406696761637 ], [ 1.972206648817803, 49.715293415358815 ], [ 2.066425402710138, 49.68445479185516 ], [ 2.306564571597676, 49.689222857948494 ], [ 2.357738890037751, 49.664448686757453 ], [ 2.437631470715814, 49.652814165541258 ], [ 2.47680871884728, 49.626589798880104 ], [ 2.521061649775334, 49.6297868204054 ], [ 2.576081183299948, 49.600101760887526 ], [ 2.621300911507831, 49.610143265299428 ], [ 2.644635873346886, 49.575008986875218 ], [ 2.698644665119161, 49.621602005927798 ], [ 2.792423965293779, 49.61616377313959 ], [ 2.80398158278382, 49.657417437164952 ], [ 2.842543595710367, 49.664822221967938 ], [ 2.884818988505515, 49.708679645449251 ], [ 2.935993306945534, 49.693024127661317 ], [ 2.996549949220764, 49.701164996767147 ], [ 3.026740380064496, 49.685894000307826 ], [ 3.052975732843777, 49.694737995362175 ], [ 3.05240444390995, 49.713843219888645 ], [ 3.118564114342405, 49.705768268390841 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-61", "NAME_1": "Orne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862705568806973, 48.501798496003744 ], [ -0.785691405933619, 48.559597570471453 ], [ -0.755907468654755, 48.602839759647168 ], [ -0.766674071251373, 48.659858805339582 ], [ -0.736813230246412, 48.686127116473244 ], [ -0.842457765513473, 48.72852335836626 ], [ -0.840886720046115, 48.75229777302377 ], [ -0.775660887639845, 48.787585860698869 ], [ -0.708611324552976, 48.799604904142996 ], [ -0.690945308479229, 48.842627366459794 ], [ -0.612898430718019, 48.831915696252338 ], [ -0.44127000560627, 48.873433031609068 ], [ -0.345161603425254, 48.82768595983913 ], [ -0.310345928721631, 48.856195482235705 ], [ -0.140365453702714, 48.825499680965493 ], [ 0.056520540790302, 48.902568775328689 ], [ 0.105058139621462, 48.947942311888141 ], [ 0.127624058803235, 48.952139089947025 ], [ 0.155199743173625, 48.925222584354742 ], [ 0.238849649092003, 48.942493092981806 ], [ 0.284376994902402, 48.970596121813571 ], [ 0.328542035086855, 48.944734304244719 ], [ 0.395163131473339, 48.962883719408126 ], [ 0.41717666547072, 48.946120917646226 ], [ 0.39696488901842, 48.905798756107686 ], [ 0.421354538880848, 48.883628345271916 ], [ 0.540512258433978, 48.867478442276251 ], [ 0.591884330597395, 48.878003344878437 ], [ 0.659977594690247, 48.803406173855819 ], [ 0.742067441259394, 48.775709639488241 ], [ 0.759931211955859, 48.749737958939647 ], [ 0.729960507971043, 48.706309002158719 ], [ 0.816422913186898, 48.665088297387001 ], [ 0.822773010865774, 48.620571694228261 ], [ 0.850370668371625, 48.58297647768228 ], [ 0.951071356058208, 48.515674229382171 ], [ 0.949071843890465, 48.469498690012529 ], [ 0.979811591431769, 48.433111969841491 ], [ 0.916464421196054, 48.368732084717919 ], [ 0.783815490492486, 48.331367582048244 ], [ 0.775114317671637, 48.312866603910606 ], [ 0.827409241743112, 48.208990867834245 ], [ 0.770631896045131, 48.180832907512638 ], [ 0.726247128102443, 48.194653709401166 ], [ 0.655341363812852, 48.25289223668733 ], [ 0.515177784427181, 48.265845118157642 ], [ 0.493183155078555, 48.304593898689461 ], [ 0.443195359877961, 48.304703762568579 ], [ 0.40083207723859, 48.32416055006928 ], [ 0.374025435525425, 48.369731841251451 ], [ 0.371520552931145, 48.448514803315504 ], [ 0.309931194868739, 48.471564119788297 ], [ 0.152584997599547, 48.445471590141722 ], [ 0.115473179243793, 48.412809235058148 ], [ 0.073725130910077, 48.401702056504689 ], [ 0.061310580019267, 48.379575591040691 ], [ -0.052727510466241, 48.380641265182192 ], [ -0.062241671316087, 48.439418123047915 ], [ -0.154405981550838, 48.48985635718509 ], [ -0.162854468259127, 48.539877110740065 ], [ -0.233496560318031, 48.561278478918666 ], [ -0.248866433639023, 48.526803380171827 ], [ -0.319124005268634, 48.512334385623376 ], [ -0.337932599210092, 48.493734531523387 ], [ -0.483138903937288, 48.50629190464764 ], [ -0.55429735433944, 48.468312166773046 ], [ -0.64099047253228, 48.454612214881763 ], [ -0.674399897137562, 48.473212069881072 ], [ -0.730463131668216, 48.461852206114372 ], [ -0.754369383340361, 48.441285799100342 ], [ -0.816892578529689, 48.454381501904777 ], [ -0.862705568806973, 48.501798496003744 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-70", "NAME_1": "Haute-Saône" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.615954346016224, 47.260442247811454 ], [ 5.508332271716938, 47.300751086793184 ], [ 5.494072017009955, 47.371162466774422 ], [ 5.458036859813205, 47.39529943052429 ], [ 5.448588617470705, 47.43948644384426 ], [ 5.40734593956347, 47.456943720076595 ], [ 5.421606194270453, 47.492088985518251 ], [ 5.458981683957518, 47.49963659255468 ], [ 5.492665767810934, 47.531024533655284 ], [ 5.475614985143466, 47.604951537983084 ], [ 5.4512253361803, 47.619365601041636 ], [ 5.408752189661811, 47.596832641113451 ], [ 5.374892325220628, 47.60784094280524 ], [ 5.420683342362338, 47.67106726304371 ], [ 5.501344966596946, 47.681899783248355 ], [ 5.576337645965566, 47.656883912962201 ], [ 5.692397219955751, 47.685668093707534 ], [ 5.704328373555597, 47.801134407426957 ], [ 5.89208472762806, 47.909064098429383 ], [ 5.891755137789346, 47.932629773245424 ], [ 5.95505836355261, 47.979651259897707 ], [ 5.970922621182012, 47.940902478466569 ], [ 6.09939674786159, 48.008699111974408 ], [ 6.166896749885098, 47.992109756160289 ], [ 6.186122825308132, 47.952833632066415 ], [ 6.243844995150369, 47.932212292663166 ], [ 6.37343972656214, 47.953020398772367 ], [ 6.518349400704267, 47.900802379326308 ], [ 6.576532996500589, 47.90803138354147 ], [ 6.624631142513181, 47.940331189532742 ], [ 6.684990031964389, 47.895572887278888 ], [ 6.836011674099495, 47.824165475756104 ], [ 6.784767867742914, 47.779974738343469 ], [ 6.759081831661206, 47.722790898181358 ], [ 6.789733687559647, 47.604160522190341 ], [ 6.810893356643078, 47.576365110961092 ], [ 6.779758101655034, 47.542768918750596 ], [ 6.703425090695362, 47.557710325371204 ], [ 6.63388163113234, 47.532903195825781 ], [ 6.595934852511448, 47.538363400850244 ], [ 6.553835241203387, 47.490419063189165 ], [ 6.500463657771604, 47.510161495156865 ], [ 6.475810336577752, 47.495340938533445 ], [ 6.440895784113138, 47.516555539106832 ], [ 6.337228787878246, 47.506546993948575 ], [ 6.307697536711942, 47.49229772535972 ], [ 6.260917750054091, 47.428511102305492 ], [ 6.206403587855277, 47.431202752504987 ], [ 6.17357643830195, 47.397276969556458 ], [ 6.123083271775556, 47.393926139679593 ], [ 6.074523699808879, 47.355473989732843 ], [ 5.997399673056464, 47.336467641168667 ], [ 5.927087170836273, 47.343015493470205 ], [ 5.731574468087217, 47.264364367521523 ], [ 5.615954346016224, 47.260442247811454 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-71", "NAME_1": "Saône-et-Loire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.80927459015021, 46.701754482283491 ], [ 4.047260438518435, 46.785624114161521 ], [ 4.05262176758049, 46.817275726593493 ], [ 4.039196474038022, 46.83573275935936 ], [ 4.093007511187693, 46.864868502179604 ], [ 4.08905243222398, 46.881897311711555 ], [ 4.043898622523386, 46.908352390450432 ], [ 4.045898133791809, 46.957615087466309 ], [ 4.000436706488813, 46.977390479586916 ], [ 4.001117859301758, 47.001340675731569 ], [ 4.062531435877077, 47.026235696020535 ], [ 4.047084657930611, 47.085254252981372 ], [ 4.062311709018161, 47.118630719232272 ], [ 4.209748237990766, 47.155325056106449 ], [ 4.3238522460843, 47.10335972187363 ], [ 4.352262891619148, 47.065423929370809 ], [ 4.394054885324692, 47.072685892839672 ], [ 4.440878618253635, 47.034101906777551 ], [ 4.546435262777152, 47.020160255791154 ], [ 4.58218477550696, 46.965898779704901 ], [ 4.655090051964294, 46.940937840908589 ], [ 4.67717257205652, 46.904979587437992 ], [ 4.906457248503216, 46.962416113712663 ], [ 5.049279519734057, 46.981499366002936 ], [ 5.078700907920563, 46.961218603455734 ], [ 5.164570051966336, 46.964228857375815 ], [ 5.230509995539876, 46.986948584909214 ], [ 5.330199940574801, 46.903133884521139 ], [ 5.458344477415665, 46.856266207119745 ], [ 5.437118889824887, 46.828097260680011 ], [ 5.350239004026776, 46.80970614642149 ], [ 5.386362051967126, 46.77140780572563 ], [ 5.370409903594179, 46.744689053856746 ], [ 5.394272208995233, 46.727275723895502 ], [ 5.424396722230938, 46.643768640210567 ], [ 5.406884514508704, 46.596582359088586 ], [ 5.368849845144211, 46.576224692815288 ], [ 5.361093496467674, 46.546561605533668 ], [ 5.424089104628479, 46.498913898457602 ], [ 5.420529534010768, 46.483730792741881 ], [ 5.310973866051086, 46.455353105561358 ], [ 5.240375718464634, 46.4687124814958 ], [ 5.155319563347177, 46.511218586368614 ], [ 5.041435281213239, 46.490904864567824 ], [ 4.940712621290402, 46.504396076617638 ], [ 4.872751193312922, 46.337590649988499 ], [ 4.815182831822199, 46.250556954939498 ], [ 4.797824432451591, 46.17175202063919 ], [ 4.720217007508893, 46.188648994055825 ], [ 4.704089076749483, 46.247458810275873 ], [ 4.67741427115169, 46.261312571417989 ], [ 4.673019740268785, 46.28818513073918 ], [ 4.638149133175943, 46.299193431531592 ], [ 4.614220909267544, 46.267256174632735 ], [ 4.591589072477689, 46.262444163167572 ], [ 4.554323446669741, 46.288668528929463 ], [ 4.498930377934585, 46.275034495545526 ], [ 4.414225784892039, 46.293458568158371 ], [ 4.383947463304764, 46.224772041996118 ], [ 4.300011912919445, 46.173982245783975 ], [ 4.07534149421457, 46.193559883281978 ], [ 3.991669616059937, 46.176355292262883 ], [ 3.903713070002141, 46.208907783467396 ], [ 3.886464534510651, 46.276199046548754 ], [ 4.000832214834816, 46.329219067905626 ], [ 3.978947447566668, 46.388171706359117 ], [ 3.98949432330437, 46.427239090611522 ], [ 3.976794127946619, 46.4668557915615 ], [ 3.740939626062868, 46.549330160358579 ], [ 3.74001677505413, 46.615445885419263 ], [ 3.657882982213835, 46.685934169126597 ], [ 3.62488005117342, 46.739261808085928 ], [ 3.738742361071104, 46.752049894187223 ], [ 3.80927459015021, 46.701754482283491 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-79", "NAME_1": "Deux-Sèvres" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.591683830144632, 46.139210515552804 ], [ -0.637101312075913, 46.154481512012126 ], [ -0.751392087774661, 46.245140695286807 ], [ -0.741383542616404, 46.272035227743515 ], [ -0.756588621467699, 46.301203929817461 ], [ -0.558153555542162, 46.362342848043966 ], [ -0.569337637821718, 46.38704011460959 ], [ -0.62992723935065, 46.408507400396161 ], [ -0.624115472251276, 46.461428545790739 ], [ -0.640133539131511, 46.514942951456021 ], [ -0.615952630009872, 46.547550375049752 ], [ -0.629443841160366, 46.61385286771565 ], [ -0.724728268294939, 46.767507658251816 ], [ -0.715587643554898, 46.807893402758282 ], [ -0.812421143021368, 46.86282504553941 ], [ -0.833613770459124, 46.919250828263102 ], [ -0.94600391175112, 47.00038486456981 ], [ -0.941356694755655, 47.013304786786478 ], [ -0.851125978181358, 46.989640235108766 ], [ -0.696460444993534, 46.988091162776925 ], [ -0.632410149708676, 46.992430763069251 ], [ -0.549155752136244, 47.025170021878978 ], [ -0.555132314604634, 47.060952493862487 ], [ -0.517657948055842, 47.07536655692104 ], [ -0.473196276387057, 47.066379740532568 ], [ -0.376329817666942, 47.088132670786081 ], [ -0.181322486243744, 47.100635112420491 ], [ -0.143013158530437, 47.062809183796787 ], [ -0.118228001221269, 47.057337991754878 ], [ -0.109043431109455, 47.069609721311565 ], [ -0.075546114861311, 46.996594581874433 ], [ -0.040225068831887, 46.978950538036884 ], [ -0.013198700259807, 46.889137302044844 ], [ 0.027846223024767, 46.850443453002924 ], [ 0.013882599802116, 46.827646820844109 ], [ -0.016241913433589, 46.828415864400597 ], [ -0.019131318255745, 46.811727630825487 ], [ -0.015670624499705, 46.771572600195327 ], [ 0.013926544274568, 46.736108731932404 ], [ -0.024800263121676, 46.666719080720952 ], [ -0.026656953055976, 46.633441491331723 ], [ 0.019639435411591, 46.596527427598687 ], [ -0.033962860997235, 46.510867024293702 ], [ -0.033655244294096, 46.484521807635304 ], [ -0.014637909611849, 46.466932696186973 ], [ -0.014604950358205, 46.411737381175158 ], [ 0.020287628970891, 46.37864656029052 ], [ 0.026747590528885, 46.335701001699817 ], [ 0.066496126694858, 46.306872875582712 ], [ 0.130480504371747, 46.344940504200906 ], [ 0.171064001702291, 46.330910962470909 ], [ 0.170009314578181, 46.284944163842056 ], [ 0.106750034186746, 46.195383613063257 ], [ 0.198903358303312, 46.151174627507032 ], [ 0.197365272089598, 46.095539859676762 ], [ 0.17789749847077, 46.0871023590866 ], [ 0.135929723278082, 46.104065250111205 ], [ 0.035778352289128, 46.080389712315366 ], [ -0.011034393622367, 46.051528627843879 ], [ -0.062801974131787, 45.982754210938083 ], [ -0.102957004761947, 45.96971343872417 ], [ -0.259611063100067, 46.065173647345944 ], [ -0.371254133971092, 46.077533266746855 ], [ -0.421879135713539, 46.104768375160347 ], [ -0.489983386823837, 46.102659000912126 ], [ -0.529819813733411, 46.13249786878157 ], [ -0.591683830144632, 46.139210515552804 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-86", "NAME_1": "Vienne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.796361877498612, 46.13289337622831 ], [ 0.707768123999699, 46.136694645941134 ], [ 0.646794000242892, 46.091035464914739 ], [ 0.599926322841497, 46.082773745811721 ], [ 0.553278372299019, 46.090661929704254 ], [ 0.487887744523789, 46.133662419784798 ], [ 0.44365678583199, 46.096385806959404 ], [ 0.470793017383812, 46.081092837364508 ], [ 0.457345750705827, 46.058515932064608 ], [ 0.286706096009539, 46.062207338797634 ], [ 0.197365272089598, 46.095539859676762 ], [ 0.198903358303312, 46.151174627507032 ], [ 0.108727574118234, 46.188835761661039 ], [ 0.111584018787426, 46.217048653472546 ], [ 0.176271521513513, 46.308949291476608 ], [ 0.150387731708463, 46.344512037500522 ], [ 0.112177280856827, 46.337799390729288 ], [ 0.08275589267032, 46.310838939765233 ], [ 0.045094758516257, 46.317870190257054 ], [ 0.019639435411591, 46.352224439905967 ], [ 0.020287628970891, 46.37864656029052 ], [ -0.014604950358205, 46.411737381175158 ], [ -0.014637909611849, 46.466932696186973 ], [ -0.033655244294096, 46.484521807635304 ], [ -0.033962860997235, 46.510867024293702 ], [ 0.019639435411591, 46.596527427598687 ], [ -0.026656953055976, 46.633441491331723 ], [ -0.024800263121676, 46.666719080720952 ], [ 0.013926544274568, 46.736108731932404 ], [ -0.015670624499705, 46.771572600195327 ], [ -0.019131318255745, 46.811727630825487 ], [ -0.016241913433589, 46.828415864400597 ], [ 0.013882599802116, 46.827646820844109 ], [ 0.027846223024767, 46.850443453002924 ], [ -0.013198700259807, 46.889137302044844 ], [ -0.045531465504723, 46.98701450341656 ], [ -0.081709444934972, 47.004768410233908 ], [ -0.109043431109455, 47.069609721311565 ], [ -0.100320286052352, 47.079870951683063 ], [ -0.053068086423082, 47.096251567655713 ], [ -0.004047088502318, 47.156555524717646 ], [ 0.066759798925546, 47.153688093031064 ], [ 0.100114292040928, 47.118575787742373 ], [ 0.135534214932079, 47.127046246686916 ], [ 0.147157750929466, 47.09883335487541 ], [ 0.191850135575294, 47.102294048631393 ], [ 0.20006790930654, 47.055503274956152 ], [ 0.257943888399723, 47.063435404220513 ], [ 0.306986858556684, 47.042583352739484 ], [ 0.303581097189863, 46.965920751941098 ], [ 0.326674359034428, 46.938531835176036 ], [ 0.433922899022548, 46.93274204031286 ], [ 0.572746145917904, 46.954989354874783 ], [ 0.583666556866092, 46.965041846304132 ], [ 0.572438529214764, 47.003900489815749 ], [ 0.671776911275401, 46.965975683430997 ], [ 0.713371151257604, 46.900079685229286 ], [ 0.831452210551049, 46.779416838716088 ], [ 0.902357974840641, 46.729813565743427 ], [ 0.916925847150139, 46.699480312666253 ], [ 0.906994205718036, 46.644186120792824 ], [ 0.92411090599353, 46.605733970846074 ], [ 1.014088936455266, 46.564392416976432 ], [ 1.026789131812961, 46.538299886430593 ], [ 1.136806226626049, 46.518403645212004 ], [ 1.149418531240201, 46.50047395690757 ], [ 1.14238728074838, 46.464504717318846 ], [ 1.194682204819912, 46.427920243424467 ], [ 1.177016188746109, 46.387018142373336 ], [ 1.057990305308351, 46.35970612933437 ], [ 0.987106513254957, 46.283526927625587 ], [ 0.901720768298787, 46.277484446649851 ], [ 0.794801819048701, 46.22627716895613 ], [ 0.827585023230199, 46.139869695230232 ], [ 0.796361877498612, 46.13289337622831 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-89", "NAME_1": "Yonne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.254860506407226, 47.490869503025124 ], [ 3.211552398724223, 47.515962277037431 ], [ 3.1451290569604, 47.525355587890033 ], [ 3.109467434074816, 47.577255003615505 ], [ 2.969259909317373, 47.567587035313409 ], [ 2.92500697838932, 47.619003052848598 ], [ 2.934323384616505, 47.6486441669947 ], [ 2.914635884138704, 47.677450319976288 ], [ 2.832721818157381, 47.722098759250287 ], [ 2.850871233320731, 47.759441290583084 ], [ 2.992353172061257, 47.792378303116152 ], [ 3.012106591046347, 47.847233041271807 ], [ 2.994572410188596, 47.907262340884301 ], [ 3.085011866604361, 47.948757704004834 ], [ 3.117926906901232, 48.00084388733552 ], [ 3.107995266368448, 48.03236366365212 ], [ 3.045109522086761, 48.076396868620577 ], [ 3.02265346588473, 48.131844868845576 ], [ 2.925644184931173, 48.155926901105602 ], [ 2.940563619315583, 48.199542625491745 ], [ 3.002328757965813, 48.229304589635092 ], [ 3.027904931067724, 48.262043848444819 ], [ 3.013183251305975, 48.31415200491108 ], [ 3.042340967261794, 48.361755766615317 ], [ 3.346354649947102, 48.371467681188506 ], [ 3.395375648767185, 48.411743560916591 ], [ 3.421281410808433, 48.369808744977547 ], [ 3.50974332819203, 48.347440580418436 ], [ 3.599875167904656, 48.267240382137913 ], [ 3.613234542939779, 48.217208641565549 ], [ 3.581571944389736, 48.18096474362801 ], [ 3.665793139241998, 48.14388588542522 ], [ 3.733183278285651, 48.157212301206698 ], [ 3.858713068653174, 48.015257950394073 ], [ 3.83168670008115, 47.9938126368437 ], [ 3.898439632582949, 47.986352919651495 ], [ 3.916281430143897, 47.933772352012397 ], [ 4.037614442452536, 47.922654187340868 ], [ 4.067892764039811, 47.938210828267074 ], [ 4.127482609934475, 47.933146130689352 ], [ 4.161737981822398, 47.954097059032051 ], [ 4.203024605101405, 47.939144666293316 ], [ 4.218229683952757, 47.972422255682545 ], [ 4.255495309760704, 47.934541394669623 ], [ 4.288410350057575, 47.924258191162551 ], [ 4.262702341739669, 47.843904184530459 ], [ 4.307966015319323, 47.845112680006139 ], [ 4.337629102600999, 47.791971808652022 ], [ 4.33029023450672, 47.76032019622005 ], [ 4.258637399796157, 47.733865117481173 ], [ 4.244530954340064, 47.655796266584389 ], [ 4.126208195951449, 47.517214718784203 ], [ 4.117155461055688, 47.455647332958051 ], [ 4.068178408506753, 47.424534051105525 ], [ 4.106125187127645, 47.339247182111762 ], [ 4.048029482074924, 47.339466908970621 ], [ 4.018212586441678, 47.313044788586126 ], [ 3.977035827041789, 47.32685460345715 ], [ 3.950690611282653, 47.393080192396951 ], [ 3.868908381416645, 47.374018912342933 ], [ 3.877214045891492, 47.417052360777802 ], [ 3.865920099732818, 47.431367546974684 ], [ 3.838586114457598, 47.424226433503065 ], [ 3.804484550921302, 47.385928092807205 ], [ 3.715890797422333, 47.411537224263441 ], [ 3.644699388665856, 47.456723993217679 ], [ 3.587328780898531, 47.465249384551441 ], [ 3.492011394510257, 47.55995153663406 ], [ 3.488210124797433, 47.493780880083534 ], [ 3.415436684455415, 47.508821163565813 ], [ 3.345871251756876, 47.48053136712889 ], [ 3.290873691367779, 47.501306514883709 ], [ 3.254860506407226, 47.490869503025124 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-91", "NAME_1": "Essonne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.001715926848533, 48.558454992603799 ], [ 2.036256944102661, 48.597478431484376 ], [ 2.028061142607612, 48.65257486963452 ], [ 2.045793077188762, 48.686797282268742 ], [ 2.090221789603902, 48.69771769321693 ], [ 2.123642201226573, 48.755989179756796 ], [ 2.208698357243406, 48.775555831136671 ], [ 2.267519159581525, 48.755198163964053 ], [ 2.290041133391583, 48.73118205021143 ], [ 2.320758907797369, 48.748705244051735 ], [ 2.388742308910423, 48.721558026381786 ], [ 2.508361454417582, 48.730445965908586 ], [ 2.541166631734654, 48.693883464250462 ], [ 2.571730597788871, 48.691960856708135 ], [ 2.575993292556404, 48.673306071118247 ], [ 2.52404993145916, 48.629712319867622 ], [ 2.496452273953253, 48.516509190546685 ], [ 2.502780399395931, 48.441121003731325 ], [ 2.526203251978473, 48.420708405068808 ], [ 2.390660743598403, 48.313601981346324 ], [ 2.315968868568405, 48.328005765153932 ], [ 2.255917596719712, 48.30560464134112 ], [ 2.197712028687135, 48.338706449243205 ], [ 2.133507924151388, 48.299067776056972 ], [ 1.972272566425772, 48.284236232416163 ], [ 1.998683700692197, 48.325522854795906 ], [ 1.923053814781724, 48.413061920271389 ], [ 1.920351177564783, 48.461357820906699 ], [ 1.94891563235052, 48.548863928027856 ], [ 2.001715926848533, 48.558454992603799 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-77", "NAME_1": "Seien-et-Marne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.390660743598403, 48.313601981346324 ], [ 2.526203251978473, 48.420708405068808 ], [ 2.502780399395931, 48.441121003731325 ], [ 2.496452273953253, 48.516509190546685 ], [ 2.52404993145916, 48.629712319867622 ], [ 2.575993292556404, 48.673306071118247 ], [ 2.571181281091242, 48.70521036966278 ], [ 2.598976692320491, 48.748287763469477 ], [ 2.571071417212124, 48.858041186051878 ], [ 2.592297004802901, 48.933583180319488 ], [ 2.570280402318701, 48.970552176441743 ], [ 2.574323371126638, 49.000665702660001 ], [ 2.553119756671435, 49.009784355163845 ], [ 2.583332160650684, 49.084546321555479 ], [ 2.626486459082798, 49.097828792864448 ], [ 2.755729627520282, 49.06780315649047 ], [ 2.794709121928406, 49.086666682821146 ], [ 2.98661830868798, 49.0788663896721 ], [ 3.07973842918517, 49.106200374947321 ], [ 3.140866361293547, 49.093148616615338 ], [ 3.174089019192877, 49.055663263948475 ], [ 3.175956694345984, 49.004346123274956 ], [ 3.319943516579997, 48.919905201563779 ], [ 3.363229651127483, 48.920476490497606 ], [ 3.383092933092371, 48.870763354545147 ], [ 3.435212075676759, 48.848384202968589 ], [ 3.477904948154844, 48.85009806977007 ], [ 3.463952311050321, 48.817172043355072 ], [ 3.409328285871709, 48.813140060665262 ], [ 3.425610024083312, 48.790486251639152 ], [ 3.395529457118755, 48.753868818491128 ], [ 3.451252115692569, 48.724359539561078 ], [ 3.459294107936728, 48.642401529107246 ], [ 3.508205242877636, 48.641709390176175 ], [ 3.537802411651967, 48.613419594638572 ], [ 3.493571452960168, 48.587733558556863 ], [ 3.461315592340725, 48.539800207013911 ], [ 3.405922523605568, 48.524715977260541 ], [ 3.42064420426658, 48.49849161149865 ], [ 3.391047034592987, 48.474453524610453 ], [ 3.395375648767185, 48.411743560916591 ], [ 3.346354649947102, 48.371467681188506 ], [ 3.042340967261794, 48.361755766615317 ], [ 3.013183251305975, 48.31415200491108 ], [ 3.027904931067724, 48.262043848444819 ], [ 3.002328757965813, 48.229304589635092 ], [ 2.940563619315583, 48.199542625491745 ], [ 2.925644184931173, 48.155926901105602 ], [ 2.825119278731734, 48.131482319753218 ], [ 2.795456191450057, 48.133240132825847 ], [ 2.803234512362849, 48.151433492461706 ], [ 2.788337051114013, 48.159958883795412 ], [ 2.68482386323069, 48.122594380226417 ], [ 2.46681115980715, 48.124319234045402 ], [ 2.450837038298687, 48.146621480996544 ], [ 2.507482547881295, 48.157212301206698 ], [ 2.500187626058107, 48.181195456604996 ], [ 2.513678837208545, 48.206617821355337 ], [ 2.436884401194163, 48.24981606515928 ], [ 2.414494263499478, 48.300979396581852 ], [ 2.390660743598403, 48.313601981346324 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "FR-94", "NAME_1": "Val-de-Marne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.473420416019394, 48.859200672972634 ], [ 2.592384894647182, 48.807471115799331 ], [ 2.598976692320491, 48.748287763469477 ], [ 2.571730597788871, 48.691960856708135 ], [ 2.541166631734654, 48.693883464250462 ], [ 2.494628543272654, 48.733763837431127 ], [ 2.388742308910423, 48.721558026381786 ], [ 2.320758907797369, 48.748705244051735 ], [ 2.331964963212499, 48.817117111865173 ], [ 2.443366334988355, 48.815831711764076 ], [ 2.473420416019394, 48.859200672972634 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/germany.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/germany.geojson new file mode 100644 index 000000000000..76099a191f69 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/germany.geojson @@ -0,0 +1,22 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "DE-SN", "NAME_1": "Sachsen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.39780806400006, 51.013114726000097 ], [ 14.386749308000049, 51.013269756000042 ], [ 14.375897257000076, 51.016990459000041 ], [ 14.369386027000104, 51.022442322000117 ], [ 14.364115031000097, 51.027997538000037 ], [ 14.356570272000056, 51.032338359 ], [ 14.319363240000115, 51.04001230900009 ], [ 14.287530558000071, 51.03683420800003 ], [ 14.263552694000055, 51.021434632000037 ], [ 14.249496704000137, 50.992650859000022 ], [ 14.238334595000111, 50.982470602000049 ], [ 14.250013469000095, 50.977613017000053 ], [ 14.283809855000072, 50.974822490000079 ], [ 14.303756958000093, 50.969706523000085 ], [ 14.302206665000057, 50.967691142000049 ], [ 14.293731730000076, 50.96397043900005 ], [ 14.292801554000107, 50.95348012400008 ], [ 14.318329712000065, 50.937512106000057 ], [ 14.355226685000076, 50.930639140000082 ], [ 14.381891724000127, 50.920872294000034 ], [ 14.375897257000076, 50.895964254000049 ], [ 14.34654504400001, 50.880202942000082 ], [ 14.268100220000093, 50.884130351000053 ], [ 14.232133423000022, 50.879376119000042 ], [ 14.221281372000078, 50.872606507000015 ], [ 14.202987915000108, 50.855139873000056 ], [ 14.190792277000099, 50.847905172000097 ], [ 14.034936157000061, 50.802584941000092 ], [ 14.015712524000037, 50.801758118000052 ], [ 13.979125610000096, 50.804755351000082 ], [ 13.959591919000076, 50.802068177000038 ], [ 13.948843221000061, 50.797210592000042 ], [ 13.933546997000093, 50.784808248000061 ], [ 13.923315064000121, 50.779950664000026 ], [ 13.910706014000084, 50.778762105000013 ], [ 13.900990844000148, 50.780622457000035 ], [ 13.892515910000043, 50.780415752000053 ], [ 13.883317505000065, 50.773232727 ], [ 13.879080037000108, 50.763517558000061 ], [ 13.880320272000034, 50.75504262300008 ], [ 13.882697388000082, 50.748014628000064 ], [ 13.882180624000057, 50.742743632000028 ], [ 13.87535933400008, 50.736542461000042 ], [ 13.869571574000105, 50.735250549000099 ], [ 13.863473755000143, 50.735147197000074 ], [ 13.834534953000087, 50.723675029000034 ], [ 13.816551554000114, 50.721349589000013 ], [ 13.770662882000039, 50.724605204000099 ], [ 13.74906213400007, 50.723209941000036 ], [ 13.71102828000005, 50.714269918000085 ], [ 13.691752970000096, 50.711841126000124 ], [ 13.601939331000096, 50.712151185000025 ], [ 13.556567423000075, 50.706725159000044 ], [ 13.515639689000068, 50.691015524000065 ], [ 13.527215210000094, 50.675667623 ], [ 13.523287801000038, 50.662180075000052 ], [ 13.509955281000117, 50.651224671000065 ], [ 13.493315471000074, 50.643214823000093 ], [ 13.49910323000006, 50.635204977000015 ], [ 13.498173055000109, 50.629158834000052 ], [ 13.492178589000076, 50.624456279000086 ], [ 13.482256713000083, 50.620890605000014 ], [ 13.464893432000054, 50.607092998000056 ], [ 13.447943563000052, 50.59727447600001 ], [ 13.429340048000114, 50.594328919000091 ], [ 13.407015828000056, 50.601305237000091 ], [ 13.400401245000126, 50.60657623400003 ], [ 13.386345256000112, 50.621614075000096 ], [ 13.380970906000073, 50.625489807000079 ], [ 13.368775268000149, 50.62833201100004 ], [ 13.365984741000091, 50.627091777000018 ], [ 13.365364624000108, 50.623474427000119 ], [ 13.359370158000104, 50.619340312000091 ], [ 13.321853068000109, 50.60239044300009 ], [ 13.316272013000088, 50.596034241000055 ], [ 13.305626668000087, 50.575777080000066 ], [ 13.284646037000101, 50.568955790000089 ], [ 13.268006226000068, 50.573658346000073 ], [ 13.251779825000142, 50.58089304700006 ], [ 13.232349487000079, 50.582029928000068 ], [ 13.199069865000126, 50.525340882000066 ], [ 13.184703817000127, 50.508752747000059 ], [ 13.160105835000138, 50.497022197000049 ], [ 13.107395874000133, 50.498985901000097 ], [ 13.079180542000074, 50.492784729 ], [ 13.078973836000102, 50.492681376000078 ], [ 13.078870483000088, 50.492681376000078 ], [ 13.069775431000096, 50.491079407000043 ], [ 13.06037032100005, 50.490614319000102 ], [ 13.051068563000115, 50.49113108400006 ], [ 13.042283570000052, 50.492784729 ], [ 13.03453210400005, 50.496505432000035 ], [ 13.026263875000097, 50.497642314000032 ], [ 13.017892293000102, 50.496350404000069 ], [ 13.00962406400015, 50.492681376000078 ], [ 13.003112833000102, 50.451908672000101 ], [ 12.996601603000045, 50.433666891000044 ], [ 12.982442261000074, 50.422969870000045 ], [ 12.960631103000111, 50.409234123000047 ], [ 12.952573283000078, 50.404159648000032 ], [ 12.918363485000071, 50.405399882000054 ], [ 12.825759318000109, 50.441418356000057 ], [ 12.817387736000029, 50.443020325000091 ], [ 12.80839603700008, 50.441831767000068 ], [ 12.794340047000077, 50.435888977000062 ], [ 12.788138875000072, 50.434338684000025 ], [ 12.770258830000046, 50.435940654000078 ], [ 12.754239136000081, 50.435320536000106 ], [ 12.737909383000044, 50.43154815700008 ], [ 12.725093628000138, 50.423434958000072 ], [ 12.702976115000041, 50.401524150000014 ], [ 12.691814006000101, 50.39465118400004 ], [ 12.678791544000063, 50.393721008000099 ], [ 12.625358114000051, 50.399922181000065 ], [ 12.550530640000119, 50.396356507000107 ], [ 12.510223022000076, 50.38876007100005 ], [ 12.482524454000043, 50.373567200000124 ], [ 12.475083048000045, 50.369433085000097 ], [ 12.471569051000074, 50.364472148000047 ], [ 12.469501994000098, 50.359407858000068 ], [ 12.466814819000092, 50.354912008000056 ], [ 12.467021525000121, 50.35284495100008 ], [ 12.46836511300009, 50.349485983000065 ], [ 12.468985229000083, 50.345558574 ], [ 12.466814819000092, 50.341889547 ], [ 12.462784058000096, 50.340494283000041 ], [ 12.453792359000147, 50.340700990000087 ], [ 12.450175008000144, 50.339357402000118 ], [ 12.438289429000122, 50.332536113000074 ], [ 12.408937215000066, 50.321994121 ], [ 12.398188517000051, 50.315172831000055 ], [ 12.367182658000104, 50.279051005000028 ], [ 12.355813842000117, 50.271402894000047 ], [ 12.344651733000092, 50.266390280000095 ], [ 12.336486857000068, 50.258587138000067 ], [ 12.333799683000052, 50.242722473000057 ], [ 12.314059286000088, 50.226496074000053 ], [ 12.308684936000105, 50.217090963000018 ], [ 12.305584351000078, 50.199314270000073 ], [ 12.308581583000091, 50.186911927 ], [ 12.314369344000056, 50.176214905000094 ], [ 12.314369344000056, 50.167326559000074 ], [ 12.300416707000068, 50.160815328000112 ], [ 12.28336348400012, 50.162210592000079 ], [ 12.273234904000077, 50.172339173000054 ], [ 12.26124597200004, 50.199882711000029 ], [ 12.260212443000057, 50.205050355000125 ], [ 12.258455445000067, 50.210889791000014 ], [ 12.254321330000039, 50.217401021000072 ], [ 12.249980510000057, 50.22117340100003 ], [ 12.232513875000109, 50.232490540000086 ], [ 12.229930054000107, 50.234815979000118 ], [ 12.228896525000039, 50.237038066000125 ], [ 12.229826701000093, 50.239053447000074 ], [ 12.232513875000109, 50.240965475000095 ], [ 12.233754110000064, 50.241688943999989 ], [ 12.235097697000128, 50.24225738500003 ], [ 12.23644128400008, 50.24256744500012 ], [ 12.237991577000116, 50.242722473000057 ], [ 12.242435750000112, 50.248355204000106 ], [ 12.24295251500007, 50.252954407000047 ], [ 12.239645223000139, 50.256571758000021 ], [ 12.232513875000109, 50.259103902000035 ], [ 12.20378177900011, 50.259568990000034 ], [ 12.189209025000139, 50.262462871000125 ], [ 12.178046916000113, 50.26876739500004 ], [ 12.174119507000057, 50.276570537000069 ], [ 12.174429565000139, 50.293727112000042 ], [ 12.168538452000121, 50.302977193000046 ], [ 12.149314819000011, 50.311710511000015 ], [ 12.101343546867156, 50.313980338321926 ], [ 12.100998162235385, 50.314371038892318 ], [ 12.093711785770267, 50.322613429765966 ], [ 12.065289747623751, 50.327910264846821 ], [ 12.051957228143522, 50.32690257449417 ], [ 12.047616408370516, 50.327005927281675 ], [ 12.043430617329136, 50.327755235215932 ], [ 12.039864943012674, 50.328840439934311 ], [ 11.998885531741905, 50.346436265721081 ], [ 11.989428744940597, 50.349175116838126 ], [ 11.986018101154457, 50.351552231850008 ], [ 11.98183231011302, 50.371189276763687 ], [ 11.982297398106425, 50.375426743749188 ], [ 11.983382602824861, 50.378630682859693 ], [ 11.984777865905755, 50.380749417251764 ], [ 11.98121219158935, 50.3853227810215 ], [ 11.96023156133748, 50.394159451097778 ], [ 11.949844597650042, 50.405218207454311 ], [ 11.947829216944797, 50.406742661744431 ], [ 11.945658806608606, 50.408551336874666 ], [ 11.943798454634987, 50.410515042535167 ], [ 11.94054283958036, 50.414545803046337 ], [ 11.931706170403402, 50.416922918957539 ], [ 11.905299512962131, 50.415165921570008 ], [ 11.897393018872719, 50.423408312443655 ], [ 11.897393018872719, 50.426276353870605 ], [ 11.8997184588398, 50.429325263350222 ], [ 11.906074660217371, 50.433226834450807 ], [ 11.910622185565387, 50.435371406365277 ], [ 11.914963006237713, 50.436947537498838 ], [ 11.931086052779108, 50.440332342863314 ], [ 11.934341667833678, 50.442089342049485 ], [ 11.935891961444838, 50.444931545954034 ], [ 11.936046991075784, 50.449866644929671 ], [ 11.937132195794163, 50.453199775249402 ], [ 11.945193718615201, 50.458315742277648 ], [ 11.947519158582281, 50.46224315000137 ], [ 11.947054070588877, 50.471028144133527 ], [ 11.945193718615201, 50.475162258331522 ], [ 11.942403191554035, 50.478340359020308 ], [ 11.930155876792242, 50.48420563398281 ], [ 11.927520379362022, 50.486065985956486 ], [ 11.925815057019236, 50.488391425024247 ], [ 11.925815057019236, 50.492318834546552 ], [ 11.927675408992911, 50.497357286309693 ], [ 11.934031610370482, 50.506271470751756 ], [ 11.944728630621796, 50.515857448762233 ], [ 11.968293084158518, 50.527355454690451 ], [ 11.98183231011302, 50.537329007227868 ], [ 11.983692661187376, 50.539990343079864 ], [ 11.986173129886026, 50.54260000298774 ], [ 11.987103305872836, 50.544046942912075 ], [ 11.989428744940597, 50.546114000460705 ], [ 11.993924595243868, 50.547405910754151 ], [ 12.00105594207804, 50.548206896431111 ], [ 12.010357700147722, 50.546656602819951 ], [ 12.015318638444398, 50.545338854104784 ], [ 12.017799107143048, 50.543995266068634 ], [ 12.024517042827256, 50.537122300753538 ], [ 12.025860629964086, 50.535882066404213 ], [ 12.028082717143661, 50.534486803323261 ], [ 12.031183301668023, 50.532962348133822 ], [ 12.034904005615374, 50.531902980937787 ], [ 12.039089796656754, 50.531386217000261 ], [ 12.04405073405411, 50.531257025791092 ], [ 12.048546584357382, 50.531567084153608 ], [ 12.058778516615234, 50.537535711903558 ], [ 12.081154411746695, 50.561255195071169 ], [ 12.096967400824894, 50.563296414198135 ], [ 12.104718866182736, 50.561616930277069 ], [ 12.107354363612956, 50.560014959822524 ], [ 12.110299920305067, 50.558568019898189 ], [ 12.114175652983988, 50.557327786448184 ], [ 12.118361444025425, 50.556966051242227 ], [ 12.12363243978524, 50.557534492023137 ], [ 12.135414665654309, 50.560996813552094 ], [ 12.145388218191727, 50.562547106263935 ], [ 12.149418979602217, 50.564614162913244 ], [ 12.153294712281138, 50.568231513173771 ], [ 12.157790561685033, 50.577429918455948 ], [ 12.16027103038374, 50.583682766146694 ], [ 12.15872073677258, 50.603733222210394 ], [ 12.17685916491854, 50.617995916778113 ], [ 12.18259524867176, 50.62355113427742 ], [ 12.186936069344085, 50.62636749886093 ], [ 12.191638625222367, 50.627504381322126 ], [ 12.209001906113087, 50.627866116528025 ], [ 12.228070509346537, 50.62543732377344 ], [ 12.252926873176648, 50.626315822916865 ], [ 12.258973016191703, 50.628176174890541 ], [ 12.289978874925112, 50.643420722288454 ], [ 12.297575310652064, 50.648407498107531 ], [ 12.301502720174369, 50.651559760374596 ], [ 12.321811557757144, 50.674013169871841 ], [ 12.312354770955892, 50.676700344145559 ], [ 12.298970574632278, 50.675770169058012 ], [ 12.289668816562596, 50.676183580208033 ], [ 12.285483026420536, 50.677010403407394 ], [ 12.281917352104131, 50.678250636857399 ], [ 12.27881676578113, 50.679697578580374 ], [ 12.275716180357449, 50.682746487160614 ], [ 12.271995477309417, 50.686880602257986 ], [ 12.267189568643687, 50.695458889016493 ], [ 12.2654842463009, 50.700988268094079 ], [ 12.267344598274576, 50.707861233409176 ], [ 12.269670037342337, 50.711426906826262 ], [ 12.270600213329146, 50.714889228355162 ], [ 12.268894890986417, 50.718248196197294 ], [ 12.262848747971304, 50.722175604820279 ], [ 12.258042840204894, 50.723131619228809 ], [ 12.254012078794403, 50.723054103963705 ], [ 12.248586053403642, 50.721968899245269 ], [ 12.244968703143115, 50.721813870513699 ], [ 12.24124800009514, 50.722175604820279 ], [ 12.240162795376705, 50.725741279136685 ], [ 12.241558057558279, 50.731115628583382 ], [ 12.249206170128616, 50.742587796089879 ], [ 12.255097284412159, 50.746411851925416 ], [ 12.259748161648304, 50.74819468953325 ], [ 12.265794304663416, 50.747910467793815 ], [ 12.269049919717986, 50.748427231731341 ], [ 12.271375359685067, 50.749202378986581 ], [ 12.272925653296227, 50.74992584939838 ], [ 12.279436883405424, 50.755455227576647 ], [ 12.287188347863946, 50.760881252967408 ], [ 12.289048699837622, 50.763310044822674 ], [ 12.288583611844217, 50.765893867208206 ], [ 12.285483026420536, 50.769304510994345 ], [ 12.269049919717986, 50.773593654823287 ], [ 12.256802605855569, 50.78232697211206 ], [ 12.258042840204894, 50.792507229325167 ], [ 12.330803256565048, 50.806356512742866 ], [ 12.339174838647864, 50.809560451853372 ], [ 12.364186232108921, 50.823254706539444 ], [ 12.370542432587172, 50.825993556757226 ], [ 12.377363721958204, 50.82723379200587 ], [ 12.406509229617257, 50.828784084717711 ], [ 12.413640578250067, 50.82738882073744 ], [ 12.417361281298099, 50.826045234499929 ], [ 12.417671339660558, 50.823719794532849 ], [ 12.42066857319611, 50.823668117689465 ], [ 12.424389276244085, 50.82433991125788 ], [ 12.44206261639664, 50.841238105054458 ], [ 12.4628365410735, 50.856637682083317 ], [ 12.500715366021325, 50.869685980723432 ], [ 12.50350589398181, 50.871313787801057 ], [ 12.505676304318001, 50.872915758255601 ], [ 12.507846713754816, 50.881519884335148 ], [ 12.522729525946829, 50.877256578028607 ], [ 12.527535434612616, 50.876584785359512 ], [ 12.549291213019046, 50.878290106802979 ], [ 12.58158898294522, 50.875447902898372 ], [ 12.585929802718226, 50.875912990891777 ], [ 12.593681268076068, 50.877799181287173 ], [ 12.597556999855669, 50.877566637290442 ], [ 12.601742790897049, 50.876378078885182 ], [ 12.606083611569431, 50.871701362327997 ], [ 12.608409050637135, 50.870151068716837 ], [ 12.610889520235162, 50.870125231194436 ], [ 12.618796014324573, 50.875344550110867 ], [ 12.627942742763366, 50.884594632236485 ], [ 12.630268181831127, 50.886506660154225 ], [ 12.636159295215293, 50.889400540002896 ], [ 12.646907993209311, 50.892397773538391 ], [ 12.647373081202716, 50.896738593311397 ], [ 12.647218051571826, 50.899942532421903 ], [ 12.626082390789691, 50.928674628031615 ], [ 12.602207878890511, 50.952471625565067 ], [ 12.573785841643257, 50.963142809193243 ], [ 12.559833205438053, 50.966450100191935 ], [ 12.545725538702641, 50.971256008857722 ], [ 12.532393019222468, 50.979679266884659 ], [ 12.521954379590909, 50.995027167070077 ], [ 12.494514194274643, 51.02458608677847 ], [ 12.491413607951642, 51.028461819457391 ], [ 12.48366214439244, 51.058330797528242 ], [ 12.328942904591372, 51.087838040393251 ], [ 12.264554071213411, 51.08375560213932 ], [ 12.222644483955776, 51.088974921055751 ], [ 12.21830366418277, 51.091300361022832 ], [ 12.214893018597934, 51.094917711283301 ], [ 12.212102492436088, 51.103134263735285 ], [ 12.212567580429493, 51.107320054776665 ], [ 12.211172316449222, 51.111557521762165 ], [ 12.206986525407785, 51.115097358556227 ], [ 12.188951450049387, 51.124941718085779 ], [ 12.179494663248079, 51.136827298540993 ], [ 12.18414554228292, 51.164060777382929 ], [ 12.16259647035082, 51.167497260490165 ], [ 12.153294712281138, 51.170003566711216 ], [ 12.152829624287733, 51.177625840859832 ], [ 12.158875767302789, 51.182509263891404 ], [ 12.163216587075794, 51.186695054932841 ], [ 12.164921909418581, 51.18914968520977 ], [ 12.166317173398795, 51.191811021961087 ], [ 12.167402378117231, 51.194394843447242 ], [ 12.168022494842262, 51.197443752926858 ], [ 12.164611851056065, 51.226511746220069 ], [ 12.160891148008034, 51.236614488168073 ], [ 12.141667515143695, 51.252944241183741 ], [ 12.140272251163424, 51.273563137129031 ], [ 12.136861607377284, 51.281056220068479 ], [ 12.135001255403608, 51.283278307248054 ], [ 12.133761021054283, 51.285293687953299 ], [ 12.133140903429933, 51.286843981564459 ], [ 12.132624138593087, 51.289014391001331 ], [ 12.132314080230628, 51.291753242118375 ], [ 12.133554314579953, 51.296662503571667 ], [ 12.136861607377284, 51.302760322530844 ], [ 12.146008334916701, 51.313612372413047 ], [ 12.152364536294328, 51.317798163454427 ], [ 12.158100620047549, 51.319916896947234 ], [ 12.172673373877103, 51.320433660884703 ], [ 12.176239048193509, 51.321260484084064 ], [ 12.179494663248079, 51.322707424907719 ], [ 12.18166507268495, 51.324774482456348 ], [ 12.18321536629611, 51.327409979886625 ], [ 12.184610630276325, 51.331079006990535 ], [ 12.186005894256596, 51.336505032381297 ], [ 12.186315951719791, 51.343507188905619 ], [ 12.184765659007951, 51.351310330207525 ], [ 12.178254428898754, 51.362033188880559 ], [ 12.174068637857317, 51.367252508696311 ], [ 12.171278109896832, 51.37242015256794 ], [ 12.170037876446827, 51.375365709260052 ], [ 12.170968052433636, 51.391540431745511 ], [ 12.167557406848857, 51.414303901403912 ], [ 12.16259647035082, 51.421486925081524 ], [ 12.16027103038374, 51.423476467365049 ], [ 12.15872073677258, 51.425698554544624 ], [ 12.158100620047549, 51.42854075844923 ], [ 12.158100620047549, 51.440297145896523 ], [ 12.156860385698224, 51.443165188222849 ], [ 12.156240268973193, 51.446110744914904 ], [ 12.157015415329113, 51.449004624763575 ], [ 12.16182132309558, 51.452260239818202 ], [ 12.173138461870508, 51.457221178114878 ], [ 12.175618930569158, 51.459029853245113 ], [ 12.181510043953324, 51.465696112985199 ], [ 12.183990512652031, 51.467504788115434 ], [ 12.187246127706601, 51.469003403983891 ], [ 12.190708449235558, 51.47014028644503 ], [ 12.195359328270342, 51.482000027579204 ], [ 12.195359328270342, 51.52874136012565 ], [ 12.222179395962314, 51.542513129177564 ], [ 12.22481489429191, 51.544450995517025 ], [ 12.226365187003751, 51.546518053065654 ], [ 12.227915479715591, 51.549205227339371 ], [ 12.229775831689267, 51.554372870311681 ], [ 12.230861037307022, 51.558558661353118 ], [ 12.232411330018863, 51.560729071689309 ], [ 12.235356885811598, 51.562150174091244 ], [ 12.242488234444465, 51.560677394845868 ], [ 12.252151726820728, 51.557163398272166 ], [ 12.267344598274576, 51.553339342436686 ], [ 12.297730340282953, 51.551220608044616 ], [ 12.30594689273488, 51.552254136818931 ], [ 12.356383090806958, 51.567757065735975 ], [ 12.430590447990767, 51.57245962251352 ], [ 12.434776239032203, 51.573958238381977 ], [ 12.437876825355204, 51.578479926207592 ], [ 12.439427118067044, 51.582174790833903 ], [ 12.443457878578215, 51.601450100541683 ], [ 12.452449579184702, 51.603775540508764 ], [ 12.459270867656414, 51.604343981289674 ], [ 12.532393019222468, 51.601760158904199 ], [ 12.54510542197761, 51.595972398307538 ], [ 12.641430290975109, 51.606462713883104 ], [ 12.645977817222445, 51.605480861952174 ], [ 12.648613314652721, 51.603465481246928 ], [ 12.650473666626397, 51.601165879701568 ], [ 12.654969516929668, 51.600468247711433 ], [ 12.66210086376384, 51.601450100541683 ], [ 12.675433384143332, 51.607392889869971 ], [ 12.682874790239339, 51.612663886529106 ], [ 12.690471225966292, 51.622327378905368 ], [ 12.700599806335958, 51.632921048167816 ], [ 12.715327589796402, 51.638192043927631 ], [ 12.752224561913977, 51.634988104817182 ], [ 12.781576776047359, 51.627004096361929 ], [ 12.800800408911755, 51.632662664850102 ], [ 12.853096958058131, 51.659792791803852 ], [ 12.862036980921914, 51.668319404416934 ], [ 12.891027458950077, 51.670076401804465 ], [ 12.901982863418425, 51.655400296086782 ], [ 12.914695265274247, 51.649896756330236 ], [ 12.92978478394059, 51.646356920435494 ], [ 12.941877069071438, 51.645090846765129 ], [ 12.964149611415394, 51.637985338352678 ], [ 12.977843866101523, 51.627701728352065 ], [ 12.990607943901466, 51.6291486682764 ], [ 12.996964146178414, 51.633231106530332 ], [ 13.001615024313935, 51.635091458504007 ], [ 13.008746372047426, 51.636693427159912 ], [ 13.015257603055943, 51.635091458504007 ], [ 13.022854037883519, 51.631680812919171 ], [ 13.043834669934029, 51.617934882288978 ], [ 13.061663038818153, 51.615092678384372 ], [ 13.073135207224027, 51.61235382816659 ], [ 13.101092157377138, 51.590908108122676 ], [ 13.114889763951453, 51.58501699473851 ], [ 13.122641229309295, 51.583104966820713 ], [ 13.127292108344136, 51.584138494695765 ], [ 13.130237664136871, 51.585688788306925 ], [ 13.133648308822387, 51.586670641137175 ], [ 13.137369011870362, 51.586618964293734 ], [ 13.140934686186824, 51.585378729944409 ], [ 13.153853793617657, 51.578247382210918 ], [ 13.166101108379451, 51.573312283235282 ], [ 13.169201693803132, 51.570599270539901 ], [ 13.171527133770212, 51.566206773024135 ], [ 13.16951175306491, 51.558868719715633 ], [ 13.167651401091291, 51.554682929573517 ], [ 13.1654809907551, 51.551272284888 ], [ 13.16532596202353, 51.545303657138049 ], [ 13.175092808086617, 51.536544501427556 ], [ 13.196021763293743, 51.528638007338145 ], [ 13.199639112654893, 51.524348863509204 ], [ 13.203049758239729, 51.518044338975017 ], [ 13.208475782731171, 51.503833320351418 ], [ 13.210336134704846, 51.496495266143597 ], [ 13.210491164335735, 51.490862535177826 ], [ 13.207390578012735, 51.486495876983099 ], [ 13.203773227752265, 51.484170437016019 ], [ 13.196021763293743, 51.481379909954853 ], [ 13.192921176970742, 51.479958808452238 ], [ 13.190750766634551, 51.478098456478563 ], [ 13.189045444291821, 51.476186428560823 ], [ 13.191991000983876, 51.469881904026636 ], [ 13.198088819943052, 51.46667796491613 ], [ 13.199949171916728, 51.458048001314182 ], [ 13.197468703218078, 51.447092596845835 ], [ 13.198192172730558, 51.432804063856452 ], [ 13.193231235333258, 51.422597968221623 ], [ 13.190905796265497, 51.419704088372953 ], [ 13.188580357197736, 51.417843736399277 ], [ 13.177263218422752, 51.411229153502632 ], [ 13.175092808086617, 51.40921377189801 ], [ 13.173852572837973, 51.406836655986865 ], [ 13.173852572837973, 51.403736070563184 ], [ 13.174627720093213, 51.400454617086893 ], [ 13.176022983174107, 51.396501370042188 ], [ 13.177728306416213, 51.393478298984292 ], [ 13.181293979833299, 51.38802643517181 ], [ 13.184084506894465, 51.38652781840409 ], [ 13.18765018121087, 51.385235908110644 ], [ 13.193696323326662, 51.390971991863921 ], [ 13.198812290354908, 51.393969225399417 ], [ 13.20346316938975, 51.397664090025728 ], [ 13.214521925746283, 51.396604722829693 ], [ 13.219379510356077, 51.402935085785543 ], [ 13.232453648317176, 51.401410631495423 ], [ 13.239171584001383, 51.398671780378322 ], [ 13.252194045119097, 51.385235908110644 ], [ 13.270849237202526, 51.38859487595272 ], [ 13.363143344789535, 51.408335272754584 ], [ 13.377922804194043, 51.413244534207877 ], [ 13.387379591894614, 51.419704088372953 ], [ 13.397766553783413, 51.421719469078198 ], [ 13.410789014901127, 51.421409409816363 ], [ 13.457659538656742, 51.406991686517074 ], [ 13.472077263754727, 51.399214382737568 ], [ 13.479518669850734, 51.393349106875746 ], [ 13.491197543831561, 51.38937002230864 ], [ 13.505150180936084, 51.382497056993543 ], [ 13.521738314571564, 51.366942451233115 ], [ 13.533882277445116, 51.363738512122609 ], [ 13.545509473683239, 51.365624702518005 ], [ 13.555121291014757, 51.36627065676538 ], [ 13.568298780864041, 51.364823716841045 ], [ 13.614394159163112, 51.355315253196352 ], [ 13.731079542586826, 51.350173447746386 ], [ 13.766477898835944, 51.34797719988785 ], [ 13.873396437095892, 51.356297106026602 ], [ 13.938405388997467, 51.361361396211464 ], [ 13.94584679509353, 51.359862779443688 ], [ 13.956078729150022, 51.358725897881868 ], [ 13.960574578553917, 51.357046413960802 ], [ 13.966620720669709, 51.358105781156837 ], [ 13.970341423717741, 51.359190985875273 ], [ 13.987911411082735, 51.377872016380422 ], [ 14.043928664176519, 51.428075670455826 ], [ 14.059276564361937, 51.450735786427401 ], [ 14.060671828342208, 51.458719793983278 ], [ 14.061136916335613, 51.466367906553614 ], [ 14.067028028820459, 51.473860989493062 ], [ 14.106147088117609, 51.505900377000785 ], [ 14.118549431610973, 51.512980047890892 ], [ 14.158753695626558, 51.526881009051294 ], [ 14.220972121366287, 51.536286119009162 ], [ 14.268927849840395, 51.532358710386177 ], [ 14.304739618138854, 51.524090481090809 ], [ 14.338587680776811, 51.509931139310595 ], [ 14.377241652080556, 51.515512193432983 ], [ 14.509274936589065, 51.556853339010388 ], [ 14.552579786927595, 51.564501451580725 ], [ 14.57350874213472, 51.565069892361635 ], [ 14.595367873328655, 51.562486069976103 ], [ 14.620379265890392, 51.553261827171582 ], [ 14.663374057866463, 51.542073880505143 ], [ 14.706575555417544, 51.540833645256498 ], [ 14.706769960000116, 51.540828064000081 ], [ 14.710037068000076, 51.5302407840001 ], [ 14.732154582000078, 51.515823059000084 ], [ 14.797473592000131, 51.502102966000038 ], [ 14.818557576000075, 51.492697856000078 ], [ 14.818557576000075, 51.492594504000053 ], [ 14.841398559000083, 51.48442962700004 ], [ 14.888320760000113, 51.47574798699999 ], [ 14.910955038000083, 51.468978373000041 ], [ 14.926561320000104, 51.461330261000072 ], [ 14.945061483000131, 51.449186300000079 ], [ 14.95539676900006, 51.435414530000045 ], [ 14.946921835000126, 51.42290883400004 ], [ 14.950647846000038, 51.396539377000025 ], [ 14.956637004000072, 51.354153341000043 ], [ 14.956637004000072, 51.353223165000102 ], [ 14.960977824000054, 51.335291443000031 ], [ 14.963768352000017, 51.328392639000057 ], [ 14.982268514000054, 51.308006287000111 ], [ 15.004902792000081, 51.291288961000063 ], [ 15.019475545000148, 51.271677755000056 ], [ 15.014307901000052, 51.242661439000059 ], [ 15.017925252000026, 51.23956085200011 ], [ 15.022059367000054, 51.236770325000052 ], [ 15.004902792000081, 51.215608826 ], [ 14.991363566000103, 51.18896962500007 ], [ 14.983198690000108, 51.160909323000041 ], [ 14.982061808000083, 51.135639547000082 ], [ 14.979994751000021, 51.122797954000092 ], [ 14.973380168000119, 51.116131694000089 ], [ 14.965628703000021, 51.111506653000035 ], [ 14.960254354000057, 51.104582011000034 ], [ 14.958497355000077, 51.094737651000074 ], [ 14.958290649000048, 51.07551401800005 ], [ 14.955293417000121, 51.064041850000123 ], [ 14.910644979000097, 50.992650859000022 ], [ 14.860208781000068, 50.916841533000124 ], [ 14.824655395000036, 50.891830139000049 ], [ 14.810496053000065, 50.877050680000124 ], [ 14.810392700000136, 50.858447164000054 ], [ 14.794579712000143, 50.831627096000076 ], [ 14.785071248000065, 50.820051575000022 ], [ 14.775356079000119, 50.812971904 ], [ 14.759233032000054, 50.810181376000045 ], [ 14.737528931000043, 50.810698141000088 ], [ 14.700425252000059, 50.815969137000124 ], [ 14.662184692000068, 50.834365946000034 ], [ 14.647921997000111, 50.839378561000089 ], [ 14.61319543500008, 50.845579732000076 ], [ 14.608337850000055, 50.85307281500009 ], [ 14.611851847000111, 50.870952861000049 ], [ 14.628801717000101, 50.89611928300009 ], [ 14.634589478000066, 50.909400127000097 ], [ 14.629215128000112, 50.920717266000068 ], [ 14.617122843000118, 50.920872294000034 ], [ 14.561829061000111, 50.906351217000079 ], [ 14.550356893000099, 50.912087301000028 ], [ 14.555834594000089, 50.924282939000065 ], [ 14.567823527000144, 50.938648987000064 ], [ 14.575574992000043, 50.950689596000032 ], [ 14.577435343000047, 50.965727437000012 ], [ 14.574334758000106, 50.97549428300006 ], [ 14.566686645000118, 50.983400778000018 ], [ 14.554594360000038, 50.992650859000022 ], [ 14.542295369000101, 50.998748678000069 ], [ 14.515320272000082, 51.003037822000053 ], [ 14.502917928000102, 51.008515524000032 ], [ 14.493512818000056, 51.016706238000054 ], [ 14.49010217300011, 51.022700704 ], [ 14.48793176300012, 51.028721009000023 ], [ 14.482144002000069, 51.037195943000128 ], [ 14.473462362000106, 51.023372498000086 ], [ 14.462093547000109, 51.019651794000069 ], [ 14.425816691000136, 51.020943706000097 ], [ 14.39780806400006, 51.013114726000097 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DE-BY", "NAME_1": "Bayern" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.101343546867156, 50.313980338321926 ], [ 12.076140991000045, 50.315172831000055 ], [ 12.099188680000083, 50.299773255000062 ], [ 12.107250203000092, 50.290884908000052 ], [ 12.110970906000091, 50.276622213000067 ], [ 12.109110555000086, 50.26380645799999 ], [ 12.102392619000057, 50.259155579000023 ], [ 12.092057333000071, 50.254814758000052 ], [ 12.079551635000144, 50.242722473000057 ], [ 12.089886922000062, 50.230836894000035 ], [ 12.139289592000097, 50.211044820000055 ], [ 12.163784220000139, 50.193784892000068 ], [ 12.175049682000093, 50.182622783000042 ], [ 12.182697795000081, 50.170737203 ], [ 12.185591675000069, 50.155699361000117 ], [ 12.178563680000053, 50.132961731000037 ], [ 12.179183797000121, 50.117975566000084 ], [ 12.187865438000074, 50.102834372000061 ], [ 12.202024780000045, 50.094514465000103 ], [ 12.218044474000095, 50.088571676000086 ], [ 12.232513875000109, 50.080510152 ], [ 12.241402221000044, 50.070639954000015 ], [ 12.243469279000095, 50.060408020000025 ], [ 12.243675984000049, 50.051312969000051 ], [ 12.246879923000108, 50.04495676700013 ], [ 12.398188517000051, 49.992763570000065 ], [ 12.399222046000119, 49.992763570000065 ], [ 12.414518270000059, 49.983048401000119 ], [ 12.451311889000067, 49.980567932000028 ], [ 12.468158406000043, 49.970232646000042 ], [ 12.470742228000063, 49.955608216000044 ], [ 12.463817586000062, 49.942120666000093 ], [ 12.462680705000139, 49.931268616000054 ], [ 12.503608439000089, 49.915765687000047 ], [ 12.517871135000064, 49.912200012000071 ], [ 12.524072306000051, 49.904965312000101 ], [ 12.520971720000091, 49.88553497300002 ], [ 12.51291019700011, 49.870238749000052 ], [ 12.489862508000044, 49.842695211000077 ], [ 12.482524454000043, 49.827243958000068 ], [ 12.46247399900011, 49.831223043000065 ], [ 12.456376180000035, 49.817115377000036 ], [ 12.455859415000106, 49.796134746000021 ], [ 12.452655477000121, 49.779701640000056 ], [ 12.436739135000096, 49.769263001000027 ], [ 12.395397990000077, 49.75789418600003 ], [ 12.38361576300008, 49.74285634400006 ], [ 12.388576700000016, 49.732314351000085 ], [ 12.398911987000133, 49.719498597 ], [ 12.419582560000038, 49.700223287000071 ], [ 12.433948608000065, 49.691800029000078 ], [ 12.44924483200009, 49.685030416000032 ], [ 12.482524454000043, 49.674695130000046 ], [ 12.49637373900012, 49.669992575000052 ], [ 12.504641968000072, 49.65939890500006 ], [ 12.505365437000137, 49.64611806300006 ], [ 12.496890503000145, 49.633870748000035 ], [ 12.499474324000062, 49.632527161000084 ], [ 12.507432495000103, 49.62999501600008 ], [ 12.502678263000121, 49.622140198000054 ], [ 12.501954793000039, 49.619711406000093 ], [ 12.512186727000113, 49.611649882 ], [ 12.536061239000105, 49.603123271000086 ], [ 12.546603230000073, 49.595578512000131 ], [ 12.553631225000061, 49.584726461000074 ], [ 12.558282104000028, 49.562557272000063 ], [ 12.562312867000117, 49.550826722000082 ], [ 12.568720744000075, 49.538837789000112 ], [ 12.575025268000076, 49.52989776599999 ], [ 12.58288008700012, 49.522404683000062 ], [ 12.593732137000075, 49.515014954000051 ], [ 12.604997599000114, 49.512792867000044 ], [ 12.61553959200009, 49.513774720000114 ], [ 12.622980998000116, 49.50984731000004 ], [ 12.624324585000068, 49.493000794000054 ], [ 12.627218465000055, 49.460186259000054 ], [ 12.632179402000105, 49.443959859000032 ], [ 12.643548218000092, 49.429490458000018 ], [ 12.663081909000113, 49.418896790000034 ], [ 12.709177286000028, 49.404737447000073 ], [ 12.729331095000106, 49.391146546000087 ], [ 12.762093953000118, 49.343242493000062 ], [ 12.777906941000111, 49.332545472000064 ], [ 12.797750692000108, 49.327842917000098 ], [ 12.856661825000089, 49.32221018500006 ], [ 12.875368693000098, 49.323863831000025 ], [ 12.870924519000084, 49.336731263 ], [ 12.884670451000119, 49.339573467000079 ], [ 12.92291101100011, 49.332700501000019 ], [ 12.939860881000101, 49.326757711000099 ], [ 12.954330282000058, 49.319109599000015 ], [ 12.982442261000074, 49.299627584000021 ], [ 12.999805542000104, 49.294925029000055 ], [ 13.005386597000012, 49.286760153000031 ], [ 13.006730184000077, 49.277096659 ], [ 13.011277710000115, 49.267794902000063 ], [ 13.043213745000088, 49.242886861 ], [ 13.043420451000145, 49.242783509000063 ], [ 13.055822795000012, 49.238184306000036 ], [ 13.149460489000148, 49.154830221000068 ], [ 13.162586303000126, 49.135141500000131 ], [ 13.178502645000066, 49.118346660000057 ], [ 13.206821330000139, 49.107494609000113 ], [ 13.267282755000082, 49.105634257000119 ], [ 13.287333211000117, 49.100569967000027 ], [ 13.299528849000126, 49.093645325000054 ], [ 13.32991459100009, 49.06692861 ], [ 13.372392618000049, 49.03850657200006 ], [ 13.383554728000149, 49.021091614000042 ], [ 13.384174845000132, 48.993031311000024 ], [ 13.398540893000131, 48.977683411000058 ], [ 13.427272990000034, 48.959958395000044 ], [ 13.458898966000049, 48.94502390600006 ], [ 13.482256713000083, 48.93763417600006 ], [ 13.492592, 48.955049133 ], [ 13.50210046400008, 48.966056214000091 ], [ 13.515949747000036, 48.970242005000031 ], [ 13.522395447000093, 48.969341930000084 ], [ 13.538894083000059, 48.967038066000057 ], [ 13.55646407100005, 48.959958395000044 ], [ 13.573413940000137, 48.951018372000092 ], [ 13.590467163000085, 48.944817200000031 ], [ 13.608657267000126, 48.946160787000068 ], [ 13.611137736000103, 48.927247213000058 ], [ 13.621783081000103, 48.909057109000102 ], [ 13.637389363000125, 48.893450826000063 ], [ 13.654442586000073, 48.882237040000021 ], [ 13.673356160000111, 48.876345928000021 ], [ 13.710614868000022, 48.872470195000048 ], [ 13.724670858000138, 48.867302552000055 ], [ 13.747925252000073, 48.843376363000047 ], [ 13.796191040000082, 48.779814352000088 ], [ 13.815724731000074, 48.766430156000055 ], [ 13.785855754000067, 48.724778951000033 ], [ 13.783581991000062, 48.715270488000058 ], [ 13.788749634000055, 48.71651072300007 ], [ 13.799394979000056, 48.702609762000108 ], [ 13.804355916000105, 48.69956085200009 ], [ 13.816861612000082, 48.695581767000093 ], [ 13.803529093000066, 48.687158508000024 ], [ 13.800945272000064, 48.675221253000061 ], [ 13.806216268000099, 48.642923483000075 ], [ 13.805492798000103, 48.626128642000126 ], [ 13.802392211000068, 48.611710918000099 ], [ 13.796191040000082, 48.598585104000037 ], [ 13.779034464000119, 48.57393544600005 ], [ 13.774280233000127, 48.569207052000067 ], [ 13.766012003000071, 48.563755188000087 ], [ 13.758053833000105, 48.561481425000053 ], [ 13.737279907000072, 48.559259339000064 ], [ 13.733869263000145, 48.559776103 ], [ 13.72539432800005, 48.548381450000093 ], [ 13.716505981000125, 48.521690572000054 ], [ 13.714335571000049, 48.523215027000063 ], [ 13.673356160000111, 48.535488180000087 ], [ 13.658059936000143, 48.551094463000041 ], [ 13.641833537000139, 48.559104309000119 ], [ 13.624366902000105, 48.565357158000026 ], [ 13.520703979000132, 48.58458079100005 ], [ 13.487217652000112, 48.58158355700003 ], [ 13.454558146000068, 48.57344451900012 ], [ 13.445566447000118, 48.567915141000114 ], [ 13.440088745000111, 48.560964661000028 ], [ 13.440708862000093, 48.557347311000044 ], [ 13.443706095000096, 48.552851461000031 ], [ 13.447736857000109, 48.534816386000031 ], [ 13.457038615000045, 48.5251787320001 ], [ 13.459209025000121, 48.516393738000019 ], [ 13.456418498000062, 48.506652731000074 ], [ 13.442982625000099, 48.487713319000122 ], [ 13.438228394000106, 48.478540752000029 ], [ 13.436368042000112, 48.469238994000094 ], [ 13.438228394000106, 48.440997824000121 ], [ 13.436161336000055, 48.430585022000102 ], [ 13.431717163000144, 48.423712057000031 ], [ 13.427169637000105, 48.418544413000021 ], [ 13.425205932000068, 48.413376770000028 ], [ 13.41952152500005, 48.392163595000071 ], [ 13.405568888000062, 48.37658315100002 ], [ 13.307797079000068, 48.319635722000058 ], [ 13.274207397000055, 48.307104187000036 ], [ 13.136438029000118, 48.291058655000072 ], [ 13.032775106000145, 48.26356679300001 ], [ 13.01665205900008, 48.255892843000126 ], [ 12.979445027000054, 48.232018332000038 ], [ 12.947198934000113, 48.22000356100007 ], [ 12.931696004000088, 48.211631979000103 ], [ 12.933039591000068, 48.209254863000055 ], [ 12.877642456000103, 48.202046001 ], [ 12.862552938000107, 48.196645813000046 ], [ 12.853457886000029, 48.189979553000015 ], [ 12.835164429000145, 48.17070424399999 ], [ 12.822141968000039, 48.160679017000049 ], [ 12.782351115000012, 48.142023825000095 ], [ 12.778320353000112, 48.13871653299999 ], [ 12.764057658000127, 48.123756205000021 ], [ 12.75795983900008, 48.121895854000016 ], [ 12.751448608000118, 48.122102560000073 ], [ 12.745040731000074, 48.12062978200008 ], [ 12.738942912000113, 48.113446757000034 ], [ 12.736979207000076, 48.099959209000062 ], [ 12.742043498000072, 48.086781718000069 ], [ 12.750931844000064, 48.07474111 ], [ 12.760233602000113, 48.064870911000028 ], [ 12.830616903000134, 48.015468242000011 ], [ 12.845603068000088, 47.993144023000056 ], [ 12.84824627100005, 47.98238892000002 ], [ 12.848600301000118, 47.980948385000019 ], [ 12.853974650000083, 47.970483907000087 ], [ 12.862036173000149, 47.962551575000035 ], [ 12.88601403800007, 47.952888082000086 ], [ 12.906167847000063, 47.938909607000099 ], [ 12.914229370000044, 47.935989889000027 ], [ 12.931075887000105, 47.924879456 ], [ 12.964975626000125, 47.871962790000012 ], [ 12.986576375000112, 47.850258688000011 ], [ 12.99122725400008, 47.847106426000053 ], [ 12.926735067000038, 47.777394918000127 ], [ 12.921257365000145, 47.769540101000089 ], [ 12.91929366100004, 47.763183899000055 ], [ 12.918983602000139, 47.756776022000011 ], [ 12.917226603000074, 47.75016143800012 ], [ 12.910818726000116, 47.74303009000009 ], [ 12.910612019000069, 47.742926738000065 ], [ 12.892008504000103, 47.723548076 ], [ 12.90833825600015, 47.712360129000061 ], [ 12.964045451000089, 47.705357971000055 ], [ 12.979031616000043, 47.707089132000121 ], [ 13.004353068000029, 47.714608053000049 ], [ 13.019855998000139, 47.712928569 ], [ 13.032258341000102, 47.706624044000094 ], [ 13.044557332000068, 47.696572978000049 ], [ 13.064091024000078, 47.673990377000038 ], [ 13.072049194000044, 47.659469299000065 ], [ 13.074839722000092, 47.646653545 ], [ 13.07421960400012, 47.634509583000082 ], [ 13.072049194000044, 47.622417298000116 ], [ 13.069568725000067, 47.620246887000022 ], [ 13.057683146000016, 47.600428976000032 ], [ 13.057063029000062, 47.597664286000096 ], [ 13.040939982000083, 47.583349915 ], [ 13.038252807000049, 47.584021709000083 ], [ 13.039079631000078, 47.561335755000115 ], [ 13.041250041000069, 47.561904196000071 ], [ 13.040113159000043, 47.560457255000088 ], [ 13.030604696000069, 47.544256694000083 ], [ 13.028124227000092, 47.541647034000064 ], [ 13.028124227000092, 47.524232077000036 ], [ 13.028951050000103, 47.51803090500006 ], [ 13.031224812000119, 47.512553203000053 ], [ 13.034428751000092, 47.507437236000058 ], [ 13.037012573000112, 47.501365255000039 ], [ 13.03732263100008, 47.49304535000006 ], [ 13.008797241000138, 47.470101014000122 ], [ 13.001872599000052, 47.466018576000025 ], [ 12.991123901000037, 47.465682679000039 ], [ 12.984922729000061, 47.468266500000126 ], [ 12.979341674000125, 47.472245586000028 ], [ 12.969729858000022, 47.475733745000056 ], [ 12.959291219000079, 47.475527039 ], [ 12.951022990000126, 47.472478130000084 ], [ 12.942548055000145, 47.470488587000048 ], [ 12.931592651000074, 47.473511658000049 ], [ 12.882603393000068, 47.498574728000065 ], [ 12.83692142700005, 47.53265533500003 ], [ 12.828446492000126, 47.537254538000084 ], [ 12.81904138100009, 47.5395283000001 ], [ 12.803641805000098, 47.54133697499999 ], [ 12.778940470000094, 47.55482452400004 ], [ 12.773669474000144, 47.579500021000044 ], [ 12.785865112000067, 47.602676901000038 ], [ 12.81315026900009, 47.611823629000028 ], [ 12.793306518000094, 47.62479441300006 ], [ 12.767364950000058, 47.636369935000104 ], [ 12.751655314000061, 47.649392396000039 ], [ 12.761990600000075, 47.666859029000094 ], [ 12.744834025000017, 47.665360413000073 ], [ 12.688713419000067, 47.675127259000035 ], [ 12.653056681000095, 47.675127259000035 ], [ 12.617399943000095, 47.66933949800007 ], [ 12.59838301500011, 47.662879944000011 ], [ 12.563374919000069, 47.641761370000054 ], [ 12.553837931000118, 47.636008199000102 ], [ 12.538231649000096, 47.63133148200005 ], [ 12.517147664000049, 47.628540955000076 ], [ 12.496580444000074, 47.628902690000061 ], [ 12.482524454000043, 47.633579407000056 ], [ 12.45275883000005, 47.649754130000034 ], [ 12.44469730600008, 47.656291199000023 ], [ 12.439219604000073, 47.664481914000035 ], [ 12.428780965000044, 47.685798442000035 ], [ 12.424130086000076, 47.691560365 ], [ 12.407696980000111, 47.693730774000088 ], [ 12.368422892000041, 47.683550517000029 ], [ 12.35147302300004, 47.681690166000024 ], [ 12.293698771000038, 47.690010071000088 ], [ 12.271891317000012, 47.687891337000011 ], [ 12.249567098000057, 47.680010682000059 ], [ 12.238715047000113, 47.678899639000051 ], [ 12.22879317200011, 47.684868266000066 ], [ 12.223315470000017, 47.695901184000078 ], [ 12.226622762000119, 47.702877502000078 ], [ 12.233030639000049, 47.7088719690001 ], [ 12.236544637000122, 47.71677846300004 ], [ 12.239128459000113, 47.727449646000039 ], [ 12.242229044000055, 47.732023011000095 ], [ 12.239748576000096, 47.73168711400011 ], [ 12.22517582200004, 47.727372132000127 ], [ 12.216494181000058, 47.723703105000126 ], [ 12.192412964000113, 47.710163880000053 ], [ 12.176599976000119, 47.705823059000082 ], [ 12.178563680000053, 47.697658183000058 ], [ 12.181767619000112, 47.692128805000053 ], [ 12.189105672000039, 47.685565898000064 ], [ 12.197270549000052, 47.680088196000085 ], [ 12.202334839000116, 47.677788595000052 ], [ 12.20512536600009, 47.672285055000074 ], [ 12.206779012000112, 47.645568339000093 ], [ 12.205745483000044, 47.636214905000074 ], [ 12.202128133000144, 47.629832866000029 ], [ 12.173602742000099, 47.605079855 ], [ 12.165644572000133, 47.603968811000087 ], [ 11.935891154000018, 47.610738424000047 ], [ 11.851968627000105, 47.59916290299999 ], [ 11.840703166000054, 47.594615377000068 ], [ 11.830677938000122, 47.57761383100005 ], [ 11.820342651000118, 47.575288391000115 ], [ 11.764015340000128, 47.583117371000029 ], [ 11.682573283000096, 47.583349915 ], [ 11.63895837400014, 47.589241028000103 ], [ 11.620458211000113, 47.589654440000018 ], [ 11.6170475670001, 47.58676056000003 ], [ 11.589142293000094, 47.570379131000081 ], [ 11.58232100400005, 47.55978546199999 ], [ 11.574466186000109, 47.53663442 ], [ 11.569401896000045, 47.52738433899999 ], [ 11.551211792000089, 47.513690084000061 ], [ 11.529507690000116, 47.507850648000087 ], [ 11.482585490000048, 47.502579651000062 ], [ 11.459951212000107, 47.507437236000058 ], [ 11.435353231000107, 47.509710999000092 ], [ 11.412615600000038, 47.506093648 ], [ 11.36548669400014, 47.469325867000023 ], [ 11.377785685000077, 47.467052104000103 ], [ 11.388637736000135, 47.46222035699999 ], [ 11.392461792000063, 47.454778951000051 ], [ 11.383883504000039, 47.444857076000076 ], [ 11.36765710500012, 47.440128683000083 ], [ 11.324248901000118, 47.439431051 ], [ 11.305645385000076, 47.435400290000089 ], [ 11.286318400000113, 47.423204651000091 ], [ 11.273089233000121, 47.411112366000097 ], [ 11.258826538000051, 47.400725403000067 ], [ 11.237019083000121, 47.393955790000049 ], [ 11.213041219000019, 47.395816142000044 ], [ 11.215211629000095, 47.422997945000034 ], [ 11.193817587000098, 47.42894073500004 ], [ 11.168599487000051, 47.424264018000073 ], [ 11.103280477000084, 47.393568218000027 ], [ 11.083746785000102, 47.389511618000128 ], [ 10.979463745000146, 47.390545146000093 ], [ 10.965511108000072, 47.396074524000099 ], [ 10.955279175000072, 47.409613750000076 ], [ 10.95765629100012, 47.409717103000034 ], [ 10.960860229000104, 47.414316305000071 ], [ 10.96313399200011, 47.421240947000044 ], [ 10.962823934000141, 47.427958883000073 ], [ 10.959826701000111, 47.432506409000027 ], [ 10.909907267000051, 47.468989970000038 ], [ 10.858437540000068, 47.485164693000016 ], [ 10.851616252000014, 47.493097026000086 ], [ 10.883862346000086, 47.508005676000025 ], [ 10.892233928000053, 47.514878643000102 ], [ 10.86928959100004, 47.526583354000067 ], [ 10.858644247000115, 47.53066579199999 ], [ 10.844794962000066, 47.531311747000061 ], [ 10.830635620000123, 47.528572896000114 ], [ 10.79032800300007, 47.516067200000023 ], [ 10.760769083000127, 47.513638407000045 ], [ 10.752190795000104, 47.515395406000025 ], [ 10.747229858000139, 47.52014963800012 ], [ 10.743922567000141, 47.525317281000028 ], [ 10.73989180500007, 47.528469544000089 ], [ 10.607910197000109, 47.562265930000066 ], [ 10.583725627000121, 47.562472636000038 ], [ 10.569876343000061, 47.555935567000049 ], [ 10.549619181000054, 47.536789450000057 ], [ 10.536906779000105, 47.529864808000056 ], [ 10.525124552000108, 47.528469544000089 ], [ 10.482543172000135, 47.532862040000069 ], [ 10.466936890000085, 47.537719625000094 ], [ 10.458772013000072, 47.541647034000064 ], [ 10.453501017000065, 47.546246236000016 ], [ 10.451744018000085, 47.55482452400004 ], [ 10.455464721000084, 47.561180726000075 ], [ 10.460322306000108, 47.565986633000065 ], [ 10.461562540000045, 47.569914043000054 ], [ 10.457118368000124, 47.579241638000084 ], [ 10.453604370000079, 47.58110199 ], [ 10.445956258000109, 47.579060771000044 ], [ 10.429213094000147, 47.577019552000067 ], [ 10.41422692900008, 47.573014628000081 ], [ 10.415673868000084, 47.564384665000048 ], [ 10.424355509000122, 47.553351746000047 ], [ 10.430970093000042, 47.542163798 ], [ 10.429729858000087, 47.532913717 ], [ 10.41960127800013, 47.49304535000006 ], [ 10.433657267000058, 47.48785186800005 ], [ 10.442235555000082, 47.481392314000104 ], [ 10.447609904000046, 47.472581483000099 ], [ 10.451744018000085, 47.460204977000032 ], [ 10.451950724000113, 47.438759257000115 ], [ 10.442855672000064, 47.416280010000023 ], [ 10.428282918000093, 47.3960486860001 ], [ 10.411643107000089, 47.381036683000033 ], [ 10.403064819000036, 47.377109273000073 ], [ 10.381980835000121, 47.37212249800011 ], [ 10.371645549000107, 47.367394104000127 ], [ 10.365651082000085, 47.361115418000011 ], [ 10.343430216000058, 47.330755514000074 ], [ 10.325446818000046, 47.314322409000098 ], [ 10.305913126000064, 47.302178447000088 ], [ 10.2611613360001, 47.283497416000031 ], [ 10.239353882000074, 47.277735494000055 ], [ 10.17495084980186, 47.272375554388304 ], [ 10.159875529000061, 47.271120911000068 ], [ 10.155431355000076, 47.27287790900003 ], [ 10.15946211800005, 47.279130758000051 ], [ 10.168660522000067, 47.290422058 ], [ 10.172691284000052, 47.292308248000026 ], [ 10.185920451000129, 47.29499542300006 ], [ 10.190778036000069, 47.298251038000032 ], [ 10.193258504000141, 47.304917298000035 ], [ 10.192741739000098, 47.310911764000068 ], [ 10.190467977000083, 47.317474671000056 ], [ 10.208554729000099, 47.354474996000093 ], [ 10.209278198000078, 47.372484233000094 ], [ 10.190881388000093, 47.379228008000027 ], [ 10.146956420000066, 47.373801982000074 ], [ 10.135070842000118, 47.364887797000037 ], [ 10.130833374000076, 47.362665711000048 ], [ 10.125665731000083, 47.362691549000047 ], [ 10.11533044400008, 47.366954855000088 ], [ 10.110369507000115, 47.367394104000127 ], [ 10.097243693000053, 47.363130799000075 ], [ 10.089595581000083, 47.359280904000016 ], [ 10.082877644000064, 47.359074199000062 ], [ 10.073162475000117, 47.365482076000021 ], [ 10.067788127000142, 47.375042217 ], [ 10.066857951000088, 47.385790914000026 ], [ 10.064170776000054, 47.396177878000046 ], [ 10.053215373000086, 47.404859518000094 ], [ 10.07595300300008, 47.416874288000074 ], [ 10.080603881000116, 47.427390442000032 ], [ 10.071818888000053, 47.439120993000117 ], [ 10.022622924000075, 47.487955221000064 ], [ 10.011254110000095, 47.484441224000122 ], [ 10.002365764000075, 47.479170227000097 ], [ 9.993580770000079, 47.476586406000095 ], [ 9.982625366000093, 47.481030579 ], [ 9.981075073000085, 47.486870016000083 ], [ 9.980765015000088, 47.489918925000026 ], [ 9.980765015000088, 47.492941997000045 ], [ 9.971669962000135, 47.506403707000075 ], [ 9.95916426600013, 47.514878643000102 ], [ 9.948725626000083, 47.524232077000036 ], [ 9.945935099000053, 47.540768534000037 ], [ 9.933842814000059, 47.534205628000038 ], [ 9.918753296000148, 47.532190247000088 ], [ 9.888987671000081, 47.533792216000037 ], [ 9.858911988000102, 47.54133697499999 ], [ 9.853847697000106, 47.540406800000127 ], [ 9.841548706000083, 47.53503245000006 ], [ 9.833487182000084, 47.534619039000049 ], [ 9.81312666900007, 47.54175038699999 ], [ 9.809302612000124, 47.552318217000064 ], [ 9.811266317000047, 47.564488017000073 ], [ 9.807959025000059, 47.576321920000098 ], [ 9.796280152000065, 47.584951885000024 ], [ 9.782120809000048, 47.588414205000063 ], [ 9.767134643000048, 47.587277324000056 ], [ 9.75266524200012, 47.582058004000046 ], [ 9.730857788000094, 47.564901429000074 ], [ 9.718455444000114, 47.546711324000043 ], [ 9.7039860430001, 47.531415100000075 ], [ 9.676700887000095, 47.522630107000097 ], [ 9.612622111000064, 47.521880799000101 ], [ 9.554143851957178, 47.532743111105674 ], [ 9.554435255682506, 47.533016262190699 ], [ 9.601460809069067, 47.577096258885206 ], [ 9.612209507063085, 47.587741604091718 ], [ 9.614379917399276, 47.588878486552915 ], [ 9.619960972420927, 47.59050629273122 ], [ 9.646781040112899, 47.593994451782521 ], [ 9.654532504571421, 47.596009833387086 ], [ 9.658718295612857, 47.597663478886432 ], [ 9.659183383606262, 47.599472154016667 ], [ 9.660578647586476, 47.602004300458077 ], [ 9.664299350634508, 47.606396796175204 ], [ 9.680008986025882, 47.611564439147514 ], [ 9.686365187403453, 47.611357734471824 ], [ 9.715045607069101, 47.604846503463364 ], [ 9.760055779750417, 47.620375270802072 ], [ 9.834211460090785, 47.665101223542592 ], [ 9.852866652174271, 47.67181916012612 ], [ 9.864648878942603, 47.674816392762295 ], [ 9.872245313770179, 47.673421128782024 ], [ 9.905008171689758, 47.663215034046573 ], [ 9.929192742850773, 47.659261786102547 ], [ 9.953273960325021, 47.659468492576821 ], [ 9.969707065228874, 47.662362372425548 ], [ 9.987535435012319, 47.667245795457063 ], [ 10.00913618288854, 47.675384833543205 ], [ 10.033940870774529, 47.680035712578047 ], [ 10.045878127173808, 47.680449123728067 ], [ 10.05269941564552, 47.679725654215531 ], [ 10.057815382673766, 47.678227037447812 ], [ 10.060347528215857, 47.675539863174095 ], [ 10.065153435982268, 47.664274400343288 ], [ 10.069184198292078, 47.657582302181481 ], [ 10.075695428401275, 47.649701647413053 ], [ 10.085462273565042, 47.658021551753166 ], [ 10.086702507914367, 47.672542630537919 ], [ 10.088407830257154, 47.67701264152015 ], [ 10.090113152599884, 47.679260566222126 ], [ 10.09197350367424, 47.679829007003036 ], [ 10.093368767654511, 47.679725654215531 ], [ 10.111972283793875, 47.67471303997479 ], [ 10.121480747438511, 47.673886216775486 ], [ 10.124736361593818, 47.67528147985638 ], [ 10.127061801560899, 47.677296861460945 ], [ 10.128612095172059, 47.679880682947157 ], [ 10.1301623878839, 47.683136298001727 ], [ 10.131402622233225, 47.687916368245794 ], [ 10.131247592602278, 47.690991116147075 ], [ 10.1301623878839, 47.693859158473344 ], [ 10.126441684835868, 47.700809638154226 ], [ 10.122720980888516, 47.710989895367334 ], [ 10.11915530837075, 47.729593411506698 ], [ 10.118070102753052, 47.758687242322367 ], [ 10.117139926766185, 47.762821357419682 ], [ 10.11589969241686, 47.765250149274948 ], [ 10.113987663599801, 47.767317205924314 ], [ 10.111972283793875, 47.768066514757834 ], [ 10.104065788805087, 47.768040676336113 ], [ 10.100965204280726, 47.768712469904528 ], [ 10.09910485230705, 47.770056057041359 ], [ 10.09677941233997, 47.7747069360762 ], [ 10.093213738922884, 47.778634344699242 ], [ 10.086082391189393, 47.782613430165668 ], [ 10.080191277805227, 47.787031765203778 ], [ 10.079261101818361, 47.790003160317553 ], [ 10.080346307436116, 47.793155423483995 ], [ 10.084997185571638, 47.798943183181336 ], [ 10.087477655169664, 47.800751858311571 ], [ 10.089338006243963, 47.801682034298437 ], [ 10.092438591667644, 47.802147122291842 ], [ 10.109491815095168, 47.802457179755038 ], [ 10.112282342156334, 47.803852443735252 ], [ 10.114452751593205, 47.805893662862218 ], [ 10.116519810041211, 47.809614365910249 ], [ 10.118070102753052, 47.81191396745561 ], [ 10.120085482558977, 47.813515937010834 ], [ 10.122410923425377, 47.81423940742269 ], [ 10.123806187405592, 47.814497788941765 ], [ 10.129542271158869, 47.816513170546386 ], [ 10.110887079075439, 47.844909369371862 ], [ 10.107631463121493, 47.854236965863265 ], [ 10.103910760073518, 47.859921372773101 ], [ 10.102205437730731, 47.861781724746777 ], [ 10.100965204280726, 47.862195135896798 ], [ 10.099879997763651, 47.862298489583623 ], [ 10.09910485230705, 47.862298489583623 ], [ 10.096934441970916, 47.861368312697437 ], [ 10.094919061265671, 47.861135768700763 ], [ 10.09259362129859, 47.861161607122426 ], [ 10.088097771894638, 47.862376003949407 ], [ 10.086547479182798, 47.864546414285542 ], [ 10.086082391189393, 47.865864163000708 ], [ 10.086547479182798, 47.867156074193417 ], [ 10.090113152599884, 47.87015330682965 ], [ 10.091198358217639, 47.87090261476385 ], [ 10.09259362129859, 47.87149689396648 ], [ 10.095539177990645, 47.87358978903751 ], [ 10.097089470702485, 47.875372625746081 ], [ 10.098174676320241, 47.877930609709836 ], [ 10.100965204280726, 47.890307114781479 ], [ 10.102050408999162, 47.893485216369641 ], [ 10.106236200040598, 47.897748521776862 ], [ 10.107786492752439, 47.902709459174162 ], [ 10.109181755833333, 47.910150865270168 ], [ 10.110266960551769, 47.933947861904301 ], [ 10.109491815095168, 47.937797757060821 ], [ 10.09755455869589, 47.946117662300253 ], [ 10.095539177990645, 47.948236395793003 ], [ 10.087012567176203, 47.960277004979787 ], [ 10.085307244833473, 47.965961411889623 ], [ 10.085462273565042, 47.970147202931059 ], [ 10.087787712632803, 47.973092760522434 ], [ 10.090888298955804, 47.975263169959305 ], [ 10.093213738922884, 47.976555081152071 ], [ 10.100655145018891, 47.979603989732311 ], [ 10.1301623878839, 48.034923610835961 ], [ 10.137603793979906, 48.056911933239121 ], [ 10.140084262678556, 48.083628648143588 ], [ 10.139309116322636, 48.094429022980989 ], [ 10.136208529999635, 48.107296454467757 ], [ 10.109336786363599, 48.148017483320189 ], [ 10.069959343748678, 48.268966173050444 ], [ 10.054094678726415, 48.304855454815367 ], [ 10.049908887684978, 48.310591539467964 ], [ 10.035801221848885, 48.324595852516552 ], [ 10.022313673637143, 48.340693061535546 ], [ 10.003865187128667, 48.368055732486027 ], [ 10.003038363929363, 48.368934230730133 ], [ 10.001953159210927, 48.369761053929494 ], [ 10.001022983224061, 48.370096950713673 ], [ 9.999937777606362, 48.370381171553788 ], [ 9.998852572887927, 48.370484524341293 ], [ 9.996682162551735, 48.370174465978778 ], [ 9.989550814818244, 48.370174465978778 ], [ 9.980559116010397, 48.381336575122816 ], [ 10.036576369104125, 48.433400580272519 ], [ 10.043862745569243, 48.436578680961304 ], [ 10.041072217608757, 48.442469794345527 ], [ 10.040297072152157, 48.446345527024448 ], [ 10.040762160145562, 48.450014553229039 ], [ 10.046033155905434, 48.457998562583555 ], [ 10.050529006208649, 48.462236030468432 ], [ 10.059055617023091, 48.468437202215057 ], [ 10.064068231263832, 48.471227729276279 ], [ 10.067943963043433, 48.472235418729554 ], [ 10.080191277805227, 48.472907213197288 ], [ 10.098174676320241, 48.476007799520289 ], [ 10.101430291374811, 48.477093004238725 ], [ 10.108716667839929, 48.481511339276835 ], [ 10.121170689076052, 48.487221585507712 ], [ 10.125046420855597, 48.488100083751817 ], [ 10.130007358252954, 48.487841702232743 ], [ 10.131867710226629, 48.487402451761739 ], [ 10.13341800293847, 48.486859850301812 ], [ 10.136983677254875, 48.484146836707112 ], [ 10.138068881973311, 48.483061631988676 ], [ 10.139154086691747, 48.481201280015057 ], [ 10.139929233047667, 48.479056708100586 ], [ 10.140549350671961, 48.472493801148005 ], [ 10.141324497027881, 48.470633450073649 ], [ 10.142409701746317, 48.469289862936819 ], [ 10.144115024089103, 48.468101305430878 ], [ 10.146285435324558, 48.467041938234843 ], [ 10.148145786398914, 48.466447659032212 ], [ 10.153416782158729, 48.465827542307181 ], [ 10.250568475254909, 48.505153307179341 ], [ 10.253203972685185, 48.516341253845781 ], [ 10.25428917830294, 48.51802073776679 ], [ 10.25676964700159, 48.520914619414157 ], [ 10.262350702023241, 48.525384630396331 ], [ 10.265606317077868, 48.527167467104903 ], [ 10.268241815407464, 48.528304347767403 ], [ 10.276768426221906, 48.529725450169337 ], [ 10.31495731043151, 48.531094875727888 ], [ 10.31743777823084, 48.531663316508798 ], [ 10.319453158936142, 48.532645169339048 ], [ 10.317282748599951, 48.533265286064079 ], [ 10.314337191907839, 48.534505520413404 ], [ 10.312631869565109, 48.535952460337739 ], [ 10.311391636115104, 48.537218533108785 ], [ 10.311391636115104, 48.539776516173276 ], [ 10.31247684083354, 48.543445543277187 ], [ 10.322863803621601, 48.56197154415139 ], [ 10.324104037970983, 48.568482774260588 ], [ 10.324414097232761, 48.573159491717149 ], [ 10.323793979608467, 48.579464016251336 ], [ 10.322243686896627, 48.583598131348651 ], [ 10.320693394184786, 48.586595363984827 ], [ 10.31573245588811, 48.592279771793983 ], [ 10.31325198718946, 48.59589712205451 ], [ 10.312321812101914, 48.598119208334765 ], [ 10.3117016935783, 48.600496324245967 ], [ 10.311081576853269, 48.604914659284077 ], [ 10.311856724108509, 48.606749172836032 ], [ 10.313096957558514, 48.608170274338647 ], [ 10.318678012580222, 48.610340685574158 ], [ 10.326584506669633, 48.612175198226794 ], [ 10.329220004999229, 48.613673814095193 ], [ 10.333560824772235, 48.617213649989935 ], [ 10.333560824772235, 48.62093435303791 ], [ 10.332940708047204, 48.623285631426711 ], [ 10.331235385704474, 48.624887600082673 ], [ 10.328754917005824, 48.626360379327991 ], [ 10.320383334922951, 48.629486803173393 ], [ 10.314802279901301, 48.633052477489798 ], [ 10.309996372134833, 48.636824856481894 ], [ 10.304725376375018, 48.639770413174006 ], [ 10.298989291722421, 48.642070013820046 ], [ 10.29340823670077, 48.643646144953607 ], [ 10.289222445659334, 48.645351467296337 ], [ 10.287052036222462, 48.646927599329217 ], [ 10.285501742611302, 48.648942980034462 ], [ 10.283899773955397, 48.65258616781739 ], [ 10.282039421981722, 48.65491160688515 ], [ 10.280024041276477, 48.656539414862095 ], [ 10.277078484584365, 48.65852895804494 ], [ 10.27335778243571, 48.662353013880477 ], [ 10.269482048857469, 48.669484360714648 ], [ 10.270412224844279, 48.681137397173131 ], [ 10.27180748882455, 48.683126939456656 ], [ 10.273512811167279, 48.683902085812576 ], [ 10.282504509975126, 48.691136786333573 ], [ 10.289842564183004, 48.700076809197355 ], [ 10.293873324694175, 48.703022365889467 ], [ 10.298059115735612, 48.703487453882872 ], [ 10.302865024401342, 48.70054189719076 ], [ 10.3117016935783, 48.694082343025684 ], [ 10.316352572613141, 48.691395168752024 ], [ 10.320073275661116, 48.690051580715874 ], [ 10.325344273219628, 48.688966375997438 ], [ 10.346014845108982, 48.689999904771753 ], [ 10.351130812137285, 48.688759671321748 ], [ 10.354386427191855, 48.686227524880337 ], [ 10.361672803656973, 48.674006049439583 ], [ 10.368029005933863, 48.666693834552802 ], [ 10.370199416270054, 48.665040188154137 ], [ 10.371904737713464, 48.664497585794948 ], [ 10.37469526477463, 48.665117703419241 ], [ 10.378881055816066, 48.667262275333712 ], [ 10.424201286859898, 48.701988837115096 ], [ 10.431022577130193, 48.705089423438096 ], [ 10.435208368171629, 48.705115260960497 ], [ 10.439394159213066, 48.704004217820398 ], [ 10.441719598280827, 48.702634793161167 ], [ 10.444355095711103, 48.699301662841435 ], [ 10.443424919724237, 48.69764801734209 ], [ 10.441409539018991, 48.696356106149381 ], [ 10.437998895232795, 48.69537425421845 ], [ 10.437068719245985, 48.692738755888854 ], [ 10.437843865601906, 48.690154934402699 ], [ 10.437998895232795, 48.687416083285598 ], [ 10.433813104191415, 48.681524969901432 ], [ 10.432572869842033, 48.679277045199456 ], [ 10.432107781848629, 48.67764923812183 ], [ 10.43195275221774, 48.675246283788965 ], [ 10.432572869842033, 48.672791653511979 ], [ 10.433658074560469, 48.670879624694919 ], [ 10.435208368171629, 48.669070950463947 ], [ 10.436603631252581, 48.668140774477138 ], [ 10.438463983226256, 48.667572332796908 ], [ 10.45179650180711, 48.672791653511979 ], [ 10.495101353045015, 48.699456692472381 ], [ 10.477117953630625, 48.721574205185391 ], [ 10.474637484931975, 48.728628038553097 ], [ 10.471071812414209, 48.733744005581343 ], [ 10.469056430809644, 48.735423489502409 ], [ 10.467351107567538, 48.73583689975311 ], [ 10.460684848726771, 48.734984239031405 ], [ 10.441099480656476, 48.741805528402381 ], [ 10.433968132922985, 48.747980861727342 ], [ 10.433037956936175, 48.749608669704344 ], [ 10.43272789857366, 48.750513007269433 ], [ 10.431642693855224, 48.75588735581681 ], [ 10.431487664224335, 48.760822454792446 ], [ 10.431797722586793, 48.763432114700322 ], [ 10.432417840211144, 48.765783393089066 ], [ 10.433658074560469, 48.767927965003537 ], [ 10.434588249648016, 48.769168199352919 ], [ 10.436138543259176, 48.770511786489749 ], [ 10.438619011957826, 48.771803696783138 ], [ 10.439704216676262, 48.774800930318634 ], [ 10.440169304669666, 48.780226955709395 ], [ 10.439084099951231, 48.793817856708699 ], [ 10.439394159213066, 48.799863999723755 ], [ 10.441099480656476, 48.804204820396137 ], [ 10.444200066979477, 48.806478583519777 ], [ 10.450866326719563, 48.810121772202024 ], [ 10.452313266643955, 48.811336168129628 ], [ 10.454018588986685, 48.813764959984894 ], [ 10.455568881698525, 48.817692369507199 ], [ 10.458359408759691, 48.826322333109147 ], [ 10.459134556014931, 48.830559800993967 ], [ 10.458979526384041, 48.833505356786759 ], [ 10.458049351296495, 48.835159003185424 ], [ 10.457119175309685, 48.836735134318985 ], [ 10.449316034007722, 48.845649318761048 ], [ 10.448385858020913, 48.847948920306408 ], [ 10.448075798759078, 48.849628404227474 ], [ 10.448385858020913, 48.850558580214283 ], [ 10.45179650180711, 48.857586575160269 ], [ 10.452468296274844, 48.859007677562261 ], [ 10.452933384268249, 48.860532131852381 ], [ 10.456344028054446, 48.887662257906868 ], [ 10.456344028054446, 48.89445770885618 ], [ 10.455568881698525, 48.898927720737674 ], [ 10.453863560255115, 48.90021963193044 ], [ 10.445750359691317, 48.904818834121897 ], [ 10.444820183704508, 48.906472480520506 ], [ 10.445595330060428, 48.907661038026447 ], [ 10.448230829289344, 48.908617052434977 ], [ 10.459444614377446, 48.911278388286973 ], [ 10.462545199801127, 48.912415269848793 ], [ 10.467351107567538, 48.914999091334948 ], [ 10.468126254822778, 48.917996323971124 ], [ 10.467506138097804, 48.921148587137566 ], [ 10.462700230331336, 48.930398668363807 ], [ 10.460219760733366, 48.936780707263779 ], [ 10.458824496753095, 48.939390367171654 ], [ 10.45680911604785, 48.941612454351286 ], [ 10.454173617718254, 48.943576158213091 ], [ 10.448540886752482, 48.946315009330192 ], [ 10.445750359691317, 48.948847153972963 ], [ 10.441564568649937, 48.957192898533435 ], [ 10.439859246307151, 48.959492499179476 ], [ 10.438774040689395, 48.960629380741295 ], [ 10.437378777608501, 48.961817939146556 ], [ 10.435673455265714, 48.962799791077487 ], [ 10.422806023778946, 48.972618313084638 ], [ 10.415054559320424, 48.982850247141187 ], [ 10.373300001693735, 49.005407009425937 ], [ 10.367253858678623, 49.010807197294298 ], [ 10.363533155630591, 49.020806586454796 ], [ 10.359967482213506, 49.028377183759972 ], [ 10.35717695515234, 49.031581121971158 ], [ 10.354231397560909, 49.033389798000769 ], [ 10.342449171691896, 49.033286445213264 ], [ 10.339451939055721, 49.033544826732339 ], [ 10.337281527820267, 49.034164944356689 ], [ 10.320073275661116, 49.041141262459291 ], [ 10.31588748461968, 49.042071438446101 ], [ 10.312631869565109, 49.04222646717767 ], [ 10.305345493099992, 49.041683864818481 ], [ 10.300384555702692, 49.042123115289542 ], [ 10.282194451612611, 49.046463935062548 ], [ 10.277078484584365, 49.048375962980288 ], [ 10.274442987154146, 49.050184638110522 ], [ 10.27428795662388, 49.051631578034858 ], [ 10.274598015885715, 49.053181870746698 ], [ 10.276303338228445, 49.056024075550624 ], [ 10.277233514215311, 49.057367661788135 ], [ 10.278318718933747, 49.060519924954519 ], [ 10.278318718933747, 49.066411038338742 ], [ 10.263125848379161, 49.074963487574848 ], [ 10.25925011570024, 49.078839220253769 ], [ 10.258940057337782, 49.080208644913 ], [ 10.25925011570024, 49.081655584837335 ], [ 10.261265496405542, 49.085634671203081 ], [ 10.262505730754867, 49.089252021463608 ], [ 10.261420526036432, 49.091060695694523 ], [ 10.259715203693702, 49.092094225368157 ], [ 10.255374383021319, 49.092533474040579 ], [ 10.245762566589178, 49.09467804595505 ], [ 10.234910515807655, 49.098760484208981 ], [ 10.231189812759624, 49.100956732966836 ], [ 10.229639520047783, 49.102972114571401 ], [ 10.230569696034649, 49.10428986328651 ], [ 10.231964959115544, 49.105581773579956 ], [ 10.233980339820789, 49.106305243991812 ], [ 10.23615075015698, 49.106382758357597 ], [ 10.240491570829306, 49.105840155998351 ], [ 10.244522332239853, 49.105840155998351 ], [ 10.246692742575988, 49.106150214360866 ], [ 10.248863152912179, 49.106718655141776 ], [ 10.25118859197994, 49.107674669550306 ], [ 10.252893914322669, 49.109044094209537 ], [ 10.253979119940425, 49.110439358189808 ], [ 10.256304559008186, 49.114625149231244 ], [ 10.257234734994995, 49.116020413211459 ], [ 10.25847496934432, 49.11741567629241 ], [ 10.26002526205616, 49.118836777795025 ], [ 10.262040642761463, 49.122066555327251 ], [ 10.264056024366027, 49.126820787149597 ], [ 10.265761345809437, 49.13824127871203 ], [ 10.264831169822628, 49.143667304102792 ], [ 10.263280877110788, 49.147594712725777 ], [ 10.261420526036432, 49.149093329493553 ], [ 10.245762566589178, 49.158989365866489 ], [ 10.243902214615503, 49.159919541853355 ], [ 10.241731805178631, 49.160462145111865 ], [ 10.23940636611087, 49.16056549700005 ], [ 10.23708092614379, 49.16038462984676 ], [ 10.234445427814251, 49.159764513121786 ], [ 10.223386672357037, 49.15480357482511 ], [ 10.221061232389957, 49.154493517361914 ], [ 10.218735793322196, 49.155087796564544 ], [ 10.205093214580188, 49.163769436110556 ], [ 10.184784376997413, 49.182941393030831 ], [ 10.180598585955977, 49.185886948823622 ], [ 10.176722853277056, 49.188083198480797 ], [ 10.158687777918601, 49.196041368514329 ], [ 10.150316195835728, 49.200924791545845 ], [ 10.147680698405509, 49.203482773711016 ], [ 10.146905552049589, 49.205394802528076 ], [ 10.148610874392318, 49.206402492880727 ], [ 10.150626255097563, 49.206867580874132 ], [ 10.154967074870569, 49.207125963292526 ], [ 10.15729251483765, 49.207720242495157 ], [ 10.159307896442272, 49.208986314366882 ], [ 10.161323276248197, 49.212138577533324 ], [ 10.159928013167246, 49.214619046231974 ], [ 10.156672398112676, 49.217409573293139 ], [ 10.150161167104159, 49.221750393066145 ], [ 10.147060580781158, 49.225445257692456 ], [ 10.145200229706802, 49.229346828793098 ], [ 10.145045200075913, 49.233868517518033 ], [ 10.145355259337748, 49.237253322882509 ], [ 10.145200229706802, 49.246141668902851 ], [ 10.144270053719993, 49.250017402481092 ], [ 10.143804965726588, 49.250482490474553 ], [ 10.130007358252954, 49.260249334739001 ], [ 10.127371859923358, 49.263815009055406 ], [ 10.126751743198383, 49.267587388946822 ], [ 10.127526889554304, 49.269912828014583 ], [ 10.128922152635198, 49.272031562406653 ], [ 10.130627475877304, 49.272703355075748 ], [ 10.13264285568323, 49.272341619869849 ], [ 10.137138705986501, 49.269809475227078 ], [ 10.140084262678556, 49.268517564034312 ], [ 10.150006138372589, 49.265985419391541 ], [ 10.154191929414026, 49.265675361029082 ], [ 10.157447543569276, 49.266760565747461 ], [ 10.159152865912006, 49.268930976083652 ], [ 10.159772982637037, 49.275338854304664 ], [ 10.157447543569276, 49.280713202851985 ], [ 10.150161167104159, 49.290583400803257 ], [ 10.147525668774563, 49.295544339099933 ], [ 10.146750523317962, 49.299110012517019 ], [ 10.154191929414026, 49.313346869562338 ], [ 10.15403689888376, 49.31667999898275 ], [ 10.152641635802809, 49.319134630159056 ], [ 10.150936314359399, 49.32014232051165 ], [ 10.149541050379185, 49.320762438136001 ], [ 10.146905552049589, 49.321227525230086 ], [ 10.143649936994962, 49.321537584491921 ], [ 10.138378940335826, 49.32303620125964 ], [ 10.131557650964794, 49.326085109839937 ], [ 10.121790805801027, 49.334870103972094 ], [ 10.11915530837075, 49.341639716499685 ], [ 10.119310337102377, 49.348073432243098 ], [ 10.121325717807622, 49.351639106559503 ], [ 10.121790805801027, 49.369544989809413 ], [ 10.139619174685151, 49.383549302858 ], [ 10.144270053719993, 49.384376126057361 ], [ 10.151091343091025, 49.384686184419877 ], [ 10.15729251483765, 49.382438258818581 ], [ 10.162098422604117, 49.381172186946856 ], [ 10.169849887961959, 49.38029368780343 ], [ 10.171555210304689, 49.382050686090281 ], [ 10.171090122311284, 49.384324449213921 ], [ 10.142254673014747, 49.430781561819572 ], [ 10.140394321041072, 49.432874456890659 ], [ 10.13822391070488, 49.434192206505088 ], [ 10.134038119663501, 49.435742499216929 ], [ 10.114607782123414, 49.440315863885985 ], [ 10.11243737088796, 49.44215037743794 ], [ 10.112902458881365, 49.444527493349085 ], [ 10.115072870116876, 49.446646226841892 ], [ 10.121015659445106, 49.451193753089228 ], [ 10.124426304130623, 49.455947984012255 ], [ 10.132022738958199, 49.472381089815428 ], [ 10.121945835431973, 49.487160550119256 ], [ 10.120550570552382, 49.492069811572549 ], [ 10.121480747438511, 49.493775133015959 ], [ 10.125821567211517, 49.49997630476264 ], [ 10.128922152635198, 49.505557358884971 ], [ 10.128922152635198, 49.508761297995477 ], [ 10.127526889554304, 49.511448473168457 ], [ 10.123341099412187, 49.513748073814554 ], [ 10.119930453827351, 49.514729925745428 ], [ 10.117915073122106, 49.514884955376374 ], [ 10.115227898848445, 49.514884955376374 ], [ 10.111972283793875, 49.514549059491458 ], [ 10.108871698370194, 49.515039985007263 ], [ 10.105306024053732, 49.516125189725699 ], [ 10.098639764313646, 49.51945832004543 ], [ 10.096469353977511, 49.521680406325686 ], [ 10.09600426598405, 49.523592434243426 ], [ 10.097399529964321, 49.525814521423001 ], [ 10.098019646689352, 49.527158108559831 ], [ 10.099259881038677, 49.528605048484167 ], [ 10.102670525724193, 49.534005235453208 ], [ 10.102670525724193, 49.53602061615851 ], [ 10.101740349737327, 49.537596747292014 ], [ 10.096159294715676, 49.540516466461725 ], [ 10.092903679661049, 49.541834215176891 ], [ 10.085152215202584, 49.544314683875541 ], [ 10.061122673672457, 49.531912340382178 ], [ 10.057350294680361, 49.527287298869737 ], [ 10.058280469767851, 49.526279609416406 ], [ 10.059365676284926, 49.525401109373661 ], [ 10.060347528215857, 49.52441925744273 ], [ 10.062517937652672, 49.522636419834896 ], [ 10.063913201632943, 49.521783759113191 ], [ 10.065928582338188, 49.519665024721064 ], [ 10.066858758324997, 49.517184556921734 ], [ 10.067478875050028, 49.511887721840878 ], [ 10.065773552707299, 49.509226385988882 ], [ 10.037196485829156, 49.488116564527786 ], [ 10.027894727759474, 49.483233141496271 ], [ 10.019678176206867, 49.480339259848961 ], [ 9.947692905303313, 49.479305731973909 ], [ 9.938804559282971, 49.480468451957449 ], [ 9.936324089685002, 49.481734523829175 ], [ 9.936014032221806, 49.483129787809446 ], [ 9.93663414894678, 49.484731757364671 ], [ 9.936789177678406, 49.486437078808137 ], [ 9.931983269911939, 49.506229153352706 ], [ 9.93167321065016, 49.510208237919812 ], [ 9.932138298643565, 49.514239000229679 ], [ 9.933533562623779, 49.519148260783595 ], [ 9.93415368024813, 49.52403168381511 ], [ 9.93415368024813, 49.528579210062446 ], [ 9.93167321065016, 49.53679576341375 ], [ 9.929812859575804, 49.550360825991277 ], [ 9.928727654857369, 49.552221177964952 ], [ 9.926247186158719, 49.554443264245208 ], [ 9.912914665779169, 49.561471259191251 ], [ 9.912294549054195, 49.562349758334676 ], [ 9.91260460831603, 49.563383287108991 ], [ 9.913999871396925, 49.564933579820831 ], [ 9.915860223370601, 49.566587226219497 ], [ 9.918340692069251, 49.569972032483292 ], [ 9.918960808794282, 49.571832384456968 ], [ 9.918650750431766, 49.573408514691153 ], [ 9.917255487350872, 49.575630601870728 ], [ 9.912914665779169, 49.579041246556244 ], [ 9.909193962731194, 49.579816392912164 ], [ 9.905473259683163, 49.579506334549649 ], [ 9.901597527903562, 49.577749335363535 ], [ 9.898651971211507, 49.575940660233243 ], [ 9.893225945820745, 49.570928045992503 ], [ 9.890383741916139, 49.567569078150427 ], [ 9.888523389942463, 49.565863755807641 ], [ 9.886818067599734, 49.564933579820831 ], [ 9.880771926383261, 49.563951727889901 ], [ 9.876586134442562, 49.562866523171465 ], [ 9.873330519387935, 49.561161200828735 ], [ 9.871470168313579, 49.558784084917534 ], [ 9.86960981633996, 49.552221177964952 ], [ 9.867439406003768, 49.548448798073537 ], [ 9.863873731687363, 49.54503815428734 ], [ 9.855192092141351, 49.542040920751845 ], [ 9.84899092039467, 49.542661038376195 ], [ 9.841704543030232, 49.545606594168987 ], [ 9.839224074331526, 49.548164578132742 ], [ 9.839069044700636, 49.551239326034022 ], [ 9.842014601392748, 49.554184881826814 ], [ 9.856122267228841, 49.563848375102395 ], [ 9.858137647934086, 49.56565705023263 ], [ 9.859842970276816, 49.567930813356327 ], [ 9.860773146263682, 49.571186428410897 ], [ 9.860928175894571, 49.573227647537863 ], [ 9.859377883182731, 49.578524481719455 ], [ 9.859222852652522, 49.58167674398652 ], [ 9.859842970276816, 49.585242418302926 ], [ 9.861703322250492, 49.588084622207532 ], [ 9.870695021058339, 49.596404527446964 ], [ 9.878291456785291, 49.60193390652455 ], [ 9.879996779128021, 49.604259344692991 ], [ 9.880926955114887, 49.606042182300826 ], [ 9.881702100571488, 49.608135078271232 ], [ 9.882322218195782, 49.609375311721237 ], [ 9.882322218195782, 49.611183986851472 ], [ 9.881547071839861, 49.613457749975169 ], [ 9.879841750396452, 49.616144925148149 ], [ 9.874725783368206, 49.620847480127054 ], [ 9.840464307781588, 49.645135403176312 ], [ 9.83565840001512, 49.649321194217691 ], [ 9.83467654808419, 49.651129869347983 ], [ 9.83390140082895, 49.652938544478218 ], [ 9.832816196110571, 49.661671860867671 ], [ 9.83374637209738, 49.682032376193206 ], [ 9.833436313734865, 49.686218167234586 ], [ 9.83297122574146, 49.688672797511572 ], [ 9.831730991392135, 49.690714015739218 ], [ 9.803515658820572, 49.712883206194988 ], [ 9.797159458342321, 49.719601141879195 ], [ 9.794523960012725, 49.721306464221925 ], [ 9.79250857930748, 49.72197825779034 ], [ 9.784447055587123, 49.718464260317319 ], [ 9.76842736183329, 49.714123440544313 ], [ 9.764086541160907, 49.712185574204852 ], [ 9.761296014099742, 49.710247707865392 ], [ 9.760365838112932, 49.709343370300246 ], [ 9.740367058892616, 49.696811834698394 ], [ 9.734630975139396, 49.690688178216817 ], [ 9.7319954768098, 49.688905341508303 ], [ 9.727499627405848, 49.687303371953021 ], [ 9.724244012351278, 49.688517767880683 ], [ 9.722176954802592, 49.690068061491843 ], [ 9.712565138370451, 49.704253241693721 ], [ 9.711789992014531, 49.706578680761481 ], [ 9.711014844759291, 49.710402737496338 ], [ 9.710859816027664, 49.715518704524584 ], [ 9.709774611309228, 49.719782009032485 ], [ 9.707449172241468, 49.721254788277804 ], [ 9.704968702643498, 49.721254788277804 ], [ 9.703728468294173, 49.720738023441015 ], [ 9.702643262676418, 49.720014553029159 ], [ 9.698457471634981, 49.713761705338413 ], [ 9.695511915842246, 49.711720486211448 ], [ 9.684814893792293, 49.708594062366046 ], [ 9.682334425992963, 49.706992091911502 ], [ 9.681249220375207, 49.705312607990436 ], [ 9.680008986025882, 49.701876125782576 ], [ 9.679233839669962, 49.695494085983228 ], [ 9.678458693314042, 49.692548530190493 ], [ 9.677528517327175, 49.690533149485248 ], [ 9.67318769665485, 49.687975165521436 ], [ 9.666779819333158, 49.687200019165516 ], [ 9.652672152597745, 49.688285223883952 ], [ 9.643835483420787, 49.690843206948443 ], [ 9.636084018962265, 49.694021308536549 ], [ 9.631898227920885, 49.696708481910889 ], [ 9.631123080665645, 49.697638657897699 ], [ 9.630502963940614, 49.69903392187797 ], [ 9.630968051934019, 49.701049303482534 ], [ 9.631898227920885, 49.70327138886347 ], [ 9.638564486761652, 49.713038234926557 ], [ 9.639494662748461, 49.714976101266018 ], [ 9.639494662748461, 49.717146510702889 ], [ 9.638254429298456, 49.722262477731135 ], [ 9.638719517291861, 49.72389028570808 ], [ 9.640424838735328, 49.725414740897577 ], [ 9.645385776132628, 49.727507635968607 ], [ 9.646936068844468, 49.728851223105437 ], [ 9.647091099374734, 49.730711575079113 ], [ 9.645075717770169, 49.73644765883239 ], [ 9.644920689038543, 49.740013333148795 ], [ 9.645695835394463, 49.742752184265839 ], [ 9.646936068844468, 49.744819240915206 ], [ 9.648486361556309, 49.746627916045441 ], [ 9.650036655167469, 49.748953356012521 ], [ 9.65065677279182, 49.750245266305967 ], [ 9.65065677279182, 49.751640530286238 ], [ 9.650346714429304, 49.754172674928952 ], [ 9.648486361556309, 49.759236966013134 ], [ 9.64740115683793, 49.764611314560511 ], [ 9.64740115683793, 49.766006578540726 ], [ 9.64817630409317, 49.767711899984192 ], [ 9.64972659680501, 49.769598090379532 ], [ 9.65313724059115, 49.772388618340017 ], [ 9.654532504571421, 49.774714057407778 ], [ 9.654532504571421, 49.776961982109754 ], [ 9.652517123866176, 49.781251125938695 ], [ 9.649261508811549, 49.783163153856435 ], [ 9.646315952119494, 49.78362824184984 ], [ 9.642905308333297, 49.782594713075525 ], [ 9.638254429298456, 49.780062568432754 ], [ 9.629417759222179, 49.776496894116349 ], [ 9.612364535794654, 49.772233587809808 ], [ 9.601925897062472, 49.770838324728857 ], [ 9.574382358059381, 49.782336331556451 ], [ 9.569111362299509, 49.780320949951829 ], [ 9.556967401224597, 49.777995509984748 ], [ 9.544823439250308, 49.778718981295924 ], [ 9.490976597392034, 49.795255438987283 ], [ 9.472528109984296, 49.795591335771519 ], [ 9.436819696271925, 49.792103175820898 ], [ 9.400594516823503, 49.783524889062335 ], [ 9.351863641094155, 49.78574697534259 ], [ 9.339771355963308, 49.783163153856435 ], [ 9.328350864400875, 49.778357245190705 ], [ 9.317808871981867, 49.771303411822998 ], [ 9.312331169747665, 49.765670680857227 ], [ 9.319049106331192, 49.752363999798717 ], [ 9.319979282318002, 49.750348619093472 ], [ 9.320289340680517, 49.749676826424377 ], [ 9.319204135962082, 49.747971503182328 ], [ 9.317963900713437, 49.74469004970598 ], [ 9.3130029642154, 49.739186509949434 ], [ 9.3130029642154, 49.735026557329718 ], [ 9.313623080940431, 49.732106839059327 ], [ 9.315483432914107, 49.730349839873213 ], [ 9.319049106331192, 49.728282783223847 ], [ 9.32711063005155, 49.726525784037676 ], [ 9.360958692689508, 49.72311513935216 ], [ 9.366539747711158, 49.721254788277804 ], [ 9.369950392396674, 49.719136053885734 ], [ 9.371190626745999, 49.715363674893638 ], [ 9.370570509121706, 49.711875514943017 ], [ 9.367314894067079, 49.704563300056236 ], [ 9.367004835704563, 49.70094594979571 ], [ 9.368865186778919, 49.698413805152938 ], [ 9.372585889826951, 49.69771617316286 ], [ 9.376151564143356, 49.697742011584523 ], [ 9.379252149567037, 49.698413805152938 ], [ 9.383282911876847, 49.7000157738089 ], [ 9.385608350944608, 49.702212022566755 ], [ 9.387830438124183, 49.705648504774672 ], [ 9.390620965185406, 49.713244941400887 ], [ 9.391706169903784, 49.715001938788419 ], [ 9.392946405152486, 49.716242174037063 ], [ 9.394806756226785, 49.717430732442324 ], [ 9.397132196193866, 49.718154201954803 ], [ 9.399922723255088, 49.71851593716076 ], [ 9.401938103960333, 49.718464260317319 ], [ 9.421316765556298, 49.712883206194988 ], [ 9.424262323147673, 49.711177882952938 ], [ 9.426277702953598, 49.709472561509472 ], [ 9.427207878940465, 49.708180650316706 ], [ 9.415735711433911, 49.668157254353787 ], [ 9.415270623440506, 49.663299668844616 ], [ 9.415735711433911, 49.662679552119585 ], [ 9.416355828158942, 49.66221446412618 ], [ 9.419301384850996, 49.65818370181637 ], [ 9.422867059167459, 49.651233222135488 ], [ 9.404418572658983, 49.64007111299145 ], [ 9.400077751986657, 49.63970937778555 ], [ 9.394806756226785, 49.640484524141471 ], [ 9.382662795151873, 49.649114487743361 ], [ 9.379252149567037, 49.650148017417052 ], [ 9.376616652136761, 49.650458075779568 ], [ 9.34809126120274, 49.6421898464842 ], [ 9.337859328045568, 49.640897936190754 ], [ 9.323699985366034, 49.641363023284896 ], [ 9.315638461645676, 49.64045868571975 ], [ 9.307731967556265, 49.638624173067114 ], [ 9.293779331351061, 49.633275662042138 ], [ 9.288663364322815, 49.630252590984242 ], [ 9.286337925255054, 49.626609402302051 ], [ 9.288973422685274, 49.614387925961978 ], [ 9.289748569041194, 49.612165838782403 ], [ 9.289593540309625, 49.610538031704777 ], [ 9.288198276329354, 49.609065253358722 ], [ 9.278896519158991, 49.60343252239295 ], [ 9.275640903205101, 49.600900376850859 ], [ 9.273728875287361, 49.598419908152209 ], [ 9.27062828896436, 49.589867458916046 ], [ 9.268612909158435, 49.586689358227261 ], [ 9.264117058855163, 49.581366686523324 ], [ 9.259001091826917, 49.578834540081914 ], [ 9.253420036805267, 49.577568468210188 ], [ 9.193682081562827, 49.577232571426009 ], [ 9.178799269370757, 49.57896373129114 ], [ 9.122006869921108, 49.570876370048438 ], [ 9.118441195604703, 49.571212266832617 ], [ 9.110689731146181, 49.575113837033939 ], [ 9.096375359735077, 49.591081854843708 ], [ 9.076686638877277, 49.603277492762061 ], [ 9.072965935829245, 49.607049871754157 ], [ 9.07265587656741, 49.610873928488957 ], [ 9.076531610145651, 49.614439601906099 ], [ 9.078702019582522, 49.615886541830434 ], [ 9.081182489180492, 49.61831533548434 ], [ 9.091259392706775, 49.625162462377716 ], [ 9.099475946058078, 49.629684150203332 ], [ 9.103041620374484, 49.631182766071788 ], [ 9.105987176167218, 49.633198146777033 ], [ 9.10836429207842, 49.635291042747383 ], [ 9.111309848770475, 49.639812731472375 ], [ 9.110224644052096, 49.645807196744727 ], [ 9.100251092413998, 49.672937323698477 ], [ 9.098855828433727, 49.68130890578135 ], [ 9.099475946058078, 49.686424871910276 ], [ 9.103661737099458, 49.687768459946426 ], [ 9.1075891457225, 49.688130195152382 ], [ 9.115030551818506, 49.688181871096447 ], [ 9.118751254866481, 49.688595283145787 ], [ 9.122937045907918, 49.689913031860897 ], [ 9.127587924942759, 49.692005926931984 ], [ 9.133324008696036, 49.695985012398353 ], [ 9.135029331038766, 49.697948717159534 ], [ 9.135029331038766, 49.700429185858241 ], [ 9.133479038326925, 49.7034780953378 ], [ 9.131618687252626, 49.708723253575272 ], [ 9.131773715984195, 49.713296617345009 ], [ 9.132858920702631, 49.717301541233098 ], [ 9.135339390300601, 49.721874905002835 ], [ 9.148516880149884, 49.73990998036129 ], [ 9.148981968143289, 49.7435790074652 ], [ 9.146656528176209, 49.746214504895477 ], [ 9.130998568728955, 49.750581163090203 ], [ 9.122937045907918, 49.753862617465813 ], [ 9.119526401222402, 49.757764186767758 ], [ 9.119681430853348, 49.761924140286794 ], [ 9.122161898652678, 49.765799872066395 ], [ 9.135804478294006, 49.777659614099889 ], [ 9.140455356429527, 49.783679917793961 ], [ 9.140920444422932, 49.787348944897872 ], [ 9.139370150811772, 49.790862942370893 ], [ 9.135959507025632, 49.793963527794574 ], [ 9.132858920702631, 49.795513821405734 ], [ 9.130223423272355, 49.796185614974149 ], [ 9.126502720224323, 49.796082262186644 ], [ 9.122006869921108, 49.795436306140573 ], [ 9.117821078879672, 49.794273587056352 ], [ 9.112860142381635, 49.793756822219564 ], [ 9.108674351340255, 49.794428615787979 ], [ 9.103661737099458, 49.796366482127439 ], [ 9.099165886796243, 49.800268053228024 ], [ 9.095755243010046, 49.804970608206986 ], [ 9.09079430471337, 49.814995835789148 ], [ 9.08986412872656, 49.821558742741786 ], [ 9.090329216719965, 49.828018296906862 ], [ 9.092654656687046, 49.835692246999599 ], [ 9.092964715049561, 49.839800522775874 ], [ 9.092499627056156, 49.842125962742955 ], [ 9.091259392706775, 49.843314521148216 ], [ 9.089554071263365, 49.843986313817311 ], [ 9.088003777652204, 49.844115505925856 ], [ 9.085833368215333, 49.843262844304775 ], [ 9.082887810623959, 49.841040758024519 ], [ 9.076686638877277, 49.833806057503523 ], [ 9.074981317433867, 49.831583971223267 ], [ 9.07343102382265, 49.830576279971297 ], [ 9.072345819104271, 49.830292060030501 ], [ 9.07017540876808, 49.830576279971297 ], [ 9.068935174418755, 49.831428940693058 ], [ 9.06769494006943, 49.832824205572592 ], [ 9.065059441739834, 49.836803290139699 ], [ 9.061803826685264, 49.839852200518635 ], [ 9.04919477671757, 49.866052151485576 ], [ 9.039893018647888, 49.882407742023645 ], [ 9.026715528798604, 49.907393297062981 ], [ 9.026095412073573, 49.911475735316913 ], [ 9.028110792778875, 49.98542471008227 ], [ 9.04919477671757, 49.980153714322455 ], [ 9.050951775903741, 49.981135566253329 ], [ 9.053122186239875, 49.981652330190855 ], [ 9.052347038984635, 49.9836677108961 ], [ 9.045164015307023, 49.992607733759883 ], [ 9.041288282628102, 49.998705552719059 ], [ 9.040513136272182, 50.000359199117725 ], [ 9.041753370621564, 50.011728013836716 ], [ 9.032141554189366, 50.021365667791315 ], [ 9.026870558429493, 50.043147285518785 ], [ 9.025940383342004, 50.0449559597497 ], [ 9.021444533038732, 50.048366604435216 ], [ 9.011677686975645, 50.049503485997036 ], [ 9.001910841811878, 50.048366604435216 ], [ 8.997414992407982, 50.0449559597497 ], [ 8.992350702223121, 50.04573110610562 ], [ 8.983410679359338, 50.049968573990498 ], [ 8.976589389988362, 50.052784939473327 ], [ 8.978759800324497, 50.055032864175303 ], [ 8.988061558394179, 50.062474270271309 ], [ 8.990852084556025, 50.06366282777725 ], [ 8.995089552440902, 50.063042711052219 ], [ 8.999430373113228, 50.063249417526549 ], [ 9.002996047429633, 50.064282945401601 ], [ 9.005941603222425, 50.06635000295023 ], [ 9.007336867202639, 50.070199897207488 ], [ 9.00795698392767, 50.074256497039698 ], [ 9.00811201265924, 50.088674221238307 ], [ 9.00888715991448, 50.093376777116532 ], [ 9.010282423894751, 50.096839097746113 ], [ 9.01214277496905, 50.099061184026368 ], [ 9.01446821493613, 50.10086985915666 ], [ 9.019119093071652, 50.10355703432964 ], [ 9.024390089730844, 50.10508148951908 ], [ 9.057463006012881, 50.110068264438837 ], [ 9.107899204085015, 50.125416165523575 ], [ 9.11084476077707, 50.125881253517036 ], [ 9.113790316569862, 50.125726222986771 ], [ 9.116890902892862, 50.125261134993366 ], [ 9.121076693934242, 50.123865871912415 ], [ 9.133634067058551, 50.117251288116449 ], [ 9.139060093348633, 50.115003364313793 ], [ 9.152547641560375, 50.112290350719093 ], [ 9.154873080628136, 50.111205146000657 ], [ 9.155338168621597, 50.109809882020386 ], [ 9.154252963903161, 50.108027045311871 ], [ 9.148206820888049, 50.10185171198691 ], [ 9.146501499444639, 50.099267890500698 ], [ 9.146191440182804, 50.097562568157969 ], [ 9.149292025606485, 50.097562568157969 ], [ 9.156113314977517, 50.09973297849416 ], [ 9.170737745650456, 50.106605942909937 ], [ 9.188101027440439, 50.119835110501924 ], [ 9.190426467407519, 50.123116563978215 ], [ 9.190736524870715, 50.125261134993366 ], [ 9.19027143687731, 50.130377102021612 ], [ 9.191356641595746, 50.134717922693937 ], [ 9.193527051931881, 50.136526597824229 ], [ 9.197867872604206, 50.138025213692629 ], [ 9.228770379449429, 50.143812975188609 ], [ 9.23512657992768, 50.144329739126135 ], [ 9.240552606217761, 50.144174710394566 ], [ 9.251404656999284, 50.142211004734065 ], [ 9.295949740787876, 50.141435859277465 ], [ 9.299205355842503, 50.140815742552434 ], [ 9.306336703575994, 50.139058743366263 ], [ 9.310987582610835, 50.138593655372858 ], [ 9.323855014996923, 50.139523831359725 ], [ 9.329126010756795, 50.139291287362994 ], [ 9.36793501079211, 50.127379869385436 ], [ 9.377546828123627, 50.12324575518744 ], [ 9.384058058232768, 50.118904934515115 ], [ 9.385608350944608, 50.117096259384823 ], [ 9.387365350130779, 50.114693305051958 ], [ 9.391396112440646, 50.106295885446741 ], [ 9.393101433884055, 50.103867091792836 ], [ 9.399922723255088, 50.097562568157969 ], [ 9.406744011726744, 50.092343248342218 ], [ 9.430463494894354, 50.089836941221847 ], [ 9.445863071023894, 50.091413072355351 ], [ 9.506686231884089, 50.108104560576976 ], [ 9.514127637980096, 50.112910468343387 ], [ 9.516763136309692, 50.116217760241398 ], [ 9.511027051657095, 50.134511217118927 ], [ 9.510406934932064, 50.137740993751834 ], [ 9.511802198912335, 50.14285696078008 ], [ 9.514902785235336, 50.148360501435945 ], [ 9.52715009909781, 50.16350169514709 ], [ 9.529010451071429, 50.166860662989166 ], [ 9.528700391809593, 50.168617662175336 ], [ 9.527460158359588, 50.170012926155607 ], [ 9.525289748023454, 50.171459866079942 ], [ 9.521879103337938, 50.172286689279247 ], [ 9.504360792816328, 50.173681953259518 ], [ 9.501570264855843, 50.174508775559502 ], [ 9.500175001774892, 50.175413113124648 ], [ 9.499089797056456, 50.176808377104919 ], [ 9.498418002588721, 50.178797919388444 ], [ 9.498107944226206, 50.181123359355524 ], [ 9.498728061850557, 50.184094754469299 ], [ 9.500330031405838, 50.188874823814047 ], [ 9.507306348609063, 50.202569078500119 ], [ 9.508546583857765, 50.206909898273182 ], [ 9.505290967903818, 50.226727810340151 ], [ 9.506221143890684, 50.233161526083563 ], [ 9.507926467132734, 50.235590317938772 ], [ 9.511027051657095, 50.236210436462443 ], [ 9.519863721733373, 50.233884996495362 ], [ 9.526064894379374, 50.232903144564432 ], [ 9.529785597427349, 50.232954820508553 ], [ 9.538932325866142, 50.236365465194012 ], [ 9.541102736202276, 50.236572170769023 ], [ 9.543273145639148, 50.236081245253217 ], [ 9.545753615237118, 50.235021878057182 ], [ 9.548699171929229, 50.232851466821728 ], [ 9.55335005096407, 50.228123074320422 ], [ 9.555417107613437, 50.22670197191843 ], [ 9.557587517949571, 50.225797634353341 ], [ 9.560067986648278, 50.225668443144116 ], [ 9.575880974827101, 50.228872382254622 ], [ 9.580376825130372, 50.229130763773696 ], [ 9.583787468916569, 50.228949897519726 ], [ 9.585802849621814, 50.228278103051991 ], [ 9.587508171964544, 50.227528795117792 ], [ 9.59014367029414, 50.225642604722395 ], [ 9.593089226986251, 50.224712428735586 ], [ 9.597740106021035, 50.22401479854409 ], [ 9.612054478331515, 50.224169827275659 ], [ 9.630502963940614, 50.228303941473712 ], [ 9.661198765210827, 50.234350084488767 ], [ 9.663369174647698, 50.235952053144729 ], [ 9.665074496990428, 50.238432521843379 ], [ 9.659803501230556, 50.242359931365741 ], [ 9.657788119625991, 50.247269191919656 ], [ 9.658253207619396, 50.254348862809763 ], [ 9.665384556252263, 50.268146471182661 ], [ 9.673497755916685, 50.275122789285263 ], [ 9.680319045287717, 50.279515285901709 ], [ 9.69380659260014, 50.283649400099705 ], [ 9.704348585918467, 50.285354723341811 ], [ 9.721711866809187, 50.290393175104896 ], [ 9.738351678187371, 50.297550361260164 ], [ 9.744707878665679, 50.301374417095644 ], [ 9.74858361224392, 50.305560208137081 ], [ 9.749048700237324, 50.315120347725838 ], [ 9.747963494619569, 50.323543605752775 ], [ 9.747033318632759, 50.32806529447771 ], [ 9.746258172276839, 50.333155423084293 ], [ 9.742847527591323, 50.347108059289496 ], [ 9.766722038591183, 50.40209178270959 ], [ 9.778969354252297, 50.414261583105542 ], [ 9.784447055587123, 50.415424303089083 ], [ 9.796074252724566, 50.418989977405488 ], [ 9.799174839047566, 50.419532578865415 ], [ 9.801810337377162, 50.419248358924619 ], [ 9.804445834807439, 50.418214830150248 ], [ 9.806771273875199, 50.416561183751583 ], [ 9.814367709602095, 50.409068101711512 ], [ 9.819483676630341, 50.4053732370852 ], [ 9.828475376337508, 50.400696520527958 ], [ 9.834986606446705, 50.398681138923394 ], [ 9.838758986338121, 50.398112698142484 ], [ 9.847440626783509, 50.397957669410914 ], [ 9.858912795189326, 50.398991197285909 ], [ 9.918340692069251, 50.413770656690417 ], [ 9.980869175272232, 50.437335110227139 ], [ 10.000867953593172, 50.448445543427056 ], [ 10.012701857204945, 50.460899562864483 ], [ 10.023088819993063, 50.474464627240707 ], [ 10.044482863193593, 50.497021389525457 ], [ 10.046033155905434, 50.499191799861649 ], [ 10.047738478248164, 50.502628282069509 ], [ 10.048978712597489, 50.505599677183341 ], [ 10.055024854713281, 50.516503403908928 ], [ 10.109646843826795, 50.555467434474508 ], [ 10.126131625574033, 50.562857163727074 ], [ 10.127836947916819, 50.561151842283664 ], [ 10.128147007178598, 50.558309638379058 ], [ 10.127681919185193, 50.555544948840293 ], [ 10.127371859923358, 50.552573553726518 ], [ 10.128302035910224, 50.550248115558077 ], [ 10.130007358252954, 50.548077704322566 ], [ 10.133883090931874, 50.546682441241671 ], [ 10.139309116322636, 50.545881456464031 ], [ 10.188350051313819, 50.549162909940321 ], [ 10.1971867195914, 50.548181057110071 ], [ 10.202612745881481, 50.546346544457435 ], [ 10.205093214580188, 50.543995266068634 ], [ 10.208503859265704, 50.541566474213369 ], [ 10.21455000228076, 50.538724270308819 ], [ 10.218115675697845, 50.536243800710793 ], [ 10.220441114765606, 50.533711656068022 ], [ 10.221991408376766, 50.528182277889812 ], [ 10.226332228149772, 50.5209992542122 ], [ 10.228089227335943, 50.515624904765502 ], [ 10.231499871122139, 50.512627672129327 ], [ 10.238011102130656, 50.510121365008956 ], [ 10.318678012580222, 50.492370510490616 ], [ 10.327514682656442, 50.489114895436046 ], [ 10.332630648785425, 50.485833441959755 ], [ 10.333560824772235, 50.483275457995944 ], [ 10.336971470357071, 50.477901109448624 ], [ 10.337746615813671, 50.475627346324927 ], [ 10.33790164634388, 50.472836819263762 ], [ 10.337281527820267, 50.466687324360521 ], [ 10.337281527820267, 50.463896796400036 ], [ 10.338521763068911, 50.461157945282935 ], [ 10.341053907711682, 50.458780829371733 ], [ 10.355161574447095, 50.451494452906672 ], [ 10.360122510945132, 50.447825425802705 ], [ 10.364618361248347, 50.44389801717972 ], [ 10.368649122658894, 50.439660550194219 ], [ 10.372834913700274, 50.436611639815283 ], [ 10.399396599873171, 50.42294322445025 ], [ 10.401877068571821, 50.419506741343014 ], [ 10.400791863853442, 50.417181301375933 ], [ 10.398466423886362, 50.415269273458193 ], [ 10.393298780913995, 50.411703600041108 ], [ 10.392213576195559, 50.408706367404932 ], [ 10.392678664188963, 50.405218207454311 ], [ 10.397381219167926, 50.399559638066819 ], [ 10.401101922215901, 50.397440904574069 ], [ 10.405442742888283, 50.395942287806292 ], [ 10.424666374853302, 50.394753730300408 ], [ 10.433658074560469, 50.395580553499713 ], [ 10.442649774267636, 50.398009345354978 ], [ 10.449471062739349, 50.399146226916798 ], [ 10.451951532337318, 50.397440904574069 ], [ 10.453398472261654, 50.394934597453698 ], [ 10.45432864824852, 50.392221584758317 ], [ 10.45758426330309, 50.38762238256686 ], [ 10.460994907089287, 50.38436676751229 ], [ 10.466110874117533, 50.38033600520248 ], [ 10.492930941809504, 50.365763251372925 ], [ 10.495256381776585, 50.362895209046656 ], [ 10.496031528132505, 50.359872137988759 ], [ 10.4955664401391, 50.356306464571674 ], [ 10.49727176338115, 50.354471951019718 ], [ 10.499752231180537, 50.353515937510508 ], [ 10.512981397873205, 50.352947495830222 ], [ 10.521352979956021, 50.351862291111843 ], [ 10.526158887722488, 50.352224026317742 ], [ 10.529259474045489, 50.353619290297956 ], [ 10.535770705054006, 50.357339993345988 ], [ 10.552358839588749, 50.358786933270324 ], [ 10.565588006281473, 50.339976712455268 ], [ 10.574269646726805, 50.333672187021762 ], [ 10.588067254200382, 50.328840439934311 ], [ 10.591322870154329, 50.325972398507361 ], [ 10.592408074872765, 50.32287181308368 ], [ 10.59287316196685, 50.317859198842939 ], [ 10.594268425947064, 50.311296291890358 ], [ 10.599074333713531, 50.298893948396994 ], [ 10.600159539331287, 50.292692775750993 ], [ 10.600004509700341, 50.28778351519702 ], [ 10.598299188256931, 50.284579576086514 ], [ 10.597524041001691, 50.279101873852369 ], [ 10.5953536306655, 50.275768745331334 ], [ 10.593803337953659, 50.271247057505661 ], [ 10.594578485208899, 50.267578030401751 ], [ 10.597989128995096, 50.26142853549851 ], [ 10.607135858333208, 50.250369778242657 ], [ 10.607600946326613, 50.24654572240712 ], [ 10.606515740708858, 50.24349681292756 ], [ 10.603880243278581, 50.240499579392065 ], [ 10.603880243278581, 50.237967433849974 ], [ 10.604810418366128, 50.235461126729604 ], [ 10.609151239038454, 50.230681057384857 ], [ 10.617057733127865, 50.22440237127239 ], [ 10.662222935440127, 50.224531562481616 ], [ 10.686924268739972, 50.220139064965849 ], [ 10.699791701126117, 50.213679510800773 ], [ 10.713589307700374, 50.2083826775185 ], [ 10.720565626702296, 50.207271633479081 ], [ 10.725216505737137, 50.208072618256722 ], [ 10.726611768818088, 50.210423895746146 ], [ 10.726921828079867, 50.213369453337577 ], [ 10.726921828079867, 50.221275947426989 ], [ 10.731572707114708, 50.242308255421619 ], [ 10.738910760423266, 50.247682603968997 ], [ 10.742941521833757, 50.247785955857125 ], [ 10.746662224881732, 50.24711416318803 ], [ 10.749142693580438, 50.246054795991995 ], [ 10.753018426259359, 50.243729356024915 ], [ 10.758444451650121, 50.243186754565045 ], [ 10.766661004102048, 50.243574327293345 ], [ 10.79849368693408, 50.248225206328186 ], [ 10.802524448344627, 50.247450059972266 ], [ 10.816787143811609, 50.242669989728199 ], [ 10.829034457674084, 50.240861313698645 ], [ 10.835390659051654, 50.241016344228854 ], [ 10.840196566818065, 50.242049872103905 ], [ 10.843142124409496, 50.24403941528675 ], [ 10.845674269052267, 50.24654572240712 ], [ 10.847224561764108, 50.250783189392678 ], [ 10.847689649757513, 50.254348862809763 ], [ 10.847379592294317, 50.257707831551159 ], [ 10.846759473770703, 50.260524197034044 ], [ 10.844899122696347, 50.265769355271516 ], [ 10.843297153141066, 50.268094794339277 ], [ 10.841126742804931, 50.270110175044522 ], [ 10.837871127750304, 50.271660467756362 ], [ 10.820352817228695, 50.274709378135242 ], [ 10.816322055818205, 50.275794582853678 ], [ 10.812756382401119, 50.277086494046443 ], [ 10.810120884071523, 50.278791816389173 ], [ 10.807950473735389, 50.28070384430697 ], [ 10.806555209755118, 50.283055120897075 ], [ 10.804229770687357, 50.288196926347041 ], [ 10.802059360351166, 50.290212307052286 ], [ 10.798803745296595, 50.291555895088436 ], [ 10.794928012617675, 50.292382717388477 ], [ 10.77751305488357, 50.291349189513483 ], [ 10.773172235110565, 50.291814277506887 ], [ 10.769141472800698, 50.292692775750993 ], [ 10.765885857746127, 50.294139716574648 ], [ 10.763250360315851, 50.295793362073994 ], [ 10.751313103916573, 50.304630032150214 ], [ 10.749607781573843, 50.305663560924586 ], [ 10.737825554805511, 50.310753689531111 ], [ 10.726766799348297, 50.314086818951523 ], [ 10.722736037038487, 50.315792141294253 ], [ 10.719015333990455, 50.317962550731124 ], [ 10.714984571680645, 50.32194163709687 ], [ 10.714209426224045, 50.32824616073168 ], [ 10.71793012927202, 50.351655585536832 ], [ 10.721960889783247, 50.357443346133493 ], [ 10.726301711354893, 50.360750637132185 ], [ 10.730487502396329, 50.361164049181525 ], [ 10.734879998113399, 50.3610348579723 ], [ 10.748987663949492, 50.357133286871658 ], [ 10.751158075185003, 50.356771552565078 ], [ 10.7545687189712, 50.356616522934132 ], [ 10.75782433402577, 50.357753404496009 ], [ 10.760614861986255, 50.360027166720329 ], [ 10.763405389047477, 50.363282783573595 ], [ 10.765420769752723, 50.366073309735441 ], [ 10.779528435588816, 50.381162828401784 ], [ 10.784489372986172, 50.384418443456354 ], [ 10.788881869602562, 50.38625295700831 ], [ 10.792447543919025, 50.385968736168195 ], [ 10.79446292462427, 50.385632840283336 ], [ 10.803919712324841, 50.38266144516956 ], [ 10.806400181023548, 50.382351385907725 ], [ 10.809810824809688, 50.38224803312022 ], [ 10.817097202174125, 50.38361745957809 ], [ 10.820507846859641, 50.384676825874806 ], [ 10.832910190353005, 50.390361232784642 ], [ 10.836630894300299, 50.391291408771451 ], [ 10.840661654811527, 50.391523952768182 ], [ 10.859161818163386, 50.389482734540536 ], [ 10.866758253890282, 50.391601467133967 ], [ 10.871099073663288, 50.393539334372747 ], [ 10.87466474797975, 50.394288642306947 ], [ 10.877300246309289, 50.394288642306947 ], [ 10.879935743739566, 50.393539334372747 ], [ 10.882726270800731, 50.392273260702382 ], [ 10.885206740398758, 50.390516262415531 ], [ 10.887377149835572, 50.388423367344501 ], [ 10.889082472178359, 50.38625295700831 ], [ 10.891097852883604, 50.384470120299795 ], [ 10.893423292850684, 50.382919826688635 ], [ 10.895748731918445, 50.382351385907725 ], [ 10.89890099508483, 50.382144680332715 ], [ 10.902414991658532, 50.38245473869523 ], [ 10.927736444381367, 50.387958279351096 ], [ 10.935797967202404, 50.388552558553727 ], [ 10.943394402929357, 50.387338161726746 ], [ 10.97755252392983, 50.355427965428248 ], [ 10.981738314971267, 50.352792467098652 ], [ 10.987939486717949, 50.349898587249982 ], [ 10.990109897953403, 50.351371364696718 ], [ 10.991660189765923, 50.353205878248673 ], [ 10.992435337021163, 50.355066230222349 ], [ 10.993830601001434, 50.362300929844025 ], [ 10.995225864082329, 50.363282783573595 ], [ 10.997551304049409, 50.363644517880175 ], [ 11.024578078215711, 50.361164049181525 ], [ 11.031709425949259, 50.358528550851929 ], [ 11.036980421709075, 50.355066230222349 ], [ 11.041631300743916, 50.349485175200641 ], [ 11.045662062154406, 50.347934882488801 ], [ 11.049692823564953, 50.347728176014471 ], [ 11.064110548662882, 50.351913967055907 ], [ 11.068296339704318, 50.352585761523642 ], [ 11.081835564759501, 50.353515937510508 ], [ 11.085556267807476, 50.354471951019718 ], [ 11.088346794868698, 50.356228950205889 ], [ 11.090362175573944, 50.358399360542023 ], [ 11.09377282115878, 50.360957342707195 ], [ 11.098268669663355, 50.363282783573595 ], [ 11.108500603719847, 50.36506562028211 ], [ 11.112531366029714, 50.365194811491335 ], [ 11.115786981084284, 50.363799547511064 ], [ 11.118267449782991, 50.357650050809184 ], [ 11.121368036105991, 50.353619290297956 ], [ 11.124623651160562, 50.352534085579578 ], [ 11.131031527582934, 50.352895819886157 ], [ 11.134597201899339, 50.352017319843412 ], [ 11.137542758591394, 50.350467027131572 ], [ 11.145294223949236, 50.341914577895409 ], [ 11.149790073353188, 50.337987169272424 ], [ 11.153665806032109, 50.333723862965883 ], [ 11.155216098743949, 50.331398423898122 ], [ 11.156456333093274, 50.329150499196146 ], [ 11.156766392355109, 50.32690257449417 ], [ 11.156301304361705, 50.325507311413276 ], [ 11.154906040381434, 50.323543605752775 ], [ 11.135372349154579, 50.309332587129177 ], [ 11.143278843243991, 50.301219387464755 ], [ 11.192319777335854, 50.271557114968857 ], [ 11.20224165213051, 50.28336518015891 ], [ 11.207512647890383, 50.28509634092336 ], [ 11.216194289235034, 50.279515285901709 ], [ 11.221465284994906, 50.277603257983969 ], [ 11.244151239388145, 50.273107408580017 ], [ 11.250972527859858, 50.273520819730038 ], [ 11.255313347632864, 50.274864406866868 ], [ 11.256708611613135, 50.277034817203003 ], [ 11.25701866997565, 50.278636785858964 ], [ 11.256863641244024, 50.280962225826045 ], [ 11.255158318901294, 50.288351955977987 ], [ 11.25624352361973, 50.290780747833196 ], [ 11.258103874694029, 50.294423937414763 ], [ 11.264305047340031, 50.30090932910224 ], [ 11.265855340051871, 50.305043443300235 ], [ 11.266010369682817, 50.308428250463351 ], [ 11.264615105702546, 50.310779527053512 ], [ 11.259034050680896, 50.317290758062029 ], [ 11.259034050680896, 50.320908108322499 ], [ 11.260584344292056, 50.325714016088966 ], [ 11.269265984737387, 50.338529772530933 ], [ 11.270506219086712, 50.341371975536219 ], [ 11.270196160724197, 50.343929959500031 ], [ 11.269110955106498, 50.346875515292766 ], [ 11.268490838381467, 50.351371364696718 ], [ 11.268800896743983, 50.353076687039447 ], [ 11.271281366341952, 50.354187731078923 ], [ 11.27856774280707, 50.355608832581538 ], [ 11.279963005888021, 50.356926581296648 ], [ 11.2802730651498, 50.358631904538754 ], [ 11.278257684444554, 50.36317942988677 ], [ 11.27763756682026, 50.365659897686101 ], [ 11.277482537189314, 50.367933660809797 ], [ 11.277482537189314, 50.370724188770282 ], [ 11.277172478826799, 50.373514715831448 ], [ 11.275777214846585, 50.375943507686713 ], [ 11.274226922134744, 50.378217271709673 ], [ 11.267095575300573, 50.383927517041229 ], [ 11.265390252058467, 50.386407985739936 ], [ 11.264615105702546, 50.389431056797832 ], [ 11.264770135333492, 50.393513495051707 ], [ 11.264150017709142, 50.396252346168808 ], [ 11.26042931466111, 50.400644842785255 ], [ 11.259034050680896, 50.40322866517073 ], [ 11.259034050680896, 50.406949368218761 ], [ 11.262444696265732, 50.424571031527876 ], [ 11.262599724997301, 50.427723293794941 ], [ 11.262134637003896, 50.430668850487052 ], [ 11.260739373023625, 50.436198229564638 ], [ 11.25965416830519, 50.438782050151474 ], [ 11.25779381723089, 50.441520901268575 ], [ 11.256088494888104, 50.444621486692256 ], [ 11.254383171646055, 50.449065660152087 ], [ 11.256553581982189, 50.452631334468492 ], [ 11.256863641244024, 50.454801743905307 ], [ 11.256398553250619, 50.456662095878983 ], [ 11.253452995659188, 50.461726386063845 ], [ 11.248647087892778, 50.472630112789432 ], [ 11.276397331571559, 50.481130886081473 ], [ 11.295775994966164, 50.483947252463679 ], [ 11.316291538123949, 50.492525540121562 ], [ 11.319702182809465, 50.495496935235337 ], [ 11.320322300433816, 50.496763007107063 ], [ 11.320477329165385, 50.498416653505728 ], [ 11.320322300433816, 50.499656886955734 ], [ 11.320632357897011, 50.50115550372351 ], [ 11.321407505152251, 50.503403429324806 ], [ 11.324818148938391, 50.507511705101081 ], [ 11.330089145597583, 50.510121365008956 ], [ 11.33737552296202, 50.511387437780002 ], [ 11.346728956975767, 50.518725491088503 ], [ 11.410497673628697, 50.516503403908928 ], [ 11.427085809062817, 50.513092760122731 ], [ 11.436077507870664, 50.502550767703724 ], [ 11.43778283021345, 50.500070299005074 ], [ 11.438247918206855, 50.499036770230759 ], [ 11.43871300620026, 50.497202257578124 ], [ 11.438092888575909, 50.494850979189323 ], [ 11.435767450407525, 50.492964788793927 ], [ 11.426465692337842, 50.488959865805157 ], [ 11.420574578953619, 50.48570425075053 ], [ 11.41809411025497, 50.452269599262593 ], [ 11.419179314973405, 50.448135484165221 ], [ 11.421194695678651, 50.443045356458015 ], [ 11.430961540842418, 50.440332342863314 ], [ 11.440728386905505, 50.435319729521893 ], [ 11.448479852263347, 50.429376939294286 ], [ 11.453905876754789, 50.427723293794941 ], [ 11.458246698326434, 50.42751658821993 ], [ 11.46165734211263, 50.42886017535676 ], [ 11.465894809997451, 50.429531968925176 ], [ 11.470855747394808, 50.429376939294286 ], [ 11.477211947873059, 50.427490749798267 ], [ 11.480312534196059, 50.425139472308786 ], [ 11.482017857438166, 50.422297268404179 ], [ 11.484033237244091, 50.413718980746353 ], [ 11.484653354868442, 50.399507962122755 ], [ 11.487288853197981, 50.396717434162213 ], [ 11.493490024045343, 50.393539334372747 ], [ 11.502016635759105, 50.390412910527346 ], [ 11.517674595206415, 50.381937974757705 ], [ 11.525787794870837, 50.379147446797219 ], [ 11.531678908255003, 50.378423977284683 ], [ 11.539275343082579, 50.380129300526789 ], [ 11.552297804200293, 50.3814728867643 ], [ 11.556018508147645, 50.382403062751109 ], [ 11.559119092671949, 50.383927517041229 ], [ 11.56128950390746, 50.386097927377421 ], [ 11.564080030968626, 50.391368924036612 ], [ 11.566405470036386, 50.393410143163578 ], [ 11.569816114721903, 50.394598701568782 ], [ 11.578704460742244, 50.395477199812888 ], [ 11.591571893128332, 50.394469509460293 ], [ 11.621182488780846, 50.386795559367556 ], [ 11.73957319544661, 50.402763577177325 ], [ 11.756988153180714, 50.4061225450194 ], [ 11.75807335789915, 50.407827867362187 ], [ 11.75962365061099, 50.409223131342401 ], [ 11.761173944222151, 50.411548570410162 ], [ 11.768150262324752, 50.412892158446311 ], [ 11.784738396859495, 50.414261583105542 ], [ 11.792024774223933, 50.414080715952252 ], [ 11.796727329202895, 50.413512275171342 ], [ 11.798070916339725, 50.412246202400297 ], [ 11.798691033964019, 50.411496894466097 ], [ 11.800137973888354, 50.409481512861475 ], [ 11.80086144430021, 50.408499660930602 ], [ 11.804168735298902, 50.406742661744431 ], [ 11.809129672696201, 50.404830633826691 ], [ 11.819671665115266, 50.402401841971425 ], [ 11.823082309800725, 50.40095490204709 ], [ 11.824477572881676, 50.399146226916798 ], [ 11.822772251438266, 50.397130846211553 ], [ 11.822152133813915, 50.394624539091183 ], [ 11.823702427425076, 50.391446438402397 ], [ 11.828818393554002, 50.391058864774777 ], [ 11.832384066971088, 50.392066555127371 ], [ 11.836104770918439, 50.393539334372747 ], [ 11.838895297979604, 50.395167141450372 ], [ 11.849592319130238, 50.398319403717494 ], [ 11.867472364857747, 50.401316637252989 ], [ 11.872278272624158, 50.402711900333884 ], [ 11.881269972331324, 50.407001044162826 ], [ 11.905299512962131, 50.415165921570008 ], [ 11.931706170403402, 50.416922918957539 ], [ 11.94054283958036, 50.414545803046337 ], [ 11.943798454634987, 50.410515042535167 ], [ 11.945658806608606, 50.408551336874666 ], [ 11.947829216944797, 50.406742661744431 ], [ 11.949844597650042, 50.405218207454311 ], [ 11.96023156133748, 50.394159451097778 ], [ 11.98121219158935, 50.3853227810215 ], [ 11.984777865905755, 50.380749417251764 ], [ 11.983382602824861, 50.378630682859693 ], [ 11.982297398106425, 50.375426743749188 ], [ 11.98183231011302, 50.371189276763687 ], [ 11.986018101154457, 50.351552231850008 ], [ 11.989428744940597, 50.349175116838126 ], [ 11.998885531741905, 50.346436265721081 ], [ 12.039864943012674, 50.328840439934311 ], [ 12.043430617329136, 50.327755235215932 ], [ 12.047616408370516, 50.327005927281675 ], [ 12.051957228143522, 50.32690257449417 ], [ 12.065289747623751, 50.327910264846821 ], [ 12.093711785770267, 50.322613429765966 ], [ 12.100998162235385, 50.314371038892318 ], [ 12.101343546867156, 50.313980338321926 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DE-RP", "NAME_1": "Rheinland-Pfalz" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.101156861000078, 50.063405254000045 ], [ 6.099399861000109, 50.064128723000053 ], [ 6.105704386000127, 50.092240702000069 ], [ 6.110561971000038, 50.105986634000018 ], [ 6.11748661300004, 50.120456035000061 ], [ 6.126581665000089, 50.127329000000103 ], [ 6.129475545000076, 50.134046937000036 ], [ 6.125961547000117, 50.140196432000025 ], [ 6.115832967000074, 50.145467428000032 ], [ 6.11800337700015, 50.150376689000083 ], [ 6.121310668000149, 50.161590475000125 ], [ 6.123171020000058, 50.164897767000028 ], [ 6.13174930800011, 50.168308411000041 ], [ 6.151696411000017, 50.169341939000034 ], [ 6.159137817000044, 50.172442526000069 ], [ 6.165132284000066, 50.181899312000056 ], [ 6.165752400000144, 50.193164775000085 ], [ 6.160171346000112, 50.20453359 ], [ 6.146838827000096, 50.214042054000075 ], [ 6.15717411300011, 50.222723694000038 ], [ 6.179808390000062, 50.233007304000026 ], [ 6.189626912000023, 50.242722473000057 ], [ 6.210400838000083, 50.24902699799999 ], [ 6.253395630000057, 50.256778463000089 ], [ 6.271792439000137, 50.267423808000089 ], [ 6.267348267000045, 50.276415507000124 ], [ 6.269415324000107, 50.286492412000072 ], [ 6.276029907000094, 50.296104228000061 ], [ 6.285951782000097, 50.303855692000084 ], [ 6.299491007000086, 50.308868307000054 ], [ 6.310653116000111, 50.308248190000072 ], [ 6.322021932000098, 50.305405986 ], [ 6.335457804000043, 50.303855692000084 ], [ 6.36201949000008, 50.306956279000119 ], [ 6.374525187000074, 50.31548289100003 ], [ 6.373399684000105, 50.323080035000075 ], [ 6.398400506178405, 50.323181871446195 ], [ 6.42031131421578, 50.329848131186282 ], [ 6.425737338707222, 50.332431953571756 ], [ 6.426512485063142, 50.333723862965883 ], [ 6.426357456331516, 50.335325833420427 ], [ 6.425582309975596, 50.336979478919773 ], [ 6.424032017263755, 50.339149889255964 ], [ 6.391734246438318, 50.372222805538001 ], [ 6.390804071350772, 50.375375067805123 ], [ 6.390959100082398, 50.377519639719594 ], [ 6.392354364062612, 50.380025946839964 ], [ 6.395144891123834, 50.382041328444529 ], [ 6.397625359822484, 50.383229885051151 ], [ 6.401811150863921, 50.38338491558136 ], [ 6.406307000267816, 50.38224803312022 ], [ 6.413748407263199, 50.378320624497178 ], [ 6.416590610268429, 50.375375067805123 ], [ 6.418295932611215, 50.373204658368252 ], [ 6.419381138228914, 50.370672511926841 ], [ 6.421706577296675, 50.368398748803202 ], [ 6.428062777774983, 50.364833076285436 ], [ 6.444650913209045, 50.359252021263728 ], [ 6.448061557894562, 50.356461494202563 ], [ 6.450386996962322, 50.353567613454572 ], [ 6.454417759272133, 50.34256053304216 ], [ 6.458138462320164, 50.34101024033032 ], [ 6.464494662798415, 50.341914577895409 ], [ 6.48097944544503, 50.346255398567791 ], [ 6.525627882920446, 50.366900132934745 ], [ 6.528004997932271, 50.368476264068306 ], [ 6.532190788973708, 50.369458115999237 ], [ 6.572808465038634, 50.373618069518272 ], [ 6.578544548791854, 50.375013333498543 ], [ 6.585572543737896, 50.377390449409688 ], [ 6.590533481135253, 50.376899522095243 ], [ 6.598905064117389, 50.375194199752514 ], [ 6.616268345008109, 50.369483954420957 ], [ 6.62262454638568, 50.366150825000545 ], [ 6.624794955822551, 50.362507636318355 ], [ 6.622779575117306, 50.359484565260459 ], [ 6.619523960062679, 50.355608832581538 ], [ 6.618283725713354, 50.352921658307878 ], [ 6.619523960062679, 50.350932115124976 ], [ 6.625105015084387, 50.350311998400002 ], [ 6.635491977872448, 50.350311998400002 ], [ 6.649806349283608, 50.354652818173008 ], [ 6.656937697017099, 50.359148668476223 ], [ 6.66329389839467, 50.362094225168335 ], [ 6.671200391584819, 50.362352606687409 ], [ 6.681897413634715, 50.357934272548619 ], [ 6.689028761368206, 50.353929347761152 ], [ 6.7016378113359, 50.3436974155033 ], [ 6.718225945870699, 50.34157868111123 ], [ 6.770367466285506, 50.352637438367083 ], [ 6.795017123641344, 50.355608832581538 ], [ 6.79765262197094, 50.356694037299974 ], [ 6.79997806193802, 50.359484565260459 ], [ 6.801218296287345, 50.36336029704006 ], [ 6.799512973944559, 50.369638984051846 ], [ 6.798117709964345, 50.372842923162352 ], [ 6.795482211634749, 50.376253566948549 ], [ 6.786335483195955, 50.385400296286605 ], [ 6.783699984866416, 50.388810940072801 ], [ 6.781374545798656, 50.393074246379342 ], [ 6.77935916509341, 50.400489814053628 ], [ 6.778118930744029, 50.409894924910816 ], [ 6.778273960374975, 50.421392930839033 ], [ 6.777653842750624, 50.423950913903525 ], [ 6.77625857877041, 50.426224677027221 ], [ 6.773313022078298, 50.428136704944961 ], [ 6.770057407023728, 50.429686998556122 ], [ 6.756879917174444, 50.433562731235043 ], [ 6.754089390113279, 50.435009671159378 ], [ 6.752539097401439, 50.436818346289613 ], [ 6.753004185394843, 50.440487372494204 ], [ 6.755329623563284, 50.44544830989156 ], [ 6.760910678584935, 50.454233303124397 ], [ 6.761840854571744, 50.460150254930284 ], [ 6.761530796209286, 50.464413561236825 ], [ 6.760290561859904, 50.467333279507216 ], [ 6.759825473866499, 50.469193631480891 ], [ 6.760135532229015, 50.470666408927627 ], [ 6.776568638032188, 50.476867581573629 ], [ 6.814602491711639, 50.486376044318945 ], [ 6.820648633827375, 50.486014309113045 ], [ 6.822198927438535, 50.482758694058475 ], [ 6.828090040822701, 50.475162258331522 ], [ 6.834136182938494, 50.469219469003292 ], [ 6.836306593274628, 50.467720852235516 ], [ 6.840182325953549, 50.46549876595526 ], [ 6.846228468069341, 50.462914944469105 ], [ 6.852894727809428, 50.461416327701329 ], [ 6.85971601718046, 50.46069285728953 ], [ 6.863643425803446, 50.46069285728953 ], [ 6.873565300598159, 50.462191474057249 ], [ 6.88069664923097, 50.467720852235516 ], [ 6.887827996065141, 50.476660875099299 ], [ 6.890153436032222, 50.496582139953773 ], [ 6.889223260045412, 50.50596141238924 ], [ 6.887672967333572, 50.512731024916832 ], [ 6.886122673722411, 50.517020168745773 ], [ 6.885192497735545, 50.52177440056812 ], [ 6.887672967333572, 50.523815619695085 ], [ 6.889533319307247, 50.524926662835185 ], [ 6.913252800676219, 50.529422512239137 ], [ 6.928497348973451, 50.541101386219964 ], [ 6.934698520720133, 50.548827013156085 ], [ 6.936403843062919, 50.551591701795587 ], [ 6.937644077412244, 50.553141995406747 ], [ 6.939349398855654, 50.554769802484373 ], [ 6.944775425145735, 50.556320095196213 ], [ 6.953612095222013, 50.558051255960663 ], [ 6.971285435374512, 50.559653225515945 ], [ 6.998932326265844, 50.566603705196826 ], [ 7.051848993036572, 50.590349025886837 ], [ 7.061615838200339, 50.592932848272312 ], [ 7.074328240955538, 50.592054348229567 ], [ 7.090502964340317, 50.5865249700513 ], [ 7.093603549763998, 50.586163234845401 ], [ 7.098719516792244, 50.586809189992096 ], [ 7.105230746901441, 50.589108792436775 ], [ 7.110036654667852, 50.594224758565701 ], [ 7.112982212259283, 50.598255519976249 ], [ 7.115307651327043, 50.602492987861069 ], [ 7.118098179287529, 50.603939927785405 ], [ 7.12181888233556, 50.604198310203799 ], [ 7.14372968857424, 50.598978990388048 ], [ 7.154581740255082, 50.601123562302519 ], [ 7.178611280885889, 50.617375800053082 ], [ 7.18574262861938, 50.619003608030084 ], [ 7.194114210702253, 50.631121731582596 ], [ 7.195354445051578, 50.633550523437862 ], [ 7.196904737763418, 50.636315212976683 ], [ 7.19907514809961, 50.637529608904288 ], [ 7.202382439997621, 50.637736314479298 ], [ 7.208583611744302, 50.636470241708253 ], [ 7.215714958578474, 50.633912257744498 ], [ 7.217730340183039, 50.632697861816837 ], [ 7.218815544901474, 50.631767686729347 ], [ 7.220520868143524, 50.629726466703062 ], [ 7.221761101593529, 50.62755605726619 ], [ 7.222846307211285, 50.624326279734021 ], [ 7.224241571191556, 50.622491767081385 ], [ 7.226256951896801, 50.621406562362949 ], [ 7.282584263353044, 50.618822739977418 ], [ 7.293901401228652, 50.619804591908348 ], [ 7.340461866621808, 50.62889964530234 ], [ 7.344492628931675, 50.630088202808281 ], [ 7.371519403097977, 50.64259389908915 ], [ 7.373069695809818, 50.644454251062825 ], [ 7.373844842165738, 50.647296454068055 ], [ 7.373379754172277, 50.653394273027232 ], [ 7.374619989420978, 50.657450872859442 ], [ 7.376945427589419, 50.66186920789761 ], [ 7.383456658597879, 50.668380438906127 ], [ 7.383921745692021, 50.673160509150136 ], [ 7.383766716960395, 50.677113756194842 ], [ 7.382991570604474, 50.680808620821153 ], [ 7.38314660023542, 50.68383169187905 ], [ 7.384541864215635, 50.691531481292827 ], [ 7.384386833685426, 50.693805244416467 ], [ 7.382836540973585, 50.695743109856608 ], [ 7.38082116116766, 50.697215888202663 ], [ 7.38004601391242, 50.698843696179608 ], [ 7.386867303283395, 50.703649603946019 ], [ 7.411051872645771, 50.708197130193355 ], [ 7.4486206401304, 50.706155911066389 ], [ 7.532388136003647, 50.720987047314338 ], [ 7.56329064284887, 50.732769273183408 ], [ 7.571817253663312, 50.734991360362983 ], [ 7.577088250322504, 50.735663153931398 ], [ 7.58142907099483, 50.735714829875462 ], [ 7.599464146353284, 50.733441066751823 ], [ 7.603184849401259, 50.735094713150488 ], [ 7.606130405194051, 50.738091945786664 ], [ 7.610471225866377, 50.745843411144506 ], [ 7.613416781659112, 50.749409085460911 ], [ 7.617912631962383, 50.752302965309582 ], [ 7.627214390032066, 50.755636094729937 ], [ 7.659202100696405, 50.763310044822674 ], [ 7.662147658287779, 50.764498603227935 ], [ 7.66509321497989, 50.766849880717416 ], [ 7.674084913787738, 50.777211005083814 ], [ 7.677495557573934, 50.779174709844938 ], [ 7.679820998440334, 50.779743149726528 ], [ 7.680906203158713, 50.778761297795654 ], [ 7.682766554233069, 50.776849269877857 ], [ 7.68431684694491, 50.775815742002862 ], [ 7.68664228691199, 50.774937241960117 ], [ 7.689587842704782, 50.774730536385107 ], [ 7.692068312302752, 50.775066433169343 ], [ 7.694083693007997, 50.775712389215357 ], [ 7.696099073713242, 50.777055976352187 ], [ 7.697184279330997, 50.778528753798923 ], [ 7.698889600774464, 50.781629340121924 ], [ 7.699354688767869, 50.784419868082409 ], [ 7.699509718398758, 50.787649644715316 ], [ 7.698734572042838, 50.791912950122537 ], [ 7.693928664276427, 50.798036607503434 ], [ 7.675635207398898, 50.809973863003336 ], [ 7.712893913823052, 50.824417426522984 ], [ 7.718629997576329, 50.82780223188746 ], [ 7.734287957023582, 50.839997869805813 ], [ 7.738163689702503, 50.841599840260415 ], [ 7.740644159300473, 50.841961575466314 ], [ 7.763330111895129, 50.836380520444663 ], [ 7.765345492600375, 50.836225490813717 ], [ 7.767670932567455, 50.836483873232112 ], [ 7.770306430897051, 50.839351915558439 ], [ 7.771236605984541, 50.843976956171559 ], [ 7.770461459628621, 50.854880682897146 ], [ 7.768291050191806, 50.859531561931988 ], [ 7.765965610224725, 50.862683824199109 ], [ 7.762865023901725, 50.864492499329344 ], [ 7.760849644095799, 50.867127996759621 ], [ 7.759247673641198, 50.870461127079352 ], [ 7.757852410560304, 50.875344550110867 ], [ 7.754131706612952, 50.900045885209408 ], [ 7.755682000224112, 50.90660879216199 ], [ 7.757542352197788, 50.911311347140952 ], [ 7.788599887774581, 50.930276598486216 ], [ 7.801622348892295, 50.932705390341482 ], [ 7.859654981791948, 50.922473456284933 ], [ 7.856399366737378, 50.908210760817951 ], [ 7.852058546964372, 50.899167385166663 ], [ 7.849268019003887, 50.895033270968668 ], [ 7.846942579936126, 50.890563259087116 ], [ 7.84523725759334, 50.885111396173954 ], [ 7.844617139969046, 50.881959133906889 ], [ 7.846167432680886, 50.878858548483208 ], [ 7.849888135728861, 50.876171373310228 ], [ 7.859189893798543, 50.872657375837207 ], [ 7.885596551239814, 50.86692129208393 ], [ 7.893503045329282, 50.862554632989884 ], [ 7.92388878733766, 50.841134752266953 ], [ 7.934482455700731, 50.835243638882787 ], [ 7.942543980320409, 50.832039699772281 ], [ 7.946574740831636, 50.832091375716402 ], [ 7.949210239161175, 50.832530626187406 ], [ 7.962077670647943, 50.836897285281452 ], [ 7.964868197709166, 50.837414049218978 ], [ 7.967658725669651, 50.837465725163042 ], [ 7.970294223999247, 50.837026476490678 ], [ 7.973394810322247, 50.833176581334158 ], [ 7.976650425376818, 50.826975410486796 ], [ 7.982231480398468, 50.810568142205966 ], [ 7.983936801841935, 50.802997544900734 ], [ 7.983781773110309, 50.794522610030413 ], [ 7.981301304411659, 50.78503998480744 ], [ 7.980526157156419, 50.777934475495613 ], [ 7.98114627388145, 50.773541978879223 ], [ 7.991429883882006, 50.760984605754913 ], [ 8.033752883188981, 50.725999661555136 ], [ 8.050392693667845, 50.70734446947165 ], [ 8.052408075272467, 50.703985500730255 ], [ 8.054578484709282, 50.698611152182878 ], [ 8.056283807052068, 50.690911362769157 ], [ 8.059229363744123, 50.689051011694801 ], [ 8.064500360403315, 50.689516099688205 ], [ 8.089460077020931, 50.696802477052643 ], [ 8.095506219136666, 50.697138372937559 ], [ 8.106720005124146, 50.695045477866472 ], [ 8.134470248802927, 50.68403839835338 ], [ 8.130439487392437, 50.667398586975196 ], [ 8.126563754713516, 50.661145738385073 ], [ 8.12222293494051, 50.655616360206807 ], [ 8.120672642228669, 50.652644965093032 ], [ 8.120052523704999, 50.649880276453587 ], [ 8.121602817316159, 50.645797838199655 ], [ 8.135400424789736, 50.626677558122765 ], [ 8.140516391818039, 50.617530828784709 ], [ 8.143927035604179, 50.602648017492015 ], [ 8.14780276918242, 50.597066962470308 ], [ 8.150593296243642, 50.593811347415738 ], [ 8.159636671894873, 50.590814113880242 ], [ 8.160876906244198, 50.588359482703936 ], [ 8.163822462936309, 50.585801500538821 ], [ 8.154210645604792, 50.569471747523096 ], [ 8.138656039844363, 50.543426826187044 ], [ 8.137260775864092, 50.541566474213369 ], [ 8.134780308064762, 50.539060167092998 ], [ 8.130439487392437, 50.536295478453553 ], [ 8.114626499213557, 50.528776557092385 ], [ 8.110130648910285, 50.52714874911544 ], [ 8.10718509311755, 50.526528632390466 ], [ 8.103619418801145, 50.526528632390466 ], [ 8.093335808800532, 50.527510484321397 ], [ 8.090235223376851, 50.528621528360816 ], [ 8.087444696315686, 50.530171821072656 ], [ 8.070391472888161, 50.544357001274591 ], [ 8.066980828202645, 50.545907293986374 ], [ 8.062640008429639, 50.546475734767341 ], [ 8.052873162366552, 50.54601064677388 ], [ 8.041556023591625, 50.544460354062039 ], [ 8.035923292625853, 50.541566474213369 ], [ 8.030962355228496, 50.537794094321953 ], [ 8.02104048043384, 50.528440660308206 ], [ 8.015149367049617, 50.524590766051006 ], [ 8.00925825366545, 50.522032782986514 ], [ 8.00445234499972, 50.520740871793748 ], [ 8.002747022656933, 50.516477566386527 ], [ 8.000266553958284, 50.50882945381619 ], [ 7.997941114890523, 50.475834051899938 ], [ 7.998251174152358, 50.474283759188097 ], [ 7.998406202883928, 50.472165024796027 ], [ 7.999336378870794, 50.465912177105281 ], [ 8.000421583589173, 50.464103501974989 ], [ 8.002281934663529, 50.462449856475644 ], [ 8.005072462624014, 50.460770372554634 ], [ 8.008328077678641, 50.459220078943474 ], [ 8.017629835748323, 50.455990302310568 ], [ 8.019180129359484, 50.454905096692812 ], [ 8.018249953372617, 50.453044744719193 ], [ 8.015459425412132, 50.450202541713907 ], [ 8.000421583589173, 50.440332342863314 ], [ 7.996235793447113, 50.432167467254772 ], [ 7.992515090399081, 50.421315416473249 ], [ 7.987554152102405, 50.411858628772677 ], [ 7.975100131765657, 50.40514069308847 ], [ 7.973394810322247, 50.400257270056954 ], [ 7.975565219759062, 50.398371080560878 ], [ 7.980061069163014, 50.395787258175403 ], [ 8.022280714783165, 50.389120999334637 ], [ 8.025691358569304, 50.388268337713612 ], [ 8.028636916160735, 50.38627879543003 ], [ 8.028946973623931, 50.38224803312022 ], [ 8.030032179241687, 50.378889065278088 ], [ 8.032047559946932, 50.376718654941953 ], [ 8.049462517681036, 50.371292630450512 ], [ 8.054578484709282, 50.366021632892 ], [ 8.073181999949327, 50.338581448475054 ], [ 8.080003289320359, 50.330313219179686 ], [ 8.089460077020931, 50.323672796962001 ], [ 8.098658481403788, 50.320546373116599 ], [ 8.100673862109034, 50.319461168398163 ], [ 8.10734012184912, 50.311089586315347 ], [ 8.118812290254994, 50.285716458547711 ], [ 8.121912875678674, 50.280652167463529 ], [ 8.122688022933914, 50.277913316346428 ], [ 8.122688022933914, 50.274399318873463 ], [ 8.122067905309564, 50.271660467756362 ], [ 8.120517611698403, 50.268921617538581 ], [ 8.117572055905669, 50.26716461925173 ], [ 8.112301060145796, 50.26468415055308 ], [ 8.096126335861697, 50.262048652223484 ], [ 8.045741814633004, 50.26334056341625 ], [ 8.041711053222514, 50.261841945749154 ], [ 8.038248731693614, 50.258844713112978 ], [ 8.034217970283066, 50.251713365379487 ], [ 8.033442823927146, 50.248225206328186 ], [ 8.033597852658772, 50.245718899207816 ], [ 8.042641229209323, 50.238432521843379 ], [ 8.04357140519619, 50.236417141138134 ], [ 8.042021111585029, 50.233833320551298 ], [ 8.030497267235091, 50.22269704892966 ], [ 8.027086623448895, 50.217968655528978 ], [ 8.023055861139085, 50.215875759558628 ], [ 8.015924513405537, 50.216185817921144 ], [ 8.011273634370696, 50.217968655528978 ], [ 8.007397901691775, 50.220139064965849 ], [ 8.0036771986438, 50.223317166553954 ], [ 7.998251174152358, 50.226908678392761 ], [ 7.995615674923442, 50.227993883111196 ], [ 7.993290235855682, 50.228355618317096 ], [ 7.990809767157032, 50.22727041269934 ], [ 7.986623976115595, 50.224867459265795 ], [ 7.980371128424849, 50.21941559545337 ], [ 7.952930942209207, 50.211173204579723 ], [ 7.939443393997408, 50.204997870355385 ], [ 7.922183464994873, 50.200088608902149 ], [ 7.916447381241653, 50.195928657181753 ], [ 7.910091179864025, 50.188952338179831 ], [ 7.898153924364124, 50.171330674870717 ], [ 7.895983514027932, 50.16231313674183 ], [ 7.896758661283172, 50.155026760276712 ], [ 7.900324333800938, 50.151667792434637 ], [ 7.904200067379179, 50.148670558899141 ], [ 7.90730065280286, 50.146861883768906 ], [ 7.926059197673794, 50.139988919353129 ], [ 7.928746371947511, 50.138490301686033 ], [ 7.930451694290241, 50.136345729771563 ], [ 7.930606723921187, 50.134407864331422 ], [ 7.92983157666589, 50.131617337270256 ], [ 7.924973992955415, 50.122367255144695 ], [ 7.923423700243575, 50.118155626580858 ], [ 7.922803581719904, 50.115235908310467 ], [ 7.922493524256708, 50.111670233994062 ], [ 7.921718377001469, 50.108802192567111 ], [ 7.919392937933708, 50.107872016580302 ], [ 7.913036736556137, 50.109732368553921 ], [ 7.909316034407425, 50.111670233994062 ], [ 7.905285272097615, 50.114228217058553 ], [ 7.899859245807534, 50.118749904884169 ], [ 7.896293573289768, 50.12071360874603 ], [ 7.892572870241736, 50.120971992063744 ], [ 7.88668175595825, 50.120171007286103 ], [ 7.878310173875434, 50.118155626580858 ], [ 7.872884149383992, 50.117871405740743 ], [ 7.867561475881416, 50.118439846521653 ], [ 7.863840772833385, 50.11957672808353 ], [ 7.859189893798543, 50.118698228940104 ], [ 7.854539014763702, 50.115778509770394 ], [ 7.846942579936126, 50.106760973440146 ], [ 7.84430708160653, 50.101800035143469 ], [ 7.843221876888094, 50.097149156108628 ], [ 7.84275678889469, 50.088209133244902 ], [ 7.838881056215769, 50.084359238987645 ], [ 7.828494093427651, 50.078855699231099 ], [ 7.810769077331031, 50.073171292321263 ], [ 7.771391635615487, 50.053482571463462 ], [ 7.775112338663462, 50.051079617130597 ], [ 7.785034214357495, 50.048521633166786 ], [ 7.849836459784797, 50.010746161006523 ], [ 7.857277865880803, 50.00258128539798 ], [ 7.860275099416299, 49.990023912273728 ], [ 7.878155145143808, 49.972944851323803 ], [ 7.918566114734404, 49.973875027310612 ], [ 7.961922641916374, 49.98309927011519 ], [ 8.009723341658855, 49.99932567034341 ], [ 8.048532341694226, 50.018368435155139 ], [ 8.173796013675087, 50.045782782949061 ], [ 8.200719435053884, 50.04629954688653 ], [ 8.213018425759742, 50.044439194912911 ], [ 8.228107944426085, 50.038186347222108 ], [ 8.335439893835996, 49.959638170265293 ], [ 8.355128614693797, 49.925635077996446 ], [ 8.340090772870838, 49.891011868103192 ], [ 8.347583855810285, 49.878532009344724 ], [ 8.370476514879272, 49.856595363785004 ], [ 8.380450067416689, 49.84259105073636 ], [ 8.384222446408785, 49.832307440735804 ], [ 8.386341179901535, 49.823832505865425 ], [ 8.389803501430436, 49.815305895050983 ], [ 8.408665399088875, 49.792671617501128 ], [ 8.413729689273737, 49.784713447467595 ], [ 8.415796745923046, 49.777737128465674 ], [ 8.42380659280002, 49.767298488834172 ], [ 8.442203403364374, 49.768047796768371 ], [ 8.462512240947149, 49.771070868725587 ], [ 8.476619906783242, 49.767505195308502 ], [ 8.473829379722076, 49.75745412930462 ], [ 8.460806918604419, 49.743785712140891 ], [ 8.439102817041373, 49.726525784037676 ], [ 8.4064433119093, 49.722417508261344 ], [ 8.379209832167987, 49.710402737496338 ], [ 8.362259963326608, 49.690920722213548 ], [ 8.360554640084558, 49.664462388828156 ], [ 8.375437453175891, 49.641104640866445 ], [ 8.400035434587608, 49.610408841394872 ], [ 8.416830274697418, 49.579454657706265 ], [ 8.40835533982704, 49.555218411500448 ], [ 8.427734002322325, 49.534237779449938 ], [ 8.450161574297226, 49.491242988373187 ], [ 8.463597445665584, 49.472691148177944 ], [ 8.463597445665584, 49.465844021284511 ], [ 8.44251346172689, 49.458996894391134 ], [ 8.44251346172689, 49.452175605020102 ], [ 8.459566685154357, 49.447783108403712 ], [ 8.477808465188502, 49.446387844423441 ], [ 8.493879835785776, 49.442615465431345 ], [ 8.50457685693641, 49.431091620182087 ], [ 8.501476270613409, 49.429179592264347 ], [ 8.492019483812101, 49.413211575353898 ], [ 8.490314162368691, 49.411222032170997 ], [ 8.491140984668675, 49.403082994084912 ], [ 8.497652214777872, 49.386494859550112 ], [ 8.497755567565378, 49.376469631967893 ], [ 8.461840448278053, 49.323475449932062 ], [ 8.459876742617553, 49.315026354382724 ], [ 8.483441196154274, 49.309548652148578 ], [ 8.479875522737188, 49.296991279024269 ], [ 8.410835809425066, 49.243661201103521 ], [ 8.398123406669868, 49.239294542009475 ], [ 8.387323031832466, 49.231982327122694 ], [ 8.380656772991642, 49.214851590228704 ], [ 8.361588168858873, 49.119611925050265 ], [ 8.357143996298362, 49.109560859046383 ], [ 8.283608432683025, 49.009954536572593 ], [ 8.262576124688394, 48.988457140584558 ], [ 8.230226677918836, 48.965538642194531 ], [ 8.199891545000099, 48.958250331000031 ], [ 8.200305216000032, 48.958563131000048 ], [ 8.188729695000092, 48.965746155000019 ], [ 8.090441121000083, 48.979182028000068 ], [ 7.931897827000114, 49.034837546000077 ], [ 7.913811075000098, 49.036181133000056 ], [ 7.856863647000125, 49.032253723000068 ], [ 7.773664591000113, 49.04811838799999 ], [ 7.762605835000102, 49.04615468300004 ], [ 7.739144735000139, 49.037731425000075 ], [ 7.726949096000112, 49.035664368000099 ], [ 7.717337281000113, 49.036594544000067 ], [ 7.696149943000052, 49.041555481 ], [ 7.685091187000069, 49.042795716000043 ], [ 7.672482137000117, 49.041038717000063 ], [ 7.660803264000066, 49.037731425000075 ], [ 7.648814331000096, 49.035716045000115 ], [ 7.644932350047895, 49.036295448176361 ], [ 7.634965047000037, 49.037783101000073 ], [ 7.625663289000101, 49.043002421 ], [ 7.61594812000007, 49.055973206000019 ], [ 7.608610066000068, 49.061967672000051 ], [ 7.586389201000117, 49.069564107000119 ], [ 7.542670939000061, 49.07457672200006 ], [ 7.52086348500012, 49.083671774000052 ], [ 7.507737671000058, 49.094575501000108 ], [ 7.485103394000106, 49.11870839500007 ], [ 7.471047404000103, 49.128320212000077 ], [ 7.472804403000083, 49.131627503000075 ], [ 7.475284871000042, 49.13390126600008 ], [ 7.482726278000058, 49.137053528000038 ], [ 7.476111694000082, 49.15152292900008 ], [ 7.458024942000065, 49.155863750000051 ], [ 7.414823446000128, 49.157775778000072 ], [ 7.410482625000043, 49.168937887000098 ], [ 7.39105228700015, 49.170023092000108 ], [ 7.371633808553383, 49.166173614420757 ], [ 7.371261020679526, 49.166611640015162 ], [ 7.369193963130897, 49.169040431870428 ], [ 7.349143507966517, 49.168678697563792 ], [ 7.330229932565317, 49.179401557136146 ], [ 7.294676547584572, 49.205162258531402 ], [ 7.293901401228652, 49.207255154501752 ], [ 7.292351107617492, 49.216996161243799 ], [ 7.290335727811566, 49.222783921840517 ], [ 7.28692508312605, 49.230793768717433 ], [ 7.286615023864272, 49.235548001439099 ], [ 7.288165316576112, 49.24019888047394 ], [ 7.294211459591168, 49.248415432026547 ], [ 7.295761753202328, 49.250198268735062 ], [ 7.296536898658928, 49.250482490474553 ], [ 7.300102572975334, 49.250947578467958 ], [ 7.302428012942414, 49.250792547937692 ], [ 7.303978305654255, 49.250534166418618 ], [ 7.304908480741801, 49.250327459944288 ], [ 7.305838656728611, 49.250172431212718 ], [ 7.307388950339771, 49.250069078425213 ], [ 7.311936475687787, 49.250430812731793 ], [ 7.314571974017383, 49.251102607199527 ], [ 7.316742384353518, 49.251929430398889 ], [ 7.318602736327193, 49.252988796695604 ], [ 7.320618117032438, 49.254513250985724 ], [ 7.323253615362034, 49.256735338165299 ], [ 7.329919875102121, 49.264176744261306 ], [ 7.333330518888317, 49.271824855932323 ], [ 7.334725782868588, 49.279214586084265 ], [ 7.335810987586967, 49.282986965975681 ], [ 7.337361281198184, 49.286087551399362 ], [ 7.339996778628404, 49.288826402516463 ], [ 7.342787305689569, 49.290996812852597 ], [ 7.349608595060602, 49.294717515900629 ], [ 7.352709181383602, 49.297714749436125 ], [ 7.354259474095443, 49.301797186790736 ], [ 7.356739942794093, 49.312726751938044 ], [ 7.358445265136879, 49.315672309529418 ], [ 7.36309614417172, 49.318979601427429 ], [ 7.374619989420978, 49.324638169915602 ], [ 7.378805779563038, 49.327428696976767 ], [ 7.38252648261107, 49.330839342561603 ], [ 7.3873323912768, 49.336833807833955 ], [ 7.387952508001831, 49.34039948215036 ], [ 7.386867303283395, 49.343861802779941 ], [ 7.383456658597879, 49.348150947508202 ], [ 7.384231804953799, 49.351664944081904 ], [ 7.38485192167883, 49.353835354418038 ], [ 7.390588006331427, 49.360708319733135 ], [ 7.385161980940666, 49.369674181018638 ], [ 7.375395134877579, 49.373369046544212 ], [ 7.351158887772442, 49.37931183497318 ], [ 7.301187777693769, 49.384841214050766 ], [ 7.291420933429322, 49.388820299517192 ], [ 7.293436314134567, 49.391455796947469 ], [ 7.294521518853003, 49.392541002565167 ], [ 7.294986605947088, 49.393419500809273 ], [ 7.295761753202328, 49.394246324008634 ], [ 7.293436314134567, 49.398587145580279 ], [ 7.276383090707043, 49.412126369736143 ], [ 7.252301873232852, 49.430988268293902 ], [ 7.24610070238549, 49.446129462005047 ], [ 7.250906610151901, 49.450987047514218 ], [ 7.254782341931502, 49.451658841082633 ], [ 7.2597949561723, 49.454501044087863 ], [ 7.279173617768208, 49.470779120260147 ], [ 7.287545199851081, 49.475481676138429 ], [ 7.295141635578034, 49.47878896713712 ], [ 7.305373568735206, 49.48204458309101 ], [ 7.308474155058207, 49.485403550933086 ], [ 7.309094271783181, 49.490261135542937 ], [ 7.308164096695691, 49.497263292067259 ], [ 7.307233920708882, 49.500441392756045 ], [ 7.305838656728611, 49.502508450304731 ], [ 7.303823276023365, 49.50323191981721 ], [ 7.299792514612875, 49.503955390229066 ], [ 7.295761753202328, 49.504265449490902 ], [ 7.293591342866193, 49.507107652496131 ], [ 7.292351107617492, 49.511913561161919 ], [ 7.292351107617492, 49.52519440379865 ], [ 7.290955845435917, 49.534341132237444 ], [ 7.279483677030044, 49.548913886066941 ], [ 7.273437534014988, 49.561677964766261 ], [ 7.273282505283362, 49.576715807488483 ], [ 7.270647006953823, 49.577801012206919 ], [ 7.267546420630822, 49.578498644197055 ], [ 7.261810336877545, 49.575992337076684 ], [ 7.255919224392699, 49.572323309972774 ], [ 7.247185907103926, 49.568344225405667 ], [ 7.237884149034244, 49.566173814170156 ], [ 7.21912560416331, 49.56353831584056 ], [ 7.208428582113356, 49.564365139039921 ], [ 7.202227411265994, 49.565450343758357 ], [ 7.199591912037079, 49.567310695731976 ], [ 7.196594679400903, 49.570049546849077 ], [ 7.159542676753119, 49.587102770276601 ], [ 7.137941928876899, 49.600900376850859 ], [ 7.132825961848653, 49.602011419991015 ], [ 7.072002800988457, 49.603535875180455 ], [ 7.065181511617482, 49.604931139160726 ], [ 7.060220575119445, 49.607514959747562 ], [ 6.998777296634898, 49.629477443729002 ], [ 6.97862348778375, 49.619581407356065 ], [ 6.971130404844303, 49.61867706979092 ], [ 6.962138706036455, 49.623586331244155 ], [ 6.948806186556226, 49.627462063023756 ], [ 6.942139926816139, 49.627927151017161 ], [ 6.936403843062919, 49.627152005560561 ], [ 6.85971601718046, 49.594492499529224 ], [ 6.712334831587214, 49.550309150047212 ], [ 6.697296990663574, 49.548087062867637 ], [ 6.693524610772158, 49.547932034136068 ], [ 6.669805129403187, 49.549378974060403 ], [ 6.605106234964751, 49.530207018039448 ], [ 6.489971144252877, 49.533824368299918 ], [ 6.356490919820089, 49.525917874210506 ], [ 6.348808550000058, 49.525289755000117 ], [ 6.350754028000097, 49.534910381000046 ], [ 6.350754028000097, 49.566588034000048 ], [ 6.356438435000143, 49.577595113000044 ], [ 6.371527954000044, 49.592994690000026 ], [ 6.397572876000112, 49.613871969000101 ], [ 6.407701457000087, 49.627411194000089 ], [ 6.415246216000128, 49.634645894000059 ], [ 6.417933390000144, 49.63914174500006 ], [ 6.417003215000108, 49.645756327000058 ], [ 6.410905396000146, 49.64963206000003 ], [ 6.404497518000113, 49.65247426399999 ], [ 6.402740519000133, 49.65578155499999 ], [ 6.418243449000045, 49.669889222000037 ], [ 6.49172733600011, 49.700791728000027 ], [ 6.489763631000073, 49.702962138000018 ], [ 6.482942342000115, 49.708078105000098 ], [ 6.486352986000043, 49.712935690000037 ], [ 6.49100386500001, 49.71443430600003 ], [ 6.499685506000077, 49.712212219000023 ], [ 6.492554158000132, 49.718413391000112 ], [ 6.487799926000122, 49.725596416000073 ], [ 6.485526163000117, 49.733761292000068 ], [ 6.486249634000018, 49.742701315000019 ], [ 6.495964803000049, 49.748230693000025 ], [ 6.49637821400006, 49.752106425000065 ], [ 6.493691040000044, 49.756550598000061 ], [ 6.493794392000069, 49.763630268999989 ], [ 6.498548624000051, 49.785386048000092 ], [ 6.499995564000045, 49.786057841000073 ], [ 6.500098918000077, 49.794481100000084 ], [ 6.502269327000079, 49.795876363000062 ], [ 6.502579387000139, 49.795669658000108 ], [ 6.4972050370001, 49.799442038000038 ], [ 6.493277629000119, 49.799597066000061 ], [ 6.462478475000069, 49.805488180000069 ], [ 6.414522746000046, 49.805488180000069 ], [ 6.397056111000097, 49.808588766000113 ], [ 6.380106242000068, 49.815565084000113 ], [ 6.351374145000079, 49.833290100000013 ], [ 6.33442427500006, 49.8402147420001 ], [ 6.325639282000083, 49.840369772000045 ], [ 6.310653116000111, 49.834478659000055 ], [ 6.30259159400012, 49.834943747000082 ], [ 6.301558065000052, 49.838302714000079 ], [ 6.295567891944643, 49.848615691860687 ], [ 6.291532837000119, 49.855562643000084 ], [ 6.286778605000109, 49.861040345000063 ], [ 6.27220585200007, 49.867138164000025 ], [ 6.238306111000043, 49.876905009000083 ], [ 6.222699829000106, 49.887136943000044 ], [ 6.18983361800008, 49.938296611000041 ], [ 6.172677043000107, 49.956228333000027 ], [ 6.161928345000092, 49.942482402000095 ], [ 6.153970174000051, 49.951215719000075 ], [ 6.138777303000097, 49.979327698000091 ], [ 6.12151737500011, 49.996277568000025 ], [ 6.117176554000139, 50.004390768000107 ], [ 6.119967081000084, 50.015501200000031 ], [ 6.113765910000012, 50.03637848000001 ], [ 6.10725467900005, 50.044595032000032 ], [ 6.096402629000096, 50.048625794000131 ], [ 6.105704386000127, 50.060304668000086 ], [ 6.10942509000003, 50.063560283000086 ], [ 6.107151327000111, 50.06376698800004 ], [ 6.101156861000078, 50.063405254000045 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DE-SL", "NAME_1": "Saarland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.345307071000093, 49.455348652000097 ], [ 6.345379679000132, 49.462718404000029 ], [ 6.342279094000105, 49.493000794000054 ], [ 6.348808550000058, 49.525289755000117 ], [ 6.356490919820089, 49.525917874210506 ], [ 6.489971144252877, 49.533824368299918 ], [ 6.605106234964751, 49.530207018039448 ], [ 6.669805129403187, 49.549378974060403 ], [ 6.693524610772158, 49.547932034136068 ], [ 6.697296990663574, 49.548087062867637 ], [ 6.712334831587214, 49.550309150047212 ], [ 6.85971601718046, 49.594492499529224 ], [ 6.936403843062919, 49.627152005560561 ], [ 6.942139926816139, 49.627927151017161 ], [ 6.948806186556226, 49.627462063023756 ], [ 6.962138706036455, 49.623586331244155 ], [ 6.971130404844303, 49.61867706979092 ], [ 6.97862348778375, 49.619581407356065 ], [ 6.998777296634898, 49.629477443729002 ], [ 7.060220575119445, 49.607514959747562 ], [ 7.065181511617482, 49.604931139160726 ], [ 7.072002800988457, 49.603535875180455 ], [ 7.132825961848653, 49.602011419991015 ], [ 7.137941928876899, 49.600900376850859 ], [ 7.159542676753119, 49.587102770276601 ], [ 7.196594679400903, 49.570049546849077 ], [ 7.199591912037079, 49.567310695731976 ], [ 7.202227411265994, 49.565450343758357 ], [ 7.208428582113356, 49.564365139039921 ], [ 7.21912560416331, 49.56353831584056 ], [ 7.237884149034244, 49.566173814170156 ], [ 7.247185907103926, 49.568344225405667 ], [ 7.255919224392699, 49.572323309972774 ], [ 7.261810336877545, 49.575992337076684 ], [ 7.267546420630822, 49.578498644197055 ], [ 7.270647006953823, 49.577801012206919 ], [ 7.273282505283362, 49.576715807488483 ], [ 7.273437534014988, 49.561677964766261 ], [ 7.279483677030044, 49.548913886066941 ], [ 7.290955845435917, 49.534341132237444 ], [ 7.292351107617492, 49.52519440379865 ], [ 7.292351107617492, 49.511913561161919 ], [ 7.293591342866193, 49.507107652496131 ], [ 7.295761753202328, 49.504265449490902 ], [ 7.299792514612875, 49.503955390229066 ], [ 7.303823276023365, 49.50323191981721 ], [ 7.305838656728611, 49.502508450304731 ], [ 7.307233920708882, 49.500441392756045 ], [ 7.308164096695691, 49.497263292067259 ], [ 7.309094271783181, 49.490261135542937 ], [ 7.308474155058207, 49.485403550933086 ], [ 7.305373568735206, 49.48204458309101 ], [ 7.295141635578034, 49.47878896713712 ], [ 7.287545199851081, 49.475481676138429 ], [ 7.279173617768208, 49.470779120260147 ], [ 7.2597949561723, 49.454501044087863 ], [ 7.254782341931502, 49.451658841082633 ], [ 7.250906610151901, 49.450987047514218 ], [ 7.24610070238549, 49.446129462005047 ], [ 7.252301873232852, 49.430988268293902 ], [ 7.276383090707043, 49.412126369736143 ], [ 7.293436314134567, 49.398587145580279 ], [ 7.295761753202328, 49.394246324008634 ], [ 7.294986605947088, 49.393419500809273 ], [ 7.294521518853003, 49.392541002565167 ], [ 7.293436314134567, 49.391455796947469 ], [ 7.291420933429322, 49.388820299517192 ], [ 7.301187777693769, 49.384841214050766 ], [ 7.351158887772442, 49.37931183497318 ], [ 7.375395134877579, 49.373369046544212 ], [ 7.385161980940666, 49.369674181018638 ], [ 7.390588006331427, 49.360708319733135 ], [ 7.38485192167883, 49.353835354418038 ], [ 7.384231804953799, 49.351664944081904 ], [ 7.383456658597879, 49.348150947508202 ], [ 7.386867303283395, 49.343861802779941 ], [ 7.387952508001831, 49.34039948215036 ], [ 7.3873323912768, 49.336833807833955 ], [ 7.38252648261107, 49.330839342561603 ], [ 7.378805779563038, 49.327428696976767 ], [ 7.374619989420978, 49.324638169915602 ], [ 7.36309614417172, 49.318979601427429 ], [ 7.358445265136879, 49.315672309529418 ], [ 7.356739942794093, 49.312726751938044 ], [ 7.354259474095443, 49.301797186790736 ], [ 7.352709181383602, 49.297714749436125 ], [ 7.349608595060602, 49.294717515900629 ], [ 7.342787305689569, 49.290996812852597 ], [ 7.339996778628404, 49.288826402516463 ], [ 7.337361281198184, 49.286087551399362 ], [ 7.335810987586967, 49.282986965975681 ], [ 7.334725782868588, 49.279214586084265 ], [ 7.333330518888317, 49.271824855932323 ], [ 7.329919875102121, 49.264176744261306 ], [ 7.323253615362034, 49.256735338165299 ], [ 7.320618117032438, 49.254513250985724 ], [ 7.318602736327193, 49.252988796695604 ], [ 7.316742384353518, 49.251929430398889 ], [ 7.314571974017383, 49.251102607199527 ], [ 7.311936475687787, 49.250430812731793 ], [ 7.307388950339771, 49.250069078425213 ], [ 7.305838656728611, 49.250172431212718 ], [ 7.304908480741801, 49.250327459944288 ], [ 7.303978305654255, 49.250534166418618 ], [ 7.302428012942414, 49.250792547937692 ], [ 7.300102572975334, 49.250947578467958 ], [ 7.296536898658928, 49.250482490474553 ], [ 7.295761753202328, 49.250198268735062 ], [ 7.294211459591168, 49.248415432026547 ], [ 7.288165316576112, 49.24019888047394 ], [ 7.286615023864272, 49.235548001439099 ], [ 7.28692508312605, 49.230793768717433 ], [ 7.290335727811566, 49.222783921840517 ], [ 7.292351107617492, 49.216996161243799 ], [ 7.293901401228652, 49.207255154501752 ], [ 7.294676547584572, 49.205162258531402 ], [ 7.330229932565317, 49.179401557136146 ], [ 7.349143507966517, 49.168678697563792 ], [ 7.369193963130897, 49.169040431870428 ], [ 7.371261020679526, 49.166611640015162 ], [ 7.371633808553383, 49.166173614420757 ], [ 7.367591186000084, 49.165372213000055 ], [ 7.350951376000069, 49.159171042000068 ], [ 7.346300496000111, 49.154210104000114 ], [ 7.339065796000028, 49.139689026000056 ], [ 7.33400150600005, 49.13415964800005 ], [ 7.326456746000105, 49.131834208000029 ], [ 7.305992879000144, 49.130128887000055 ], [ 7.297104533000038, 49.12811350500003 ], [ 7.290800008000105, 49.123100892000068 ], [ 7.280258016000062, 49.108993226000038 ], [ 7.274366902000054, 49.105014140000051 ], [ 7.268062378000138, 49.105634257000119 ], [ 7.241190633000144, 49.113902486000072 ], [ 7.154994344000016, 49.114419251000086 ], [ 7.139284708000048, 49.117933248000057 ], [ 7.123575073000097, 49.123307597000021 ], [ 7.085334513000106, 49.141549378000079 ], [ 7.079856812000116, 49.142014465 ], [ 7.07076175900005, 49.136123353000087 ], [ 7.071588582000061, 49.130593974000092 ], [ 7.07479252100012, 49.125374655000073 ], [ 7.073242228000112, 49.120310364000019 ], [ 7.042546427000076, 49.107597962000042 ], [ 7.020532267000078, 49.11896677700004 ], [ 7.008956746000138, 49.146406963000075 ], [ 7.009473510000078, 49.181701965000073 ], [ 6.987872762000109, 49.182425436000088 ], [ 6.925447632000044, 49.205576477000065 ], [ 6.914388876000146, 49.206661683000064 ], [ 6.885243367000044, 49.20480133100007 ], [ 6.843488810000082, 49.211054180000062 ], [ 6.833463583000054, 49.209452210000038 ], [ 6.827675822000089, 49.195551250000037 ], [ 6.835220581000044, 49.179376526000041 ], [ 6.839044637000086, 49.162788392000053 ], [ 6.821784709000099, 49.147750550000055 ], [ 6.809072306000132, 49.145838522000034 ], [ 6.770108276000144, 49.15529530900001 ], [ 6.725563192000038, 49.155553691000065 ], [ 6.713780965000126, 49.158860982000064 ], [ 6.700965210000049, 49.172865296000069 ], [ 6.703755737000108, 49.185112610000019 ], [ 6.708820027000087, 49.197773336000054 ], [ 6.702515503000086, 49.213638001000064 ], [ 6.698484741000073, 49.213586324000048 ], [ 6.685048868000138, 49.207798564000072 ], [ 6.680604696000046, 49.207488505000086 ], [ 6.677917521000097, 49.211054180000062 ], [ 6.675953817000078, 49.218908997000099 ], [ 6.674816935000138, 49.22113108399999 ], [ 6.671612996000079, 49.225316875000047 ], [ 6.663758179000041, 49.243868713000083 ], [ 6.659520711000084, 49.24676259400006 ], [ 6.645671427000138, 49.250018209000032 ], [ 6.640297078000089, 49.252757060000093 ], [ 6.639160196000148, 49.25678782199999 ], [ 6.641227254000114, 49.266916403000025 ], [ 6.639676961000106, 49.27115387 ], [ 6.573169393000029, 49.313115133000096 ], [ 6.556426228000078, 49.326395976000086 ], [ 6.550121704000077, 49.338023173000053 ], [ 6.555599406000056, 49.347169902000033 ], [ 6.573376098000097, 49.347738343000103 ], [ 6.577716919000068, 49.355799866000083 ], [ 6.574306274000037, 49.361794332000031 ], [ 6.525730428000145, 49.395487366000069 ], [ 6.518805786000058, 49.402153626000072 ], [ 6.520769491000095, 49.4025670380001 ], [ 6.520562785000038, 49.408148092000019 ], [ 6.517875610000118, 49.416416321000057 ], [ 6.511674438000114, 49.424736226 ], [ 6.494517863000056, 49.435536601000038 ], [ 6.402740519000133, 49.465457255000089 ], [ 6.391681763000122, 49.466697490000016 ], [ 6.383516886000109, 49.46463043200005 ], [ 6.364499959000057, 49.456103821000042 ], [ 6.353854614000056, 49.454760234000062 ], [ 6.345307071000093, 49.455348652000097 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DE-SH", "NAME_1": "Schleswig-Holstein" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.824246459000079, 54.905900370000083 ], [ 8.904138224000064, 54.897942200000031 ], [ 8.982686401000109, 54.879338684000075 ], [ 9.194766480000055, 54.850399882000019 ], [ 9.211509644000103, 54.841821594000081 ], [ 9.216057169000123, 54.831744690000036 ], [ 9.219054403000143, 54.817792054000037 ], [ 9.226392456000042, 54.805906474000025 ], [ 9.244065796000143, 54.801772360000101 ], [ 9.317032918000052, 54.801617330000042 ], [ 9.332019084000137, 54.803219300000094 ], [ 9.341734253000084, 54.809058736000068 ], [ 9.35599694800004, 54.811332499000073 ], [ 9.366952352000112, 54.817016907000024 ], [ 9.385039103000054, 54.819394023000072 ], [ 9.405192911000114, 54.808386943000087 ], [ 9.422142781000019, 54.80725006100009 ], [ 9.436922241000048, 54.810143942000067 ], [ 9.437503027053964, 54.810411127382693 ], [ 9.451426629000082, 54.810370184000078 ], [ 9.510996941000087, 54.827826239000046 ], [ 9.529958530000044, 54.841498114000046 ], [ 9.55437259200005, 54.84711334800005 ], [ 9.566905144000089, 54.860174872000073 ], [ 9.579925977000073, 54.866278387000079 ], [ 9.583181186000047, 54.830267645000049 ], [ 9.631602410000085, 54.819891669000071 ], [ 9.69304446700005, 54.818019924000055 ], [ 9.734629754000082, 54.807318427000041 ], [ 9.752126498000052, 54.799627997000073 ], [ 9.778086785000085, 54.793158270000049 ], [ 9.801768425000091, 54.783392645000049 ], [ 9.81218509200005, 54.766058661000045 ], [ 9.823741082000083, 54.756740627000056 ], [ 9.849864129000082, 54.759344794000071 ], [ 9.895355665000068, 54.769476630000042 ], [ 9.891449415000068, 54.790269273000035 ], [ 9.915049675000091, 54.791205145000049 ], [ 9.947520379000082, 54.779527085000041 ], [ 9.97046959700009, 54.762640692000048 ], [ 9.98414147200009, 54.728501695000034 ], [ 9.990489129000082, 54.720526434000078 ], [ 9.999522332000083, 54.712958075000074 ], [ 10.018239780000044, 54.701239325000074 ], [ 10.005381707000083, 54.695502020000049 ], [ 9.992198113000086, 54.696478583000044 ], [ 9.97982832100007, 54.699774481000077 ], [ 9.97046959700009, 54.701239325000074 ], [ 9.971039259000065, 54.699042059000078 ], [ 9.946299675000091, 54.687648830000057 ], [ 9.94312584700009, 54.687567450000074 ], [ 9.936696811000047, 54.68500397300005 ], [ 9.932383660000085, 54.685248114000046 ], [ 9.929942254000082, 54.683091539000031 ], [ 9.92945397200009, 54.673895575000074 ], [ 9.944102410000085, 54.673325914000031 ], [ 9.970225457000083, 54.677923895000049 ], [ 9.996348504000082, 54.678778387000079 ], [ 10.01140384200005, 54.667059637000079 ], [ 10.022146030000044, 54.672430731000077 ], [ 10.033539259000065, 54.672919012000079 ], [ 10.039073113000086, 54.666815497000073 ], [ 10.031911655000044, 54.652777411000045 ], [ 10.036957227000073, 54.638902085000041 ], [ 10.037608269000089, 54.619086005000042 ], [ 10.031911655000044, 54.577704169000071 ], [ 10.026866082000083, 54.559963283000059 ], [ 10.020030144000089, 54.545843817000048 ], [ 10.010427280000044, 54.534328518000052 ], [ 9.99781334700009, 54.523667710000041 ], [ 9.965586785000085, 54.50617096600007 ], [ 9.925303582000083, 54.493109442000048 ], [ 9.882009311000047, 54.484849351000037 ], [ 9.840098504000082, 54.482123114000046 ], [ 9.840098504000082, 54.475287177000041 ], [ 9.883311394000089, 54.462103583000044 ], [ 10.12468509200005, 54.495754299000055 ], [ 10.143402540000068, 54.491848049000055 ], [ 10.203868035000085, 54.461004950000074 ], [ 10.183929884000065, 54.449367580000057 ], [ 10.183848504000082, 54.438421942000048 ], [ 10.191742384000065, 54.426174221000053 ], [ 10.19703209700009, 54.410101630000042 ], [ 10.191254102000073, 54.396714585000041 ], [ 10.17709394600007, 54.384263414000031 ], [ 10.159027540000068, 54.37531159100007 ], [ 10.141774936000047, 54.372259833000044 ], [ 10.144379102000073, 54.370021877000056 ], [ 10.14779707100007, 54.368312893000052 ], [ 10.148285352000073, 54.365179755000042 ], [ 10.141774936000047, 54.358587958000044 ], [ 10.152517123000052, 54.351792710000041 ], [ 10.155528191000087, 54.343410549000055 ], [ 10.151621941000087, 54.333970445000034 ], [ 10.141774936000047, 54.324408270000049 ], [ 10.16374759200005, 54.329169012000079 ], [ 10.180349155000044, 54.341131903000075 ], [ 10.203868035000085, 54.372259833000044 ], [ 10.217133009000065, 54.405422268000052 ], [ 10.22437584700009, 54.413804429000038 ], [ 10.234385613000086, 54.417710679000038 ], [ 10.272146030000044, 54.420070705000057 ], [ 10.285817905000044, 54.424750067000048 ], [ 10.292491082000083, 54.430161851000037 ], [ 10.297618035000085, 54.435736395000049 ], [ 10.306895379000082, 54.441107489000046 ], [ 10.318369988000086, 54.443304755000042 ], [ 10.360850457000083, 54.441107489000046 ], [ 10.382823113000086, 54.434759833000044 ], [ 10.443369988000086, 54.406398830000057 ], [ 10.601084832000083, 54.365423895000049 ], [ 10.690196160000085, 54.316229559000078 ], [ 10.731293165000068, 54.310207424000055 ], [ 10.77711022200009, 54.315130927000041 ], [ 10.810801629000082, 54.327378648000035 ], [ 10.867930535000085, 54.358587958000044 ], [ 10.900889519000089, 54.371039130000042 ], [ 10.93531334700009, 54.37954336100006 ], [ 11.018809441000087, 54.385891018000052 ], [ 11.018809441000087, 54.379095770000049 ], [ 11.000824415000068, 54.378566799000055 ], [ 10.975840691000087, 54.378404039000031 ], [ 10.993174675000091, 54.373846747000073 ], [ 11.010508660000085, 54.377183335000041 ], [ 11.033946160000085, 54.367621161000045 ], [ 11.104177280000044, 54.39288971600007 ], [ 11.135508660000085, 54.385891018000052 ], [ 11.098399285000085, 54.361517645000049 ], [ 11.087738477000073, 54.351752020000049 ], [ 11.08179772200009, 54.354641018000052 ], [ 11.066579623000052, 54.358587958000044 ], [ 11.077403191000087, 54.342230536000045 ], [ 11.086599155000044, 54.302435614000046 ], [ 11.094493035000085, 54.28351471600007 ], [ 11.087087436000047, 54.270900783000059 ], [ 11.087738477000073, 54.253892320000034 ], [ 11.094493035000085, 54.225083726000037 ], [ 11.090179884000065, 54.207993882000039 ], [ 11.080577019000089, 54.198879299000055 ], [ 11.070974155000044, 54.192572333000044 ], [ 11.066579623000052, 54.18390534100007 ], [ 10.950450066000087, 54.139471747000073 ], [ 10.910329623000052, 54.109198309000078 ], [ 10.892832879000082, 54.102525132000039 ], [ 10.852386915000068, 54.094305731000077 ], [ 10.844574415000068, 54.094468492000033 ], [ 10.836110873000052, 54.089992580000057 ], [ 10.829356316000087, 54.092840887000079 ], [ 10.822276238000086, 54.097357489000046 ], [ 10.813324415000068, 54.097886460000041 ], [ 10.805430535000085, 54.094875393000052 ], [ 10.801442905000044, 54.092230536000045 ], [ 10.762868686000047, 54.056830145000049 ], [ 10.752614780000044, 54.050116278000075 ], [ 10.752614780000044, 54.043890692000048 ], [ 10.765879754000082, 54.024359442000048 ], [ 10.780446811000047, 54.009955145000049 ], [ 10.799652540000068, 54.000555731000077 ], [ 10.826914910000085, 53.995428778000075 ], [ 10.865570509000065, 53.997788804000038 ], [ 10.875498894000089, 53.995428778000075 ], [ 10.88257897200009, 53.985052802000041 ], [ 10.883555535000085, 53.973130601000037 ], [ 10.887380405000044, 53.963934637000079 ], [ 10.90211022200009, 53.961371161000045 ], [ 10.90601647200009, 53.961208401000079 ], [ 10.904482049207218, 53.957326972062106 ], [ 10.904171990844702, 53.931282049826734 ], [ 10.907427605899272, 53.928388169978007 ], [ 10.910683220953842, 53.924667466930032 ], [ 10.915334099988684, 53.922858791799797 ], [ 10.918279656680795, 53.921308499087957 ], [ 10.92029503738604, 53.920533351832717 ], [ 10.960499302300946, 53.912936917005084 ], [ 10.961274447757546, 53.911903388230769 ], [ 10.960499302300946, 53.911412461815644 ], [ 10.95843224475226, 53.911128241874849 ], [ 10.956881952040419, 53.910714829825508 ], [ 10.954608188916779, 53.909681301051194 ], [ 10.950680780293737, 53.907407537927497 ], [ 10.945254754003656, 53.905185452546561 ], [ 10.917659539056444, 53.902136542167682 ], [ 10.912853631290034, 53.902136542167682 ], [ 10.911613396940709, 53.902394925485396 ], [ 10.910528192222273, 53.902756659791976 ], [ 10.908667840248597, 53.903738511722906 ], [ 10.906652458644032, 53.905340481278188 ], [ 10.905877313187432, 53.907355861983433 ], [ 10.906032341919058, 53.908906154695273 ], [ 10.906962517905868, 53.910766507568269 ], [ 10.908202752255193, 53.912626857743248 ], [ 10.908357781886139, 53.914177151354409 ], [ 10.907272577167703, 53.915469062547174 ], [ 10.894973585562525, 53.91789785440244 ], [ 10.891717969608578, 53.91903473596426 ], [ 10.888772413815843, 53.919370632748496 ], [ 10.885206740398758, 53.919138088751765 ], [ 10.861332227600201, 53.909836331581403 ], [ 10.812291294407714, 53.882654526884892 ], [ 10.792757603180803, 53.875368150419774 ], [ 10.772552118385534, 53.869942125029013 ], [ 10.766971063363883, 53.867358303542858 ], [ 10.763250360315851, 53.865058701997498 ], [ 10.755498894958009, 53.854335842425144 ], [ 10.754103630977795, 53.851674506573204 ], [ 10.751313103916573, 53.843122057337041 ], [ 10.751003044654794, 53.841003322944971 ], [ 10.751003044654794, 53.838910426974621 ], [ 10.751623162279088, 53.83655915038446 ], [ 10.753018426259359, 53.834130356730554 ], [ 10.761545037073802, 53.822503160492431 ], [ 10.762785272322446, 53.819945177427996 ], [ 10.764955681759318, 53.811289374505009 ], [ 10.767436151357288, 53.804726467552427 ], [ 10.771001824774373, 53.793331814411658 ], [ 10.769606560794159, 53.782660630783482 ], [ 10.767436151357288, 53.774599107063125 ], [ 10.758444451650121, 53.751913154468468 ], [ 10.75782433402577, 53.749174303351367 ], [ 10.758909538744206, 53.747882392158658 ], [ 10.760924920348771, 53.746693833753397 ], [ 10.769296502431644, 53.745815335509292 ], [ 10.778133171608545, 53.745841173031693 ], [ 10.805935093030087, 53.741190293996851 ], [ 10.809655796078118, 53.73920075081395 ], [ 10.81740726143596, 53.733309638329104 ], [ 10.825158725894482, 53.725403144239692 ], [ 10.846604445039077, 53.708530788864778 ], [ 10.8574564958206, 53.702587999536547 ], [ 10.865518018641637, 53.699874985941847 ], [ 10.87885053902113, 53.701967881912196 ], [ 10.886291945117136, 53.701890367546412 ], [ 10.895593703186819, 53.700908514716161 ], [ 10.914558953632763, 53.696774400518166 ], [ 10.925255974783397, 53.692433579845783 ], [ 10.938123407169485, 53.684707952909662 ], [ 10.942774286204326, 53.680548001189266 ], [ 10.945564813265491, 53.677059842137965 ], [ 10.945719841997118, 53.67411428544591 ], [ 10.945099725272087, 53.671323758384688 ], [ 10.945409783634602, 53.668145656796582 ], [ 10.946494989252358, 53.664941717686077 ], [ 10.9550216000668, 53.655459093362424 ], [ 10.9561584807293, 53.65290110939867 ], [ 10.956468539991135, 53.650343126334178 ], [ 10.9561584807293, 53.647655952060518 ], [ 10.955641716791774, 53.644581204159238 ], [ 10.95595177605361, 53.641842353042136 ], [ 10.95595177605361, 53.639103501925035 ], [ 10.954918247279295, 53.636623033226385 ], [ 10.953161248093124, 53.634271755736904 ], [ 10.947735222702363, 53.630783595786284 ], [ 10.939828728612895, 53.628716539136917 ], [ 10.940603874968815, 53.611404934190318 ], [ 10.952696160999039, 53.584378160024016 ], [ 10.953781365717418, 53.577970282702381 ], [ 10.953006219361498, 53.57368113887344 ], [ 10.949595574676039, 53.572079169318158 ], [ 10.942309198210921, 53.569702053407013 ], [ 10.943394402929357, 53.568797715841868 ], [ 10.950990837756933, 53.567867539855058 ], [ 10.954401483341769, 53.566136379989928 ], [ 10.953316277724014, 53.564792791953778 ], [ 10.949750604306928, 53.562519028830081 ], [ 10.944324578916167, 53.559728501768916 ], [ 10.938123407169485, 53.552545478091304 ], [ 10.933472528134644, 53.549599921399249 ], [ 10.928976677831429, 53.548463039837372 ], [ 10.926031121139317, 53.549858302918324 ], [ 10.923860710803126, 53.551847846101168 ], [ 10.922930535715636, 53.554638373162391 ], [ 10.921845330097881, 53.560503648124836 ], [ 10.920605095748556, 53.563087470510311 ], [ 10.919054803036715, 53.565412910477392 ], [ 10.917194451962359, 53.567738349545152 ], [ 10.914869011995279, 53.569702053407013 ], [ 10.911458368209139, 53.571355698906359 ], [ 10.907737664261788, 53.572208360527384 ], [ 10.903551873220351, 53.57233755083729 ], [ 10.857766554183115, 53.568203437538557 ], [ 10.853270704779163, 53.568358466270183 ], [ 10.849705031362078, 53.569107774204383 ], [ 10.841436802066767, 53.571872463743205 ], [ 10.83322024871552, 53.571872463743205 ], [ 10.829654575298377, 53.570063787713593 ], [ 10.828259312217483, 53.567428290283317 ], [ 10.828569369680679, 53.564637763222152 ], [ 10.831049839278649, 53.55634369640444 ], [ 10.83322024871552, 53.551021022901864 ], [ 10.833375278346409, 53.547791246268957 ], [ 10.83244510325892, 53.544070543220982 ], [ 10.825623813887887, 53.534717109207179 ], [ 10.823918490645838, 53.531280626099999 ], [ 10.823608433182642, 53.528490099038834 ], [ 10.821903109940536, 53.522831528752022 ], [ 10.821438022846451, 53.519834296115846 ], [ 10.822523227564886, 53.516475328273771 ], [ 10.820352817228695, 53.514795844352705 ], [ 10.804849888311708, 53.509395657383664 ], [ 10.76014977399285, 53.488156642914703 ], [ 10.75534386622644, 53.486942246987098 ], [ 10.745111932169948, 53.485882879791063 ], [ 10.725681592831222, 53.481128647968717 ], [ 10.708163283208933, 53.479449164047651 ], [ 10.704287551429331, 53.477769680126585 ], [ 10.701652052200416, 53.475547593846329 ], [ 10.698551466776735, 53.469372260521368 ], [ 10.697156202796521, 53.465419013476662 ], [ 10.694520705366244, 53.460096340873406 ], [ 10.690955031049839, 53.457719224962261 ], [ 10.686304152014998, 53.456840724919516 ], [ 10.674625278034114, 53.459398708883271 ], [ 10.669044223911783, 53.459269518573421 ], [ 10.661137729822372, 53.458184312955666 ], [ 10.647185092717848, 53.453946845070789 ], [ 10.640828892239597, 53.450975449957014 ], [ 10.63679812992973, 53.447874864533333 ], [ 10.635402865949516, 53.445239366203737 ], [ 10.627186314396852, 53.413690904211819 ], [ 10.626411167141612, 53.407489732465137 ], [ 10.626721226403447, 53.404440822985578 ], [ 10.627186314396852, 53.401546943136907 ], [ 10.625791050416638, 53.397257799307965 ], [ 10.622225376100232, 53.3910049507179 ], [ 10.612096794831189, 53.380928046292297 ], [ 10.601244744948985, 53.371832993797625 ], [ 10.569515414904458, 53.363874823764093 ], [ 10.528380974902063, 53.372401435477855 ], [ 10.386425814699578, 53.423871162324247 ], [ 10.350510695412254, 53.432036037932789 ], [ 10.327979770649904, 53.432656155557083 ], [ 10.323173861984117, 53.450432848497144 ], [ 10.320693394184786, 53.455652167413575 ], [ 10.318833042211111, 53.455858872988586 ], [ 10.31495731043151, 53.455600491469454 ], [ 10.313407016820349, 53.455238756263554 ], [ 10.312631869565109, 53.454928697001719 ], [ 10.277853630940285, 53.47751129770819 ], [ 10.269792108119304, 53.481490384073936 ], [ 10.247622917663534, 53.488776760539054 ], [ 10.222766553833367, 53.513013006744814 ], [ 10.213929883757089, 53.518826605763195 ], [ 10.197496778853235, 53.521746324033586 ], [ 10.186644728071713, 53.525311998349991 ], [ 10.183234084285573, 53.528955187032238 ], [ 10.182148878667817, 53.534045314739444 ], [ 10.182303908298707, 53.540969956897982 ], [ 10.180753614687546, 53.549625758921593 ], [ 10.17408735494746, 53.565981350358982 ], [ 10.172847120598135, 53.570528875706998 ], [ 10.173157178960651, 53.573784492560264 ], [ 10.175482618927731, 53.57543813716029 ], [ 10.17811811725727, 53.576523341878726 ], [ 10.195946486141395, 53.579210517051706 ], [ 10.206023389667678, 53.581871852903646 ], [ 10.208658887997274, 53.583034572887186 ], [ 10.210674268702519, 53.584352322501672 ], [ 10.211604444689385, 53.585566718429277 ], [ 10.212379591944625, 53.588150539915432 ], [ 10.213309767032115, 53.601689764970672 ], [ 10.21532514773736, 53.614195462150803 ], [ 10.216720411717631, 53.617709458724505 ], [ 10.219976026772201, 53.622877101696872 ], [ 10.221216261121526, 53.626184394494203 ], [ 10.222766553833367, 53.63365163811261 ], [ 10.221526320383362, 53.637811590732326 ], [ 10.218890822053766, 53.640240384386232 ], [ 10.21455000228076, 53.641842353042136 ], [ 10.209123975990678, 53.644787909734248 ], [ 10.206798536922918, 53.650472317543404 ], [ 10.206488477661082, 53.656983548551921 ], [ 10.205403272942704, 53.662357897099241 ], [ 10.204783156217673, 53.662822984193326 ], [ 10.169229771236928, 53.678635973271525 ], [ 10.165974155283038, 53.682098293901106 ], [ 10.164733920933713, 53.684527085756372 ], [ 10.165819125652092, 53.687369290560298 ], [ 10.169849887961959, 53.693596299829323 ], [ 10.179823438700737, 53.705611069695067 ], [ 10.191140578374984, 53.7151712101832 ], [ 10.192845899818394, 53.717703355725234 ], [ 10.194861281422959, 53.722535101913422 ], [ 10.19377607580526, 53.725093084977857 ], [ 10.191915723831585, 53.726565864223232 ], [ 10.187419875326952, 53.727521877732443 ], [ 10.181993849036871, 53.727780260150837 ], [ 10.176877882907945, 53.727211819369927 ], [ 10.171090122311284, 53.725299791452187 ], [ 10.153571811789675, 53.715636298176605 ], [ 10.147990756768024, 53.713672594314744 ], [ 10.142254673014747, 53.713310859108844 ], [ 10.092903679661049, 53.720183824423941 ], [ 10.09026818223083, 53.720080470737116 ], [ 10.088717888619669, 53.719718736430536 ], [ 10.086392449551909, 53.718891913231175 ], [ 10.082051628879583, 53.716359767689084 ], [ 10.078175897099982, 53.712897447059504 ], [ 10.065153435982268, 53.68080638270834 ], [ 10.060192497685591, 53.677964178803791 ], [ 10.052234327652059, 53.67486359338011 ], [ 10.039056837802832, 53.676258857360324 ], [ 10.03285566605615, 53.676284694882725 ], [ 10.025879347054229, 53.675509549426124 ], [ 10.013632033191755, 53.673003242305754 ], [ 10.008206007800993, 53.670677802338673 ], [ 10.003710158397098, 53.666802070559072 ], [ 9.994046665121459, 53.651428331052614 ], [ 9.98986087408008, 53.648560288726344 ], [ 9.984279819058372, 53.646880804805278 ], [ 9.980404087278771, 53.646725776073708 ], [ 9.952808872331559, 53.650368963856579 ], [ 9.927332390877098, 53.645666408877617 ], [ 9.828630405069134, 53.597245592410161 ], [ 9.816073031944882, 53.593111477312789 ], [ 9.812507357628419, 53.593886624568029 ], [ 9.810491977822494, 53.594610094080565 ], [ 9.80909671384228, 53.59528188674966 ], [ 9.808011509123844, 53.596108709948965 ], [ 9.806926304405408, 53.597142238723336 ], [ 9.806151157150168, 53.599054267540396 ], [ 9.806461216412004, 53.601896471445002 ], [ 9.807546421130439, 53.606495672737083 ], [ 9.810491977822494, 53.615073961294229 ], [ 9.810026889829089, 53.617864488355451 ], [ 9.806926304405408, 53.619879869060696 ], [ 9.798709751054162, 53.623238836902772 ], [ 9.79653934071797, 53.624634100883043 ], [ 9.788167758635154, 53.627579658474417 ], [ 9.77648888465427, 53.629388332705389 ], [ 9.77168297688786, 53.629698391067848 ], [ 9.76842736183329, 53.629181627130379 ], [ 9.766567009859614, 53.626287747281708 ], [ 9.765016717147773, 53.618872178708045 ], [ 9.763311394804987, 53.616572578062005 ], [ 9.760210809381363, 53.614195462150803 ], [ 9.756180047071496, 53.611818346239659 ], [ 9.754009636735361, 53.610035509531087 ], [ 9.752769403285299, 53.607890936717354 ], [ 9.751684197667601, 53.604686998506168 ], [ 9.750598992949165, 53.598020737866705 ], [ 9.748893669707059, 53.591974595750969 ], [ 9.740883822830142, 53.572750962886573 ], [ 9.740810381484961, 53.572574703478352 ], [ 9.692393425000091, 53.575913804000038 ], [ 9.655772332000083, 53.58462148600006 ], [ 9.58366946700005, 53.612453518000052 ], [ 9.550791863000086, 53.634588934000078 ], [ 9.539073113000086, 53.666489976000037 ], [ 9.536143425000091, 53.693752346000053 ], [ 9.532237175000091, 53.711167710000041 ], [ 9.522227410000085, 53.716620184000078 ], [ 9.475271030000044, 53.732163804000038 ], [ 9.460215691000087, 53.735419012000079 ], [ 9.435801629000082, 53.74868398600006 ], [ 9.412445509000065, 53.77875397300005 ], [ 9.396657748000052, 53.811021226000037 ], [ 9.395192905000044, 53.831000067000048 ], [ 9.35873457100007, 53.839544989000046 ], [ 9.295583530000044, 53.871893622000073 ], [ 9.257823113000086, 53.885565497000073 ], [ 9.22046959700009, 53.890773830000057 ], [ 9.09343509200005, 53.892482815000051 ], [ 9.055430535000085, 53.902899481000077 ], [ 9.029958530000044, 53.907131252000056 ], [ 9.018321160000085, 53.902736721000053 ], [ 9.007823113000086, 53.892482815000051 ], [ 8.984629754000082, 53.897040106000077 ], [ 8.949473504000082, 53.912909247000073 ], [ 8.916026238000086, 53.937404690000051 ], [ 8.83334394600007, 54.036444403000075 ], [ 8.871836785000085, 54.046942450000074 ], [ 8.890635613000086, 54.047796942000048 ], [ 8.914561394000089, 54.043890692000048 ], [ 8.953868035000085, 54.028306382000039 ], [ 8.975352410000085, 54.02407461100006 ], [ 8.997243686000047, 54.030218817000048 ], [ 9.004893425000091, 54.041164455000057 ], [ 9.01303144600007, 54.060980536000045 ], [ 9.018565300000091, 54.082424221000053 ], [ 9.018321160000085, 54.097886460000041 ], [ 9.006683790000068, 54.108140367000033 ], [ 8.988129102000073, 54.117865302000041 ], [ 8.974457227000073, 54.128078518000052 ], [ 8.977305535000085, 54.139471747000073 ], [ 8.977305535000085, 54.145697333000044 ], [ 8.95289147200009, 54.150091864000046 ], [ 8.917979363000086, 54.146307684000078 ], [ 8.885427280000044, 54.13703034100007 ], [ 8.867442254000082, 54.125189520000049 ], [ 8.86068769600007, 54.125189520000049 ], [ 8.83334394600007, 54.153143622000073 ], [ 8.815684441000087, 54.175604559000078 ], [ 8.812836134000065, 54.180487372000073 ], [ 8.820974155000044, 54.200506903000075 ], [ 8.836273634000065, 54.217759507000039 ], [ 8.846690300000091, 54.233547268000052 ], [ 8.83961022200009, 54.248724677000041 ], [ 8.83961022200009, 54.255560614000046 ], [ 8.851898634000065, 54.261053778000075 ], [ 8.89421634200005, 54.26821523600006 ], [ 8.91146894600007, 54.269191799000055 ], [ 8.922048373000052, 54.274237372000073 ], [ 8.937510613000086, 54.286688544000071 ], [ 8.953135613000086, 54.302557684000078 ], [ 8.963145379000082, 54.317613023000035 ], [ 8.940277540000068, 54.315008856000077 ], [ 8.902598504000082, 54.295843817000048 ], [ 8.881114129000082, 54.290269273000035 ], [ 8.883067254000082, 54.29360586100006 ], [ 8.885915561000047, 54.300726630000042 ], [ 8.887950066000087, 54.303941148000035 ], [ 8.857595248000052, 54.301825262000079 ], [ 8.805430535000085, 54.29242584800005 ], [ 8.774668816000087, 54.290269273000035 ], [ 8.738942905000044, 54.293890692000048 ], [ 8.723480665000068, 54.290269273000035 ], [ 8.690196160000085, 54.271470445000034 ], [ 8.678477410000085, 54.269191799000055 ], [ 8.651866082000083, 54.27484772300005 ], [ 8.623383009000065, 54.290106512000079 ], [ 8.602712436000047, 54.312079169000071 ], [ 8.599864129000082, 54.338080145000049 ], [ 8.614024285000085, 54.348374742000033 ], [ 8.641368035000085, 54.355658270000049 ], [ 8.672048373000052, 54.359279690000051 ], [ 8.695567254000082, 54.358587958000044 ], [ 8.695567254000082, 54.365423895000049 ], [ 8.677582227000073, 54.367905992000033 ], [ 8.66382897200009, 54.375555731000077 ], [ 8.650645379000082, 54.377997137000079 ], [ 8.634776238000086, 54.365423895000049 ], [ 8.626231316000087, 54.37641022300005 ], [ 8.629161004000082, 54.387681382000039 ], [ 8.63843834700009, 54.398138739000046 ], [ 8.648448113000086, 54.406398830000057 ], [ 8.669769727000073, 54.400824286000045 ], [ 8.750824415000068, 54.413804429000038 ], [ 8.86068769600007, 54.413804429000038 ], [ 8.88607832100007, 54.417792059000078 ], [ 8.907237175000091, 54.425523179000038 ], [ 8.949473504000082, 54.447333075000074 ], [ 8.98804772200009, 54.45844147300005 ], [ 9.004730665000068, 54.465887762000079 ], [ 9.01148522200009, 54.482123114000046 ], [ 9.011566602000073, 54.506333726000037 ], [ 8.98609459700009, 54.529282945000034 ], [ 8.904470248000052, 54.580633856000077 ], [ 8.892832879000082, 54.59125397300005 ], [ 8.887950066000087, 54.60187409100007 ], [ 8.878754102000073, 54.606512762000079 ], [ 8.858164910000085, 54.606146552000041 ], [ 8.837087436000047, 54.602687893000052 ], [ 8.82585696700005, 54.598130601000037 ], [ 8.819021030000044, 54.605617580000057 ], [ 8.85328209700009, 54.619289455000057 ], [ 8.818369988000086, 54.673651434000078 ], [ 8.805430535000085, 54.687567450000074 ], [ 8.77670332100007, 54.697984117000033 ], [ 8.722666863000086, 54.725531317000048 ], [ 8.688731316000087, 54.735296942000048 ], [ 8.688731316000087, 54.742173570000034 ], [ 8.694346550000091, 54.760239976000037 ], [ 8.68132571700005, 54.780585028000075 ], [ 8.66187584700009, 54.800604559000078 ], [ 8.648448113000086, 54.817857164000031 ], [ 8.642751498000052, 54.844183661000045 ], [ 8.647227410000085, 54.867377020000049 ], [ 8.660775934000071, 54.896311156000067 ], [ 8.695882202000092, 54.889984029000047 ], [ 8.732779175000104, 54.889053854000011 ], [ 8.80088871200013, 54.903833314000039 ], [ 8.824246459000079, 54.905900370000083 ] ] ], [ [ [ 8.963145379000082, 54.523667710000041 ], [ 8.958506707000083, 54.522447007000039 ], [ 8.956309441000087, 54.519435940000051 ], [ 8.955821160000085, 54.514960028000075 ], [ 8.956879102000073, 54.509426174000055 ], [ 8.938487175000091, 54.499090887000079 ], [ 8.925791863000086, 54.486761786000045 ], [ 8.911306186000047, 54.475490627000056 ], [ 8.887950066000087, 54.468451239000046 ], [ 8.844493035000085, 54.466498114000046 ], [ 8.82390384200005, 54.470851955000057 ], [ 8.812836134000065, 54.482123114000046 ], [ 8.823741082000083, 54.485541083000044 ], [ 8.82553144600007, 54.491197007000039 ], [ 8.820974155000044, 54.497259833000044 ], [ 8.812836134000065, 54.501939195000034 ], [ 8.844493035000085, 54.519720770000049 ], [ 8.879649285000085, 54.529120184000078 ], [ 8.919200066000087, 54.530462958000044 ], [ 8.963145379000082, 54.523667710000041 ] ] ], [ [ [ 11.25562584700009, 54.478705145000049 ], [ 11.31421959700009, 54.413804429000038 ], [ 11.188487175000091, 54.426174221000053 ], [ 11.170176629000082, 54.420070705000057 ], [ 11.174652540000068, 54.416001695000034 ], [ 11.17904707100007, 54.414211330000057 ], [ 11.138845248000052, 54.412665106000077 ], [ 11.11264082100007, 54.415228583000044 ], [ 11.10132897200009, 54.423488674000055 ], [ 11.10328209700009, 54.443833726000037 ], [ 11.098643425000091, 54.451646226000037 ], [ 11.084320509000065, 54.454779364000046 ], [ 11.058116082000083, 54.455267645000049 ], [ 11.047373894000089, 54.453273830000057 ], [ 11.039886915000068, 54.447333075000074 ], [ 11.032481316000087, 54.447333075000074 ], [ 11.029144727000073, 54.454657294000071 ], [ 11.025726759000065, 54.458807684000078 ], [ 11.020355665000068, 54.458970445000034 ], [ 11.008474155000044, 54.454657294000071 ], [ 11.005707227000073, 54.468451239000046 ], [ 11.033702019000089, 54.508856512000079 ], [ 11.072927280000044, 54.531195380000042 ], [ 11.121267123000052, 54.535956122000073 ], [ 11.206553582000083, 54.514471747000073 ], [ 11.23210696700005, 54.501654364000046 ], [ 11.24000084700009, 54.49555084800005 ], [ 11.25562584700009, 54.478705145000049 ] ] ], [ [ [ 8.332367384000065, 54.693793036000045 ], [ 8.382334832000083, 54.639146226000037 ], [ 8.401377800000091, 54.632961330000057 ], [ 8.387705925000091, 54.626125393000052 ], [ 8.353688998000052, 54.618963934000078 ], [ 8.330251498000052, 54.631415106000077 ], [ 8.311371290000068, 54.651353257000039 ], [ 8.291514519000089, 54.667059637000079 ], [ 8.320485873000052, 54.698716539000031 ], [ 8.338389519000089, 54.710150458000044 ], [ 8.360362175000091, 54.714829820000034 ], [ 8.36068769600007, 54.710028387000079 ], [ 8.35914147200009, 54.708929755000042 ], [ 8.356293165000068, 54.709173895000049 ], [ 8.353526238000086, 54.707993882000039 ], [ 8.342458530000044, 54.701402085000041 ], [ 8.332367384000065, 54.693793036000045 ] ] ], [ [ [ 8.497569207000083, 54.756415106000077 ], [ 8.553233269000089, 54.754461981000077 ], [ 8.57593834700009, 54.74640534100007 ], [ 8.593760613000086, 54.728501695000034 ], [ 8.593760613000086, 54.721665757000039 ], [ 8.585459832000083, 54.713609117000033 ], [ 8.574066602000073, 54.694403387000079 ], [ 8.56576582100007, 54.687567450000074 ], [ 8.55209394600007, 54.68500397300005 ], [ 8.535166863000086, 54.68618398600006 ], [ 8.519867384000065, 54.689601955000057 ], [ 8.511241082000083, 54.693793036000045 ], [ 8.485199415000068, 54.688055731000077 ], [ 8.45281009200005, 54.693833726000037 ], [ 8.394541863000086, 54.714829820000034 ], [ 8.414235873000052, 54.73578522300005 ], [ 8.436778191000087, 54.748480536000045 ], [ 8.464121941000087, 54.754787502000056 ], [ 8.497569207000083, 54.756415106000077 ] ] ], [ [ [ 8.360362175000091, 54.948187567000048 ], [ 8.354502800000091, 54.91274648600006 ], [ 8.38835696700005, 54.894232489000046 ], [ 8.436534050000091, 54.887274481000077 ], [ 8.654470248000052, 54.893622137000079 ], [ 8.629405144000089, 54.882147528000075 ], [ 8.504405144000089, 54.88617584800005 ], [ 8.488780144000089, 54.881293036000045 ], [ 8.461192254000082, 54.868801174000055 ], [ 8.446055535000085, 54.866278387000079 ], [ 8.377126498000052, 54.866278387000079 ], [ 8.370616082000083, 54.868231512000079 ], [ 8.361989780000044, 54.876939195000034 ], [ 8.353526238000086, 54.879339911000045 ], [ 8.343923373000052, 54.879095770000049 ], [ 8.337412957000083, 54.87759023600006 ], [ 8.307139519000089, 54.865383205000057 ], [ 8.302012566000087, 54.862616278000075 ], [ 8.299327019000089, 54.855292059000078 ], [ 8.297862175000091, 54.835598049000055 ], [ 8.294932488000086, 54.831529039000031 ], [ 8.298350457000083, 54.776922919000071 ], [ 8.295746290000068, 54.759100653000075 ], [ 8.29070071700005, 54.745306708000044 ], [ 8.284434441000087, 54.742377020000049 ], [ 8.277842644000089, 54.756415106000077 ], [ 8.27702884200005, 54.782782294000071 ], [ 8.288584832000083, 54.891302802000041 ], [ 8.298024936000047, 54.912543036000045 ], [ 8.373708530000044, 55.034979559000078 ], [ 8.41578209700009, 55.065334377000056 ], [ 8.463389519000089, 55.050685940000051 ], [ 8.402354363000086, 55.048773505000042 ], [ 8.394541863000086, 55.043850002000056 ], [ 8.422211134000065, 55.042181708000044 ], [ 8.430430535000085, 55.030015367000033 ], [ 8.42156009200005, 55.01626211100006 ], [ 8.380869988000086, 55.003078518000052 ], [ 8.361989780000044, 54.986802476000037 ], [ 8.351573113000086, 54.966742255000042 ], [ 8.360362175000091, 54.948187567000048 ] ] ], [ [ [ 8.63453209700009, 54.542629299000055 ], [ 8.69890384200005, 54.558579820000034 ], [ 8.70093834700009, 54.547756252000056 ], [ 8.692881707000083, 54.523260809000078 ], [ 8.669769727000073, 54.501898505000042 ], [ 8.641286655000044, 54.492377020000049 ], [ 8.61882571700005, 54.492621161000045 ], [ 8.606130405000044, 54.499212958000044 ], [ 8.595876498000052, 54.513657945000034 ], [ 8.602061394000089, 54.529771226000037 ], [ 8.620127800000091, 54.537909247000073 ], [ 8.627452019000089, 54.539943752000056 ], [ 8.63453209700009, 54.542629299000055 ] ] ], [ [ [ 7.904144727000073, 54.180405992000033 ], [ 7.899180535000085, 54.178168036000045 ], [ 7.897715691000087, 54.182318427000041 ], [ 7.893565300000091, 54.183091539000031 ], [ 7.89039147200009, 54.187567450000074 ], [ 7.885915561000047, 54.190659898000035 ], [ 7.879893425000091, 54.193915106000077 ], [ 7.894541863000086, 54.194647528000075 ], [ 7.900645379000082, 54.190659898000035 ], [ 7.904144727000073, 54.180405992000033 ] ] ], [ [ [ 7.912364129000082, 54.192287502000056 ], [ 7.929860873000052, 54.195298570000034 ], [ 7.933441602000073, 54.189886786000045 ], [ 7.91765384200005, 54.186997789000031 ], [ 7.912364129000082, 54.192287502000056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DE-NI", "NAME_1": "Niedersachsen" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.072150759000124, 52.841316552000066 ], [ 7.079856812000116, 52.85442352299999 ], [ 7.161918986000103, 52.932635804000128 ], [ 7.183623088000104, 52.966122131000034 ], [ 7.19282149300011, 52.998006490000094 ], [ 7.194371786000119, 53.033844096000038 ], [ 7.18507002700008, 53.105441793000082 ], [ 7.181349324000081, 53.114175111000051 ], [ 7.176491740000074, 53.119394430000071 ], [ 7.172667684000118, 53.125750631000088 ], [ 7.171944214000121, 53.137713725000069 ], [ 7.174424682000108, 53.145775249000039 ], [ 7.18858402500004, 53.167789408000019 ], [ 7.195405314000112, 53.184997661000111 ], [ 7.198505900000043, 53.200578105000048 ], [ 7.19747237100006, 53.216623637000097 ], [ 7.194590691000087, 53.245021877000056 ], [ 7.20443769600007, 53.248277085000041 ], [ 7.215830925000091, 53.255601304000038 ], [ 7.224619988000086, 53.262925523000035 ], [ 7.233571811000047, 53.273627020000049 ], [ 7.236989780000044, 53.285549221000053 ], [ 7.229502800000091, 53.296576239000046 ], [ 7.254730665000068, 53.319525458000044 ], [ 7.268321160000085, 53.32367584800005 ], [ 7.291514519000089, 53.323919989000046 ], [ 7.313161655000044, 53.320502020000049 ], [ 7.347666863000086, 53.307359117000033 ], [ 7.36654707100007, 53.302801825000074 ], [ 7.342539910000085, 53.324042059000078 ], [ 7.302907748000052, 53.332749742000033 ], [ 7.075205925000091, 53.337591864000046 ], [ 7.038259311000047, 53.348578192000048 ], [ 7.023610873000052, 53.37641022300005 ], [ 7.023285352000073, 53.450506903000075 ], [ 7.027679884000065, 53.467352606000077 ], [ 7.047048373000052, 53.497707424000055 ], [ 7.051442905000044, 53.512600002000056 ], [ 7.059743686000047, 53.521714585000041 ], [ 7.079356316000087, 53.521551825000074 ], [ 7.119639519000089, 53.516302802000041 ], [ 7.125010613000086, 53.524359442000048 ], [ 7.13453209700009, 53.527411200000074 ], [ 7.141774936000047, 53.537176825000074 ], [ 7.13998457100007, 53.549790757000039 ], [ 7.131114129000082, 53.55695221600007 ], [ 7.101898634000065, 53.565741278000075 ], [ 7.088877800000091, 53.573716539000031 ], [ 7.086761915000068, 53.586859442000048 ], [ 7.10092207100007, 53.597886460000041 ], [ 7.133148634000065, 53.611273505000042 ], [ 7.169444207000083, 53.635484117000033 ], [ 7.188975457000083, 53.643500067000048 ], [ 7.226084832000083, 53.666489976000037 ], [ 7.305023634000065, 53.684800523000035 ], [ 7.458832227000073, 53.695135809000078 ], [ 7.469574415000068, 53.690741278000075 ], [ 7.48023522200009, 53.682033596000053 ], [ 7.503916863000086, 53.678656317000048 ], [ 7.651377800000091, 53.696966864000046 ], [ 7.951426629000082, 53.721909898000035 ], [ 8.031423373000052, 53.708075262000079 ], [ 8.031423373000052, 53.70062897300005 ], [ 8.024912957000083, 53.672552802000041 ], [ 8.052907748000052, 53.636297919000071 ], [ 8.094086134000065, 53.604722398000035 ], [ 8.127614780000044, 53.590765692000048 ], [ 8.127614780000044, 53.58462148600006 ], [ 8.119151238000086, 53.571926174000055 ], [ 8.134613477000073, 53.567450262000079 ], [ 8.156748894000089, 53.563666083000044 ], [ 8.167979363000086, 53.553208726000037 ], [ 8.164886915000068, 53.535223700000074 ], [ 8.155446811000047, 53.52602773600006 ], [ 8.133799675000091, 53.516302802000041 ], [ 8.115733269000089, 53.510728257000039 ], [ 8.076345248000052, 53.508612372000073 ], [ 8.058767123000052, 53.502020575000074 ], [ 8.076996290000068, 53.468695380000042 ], [ 8.086192254000082, 53.456122137000079 ], [ 8.099782748000052, 53.447414455000057 ], [ 8.112478061000047, 53.451076565000051 ], [ 8.123871290000068, 53.454006252000056 ], [ 8.140635613000086, 53.453599351000037 ], [ 8.152354363000086, 53.449774481000077 ], [ 8.171397332000083, 53.436590887000079 ], [ 8.178558790000068, 53.433742580000057 ], [ 8.186696811000047, 53.429510809000078 ], [ 8.194834832000083, 53.420111395000049 ], [ 8.205332879000082, 53.410711981000077 ], [ 8.219737175000091, 53.406439520000049 ], [ 8.236501498000052, 53.406724351000037 ], [ 8.248708530000044, 53.408392645000049 ], [ 8.25945071700005, 53.412298895000049 ], [ 8.271739129000082, 53.419501044000071 ], [ 8.292816602000073, 53.440497137000079 ], [ 8.315114780000044, 53.47492096600007 ], [ 8.320485873000052, 53.50922272300005 ], [ 8.291514519000089, 53.529364325000074 ], [ 8.252207879000082, 53.523098049000055 ], [ 8.231211785000085, 53.525213934000078 ], [ 8.233164910000085, 53.539862372000073 ], [ 8.241709832000083, 53.556301174000055 ], [ 8.248871290000068, 53.590277411000045 ], [ 8.257334832000083, 53.604437567000048 ], [ 8.270681186000047, 53.612860419000071 ], [ 8.287608269000089, 53.616888739000046 ], [ 8.329356316000087, 53.618109442000048 ], [ 8.348480665000068, 53.612860419000071 ], [ 8.363291863000086, 53.600572007000039 ], [ 8.375498894000089, 53.586900132000039 ], [ 8.387705925000091, 53.577134507000039 ], [ 8.428070509000065, 53.56476471600007 ], [ 8.51343834700009, 53.554754950000074 ], [ 8.55209394600007, 53.54360586100006 ], [ 8.55209394600007, 53.536200262000079 ], [ 8.528168165000068, 53.523911851000037 ], [ 8.506195509000065, 53.507961330000057 ], [ 8.49000084700009, 53.486395575000074 ], [ 8.483897332000083, 53.45734284100007 ], [ 8.485036655000044, 53.401190497000073 ], [ 8.490896030000044, 53.376450914000031 ], [ 8.504405144000089, 53.35805898600006 ], [ 8.507334832000083, 53.382798570000034 ], [ 8.496755405000044, 53.445257880000042 ], [ 8.497569207000083, 53.474758205000057 ], [ 8.512868686000047, 53.496486721000053 ], [ 8.535817905000044, 53.50617096600007 ], [ 8.556651238000086, 53.51821523600006 ], [ 8.557203417412692, 53.519940796732612 ], [ 8.560904168392653, 53.51570018191785 ], [ 8.572996452624182, 53.501850898500152 ], [ 8.578267450182693, 53.499241237692956 ], [ 8.585553826647754, 53.500326443310655 ], [ 8.58741417772211, 53.500352280833056 ], [ 8.587879265715515, 53.500326443310655 ], [ 8.588344353708919, 53.500171414579086 ], [ 8.595010614348382, 53.49218740522457 ], [ 8.597491082147712, 53.490585436568608 ], [ 8.599506462852958, 53.489732774048264 ], [ 8.601056755564798, 53.490016994888379 ], [ 8.602813754750969, 53.490482082881783 ], [ 8.623587681226468, 53.502212632806732 ], [ 8.639090610143512, 53.51665619632638 ], [ 8.640640902855353, 53.51988597295923 ], [ 8.641881138104054, 53.525311998349991 ], [ 8.642656283560598, 53.531900742824973 ], [ 8.641881138104054, 53.539316311398636 ], [ 8.635214878363911, 53.559883531399805 ], [ 8.631494175315936, 53.567531643070822 ], [ 8.623587681226468, 53.577091783558956 ], [ 8.621107211628498, 53.582259426531266 ], [ 8.620177035641689, 53.587607937556243 ], [ 8.621727329252849, 53.591483670235164 ], [ 8.622967563602174, 53.593989977355534 ], [ 8.625293002669935, 53.5968063419391 ], [ 8.628238560261309, 53.599364325902911 ], [ 8.631804232779132, 53.60199982423245 ], [ 8.630874057691585, 53.603963528094312 ], [ 8.625293002669935, 53.604997056868626 ], [ 8.584313592298429, 53.603937690571911 ], [ 8.562454461104494, 53.606263128740352 ], [ 8.513413527012631, 53.61701182673437 ], [ 8.513037633902382, 53.617096718211251 ], [ 8.508311394000089, 53.625148830000057 ], [ 8.501231316000087, 53.644191799000055 ], [ 8.487071160000085, 53.666937567000048 ], [ 8.483897332000083, 53.683579820000034 ], [ 8.48609459700009, 53.700425523000035 ], [ 8.492198113000086, 53.71515534100007 ], [ 8.529633009000065, 53.770697333000044 ], [ 8.556162957000083, 53.830959377000056 ], [ 8.573252800000091, 53.857652085000041 ], [ 8.58757571700005, 53.870428778000075 ], [ 8.60710696700005, 53.881537177000041 ], [ 8.629242384000065, 53.889390367000033 ], [ 8.651866082000083, 53.892482815000051 ], [ 8.672699415000068, 53.891587632000039 ], [ 8.684580925000091, 53.888495184000078 ], [ 8.709157748000052, 53.871975002000056 ], [ 8.744639519000089, 53.85415273600006 ], [ 8.782481316000087, 53.842474677000041 ], [ 8.86068769600007, 53.831000067000048 ], [ 8.903575066000087, 53.831732489000046 ], [ 8.97624759200005, 53.84243398600006 ], [ 9.016286655000044, 53.840521552000041 ], [ 9.035004102000073, 53.853583075000074 ], [ 9.114512566000087, 53.865139065000051 ], [ 9.193614129000082, 53.86469147300005 ], [ 9.21070397200009, 53.871975002000056 ], [ 9.22429446700005, 53.865912177000041 ], [ 9.240733269000089, 53.864162502000056 ], [ 9.274668816000087, 53.865139065000051 ], [ 9.283376498000052, 53.86163971600007 ], [ 9.305349155000044, 53.844549872000073 ], [ 9.402679884000065, 53.742417710000041 ], [ 9.442881707000083, 53.71430084800005 ], [ 9.470957879000082, 53.70062897300005 ], [ 9.484711134000065, 53.69009023600006 ], [ 9.498383009000065, 53.659857489000046 ], [ 9.567067905000044, 53.599595445000034 ], [ 9.582367384000065, 53.591294664000031 ], [ 9.60092207100007, 53.586330471000053 ], [ 9.62476647200009, 53.58462148600006 ], [ 9.637217644000089, 53.581000067000048 ], [ 9.69662519600007, 53.556626695000034 ], [ 9.763971799359012, 53.547679683570493 ], [ 9.764706658785258, 53.543760483959147 ], [ 9.76842736183329, 53.508155423034339 ], [ 9.77726403190951, 53.502315986493556 ], [ 9.779331088558877, 53.500093899313981 ], [ 9.780726353438467, 53.49657990184096 ], [ 9.782431674881877, 53.49430613871732 ], [ 9.785222201943043, 53.492445786743644 ], [ 9.791423373689724, 53.489810289313368 ], [ 9.793748813656805, 53.487794907708803 ], [ 9.796074252724566, 53.484280911135102 ], [ 9.800725131759407, 53.47523753548387 ], [ 9.804755894069217, 53.469191393368078 ], [ 9.81064700655412, 53.462370103997102 ], [ 9.816693148669856, 53.456944077707021 ], [ 9.824444614027698, 53.451414700428074 ], [ 9.857207471947277, 53.432862861132094 ], [ 9.861238234257087, 53.43224274440712 ], [ 9.865113966936008, 53.43340546349134 ], [ 9.877516310429371, 53.444774278210332 ], [ 9.882787306189243, 53.447228909386638 ], [ 9.890848829909544, 53.449037584516873 ], [ 9.895706413620076, 53.448650010889253 ], [ 9.900047235191721, 53.446608791762287 ], [ 9.905473259683163, 53.441234443214967 ], [ 9.908108758012759, 53.430795803583464 ], [ 9.90872887473779, 53.421545722357166 ], [ 9.909348993261403, 53.418083400828266 ], [ 9.912914665779169, 53.415602932129559 ], [ 9.918960808794282, 53.415602932129559 ], [ 9.938804559282971, 53.421881619141402 ], [ 9.945005731029653, 53.422837633549932 ], [ 9.950018345270394, 53.422010810350571 ], [ 9.968466830879549, 53.414466051467059 ], [ 9.975288120250525, 53.414052639417775 ], [ 9.985365023776808, 53.41506032977037 ], [ 10.011306593224674, 53.421494046413102 ], [ 10.027894727759474, 53.427488511685453 ], [ 10.030375197357444, 53.429193834028183 ], [ 10.030840285350848, 53.431157537890044 ], [ 10.030685255719959, 53.433069565807784 ], [ 10.030065138095608, 53.434516507530759 ], [ 10.029600051001523, 53.43663524012419 ], [ 10.029445021370634, 53.43839223931036 ], [ 10.032390578062689, 53.440976060796515 ], [ 10.038746779440316, 53.443094794289323 ], [ 10.07600548676379, 53.450432848497144 ], [ 10.083136833597962, 53.450897936490549 ], [ 10.09910485230705, 53.439477444028796 ], [ 10.111197137437955, 53.433896389007145 ], [ 10.131402622233225, 53.430589098008454 ], [ 10.143081496214052, 53.422682603918986 ], [ 10.153571811789675, 53.413639228267755 ], [ 10.169849887961959, 53.406611233321712 ], [ 10.186541375284207, 53.404389147041456 ], [ 10.241576776447062, 53.406611233321712 ], [ 10.243747185883933, 53.409401760382934 ], [ 10.266071405071273, 53.427075100535433 ], [ 10.275993279865986, 53.430795803583464 ], [ 10.285346713879733, 53.432656155557083 ], [ 10.327979770649904, 53.432656155557083 ], [ 10.350510695412254, 53.432036037932789 ], [ 10.386425814699578, 53.423871162324247 ], [ 10.528380974902063, 53.372401435477855 ], [ 10.569515414904458, 53.363874823764093 ], [ 10.601244744948985, 53.371832993797625 ], [ 10.675503778076859, 53.373693345771244 ], [ 10.709713575920773, 53.368344834746324 ], [ 10.731572707114708, 53.351989244208255 ], [ 10.734311558231809, 53.337829902428041 ], [ 10.734621615695005, 53.321706854987326 ], [ 10.739427524360735, 53.308451849872938 ], [ 10.755808954219845, 53.302948310116392 ], [ 10.775135938972369, 53.300235297421011 ], [ 10.786814812953253, 53.293439846471699 ], [ 10.807330356111038, 53.275637315109975 ], [ 10.839266391730575, 53.26010854777121 ], [ 10.930216912180754, 53.228456732991788 ], [ 11.040081008032075, 53.166393337782267 ], [ 11.068089634129308, 53.155515449478401 ], [ 11.077649773718065, 53.149004218469884 ], [ 11.089431999587077, 53.144198309804153 ], [ 11.09971560958769, 53.148539130476479 ], [ 11.109275750075767, 53.155773830997475 ], [ 11.124933708623757, 53.162130032375046 ], [ 11.133098586030883, 53.167607733709929 ], [ 11.143433871975617, 53.172672023894734 ], [ 11.156146273831439, 53.173860582299994 ], [ 11.164517855914312, 53.170863348764499 ], [ 11.170408970197798, 53.165463161795458 ], [ 11.176145053951075, 53.158874417320476 ], [ 11.184051548040486, 53.152104803893565 ], [ 11.194335158041099, 53.140942694749526 ], [ 11.201363152987085, 53.140477606756122 ], [ 11.214488966892304, 53.149004218469884 ], [ 11.224669224105412, 53.153034979880374 ], [ 11.232317335776429, 53.148797511995554 ], [ 11.239707065028995, 53.142027900367282 ], [ 11.25583011157039, 53.13618846292718 ], [ 11.262444696265732, 53.130710760693034 ], [ 11.274089929306797, 53.11754382708591 ], [ 11.274516761039649, 53.117061220299036 ], [ 11.290918410356312, 53.098516344453685 ], [ 11.327608676898933, 53.07241974537493 ], [ 11.344145134590292, 53.066321926415753 ], [ 11.365642530578327, 53.063996487347993 ], [ 11.384246046717692, 53.067122911193394 ], [ 11.416853875006325, 53.080894680245251 ], [ 11.43793785984434, 53.083840236937363 ], [ 11.460933871700831, 53.079421901899252 ], [ 11.490699496984178, 53.060740872293422 ], [ 11.509303013123542, 53.056503404408545 ], [ 11.532299024979977, 53.054643053334189 ], [ 11.58133995907184, 53.042860826565857 ], [ 11.561909620632491, 53.010020453381173 ], [ 11.551987745837778, 53.005653795186447 ], [ 11.538965284720121, 53.005550442398999 ], [ 11.530748732268194, 53.007695014313413 ], [ 11.525167677246486, 53.008237617571979 ], [ 11.515090772820884, 53.006738999904883 ], [ 11.509768101116947, 53.003845120056212 ], [ 11.506822544424892, 53.001132107360831 ], [ 11.501861607027536, 52.991907864556254 ], [ 11.500931431040669, 52.989143175017489 ], [ 11.496280552005828, 52.969402778215624 ], [ 11.496280552005828, 52.963020738416333 ], [ 11.496590610368344, 52.959971828936716 ], [ 11.497985874348615, 52.954494126702571 ], [ 11.500466343047265, 52.949533189305214 ], [ 11.502016635759105, 52.944158840757893 ], [ 11.500156283785429, 52.942608548046053 ], [ 11.49829593271113, 52.941833400790813 ], [ 11.47938235820925, 52.941239122487502 ], [ 11.470390659401403, 52.940076402503962 ], [ 11.412358025602373, 52.906435045440958 ], [ 11.408740676241223, 52.905246487035697 ], [ 11.373704054298628, 52.899562079226541 ], [ 11.312880894337809, 52.883800767891103 ], [ 11.292261996593879, 52.883180650266752 ], [ 11.284458856191236, 52.885299383759502 ], [ 11.278722772437959, 52.884317531828628 ], [ 11.272831659053793, 52.882095445548373 ], [ 11.264305047340031, 52.87754791930098 ], [ 11.258103874694029, 52.876307684951655 ], [ 11.253297966927619, 52.876152656220086 ], [ 11.250507439866453, 52.876927802576006 ], [ 11.248181999899373, 52.877857978562815 ], [ 11.246166620093447, 52.879563300006282 ], [ 11.244306268119772, 52.881578680711527 ], [ 11.242911004139501, 52.884059150309497 ], [ 11.240895623434255, 52.886152045380584 ], [ 11.23789838989876, 52.887857367723313 ], [ 11.225341016774507, 52.890983792468035 ], [ 11.222240431350826, 52.892482408336434 ], [ 11.21975996265212, 52.894446113097615 ], [ 11.216969434691634, 52.89625478822785 ], [ 11.213558790905438, 52.897753404096306 ], [ 11.165293003169552, 52.903256943852853 ], [ 11.106640251746228, 52.900595608000856 ], [ 11.098888787287706, 52.901422431200217 ], [ 11.080905388772635, 52.907520250159394 ], [ 11.050778029182709, 52.91227448198174 ], [ 11.034344924278798, 52.913075466759381 ], [ 11.014656203421055, 52.911861069932399 ], [ 11.002512241446766, 52.908708808564654 ], [ 11.00065189037241, 52.907649441368619 ], [ 10.99987674311717, 52.906900133434362 ], [ 10.998791538398791, 52.905866603760728 ], [ 10.99739627441852, 52.903902899898867 ], [ 10.99584598080736, 52.901370755256096 ], [ 10.994760776088924, 52.898476874508106 ], [ 10.993985629733004, 52.89550548029365 ], [ 10.993675571370488, 52.89263743796738 ], [ 10.993520541739599, 52.887624823726583 ], [ 10.993055453746194, 52.885997015749638 ], [ 10.991660189765923, 52.883904119779288 ], [ 10.989334750698163, 52.882121283970037 ], [ 10.970421177095659, 52.873103745841149 ], [ 10.960654331032515, 52.865145575807674 ], [ 10.941689079687251, 52.859073595270161 ], [ 10.914093865639359, 52.853725084245241 ], [ 10.89890099508483, 52.848919176478773 ], [ 10.885516798761216, 52.847162177292603 ], [ 10.842522006785146, 52.848479926007769 ], [ 10.795393100611079, 52.846335354093299 ], [ 10.762010125067206, 52.838377184059766 ], [ 10.75859948128101, 52.835095730583475 ], [ 10.760769890717881, 52.829953925133509 ], [ 10.760459832355366, 52.826491604503929 ], [ 10.75782433402577, 52.821737371782262 ], [ 10.756739129307334, 52.818171699264497 ], [ 10.75704918766985, 52.815174465729001 ], [ 10.759219598006041, 52.810006821857314 ], [ 10.759994745261281, 52.807242133217869 ], [ 10.76014977399285, 52.804296577425077 ], [ 10.76014977399285, 52.801351019833646 ], [ 10.757359246032365, 52.792436835391641 ], [ 10.756739129307334, 52.789491278699529 ], [ 10.75689415893828, 52.786494046063353 ], [ 10.757979363656716, 52.783626003737083 ], [ 10.75937462673761, 52.781688137397623 ], [ 10.763715448309256, 52.77734731672524 ], [ 10.774257439828943, 52.761689358177307 ], [ 10.778753289232895, 52.758382066279296 ], [ 10.791672397563104, 52.750372219402379 ], [ 10.793842807899239, 52.747943427547114 ], [ 10.794772982986785, 52.740372830241881 ], [ 10.796168246967, 52.734094143230095 ], [ 10.800974154733467, 52.722466946092652 ], [ 10.805935093030087, 52.718100286998606 ], [ 10.811206088789959, 52.71605906787164 ], [ 10.821748081208966, 52.71605906787164 ], [ 10.828724399311568, 52.713785304748001 ], [ 10.836940951763495, 52.710271308174299 ], [ 10.847069533032482, 52.697352199844147 ], [ 10.884896681136922, 52.651411852075285 ], [ 10.919829950291955, 52.619475816455747 ], [ 10.928201532374828, 52.614204819796555 ], [ 10.933782585597839, 52.612912910402486 ], [ 10.937348259914245, 52.613843085489975 ], [ 10.948665398689172, 52.620509345230062 ], [ 10.952076043374689, 52.621801256422827 ], [ 10.957192010402935, 52.622524725935307 ], [ 10.963289829362111, 52.622111313886023 ], [ 10.973366732888394, 52.619320786824801 ], [ 10.97677737757391, 52.616271878244561 ], [ 10.97770755356072, 52.61317129192156 ], [ 10.976312289580505, 52.610587470435405 ], [ 10.974296908875203, 52.608313707311709 ], [ 10.969335972377223, 52.604360460267003 ], [ 10.952696160999039, 52.593275865488749 ], [ 10.950370721031959, 52.591157131995999 ], [ 10.948355340326657, 52.588935044816424 ], [ 10.947115105977332, 52.586351223330269 ], [ 10.946494989252358, 52.583612372213167 ], [ 10.945874870728687, 52.567928575243513 ], [ 10.946494989252358, 52.562941800323813 ], [ 10.949130486682577, 52.553743395041636 ], [ 10.951300897018768, 52.548989163219289 ], [ 10.953678012929913, 52.545475164846948 ], [ 10.955848423266104, 52.543382269775918 ], [ 10.960809359764141, 52.539687405149607 ], [ 10.963754917355516, 52.538059597172662 ], [ 10.966390414785792, 52.536199246098306 ], [ 10.99414065936395, 52.508991603879394 ], [ 10.999566684754711, 52.502583727457022 ], [ 11.001737095090846, 52.498139553097872 ], [ 10.998946567130361, 52.497054348379436 ], [ 10.994450717726409, 52.496899318748547 ], [ 10.97600223121799, 52.499483141134021 ], [ 10.971351353082468, 52.499586493921527 ], [ 10.966855502779197, 52.499121405928122 ], [ 10.962669711737817, 52.498346259572202 ], [ 10.955641716791774, 52.496046658026842 ], [ 10.952541131368093, 52.49441885004984 ], [ 10.950060661770124, 52.492455146188036 ], [ 10.948355340326657, 52.490181383064339 ], [ 10.947270134708958, 52.487804267153194 ], [ 10.946805046715497, 52.484186916892668 ], [ 10.946184929990523, 52.482843328856518 ], [ 10.945254754003656, 52.481603095406513 ], [ 10.943239373298411, 52.479587713801948 ], [ 10.941379022224055, 52.476435452434146 ], [ 10.940448846237246, 52.472766425330235 ], [ 10.939053582256975, 52.462121080123723 ], [ 11.010728793898693, 52.403468328700399 ], [ 11.015379672933534, 52.400626125695112 ], [ 11.020857375167736, 52.398300685728032 ], [ 11.024423048584822, 52.397215481009596 ], [ 11.037600539333425, 52.394838365098451 ], [ 11.066952751668168, 52.379748847331427 ], [ 11.070053337991169, 52.376544908220922 ], [ 11.072998894683224, 52.372178250026195 ], [ 11.072017042752293, 52.368535061344005 ], [ 11.070466750040453, 52.364736843030869 ], [ 11.069123162004303, 52.358458156918402 ], [ 11.066746046992478, 52.355693468278901 ], [ 11.063800490300366, 52.353833116305225 ], [ 11.047057326134677, 52.350965073978955 ], [ 11.018997023194061, 52.348742987698699 ], [ 11.008403354830932, 52.346314194944114 ], [ 11.00142703582901, 52.343730374357278 ], [ 10.999256626392196, 52.342490139108634 ], [ 10.999256626392196, 52.340319728772442 ], [ 11.000031772748116, 52.338149319335571 ], [ 11.000806919104036, 52.33334341156916 ], [ 11.001737095090846, 52.33044953082117 ], [ 11.002977329440171, 52.328847561265889 ], [ 11.005922886132282, 52.327684842181668 ], [ 11.013829380221694, 52.325798651786329 ], [ 11.020702344637471, 52.323163154356052 ], [ 11.022872755872982, 52.321638699166613 ], [ 11.023957960591417, 52.320424303238951 ], [ 11.024733106947338, 52.318305568846881 ], [ 11.025198194940742, 52.31598012977912 ], [ 11.026128370927552, 52.313809719442986 ], [ 11.027523634008503, 52.312259425831826 ], [ 11.030469190700558, 52.31019236918246 ], [ 11.033724805755185, 52.306471666134485 ], [ 11.033724805755185, 52.303706977494983 ], [ 11.032019484311718, 52.301381537527902 ], [ 11.021012403899306, 52.295722968140467 ], [ 11.01568973129605, 52.2916922058306 ], [ 11.014139438584209, 52.289676826024674 ], [ 11.01475955620856, 52.287403062900978 ], [ 11.027213575645987, 52.275155748139241 ], [ 11.033414748291989, 52.271124985829431 ], [ 11.03744550880316, 52.269006253235943 ], [ 11.042096387838001, 52.263476874158414 ], [ 11.044576857436027, 52.261771551815627 ], [ 11.047987502121487, 52.261203111034717 ], [ 11.055893996210955, 52.262598375014989 ], [ 11.060699903977365, 52.261409817509048 ], [ 11.062250196689206, 52.258515936761057 ], [ 11.061785108695801, 52.25086782509004 ], [ 11.062715284682611, 52.245906886793364 ], [ 11.063645460669477, 52.243684801412428 ], [ 11.066332634943137, 52.243503933359818 ], [ 11.068503045279328, 52.245028388549258 ], [ 11.070466750040453, 52.246940416466998 ], [ 11.072637160376644, 52.249937649103174 ], [ 11.073463982676628, 52.250764472302535 ], [ 11.07563439301282, 52.251281236240061 ], [ 11.078424920073985, 52.250971177877545 ], [ 11.082920770377257, 52.247147122042009 ], [ 11.084471063089097, 52.243658962990708 ], [ 11.085246209445017, 52.240093289573622 ], [ 11.085091179814071, 52.230714016238835 ], [ 11.084316034357471, 52.227820136390164 ], [ 11.082920770377257, 52.225132962116504 ], [ 11.080905388772635, 52.222833360571087 ], [ 11.078269891342416, 52.220998847019132 ], [ 11.072017042752293, 52.218750922317213 ], [ 11.0579093769162, 52.217071438396147 ], [ 11.03744550880316, 52.211464544952776 ], [ 11.034189893748589, 52.20960419387842 ], [ 11.029073926720343, 52.206116034827119 ], [ 11.020702344637471, 52.194049588117991 ], [ 11.019307081556576, 52.18999298828578 ], [ 11.019307081556576, 52.186866564440379 ], [ 11.022717726242035, 52.181983141408807 ], [ 11.025043166209116, 52.179347643079211 ], [ 11.027213575645987, 52.177538967049657 ], [ 11.030004102707153, 52.175833644706927 ], [ 11.03325971776178, 52.174438382525295 ], [ 11.037135451340021, 52.173327338485876 ], [ 11.041631300743916, 52.172836412070751 ], [ 11.045972121416241, 52.173146471332586 ], [ 11.050467969920874, 52.171699531408194 ], [ 11.054343702599795, 52.16839223951024 ], [ 11.0579093769162, 52.158005275822802 ], [ 11.0579093769162, 52.152837632850435 ], [ 11.056514112935929, 52.148858548283329 ], [ 11.048297559584682, 52.139711818945273 ], [ 11.043336623086645, 52.135500190381435 ], [ 11.0382206560584, 52.131701972068356 ], [ 11.013829380221694, 52.118937893369036 ], [ 10.992900425014568, 52.111599840060535 ], [ 10.958122186389801, 52.104830227532943 ], [ 10.951610955381284, 52.102375597255957 ], [ 10.948820428320118, 52.099740098926418 ], [ 10.947735222702363, 52.096975410286916 ], [ 10.948510369957603, 52.094856675894846 ], [ 10.949440545045093, 52.093668118388905 ], [ 10.951765985012173, 52.09222117846457 ], [ 10.967165562041032, 52.084934801100189 ], [ 10.969335972377223, 52.083539537119918 ], [ 10.970111117833824, 52.081214098052158 ], [ 10.970731234558798, 52.077079982954842 ], [ 10.969956089102197, 52.068915107346299 ], [ 10.968405796390357, 52.064574285774654 ], [ 10.965925326792387, 52.061422024406852 ], [ 10.962979770999596, 52.059820054851627 ], [ 10.95905236237661, 52.058579820502302 ], [ 10.955538364004269, 52.057959702877952 ], [ 10.945564813265491, 52.057701321358877 ], [ 10.89621381991185, 52.058528144558181 ], [ 10.876215040691534, 52.056667792584506 ], [ 10.850325148087109, 52.05025991526287 ], [ 10.717465041278615, 52.05023407684115 ], [ 10.660827670560536, 52.044730536185284 ], [ 10.652456089376983, 52.042611802692534 ], [ 10.651060825396769, 52.040286362725453 ], [ 10.651215855027658, 52.037702542138561 ], [ 10.651991001383578, 52.035015366965581 ], [ 10.652146030115205, 52.032379869535305 ], [ 10.651215855027658, 52.02979604804915 ], [ 10.643309360038927, 52.024473375445893 ], [ 10.635092807587, 52.017755438862366 ], [ 10.621605259375201, 52.01052073834137 ], [ 10.61504235242262, 52.00881541599864 ], [ 10.609306267770023, 52.008195299273609 ], [ 10.580005731379401, 52.01031403276636 ], [ 10.5738045587334, 52.008867091942705 ], [ 10.570083855685368, 52.006800035293395 ], [ 10.569618767691964, 52.004190375385463 ], [ 10.570083855685368, 52.002149156258554 ], [ 10.570548943678773, 52.001218981171007 ], [ 10.571169061303124, 52.000340481128262 ], [ 10.572719354014964, 51.998609321263132 ], [ 10.586206903126083, 51.987162991278979 ], [ 10.587757195837924, 51.985354316148744 ], [ 10.588532342193844, 51.983752345694199 ], [ 10.590237663637254, 51.976155910866567 ], [ 10.615352410785135, 51.968404446408044 ], [ 10.618608025839706, 51.966053168019243 ], [ 10.624705844798882, 51.960291245844303 ], [ 10.629356723833723, 51.958301703560721 ], [ 10.634782749224485, 51.957655748414027 ], [ 10.641914096957976, 51.958921821185072 ], [ 10.644549595287572, 51.958689277188341 ], [ 10.645479771274438, 51.957087306733797 ], [ 10.644394564757363, 51.95481354450942 ], [ 10.641759067327087, 51.953056546222626 ], [ 10.626876255135073, 51.948922431125254 ], [ 10.623620640080446, 51.947578843988424 ], [ 10.618142937846301, 51.943444728891109 ], [ 10.61504235242262, 51.934246324508251 ], [ 10.613026970818055, 51.924531155288548 ], [ 10.61349205881146, 51.923135891308334 ], [ 10.61504235242262, 51.920707099453068 ], [ 10.631837191633053, 51.913679104507025 ], [ 10.635247837217889, 51.911560370114955 ], [ 10.638193393910001, 51.906754462348545 ], [ 10.641138949702736, 51.891561590894696 ], [ 10.640983920971166, 51.886652330340723 ], [ 10.639898716252731, 51.883551744017723 ], [ 10.638503452272516, 51.882259832825014 ], [ 10.636333041936325, 51.880657864169052 ], [ 10.63431766123108, 51.878642483463807 ], [ 10.630907017444883, 51.873655706745467 ], [ 10.628736606209372, 51.871459458886875 ], [ 10.625791050416638, 51.869935003697435 ], [ 10.618142937846301, 51.867997138257294 ], [ 10.614422234798269, 51.86618846312706 ], [ 10.611011590112753, 51.863552964797464 ], [ 10.607600946326613, 51.858850409818558 ], [ 10.604345330372666, 51.856318264276467 ], [ 10.600624627324692, 51.854561265989616 ], [ 10.587137079112892, 51.850995592572531 ], [ 10.582176140816216, 51.847739977517904 ], [ 10.580160760110971, 51.844897772714035 ], [ 10.580160760110971, 51.830273342041096 ], [ 10.57783532104321, 51.805210273535295 ], [ 10.578300409036615, 51.800404364869507 ], [ 10.578920525761646, 51.799629218513587 ], [ 10.580005731379401, 51.796631984978092 ], [ 10.582486200078051, 51.78448802300386 ], [ 10.583881463159003, 51.780302231962423 ], [ 10.585276727139217, 51.777925116950541 ], [ 10.590392694167463, 51.775082913045992 ], [ 10.595508661195765, 51.771465562785465 ], [ 10.59767907063258, 51.76945018208022 ], [ 10.602950067291772, 51.76578115497631 ], [ 10.609151239038454, 51.762732245496693 ], [ 10.616127557141056, 51.760045071223033 ], [ 10.619228142564737, 51.758546454455256 ], [ 10.622225376100232, 51.755549220919761 ], [ 10.624550815167993, 51.751621813196095 ], [ 10.628271519115287, 51.741183173564593 ], [ 10.630131870189643, 51.738392646503428 ], [ 10.638193393910001, 51.731364651557385 ], [ 10.644239536025736, 51.721339423075904 ], [ 10.646409946361928, 51.719840807207447 ], [ 10.65819217313026, 51.713665472983166 ], [ 10.661137729822372, 51.71100413713117 ], [ 10.664083285615106, 51.707231757239754 ], [ 10.668269076656543, 51.698291734376028 ], [ 10.669199252643409, 51.692969061772772 ], [ 10.669044223911783, 51.669869697128775 ], [ 10.697621290789925, 51.637365220728327 ], [ 10.648890415060578, 51.619743557419213 ], [ 10.631372105438288, 51.607031155563334 ], [ 10.629666782196239, 51.603207098828534 ], [ 10.629201694202834, 51.600985012548279 ], [ 10.630751986914674, 51.599176337417987 ], [ 10.635092807587, 51.595197251951618 ], [ 10.640828892239597, 51.588582669054915 ], [ 10.650595737403364, 51.581658026896378 ], [ 10.652301059746094, 51.580805366174673 ], [ 10.65416141082045, 51.578247382210918 ], [ 10.655401646069095, 51.574423326375381 ], [ 10.653386265363849, 51.565793361874114 ], [ 10.649975619779013, 51.562486069976103 ], [ 10.645324740744172, 51.561142482839273 ], [ 10.641604037696197, 51.562150174091244 ], [ 10.63834842264157, 51.563545437172138 ], [ 10.624395786436367, 51.573157254503656 ], [ 10.618452996208816, 51.573441474444451 ], [ 10.610391473387779, 51.572562975301025 ], [ 10.561970656020947, 51.557421779791298 ], [ 10.557474805717675, 51.556594957491257 ], [ 10.526623975715893, 51.555406399085996 ], [ 10.514221633121849, 51.556284898229421 ], [ 10.478823275973411, 51.574707547215496 ], [ 10.431022577130193, 51.590701402547666 ], [ 10.421720819060511, 51.591864122531206 ], [ 10.414279412065184, 51.58982290340424 ], [ 10.400481804591607, 51.587962551430564 ], [ 10.385237258092957, 51.587807521799675 ], [ 10.378415967822662, 51.58677399392468 ], [ 10.374850295304896, 51.585740465150309 ], [ 10.374075148049656, 51.584035142807579 ], [ 10.374075148049656, 51.582588202883244 ], [ 10.374230176781225, 51.581761380583202 ], [ 10.374850295304896, 51.580934557383898 ], [ 10.37779585109763, 51.578040675736588 ], [ 10.37857099835287, 51.576774603864862 ], [ 10.379346143809471, 51.574681707894456 ], [ 10.379501174339737, 51.571994534520115 ], [ 10.377950880728577, 51.56631012581164 ], [ 10.3753153832983, 51.560677394845868 ], [ 10.364618361248347, 51.542435614811723 ], [ 10.357642043145745, 51.536389471796667 ], [ 10.341363966973461, 51.528948065700661 ], [ 10.338211703807076, 51.525950833064485 ], [ 10.337281527820267, 51.522953600428309 ], [ 10.335111118383395, 51.521196601242139 ], [ 10.33232059132223, 51.519801337261868 ], [ 10.323793979608467, 51.517269191719777 ], [ 10.306430697818428, 51.510551256035626 ], [ 10.301624790052017, 51.507218125715895 ], [ 10.298679233359906, 51.504091701870493 ], [ 10.297438999010581, 51.499880073306713 ], [ 10.294493442318469, 51.493498033507421 ], [ 10.291237827263899, 51.491275947227166 ], [ 10.286897006591573, 51.490061550400185 ], [ 10.282504509975126, 51.489441432775891 ], [ 10.239561394842497, 51.472103990306891 ], [ 10.232275018377379, 51.470088608702326 ], [ 10.222766553833367, 51.470036932758205 ], [ 10.218735793322196, 51.470812079114125 ], [ 10.2161002949926, 51.472310695881902 ], [ 10.214394971750551, 51.474016018224631 ], [ 10.213929883757089, 51.475152899786451 ], [ 10.213464796663004, 51.477013250860807 ], [ 10.21284467903871, 51.478046780534441 ], [ 10.209589063984083, 51.479493720458834 ], [ 10.204473096955837, 51.480113837183808 ], [ 10.19470625179207, 51.479390366772009 ], [ 10.189590284763824, 51.477891750903552 ], [ 10.185869581715792, 51.475979722985812 ], [ 10.183544141748712, 51.474016018224631 ], [ 10.181373732311897, 51.471871446310161 ], [ 10.180133497962572, 51.469675198451625 ], [ 10.179668409969111, 51.467530626537155 ], [ 10.179978468331626, 51.466161200978604 ], [ 10.181218702680951, 51.46455923142338 ], [ 10.182148878667817, 51.462802232237209 ], [ 10.181993849036871, 51.461355292312874 ], [ 10.179823438700737, 51.458177192523408 ], [ 10.172227003873104, 51.44934052244713 ], [ 10.168454623981688, 51.44665334727415 ], [ 10.163338656953442, 51.444818833722195 ], [ 10.149851107842323, 51.442648424285323 ], [ 10.146750523317962, 51.440633043580078 ], [ 10.146285435324558, 51.438281765191277 ], [ 10.146595492787753, 51.437170722051178 ], [ 10.149696079110754, 51.431796373503801 ], [ 10.099724969032081, 51.433036606953806 ], [ 10.084687127209122, 51.431072903092002 ], [ 10.078796013824956, 51.425130112864395 ], [ 10.073369989333514, 51.420840969035453 ], [ 10.069184198292078, 51.420065823578852 ], [ 10.066083611969077, 51.420944321822958 ], [ 10.045723096643599, 51.432106431866316 ], [ 10.041692336132371, 51.432261461497205 ], [ 10.039676955427126, 51.430556139154476 ], [ 10.03704145709753, 51.4275589065183 ], [ 10.03208051880091, 51.424199937776905 ], [ 10.017662794602302, 51.419497381898623 ], [ 10.01146162285562, 51.416758530781522 ], [ 10.000092808136571, 51.408231919967079 ], [ 9.949243198015154, 51.381799425003408 ], [ 9.914619989021276, 51.397664090025728 ], [ 9.905783318944998, 51.403684393719743 ], [ 9.905628289314109, 51.405131334543455 ], [ 9.905318230951593, 51.411280829446696 ], [ 9.904233026233157, 51.416965237255852 ], [ 9.901597527903562, 51.418980617961097 ], [ 9.897566765593751, 51.419083970748602 ], [ 9.894156120908235, 51.417895413242718 ], [ 9.891520622578639, 51.416345120530877 ], [ 9.884957717424697, 51.41117747755851 ], [ 9.882322218195782, 51.410893255819076 ], [ 9.869764845071529, 51.410893255819076 ], [ 9.865579054030093, 51.410143947884876 ], [ 9.862788526968927, 51.408697007960541 ], [ 9.861858350982118, 51.40673330319936 ], [ 9.861703322250492, 51.404407864131599 ], [ 9.862788526968927, 51.401539821805329 ], [ 9.863873731687363, 51.399679469831653 ], [ 9.865424025298523, 51.397638250704688 ], [ 9.867129346741933, 51.395984606104662 ], [ 9.875500928824806, 51.384719143273799 ], [ 9.875500928824806, 51.381721909738303 ], [ 9.873175489757045, 51.378879705833754 ], [ 9.866044142023497, 51.373350328554807 ], [ 9.860928175894571, 51.372058417362041 ], [ 9.856432325591356, 51.372110094205482 ], [ 9.852401564180809, 51.374280504541616 ], [ 9.849145949126239, 51.376502590821872 ], [ 9.844495070091398, 51.381515204163293 ], [ 9.838914015069747, 51.390455227027076 ], [ 9.837208692726961, 51.393607490193517 ], [ 9.832816196110571, 51.397586574760567 ], [ 9.825994906739538, 51.400893867557897 ], [ 9.808011509123844, 51.407250068036205 ], [ 9.800725131759407, 51.40885203669211 ], [ 9.796384311986401, 51.408386948698706 ], [ 9.795919223992996, 51.40673330319936 ], [ 9.796384311986401, 51.404304511344094 ], [ 9.797314487073891, 51.402237453795408 ], [ 9.798399691792326, 51.400583808296062 ], [ 9.801655307746216, 51.397199002032266 ], [ 9.798709751054162, 51.394537665281007 ], [ 9.792043491314075, 51.39035187423957 ], [ 9.767962273839828, 51.385649319260665 ], [ 9.75586998870898, 51.379163927573188 ], [ 9.71365034308883, 51.363790188066673 ], [ 9.712565138370451, 51.362601630560789 ], [ 9.712565138370451, 51.361103013793013 ], [ 9.71272016800134, 51.358829251568693 ], [ 9.715355666330936, 51.354333401265421 ], [ 9.718921339748022, 51.350690213482551 ], [ 9.742847527591323, 51.334644680407621 ], [ 9.750754021680734, 51.331337389408986 ], [ 9.754474724728766, 51.330872301415525 ], [ 9.756955194326736, 51.33213837328725 ], [ 9.759435662126066, 51.334282945201721 ], [ 9.76997765544445, 51.340561632213507 ], [ 9.775248651204265, 51.341879380928674 ], [ 9.779486118189766, 51.341879380928674 ], [ 9.781656527626637, 51.340871690576023 ], [ 9.783206821237798, 51.339915676167493 ], [ 9.784757113949638, 51.338701280239889 ], [ 9.784757113949638, 51.337538561155668 ], [ 9.784292025956233, 51.335884914757003 ], [ 9.782741733244393, 51.333843696529357 ], [ 9.779951206183227, 51.331389065353051 ], [ 9.778659294990462, 51.330743110206356 ], [ 9.777574090272026, 51.329993801372837 ], [ 9.776178827191131, 51.329166979072795 ], [ 9.774473503949025, 51.327771715092524 ], [ 9.773388299230589, 51.326686510374145 ], [ 9.772768181606295, 51.325291246393874 ], [ 9.772613152874669, 51.323430895319518 ], [ 9.772923211237185, 51.321079616930774 ], [ 9.773078240868131, 51.319038397803808 ], [ 9.769512566551668, 51.314878445184092 ], [ 9.762071161354982, 51.309323229483425 ], [ 9.73354577042096, 51.293251857986832 ], [ 9.725639276331549, 51.290668036500676 ], [ 9.722021926071022, 51.290461330925666 ], [ 9.711479932752695, 51.291520698121701 ], [ 9.682644484355478, 51.314955960449197 ], [ 9.669466993606875, 51.319555161741278 ], [ 9.662283969929263, 51.318935045016303 ], [ 9.655927768551692, 51.319503485797213 ], [ 9.586267937615219, 51.339450589073408 ], [ 9.569369744717903, 51.342344468922079 ], [ 9.541257764933903, 51.358312485832528 ], [ 9.535521681180626, 51.363738512122609 ], [ 9.534746534824706, 51.366580716027215 ], [ 9.538157178610902, 51.366218980821259 ], [ 9.55350507969564, 51.361929836992374 ], [ 9.562548455346928, 51.360637925799608 ], [ 9.567044304750823, 51.360612088277207 ], [ 9.570920037429744, 51.361387233733808 ], [ 9.572160271779126, 51.363996894541003 ], [ 9.571230095792259, 51.36838939115745 ], [ 9.564563836052173, 51.376760973240323 ], [ 9.562858513709443, 51.381360175431723 ], [ 9.563633660964683, 51.384460760855404 ], [ 9.572005243047499, 51.389705919092876 ], [ 9.574640741377095, 51.391953843794852 ], [ 9.576966180444856, 51.395261134793486 ], [ 9.578981561150101, 51.397586574760567 ], [ 9.582082146573782, 51.398826809109948 ], [ 9.585957879252703, 51.398568426691497 ], [ 9.592934198254625, 51.396966458035592 ], [ 9.596809930034226, 51.397018133979657 ], [ 9.604251336130233, 51.398826809109948 ], [ 9.63251834464586, 51.400945543502019 ], [ 9.636239047693891, 51.403736070563184 ], [ 9.638564486761652, 51.408697007960541 ], [ 9.634688754982051, 51.434018459784056 ], [ 9.635308871707025, 51.437739162832088 ], [ 9.636549106056407, 51.441666572354393 ], [ 9.637014194049812, 51.44740265610767 ], [ 9.635308871707025, 51.451278387887271 ], [ 9.630968051934019, 51.455386664562866 ], [ 9.63003787594721, 51.458409736520082 ], [ 9.630968051934019, 51.460735174688523 ], [ 9.636549106056407, 51.465024319416784 ], [ 9.638719517291861, 51.46802155205296 ], [ 9.638254429298456, 51.4702953151766 ], [ 9.63561893096886, 51.47205231436277 ], [ 9.627867465611018, 51.474171047855521 ], [ 9.623061557844608, 51.477323310122642 ], [ 9.616395298104521, 51.483782864287718 ], [ 9.596809930034226, 51.511584784809941 ], [ 9.594794549328981, 51.518199367706643 ], [ 9.596809930034226, 51.520576484517107 ], [ 9.605956659372339, 51.521093248454633 ], [ 9.609677362420314, 51.521971746698739 ], [ 9.6125195654256, 51.523677069940788 ], [ 9.614534946130846, 51.52739777298882 ], [ 9.615620150849281, 51.533056342376256 ], [ 9.615930210111117, 51.543985908422883 ], [ 9.617170443561122, 51.549825344064345 ], [ 9.619650913159091, 51.552486680815662 ], [ 9.623061557844608, 51.552254136818931 ], [ 9.629727816685374, 51.549566962545271 ], [ 9.63251834464586, 51.548843492133415 ], [ 9.636549106056407, 51.548430080983451 ], [ 9.641044956359622, 51.54858510971502 ], [ 9.644765659407653, 51.550032050538675 ], [ 9.645075717770169, 51.551685696038021 ], [ 9.635463901337971, 51.562150174091244 ], [ 9.633913607726811, 51.566000068348444 ], [ 9.633913607726811, 51.568893948197115 ], [ 9.63561893096886, 51.570857652058976 ], [ 9.637789341305051, 51.572149563251742 ], [ 9.639804722010297, 51.572614651245146 ], [ 9.641820102715542, 51.572511298457641 ], [ 9.643990513051733, 51.571917019255011 ], [ 9.668381788888439, 51.560315660539288 ], [ 9.671327344681174, 51.559282131764917 ], [ 9.677373487696286, 51.560780748532693 ], [ 9.686055129040938, 51.571942856777412 ], [ 9.666469760970699, 51.584965317895069 ], [ 9.659803501230556, 51.595145576007496 ], [ 9.657168002901017, 51.603930569240333 ], [ 9.654377475839851, 51.608168036225891 ], [ 9.650811802422709, 51.611216945705451 ], [ 9.630968051934019, 51.617211411877122 ], [ 9.627402377617614, 51.620260322256058 ], [ 9.625386996912368, 51.624032701248154 ], [ 9.623371616207123, 51.629458727538236 ], [ 9.620891148407736, 51.631112372138261 ], [ 9.616240269372895, 51.63064728504412 ], [ 9.605026483385473, 51.627469184355334 ], [ 9.59262413899279, 51.625738022691564 ], [ 9.585337761628409, 51.625996406009278 ], [ 9.577121209176426, 51.627081610727714 ], [ 9.564718865683119, 51.630388901726405 ], [ 9.560223016279167, 51.633799547311241 ], [ 9.556192253969357, 51.638217882349352 ], [ 9.553039991702235, 51.640000719057923 ], [ 9.54931928865426, 51.640259101476317 ], [ 9.545753615237118, 51.639303087067788 ], [ 9.542653028914117, 51.637778631878348 ], [ 9.537537061885871, 51.634161282517141 ], [ 9.53521162281811, 51.632145900912576 ], [ 9.532576125387891, 51.63028554983822 ], [ 9.52792524635305, 51.628786933070501 ], [ 9.520948927351128, 51.628089301080365 ], [ 9.507771436602525, 51.6283993603422 ], [ 9.499554884150598, 51.63010468178561 ], [ 9.494387241178231, 51.632094224968455 ], [ 9.49206180211047, 51.634264635304646 ], [ 9.490821566861825, 51.636796779947417 ], [ 9.49035647976774, 51.639638983852024 ], [ 9.490201450136794, 51.642636217387519 ], [ 9.49051150939863, 51.646021022751995 ], [ 9.49035647976774, 51.649302477127605 ], [ 9.486945835082224, 51.653281561694712 ], [ 9.482915072772357, 51.654676826574246 ], [ 9.466792026231019, 51.655012722459162 ], [ 9.44849856935349, 51.644031481367733 ], [ 9.440075311326552, 51.649044093809835 ], [ 9.393721550609087, 51.640052395001987 ], [ 9.378787061573632, 51.640388291786223 ], [ 9.376151564143356, 51.642119453449993 ], [ 9.374446241800626, 51.644393216573633 ], [ 9.373050977820355, 51.64726125800064 ], [ 9.372430861095324, 51.650981961048615 ], [ 9.372430861095324, 51.656252956808487 ], [ 9.373206008350564, 51.661446438202518 ], [ 9.374756301062405, 51.665012112518923 ], [ 9.376926711398596, 51.667440904374189 ], [ 9.379717237560442, 51.669146226716975 ], [ 9.386383498199848, 51.671781725046571 ], [ 9.38876061411105, 51.674158840957716 ], [ 9.390000847561055, 51.677750352796522 ], [ 9.387675409392614, 51.684907538052414 ], [ 9.387210321399209, 51.689403388355686 ], [ 9.38798546685581, 51.693020737716836 ], [ 9.389845818829485, 51.695087796164842 ], [ 9.393101433884055, 51.697568263964172 ], [ 9.39356652187746, 51.700617174343108 ], [ 9.392946405152486, 51.705268053377949 ], [ 9.390000847561055, 51.717256984821972 ], [ 9.38953575956765, 51.723923245461378 ], [ 9.389845818829485, 51.729400946796204 ], [ 9.39108605317881, 51.733845120256092 ], [ 9.392326286628816, 51.735343736124491 ], [ 9.394186638602491, 51.736713162582362 ], [ 9.396357048938626, 51.737875882565902 ], [ 9.399302605630737, 51.740252997577727 ], [ 9.401317987235302, 51.742681790332313 ], [ 9.403023308678712, 51.745420641449414 ], [ 9.404418572658983, 51.74976146122242 ], [ 9.405348747746473, 51.752138577133621 ], [ 9.406588982995174, 51.753223781852 ], [ 9.409534538787909, 51.754722397720457 ], [ 9.422556999905623, 51.759631660073012 ], [ 9.428138054927274, 51.762732245496693 ], [ 9.433719109948925, 51.767202257378244 ], [ 9.436664665741716, 51.770457872432814 ], [ 9.446018100654783, 51.785082302206433 ], [ 9.451909214039006, 51.797768867439231 ], [ 9.453149448388331, 51.805778714316205 ], [ 9.452064242770575, 51.816088161839161 ], [ 9.452839390025815, 51.820971584870733 ], [ 9.454544712368545, 51.824072171193734 ], [ 9.461676060102093, 51.82861969744107 ], [ 9.462141148095498, 51.83011831330947 ], [ 9.460900912846853, 51.83166860602131 ], [ 9.457645297792226, 51.833063870001581 ], [ 9.449428745340299, 51.835053412285106 ], [ 9.444157748681164, 51.835234280337716 ], [ 9.440540399319957, 51.838489895392343 ], [ 9.440075311326552, 51.840763658515982 ], [ 9.441625604038393, 51.843037420740359 ], [ 9.450979038052139, 51.850530504579069 ], [ 9.456095005080385, 51.855749824394877 ], [ 9.458420444148146, 51.859263820968522 ], [ 9.461210972108688, 51.865361639927698 ], [ 9.457955356154741, 51.867428697476385 ], [ 9.455164829093576, 51.868203843832305 ], [ 9.449738803702814, 51.867066962270485 ], [ 9.443382603224563, 51.864999904721799 ], [ 9.43309899322395, 51.862571112866533 ], [ 9.410309686043149, 51.860349025686958 ], [ 9.365609571724349, 51.861485908148097 ], [ 9.360183547232907, 51.860969143311308 ], [ 9.342510207080352, 51.856240749910626 ], [ 9.332123244292291, 51.854767971564627 ], [ 9.321994663023247, 51.856266588332346 ], [ 9.336154005702781, 51.882259832825014 ], [ 9.338324416038972, 51.893421942868315 ], [ 9.336464064065296, 51.900915024908443 ], [ 9.33460371299094, 51.905772610417614 ], [ 9.333208449010726, 51.908098050384694 ], [ 9.33072798031202, 51.91125031175244 ], [ 9.325870395702168, 51.916107897261611 ], [ 9.302150913433877, 51.923239244095839 ], [ 9.288973422685274, 51.923730170510908 ], [ 9.263186882868354, 51.921120509703712 ], [ 9.257295770383507, 51.921327216178042 ], [ 9.255280388778885, 51.922360744952414 ], [ 9.257760858376912, 51.924221096026713 ], [ 9.264892205211083, 51.928406887068149 ], [ 9.269233025883409, 51.931455797447086 ], [ 9.27310875766301, 51.935486558857576 ], [ 9.274710728117611, 51.937501939562821 ], [ 9.285872837261593, 51.964967963300865 ], [ 9.287268101241864, 51.970471503057411 ], [ 9.286027865993219, 51.97277110550209 ], [ 9.247528924320363, 51.983648993806014 ], [ 9.243343133278984, 51.983752345694199 ], [ 9.238227166250681, 51.983390611387563 ], [ 9.234041375209301, 51.982589627509299 ], [ 9.2301656434297, 51.981168525107307 ], [ 9.2278402025633, 51.979876613914598 ], [ 9.225979852388264, 51.978274645258637 ], [ 9.224274530045534, 51.976259264553391 ], [ 9.223654412421183, 51.974967353360626 ], [ 9.223344354058668, 51.97352041343629 ], [ 9.223654412421183, 51.97140167904422 ], [ 9.219158563017231, 51.970316474325784 ], [ 9.209960157735054, 51.97160838551855 ], [ 9.184535353124033, 51.979359849977072 ], [ 9.17538862468524, 51.983183905812552 ], [ 9.171047804012915, 51.985974432873775 ], [ 9.172598096724755, 51.987162991278979 ], [ 9.174768507960266, 51.988454902471744 ], [ 9.176318800672107, 51.990005195183585 ], [ 9.177093947028027, 51.991503811051984 ], [ 9.176938918296457, 51.99393260380657 ], [ 9.176628859034622, 51.995637926149357 ], [ 9.176783887766192, 51.996723130867792 ], [ 9.177404006289862, 51.997679145276322 ], [ 9.178799269370757, 51.998609321263132 ], [ 9.184845412385869, 52.000960597853293 ], [ 9.190426467407519, 52.004061184176294 ], [ 9.193216993569365, 52.006231594512428 ], [ 9.196007520630587, 52.00917715120454 ], [ 9.197092726248286, 52.01093415039071 ], [ 9.197867872604206, 52.013156235771646 ], [ 9.198798048591073, 52.016954454084782 ], [ 9.197867872604206, 52.019357408417648 ], [ 9.185620557842469, 52.037289130089277 ], [ 9.177404006289862, 52.053257147899046 ], [ 9.176628859034622, 52.056771145372011 ], [ 9.176938918296457, 52.058812364498976 ], [ 9.177714063753001, 52.060388494733218 ], [ 9.188256056172065, 52.07217072240087 ], [ 9.189806348883906, 52.074961249462092 ], [ 9.18949629142071, 52.079017849294303 ], [ 9.188256056172065, 52.085038153887638 ], [ 9.177093947028027, 52.094856675894846 ], [ 9.149292025606485, 52.102194729203347 ], [ 9.140920444422932, 52.10767243143755 ], [ 9.140145298067011, 52.11017873855792 ], [ 9.140300326798638, 52.11247833920396 ], [ 9.141695590778852, 52.115475571840136 ], [ 9.145106234565048, 52.121159980548612 ], [ 9.146346469813693, 52.125888373049975 ], [ 9.142935825128234, 52.128988959372975 ], [ 9.135494419032227, 52.131908678542629 ], [ 9.063974237021398, 52.138032335024207 ], [ 9.043768752226129, 52.136404527047262 ], [ 9.030901319840041, 52.137102159037397 ], [ 9.015553419654566, 52.135861924688072 ], [ 9.003616164154664, 52.133407294411086 ], [ 8.998810256388197, 52.133200588836075 ], [ 8.996484816421116, 52.134104926401221 ], [ 8.997414992407982, 52.137127997459061 ], [ 9.001600783449362, 52.142554022849822 ], [ 9.003461133624398, 52.144362697980114 ], [ 9.005786573591479, 52.14699819630971 ], [ 9.007336867202639, 52.14947866500836 ], [ 9.007801955196044, 52.15257925133136 ], [ 9.007491895934265, 52.155938219173436 ], [ 9.005941603222425, 52.161028346880698 ], [ 9.004236280879638, 52.164464829987878 ], [ 8.994314406084982, 52.177952379098997 ], [ 8.988061558394179, 52.188494371518004 ], [ 9.019429152333487, 52.194075426539655 ], [ 9.041753370621564, 52.192886868134451 ], [ 9.045939161662943, 52.194075426539655 ], [ 9.04764448400573, 52.196194160032405 ], [ 9.045784132931374, 52.204436550006733 ], [ 9.042838576239262, 52.210250149025114 ], [ 9.040823194634697, 52.213014838563936 ], [ 9.039117873191287, 52.216037910521152 ], [ 9.038497755566937, 52.218621731107987 ], [ 9.041908400252453, 52.223789374080297 ], [ 9.048574659992539, 52.227639269236874 ], [ 9.070485467130595, 52.236915187985517 ], [ 9.07265587656741, 52.239188951109156 ], [ 9.07079552639243, 52.240248318305191 ], [ 9.066299676089159, 52.241462714232853 ], [ 9.044078809689324, 52.244666653343359 ], [ 9.010902540619725, 52.25409760172289 ], [ 8.99271243742902, 52.256862291261712 ], [ 8.989611851106019, 52.258283392764326 ], [ 8.986666294413965, 52.260479641522238 ], [ 8.983255648829129, 52.264975490926133 ], [ 8.982480503372528, 52.267921048517564 ], [ 8.982790561735044, 52.2701172963761 ], [ 8.984960972071178, 52.273657132270785 ], [ 8.986976352776423, 52.279470730389846 ], [ 8.989146763112615, 52.288384914831909 ], [ 8.993332554154051, 52.316031805723242 ], [ 8.995089552440902, 52.322491359888318 ], [ 9.001135694556638, 52.332878323575756 ], [ 9.004236280879638, 52.336547349780346 ], [ 9.007801955196044, 52.339234524054007 ], [ 9.012607862962511, 52.340603950511877 ], [ 9.018033888353273, 52.341069036706642 ], [ 9.041133253896533, 52.339234524054007 ], [ 9.04919477671757, 52.339802964834917 ], [ 9.057618035643827, 52.344324653559909 ], [ 9.062889032302962, 52.346159166212544 ], [ 9.073896111816111, 52.348742987698699 ], [ 9.077926873226602, 52.35241201390329 ], [ 9.095445183748211, 52.37571808502156 ], [ 9.128363071298679, 52.408455105418739 ], [ 9.11084476077707, 52.442070624060023 ], [ 9.109759556058634, 52.446256415101459 ], [ 9.108984408803394, 52.451527411760594 ], [ 9.111309848770475, 52.45338776283495 ], [ 9.117355990886267, 52.456229966739556 ], [ 9.121076693934242, 52.457573553876387 ], [ 9.126037632230918, 52.460622464255323 ], [ 9.130223423272355, 52.464549871978988 ], [ 9.134564243045361, 52.471836249343426 ], [ 9.134099155051956, 52.474885158822985 ], [ 9.131618687252626, 52.476745509897341 ], [ 9.123712192263838, 52.477675685884151 ], [ 9.119836459584917, 52.478502509083512 ], [ 9.115960727805316, 52.480001125851231 ], [ 9.112705111851426, 52.481603095406513 ], [ 9.110534702414554, 52.482972520965063 ], [ 9.096685418097536, 52.495452378824211 ], [ 9.090949334344316, 52.497441922007056 ], [ 9.085678337685124, 52.498191229941256 ], [ 9.081182489180492, 52.497571113216281 ], [ 9.025630324080169, 52.479561876279547 ], [ 8.999120313851392, 52.462767036169737 ], [ 8.993952670879025, 52.458426215497411 ], [ 8.984030796084369, 52.444757799233003 ], [ 8.969303012623925, 52.416335761086486 ], [ 8.966667515193649, 52.413131821975981 ], [ 8.963876987233164, 52.41062551485561 ], [ 8.961241488903568, 52.40907522214377 ], [ 8.894372185927637, 52.399954332126697 ], [ 8.888015985449329, 52.397577216215552 ], [ 8.859128859309408, 52.391040148583954 ], [ 8.826727735696409, 52.388792222982659 ], [ 8.723994989377218, 52.395613512353691 ], [ 8.712781203389795, 52.397396349062205 ], [ 8.711075881047066, 52.398610744989867 ], [ 8.708595412348416, 52.400936184057628 ], [ 8.70751020673066, 52.403364976812213 ], [ 8.70673506037474, 52.407292385435198 ], [ 8.706580030743794, 52.41214997004505 ], [ 8.707200148368145, 52.417653509801596 ], [ 8.710300733791826, 52.428789781423234 ], [ 8.710610793053661, 52.432097073321245 ], [ 8.709525588335225, 52.434603380441615 ], [ 8.706269972381335, 52.439254259476456 ], [ 8.704719678770118, 52.442535712053427 ], [ 8.704254591676033, 52.446773179938305 ], [ 8.704409621306979, 52.451579087704715 ], [ 8.70673506037474, 52.461061712927687 ], [ 8.707200148368145, 52.464704902509197 ], [ 8.706580030743794, 52.47111277893157 ], [ 8.703634474051739, 52.480156155482177 ], [ 8.676194288735417, 52.511006985483959 ], [ 8.667512648290085, 52.514934394107001 ], [ 8.659606154200617, 52.519843655560237 ], [ 8.642811314090864, 52.524055284124017 ], [ 8.636610142344182, 52.524184475333243 ], [ 8.63211429204091, 52.523926092914849 ], [ 8.582608269955699, 52.50912079508862 ], [ 8.566485223414304, 52.507131252805038 ], [ 8.516979201329093, 52.508113104735969 ], [ 8.496670362846942, 52.506511135180745 ], [ 8.491864455080531, 52.503229681704397 ], [ 8.481115757086513, 52.498036201209686 ], [ 8.472124058278666, 52.494573880580106 ], [ 8.465767856001719, 52.491318263726839 ], [ 8.46390750492742, 52.489767971014999 ], [ 8.462667270578038, 52.48811432641503 ], [ 8.461737094591228, 52.486150620754529 ], [ 8.453985630132706, 52.461500963398692 ], [ 8.452125278159031, 52.457986965925727 ], [ 8.44809451674854, 52.454627997184275 ], [ 8.441118197746619, 52.451062323767189 ], [ 8.423703240911834, 52.445998033582384 ], [ 8.366910842361449, 52.441398831390927 ], [ 8.358384229748367, 52.442819932893542 ], [ 8.350632765289902, 52.445326240013912 ], [ 8.346602003879354, 52.445998033582384 ], [ 8.323812696698553, 52.445946356738943 ], [ 8.301436801567149, 52.45111399971131 ], [ 8.321332227999903, 52.41023794212731 ], [ 8.326448195028149, 52.404863593579933 ], [ 8.333889601124156, 52.398352363470792 ], [ 8.398898553025788, 52.379593817700481 ], [ 8.427734002322325, 52.366778063057154 ], [ 8.435072055630826, 52.361455390453898 ], [ 8.440963169015049, 52.35375560193944 ], [ 8.4496448103597, 52.338097643391507 ], [ 8.456001010837952, 52.321302802382377 ], [ 8.460186801879388, 52.304197903010788 ], [ 8.460961948235308, 52.286576239701674 ], [ 8.458791537899117, 52.2500926778348 ], [ 8.460961948235308, 52.214332587279046 ], [ 8.46390750492742, 52.204772446790969 ], [ 8.465612827270149, 52.203790594860038 ], [ 8.48685184083979, 52.195057278470586 ], [ 8.497600538833808, 52.18919200350814 ], [ 8.498375685189728, 52.186840725119339 ], [ 8.497135450840346, 52.183430081333142 ], [ 8.491864455080531, 52.176195379912826 ], [ 8.486231724114759, 52.170045885009586 ], [ 8.480960728354944, 52.165291653187239 ], [ 8.475844761326641, 52.161674302926713 ], [ 8.466077915263554, 52.156713365529356 ], [ 8.426028679979595, 52.140977891716318 ], [ 8.421687860206589, 52.137851466971597 ], [ 8.418277214621753, 52.133717352773601 ], [ 8.410215691800715, 52.118782863738147 ], [ 8.407890251833635, 52.115604763049362 ], [ 8.40587487112839, 52.114235338390131 ], [ 8.400758904999464, 52.112426663259896 ], [ 8.393627557265916, 52.111263943276356 ], [ 8.266865269416655, 52.133613999986096 ], [ 8.234722528222107, 52.116147366307871 ], [ 8.217669304794583, 52.103331610765224 ], [ 8.211468133047902, 52.096665351025081 ], [ 8.199014112711097, 52.08953400329159 ], [ 8.181030715095403, 52.083074449126514 ], [ 8.110440708172121, 52.066537991435155 ], [ 8.074577263929598, 52.074702867043641 ], [ 8.038248731693614, 52.070723782476534 ], [ 8.022900832407458, 52.066150417807535 ], [ 7.979440952437983, 52.040389716412278 ], [ 7.973859898315652, 52.038451850072818 ], [ 7.969829136005785, 52.038529365337922 ], [ 7.965178256970944, 52.041216538712263 ], [ 7.947814976080281, 52.047288520149039 ], [ 7.919702996296223, 52.05310211916742 ], [ 7.914742058898867, 52.054652410979941 ], [ 7.912416619831106, 52.056021837437811 ], [ 7.904200067379179, 52.071886502460075 ], [ 7.900169305069369, 52.078165188572541 ], [ 7.891642694254926, 52.08976654728832 ], [ 7.893192986966767, 52.095166734257361 ], [ 7.904665155372584, 52.102969876458587 ], [ 7.922183464994873, 52.111548163217151 ], [ 7.94719485755661, 52.118705349372362 ], [ 7.966573520951215, 52.121470038011807 ], [ 7.979440952437983, 52.121883450061148 ], [ 7.990189650432001, 52.123227037197978 ], [ 7.994375440574117, 52.127826240288755 ], [ 7.996855910172087, 52.133484808776871 ], [ 7.997165967635283, 52.138419907752507 ], [ 8.003522169912173, 52.150873928089311 ], [ 8.013909132700292, 52.164051418837857 ], [ 8.017319777385808, 52.170045885009586 ], [ 8.017474806117377, 52.17412832326346 ], [ 8.013754103069402, 52.175962835916096 ], [ 8.00848310730953, 52.177719835102266 ], [ 7.990499708794516, 52.181750597412133 ], [ 7.978200718088658, 52.182241522927939 ], [ 7.960217318674324, 52.180045274170027 ], [ 7.947504916818446, 52.179812731072673 ], [ 7.942543980320409, 52.181466376572018 ], [ 7.938668246742168, 52.184101874002238 ], [ 7.936807895667812, 52.190458076279185 ], [ 7.934327426969162, 52.194850571996255 ], [ 7.933087191720517, 52.195263984045596 ], [ 7.924043816968549, 52.196400864708096 ], [ 7.914742058898867, 52.196710923969931 ], [ 7.907765740796265, 52.198312893525213 ], [ 7.903579949754885, 52.200379951073842 ], [ 7.900634393062774, 52.204927477321178 ], [ 7.900789421794343, 52.20787303311397 ], [ 7.904200067379179, 52.211464544952776 ], [ 7.917377557228463, 52.220068671032323 ], [ 7.923268669713309, 52.226424872409893 ], [ 7.9254390800495, 52.230352281032935 ], [ 7.925594109680389, 52.233401191411815 ], [ 7.924198845700175, 52.23619171847298 ], [ 7.918617790678468, 52.242857978213124 ], [ 7.916447381241653, 52.247043769254503 ], [ 7.916137322879138, 52.249162502747254 ], [ 7.916292351610707, 52.250686957037431 ], [ 7.920013054658739, 52.254278468876237 ], [ 7.938203158748763, 52.265853990069559 ], [ 7.944249301763875, 52.271357529826105 ], [ 7.94626468336844, 52.274277248995816 ], [ 7.94641971210001, 52.276990260791877 ], [ 7.940838657078359, 52.283268947803663 ], [ 7.934792514962567, 52.288617458828639 ], [ 7.932777134257321, 52.291175441893074 ], [ 7.931381870277107, 52.293862617066111 ], [ 7.929211459940916, 52.299908759181847 ], [ 7.929676547934321, 52.303009345504847 ], [ 7.932157016632971, 52.305334785471928 ], [ 7.935877719681002, 52.306368313346979 ], [ 7.966418491320326, 52.309107164464024 ], [ 7.969984164737411, 52.31003734045089 ], [ 7.973549839053817, 52.3121043971002 ], [ 7.972774691798577, 52.314636541742971 ], [ 7.970449252730816, 52.317530423390281 ], [ 7.960682406667729, 52.326677150929754 ], [ 7.942233921058573, 52.34760610613688 ], [ 7.928746371947511, 52.359879259320337 ], [ 7.920013054658739, 52.364917711083478 ], [ 7.911021355850892, 52.37132558930449 ], [ 7.90575036009102, 52.377268377733401 ], [ 7.899704217075964, 52.378456936138662 ], [ 7.894898309309497, 52.378611965769551 ], [ 7.829269239783571, 52.362721463224943 ], [ 7.822602980043484, 52.363264065584133 ], [ 7.816195102721792, 52.365124417557809 ], [ 7.8051880232087, 52.373702704316315 ], [ 7.801777377623864, 52.375795600286722 ], [ 7.734132928292013, 52.401918036887878 ], [ 7.709793328399371, 52.407344062278639 ], [ 7.705607537357935, 52.409979559708859 ], [ 7.702920363084274, 52.413338528450311 ], [ 7.694393752269832, 52.447755031869178 ], [ 7.692068312302752, 52.453284410047445 ], [ 7.688657667617235, 52.457935289082286 ], [ 7.685402051663345, 52.459795641055962 ], [ 7.680596143896935, 52.462017727336217 ], [ 7.609075961886106, 52.47555695329072 ], [ 7.6055102875697, 52.475608629234841 ], [ 7.601169467796694, 52.474471746773645 ], [ 7.598844027829614, 52.472921454061805 ], [ 7.594038120063203, 52.468322251870404 ], [ 7.581894158988234, 52.436386217150186 ], [ 7.583134393337559, 52.432820542833781 ], [ 7.58623497876124, 52.427549547073909 ], [ 7.593883091331577, 52.425172431162764 ], [ 7.60070437980329, 52.419643052984497 ], [ 7.602564730877589, 52.417214260229912 ], [ 7.602099643783504, 52.41540558509962 ], [ 7.595123324781582, 52.413958645175285 ], [ 7.590575799433566, 52.410315457392414 ], [ 7.58701012511716, 52.404760239893108 ], [ 7.580808953370479, 52.390420030060341 ], [ 7.575692987241553, 52.382926948020213 ], [ 7.574762811254743, 52.383004462385998 ], [ 7.573057488911957, 52.382074287298508 ], [ 7.570577020213307, 52.380162259380711 ], [ 7.565771112446896, 52.37514964513997 ], [ 7.56158532140546, 52.371842353241959 ], [ 7.560500115787704, 52.371583970823565 ], [ 7.558484735082459, 52.371428941192676 ], [ 7.539726190211525, 52.3733926459538 ], [ 7.533318311990513, 52.373495998741305 ], [ 7.519055617422794, 52.371842353241959 ], [ 7.513629592032032, 52.370033678111724 ], [ 7.467379185001391, 52.346391710209218 ], [ 7.416477898935852, 52.313964749073875 ], [ 7.409036492839846, 52.310554104388359 ], [ 7.398339470789949, 52.30732432685619 ], [ 7.372604607816413, 52.303939521491714 ], [ 7.368108758412461, 52.302647610298948 ], [ 7.36325117380261, 52.300580552750262 ], [ 7.348523390342166, 52.29210561787994 ], [ 7.300567660968738, 52.271796780297166 ], [ 7.259174839447269, 52.266164049331394 ], [ 7.121508823073725, 52.262650050959053 ], [ 7.115772739320448, 52.259756171110382 ], [ 7.108486361956011, 52.255001939288036 ], [ 7.094378696119918, 52.248697414753849 ], [ 7.053089227385897, 52.237922879237487 ], [ 7.026682569944626, 52.238620510328246 ], [ 7.026600151575735, 52.23862268668762 ], [ 7.02073897300005, 52.245261739000071 ], [ 7.011850626000125, 52.266629944000087 ], [ 7.012470744000098, 52.284949239000056 ], [ 7.019705444000067, 52.300038758000042 ], [ 7.039755900000102, 52.328615825000028 ], [ 7.048230835000112, 52.365073547000023 ], [ 7.034174845000081, 52.390782573000095 ], [ 6.973300008000137, 52.451373190000069 ], [ 6.966995483000034, 52.449564515000091 ], [ 6.960794311000143, 52.442846578000044 ], [ 6.951492553000037, 52.43747222899999 ], [ 6.92648116100014, 52.432976380000085 ], [ 6.9002295330001, 52.431917012999989 ], [ 6.872014200000137, 52.434733378000047 ], [ 6.820337769000105, 52.446825663000041 ], [ 6.741169474000088, 52.453672791000102 ], [ 6.714814494000109, 52.461553447000043 ], [ 6.695074097000145, 52.475609437000045 ], [ 6.688976278000098, 52.490518087000012 ], [ 6.687529337000115, 52.508139751 ], [ 6.684015340000144, 52.525993958000058 ], [ 6.671716349000121, 52.541677755000094 ], [ 6.688252807000111, 52.542582093000064 ], [ 6.743753296000079, 52.559712830000095 ], [ 6.710990438000096, 52.576636862 ], [ 6.70396244300008, 52.583070577000043 ], [ 6.703652384000094, 52.591390483000012 ], [ 6.708199911000122, 52.599684550000077 ], [ 6.710163615000056, 52.608650412000017 ], [ 6.701792032000071, 52.619114889000045 ], [ 6.719083149000085, 52.626758982000055 ], [ 6.73703536000005, 52.634695333000067 ], [ 6.77052168700007, 52.641025696 ], [ 6.865399617000037, 52.641955872000054 ], [ 6.918419637000056, 52.632189026 ], [ 6.967718953000144, 52.636659038000019 ], [ 6.982808471000055, 52.632783305000075 ], [ 7.018465210000045, 52.625987854000115 ], [ 7.036655314000058, 52.647381897000045 ], [ 7.04399336700007, 52.682625224 ], [ 7.053295125000091, 52.790577291000048 ], [ 7.061976766000043, 52.824011942000126 ], [ 7.072150759000124, 52.841316552000066 ] ], [ [ 8.564469841809739, 53.211791083191883 ], [ 8.560594110030138, 53.212566230447123 ], [ 8.529536573554026, 53.224658515578028 ], [ 8.518684522772503, 53.226105455502363 ], [ 8.496050246121968, 53.224038397953677 ], [ 8.501372917825904, 53.217062078951756 ], [ 8.50457685693641, 53.211067612780084 ], [ 8.513000115862667, 53.199750474904477 ], [ 8.554444614227577, 53.189596056113089 ], [ 8.578060743708363, 53.179777534105881 ], [ 8.589222852852345, 53.17897654932824 ], [ 8.611030308102215, 53.180061754046676 ], [ 8.617231479848897, 53.17685781493617 ], [ 8.631494175315936, 53.159572049310611 ], [ 8.633354526390292, 53.141407782742931 ], [ 8.633819614383697, 53.138978989988345 ], [ 8.635834995088942, 53.13391469980354 ], [ 8.638005405425133, 53.130297350442333 ], [ 8.653818393603956, 53.115724595713516 ], [ 8.692937452901106, 53.088103543243903 ], [ 8.699603712641192, 53.085855618541927 ], [ 8.701774122977383, 53.083426825787342 ], [ 8.702704298964193, 53.079861152370256 ], [ 8.702394239702414, 53.054358832494074 ], [ 8.702704298964193, 53.052731025416449 ], [ 8.702549269333304, 53.051697495742815 ], [ 8.702394239702414, 53.051129054961905 ], [ 8.703944533313575, 53.050483099815153 ], [ 8.704874709300384, 53.049552923828344 ], [ 8.719499139074003, 53.047925116750719 ], [ 8.758566522427031, 53.052110907792155 ], [ 8.768333367590856, 53.054643053334189 ], [ 8.771795689119756, 53.054643053334189 ], [ 8.777066684879571, 53.05335114214148 ], [ 8.824660679047099, 53.035006009319829 ], [ 8.834479201054251, 53.033533230074454 ], [ 8.844091016587129, 53.033197333290275 ], [ 8.858043653691652, 53.035677801988925 ], [ 8.863159620719898, 53.037279772443526 ], [ 8.865950147781064, 53.039734401821136 ], [ 8.865950147781064, 53.042654120091527 ], [ 8.865485059787659, 53.045392971208628 ], [ 8.865640090317925, 53.046865750454003 ], [ 8.865950147781064, 53.047511704701378 ], [ 8.914525994778842, 53.024619046531768 ], [ 8.922897576861658, 53.027435411115277 ], [ 8.957675814587162, 53.042602444147462 ], [ 8.972713657309441, 53.05257599488624 ], [ 8.974108921289655, 53.056374213199376 ], [ 8.975349154739661, 53.061877752955922 ], [ 8.976744418719932, 53.075623684485436 ], [ 8.979069857787692, 53.081669827500491 ], [ 8.981395297754773, 53.085933132907712 ], [ 8.988216587125805, 53.091591702295204 ], [ 8.989921908569215, 53.09360708300045 ], [ 8.988216587125805, 53.097172757316855 ], [ 8.986046176789614, 53.100066637165526 ], [ 8.961551548165403, 53.115827949400341 ], [ 8.957830845117371, 53.121925768359517 ], [ 8.958295933110833, 53.123295193018691 ], [ 8.960466343446967, 53.126059882557513 ], [ 8.97209353968509, 53.132467759879205 ], [ 8.975194126008091, 53.134689846159461 ], [ 8.975349154739661, 53.137015286126541 ], [ 8.9730237156719, 53.139547430769312 ], [ 8.949459263034555, 53.15603221341587 ], [ 8.939382357709633, 53.161819973113268 ], [ 8.936230096341887, 53.162801825943461 ], [ 8.93297448128726, 53.162982693096808 ], [ 8.928478630984046, 53.161122342022452 ], [ 8.926308220647854, 53.159339505313881 ], [ 8.923982781580094, 53.156600654196779 ], [ 8.919331903444572, 53.149779364825804 ], [ 8.917781609833412, 53.146937160921198 ], [ 8.916696405114976, 53.143965765807422 ], [ 8.915766229128167, 53.142337957830478 ], [ 8.914370965147896, 53.140632636387011 ], [ 8.912355584442651, 53.139340725194302 ], [ 8.909410027750539, 53.138513901994941 ], [ 8.903984002359834, 53.137609565329171 ], [ 8.894992302652611, 53.138849798779177 ], [ 8.860524123289622, 53.149262599988958 ], [ 8.840680372800932, 53.157944241333666 ], [ 8.825745883765535, 53.167142645716524 ], [ 8.823885531791859, 53.168072821703333 ], [ 8.811638217929385, 53.16957143847111 ], [ 8.783732943720338, 53.169002996790823 ], [ 8.778616977591412, 53.170269070461188 ], [ 8.756551140822467, 53.178718166909846 ], [ 8.751435173794221, 53.181457018026947 ], [ 8.749264764357349, 53.183885809882213 ], [ 8.74988488108238, 53.185487779437437 ], [ 8.750194940344215, 53.186883043417708 ], [ 8.74988488108238, 53.188329983342044 ], [ 8.748954705095571, 53.189596056113089 ], [ 8.747559442014619, 53.19075877519731 ], [ 8.745544061309374, 53.191611436818334 ], [ 8.733141716916691, 53.19267080311505 ], [ 8.710455763422715, 53.191766466449224 ], [ 8.706580030743794, 53.191120510403209 ], [ 8.704719678770118, 53.189931952897268 ], [ 8.703634474051739, 53.189518540847928 ], [ 8.701154006252352, 53.189105129697964 ], [ 8.69030195457151, 53.188433336129549 ], [ 8.676814406359767, 53.190371202469009 ], [ 8.617851596573928, 53.204840603511002 ], [ 8.590204704783275, 53.215356757508346 ], [ 8.585088738654349, 53.21540843435173 ], [ 8.566330193783415, 53.211842760035324 ], [ 8.564469841809739, 53.211791083191883 ] ] ], [ [ [ 6.798106316000087, 53.604437567000048 ], [ 6.775645379000082, 53.602484442000048 ], [ 6.740896030000044, 53.593451239000046 ], [ 6.72242272200009, 53.590765692000048 ], [ 6.72242272200009, 53.58462148600006 ], [ 6.733571811000047, 53.582017320000034 ], [ 6.742198113000086, 53.578355210000041 ], [ 6.749522332000083, 53.572414455000057 ], [ 6.756521030000044, 53.562892971000053 ], [ 6.747569207000083, 53.565985419000071 ], [ 6.734629754000082, 53.575181382000039 ], [ 6.726084832000083, 53.577134507000039 ], [ 6.715993686000047, 53.576076565000051 ], [ 6.701182488000086, 53.571437893000052 ], [ 6.69507897200009, 53.570298570000034 ], [ 6.67709394600007, 53.57562897300005 ], [ 6.663340691000087, 53.58734772300005 ], [ 6.65951582100007, 53.599107164000031 ], [ 6.671153191000087, 53.604437567000048 ], [ 6.747325066000087, 53.618353583000044 ], [ 6.784678582000083, 53.620062567000048 ], [ 6.798106316000087, 53.604437567000048 ] ] ], [ [ [ 6.873789910000085, 53.672756252000056 ], [ 6.910817905000044, 53.683661200000074 ], [ 7.047048373000052, 53.694159247000073 ], [ 7.085459832000083, 53.686997789000031 ], [ 6.873789910000085, 53.672756252000056 ] ] ], [ [ [ 7.133148634000065, 53.708075262000079 ], [ 7.178965691000087, 53.72406647300005 ], [ 7.232920769000089, 53.729437567000048 ], [ 7.346202019000089, 53.72797272300005 ], [ 7.346690300000091, 53.723211981000077 ], [ 7.34506269600007, 53.722072658000059 ], [ 7.342295769000089, 53.72211334800005 ], [ 7.295746290000068, 53.711004950000074 ], [ 7.17359459700009, 53.701402085000041 ], [ 7.133148634000065, 53.708075262000079 ] ] ], [ [ [ 7.36654707100007, 53.72797272300005 ], [ 7.383067254000082, 53.734849351000037 ], [ 7.403493686000047, 53.736721096000053 ], [ 7.422618035000085, 53.734198309000078 ], [ 7.435557488000086, 53.72797272300005 ], [ 7.432383660000085, 53.72406647300005 ], [ 7.42904707100007, 53.722479559000078 ], [ 7.42123457100007, 53.721136786000045 ], [ 7.381195509000065, 53.728501695000034 ], [ 7.36654707100007, 53.72797272300005 ] ] ], [ [ [ 8.120127800000091, 53.721136786000045 ], [ 8.132660352000073, 53.734035549000055 ], [ 8.152354363000086, 53.739162502000056 ], [ 8.174815300000091, 53.737005927000041 ], [ 8.195974155000044, 53.72797272300005 ], [ 8.181651238000086, 53.72797272300005 ], [ 8.171722852000073, 53.725572007000039 ], [ 8.155772332000083, 53.716376044000071 ], [ 8.150889519000089, 53.71430084800005 ], [ 8.14226321700005, 53.715643622000073 ], [ 8.136729363000086, 53.717962958000044 ], [ 8.130707227000073, 53.718451239000046 ], [ 8.120127800000091, 53.71430084800005 ], [ 8.120127800000091, 53.721136786000045 ] ] ], [ [ [ 7.517425977000073, 53.762111721000053 ], [ 7.606618686000047, 53.762600002000056 ], [ 7.62671959700009, 53.755275783000059 ], [ 7.627207879000082, 53.750921942000048 ], [ 7.625743035000085, 53.749945380000042 ], [ 7.623301629000082, 53.749986070000034 ], [ 7.620616082000083, 53.749090887000079 ], [ 7.547699415000068, 53.750433661000045 ], [ 7.513926629000082, 53.745510158000059 ], [ 7.511241082000083, 53.72797272300005 ], [ 7.481944207000083, 53.727118231000077 ], [ 7.472992384000065, 53.73187897300005 ], [ 7.469574415000068, 53.745347398000035 ], [ 7.474619988000086, 53.756822007000039 ], [ 7.486989780000044, 53.761419989000046 ], [ 7.517425977000073, 53.762111721000053 ] ] ], [ [ [ 7.660899285000085, 53.762111721000053 ], [ 7.686289910000085, 53.780991929000038 ], [ 7.72828209700009, 53.78656647300005 ], [ 7.812836134000065, 53.783148505000042 ], [ 7.812836134000065, 53.776353257000039 ], [ 7.79859459700009, 53.776353257000039 ], [ 7.776215040000068, 53.767971096000053 ], [ 7.748220248000052, 53.760931708000044 ], [ 7.719493035000085, 53.759914455000057 ], [ 7.69499759200005, 53.769517320000034 ], [ 7.685883009000065, 53.761786200000074 ], [ 7.67709394600007, 53.757798570000034 ], [ 7.668630405000044, 53.757879950000074 ], [ 7.660899285000085, 53.762111721000053 ] ] ], [ [ [ 7.873789910000085, 53.776353257000039 ], [ 7.854502800000091, 53.784572658000059 ], [ 7.858897332000083, 53.790920315000051 ], [ 7.87671959700009, 53.794867255000042 ], [ 7.897634311000047, 53.796291408000059 ], [ 7.914073113000086, 53.795355536000045 ], [ 7.928965691000087, 53.792547919000071 ], [ 7.955577019000089, 53.782904364000046 ], [ 7.946055535000085, 53.784002997000073 ], [ 7.93531334700009, 53.783148505000042 ], [ 7.893239780000044, 53.788967190000051 ], [ 7.875254754000082, 53.788397528000075 ], [ 7.873789910000085, 53.776353257000039 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DE-NW", "NAME_1": "Nordrhein-Westfalen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.771575683870708, 52.108792501972346 ], [ 6.830673055000091, 52.112892558000013 ], [ 6.843282105000128, 52.119998067000026 ], [ 6.865399617000037, 52.147799988000074 ], [ 6.884829956000118, 52.160331523000096 ], [ 6.927721395000077, 52.171907044000037 ], [ 6.94766849700008, 52.182810771 ], [ 6.971129598000061, 52.206271871000084 ], [ 6.981878296000076, 52.213997498000069 ], [ 7.026320027000054, 52.230637309000102 ], [ 7.029110555000017, 52.235779114000096 ], [ 7.026600151575735, 52.23862268668762 ], [ 7.026682569944626, 52.238620510328246 ], [ 7.053089227385897, 52.237922879237487 ], [ 7.094378696119918, 52.248697414753849 ], [ 7.108486361956011, 52.255001939288036 ], [ 7.115772739320448, 52.259756171110382 ], [ 7.121508823073725, 52.262650050959053 ], [ 7.259174839447269, 52.266164049331394 ], [ 7.300567660968738, 52.271796780297166 ], [ 7.348523390342166, 52.29210561787994 ], [ 7.36325117380261, 52.300580552750262 ], [ 7.368108758412461, 52.302647610298948 ], [ 7.372604607816413, 52.303939521491714 ], [ 7.398339470789949, 52.30732432685619 ], [ 7.409036492839846, 52.310554104388359 ], [ 7.416477898935852, 52.313964749073875 ], [ 7.467379185001391, 52.346391710209218 ], [ 7.513629592032032, 52.370033678111724 ], [ 7.519055617422794, 52.371842353241959 ], [ 7.533318311990513, 52.373495998741305 ], [ 7.539726190211525, 52.3733926459538 ], [ 7.558484735082459, 52.371428941192676 ], [ 7.560500115787704, 52.371583970823565 ], [ 7.56158532140546, 52.371842353241959 ], [ 7.565771112446896, 52.37514964513997 ], [ 7.570577020213307, 52.380162259380711 ], [ 7.573057488911957, 52.382074287298508 ], [ 7.574762811254743, 52.383004462385998 ], [ 7.575692987241553, 52.382926948020213 ], [ 7.580808953370479, 52.390420030060341 ], [ 7.58701012511716, 52.404760239893108 ], [ 7.590575799433566, 52.410315457392414 ], [ 7.595123324781582, 52.413958645175285 ], [ 7.602099643783504, 52.41540558509962 ], [ 7.602564730877589, 52.417214260229912 ], [ 7.60070437980329, 52.419643052984497 ], [ 7.593883091331577, 52.425172431162764 ], [ 7.58623497876124, 52.427549547073909 ], [ 7.583134393337559, 52.432820542833781 ], [ 7.581894158988234, 52.436386217150186 ], [ 7.594038120063203, 52.468322251870404 ], [ 7.598844027829614, 52.472921454061805 ], [ 7.601169467796694, 52.474471746773645 ], [ 7.6055102875697, 52.475608629234841 ], [ 7.609075961886106, 52.47555695329072 ], [ 7.680596143896935, 52.462017727336217 ], [ 7.685402051663345, 52.459795641055962 ], [ 7.688657667617235, 52.457935289082286 ], [ 7.692068312302752, 52.453284410047445 ], [ 7.694393752269832, 52.447755031869178 ], [ 7.702920363084274, 52.413338528450311 ], [ 7.705607537357935, 52.409979559708859 ], [ 7.709793328399371, 52.407344062278639 ], [ 7.734132928292013, 52.401918036887878 ], [ 7.801777377623864, 52.375795600286722 ], [ 7.8051880232087, 52.373702704316315 ], [ 7.816195102721792, 52.365124417557809 ], [ 7.822602980043484, 52.363264065584133 ], [ 7.829269239783571, 52.362721463224943 ], [ 7.894898309309497, 52.378611965769551 ], [ 7.899704217075964, 52.378456936138662 ], [ 7.90575036009102, 52.377268377733401 ], [ 7.911021355850892, 52.37132558930449 ], [ 7.920013054658739, 52.364917711083478 ], [ 7.928746371947511, 52.359879259320337 ], [ 7.942233921058573, 52.34760610613688 ], [ 7.960682406667729, 52.326677150929754 ], [ 7.970449252730816, 52.317530423390281 ], [ 7.972774691798577, 52.314636541742971 ], [ 7.973549839053817, 52.3121043971002 ], [ 7.969984164737411, 52.31003734045089 ], [ 7.966418491320326, 52.309107164464024 ], [ 7.935877719681002, 52.306368313346979 ], [ 7.932157016632971, 52.305334785471928 ], [ 7.929676547934321, 52.303009345504847 ], [ 7.929211459940916, 52.299908759181847 ], [ 7.931381870277107, 52.293862617066111 ], [ 7.932777134257321, 52.291175441893074 ], [ 7.934792514962567, 52.288617458828639 ], [ 7.940838657078359, 52.283268947803663 ], [ 7.94641971210001, 52.276990260791877 ], [ 7.94626468336844, 52.274277248995816 ], [ 7.944249301763875, 52.271357529826105 ], [ 7.938203158748763, 52.265853990069559 ], [ 7.920013054658739, 52.254278468876237 ], [ 7.916292351610707, 52.250686957037431 ], [ 7.916137322879138, 52.249162502747254 ], [ 7.916447381241653, 52.247043769254503 ], [ 7.918617790678468, 52.242857978213124 ], [ 7.924198845700175, 52.23619171847298 ], [ 7.925594109680389, 52.233401191411815 ], [ 7.9254390800495, 52.230352281032935 ], [ 7.923268669713309, 52.226424872409893 ], [ 7.917377557228463, 52.220068671032323 ], [ 7.904200067379179, 52.211464544952776 ], [ 7.900789421794343, 52.20787303311397 ], [ 7.900634393062774, 52.204927477321178 ], [ 7.903579949754885, 52.200379951073842 ], [ 7.907765740796265, 52.198312893525213 ], [ 7.914742058898867, 52.196710923969931 ], [ 7.924043816968549, 52.196400864708096 ], [ 7.933087191720517, 52.195263984045596 ], [ 7.934327426969162, 52.194850571996255 ], [ 7.936807895667812, 52.190458076279185 ], [ 7.938668246742168, 52.184101874002238 ], [ 7.942543980320409, 52.181466376572018 ], [ 7.947504916818446, 52.179812731072673 ], [ 7.960217318674324, 52.180045274170027 ], [ 7.978200718088658, 52.182241522927939 ], [ 7.990499708794516, 52.181750597412133 ], [ 8.00848310730953, 52.177719835102266 ], [ 8.013754103069402, 52.175962835916096 ], [ 8.017474806117377, 52.17412832326346 ], [ 8.017319777385808, 52.170045885009586 ], [ 8.013909132700292, 52.164051418837857 ], [ 8.003522169912173, 52.150873928089311 ], [ 7.997165967635283, 52.138419907752507 ], [ 7.996855910172087, 52.133484808776871 ], [ 7.994375440574117, 52.127826240288755 ], [ 7.990189650432001, 52.123227037197978 ], [ 7.979440952437983, 52.121883450061148 ], [ 7.966573520951215, 52.121470038011807 ], [ 7.94719485755661, 52.118705349372362 ], [ 7.922183464994873, 52.111548163217151 ], [ 7.904665155372584, 52.102969876458587 ], [ 7.893192986966767, 52.095166734257361 ], [ 7.891642694254926, 52.08976654728832 ], [ 7.900169305069369, 52.078165188572541 ], [ 7.904200067379179, 52.071886502460075 ], [ 7.912416619831106, 52.056021837437811 ], [ 7.914742058898867, 52.054652410979941 ], [ 7.919702996296223, 52.05310211916742 ], [ 7.947814976080281, 52.047288520149039 ], [ 7.965178256970944, 52.041216538712263 ], [ 7.969829136005785, 52.038529365337922 ], [ 7.973859898315652, 52.038451850072818 ], [ 7.979440952437983, 52.040389716412278 ], [ 8.022900832407458, 52.066150417807535 ], [ 8.038248731693614, 52.070723782476534 ], [ 8.074577263929598, 52.074702867043641 ], [ 8.110440708172121, 52.066537991435155 ], [ 8.181030715095403, 52.083074449126514 ], [ 8.199014112711097, 52.08953400329159 ], [ 8.211468133047902, 52.096665351025081 ], [ 8.217669304794583, 52.103331610765224 ], [ 8.234722528222107, 52.116147366307871 ], [ 8.266865269416655, 52.133613999986096 ], [ 8.393627557265916, 52.111263943276356 ], [ 8.400758904999464, 52.112426663259896 ], [ 8.40587487112839, 52.114235338390131 ], [ 8.407890251833635, 52.115604763049362 ], [ 8.410215691800715, 52.118782863738147 ], [ 8.418277214621753, 52.133717352773601 ], [ 8.421687860206589, 52.137851466971597 ], [ 8.426028679979595, 52.140977891716318 ], [ 8.466077915263554, 52.156713365529356 ], [ 8.475844761326641, 52.161674302926713 ], [ 8.480960728354944, 52.165291653187239 ], [ 8.486231724114759, 52.170045885009586 ], [ 8.491864455080531, 52.176195379912826 ], [ 8.497135450840346, 52.183430081333142 ], [ 8.498375685189728, 52.186840725119339 ], [ 8.497600538833808, 52.18919200350814 ], [ 8.48685184083979, 52.195057278470586 ], [ 8.465612827270149, 52.203790594860038 ], [ 8.46390750492742, 52.204772446790969 ], [ 8.460961948235308, 52.214332587279046 ], [ 8.458791537899117, 52.2500926778348 ], [ 8.460961948235308, 52.286576239701674 ], [ 8.460186801879388, 52.304197903010788 ], [ 8.456001010837952, 52.321302802382377 ], [ 8.4496448103597, 52.338097643391507 ], [ 8.440963169015049, 52.35375560193944 ], [ 8.435072055630826, 52.361455390453898 ], [ 8.427734002322325, 52.366778063057154 ], [ 8.398898553025788, 52.379593817700481 ], [ 8.333889601124156, 52.398352363470792 ], [ 8.326448195028149, 52.404863593579933 ], [ 8.321332227999903, 52.41023794212731 ], [ 8.301436801567149, 52.45111399971131 ], [ 8.323812696698553, 52.445946356738943 ], [ 8.346602003879354, 52.445998033582384 ], [ 8.350632765289902, 52.445326240013912 ], [ 8.358384229748367, 52.442819932893542 ], [ 8.366910842361449, 52.441398831390927 ], [ 8.423703240911834, 52.445998033582384 ], [ 8.441118197746619, 52.451062323767189 ], [ 8.44809451674854, 52.454627997184275 ], [ 8.452125278159031, 52.457986965925727 ], [ 8.453985630132706, 52.461500963398692 ], [ 8.461737094591228, 52.486150620754529 ], [ 8.462667270578038, 52.48811432641503 ], [ 8.46390750492742, 52.489767971014999 ], [ 8.465767856001719, 52.491318263726839 ], [ 8.472124058278666, 52.494573880580106 ], [ 8.481115757086513, 52.498036201209686 ], [ 8.491864455080531, 52.503229681704397 ], [ 8.496670362846942, 52.506511135180745 ], [ 8.516979201329093, 52.508113104735969 ], [ 8.566485223414304, 52.507131252805038 ], [ 8.582608269955699, 52.50912079508862 ], [ 8.63211429204091, 52.523926092914849 ], [ 8.636610142344182, 52.524184475333243 ], [ 8.642811314090864, 52.524055284124017 ], [ 8.659606154200617, 52.519843655560237 ], [ 8.667512648290085, 52.514934394107001 ], [ 8.676194288735417, 52.511006985483959 ], [ 8.703634474051739, 52.480156155482177 ], [ 8.706580030743794, 52.47111277893157 ], [ 8.707200148368145, 52.464704902509197 ], [ 8.70673506037474, 52.461061712927687 ], [ 8.704409621306979, 52.451579087704715 ], [ 8.704254591676033, 52.446773179938305 ], [ 8.704719678770118, 52.442535712053427 ], [ 8.706269972381335, 52.439254259476456 ], [ 8.709525588335225, 52.434603380441615 ], [ 8.710610793053661, 52.432097073321245 ], [ 8.710300733791826, 52.428789781423234 ], [ 8.707200148368145, 52.417653509801596 ], [ 8.706580030743794, 52.41214997004505 ], [ 8.70673506037474, 52.407292385435198 ], [ 8.70751020673066, 52.403364976812213 ], [ 8.708595412348416, 52.400936184057628 ], [ 8.711075881047066, 52.398610744989867 ], [ 8.712781203389795, 52.397396349062205 ], [ 8.723994989377218, 52.395613512353691 ], [ 8.826727735696409, 52.388792222982659 ], [ 8.859128859309408, 52.391040148583954 ], [ 8.888015985449329, 52.397577216215552 ], [ 8.894372185927637, 52.399954332126697 ], [ 8.961241488903568, 52.40907522214377 ], [ 8.963876987233164, 52.41062551485561 ], [ 8.966667515193649, 52.413131821975981 ], [ 8.969303012623925, 52.416335761086486 ], [ 8.984030796084369, 52.444757799233003 ], [ 8.993952670879025, 52.458426215497411 ], [ 8.999120313851392, 52.462767036169737 ], [ 9.025630324080169, 52.479561876279547 ], [ 9.081182489180492, 52.497571113216281 ], [ 9.085678337685124, 52.498191229941256 ], [ 9.090949334344316, 52.497441922007056 ], [ 9.096685418097536, 52.495452378824211 ], [ 9.110534702414554, 52.482972520965063 ], [ 9.112705111851426, 52.481603095406513 ], [ 9.115960727805316, 52.480001125851231 ], [ 9.119836459584917, 52.478502509083512 ], [ 9.123712192263838, 52.477675685884151 ], [ 9.131618687252626, 52.476745509897341 ], [ 9.134099155051956, 52.474885158822985 ], [ 9.134564243045361, 52.471836249343426 ], [ 9.130223423272355, 52.464549871978988 ], [ 9.126037632230918, 52.460622464255323 ], [ 9.121076693934242, 52.457573553876387 ], [ 9.117355990886267, 52.456229966739556 ], [ 9.111309848770475, 52.45338776283495 ], [ 9.108984408803394, 52.451527411760594 ], [ 9.109759556058634, 52.446256415101459 ], [ 9.11084476077707, 52.442070624060023 ], [ 9.128363071298679, 52.408455105418739 ], [ 9.095445183748211, 52.37571808502156 ], [ 9.077926873226602, 52.35241201390329 ], [ 9.073896111816111, 52.348742987698699 ], [ 9.062889032302962, 52.346159166212544 ], [ 9.057618035643827, 52.344324653559909 ], [ 9.04919477671757, 52.339802964834917 ], [ 9.041133253896533, 52.339234524054007 ], [ 9.018033888353273, 52.341069036706642 ], [ 9.012607862962511, 52.340603950511877 ], [ 9.007801955196044, 52.339234524054007 ], [ 9.004236280879638, 52.336547349780346 ], [ 9.001135694556638, 52.332878323575756 ], [ 8.995089552440902, 52.322491359888318 ], [ 8.993332554154051, 52.316031805723242 ], [ 8.989146763112615, 52.288384914831909 ], [ 8.986976352776423, 52.279470730389846 ], [ 8.984960972071178, 52.273657132270785 ], [ 8.982790561735044, 52.2701172963761 ], [ 8.982480503372528, 52.267921048517564 ], [ 8.983255648829129, 52.264975490926133 ], [ 8.986666294413965, 52.260479641522238 ], [ 8.989611851106019, 52.258283392764326 ], [ 8.99271243742902, 52.256862291261712 ], [ 9.010902540619725, 52.25409760172289 ], [ 9.044078809689324, 52.244666653343359 ], [ 9.066299676089159, 52.241462714232853 ], [ 9.07079552639243, 52.240248318305191 ], [ 9.07265587656741, 52.239188951109156 ], [ 9.070485467130595, 52.236915187985517 ], [ 9.048574659992539, 52.227639269236874 ], [ 9.041908400252453, 52.223789374080297 ], [ 9.038497755566937, 52.218621731107987 ], [ 9.039117873191287, 52.216037910521152 ], [ 9.040823194634697, 52.213014838563936 ], [ 9.042838576239262, 52.210250149025114 ], [ 9.045784132931374, 52.204436550006733 ], [ 9.04764448400573, 52.196194160032405 ], [ 9.045939161662943, 52.194075426539655 ], [ 9.041753370621564, 52.192886868134451 ], [ 9.019429152333487, 52.194075426539655 ], [ 8.988061558394179, 52.188494371518004 ], [ 8.994314406084982, 52.177952379098997 ], [ 9.004236280879638, 52.164464829987878 ], [ 9.005941603222425, 52.161028346880698 ], [ 9.007491895934265, 52.155938219173436 ], [ 9.007801955196044, 52.15257925133136 ], [ 9.007336867202639, 52.14947866500836 ], [ 9.005786573591479, 52.14699819630971 ], [ 9.003461133624398, 52.144362697980114 ], [ 9.001600783449362, 52.142554022849822 ], [ 8.997414992407982, 52.137127997459061 ], [ 8.996484816421116, 52.134104926401221 ], [ 8.998810256388197, 52.133200588836075 ], [ 9.003616164154664, 52.133407294411086 ], [ 9.015553419654566, 52.135861924688072 ], [ 9.030901319840041, 52.137102159037397 ], [ 9.043768752226129, 52.136404527047262 ], [ 9.063974237021398, 52.138032335024207 ], [ 9.135494419032227, 52.131908678542629 ], [ 9.142935825128234, 52.128988959372975 ], [ 9.146346469813693, 52.125888373049975 ], [ 9.145106234565048, 52.121159980548612 ], [ 9.141695590778852, 52.115475571840136 ], [ 9.140300326798638, 52.11247833920396 ], [ 9.140145298067011, 52.11017873855792 ], [ 9.140920444422932, 52.10767243143755 ], [ 9.149292025606485, 52.102194729203347 ], [ 9.177093947028027, 52.094856675894846 ], [ 9.188256056172065, 52.085038153887638 ], [ 9.18949629142071, 52.079017849294303 ], [ 9.189806348883906, 52.074961249462092 ], [ 9.188256056172065, 52.07217072240087 ], [ 9.177714063753001, 52.060388494733218 ], [ 9.176938918296457, 52.058812364498976 ], [ 9.176628859034622, 52.056771145372011 ], [ 9.177404006289862, 52.053257147899046 ], [ 9.185620557842469, 52.037289130089277 ], [ 9.197867872604206, 52.019357408417648 ], [ 9.198798048591073, 52.016954454084782 ], [ 9.197867872604206, 52.013156235771646 ], [ 9.197092726248286, 52.01093415039071 ], [ 9.196007520630587, 52.00917715120454 ], [ 9.193216993569365, 52.006231594512428 ], [ 9.190426467407519, 52.004061184176294 ], [ 9.184845412385869, 52.000960597853293 ], [ 9.178799269370757, 51.998609321263132 ], [ 9.177404006289862, 51.997679145276322 ], [ 9.176783887766192, 51.996723130867792 ], [ 9.176628859034622, 51.995637926149357 ], [ 9.176938918296457, 51.99393260380657 ], [ 9.177093947028027, 51.991503811051984 ], [ 9.176318800672107, 51.990005195183585 ], [ 9.174768507960266, 51.988454902471744 ], [ 9.172598096724755, 51.987162991278979 ], [ 9.171047804012915, 51.985974432873775 ], [ 9.17538862468524, 51.983183905812552 ], [ 9.184535353124033, 51.979359849977072 ], [ 9.209960157735054, 51.97160838551855 ], [ 9.219158563017231, 51.970316474325784 ], [ 9.223654412421183, 51.97140167904422 ], [ 9.223344354058668, 51.97352041343629 ], [ 9.223654412421183, 51.974967353360626 ], [ 9.224274530045534, 51.976259264553391 ], [ 9.225979852388264, 51.978274645258637 ], [ 9.2278402025633, 51.979876613914598 ], [ 9.2301656434297, 51.981168525107307 ], [ 9.234041375209301, 51.982589627509299 ], [ 9.238227166250681, 51.983390611387563 ], [ 9.243343133278984, 51.983752345694199 ], [ 9.247528924320363, 51.983648993806014 ], [ 9.286027865993219, 51.97277110550209 ], [ 9.287268101241864, 51.970471503057411 ], [ 9.285872837261593, 51.964967963300865 ], [ 9.274710728117611, 51.937501939562821 ], [ 9.27310875766301, 51.935486558857576 ], [ 9.269233025883409, 51.931455797447086 ], [ 9.264892205211083, 51.928406887068149 ], [ 9.257760858376912, 51.924221096026713 ], [ 9.255280388778885, 51.922360744952414 ], [ 9.257295770383507, 51.921327216178042 ], [ 9.263186882868354, 51.921120509703712 ], [ 9.288973422685274, 51.923730170510908 ], [ 9.302150913433877, 51.923239244095839 ], [ 9.325870395702168, 51.916107897261611 ], [ 9.33072798031202, 51.91125031175244 ], [ 9.333208449010726, 51.908098050384694 ], [ 9.33460371299094, 51.905772610417614 ], [ 9.336464064065296, 51.900915024908443 ], [ 9.338324416038972, 51.893421942868315 ], [ 9.336154005702781, 51.882259832825014 ], [ 9.321994663023247, 51.856266588332346 ], [ 9.332123244292291, 51.854767971564627 ], [ 9.342510207080352, 51.856240749910626 ], [ 9.360183547232907, 51.860969143311308 ], [ 9.365609571724349, 51.861485908148097 ], [ 9.410309686043149, 51.860349025686958 ], [ 9.43309899322395, 51.862571112866533 ], [ 9.443382603224563, 51.864999904721799 ], [ 9.449738803702814, 51.867066962270485 ], [ 9.455164829093576, 51.868203843832305 ], [ 9.457955356154741, 51.867428697476385 ], [ 9.461210972108688, 51.865361639927698 ], [ 9.458420444148146, 51.859263820968522 ], [ 9.456095005080385, 51.855749824394877 ], [ 9.450979038052139, 51.850530504579069 ], [ 9.441625604038393, 51.843037420740359 ], [ 9.440075311326552, 51.840763658515982 ], [ 9.440540399319957, 51.838489895392343 ], [ 9.444157748681164, 51.835234280337716 ], [ 9.449428745340299, 51.835053412285106 ], [ 9.457645297792226, 51.833063870001581 ], [ 9.460900912846853, 51.83166860602131 ], [ 9.462141148095498, 51.83011831330947 ], [ 9.461676060102093, 51.82861969744107 ], [ 9.454544712368545, 51.824072171193734 ], [ 9.452839390025815, 51.820971584870733 ], [ 9.452064242770575, 51.816088161839161 ], [ 9.453149448388331, 51.805778714316205 ], [ 9.451909214039006, 51.797768867439231 ], [ 9.446018100654783, 51.785082302206433 ], [ 9.436664665741716, 51.770457872432814 ], [ 9.433719109948925, 51.767202257378244 ], [ 9.428138054927274, 51.762732245496693 ], [ 9.422556999905623, 51.759631660073012 ], [ 9.409534538787909, 51.754722397720457 ], [ 9.406588982995174, 51.753223781852 ], [ 9.405348747746473, 51.752138577133621 ], [ 9.404418572658983, 51.74976146122242 ], [ 9.403023308678712, 51.745420641449414 ], [ 9.401317987235302, 51.742681790332313 ], [ 9.399302605630737, 51.740252997577727 ], [ 9.396357048938626, 51.737875882565902 ], [ 9.394186638602491, 51.736713162582362 ], [ 9.392326286628816, 51.735343736124491 ], [ 9.39108605317881, 51.733845120256092 ], [ 9.389845818829485, 51.729400946796204 ], [ 9.38953575956765, 51.723923245461378 ], [ 9.390000847561055, 51.717256984821972 ], [ 9.392946405152486, 51.705268053377949 ], [ 9.39356652187746, 51.700617174343108 ], [ 9.393101433884055, 51.697568263964172 ], [ 9.389845818829485, 51.695087796164842 ], [ 9.38798546685581, 51.693020737716836 ], [ 9.387210321399209, 51.689403388355686 ], [ 9.387675409392614, 51.684907538052414 ], [ 9.390000847561055, 51.677750352796522 ], [ 9.38876061411105, 51.674158840957716 ], [ 9.386383498199848, 51.671781725046571 ], [ 9.379717237560442, 51.669146226716975 ], [ 9.376926711398596, 51.667440904374189 ], [ 9.374756301062405, 51.665012112518923 ], [ 9.373206008350564, 51.661446438202518 ], [ 9.372430861095324, 51.656252956808487 ], [ 9.372430861095324, 51.650981961048615 ], [ 9.373050977820355, 51.64726125800064 ], [ 9.374446241800626, 51.644393216573633 ], [ 9.376151564143356, 51.642119453449993 ], [ 9.378787061573632, 51.640388291786223 ], [ 9.393721550609087, 51.640052395001987 ], [ 9.440075311326552, 51.649044093809835 ], [ 9.424262323147673, 51.631525784187545 ], [ 9.417751092139156, 51.627133287571155 ], [ 9.345920850866548, 51.612302151323206 ], [ 9.337084180790271, 51.608994859425195 ], [ 9.3330534202791, 51.606669420357434 ], [ 9.333828565735701, 51.605274156377163 ], [ 9.337239211320536, 51.603000393253524 ], [ 9.339254592025782, 51.601941026057489 ], [ 9.35212202261323, 51.596489163144327 ], [ 9.353827344956017, 51.595455634370012 ], [ 9.354757520942826, 51.594163723177246 ], [ 9.355067580204661, 51.592639268887126 ], [ 9.354912550573715, 51.591088976175286 ], [ 9.354292432949421, 51.589512844142405 ], [ 9.350261672438194, 51.583621730758239 ], [ 9.348556349196144, 51.580469469390493 ], [ 9.346695998121788, 51.575921943143157 ], [ 9.343905470161303, 51.570676784905686 ], [ 9.343440383067218, 51.569100653772125 ], [ 9.342975295073813, 51.567576199482005 ], [ 9.340184767113271, 51.561297512470219 ], [ 9.335998976071892, 51.553959459161661 ], [ 9.33150312666794, 51.54954112412355 ], [ 9.326025425333114, 51.545536201134723 ], [ 9.315793491276565, 51.539903469269689 ], [ 9.310987582610835, 51.535614326340067 ], [ 9.307111850831234, 51.530756740830896 ], [ 9.302771030158908, 51.523418688421714 ], [ 9.299515415104338, 51.520059718780999 ], [ 9.296259800049711, 51.517579250981612 ], [ 9.282927279670218, 51.512876695103387 ], [ 9.270473260232734, 51.505745348269159 ], [ 9.262876825405158, 51.502231349896874 ], [ 9.252334832086831, 51.500215969191572 ], [ 9.232801140859976, 51.492464504733107 ], [ 9.227995233093509, 51.489673976772565 ], [ 9.224274530045534, 51.487038479342345 ], [ 9.221949090078454, 51.483705349022614 ], [ 9.220243767735667, 51.480320542758818 ], [ 9.218848503755453, 51.476754869341733 ], [ 9.218538446292257, 51.475204575730572 ], [ 9.218538446292257, 51.472414049568727 ], [ 9.218693475023827, 51.469778551239131 ], [ 9.218538446292257, 51.46838328725886 ], [ 9.218021680556092, 51.466161200978604 ], [ 9.217091506367922, 51.463577379492449 ], [ 9.214766066400841, 51.458668118039213 ], [ 9.212440627333081, 51.456962795696427 ], [ 9.210115187366, 51.456135973396442 ], [ 9.198487990228557, 51.457867133261573 ], [ 9.193372023200311, 51.456394354915517 ], [ 9.157973666951136, 51.438876044393908 ], [ 9.153787875909757, 51.438281765191277 ], [ 9.145881381820288, 51.438255926769557 ], [ 9.108674351340255, 51.442906805804398 ], [ 9.089709099994934, 51.452906195864216 ], [ 9.084903192228523, 51.457066148483932 ], [ 9.084438104235119, 51.458461412464203 ], [ 9.084283074604173, 51.459960029231922 ], [ 9.085523308953555, 51.470036932758205 ], [ 9.085988396946959, 51.471406358316756 ], [ 9.086608513671933, 51.473447578343041 ], [ 9.084593132966688, 51.483007717032478 ], [ 9.078546990850953, 51.488485419266681 ], [ 9.074826286903601, 51.490965887965331 ], [ 9.071260614385835, 51.49189606395214 ], [ 9.066454704820785, 51.491689358377187 ], [ 9.064129265753024, 51.491379300014671 ], [ 9.049659864710975, 51.496030178150193 ], [ 9.03012617438344, 51.505357773742219 ], [ 9.021289504307163, 51.507993272971135 ], [ 9.015398390023677, 51.509155992055355 ], [ 8.999430373113228, 51.503936673138924 ], [ 8.958140902580567, 51.497218736555396 ], [ 8.906154411796649, 51.480914821961449 ], [ 8.902433708748674, 51.478201809266068 ], [ 8.900883416036834, 51.476212266982486 ], [ 8.899488152955882, 51.473757635806237 ], [ 8.898092888975611, 51.469416816033231 ], [ 8.898092888975611, 51.466729640860194 ], [ 8.898868036230851, 51.46476593699839 ], [ 8.900263299311803, 51.463163967443109 ], [ 8.908944939757134, 51.455464178928707 ], [ 8.910340202838086, 51.453862210272746 ], [ 8.912665642805166, 51.450244859112956 ], [ 8.914215936416326, 51.445800686552388 ], [ 8.916076286591363, 51.436421414116921 ], [ 8.916386345853141, 51.434483547777461 ], [ 8.915921257859736, 51.425130112864395 ], [ 8.916231317121571, 51.422908027483459 ], [ 8.917006462578172, 51.421461087559123 ], [ 8.918401726558443, 51.420479233829553 ], [ 8.920417108163008, 51.419910793947963 ], [ 8.941242709683308, 51.417998766030223 ], [ 8.943878208012904, 51.417068590043357 ], [ 8.94666873507407, 51.415569973275637 ], [ 8.949614291766125, 51.412366035064451 ], [ 8.949459263034555, 51.40885203669211 ], [ 8.94744388232931, 51.404485379396704 ], [ 8.942482944032633, 51.396242988523056 ], [ 8.938762240984602, 51.393013210990887 ], [ 8.935144890724132, 51.391282050226437 ], [ 8.893597038672397, 51.389990139033671 ], [ 8.883365106414544, 51.387509671234341 ], [ 8.858043653691652, 51.375417385204116 ], [ 8.855718214623892, 51.374848945322526 ], [ 8.853237745925242, 51.374642238848196 ], [ 8.850757277226535, 51.374693914792317 ], [ 8.82967329328784, 51.378853868311353 ], [ 8.824815707778669, 51.380326647556728 ], [ 8.819699740750423, 51.381205145800834 ], [ 8.814583773722177, 51.381721909738303 ], [ 8.8088476899689, 51.381721909738303 ], [ 8.796290316844647, 51.380378323500793 ], [ 8.772570834576356, 51.375417385204116 ], [ 8.751745233056056, 51.373608710073881 ], [ 8.734536980896962, 51.374125474910727 ], [ 8.727715692425249, 51.373091946136356 ], [ 8.704099562045144, 51.366322332709444 ], [ 8.685496046805099, 51.363428452860774 ], [ 8.681620314126178, 51.362007351358159 ], [ 8.679604933420933, 51.360612088277207 ], [ 8.679449903789987, 51.358829251568693 ], [ 8.673248732043362, 51.352162990929287 ], [ 8.662086622899324, 51.348235582306245 ], [ 8.653973423234902, 51.344049791264808 ], [ 8.653353305610551, 51.342654527284594 ], [ 8.653198275979662, 51.341259264203643 ], [ 8.652578159254631, 51.339864000223429 ], [ 8.65118289617368, 51.336866766687933 ], [ 8.648237338582305, 51.334437974832667 ], [ 8.615526156606848, 51.313638210834711 ], [ 8.593925408730627, 51.295990709103933 ], [ 8.588499383339865, 51.289970405409861 ], [ 8.578112419652427, 51.275940253040233 ], [ 8.576252068578071, 51.272219549992201 ], [ 8.575631951853097, 51.270204169286956 ], [ 8.575942010215613, 51.268808906206004 ], [ 8.576717156571533, 51.267465318169855 ], [ 8.578112419652427, 51.266173407876465 ], [ 8.579972771626103, 51.26490733510542 ], [ 8.584468621029998, 51.262504380772555 ], [ 8.590824823306946, 51.259765530554773 ], [ 8.594390495824712, 51.257543443375198 ], [ 8.595320671811521, 51.256225693760712 ], [ 8.595940789435872, 51.254907945045602 ], [ 8.597025995053627, 51.250903022056775 ], [ 8.598266229402952, 51.247673245423925 ], [ 8.599041374859553, 51.246277981443654 ], [ 8.600126579577989, 51.24488271746344 ], [ 8.601573521300963, 51.243616644692395 ], [ 8.603588901106889, 51.24255727839568 ], [ 8.607929721779215, 51.241317044046298 ], [ 8.617231479848897, 51.240231839327919 ], [ 8.622037387615308, 51.240361030537088 ], [ 8.624982944307419, 51.240851956052893 ], [ 8.627618441737695, 51.241937160771329 ], [ 8.629943881704776, 51.243849188689069 ], [ 8.635214878363911, 51.250463772485091 ], [ 8.636145054350777, 51.251213080419291 ], [ 8.637695347062618, 51.252169093928501 ], [ 8.639865757398752, 51.253047593971246 ], [ 8.644826693896789, 51.254055284323897 ], [ 8.665342237953894, 51.255166328363316 ], [ 8.685651076435988, 51.258990384198853 ], [ 8.707665236361549, 51.269170641411961 ], [ 8.712316115396391, 51.270565904492855 ], [ 8.716863640744407, 51.271134345273765 ], [ 8.719034051080598, 51.270695094802761 ], [ 8.721204461416733, 51.26989411092444 ], [ 8.722754754128573, 51.268705553418556 ], [ 8.723684930115439, 51.267361966281669 ], [ 8.724150018108844, 51.265837511092229 ], [ 8.723684930115439, 51.264158027171163 ], [ 8.720119255798977, 51.257465929009413 ], [ 8.719809198335838, 51.256251533081752 ], [ 8.720119255798977, 51.255114651519932 ], [ 8.721824578141764, 51.254339505164012 ], [ 8.729576042600286, 51.251833198043641 ], [ 8.731126336211446, 51.250592962794997 ], [ 8.73174645293642, 51.249817817338396 ], [ 8.736707391233097, 51.237027900217413 ], [ 8.737792595951532, 51.233720608319402 ], [ 8.738102655213368, 51.231808580401662 ], [ 8.744148797329103, 51.214962063448468 ], [ 8.744923943685023, 51.21051788998858 ], [ 8.748954705095571, 51.198528958544557 ], [ 8.749574822719865, 51.197185370508407 ], [ 8.74988488108238, 51.195945136159082 ], [ 8.75159020342511, 51.190519110768321 ], [ 8.752210321049461, 51.187754422128876 ], [ 8.752520379411976, 51.184214586234134 ], [ 8.752210321049461, 51.177935899222348 ], [ 8.751435173794221, 51.174861152220387 ], [ 8.750194940344215, 51.172794093772382 ], [ 8.717948846362162, 51.150159817121846 ], [ 8.697743360667573, 51.132848212175247 ], [ 8.695727979962271, 51.130496934685766 ], [ 8.695572951230702, 51.129230861914721 ], [ 8.695572951230702, 51.12786143725549 ], [ 8.696038039224106, 51.126440334853555 ], [ 8.696968215210973, 51.125096746817405 ], [ 8.705494826025415, 51.116260078539767 ], [ 8.706890090005629, 51.113547064945067 ], [ 8.707355177099714, 51.108766994701 ], [ 8.706269972381335, 51.106338202845734 ], [ 8.704409621306979, 51.10473623329051 ], [ 8.678984815796582, 51.096080431266842 ], [ 8.665807325947299, 51.089233303474145 ], [ 8.663481885980218, 51.088483995539946 ], [ 8.660846387650679, 51.08817393717743 ], [ 8.658365919851292, 51.08835480433072 ], [ 8.62715335464361, 51.093599962568192 ], [ 8.524730665787558, 51.093315741728077 ], [ 8.520544874746179, 51.084944160544524 ], [ 8.524110549062584, 51.080189927822857 ], [ 8.528141309573755, 51.076314195143937 ], [ 8.535117628575676, 51.067425849123595 ], [ 8.537443067643437, 51.063240058082215 ], [ 8.538218214898677, 51.060165310180878 ], [ 8.535892774931597, 51.056057034404603 ], [ 8.534962598944787, 51.050269272908565 ], [ 8.536667922186837, 51.043913072430314 ], [ 8.542559034671683, 51.030322171431067 ], [ 8.544419385746039, 51.024663601144255 ], [ 8.544884473739444, 51.020658678155428 ], [ 8.538218214898677, 51.013372300791048 ], [ 8.527521192848781, 51.005362453914074 ], [ 8.52612592886851, 51.00376048435885 ], [ 8.523025343444829, 50.999574693317413 ], [ 8.519459670027743, 50.993528551201678 ], [ 8.514653761362013, 50.987430732242501 ], [ 8.512328322294252, 50.983399969932634 ], [ 8.510933058313981, 50.981642970746464 ], [ 8.50953779523303, 50.980299384508953 ], [ 8.507367383997575, 50.979420885365528 ], [ 8.505041944929815, 50.978852443685298 ], [ 8.497135450840346, 50.977715563022798 ], [ 8.490624219831886, 50.972961331200452 ], [ 8.478015170763513, 50.954874578998613 ], [ 8.46964358868064, 50.943764146697958 ], [ 8.469023471955666, 50.941645413205208 ], [ 8.468403355230635, 50.936581122121083 ], [ 8.468093295968799, 50.920768133942204 ], [ 8.46623294399518, 50.916711534109993 ], [ 8.463752476195793, 50.914489447829737 ], [ 8.461272006597824, 50.914515286251458 ], [ 8.449954867822896, 50.916323961381693 ], [ 8.44406375533805, 50.916013902119857 ], [ 8.427113884698031, 50.90872752475542 ], [ 8.400603875368517, 50.892346095795631 ], [ 8.396883172320543, 50.888832099221986 ], [ 8.397658318676463, 50.88387116092531 ], [ 8.397813348307352, 50.879194444368068 ], [ 8.396573113958027, 50.876739814091138 ], [ 8.394867790715978, 50.875086167692473 ], [ 8.374197217927247, 50.86464752896029 ], [ 8.368616163804916, 50.862683824199109 ], [ 8.364120314400964, 50.861598619480674 ], [ 8.351097853283306, 50.861469428271448 ], [ 8.336680129084698, 50.859893297137944 ], [ 8.320195347337403, 50.861805325055684 ], [ 8.314459262684807, 50.864492499329344 ], [ 8.306087680601991, 50.877463284502937 ], [ 8.303297152641449, 50.879633693939809 ], [ 8.299576449593474, 50.880873928289134 ], [ 8.287484165361946, 50.880460517139113 ], [ 8.283453403052079, 50.879426988364798 ], [ 8.280507847259344, 50.878186754015474 ], [ 8.268415562128496, 50.868419907952386 ], [ 8.225265741420799, 50.843692735331445 ], [ 8.223250359816234, 50.842142441720284 ], [ 8.218909539143908, 50.837569077950548 ], [ 8.216584100076147, 50.835863756507138 ], [ 8.197153760737478, 50.827052923953261 ], [ 8.195448439294012, 50.825812690503255 ], [ 8.194363233676256, 50.824391588101264 ], [ 8.187231885942765, 50.811524155715176 ], [ 8.139276156569338, 50.784962470441656 ], [ 8.134160190440411, 50.781345120181129 ], [ 8.133385044084491, 50.780001533044299 ], [ 8.132919956091087, 50.778373725067354 ], [ 8.132919956091087, 50.776900946721298 ], [ 8.133540072816118, 50.775660712371973 ], [ 8.134780308064762, 50.774472153966713 ], [ 8.136950718400897, 50.773438626091718 ], [ 8.138966099106199, 50.772766832523303 ], [ 8.140826450180498, 50.771836656536436 ], [ 8.141911654898934, 50.770596422187111 ], [ 8.142221714160769, 50.76920115820684 ], [ 8.141756626167364, 50.766358954302291 ], [ 8.141911654898934, 50.765067044008845 ], [ 8.142996859617369, 50.763723455972695 ], [ 8.145012241221934, 50.762328192891744 ], [ 8.167388136353395, 50.751579494897726 ], [ 8.171728957025721, 50.748530585418166 ], [ 8.173124220106672, 50.747135322337215 ], [ 8.174364455355317, 50.745585028726055 ], [ 8.174984572080348, 50.743879706383325 ], [ 8.175139600811917, 50.74207103125309 ], [ 8.169558546689586, 50.715871080286092 ], [ 8.16692304925931, 50.707861233409176 ], [ 8.16459760929223, 50.70543244155391 ], [ 8.161341994237659, 50.704114691939481 ], [ 8.151058384237047, 50.70274526638093 ], [ 8.146717563564721, 50.699954739319764 ], [ 8.143927035604179, 50.697784328983573 ], [ 8.134470248802927, 50.68403839835338 ], [ 8.106720005124146, 50.695045477866472 ], [ 8.095506219136666, 50.697138372937559 ], [ 8.089460077020931, 50.696802477052643 ], [ 8.064500360403315, 50.689516099688205 ], [ 8.059229363744123, 50.689051011694801 ], [ 8.056283807052068, 50.690911362769157 ], [ 8.054578484709282, 50.698611152182878 ], [ 8.052408075272467, 50.703985500730255 ], [ 8.050392693667845, 50.70734446947165 ], [ 8.033752883188981, 50.725999661555136 ], [ 7.991429883882006, 50.760984605754913 ], [ 7.98114627388145, 50.773541978879223 ], [ 7.980526157156419, 50.777934475495613 ], [ 7.981301304411659, 50.78503998480744 ], [ 7.983781773110309, 50.794522610030413 ], [ 7.983936801841935, 50.802997544900734 ], [ 7.982231480398468, 50.810568142205966 ], [ 7.976650425376818, 50.826975410486796 ], [ 7.973394810322247, 50.833176581334158 ], [ 7.970294223999247, 50.837026476490678 ], [ 7.967658725669651, 50.837465725163042 ], [ 7.964868197709166, 50.837414049218978 ], [ 7.962077670647943, 50.836897285281452 ], [ 7.949210239161175, 50.832530626187406 ], [ 7.946574740831636, 50.832091375716402 ], [ 7.942543980320409, 50.832039699772281 ], [ 7.934482455700731, 50.835243638882787 ], [ 7.92388878733766, 50.841134752266953 ], [ 7.893503045329282, 50.862554632989884 ], [ 7.885596551239814, 50.86692129208393 ], [ 7.859189893798543, 50.872657375837207 ], [ 7.849888135728861, 50.876171373310228 ], [ 7.846167432680886, 50.878858548483208 ], [ 7.844617139969046, 50.881959133906889 ], [ 7.84523725759334, 50.885111396173954 ], [ 7.846942579936126, 50.890563259087116 ], [ 7.849268019003887, 50.895033270968668 ], [ 7.852058546964372, 50.899167385166663 ], [ 7.856399366737378, 50.908210760817951 ], [ 7.859654981791948, 50.922473456284933 ], [ 7.801622348892295, 50.932705390341482 ], [ 7.788599887774581, 50.930276598486216 ], [ 7.757542352197788, 50.911311347140952 ], [ 7.755682000224112, 50.90660879216199 ], [ 7.754131706612952, 50.900045885209408 ], [ 7.757852410560304, 50.875344550110867 ], [ 7.759247673641198, 50.870461127079352 ], [ 7.760849644095799, 50.867127996759621 ], [ 7.762865023901725, 50.864492499329344 ], [ 7.765965610224725, 50.862683824199109 ], [ 7.768291050191806, 50.859531561931988 ], [ 7.770461459628621, 50.854880682897146 ], [ 7.771236605984541, 50.843976956171559 ], [ 7.770306430897051, 50.839351915558439 ], [ 7.767670932567455, 50.836483873232112 ], [ 7.765345492600375, 50.836225490813717 ], [ 7.763330111895129, 50.836380520444663 ], [ 7.740644159300473, 50.841961575466314 ], [ 7.738163689702503, 50.841599840260415 ], [ 7.734287957023582, 50.839997869805813 ], [ 7.718629997576329, 50.82780223188746 ], [ 7.712893913823052, 50.824417426522984 ], [ 7.675635207398898, 50.809973863003336 ], [ 7.693928664276427, 50.798036607503434 ], [ 7.698734572042838, 50.791912950122537 ], [ 7.699509718398758, 50.787649644715316 ], [ 7.699354688767869, 50.784419868082409 ], [ 7.698889600774464, 50.781629340121924 ], [ 7.697184279330997, 50.778528753798923 ], [ 7.696099073713242, 50.777055976352187 ], [ 7.694083693007997, 50.775712389215357 ], [ 7.692068312302752, 50.775066433169343 ], [ 7.689587842704782, 50.774730536385107 ], [ 7.68664228691199, 50.774937241960117 ], [ 7.68431684694491, 50.775815742002862 ], [ 7.682766554233069, 50.776849269877857 ], [ 7.680906203158713, 50.778761297795654 ], [ 7.679820998440334, 50.779743149726528 ], [ 7.677495557573934, 50.779174709844938 ], [ 7.674084913787738, 50.777211005083814 ], [ 7.66509321497989, 50.766849880717416 ], [ 7.662147658287779, 50.764498603227935 ], [ 7.659202100696405, 50.763310044822674 ], [ 7.627214390032066, 50.755636094729937 ], [ 7.617912631962383, 50.752302965309582 ], [ 7.613416781659112, 50.749409085460911 ], [ 7.610471225866377, 50.745843411144506 ], [ 7.606130405194051, 50.738091945786664 ], [ 7.603184849401259, 50.735094713150488 ], [ 7.599464146353284, 50.733441066751823 ], [ 7.58142907099483, 50.735714829875462 ], [ 7.577088250322504, 50.735663153931398 ], [ 7.571817253663312, 50.734991360362983 ], [ 7.56329064284887, 50.732769273183408 ], [ 7.532388136003647, 50.720987047314338 ], [ 7.4486206401304, 50.706155911066389 ], [ 7.411051872645771, 50.708197130193355 ], [ 7.386867303283395, 50.703649603946019 ], [ 7.38004601391242, 50.698843696179608 ], [ 7.38082116116766, 50.697215888202663 ], [ 7.382836540973585, 50.695743109856608 ], [ 7.384386833685426, 50.693805244416467 ], [ 7.384541864215635, 50.691531481292827 ], [ 7.38314660023542, 50.68383169187905 ], [ 7.382991570604474, 50.680808620821153 ], [ 7.383766716960395, 50.677113756194842 ], [ 7.383921745692021, 50.673160509150136 ], [ 7.383456658597879, 50.668380438906127 ], [ 7.376945427589419, 50.66186920789761 ], [ 7.374619989420978, 50.657450872859442 ], [ 7.373379754172277, 50.653394273027232 ], [ 7.373844842165738, 50.647296454068055 ], [ 7.373069695809818, 50.644454251062825 ], [ 7.371519403097977, 50.64259389908915 ], [ 7.344492628931675, 50.630088202808281 ], [ 7.340461866621808, 50.62889964530234 ], [ 7.293901401228652, 50.619804591908348 ], [ 7.282584263353044, 50.618822739977418 ], [ 7.226256951896801, 50.621406562362949 ], [ 7.224241571191556, 50.622491767081385 ], [ 7.222846307211285, 50.624326279734021 ], [ 7.221761101593529, 50.62755605726619 ], [ 7.220520868143524, 50.629726466703062 ], [ 7.218815544901474, 50.631767686729347 ], [ 7.217730340183039, 50.632697861816837 ], [ 7.215714958578474, 50.633912257744498 ], [ 7.208583611744302, 50.636470241708253 ], [ 7.202382439997621, 50.637736314479298 ], [ 7.19907514809961, 50.637529608904288 ], [ 7.196904737763418, 50.636315212976683 ], [ 7.195354445051578, 50.633550523437862 ], [ 7.194114210702253, 50.631121731582596 ], [ 7.18574262861938, 50.619003608030084 ], [ 7.178611280885889, 50.617375800053082 ], [ 7.154581740255082, 50.601123562302519 ], [ 7.14372968857424, 50.598978990388048 ], [ 7.12181888233556, 50.604198310203799 ], [ 7.118098179287529, 50.603939927785405 ], [ 7.115307651327043, 50.602492987861069 ], [ 7.112982212259283, 50.598255519976249 ], [ 7.110036654667852, 50.594224758565701 ], [ 7.105230746901441, 50.589108792436775 ], [ 7.098719516792244, 50.586809189992096 ], [ 7.093603549763998, 50.586163234845401 ], [ 7.090502964340317, 50.5865249700513 ], [ 7.074328240955538, 50.592054348229567 ], [ 7.061615838200339, 50.592932848272312 ], [ 7.051848993036572, 50.590349025886837 ], [ 6.998932326265844, 50.566603705196826 ], [ 6.971285435374512, 50.559653225515945 ], [ 6.953612095222013, 50.558051255960663 ], [ 6.944775425145735, 50.556320095196213 ], [ 6.939349398855654, 50.554769802484373 ], [ 6.937644077412244, 50.553141995406747 ], [ 6.936403843062919, 50.551591701795587 ], [ 6.934698520720133, 50.548827013156085 ], [ 6.928497348973451, 50.541101386219964 ], [ 6.913252800676219, 50.529422512239137 ], [ 6.889533319307247, 50.524926662835185 ], [ 6.887672967333572, 50.523815619695085 ], [ 6.885192497735545, 50.52177440056812 ], [ 6.886122673722411, 50.517020168745773 ], [ 6.887672967333572, 50.512731024916832 ], [ 6.889223260045412, 50.50596141238924 ], [ 6.890153436032222, 50.496582139953773 ], [ 6.887827996065141, 50.476660875099299 ], [ 6.88069664923097, 50.467720852235516 ], [ 6.873565300598159, 50.462191474057249 ], [ 6.863643425803446, 50.46069285728953 ], [ 6.85971601718046, 50.46069285728953 ], [ 6.852894727809428, 50.461416327701329 ], [ 6.846228468069341, 50.462914944469105 ], [ 6.840182325953549, 50.46549876595526 ], [ 6.836306593274628, 50.467720852235516 ], [ 6.834136182938494, 50.469219469003292 ], [ 6.828090040822701, 50.475162258331522 ], [ 6.822198927438535, 50.482758694058475 ], [ 6.820648633827375, 50.486014309113045 ], [ 6.814602491711639, 50.486376044318945 ], [ 6.776568638032188, 50.476867581573629 ], [ 6.760135532229015, 50.470666408927627 ], [ 6.759825473866499, 50.469193631480891 ], [ 6.760290561859904, 50.467333279507216 ], [ 6.761530796209286, 50.464413561236825 ], [ 6.761840854571744, 50.460150254930284 ], [ 6.760910678584935, 50.454233303124397 ], [ 6.755329623563284, 50.44544830989156 ], [ 6.753004185394843, 50.440487372494204 ], [ 6.752539097401439, 50.436818346289613 ], [ 6.754089390113279, 50.435009671159378 ], [ 6.756879917174444, 50.433562731235043 ], [ 6.770057407023728, 50.429686998556122 ], [ 6.773313022078298, 50.428136704944961 ], [ 6.77625857877041, 50.426224677027221 ], [ 6.777653842750624, 50.423950913903525 ], [ 6.778273960374975, 50.421392930839033 ], [ 6.778118930744029, 50.409894924910816 ], [ 6.77935916509341, 50.400489814053628 ], [ 6.781374545798656, 50.393074246379342 ], [ 6.783699984866416, 50.388810940072801 ], [ 6.786335483195955, 50.385400296286605 ], [ 6.795482211634749, 50.376253566948549 ], [ 6.798117709964345, 50.372842923162352 ], [ 6.799512973944559, 50.369638984051846 ], [ 6.801218296287345, 50.36336029704006 ], [ 6.79997806193802, 50.359484565260459 ], [ 6.79765262197094, 50.356694037299974 ], [ 6.795017123641344, 50.355608832581538 ], [ 6.770367466285506, 50.352637438367083 ], [ 6.718225945870699, 50.34157868111123 ], [ 6.7016378113359, 50.3436974155033 ], [ 6.689028761368206, 50.353929347761152 ], [ 6.681897413634715, 50.357934272548619 ], [ 6.671200391584819, 50.362352606687409 ], [ 6.66329389839467, 50.362094225168335 ], [ 6.656937697017099, 50.359148668476223 ], [ 6.649806349283608, 50.354652818173008 ], [ 6.635491977872448, 50.350311998400002 ], [ 6.625105015084387, 50.350311998400002 ], [ 6.619523960062679, 50.350932115124976 ], [ 6.618283725713354, 50.352921658307878 ], [ 6.619523960062679, 50.355608832581538 ], [ 6.622779575117306, 50.359484565260459 ], [ 6.624794955822551, 50.362507636318355 ], [ 6.62262454638568, 50.366150825000545 ], [ 6.616268345008109, 50.369483954420957 ], [ 6.598905064117389, 50.375194199752514 ], [ 6.590533481135253, 50.376899522095243 ], [ 6.585572543737896, 50.377390449409688 ], [ 6.578544548791854, 50.375013333498543 ], [ 6.572808465038634, 50.373618069518272 ], [ 6.532190788973708, 50.369458115999237 ], [ 6.528004997932271, 50.368476264068306 ], [ 6.525627882920446, 50.366900132934745 ], [ 6.48097944544503, 50.346255398567791 ], [ 6.464494662798415, 50.341914577895409 ], [ 6.458138462320164, 50.34101024033032 ], [ 6.454417759272133, 50.34256053304216 ], [ 6.450386996962322, 50.353567613454572 ], [ 6.448061557894562, 50.356461494202563 ], [ 6.444650913209045, 50.359252021263728 ], [ 6.428062777774983, 50.364833076285436 ], [ 6.421706577296675, 50.368398748803202 ], [ 6.419381138228914, 50.370672511926841 ], [ 6.418295932611215, 50.373204658368252 ], [ 6.416590610268429, 50.375375067805123 ], [ 6.413748407263199, 50.378320624497178 ], [ 6.406307000267816, 50.38224803312022 ], [ 6.401811150863921, 50.38338491558136 ], [ 6.397625359822484, 50.383229885051151 ], [ 6.395144891123834, 50.382041328444529 ], [ 6.392354364062612, 50.380025946839964 ], [ 6.390959100082398, 50.377519639719594 ], [ 6.390804071350772, 50.375375067805123 ], [ 6.391734246438318, 50.372222805538001 ], [ 6.424032017263755, 50.339149889255964 ], [ 6.425582309975596, 50.336979478919773 ], [ 6.426357456331516, 50.335325833420427 ], [ 6.426512485063142, 50.333723862965883 ], [ 6.425737338707222, 50.332431953571756 ], [ 6.42031131421578, 50.329848131186282 ], [ 6.398400506178405, 50.323181871446195 ], [ 6.373399684000105, 50.323080035000075 ], [ 6.372458130000098, 50.32943552700003 ], [ 6.337731567000077, 50.368089498000032 ], [ 6.336387980000097, 50.379923402000045 ], [ 6.34331262200007, 50.393307597000089 ], [ 6.350443969000111, 50.416872051000084 ], [ 6.351167440000012, 50.43356353800003 ], [ 6.347343384000084, 50.436974183000061 ], [ 6.340212036000139, 50.43785268200007 ], [ 6.331633748000115, 50.446896057000046 ], [ 6.326156046000108, 50.457024638000078 ], [ 6.32326216600012, 50.466016337000028 ], [ 6.325742635000097, 50.474026184000095 ], [ 6.336904744000037, 50.481002502000095 ], [ 6.31871464000011, 50.481674296000094 ], [ 6.27540979000014, 50.488030497000025 ], [ 6.260113566000086, 50.492681376000078 ], [ 6.257839803000053, 50.494076640000074 ], [ 6.255566040000133, 50.494593404000099 ], [ 6.253085571000071, 50.494076640000074 ], [ 6.25091516100008, 50.492681376000078 ], [ 6.217118774000085, 50.486015117000065 ], [ 6.207196900000099, 50.486325175000061 ], [ 6.199238729000029, 50.490407613000073 ], [ 6.190660441000091, 50.501828105000058 ], [ 6.182598917000121, 50.506582337000069 ], [ 6.190557088000077, 50.515212301000091 ], [ 6.178878214000093, 50.515780742000047 ], [ 6.170816691000113, 50.517951152000037 ], [ 6.169473103000144, 50.52249867799999 ], [ 6.177327922000075, 50.530198466000073 ], [ 6.160688110000052, 50.543582663 ], [ 6.17908492000015, 50.561979472000118 ], [ 6.210607543000037, 50.578670959000036 ], [ 6.232931763000096, 50.587145894000045 ], [ 6.232931763000096, 50.590763245000048 ], [ 6.244300577000075, 50.599548239000015 ], [ 6.251328572000091, 50.608436585000035 ], [ 6.249054809000086, 50.614431051000068 ], [ 6.180015096000119, 50.615516256000049 ], [ 6.159447876000115, 50.622389222000024 ], [ 6.147769002000047, 50.636755270000023 ], [ 6.161101521000063, 50.642181296 ], [ 6.100226685000052, 50.701299134000053 ], [ 6.081003052000113, 50.713494772000089 ], [ 6.064363240000091, 50.714476624000056 ], [ 6.02477909300012, 50.707551982000055 ], [ 6.011549926000043, 50.708533835000125 ], [ 6.007622518000062, 50.716905417000092 ], [ 6.011343221000089, 50.72744740800006 ], [ 6.010826457000036, 50.737059225000067 ], [ 5.994186645000127, 50.742588603000073 ], [ 5.992739705000133, 50.744448955000095 ], [ 5.992636353000108, 50.746257630000073 ], [ 5.993256469000073, 50.74806630500008 ], [ 5.994910116000113, 50.749926656000085 ], [ 5.997080525000115, 50.762949117000019 ], [ 5.990569295000057, 50.769046936000066 ], [ 5.980647420000139, 50.773439433000064 ], [ 5.972999308000055, 50.781811015000031 ], [ 5.968761841000116, 50.794626770000022 ], [ 5.983954712000127, 50.792197978000061 ], [ 5.998320760000041, 50.800724589000069 ], [ 6.003591756000077, 50.812610169000024 ], [ 6.001421346000086, 50.821808574 ], [ 6.000491170000117, 50.830438538000053 ], [ 6.009276164000113, 50.840463765000081 ], [ 6.023022095000073, 50.845424704000024 ], [ 6.045553019000067, 50.844184469000098 ], [ 6.056715129000111, 50.852659404000079 ], [ 6.062812948000072, 50.862943014000095 ], [ 6.063123006000069, 50.870901184000061 ], [ 6.054648071000145, 50.891468404000037 ], [ 6.056508423000139, 50.898082988000041 ], [ 6.061779419000089, 50.90350901300009 ], [ 6.063743124000041, 50.907539775000018 ], [ 6.031083618000139, 50.914722799000046 ], [ 6.007519165000133, 50.924076233000093 ], [ 5.999871053000078, 50.929398906000031 ], [ 5.997287232000076, 50.937357076000112 ], [ 5.995840291000064, 50.951774801000013 ], [ 5.999664348000096, 50.960094706000078 ], [ 6.005762167000057, 50.968517965000061 ], [ 6.003695109000091, 50.97373728399999 ], [ 5.967831665000062, 50.970998434000037 ], [ 5.941580037000023, 50.976476135000027 ], [ 5.927730754000066, 50.977664694000069 ], [ 5.914191529000078, 50.97523590100009 ], [ 5.888249959000035, 50.967122701000093 ], [ 5.874607381000118, 50.965365703000018 ], [ 5.87357385200005, 50.990583801000056 ], [ 5.858174275000067, 51.019341736000072 ], [ 5.852489868000106, 51.042751160000037 ], [ 5.88049849500004, 51.052052918000058 ], [ 5.894347778000082, 51.047143657000035 ], [ 5.906233358000122, 51.037402649000072 ], [ 5.919565877000139, 51.02970286 ], [ 5.937962687000038, 51.03094309500004 ], [ 5.950261678000089, 51.039469707000038 ], [ 5.969485311000113, 51.064920350000065 ], [ 5.982921183000144, 51.074687195000124 ], [ 6.075421997000092, 51.120369161000028 ], [ 6.132369426000082, 51.139825338000023 ], [ 6.147252238000107, 51.15225352 ], [ 6.12627160700012, 51.164578349000053 ], [ 6.149112589000111, 51.176334737000033 ], [ 6.157070760000067, 51.179254456000123 ], [ 6.134126424000044, 51.184215394000077 ], [ 6.084310344000102, 51.162692159000031 ], [ 6.060849243000121, 51.17090871200007 ], [ 6.053717895000091, 51.18938303700007 ], [ 6.056611776000096, 51.211707255000036 ], [ 6.065190063000102, 51.231628520000058 ], [ 6.075421997000092, 51.242661439000059 ], [ 6.096505981000121, 51.258810324000038 ], [ 6.147769002000047, 51.318160706000057 ], [ 6.158207641000075, 51.324594422000118 ], [ 6.183632446000104, 51.335704854000042 ], [ 6.193554321000079, 51.344515686000037 ], [ 6.198928670000043, 51.3569697060001 ], [ 6.202029256000088, 51.378880513000055 ], [ 6.207817016000149, 51.387665508000069 ], [ 6.192727499000057, 51.398956808000023 ], [ 6.194071086000122, 51.417379456000035 ], [ 6.201719197000102, 51.438644308 ], [ 6.205336548000105, 51.458436382000073 ], [ 6.20047896300008, 51.476574809000013 ], [ 6.19334761500005, 51.509337667000111 ], [ 6.153039998000082, 51.538431499000026 ], [ 6.086480754000092, 51.59553395600004 ], [ 6.082139933000121, 51.607807109000063 ], [ 6.087514282000086, 51.622095642000048 ], [ 6.099193156000069, 51.644471538000047 ], [ 6.031497030000054, 51.662997539000074 ], [ 6.008552694000116, 51.681187643 ], [ 6.02198856600009, 51.709506328000018 ], [ 6.012066691000086, 51.715862528000045 ], [ 5.989742472000103, 51.726378682000089 ], [ 5.978270304000091, 51.729789327 ], [ 5.949228150000096, 51.729375916 ], [ 5.939306274000103, 51.731882223000085 ], [ 5.940133097000029, 51.742630921000099 ], [ 5.946056399882934, 51.746288216527944 ], [ 5.962353963000083, 51.756351013000128 ], [ 5.964110962000063, 51.776556499000023 ], [ 5.950778442000114, 51.795909322000071 ], [ 5.928040812000063, 51.806735535000101 ], [ 5.931451457000065, 51.815649720000053 ], [ 5.948091268000098, 51.822961935000123 ], [ 5.988915650000081, 51.82745778400006 ], [ 6.008242635000045, 51.832573751000055 ], [ 6.028913208000063, 51.842108053000047 ], [ 6.043279256000062, 51.846862285000029 ], [ 6.084000284000126, 51.853657735000056 ], [ 6.116453084000057, 51.848283387000023 ], [ 6.140017537000062, 51.844536845000093 ], [ 6.156140584000127, 51.842056376000116 ], [ 6.142704712000068, 51.855182190000093 ], [ 6.105394327000056, 51.879470113000067 ], [ 6.09299198400015, 51.885309550000059 ], [ 6.1269950760001, 51.896730041000083 ], [ 6.159241170000058, 51.887299093000095 ], [ 6.191383911000088, 51.871150208000117 ], [ 6.225180298000083, 51.862546082000094 ], [ 6.256392862000069, 51.866809387000032 ], [ 6.264661092000011, 51.866189271000067 ], [ 6.271792439000137, 51.861900127000112 ], [ 6.282851196000138, 51.849601135000071 ], [ 6.287398722000091, 51.846164653000031 ], [ 6.325742635000097, 51.842547303000046 ], [ 6.341969034000016, 51.836682028000055 ], [ 6.344966268000121, 51.821101583000129 ], [ 6.382483358000115, 51.827586975000074 ], [ 6.38661747200004, 51.837560527000093 ], [ 6.378452596000045, 51.86011728900003 ], [ 6.442531372000133, 51.848360901000021 ], [ 6.462891887000069, 51.848360901000021 ], [ 6.47942834400007, 51.853011780000102 ], [ 6.528624308000133, 51.876421204000067 ], [ 6.628153117000068, 51.897505189000086 ], [ 6.716674846000046, 51.899262187000048 ], [ 6.743753296000079, 51.908331401000041 ], [ 6.767007690000099, 51.925513815 ], [ 6.789848673000108, 51.95114532500007 ], [ 6.798013550000121, 51.956700542000064 ], [ 6.805661661000102, 51.95752736499999 ], [ 6.81072595200007, 51.960576274000019 ], [ 6.811656127000049, 51.972797751000044 ], [ 6.809175659000061, 51.979541525000073 ], [ 6.804008016000068, 51.984373271 ], [ 6.778169800000029, 52.001271465000073 ], [ 6.7128507890001, 52.023854065000094 ], [ 6.690939982000117, 52.027858988 ], [ 6.675023641000109, 52.034809469 ], [ 6.672956583000143, 52.050054016000033 ], [ 6.679881225000116, 52.060466818000052 ], [ 6.688872925000084, 52.063102316000069 ], [ 6.699414917000126, 52.063567404000096 ], [ 6.711403849000106, 52.067288107000095 ], [ 6.719465373000077, 52.073566793000012 ], [ 6.7276302490001, 52.086305033000073 ], [ 6.73290124500005, 52.091989441000024 ], [ 6.749851115000126, 52.10286733000008 ], [ 6.765870808000102, 52.10839670899999 ], [ 6.771575683870708, 52.108792501972346 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DE-BW", "NAME_1": "Baden-Württemberg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.549886922000042, 47.533533834000067 ], [ 9.547481674000068, 47.534547102000047 ], [ 9.273211304000142, 47.650090027000047 ], [ 9.234350627000083, 47.656162008000067 ], [ 9.196936890000131, 47.656136170000067 ], [ 9.183397664000069, 47.670424704000069 ], [ 9.128103881000129, 47.670424704000069 ], [ 9.016586141000118, 47.678899639000051 ], [ 8.997672566000091, 47.673835348000082 ], [ 8.981756225000055, 47.662156474000099 ], [ 8.945376017000086, 47.654301656000072 ], [ 8.906205281000041, 47.651795349000096 ], [ 8.881710652000095, 47.656136170000067 ], [ 8.852668498000099, 47.670786438000064 ], [ 8.851935119000075, 47.671281723000092 ], [ 8.837785685000142, 47.680837504000081 ], [ 8.837682333000117, 47.687787985000071 ], [ 8.856079142000112, 47.690681864000069 ], [ 8.830240926000101, 47.70719248500005 ], [ 8.797581420000114, 47.72003407900003 ], [ 8.770709676000109, 47.720860901000052 ], [ 8.761717977000075, 47.701249695000044 ], [ 8.769882853000098, 47.695074361000067 ], [ 8.71706954000004, 47.694557597000099 ], [ 8.715105835000116, 47.701068827000071 ], [ 8.712625366000054, 47.708691101000042 ], [ 8.70466719500007, 47.715331523000046 ], [ 8.700429728000131, 47.723496399000069 ], [ 8.703737020000119, 47.730033468000059 ], [ 8.71706954000004, 47.743546855000019 ], [ 8.719756714000084, 47.747319234000045 ], [ 8.71314213000008, 47.75742197699999 ], [ 8.703323608000119, 47.758713887000042 ], [ 8.692264852000108, 47.757163595000023 ], [ 8.681929565000104, 47.758739726000059 ], [ 8.674488159000077, 47.7666978970001 ], [ 8.66663334200004, 47.778273417000051 ], [ 8.657021525000118, 47.788117778000029 ], [ 8.644102417000113, 47.791011658000016 ], [ 8.635007365000149, 47.784603780000069 ], [ 8.629839721000053, 47.762796326000043 ], [ 8.617437378000091, 47.757318624000064 ], [ 8.607618856000101, 47.762253723000114 ], [ 8.604104858000142, 47.774397685000011 ], [ 8.603174682000088, 47.787316793000016 ], [ 8.601624390000069, 47.794603170000087 ], [ 8.58312422700007, 47.800235901000022 ], [ 8.558216187000085, 47.801166077000076 ], [ 8.542299846000077, 47.795016581000098 ], [ 8.55160160300008, 47.779255270000121 ], [ 8.536512085000084, 47.774087626000025 ], [ 8.482665242000053, 47.766852926000055 ], [ 8.471503133000112, 47.767059632000027 ], [ 8.463648315000086, 47.763907370000069 ], [ 8.450109090000097, 47.750471497000021 ], [ 8.445458211000044, 47.74318512000012 ], [ 8.437913452000089, 47.723186341000101 ], [ 8.427268107000117, 47.716468404000054 ], [ 8.401946655000131, 47.707089132000121 ], [ 8.392128133000142, 47.699518535000053 ], [ 8.390991251000059, 47.692128805000053 ], [ 8.395228719000102, 47.684816590000068 ], [ 8.397709188000078, 47.67628997900006 ], [ 8.391301310000131, 47.665463765000098 ], [ 8.40701094500011, 47.661562195000059 ], [ 8.411971883000149, 47.661045430000016 ], [ 8.437603394000121, 47.647842102000126 ], [ 8.458273966000121, 47.639883932000046 ], [ 8.476050659000066, 47.6404006960001 ], [ 8.490830119000066, 47.645568339000093 ], [ 8.504679402000136, 47.652260437000038 ], [ 8.519665568000107, 47.657350566 ], [ 8.568241414000113, 47.662931621000027 ], [ 8.582194051000101, 47.661329651000088 ], [ 8.593588682771497, 47.658168560330751 ], [ 8.598213745000066, 47.656885478000063 ], [ 8.607308797000115, 47.656291199000023 ], [ 8.601624390000069, 47.632597555000089 ], [ 8.595113159000107, 47.63481964099999 ], [ 8.594493042000039, 47.640969137000056 ], [ 8.593562866000099, 47.642571106000091 ], [ 8.589222046000117, 47.642467754000066 ], [ 8.583951050000081, 47.641124166000097 ], [ 8.580333699000107, 47.639005432000019 ], [ 8.578059936000074, 47.633476054000099 ], [ 8.579713583000114, 47.628928529000078 ], [ 8.582090698000087, 47.625026957000031 ], [ 8.582504110000087, 47.621590475000076 ], [ 8.581263875000047, 47.614769186000032 ], [ 8.581780639000101, 47.607663677000104 ], [ 8.580643758000093, 47.600170594000062 ], [ 8.576305365999815, 47.595023058567278 ], [ 8.574132527000103, 47.592444967000077 ], [ 8.560696655000072, 47.58939605700003 ], [ 8.551719148619782, 47.59686332957898 ], [ 8.549637899000061, 47.598594462000037 ], [ 8.53775231900002, 47.6121336880001 ], [ 8.522352742000038, 47.621900534000062 ], [ 8.492380411000084, 47.619833476000011 ], [ 8.461787964000081, 47.60613922099999 ], [ 8.450109090000097, 47.589034323000035 ], [ 8.448868856000075, 47.584280091000053 ], [ 8.421100325919269, 47.581111870316533 ], [ 8.418069702000111, 47.580766094000083 ], [ 8.354094279000037, 47.581024475000063 ], [ 8.316163777000014, 47.587845764000022 ], [ 8.306345255000053, 47.59218658499999 ], [ 8.299317260000038, 47.60182423900001 ], [ 8.293942912000091, 47.611461894000044 ], [ 8.288568562000108, 47.6158027150001 ], [ 8.276993042000072, 47.616629537000037 ], [ 8.251051473000132, 47.622003886000087 ], [ 8.232964721000116, 47.621952210000089 ], [ 8.17901452600006, 47.6158027150001 ], [ 8.173846883000067, 47.61352895099999 ], [ 8.168885946000103, 47.608645528000082 ], [ 8.162064656000041, 47.603762105000058 ], [ 8.143771199000071, 47.600067241000048 ], [ 8.122067098000088, 47.592134908000091 ], [ 8.113902221000075, 47.587845764000022 ], [ 8.105427286000065, 47.581257019000034 ], [ 8.101396525000069, 47.576192729000056 ], [ 8.096952351000141, 47.571851909000074 ], [ 8.087237182000109, 47.567381897000061 ], [ 8.042278686000088, 47.560560608000102 ], [ 7.91215743000015, 47.560560608000102 ], [ 7.909470256000105, 47.564798076000059 ], [ 7.907506551000097, 47.574177348000021 ], [ 7.904302613000112, 47.583556621000056 ], [ 7.898204794000065, 47.587845764000022 ], [ 7.83371260600012, 47.590481263000029 ], [ 7.819656616000117, 47.595338847000065 ], [ 7.801466512000076, 47.576089376000127 ], [ 7.78555017100004, 47.56319610600012 ], [ 7.766739949000055, 47.555961406000065 ], [ 7.727320446881095, 47.550422624204714 ], [ 7.683437540000114, 47.544256694000083 ], [ 7.661423380000116, 47.546246236000016 ], [ 7.64690103500007, 47.551445236000049 ], [ 7.609746948000094, 47.564746399000043 ], [ 7.612337281000094, 47.564731041000115 ], [ 7.635895223000091, 47.564591370000088 ], [ 7.646540568000091, 47.571541850000088 ], [ 7.65966638200004, 47.596579082000076 ], [ 7.637032104000099, 47.594977112000052 ], [ 7.586028488000125, 47.584618544000065 ], [ 7.590109904000144, 47.594822083000011 ], [ 7.592487020000078, 47.598413595000082 ], [ 7.590316609000098, 47.607947896000084 ], [ 7.58504561400008, 47.613167216000093 ], [ 7.578637735000115, 47.616939596000023 ], [ 7.5726432700001, 47.622003886000087 ], [ 7.550112345000088, 47.652441305000067 ], [ 7.536573120000099, 47.665205384000032 ], [ 7.521793660000071, 47.670424704000069 ], [ 7.517866251000015, 47.675023906000021 ], [ 7.514662312000041, 47.685798442000035 ], [ 7.511871785000096, 47.707321676000092 ], [ 7.515385783000056, 47.713316142000011 ], [ 7.531922241000132, 47.725201722000051 ], [ 7.537813355000139, 47.731816304000048 ], [ 7.538330119000079, 47.748146057000085 ], [ 7.525927775000099, 47.783156840000075 ], [ 7.528614949000143, 47.797031963000066 ], [ 7.542877645000118, 47.829433086000066 ], [ 7.548458699000122, 47.834238993000056 ], [ 7.561997925000099, 47.839225769000038 ], [ 7.564168334000101, 47.850413717000052 ], [ 7.55900069100008, 47.869017233000122 ], [ 7.559207397000137, 47.873461405000015 ], [ 7.558380575000115, 47.875993551000093 ], [ 7.557863810000072, 47.878525697 ], [ 7.55900069100008, 47.882711488000027 ], [ 7.561997925000099, 47.887052307000019 ], [ 7.568612508000115, 47.891367290000076 ], [ 7.5726432700001, 47.896302389000127 ], [ 7.578947795000119, 47.906327617000059 ], [ 7.580808146000038, 47.910797628000054 ], [ 7.579567911000083, 47.927049866000075 ], [ 7.584942261000037, 47.940408224000109 ], [ 7.611607300000088, 47.959399313000077 ], [ 7.621115763000063, 47.971439922000044 ], [ 7.618945353000072, 48.00265248700002 ], [ 7.575743856000145, 48.053708802000088 ], [ 7.5726432700001, 48.094972433000109 ], [ 7.578947795000119, 48.114480286000017 ], [ 7.581976474333016, 48.121353059320732 ], [ 7.58566573000013, 48.129724833000054 ], [ 7.592900431000089, 48.138664856000091 ], [ 7.599721720000048, 48.144710999000026 ], [ 7.604786010000026, 48.152565816000063 ], [ 7.606749715000149, 48.166983541000079 ], [ 7.613364298000079, 48.179205018000104 ], [ 7.676616252000144, 48.238400371000083 ], [ 7.687158243000113, 48.252921448000038 ], [ 7.693462769000121, 48.269871318000028 ], [ 7.695529825000079, 48.290180156000062 ], [ 7.702454467000081, 48.311186625000047 ], [ 7.71857751500005, 48.319997457000042 ], [ 7.736974325000062, 48.326663717000073 ], [ 7.75072025500009, 48.341365662000058 ], [ 7.751960490000016, 48.355344137000046 ], [ 7.746896199000048, 48.36867665700008 ], [ 7.740384969000075, 48.381440736000044 ], [ 7.737181030000102, 48.393481344000023 ], [ 7.738317912000099, 48.406607158000085 ], [ 7.745655965000111, 48.433013814000063 ], [ 7.75072025500009, 48.444408468000049 ], [ 7.757644897000148, 48.453891093000024 ], [ 7.764156128000138, 48.460350648000073 ], [ 7.769220419000106, 48.47006581700002 ], [ 7.771287475000065, 48.4891085820001 ], [ 7.776455119000076, 48.498177796000064 ], [ 7.788444051000027, 48.506342672000088 ], [ 7.813455444000027, 48.519468486000036 ], [ 7.813455444000027, 48.526341451000022 ], [ 7.801673217000115, 48.547580465000081 ], [ 7.801776571000062, 48.582358704000043 ], [ 7.810251506000071, 48.615018209000098 ], [ 7.852419475000119, 48.658684794000081 ], [ 7.864098348000084, 48.664162497000049 ], [ 7.880634806000074, 48.667728170000046 ], [ 7.895931030000042, 48.676513163000024 ], [ 7.92331953900009, 48.698217265000025 ], [ 7.935205119000102, 48.70333323200002 ], [ 7.948434285000104, 48.711859844000017 ], [ 7.959182983000119, 48.72136830700002 ], [ 7.963627157000133, 48.729274801000045 ], [ 7.96486739100007, 48.748343405000028 ], [ 7.970138387000105, 48.757283427000075 ], [ 7.981507202000103, 48.759763896000052 ], [ 8.009619181000119, 48.760073954000021 ], [ 8.017267293000117, 48.761830954000104 ], [ 8.022951701000068, 48.765086569000076 ], [ 8.025122111000144, 48.770615947000081 ], [ 8.027292521000049, 48.780021058000031 ], [ 8.031943400000102, 48.785343730000093 ], [ 8.03659427900007, 48.788289287000097 ], [ 8.038764689000061, 48.790769756000074 ], [ 8.047549682000124, 48.791028137000026 ], [ 8.084239950000097, 48.804050598000075 ], [ 8.090337769000143, 48.807512920000093 ], [ 8.102740112000049, 48.821310526000062 ], [ 8.14811202000007, 48.90373443600005 ], [ 8.179324585000131, 48.942698467000056 ], [ 8.199891545000099, 48.958250331000031 ], [ 8.230226677918836, 48.965538642194531 ], [ 8.262576124688394, 48.988457140584558 ], [ 8.283608432683025, 49.009954536572593 ], [ 8.357143996298362, 49.109560859046383 ], [ 8.361588168858873, 49.119611925050265 ], [ 8.380656772991642, 49.214851590228704 ], [ 8.387323031832466, 49.231982327122694 ], [ 8.398123406669868, 49.239294542009475 ], [ 8.410835809425066, 49.243661201103521 ], [ 8.479875522737188, 49.296991279024269 ], [ 8.483441196154274, 49.309548652148578 ], [ 8.459876742617553, 49.315026354382724 ], [ 8.461840448278053, 49.323475449932062 ], [ 8.497755567565378, 49.376469631967893 ], [ 8.497652214777872, 49.386494859550112 ], [ 8.491140984668675, 49.403082994084912 ], [ 8.490314162368691, 49.411222032170997 ], [ 8.492019483812101, 49.413211575353898 ], [ 8.501476270613409, 49.429179592264347 ], [ 8.50457685693641, 49.431091620182087 ], [ 8.493879835785776, 49.442615465431345 ], [ 8.477808465188502, 49.446387844423441 ], [ 8.459566685154357, 49.447783108403712 ], [ 8.44251346172689, 49.452175605020102 ], [ 8.44251346172689, 49.458996894391134 ], [ 8.463597445665584, 49.465844021284511 ], [ 8.463597445665584, 49.472691148177944 ], [ 8.450161574297226, 49.491242988373187 ], [ 8.427734002322325, 49.534237779449938 ], [ 8.40835533982704, 49.555218411500448 ], [ 8.416830274697418, 49.579454657706265 ], [ 8.4496448103597, 49.588317166204206 ], [ 8.458016392442516, 49.588859768563452 ], [ 8.462047152953744, 49.588498033357553 ], [ 8.474449497346427, 49.585759182240452 ], [ 8.498220655558782, 49.573382677168809 ], [ 8.566175164152469, 49.527313137291401 ], [ 8.58818932497735, 49.531989854747962 ], [ 8.59128991130035, 49.533824368299918 ], [ 8.595165643079952, 49.535426336955879 ], [ 8.596560907060223, 49.536304836998625 ], [ 8.60901492739697, 49.539147040003854 ], [ 8.612580600814056, 49.54080068640252 ], [ 8.615061068613386, 49.542764391163701 ], [ 8.616611362224546, 49.54503815428734 ], [ 8.617386508580466, 49.547079373414306 ], [ 8.617386508580466, 49.549689033322181 ], [ 8.616766391855492, 49.552970485899152 ], [ 8.614440951888412, 49.560592760047825 ], [ 8.605139193818729, 49.583485419116755 ], [ 8.604829136355534, 49.585449123877936 ], [ 8.597956170141117, 49.605809638304152 ], [ 8.597801141409548, 49.608600165365317 ], [ 8.598886346127983, 49.609995429345588 ], [ 8.601366814826633, 49.610977281276462 ], [ 8.671543409700575, 49.622552802469841 ], [ 8.675729200742012, 49.622501126525719 ], [ 8.678364699071608, 49.621260891277075 ], [ 8.679139845427528, 49.614594632436308 ], [ 8.681000197401204, 49.612062485994898 ], [ 8.691697217652461, 49.60229564083113 ], [ 8.693092481632732, 49.597463893743679 ], [ 8.69262739363927, 49.593743190695648 ], [ 8.691387160189265, 49.591857001199628 ], [ 8.689216749853131, 49.589402370922642 ], [ 8.687201369147829, 49.586586005439756 ], [ 8.68689130988605, 49.585526638243721 ], [ 8.687046340416259, 49.58415721358449 ], [ 8.691542188920891, 49.573692735531267 ], [ 8.703634474051739, 49.553771471576113 ], [ 8.70595991401882, 49.550877590828122 ], [ 8.708905469811555, 49.547932034136068 ], [ 8.711230909778635, 49.546071682162392 ], [ 8.718103875093732, 49.54178253833345 ], [ 8.74585411967189, 49.529948634721677 ], [ 8.764922722905339, 49.523799139818436 ], [ 8.781562534283523, 49.521990464688145 ], [ 8.802491488591329, 49.523592434243426 ], [ 8.807607455619575, 49.523489081455921 ], [ 8.810863070674145, 49.521990464688145 ], [ 8.815668980239252, 49.517287909709239 ], [ 8.819699740750423, 49.508761297995477 ], [ 8.821560092724098, 49.506745917290232 ], [ 8.823885531791859, 49.504885566215876 ], [ 8.828433058039195, 49.50281850776787 ], [ 8.841765578418688, 49.502405097517226 ], [ 8.890496453248716, 49.506125800565201 ], [ 8.893286981209201, 49.50131989189947 ], [ 8.893597038672397, 49.500493068700109 ], [ 8.893752069202606, 49.49899445283171 ], [ 8.89344200994077, 49.496643175342228 ], [ 8.892511833953961, 49.493671780228453 ], [ 8.890651482879605, 49.489951077180422 ], [ 8.88786095491912, 49.485713609295601 ], [ 8.884760370394758, 49.481992906247626 ], [ 8.876957228193533, 49.475481676138429 ], [ 8.874011672400741, 49.474499824207498 ], [ 8.870601026815905, 49.474499824207498 ], [ 8.865019971794254, 49.476825263275259 ], [ 8.860989211283083, 49.479615790336425 ], [ 8.855253126630487, 49.484680081420606 ], [ 8.852307569938375, 49.484731757364671 ], [ 8.848896926152179, 49.48338817022784 ], [ 8.833393996335872, 49.471244208253609 ], [ 8.830913526737845, 49.468557033979891 ], [ 8.829208205294435, 49.465508124500332 ], [ 8.828588087670084, 49.46220083350164 ], [ 8.828588087670084, 49.458015042460204 ], [ 8.829053175663489, 49.453855088941168 ], [ 8.832618849080632, 49.438274644759019 ], [ 8.832618849080632, 49.435432440854413 ], [ 8.831688673993085, 49.432900296211699 ], [ 8.829983350751036, 49.430704047453787 ], [ 8.82796797004579, 49.429386297839358 ], [ 8.817684360045178, 49.425975654053161 ], [ 8.81520389224579, 49.424683742860395 ], [ 8.81365359863463, 49.423495185354511 ], [ 8.812723422647821, 49.422254951005186 ], [ 8.81132815866755, 49.417138983976884 ], [ 8.81039798268074, 49.409439195462483 ], [ 8.810863070674145, 49.406596992457196 ], [ 8.812568393916251, 49.404245714068452 ], [ 8.814428744990551, 49.40300547971907 ], [ 8.816754184957631, 49.402204494941486 ], [ 8.830758498006276, 49.399258938249375 ], [ 8.838664992095687, 49.399233099827654 ], [ 8.84626142692332, 49.3962875431356 ], [ 8.852307569938375, 49.39745026311914 ], [ 8.861144240014653, 49.401739406948025 ], [ 8.878817580167151, 49.414400132859839 ], [ 8.891271599604636, 49.425200506797921 ], [ 8.892976921947366, 49.427577622709123 ], [ 8.894062126665801, 49.430316473826167 ], [ 8.897782829713833, 49.442176214960341 ], [ 8.899178093694047, 49.444889228555041 ], [ 8.901348504030238, 49.446594549998451 ], [ 8.903984002359834, 49.447162990779361 ], [ 8.907084587783459, 49.445199286018237 ], [ 8.908634881394676, 49.44003164304587 ], [ 8.910495233368295, 49.43832632070314 ], [ 8.91406090678538, 49.437654527134669 ], [ 8.920107048901173, 49.438739731853104 ], [ 8.940312533696442, 49.447318020410307 ], [ 8.944033236744474, 49.452020576288533 ], [ 8.945583530355634, 49.455095323290493 ], [ 8.942948032026038, 49.46199412702731 ], [ 8.941242709683308, 49.465146389294432 ], [ 8.939072300246437, 49.468453681192386 ], [ 8.934369745267531, 49.473517971377248 ], [ 8.928323602252419, 49.47858226246143 ], [ 8.927238396634664, 49.480158392695614 ], [ 8.927238396634664, 49.481527818254165 ], [ 8.930338982957664, 49.484214993427202 ], [ 8.95317996608253, 49.500389715912661 ], [ 8.95317996608253, 49.50075145111856 ], [ 8.953334994814156, 49.5018883335797 ], [ 8.953645054075992, 49.502740994301405 ], [ 8.957830845117371, 49.503697007810615 ], [ 9.011367628613129, 49.504291287013245 ], [ 9.019429152333487, 49.503490302235662 ], [ 9.022064649763763, 49.502870185510631 ], [ 9.035087110881477, 49.50131989189947 ], [ 9.039893018647888, 49.502766831823806 ], [ 9.044853956944564, 49.503852037441561 ], [ 9.068160028062834, 49.51847646721518 ], [ 9.076376579615442, 49.518993232051969 ], [ 9.087073601665395, 49.518011380121095 ], [ 9.099010858064617, 49.518915716786864 ], [ 9.101956413857408, 49.51847646721518 ], [ 9.103661737099458, 49.518063056065159 ], [ 9.105522088173814, 49.516822821715834 ], [ 9.113015171113261, 49.510259914763253 ], [ 9.1156506694428, 49.508606269263908 ], [ 9.118441195604703, 49.507624417332977 ], [ 9.121231723565188, 49.507262682127077 ], [ 9.124642368250704, 49.507676093277041 ], [ 9.126812777687519, 49.508167018792847 ], [ 9.127432896211189, 49.511138413906679 ], [ 9.125262484975678, 49.516099352203298 ], [ 9.116115757436262, 49.527416490078906 ], [ 9.105987176167218, 49.537131660197929 ], [ 9.103971794562653, 49.539612127997259 ], [ 9.099475946058078, 49.546536770155797 ], [ 9.094980095754806, 49.550825913984738 ], [ 9.078391961220007, 49.56276317038396 ], [ 9.074671258172032, 49.566819770216171 ], [ 9.073741082185165, 49.570101222793198 ], [ 9.074981317433867, 49.572271633129333 ], [ 9.080097283562793, 49.573821925841173 ], [ 9.093584831774535, 49.565398667814236 ], [ 9.099165886796243, 49.56488190387671 ], [ 9.101801385125782, 49.56526947750433 ], [ 9.110689731146181, 49.575113837033939 ], [ 9.118441195604703, 49.571212266832617 ], [ 9.122006869921108, 49.570876370048438 ], [ 9.178799269370757, 49.57896373129114 ], [ 9.193682081562827, 49.577232571426009 ], [ 9.253420036805267, 49.577568468210188 ], [ 9.259001091826917, 49.578834540081914 ], [ 9.264117058855163, 49.581366686523324 ], [ 9.268612909158435, 49.586689358227261 ], [ 9.27062828896436, 49.589867458916046 ], [ 9.273728875287361, 49.598419908152209 ], [ 9.275640903205101, 49.600900376850859 ], [ 9.278896519158991, 49.60343252239295 ], [ 9.288198276329354, 49.609065253358722 ], [ 9.289593540309625, 49.610538031704777 ], [ 9.289748569041194, 49.612165838782403 ], [ 9.288973422685274, 49.614387925961978 ], [ 9.286337925255054, 49.626609402302051 ], [ 9.288663364322815, 49.630252590984242 ], [ 9.293779331351061, 49.633275662042138 ], [ 9.307731967556265, 49.638624173067114 ], [ 9.315638461645676, 49.64045868571975 ], [ 9.323699985366034, 49.641363023284896 ], [ 9.337859328045568, 49.640897936190754 ], [ 9.34809126120274, 49.6421898464842 ], [ 9.376616652136761, 49.650458075779568 ], [ 9.379252149567037, 49.650148017417052 ], [ 9.382662795151873, 49.649114487743361 ], [ 9.394806756226785, 49.640484524141471 ], [ 9.400077751986657, 49.63970937778555 ], [ 9.404418572658983, 49.64007111299145 ], [ 9.422867059167459, 49.651233222135488 ], [ 9.419301384850996, 49.65818370181637 ], [ 9.416355828158942, 49.66221446412618 ], [ 9.415735711433911, 49.662679552119585 ], [ 9.415270623440506, 49.663299668844616 ], [ 9.415735711433911, 49.668157254353787 ], [ 9.427207878940465, 49.708180650316706 ], [ 9.426277702953598, 49.709472561509472 ], [ 9.424262323147673, 49.711177882952938 ], [ 9.421316765556298, 49.712883206194988 ], [ 9.401938103960333, 49.718464260317319 ], [ 9.399922723255088, 49.71851593716076 ], [ 9.397132196193866, 49.718154201954803 ], [ 9.394806756226785, 49.717430732442324 ], [ 9.392946405152486, 49.716242174037063 ], [ 9.391706169903784, 49.715001938788419 ], [ 9.390620965185406, 49.713244941400887 ], [ 9.387830438124183, 49.705648504774672 ], [ 9.385608350944608, 49.702212022566755 ], [ 9.383282911876847, 49.7000157738089 ], [ 9.379252149567037, 49.698413805152938 ], [ 9.376151564143356, 49.697742011584523 ], [ 9.372585889826951, 49.69771617316286 ], [ 9.368865186778919, 49.698413805152938 ], [ 9.367004835704563, 49.70094594979571 ], [ 9.367314894067079, 49.704563300056236 ], [ 9.370570509121706, 49.711875514943017 ], [ 9.371190626745999, 49.715363674893638 ], [ 9.369950392396674, 49.719136053885734 ], [ 9.366539747711158, 49.721254788277804 ], [ 9.360958692689508, 49.72311513935216 ], [ 9.32711063005155, 49.726525784037676 ], [ 9.319049106331192, 49.728282783223847 ], [ 9.315483432914107, 49.730349839873213 ], [ 9.313623080940431, 49.732106839059327 ], [ 9.3130029642154, 49.735026557329718 ], [ 9.3130029642154, 49.739186509949434 ], [ 9.317963900713437, 49.74469004970598 ], [ 9.319204135962082, 49.747971503182328 ], [ 9.320289340680517, 49.749676826424377 ], [ 9.319979282318002, 49.750348619093472 ], [ 9.319049106331192, 49.752363999798717 ], [ 9.312331169747665, 49.765670680857227 ], [ 9.317808871981867, 49.771303411822998 ], [ 9.328350864400875, 49.778357245190705 ], [ 9.339771355963308, 49.783163153856435 ], [ 9.351863641094155, 49.78574697534259 ], [ 9.400594516823503, 49.783524889062335 ], [ 9.436819696271925, 49.792103175820898 ], [ 9.472528109984296, 49.795591335771519 ], [ 9.490976597392034, 49.795255438987283 ], [ 9.544823439250308, 49.778718981295924 ], [ 9.556967401224597, 49.777995509984748 ], [ 9.569111362299509, 49.780320949951829 ], [ 9.574382358059381, 49.782336331556451 ], [ 9.601925897062472, 49.770838324728857 ], [ 9.612364535794654, 49.772233587809808 ], [ 9.629417759222179, 49.776496894116349 ], [ 9.638254429298456, 49.780062568432754 ], [ 9.642905308333297, 49.782594713075525 ], [ 9.646315952119494, 49.78362824184984 ], [ 9.649261508811549, 49.783163153856435 ], [ 9.652517123866176, 49.781251125938695 ], [ 9.654532504571421, 49.776961982109754 ], [ 9.654532504571421, 49.774714057407778 ], [ 9.65313724059115, 49.772388618340017 ], [ 9.64972659680501, 49.769598090379532 ], [ 9.64817630409317, 49.767711899984192 ], [ 9.64740115683793, 49.766006578540726 ], [ 9.64740115683793, 49.764611314560511 ], [ 9.648486361556309, 49.759236966013134 ], [ 9.650346714429304, 49.754172674928952 ], [ 9.65065677279182, 49.751640530286238 ], [ 9.65065677279182, 49.750245266305967 ], [ 9.650036655167469, 49.748953356012521 ], [ 9.648486361556309, 49.746627916045441 ], [ 9.646936068844468, 49.744819240915206 ], [ 9.645695835394463, 49.742752184265839 ], [ 9.644920689038543, 49.740013333148795 ], [ 9.645075717770169, 49.73644765883239 ], [ 9.647091099374734, 49.730711575079113 ], [ 9.646936068844468, 49.728851223105437 ], [ 9.645385776132628, 49.727507635968607 ], [ 9.640424838735328, 49.725414740897577 ], [ 9.638719517291861, 49.72389028570808 ], [ 9.638254429298456, 49.722262477731135 ], [ 9.639494662748461, 49.717146510702889 ], [ 9.639494662748461, 49.714976101266018 ], [ 9.638564486761652, 49.713038234926557 ], [ 9.631898227920885, 49.70327138886347 ], [ 9.630968051934019, 49.701049303482534 ], [ 9.630502963940614, 49.69903392187797 ], [ 9.631123080665645, 49.697638657897699 ], [ 9.631898227920885, 49.696708481910889 ], [ 9.636084018962265, 49.694021308536549 ], [ 9.643835483420787, 49.690843206948443 ], [ 9.652672152597745, 49.688285223883952 ], [ 9.666779819333158, 49.687200019165516 ], [ 9.67318769665485, 49.687975165521436 ], [ 9.677528517327175, 49.690533149485248 ], [ 9.678458693314042, 49.692548530190493 ], [ 9.679233839669962, 49.695494085983228 ], [ 9.680008986025882, 49.701876125782576 ], [ 9.681249220375207, 49.705312607990436 ], [ 9.682334425992963, 49.706992091911502 ], [ 9.684814893792293, 49.708594062366046 ], [ 9.695511915842246, 49.711720486211448 ], [ 9.698457471634981, 49.713761705338413 ], [ 9.702643262676418, 49.720014553029159 ], [ 9.703728468294173, 49.720738023441015 ], [ 9.704968702643498, 49.721254788277804 ], [ 9.707449172241468, 49.721254788277804 ], [ 9.709774611309228, 49.719782009032485 ], [ 9.710859816027664, 49.715518704524584 ], [ 9.711014844759291, 49.710402737496338 ], [ 9.711789992014531, 49.706578680761481 ], [ 9.712565138370451, 49.704253241693721 ], [ 9.722176954802592, 49.690068061491843 ], [ 9.724244012351278, 49.688517767880683 ], [ 9.727499627405848, 49.687303371953021 ], [ 9.7319954768098, 49.688905341508303 ], [ 9.734630975139396, 49.690688178216817 ], [ 9.740367058892616, 49.696811834698394 ], [ 9.760365838112932, 49.709343370300246 ], [ 9.761296014099742, 49.710247707865392 ], [ 9.764086541160907, 49.712185574204852 ], [ 9.76842736183329, 49.714123440544313 ], [ 9.784447055587123, 49.718464260317319 ], [ 9.79250857930748, 49.72197825779034 ], [ 9.794523960012725, 49.721306464221925 ], [ 9.797159458342321, 49.719601141879195 ], [ 9.803515658820572, 49.712883206194988 ], [ 9.831730991392135, 49.690714015739218 ], [ 9.83297122574146, 49.688672797511572 ], [ 9.833436313734865, 49.686218167234586 ], [ 9.83374637209738, 49.682032376193206 ], [ 9.832816196110571, 49.661671860867671 ], [ 9.83390140082895, 49.652938544478218 ], [ 9.83467654808419, 49.651129869347983 ], [ 9.83565840001512, 49.649321194217691 ], [ 9.840464307781588, 49.645135403176312 ], [ 9.874725783368206, 49.620847480127054 ], [ 9.879841750396452, 49.616144925148149 ], [ 9.881547071839861, 49.613457749975169 ], [ 9.882322218195782, 49.611183986851472 ], [ 9.882322218195782, 49.609375311721237 ], [ 9.881702100571488, 49.608135078271232 ], [ 9.880926955114887, 49.606042182300826 ], [ 9.879996779128021, 49.604259344692991 ], [ 9.878291456785291, 49.60193390652455 ], [ 9.870695021058339, 49.596404527446964 ], [ 9.861703322250492, 49.588084622207532 ], [ 9.859842970276816, 49.585242418302926 ], [ 9.859222852652522, 49.58167674398652 ], [ 9.859377883182731, 49.578524481719455 ], [ 9.860928175894571, 49.573227647537863 ], [ 9.860773146263682, 49.571186428410897 ], [ 9.859842970276816, 49.567930813356327 ], [ 9.858137647934086, 49.56565705023263 ], [ 9.856122267228841, 49.563848375102395 ], [ 9.842014601392748, 49.554184881826814 ], [ 9.839069044700636, 49.551239326034022 ], [ 9.839224074331526, 49.548164578132742 ], [ 9.841704543030232, 49.545606594168987 ], [ 9.84899092039467, 49.542661038376195 ], [ 9.855192092141351, 49.542040920751845 ], [ 9.863873731687363, 49.54503815428734 ], [ 9.867439406003768, 49.548448798073537 ], [ 9.86960981633996, 49.552221177964952 ], [ 9.871470168313579, 49.558784084917534 ], [ 9.873330519387935, 49.561161200828735 ], [ 9.876586134442562, 49.562866523171465 ], [ 9.880771926383261, 49.563951727889901 ], [ 9.886818067599734, 49.564933579820831 ], [ 9.888523389942463, 49.565863755807641 ], [ 9.890383741916139, 49.567569078150427 ], [ 9.893225945820745, 49.570928045992503 ], [ 9.898651971211507, 49.575940660233243 ], [ 9.901597527903562, 49.577749335363535 ], [ 9.905473259683163, 49.579506334549649 ], [ 9.909193962731194, 49.579816392912164 ], [ 9.912914665779169, 49.579041246556244 ], [ 9.917255487350872, 49.575630601870728 ], [ 9.918650750431766, 49.573408514691153 ], [ 9.918960808794282, 49.571832384456968 ], [ 9.918340692069251, 49.569972032483292 ], [ 9.915860223370601, 49.566587226219497 ], [ 9.913999871396925, 49.564933579820831 ], [ 9.91260460831603, 49.563383287108991 ], [ 9.912294549054195, 49.562349758334676 ], [ 9.912914665779169, 49.561471259191251 ], [ 9.926247186158719, 49.554443264245208 ], [ 9.928727654857369, 49.552221177964952 ], [ 9.929812859575804, 49.550360825991277 ], [ 9.93167321065016, 49.53679576341375 ], [ 9.93415368024813, 49.528579210062446 ], [ 9.93415368024813, 49.52403168381511 ], [ 9.933533562623779, 49.519148260783595 ], [ 9.932138298643565, 49.514239000229679 ], [ 9.93167321065016, 49.510208237919812 ], [ 9.931983269911939, 49.506229153352706 ], [ 9.936789177678406, 49.486437078808137 ], [ 9.93663414894678, 49.484731757364671 ], [ 9.936014032221806, 49.483129787809446 ], [ 9.936324089685002, 49.481734523829175 ], [ 9.938804559282971, 49.480468451957449 ], [ 9.947692905303313, 49.479305731973909 ], [ 10.019678176206867, 49.480339259848961 ], [ 10.027894727759474, 49.483233141496271 ], [ 10.037196485829156, 49.488116564527786 ], [ 10.065773552707299, 49.509226385988882 ], [ 10.067478875050028, 49.511887721840878 ], [ 10.066858758324997, 49.517184556921734 ], [ 10.065928582338188, 49.519665024721064 ], [ 10.063913201632943, 49.521783759113191 ], [ 10.062517937652672, 49.522636419834896 ], [ 10.060347528215857, 49.52441925744273 ], [ 10.059365676284926, 49.525401109373661 ], [ 10.058280469767851, 49.526279609416406 ], [ 10.057350294680361, 49.527287298869737 ], [ 10.061122673672457, 49.531912340382178 ], [ 10.085152215202584, 49.544314683875541 ], [ 10.092903679661049, 49.541834215176891 ], [ 10.096159294715676, 49.540516466461725 ], [ 10.101740349737327, 49.537596747292014 ], [ 10.102670525724193, 49.53602061615851 ], [ 10.102670525724193, 49.534005235453208 ], [ 10.099259881038677, 49.528605048484167 ], [ 10.098019646689352, 49.527158108559831 ], [ 10.097399529964321, 49.525814521423001 ], [ 10.09600426598405, 49.523592434243426 ], [ 10.096469353977511, 49.521680406325686 ], [ 10.098639764313646, 49.51945832004543 ], [ 10.105306024053732, 49.516125189725699 ], [ 10.108871698370194, 49.515039985007263 ], [ 10.111972283793875, 49.514549059491458 ], [ 10.115227898848445, 49.514884955376374 ], [ 10.117915073122106, 49.514884955376374 ], [ 10.119930453827351, 49.514729925745428 ], [ 10.123341099412187, 49.513748073814554 ], [ 10.127526889554304, 49.511448473168457 ], [ 10.128922152635198, 49.508761297995477 ], [ 10.128922152635198, 49.505557358884971 ], [ 10.125821567211517, 49.49997630476264 ], [ 10.121480747438511, 49.493775133015959 ], [ 10.120550570552382, 49.492069811572549 ], [ 10.121945835431973, 49.487160550119256 ], [ 10.132022738958199, 49.472381089815428 ], [ 10.124426304130623, 49.455947984012255 ], [ 10.121015659445106, 49.451193753089228 ], [ 10.115072870116876, 49.446646226841892 ], [ 10.112902458881365, 49.444527493349085 ], [ 10.11243737088796, 49.44215037743794 ], [ 10.114607782123414, 49.440315863885985 ], [ 10.134038119663501, 49.435742499216929 ], [ 10.13822391070488, 49.434192206505088 ], [ 10.140394321041072, 49.432874456890659 ], [ 10.142254673014747, 49.430781561819572 ], [ 10.171090122311284, 49.384324449213921 ], [ 10.171555210304689, 49.382050686090281 ], [ 10.169849887961959, 49.38029368780343 ], [ 10.162098422604117, 49.381172186946856 ], [ 10.15729251483765, 49.382438258818581 ], [ 10.151091343091025, 49.384686184419877 ], [ 10.144270053719993, 49.384376126057361 ], [ 10.139619174685151, 49.383549302858 ], [ 10.121790805801027, 49.369544989809413 ], [ 10.121325717807622, 49.351639106559503 ], [ 10.119310337102377, 49.348073432243098 ], [ 10.11915530837075, 49.341639716499685 ], [ 10.121790805801027, 49.334870103972094 ], [ 10.131557650964794, 49.326085109839937 ], [ 10.138378940335826, 49.32303620125964 ], [ 10.143649936994962, 49.321537584491921 ], [ 10.146905552049589, 49.321227525230086 ], [ 10.149541050379185, 49.320762438136001 ], [ 10.150936314359399, 49.32014232051165 ], [ 10.152641635802809, 49.319134630159056 ], [ 10.15403689888376, 49.31667999898275 ], [ 10.154191929414026, 49.313346869562338 ], [ 10.146750523317962, 49.299110012517019 ], [ 10.147525668774563, 49.295544339099933 ], [ 10.150161167104159, 49.290583400803257 ], [ 10.157447543569276, 49.280713202851985 ], [ 10.159772982637037, 49.275338854304664 ], [ 10.159152865912006, 49.268930976083652 ], [ 10.157447543569276, 49.266760565747461 ], [ 10.154191929414026, 49.265675361029082 ], [ 10.150006138372589, 49.265985419391541 ], [ 10.140084262678556, 49.268517564034312 ], [ 10.137138705986501, 49.269809475227078 ], [ 10.13264285568323, 49.272341619869849 ], [ 10.130627475877304, 49.272703355075748 ], [ 10.128922152635198, 49.272031562406653 ], [ 10.127526889554304, 49.269912828014583 ], [ 10.126751743198383, 49.267587388946822 ], [ 10.127371859923358, 49.263815009055406 ], [ 10.130007358252954, 49.260249334739001 ], [ 10.143804965726588, 49.250482490474553 ], [ 10.144270053719993, 49.250017402481092 ], [ 10.145200229706802, 49.246141668902851 ], [ 10.145355259337748, 49.237253322882509 ], [ 10.145045200075913, 49.233868517518033 ], [ 10.145200229706802, 49.229346828793098 ], [ 10.147060580781158, 49.225445257692456 ], [ 10.150161167104159, 49.221750393066145 ], [ 10.156672398112676, 49.217409573293139 ], [ 10.159928013167246, 49.214619046231974 ], [ 10.161323276248197, 49.212138577533324 ], [ 10.159307896442272, 49.208986314366882 ], [ 10.15729251483765, 49.207720242495157 ], [ 10.154967074870569, 49.207125963292526 ], [ 10.150626255097563, 49.206867580874132 ], [ 10.148610874392318, 49.206402492880727 ], [ 10.146905552049589, 49.205394802528076 ], [ 10.147680698405509, 49.203482773711016 ], [ 10.150316195835728, 49.200924791545845 ], [ 10.158687777918601, 49.196041368514329 ], [ 10.176722853277056, 49.188083198480797 ], [ 10.180598585955977, 49.185886948823622 ], [ 10.184784376997413, 49.182941393030831 ], [ 10.205093214580188, 49.163769436110556 ], [ 10.218735793322196, 49.155087796564544 ], [ 10.221061232389957, 49.154493517361914 ], [ 10.223386672357037, 49.15480357482511 ], [ 10.234445427814251, 49.159764513121786 ], [ 10.23708092614379, 49.16038462984676 ], [ 10.23940636611087, 49.16056549700005 ], [ 10.241731805178631, 49.160462145111865 ], [ 10.243902214615503, 49.159919541853355 ], [ 10.245762566589178, 49.158989365866489 ], [ 10.261420526036432, 49.149093329493553 ], [ 10.263280877110788, 49.147594712725777 ], [ 10.264831169822628, 49.143667304102792 ], [ 10.265761345809437, 49.13824127871203 ], [ 10.264056024366027, 49.126820787149597 ], [ 10.262040642761463, 49.122066555327251 ], [ 10.26002526205616, 49.118836777795025 ], [ 10.25847496934432, 49.11741567629241 ], [ 10.257234734994995, 49.116020413211459 ], [ 10.256304559008186, 49.114625149231244 ], [ 10.253979119940425, 49.110439358189808 ], [ 10.252893914322669, 49.109044094209537 ], [ 10.25118859197994, 49.107674669550306 ], [ 10.248863152912179, 49.106718655141776 ], [ 10.246692742575988, 49.106150214360866 ], [ 10.244522332239853, 49.105840155998351 ], [ 10.240491570829306, 49.105840155998351 ], [ 10.23615075015698, 49.106382758357597 ], [ 10.233980339820789, 49.106305243991812 ], [ 10.231964959115544, 49.105581773579956 ], [ 10.230569696034649, 49.10428986328651 ], [ 10.229639520047783, 49.102972114571401 ], [ 10.231189812759624, 49.100956732966836 ], [ 10.234910515807655, 49.098760484208981 ], [ 10.245762566589178, 49.09467804595505 ], [ 10.255374383021319, 49.092533474040579 ], [ 10.259715203693702, 49.092094225368157 ], [ 10.261420526036432, 49.091060695694523 ], [ 10.262505730754867, 49.089252021463608 ], [ 10.261265496405542, 49.085634671203081 ], [ 10.25925011570024, 49.081655584837335 ], [ 10.258940057337782, 49.080208644913 ], [ 10.25925011570024, 49.078839220253769 ], [ 10.263125848379161, 49.074963487574848 ], [ 10.278318718933747, 49.066411038338742 ], [ 10.278318718933747, 49.060519924954519 ], [ 10.277233514215311, 49.057367661788135 ], [ 10.276303338228445, 49.056024075550624 ], [ 10.274598015885715, 49.053181870746698 ], [ 10.27428795662388, 49.051631578034858 ], [ 10.274442987154146, 49.050184638110522 ], [ 10.277078484584365, 49.048375962980288 ], [ 10.282194451612611, 49.046463935062548 ], [ 10.300384555702692, 49.042123115289542 ], [ 10.305345493099992, 49.041683864818481 ], [ 10.312631869565109, 49.04222646717767 ], [ 10.31588748461968, 49.042071438446101 ], [ 10.320073275661116, 49.041141262459291 ], [ 10.337281527820267, 49.034164944356689 ], [ 10.339451939055721, 49.033544826732339 ], [ 10.342449171691896, 49.033286445213264 ], [ 10.354231397560909, 49.033389798000769 ], [ 10.35717695515234, 49.031581121971158 ], [ 10.359967482213506, 49.028377183759972 ], [ 10.363533155630591, 49.020806586454796 ], [ 10.367253858678623, 49.010807197294298 ], [ 10.373300001693735, 49.005407009425937 ], [ 10.415054559320424, 48.982850247141187 ], [ 10.422806023778946, 48.972618313084638 ], [ 10.435673455265714, 48.962799791077487 ], [ 10.437378777608501, 48.961817939146556 ], [ 10.438774040689395, 48.960629380741295 ], [ 10.439859246307151, 48.959492499179476 ], [ 10.441564568649937, 48.957192898533435 ], [ 10.445750359691317, 48.948847153972963 ], [ 10.448540886752482, 48.946315009330192 ], [ 10.454173617718254, 48.943576158213091 ], [ 10.45680911604785, 48.941612454351286 ], [ 10.458824496753095, 48.939390367171654 ], [ 10.460219760733366, 48.936780707263779 ], [ 10.462700230331336, 48.930398668363807 ], [ 10.467506138097804, 48.921148587137566 ], [ 10.468126254822778, 48.917996323971124 ], [ 10.467351107567538, 48.914999091334948 ], [ 10.462545199801127, 48.912415269848793 ], [ 10.459444614377446, 48.911278388286973 ], [ 10.448230829289344, 48.908617052434977 ], [ 10.445595330060428, 48.907661038026447 ], [ 10.444820183704508, 48.906472480520506 ], [ 10.445750359691317, 48.904818834121897 ], [ 10.453863560255115, 48.90021963193044 ], [ 10.455568881698525, 48.898927720737674 ], [ 10.456344028054446, 48.89445770885618 ], [ 10.456344028054446, 48.887662257906868 ], [ 10.452933384268249, 48.860532131852381 ], [ 10.452468296274844, 48.859007677562261 ], [ 10.45179650180711, 48.857586575160269 ], [ 10.448385858020913, 48.850558580214283 ], [ 10.448075798759078, 48.849628404227474 ], [ 10.448385858020913, 48.847948920306408 ], [ 10.449316034007722, 48.845649318761048 ], [ 10.457119175309685, 48.836735134318985 ], [ 10.458049351296495, 48.835159003185424 ], [ 10.458979526384041, 48.833505356786759 ], [ 10.459134556014931, 48.830559800993967 ], [ 10.458359408759691, 48.826322333109147 ], [ 10.455568881698525, 48.817692369507199 ], [ 10.454018588986685, 48.813764959984894 ], [ 10.452313266643955, 48.811336168129628 ], [ 10.450866326719563, 48.810121772202024 ], [ 10.444200066979477, 48.806478583519777 ], [ 10.441099480656476, 48.804204820396137 ], [ 10.439394159213066, 48.799863999723755 ], [ 10.439084099951231, 48.793817856708699 ], [ 10.440169304669666, 48.780226955709395 ], [ 10.439704216676262, 48.774800930318634 ], [ 10.438619011957826, 48.771803696783138 ], [ 10.436138543259176, 48.770511786489749 ], [ 10.434588249648016, 48.769168199352919 ], [ 10.433658074560469, 48.767927965003537 ], [ 10.432417840211144, 48.765783393089066 ], [ 10.431797722586793, 48.763432114700322 ], [ 10.431487664224335, 48.760822454792446 ], [ 10.431642693855224, 48.75588735581681 ], [ 10.43272789857366, 48.750513007269433 ], [ 10.433037956936175, 48.749608669704344 ], [ 10.433968132922985, 48.747980861727342 ], [ 10.441099480656476, 48.741805528402381 ], [ 10.460684848726771, 48.734984239031405 ], [ 10.467351107567538, 48.73583689975311 ], [ 10.469056430809644, 48.735423489502409 ], [ 10.471071812414209, 48.733744005581343 ], [ 10.474637484931975, 48.728628038553097 ], [ 10.477117953630625, 48.721574205185391 ], [ 10.495101353045015, 48.699456692472381 ], [ 10.45179650180711, 48.672791653511979 ], [ 10.438463983226256, 48.667572332796908 ], [ 10.436603631252581, 48.668140774477138 ], [ 10.435208368171629, 48.669070950463947 ], [ 10.433658074560469, 48.670879624694919 ], [ 10.432572869842033, 48.672791653511979 ], [ 10.43195275221774, 48.675246283788965 ], [ 10.432107781848629, 48.67764923812183 ], [ 10.432572869842033, 48.679277045199456 ], [ 10.433813104191415, 48.681524969901432 ], [ 10.437998895232795, 48.687416083285598 ], [ 10.437843865601906, 48.690154934402699 ], [ 10.437068719245985, 48.692738755888854 ], [ 10.437998895232795, 48.69537425421845 ], [ 10.441409539018991, 48.696356106149381 ], [ 10.443424919724237, 48.69764801734209 ], [ 10.444355095711103, 48.699301662841435 ], [ 10.441719598280827, 48.702634793161167 ], [ 10.439394159213066, 48.704004217820398 ], [ 10.435208368171629, 48.705115260960497 ], [ 10.431022577130193, 48.705089423438096 ], [ 10.424201286859898, 48.701988837115096 ], [ 10.378881055816066, 48.667262275333712 ], [ 10.37469526477463, 48.665117703419241 ], [ 10.371904737713464, 48.664497585794948 ], [ 10.370199416270054, 48.665040188154137 ], [ 10.368029005933863, 48.666693834552802 ], [ 10.361672803656973, 48.674006049439583 ], [ 10.354386427191855, 48.686227524880337 ], [ 10.351130812137285, 48.688759671321748 ], [ 10.346014845108982, 48.689999904771753 ], [ 10.325344273219628, 48.688966375997438 ], [ 10.320073275661116, 48.690051580715874 ], [ 10.316352572613141, 48.691395168752024 ], [ 10.3117016935783, 48.694082343025684 ], [ 10.302865024401342, 48.70054189719076 ], [ 10.298059115735612, 48.703487453882872 ], [ 10.293873324694175, 48.703022365889467 ], [ 10.289842564183004, 48.700076809197355 ], [ 10.282504509975126, 48.691136786333573 ], [ 10.273512811167279, 48.683902085812576 ], [ 10.27180748882455, 48.683126939456656 ], [ 10.270412224844279, 48.681137397173131 ], [ 10.269482048857469, 48.669484360714648 ], [ 10.27335778243571, 48.662353013880477 ], [ 10.277078484584365, 48.65852895804494 ], [ 10.280024041276477, 48.656539414862095 ], [ 10.282039421981722, 48.65491160688515 ], [ 10.283899773955397, 48.65258616781739 ], [ 10.285501742611302, 48.648942980034462 ], [ 10.287052036222462, 48.646927599329217 ], [ 10.289222445659334, 48.645351467296337 ], [ 10.29340823670077, 48.643646144953607 ], [ 10.298989291722421, 48.642070013820046 ], [ 10.304725376375018, 48.639770413174006 ], [ 10.309996372134833, 48.636824856481894 ], [ 10.314802279901301, 48.633052477489798 ], [ 10.320383334922951, 48.629486803173393 ], [ 10.328754917005824, 48.626360379327991 ], [ 10.331235385704474, 48.624887600082673 ], [ 10.332940708047204, 48.623285631426711 ], [ 10.333560824772235, 48.62093435303791 ], [ 10.333560824772235, 48.617213649989935 ], [ 10.329220004999229, 48.613673814095193 ], [ 10.326584506669633, 48.612175198226794 ], [ 10.318678012580222, 48.610340685574158 ], [ 10.313096957558514, 48.608170274338647 ], [ 10.311856724108509, 48.606749172836032 ], [ 10.311081576853269, 48.604914659284077 ], [ 10.3117016935783, 48.600496324245967 ], [ 10.312321812101914, 48.598119208334765 ], [ 10.31325198718946, 48.59589712205451 ], [ 10.31573245588811, 48.592279771793983 ], [ 10.320693394184786, 48.586595363984827 ], [ 10.322243686896627, 48.583598131348651 ], [ 10.323793979608467, 48.579464016251336 ], [ 10.324414097232761, 48.573159491717149 ], [ 10.324104037970983, 48.568482774260588 ], [ 10.322863803621601, 48.56197154415139 ], [ 10.31247684083354, 48.543445543277187 ], [ 10.311391636115104, 48.539776516173276 ], [ 10.311391636115104, 48.537218533108785 ], [ 10.312631869565109, 48.535952460337739 ], [ 10.314337191907839, 48.534505520413404 ], [ 10.317282748599951, 48.533265286064079 ], [ 10.319453158936142, 48.532645169339048 ], [ 10.31743777823084, 48.531663316508798 ], [ 10.31495731043151, 48.531094875727888 ], [ 10.276768426221906, 48.529725450169337 ], [ 10.268241815407464, 48.528304347767403 ], [ 10.265606317077868, 48.527167467104903 ], [ 10.262350702023241, 48.525384630396331 ], [ 10.25676964700159, 48.520914619414157 ], [ 10.25428917830294, 48.51802073776679 ], [ 10.253203972685185, 48.516341253845781 ], [ 10.250568475254909, 48.505153307179341 ], [ 10.153416782158729, 48.465827542307181 ], [ 10.148145786398914, 48.466447659032212 ], [ 10.146285435324558, 48.467041938234843 ], [ 10.144115024089103, 48.468101305430878 ], [ 10.142409701746317, 48.469289862936819 ], [ 10.141324497027881, 48.470633450073649 ], [ 10.140549350671961, 48.472493801148005 ], [ 10.139929233047667, 48.479056708100586 ], [ 10.139154086691747, 48.481201280015057 ], [ 10.138068881973311, 48.483061631988676 ], [ 10.136983677254875, 48.484146836707112 ], [ 10.13341800293847, 48.486859850301812 ], [ 10.131867710226629, 48.487402451761739 ], [ 10.130007358252954, 48.487841702232743 ], [ 10.125046420855597, 48.488100083751817 ], [ 10.121170689076052, 48.487221585507712 ], [ 10.108716667839929, 48.481511339276835 ], [ 10.101430291374811, 48.477093004238725 ], [ 10.098174676320241, 48.476007799520289 ], [ 10.080191277805227, 48.472907213197288 ], [ 10.067943963043433, 48.472235418729554 ], [ 10.064068231263832, 48.471227729276279 ], [ 10.059055617023091, 48.468437202215057 ], [ 10.050529006208649, 48.462236030468432 ], [ 10.046033155905434, 48.457998562583555 ], [ 10.040762160145562, 48.450014553229039 ], [ 10.040297072152157, 48.446345527024448 ], [ 10.041072217608757, 48.442469794345527 ], [ 10.043862745569243, 48.436578680961304 ], [ 10.036576369104125, 48.433400580272519 ], [ 9.980559116010397, 48.381336575122816 ], [ 9.989550814818244, 48.370174465978778 ], [ 9.996682162551735, 48.370174465978778 ], [ 9.998852572887927, 48.370484524341293 ], [ 9.999937777606362, 48.370381171553788 ], [ 10.001022983224061, 48.370096950713673 ], [ 10.001953159210927, 48.369761053929494 ], [ 10.003038363929363, 48.368934230730133 ], [ 10.003865187128667, 48.368055732486027 ], [ 10.022313673637143, 48.340693061535546 ], [ 10.035801221848885, 48.324595852516552 ], [ 10.049908887684978, 48.310591539467964 ], [ 10.054094678726415, 48.304855454815367 ], [ 10.069959343748678, 48.268966173050444 ], [ 10.109336786363599, 48.148017483320189 ], [ 10.136208529999635, 48.107296454467757 ], [ 10.139309116322636, 48.094429022980989 ], [ 10.140084262678556, 48.083628648143588 ], [ 10.137603793979906, 48.056911933239121 ], [ 10.1301623878839, 48.034923610835961 ], [ 10.100655145018891, 47.979603989732311 ], [ 10.093213738922884, 47.976555081152071 ], [ 10.090888298955804, 47.975263169959305 ], [ 10.087787712632803, 47.973092760522434 ], [ 10.085462273565042, 47.970147202931059 ], [ 10.085307244833473, 47.965961411889623 ], [ 10.087012567176203, 47.960277004979787 ], [ 10.095539177990645, 47.948236395793003 ], [ 10.09755455869589, 47.946117662300253 ], [ 10.109491815095168, 47.937797757060821 ], [ 10.110266960551769, 47.933947861904301 ], [ 10.109181755833333, 47.910150865270168 ], [ 10.107786492752439, 47.902709459174162 ], [ 10.106236200040598, 47.897748521776862 ], [ 10.102050408999162, 47.893485216369641 ], [ 10.100965204280726, 47.890307114781479 ], [ 10.098174676320241, 47.877930609709836 ], [ 10.097089470702485, 47.875372625746081 ], [ 10.095539177990645, 47.87358978903751 ], [ 10.09259362129859, 47.87149689396648 ], [ 10.091198358217639, 47.87090261476385 ], [ 10.090113152599884, 47.87015330682965 ], [ 10.086547479182798, 47.867156074193417 ], [ 10.086082391189393, 47.865864163000708 ], [ 10.086547479182798, 47.864546414285542 ], [ 10.088097771894638, 47.862376003949407 ], [ 10.09259362129859, 47.861161607122426 ], [ 10.094919061265671, 47.861135768700763 ], [ 10.096934441970916, 47.861368312697437 ], [ 10.09910485230705, 47.862298489583623 ], [ 10.099879997763651, 47.862298489583623 ], [ 10.100965204280726, 47.862195135896798 ], [ 10.102205437730731, 47.861781724746777 ], [ 10.103910760073518, 47.859921372773101 ], [ 10.107631463121493, 47.854236965863265 ], [ 10.110887079075439, 47.844909369371862 ], [ 10.129542271158869, 47.816513170546386 ], [ 10.123806187405592, 47.814497788941765 ], [ 10.122410923425377, 47.81423940742269 ], [ 10.120085482558977, 47.813515937010834 ], [ 10.118070102753052, 47.81191396745561 ], [ 10.116519810041211, 47.809614365910249 ], [ 10.114452751593205, 47.805893662862218 ], [ 10.112282342156334, 47.803852443735252 ], [ 10.109491815095168, 47.802457179755038 ], [ 10.092438591667644, 47.802147122291842 ], [ 10.089338006243963, 47.801682034298437 ], [ 10.087477655169664, 47.800751858311571 ], [ 10.084997185571638, 47.798943183181336 ], [ 10.080346307436116, 47.793155423483995 ], [ 10.079261101818361, 47.790003160317553 ], [ 10.080191277805227, 47.787031765203778 ], [ 10.086082391189393, 47.782613430165668 ], [ 10.093213738922884, 47.778634344699242 ], [ 10.09677941233997, 47.7747069360762 ], [ 10.09910485230705, 47.770056057041359 ], [ 10.100965204280726, 47.768712469904528 ], [ 10.104065788805087, 47.768040676336113 ], [ 10.111972283793875, 47.768066514757834 ], [ 10.113987663599801, 47.767317205924314 ], [ 10.11589969241686, 47.765250149274948 ], [ 10.117139926766185, 47.762821357419682 ], [ 10.118070102753052, 47.758687242322367 ], [ 10.11915530837075, 47.729593411506698 ], [ 10.122720980888516, 47.710989895367334 ], [ 10.126441684835868, 47.700809638154226 ], [ 10.1301623878839, 47.693859158473344 ], [ 10.131247592602278, 47.690991116147075 ], [ 10.131402622233225, 47.687916368245794 ], [ 10.1301623878839, 47.683136298001727 ], [ 10.128612095172059, 47.679880682947157 ], [ 10.127061801560899, 47.677296861460945 ], [ 10.124736361593818, 47.67528147985638 ], [ 10.121480747438511, 47.673886216775486 ], [ 10.111972283793875, 47.67471303997479 ], [ 10.093368767654511, 47.679725654215531 ], [ 10.09197350367424, 47.679829007003036 ], [ 10.090113152599884, 47.679260566222126 ], [ 10.088407830257154, 47.67701264152015 ], [ 10.086702507914367, 47.672542630537919 ], [ 10.085462273565042, 47.658021551753166 ], [ 10.075695428401275, 47.649701647413053 ], [ 10.069184198292078, 47.657582302181481 ], [ 10.065153435982268, 47.664274400343288 ], [ 10.060347528215857, 47.675539863174095 ], [ 10.057815382673766, 47.678227037447812 ], [ 10.05269941564552, 47.679725654215531 ], [ 10.045878127173808, 47.680449123728067 ], [ 10.033940870774529, 47.680035712578047 ], [ 10.00913618288854, 47.675384833543205 ], [ 9.987535435012319, 47.667245795457063 ], [ 9.969707065228874, 47.662362372425548 ], [ 9.953273960325021, 47.659468492576821 ], [ 9.929192742850773, 47.659261786102547 ], [ 9.905008171689758, 47.663215034046573 ], [ 9.872245313770179, 47.673421128782024 ], [ 9.864648878942603, 47.674816392762295 ], [ 9.852866652174271, 47.67181916012612 ], [ 9.834211460090785, 47.665101223542592 ], [ 9.760055779750417, 47.620375270802072 ], [ 9.715045607069101, 47.604846503463364 ], [ 9.686365187403453, 47.611357734471824 ], [ 9.680008986025882, 47.611564439147514 ], [ 9.664299350634508, 47.606396796175204 ], [ 9.660578647586476, 47.602004300458077 ], [ 9.659183383606262, 47.599472154016667 ], [ 9.658718295612857, 47.597663478886432 ], [ 9.654532504571421, 47.596009833387086 ], [ 9.646781040112899, 47.593994451782521 ], [ 9.619960972420927, 47.59050629273122 ], [ 9.614379917399276, 47.588878486552915 ], [ 9.612209507063085, 47.587741604091718 ], [ 9.601460809069067, 47.577096258885206 ], [ 9.554435255682506, 47.533016262190699 ], [ 9.554143851957178, 47.532743111105674 ], [ 9.549886922000042, 47.533533834000067 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DE-BB", "NAME_1": "Brandenburg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.607964828000092, 52.596462963000064 ], [ 14.613712199000105, 52.59252736400002 ], [ 14.644821411000066, 52.576921082000084 ], [ 14.616812785000064, 52.541031800000027 ], [ 14.609061320000137, 52.517803243000017 ], [ 14.627664836000093, 52.507416280000101 ], [ 14.632315715000061, 52.49674509800009 ], [ 14.615779256000081, 52.473283997000024 ], [ 14.591594686000093, 52.449797059000034 ], [ 14.539814901000113, 52.421865947000057 ], [ 14.54539595600005, 52.382152608000055 ], [ 14.569167114000095, 52.3385118610001 ], [ 14.590147746000099, 52.309418030000089 ], [ 14.584153280000066, 52.291227926000047 ], [ 14.606580851000075, 52.275750835000068 ], [ 14.640480590000067, 52.265053813000051 ], [ 14.668902628000097, 52.260997213000039 ], [ 14.696911255000117, 52.2534782930001 ], [ 14.712414184000124, 52.235908305000024 ], [ 14.712104126000042, 52.215444438000063 ], [ 14.69257043500005, 52.199579773000053 ], [ 14.69257043500005, 52.193378601000077 ], [ 14.707039836000149, 52.179451803000077 ], [ 14.703215780000022, 52.16516327 ], [ 14.692467082000093, 52.146973165000063 ], [ 14.686369263000131, 52.121031596000122 ], [ 14.696394491000063, 52.106691386000122 ], [ 14.76140344300012, 52.076667379000057 ], [ 14.74300663300005, 52.062533875000028 ], [ 14.735358520000148, 52.05403310200002 ], [ 14.732154582000078, 52.045067241000069 ], [ 14.730294230000084, 52.03589467400009 ], [ 14.726056762000042, 52.026437887000029 ], [ 14.704456014000073, 52.002227478000052 ], [ 14.699081665000108, 51.992512309000105 ], [ 14.695567667000148, 51.931456604000104 ], [ 14.687092733000043, 51.911897074000095 ], [ 14.67169315600006, 51.893887838000083 ], [ 14.653296346000076, 51.878617453000047 ], [ 14.595935507000064, 51.842418112000118 ], [ 14.582809693000115, 51.825080668000012 ], [ 14.585806925000043, 51.803893332000044 ], [ 14.602240031000093, 51.788312887000117 ], [ 14.620326782000092, 51.780535584000106 ], [ 14.634176066000066, 51.769011739000078 ], [ 14.638103475000037, 51.742630921000099 ], [ 14.648438761000136, 51.717206116000099 ], [ 14.670969686000149, 51.700773011000123 ], [ 14.719545532000069, 51.675632426 ], [ 14.732464640000074, 51.658346659000088 ], [ 14.74228316200012, 51.632973532 ], [ 14.743936808000086, 51.606644390000056 ], [ 14.732154582000078, 51.58661977200002 ], [ 14.71272424300011, 51.567421977 ], [ 14.704559367000087, 51.547991638000028 ], [ 14.706769960000116, 51.540828064000081 ], [ 14.706575555417544, 51.540833645256498 ], [ 14.663374057866463, 51.542073880505143 ], [ 14.620379265890392, 51.553261827171582 ], [ 14.595367873328655, 51.562486069976103 ], [ 14.57350874213472, 51.565069892361635 ], [ 14.552579786927595, 51.564501451580725 ], [ 14.509274936589065, 51.556853339010388 ], [ 14.377241652080556, 51.515512193432983 ], [ 14.338587680776811, 51.509931139310595 ], [ 14.304739618138854, 51.524090481090809 ], [ 14.268927849840395, 51.532358710386177 ], [ 14.220972121366287, 51.536286119009162 ], [ 14.158753695626558, 51.526881009051294 ], [ 14.118549431610973, 51.512980047890892 ], [ 14.106147088117609, 51.505900377000785 ], [ 14.067028028820459, 51.473860989493062 ], [ 14.061136916335613, 51.466367906553614 ], [ 14.060671828342208, 51.458719793983278 ], [ 14.059276564361937, 51.450735786427401 ], [ 14.043928664176519, 51.428075670455826 ], [ 13.987911411082735, 51.377872016380422 ], [ 13.970341423717741, 51.359190985875273 ], [ 13.966620720669709, 51.358105781156837 ], [ 13.960574578553917, 51.357046413960802 ], [ 13.956078729150022, 51.358725897881868 ], [ 13.94584679509353, 51.359862779443688 ], [ 13.938405388997467, 51.361361396211464 ], [ 13.873396437095892, 51.356297106026602 ], [ 13.766477898835944, 51.34797719988785 ], [ 13.731079542586826, 51.350173447746386 ], [ 13.614394159163112, 51.355315253196352 ], [ 13.568298780864041, 51.364823716841045 ], [ 13.555121291014757, 51.36627065676538 ], [ 13.545509473683239, 51.365624702518005 ], [ 13.533882277445116, 51.363738512122609 ], [ 13.521738314571564, 51.366942451233115 ], [ 13.505150180936084, 51.382497056993543 ], [ 13.491197543831561, 51.38937002230864 ], [ 13.479518669850734, 51.393349106875746 ], [ 13.472077263754727, 51.399214382737568 ], [ 13.457659538656742, 51.406991686517074 ], [ 13.410789014901127, 51.421409409816363 ], [ 13.397766553783413, 51.421719469078198 ], [ 13.387379591894614, 51.419704088372953 ], [ 13.377922804194043, 51.413244534207877 ], [ 13.363143344789535, 51.408335272754584 ], [ 13.270849237202526, 51.38859487595272 ], [ 13.252194045119097, 51.385235908110644 ], [ 13.239171584001383, 51.398671780378322 ], [ 13.232453648317176, 51.401410631495423 ], [ 13.219379510356077, 51.402935085785543 ], [ 13.214521925746283, 51.396604722829693 ], [ 13.20346316938975, 51.397664090025728 ], [ 13.198812290354908, 51.393969225399417 ], [ 13.193696323326662, 51.390971991863921 ], [ 13.18765018121087, 51.385235908110644 ], [ 13.184084506894465, 51.38652781840409 ], [ 13.181293979833299, 51.38802643517181 ], [ 13.177728306416213, 51.393478298984292 ], [ 13.176022983174107, 51.396501370042188 ], [ 13.174627720093213, 51.400454617086893 ], [ 13.173852572837973, 51.403736070563184 ], [ 13.173852572837973, 51.406836655986865 ], [ 13.175092808086617, 51.40921377189801 ], [ 13.177263218422752, 51.411229153502632 ], [ 13.188580357197736, 51.417843736399277 ], [ 13.190905796265497, 51.419704088372953 ], [ 13.193231235333258, 51.422597968221623 ], [ 13.198192172730558, 51.432804063856452 ], [ 13.197468703218078, 51.447092596845835 ], [ 13.199949171916728, 51.458048001314182 ], [ 13.198088819943052, 51.46667796491613 ], [ 13.191991000983876, 51.469881904026636 ], [ 13.189045444291821, 51.476186428560823 ], [ 13.190750766634551, 51.478098456478563 ], [ 13.192921176970742, 51.479958808452238 ], [ 13.196021763293743, 51.481379909954853 ], [ 13.203773227752265, 51.484170437016019 ], [ 13.207390578012735, 51.486495876983099 ], [ 13.210491164335735, 51.490862535177826 ], [ 13.210336134704846, 51.496495266143597 ], [ 13.208475782731171, 51.503833320351418 ], [ 13.203049758239729, 51.518044338975017 ], [ 13.199639112654893, 51.524348863509204 ], [ 13.196021763293743, 51.528638007338145 ], [ 13.175092808086617, 51.536544501427556 ], [ 13.16532596202353, 51.545303657138049 ], [ 13.1654809907551, 51.551272284888 ], [ 13.167651401091291, 51.554682929573517 ], [ 13.16951175306491, 51.558868719715633 ], [ 13.171527133770212, 51.566206773024135 ], [ 13.169201693803132, 51.570599270539901 ], [ 13.166101108379451, 51.573312283235282 ], [ 13.153853793617657, 51.578247382210918 ], [ 13.140934686186824, 51.585378729944409 ], [ 13.137369011870362, 51.586618964293734 ], [ 13.133648308822387, 51.586670641137175 ], [ 13.130237664136871, 51.585688788306925 ], [ 13.127292108344136, 51.584138494695765 ], [ 13.122641229309295, 51.583104966820713 ], [ 13.114889763951453, 51.58501699473851 ], [ 13.101092157377138, 51.590908108122676 ], [ 13.073135207224027, 51.61235382816659 ], [ 13.061663038818153, 51.615092678384372 ], [ 13.082281934763444, 51.638398749502642 ], [ 13.090498488114747, 51.643514716530944 ], [ 13.150443148932141, 51.67286692976495 ], [ 13.178348423141188, 51.696586412033241 ], [ 13.181604038195815, 51.70854950595492 ], [ 13.174472689562947, 51.719944159994952 ], [ 13.164705845298499, 51.730046901942956 ], [ 13.158969760645903, 51.741079819877768 ], [ 13.157264439202493, 51.748547065294815 ], [ 13.156489291947253, 51.775082913045992 ], [ 13.157884555927524, 51.782110907991978 ], [ 13.163465610049855, 51.789035550150516 ], [ 13.193851352957552, 51.819059556952936 ], [ 13.228164503588971, 51.843011583217958 ], [ 13.236846144034303, 51.855491441077106 ], [ 13.217932570431742, 51.860555732161288 ], [ 13.184549594887869, 51.862054348029687 ], [ 13.179123568597788, 51.861382555360592 ], [ 13.173077427381372, 51.858436997769218 ], [ 13.165170933291904, 51.848670151706131 ], [ 13.160830111720259, 51.844381008776509 ], [ 13.153388705624252, 51.846706447844269 ], [ 13.148272738596006, 51.849496974905435 ], [ 13.139384392575664, 51.856628323538303 ], [ 13.132253044842116, 51.857558499525112 ], [ 13.066158888222105, 51.852649238071876 ], [ 13.04771040171363, 51.857145087475772 ], [ 12.991538119888332, 51.881562201734198 ], [ 12.984251743423215, 51.88623891919076 ], [ 12.979910922750889, 51.891845811734811 ], [ 12.974123162154171, 51.896935940341336 ], [ 12.962030877023324, 51.903705552868928 ], [ 12.951178827141121, 51.906935330401154 ], [ 12.930714959028137, 51.909234931047195 ], [ 12.884774611259274, 51.909596666253094 ], [ 12.876868117169863, 51.910811062180755 ], [ 12.871907178873187, 51.912878119729442 ], [ 12.86425906720217, 51.928587755120759 ], [ 12.859143101073244, 51.935124824550996 ], [ 12.844105259250284, 51.941687731503578 ], [ 12.805761346309055, 51.944426580822039 ], [ 12.794754265896643, 51.946235256851594 ], [ 12.705405715001746, 51.980393377852067 ], [ 12.666751742798681, 51.994449367744096 ], [ 12.661015659045404, 51.994759426106611 ], [ 12.654814487298722, 51.994449367744096 ], [ 12.653419224217828, 51.992046414310551 ], [ 12.653109164955993, 51.98912669514084 ], [ 12.650938754619801, 51.985845242563869 ], [ 12.646442905215906, 51.982460436300073 ], [ 12.634298944140937, 51.978998114771173 ], [ 12.621586541385739, 51.973933823686991 ], [ 12.607633905180592, 51.965407212872549 ], [ 12.56153852688152, 51.971711738306055 ], [ 12.54433027472237, 51.977887070731697 ], [ 12.497459750966698, 52.000495509859888 ], [ 12.477305942115549, 52.017083645293951 ], [ 12.471518182418151, 52.019977525142622 ], [ 12.466557245020851, 52.021527817854462 ], [ 12.462526482710985, 52.021114406704498 ], [ 12.45958092601893, 52.019770820466988 ], [ 12.457255486951169, 52.017652086074861 ], [ 12.453844842265653, 52.012742825520945 ], [ 12.449814079955786, 52.010830796703885 ], [ 12.44376793784005, 52.009642239197944 ], [ 12.431830682340092, 52.00938385677955 ], [ 12.42562950969409, 52.010210679978854 ], [ 12.42082360192768, 52.011605943059806 ], [ 12.409454787208631, 52.018323880542653 ], [ 12.37922407393188, 52.031113796764259 ], [ 12.370697463117438, 52.036100572583337 ], [ 12.36511640809573, 52.040079658049763 ], [ 12.364186232108921, 52.045118109812904 ], [ 12.364186232108921, 52.048347887345074 ], [ 12.363876173746405, 52.050880031987845 ], [ 12.361344028204314, 52.057701321358877 ], [ 12.299125604263224, 52.109687812142795 ], [ 12.28052208812386, 52.122167670001943 ], [ 12.260523308903544, 52.12829132828216 ], [ 12.256337517862164, 52.130823472924931 ], [ 12.252771844445078, 52.134337470397895 ], [ 12.246105583805615, 52.147644151456404 ], [ 12.219698927263664, 52.163741360475399 ], [ 12.216598341839983, 52.166325181961554 ], [ 12.207606642132816, 52.178184923095671 ], [ 12.199080031318374, 52.193920396908766 ], [ 12.199700148043405, 52.196504218394921 ], [ 12.201560500017024, 52.199811510292932 ], [ 12.209001906113087, 52.207201240444874 ], [ 12.222024367230745, 52.232367661738181 ], [ 12.244968703143115, 52.24719879798613 ], [ 12.246518995854956, 52.249214178691375 ], [ 12.248069288566796, 52.252418117801881 ], [ 12.245588819868146, 52.2539167345696 ], [ 12.239852736114869, 52.259084378441287 ], [ 12.236442092328673, 52.264665432563618 ], [ 12.233341506005672, 52.267869370774804 ], [ 12.229620802058378, 52.270039781110995 ], [ 12.219853956894553, 52.270608221891905 ], [ 12.214427930604472, 52.273450425796511 ], [ 12.209001906113087, 52.279005642396442 ], [ 12.206211379051865, 52.294327704160196 ], [ 12.20574629105846, 52.301691595890418 ], [ 12.206676467045327, 52.306885078183768 ], [ 12.208071730126221, 52.30946889877066 ], [ 12.214737989866308, 52.319468288830421 ], [ 12.217528516927473, 52.325049342952809 ], [ 12.218613721645909, 52.327839870913294 ], [ 12.221404249606394, 52.33292999951982 ], [ 12.233961622730703, 52.346236681477649 ], [ 12.235201857080028, 52.350034897992145 ], [ 12.234736769086624, 52.353135484315146 ], [ 12.233186476374783, 52.3564427762131 ], [ 12.231481154031997, 52.360835272829547 ], [ 12.229465773326751, 52.368328355768995 ], [ 12.231016066038592, 52.372152412503794 ], [ 12.233186476374783, 52.375873115551826 ], [ 12.233651564368188, 52.379206244972181 ], [ 12.231636182763623, 52.383469550379402 ], [ 12.231946242025458, 52.386466783015578 ], [ 12.233341506005672, 52.388792222982659 ], [ 12.245278760606311, 52.402538154512172 ], [ 12.249309522916121, 52.408274238265449 ], [ 12.256182489130538, 52.421658433689743 ], [ 12.257422722580543, 52.426877753505494 ], [ 12.257267693848974, 52.430908514915984 ], [ 12.255562370606924, 52.433182278039681 ], [ 12.251066522102292, 52.437083849140322 ], [ 12.249206170128616, 52.438944200214621 ], [ 12.247035759792482, 52.442354844900137 ], [ 12.247655877416776, 52.444706122389618 ], [ 12.249309522916121, 52.446463121575789 ], [ 12.260213249641765, 52.450648911717849 ], [ 12.266104363925251, 52.456488349157951 ], [ 12.275251092363987, 52.47168121971248 ], [ 12.286723259870541, 52.484212755314388 ], [ 12.287963495119186, 52.487365017581453 ], [ 12.289048699837622, 52.491473294257105 ], [ 12.287808464588977, 52.499276435559011 ], [ 12.288273552582382, 52.506201076818229 ], [ 12.290754022180352, 52.510361030337265 ], [ 12.295094841953357, 52.516122952512205 ], [ 12.293854607604032, 52.517776598011551 ], [ 12.291064079643547, 52.518086656374066 ], [ 12.283932732809376, 52.515683702041201 ], [ 12.280057000130455, 52.514908556584601 ], [ 12.276026238719908, 52.514520982057661 ], [ 12.271995477309417, 52.51503774689445 ], [ 12.267964714999607, 52.51503774689445 ], [ 12.264244011951575, 52.51446930611354 ], [ 12.260833368165379, 52.51330658613 ], [ 12.256027458600329, 52.514159246851762 ], [ 12.250239698902988, 52.517156481286577 ], [ 12.235356885811598, 52.532478543050274 ], [ 12.229930861320156, 52.536948554032506 ], [ 12.222489455224149, 52.540669257080538 ], [ 12.216908400202499, 52.542116197004873 ], [ 12.211792433174253, 52.542219549792378 ], [ 12.208381789388056, 52.541134345073942 ], [ 12.205901319790087, 52.539144801891041 ], [ 12.204506055809816, 52.536483466039101 ], [ 12.202180616742055, 52.527465928809534 ], [ 12.200630324030215, 52.524830431379257 ], [ 12.198304884063134, 52.522685859464843 ], [ 12.195824416263804, 52.520773831547046 ], [ 12.192982212359198, 52.518965156416812 ], [ 12.190088331611207, 52.517621568380662 ], [ 12.18244021994019, 52.515347805256965 ], [ 12.168642611567236, 52.513745835701741 ], [ 12.155930209711414, 52.515916246037875 ], [ 12.152984653019303, 52.517518216492476 ], [ 12.149574009233106, 52.519947008347742 ], [ 12.147713657259487, 52.522995916927982 ], [ 12.146008334916701, 52.528086046433884 ], [ 12.146318394178536, 52.53183258700426 ], [ 12.147558627628541, 52.534778143696371 ], [ 12.152364536294328, 52.538653876375292 ], [ 12.155775180979788, 52.540669257080538 ], [ 12.158875767302789, 52.543149725779188 ], [ 12.16259647035082, 52.546767076039714 ], [ 12.161666294363954, 52.548963324797569 ], [ 12.159030796034415, 52.550436103143625 ], [ 12.154534945731143, 52.55110789671204 ], [ 12.144768100567376, 52.550823675871925 ], [ 12.135001255403608, 52.549660955888385 ], [ 12.129988641162868, 52.549609279944264 ], [ 12.123942498147755, 52.551004543924535 ], [ 12.123322381422724, 52.552994086208059 ], [ 12.124252557409591, 52.555035305335025 ], [ 12.150814242683111, 52.579995021952698 ], [ 12.152984653019303, 52.586454576117774 ], [ 12.155000033724548, 52.596531481442696 ], [ 12.156860385698224, 52.620405992442556 ], [ 12.159185824765984, 52.630353704759614 ], [ 12.161976352726469, 52.63608978941221 ], [ 12.166317173398795, 52.636580715827336 ], [ 12.18569583499476, 52.635857245415536 ], [ 12.194429152283533, 52.637304186239191 ], [ 12.204661086340025, 52.641179918018793 ], [ 12.209777051569688, 52.645753281788473 ], [ 12.215823194584743, 52.653375555937146 ], [ 12.225745070278776, 52.672599188801485 ], [ 12.228225538977426, 52.681849270027783 ], [ 12.228070509346537, 52.690169176166535 ], [ 12.225745070278776, 52.693192247224431 ], [ 12.222799512687345, 52.69544017192635 ], [ 12.213342725886093, 52.700142726905312 ], [ 12.210242139563093, 52.702571520559218 ], [ 12.207606642132816, 52.706111355554583 ], [ 12.205591261427571, 52.712958482447959 ], [ 12.203730910353215, 52.71740265590779 ], [ 12.201560500017024, 52.720580755697313 ], [ 12.196289504257209, 52.725205797209753 ], [ 12.193292270721713, 52.728151353901808 ], [ 12.190398389973723, 52.732698880149201 ], [ 12.190088331611207, 52.736057847991276 ], [ 12.191018507598017, 52.738977566261667 ], [ 12.195359328270342, 52.742930813306373 ], [ 12.20497114380322, 52.748821925791219 ], [ 12.208691846851252, 52.75192251211422 ], [ 12.208381789388056, 52.75481639286221 ], [ 12.206521437414381, 52.758382066279296 ], [ 12.20264570473546, 52.761017563709572 ], [ 12.19939008968089, 52.764169826875957 ], [ 12.196599561720404, 52.768148912342383 ], [ 12.194222445809203, 52.775512804072605 ], [ 12.195049269008564, 52.779233507120637 ], [ 12.197064649713809, 52.782204902234412 ], [ 12.229620802058378, 52.798741359925771 ], [ 12.233961622730703, 52.809774277860583 ], [ 12.233186476374783, 52.816311347290821 ], [ 12.213807813879498, 52.854603583388609 ], [ 12.208381789388056, 52.861734931122157 ], [ 12.20326582235981, 52.865920722163594 ], [ 12.191741978009873, 52.867832750081334 ], [ 12.179649691979705, 52.871553453129309 ], [ 12.174998813844184, 52.872483629116175 ], [ 12.170657993171858, 52.87217356985434 ], [ 12.136344841641119, 52.865817369376089 ], [ 12.125957878853001, 52.865507311013573 ], [ 12.111230096291877, 52.866644192575393 ], [ 12.112315301010312, 52.878013007294442 ], [ 12.110299920305067, 52.881113592718123 ], [ 12.107199333982066, 52.885144355027933 ], [ 12.100688103872869, 52.889640204431885 ], [ 12.096967400824894, 52.89108714525554 ], [ 12.092936639414347, 52.89165558513713 ], [ 12.02265669085358, 52.886281235690433 ], [ 11.997645298291843, 52.886798001426598 ], [ 11.982607455569621, 52.883051459057583 ], [ 11.965502557097295, 52.885221870293037 ], [ 11.938217401411919, 52.895014552979205 ], [ 11.924729852300857, 52.898270168933095 ], [ 11.906849805673971, 52.899510403282477 ], [ 11.896721226203624, 52.901732490462052 ], [ 11.831867303033619, 52.928242498892189 ], [ 11.833469272588843, 52.932634996407955 ], [ 11.845406528088802, 52.943538723133543 ], [ 11.850780876636122, 52.955114244326865 ], [ 11.838585238717769, 52.959455064099927 ], [ 11.807269320722583, 52.960333564142672 ], [ 11.793265007673938, 52.967154853513648 ], [ 11.762879265665561, 52.99511180276744 ], [ 11.747376335849196, 52.99304474521881 ], [ 11.721744825663166, 52.984156399198412 ], [ 11.711667922136883, 52.982037664806342 ], [ 11.694201286660018, 52.983949692724138 ], [ 11.689136997374533, 52.98994415979513 ], [ 11.687586703763372, 52.999504300283206 ], [ 11.680610385660771, 53.012165025295644 ], [ 11.669086541310833, 53.01728099232389 ], [ 11.635961948185354, 53.018107815523251 ], [ 11.622267694398545, 53.022396959352193 ], [ 11.630535922794593, 53.027590439846904 ], [ 11.636272007447189, 53.03712474191326 ], [ 11.636168653760365, 53.039346829092835 ], [ 11.635806918554408, 53.046245632829653 ], [ 11.625678338184741, 53.050302231762544 ], [ 11.58133995907184, 53.042860826565857 ], [ 11.532299024979977, 53.054643053334189 ], [ 11.509303013123542, 53.056503404408545 ], [ 11.490699496984178, 53.060740872293422 ], [ 11.460933871700831, 53.079421901899252 ], [ 11.43793785984434, 53.083840236937363 ], [ 11.416853875006325, 53.080894680245251 ], [ 11.384246046717692, 53.067122911193394 ], [ 11.365642530578327, 53.063996487347993 ], [ 11.344145134590292, 53.066321926415753 ], [ 11.327608676898933, 53.07241974537493 ], [ 11.290918410356312, 53.098516344453685 ], [ 11.274516761039649, 53.117061220299036 ], [ 11.274089929306797, 53.11754382708591 ], [ 11.274520423978345, 53.117574576705351 ], [ 11.296298940843428, 53.119130185309757 ], [ 11.319633066312974, 53.116018969000208 ], [ 11.352300841610543, 53.116018969000208 ], [ 11.375634967080032, 53.109796535481678 ], [ 11.39430226673619, 53.108240926877272 ], [ 11.395857875340653, 53.122241403418002 ], [ 11.398969093448898, 53.133130660951224 ], [ 11.414525175896131, 53.137797485865235 ], [ 11.447192951193756, 53.137797485865235 ], [ 11.475193901577256, 53.128463835137836 ], [ 11.501639243356408, 53.119130185309757 ], [ 11.528084586034822, 53.12068579391422 ], [ 11.548307494295386, 53.130019443742299 ], [ 11.555243360892405, 53.146058661777772 ], [ 11.550902541119342, 53.15319001041064 ], [ 11.548267042789803, 53.170036526464514 ], [ 11.545166455567482, 53.177012845466436 ], [ 11.539740431076041, 53.182593898689447 ], [ 11.532143996248408, 53.187658189773629 ], [ 11.529508497918812, 53.19517711023542 ], [ 11.535709669665493, 53.205021471563612 ], [ 11.579944695990889, 53.229567776131944 ], [ 11.59963341594937, 53.237319241489786 ], [ 11.654100376331314, 53.249669908139708 ], [ 11.688413526962677, 53.250910142489033 ], [ 11.700195753731009, 53.248377997846319 ], [ 11.731869280842602, 53.232689595448448 ], [ 11.744314146980287, 53.215577903497433 ], [ 11.764537056140227, 53.223355946519689 ], [ 11.786315573005254, 53.2280227714337 ], [ 11.808094089870337, 53.2280227714337 ], [ 11.8392062565635, 53.226467161929975 ], [ 11.836095040253895, 53.240467638470705 ], [ 11.815950962067234, 53.250109157711449 ], [ 11.824942660875081, 53.253493963975245 ], [ 11.833624302219732, 53.25550934557981 ], [ 11.860984774327846, 53.251356896003927 ], [ 11.884318898898073, 53.268468587954942 ], [ 11.92317955868964, 53.279900621416516 ], [ 11.940077751586955, 53.282691148477682 ], [ 11.958988100220608, 53.277802237783021 ], [ 11.979211009380549, 53.290247104820025 ], [ 11.996322701331565, 53.298025146043642 ], [ 12.011878784678174, 53.299580755547424 ], [ 12.021212435405573, 53.315136837994658 ], [ 12.022768043110659, 53.329137314535387 ], [ 12.049213384889811, 53.340026572068609 ], [ 12.063739454911911, 53.356123358406251 ], [ 12.068855421940157, 53.35591665283124 ], [ 12.078053826323014, 53.357957871958206 ], [ 12.095417108113054, 53.363693955711483 ], [ 12.109989861942552, 53.364960028482528 ], [ 12.118516472756994, 53.366872056400268 ], [ 12.12285729342932, 53.366949572564693 ], [ 12.128438347551707, 53.365683498894327 ], [ 12.144147983842345, 53.355270698583865 ], [ 12.148333774883781, 53.354469712906905 ], [ 12.155000034623868, 53.356020006518065 ], [ 12.159340854396874, 53.357570299229906 ], [ 12.179029575254674, 53.367104600396942 ], [ 12.186936069344085, 53.368964952370618 ], [ 12.191948683584883, 53.369275010733134 ], [ 12.197684767338103, 53.368474025955493 ], [ 12.203575880722326, 53.366406968406864 ], [ 12.210242139563093, 53.360670885552906 ], [ 12.21923383927026, 53.349457099565484 ], [ 12.226365187003751, 53.342868354191182 ], [ 12.233651564368188, 53.340775458220776 ], [ 12.296490105933628, 53.331344509841244 ], [ 12.332818638169613, 53.318347887145251 ], [ 12.339174838647864, 53.316254991174901 ], [ 12.369302199137167, 53.302121486917088 ], [ 12.373022902185198, 53.299175930224976 ], [ 12.37844892757596, 53.295816962382901 ], [ 12.380619337912094, 53.29385325852104 ], [ 12.386665480027887, 53.290700995354598 ], [ 12.415190870961908, 53.280985826134952 ], [ 12.418291456385589, 53.278918769485585 ], [ 12.427024773674361, 53.270392157771823 ], [ 12.430125359997362, 53.268480129854083 ], [ 12.436481561374933, 53.267136542717253 ], [ 12.445783319444615, 53.266361395462013 ], [ 12.481491733156929, 53.267911689073173 ], [ 12.496839634241724, 53.271374009702754 ], [ 12.512187534427142, 53.272691758417864 ], [ 12.618175896700279, 53.25628449193573 ], [ 12.623601922091041, 53.256232815092289 ], [ 12.637296176777113, 53.25225373052524 ], [ 12.664271274100031, 53.235717271934504 ], [ 12.706180861357666, 53.228740952932583 ], [ 12.730985548344393, 53.227965807475982 ], [ 12.739667188789724, 53.224555161891203 ], [ 12.741837599125859, 53.210576687264279 ], [ 12.741372511132454, 53.203677884426781 ], [ 12.742147658387694, 53.201352444459701 ], [ 12.743542920569325, 53.198665269286721 ], [ 12.74571333180478, 53.196856594156486 ], [ 12.748400506078497, 53.195461331075535 ], [ 12.753361442576477, 53.1936526559453 ], [ 12.758322380873153, 53.193006699899229 ], [ 12.765453728606701, 53.192851671167659 ], [ 12.809482049357086, 53.198665269286721 ], [ 12.823486362405674, 53.19804515346101 ], [ 12.830462681407596, 53.19690827099987 ], [ 12.837439000409518, 53.195047919026194 ], [ 12.851701694077917, 53.187735704139413 ], [ 12.858522983448893, 53.185901191486778 ], [ 12.866429478437681, 53.185358588228212 ], [ 12.882294142560625, 53.186314603536118 ], [ 12.88989057828752, 53.187580675407844 ], [ 12.899192334558563, 53.190035306584093 ], [ 12.906013624828915, 53.19075877519731 ], [ 12.932885369364271, 53.190913804828199 ], [ 12.940636834722113, 53.192257391965029 ], [ 12.945907829582666, 53.193962714307816 ], [ 12.949163446435875, 53.195513007019656 ], [ 12.953194207846423, 53.195306301444646 ], [ 12.956914910894398, 53.193600979101859 ], [ 12.959240349962158, 53.188975938488738 ], [ 12.957845085981944, 53.186314603536118 ], [ 12.955209588551668, 53.184195868244672 ], [ 12.948698358442471, 53.181301988396001 ], [ 12.946062860112875, 53.179441636422382 ], [ 12.944047479407629, 53.177581285348026 ], [ 12.945907829582666, 53.17417064156183 ], [ 12.951488886402956, 53.171070054339509 ], [ 12.975363397402873, 53.164998073802053 ], [ 13.000994907588904, 53.167659411452632 ], [ 13.026264682569035, 53.183007310738788 ], [ 13.03076053197293, 53.187244777724288 ], [ 13.041354201235379, 53.194892890294625 ], [ 13.047090284988656, 53.197993475718306 ], [ 13.076390822278597, 53.209207261705728 ], [ 13.089568312127881, 53.216907050220186 ], [ 13.098611687779169, 53.220860297264892 ], [ 13.101867302833739, 53.222875677970137 ], [ 13.104347772431765, 53.224968573940487 ], [ 13.106208124405384, 53.227061469011574 ], [ 13.10744835785539, 53.228921820985249 ], [ 13.108378533842256, 53.230601304906259 ], [ 13.109153680198176, 53.232875068029955 ], [ 13.11132409143363, 53.238249417476595 ], [ 13.113029412877097, 53.240755723697646 ], [ 13.116595086294183, 53.243107001187127 ], [ 13.121245965329024, 53.245484117098272 ], [ 13.129927605774355, 53.248093777006204 ], [ 13.135663690426952, 53.250548407283134 ], [ 13.138299187857228, 53.253648994505454 ], [ 13.141554802911799, 53.2556902127331 ], [ 13.145895623584124, 53.25760224155016 ], [ 13.154008823248603, 53.259281725471226 ], [ 13.160985141351205, 53.258713283790996 ], [ 13.168116489084696, 53.256594550298246 ], [ 13.180983920571464, 53.246620999559468 ], [ 13.187495151579981, 53.238740342992401 ], [ 13.190130649909577, 53.236544094234546 ], [ 13.202429640615435, 53.23315928797075 ], [ 13.230489942656732, 53.23318512639247 ], [ 13.234210646604026, 53.243442897971363 ], [ 13.235450880953351, 53.250264187342339 ], [ 13.236536085671787, 53.253132228769289 ], [ 13.239636671994788, 53.25819651985347 ], [ 13.249403517158555, 53.271167304127744 ], [ 13.254726189761811, 53.276412462365215 ], [ 13.266198358167685, 53.282897854052692 ], [ 13.282321404709023, 53.287781277084264 ], [ 13.308521355676021, 53.289305731374384 ], [ 13.32950198772653, 53.286721909888229 ], [ 13.351826206014607, 53.280598253406652 ], [ 13.369861281373005, 53.273751126513275 ], [ 13.388154738250535, 53.27093476013107 ], [ 13.40582807840309, 53.274681302500085 ], [ 13.458434685912039, 53.300157782155907 ], [ 13.468976678331046, 53.302328192492041 ], [ 13.480448845837543, 53.308606880403204 ], [ 13.493522983798641, 53.319329739076181 ], [ 13.50716556164133, 53.342403266197778 ], [ 13.52592410741164, 53.366561998037753 ], [ 13.531350131903025, 53.385423895696192 ], [ 13.538946567629978, 53.396663520105335 ], [ 13.552950880678566, 53.404595853515787 ], [ 13.571554395918611, 53.410512804422353 ], [ 13.607107781798675, 53.41141714108818 ], [ 13.629711474305054, 53.424029423219281 ], [ 13.648378774860532, 53.444252331479902 ], [ 13.709047501441034, 53.475364499072327 ], [ 13.744826493048208, 53.478475715381933 ], [ 13.779049876950239, 53.47692010857611 ], [ 13.808606435938259, 53.484698148900407 ], [ 13.803939610124871, 53.497143015937411 ], [ 13.77880020806316, 53.525247104170489 ], [ 13.780605485554702, 53.543811266876446 ], [ 13.797717178405037, 53.542255658271984 ], [ 13.822606910680349, 53.518921532802494 ], [ 13.869275161619385, 53.508032274369953 ], [ 13.870830770223847, 53.486253758404189 ], [ 13.899751417693778, 53.454721991426709 ], [ 13.905054153226558, 53.441141115170296 ], [ 13.920610236573168, 53.427140640428206 ], [ 13.990612612981693, 53.430251856737755 ], [ 14.050129835923201, 53.427643541316343 ], [ 14.071504247822759, 53.422473815514138 ], [ 14.096393980997391, 53.419362598305213 ], [ 14.116616890157331, 53.436474290256285 ], [ 14.141506623331964, 53.439585507465154 ], [ 14.177285615838514, 53.428696248133292 ], [ 14.219287041863481, 53.430251856737755 ], [ 14.242621166433651, 53.427140640428206 ], [ 14.244176775038113, 53.400695297749792 ], [ 14.239509950124102, 53.382027997194314 ], [ 14.223953866777492, 53.36024948032923 ], [ 14.188174874270999, 53.326026096427199 ], [ 14.104131707412364, 53.291992907446684 ], [ 14.102891473063039, 53.284603176395422 ], [ 14.103201531425498, 53.272510891264574 ], [ 14.145059441839749, 53.268738511373158 ], [ 14.182938266787573, 53.262950752575136 ], [ 14.248843599952181, 53.259134937227543 ], [ 14.262844075593591, 53.265357370746017 ], [ 14.269066509112065, 53.279357846387484 ], [ 14.295511850891216, 53.28713588851042 ], [ 14.323512801274717, 53.308914404476184 ], [ 14.391090934598935, 53.33395416974912 ], [ 14.391260510763971, 53.334017003581835 ], [ 14.398014770000088, 53.315222270000092 ], [ 14.399565064000114, 53.306747335000082 ], [ 14.400185180000079, 53.288608908000057 ], [ 14.403285767000028, 53.27879038499999 ], [ 14.409383586000075, 53.272434184000062 ], [ 14.424679810000043, 53.26465688100005 ], [ 14.428607219000099, 53.259075827000046 ], [ 14.441629680000062, 53.251841126000059 ], [ 14.415584757000062, 53.220990296000068 ], [ 14.408246704000078, 53.21440155099999 ], [ 14.39770471200012, 53.210990906000077 ], [ 14.387782837000117, 53.202076722000058 ], [ 14.380651489000087, 53.189855245000032 ], [ 14.377860962000113, 53.1765485640001 ], [ 14.381478312000098, 53.16029632599999 ], [ 14.38747277900012, 53.146136984000051 ], [ 14.389539835000107, 53.131667583000095 ], [ 14.359567505000143, 53.075056051000033 ], [ 14.356776977000095, 53.066684469000066 ], [ 14.343341105000036, 53.048623555000049 ], [ 14.312645305000103, 53.02921905500007 ], [ 14.253734172000094, 53.000874533000072 ], [ 14.192859334000048, 52.981650900000048 ], [ 14.144490193000109, 52.959920960000048 ], [ 14.144490193000109, 52.953693950000044 ], [ 14.150484660000131, 52.943642884000027 ], [ 14.162680298000055, 52.908167013000096 ], [ 14.164954061000088, 52.895661317000091 ], [ 14.160819946000061, 52.876747742000063 ], [ 14.150484660000131, 52.86462961900007 ], [ 14.12392297300002, 52.850651144000054 ], [ 14.13539514200005, 52.836595154000051 ], [ 14.152758423000051, 52.828326925000098 ], [ 14.173739054000066, 52.824347839000026 ], [ 14.195959920000092, 52.823365987000059 ], [ 14.216010375000053, 52.817991639000084 ], [ 14.248669882000115, 52.794582215000034 ], [ 14.275955037000131, 52.785719706000023 ], [ 14.382201782000095, 52.738151551 ], [ 14.39770471200012, 52.727118632999989 ], [ 14.431914510000098, 52.686087546000053 ], [ 14.442353149000041, 52.679963887999989 ], [ 14.461370076, 52.67456370100011 ], [ 14.49010217300011, 52.650637512000017 ], [ 14.549943481000071, 52.636193950000077 ], [ 14.607964828000092, 52.596462963000064 ] ], [ [ 13.626331413763694, 52.487029119897954 ], [ 13.623385857970959, 52.490646471057744 ], [ 13.625091180313689, 52.498087877153807 ], [ 13.648500604219521, 52.531625882328569 ], [ 13.647570428232655, 52.539273993999586 ], [ 13.62648644429396, 52.541134345073942 ], [ 13.611603631202627, 52.545242620850217 ], [ 13.603077020388184, 52.550513618408729 ], [ 13.590933058413896, 52.553381659835679 ], [ 13.569073927219961, 52.563406887417898 ], [ 13.503289828962409, 52.610174059285384 ], [ 13.500499301901243, 52.613067939134055 ], [ 13.500034213907838, 52.613894762333416 ], [ 13.499259066652598, 52.619424140511626 ], [ 13.499259066652598, 52.624281725121477 ], [ 13.500809360263759, 52.629397691250404 ], [ 13.502514682606488, 52.638544419689197 ], [ 13.502359652975599, 52.640869858756957 ], [ 13.501274448257163, 52.643505357086553 ], [ 13.499724154646003, 52.645262356272724 ], [ 13.483549432160544, 52.654150703192386 ], [ 13.479415317063228, 52.657768053452855 ], [ 13.476728142789568, 52.661617946810793 ], [ 13.473782586097457, 52.663555813150253 ], [ 13.468511590337584, 52.663323269153523 ], [ 13.445102166431809, 52.649706528833235 ], [ 13.442466668102213, 52.647277736977969 ], [ 13.440141229034452, 52.644383857129299 ], [ 13.438435906691723, 52.641593329168757 ], [ 13.434095086019397, 52.640947374022062 ], [ 13.431304558958232, 52.640947374022062 ], [ 13.412029250149772, 52.648724676902305 ], [ 13.388774854975566, 52.636890774189851 ], [ 13.383348829584804, 52.630844632074059 ], [ 13.382108595235479, 52.628312486532025 ], [ 13.379783156167719, 52.626271267405059 ], [ 13.374202101146011, 52.624901841846508 ], [ 13.364228550407233, 52.623609931553062 ], [ 13.326556431034476, 52.625211900209024 ], [ 13.310226678018751, 52.629656074568175 ], [ 13.30697106296418, 52.631154690436574 ], [ 13.304490594265474, 52.633066718354314 ], [ 13.303095330285259, 52.635288805533946 ], [ 13.303715447909553, 52.644538885860868 ], [ 13.302630243191174, 52.647148545768744 ], [ 13.299684685599743, 52.651308499287779 ], [ 13.300304803224094, 52.653220527205519 ], [ 13.301855095935935, 52.65479665833908 ], [ 13.302785271922744, 52.656191922319351 ], [ 13.300304803224094, 52.656941230253551 ], [ 13.289142694080056, 52.657122097406841 ], [ 13.285887079025485, 52.656062731110126 ], [ 13.282476434339969, 52.653969835139776 ], [ 13.279995964741943, 52.648414619439109 ], [ 13.276740349687373, 52.643918769135837 ], [ 13.272554558645936, 52.639164537313547 ], [ 13.261547479132844, 52.633066718354314 ], [ 13.252659133112502, 52.629888618564848 ], [ 13.22351362455413, 52.627253120235309 ], [ 13.220723096593645, 52.625987047464264 ], [ 13.211266309792336, 52.609605618504474 ], [ 13.210026076342331, 52.606763413700548 ], [ 13.209250929087091, 52.603817857008494 ], [ 13.209250929087091, 52.600872301215702 ], [ 13.210336134704846, 52.598391832517052 ], [ 13.211886427416687, 52.596221422180861 ], [ 13.214987012840368, 52.593017483070355 ], [ 13.216072217558803, 52.591441351936794 ], [ 13.216847364814043, 52.58945180875395 ], [ 13.216847364814043, 52.587436428048704 ], [ 13.207545606744361, 52.586764635379609 ], [ 13.164860874030126, 52.598185126042722 ], [ 13.157419467934062, 52.600303860434792 ], [ 13.154783969604523, 52.599554552500592 ], [ 13.152303500905816, 52.597926744523591 ], [ 13.14889285711962, 52.592862454338785 ], [ 13.146825798671671, 52.590511175949985 ], [ 13.14548221243416, 52.588004868829614 ], [ 13.14486209480981, 52.585162664925008 ], [ 13.147445916295965, 52.580976873883571 ], [ 13.148427769126215, 52.575705878123756 ], [ 13.147807650602601, 52.566533312162619 ], [ 13.143311802097969, 52.551934719012024 ], [ 13.140934686186824, 52.524287828120748 ], [ 13.156644320678822, 52.506950384752429 ], [ 13.156489291947253, 52.504185696112984 ], [ 13.156799351209088, 52.501033433845862 ], [ 13.129617547411897, 52.481603095406513 ], [ 13.126516961088896, 52.480001125851231 ], [ 13.119540642986294, 52.477701524305871 ], [ 13.116595086294183, 52.475970364440741 ], [ 13.114424675957991, 52.47379995410455 ], [ 13.112874383246151, 52.47111277893157 ], [ 13.11054894417839, 52.465014959972393 ], [ 13.109153680198176, 52.458581245128357 ], [ 13.109153680198176, 52.455403144439515 ], [ 13.11054894417839, 52.449873766261305 ], [ 13.111789177628452, 52.447367459140878 ], [ 13.116905144656698, 52.441502184178432 ], [ 13.116750115925072, 52.440468655404118 ], [ 13.112409295252746, 52.438298245067926 ], [ 13.10977379692315, 52.436541245881756 ], [ 13.10744835785539, 52.434525865176511 ], [ 13.10574303641198, 52.432277940474535 ], [ 13.105277948418575, 52.42990082546271 ], [ 13.105432977150144, 52.428324693429829 ], [ 13.104192742800819, 52.426826077561429 ], [ 13.103107537183064, 52.425844224731179 ], [ 13.093650750381812, 52.418712876997631 ], [ 13.092100456770652, 52.416749173135827 ], [ 13.091635369676567, 52.415250556368051 ], [ 13.091790399307456, 52.414217026694416 ], [ 13.092100456770652, 52.41370026275689 ], [ 13.092720575294322, 52.413261013185206 ], [ 13.094890984731137, 52.41199494131348 ], [ 13.111944207259342, 52.403985094436507 ], [ 13.117990350274454, 52.402021388776063 ], [ 13.121711053322429, 52.401142890531958 ], [ 13.156489291947253, 52.396853745803696 ], [ 13.159279819008418, 52.397112128222091 ], [ 13.163310581318285, 52.398145656996462 ], [ 13.166566196372855, 52.401556300782602 ], [ 13.16951175306491, 52.403675035174729 ], [ 13.172612339387911, 52.405173651942448 ], [ 13.214056837752821, 52.417059231498285 ], [ 13.219637891875209, 52.417110908341726 ], [ 13.2267692396087, 52.415922349936466 ], [ 13.239636671994788, 52.411064765326614 ], [ 13.24816328280923, 52.405070299154943 ], [ 13.252194045119097, 52.404760239893108 ], [ 13.258240187234833, 52.405509548726684 ], [ 13.285732049394539, 52.412020778835824 ], [ 13.291158074785301, 52.414113674806231 ], [ 13.292398309134626, 52.41483714521803 ], [ 13.294258661108302, 52.415095526737161 ], [ 13.295963982551712, 52.414010322018726 ], [ 13.299219597606339, 52.410289618970694 ], [ 13.304800652627989, 52.402279772093777 ], [ 13.309193149244436, 52.401091213688517 ], [ 13.312707146717457, 52.400496935385206 ], [ 13.336633334560702, 52.405948798298368 ], [ 13.345780063898815, 52.407395738222704 ], [ 13.3493457373159, 52.405897122354304 ], [ 13.354616733075773, 52.401918036887878 ], [ 13.365520460700679, 52.395458481823425 ], [ 13.371514926872351, 52.389515693394515 ], [ 13.375752393857852, 52.386570135803083 ], [ 13.394045850735381, 52.381221624778107 ], [ 13.42567182799246, 52.381092434468258 ], [ 13.427532179066816, 52.388120429414244 ], [ 13.427532179066816, 52.390704250900455 ], [ 13.426912062341785, 52.393701484435951 ], [ 13.424741652005594, 52.398869127408261 ], [ 13.424121535280619, 52.401607978525362 ], [ 13.424018181593794, 52.404450182429969 ], [ 13.424948357580604, 52.407344062278639 ], [ 13.427118767916795, 52.40946279577139 ], [ 13.430064324608907, 52.411090602849015 ], [ 13.433629998025992, 52.412304998776619 ], [ 13.44897789911073, 52.415896511514745 ], [ 13.458124626650203, 52.416749173135827 ], [ 13.463085564946823, 52.415896511514745 ], [ 13.46804650234418, 52.41370026275689 ], [ 13.473317498104052, 52.407524929431929 ], [ 13.475797966802702, 52.403649196753008 ], [ 13.479518669850734, 52.400471096064223 ], [ 13.484376255359905, 52.398662420933931 ], [ 13.494918246879593, 52.397938951421452 ], [ 13.503134800230839, 52.398145656996462 ], [ 13.506080356922894, 52.398791612143157 ], [ 13.509180942346575, 52.399902656182633 ], [ 13.511971470307117, 52.401659654469427 ], [ 13.514451939005767, 52.403675035174729 ], [ 13.519722934765639, 52.404863593579933 ], [ 13.528094516848455, 52.404915270423373 ], [ 13.565818312165334, 52.395665188297755 ], [ 13.584731885767894, 52.388895575770164 ], [ 13.60989830885984, 52.383779608741918 ], [ 13.615014275888086, 52.383469550379402 ], [ 13.62648644429396, 52.384399726366269 ], [ 13.632377556778806, 52.381867580824178 ], [ 13.637338495075483, 52.375976467440012 ], [ 13.641214226855084, 52.360731920042042 ], [ 13.642609490835298, 52.347476914927654 ], [ 13.642609490835298, 52.344789741553313 ], [ 13.643539665922845, 52.343523667882948 ], [ 13.644469841909654, 52.342025051115172 ], [ 13.653978305554347, 52.342335110377007 ], [ 13.667000766672004, 52.359646715323606 ], [ 13.67118655771344, 52.362101344701273 ], [ 13.673356968049632, 52.362850654434112 ], [ 13.696146274331056, 52.367553209413074 ], [ 13.698006626304732, 52.368121650193984 ], [ 13.700022007009977, 52.369051826180794 ], [ 13.701417270990248, 52.370007839690004 ], [ 13.703484327639615, 52.371945706029464 ], [ 13.705344678713914, 52.374271145097225 ], [ 13.70668826675012, 52.378043524988641 ], [ 13.706894972325074, 52.383159492016944 ], [ 13.704517857313249, 52.391970322772124 ], [ 13.704517857313249, 52.397887275477331 ], [ 13.70860029466786, 52.404605211161538 ], [ 13.712320997715835, 52.407912503059549 ], [ 13.716041700763867, 52.410392970858879 ], [ 13.734335157641397, 52.419643052984497 ], [ 13.736660596709157, 52.422769476829842 ], [ 13.738520948682833, 52.426645209508763 ], [ 13.738055860689428, 52.433130602095559 ], [ 13.738520948682833, 52.436308701885082 ], [ 13.739761183032158, 52.439486803473187 ], [ 13.743016798986048, 52.441502184178432 ], [ 13.749528029095245, 52.444861152020508 ], [ 13.750923293075516, 52.446876532725753 ], [ 13.750923293075516, 52.450287177411269 ], [ 13.742551710992643, 52.456359157948782 ], [ 13.736195509615072, 52.459795641055962 ], [ 13.696301303962002, 52.470802721468374 ], [ 13.677542759091068, 52.485530504029498 ], [ 13.664520297973354, 52.489767971014999 ], [ 13.626331413763694, 52.487029119897954 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DE-MV", "NAME_1": "Mecklenburg-Vorpommern" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.263900720257396, 53.699976159680759 ], [ 14.263862752000136, 53.69987579399999 ], [ 14.265102986000073, 53.671763815000062 ], [ 14.260968872000149, 53.656209209000039 ], [ 14.27605839000006, 53.636623841000116 ], [ 14.297039022000149, 53.597763164000057 ], [ 14.298899373000069, 53.58789296500008 ], [ 14.296212199000138, 53.551306051000026 ], [ 14.29693566900005, 53.529136862000101 ], [ 14.304170370000094, 53.508517965000109 ], [ 14.328458293000097, 53.486090394000101 ], [ 14.338896932000125, 53.465213115000054 ], [ 14.359877564000044, 53.444077454000094 ], [ 14.370316202000083, 53.39229766900003 ], [ 14.391260510763971, 53.334017003581835 ], [ 14.391090934598935, 53.33395416974912 ], [ 14.323512801274717, 53.308914404476184 ], [ 14.295511850891216, 53.28713588851042 ], [ 14.269066509112065, 53.279357846387484 ], [ 14.262844075593591, 53.265357370746017 ], [ 14.248843599952181, 53.259134937227543 ], [ 14.182938266787573, 53.262950752575136 ], [ 14.145059441839749, 53.268738511373158 ], [ 14.103201531425498, 53.272510891264574 ], [ 14.102891473063039, 53.284603176395422 ], [ 14.104131707412364, 53.291992907446684 ], [ 14.188174874270999, 53.326026096427199 ], [ 14.223953866777492, 53.36024948032923 ], [ 14.239509950124102, 53.382027997194314 ], [ 14.244176775038113, 53.400695297749792 ], [ 14.242621166433651, 53.427140640428206 ], [ 14.219287041863481, 53.430251856737755 ], [ 14.177285615838514, 53.428696248133292 ], [ 14.141506623331964, 53.439585507465154 ], [ 14.116616890157331, 53.436474290256285 ], [ 14.096393980997391, 53.419362598305213 ], [ 14.071504247822759, 53.422473815514138 ], [ 14.050129835923201, 53.427643541316343 ], [ 13.990612612981693, 53.430251856737755 ], [ 13.920610236573168, 53.427140640428206 ], [ 13.905054153226558, 53.441141115170296 ], [ 13.899751417693778, 53.454721991426709 ], [ 13.870830770223847, 53.486253758404189 ], [ 13.869275161619385, 53.508032274369953 ], [ 13.822606910680349, 53.518921532802494 ], [ 13.797717178405037, 53.542255658271984 ], [ 13.780605485554702, 53.543811266876446 ], [ 13.77880020806316, 53.525247104170489 ], [ 13.803939610124871, 53.497143015937411 ], [ 13.808606435938259, 53.484698148900407 ], [ 13.779049876950239, 53.47692010857611 ], [ 13.744826493048208, 53.478475715381933 ], [ 13.709047501441034, 53.475364499072327 ], [ 13.648378774860532, 53.444252331479902 ], [ 13.629711474305054, 53.424029423219281 ], [ 13.607107781798675, 53.41141714108818 ], [ 13.571554395918611, 53.410512804422353 ], [ 13.552950880678566, 53.404595853515787 ], [ 13.538946567629978, 53.396663520105335 ], [ 13.531350131903025, 53.385423895696192 ], [ 13.52592410741164, 53.366561998037753 ], [ 13.50716556164133, 53.342403266197778 ], [ 13.493522983798641, 53.319329739076181 ], [ 13.480448845837543, 53.308606880403204 ], [ 13.468976678331046, 53.302328192492041 ], [ 13.458434685912039, 53.300157782155907 ], [ 13.40582807840309, 53.274681302500085 ], [ 13.388154738250535, 53.27093476013107 ], [ 13.369861281373005, 53.273751126513275 ], [ 13.351826206014607, 53.280598253406652 ], [ 13.32950198772653, 53.286721909888229 ], [ 13.308521355676021, 53.289305731374384 ], [ 13.282321404709023, 53.287781277084264 ], [ 13.266198358167685, 53.282897854052692 ], [ 13.254726189761811, 53.276412462365215 ], [ 13.249403517158555, 53.271167304127744 ], [ 13.239636671994788, 53.25819651985347 ], [ 13.236536085671787, 53.253132228769289 ], [ 13.235450880953351, 53.250264187342339 ], [ 13.234210646604026, 53.243442897971363 ], [ 13.230489942656732, 53.23318512639247 ], [ 13.202429640615435, 53.23315928797075 ], [ 13.190130649909577, 53.236544094234546 ], [ 13.187495151579981, 53.238740342992401 ], [ 13.180983920571464, 53.246620999559468 ], [ 13.168116489084696, 53.256594550298246 ], [ 13.160985141351205, 53.258713283790996 ], [ 13.154008823248603, 53.259281725471226 ], [ 13.145895623584124, 53.25760224155016 ], [ 13.141554802911799, 53.2556902127331 ], [ 13.138299187857228, 53.253648994505454 ], [ 13.135663690426952, 53.250548407283134 ], [ 13.129927605774355, 53.248093777006204 ], [ 13.121245965329024, 53.245484117098272 ], [ 13.116595086294183, 53.243107001187127 ], [ 13.113029412877097, 53.240755723697646 ], [ 13.11132409143363, 53.238249417476595 ], [ 13.109153680198176, 53.232875068029955 ], [ 13.108378533842256, 53.230601304906259 ], [ 13.10744835785539, 53.228921820985249 ], [ 13.106208124405384, 53.227061469011574 ], [ 13.104347772431765, 53.224968573940487 ], [ 13.101867302833739, 53.222875677970137 ], [ 13.098611687779169, 53.220860297264892 ], [ 13.089568312127881, 53.216907050220186 ], [ 13.076390822278597, 53.209207261705728 ], [ 13.047090284988656, 53.197993475718306 ], [ 13.041354201235379, 53.194892890294625 ], [ 13.03076053197293, 53.187244777724288 ], [ 13.026264682569035, 53.183007310738788 ], [ 13.000994907588904, 53.167659411452632 ], [ 12.975363397402873, 53.164998073802053 ], [ 12.951488886402956, 53.171070054339509 ], [ 12.945907829582666, 53.17417064156183 ], [ 12.944047479407629, 53.177581285348026 ], [ 12.946062860112875, 53.179441636422382 ], [ 12.948698358442471, 53.181301988396001 ], [ 12.955209588551668, 53.184195868244672 ], [ 12.957845085981944, 53.186314603536118 ], [ 12.959240349962158, 53.188975938488738 ], [ 12.956914910894398, 53.193600979101859 ], [ 12.953194207846423, 53.195306301444646 ], [ 12.949163446435875, 53.195513007019656 ], [ 12.945907829582666, 53.193962714307816 ], [ 12.940636834722113, 53.192257391965029 ], [ 12.932885369364271, 53.190913804828199 ], [ 12.906013624828915, 53.19075877519731 ], [ 12.899192334558563, 53.190035306584093 ], [ 12.88989057828752, 53.187580675407844 ], [ 12.882294142560625, 53.186314603536118 ], [ 12.866429478437681, 53.185358588228212 ], [ 12.858522983448893, 53.185901191486778 ], [ 12.851701694077917, 53.187735704139413 ], [ 12.837439000409518, 53.195047919026194 ], [ 12.830462681407596, 53.19690827099987 ], [ 12.823486362405674, 53.19804515346101 ], [ 12.809482049357086, 53.198665269286721 ], [ 12.765453728606701, 53.192851671167659 ], [ 12.758322380873153, 53.193006699899229 ], [ 12.753361442576477, 53.1936526559453 ], [ 12.748400506078497, 53.195461331075535 ], [ 12.74571333180478, 53.196856594156486 ], [ 12.743542920569325, 53.198665269286721 ], [ 12.742147658387694, 53.201352444459701 ], [ 12.741372511132454, 53.203677884426781 ], [ 12.741837599125859, 53.210576687264279 ], [ 12.739667188789724, 53.224555161891203 ], [ 12.730985548344393, 53.227965807475982 ], [ 12.706180861357666, 53.228740952932583 ], [ 12.664271274100031, 53.235717271934504 ], [ 12.637296176777113, 53.25225373052524 ], [ 12.623601922091041, 53.256232815092289 ], [ 12.618175896700279, 53.25628449193573 ], [ 12.512187534427142, 53.272691758417864 ], [ 12.496839634241724, 53.271374009702754 ], [ 12.481491733156929, 53.267911689073173 ], [ 12.445783319444615, 53.266361395462013 ], [ 12.436481561374933, 53.267136542717253 ], [ 12.430125359997362, 53.268480129854083 ], [ 12.427024773674361, 53.270392157771823 ], [ 12.418291456385589, 53.278918769485585 ], [ 12.415190870961908, 53.280985826134952 ], [ 12.386665480027887, 53.290700995354598 ], [ 12.380619337912094, 53.29385325852104 ], [ 12.37844892757596, 53.295816962382901 ], [ 12.373022902185198, 53.299175930224976 ], [ 12.369302199137167, 53.302121486917088 ], [ 12.339174838647864, 53.316254991174901 ], [ 12.332818638169613, 53.318347887145251 ], [ 12.296490105933628, 53.331344509841244 ], [ 12.233651564368188, 53.340775458220776 ], [ 12.226365187003751, 53.342868354191182 ], [ 12.21923383927026, 53.349457099565484 ], [ 12.210242139563093, 53.360670885552906 ], [ 12.203575880722326, 53.366406968406864 ], [ 12.197684767338103, 53.368474025955493 ], [ 12.191948683584883, 53.369275010733134 ], [ 12.186936069344085, 53.368964952370618 ], [ 12.179029575254674, 53.367104600396942 ], [ 12.159340854396874, 53.357570299229906 ], [ 12.155000034623868, 53.356020006518065 ], [ 12.148333774883781, 53.354469712906905 ], [ 12.144147983842345, 53.355270698583865 ], [ 12.128438347551707, 53.365683498894327 ], [ 12.12285729342932, 53.366949572564693 ], [ 12.118516472756994, 53.366872056400268 ], [ 12.109989861942552, 53.364960028482528 ], [ 12.095417108113054, 53.363693955711483 ], [ 12.078053826323014, 53.357957871958206 ], [ 12.068855421940157, 53.35591665283124 ], [ 12.063739454911911, 53.356123358406251 ], [ 12.049213384889811, 53.340026572068609 ], [ 12.022768043110659, 53.329137314535387 ], [ 12.021212435405573, 53.315136837994658 ], [ 12.011878784678174, 53.299580755547424 ], [ 11.996322701331565, 53.298025146043642 ], [ 11.979211009380549, 53.290247104820025 ], [ 11.958988100220608, 53.277802237783021 ], [ 11.940077751586955, 53.282691148477682 ], [ 11.92317955868964, 53.279900621416516 ], [ 11.884318898898073, 53.268468587954942 ], [ 11.860984774327846, 53.251356896003927 ], [ 11.833624302219732, 53.25550934557981 ], [ 11.824942660875081, 53.253493963975245 ], [ 11.815950962067234, 53.250109157711449 ], [ 11.836095040253895, 53.240467638470705 ], [ 11.8392062565635, 53.226467161929975 ], [ 11.808094089870337, 53.2280227714337 ], [ 11.786315573005254, 53.2280227714337 ], [ 11.764537056140227, 53.223355946519689 ], [ 11.744314146980287, 53.215577903497433 ], [ 11.731869280842602, 53.232689595448448 ], [ 11.700195753731009, 53.248377997846319 ], [ 11.688413526962677, 53.250910142489033 ], [ 11.654100376331314, 53.249669908139708 ], [ 11.59963341594937, 53.237319241489786 ], [ 11.579944695990889, 53.229567776131944 ], [ 11.535709669665493, 53.205021471563612 ], [ 11.529508497918812, 53.19517711023542 ], [ 11.532143996248408, 53.187658189773629 ], [ 11.539740431076041, 53.182593898689447 ], [ 11.545166455567482, 53.177012845466436 ], [ 11.548267042789803, 53.170036526464514 ], [ 11.550902541119342, 53.15319001041064 ], [ 11.555243360892405, 53.146058661777772 ], [ 11.548307494295386, 53.130019443742299 ], [ 11.528084586034822, 53.12068579391422 ], [ 11.501639243356408, 53.119130185309757 ], [ 11.475193901577256, 53.128463835137836 ], [ 11.447192951193756, 53.137797485865235 ], [ 11.414525175896131, 53.137797485865235 ], [ 11.398969093448898, 53.133130660951224 ], [ 11.395857875340653, 53.122241403418002 ], [ 11.39430226673619, 53.108240926877272 ], [ 11.375634967080032, 53.109796535481678 ], [ 11.352300841610543, 53.116018969000208 ], [ 11.319633066312974, 53.116018969000208 ], [ 11.296298940843428, 53.119130185309757 ], [ 11.274520423978345, 53.117574576705351 ], [ 11.274089929306797, 53.11754382708591 ], [ 11.262444696265732, 53.130710760693034 ], [ 11.25583011157039, 53.13618846292718 ], [ 11.239707065028995, 53.142027900367282 ], [ 11.232317335776429, 53.148797511995554 ], [ 11.224669224105412, 53.153034979880374 ], [ 11.214488966892304, 53.149004218469884 ], [ 11.201363152987085, 53.140477606756122 ], [ 11.194335158041099, 53.140942694749526 ], [ 11.184051548040486, 53.152104803893565 ], [ 11.176145053951075, 53.158874417320476 ], [ 11.170408970197798, 53.165463161795458 ], [ 11.164517855914312, 53.170863348764499 ], [ 11.156146273831439, 53.173860582299994 ], [ 11.143433871975617, 53.172672023894734 ], [ 11.133098586030883, 53.167607733709929 ], [ 11.124933708623757, 53.162130032375046 ], [ 11.109275750075767, 53.155773830997475 ], [ 11.09971560958769, 53.148539130476479 ], [ 11.089431999587077, 53.144198309804153 ], [ 11.077649773718065, 53.149004218469884 ], [ 11.068089634129308, 53.155515449478401 ], [ 11.040081008032075, 53.166393337782267 ], [ 10.930216912180754, 53.228456732991788 ], [ 10.839266391730575, 53.26010854777121 ], [ 10.807330356111038, 53.275637315109975 ], [ 10.786814812953253, 53.293439846471699 ], [ 10.775135938972369, 53.300235297421011 ], [ 10.755808954219845, 53.302948310116392 ], [ 10.739427524360735, 53.308451849872938 ], [ 10.734621615695005, 53.321706854987326 ], [ 10.734311558231809, 53.337829902428041 ], [ 10.731572707114708, 53.351989244208255 ], [ 10.709713575920773, 53.368344834746324 ], [ 10.675503778076859, 53.373693345771244 ], [ 10.601244744948985, 53.371832993797625 ], [ 10.612096794831189, 53.380928046292297 ], [ 10.622225376100232, 53.3910049507179 ], [ 10.625791050416638, 53.397257799307965 ], [ 10.627186314396852, 53.401546943136907 ], [ 10.626721226403447, 53.404440822985578 ], [ 10.626411167141612, 53.407489732465137 ], [ 10.627186314396852, 53.413690904211819 ], [ 10.635402865949516, 53.445239366203737 ], [ 10.63679812992973, 53.447874864533333 ], [ 10.640828892239597, 53.450975449957014 ], [ 10.647185092717848, 53.453946845070789 ], [ 10.661137729822372, 53.458184312955666 ], [ 10.669044223911783, 53.459269518573421 ], [ 10.674625278034114, 53.459398708883271 ], [ 10.686304152014998, 53.456840724919516 ], [ 10.690955031049839, 53.457719224962261 ], [ 10.694520705366244, 53.460096340873406 ], [ 10.697156202796521, 53.465419013476662 ], [ 10.698551466776735, 53.469372260521368 ], [ 10.701652052200416, 53.475547593846329 ], [ 10.704287551429331, 53.477769680126585 ], [ 10.708163283208933, 53.479449164047651 ], [ 10.725681592831222, 53.481128647968717 ], [ 10.745111932169948, 53.485882879791063 ], [ 10.75534386622644, 53.486942246987098 ], [ 10.76014977399285, 53.488156642914703 ], [ 10.804849888311708, 53.509395657383664 ], [ 10.820352817228695, 53.514795844352705 ], [ 10.822523227564886, 53.516475328273771 ], [ 10.821438022846451, 53.519834296115846 ], [ 10.821903109940536, 53.522831528752022 ], [ 10.823608433182642, 53.528490099038834 ], [ 10.823918490645838, 53.531280626099999 ], [ 10.825623813887887, 53.534717109207179 ], [ 10.83244510325892, 53.544070543220982 ], [ 10.833375278346409, 53.547791246268957 ], [ 10.83322024871552, 53.551021022901864 ], [ 10.831049839278649, 53.55634369640444 ], [ 10.828569369680679, 53.564637763222152 ], [ 10.828259312217483, 53.567428290283317 ], [ 10.829654575298377, 53.570063787713593 ], [ 10.83322024871552, 53.571872463743205 ], [ 10.841436802066767, 53.571872463743205 ], [ 10.849705031362078, 53.569107774204383 ], [ 10.853270704779163, 53.568358466270183 ], [ 10.857766554183115, 53.568203437538557 ], [ 10.903551873220351, 53.57233755083729 ], [ 10.907737664261788, 53.572208360527384 ], [ 10.911458368209139, 53.571355698906359 ], [ 10.914869011995279, 53.569702053407013 ], [ 10.917194451962359, 53.567738349545152 ], [ 10.919054803036715, 53.565412910477392 ], [ 10.920605095748556, 53.563087470510311 ], [ 10.921845330097881, 53.560503648124836 ], [ 10.922930535715636, 53.554638373162391 ], [ 10.923860710803126, 53.551847846101168 ], [ 10.926031121139317, 53.549858302918324 ], [ 10.928976677831429, 53.548463039837372 ], [ 10.933472528134644, 53.549599921399249 ], [ 10.938123407169485, 53.552545478091304 ], [ 10.944324578916167, 53.559728501768916 ], [ 10.949750604306928, 53.562519028830081 ], [ 10.953316277724014, 53.564792791953778 ], [ 10.954401483341769, 53.566136379989928 ], [ 10.950990837756933, 53.567867539855058 ], [ 10.943394402929357, 53.568797715841868 ], [ 10.942309198210921, 53.569702053407013 ], [ 10.949595574676039, 53.572079169318158 ], [ 10.953006219361498, 53.57368113887344 ], [ 10.953781365717418, 53.577970282702381 ], [ 10.952696160999039, 53.584378160024016 ], [ 10.940603874968815, 53.611404934190318 ], [ 10.939828728612895, 53.628716539136917 ], [ 10.947735222702363, 53.630783595786284 ], [ 10.953161248093124, 53.634271755736904 ], [ 10.954918247279295, 53.636623033226385 ], [ 10.95595177605361, 53.639103501925035 ], [ 10.95595177605361, 53.641842353042136 ], [ 10.955641716791774, 53.644581204159238 ], [ 10.9561584807293, 53.647655952060518 ], [ 10.956468539991135, 53.650343126334178 ], [ 10.9561584807293, 53.65290110939867 ], [ 10.9550216000668, 53.655459093362424 ], [ 10.946494989252358, 53.664941717686077 ], [ 10.945409783634602, 53.668145656796582 ], [ 10.945099725272087, 53.671323758384688 ], [ 10.945719841997118, 53.67411428544591 ], [ 10.945564813265491, 53.677059842137965 ], [ 10.942774286204326, 53.680548001189266 ], [ 10.938123407169485, 53.684707952909662 ], [ 10.925255974783397, 53.692433579845783 ], [ 10.914558953632763, 53.696774400518166 ], [ 10.895593703186819, 53.700908514716161 ], [ 10.886291945117136, 53.701890367546412 ], [ 10.87885053902113, 53.701967881912196 ], [ 10.865518018641637, 53.699874985941847 ], [ 10.8574564958206, 53.702587999536547 ], [ 10.846604445039077, 53.708530788864778 ], [ 10.825158725894482, 53.725403144239692 ], [ 10.81740726143596, 53.733309638329104 ], [ 10.809655796078118, 53.73920075081395 ], [ 10.805935093030087, 53.741190293996851 ], [ 10.778133171608545, 53.745841173031693 ], [ 10.769296502431644, 53.745815335509292 ], [ 10.760924920348771, 53.746693833753397 ], [ 10.758909538744206, 53.747882392158658 ], [ 10.75782433402577, 53.749174303351367 ], [ 10.758444451650121, 53.751913154468468 ], [ 10.767436151357288, 53.774599107063125 ], [ 10.769606560794159, 53.782660630783482 ], [ 10.771001824774373, 53.793331814411658 ], [ 10.767436151357288, 53.804726467552427 ], [ 10.764955681759318, 53.811289374505009 ], [ 10.762785272322446, 53.819945177427996 ], [ 10.761545037073802, 53.822503160492431 ], [ 10.753018426259359, 53.834130356730554 ], [ 10.751623162279088, 53.83655915038446 ], [ 10.751003044654794, 53.838910426974621 ], [ 10.751003044654794, 53.841003322944971 ], [ 10.751313103916573, 53.843122057337041 ], [ 10.754103630977795, 53.851674506573204 ], [ 10.755498894958009, 53.854335842425144 ], [ 10.763250360315851, 53.865058701997498 ], [ 10.766971063363883, 53.867358303542858 ], [ 10.772552118385534, 53.869942125029013 ], [ 10.792757603180803, 53.875368150419774 ], [ 10.812291294407714, 53.882654526884892 ], [ 10.861332227600201, 53.909836331581403 ], [ 10.885206740398758, 53.919138088751765 ], [ 10.888772413815843, 53.919370632748496 ], [ 10.891717969608578, 53.91903473596426 ], [ 10.894973585562525, 53.91789785440244 ], [ 10.907272577167703, 53.915469062547174 ], [ 10.908357781886139, 53.914177151354409 ], [ 10.908202752255193, 53.912626857743248 ], [ 10.906962517905868, 53.910766507568269 ], [ 10.906032341919058, 53.908906154695273 ], [ 10.905877313187432, 53.907355861983433 ], [ 10.906652458644032, 53.905340481278188 ], [ 10.908667840248597, 53.903738511722906 ], [ 10.910528192222273, 53.902756659791976 ], [ 10.911613396940709, 53.902394925485396 ], [ 10.912853631290034, 53.902136542167682 ], [ 10.917659539056444, 53.902136542167682 ], [ 10.945254754003656, 53.905185452546561 ], [ 10.950680780293737, 53.907407537927497 ], [ 10.954608188916779, 53.909681301051194 ], [ 10.956881952040419, 53.910714829825508 ], [ 10.95843224475226, 53.911128241874849 ], [ 10.960499302300946, 53.911412461815644 ], [ 10.961274447757546, 53.911903388230769 ], [ 10.960499302300946, 53.912936917005084 ], [ 10.92029503738604, 53.920533351832717 ], [ 10.918279656680795, 53.921308499087957 ], [ 10.915334099988684, 53.922858791799797 ], [ 10.910683220953842, 53.924667466930032 ], [ 10.907427605899272, 53.928388169978007 ], [ 10.904171990844702, 53.931282049826734 ], [ 10.904482049207218, 53.957326972062106 ], [ 10.90601647200009, 53.961208401000079 ], [ 10.91765384200005, 53.960760809000078 ], [ 10.922618035000085, 53.961371161000045 ], [ 10.935394727000073, 53.967271226000037 ], [ 10.964691602000073, 53.985419012000079 ], [ 10.981211785000085, 53.989243882000039 ], [ 11.000254754000082, 53.991603908000059 ], [ 11.053477410000085, 54.008490302000041 ], [ 11.175059441000087, 54.018011786000045 ], [ 11.183848504000082, 54.016017971000053 ], [ 11.19076582100007, 54.010321356000077 ], [ 11.197276238000086, 53.996242580000057 ], [ 11.204356316000087, 53.989243882000039 ], [ 11.23991946700005, 53.983465887000079 ], [ 11.245371941000087, 53.978420315000051 ], [ 11.240733269000089, 53.955633856000077 ], [ 11.242930535000085, 53.945217190000051 ], [ 11.25562584700009, 53.94086334800005 ], [ 11.285411004000082, 53.939683335000041 ], [ 11.293711785000085, 53.94086334800005 ], [ 11.334157748000052, 53.961371161000045 ], [ 11.341807488000086, 53.958319403000075 ], [ 11.352061394000089, 53.944159247000073 ], [ 11.358246290000068, 53.94086334800005 ], [ 11.399912957000083, 53.94086334800005 ], [ 11.400401238000086, 53.937730210000041 ], [ 11.438731316000087, 53.909125067000048 ], [ 11.446299675000091, 53.906154690000051 ], [ 11.457692905000044, 53.906154690000051 ], [ 11.458994988000086, 53.916693427000041 ], [ 11.469086134000065, 53.932766018000052 ], [ 11.476817254000082, 53.952704169000071 ], [ 11.47242272200009, 53.968817450000074 ], [ 11.47982832100007, 53.976141669000071 ], [ 11.489512566000087, 53.980617580000057 ], [ 11.497894727000073, 53.981838283000059 ], [ 11.495941602000073, 53.986314195000034 ], [ 11.49350019600007, 53.997626044000071 ], [ 11.491709832000083, 54.002346096000053 ], [ 11.525889519000089, 54.022772528000075 ], [ 11.525889519000089, 54.030218817000048 ], [ 11.519053582000083, 54.030218817000048 ], [ 11.519053582000083, 54.036444403000075 ], [ 11.54460696700005, 54.030178127000056 ], [ 11.553233269000089, 54.030218817000048 ], [ 11.573496941000087, 54.039048570000034 ], [ 11.591319207000083, 54.065619208000044 ], [ 11.604746941000087, 54.071234442000048 ], [ 11.612803582000083, 54.07290273600006 ], [ 11.619395379000082, 54.077297268000052 ], [ 11.624522332000083, 54.083644924000055 ], [ 11.628916863000086, 54.091050523000035 ], [ 11.629567905000044, 54.09601471600007 ], [ 11.622080925000091, 54.099554755000042 ], [ 11.622080925000091, 54.104681708000044 ], [ 11.625254754000082, 54.109808661000045 ], [ 11.629405144000089, 54.113226630000042 ], [ 11.633148634000065, 54.115912177000041 ], [ 11.65788821700005, 54.142238674000055 ], [ 11.689707879000082, 54.155218817000048 ], [ 11.728770379000082, 54.15851471600007 ], [ 11.81226647200009, 54.149807033000059 ], [ 12.050629102000073, 54.179917710000041 ], [ 12.088145379000082, 54.194077867000033 ], [ 12.093272332000083, 54.165432033000059 ], [ 12.08952884200005, 54.137640692000048 ], [ 12.091644727000073, 54.113999742000033 ], [ 12.11500084700009, 54.097886460000041 ], [ 12.105316602000073, 54.11001211100006 ], [ 12.100352410000085, 54.135972398000035 ], [ 12.09506269600007, 54.145697333000044 ], [ 12.105479363000086, 54.157375393000052 ], [ 12.134287957000083, 54.166978257000039 ], [ 12.142832879000082, 54.180487372000073 ], [ 12.131602410000085, 54.181138414000031 ], [ 12.12086022200009, 54.17999909100007 ], [ 12.110606316000087, 54.177435614000046 ], [ 12.10132897200009, 54.173651434000078 ], [ 12.108897332000083, 54.183010158000059 ], [ 12.142832879000082, 54.209173895000049 ], [ 12.163096550000091, 54.219916083000044 ], [ 12.18685957100007, 54.243353583000044 ], [ 12.20093834700009, 54.248724677000041 ], [ 12.214040561000047, 54.250962632000039 ], [ 12.289398634000065, 54.275091864000046 ], [ 12.327321811000047, 54.293768622000073 ], [ 12.342133009000065, 54.303941148000035 ], [ 12.378184441000087, 54.344916083000044 ], [ 12.438324415000068, 54.395819403000075 ], [ 12.444834832000083, 54.405462958000044 ], [ 12.48609459700009, 54.447333075000074 ], [ 12.501963738000086, 54.473578192000048 ], [ 12.51343834700009, 54.482245184000078 ], [ 12.533864780000044, 54.488267320000034 ], [ 12.533864780000044, 54.482123114000046 ], [ 12.52702884200005, 54.482123114000046 ], [ 12.548350457000083, 54.462062893000052 ], [ 12.59148196700005, 54.451727606000077 ], [ 12.819102410000085, 54.451727606000077 ], [ 12.856618686000047, 54.441107489000046 ], [ 12.879649285000085, 54.448797919000071 ], [ 12.908376498000052, 54.444647528000075 ], [ 12.921153191000087, 54.433498440000051 ], [ 12.896332227000073, 54.420070705000057 ], [ 12.87077884200005, 54.416815497000073 ], [ 12.763682488000086, 54.42218659100007 ], [ 12.720957879000082, 54.431586005000042 ], [ 12.694590691000087, 54.433661200000074 ], [ 12.686778191000087, 54.431626695000034 ], [ 12.676117384000065, 54.422552802000041 ], [ 12.670420769000089, 54.420070705000057 ], [ 12.65007571700005, 54.420070705000057 ], [ 12.624196811000047, 54.422919012000079 ], [ 12.614512566000087, 54.419745184000078 ], [ 12.608409050000091, 54.406398830000057 ], [ 12.602224155000044, 54.413804429000038 ], [ 12.596934441000087, 54.411932684000078 ], [ 12.588063998000052, 54.407456773000035 ], [ 12.58171634200005, 54.406398830000057 ], [ 12.583506707000083, 54.397853908000059 ], [ 12.58765709700009, 54.394029039000031 ], [ 12.594004754000082, 54.392767645000049 ], [ 12.602224155000044, 54.392075914000031 ], [ 12.598643425000091, 54.391546942000048 ], [ 12.595876498000052, 54.391506252000056 ], [ 12.594411655000044, 54.390204169000071 ], [ 12.594737175000091, 54.385891018000052 ], [ 12.57553144600007, 54.391994533000059 ], [ 12.55404707100007, 54.390814520000049 ], [ 12.535980665000068, 54.383734442000048 ], [ 12.52702884200005, 54.372259833000044 ], [ 12.510752800000091, 54.384263414000031 ], [ 12.490977410000085, 54.39008209800005 ], [ 12.45476321700005, 54.392075914000031 ], [ 12.438487175000091, 54.387518622000073 ], [ 12.424978061000047, 54.375921942000048 ], [ 12.418467644000089, 54.360663153000075 ], [ 12.424001498000052, 54.344916083000044 ], [ 12.409678582000083, 54.346625067000048 ], [ 12.403819207000083, 54.348089911000045 ], [ 12.396739129000082, 54.351752020000049 ], [ 12.389903191000087, 54.344916083000044 ], [ 12.396494988000086, 54.332953192000048 ], [ 12.391612175000091, 54.321112372000073 ], [ 12.379079623000052, 54.312445380000042 ], [ 12.362559441000087, 54.310207424000055 ], [ 12.369639519000089, 54.296576239000046 ], [ 12.377940300000091, 54.285874742000033 ], [ 12.380137566000087, 54.277085679000038 ], [ 12.36882571700005, 54.269191799000055 ], [ 12.412445509000065, 54.25141022300005 ], [ 12.436778191000087, 54.247707424000055 ], [ 12.458181186000047, 54.255560614000046 ], [ 12.442637566000087, 54.255194403000075 ], [ 12.430837436000047, 54.258612372000073 ], [ 12.410329623000052, 54.269191799000055 ], [ 12.416840040000068, 54.280951239000046 ], [ 12.426280144000089, 54.289618231000077 ], [ 12.451426629000082, 54.303941148000035 ], [ 12.457286004000082, 54.306301174000055 ], [ 12.468272332000083, 54.308335679000038 ], [ 12.47242272200009, 54.310207424000055 ], [ 12.475596550000091, 54.315130927000041 ], [ 12.476573113000086, 54.327785549000055 ], [ 12.478688998000052, 54.331854559000078 ], [ 12.495616082000083, 54.340277411000045 ], [ 12.560557488000086, 54.358587958000044 ], [ 12.547048373000052, 54.364488023000035 ], [ 12.54078209700009, 54.365423895000049 ], [ 12.54078209700009, 54.372259833000044 ], [ 12.559336785000085, 54.376288153000075 ], [ 12.56609134200005, 54.375921942000048 ], [ 12.574229363000086, 54.372259833000044 ], [ 12.574229363000086, 54.379095770000049 ], [ 12.592946811000047, 54.369330145000049 ], [ 12.62273196700005, 54.373928127000056 ], [ 12.677256707000083, 54.392075914000031 ], [ 12.675059441000087, 54.395412502000056 ], [ 12.672373894000089, 54.40298086100006 ], [ 12.670420769000089, 54.406398830000057 ], [ 12.680837436000047, 54.410874742000033 ], [ 12.692556186000047, 54.413641669000071 ], [ 12.70484459700009, 54.414618231000077 ], [ 12.717539910000085, 54.413804429000038 ], [ 12.717539910000085, 54.406398830000057 ], [ 12.70248457100007, 54.404120184000078 ], [ 12.692393425000091, 54.396185614000046 ], [ 12.686534050000091, 54.384751695000034 ], [ 12.684092644000089, 54.372259833000044 ], [ 12.69662519600007, 54.384955145000049 ], [ 12.701182488000086, 54.391669012000079 ], [ 12.704600457000083, 54.399603583000044 ], [ 12.713552280000044, 54.39008209800005 ], [ 12.723806186000047, 54.381252346000053 ], [ 12.735036655000044, 54.378159898000035 ], [ 12.746104363000086, 54.385891018000052 ], [ 12.757823113000086, 54.379787502000056 ], [ 12.768565300000091, 54.380072333000044 ], [ 12.778330925000091, 54.384751695000034 ], [ 12.787119988000086, 54.392075914000031 ], [ 12.789886915000068, 54.384344794000071 ], [ 12.79468834700009, 54.377142645000049 ], [ 12.800954623000052, 54.370754299000055 ], [ 12.81804446700005, 54.357977606000077 ], [ 12.821787957000083, 54.356146552000041 ], [ 12.825368686000047, 54.357245184000078 ], [ 12.835459832000083, 54.358587958000044 ], [ 12.854665561000047, 54.357855536000045 ], [ 12.864756707000083, 54.359564520000049 ], [ 12.875987175000091, 54.365423895000049 ], [ 12.88453209700009, 54.373480536000045 ], [ 12.894867384000065, 54.389715887000079 ], [ 12.903819207000083, 54.399603583000044 ], [ 12.92937259200005, 54.41437409100007 ], [ 12.969086134000065, 54.429388739000046 ], [ 13.008799675000091, 54.438055731000077 ], [ 13.034190300000091, 54.433661200000074 ], [ 13.021494988000086, 54.426459052000041 ], [ 13.021006707000083, 54.414536851000037 ], [ 13.028575066000087, 54.401841539000031 ], [ 13.04037519600007, 54.392075914000031 ], [ 13.08366946700005, 54.378973700000074 ], [ 13.095550977000073, 54.372259833000044 ], [ 13.076670769000089, 54.352525132000039 ], [ 13.080739780000044, 54.337144273000035 ], [ 13.109222852000073, 54.310207424000055 ], [ 13.112071160000085, 54.299302476000037 ], [ 13.112071160000085, 54.288478908000059 ], [ 13.11491946700005, 54.280015367000033 ], [ 13.125987175000091, 54.276597398000035 ], [ 13.170664910000085, 54.276597398000035 ], [ 13.170664910000085, 54.269191799000055 ], [ 13.161306186000047, 54.269029039000031 ], [ 13.154633009000065, 54.267320054000038 ], [ 13.143402540000068, 54.263006903000075 ], [ 13.176117384000065, 54.264837958000044 ], [ 13.228363477000073, 54.247381903000075 ], [ 13.263194207000083, 54.24249909100007 ], [ 13.28882897200009, 54.234279690000051 ], [ 13.321787957000083, 54.194525458000044 ], [ 13.348887566000087, 54.180487372000073 ], [ 13.33334394600007, 54.174017645000049 ], [ 13.321543816000087, 54.166815497000073 ], [ 13.346527540000068, 54.166937567000048 ], [ 13.383799675000091, 54.178127346000053 ], [ 13.403493686000047, 54.173651434000078 ], [ 13.395681186000047, 54.161932684000078 ], [ 13.390879754000082, 54.157294012000079 ], [ 13.382985873000052, 54.153143622000073 ], [ 13.394786004000082, 54.148911851000037 ], [ 13.40211022200009, 54.151312567000048 ], [ 13.408702019000089, 54.15460846600007 ], [ 13.41773522200009, 54.153143622000073 ], [ 13.42318769600007, 54.148098049000055 ], [ 13.437673373000052, 54.125189520000049 ], [ 13.450368686000047, 54.110419012000079 ], [ 13.465098504000082, 54.098456122000073 ], [ 13.483571811000047, 54.091294664000031 ], [ 13.507090691000087, 54.091050523000035 ], [ 13.507090691000087, 54.097886460000041 ], [ 13.498871290000068, 54.102484442000048 ], [ 13.487478061000047, 54.11391836100006 ], [ 13.479258660000085, 54.118353583000044 ], [ 13.479258660000085, 54.125189520000049 ], [ 13.602712436000047, 54.139471747000073 ], [ 13.632334832000083, 54.147528387000079 ], [ 13.683441602000073, 54.168036200000074 ], [ 13.711924675000091, 54.173651434000078 ], [ 13.71648196700005, 54.168443101000037 ], [ 13.714691602000073, 54.164048570000034 ], [ 13.708262566000087, 54.160874742000033 ], [ 13.698252800000091, 54.159328518000052 ], [ 13.698252800000091, 54.153143622000073 ], [ 13.728770379000082, 54.143866278000075 ], [ 13.808116082000083, 54.104681708000044 ], [ 13.808116082000083, 54.097886460000041 ], [ 13.793711785000085, 54.083197333000044 ], [ 13.785492384000065, 54.06391022300005 ], [ 13.77320397200009, 54.04633209800005 ], [ 13.746104363000086, 54.036444403000075 ], [ 13.758148634000065, 54.030991929000038 ], [ 13.787119988000086, 54.009100653000075 ], [ 13.797618035000085, 53.998928127000056 ], [ 13.803477410000085, 53.996323960000041 ], [ 13.83179772200009, 53.989243882000039 ], [ 13.838633660000085, 53.986314195000034 ], [ 13.84310957100007, 53.979559637000079 ], [ 13.846202019000089, 53.972235419000071 ], [ 13.849131707000083, 53.967596747000073 ], [ 13.850271030000044, 53.964016018000052 ], [ 13.84896894600007, 53.959458726000037 ], [ 13.848643425000091, 53.955552476000037 ], [ 13.852549675000091, 53.953843492000033 ], [ 13.86687259200005, 53.954657294000071 ], [ 13.870127800000091, 53.953843492000033 ], [ 13.875498894000089, 53.951239325000074 ], [ 13.881602410000085, 53.949042059000078 ], [ 13.887950066000087, 53.94757721600007 ], [ 13.893565300000091, 53.947088934000078 ], [ 13.90601647200009, 53.943060614000046 ], [ 13.90756269600007, 53.933539130000042 ], [ 13.901377800000091, 53.922308661000045 ], [ 13.890147332000083, 53.912909247000073 ], [ 13.818532748000052, 53.877997137000079 ], [ 13.808116082000083, 53.865139065000051 ], [ 13.817067905000044, 53.852932033000059 ], [ 13.835785352000073, 53.847479559000078 ], [ 13.854340040000068, 53.844916083000044 ], [ 13.862803582000083, 53.84125397300005 ], [ 13.869151238000086, 53.830308335000041 ], [ 13.883799675000091, 53.817694403000075 ], [ 13.899912957000083, 53.809149481000077 ], [ 13.910655144000089, 53.810492255000042 ], [ 13.984222852000073, 53.773993231000077 ], [ 14.01734459700009, 53.769517320000034 ], [ 14.033539259000065, 53.757513739000046 ], [ 14.037445509000065, 53.755275783000059 ], [ 14.061534050000091, 53.756415106000077 ], [ 14.068858269000089, 53.755275783000059 ], [ 14.094004754000082, 53.746323960000041 ], [ 14.106130405000044, 53.743353583000044 ], [ 14.186534050000091, 53.739813544000071 ], [ 14.214691602000073, 53.744859117000033 ], [ 14.226573113000086, 53.758693752000056 ], [ 14.23414147200009, 53.761786200000074 ], [ 14.250173373000052, 53.759955145000049 ], [ 14.264496290000068, 53.751613674000055 ], [ 14.267425977000073, 53.735419012000079 ], [ 14.25953209700009, 53.72797272300005 ], [ 14.212738477000073, 53.708075262000079 ], [ 14.225352410000085, 53.70376211100006 ], [ 14.24000084700009, 53.700751044000071 ], [ 14.256195509000065, 53.699448960000041 ], [ 14.263900720257396, 53.699976159680759 ] ] ], [ [ [ 14.210052931000064, 53.938462632000039 ], [ 14.193066040000105, 53.911490784000094 ], [ 14.184797811000067, 53.90813181599999 ], [ 14.175289348000092, 53.906478170000028 ], [ 14.192755981000118, 53.89376576800008 ], [ 14.200818737000134, 53.878157293000029 ], [ 14.087412957000083, 53.870428778000075 ], [ 14.065114780000044, 53.872381903000075 ], [ 14.048350457000083, 53.879380601000037 ], [ 14.02507571700005, 53.863836981000077 ], [ 13.99586022200009, 53.853745835000041 ], [ 13.938487175000091, 53.844671942000048 ], [ 13.875254754000082, 53.84406159100007 ], [ 13.840098504000082, 53.850287177000041 ], [ 13.821787957000083, 53.865139065000051 ], [ 13.834727410000085, 53.867987372000073 ], [ 13.855479363000086, 53.877386786000045 ], [ 13.887705925000091, 53.881537177000041 ], [ 13.922373894000089, 53.893377997000073 ], [ 13.931651238000086, 53.899318752000056 ], [ 13.938975457000083, 53.928208726000037 ], [ 13.901866082000083, 53.969794012000079 ], [ 13.904470248000052, 53.995428778000075 ], [ 13.95484459700009, 53.99359772300005 ], [ 13.972666863000086, 53.989243882000039 ], [ 13.965830925000091, 53.981838283000059 ], [ 13.968272332000083, 53.976263739000046 ], [ 13.96029707100007, 53.956732489000046 ], [ 13.958994988000086, 53.94086334800005 ], [ 13.974619988000086, 53.95734284100007 ], [ 13.987478061000047, 53.961411851000037 ], [ 14.027842644000089, 53.961371161000045 ], [ 14.022634311000047, 53.958970445000034 ], [ 14.018565300000091, 53.956366278000075 ], [ 14.015879754000082, 53.952704169000071 ], [ 14.014333530000044, 53.947088934000078 ], [ 14.048350457000083, 53.94086334800005 ], [ 14.040293816000087, 53.953843492000033 ], [ 14.053070509000065, 53.978420315000051 ], [ 14.051280144000089, 54.005072333000044 ], [ 14.037445509000065, 54.021714585000041 ], [ 14.014333530000044, 54.016017971000053 ], [ 14.006195509000065, 54.032294012000079 ], [ 13.995290561000047, 54.045721747000073 ], [ 13.981700066000087, 54.056341864000046 ], [ 13.965830925000091, 54.063788153000075 ], [ 13.946055535000085, 54.066595770000049 ], [ 13.926117384000065, 54.064032294000071 ], [ 13.915863477000073, 54.056382554000038 ], [ 13.924815300000091, 54.043890692000048 ], [ 13.924815300000091, 54.036444403000075 ], [ 13.916270379000082, 54.033636786000045 ], [ 13.907237175000091, 54.027492580000057 ], [ 13.899912957000083, 54.019720770000049 ], [ 13.896983269000089, 54.012274481000077 ], [ 13.890879754000082, 54.010158596000053 ], [ 13.855967644000089, 54.002346096000053 ], [ 13.858083530000044, 54.015773830000057 ], [ 13.865570509000065, 54.02407461100006 ], [ 13.873545769000089, 54.029974677000041 ], [ 13.87631269600007, 54.036444403000075 ], [ 13.871104363000086, 54.048651434000078 ], [ 13.863617384000065, 54.049994208000044 ], [ 13.854991082000083, 54.04633209800005 ], [ 13.823008660000085, 54.037909247000073 ], [ 13.80827884200005, 54.026312567000048 ], [ 13.794200066000087, 54.018133856000077 ], [ 13.774099155000044, 54.022772528000075 ], [ 13.782074415000068, 54.042141018000052 ], [ 13.809255405000044, 54.075100002000056 ], [ 13.814952019000089, 54.101263739000046 ], [ 13.806162957000083, 54.11664459800005 ], [ 13.76531009200005, 54.141913153000075 ], [ 13.752940300000091, 54.153143622000073 ], [ 13.762217644000089, 54.164455471000053 ], [ 13.777598504000082, 54.174017645000049 ], [ 13.796153191000087, 54.178290106000077 ], [ 13.814952019000089, 54.173651434000078 ], [ 13.823741082000083, 54.163967190000051 ], [ 13.844086134000065, 54.131293036000045 ], [ 13.855967644000089, 54.118353583000044 ], [ 13.88249759200005, 54.102443752000056 ], [ 13.948415561000047, 54.079779364000046 ], [ 13.986175977000073, 54.071234442000048 ], [ 14.016612175000091, 54.06000397300005 ], [ 14.192393425000091, 53.946112372000073 ], [ 14.209483269000089, 53.938625393000052 ], [ 14.210052931000064, 53.938462632000039 ] ] ], [ [ [ 11.375661655000044, 53.981838283000059 ], [ 11.39039147200009, 54.004584052000041 ], [ 11.426605665000068, 54.022935289000031 ], [ 11.468028191000087, 54.030951239000046 ], [ 11.497894727000073, 54.022772528000075 ], [ 11.468272332000083, 53.970689195000034 ], [ 11.457692905000044, 53.961371161000045 ], [ 11.445323113000086, 53.961127020000049 ], [ 11.444509311000047, 53.968085028000075 ], [ 11.451426629000082, 53.985541083000044 ], [ 11.44703209700009, 53.997137762000079 ], [ 11.438731316000087, 53.997259833000044 ], [ 11.43327884200005, 53.988755601000037 ], [ 11.437754754000082, 53.975002346000053 ], [ 11.423106316000087, 53.967718817000048 ], [ 11.407074415000068, 53.96820709800005 ], [ 11.390961134000065, 53.973944403000075 ], [ 11.375661655000044, 53.981838283000059 ] ] ], [ [ [ 11.528493686000047, 54.075100002000056 ], [ 11.528575066000087, 54.077460028000075 ], [ 11.533946160000085, 54.084865627000056 ], [ 11.601898634000065, 54.10415273600006 ], [ 11.615896030000044, 54.112127997000073 ], [ 11.59896894600007, 54.098049221000053 ], [ 11.552744988000086, 54.073065497000073 ], [ 11.539561394000089, 54.05695221600007 ], [ 11.533946160000085, 54.05695221600007 ], [ 11.528493686000047, 54.075100002000056 ] ] ], [ [ [ 13.143402540000068, 54.598130601000037 ], [ 13.11890709700009, 54.586411851000037 ], [ 13.113129102000073, 54.570054429000038 ], [ 13.112152540000068, 54.550685940000051 ], [ 13.102549675000091, 54.52993398600006 ], [ 13.095225457000083, 54.524359442000048 ], [ 13.081065300000091, 54.517157294000071 ], [ 13.075043165000068, 54.509426174000055 ], [ 13.071462436000047, 54.499660549000055 ], [ 13.069590691000087, 54.489650783000059 ], [ 13.068207227000073, 54.468451239000046 ], [ 13.061371290000068, 54.468451239000046 ], [ 13.061371290000068, 54.482123114000046 ], [ 13.06421959700009, 54.505113023000035 ], [ 13.095550977000073, 54.570786851000037 ], [ 13.102305535000085, 54.596096096000053 ], [ 13.109629754000082, 54.603094794000071 ], [ 13.125987175000091, 54.605617580000057 ], [ 13.139821811000047, 54.606024481000077 ], [ 13.151052280000044, 54.60492584800005 ], [ 13.157237175000091, 54.59906647300005 ], [ 13.157074415000068, 54.587958075000074 ], [ 13.156504754000082, 54.589056708000044 ], [ 13.15365644600007, 54.591131903000075 ], [ 13.149668816000087, 54.591376044000071 ], [ 13.149668816000087, 54.577704169000071 ], [ 13.143402540000068, 54.577704169000071 ], [ 13.143402540000068, 54.598130601000037 ] ] ], [ [ [ 13.698252800000091, 54.392075914000031 ], [ 13.724864129000082, 54.36359284100007 ], [ 13.74195397200009, 54.350490627000056 ], [ 13.766449415000068, 54.344916083000044 ], [ 13.753103061000047, 54.33930084800005 ], [ 13.740082227000073, 54.329820054000038 ], [ 13.73015384200005, 54.316839911000045 ], [ 13.72624759200005, 54.300523179000038 ], [ 13.72624759200005, 54.284654039000031 ], [ 13.723155144000089, 54.278387762000079 ], [ 13.712738477000073, 54.278998114000046 ], [ 13.690928582000083, 54.28351471600007 ], [ 13.702647332000083, 54.28351471600007 ], [ 13.711924675000091, 54.28656647300005 ], [ 13.715993686000047, 54.29328034100007 ], [ 13.711924675000091, 54.303941148000035 ], [ 13.705088738000086, 54.303941148000035 ], [ 13.694834832000083, 54.297430731000077 ], [ 13.67945397200009, 54.294012762000079 ], [ 13.663340691000087, 54.293890692000048 ], [ 13.651133660000085, 54.29718659100007 ], [ 13.651133660000085, 54.303941148000035 ], [ 13.688243035000085, 54.313299872000073 ], [ 13.703623894000089, 54.320461330000057 ], [ 13.711924675000091, 54.331854559000078 ], [ 13.65992272200009, 54.329779364000046 ], [ 13.636729363000086, 54.325506903000075 ], [ 13.61695397200009, 54.317613023000035 ], [ 13.672129754000082, 54.340318101000037 ], [ 13.690928582000083, 54.344916083000044 ], [ 13.690928582000083, 54.351752020000049 ], [ 13.664073113000086, 54.353257554000038 ], [ 13.65007571700005, 54.352443752000056 ], [ 13.64031009200005, 54.348334052000041 ], [ 13.626800977000073, 54.339097398000035 ], [ 13.618337436000047, 54.341376044000071 ], [ 13.610606316000087, 54.34796784100007 ], [ 13.59929446700005, 54.351752020000049 ], [ 13.49968509200005, 54.344916083000044 ], [ 13.48178144600007, 54.338283596000053 ], [ 13.428884311000047, 54.310939846000053 ], [ 13.41773522200009, 54.300523179000038 ], [ 13.406097852000073, 54.285223700000074 ], [ 13.381602410000085, 54.282212632000039 ], [ 13.359629754000082, 54.275458075000074 ], [ 13.355723504000082, 54.248724677000041 ], [ 13.369395379000082, 54.255560614000046 ], [ 13.369639519000089, 54.260646877000056 ], [ 13.367523634000065, 54.261948960000041 ], [ 13.364756707000083, 54.26203034100007 ], [ 13.363129102000073, 54.263006903000075 ], [ 13.410899285000085, 54.26788971600007 ], [ 13.41773522200009, 54.266058661000045 ], [ 13.425059441000087, 54.243231512000079 ], [ 13.423024936000047, 54.23273346600007 ], [ 13.407237175000091, 54.228216864000046 ], [ 13.37867272200009, 54.230861721000053 ], [ 13.34701582100007, 54.237453518000052 ], [ 13.311534050000091, 54.251125393000052 ], [ 13.319509311000047, 54.256415106000077 ], [ 13.324880405000044, 54.26821523600006 ], [ 13.335215691000087, 54.28351471600007 ], [ 13.320567254000082, 54.278387762000079 ], [ 13.313975457000083, 54.274400132000039 ], [ 13.307871941000087, 54.269191799000055 ], [ 13.31185957100007, 54.266424872000073 ], [ 13.314707879000082, 54.263006903000075 ], [ 13.29468834700009, 54.264105536000045 ], [ 13.284190300000091, 54.262844143000052 ], [ 13.276866082000083, 54.259263414000031 ], [ 13.267914259000065, 54.25649648600006 ], [ 13.257985873000052, 54.260443427000041 ], [ 13.248789910000085, 54.26626211100006 ], [ 13.242442254000082, 54.269191799000055 ], [ 13.227793816000087, 54.270819403000075 ], [ 13.210134311000047, 54.275824286000045 ], [ 13.199229363000086, 54.284409898000035 ], [ 13.20484459700009, 54.29718659100007 ], [ 13.190277540000068, 54.299750067000048 ], [ 13.159678582000083, 54.290961005000042 ], [ 13.149668816000087, 54.290269273000035 ], [ 13.142832879000082, 54.298000393000052 ], [ 13.148936394000089, 54.304754950000074 ], [ 13.162282748000052, 54.307684637000079 ], [ 13.17750084700009, 54.303941148000035 ], [ 13.17750084700009, 54.310207424000055 ], [ 13.115489129000082, 54.338080145000049 ], [ 13.129242384000065, 54.359564520000049 ], [ 13.148936394000089, 54.37726471600007 ], [ 13.174327019000089, 54.383978583000044 ], [ 13.20484459700009, 54.372259833000044 ], [ 13.211680535000085, 54.379095770000049 ], [ 13.223317905000044, 54.37250397300005 ], [ 13.237152540000068, 54.373968817000048 ], [ 13.266856316000087, 54.385891018000052 ], [ 13.251149936000047, 54.386908270000049 ], [ 13.239268425000091, 54.393622137000079 ], [ 13.234385613000086, 54.403387762000079 ], [ 13.239024285000085, 54.413804429000038 ], [ 13.239024285000085, 54.420070705000057 ], [ 13.225352410000085, 54.420843817000048 ], [ 13.217946811000047, 54.425685940000051 ], [ 13.211599155000044, 54.43109772300005 ], [ 13.201426629000082, 54.433661200000074 ], [ 13.156993035000085, 54.426825262000079 ], [ 13.174327019000089, 54.447658596000053 ], [ 13.181813998000052, 54.453029690000051 ], [ 13.208832227000073, 54.456935940000051 ], [ 13.239024285000085, 54.46625397300005 ], [ 13.25953209700009, 54.468451239000046 ], [ 13.25953209700009, 54.475287177000041 ], [ 13.260752800000091, 54.475490627000056 ], [ 13.266856316000087, 54.477484442000048 ], [ 13.27312259200005, 54.482123114000046 ], [ 13.245371941000087, 54.488348700000074 ], [ 13.233246290000068, 54.493068752000056 ], [ 13.225352410000085, 54.501939195000034 ], [ 13.228770379000082, 54.504299221000053 ], [ 13.231944207000083, 54.506008205000057 ], [ 13.233653191000087, 54.50922272300005 ], [ 13.232758009000065, 54.51626211100006 ], [ 13.203298373000052, 54.509466864000046 ], [ 13.185394727000073, 54.508286851000037 ], [ 13.17750084700009, 54.512844143000052 ], [ 13.175303582000083, 54.516017971000053 ], [ 13.170664910000085, 54.516791083000044 ], [ 13.166026238000086, 54.519110419000071 ], [ 13.16382897200009, 54.52680084800005 ], [ 13.162608269000089, 54.53546784100007 ], [ 13.158864780000044, 54.540676174000055 ], [ 13.152354363000086, 54.542954820000034 ], [ 13.143402540000068, 54.542914130000042 ], [ 13.166351759000065, 54.549383856000077 ], [ 13.242930535000085, 54.555975653000075 ], [ 13.25953209700009, 54.553778387000079 ], [ 13.264903191000087, 54.547796942000048 ], [ 13.276540561000047, 54.545070705000057 ], [ 13.288259311000047, 54.539943752000056 ], [ 13.293630405000044, 54.52680084800005 ], [ 13.297862175000091, 54.519680080000057 ], [ 13.305511915000068, 54.523423570000034 ], [ 13.309255405000044, 54.534816799000055 ], [ 13.301036004000082, 54.550360419000071 ], [ 13.315440300000091, 54.56195709800005 ], [ 13.33366946700005, 54.573065497000073 ], [ 13.352549675000091, 54.581447658000059 ], [ 13.369395379000082, 54.585150458000044 ], [ 13.358246290000068, 54.56476471600007 ], [ 13.350759311000047, 54.555975653000075 ], [ 13.342051629000082, 54.550360419000071 ], [ 13.348399285000085, 54.550482489000046 ], [ 13.353851759000065, 54.549872137000079 ], [ 13.358653191000087, 54.547552802000041 ], [ 13.363129102000073, 54.542914130000042 ], [ 13.358083530000044, 54.538153387000079 ], [ 13.348887566000087, 54.523667710000041 ], [ 13.363291863000086, 54.523138739000046 ], [ 13.374847852000073, 54.525580145000049 ], [ 13.383799675000091, 54.53188711100006 ], [ 13.389821811000047, 54.542914130000042 ], [ 13.381358269000089, 54.54437897300005 ], [ 13.371836785000085, 54.548895575000074 ], [ 13.363129102000073, 54.550360419000071 ], [ 13.363129102000073, 54.557196356000077 ], [ 13.37671959700009, 54.564642645000049 ], [ 13.387868686000047, 54.551255601000037 ], [ 13.405528191000087, 54.538234768000052 ], [ 13.41732832100007, 54.524562893000052 ], [ 13.410899285000085, 54.509426174000055 ], [ 13.430674675000091, 54.492743231000077 ], [ 13.455577019000089, 54.487494208000044 ], [ 13.507090691000087, 54.488267320000034 ], [ 13.49968509200005, 54.495754299000055 ], [ 13.509287957000083, 54.508978583000044 ], [ 13.514170769000089, 54.51312897300005 ], [ 13.520762566000087, 54.51626211100006 ], [ 13.520762566000087, 54.523667710000041 ], [ 13.512950066000087, 54.537543036000045 ], [ 13.50749759200005, 54.544663804000038 ], [ 13.49968509200005, 54.550360419000071 ], [ 13.49968509200005, 54.557196356000077 ], [ 13.50554446700005, 54.559719143000052 ], [ 13.508799675000091, 54.561835028000075 ], [ 13.512868686000047, 54.563544012000079 ], [ 13.520762566000087, 54.564642645000049 ], [ 13.520762566000087, 54.570786851000037 ], [ 13.508311394000089, 54.570379950000074 ], [ 13.500254754000082, 54.566066799000055 ], [ 13.49390709700009, 54.560736395000049 ], [ 13.486582879000082, 54.557196356000077 ], [ 13.475759311000047, 54.55609772300005 ], [ 13.441416863000086, 54.557196356000077 ], [ 13.436045769000089, 54.560370184000078 ], [ 13.430674675000091, 54.567450262000079 ], [ 13.423838738000086, 54.57453034100007 ], [ 13.414317254000082, 54.577704169000071 ], [ 13.399261915000068, 54.579575914000031 ], [ 13.393077019000089, 54.584540106000077 ], [ 13.389659050000091, 54.591050523000035 ], [ 13.382985873000052, 54.598130601000037 ], [ 13.371348504000082, 54.608099677000041 ], [ 13.369151238000086, 54.612127997000073 ], [ 13.355723504000082, 54.605617580000057 ], [ 13.347911004000082, 54.600816148000035 ], [ 13.33179772200009, 54.587836005000042 ], [ 13.30836022200009, 54.579575914000031 ], [ 13.291351759000065, 54.568793036000045 ], [ 13.273285352000073, 54.560939846000053 ], [ 13.25326582100007, 54.564642645000049 ], [ 13.24976647200009, 54.57648346600007 ], [ 13.256846550000091, 54.594916083000044 ], [ 13.269867384000065, 54.611802476000037 ], [ 13.283946160000085, 54.619289455000057 ], [ 13.286957227000073, 54.623521226000037 ], [ 13.291270379000082, 54.632961330000057 ], [ 13.293467644000089, 54.642279364000046 ], [ 13.290537957000083, 54.646551825000074 ], [ 13.24586022200009, 54.639797268000052 ], [ 13.231211785000085, 54.633856512000079 ], [ 13.224782748000052, 54.634955145000049 ], [ 13.225352410000085, 54.646551825000074 ], [ 13.230967644000089, 54.653306382000039 ], [ 13.24154707100007, 54.659979559000078 ], [ 13.25359134200005, 54.665025132000039 ], [ 13.390798373000052, 54.688177802000041 ], [ 13.418711785000085, 54.688421942000048 ], [ 13.44507897200009, 54.680080471000053 ], [ 13.44507897200009, 54.673895575000074 ], [ 13.429698113000086, 54.666734117000033 ], [ 13.409027540000068, 54.659816799000055 ], [ 13.390879754000082, 54.650539455000057 ], [ 13.382985873000052, 54.636379299000055 ], [ 13.385996941000087, 54.618638414000031 ], [ 13.394541863000086, 54.604437567000048 ], [ 13.407725457000083, 54.593410549000055 ], [ 13.424571160000085, 54.585150458000044 ], [ 13.466319207000083, 54.576890367000033 ], [ 13.595957879000082, 54.591376044000071 ], [ 13.640472852000073, 54.585679429000038 ], [ 13.670664910000085, 54.566229559000078 ], [ 13.677256707000083, 54.54047272300005 ], [ 13.651133660000085, 54.51626211100006 ], [ 13.60678144600007, 54.498968817000048 ], [ 13.584808790000068, 54.486517645000049 ], [ 13.575450066000087, 54.471869208000044 ], [ 13.579112175000091, 54.455064195000034 ], [ 13.587901238000086, 54.437567450000074 ], [ 13.599131707000083, 54.422674872000073 ], [ 13.609548373000052, 54.413804429000038 ], [ 13.630056186000047, 54.407538153000075 ], [ 13.67741946700005, 54.400824286000045 ], [ 13.698252800000091, 54.392075914000031 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DE-HB", "NAME_1": "Bremen" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.557203417412692, 53.519940796732612 ], [ 8.56576582100007, 53.546698309000078 ], [ 8.560801629000082, 53.551703192000048 ], [ 8.535166863000086, 53.590765692000048 ], [ 8.527517123000052, 53.596625067000048 ], [ 8.517100457000083, 53.610174872000073 ], [ 8.513037633902382, 53.617096718211251 ], [ 8.513413527012631, 53.61701182673437 ], [ 8.562454461104494, 53.606263128740352 ], [ 8.584313592298429, 53.603937690571911 ], [ 8.625293002669935, 53.604997056868626 ], [ 8.630874057691585, 53.603963528094312 ], [ 8.631804232779132, 53.60199982423245 ], [ 8.628238560261309, 53.599364325902911 ], [ 8.625293002669935, 53.5968063419391 ], [ 8.622967563602174, 53.593989977355534 ], [ 8.621727329252849, 53.591483670235164 ], [ 8.620177035641689, 53.587607937556243 ], [ 8.621107211628498, 53.582259426531266 ], [ 8.623587681226468, 53.577091783558956 ], [ 8.631494175315936, 53.567531643070822 ], [ 8.635214878363911, 53.559883531399805 ], [ 8.641881138104054, 53.539316311398636 ], [ 8.642656283560598, 53.531900742824973 ], [ 8.641881138104054, 53.525311998349991 ], [ 8.640640902855353, 53.51988597295923 ], [ 8.639090610143512, 53.51665619632638 ], [ 8.623587681226468, 53.502212632806732 ], [ 8.602813754750969, 53.490482082881783 ], [ 8.601056755564798, 53.490016994888379 ], [ 8.599506462852958, 53.489732774048264 ], [ 8.597491082147712, 53.490585436568608 ], [ 8.595010614348382, 53.49218740522457 ], [ 8.588344353708919, 53.500171414579086 ], [ 8.587879265715515, 53.500326443310655 ], [ 8.58741417772211, 53.500352280833056 ], [ 8.585553826647754, 53.500326443310655 ], [ 8.578267450182693, 53.499241237692956 ], [ 8.572996452624182, 53.501850898500152 ], [ 8.560904168392653, 53.51570018191785 ], [ 8.557203417412692, 53.519940796732612 ] ] ], [ [ [ 8.518684522772503, 53.226105455502363 ], [ 8.529536573554026, 53.224658515578028 ], [ 8.560594110030138, 53.212566230447123 ], [ 8.564469841809739, 53.211791083191883 ], [ 8.566330193783415, 53.211842760035324 ], [ 8.585088738654349, 53.21540843435173 ], [ 8.590204704783275, 53.215356757508346 ], [ 8.617851596573928, 53.204840603511002 ], [ 8.676814406359767, 53.190371202469009 ], [ 8.69030195457151, 53.188433336129549 ], [ 8.701154006252352, 53.189105129697964 ], [ 8.703634474051739, 53.189518540847928 ], [ 8.704719678770118, 53.189931952897268 ], [ 8.706580030743794, 53.191120510403209 ], [ 8.710455763422715, 53.191766466449224 ], [ 8.733141716916691, 53.19267080311505 ], [ 8.745544061309374, 53.191611436818334 ], [ 8.747559442014619, 53.19075877519731 ], [ 8.748954705095571, 53.189596056113089 ], [ 8.74988488108238, 53.188329983342044 ], [ 8.750194940344215, 53.186883043417708 ], [ 8.74988488108238, 53.185487779437437 ], [ 8.749264764357349, 53.183885809882213 ], [ 8.751435173794221, 53.181457018026947 ], [ 8.756551140822467, 53.178718166909846 ], [ 8.778616977591412, 53.170269070461188 ], [ 8.783732943720338, 53.169002996790823 ], [ 8.811638217929385, 53.16957143847111 ], [ 8.823885531791859, 53.168072821703333 ], [ 8.825745883765535, 53.167142645716524 ], [ 8.840680372800932, 53.157944241333666 ], [ 8.860524123289622, 53.149262599988958 ], [ 8.894992302652611, 53.138849798779177 ], [ 8.903984002359834, 53.137609565329171 ], [ 8.909410027750539, 53.138513901994941 ], [ 8.912355584442651, 53.139340725194302 ], [ 8.914370965147896, 53.140632636387011 ], [ 8.915766229128167, 53.142337957830478 ], [ 8.916696405114976, 53.143965765807422 ], [ 8.917781609833412, 53.146937160921198 ], [ 8.919331903444572, 53.149779364825804 ], [ 8.923982781580094, 53.156600654196779 ], [ 8.926308220647854, 53.159339505313881 ], [ 8.928478630984046, 53.161122342022452 ], [ 8.93297448128726, 53.162982693096808 ], [ 8.936230096341887, 53.162801825943461 ], [ 8.939382357709633, 53.161819973113268 ], [ 8.949459263034555, 53.15603221341587 ], [ 8.9730237156719, 53.139547430769312 ], [ 8.975349154739661, 53.137015286126541 ], [ 8.975194126008091, 53.134689846159461 ], [ 8.97209353968509, 53.132467759879205 ], [ 8.960466343446967, 53.126059882557513 ], [ 8.958295933110833, 53.123295193018691 ], [ 8.957830845117371, 53.121925768359517 ], [ 8.961551548165403, 53.115827949400341 ], [ 8.986046176789614, 53.100066637165526 ], [ 8.988216587125805, 53.097172757316855 ], [ 8.989921908569215, 53.09360708300045 ], [ 8.988216587125805, 53.091591702295204 ], [ 8.981395297754773, 53.085933132907712 ], [ 8.979069857787692, 53.081669827500491 ], [ 8.976744418719932, 53.075623684485436 ], [ 8.975349154739661, 53.061877752955922 ], [ 8.974108921289655, 53.056374213199376 ], [ 8.972713657309441, 53.05257599488624 ], [ 8.957675814587162, 53.042602444147462 ], [ 8.922897576861658, 53.027435411115277 ], [ 8.914525994778842, 53.024619046531768 ], [ 8.865950147781064, 53.047511704701378 ], [ 8.865640090317925, 53.046865750454003 ], [ 8.865485059787659, 53.045392971208628 ], [ 8.865950147781064, 53.042654120091527 ], [ 8.865950147781064, 53.039734401821136 ], [ 8.863159620719898, 53.037279772443526 ], [ 8.858043653691652, 53.035677801988925 ], [ 8.844091016587129, 53.033197333290275 ], [ 8.834479201054251, 53.033533230074454 ], [ 8.824660679047099, 53.035006009319829 ], [ 8.777066684879571, 53.05335114214148 ], [ 8.771795689119756, 53.054643053334189 ], [ 8.768333367590856, 53.054643053334189 ], [ 8.758566522427031, 53.052110907792155 ], [ 8.719499139074003, 53.047925116750719 ], [ 8.704874709300384, 53.049552923828344 ], [ 8.703944533313575, 53.050483099815153 ], [ 8.702394239702414, 53.051129054961905 ], [ 8.702549269333304, 53.051697495742815 ], [ 8.702704298964193, 53.052731025416449 ], [ 8.702394239702414, 53.054358832494074 ], [ 8.702704298964193, 53.079861152370256 ], [ 8.701774122977383, 53.083426825787342 ], [ 8.699603712641192, 53.085855618541927 ], [ 8.692937452901106, 53.088103543243903 ], [ 8.653818393603956, 53.115724595713516 ], [ 8.638005405425133, 53.130297350442333 ], [ 8.635834995088942, 53.13391469980354 ], [ 8.633819614383697, 53.138978989988345 ], [ 8.633354526390292, 53.141407782742931 ], [ 8.631494175315936, 53.159572049310611 ], [ 8.617231479848897, 53.17685781493617 ], [ 8.611030308102215, 53.180061754046676 ], [ 8.589222852852345, 53.17897654932824 ], [ 8.578060743708363, 53.179777534105881 ], [ 8.554444614227577, 53.189596056113089 ], [ 8.513000115862667, 53.199750474904477 ], [ 8.50457685693641, 53.211067612780084 ], [ 8.501372917825904, 53.217062078951756 ], [ 8.496050246121968, 53.224038397953677 ], [ 8.518684522772503, 53.226105455502363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DE-HH", "NAME_1": "Hamburg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.763971799359012, 53.547679683570493 ], [ 9.819021030000044, 53.540350653000075 ], [ 9.832041863000086, 53.54360586100006 ], [ 9.819590691000087, 53.556626695000034 ], [ 9.782074415000068, 53.569728908000059 ], [ 9.740810381484961, 53.572574703478352 ], [ 9.740883822830142, 53.572750962886573 ], [ 9.748893669707059, 53.591974595750969 ], [ 9.750598992949165, 53.598020737866705 ], [ 9.751684197667601, 53.604686998506168 ], [ 9.752769403285299, 53.607890936717354 ], [ 9.754009636735361, 53.610035509531087 ], [ 9.756180047071496, 53.611818346239659 ], [ 9.760210809381363, 53.614195462150803 ], [ 9.763311394804987, 53.616572578062005 ], [ 9.765016717147773, 53.618872178708045 ], [ 9.766567009859614, 53.626287747281708 ], [ 9.76842736183329, 53.629181627130379 ], [ 9.77168297688786, 53.629698391067848 ], [ 9.77648888465427, 53.629388332705389 ], [ 9.788167758635154, 53.627579658474417 ], [ 9.79653934071797, 53.624634100883043 ], [ 9.798709751054162, 53.623238836902772 ], [ 9.806926304405408, 53.619879869060696 ], [ 9.810026889829089, 53.617864488355451 ], [ 9.810491977822494, 53.615073961294229 ], [ 9.807546421130439, 53.606495672737083 ], [ 9.806461216412004, 53.601896471445002 ], [ 9.806151157150168, 53.599054267540396 ], [ 9.806926304405408, 53.597142238723336 ], [ 9.808011509123844, 53.596108709948965 ], [ 9.80909671384228, 53.59528188674966 ], [ 9.810491977822494, 53.594610094080565 ], [ 9.812507357628419, 53.593886624568029 ], [ 9.816073031944882, 53.593111477312789 ], [ 9.828630405069134, 53.597245592410161 ], [ 9.927332390877098, 53.645666408877617 ], [ 9.952808872331559, 53.650368963856579 ], [ 9.980404087278771, 53.646725776073708 ], [ 9.984279819058372, 53.646880804805278 ], [ 9.98986087408008, 53.648560288726344 ], [ 9.994046665121459, 53.651428331052614 ], [ 10.003710158397098, 53.666802070559072 ], [ 10.008206007800993, 53.670677802338673 ], [ 10.013632033191755, 53.673003242305754 ], [ 10.025879347054229, 53.675509549426124 ], [ 10.03285566605615, 53.676284694882725 ], [ 10.039056837802832, 53.676258857360324 ], [ 10.052234327652059, 53.67486359338011 ], [ 10.060192497685591, 53.677964178803791 ], [ 10.065153435982268, 53.68080638270834 ], [ 10.078175897099982, 53.712897447059504 ], [ 10.082051628879583, 53.716359767689084 ], [ 10.086392449551909, 53.718891913231175 ], [ 10.088717888619669, 53.719718736430536 ], [ 10.09026818223083, 53.720080470737116 ], [ 10.092903679661049, 53.720183824423941 ], [ 10.142254673014747, 53.713310859108844 ], [ 10.147990756768024, 53.713672594314744 ], [ 10.153571811789675, 53.715636298176605 ], [ 10.171090122311284, 53.725299791452187 ], [ 10.176877882907945, 53.727211819369927 ], [ 10.181993849036871, 53.727780260150837 ], [ 10.187419875326952, 53.727521877732443 ], [ 10.191915723831585, 53.726565864223232 ], [ 10.19377607580526, 53.725093084977857 ], [ 10.194861281422959, 53.722535101913422 ], [ 10.192845899818394, 53.717703355725234 ], [ 10.191140578374984, 53.7151712101832 ], [ 10.179823438700737, 53.705611069695067 ], [ 10.169849887961959, 53.693596299829323 ], [ 10.165819125652092, 53.687369290560298 ], [ 10.164733920933713, 53.684527085756372 ], [ 10.165974155283038, 53.682098293901106 ], [ 10.169229771236928, 53.678635973271525 ], [ 10.204783156217673, 53.662822984193326 ], [ 10.205403272942704, 53.662357897099241 ], [ 10.206488477661082, 53.656983548551921 ], [ 10.206798536922918, 53.650472317543404 ], [ 10.209123975990678, 53.644787909734248 ], [ 10.21455000228076, 53.641842353042136 ], [ 10.218890822053766, 53.640240384386232 ], [ 10.221526320383362, 53.637811590732326 ], [ 10.222766553833367, 53.63365163811261 ], [ 10.221216261121526, 53.626184394494203 ], [ 10.219976026772201, 53.622877101696872 ], [ 10.216720411717631, 53.617709458724505 ], [ 10.21532514773736, 53.614195462150803 ], [ 10.213309767032115, 53.601689764970672 ], [ 10.212379591944625, 53.588150539915432 ], [ 10.211604444689385, 53.585566718429277 ], [ 10.210674268702519, 53.584352322501672 ], [ 10.208658887997274, 53.583034572887186 ], [ 10.206023389667678, 53.581871852903646 ], [ 10.195946486141395, 53.579210517051706 ], [ 10.17811811725727, 53.576523341878726 ], [ 10.175482618927731, 53.57543813716029 ], [ 10.173157178960651, 53.573784492560264 ], [ 10.172847120598135, 53.570528875706998 ], [ 10.17408735494746, 53.565981350358982 ], [ 10.180753614687546, 53.549625758921593 ], [ 10.182303908298707, 53.540969956897982 ], [ 10.182148878667817, 53.534045314739444 ], [ 10.183234084285573, 53.528955187032238 ], [ 10.186644728071713, 53.525311998349991 ], [ 10.197496778853235, 53.521746324033586 ], [ 10.213929883757089, 53.518826605763195 ], [ 10.222766553833367, 53.513013006744814 ], [ 10.247622917663534, 53.488776760539054 ], [ 10.269792108119304, 53.481490384073936 ], [ 10.277853630940285, 53.47751129770819 ], [ 10.312631869565109, 53.454928697001719 ], [ 10.313407016820349, 53.455238756263554 ], [ 10.31495731043151, 53.455600491469454 ], [ 10.318833042211111, 53.455858872988586 ], [ 10.320693394184786, 53.455652167413575 ], [ 10.323173861984117, 53.450432848497144 ], [ 10.327979770649904, 53.432656155557083 ], [ 10.285346713879733, 53.432656155557083 ], [ 10.275993279865986, 53.430795803583464 ], [ 10.266071405071273, 53.427075100535433 ], [ 10.243747185883933, 53.409401760382934 ], [ 10.241576776447062, 53.406611233321712 ], [ 10.186541375284207, 53.404389147041456 ], [ 10.169849887961959, 53.406611233321712 ], [ 10.153571811789675, 53.413639228267755 ], [ 10.143081496214052, 53.422682603918986 ], [ 10.131402622233225, 53.430589098008454 ], [ 10.111197137437955, 53.433896389007145 ], [ 10.09910485230705, 53.439477444028796 ], [ 10.083136833597962, 53.450897936490549 ], [ 10.07600548676379, 53.450432848497144 ], [ 10.038746779440316, 53.443094794289323 ], [ 10.032390578062689, 53.440976060796515 ], [ 10.029445021370634, 53.43839223931036 ], [ 10.029600051001523, 53.43663524012419 ], [ 10.030065138095608, 53.434516507530759 ], [ 10.030685255719959, 53.433069565807784 ], [ 10.030840285350848, 53.431157537890044 ], [ 10.030375197357444, 53.429193834028183 ], [ 10.027894727759474, 53.427488511685453 ], [ 10.011306593224674, 53.421494046413102 ], [ 9.985365023776808, 53.41506032977037 ], [ 9.975288120250525, 53.414052639417775 ], [ 9.968466830879549, 53.414466051467059 ], [ 9.950018345270394, 53.422010810350571 ], [ 9.945005731029653, 53.422837633549932 ], [ 9.938804559282971, 53.421881619141402 ], [ 9.918960808794282, 53.415602932129559 ], [ 9.912914665779169, 53.415602932129559 ], [ 9.909348993261403, 53.418083400828266 ], [ 9.90872887473779, 53.421545722357166 ], [ 9.908108758012759, 53.430795803583464 ], [ 9.905473259683163, 53.441234443214967 ], [ 9.900047235191721, 53.446608791762287 ], [ 9.895706413620076, 53.448650010889253 ], [ 9.890848829909544, 53.449037584516873 ], [ 9.882787306189243, 53.447228909386638 ], [ 9.877516310429371, 53.444774278210332 ], [ 9.865113966936008, 53.43340546349134 ], [ 9.861238234257087, 53.43224274440712 ], [ 9.857207471947277, 53.432862861132094 ], [ 9.824444614027698, 53.451414700428074 ], [ 9.816693148669856, 53.456944077707021 ], [ 9.81064700655412, 53.462370103997102 ], [ 9.804755894069217, 53.469191393368078 ], [ 9.800725131759407, 53.47523753548387 ], [ 9.796074252724566, 53.484280911135102 ], [ 9.793748813656805, 53.487794907708803 ], [ 9.791423373689724, 53.489810289313368 ], [ 9.785222201943043, 53.492445786743644 ], [ 9.782431674881877, 53.49430613871732 ], [ 9.780726353438467, 53.49657990184096 ], [ 9.779331088558877, 53.500093899313981 ], [ 9.77726403190951, 53.502315986493556 ], [ 9.76842736183329, 53.508155423034339 ], [ 9.764706658785258, 53.543760483959147 ], [ 9.763971799359012, 53.547679683570493 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DE-HE", "NAME_1": "Hessen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.949243198015154, 51.381799425003408 ], [ 9.930432977200098, 51.371696682156141 ], [ 9.926712274152123, 51.367330023961415 ], [ 9.923456659097553, 51.360276191493028 ], [ 9.923766716560692, 51.356297106026602 ], [ 9.925161981440283, 51.353299872491107 ], [ 9.926712274152123, 51.351000270945747 ], [ 9.927797478870559, 51.34833893509375 ], [ 9.928727654857369, 51.342292792078638 ], [ 9.929812859575804, 51.339657293749099 ], [ 9.93167321065016, 51.337590237099732 ], [ 9.937254265671811, 51.334231269257657 ], [ 9.940664911256647, 51.331492418140556 ], [ 9.942835320693462, 51.32658315668732 ], [ 9.945780877385573, 51.317436428248527 ], [ 9.944850702298083, 51.308031318290659 ], [ 9.947021111734898, 51.303948880036785 ], [ 9.949863314740185, 51.303018704049919 ], [ 9.953584018687479, 51.303793850405839 ], [ 9.958544956084836, 51.302760322530844 ], [ 9.964746127831518, 51.299918117726918 ], [ 9.972807650652555, 51.291546536543422 ], [ 9.978853793667611, 51.287955023805296 ], [ 9.983969760695913, 51.285784614368424 ], [ 9.988775669361644, 51.285629583838215 ], [ 9.999782748874736, 51.286327215828294 ], [ 10.002418247204332, 51.285965481521714 ], [ 10.025104200698308, 51.280022691294164 ], [ 10.040297072152157, 51.279092516206617 ], [ 10.049133742228435, 51.276560369765207 ], [ 10.052544386014574, 51.273873196390866 ], [ 10.053784621263276, 51.271005154064596 ], [ 10.048513624604084, 51.262891954400175 ], [ 10.048513624604084, 51.257750148950208 ], [ 10.050994093302734, 51.253977769958112 ], [ 10.05362959163233, 51.251704006834416 ], [ 10.069339227023704, 51.243642483114058 ], [ 10.071819695722354, 51.239430854550278 ], [ 10.073990106058545, 51.227829494935236 ], [ 10.077245721113115, 51.224883938243124 ], [ 10.081276483422982, 51.223230291844459 ], [ 10.085772331927558, 51.222868557537879 ], [ 10.089648064606479, 51.221938382450389 ], [ 10.096159294715676, 51.219302884120793 ], [ 10.100345085757112, 51.218114325715533 ], [ 10.105150995322163, 51.217494208091182 ], [ 10.111817254162929, 51.215582180173442 ], [ 10.117294956397132, 51.214703681030016 ], [ 10.127371859923358, 51.213980211517537 ], [ 10.1332629742069, 51.212946681843846 ], [ 10.142099644283121, 51.20860586207084 ], [ 10.148455844761429, 51.206952216571494 ], [ 10.15388187015219, 51.2063320989472 ], [ 10.163183628221873, 51.206848862884669 ], [ 10.172847120598135, 51.206073717428069 ], [ 10.186334669709254, 51.200957750399823 ], [ 10.197031690859831, 51.194704901809757 ], [ 10.217185499711036, 51.187470201288704 ], [ 10.230259636772814, 51.184317939021639 ], [ 10.231964959115544, 51.182509263891404 ], [ 10.23289513510241, 51.179873766461128 ], [ 10.232585076739895, 51.178581855268362 ], [ 10.229174432054378, 51.172897447459206 ], [ 10.214084914287355, 51.161270250321763 ], [ 10.208503859265704, 51.151141669052777 ], [ 10.207728712909784, 51.146852525223835 ], [ 10.207573683278838, 51.140909735895548 ], [ 10.202767774613108, 51.120213325584473 ], [ 10.19873701320256, 51.116337592006232 ], [ 10.1964115741348, 51.115872504012827 ], [ 10.194861281422959, 51.118017075927298 ], [ 10.193621047073634, 51.122357897498944 ], [ 10.19145063583818, 51.12401154209897 ], [ 10.185559523353334, 51.127008774735145 ], [ 10.185094435359872, 51.12783559793445 ], [ 10.184629347366467, 51.129334214702226 ], [ 10.185869581715792, 51.130884508313386 ], [ 10.186334669709254, 51.133054917750201 ], [ 10.185404493722388, 51.135121975298887 ], [ 10.177497999632976, 51.142201647088314 ], [ 10.173622266954055, 51.14483714541791 ], [ 10.166439243276443, 51.1454055852995 ], [ 10.15651736758241, 51.144966335727759 ], [ 10.134348178925279, 51.141064765526494 ], [ 10.127836947916819, 51.138274238465328 ], [ 10.125976596842463, 51.136103828129137 ], [ 10.129232211897033, 51.134656887305482 ], [ 10.132022738958199, 51.132951564962752 ], [ 10.13419314929439, 51.130832831469945 ], [ 10.13574344200623, 51.128507392402184 ], [ 10.136828647623986, 51.12592357001671 ], [ 10.138378940335826, 51.123598130948949 ], [ 10.140394321041072, 51.121582750243704 ], [ 10.143494907364072, 51.120135810319368 ], [ 10.147215610412104, 51.119308987120007 ], [ 10.165664096920523, 51.117267767993098 ], [ 10.169074740706719, 51.115484931284527 ], [ 10.168764683243523, 51.110730699462181 ], [ 10.165199008927118, 51.102514147010254 ], [ 10.152021519077834, 51.089181627530081 ], [ 10.147370640042993, 51.081171779753788 ], [ 10.144270053719993, 51.074169623229523 ], [ 10.141324497027881, 51.064066881281519 ], [ 10.141014438665422, 51.058692531834822 ], [ 10.142409701746317, 51.055230211205242 ], [ 10.146440464056184, 51.054300035218432 ], [ 10.155742222125809, 51.053679918493401 ], [ 10.159928013167246, 51.052982286503266 ], [ 10.163183628221873, 51.051612860944772 ], [ 10.168764683243523, 51.048305569046761 ], [ 10.172071974242215, 51.04691030506649 ], [ 10.175947706921136, 51.04613515871057 ], [ 10.189590284763824, 51.045876777191495 ], [ 10.193155959080229, 51.04484324841718 ], [ 10.195171339785475, 51.04290538207772 ], [ 10.198271926108475, 51.038125311833653 ], [ 10.205403272942704, 51.031717434511961 ], [ 10.207573683278838, 51.028823553763971 ], [ 10.209589063984083, 51.024482733990965 ], [ 10.208658887997274, 51.020865383730438 ], [ 10.194086134167719, 50.999290473376618 ], [ 10.191140578374984, 50.996629137524678 ], [ 10.187884963320414, 50.995698961537812 ], [ 10.165043980195492, 50.996422431050348 ], [ 10.143029819370668, 50.993838609564136 ], [ 10.137913853241741, 50.993993639195082 ], [ 10.1332629742069, 50.994562079076672 ], [ 10.129542271158869, 50.995595607850987 ], [ 10.124271273600357, 50.998076077449014 ], [ 10.122720980888516, 50.999316310899019 ], [ 10.122410923425377, 51.000143134098323 ], [ 10.122410923425377, 51.001176662872695 ], [ 10.123651156875383, 51.00569835069831 ], [ 10.123186068881978, 51.008023789766071 ], [ 10.121170689076052, 51.009031481017985 ], [ 10.118070102753052, 51.008798937021311 ], [ 10.107631463121493, 51.005982571538425 ], [ 10.104375848066923, 51.005853380329199 ], [ 10.093368767654511, 51.008514716181196 ], [ 10.063138055277022, 51.008643907390365 ], [ 10.05114912293368, 51.00701610031274 ], [ 10.026189406316007, 50.995724799060213 ], [ 10.023553907986468, 50.982108058739868 ], [ 10.026344435047633, 50.976010239780692 ], [ 10.029289991739688, 50.974304918337282 ], [ 10.03301069478772, 50.972573758472151 ], [ 10.037351514560726, 50.96846548089718 ], [ 10.043087599213322, 50.961644192425524 ], [ 10.046033155905434, 50.94903514335715 ], [ 10.044637891925163, 50.943867499485464 ], [ 10.041382276870593, 50.940921942793409 ], [ 10.025414259060767, 50.938028062944738 ], [ 10.013321973929919, 50.937046210114488 ], [ 9.97807864821101, 50.939423326025633 ], [ 9.974668002626231, 50.940043442750664 ], [ 9.972962681182764, 50.940973618737473 ], [ 9.971102329209089, 50.942317205874303 ], [ 9.967691685422949, 50.94324738186117 ], [ 9.962730747126272, 50.943118191551264 ], [ 9.95590945775524, 50.941852118780218 ], [ 9.953273960325021, 50.938958238032228 ], [ 9.95187869634475, 50.935909329451988 ], [ 9.951258578720399, 50.92973399522765 ], [ 9.95265384270067, 50.926504217695481 ], [ 9.955599399392781, 50.924798896252014 ], [ 9.959320103340076, 50.925057277771145 ], [ 9.962110630401241, 50.92647838017308 ], [ 9.967226597429487, 50.93012156795595 ], [ 9.969707065228874, 50.929088040080956 ], [ 9.971412387571604, 50.925677395395439 ], [ 9.970327182853168, 50.914205226989623 ], [ 9.97156741720255, 50.908985908073191 ], [ 9.97420291463277, 50.906143704168585 ], [ 9.977768588949232, 50.9064537625311 ], [ 9.980869175272232, 50.907642320037041 ], [ 9.983504672702452, 50.909399319223155 ], [ 9.985830111770213, 50.911414699928457 ], [ 9.987690463743888, 50.913791815839602 ], [ 9.98986087408008, 50.915807197444167 ], [ 9.992031284416214, 50.917564194831698 ], [ 9.99466678184649, 50.919062812498794 ], [ 9.997457309806975, 50.920122178795509 ], [ 10.000247836868141, 50.920768133942204 ], [ 10.002728305566848, 50.921078193204039 ], [ 10.006190627095748, 50.920974840416534 ], [ 10.008516066163509, 50.920509752423129 ], [ 10.011306593224674, 50.919631253279704 ], [ 10.021383497650277, 50.915264594185658 ], [ 10.032700636425204, 50.90875336407646 ], [ 10.035956252379151, 50.90565277775346 ], [ 10.039366896165291, 50.901492825133744 ], [ 10.044172803931758, 50.892501126325897 ], [ 10.047583448617274, 50.888780423277865 ], [ 10.05595503070009, 50.882630927475304 ], [ 10.028979933377229, 50.862373765836594 ], [ 10.026034376685118, 50.858756415576067 ], [ 10.023243848724633, 50.854363918959677 ], [ 10.026809523041038, 50.846819160076166 ], [ 10.026034376685118, 50.837026476490678 ], [ 10.023088819993063, 50.833305772543326 ], [ 10.01874800022, 50.831677965465701 ], [ 10.013477003560865, 50.831548774256476 ], [ 10.007120802183238, 50.830644435792067 ], [ 9.998232456162896, 50.827337144793376 ], [ 9.992496372409619, 50.825838528025599 ], [ 9.97249759318936, 50.824288235313759 ], [ 9.957769809728916, 50.82030914984739 ], [ 9.95187869634475, 50.817544461207888 ], [ 9.9493982276461, 50.815193182819087 ], [ 9.949863314740185, 50.812712714120437 ], [ 9.949708286008558, 50.809948025480992 ], [ 9.944385614304622, 50.802739163381659 ], [ 9.942680291062572, 50.799586900215274 ], [ 9.942215203069168, 50.796434637948153 ], [ 9.942060174337541, 50.793179022893582 ], [ 9.942835320693462, 50.790336818988976 ], [ 9.945005731029653, 50.784729926444925 ], [ 9.945780877385573, 50.781241767393624 ], [ 9.946245965378978, 50.776590888358783 ], [ 9.944850702298083, 50.774472153966713 ], [ 9.942680291062572, 50.774472153966713 ], [ 9.940974968719843, 50.775893256368647 ], [ 9.938804559282971, 50.776435858727893 ], [ 9.935548944228401, 50.775919093891048 ], [ 9.931053093925129, 50.774317125235143 ], [ 9.926092157427092, 50.773231920516707 ], [ 9.920666131137011, 50.763775132816079 ], [ 9.932138298643565, 50.755636094729937 ], [ 9.935548944228401, 50.750985215695096 ], [ 9.936014032221806, 50.748788966937241 ], [ 9.936014032221806, 50.742561956768839 ], [ 9.934773796973161, 50.736696681806393 ], [ 9.93337853389221, 50.732820950026792 ], [ 9.93012291793832, 50.72718821906102 ], [ 9.916480340095632, 50.711426906826262 ], [ 9.91260460831603, 50.704553941511165 ], [ 9.912139520322569, 50.699928900898044 ], [ 9.913999871396925, 50.695252184340802 ], [ 9.913224725041005, 50.692668361955327 ], [ 9.906713494931807, 50.686777249470481 ], [ 9.904077995702949, 50.684968574340189 ], [ 9.900977411178587, 50.683573310359975 ], [ 9.897411736862125, 50.68248810474222 ], [ 9.893070916189799, 50.679878444834344 ], [ 9.888213331579948, 50.675925197789638 ], [ 9.881237012578083, 50.667114366135081 ], [ 9.879066603141212, 50.662101751894284 ], [ 9.878136427154402, 50.657011624187078 ], [ 9.878446486416181, 50.652050685890401 ], [ 9.87767134006026, 50.64360159034112 ], [ 9.879531691134616, 50.637116196854947 ], [ 9.882632276558297, 50.634015611431323 ], [ 9.886973097230623, 50.633240465075403 ], [ 9.89462120890164, 50.635049140205638 ], [ 9.898031853587156, 50.636341051398404 ], [ 9.901597527903562, 50.637271227385213 ], [ 9.905473259683163, 50.637555447326008 ], [ 9.909659050724599, 50.636780300070768 ], [ 9.925782098165257, 50.630062364386561 ], [ 9.933998650617241, 50.628046982781996 ], [ 9.943300408686923, 50.627142646116226 ], [ 9.947692905303313, 50.627426866057021 ], [ 9.951413608351345, 50.628382880465551 ], [ 9.95420413631183, 50.630191554696466 ], [ 9.957149692104622, 50.635359199467473 ], [ 9.960405308058512, 50.639648342397038 ], [ 9.959940220065107, 50.641870429576613 ], [ 9.9574597513664, 50.644299221431879 ], [ 9.949553257276989, 50.65029368850287 ], [ 9.947331170097414, 50.652929185933147 ], [ 9.946711053372383, 50.655513007419358 ], [ 9.947176141365844, 50.658355211323908 ], [ 9.948623081290179, 50.66073232723511 ], [ 9.95094852125726, 50.662747707940355 ], [ 9.954514193775026, 50.663884589502175 ], [ 9.97079227084663, 50.666571763775835 ], [ 9.977923617680801, 50.668845526899531 ], [ 9.99063602133532, 50.674426581021862 ], [ 9.997612339437921, 50.676235257051474 ], [ 10.004175246390503, 50.676545315413932 ], [ 10.008361037431939, 50.676183580208033 ], [ 10.025104200698308, 50.672617905891627 ], [ 10.042622511219918, 50.671274318754797 ], [ 10.052079298920489, 50.66956899731133 ], [ 10.0568852066869, 50.667760322181095 ], [ 10.060347528215857, 50.665874131785699 ], [ 10.062827996015187, 50.662954413515365 ], [ 10.07368004679671, 50.645151883052961 ], [ 10.07600548676379, 50.62200084156558 ], [ 10.074300164421061, 50.619623724755058 ], [ 10.072439813346705, 50.617840888046544 ], [ 10.069804315017109, 50.619236152026758 ], [ 10.064998407250698, 50.619003608030084 ], [ 10.058590529029686, 50.616833197693893 ], [ 10.048358594973138, 50.609546821228776 ], [ 10.045878127173808, 50.605490221396565 ], [ 10.045723096643599, 50.602234606341995 ], [ 10.047738478248164, 50.600477607155824 ], [ 10.048823682966599, 50.597712918516379 ], [ 10.049288770960004, 50.594121405778253 ], [ 10.047893507879053, 50.576086331319118 ], [ 10.048048536610679, 50.572934068152676 ], [ 10.048358594973138, 50.570014349882342 ], [ 10.049133742228435, 50.567353014030346 ], [ 10.050063918215244, 50.565079250906706 ], [ 10.0568852066869, 50.554433905700137 ], [ 10.05595503070009, 50.549472968302837 ], [ 10.047428419885648, 50.532264716143686 ], [ 10.045413039180403, 50.52637360275952 ], [ 10.044482863193593, 50.521903591777289 ], [ 10.044792921556052, 50.519552314287864 ], [ 10.047428419885648, 50.516968491902333 ], [ 10.055024854713281, 50.516503403908928 ], [ 10.048978712597489, 50.505599677183341 ], [ 10.047738478248164, 50.502628282069509 ], [ 10.046033155905434, 50.499191799861649 ], [ 10.044482863193593, 50.497021389525457 ], [ 10.023088819993063, 50.474464627240707 ], [ 10.012701857204945, 50.460899562864483 ], [ 10.000867953593172, 50.448445543427056 ], [ 9.980869175272232, 50.437335110227139 ], [ 9.918340692069251, 50.413770656690417 ], [ 9.858912795189326, 50.398991197285909 ], [ 9.847440626783509, 50.397957669410914 ], [ 9.838758986338121, 50.398112698142484 ], [ 9.834986606446705, 50.398681138923394 ], [ 9.828475376337508, 50.400696520527958 ], [ 9.819483676630341, 50.4053732370852 ], [ 9.814367709602095, 50.409068101711512 ], [ 9.806771273875199, 50.416561183751583 ], [ 9.804445834807439, 50.418214830150248 ], [ 9.801810337377162, 50.419248358924619 ], [ 9.799174839047566, 50.419532578865415 ], [ 9.796074252724566, 50.418989977405488 ], [ 9.784447055587123, 50.415424303089083 ], [ 9.778969354252297, 50.414261583105542 ], [ 9.766722038591183, 50.40209178270959 ], [ 9.742847527591323, 50.347108059289496 ], [ 9.746258172276839, 50.333155423084293 ], [ 9.747033318632759, 50.32806529447771 ], [ 9.747963494619569, 50.323543605752775 ], [ 9.749048700237324, 50.315120347725838 ], [ 9.74858361224392, 50.305560208137081 ], [ 9.744707878665679, 50.301374417095644 ], [ 9.738351678187371, 50.297550361260164 ], [ 9.721711866809187, 50.290393175104896 ], [ 9.704348585918467, 50.285354723341811 ], [ 9.69380659260014, 50.283649400099705 ], [ 9.680319045287717, 50.279515285901709 ], [ 9.673497755916685, 50.275122789285263 ], [ 9.665384556252263, 50.268146471182661 ], [ 9.658253207619396, 50.254348862809763 ], [ 9.657788119625991, 50.247269191919656 ], [ 9.659803501230556, 50.242359931365741 ], [ 9.665074496990428, 50.238432521843379 ], [ 9.663369174647698, 50.235952053144729 ], [ 9.661198765210827, 50.234350084488767 ], [ 9.630502963940614, 50.228303941473712 ], [ 9.612054478331515, 50.224169827275659 ], [ 9.597740106021035, 50.22401479854409 ], [ 9.593089226986251, 50.224712428735586 ], [ 9.59014367029414, 50.225642604722395 ], [ 9.587508171964544, 50.227528795117792 ], [ 9.585802849621814, 50.228278103051991 ], [ 9.583787468916569, 50.228949897519726 ], [ 9.580376825130372, 50.229130763773696 ], [ 9.575880974827101, 50.228872382254622 ], [ 9.560067986648278, 50.225668443144116 ], [ 9.557587517949571, 50.225797634353341 ], [ 9.555417107613437, 50.22670197191843 ], [ 9.55335005096407, 50.228123074320422 ], [ 9.548699171929229, 50.232851466821728 ], [ 9.545753615237118, 50.235021878057182 ], [ 9.543273145639148, 50.236081245253217 ], [ 9.541102736202276, 50.236572170769023 ], [ 9.538932325866142, 50.236365465194012 ], [ 9.529785597427349, 50.232954820508553 ], [ 9.526064894379374, 50.232903144564432 ], [ 9.519863721733373, 50.233884996495362 ], [ 9.511027051657095, 50.236210436462443 ], [ 9.507926467132734, 50.235590317938772 ], [ 9.506221143890684, 50.233161526083563 ], [ 9.505290967903818, 50.226727810340151 ], [ 9.508546583857765, 50.206909898273182 ], [ 9.507306348609063, 50.202569078500119 ], [ 9.500330031405838, 50.188874823814047 ], [ 9.498728061850557, 50.184094754469299 ], [ 9.498107944226206, 50.181123359355524 ], [ 9.498418002588721, 50.178797919388444 ], [ 9.499089797056456, 50.176808377104919 ], [ 9.500175001774892, 50.175413113124648 ], [ 9.501570264855843, 50.174508775559502 ], [ 9.504360792816328, 50.173681953259518 ], [ 9.521879103337938, 50.172286689279247 ], [ 9.525289748023454, 50.171459866079942 ], [ 9.527460158359588, 50.170012926155607 ], [ 9.528700391809593, 50.168617662175336 ], [ 9.529010451071429, 50.166860662989166 ], [ 9.52715009909781, 50.16350169514709 ], [ 9.514902785235336, 50.148360501435945 ], [ 9.511802198912335, 50.14285696078008 ], [ 9.510406934932064, 50.137740993751834 ], [ 9.511027051657095, 50.134511217118927 ], [ 9.516763136309692, 50.116217760241398 ], [ 9.514127637980096, 50.112910468343387 ], [ 9.506686231884089, 50.108104560576976 ], [ 9.445863071023894, 50.091413072355351 ], [ 9.430463494894354, 50.089836941221847 ], [ 9.406744011726744, 50.092343248342218 ], [ 9.399922723255088, 50.097562568157969 ], [ 9.393101433884055, 50.103867091792836 ], [ 9.391396112440646, 50.106295885446741 ], [ 9.387365350130779, 50.114693305051958 ], [ 9.385608350944608, 50.117096259384823 ], [ 9.384058058232768, 50.118904934515115 ], [ 9.377546828123627, 50.12324575518744 ], [ 9.36793501079211, 50.127379869385436 ], [ 9.329126010756795, 50.139291287362994 ], [ 9.323855014996923, 50.139523831359725 ], [ 9.310987582610835, 50.138593655372858 ], [ 9.306336703575994, 50.139058743366263 ], [ 9.299205355842503, 50.140815742552434 ], [ 9.295949740787876, 50.141435859277465 ], [ 9.251404656999284, 50.142211004734065 ], [ 9.240552606217761, 50.144174710394566 ], [ 9.23512657992768, 50.144329739126135 ], [ 9.228770379449429, 50.143812975188609 ], [ 9.197867872604206, 50.138025213692629 ], [ 9.193527051931881, 50.136526597824229 ], [ 9.191356641595746, 50.134717922693937 ], [ 9.19027143687731, 50.130377102021612 ], [ 9.190736524870715, 50.125261134993366 ], [ 9.190426467407519, 50.123116563978215 ], [ 9.188101027440439, 50.119835110501924 ], [ 9.170737745650456, 50.106605942909937 ], [ 9.156113314977517, 50.09973297849416 ], [ 9.149292025606485, 50.097562568157969 ], [ 9.146191440182804, 50.097562568157969 ], [ 9.146501499444639, 50.099267890500698 ], [ 9.148206820888049, 50.10185171198691 ], [ 9.154252963903161, 50.108027045311871 ], [ 9.155338168621597, 50.109809882020386 ], [ 9.154873080628136, 50.111205146000657 ], [ 9.152547641560375, 50.112290350719093 ], [ 9.139060093348633, 50.115003364313793 ], [ 9.133634067058551, 50.117251288116449 ], [ 9.121076693934242, 50.123865871912415 ], [ 9.116890902892862, 50.125261134993366 ], [ 9.113790316569862, 50.125726222986771 ], [ 9.11084476077707, 50.125881253517036 ], [ 9.107899204085015, 50.125416165523575 ], [ 9.057463006012881, 50.110068264438837 ], [ 9.024390089730844, 50.10508148951908 ], [ 9.019119093071652, 50.10355703432964 ], [ 9.01446821493613, 50.10086985915666 ], [ 9.01214277496905, 50.099061184026368 ], [ 9.010282423894751, 50.096839097746113 ], [ 9.00888715991448, 50.093376777116532 ], [ 9.00811201265924, 50.088674221238307 ], [ 9.00795698392767, 50.074256497039698 ], [ 9.007336867202639, 50.070199897207488 ], [ 9.005941603222425, 50.06635000295023 ], [ 9.002996047429633, 50.064282945401601 ], [ 8.999430373113228, 50.063249417526549 ], [ 8.995089552440902, 50.063042711052219 ], [ 8.990852084556025, 50.06366282777725 ], [ 8.988061558394179, 50.062474270271309 ], [ 8.978759800324497, 50.055032864175303 ], [ 8.976589389988362, 50.052784939473327 ], [ 8.983410679359338, 50.049968573990498 ], [ 8.992350702223121, 50.04573110610562 ], [ 8.997414992407982, 50.0449559597497 ], [ 9.001910841811878, 50.048366604435216 ], [ 9.011677686975645, 50.049503485997036 ], [ 9.021444533038732, 50.048366604435216 ], [ 9.025940383342004, 50.0449559597497 ], [ 9.026870558429493, 50.043147285518785 ], [ 9.032141554189366, 50.021365667791315 ], [ 9.041753370621564, 50.011728013836716 ], [ 9.040513136272182, 50.000359199117725 ], [ 9.041288282628102, 49.998705552719059 ], [ 9.045164015307023, 49.992607733759883 ], [ 9.052347038984635, 49.9836677108961 ], [ 9.053122186239875, 49.981652330190855 ], [ 9.050951775903741, 49.981135566253329 ], [ 9.04919477671757, 49.980153714322455 ], [ 9.028110792778875, 49.98542471008227 ], [ 9.026095412073573, 49.911475735316913 ], [ 9.026715528798604, 49.907393297062981 ], [ 9.039893018647888, 49.882407742023645 ], [ 9.04919477671757, 49.866052151485576 ], [ 9.061803826685264, 49.839852200518635 ], [ 9.065059441739834, 49.836803290139699 ], [ 9.06769494006943, 49.832824205572592 ], [ 9.068935174418755, 49.831428940693058 ], [ 9.07017540876808, 49.830576279971297 ], [ 9.072345819104271, 49.830292060030501 ], [ 9.07343102382265, 49.830576279971297 ], [ 9.074981317433867, 49.831583971223267 ], [ 9.076686638877277, 49.833806057503523 ], [ 9.082887810623959, 49.841040758024519 ], [ 9.085833368215333, 49.843262844304775 ], [ 9.088003777652204, 49.844115505925856 ], [ 9.089554071263365, 49.843986313817311 ], [ 9.091259392706775, 49.843314521148216 ], [ 9.092499627056156, 49.842125962742955 ], [ 9.092964715049561, 49.839800522775874 ], [ 9.092654656687046, 49.835692246999599 ], [ 9.090329216719965, 49.828018296906862 ], [ 9.08986412872656, 49.821558742741786 ], [ 9.09079430471337, 49.814995835789148 ], [ 9.095755243010046, 49.804970608206986 ], [ 9.099165886796243, 49.800268053228024 ], [ 9.103661737099458, 49.796366482127439 ], [ 9.108674351340255, 49.794428615787979 ], [ 9.112860142381635, 49.793756822219564 ], [ 9.117821078879672, 49.794273587056352 ], [ 9.122006869921108, 49.795436306140573 ], [ 9.126502720224323, 49.796082262186644 ], [ 9.130223423272355, 49.796185614974149 ], [ 9.132858920702631, 49.795513821405734 ], [ 9.135959507025632, 49.793963527794574 ], [ 9.139370150811772, 49.790862942370893 ], [ 9.140920444422932, 49.787348944897872 ], [ 9.140455356429527, 49.783679917793961 ], [ 9.135804478294006, 49.777659614099889 ], [ 9.122161898652678, 49.765799872066395 ], [ 9.119681430853348, 49.761924140286794 ], [ 9.119526401222402, 49.757764186767758 ], [ 9.122937045907918, 49.753862617465813 ], [ 9.130998568728955, 49.750581163090203 ], [ 9.146656528176209, 49.746214504895477 ], [ 9.148981968143289, 49.7435790074652 ], [ 9.148516880149884, 49.73990998036129 ], [ 9.135339390300601, 49.721874905002835 ], [ 9.132858920702631, 49.717301541233098 ], [ 9.131773715984195, 49.713296617345009 ], [ 9.131618687252626, 49.708723253575272 ], [ 9.133479038326925, 49.7034780953378 ], [ 9.135029331038766, 49.700429185858241 ], [ 9.135029331038766, 49.697948717159534 ], [ 9.133324008696036, 49.695985012398353 ], [ 9.127587924942759, 49.692005926931984 ], [ 9.122937045907918, 49.689913031860897 ], [ 9.118751254866481, 49.688595283145787 ], [ 9.115030551818506, 49.688181871096447 ], [ 9.1075891457225, 49.688130195152382 ], [ 9.103661737099458, 49.687768459946426 ], [ 9.099475946058078, 49.686424871910276 ], [ 9.098855828433727, 49.68130890578135 ], [ 9.100251092413998, 49.672937323698477 ], [ 9.110224644052096, 49.645807196744727 ], [ 9.111309848770475, 49.639812731472375 ], [ 9.10836429207842, 49.635291042747383 ], [ 9.105987176167218, 49.633198146777033 ], [ 9.103041620374484, 49.631182766071788 ], [ 9.099475946058078, 49.629684150203332 ], [ 9.091259392706775, 49.625162462377716 ], [ 9.081182489180492, 49.61831533548434 ], [ 9.078702019582522, 49.615886541830434 ], [ 9.076531610145651, 49.614439601906099 ], [ 9.07265587656741, 49.610873928488957 ], [ 9.072965935829245, 49.607049871754157 ], [ 9.076686638877277, 49.603277492762061 ], [ 9.096375359735077, 49.591081854843708 ], [ 9.110689731146181, 49.575113837033939 ], [ 9.101801385125782, 49.56526947750433 ], [ 9.099165886796243, 49.56488190387671 ], [ 9.093584831774535, 49.565398667814236 ], [ 9.080097283562793, 49.573821925841173 ], [ 9.074981317433867, 49.572271633129333 ], [ 9.073741082185165, 49.570101222793198 ], [ 9.074671258172032, 49.566819770216171 ], [ 9.078391961220007, 49.56276317038396 ], [ 9.094980095754806, 49.550825913984738 ], [ 9.099475946058078, 49.546536770155797 ], [ 9.103971794562653, 49.539612127997259 ], [ 9.105987176167218, 49.537131660197929 ], [ 9.116115757436262, 49.527416490078906 ], [ 9.125262484975678, 49.516099352203298 ], [ 9.127432896211189, 49.511138413906679 ], [ 9.126812777687519, 49.508167018792847 ], [ 9.124642368250704, 49.507676093277041 ], [ 9.121231723565188, 49.507262682127077 ], [ 9.118441195604703, 49.507624417332977 ], [ 9.1156506694428, 49.508606269263908 ], [ 9.113015171113261, 49.510259914763253 ], [ 9.105522088173814, 49.516822821715834 ], [ 9.103661737099458, 49.518063056065159 ], [ 9.101956413857408, 49.51847646721518 ], [ 9.099010858064617, 49.518915716786864 ], [ 9.087073601665395, 49.518011380121095 ], [ 9.076376579615442, 49.518993232051969 ], [ 9.068160028062834, 49.51847646721518 ], [ 9.044853956944564, 49.503852037441561 ], [ 9.039893018647888, 49.502766831823806 ], [ 9.035087110881477, 49.50131989189947 ], [ 9.022064649763763, 49.502870185510631 ], [ 9.019429152333487, 49.503490302235662 ], [ 9.011367628613129, 49.504291287013245 ], [ 8.957830845117371, 49.503697007810615 ], [ 8.953645054075992, 49.502740994301405 ], [ 8.953334994814156, 49.5018883335797 ], [ 8.95317996608253, 49.50075145111856 ], [ 8.95317996608253, 49.500389715912661 ], [ 8.930338982957664, 49.484214993427202 ], [ 8.927238396634664, 49.481527818254165 ], [ 8.927238396634664, 49.480158392695614 ], [ 8.928323602252419, 49.47858226246143 ], [ 8.934369745267531, 49.473517971377248 ], [ 8.939072300246437, 49.468453681192386 ], [ 8.941242709683308, 49.465146389294432 ], [ 8.942948032026038, 49.46199412702731 ], [ 8.945583530355634, 49.455095323290493 ], [ 8.944033236744474, 49.452020576288533 ], [ 8.940312533696442, 49.447318020410307 ], [ 8.920107048901173, 49.438739731853104 ], [ 8.91406090678538, 49.437654527134669 ], [ 8.910495233368295, 49.43832632070314 ], [ 8.908634881394676, 49.44003164304587 ], [ 8.907084587783459, 49.445199286018237 ], [ 8.903984002359834, 49.447162990779361 ], [ 8.901348504030238, 49.446594549998451 ], [ 8.899178093694047, 49.444889228555041 ], [ 8.897782829713833, 49.442176214960341 ], [ 8.894062126665801, 49.430316473826167 ], [ 8.892976921947366, 49.427577622709123 ], [ 8.891271599604636, 49.425200506797921 ], [ 8.878817580167151, 49.414400132859839 ], [ 8.861144240014653, 49.401739406948025 ], [ 8.852307569938375, 49.39745026311914 ], [ 8.84626142692332, 49.3962875431356 ], [ 8.838664992095687, 49.399233099827654 ], [ 8.830758498006276, 49.399258938249375 ], [ 8.816754184957631, 49.402204494941486 ], [ 8.814428744990551, 49.40300547971907 ], [ 8.812568393916251, 49.404245714068452 ], [ 8.810863070674145, 49.406596992457196 ], [ 8.81039798268074, 49.409439195462483 ], [ 8.81132815866755, 49.417138983976884 ], [ 8.812723422647821, 49.422254951005186 ], [ 8.81365359863463, 49.423495185354511 ], [ 8.81520389224579, 49.424683742860395 ], [ 8.817684360045178, 49.425975654053161 ], [ 8.82796797004579, 49.429386297839358 ], [ 8.829983350751036, 49.430704047453787 ], [ 8.831688673993085, 49.432900296211699 ], [ 8.832618849080632, 49.435432440854413 ], [ 8.832618849080632, 49.438274644759019 ], [ 8.829053175663489, 49.453855088941168 ], [ 8.828588087670084, 49.458015042460204 ], [ 8.828588087670084, 49.46220083350164 ], [ 8.829208205294435, 49.465508124500332 ], [ 8.830913526737845, 49.468557033979891 ], [ 8.833393996335872, 49.471244208253609 ], [ 8.848896926152179, 49.48338817022784 ], [ 8.852307569938375, 49.484731757364671 ], [ 8.855253126630487, 49.484680081420606 ], [ 8.860989211283083, 49.479615790336425 ], [ 8.865019971794254, 49.476825263275259 ], [ 8.870601026815905, 49.474499824207498 ], [ 8.874011672400741, 49.474499824207498 ], [ 8.876957228193533, 49.475481676138429 ], [ 8.884760370394758, 49.481992906247626 ], [ 8.88786095491912, 49.485713609295601 ], [ 8.890651482879605, 49.489951077180422 ], [ 8.892511833953961, 49.493671780228453 ], [ 8.89344200994077, 49.496643175342228 ], [ 8.893752069202606, 49.49899445283171 ], [ 8.893597038672397, 49.500493068700109 ], [ 8.893286981209201, 49.50131989189947 ], [ 8.890496453248716, 49.506125800565201 ], [ 8.841765578418688, 49.502405097517226 ], [ 8.828433058039195, 49.50281850776787 ], [ 8.823885531791859, 49.504885566215876 ], [ 8.821560092724098, 49.506745917290232 ], [ 8.819699740750423, 49.508761297995477 ], [ 8.815668980239252, 49.517287909709239 ], [ 8.810863070674145, 49.521990464688145 ], [ 8.807607455619575, 49.523489081455921 ], [ 8.802491488591329, 49.523592434243426 ], [ 8.781562534283523, 49.521990464688145 ], [ 8.764922722905339, 49.523799139818436 ], [ 8.74585411967189, 49.529948634721677 ], [ 8.718103875093732, 49.54178253833345 ], [ 8.711230909778635, 49.546071682162392 ], [ 8.708905469811555, 49.547932034136068 ], [ 8.70595991401882, 49.550877590828122 ], [ 8.703634474051739, 49.553771471576113 ], [ 8.691542188920891, 49.573692735531267 ], [ 8.687046340416259, 49.58415721358449 ], [ 8.68689130988605, 49.585526638243721 ], [ 8.687201369147829, 49.586586005439756 ], [ 8.689216749853131, 49.589402370922642 ], [ 8.691387160189265, 49.591857001199628 ], [ 8.69262739363927, 49.593743190695648 ], [ 8.693092481632732, 49.597463893743679 ], [ 8.691697217652461, 49.60229564083113 ], [ 8.681000197401204, 49.612062485994898 ], [ 8.679139845427528, 49.614594632436308 ], [ 8.678364699071608, 49.621260891277075 ], [ 8.675729200742012, 49.622501126525719 ], [ 8.671543409700575, 49.622552802469841 ], [ 8.601366814826633, 49.610977281276462 ], [ 8.598886346127983, 49.609995429345588 ], [ 8.597801141409548, 49.608600165365317 ], [ 8.597956170141117, 49.605809638304152 ], [ 8.604829136355534, 49.585449123877936 ], [ 8.605139193818729, 49.583485419116755 ], [ 8.614440951888412, 49.560592760047825 ], [ 8.616766391855492, 49.552970485899152 ], [ 8.617386508580466, 49.549689033322181 ], [ 8.617386508580466, 49.547079373414306 ], [ 8.616611362224546, 49.54503815428734 ], [ 8.615061068613386, 49.542764391163701 ], [ 8.612580600814056, 49.54080068640252 ], [ 8.60901492739697, 49.539147040003854 ], [ 8.596560907060223, 49.536304836998625 ], [ 8.595165643079952, 49.535426336955879 ], [ 8.59128991130035, 49.533824368299918 ], [ 8.58818932497735, 49.531989854747962 ], [ 8.566175164152469, 49.527313137291401 ], [ 8.498220655558782, 49.573382677168809 ], [ 8.474449497346427, 49.585759182240452 ], [ 8.462047152953744, 49.588498033357553 ], [ 8.458016392442516, 49.588859768563452 ], [ 8.4496448103597, 49.588317166204206 ], [ 8.416830274697418, 49.579454657706265 ], [ 8.400035434587608, 49.610408841394872 ], [ 8.375437453175891, 49.641104640866445 ], [ 8.360554640084558, 49.664462388828156 ], [ 8.362259963326608, 49.690920722213548 ], [ 8.379209832167987, 49.710402737496338 ], [ 8.4064433119093, 49.722417508261344 ], [ 8.439102817041373, 49.726525784037676 ], [ 8.460806918604419, 49.743785712140891 ], [ 8.473829379722076, 49.75745412930462 ], [ 8.476619906783242, 49.767505195308502 ], [ 8.462512240947149, 49.771070868725587 ], [ 8.442203403364374, 49.768047796768371 ], [ 8.42380659280002, 49.767298488834172 ], [ 8.415796745923046, 49.777737128465674 ], [ 8.413729689273737, 49.784713447467595 ], [ 8.408665399088875, 49.792671617501128 ], [ 8.389803501430436, 49.815305895050983 ], [ 8.386341179901535, 49.823832505865425 ], [ 8.384222446408785, 49.832307440735804 ], [ 8.380450067416689, 49.84259105073636 ], [ 8.370476514879272, 49.856595363785004 ], [ 8.347583855810285, 49.878532009344724 ], [ 8.340090772870838, 49.891011868103192 ], [ 8.355128614693797, 49.925635077996446 ], [ 8.335439893835996, 49.959638170265293 ], [ 8.228107944426085, 50.038186347222108 ], [ 8.213018425759742, 50.044439194912911 ], [ 8.200719435053884, 50.04629954688653 ], [ 8.173796013675087, 50.045782782949061 ], [ 8.048532341694226, 50.018368435155139 ], [ 8.009723341658855, 49.99932567034341 ], [ 7.961922641916374, 49.98309927011519 ], [ 7.918566114734404, 49.973875027310612 ], [ 7.878155145143808, 49.972944851323803 ], [ 7.860275099416299, 49.990023912273728 ], [ 7.857277865880803, 50.00258128539798 ], [ 7.849836459784797, 50.010746161006523 ], [ 7.785034214357495, 50.048521633166786 ], [ 7.775112338663462, 50.051079617130597 ], [ 7.771391635615487, 50.053482571463462 ], [ 7.810769077331031, 50.073171292321263 ], [ 7.828494093427651, 50.078855699231099 ], [ 7.838881056215769, 50.084359238987645 ], [ 7.84275678889469, 50.088209133244902 ], [ 7.843221876888094, 50.097149156108628 ], [ 7.84430708160653, 50.101800035143469 ], [ 7.846942579936126, 50.106760973440146 ], [ 7.854539014763702, 50.115778509770394 ], [ 7.859189893798543, 50.118698228940104 ], [ 7.863840772833385, 50.11957672808353 ], [ 7.867561475881416, 50.118439846521653 ], [ 7.872884149383992, 50.117871405740743 ], [ 7.878310173875434, 50.118155626580858 ], [ 7.88668175595825, 50.120171007286103 ], [ 7.892572870241736, 50.120971992063744 ], [ 7.896293573289768, 50.12071360874603 ], [ 7.899859245807534, 50.118749904884169 ], [ 7.905285272097615, 50.114228217058553 ], [ 7.909316034407425, 50.111670233994062 ], [ 7.913036736556137, 50.109732368553921 ], [ 7.919392937933708, 50.107872016580302 ], [ 7.921718377001469, 50.108802192567111 ], [ 7.922493524256708, 50.111670233994062 ], [ 7.922803581719904, 50.115235908310467 ], [ 7.923423700243575, 50.118155626580858 ], [ 7.924973992955415, 50.122367255144695 ], [ 7.92983157666589, 50.131617337270256 ], [ 7.930606723921187, 50.134407864331422 ], [ 7.930451694290241, 50.136345729771563 ], [ 7.928746371947511, 50.138490301686033 ], [ 7.926059197673794, 50.139988919353129 ], [ 7.90730065280286, 50.146861883768906 ], [ 7.904200067379179, 50.148670558899141 ], [ 7.900324333800938, 50.151667792434637 ], [ 7.896758661283172, 50.155026760276712 ], [ 7.895983514027932, 50.16231313674183 ], [ 7.898153924364124, 50.171330674870717 ], [ 7.910091179864025, 50.188952338179831 ], [ 7.916447381241653, 50.195928657181753 ], [ 7.922183464994873, 50.200088608902149 ], [ 7.939443393997408, 50.204997870355385 ], [ 7.952930942209207, 50.211173204579723 ], [ 7.980371128424849, 50.21941559545337 ], [ 7.986623976115595, 50.224867459265795 ], [ 7.990809767157032, 50.22727041269934 ], [ 7.993290235855682, 50.228355618317096 ], [ 7.995615674923442, 50.227993883111196 ], [ 7.998251174152358, 50.226908678392761 ], [ 8.0036771986438, 50.223317166553954 ], [ 8.007397901691775, 50.220139064965849 ], [ 8.011273634370696, 50.217968655528978 ], [ 8.015924513405537, 50.216185817921144 ], [ 8.023055861139085, 50.215875759558628 ], [ 8.027086623448895, 50.217968655528978 ], [ 8.030497267235091, 50.22269704892966 ], [ 8.042021111585029, 50.233833320551298 ], [ 8.04357140519619, 50.236417141138134 ], [ 8.042641229209323, 50.238432521843379 ], [ 8.033597852658772, 50.245718899207816 ], [ 8.033442823927146, 50.248225206328186 ], [ 8.034217970283066, 50.251713365379487 ], [ 8.038248731693614, 50.258844713112978 ], [ 8.041711053222514, 50.261841945749154 ], [ 8.045741814633004, 50.26334056341625 ], [ 8.096126335861697, 50.262048652223484 ], [ 8.112301060145796, 50.26468415055308 ], [ 8.117572055905669, 50.26716461925173 ], [ 8.120517611698403, 50.268921617538581 ], [ 8.122067905309564, 50.271660467756362 ], [ 8.122688022933914, 50.274399318873463 ], [ 8.122688022933914, 50.277913316346428 ], [ 8.121912875678674, 50.280652167463529 ], [ 8.118812290254994, 50.285716458547711 ], [ 8.10734012184912, 50.311089586315347 ], [ 8.100673862109034, 50.319461168398163 ], [ 8.098658481403788, 50.320546373116599 ], [ 8.089460077020931, 50.323672796962001 ], [ 8.080003289320359, 50.330313219179686 ], [ 8.073181999949327, 50.338581448475054 ], [ 8.054578484709282, 50.366021632892 ], [ 8.049462517681036, 50.371292630450512 ], [ 8.032047559946932, 50.376718654941953 ], [ 8.030032179241687, 50.378889065278088 ], [ 8.028946973623931, 50.38224803312022 ], [ 8.028636916160735, 50.38627879543003 ], [ 8.025691358569304, 50.388268337713612 ], [ 8.022280714783165, 50.389120999334637 ], [ 7.980061069163014, 50.395787258175403 ], [ 7.975565219759062, 50.398371080560878 ], [ 7.973394810322247, 50.400257270056954 ], [ 7.975100131765657, 50.40514069308847 ], [ 7.987554152102405, 50.411858628772677 ], [ 7.992515090399081, 50.421315416473249 ], [ 7.996235793447113, 50.432167467254772 ], [ 8.000421583589173, 50.440332342863314 ], [ 8.015459425412132, 50.450202541713907 ], [ 8.018249953372617, 50.453044744719193 ], [ 8.019180129359484, 50.454905096692812 ], [ 8.017629835748323, 50.455990302310568 ], [ 8.008328077678641, 50.459220078943474 ], [ 8.005072462624014, 50.460770372554634 ], [ 8.002281934663529, 50.462449856475644 ], [ 8.000421583589173, 50.464103501974989 ], [ 7.999336378870794, 50.465912177105281 ], [ 7.998406202883928, 50.472165024796027 ], [ 7.998251174152358, 50.474283759188097 ], [ 7.997941114890523, 50.475834051899938 ], [ 8.000266553958284, 50.50882945381619 ], [ 8.002747022656933, 50.516477566386527 ], [ 8.00445234499972, 50.520740871793748 ], [ 8.00925825366545, 50.522032782986514 ], [ 8.015149367049617, 50.524590766051006 ], [ 8.02104048043384, 50.528440660308206 ], [ 8.030962355228496, 50.537794094321953 ], [ 8.035923292625853, 50.541566474213369 ], [ 8.041556023591625, 50.544460354062039 ], [ 8.052873162366552, 50.54601064677388 ], [ 8.062640008429639, 50.546475734767341 ], [ 8.066980828202645, 50.545907293986374 ], [ 8.070391472888161, 50.544357001274591 ], [ 8.087444696315686, 50.530171821072656 ], [ 8.090235223376851, 50.528621528360816 ], [ 8.093335808800532, 50.527510484321397 ], [ 8.103619418801145, 50.526528632390466 ], [ 8.10718509311755, 50.526528632390466 ], [ 8.110130648910285, 50.52714874911544 ], [ 8.114626499213557, 50.528776557092385 ], [ 8.130439487392437, 50.536295478453553 ], [ 8.134780308064762, 50.539060167092998 ], [ 8.137260775864092, 50.541566474213369 ], [ 8.138656039844363, 50.543426826187044 ], [ 8.154210645604792, 50.569471747523096 ], [ 8.163822462936309, 50.585801500538821 ], [ 8.160876906244198, 50.588359482703936 ], [ 8.159636671894873, 50.590814113880242 ], [ 8.150593296243642, 50.593811347415738 ], [ 8.14780276918242, 50.597066962470308 ], [ 8.143927035604179, 50.602648017492015 ], [ 8.140516391818039, 50.617530828784709 ], [ 8.135400424789736, 50.626677558122765 ], [ 8.121602817316159, 50.645797838199655 ], [ 8.120052523704999, 50.649880276453587 ], [ 8.120672642228669, 50.652644965093032 ], [ 8.12222293494051, 50.655616360206807 ], [ 8.126563754713516, 50.661145738385073 ], [ 8.130439487392437, 50.667398586975196 ], [ 8.134470248802927, 50.68403839835338 ], [ 8.143927035604179, 50.697784328983573 ], [ 8.146717563564721, 50.699954739319764 ], [ 8.151058384237047, 50.70274526638093 ], [ 8.161341994237659, 50.704114691939481 ], [ 8.16459760929223, 50.70543244155391 ], [ 8.16692304925931, 50.707861233409176 ], [ 8.169558546689586, 50.715871080286092 ], [ 8.175139600811917, 50.74207103125309 ], [ 8.174984572080348, 50.743879706383325 ], [ 8.174364455355317, 50.745585028726055 ], [ 8.173124220106672, 50.747135322337215 ], [ 8.171728957025721, 50.748530585418166 ], [ 8.167388136353395, 50.751579494897726 ], [ 8.145012241221934, 50.762328192891744 ], [ 8.142996859617369, 50.763723455972695 ], [ 8.141911654898934, 50.765067044008845 ], [ 8.141756626167364, 50.766358954302291 ], [ 8.142221714160769, 50.76920115820684 ], [ 8.141911654898934, 50.770596422187111 ], [ 8.140826450180498, 50.771836656536436 ], [ 8.138966099106199, 50.772766832523303 ], [ 8.136950718400897, 50.773438626091718 ], [ 8.134780308064762, 50.774472153966713 ], [ 8.133540072816118, 50.775660712371973 ], [ 8.132919956091087, 50.776900946721298 ], [ 8.132919956091087, 50.778373725067354 ], [ 8.133385044084491, 50.780001533044299 ], [ 8.134160190440411, 50.781345120181129 ], [ 8.139276156569338, 50.784962470441656 ], [ 8.187231885942765, 50.811524155715176 ], [ 8.194363233676256, 50.824391588101264 ], [ 8.195448439294012, 50.825812690503255 ], [ 8.197153760737478, 50.827052923953261 ], [ 8.216584100076147, 50.835863756507138 ], [ 8.218909539143908, 50.837569077950548 ], [ 8.223250359816234, 50.842142441720284 ], [ 8.225265741420799, 50.843692735331445 ], [ 8.268415562128496, 50.868419907952386 ], [ 8.280507847259344, 50.878186754015474 ], [ 8.283453403052079, 50.879426988364798 ], [ 8.287484165361946, 50.880460517139113 ], [ 8.299576449593474, 50.880873928289134 ], [ 8.303297152641449, 50.879633693939809 ], [ 8.306087680601991, 50.877463284502937 ], [ 8.314459262684807, 50.864492499329344 ], [ 8.320195347337403, 50.861805325055684 ], [ 8.336680129084698, 50.859893297137944 ], [ 8.351097853283306, 50.861469428271448 ], [ 8.364120314400964, 50.861598619480674 ], [ 8.368616163804916, 50.862683824199109 ], [ 8.374197217927247, 50.86464752896029 ], [ 8.394867790715978, 50.875086167692473 ], [ 8.396573113958027, 50.876739814091138 ], [ 8.397813348307352, 50.879194444368068 ], [ 8.397658318676463, 50.88387116092531 ], [ 8.396883172320543, 50.888832099221986 ], [ 8.400603875368517, 50.892346095795631 ], [ 8.427113884698031, 50.90872752475542 ], [ 8.44406375533805, 50.916013902119857 ], [ 8.449954867822896, 50.916323961381693 ], [ 8.461272006597824, 50.914515286251458 ], [ 8.463752476195793, 50.914489447829737 ], [ 8.46623294399518, 50.916711534109993 ], [ 8.468093295968799, 50.920768133942204 ], [ 8.468403355230635, 50.936581122121083 ], [ 8.469023471955666, 50.941645413205208 ], [ 8.46964358868064, 50.943764146697958 ], [ 8.478015170763513, 50.954874578998613 ], [ 8.490624219831886, 50.972961331200452 ], [ 8.497135450840346, 50.977715563022798 ], [ 8.505041944929815, 50.978852443685298 ], [ 8.507367383997575, 50.979420885365528 ], [ 8.50953779523303, 50.980299384508953 ], [ 8.510933058313981, 50.981642970746464 ], [ 8.512328322294252, 50.983399969932634 ], [ 8.514653761362013, 50.987430732242501 ], [ 8.519459670027743, 50.993528551201678 ], [ 8.523025343444829, 50.999574693317413 ], [ 8.52612592886851, 51.00376048435885 ], [ 8.527521192848781, 51.005362453914074 ], [ 8.538218214898677, 51.013372300791048 ], [ 8.544884473739444, 51.020658678155428 ], [ 8.544419385746039, 51.024663601144255 ], [ 8.542559034671683, 51.030322171431067 ], [ 8.536667922186837, 51.043913072430314 ], [ 8.534962598944787, 51.050269272908565 ], [ 8.535892774931597, 51.056057034404603 ], [ 8.538218214898677, 51.060165310180878 ], [ 8.537443067643437, 51.063240058082215 ], [ 8.535117628575676, 51.067425849123595 ], [ 8.528141309573755, 51.076314195143937 ], [ 8.524110549062584, 51.080189927822857 ], [ 8.520544874746179, 51.084944160544524 ], [ 8.524730665787558, 51.093315741728077 ], [ 8.62715335464361, 51.093599962568192 ], [ 8.658365919851292, 51.08835480433072 ], [ 8.660846387650679, 51.08817393717743 ], [ 8.663481885980218, 51.088483995539946 ], [ 8.665807325947299, 51.089233303474145 ], [ 8.678984815796582, 51.096080431266842 ], [ 8.704409621306979, 51.10473623329051 ], [ 8.706269972381335, 51.106338202845734 ], [ 8.707355177099714, 51.108766994701 ], [ 8.706890090005629, 51.113547064945067 ], [ 8.705494826025415, 51.116260078539767 ], [ 8.696968215210973, 51.125096746817405 ], [ 8.696038039224106, 51.126440334853555 ], [ 8.695572951230702, 51.12786143725549 ], [ 8.695572951230702, 51.129230861914721 ], [ 8.695727979962271, 51.130496934685766 ], [ 8.697743360667573, 51.132848212175247 ], [ 8.717948846362162, 51.150159817121846 ], [ 8.750194940344215, 51.172794093772382 ], [ 8.751435173794221, 51.174861152220387 ], [ 8.752210321049461, 51.177935899222348 ], [ 8.752520379411976, 51.184214586234134 ], [ 8.752210321049461, 51.187754422128876 ], [ 8.75159020342511, 51.190519110768321 ], [ 8.74988488108238, 51.195945136159082 ], [ 8.749574822719865, 51.197185370508407 ], [ 8.748954705095571, 51.198528958544557 ], [ 8.744923943685023, 51.21051788998858 ], [ 8.744148797329103, 51.214962063448468 ], [ 8.738102655213368, 51.231808580401662 ], [ 8.737792595951532, 51.233720608319402 ], [ 8.736707391233097, 51.237027900217413 ], [ 8.73174645293642, 51.249817817338396 ], [ 8.731126336211446, 51.250592962794997 ], [ 8.729576042600286, 51.251833198043641 ], [ 8.721824578141764, 51.254339505164012 ], [ 8.720119255798977, 51.255114651519932 ], [ 8.719809198335838, 51.256251533081752 ], [ 8.720119255798977, 51.257465929009413 ], [ 8.723684930115439, 51.264158027171163 ], [ 8.724150018108844, 51.265837511092229 ], [ 8.723684930115439, 51.267361966281669 ], [ 8.722754754128573, 51.268705553418556 ], [ 8.721204461416733, 51.26989411092444 ], [ 8.719034051080598, 51.270695094802761 ], [ 8.716863640744407, 51.271134345273765 ], [ 8.712316115396391, 51.270565904492855 ], [ 8.707665236361549, 51.269170641411961 ], [ 8.685651076435988, 51.258990384198853 ], [ 8.665342237953894, 51.255166328363316 ], [ 8.644826693896789, 51.254055284323897 ], [ 8.639865757398752, 51.253047593971246 ], [ 8.637695347062618, 51.252169093928501 ], [ 8.636145054350777, 51.251213080419291 ], [ 8.635214878363911, 51.250463772485091 ], [ 8.629943881704776, 51.243849188689069 ], [ 8.627618441737695, 51.241937160771329 ], [ 8.624982944307419, 51.240851956052893 ], [ 8.622037387615308, 51.240361030537088 ], [ 8.617231479848897, 51.240231839327919 ], [ 8.607929721779215, 51.241317044046298 ], [ 8.603588901106889, 51.24255727839568 ], [ 8.601573521300963, 51.243616644692395 ], [ 8.600126579577989, 51.24488271746344 ], [ 8.599041374859553, 51.246277981443654 ], [ 8.598266229402952, 51.247673245423925 ], [ 8.597025995053627, 51.250903022056775 ], [ 8.595940789435872, 51.254907945045602 ], [ 8.595320671811521, 51.256225693760712 ], [ 8.594390495824712, 51.257543443375198 ], [ 8.590824823306946, 51.259765530554773 ], [ 8.584468621029998, 51.262504380772555 ], [ 8.579972771626103, 51.26490733510542 ], [ 8.578112419652427, 51.266173407876465 ], [ 8.576717156571533, 51.267465318169855 ], [ 8.575942010215613, 51.268808906206004 ], [ 8.575631951853097, 51.270204169286956 ], [ 8.576252068578071, 51.272219549992201 ], [ 8.578112419652427, 51.275940253040233 ], [ 8.588499383339865, 51.289970405409861 ], [ 8.593925408730627, 51.295990709103933 ], [ 8.615526156606848, 51.313638210834711 ], [ 8.648237338582305, 51.334437974832667 ], [ 8.65118289617368, 51.336866766687933 ], [ 8.652578159254631, 51.339864000223429 ], [ 8.653198275979662, 51.341259264203643 ], [ 8.653353305610551, 51.342654527284594 ], [ 8.653973423234902, 51.344049791264808 ], [ 8.662086622899324, 51.348235582306245 ], [ 8.673248732043362, 51.352162990929287 ], [ 8.679449903789987, 51.358829251568693 ], [ 8.679604933420933, 51.360612088277207 ], [ 8.681620314126178, 51.362007351358159 ], [ 8.685496046805099, 51.363428452860774 ], [ 8.704099562045144, 51.366322332709444 ], [ 8.727715692425249, 51.373091946136356 ], [ 8.734536980896962, 51.374125474910727 ], [ 8.751745233056056, 51.373608710073881 ], [ 8.772570834576356, 51.375417385204116 ], [ 8.796290316844647, 51.380378323500793 ], [ 8.8088476899689, 51.381721909738303 ], [ 8.814583773722177, 51.381721909738303 ], [ 8.819699740750423, 51.381205145800834 ], [ 8.824815707778669, 51.380326647556728 ], [ 8.82967329328784, 51.378853868311353 ], [ 8.850757277226535, 51.374693914792317 ], [ 8.853237745925242, 51.374642238848196 ], [ 8.855718214623892, 51.374848945322526 ], [ 8.858043653691652, 51.375417385204116 ], [ 8.883365106414544, 51.387509671234341 ], [ 8.893597038672397, 51.389990139033671 ], [ 8.935144890724132, 51.391282050226437 ], [ 8.938762240984602, 51.393013210990887 ], [ 8.942482944032633, 51.396242988523056 ], [ 8.94744388232931, 51.404485379396704 ], [ 8.949459263034555, 51.40885203669211 ], [ 8.949614291766125, 51.412366035064451 ], [ 8.94666873507407, 51.415569973275637 ], [ 8.943878208012904, 51.417068590043357 ], [ 8.941242709683308, 51.417998766030223 ], [ 8.920417108163008, 51.419910793947963 ], [ 8.918401726558443, 51.420479233829553 ], [ 8.917006462578172, 51.421461087559123 ], [ 8.916231317121571, 51.422908027483459 ], [ 8.915921257859736, 51.425130112864395 ], [ 8.916386345853141, 51.434483547777461 ], [ 8.916076286591363, 51.436421414116921 ], [ 8.914215936416326, 51.445800686552388 ], [ 8.912665642805166, 51.450244859112956 ], [ 8.910340202838086, 51.453862210272746 ], [ 8.908944939757134, 51.455464178928707 ], [ 8.900263299311803, 51.463163967443109 ], [ 8.898868036230851, 51.46476593699839 ], [ 8.898092888975611, 51.466729640860194 ], [ 8.898092888975611, 51.469416816033231 ], [ 8.899488152955882, 51.473757635806237 ], [ 8.900883416036834, 51.476212266982486 ], [ 8.902433708748674, 51.478201809266068 ], [ 8.906154411796649, 51.480914821961449 ], [ 8.958140902580567, 51.497218736555396 ], [ 8.999430373113228, 51.503936673138924 ], [ 9.015398390023677, 51.509155992055355 ], [ 9.021289504307163, 51.507993272971135 ], [ 9.03012617438344, 51.505357773742219 ], [ 9.049659864710975, 51.496030178150193 ], [ 9.064129265753024, 51.491379300014671 ], [ 9.066454704820785, 51.491689358377187 ], [ 9.071260614385835, 51.49189606395214 ], [ 9.074826286903601, 51.490965887965331 ], [ 9.078546990850953, 51.488485419266681 ], [ 9.084593132966688, 51.483007717032478 ], [ 9.086608513671933, 51.473447578343041 ], [ 9.085988396946959, 51.471406358316756 ], [ 9.085523308953555, 51.470036932758205 ], [ 9.084283074604173, 51.459960029231922 ], [ 9.084438104235119, 51.458461412464203 ], [ 9.084903192228523, 51.457066148483932 ], [ 9.089709099994934, 51.452906195864216 ], [ 9.108674351340255, 51.442906805804398 ], [ 9.145881381820288, 51.438255926769557 ], [ 9.153787875909757, 51.438281765191277 ], [ 9.157973666951136, 51.438876044393908 ], [ 9.193372023200311, 51.456394354915517 ], [ 9.198487990228557, 51.457867133261573 ], [ 9.210115187366, 51.456135973396442 ], [ 9.212440627333081, 51.456962795696427 ], [ 9.214766066400841, 51.458668118039213 ], [ 9.217091506367922, 51.463577379492449 ], [ 9.218021680556092, 51.466161200978604 ], [ 9.218538446292257, 51.46838328725886 ], [ 9.218693475023827, 51.469778551239131 ], [ 9.218538446292257, 51.472414049568727 ], [ 9.218538446292257, 51.475204575730572 ], [ 9.218848503755453, 51.476754869341733 ], [ 9.220243767735667, 51.480320542758818 ], [ 9.221949090078454, 51.483705349022614 ], [ 9.224274530045534, 51.487038479342345 ], [ 9.227995233093509, 51.489673976772565 ], [ 9.232801140859976, 51.492464504733107 ], [ 9.252334832086831, 51.500215969191572 ], [ 9.262876825405158, 51.502231349896874 ], [ 9.270473260232734, 51.505745348269159 ], [ 9.282927279670218, 51.512876695103387 ], [ 9.296259800049711, 51.517579250981612 ], [ 9.299515415104338, 51.520059718780999 ], [ 9.302771030158908, 51.523418688421714 ], [ 9.307111850831234, 51.530756740830896 ], [ 9.310987582610835, 51.535614326340067 ], [ 9.315793491276565, 51.539903469269689 ], [ 9.326025425333114, 51.545536201134723 ], [ 9.33150312666794, 51.54954112412355 ], [ 9.335998976071892, 51.553959459161661 ], [ 9.340184767113271, 51.561297512470219 ], [ 9.342975295073813, 51.567576199482005 ], [ 9.343440383067218, 51.569100653772125 ], [ 9.343905470161303, 51.570676784905686 ], [ 9.346695998121788, 51.575921943143157 ], [ 9.348556349196144, 51.580469469390493 ], [ 9.350261672438194, 51.583621730758239 ], [ 9.354292432949421, 51.589512844142405 ], [ 9.354912550573715, 51.591088976175286 ], [ 9.355067580204661, 51.592639268887126 ], [ 9.354757520942826, 51.594163723177246 ], [ 9.353827344956017, 51.595455634370012 ], [ 9.35212202261323, 51.596489163144327 ], [ 9.339254592025782, 51.601941026057489 ], [ 9.337239211320536, 51.603000393253524 ], [ 9.333828565735701, 51.605274156377163 ], [ 9.3330534202791, 51.606669420357434 ], [ 9.337084180790271, 51.608994859425195 ], [ 9.345920850866548, 51.612302151323206 ], [ 9.417751092139156, 51.627133287571155 ], [ 9.424262323147673, 51.631525784187545 ], [ 9.440075311326552, 51.649044093809835 ], [ 9.44849856935349, 51.644031481367733 ], [ 9.466792026231019, 51.655012722459162 ], [ 9.482915072772357, 51.654676826574246 ], [ 9.486945835082224, 51.653281561694712 ], [ 9.49035647976774, 51.649302477127605 ], [ 9.49051150939863, 51.646021022751995 ], [ 9.490201450136794, 51.642636217387519 ], [ 9.49035647976774, 51.639638983852024 ], [ 9.490821566861825, 51.636796779947417 ], [ 9.49206180211047, 51.634264635304646 ], [ 9.494387241178231, 51.632094224968455 ], [ 9.499554884150598, 51.63010468178561 ], [ 9.507771436602525, 51.6283993603422 ], [ 9.520948927351128, 51.628089301080365 ], [ 9.52792524635305, 51.628786933070501 ], [ 9.532576125387891, 51.63028554983822 ], [ 9.53521162281811, 51.632145900912576 ], [ 9.537537061885871, 51.634161282517141 ], [ 9.542653028914117, 51.637778631878348 ], [ 9.545753615237118, 51.639303087067788 ], [ 9.54931928865426, 51.640259101476317 ], [ 9.553039991702235, 51.640000719057923 ], [ 9.556192253969357, 51.638217882349352 ], [ 9.560223016279167, 51.633799547311241 ], [ 9.564718865683119, 51.630388901726405 ], [ 9.577121209176426, 51.627081610727714 ], [ 9.585337761628409, 51.625996406009278 ], [ 9.59262413899279, 51.625738022691564 ], [ 9.605026483385473, 51.627469184355334 ], [ 9.616240269372895, 51.63064728504412 ], [ 9.620891148407736, 51.631112372138261 ], [ 9.623371616207123, 51.629458727538236 ], [ 9.625386996912368, 51.624032701248154 ], [ 9.627402377617614, 51.620260322256058 ], [ 9.630968051934019, 51.617211411877122 ], [ 9.650811802422709, 51.611216945705451 ], [ 9.654377475839851, 51.608168036225891 ], [ 9.657168002901017, 51.603930569240333 ], [ 9.659803501230556, 51.595145576007496 ], [ 9.666469760970699, 51.584965317895069 ], [ 9.686055129040938, 51.571942856777412 ], [ 9.677373487696286, 51.560780748532693 ], [ 9.671327344681174, 51.559282131764917 ], [ 9.668381788888439, 51.560315660539288 ], [ 9.643990513051733, 51.571917019255011 ], [ 9.641820102715542, 51.572511298457641 ], [ 9.639804722010297, 51.572614651245146 ], [ 9.637789341305051, 51.572149563251742 ], [ 9.63561893096886, 51.570857652058976 ], [ 9.633913607726811, 51.568893948197115 ], [ 9.633913607726811, 51.566000068348444 ], [ 9.635463901337971, 51.562150174091244 ], [ 9.645075717770169, 51.551685696038021 ], [ 9.644765659407653, 51.550032050538675 ], [ 9.641044956359622, 51.54858510971502 ], [ 9.636549106056407, 51.548430080983451 ], [ 9.63251834464586, 51.548843492133415 ], [ 9.629727816685374, 51.549566962545271 ], [ 9.623061557844608, 51.552254136818931 ], [ 9.619650913159091, 51.552486680815662 ], [ 9.617170443561122, 51.549825344064345 ], [ 9.615930210111117, 51.543985908422883 ], [ 9.615620150849281, 51.533056342376256 ], [ 9.614534946130846, 51.52739777298882 ], [ 9.6125195654256, 51.523677069940788 ], [ 9.609677362420314, 51.521971746698739 ], [ 9.605956659372339, 51.521093248454633 ], [ 9.596809930034226, 51.520576484517107 ], [ 9.594794549328981, 51.518199367706643 ], [ 9.596809930034226, 51.511584784809941 ], [ 9.616395298104521, 51.483782864287718 ], [ 9.623061557844608, 51.477323310122642 ], [ 9.627867465611018, 51.474171047855521 ], [ 9.63561893096886, 51.47205231436277 ], [ 9.638254429298456, 51.4702953151766 ], [ 9.638719517291861, 51.46802155205296 ], [ 9.636549106056407, 51.465024319416784 ], [ 9.630968051934019, 51.460735174688523 ], [ 9.63003787594721, 51.458409736520082 ], [ 9.630968051934019, 51.455386664562866 ], [ 9.635308871707025, 51.451278387887271 ], [ 9.637014194049812, 51.44740265610767 ], [ 9.636549106056407, 51.441666572354393 ], [ 9.635308871707025, 51.437739162832088 ], [ 9.634688754982051, 51.434018459784056 ], [ 9.638564486761652, 51.408697007960541 ], [ 9.636239047693891, 51.403736070563184 ], [ 9.63251834464586, 51.400945543502019 ], [ 9.604251336130233, 51.398826809109948 ], [ 9.596809930034226, 51.397018133979657 ], [ 9.592934198254625, 51.396966458035592 ], [ 9.585957879252703, 51.398568426691497 ], [ 9.582082146573782, 51.398826809109948 ], [ 9.578981561150101, 51.397586574760567 ], [ 9.576966180444856, 51.395261134793486 ], [ 9.574640741377095, 51.391953843794852 ], [ 9.572005243047499, 51.389705919092876 ], [ 9.563633660964683, 51.384460760855404 ], [ 9.562858513709443, 51.381360175431723 ], [ 9.564563836052173, 51.376760973240323 ], [ 9.571230095792259, 51.36838939115745 ], [ 9.572160271779126, 51.363996894541003 ], [ 9.570920037429744, 51.361387233733808 ], [ 9.567044304750823, 51.360612088277207 ], [ 9.562548455346928, 51.360637925799608 ], [ 9.55350507969564, 51.361929836992374 ], [ 9.538157178610902, 51.366218980821259 ], [ 9.534746534824706, 51.366580716027215 ], [ 9.535521681180626, 51.363738512122609 ], [ 9.541257764933903, 51.358312485832528 ], [ 9.569369744717903, 51.342344468922079 ], [ 9.586267937615219, 51.339450589073408 ], [ 9.655927768551692, 51.319503485797213 ], [ 9.662283969929263, 51.318935045016303 ], [ 9.669466993606875, 51.319555161741278 ], [ 9.682644484355478, 51.314955960449197 ], [ 9.711479932752695, 51.291520698121701 ], [ 9.722021926071022, 51.290461330925666 ], [ 9.725639276331549, 51.290668036500676 ], [ 9.73354577042096, 51.293251857986832 ], [ 9.762071161354982, 51.309323229483425 ], [ 9.769512566551668, 51.314878445184092 ], [ 9.773078240868131, 51.319038397803808 ], [ 9.772923211237185, 51.321079616930774 ], [ 9.772613152874669, 51.323430895319518 ], [ 9.772768181606295, 51.325291246393874 ], [ 9.773388299230589, 51.326686510374145 ], [ 9.774473503949025, 51.327771715092524 ], [ 9.776178827191131, 51.329166979072795 ], [ 9.777574090272026, 51.329993801372837 ], [ 9.778659294990462, 51.330743110206356 ], [ 9.779951206183227, 51.331389065353051 ], [ 9.782741733244393, 51.333843696529357 ], [ 9.784292025956233, 51.335884914757003 ], [ 9.784757113949638, 51.337538561155668 ], [ 9.784757113949638, 51.338701280239889 ], [ 9.783206821237798, 51.339915676167493 ], [ 9.781656527626637, 51.340871690576023 ], [ 9.779486118189766, 51.341879380928674 ], [ 9.775248651204265, 51.341879380928674 ], [ 9.76997765544445, 51.340561632213507 ], [ 9.759435662126066, 51.334282945201721 ], [ 9.756955194326736, 51.33213837328725 ], [ 9.754474724728766, 51.330872301415525 ], [ 9.750754021680734, 51.331337389408986 ], [ 9.742847527591323, 51.334644680407621 ], [ 9.718921339748022, 51.350690213482551 ], [ 9.715355666330936, 51.354333401265421 ], [ 9.71272016800134, 51.358829251568693 ], [ 9.712565138370451, 51.361103013793013 ], [ 9.712565138370451, 51.362601630560789 ], [ 9.71365034308883, 51.363790188066673 ], [ 9.75586998870898, 51.379163927573188 ], [ 9.767962273839828, 51.385649319260665 ], [ 9.792043491314075, 51.39035187423957 ], [ 9.798709751054162, 51.394537665281007 ], [ 9.801655307746216, 51.397199002032266 ], [ 9.798399691792326, 51.400583808296062 ], [ 9.797314487073891, 51.402237453795408 ], [ 9.796384311986401, 51.404304511344094 ], [ 9.795919223992996, 51.40673330319936 ], [ 9.796384311986401, 51.408386948698706 ], [ 9.800725131759407, 51.40885203669211 ], [ 9.808011509123844, 51.407250068036205 ], [ 9.825994906739538, 51.400893867557897 ], [ 9.832816196110571, 51.397586574760567 ], [ 9.837208692726961, 51.393607490193517 ], [ 9.838914015069747, 51.390455227027076 ], [ 9.844495070091398, 51.381515204163293 ], [ 9.849145949126239, 51.376502590821872 ], [ 9.852401564180809, 51.374280504541616 ], [ 9.856432325591356, 51.372110094205482 ], [ 9.860928175894571, 51.372058417362041 ], [ 9.866044142023497, 51.373350328554807 ], [ 9.873175489757045, 51.378879705833754 ], [ 9.875500928824806, 51.381721909738303 ], [ 9.875500928824806, 51.384719143273799 ], [ 9.867129346741933, 51.395984606104662 ], [ 9.865424025298523, 51.397638250704688 ], [ 9.863873731687363, 51.399679469831653 ], [ 9.862788526968927, 51.401539821805329 ], [ 9.861703322250492, 51.404407864131599 ], [ 9.861858350982118, 51.40673330319936 ], [ 9.862788526968927, 51.408697007960541 ], [ 9.865579054030093, 51.410143947884876 ], [ 9.869764845071529, 51.410893255819076 ], [ 9.882322218195782, 51.410893255819076 ], [ 9.884957717424697, 51.41117747755851 ], [ 9.891520622578639, 51.416345120530877 ], [ 9.894156120908235, 51.417895413242718 ], [ 9.897566765593751, 51.419083970748602 ], [ 9.901597527903562, 51.418980617961097 ], [ 9.904233026233157, 51.416965237255852 ], [ 9.905318230951593, 51.411280829446696 ], [ 9.905628289314109, 51.405131334543455 ], [ 9.905783318944998, 51.403684393719743 ], [ 9.914619989021276, 51.397664090025728 ], [ 9.949243198015154, 51.381799425003408 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DE-TH", "NAME_1": "Thüringen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.949863314740185, 51.303018704049919 ], [ 9.947021111734898, 51.303948880036785 ], [ 9.944850702298083, 51.308031318290659 ], [ 9.945780877385573, 51.317436428248527 ], [ 9.942835320693462, 51.32658315668732 ], [ 9.940664911256647, 51.331492418140556 ], [ 9.937254265671811, 51.334231269257657 ], [ 9.93167321065016, 51.337590237099732 ], [ 9.929812859575804, 51.339657293749099 ], [ 9.928727654857369, 51.342292792078638 ], [ 9.927797478870559, 51.34833893509375 ], [ 9.926712274152123, 51.351000270945747 ], [ 9.925161981440283, 51.353299872491107 ], [ 9.923766716560692, 51.356297106026602 ], [ 9.923456659097553, 51.360276191493028 ], [ 9.926712274152123, 51.367330023961415 ], [ 9.930432977200098, 51.371696682156141 ], [ 9.949243198015154, 51.381799425003408 ], [ 10.000092808136571, 51.408231919967079 ], [ 10.01146162285562, 51.416758530781522 ], [ 10.017662794602302, 51.419497381898623 ], [ 10.03208051880091, 51.424199937776905 ], [ 10.03704145709753, 51.4275589065183 ], [ 10.039676955427126, 51.430556139154476 ], [ 10.041692336132371, 51.432261461497205 ], [ 10.045723096643599, 51.432106431866316 ], [ 10.066083611969077, 51.420944321822958 ], [ 10.069184198292078, 51.420065823578852 ], [ 10.073369989333514, 51.420840969035453 ], [ 10.078796013824956, 51.425130112864395 ], [ 10.084687127209122, 51.431072903092002 ], [ 10.099724969032081, 51.433036606953806 ], [ 10.149696079110754, 51.431796373503801 ], [ 10.146595492787753, 51.437170722051178 ], [ 10.146285435324558, 51.438281765191277 ], [ 10.146750523317962, 51.440633043580078 ], [ 10.149851107842323, 51.442648424285323 ], [ 10.163338656953442, 51.444818833722195 ], [ 10.168454623981688, 51.44665334727415 ], [ 10.172227003873104, 51.44934052244713 ], [ 10.179823438700737, 51.458177192523408 ], [ 10.181993849036871, 51.461355292312874 ], [ 10.182148878667817, 51.462802232237209 ], [ 10.181218702680951, 51.46455923142338 ], [ 10.179978468331626, 51.466161200978604 ], [ 10.179668409969111, 51.467530626537155 ], [ 10.180133497962572, 51.469675198451625 ], [ 10.181373732311897, 51.471871446310161 ], [ 10.183544141748712, 51.474016018224631 ], [ 10.185869581715792, 51.475979722985812 ], [ 10.189590284763824, 51.477891750903552 ], [ 10.19470625179207, 51.479390366772009 ], [ 10.204473096955837, 51.480113837183808 ], [ 10.209589063984083, 51.479493720458834 ], [ 10.21284467903871, 51.478046780534441 ], [ 10.213464796663004, 51.477013250860807 ], [ 10.213929883757089, 51.475152899786451 ], [ 10.214394971750551, 51.474016018224631 ], [ 10.2161002949926, 51.472310695881902 ], [ 10.218735793322196, 51.470812079114125 ], [ 10.222766553833367, 51.470036932758205 ], [ 10.232275018377379, 51.470088608702326 ], [ 10.239561394842497, 51.472103990306891 ], [ 10.282504509975126, 51.489441432775891 ], [ 10.286897006591573, 51.490061550400185 ], [ 10.291237827263899, 51.491275947227166 ], [ 10.294493442318469, 51.493498033507421 ], [ 10.297438999010581, 51.499880073306713 ], [ 10.298679233359906, 51.504091701870493 ], [ 10.301624790052017, 51.507218125715895 ], [ 10.306430697818428, 51.510551256035626 ], [ 10.323793979608467, 51.517269191719777 ], [ 10.33232059132223, 51.519801337261868 ], [ 10.335111118383395, 51.521196601242139 ], [ 10.337281527820267, 51.522953600428309 ], [ 10.338211703807076, 51.525950833064485 ], [ 10.341363966973461, 51.528948065700661 ], [ 10.357642043145745, 51.536389471796667 ], [ 10.364618361248347, 51.542435614811723 ], [ 10.3753153832983, 51.560677394845868 ], [ 10.377950880728577, 51.56631012581164 ], [ 10.379501174339737, 51.571994534520115 ], [ 10.379346143809471, 51.574681707894456 ], [ 10.37857099835287, 51.576774603864862 ], [ 10.37779585109763, 51.578040675736588 ], [ 10.374850295304896, 51.580934557383898 ], [ 10.374230176781225, 51.581761380583202 ], [ 10.374075148049656, 51.582588202883244 ], [ 10.374075148049656, 51.584035142807579 ], [ 10.374850295304896, 51.585740465150309 ], [ 10.378415967822662, 51.58677399392468 ], [ 10.385237258092957, 51.587807521799675 ], [ 10.400481804591607, 51.587962551430564 ], [ 10.414279412065184, 51.58982290340424 ], [ 10.421720819060511, 51.591864122531206 ], [ 10.431022577130193, 51.590701402547666 ], [ 10.478823275973411, 51.574707547215496 ], [ 10.514221633121849, 51.556284898229421 ], [ 10.526623975715893, 51.555406399085996 ], [ 10.557474805717675, 51.556594957491257 ], [ 10.561970656020947, 51.557421779791298 ], [ 10.610391473387779, 51.572562975301025 ], [ 10.618452996208816, 51.573441474444451 ], [ 10.624395786436367, 51.573157254503656 ], [ 10.63834842264157, 51.563545437172138 ], [ 10.641604037696197, 51.562150174091244 ], [ 10.645324740744172, 51.561142482839273 ], [ 10.649975619779013, 51.562486069976103 ], [ 10.653386265363849, 51.565793361874114 ], [ 10.655401646069095, 51.574423326375381 ], [ 10.65416141082045, 51.578247382210918 ], [ 10.652301059746094, 51.580805366174673 ], [ 10.650595737403364, 51.581658026896378 ], [ 10.640828892239597, 51.588582669054915 ], [ 10.635092807587, 51.595197251951618 ], [ 10.630751986914674, 51.599176337417987 ], [ 10.629201694202834, 51.600985012548279 ], [ 10.629666782196239, 51.603207098828534 ], [ 10.631372105438288, 51.607031155563334 ], [ 10.648890415060578, 51.619743557419213 ], [ 10.697621290789925, 51.637365220728327 ], [ 10.713434278968805, 51.631112372138261 ], [ 10.803454624331437, 51.632559312961916 ], [ 10.810430942434039, 51.631267401769151 ], [ 10.818802523617535, 51.62894196180207 ], [ 10.8405066260799, 51.619898587050102 ], [ 10.848619825744322, 51.617857367923193 ], [ 10.853580763141679, 51.617108059089617 ], [ 10.878385451027725, 51.617392279929732 ], [ 10.890942824151978, 51.609589137728506 ], [ 10.924170770064961, 51.600933335704838 ], [ 10.937503288645814, 51.600674954185763 ], [ 10.941844110217517, 51.598530382271292 ], [ 10.945564813265491, 51.594732163958156 ], [ 10.950370721031959, 51.586205553143714 ], [ 10.952076043374689, 51.581244614847094 ], [ 10.951921013743799, 51.576955471018152 ], [ 10.947735222702363, 51.573699855963582 ], [ 10.943394402929357, 51.57225291603919 ], [ 10.93858849516289, 51.5720720488859 ], [ 10.934867791215595, 51.572821356820157 ], [ 10.927426385119588, 51.575353502362191 ], [ 10.923550653339987, 51.576025295930663 ], [ 10.919209831768285, 51.576128647818791 ], [ 10.915799187982145, 51.575069282421396 ], [ 10.913163689652549, 51.573441474444451 ], [ 10.911458368209139, 51.57111603537669 ], [ 10.912078484934113, 51.565483303511598 ], [ 10.915644159250519, 51.557266751059672 ], [ 10.926341180401153, 51.539903469269689 ], [ 10.932542352147834, 51.532823798379582 ], [ 10.938123407169485, 51.528276272132246 ], [ 10.941534050955681, 51.52698436093948 ], [ 10.944789666010251, 51.525537421015144 ], [ 10.946805046715497, 51.522643541166474 ], [ 10.947735222702363, 51.518535265390142 ], [ 10.945254754003656, 51.502334703583699 ], [ 10.945409783634602, 51.499544176522477 ], [ 10.946650017983927, 51.496753648561992 ], [ 10.948820428320118, 51.49267121030806 ], [ 10.960809359764141, 51.477323310122642 ], [ 10.970111117833824, 51.4695460072424 ], [ 10.971506381814038, 51.466574612128625 ], [ 10.971816440176553, 51.462698880349024 ], [ 10.965615269329192, 51.443785304947824 ], [ 10.964530063711436, 51.436343898851817 ], [ 10.964530063711436, 51.427817288037375 ], [ 10.972591587431793, 51.418205470705857 ], [ 10.99910159676125, 51.408748683904605 ], [ 11.153820834763678, 51.396863105248087 ], [ 11.196195509115455, 51.397431546028997 ], [ 11.288954704695868, 51.388853258371171 ], [ 11.314896274143734, 51.383323880192904 ], [ 11.367192824189488, 51.357485663532543 ], [ 11.394477979874864, 51.325136216762985 ], [ 11.451890496049543, 51.271496080479722 ], [ 11.443363885235101, 51.259171251352143 ], [ 11.434217156796308, 51.250592962794997 ], [ 11.422434930027975, 51.243745835901564 ], [ 11.39711347820446, 51.234728299571316 ], [ 11.352413363885603, 51.230051581215491 ], [ 11.346418897713932, 51.228552965347035 ], [ 11.340476108385701, 51.224496365514824 ], [ 11.337220493331074, 51.221369940770103 ], [ 11.333034702289638, 51.216305649685978 ], [ 11.336135287713319, 51.211396389132005 ], [ 11.344506869796191, 51.20439423350706 ], [ 11.367037794558541, 51.195118312959721 ], [ 11.388586867390018, 51.18989899404329 ], [ 11.398818801446509, 51.182767646309799 ], [ 11.420264519691841, 51.159668280766539 ], [ 11.425690545082603, 51.146594142805441 ], [ 11.426465692337842, 51.143596910169265 ], [ 11.427395868324652, 51.139023546399528 ], [ 11.427860955418737, 51.133571681687727 ], [ 11.427550897056221, 51.129127509127215 ], [ 11.426155633076007, 51.12708629000025 ], [ 11.422279901296406, 51.12592357001671 ], [ 11.419024286241779, 51.125484321344345 ], [ 11.41731896299973, 51.1238565133674 ], [ 11.416543816643809, 51.122202866968735 ], [ 11.41979943169838, 51.110989080981255 ], [ 11.423520134746411, 51.103754381359579 ], [ 11.425070428357571, 51.101558133501044 ], [ 11.427395868324652, 51.098793443062902 ], [ 11.429876336123982, 51.097165635985277 ], [ 11.433286980809498, 51.095615343273437 ], [ 11.44429406122191, 51.092178860166257 ], [ 11.449875116243618, 51.090990301760996 ], [ 11.504652134088701, 51.089233303474145 ], [ 11.508682896398511, 51.08987925952016 ], [ 11.512403599446543, 51.090964464238596 ], [ 11.515710890445234, 51.092385565741267 ], [ 11.524082471628731, 51.097191474406998 ], [ 11.530903760999763, 51.099568590318142 ], [ 11.535244581672089, 51.100292059830679 ], [ 11.58133995907184, 51.096209622476067 ], [ 11.607539910938101, 51.097088120720173 ], [ 11.627538690158417, 51.095641180795837 ], [ 11.634876742567599, 51.096157944733363 ], [ 11.643093295918845, 51.098276679125433 ], [ 11.663092075139161, 51.101248074239209 ], [ 11.667742954174003, 51.100653795036578 ], [ 11.673634066658849, 51.099103502324738 ], [ 11.689136997374533, 51.091868800904422 ], [ 11.693684522722549, 51.088328965909 ], [ 11.696009962689629, 51.08393646929261 ], [ 11.696164992320519, 51.074350491282132 ], [ 11.697405225770524, 51.064170234069024 ], [ 11.706241895846802, 51.054558416737507 ], [ 11.709187453438233, 51.047246201850726 ], [ 11.714613477929674, 51.042672838080989 ], [ 11.72065962094473, 51.036264959859977 ], [ 11.722054884025681, 51.033577786485637 ], [ 11.724535352724331, 51.025102850715939 ], [ 11.725930616704602, 51.02267405886073 ], [ 11.728411086302572, 51.020193590162023 ], [ 11.732596877344008, 51.017454739044922 ], [ 11.739469841759785, 51.014715887927878 ], [ 11.746601190392596, 51.012803860010081 ], [ 11.759313592248475, 51.019056707700884 ], [ 11.83998050269804, 51.022829088491619 ], [ 11.848972202405207, 51.024069321941624 ], [ 11.860651076386034, 51.022622382017289 ], [ 11.882510206680706, 51.012054552075881 ], [ 11.931396112040943, 50.998076077449014 ], [ 11.940232782117164, 50.993270168783226 ], [ 11.946123894602067, 50.989342760160241 ], [ 11.950619744905282, 50.981953030008299 ], [ 11.952015007986233, 50.977767238966862 ], [ 11.956820915752644, 50.973503933559641 ], [ 11.960851678062454, 50.970997626439271 ], [ 11.993459507250464, 50.959835517295289 ], [ 11.995319858324763, 50.953117580711762 ], [ 11.995629916687278, 50.950998847219012 ], [ 11.998265415016874, 50.949293524876225 ], [ 12.004621616394445, 50.94903514335715 ], [ 12.038779738294295, 50.951722316731491 ], [ 12.056763135909989, 50.955081285472943 ], [ 12.060173780595505, 50.956218167034763 ], [ 12.067925245953347, 50.956114814247258 ], [ 12.12037682473067, 50.944539293053879 ], [ 12.125647821389805, 50.94441010184471 ], [ 12.131693962606278, 50.94518524820063 ], [ 12.140892367888455, 50.948570055363746 ], [ 12.149108921239701, 50.953530991861783 ], [ 12.153604770643653, 50.953479315917662 ], [ 12.15949588402782, 50.952006537571606 ], [ 12.177789340905349, 50.940482693221668 ], [ 12.185230747001356, 50.936891181382862 ], [ 12.192568801209177, 50.928364570568476 ], [ 12.200785352761784, 50.927899482575015 ], [ 12.218923780907744, 50.937382106898667 ], [ 12.215048049128143, 50.945986232978271 ], [ 12.217063428934068, 50.954202786329517 ], [ 12.245588819868146, 50.976527005516857 ], [ 12.251996698089158, 50.982211412426693 ], [ 12.275406121095614, 51.009754951429841 ], [ 12.276026238719908, 51.012855535954202 ], [ 12.275406121095614, 51.016782945476507 ], [ 12.270755242960092, 51.023087470010694 ], [ 12.266724480650225, 51.026084703546189 ], [ 12.262383660877219, 51.028280952304101 ], [ 12.246415643067451, 51.032595934554706 ], [ 12.244245232731316, 51.036058255184287 ], [ 12.244555291093775, 51.042466132505979 ], [ 12.249309522916121, 51.056625475185513 ], [ 12.265174187938385, 51.074040432020297 ], [ 12.266569451918656, 51.076185003934768 ], [ 12.264554071213411, 51.08375560213932 ], [ 12.328942904591372, 51.087838040393251 ], [ 12.48366214439244, 51.058330797528242 ], [ 12.491413607951642, 51.028461819457391 ], [ 12.494514194274643, 51.02458608677847 ], [ 12.521954379590909, 50.995027167070077 ], [ 12.532393019222468, 50.979679266884659 ], [ 12.545725538702641, 50.971256008857722 ], [ 12.559833205438053, 50.966450100191935 ], [ 12.573785841643257, 50.963142809193243 ], [ 12.602207878890511, 50.952471625565067 ], [ 12.626082390789691, 50.928674628031615 ], [ 12.647218051571826, 50.899942532421903 ], [ 12.647373081202716, 50.896738593311397 ], [ 12.646907993209311, 50.892397773538391 ], [ 12.636159295215293, 50.889400540002896 ], [ 12.630268181831127, 50.886506660154225 ], [ 12.627942742763366, 50.884594632236485 ], [ 12.618796014324573, 50.875344550110867 ], [ 12.610889520235162, 50.870125231194436 ], [ 12.608409050637135, 50.870151068716837 ], [ 12.606083611569431, 50.871701362327997 ], [ 12.601742790897049, 50.876378078885182 ], [ 12.597556999855669, 50.877566637290442 ], [ 12.593681268076068, 50.877799181287173 ], [ 12.585929802718226, 50.875912990891777 ], [ 12.58158898294522, 50.875447902898372 ], [ 12.549291213019046, 50.878290106802979 ], [ 12.527535434612616, 50.876584785359512 ], [ 12.522729525946829, 50.877256578028607 ], [ 12.507846713754816, 50.881519884335148 ], [ 12.505676304318001, 50.872915758255601 ], [ 12.50350589398181, 50.871313787801057 ], [ 12.500715366021325, 50.869685980723432 ], [ 12.4628365410735, 50.856637682083317 ], [ 12.44206261639664, 50.841238105054458 ], [ 12.424389276244085, 50.82433991125788 ], [ 12.42066857319611, 50.823668117689465 ], [ 12.417671339660558, 50.823719794532849 ], [ 12.417361281298099, 50.826045234499929 ], [ 12.413640578250067, 50.82738882073744 ], [ 12.406509229617257, 50.828784084717711 ], [ 12.377363721958204, 50.82723379200587 ], [ 12.370542432587172, 50.825993556757226 ], [ 12.364186232108921, 50.823254706539444 ], [ 12.339174838647864, 50.809560451853372 ], [ 12.330803256565048, 50.806356512742866 ], [ 12.258042840204894, 50.792507229325167 ], [ 12.256802605855569, 50.78232697211206 ], [ 12.269049919717986, 50.773593654823287 ], [ 12.285483026420536, 50.769304510994345 ], [ 12.288583611844217, 50.765893867208206 ], [ 12.289048699837622, 50.763310044822674 ], [ 12.287188347863946, 50.760881252967408 ], [ 12.279436883405424, 50.755455227576647 ], [ 12.272925653296227, 50.74992584939838 ], [ 12.271375359685067, 50.749202378986581 ], [ 12.269049919717986, 50.748427231731341 ], [ 12.265794304663416, 50.747910467793815 ], [ 12.259748161648304, 50.74819468953325 ], [ 12.255097284412159, 50.746411851925416 ], [ 12.249206170128616, 50.742587796089879 ], [ 12.241558057558279, 50.731115628583382 ], [ 12.240162795376705, 50.725741279136685 ], [ 12.24124800009514, 50.722175604820279 ], [ 12.244968703143115, 50.721813870513699 ], [ 12.248586053403642, 50.721968899245269 ], [ 12.254012078794403, 50.723054103963705 ], [ 12.258042840204894, 50.723131619228809 ], [ 12.262848747971304, 50.722175604820279 ], [ 12.268894890986417, 50.718248196197294 ], [ 12.270600213329146, 50.714889228355162 ], [ 12.269670037342337, 50.711426906826262 ], [ 12.267344598274576, 50.707861233409176 ], [ 12.2654842463009, 50.700988268094079 ], [ 12.267189568643687, 50.695458889016493 ], [ 12.271995477309417, 50.686880602257986 ], [ 12.275716180357449, 50.682746487160614 ], [ 12.27881676578113, 50.679697578580374 ], [ 12.281917352104131, 50.678250636857399 ], [ 12.285483026420536, 50.677010403407394 ], [ 12.289668816562596, 50.676183580208033 ], [ 12.298970574632278, 50.675770169058012 ], [ 12.312354770955892, 50.676700344145559 ], [ 12.321811557757144, 50.674013169871841 ], [ 12.301502720174369, 50.651559760374596 ], [ 12.297575310652064, 50.648407498107531 ], [ 12.289978874925112, 50.643420722288454 ], [ 12.258973016191703, 50.628176174890541 ], [ 12.252926873176648, 50.626315822916865 ], [ 12.228070509346537, 50.62543732377344 ], [ 12.209001906113087, 50.627866116528025 ], [ 12.191638625222367, 50.627504381322126 ], [ 12.186936069344085, 50.62636749886093 ], [ 12.18259524867176, 50.62355113427742 ], [ 12.17685916491854, 50.617995916778113 ], [ 12.15872073677258, 50.603733222210394 ], [ 12.16027103038374, 50.583682766146694 ], [ 12.157790561685033, 50.577429918455948 ], [ 12.153294712281138, 50.568231513173771 ], [ 12.149418979602217, 50.564614162913244 ], [ 12.145388218191727, 50.562547106263935 ], [ 12.135414665654309, 50.560996813552094 ], [ 12.12363243978524, 50.557534492023137 ], [ 12.118361444025425, 50.556966051242227 ], [ 12.114175652983988, 50.557327786448184 ], [ 12.110299920305067, 50.558568019898189 ], [ 12.107354363612956, 50.560014959822524 ], [ 12.104718866182736, 50.561616930277069 ], [ 12.096967400824894, 50.563296414198135 ], [ 12.081154411746695, 50.561255195071169 ], [ 12.058778516615234, 50.537535711903558 ], [ 12.048546584357382, 50.531567084153608 ], [ 12.04405073405411, 50.531257025791092 ], [ 12.039089796656754, 50.531386217000261 ], [ 12.034904005615374, 50.531902980937787 ], [ 12.031183301668023, 50.532962348133822 ], [ 12.028082717143661, 50.534486803323261 ], [ 12.025860629964086, 50.535882066404213 ], [ 12.024517042827256, 50.537122300753538 ], [ 12.017799107143048, 50.543995266068634 ], [ 12.015318638444398, 50.545338854104784 ], [ 12.010357700147722, 50.546656602819951 ], [ 12.00105594207804, 50.548206896431111 ], [ 11.993924595243868, 50.547405910754151 ], [ 11.989428744940597, 50.546114000460705 ], [ 11.987103305872836, 50.544046942912075 ], [ 11.986173129886026, 50.54260000298774 ], [ 11.983692661187376, 50.539990343079864 ], [ 11.98183231011302, 50.537329007227868 ], [ 11.968293084158518, 50.527355454690451 ], [ 11.944728630621796, 50.515857448762233 ], [ 11.934031610370482, 50.506271470751756 ], [ 11.927675408992911, 50.497357286309693 ], [ 11.925815057019236, 50.492318834546552 ], [ 11.925815057019236, 50.488391425024247 ], [ 11.927520379362022, 50.486065985956486 ], [ 11.930155876792242, 50.48420563398281 ], [ 11.942403191554035, 50.478340359020308 ], [ 11.945193718615201, 50.475162258331522 ], [ 11.947054070588877, 50.471028144133527 ], [ 11.947519158582281, 50.46224315000137 ], [ 11.945193718615201, 50.458315742277648 ], [ 11.937132195794163, 50.453199775249402 ], [ 11.936046991075784, 50.449866644929671 ], [ 11.935891961444838, 50.444931545954034 ], [ 11.934341667833678, 50.442089342049485 ], [ 11.931086052779108, 50.440332342863314 ], [ 11.914963006237713, 50.436947537498838 ], [ 11.910622185565387, 50.435371406365277 ], [ 11.906074660217371, 50.433226834450807 ], [ 11.8997184588398, 50.429325263350222 ], [ 11.897393018872719, 50.426276353870605 ], [ 11.897393018872719, 50.423408312443655 ], [ 11.905299512962131, 50.415165921570008 ], [ 11.881269972331324, 50.407001044162826 ], [ 11.872278272624158, 50.402711900333884 ], [ 11.867472364857747, 50.401316637252989 ], [ 11.849592319130238, 50.398319403717494 ], [ 11.838895297979604, 50.395167141450372 ], [ 11.836104770918439, 50.393539334372747 ], [ 11.832384066971088, 50.392066555127371 ], [ 11.828818393554002, 50.391058864774777 ], [ 11.823702427425076, 50.391446438402397 ], [ 11.822152133813915, 50.394624539091183 ], [ 11.822772251438266, 50.397130846211553 ], [ 11.824477572881676, 50.399146226916798 ], [ 11.823082309800725, 50.40095490204709 ], [ 11.819671665115266, 50.402401841971425 ], [ 11.809129672696201, 50.404830633826691 ], [ 11.804168735298902, 50.406742661744431 ], [ 11.80086144430021, 50.408499660930602 ], [ 11.800137973888354, 50.409481512861475 ], [ 11.798691033964019, 50.411496894466097 ], [ 11.798070916339725, 50.412246202400297 ], [ 11.796727329202895, 50.413512275171342 ], [ 11.792024774223933, 50.414080715952252 ], [ 11.784738396859495, 50.414261583105542 ], [ 11.768150262324752, 50.412892158446311 ], [ 11.761173944222151, 50.411548570410162 ], [ 11.75962365061099, 50.409223131342401 ], [ 11.75807335789915, 50.407827867362187 ], [ 11.756988153180714, 50.4061225450194 ], [ 11.73957319544661, 50.402763577177325 ], [ 11.621182488780846, 50.386795559367556 ], [ 11.591571893128332, 50.394469509460293 ], [ 11.578704460742244, 50.395477199812888 ], [ 11.569816114721903, 50.394598701568782 ], [ 11.566405470036386, 50.393410143163578 ], [ 11.564080030968626, 50.391368924036612 ], [ 11.56128950390746, 50.386097927377421 ], [ 11.559119092671949, 50.383927517041229 ], [ 11.556018508147645, 50.382403062751109 ], [ 11.552297804200293, 50.3814728867643 ], [ 11.539275343082579, 50.380129300526789 ], [ 11.531678908255003, 50.378423977284683 ], [ 11.525787794870837, 50.379147446797219 ], [ 11.517674595206415, 50.381937974757705 ], [ 11.502016635759105, 50.390412910527346 ], [ 11.493490024045343, 50.393539334372747 ], [ 11.487288853197981, 50.396717434162213 ], [ 11.484653354868442, 50.399507962122755 ], [ 11.484033237244091, 50.413718980746353 ], [ 11.482017857438166, 50.422297268404179 ], [ 11.480312534196059, 50.425139472308786 ], [ 11.477211947873059, 50.427490749798267 ], [ 11.470855747394808, 50.429376939294286 ], [ 11.465894809997451, 50.429531968925176 ], [ 11.46165734211263, 50.42886017535676 ], [ 11.458246698326434, 50.42751658821993 ], [ 11.453905876754789, 50.427723293794941 ], [ 11.448479852263347, 50.429376939294286 ], [ 11.440728386905505, 50.435319729521893 ], [ 11.430961540842418, 50.440332342863314 ], [ 11.421194695678651, 50.443045356458015 ], [ 11.419179314973405, 50.448135484165221 ], [ 11.41809411025497, 50.452269599262593 ], [ 11.420574578953619, 50.48570425075053 ], [ 11.426465692337842, 50.488959865805157 ], [ 11.435767450407525, 50.492964788793927 ], [ 11.438092888575909, 50.494850979189323 ], [ 11.43871300620026, 50.497202257578124 ], [ 11.438247918206855, 50.499036770230759 ], [ 11.43778283021345, 50.500070299005074 ], [ 11.436077507870664, 50.502550767703724 ], [ 11.427085809062817, 50.513092760122731 ], [ 11.410497673628697, 50.516503403908928 ], [ 11.346728956975767, 50.518725491088503 ], [ 11.33737552296202, 50.511387437780002 ], [ 11.330089145597583, 50.510121365008956 ], [ 11.324818148938391, 50.507511705101081 ], [ 11.321407505152251, 50.503403429324806 ], [ 11.320632357897011, 50.50115550372351 ], [ 11.320322300433816, 50.499656886955734 ], [ 11.320477329165385, 50.498416653505728 ], [ 11.320322300433816, 50.496763007107063 ], [ 11.319702182809465, 50.495496935235337 ], [ 11.316291538123949, 50.492525540121562 ], [ 11.295775994966164, 50.483947252463679 ], [ 11.276397331571559, 50.481130886081473 ], [ 11.248647087892778, 50.472630112789432 ], [ 11.253452995659188, 50.461726386063845 ], [ 11.256398553250619, 50.456662095878983 ], [ 11.256863641244024, 50.454801743905307 ], [ 11.256553581982189, 50.452631334468492 ], [ 11.254383171646055, 50.449065660152087 ], [ 11.256088494888104, 50.444621486692256 ], [ 11.25779381723089, 50.441520901268575 ], [ 11.25965416830519, 50.438782050151474 ], [ 11.260739373023625, 50.436198229564638 ], [ 11.262134637003896, 50.430668850487052 ], [ 11.262599724997301, 50.427723293794941 ], [ 11.262444696265732, 50.424571031527876 ], [ 11.259034050680896, 50.406949368218761 ], [ 11.259034050680896, 50.40322866517073 ], [ 11.26042931466111, 50.400644842785255 ], [ 11.264150017709142, 50.396252346168808 ], [ 11.264770135333492, 50.393513495051707 ], [ 11.264615105702546, 50.389431056797832 ], [ 11.265390252058467, 50.386407985739936 ], [ 11.267095575300573, 50.383927517041229 ], [ 11.274226922134744, 50.378217271709673 ], [ 11.275777214846585, 50.375943507686713 ], [ 11.277172478826799, 50.373514715831448 ], [ 11.277482537189314, 50.370724188770282 ], [ 11.277482537189314, 50.367933660809797 ], [ 11.27763756682026, 50.365659897686101 ], [ 11.278257684444554, 50.36317942988677 ], [ 11.2802730651498, 50.358631904538754 ], [ 11.279963005888021, 50.356926581296648 ], [ 11.27856774280707, 50.355608832581538 ], [ 11.271281366341952, 50.354187731078923 ], [ 11.268800896743983, 50.353076687039447 ], [ 11.268490838381467, 50.351371364696718 ], [ 11.269110955106498, 50.346875515292766 ], [ 11.270196160724197, 50.343929959500031 ], [ 11.270506219086712, 50.341371975536219 ], [ 11.269265984737387, 50.338529772530933 ], [ 11.260584344292056, 50.325714016088966 ], [ 11.259034050680896, 50.320908108322499 ], [ 11.259034050680896, 50.317290758062029 ], [ 11.264615105702546, 50.310779527053512 ], [ 11.266010369682817, 50.308428250463351 ], [ 11.265855340051871, 50.305043443300235 ], [ 11.264305047340031, 50.30090932910224 ], [ 11.258103874694029, 50.294423937414763 ], [ 11.25624352361973, 50.290780747833196 ], [ 11.255158318901294, 50.288351955977987 ], [ 11.256863641244024, 50.280962225826045 ], [ 11.25701866997565, 50.278636785858964 ], [ 11.256708611613135, 50.277034817203003 ], [ 11.255313347632864, 50.274864406866868 ], [ 11.250972527859858, 50.273520819730038 ], [ 11.244151239388145, 50.273107408580017 ], [ 11.221465284994906, 50.277603257983969 ], [ 11.216194289235034, 50.279515285901709 ], [ 11.207512647890383, 50.28509634092336 ], [ 11.20224165213051, 50.28336518015891 ], [ 11.192319777335854, 50.271557114968857 ], [ 11.143278843243991, 50.301219387464755 ], [ 11.135372349154579, 50.309332587129177 ], [ 11.154906040381434, 50.323543605752775 ], [ 11.156301304361705, 50.325507311413276 ], [ 11.156766392355109, 50.32690257449417 ], [ 11.156456333093274, 50.329150499196146 ], [ 11.155216098743949, 50.331398423898122 ], [ 11.153665806032109, 50.333723862965883 ], [ 11.149790073353188, 50.337987169272424 ], [ 11.145294223949236, 50.341914577895409 ], [ 11.137542758591394, 50.350467027131572 ], [ 11.134597201899339, 50.352017319843412 ], [ 11.131031527582934, 50.352895819886157 ], [ 11.124623651160562, 50.352534085579578 ], [ 11.121368036105991, 50.353619290297956 ], [ 11.118267449782991, 50.357650050809184 ], [ 11.115786981084284, 50.363799547511064 ], [ 11.112531366029714, 50.365194811491335 ], [ 11.108500603719847, 50.36506562028211 ], [ 11.098268669663355, 50.363282783573595 ], [ 11.09377282115878, 50.360957342707195 ], [ 11.090362175573944, 50.358399360542023 ], [ 11.088346794868698, 50.356228950205889 ], [ 11.085556267807476, 50.354471951019718 ], [ 11.081835564759501, 50.353515937510508 ], [ 11.068296339704318, 50.352585761523642 ], [ 11.064110548662882, 50.351913967055907 ], [ 11.049692823564953, 50.347728176014471 ], [ 11.045662062154406, 50.347934882488801 ], [ 11.041631300743916, 50.349485175200641 ], [ 11.036980421709075, 50.355066230222349 ], [ 11.031709425949259, 50.358528550851929 ], [ 11.024578078215711, 50.361164049181525 ], [ 10.997551304049409, 50.363644517880175 ], [ 10.995225864082329, 50.363282783573595 ], [ 10.993830601001434, 50.362300929844025 ], [ 10.992435337021163, 50.355066230222349 ], [ 10.991660189765923, 50.353205878248673 ], [ 10.990109897953403, 50.351371364696718 ], [ 10.987939486717949, 50.349898587249982 ], [ 10.981738314971267, 50.352792467098652 ], [ 10.97755252392983, 50.355427965428248 ], [ 10.943394402929357, 50.387338161726746 ], [ 10.935797967202404, 50.388552558553727 ], [ 10.927736444381367, 50.387958279351096 ], [ 10.902414991658532, 50.38245473869523 ], [ 10.89890099508483, 50.382144680332715 ], [ 10.895748731918445, 50.382351385907725 ], [ 10.893423292850684, 50.382919826688635 ], [ 10.891097852883604, 50.384470120299795 ], [ 10.889082472178359, 50.38625295700831 ], [ 10.887377149835572, 50.388423367344501 ], [ 10.885206740398758, 50.390516262415531 ], [ 10.882726270800731, 50.392273260702382 ], [ 10.879935743739566, 50.393539334372747 ], [ 10.877300246309289, 50.394288642306947 ], [ 10.87466474797975, 50.394288642306947 ], [ 10.871099073663288, 50.393539334372747 ], [ 10.866758253890282, 50.391601467133967 ], [ 10.859161818163386, 50.389482734540536 ], [ 10.840661654811527, 50.391523952768182 ], [ 10.836630894300299, 50.391291408771451 ], [ 10.832910190353005, 50.390361232784642 ], [ 10.820507846859641, 50.384676825874806 ], [ 10.817097202174125, 50.38361745957809 ], [ 10.809810824809688, 50.38224803312022 ], [ 10.806400181023548, 50.382351385907725 ], [ 10.803919712324841, 50.38266144516956 ], [ 10.79446292462427, 50.385632840283336 ], [ 10.792447543919025, 50.385968736168195 ], [ 10.788881869602562, 50.38625295700831 ], [ 10.784489372986172, 50.384418443456354 ], [ 10.779528435588816, 50.381162828401784 ], [ 10.765420769752723, 50.366073309735441 ], [ 10.763405389047477, 50.363282783573595 ], [ 10.760614861986255, 50.360027166720329 ], [ 10.75782433402577, 50.357753404496009 ], [ 10.7545687189712, 50.356616522934132 ], [ 10.751158075185003, 50.356771552565078 ], [ 10.748987663949492, 50.357133286871658 ], [ 10.734879998113399, 50.3610348579723 ], [ 10.730487502396329, 50.361164049181525 ], [ 10.726301711354893, 50.360750637132185 ], [ 10.721960889783247, 50.357443346133493 ], [ 10.71793012927202, 50.351655585536832 ], [ 10.714209426224045, 50.32824616073168 ], [ 10.714984571680645, 50.32194163709687 ], [ 10.719015333990455, 50.317962550731124 ], [ 10.722736037038487, 50.315792141294253 ], [ 10.726766799348297, 50.314086818951523 ], [ 10.737825554805511, 50.310753689531111 ], [ 10.749607781573843, 50.305663560924586 ], [ 10.751313103916573, 50.304630032150214 ], [ 10.763250360315851, 50.295793362073994 ], [ 10.765885857746127, 50.294139716574648 ], [ 10.769141472800698, 50.292692775750993 ], [ 10.773172235110565, 50.291814277506887 ], [ 10.77751305488357, 50.291349189513483 ], [ 10.794928012617675, 50.292382717388477 ], [ 10.798803745296595, 50.291555895088436 ], [ 10.802059360351166, 50.290212307052286 ], [ 10.804229770687357, 50.288196926347041 ], [ 10.806555209755118, 50.283055120897075 ], [ 10.807950473735389, 50.28070384430697 ], [ 10.810120884071523, 50.278791816389173 ], [ 10.812756382401119, 50.277086494046443 ], [ 10.816322055818205, 50.275794582853678 ], [ 10.820352817228695, 50.274709378135242 ], [ 10.837871127750304, 50.271660467756362 ], [ 10.841126742804931, 50.270110175044522 ], [ 10.843297153141066, 50.268094794339277 ], [ 10.844899122696347, 50.265769355271516 ], [ 10.846759473770703, 50.260524197034044 ], [ 10.847379592294317, 50.257707831551159 ], [ 10.847689649757513, 50.254348862809763 ], [ 10.847224561764108, 50.250783189392678 ], [ 10.845674269052267, 50.24654572240712 ], [ 10.843142124409496, 50.24403941528675 ], [ 10.840196566818065, 50.242049872103905 ], [ 10.835390659051654, 50.241016344228854 ], [ 10.829034457674084, 50.240861313698645 ], [ 10.816787143811609, 50.242669989728199 ], [ 10.802524448344627, 50.247450059972266 ], [ 10.79849368693408, 50.248225206328186 ], [ 10.766661004102048, 50.243574327293345 ], [ 10.758444451650121, 50.243186754565045 ], [ 10.753018426259359, 50.243729356024915 ], [ 10.749142693580438, 50.246054795991995 ], [ 10.746662224881732, 50.24711416318803 ], [ 10.742941521833757, 50.247785955857125 ], [ 10.738910760423266, 50.247682603968997 ], [ 10.731572707114708, 50.242308255421619 ], [ 10.726921828079867, 50.221275947426989 ], [ 10.726921828079867, 50.213369453337577 ], [ 10.726611768818088, 50.210423895746146 ], [ 10.725216505737137, 50.208072618256722 ], [ 10.720565626702296, 50.207271633479081 ], [ 10.713589307700374, 50.2083826775185 ], [ 10.699791701126117, 50.213679510800773 ], [ 10.686924268739972, 50.220139064965849 ], [ 10.662222935440127, 50.224531562481616 ], [ 10.617057733127865, 50.22440237127239 ], [ 10.609151239038454, 50.230681057384857 ], [ 10.604810418366128, 50.235461126729604 ], [ 10.603880243278581, 50.237967433849974 ], [ 10.603880243278581, 50.240499579392065 ], [ 10.606515740708858, 50.24349681292756 ], [ 10.607600946326613, 50.24654572240712 ], [ 10.607135858333208, 50.250369778242657 ], [ 10.597989128995096, 50.26142853549851 ], [ 10.594578485208899, 50.267578030401751 ], [ 10.593803337953659, 50.271247057505661 ], [ 10.5953536306655, 50.275768745331334 ], [ 10.597524041001691, 50.279101873852369 ], [ 10.598299188256931, 50.284579576086514 ], [ 10.600004509700341, 50.28778351519702 ], [ 10.600159539331287, 50.292692775750993 ], [ 10.599074333713531, 50.298893948396994 ], [ 10.594268425947064, 50.311296291890358 ], [ 10.59287316196685, 50.317859198842939 ], [ 10.592408074872765, 50.32287181308368 ], [ 10.591322870154329, 50.325972398507361 ], [ 10.588067254200382, 50.328840439934311 ], [ 10.574269646726805, 50.333672187021762 ], [ 10.565588006281473, 50.339976712455268 ], [ 10.552358839588749, 50.358786933270324 ], [ 10.535770705054006, 50.357339993345988 ], [ 10.529259474045489, 50.353619290297956 ], [ 10.526158887722488, 50.352224026317742 ], [ 10.521352979956021, 50.351862291111843 ], [ 10.512981397873205, 50.352947495830222 ], [ 10.499752231180537, 50.353515937510508 ], [ 10.49727176338115, 50.354471951019718 ], [ 10.4955664401391, 50.356306464571674 ], [ 10.496031528132505, 50.359872137988759 ], [ 10.495256381776585, 50.362895209046656 ], [ 10.492930941809504, 50.365763251372925 ], [ 10.466110874117533, 50.38033600520248 ], [ 10.460994907089287, 50.38436676751229 ], [ 10.45758426330309, 50.38762238256686 ], [ 10.45432864824852, 50.392221584758317 ], [ 10.453398472261654, 50.394934597453698 ], [ 10.451951532337318, 50.397440904574069 ], [ 10.449471062739349, 50.399146226916798 ], [ 10.442649774267636, 50.398009345354978 ], [ 10.433658074560469, 50.395580553499713 ], [ 10.424666374853302, 50.394753730300408 ], [ 10.405442742888283, 50.395942287806292 ], [ 10.401101922215901, 50.397440904574069 ], [ 10.397381219167926, 50.399559638066819 ], [ 10.392678664188963, 50.405218207454311 ], [ 10.392213576195559, 50.408706367404932 ], [ 10.393298780913995, 50.411703600041108 ], [ 10.398466423886362, 50.415269273458193 ], [ 10.400791863853442, 50.417181301375933 ], [ 10.401877068571821, 50.419506741343014 ], [ 10.399396599873171, 50.42294322445025 ], [ 10.372834913700274, 50.436611639815283 ], [ 10.368649122658894, 50.439660550194219 ], [ 10.364618361248347, 50.44389801717972 ], [ 10.360122510945132, 50.447825425802705 ], [ 10.355161574447095, 50.451494452906672 ], [ 10.341053907711682, 50.458780829371733 ], [ 10.338521763068911, 50.461157945282935 ], [ 10.337281527820267, 50.463896796400036 ], [ 10.337281527820267, 50.466687324360521 ], [ 10.33790164634388, 50.472836819263762 ], [ 10.337746615813671, 50.475627346324927 ], [ 10.336971470357071, 50.477901109448624 ], [ 10.333560824772235, 50.483275457995944 ], [ 10.332630648785425, 50.485833441959755 ], [ 10.327514682656442, 50.489114895436046 ], [ 10.318678012580222, 50.492370510490616 ], [ 10.238011102130656, 50.510121365008956 ], [ 10.231499871122139, 50.512627672129327 ], [ 10.228089227335943, 50.515624904765502 ], [ 10.226332228149772, 50.5209992542122 ], [ 10.221991408376766, 50.528182277889812 ], [ 10.220441114765606, 50.533711656068022 ], [ 10.218115675697845, 50.536243800710793 ], [ 10.21455000228076, 50.538724270308819 ], [ 10.208503859265704, 50.541566474213369 ], [ 10.205093214580188, 50.543995266068634 ], [ 10.202612745881481, 50.546346544457435 ], [ 10.1971867195914, 50.548181057110071 ], [ 10.188350051313819, 50.549162909940321 ], [ 10.139309116322636, 50.545881456464031 ], [ 10.133883090931874, 50.546682441241671 ], [ 10.130007358252954, 50.548077704322566 ], [ 10.128302035910224, 50.550248115558077 ], [ 10.127371859923358, 50.552573553726518 ], [ 10.127681919185193, 50.555544948840293 ], [ 10.128147007178598, 50.558309638379058 ], [ 10.127836947916819, 50.561151842283664 ], [ 10.126131625574033, 50.562857163727074 ], [ 10.109646843826795, 50.555467434474508 ], [ 10.055024854713281, 50.516503403908928 ], [ 10.047428419885648, 50.516968491902333 ], [ 10.044792921556052, 50.519552314287864 ], [ 10.044482863193593, 50.521903591777289 ], [ 10.045413039180403, 50.52637360275952 ], [ 10.047428419885648, 50.532264716143686 ], [ 10.05595503070009, 50.549472968302837 ], [ 10.0568852066869, 50.554433905700137 ], [ 10.050063918215244, 50.565079250906706 ], [ 10.049133742228435, 50.567353014030346 ], [ 10.048358594973138, 50.570014349882342 ], [ 10.048048536610679, 50.572934068152676 ], [ 10.047893507879053, 50.576086331319118 ], [ 10.049288770960004, 50.594121405778253 ], [ 10.048823682966599, 50.597712918516379 ], [ 10.047738478248164, 50.600477607155824 ], [ 10.045723096643599, 50.602234606341995 ], [ 10.045878127173808, 50.605490221396565 ], [ 10.048358594973138, 50.609546821228776 ], [ 10.058590529029686, 50.616833197693893 ], [ 10.064998407250698, 50.619003608030084 ], [ 10.069804315017109, 50.619236152026758 ], [ 10.072439813346705, 50.617840888046544 ], [ 10.074300164421061, 50.619623724755058 ], [ 10.07600548676379, 50.62200084156558 ], [ 10.07368004679671, 50.645151883052961 ], [ 10.062827996015187, 50.662954413515365 ], [ 10.060347528215857, 50.665874131785699 ], [ 10.0568852066869, 50.667760322181095 ], [ 10.052079298920489, 50.66956899731133 ], [ 10.042622511219918, 50.671274318754797 ], [ 10.025104200698308, 50.672617905891627 ], [ 10.008361037431939, 50.676183580208033 ], [ 10.004175246390503, 50.676545315413932 ], [ 9.997612339437921, 50.676235257051474 ], [ 9.99063602133532, 50.674426581021862 ], [ 9.977923617680801, 50.668845526899531 ], [ 9.97079227084663, 50.666571763775835 ], [ 9.954514193775026, 50.663884589502175 ], [ 9.95094852125726, 50.662747707940355 ], [ 9.948623081290179, 50.66073232723511 ], [ 9.947176141365844, 50.658355211323908 ], [ 9.946711053372383, 50.655513007419358 ], [ 9.947331170097414, 50.652929185933147 ], [ 9.949553257276989, 50.65029368850287 ], [ 9.9574597513664, 50.644299221431879 ], [ 9.959940220065107, 50.641870429576613 ], [ 9.960405308058512, 50.639648342397038 ], [ 9.957149692104622, 50.635359199467473 ], [ 9.95420413631183, 50.630191554696466 ], [ 9.951413608351345, 50.628382880465551 ], [ 9.947692905303313, 50.627426866057021 ], [ 9.943300408686923, 50.627142646116226 ], [ 9.933998650617241, 50.628046982781996 ], [ 9.925782098165257, 50.630062364386561 ], [ 9.909659050724599, 50.636780300070768 ], [ 9.905473259683163, 50.637555447326008 ], [ 9.901597527903562, 50.637271227385213 ], [ 9.898031853587156, 50.636341051398404 ], [ 9.89462120890164, 50.635049140205638 ], [ 9.886973097230623, 50.633240465075403 ], [ 9.882632276558297, 50.634015611431323 ], [ 9.879531691134616, 50.637116196854947 ], [ 9.87767134006026, 50.64360159034112 ], [ 9.878446486416181, 50.652050685890401 ], [ 9.878136427154402, 50.657011624187078 ], [ 9.879066603141212, 50.662101751894284 ], [ 9.881237012578083, 50.667114366135081 ], [ 9.888213331579948, 50.675925197789638 ], [ 9.893070916189799, 50.679878444834344 ], [ 9.897411736862125, 50.68248810474222 ], [ 9.900977411178587, 50.683573310359975 ], [ 9.904077995702949, 50.684968574340189 ], [ 9.906713494931807, 50.686777249470481 ], [ 9.913224725041005, 50.692668361955327 ], [ 9.913999871396925, 50.695252184340802 ], [ 9.912139520322569, 50.699928900898044 ], [ 9.91260460831603, 50.704553941511165 ], [ 9.916480340095632, 50.711426906826262 ], [ 9.93012291793832, 50.72718821906102 ], [ 9.93337853389221, 50.732820950026792 ], [ 9.934773796973161, 50.736696681806393 ], [ 9.936014032221806, 50.742561956768839 ], [ 9.936014032221806, 50.748788966937241 ], [ 9.935548944228401, 50.750985215695096 ], [ 9.932138298643565, 50.755636094729937 ], [ 9.920666131137011, 50.763775132816079 ], [ 9.926092157427092, 50.773231920516707 ], [ 9.931053093925129, 50.774317125235143 ], [ 9.935548944228401, 50.775919093891048 ], [ 9.938804559282971, 50.776435858727893 ], [ 9.940974968719843, 50.775893256368647 ], [ 9.942680291062572, 50.774472153966713 ], [ 9.944850702298083, 50.774472153966713 ], [ 9.946245965378978, 50.776590888358783 ], [ 9.945780877385573, 50.781241767393624 ], [ 9.945005731029653, 50.784729926444925 ], [ 9.942835320693462, 50.790336818988976 ], [ 9.942060174337541, 50.793179022893582 ], [ 9.942215203069168, 50.796434637948153 ], [ 9.942680291062572, 50.799586900215274 ], [ 9.944385614304622, 50.802739163381659 ], [ 9.949708286008558, 50.809948025480992 ], [ 9.949863314740185, 50.812712714120437 ], [ 9.9493982276461, 50.815193182819087 ], [ 9.95187869634475, 50.817544461207888 ], [ 9.957769809728916, 50.82030914984739 ], [ 9.97249759318936, 50.824288235313759 ], [ 9.992496372409619, 50.825838528025599 ], [ 9.998232456162896, 50.827337144793376 ], [ 10.007120802183238, 50.830644435792067 ], [ 10.013477003560865, 50.831548774256476 ], [ 10.01874800022, 50.831677965465701 ], [ 10.023088819993063, 50.833305772543326 ], [ 10.026034376685118, 50.837026476490678 ], [ 10.026809523041038, 50.846819160076166 ], [ 10.023243848724633, 50.854363918959677 ], [ 10.026034376685118, 50.858756415576067 ], [ 10.028979933377229, 50.862373765836594 ], [ 10.05595503070009, 50.882630927475304 ], [ 10.047583448617274, 50.888780423277865 ], [ 10.044172803931758, 50.892501126325897 ], [ 10.039366896165291, 50.901492825133744 ], [ 10.035956252379151, 50.90565277775346 ], [ 10.032700636425204, 50.90875336407646 ], [ 10.021383497650277, 50.915264594185658 ], [ 10.011306593224674, 50.919631253279704 ], [ 10.008516066163509, 50.920509752423129 ], [ 10.006190627095748, 50.920974840416534 ], [ 10.002728305566848, 50.921078193204039 ], [ 10.000247836868141, 50.920768133942204 ], [ 9.997457309806975, 50.920122178795509 ], [ 9.99466678184649, 50.919062812498794 ], [ 9.992031284416214, 50.917564194831698 ], [ 9.98986087408008, 50.915807197444167 ], [ 9.987690463743888, 50.913791815839602 ], [ 9.985830111770213, 50.911414699928457 ], [ 9.983504672702452, 50.909399319223155 ], [ 9.980869175272232, 50.907642320037041 ], [ 9.977768588949232, 50.9064537625311 ], [ 9.97420291463277, 50.906143704168585 ], [ 9.97156741720255, 50.908985908073191 ], [ 9.970327182853168, 50.914205226989623 ], [ 9.971412387571604, 50.925677395395439 ], [ 9.969707065228874, 50.929088040080956 ], [ 9.967226597429487, 50.93012156795595 ], [ 9.962110630401241, 50.92647838017308 ], [ 9.959320103340076, 50.925057277771145 ], [ 9.955599399392781, 50.924798896252014 ], [ 9.95265384270067, 50.926504217695481 ], [ 9.951258578720399, 50.92973399522765 ], [ 9.95187869634475, 50.935909329451988 ], [ 9.953273960325021, 50.938958238032228 ], [ 9.95590945775524, 50.941852118780218 ], [ 9.962730747126272, 50.943118191551264 ], [ 9.967691685422949, 50.94324738186117 ], [ 9.971102329209089, 50.942317205874303 ], [ 9.972962681182764, 50.940973618737473 ], [ 9.974668002626231, 50.940043442750664 ], [ 9.97807864821101, 50.939423326025633 ], [ 10.013321973929919, 50.937046210114488 ], [ 10.025414259060767, 50.938028062944738 ], [ 10.041382276870593, 50.940921942793409 ], [ 10.044637891925163, 50.943867499485464 ], [ 10.046033155905434, 50.94903514335715 ], [ 10.043087599213322, 50.961644192425524 ], [ 10.037351514560726, 50.96846548089718 ], [ 10.03301069478772, 50.972573758472151 ], [ 10.029289991739688, 50.974304918337282 ], [ 10.026344435047633, 50.976010239780692 ], [ 10.023553907986468, 50.982108058739868 ], [ 10.026189406316007, 50.995724799060213 ], [ 10.05114912293368, 51.00701610031274 ], [ 10.063138055277022, 51.008643907390365 ], [ 10.093368767654511, 51.008514716181196 ], [ 10.104375848066923, 51.005853380329199 ], [ 10.107631463121493, 51.005982571538425 ], [ 10.118070102753052, 51.008798937021311 ], [ 10.121170689076052, 51.009031481017985 ], [ 10.123186068881978, 51.008023789766071 ], [ 10.123651156875383, 51.00569835069831 ], [ 10.122410923425377, 51.001176662872695 ], [ 10.122410923425377, 51.000143134098323 ], [ 10.122720980888516, 50.999316310899019 ], [ 10.124271273600357, 50.998076077449014 ], [ 10.129542271158869, 50.995595607850987 ], [ 10.1332629742069, 50.994562079076672 ], [ 10.137913853241741, 50.993993639195082 ], [ 10.143029819370668, 50.993838609564136 ], [ 10.165043980195492, 50.996422431050348 ], [ 10.187884963320414, 50.995698961537812 ], [ 10.191140578374984, 50.996629137524678 ], [ 10.194086134167719, 50.999290473376618 ], [ 10.208658887997274, 51.020865383730438 ], [ 10.209589063984083, 51.024482733990965 ], [ 10.207573683278838, 51.028823553763971 ], [ 10.205403272942704, 51.031717434511961 ], [ 10.198271926108475, 51.038125311833653 ], [ 10.195171339785475, 51.04290538207772 ], [ 10.193155959080229, 51.04484324841718 ], [ 10.189590284763824, 51.045876777191495 ], [ 10.175947706921136, 51.04613515871057 ], [ 10.172071974242215, 51.04691030506649 ], [ 10.168764683243523, 51.048305569046761 ], [ 10.163183628221873, 51.051612860944772 ], [ 10.159928013167246, 51.052982286503266 ], [ 10.155742222125809, 51.053679918493401 ], [ 10.146440464056184, 51.054300035218432 ], [ 10.142409701746317, 51.055230211205242 ], [ 10.141014438665422, 51.058692531834822 ], [ 10.141324497027881, 51.064066881281519 ], [ 10.144270053719993, 51.074169623229523 ], [ 10.147370640042993, 51.081171779753788 ], [ 10.152021519077834, 51.089181627530081 ], [ 10.165199008927118, 51.102514147010254 ], [ 10.168764683243523, 51.110730699462181 ], [ 10.169074740706719, 51.115484931284527 ], [ 10.165664096920523, 51.117267767993098 ], [ 10.147215610412104, 51.119308987120007 ], [ 10.143494907364072, 51.120135810319368 ], [ 10.140394321041072, 51.121582750243704 ], [ 10.138378940335826, 51.123598130948949 ], [ 10.136828647623986, 51.12592357001671 ], [ 10.13574344200623, 51.128507392402184 ], [ 10.13419314929439, 51.130832831469945 ], [ 10.132022738958199, 51.132951564962752 ], [ 10.129232211897033, 51.134656887305482 ], [ 10.125976596842463, 51.136103828129137 ], [ 10.127836947916819, 51.138274238465328 ], [ 10.134348178925279, 51.141064765526494 ], [ 10.15651736758241, 51.144966335727759 ], [ 10.166439243276443, 51.1454055852995 ], [ 10.173622266954055, 51.14483714541791 ], [ 10.177497999632976, 51.142201647088314 ], [ 10.185404493722388, 51.135121975298887 ], [ 10.186334669709254, 51.133054917750201 ], [ 10.185869581715792, 51.130884508313386 ], [ 10.184629347366467, 51.129334214702226 ], [ 10.185094435359872, 51.12783559793445 ], [ 10.185559523353334, 51.127008774735145 ], [ 10.19145063583818, 51.12401154209897 ], [ 10.193621047073634, 51.122357897498944 ], [ 10.194861281422959, 51.118017075927298 ], [ 10.1964115741348, 51.115872504012827 ], [ 10.19873701320256, 51.116337592006232 ], [ 10.202767774613108, 51.120213325584473 ], [ 10.207573683278838, 51.140909735895548 ], [ 10.207728712909784, 51.146852525223835 ], [ 10.208503859265704, 51.151141669052777 ], [ 10.214084914287355, 51.161270250321763 ], [ 10.229174432054378, 51.172897447459206 ], [ 10.232585076739895, 51.178581855268362 ], [ 10.23289513510241, 51.179873766461128 ], [ 10.231964959115544, 51.182509263891404 ], [ 10.230259636772814, 51.184317939021639 ], [ 10.217185499711036, 51.187470201288704 ], [ 10.197031690859831, 51.194704901809757 ], [ 10.186334669709254, 51.200957750399823 ], [ 10.172847120598135, 51.206073717428069 ], [ 10.163183628221873, 51.206848862884669 ], [ 10.15388187015219, 51.2063320989472 ], [ 10.148455844761429, 51.206952216571494 ], [ 10.142099644283121, 51.20860586207084 ], [ 10.1332629742069, 51.212946681843846 ], [ 10.127371859923358, 51.213980211517537 ], [ 10.117294956397132, 51.214703681030016 ], [ 10.111817254162929, 51.215582180173442 ], [ 10.105150995322163, 51.217494208091182 ], [ 10.100345085757112, 51.218114325715533 ], [ 10.096159294715676, 51.219302884120793 ], [ 10.089648064606479, 51.221938382450389 ], [ 10.085772331927558, 51.222868557537879 ], [ 10.081276483422982, 51.223230291844459 ], [ 10.077245721113115, 51.224883938243124 ], [ 10.073990106058545, 51.227829494935236 ], [ 10.071819695722354, 51.239430854550278 ], [ 10.069339227023704, 51.243642483114058 ], [ 10.05362959163233, 51.251704006834416 ], [ 10.050994093302734, 51.253977769958112 ], [ 10.048513624604084, 51.257750148950208 ], [ 10.048513624604084, 51.262891954400175 ], [ 10.053784621263276, 51.271005154064596 ], [ 10.052544386014574, 51.273873196390866 ], [ 10.049133742228435, 51.276560369765207 ], [ 10.040297072152157, 51.279092516206617 ], [ 10.025104200698308, 51.280022691294164 ], [ 10.002418247204332, 51.285965481521714 ], [ 9.999782748874736, 51.286327215828294 ], [ 9.988775669361644, 51.285629583838215 ], [ 9.983969760695913, 51.285784614368424 ], [ 9.978853793667611, 51.287955023805296 ], [ 9.972807650652555, 51.291546536543422 ], [ 9.964746127831518, 51.299918117726918 ], [ 9.958544956084836, 51.302760322530844 ], [ 9.953584018687479, 51.303793850405839 ], [ 9.949863314740185, 51.303018704049919 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DE-ST", "NAME_1": "Sachsen-Anhalt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.713434278968805, 51.631112372138261 ], [ 10.697621290789925, 51.637365220728327 ], [ 10.669044223911783, 51.669869697128775 ], [ 10.669199252643409, 51.692969061772772 ], [ 10.668269076656543, 51.698291734376028 ], [ 10.664083285615106, 51.707231757239754 ], [ 10.661137729822372, 51.71100413713117 ], [ 10.65819217313026, 51.713665472983166 ], [ 10.646409946361928, 51.719840807207447 ], [ 10.644239536025736, 51.721339423075904 ], [ 10.638193393910001, 51.731364651557385 ], [ 10.630131870189643, 51.738392646503428 ], [ 10.628271519115287, 51.741183173564593 ], [ 10.624550815167993, 51.751621813196095 ], [ 10.622225376100232, 51.755549220919761 ], [ 10.619228142564737, 51.758546454455256 ], [ 10.616127557141056, 51.760045071223033 ], [ 10.609151239038454, 51.762732245496693 ], [ 10.602950067291772, 51.76578115497631 ], [ 10.59767907063258, 51.76945018208022 ], [ 10.595508661195765, 51.771465562785465 ], [ 10.590392694167463, 51.775082913045992 ], [ 10.585276727139217, 51.777925116950541 ], [ 10.583881463159003, 51.780302231962423 ], [ 10.582486200078051, 51.78448802300386 ], [ 10.580005731379401, 51.796631984978092 ], [ 10.578920525761646, 51.799629218513587 ], [ 10.578300409036615, 51.800404364869507 ], [ 10.57783532104321, 51.805210273535295 ], [ 10.580160760110971, 51.830273342041096 ], [ 10.580160760110971, 51.844897772714035 ], [ 10.582176140816216, 51.847739977517904 ], [ 10.587137079112892, 51.850995592572531 ], [ 10.600624627324692, 51.854561265989616 ], [ 10.604345330372666, 51.856318264276467 ], [ 10.607600946326613, 51.858850409818558 ], [ 10.611011590112753, 51.863552964797464 ], [ 10.614422234798269, 51.86618846312706 ], [ 10.618142937846301, 51.867997138257294 ], [ 10.625791050416638, 51.869935003697435 ], [ 10.628736606209372, 51.871459458886875 ], [ 10.630907017444883, 51.873655706745467 ], [ 10.63431766123108, 51.878642483463807 ], [ 10.636333041936325, 51.880657864169052 ], [ 10.638503452272516, 51.882259832825014 ], [ 10.639898716252731, 51.883551744017723 ], [ 10.640983920971166, 51.886652330340723 ], [ 10.641138949702736, 51.891561590894696 ], [ 10.638193393910001, 51.906754462348545 ], [ 10.635247837217889, 51.911560370114955 ], [ 10.631837191633053, 51.913679104507025 ], [ 10.61504235242262, 51.920707099453068 ], [ 10.61349205881146, 51.923135891308334 ], [ 10.613026970818055, 51.924531155288548 ], [ 10.61504235242262, 51.934246324508251 ], [ 10.618142937846301, 51.943444728891109 ], [ 10.623620640080446, 51.947578843988424 ], [ 10.626876255135073, 51.948922431125254 ], [ 10.641759067327087, 51.953056546222626 ], [ 10.644394564757363, 51.95481354450942 ], [ 10.645479771274438, 51.957087306733797 ], [ 10.644549595287572, 51.958689277188341 ], [ 10.641914096957976, 51.958921821185072 ], [ 10.634782749224485, 51.957655748414027 ], [ 10.629356723833723, 51.958301703560721 ], [ 10.624705844798882, 51.960291245844303 ], [ 10.618608025839706, 51.966053168019243 ], [ 10.615352410785135, 51.968404446408044 ], [ 10.590237663637254, 51.976155910866567 ], [ 10.588532342193844, 51.983752345694199 ], [ 10.587757195837924, 51.985354316148744 ], [ 10.586206903126083, 51.987162991278979 ], [ 10.572719354014964, 51.998609321263132 ], [ 10.571169061303124, 52.000340481128262 ], [ 10.570548943678773, 52.001218981171007 ], [ 10.570083855685368, 52.002149156258554 ], [ 10.569618767691964, 52.004190375385463 ], [ 10.570083855685368, 52.006800035293395 ], [ 10.5738045587334, 52.008867091942705 ], [ 10.580005731379401, 52.01031403276636 ], [ 10.609306267770023, 52.008195299273609 ], [ 10.61504235242262, 52.00881541599864 ], [ 10.621605259375201, 52.01052073834137 ], [ 10.635092807587, 52.017755438862366 ], [ 10.643309360038927, 52.024473375445893 ], [ 10.651215855027658, 52.02979604804915 ], [ 10.652146030115205, 52.032379869535305 ], [ 10.651991001383578, 52.035015366965581 ], [ 10.651215855027658, 52.037702542138561 ], [ 10.651060825396769, 52.040286362725453 ], [ 10.652456089376983, 52.042611802692534 ], [ 10.660827670560536, 52.044730536185284 ], [ 10.717465041278615, 52.05023407684115 ], [ 10.850325148087109, 52.05025991526287 ], [ 10.876215040691534, 52.056667792584506 ], [ 10.89621381991185, 52.058528144558181 ], [ 10.945564813265491, 52.057701321358877 ], [ 10.955538364004269, 52.057959702877952 ], [ 10.95905236237661, 52.058579820502302 ], [ 10.962979770999596, 52.059820054851627 ], [ 10.965925326792387, 52.061422024406852 ], [ 10.968405796390357, 52.064574285774654 ], [ 10.969956089102197, 52.068915107346299 ], [ 10.970731234558798, 52.077079982954842 ], [ 10.970111117833824, 52.081214098052158 ], [ 10.969335972377223, 52.083539537119918 ], [ 10.967165562041032, 52.084934801100189 ], [ 10.951765985012173, 52.09222117846457 ], [ 10.949440545045093, 52.093668118388905 ], [ 10.948510369957603, 52.094856675894846 ], [ 10.947735222702363, 52.096975410286916 ], [ 10.948820428320118, 52.099740098926418 ], [ 10.951610955381284, 52.102375597255957 ], [ 10.958122186389801, 52.104830227532943 ], [ 10.992900425014568, 52.111599840060535 ], [ 11.013829380221694, 52.118937893369036 ], [ 11.0382206560584, 52.131701972068356 ], [ 11.043336623086645, 52.135500190381435 ], [ 11.048297559584682, 52.139711818945273 ], [ 11.056514112935929, 52.148858548283329 ], [ 11.0579093769162, 52.152837632850435 ], [ 11.0579093769162, 52.158005275822802 ], [ 11.054343702599795, 52.16839223951024 ], [ 11.050467969920874, 52.171699531408194 ], [ 11.045972121416241, 52.173146471332586 ], [ 11.041631300743916, 52.172836412070751 ], [ 11.037135451340021, 52.173327338485876 ], [ 11.03325971776178, 52.174438382525295 ], [ 11.030004102707153, 52.175833644706927 ], [ 11.027213575645987, 52.177538967049657 ], [ 11.025043166209116, 52.179347643079211 ], [ 11.022717726242035, 52.181983141408807 ], [ 11.019307081556576, 52.186866564440379 ], [ 11.019307081556576, 52.18999298828578 ], [ 11.020702344637471, 52.194049588117991 ], [ 11.029073926720343, 52.206116034827119 ], [ 11.034189893748589, 52.20960419387842 ], [ 11.03744550880316, 52.211464544952776 ], [ 11.0579093769162, 52.217071438396147 ], [ 11.072017042752293, 52.218750922317213 ], [ 11.078269891342416, 52.220998847019132 ], [ 11.080905388772635, 52.222833360571087 ], [ 11.082920770377257, 52.225132962116504 ], [ 11.084316034357471, 52.227820136390164 ], [ 11.085091179814071, 52.230714016238835 ], [ 11.085246209445017, 52.240093289573622 ], [ 11.084471063089097, 52.243658962990708 ], [ 11.082920770377257, 52.247147122042009 ], [ 11.078424920073985, 52.250971177877545 ], [ 11.07563439301282, 52.251281236240061 ], [ 11.073463982676628, 52.250764472302535 ], [ 11.072637160376644, 52.249937649103174 ], [ 11.070466750040453, 52.246940416466998 ], [ 11.068503045279328, 52.245028388549258 ], [ 11.066332634943137, 52.243503933359818 ], [ 11.063645460669477, 52.243684801412428 ], [ 11.062715284682611, 52.245906886793364 ], [ 11.061785108695801, 52.25086782509004 ], [ 11.062250196689206, 52.258515936761057 ], [ 11.060699903977365, 52.261409817509048 ], [ 11.055893996210955, 52.262598375014989 ], [ 11.047987502121487, 52.261203111034717 ], [ 11.044576857436027, 52.261771551815627 ], [ 11.042096387838001, 52.263476874158414 ], [ 11.03744550880316, 52.269006253235943 ], [ 11.033414748291989, 52.271124985829431 ], [ 11.027213575645987, 52.275155748139241 ], [ 11.01475955620856, 52.287403062900978 ], [ 11.014139438584209, 52.289676826024674 ], [ 11.01568973129605, 52.2916922058306 ], [ 11.021012403899306, 52.295722968140467 ], [ 11.032019484311718, 52.301381537527902 ], [ 11.033724805755185, 52.303706977494983 ], [ 11.033724805755185, 52.306471666134485 ], [ 11.030469190700558, 52.31019236918246 ], [ 11.027523634008503, 52.312259425831826 ], [ 11.026128370927552, 52.313809719442986 ], [ 11.025198194940742, 52.31598012977912 ], [ 11.024733106947338, 52.318305568846881 ], [ 11.023957960591417, 52.320424303238951 ], [ 11.022872755872982, 52.321638699166613 ], [ 11.020702344637471, 52.323163154356052 ], [ 11.013829380221694, 52.325798651786329 ], [ 11.005922886132282, 52.327684842181668 ], [ 11.002977329440171, 52.328847561265889 ], [ 11.001737095090846, 52.33044953082117 ], [ 11.000806919104036, 52.33334341156916 ], [ 11.000031772748116, 52.338149319335571 ], [ 10.999256626392196, 52.340319728772442 ], [ 10.999256626392196, 52.342490139108634 ], [ 11.00142703582901, 52.343730374357278 ], [ 11.008403354830932, 52.346314194944114 ], [ 11.018997023194061, 52.348742987698699 ], [ 11.047057326134677, 52.350965073978955 ], [ 11.063800490300366, 52.353833116305225 ], [ 11.066746046992478, 52.355693468278901 ], [ 11.069123162004303, 52.358458156918402 ], [ 11.070466750040453, 52.364736843030869 ], [ 11.072017042752293, 52.368535061344005 ], [ 11.072998894683224, 52.372178250026195 ], [ 11.070053337991169, 52.376544908220922 ], [ 11.066952751668168, 52.379748847331427 ], [ 11.037600539333425, 52.394838365098451 ], [ 11.024423048584822, 52.397215481009596 ], [ 11.020857375167736, 52.398300685728032 ], [ 11.015379672933534, 52.400626125695112 ], [ 11.010728793898693, 52.403468328700399 ], [ 10.939053582256975, 52.462121080123723 ], [ 10.940448846237246, 52.472766425330235 ], [ 10.941379022224055, 52.476435452434146 ], [ 10.943239373298411, 52.479587713801948 ], [ 10.945254754003656, 52.481603095406513 ], [ 10.946184929990523, 52.482843328856518 ], [ 10.946805046715497, 52.484186916892668 ], [ 10.947270134708958, 52.487804267153194 ], [ 10.948355340326657, 52.490181383064339 ], [ 10.950060661770124, 52.492455146188036 ], [ 10.952541131368093, 52.49441885004984 ], [ 10.955641716791774, 52.496046658026842 ], [ 10.962669711737817, 52.498346259572202 ], [ 10.966855502779197, 52.499121405928122 ], [ 10.971351353082468, 52.499586493921527 ], [ 10.97600223121799, 52.499483141134021 ], [ 10.994450717726409, 52.496899318748547 ], [ 10.998946567130361, 52.497054348379436 ], [ 11.001737095090846, 52.498139553097872 ], [ 10.999566684754711, 52.502583727457022 ], [ 10.99414065936395, 52.508991603879394 ], [ 10.966390414785792, 52.536199246098306 ], [ 10.963754917355516, 52.538059597172662 ], [ 10.960809359764141, 52.539687405149607 ], [ 10.955848423266104, 52.543382269775918 ], [ 10.953678012929913, 52.545475164846948 ], [ 10.951300897018768, 52.548989163219289 ], [ 10.949130486682577, 52.553743395041636 ], [ 10.946494989252358, 52.562941800323813 ], [ 10.945874870728687, 52.567928575243513 ], [ 10.946494989252358, 52.583612372213167 ], [ 10.947115105977332, 52.586351223330269 ], [ 10.948355340326657, 52.588935044816424 ], [ 10.950370721031959, 52.591157131995999 ], [ 10.952696160999039, 52.593275865488749 ], [ 10.969335972377223, 52.604360460267003 ], [ 10.974296908875203, 52.608313707311709 ], [ 10.976312289580505, 52.610587470435405 ], [ 10.97770755356072, 52.61317129192156 ], [ 10.97677737757391, 52.616271878244561 ], [ 10.973366732888394, 52.619320786824801 ], [ 10.963289829362111, 52.622111313886023 ], [ 10.957192010402935, 52.622524725935307 ], [ 10.952076043374689, 52.621801256422827 ], [ 10.948665398689172, 52.620509345230062 ], [ 10.937348259914245, 52.613843085489975 ], [ 10.933782585597839, 52.612912910402486 ], [ 10.928201532374828, 52.614204819796555 ], [ 10.919829950291955, 52.619475816455747 ], [ 10.884896681136922, 52.651411852075285 ], [ 10.847069533032482, 52.697352199844147 ], [ 10.836940951763495, 52.710271308174299 ], [ 10.828724399311568, 52.713785304748001 ], [ 10.821748081208966, 52.71605906787164 ], [ 10.811206088789959, 52.71605906787164 ], [ 10.805935093030087, 52.718100286998606 ], [ 10.800974154733467, 52.722466946092652 ], [ 10.796168246967, 52.734094143230095 ], [ 10.794772982986785, 52.740372830241881 ], [ 10.793842807899239, 52.747943427547114 ], [ 10.791672397563104, 52.750372219402379 ], [ 10.778753289232895, 52.758382066279296 ], [ 10.774257439828943, 52.761689358177307 ], [ 10.763715448309256, 52.77734731672524 ], [ 10.75937462673761, 52.781688137397623 ], [ 10.757979363656716, 52.783626003737083 ], [ 10.75689415893828, 52.786494046063353 ], [ 10.756739129307334, 52.789491278699529 ], [ 10.757359246032365, 52.792436835391641 ], [ 10.76014977399285, 52.801351019833646 ], [ 10.76014977399285, 52.804296577425077 ], [ 10.759994745261281, 52.807242133217869 ], [ 10.759219598006041, 52.810006821857314 ], [ 10.75704918766985, 52.815174465729001 ], [ 10.756739129307334, 52.818171699264497 ], [ 10.75782433402577, 52.821737371782262 ], [ 10.760459832355366, 52.826491604503929 ], [ 10.760769890717881, 52.829953925133509 ], [ 10.75859948128101, 52.835095730583475 ], [ 10.762010125067206, 52.838377184059766 ], [ 10.795393100611079, 52.846335354093299 ], [ 10.842522006785146, 52.848479926007769 ], [ 10.885516798761216, 52.847162177292603 ], [ 10.89890099508483, 52.848919176478773 ], [ 10.914093865639359, 52.853725084245241 ], [ 10.941689079687251, 52.859073595270161 ], [ 10.960654331032515, 52.865145575807674 ], [ 10.970421177095659, 52.873103745841149 ], [ 10.989334750698163, 52.882121283970037 ], [ 10.991660189765923, 52.883904119779288 ], [ 10.993055453746194, 52.885997015749638 ], [ 10.993520541739599, 52.887624823726583 ], [ 10.993675571370488, 52.89263743796738 ], [ 10.993985629733004, 52.89550548029365 ], [ 10.994760776088924, 52.898476874508106 ], [ 10.99584598080736, 52.901370755256096 ], [ 10.99739627441852, 52.903902899898867 ], [ 10.998791538398791, 52.905866603760728 ], [ 10.99987674311717, 52.906900133434362 ], [ 11.00065189037241, 52.907649441368619 ], [ 11.002512241446766, 52.908708808564654 ], [ 11.014656203421055, 52.911861069932399 ], [ 11.034344924278798, 52.913075466759381 ], [ 11.050778029182709, 52.91227448198174 ], [ 11.080905388772635, 52.907520250159394 ], [ 11.098888787287706, 52.901422431200217 ], [ 11.106640251746228, 52.900595608000856 ], [ 11.165293003169552, 52.903256943852853 ], [ 11.213558790905438, 52.897753404096306 ], [ 11.216969434691634, 52.89625478822785 ], [ 11.21975996265212, 52.894446113097615 ], [ 11.222240431350826, 52.892482408336434 ], [ 11.225341016774507, 52.890983792468035 ], [ 11.23789838989876, 52.887857367723313 ], [ 11.240895623434255, 52.886152045380584 ], [ 11.242911004139501, 52.884059150309497 ], [ 11.244306268119772, 52.881578680711527 ], [ 11.246166620093447, 52.879563300006282 ], [ 11.248181999899373, 52.877857978562815 ], [ 11.250507439866453, 52.876927802576006 ], [ 11.253297966927619, 52.876152656220086 ], [ 11.258103874694029, 52.876307684951655 ], [ 11.264305047340031, 52.87754791930098 ], [ 11.272831659053793, 52.882095445548373 ], [ 11.278722772437959, 52.884317531828628 ], [ 11.284458856191236, 52.885299383759502 ], [ 11.292261996593879, 52.883180650266752 ], [ 11.312880894337809, 52.883800767891103 ], [ 11.373704054298628, 52.899562079226541 ], [ 11.408740676241223, 52.905246487035697 ], [ 11.412358025602373, 52.906435045440958 ], [ 11.470390659401403, 52.940076402503962 ], [ 11.47938235820925, 52.941239122487502 ], [ 11.49829593271113, 52.941833400790813 ], [ 11.500156283785429, 52.942608548046053 ], [ 11.502016635759105, 52.944158840757893 ], [ 11.500466343047265, 52.949533189305214 ], [ 11.497985874348615, 52.954494126702571 ], [ 11.496590610368344, 52.959971828936716 ], [ 11.496280552005828, 52.963020738416333 ], [ 11.496280552005828, 52.969402778215624 ], [ 11.500931431040669, 52.989143175017489 ], [ 11.501861607027536, 52.991907864556254 ], [ 11.506822544424892, 53.001132107360831 ], [ 11.509768101116947, 53.003845120056212 ], [ 11.515090772820884, 53.006738999904883 ], [ 11.525167677246486, 53.008237617571979 ], [ 11.530748732268194, 53.007695014313413 ], [ 11.538965284720121, 53.005550442398999 ], [ 11.551987745837778, 53.005653795186447 ], [ 11.561909620632491, 53.010020453381173 ], [ 11.58133995907184, 53.042860826565857 ], [ 11.625678338184741, 53.050302231762544 ], [ 11.635806918554408, 53.046245632829653 ], [ 11.636168653760365, 53.039346829092835 ], [ 11.636272007447189, 53.03712474191326 ], [ 11.630535922794593, 53.027590439846904 ], [ 11.622267694398545, 53.022396959352193 ], [ 11.635961948185354, 53.018107815523251 ], [ 11.669086541310833, 53.01728099232389 ], [ 11.680610385660771, 53.012165025295644 ], [ 11.687586703763372, 52.999504300283206 ], [ 11.689136997374533, 52.98994415979513 ], [ 11.694201286660018, 52.983949692724138 ], [ 11.711667922136883, 52.982037664806342 ], [ 11.721744825663166, 52.984156399198412 ], [ 11.747376335849196, 52.99304474521881 ], [ 11.762879265665561, 52.99511180276744 ], [ 11.793265007673938, 52.967154853513648 ], [ 11.807269320722583, 52.960333564142672 ], [ 11.838585238717769, 52.959455064099927 ], [ 11.850780876636122, 52.955114244326865 ], [ 11.845406528088802, 52.943538723133543 ], [ 11.833469272588843, 52.932634996407955 ], [ 11.831867303033619, 52.928242498892189 ], [ 11.896721226203624, 52.901732490462052 ], [ 11.906849805673971, 52.899510403282477 ], [ 11.924729852300857, 52.898270168933095 ], [ 11.938217401411919, 52.895014552979205 ], [ 11.965502557097295, 52.885221870293037 ], [ 11.982607455569621, 52.883051459057583 ], [ 11.997645298291843, 52.886798001426598 ], [ 12.02265669085358, 52.886281235690433 ], [ 12.092936639414347, 52.89165558513713 ], [ 12.096967400824894, 52.89108714525554 ], [ 12.100688103872869, 52.889640204431885 ], [ 12.107199333982066, 52.885144355027933 ], [ 12.110299920305067, 52.881113592718123 ], [ 12.112315301010312, 52.878013007294442 ], [ 12.111230096291877, 52.866644192575393 ], [ 12.125957878853001, 52.865507311013573 ], [ 12.136344841641119, 52.865817369376089 ], [ 12.170657993171858, 52.87217356985434 ], [ 12.174998813844184, 52.872483629116175 ], [ 12.179649691979705, 52.871553453129309 ], [ 12.191741978009873, 52.867832750081334 ], [ 12.20326582235981, 52.865920722163594 ], [ 12.208381789388056, 52.861734931122157 ], [ 12.213807813879498, 52.854603583388609 ], [ 12.233186476374783, 52.816311347290821 ], [ 12.233961622730703, 52.809774277860583 ], [ 12.229620802058378, 52.798741359925771 ], [ 12.197064649713809, 52.782204902234412 ], [ 12.195049269008564, 52.779233507120637 ], [ 12.194222445809203, 52.775512804072605 ], [ 12.196599561720404, 52.768148912342383 ], [ 12.19939008968089, 52.764169826875957 ], [ 12.20264570473546, 52.761017563709572 ], [ 12.206521437414381, 52.758382066279296 ], [ 12.208381789388056, 52.75481639286221 ], [ 12.208691846851252, 52.75192251211422 ], [ 12.20497114380322, 52.748821925791219 ], [ 12.195359328270342, 52.742930813306373 ], [ 12.191018507598017, 52.738977566261667 ], [ 12.190088331611207, 52.736057847991276 ], [ 12.190398389973723, 52.732698880149201 ], [ 12.193292270721713, 52.728151353901808 ], [ 12.196289504257209, 52.725205797209753 ], [ 12.201560500017024, 52.720580755697313 ], [ 12.203730910353215, 52.71740265590779 ], [ 12.205591261427571, 52.712958482447959 ], [ 12.207606642132816, 52.706111355554583 ], [ 12.210242139563093, 52.702571520559218 ], [ 12.213342725886093, 52.700142726905312 ], [ 12.222799512687345, 52.69544017192635 ], [ 12.225745070278776, 52.693192247224431 ], [ 12.228070509346537, 52.690169176166535 ], [ 12.228225538977426, 52.681849270027783 ], [ 12.225745070278776, 52.672599188801485 ], [ 12.215823194584743, 52.653375555937146 ], [ 12.209777051569688, 52.645753281788473 ], [ 12.204661086340025, 52.641179918018793 ], [ 12.194429152283533, 52.637304186239191 ], [ 12.18569583499476, 52.635857245415536 ], [ 12.166317173398795, 52.636580715827336 ], [ 12.161976352726469, 52.63608978941221 ], [ 12.159185824765984, 52.630353704759614 ], [ 12.156860385698224, 52.620405992442556 ], [ 12.155000033724548, 52.596531481442696 ], [ 12.152984653019303, 52.586454576117774 ], [ 12.150814242683111, 52.579995021952698 ], [ 12.124252557409591, 52.555035305335025 ], [ 12.123322381422724, 52.552994086208059 ], [ 12.123942498147755, 52.551004543924535 ], [ 12.129988641162868, 52.549609279944264 ], [ 12.135001255403608, 52.549660955888385 ], [ 12.144768100567376, 52.550823675871925 ], [ 12.154534945731143, 52.55110789671204 ], [ 12.159030796034415, 52.550436103143625 ], [ 12.161666294363954, 52.548963324797569 ], [ 12.16259647035082, 52.546767076039714 ], [ 12.158875767302789, 52.543149725779188 ], [ 12.155775180979788, 52.540669257080538 ], [ 12.152364536294328, 52.538653876375292 ], [ 12.147558627628541, 52.534778143696371 ], [ 12.146318394178536, 52.53183258700426 ], [ 12.146008334916701, 52.528086046433884 ], [ 12.147713657259487, 52.522995916927982 ], [ 12.149574009233106, 52.519947008347742 ], [ 12.152984653019303, 52.517518216492476 ], [ 12.155930209711414, 52.515916246037875 ], [ 12.168642611567236, 52.513745835701741 ], [ 12.18244021994019, 52.515347805256965 ], [ 12.190088331611207, 52.517621568380662 ], [ 12.192982212359198, 52.518965156416812 ], [ 12.195824416263804, 52.520773831547046 ], [ 12.198304884063134, 52.522685859464843 ], [ 12.200630324030215, 52.524830431379257 ], [ 12.202180616742055, 52.527465928809534 ], [ 12.204506055809816, 52.536483466039101 ], [ 12.205901319790087, 52.539144801891041 ], [ 12.208381789388056, 52.541134345073942 ], [ 12.211792433174253, 52.542219549792378 ], [ 12.216908400202499, 52.542116197004873 ], [ 12.222489455224149, 52.540669257080538 ], [ 12.229930861320156, 52.536948554032506 ], [ 12.235356885811598, 52.532478543050274 ], [ 12.250239698902988, 52.517156481286577 ], [ 12.256027458600329, 52.514159246851762 ], [ 12.260833368165379, 52.51330658613 ], [ 12.264244011951575, 52.51446930611354 ], [ 12.267964714999607, 52.51503774689445 ], [ 12.271995477309417, 52.51503774689445 ], [ 12.276026238719908, 52.514520982057661 ], [ 12.280057000130455, 52.514908556584601 ], [ 12.283932732809376, 52.515683702041201 ], [ 12.291064079643547, 52.518086656374066 ], [ 12.293854607604032, 52.517776598011551 ], [ 12.295094841953357, 52.516122952512205 ], [ 12.290754022180352, 52.510361030337265 ], [ 12.288273552582382, 52.506201076818229 ], [ 12.287808464588977, 52.499276435559011 ], [ 12.289048699837622, 52.491473294257105 ], [ 12.287963495119186, 52.487365017581453 ], [ 12.286723259870541, 52.484212755314388 ], [ 12.275251092363987, 52.47168121971248 ], [ 12.266104363925251, 52.456488349157951 ], [ 12.260213249641765, 52.450648911717849 ], [ 12.249309522916121, 52.446463121575789 ], [ 12.247655877416776, 52.444706122389618 ], [ 12.247035759792482, 52.442354844900137 ], [ 12.249206170128616, 52.438944200214621 ], [ 12.251066522102292, 52.437083849140322 ], [ 12.255562370606924, 52.433182278039681 ], [ 12.257267693848974, 52.430908514915984 ], [ 12.257422722580543, 52.426877753505494 ], [ 12.256182489130538, 52.421658433689743 ], [ 12.249309522916121, 52.408274238265449 ], [ 12.245278760606311, 52.402538154512172 ], [ 12.233341506005672, 52.388792222982659 ], [ 12.231946242025458, 52.386466783015578 ], [ 12.231636182763623, 52.383469550379402 ], [ 12.233651564368188, 52.379206244972181 ], [ 12.233186476374783, 52.375873115551826 ], [ 12.231016066038592, 52.372152412503794 ], [ 12.229465773326751, 52.368328355768995 ], [ 12.231481154031997, 52.360835272829547 ], [ 12.233186476374783, 52.3564427762131 ], [ 12.234736769086624, 52.353135484315146 ], [ 12.235201857080028, 52.350034897992145 ], [ 12.233961622730703, 52.346236681477649 ], [ 12.221404249606394, 52.33292999951982 ], [ 12.218613721645909, 52.327839870913294 ], [ 12.217528516927473, 52.325049342952809 ], [ 12.214737989866308, 52.319468288830421 ], [ 12.208071730126221, 52.30946889877066 ], [ 12.206676467045327, 52.306885078183768 ], [ 12.20574629105846, 52.301691595890418 ], [ 12.206211379051865, 52.294327704160196 ], [ 12.209001906113087, 52.279005642396442 ], [ 12.214427930604472, 52.273450425796511 ], [ 12.219853956894553, 52.270608221891905 ], [ 12.229620802058378, 52.270039781110995 ], [ 12.233341506005672, 52.267869370774804 ], [ 12.236442092328673, 52.264665432563618 ], [ 12.239852736114869, 52.259084378441287 ], [ 12.245588819868146, 52.2539167345696 ], [ 12.248069288566796, 52.252418117801881 ], [ 12.246518995854956, 52.249214178691375 ], [ 12.244968703143115, 52.24719879798613 ], [ 12.222024367230745, 52.232367661738181 ], [ 12.209001906113087, 52.207201240444874 ], [ 12.201560500017024, 52.199811510292932 ], [ 12.199700148043405, 52.196504218394921 ], [ 12.199080031318374, 52.193920396908766 ], [ 12.207606642132816, 52.178184923095671 ], [ 12.216598341839983, 52.166325181961554 ], [ 12.219698927263664, 52.163741360475399 ], [ 12.246105583805615, 52.147644151456404 ], [ 12.252771844445078, 52.134337470397895 ], [ 12.256337517862164, 52.130823472924931 ], [ 12.260523308903544, 52.12829132828216 ], [ 12.28052208812386, 52.122167670001943 ], [ 12.299125604263224, 52.109687812142795 ], [ 12.361344028204314, 52.057701321358877 ], [ 12.363876173746405, 52.050880031987845 ], [ 12.364186232108921, 52.048347887345074 ], [ 12.364186232108921, 52.045118109812904 ], [ 12.36511640809573, 52.040079658049763 ], [ 12.370697463117438, 52.036100572583337 ], [ 12.37922407393188, 52.031113796764259 ], [ 12.409454787208631, 52.018323880542653 ], [ 12.42082360192768, 52.011605943059806 ], [ 12.42562950969409, 52.010210679978854 ], [ 12.431830682340092, 52.00938385677955 ], [ 12.44376793784005, 52.009642239197944 ], [ 12.449814079955786, 52.010830796703885 ], [ 12.453844842265653, 52.012742825520945 ], [ 12.457255486951169, 52.017652086074861 ], [ 12.45958092601893, 52.019770820466988 ], [ 12.462526482710985, 52.021114406704498 ], [ 12.466557245020851, 52.021527817854462 ], [ 12.471518182418151, 52.019977525142622 ], [ 12.477305942115549, 52.017083645293951 ], [ 12.497459750966698, 52.000495509859888 ], [ 12.54433027472237, 51.977887070731697 ], [ 12.56153852688152, 51.971711738306055 ], [ 12.607633905180592, 51.965407212872549 ], [ 12.621586541385739, 51.973933823686991 ], [ 12.634298944140937, 51.978998114771173 ], [ 12.646442905215906, 51.982460436300073 ], [ 12.650938754619801, 51.985845242563869 ], [ 12.653109164955993, 51.98912669514084 ], [ 12.653419224217828, 51.992046414310551 ], [ 12.654814487298722, 51.994449367744096 ], [ 12.661015659045404, 51.994759426106611 ], [ 12.666751742798681, 51.994449367744096 ], [ 12.705405715001746, 51.980393377852067 ], [ 12.794754265896643, 51.946235256851594 ], [ 12.805761346309055, 51.944426580822039 ], [ 12.844105259250284, 51.941687731503578 ], [ 12.859143101073244, 51.935124824550996 ], [ 12.86425906720217, 51.928587755120759 ], [ 12.871907178873187, 51.912878119729442 ], [ 12.876868117169863, 51.910811062180755 ], [ 12.884774611259274, 51.909596666253094 ], [ 12.930714959028137, 51.909234931047195 ], [ 12.951178827141121, 51.906935330401154 ], [ 12.962030877023324, 51.903705552868928 ], [ 12.974123162154171, 51.896935940341336 ], [ 12.979910922750889, 51.891845811734811 ], [ 12.984251743423215, 51.88623891919076 ], [ 12.991538119888332, 51.881562201734198 ], [ 13.04771040171363, 51.857145087475772 ], [ 13.066158888222105, 51.852649238071876 ], [ 13.132253044842116, 51.857558499525112 ], [ 13.139384392575664, 51.856628323538303 ], [ 13.148272738596006, 51.849496974905435 ], [ 13.153388705624252, 51.846706447844269 ], [ 13.160830111720259, 51.844381008776509 ], [ 13.165170933291904, 51.848670151706131 ], [ 13.173077427381372, 51.858436997769218 ], [ 13.179123568597788, 51.861382555360592 ], [ 13.184549594887869, 51.862054348029687 ], [ 13.217932570431742, 51.860555732161288 ], [ 13.236846144034303, 51.855491441077106 ], [ 13.228164503588971, 51.843011583217958 ], [ 13.193851352957552, 51.819059556952936 ], [ 13.163465610049855, 51.789035550150516 ], [ 13.157884555927524, 51.782110907991978 ], [ 13.156489291947253, 51.775082913045992 ], [ 13.157264439202493, 51.748547065294815 ], [ 13.158969760645903, 51.741079819877768 ], [ 13.164705845298499, 51.730046901942956 ], [ 13.174472689562947, 51.719944159994952 ], [ 13.181604038195815, 51.70854950595492 ], [ 13.178348423141188, 51.696586412033241 ], [ 13.150443148932141, 51.67286692976495 ], [ 13.090498488114747, 51.643514716530944 ], [ 13.082281934763444, 51.638398749502642 ], [ 13.061663038818153, 51.615092678384372 ], [ 13.043834669934029, 51.617934882288978 ], [ 13.022854037883519, 51.631680812919171 ], [ 13.015257603055943, 51.635091458504007 ], [ 13.008746372047426, 51.636693427159912 ], [ 13.001615024313935, 51.635091458504007 ], [ 12.996964146178414, 51.633231106530332 ], [ 12.990607943901466, 51.6291486682764 ], [ 12.977843866101523, 51.627701728352065 ], [ 12.964149611415394, 51.637985338352678 ], [ 12.941877069071438, 51.645090846765129 ], [ 12.92978478394059, 51.646356920435494 ], [ 12.914695265274247, 51.649896756330236 ], [ 12.901982863418425, 51.655400296086782 ], [ 12.891027458950077, 51.670076401804465 ], [ 12.862036980921914, 51.668319404416934 ], [ 12.853096958058131, 51.659792791803852 ], [ 12.800800408911755, 51.632662664850102 ], [ 12.781576776047359, 51.627004096361929 ], [ 12.752224561913977, 51.634988104817182 ], [ 12.715327589796402, 51.638192043927631 ], [ 12.700599806335958, 51.632921048167816 ], [ 12.690471225966292, 51.622327378905368 ], [ 12.682874790239339, 51.612663886529106 ], [ 12.675433384143332, 51.607392889869971 ], [ 12.66210086376384, 51.601450100541683 ], [ 12.654969516929668, 51.600468247711433 ], [ 12.650473666626397, 51.601165879701568 ], [ 12.648613314652721, 51.603465481246928 ], [ 12.645977817222445, 51.605480861952174 ], [ 12.641430290975109, 51.606462713883104 ], [ 12.54510542197761, 51.595972398307538 ], [ 12.532393019222468, 51.601760158904199 ], [ 12.459270867656414, 51.604343981289674 ], [ 12.452449579184702, 51.603775540508764 ], [ 12.443457878578215, 51.601450100541683 ], [ 12.439427118067044, 51.582174790833903 ], [ 12.437876825355204, 51.578479926207592 ], [ 12.434776239032203, 51.573958238381977 ], [ 12.430590447990767, 51.57245962251352 ], [ 12.356383090806958, 51.567757065735975 ], [ 12.30594689273488, 51.552254136818931 ], [ 12.297730340282953, 51.551220608044616 ], [ 12.267344598274576, 51.553339342436686 ], [ 12.252151726820728, 51.557163398272166 ], [ 12.242488234444465, 51.560677394845868 ], [ 12.235356885811598, 51.562150174091244 ], [ 12.232411330018863, 51.560729071689309 ], [ 12.230861037307022, 51.558558661353118 ], [ 12.229775831689267, 51.554372870311681 ], [ 12.227915479715591, 51.549205227339371 ], [ 12.226365187003751, 51.546518053065654 ], [ 12.22481489429191, 51.544450995517025 ], [ 12.222179395962314, 51.542513129177564 ], [ 12.195359328270342, 51.52874136012565 ], [ 12.195359328270342, 51.482000027579204 ], [ 12.190708449235558, 51.47014028644503 ], [ 12.187246127706601, 51.469003403983891 ], [ 12.183990512652031, 51.467504788115434 ], [ 12.181510043953324, 51.465696112985199 ], [ 12.175618930569158, 51.459029853245113 ], [ 12.173138461870508, 51.457221178114878 ], [ 12.16182132309558, 51.452260239818202 ], [ 12.157015415329113, 51.449004624763575 ], [ 12.156240268973193, 51.446110744914904 ], [ 12.156860385698224, 51.443165188222849 ], [ 12.158100620047549, 51.440297145896523 ], [ 12.158100620047549, 51.42854075844923 ], [ 12.15872073677258, 51.425698554544624 ], [ 12.16027103038374, 51.423476467365049 ], [ 12.16259647035082, 51.421486925081524 ], [ 12.167557406848857, 51.414303901403912 ], [ 12.170968052433636, 51.391540431745511 ], [ 12.170037876446827, 51.375365709260052 ], [ 12.171278109896832, 51.37242015256794 ], [ 12.174068637857317, 51.367252508696311 ], [ 12.178254428898754, 51.362033188880559 ], [ 12.184765659007951, 51.351310330207525 ], [ 12.186315951719791, 51.343507188905619 ], [ 12.186005894256596, 51.336505032381297 ], [ 12.184610630276325, 51.331079006990535 ], [ 12.18321536629611, 51.327409979886625 ], [ 12.18166507268495, 51.324774482456348 ], [ 12.179494663248079, 51.322707424907719 ], [ 12.176239048193509, 51.321260484084064 ], [ 12.172673373877103, 51.320433660884703 ], [ 12.158100620047549, 51.319916896947234 ], [ 12.152364536294328, 51.317798163454427 ], [ 12.146008334916701, 51.313612372413047 ], [ 12.136861607377284, 51.302760322530844 ], [ 12.133554314579953, 51.296662503571667 ], [ 12.132314080230628, 51.291753242118375 ], [ 12.132624138593087, 51.289014391001331 ], [ 12.133140903429933, 51.286843981564459 ], [ 12.133761021054283, 51.285293687953299 ], [ 12.135001255403608, 51.283278307248054 ], [ 12.136861607377284, 51.281056220068479 ], [ 12.140272251163424, 51.273563137129031 ], [ 12.141667515143695, 51.252944241183741 ], [ 12.160891148008034, 51.236614488168073 ], [ 12.164611851056065, 51.226511746220069 ], [ 12.168022494842262, 51.197443752926858 ], [ 12.167402378117231, 51.194394843447242 ], [ 12.166317173398795, 51.191811021961087 ], [ 12.164921909418581, 51.18914968520977 ], [ 12.163216587075794, 51.186695054932841 ], [ 12.158875767302789, 51.182509263891404 ], [ 12.152829624287733, 51.177625840859832 ], [ 12.153294712281138, 51.170003566711216 ], [ 12.16259647035082, 51.167497260490165 ], [ 12.18414554228292, 51.164060777382929 ], [ 12.179494663248079, 51.136827298540993 ], [ 12.188951450049387, 51.124941718085779 ], [ 12.206986525407785, 51.115097358556227 ], [ 12.211172316449222, 51.111557521762165 ], [ 12.212567580429493, 51.107320054776665 ], [ 12.212102492436088, 51.103134263735285 ], [ 12.214893018597934, 51.094917711283301 ], [ 12.21830366418277, 51.091300361022832 ], [ 12.222644483955776, 51.088974921055751 ], [ 12.264554071213411, 51.08375560213932 ], [ 12.266569451918656, 51.076185003934768 ], [ 12.265174187938385, 51.074040432020297 ], [ 12.249309522916121, 51.056625475185513 ], [ 12.244555291093775, 51.042466132505979 ], [ 12.244245232731316, 51.036058255184287 ], [ 12.246415643067451, 51.032595934554706 ], [ 12.262383660877219, 51.028280952304101 ], [ 12.266724480650225, 51.026084703546189 ], [ 12.270755242960092, 51.023087470010694 ], [ 12.275406121095614, 51.016782945476507 ], [ 12.276026238719908, 51.012855535954202 ], [ 12.275406121095614, 51.009754951429841 ], [ 12.251996698089158, 50.982211412426693 ], [ 12.245588819868146, 50.976527005516857 ], [ 12.217063428934068, 50.954202786329517 ], [ 12.215048049128143, 50.945986232978271 ], [ 12.218923780907744, 50.937382106898667 ], [ 12.200785352761784, 50.927899482575015 ], [ 12.192568801209177, 50.928364570568476 ], [ 12.185230747001356, 50.936891181382862 ], [ 12.177789340905349, 50.940482693221668 ], [ 12.15949588402782, 50.952006537571606 ], [ 12.153604770643653, 50.953479315917662 ], [ 12.149108921239701, 50.953530991861783 ], [ 12.140892367888455, 50.948570055363746 ], [ 12.131693962606278, 50.94518524820063 ], [ 12.125647821389805, 50.94441010184471 ], [ 12.12037682473067, 50.944539293053879 ], [ 12.067925245953347, 50.956114814247258 ], [ 12.060173780595505, 50.956218167034763 ], [ 12.056763135909989, 50.955081285472943 ], [ 12.038779738294295, 50.951722316731491 ], [ 12.004621616394445, 50.94903514335715 ], [ 11.998265415016874, 50.949293524876225 ], [ 11.995629916687278, 50.950998847219012 ], [ 11.995319858324763, 50.953117580711762 ], [ 11.993459507250464, 50.959835517295289 ], [ 11.960851678062454, 50.970997626439271 ], [ 11.956820915752644, 50.973503933559641 ], [ 11.952015007986233, 50.977767238966862 ], [ 11.950619744905282, 50.981953030008299 ], [ 11.946123894602067, 50.989342760160241 ], [ 11.940232782117164, 50.993270168783226 ], [ 11.931396112040943, 50.998076077449014 ], [ 11.882510206680706, 51.012054552075881 ], [ 11.860651076386034, 51.022622382017289 ], [ 11.848972202405207, 51.024069321941624 ], [ 11.83998050269804, 51.022829088491619 ], [ 11.759313592248475, 51.019056707700884 ], [ 11.746601190392596, 51.012803860010081 ], [ 11.739469841759785, 51.014715887927878 ], [ 11.732596877344008, 51.017454739044922 ], [ 11.728411086302572, 51.020193590162023 ], [ 11.725930616704602, 51.02267405886073 ], [ 11.724535352724331, 51.025102850715939 ], [ 11.722054884025681, 51.033577786485637 ], [ 11.72065962094473, 51.036264959859977 ], [ 11.714613477929674, 51.042672838080989 ], [ 11.709187453438233, 51.047246201850726 ], [ 11.706241895846802, 51.054558416737507 ], [ 11.697405225770524, 51.064170234069024 ], [ 11.696164992320519, 51.074350491282132 ], [ 11.696009962689629, 51.08393646929261 ], [ 11.693684522722549, 51.088328965909 ], [ 11.689136997374533, 51.091868800904422 ], [ 11.673634066658849, 51.099103502324738 ], [ 11.667742954174003, 51.100653795036578 ], [ 11.663092075139161, 51.101248074239209 ], [ 11.643093295918845, 51.098276679125433 ], [ 11.634876742567599, 51.096157944733363 ], [ 11.627538690158417, 51.095641180795837 ], [ 11.607539910938101, 51.097088120720173 ], [ 11.58133995907184, 51.096209622476067 ], [ 11.535244581672089, 51.100292059830679 ], [ 11.530903760999763, 51.099568590318142 ], [ 11.524082471628731, 51.097191474406998 ], [ 11.515710890445234, 51.092385565741267 ], [ 11.512403599446543, 51.090964464238596 ], [ 11.508682896398511, 51.08987925952016 ], [ 11.504652134088701, 51.089233303474145 ], [ 11.449875116243618, 51.090990301760996 ], [ 11.44429406122191, 51.092178860166257 ], [ 11.433286980809498, 51.095615343273437 ], [ 11.429876336123982, 51.097165635985277 ], [ 11.427395868324652, 51.098793443062902 ], [ 11.425070428357571, 51.101558133501044 ], [ 11.423520134746411, 51.103754381359579 ], [ 11.41979943169838, 51.110989080981255 ], [ 11.416543816643809, 51.122202866968735 ], [ 11.41731896299973, 51.1238565133674 ], [ 11.419024286241779, 51.125484321344345 ], [ 11.422279901296406, 51.12592357001671 ], [ 11.426155633076007, 51.12708629000025 ], [ 11.427550897056221, 51.129127509127215 ], [ 11.427860955418737, 51.133571681687727 ], [ 11.427395868324652, 51.139023546399528 ], [ 11.426465692337842, 51.143596910169265 ], [ 11.425690545082603, 51.146594142805441 ], [ 11.420264519691841, 51.159668280766539 ], [ 11.398818801446509, 51.182767646309799 ], [ 11.388586867390018, 51.18989899404329 ], [ 11.367037794558541, 51.195118312959721 ], [ 11.344506869796191, 51.20439423350706 ], [ 11.336135287713319, 51.211396389132005 ], [ 11.333034702289638, 51.216305649685978 ], [ 11.337220493331074, 51.221369940770103 ], [ 11.340476108385701, 51.224496365514824 ], [ 11.346418897713932, 51.228552965347035 ], [ 11.352413363885603, 51.230051581215491 ], [ 11.39711347820446, 51.234728299571316 ], [ 11.422434930027975, 51.243745835901564 ], [ 11.434217156796308, 51.250592962794997 ], [ 11.443363885235101, 51.259171251352143 ], [ 11.451890496049543, 51.271496080479722 ], [ 11.394477979874864, 51.325136216762985 ], [ 11.367192824189488, 51.357485663532543 ], [ 11.314896274143734, 51.383323880192904 ], [ 11.288954704695868, 51.388853258371171 ], [ 11.196195509115455, 51.397431546028997 ], [ 11.153820834763678, 51.396863105248087 ], [ 10.99910159676125, 51.408748683904605 ], [ 10.972591587431793, 51.418205470705857 ], [ 10.964530063711436, 51.427817288037375 ], [ 10.964530063711436, 51.436343898851817 ], [ 10.965615269329192, 51.443785304947824 ], [ 10.971816440176553, 51.462698880349024 ], [ 10.971506381814038, 51.466574612128625 ], [ 10.970111117833824, 51.4695460072424 ], [ 10.960809359764141, 51.477323310122642 ], [ 10.948820428320118, 51.49267121030806 ], [ 10.946650017983927, 51.496753648561992 ], [ 10.945409783634602, 51.499544176522477 ], [ 10.945254754003656, 51.502334703583699 ], [ 10.947735222702363, 51.518535265390142 ], [ 10.946805046715497, 51.522643541166474 ], [ 10.944789666010251, 51.525537421015144 ], [ 10.941534050955681, 51.52698436093948 ], [ 10.938123407169485, 51.528276272132246 ], [ 10.932542352147834, 51.532823798379582 ], [ 10.926341180401153, 51.539903469269689 ], [ 10.915644159250519, 51.557266751059672 ], [ 10.912078484934113, 51.565483303511598 ], [ 10.911458368209139, 51.57111603537669 ], [ 10.913163689652549, 51.573441474444451 ], [ 10.915799187982145, 51.575069282421396 ], [ 10.919209831768285, 51.576128647818791 ], [ 10.923550653339987, 51.576025295930663 ], [ 10.927426385119588, 51.575353502362191 ], [ 10.934867791215595, 51.572821356820157 ], [ 10.93858849516289, 51.5720720488859 ], [ 10.943394402929357, 51.57225291603919 ], [ 10.947735222702363, 51.573699855963582 ], [ 10.951921013743799, 51.576955471018152 ], [ 10.952076043374689, 51.581244614847094 ], [ 10.950370721031959, 51.586205553143714 ], [ 10.945564813265491, 51.594732163958156 ], [ 10.941844110217517, 51.598530382271292 ], [ 10.937503288645814, 51.600674954185763 ], [ 10.924170770064961, 51.600933335704838 ], [ 10.890942824151978, 51.609589137728506 ], [ 10.878385451027725, 51.617392279929732 ], [ 10.853580763141679, 51.617108059089617 ], [ 10.848619825744322, 51.617857367923193 ], [ 10.8405066260799, 51.619898587050102 ], [ 10.818802523617535, 51.62894196180207 ], [ 10.810430942434039, 51.631267401769151 ], [ 10.803454624331437, 51.632559312961916 ], [ 10.713434278968805, 51.631112372138261 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "DE-BE", "NAME_1": "Berlin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.473782586097457, 52.663555813150253 ], [ 13.476728142789568, 52.661617946810793 ], [ 13.479415317063228, 52.657768053452855 ], [ 13.483549432160544, 52.654150703192386 ], [ 13.499724154646003, 52.645262356272724 ], [ 13.501274448257163, 52.643505357086553 ], [ 13.502359652975599, 52.640869858756957 ], [ 13.502514682606488, 52.638544419689197 ], [ 13.500809360263759, 52.629397691250404 ], [ 13.499259066652598, 52.624281725121477 ], [ 13.499259066652598, 52.619424140511626 ], [ 13.500034213907838, 52.613894762333416 ], [ 13.500499301901243, 52.613067939134055 ], [ 13.503289828962409, 52.610174059285384 ], [ 13.569073927219961, 52.563406887417898 ], [ 13.590933058413896, 52.553381659835679 ], [ 13.603077020388184, 52.550513618408729 ], [ 13.611603631202627, 52.545242620850217 ], [ 13.62648644429396, 52.541134345073942 ], [ 13.647570428232655, 52.539273993999586 ], [ 13.648500604219521, 52.531625882328569 ], [ 13.625091180313689, 52.498087877153807 ], [ 13.623385857970959, 52.490646471057744 ], [ 13.626331413763694, 52.487029119897954 ], [ 13.664520297973354, 52.489767971014999 ], [ 13.677542759091068, 52.485530504029498 ], [ 13.696301303962002, 52.470802721468374 ], [ 13.736195509615072, 52.459795641055962 ], [ 13.742551710992643, 52.456359157948782 ], [ 13.750923293075516, 52.450287177411269 ], [ 13.750923293075516, 52.446876532725753 ], [ 13.749528029095245, 52.444861152020508 ], [ 13.743016798986048, 52.441502184178432 ], [ 13.739761183032158, 52.439486803473187 ], [ 13.738520948682833, 52.436308701885082 ], [ 13.738055860689428, 52.433130602095559 ], [ 13.738520948682833, 52.426645209508763 ], [ 13.736660596709157, 52.422769476829842 ], [ 13.734335157641397, 52.419643052984497 ], [ 13.716041700763867, 52.410392970858879 ], [ 13.712320997715835, 52.407912503059549 ], [ 13.70860029466786, 52.404605211161538 ], [ 13.704517857313249, 52.397887275477331 ], [ 13.704517857313249, 52.391970322772124 ], [ 13.706894972325074, 52.383159492016944 ], [ 13.70668826675012, 52.378043524988641 ], [ 13.705344678713914, 52.374271145097225 ], [ 13.703484327639615, 52.371945706029464 ], [ 13.701417270990248, 52.370007839690004 ], [ 13.700022007009977, 52.369051826180794 ], [ 13.698006626304732, 52.368121650193984 ], [ 13.696146274331056, 52.367553209413074 ], [ 13.673356968049632, 52.362850654434112 ], [ 13.67118655771344, 52.362101344701273 ], [ 13.667000766672004, 52.359646715323606 ], [ 13.653978305554347, 52.342335110377007 ], [ 13.644469841909654, 52.342025051115172 ], [ 13.643539665922845, 52.343523667882948 ], [ 13.642609490835298, 52.344789741553313 ], [ 13.642609490835298, 52.347476914927654 ], [ 13.641214226855084, 52.360731920042042 ], [ 13.637338495075483, 52.375976467440012 ], [ 13.632377556778806, 52.381867580824178 ], [ 13.62648644429396, 52.384399726366269 ], [ 13.615014275888086, 52.383469550379402 ], [ 13.60989830885984, 52.383779608741918 ], [ 13.584731885767894, 52.388895575770164 ], [ 13.565818312165334, 52.395665188297755 ], [ 13.528094516848455, 52.404915270423373 ], [ 13.519722934765639, 52.404863593579933 ], [ 13.514451939005767, 52.403675035174729 ], [ 13.511971470307117, 52.401659654469427 ], [ 13.509180942346575, 52.399902656182633 ], [ 13.506080356922894, 52.398791612143157 ], [ 13.503134800230839, 52.398145656996462 ], [ 13.494918246879593, 52.397938951421452 ], [ 13.484376255359905, 52.398662420933931 ], [ 13.479518669850734, 52.400471096064223 ], [ 13.475797966802702, 52.403649196753008 ], [ 13.473317498104052, 52.407524929431929 ], [ 13.46804650234418, 52.41370026275689 ], [ 13.463085564946823, 52.415896511514745 ], [ 13.458124626650203, 52.416749173135827 ], [ 13.44897789911073, 52.415896511514745 ], [ 13.433629998025992, 52.412304998776619 ], [ 13.430064324608907, 52.411090602849015 ], [ 13.427118767916795, 52.40946279577139 ], [ 13.424948357580604, 52.407344062278639 ], [ 13.424018181593794, 52.404450182429969 ], [ 13.424121535280619, 52.401607978525362 ], [ 13.424741652005594, 52.398869127408261 ], [ 13.426912062341785, 52.393701484435951 ], [ 13.427532179066816, 52.390704250900455 ], [ 13.427532179066816, 52.388120429414244 ], [ 13.42567182799246, 52.381092434468258 ], [ 13.394045850735381, 52.381221624778107 ], [ 13.375752393857852, 52.386570135803083 ], [ 13.371514926872351, 52.389515693394515 ], [ 13.365520460700679, 52.395458481823425 ], [ 13.354616733075773, 52.401918036887878 ], [ 13.3493457373159, 52.405897122354304 ], [ 13.345780063898815, 52.407395738222704 ], [ 13.336633334560702, 52.405948798298368 ], [ 13.312707146717457, 52.400496935385206 ], [ 13.309193149244436, 52.401091213688517 ], [ 13.304800652627989, 52.402279772093777 ], [ 13.299219597606339, 52.410289618970694 ], [ 13.295963982551712, 52.414010322018726 ], [ 13.294258661108302, 52.415095526737161 ], [ 13.292398309134626, 52.41483714521803 ], [ 13.291158074785301, 52.414113674806231 ], [ 13.285732049394539, 52.412020778835824 ], [ 13.258240187234833, 52.405509548726684 ], [ 13.252194045119097, 52.404760239893108 ], [ 13.24816328280923, 52.405070299154943 ], [ 13.239636671994788, 52.411064765326614 ], [ 13.2267692396087, 52.415922349936466 ], [ 13.219637891875209, 52.417110908341726 ], [ 13.214056837752821, 52.417059231498285 ], [ 13.172612339387911, 52.405173651942448 ], [ 13.16951175306491, 52.403675035174729 ], [ 13.166566196372855, 52.401556300782602 ], [ 13.163310581318285, 52.398145656996462 ], [ 13.159279819008418, 52.397112128222091 ], [ 13.156489291947253, 52.396853745803696 ], [ 13.121711053322429, 52.401142890531958 ], [ 13.117990350274454, 52.402021388776063 ], [ 13.111944207259342, 52.403985094436507 ], [ 13.094890984731137, 52.41199494131348 ], [ 13.092720575294322, 52.413261013185206 ], [ 13.092100456770652, 52.41370026275689 ], [ 13.091790399307456, 52.414217026694416 ], [ 13.091635369676567, 52.415250556368051 ], [ 13.092100456770652, 52.416749173135827 ], [ 13.093650750381812, 52.418712876997631 ], [ 13.103107537183064, 52.425844224731179 ], [ 13.104192742800819, 52.426826077561429 ], [ 13.105432977150144, 52.428324693429829 ], [ 13.105277948418575, 52.42990082546271 ], [ 13.10574303641198, 52.432277940474535 ], [ 13.10744835785539, 52.434525865176511 ], [ 13.10977379692315, 52.436541245881756 ], [ 13.112409295252746, 52.438298245067926 ], [ 13.116750115925072, 52.440468655404118 ], [ 13.116905144656698, 52.441502184178432 ], [ 13.111789177628452, 52.447367459140878 ], [ 13.11054894417839, 52.449873766261305 ], [ 13.109153680198176, 52.455403144439515 ], [ 13.109153680198176, 52.458581245128357 ], [ 13.11054894417839, 52.465014959972393 ], [ 13.112874383246151, 52.47111277893157 ], [ 13.114424675957991, 52.47379995410455 ], [ 13.116595086294183, 52.475970364440741 ], [ 13.119540642986294, 52.477701524305871 ], [ 13.126516961088896, 52.480001125851231 ], [ 13.129617547411897, 52.481603095406513 ], [ 13.156799351209088, 52.501033433845862 ], [ 13.156489291947253, 52.504185696112984 ], [ 13.156644320678822, 52.506950384752429 ], [ 13.140934686186824, 52.524287828120748 ], [ 13.143311802097969, 52.551934719012024 ], [ 13.147807650602601, 52.566533312162619 ], [ 13.148427769126215, 52.575705878123756 ], [ 13.147445916295965, 52.580976873883571 ], [ 13.14486209480981, 52.585162664925008 ], [ 13.14548221243416, 52.588004868829614 ], [ 13.146825798671671, 52.590511175949985 ], [ 13.14889285711962, 52.592862454338785 ], [ 13.152303500905816, 52.597926744523591 ], [ 13.154783969604523, 52.599554552500592 ], [ 13.157419467934062, 52.600303860434792 ], [ 13.164860874030126, 52.598185126042722 ], [ 13.207545606744361, 52.586764635379609 ], [ 13.216847364814043, 52.587436428048704 ], [ 13.216847364814043, 52.58945180875395 ], [ 13.216072217558803, 52.591441351936794 ], [ 13.214987012840368, 52.593017483070355 ], [ 13.211886427416687, 52.596221422180861 ], [ 13.210336134704846, 52.598391832517052 ], [ 13.209250929087091, 52.600872301215702 ], [ 13.209250929087091, 52.603817857008494 ], [ 13.210026076342331, 52.606763413700548 ], [ 13.211266309792336, 52.609605618504474 ], [ 13.220723096593645, 52.625987047464264 ], [ 13.22351362455413, 52.627253120235309 ], [ 13.252659133112502, 52.629888618564848 ], [ 13.261547479132844, 52.633066718354314 ], [ 13.272554558645936, 52.639164537313547 ], [ 13.276740349687373, 52.643918769135837 ], [ 13.279995964741943, 52.648414619439109 ], [ 13.282476434339969, 52.653969835139776 ], [ 13.285887079025485, 52.656062731110126 ], [ 13.289142694080056, 52.657122097406841 ], [ 13.300304803224094, 52.656941230253551 ], [ 13.302785271922744, 52.656191922319351 ], [ 13.301855095935935, 52.65479665833908 ], [ 13.300304803224094, 52.653220527205519 ], [ 13.299684685599743, 52.651308499287779 ], [ 13.302630243191174, 52.647148545768744 ], [ 13.303715447909553, 52.644538885860868 ], [ 13.303095330285259, 52.635288805533946 ], [ 13.304490594265474, 52.633066718354314 ], [ 13.30697106296418, 52.631154690436574 ], [ 13.310226678018751, 52.629656074568175 ], [ 13.326556431034476, 52.625211900209024 ], [ 13.364228550407233, 52.623609931553062 ], [ 13.374202101146011, 52.624901841846508 ], [ 13.379783156167719, 52.626271267405059 ], [ 13.382108595235479, 52.628312486532025 ], [ 13.383348829584804, 52.630844632074059 ], [ 13.388774854975566, 52.636890774189851 ], [ 13.412029250149772, 52.648724676902305 ], [ 13.431304558958232, 52.640947374022062 ], [ 13.434095086019397, 52.640947374022062 ], [ 13.438435906691723, 52.641593329168757 ], [ 13.440141229034452, 52.644383857129299 ], [ 13.442466668102213, 52.647277736977969 ], [ 13.445102166431809, 52.649706528833235 ], [ 13.468511590337584, 52.663323269153523 ], [ 13.473782586097457, 52.663555813150253 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/iceland.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/iceland.geojson new file mode 100644 index 000000000000..356438b266b8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/iceland.geojson @@ -0,0 +1,15 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "IS-7", "NAME_1": "Austurland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.614613410999937, 65.986273505000042 ], [ -14.604725714999915, 65.963934637000079 ], [ -14.603342251999948, 65.953029690000051 ], [ -14.606353318999936, 65.948919989000046 ], [ -14.619130011999914, 65.943548895000049 ], [ -14.623768683999913, 65.939398505000042 ], [ -14.624379035999937, 65.934800523000035 ], [ -14.622873501999948, 65.923895575000074 ], [ -14.623768683999913, 65.919582424000055 ], [ -14.646839972999942, 65.894964911000045 ], [ -14.650461391999954, 65.888169664000031 ], [ -14.662017381999931, 65.883937893000052 ], [ -14.72679602799991, 65.850653387000079 ], [ -14.800526495999918, 65.827948309000078 ], [ -14.822987433999913, 65.81586334800005 ], [ -14.821156378999945, 65.798407294000071 ], [ -14.840809699999909, 65.784125067000048 ], [ -14.89126542899993, 65.761216539000031 ], [ -14.861439581999946, 65.76203034100007 ], [ -14.834868943999936, 65.770900783000059 ], [ -14.788197394999941, 65.796047268000052 ], [ -14.803618943999936, 65.775580145000049 ], [ -14.83234615799995, 65.753159898000035 ], [ -14.844105597999942, 65.735174872000073 ], [ -14.808705206999946, 65.727728583000044 ], [ -14.772816535999937, 65.732001044000071 ], [ -14.694406704999949, 65.750799872000073 ], [ -14.479725714999915, 65.774888414000031 ], [ -14.402455206999946, 65.79242584800005 ], [ -14.36156165299991, 65.796779690000051 ], [ -14.329497850999928, 65.782375393000052 ], [ -14.372873501999948, 65.740383205000057 ], [ -14.397613084999932, 65.730047919000071 ], [ -14.395130988999938, 65.721502997000073 ], [ -14.387806769999941, 65.713120835000041 ], [ -14.383615688999953, 65.709702867000033 ], [ -14.378977016999954, 65.707180080000057 ], [ -14.356271938999953, 65.69985586100006 ], [ -14.292958136999914, 65.682196356000077 ], [ -14.274322068999936, 65.67251211100006 ], [ -14.328684048999946, 65.665594794000071 ], [ -14.357818162999934, 65.656073309000078 ], [ -14.382232225999928, 65.630275783000059 ], [ -14.43390865799995, 65.604803778000075 ], [ -14.454213019999941, 65.58344147300005 ], [ -14.530181443999936, 65.545477606000077 ], [ -14.545399542999917, 65.532904364000046 ], [ -14.557036912999934, 65.51788971600007 ], [ -14.562367316999939, 65.501166083000044 ], [ -14.549631313999953, 65.509019273000035 ], [ -14.528309699999909, 65.530829169000071 ], [ -14.517648891999954, 65.535345770000049 ], [ -14.50617428299995, 65.538031317000048 ], [ -14.472645636999914, 65.552313544000071 ], [ -14.462310350999928, 65.55890534100007 ], [ -14.444081183999913, 65.575140692000048 ], [ -14.320220506999931, 65.652411200000074 ], [ -14.298491990999935, 65.65884023600006 ], [ -14.27171790299991, 65.655951239000046 ], [ -14.192372199999909, 65.631537177000041 ], [ -14.208078579999949, 65.641058661000045 ], [ -14.236480272999927, 65.653957424000055 ], [ -14.247629360999952, 65.665025132000039 ], [ -14.027902798999946, 65.610419012000079 ], [ -13.999908006999931, 65.608587958000044 ], [ -13.890044725999928, 65.620184637000079 ], [ -13.87140865799995, 65.619045315000051 ], [ -13.85968990799995, 65.614162502000056 ], [ -13.852284308999913, 65.60219961100006 ], [ -13.850941535999937, 65.591986395000049 ], [ -13.856516079999949, 65.585028387000079 ], [ -13.869618292999917, 65.583156643000052 ], [ -13.869618292999917, 65.576890367000033 ], [ -13.83820553299995, 65.577378648000035 ], [ -13.824370897999927, 65.575384833000044 ], [ -13.815012173999946, 65.569403387000079 ], [ -13.813954230999911, 65.562445380000042 ], [ -13.816477016999954, 65.553290106000077 ], [ -13.821278449999909, 65.541489976000037 ], [ -13.814442511999914, 65.534165757000039 ], [ -13.805775519999941, 65.528631903000075 ], [ -13.787668423999946, 65.521673895000049 ], [ -13.741118943999936, 65.550360419000071 ], [ -13.715443488999938, 65.558294989000046 ], [ -13.685292120999918, 65.555161851000037 ], [ -13.680083787999934, 65.550970770000049 ], [ -13.678863084999932, 65.544582424000055 ], [ -13.679066535999937, 65.538560289000031 ], [ -13.677845831999946, 65.535345770000049 ], [ -13.671620245999918, 65.534572658000059 ], [ -13.657215949999909, 65.536444403000075 ], [ -13.651193813999953, 65.535345770000049 ], [ -13.615956183999913, 65.518866278000075 ], [ -13.60960852799991, 65.514227606000077 ], [ -13.607980923999946, 65.492132880000042 ], [ -13.622222459999932, 65.478257554000038 ], [ -13.640614386999914, 65.468695380000042 ], [ -13.651193813999953, 65.45962148600006 ], [ -13.64867102799991, 65.453802802000041 ], [ -13.637196417999917, 65.434759833000044 ], [ -13.636830206999946, 65.42609284100007 ], [ -13.643462693999936, 65.42218659100007 ], [ -13.677845831999946, 65.411810614000046 ], [ -13.667632615999935, 65.40570709800005 ], [ -13.667836066999939, 65.398098049000055 ], [ -13.671376105999911, 65.388861395000049 ], [ -13.670969204999949, 65.377630927000041 ], [ -13.704741990999935, 65.367336330000057 ], [ -13.795806443999936, 65.373114325000074 ], [ -13.835519985999952, 65.363999742000033 ], [ -13.81086178299995, 65.355047919000071 ], [ -13.73306230399993, 65.343491929000038 ], [ -13.729847785999937, 65.327093817000048 ], [ -13.752674933999913, 65.31586334800005 ], [ -13.784535285999937, 65.309800523000035 ], [ -13.834339972999942, 65.309637762000079 ], [ -13.855458136999914, 65.306830145000049 ], [ -13.897531704999949, 65.295721747000073 ], [ -13.981027798999946, 65.289129950000074 ], [ -14.006743943999936, 65.282049872000073 ], [ -13.991118943999936, 65.272691148000035 ], [ -13.832508917999917, 65.297593492000033 ], [ -13.784250454999949, 65.295721747000073 ], [ -13.687652147999927, 65.306382554000038 ], [ -13.657378709999932, 65.302557684000078 ], [ -13.607818162999934, 65.288641669000071 ], [ -13.58226477799991, 65.276922919000071 ], [ -13.572987433999913, 65.266546942000048 ], [ -13.567982550999943, 65.260972398000035 ], [ -13.591786261999914, 65.253078518000052 ], [ -13.632435675999943, 65.225897528000075 ], [ -13.654204881999931, 65.219956773000035 ], [ -13.780873175999943, 65.206366278000075 ], [ -13.914621548999946, 65.206366278000075 ], [ -13.972645636999914, 65.200140692000048 ], [ -14.034087693999936, 65.200140692000048 ], [ -14.003325975999928, 65.18976471600007 ], [ -13.88695227799991, 65.200140692000048 ], [ -13.73306230399993, 65.192694403000075 ], [ -13.664173956999946, 65.200140692000048 ], [ -13.626616990999935, 65.200140692000048 ], [ -13.616607225999928, 65.196763414000031 ], [ -13.62132727799991, 65.189439195000034 ], [ -13.636830206999946, 65.178412177000041 ], [ -13.639475063999953, 65.172105210000041 ], [ -13.638579881999931, 65.167547919000071 ], [ -13.638579881999931, 65.163641669000071 ], [ -13.643666144999941, 65.159165757000039 ], [ -13.681548631999931, 65.151760158000059 ], [ -13.715240037999934, 65.150336005000042 ], [ -13.746693488999938, 65.144924221000053 ], [ -13.746693488999938, 65.137437242000033 ], [ -13.669300910999937, 65.144354559000078 ], [ -13.651193813999953, 65.137437242000033 ], [ -13.651193813999953, 65.131293036000045 ], [ -13.660755988999938, 65.130194403000075 ], [ -13.669545050999943, 65.127386786000045 ], [ -13.677723761999914, 65.122992255000042 ], [ -13.685292120999918, 65.117010809000078 ], [ -13.654204881999931, 65.117010809000078 ], [ -13.644398566999939, 65.114935614000046 ], [ -13.636626756999931, 65.110419012000079 ], [ -13.630848761999914, 65.105943101000037 ], [ -13.626616990999935, 65.103949286000045 ], [ -13.616607225999928, 65.107001044000071 ], [ -13.600575324999909, 65.120672919000071 ], [ -13.592193162999934, 65.123765367000033 ], [ -13.59015865799995, 65.127671617000033 ], [ -13.561105923999946, 65.151760158000059 ], [ -13.52017167899993, 65.17218659100007 ], [ -13.517404751999948, 65.157538153000075 ], [ -13.51781165299991, 65.136297919000071 ], [ -13.521066860999952, 65.115912177000041 ], [ -13.526966925999943, 65.103949286000045 ], [ -13.526966925999943, 65.096502997000073 ], [ -13.508371548999946, 65.090765692000048 ], [ -13.502919074999909, 65.081284898000035 ], [ -13.509592251999948, 65.069159247000073 ], [ -13.526966925999943, 65.055487372000073 ], [ -13.547230597999942, 65.047593492000033 ], [ -13.589588995999918, 65.042303778000075 ], [ -13.60960852799991, 65.035060940000051 ], [ -13.591786261999914, 65.021429755000042 ], [ -13.58267167899993, 65.01203034100007 ], [ -13.585316535999937, 65.007717190000051 ], [ -13.600900844999956, 65.004461981000077 ], [ -13.632150844999956, 64.989935614000046 ], [ -13.647368943999936, 64.98663971600007 ], [ -13.719471808999913, 64.994086005000042 ], [ -13.781605597999942, 64.989325262000079 ], [ -13.801991339999915, 64.994086005000042 ], [ -13.811512824999909, 65.003404039000031 ], [ -13.819813605999911, 65.017238674000055 ], [ -13.83031165299991, 65.02960846600007 ], [ -13.846058722999942, 65.035060940000051 ], [ -13.862294074999909, 65.037298895000049 ], [ -13.895415818999936, 65.047064520000049 ], [ -13.947865363999938, 65.054510809000078 ], [ -14.003325975999928, 65.077622789000031 ], [ -14.034087693999936, 65.082831122000073 ], [ -14.027740037999934, 65.071844794000071 ], [ -14.017323370999918, 65.063788153000075 ], [ -14.005116339999915, 65.058417059000078 ], [ -13.993763800999943, 65.055487372000073 ], [ -14.029774542999917, 65.038397528000075 ], [ -14.233387824999909, 65.035060940000051 ], [ -14.233387824999909, 65.027573960000041 ], [ -13.918039516999954, 65.014593817000048 ], [ -13.907826300999943, 65.010687567000048 ], [ -13.893950975999928, 65.003078518000052 ], [ -13.881703253999945, 64.993394273000035 ], [ -13.876454230999911, 64.983547268000052 ], [ -13.867909308999913, 64.978216864000046 ], [ -13.821278449999909, 64.959947007000039 ], [ -13.718169725999928, 64.939601955000057 ], [ -13.698312954999949, 64.925197658000059 ], [ -13.739898240999935, 64.911200262000079 ], [ -13.788929816999939, 64.91437409100007 ], [ -13.876454230999911, 64.932603257000039 ], [ -13.976063605999911, 64.925197658000059 ], [ -14.037464972999942, 64.936468817000048 ], [ -14.054595506999931, 64.932603257000039 ], [ -13.995513475999928, 64.914496161000045 ], [ -13.852284308999913, 64.900295315000051 ], [ -13.787668423999946, 64.877386786000045 ], [ -13.779693162999934, 64.871527411000045 ], [ -13.77017167899993, 64.862372137000079 ], [ -13.766916469999956, 64.85382721600007 ], [ -13.777699347999942, 64.850083726000037 ], [ -13.794016079999949, 64.846869208000044 ], [ -13.818918423999946, 64.832749742000033 ], [ -13.832102016999954, 64.829575914000031 ], [ -13.936594204999949, 64.847072658000059 ], [ -13.966420050999943, 64.835842190000051 ], [ -13.858021613999938, 64.816839911000045 ], [ -13.839833136999914, 64.809312242000033 ], [ -13.839222785999937, 64.798570054000038 ], [ -13.867787238999938, 64.794745184000078 ], [ -13.981922980999911, 64.796779690000051 ], [ -14.013661261999914, 64.802313544000071 ], [ -14.019886847999942, 64.797552802000041 ], [ -14.028146938999953, 64.794094143000052 ], [ -14.048451300999943, 64.788641669000071 ], [ -14.048451300999943, 64.781195380000042 ], [ -14.017689581999946, 64.764837958000044 ], [ -14.001454230999911, 64.753810940000051 ], [ -13.986317511999914, 64.740220445000034 ], [ -14.00259355399993, 64.737616278000075 ], [ -14.048451300999943, 64.719712632000039 ], [ -14.270619269999941, 64.699286200000074 ], [ -14.306385870999918, 64.704169012000079 ], [ -14.326242641999954, 64.70962148600006 ], [ -14.339466925999943, 64.716294664000031 ], [ -14.368072068999936, 64.75531647300005 ], [ -14.393625454999949, 64.766546942000048 ], [ -14.42056230399993, 64.789618231000077 ], [ -14.435373501999948, 64.794867255000042 ], [ -14.51390540299991, 64.802313544000071 ], [ -14.504017706999946, 64.796576239000046 ], [ -14.493275519999941, 64.794582424000055 ], [ -14.469553188999953, 64.794867255000042 ], [ -14.455799933999913, 64.790228583000044 ], [ -14.457142706999946, 64.779852606000077 ], [ -14.463775193999936, 64.768540757000039 ], [ -14.466135219999956, 64.761297919000071 ], [ -14.450672980999911, 64.752875067000048 ], [ -14.400135870999918, 64.741034247000073 ], [ -14.383615688999953, 64.740220445000034 ], [ -14.383615688999953, 64.733384507000039 ], [ -14.385243292999917, 64.720851955000057 ], [ -14.371449347999942, 64.704982815000051 ], [ -14.352650519999941, 64.691351630000042 ], [ -14.339466925999943, 64.685614325000074 ], [ -14.288685675999943, 64.678127346000053 ], [ -14.27017167899993, 64.669501044000071 ], [ -14.281158006999931, 64.658270575000074 ], [ -14.274322068999936, 64.651434637000079 ], [ -14.441965298999946, 64.675726630000042 ], [ -14.493478969999956, 64.658270575000074 ], [ -14.477162238999938, 64.649725653000075 ], [ -14.437082485999952, 64.640773830000057 ], [ -14.417713995999918, 64.631008205000057 ], [ -14.408070441999939, 64.61977773600006 ], [ -14.409250454999949, 64.610256252000056 ], [ -14.419829881999931, 64.602484442000048 ], [ -14.438832160999937, 64.596869208000044 ], [ -14.572173631999931, 64.596869208000044 ], [ -14.584380662999934, 64.590318101000037 ], [ -14.572092251999948, 64.576971747000073 ], [ -14.552235480999911, 64.565741278000075 ], [ -14.541818813999953, 64.56586334800005 ], [ -14.531605597999942, 64.555609442000048 ], [ -14.50999915299991, 64.549017645000049 ], [ -14.49046790299991, 64.548407294000071 ], [ -14.48656165299991, 64.555853583000044 ], [ -14.445383266999954, 64.560695705000057 ], [ -14.383615688999953, 64.600734768000052 ], [ -14.352528449999909, 64.610500393000052 ], [ -14.346180792999917, 64.605617580000057 ], [ -14.36156165299991, 64.594468492000033 ], [ -14.453236456999946, 64.54633209800005 ], [ -14.466135219999956, 64.534735419000071 ], [ -14.469593878999945, 64.525458075000074 ], [ -14.472564256999931, 64.504828192000048 ], [ -14.476673956999946, 64.496893622000073 ], [ -14.509348110999952, 64.471909898000035 ], [ -14.51390540299991, 64.462795315000051 ], [ -14.512806769999941, 64.456610419000071 ], [ -14.511667446999923, 64.453111070000034 ], [ -14.509388800999943, 64.446112372000073 ], [ -14.510487433999913, 64.442328192000048 ], [ -14.515492316999939, 64.439195054000038 ], [ -14.521066860999952, 64.437445380000042 ], [ -14.52562415299991, 64.434515692000048 ], [ -14.52757727799991, 64.428290106000077 ], [ -14.529855923999946, 64.423976955000057 ], [ -14.540882941999939, 64.408433335000041 ], [ -14.544911261999914, 64.405096747000073 ], [ -14.64875240799995, 64.400091864000046 ], [ -14.720692511999914, 64.388902085000041 ], [ -14.746693488999938, 64.383978583000044 ], [ -14.70335852799991, 64.398871161000045 ], [ -14.61392167899993, 64.410060940000051 ], [ -14.568511522999927, 64.418117580000057 ], [ -14.59406490799995, 64.425604559000078 ], [ -14.705230272999927, 64.433294989000046 ], [ -14.71312415299991, 64.431708075000074 ], [ -14.714426235999952, 64.427476304000038 ], [ -14.712513800999943, 64.414129950000074 ], [ -14.716297980999911, 64.411281643000052 ], [ -14.723622199999909, 64.409125067000048 ], [ -14.744984503999945, 64.399725653000075 ], [ -14.757191535999937, 64.397650458000044 ], [ -14.761789516999954, 64.394964911000045 ], [ -14.782053188999953, 64.377752997000073 ], [ -14.79360917899993, 64.372544664000031 ], [ -14.848947719999956, 64.357123114000046 ], [ -14.871652798999946, 64.346747137000079 ], [ -14.892079230999911, 64.334662177000041 ], [ -14.904896613999938, 64.322455145000049 ], [ -14.899484829999949, 64.333929755000042 ], [ -14.896107550999943, 64.338771877000056 ], [ -14.89126542899993, 64.342962958000044 ], [ -14.89126542899993, 64.349798895000049 ], [ -14.898060675999943, 64.349798895000049 ], [ -14.904896613999938, 64.339829820000034 ], [ -14.920318162999934, 64.331122137000079 ], [ -14.937245245999918, 64.324896552000041 ], [ -14.949045376999948, 64.322455145000049 ], [ -14.952748175999943, 64.319240627000056 ], [ -14.949818488999938, 64.31195709800005 ], [ -14.942209438999953, 64.304673570000034 ], [ -14.93195553299995, 64.30141836100006 ], [ -14.910308397999927, 64.302476304000038 ], [ -14.900746222999942, 64.304632880000042 ], [ -14.89126542899993, 64.308823960000041 ], [ -14.886382615999935, 64.294745184000078 ], [ -14.87759355399993, 64.281480210000041 ], [ -14.899973110999952, 64.281642971000053 ], [ -14.929432745999918, 64.264837958000044 ], [ -14.949045376999948, 64.260443427000041 ], [ -14.995472785999937, 64.262600002000056 ], [ -15.01585852799991, 64.266750393000052 ], [ -15.035267706999946, 64.274115302000041 ], [ -15.066883917999917, 64.290838934000078 ], [ -15.086048956999946, 64.29828522300005 ], [ -15.106678839999915, 64.30141836100006 ], [ -15.115630662999934, 64.298570054000038 ], [ -15.134388800999943, 64.28546784100007 ], [ -15.143950975999928, 64.281480210000041 ], [ -15.156117316999939, 64.282619533000059 ], [ -15.167551235999952, 64.286525783000059 ], [ -15.179269985999952, 64.287909247000073 ], [ -15.192290818999936, 64.281480210000041 ], [ -15.179351365999935, 64.274115302000041 ], [ -15.190052863999938, 64.269191799000055 ], [ -15.201568162999934, 64.267482815000051 ], [ -15.226470506999931, 64.26788971600007 ], [ -15.206613735999952, 64.29523346600007 ], [ -15.206613735999952, 64.30141836100006 ], [ -15.238840298999946, 64.29751211100006 ], [ -15.254505988999938, 64.298041083000044 ], [ -15.261219855999911, 64.305121161000045 ], [ -15.265777147999927, 64.320542710000041 ], [ -15.276844855999911, 64.330877997000073 ], [ -15.290272589999915, 64.334377346000053 ], [ -15.302154100999928, 64.329331773000035 ], [ -15.302154100999928, 64.322455145000049 ], [ -15.293934699999909, 64.317613023000035 ], [ -15.288197394999941, 64.312567450000074 ], [ -15.284169074999909, 64.305609442000048 ], [ -15.281117316999939, 64.29523346600007 ], [ -15.294667120999918, 64.299261786000045 ], [ -15.323150193999936, 64.303900458000044 ], [ -15.336293097999942, 64.308823960000041 ], [ -15.336293097999942, 64.315008856000077 ], [ -15.326568162999934, 64.329006252000056 ], [ -15.341297980999911, 64.350043036000045 ], [ -15.366444464999915, 64.369330145000049 ], [ -15.387847459999932, 64.377752997000073 ], [ -15.40843665299991, 64.387640692000048 ], [ -15.447987433999913, 64.394476630000042 ], [ -15.473500128999945, 64.397650458000044 ], [ -15.456450975999928, 64.391546942000048 ], [ -15.42210852799991, 64.385199286000045 ], [ -15.401478644999941, 64.380804755000042 ], [ -15.390777147999927, 64.369696356000077 ], [ -15.372466600999928, 64.345200914000031 ], [ -15.363636847999942, 64.336818752000056 ], [ -15.372141079999949, 64.331366278000075 ], [ -15.380686001999948, 64.329779364000046 ], [ -15.389271613999938, 64.331732489000046 ], [ -15.397816535999937, 64.336818752000056 ], [ -15.397816535999937, 64.329331773000035 ], [ -15.377552863999938, 64.321275132000039 ], [ -15.374012824999909, 64.305894273000035 ], [ -15.382313605999911, 64.288397528000075 ], [ -15.397816535999937, 64.274115302000041 ], [ -15.422271287999934, 64.268500067000048 ], [ -15.478016730999911, 64.275132554000038 ], [ -15.500884568999936, 64.26788971600007 ], [ -15.486805792999917, 64.262518622000073 ], [ -15.471547003999945, 64.260443427000041 ], [ -15.438710089999915, 64.260443427000041 ], [ -15.464019334999932, 64.251288153000075 ], [ -15.528065558999913, 64.241156317000048 ], [ -15.585519985999952, 64.238755601000037 ], [ -15.645904100999928, 64.22882721600007 ], [ -15.67210852799991, 64.219427802000041 ], [ -15.676869269999941, 64.224432684000078 ], [ -15.683216925999943, 64.228949286000045 ], [ -15.685699022999927, 64.233791408000059 ], [ -15.713612433999913, 64.216620184000078 ], [ -15.802398240999935, 64.185370184000078 ], [ -15.719105597999942, 64.197699286000045 ], [ -15.69945227799991, 64.191555080000057 ], [ -15.733021613999938, 64.179266669000071 ], [ -15.992054816999939, 64.144476630000042 ], [ -16.028309699999909, 64.130072333000044 ], [ -15.981190558999913, 64.130072333000044 ], [ -15.981190558999913, 64.123928127000056 ], [ -16.044789191999939, 64.099798895000049 ], [ -16.066273566999939, 64.096584377000056 ], [ -16.075998501999948, 64.093939520000049 ], [ -16.110340949999909, 64.076117255000042 ], [ -16.134022589999915, 64.068426825000074 ], [ -16.143625454999949, 64.063544012000079 ], [ -16.151275193999936, 64.05499909100007 ], [ -16.161732550999943, 64.064642645000049 ], [ -16.171701626999948, 64.066351630000042 ], [ -16.181792772999927, 64.062323309000078 ], [ -16.192860480999911, 64.05499909100007 ], [ -16.192860480999911, 64.048163153000075 ], [ -16.179269985999952, 64.048163153000075 ], [ -16.179269985999952, 64.041937567000048 ], [ -16.239328579999949, 64.023504950000074 ], [ -16.261138475999928, 64.020819403000075 ], [ -16.254872199999909, 64.035101630000042 ], [ -16.30890865799995, 64.017075914000031 ], [ -16.334787563999953, 64.003241278000075 ], [ -16.350493943999936, 63.986721096000053 ], [ -16.334095831999946, 63.986314195000034 ], [ -16.321034308999913, 63.99164459800005 ], [ -16.311024542999917, 63.997259833000044 ], [ -16.336903449999909, 63.97406647300005 ], [ -16.350493943999936, 63.965562242000033 ], [ -16.422352667999917, 63.93813711100006 ], [ -16.470204230999911, 63.904771226000037 ], [ -16.501332160999937, 63.897365627000056 ], [ -16.488880988999938, 63.900376695000034 ], [ -16.476307745999918, 63.905218817000048 ], [ -16.465972459999932, 63.912909247000073 ], [ -16.460357225999928, 63.924627997000073 ], [ -16.611195441999939, 63.869370835000041 ], [ -16.745350714999915, 63.852118231000077 ], [ -16.765370245999918, 63.854722398000035 ], [ -16.782541469999956, 63.863185940000051 ], [ -16.774891730999911, 63.857123114000046 ], [ -16.766590949999909, 63.852850653000075 ], [ -16.757639126999948, 63.850287177000041 ], [ -16.747792120999918, 63.849554755000042 ], [ -16.766346808999913, 63.844549872000073 ], [ -16.782541469999956, 63.842718817000048 ], [ -16.779204881999931, 63.832180080000057 ], [ -16.779774542999917, 63.818304755000042 ], [ -16.785064256999931, 63.806463934000078 ], [ -16.796213344999956, 63.801703192000048 ], [ -16.80109615799995, 63.804877020000049 ], [ -16.80296790299991, 63.811712958000044 ], [ -16.80296790299991, 63.825384833000044 ], [ -16.805531378999945, 63.828558661000045 ], [ -16.823475714999915, 63.835882880000042 ], [ -16.861073370999918, 63.858791408000059 ], [ -16.87132727799991, 63.863185940000051 ], [ -16.88735917899993, 63.865668036000045 ], [ -16.895497199999909, 63.862779039000031 ], [ -16.898264126999948, 63.854071356000077 ], [ -16.898548956999946, 63.83930084800005 ], [ -16.895253058999913, 63.820746161000045 ], [ -16.895822719999956, 63.807766018000052 ], [ -16.901966925999943, 63.801703192000048 ], [ -16.915353969999956, 63.805161851000037 ], [ -16.917469855999911, 63.814032294000071 ], [ -16.912220831999946, 63.83930084800005 ], [ -16.915516730999911, 63.848334052000041 ], [ -16.922759568999936, 63.86001211100006 ], [ -16.930043097999942, 63.866400458000044 ], [ -16.933338995999918, 63.859808661000045 ], [ -16.932972785999937, 63.833075262000079 ], [ -16.934681769999941, 63.82062409100007 ], [ -16.939564581999946, 63.809149481000077 ], [ -16.926136847999942, 63.800034898000035 ], [ -16.930897589999915, 63.793198960000041 ], [ -16.946848110999952, 63.788885809000078 ], [ -16.966908331999946, 63.787502346000053 ], [ -16.955637173999946, 63.810126044000071 ], [ -16.954904751999948, 63.820013739000046 ], [ -16.960682745999918, 63.82843659100007 ], [ -16.956532355999911, 63.837144273000035 ], [ -16.953846808999913, 63.841050523000035 ], [ -16.950428839999915, 63.842718817000048 ], [ -16.941273566999939, 63.845526434000078 ], [ -16.940744594999956, 63.851263739000046 ], [ -16.944162563999953, 63.856187242000033 ], [ -16.947010870999918, 63.856390692000048 ], [ -16.941395636999914, 63.883205471000053 ], [ -16.940297003999945, 63.897772528000075 ], [ -16.943267381999931, 63.904201565000051 ], [ -16.946685350999928, 63.908189195000034 ], [ -16.957508917999917, 63.915838934000078 ], [ -16.96898352799991, 63.920314846000053 ], [ -16.974354620999918, 63.914740302000041 ], [ -16.977040167999917, 63.888820705000057 ], [ -16.975331183999913, 63.878241278000075 ], [ -16.966908331999946, 63.869370835000041 ], [ -16.983225063999953, 63.862860419000071 ], [ -17.001942511999914, 63.863470770000049 ], [ -17.018544074999909, 63.862005927000041 ], [ -17.028920050999943, 63.849554755000042 ], [ -17.016713019999941, 63.83930084800005 ], [ -17.011463995999918, 63.827785549000055 ], [ -17.004750128999945, 63.817084052000041 ], [ -16.987945115999935, 63.809149481000077 ], [ -17.006214972999942, 63.797837632000039 ], [ -17.04328365799995, 63.794012762000079 ], [ -17.114857550999943, 63.794907945000034 ], [ -17.130116339999915, 63.79718659100007 ], [ -17.166127081999946, 63.809149481000077 ], [ -17.179676886999914, 63.804877020000049 ], [ -17.193226691999939, 63.798041083000044 ], [ -17.20343990799995, 63.79828522300005 ], [ -17.207102016999954, 63.815375067000048 ], [ -17.330555792999917, 63.781236070000034 ], [ -17.385710218863363, 63.772992347828932 ], [ -17.385729132593383, 63.773110256732934 ], [ -17.387537807723675, 63.784375719563798 ], [ -17.384023810250653, 63.95857697194964 ], [ -17.378055181601383, 63.978369046494265 ], [ -17.341752488686382, 64.039398912030151 ], [ -16.876612921848846, 64.471956489000718 ], [ -16.6868829003256, 64.63869049686889 ], [ -16.662517462910614, 64.674864000373304 ], [ -16.641459315594943, 64.714086412457959 ], [ -16.635645718375201, 64.727780667144032 ], [ -16.633475308039067, 64.736772365951879 ], [ -16.633113572833111, 64.744885566515677 ], [ -16.635387335956807, 64.754032294055094 ], [ -16.639133877426502, 64.761680405726111 ], [ -16.645257533908079, 64.770207018339192 ], [ -16.647505458610055, 64.77847524673524 ], [ -16.652311367275786, 64.786175035249641 ], [ -16.676366746328313, 64.813718574252789 ], [ -16.678459642298662, 64.821470038711311 ], [ -16.677296922315122, 64.826224270533601 ], [ -16.674196335992121, 64.829867459215848 ], [ -16.648203090600134, 64.85477549899008 ], [ -16.633216925620616, 64.864258124213052 ], [ -16.626240606618694, 64.870045884809713 ], [ -16.623966844394374, 64.874800117531379 ], [ -16.623863490707549, 64.87945099656622 ], [ -16.628411016954885, 64.887124945759581 ], [ -16.629961309666726, 64.890690620076043 ], [ -16.62962541288249, 64.896323351041815 ], [ -16.627790900229854, 64.903144640412791 ], [ -16.621822271580584, 64.918234158179814 ], [ -16.617481451807578, 64.923996080354812 ], [ -16.612055426416816, 64.927277533831102 ], [ -16.586398077809065, 64.928026841765302 ], [ -16.528417120853476, 64.94032583337048 ], [ -16.510950487175251, 64.942212022866556 ], [ -16.470565355107055, 64.942651272438241 ], [ -16.452814499689396, 64.944459947568475 ], [ -16.44563147601184, 64.946061917123757 ], [ -16.434805263651981, 64.950635280893493 ], [ -16.381914435302974, 64.982648830878816 ], [ -16.338971320170288, 65.002260037370775 ], [ -16.327964239757875, 65.005644842735251 ], [ -16.260965744673399, 65.014688219285858 ], [ -16.248563402079355, 65.018874010327295 ], [ -16.234429897821542, 65.026005358060786 ], [ -16.209366828416421, 65.043006903745606 ], [ -16.201537847793418, 65.051275133040917 ], [ -16.201046922277669, 65.056726996853399 ], [ -16.218926968005178, 65.06269562370403 ], [ -16.222880215049884, 65.06558950535134 ], [ -16.224120449399209, 65.069620265862568 ], [ -16.22360368456242, 65.074167792109904 ], [ -16.219237026367693, 65.083986315016375 ], [ -16.216911587299933, 65.087836209273632 ], [ -16.203113979826298, 65.122020168695826 ], [ -16.202468023780284, 65.126154282893822 ], [ -16.203320685401309, 65.143698431837151 ], [ -16.205646125368389, 65.156488348958135 ], [ -16.205723638834854, 65.16501495977252 ], [ -16.20432837575396, 65.173231513123824 ], [ -16.201925422320414, 65.180001126550735 ], [ -16.202235479783553, 65.182455755928345 ], [ -16.204095831757229, 65.184031887061906 ], [ -16.205439418894059, 65.188786118884252 ], [ -16.20471594938158, 65.195969143461184 ], [ -16.197998012798053, 65.210335191715671 ], [ -16.191693488263866, 65.218655096955104 ], [ -16.186138271663935, 65.224081122345865 ], [ -16.158000454357477, 65.241961168073431 ], [ -16.127898932289895, 65.267747707890351 ], [ -16.117744512599188, 65.272656969343643 ], [ -16.065602993083644, 65.288728339041597 ], [ -16.054647590413992, 65.294309394063248 ], [ -16.046224330588416, 65.302138372887555 ], [ -16.033253547213462, 65.318338934694054 ], [ -16.028602668178621, 65.326684679254527 ], [ -16.027439948195081, 65.333066718154498 ], [ -16.032840135164122, 65.344900620866952 ], [ -16.037981939714768, 65.352031969499762 ], [ -16.065913052345479, 65.372625027023332 ], [ -16.084878301892104, 65.38319285786406 ], [ -16.161540290252219, 65.405465400208016 ], [ -16.166423713283734, 65.408049220794851 ], [ -16.173606736961347, 65.413836982290888 ], [ -16.175983852872491, 65.416679186195438 ], [ -16.176552292754138, 65.420374050821749 ], [ -16.176448939966633, 65.426110135474346 ], [ -16.172392341033742, 65.437298082140728 ], [ -16.168413254667996, 65.443034165894005 ], [ -16.163219774173228, 65.447064928203815 ], [ -16.150662401048976, 65.453731187943959 ], [ -16.130456916253706, 65.469570014544502 ], [ -16.112473516839316, 65.472903143964913 ], [ -16.102293259626208, 65.476830553487218 ], [ -16.089787564244716, 65.4841686058964 ], [ -16.076093308659267, 65.497036038282488 ], [ -16.060538702898839, 65.516207994303443 ], [ -16.051133592041651, 65.531943468116538 ], [ -16.048265549715325, 65.539410711734945 ], [ -16.04400224520748, 65.557135728730884 ], [ -16.0416768052404, 65.563336900477566 ], [ -16.036354132637143, 65.570364895423552 ], [ -16.02775000655754, 65.574705716095878 ], [ -16.013849046296457, 65.575842596758378 ], [ -15.703351203095565, 65.549539293003932 ], [ -15.692266608317311, 65.550288600938131 ], [ -15.689863653984446, 65.554836127185467 ], [ -15.689088507628526, 65.56685089795053 ], [ -15.686995611658176, 65.574343980889978 ], [ -15.683145718300239, 65.583180650066936 ], [ -15.659529587920133, 65.615736803310767 ], [ -15.658444383201754, 65.624056708550256 ], [ -15.660382248641895, 65.631911525796227 ], [ -15.664490526216809, 65.639869696729079 ], [ -15.66759111164049, 65.647672838031042 ], [ -15.669839037241786, 65.657543036881634 ], [ -15.670381638701656, 65.683794663792696 ], [ -15.671854417047712, 65.690951849947908 ], [ -15.674877489004928, 65.696558743391279 ], [ -15.682603115041729, 65.704413561536626 ], [ -15.6843601142279, 65.709193630881316 ], [ -15.684851039743705, 65.715989080931308 ], [ -15.68283565903846, 65.731698717222002 ], [ -15.680251837552248, 65.738675035324604 ], [ -15.675342576998332, 65.744876207071286 ], [ -15.664102952589189, 65.747899278129125 ], [ -15.456389532550872, 65.771567084453352 ], [ -15.448017951367376, 65.773815009155328 ], [ -15.44538245303778, 65.778827623396069 ], [ -15.444762336312749, 65.783220120012516 ], [ -15.44171342593387, 65.788749498190782 ], [ -15.434297858259583, 65.795364081087428 ], [ -15.417838914034633, 65.803477280751849 ], [ -15.403679572254475, 65.808464057470246 ], [ -15.350349494333727, 65.821357327378735 ], [ -15.338153856415374, 65.826731675926055 ], [ -15.328412847874631, 65.834069729234614 ], [ -15.315261196447068, 65.857272447565379 ], [ -15.225736013306403, 65.862937860793636 ], [ -15.166668964900794, 65.881590613016328 ], [ -15.12625466961731, 65.900243364339758 ], [ -15.101384333919896, 65.922004908299868 ], [ -14.694132582152974, 65.943766452259922 ], [ -14.663044662980838, 65.981071956705421 ], [ -14.614613410999937, 65.986273505000042 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IS-8", "NAME_1": "Suðurland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -17.385710218863363, 63.772992347828932 ], [ -17.467762824999909, 63.760728257000039 ], [ -17.560943162999934, 63.750799872000073 ], [ -17.549916144999941, 63.758002020000049 ], [ -17.543568488999938, 63.766791083000044 ], [ -17.544016079999949, 63.777492580000057 ], [ -17.549672003999945, 63.787502346000053 ], [ -17.557118292999917, 63.773260809000078 ], [ -17.569081183999913, 63.763576565000051 ], [ -17.583363410999937, 63.760728257000039 ], [ -17.598052537999934, 63.767564195000034 ], [ -17.595692511999914, 63.76203034100007 ], [ -17.595570441999939, 63.759466864000046 ], [ -17.594960089999915, 63.757554429000038 ], [ -17.590646938999953, 63.753973700000074 ], [ -17.590646938999953, 63.746527411000045 ], [ -17.72101803299995, 63.705511786000045 ], [ -17.71117102799991, 63.727362372000073 ], [ -17.685292120999918, 63.73969147300005 ], [ -17.653228318999936, 63.745266018000052 ], [ -17.624826626999948, 63.746527411000045 ], [ -17.624826626999948, 63.753973700000074 ], [ -17.690988735999952, 63.769273179000038 ], [ -17.714751756999931, 63.781236070000034 ], [ -17.719878709999932, 63.767726955000057 ], [ -17.71898352799991, 63.762274481000077 ], [ -17.714751756999931, 63.753973700000074 ], [ -17.74046790299991, 63.745998440000051 ], [ -17.765004035999937, 63.748236395000049 ], [ -17.790028449999909, 63.753404039000031 ], [ -17.817209438999953, 63.753973700000074 ], [ -17.796742316999939, 63.746527411000045 ], [ -17.796742316999939, 63.740301825000074 ], [ -17.821929490999935, 63.74054596600007 ], [ -17.833322719999956, 63.738511460000041 ], [ -17.843861456999946, 63.732855536000045 ], [ -17.860259568999936, 63.737005927000041 ], [ -17.878407355999911, 63.731024481000077 ], [ -17.893055792999917, 63.719956773000035 ], [ -17.899159308999913, 63.708929755000042 ], [ -17.90453040299991, 63.691229559000078 ], [ -17.918080206999946, 63.679022528000075 ], [ -17.935902472999942, 63.675767320000034 ], [ -17.954416469999956, 63.685044664000031 ], [ -17.967355923999946, 63.676499742000033 ], [ -17.972075975999928, 63.667669989000046 ], [ -17.966949022999927, 63.660589911000045 ], [ -17.950672980999911, 63.657700914000031 ], [ -17.937977667999917, 63.659857489000046 ], [ -17.918080206999946, 63.669256903000075 ], [ -17.902821417999917, 63.671372789000031 ], [ -17.823882615999935, 63.66742584800005 ], [ -17.796742316999939, 63.671372789000031 ], [ -17.839751756999931, 63.634100653000075 ], [ -17.865834113999938, 63.623846747000073 ], [ -17.892323370999918, 63.630438544000071 ], [ -17.88898678299995, 63.63226959800005 ], [ -17.887847459999932, 63.63226959800005 ], [ -17.887318488999938, 63.632798570000034 ], [ -17.885487433999913, 63.636664130000042 ], [ -17.92642167899993, 63.636664130000042 ], [ -17.924956834999932, 63.627346096000053 ], [ -17.953114386999914, 63.628607489000046 ], [ -17.968617316999939, 63.622992255000042 ], [ -17.95571855399993, 63.62368398600006 ], [ -17.946888800999943, 63.620794989000046 ], [ -17.94359290299991, 63.61391836100006 ], [ -17.946929490999935, 63.602484442000048 ], [ -17.872466600999928, 63.604396877000056 ], [ -17.858225063999953, 63.609930731000077 ], [ -17.88304602799991, 63.576117255000042 ], [ -17.919056769999941, 63.545152085000041 ], [ -17.964955206999946, 63.522528387000079 ], [ -18.067372199999909, 63.501532294000071 ], [ -18.132923956999946, 63.479315497000073 ], [ -18.195383266999954, 63.472805080000057 ], [ -18.228138800999943, 63.493231512000079 ], [ -18.21548417899993, 63.500555731000077 ], [ -18.187367316999939, 63.505194403000075 ], [ -18.176584438999953, 63.510646877000056 ], [ -18.163197394999941, 63.521429755000042 ], [ -18.15062415299991, 63.526312567000048 ], [ -18.118885870999918, 63.527411200000074 ], [ -18.118885870999918, 63.534247137000079 ], [ -18.147287563999953, 63.534491278000075 ], [ -18.200917120999918, 63.527044989000046 ], [ -18.228138800999943, 63.527411200000074 ], [ -18.296376105999911, 63.546454169000071 ], [ -18.316802537999934, 63.548529364000046 ], [ -18.310658331999946, 63.541001695000034 ], [ -18.318104620999918, 63.539455471000053 ], [ -18.321197068999936, 63.537665106000077 ], [ -18.324330206999946, 63.534247137000079 ], [ -18.31468665299991, 63.528143622000073 ], [ -18.29328365799995, 63.511053778000075 ], [ -18.286447719999956, 63.507513739000046 ], [ -18.276763475999928, 63.501166083000044 ], [ -18.271962042999917, 63.487046617000033 ], [ -18.269154425999943, 63.47296784100007 ], [ -18.265695766999954, 63.466538804000038 ], [ -18.223866339999915, 63.465318101000037 ], [ -18.200306769999941, 63.465318101000037 ], [ -18.183664516999954, 63.463853257000039 ], [ -18.397694464999915, 63.449204820000034 ], [ -18.521595831999946, 63.42251211100006 ], [ -18.732045050999943, 63.396714585000041 ], [ -18.783029751999948, 63.397650458000044 ], [ -18.974761522999927, 63.424383856000077 ], [ -19.055653449999909, 63.41437409100007 ], [ -19.08462480399993, 63.418158270000049 ], [ -19.073597785999937, 63.418768622000073 ], [ -19.069081183999913, 63.420314846000053 ], [ -19.064116990999935, 63.424383856000077 ], [ -19.09984290299991, 63.427964585000041 ], [ -19.117665167999917, 63.432440497000073 ], [ -19.132435675999943, 63.438666083000044 ], [ -19.15265865799995, 63.425726630000042 ], [ -19.287261522999927, 63.438666083000044 ], [ -19.299956834999932, 63.441229559000078 ], [ -19.352162238999938, 63.459133205000057 ], [ -19.434152798999946, 63.466538804000038 ], [ -19.550933397999927, 63.502020575000074 ], [ -19.71157792899993, 63.521551825000074 ], [ -19.743234829999949, 63.534247137000079 ], [ -19.729725714999915, 63.535386460000041 ], [ -19.722035285999937, 63.539252020000049 ], [ -19.723052537999934, 63.544175523000035 ], [ -19.735747850999928, 63.548529364000046 ], [ -19.747954881999931, 63.548895575000074 ], [ -19.764759894999941, 63.542792059000078 ], [ -19.777088995999918, 63.541001695000034 ], [ -19.872914191999939, 63.548529364000046 ], [ -19.869984503999945, 63.543524481000077 ], [ -19.769886847999942, 63.534247137000079 ], [ -20.033802863999938, 63.542385158000059 ], [ -20.05101477799991, 63.554754950000074 ], [ -20.055409308999913, 63.553778387000079 ], [ -20.057972785999937, 63.552313544000071 ], [ -20.060414191999939, 63.550482489000046 ], [ -20.064076300999943, 63.548529364000046 ], [ -20.068959113999938, 63.552883205000057 ], [ -20.071888800999943, 63.553859768000052 ], [ -20.07835852799991, 63.554754950000074 ], [ -20.071522589999915, 63.541001695000034 ], [ -20.148304816999939, 63.540350653000075 ], [ -20.185699022999927, 63.544419664000031 ], [ -20.337717251999948, 63.601711330000057 ], [ -20.352691209999932, 63.609930731000077 ], [ -20.338612433999913, 63.604193427000041 ], [ -20.32249915299991, 63.601752020000049 ], [ -20.305978969999956, 63.603461005000042 ], [ -20.290638800999943, 63.609930731000077 ], [ -20.303456183999913, 63.611029364000046 ], [ -20.326242641999954, 63.615668036000045 ], [ -20.339100714999915, 63.616766669000071 ], [ -20.33429928299995, 63.63226959800005 ], [ -20.33226477799991, 63.636664130000042 ], [ -20.350575324999909, 63.624660549000055 ], [ -20.367095506999931, 63.619818427000041 ], [ -20.38499915299991, 63.621893622000073 ], [ -20.407338019999941, 63.630438544000071 ], [ -20.407338019999941, 63.636664130000042 ], [ -20.373158331999946, 63.630438544000071 ], [ -20.386545376999948, 63.645697333000044 ], [ -20.404774542999917, 63.65460846600007 ], [ -20.42446855399993, 63.661688544000071 ], [ -20.442128058999913, 63.671372789000031 ], [ -20.458241339999915, 63.688218492000033 ], [ -20.466949022999927, 63.700262762000079 ], [ -20.478667772999927, 63.706366278000075 ], [ -20.503529425999943, 63.705511786000045 ], [ -20.503529425999943, 63.699286200000074 ], [ -20.468658006999931, 63.677150783000059 ], [ -20.448475714999915, 63.660711981000077 ], [ -20.434641079999949, 63.644110419000071 ], [ -20.501088019999941, 63.671128648000035 ], [ -20.531605597999942, 63.68891022300005 ], [ -20.550689256999931, 63.71234772300005 ], [ -20.546864386999914, 63.714016018000052 ], [ -20.537098761999914, 63.719794012000079 ], [ -20.544504360999952, 63.724514065000051 ], [ -20.558216925999943, 63.740301825000074 ], [ -20.530181443999936, 63.754706122000073 ], [ -20.498524542999917, 63.763006903000075 ], [ -20.431263800999943, 63.767564195000034 ], [ -20.399647589999915, 63.761053778000075 ], [ -20.344146287999934, 63.734767971000053 ], [ -20.311146613999938, 63.732855536000045 ], [ -20.327788865999935, 63.74249909100007 ], [ -20.35220292899993, 63.761135158000059 ], [ -20.365793423999946, 63.767564195000034 ], [ -20.442128058999913, 63.787502346000053 ], [ -20.412017381999931, 63.812567450000074 ], [ -20.407338019999941, 63.822211005000042 ], [ -20.411122199999909, 63.83624909100007 ], [ -20.422271287999934, 63.839911200000074 ], [ -20.431141730999911, 63.836371161000045 ], [ -20.427845831999946, 63.82843659100007 ], [ -20.427845831999946, 63.822211005000042 ], [ -20.43976803299995, 63.812567450000074 ], [ -20.483021613999938, 63.787502346000053 ], [ -20.511097785999937, 63.773179429000038 ], [ -20.530181443999936, 63.764349677000041 ], [ -20.554514126999948, 63.760728257000039 ], [ -20.562408006999931, 63.756822007000039 ], [ -20.563465949999909, 63.747300523000035 ], [ -20.562652147999927, 63.735907294000071 ], [ -20.565052863999938, 63.72601959800005 ], [ -20.572661912999934, 63.71625397300005 ], [ -20.577504035999937, 63.714178778000075 ], [ -20.622466600999928, 63.725775458000044 ], [ -20.666574673999946, 63.742905992000033 ], [ -20.700306769999941, 63.749701239000046 ], [ -20.770415818999936, 63.774400132000039 ], [ -20.705230272999927, 63.774400132000039 ], [ -20.693470831999946, 63.77179596600007 ], [ -20.669422980999911, 63.761460679000038 ], [ -20.654367641999954, 63.760728257000039 ], [ -20.652333136999914, 63.766546942000048 ], [ -20.639149542999917, 63.768377997000073 ], [ -20.605946417999917, 63.767564195000034 ], [ -20.605946417999917, 63.774400132000039 ], [ -20.633859829999949, 63.774400132000039 ], [ -20.633859829999949, 63.781236070000034 ], [ -20.630360480999911, 63.781439520000049 ], [ -20.623158331999946, 63.780991929000038 ], [ -20.619618292999917, 63.781236070000034 ], [ -20.619618292999917, 63.787502346000053 ], [ -20.690663214999915, 63.779445705000057 ], [ -20.715809699999909, 63.781236070000034 ], [ -20.715809699999909, 63.787502346000053 ], [ -20.681792772999927, 63.807318427000041 ], [ -20.671783006999931, 63.837632554000038 ], [ -20.685617641999954, 63.863430080000057 ], [ -20.723255988999938, 63.869370835000041 ], [ -20.723255988999938, 63.863185940000051 ], [ -20.695139126999948, 63.857977606000077 ], [ -20.698312954999949, 63.844183661000045 ], [ -20.717193162999934, 63.828029690000051 ], [ -20.754505988999938, 63.805650132000039 ], [ -20.778391079999949, 63.797430731000077 ], [ -20.805287238999938, 63.794745184000078 ], [ -20.832508917999917, 63.801703192000048 ], [ -20.821766730999911, 63.785305080000057 ], [ -20.818226691999939, 63.781236070000034 ], [ -20.858631964999915, 63.800441799000055 ], [ -20.948841925999943, 63.827215887000079 ], [ -21.076730923999946, 63.848456122000073 ], [ -21.120106574999909, 63.862494208000044 ], [ -21.144276495999918, 63.86749909100007 ], [ -21.168324347999942, 63.875555731000077 ], [ -21.188791469999956, 63.891099351000037 ], [ -21.183013475999928, 63.898871161000045 ], [ -21.184478318999936, 63.908758856000077 ], [ -21.194935675999943, 63.932074286000045 ], [ -21.117014126999948, 63.929877020000049 ], [ -21.074126756999931, 63.934271552000041 ], [ -21.044789191999939, 63.945746161000045 ], [ -21.119943813999953, 63.945746161000045 ], [ -21.167591925999943, 63.957709052000041 ], [ -21.185047980999911, 63.959418036000045 ], [ -21.236439581999946, 63.953355210000041 ], [ -21.247059699999909, 63.949164130000042 ], [ -21.25609290299991, 63.943019924000055 ], [ -21.28742428299995, 63.928168036000045 ], [ -21.298695441999939, 63.924627997000073 ], [ -21.298695441999939, 63.918402411000045 ], [ -21.247792120999918, 63.908392645000049 ], [ -21.222035285999937, 63.898871161000045 ], [ -21.20929928299995, 63.883693752000056 ], [ -21.230132615999935, 63.888739325000074 ], [ -21.275380011999914, 63.891791083000044 ], [ -21.321685350999928, 63.889349677000041 ], [ -21.349761522999927, 63.884182033000059 ], [ -21.365834113999938, 63.873765367000033 ], [ -21.352650519999941, 63.856390692000048 ], [ -21.357411261999914, 63.85610586100006 ], [ -21.360422329999949, 63.854234117000033 ], [ -21.363107876999948, 63.851792710000041 ], [ -21.366932745999918, 63.849554755000042 ], [ -21.659901495999918, 63.831854559000078 ], [ -21.695301886999914, 63.842718817000048 ], [ -21.728911912999934, 63.858547268000052 ], [ -21.75999915299991, 63.868394273000035 ], [ -21.79320227799991, 63.87055084800005 ], [ -21.93197635413858, 63.84816902853931 ], [ -21.931808234062771, 63.848325304269338 ], [ -21.912041998839186, 63.866489569937698 ], [ -21.894265305899125, 63.879899603783656 ], [ -21.652393764860392, 64.00002147121387 ], [ -21.613791470400031, 63.999401354488896 ], [ -21.607280239391514, 64.000538235151396 ], [ -21.605807461045515, 64.002036851919172 ], [ -21.598960334152082, 64.01815989935983 ], [ -21.593741014336331, 64.024102687788798 ], [ -21.569918179280535, 64.036039944188019 ], [ -21.54575944744056, 64.051904609210339 ], [ -21.504547492173003, 64.087173774250232 ], [ -21.417395189136698, 64.162853908880777 ], [ -21.40946285662551, 64.173912665237253 ], [ -21.401401332905209, 64.187916979185218 ], [ -21.414863043594607, 64.213238430109413 ], [ -21.417395189136698, 64.219568793065321 ], [ -21.417110969195903, 64.226674303276468 ], [ -21.413700323611067, 64.232927150967214 ], [ -21.399540981830853, 64.248430080783578 ], [ -21.387862107850026, 64.257628486065755 ], [ -21.149194505022365, 64.364030260388176 ], [ -21.078475307789233, 64.403872789197806 ], [ -20.930034755899271, 64.463920802802761 ], [ -20.813995326722932, 64.523813789474787 ], [ -20.789784918938835, 64.531410224302363 ], [ -20.628321905931216, 64.55662832333843 ], [ -20.313974167573804, 64.643858140740576 ], [ -20.044972499581206, 64.698247585857359 ], [ -20.016731330386619, 64.710339870988207 ], [ -20.001176723726815, 64.719925848998685 ], [ -19.997042608629499, 64.723569038580251 ], [ -19.992779303222278, 64.730467841417692 ], [ -19.990531379419622, 64.73837433550716 ], [ -19.990970628092043, 64.750259915062998 ], [ -19.993864508840034, 64.765091051310947 ], [ -19.993321905581467, 64.772222399044438 ], [ -19.992055832810422, 64.777958482797715 ], [ -19.977431403036803, 64.801626289121941 ], [ -19.72010860812577, 64.752326971712364 ], [ -19.695898200341674, 64.750053209487987 ], [ -19.666804368626742, 64.750802517422187 ], [ -19.404753180315026, 64.785089830531206 ], [ -19.154845953977599, 64.784676419381242 ], [ -18.871529913674578, 64.838626614026964 ], [ -18.426544154788928, 64.880613714751121 ], [ -18.333061488796659, 64.843225816218421 ], [ -18.23350684316631, 64.81756846850999 ], [ -17.947606981377078, 64.746539212014966 ], [ -17.442831590405603, 64.618562527338725 ], [ -16.876612921848846, 64.471956489000718 ], [ -17.341752488686382, 64.039398912030151 ], [ -17.378055181601383, 63.978369046494265 ], [ -17.384023810250653, 63.95857697194964 ], [ -17.387537807723675, 63.784375719563798 ], [ -17.385729132593383, 63.773110256732934 ], [ -17.385710218863363, 63.772992347828932 ] ] ], [ [ [ -17.751291469999956, 63.717840887000079 ], [ -17.743763800999943, 63.711615302000041 ], [ -17.743153449999909, 63.703192450000074 ], [ -17.749256964999915, 63.691961981000077 ], [ -17.764963344999956, 63.68195221600007 ], [ -17.771107550999943, 63.680731512000079 ], [ -17.764068162999934, 63.684881903000075 ], [ -17.759022589999915, 63.690171617000033 ], [ -17.760609503999945, 63.695990302000041 ], [ -17.768950975999928, 63.698919989000046 ], [ -17.779693162999934, 63.698228257000039 ], [ -17.823312954999949, 63.691392320000034 ], [ -17.820708787999934, 63.699652411000045 ], [ -17.790150519999941, 63.71320221600007 ], [ -17.773101365999935, 63.718085028000075 ], [ -17.765695766999954, 63.719142971000053 ], [ -17.751291469999956, 63.717840887000079 ] ] ], [ [ [ -20.261870897999927, 63.444647528000075 ], [ -20.257923956999946, 63.440985419000071 ], [ -20.252552863999938, 63.429510809000078 ], [ -20.260161912999934, 63.418646552000041 ], [ -20.269642706999946, 63.409125067000048 ], [ -20.27953040299991, 63.402736721000053 ], [ -20.286773240999935, 63.406480210000041 ], [ -20.291615363999938, 63.415350653000075 ], [ -20.298085089999915, 63.423081773000035 ], [ -20.305572068999936, 63.434759833000044 ], [ -20.302601691999939, 63.44594961100006 ], [ -20.282622850999928, 63.450588283000059 ], [ -20.258859829999949, 63.451361395000049 ], [ -20.256947394999941, 63.449652411000045 ], [ -20.261870897999927, 63.444647528000075 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IS-2", "NAME_1": "Suðurnes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.93197635413858, 63.84816902853931 ], [ -21.959462042999917, 63.843736070000034 ], [ -22.00031490799995, 63.842800197000031 ], [ -22.014393683999913, 63.84320709800005 ], [ -22.065785285999937, 63.835882880000042 ], [ -22.336415167999917, 63.863185940000051 ], [ -22.357492641999954, 63.856634833000044 ], [ -22.375884568999936, 63.844142971000053 ], [ -22.394398566999939, 63.835923570000034 ], [ -22.415882941999939, 63.842718817000048 ], [ -22.401600714999915, 63.849554755000042 ], [ -22.425160285999937, 63.849514065000051 ], [ -22.462757941999939, 63.838690497000073 ], [ -22.49478105399993, 63.834173895000049 ], [ -22.51390540299991, 63.82562897300005 ], [ -22.525135870999918, 63.822211005000042 ], [ -22.535878058999913, 63.821193752000056 ], [ -22.632679816999939, 63.826117255000042 ], [ -22.654855923999946, 63.822211005000042 ], [ -22.659657355999911, 63.819403387000079 ], [ -22.664906378999945, 63.815008856000077 ], [ -22.671254035999937, 63.810980536000045 ], [ -22.679066535999937, 63.809149481000077 ], [ -22.691232876999948, 63.812201239000046 ], [ -22.706450975999928, 63.825384833000044 ], [ -22.717518683999913, 63.82843659100007 ], [ -22.71125240799995, 63.838690497000073 ], [ -22.703480597999942, 63.845119533000059 ], [ -22.697417772999927, 63.85187409100007 ], [ -22.695871548999946, 63.863185940000051 ], [ -22.700184699999909, 63.874172268000052 ], [ -22.708485480999911, 63.879055080000057 ], [ -22.719227667999917, 63.883042710000041 ], [ -22.730580206999946, 63.891099351000037 ], [ -22.71507727799991, 63.901271877000056 ], [ -22.694976365999935, 63.937730210000041 ], [ -22.685902472999942, 63.945746161000045 ], [ -22.641835089999915, 63.945868231000077 ], [ -22.63499915299991, 63.949164130000042 ], [ -22.639230923999946, 63.959540106000077 ], [ -22.649403449999909, 63.959540106000077 ], [ -22.67251542899993, 63.95258209800005 ], [ -22.69172115799995, 63.954779364000046 ], [ -22.712880011999914, 63.961981512000079 ], [ -22.729969855999911, 63.974676825000074 ], [ -22.736805792999917, 63.993475653000075 ], [ -22.721424933999913, 64.012681382000039 ], [ -22.717518683999913, 64.020819403000075 ], [ -22.716460740999935, 64.032294012000079 ], [ -22.718088344999956, 64.053208726000037 ], [ -22.717518683999913, 64.062445380000042 ], [ -22.718739386999914, 64.070502020000049 ], [ -22.712757941999939, 64.078924872000073 ], [ -22.702137824999909, 64.085923570000034 ], [ -22.689605272999927, 64.089748440000051 ], [ -22.675160285999937, 64.087388414000031 ], [ -22.64476477799991, 64.072251695000034 ], [ -22.609974738999938, 64.061590887000079 ], [ -22.582915818999936, 64.043646552000041 ], [ -22.558461066999939, 64.019435940000051 ], [ -22.544911261999914, 63.993475653000075 ], [ -22.55923417899993, 63.993475653000075 ], [ -22.542795376999948, 63.98273346600007 ], [ -22.518462693999936, 63.979437567000048 ], [ -22.420887824999909, 63.977240302000041 ], [ -22.396839972999942, 63.979803778000075 ], [ -22.38117428299995, 63.986721096000053 ], [ -22.392323370999918, 63.994086005000042 ], [ -22.386382615999935, 64.002101955000057 ], [ -22.372792120999918, 64.00922272300005 ], [ -22.360707160999937, 64.014064846000053 ], [ -22.346058722999942, 64.017279364000046 ], [ -22.298573370999918, 64.020819403000075 ], [ -22.262074347999942, 64.033351955000057 ], [ -22.250884568999936, 64.035101630000042 ], [ -22.238392706999946, 64.032904364000046 ], [ -22.212473110999952, 64.023098049000055 ], [ -22.199208136999914, 64.020819403000075 ], [ -22.172759568999936, 64.025091864000046 ], [ -22.124175584999932, 64.043890692000048 ], [ -22.035573576559329, 64.001449733118648 ], [ -21.930300123152165, 64.004059818405892 ], [ -21.800222499868482, 64.00728488349057 ], [ -21.652393764860392, 64.00002147121387 ], [ -21.894265305899125, 63.879899603783656 ], [ -21.912041998839186, 63.866489569937698 ], [ -21.931808234062771, 63.848325304269338 ], [ -21.93197635413858, 63.84816902853931 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IS-0", "NAME_1": "Reykjavík" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.124175584999932, 64.043890692000048 ], [ -22.040679490999935, 64.05109284100007 ], [ -22.013579881999931, 64.059271552000041 ], [ -21.990101691999939, 64.076117255000042 ], [ -21.981678839999915, 64.070379950000074 ], [ -21.975168423999946, 64.069281317000048 ], [ -21.969349738999938, 64.071478583000044 ], [ -21.963368292999917, 64.076117255000042 ], [ -21.963368292999917, 64.082261460000041 ], [ -21.980620897999927, 64.090236721000053 ], [ -22.004750128999945, 64.097723700000074 ], [ -22.028635219999956, 64.10101959800005 ], [ -22.045318162999934, 64.096584377000056 ], [ -22.034901495999918, 64.11273834800005 ], [ -22.010121222999942, 64.120591539000031 ], [ -21.982492641999954, 64.121649481000077 ], [ -21.963368292999917, 64.117092190000051 ], [ -21.971262173999946, 64.116034247000073 ], [ -21.990101691999939, 64.109564520000049 ], [ -21.971994594999956, 64.105373440000051 ], [ -21.951771613999938, 64.104234117000033 ], [ -21.931996222999942, 64.105902411000045 ], [ -21.915028449999909, 64.109564520000049 ], [ -21.915028449999909, 64.117092190000051 ], [ -21.935454881999931, 64.117092190000051 ], [ -21.921254035999937, 64.122626044000071 ], [ -21.915028449999909, 64.123928127000056 ], [ -21.977162238999938, 64.149155992000033 ], [ -22.010853644999941, 64.157049872000073 ], [ -22.045318162999934, 64.158026434000078 ], [ -22.015126105999911, 64.16828034100007 ], [ -21.864857550999943, 64.156317450000074 ], [ -21.857533331999946, 64.152289130000042 ], [ -21.852447068999936, 64.147691148000035 ], [ -21.846669074999909, 64.144354559000078 ], [ -21.815581834999932, 64.136623440000051 ], [ -21.799672003999945, 64.137274481000077 ], [ -21.784657355999911, 64.144354559000078 ], [ -21.796050584999932, 64.143459377000056 ], [ -21.806752081999946, 64.14398834800005 ], [ -21.816802537999934, 64.146470445000034 ], [ -21.826242641999954, 64.151190497000073 ], [ -21.814320441999939, 64.158921617000033 ], [ -21.80687415299991, 64.162176825000074 ], [ -21.798247850999928, 64.164862372000073 ], [ -21.818755662999934, 64.171698309000078 ], [ -21.792836066999939, 64.175970770000049 ], [ -21.757476365999935, 64.171087958000044 ], [ -21.744048631999931, 64.171250718000067 ], [ -21.723784959999932, 64.171454169000071 ], [ -21.702748175999943, 64.191555080000057 ], [ -21.737416144999941, 64.182847398000035 ], [ -21.75609290299991, 64.181789455000057 ], [ -21.764149542999917, 64.188421942000048 ], [ -21.757232225999928, 64.200344143000052 ], [ -21.741200324999909, 64.206284898000035 ], [ -21.709584113999938, 64.21320221600007 ], [ -21.729725714999915, 64.218817450000074 ], [ -21.75999915299991, 64.220404364000046 ], [ -21.790760870999918, 64.218410549000055 ], [ -21.812652147999927, 64.21320221600007 ], [ -21.806467251999948, 64.230210679000038 ], [ -21.817860480999911, 64.237982489000046 ], [ -21.837717251999948, 64.240057684000078 ], [ -21.865712042999917, 64.239569403000075 ], [ -21.875111456999946, 64.238104559000078 ], [ -21.883941209999932, 64.235174872000073 ], [ -21.891102667999917, 64.230373440000051 ], [ -21.928618943999936, 64.233791408000059 ], [ -21.899281378999945, 64.244940497000073 ], [ -21.889556443999936, 64.253119208000044 ], [ -21.894520636999914, 64.26788971600007 ], [ -21.875642883379168, 64.273718504321948 ], [ -21.736280125927067, 64.27567312391551 ], [ -21.615880396762918, 64.257244594262602 ], [ -21.606051847314916, 64.185987611439089 ], [ -21.655194593655551, 64.081559274341032 ], [ -21.837022756195267, 64.047159351722655 ], [ -21.930300123152165, 64.004059818405892 ], [ -22.035573576559329, 64.001449733118648 ], [ -22.124175584999932, 64.043890692000048 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IS-1", "NAME_1": "Höfuðborgarsvæði" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.875642883379168, 64.273718504321948 ], [ -21.833241339999915, 64.286810614000046 ], [ -21.803212042999917, 64.301743882000039 ], [ -21.781239386999914, 64.318793036000045 ], [ -21.764027472999942, 64.33930084800005 ], [ -21.754505988999938, 64.345200914000031 ], [ -21.737416144999941, 64.349798895000049 ], [ -21.715687628999945, 64.352036851000037 ], [ -21.671213344999956, 64.349188544000071 ], [ -21.65257727799991, 64.349188544000071 ], [ -21.672474738999938, 64.352932033000059 ], [ -21.681141730999911, 64.356634833000044 ], [ -21.689076300999943, 64.356634833000044 ], [ -21.648548956999946, 64.371486721000053 ], [ -21.626779751999948, 64.376044012000079 ], [ -21.603098110999952, 64.377752997000073 ], [ -21.465402798999946, 64.361802476000037 ], [ -21.442005988999938, 64.364081122000073 ], [ -21.425120604732115, 64.37612627500755 ], [ -21.362721524079063, 64.385062568382807 ], [ -21.270246548439445, 64.386845405091321 ], [ -21.22947384274363, 64.398136705444585 ], [ -21.217433233556903, 64.39898936616629 ], [ -21.172939825712376, 64.395552883958374 ], [ -21.163121303705225, 64.393330796778798 ], [ -21.149633754594106, 64.388628241799893 ], [ -21.145758022814505, 64.385786037895286 ], [ -21.143432582847424, 64.381186834804566 ], [ -21.146403977961199, 64.377698675753265 ], [ -21.149194505022365, 64.364030260388176 ], [ -21.387862107850026, 64.257628486065755 ], [ -21.399540981830853, 64.248430080783578 ], [ -21.413700323611067, 64.232927150967214 ], [ -21.417110969195903, 64.226674303276468 ], [ -21.417395189136698, 64.219568793065321 ], [ -21.414863043594607, 64.213238430109413 ], [ -21.401401332905209, 64.187916979185218 ], [ -21.40946285662551, 64.173912665237253 ], [ -21.417395189136698, 64.162853908880777 ], [ -21.504547492173003, 64.087173774250232 ], [ -21.54575944744056, 64.051904609210339 ], [ -21.569918179280535, 64.036039944188019 ], [ -21.593741014336331, 64.024102687788798 ], [ -21.598960334152082, 64.01815989935983 ], [ -21.605807461045515, 64.002036851919172 ], [ -21.607280239391514, 64.000538235151396 ], [ -21.613791470400031, 63.999401354488896 ], [ -21.652393764860392, 64.00002147121387 ], [ -21.800222499868482, 64.00728488349057 ], [ -21.930300123152165, 64.004059818405892 ], [ -21.837022756195267, 64.047159351722655 ], [ -21.655194593655551, 64.081559274341032 ], [ -21.606051847314916, 64.185987611439089 ], [ -21.615880396762918, 64.257244594262602 ], [ -21.736280125927067, 64.27567312391551 ], [ -21.875642883379168, 64.273718504321948 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IS-3", "NAME_1": "Vesturland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.425120604732115, 64.37612627500755 ], [ -21.414133266999954, 64.383978583000044 ], [ -21.459095831999946, 64.372870184000078 ], [ -21.483021613999938, 64.377752997000073 ], [ -21.483021613999938, 64.383978583000044 ], [ -21.473459438999953, 64.383775132000039 ], [ -21.465321417999917, 64.385321356000077 ], [ -21.44945227799991, 64.390773830000057 ], [ -21.448882615999935, 64.395331122000073 ], [ -21.450306769999941, 64.396551825000074 ], [ -21.452951626999948, 64.396551825000074 ], [ -21.45571855399993, 64.397650458000044 ], [ -21.44945227799991, 64.397650458000044 ], [ -21.63117428299995, 64.40265534100007 ], [ -21.716542120999918, 64.393866278000075 ], [ -21.792103644999941, 64.364081122000073 ], [ -21.796009894999941, 64.359930731000077 ], [ -21.799183722999942, 64.354437567000048 ], [ -21.803944464999915, 64.348456122000073 ], [ -21.812652147999927, 64.342962958000044 ], [ -21.821156378999945, 64.340073960000041 ], [ -21.840565558999913, 64.337103583000044 ], [ -21.850087042999917, 64.336818752000056 ], [ -21.865834113999938, 64.334173895000049 ], [ -21.911122199999909, 64.319728908000059 ], [ -21.925282355999911, 64.31195709800005 ], [ -21.962635870999918, 64.297308661000045 ], [ -22.00999915299991, 64.300116278000075 ], [ -22.099964972999942, 64.315008856000077 ], [ -22.099964972999942, 64.322455145000049 ], [ -22.057972785999937, 64.333319403000075 ], [ -22.018055792999917, 64.349798895000049 ], [ -21.984771287999934, 64.370266018000052 ], [ -21.963368292999917, 64.376125393000052 ], [ -21.94172115799995, 64.370306708000044 ], [ -21.923247850999928, 64.378892320000034 ], [ -21.879017706999946, 64.38507721600007 ], [ -21.859730597999942, 64.390773830000057 ], [ -21.948882615999935, 64.394964911000045 ], [ -21.976429816999939, 64.390773830000057 ], [ -21.995716925999943, 64.384995835000041 ], [ -22.011341925999943, 64.382757880000042 ], [ -22.026600714999915, 64.38812897300005 ], [ -22.045318162999934, 64.405096747000073 ], [ -22.03189042899993, 64.414455471000053 ], [ -22.02961178299995, 64.426459052000041 ], [ -22.029204881999931, 64.440578518000052 ], [ -22.021473761999914, 64.456000067000048 ], [ -22.014800584999932, 64.457220770000049 ], [ -22.006703253999945, 64.454291083000044 ], [ -21.999867316999939, 64.453924872000073 ], [ -21.994699673999946, 64.471258856000077 ], [ -21.989247199999909, 64.479315497000073 ], [ -21.976429816999939, 64.493150132000039 ], [ -21.975087042999917, 64.503729559000078 ], [ -21.949818488999938, 64.513902085000041 ], [ -21.837269660999937, 64.539007880000042 ], [ -21.777821417999917, 64.541571356000077 ], [ -21.782582160999937, 64.550482489000046 ], [ -21.792062954999949, 64.555487372000073 ], [ -21.804595506999931, 64.557074286000045 ], [ -21.818755662999934, 64.555853583000044 ], [ -21.818755662999934, 64.562079169000071 ], [ -21.800526495999918, 64.569566148000035 ], [ -21.762277798999946, 64.59210846600007 ], [ -21.72874915299991, 64.598578192000048 ], [ -21.712513800999943, 64.607163804000038 ], [ -21.702748175999943, 64.610500393000052 ], [ -21.689361131999931, 64.611802476000037 ], [ -21.647450324999909, 64.610500393000052 ], [ -21.651437954999949, 64.592515367000033 ], [ -21.631255662999934, 64.589585679000038 ], [ -21.605580206999946, 64.589341539000031 ], [ -21.592884894999941, 64.579169012000079 ], [ -21.579904751999948, 64.571844794000071 ], [ -21.496652798999946, 64.569525458000044 ], [ -21.513091600999928, 64.575181382000039 ], [ -21.548003709999932, 64.573635158000059 ], [ -21.565541144999941, 64.575751044000071 ], [ -21.579945441999939, 64.582586981000077 ], [ -21.601958787999934, 64.598049221000053 ], [ -21.620187954999949, 64.603013414000031 ], [ -21.579213019999941, 64.610500393000052 ], [ -21.579213019999941, 64.61664459800005 ], [ -21.682240363999938, 64.61664459800005 ], [ -21.682240363999938, 64.624172268000052 ], [ -21.624989386999914, 64.63930898600006 ], [ -21.606516079999949, 64.647691148000035 ], [ -21.589955206999946, 64.649603583000044 ], [ -21.510894334999932, 64.64398834800005 ], [ -21.510894334999932, 64.651434637000079 ], [ -21.588734503999945, 64.658636786000045 ], [ -21.613352016999954, 64.658270575000074 ], [ -21.677316860999952, 64.632513739000046 ], [ -21.702748175999943, 64.631008205000057 ], [ -21.702748175999943, 64.637844143000052 ], [ -21.676584438999953, 64.648586330000057 ], [ -21.666981574999909, 64.655951239000046 ], [ -21.661122199999909, 64.665716864000046 ], [ -21.701039191999939, 64.646918036000045 ], [ -21.712635870999918, 64.64398834800005 ], [ -21.721831834999932, 64.638820705000057 ], [ -21.728423631999931, 64.615708726000037 ], [ -21.740589972999942, 64.610500393000052 ], [ -21.750477667999917, 64.60773346600007 ], [ -21.792103644999941, 64.590033270000049 ], [ -21.844105597999942, 64.58148834800005 ], [ -21.859730597999942, 64.575751044000071 ], [ -21.853505011999914, 64.562079169000071 ], [ -21.883168097999942, 64.566595770000049 ], [ -21.911203579999949, 64.563218492000033 ], [ -21.969593878999945, 64.541571356000077 ], [ -21.993275519999941, 64.529242255000042 ], [ -22.009022589999915, 64.525091864000046 ], [ -22.024891730999911, 64.52798086100006 ], [ -22.035633917999917, 64.537665106000077 ], [ -22.034169074999909, 64.547552802000041 ], [ -22.018055792999917, 64.569525458000044 ], [ -22.038807745999918, 64.566595770000049 ], [ -22.048654751999948, 64.555405992000033 ], [ -22.051503058999913, 64.540106512000079 ], [ -22.051584438999953, 64.524562893000052 ], [ -22.055409308999913, 64.519761460000041 ], [ -22.079457160999937, 64.50063711100006 ], [ -22.083648240999935, 64.491603908000059 ], [ -22.083648240999935, 64.484564520000049 ], [ -22.085031704999949, 64.478664455000057 ], [ -22.093088344999956, 64.472723700000074 ], [ -22.129058397999927, 64.472886460000041 ], [ -22.134755011999914, 64.469305731000077 ], [ -22.138335740999935, 64.465643622000073 ], [ -22.14679928299995, 64.462591864000046 ], [ -22.156727667999917, 64.460435289000031 ], [ -22.164784308999913, 64.459662177000041 ], [ -22.181019660999937, 64.462958075000074 ], [ -22.199045376999948, 64.471869208000044 ], [ -22.214588995999918, 64.484930731000077 ], [ -22.223500128999945, 64.50063711100006 ], [ -22.232085740999935, 64.494696356000077 ], [ -22.239857550999943, 64.49087148600006 ], [ -22.247873501999948, 64.488470770000049 ], [ -22.257639126999948, 64.487005927000041 ], [ -22.243397589999915, 64.499701239000046 ], [ -22.23110917899993, 64.515285549000055 ], [ -22.227040167999917, 64.530340887000079 ], [ -22.237172003999945, 64.541571356000077 ], [ -22.232899542999917, 64.543117580000057 ], [ -22.223500128999945, 64.548407294000071 ], [ -22.231190558999913, 64.552313544000071 ], [ -22.239247199999909, 64.554836330000057 ], [ -22.248036261999914, 64.556057033000059 ], [ -22.257639126999948, 64.555853583000044 ], [ -22.253407355999911, 64.559149481000077 ], [ -22.243397589999915, 64.569525458000044 ], [ -22.243397589999915, 64.575751044000071 ], [ -22.28937740799995, 64.56085846600007 ], [ -22.317738410999937, 64.55499909100007 ], [ -22.339507615999935, 64.555853583000044 ], [ -22.357533331999946, 64.568019924000055 ], [ -22.364816860999952, 64.584418036000045 ], [ -22.361195441999939, 64.60024648600006 ], [ -22.346994594999956, 64.610500393000052 ], [ -22.346994594999956, 64.61664459800005 ], [ -22.364328579999949, 64.618109442000048 ], [ -22.377023891999954, 64.625555731000077 ], [ -22.385731574999909, 64.633856512000079 ], [ -22.391021287999934, 64.637844143000052 ], [ -22.403879360999952, 64.640692450000074 ], [ -22.418324347999942, 64.64789459800005 ], [ -22.432118292999917, 64.656968492000033 ], [ -22.442534959999932, 64.665716864000046 ], [ -22.417591925999943, 64.660956122000073 ], [ -22.391509568999936, 64.649603583000044 ], [ -22.365101691999939, 64.642645575000074 ], [ -22.339507615999935, 64.651434637000079 ], [ -22.360707160999937, 64.651434637000079 ], [ -22.354603644999941, 64.662787177000041 ], [ -22.345041469999956, 64.670314846000053 ], [ -22.333078579999949, 64.67523834800005 ], [ -22.319650844999956, 64.678778387000079 ], [ -22.329253709999932, 64.68423086100006 ], [ -22.333363410999937, 64.685614325000074 ], [ -22.333363410999937, 64.692450262000079 ], [ -22.217518683999913, 64.71743398600006 ], [ -22.188710089999915, 64.733384507000039 ], [ -22.188710089999915, 64.740220445000034 ], [ -22.250721808999913, 64.71710846600007 ], [ -22.283762173999946, 64.709540106000077 ], [ -22.315907355999911, 64.706732489000046 ], [ -22.343169725999928, 64.699204820000034 ], [ -22.373890753999945, 64.68500397300005 ], [ -22.402088995999918, 64.676336981000077 ], [ -22.42210852799991, 64.685614325000074 ], [ -22.409047003999945, 64.689642645000049 ], [ -22.38117428299995, 64.706732489000046 ], [ -22.360829230999911, 64.715806382000039 ], [ -22.349232550999943, 64.723089911000045 ], [ -22.339507615999935, 64.733384507000039 ], [ -22.346994594999956, 64.740220445000034 ], [ -22.338002081999946, 64.742010809000078 ], [ -22.332427537999934, 64.744859117000033 ], [ -22.319650844999956, 64.753851630000042 ], [ -22.34203040299991, 64.765122789000031 ], [ -22.372141079999949, 64.768744208000044 ], [ -22.436390753999945, 64.767523505000042 ], [ -22.42210852799991, 64.781195380000042 ], [ -22.442534959999932, 64.781195380000042 ], [ -22.435536261999914, 64.79132721600007 ], [ -22.417103644999941, 64.810980536000045 ], [ -22.40843665299991, 64.822739976000037 ], [ -22.418771938999953, 64.821519273000035 ], [ -22.427886522999927, 64.817572333000044 ], [ -22.43578040299991, 64.811021226000037 ], [ -22.442534959999932, 64.802313544000071 ], [ -22.448841925999943, 64.811590887000079 ], [ -22.457020636999914, 64.815334377000056 ], [ -22.466420050999943, 64.814195054000038 ], [ -22.476714647999927, 64.809149481000077 ], [ -22.476714647999927, 64.802313544000071 ], [ -22.53189042899993, 64.809149481000077 ], [ -22.547474738999938, 64.805812893000052 ], [ -22.577015753999945, 64.791571356000077 ], [ -22.593413865999935, 64.788641669000071 ], [ -22.593413865999935, 64.781195380000042 ], [ -22.585560675999943, 64.780218817000048 ], [ -22.566070115999935, 64.774359442000048 ], [ -22.658192511999914, 64.766669012000079 ], [ -22.682118292999917, 64.774359442000048 ], [ -22.658558722999942, 64.772935289000031 ], [ -22.646555141999954, 64.77374909100007 ], [ -22.638050910999937, 64.777777411000045 ], [ -22.64093990799995, 64.783392645000049 ], [ -22.651234503999945, 64.791571356000077 ], [ -22.663685675999943, 64.799017645000049 ], [ -22.67251542899993, 64.802313544000071 ], [ -22.778391079999949, 64.802313544000071 ], [ -22.762766079999949, 64.794989325000074 ], [ -22.710072394999941, 64.781195380000042 ], [ -22.710072394999941, 64.774359442000048 ], [ -22.736887173999946, 64.774807033000059 ], [ -22.783924933999913, 64.792710679000038 ], [ -22.812570766999954, 64.794867255000042 ], [ -22.805734829999949, 64.794867255000042 ], [ -22.931141730999911, 64.799790757000039 ], [ -23.050363735999952, 64.799790757000039 ], [ -23.188099738999938, 64.80414459800005 ], [ -23.246245897999927, 64.830471096000053 ], [ -23.301665818999936, 64.832220770000049 ], [ -23.398426886999914, 64.822739976000037 ], [ -23.399037238999938, 64.819891669000071 ], [ -23.416493292999917, 64.806382554000038 ], [ -23.423329230999911, 64.802313544000071 ], [ -23.43390865799995, 64.798041083000044 ], [ -23.445057745999918, 64.794907945000034 ], [ -23.457142706999946, 64.793646552000041 ], [ -23.573475714999915, 64.809149481000077 ], [ -23.56273352799991, 64.813381252000056 ], [ -23.550933397999927, 64.815904039000031 ], [ -23.538441535999937, 64.816799221000053 ], [ -23.555246548999946, 64.819810289000031 ], [ -23.593495245999918, 64.810980536000045 ], [ -23.623524542999917, 64.794256903000075 ], [ -23.628081834999932, 64.774359442000048 ], [ -23.646595831999946, 64.750881252000056 ], [ -23.673939581999946, 64.741115627000056 ], [ -23.747873501999948, 64.740220445000034 ], [ -23.769520636999914, 64.737616278000075 ], [ -23.813303188999953, 64.727118231000077 ], [ -23.833566860999952, 64.725897528000075 ], [ -23.905873175999943, 64.743963934000078 ], [ -23.921294725999928, 64.753607489000046 ], [ -23.935617641999954, 64.756048895000049 ], [ -23.946115688999953, 64.760891018000052 ], [ -23.950266079999949, 64.777777411000045 ], [ -23.955881313999953, 64.786688544000071 ], [ -23.998646613999938, 64.815904039000031 ], [ -24.016957160999937, 64.831732489000046 ], [ -24.032460089999915, 64.848537502000056 ], [ -24.060047980999911, 64.891058661000045 ], [ -24.053293423999946, 64.898504950000074 ], [ -24.033111131999931, 64.889634507000039 ], [ -24.014271613999938, 64.893377997000073 ], [ -23.977528449999909, 64.912176825000074 ], [ -23.958404100999928, 64.917303778000075 ], [ -23.849761522999927, 64.930568752000056 ], [ -23.828521287999934, 64.929510809000078 ], [ -23.748117641999954, 64.906927802000041 ], [ -23.638010219999956, 64.898504950000074 ], [ -23.628529425999943, 64.901109117000033 ], [ -23.610259568999936, 64.913804429000038 ], [ -23.600819464999915, 64.918361721000053 ], [ -23.559437628999945, 64.917385158000059 ], [ -23.549305792999917, 64.921779690000051 ], [ -23.512847459999932, 64.946356512000079 ], [ -23.471750454999949, 64.952378648000035 ], [ -23.38109290299991, 64.94562409100007 ], [ -23.38109290299991, 64.953111070000034 ], [ -23.386830206999946, 64.956000067000048 ], [ -23.389759894999941, 64.958889065000051 ], [ -23.391835089999915, 64.962307033000059 ], [ -23.395334438999953, 64.966782945000034 ], [ -23.353423631999931, 64.968003648000035 ], [ -23.339751756999931, 64.962632554000038 ], [ -23.346913214999915, 64.94562409100007 ], [ -23.333729620999918, 64.941392320000034 ], [ -23.325103318999936, 64.94672272300005 ], [ -23.317209438999953, 64.95343659100007 ], [ -23.306019660999937, 64.953111070000034 ], [ -23.302398240999935, 64.943508205000057 ], [ -23.302235480999911, 64.929510809000078 ], [ -23.297027147999927, 64.922267971000053 ], [ -23.278675910999937, 64.932603257000039 ], [ -23.263091600999928, 64.926255601000037 ], [ -23.245025193999936, 64.930121161000045 ], [ -23.230213995999918, 64.939520575000074 ], [ -23.224029100999928, 64.949408270000049 ], [ -23.227772589999915, 64.95962148600006 ], [ -23.235340949999909, 64.972601630000042 ], [ -23.240589972999942, 64.986883856000077 ], [ -23.237660285999937, 65.000921942000048 ], [ -23.210194464999915, 65.016913153000075 ], [ -23.168568488999938, 65.020086981000077 ], [ -23.086822068999936, 65.014593817000048 ], [ -23.094349738999938, 65.003159898000035 ], [ -23.106800910999937, 64.995428778000075 ], [ -23.135324673999946, 64.98663971600007 ], [ -23.132435675999943, 64.98273346600007 ], [ -23.127797003999945, 64.97296784100007 ], [ -23.139515753999945, 64.971869208000044 ], [ -23.147938605999911, 64.968085028000075 ], [ -23.15493730399993, 64.961737372000073 ], [ -23.162587042999917, 64.953111070000034 ], [ -23.107289191999939, 64.918361721000053 ], [ -23.113270636999914, 64.933539130000042 ], [ -23.114003058999913, 64.946112372000073 ], [ -23.109527147999927, 64.956854559000078 ], [ -23.09984290299991, 64.966782945000034 ], [ -23.093413865999935, 64.968980210000041 ], [ -23.07445227799991, 64.970526434000078 ], [ -23.066395636999914, 64.97296784100007 ], [ -23.059925910999937, 64.978583075000074 ], [ -23.053578253999945, 64.991400458000044 ], [ -23.048980272999927, 64.99750397300005 ], [ -23.021392381999931, 65.013006903000075 ], [ -22.992787238999938, 65.014227606000077 ], [ -22.965646938999953, 65.004299221000053 ], [ -22.942860480999911, 64.98663971600007 ], [ -22.926991339999915, 64.997015692000048 ], [ -22.906076626999948, 65.003485419000071 ], [ -22.844715949999909, 65.009914455000057 ], [ -22.785227016999954, 65.027573960000041 ], [ -22.801136847999942, 65.031927802000041 ], [ -22.873890753999945, 65.027573960000041 ], [ -22.873890753999945, 65.035060940000051 ], [ -22.831857876999948, 65.039129950000074 ], [ -22.757069464999915, 65.071926174000055 ], [ -22.717518683999913, 65.075995184000078 ], [ -22.723255988999938, 65.071966864000046 ], [ -22.730580206999946, 65.069159247000073 ], [ -22.712757941999939, 65.067124742000033 ], [ -22.695871548999946, 65.062323309000078 ], [ -22.697417772999927, 65.054632880000042 ], [ -22.697987433999913, 65.053290106000077 ], [ -22.69749915299991, 65.053208726000037 ], [ -22.695871548999946, 65.049302476000037 ], [ -22.709868943999936, 65.040594794000071 ], [ -22.740061001999948, 65.033433335000041 ], [ -22.751088019999941, 65.027573960000041 ], [ -22.737863735999952, 65.02602773600006 ], [ -22.721180792999917, 65.026556708000044 ], [ -22.704009568999936, 65.029486395000049 ], [ -22.689605272999927, 65.035060940000051 ], [ -22.682932094999956, 65.015692450000074 ], [ -22.674427863999938, 65.007554429000038 ], [ -22.641184048999946, 65.000921942000048 ], [ -22.596506313999953, 64.983343817000048 ], [ -22.579741990999935, 64.980414130000042 ], [ -22.579741990999935, 64.98663971600007 ], [ -22.592193162999934, 64.989813544000071 ], [ -22.603423631999931, 64.996079820000034 ], [ -22.628163214999915, 65.014593817000048 ], [ -22.601063605999911, 65.029974677000041 ], [ -22.58617102799991, 65.034857489000046 ], [ -22.566070115999935, 65.035060940000051 ], [ -22.564116990999935, 65.048325914000031 ], [ -22.545399542999917, 65.05219147300005 ], [ -22.461903449999909, 65.050482489000046 ], [ -22.379994269999941, 65.058783270000049 ], [ -22.244740363999938, 65.047267971000053 ], [ -22.155181443999936, 65.027573960000041 ], [ -22.145008917999917, 65.030218817000048 ], [ -22.129709438999953, 65.039211330000057 ], [ -22.120432094999956, 65.041896877000056 ], [ -22.045318162999934, 65.041896877000056 ], [ -22.025054490999935, 65.037909247000073 ], [ -22.003570115999935, 65.030829169000071 ], [ -21.982533331999946, 65.027533270000049 ], [ -21.980620897999927, 65.028306382000039 ], [ -21.963368292999917, 65.035060940000051 ], [ -21.937163865999935, 65.027533270000049 ], [ -21.826242641999954, 65.035060940000051 ], [ -21.799672003999945, 65.044623114000046 ], [ -21.798654751999948, 65.057033596000053 ], [ -21.816477016999954, 65.066961981000077 ], [ -21.846669074999909, 65.069159247000073 ], [ -21.83657792899993, 65.082424221000053 ], [ -21.824696417999917, 65.086818752000056 ], [ -21.810170050999943, 65.089260158000059 ], [ -21.792103644999941, 65.096502997000073 ], [ -21.779286261999914, 65.10805898600006 ], [ -21.737416144999941, 65.159165757000039 ], [ -21.734120245999918, 65.193793036000045 ], [ -21.766102667999917, 65.207953192000048 ], [ -21.809478318999936, 65.206122137000079 ], [ -21.84048417899993, 65.192694403000075 ], [ -21.84048417899993, 65.18585846600007 ], [ -21.833078579999949, 65.18585846600007 ], [ -21.833078579999949, 65.178412177000041 ], [ -21.983876105999911, 65.123765367000033 ], [ -22.03384355399993, 65.114935614000046 ], [ -22.318959113999938, 65.138413804000038 ], [ -22.390736456999946, 65.163275458000044 ], [ -22.401600714999915, 65.165350653000075 ], [ -22.40648352799991, 65.164740302000041 ], [ -22.420725063999953, 65.160223700000074 ], [ -22.511870897999927, 65.154201565000051 ], [ -22.538726365999935, 65.159165757000039 ], [ -22.557687954999949, 65.168931382000039 ], [ -22.542347785999937, 65.173163153000075 ], [ -22.513091600999928, 65.177069403000075 ], [ -22.490345831999946, 65.18585846600007 ], [ -22.48273678299995, 65.180650132000039 ], [ -22.47524980399993, 65.178534247000073 ], [ -22.456857876999948, 65.178412177000041 ], [ -22.456857876999948, 65.18585846600007 ], [ -22.478993292999917, 65.192775783000059 ], [ -22.504302537999934, 65.193833726000037 ], [ -22.552479620999918, 65.18585846600007 ], [ -22.542225714999915, 65.200669664000031 ], [ -22.524037238999938, 65.214992580000057 ], [ -22.490345831999946, 65.233628648000035 ], [ -22.443837042999917, 65.242987372000073 ], [ -22.426177537999934, 65.251450914000031 ], [ -22.428863084999932, 65.267767645000049 ], [ -22.414173956999946, 65.270453192000048 ], [ -22.378041144999941, 65.267767645000049 ], [ -22.369130011999914, 65.271673895000049 ], [ -22.339507615999935, 65.295721747000073 ], [ -22.312855597999942, 65.304348049000055 ], [ -22.201283331999946, 65.317694403000075 ], [ -22.107004360999952, 65.348334052000041 ], [ -22.070871548999946, 65.367377020000049 ], [ -22.006825324999909, 65.381252346000053 ], [ -21.983876105999911, 65.391913153000075 ], [ -21.986154751999948, 65.393011786000045 ], [ -21.988636847999942, 65.392767645000049 ], [ -21.990386522999927, 65.393622137000079 ], [ -21.990101691999939, 65.398138739000046 ], [ -21.975087042999917, 65.397406317000048 ], [ -21.950550910999937, 65.385891018000052 ], [ -21.935454881999931, 65.38507721600007 ], [ -21.944406704999949, 65.400539455000057 ], [ -21.949086066999939, 65.405585028000075 ], [ -21.887074347999942, 65.420721747000073 ], [ -21.757232225999928, 65.437892971000053 ], [ -21.719349738999938, 65.447373765000066 ], [ -21.695301887372182, 65.453355210174777 ], [ -21.678180303777992, 65.460035712478145 ], [ -21.653349779268922, 65.485667223563496 ], [ -21.640973273297902, 65.494038804746992 ], [ -21.614566615856631, 65.501841946048955 ], [ -21.603249477981024, 65.488225205728611 ], [ -21.602887742775124, 65.458795478128764 ], [ -21.605652432313889, 65.447142442569657 ], [ -21.611724412851402, 65.431717027119078 ], [ -21.611000942439546, 65.426575222568431 ], [ -21.60839128343099, 65.421330065230279 ], [ -21.610458340080356, 65.417118434867859 ], [ -21.618209805438198, 65.413242703088258 ], [ -21.642730271584753, 65.404121813071185 ], [ -21.653582323265596, 65.395491848569918 ], [ -21.656941291107728, 65.388877264773896 ], [ -21.654822556715601, 65.382521064295645 ], [ -21.648311326606461, 65.3774309347898 ], [ -21.627795783448676, 65.366759752060887 ], [ -21.621387905227664, 65.362418932287881 ], [ -21.618338995748047, 65.361850491506971 ], [ -21.532168544642616, 65.372134101507527 ], [ -21.494935675740862, 65.372030747820702 ], [ -21.483876919384329, 65.369317735125321 ], [ -21.476513026754787, 65.363555812950381 ], [ -21.458968878710778, 65.341128241874856 ], [ -21.400522833761784, 65.290795397489546 ], [ -21.372333339611941, 65.276274318704793 ], [ -21.365046963146824, 65.268832913508106 ], [ -21.358225673775848, 65.264905503985801 ], [ -21.35186947329754, 65.26294180012394 ], [ -21.343368700005499, 65.261649888931174 ], [ -21.334764573925952, 65.259014391500955 ], [ -21.283113979926213, 65.232426866007017 ], [ -21.276085984980227, 65.225424710382072 ], [ -21.270814989220355, 65.217828273755799 ], [ -21.267766078841476, 65.211213690859097 ], [ -21.24895585802642, 65.184936225526371 ], [ -21.24606197817775, 65.177158921746809 ], [ -21.24743140283698, 65.169924221225813 ], [ -21.253942633845497, 65.162637843861376 ], [ -21.279160731982188, 65.140623683935814 ], [ -21.283734096651244, 65.135766100225339 ], [ -21.286576300555851, 65.131270249922068 ], [ -21.288204107633476, 65.125999254162195 ], [ -21.289160122042006, 65.119643052784625 ], [ -21.288953415567676, 65.112434190685349 ], [ -21.286679653343356, 65.102744858988046 ], [ -21.27034990122695, 65.08005890639339 ], [ -21.264613816574354, 65.070447089061872 ], [ -21.257895880890203, 65.065434474821132 ], [ -21.239783291165963, 65.058587347927755 ], [ -21.229783901106146, 65.053652248952119 ], [ -21.211697149803626, 65.040888170252799 ], [ -21.205831874841181, 65.037735907985734 ], [ -21.194437221700412, 65.032826647431818 ], [ -21.191207445067562, 65.029312649059477 ], [ -21.190044725084022, 65.024816800554845 ], [ -21.19017391629319, 65.021509507757571 ], [ -21.191439989064236, 65.014791572073364 ], [ -21.113279384835721, 64.985491034783422 ], [ -21.084418097117464, 64.978049627788039 ], [ -21.051009284051247, 64.972933662558432 ], [ -20.984217495441044, 64.972365220878203 ], [ -20.975148281368092, 64.961771552515131 ], [ -20.88913285989355, 64.937406114200769 ], [ -20.875102708423242, 64.935468247861309 ], [ -20.792162034850037, 64.932832750431032 ], [ -20.781284145646794, 64.930869046569228 ], [ -20.742836879918059, 64.914745999128513 ], [ -20.727127245426061, 64.913712470354199 ], [ -20.405648159335101, 64.954976101565819 ], [ -20.391230435136492, 64.954175116788178 ], [ -20.343791469700591, 64.943736477156676 ], [ -20.105046353406465, 64.94110097882708 ], [ -19.809999762279233, 64.935519924704749 ], [ -19.800723842631214, 64.933969631992909 ], [ -19.795711229289793, 64.929112047383057 ], [ -19.793359950900992, 64.924151109086381 ], [ -19.792688158231897, 64.91722646782722 ], [ -19.793618333319444, 64.910405178456188 ], [ -19.799431932337825, 64.901413478749021 ], [ -19.809043747870646, 64.894643867120749 ], [ -19.923662074645051, 64.840848701206539 ], [ -19.977431403036803, 64.801626289121941 ], [ -19.992055832810422, 64.777958482797715 ], [ -19.993321905581467, 64.772222399044438 ], [ -19.993864508840034, 64.765091051310947 ], [ -19.990970628092043, 64.750259915062998 ], [ -19.990531379419622, 64.73837433550716 ], [ -19.992779303222278, 64.730467841417692 ], [ -19.997042608629499, 64.723569038580251 ], [ -20.001176723726815, 64.719925848998685 ], [ -20.016731330386619, 64.710339870988207 ], [ -20.044972499581206, 64.698247585857359 ], [ -20.313974167573804, 64.643858140740576 ], [ -20.628321905931216, 64.55662832333843 ], [ -20.789784918938835, 64.531410224302363 ], [ -20.813995326722932, 64.523813789474787 ], [ -20.930034755899271, 64.463920802802761 ], [ -21.078475307789233, 64.403872789197806 ], [ -21.149194505022365, 64.364030260388176 ], [ -21.146403977961199, 64.377698675753265 ], [ -21.143432582847424, 64.381186834804566 ], [ -21.145758022814505, 64.385786037895286 ], [ -21.149633754594106, 64.388628241799893 ], [ -21.163121303705225, 64.393330796778798 ], [ -21.172939825712376, 64.395552883958374 ], [ -21.217433233556903, 64.39898936616629 ], [ -21.22947384274363, 64.398136705444585 ], [ -21.270246548439445, 64.386845405091321 ], [ -21.362721524079063, 64.385062568382807 ], [ -21.425120604732115, 64.37612627500755 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IS-4", "NAME_1": "Vestfirðir" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.695301887372182, 65.453355210174777 ], [ -21.79133053299995, 65.440130927000041 ], [ -21.826242641999954, 65.43976471600007 ], [ -21.897572394999941, 65.446519273000035 ], [ -21.956898566999939, 65.439113674000055 ], [ -21.976429816999939, 65.43976471600007 ], [ -21.956776495999918, 65.455267645000049 ], [ -21.935454881999931, 65.467027085000041 ], [ -21.971547003999945, 65.48187897300005 ], [ -21.985096808999913, 65.492743231000077 ], [ -21.990101691999939, 65.508002020000049 ], [ -22.003163214999915, 65.503892320000034 ], [ -22.016957160999937, 65.50141022300005 ], [ -22.031158006999931, 65.500433661000045 ], [ -22.045318162999934, 65.501166083000044 ], [ -22.039662238999938, 65.487127997000073 ], [ -22.048573370999918, 65.482611395000049 ], [ -22.06281490799995, 65.484035549000055 ], [ -22.073231574999909, 65.487494208000044 ], [ -22.082427537999934, 65.496486721000053 ], [ -22.101185675999943, 65.520453192000048 ], [ -22.114247199999909, 65.528509833000044 ], [ -22.109038865999935, 65.511623440000051 ], [ -22.111398891999954, 65.497463283000059 ], [ -22.120269334999932, 65.485093492000033 ], [ -22.134755011999914, 65.473863023000035 ], [ -22.152414516999954, 65.464585679000038 ], [ -22.162587042999917, 65.461004950000074 ], [ -22.171620245999918, 65.45962148600006 ], [ -22.175282355999911, 65.455308335000041 ], [ -22.181507941999939, 65.44594961100006 ], [ -22.189605272999927, 65.436590887000079 ], [ -22.199208136999914, 65.432318427000041 ], [ -22.236927863999938, 65.430812893000052 ], [ -22.253814256999931, 65.433661200000074 ], [ -22.280669725999928, 65.451320705000057 ], [ -22.339507615999935, 65.473863023000035 ], [ -22.381581183999913, 65.482855536000045 ], [ -22.387196417999917, 65.491685289000031 ], [ -22.36750240799995, 65.508002020000049 ], [ -22.345814581999946, 65.514715887000079 ], [ -22.235096808999913, 65.524807033000059 ], [ -22.188710089999915, 65.538397528000075 ], [ -22.164784308999913, 65.541489976000037 ], [ -22.153716600999928, 65.545884507000039 ], [ -22.150746222999942, 65.556138414000031 ], [ -22.15062415299991, 65.567938544000071 ], [ -22.148345506999931, 65.576890367000033 ], [ -22.139719204999949, 65.583929755000042 ], [ -22.128651495999918, 65.58930084800005 ], [ -22.106800910999937, 65.596747137000079 ], [ -22.136382615999935, 65.593329169000071 ], [ -22.209828253999945, 65.548976955000057 ], [ -22.243885870999918, 65.537095445000034 ], [ -22.276437954999949, 65.53070709800005 ], [ -22.346994594999956, 65.528509833000044 ], [ -22.346994594999956, 65.535345770000049 ], [ -22.304676886999914, 65.548041083000044 ], [ -22.291737433999913, 65.555161851000037 ], [ -22.291737433999913, 65.562648830000057 ], [ -22.312489386999914, 65.561997789000031 ], [ -22.327381964999915, 65.55609772300005 ], [ -22.353260870999918, 65.541489976000037 ], [ -22.373931443999936, 65.538153387000079 ], [ -22.386586066999939, 65.542222398000035 ], [ -22.398182745999918, 65.547796942000048 ], [ -22.415882941999939, 65.548976955000057 ], [ -22.415882941999939, 65.541489976000037 ], [ -22.403716600999928, 65.53384023600006 ], [ -22.40884355399993, 65.52484772300005 ], [ -22.423410610999952, 65.517320054000038 ], [ -22.478627081999946, 65.508002020000049 ], [ -22.493397589999915, 65.51117584800005 ], [ -22.504017706999946, 65.528509833000044 ], [ -22.505034959999932, 65.544907945000034 ], [ -22.501210089999915, 65.557196356000077 ], [ -22.501454230999911, 65.569647528000075 ], [ -22.514556443999936, 65.58657461100006 ], [ -22.533924933999913, 65.621771552000041 ], [ -22.545887824999909, 65.634019273000035 ], [ -22.558379686999956, 65.624741929000038 ], [ -22.557687954999949, 65.619370835000041 ], [ -22.558420376999948, 65.608547268000052 ], [ -22.55695553299995, 65.597886460000041 ], [ -22.541005011999914, 65.576605536000045 ], [ -22.540882941999939, 65.568426825000074 ], [ -22.546538865999935, 65.560736395000049 ], [ -22.565744594999956, 65.543117580000057 ], [ -22.576649542999917, 65.536281643000052 ], [ -22.589182094999956, 65.535589911000045 ], [ -22.603993292999917, 65.54523346600007 ], [ -22.622954881999931, 65.564154364000046 ], [ -22.631459113999938, 65.565822658000059 ], [ -22.637766079999949, 65.539780992000033 ], [ -22.645334438999953, 65.53188711100006 ], [ -22.656158006999931, 65.528062242000033 ], [ -22.669097459999932, 65.528509833000044 ], [ -22.676828579999949, 65.532782294000071 ], [ -22.684803839999915, 65.540838934000078 ], [ -22.707630988999938, 65.572211005000042 ], [ -22.711984829999949, 65.58852773600006 ], [ -22.704741990999935, 65.605292059000078 ], [ -22.682118292999917, 65.624090887000079 ], [ -22.691232876999948, 65.629584052000041 ], [ -22.696278449999909, 65.628159898000035 ], [ -22.701242641999954, 65.624741929000038 ], [ -22.710072394999941, 65.624090887000079 ], [ -22.736805792999917, 65.631537177000041 ], [ -22.753651495999918, 65.631537177000041 ], [ -22.759388800999943, 65.629828192000048 ], [ -22.764027472999942, 65.624090887000079 ], [ -22.763417120999918, 65.618353583000044 ], [ -22.754465298999946, 65.596747137000079 ], [ -22.744862433999913, 65.584377346000053 ], [ -22.717518683999913, 65.508002020000049 ], [ -22.731516079999949, 65.501776434000078 ], [ -22.748605923999946, 65.503322658000059 ], [ -22.767079230999911, 65.507228908000059 ], [ -22.785227016999954, 65.508002020000049 ], [ -22.785227016999954, 65.514227606000077 ], [ -22.77953040299991, 65.522528387000079 ], [ -22.784413214999915, 65.529282945000034 ], [ -22.795725063999953, 65.533677476000037 ], [ -22.809152798999946, 65.535345770000049 ], [ -22.842274542999917, 65.530829169000071 ], [ -22.853260870999918, 65.532049872000073 ], [ -22.854115363999938, 65.541489976000037 ], [ -22.862294074999909, 65.540716864000046 ], [ -22.887603318999936, 65.541489976000037 ], [ -22.887603318999936, 65.548976955000057 ], [ -22.863392706999946, 65.559068101000037 ], [ -22.818714972999942, 65.584540106000077 ], [ -22.791981574999909, 65.589992580000057 ], [ -22.801991339999915, 65.600978908000059 ], [ -22.818837042999917, 65.608587958000044 ], [ -22.854115363999938, 65.617905992000033 ], [ -22.85960852799991, 65.595607815000051 ], [ -22.879953579999949, 65.57648346600007 ], [ -22.905262824999909, 65.566880601000037 ], [ -22.925770636999914, 65.573187567000048 ], [ -22.932240363999938, 65.584173895000049 ], [ -22.936756964999915, 65.596380927000041 ], [ -22.942738410999937, 65.606350002000056 ], [ -22.95343990799995, 65.610419012000079 ], [ -22.956044074999909, 65.603664455000057 ], [ -22.961008266999954, 65.572088934000078 ], [ -22.963978644999941, 65.562648830000057 ], [ -22.985218878999945, 65.551214911000045 ], [ -23.045318162999934, 65.545070705000057 ], [ -23.073475714999915, 65.538397528000075 ], [ -23.128651495999918, 65.549750067000048 ], [ -23.158111131999931, 65.562201239000046 ], [ -23.155140753999945, 65.576890367000033 ], [ -23.155140753999945, 65.583156643000052 ], [ -23.183013475999928, 65.576361395000049 ], [ -23.200021938999953, 65.556586005000042 ], [ -23.201324022999927, 65.534735419000071 ], [ -23.182443813999953, 65.521673895000049 ], [ -23.182443813999953, 65.514227606000077 ], [ -23.195383266999954, 65.508612372000073 ], [ -23.218088344999956, 65.493109442000048 ], [ -23.231434699999909, 65.487494208000044 ], [ -23.247425910999937, 65.485419012000079 ], [ -23.314035610999952, 65.488714911000045 ], [ -23.341420050999943, 65.493841864000046 ], [ -23.357492641999954, 65.494940497000073 ], [ -23.373036261999914, 65.498195705000057 ], [ -23.384917772999927, 65.505601304000038 ], [ -23.395904100999928, 65.514471747000073 ], [ -23.401519334999932, 65.514227606000077 ], [ -23.408273891999954, 65.513739325000074 ], [ -23.413075324999909, 65.51235586100006 ], [ -23.423329230999911, 65.508002020000049 ], [ -23.418812628999945, 65.506659247000073 ], [ -23.415882941999939, 65.50531647300005 ], [ -23.409006313999953, 65.501166083000044 ], [ -23.43773352799991, 65.496161200000074 ], [ -23.490345831999946, 65.477932033000059 ], [ -23.625396287999934, 65.466457424000055 ], [ -23.656076626999948, 65.473863023000035 ], [ -23.656971808999913, 65.461859442000048 ], [ -23.661284959999932, 65.457993882000039 ], [ -23.668039516999954, 65.456976630000042 ], [ -23.676503058999913, 65.453355210000041 ], [ -23.714100714999915, 65.42609284100007 ], [ -23.897531704999949, 65.40460846600007 ], [ -23.943837042999917, 65.406927802000041 ], [ -23.984364386999914, 65.418646552000041 ], [ -23.984364386999914, 65.42609284100007 ], [ -23.97874915299991, 65.434027411000045 ], [ -23.982980923999946, 65.441310940000051 ], [ -23.993031378999945, 65.447821356000077 ], [ -24.004872199999909, 65.453355210000041 ], [ -23.98664303299995, 65.452826239000046 ], [ -23.978911912999934, 65.450751044000071 ], [ -23.970692511999914, 65.446519273000035 ], [ -23.967762824999909, 65.464911200000074 ], [ -23.986195441999939, 65.474188544000071 ], [ -24.009022589999915, 65.472845770000049 ], [ -24.019154425999943, 65.45962148600006 ], [ -24.043080206999946, 65.474554755000042 ], [ -24.196685350999928, 65.501166083000044 ], [ -24.481760219999956, 65.488470770000049 ], [ -24.518299933999913, 65.491359768000052 ], [ -24.539906378999945, 65.508002020000049 ], [ -24.496001756999931, 65.51898834800005 ], [ -24.473784959999932, 65.528225002000056 ], [ -24.464182094999956, 65.538397528000075 ], [ -24.451568162999934, 65.54523346600007 ], [ -24.393137173999946, 65.560736395000049 ], [ -24.375396287999934, 65.569403387000079 ], [ -24.37132727799991, 65.584947007000039 ], [ -24.371490037999934, 65.60297272300005 ], [ -24.365793423999946, 65.617905992000033 ], [ -24.335031704999949, 65.626369533000059 ], [ -24.317534959999932, 65.636135158000059 ], [ -24.30337480399993, 65.638373114000046 ], [ -24.277943488999938, 65.636419989000046 ], [ -24.180653449999909, 65.612372137000079 ], [ -24.15257727799991, 65.610419012000079 ], [ -24.13540605399993, 65.606146552000041 ], [ -24.080555792999917, 65.576890367000033 ], [ -24.041167772999927, 65.566473700000074 ], [ -23.971302863999938, 65.558661200000074 ], [ -23.954701300999943, 65.54913971600007 ], [ -23.940174933999913, 65.537909247000073 ], [ -23.922963019999941, 65.528509833000044 ], [ -23.89281165299991, 65.522162177000041 ], [ -23.863636847999942, 65.523016669000071 ], [ -23.806792772999927, 65.535345770000049 ], [ -23.852447068999936, 65.53461334800005 ], [ -23.876088019999941, 65.537298895000049 ], [ -23.895008917999917, 65.541489976000037 ], [ -23.911366339999915, 65.550482489000046 ], [ -23.925404425999943, 65.562241929000038 ], [ -23.940785285999937, 65.572495835000041 ], [ -23.960804816999939, 65.576890367000033 ], [ -24.00999915299991, 65.599432684000078 ], [ -24.03734290299991, 65.619208075000074 ], [ -24.069243943999936, 65.63703034100007 ], [ -24.086781378999945, 65.651353257000039 ], [ -23.935943162999934, 65.638373114000046 ], [ -23.838002081999946, 65.614447333000044 ], [ -23.806792772999927, 65.610419012000079 ], [ -23.825917120999918, 65.625921942000048 ], [ -23.852650519999941, 65.63898346600007 ], [ -23.881214972999942, 65.648098049000055 ], [ -23.924672003999945, 65.654730536000045 ], [ -23.976551886999914, 65.669134833000044 ], [ -24.022857225999928, 65.676174221000053 ], [ -24.044911261999914, 65.68500397300005 ], [ -24.080555792999917, 65.706000067000048 ], [ -24.121571417999917, 65.740790106000077 ], [ -24.124867316999939, 65.753485419000071 ], [ -24.12368730399993, 65.765570380000042 ], [ -24.124826626999948, 65.777329820000034 ], [ -24.135161912999934, 65.789129950000074 ], [ -24.092844204999949, 65.804754950000074 ], [ -24.049875454999949, 65.803534247000073 ], [ -23.628081834999932, 65.706000067000048 ], [ -23.618560350999928, 65.701076565000051 ], [ -23.600819464999915, 65.68618398600006 ], [ -23.573597785999937, 65.677435614000046 ], [ -23.56663977799991, 65.67251211100006 ], [ -23.556385870999918, 65.654689846000053 ], [ -23.56086178299995, 65.643377997000073 ], [ -23.571441209999932, 65.633002020000049 ], [ -23.579701300999943, 65.617905992000033 ], [ -23.561756964999915, 65.613674221000053 ], [ -23.538807745999918, 65.621283270000049 ], [ -23.497792120999918, 65.645209052000041 ], [ -23.493804490999935, 65.640204169000071 ], [ -23.477894660999937, 65.631537177000041 ], [ -23.46703040299991, 65.64093659100007 ], [ -23.412668423999946, 65.635239976000037 ], [ -23.388539191999939, 65.638373114000046 ], [ -23.388539191999939, 65.645209052000041 ], [ -23.397328253999945, 65.647202867000033 ], [ -23.401437954999949, 65.649481512000079 ], [ -23.409006313999953, 65.65884023600006 ], [ -23.391590949999909, 65.659369208000044 ], [ -23.346913214999915, 65.67251211100006 ], [ -23.33071855399993, 65.673325914000031 ], [ -23.31468665299991, 65.672349351000037 ], [ -23.299427863999938, 65.673163153000075 ], [ -23.28547115799995, 65.679348049000055 ], [ -23.404123501999948, 65.675197658000059 ], [ -23.458241339999915, 65.682440497000073 ], [ -23.497792120999918, 65.693019924000055 ], [ -23.511626756999931, 65.699693101000037 ], [ -23.529408331999946, 65.711493231000077 ], [ -23.539173956999946, 65.722723700000074 ], [ -23.529164191999939, 65.727728583000044 ], [ -23.466908331999946, 65.73969147300005 ], [ -23.45335852799991, 65.737372137000079 ], [ -23.43781490799995, 65.731634833000044 ], [ -23.356190558999913, 65.736232815000051 ], [ -23.330189581999946, 65.745998440000051 ], [ -23.309681769999941, 65.748236395000049 ], [ -23.26593990799995, 65.741278387000079 ], [ -23.244536912999934, 65.740383205000057 ], [ -23.224029100999928, 65.748236395000049 ], [ -23.23664303299995, 65.753485419000071 ], [ -23.242909308999913, 65.755194403000075 ], [ -23.251332160999937, 65.755072333000044 ], [ -23.251332160999937, 65.761216539000031 ], [ -23.204213019999941, 65.77484772300005 ], [ -23.189849412999934, 65.782375393000052 ], [ -23.244699673999946, 65.779120184000078 ], [ -23.276275193999936, 65.773138739000046 ], [ -23.319243943999936, 65.757025458000044 ], [ -23.588775193999936, 65.759751695000034 ], [ -23.641713019999941, 65.768703518000052 ], [ -23.676503058999913, 65.782375393000052 ], [ -23.72915605399993, 65.774359442000048 ], [ -23.741078253999945, 65.778631903000075 ], [ -23.754953579999949, 65.789007880000042 ], [ -23.813099738999938, 65.81586334800005 ], [ -23.845204230999911, 65.842962958000044 ], [ -23.866607225999928, 65.875555731000077 ], [ -23.863148566999939, 65.905829169000071 ], [ -23.82054602799991, 65.925726630000042 ], [ -23.800852016999954, 65.926214911000045 ], [ -23.744130011999914, 65.912095445000034 ], [ -23.669667120999918, 65.905218817000048 ], [ -23.650949673999946, 65.900213934000078 ], [ -23.619211391999954, 65.884019273000035 ], [ -23.600819464999915, 65.877915757000039 ], [ -23.581898566999939, 65.876939195000034 ], [ -23.518869594999956, 65.884751695000034 ], [ -23.395334438999953, 65.864325262000079 ], [ -23.354359503999945, 65.864325262000079 ], [ -23.283111131999931, 65.842678127000056 ], [ -23.244536912999934, 65.836127020000049 ], [ -23.209787563999953, 65.84320709800005 ], [ -23.292469855999911, 65.854234117000033 ], [ -23.318837042999917, 65.867865302000041 ], [ -23.401519334999932, 65.871079820000034 ], [ -23.427357550999943, 65.877386786000045 ], [ -23.474273240999935, 65.89484284100007 ], [ -23.577870245999918, 65.905015367000033 ], [ -23.600819464999915, 65.912095445000034 ], [ -23.655100063999953, 65.942572333000044 ], [ -23.682525193999936, 65.948960679000038 ], [ -23.695912238999938, 65.958319403000075 ], [ -23.717518683999913, 65.962062893000052 ], [ -23.763295050999943, 65.97992584800005 ], [ -23.804188605999911, 66.003241278000075 ], [ -23.813099738999938, 66.011379299000055 ], [ -23.813221808999913, 66.042222398000035 ], [ -23.807484503999945, 66.058417059000078 ], [ -23.792591925999943, 66.070379950000074 ], [ -23.751372850999928, 66.076564846000053 ], [ -23.699574347999942, 66.07172272300005 ], [ -23.518299933999913, 66.026678778000075 ], [ -23.465199347999942, 66.020982164000031 ], [ -23.429432745999918, 66.029445705000057 ], [ -23.424794074999909, 66.013739325000074 ], [ -23.412505662999934, 66.00031159100007 ], [ -23.395130988999938, 65.991034247000073 ], [ -23.374867316999939, 65.987779039000031 ], [ -23.374867316999939, 65.994045315000051 ], [ -23.391835089999915, 66.004706122000073 ], [ -23.42251542899993, 66.035874742000033 ], [ -23.443104620999918, 66.04242584800005 ], [ -23.465972459999932, 66.044582424000055 ], [ -23.51195227799991, 66.053941148000035 ], [ -23.535878058999913, 66.05609772300005 ], [ -23.547027147999927, 66.059515692000048 ], [ -23.577504035999937, 66.076605536000045 ], [ -23.636057094999956, 66.098211981000077 ], [ -23.669667120999918, 66.11749909100007 ], [ -23.637318488999938, 66.128485419000071 ], [ -23.550160285999937, 66.131984768000052 ], [ -23.484120245999918, 66.12759023600006 ], [ -23.395334438999953, 66.097642320000034 ], [ -23.419097459999932, 66.106634833000044 ], [ -23.458404100999928, 66.133042710000041 ], [ -23.481027798999946, 66.138617255000042 ], [ -23.577056443999936, 66.137681382000039 ], [ -23.600819464999915, 66.14484284100007 ], [ -23.600819464999915, 66.152289130000042 ], [ -23.590972459999932, 66.159857489000046 ], [ -23.57640540299991, 66.168890692000048 ], [ -23.559559699999909, 66.176459052000041 ], [ -23.549916144999941, 66.178290106000077 ], [ -23.542713995999918, 66.179632880000042 ], [ -23.501291469999956, 66.180487372000073 ], [ -23.485585089999915, 66.186224677000041 ], [ -23.484120245999918, 66.199448960000041 ], [ -23.461415167999917, 66.204169012000079 ], [ -23.304351365999935, 66.185777085000041 ], [ -23.202504035999937, 66.155096747000073 ], [ -23.172474738999938, 66.152289130000042 ], [ -23.152699347999942, 66.145819403000075 ], [ -23.127430792999917, 66.130560614000046 ], [ -23.110218878999945, 66.112534898000035 ], [ -23.114165818999936, 66.097642320000034 ], [ -23.107289191999939, 66.075913804000038 ], [ -23.057972785999937, 66.107611395000049 ], [ -23.038441535999937, 66.111314195000034 ], [ -23.027699347999942, 66.108710028000075 ], [ -23.01821855399993, 66.102606512000079 ], [ -23.004302537999934, 66.090236721000053 ], [ -22.986073370999918, 66.07953522300005 ], [ -22.984038865999935, 66.074123440000051 ], [ -22.983754035999937, 66.059515692000048 ], [ -22.978382941999939, 66.043361721000053 ], [ -22.97687740799995, 66.033677476000037 ], [ -22.983509894999941, 66.026312567000048 ], [ -23.000355597999942, 66.013373114000046 ], [ -23.004302537999934, 66.011379299000055 ], [ -23.04914303299995, 65.976507880000042 ], [ -23.058949347999942, 65.966701565000051 ], [ -23.052723761999914, 65.966701565000051 ], [ -23.031239386999914, 65.980943101000037 ], [ -22.976551886999914, 66.00844961100006 ], [ -22.956532355999911, 66.021918036000045 ], [ -22.950917120999918, 66.030015367000033 ], [ -22.946400519999941, 66.039129950000074 ], [ -22.940052863999938, 66.046454169000071 ], [ -22.929188605999911, 66.049261786000045 ], [ -22.917225714999915, 66.046128648000035 ], [ -22.909657355999911, 66.038641669000071 ], [ -22.895090298999946, 66.01508209800005 ], [ -22.899769660999937, 66.010646877000056 ], [ -22.901844855999911, 66.007635809000078 ], [ -22.887440558999913, 66.013413804000038 ], [ -22.871571417999917, 66.023016669000071 ], [ -22.855539516999954, 66.028509833000044 ], [ -22.840443488999938, 66.021918036000045 ], [ -22.857492641999954, 65.99868398600006 ], [ -22.880970831999946, 65.975287177000041 ], [ -22.909779425999943, 65.956366278000075 ], [ -22.942860480999911, 65.946844794000071 ], [ -22.902699347999942, 65.94790273600006 ], [ -22.884429490999935, 65.95180898600006 ], [ -22.867746548999946, 65.960516669000071 ], [ -22.848622199999909, 65.986151434000078 ], [ -22.834095831999946, 66.00141022300005 ], [ -22.823109503999945, 66.004584052000041 ], [ -22.809152798999946, 65.977606512000079 ], [ -22.815541144999941, 65.949774481000077 ], [ -22.824696417999917, 65.926255601000037 ], [ -22.819325324999909, 65.912095445000034 ], [ -22.785227016999954, 65.960516669000071 ], [ -22.787098761999914, 65.982855536000045 ], [ -22.782948370999918, 66.008612372000073 ], [ -22.774566209999932, 66.032538153000075 ], [ -22.764027472999942, 66.049261786000045 ], [ -22.755970831999946, 66.056830145000049 ], [ -22.750477667999917, 66.058417059000078 ], [ -22.682728644999941, 66.055853583000044 ], [ -22.675933397999927, 66.052679755000042 ], [ -22.673573370999918, 66.039129950000074 ], [ -22.667225714999915, 66.030910549000055 ], [ -22.65851803299995, 66.025864976000037 ], [ -22.620269334999932, 66.00922272300005 ], [ -22.584136522999927, 65.981187242000033 ], [ -22.578277147999927, 65.977606512000079 ], [ -22.577381964999915, 65.973089911000045 ], [ -22.581939256999931, 65.951402085000041 ], [ -22.58617102799991, 65.940375067000048 ], [ -22.592274542999917, 65.930650132000039 ], [ -22.600209113999938, 65.925726630000042 ], [ -22.597645636999914, 65.922064520000049 ], [ -22.593413865999935, 65.919582424000055 ], [ -22.644886847999942, 65.860581773000035 ], [ -22.655425584999932, 65.842189846000053 ], [ -22.648182745999918, 65.833685614000046 ], [ -22.635161912999934, 65.835272528000075 ], [ -22.611683722999942, 65.873846747000073 ], [ -22.545318162999934, 65.946966864000046 ], [ -22.538726365999935, 65.966701565000051 ], [ -22.538726365999935, 65.974188544000071 ], [ -22.517323370999918, 65.975775458000044 ], [ -22.503732876999948, 65.966294664000031 ], [ -22.492176886999914, 65.952093817000048 ], [ -22.476714647999927, 65.939398505000042 ], [ -22.469471808999913, 65.938666083000044 ], [ -22.463693813999953, 65.941107489000046 ], [ -22.457508917999917, 65.941066799000055 ], [ -22.449370897999927, 65.932562567000048 ], [ -22.449940558999913, 65.924505927000041 ], [ -22.45531165299991, 65.916734117000033 ], [ -22.456166144999941, 65.909979559000078 ], [ -22.442534959999932, 65.905218817000048 ], [ -22.440785285999937, 65.910305080000057 ], [ -22.436105923999946, 65.920355536000045 ], [ -22.429432745999918, 65.927964585000041 ], [ -22.42210852799991, 65.925726630000042 ], [ -22.422027147999927, 65.918890692000048 ], [ -22.428863084999932, 65.884751695000034 ], [ -22.437163865999935, 65.873521226000037 ], [ -22.460275844999956, 65.854315497000073 ], [ -22.469878709999932, 65.84320709800005 ], [ -22.469878709999932, 65.836981512000079 ], [ -22.431630011999914, 65.845892645000049 ], [ -22.392648891999954, 65.901678778000075 ], [ -22.360707160999937, 65.912095445000034 ], [ -22.360707160999937, 65.919582424000055 ], [ -22.381255662999934, 65.928778387000079 ], [ -22.392648891999954, 65.948065497000073 ], [ -22.399891730999911, 65.97016022300005 ], [ -22.40843665299991, 65.987779039000031 ], [ -22.423003709999932, 66.002020575000074 ], [ -22.44204667899993, 66.015448309000078 ], [ -22.46320553299995, 66.025458075000074 ], [ -22.484201626999948, 66.029445705000057 ], [ -22.473866339999915, 66.04242584800005 ], [ -22.469471808999913, 66.054632880000042 ], [ -22.463734503999945, 66.06586334800005 ], [ -22.449370897999927, 66.075913804000038 ], [ -22.430287238999938, 66.079901434000078 ], [ -22.410308397999927, 66.08038971600007 ], [ -22.39281165299991, 66.084051825000074 ], [ -22.38117428299995, 66.097642320000034 ], [ -22.401722785999937, 66.097316799000055 ], [ -22.451079881999931, 66.087144273000035 ], [ -22.469878709999932, 66.079657294000071 ], [ -22.488392706999946, 66.076727606000077 ], [ -22.572173631999931, 66.093695380000042 ], [ -22.628163214999915, 66.11749909100007 ], [ -22.865956183999913, 66.159491278000075 ], [ -22.93586178299995, 66.18976471600007 ], [ -22.977609829999949, 66.234198309000078 ], [ -22.930897589999915, 66.24640534100007 ], [ -22.782460089999915, 66.262762762000079 ], [ -22.751088019999941, 66.262152411000045 ], [ -22.644886847999942, 66.248480536000045 ], [ -22.617298956999946, 66.248480536000045 ], [ -22.606556769999941, 66.246771552000041 ], [ -22.601185675999943, 66.242661851000037 ], [ -22.59788977799991, 66.237941799000055 ], [ -22.593413865999935, 66.234198309000078 ], [ -22.566517706999946, 66.222845770000049 ], [ -22.552357550999943, 66.221380927000041 ], [ -22.538726365999935, 66.227362372000073 ], [ -22.545480923999946, 66.23078034100007 ], [ -22.550363735999952, 66.235296942000048 ], [ -22.55923417899993, 66.248480536000045 ], [ -22.509836391999954, 66.24835846600007 ], [ -22.484486456999946, 66.251166083000044 ], [ -22.440541144999941, 66.265448309000078 ], [ -22.390614386999914, 66.267523505000042 ], [ -22.36750240799995, 66.275213934000078 ], [ -22.503407355999911, 66.266424872000073 ], [ -22.544911261999914, 66.275213934000078 ], [ -22.564564581999946, 66.283636786000045 ], [ -22.560414191999939, 66.284979559000078 ], [ -22.544300910999937, 66.285711981000077 ], [ -22.528187628999945, 66.292629299000055 ], [ -22.517567511999914, 66.300116278000075 ], [ -22.502919074999909, 66.30609772300005 ], [ -22.486317511999914, 66.309515692000048 ], [ -22.469878709999932, 66.309312242000033 ], [ -22.469878709999932, 66.316799221000053 ], [ -22.492095506999931, 66.321966864000046 ], [ -22.505360480999911, 66.320054429000038 ], [ -22.544911261999914, 66.303127346000053 ], [ -22.595692511999914, 66.291734117000033 ], [ -22.654855923999946, 66.289455471000053 ], [ -22.701649542999917, 66.293402411000045 ], [ -22.710072394999941, 66.295640367000033 ], [ -22.711415167999917, 66.306463934000078 ], [ -22.702748175999943, 66.313706773000035 ], [ -22.682118292999917, 66.323635158000059 ], [ -22.678456183999913, 66.330755927000041 ], [ -22.673085089999915, 66.350816148000035 ], [ -22.669097459999932, 66.357123114000046 ], [ -22.655425584999932, 66.363185940000051 ], [ -22.60765540299991, 66.37140534100007 ], [ -22.651112433999913, 66.367743231000077 ], [ -22.683949347999942, 66.358303127000056 ], [ -22.763050910999937, 66.32367584800005 ], [ -22.781646287999934, 66.319525458000044 ], [ -22.823109503999945, 66.316799221000053 ], [ -22.835357225999928, 66.322658596000053 ], [ -22.828602667999917, 66.335760809000078 ], [ -22.81314042899993, 66.349514065000051 ], [ -22.79946855399993, 66.357123114000046 ], [ -22.79946855399993, 66.364569403000075 ], [ -22.833729620999918, 66.35883209800005 ], [ -22.850697394999941, 66.352932033000059 ], [ -22.867746548999946, 66.34406159100007 ], [ -22.907622850999928, 66.315130927000041 ], [ -22.915598110999952, 66.313055731000077 ], [ -22.93968665299991, 66.301459052000041 ], [ -23.098052537999934, 66.318304755000042 ], [ -23.13931230399993, 66.327785549000055 ], [ -23.166493292999917, 66.342271226000037 ], [ -23.182850714999915, 66.348781643000052 ], [ -23.18968665299991, 66.355292059000078 ], [ -23.176258917999917, 66.364569403000075 ], [ -23.137847459999932, 66.365668036000045 ], [ -23.089507615999935, 66.358099677000041 ], [ -23.046742316999939, 66.360663153000075 ], [ -23.024810350999928, 66.391831773000035 ], [ -23.05304928299995, 66.393540757000039 ], [ -23.08462480399993, 66.403265692000048 ], [ -23.113880988999938, 66.417466539000031 ], [ -23.135324673999946, 66.432806708000044 ], [ -23.104725714999915, 66.44281647300005 ], [ -23.073312954999949, 66.43695709800005 ], [ -23.041900193999936, 66.425604559000078 ], [ -23.011708136999914, 66.419175523000035 ], [ -23.019113735999952, 66.430405992000033 ], [ -23.024159308999913, 66.435248114000046 ], [ -23.032297329999949, 66.440252997000073 ], [ -22.922718878999945, 66.447658596000053 ], [ -22.915598110999952, 66.446478583000044 ], [ -22.909494594999956, 66.442450262000079 ], [ -22.901112433999913, 66.430243231000077 ], [ -22.895090298999946, 66.426011460000041 ], [ -22.873524542999917, 66.423773505000042 ], [ -22.864491339999915, 66.431382554000038 ], [ -22.868153449999909, 66.441392320000034 ], [ -22.884510870999918, 66.446478583000044 ], [ -22.900868292999917, 66.449042059000078 ], [ -22.950306769999941, 66.466986395000049 ], [ -22.850331183999913, 66.466986395000049 ], [ -22.832630988999938, 66.463812567000048 ], [ -22.797271287999934, 66.449693101000037 ], [ -22.75218665299991, 66.442694403000075 ], [ -22.716135219999956, 66.424872137000079 ], [ -22.695871548999946, 66.419175523000035 ], [ -22.67023678299995, 66.420965887000079 ], [ -22.63117428299995, 66.439601955000057 ], [ -22.60765540299991, 66.446478583000044 ], [ -22.609852667999917, 66.450140692000048 ], [ -22.613880988999938, 66.460150458000044 ], [ -22.57453365799995, 66.465887762000079 ], [ -22.542225714999915, 66.45538971600007 ], [ -22.510731574999909, 66.440415757000039 ], [ -22.44172115799995, 66.426662502000056 ], [ -22.426625128999945, 66.427923895000049 ], [ -22.42210852799991, 66.440252997000073 ], [ -22.429351365999935, 66.450140692000048 ], [ -22.455555792999917, 66.457464911000045 ], [ -22.46312415299991, 66.466986395000049 ], [ -22.431019660999937, 66.464748440000051 ], [ -22.400135870999918, 66.452215887000079 ], [ -22.376698370999918, 66.432562567000048 ], [ -22.36750240799995, 66.408921617000033 ], [ -22.350005662999934, 66.394191799000055 ], [ -22.268625454999949, 66.375921942000048 ], [ -22.243397589999915, 66.357123114000046 ], [ -22.257639126999948, 66.347154039000031 ], [ -22.244740363999938, 66.341131903000075 ], [ -22.202300584999932, 66.337225653000075 ], [ -22.202300584999932, 66.33038971600007 ], [ -22.220611131999931, 66.332831122000073 ], [ -22.228260870999918, 66.328558661000045 ], [ -22.229725714999915, 66.319973049000055 ], [ -22.229644334999932, 66.309312242000033 ], [ -22.224680141999954, 66.30414459800005 ], [ -22.215891079999949, 66.29718659100007 ], [ -22.214100714999915, 66.28969961100006 ], [ -22.229644334999932, 66.282619533000059 ], [ -22.229644334999932, 66.275213934000078 ], [ -22.216664191999939, 66.268377997000073 ], [ -22.203033006999931, 66.274481512000079 ], [ -22.187123175999943, 66.279486395000049 ], [ -22.17056230399993, 66.282538153000075 ], [ -22.155181443999936, 66.282619533000059 ], [ -22.145985480999911, 66.278143622000073 ], [ -22.137928839999915, 66.271307684000078 ], [ -22.128285285999937, 66.268296617000033 ], [ -22.120432094999956, 66.275213934000078 ], [ -22.105620897999927, 66.287827867000033 ], [ -22.089588995999918, 66.289862372000073 ], [ -22.08039303299995, 66.282863674000055 ], [ -22.086293097999942, 66.268377997000073 ], [ -22.015044725999928, 66.271429755000042 ], [ -21.996937628999945, 66.268377997000073 ], [ -21.988189256999931, 66.274644273000035 ], [ -21.979318813999953, 66.274969794000071 ], [ -21.97093665299991, 66.271958726000037 ], [ -21.963368292999917, 66.268377997000073 ], [ -21.957718648296975, 66.264638663243659 ], [ -21.921783006999931, 66.241034247000073 ], [ -21.931263800999943, 66.233954169000071 ], [ -21.990101691999939, 66.213771877000056 ], [ -21.97679602799991, 66.210109768000052 ], [ -21.963978644999941, 66.212876695000034 ], [ -21.950550910999937, 66.218085028000075 ], [ -21.935454881999931, 66.221177476000037 ], [ -21.920725063999953, 66.219671942000048 ], [ -21.874012824999909, 66.203802802000041 ], [ -21.861439581999946, 66.196112372000073 ], [ -21.853505011999914, 66.193304755000042 ], [ -21.843617316999939, 66.193060614000046 ], [ -21.823353644999941, 66.198309637000079 ], [ -21.812652147999927, 66.199448960000041 ], [ -21.749867316999939, 66.185777085000041 ], [ -21.752837693999936, 66.182196356000077 ], [ -21.757313605999911, 66.172756252000056 ], [ -21.740061001999948, 66.168198960000041 ], [ -21.730091925999943, 66.156236070000034 ], [ -21.730336066999939, 66.144110419000071 ], [ -21.743641730999911, 66.138617255000042 ], [ -21.739898240999935, 66.132391669000071 ], [ -21.731800910999937, 66.12250397300005 ], [ -21.730051235999952, 66.11749909100007 ], [ -21.729725714999915, 66.117865302000041 ], [ -21.728098110999952, 66.101467190000051 ], [ -21.723011847999942, 66.082220770000049 ], [ -21.716379360999952, 66.075506903000075 ], [ -21.702748175999943, 66.070379950000074 ], [ -21.688547329999949, 66.071275132000039 ], [ -21.671009894999941, 66.075751044000071 ], [ -21.653960740999935, 66.07758209800005 ], [ -21.641224738999938, 66.070379950000074 ], [ -21.639271613999938, 66.056545315000051 ], [ -21.648060675999943, 66.044012762000079 ], [ -21.660023566999939, 66.032538153000075 ], [ -21.667958136999914, 66.021918036000045 ], [ -21.655181443999936, 66.023382880000042 ], [ -21.63931230399993, 66.028021552000041 ], [ -21.625884568999936, 66.03384023600006 ], [ -21.620187954999949, 66.039007880000042 ], [ -21.619699673999946, 66.055731512000079 ], [ -21.620716925999943, 66.063462632000039 ], [ -21.641224738999938, 66.08344147300005 ], [ -21.628814256999931, 66.089016018000052 ], [ -21.593251105999911, 66.096380927000041 ], [ -21.548817511999914, 66.097642320000034 ], [ -21.54133053299995, 66.094224351000037 ], [ -21.535878058999913, 66.086818752000056 ], [ -21.531605597999942, 66.079331773000035 ], [ -21.52765865799995, 66.075913804000038 ], [ -21.509185350999928, 66.072333075000074 ], [ -21.521229620999918, 66.064520575000074 ], [ -21.542551235999952, 66.057440497000073 ], [ -21.551869269999941, 66.05609772300005 ], [ -21.558461066999939, 66.046535549000055 ], [ -21.554025844999956, 66.039252020000049 ], [ -21.534779425999943, 66.02570221600007 ], [ -21.509388800999943, 66.017075914000031 ], [ -21.40103105399993, 66.029445705000057 ], [ -21.372303839999915, 66.026312567000048 ], [ -21.348703579999949, 66.020697333000044 ], [ -21.330637173999946, 66.009019273000035 ], [ -21.318511522999927, 65.987779039000031 ], [ -21.45929928299995, 65.982326565000051 ], [ -21.486073370999918, 65.973211981000077 ], [ -21.591623501999948, 65.96039459800005 ], [ -21.606516079999949, 65.960516669000071 ], [ -21.58812415299991, 65.946356512000079 ], [ -21.560129360999952, 65.947943427000041 ], [ -21.503773566999939, 65.960516669000071 ], [ -21.410023566999939, 65.967474677000041 ], [ -21.380604620999918, 65.960516669000071 ], [ -21.392689581999946, 65.952053127000056 ], [ -21.43578040299991, 65.939398505000042 ], [ -21.43578040299991, 65.932562567000048 ], [ -21.328114386999914, 65.945257880000042 ], [ -21.301747199999909, 65.935980536000045 ], [ -21.287180141999954, 65.915838934000078 ], [ -21.284047003999945, 65.898627020000049 ], [ -21.295887824999909, 65.885565497000073 ], [ -21.325917120999918, 65.877915757000039 ], [ -21.278187628999945, 65.864325262000079 ], [ -21.278187628999945, 65.85687897300005 ], [ -21.327788865999935, 65.809027411000045 ], [ -21.345814581999946, 65.796047268000052 ], [ -21.37531490799995, 65.784898179000038 ], [ -21.47679602799991, 65.768703518000052 ], [ -21.47679602799991, 65.761216539000031 ], [ -21.455148891999954, 65.760565497000073 ], [ -21.417876756999931, 65.763495184000078 ], [ -21.40103105399993, 65.761216539000031 ], [ -21.34788977799991, 65.747137762000079 ], [ -21.332142706999946, 65.740790106000077 ], [ -21.414133266999954, 65.69985586100006 ], [ -21.443511522999927, 65.690497137000079 ], [ -21.579213019999941, 65.693019924000055 ], [ -21.588856574999909, 65.697658596000053 ], [ -21.605336066999939, 65.710679429000038 ], [ -21.609934048999946, 65.713446356000077 ], [ -21.62922115799995, 65.71938711100006 ], [ -21.647206183999913, 65.732611395000049 ], [ -21.659331834999932, 65.746568101000037 ], [ -21.661122199999909, 65.755072333000044 ], [ -21.685943162999934, 65.769435940000051 ], [ -21.716704881999931, 65.776434637000079 ], [ -21.748890753999945, 65.776068427000041 ], [ -21.777821417999917, 65.768703518000052 ], [ -21.758412238999938, 65.767401434000078 ], [ -21.711333787999934, 65.754624742000033 ], [ -21.695301886999914, 65.748236395000049 ], [ -21.693226691999939, 65.745510158000059 ], [ -21.672230597999942, 65.729193427000041 ], [ -21.667958136999914, 65.727728583000044 ], [ -21.665394660999937, 65.715643622000073 ], [ -21.668527798999946, 65.70766836100006 ], [ -21.676584438999953, 65.700995184000078 ], [ -21.689076300999943, 65.693019924000055 ], [ -21.672963019999941, 65.68618398600006 ], [ -21.664662238999938, 65.681138414000031 ], [ -21.661122199999909, 65.675930080000057 ], [ -21.655873175999943, 65.662665106000077 ], [ -21.644398566999939, 65.655096747000073 ], [ -21.632883266999954, 65.65102773600006 ], [ -21.627674933999913, 65.648260809000078 ], [ -21.609934048999946, 65.641546942000048 ], [ -21.442982550999943, 65.643377997000073 ], [ -21.41429602799991, 65.637152411000045 ], [ -21.40103105399993, 65.624090887000079 ], [ -21.411203579999949, 65.612697658000059 ], [ -21.462880011999914, 65.578517971000053 ], [ -21.483021613999938, 65.569403387000079 ], [ -21.483021613999938, 65.562648830000057 ], [ -21.434559699999909, 65.573797919000071 ], [ -21.37336178299995, 65.596909898000035 ], [ -21.320912238999938, 65.60187409100007 ], [ -21.298695441999939, 65.55890534100007 ], [ -21.319813605999911, 65.522365627000056 ], [ -21.369862433999913, 65.487127997000073 ], [ -21.428822394999941, 65.461493231000077 ], [ -21.47679602799991, 65.453355210000041 ], [ -21.47679602799991, 65.446519273000035 ], [ -21.375884568999936, 65.462876695000034 ], [ -21.337147589999915, 65.477362372000073 ], [ -21.315419074999909, 65.480698960000041 ], [ -21.292958136999914, 65.478745835000041 ], [ -21.278431769999941, 65.47329336100006 ], [ -21.25023352799991, 65.453355210000041 ], [ -21.212147589999915, 65.438177802000041 ], [ -21.201893683999913, 65.428412177000041 ], [ -21.20929928299995, 65.411810614000046 ], [ -21.195179816999939, 65.408107815000051 ], [ -21.193023240999935, 65.400580145000049 ], [ -21.195423956999946, 65.390204169000071 ], [ -21.194935675999943, 65.377630927000041 ], [ -21.188954230999911, 65.355536200000074 ], [ -21.188791469999956, 65.340073960000041 ], [ -21.193348761999914, 65.320013739000046 ], [ -21.192860480999911, 65.310126044000071 ], [ -21.153960740999935, 65.257554429000038 ], [ -21.140370245999918, 65.247300523000035 ], [ -21.144398566999939, 65.245510158000059 ], [ -21.145375128999945, 65.244859117000033 ], [ -21.145619269999941, 65.243963934000078 ], [ -21.147816535999937, 65.241156317000048 ], [ -21.127837693999936, 65.232163804000038 ], [ -21.10765540299991, 65.215521552000041 ], [ -21.097075975999928, 65.195990302000041 ], [ -21.106190558999913, 65.178412177000041 ], [ -21.106190558999913, 65.17218659100007 ], [ -21.089914516999954, 65.166164455000057 ], [ -21.083566860999952, 65.168402411000045 ], [ -21.084418097117464, 65.1592788760193 ], [ -21.074444546378743, 65.145532945389107 ], [ -21.073204312029361, 65.128479722860902 ], [ -21.075994839090583, 65.110134589139932 ], [ -21.075426398309617, 65.101375434328816 ], [ -21.070982224849786, 65.091014309063098 ], [ -21.062765672397859, 65.079232083194029 ], [ -21.047960373672311, 65.065176093302057 ], [ -21.023207362629705, 65.037115790361383 ], [ -21.006825933669916, 64.999030259838605 ], [ -21.000857305919908, 64.988384915531412 ], [ -20.984217495441044, 64.972365220878203 ], [ -21.051009284051247, 64.972933662558432 ], [ -21.084418097117464, 64.978049627788039 ], [ -21.113279384835721, 64.985491034783422 ], [ -21.191439989064236, 65.014791572073364 ], [ -21.19017391629319, 65.021509507757571 ], [ -21.190044725084022, 65.024816800554845 ], [ -21.191207445067562, 65.029312649059477 ], [ -21.194437221700412, 65.032826647431818 ], [ -21.205831874841181, 65.037735907985734 ], [ -21.211697149803626, 65.040888170252799 ], [ -21.229783901106146, 65.053652248952119 ], [ -21.239783291165963, 65.058587347927755 ], [ -21.257895880890203, 65.065434474821132 ], [ -21.264613816574354, 65.070447089061872 ], [ -21.27034990122695, 65.08005890639339 ], [ -21.286679653343356, 65.102744858988046 ], [ -21.288953415567676, 65.112434190685349 ], [ -21.289160122042006, 65.119643052784625 ], [ -21.288204107633476, 65.125999254162195 ], [ -21.286576300555851, 65.131270249922068 ], [ -21.283734096651244, 65.135766100225339 ], [ -21.279160731982188, 65.140623683935814 ], [ -21.253942633845497, 65.162637843861376 ], [ -21.24743140283698, 65.169924221225813 ], [ -21.24606197817775, 65.177158921746809 ], [ -21.24895585802642, 65.184936225526371 ], [ -21.267766078841476, 65.211213690859097 ], [ -21.270814989220355, 65.217828273755799 ], [ -21.276085984980227, 65.225424710382072 ], [ -21.283113979926213, 65.232426866007017 ], [ -21.334764573925952, 65.259014391500955 ], [ -21.343368700005499, 65.261649888931174 ], [ -21.35186947329754, 65.26294180012394 ], [ -21.358225673775848, 65.264905503985801 ], [ -21.365046963146824, 65.268832913508106 ], [ -21.372333339611941, 65.276274318704793 ], [ -21.400522833761784, 65.290795397489546 ], [ -21.458968878710778, 65.341128241874856 ], [ -21.476513026754787, 65.363555812950381 ], [ -21.483876919384329, 65.369317735125321 ], [ -21.494935675740862, 65.372030747820702 ], [ -21.532168544642616, 65.372134101507527 ], [ -21.618338995748047, 65.361850491506971 ], [ -21.621387905227664, 65.362418932287881 ], [ -21.627795783448676, 65.366759752060887 ], [ -21.648311326606461, 65.3774309347898 ], [ -21.654822556715601, 65.382521064295645 ], [ -21.656941291107728, 65.388877264773896 ], [ -21.653582323265596, 65.395491848569918 ], [ -21.642730271584753, 65.404121813071185 ], [ -21.618209805438198, 65.413242703088258 ], [ -21.610458340080356, 65.417118434867859 ], [ -21.60839128343099, 65.421330065230279 ], [ -21.611000942439546, 65.426575222568431 ], [ -21.611724412851402, 65.431717027119078 ], [ -21.605652432313889, 65.447142442569657 ], [ -21.602887742775124, 65.458795478128764 ], [ -21.603249477981024, 65.488225205728611 ], [ -21.614566615856631, 65.501841946048955 ], [ -21.640973273297902, 65.494038804746992 ], [ -21.653349779268922, 65.485667223563496 ], [ -21.678180303777992, 65.460035712478145 ], [ -21.695301887372182, 65.453355210174777 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IS-5", "NAME_1": "Norðurland vestra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.083566860999952, 65.168402411000045 ], [ -21.073312954999949, 65.172064520000049 ], [ -21.065419074999909, 65.185777085000041 ], [ -21.079986131999931, 65.210150458000044 ], [ -21.082875128999945, 65.226304429000038 ], [ -21.085682745999918, 65.233628648000035 ], [ -21.094471808999913, 65.243841864000046 ], [ -21.112049933999913, 65.258937893000052 ], [ -21.119943813999953, 65.267767645000049 ], [ -21.105213995999918, 65.278957424000055 ], [ -21.099436001999948, 65.282049872000073 ], [ -21.103016730999911, 65.290716864000046 ], [ -21.096587693999936, 65.297064520000049 ], [ -21.086496548999946, 65.302639065000051 ], [ -21.078968878999945, 65.308783270000049 ], [ -21.073557094999956, 65.324164130000042 ], [ -21.074086066999939, 65.338039455000057 ], [ -21.094838019999941, 65.413763739000046 ], [ -21.098866339999915, 65.445461330000057 ], [ -21.086048956999946, 65.45962148600006 ], [ -21.055246548999946, 65.452337958000044 ], [ -21.033802863999938, 65.434475002000056 ], [ -21.003244594999956, 65.391913153000075 ], [ -20.974029100999928, 65.36749909100007 ], [ -20.969715949999909, 65.360581773000035 ], [ -20.962961391999954, 65.353338934000078 ], [ -20.928822394999941, 65.348700262000079 ], [ -20.915109829999949, 65.343491929000038 ], [ -20.907622850999928, 65.35101959800005 ], [ -20.933705206999946, 65.374009507000039 ], [ -20.95726477799991, 65.404730536000045 ], [ -20.975005662999934, 65.437567450000074 ], [ -20.983306443999936, 65.467027085000041 ], [ -20.98696855399993, 65.49054596600007 ], [ -20.987294074999909, 65.506781317000048 ], [ -20.983306443999936, 65.521673895000049 ], [ -20.978871222999942, 65.527167059000078 ], [ -20.966664191999939, 65.536688544000071 ], [ -20.962228969999956, 65.541489976000037 ], [ -20.951771613999938, 65.570379950000074 ], [ -20.948597785999937, 65.576890367000033 ], [ -20.918080206999946, 65.601385809000078 ], [ -20.805246548999946, 65.638373114000046 ], [ -20.743723110999952, 65.67251211100006 ], [ -20.725209113999938, 65.676743882000039 ], [ -20.706044074999909, 65.679022528000075 ], [ -20.691965298999946, 65.683172919000071 ], [ -20.688547329999949, 65.693019924000055 ], [ -20.675363735999952, 65.693915106000077 ], [ -20.665760870999918, 65.69086334800005 ], [ -20.646962042999917, 65.679348049000055 ], [ -20.642648891999954, 65.679022528000075 ], [ -20.629790818999936, 65.680243231000077 ], [ -20.626372850999928, 65.679348049000055 ], [ -20.623443162999934, 65.670721747000073 ], [ -20.626372850999928, 65.667954820000034 ], [ -20.631255662999934, 65.667385158000059 ], [ -20.633859829999949, 65.665025132000039 ], [ -20.64085852799991, 65.624986070000034 ], [ -20.641713019999941, 65.604803778000075 ], [ -20.633859829999949, 65.589992580000057 ], [ -20.645863410999937, 65.573065497000073 ], [ -20.646473761999914, 65.555650132000039 ], [ -20.635731574999909, 65.545152085000041 ], [ -20.613392706999946, 65.548976955000057 ], [ -20.623646613999938, 65.567287502000056 ], [ -20.621896938999953, 65.58344147300005 ], [ -20.608957485999952, 65.590969143000052 ], [ -20.585519985999952, 65.583156643000052 ], [ -20.576771613999938, 65.576646226000037 ], [ -20.575795050999943, 65.572658596000053 ], [ -20.576283331999946, 65.566839911000045 ], [ -20.572417772999927, 65.555161851000037 ], [ -20.576527472999942, 65.547552802000041 ], [ -20.578724738999938, 65.540838934000078 ], [ -20.578684048999946, 65.535345770000049 ], [ -20.575184699999909, 65.535711981000077 ], [ -20.556507941999939, 65.531073309000078 ], [ -20.550689256999931, 65.528509833000044 ], [ -20.543690558999913, 65.52016836100006 ], [ -20.540028449999909, 65.513413804000038 ], [ -20.535023566999939, 65.507391669000071 ], [ -20.523996548999946, 65.501166083000044 ], [ -20.512847459999932, 65.497381903000075 ], [ -20.500884568999936, 65.494940497000073 ], [ -20.488352016999954, 65.494045315000051 ], [ -20.475656704999949, 65.494940497000073 ], [ -20.472320115999935, 65.495917059000078 ], [ -20.45343990799995, 65.501450914000031 ], [ -20.444691535999937, 65.512111721000053 ], [ -20.439564581999946, 65.527573960000041 ], [ -20.427845831999946, 65.548976955000057 ], [ -20.439320441999939, 65.553168036000045 ], [ -20.454660610999952, 65.566595770000049 ], [ -20.465972459999932, 65.569403387000079 ], [ -20.500396287999934, 65.568182684000078 ], [ -20.516997850999928, 65.570135809000078 ], [ -20.530873175999943, 65.576890367000033 ], [ -20.497547980999911, 65.582261460000041 ], [ -20.465972459999932, 65.583156643000052 ], [ -20.452707485999952, 65.585272528000075 ], [ -20.425160285999937, 65.594671942000048 ], [ -20.410715298999946, 65.596747137000079 ], [ -20.398019985999952, 65.58734772300005 ], [ -20.402007615999935, 65.542873440000051 ], [ -20.387521938999953, 65.528509833000044 ], [ -20.391184048999946, 65.544623114000046 ], [ -20.381947394999941, 65.556586005000042 ], [ -20.375559048999946, 65.568101304000038 ], [ -20.387521938999953, 65.583156643000052 ], [ -20.376128709999932, 65.596421617000033 ], [ -20.34398352799991, 65.615912177000041 ], [ -20.328521287999934, 65.627834377000056 ], [ -20.324777798999946, 65.635158596000053 ], [ -20.323597785999937, 65.651434637000079 ], [ -20.31859290299991, 65.65884023600006 ], [ -20.309193488999938, 65.662665106000077 ], [ -20.290760870999918, 65.662543036000045 ], [ -20.270130988999938, 65.665025132000039 ], [ -20.292347785999937, 65.666937567000048 ], [ -20.306019660999937, 65.679266669000071 ], [ -20.307850714999915, 65.693182684000078 ], [ -20.294300910999937, 65.69985586100006 ], [ -20.281320766999954, 65.70376211100006 ], [ -20.271595831999946, 65.714016018000052 ], [ -20.265492316999939, 65.728257554000038 ], [ -20.263295050999943, 65.744533596000053 ], [ -20.271229620999918, 65.77016836100006 ], [ -20.290679490999935, 65.793646552000041 ], [ -20.315419074999909, 65.812160549000055 ], [ -20.339100714999915, 65.822699286000045 ], [ -20.339100714999915, 65.830145575000074 ], [ -20.312489386999914, 65.840399481000077 ], [ -20.32258053299995, 65.86945221600007 ], [ -20.348459438999953, 65.901922919000071 ], [ -20.386382615999935, 65.937201239000046 ], [ -20.393422003999945, 65.946519273000035 ], [ -20.399891730999911, 65.980943101000037 ], [ -20.406158006999931, 65.99750397300005 ], [ -20.416981574999909, 66.01040273600006 ], [ -20.431507941999939, 66.020697333000044 ], [ -20.448882615999935, 66.029445705000057 ], [ -20.433583136999914, 66.039211330000057 ], [ -20.419504360999952, 66.054388739000046 ], [ -20.414865688999953, 66.07062409100007 ], [ -20.427845831999946, 66.08344147300005 ], [ -20.407704230999911, 66.090765692000048 ], [ -20.383697068999936, 66.092474677000041 ], [ -20.342152472999942, 66.090236721000053 ], [ -20.332142706999946, 66.091986395000049 ], [ -20.314076300999943, 66.100531317000048 ], [ -20.304351365999935, 66.103908596000053 ], [ -20.29124915299991, 66.105617580000057 ], [ -20.255930141999954, 66.103908596000053 ], [ -20.236683722999942, 66.108384507000039 ], [ -20.200672980999911, 66.127020575000074 ], [ -20.184803839999915, 66.13117096600007 ], [ -20.135812954999949, 66.123846747000073 ], [ -20.124908006999931, 66.12335846600007 ], [ -20.113433397999927, 66.122870184000078 ], [ -20.09203040299991, 66.13117096600007 ], [ -20.086903449999909, 66.109808661000045 ], [ -20.073638475999928, 66.097357489000046 ], [ -20.054351365999935, 66.089789130000042 ], [ -20.030588344999956, 66.08344147300005 ], [ -20.03742428299995, 66.075913804000038 ], [ -20.027007615999935, 66.071926174000055 ], [ -20.019642706999946, 66.064398505000042 ], [ -20.010121222999942, 66.049261786000045 ], [ -19.996937628999945, 66.034409898000035 ], [ -19.954823370999918, 66.001450914000031 ], [ -19.948719855999911, 65.992621161000045 ], [ -19.945301886999914, 65.984808661000045 ], [ -19.940052863999938, 65.978420315000051 ], [ -19.928130662999934, 65.974188544000071 ], [ -19.931630011999914, 65.971096096000053 ], [ -19.93773352799991, 65.963568427000041 ], [ -19.941232876999948, 65.960516669000071 ], [ -19.921783006999931, 65.947170315000051 ], [ -19.896107550999943, 65.936224677000041 ], [ -19.87759355399993, 65.923570054000038 ], [ -19.879790818999936, 65.905218817000048 ], [ -19.861724412999934, 65.898138739000046 ], [ -19.807850714999915, 65.894476630000042 ], [ -19.76781165299991, 65.883490302000041 ], [ -19.755767381999931, 65.883734442000048 ], [ -19.74478105399993, 65.882798570000034 ], [ -19.732329881999931, 65.874497789000031 ], [ -19.726551886999914, 65.871771552000041 ], [ -19.713734503999945, 65.872748114000046 ], [ -19.708404100999928, 65.871079820000034 ], [ -19.702137824999909, 65.863836981000077 ], [ -19.69945227799991, 65.856756903000075 ], [ -19.697865363999938, 65.849798895000049 ], [ -19.694813605999911, 65.84320709800005 ], [ -19.672759568999936, 65.823228257000039 ], [ -19.666859503999945, 65.81586334800005 ], [ -19.662505662999934, 65.803452867000033 ], [ -19.656971808999913, 65.776434637000079 ], [ -19.650380011999914, 65.764960028000075 ], [ -19.628773566999939, 65.752752997000073 ], [ -19.577748175999943, 65.74640534100007 ], [ -19.557606574999909, 65.733954169000071 ], [ -19.551380988999938, 65.755275783000059 ], [ -19.544300910999937, 65.762844143000052 ], [ -19.513539191999939, 65.761216539000031 ], [ -19.509673631999931, 65.759466864000046 ], [ -19.495920376999948, 65.751044012000079 ], [ -19.488677537999934, 65.748236395000049 ], [ -19.477406378999945, 65.746893622000073 ], [ -19.449086066999939, 65.74750397300005 ], [ -19.457915818999936, 65.745306708000044 ], [ -19.465240037999934, 65.741888739000046 ], [ -19.468251105999911, 65.737372137000079 ], [ -19.464670376999948, 65.729234117000033 ], [ -19.456166144999941, 65.728949286000045 ], [ -19.437855597999942, 65.733954169000071 ], [ -19.427235480999911, 65.739935614000046 ], [ -19.418039516999954, 65.753851630000042 ], [ -19.406809048999946, 65.782375393000052 ], [ -19.399810350999928, 65.811509507000039 ], [ -19.399240688999953, 65.836615302000041 ], [ -19.405832485999952, 65.860174872000073 ], [ -19.420399542999917, 65.884751695000034 ], [ -19.448841925999943, 65.919419664000031 ], [ -19.451527472999942, 65.925726630000042 ], [ -19.51040605399993, 65.953029690000051 ], [ -19.510853644999941, 65.960150458000044 ], [ -19.506459113999938, 65.969549872000073 ], [ -19.497914191999939, 65.977525132000039 ], [ -19.485585089999915, 65.980943101000037 ], [ -19.467396613999938, 65.982652085000041 ], [ -19.44749915299991, 65.987779039000031 ], [ -19.428578253999945, 65.996161200000074 ], [ -19.413644985999952, 66.007635809000078 ], [ -19.424631313999953, 66.013373114000046 ], [ -19.434315558999913, 66.021429755000042 ], [ -19.442209438999953, 66.031317450000074 ], [ -19.451771613999938, 66.052557684000078 ], [ -19.451893683999913, 66.055975653000075 ], [ -19.44758053299995, 66.058661200000074 ], [ -19.437855597999942, 66.066636460000041 ], [ -19.419829881999931, 66.075832424000055 ], [ -19.362700975999928, 66.088364976000037 ], [ -19.229318813999953, 66.097642320000034 ], [ -19.182484503999945, 66.082953192000048 ], [ -19.157582160999937, 66.081122137000079 ], [ -19.159738735999952, 66.097642320000034 ], [ -19.151926235999952, 66.101629950000074 ], [ -19.143950975999928, 66.104071356000077 ], [ -19.135243292999917, 66.10492584800005 ], [ -19.125599738999938, 66.103908596000053 ], [ -19.128407355999911, 66.100043036000045 ], [ -19.132435675999943, 66.090236721000053 ], [ -19.112375454999949, 66.086981512000079 ], [ -19.07843990799995, 66.072495835000041 ], [ -19.057932094999956, 66.070379950000074 ], [ -19.07054602799991, 66.075262762000079 ], [ -19.079660610999952, 66.081000067000048 ], [ -19.08625240799995, 66.088283596000053 ], [ -19.091460740999935, 66.097642320000034 ], [ -19.08462480399993, 66.097642320000034 ], [ -19.08462480399993, 66.103908596000053 ], [ -19.090199347999942, 66.105536200000074 ], [ -19.099680141999954, 66.10968659100007 ], [ -19.105132615999935, 66.111314195000034 ], [ -19.105132615999935, 66.11749909100007 ], [ -19.095773891999954, 66.12445709800005 ], [ -19.085031704999949, 66.147935289000031 ], [ -19.078764709946128, 66.157993428939946 ], [ -19.078674892931986, 66.157977607180783 ], [ -19.073533088381339, 66.157047431193973 ], [ -19.026946783667142, 66.139374091041418 ], [ -19.019789598411251, 66.134568183275007 ], [ -19.011237149175088, 66.127695217959911 ], [ -18.99529496888772, 66.108471585095572 ], [ -18.960697598315505, 66.079532783011473 ], [ -18.949199592387288, 66.072298082490477 ], [ -18.866465622590397, 66.030801907282182 ], [ -18.8542441471497, 66.019303901353908 ], [ -18.85308142716616, 66.011423244786897 ], [ -18.870548061743648, 66.005222073040215 ], [ -18.875224779200209, 66.00299998586064 ], [ -18.877860276630486, 66.001191310730349 ], [ -18.87871293825151, 66.000442002796149 ], [ -18.879384731819925, 65.999511826809339 ], [ -18.879953171701516, 65.997884019731714 ], [ -18.880392422172577, 65.994525051889582 ], [ -18.880314906907415, 65.990752671998166 ], [ -18.879384731819925, 65.983621324264675 ], [ -18.87928137903242, 65.980546577262714 ], [ -18.880521613381745, 65.977678534936388 ], [ -18.883467170073857, 65.975198066237738 ], [ -18.888118049108698, 65.973027655901546 ], [ -18.894629279217838, 65.971270656715433 ], [ -18.901269701435581, 65.968841864860167 ], [ -18.905868902727661, 65.966051336899625 ], [ -18.908323533903967, 65.962046413910855 ], [ -18.906463181930292, 65.959436754002979 ], [ -18.902509934885586, 65.957731432559513 ], [ -18.885689256354112, 65.953700670249702 ], [ -18.873674485589049, 65.949049791214861 ], [ -18.867473313842368, 65.944269720970794 ], [ -18.862589890810796, 65.937525946864923 ], [ -18.859954393380576, 65.92858592400114 ], [ -18.85943762944305, 65.91995596039925 ], [ -18.860884569367386, 65.912824611766382 ], [ -18.865018682666062, 65.9066234400197 ], [ -18.871891648880478, 65.900215562698008 ], [ -18.897471483122445, 65.882438869758005 ], [ -18.904938726740852, 65.878924872284983 ], [ -18.91263851615463, 65.876547757273158 ], [ -18.92144934690981, 65.875049140505382 ], [ -18.957106085577379, 65.873860582100178 ], [ -18.963333095745782, 65.872697862116638 ], [ -18.968939989189153, 65.870553290202167 ], [ -18.97410763216152, 65.867245999203476 ], [ -18.97873267277464, 65.86308604658376 ], [ -18.982634242975962, 65.857582505927894 ], [ -18.985321418148942, 65.850657863769356 ], [ -18.986509975654883, 65.840477607455568 ], [ -18.983616094906836, 65.833656318084593 ], [ -18.978086716728626, 65.827765204700427 ], [ -18.969585944335847, 65.82355357523727 ], [ -18.931474575391348, 65.812107246152436 ], [ -18.882795375606122, 65.790816554840092 ], [ -18.862383185235842, 65.787870999047357 ], [ -18.852978075277974, 65.783788560793425 ], [ -18.843211229214887, 65.776838081112544 ], [ -18.827682460976803, 65.759862372050804 ], [ -18.821455450808401, 65.751284085292298 ], [ -18.818897467743966, 65.744824531127165 ], [ -18.820525274821591, 65.741362210497584 ], [ -18.823264125938692, 65.737073065769323 ], [ -18.824814418650533, 65.729786689304262 ], [ -18.821455450808401, 65.724205634282555 ], [ -18.814479132705799, 65.718986315366124 ], [ -18.807451137759813, 65.715239772997109 ], [ -18.799699673301291, 65.709219469303036 ], [ -18.797658454174325, 65.703431707807056 ], [ -18.796495734190785, 65.694026597849188 ], [ -18.799751349245355, 65.688497218771602 ], [ -18.806133389044646, 65.683742987848575 ], [ -18.848378872187197, 65.669816189165772 ], [ -18.854786750408209, 65.666948146839502 ], [ -18.85866248218781, 65.66358917899737 ], [ -18.860987922154891, 65.658886624018464 ], [ -18.861297979618087, 65.646484280525101 ], [ -18.864062669156851, 65.641988430221829 ], [ -18.868248460198288, 65.638422756804744 ], [ -18.87943640776399, 65.631834011430442 ], [ -18.882485317243606, 65.628914293160051 ], [ -18.883958095589662, 65.62545197253047 ], [ -18.885585902667287, 65.617648831228564 ], [ -18.888040533843593, 65.613643907340418 ], [ -18.892923956875109, 65.610000719557547 ], [ -18.898970098990901, 65.607106838809557 ], [ -18.910235561821708, 65.603179430186515 ], [ -18.913749559294729, 65.601034858272044 ], [ -18.9158941312092, 65.597701727952369 ], [ -18.917470262342761, 65.592921657708303 ], [ -18.916023322418425, 65.588916733820156 ], [ -18.913646205607904, 65.586100369236647 ], [ -18.907987637119788, 65.58191457819521 ], [ -18.905998093936887, 65.580803535055054 ], [ -18.902148199679687, 65.579304918287335 ], [ -18.900029466186936, 65.578788154349809 ], [ -18.885689256354112, 65.576979479219574 ], [ -18.878635422986406, 65.574912420771568 ], [ -18.870728928896938, 65.571140041779472 ], [ -18.851996222447724, 65.558065903818374 ], [ -18.847655401775398, 65.556308906430843 ], [ -18.842255214806301, 65.555301215178929 ], [ -18.808588019321633, 65.552794908058502 ], [ -18.800113083551992, 65.550417792147357 ], [ -18.785488653778373, 65.543958237982281 ], [ -18.762880214650181, 65.536671861517164 ], [ -18.748643357604863, 65.528842881793537 ], [ -18.730143195152323, 65.520755520550779 ], [ -18.724097052137267, 65.516052965571873 ], [ -18.722159185797807, 65.511763820843612 ], [ -18.721952481122116, 65.507965603429852 ], [ -18.723476935412236, 65.504529121221935 ], [ -18.726189948107617, 65.501066799693035 ], [ -18.731305915135863, 65.497139391069993 ], [ -18.753165046329855, 65.486080633814197 ], [ -18.755516322919959, 65.484220282739841 ], [ -18.75784176288704, 65.48150727004446 ], [ -18.758358526824566, 65.478535874930628 ], [ -18.75784176288704, 65.469802558541232 ], [ -18.758100145305491, 65.466598619430727 ], [ -18.759702113961396, 65.46241282838929 ], [ -18.763267788277801, 65.458020330873524 ], [ -18.774016486271819, 65.447995104190682 ], [ -18.778589850041556, 65.441561388447269 ], [ -18.779520026028365, 65.433267319830918 ], [ -18.774016486271819, 65.428823147270407 ], [ -18.763577846640317, 65.425257472954002 ], [ -18.749082607176604, 65.422079373164536 ], [ -18.734018926931924, 65.417092597345459 ], [ -18.720686408351071, 65.410581367236261 ], [ -18.711022915075489, 65.400091050761375 ], [ -18.707508917602468, 65.390685939904188 ], [ -18.704615037753797, 65.379730537234479 ], [ -18.697380337232801, 65.372289130239153 ], [ -18.686812507291393, 65.367276515998412 ], [ -18.67288570770927, 65.364382636149685 ], [ -18.604466112021441, 65.360351873839875 ], [ -18.595474412314275, 65.357613024521413 ], [ -18.587619595068247, 65.352342026962958 ], [ -18.582141892834102, 65.342265123436675 ], [ -18.569842902128244, 65.308107001536882 ], [ -18.556613735435519, 65.292009793417208 ], [ -18.539793056904045, 65.278858141090325 ], [ -18.49573889773194, 65.257903347461479 ], [ -18.413831752933049, 65.235966701901759 ], [ -18.399284836625895, 65.229868882942583 ], [ -18.382515834937863, 65.21844839138015 ], [ -18.375048591319455, 65.207648017442011 ], [ -18.365720994828052, 65.184703681529641 ], [ -18.35486894404653, 65.146359767689091 ], [ -18.351174079420218, 65.095613512153818 ], [ -18.351613328991959, 65.068586737987516 ], [ -18.35393876805972, 65.046417548431066 ], [ -18.358279587832726, 65.027710680403572 ], [ -18.382567510881927, 64.961978258090085 ], [ -18.426544154788928, 64.880613714751121 ], [ -18.871529913674578, 64.838626614026964 ], [ -19.154845953977599, 64.784676419381242 ], [ -19.404753180315026, 64.785089830531206 ], [ -19.666804368626742, 64.750802517422187 ], [ -19.695898200341674, 64.750053209487987 ], [ -19.72010860812577, 64.752326971712364 ], [ -19.977431403036803, 64.801626289121941 ], [ -19.923662074645051, 64.840848701206539 ], [ -19.809043747870646, 64.894643867120749 ], [ -19.799431932337825, 64.901413478749021 ], [ -19.793618333319444, 64.910405178456188 ], [ -19.792688158231897, 64.91722646782722 ], [ -19.793359950900992, 64.924151109086381 ], [ -19.795711229289793, 64.929112047383057 ], [ -19.800723842631214, 64.933969631992909 ], [ -19.809999762279233, 64.935519924704749 ], [ -20.105046353406465, 64.94110097882708 ], [ -20.343791469700591, 64.943736477156676 ], [ -20.391230435136492, 64.954175116788178 ], [ -20.405648159335101, 64.954976101565819 ], [ -20.727127245426061, 64.913712470354199 ], [ -20.742836879918059, 64.914745999128513 ], [ -20.781284145646794, 64.930869046569228 ], [ -20.792162034850037, 64.932832750431032 ], [ -20.875102708423242, 64.935468247861309 ], [ -20.88913285989355, 64.937406114200769 ], [ -20.975148281368092, 64.961771552515131 ], [ -20.984217495441044, 64.972365220878203 ], [ -21.000857305919908, 64.988384915531412 ], [ -21.006825933669916, 64.999030259838605 ], [ -21.023207362629705, 65.037115790361383 ], [ -21.047960373672311, 65.065176093302057 ], [ -21.062765672397859, 65.079232083194029 ], [ -21.070982224849786, 65.091014309063098 ], [ -21.075426398309617, 65.101375434328816 ], [ -21.075994839090583, 65.110134589139932 ], [ -21.073204312029361, 65.128479722860902 ], [ -21.074444546378743, 65.145532945389107 ], [ -21.084418097117464, 65.1592788760193 ], [ -21.083566860999952, 65.168402411000045 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IS-6", "NAME_1": "Norðurland eystra" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -19.078764709946128, 66.157993428939946 ], [ -19.07843990799995, 66.15851471600007 ], [ -19.06867428299995, 66.164618231000077 ], [ -19.034047003999945, 66.17719147300005 ], [ -18.944691535999937, 66.190659898000035 ], [ -18.912912563999953, 66.184393622000073 ], [ -18.92015540299991, 66.152289130000042 ], [ -18.90103105399993, 66.155462958000044 ], [ -18.887684699999909, 66.164252020000049 ], [ -18.864898240999935, 66.185777085000041 ], [ -18.86937415299991, 66.19562409100007 ], [ -18.872425910999937, 66.199448960000041 ], [ -18.854115363999938, 66.20538971600007 ], [ -18.827015753999945, 66.20343659100007 ], [ -18.776844855999911, 66.193304755000042 ], [ -18.784657355999911, 66.17837148600006 ], [ -18.801503058999913, 66.156642971000053 ], [ -18.804676886999914, 66.141750393000052 ], [ -18.793568488999938, 66.142075914000031 ], [ -18.721547003999945, 66.172756252000056 ], [ -18.692250128999945, 66.169989325000074 ], [ -18.668120897999927, 66.157945054000038 ], [ -18.647572394999941, 66.14484284100007 ], [ -18.629058397999927, 66.138617255000042 ], [ -18.619618292999917, 66.13149648600006 ], [ -18.631214972999942, 66.115627346000053 ], [ -18.659535285999937, 66.090236721000053 ], [ -18.646880662999934, 66.089789130000042 ], [ -18.632557745999918, 66.091376044000071 ], [ -18.618967251999948, 66.095038153000075 ], [ -18.608876105999911, 66.100775458000044 ], [ -18.597157355999911, 66.104559637000079 ], [ -18.584095831999946, 66.100327867000033 ], [ -18.571359829999949, 66.093695380000042 ], [ -18.560170050999943, 66.090236721000053 ], [ -18.544545050999943, 66.082749742000033 ], [ -18.534820115999935, 66.065252997000073 ], [ -18.526844855999911, 66.044989325000074 ], [ -18.516102667999917, 66.029445705000057 ], [ -18.534575975999928, 65.999497789000031 ], [ -18.542469855999911, 65.981919664000031 ], [ -18.540028449999909, 65.974188544000071 ], [ -18.468332485999952, 65.966701565000051 ], [ -18.422230597999942, 65.954657294000071 ], [ -18.348011847999942, 65.950181382000039 ], [ -18.338002081999946, 65.946844794000071 ], [ -18.327259894999941, 65.939032294000071 ], [ -18.310454881999931, 65.922674872000073 ], [ -18.28734290299991, 65.915106512000079 ], [ -18.27961178299995, 65.904852606000077 ], [ -18.274403449999909, 65.893255927000041 ], [ -18.265533006999931, 65.880072333000044 ], [ -18.263661261999914, 65.875677802000041 ], [ -18.260324673999946, 65.872381903000075 ], [ -18.252308722999942, 65.871079820000034 ], [ -18.233998175999943, 65.872219143000052 ], [ -18.224964972999942, 65.87140534100007 ], [ -18.218169725999928, 65.867743231000077 ], [ -18.208159959999932, 65.855292059000078 ], [ -18.205474412999934, 65.847072658000059 ], [ -18.207630988999938, 65.819281317000048 ], [ -18.203684048999946, 65.807928778000075 ], [ -18.185292120999918, 65.790025132000039 ], [ -18.179676886999914, 65.782375393000052 ], [ -18.179839647999927, 65.740423895000049 ], [ -18.176584438999953, 65.733954169000071 ], [ -18.167958136999914, 65.731146552000041 ], [ -18.138742641999954, 65.713446356000077 ], [ -18.091542120999918, 65.693019924000055 ], [ -18.096913214999915, 65.679632880000042 ], [ -18.091949022999927, 65.661810614000046 ], [ -18.079904751999948, 65.647609768000052 ], [ -18.063588019999941, 65.645209052000041 ], [ -18.05101477799991, 65.65766022300005 ], [ -18.051869269999941, 65.675970770000049 ], [ -18.060373501999948, 65.694077867000033 ], [ -18.070423956999946, 65.706000067000048 ], [ -18.078480597999942, 65.709784247000073 ], [ -18.099232550999943, 65.716376044000071 ], [ -18.105132615999935, 65.720282294000071 ], [ -18.109486456999946, 65.731594143000052 ], [ -18.106556769999941, 65.738023179000038 ], [ -18.101185675999943, 65.742621161000045 ], [ -18.097767706999946, 65.748236395000049 ], [ -18.098378058999913, 65.757635809000078 ], [ -18.100697394999941, 65.764553127000056 ], [ -18.101633266999954, 65.771714585000041 ], [ -18.097767706999946, 65.782375393000052 ], [ -18.092518683999913, 65.786281643000052 ], [ -18.075347459999932, 65.792792059000078 ], [ -18.070423956999946, 65.796047268000052 ], [ -18.064564581999946, 65.814601955000057 ], [ -18.067616339999915, 65.830552476000037 ], [ -18.097767706999946, 65.877915757000039 ], [ -18.098500128999945, 65.881048895000049 ], [ -18.097767706999946, 65.894964911000045 ], [ -18.100331183999913, 65.89874909100007 ], [ -18.106434699999909, 65.898586330000057 ], [ -18.11351477799991, 65.897447007000039 ], [ -18.118885870999918, 65.898382880000042 ], [ -18.138579881999931, 65.916164455000057 ], [ -18.146148240999935, 65.919582424000055 ], [ -18.147206183999913, 65.920599677000041 ], [ -18.14867102799991, 65.922796942000048 ], [ -18.151519334999932, 65.924790757000039 ], [ -18.156727667999917, 65.925726630000042 ], [ -18.161691860999952, 65.923570054000038 ], [ -18.169911261999914, 65.914007880000042 ], [ -18.173451300999943, 65.912095445000034 ], [ -18.187001105999911, 65.915838934000078 ], [ -18.217925584999932, 65.932074286000045 ], [ -18.228138800999943, 65.939398505000042 ], [ -18.218739386999914, 65.953558661000045 ], [ -18.222523566999939, 65.966986395000049 ], [ -18.235218878999945, 65.976996161000045 ], [ -18.264068162999934, 65.984849351000037 ], [ -18.284250454999949, 66.005519924000055 ], [ -18.296986456999946, 66.01508209800005 ], [ -18.296986456999946, 66.021918036000045 ], [ -18.289540167999917, 66.021918036000045 ], [ -18.289540167999917, 66.029445705000057 ], [ -18.31672115799995, 66.057359117000033 ], [ -18.329213019999941, 66.103949286000045 ], [ -18.323841925999943, 66.150783596000053 ], [ -18.296986456999946, 66.179632880000042 ], [ -18.283680792999917, 66.182033596000053 ], [ -18.193959113999938, 66.179632880000042 ], [ -18.18032792899993, 66.176336981000077 ], [ -18.156239386999914, 66.167710679000038 ], [ -18.142445441999939, 66.165961005000042 ], [ -18.099720831999946, 66.167710679000038 ], [ -18.084136522999927, 66.165961005000042 ], [ -18.08617102799991, 66.162298895000049 ], [ -18.08617102799991, 66.160956122000073 ], [ -18.086822068999936, 66.160305080000057 ], [ -18.091542120999918, 66.15851471600007 ], [ -18.054066535999937, 66.149562893000052 ], [ -17.955433722999942, 66.160142320000034 ], [ -17.91274980399993, 66.152289130000042 ], [ -17.90453040299991, 66.144598700000074 ], [ -17.894154425999943, 66.124904690000051 ], [ -17.885487433999913, 66.11749909100007 ], [ -17.874419725999928, 66.115220445000034 ], [ -17.833973761999914, 66.11749909100007 ], [ -17.816477016999954, 66.113267320000034 ], [ -17.784413214999915, 66.094468492000033 ], [ -17.765736456999946, 66.090236721000053 ], [ -17.752349412999934, 66.08539459800005 ], [ -17.71312415299991, 66.060288804000038 ], [ -17.700510219999956, 66.049261786000045 ], [ -17.684396938999953, 66.020453192000048 ], [ -17.672963019999941, 66.007066148000035 ], [ -17.64085852799991, 65.997219143000052 ], [ -17.623768683999913, 65.987209377000056 ], [ -17.598052537999934, 65.966701565000051 ], [ -17.564076300999943, 65.925116278000075 ], [ -17.549672003999945, 65.912095445000034 ], [ -17.545643683999913, 65.931138414000031 ], [ -17.554025844999956, 65.946030992000033 ], [ -17.567128058999913, 65.959458726000037 ], [ -17.577626105999911, 65.974188544000071 ], [ -17.558176235999952, 65.973700262000079 ], [ -17.535267706999946, 65.976263739000046 ], [ -17.512928839999915, 65.981187242000033 ], [ -17.495106574999909, 65.987779039000031 ], [ -17.586903449999909, 65.98578522300005 ], [ -17.611154751999948, 65.994045315000051 ], [ -17.452015753999945, 65.995184637000079 ], [ -17.440337693999936, 65.990383205000057 ], [ -17.433664516999954, 65.978989976000037 ], [ -17.419341600999928, 65.960516669000071 ], [ -17.413197394999941, 65.960516669000071 ], [ -17.407826300999943, 65.967596747000073 ], [ -17.406646287999934, 65.975002346000053 ], [ -17.41038977799991, 65.98187897300005 ], [ -17.419341600999928, 65.987779039000031 ], [ -17.419341600999928, 65.994045315000051 ], [ -17.40648352799991, 65.998602606000077 ], [ -17.395130988999938, 66.006089585000041 ], [ -17.38898678299995, 66.016343492000033 ], [ -17.391997850999928, 66.029445705000057 ], [ -17.376088019999941, 66.036810614000046 ], [ -17.369699673999946, 66.041734117000033 ], [ -17.364654100999928, 66.049261786000045 ], [ -17.364003058999913, 66.05499909100007 ], [ -17.366322394999941, 66.070502020000049 ], [ -17.364654100999928, 66.08344147300005 ], [ -17.352162238999938, 66.09711334800005 ], [ -17.326771613999938, 66.110337632000039 ], [ -17.297230597999942, 66.120428778000075 ], [ -17.272287563999953, 66.124335028000075 ], [ -17.261463995999918, 66.129706122000073 ], [ -17.255726691999939, 66.141424872000073 ], [ -17.254790818999936, 66.153143622000073 ], [ -17.258900519999941, 66.15851471600007 ], [ -17.269886847999942, 66.161525783000059 ], [ -17.264963344999956, 66.168646552000041 ], [ -17.244618292999917, 66.182684637000079 ], [ -17.217355923999946, 66.194240627000056 ], [ -17.156117316999939, 66.203680731000077 ], [ -17.145619269999941, 66.221177476000037 ], [ -17.119252081999946, 66.211127020000049 ], [ -17.018666144999941, 66.206935940000051 ], [ -16.99242102799991, 66.19953034100007 ], [ -16.991525844999956, 66.19875722900008 ], [ -16.972035285999937, 66.181463934000078 ], [ -16.933338995999918, 66.138617255000042 ], [ -16.934396938999953, 66.133205471000053 ], [ -16.934437628999945, 66.131089585000041 ], [ -16.933949347999942, 66.129136460000041 ], [ -16.933338995999918, 66.124335028000075 ], [ -16.947010870999918, 66.124335028000075 ], [ -16.947010870999918, 66.11749909100007 ], [ -16.935292120999918, 66.113226630000042 ], [ -16.922759568999936, 66.111029364000046 ], [ -16.910267706999946, 66.112005927000041 ], [ -16.898548956999946, 66.11749909100007 ], [ -16.905181443999936, 66.118312893000052 ], [ -16.919748501999948, 66.124335028000075 ], [ -16.884103969999956, 66.135321356000077 ], [ -16.75812740799995, 66.149603583000044 ], [ -16.721058722999942, 66.14484284100007 ], [ -16.737172003999945, 66.145086981000077 ], [ -16.753041144999941, 66.14288971600007 ], [ -16.76821855399993, 66.138373114000046 ], [ -16.782541469999956, 66.13117096600007 ], [ -16.76976477799991, 66.127630927000041 ], [ -16.751820441999939, 66.113185940000051 ], [ -16.744699673999946, 66.114447333000044 ], [ -16.724436001999948, 66.134426174000055 ], [ -16.712513800999943, 66.142482815000051 ], [ -16.700550910999937, 66.14484284100007 ], [ -16.672352667999917, 66.133693752000056 ], [ -16.651682094999956, 66.115952867000033 ], [ -16.62954667899993, 66.100816148000035 ], [ -16.596913214999915, 66.097642320000034 ], [ -16.596913214999915, 66.103908596000053 ], [ -16.628895636999914, 66.113348700000074 ], [ -16.64484615799995, 66.120510158000059 ], [ -16.655629035999937, 66.127752997000073 ], [ -16.663441535999937, 66.140855210000041 ], [ -16.663726365999935, 66.15070221600007 ], [ -16.667713995999918, 66.15851471600007 ], [ -16.686268683999913, 66.165961005000042 ], [ -16.640736456999946, 66.179348049000055 ], [ -16.57249915299991, 66.188544012000079 ], [ -16.531361456999946, 66.199164130000042 ], [ -16.508168097999942, 66.199448960000041 ], [ -16.596669074999909, 66.178290106000077 ], [ -16.624256964999915, 66.165961005000042 ], [ -16.536529100999928, 66.180121161000045 ], [ -16.515695766999954, 66.179632880000042 ], [ -16.491363084999932, 66.170599677000041 ], [ -16.452463344999956, 66.146429755000042 ], [ -16.426258917999917, 66.14484284100007 ], [ -16.426258917999917, 66.152289130000042 ], [ -16.461537238999938, 66.167181708000044 ], [ -16.479359503999945, 66.178412177000041 ], [ -16.487049933999913, 66.189520575000074 ], [ -16.483143683999913, 66.204779364000046 ], [ -16.472767706999946, 66.217678127000056 ], [ -16.45767167899993, 66.227606512000079 ], [ -16.439930792999917, 66.234198309000078 ], [ -16.439361131999931, 66.23891836100006 ], [ -16.440907355999911, 66.240139065000051 ], [ -16.437489386999914, 66.244940497000073 ], [ -16.428700324999909, 66.252752997000073 ], [ -16.421986456999946, 66.262396552000041 ], [ -16.419422980999911, 66.27179596600007 ], [ -16.421945766999954, 66.287095445000034 ], [ -16.428618943999936, 66.295477606000077 ], [ -16.438303188999953, 66.302313544000071 ], [ -16.454213019999941, 66.317450262000079 ], [ -16.459095831999946, 66.320746161000045 ], [ -16.464751756999931, 66.32290273600006 ], [ -16.47093665299991, 66.323635158000059 ], [ -16.476185675999943, 66.327337958000044 ], [ -16.478016730999911, 66.335760809000078 ], [ -16.47883053299995, 66.344794012000079 ], [ -16.480824347999942, 66.350287177000041 ], [ -16.508534308999913, 66.359320380000042 ], [ -16.515370245999918, 66.367336330000057 ], [ -16.508168097999942, 66.38507721600007 ], [ -16.511463995999918, 66.385443427000041 ], [ -16.521839972999942, 66.38507721600007 ], [ -16.518299933999913, 66.388373114000046 ], [ -16.511830206999946, 66.395982164000031 ], [ -16.508168097999942, 66.399318752000056 ], [ -16.515248175999943, 66.402167059000078 ], [ -16.520130988999938, 66.406439520000049 ], [ -16.529286261999914, 66.419175523000035 ], [ -16.508168097999942, 66.419175523000035 ], [ -16.508168097999942, 66.426011460000041 ], [ -16.525502081999946, 66.435736395000049 ], [ -16.544667120999918, 66.467596747000073 ], [ -16.572987433999913, 66.481024481000077 ], [ -16.563954230999911, 66.494818427000041 ], [ -16.543324347999942, 66.506984768000052 ], [ -16.521839972999942, 66.508530992000033 ], [ -16.515980597999942, 66.502630927000041 ], [ -16.515207485999952, 66.495021877000056 ], [ -16.512603318999936, 66.488836981000077 ], [ -16.501332160999937, 66.487494208000044 ], [ -16.498605923999946, 66.492010809000078 ], [ -16.494496222999942, 66.501613674000055 ], [ -16.487049933999913, 66.511053778000075 ], [ -16.473988410999937, 66.515366929000038 ], [ -16.445912238999938, 66.520209052000041 ], [ -16.429676886999914, 66.51984284100007 ], [ -16.429351365999935, 66.511948960000041 ], [ -16.434437628999945, 66.500921942000048 ], [ -16.431019660999937, 66.491603908000059 ], [ -16.422434048999946, 66.48468659100007 ], [ -16.411976691999939, 66.481268622000073 ], [ -16.413929816999939, 66.486721096000053 ], [ -16.414662238999938, 66.491115627000056 ], [ -16.415882941999939, 66.49555084800005 ], [ -16.419422980999911, 66.501125393000052 ], [ -16.403635219999956, 66.503607489000046 ], [ -16.374134894999941, 66.513739325000074 ], [ -16.364735480999911, 66.515366929000038 ], [ -16.350005662999934, 66.510199286000045 ], [ -16.339019334999932, 66.502508856000077 ], [ -16.327015753999945, 66.496161200000074 ], [ -16.309559699999909, 66.494940497000073 ], [ -16.323597785999937, 66.488836981000077 ], [ -16.330067511999914, 66.487494208000044 ], [ -16.312855597999942, 66.481268622000073 ], [ -16.294260219999956, 66.48273346600007 ], [ -16.274728969999956, 66.486558335000041 ], [ -16.268625454999949, 66.487494208000044 ], [ -16.268625454999949, 66.494940497000073 ], [ -16.257557745999918, 66.502020575000074 ], [ -16.247303839999915, 66.511623440000051 ], [ -16.235585089999915, 66.51788971600007 ], [ -16.233794725999928, 66.515366929000038 ], [ -16.22679602799991, 66.503892320000034 ], [ -16.215199347999942, 66.502183335000041 ], [ -16.204457160999937, 66.507961330000057 ], [ -16.196278449999909, 66.526841539000031 ], [ -16.187652147999927, 66.531439520000049 ], [ -16.165516730999911, 66.535874742000033 ], [ -16.137806769999941, 66.535874742000033 ], [ -16.080799933999913, 66.525946356000077 ], [ -16.069406704999949, 66.528469143000052 ], [ -16.022938605999911, 66.536607164000031 ], [ -15.938710089999915, 66.502671617000033 ], [ -15.891224738999938, 66.494940497000073 ], [ -15.904693162999934, 66.48578522300005 ], [ -15.920318162999934, 66.481675523000035 ], [ -15.933338995999918, 66.475490627000056 ], [ -15.939605272999927, 66.460150458000044 ], [ -15.929351365999935, 66.460435289000031 ], [ -15.925933397999927, 66.460150458000044 ], [ -15.925933397999927, 66.453924872000073 ], [ -15.946400519999941, 66.446478583000044 ], [ -15.941029425999943, 66.44367096600007 ], [ -15.931060350999928, 66.435736395000049 ], [ -15.925933397999927, 66.432806708000044 ], [ -15.937652147999927, 66.423814195000034 ], [ -15.92406165299991, 66.422349351000037 ], [ -15.888091600999928, 66.426011460000041 ], [ -15.84797115799995, 66.422308661000045 ], [ -15.83039303299995, 66.426011460000041 ], [ -15.83226477799991, 66.421454169000071 ], [ -15.834868943999936, 66.410305080000057 ], [ -15.836537238999938, 66.405503648000035 ], [ -15.741037563999953, 66.405503648000035 ], [ -15.72297115799995, 66.402818101000037 ], [ -15.706695115999935, 66.395900783000059 ], [ -15.697417772999927, 66.386867580000057 ], [ -15.69945227799991, 66.377630927000041 ], [ -15.69945227799991, 66.37140534100007 ], [ -15.679554816999939, 66.34406159100007 ], [ -15.721302863999938, 66.312404690000051 ], [ -15.744862433999913, 66.299546617000033 ], [ -15.775135870999918, 66.289455471000053 ], [ -15.761463995999918, 66.275213934000078 ], [ -15.749501105999911, 66.280666408000059 ], [ -15.737294074999909, 66.277573960000041 ], [ -15.723459438999953, 66.271633205000057 ], [ -15.690541144999941, 66.265773830000057 ], [ -15.687001105999911, 66.258693752000056 ], [ -15.691395636999914, 66.247870184000078 ], [ -15.69945227799991, 66.234198309000078 ], [ -15.68390865799995, 66.228745835000041 ], [ -15.610666469999956, 66.227362372000073 ], [ -15.575428839999915, 66.233954169000071 ], [ -15.563588019999941, 66.232611395000049 ], [ -15.558583136999914, 66.228094794000071 ], [ -15.548573370999918, 66.221177476000037 ], [ -15.544260219999956, 66.221258856000077 ], [ -15.538319464999915, 66.223049221000053 ], [ -15.528716600999928, 66.227362372000073 ], [ -15.526478644999941, 66.216498114000046 ], [ -15.520130988999938, 66.207709052000041 ], [ -15.510121222999942, 66.201646226000037 ], [ -15.481922980999911, 66.196356512000079 ], [ -15.452015753999945, 66.182684637000079 ], [ -15.419667120999918, 66.172308661000045 ], [ -15.400135870999918, 66.15851471600007 ], [ -15.380360480999911, 66.149969794000071 ], [ -15.356760219999956, 66.15851471600007 ], [ -15.364816860999952, 66.160101630000042 ], [ -15.368031378999945, 66.162054755000042 ], [ -15.371083136999914, 66.165961005000042 ], [ -15.353505011999914, 66.171210028000075 ], [ -15.340443488999938, 66.182196356000077 ], [ -15.33234615799995, 66.197943427000041 ], [ -15.329457160999937, 66.217474677000041 ], [ -15.333485480999911, 66.237616278000075 ], [ -15.337880011999914, 66.251776434000078 ], [ -15.331288214999915, 66.261460679000038 ], [ -15.302154100999928, 66.268377997000073 ], [ -15.179025844999956, 66.268377997000073 ], [ -15.108754035999937, 66.278387762000079 ], [ -15.103260870999918, 66.286118882000039 ], [ -15.102284308999913, 66.295355536000045 ], [ -15.096750454999949, 66.303127346000053 ], [ -15.025949673999946, 66.321844794000071 ], [ -15.014800584999932, 66.333807684000078 ], [ -15.007801886999914, 66.349107164000031 ], [ -14.991118943999936, 66.361314195000034 ], [ -14.952137824999909, 66.377630927000041 ], [ -14.925445115999935, 66.385321356000077 ], [ -14.839751756999931, 66.391831773000035 ], [ -14.816151495999918, 66.389105536000045 ], [ -14.777699347999942, 66.375799872000073 ], [ -14.75413977799991, 66.37140534100007 ], [ -14.563628709999932, 66.384507554000038 ], [ -14.610747850999928, 66.363226630000042 ], [ -14.788197394999941, 66.33038971600007 ], [ -14.867176886999914, 66.305853583000044 ], [ -14.959136522999927, 66.296454169000071 ], [ -14.990589972999942, 66.285834052000041 ], [ -15.014800584999932, 66.268377997000073 ], [ -14.990305141999954, 66.264593817000048 ], [ -14.978260870999918, 66.259507554000038 ], [ -14.973215298999946, 66.251613674000055 ], [ -14.968129035999937, 66.249660549000055 ], [ -14.946400519999941, 66.231838283000059 ], [ -14.942209438999953, 66.227362372000073 ], [ -14.935210740999935, 66.221909898000035 ], [ -14.93976803299995, 66.210109768000052 ], [ -14.952137824999909, 66.193304755000042 ], [ -14.960357225999928, 66.185777085000041 ], [ -15.056019660999937, 66.148138739000046 ], [ -15.072865363999938, 66.14484284100007 ], [ -15.134632941999939, 66.143255927000041 ], [ -15.161000128999945, 66.133612372000073 ], [ -15.179351365999935, 66.111314195000034 ], [ -15.148589647999927, 66.101467190000051 ], [ -15.13345292899993, 66.098700262000079 ], [ -15.074126756999931, 66.09711334800005 ], [ -15.061390753999945, 66.089341539000031 ], [ -15.055775519999941, 66.070379950000074 ], [ -15.066273566999939, 66.067328192000048 ], [ -15.08462480399993, 66.059556382000039 ], [ -15.096750454999949, 66.05609772300005 ], [ -15.075998501999948, 66.049627997000073 ], [ -14.96320553299995, 66.048041083000044 ], [ -14.898060675999943, 66.035589911000045 ], [ -14.852691209999932, 66.037176825000074 ], [ -14.770415818999936, 66.067857164000031 ], [ -14.719349738999938, 66.070379950000074 ], [ -14.697010870999918, 66.065497137000079 ], [ -14.677316860999952, 66.056219794000071 ], [ -14.663238084999932, 66.041164455000057 ], [ -14.657866990999935, 66.018500067000048 ], [ -14.651478644999941, 66.006740627000056 ], [ -14.637440558999913, 66.002752997000073 ], [ -14.623402472999942, 66.00141022300005 ], [ -14.616932745999918, 65.997748114000046 ], [ -14.614613410999937, 65.986273505000042 ], [ -14.663044662980838, 65.981071956705421 ], [ -14.694132582152974, 65.943766452259922 ], [ -15.101384333919896, 65.922004908299868 ], [ -15.12625466961731, 65.900243364339758 ], [ -15.166668964900794, 65.881590613016328 ], [ -15.225736013306403, 65.862937860793636 ], [ -15.315261196447068, 65.857272447565379 ], [ -15.328412847874631, 65.834069729234614 ], [ -15.338153856415374, 65.826731675926055 ], [ -15.350349494333727, 65.821357327378735 ], [ -15.403679572254475, 65.808464057470246 ], [ -15.417838914034633, 65.803477280751849 ], [ -15.434297858259583, 65.795364081087428 ], [ -15.44171342593387, 65.788749498190782 ], [ -15.444762336312749, 65.783220120012516 ], [ -15.44538245303778, 65.778827623396069 ], [ -15.448017951367376, 65.773815009155328 ], [ -15.456389532550872, 65.771567084453352 ], [ -15.664102952589189, 65.747899278129125 ], [ -15.675342576998332, 65.744876207071286 ], [ -15.680251837552248, 65.738675035324604 ], [ -15.68283565903846, 65.731698717222002 ], [ -15.684851039743705, 65.715989080931308 ], [ -15.6843601142279, 65.709193630881316 ], [ -15.682603115041729, 65.704413561536626 ], [ -15.674877489004928, 65.696558743391279 ], [ -15.671854417047712, 65.690951849947908 ], [ -15.670381638701656, 65.683794663792696 ], [ -15.669839037241786, 65.657543036881634 ], [ -15.66759111164049, 65.647672838031042 ], [ -15.664490526216809, 65.639869696729079 ], [ -15.660382248641895, 65.631911525796227 ], [ -15.658444383201754, 65.624056708550256 ], [ -15.659529587920133, 65.615736803310767 ], [ -15.683145718300239, 65.583180650066936 ], [ -15.686995611658176, 65.574343980889978 ], [ -15.689088507628526, 65.56685089795053 ], [ -15.689863653984446, 65.554836127185467 ], [ -15.692266608317311, 65.550288600938131 ], [ -15.703351203095565, 65.549539293003932 ], [ -16.013849046296457, 65.575842596758378 ], [ -16.02775000655754, 65.574705716095878 ], [ -16.036354132637143, 65.570364895423552 ], [ -16.0416768052404, 65.563336900477566 ], [ -16.04400224520748, 65.557135728730884 ], [ -16.048265549715325, 65.539410711734945 ], [ -16.051133592041651, 65.531943468116538 ], [ -16.060538702898839, 65.516207994303443 ], [ -16.076093308659267, 65.497036038282488 ], [ -16.089787564244716, 65.4841686058964 ], [ -16.102293259626208, 65.476830553487218 ], [ -16.112473516839316, 65.472903143964913 ], [ -16.130456916253706, 65.469570014544502 ], [ -16.150662401048976, 65.453731187943959 ], [ -16.163219774173228, 65.447064928203815 ], [ -16.168413254667996, 65.443034165894005 ], [ -16.172392341033742, 65.437298082140728 ], [ -16.176448939966633, 65.426110135474346 ], [ -16.176552292754138, 65.420374050821749 ], [ -16.175983852872491, 65.416679186195438 ], [ -16.173606736961347, 65.413836982290888 ], [ -16.166423713283734, 65.408049220794851 ], [ -16.161540290252219, 65.405465400208016 ], [ -16.084878301892104, 65.38319285786406 ], [ -16.065913052345479, 65.372625027023332 ], [ -16.037981939714768, 65.352031969499762 ], [ -16.032840135164122, 65.344900620866952 ], [ -16.027439948195081, 65.333066718154498 ], [ -16.028602668178621, 65.326684679254527 ], [ -16.033253547213462, 65.318338934694054 ], [ -16.046224330588416, 65.302138372887555 ], [ -16.054647590413992, 65.294309394063248 ], [ -16.065602993083644, 65.288728339041597 ], [ -16.117744512599188, 65.272656969343643 ], [ -16.127898932289895, 65.267747707890351 ], [ -16.158000454357477, 65.241961168073431 ], [ -16.186138271663935, 65.224081122345865 ], [ -16.191693488263866, 65.218655096955104 ], [ -16.197998012798053, 65.210335191715671 ], [ -16.20471594938158, 65.195969143461184 ], [ -16.205439418894059, 65.188786118884252 ], [ -16.204095831757229, 65.184031887061906 ], [ -16.202235479783553, 65.182455755928345 ], [ -16.201925422320414, 65.180001126550735 ], [ -16.20432837575396, 65.173231513123824 ], [ -16.205723638834854, 65.16501495977252 ], [ -16.205646125368389, 65.156488348958135 ], [ -16.203320685401309, 65.143698431837151 ], [ -16.202468023780284, 65.126154282893822 ], [ -16.203113979826298, 65.122020168695826 ], [ -16.216911587299933, 65.087836209273632 ], [ -16.219237026367693, 65.083986315016375 ], [ -16.22360368456242, 65.074167792109904 ], [ -16.224120449399209, 65.069620265862568 ], [ -16.222880215049884, 65.06558950535134 ], [ -16.218926968005178, 65.06269562370403 ], [ -16.201046922277669, 65.056726996853399 ], [ -16.201537847793418, 65.051275133040917 ], [ -16.209366828416421, 65.043006903745606 ], [ -16.234429897821542, 65.026005358060786 ], [ -16.248563402079355, 65.018874010327295 ], [ -16.260965744673399, 65.014688219285858 ], [ -16.327964239757875, 65.005644842735251 ], [ -16.338971320170288, 65.002260037370775 ], [ -16.381914435302974, 64.982648830878816 ], [ -16.434805263651981, 64.950635280893493 ], [ -16.44563147601184, 64.946061917123757 ], [ -16.452814499689396, 64.944459947568475 ], [ -16.470565355107055, 64.942651272438241 ], [ -16.510950487175251, 64.942212022866556 ], [ -16.528417120853476, 64.94032583337048 ], [ -16.586398077809065, 64.928026841765302 ], [ -16.612055426416816, 64.927277533831102 ], [ -16.617481451807578, 64.923996080354812 ], [ -16.621822271580584, 64.918234158179814 ], [ -16.627790900229854, 64.903144640412791 ], [ -16.62962541288249, 64.896323351041815 ], [ -16.629961309666726, 64.890690620076043 ], [ -16.628411016954885, 64.887124945759581 ], [ -16.623863490707549, 64.87945099656622 ], [ -16.623966844394374, 64.874800117531379 ], [ -16.626240606618694, 64.870045884809713 ], [ -16.633216925620616, 64.864258124213052 ], [ -16.648203090600134, 64.85477549899008 ], [ -16.674196335992121, 64.829867459215848 ], [ -16.677296922315122, 64.826224270533601 ], [ -16.678459642298662, 64.821470038711311 ], [ -16.676366746328313, 64.813718574252789 ], [ -16.652311367275786, 64.786175035249641 ], [ -16.647505458610055, 64.77847524673524 ], [ -16.645257533908079, 64.770207018339192 ], [ -16.639133877426502, 64.761680405726111 ], [ -16.635387335956807, 64.754032294055094 ], [ -16.633113572833111, 64.744885566515677 ], [ -16.633475308039067, 64.736772365951879 ], [ -16.635645718375201, 64.727780667144032 ], [ -16.641459315594943, 64.714086412457959 ], [ -16.662517462910614, 64.674864000373304 ], [ -16.6868829003256, 64.63869049686889 ], [ -16.876612921848846, 64.471956489000718 ], [ -17.442831590405603, 64.618562527338725 ], [ -17.947606981377078, 64.746539212014966 ], [ -18.23350684316631, 64.81756846850999 ], [ -18.333061488796659, 64.843225816218421 ], [ -18.426544154788928, 64.880613714751121 ], [ -18.382567510881927, 64.961978258090085 ], [ -18.358279587832726, 65.027710680403572 ], [ -18.35393876805972, 65.046417548431066 ], [ -18.351613328991959, 65.068586737987516 ], [ -18.351174079420218, 65.095613512153818 ], [ -18.35486894404653, 65.146359767689091 ], [ -18.365720994828052, 65.184703681529641 ], [ -18.375048591319455, 65.207648017442011 ], [ -18.382515834937863, 65.21844839138015 ], [ -18.399284836625895, 65.229868882942583 ], [ -18.413831752933049, 65.235966701901759 ], [ -18.49573889773194, 65.257903347461479 ], [ -18.539793056904045, 65.278858141090325 ], [ -18.556613735435519, 65.292009793417208 ], [ -18.569842902128244, 65.308107001536882 ], [ -18.582141892834102, 65.342265123436675 ], [ -18.587619595068247, 65.352342026962958 ], [ -18.595474412314275, 65.357613024521413 ], [ -18.604466112021441, 65.360351873839875 ], [ -18.67288570770927, 65.364382636149685 ], [ -18.686812507291393, 65.367276515998412 ], [ -18.697380337232801, 65.372289130239153 ], [ -18.704615037753797, 65.379730537234479 ], [ -18.707508917602468, 65.390685939904188 ], [ -18.711022915075489, 65.400091050761375 ], [ -18.720686408351071, 65.410581367236261 ], [ -18.734018926931924, 65.417092597345459 ], [ -18.749082607176604, 65.422079373164536 ], [ -18.763577846640317, 65.425257472954002 ], [ -18.774016486271819, 65.428823147270407 ], [ -18.779520026028365, 65.433267319830918 ], [ -18.778589850041556, 65.441561388447269 ], [ -18.774016486271819, 65.447995104190682 ], [ -18.763267788277801, 65.458020330873524 ], [ -18.759702113961396, 65.46241282838929 ], [ -18.758100145305491, 65.466598619430727 ], [ -18.75784176288704, 65.469802558541232 ], [ -18.758358526824566, 65.478535874930628 ], [ -18.75784176288704, 65.48150727004446 ], [ -18.755516322919959, 65.484220282739841 ], [ -18.753165046329855, 65.486080633814197 ], [ -18.731305915135863, 65.497139391069993 ], [ -18.726189948107617, 65.501066799693035 ], [ -18.723476935412236, 65.504529121221935 ], [ -18.721952481122116, 65.507965603429852 ], [ -18.722159185797807, 65.511763820843612 ], [ -18.724097052137267, 65.516052965571873 ], [ -18.730143195152323, 65.520755520550779 ], [ -18.748643357604863, 65.528842881793537 ], [ -18.762880214650181, 65.536671861517164 ], [ -18.785488653778373, 65.543958237982281 ], [ -18.800113083551992, 65.550417792147357 ], [ -18.808588019321633, 65.552794908058502 ], [ -18.842255214806301, 65.555301215178929 ], [ -18.847655401775398, 65.556308906430843 ], [ -18.851996222447724, 65.558065903818374 ], [ -18.870728928896938, 65.571140041779472 ], [ -18.878635422986406, 65.574912420771568 ], [ -18.885689256354112, 65.576979479219574 ], [ -18.900029466186936, 65.578788154349809 ], [ -18.902148199679687, 65.579304918287335 ], [ -18.905998093936887, 65.580803535055054 ], [ -18.907987637119788, 65.58191457819521 ], [ -18.913646205607904, 65.586100369236647 ], [ -18.916023322418425, 65.588916733820156 ], [ -18.917470262342761, 65.592921657708303 ], [ -18.9158941312092, 65.597701727952369 ], [ -18.913749559294729, 65.601034858272044 ], [ -18.910235561821708, 65.603179430186515 ], [ -18.898970098990901, 65.607106838809557 ], [ -18.892923956875109, 65.610000719557547 ], [ -18.888040533843593, 65.613643907340418 ], [ -18.885585902667287, 65.617648831228564 ], [ -18.883958095589662, 65.62545197253047 ], [ -18.882485317243606, 65.628914293160051 ], [ -18.87943640776399, 65.631834011430442 ], [ -18.868248460198288, 65.638422756804744 ], [ -18.864062669156851, 65.641988430221829 ], [ -18.861297979618087, 65.646484280525101 ], [ -18.860987922154891, 65.658886624018464 ], [ -18.85866248218781, 65.66358917899737 ], [ -18.854786750408209, 65.666948146839502 ], [ -18.848378872187197, 65.669816189165772 ], [ -18.806133389044646, 65.683742987848575 ], [ -18.799751349245355, 65.688497218771602 ], [ -18.796495734190785, 65.694026597849188 ], [ -18.797658454174325, 65.703431707807056 ], [ -18.799699673301291, 65.709219469303036 ], [ -18.807451137759813, 65.715239772997109 ], [ -18.814479132705799, 65.718986315366124 ], [ -18.821455450808401, 65.724205634282555 ], [ -18.824814418650533, 65.729786689304262 ], [ -18.823264125938692, 65.737073065769323 ], [ -18.820525274821591, 65.741362210497584 ], [ -18.818897467743966, 65.744824531127165 ], [ -18.821455450808401, 65.751284085292298 ], [ -18.827682460976803, 65.759862372050804 ], [ -18.843211229214887, 65.776838081112544 ], [ -18.852978075277974, 65.783788560793425 ], [ -18.862383185235842, 65.787870999047357 ], [ -18.882795375606122, 65.790816554840092 ], [ -18.931474575391348, 65.812107246152436 ], [ -18.969585944335847, 65.82355357523727 ], [ -18.978086716728626, 65.827765204700427 ], [ -18.983616094906836, 65.833656318084593 ], [ -18.986509975654883, 65.840477607455568 ], [ -18.985321418148942, 65.850657863769356 ], [ -18.982634242975962, 65.857582505927894 ], [ -18.97873267277464, 65.86308604658376 ], [ -18.97410763216152, 65.867245999203476 ], [ -18.968939989189153, 65.870553290202167 ], [ -18.963333095745782, 65.872697862116638 ], [ -18.957106085577379, 65.873860582100178 ], [ -18.92144934690981, 65.875049140505382 ], [ -18.91263851615463, 65.876547757273158 ], [ -18.904938726740852, 65.878924872284983 ], [ -18.897471483122445, 65.882438869758005 ], [ -18.871891648880478, 65.900215562698008 ], [ -18.865018682666062, 65.9066234400197 ], [ -18.860884569367386, 65.912824611766382 ], [ -18.85943762944305, 65.91995596039925 ], [ -18.859954393380576, 65.92858592400114 ], [ -18.862589890810796, 65.937525946864923 ], [ -18.867473313842368, 65.944269720970794 ], [ -18.873674485589049, 65.949049791214861 ], [ -18.885689256354112, 65.953700670249702 ], [ -18.902509934885586, 65.957731432559513 ], [ -18.906463181930292, 65.959436754002979 ], [ -18.908323533903967, 65.962046413910855 ], [ -18.905868902727661, 65.966051336899625 ], [ -18.901269701435581, 65.968841864860167 ], [ -18.894629279217838, 65.971270656715433 ], [ -18.888118049108698, 65.973027655901546 ], [ -18.883467170073857, 65.975198066237738 ], [ -18.880521613381745, 65.977678534936388 ], [ -18.87928137903242, 65.980546577262714 ], [ -18.879384731819925, 65.983621324264675 ], [ -18.880314906907415, 65.990752671998166 ], [ -18.880392422172577, 65.994525051889582 ], [ -18.879953171701516, 65.997884019731714 ], [ -18.879384731819925, 65.999511826809339 ], [ -18.87871293825151, 66.000442002796149 ], [ -18.877860276630486, 66.001191310730349 ], [ -18.875224779200209, 66.00299998586064 ], [ -18.870548061743648, 66.005222073040215 ], [ -18.85308142716616, 66.011423244786897 ], [ -18.8542441471497, 66.019303901353908 ], [ -18.866465622590397, 66.030801907282182 ], [ -18.949199592387288, 66.072298082490477 ], [ -18.960697598315505, 66.079532783011473 ], [ -18.99529496888772, 66.108471585095572 ], [ -19.011237149175088, 66.127695217959911 ], [ -19.019789598411251, 66.134568183275007 ], [ -19.026946783667142, 66.139374091041418 ], [ -19.073533088381339, 66.157047431193973 ], [ -19.078674892931986, 66.157977607180783 ], [ -19.078764709946128, 66.157993428939946 ] ] ], [ [ [ -18.008941209999932, 66.564154364000046 ], [ -17.983998175999943, 66.550604559000078 ], [ -17.976307745999918, 66.54828522300005 ], [ -17.980458136999914, 66.539048570000034 ], [ -17.999826626999948, 66.533392645000049 ], [ -18.017201300999943, 66.544989325000074 ], [ -18.019520636999914, 66.561346747000073 ], [ -18.008941209999932, 66.564154364000046 ] ] ], [ [ [ -18.380238410999937, 66.012111721000053 ], [ -18.37132727799991, 66.006537177000041 ], [ -18.356760219999956, 65.993231512000079 ], [ -18.356760219999956, 65.981634833000044 ], [ -18.369943813999953, 65.978013414000031 ], [ -18.381825324999909, 65.979681708000044 ], [ -18.390492316999939, 65.983465887000079 ], [ -18.396595831999946, 65.989488023000035 ], [ -18.398793097999942, 65.997259833000044 ], [ -18.40461178299995, 66.009466864000046 ], [ -18.414418097999942, 66.023667710000041 ], [ -18.408558722999942, 66.027411200000074 ], [ -18.38931230399993, 66.018540757000039 ], [ -18.380238410999937, 66.012111721000053 ] ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/india.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/india.geojson new file mode 100644 index 000000000000..3f7f875ab22b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/india.geojson @@ -0,0 +1,41 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "IN-GJ", "NAME_1": "Gujarat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.183007825000118, 23.842087206000073 ], [ 68.260360148000075, 23.89554514600006 ], [ 68.263925822000033, 23.935930277000026 ], [ 68.314051961000132, 23.915905661000082 ], [ 68.33043339000011, 23.966574402000063 ], [ 68.353636109000092, 23.939289246000058 ], [ 68.431564169000069, 23.967142843000104 ], [ 68.724466187000075, 23.965179139000085 ], [ 68.747307169000067, 24.331177470000043 ], [ 68.79919030800005, 24.329084574000049 ], [ 68.838774455000134, 24.23645457 ], [ 68.904196819000106, 24.320583802000058 ], [ 68.962642863000099, 24.257228495000035 ], [ 69.067701050000039, 24.288441061000114 ], [ 69.166713094000045, 24.253171896000126 ], [ 69.280814657000121, 24.283738506000034 ], [ 69.563071330000128, 24.276762187000045 ], [ 69.714586630000099, 24.168577576000061 ], [ 69.972038615000031, 24.165218608000131 ], [ 70.052137085000084, 24.202063904000042 ], [ 70.109704630000124, 24.304900004000089 ], [ 70.562906942000097, 24.424091695000058 ], [ 70.567661174000079, 24.272808940000075 ], [ 70.621508016000121, 24.241157125000072 ], [ 70.776020549000066, 24.236687114000048 ], [ 70.851468139000076, 24.264876607000119 ], [ 70.840926148000108, 24.305830180000029 ], [ 70.917717326000059, 24.361718242000038 ], [ 70.996678915000132, 24.356602275000043 ], [ 71.082771850000142, 24.411508484000066 ], [ 70.977145223000036, 24.464941915000068 ], [ 70.954821004000053, 24.584521180000067 ], [ 70.977145223000036, 24.63968577100006 ], [ 71.056632329000138, 24.692819747000058 ], [ 71.222350702323013, 24.636816921163984 ], [ 71.545845168219898, 24.688054104013645 ], [ 71.637002395144407, 24.657642524482924 ], [ 71.762782831062793, 24.676581936507148 ], [ 71.821487258430182, 24.635705878023828 ], [ 71.856833936936596, 24.6849276801683 ], [ 71.93476199716838, 24.658159288420393 ], [ 72.050930616654625, 24.708362942495796 ], [ 72.172783644849289, 24.634000556580418 ], [ 72.327502882851718, 24.642165432188904 ], [ 72.328433058838584, 24.617154038727904 ], [ 72.248748000319949, 24.592711086947077 ], [ 72.356028272886476, 24.524679063088286 ], [ 72.413595818692045, 24.522973740745499 ], [ 72.457004021818136, 24.430550441949322 ], [ 72.508060336615188, 24.506463121475861 ], [ 72.544543897582798, 24.510132148579771 ], [ 72.667637160126787, 24.460936183957699 ], [ 72.717556594261396, 24.390242825146231 ], [ 72.89739057761301, 24.36058055354971 ], [ 72.954958124317955, 24.384945990065376 ], [ 72.994542270709189, 24.490055854094351 ], [ 73.091073846181018, 24.50721242941006 ], [ 73.0972750179277, 24.40429881413894 ], [ 73.216647577423714, 24.369029649098991 ], [ 73.107506951984192, 24.292290147272467 ], [ 73.077534621125835, 24.214336249518283 ], [ 73.101615838600026, 24.159430040463974 ], [ 73.245586378608436, 24.015537013922028 ], [ 73.354106887322985, 24.104730536085356 ], [ 73.423870070147586, 23.940942084009976 ], [ 73.368162876315637, 23.899626776854234 ], [ 73.358137647834155, 23.787359727569367 ], [ 73.411674432229233, 23.779220689483225 ], [ 73.449708285908628, 23.719792791703981 ], [ 73.502728306366237, 23.701706041300724 ], [ 73.504175246290572, 23.602642320286861 ], [ 73.566393671130982, 23.635405178206383 ], [ 73.615382928379404, 23.6017896595651 ], [ 73.627165155147736, 23.438698839479855 ], [ 73.710674270401228, 23.415031033155628 ], [ 73.803485141925705, 23.43880219226736 ], [ 73.885443963568036, 23.339221707315915 ], [ 73.959547967065021, 23.358832912908611 ], [ 74.083674758383381, 23.271525580241303 ], [ 74.121915317637786, 23.170213935424783 ], [ 74.205941196828746, 23.172074286499083 ], [ 74.308053827322226, 23.069470730489797 ], [ 74.365001254604181, 22.874960638722484 ], [ 74.412543572827587, 22.879637356179046 ], [ 74.451921013643812, 22.84093170803186 ], [ 74.458122186289813, 22.804112250280127 ], [ 74.360247022781834, 22.632417304115279 ], [ 74.272707147017172, 22.609653836255518 ], [ 74.1398987161528, 22.505810044997588 ], [ 74.033445265886257, 22.509634100833068 ], [ 74.025693801427735, 22.479610094030591 ], [ 74.098144159425374, 22.416926581196719 ], [ 74.245732048794991, 22.385610663201533 ], [ 74.196536085971559, 22.332693997330068 ], [ 74.136798129829799, 22.320911770561736 ], [ 74.084914991833386, 22.349411323074094 ], [ 74.059386835334124, 22.320627549721621 ], [ 74.066208123805836, 22.205621650218973 ], [ 74.140622185665279, 22.071469631318394 ], [ 74.128839959796267, 21.95176117593752 ], [ 73.809376255309928, 21.83647105649402 ], [ 73.803485141925705, 21.739784451391301 ], [ 73.839141879693955, 21.682191067164013 ], [ 73.751602003929293, 21.61103262035914 ], [ 73.820848422816425, 21.50832571156235 ], [ 74.146513299049502, 21.570699164235009 ], [ 74.191575147674882, 21.545506904520039 ], [ 74.285419548873051, 21.573102118567874 ], [ 74.299992302702549, 21.527911077833949 ], [ 74.108686150945061, 21.451559150534365 ], [ 74.042230259119151, 21.461791082792217 ], [ 73.960168084689315, 21.39437917745704 ], [ 73.918620232637579, 21.291568914973425 ], [ 73.841312290030146, 21.265808214477488 ], [ 73.808446079323062, 21.285884508063589 ], [ 73.766898228170646, 21.203796495212089 ], [ 73.696101515672353, 21.164677435914939 ], [ 73.553474561901453, 21.195476589073337 ], [ 73.633986443619449, 21.119383043292771 ], [ 73.705093215379577, 21.118711248825036 ], [ 73.868287388252327, 20.974766547238346 ], [ 73.909008417104758, 20.775708930123017 ], [ 73.811029900809217, 20.676903591527491 ], [ 73.792323032781724, 20.60618439429436 ], [ 73.699822218720385, 20.562414455962369 ], [ 73.629955682208958, 20.563861395886704 ], [ 73.447227818109297, 20.720027573813468 ], [ 73.364648878842672, 20.652667345321731 ], [ 73.458699985615795, 20.538023180125663 ], [ 73.36072147021963, 20.369377143440374 ], [ 73.394104444864183, 20.270390936792296 ], [ 73.37787804643466, 20.180318915485543 ], [ 73.262536249248456, 20.190938422270335 ], [ 73.237731561362409, 20.131381334181185 ], [ 73.192979771099544, 20.111020819755026 ], [ 73.166314732139142, 20.114870714012227 ], [ 73.15473921094582, 20.177838446786893 ], [ 73.053660109226598, 20.142207546541044 ], [ 73.037433709897755, 20.21204824553007 ], [ 73.123216587375566, 20.278142402150138 ], [ 73.074123977339639, 20.291733303149385 ], [ 73.065132276733152, 20.337337755033332 ], [ 72.963536411076461, 20.295247301521727 ], [ 72.942865839187107, 20.253544419839102 ], [ 72.892429641115029, 20.251839098395635 ], [ 72.947206658960113, 20.127402248714816 ], [ 72.708101836959088, 20.072644470124132 ], [ 72.781586134000065, 20.35228099200009 ], [ 72.881825859875505, 20.392103691432169 ], [ 72.847003983523649, 20.468313264281196 ], [ 72.886485222000033, 20.53156159100007 ], [ 72.898936394000032, 20.732163804000038 ], [ 72.946787957000083, 20.759466864000046 ], [ 72.919444207000083, 20.821519273000035 ], [ 72.885752800000034, 20.807114976000037 ], [ 72.900401238000029, 20.868109442000048 ], [ 72.836924675000034, 20.835842190000051 ], [ 72.86491946700005, 20.897284247000073 ], [ 72.836680535000085, 20.929917710000041 ], [ 72.888438347000033, 20.982611395000049 ], [ 72.832692905000044, 20.972357489000046 ], [ 72.771983269000032, 21.023871161000045 ], [ 72.849864129000082, 21.048000393000052 ], [ 72.809580925000034, 21.130031643000052 ], [ 72.741953972000033, 21.123236395000049 ], [ 72.700368686000047, 21.074774481000077 ], [ 72.714040561000047, 21.164129950000074 ], [ 72.676442905000044, 21.153631903000075 ], [ 72.67123457100007, 21.099798895000049 ], [ 72.615000847000033, 21.105861721000053 ], [ 72.734548373000052, 21.198919989000046 ], [ 72.64576256600003, 21.273382880000042 ], [ 72.61841881600003, 21.252915757000039 ], [ 72.586761915000068, 21.341213283000059 ], [ 72.64576256600003, 21.362779039000088 ], [ 72.564626498000052, 21.385809637000079 ], [ 72.747080925000034, 21.452866929000038 ], [ 72.738291863000029, 21.482855536000045 ], [ 72.58366946700005, 21.41742584800005 ], [ 72.619639519000032, 21.487372137000079 ], [ 72.823090040000068, 21.643947658000059 ], [ 72.889659050000034, 21.640529690000051 ], [ 73.132009311000047, 21.757798570000091 ], [ 72.926931186000047, 21.684963283000059 ], [ 72.534678582000083, 21.672919012000079 ], [ 72.566905144000032, 21.849351304000038 ], [ 72.61841881600003, 21.925116278000075 ], [ 72.690114780000044, 21.938788153000075 ], [ 72.734548373000052, 21.986558335000041 ], [ 72.623057488000029, 21.966620184000078 ], [ 72.542735222000033, 21.910834052000041 ], [ 72.501719597000033, 21.97601959800005 ], [ 72.542165561000047, 22.156724351000037 ], [ 72.614105665000068, 22.211737372000073 ], [ 72.748220248000052, 22.164048570000091 ], [ 72.812266472000033, 22.234116929000038 ], [ 72.897227410000085, 22.213039455000057 ], [ 72.922699415000068, 22.254584052000041 ], [ 72.905772332000083, 22.281398830000057 ], [ 72.756602410000085, 22.243719794000071 ], [ 72.573741082000083, 22.288234768000052 ], [ 72.46615644600007, 22.232570705000057 ], [ 72.463877800000034, 22.26398346600007 ], [ 72.39185631600003, 22.253485419000071 ], [ 72.397227410000085, 22.366766669000071 ], [ 72.328298373000052, 22.260728257000039 ], [ 72.275157097000033, 22.260321356000077 ], [ 72.240407748000052, 22.301906643000052 ], [ 72.148773634000065, 22.277899481000077 ], [ 72.19068444100003, 22.251288153000075 ], [ 72.240407748000052, 22.288234768000052 ], [ 72.234141472000033, 22.243557033000059 ], [ 72.306488477000073, 22.229559637000079 ], [ 72.317230665000068, 22.184881903000075 ], [ 72.307627800000034, 22.079006252000056 ], [ 72.257660352000073, 22.012152411000045 ], [ 72.16342207100007, 21.973211981000077 ], [ 72.09701582100007, 22.007025458000044 ], [ 72.128103061000047, 21.983547268000052 ], [ 72.076508009000065, 21.979722398000035 ], [ 72.102061394000032, 21.945054429000038 ], [ 72.02865644600007, 21.938788153000075 ], [ 72.156504754000082, 21.925848700000074 ], [ 72.169444207000083, 21.841376044000071 ], [ 72.05795332100007, 21.89874909100007 ], [ 72.104502800000034, 21.835760809000078 ], [ 71.99732506600003, 21.85492584800005 ], [ 72.001475457000083, 21.787909247000073 ], [ 72.166026238000029, 21.793931382000039 ], [ 72.223806186000047, 21.700588283000059 ], [ 72.295664910000085, 21.653876044000071 ], [ 72.242198113000029, 21.48078034100007 ], [ 72.104502800000034, 21.315008856000077 ], [ 72.10474694100003, 21.205064195000091 ], [ 71.76295006600003, 21.032294012000079 ], [ 71.583506707000083, 20.958238023000035 ], [ 71.549571160000085, 20.951239325000074 ], [ 71.551117384000065, 20.973578192000048 ], [ 71.46225019600007, 20.885321356000077 ], [ 71.140635613000086, 20.765692450000074 ], [ 70.982001946432661, 20.738079783954845 ], [ 70.972992384000065, 20.70962148600006 ], [ 70.740244988000086, 20.718491929000038 ], [ 70.336680535000085, 20.927069403000075 ], [ 70.057627800000034, 21.149237372000073 ], [ 69.808604363000086, 21.465806382000039 ], [ 69.42741946700005, 21.781236070000091 ], [ 69.390879754000082, 21.876695054000038 ], [ 69.336192254000082, 21.862453518000052 ], [ 69.198415561000047, 21.979722398000035 ], [ 68.94459069100003, 22.295070705000057 ], [ 68.983246290000068, 22.41937897300005 ], [ 69.07357832100007, 22.48187897300005 ], [ 69.04818769600007, 22.431586005000042 ], [ 69.071787957000083, 22.399481512000079 ], [ 69.202159050000034, 22.414862372000073 ], [ 69.169688347000033, 22.327948309000078 ], [ 69.212087436000047, 22.273911851000037 ], [ 69.479665561000047, 22.342230536000045 ], [ 69.525645379000082, 22.392075914000088 ], [ 69.515961134000065, 22.448146877000056 ], [ 69.547862175000034, 22.452093817000048 ], [ 69.554698113000086, 22.377630927000041 ], [ 69.616058790000068, 22.355902411000045 ], [ 69.699392123000052, 22.404282945000091 ], [ 69.733409050000034, 22.480047919000071 ], [ 69.794932488000086, 22.41860586100006 ], [ 69.972992384000065, 22.541449286000045 ], [ 70.178477410000085, 22.56195709800005 ], [ 70.375254754000082, 22.90265534100007 ], [ 70.504730665000068, 22.979559637000079 ], [ 70.528493686000047, 23.047064520000049 ], [ 70.502940300000034, 23.104396877000056 ], [ 70.467133009000065, 23.129706122000073 ], [ 70.398773634000065, 23.069037177000041 ], [ 70.392425977000073, 22.94086334800005 ], [ 70.303477410000085, 22.93813711100006 ], [ 70.233083530000044, 23.000148830000057 ], [ 70.22201582100007, 22.959173895000049 ], [ 70.163096550000034, 22.948960679000038 ], [ 70.130625847000033, 22.993963934000078 ], [ 70.109548373000052, 22.959173895000049 ], [ 70.135427280000044, 22.92999909100007 ], [ 69.833181186000047, 22.858465887000079 ], [ 69.715830925000034, 22.746893622000073 ], [ 69.201914910000085, 22.852240302000041 ], [ 68.654063347000033, 23.157782294000071 ], [ 68.599945509000065, 23.225043036000045 ], [ 68.623057488000086, 23.267645575000074 ], [ 68.541026238000086, 23.278225002000056 ], [ 68.606944207000083, 23.325588283000059 ], [ 68.520681186000047, 23.369208075000074 ], [ 68.53638756600003, 23.42133209800005 ], [ 68.475352410000085, 23.404852606000077 ], [ 68.465505405000044, 23.445786851000037 ], [ 68.423675977000073, 23.445786851000037 ], [ 68.485850457000083, 23.514105536000045 ], [ 68.437347852000073, 23.548814195000091 ], [ 68.44695071700005, 23.502997137000079 ], [ 68.411631707000083, 23.494696356000077 ], [ 68.408864780000044, 23.621323960000041 ], [ 68.49146569100003, 23.618841864000046 ], [ 68.469411655000044, 23.659247137000079 ], [ 68.533539259000065, 23.679185289000088 ], [ 68.670746290000068, 23.815741278000075 ], [ 68.82162519600007, 23.878404039000088 ], [ 68.633474155000044, 23.833075262000079 ], [ 68.59888756600003, 23.78188711100006 ], [ 68.427744988000086, 23.71430084800005 ], [ 68.31763756600003, 23.586127020000049 ], [ 68.143402540000068, 23.612697658000059 ], [ 68.280446811000047, 23.685980536000045 ], [ 68.208750847000033, 23.696234442000048 ], [ 68.197764519000032, 23.774807033000059 ], [ 68.168142123000052, 23.747463283000059 ], [ 68.183007825000118, 23.842087206000073 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-JK", "NAME_1": "Jammu and Kashmir" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.800346314000137, 35.495405579000121 ], [ 77.883131958000035, 35.431068420000045 ], [ 77.985864706000029, 35.494165344000081 ], [ 78.044259074000081, 35.49163319899999 ], [ 78.001160929000093, 35.268907776000091 ], [ 78.130041951000123, 35.055432434000082 ], [ 78.148128703000054, 34.943139547000058 ], [ 78.296026652000137, 34.624657695000039 ], [ 78.379432414000064, 34.578665670000035 ], [ 78.664582968000047, 34.526420797000057 ], [ 78.801732218000041, 34.415006409000071 ], [ 78.922138306000136, 34.372295837000067 ], [ 78.976191854000035, 34.309173076000022 ], [ 78.976191854000035, 34.2171631880001 ], [ 78.730108684000072, 34.079264629000036 ], [ 78.721116984000105, 33.994386089000088 ], [ 78.79408410700006, 33.743910421000024 ], [ 78.781371704000094, 33.552785136000082 ], [ 78.824263143000053, 33.461059469000062 ], [ 78.973297974000047, 33.309570008000023 ], [ 79.060217733000059, 33.276807149000021 ], [ 79.087399536000135, 33.215596416000082 ], [ 79.153648722000128, 33.226913554000063 ], [ 79.378647909000051, 33.164281718000055 ], [ 79.334206177000112, 32.956826681000067 ], [ 79.412754354000128, 32.886546733000088 ], [ 79.505048463000037, 32.714179993000059 ], [ 79.476419719000035, 32.645424500000061 ], [ 79.29431197100007, 32.494580994000088 ], [ 79.132874797000113, 32.485460104000097 ], [ 79.07530725100014, 32.370790100000036 ], [ 78.943428996000137, 32.346372986000105 ], [ 78.771449829000119, 32.461663106000046 ], [ 78.736929973000031, 32.545792338000084 ], [ 78.750985962000129, 32.612790833000091 ], [ 78.713262167000096, 32.637518006 ], [ 78.63016646300008, 32.578012594000043 ], [ 78.408164510000063, 32.55837555 ], [ 78.302952102057816, 32.470653998283353 ], [ 78.270395948813928, 32.504166165036452 ], [ 78.304088982720316, 32.596150214260945 ], [ 78.374678989643598, 32.648782660191614 ], [ 78.366617465923298, 32.765209662096197 ], [ 78.008913202182498, 32.610309556940479 ], [ 77.857914667228101, 32.873006700398889 ], [ 77.721075474053862, 33.012636419734974 ], [ 77.55354047960941, 32.923417060049246 ], [ 77.348695102796739, 32.867244778223892 ], [ 77.088452589615258, 32.950211290218874 ], [ 76.75451948408687, 33.194563299956314 ], [ 76.625948521107318, 33.189292304196442 ], [ 76.542439405853884, 33.232855536054103 ], [ 76.294289177803307, 33.147899481775653 ], [ 76.237031691259517, 33.063486029856392 ], [ 76.100812615709629, 33.013049831784315 ], [ 75.954671665365026, 32.901377060802702 ], [ 75.814628533979601, 32.931788642132119 ], [ 75.81173465413093, 32.884298000752096 ], [ 75.909299758377131, 32.772702745035645 ], [ 75.922632276957984, 32.617337550987145 ], [ 75.828581171084124, 32.497887478024666 ], [ 75.743004999181323, 32.464375312170887 ], [ 75.698253208019082, 32.406032620009398 ], [ 75.573299595300057, 32.37463918674905 ], [ 75.502399530014259, 32.300586860095507 ], [ 75.44193810436002, 32.359756375456357 ], [ 75.298402936000059, 32.332426605000094 ], [ 75.023668254000086, 32.466262309000072 ], [ 74.906982869000103, 32.445178324000054 ], [ 74.83814986200008, 32.474866435000123 ], [ 74.689321737000057, 32.471352438000068 ], [ 74.629583781000122, 32.588089498000087 ], [ 74.685290975000044, 32.831227112000036 ], [ 74.653561646000128, 32.83742828400004 ], [ 74.573773234000043, 32.752549744000063 ], [ 74.500909465000063, 32.746012675000102 ], [ 74.438691040000037, 32.785984395000057 ], [ 74.346190226000033, 32.766889954000064 ], [ 74.306502726000133, 32.809910584000065 ], [ 74.336681763000058, 32.870139466000026 ], [ 74.311256958000115, 32.994292095000063 ], [ 74.153850546000058, 33.040180766000034 ], [ 74.002335246000086, 33.177691752000086 ], [ 73.991793253000139, 33.252570903000034 ], [ 74.095972941000127, 33.328483582000061 ], [ 74.157777954000039, 33.494235738 ], [ 74.141551555000035, 33.54937449100008 ], [ 73.976703736000047, 33.648386536000075 ], [ 73.966161743000043, 33.734531148000073 ], [ 74.034581340000045, 33.828608093000057 ], [ 74.177518351000117, 33.857546896000102 ], [ 74.272292928000127, 33.962139995000129 ], [ 74.228367961000117, 34.012886251000012 ], [ 73.976703736000047, 34.004592183000071 ], [ 73.893711385000074, 34.054304911000074 ], [ 73.893297974000063, 34.114740499000092 ], [ 73.995410604000085, 34.176442159000047 ], [ 73.990553019000117, 34.21850677500008 ], [ 73.937739705000126, 34.304212138000068 ], [ 73.829115845000047, 34.315348409000094 ], [ 73.774855591000062, 34.370952250000087 ], [ 73.863118938000071, 34.517067363000095 ], [ 73.925957479000033, 34.564971415000016 ], [ 73.919342895000057, 34.642537741000083 ], [ 73.948591756000098, 34.662743225000085 ], [ 74.348877400000049, 34.773434143000046 ], [ 75.017777140000078, 34.629721985000018 ], [ 75.212907349000034, 34.644966532000055 ], [ 75.348092896000139, 34.557219951000022 ], [ 75.611642701000051, 34.498360494000011 ], [ 75.777110637000135, 34.503812358000104 ], [ 76.023400513000126, 34.677160950000101 ], [ 76.154968709000059, 34.661658021000093 ], [ 76.438155558000119, 34.762892151000088 ], [ 76.53582401500006, 34.726201885000123 ], [ 76.652612752000095, 34.74697581000008 ], [ 76.743873332000078, 34.819271138000104 ], [ 76.757619263000038, 34.915130920000067 ], [ 76.852600546000133, 34.94334625300003 ], [ 76.921123495000131, 34.92071197500006 ], [ 77.013107544000036, 34.986392721000115 ], [ 77.042426147000072, 35.107013744000071 ], [ 77.800346314000137, 35.495405579000121 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-AR", "NAME_1": "Arunachal Pradesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.074536265326344, 29.369285607240855 ], [ 96.141965780000078, 29.368466899000097 ], [ 96.176278931000127, 29.286456401000109 ], [ 96.235293416000047, 29.241213684000016 ], [ 96.33709598900009, 29.27971262700008 ], [ 96.366241496000043, 29.257233379000056 ], [ 96.316425415000083, 29.171863912000063 ], [ 96.183513631000096, 29.123778992000027 ], [ 96.195337830296751, 29.027014506491341 ], [ 96.351373185050136, 29.097482086057354 ], [ 96.366568291556064, 29.036536563468914 ], [ 96.457605429000125, 28.994587911000011 ], [ 96.576667928000063, 28.808526917000066 ], [ 96.59800971353144, 28.709910398443995 ], [ 96.435177857000042, 28.611226298000034 ], [ 96.467141351480166, 28.56394184077142 ], [ 96.426874163156697, 28.518641253907518 ], [ 96.495225871000059, 28.421470439000089 ], [ 96.557742525207971, 28.584075434933155 ], [ 96.613109909152797, 28.609242427635351 ], [ 96.698677684340112, 28.589108833473531 ], [ 96.884913430336212, 28.428040080179684 ], [ 96.897888632000047, 28.354704489000042 ], [ 96.96579146400012, 28.330468242000066 ], [ 97.115549764000036, 28.366564230000066 ], [ 97.323495728000125, 28.217477723000073 ], [ 97.292903280000075, 28.095082092 ], [ 97.362253052000028, 27.994881490000083 ], [ 97.333520956000029, 27.894164124000028 ], [ 97.222933390000094, 27.899719341000022 ], [ 96.862128540000072, 27.599298401000098 ], [ 96.881352173000096, 27.44411407500003 ], [ 97.101287069000136, 27.183303121000066 ], [ 97.134773397000117, 27.12733754500006 ], [ 97.119167114000106, 27.087288310000091 ], [ 97.03803511600006, 27.087029928 ], [ 96.865332479000131, 27.1716242480001 ], [ 96.853756958000076, 27.248725485000037 ], [ 96.705238892000125, 27.360759989000073 ], [ 96.649014933000046, 27.336213685000118 ], [ 96.586899862000053, 27.353576966000034 ], [ 96.510935507000056, 27.292495422000044 ], [ 96.14258589700006, 27.257510478000128 ], [ 96.01318811100009, 27.190796204000023 ], [ 95.916449830000033, 27.051373189000017 ], [ 95.777956991000053, 26.995149231000042 ], [ 95.699305461000108, 26.896188863000063 ], [ 95.624271281000119, 26.880737610000054 ], [ 95.57476525900006, 26.816142070000112 ], [ 95.489809204000096, 26.810716044000046 ], [ 95.392657511000095, 26.691756898 ], [ 95.246933117968979, 26.648903921478791 ], [ 95.235251906650149, 26.790613105410443 ], [ 95.197424757646388, 26.841772772995057 ], [ 95.234321730663282, 26.945745755462212 ], [ 95.179854771180715, 27.003726712417802 ], [ 95.185022414153025, 27.042018948515647 ], [ 95.261193475198695, 27.048866075409023 ], [ 95.423767531346471, 27.141289374205257 ], [ 95.534251743922823, 27.271772366001869 ], [ 95.64380577961299, 27.230327866737639 ], [ 95.799558547289109, 27.285880031837962 ], [ 95.903738234431955, 27.276087348252474 ], [ 96.009674920760972, 27.369750881398033 ], [ 95.978255649978223, 27.449694322335063 ], [ 95.887718539778746, 27.401790268905756 ], [ 95.886788364691256, 27.55700043422263 ], [ 95.798525017615418, 27.627719631455818 ], [ 95.775890740964883, 27.71732656476911 ], [ 95.938154737850823, 27.919148871423261 ], [ 95.964096307298689, 27.993304551763629 ], [ 95.716772902447474, 27.990203966339948 ], [ 95.408367954317612, 27.870831406843934 ], [ 95.30480838389974, 27.895894477148374 ], [ 94.525941197228406, 27.603896796400022 ], [ 94.352928501449128, 27.593122259984284 ], [ 94.243064405597806, 27.647976793094529 ], [ 94.212265253338728, 27.61255259932301 ], [ 94.256913689914825, 27.548086248881248 ], [ 94.243064405597806, 27.525968736168238 ], [ 93.846590228156458, 27.19889240186285 ], [ 93.826552361702113, 27.09599498158309 ], [ 93.69467410682455, 27.005948797798737 ], [ 93.460683220554131, 26.947244371330669 ], [ 93.375003696763144, 26.988792223382404 ], [ 93.020296664759258, 26.953006293505609 ], [ 92.814831171221556, 27.050803940849164 ], [ 92.698765903623496, 27.065919297937228 ], [ 92.605748325624688, 27.009436956850038 ], [ 92.32886600106508, 26.935746365402395 ], [ 92.080370916000049, 26.921570891000087 ], [ 91.9879040940001, 27.122273255 ], [ 92.088776489000111, 27.292340394000078 ], [ 91.997309205000136, 27.448661601000069 ], [ 91.975088338000035, 27.472432760000018 ], [ 91.750089152000101, 27.416157125000026 ], [ 91.595059855000045, 27.546381734000121 ], [ 91.579866984000034, 27.657976990000051 ], [ 91.632887004000054, 27.759443665 ], [ 91.975088338000035, 27.726577454000065 ], [ 92.106553182000027, 27.810861715000087 ], [ 92.229026327000099, 27.810655010000019 ], [ 92.239568319000057, 27.865276998000056 ], [ 92.303853801000059, 27.786160380000055 ], [ 92.32917525300013, 27.832927552000072 ], [ 92.367932577000033, 27.803833720000071 ], [ 92.392840618000037, 27.856026917000051 ], [ 92.439039348000051, 27.823289897000066 ], [ 92.628485148000038, 27.915764873000072 ], [ 92.687809692000087, 27.967854716000133 ], [ 92.701348918000065, 28.025241394000133 ], [ 92.638923788000056, 28.057487488000092 ], [ 92.67861128800007, 28.133064270000105 ], [ 92.779173625000112, 28.195902812 ], [ 92.85028039600013, 28.19194956500003 ], [ 93.093159627000091, 28.366641744000091 ], [ 93.155378052000117, 28.494850973000027 ], [ 93.220042507687992, 28.541654122658045 ], [ 93.446213013000033, 28.671894430000023 ], [ 93.722475220000092, 28.696647441000053 ], [ 93.908613729000081, 28.79824330700005 ], [ 93.918535604000056, 28.833228252000069 ], [ 94.2501829716835, 28.933107498976327 ], [ 94.347310501145955, 29.024348511501685 ], [ 94.270785780963479, 29.097929973215642 ], [ 94.287505331000034, 29.147937724000073 ], [ 94.335771119000128, 29.149617208000038 ], [ 94.396439250000128, 29.207081400000035 ], [ 94.514778280000087, 29.221059876000041 ], [ 94.59994104000009, 29.316635437000016 ], [ 94.704224080000131, 29.284699402000044 ], [ 94.776571085000114, 29.16669626900007 ], [ 94.988237753000078, 29.124295757000041 ], [ 94.954648071000065, 29.169073385000033 ], [ 95.281553182000096, 29.052672221000094 ], [ 95.274436918741969, 29.112646265558411 ], [ 95.409826808295634, 29.130305816369784 ], [ 95.445145909918438, 29.186227727272396 ], [ 95.466348104000133, 29.122719625000016 ], [ 95.521435181000072, 29.137860820000029 ], [ 95.515337362000139, 29.209432679000074 ], [ 95.564429973000074, 29.245606181000099 ], [ 95.717164968955558, 29.218283651027733 ], [ 95.744780721000041, 29.340432435000068 ], [ 95.863133526628133, 29.323985020376838 ], [ 96.074536265326344, 29.369285607240855 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-AS", "NAME_1": "Assam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.975088338000035, 26.84663116500009 ], [ 92.035859822000134, 26.85484771800013 ], [ 92.080370916000049, 26.921570891000087 ], [ 92.32886600106508, 26.935746365402395 ], [ 92.605748325624688, 27.009436956850038 ], [ 92.698765903623496, 27.065919297937228 ], [ 92.814831171221556, 27.050803940849164 ], [ 93.020296664759258, 26.953006293505609 ], [ 93.375003696763144, 26.988792223382404 ], [ 93.460683220554131, 26.947244371330669 ], [ 93.63204227083412, 26.983366197092323 ], [ 93.826552361702113, 27.09599498158309 ], [ 93.846590228156458, 27.19889240186285 ], [ 94.243064405597806, 27.525968736168238 ], [ 94.256913689914825, 27.548086248881248 ], [ 94.212265253338728, 27.61255259932301 ], [ 94.243064405597806, 27.647976793094529 ], [ 94.352928501449128, 27.593122259984284 ], [ 94.525941197228406, 27.603896796400022 ], [ 95.30480838389974, 27.895894477148374 ], [ 95.408367954317612, 27.870831406843934 ], [ 95.716772902447474, 27.990203966339948 ], [ 95.973088007005856, 27.988808702359734 ], [ 95.775890740964883, 27.71732656476911 ], [ 95.798525017615418, 27.627719631455818 ], [ 95.886788364691256, 27.55700043422263 ], [ 95.887718539778746, 27.401790268905756 ], [ 95.978255649978223, 27.449694322335063 ], [ 96.007194452062265, 27.365125840784913 ], [ 95.903738234431955, 27.276087348252474 ], [ 95.799558547289109, 27.285880031837962 ], [ 95.64380577961299, 27.230327866737639 ], [ 95.559573194847019, 27.271384793273569 ], [ 95.511100702435442, 27.261979682416381 ], [ 95.423767531346471, 27.141289374205257 ], [ 95.261193475198695, 27.048866075409023 ], [ 95.185022414153025, 27.042018948515647 ], [ 95.017900831757913, 26.928175767197899 ], [ 94.917131789300583, 26.951171779953654 ], [ 94.765409783934331, 26.788029283024969 ], [ 94.486563756412181, 26.676666571305191 ], [ 94.345487095353121, 26.489701239320709 ], [ 94.308280063973712, 26.485412095491768 ], [ 94.269626092670023, 26.554710191222341 ], [ 94.195418734586895, 26.465464993114949 ], [ 94.170407342924477, 26.360768541135258 ], [ 94.007729933989197, 26.184396878413168 ], [ 94.002665642905072, 26.076754868842102 ], [ 93.969696079410483, 26.02704214118188 ], [ 93.989229770637394, 25.946220201101369 ], [ 93.947785272272483, 25.886172187496413 ], [ 93.779113397165531, 25.83103343444543 ], [ 93.810119256798203, 25.903638821174638 ], [ 93.796373325268689, 25.951594550548066 ], [ 93.685062290392352, 25.92699656823703 ], [ 93.705836215968532, 25.864364732246599 ], [ 93.338313429321261, 25.54846670207661 ], [ 93.443733351712751, 25.421704413327973 ], [ 93.455722284056151, 25.322589016369989 ], [ 93.312061802410199, 25.065782986295744 ], [ 93.262969190575632, 25.035991523489997 ], [ 93.27681847489265, 24.973437200966032 ], [ 93.239404737938287, 24.944808458143825 ], [ 93.25335737504281, 24.914706936076243 ], [ 93.199407180397031, 24.816521715105068 ], [ 93.117655064329711, 24.797194729453167 ], [ 93.080034620901017, 24.624440416092284 ], [ 93.100601840902186, 24.577027289078103 ], [ 93.064531691084653, 24.558914700253183 ], [ 93.036729770562431, 24.414608263460593 ], [ 92.991874628411324, 24.380708523079875 ], [ 92.837258742297081, 24.367608546697056 ], [ 92.757780389353456, 24.4829761832043 ], [ 92.707344191281379, 24.369572252357557 ], [ 92.622594842577882, 24.280740465400129 ], [ 92.624455193652238, 24.238520819779978 ], [ 92.480174595281312, 24.129225164709567 ], [ 92.431288689921075, 24.152996323821242 ], [ 92.423020460625708, 24.238029893364853 ], [ 92.220242141361723, 24.264333198018676 ], [ 92.257759231103591, 24.396004747321228 ], [ 92.22789025303274, 24.495378525798287 ], [ 92.149979861781162, 24.542182953880172 ], [ 92.233780559000081, 24.777532654000098 ], [ 92.217657511000027, 24.874580994000084 ], [ 92.252177368000105, 24.902977194000087 ], [ 92.380748332000053, 24.836702169000077 ], [ 92.477693319000082, 24.863909810000067 ], [ 92.483791138000129, 24.92822113000004 ], [ 92.384937035000064, 25.004773236000048 ], [ 92.560686476999251, 25.150248115058446 ], [ 92.64915652875078, 25.155441596452476 ], [ 92.81162723211105, 25.234118963719197 ], [ 92.789613072185489, 25.348892320124435 ], [ 92.584871047261004, 25.491519272996015 ], [ 92.677888625259811, 25.610633450073635 ], [ 92.59344933491883, 25.58665558538695 ], [ 92.382402784560838, 25.76434499772347 ], [ 92.167325473691619, 25.68954336223635 ], [ 92.167015415329104, 25.817132473284971 ], [ 92.214661086340016, 25.919477646875862 ], [ 92.175697055774492, 25.979784043798588 ], [ 92.264270461212789, 26.082671821547308 ], [ 91.922482538438373, 26.038230088747582 ], [ 91.807140741252169, 26.08809784603875 ], [ 91.672471958414121, 25.931156520856746 ], [ 91.631647576774185, 25.939579779783003 ], [ 91.637848749420186, 26.026111965195014 ], [ 91.591960076696125, 26.034406032912045 ], [ 91.472277459736915, 25.890099596119455 ], [ 91.527364536843834, 25.88808421541421 ], [ 91.360553012811238, 25.843254909886184 ], [ 91.222060175037029, 25.730677802238745 ], [ 91.195911900014153, 25.868938096915599 ], [ 91.031270787217011, 25.835710151002672 ], [ 91.028997023194052, 25.899298001401633 ], [ 90.974530063711427, 25.943636378715894 ], [ 90.778056268082253, 25.925058701897569 ], [ 90.752941521833748, 25.962136542067753 ], [ 90.644317662130391, 25.931466580118581 ], [ 90.609591099449631, 25.96939708101047 ], [ 90.534660271854023, 25.910951036061419 ], [ 90.545305617060535, 25.980662542941957 ], [ 90.397097609167304, 26.017146103909568 ], [ 90.135614861636498, 25.959785265477592 ], [ 89.98017215412159, 25.814006049439627 ], [ 89.944618768241526, 25.725820216729574 ], [ 89.998465610999119, 25.580661119215279 ], [ 89.903380974552306, 25.553530992261472 ], [ 89.883330520287245, 25.465939438754049 ], [ 89.808567939658644, 25.439507111963621 ], [ 89.834392130000083, 25.63476715100002 ], [ 89.783129110000061, 25.814446107000052 ], [ 89.834392130000083, 25.931751608000113 ], [ 89.792017456000053, 25.949114889000029 ], [ 89.828656047000038, 25.979397278000064 ], [ 89.755843954000113, 26.032417297000066 ], [ 89.718481893000103, 26.14553700800009 ], [ 89.655798381000068, 26.161298320000085 ], [ 89.828863559905301, 26.327850654484109 ], [ 89.815220982062613, 26.360975246710268 ], [ 89.888498163259612, 26.53290273687179 ], [ 89.858700633627279, 26.722056524089282 ], [ 90.127190796000036, 26.751391500000111 ], [ 90.177420289000054, 26.832058410000045 ], [ 90.348831014000041, 26.89665395100009 ], [ 90.587782838000066, 26.780071920000111 ], [ 90.717077271000107, 26.767049459000063 ], [ 91.062069133000136, 26.804566549000057 ], [ 91.296576782000045, 26.774594218000018 ], [ 91.420186809000029, 26.871539205000047 ], [ 91.475067179000064, 26.865544739000129 ], [ 91.520645793000028, 26.797590230000068 ], [ 91.702133423000134, 26.803481344000076 ], [ 91.825123332000089, 26.858465068 ], [ 91.878660116000106, 26.803016256000049 ], [ 91.908219035000059, 26.885181784000068 ], [ 91.975088338000035, 26.84663116500009 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-SK", "NAME_1": "Sikkim" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.892330770000115, 27.315543111000082 ], [ 88.861428263000107, 27.270377910000022 ], [ 88.775852091000047, 27.240870667000095 ], [ 88.733082315000047, 27.148972387000114 ], [ 88.518039177565981, 27.17622264336029 ], [ 88.371691521646369, 27.084574490020657 ], [ 88.088814731814409, 27.151650499470975 ], [ 88.069591098950013, 27.209037177223934 ], [ 88.004662758679331, 27.249163087806267 ], [ 88.035122111000078, 27.322571106000012 ], [ 88.023339884000109, 27.494912008000128 ], [ 88.159662313000126, 27.774119772000105 ], [ 88.16462325100008, 27.845355734000051 ], [ 88.118217814000047, 27.860884501000058 ], [ 88.099924357000077, 27.928322246000093 ], [ 88.378770386000042, 27.982634176000047 ], [ 88.502070353000079, 28.028884583000021 ], [ 88.594002726000042, 28.106605937000026 ], [ 88.802930542000126, 28.011004537000062 ], [ 88.853883504000066, 27.843676249000097 ], [ 88.741642293000041, 27.531679789000023 ], [ 88.773578329000031, 27.408509013000057 ], [ 88.892330770000115, 27.315543111000082 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-WB", "NAME_1": "West Bengal" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.733082315000047, 27.148972387000114 ], [ 88.827631877000044, 27.097881979000064 ], [ 88.851713094000047, 26.945436504000028 ], [ 88.90664514100007, 26.981093242000028 ], [ 88.932328328000096, 26.9192365520001 ], [ 89.021573527000044, 26.912673645000027 ], [ 89.096504354000103, 26.821413066000034 ], [ 89.212828003000084, 26.813041484000067 ], [ 89.341657349000116, 26.854330953000087 ], [ 89.442891480000071, 26.797021789000027 ], [ 89.586086874000102, 26.78405100499999 ], [ 89.609806356000036, 26.712220765000083 ], [ 89.817287232000126, 26.6962010700001 ], [ 89.834960571000124, 26.731547750000018 ], [ 89.858700633627279, 26.722056524089282 ], [ 89.888498163259612, 26.53290273687179 ], [ 89.815220982062613, 26.360975246710268 ], [ 89.828863559905301, 26.327850654484109 ], [ 89.732642042795987, 26.250646063764805 ], [ 89.735329217069648, 26.211707872520265 ], [ 89.657828608000102, 26.187174483000049 ], [ 89.653007854000066, 26.222689921000054 ], [ 89.61332035300012, 26.219382629000066 ], [ 89.614405558000101, 26.164192200000073 ], [ 89.573426148000067, 26.160729879000129 ], [ 89.569395386000053, 26.130085754 ], [ 89.604225301000042, 26.120732320000073 ], [ 89.567018270000119, 26.087090963000023 ], [ 89.611356649000072, 26.072208150000066 ], [ 89.52841597500003, 25.957124735000022 ], [ 89.485627890000103, 25.998724263000028 ], [ 89.315147339000077, 26.006785787000084 ], [ 89.131592651000119, 26.133754781 ], [ 89.069425903000138, 26.287388815000057 ], [ 89.102912232000108, 26.32733469599999 ], [ 88.950156697000125, 26.436940410000076 ], [ 88.891865682000059, 26.368779196000062 ], [ 89.007982626000114, 26.29715566 ], [ 89.03971195500003, 26.247184550000028 ], [ 89.019454793000136, 26.234472148000052 ], [ 88.975323120000041, 26.22434356700002 ], [ 88.875794311000107, 26.277363586000021 ], [ 88.824841349000053, 26.226565654000112 ], [ 88.747946818000059, 26.292504782000023 ], [ 88.663404175000096, 26.26444447900009 ], [ 88.645834188000038, 26.276019999000042 ], [ 88.712238403000072, 26.328264872000048 ], [ 88.656272827000066, 26.415132955000061 ], [ 88.411016480000114, 26.545099182000072 ], [ 88.385281617000032, 26.623544007000064 ], [ 88.315105021000079, 26.465052389 ], [ 88.335620565000056, 26.448205872000031 ], [ 88.353552287000127, 26.484586080000028 ], [ 88.461142619000043, 26.453890280000067 ], [ 88.497626181000044, 26.352707825 ], [ 88.431687053000132, 26.362216289000074 ], [ 88.336602417000108, 26.281807760000035 ], [ 88.326267131000122, 26.215920309000026 ], [ 88.163796428000069, 26.140472717000122 ], [ 88.151032349000104, 26.031332093000074 ], [ 88.074396200000081, 25.908135478000091 ], [ 88.127726278000068, 25.77491363500009 ], [ 88.259914592000086, 25.789021301000034 ], [ 88.419439738000108, 25.653784078000072 ], [ 88.423780559000079, 25.592237447000073 ], [ 88.530285686000127, 25.500201721000067 ], [ 88.666349732000128, 25.462891338000119 ], [ 88.741952352000055, 25.51275909400006 ], [ 88.772338095000123, 25.501958720000047 ], [ 88.814919475000067, 25.458602193000061 ], [ 88.799623250000138, 25.39560862300003 ], [ 88.841997925000044, 25.332821757000076 ], [ 88.982712850000041, 25.29447784400007 ], [ 88.909642375000033, 25.189161275000046 ], [ 88.924163452000073, 25.167870585000074 ], [ 88.817089885000087, 25.19680938700013 ], [ 88.784223673000042, 25.16094594400009 ], [ 88.441298869000036, 25.189729716 ], [ 88.425795939000068, 25.051056010000124 ], [ 88.322753134000038, 24.874684347000098 ], [ 88.242758016000039, 24.880601299000105 ], [ 88.202450399000043, 24.945300191000072 ], [ 88.114910522000059, 24.916413066000032 ], [ 88.140955445000031, 24.844582825000103 ], [ 88.053208862000133, 24.754975891000086 ], [ 88.021789592000061, 24.645602722000049 ], [ 88.081837606000079, 24.599869080000033 ], [ 88.109949585000038, 24.50098622700007 ], [ 88.475405314000113, 24.315467835000064 ], [ 88.634517050000056, 24.294125468000047 ], [ 88.660148560000039, 24.338257141000057 ], [ 88.737508179000031, 24.28709747300006 ], [ 88.746396525000137, 24.21407867500001 ], [ 88.678080281000064, 24.154289043000077 ], [ 88.674101197000027, 24.082639669000102 ], [ 88.725002482000036, 24.038378805000079 ], [ 88.714150431000064, 23.925155742000115 ], [ 88.653120565000108, 23.869784445000064 ], [ 88.577621297000121, 23.855160014000077 ], [ 88.54155114800011, 23.638764954000081 ], [ 88.719421428000032, 23.468103536000015 ], [ 88.770167684000114, 23.488825786000049 ], [ 88.685935100000052, 23.293308004000025 ], [ 88.696580445000109, 23.252354432000104 ], [ 88.959975220000103, 23.202693380000099 ], [ 88.851299683000036, 23.075130107000049 ], [ 88.838793987000088, 22.975808004000058 ], [ 88.944523966000077, 22.848012187000037 ], [ 88.908143758000108, 22.740783590000021 ], [ 88.956409546000032, 22.584979146000066 ], [ 88.927987509000104, 22.54813385000007 ], [ 88.97098230000006, 22.527928365000079 ], [ 89.009119507000037, 22.285617575000046 ], [ 89.078159220000089, 22.150845439000122 ], [ 89.043711785000028, 22.137396552000041 ], [ 89.036875847000033, 22.085598049000055 ], [ 89.060883009000065, 21.938462632000039 ], [ 89.009532097000033, 21.90460846600007 ], [ 88.94467207100007, 21.938788153000075 ], [ 88.928721550000034, 21.986558335000041 ], [ 88.905039910000028, 21.969427802000041 ], [ 89.015879754000082, 21.853338934000078 ], [ 89.088226759000065, 21.633734442000048 ], [ 89.000254754000082, 21.603420315000051 ], [ 88.896983269000032, 21.650132554000038 ], [ 88.85865319100003, 21.766831773000035 ], [ 88.838226759000065, 21.701971747000073 ], [ 88.85865319100003, 21.636542059000078 ], [ 88.805837436000047, 21.622870184000078 ], [ 88.810883009000065, 21.69171784100007 ], [ 88.777110222000033, 21.643540757000039 ], [ 88.790537957000083, 21.568264065000051 ], [ 88.707530144000032, 21.578314520000049 ], [ 88.694509311000047, 21.839829820000091 ], [ 88.76303144600007, 22.017279364000046 ], [ 88.708506707000083, 22.072211005000042 ], [ 88.76303144600007, 22.130560614000046 ], [ 88.694834832000083, 22.081529039000088 ], [ 88.730723504000082, 22.037176825000074 ], [ 88.689952019000032, 21.945990302000041 ], [ 88.630869988000029, 21.945461330000057 ], [ 88.639496290000068, 22.109523830000057 ], [ 88.683116082000083, 22.184963283000059 ], [ 88.660166863000029, 22.205023505000042 ], [ 88.567067905000044, 21.850816148000035 ], [ 88.564626498000052, 21.766831773000035 ], [ 88.624034050000034, 21.778021552000041 ], [ 88.632823113000029, 21.750067450000074 ], [ 88.61264082100007, 21.697495835000041 ], [ 88.591807488000029, 21.70538971600007 ], [ 88.572276238000029, 21.557928778000075 ], [ 88.53646894600007, 21.575100002000056 ], [ 88.543955925000034, 21.534084377000056 ], [ 88.51295006600003, 21.524644273000035 ], [ 88.48796634200005, 21.556545315000051 ], [ 88.529633009000065, 21.657619533000059 ], [ 88.504893425000034, 21.741522528000075 ], [ 88.53288821700005, 21.795314846000053 ], [ 88.495616082000083, 21.95180898600006 ], [ 88.45630944100003, 21.624009507000039 ], [ 88.393077019000032, 21.60024648600006 ], [ 88.392588738000029, 21.698553778000075 ], [ 88.355723504000082, 21.684963283000059 ], [ 88.331228061000047, 21.71906159100007 ], [ 88.348806186000047, 21.650295315000051 ], [ 88.309743686000047, 21.610174872000073 ], [ 88.29818769600007, 21.764105536000045 ], [ 88.261566602000073, 21.798651434000078 ], [ 88.305837436000047, 21.571682033000059 ], [ 88.254405144000032, 21.554673570000091 ], [ 88.181895379000082, 21.665228583000044 ], [ 88.209727410000028, 21.788560289000088 ], [ 88.146739129000082, 21.959214585000041 ], [ 88.222422722000033, 22.077948309000078 ], [ 88.198008660000028, 22.167792059000078 ], [ 88.077321811000047, 22.240423895000049 ], [ 88.00904381600003, 22.240423895000049 ], [ 87.940440300000034, 22.413031317000048 ], [ 87.906586134000065, 22.424750067000048 ], [ 87.965342644000032, 22.244818427000041 ], [ 88.008474155000044, 22.204901434000078 ], [ 88.132578972000033, 22.17914459800005 ], [ 88.164317254000082, 22.089789130000042 ], [ 88.043142123000052, 22.017279364000046 ], [ 87.98365319100003, 21.854193427000041 ], [ 87.867198113000029, 21.750799872000073 ], [ 87.703786655000044, 21.655503648000035 ], [ 87.477386914674355, 21.61359284093686 ], [ 87.43087039555229, 21.689322414897504 ], [ 87.424462518230598, 21.774743557169415 ], [ 87.251966587288109, 21.822105007340213 ], [ 87.190678339333829, 21.956205349397351 ], [ 87.120811801923082, 21.976927599029466 ], [ 87.031411574184744, 21.907991238504849 ], [ 86.995858189204057, 21.957032171697335 ], [ 86.987383254333679, 22.066586209186198 ], [ 86.704609816389905, 22.188697618000674 ], [ 86.693344353559041, 22.224328518246523 ], [ 86.85250776592062, 22.302024034481576 ], [ 86.803311802197868, 22.348377794299722 ], [ 86.78987592993019, 22.41563467000401 ], [ 86.718149042344407, 22.469403998395819 ], [ 86.716288690370732, 22.505577501000857 ], [ 86.759386835134308, 22.512088731110055 ], [ 86.740059848583087, 22.55820994693147 ], [ 86.61138553281603, 22.604253648387157 ], [ 86.586890904191819, 22.680683091851165 ], [ 86.399098749008033, 22.784966131781516 ], [ 86.410467563727025, 22.935783800482 ], [ 86.506482375261385, 22.988338731147508 ], [ 86.178026971067823, 23.005727851359211 ], [ 86.001913689864864, 23.165097968396481 ], [ 85.888432244652336, 23.163082586791916 ], [ 85.829831170971715, 23.260802721568325 ], [ 85.894840121974028, 23.416477973079964 ], [ 85.84151004405328, 23.430094713400308 ], [ 85.822389763976389, 23.470195623729012 ], [ 86.004807569713535, 23.514223945378774 ], [ 86.002223749126699, 23.585640773702721 ], [ 86.039120721244274, 23.607164008112477 ], [ 86.129141065707586, 23.578354397237604 ], [ 86.126453892333245, 23.492468166972287 ], [ 86.227946405202374, 23.443246364827871 ], [ 86.273008253827811, 23.453736681302757 ], [ 86.410467563727025, 23.616569118969664 ], [ 86.799797804724847, 23.72552887635652 ], [ 86.8150940289662, 23.836684882501288 ], [ 86.877209100119842, 23.913062649121969 ], [ 87.079677361920687, 23.815213324035653 ], [ 87.166287062597803, 23.810226549115953 ], [ 87.139311965274942, 23.873323473099788 ], [ 87.23253624884876, 23.845831610940081 ], [ 87.282662387659002, 23.927945462213302 ], [ 87.235533482384255, 24.040419216173859 ], [ 87.309017369156209, 24.056206365931018 ], [ 87.338059523128436, 24.001842760135276 ], [ 87.458155552136986, 24.01982615775097 ], [ 87.491228469318344, 24.055922145990223 ], [ 87.488541294145364, 24.132429103820073 ], [ 87.563265415266642, 24.112068590293177 ], [ 87.59406456932436, 24.17844696685404 ], [ 87.661553989924641, 24.186198432211881 ], [ 87.623726840920938, 24.260483302862099 ], [ 87.73379764234727, 24.334690660045908 ], [ 87.800460239748247, 24.500778712767385 ], [ 87.788988072241693, 24.569560045459696 ], [ 87.750850864875474, 24.593331204571427 ], [ 87.849242792320979, 24.579533596198473 ], [ 87.899989047856252, 24.62095225704104 ], [ 87.870120069785344, 24.634698188570553 ], [ 87.895338168821411, 24.661828315524303 ], [ 87.874770948820185, 24.726087957693096 ], [ 87.811002232167255, 24.785541693894061 ], [ 87.854203728819016, 24.789701646513777 ], [ 87.877458123993165, 24.938865667916218 ], [ 87.844075148449292, 25.041546739190665 ], [ 87.776275668587175, 25.096788845029153 ], [ 87.768730909703663, 25.159239813866293 ], [ 87.839010858264487, 25.28830170326097 ], [ 87.743822869929488, 25.402635810094523 ], [ 87.95579959537497, 25.534074815400402 ], [ 88.067420688613879, 25.491080024323651 ], [ 88.042822707202163, 25.678148709095638 ], [ 87.910531040275259, 25.76512014407939 ], [ 87.789504836179219, 25.919167589412723 ], [ 87.839424270313771, 26.022313747781197 ], [ 87.970268996417019, 26.138301500114096 ], [ 88.303892042683572, 26.35175100390569 ], [ 88.254489374285185, 26.396037706175207 ], [ 88.278673943647561, 26.435001735841411 ], [ 88.195268182080895, 26.500139878952211 ], [ 88.203433058588757, 26.547191269861173 ], [ 88.087136240744883, 26.539100003762144 ], [ 88.167827189000036, 26.762915344000035 ], [ 88.096823771000061, 26.959337464000029 ], [ 87.970733277000079, 27.102739563000071 ], [ 87.989336792000074, 27.218391419000099 ], [ 88.004662758679331, 27.249163087806267 ], [ 88.069591098950013, 27.209037177223934 ], [ 88.100596957683422, 27.143382270175607 ], [ 88.233095331084598, 27.137103583163821 ], [ 88.35742882707865, 27.085117092379903 ], [ 88.518039177565981, 27.17622264336029 ], [ 88.733082315000047, 27.148972387000114 ] ] ], [ [ [ 88.872894727000073, 21.595526434000078 ], [ 88.911306186000047, 21.566880601000037 ], [ 88.907969597000033, 21.53070709800005 ], [ 88.838715040000068, 21.531927802000041 ], [ 88.841319207000083, 21.61399974200009 ], [ 88.872894727000073, 21.595526434000078 ] ] ], [ [ [ 88.050547722000033, 21.70538971600007 ], [ 88.119313998000052, 21.859523830000057 ], [ 88.146739129000082, 21.86985911700009 ], [ 88.167002800000034, 21.765448309000078 ], [ 88.139414910000028, 21.63031647300005 ], [ 88.051768425000034, 21.641587632000039 ], [ 88.050547722000033, 21.70538971600007 ] ] ], [ [ [ 88.636241082000083, 21.921372789000088 ], [ 88.670583530000044, 21.907416083000044 ], [ 88.646332227000073, 21.787909247000073 ], [ 88.584971550000034, 21.826605536000045 ], [ 88.636241082000083, 21.921372789000088 ] ] ], [ [ [ 88.080902540000068, 21.849351304000038 ], [ 88.077321811000047, 21.90460846600007 ], [ 88.118907097000033, 21.945013739000046 ], [ 88.125010613000029, 21.888657945000091 ], [ 88.080902540000068, 21.849351304000038 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-UT", "NAME_1": "Uttaranchal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.216219523000063, 30.566817526000094 ], [ 80.508294719000105, 30.462327779000091 ], [ 80.596351360000028, 30.45979563500002 ], [ 80.723061972000039, 30.392047832000102 ], [ 80.781663045000073, 30.320992737 ], [ 80.976018107000073, 30.255208638000042 ], [ 81.003303264000124, 30.212730611000083 ], [ 80.920827677000091, 30.176660462000072 ], [ 80.867911011000103, 30.200173238000062 ], [ 80.829825480000068, 30.117129212000108 ], [ 80.71582727100008, 30.013311259000105 ], [ 80.571339966000039, 29.946855367000055 ], [ 80.476151978000075, 29.806140442000114 ], [ 80.368975057000057, 29.757926330000103 ], [ 80.354402303000086, 29.704880473000102 ], [ 80.385201456000061, 29.604834900000114 ], [ 80.213739054000087, 29.416887716000062 ], [ 80.280091593000122, 29.310150045000043 ], [ 80.258180786000139, 29.202456360000085 ], [ 80.218803344000037, 29.211086324000021 ], [ 80.220663696000031, 29.126078593000031 ], [ 80.13260705600004, 29.110213928000022 ], [ 80.099430786000084, 28.977276306000093 ], [ 80.033905070000117, 28.915936381000037 ], [ 80.036385539000094, 28.837026469000094 ], [ 80.069665969109167, 28.805167141250536 ], [ 79.987190382630047, 28.733569443974659 ], [ 79.934790479796789, 28.747599596344287 ], [ 79.931483188798097, 28.782196966916445 ], [ 79.895723098242343, 28.775194810392179 ], [ 79.887041456897691, 28.81800873521496 ], [ 79.834124790126907, 28.805787257975567 ], [ 79.841049432285445, 28.855293280960154 ], [ 79.812627395038191, 28.876868191313974 ], [ 79.600237258442689, 28.849040432370032 ], [ 79.526236606833891, 28.878418484025815 ], [ 79.443657667567265, 28.849583034729278 ], [ 79.371207309569627, 28.969885769312782 ], [ 79.296379835660844, 28.971565253233848 ], [ 79.055877720180604, 29.151760972690738 ], [ 78.913767531246549, 29.105588080025825 ], [ 78.867672153846797, 29.215167955037089 ], [ 78.714089797406189, 29.290589708148502 ], [ 78.730936314359383, 29.320071113491053 ], [ 78.86002404217578, 29.350250149025157 ], [ 78.919968702993231, 29.42218374308527 ], [ 78.643086379332885, 29.537577216215539 ], [ 78.478651971211491, 29.721958726713865 ], [ 78.361656529425261, 29.775495510209623 ], [ 78.217685987618211, 29.953675848961268 ], [ 78.154950798840275, 29.925434678867305 ], [ 78.197842238028841, 29.748158678580126 ], [ 78.154950798840275, 29.674984850170688 ], [ 78.107201775941178, 29.654520982057647 ], [ 77.966538526931458, 29.724413356990794 ], [ 77.831456332943389, 29.659895331504345 ], [ 77.750944452124713, 29.860193182968999 ], [ 77.746396925877377, 29.977343655285438 ], [ 77.834970331315731, 30.131391099719451 ], [ 77.946074659717738, 30.228336087240621 ], [ 77.661544224386432, 30.394915066377166 ], [ 77.585063104078984, 30.382926134033823 ], [ 77.565322707277062, 30.414862168754041 ], [ 77.812956171390169, 30.521057237501509 ], [ 77.743296339554377, 30.600561427967534 ], [ 77.770788201714083, 30.635055447550826 ], [ 77.705779249812508, 30.791454169474321 ], [ 77.75187462811158, 30.883050645071194 ], [ 77.793422479263995, 30.895737210303992 ], [ 77.749704216876069, 30.979918118226578 ], [ 77.802104119709327, 30.992165432088996 ], [ 77.79848677034812, 31.041361395811748 ], [ 77.928918085301348, 31.165255642234058 ], [ 78.039712355340896, 31.172180284392596 ], [ 78.312977328740715, 31.294498398782082 ], [ 78.433693475373559, 31.26806590381841 ], [ 78.500976190398831, 31.219567572985113 ], [ 78.792741327150509, 31.207010199860804 ], [ 78.869532504921153, 31.121976630317192 ], [ 78.961516555044966, 31.121847439108024 ], [ 78.993349236977679, 31.163395291159759 ], [ 78.878876265826989, 31.299550770251813 ], [ 78.918107544000065, 31.354418030000076 ], [ 78.976191854000035, 31.320001526000041 ], [ 79.014639120000083, 31.425473125000096 ], [ 79.063318319000075, 31.433638001000119 ], [ 79.193749634000142, 31.335349426 ], [ 79.282219686000076, 31.138203837000034 ], [ 79.372343384000089, 31.094072165000043 ], [ 79.401592245000131, 31.023637187000119 ], [ 79.476419719000035, 31.014025371000102 ], [ 79.577808879000088, 30.938371074000045 ], [ 79.739039348000119, 30.979247131000065 ], [ 79.833503866000058, 30.961522115000051 ], [ 80.062533814000062, 30.784788717000097 ], [ 80.169297322000091, 30.78525380400005 ], [ 80.231412394000074, 30.724947408000062 ], [ 80.166610148000075, 30.674407858000038 ], [ 80.203300416000047, 30.606349996000048 ], [ 80.179839315000038, 30.559479472000092 ], [ 80.216219523000063, 30.566817526000094 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-UP", "NAME_1": "Uttar Pradesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.07305357586182, 28.820924647554421 ], [ 80.29104699700008, 28.689671123000053 ], [ 80.329700968000054, 28.627478537000073 ], [ 80.408352499000046, 28.626341655000047 ], [ 80.488450969000041, 28.562443746 ], [ 80.487624145000098, 28.656469015000042 ], [ 80.555837036000128, 28.678948262000048 ], [ 80.56358850100014, 28.647038066000064 ], [ 80.635625448000098, 28.627866109000067 ], [ 80.781663045000073, 28.514746399000032 ], [ 80.872251831000085, 28.496866353000073 ], [ 80.905273072000057, 28.44084910100004 ], [ 81.169701376000035, 28.361319072000057 ], [ 81.296205281000084, 28.128310038000038 ], [ 81.396044149000033, 28.160633647000012 ], [ 81.473455444000138, 28.066401672000026 ], [ 81.85565433700009, 27.850936788000055 ], [ 81.975905396000087, 27.916953430000021 ], [ 82.027220093000096, 27.912405904000067 ], [ 82.401925904000109, 27.677174784000059 ], [ 82.679686727000103, 27.694408875000036 ], [ 82.752137085000072, 27.494963684000041 ], [ 83.132785686000091, 27.444217428000073 ], [ 83.282440634000068, 27.330942688000093 ], [ 83.362745809000103, 27.385616354000049 ], [ 83.35592452000003, 27.452485657000111 ], [ 83.387033732000077, 27.470469056000084 ], [ 83.590432170000042, 27.456619771000035 ], [ 83.84798750900012, 27.351044820000041 ], [ 83.849176873713702, 27.326652737533777 ], [ 83.892791783314124, 27.323965562360797 ], [ 83.941367629412525, 27.15402761538212 ], [ 84.023429802943042, 27.059950670187277 ], [ 84.070558710016428, 26.923602403428163 ], [ 84.149003534185738, 26.876344306044871 ], [ 84.226104771218161, 26.891511339076999 ], [ 84.246361931957551, 26.757049261813961 ], [ 84.306306593674321, 26.744362698379803 ], [ 84.388368768104101, 26.66935435641841 ], [ 84.382994418657461, 26.641655789583012 ], [ 84.099187452838635, 26.649588121194824 ], [ 84.054022251425749, 26.564761257226223 ], [ 83.963485142125592, 26.51592702870937 ], [ 83.925864698696842, 26.546364448460508 ], [ 83.9200769389995, 26.473991603929335 ], [ 83.969066197147242, 26.453140163987371 ], [ 84.015988396846979, 26.473449002469465 ], [ 84.184143508016462, 26.400817776419217 ], [ 84.16171593604156, 26.337927558010392 ], [ 84.185590447940797, 26.284855862508039 ], [ 83.985085890901132, 26.227443346333359 ], [ 84.064874302207272, 26.103549099011673 ], [ 84.150347121322568, 26.066006170848084 ], [ 84.261451450623895, 25.931311550487635 ], [ 84.374312779111449, 25.940303250194802 ], [ 84.456581659116239, 25.869971624790651 ], [ 84.531615838600032, 25.862090969122903 ], [ 84.610577426706868, 25.791578477464725 ], [ 84.600655551912155, 25.74700755525447 ], [ 84.498749627892948, 25.699051824981723 ], [ 84.355915969446414, 25.760546780309653 ], [ 84.314678175757194, 25.742149969745299 ], [ 84.32418663940183, 25.658899237809578 ], [ 84.27602420355413, 25.641484280075474 ], [ 84.222384068170186, 25.660837104149039 ], [ 84.212875603626173, 25.728042303909206 ], [ 84.14342247916403, 25.736207180417011 ], [ 83.886900669030638, 25.517021592872197 ], [ 83.345951776353388, 25.198978989888474 ], [ 83.323007440440961, 25.079012152988469 ], [ 83.364245233230918, 24.998396918482968 ], [ 83.35484012237373, 24.875045274419847 ], [ 83.523615350268187, 24.746345120231069 ], [ 83.523098586330661, 24.529665838907306 ], [ 83.39835167828727, 24.493311469148978 ], [ 83.451578404319889, 24.353681748913573 ], [ 83.215003696563315, 23.948977769308613 ], [ 83.104002720049436, 23.912209988400207 ], [ 82.936467727403681, 23.920168158433739 ], [ 82.734516228640985, 24.0658698592066 ], [ 82.736066522252145, 24.115039985407009 ], [ 82.673848098311055, 24.180333157249379 ], [ 82.732862583141639, 24.214129543943272 ], [ 82.764798618761233, 24.330039781011067 ], [ 82.734412875853479, 24.551628322888746 ], [ 82.818025343894476, 24.589403795049066 ], [ 82.772136672069735, 24.66831370721178 ], [ 82.71653283102529, 24.680431829865029 ], [ 82.714569126264109, 24.717768053352984 ], [ 82.59509321487991, 24.687744046550506 ], [ 82.427144810184814, 24.718569037231248 ], [ 82.409678175607269, 24.635628364557363 ], [ 82.307048781176263, 24.632011013397516 ], [ 82.323378534191988, 24.693764350244578 ], [ 82.265190870762012, 24.715442613385903 ], [ 82.263020461325198, 24.791174424859776 ], [ 82.208036737005784, 24.76430268032442 ], [ 82.208656853730758, 24.843109238800309 ], [ 82.122150506740468, 24.808098456178811 ], [ 81.956062453119671, 24.871014513009357 ], [ 81.87317345638985, 24.929977321895876 ], [ 81.842064243969673, 25.027077338148615 ], [ 81.752767369018841, 25.020488592774313 ], [ 81.707602166706579, 25.065292059880619 ], [ 81.577894322165207, 25.084541531166735 ], [ 81.536966586838503, 25.199754137143714 ], [ 81.425345492700274, 25.164820867988624 ], [ 81.469167107875705, 25.126942043940176 ], [ 81.418420852340432, 25.104126899236974 ], [ 81.369638298868381, 25.111619981277101 ], [ 81.360543247273029, 25.156966050742653 ], [ 81.243237746224963, 25.169523423866906 ], [ 81.235486280867121, 25.089114894936415 ], [ 81.174611444062862, 25.011083481917126 ], [ 81.181432733433837, 24.958140976724678 ], [ 81.098130323755413, 24.908609117117066 ], [ 81.004699334606585, 24.966435045341029 ], [ 80.761716750427638, 24.983307399816624 ], [ 80.858868442624498, 25.187558499225361 ], [ 80.835407341875282, 25.217737534759408 ], [ 80.777426384919693, 25.163089708123493 ], [ 80.666425409305134, 25.149705511799937 ], [ 80.717895135252263, 25.081983547202924 ], [ 80.638830194357922, 25.073431097966761 ], [ 80.56462283717417, 25.152444362916981 ], [ 80.546432733084146, 25.10753754302317 ], [ 80.458479445270143, 25.117046007567183 ], [ 80.513876580739577, 25.050460924532047 ], [ 80.478219842072008, 25.018344020859843 ], [ 80.406699660061236, 25.063767604691179 ], [ 80.407009719323071, 25.013357245040822 ], [ 80.297145624371012, 25.012065334747376 ], [ 80.269860466886996, 25.088598130998946 ], [ 80.421995884302589, 25.18598236719248 ], [ 80.399361606752734, 25.244040839413174 ], [ 80.322053664145244, 25.28827586483925 ], [ 80.283606398416509, 25.414469712806977 ], [ 80.198133579301214, 25.416433417568157 ], [ 80.124546339741755, 25.350959378572441 ], [ 80.08702924999983, 25.361630561301354 ], [ 79.840429314661094, 25.240681871571098 ], [ 79.863270297785959, 25.153245347694622 ], [ 79.801671990569901, 25.131928818859876 ], [ 79.553728468993597, 25.179031887511599 ], [ 79.479521111809845, 25.105548000739645 ], [ 79.399009230091849, 25.141333929717064 ], [ 79.391981236045183, 25.074128729956897 ], [ 79.357668085413763, 25.071105657999681 ], [ 79.332553339165258, 25.088985703727246 ], [ 79.339064569274399, 25.147405911153839 ], [ 79.44179731559359, 25.297267564546473 ], [ 79.310332472765367, 25.2438082954165 ], [ 79.289558547189188, 25.279542548449854 ], [ 79.311572707114692, 25.364550279571745 ], [ 79.261963332241976, 25.295923977409586 ], [ 79.279533318707649, 25.164278266528754 ], [ 79.171529575729323, 25.181667384941818 ], [ 79.125847608580216, 25.143840236837434 ], [ 79.109001091627022, 25.195025742843711 ], [ 79.024045038247891, 25.174639390895152 ], [ 79.011332634593373, 25.213990994189032 ], [ 79.047402785310283, 25.256934109321662 ], [ 78.998620232737494, 25.282694809817599 ], [ 78.972988722551463, 25.22817617439091 ], [ 78.869842564182932, 25.180504665857598 ], [ 78.867672153846797, 25.237736313979667 ], [ 78.935471632809595, 25.304063015495728 ], [ 78.959966262333126, 25.42653616041548 ], [ 78.909116652211708, 25.441393134185773 ], [ 78.91914187979387, 25.504593410957114 ], [ 78.891133253696694, 25.538105576810892 ], [ 78.835529412652249, 25.419740709466168 ], [ 78.80080284997149, 25.42687205719966 ], [ 78.781889276368986, 25.52402374939652 ], [ 78.726905552049573, 25.494464829688127 ], [ 78.748816359187572, 25.426148586787804 ], [ 78.727525668774547, 25.346386013004064 ], [ 78.652284783715743, 25.409457099465556 ], [ 78.582108188841801, 25.406744085870855 ], [ 78.513585240366524, 25.273367214225516 ], [ 78.573736606758985, 25.212156479737757 ], [ 78.648874139030283, 24.940726019889894 ], [ 78.723701612939067, 24.84871613224368 ], [ 78.719774204316025, 24.656402289234222 ], [ 78.74013471874224, 24.631003323044922 ], [ 78.871082797632994, 24.62573232728505 ], [ 78.922449171691881, 24.533309028488873 ], [ 78.916247999945199, 24.486800239039781 ], [ 78.978259719210655, 24.467421576544496 ], [ 78.964617141367967, 24.405409858178416 ], [ 78.792121210425478, 24.217385158997899 ], [ 78.751400180673784, 24.276580511881093 ], [ 78.655902133976269, 24.294589748817828 ], [ 78.489400669205509, 24.410784206725737 ], [ 78.408061965187528, 24.308439032235526 ], [ 78.335714959977395, 24.331021632941997 ], [ 78.350494419381903, 24.407967841242851 ], [ 78.223887160264212, 24.519227200175123 ], [ 78.272256300787603, 24.624440416092284 ], [ 78.224920689038527, 24.794119981551887 ], [ 78.169110142419129, 24.865459296409369 ], [ 78.324862909195872, 25.002169298374383 ], [ 78.366307407560782, 25.18600820651352 ], [ 78.251172315949589, 25.397829902328112 ], [ 78.330030552168239, 25.464776720569205 ], [ 78.370544875445603, 25.552678331539767 ], [ 78.546451451073551, 25.572573757073201 ], [ 78.747576124838247, 25.642724514424799 ], [ 78.733313430270528, 25.774163519730621 ], [ 78.808347608855058, 25.841549588442717 ], [ 78.953144972962093, 26.100319322378823 ], [ 78.919968702993231, 26.144657701491724 ], [ 78.95655561674829, 26.197806912259182 ], [ 78.938158807083255, 26.25459931080951 ], [ 79.058564895353584, 26.343043525038638 ], [ 79.049263137283901, 26.440660305228903 ], [ 78.926066521952407, 26.706225491013583 ], [ 78.861264275625786, 26.701264552716907 ], [ 78.710059035096378, 26.798881333806492 ], [ 78.563504672702436, 26.758496201738296 ], [ 78.350597772169408, 26.858464260317362 ], [ 78.20011600115248, 26.823582668905033 ], [ 78.172624138992774, 26.868618679108749 ], [ 78.246004672977222, 26.922904771438027 ], [ 78.168800083157294, 26.948923855251678 ], [ 78.029273715709394, 26.910011502428858 ], [ 78.01625125459168, 26.866654975246888 ], [ 77.97656375541294, 26.904378770563767 ], [ 77.720455357328831, 26.93396352779456 ], [ 77.397891065620172, 26.778882555485552 ], [ 77.423315871130512, 26.884379991343508 ], [ 77.719215122080186, 27.015793158227666 ], [ 77.674049920667244, 27.006258857060573 ], [ 77.643044061034573, 27.046618149807728 ], [ 77.559741652255411, 27.036799627800576 ], [ 77.503414340799168, 27.080466213345062 ], [ 77.657306757400875, 27.202706814268026 ], [ 77.602116326607131, 27.329494941438384 ], [ 77.43406456912453, 27.406131090477402 ], [ 77.318309360788362, 27.616867581573615 ], [ 77.33288211461786, 27.671024481794404 ], [ 77.280688918258932, 27.809439806102148 ], [ 77.46992801336711, 27.888065497424748 ], [ 77.529252556560209, 27.952506008545413 ], [ 77.468067661393434, 28.046815496837667 ], [ 77.469721306892779, 28.112728787203764 ], [ 77.503827752848508, 28.092859199192674 ], [ 77.49493940592879, 28.151847846500914 ], [ 77.538657668316716, 28.180993354159966 ], [ 77.497006464376796, 28.208924464992037 ], [ 77.538657668316716, 28.243056749369487 ], [ 77.466517367782274, 28.315222887426273 ], [ 77.497006464376796, 28.393254299546243 ], [ 77.415461052985165, 28.464955348710362 ], [ 77.377220492831441, 28.455343533177484 ], [ 77.297845492675322, 28.569393419170922 ], [ 77.337532992753381, 28.626185817721307 ], [ 77.313141716916675, 28.707266140220156 ], [ 77.206274854600849, 28.82185862947216 ], [ 77.220744257441481, 28.914385281055843 ], [ 77.175475702341771, 28.96306447994175 ], [ 77.195732863081105, 28.997584337047499 ], [ 77.133927850290036, 29.116362616441563 ], [ 77.148190545757075, 29.414923204142553 ], [ 77.065611607389712, 29.42484507893721 ], [ 77.120285272447347, 29.483782050301386 ], [ 77.065611607389712, 29.50367747673414 ], [ 77.058170201293706, 29.555483100364768 ], [ 77.099821405233627, 29.589021103740947 ], [ 77.087832472890284, 29.658500068423393 ], [ 77.180436638839751, 29.804253445140375 ], [ 77.229942660925019, 29.976646023295302 ], [ 77.570076939099408, 30.278229682054189 ], [ 77.585063104078984, 30.382926134033823 ], [ 77.661544224386432, 30.394915066377166 ], [ 77.946074659717738, 30.228336087240621 ], [ 77.834970331315731, 30.131391099719451 ], [ 77.746396925877377, 29.977343655285438 ], [ 77.750944452124713, 29.860193182968999 ], [ 77.831456332943389, 29.659895331504345 ], [ 77.966538526931458, 29.724413356990794 ], [ 78.107201775941178, 29.654520982057647 ], [ 78.154950798840275, 29.674984850170688 ], [ 78.197842238028841, 29.748158678580126 ], [ 78.154950798840275, 29.925434678867305 ], [ 78.217685987618211, 29.953675848961268 ], [ 78.361656529425261, 29.775495510209623 ], [ 78.478651971211491, 29.721958726713865 ], [ 78.643086379332885, 29.537577216215539 ], [ 78.919968702993231, 29.42218374308527 ], [ 78.86002404217578, 29.350250149025157 ], [ 78.730936314359383, 29.320071113491053 ], [ 78.714089797406189, 29.290589708148502 ], [ 78.867672153846797, 29.215167955037089 ], [ 78.913767531246549, 29.105588080025825 ], [ 79.055877720180604, 29.151760972690738 ], [ 79.296379835660844, 28.971565253233848 ], [ 79.371207309569627, 28.969885769312782 ], [ 79.443657667567265, 28.849583034729278 ], [ 79.526236606833891, 28.878418484025815 ], [ 79.600237258442689, 28.849040432370032 ], [ 79.812627395038191, 28.876868191313974 ], [ 79.841049432285445, 28.855293280960154 ], [ 79.834124790126907, 28.805787257975567 ], [ 79.887041456897691, 28.81800873521496 ], [ 79.895723098242343, 28.775194810392179 ], [ 79.931483188798097, 28.782196966916445 ], [ 79.971997512075461, 28.732871811984523 ], [ 80.028014764269926, 28.752250475379128 ], [ 80.07305357586182, 28.820924647554421 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-BR", "NAME_1": "Bihar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.975487509000118, 26.366557108000066 ], [ 88.044320516000084, 26.405676168000085 ], [ 88.087136240744883, 26.539100003762144 ], [ 88.19402794773157, 26.549516709828254 ], [ 88.195268182080895, 26.500139878952211 ], [ 88.282291293908031, 26.428438828888829 ], [ 88.254489374285185, 26.396037706175207 ], [ 88.303685337108561, 26.359967556357617 ], [ 87.867329542724178, 26.04918549231661 ], [ 87.787437778630533, 25.911674506473275 ], [ 87.942570427782982, 25.735328681273586 ], [ 88.042822707202163, 25.678148709095638 ], [ 88.067420688613879, 25.491080024323651 ], [ 87.95579959537497, 25.534074815400402 ], [ 87.768007440191184, 25.436277167157527 ], [ 87.744959750591988, 25.399457709405738 ], [ 87.839010858264487, 25.28830170326097 ], [ 87.783717075582558, 25.214094346976538 ], [ 87.749610629626829, 25.24822663045461 ], [ 87.598715448359201, 25.266700955384749 ], [ 87.523474563300397, 25.32377757387593 ], [ 87.423428990355603, 25.188540351156234 ], [ 87.302506138147692, 25.183915310543114 ], [ 87.261371698145297, 25.063974311165509 ], [ 87.185510694562879, 25.061984767982665 ], [ 87.121328565860608, 24.986278794930399 ], [ 87.121741977909892, 24.86375397406664 ], [ 87.068101840727309, 24.778487861425674 ], [ 87.042263624966267, 24.588396103797152 ], [ 86.917826776184711, 24.612684027745672 ], [ 86.88992150287504, 24.531603705246766 ], [ 86.755356072824441, 24.58813772227802 ], [ 86.702336053266208, 24.547778429530865 ], [ 86.585650668943174, 24.561446844895954 ], [ 86.494390090130537, 24.479798082515458 ], [ 86.449741651755801, 24.343113918972165 ], [ 86.276418897614008, 24.434813748255863 ], [ 86.304634230185513, 24.500313626572563 ], [ 86.290474888405356, 24.551550808522961 ], [ 86.136685826389737, 24.569585882982096 ], [ 86.097721795824157, 24.690482895868911 ], [ 86.032919550396912, 24.712393703906287 ], [ 86.040154250018588, 24.749988308013997 ], [ 85.911583286139717, 24.698466905223484 ], [ 85.849158155724297, 24.764457709055989 ], [ 85.746011997355765, 24.770038764077697 ], [ 85.647310012447065, 24.648573310409915 ], [ 85.656818475192438, 24.557648627482138 ], [ 85.578373651023128, 24.557803657113084 ], [ 85.52638716023921, 24.501553860022625 ], [ 85.280614048099778, 24.487265326133866 ], [ 85.170956658722787, 24.430912177155221 ], [ 85.088997837080456, 24.341951198988625 ], [ 85.08062625499764, 24.393317573047568 ], [ 84.908853793567687, 24.353681748913573 ], [ 84.876297642122438, 24.436441555333488 ], [ 84.835163202120043, 24.437940172101264 ], [ 84.798472934678159, 24.496592921725949 ], [ 84.688195427676817, 24.430705471580211 ], [ 84.657602980093429, 24.375049953692383 ], [ 84.588253208418791, 24.394428616187668 ], [ 84.484486932425966, 24.302857978113195 ], [ 84.314368117394679, 24.443133653495295 ], [ 84.305376417687512, 24.530802721368502 ], [ 84.20295372883146, 24.521320095246153 ], [ 84.190241326975638, 24.476594143404952 ], [ 84.156858352331085, 24.510984809301476 ], [ 84.130503370833878, 24.469772854033977 ], [ 84.021672804656191, 24.639039008343559 ], [ 83.918423292600835, 24.543799343165119 ], [ 83.695904575635609, 24.506282254322571 ], [ 83.523098586330661, 24.529665838907306 ], [ 83.523615350268187, 24.746345120231069 ], [ 83.35484012237373, 24.875045274419847 ], [ 83.364245233230918, 24.998396918482968 ], [ 83.323007440440961, 25.079012152988469 ], [ 83.33768354705802, 25.18329519291882 ], [ 83.384088982820288, 25.235927638849432 ], [ 83.886900669030638, 25.517021592872197 ], [ 84.14342247916403, 25.736207180417011 ], [ 84.212875603626173, 25.728042303909206 ], [ 84.222384068170186, 25.660837104149039 ], [ 84.27602420355413, 25.641484280075474 ], [ 84.32418663940183, 25.658899237809578 ], [ 84.314678175757194, 25.742149969745299 ], [ 84.355915969446414, 25.760546780309653 ], [ 84.524174431604706, 25.700214544965263 ], [ 84.610474073919363, 25.773879298890506 ], [ 84.531615838600032, 25.862090969122903 ], [ 84.456581659116239, 25.869971624790651 ], [ 84.374312779111449, 25.940303250194802 ], [ 84.243571404896386, 25.943713893980998 ], [ 84.206054315154461, 26.015414944044437 ], [ 84.064874302207272, 26.103549099011673 ], [ 83.988083124436628, 26.2085556102532 ], [ 84.007720167551668, 26.2509302837056 ], [ 84.185590447940797, 26.284855862508039 ], [ 84.16171593604156, 26.337927558010392 ], [ 84.186210564665771, 26.394616603773216 ], [ 84.015988396846979, 26.473449002469465 ], [ 83.926278110746182, 26.464638169915588 ], [ 83.925864698696842, 26.546364448460508 ], [ 83.963485142125592, 26.51592702870937 ], [ 84.054022251425749, 26.564761257226223 ], [ 84.099187452838635, 26.649588121194824 ], [ 84.393949823125809, 26.654419867382956 ], [ 84.306306593674321, 26.744362698379803 ], [ 84.246361931957551, 26.757049261813961 ], [ 84.233959589363508, 26.884922593702697 ], [ 84.149003534185738, 26.876344306044871 ], [ 84.059706659234905, 26.9389503045129 ], [ 84.023429802943042, 27.059950670187277 ], [ 83.941367629412525, 27.15402761538212 ], [ 83.94240115818684, 27.222498887913332 ], [ 83.885763788368081, 27.280143948084742 ], [ 83.892791783314124, 27.323965562360797 ], [ 83.848039992151882, 27.329004015023258 ], [ 83.877391399000032, 27.361741842000058 ], [ 83.83408654800013, 27.434037170000082 ], [ 83.853516887000126, 27.440961813000072 ], [ 84.007667684000126, 27.440806783000127 ], [ 84.099548380000101, 27.51687449100011 ], [ 84.289407593000078, 27.376107890000057 ], [ 84.577038615000106, 27.329030660000072 ], [ 84.657653849000042, 27.203405253000128 ], [ 84.621480347000102, 27.057987773000022 ], [ 84.64023889200007, 27.028377177000081 ], [ 84.817489054000134, 27.010600484000051 ], [ 84.924045858000113, 26.955668437000028 ], [ 85.01856205200005, 26.845804342000079 ], [ 85.162015828000051, 26.851023662000088 ], [ 85.194933716000094, 26.758884583000039 ], [ 85.287279500000068, 26.736973776000085 ], [ 85.609378703000118, 26.851023662000088 ], [ 85.701827840000135, 26.796608378000101 ], [ 85.712886597000136, 26.653206279000031 ], [ 85.828538452000032, 26.566131490000075 ], [ 86.011369670000136, 26.654446513000082 ], [ 86.195854533000045, 26.582667949000083 ], [ 86.284427938000135, 26.612020162000036 ], [ 86.713600709000048, 26.414564515000095 ], [ 86.738198690000104, 26.443710022000019 ], [ 86.821862834000058, 26.438128967000083 ], [ 87.041332641000054, 26.580187480000106 ], [ 87.10628991700014, 26.40474599300002 ], [ 87.219099569000093, 26.408104960000045 ], [ 87.300489950000099, 26.345989888000062 ], [ 87.416451864000123, 26.426966858000057 ], [ 87.586984090000044, 26.378029277000067 ], [ 87.869809205000081, 26.464638978 ], [ 87.975487509000118, 26.366557108000066 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-NL", "NAME_1": "Nagaland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.246933117968979, 26.648903921478791 ], [ 95.204865357000074, 26.66757232700003 ], [ 95.132621705000133, 26.620805155000127 ], [ 95.040637655000126, 26.475594381000079 ], [ 95.066062459000136, 26.407433167000065 ], [ 95.046322062000058, 26.247959697000042 ], [ 95.094484497000053, 26.195043030000065 ], [ 95.088179973000081, 26.10409250900004 ], [ 95.151225220000072, 26.049935608000041 ], [ 95.000640096000097, 25.922036438000063 ], [ 95.00880497300011, 25.73713816300004 ], [ 94.961469361000127, 25.717966207000032 ], [ 94.782358846000079, 25.504594219000055 ], [ 94.650360037000098, 25.446649705000098 ], [ 94.552812941763818, 25.490330715490131 ], [ 94.570382928229492, 25.68763133431861 ], [ 94.325333287401236, 25.51203481705312 ], [ 94.195108677123699, 25.496583564080197 ], [ 94.026746860379262, 25.553841051523307 ], [ 93.769604934420158, 25.53208527311682 ], [ 93.75937300036361, 25.499994207866393 ], [ 93.807535435312047, 25.479530341551992 ], [ 93.808568963187042, 25.446095689164679 ], [ 93.679067824220681, 25.328273424179145 ], [ 93.605480584661223, 25.205800279259449 ], [ 93.449211053047634, 25.302125149156268 ], [ 93.443733351712751, 25.421704413327973 ], [ 93.338313429321261, 25.54846670207661 ], [ 93.705836215968532, 25.864364732246599 ], [ 93.685062290392352, 25.92699656823703 ], [ 93.796373325268689, 25.951594550548066 ], [ 93.810119256798203, 25.903638821174638 ], [ 93.779113397165531, 25.83103343444543 ], [ 93.947785272272483, 25.886172187496413 ], [ 93.989229770637394, 25.946220201101369 ], [ 93.969696079410483, 26.02704214118188 ], [ 94.002665642905072, 26.076754868842102 ], [ 94.007729933989197, 26.184396878413168 ], [ 94.170407342924477, 26.360768541135258 ], [ 94.195418734586895, 26.465464993114949 ], [ 94.269626092670023, 26.554710191222341 ], [ 94.308280063973712, 26.485412095491768 ], [ 94.345487095353121, 26.489701239320709 ], [ 94.486563756412181, 26.676666571305191 ], [ 94.765409783934331, 26.788029283024969 ], [ 94.917131789300583, 26.951171779953654 ], [ 95.017900831757913, 26.928175767197899 ], [ 95.176444125595879, 27.033182278439369 ], [ 95.234321730663282, 26.945745755462212 ], [ 95.197424757646388, 26.841772772995057 ], [ 95.235251906650149, 26.790613105410443 ], [ 95.246933117968979, 26.648903921478791 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-MN", "NAME_1": "Manipur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.650360037000098, 25.446649705000098 ], [ 94.608002564000117, 25.394626770000073 ], [ 94.553328898000132, 25.204147440000028 ], [ 94.689134563000039, 25.138518372000092 ], [ 94.708564901000102, 25.025889587000094 ], [ 94.581544231000123, 24.730119528000031 ], [ 94.516328573000067, 24.704953105000087 ], [ 94.295360148000043, 24.332598572 ], [ 94.116869751000138, 23.841646627000031 ], [ 93.99791060400014, 23.916965027000074 ], [ 93.803710572000057, 23.936059469000057 ], [ 93.711106405000123, 24.005460917000036 ], [ 93.612404419000086, 24.009052430000011 ], [ 93.571063274000039, 23.968021343000046 ], [ 93.456651652000062, 23.959959819000076 ], [ 93.348544556000093, 24.088892517000104 ], [ 93.248706496007969, 24.01773326357926 ], [ 93.23289350782909, 24.068841254320432 ], [ 93.105666131986368, 24.044940903999475 ], [ 92.979368931231136, 24.10478221292874 ], [ 93.045928175844608, 24.326525784437365 ], [ 93.011821730788199, 24.412799587430982 ], [ 93.036729770562431, 24.414608263460593 ], [ 93.064531691084653, 24.558914700253183 ], [ 93.100601840902186, 24.577027289078103 ], [ 93.080034620901017, 24.624440416092284 ], [ 93.117655064329711, 24.797194729453167 ], [ 93.199407180397031, 24.816521715105068 ], [ 93.25335737504281, 24.914706936076243 ], [ 93.239404737938287, 24.944808458143825 ], [ 93.27681847489265, 24.973437200966032 ], [ 93.262969190575632, 25.035991523489997 ], [ 93.312061802410199, 25.065782986295744 ], [ 93.449211053047634, 25.302125149156268 ], [ 93.605480584661223, 25.205800279259449 ], [ 93.679067824220681, 25.328273424179145 ], [ 93.808568963187042, 25.446095689164679 ], [ 93.807535435312047, 25.479530341551992 ], [ 93.75937300036361, 25.499994207866393 ], [ 93.769604934420158, 25.53208527311682 ], [ 94.026746860379262, 25.553841051523307 ], [ 94.195108677123699, 25.496583564080197 ], [ 94.325333287401236, 25.51203481705312 ], [ 94.570382928229492, 25.68763133431861 ], [ 94.535863072023119, 25.513688463451786 ], [ 94.650360037000098, 25.446649705000098 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-MZ", "NAME_1": "Mizoram" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.30255946900013, 24.035774655000083 ], [ 93.355985962000034, 23.906991475000083 ], [ 93.374796184000047, 23.739017232000023 ], [ 93.432363729000087, 23.647317404000106 ], [ 93.374899536000044, 23.129726257000087 ], [ 93.272786906000078, 23.005909526000053 ], [ 93.152380819000086, 23.049937846000105 ], [ 93.138221477000059, 23.005263570000054 ], [ 93.175531861000081, 22.881705220000086 ], [ 93.079517049000117, 22.772719626000068 ], [ 93.099154093000038, 22.511960347000027 ], [ 93.165920044000075, 22.386593323000071 ], [ 93.173671509000087, 22.259417623000033 ], [ 93.123545370000045, 22.230685527 ], [ 93.141735474000086, 22.187277324000021 ], [ 93.02453332500005, 22.201901754000076 ], [ 93.025463501000104, 22.112914937000099 ], [ 92.967172486000095, 22.06268544600006 ], [ 92.968102662000035, 21.987237854000071 ], [ 92.906194295000091, 22.017313538000039 ], [ 92.877462199000092, 21.957007142000052 ], [ 92.836121053000056, 22.046510722000065 ], [ 92.683778931000063, 22.154307760000066 ], [ 92.650912720000122, 22.019173890000033 ], [ 92.575878540000133, 21.977574362000027 ], [ 92.537327921000099, 22.128624573000067 ], [ 92.577015422000045, 22.168673808000065 ], [ 92.495883423000123, 22.695618388000028 ], [ 92.442036580000092, 22.762926941000032 ], [ 92.426326945000028, 22.871059876000103 ], [ 92.359871053000063, 22.92661204000008 ], [ 92.327624959000104, 23.171429138000022 ], [ 92.34860559100008, 23.354105326000038 ], [ 92.252797485000087, 23.609309388 ], [ 92.268507928198289, 23.822008774984965 ], [ 92.318634067907851, 23.850534165918987 ], [ 92.331966587388081, 23.994840602711633 ], [ 92.298480259056646, 24.237719835002338 ], [ 92.423020460625708, 24.238029893364853 ], [ 92.431288689921075, 24.152996323821242 ], [ 92.489476353350994, 24.132506619085177 ], [ 92.624455193652238, 24.238520819779978 ], [ 92.622594842577882, 24.280740465400129 ], [ 92.707344191281379, 24.369572252357557 ], [ 92.757780389353456, 24.4829761832043 ], [ 92.837258742297081, 24.367608546697056 ], [ 93.018436313684902, 24.399131171166573 ], [ 93.045928175844608, 24.326525784437365 ], [ 92.979368931231136, 24.10478221292874 ], [ 93.105666131986368, 24.044940903999475 ], [ 93.23289350782909, 24.068841254320432 ], [ 93.248706496007969, 24.01773326357926 ], [ 93.30255946900013, 24.035774655000083 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-TR", "NAME_1": "Tripura" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.259736604660532, 23.70264057180492 ], [ 92.222101685000041, 23.707778829000048 ], [ 92.19429976400005, 23.648144226000042 ], [ 92.150788208000051, 23.731653341000126 ], [ 92.019013306000033, 23.640056865000034 ], [ 91.922688436000101, 23.722971700000059 ], [ 91.940775188000089, 23.495181986000077 ], [ 91.817681926000034, 23.400924174000082 ], [ 91.743681274000039, 23.272327373000039 ], [ 91.795564412000033, 23.089496155000049 ], [ 91.706991008000045, 22.995367534000067 ], [ 91.586068156000124, 22.94446624800004 ], [ 91.523643026000059, 22.995212504000037 ], [ 91.463595012000042, 23.184115702000057 ], [ 91.394348592000028, 23.262663879000101 ], [ 91.355694621000112, 23.224139099000027 ], [ 91.370887492000065, 23.06277944 ], [ 91.313526652000064, 23.101045838000076 ], [ 91.26577762900007, 23.329352315000037 ], [ 91.287275025000042, 23.35555226700005 ], [ 91.140824015000135, 23.612099915000059 ], [ 91.139687134000042, 23.653570251000119 ], [ 91.175240520000102, 23.67031341600007 ], [ 91.13234908000004, 23.720646261000056 ], [ 91.205212850000123, 23.771573385000082 ], [ 91.216271607000124, 23.908386739000051 ], [ 91.274149211000065, 23.988226827000048 ], [ 91.339054810000107, 23.995228984000036 ], [ 91.363032675000113, 24.099847921000062 ], [ 91.581830689000071, 24.096101380000064 ], [ 91.629062948000069, 24.215318909000061 ], [ 91.703683716000057, 24.142946065000089 ], [ 91.732622518000028, 24.164314270000077 ], [ 91.73293257600011, 24.234284159000097 ], [ 91.807036581000034, 24.221132507000036 ], [ 91.864500773000088, 24.150594177000059 ], [ 91.90594527200011, 24.260639140000066 ], [ 91.899847453000064, 24.338050435000085 ], [ 91.972194459000036, 24.316062114000104 ], [ 91.949973592000106, 24.375386658000039 ], [ 92.088259725000057, 24.381639507000031 ], [ 92.110894003000112, 24.514292908000087 ], [ 92.149979861781162, 24.542182953880172 ], [ 92.22789025303274, 24.495378525798287 ], [ 92.257759231103591, 24.396004747321228 ], [ 92.220242141361723, 24.264333198018676 ], [ 92.298480259056646, 24.237719835002338 ], [ 92.325352003592059, 24.188343004126295 ], [ 92.319977655044681, 23.85738129281242 ], [ 92.2706783394338, 23.829114285196113 ], [ 92.259736604660532, 23.70264057180492 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-ML", "NAME_1": "Meghalaya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.384937035000064, 25.004773236000048 ], [ 92.303543742000045, 25.074284566000031 ], [ 92.033999471000129, 25.181668193000107 ], [ 91.730142049000051, 25.167457174000063 ], [ 91.638674764000029, 25.12404897100005 ], [ 91.566121053000074, 25.15996409100002 ], [ 91.431865683000126, 25.137949931000023 ], [ 91.23570194500013, 25.201925354000096 ], [ 90.821980428000074, 25.142290752000108 ], [ 90.623439575000077, 25.171436259000032 ], [ 90.364644003000137, 25.149990540000104 ], [ 89.908134400000108, 25.296906637000021 ], [ 89.819044230000088, 25.284969381000067 ], [ 89.80069909700012, 25.41286855100013 ], [ 89.888808220722751, 25.47330333138359 ], [ 89.903380974552306, 25.553530992261472 ], [ 89.998465610999119, 25.580661119215279 ], [ 89.944618768241526, 25.725820216729574 ], [ 89.98017215412159, 25.814006049439627 ], [ 90.135614861636498, 25.959785265477592 ], [ 90.397097609167304, 26.017146103909568 ], [ 90.545305617060535, 25.980662542941957 ], [ 90.534660271854023, 25.910951036061419 ], [ 90.609591099449631, 25.96939708101047 ], [ 90.644317662130391, 25.931466580118581 ], [ 90.752941521833748, 25.962136542067753 ], [ 90.778056268082253, 25.925058701897569 ], [ 90.974530063711427, 25.943636378715894 ], [ 91.028997023194052, 25.899298001401633 ], [ 91.031270787217011, 25.835710151002672 ], [ 91.195911900014153, 25.868938096915599 ], [ 91.222060175037029, 25.730677802238745 ], [ 91.360553012811238, 25.843254909886184 ], [ 91.527364536843834, 25.88808421541421 ], [ 91.472277459736915, 25.890099596119455 ], [ 91.591960076696125, 26.034406032912045 ], [ 91.637848749420186, 26.026111965195014 ], [ 91.631647576774185, 25.939579779783003 ], [ 91.672471958414121, 25.931156520856746 ], [ 91.807140741252169, 26.08809784603875 ], [ 91.922482538438373, 26.038230088747582 ], [ 92.255175408718117, 26.085152289346638 ], [ 92.261479934151623, 26.055412503384332 ], [ 92.175697055774492, 25.979784043798588 ], [ 92.214661086340016, 25.919477646875862 ], [ 92.167015415329104, 25.817132473284971 ], [ 92.167325473691619, 25.68954336223635 ], [ 92.382402784560838, 25.76434499772347 ], [ 92.59344933491883, 25.58665558538695 ], [ 92.677888625259811, 25.610633450073635 ], [ 92.584871047261004, 25.491519272996015 ], [ 92.789613072185489, 25.348892320124435 ], [ 92.81162723211105, 25.234118963719197 ], [ 92.64915652875078, 25.155441596452476 ], [ 92.560686476999251, 25.150248115058446 ], [ 92.384937035000064, 25.004773236000048 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-PB", "NAME_1": "Punjab" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.294659465000052, 32.148891500000062 ], [ 75.359048299000108, 32.261675314000101 ], [ 75.298402936000059, 32.332426605000094 ], [ 75.44193810436002, 32.359756375456357 ], [ 75.502399530014259, 32.300586860095507 ], [ 75.573299595300057, 32.37463918674905 ], [ 75.698253208019082, 32.406032620009398 ], [ 75.743004999181323, 32.464375312170887 ], [ 75.86630496640106, 32.504863797026587 ], [ 75.912607049375822, 32.419055081127055 ], [ 75.727605422152465, 32.287926134183749 ], [ 75.613400505628817, 32.25092580837935 ], [ 75.614640740877462, 32.196768907259241 ], [ 75.661046176639729, 32.188784897904668 ], [ 75.580947706971074, 32.07669871757173 ], [ 75.879740838668738, 31.972389838320339 ], [ 75.968107537632704, 31.841054185802022 ], [ 75.923252394582335, 31.806275947177198 ], [ 76.179464146353212, 31.318476264368087 ], [ 76.275375604200747, 31.31044057906945 ], [ 76.319610629626823, 31.353797105352101 ], [ 76.322091099224792, 31.412811591082061 ], [ 76.359918247329233, 31.43030406318195 ], [ 76.439396600272858, 31.299691881075432 ], [ 76.520528598715828, 31.289175727078145 ], [ 76.542232701178193, 31.255689398746711 ], [ 76.567244093739873, 31.280519924155158 ], [ 76.582333612406273, 31.227422390231084 ], [ 76.623571405196174, 31.226492214244274 ], [ 76.601350538796282, 31.177528795417572 ], [ 76.615303175900806, 31.030147609824326 ], [ 76.835238072279196, 30.835870062953006 ], [ 76.814567498591146, 30.78912873040656 ], [ 76.741497022969213, 30.796492621237462 ], [ 76.695401645569461, 30.755874946071856 ], [ 76.780564406322242, 30.673451036436177 ], [ 76.851257766033029, 30.681564236100598 ], [ 76.910375603651175, 30.514158433764692 ], [ 76.891048617999274, 30.361247869993178 ], [ 76.838752068852841, 30.424241441189565 ], [ 76.752865838587525, 30.430520128201351 ], [ 76.721446567804833, 30.41059886334682 ], [ 76.729714797100144, 30.349594835333392 ], [ 76.539132114855192, 30.245130927350374 ], [ 76.545333285702554, 30.217794093922294 ], [ 76.590808547276595, 30.246681220062214 ], [ 76.641451450923682, 30.197976182754587 ], [ 76.624811638646179, 30.142837428804285 ], [ 76.53138065039667, 30.08397797270527 ], [ 76.454589470827386, 30.101625475335425 ], [ 76.409320916626939, 30.18588389672442 ], [ 76.373457473283736, 30.116973375520843 ], [ 76.338937616177986, 30.141235460148323 ], [ 76.317233513715678, 30.106560574311061 ], [ 76.205819126051779, 30.13097768856943 ], [ 76.252741326650892, 30.08857717489667 ], [ 76.216567824045796, 30.075192979472433 ], [ 76.176983676755242, 29.945536810875126 ], [ 76.225559522853644, 29.869081528989341 ], [ 76.043865186629034, 29.758158066841304 ], [ 75.886665479927899, 29.749243883298561 ], [ 75.796955193827102, 29.830195013688922 ], [ 75.698563267280917, 29.768984280100426 ], [ 75.452480095879707, 29.809214382537732 ], [ 75.296727329102907, 29.633953762056478 ], [ 75.301791620187089, 29.580494492926505 ], [ 75.248564895053846, 29.559823920137774 ], [ 75.172083774746397, 29.688214015964036 ], [ 75.238332960997298, 29.751879380728838 ], [ 75.193167758685092, 29.832675483286891 ], [ 75.147692498909691, 29.792832953577943 ], [ 75.100253534373053, 29.826913560212631 ], [ 75.095292596076433, 29.927760117935065 ], [ 75.067800733916727, 29.888356837797801 ], [ 74.995660435180923, 29.872983100089982 ], [ 74.918662550935949, 29.948379014779675 ], [ 74.816239862079954, 29.986309516570941 ], [ 74.710716586900958, 29.96837779399999 ], [ 74.650668573296002, 29.914065864148313 ], [ 74.385568474605407, 29.963080959818399 ], [ 73.887097609067382, 29.984242459022255 ], [ 73.977117954430014, 30.178054917900113 ], [ 73.911901489000115, 30.303784485000037 ], [ 73.842345011000134, 30.352980448 ], [ 74.057525676000068, 30.531367493000047 ], [ 74.0674475510001, 30.610535787000074 ], [ 74.163669068000047, 30.664899394000045 ], [ 74.319215129000099, 30.893412578000024 ], [ 74.401277303000086, 30.893102519000038 ], [ 74.65883264100006, 31.083788554000066 ], [ 74.616974732000074, 31.115259501000097 ], [ 74.536772908000103, 31.115156149000072 ], [ 74.506387166000138, 31.175410869000061 ], [ 74.532225382000092, 31.303206685000063 ], [ 74.617181437000056, 31.458907776000089 ], [ 74.489437297000052, 31.711192118000028 ], [ 74.550415487000123, 31.826999004000086 ], [ 74.698416789000134, 31.950247295000068 ], [ 74.783682902000066, 31.942857565000068 ], [ 74.828641398000116, 32.025436503000023 ], [ 74.955662069000141, 32.03220611600004 ], [ 75.040824829000087, 32.097990215000024 ], [ 75.174150025000074, 32.086828105000095 ], [ 75.195750773000043, 32.128634339000044 ], [ 75.294659465000052, 32.148891500000062 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-RJ", "NAME_1": "Rajasthan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.477114706000066, 27.862434794000094 ], [ 71.874403117000043, 27.959689840000024 ], [ 71.908302856000034, 28.135570577000109 ], [ 72.149941854000076, 28.353774313000102 ], [ 72.256498657000122, 28.645591125000081 ], [ 72.354580526000063, 28.767185771000115 ], [ 72.930359334000116, 29.047685445000027 ], [ 73.232873169000129, 29.536596171000085 ], [ 73.370332479000069, 29.927321676000034 ], [ 73.557814575000123, 30.012536113000081 ], [ 73.739715617000059, 30.048451233000051 ], [ 73.946831022733477, 30.204076838175524 ], [ 73.971330193833353, 30.141855576873354 ], [ 73.887097609067382, 29.984242459022255 ], [ 74.516516555294743, 29.947190457273791 ], [ 74.547005650090625, 29.86081329969403 ], [ 74.481893345401545, 29.823502916426435 ], [ 74.459362420639195, 29.76309316671626 ], [ 74.498326451204719, 29.736247259703248 ], [ 74.604779900571941, 29.755031642995903 ], [ 74.574807569713528, 29.589692898208682 ], [ 74.610050897231076, 29.487786974189476 ], [ 74.537083775295969, 29.441381537527889 ], [ 74.612841424292242, 29.332809352869333 ], [ 74.831226027059472, 29.403761094998515 ], [ 74.925483840306924, 29.366011461259916 ], [ 74.969615512945552, 29.284336860457699 ], [ 75.042065870943134, 29.28570628511693 ], [ 75.079582960685059, 29.236329454240888 ], [ 75.181592238391033, 29.273252264780183 ], [ 75.249701775716346, 29.256405747826989 ], [ 75.313780551631112, 29.298935451809655 ], [ 75.338171828367138, 29.234546617532374 ], [ 75.388091261602426, 29.257645982176314 ], [ 75.410002068740425, 29.20129283319767 ], [ 75.376309034834037, 29.170131943934052 ], [ 75.392948846212278, 29.105975654552822 ], [ 75.518729283029927, 28.988825182236326 ], [ 75.485966424211085, 28.926839301392647 ], [ 75.593556756039447, 28.642670600367921 ], [ 75.773080681927922, 28.469761257376092 ], [ 75.772873977252232, 28.432528388474338 ], [ 75.887078891977239, 28.403847967909371 ], [ 75.957772250788707, 28.343464057520237 ], [ 76.081382277270222, 28.174585475938954 ], [ 76.032496371909986, 28.187814643530942 ], [ 75.941442498672359, 28.117715562123465 ], [ 75.979269646776743, 28.084952704203943 ], [ 76.030015904110655, 28.102135117941316 ], [ 75.966247185659086, 28.001314399539865 ], [ 75.986090936147775, 27.970618598269652 ], [ 75.926352980006016, 27.937597357931679 ], [ 75.987537876072111, 27.847887070931563 ], [ 76.120346306936483, 27.851866157297309 ], [ 76.179050734303928, 27.807656969393577 ], [ 76.20912641794979, 27.827397366195498 ], [ 76.159620395864522, 28.044283352194952 ], [ 76.175226677569071, 28.072834581550694 ], [ 76.253774855425206, 28.080198473280916 ], [ 76.332943150006315, 28.051802273556063 ], [ 76.343795200787838, 28.085882880190752 ], [ 76.304417759072294, 28.11763804775768 ], [ 76.340694615364157, 28.139729722948346 ], [ 76.302557407997938, 28.199235134194055 ], [ 76.367979771049534, 28.156369534326529 ], [ 76.453452590164886, 28.162829088491605 ], [ 76.483011508973902, 28.117379666238605 ], [ 76.441567009709672, 28.122108058739911 ], [ 76.476500278864762, 28.084745999528252 ], [ 76.445597772019539, 28.064695543464552 ], [ 76.521768833065153, 28.038314724444945 ], [ 76.559492629281408, 27.971290391838068 ], [ 76.657987908615041, 28.016972358087855 ], [ 76.64682579857174, 28.085521144984853 ], [ 76.849707473321189, 28.232282212953749 ], [ 76.941484816071352, 28.135337226331899 ], [ 76.920400832132657, 28.051569729559333 ], [ 76.943551873620038, 27.865224514299882 ], [ 76.900867140905802, 27.744094957416337 ], [ 76.919367303358342, 27.707559718706023 ], [ 76.89135867726111, 27.683814398915331 ], [ 76.973007439641606, 27.679292711089715 ], [ 77.005873651247953, 27.730064805946029 ], [ 77.071709426348889, 27.741123562302562 ], [ 77.032021926270829, 27.781353664739811 ], [ 77.05248579258523, 27.811325994698905 ], [ 77.280688918258932, 27.809439806102148 ], [ 77.340116815138856, 27.550463364792449 ], [ 77.442539503994851, 27.396183377261025 ], [ 77.602116326607131, 27.329494941438384 ], [ 77.657306757400875, 27.202706814268026 ], [ 77.499796991437961, 27.089173692212114 ], [ 77.550749953447564, 27.040081082176187 ], [ 77.643044061034573, 27.046618149807728 ], [ 77.719111770192001, 27.002925726740898 ], [ 77.423315871130512, 26.884379991343508 ], [ 77.397891065620172, 26.778882555485552 ], [ 77.720455357328831, 26.93396352779456 ], [ 77.97656375541294, 26.904378770563767 ], [ 78.01625125459168, 26.866654975246888 ], [ 78.023175896750217, 26.905412299338138 ], [ 78.106891716679343, 26.947296047274733 ], [ 78.246521436914747, 26.917840481253165 ], [ 78.175311314165754, 26.873476263718601 ], [ 78.20011600115248, 26.823582668905033 ], [ 78.164976027321757, 26.79193085412561 ], [ 78.101207309769507, 26.795108953915076 ], [ 78.079399855418956, 26.682919419895313 ], [ 77.902769810278471, 26.664031683815153 ], [ 77.819157342237531, 26.605068874928634 ], [ 77.831456332943389, 26.575768338537955 ], [ 77.715081007882191, 26.506030992336434 ], [ 77.514369745267516, 26.416372382179702 ], [ 77.441816033583052, 26.413271795856701 ], [ 77.41515099462265, 26.364850979389189 ], [ 77.33577599536585, 26.361104437919437 ], [ 77.209685500185628, 26.241964423319473 ], [ 77.124729445007858, 26.237856147543141 ], [ 77.082458124342907, 26.185275377556593 ], [ 76.907998487739974, 26.098588162513693 ], [ 76.740153435832383, 25.923224189244934 ], [ 76.641141391661847, 25.920433661284449 ], [ 76.545953404226168, 25.848293362548645 ], [ 76.512673780570481, 25.744630439343268 ], [ 76.481151157899603, 25.732150579685481 ], [ 76.551431104661731, 25.460125841534364 ], [ 76.765888298805919, 25.334655463079116 ], [ 76.869654575698064, 25.337936917454783 ], [ 76.922777948043858, 25.306388455462809 ], [ 77.095790642923816, 25.355377711811911 ], [ 77.181056757363422, 25.342536118746864 ], [ 77.281205682196457, 25.442659206956819 ], [ 77.358513624803891, 25.411860052899101 ], [ 77.357893508078917, 25.279930121178154 ], [ 77.398924595293806, 25.212233995002862 ], [ 77.382388136703128, 25.142910060850625 ], [ 77.328851353207369, 25.108622747741606 ], [ 77.200383742115946, 25.129344998273041 ], [ 76.999362421138812, 25.087719630956201 ], [ 76.847330357410044, 25.012375393109892 ], [ 76.881746860828912, 24.890522365814491 ], [ 76.782734815759113, 24.82675364826224 ], [ 76.848053826922524, 24.759703477233643 ], [ 76.956367629162742, 24.742598577862054 ], [ 77.014555291693341, 24.699164537213619 ], [ 77.060857374668046, 24.577854112277464 ], [ 77.035225865381335, 24.538399156196078 ], [ 76.922261184106333, 24.496076157788423 ], [ 76.875752394657241, 24.565296739153155 ], [ 76.806712681345118, 24.56540009194066 ], [ 76.820458611975312, 24.337300319953783 ], [ 76.894149204322275, 24.229658311282037 ], [ 76.862729934438903, 24.175036323067843 ], [ 76.766611770117038, 24.16033437802912 ], [ 76.66915001775908, 24.223586330744524 ], [ 76.660778435676207, 24.309601752219066 ], [ 76.581713494781923, 24.282445786843596 ], [ 76.552051223185344, 24.221390081986669 ], [ 76.511536899907981, 24.209091091280811 ], [ 76.456139764438547, 24.265030829109435 ], [ 76.214500767396487, 24.283763536458025 ], [ 76.173573032969045, 24.351485501055038 ], [ 76.123963658096329, 24.312004706551932 ], [ 76.116625603888451, 24.134031073375297 ], [ 75.984747349010888, 24.036853542756774 ], [ 75.986711052872749, 23.96489411117426 ], [ 75.792511021266591, 23.881875922335951 ], [ 75.728742302814965, 23.916240749810754 ], [ 75.692878858572442, 23.789142564277881 ], [ 75.597070754411732, 23.817900499208633 ], [ 75.578157179909908, 23.875726427432653 ], [ 75.501366001239944, 23.92174429046662 ], [ 75.48606977699859, 23.988923651805067 ], [ 75.529477980124625, 24.04258962740937 ], [ 75.621772088610953, 23.995228176339253 ], [ 75.683577102301399, 24.0246320664167 ], [ 75.729982538063666, 24.000680040151735 ], [ 75.80615359910928, 24.097702542038689 ], [ 75.74641564296752, 24.171884059901402 ], [ 75.803983188773088, 24.292522691269141 ], [ 75.75178999241416, 24.34226125735114 ], [ 75.734426710624177, 24.42396169747434 ], [ 75.765432570256905, 24.493363145093042 ], [ 75.837572869891972, 24.469979560508307 ], [ 75.873953078072077, 24.501088772029163 ], [ 75.869405551824741, 24.599377345787843 ], [ 75.813698357992791, 24.66389537217367 ], [ 75.813388298730956, 24.717664700565479 ], [ 75.747035759692494, 24.780089830081579 ], [ 75.448035923319196, 24.703143621780725 ], [ 75.192237582698226, 24.731901556711477 ], [ 75.173634068357558, 24.774663804690817 ], [ 75.210427686788307, 24.821043402930684 ], [ 75.186863234150906, 24.892899481725692 ], [ 75.297450798615444, 24.839388535752278 ], [ 75.405764601754925, 24.890212307452032 ], [ 75.24515425036833, 24.911425483499272 ], [ 75.251355422115012, 24.936540228848457 ], [ 75.320291782639629, 24.935248318555011 ], [ 75.291559686130597, 24.996278184990217 ], [ 75.319361606652819, 25.059555976127399 ], [ 75.133326450655147, 25.040022284001168 ], [ 75.093845656152098, 24.977778022537677 ], [ 75.095395948863938, 24.896594347251323 ], [ 74.995143671243397, 24.864115709272539 ], [ 74.817066685279258, 24.927496853197226 ], [ 74.832569615095622, 24.800527858873579 ], [ 74.979227329377693, 24.777454331751983 ], [ 74.956903111089673, 24.68301565225056 ], [ 74.881145461194023, 24.6648772241046 ], [ 74.781409946611689, 24.781743476480244 ], [ 74.784303827359736, 24.668132839159171 ], [ 74.711853469362097, 24.523852239888924 ], [ 74.846832309663341, 24.435511379346678 ], [ 74.76642378073285, 24.358720201576034 ], [ 74.730973749438931, 24.267769680226536 ], [ 74.869983352050042, 24.236117865447113 ], [ 74.900265741270914, 24.117391261997113 ], [ 74.968478631383675, 24.041297716216604 ], [ 74.90305626833208, 23.855262559319613 ], [ 74.934992303052297, 23.666411037839111 ], [ 74.853343539772482, 23.526962184756997 ], [ 74.631444940431606, 23.420353704859565 ], [ 74.521270786217769, 23.289741522753047 ], [ 74.536360304884113, 23.250906684296012 ], [ 74.658420037754524, 23.226463730716603 ], [ 74.719604933820619, 23.169438788169543 ], [ 74.476105584804884, 23.06236522117797 ], [ 74.387428826579026, 23.072597154335199 ], [ 74.323453404351085, 23.036061917423524 ], [ 74.233329706200948, 23.155899563114303 ], [ 74.121915317637786, 23.170213935424783 ], [ 74.09752404180108, 23.260027574313085 ], [ 73.959547967065021, 23.358832912908611 ], [ 73.885443963568036, 23.339221707315915 ], [ 73.803485141925705, 23.43880219226736 ], [ 73.710674270401228, 23.415031033155628 ], [ 73.627165155147736, 23.438698839479855 ], [ 73.615382928379404, 23.6017896595651 ], [ 73.566393671130982, 23.635405178206383 ], [ 73.504175246290572, 23.602642320286861 ], [ 73.502728306366237, 23.701706041300724 ], [ 73.449708285908628, 23.719792791703981 ], [ 73.411674432229233, 23.779220689483225 ], [ 73.358137647834155, 23.787359727569367 ], [ 73.368162876315637, 23.899626776854234 ], [ 73.423870070147586, 23.940942084009976 ], [ 73.354106887322985, 24.104730536085356 ], [ 73.245586378608436, 24.015537013922028 ], [ 73.101615838600026, 24.159430040463974 ], [ 73.077534621125835, 24.214336249518283 ], [ 73.107506951984192, 24.292290147272467 ], [ 73.216647577423714, 24.369029649098991 ], [ 73.0972750179277, 24.40429881413894 ], [ 73.091073846181018, 24.50721242941006 ], [ 72.994542270709189, 24.490055854094351 ], [ 72.954958124317955, 24.384945990065376 ], [ 72.89739057761301, 24.36058055354971 ], [ 72.717556594261396, 24.390242825146231 ], [ 72.667637160126787, 24.460936183957699 ], [ 72.544543897582798, 24.510132148579771 ], [ 72.508060336615188, 24.506463121475861 ], [ 72.457004021818136, 24.430550441949322 ], [ 72.413595818692045, 24.522973740745499 ], [ 72.356028272886476, 24.524679063088286 ], [ 72.248748000319949, 24.592711086947077 ], [ 72.328433058838584, 24.617154038727904 ], [ 72.327502882851718, 24.642165432188904 ], [ 72.172783644849289, 24.634000556580418 ], [ 72.050930616654625, 24.708362942495796 ], [ 71.93476199716838, 24.658159288420393 ], [ 71.856833936936596, 24.6849276801683 ], [ 71.821487258430182, 24.635705878023828 ], [ 71.762782831062793, 24.676581936507148 ], [ 71.637002395144407, 24.657642524482924 ], [ 71.545845168219898, 24.688054104013645 ], [ 71.222350702323013, 24.636816921163984 ], [ 71.056632329000138, 24.692819747000058 ], [ 70.915236857000082, 24.946617941000042 ], [ 70.848574259000088, 25.163323060000025 ], [ 70.734886109000115, 25.267347717000078 ], [ 70.654477580000048, 25.396590475000025 ], [ 70.653857463000065, 25.67445465100009 ], [ 70.592259156000068, 25.708819479000041 ], [ 70.477227417000108, 25.676315003000113 ], [ 70.264578898000138, 25.697295634000014 ], [ 70.083246297000073, 25.929942933000021 ], [ 70.073892863000083, 26.083111878000054 ], [ 70.146911662000036, 26.217418925000047 ], [ 70.15807377100009, 26.53011301700009 ], [ 70.056064494000054, 26.589075826000013 ], [ 69.772257527000136, 26.595070292000045 ], [ 69.472844279000071, 26.766584371000036 ], [ 69.507570842000121, 27.050081279000082 ], [ 69.575577026000133, 27.18841908800006 ], [ 69.848015177000036, 27.410369365000051 ], [ 70.016893758000037, 27.600590312000051 ], [ 70.101953166000044, 27.811740214000011 ], [ 70.341938517000131, 28.011469625000089 ], [ 70.456246786000122, 28.039788310000077 ], [ 70.559806356000138, 27.998447164000041 ], [ 70.633186889000058, 27.931629537000092 ], [ 70.671737508000035, 27.791095480000095 ], [ 70.76175785300012, 27.709782613000115 ], [ 70.913789917000031, 27.717818299 ], [ 71.226328979000129, 27.845355734000051 ], [ 71.477114706000066, 27.862434794000094 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-HP", "NAME_1": "Himachal Pradesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.380982706586622, 32.528041484526852 ], [ 78.452192830000058, 32.41678212500004 ], [ 78.457980591000137, 32.229661764000085 ], [ 78.513067668000076, 32.2075700890001 ], [ 78.744578085000114, 31.964199931000067 ], [ 78.670887492000077, 31.770516663000038 ], [ 78.724010865000082, 31.673313293000049 ], [ 78.818888794000088, 31.607374166000014 ], [ 78.699516235000033, 31.510015768000059 ], [ 78.76256148300007, 31.445110169000131 ], [ 78.740857382000058, 31.317727763000036 ], [ 78.784472290000053, 31.288272197000097 ], [ 78.878876265826989, 31.299550770251813 ], [ 78.993245884190173, 31.13078746197175 ], [ 78.869532504921153, 31.121976630317192 ], [ 78.792741327150509, 31.207010199860804 ], [ 78.500976190398831, 31.219567572985113 ], [ 78.433693475373559, 31.26806590381841 ], [ 78.312977328740715, 31.294498398782082 ], [ 78.039712355340896, 31.172180284392596 ], [ 77.941113723219701, 31.172903753905075 ], [ 77.79848677034812, 31.041361395811748 ], [ 77.802104119709327, 30.992165432088996 ], [ 77.749704216876069, 30.979918118226578 ], [ 77.793422479263995, 30.895737210303992 ], [ 77.75187462811158, 30.883050645071194 ], [ 77.705779249812508, 30.791454169474321 ], [ 77.770788201714083, 30.635055447550826 ], [ 77.743296339554377, 30.600561427967534 ], [ 77.812956171390169, 30.521057237501509 ], [ 77.57586469879675, 30.42873729149278 ], [ 77.583822869729602, 30.382176825200304 ], [ 77.513336215593824, 30.424939073179644 ], [ 77.434374628386365, 30.421218370131669 ], [ 77.452047966740224, 30.454782212828832 ], [ 77.380527784729452, 30.429254055430306 ], [ 77.241001418180872, 30.489327908356245 ], [ 77.208135206574468, 30.476951402385282 ], [ 77.134134555865046, 30.554362697780277 ], [ 77.150257603305704, 30.663994248735548 ], [ 77.125969680256503, 30.711381537328066 ], [ 77.001532830575627, 30.777346502738908 ], [ 76.905724724616334, 30.899302882821758 ], [ 76.847020298148209, 30.898682766096783 ], [ 76.810123326030634, 30.934261990398511 ], [ 76.768162061929559, 30.907596951438165 ], [ 76.625638461845483, 31.016608384769143 ], [ 76.599800246084442, 31.134895737748082 ], [ 76.628428989806025, 31.220084336922582 ], [ 76.582333612406273, 31.227422390231084 ], [ 76.567244093739873, 31.280519924155158 ], [ 76.542232701178193, 31.255689398746711 ], [ 76.520528598715828, 31.289175727078145 ], [ 76.439396600272858, 31.299691881075432 ], [ 76.359918247329233, 31.43030406318195 ], [ 76.322091099224792, 31.412811591082061 ], [ 76.319610629626823, 31.353797105352101 ], [ 76.275375604200747, 31.31044057906945 ], [ 76.179464146353212, 31.318476264368087 ], [ 75.923252394582335, 31.806275947177198 ], [ 75.968107537632704, 31.841054185802022 ], [ 75.879740838668738, 31.972389838320339 ], [ 75.577847120648073, 32.083700873196733 ], [ 75.661046176639729, 32.188784897904668 ], [ 75.614640740877462, 32.196768907259241 ], [ 75.613400505628817, 32.25092580837935 ], [ 75.727605422152465, 32.287926134183749 ], [ 75.912607049375822, 32.419055081127055 ], [ 75.84739139189918, 32.516749376582425 ], [ 75.922632276957984, 32.617337550987145 ], [ 75.912400343800812, 32.761902371097506 ], [ 75.806877068621759, 32.923675442467697 ], [ 75.858553501043218, 32.942149767397837 ], [ 75.954671665365026, 32.901377060802702 ], [ 76.100812615709629, 33.013049831784315 ], [ 76.237031691259517, 33.063486029856392 ], [ 76.294289177803307, 33.147899481775653 ], [ 76.542439405853884, 33.232855536054103 ], [ 76.625948521107318, 33.189292304196442 ], [ 76.75451948408687, 33.194563299956314 ], [ 77.088452589615258, 32.950211290218874 ], [ 77.348695102796739, 32.867244778223892 ], [ 77.55354047960941, 32.923417060049246 ], [ 77.721075474053862, 33.012636419734974 ], [ 77.857914667228101, 32.873006700398889 ], [ 78.008913202182498, 32.610309556940479 ], [ 78.243730909853582, 32.692940172151225 ], [ 78.317731560563061, 32.764667059737008 ], [ 78.360416294176616, 32.767612617328382 ], [ 78.377779575966599, 32.65733511032704 ], [ 78.304088982720316, 32.596150214260945 ], [ 78.274013299074454, 32.491143703918794 ], [ 78.313390740789998, 32.471739203001789 ], [ 78.380982706586622, 32.528041484526852 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-AP", "NAME_1": "Andhra Pradesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 80.968272332000083, 15.79523346600007 ], [ 80.984873894000032, 15.761786200000074 ], [ 80.94263756600003, 15.741034247000073 ], [ 80.86850019600007, 15.81195709800005 ], [ 80.88835696700005, 15.846747137000079 ], [ 80.968272332000083, 15.79523346600007 ] ] ], [ [ [ 80.2777489322674, 13.512515706734462 ], [ 80.14185631600003, 13.728949286000045 ], [ 80.135590040000068, 13.619086005000042 ], [ 80.094004754000082, 13.69476959800005 ], [ 80.056488477000073, 13.59516022300005 ], [ 80.119395379000082, 13.500677802000041 ], [ 80.259215121680484, 13.466000068048686 ], [ 80.102532179816194, 13.459359645831 ], [ 80.10862999877537, 13.512121282970838 ], [ 80.034112583229103, 13.534135443795662 ], [ 80.054163039292803, 13.483854275354531 ], [ 79.969206984114976, 13.427139391169931 ], [ 79.956701287834107, 13.365773627051226 ], [ 79.758160434656304, 13.293297431531244 ], [ 79.776040480383813, 13.220821235111885 ], [ 79.696768833015199, 13.235807400091403 ], [ 79.680129021637015, 13.289137478012208 ], [ 79.582047154352665, 13.277897854502385 ], [ 79.5222058454234, 13.336240545764554 ], [ 79.449548780951432, 13.331150418057348 ], [ 79.420196567717369, 13.21999441191258 ], [ 79.314879999012703, 13.131989447255194 ], [ 79.250801223097938, 13.147750759489952 ], [ 79.16160770093461, 13.044914659483936 ], [ 79.077581821743649, 13.035587062992533 ], [ 78.961206495783131, 13.093232123163943 ], [ 78.901365186853866, 13.037809150172109 ], [ 78.85868045413963, 13.080468044464681 ], [ 78.724941848187711, 13.057782090970704 ], [ 78.644740024832231, 12.991997991813832 ], [ 78.57766401628129, 12.770486965201258 ], [ 78.50035607277448, 12.744803779071106 ], [ 78.447439406003753, 12.643517970877667 ], [ 78.388321568385663, 12.632459215420454 ], [ 78.299128046222336, 12.675014756925464 ], [ 78.229571568073368, 12.759893296838186 ], [ 78.242490676403577, 12.849887803779097 ], [ 78.325999789858372, 12.860791531404061 ], [ 78.359176059827291, 12.917248033170154 ], [ 78.467799921329288, 12.867664495819838 ], [ 78.411886021023008, 12.93670421003128 ], [ 78.511518181918518, 13.077212429410054 ], [ 78.565571730251122, 13.285933538901702 ], [ 78.38088016139028, 13.322752997552755 ], [ 78.350184361019387, 13.376108913895223 ], [ 78.368374465109468, 13.591005356711833 ], [ 78.231741978409559, 13.589558416787497 ], [ 78.126735467168032, 13.658572293476539 ], [ 78.067927687013139, 13.659269924567354 ], [ 78.056145461144069, 13.692006944065213 ], [ 78.105444776755007, 13.708569241077612 ], [ 78.079709913781471, 13.856932277702413 ], [ 78.03268436129423, 13.884734198224635 ], [ 77.920649855106717, 13.830473945216397 ], [ 77.937082960909891, 13.963256536759729 ], [ 77.878791944692466, 13.916618557000788 ], [ 77.791562128189639, 13.941681627305229 ], [ 77.789185012278438, 13.870316474026026 ], [ 77.669295688844954, 13.76094330548915 ], [ 77.614001906163026, 13.77944346794169 ], [ 77.591987746237464, 13.739420071079394 ], [ 77.448740675741533, 13.699448350161219 ], [ 77.389209426074103, 13.84323802301634 ], [ 77.196663039067971, 13.891865545958183 ], [ 77.15614871579055, 13.874579780332567 ], [ 77.143539666722234, 13.910701606094221 ], [ 77.099924758021132, 13.85866343846692 ], [ 77.127726677644034, 13.767893785170031 ], [ 77.041116977866182, 13.743993434849131 ], [ 76.993781366117105, 13.779908555935094 ], [ 76.962775507383697, 13.767196153179896 ], [ 76.958124628348912, 13.833367825065068 ], [ 77.010214471020959, 13.914060573936297 ], [ 76.875442336294725, 14.162727565924399 ], [ 76.916680129084682, 14.188410752953871 ], [ 76.967426384619898, 14.171021632742168 ], [ 76.995331658828945, 14.06637685850518 ], [ 77.112327102413815, 14.005062771229916 ], [ 77.289267205916758, 14.010747179039072 ], [ 77.332365349781014, 13.90816946145145 ], [ 77.386728957375453, 13.890366930089726 ], [ 77.386108839751103, 13.969302679774842 ], [ 77.327921177220503, 14.052165838982262 ], [ 77.360994094401917, 14.106400255367475 ], [ 77.327921177220503, 14.122652493118039 ], [ 77.375360141757085, 14.16758515143357 ], [ 77.465483839907279, 14.186240343516999 ], [ 77.463933547195438, 14.284994005269141 ], [ 77.374429965770275, 14.334474188932631 ], [ 77.367298618036784, 14.238252671823318 ], [ 77.256814406359752, 14.333957424095843 ], [ 77.132894322415041, 14.344008490099725 ], [ 77.072742954223941, 14.232594102435883 ], [ 76.908205194214304, 14.257863878315334 ], [ 76.921847772056992, 14.304708564548605 ], [ 76.868104282986224, 14.338065700771438 ], [ 76.858182408191567, 14.382559109515284 ], [ 76.929599237414834, 14.466507473441141 ], [ 76.825626254947679, 14.481261095323248 ], [ 76.756379836060546, 14.558930772237318 ], [ 76.738086379183017, 14.629210719898765 ], [ 76.822008904687152, 14.929321601210916 ], [ 76.719482863043652, 14.989731350021771 ], [ 76.764338006993398, 15.094117742739627 ], [ 76.863350051163877, 15.040968532871489 ], [ 77.042357212215563, 15.006448675765739 ], [ 77.128140089693375, 15.132254950105846 ], [ 77.104885695418488, 15.308213202577235 ], [ 77.025924107311653, 15.351492214494101 ], [ 76.966392856744903, 15.514040432220156 ], [ 77.008044060684824, 15.511844184361621 ], [ 77.010524530282794, 15.644626776804273 ], [ 77.083181593855443, 15.657778429131213 ], [ 77.027681104699184, 15.760924587499687 ], [ 77.034088982920196, 15.873734239143801 ], [ 77.163073357949088, 15.967113552348565 ], [ 77.446466912617893, 15.952980048090751 ], [ 77.483673943997303, 16.002072659025998 ], [ 77.488531528607098, 16.250455431073249 ], [ 77.547649367124563, 16.343007921078652 ], [ 77.493285760429444, 16.378173733331096 ], [ 77.293711379376646, 16.406518256212564 ], [ 77.257434523084726, 16.449358018557689 ], [ 77.370915969196574, 16.524288845253977 ], [ 77.446260207042883, 16.640767524002001 ], [ 77.411120233212159, 16.647821357369708 ], [ 77.445536736631084, 16.690170193299764 ], [ 77.409569939600999, 16.737841701833077 ], [ 77.467757603030918, 17.025808621170938 ], [ 77.425176223104188, 17.142338974963707 ], [ 77.370399204359785, 17.169159044454318 ], [ 77.374429965770275, 17.222566636740851 ], [ 77.525635207199002, 17.430435086410114 ], [ 77.653172642303559, 17.50006907802549 ], [ 77.685832147435633, 17.567170924998152 ], [ 77.599119093970955, 17.546810411471313 ], [ 77.582582635380277, 17.578772283713931 ], [ 77.49287234927948, 17.577609565529031 ], [ 77.4115336452615, 17.630784613818832 ], [ 77.463623487933603, 17.713415229029579 ], [ 77.531319615008215, 17.754007065773465 ], [ 77.507858514258999, 17.834725653965734 ], [ 77.626714308918167, 17.94218679548419 ], [ 77.557674594706725, 18.086157335492601 ], [ 77.599945917170317, 18.114837755158248 ], [ 77.568526646387568, 18.233745224862218 ], [ 77.583306104892813, 18.291545315563837 ], [ 77.503724400061003, 18.389317125384991 ], [ 77.59229780459998, 18.548144640063072 ], [ 77.696580845429651, 18.584214788981285 ], [ 77.712393832709154, 18.689453844219543 ], [ 77.781123487658817, 18.703768214731326 ], [ 77.839311151088737, 18.809549872328716 ], [ 77.912071568348154, 18.835362250567414 ], [ 77.839001091826901, 18.947009182227987 ], [ 77.766550733829263, 18.989358018157986 ], [ 77.751977979999765, 19.04589203518924 ], [ 77.836727328703205, 19.126688136848031 ], [ 77.889954054735824, 19.271356308846578 ], [ 77.869490186622784, 19.303266506044395 ], [ 77.989069451693808, 19.324996446029161 ], [ 78.050977818171759, 19.26541352041761 ], [ 78.167869908069747, 19.264095770803181 ], [ 78.174381138178944, 19.374657497745318 ], [ 78.211898227920869, 19.440131536741035 ], [ 78.302642042795981, 19.482764594410469 ], [ 78.333441196853698, 19.643271593009615 ], [ 78.403411086152687, 19.719261786002619 ], [ 78.363206822137101, 19.760447902848398 ], [ 78.329203728968878, 19.891292628951646 ], [ 78.477721796123944, 19.799127712573863 ], [ 78.533739048318409, 19.824655869972389 ], [ 78.78002892439531, 19.776674303076618 ], [ 78.843590936372607, 19.732206732754491 ], [ 78.875940383142108, 19.644460151414819 ], [ 78.980326775859965, 19.573818468547472 ], [ 79.182071568148331, 19.647069810423375 ], [ 79.404073521176031, 19.537825833095724 ], [ 79.582667271077639, 19.508189399021546 ], [ 79.636100701785949, 19.569813543760006 ], [ 79.795780878084997, 19.594101466809207 ], [ 79.963832634668336, 19.426023870904885 ], [ 79.928485956161921, 19.260530097386095 ], [ 79.943782180403275, 19.169217840830697 ], [ 79.861823357861624, 19.081083685863405 ], [ 79.864717237710295, 19.048398342309611 ], [ 79.933550246346783, 19.053126735710293 ], [ 79.96486616434197, 18.935356147568143 ], [ 79.960318638094634, 18.867117418134342 ], [ 79.916910434968543, 18.82657725733452 ], [ 80.090543246573532, 18.69748952951818 ], [ 80.294665154773043, 18.713380032062787 ], [ 80.352025995003657, 18.592276312701642 ], [ 80.372076451067301, 18.615556545398249 ], [ 80.40907677597238, 18.588865668016126 ], [ 80.486591424154881, 18.606177272962782 ], [ 80.583433058888545, 18.54137502753548 ], [ 80.696191033689217, 18.412287298819763 ], [ 80.770088331611191, 18.25901500074167 ], [ 80.735051710567973, 18.173748888100704 ], [ 80.799440545744574, 18.168736273859963 ], [ 80.82827599504111, 18.21529673925312 ], [ 80.873544549241501, 18.137575385495609 ], [ 80.959120721144302, 18.148246568224522 ], [ 80.938140089993112, 18.066158556272342 ], [ 80.985579055429014, 17.840461737719011 ], [ 81.029400668805806, 17.776977240107556 ], [ 81.157248163172142, 17.837903753755199 ], [ 81.245201450986144, 17.803693955911342 ], [ 81.479812453082218, 17.787519233425883 ], [ 81.51123172386491, 17.826276557517076 ], [ 81.578411086102733, 17.796950181805414 ], [ 82.042362095434328, 18.043265896304035 ], [ 82.250411411357504, 17.997428901322735 ], [ 82.276973098429721, 18.040449530821149 ], [ 82.336194288835316, 18.052748521527008 ], [ 82.330303176350469, 18.112021388776043 ], [ 82.360275507208883, 18.139409898148244 ], [ 82.311286249061084, 18.205504054768312 ], [ 82.360792271146352, 18.291622829929622 ], [ 82.369887322741704, 18.41897939698157 ], [ 82.438203565642027, 18.519257513923094 ], [ 82.502695753606133, 18.510627550321146 ], [ 82.511274042163279, 18.422209174513796 ], [ 82.597366978003606, 18.325212511048505 ], [ 82.582380813024088, 18.251056829808817 ], [ 82.635710890944836, 18.228861802730023 ], [ 82.66971398321374, 18.289297389962542 ], [ 82.771619908132209, 18.344436143013581 ], [ 82.795391066344621, 18.429340522247287 ], [ 82.878383416761267, 18.409083359709257 ], [ 82.904118279734803, 18.355339871537808 ], [ 83.030002069340014, 18.38195323275545 ], [ 83.03299930197619, 18.461896673692536 ], [ 83.083538852835773, 18.525329495359927 ], [ 83.021630487257141, 18.587702948032586 ], [ 83.028141717366339, 18.640852158800101 ], [ 83.126533644811843, 18.758157659848109 ], [ 83.201671177083142, 18.74162120215675 ], [ 83.392047153753083, 18.853319809761388 ], [ 83.299856398054317, 18.991580105337562 ], [ 83.341404250105995, 19.004576728033555 ], [ 83.435455356879174, 18.96189199531932 ], [ 83.457986280742205, 19.069404811882521 ], [ 83.518344353608995, 19.010002753424317 ], [ 83.604747348711157, 19.131339015882872 ], [ 83.738072544412375, 18.929284166131367 ], [ 83.749544711918873, 19.001114407403975 ], [ 83.801841261964626, 18.999951687420435 ], [ 83.89713260308713, 18.808361313923456 ], [ 84.071385533215732, 18.817869778467468 ], [ 84.1621293480909, 18.785313626122957 ], [ 84.336072218957725, 18.816500352009598 ], [ 84.467227004322751, 18.953623766023952 ], [ 84.469707473021401, 19.030647487791327 ], [ 84.669695266123597, 19.090152899936356 ], [ 84.685508254302476, 19.157564806170853 ], [ 84.7630229015856, 19.156376247765593 ], [ 84.777761264000048, 19.116197007000039 ], [ 84.738780144000032, 19.147650458000044 ], [ 84.71998131600003, 19.101629950000074 ], [ 84.740489129000082, 19.07367584800005 ], [ 84.778330925000034, 19.091009833000044 ], [ 84.679535352000073, 18.945705471000053 ], [ 84.423675977000073, 18.636460679000038 ], [ 84.332855665000068, 18.553697007000039 ], [ 84.246918165000068, 18.525580145000049 ], [ 84.271006707000083, 18.500189520000049 ], [ 84.349945509000065, 18.552923895000049 ], [ 84.14389082100007, 18.374823309000078 ], [ 84.113129102000073, 18.29828522300005 ], [ 83.775157097000033, 18.139593817000048 ], [ 83.613942905000044, 18.045152085000041 ], [ 83.472911004000082, 17.902492580000057 ], [ 83.451914910000028, 17.922919012000079 ], [ 83.452972852000073, 17.868475653000075 ], [ 83.341319207000083, 17.71743398600006 ], [ 83.298594597000033, 17.690130927000041 ], [ 83.246918165000068, 17.71625397300005 ], [ 83.299082879000082, 17.664292710000041 ], [ 83.212901238000029, 17.634914455000057 ], [ 83.238942905000044, 17.592962958000044 ], [ 82.896820509000065, 17.409328518000052 ], [ 82.718516472000033, 17.348618882000039 ], [ 82.474864129000082, 17.205959377000056 ], [ 82.37037194100003, 17.11009349200009 ], [ 82.252696160000085, 16.929185289000088 ], [ 82.267914259000065, 16.86749909100007 ], [ 82.314219597000033, 16.846625067000048 ], [ 82.362478061000047, 16.859076239000046 ], [ 82.34888756600003, 16.95648834800005 ], [ 82.36654707100007, 16.908636786000045 ], [ 82.365570509000065, 16.811590887000079 ], [ 82.338145379000082, 16.678412177000041 ], [ 82.312836134000065, 16.60814036700009 ], [ 82.28093509200005, 16.620835679000038 ], [ 82.307383660000085, 16.579779364000046 ], [ 82.068614129000082, 16.444281317000048 ], [ 81.76295006600003, 16.32257721600007 ], [ 81.584971550000034, 16.34210846600007 ], [ 81.556976759000065, 16.373032945000091 ], [ 81.416677280000044, 16.34015534100007 ], [ 81.41138756600003, 16.382513739000046 ], [ 81.259613477000073, 16.332709052000041 ], [ 81.14975019600007, 15.969631252000056 ], [ 80.998871290000068, 15.846747137000079 ], [ 81.012543165000068, 15.777818101000037 ], [ 80.910004102000073, 15.852687893000052 ], [ 80.896494988000029, 16.031073309000078 ], [ 80.875336134000065, 16.017401434000078 ], [ 80.890147332000083, 15.89524974200009 ], [ 80.807139519000032, 15.716376044000071 ], [ 80.776133660000085, 15.884263414000088 ], [ 80.670176629000082, 15.907700914000088 ], [ 80.393321160000085, 15.797023830000057 ], [ 80.279633009000065, 15.700669664000088 ], [ 80.211192254000082, 15.496649481000077 ], [ 80.090586785000085, 15.304877020000049 ], [ 80.052989129000082, 15.092596747000073 ], [ 80.108164910000085, 14.714341539000088 ], [ 80.178477410000085, 14.60578034100007 ], [ 80.14185631600003, 14.571234442000048 ], [ 80.19695071700005, 14.565008856000077 ], [ 80.174978061000047, 14.344549872000073 ], [ 80.12818444100003, 14.256537177000041 ], [ 80.046641472000033, 14.206610419000071 ], [ 80.135590040000068, 14.229193427000041 ], [ 80.14966881600003, 14.027736721000053 ], [ 80.24927819100003, 13.800279039000088 ], [ 80.220957879000082, 13.696966864000046 ], [ 80.2777489322674, 13.512515706734462 ] ], [ [ 82.230360956193124, 16.719315700958816 ], [ 82.221782667635978, 16.750295722169824 ], [ 82.177650994997407, 16.718592231446337 ], [ 82.260643345413996, 16.690325222031333 ], [ 82.301054315004592, 16.73329417648506 ], [ 82.230360956193124, 16.719315700958816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-OR", "NAME_1": "Orissa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.477386914674355, 21.61359284093686 ], [ 87.113047722000033, 21.507961330000057 ], [ 86.866953972000033, 21.256048895000049 ], [ 86.844004754000082, 21.082220770000049 ], [ 86.965668165000068, 20.805975653000075 ], [ 86.953868035000028, 20.780585028000075 ], [ 86.878754102000073, 20.780585028000075 ], [ 86.986582879000082, 20.751857815000051 ], [ 86.998708530000044, 20.711127020000049 ], [ 86.940196160000028, 20.69798411700009 ], [ 86.994883660000028, 20.670721747000073 ], [ 87.043223504000082, 20.69798411700009 ], [ 86.751475457000083, 20.489162502000056 ], [ 86.720469597000033, 20.368475653000075 ], [ 86.78874759200005, 20.390122789000088 ], [ 86.79615319100003, 20.437323309000078 ], [ 86.80982506600003, 20.415106512000079 ], [ 86.768321160000028, 20.343451239000046 ], [ 86.693695509000065, 20.293931382000039 ], [ 86.754649285000028, 20.314439195000091 ], [ 86.495127800000034, 20.184068101000037 ], [ 86.467133009000065, 20.094671942000048 ], [ 86.391449415000068, 20.020209052000041 ], [ 86.426280144000032, 19.999172268000052 ], [ 86.397227410000028, 19.982855536000045 ], [ 86.275401238000029, 20.067368882000039 ], [ 86.209157748000052, 20.066636460000041 ], [ 86.152517123000052, 20.143133856000077 ], [ 86.167735222000033, 20.072943427000041 ], [ 86.37240644600007, 19.964992580000057 ], [ 86.089040561000047, 19.844224351000037 ], [ 86.056651238000029, 19.85687897300005 ], [ 85.456797722000033, 19.663316148000035 ], [ 85.42701256600003, 19.704087632000039 ], [ 85.576508009000065, 19.745835679000038 ], [ 85.570323113000029, 19.87563711100006 ], [ 85.440114780000044, 19.896226304000038 ], [ 85.220957879000082, 19.736029364000046 ], [ 85.140147332000083, 19.596584377000056 ], [ 85.151377800000034, 19.560288804000038 ], [ 85.10287519600007, 19.52960846600007 ], [ 85.124034050000034, 19.478338934000078 ], [ 85.233246290000068, 19.554103908000059 ], [ 85.19304446700005, 19.58079661700009 ], [ 85.247569207000083, 19.608710028000075 ], [ 85.247569207000083, 19.656480210000041 ], [ 85.309092644000032, 19.642238674000055 ], [ 85.391449415000068, 19.690619208000044 ], [ 85.405284050000034, 19.64594147300005 ], [ 85.377940300000034, 19.614935614000046 ], [ 85.28842207100007, 19.601263739000046 ], [ 85.330577019000032, 19.576402085000041 ], [ 85.576508009000065, 19.690619208000044 ], [ 85.180430535000028, 19.475002346000053 ], [ 84.791026238000029, 19.120591539000088 ], [ 84.7630229015856, 19.156376247765593 ], [ 84.694499953110324, 19.16058787722875 ], [ 84.669695266123597, 19.090152899936356 ], [ 84.469707473021401, 19.030647487791327 ], [ 84.46257612528791, 18.946311550237851 ], [ 84.317778762080195, 18.809239813966201 ], [ 84.1621293480909, 18.785313626122957 ], [ 84.071385533215732, 18.817869778467468 ], [ 83.902403598846945, 18.805648302127452 ], [ 83.801841261964626, 18.999951687420435 ], [ 83.749544711918873, 19.001114407403975 ], [ 83.738072544412375, 18.929284166131367 ], [ 83.612808872431458, 19.129788723171032 ], [ 83.518344353608995, 19.010002753424317 ], [ 83.464187453388206, 19.073461411714788 ], [ 83.449614698659389, 18.968454902271901 ], [ 83.299856398054317, 18.991580105337562 ], [ 83.392047153753083, 18.853319809761388 ], [ 83.201671177083142, 18.74162120215675 ], [ 83.126533644811843, 18.758157659848109 ], [ 83.028141717366339, 18.640852158800101 ], [ 83.021630487257141, 18.587702948032586 ], [ 83.083538852835773, 18.525329495359927 ], [ 83.03299930197619, 18.461896673692536 ], [ 83.030002069340014, 18.38195323275545 ], [ 82.904118279734803, 18.355339871537808 ], [ 82.878383416761267, 18.409083359709257 ], [ 82.795391066344621, 18.429340522247287 ], [ 82.771619908132209, 18.344436143013581 ], [ 82.66971398321374, 18.289297389962542 ], [ 82.635710890944836, 18.228861802730023 ], [ 82.582380813024088, 18.251056829808817 ], [ 82.597366978003606, 18.325212511048505 ], [ 82.511274042163279, 18.422209174513796 ], [ 82.502695753606133, 18.510627550321146 ], [ 82.438203565642027, 18.519257513923094 ], [ 82.369887322741704, 18.41897939698157 ], [ 82.360792271146352, 18.291622829929622 ], [ 82.311286249061084, 18.205504054768312 ], [ 82.360275507208883, 18.139409898148244 ], [ 82.330303176350469, 18.112021388776043 ], [ 82.329889764301129, 18.044041043559275 ], [ 82.276973098429721, 18.040449530821149 ], [ 82.240076125412827, 17.992933051019463 ], [ 82.042362095434328, 18.043265896304035 ], [ 81.578411086102733, 17.796950181805414 ], [ 81.51123172386491, 17.826276557517076 ], [ 81.479812453082218, 17.787519233425883 ], [ 81.394029575604407, 17.806691189446838 ], [ 81.397336866603098, 17.883146471332566 ], [ 81.444155715313968, 17.87973582574773 ], [ 81.474438103635521, 17.960015164368315 ], [ 81.542547641860153, 18.262451483848906 ], [ 81.733130324105161, 18.349577948463548 ], [ 81.947070754311824, 18.567600816024822 ], [ 81.903352491923954, 18.634082546272452 ], [ 82.069853956694715, 18.719762070962815 ], [ 82.098689405991252, 18.770611681084176 ], [ 82.138893670906157, 18.747253933122522 ], [ 82.166178826591533, 18.873835353818492 ], [ 82.227880486595154, 18.933960882688552 ], [ 82.145714960277132, 19.22531260829021 ], [ 82.171759881613184, 19.316857407943019 ], [ 82.13527631974631, 19.355769762564478 ], [ 82.167522413728364, 19.405224106906985 ], [ 82.029029575954155, 19.517852892297128 ], [ 82.036160922788326, 19.767088324166821 ], [ 81.833175897049955, 19.903798326131835 ], [ 81.819326612732937, 19.965706691710466 ], [ 81.944900343975632, 20.105568955942545 ], [ 82.021898228220607, 20.011672877900992 ], [ 82.081326125100531, 20.057871608987568 ], [ 82.164731886667198, 19.979426784818259 ], [ 82.217855259012936, 19.972993069074846 ], [ 82.304878370840129, 19.823312282835559 ], [ 82.361102328609547, 19.883902899699024 ], [ 82.475927361858226, 19.872379055349086 ], [ 82.579073521126077, 19.843156033324249 ], [ 82.57524946529054, 19.768070176997071 ], [ 82.707851189680639, 19.84320770926837 ], [ 82.695035435037255, 20.000536607178674 ], [ 82.611216262320625, 19.98813426458463 ], [ 82.415569288991435, 20.06696666148224 ], [ 82.420323520813781, 20.451620185023501 ], [ 82.340121698357677, 20.542493191107894 ], [ 82.367613559618064, 20.669255478957155 ], [ 82.343222283781358, 20.866840317726485 ], [ 82.394898716202761, 20.875211899809301 ], [ 82.41587934825327, 20.833819078287831 ], [ 82.463008254427336, 20.855393989540971 ], [ 82.562123651385377, 20.954457708756252 ], [ 82.656691522096025, 21.152610989205755 ], [ 82.964579706288362, 21.178526720231957 ], [ 83.069379510156239, 21.116773383384896 ], [ 83.143586867340048, 21.120623276742833 ], [ 83.198260533296946, 21.17255809248195 ], [ 83.279392530840596, 21.358799954054632 ], [ 83.379748163047225, 21.339188748461936 ], [ 83.384915806019592, 21.389444078481404 ], [ 83.327658318576482, 21.499153143802516 ], [ 83.466874627661923, 21.799987493727826 ], [ 83.511213006774824, 21.796240953157451 ], [ 83.564853143058087, 21.853575954966345 ], [ 83.570640903654748, 21.923054917850152 ], [ 83.51286665227417, 21.973051866350545 ], [ 83.522168410343852, 22.028371487454137 ], [ 83.571054314804769, 22.058369655834952 ], [ 83.548730095617373, 22.112939968105024 ], [ 83.623660923212981, 22.21326976188999 ], [ 83.84142540925518, 22.348584499874733 ], [ 83.95573367676775, 22.378711860364035 ], [ 83.996454705620124, 22.440542711576882 ], [ 83.970203077809742, 22.53934804927303 ], [ 84.067044711644087, 22.499583034829186 ], [ 84.178562452994754, 22.364371650531211 ], [ 84.310957472709163, 22.324012355985417 ], [ 84.420821567661164, 22.330988674088019 ], [ 84.497302687968613, 22.372200629355518 ], [ 84.516733026408019, 22.421422431499991 ], [ 84.800850050589304, 22.450180365531423 ], [ 84.908337029630161, 22.421965032959861 ], [ 85.065536737230616, 22.503200385089656 ], [ 85.10470747337115, 22.330833645356449 ], [ 84.986265089861945, 22.106661281992558 ], [ 85.097886184000174, 22.11345673294187 ], [ 85.220152622445539, 22.029146632910738 ], [ 85.324125604013375, 22.126685898735218 ], [ 85.410011835178011, 22.162006741517871 ], [ 85.679142694379777, 22.07586212793484 ], [ 85.792210728442342, 22.129088853068083 ], [ 85.780635207248963, 22.022196153229856 ], [ 85.834275344431546, 21.986126004311643 ], [ 85.916234165174558, 22.022118638864072 ], [ 85.974111770241961, 22.104594225343192 ], [ 85.9652234233223, 22.263189195125221 ], [ 85.993232050318852, 22.335200304450495 ], [ 85.937834913950098, 22.499169622779846 ], [ 86.049972772025797, 22.555806993497924 ], [ 86.366025831826619, 22.330058499000529 ], [ 86.497180617191702, 22.33468353871433 ], [ 86.704609816389905, 22.188697618000674 ], [ 86.971260206893021, 22.079531155038751 ], [ 87.031411574184744, 21.907991238504849 ], [ 87.120811801923082, 21.976927599029466 ], [ 87.190678339333829, 21.956205349397351 ], [ 87.251966587288109, 21.822105007340213 ], [ 87.424462518230598, 21.774743557169415 ], [ 87.43087039555229, 21.689322414897504 ], [ 87.477386914674355, 21.61359284093686 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-DD", "NAME_1": "Daman and Diu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.005951368000069, 20.736558335000041 ], [ 71.000824415000068, 20.722154039000088 ], [ 70.972992384000065, 20.70962148600006 ], [ 70.982001946432661, 20.738079783954845 ], [ 71.005951368000069, 20.736558335000041 ] ] ], [ [ [ 72.818111857996428, 20.37877011851289 ], [ 72.840017123000052, 20.458726304000038 ], [ 72.863782610578994, 20.462021278858913 ], [ 72.881825859875505, 20.392103691432169 ], [ 72.818111857996428, 20.37877011851289 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-MH", "NAME_1": "Maharashtra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.700856966975437, 15.723211981547706 ], [ 73.646250847000033, 15.736883856000077 ], [ 73.604665561000047, 15.880845445000091 ], [ 73.490977410000085, 15.993475653000075 ], [ 73.515961134000065, 16.02484772300005 ], [ 73.450368686000047, 16.05890534100007 ], [ 73.48796634200005, 16.189357815000051 ], [ 73.45281009200005, 16.166571356000077 ], [ 73.447032097000033, 16.11359284100007 ], [ 73.43523196700005, 16.217840887000079 ], [ 73.358246290000068, 16.36749909100007 ], [ 73.384938998000052, 16.401597398000092 ], [ 73.305837436000047, 16.522650458000044 ], [ 73.307302280000044, 16.563177802000041 ], [ 73.344004754000082, 16.523586330000057 ], [ 73.378672722000033, 16.51829661700009 ], [ 73.314626498000052, 16.599432684000078 ], [ 73.371267123000052, 16.610174872000073 ], [ 73.31218509200005, 16.644720770000049 ], [ 73.303721550000034, 16.81313711100006 ], [ 73.269379102000073, 16.87563711100006 ], [ 73.289398634000065, 16.98383209800005 ], [ 73.25123131600003, 17.032171942000048 ], [ 73.275726759000065, 17.078599351000037 ], [ 73.187022332000083, 17.305975653000075 ], [ 73.249034050000034, 17.284857489000046 ], [ 73.170583530000044, 17.389715887000079 ], [ 73.180674675000034, 17.477687893000052 ], [ 73.125987175000034, 17.556545315000051 ], [ 73.200694207000083, 17.586493231000077 ], [ 73.121348504000082, 17.62641022300005 ], [ 73.123301629000082, 17.73578522300005 ], [ 73.00521894600007, 18.01235586100006 ], [ 73.043467644000032, 18.066961981000077 ], [ 73.008799675000034, 18.039007880000042 ], [ 72.987315300000034, 18.066555080000057 ], [ 72.967295769000032, 18.195990302000041 ], [ 72.926931186000047, 18.223944403000075 ], [ 72.939952019000032, 18.286037502000056 ], [ 72.972666863000029, 18.244696356000077 ], [ 73.050954623000052, 18.227484442000048 ], [ 73.047618035000085, 18.188788153000075 ], [ 73.073985222000033, 18.224188544000071 ], [ 73.07154381600003, 18.273016669000071 ], [ 72.994883660000085, 18.283596096000053 ], [ 72.912608269000032, 18.361151434000078 ], [ 72.889659050000034, 18.441310940000051 ], [ 72.907237175000034, 18.523586330000057 ], [ 72.946787957000083, 18.532416083000044 ], [ 73.008799675000034, 18.450506903000075 ], [ 73.01498457100007, 18.469956773000092 ], [ 72.96029707100007, 18.554673570000091 ], [ 72.910166863000029, 18.558986721000053 ], [ 72.855316602000073, 18.681138414000088 ], [ 72.865570509000065, 18.799383856000077 ], [ 72.926931186000047, 18.826646226000037 ], [ 72.995127800000034, 18.731024481000077 ], [ 73.016286655000044, 18.813625393000052 ], [ 72.97779381600003, 18.874986070000091 ], [ 72.946136915000068, 18.858303127000056 ], [ 72.896820509000065, 18.894476630000042 ], [ 72.988291863000029, 18.964422919000071 ], [ 72.953623894000032, 18.971258856000077 ], [ 73.056813998000052, 19.015326239000046 ], [ 72.988291863000029, 18.998602606000077 ], [ 72.974782748000052, 19.163072007000039 ], [ 72.935557488000029, 19.115057684000078 ], [ 72.934255405000044, 19.034084377000056 ], [ 72.891449415000068, 18.991766669000071 ], [ 72.885264519000032, 19.025864976000037 ], [ 72.869313998000052, 19.011419989000046 ], [ 72.821299675000034, 18.903306382000039 ], [ 72.802744988000029, 18.957586981000077 ], [ 72.770355665000068, 18.948187567000048 ], [ 72.824229363000029, 19.053534247000073 ], [ 72.823090040000068, 19.169256903000075 ], [ 72.781586134000065, 19.159654039000088 ], [ 72.830088738000029, 19.252427476000037 ], [ 72.775401238000029, 19.204657294000071 ], [ 72.785411004000082, 19.31391022300005 ], [ 72.972666863000029, 19.29368724200009 ], [ 73.02662194100003, 19.205511786000045 ], [ 73.049652540000068, 19.217718817000048 ], [ 72.987803582000083, 19.300685940000051 ], [ 72.898936394000032, 19.307033596000053 ], [ 72.836924675000034, 19.348049221000053 ], [ 72.80209394600007, 19.331935940000051 ], [ 72.763438347000033, 19.380194403000075 ], [ 72.754405144000032, 19.481756903000075 ], [ 72.879161004000082, 19.532375393000052 ], [ 72.795909050000034, 19.52680084800005 ], [ 72.741953972000033, 19.58079661700009 ], [ 72.755625847000033, 19.519354559000078 ], [ 72.722504102000073, 19.536281643000052 ], [ 72.686696811000047, 19.724798895000049 ], [ 72.726410352000073, 19.70579661700009 ], [ 72.732758009000065, 19.779730536000045 ], [ 72.677907748000052, 19.746568101000037 ], [ 72.649180535000085, 19.851996161000045 ], [ 72.708101836959088, 20.072644470124132 ], [ 72.947206658960113, 20.127402248714816 ], [ 72.99722944498285, 20.039810696106713 ], [ 73.103062779423681, 20.056243801010567 ], [ 73.142853631389926, 20.026607366936446 ], [ 73.166314732139142, 20.114870714012227 ], [ 73.231013624778939, 20.12572276479375 ], [ 73.255404900615645, 20.186365058500655 ], [ 73.37787804643466, 20.180318915485543 ], [ 73.394104444864183, 20.270390936792296 ], [ 73.36072147021963, 20.369377143440374 ], [ 73.458699985615795, 20.538023180125663 ], [ 73.406816847619382, 20.630317287712614 ], [ 73.364132114905146, 20.648455714959255 ], [ 73.433998651416573, 20.716281033243092 ], [ 73.629955682208958, 20.563861395886704 ], [ 73.699822218720385, 20.562414455962369 ], [ 73.792323032781724, 20.60618439429436 ], [ 73.811029900809217, 20.676903591527491 ], [ 73.898879835835714, 20.750955919080411 ], [ 73.902910598145581, 20.883867702732289 ], [ 73.868287388252327, 20.974766547238346 ], [ 73.705093215379577, 21.118711248825036 ], [ 73.633986443619449, 21.119383043292771 ], [ 73.553474561901453, 21.195476589073337 ], [ 73.696101515672353, 21.164677435914939 ], [ 73.766898228170646, 21.203796495212089 ], [ 73.808446079323062, 21.285884508063589 ], [ 73.841312290030146, 21.265808214477488 ], [ 73.918620232637579, 21.291568914973425 ], [ 73.960168084689315, 21.39437917745704 ], [ 74.042230259119151, 21.461791082792217 ], [ 74.240564405822624, 21.486130683584179 ], [ 74.30081912590191, 21.536980291906957 ], [ 74.285419548873051, 21.573102118567874 ], [ 74.191575147674882, 21.545506904520039 ], [ 74.146513299049502, 21.570699164235009 ], [ 73.815577427056553, 21.511529648874159 ], [ 73.751602003929293, 21.61103262035914 ], [ 73.839141879693955, 21.682191067164013 ], [ 73.803485141925705, 21.739784451391301 ], [ 73.809376255309928, 21.83647105649402 ], [ 74.06104047993415, 21.940314845953367 ], [ 74.249039340693002, 21.929772854433679 ], [ 74.407685988217736, 22.023048813951561 ], [ 74.48561404844952, 21.945973416240179 ], [ 74.512485792984933, 21.726917019005214 ], [ 74.60819054615672, 21.658910834467406 ], [ 74.708132766314066, 21.611161811568309 ], [ 74.86471235539085, 21.616122748066346 ], [ 75.011473423359746, 21.573489692195494 ], [ 75.140457798388638, 21.429131578559463 ], [ 75.311920200556756, 21.381460069126888 ], [ 75.877777133907557, 21.399779365325458 ], [ 76.082932569982063, 21.368075872803274 ], [ 76.142877231698833, 21.193125312483176 ], [ 76.10856408106747, 21.153127753143281 ], [ 76.166855096385575, 21.09431997298833 ], [ 76.28664106613229, 21.074812120183196 ], [ 76.41035444540131, 21.096722927321196 ], [ 76.498307733215256, 21.180361232884593 ], [ 76.625948521107318, 21.20883494697523 ], [ 76.653957147204551, 21.251312975013775 ], [ 76.637110630251357, 21.349213976044155 ], [ 76.777050408849277, 21.480110378091467 ], [ 76.8140507337543, 21.600128891834856 ], [ 76.917403598597161, 21.618086452827527 ], [ 77.115531039725681, 21.724048977578263 ], [ 77.218987258255311, 21.700846259247442 ], [ 77.332985467405365, 21.77445933722862 ], [ 77.474062127565105, 21.767302151073409 ], [ 77.548372836637043, 21.707435003722424 ], [ 77.57493452280994, 21.548323269103548 ], [ 77.431997511575844, 21.534215603267455 ], [ 77.49380252526629, 21.391201076768255 ], [ 77.519537388239826, 21.417659410153647 ], [ 77.568423292700743, 21.386421007423564 ], [ 77.702988722751343, 21.377920234131466 ], [ 77.79445600803831, 21.424558213890464 ], [ 77.910211216374478, 21.400580349203722 ], [ 78.085601027165637, 21.462411200416568 ], [ 78.192674595056474, 21.551113796164771 ], [ 78.365997349198267, 21.625424506136028 ], [ 78.413332960947344, 21.606304226059194 ], [ 78.427905714776898, 21.508480740293919 ], [ 78.497152133664031, 21.528531196357619 ], [ 78.626653272630392, 21.479412747000652 ], [ 78.799562615622165, 21.489308783373644 ], [ 78.917591587082029, 21.513906764785361 ], [ 78.950354445001608, 21.590362047570409 ], [ 79.215764602054719, 21.65457001379508 ], [ 79.258656040343965, 21.714256293093456 ], [ 79.486342401180821, 21.663484198237143 ], [ 79.565200637399471, 21.538814806358232 ], [ 79.758780552280655, 21.594082749719121 ], [ 79.849731072730776, 21.529409695501045 ], [ 80.005277133932566, 21.548323269103548 ], [ 80.18666141089534, 21.639480496028057 ], [ 80.310168084589407, 21.580233466301422 ], [ 80.402668897751369, 21.480213730878972 ], [ 80.402668897751369, 21.394327501512976 ], [ 80.48442101381869, 21.401820584452366 ], [ 80.625601026765935, 21.326476344807475 ], [ 80.679034458373508, 21.351151842383615 ], [ 80.637383254433587, 21.251700547742075 ], [ 80.46519738185367, 21.147960110170914 ], [ 80.436258578870309, 21.024685981372897 ], [ 80.463337029879995, 20.942210394893777 ], [ 80.533927035903957, 20.937507839015552 ], [ 80.554700962379457, 20.907845567418974 ], [ 80.571030715395182, 20.682381292862374 ], [ 80.494859654349511, 20.601171780053562 ], [ 80.614645624096227, 20.60618439429436 ], [ 80.634902784835617, 20.512339993096191 ], [ 80.622397088554749, 20.325891425049235 ], [ 80.424373000213734, 20.234088242978032 ], [ 80.418171827567733, 20.148873806281131 ], [ 80.530619744905266, 20.134869493232486 ], [ 80.557181431078163, 20.048337306921155 ], [ 80.531136508842792, 19.920696519029093 ], [ 80.444836867427455, 19.931212673026437 ], [ 80.427473585637415, 19.888243720371406 ], [ 80.486074660217355, 19.854989936036702 ], [ 80.408973423184875, 19.791996364840372 ], [ 80.478839959696359, 19.76646820744179 ], [ 80.500750766834415, 19.810909939342196 ], [ 80.537751091739437, 19.810909939342196 ], [ 80.574544711968827, 19.728770250546631 ], [ 80.667665642755196, 19.68900523520341 ], [ 80.701358676661584, 19.597512112394043 ], [ 80.838094517048262, 19.54312266727726 ], [ 80.895352003592052, 19.452197984349482 ], [ 80.805745070278761, 19.403337918310285 ], [ 80.830963169314771, 19.334246528154722 ], [ 80.720478956738418, 19.26156362616041 ], [ 80.679964634360374, 19.321534125399523 ], [ 80.617436151157392, 19.318562730285748 ], [ 80.575991651893162, 19.391969101792597 ], [ 80.405356072924405, 19.250401516117051 ], [ 80.366598748833155, 19.117386378778349 ], [ 80.271824171648177, 18.97943614336333 ], [ 80.349235467043115, 18.830918077107583 ], [ 80.266036411051516, 18.768208725851991 ], [ 80.270377231723842, 18.713690090425303 ], [ 80.090543246573532, 18.69748952951818 ], [ 79.916910434968543, 18.82657725733452 ], [ 79.960318638094634, 18.867117418134342 ], [ 79.96486616434197, 18.935356147568143 ], [ 79.933550246346783, 19.053126735710293 ], [ 79.864717237710295, 19.048398342309611 ], [ 79.861823357861624, 19.081083685863405 ], [ 79.943782180403275, 19.169217840830697 ], [ 79.928485956161921, 19.260530097386095 ], [ 79.963832634668336, 19.426023870904885 ], [ 79.795780878084997, 19.594101466809207 ], [ 79.636100701785949, 19.569813543760006 ], [ 79.582667271077639, 19.508189399021546 ], [ 79.404073521176031, 19.537825833095724 ], [ 79.182071568148331, 19.647069810423375 ], [ 78.980326775859965, 19.573818468547472 ], [ 78.875940383142108, 19.644460151414819 ], [ 78.843590936372607, 19.732206732754491 ], [ 78.78002892439531, 19.776674303076618 ], [ 78.533739048318409, 19.824655869972389 ], [ 78.477721796123944, 19.799127712573863 ], [ 78.329203728968878, 19.891292628951646 ], [ 78.363206822137101, 19.760447902848398 ], [ 78.403411086152687, 19.719261786002619 ], [ 78.333441196853698, 19.643271593009615 ], [ 78.302642042795981, 19.482764594410469 ], [ 78.211898227920869, 19.440131536741035 ], [ 78.174381138178944, 19.374657497745318 ], [ 78.167869908069747, 19.264095770803181 ], [ 78.050977818171759, 19.26541352041761 ], [ 77.989069451693808, 19.324996446029161 ], [ 77.91145145072386, 19.330267441788976 ], [ 77.865459426111613, 19.297349555137828 ], [ 77.889954054735824, 19.271356308846578 ], [ 77.836727328703205, 19.126688136848031 ], [ 77.751977979999765, 19.04589203518924 ], [ 77.766550733829263, 18.989358018157986 ], [ 77.839001091826901, 18.947009182227987 ], [ 77.912071568348154, 18.835362250567414 ], [ 77.839311151088737, 18.809549872328716 ], [ 77.781123487658817, 18.703768214731326 ], [ 77.712393832709154, 18.689453844219543 ], [ 77.688519321709293, 18.574732163758313 ], [ 77.602219680293956, 18.556619574034073 ], [ 77.559224888317885, 18.507630316785651 ], [ 77.502587517599807, 18.38159149844887 ], [ 77.552713658208745, 18.345831406993796 ], [ 77.551163364597585, 18.307875068579563 ], [ 77.437578565698232, 18.281907659810656 ], [ 77.427346633440322, 18.316143296975554 ], [ 77.346628046147373, 18.351515814803008 ], [ 77.324303826960033, 18.449132594993273 ], [ 77.264772577292547, 18.453060004515578 ], [ 77.227358840338184, 18.322086086303841 ], [ 77.117908155636826, 18.253847357769303 ], [ 77.087729120102779, 18.197054959218974 ], [ 76.900247023281452, 18.157005723935015 ], [ 76.863143344689547, 17.903739528856136 ], [ 76.740876906244182, 17.898416856252879 ], [ 76.755656365648747, 17.825837307046072 ], [ 76.705530226838448, 17.792118434717963 ], [ 76.675971307130112, 17.706852322076998 ], [ 76.592668898350951, 17.770595201207527 ], [ 76.522699009052019, 17.77702891695094 ], [ 76.390614047700126, 17.636779079990561 ], [ 76.313099400416945, 17.609752305824259 ], [ 76.340074496840543, 17.51554616942019 ], [ 76.316303338628131, 17.473869127058549 ], [ 76.380382115442217, 17.378758653089335 ], [ 76.343795200787838, 17.351861070132259 ], [ 76.210366652299115, 17.388913071880722 ], [ 75.936481561275002, 17.325867824740328 ], [ 75.870025669449035, 17.416146552521354 ], [ 75.769876742817416, 17.377208360377495 ], [ 75.740627883270179, 17.41568146452795 ], [ 75.677996047279748, 17.425267442538427 ], [ 75.659599236715394, 17.467073676109237 ], [ 75.613090448165622, 17.47159536393491 ], [ 75.551492140949506, 17.389300645508342 ], [ 75.621048618199154, 17.242436224751941 ], [ 75.605132277232769, 17.158126126519505 ], [ 75.64678348207201, 17.091411851375824 ], [ 75.627353142733341, 16.976974391754766 ], [ 75.548701612989021, 17.015266627852554 ], [ 75.471703728744046, 16.963047593971282 ], [ 75.370831332599892, 16.984467474694213 ], [ 75.256006301149853, 16.959171861292361 ], [ 75.242570427982855, 16.902095241901861 ], [ 75.16650271972469, 16.867937120002068 ], [ 75.048887160314166, 16.953203233542354 ], [ 74.963827753248154, 16.954210923895005 ], [ 74.922279901196475, 16.889331163202598 ], [ 74.84579878088897, 16.861245021840261 ], [ 74.857581007657359, 16.75791799631844 ], [ 74.796086053228748, 16.766315415923714 ], [ 74.688289015825376, 16.712675278741131 ], [ 74.644467400650001, 16.65192963314604 ], [ 74.665758091063026, 16.606221829373908 ], [ 74.552379998638003, 16.551832384257125 ], [ 74.52457807811578, 16.623843491783703 ], [ 74.434867792014984, 16.646761990173673 ], [ 74.353219028735168, 16.543512478118373 ], [ 74.314771763006434, 16.564570624534667 ], [ 74.292447543819037, 16.528371283507909 ], [ 74.24356163935812, 16.539585069495331 ], [ 74.225991651993127, 16.486151637887758 ], [ 74.266919387319831, 16.496047675160071 ], [ 74.357869907770009, 16.400730496515166 ], [ 74.30619347534855, 16.377114366135061 ], [ 74.323763461814281, 16.282934068152713 ], [ 74.366241489852825, 16.29288178136909 ], [ 74.476002232017379, 16.217330837048451 ], [ 74.469594353796367, 16.109792182063529 ], [ 74.38350141795604, 16.069484565260439 ], [ 74.431250440855138, 16.040752467852087 ], [ 74.428769973055751, 15.993752752887247 ], [ 74.321593052377409, 15.752733873469481 ], [ 74.22351118419374, 15.726094672031479 ], [ 74.194469029322192, 15.769580390422675 ], [ 74.094836866628043, 15.672816270054795 ], [ 74.100624628124081, 15.640285956131947 ], [ 73.990347121122682, 15.61354340280576 ], [ 73.942804802899275, 15.63245697730764 ], [ 73.908388298581087, 15.721237087421628 ], [ 73.832320591222299, 15.781491808400233 ], [ 73.792736443931688, 15.741597601847843 ], [ 73.700856966975437, 15.723211981547706 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-GA", "NAME_1": "Goa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.09115644600007, 14.887600002000056 ], [ 74.035980665000068, 14.921291408000059 ], [ 74.031260613000029, 14.995306708000044 ], [ 73.913096550000034, 15.078924872000073 ], [ 73.96216881600003, 15.152044989000046 ], [ 73.891286655000044, 15.34320709800005 ], [ 73.78288821700005, 15.407904364000046 ], [ 73.899587436000047, 15.407904364000046 ], [ 73.967784050000034, 15.37376536700009 ], [ 73.927582227000073, 15.417385158000059 ], [ 73.796397332000083, 15.448879299000055 ], [ 73.817556186000047, 15.496649481000077 ], [ 73.872243686000047, 15.510931708000044 ], [ 73.865977410000085, 15.537583726000037 ], [ 73.78638756600003, 15.492173570000091 ], [ 73.75123131600003, 15.51312897300005 ], [ 73.737071160000085, 15.598537502000056 ], [ 73.838145379000082, 15.661118882000039 ], [ 73.728282097000033, 15.619574286000045 ], [ 73.697927280000044, 15.66282786700009 ], [ 73.68677819100003, 15.713120835000041 ], [ 73.792736443931688, 15.741597601847843 ], [ 73.826429477838076, 15.783042100212754 ], [ 73.908388298581087, 15.721237087421628 ], [ 73.964405551674815, 15.618814399464952 ], [ 74.172351515709863, 15.653385932514766 ], [ 74.237980585235789, 15.616023871504467 ], [ 74.239220818685794, 15.454224961712612 ], [ 74.304229770587426, 15.289170436866129 ], [ 74.24087446508446, 15.247312527351255 ], [ 74.292757603080872, 15.188272203199631 ], [ 74.266609328057996, 15.032312729948501 ], [ 74.226611769617421, 14.943248398994399 ], [ 74.09115644600007, 14.887600002000056 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-KA", "NAME_1": "Karnataka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.854258660000085, 12.765285549000055 ], [ 74.824961785000085, 12.83820221600007 ], [ 74.859141472000033, 12.824611721000053 ], [ 74.940928582000083, 12.878607489000046 ], [ 74.817556186000047, 12.861761786000045 ], [ 74.783376498000052, 13.084662177000041 ], [ 74.689463738000029, 13.38157786700009 ], [ 74.68091881600003, 13.468247789000088 ], [ 74.693695509000065, 13.415269273000092 ], [ 74.70826256600003, 13.413031317000048 ], [ 74.666677280000044, 13.632757880000042 ], [ 74.73560631600003, 13.653794664000088 ], [ 74.687754754000082, 13.711818752000056 ], [ 74.660492384000065, 13.660060940000051 ], [ 74.61459394600007, 13.835516669000071 ], [ 74.49537194100003, 14.030585028000075 ], [ 74.42904707100007, 14.240423895000049 ], [ 74.433360222000033, 14.263373114000046 ], [ 74.508962436000047, 14.25031159100007 ], [ 74.41537519600007, 14.30109284100007 ], [ 74.351898634000065, 14.530218817000048 ], [ 74.388845248000052, 14.462713934000078 ], [ 74.427744988000029, 14.476263739000046 ], [ 74.35873457100007, 14.571234442000048 ], [ 74.339040561000047, 14.523993231000077 ], [ 74.300547722000033, 14.527411200000074 ], [ 74.295176629000082, 14.587307033000059 ], [ 74.339040561000047, 14.612779039000088 ], [ 74.275889519000032, 14.610174872000073 ], [ 74.252940300000034, 14.718939520000049 ], [ 74.220469597000033, 14.738104559000078 ], [ 74.194346550000034, 14.715806382000039 ], [ 74.091319207000083, 14.811428127000056 ], [ 74.233083530000044, 14.864569403000075 ], [ 74.208018425000034, 14.900824286000045 ], [ 74.111827019000032, 14.846177476000037 ], [ 74.09115644600007, 14.887600002000056 ], [ 74.241184523446975, 14.956038316115382 ], [ 74.292757603080872, 15.188272203199631 ], [ 74.24087446508446, 15.247312527351255 ], [ 74.304229770587426, 15.289170436866129 ], [ 74.239220818685794, 15.454224961712612 ], [ 74.237980585235789, 15.616023871504467 ], [ 74.172351515709863, 15.653385932514766 ], [ 74.100624628124081, 15.640285956131947 ], [ 74.092873162766239, 15.669302273481094 ], [ 74.194469029322192, 15.769580390422675 ], [ 74.22351118419374, 15.726094672031479 ], [ 74.331101516022102, 15.761932277852338 ], [ 74.433007440041308, 16.018583279194957 ], [ 74.38350141795604, 16.069484565260439 ], [ 74.471971469707512, 16.127878933366048 ], [ 74.466183710010171, 16.242393907352948 ], [ 74.366241489852825, 16.29288178136909 ], [ 74.323763461814281, 16.282934068152713 ], [ 74.30619347534855, 16.377114366135061 ], [ 74.357869907770009, 16.400730496515166 ], [ 74.266919387319831, 16.496047675160071 ], [ 74.225991651993127, 16.486151637887758 ], [ 74.24356163935812, 16.539585069495331 ], [ 74.292447543819037, 16.528371283507909 ], [ 74.314771763006434, 16.564570624534667 ], [ 74.353219028735168, 16.543512478118373 ], [ 74.434867792014984, 16.646761990173673 ], [ 74.52457807811578, 16.623843491783703 ], [ 74.552379998638003, 16.551832384257125 ], [ 74.665758091063026, 16.606221829373908 ], [ 74.644467400650001, 16.65192963314604 ], [ 74.688289015825376, 16.712675278741131 ], [ 74.796086053228748, 16.766315415923714 ], [ 74.857581007657359, 16.75791799631844 ], [ 74.84579878088897, 16.861245021840261 ], [ 74.922279901196475, 16.889331163202598 ], [ 74.963827753248154, 16.954210923895005 ], [ 75.048887160314166, 16.953203233542354 ], [ 75.16650271972469, 16.867937120002068 ], [ 75.242570427982855, 16.902095241901861 ], [ 75.256006301149853, 16.959171861292361 ], [ 75.370831332599892, 16.984467474694213 ], [ 75.471703728744046, 16.963047593971282 ], [ 75.548701612989021, 17.015266627852554 ], [ 75.627353142733341, 16.976974391754766 ], [ 75.64678348207201, 17.091411851375824 ], [ 75.605132277232769, 17.158126126519505 ], [ 75.621048618199154, 17.242436224751941 ], [ 75.551492140949506, 17.389300645508342 ], [ 75.621772088610953, 17.476349595757199 ], [ 75.769876742817416, 17.377208360377495 ], [ 75.870025669449035, 17.416146552521354 ], [ 75.936481561275002, 17.325867824740328 ], [ 76.112698195265466, 17.381962592199841 ], [ 76.353613722795046, 17.357028713104626 ], [ 76.380382115442217, 17.378758653089335 ], [ 76.316303338628131, 17.473869127058549 ], [ 76.340074496840543, 17.51554616942019 ], [ 76.313099400416945, 17.609752305824259 ], [ 76.390614047700126, 17.636779079990561 ], [ 76.522699009052019, 17.77702891695094 ], [ 76.592668898350951, 17.770595201207527 ], [ 76.675971307130112, 17.706852322076998 ], [ 76.705530226838448, 17.792118434717963 ], [ 76.755656365648747, 17.825837307046072 ], [ 76.740876906244182, 17.898416856252879 ], [ 76.863143344689547, 17.903739528856136 ], [ 76.900247023281452, 18.157005723935015 ], [ 77.080287714006772, 18.191344712988098 ], [ 77.117908155636826, 18.253847357769303 ], [ 77.227358840338184, 18.322086086303841 ], [ 77.264772577292547, 18.453060004515578 ], [ 77.313348423391005, 18.456238105204363 ], [ 77.346628046147373, 18.351515814803008 ], [ 77.427346633440322, 18.316143296975554 ], [ 77.437578565698232, 18.281907659810656 ], [ 77.509098748608324, 18.314567165841993 ], [ 77.583306104892813, 18.291545315563837 ], [ 77.568526646387568, 18.233745224862218 ], [ 77.599945917170317, 18.114837755158248 ], [ 77.557674594706725, 18.086157335492601 ], [ 77.625784132931358, 17.95745718040456 ], [ 77.501864048087327, 17.821858222478966 ], [ 77.531319615008215, 17.754007065773465 ], [ 77.463623487933603, 17.713415229029579 ], [ 77.4115336452615, 17.630784613818832 ], [ 77.49287234927948, 17.577609565529031 ], [ 77.582582635380277, 17.578772283713931 ], [ 77.599119093970955, 17.546810411471313 ], [ 77.685832147435633, 17.567170924998152 ], [ 77.653172642303559, 17.50006907802549 ], [ 77.525635207199002, 17.430435086410114 ], [ 77.374429965770275, 17.222566636740851 ], [ 77.370399204359785, 17.169159044454318 ], [ 77.425176223104188, 17.142338974963707 ], [ 77.467757603030918, 17.025808621170938 ], [ 77.409569939600999, 16.737841701833077 ], [ 77.445536736631084, 16.690170193299764 ], [ 77.411120233212159, 16.647821357369708 ], [ 77.446260207042883, 16.640767524002001 ], [ 77.370915969196574, 16.524288845253977 ], [ 77.257434523084726, 16.449358018557689 ], [ 77.293711379376646, 16.406518256212564 ], [ 77.533179966082514, 16.361042996437106 ], [ 77.551783482221879, 16.317686469255136 ], [ 77.490805291730794, 16.261591701795567 ], [ 77.483673943997303, 16.002072659025998 ], [ 77.446466912617893, 15.952980048090751 ], [ 77.163073357949088, 15.967113552348565 ], [ 77.034088982920196, 15.873734239143801 ], [ 77.027681104699184, 15.760924587499687 ], [ 77.084938592142294, 15.667286891876529 ], [ 77.010524530282794, 15.644626776804273 ], [ 77.008044060684824, 15.511844184361621 ], [ 76.967426384619898, 15.506004746921519 ], [ 77.025924107311653, 15.351492214494101 ], [ 77.104885695418488, 15.308213202577235 ], [ 77.13072391117953, 15.141634223440633 ], [ 77.034192335707701, 15.005208442315734 ], [ 76.764338006993398, 15.094117742739627 ], [ 76.719482863043652, 14.98588145576457 ], [ 76.822215611161482, 14.920975857549763 ], [ 76.740566847881666, 14.612932643726538 ], [ 76.825626254947679, 14.481261095323248 ], [ 76.929599237414834, 14.466507473441141 ], [ 76.858182408191567, 14.382559109515284 ], [ 76.868104282986224, 14.338065700771438 ], [ 76.921847772056992, 14.304708564548605 ], [ 76.908205194214304, 14.257863878315334 ], [ 77.072742954223941, 14.232594102435883 ], [ 77.132894322415041, 14.344008490099725 ], [ 77.256814406359752, 14.333957424095843 ], [ 77.367298618036784, 14.238252671823318 ], [ 77.374429965770275, 14.334474188932631 ], [ 77.463933547195438, 14.284994005269141 ], [ 77.465483839907279, 14.186240343516999 ], [ 77.375360141757085, 14.16758515143357 ], [ 77.327921177220503, 14.122652493118039 ], [ 77.360994094401917, 14.106400255367475 ], [ 77.327921177220503, 14.052165838982262 ], [ 77.386108839751103, 13.969302679774842 ], [ 77.386728957375453, 13.890366930089726 ], [ 77.332365349781014, 13.90816946145145 ], [ 77.289267205916758, 14.010747179039072 ], [ 77.112327102413815, 14.005062771229916 ], [ 76.995331658828945, 14.06637685850518 ], [ 76.967426384619898, 14.171021632742168 ], [ 76.916680129084682, 14.188410752953871 ], [ 76.875442336294725, 14.162727565924399 ], [ 77.010214471020959, 13.914060573936297 ], [ 76.954507277189066, 13.820345363947354 ], [ 76.969183383806069, 13.753708604068834 ], [ 76.993781366117105, 13.779908555935094 ], [ 77.041116977866182, 13.743993434849131 ], [ 77.127726677644034, 13.767893785170031 ], [ 77.099924758021132, 13.85866343846692 ], [ 77.143539666722234, 13.910701606094221 ], [ 77.15614871579055, 13.874579780332567 ], [ 77.196663039067971, 13.891865545958183 ], [ 77.384041783101793, 13.846726182966961 ], [ 77.442539503994851, 13.70195465728159 ], [ 77.49421593641631, 13.70236806933093 ], [ 77.591987746237464, 13.739420071079394 ], [ 77.604596796205158, 13.776317044096288 ], [ 77.669295688844954, 13.76094330548915 ], [ 77.789185012278438, 13.870316474026026 ], [ 77.782570427583153, 13.936591497799384 ], [ 77.878791944692466, 13.916618557000788 ], [ 77.937082960909891, 13.963256536759729 ], [ 77.920649855106717, 13.830473945216397 ], [ 78.03268436129423, 13.884734198224635 ], [ 78.091388787762298, 13.830112210010441 ], [ 78.104721307242528, 13.701127834981605 ], [ 78.061416456903942, 13.698053087080268 ], [ 78.067927687013139, 13.659269924567354 ], [ 78.126735467168032, 13.658572293476539 ], [ 78.231741978409559, 13.589558416787497 ], [ 78.37302534414431, 13.586225287367085 ], [ 78.350184361019387, 13.376108913895223 ], [ 78.38088016139028, 13.322752997552755 ], [ 78.516169060953359, 13.278853868011595 ], [ 78.562471144827441, 13.293452460262813 ], [ 78.563814731964271, 13.211829535404718 ], [ 78.511518181918518, 13.077212429410054 ], [ 78.411886021023008, 12.93670421003128 ], [ 78.467799921329288, 12.867664495819838 ], [ 78.346153598709577, 12.913294786125448 ], [ 78.325999789858372, 12.860791531404061 ], [ 78.244040969115417, 12.853737698036298 ], [ 78.229571568073368, 12.759893296838186 ], [ 78.040642531327705, 12.850327053350838 ], [ 77.987415806194463, 12.804360867160256 ], [ 77.904836866927837, 12.871462714132917 ], [ 77.801277297409285, 12.856554063519184 ], [ 77.765310500379258, 12.718733018414071 ], [ 77.609351027128184, 12.672792669745888 ], [ 77.568733351962578, 12.559569606951811 ], [ 77.576794874783616, 12.495025743043584 ], [ 77.619789666759686, 12.480659694789097 ], [ 77.604596796205158, 12.405780544036872 ], [ 77.464760370394742, 12.261525784087667 ], [ 77.483363884735468, 12.207549750120847 ], [ 77.667848748920619, 12.203880723916257 ], [ 77.736785109445236, 12.17408926021119 ], [ 77.765827264316783, 12.100682887805021 ], [ 77.670845981556795, 11.971310940047829 ], [ 77.48977176295648, 11.926119900213223 ], [ 77.408122999676664, 11.791606147006064 ], [ 77.259191522270896, 11.816901760407916 ], [ 77.130827263967035, 11.796670437190926 ], [ 77.0962040549731, 11.750420030160228 ], [ 77.012694939719665, 11.821966051492041 ], [ 76.918230421796522, 11.807341619919782 ], [ 76.820768671237147, 11.625595607751109 ], [ 76.566934035377415, 11.633760484258914 ], [ 76.503578728975128, 11.719155789008425 ], [ 76.415935500422961, 11.666833401440329 ], [ 76.382139112829748, 11.749179795810903 ], [ 76.30917199089464, 11.74972239817015 ], [ 76.167061801960585, 11.862609565079367 ], [ 76.086343214667579, 11.87113617589381 ], [ 76.072390577563056, 11.963249417226791 ], [ 75.960562778749193, 11.928626207333593 ], [ 75.830648227733491, 11.957745877470245 ], [ 75.761091749584523, 12.068746853084804 ], [ 75.62921349470696, 12.102052314262892 ], [ 75.426228468968645, 12.291782334886818 ], [ 75.389331495951751, 12.29472789157893 ], [ 75.339722121078978, 12.404617824952652 ], [ 75.368247512013056, 12.470350247266083 ], [ 75.309543084645611, 12.470892848725953 ], [ 75.251355422115012, 12.536909490980236 ], [ 75.270889113341866, 12.60072988537587 ], [ 75.110485466630962, 12.630004584244148 ], [ 75.100253534373053, 12.682120266237291 ], [ 75.007959425886781, 12.690724392316838 ], [ 74.94067671086151, 12.776119696167029 ], [ 74.854258660000085, 12.765285549000055 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-KL", "NAME_1": "Kerala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.222178582000083, 12.022040106000077 ], [ 75.186289910000085, 12.041571356000077 ], [ 75.139659050000034, 12.248602606000077 ], [ 75.105479363000029, 12.221258856000077 ], [ 74.854258660000085, 12.765285549000055 ], [ 74.94067671086151, 12.776119696167029 ], [ 75.007959425886781, 12.690724392316838 ], [ 75.100253534373053, 12.682120266237291 ], [ 75.110485466630962, 12.630004584244148 ], [ 75.270889113341866, 12.60072988537587 ], [ 75.251355422115012, 12.536909490980236 ], [ 75.309543084645611, 12.470892848725953 ], [ 75.368247512013056, 12.470350247266083 ], [ 75.339722121078978, 12.404617824952652 ], [ 75.389331495951751, 12.29472789157893 ], [ 75.426228468968645, 12.291782334886818 ], [ 75.62921349470696, 12.102052314262892 ], [ 75.761091749584523, 12.068746853084804 ], [ 75.815248650704632, 11.967202664271497 ], [ 75.960562778749193, 11.928626207333593 ], [ 76.072390577563056, 11.963249417226791 ], [ 76.098745559060262, 11.860439154743176 ], [ 76.167061801960585, 11.862609565079367 ], [ 76.30917199089464, 11.74972239817015 ], [ 76.389270460563296, 11.744012152838593 ], [ 76.415315382798667, 11.648746650137753 ], [ 76.339247673641182, 11.5914891626947 ], [ 76.240752395206812, 11.603969021453167 ], [ 76.23052046115032, 11.529141547544384 ], [ 76.256255324123856, 11.478446967053856 ], [ 76.409114211051985, 11.436821601535655 ], [ 76.542749465115662, 11.337964586096746 ], [ 76.448388299080705, 11.206861477575103 ], [ 76.641244745348672, 11.208644314283674 ], [ 76.702739698877963, 11.238048204361121 ], [ 76.688580357097749, 11.173814398815466 ], [ 76.767541945204584, 11.046096096557619 ], [ 76.687650181110939, 11.033461209067525 ], [ 76.677521599841953, 10.95625661924754 ], [ 76.828726841270679, 10.869595241726984 ], [ 76.889705030862444, 10.780039985257076 ], [ 76.87554568908223, 10.678495795544507 ], [ 76.821078728700343, 10.633175564500675 ], [ 76.808573033318794, 10.437115180021522 ], [ 76.841542595914063, 10.31066295053472 ], [ 76.956987745887716, 10.223458971554294 ], [ 77.191495396095604, 10.35130646412199 ], [ 77.241621534905903, 10.284437161146059 ], [ 77.279138624647771, 10.202891751553068 ], [ 77.224361606802688, 10.065561631963703 ], [ 77.260225051045211, 9.952364406692027 ], [ 77.186844517060763, 9.596778876443977 ], [ 77.243998650817048, 9.558305772293522 ], [ 77.340633579076382, 9.579958197013184 ], [ 77.403782179903658, 9.461076564831615 ], [ 77.229942660925019, 9.06414988900616 ], [ 77.164933709922764, 9.001001288178884 ], [ 77.202554151552818, 8.894160265184098 ], [ 77.253403761674235, 8.850726222736967 ], [ 77.180746698101586, 8.703680934827275 ], [ 77.187671340260124, 8.639369614915779 ], [ 77.278828566285256, 8.526404934540096 ], [ 77.244102003604553, 8.476511338827208 ], [ 77.206068149925159, 8.478914293160074 ], [ 77.21588667193231, 8.418788764290014 ], [ 77.154701775866215, 8.295902208220298 ], [ 77.11033066412881, 8.285173557014048 ], [ 76.995860222000033, 8.368109442000048 ], [ 76.543955925000034, 8.912502346000053 ], [ 76.620616082000083, 8.925441799000055 ], [ 76.573985222000033, 8.942572333000044 ], [ 76.603282097000033, 8.973211981000077 ], [ 76.65756269600007, 8.966376044000071 ], [ 76.634287957000083, 8.986883856000077 ], [ 76.668467644000032, 9.007391669000071 ], [ 76.582774285000085, 9.000555731000077 ], [ 76.558604363000029, 8.952093817000048 ], [ 76.565440300000034, 8.994330145000049 ], [ 76.528086785000085, 8.946966864000046 ], [ 76.460459832000083, 9.114935614000046 ], [ 76.482758009000065, 9.171820380000042 ], [ 76.462412957000083, 9.151353257000039 ], [ 76.414561394000032, 9.246975002000056 ], [ 76.442556186000047, 9.14516836100006 ], [ 76.36296634200005, 9.325181382000039 ], [ 76.31177819100003, 9.492987372000073 ], [ 76.236338738000029, 9.952704169000071 ], [ 76.251475457000083, 9.963120835000041 ], [ 76.291026238000029, 9.908596096000053 ], [ 76.256846550000034, 9.908596096000053 ], [ 76.280772332000083, 9.842840887000079 ], [ 76.308604363000029, 9.87962474200009 ], [ 76.338877800000034, 9.699408270000049 ], [ 76.332692905000044, 9.870754299000055 ], [ 76.394053582000083, 9.678941148000092 ], [ 76.357432488000029, 9.520697333000044 ], [ 76.458994988000029, 9.497300523000092 ], [ 76.50326582100007, 9.534979559000078 ], [ 76.406993035000085, 9.56907786700009 ], [ 76.394053582000083, 9.842840887000079 ], [ 76.359222852000073, 9.915432033000059 ], [ 76.278168165000068, 9.977932033000059 ], [ 76.245127800000034, 10.10219961100006 ], [ 76.215342644000032, 10.138251044000071 ], [ 76.242686394000032, 9.987453518000052 ], [ 76.182383660000085, 10.105658270000049 ], [ 76.177500847000033, 10.17064036700009 ], [ 76.240244988000029, 10.238959052000041 ], [ 76.194834832000083, 10.268622137000079 ], [ 76.201670769000032, 10.199693101000037 ], [ 76.153168165000068, 10.22016022300005 ], [ 76.05241946700005, 10.51398346600007 ], [ 75.922048373000052, 10.765570380000042 ], [ 75.941579623000052, 10.796210028000075 ], [ 75.894541863000029, 10.849758205000057 ], [ 75.735524936000047, 11.371527411000045 ], [ 75.664805535000085, 11.462632554000038 ], [ 75.608897332000083, 11.484930731000077 ], [ 75.506114129000082, 11.727240302000041 ], [ 75.307627800000034, 11.932196356000077 ], [ 75.400238477000073, 11.92023346600007 ], [ 75.393402540000068, 11.974839585000041 ], [ 75.33171634200005, 11.94953034100007 ], [ 75.278819207000083, 12.003241278000075 ], [ 75.32976321700005, 12.012640692000048 ], [ 75.309543084645611, 12.09370656970242 ], [ 75.396876254835263, 12.142928371846892 ], [ 75.222933383968439, 12.100166123867496 ], [ 75.222178582000083, 12.022040106000077 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-PY", "NAME_1": "Puducherry" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 75.304209832000083, 12.043158270000049 ], [ 75.264333530000044, 12.013332424000055 ], [ 75.27670332100007, 11.96743398600006 ], [ 75.222178582000083, 12.022040106000077 ], [ 75.222933383968439, 12.100166123867496 ], [ 75.396876254835263, 12.142928371846892 ], [ 75.309543084645611, 12.09370656970242 ], [ 75.304209832000083, 12.043158270000049 ] ] ], [ [ [ 79.846688115863799, 10.979833693869864 ], [ 79.84734134200005, 10.809637762000079 ], [ 79.840222609086084, 10.809107978550344 ], [ 79.797537876371848, 10.835876370298251 ], [ 79.802705520243535, 10.870809638553965 ], [ 79.70545047435985, 10.910445460889321 ], [ 79.70431359189871, 10.943621730858183 ], [ 79.742967564101775, 10.943828437332513 ], [ 79.737489861867573, 10.986228949206634 ], [ 79.846688115863799, 10.979833693869864 ] ] ], [ [ [ 79.849560963765157, 11.955175973825614 ], [ 79.810869171418119, 11.832976638269537 ], [ 79.777177361945689, 11.832353014280159 ], [ 79.699869419338199, 11.862402859504357 ], [ 79.709171177407882, 11.91413096786988 ], [ 79.670723910779827, 11.975858466295165 ], [ 79.692531366029698, 12.001980902896321 ], [ 79.768599074287806, 11.97748627427211 ], [ 79.753096145370762, 11.938031318190781 ], [ 79.777797478670664, 11.914156806291544 ], [ 79.849560963765157, 11.955175973825614 ] ] ], [ [ [ 82.221782667635978, 16.750295722169824 ], [ 82.217441847862972, 16.722958888741687 ], [ 82.291235792997441, 16.742079168818577 ], [ 82.301364374266427, 16.717662055459471 ], [ 82.260643345413996, 16.690325222031333 ], [ 82.177650994997407, 16.718592231446337 ], [ 82.221782667635978, 16.750295722169824 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-TN", "NAME_1": "Tamil Nadu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 79.84734134200005, 10.809637762000079 ], [ 79.851328972000033, 10.282212632000039 ], [ 79.795095248000052, 10.269232489000046 ], [ 79.75709069100003, 10.309068101000037 ], [ 79.633148634000065, 10.328599351000037 ], [ 79.614105665000068, 10.309556382000039 ], [ 79.772471550000034, 10.261704820000091 ], [ 79.556651238000029, 10.298651434000078 ], [ 79.604014519000032, 10.329087632000039 ], [ 79.586924675000034, 10.343695380000042 ], [ 79.459727410000085, 10.308294989000046 ], [ 79.39812259200005, 10.324652411000045 ], [ 79.304942254000082, 10.268133856000077 ], [ 79.236338738000029, 10.166571356000077 ], [ 79.279063347000033, 10.035834052000041 ], [ 79.14185631600003, 9.891180731000077 ], [ 78.931488477000073, 9.561672268000052 ], [ 78.91529381600003, 9.453029690000051 ], [ 79.039886915000068, 9.314683335000041 ], [ 79.251719597000033, 9.28851959800005 ], [ 79.34107506600003, 9.31586334800005 ], [ 79.353526238000029, 9.240912177000041 ], [ 79.453623894000032, 9.159002997000073 ], [ 79.292735222000033, 9.25031159100007 ], [ 78.988942905000044, 9.278265692000048 ], [ 78.676280144000032, 9.184149481000077 ], [ 78.634776238000029, 9.144598700000074 ], [ 78.412119988000029, 9.099839585000041 ], [ 78.239756707000083, 8.96556224200009 ], [ 78.182790561000047, 8.877101955000057 ], [ 78.162364129000082, 8.753485419000071 ], [ 78.21021569100003, 8.788275458000044 ], [ 78.215179884000065, 8.765448309000078 ], [ 78.16920006600003, 8.733628648000092 ], [ 78.142588738000029, 8.657904364000046 ], [ 78.11459394600007, 8.657904364000046 ], [ 78.142344597000033, 8.593085028000075 ], [ 78.12826582100007, 8.488023179000038 ], [ 78.05591881600003, 8.363714911000045 ], [ 77.768321160000085, 8.181545315000051 ], [ 77.595225457000083, 8.13898346600007 ], [ 77.565277540000068, 8.082505601000037 ], [ 77.315603061000047, 8.127752997000073 ], [ 77.11033066412881, 8.285173557014048 ], [ 77.162349888436552, 8.301715807238679 ], [ 77.21588667193231, 8.418788764290014 ], [ 77.206068149925159, 8.478914293160074 ], [ 77.244102003604553, 8.476511338827208 ], [ 77.278828566285256, 8.526404934540096 ], [ 77.187671340260124, 8.639369614915779 ], [ 77.180746698101586, 8.703680934827275 ], [ 77.253403761674235, 8.850726222736967 ], [ 77.202554151552818, 8.894160265184098 ], [ 77.164933709922764, 9.001001288178884 ], [ 77.229942660925019, 9.06414988900616 ], [ 77.403782179903658, 9.461076564831615 ], [ 77.340633579076382, 9.579958197013184 ], [ 77.243998650817048, 9.558305772293522 ], [ 77.186844517060763, 9.596778876443977 ], [ 77.260225051045211, 9.952364406692027 ], [ 77.224361606802688, 10.065561631963703 ], [ 77.279138624647771, 10.202891751553068 ], [ 77.191495396095604, 10.35130646412199 ], [ 76.96980350143042, 10.224699205004299 ], [ 76.841542595914063, 10.31066295053472 ], [ 76.808573033318794, 10.437115180021522 ], [ 76.821078728700343, 10.633175564500675 ], [ 76.87554568908223, 10.678495795544507 ], [ 76.889705030862444, 10.780039985257076 ], [ 76.828726841270679, 10.869595241726984 ], [ 76.677521599841953, 10.95625661924754 ], [ 76.687650181110939, 11.033461209067525 ], [ 76.767541945204584, 11.046096096557619 ], [ 76.688580357097749, 11.173814398815466 ], [ 76.702739698877963, 11.238048204361121 ], [ 76.641244745348672, 11.208644314283674 ], [ 76.448388299080705, 11.206861477575103 ], [ 76.542749465115662, 11.337964586096746 ], [ 76.409114211051985, 11.436821601535655 ], [ 76.256255324123856, 11.478446967053856 ], [ 76.240752395206812, 11.603969021453167 ], [ 76.339247673641182, 11.5914891626947 ], [ 76.483734979385758, 11.719543361736726 ], [ 76.544093052252549, 11.697115789761881 ], [ 76.566934035377415, 11.633760484258914 ], [ 76.820768671237147, 11.625595607751109 ], [ 76.918230421796522, 11.807341619919782 ], [ 77.012694939719665, 11.821966051492041 ], [ 77.0962040549731, 11.750420030160228 ], [ 77.130827263967035, 11.796670437190926 ], [ 77.259191522270896, 11.816901760407916 ], [ 77.408122999676664, 11.791606147006064 ], [ 77.48977176295648, 11.926119900213223 ], [ 77.670845981556795, 11.971310940047829 ], [ 77.765827264316783, 12.100682887805021 ], [ 77.736785109445236, 12.17408926021119 ], [ 77.667848748920619, 12.203880723916257 ], [ 77.483363884735468, 12.207549750120847 ], [ 77.464760370394742, 12.261525784087667 ], [ 77.604596796205158, 12.405780544036872 ], [ 77.619789666759686, 12.480659694789097 ], [ 77.576794874783616, 12.495025743043584 ], [ 77.568733351962578, 12.559569606951811 ], [ 77.609351027128184, 12.672792669745888 ], [ 77.765310500379258, 12.718733018414071 ], [ 77.801277297409285, 12.856554063519184 ], [ 77.904836866927837, 12.871462714132917 ], [ 77.987415806194463, 12.804360867160256 ], [ 78.056248813931575, 12.845934556734392 ], [ 78.229571568073368, 12.759893296838186 ], [ 78.35276818160628, 12.641502590172365 ], [ 78.425735305340027, 12.633828640079685 ], [ 78.490640903554834, 12.688347276405693 ], [ 78.50035607277448, 12.744803779071106 ], [ 78.57766401628129, 12.770486965201258 ], [ 78.644740024832231, 12.991997991813832 ], [ 78.724941848187711, 13.057782090970704 ], [ 78.85868045413963, 13.080468044464681 ], [ 78.901365186853866, 13.037809150172109 ], [ 78.961206495783131, 13.093232123163943 ], [ 79.077581821743649, 13.035587062992533 ], [ 79.16160770093461, 13.044914659483936 ], [ 79.250801223097938, 13.147750759489952 ], [ 79.314879999012703, 13.131989447255194 ], [ 79.420196567717369, 13.21999441191258 ], [ 79.466912062741471, 13.337248237016524 ], [ 79.533367953668119, 13.331150418057348 ], [ 79.582047154352665, 13.277897854502385 ], [ 79.680129021637015, 13.289137478012208 ], [ 79.696768833015199, 13.235807400091403 ], [ 79.776040480383813, 13.220821235111885 ], [ 79.758160434656304, 13.293297431531244 ], [ 79.956701287834107, 13.365773627051226 ], [ 79.969206984114976, 13.427139391169931 ], [ 80.054163039292803, 13.483854275354531 ], [ 80.028324822632442, 13.524110216213501 ], [ 80.047961866646801, 13.534445502158178 ], [ 80.10862999877537, 13.512121282970838 ], [ 80.102532179816194, 13.459359645831 ], [ 80.265879754000082, 13.468247789000088 ], [ 80.306895379000082, 13.413031317000048 ], [ 80.326996290000068, 13.430365302000041 ], [ 80.347829623000052, 13.34906647300005 ], [ 80.251719597000033, 12.762518622000073 ], [ 80.156016472000033, 12.474514065000051 ], [ 80.025726759000065, 12.276516018000052 ], [ 79.943858269000032, 12.217840887000079 ], [ 80.00513756600003, 12.241766669000071 ], [ 79.870127800000034, 12.03742096600007 ], [ 79.849560963765157, 11.955175973825614 ], [ 79.777797478670664, 11.914156806291544 ], [ 79.753096145370762, 11.938031318190781 ], [ 79.768599074287806, 11.97748627427211 ], [ 79.692531366029698, 12.001980902896321 ], [ 79.670723910779827, 11.975858466295165 ], [ 79.709171177407882, 11.91413096786988 ], [ 79.703073358448705, 11.858113714776096 ], [ 79.810869171418119, 11.832976638269537 ], [ 79.751963738000029, 11.576971747000073 ], [ 79.785980665000068, 11.426174221000053 ], [ 79.809336785000085, 11.451361395000049 ], [ 79.82195071700005, 11.391058661000045 ], [ 79.749847852000073, 11.37368398600006 ], [ 79.676280144000032, 11.296454169000071 ], [ 79.759287957000083, 11.358343817000048 ], [ 79.829925977000073, 11.346096096000053 ], [ 79.855316602000073, 11.159857489000046 ], [ 79.846688115863799, 10.979833693869864 ], [ 79.730875278970927, 10.983205878148738 ], [ 79.744311151238605, 10.946644801916079 ], [ 79.705037063209886, 10.951554063369315 ], [ 79.70545047435985, 10.910445460889321 ], [ 79.802705520243535, 10.870809638553965 ], [ 79.797537876371848, 10.835876370298251 ], [ 79.84734134200005, 10.809637762000079 ] ] ], [ [ [ 80.288096550000034, 13.527085679000038 ], [ 80.309580925000034, 13.479315497000073 ], [ 80.31373131600003, 13.440904039000088 ], [ 80.2777489322674, 13.512515706734462 ], [ 80.288096550000034, 13.527085679000038 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-LD", "NAME_1": "Lakshadweep" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 73.646332227000073, 10.08470286700009 ], [ 73.640961134000065, 10.069322007000039 ], [ 73.632578972000033, 10.05727773600006 ], [ 73.64389082100007, 10.094549872000073 ], [ 73.646332227000073, 10.08470286700009 ] ] ], [ [ [ 73.662282748000052, 10.144598700000074 ], [ 73.65788821700005, 10.139064846000053 ], [ 73.654633009000065, 10.141506252000056 ], [ 73.65560957100007, 10.144761460000041 ], [ 73.662282748000052, 10.144598700000074 ] ] ], [ [ [ 72.64975019600007, 10.566839911000045 ], [ 72.638519727000073, 10.559393622000073 ], [ 72.627452019000032, 10.554754950000074 ], [ 72.648610873000052, 10.573960679000038 ], [ 72.64975019600007, 10.566839911000045 ] ] ], [ [ [ 72.548838738000029, 10.779445705000057 ], [ 72.548757358000046, 10.779323635000083 ], [ 72.541188998000052, 10.77289459800005 ], [ 72.540863477000073, 10.776516018000052 ], [ 72.548838738000029, 10.779445705000057 ] ] ], [ [ [ 73.671397332000083, 10.829738674000055 ], [ 73.681244337000066, 10.828070380000042 ], [ 73.684418165000068, 10.827541408000059 ], [ 73.672862175000034, 10.824693101000037 ], [ 73.671397332000083, 10.829738674000055 ] ] ], [ [ [ 72.750010613000029, 11.119086005000042 ], [ 72.744965040000068, 11.109523830000057 ], [ 72.73951256600003, 11.10883209800005 ], [ 72.73951256600003, 11.113959052000041 ], [ 72.750010613000029, 11.119086005000042 ] ] ], [ [ [ 73.013194207000083, 11.502183335000041 ], [ 73.010915561000047, 11.490139065000051 ], [ 73.005625847000033, 11.479641018000052 ], [ 73.004405144000032, 11.496486721000053 ], [ 73.013194207000083, 11.502183335000041 ] ] ], [ [ [ 72.71615644600007, 11.694159247000073 ], [ 72.705251498000052, 11.687323309000078 ], [ 72.700938347000033, 11.686428127000056 ], [ 72.705088738000029, 11.692328192000048 ], [ 72.71615644600007, 11.694159247000073 ] ] ], [ [ [ 73.077159050000034, 8.315252997000073 ], [ 73.083994988000029, 8.308498440000051 ], [ 73.06609134200005, 8.270453192000048 ], [ 73.024099155000044, 8.255438544000071 ], [ 73.077159050000034, 8.315252997000073 ] ] ], [ [ [ 72.172699415000068, 10.80923086100006 ], [ 72.17904707100007, 10.848700262000079 ], [ 72.200043165000068, 10.878119208000044 ], [ 72.200043165000068, 10.864447333000044 ], [ 72.172699415000068, 10.80923086100006 ] ] ], [ [ [ 72.789073113000029, 11.261664130000042 ], [ 72.795583530000044, 11.257228908000059 ], [ 72.775401238000029, 11.186590887000079 ], [ 72.770355665000068, 11.203640041000085 ], [ 72.789073113000029, 11.261664130000042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-AN", "NAME_1": "Andaman and Nicobar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 93.872813347000033, 12.268866278000075 ], [ 93.853770379000082, 12.260565497000073 ], [ 93.851898634000065, 12.271551825000074 ], [ 93.86060631600003, 12.281195380000042 ], [ 93.872813347000033, 12.268866278000075 ] ] ], [ [ [ 94.28093509200005, 13.443548895000049 ], [ 94.290782097000033, 13.422919012000079 ], [ 94.274912957000026, 13.420314846000053 ], [ 94.261892123000052, 13.429266669000071 ], [ 94.28093509200005, 13.443548895000049 ] ] ], [ [ [ 93.920258009000065, 7.024318752000056 ], [ 93.903086785000028, 6.808294989000046 ], [ 93.859385613000029, 6.804266669000071 ], [ 93.834239129000082, 6.74555084800005 ], [ 93.76531009200005, 6.924302476000094 ], [ 93.703623894000032, 7.006293036000045 ], [ 93.649180535000028, 7.013088283000059 ], [ 93.676442905000044, 7.181870835000041 ], [ 93.830821160000028, 7.235907294000071 ], [ 93.920258009000065, 7.024318752000056 ] ] ], [ [ [ 93.731211785000028, 7.369370835000041 ], [ 93.728526238000029, 7.337103583000044 ], [ 93.617930535000028, 7.259955145000049 ], [ 93.594004754000082, 7.31476471600007 ], [ 93.69695071700005, 7.445054429000038 ], [ 93.731211785000028, 7.369370835000041 ] ] ], [ [ [ 93.429453972000033, 7.955267645000049 ], [ 93.45443769600007, 7.869289455000057 ], [ 93.354258660000028, 7.883286851000037 ], [ 93.305023634000065, 7.94993724200009 ], [ 93.322601759000065, 8.002101955000057 ], [ 93.370290561000047, 8.017320054000038 ], [ 93.429453972000033, 7.955267645000049 ] ] ], [ [ [ 93.565928582000083, 7.999335028000075 ], [ 93.574229363000029, 7.968817450000074 ], [ 93.573985222000033, 7.924872137000079 ], [ 93.510752800000034, 7.980169989000046 ], [ 93.548350457000083, 8.020086981000077 ], [ 93.565928582000083, 7.999335028000075 ] ] ], [ [ [ 93.531911655000044, 8.034735419000071 ], [ 93.484385613000029, 7.991888739000046 ], [ 93.480804884000065, 8.040513414000088 ], [ 93.51693769600007, 8.063299872000073 ], [ 93.466319207000083, 8.074408270000049 ], [ 93.44662519600007, 8.154364325000074 ], [ 93.504649285000028, 8.226996161000045 ], [ 93.531667514000048, 8.21320221600007 ], [ 93.50521894600007, 8.147040106000077 ], [ 93.531911655000044, 8.034735419000071 ] ] ], [ [ [ 93.134532097000033, 8.240179755000042 ], [ 93.176280144000032, 8.212876695000091 ], [ 93.102549675000034, 8.221502997000073 ], [ 93.06576582100007, 8.268133856000077 ], [ 93.083750847000033, 8.355902411000045 ], [ 93.134532097000033, 8.240179755000042 ] ] ], [ [ [ 93.607676629000082, 8.548041083000044 ], [ 93.62818444100003, 8.486558335000041 ], [ 93.601410352000073, 8.438177802000041 ], [ 93.607676629000082, 8.569159247000073 ], [ 93.607676629000082, 8.548041083000044 ] ] ], [ [ [ 92.811373272000083, 9.231169962000081 ], [ 92.831981323000036, 9.145025417000056 ], [ 92.79956466200008, 9.110154001000069 ], [ 92.731211785000028, 9.130845445000091 ], [ 92.708506707000083, 9.201605536000045 ], [ 92.750987175000034, 9.261216539000088 ], [ 92.811373272000083, 9.231169962000081 ] ] ], [ [ [ 92.585091711000075, 10.771268527000075 ], [ 92.595907641000053, 10.678363602000047 ], [ 92.539835118000042, 10.620669338000084 ], [ 92.574213073000067, 10.580623724000077 ], [ 92.53542331400007, 10.524860951000051 ], [ 92.384110723000049, 10.529328010000086 ], [ 92.417003414000078, 10.629058572000076 ], [ 92.379486138000061, 10.672121597000057 ], [ 92.376721443000065, 10.784019970000088 ], [ 92.41541966300008, 10.79886279100009 ], [ 92.42896569100003, 10.850816148000092 ], [ 92.527591740000048, 10.89546557400007 ], [ 92.585091711000075, 10.771268527000075 ] ] ], [ [ [ 92.676524285000028, 11.412543036000045 ], [ 92.699880405000044, 11.384426174000055 ], [ 92.67318769600007, 11.367336330000057 ], [ 92.593516472000033, 11.37836334800005 ], [ 92.637217644000032, 11.430161851000037 ], [ 92.635590040000068, 11.508042710000041 ], [ 92.696299675000034, 11.454413153000075 ], [ 92.676524285000028, 11.412543036000045 ] ] ], [ [ [ 92.266774936000047, 11.589544989000046 ], [ 92.285004102000073, 11.544012762000079 ], [ 92.252126498000052, 11.529242255000042 ], [ 92.217295769000032, 11.598089911000045 ], [ 92.266774936000047, 11.589544989000046 ] ] ], [ [ [ 93.042491082000083, 11.961167710000041 ], [ 93.066416863000029, 11.899115302000041 ], [ 92.947032097000033, 11.98969147300005 ], [ 93.014659050000034, 12.037176825000074 ], [ 93.042491082000083, 11.961167710000041 ] ] ], [ [ [ 93.103282097000033, 12.190497137000079 ], [ 93.103282097000033, 12.102036851000037 ], [ 93.094248894000032, 12.090969143000052 ], [ 93.059336785000028, 12.153550523000092 ], [ 93.073252800000034, 12.200832424000055 ], [ 93.103282097000033, 12.190497137000079 ] ] ], [ [ [ 92.733083530000044, 12.972479559000078 ], [ 92.724375847000033, 12.872381903000075 ], [ 92.682790561000047, 12.797308661000045 ], [ 92.682790561000047, 12.961737372000073 ], [ 92.70834394600007, 12.988674221000053 ], [ 92.733083530000044, 12.972479559000078 ] ] ], [ [ [ 93.052744988000029, 13.283880927000041 ], [ 93.07943769600007, 13.259833075000074 ], [ 93.03679446700005, 13.062160549000055 ], [ 92.979340040000068, 13.029527085000041 ], [ 92.964040561000047, 13.084662177000041 ], [ 92.937022332000083, 13.067084052000041 ], [ 92.952647332000083, 12.970770575000074 ], [ 92.905284050000034, 12.982245184000078 ], [ 92.87631269600007, 12.91665273600006 ], [ 92.924489780000044, 12.91437409100007 ], [ 92.964040561000047, 12.864935614000046 ], [ 92.990570509000065, 12.519232489000046 ], [ 92.936045769000032, 12.419907945000091 ], [ 92.895030144000032, 12.454657294000071 ], [ 92.901866082000083, 12.433539130000042 ], [ 92.846690300000034, 12.433539130000042 ], [ 92.915049675000034, 12.338364976000037 ], [ 92.879242384000065, 12.312974351000037 ], [ 92.89421634200005, 12.205023505000042 ], [ 92.83366946700005, 12.118231512000079 ], [ 92.75749759200005, 12.077460028000075 ], [ 92.79265384200005, 12.036322333000044 ], [ 92.740570509000065, 11.983628648000092 ], [ 92.737478061000047, 11.878648179000038 ], [ 92.761973504000082, 11.940130927000041 ], [ 92.799489780000044, 11.899115302000041 ], [ 92.760020379000082, 11.708685614000046 ], [ 92.683929884000065, 11.649888414000088 ], [ 92.696787957000083, 11.611232815000051 ], [ 92.73601321700005, 11.682440497000073 ], [ 92.761485222000033, 11.663641669000071 ], [ 92.716970248000052, 11.49445221600007 ], [ 92.625661655000044, 11.595404364000046 ], [ 92.648692254000082, 11.638495184000078 ], [ 92.603770379000082, 11.718898830000057 ], [ 92.563243035000028, 11.725572007000039 ], [ 92.566661004000082, 11.827134507000039 ], [ 92.524912957000083, 11.857489325000074 ], [ 92.570567254000082, 11.932603257000039 ], [ 92.617686394000032, 11.866400458000044 ], [ 92.640147332000083, 12.136135158000059 ], [ 92.681813998000052, 12.219631252000056 ], [ 92.720957879000082, 12.226548570000091 ], [ 92.72779381600003, 12.172837632000039 ], [ 92.79265384200005, 12.20766836100006 ], [ 92.758555535000028, 12.26593659100007 ], [ 92.79265384200005, 12.296372789000088 ], [ 92.73365319100003, 12.318060614000046 ], [ 92.717784050000034, 12.362494208000044 ], [ 92.721690300000034, 12.599432684000078 ], [ 92.783213738000029, 12.664984442000048 ], [ 92.74773196700005, 12.692694403000075 ], [ 92.737478061000047, 12.807196356000077 ], [ 92.800303582000083, 12.857814846000053 ], [ 92.834727410000028, 13.002020575000074 ], [ 92.80795332100007, 13.020086981000077 ], [ 92.854177280000044, 13.146063544000071 ], [ 92.847422722000033, 13.344916083000044 ], [ 92.949717644000032, 13.544623114000046 ], [ 93.011729363000029, 13.550767320000091 ], [ 93.011729363000029, 13.578111070000091 ], [ 93.066416863000029, 13.537095445000091 ], [ 93.078379754000082, 13.39712148600006 ], [ 93.004242384000065, 13.331040757000039 ], [ 92.977061394000032, 13.345363674000055 ], [ 93.052744988000029, 13.283880927000041 ] ] ], [ [ [ 93.039073113000029, 13.667466539000088 ], [ 93.052744988000029, 13.640204169000071 ], [ 92.990570509000065, 13.667466539000088 ], [ 93.033213738000029, 13.680243231000077 ], [ 93.039073113000029, 13.667466539000088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-JH", "NAME_1": "Jharkhand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.337063430332989, 24.140232245121979 ], [ 83.453955520231034, 24.361588243002984 ], [ 83.394217564089274, 24.474423733068818 ], [ 83.437832472790376, 24.52093252251791 ], [ 83.750164828643904, 24.508375149393601 ], [ 83.808869256910668, 24.54250743287173 ], [ 83.938267043089525, 24.548682766196691 ], [ 84.021672804656191, 24.639039008343559 ], [ 84.130503370833878, 24.469772854033977 ], [ 84.156858352331085, 24.510984809301476 ], [ 84.190241326975638, 24.476594143404952 ], [ 84.20295372883146, 24.521320095246153 ], [ 84.305376417687512, 24.530802721368502 ], [ 84.314368117394679, 24.443133653495295 ], [ 84.484486932425966, 24.302857978113195 ], [ 84.588253208418791, 24.394428616187668 ], [ 84.657602980093429, 24.375049953692383 ], [ 84.688195427676817, 24.430705471580211 ], [ 84.798472934678159, 24.496592921725949 ], [ 84.835163202120043, 24.437940172101264 ], [ 84.876297642122438, 24.436441555333488 ], [ 84.908853793567687, 24.353681748913573 ], [ 85.08062625499764, 24.393317573047568 ], [ 85.088997837080456, 24.341951198988625 ], [ 85.170956658722787, 24.430912177155221 ], [ 85.280614048099778, 24.487265326133866 ], [ 85.517085402169528, 24.499460964052219 ], [ 85.578373651023128, 24.557803657113084 ], [ 85.656818475192438, 24.557648627482138 ], [ 85.647310012447065, 24.648573310409915 ], [ 85.746011997355765, 24.770038764077697 ], [ 85.849158155724297, 24.764457709055989 ], [ 85.911583286139717, 24.698466905223484 ], [ 86.040154250018588, 24.749988308013997 ], [ 86.032919550396912, 24.712393703906287 ], [ 86.097721795824157, 24.690482895868911 ], [ 86.136685826389737, 24.569585882982096 ], [ 86.290474888405356, 24.551550808522961 ], [ 86.304634230185513, 24.500313626572563 ], [ 86.276418897614008, 24.434813748255863 ], [ 86.449741651755801, 24.343113918972165 ], [ 86.494390090130537, 24.479798082515458 ], [ 86.585650668943174, 24.561446844895954 ], [ 86.702336053266208, 24.547778429530865 ], [ 86.755356072824441, 24.58813772227802 ], [ 86.88992150287504, 24.531603705246766 ], [ 86.917826776184711, 24.612684027745672 ], [ 87.042263624966267, 24.588396103797152 ], [ 87.068101840727309, 24.778487861425674 ], [ 87.119158156423737, 24.851144924098946 ], [ 87.128149856130904, 25.001626695115874 ], [ 87.185510694562879, 25.061984767982665 ], [ 87.261371698145297, 25.063974311165509 ], [ 87.302506138147692, 25.183915310543114 ], [ 87.423428990355603, 25.188540351156234 ], [ 87.523474563300397, 25.32377757387593 ], [ 87.598715448359201, 25.266700955384749 ], [ 87.770177849627999, 25.236987006045467 ], [ 87.776275668587175, 25.096788845029153 ], [ 87.844075148449292, 25.041546739190665 ], [ 87.877458123993165, 24.938865667916218 ], [ 87.854203728819016, 24.789701646513777 ], [ 87.811002232167255, 24.785541693894061 ], [ 87.874770948820185, 24.726087957693096 ], [ 87.895338168821411, 24.661828315524303 ], [ 87.870120069785344, 24.634698188570553 ], [ 87.899989047856252, 24.62095225704104 ], [ 87.849242792320979, 24.579533596198473 ], [ 87.750850864875474, 24.593331204571427 ], [ 87.788988072241693, 24.569560045459696 ], [ 87.800460239748247, 24.500778712767385 ], [ 87.73379764234727, 24.334690660045908 ], [ 87.623726840920938, 24.260483302862099 ], [ 87.661553989924641, 24.186198432211881 ], [ 87.59406456932436, 24.17844696685404 ], [ 87.563265415266642, 24.112068590293177 ], [ 87.488541294145364, 24.132429103820073 ], [ 87.491228469318344, 24.055922145990223 ], [ 87.458155552136986, 24.01982615775097 ], [ 87.338059523128436, 24.001842760135276 ], [ 87.309017369156209, 24.056206365931018 ], [ 87.235533482384255, 24.040419216173859 ], [ 87.285142857257028, 23.940683702490844 ], [ 87.241217889294091, 23.850844225180822 ], [ 87.144686313822262, 23.878129380866199 ], [ 87.17031782400835, 23.823533230174405 ], [ 87.131870559178935, 23.803121038904806 ], [ 86.877209100119842, 23.913062649121969 ], [ 86.8150940289662, 23.836684882501288 ], [ 86.799797804724847, 23.72552887635652 ], [ 86.410467563727025, 23.616569118969664 ], [ 86.273008253827811, 23.453736681302757 ], [ 86.227946405202374, 23.443246364827871 ], [ 86.126453892333245, 23.492468166972287 ], [ 86.129141065707586, 23.578354397237604 ], [ 86.039120721244274, 23.607164008112477 ], [ 86.002223749126699, 23.585640773702721 ], [ 86.004807569713535, 23.514223945378774 ], [ 85.82549035029939, 23.479316515544724 ], [ 85.84151004405328, 23.430094713400308 ], [ 85.894840121974028, 23.416477973079964 ], [ 85.829831170971715, 23.260802721568325 ], [ 85.888432244652336, 23.163082586791916 ], [ 86.001913689864864, 23.165097968396481 ], [ 86.178026971067823, 23.005727851359211 ], [ 86.506482375261385, 22.988338731147508 ], [ 86.410467563727025, 22.935783800482 ], [ 86.399098749008033, 22.784966131781516 ], [ 86.586890904191819, 22.680683091851165 ], [ 86.61138553281603, 22.604253648387157 ], [ 86.740059848583087, 22.55820994693147 ], [ 86.759386835134308, 22.512088731110055 ], [ 86.716288690370732, 22.505577501000857 ], [ 86.718149042344407, 22.469403998395819 ], [ 86.78987592993019, 22.41563467000401 ], [ 86.803311802197868, 22.348377794299722 ], [ 86.85250776592062, 22.302024034481576 ], [ 86.77230594256514, 22.283911444757337 ], [ 86.761867302933638, 22.240606594418807 ], [ 86.686523065087329, 22.218023992813016 ], [ 86.497180617191702, 22.33468353871433 ], [ 86.366025831826619, 22.330058499000529 ], [ 86.28954471241849, 22.409045925529028 ], [ 86.039844190756753, 22.556737169484791 ], [ 85.937834913950098, 22.499169622779846 ], [ 85.993232050318852, 22.335200304450495 ], [ 85.9652234233223, 22.263189195125221 ], [ 85.974111770241961, 22.104594225343192 ], [ 85.916234165174558, 22.022118638864072 ], [ 85.834275344431546, 21.986126004311643 ], [ 85.780635207248963, 22.022196153229856 ], [ 85.792210728442342, 22.129088853068083 ], [ 85.679142694379777, 22.07586212793484 ], [ 85.410011835178011, 22.162006741517871 ], [ 85.324125604013375, 22.126685898735218 ], [ 85.220152622445539, 22.029146632910738 ], [ 85.097886184000174, 22.11345673294187 ], [ 84.986265089861945, 22.106661281992558 ], [ 85.10470747337115, 22.330833645356449 ], [ 85.065536737230616, 22.503200385089656 ], [ 84.908337029630161, 22.421965032959861 ], [ 84.800850050589304, 22.450180365531423 ], [ 84.516733026408019, 22.421422431499991 ], [ 84.497302687968613, 22.372200629355518 ], [ 84.420821567661164, 22.330988674088019 ], [ 84.310957472709163, 22.324012355985417 ], [ 84.178562452994754, 22.364371650531211 ], [ 84.067044711644087, 22.499583034829186 ], [ 83.970203077809742, 22.53934804927303 ], [ 84.056502720124399, 22.639316107852096 ], [ 84.190964797387437, 22.700940253489875 ], [ 84.228275180655032, 22.783079942285497 ], [ 84.336899042157029, 22.861886502560026 ], [ 84.331007927873543, 22.970303656688372 ], [ 84.151587354772573, 23.024357205020976 ], [ 84.11934126168984, 22.995676785355329 ], [ 84.028907505177187, 23.146106879528872 ], [ 84.028287387552837, 23.358393663336869 ], [ 84.004309522866151, 23.388495185404452 ], [ 83.96090131974006, 23.358703721699385 ], [ 83.94395145089868, 23.382914130382801 ], [ 83.952219680194048, 23.474924018029014 ], [ 84.014541456922643, 23.553988958923298 ], [ 83.986326125250457, 23.63902252936623 ], [ 83.923694289260027, 23.623493761128145 ], [ 83.916252883163963, 23.563755804986386 ], [ 83.761533645161535, 23.596518662905964 ], [ 83.720812616309161, 23.676152045480478 ], [ 83.711820916601994, 23.800976466990335 ], [ 83.540358514433876, 23.956729233767135 ], [ 83.517517531309011, 24.075223294119724 ], [ 83.337063430332989, 24.140232245121979 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-DL", "NAME_1": "Delhi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.200797154165286, 28.876790676048813 ], [ 77.227152133863854, 28.783592230896716 ], [ 77.313141716916675, 28.707266140220156 ], [ 77.337532992753381, 28.626185817721307 ], [ 77.297845492675322, 28.569393419170922 ], [ 77.327404413283034, 28.519706529033044 ], [ 77.241311477442707, 28.497459825110809 ], [ 77.239864535719732, 28.447540391875577 ], [ 77.19356245274497, 28.432605902840123 ], [ 77.003393181649983, 28.558903102696036 ], [ 76.87265180923356, 28.519422309092249 ], [ 76.833687778668036, 28.578927721237335 ], [ 76.94727257666807, 28.696155707020239 ], [ 76.943551873620038, 28.826276964510271 ], [ 77.067988723300914, 28.882087511129725 ], [ 77.200797154165286, 28.876790676048813 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-DN", "NAME_1": "Dadra and Nagar Haveli" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.065132276733152, 20.337337755033332 ], [ 73.074123977339639, 20.291733303149385 ], [ 73.123216587375566, 20.278142402150138 ], [ 73.037433709897755, 20.21204824553007 ], [ 73.041774529670761, 20.157736313879752 ], [ 73.086112908783662, 20.139236152326532 ], [ 73.114018182093389, 20.181662503521693 ], [ 73.170035435187174, 20.164531764829064 ], [ 73.142853631389926, 20.026607366936446 ], [ 73.103062779423681, 20.056243801010567 ], [ 72.99722944498285, 20.039810696106713 ], [ 72.93542443219178, 20.191868598257201 ], [ 72.888708937167678, 20.233054714203661 ], [ 73.065132276733152, 20.337337755033332 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-CH", "NAME_1": "Chandigarh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.773949823425596, 30.799024766779553 ], [ 76.814567498591146, 30.78912873040656 ], [ 76.827279901346344, 30.680711575378893 ], [ 76.780564406322242, 30.673451036436177 ], [ 76.698088819843122, 30.749260362275891 ], [ 76.703773227652277, 30.781403103470439 ], [ 76.773949823425596, 30.799024766779553 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-MP", "NAME_1": "Madhya Pradesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.326103142645877, 26.859807848353512 ], [ 78.563504672702436, 26.758496201738296 ], [ 78.710059035096378, 26.798881333806492 ], [ 78.861264275625786, 26.701264552716907 ], [ 78.926066521952407, 26.706225491013583 ], [ 79.040994907988591, 26.467997137757663 ], [ 79.061148715940476, 26.349373887994489 ], [ 78.938158807083255, 26.25459931080951 ], [ 78.95655561674829, 26.197806912259182 ], [ 78.919968702993231, 26.144657701491724 ], [ 78.953144972962093, 26.100319322378823 ], [ 78.808347608855058, 25.841549588442717 ], [ 78.739824660379725, 25.789795640756211 ], [ 78.747576124838247, 25.642724514424799 ], [ 78.546451451073551, 25.572573757073201 ], [ 78.370544875445603, 25.552678331539767 ], [ 78.330030552168239, 25.464776720569205 ], [ 78.251172315949589, 25.397829902328112 ], [ 78.366307407560782, 25.18600820651352 ], [ 78.324862909195872, 25.002169298374383 ], [ 78.169110142419129, 24.865459296409369 ], [ 78.224920689038527, 24.794119981551887 ], [ 78.272256300787603, 24.624440416092284 ], [ 78.223887160264212, 24.519227200175123 ], [ 78.350494419381903, 24.407967841242851 ], [ 78.329203728968878, 24.353681748913573 ], [ 78.356488884654254, 24.309162503546702 ], [ 78.423461542216387, 24.318257555142054 ], [ 78.489400669205509, 24.410784206725737 ], [ 78.809794548779394, 24.220227362902449 ], [ 78.972368604927169, 24.422566433494069 ], [ 78.978259719210655, 24.467421576544496 ], [ 78.916247999945199, 24.486800239039781 ], [ 78.922449171691881, 24.533309028488873 ], [ 78.871082797632994, 24.62573232728505 ], [ 78.74013471874224, 24.631003323044922 ], [ 78.719774204316025, 24.656402289234222 ], [ 78.723701612939067, 24.84871613224368 ], [ 78.648874139030283, 24.940726019889894 ], [ 78.573736606758985, 25.212156479737757 ], [ 78.513585240366524, 25.273367214225516 ], [ 78.582108188841801, 25.406744085870855 ], [ 78.652284783715743, 25.409457099465556 ], [ 78.727525668774547, 25.346386013004064 ], [ 78.748816359187572, 25.426148586787804 ], [ 78.726905552049573, 25.494464829688127 ], [ 78.781889276368986, 25.52402374939652 ], [ 78.80080284997149, 25.42687205719966 ], [ 78.835529412652249, 25.419740709466168 ], [ 78.891133253696694, 25.538105576810892 ], [ 78.91914187979387, 25.504593410957114 ], [ 78.909116652211708, 25.441393134185773 ], [ 78.959966262333126, 25.42653616041548 ], [ 78.935471632809595, 25.304063015495728 ], [ 78.867672153846797, 25.237736313979667 ], [ 78.87945437971581, 25.174794420526041 ], [ 78.983427362182965, 25.237374578773768 ], [ 78.998620232737494, 25.282694809817599 ], [ 79.047402785310283, 25.256934109321662 ], [ 79.011332634593373, 25.213990994189032 ], [ 79.024045038247891, 25.174639390895152 ], [ 79.109001091627022, 25.195025742843711 ], [ 79.125847608580216, 25.143840236837434 ], [ 79.171529575729323, 25.181667384941818 ], [ 79.279533318707649, 25.164278266528754 ], [ 79.261963332241976, 25.295923977409586 ], [ 79.311572707114692, 25.364550279571745 ], [ 79.289558547189188, 25.279542548449854 ], [ 79.310332472765367, 25.2438082954165 ], [ 79.44179731559359, 25.297267564546473 ], [ 79.339064569274399, 25.147405911153839 ], [ 79.347126092095436, 25.075213935574652 ], [ 79.391981236045183, 25.074128729956897 ], [ 79.399009230091849, 25.141333929717064 ], [ 79.479521111809845, 25.105548000739645 ], [ 79.553728468993597, 25.179031887511599 ], [ 79.801671990569901, 25.131928818859876 ], [ 79.866991000833991, 25.155829169180777 ], [ 79.833814731764448, 25.223602809721854 ], [ 79.852108188641978, 25.24783905682699 ], [ 80.08702924999983, 25.361630561301354 ], [ 80.124546339741755, 25.350959378572441 ], [ 80.198133579301214, 25.416433417568157 ], [ 80.275751581170482, 25.416485094411541 ], [ 80.322053664145244, 25.28827586483925 ], [ 80.399361606752734, 25.244040839413174 ], [ 80.421995884302589, 25.18598236719248 ], [ 80.269860466886996, 25.088598130998946 ], [ 80.297145624371012, 25.012065334747376 ], [ 80.407009719323071, 25.013357245040822 ], [ 80.406699660061236, 25.063767604691179 ], [ 80.478219842072008, 25.018344020859843 ], [ 80.513876580739577, 25.050460924532047 ], [ 80.458479445270143, 25.117046007567183 ], [ 80.546432733084146, 25.10753754302317 ], [ 80.56462283717417, 25.152444362916981 ], [ 80.638830194357922, 25.073431097966761 ], [ 80.717895135252263, 25.081983547202924 ], [ 80.666425409305134, 25.149705511799937 ], [ 80.777426384919693, 25.163089708123493 ], [ 80.835407341875282, 25.217737534759408 ], [ 80.858868442624498, 25.187558499225361 ], [ 80.761716750427638, 24.983307399816624 ], [ 81.004699334606585, 24.966435045341029 ], [ 81.098130323755413, 24.908609117117066 ], [ 81.181432733433837, 24.958140976724678 ], [ 81.174611444062862, 25.011083481917126 ], [ 81.235486280867121, 25.089114894936415 ], [ 81.243237746224963, 25.169523423866906 ], [ 81.360543247273029, 25.156966050742653 ], [ 81.369638298868381, 25.111619981277101 ], [ 81.418420852340432, 25.104126899236974 ], [ 81.469167107875705, 25.126942043940176 ], [ 81.425345492700274, 25.164820867988624 ], [ 81.536966586838503, 25.199754137143714 ], [ 81.577894322165207, 25.084541531166735 ], [ 81.707602166706579, 25.065292059880619 ], [ 81.752767369018841, 25.020488592774313 ], [ 81.842064243969673, 25.027077338148615 ], [ 81.87317345638985, 24.929977321895876 ], [ 81.956062453119671, 24.871014513009357 ], [ 82.122150506740468, 24.808098456178811 ], [ 82.208656853730758, 24.843109238800309 ], [ 82.208036737005784, 24.76430268032442 ], [ 82.263020461325198, 24.791174424859776 ], [ 82.265190870762012, 24.715442613385903 ], [ 82.323378534191988, 24.693764350244578 ], [ 82.307048781176263, 24.632011013397516 ], [ 82.409678175607269, 24.635628364557363 ], [ 82.427144810184814, 24.718569037231248 ], [ 82.59509321487991, 24.687744046550506 ], [ 82.708161248942474, 24.721514593923359 ], [ 82.818025343894476, 24.589403795049066 ], [ 82.734412875853479, 24.551628322888746 ], [ 82.764798618761233, 24.330039781011067 ], [ 82.732862583141639, 24.214129543943272 ], [ 82.673848098311055, 24.180333157249379 ], [ 82.800868767679447, 23.998716336289874 ], [ 82.779061314228215, 23.939004218569835 ], [ 82.670024041576198, 23.895570177022023 ], [ 82.643048944253337, 23.837072455229588 ], [ 82.498664992195586, 23.772399400112192 ], [ 82.077398715578227, 23.801364041517274 ], [ 81.936942173042837, 23.840663967068394 ], [ 81.808681268425744, 23.794749456821933 ], [ 81.681867302833723, 23.885131537390521 ], [ 81.619545526105128, 23.867561550025471 ], [ 81.685898065143533, 23.706511949067192 ], [ 81.59143354722039, 23.56117198350023 ], [ 81.628330520237284, 23.487817287937446 ], [ 81.759485304702991, 23.543524481769396 ], [ 81.927537063084969, 23.495413722765079 ], [ 82.034403923602156, 23.367617906141447 ], [ 82.113262159820806, 23.368832302069052 ], [ 82.186332635442739, 23.309430242711528 ], [ 82.156567010159335, 23.148303128286727 ], [ 82.129385207261464, 23.09649750375678 ], [ 82.070784132681524, 23.10034739801398 ], [ 81.946140578325014, 23.042960720261021 ], [ 81.940249464940791, 22.945834866485882 ], [ 81.779329055191681, 22.835815741003614 ], [ 81.766409946861529, 22.663991604528917 ], [ 81.669568313027185, 22.609292101049618 ], [ 81.642283156442488, 22.550846056100568 ], [ 81.417800733816762, 22.437493801197945 ], [ 81.358062778574322, 22.497955226852241 ], [ 81.234866164142147, 22.444495957722268 ], [ 81.199416131948908, 22.481754665945061 ], [ 81.164792922055653, 22.465295721720167 ], [ 81.122521599592119, 22.400519313815266 ], [ 81.118904250230912, 22.29460846590797 ], [ 81.030640904054451, 22.210660101982114 ], [ 81.016068150224896, 22.129476426695703 ], [ 80.986405877729055, 22.114541938559626 ], [ 81.002218865907878, 22.063123888556618 ], [ 80.977724237283667, 22.052840278556005 ], [ 80.934729445307596, 22.099943346308351 ], [ 80.903413527312409, 22.085293077213748 ], [ 80.835097284412086, 21.950986030480919 ], [ 80.821558059356903, 21.802778021688312 ], [ 80.739805943289639, 21.741463935312368 ], [ 80.721409132725285, 21.47321157525397 ], [ 80.679034458373508, 21.351151842383615 ], [ 80.625601026765935, 21.326476344807475 ], [ 80.48442101381869, 21.401820584452366 ], [ 80.402668897751369, 21.394327501512976 ], [ 80.402668897751369, 21.480213730878972 ], [ 80.310168084589407, 21.580233466301422 ], [ 80.18666141089534, 21.639480496028057 ], [ 80.005277133932566, 21.548323269103548 ], [ 79.849731072730776, 21.529409695501045 ], [ 79.758780552280655, 21.594082749719121 ], [ 79.565200637399471, 21.538814806358232 ], [ 79.486342401180821, 21.663484198237143 ], [ 79.258656040343965, 21.714256293093456 ], [ 79.215764602054719, 21.65457001379508 ], [ 78.950354445001608, 21.590362047570409 ], [ 78.917591587082029, 21.513906764785361 ], [ 78.799562615622165, 21.489308783373644 ], [ 78.626653272630392, 21.479412747000652 ], [ 78.497152133664031, 21.528531196357619 ], [ 78.427905714776898, 21.508480740293919 ], [ 78.413332960947344, 21.606304226059194 ], [ 78.365997349198267, 21.625424506136028 ], [ 78.192674595056474, 21.551113796164771 ], [ 78.085601027165637, 21.462411200416568 ], [ 77.910211216374478, 21.400580349203722 ], [ 77.79445600803831, 21.424558213890464 ], [ 77.702988722751343, 21.377920234131466 ], [ 77.568423292700743, 21.386421007423564 ], [ 77.519537388239826, 21.417659410153647 ], [ 77.49380252526629, 21.391201076768255 ], [ 77.431997511575844, 21.534215603267455 ], [ 77.57493452280994, 21.548323269103548 ], [ 77.548372836637043, 21.707435003722424 ], [ 77.474062127565105, 21.767302151073409 ], [ 77.332985467405365, 21.77445933722862 ], [ 77.218987258255311, 21.700846259247442 ], [ 77.115531039725681, 21.724048977578263 ], [ 76.917403598597161, 21.618086452827527 ], [ 76.8140507337543, 21.600128891834856 ], [ 76.777050408849277, 21.480110378091467 ], [ 76.637110630251357, 21.349213976044155 ], [ 76.653957147204551, 21.251312975013775 ], [ 76.625948521107318, 21.20883494697523 ], [ 76.498307733215256, 21.180361232884593 ], [ 76.41035444540131, 21.096722927321196 ], [ 76.28664106613229, 21.074812120183196 ], [ 76.166855096385575, 21.09431997298833 ], [ 76.10856408106747, 21.153127753143281 ], [ 76.142877231698833, 21.193125312483176 ], [ 76.082932569982063, 21.368075872803274 ], [ 75.877777133907557, 21.399779365325458 ], [ 75.521106398041809, 21.371770738328905 ], [ 75.209497511700761, 21.402879949849762 ], [ 75.129915805969631, 21.437684027795626 ], [ 75.011473423359746, 21.573489692195494 ], [ 74.86471235539085, 21.616122748066346 ], [ 74.708132766314066, 21.611161811568309 ], [ 74.521167434329584, 21.71756358499141 ], [ 74.48561404844952, 21.945973416240179 ], [ 74.407685988217736, 22.023048813951561 ], [ 74.249039340693002, 21.929772854433679 ], [ 74.128839959796267, 21.95176117593752 ], [ 74.140622185665279, 22.071469631318394 ], [ 74.066208123805836, 22.205621650218973 ], [ 74.059386835334124, 22.320627549721621 ], [ 74.084914991833386, 22.349411323074094 ], [ 74.136798129829799, 22.320911770561736 ], [ 74.196536085971559, 22.332693997330068 ], [ 74.245732048794991, 22.385610663201533 ], [ 74.098144159425374, 22.416926581196719 ], [ 74.025693801427735, 22.479610094030591 ], [ 74.033445265886257, 22.509634100833068 ], [ 74.151474237346122, 22.510305894401483 ], [ 74.272707147017172, 22.609653836255518 ], [ 74.368928664126543, 22.641176458926395 ], [ 74.45905236227668, 22.822457384001041 ], [ 74.426599561820296, 22.871627509302073 ], [ 74.359316847694345, 22.883797308798762 ], [ 74.323453404351085, 23.036061917423524 ], [ 74.387428826579026, 23.072597154335199 ], [ 74.476105584804884, 23.06236522117797 ], [ 74.719604933820619, 23.169438788169543 ], [ 74.658420037754524, 23.226463730716603 ], [ 74.536360304884113, 23.250906684296012 ], [ 74.521270786217769, 23.289741522753047 ], [ 74.631444940431606, 23.420353704859565 ], [ 74.853343539772482, 23.526962184756997 ], [ 74.934992303052297, 23.666411037839111 ], [ 74.90305626833208, 23.855262559319613 ], [ 74.968478631383675, 24.041297716216604 ], [ 74.900265741270914, 24.117391261997113 ], [ 74.869983352050042, 24.236117865447113 ], [ 74.730973749438931, 24.267769680226536 ], [ 74.76642378073285, 24.358720201576034 ], [ 74.846832309663341, 24.435511379346678 ], [ 74.711853469362097, 24.523852239888924 ], [ 74.784303827359736, 24.668132839159171 ], [ 74.781409946611689, 24.781743476480244 ], [ 74.881145461194023, 24.6648772241046 ], [ 74.956903111089673, 24.68301565225056 ], [ 74.979227329377693, 24.777454331751983 ], [ 74.832569615095622, 24.800527858873579 ], [ 74.817066685279258, 24.927496853197226 ], [ 74.995143671243397, 24.864115709272539 ], [ 75.095395948863938, 24.896594347251323 ], [ 75.093845656152098, 24.977778022537677 ], [ 75.133326450655147, 25.040022284001168 ], [ 75.319361606652819, 25.059555976127399 ], [ 75.291559686130597, 24.996278184990217 ], [ 75.320291782639629, 24.935248318555011 ], [ 75.251355422115012, 24.936540228848457 ], [ 75.24515425036833, 24.911425483499272 ], [ 75.405764601754925, 24.890212307452032 ], [ 75.297450798615444, 24.839388535752278 ], [ 75.186863234150906, 24.892899481725692 ], [ 75.210427686788307, 24.821043402930684 ], [ 75.173634068357558, 24.774663804690817 ], [ 75.192237582698226, 24.731901556711477 ], [ 75.448035923319196, 24.703143621780725 ], [ 75.747035759692494, 24.780089830081579 ], [ 75.813388298730956, 24.717664700565479 ], [ 75.813698357992791, 24.66389537217367 ], [ 75.869405551824741, 24.599377345787843 ], [ 75.873953078072077, 24.501088772029163 ], [ 75.837572869891972, 24.469979560508307 ], [ 75.765432570256905, 24.493363145093042 ], [ 75.734426710624177, 24.42396169747434 ], [ 75.75178999241416, 24.34226125735114 ], [ 75.803983188773088, 24.292522691269141 ], [ 75.74641564296752, 24.171884059901402 ], [ 75.80615359910928, 24.097702542038689 ], [ 75.729982538063666, 24.000680040151735 ], [ 75.683577102301399, 24.0246320664167 ], [ 75.621772088610953, 23.995228176339253 ], [ 75.529477980124625, 24.04258962740937 ], [ 75.48606977699859, 23.988923651805067 ], [ 75.501366001239944, 23.92174429046662 ], [ 75.578157179909908, 23.875726427432653 ], [ 75.597070754411732, 23.817900499208633 ], [ 75.692878858572442, 23.789142564277881 ], [ 75.728742302814965, 23.916240749810754 ], [ 75.792511021266591, 23.881875922335951 ], [ 75.986711052872749, 23.96489411117426 ], [ 75.984747349010888, 24.036853542756774 ], [ 76.116625603888451, 24.134031073375297 ], [ 76.123963658096329, 24.312004706551932 ], [ 76.173573032969045, 24.351485501055038 ], [ 76.214500767396487, 24.283763536458025 ], [ 76.456139764438547, 24.265030829109435 ], [ 76.511536899907981, 24.209091091280811 ], [ 76.552051223185344, 24.221390081986669 ], [ 76.581713494781923, 24.282445786843596 ], [ 76.660778435676207, 24.309601752219066 ], [ 76.66915001775908, 24.223586330744524 ], [ 76.766611770117038, 24.16033437802912 ], [ 76.862729934438903, 24.175036323067843 ], [ 76.894149204322275, 24.229658311282037 ], [ 76.820458611975312, 24.337300319953783 ], [ 76.806712681345118, 24.56540009194066 ], [ 76.875752394657241, 24.565296739153155 ], [ 76.922261184106333, 24.496076157788423 ], [ 77.035225865381335, 24.538399156196078 ], [ 77.060857374668046, 24.577854112277464 ], [ 77.014555291693341, 24.699164537213619 ], [ 76.956367629162742, 24.742598577862054 ], [ 76.848053826922524, 24.759703477233643 ], [ 76.782734815759113, 24.82675364826224 ], [ 76.881746860828912, 24.890522365814491 ], [ 76.847330357410044, 25.012375393109892 ], [ 76.999362421138812, 25.087719630956201 ], [ 77.200383742115946, 25.129344998273041 ], [ 77.328851353207369, 25.108622747741606 ], [ 77.382388136703128, 25.142910060850625 ], [ 77.398924595293806, 25.212233995002862 ], [ 77.357893508078917, 25.279930121178154 ], [ 77.358513624803891, 25.411860052899101 ], [ 77.281205682196457, 25.442659206956819 ], [ 77.181056757363422, 25.342536118746864 ], [ 77.095790642923816, 25.355377711811911 ], [ 76.922777948043858, 25.306388455462809 ], [ 76.652303500805886, 25.379174710244683 ], [ 76.551431104661731, 25.460125841534364 ], [ 76.521458774702637, 25.550172024419396 ], [ 76.478360629939061, 25.719799913035558 ], [ 76.512673780570481, 25.744630439343268 ], [ 76.523112421101303, 25.812145698365271 ], [ 76.641141391661847, 25.920433661284449 ], [ 76.740153435832383, 25.923224189244934 ], [ 76.907998487739974, 26.098588162513693 ], [ 77.082458124342907, 26.185275377556593 ], [ 77.124729445007858, 26.237856147543141 ], [ 77.209685500185628, 26.241964423319473 ], [ 77.33577599536585, 26.361104437919437 ], [ 77.41515099462265, 26.364850979389189 ], [ 77.441816033583052, 26.413271795856701 ], [ 77.514369745267516, 26.416372382179702 ], [ 77.715081007882191, 26.506030992336434 ], [ 77.831456332943389, 26.575768338537955 ], [ 77.819157342237531, 26.605068874928634 ], [ 77.902769810278471, 26.664031683815153 ], [ 78.079399855418956, 26.682919419895313 ], [ 78.101207309769507, 26.795108953915076 ], [ 78.151540155054079, 26.783197536836838 ], [ 78.169006788732304, 26.822161567402418 ], [ 78.25489301989694, 26.81732982031491 ], [ 78.326103142645877, 26.859807848353512 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-CT", "NAME_1": "Chhattisgarh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.088809848595588, 23.911047268416667 ], [ 83.221308221097502, 23.954222927546027 ], [ 83.337063430332989, 24.140232245121979 ], [ 83.510696241937978, 24.082897244212461 ], [ 83.540358514433876, 23.956729233767135 ], [ 83.711820916601994, 23.800976466990335 ], [ 83.720812616309161, 23.676152045480478 ], [ 83.761533645161535, 23.596518662905964 ], [ 83.916252883163963, 23.563755804986386 ], [ 83.923694289260027, 23.623493761128145 ], [ 83.986326125250457, 23.63902252936623 ], [ 84.014541456922643, 23.553988958923298 ], [ 83.952219680194048, 23.474924018029014 ], [ 83.94395145089868, 23.382914130382801 ], [ 83.96090131974006, 23.358703721699385 ], [ 84.004309522866151, 23.388495185404452 ], [ 84.028287387552837, 23.358393663336869 ], [ 84.028907505177187, 23.146106879528872 ], [ 84.089058871569648, 23.084818629775953 ], [ 84.115000441017514, 22.998854885144794 ], [ 84.145386183925211, 22.993351345388248 ], [ 84.151587354772573, 23.024357205020976 ], [ 84.318398878805169, 22.985393175354716 ], [ 84.352195266398383, 22.885580146406596 ], [ 84.228275180655032, 22.783079942285497 ], [ 84.190964797387437, 22.700940253489875 ], [ 83.988703241161602, 22.585934353087907 ], [ 83.968136021160433, 22.522553209163277 ], [ 83.996454705620124, 22.440542711576882 ], [ 83.95573367676775, 22.378711860364035 ], [ 83.84142540925518, 22.348584499874733 ], [ 83.623660923212981, 22.21326976188999 ], [ 83.55699832581206, 22.129424749852319 ], [ 83.571054314804769, 22.058369655834952 ], [ 83.522168410343852, 22.028371487454137 ], [ 83.51286665227417, 21.973051866350545 ], [ 83.570640903654748, 21.923054917850152 ], [ 83.564853143058087, 21.853575954966345 ], [ 83.511213006774824, 21.796240953157451 ], [ 83.466874627661923, 21.799987493727826 ], [ 83.327658318576482, 21.499153143802516 ], [ 83.384915806019592, 21.389444078481404 ], [ 83.379748163047225, 21.339188748461936 ], [ 83.279392530840596, 21.358799954054632 ], [ 83.198260533296946, 21.17255809248195 ], [ 83.143586867340048, 21.120623276742833 ], [ 83.069379510156239, 21.116773383384896 ], [ 82.964579706288362, 21.178526720231957 ], [ 82.656691522096025, 21.152610989205755 ], [ 82.562123651385377, 20.954457708756252 ], [ 82.463008254427336, 20.855393989540971 ], [ 82.41587934825327, 20.833819078287831 ], [ 82.400996535161937, 20.872421372748136 ], [ 82.345909458055019, 20.872447211169856 ], [ 82.367613559618064, 20.669255478957155 ], [ 82.340121698357677, 20.542493191107894 ], [ 82.420323520813781, 20.451620185023501 ], [ 82.415569288991435, 20.06696666148224 ], [ 82.611216262320625, 19.98813426458463 ], [ 82.695035435037255, 20.000536607178674 ], [ 82.684493442618248, 19.895400906526618 ], [ 82.712812127977315, 19.849563909746621 ], [ 82.592716098968765, 19.769103704872066 ], [ 82.579073521126077, 19.843156033324249 ], [ 82.475927361858226, 19.872379055349086 ], [ 82.361102328609547, 19.883902899699024 ], [ 82.304878370840129, 19.823312282835559 ], [ 82.217855259012936, 19.972993069074846 ], [ 82.164731886667198, 19.979426784818259 ], [ 82.090731235957719, 20.054693508298726 ], [ 82.021898228220607, 20.011672877900992 ], [ 81.944900343975632, 20.105568955942545 ], [ 81.86779910694321, 20.046657823000089 ], [ 81.817156203296122, 19.92433970771134 ], [ 81.960093215429538, 19.796337185512698 ], [ 82.036160922788326, 19.767088324166821 ], [ 82.031923455802826, 19.508447781439941 ], [ 82.167522413728364, 19.405224106906985 ], [ 82.13527631974631, 19.355769762564478 ], [ 82.171759881613184, 19.316857407943019 ], [ 82.145714960277132, 19.22531260829021 ], [ 82.159667595583016, 19.12283824349015 ], [ 82.224986606746484, 19.015196234818347 ], [ 82.224469841909638, 18.921946112822809 ], [ 82.166178826591533, 18.873835353818492 ], [ 82.138893670906157, 18.747253933122522 ], [ 82.098689405991252, 18.770611681084176 ], [ 82.069853956694715, 18.719762070962815 ], [ 81.903352491923954, 18.634082546272452 ], [ 81.947070754311824, 18.567600816024822 ], [ 81.733130324105161, 18.349577948463548 ], [ 81.542547641860153, 18.262451483848906 ], [ 81.474438103635521, 17.960015164368315 ], [ 81.444155715313968, 17.87973582574773 ], [ 81.397336866603098, 17.883146471332566 ], [ 81.394029575604407, 17.806691189446838 ], [ 81.245201450986144, 17.803693955911342 ], [ 81.157248163172142, 17.837903753755199 ], [ 81.029400668805806, 17.776977240107556 ], [ 80.985579055429014, 17.840461737719011 ], [ 80.938140089993112, 18.066158556272342 ], [ 80.959120721144302, 18.148246568224522 ], [ 80.873544549241501, 18.137575385495609 ], [ 80.82827599504111, 18.21529673925312 ], [ 80.799440545744574, 18.168736273859963 ], [ 80.742596470350804, 18.166979275573112 ], [ 80.732054477931797, 18.207261053954483 ], [ 80.774222446708507, 18.248524685166046 ], [ 80.665185174056489, 18.449985255714978 ], [ 80.502611117908714, 18.59995026279438 ], [ 80.40907677597238, 18.588865668016126 ], [ 80.372076451067301, 18.615556545398249 ], [ 80.352025995003657, 18.592276312701642 ], [ 80.261385532915995, 18.744515082005421 ], [ 80.349235467043115, 18.830918077107583 ], [ 80.271824171648177, 18.97943614336333 ], [ 80.366598748833155, 19.117386378778349 ], [ 80.405356072924405, 19.250401516117051 ], [ 80.575991651893162, 19.391969101792597 ], [ 80.617436151157392, 19.318562730285748 ], [ 80.679964634360374, 19.321534125399523 ], [ 80.720478956738418, 19.26156362616041 ], [ 80.830963169314771, 19.334246528154722 ], [ 80.805745070278761, 19.403337918310285 ], [ 80.869410435043505, 19.419357612064118 ], [ 80.897005649990717, 19.468605251730992 ], [ 80.838094517048262, 19.54312266727726 ], [ 80.701358676661584, 19.597512112394043 ], [ 80.667665642755196, 19.68900523520341 ], [ 80.574544711968827, 19.728770250546631 ], [ 80.537751091739437, 19.810909939342196 ], [ 80.500750766834415, 19.810909939342196 ], [ 80.478839959696359, 19.76646820744179 ], [ 80.408973423184875, 19.791996364840372 ], [ 80.486074660217355, 19.854989936036702 ], [ 80.427473585637415, 19.888243720371406 ], [ 80.444836867427455, 19.931212673026437 ], [ 80.531136508842792, 19.920696519029093 ], [ 80.557181431078163, 20.048337306921155 ], [ 80.530619744905266, 20.134869493232486 ], [ 80.418171827567733, 20.148873806281131 ], [ 80.424373000213734, 20.234088242978032 ], [ 80.622397088554749, 20.325891425049235 ], [ 80.634902784835617, 20.512339993096191 ], [ 80.614645624096227, 20.60618439429436 ], [ 80.494859654349511, 20.601171780053562 ], [ 80.572994419256986, 20.697574164316222 ], [ 80.552117140893301, 20.919317734925528 ], [ 80.471708611962811, 20.936267605565547 ], [ 80.435328403782762, 20.999235338340156 ], [ 80.459616326831963, 21.135867825040066 ], [ 80.678414340749214, 21.301981716183263 ], [ 80.739805943289639, 21.741463935312368 ], [ 80.821558059356903, 21.802778021688312 ], [ 80.835097284412086, 21.950986030480919 ], [ 80.903413527312409, 22.085293077213748 ], [ 80.934729445307596, 22.099943346308351 ], [ 80.977724237283667, 22.052840278556005 ], [ 81.002218865907878, 22.063123888556618 ], [ 80.986405877729055, 22.114541938559626 ], [ 81.016068150224896, 22.129476426695703 ], [ 81.030640904054451, 22.210660101982114 ], [ 81.118904250230912, 22.29460846590797 ], [ 81.122521599592119, 22.400519313815266 ], [ 81.164792922055653, 22.465295721720167 ], [ 81.199416131948908, 22.481754665945061 ], [ 81.234866164142147, 22.444495957722268 ], [ 81.358062778574322, 22.497955226852241 ], [ 81.417800733816762, 22.437493801197945 ], [ 81.642283156442488, 22.550846056100568 ], [ 81.669568313027185, 22.609292101049618 ], [ 81.766409946861529, 22.663991604528917 ], [ 81.779329055191681, 22.835815741003614 ], [ 81.940249464940791, 22.945834866485882 ], [ 81.946140578325014, 23.042960720261021 ], [ 82.141684197967322, 23.113214830400068 ], [ 82.189743280128255, 23.288733832400453 ], [ 82.124941033801633, 23.362191880750686 ], [ 82.034403923602156, 23.367617906141447 ], [ 81.927537063084969, 23.495413722765079 ], [ 81.759485304702991, 23.543524481769396 ], [ 81.628330520237284, 23.487817287937446 ], [ 81.59143354722039, 23.56117198350023 ], [ 81.685898065143533, 23.706511949067192 ], [ 81.619545526105128, 23.867561550025471 ], [ 81.681867302833723, 23.885131537390521 ], [ 81.808681268425744, 23.794749456821933 ], [ 81.936942173042837, 23.840663967068394 ], [ 82.077398715578227, 23.801364041517274 ], [ 82.498664992195586, 23.772399400112192 ], [ 82.643048944253337, 23.837072455229588 ], [ 82.670024041576198, 23.895570177022023 ], [ 82.768105909759868, 23.928953152565896 ], [ 82.800868767679447, 23.998716336289874 ], [ 82.936467727403681, 23.920168158433739 ], [ 83.088809848595588, 23.911047268416667 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IN-HR", "NAME_1": "Haryana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.810123326030634, 30.934261990398511 ], [ 76.847020298148209, 30.898682766096783 ], [ 76.905724724616334, 30.899302882821758 ], [ 77.001532830575627, 30.777346502738908 ], [ 77.125969680256503, 30.711381537328066 ], [ 77.150257603305704, 30.663994248735548 ], [ 77.134134555865046, 30.554362697780277 ], [ 77.208135206574468, 30.476951402385282 ], [ 77.241001418180872, 30.489327908356245 ], [ 77.380527784729452, 30.429254055430306 ], [ 77.452047966740224, 30.454782212828832 ], [ 77.434374628386365, 30.421218370131669 ], [ 77.513336215593824, 30.424939073179644 ], [ 77.587956983927654, 30.370446275275356 ], [ 77.570076939099408, 30.278229682054189 ], [ 77.229942660925019, 29.976646023295302 ], [ 77.180436638839751, 29.804253445140375 ], [ 77.087832472890284, 29.658500068423393 ], [ 77.099821405233627, 29.589021103740947 ], [ 77.058170201293706, 29.555483100364768 ], [ 77.065611607389712, 29.50367747673414 ], [ 77.120285272447347, 29.483782050301386 ], [ 77.065611607389712, 29.42484507893721 ], [ 77.148190545757075, 29.414923204142553 ], [ 77.133927850290036, 29.116362616441563 ], [ 77.219917434242177, 28.90603953739469 ], [ 77.155218539803741, 28.861649482337725 ], [ 77.067988723300914, 28.882087511129725 ], [ 76.954403924401561, 28.835475368893128 ], [ 76.94727257666807, 28.696155707020239 ], [ 76.833687778668036, 28.578927721237335 ], [ 76.87265180923356, 28.519422309092249 ], [ 77.003393181649983, 28.558903102696036 ], [ 77.19356245274497, 28.432605902840123 ], [ 77.239864535719732, 28.447540391875577 ], [ 77.241311477442707, 28.497459825110809 ], [ 77.327404413283034, 28.519706529033044 ], [ 77.377220492831441, 28.455343533177484 ], [ 77.407606235739138, 28.468986111020172 ], [ 77.428173455740364, 28.430668036500663 ], [ 77.465793898269737, 28.434285386761189 ], [ 77.468171014180939, 28.39669078175416 ], [ 77.497006464376796, 28.393254299546243 ], [ 77.466517367782274, 28.315222887426273 ], [ 77.538657668316716, 28.243056749369487 ], [ 77.497006464376796, 28.208924464992037 ], [ 77.538657668316716, 28.180993354159966 ], [ 77.49493940592879, 28.151847846500914 ], [ 77.503827752848508, 28.092859199192674 ], [ 77.469721306892779, 28.112728787203764 ], [ 77.468067661393434, 28.046815496837667 ], [ 77.529252556560209, 27.952506008545413 ], [ 77.46992801336711, 27.888065497424748 ], [ 77.23366336487237, 27.793290921139089 ], [ 77.205654737875818, 27.817501328923186 ], [ 77.040806918604403, 27.807295234187677 ], [ 77.032021926270829, 27.781353664739811 ], [ 77.077807245308065, 27.746162014065703 ], [ 76.910478957338, 27.670404365069373 ], [ 76.890118442911785, 27.689679673877833 ], [ 76.919367303358342, 27.707559718706023 ], [ 76.900867140905802, 27.744094957416337 ], [ 76.943551873620038, 27.865224514299882 ], [ 76.920400832132657, 28.051569729559333 ], [ 76.941484816071352, 28.135337226331899 ], [ 76.842679478375203, 28.233935859352414 ], [ 76.64682579857174, 28.085521144984853 ], [ 76.657987908615041, 28.016972358087855 ], [ 76.559492629281408, 27.971290391838068 ], [ 76.521768833065153, 28.038314724444945 ], [ 76.445597772019539, 28.064695543464552 ], [ 76.476500278864762, 28.084745999528252 ], [ 76.441567009709672, 28.122108058739911 ], [ 76.483011508973902, 28.117379666238605 ], [ 76.453452590164886, 28.162829088491605 ], [ 76.367979771049534, 28.156369534326529 ], [ 76.302557407997938, 28.199235134194055 ], [ 76.340694615364157, 28.139729722948346 ], [ 76.304417759072294, 28.11763804775768 ], [ 76.343795200787838, 28.085882880190752 ], [ 76.332943150006315, 28.051802273556063 ], [ 76.253774855425206, 28.080198473280916 ], [ 76.175226677569071, 28.072834581550694 ], [ 76.159620395864522, 28.044283352194952 ], [ 76.20912641794979, 27.827397366195498 ], [ 76.179050734303928, 27.807656969393577 ], [ 76.120346306936483, 27.851866157297309 ], [ 75.987537876072111, 27.847887070931563 ], [ 75.926352980006016, 27.937597357931679 ], [ 75.986090936147775, 27.970618598269652 ], [ 75.966247185659086, 28.001314399539865 ], [ 76.030015904110655, 28.102135117941316 ], [ 75.979269646776743, 28.084952704203943 ], [ 75.941442498672359, 28.117715562123465 ], [ 76.032496371909986, 28.187814643530942 ], [ 76.081382277270222, 28.174585475938954 ], [ 75.957772250788707, 28.343464057520237 ], [ 75.887078891977239, 28.403847967909371 ], [ 75.772873977252232, 28.432528388474338 ], [ 75.773080681927922, 28.469761257376092 ], [ 75.593556756039447, 28.642670600367921 ], [ 75.485966424211085, 28.926839301392647 ], [ 75.518729283029927, 28.988825182236326 ], [ 75.392948846212278, 29.105975654552822 ], [ 75.376309034834037, 29.170131943934052 ], [ 75.410002068740425, 29.20129283319767 ], [ 75.388091261602426, 29.257645982176314 ], [ 75.338171828367138, 29.234546617532374 ], [ 75.313780551631112, 29.298935451809655 ], [ 75.249701775716346, 29.256405747826989 ], [ 75.181592238391033, 29.273252264780183 ], [ 75.079582960685059, 29.236329454240888 ], [ 75.042065870943134, 29.28570628511693 ], [ 74.969615512945552, 29.284336860457699 ], [ 74.925483840306924, 29.366011461259916 ], [ 74.831226027059472, 29.403761094998515 ], [ 74.612841424292242, 29.332809352869333 ], [ 74.537083775295969, 29.441381537527889 ], [ 74.610050897231076, 29.487786974189476 ], [ 74.574807569713528, 29.589692898208682 ], [ 74.604779900571941, 29.755031642995903 ], [ 74.498326451204719, 29.736247259703248 ], [ 74.459362420639195, 29.76309316671626 ], [ 74.481893345401545, 29.823502916426435 ], [ 74.547005650090625, 29.86081329969403 ], [ 74.516516555294743, 29.947190457273791 ], [ 74.650668573296002, 29.914065864148313 ], [ 74.710716586900958, 29.96837779399999 ], [ 74.816239862079954, 29.986309516570941 ], [ 74.918662550935949, 29.948379014779675 ], [ 74.995660435180923, 29.872983100089982 ], [ 75.102113885447409, 29.92380687089036 ], [ 75.100253534373053, 29.826913560212631 ], [ 75.144798618161644, 29.793866482352257 ], [ 75.193167758685092, 29.832675483286891 ], [ 75.238229608209792, 29.748778795305157 ], [ 75.172290480321351, 29.684932563387065 ], [ 75.234612257949323, 29.561787624898955 ], [ 75.301791620187089, 29.580494492926505 ], [ 75.296727329102907, 29.633953762056478 ], [ 75.452480095879707, 29.809214382537732 ], [ 75.698563267280917, 29.768984280100426 ], [ 75.796955193827102, 29.830195013688922 ], [ 75.886665479927899, 29.749243883298561 ], [ 76.043865186629034, 29.758158066841304 ], [ 76.225559522853644, 29.869081528989341 ], [ 76.176983676755242, 29.945536810875126 ], [ 76.216567824045796, 30.075192979472433 ], [ 76.252741326650892, 30.08857717489667 ], [ 76.205819126051779, 30.113045965998538 ], [ 76.213880649772136, 30.137488919577947 ], [ 76.373457473283736, 30.116973375520843 ], [ 76.409320916626939, 30.18588389672442 ], [ 76.454589470827386, 30.101625475335425 ], [ 76.53138065039667, 30.08397797270527 ], [ 76.624811638646179, 30.142837428804285 ], [ 76.641451450923682, 30.197976182754587 ], [ 76.590808547276595, 30.246681220062214 ], [ 76.545333285702554, 30.217794093922294 ], [ 76.539132114855192, 30.245130927350374 ], [ 76.729714797100144, 30.349594835333392 ], [ 76.727647739551514, 30.420055650148129 ], [ 76.829450310783159, 30.427083645094115 ], [ 76.869241163648724, 30.362358914032654 ], [ 76.900350376068957, 30.372022407308236 ], [ 76.901487257630777, 30.598804430580003 ], [ 76.827279901346344, 30.680711575378893 ], [ 76.811673617843155, 30.777656562000743 ], [ 76.835238072279196, 30.835870062953006 ], [ 76.768162061929559, 30.907596951438165 ], [ 76.810123326030634, 30.934261990398511 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/indonesia.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/indonesia.geojson new file mode 100644 index 000000000000..9dcbb2f07f8d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/indonesia.geojson @@ -0,0 +1,39 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "ID-KI", "NAME_1": "Kalimantan Timur" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.703607903955245, 4.163414542001791 ], [ 117.70360790400008, 4.163414542000055 ], [ 117.738071462000107, 4.157241908000032 ], [ 117.783572247000052, 4.157241908000032 ], [ 117.852557309000133, 4.157241908000032 ], [ 117.907039027605904, 4.156683015004099 ], [ 117.912119988000086, 4.144924221000053 ], [ 117.918223504000025, 4.100043036000045 ], [ 117.93482506600003, 4.059881903000075 ], [ 117.901377800000091, 4.036688544000071 ], [ 117.887054884, 4.031927802000041 ], [ 117.872569207000083, 4.03156159100007 ], [ 117.838552280000044, 4.040187893000052 ], [ 117.819102410000028, 4.06867096600007 ], [ 117.762705925000091, 4.100734768000052 ], [ 117.739431186000047, 4.132310289000088 ], [ 117.703607903955245, 4.163414542001791 ] ] ], [ [ [ 116.52222050000006, 4.396787008000018 ], [ 116.533279257000061, 4.395365906000038 ], [ 116.576894166000102, 4.332010600000018 ], [ 116.590226685000118, 4.33113210100008 ], [ 116.615548137000019, 4.344077047000098 ], [ 116.641799765000087, 4.333870952000026 ], [ 116.661126750000165, 4.334387716000066 ], [ 116.680040324000117, 4.339917094000072 ], [ 116.711666300000104, 4.366788838000062 ], [ 116.729442993000021, 4.364463399000044 ], [ 116.766133261000107, 4.338573507000092 ], [ 116.804477173, 4.330072733000094 ], [ 116.883025351000072, 4.344903870000024 ], [ 116.924263143000076, 4.34495554700004 ], [ 116.980590454000094, 4.329555970000058 ], [ 117.164661906000106, 4.333147481000125 ], [ 117.174377075000052, 4.338418477000062 ], [ 117.190396769000074, 4.353017069000117 ], [ 117.202695761000086, 4.35606597900005 ], [ 117.217165162000072, 4.353430481000132 ], [ 117.224813273000052, 4.346583354000074 ], [ 117.230601034000074, 4.337178243000025 ], [ 117.238662558000101, 4.326868795000024 ], [ 117.27555953000001, 4.300978903000086 ], [ 117.356588176000059, 4.259508566000108 ], [ 117.412915487000134, 4.200080668000069 ], [ 117.436479940000027, 4.185611267000041 ], [ 117.464178508000089, 4.177911479000045 ], [ 117.498388306000038, 4.172614644000106 ], [ 117.514614705000156, 4.171942851000026 ], [ 117.542209920000062, 4.173829040000044 ], [ 117.558332968000059, 4.167653707000056 ], [ 117.567149285000028, 4.159654039000088 ], [ 117.567067905000044, 4.15961334800005 ], [ 117.555511915000011, 4.151841539000088 ], [ 117.528330925000091, 4.127508856000077 ], [ 117.518565300000091, 4.122259833000044 ], [ 117.507823113000086, 4.123480536000045 ], [ 117.373057488000086, 4.169745184000078 ], [ 117.373871290000011, 4.165269273000092 ], [ 117.377126498000052, 4.154364325000074 ], [ 117.379242384, 4.149237372000073 ], [ 117.386892123000052, 4.142482815000051 ], [ 117.39616946700005, 4.139634507000039 ], [ 117.40398196700005, 4.13548411700009 ], [ 117.407399936000047, 4.124986070000091 ], [ 117.403086785000028, 4.120347398000092 ], [ 117.396332227000016, 4.10968659100007 ], [ 117.395843946000014, 4.098944403000075 ], [ 117.410411004000025, 4.093939520000049 ], [ 117.43132571700005, 4.092596747000073 ], [ 117.450694207000083, 4.088120835000041 ], [ 117.46648196700005, 4.079901434000078 ], [ 117.475596550000091, 4.067328192000048 ], [ 117.468272332000083, 4.052923895000049 ], [ 117.468272332000083, 4.043524481000077 ], [ 117.479014519000089, 4.03937409100007 ], [ 117.488942905000044, 4.042954820000091 ], [ 117.49968509200005, 4.049790757000039 ], [ 117.510427280000044, 4.053941148000092 ], [ 117.520274285000028, 4.049302476000094 ], [ 117.613780144000089, 3.957098700000074 ], [ 117.627940300000091, 3.947088934000078 ], [ 117.661468946000014, 3.94017161700009 ], [ 117.678477410000028, 3.932440497000073 ], [ 117.689300977000016, 3.921454169000071 ], [ 117.688487175000091, 3.909002997000073 ], [ 117.672699415000011, 3.897772528000075 ], [ 117.650889519000089, 3.895209052000041 ], [ 117.628103061000047, 3.900376695000091 ], [ 117.590668165000011, 3.92609284100007 ], [ 117.570078972000033, 3.933172919000071 ], [ 117.523448113000086, 3.936346747000073 ], [ 117.523448113000086, 3.929510809000078 ], [ 117.552093946000014, 3.927150783000059 ], [ 117.579437696000014, 3.914536851000094 ], [ 117.603770379000025, 3.896714585000041 ], [ 117.623301629000025, 3.878607489000046 ], [ 117.636729363000086, 3.872870184000078 ], [ 117.652354363000086, 3.875148830000057 ], [ 117.668223504000025, 3.880031643000052 ], [ 117.681651238000086, 3.88226959800005 ], [ 117.689707879000025, 3.878810940000051 ], [ 117.719086134, 3.860581773000092 ], [ 117.725108269000089, 3.850897528000075 ], [ 117.777191602000016, 3.79913971600007 ], [ 117.781993035000028, 3.787339585000041 ], [ 117.78288821700005, 3.779038804000038 ], [ 117.776703321000014, 3.774115302000041 ], [ 117.760508660000028, 3.772406317000048 ], [ 117.702159050000091, 3.778713283000059 ], [ 117.714854363000086, 3.763576565000051 ], [ 117.734222852000016, 3.752142645000049 ], [ 117.777191602000016, 3.73773834800005 ], [ 117.817881707000083, 3.730047919000071 ], [ 117.829274936000047, 3.721584377000056 ], [ 117.826182488000086, 3.703599351000094 ], [ 117.817230665000011, 3.694810289000088 ], [ 117.787933790000011, 3.678656317000048 ], [ 117.777191602000016, 3.668850002000056 ], [ 117.761078321000014, 3.643744208000044 ], [ 117.748545769000089, 3.636948960000041 ], [ 117.650645379000025, 3.627875067000048 ], [ 117.628672722000033, 3.632066148000092 ], [ 117.587657097000033, 3.650864976000094 ], [ 117.568369988000086, 3.655096747000073 ], [ 117.546641472000033, 3.664007880000042 ], [ 117.533702019000089, 3.684759833000044 ], [ 117.524261915000011, 3.708889065000051 ], [ 117.508555535000028, 3.735907294000071 ], [ 117.505381707000083, 3.746771552000041 ], [ 117.50359134200005, 3.768744208000044 ], [ 117.499196811000047, 3.775580145000049 ], [ 117.488942905000044, 3.782171942000048 ], [ 117.468760613000086, 3.792303778000075 ], [ 117.479991082000083, 3.771185614000046 ], [ 117.482432488000086, 3.764960028000075 ], [ 117.491953972000033, 3.707098700000074 ], [ 117.499766472000033, 3.692694403000075 ], [ 117.51335696700005, 3.674872137000079 ], [ 117.523448113000086, 3.650213934000078 ], [ 117.524261915000011, 3.625433661000045 ], [ 117.509776238000086, 3.607367255000042 ], [ 117.494395379000025, 3.608343817000048 ], [ 117.451019727000016, 3.629299221000053 ], [ 117.43091881600003, 3.634670315000051 ], [ 117.302256707000083, 3.633246161000045 ], [ 117.219493035000028, 3.647365627000056 ], [ 117.090505405000044, 3.645819403000075 ], [ 117.055674675000091, 3.631903387000079 ], [ 117.03052819100003, 3.59438711100006 ], [ 117.05396569100003, 3.608303127000056 ], [ 117.083181186000047, 3.61664459800005 ], [ 117.114268425000091, 3.620591539000088 ], [ 117.169281446000014, 3.621039130000042 ], [ 117.199229363000086, 3.616278387000079 ], [ 117.216563347000033, 3.603013414000088 ], [ 117.205332879000025, 3.576971747000073 ], [ 117.199961785000028, 3.55499909100007 ], [ 117.210297071000014, 3.528876044000071 ], [ 117.227549675000091, 3.505194403000075 ], [ 117.242849155000044, 3.490668036000045 ], [ 117.253103061000047, 3.486070054000038 ], [ 117.29070071700005, 3.477036851000094 ], [ 117.304535352000016, 3.46938711100006 ], [ 117.312022332000083, 3.461127020000049 ], [ 117.32545006600003, 3.436021226000094 ], [ 117.34498131600003, 3.446519273000092 ], [ 117.374359571000014, 3.448635158000059 ], [ 117.404958530000044, 3.444484768000052 ], [ 117.427744988000086, 3.436021226000094 ], [ 117.435720248000052, 3.43431224200009 ], [ 117.442149285000028, 3.435695705000057 ], [ 117.44654381600003, 3.434759833000044 ], [ 117.448252800000091, 3.42609284100007 ], [ 117.448252800000091, 3.398504950000074 ], [ 117.44654381600003, 3.385199286000045 ], [ 117.441905144000089, 3.373032945000091 ], [ 117.434418165000011, 3.364325262000079 ], [ 117.424327019000089, 3.360988674000055 ], [ 117.414398634, 3.35618724200009 ], [ 117.40552819100003, 3.345607815000051 ], [ 117.393728061000047, 3.326239325000074 ], [ 117.386892123000052, 3.319891669000071 ], [ 117.377777540000011, 3.31313711100006 ], [ 117.369639519000089, 3.305243231000077 ], [ 117.366384311000047, 3.295803127000056 ], [ 117.363129102000016, 3.254868882000039 ], [ 117.359548373000052, 3.244289455000057 ], [ 117.344737175000091, 3.230454820000091 ], [ 117.33366946700005, 3.232123114000046 ], [ 117.31177819100003, 3.251695054000038 ], [ 117.281586134, 3.263251044000071 ], [ 117.273773634, 3.264797268000052 ], [ 117.264659050000091, 3.261786200000074 ], [ 117.264414910000028, 3.254339911000045 ], [ 117.267832879000025, 3.244533596000053 ], [ 117.270030144000089, 3.234320380000042 ], [ 117.281504754000025, 3.223089911000045 ], [ 117.352712436000047, 3.182806708000044 ], [ 117.370290561000047, 3.17719147300005 ], [ 117.38990319100003, 3.175197658000059 ], [ 117.43091881600003, 3.175360419000071 ], [ 117.453949415000011, 3.171210028000075 ], [ 117.457774285000028, 3.160345770000049 ], [ 117.454112175000091, 3.14516836100006 ], [ 117.455088738000086, 3.128159898000092 ], [ 117.48170006600003, 3.101263739000046 ], [ 117.520030144000089, 3.098456122000073 ], [ 117.56373131600003, 3.10187409100007 ], [ 117.605804884, 3.093410549000055 ], [ 117.617198113000086, 3.085882880000042 ], [ 117.620860222000033, 3.079494533000059 ], [ 117.623220248000052, 3.072455145000049 ], [ 117.63013756600003, 3.062974351000094 ], [ 117.634287957000083, 3.052394924000055 ], [ 117.629405144000089, 3.042385158000059 ], [ 117.619639519000089, 3.034898179000038 ], [ 117.609222852000016, 3.03196849200009 ], [ 117.60084069100003, 3.024969794000071 ], [ 117.575043165000011, 2.992865302000041 ], [ 117.564952019000089, 2.983547268000052 ], [ 117.580332879000025, 2.978989976000094 ], [ 117.601573113000086, 2.980658270000049 ], [ 117.622406446000014, 2.986476955000057 ], [ 117.636729363000086, 2.994126695000091 ], [ 117.655609571000014, 2.997381903000075 ], [ 117.67546634200005, 2.98578522300005 ], [ 117.687998894000089, 2.970648505000042 ], [ 117.685069207000083, 2.963080145000049 ], [ 117.667328321000014, 2.959540106000077 ], [ 117.63054446700005, 2.942328192000048 ], [ 117.612803582000083, 2.936428127000056 ], [ 117.543793165000011, 2.928941148000092 ], [ 117.543793165000011, 2.922105210000041 ], [ 117.567393425000091, 2.922552802000041 ], [ 117.640147332000083, 2.90851471600007 ], [ 117.736338738000086, 2.901597398000092 ], [ 117.725108269000089, 2.886542059000078 ], [ 117.704274936000047, 2.878973700000074 ], [ 117.68132571700005, 2.873277085000041 ], [ 117.664317254000025, 2.864081122000073 ], [ 117.627126498000052, 2.836981512000079 ], [ 117.619639519000089, 2.825506903000075 ], [ 117.633311394000089, 2.812241929000038 ], [ 117.67351321700005, 2.799261786000045 ], [ 117.714366082000083, 2.794094143000052 ], [ 117.752207879000025, 2.78461334800005 ], [ 117.784027540000011, 2.758246161000045 ], [ 117.792002800000091, 2.742336330000057 ], [ 117.796234571000014, 2.723211981000077 ], [ 117.800791863000086, 2.657171942000048 ], [ 117.807383660000028, 2.638006903000075 ], [ 117.816254102000016, 2.621527411000045 ], [ 117.826182488000086, 2.607407945000091 ], [ 117.867035352000016, 2.572699286000045 ], [ 117.881683790000011, 2.55141836100006 ], [ 117.979014519000089, 2.466538804000038 ], [ 117.987803582000083, 2.456366278000075 ], [ 117.99968509200005, 2.434271552000041 ], [ 118.006846550000091, 2.425523179000038 ], [ 118.024099155000044, 2.382025458000044 ], [ 118.037119988000086, 2.363959052000041 ], [ 118.044688347000033, 2.381537177000041 ], [ 118.063487175000091, 2.366929429000038 ], [ 118.082204623000052, 2.337469794000071 ], [ 118.095876498000052, 2.30414459800005 ], [ 118.099375847000033, 2.277818101000094 ], [ 118.09148196700005, 2.26203034100007 ], [ 118.057790561000047, 2.219956773000092 ], [ 118.044688347000033, 2.208929755000042 ], [ 117.975596550000091, 2.192084052000041 ], [ 117.955414259, 2.18227773600006 ], [ 117.941254102000016, 2.163153387000079 ], [ 117.939219597000033, 2.143377997000073 ], [ 117.93523196700005, 2.124172268000052 ], [ 117.915049675000091, 2.106512762000079 ], [ 117.914724155000044, 2.093491929000038 ], [ 117.882823113000086, 2.095445054000038 ], [ 117.826182488000086, 2.106512762000079 ], [ 117.844248894000089, 2.08820221600007 ], [ 117.88209069100003, 2.068060614000046 ], [ 117.900401238000086, 2.049994208000044 ], [ 117.859873894000089, 2.038275458000044 ], [ 117.82545006600003, 2.036281643000052 ], [ 117.791514519000089, 2.038275458000044 ], [ 117.754649285000028, 2.04633209800005 ], [ 117.740733269000089, 2.044989325000074 ], [ 117.750010613000086, 2.031439520000049 ], [ 117.764659050000091, 2.024969794000071 ], [ 117.802907748000052, 2.021307684000078 ], [ 117.818858269000089, 2.017157294000071 ], [ 117.831797722000033, 2.005682684000078 ], [ 117.844004754000025, 1.991441148000092 ], [ 117.855642123000052, 1.983384507000039 ], [ 117.867198113000086, 1.990464585000041 ], [ 117.873383009, 1.990464585000041 ], [ 117.874766472000033, 1.947495835000041 ], [ 117.872243686000047, 1.924709377000056 ], [ 117.863536004000025, 1.914740302000041 ], [ 117.85670006600003, 1.909369208000044 ], [ 117.857269727000016, 1.897650458000044 ], [ 117.86255944100003, 1.885931708000044 ], [ 117.87037194100003, 1.880601304000038 ], [ 117.881032748000052, 1.882066148000092 ], [ 117.883962436000047, 1.884100653000075 ], [ 117.88599694100003, 1.882554429000038 ], [ 117.893890821000014, 1.87376536700009 ], [ 117.903330925000091, 1.857407945000091 ], [ 117.911875847000033, 1.836859442000048 ], [ 117.924082879000025, 1.819159247000073 ], [ 117.944834832000083, 1.811712958000044 ], [ 117.965342644000089, 1.808417059000078 ], [ 117.980967644000089, 1.800767320000091 ], [ 117.994883660000028, 1.791693427000041 ], [ 118.010590040000011, 1.784369208000044 ], [ 118.03484134200005, 1.784898179000038 ], [ 118.04615319100003, 1.783107815000051 ], [ 118.050954623000052, 1.774481512000079 ], [ 118.049327019000089, 1.76203034100007 ], [ 118.047129754000025, 1.75226471600007 ], [ 118.047862175000091, 1.743557033000059 ], [ 118.054698113000086, 1.733465887000079 ], [ 118.126719597000033, 1.654689846000053 ], [ 118.185313347000033, 1.631781317000048 ], [ 118.271250847000033, 1.562730210000041 ], [ 118.311289910000028, 1.541978257000039 ], [ 118.35279381600003, 1.533596096000053 ], [ 118.369802280000044, 1.522772528000075 ], [ 118.39421634200005, 1.497015692000048 ], [ 118.416840040000011, 1.491848049000055 ], [ 118.42505944100003, 1.485744533000059 ], [ 118.418467644000089, 1.472845770000049 ], [ 118.403656446000014, 1.461737372000073 ], [ 118.39966881600003, 1.454413153000075 ], [ 118.404795769000089, 1.445217190000051 ], [ 118.414724155000044, 1.44086334800005 ], [ 118.438243035000028, 1.440578518000052 ], [ 118.44890384200005, 1.435532945000091 ], [ 118.451019727000016, 1.42845286700009 ], [ 118.453949415000011, 1.403225002000056 ], [ 118.45630944100003, 1.394598700000074 ], [ 118.463145379000025, 1.394598700000074 ], [ 118.47624759200005, 1.402044989000046 ], [ 118.492198113000086, 1.395697333000044 ], [ 118.523936394000089, 1.374172268000052 ], [ 118.535980665000011, 1.370672919000071 ], [ 118.582286004000025, 1.367336330000057 ], [ 118.613291863000086, 1.351223049000055 ], [ 118.675140821000014, 1.280422268000052 ], [ 118.712901238000086, 1.26430898600006 ], [ 118.729258660000028, 1.253851630000042 ], [ 118.754161004000025, 1.229559637000079 ], [ 118.776377800000091, 1.201971747000073 ], [ 118.784678582000083, 1.181708075000074 ], [ 118.78052819100003, 1.177313544000071 ], [ 118.773610873000052, 1.175726630000042 ], [ 118.767100457000083, 1.172674872000073 ], [ 118.764170769000089, 1.164007880000042 ], [ 118.797862175000091, 1.149969794000071 ], [ 118.808929884, 1.139715887000079 ], [ 118.826182488000086, 1.119696356000077 ], [ 118.856944207000083, 1.058172919000071 ], [ 118.870860222000033, 1.056301174000055 ], [ 118.87818444100003, 1.055975653000075 ], [ 118.887705925000091, 1.058172919000071 ], [ 118.894379102000016, 1.06281159100007 ], [ 118.906504754000025, 1.075384833000044 ], [ 118.915537957000083, 1.078599351000094 ], [ 118.933929884, 1.076076565000051 ], [ 118.985199415000011, 1.057562567000048 ], [ 119.000987175000091, 1.047919012000079 ], [ 119.00554446700005, 1.037583726000094 ], [ 119.00318444100003, 1.026312567000048 ], [ 118.999034050000091, 1.014634507000039 ], [ 118.997569207000083, 1.003607489000046 ], [ 119.000661655000044, 0.999090887000079 ], [ 119.006358269000089, 0.99485911700009 ], [ 119.011241082000083, 0.988226630000042 ], [ 119.011729363000086, 0.976263739000046 ], [ 119.002940300000091, 0.962469794000071 ], [ 118.970550977000016, 0.935736395000049 ], [ 118.956553582000083, 0.912665106000077 ], [ 118.939952019000089, 0.902085679000038 ], [ 118.865000847000033, 0.868841864000046 ], [ 118.851328972000033, 0.856919664000088 ], [ 118.840993686000047, 0.829901434000078 ], [ 118.828379754000025, 0.818101304000038 ], [ 118.812754754000025, 0.809149481000077 ], [ 118.798187696000014, 0.804917710000041 ], [ 118.786306186000047, 0.804592190000051 ], [ 118.774261915000011, 0.805731512000079 ], [ 118.763194207000083, 0.809027411000045 ], [ 118.741709832000083, 0.822170315000051 ], [ 118.717539910000028, 0.828273830000057 ], [ 118.705821160000028, 0.835923570000091 ], [ 118.686045769000089, 0.846136786000045 ], [ 118.662771030000044, 0.846380927000041 ], [ 118.639414910000028, 0.840521552000041 ], [ 118.583181186000047, 0.813666083000044 ], [ 118.57545006600003, 0.808335679000038 ], [ 118.565277540000011, 0.804022528000075 ], [ 118.554698113000086, 0.807928778000075 ], [ 118.543955925000091, 0.814520575000074 ], [ 118.534190300000091, 0.818019924000055 ], [ 118.514170769000089, 0.822007554000038 ], [ 118.473480665000011, 0.838283596000053 ], [ 118.428396030000044, 0.839992580000057 ], [ 118.418711785000028, 0.837225653000075 ], [ 118.410980665000011, 0.821844794000071 ], [ 118.402354363000086, 0.813950914000088 ], [ 118.391937696000014, 0.807603257000039 ], [ 118.383962436000047, 0.804917710000041 ], [ 118.367198113000086, 0.810370184000078 ], [ 118.356455925000091, 0.823228257000039 ], [ 118.346853061000047, 0.839016018000052 ], [ 118.332774285000028, 0.852728583000044 ], [ 118.316905144000089, 0.85883209800005 ], [ 118.187836134, 0.875230210000041 ], [ 118.129079623000052, 0.893011786000045 ], [ 118.096690300000091, 0.908636786000045 ], [ 118.069183790000011, 0.928778387000079 ], [ 118.044688347000033, 0.955145575000074 ], [ 118.028493686000047, 0.984523830000057 ], [ 118.00554446700005, 1.051011460000041 ], [ 117.98951256600003, 1.078599351000094 ], [ 117.97584069100003, 1.088120835000041 ], [ 117.93677819100003, 1.10814036700009 ], [ 117.928721550000091, 1.116603908000059 ], [ 117.924001498000052, 1.124986070000091 ], [ 117.91334069100003, 1.124945380000042 ], [ 117.90162194100003, 1.11985911700009 ], [ 117.893890821000014, 1.113470770000049 ], [ 117.890961134, 1.104193427000041 ], [ 117.892832879000025, 1.094875393000052 ], [ 117.901377800000091, 1.078599351000094 ], [ 117.933604363000086, 1.038763739000046 ], [ 117.937998894000089, 1.031480210000041 ], [ 117.975271030000044, 0.983099677000041 ], [ 117.97974694100003, 0.966213283000059 ], [ 117.984629754000025, 0.926214911000045 ], [ 117.992930535000028, 0.91079336100006 ], [ 117.995860222000033, 0.906724351000094 ], [ 118.00318444100003, 0.893744208000044 ], [ 118.005625847000033, 0.891913153000075 ], [ 118.014170769000089, 0.88812897300005 ], [ 118.01685631600003, 0.886216539000088 ], [ 118.024750196000014, 0.872788804000038 ], [ 118.030446811000047, 0.858954169000071 ], [ 118.034027540000011, 0.843329169000071 ], [ 118.036306186000047, 0.820705471000053 ], [ 118.032969597000033, 0.80023834800005 ], [ 118.020518425000091, 0.79132721600007 ], [ 118.005218946000014, 0.788763739000046 ], [ 117.993907097000033, 0.788478908000059 ], [ 117.982676629000025, 0.79132721600007 ], [ 117.973317905000044, 0.798488674000055 ], [ 117.962412957000083, 0.817084052000041 ], [ 117.955414259, 0.825425523000092 ], [ 117.947438998000052, 0.831122137000079 ], [ 117.938161655000044, 0.835638739000046 ], [ 117.927256707000083, 0.838690497000073 ], [ 117.914073113000086, 0.839667059000078 ], [ 117.902517123000052, 0.837469794000071 ], [ 117.894786004000025, 0.832586981000077 ], [ 117.889333530000044, 0.827704169000071 ], [ 117.884287957000083, 0.825425523000092 ], [ 117.850352410000028, 0.824286200000074 ], [ 117.82935631600003, 0.820257880000042 ], [ 117.811289910000028, 0.811753648000092 ], [ 117.78834069100003, 0.792303778000075 ], [ 117.743174675000091, 0.74054596600007 ], [ 117.729502800000091, 0.71556224200009 ], [ 117.724864129000025, 0.65265534100007 ], [ 117.719086134, 0.636786200000074 ], [ 117.695811394000089, 0.617092190000051 ], [ 117.688487175000091, 0.606350002000056 ], [ 117.684418165000011, 0.596380927000041 ], [ 117.679047071000014, 0.574693101000094 ], [ 117.674815300000091, 0.56476471600007 ], [ 117.62037194100003, 0.502020575000074 ], [ 117.612803582000083, 0.479071356000077 ], [ 117.615489129000025, 0.469183661000045 ], [ 117.62623131600003, 0.444037177000041 ], [ 117.627126498000052, 0.434393622000073 ], [ 117.619313998000052, 0.423895575000074 ], [ 117.607676629000025, 0.417181708000044 ], [ 117.59538821700005, 0.412298895000049 ], [ 117.585459832000083, 0.407131252000056 ], [ 117.569509311000047, 0.389064846000053 ], [ 117.553721550000091, 0.349514065000051 ], [ 117.51726321700005, 0.290961005000042 ], [ 117.514414910000028, 0.280340887000079 ], [ 117.515961134, 0.275295315000051 ], [ 117.519541863000086, 0.271063544000071 ], [ 117.523448113000086, 0.263088283000059 ], [ 117.526540561000047, 0.242173570000091 ], [ 117.52312259200005, 0.225775458000044 ], [ 117.513926629000025, 0.211859442000048 ], [ 117.490977410000028, 0.189886786000045 ], [ 117.48365319100003, 0.178859768000052 ], [ 117.48015384200005, 0.166489976000094 ], [ 117.482432488000086, 0.153794664000088 ], [ 117.488291863000086, 0.15110911700009 ], [ 117.498220248000052, 0.150824286000045 ], [ 117.509125196000014, 0.148586330000057 ], [ 117.51726321700005, 0.140204169000071 ], [ 117.506846550000091, 0.133042710000041 ], [ 117.48365319100003, 0.124823309000078 ], [ 117.475596550000091, 0.119086005000042 ], [ 117.46998131600003, 0.108791408000059 ], [ 117.470550977000016, 0.10219961100006 ], [ 117.473643425000091, 0.095526434000078 ], [ 117.475596550000091, 0.085598049000055 ], [ 117.474864129000025, 0.074774481000077 ], [ 117.473643425000091, 0.069240627000056 ], [ 117.473399285000028, 0.064886786000045 ], [ 117.475596550000091, 0.057603257000039 ], [ 117.482432488000086, 0.054592190000051 ], [ 117.492198113000086, 0.054632880000042 ], [ 117.497080925000091, 0.051011460000041 ], [ 117.489105665000011, 0.037176825000074 ], [ 117.500010613000086, 0.033026434000078 ], [ 117.50904381600003, 0.02602773600006 ], [ 117.51685631600003, 0.01593659100007 ], [ 117.523448113000086, 0.003078518000052 ], [ 117.529063347000033, -0.019463799999926 ], [ 117.530284050000091, -0.032321872999944 ], [ 117.526866082000083, -0.037896416999956 ], [ 117.525238477000016, -0.042046807999952 ], [ 117.512868686000047, -0.05913665199995 ], [ 117.507334832000083, -0.069634697999959 ], [ 117.494883660000028, -0.080336195999962 ], [ 117.489105665000011, -0.085707289999959 ], [ 117.484873894000089, -0.092217705999929 ], [ 117.469493035000028, -0.128838799999926 ], [ 117.465342644000089, -0.144463799999926 ], [ 117.461924675000091, -0.185723565999922 ], [ 117.456390821000014, -0.205498955999929 ], [ 117.435069207000083, -0.239678643999923 ], [ 117.433929884, -0.263848565999922 ], [ 117.442067905000044, -0.281914971999925 ], [ 117.457774285000028, -0.308200778999947 ], [ 117.474619988000086, -0.330254815999922 ], [ 117.485850457000083, -0.335870049999926 ], [ 117.49537194100003, -0.333754164999959 ], [ 117.497080925000091, -0.350274346999925 ], [ 117.493988477000016, -0.372653903999947 ], [ 117.489105665000011, -0.387383721999925 ], [ 117.467539910000028, -0.411553643999923 ], [ 117.457530144000089, -0.42701588299991 ], [ 117.458506707000083, -0.438897393999923 ], [ 117.46648196700005, -0.457289320999962 ], [ 117.462412957000083, -0.479913018999923 ], [ 117.452159050000091, -0.501722914999959 ], [ 117.441416863000086, -0.517754815999922 ], [ 117.441416863000086, -0.525160414999959 ], [ 117.474945509, -0.50904713299991 ], [ 117.595957879000025, -0.422621351999908 ], [ 117.615570509, -0.415215752999927 ], [ 117.63013756600003, -0.418715101999908 ], [ 117.638845248000052, -0.436455987999921 ], [ 117.631602410000028, -0.447523695999962 ], [ 117.619313998000052, -0.456231377999927 ], [ 117.612803582000083, -0.466892184999949 ], [ 117.605479363000086, -0.476169528999947 ], [ 117.570485873000052, -0.485039971999925 ], [ 117.558116082000083, -0.490411065999922 ], [ 117.554535352000016, -0.502699476999908 ], [ 117.58952884200005, -0.51100025799991 ], [ 117.598968946000014, -0.521416924999926 ], [ 117.597504102000016, -0.559502862999921 ], [ 117.593516472000033, -0.574639580999929 ], [ 117.580739780000044, -0.592950127999927 ], [ 117.578461134, -0.59693775799991 ], [ 117.57390384200005, -0.599053643999923 ], [ 117.542979363000086, -0.600681247999944 ], [ 117.536143425000091, -0.602959893999923 ], [ 117.530284050000091, -0.60711028399993 ], [ 117.530284050000091, -0.613946221999925 ], [ 117.547129754000025, -0.619724216999941 ], [ 117.565196160000028, -0.622816664999959 ], [ 117.575938347000033, -0.629978122999944 ], [ 117.571787957000083, -0.64812590899993 ], [ 117.559906446000014, -0.658298434999949 ], [ 117.54615319100003, -0.665622653999947 ], [ 117.539886915000011, -0.674493096999925 ], [ 117.551280144000089, -0.689629815999922 ], [ 117.539317254000025, -0.694512627999927 ], [ 117.527517123000052, -0.693942966999941 ], [ 117.499766472000033, -0.689629815999922 ], [ 117.485850457000083, -0.692803643999923 ], [ 117.482920769000089, -0.699639580999929 ], [ 117.488536004000025, -0.706475518999923 ], [ 117.499766472000033, -0.709567966999941 ], [ 117.520681186000047, -0.712823174999926 ], [ 117.575043165000011, -0.727308851999908 ], [ 117.602386915000011, -0.730645440999922 ], [ 117.613617384, -0.73406340899993 ], [ 117.622080925000091, -0.743096612999921 ], [ 117.626800977000016, -0.755954684999949 ], [ 117.627126498000052, -0.770928643999923 ], [ 117.62273196700005, -0.781508070999962 ], [ 117.615000847000033, -0.786065362999921 ], [ 117.585703972000033, -0.792413018999923 ], [ 117.57154381600003, -0.790785414999959 ], [ 117.564952019000089, -0.791436455999929 ], [ 117.557953321000014, -0.795668226999908 ], [ 117.54460696700005, -0.808851820999962 ], [ 117.537608269000089, -0.812595309999949 ], [ 117.489105665000011, -0.798923434999949 ], [ 117.493500196000014, -0.82781340899993 ], [ 117.458181186000047, -0.820489190999922 ], [ 117.448252800000091, -0.842950127999927 ], [ 117.451914910000028, -0.86646900799991 ], [ 117.44654381600003, -0.877048434999949 ], [ 117.427744988000086, -0.880791924999926 ], [ 117.412852410000028, -0.874932549999926 ], [ 117.390879754000025, -0.848565362999921 ], [ 117.379242384, -0.839288018999923 ], [ 117.37468509200005, -0.855889580999929 ], [ 117.363780144000089, -0.878513278999947 ], [ 117.350352410000028, -0.896905205999929 ], [ 117.339040561000047, -0.901299737999921 ], [ 117.332774285000028, -0.891778252999927 ], [ 117.330821160000028, -0.877699476999908 ], [ 117.332204623000052, -0.850192966999941 ], [ 117.327891472000033, -0.84148528399993 ], [ 117.301117384, -0.816013278999947 ], [ 117.281504754000025, -0.809177341999941 ], [ 117.267425977000016, -0.828301690999922 ], [ 117.259287957000083, -0.858330987999921 ], [ 117.256521030000044, -0.884209893999923 ], [ 117.250336134, -0.909274997999944 ], [ 117.235118035000028, -0.924493096999925 ], [ 117.195078972000033, -0.949151299999926 ], [ 117.163910352000016, -0.98170338299991 ], [ 117.065196160000028, -1.121840101999908 ], [ 117.039235873000052, -1.137790622999944 ], [ 117.03288821700005, -1.159356377999927 ], [ 117.029633009, -1.184177341999941 ], [ 117.023692254000025, -1.202894789999959 ], [ 117.007823113000086, -1.216403903999947 ], [ 116.983409050000091, -1.229668877999927 ], [ 116.957692905000044, -1.23992278399993 ], [ 116.851817254000025, -1.264418226999908 ], [ 116.829844597000033, -1.265801690999922 ], [ 116.819834832000083, -1.26140715899993 ], [ 116.817393425000091, -1.247491143999923 ], [ 116.81763756600003, -1.22039153399993 ], [ 116.82935631600003, -1.204034112999921 ], [ 116.830739780000044, -1.19500090899993 ], [ 116.81763756600003, -1.189385674999926 ], [ 116.811371290000011, -1.19264088299991 ], [ 116.805186394000089, -1.201348565999922 ], [ 116.797129754000025, -1.217217705999929 ], [ 116.793223504000025, -1.203301690999922 ], [ 116.792491082000083, -1.17115650799991 ], [ 116.787445509, -1.158868096999925 ], [ 116.746348504000025, -1.110528252999927 ], [ 116.743337436000047, -1.085381768999923 ], [ 116.756846550000091, -1.023695570999962 ], [ 116.743174675000091, -1.024834893999923 ], [ 116.728851759, -1.044040622999944 ], [ 116.72038821700005, -1.070977471999925 ], [ 116.715342644000089, -1.124769789999959 ], [ 116.719493035000028, -1.136325778999947 ], [ 116.749359571000014, -1.168877862999921 ], [ 116.75709069100003, -1.182224216999941 ], [ 116.757578972000033, -1.188409112999921 ], [ 116.753916863000086, -1.193454684999949 ], [ 116.749359571000014, -1.202894789999959 ], [ 116.73796634200005, -1.215020440999922 ], [ 116.736094597000033, -1.220961195999962 ], [ 116.777354363000086, -1.233982028999947 ], [ 116.779063347000033, -1.236423434999949 ], [ 116.783213738000086, -1.23756275799991 ], [ 116.787771030000044, -1.239434502999927 ], [ 116.790863477000016, -1.243910414999959 ], [ 116.790863477000016, -1.249118747999944 ], [ 116.788910352000016, -1.254489841999941 ], [ 116.779063347000033, -1.273858330999929 ], [ 116.766612175000091, -1.287692966999941 ], [ 116.763031446000014, -1.29851653399993 ], [ 116.767425977000016, -1.344333591999941 ], [ 116.762380405000044, -1.365329684999949 ], [ 116.739756707000083, -1.37428150799991 ], [ 116.719004754000025, -1.377211195999962 ], [ 116.609711134, -1.420586846999925 ], [ 116.56763756600003, -1.44654713299991 ], [ 116.539235873000052, -1.481215101999908 ], [ 116.537119988000086, -1.525648695999962 ], [ 116.54460696700005, -1.540459893999923 ], [ 116.553558790000011, -1.551364841999941 ], [ 116.561208530000044, -1.56373463299991 ], [ 116.564463738000086, -1.583428643999923 ], [ 116.557465040000011, -1.606215101999908 ], [ 116.540212436000047, -1.62273528399993 ], [ 116.517832879000025, -1.634372653999947 ], [ 116.429942254000025, -1.659356377999927 ], [ 116.390798373000052, -1.684502862999921 ], [ 116.345713738000086, -1.695977471999925 ], [ 116.324880405000044, -1.703871351999908 ], [ 116.271983269000089, -1.74928150799991 ], [ 116.26335696700005, -1.761895440999922 ], [ 116.231944207000083, -1.777113539999959 ], [ 116.222422722000033, -1.789646091999941 ], [ 116.242930535000028, -1.805759372999944 ], [ 116.26099694100003, -1.808526299999926 ], [ 116.285899285000028, -1.807061455999929 ], [ 116.30787194100003, -1.800876559999949 ], [ 116.317393425000091, -1.789239190999922 ], [ 116.321055535000028, -1.782810153999947 ], [ 116.330088738000086, -1.778090101999908 ], [ 116.351410352000016, -1.772149346999925 ], [ 116.357432488000086, -1.772230726999908 ], [ 116.366709832000083, -1.778090101999908 ], [ 116.372569207000083, -1.77898528399993 ], [ 116.372813347000033, -1.776950778999947 ], [ 116.379161004000025, -1.767347914999959 ], [ 116.379567905000044, -1.76531340899993 ], [ 116.402598504000025, -1.763929945999962 ], [ 116.424815300000091, -1.766371351999908 ], [ 116.441661004000025, -1.776055596999925 ], [ 116.448252800000091, -1.796075127999927 ], [ 116.43287194100003, -1.821872653999947 ], [ 116.413584832000083, -1.847263278999947 ], [ 116.451833530000044, -1.883965752999927 ], [ 116.466563347000033, -1.90748463299991 ], [ 116.45045006600003, -1.957452080999929 ], [ 116.463145379000025, -2.019952080999929 ], [ 116.457855665000011, -2.042413018999923 ], [ 116.438487175000091, -2.066989841999941 ], [ 116.426931186000047, -2.076348565999922 ], [ 116.358897332000083, -2.093682549999926 ], [ 116.336680535000028, -2.108168226999908 ], [ 116.31218509200005, -2.129001559999949 ], [ 116.292002800000091, -2.150974216999941 ], [ 116.283213738000086, -2.169366143999923 ], [ 116.289398634, -2.169366143999923 ], [ 116.33716881600003, -2.146091403999947 ], [ 116.370860222000033, -2.137872002999927 ], [ 116.386241082000083, -2.152276299999926 ], [ 116.392832879000025, -2.19109465899993 ], [ 116.410655144000089, -2.203789971999925 ], [ 116.437022332000083, -2.198337497999944 ], [ 116.500661655000044, -2.169691664999959 ], [ 116.517832879000025, -2.166436455999929 ], [ 116.53093509200005, -2.169366143999923 ], [ 116.531586134, -2.177829684999949 ], [ 116.535411004000025, -2.195245049999926 ], [ 116.542735222000033, -2.209242445999962 ], [ 116.554453972000033, -2.207207940999922 ], [ 116.566254102000016, -2.197686455999929 ], [ 116.58326256600003, -2.187676690999922 ], [ 116.598643425000091, -2.183851820999962 ], [ 116.605479363000086, -2.193617445999962 ], [ 116.603282097000033, -2.224216403999947 ], [ 116.572927280000044, -2.362806898999906 ], [ 116.572890168787993, -2.36297628779497 ], [ 116.567954950360672, -2.36202605605763 ], [ 116.467702670941435, -2.327247816533543 ], [ 116.390498082020827, -2.314432060990839 ], [ 116.157282343005704, -2.2990324848613 ], [ 116.128085157603891, -2.293244724264639 ], [ 116.04271569217542, -2.288232110023841 ], [ 116.021941765699921, -2.283477878201552 ], [ 115.994449904439534, -2.271023857864748 ], [ 115.984579705588885, -2.271850681064109 ], [ 115.975226271575139, -2.276966648092355 ], [ 115.954762404361418, -2.294639988244853 ], [ 115.942980177593086, -2.301564629504071 ], [ 115.921947869598512, -2.309264418018472 ], [ 115.915591669120204, -2.316447441696084 ], [ 115.911870966072229, -2.328384698095363 ], [ 115.906754999043869, -2.338099866415689 ], [ 115.89626468256904, -2.344714451111031 ], [ 115.874043817068468, -2.350657239539998 ], [ 115.866395705397395, -2.348280124528117 ], [ 115.860711297588296, -2.343319187130817 ], [ 115.853063185917222, -2.327351168421671 ], [ 115.850892775581087, -2.320116468799995 ], [ 115.849549188444257, -2.311951593191509 ], [ 115.839937372012059, -2.255417576160198 ], [ 115.814099156251018, -2.183639010831712 ], [ 115.811928745914884, -2.162089938899555 ], [ 115.81895673996155, -2.089691256846038 ], [ 115.828775262868021, -2.047161553762692 ], [ 115.823142531002986, -2.035896090931885 ], [ 115.810068393941151, -2.029384860822688 ], [ 115.778752475945907, -2.025509128143767 ], [ 115.762991163711149, -2.017344251635905 ], [ 115.74893517471844, -2.00070444115704 ], [ 115.739891799067209, -1.97238575579803 ], [ 115.736997919218538, -1.953833916502049 ], [ 115.737824742417843, -1.93652231155545 ], [ 115.741648798253436, -1.924430026424602 ], [ 115.745576206876422, -1.905568128766163 ], [ 115.741235386204039, -1.784231866307607 ], [ 115.698809035008935, -1.680930678308187 ], [ 115.692349480843859, -1.657986341496496 ], [ 115.689042189845168, -1.63550709357753 ], [ 115.683151075561682, -1.624603366851886 ], [ 115.664547561220957, -1.606309909974357 ], [ 115.656796095863115, -1.593649184062599 ], [ 115.653385451177542, -1.576854343053526 ], [ 115.650594924116376, -1.544556573127352 ], [ 115.643101841176986, -1.533136081564919 ], [ 115.631164584777707, -1.525022881900497 ], [ 115.614989862292305, -1.521612237214981 ], [ 115.569876336823427, -1.517943210111071 ], [ 115.606876661728506, -1.466680189738952 ], [ 115.628580764190815, -1.443529148251628 ], [ 115.64046634284739, -1.435002536537866 ], [ 115.652093540884152, -1.428698012003679 ], [ 115.67751834459591, -1.425907484942513 ], [ 115.693693068879952, -1.429214775941148 ], [ 115.707025588360125, -1.430351657503024 ], [ 115.720151402265401, -1.426320896092477 ], [ 115.734104039369868, -1.411334731112959 ], [ 115.750640497061227, -1.387305189582833 ], [ 115.80200687112017, -1.294442641214914 ], [ 115.807794630817511, -1.272170097971639 ], [ 115.811308628290476, -1.221888929530508 ], [ 115.816579624050405, -1.207006116439118 ], [ 115.805107457443114, -1.085256442830598 ], [ 115.784850294905141, -1.091767672939739 ], [ 115.771879510630811, -1.097658787223281 ], [ 115.758908726356594, -1.105565281312693 ], [ 115.752397496247454, -1.107425631487729 ], [ 115.745989618026442, -1.106960543494324 ], [ 115.739685092592936, -1.103808282126522 ], [ 115.733225539327123, -1.097038668699611 ], [ 115.725525750812722, -1.086961765173328 ], [ 115.717050815942343, -1.071768893719479 ], [ 115.692762892893143, -1.05233855617945 ], [ 115.687801954596466, -1.044122002828203 ], [ 115.680670607762295, -1.025673515420408 ], [ 115.672815789616948, -1.013322848770486 ], [ 115.655245803151274, -0.9943059214811 ], [ 115.641913282771725, -0.984849134679848 ], [ 115.62868411697832, -0.978027846208136 ], [ 115.619382358908638, -0.975857435872001 ], [ 115.611269159244216, -0.974772231153565 ], [ 115.605378045860107, -0.972808525493065 ], [ 115.574475539014884, -0.958235771663567 ], [ 115.540059034696696, -0.949605808061619 ], [ 115.528741896821089, -0.944644870664263 ], [ 115.517838169196125, -0.93782358219255 ], [ 115.467143588705653, -0.897257582071745 ], [ 115.460012241871368, -0.885992120140259 ], [ 115.458358596372022, -0.871884454304109 ], [ 115.459908889083863, -0.858706963555505 ], [ 115.45877200662278, -0.843359062470768 ], [ 115.453190953399712, -0.828114515972118 ], [ 115.421358269668417, -0.786256605557924 ], [ 115.415157097921679, -0.773905938008625 ], [ 115.391282586921761, -0.655205172980345 ], [ 115.390559117409339, -0.615155937696386 ], [ 115.38740685424284, -0.597637628074096 ], [ 115.381257359339656, -0.582031344570908 ], [ 115.329890985280713, -0.511027926497604 ], [ 115.312010939553147, -0.473252455236604 ], [ 115.299711948847289, -0.438009127719056 ], [ 115.294647657763107, -0.416615084518526 ], [ 115.290616897251994, -0.366437269764219 ], [ 115.287516310928936, -0.35098601589192 ], [ 115.274183791448763, -0.311040134294785 ], [ 115.272943557099438, -0.29434864697248 ], [ 115.27723270092838, -0.220141289788728 ], [ 115.284105666243477, -0.185156344689574 ], [ 115.291030308402014, -0.167689711011349 ], [ 115.31790205293737, -0.120715833568852 ], [ 115.322242872710376, -0.109967135574834 ], [ 115.32555016460833, -0.098184909705822 ], [ 115.337022333014261, -0.02899016676281 ], [ 115.342293328774076, -0.010386650623445 ], [ 115.347357618958881, 0.002274075288312 ], [ 115.347822706952343, 0.005684719074509 ], [ 115.346634149446345, 0.010283922165286 ], [ 115.342603388035855, 0.01436636041916 ], [ 115.337022333014261, 0.017105211536261 ], [ 115.303329299107872, 0.023409736070448 ], [ 115.275424025798088, 0.031367906103981 ], [ 115.265192091741596, 0.031212877372354 ], [ 115.248552281262732, 0.027440497480939 ], [ 115.226951531587815, 0.024546616732948 ], [ 115.212843865751779, 0.024960027882969 ], [ 115.18736738519658, 0.005219631081104 ], [ 115.107785678566188, -0.086661064456564 ], [ 115.098690626970779, -0.103094171159057 ], [ 115.093006220060943, -0.110380547624175 ], [ 115.085771518640627, -0.117511894458346 ], [ 115.076779819832723, -0.123041273535932 ], [ 115.045567254625098, -0.136838881009567 ], [ 115.037505730904741, -0.142523288818722 ], [ 115.002572462649027, -0.177663262649446 ], [ 114.996267938114784, -0.179420260936297 ], [ 114.98634606332007, -0.178903496998771 ], [ 114.978129510868143, -0.166707859080418 ], [ 114.975545689381988, -0.154822278625261 ], [ 114.976630894100481, -0.141438084100287 ], [ 114.979318069273404, -0.128777358188529 ], [ 114.978129510868143, -0.119630628850473 ], [ 114.97466719023862, -0.11280933947944 ], [ 114.969809604729448, -0.106401462157748 ], [ 114.967329136030799, -0.097513116137407 ], [ 114.967587518449136, -0.08604094773159 ], [ 114.970429722353742, -0.068160902903344 ], [ 114.985415888232637, -0.017207939994421 ], [ 115.017661981315314, 0.057671209858427 ], [ 115.019832390752185, 0.069556790313584 ], [ 115.019212274027154, 0.080718899457622 ], [ 115.015904983028463, 0.094981594025342 ], [ 115.011150751206173, 0.10846914313646 ], [ 114.999988641162759, 0.130896715111305 ], [ 114.978077834024816, 0.16645010009205 ], [ 114.973530307777423, 0.176268622099201 ], [ 114.971980015065583, 0.185622056113004 ], [ 114.973220249414908, 0.211822007979265 ], [ 114.972186720640593, 0.225877996971974 ], [ 114.968879428742639, 0.236833401440322 ], [ 114.959370965997209, 0.258382473372421 ], [ 114.955133498112446, 0.27145661133352 ], [ 114.953066440563703, 0.284169013189398 ], [ 114.952963087776197, 0.31253937449253 ], [ 114.955856967624868, 0.32871409697799 ], [ 114.967949252755716, 0.364215806014613 ], [ 115.02510338831064, 0.479505927256753 ], [ 115.033164911131735, 0.488652654796169 ], [ 115.057866246230219, 0.508909817334199 ], [ 115.069441765624902, 0.521053778409112 ], [ 115.075952996633418, 0.533042710752511 ], [ 115.078381789388004, 0.547305406219493 ], [ 115.076883172620228, 0.557537340276042 ], [ 115.072490676003895, 0.56807933179573 ], [ 115.066237828313092, 0.580171616926577 ], [ 115.061897006741447, 0.593400784518565 ], [ 115.057246127706549, 0.636860662689401 ], [ 115.053215367195435, 0.645490627190668 ], [ 115.04205325715202, 0.657737941952462 ], [ 115.037609083692246, 0.666367906453729 ], [ 115.033164911131735, 0.677271633179316 ], [ 115.027067092172501, 0.686986803298339 ], [ 115.018592157302123, 0.695306708537771 ], [ 115.009600457594956, 0.700060940360117 ], [ 115.001952345923996, 0.703058172996293 ], [ 114.996888054839815, 0.706055406531789 ], [ 114.990790235880581, 0.711429755079109 ], [ 114.983038772321493, 0.728069566457293 ], [ 114.976475865368798, 0.735200914190841 ], [ 114.964073520976171, 0.738869941294752 ], [ 114.947071975291351, 0.740058498800693 ], [ 114.890072870266749, 0.737267970840151 ], [ 114.882993199376642, 0.735821030915815 ], [ 114.878600701860819, 0.733340562217165 ], [ 114.874104851557604, 0.727346096045494 ], [ 114.866353387998402, 0.71148143102323 ], [ 114.856379836360361, 0.706158759319294 ], [ 114.832970411555152, 0.698200588386442 ], [ 114.785324742342937, 0.689777330359505 ], [ 114.735405308208328, 0.672569078200411 ], [ 114.705019566200008, 0.654172268535376 ], [ 114.68279869980006, 0.634638577308465 ], [ 114.663058302998252, 0.621306056928972 ], [ 114.377546013937376, 0.588646551796899 ], [ 114.359045852384156, 0.591385402914 ], [ 114.342767776211872, 0.596501369942246 ], [ 114.267113479103728, 0.609833889422475 ], [ 114.251403842813033, 0.614433092513195 ], [ 114.236831088983536, 0.621616116190808 ], [ 114.211716342735031, 0.639961249012401 ], [ 114.198073764892342, 0.646472480020918 ], [ 114.183914423112128, 0.650451565487344 ], [ 114.136578811363051, 0.652932034185994 ], [ 114.095030959311316, 0.648797919088679 ], [ 114.052449579384529, 0.648952947820248 ], [ 114.036326531943814, 0.647040919902508 ], [ 114.017102899079532, 0.638049221094661 ], [ 114.007129348340754, 0.630091051061129 ], [ 113.993796827961205, 0.615104885182291 ], [ 113.983719924434922, 0.608386949498083 ], [ 113.969870640117847, 0.603632716776474 ], [ 113.927702671341194, 0.599395249790916 ], [ 113.911889683162258, 0.595881252317952 ], [ 113.86982506717311, 0.577587795440422 ], [ 113.854425490144195, 0.574177150754906 ], [ 113.804351027278017, 0.568337714214124 ], [ 113.776394078024282, 0.558570868151037 ], [ 113.787866246430099, 0.591850490907404 ], [ 113.794067417277461, 0.603632716776474 ], [ 113.807193231182623, 0.619962469792142 ], [ 113.817735222702368, 0.627610582362479 ], [ 113.840679558614738, 0.637480780313751 ], [ 113.850601434308714, 0.645593979978173 ], [ 113.874165887845379, 0.679907131508912 ], [ 113.907858920852505, 0.718871161175116 ], [ 113.917677442859599, 0.736441148540166 ], [ 113.923258497881307, 0.761607570732792 ], [ 113.923878614606338, 0.782329820364907 ], [ 113.927082553716787, 0.802070217166772 ], [ 113.932921991156945, 0.820415350887743 ], [ 113.943412306732512, 0.840982570888912 ], [ 113.948114861711474, 0.862221584458553 ], [ 113.947288039411433, 0.878913071780801 ], [ 113.941655308445661, 0.89167715137944 ], [ 113.933283726362788, 0.900358791824772 ], [ 113.923051792306296, 0.905681464428028 ], [ 113.91312991661232, 0.906456610783948 ], [ 113.903311394605112, 0.904182846760932 ], [ 113.883364292228293, 0.896689764720861 ], [ 113.873855828583601, 0.896017971152446 ], [ 113.867034540111945, 0.897981675913627 ], [ 113.862590366652057, 0.902322495686633 ], [ 113.860213250740912, 0.910125636988539 ], [ 113.860781692421142, 0.919892483051626 ], [ 113.864450717726413, 0.941596583715352 ], [ 113.864554071413181, 0.953017076177105 ], [ 113.863210484276351, 0.964489244582978 ], [ 113.864450717726413, 0.97642650008288 ], [ 113.870031772748121, 0.987278550864403 ], [ 113.886258172976227, 1.003091539043282 ], [ 113.899280634093998, 1.011463121126155 ], [ 113.948786656179209, 1.033942369045064 ], [ 113.97937910376254, 1.058488674512716 ], [ 113.989817743394042, 1.064379787896883 ], [ 114.00723270112826, 1.07223460514291 ], [ 114.018033075066342, 1.078642483363922 ], [ 114.111774122577685, 1.160704656894382 ], [ 114.123349643771007, 1.167422594377229 ], [ 114.146190626895873, 1.177551173847576 ], [ 114.173062372330605, 1.202252508946117 ], [ 114.183397658275226, 1.208195299173724 ], [ 114.192079298720614, 1.21444814686447 ], [ 114.200554233590992, 1.225093492070982 ], [ 114.206135288612586, 1.240596421887346 ], [ 114.208925815673865, 1.261732083568802 ], [ 114.208409051736339, 1.277906806054261 ], [ 114.203913202332387, 1.294960028582466 ], [ 114.192699416344908, 1.31428701423431 ], [ 114.191149122733805, 1.330151679256574 ], [ 114.191407505152142, 1.343742581155198 ], [ 114.205928583037576, 1.424822902754727 ], [ 114.207405886772221, 1.439443127298489 ], [ 114.355737753000085, 1.501950786000066 ], [ 114.37485803300001, 1.506937562000118 ], [ 114.3982157800001, 1.503552754000097 ], [ 114.421366822000095, 1.492183940000118 ], [ 114.50063846900008, 1.436037496000068 ], [ 114.522239218000095, 1.429422913000067 ], [ 114.545596965000072, 1.434952291000073 ], [ 114.561616658000048, 1.450015971000056 ], [ 114.568024537000042, 1.469394633000121 ], [ 114.567714477000095, 1.490917867000078 ], [ 114.563166952000131, 1.512260233000077 ], [ 114.563166952000131, 1.536393128000029 ], [ 114.574535767000043, 1.553420512000059 ], [ 114.609675741000103, 1.581635844000118 ], [ 114.624455201000103, 1.59879242000008 ], [ 114.650293417000114, 1.641451315000069 ], [ 114.669000285000095, 1.694006246000058 ], [ 114.680059042000096, 1.76327850400007 ], [ 114.67892216000007, 1.794361878000117 ], [ 114.675821574000054, 1.806738383000081 ], [ 114.672617635000051, 1.814076436000079 ], [ 114.671377401000143, 1.820975240000053 ], [ 114.674167929000077, 1.831904806000111 ], [ 114.679542277, 1.840741476000119 ], [ 114.688637330000063, 1.850224101 ], [ 114.699179321000088, 1.858053080000033 ], [ 114.708997844000066, 1.861980490000093 ], [ 114.763051392000136, 1.868698425000019 ], [ 114.819068645000073, 1.890299174000091 ], [ 114.831987753000078, 1.902520650000014 ], [ 114.833641398000054, 1.921356710000026 ], [ 114.829403931, 1.942647400000112 ], [ 114.829403931, 1.959778138000061 ], [ 114.833848104000083, 1.976676331000064 ], [ 114.84252974400016, 1.997166036000124 ], [ 114.845113567000055, 2.009749248000048 ], [ 114.845320272000095, 2.024967957000072 ], [ 114.841082805000042, 2.038222962000077 ], [ 114.831367635000106, 2.044760030000063 ], [ 114.8082165940001, 2.0419695020001 ], [ 114.792196900000079, 2.03481231700006 ], [ 114.780621379000138, 2.036052552000086 ], [ 114.770286092000106, 2.058221741000111 ], [ 114.769252564000055, 2.066644999000104 ], [ 114.770286092000106, 2.100053813000073 ], [ 114.76801233000009, 2.110208232000048 ], [ 114.756746867000061, 2.126047059000129 ], [ 114.753026164000119, 2.134806213000033 ], [ 114.752095988000065, 2.153513082000103 ], [ 114.76346480400008, 2.208083395000131 ], [ 114.778761027000087, 2.24720245400006 ], [ 114.809043417000055, 2.264669088000105 ], [ 114.886454712000102, 2.275159404000064 ], [ 114.913326457000096, 2.28404775000007 ], [ 114.919630981000068, 2.295674947000037 ], [ 114.916737102000127, 2.311229554000064 ], [ 114.915290162000019, 2.332055155000106 ], [ 114.922214803000088, 2.353914287000052 ], [ 114.934513795000044, 2.360683899000094 ], [ 114.972961060000102, 2.35747996000012 ], [ 114.992081339000094, 2.369882304000086 ], [ 115.034766073000071, 2.406417541000025 ], [ 115.052026001000058, 2.414013977000081 ], [ 115.067425578000154, 2.423109029000059 ], [ 115.105046021000078, 2.465690409000032 ], [ 115.126543417000107, 2.479229634000106 ], [ 115.171811971000011, 2.483312073000107 ], [ 115.192689250000058, 2.490546773000077 ], [ 115.20612512200006, 2.509873759000129 ], [ 115.203748007000115, 2.527547099000031 ], [ 115.192379192000089, 2.55105987600011 ], [ 115.176979615000107, 2.574159241000089 ], [ 115.161890096000093, 2.590385641000097 ], [ 115.151968221000118, 2.597051900000025 ], [ 115.139772583000081, 2.60283966100009 ], [ 115.126853475000075, 2.60676707000006 ], [ 115.114967896000053, 2.607903951000068 ], [ 115.104115845000024, 2.604751689000111 ], [ 115.082515096000066, 2.59436472600008 ], [ 115.071456340000054, 2.594623108000064 ], [ 115.056470175000072, 2.608627422000069 ], [ 115.058640585000092, 2.628832906000056 ], [ 115.067425578000154, 2.651208801000038 ], [ 115.071869752000055, 2.671827698000129 ], [ 115.068769165000106, 2.681542868000079 ], [ 115.057917115000066, 2.701489970000097 ], [ 115.056986939000012, 2.711256816000045 ], [ 115.063188110000112, 2.723659159000107 ], [ 115.072179810000137, 2.727431539000051 ], [ 115.082721802000037, 2.729550273000115 ], [ 115.093573853000066, 2.737043356000058 ], [ 115.104632610000067, 2.761486308000087 ], [ 115.098121379000077, 2.78107167600011 ], [ 115.071869752000055, 2.814764710000077 ], [ 115.066908813000111, 2.828200582000122 ], [ 115.069079224, 2.832644755000032 ], [ 115.077554159000101, 2.836520488000076 ], [ 115.091196737000018, 2.848147685000043 ], [ 115.099051555000131, 2.859671529000067 ], [ 115.102772258000073, 2.869955139000069 ], [ 115.10525272600006, 2.880290425000069 ], [ 115.109593547000031, 2.892020976000069 ], [ 115.122822714000108, 2.912949931000057 ], [ 115.139049113000112, 2.928452860000064 ], [ 115.196409953000114, 2.967623596000095 ], [ 115.207985474000054, 2.98069773400006 ], [ 115.225038697000059, 3.015889384000019 ], [ 115.24209192, 3.041624247000101 ], [ 115.255837850000034, 3.037490133000091 ], [ 115.281366008000077, 2.999559631000082 ], [ 115.309994751000147, 2.98591705300008 ], [ 115.341517375000137, 2.991136373000089 ], [ 115.406836385000076, 3.019506734000103 ], [ 115.447970825000141, 3.024054261000046 ], [ 115.464093873000024, 3.030823873000074 ], [ 115.472155396000119, 3.050512594000026 ], [ 115.475979452000047, 3.093042297000082 ], [ 115.482180624000137, 3.110974020000057 ], [ 115.517010539000012, 3.157276103000129 ], [ 115.514426718000095, 3.164769186000072 ], [ 115.499337199000024, 3.169781800000038 ], [ 115.483524211000031, 3.189005432000059 ], [ 115.482800741, 3.206472066000103 ], [ 115.517630656000051, 3.357160543000049 ], [ 115.535820760000092, 3.403617656000065 ], [ 115.557214803000136, 3.425450948000091 ], [ 115.567136678000054, 3.42384897900007 ], [ 115.576025025000035, 3.419404805000056 ], [ 115.58501672400007, 3.416820984000054 ], [ 115.595455363000042, 3.420851746000054 ], [ 115.601243124, 3.43023101900009 ], [ 115.600623006000092, 3.441212260000086 ], [ 115.59266483600004, 3.461960348000019 ], [ 115.576128378000078, 3.491674296000085 ], [ 115.572717733000161, 3.50415415500008 ], [ 115.572407675000079, 3.514256897000038 ], [ 115.574474731, 3.534565735000044 ], [ 115.57333785000003, 3.545004374000087 ], [ 115.548533163, 3.605284933000064 ], [ 115.544399048000059, 3.629159445000141 ], [ 115.544605754000031, 3.668976136000069 ], [ 115.550496867000106, 3.708224385000037 ], [ 115.589357545000155, 3.824522197000121 ], [ 115.588634074000083, 3.857595113000116 ], [ 115.574578084000166, 3.872090353000146 ], [ 115.554114217, 3.883562520000069 ], [ 115.538301229000012, 3.897825216000044 ], [ 115.538817994000055, 3.920614522000037 ], [ 115.545845989000156, 3.927720032000067 ], [ 115.580985962, 3.946917827000078 ], [ 115.590287720000106, 3.958002421000089 ], [ 115.609511352000027, 3.996914774000075 ], [ 115.622120402000064, 4.040219625000134 ], [ 115.633282512000108, 4.128560486000126 ], [ 115.639134330884644, 4.145949698020161 ], [ 115.646925089000092, 4.16910064700005 ], [ 115.655916789000059, 4.178634949000042 ], [ 115.675967245000095, 4.184164327000047 ], [ 115.682788534000053, 4.19064972000011 ], [ 115.689816529000041, 4.199977315000041 ], [ 115.732604615000014, 4.239380595000057 ], [ 115.740252727000154, 4.236202495000086 ], [ 115.747177369000042, 4.227624207000062 ], [ 115.756892538000102, 4.222172343000068 ], [ 115.770741821000058, 4.225608825000108 ], [ 115.775392701000101, 4.236099142000057 ], [ 115.779423462000125, 4.248940735000048 ], [ 115.817457317000049, 4.281316020000048 ], [ 115.821901490000073, 4.311236674000071 ], [ 115.821178020000048, 4.344335429000068 ], [ 115.830996542000094, 4.3761164350001 ], [ 115.844122355000081, 4.38921641000006 ], [ 115.856111288000136, 4.390766703000082 ], [ 115.864896281000028, 4.38257598900006 ], [ 115.869443807000039, 4.366685486000037 ], [ 115.878848918000017, 4.352138570000079 ], [ 115.898796021000067, 4.347125956000113 ], [ 115.940963989000011, 4.344361267000068 ], [ 115.964838501000088, 4.335472921000061 ], [ 115.977240845000154, 4.328625794000089 ], [ 115.983442017000016, 4.321391093000031 ], [ 115.9873694260001, 4.304777120000026 ], [ 115.993570598000019, 4.288912455000101 ], [ 116.004009237000105, 4.276690980000083 ], [ 116.020649048000053, 4.270851542000102 ], [ 116.033154745000047, 4.277724507000073 ], [ 116.081213827000113, 4.325473531000043 ], [ 116.099403931000154, 4.336506449000041 ], [ 116.109945923000112, 4.345110575000078 ], [ 116.117490683000085, 4.357228699000075 ], [ 116.125758912000038, 4.378906962000059 ], [ 116.136507609000148, 4.373041687000068 ], [ 116.146842896000123, 4.371207173000073 ], [ 116.170097290000058, 4.369915263000024 ], [ 116.215055787000153, 4.357848816000043 ], [ 116.22880171700001, 4.356117656000066 ], [ 116.25722375600003, 4.364153341000048 ], [ 116.285129029000018, 4.378390198000119 ], [ 116.310657186000071, 4.383376974000072 ], [ 116.337528931000065, 4.357228699000075 ], [ 116.344246867000095, 4.356918640000089 ], [ 116.351274862000082, 4.357900492000056 ], [ 116.358199504000083, 4.355445862000082 ], [ 116.36181685400004, 4.350381572000103 ], [ 116.365434204000053, 4.337695008000068 ], [ 116.391065715000082, 4.294674377000078 ], [ 116.400884237000071, 4.2899976610001 ], [ 116.411322876000099, 4.288654074000135 ], [ 116.421761516000061, 4.291832174000092 ], [ 116.446359497, 4.317256979000106 ], [ 116.457108195000046, 4.316766052000077 ], [ 116.468373658000019, 4.312321879000066 ], [ 116.485943644000088, 4.316921082000107 ], [ 116.494108521000101, 4.324853414000074 ], [ 116.491938110000092, 4.331287130000121 ], [ 116.486977173000071, 4.338573507000092 ], [ 116.486460409000131, 4.348831278000091 ], [ 116.494315226000026, 4.363223165000093 ], [ 116.515399211000101, 4.384152120000081 ], [ 116.52222050000006, 4.396787008000018 ] ] ], [ [ [ 118.599619988000086, 2.244330145000049 ], [ 118.623871290000011, 2.213080145000049 ], [ 118.639496290000011, 2.198635158000059 ], [ 118.654307488000086, 2.189683335000041 ], [ 118.654307488000086, 2.18227773600006 ], [ 118.63209069100003, 2.187241929000038 ], [ 118.610118035000028, 2.202297268000052 ], [ 118.591156446000014, 2.22101471600007 ], [ 118.578461134, 2.236883856000077 ], [ 118.568369988000086, 2.255601304000038 ], [ 118.556895379000025, 2.285956122000073 ], [ 118.556407097000033, 2.312201239000046 ], [ 118.578461134, 2.318793036000045 ], [ 118.589854363000086, 2.305568752000056 ], [ 118.622569207000083, 2.286118882000039 ], [ 118.633799675000091, 2.271673895000049 ], [ 118.632660352000016, 2.260687567000048 ], [ 118.617442254000025, 2.268540757000039 ], [ 118.585948113000086, 2.291489976000094 ], [ 118.574880405000044, 2.294175523000092 ], [ 118.574880405000044, 2.29242584800005 ], [ 118.580332879000025, 2.286851304000038 ], [ 118.585948113000086, 2.277818101000094 ], [ 118.599619988000086, 2.244330145000049 ] ] ], [ [ [ 117.50359134200005, 3.333644924000055 ], [ 117.520843946000014, 3.32453034100007 ], [ 117.527842644000089, 3.317368882000039 ], [ 117.530284050000091, 3.305650132000039 ], [ 117.527517123000052, 3.290838934000078 ], [ 117.521494988000086, 3.288072007000039 ], [ 117.51335696700005, 3.290838934000078 ], [ 117.50359134200005, 3.292669989000046 ], [ 117.472178582000083, 3.29360586100006 ], [ 117.461924675000091, 3.292669989000046 ], [ 117.453379754000025, 3.289252020000049 ], [ 117.440277540000011, 3.28001536700009 ], [ 117.433929884, 3.278998114000046 ], [ 117.417002800000091, 3.288723049000055 ], [ 117.413910352000016, 3.304836330000057 ], [ 117.420909050000091, 3.322414455000057 ], [ 117.433360222000033, 3.336411851000094 ], [ 117.449880405000044, 3.343939520000049 ], [ 117.46843509200005, 3.345282294000071 ], [ 117.487071160000028, 3.341457424000055 ], [ 117.50359134200005, 3.333644924000055 ] ] ], [ [ [ 117.625254754000025, 3.437689520000049 ], [ 117.640472852000016, 3.436509507000039 ], [ 117.656993035000028, 3.433539130000042 ], [ 117.67156009200005, 3.426988023000092 ], [ 117.681651238000086, 3.415513414000088 ], [ 117.683929884, 3.399603583000044 ], [ 117.681976759, 3.377508856000077 ], [ 117.677256707000083, 3.356431382000039 ], [ 117.665375196000014, 3.329291083000044 ], [ 117.667328321000014, 3.271551825000074 ], [ 117.659922722000033, 3.255275783000059 ], [ 117.648448113000086, 3.246039130000042 ], [ 117.63795006600003, 3.248724677000041 ], [ 117.633311394000089, 3.26821523600006 ], [ 117.624847852000016, 3.283270575000074 ], [ 117.571787957000083, 3.31313711100006 ], [ 117.556407097000033, 3.331854559000078 ], [ 117.543630405000044, 3.354803778000075 ], [ 117.534678582000083, 3.379380601000094 ], [ 117.531260613000086, 3.403143622000073 ], [ 117.541514519000089, 3.42845286700009 ], [ 117.566661004000025, 3.438421942000048 ], [ 117.625254754000025, 3.437689520000049 ] ] ], [ [ [ 117.893890821000014, 3.49750397300005 ], [ 117.895518425000091, 3.486273505000042 ], [ 117.896006707000083, 3.468410549000055 ], [ 117.891286655000044, 3.455633856000077 ], [ 117.877452019000089, 3.459947007000039 ], [ 117.826182488000086, 3.494086005000042 ], [ 117.818858269000089, 3.511623440000051 ], [ 117.785492384, 3.538478908000059 ], [ 117.777598504000025, 3.558417059000078 ], [ 117.784922722000033, 3.581976630000042 ], [ 117.803721550000091, 3.591050523000092 ], [ 117.826996290000011, 3.588080145000049 ], [ 117.847911004000025, 3.575425523000092 ], [ 117.863047722000033, 3.559027411000045 ], [ 117.87663821700005, 3.53978099200009 ], [ 117.887217644000089, 3.518947658000059 ], [ 117.893890821000014, 3.49750397300005 ] ] ], [ [ [ 117.51726321700005, 3.477036851000094 ], [ 117.496755405000044, 3.455552476000094 ], [ 117.455821160000028, 3.464260158000059 ], [ 117.373057488000086, 3.49750397300005 ], [ 117.287608269000089, 3.49750397300005 ], [ 117.27076256600003, 3.500189520000049 ], [ 117.254893425000091, 3.507066148000092 ], [ 117.240896030000044, 3.516180731000077 ], [ 117.22974694100003, 3.525376695000091 ], [ 117.222015821000014, 3.535549221000053 ], [ 117.217784050000091, 3.547837632000039 ], [ 117.21802819100003, 3.560288804000038 ], [ 117.224131707000083, 3.570990302000041 ], [ 117.232920769000089, 3.578680731000077 ], [ 117.244476759, 3.586493231000077 ], [ 117.25709069100003, 3.592027085000041 ], [ 117.268402540000011, 3.592922268000052 ], [ 117.27857506600003, 3.58852773600006 ], [ 117.297129754000025, 3.575873114000046 ], [ 117.307953321000014, 3.573187567000048 ], [ 117.393728061000047, 3.566392320000091 ], [ 117.408213738000086, 3.55609772300005 ], [ 117.435313347000033, 3.524603583000044 ], [ 117.451670769000089, 3.517971096000053 ], [ 117.461761915000011, 3.51593659100007 ], [ 117.48210696700005, 3.506984768000052 ], [ 117.506195509, 3.502142645000049 ], [ 117.513926629000025, 3.495306708000044 ], [ 117.517100457000083, 3.486273505000042 ], [ 117.51726321700005, 3.477036851000094 ] ] ], [ [ [ 117.846202019000089, 3.79913971600007 ], [ 117.831553582000083, 3.798081773000092 ], [ 117.812266472000033, 3.804673570000091 ], [ 117.784027540000011, 3.819647528000075 ], [ 117.769541863000086, 3.831244208000044 ], [ 117.744639519000089, 3.857896226000094 ], [ 117.729502800000091, 3.868068752000056 ], [ 117.736175977000016, 3.867987372000073 ], [ 117.755218946000014, 3.87335846600007 ], [ 117.76295006600003, 3.874497789000088 ], [ 117.766774936000047, 3.874009507000039 ], [ 117.787608269000089, 3.866685289000088 ], [ 117.807383660000028, 3.856146552000041 ], [ 117.829112175000091, 3.84125397300005 ], [ 117.844248894000089, 3.827541408000059 ], [ 117.852875196000014, 3.812404690000051 ], [ 117.846202019000089, 3.79913971600007 ] ] ], [ [ [ 117.698741082000083, 4.111314195000091 ], [ 117.741221550000091, 4.088283596000053 ], [ 117.750010613000086, 4.080308335000041 ], [ 117.75318444100003, 4.051825262000079 ], [ 117.741058790000011, 4.025620835000041 ], [ 117.705577019000089, 3.987494208000044 ], [ 117.66529381600003, 3.98305898600006 ], [ 117.620290561000047, 4.015326239000046 ], [ 117.594493035000028, 4.063869533000059 ], [ 117.612803582000083, 4.108221747000073 ], [ 117.646332227000016, 4.140814520000049 ], [ 117.661143425000091, 4.149237372000073 ], [ 117.673594597000033, 4.140611070000091 ], [ 117.698741082000083, 4.111314195000091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-NT", "NAME_1": "Nusa Tenggara Timur" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.257510621000051, -9.501227721999967 ], [ 124.261593059000063, -9.49792042999988 ], [ 124.273840373000098, -9.494923196999949 ], [ 124.293064006, -9.49306284499994 ], [ 124.31006555200014, -9.488722025999962 ], [ 124.323553101000016, -9.480350443999896 ], [ 124.332338095000068, -9.466604511999961 ], [ 124.333371623000062, -9.457199401999901 ], [ 124.328824097000052, -9.439836119999896 ], [ 124.32861739100008, -9.433014831999927 ], [ 124.332079712000052, -9.425470071999882 ], [ 124.341743205000057, -9.41182749399988 ], [ 124.345412232000058, -9.404179381999896 ], [ 124.347892700000102, -9.374620462999872 ], [ 124.354558960000134, -9.364181823999928 ], [ 124.358072958000093, -9.362218118999905 ], [ 124.362620484000104, -9.362011413999937 ], [ 124.371870565000052, -9.357050475999898 ], [ 124.401687866000145, -9.331832376999941 ], [ 124.420911499000056, -9.30692433699997 ], [ 124.424787232000085, -9.303513691999854 ], [ 124.427939494000043, -9.299482929999954 ], [ 124.431815227000016, -9.290801289999891 ], [ 124.436621134, -9.255868021999902 ], [ 124.451503948000152, -9.200574238999877 ], [ 124.450531446000014, -9.180189710999912 ], [ 124.465830925000091, -9.17937590899993 ], [ 124.517832879000025, -9.177829684999949 ], [ 124.563243035000028, -9.170830987999921 ], [ 124.604340040000011, -9.156345309999949 ], [ 124.667979363000086, -9.113051039999959 ], [ 124.67115319100003, -9.107517184999949 ], [ 124.673187696000014, -9.09929778399993 ], [ 124.683604363000086, -9.074802341999941 ], [ 124.687998894000089, -9.069512627999927 ], [ 124.691579623000052, -9.067803643999923 ], [ 124.758067254000025, -9.047946872999944 ], [ 124.767344597000033, -9.042901299999926 ], [ 124.788828972000033, -9.018975518999923 ], [ 124.824961785000028, -9.008070570999905 ], [ 124.840342644000089, -9.001071872999944 ], [ 124.869883660000028, -8.994398695999905 ], [ 124.897146030000044, -8.974541924999926 ], [ 124.919281446000014, -8.962090752999927 ], [ 124.919507206836613, -8.962015500097579 ], [ 124.922482951000063, -8.986323750999958 ], [ 124.909150431000114, -9.020326842999907 ], [ 124.907910197000092, -9.037483418999955 ], [ 124.912974487000042, -9.052779641999919 ], [ 124.921294393000039, -9.065492044999885 ], [ 124.933024943000078, -9.07448374399992 ], [ 124.947856080000122, -9.078514505999919 ], [ 124.965891154000019, -9.077274271999968 ], [ 124.978913615000067, -9.072003274999943 ], [ 125.00444177300011, -9.055570169999967 ], [ 125.051829061000092, -9.035002949999893 ], [ 125.065316610000139, -9.023220723999898 ], [ 125.068572225000025, -9.015882669999897 ], [ 125.073016399000039, -8.996452331999919 ], [ 125.076478719000079, -8.990767923999968 ], [ 125.086814006000111, -8.986220397999929 ], [ 125.091516561000049, -8.988597513999892 ], [ 125.095288941000092, -8.994798684999878 ], [ 125.102523642000051, -9.00130991599994 ], [ 125.121333862000085, -9.011851907999898 ], [ 125.139420614000073, -9.024771015999917 ], [ 125.153993368000158, -9.040790709999953 ], [ 125.162364950000097, -9.06063446099995 ], [ 125.162003214000038, -9.082338561999947 ], [ 125.145001669000067, -9.145177103999927 ], [ 125.146965373000057, -9.154478861999863 ], [ 125.151202841000099, -9.165020852999916 ], [ 125.152653732000147, -9.170824418999956 ], [ 125.153890015, -9.175769550999931 ], [ 125.150634400000115, -9.185381367999952 ], [ 125.142521200000033, -9.189102070999866 ], [ 125.117923218000158, -9.187551777999943 ], [ 125.106967814000086, -9.188481953999897 ], [ 125.091464884000061, -9.196750182999935 ], [ 125.082576538000012, -9.205535176999931 ], [ 125.073946574000104, -9.211322936999906 ], [ 125.05968387900009, -9.210496113999881 ], [ 125.053379354000072, -9.206672057999938 ], [ 125.041442098000061, -9.193236185999893 ], [ 125.034517456, -9.188171895999915 ], [ 125.027696168000034, -9.186311543999906 ], [ 125.007232301000045, -9.186104837999949 ], [ 124.974469442000157, -9.191892598999914 ], [ 124.957932984000081, -9.21194305399996 ], [ 124.954108928000096, -9.241501973999988 ], [ 124.960155070000098, -9.276021829999877 ], [ 124.965994507000062, -9.293385111999896 ], [ 124.972815796000134, -9.304650572999947 ], [ 124.996690308000098, -9.325837910999908 ], [ 125.017877645000056, -9.338963724999886 ], [ 125.023407024000164, -9.345578307999887 ], [ 125.024802287000057, -9.351986184999916 ], [ 125.022786906000078, -9.367695820999884 ], [ 125.023768758000074, -9.3747238159999 ], [ 125.046299683000086, -9.409863788999942 ], [ 125.050930754000092, -9.42469684299995 ], [ 125.061615431000064, -9.485772393999923 ], [ 125.061289910000028, -9.48601653399993 ], [ 125.030772332000083, -9.50750090899993 ], [ 125.001963738000086, -9.536309502999927 ], [ 124.986582879000025, -9.577325127999927 ], [ 124.97974694100003, -9.649021091999941 ], [ 124.970713738000086, -9.662367445999905 ], [ 124.874766472000033, -9.724704684999949 ], [ 124.84693444100003, -9.748223565999922 ], [ 124.758474155000044, -9.850762627999927 ], [ 124.747813347000033, -9.886163018999923 ], [ 124.734548373000052, -9.899509372999944 ], [ 124.678477410000028, -9.930108330999929 ], [ 124.641286655000044, -9.956638278999947 ], [ 124.608083530000044, -9.986748955999929 ], [ 124.560313347000033, -10.015232028999947 ], [ 124.540782097000033, -10.036553643999923 ], [ 124.52466881600003, -10.083428643999923 ], [ 124.510020379000025, -10.096286716999941 ], [ 124.499359571000014, -10.111993096999925 ], [ 124.451996290000011, -10.146416924999926 ], [ 124.418467644000089, -10.163832289999959 ], [ 124.380869988000086, -10.170505466999941 ], [ 124.271983269000089, -10.166192315999922 ], [ 124.196787957000083, -10.173760674999926 ], [ 124.164805535000028, -10.180596612999921 ], [ 124.153656446000014, -10.178806247999944 ], [ 124.134125196000014, -10.172133070999905 ], [ 124.122406446000014, -10.172539971999925 ], [ 124.107676629000025, -10.184340101999908 ], [ 124.087412957000083, -10.225681247999944 ], [ 124.078135613000086, -10.234633070999905 ], [ 124.057383660000028, -10.238946221999925 ], [ 124.04851321700005, -10.249607028999947 ], [ 124.043467644000089, -10.263116143999923 ], [ 124.033864780000044, -10.276136976999908 ], [ 124.019786004000025, -10.281019789999959 ], [ 123.932790561000047, -10.294854424999926 ], [ 123.826345248000052, -10.363946221999925 ], [ 123.799327019000089, -10.37468840899993 ], [ 123.787364129000025, -10.368340752999927 ], [ 123.778168165000011, -10.358330987999921 ], [ 123.75709069100003, -10.360446872999944 ], [ 123.719086134, -10.371758721999925 ], [ 123.698985222000033, -10.367364190999922 ], [ 123.678721550000091, -10.356622002999927 ], [ 123.658864780000044, -10.34929778399993 ], [ 123.639659050000091, -10.355075778999947 ], [ 123.617442254000025, -10.366306247999944 ], [ 123.602061394000089, -10.361423434999949 ], [ 123.574473504000025, -10.337660414999959 ], [ 123.559418165000011, -10.333754164999959 ], [ 123.536468946000014, -10.331963799999926 ], [ 123.515391472000033, -10.335544528999947 ], [ 123.502207879000025, -10.35320403399993 ], [ 123.492930535000028, -10.360772393999923 ], [ 123.481618686000047, -10.366143487999921 ], [ 123.472015821000014, -10.36492278399993 ], [ 123.468597852000016, -10.356215101999908 ], [ 123.472422722000033, -10.345147393999923 ], [ 123.485687696000014, -10.32390715899993 ], [ 123.49341881600003, -10.301934502999927 ], [ 123.494965040000011, -10.282159112999921 ], [ 123.492523634, -10.245212497999944 ], [ 123.499522332000083, -10.230726820999905 ], [ 123.515391472000033, -10.213067315999922 ], [ 123.547129754000025, -10.18678150799991 ], [ 123.597911004000025, -10.166680596999925 ], [ 123.612315300000091, -10.156426690999922 ], [ 123.62037194100003, -10.153008721999925 ], [ 123.656993035000028, -10.146416924999926 ], [ 123.66570071700005, -10.143161716999941 ], [ 123.748545769000089, -10.097751559999949 ], [ 123.764659050000091, -10.074965101999908 ], [ 123.74577884200005, -10.050388278999947 ], [ 123.726084832000083, -10.039239190999922 ], [ 123.705821160000028, -10.030694268999923 ], [ 123.684336785000028, -10.024997653999947 ], [ 123.660411004000025, -10.023044528999947 ], [ 123.63835696700005, -10.029961846999925 ], [ 123.605642123000052, -10.054294528999947 ], [ 123.588145379000025, -10.050388278999947 ], [ 123.57740319100003, -10.034356377999927 ], [ 123.576182488000086, -10.013929945999905 ], [ 123.583750847000033, -9.944024346999925 ], [ 123.592295769000089, -9.928806247999944 ], [ 123.629079623000052, -9.906345309999949 ], [ 123.650157097000033, -9.889418226999908 ], [ 123.660411004000025, -9.871270440999922 ], [ 123.66374759200005, -9.85084400799991 ], [ 123.663828972000033, -9.827243747999944 ], [ 123.660411004000025, -9.816582940999922 ], [ 123.64576256600003, -9.796807549999926 ], [ 123.643321160000028, -9.782810153999947 ], [ 123.646494988000086, -9.774997653999947 ], [ 123.652598504000025, -9.770277601999908 ], [ 123.659190300000091, -9.766534112999921 ], [ 123.663828972000033, -9.761651299999926 ], [ 123.669932488000086, -9.740492445999905 ], [ 123.67156009200005, -9.650160414999959 ], [ 123.676605665000011, -9.629652601999908 ], [ 123.688812696000014, -9.611423434999949 ], [ 123.711680535000028, -9.591566664999959 ], [ 123.746918165000011, -9.573988539999959 ], [ 123.756358269000089, -9.567071221999925 ], [ 123.783946160000028, -9.525811455999929 ], [ 123.793793165000011, -9.517022393999923 ], [ 123.801117384, -9.514418226999908 ], [ 123.809336785000028, -9.513278903999947 ], [ 123.82154381600003, -9.50904713299991 ], [ 123.826996290000011, -9.504652601999908 ], [ 123.836680535000028, -9.492608330999929 ], [ 123.842051629000025, -9.48796965899993 ], [ 123.846690300000091, -9.487237237999921 ], [ 123.85865319100003, -9.489027601999908 ], [ 123.863047722000033, -9.48796965899993 ], [ 123.89576256600003, -9.440524997999944 ], [ 123.907237175000091, -9.43328215899993 ], [ 123.912608269000089, -9.425957940999922 ], [ 123.95866946700005, -9.385511976999908 ], [ 123.979502800000091, -9.358493747999944 ], [ 123.99146569100003, -9.348077080999929 ], [ 124.010101759, -9.343926690999922 ], [ 124.030039910000028, -9.341973565999922 ], [ 124.06269047, -9.397874856999891 ], [ 124.090285685000026, -9.421542662999911 ], [ 124.121084839000105, -9.42691701299988 ], [ 124.133745565000027, -9.419268899999906 ], [ 124.153796021000062, -9.391880391999862 ], [ 124.167231893, -9.380614928999904 ], [ 124.183613323000088, -9.37389699299996 ], [ 124.197462606000045, -9.373173522999878 ], [ 124.210691773000065, -9.378857930999914 ], [ 124.225781291000146, -9.391570332999962 ], [ 124.237150106000115, -9.405212910999879 ], [ 124.246865275000062, -9.421542662999911 ], [ 124.253996623000035, -9.438699238999973 ], [ 124.257510621000051, -9.455442402999921 ], [ 124.256890503000022, -9.462883808999948 ], [ 124.253376506000052, -9.480557148999949 ], [ 124.253376506000052, -9.486448261999954 ], [ 124.256580445000111, -9.499367370999963 ], [ 124.257510621000051, -9.501227721999967 ] ] ], [ [ [ 123.146250847000033, -8.425957940999922 ], [ 123.169769727000016, -8.43132903399993 ], [ 123.179942254000025, -8.444431247999944 ], [ 123.177500847000033, -8.46021900799991 ], [ 123.163584832000083, -8.473728122999944 ], [ 123.121755405000044, -8.486260674999926 ], [ 123.037852410000028, -8.49187590899993 ], [ 123.006602410000028, -8.507907809999949 ], [ 122.955251498000052, -8.58562590899993 ], [ 122.930837436000047, -8.604099216999941 ], [ 122.913910352000016, -8.608330987999921 ], [ 122.902598504000025, -8.604587497999944 ], [ 122.882985873000052, -8.582940362999921 ], [ 122.910411004000025, -8.514743747999944 ], [ 122.999847852000016, -8.448663018999923 ], [ 123.00904381600003, -8.448174737999921 ], [ 123.018321160000028, -8.451267184999949 ], [ 123.029795769000089, -8.453220309999949 ], [ 123.042491082000083, -8.451429945999905 ], [ 123.074229363000086, -8.439629815999922 ], [ 123.085785352000016, -8.438571872999944 ], [ 123.10474694100003, -8.44068775799991 ], [ 123.115896030000044, -8.439629815999922 ], [ 123.124359571000014, -8.436293226999908 ], [ 123.140391472000033, -8.427666924999926 ], [ 123.146250847000033, -8.425957940999922 ] ] ], [ [ [ 120.792491082000083, -9.960870049999926 ], [ 120.812266472000033, -9.983575127999927 ], [ 120.831553582000083, -10.014418226999908 ], [ 120.839854363000086, -10.051364841999941 ], [ 120.826670769000089, -10.091241143999923 ], [ 120.817393425000091, -10.101820570999905 ], [ 120.785166863000086, -10.124769789999959 ], [ 120.74187259200005, -10.170993747999944 ], [ 120.724619988000086, -10.196872653999947 ], [ 120.711192254000025, -10.20671965899993 ], [ 120.650563998000052, -10.223565362999921 ], [ 120.641612175000091, -10.231215101999908 ], [ 120.63054446700005, -10.235935153999947 ], [ 120.56609134200005, -10.22779713299991 ], [ 120.547373894000089, -10.233330987999921 ], [ 120.500743035000028, -10.256768487999921 ], [ 120.49146569100003, -10.265883070999905 ], [ 120.489756707000083, -10.285251559999949 ], [ 120.483164910000028, -10.300957940999922 ], [ 120.470469597000033, -10.310316664999959 ], [ 120.449961785000028, -10.310316664999959 ], [ 120.432302280000044, -10.30006275799991 ], [ 120.409353061000047, -10.269626559999949 ], [ 120.391612175000091, -10.263116143999923 ], [ 120.24187259200005, -10.241631768999923 ], [ 120.230235222000033, -10.245212497999944 ], [ 120.220469597000033, -10.239434502999927 ], [ 120.155609571000014, -10.220961195999905 ], [ 120.150157097000033, -10.214450778999947 ], [ 120.13990319100003, -10.193942966999941 ], [ 120.134613477000016, -10.18678150799991 ], [ 120.093109571000014, -10.168389580999929 ], [ 120.086924675000091, -10.162855726999908 ], [ 120.059418165000011, -10.118584893999923 ], [ 120.048350457000083, -10.113213799999926 ], [ 120.039805535000028, -10.114678643999923 ], [ 120.034190300000091, -10.112074476999908 ], [ 120.027191602000016, -10.06764088299991 ], [ 120.01490319100003, -10.043226820999905 ], [ 119.976328972000033, -9.992445570999905 ], [ 119.967295769000089, -9.983575127999927 ], [ 119.957286004000025, -9.976983330999929 ], [ 119.94654381600003, -9.974541924999926 ], [ 119.931488477000016, -9.973565362999921 ], [ 119.920664910000028, -9.969496351999908 ], [ 119.913259311000047, -9.961358330999929 ], [ 119.908702019000089, -9.947198174999926 ], [ 119.896250847000033, -9.955336195999905 ], [ 119.890472852000016, -9.951267184999949 ], [ 119.886892123000052, -9.941582940999922 ], [ 119.880707227000016, -9.933526299999926 ], [ 119.860362175000091, -9.922539971999925 ], [ 119.85084069100003, -9.920098565999922 ], [ 119.811371290000011, -9.917168877999927 ], [ 119.793955925000091, -9.910577080999929 ], [ 119.757823113000086, -9.885186455999929 ], [ 119.697113477000016, -9.852634372999944 ], [ 119.688975457000083, -9.84107838299991 ], [ 119.685069207000083, -9.812758070999905 ], [ 119.674082879000025, -9.800225518999923 ], [ 119.63445071700005, -9.789646091999941 ], [ 119.633636915000011, -9.786228122999944 ], [ 119.635020379000025, -9.772637627999927 ], [ 119.63445071700005, -9.769138278999947 ], [ 119.628103061000047, -9.768649997999944 ], [ 119.622080925000091, -9.77117278399993 ], [ 119.61687259200005, -9.774183851999908 ], [ 119.613129102000016, -9.775323174999926 ], [ 119.588877800000091, -9.770277601999908 ], [ 119.540049675000091, -9.765883070999905 ], [ 119.499034050000091, -9.752129815999922 ], [ 119.477305535000028, -9.748630466999941 ], [ 119.460297071000014, -9.750095309999949 ], [ 119.439789259, -9.754652601999908 ], [ 119.422536655000044, -9.762139580999929 ], [ 119.41529381600003, -9.772230726999908 ], [ 119.406097852000016, -9.790134372999944 ], [ 119.385590040000011, -9.78289153399993 ], [ 119.34693444100003, -9.755466403999947 ], [ 119.338389519000089, -9.755059502999927 ], [ 119.327891472000033, -9.761814059999949 ], [ 119.319102410000028, -9.761651299999926 ], [ 119.310801629000025, -9.758070570999905 ], [ 119.28484134200005, -9.741143487999921 ], [ 119.261485222000033, -9.74578215899993 ], [ 119.219737175000091, -9.746189059999949 ], [ 119.177093946000014, -9.741387627999927 ], [ 119.136729363000086, -9.724053643999923 ], [ 119.096853061000047, -9.717543226999908 ], [ 119.082530144000089, -9.710544528999947 ], [ 119.037364129000025, -9.675876559999949 ], [ 119.024750196000014, -9.659274997999944 ], [ 119.007172071000014, -9.628106377999927 ], [ 118.997813347000033, -9.616794528999947 ], [ 118.983897332000083, -9.604668877999927 ], [ 118.955739780000044, -9.585056247999944 ], [ 118.941579623000052, -9.570489190999922 ], [ 118.935394727000016, -9.553399346999925 ], [ 118.941905144000089, -9.525567315999922 ], [ 118.958018425000091, -9.499607028999947 ], [ 118.979177280000044, -9.47625090899993 ], [ 119.02466881600003, -9.437676690999922 ], [ 119.050791863000086, -9.424004815999922 ], [ 119.078949415000011, -9.415622653999947 ], [ 119.110118035000028, -9.412774346999925 ], [ 119.123545769000089, -9.409356377999927 ], [ 119.153330925000091, -9.39226653399993 ], [ 119.168711785000028, -9.385511976999908 ], [ 119.206879102000016, -9.379001559999949 ], [ 119.240244988000086, -9.378106377999927 ], [ 119.246348504000025, -9.375909112999921 ], [ 119.259776238000086, -9.36646900799991 ], [ 119.267832879000025, -9.364434502999927 ], [ 119.305430535000028, -9.364434502999927 ], [ 119.384532097000033, -9.378106377999927 ], [ 119.394297722000033, -9.375909112999921 ], [ 119.407562696000014, -9.36646900799991 ], [ 119.456797722000033, -9.357598565999922 ], [ 119.476084832000083, -9.361097914999959 ], [ 119.517344597000033, -9.374932549999926 ], [ 119.52857506600003, -9.374932549999926 ], [ 119.547536655000044, -9.362888278999947 ], [ 119.570811394000089, -9.354099216999941 ], [ 119.629242384, -9.341892184999949 ], [ 119.647471550000091, -9.342217705999929 ], [ 119.662364129000025, -9.347914320999905 ], [ 119.668467644000089, -9.36101653399993 ], [ 119.680430535000028, -9.37078215899993 ], [ 119.799489780000044, -9.383721612999921 ], [ 119.821299675000091, -9.37859465899993 ], [ 119.945974155000044, -9.288262627999927 ], [ 119.958750847000033, -9.290459893999923 ], [ 119.963877800000091, -9.313164971999925 ], [ 119.970713738000086, -9.323011976999908 ], [ 120.011729363000086, -9.357598565999922 ], [ 120.070974155000044, -9.441013278999947 ], [ 120.094248894000089, -9.461195570999905 ], [ 120.110850457000083, -9.470635674999926 ], [ 120.129405144000089, -9.478122653999947 ], [ 120.148285352000016, -9.479668877999927 ], [ 120.16529381600003, -9.470879815999922 ], [ 120.183116082000083, -9.466892184999949 ], [ 120.206797722000033, -9.476169528999947 ], [ 120.229258660000028, -9.492282809999949 ], [ 120.243907097000033, -9.50904713299991 ], [ 120.243907097000033, -9.549981377999927 ], [ 120.251149936000047, -9.575372002999927 ], [ 120.253428582000083, -9.613864841999941 ], [ 120.258962436000047, -9.630791924999926 ], [ 120.27116946700005, -9.642510674999926 ], [ 120.330332879000025, -9.669366143999923 ], [ 120.34693444100003, -9.670505466999941 ], [ 120.353770379000025, -9.655857028999947 ], [ 120.364756707000083, -9.645277601999908 ], [ 120.390147332000083, -9.63795338299991 ], [ 120.436289910000028, -9.631280205999929 ], [ 120.458506707000083, -9.63250090899993 ], [ 120.478282097000033, -9.641045830999929 ], [ 120.492360873000052, -9.657647393999923 ], [ 120.49773196700005, -9.683200778999947 ], [ 120.508555535000028, -9.69695403399993 ], [ 120.580332879000025, -9.734958591999941 ], [ 120.606781446000014, -9.769463799999926 ], [ 120.64576256600003, -9.852308851999908 ], [ 120.669688347000033, -9.885186455999929 ], [ 120.697601759, -9.904473565999922 ], [ 120.764414910000028, -9.938897393999923 ], [ 120.792491082000083, -9.960870049999926 ] ] ], [ [ [ 119.722992384, -8.621189059999949 ], [ 119.737803582000083, -8.617120049999926 ], [ 119.767588738000086, -8.617120049999926 ], [ 119.791514519000089, -8.624200127999927 ], [ 119.788584832000083, -8.641534112999921 ], [ 119.758067254000025, -8.661065362999921 ], [ 119.74732506600003, -8.672133070999905 ], [ 119.750498894000089, -8.685967705999929 ], [ 119.73560631600003, -8.689222914999959 ], [ 119.720957879000025, -8.689711195999905 ], [ 119.709157748000052, -8.693536065999922 ], [ 119.702647332000083, -8.706475518999923 ], [ 119.705088738000086, -8.724053643999923 ], [ 119.723399285000028, -8.741794528999947 ], [ 119.722992384, -8.761814059999949 ], [ 119.718760613000086, -8.770440362999921 ], [ 119.702647332000083, -8.792413018999923 ], [ 119.698252800000091, -8.801527601999908 ], [ 119.688649936000047, -8.799248955999929 ], [ 119.679209832000083, -8.79265715899993 ], [ 119.668955925000091, -8.781996351999908 ], [ 119.662933790000011, -8.772556247999944 ], [ 119.65552819100003, -8.76685963299991 ], [ 119.644541863000086, -8.771661065999922 ], [ 119.634776238000086, -8.778415622999944 ], [ 119.624847852000016, -8.78053150799991 ], [ 119.615244988000086, -8.777520440999922 ], [ 119.606293165000011, -8.768649997999944 ], [ 119.614268425000091, -8.739841403999947 ], [ 119.620616082000083, -8.730075778999947 ], [ 119.63445071700005, -8.726983330999929 ], [ 119.629242384, -8.717543226999908 ], [ 119.626800977000016, -8.713962497999944 ], [ 119.642100457000083, -8.706149997999944 ], [ 119.656993035000028, -8.695489190999922 ], [ 119.660411004000025, -8.685479424999926 ], [ 119.641286655000044, -8.679131768999923 ], [ 119.646739129000025, -8.657159112999921 ], [ 119.627207879000025, -8.618340752999927 ], [ 119.63445071700005, -8.596612237999921 ], [ 119.655121290000011, -8.611586195999905 ], [ 119.660980665000011, -8.617771091999941 ], [ 119.664805535000028, -8.627373955999929 ], [ 119.668955925000091, -8.64967213299991 ], [ 119.675303582000083, -8.658786716999941 ], [ 119.695485873000052, -8.667087497999944 ], [ 119.71062259200005, -8.659763278999947 ], [ 119.719899936000047, -8.642510674999926 ], [ 119.722992384, -8.621189059999949 ] ] ], [ [ [ 119.559255405000044, -8.518161716999941 ], [ 119.56177819100003, -8.532159112999921 ], [ 119.568369988000086, -8.54029713299991 ], [ 119.57740319100003, -8.548435153999947 ], [ 119.58716881600003, -8.562432549999926 ], [ 119.572601759, -8.565606377999927 ], [ 119.570567254000025, -8.575372002999927 ], [ 119.572438998000052, -8.58562590899993 ], [ 119.569834832000083, -8.590427341999941 ], [ 119.537852410000028, -8.593682549999926 ], [ 119.525157097000033, -8.590427341999941 ], [ 119.515879754000025, -8.572686455999929 ], [ 119.506683790000011, -8.565850518999923 ], [ 119.493988477000016, -8.573011976999908 ], [ 119.479991082000083, -8.591729424999926 ], [ 119.470957879000025, -8.596774997999944 ], [ 119.456797722000033, -8.596612237999921 ], [ 119.462738477000016, -8.609307549999926 ], [ 119.470713738000086, -8.615411065999922 ], [ 119.478282097000033, -8.614027601999908 ], [ 119.483571811000047, -8.604099216999941 ], [ 119.490977410000028, -8.610935153999947 ], [ 119.480235222000033, -8.635430596999925 ], [ 119.473155144000089, -8.647230726999908 ], [ 119.46648196700005, -8.648532809999949 ], [ 119.455332879000025, -8.644301039999959 ], [ 119.448252800000091, -8.65357838299991 ], [ 119.442556186000047, -8.679131768999923 ], [ 119.443614129000025, -8.690606377999927 ], [ 119.44849694100003, -8.709161065999922 ], [ 119.457367384, -8.728122653999947 ], [ 119.469899936000047, -8.740655205999929 ], [ 119.446625196000014, -8.746351820999905 ], [ 119.399099155000044, -8.726495049999926 ], [ 119.381114129000025, -8.740655205999929 ], [ 119.373708530000044, -8.734470309999949 ], [ 119.381114129000025, -8.734470309999949 ], [ 119.377207879000025, -8.722426039999959 ], [ 119.381195509, -8.708916924999926 ], [ 119.400157097000033, -8.674981377999927 ], [ 119.402110222000033, -8.667575778999947 ], [ 119.401540561000047, -8.641534112999921 ], [ 119.398448113000086, -8.634372653999947 ], [ 119.391368035000028, -8.63209400799991 ], [ 119.384287957000083, -8.631117445999905 ], [ 119.381114129000025, -8.628024997999944 ], [ 119.381114129000025, -8.600355726999908 ], [ 119.37818444100003, -8.573988539999959 ], [ 119.379649285000028, -8.565850518999923 ], [ 119.38795006600003, -8.55632903399993 ], [ 119.393565300000091, -8.554945570999905 ], [ 119.40943444100003, -8.557386976999908 ], [ 119.41529381600003, -8.55632903399993 ], [ 119.415049675000091, -8.553155205999929 ], [ 119.42156009200005, -8.535739841999941 ], [ 119.422129754000025, -8.535251559999949 ], [ 119.422373894000089, -8.526462497999944 ], [ 119.418467644000089, -8.494805596999925 ], [ 119.42701256600003, -8.488051039999959 ], [ 119.424815300000091, -8.472588799999926 ], [ 119.41529381600003, -8.443291924999926 ], [ 119.42156009200005, -8.441501559999949 ], [ 119.456797722000033, -8.425957940999922 ], [ 119.460785352000016, -8.44109465899993 ], [ 119.463389519000089, -8.461195570999905 ], [ 119.468760613000086, -8.479180596999925 ], [ 119.480316602000016, -8.486748955999929 ], [ 119.528819207000083, -8.479261976999908 ], [ 119.545664910000028, -8.481133721999925 ], [ 119.554535352000016, -8.484551690999922 ], [ 119.56023196700005, -8.48796965899993 ], [ 119.569834832000083, -8.497979424999926 ], [ 119.574717644000089, -8.507012627999927 ], [ 119.570485873000052, -8.512139580999929 ], [ 119.562998894000089, -8.51531340899993 ], [ 119.559255405000044, -8.518161716999941 ] ] ], [ [ [ 123.348643425000091, -8.26881275799991 ], [ 123.350271030000044, -8.280043226999908 ], [ 123.34538821700005, -8.287774346999925 ], [ 123.338715040000011, -8.293715101999908 ], [ 123.335459832000083, -8.299248955999929 ], [ 123.327484571000014, -8.367608330999929 ], [ 123.321136915000011, -8.384942315999922 ], [ 123.289317254000025, -8.404473565999922 ], [ 123.244883660000028, -8.404717705999929 ], [ 123.163584832000083, -8.391778252999927 ], [ 123.081553582000083, -8.408623955999929 ], [ 123.041026238000086, -8.410821221999925 ], [ 123.019541863000086, -8.391778252999927 ], [ 123.020843946000014, -8.358330987999921 ], [ 123.036468946000014, -8.332289320999905 ], [ 123.125824415000011, -8.258721612999921 ], [ 123.141612175000091, -8.249932549999926 ], [ 123.156504754000025, -8.243584893999923 ], [ 123.188243035000028, -8.234958591999941 ], [ 123.204437696000014, -8.233493747999944 ], [ 123.237315300000091, -8.23406340899993 ], [ 123.263682488000086, -8.237888278999947 ], [ 123.287852410000028, -8.246351820999905 ], [ 123.314300977000016, -8.26140715899993 ], [ 123.32154381600003, -8.255629164999959 ], [ 123.330821160000028, -8.254652601999908 ], [ 123.340586785000028, -8.258884372999944 ], [ 123.348643425000091, -8.26881275799991 ] ] ], [ [ [ 123.026377800000091, -8.28875090899993 ], [ 123.028005405000044, -8.297051690999922 ], [ 123.026377800000091, -8.320082289999959 ], [ 123.018728061000047, -8.334079684999949 ], [ 123.000743035000028, -8.340997002999927 ], [ 122.942881707000083, -8.343926690999922 ], [ 122.92115319100003, -8.349704684999949 ], [ 122.904144727000016, -8.363376559999949 ], [ 122.897308790000011, -8.38836028399993 ], [ 122.903819207000083, -8.426934502999927 ], [ 122.904551629000025, -8.447035414999959 ], [ 122.897308790000011, -8.46062590899993 ], [ 122.878428582000083, -8.462090752999927 ], [ 122.852875196000014, -8.454278252999927 ], [ 122.830577019000089, -8.443454684999949 ], [ 122.820974155000044, -8.436211846999925 ], [ 122.817718946000014, -8.426446221999925 ], [ 122.810801629000025, -8.428643487999921 ], [ 122.803558790000011, -8.437920830999929 ], [ 122.800547722000033, -8.450127862999921 ], [ 122.801117384, -8.469496351999908 ], [ 122.803070509, -8.477634372999944 ], [ 122.807383660000028, -8.486748955999929 ], [ 122.849375847000033, -8.55201588299991 ], [ 122.848399285000028, -8.583591403999947 ], [ 122.807383660000028, -8.610935153999947 ], [ 122.797129754000025, -8.613539320999905 ], [ 122.74732506600003, -8.620049737999921 ], [ 122.740977410000028, -8.623630466999941 ], [ 122.728526238000086, -8.634860934999949 ], [ 122.721039259, -8.636651299999926 ], [ 122.687510613000086, -8.631442966999941 ], [ 122.679209832000083, -8.632907809999949 ], [ 122.656423373000052, -8.645114841999941 ], [ 122.64966881600003, -8.651950778999947 ], [ 122.638194207000083, -8.651950778999947 ], [ 122.565440300000091, -8.669122002999927 ], [ 122.554942254000025, -8.676527601999908 ], [ 122.525401238000086, -8.70631275799991 ], [ 122.515147332000083, -8.712090752999927 ], [ 122.449473504000025, -8.734307549999926 ], [ 122.40788821700005, -8.74146900799991 ], [ 122.303884311000047, -8.739027601999908 ], [ 122.287119988000086, -8.740655205999929 ], [ 122.26531009200005, -8.748142184999949 ], [ 122.252777540000011, -8.74968840899993 ], [ 122.227061394000089, -8.737237237999921 ], [ 122.162933790000011, -8.726983330999929 ], [ 122.11451256600003, -8.732354424999926 ], [ 122.07781009200005, -8.753838799999926 ], [ 122.04420006600003, -8.780694268999923 ], [ 122.005381707000083, -8.80201588299991 ], [ 121.876149936000047, -8.837660414999959 ], [ 121.834727410000028, -8.858005466999941 ], [ 121.793711785000028, -8.883965752999927 ], [ 121.780446811000047, -8.88795338299991 ], [ 121.769786004000025, -8.887627862999921 ], [ 121.759776238000086, -8.885349216999941 ], [ 121.748708530000044, -8.883965752999927 ], [ 121.73406009200005, -8.879978122999944 ], [ 121.715830925000091, -8.870538018999923 ], [ 121.699229363000086, -8.859470309999949 ], [ 121.690114780000044, -8.850518487999921 ], [ 121.674327019000089, -8.862725518999923 ], [ 121.659353061000047, -8.898207289999959 ], [ 121.646006707000083, -8.905694268999923 ], [ 121.640635613000086, -8.896661065999922 ], [ 121.630869988000086, -8.852634372999944 ], [ 121.621755405000044, -8.836846612999921 ], [ 121.581065300000091, -8.81764088299991 ], [ 121.540863477000016, -8.814873955999929 ], [ 121.500010613000086, -8.816501559999949 ], [ 121.45671634200005, -8.810153903999947 ], [ 121.420176629000025, -8.798028252999927 ], [ 121.396006707000083, -8.794122002999927 ], [ 121.37818444100003, -8.799004815999922 ], [ 121.367035352000016, -8.819919528999947 ], [ 121.370127800000091, -8.842380466999941 ], [ 121.37623131600003, -8.864353122999944 ], [ 121.374766472000033, -8.883965752999927 ], [ 121.340586785000028, -8.918064059999949 ], [ 121.29851321700005, -8.918389580999929 ], [ 121.210948113000086, -8.892022393999923 ], [ 121.16529381600003, -8.895114841999941 ], [ 121.128672722000033, -8.908623955999929 ], [ 121.066905144000089, -8.940524997999944 ], [ 121.04810631600003, -8.944105726999908 ], [ 120.994883660000028, -8.940524997999944 ], [ 120.963877800000091, -8.929620049999926 ], [ 120.958506707000083, -8.925957940999922 ], [ 120.932139519000089, -8.926934502999927 ], [ 120.922862175000091, -8.926202080999929 ], [ 120.906504754000025, -8.913832289999959 ], [ 120.863291863000086, -8.869317315999922 ], [ 120.854502800000091, -8.854180596999925 ], [ 120.848399285000028, -8.82976653399993 ], [ 120.833181186000047, -8.816989841999941 ], [ 120.812998894000089, -8.815036716999941 ], [ 120.792491082000083, -8.823174737999921 ], [ 120.78052819100003, -8.836683851999908 ], [ 120.77312259200005, -8.852471612999921 ], [ 120.764170769000089, -8.865492445999905 ], [ 120.747813347000033, -8.871026299999926 ], [ 120.72584069100003, -8.867445570999905 ], [ 120.711599155000044, -8.859551690999922 ], [ 120.699392123000052, -8.850681247999944 ], [ 120.683360222000033, -8.844333591999941 ], [ 120.67310631600003, -8.843845309999949 ], [ 120.65162194100003, -8.845635674999926 ], [ 120.641612175000091, -8.844333591999941 ], [ 120.62427819100003, -8.826267184999949 ], [ 120.617849155000044, -8.823174737999921 ], [ 120.601084832000083, -8.80201588299991 ], [ 120.593923373000052, -8.795830987999921 ], [ 120.586192254000025, -8.79225025799991 ], [ 120.577891472000033, -8.790215752999927 ], [ 120.556407097000033, -8.788995049999926 ], [ 120.533864780000044, -8.791599216999941 ], [ 120.492686394000089, -8.801364841999941 ], [ 120.470469597000033, -8.80201588299991 ], [ 120.437836134, -8.79656340899993 ], [ 120.425791863000086, -8.795830987999921 ], [ 120.414317254000025, -8.797621351999908 ], [ 120.404307488000086, -8.800713799999926 ], [ 120.393728061000047, -8.801202080999929 ], [ 120.381602410000028, -8.795830987999921 ], [ 120.323008660000028, -8.830661716999941 ], [ 120.279063347000033, -8.82935963299991 ], [ 120.243907097000033, -8.823174737999921 ], [ 120.223643425000091, -8.811455987999921 ], [ 120.182627800000091, -8.776055596999925 ], [ 120.16529381600003, -8.768649997999944 ], [ 120.144786004000025, -8.768731377999927 ], [ 120.131032748000052, -8.77076588299991 ], [ 120.094248894000089, -8.788995049999926 ], [ 120.058848504000025, -8.799899997999944 ], [ 119.975759311000047, -8.813897393999923 ], [ 119.947113477000016, -8.832696221999925 ], [ 119.943369988000086, -8.832289320999905 ], [ 119.939300977000016, -8.832696221999925 ], [ 119.935883009, -8.836846612999921 ], [ 119.936371290000011, -8.842543226999908 ], [ 119.943695509, -8.853122653999947 ], [ 119.942718946000014, -8.858005466999941 ], [ 119.933767123000052, -8.864434502999927 ], [ 119.919932488000086, -8.87078215899993 ], [ 119.907399936000047, -8.871677341999941 ], [ 119.901866082000083, -8.861260674999926 ], [ 119.89185631600003, -8.806735934999949 ], [ 119.883636915000011, -8.802992445999905 ], [ 119.872569207000083, -8.803399346999925 ], [ 119.860362175000091, -8.80201588299991 ], [ 119.839691602000016, -8.792901299999926 ], [ 119.823985222000033, -8.780368747999944 ], [ 119.812754754000025, -8.763278903999947 ], [ 119.805674675000091, -8.740655205999929 ], [ 119.803721550000091, -8.596774997999944 ], [ 119.807790561000047, -8.57000090899993 ], [ 119.820648634, -8.54656340899993 ], [ 119.871104363000086, -8.494073174999926 ], [ 119.873708530000044, -8.472263278999947 ], [ 119.867686394000089, -8.447849216999941 ], [ 119.867198113000086, -8.412855726999908 ], [ 119.897959832000083, -8.444756768999923 ], [ 119.919444207000083, -8.461195570999905 ], [ 119.929209832000083, -8.456963799999926 ], [ 119.934255405000044, -8.455824476999908 ], [ 119.963877800000091, -8.439629815999922 ], [ 119.970469597000033, -8.437595309999949 ], [ 119.977305535000028, -8.436293226999908 ], [ 119.984141472000033, -8.438653252999927 ], [ 119.990570509, -8.447035414999959 ], [ 120.002696160000028, -8.43873463299991 ], [ 120.009776238000086, -8.424737237999921 ], [ 120.015147332000083, -8.405450127999927 ], [ 120.017832879000025, -8.402520440999922 ], [ 120.022227410000028, -8.388848565999922 ], [ 120.024750196000014, -8.384942315999922 ], [ 120.033457879000025, -8.383477471999925 ], [ 120.041758660000028, -8.38600025799991 ], [ 120.049164259, -8.389825127999927 ], [ 120.056000196000014, -8.391778252999927 ], [ 120.059092644000089, -8.390720309999949 ], [ 120.063324415000011, -8.38836028399993 ], [ 120.069183790000011, -8.38600025799991 ], [ 120.076508009, -8.384942315999922 ], [ 120.084320509, -8.387383721999925 ], [ 120.088145379000025, -8.397556247999944 ], [ 120.094248894000089, -8.398614190999922 ], [ 120.108897332000083, -8.39185963299991 ], [ 120.114024285000028, -8.380954684999949 ], [ 120.115977410000028, -8.36687590899993 ], [ 120.120941602000016, -8.350762627999927 ], [ 120.126149936000047, -8.354668877999927 ], [ 120.136973504000025, -8.364678643999923 ], [ 120.142100457000083, -8.371270440999922 ], [ 120.148936394000089, -8.371270440999922 ], [ 120.160899285000028, -8.349867445999905 ], [ 120.196055535000028, -8.31568775799991 ], [ 120.203461134, -8.299248955999929 ], [ 120.212901238000086, -8.292738539999959 ], [ 120.27702884200005, -8.26921965899993 ], [ 120.377940300000091, -8.27507903399993 ], [ 120.391937696000014, -8.267836195999905 ], [ 120.410980665000011, -8.235528252999927 ], [ 120.422048373000052, -8.227308851999908 ], [ 120.437266472000033, -8.232354424999926 ], [ 120.444672071000014, -8.247002862999921 ], [ 120.449717644000089, -8.263767184999949 ], [ 120.457367384, -8.27507903399993 ], [ 120.483409050000091, -8.278741143999923 ], [ 120.521739129000025, -8.255466403999947 ], [ 120.542735222000033, -8.265232028999947 ], [ 120.552907748000052, -8.272881768999923 ], [ 120.567718946000014, -8.28053150799991 ], [ 120.583018425000091, -8.284600518999923 ], [ 120.593923373000052, -8.281914971999925 ], [ 120.601084832000083, -8.269789320999905 ], [ 120.601410352000016, -8.257012627999927 ], [ 120.593923373000052, -8.233493747999944 ], [ 120.635752800000091, -8.249607028999947 ], [ 120.654551629000025, -8.261651299999926 ], [ 120.662282748000052, -8.278497002999927 ], [ 120.67310631600003, -8.29225025799991 ], [ 120.72584069100003, -8.322686455999929 ], [ 120.744639519000089, -8.32976653399993 ], [ 120.812510613000086, -8.320977471999925 ], [ 120.830088738000086, -8.326592705999929 ], [ 120.846446160000028, -8.334161065999922 ], [ 120.87037194100003, -8.339288018999923 ], [ 120.909190300000091, -8.343357028999947 ], [ 120.95435631600003, -8.337497653999947 ], [ 120.976084832000083, -8.337497653999947 ], [ 120.994883660000028, -8.347100518999923 ], [ 121.017832879000025, -8.378513278999947 ], [ 121.03093509200005, -8.392673434999949 ], [ 121.053233269000089, -8.405450127999927 ], [ 121.106293165000011, -8.423923434999949 ], [ 121.125010613000086, -8.425957940999922 ], [ 121.147308790000011, -8.426039320999905 ], [ 121.157074415000011, -8.428887627999927 ], [ 121.166188998000052, -8.436211846999925 ], [ 121.175303582000083, -8.440362237999921 ], [ 121.199961785000028, -8.43873463299991 ], [ 121.210948113000086, -8.439629815999922 ], [ 121.21843509200005, -8.44459400799991 ], [ 121.223399285000028, -8.451755466999941 ], [ 121.229828321000014, -8.457940362999921 ], [ 121.241547071000014, -8.46062590899993 ], [ 121.25123131600003, -8.461114190999922 ], [ 121.270518425000091, -8.46453215899993 ], [ 121.279144727000016, -8.467461846999925 ], [ 121.290537957000083, -8.477471612999921 ], [ 121.316416863000086, -8.514743747999944 ], [ 121.33716881600003, -8.525323174999926 ], [ 121.38054446700005, -8.572198174999926 ], [ 121.408864780000044, -8.582940362999921 ], [ 121.424652540000011, -8.579278252999927 ], [ 121.437022332000083, -8.57195403399993 ], [ 121.45085696700005, -8.566664320999905 ], [ 121.470957879000025, -8.569268487999921 ], [ 121.489431186000047, -8.576104424999926 ], [ 121.49577884200005, -8.582452080999929 ], [ 121.498301629000025, -8.593519789999959 ], [ 121.501719597000033, -8.601820570999905 ], [ 121.509532097000033, -8.602146091999941 ], [ 121.522471550000091, -8.596612237999921 ], [ 121.528086785000028, -8.591241143999923 ], [ 121.56568444100003, -8.568942966999941 ], [ 121.574554884, -8.565850518999923 ], [ 121.57349694100003, -8.547295830999929 ], [ 121.574473504000025, -8.537855726999908 ], [ 121.583750847000033, -8.53639088299991 ], [ 121.608164910000028, -8.542087497999944 ], [ 121.602712436000047, -8.521091403999947 ], [ 121.602712436000047, -8.496351820999905 ], [ 121.609629754000025, -8.476006768999923 ], [ 121.625498894000089, -8.467461846999925 ], [ 121.638682488000086, -8.472751559999949 ], [ 121.680430535000028, -8.511325778999947 ], [ 121.696299675000091, -8.510674737999921 ], [ 121.751312696000014, -8.490817966999941 ], [ 121.77271569100003, -8.486748955999929 ], [ 121.78443444100003, -8.489434502999927 ], [ 121.79029381600003, -8.492608330999929 ], [ 121.795909050000091, -8.494724216999941 ], [ 121.806813998000052, -8.494805596999925 ], [ 121.813975457000083, -8.491794528999947 ], [ 121.834727410000028, -8.473728122999944 ], [ 121.851573113000086, -8.484551690999922 ], [ 121.871592644000089, -8.491957289999959 ], [ 121.892751498000052, -8.492852471999925 ], [ 121.931976759, -8.474216403999947 ], [ 121.940114780000044, -8.467950127999927 ], [ 121.943207227000016, -8.456963799999926 ], [ 121.948252800000091, -8.452569268999923 ], [ 121.984873894000089, -8.447035414999959 ], [ 121.993337436000047, -8.441501559999949 ], [ 122.000498894000089, -8.433851820999905 ], [ 122.008148634, -8.427504164999959 ], [ 122.019053582000083, -8.425957940999922 ], [ 122.028656446000014, -8.43092213299991 ], [ 122.037282748000052, -8.440199476999908 ], [ 122.041188998000052, -8.449151299999926 ], [ 122.026540561000047, -8.461114190999922 ], [ 122.022146030000044, -8.479261976999908 ], [ 122.025645379000025, -8.499769789999959 ], [ 122.039561394000089, -8.514743747999944 ], [ 122.049082879000025, -8.516534112999921 ], [ 122.071055535000028, -8.514092705999929 ], [ 122.081065300000091, -8.514743747999944 ], [ 122.092051629000025, -8.519707940999922 ], [ 122.112478061000047, -8.532647393999923 ], [ 122.125498894000089, -8.535251559999949 ], [ 122.141123894000089, -8.541680596999925 ], [ 122.22974694100003, -8.61687590899993 ], [ 122.258067254000025, -8.631280205999929 ], [ 122.288422071000014, -8.633884372999944 ], [ 122.451019727000016, -8.604099216999941 ], [ 122.477386915000011, -8.59498463299991 ], [ 122.500743035000028, -8.576267184999949 ], [ 122.514659050000091, -8.552666924999926 ], [ 122.512461785000028, -8.528252862999921 ], [ 122.506195509, -8.522556247999944 ], [ 122.490489129000025, -8.518324476999908 ], [ 122.485118035000028, -8.514743747999944 ], [ 122.481211785000028, -8.506117445999905 ], [ 122.48170006600003, -8.500583591999941 ], [ 122.483897332000083, -8.494398695999905 ], [ 122.485118035000028, -8.483982028999947 ], [ 122.494151238000086, -8.475030205999929 ], [ 122.54656009200005, -8.453220309999949 ], [ 122.561534050000091, -8.441338799999926 ], [ 122.598155144000089, -8.395196221999925 ], [ 122.614024285000028, -8.38640715899993 ], [ 122.652842644000089, -8.384209893999923 ], [ 122.670176629000025, -8.377536716999941 ], [ 122.688243035000028, -8.384698174999926 ], [ 122.704112175000091, -8.379082940999922 ], [ 122.719411655000044, -8.369561455999929 ], [ 122.73560631600003, -8.36451588299991 ], [ 122.758148634, -8.36101653399993 ], [ 122.772227410000028, -8.351983330999929 ], [ 122.793711785000028, -8.32350025799991 ], [ 122.820160352000016, -8.305433851999908 ], [ 122.880869988000086, -8.285739841999941 ], [ 122.944102410000028, -8.215427341999941 ], [ 122.950694207000083, -8.203057549999926 ], [ 122.940440300000091, -8.193129164999959 ], [ 122.917002800000091, -8.187676690999922 ], [ 122.876149936000047, -8.185723565999922 ], [ 122.853037957000083, -8.191501559999949 ], [ 122.830414259, -8.201592705999929 ], [ 122.809336785000028, -8.214939059999949 ], [ 122.79029381600003, -8.230401299999926 ], [ 122.785492384, -8.229424737999921 ], [ 122.748871290000011, -8.233493747999944 ], [ 122.741384311000047, -8.230238539999959 ], [ 122.740407748000052, -8.222426039999959 ], [ 122.745127800000091, -8.206801039999959 ], [ 122.775157097000033, -8.162774346999925 ], [ 122.780039910000028, -8.14812590899993 ], [ 122.784190300000091, -8.123955987999921 ], [ 122.795664910000028, -8.110039971999925 ], [ 122.834646030000044, -8.08953215899993 ], [ 122.85320071700005, -8.074314059999949 ], [ 122.86255944100003, -8.069756768999923 ], [ 122.876149936000047, -8.06959400799991 ], [ 122.885590040000011, -8.074965101999908 ], [ 122.894297722000033, -8.09303150799991 ], [ 122.900401238000086, -8.09693775799991 ], [ 122.917491082000083, -8.101332289999959 ], [ 122.936534050000091, -8.111504815999922 ], [ 122.964366082000083, -8.131036065999922 ], [ 122.979665561000047, -8.146905205999929 ], [ 122.982920769000089, -8.160332940999922 ], [ 122.977875196000014, -8.196384372999944 ], [ 123.006602410000028, -8.26140715899993 ], [ 123.021494988000086, -8.27898528399993 ], [ 123.026377800000091, -8.28875090899993 ] ] ], [ [ [ 123.390147332000083, -10.59148528399993 ], [ 123.413096550000091, -10.604587497999944 ], [ 123.420420769000089, -10.619073174999926 ], [ 123.417328321000014, -10.663506768999923 ], [ 123.409190300000091, -10.679131768999923 ], [ 123.389414910000028, -10.680108330999929 ], [ 123.366547071000014, -10.67546965899993 ], [ 123.348643425000091, -10.674086195999905 ], [ 123.331553582000083, -10.682305596999925 ], [ 123.276866082000083, -10.725030205999929 ], [ 123.267425977000016, -10.729424737999921 ], [ 123.254730665000011, -10.733086846999925 ], [ 123.24341881600003, -10.737725518999923 ], [ 123.238780144000089, -10.74537525799991 ], [ 123.237803582000083, -10.76881275799991 ], [ 123.235850457000083, -10.77898528399993 ], [ 123.231944207000083, -10.789483330999929 ], [ 123.209157748000052, -10.813083591999941 ], [ 123.17701256600003, -10.820407809999949 ], [ 123.139821811000047, -10.822686455999929 ], [ 122.988047722000033, -10.865004164999959 ], [ 122.967539910000028, -10.875909112999921 ], [ 122.957692905000044, -10.888116143999923 ], [ 122.971690300000091, -10.899346612999921 ], [ 122.971690300000091, -10.906182549999926 ], [ 122.880218946000014, -10.922621351999908 ], [ 122.841807488000086, -10.921075127999927 ], [ 122.820974155000044, -10.893243096999925 ], [ 122.814707879000025, -10.803806247999944 ], [ 122.810069207000083, -10.78484465899993 ], [ 122.812510613000086, -10.778415622999944 ], [ 122.833343946000014, -10.773207289999959 ], [ 122.854991082000083, -10.755303643999923 ], [ 122.91765384200005, -10.737481377999927 ], [ 122.941416863000086, -10.734958591999941 ], [ 122.962657097000033, -10.73601653399993 ], [ 122.973643425000091, -10.735121351999908 ], [ 122.98170006600003, -10.731540622999944 ], [ 122.994151238000086, -10.723565362999921 ], [ 123.005056186000047, -10.722100518999923 ], [ 123.01531009200005, -10.722914320999905 ], [ 123.026377800000091, -10.721856377999927 ], [ 123.049164259, -10.711358330999929 ], [ 123.098399285000028, -10.663506768999923 ], [ 123.119476759, -10.650648695999905 ], [ 123.161631707000083, -10.633396091999941 ], [ 123.177256707000083, -10.61882903399993 ], [ 123.181162957000083, -10.60906340899993 ], [ 123.184336785000028, -10.588962497999944 ], [ 123.190928582000083, -10.57781340899993 ], [ 123.200368686000047, -10.57350025799991 ], [ 123.209157748000052, -10.575941664999959 ], [ 123.215586785000028, -10.574965101999908 ], [ 123.218109571000014, -10.560479424999926 ], [ 123.225108269000089, -10.543633721999925 ], [ 123.241953972000033, -10.528903903999947 ], [ 123.280284050000091, -10.508965752999927 ], [ 123.335459832000083, -10.490329684999949 ], [ 123.352305535000028, -10.47820403399993 ], [ 123.374034050000091, -10.443536065999922 ], [ 123.386485222000033, -10.433038018999923 ], [ 123.396250847000033, -10.447523695999905 ], [ 123.397146030000044, -10.463474216999941 ], [ 123.39226321700005, -10.475681247999944 ], [ 123.375824415000011, -10.495863539999959 ], [ 123.393890821000014, -10.509209893999923 ], [ 123.388031446000014, -10.529717705999929 ], [ 123.375254754000025, -10.548435153999947 ], [ 123.372813347000033, -10.556817315999922 ], [ 123.37818444100003, -10.561618747999944 ], [ 123.371592644000089, -10.571709893999923 ], [ 123.361338738000086, -10.580336195999905 ], [ 123.355967644000089, -10.581231377999927 ], [ 123.359385613000086, -10.590752862999921 ], [ 123.367686394000089, -10.591973565999922 ], [ 123.378754102000016, -10.590427341999941 ], [ 123.390147332000083, -10.59148528399993 ] ] ], [ [ [ 121.940196160000028, -10.430108330999929 ], [ 121.959808790000011, -10.440118096999925 ], [ 121.979502800000091, -10.437920830999929 ], [ 121.995941602000016, -10.441338799999926 ], [ 122.005381707000083, -10.467950127999927 ], [ 121.997894727000016, -10.508965752999927 ], [ 121.990896030000044, -10.521579684999949 ], [ 121.95281009200005, -10.553399346999925 ], [ 121.930023634, -10.566664320999905 ], [ 121.919688347000033, -10.574395440999922 ], [ 121.915049675000091, -10.577080987999921 ], [ 121.909922722000033, -10.578057549999926 ], [ 121.898936394000089, -10.57781340899993 ], [ 121.89185631600003, -10.580743096999925 ], [ 121.887461785000028, -10.587497653999947 ], [ 121.884532097000033, -10.594414971999925 ], [ 121.881846550000091, -10.598321221999925 ], [ 121.859711134, -10.604099216999941 ], [ 121.796885613000086, -10.598321221999925 ], [ 121.75318444100003, -10.601006768999923 ], [ 121.73210696700005, -10.59734465899993 ], [ 121.710459832000083, -10.584649346999925 ], [ 121.699066602000016, -10.575778903999947 ], [ 121.694346550000091, -10.571058851999908 ], [ 121.690114780000044, -10.564222914999959 ], [ 121.706228061000047, -10.55242278399993 ], [ 121.826426629000025, -10.49382903399993 ], [ 121.861338738000086, -10.440606377999927 ], [ 121.879649285000028, -10.428887627999927 ], [ 121.90162194100003, -10.420993747999944 ], [ 121.92310631600003, -10.420342705999929 ], [ 121.940196160000028, -10.430108330999929 ] ] ], [ [ [ 123.465830925000091, -10.149834893999923 ], [ 123.473806186000047, -10.162855726999908 ], [ 123.504649285000028, -10.171319268999923 ], [ 123.506114129000025, -10.18678150799991 ], [ 123.494965040000011, -10.198174737999921 ], [ 123.459239129000025, -10.214613539999959 ], [ 123.451670769000089, -10.224379164999959 ], [ 123.446625196000014, -10.239678643999923 ], [ 123.435069207000083, -10.242771091999941 ], [ 123.42156009200005, -10.235935153999947 ], [ 123.410655144000089, -10.220961195999905 ], [ 123.396250847000033, -10.22779713299991 ], [ 123.418630405000044, -10.273044528999947 ], [ 123.424489780000044, -10.299004815999922 ], [ 123.410655144000089, -10.310316664999959 ], [ 123.416758660000028, -10.324639580999929 ], [ 123.413422071000014, -10.332614841999941 ], [ 123.40357506600003, -10.334405205999929 ], [ 123.390147332000083, -10.330824476999908 ], [ 123.387380405000044, -10.324639580999929 ], [ 123.377452019000089, -10.310804945999905 ], [ 123.367035352000016, -10.301202080999929 ], [ 123.362152540000011, -10.306898695999905 ], [ 123.35474694100003, -10.322442315999922 ], [ 123.338389519000089, -10.337497653999947 ], [ 123.321787957000083, -10.338962497999944 ], [ 123.314300977000016, -10.313409112999921 ], [ 123.315196160000028, -10.283949476999908 ], [ 123.31999759200005, -10.267754815999922 ], [ 123.332286004000025, -10.254571221999925 ], [ 123.355967644000089, -10.234633070999905 ], [ 123.369802280000044, -10.216892184999949 ], [ 123.389414910000028, -10.175225518999923 ], [ 123.403819207000083, -10.157647393999923 ], [ 123.41724694100003, -10.14967213299991 ], [ 123.438243035000028, -10.141289971999925 ], [ 123.457530144000089, -10.139336846999925 ], [ 123.465830925000091, -10.149834893999923 ] ] ], [ [ [ 123.927989129000025, -8.227308851999908 ], [ 123.938812696000014, -8.232191664999959 ], [ 123.941172722000033, -8.243747653999947 ], [ 123.937510613000086, -8.265232028999947 ], [ 123.932383660000028, -8.271416924999926 ], [ 123.920583530000044, -8.276136976999908 ], [ 123.876475457000083, -8.286228122999944 ], [ 123.811289910000028, -8.28875090899993 ], [ 123.789886915000011, -8.293633721999925 ], [ 123.775401238000086, -8.305840752999927 ], [ 123.765879754000025, -8.321709893999923 ], [ 123.750987175000091, -8.356377862999921 ], [ 123.728851759, -8.393324476999908 ], [ 123.687510613000086, -8.436211846999925 ], [ 123.676768425000091, -8.438164971999925 ], [ 123.668793165000011, -8.42742278399993 ], [ 123.662771030000044, -8.41334400799991 ], [ 123.656993035000028, -8.405450127999927 ], [ 123.643077019000089, -8.411228122999944 ], [ 123.62468509200005, -8.427666924999926 ], [ 123.60865319100003, -8.445896091999941 ], [ 123.601817254000025, -8.456963799999926 ], [ 123.596202019000089, -8.461846612999921 ], [ 123.583832227000016, -8.465997002999927 ], [ 123.572113477000016, -8.471612237999921 ], [ 123.56763756600003, -8.481133721999925 ], [ 123.573741082000083, -8.49187590899993 ], [ 123.609222852000016, -8.535251559999949 ], [ 123.597911004000025, -8.555352471999925 ], [ 123.583018425000091, -8.565524997999944 ], [ 123.564707879000025, -8.568942966999941 ], [ 123.543467644000089, -8.569268487999921 ], [ 123.533864780000044, -8.563083591999941 ], [ 123.511485222000033, -8.532810153999947 ], [ 123.500010613000086, -8.521579684999949 ], [ 123.455088738000086, -8.569268487999921 ], [ 123.445323113000086, -8.572523695999905 ], [ 123.430511915000011, -8.587090752999927 ], [ 123.420746290000011, -8.590427341999941 ], [ 123.406748894000089, -8.589450778999947 ], [ 123.399424675000091, -8.586032809999949 ], [ 123.383311394000089, -8.569268487999921 ], [ 123.346853061000047, -8.543226820999905 ], [ 123.324392123000052, -8.534600518999923 ], [ 123.310801629000025, -8.549248955999929 ], [ 123.30201256600003, -8.552829684999949 ], [ 123.291758660000028, -8.555352471999925 ], [ 123.283376498000052, -8.55632903399993 ], [ 123.279144727000016, -8.554945570999905 ], [ 123.26685631600003, -8.548272393999923 ], [ 123.263194207000083, -8.545505466999941 ], [ 123.256114129000025, -8.541924737999921 ], [ 123.250743035000028, -8.544691664999959 ], [ 123.245453321000014, -8.548760674999926 ], [ 123.238780144000089, -8.548923434999949 ], [ 123.227305535000028, -8.526055596999925 ], [ 123.252696160000028, -8.497002862999921 ], [ 123.314300977000016, -8.453220309999949 ], [ 123.357595248000052, -8.411309502999927 ], [ 123.372813347000033, -8.405450127999927 ], [ 123.387054884, -8.401788018999923 ], [ 123.468109571000014, -8.365980726999908 ], [ 123.48015384200005, -8.358086846999925 ], [ 123.485687696000014, -8.350762627999927 ], [ 123.48365319100003, -8.330173434999949 ], [ 123.473317905000044, -8.320977471999925 ], [ 123.437836134, -8.316664320999905 ], [ 123.369639519000089, -8.316664320999905 ], [ 123.366384311000047, -8.304457289999959 ], [ 123.380056186000047, -8.288262627999927 ], [ 123.39966881600003, -8.273858330999929 ], [ 123.414235873000052, -8.267185153999947 ], [ 123.427582227000016, -8.270277601999908 ], [ 123.442881707000083, -8.276950778999947 ], [ 123.456797722000033, -8.279066664999959 ], [ 123.465830925000091, -8.26881275799991 ], [ 123.48015384200005, -8.267510674999926 ], [ 123.502207879000025, -8.246270440999922 ], [ 123.516123894000089, -8.240899346999925 ], [ 123.542735222000033, -8.242771091999941 ], [ 123.56763756600003, -8.24773528399993 ], [ 123.562347852000016, -8.255059502999927 ], [ 123.563487175000091, -8.271905205999929 ], [ 123.560801629000025, -8.281914971999925 ], [ 123.552989129000025, -8.291761976999908 ], [ 123.52662194100003, -8.316664320999905 ], [ 123.517100457000083, -8.337497653999947 ], [ 123.517914259, -8.352959893999923 ], [ 123.528493686000047, -8.364027601999908 ], [ 123.547129754000025, -8.371270440999922 ], [ 123.568369988000086, -8.374932549999926 ], [ 123.58912194100003, -8.373630466999941 ], [ 123.604665561000047, -8.364190362999921 ], [ 123.609222852000016, -8.343357028999947 ], [ 123.600596550000091, -8.329278252999927 ], [ 123.586761915000011, -8.317152601999908 ], [ 123.582286004000025, -8.306084893999923 ], [ 123.601817254000025, -8.295586846999925 ], [ 123.614024285000028, -8.309258721999925 ], [ 123.627940300000091, -8.307305596999925 ], [ 123.639170769000089, -8.294122002999927 ], [ 123.643321160000028, -8.27507903399993 ], [ 123.638926629000025, -8.26140715899993 ], [ 123.630869988000086, -8.252699476999908 ], [ 123.625336134, -8.244886976999908 ], [ 123.629079623000052, -8.233493747999944 ], [ 123.634287957000083, -8.228122653999947 ], [ 123.641612175000091, -8.223077080999929 ], [ 123.64966881600003, -8.21998463299991 ], [ 123.656993035000028, -8.220472914999959 ], [ 123.66570071700005, -8.226983330999929 ], [ 123.667491082000083, -8.234551690999922 ], [ 123.66724694100003, -8.241957289999959 ], [ 123.670664910000028, -8.24773528399993 ], [ 123.684092644000089, -8.251560153999947 ], [ 123.701345248000052, -8.25123463299991 ], [ 123.711680535000028, -8.245538018999923 ], [ 123.704844597000033, -8.233493747999944 ], [ 123.704844597000033, -8.227308851999908 ], [ 123.730723504000025, -8.223321221999925 ], [ 123.750498894000089, -8.208754164999959 ], [ 123.767100457000083, -8.19304778399993 ], [ 123.783946160000028, -8.185723565999922 ], [ 123.788828972000033, -8.184665622999944 ], [ 123.798187696000014, -8.179945570999905 ], [ 123.804453972000033, -8.178887627999927 ], [ 123.810313347000033, -8.181247653999947 ], [ 123.813161655000044, -8.185967705999929 ], [ 123.814952019000089, -8.191013278999947 ], [ 123.818125847000033, -8.193129164999959 ], [ 123.823090040000011, -8.195733330999929 ], [ 123.839854363000086, -8.208428643999923 ], [ 123.848806186000047, -8.213636976999908 ], [ 123.864024285000028, -8.218682549999926 ], [ 123.88404381600003, -8.222914320999905 ], [ 123.927989129000025, -8.227308851999908 ] ] ], [ [ [ 124.308116082000083, -8.220472914999959 ], [ 124.293793165000011, -8.257989190999922 ], [ 124.291026238000086, -8.28053150799991 ], [ 124.297618035000028, -8.299248955999929 ], [ 124.299978061000047, -8.319268487999921 ], [ 124.283457879000025, -8.338555596999925 ], [ 124.246755405000044, -8.36451588299991 ], [ 124.232188347000033, -8.381280205999929 ], [ 124.218760613000086, -8.401543877999927 ], [ 124.208832227000016, -8.423028252999927 ], [ 124.201345248000052, -8.465590101999908 ], [ 124.191661004000025, -8.489353122999944 ], [ 124.178721550000091, -8.511325778999947 ], [ 124.164805535000028, -8.528252862999921 ], [ 124.149587436000047, -8.539320570999905 ], [ 124.129893425000091, -8.548272393999923 ], [ 124.107595248000052, -8.554131768999923 ], [ 124.084971550000091, -8.55632903399993 ], [ 124.059336785000028, -8.551527601999908 ], [ 124.051280144000089, -8.539157809999949 ], [ 124.054942254000025, -8.501071872999944 ], [ 124.050629102000016, -8.48211028399993 ], [ 124.031260613000086, -8.456475518999923 ], [ 124.02702884200005, -8.443291924999926 ], [ 124.01880944100003, -8.429945570999905 ], [ 123.999522332000083, -8.430271091999941 ], [ 123.976898634, -8.437920830999929 ], [ 123.938975457000083, -8.457777601999908 ], [ 123.931162957000083, -8.460056247999944 ], [ 123.92115319100003, -8.46062590899993 ], [ 123.907237175000091, -8.454847914999959 ], [ 123.912852410000028, -8.442152601999908 ], [ 123.925303582000083, -8.430271091999941 ], [ 123.931407097000033, -8.425957940999922 ], [ 123.966970248000052, -8.360772393999923 ], [ 123.985118035000028, -8.338311455999929 ], [ 124.023285352000016, -8.313409112999921 ], [ 124.04420006600003, -8.304864190999922 ], [ 124.058360222000033, -8.306084893999923 ], [ 124.069102410000028, -8.315606377999927 ], [ 124.073741082000083, -8.320977471999925 ], [ 124.083018425000091, -8.349867445999905 ], [ 124.082530144000089, -8.352471612999921 ], [ 124.08326256600003, -8.355889580999929 ], [ 124.097178582000083, -8.377211195999905 ], [ 124.102061394000089, -8.381442966999941 ], [ 124.109385613000086, -8.384942315999922 ], [ 124.110362175000091, -8.363702080999929 ], [ 124.122080925000091, -8.349786065999922 ], [ 124.150563998000052, -8.32976653399993 ], [ 124.184418165000011, -8.27117278399993 ], [ 124.204112175000091, -8.251722914999959 ], [ 124.231781446000014, -8.209079684999949 ], [ 124.247080925000091, -8.196221612999921 ], [ 124.25123131600003, -8.18914153399993 ], [ 124.258148634, -8.182061455999929 ], [ 124.270274285000028, -8.178887627999927 ], [ 124.284678582000083, -8.18328215899993 ], [ 124.294932488000086, -8.193942966999941 ], [ 124.308116082000083, -8.220472914999959 ] ] ], [ [ [ 125.13404381600003, -8.217054945999905 ], [ 125.139170769000089, -8.233575127999927 ], [ 125.137461785000028, -8.321384372999944 ], [ 125.134287957000083, -8.339043877999927 ], [ 125.123301629000025, -8.352308851999908 ], [ 125.099782748000052, -8.357598565999922 ], [ 125.078868035000028, -8.359307549999926 ], [ 125.021250847000033, -8.371270440999922 ], [ 124.932383660000028, -8.377373955999929 ], [ 124.766123894000089, -8.408461195999905 ], [ 124.725352410000028, -8.409763278999947 ], [ 124.670095248000052, -8.403090101999908 ], [ 124.661631707000083, -8.403415622999944 ], [ 124.650157097000033, -8.405450127999927 ], [ 124.639170769000089, -8.410251559999949 ], [ 124.616709832000083, -8.42310963299991 ], [ 124.596446160000028, -8.428155205999929 ], [ 124.576019727000016, -8.437432549999926 ], [ 124.559092644000089, -8.44068775799991 ], [ 124.549571160000028, -8.445896091999941 ], [ 124.54460696700005, -8.447035414999959 ], [ 124.538422071000014, -8.44500090899993 ], [ 124.526540561000047, -8.435642184999949 ], [ 124.520355665000011, -8.432793877999927 ], [ 124.501963738000086, -8.429782809999949 ], [ 124.495453321000014, -8.430352471999925 ], [ 124.486338738000086, -8.432793877999927 ], [ 124.460703972000033, -8.445082289999959 ], [ 124.455414259, -8.447035414999959 ], [ 124.449554884, -8.450290622999944 ], [ 124.444183790000011, -8.457207940999922 ], [ 124.437510613000086, -8.464288018999923 ], [ 124.427907748000052, -8.467461846999925 ], [ 124.418223504000025, -8.464613539999959 ], [ 124.406911655000044, -8.451104424999926 ], [ 124.396820509, -8.447035414999959 ], [ 124.390961134, -8.44890715899993 ], [ 124.373220248000052, -8.45826588299991 ], [ 124.370290561000047, -8.46062590899993 ], [ 124.35710696700005, -8.45631275799991 ], [ 124.350759311000047, -8.448825778999947 ], [ 124.346202019000089, -8.439222914999959 ], [ 124.338552280000044, -8.42937590899993 ], [ 124.333506707000083, -8.413018487999921 ], [ 124.34538821700005, -8.396416924999926 ], [ 124.376475457000083, -8.371270440999922 ], [ 124.386078321000014, -8.358330987999921 ], [ 124.406748894000089, -8.320570570999905 ], [ 124.410492384, -8.306084893999923 ], [ 124.472666863000086, -8.26881275799991 ], [ 124.504405144000089, -8.264092705999929 ], [ 124.514170769000089, -8.26140715899993 ], [ 124.519297722000033, -8.25750090899993 ], [ 124.532969597000033, -8.24382903399993 ], [ 124.542979363000086, -8.237888278999947 ], [ 124.547618035000028, -8.230726820999905 ], [ 124.547618035000028, -8.223728122999944 ], [ 124.537771030000044, -8.220472914999959 ], [ 124.515635613000086, -8.225681247999944 ], [ 124.493174675000091, -8.233493747999944 ], [ 124.421234571000014, -8.267510674999926 ], [ 124.392425977000016, -8.265232028999947 ], [ 124.396820509, -8.220472914999959 ], [ 124.40552819100003, -8.211114190999922 ], [ 124.419688347000033, -8.202243747999944 ], [ 124.432790561000047, -8.19109465899993 ], [ 124.438487175000091, -8.175876559999949 ], [ 124.441905144000089, -8.162041924999926 ], [ 124.450694207000083, -8.149021091999941 ], [ 124.462657097000033, -8.138604424999926 ], [ 124.475271030000044, -8.132582289999959 ], [ 124.496348504000025, -8.138604424999926 ], [ 124.545420769000089, -8.13014088299991 ], [ 124.568695509, -8.131036065999922 ], [ 124.585703972000033, -8.14576588299991 ], [ 124.589203321000014, -8.190606377999927 ], [ 124.603037957000083, -8.206801039999959 ], [ 124.643402540000011, -8.180433851999908 ], [ 124.665049675000091, -8.169691664999959 ], [ 124.687998894000089, -8.165215752999927 ], [ 124.773610873000052, -8.158949476999908 ], [ 124.898285352000016, -8.168145440999922 ], [ 124.938161655000044, -8.158949476999908 ], [ 124.945323113000086, -8.154554945999905 ], [ 124.947764519000089, -8.151136976999908 ], [ 124.952321811000047, -8.149834893999923 ], [ 124.96607506600003, -8.151543877999927 ], [ 124.970876498000052, -8.154229424999926 ], [ 124.97624759200005, -8.158868096999925 ], [ 124.984222852000016, -8.163262627999927 ], [ 124.996755405000044, -8.165215752999927 ], [ 125.04656009200005, -8.157810153999947 ], [ 125.080821160000028, -8.15943775799991 ], [ 125.086924675000091, -8.158786716999941 ], [ 125.092539910000028, -8.161553643999923 ], [ 125.10320071700005, -8.172621351999908 ], [ 125.124522332000083, -8.205824476999908 ], [ 125.13404381600003, -8.217054945999905 ] ] ], [ [ [ 122.360850457000083, -8.43287525799991 ], [ 122.387054884, -8.435642184999949 ], [ 122.410166863000086, -8.443942966999941 ], [ 122.420746290000011, -8.460137627999927 ], [ 122.409190300000091, -8.486748955999929 ], [ 122.376800977000016, -8.501722914999959 ], [ 122.352224155000044, -8.48015715899993 ], [ 122.343923373000052, -8.448418877999927 ], [ 122.360850457000083, -8.43287525799991 ] ] ], [ [ [ 121.710297071000014, -8.28875090899993 ], [ 121.73406009200005, -8.293145440999922 ], [ 121.745290561000047, -8.311700127999927 ], [ 121.744395379000025, -8.334405205999929 ], [ 121.731455925000091, -8.350762627999927 ], [ 121.708994988000086, -8.35475025799991 ], [ 121.693858269000089, -8.344333591999941 ], [ 121.676117384, -8.309258721999925 ], [ 121.685313347000033, -8.303806247999944 ], [ 121.691661004000025, -8.297784112999921 ], [ 121.698741082000083, -8.29225025799991 ], [ 121.710297071000014, -8.28875090899993 ] ] ], [ [ [ 121.614105665000011, -10.602471612999921 ], [ 121.621592644000089, -10.601332289999959 ], [ 121.633311394000089, -10.604180596999925 ], [ 121.631114129000025, -10.615329684999949 ], [ 121.615000847000033, -10.62664153399993 ], [ 121.595225457000083, -10.634535414999959 ], [ 121.574554884, -10.639825127999927 ], [ 121.552744988000086, -10.640394789999959 ], [ 121.531423373000052, -10.638441664999959 ], [ 121.527191602000016, -10.629571221999925 ], [ 121.541026238000086, -10.614841403999947 ], [ 121.564952019000089, -10.603692315999922 ], [ 121.597422722000033, -10.601169528999947 ], [ 121.614105665000011, -10.602471612999921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-KB", "NAME_1": "Kalimantan Barat" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.645274285000028, 2.083238023000092 ], [ 109.626620728000034, 2.029696350000066 ], [ 109.600265747000094, 1.98313588500011 ], [ 109.585072876000083, 1.960915019000069 ], [ 109.574427531000083, 1.948590190000033 ], [ 109.537943970000072, 1.917713522000042 ], [ 109.529365682000048, 1.905156149000035 ], [ 109.528435506000051, 1.88998911600001 ], [ 109.534740032000059, 1.853893127000092 ], [ 109.534326620000058, 1.846451721000079 ], [ 109.534740032000059, 1.838984477000054 ], [ 109.539804322000066, 1.826556295000074 ], [ 109.546625610000035, 1.814334818000049 ], [ 109.555617310000059, 1.802165019000128 ], [ 109.566986125000028, 1.792553203000125 ], [ 109.580111939000119, 1.787979838000084 ], [ 109.624036907000061, 1.787773132000041 ], [ 109.641813599000102, 1.781003520000084 ], [ 109.647187948000123, 1.761883240000088 ], [ 109.640573364000034, 1.683025004000072 ], [ 109.641710246000059, 1.637162171000099 ], [ 109.646981242000095, 1.617628479000103 ], [ 109.658039999000096, 1.597190450000141 ], [ 109.67726363200012, 1.572850850000037 ], [ 109.766353801000037, 1.496473084000087 ], [ 109.773175090000052, 1.4858535770001 ], [ 109.77555220500011, 1.457948303000109 ], [ 109.781546672000047, 1.456294658000061 ], [ 109.8005635990001, 1.466759135000103 ], [ 109.807798299000069, 1.459963684000058 ], [ 109.825471640000103, 1.41756317100004 ], [ 109.842834920000087, 1.403274638000056 ], [ 109.862885377000055, 1.401465963000064 ], [ 109.882729126000129, 1.403843079000112 ], [ 109.902056112000082, 1.403791402000095 ], [ 109.920246216000123, 1.394773865000047 ], [ 109.932545207000089, 1.37852162700004 ], [ 109.951768839000067, 1.319662170000043 ], [ 109.963757772000065, 1.298578186000015 ], [ 109.97626346900006, 1.28772613600006 ], [ 110.012126912000099, 1.270517883000082 ], [ 110.030730428000027, 1.253568014000081 ], [ 110.051814412000056, 1.21548248300013 ], [ 110.07455204300004, 1.198635966000055 ], [ 110.093465617000106, 1.191607971000053 ], [ 110.152170045000048, 1.183856507000129 ], [ 110.170360149000089, 1.17445139600008 ], [ 110.1851396080001, 1.154194234000087 ], [ 110.206740357000058, 1.111716207000129 ], [ 110.256556437000029, 1.039059144000092 ], [ 110.261724080000135, 1.014719544000087 ], [ 110.263481079000087, 0.994307353000039 ], [ 110.272782838000126, 0.991051737000063 ], [ 110.286322063000114, 0.995340881000118 ], [ 110.300791464000042, 0.997717997000066 ], [ 110.351641073000053, 0.98650421100011 ], [ 110.364146769000058, 0.981388245000034 ], [ 110.380683228000123, 0.966608785000105 ], [ 110.422644491000028, 0.90945465100009 ], [ 110.460264933000076, 0.879740703000024 ], [ 110.506360311000094, 0.857313131000112 ], [ 110.553902629000106, 0.851370341000106 ], [ 110.59607059800004, 0.87111073800007 ], [ 110.605992473000072, 0.883306376000078 ], [ 110.609609823000028, 0.890851136000038 ], [ 110.61343387900007, 0.893951721000079 ], [ 110.624802694000039, 0.893124898000053 ], [ 110.63214074800004, 0.888629049000116 ], [ 110.63885868300008, 0.880774231000089 ], [ 110.647747030000119, 0.873901266000118 ], [ 110.66128625500005, 0.872144267000053 ], [ 110.674412069000027, 0.877001851000074 ], [ 110.693015585000069, 0.894675192000065 ], [ 110.704177694000123, 0.901393127000091 ], [ 110.709448690000045, 0.901393127000091 ], [ 110.720714152000028, 0.89736236600001 ], [ 110.724848267000027, 0.897259013000067 ], [ 110.744795370000077, 0.905062154000092 ], [ 110.745725546000131, 0.908007711000096 ], [ 110.758334595000065, 0.914518941000068 ], [ 110.761125123000113, 0.912865296000106 ], [ 110.77125370300007, 0.904390361000111 ], [ 110.776731405000135, 0.903253479000099 ], [ 110.783966106000037, 0.908162740000122 ], [ 110.786239868000052, 0.916275940000048 ], [ 110.787066691000064, 0.934155986000093 ], [ 110.796988566000039, 0.949658915000015 ], [ 110.852695761000064, 0.997201233000027 ], [ 110.880394329000126, 1.010533753000047 ], [ 110.910573365000118, 1.015701396000054 ], [ 110.97341190700007, 1.0177167760001 ], [ 111.197584270000107, 1.075232646000117 ], [ 111.21753137200011, 1.073268942000098 ], [ 111.351786743000105, 1.013892721000062 ], [ 111.374110962000032, 1.007536519000041 ], [ 111.395505005000075, 1.00629628500009 ], [ 111.415038697000057, 1.010223694000061 ], [ 111.454519491000099, 1.022626038000041 ], [ 111.4720894780001, 1.02221262700003 ], [ 111.482424764000086, 1.012859192000079 ], [ 111.48800581900008, 0.997924703000123 ], [ 111.492036581000093, 0.98087148000009 ], [ 111.503198690000033, 0.958443909000096 ], [ 111.515394328000127, 0.964490051000041 ], [ 111.538855429000137, 0.997717997000066 ], [ 111.622674601000085, 1.03027415000011 ], [ 111.637350708000099, 1.032237854000044 ], [ 111.655230754000058, 1.03079091400005 ], [ 111.682102498000063, 1.023452861000067 ], [ 111.734192343000075, 1.00143870000008 ], [ 111.762821086000088, 0.993015442000086 ], [ 111.823075806000134, 1.008466695000081 ], [ 111.910098918000074, 1.114041646000075 ], [ 111.973350871000093, 1.134040426000098 ], [ 112.054069458000129, 1.133627014000098 ], [ 112.079494263000015, 1.137244365000072 ], [ 112.092930135000074, 1.143135478000076 ], [ 112.100061483000104, 1.154917705000074 ], [ 112.15266809100001, 1.3062779750001 ], [ 112.183984009000028, 1.369039001000061 ], [ 112.187394653000126, 1.379658508000134 ], [ 112.188014771000098, 1.391414896000043 ], [ 112.181813599000122, 1.40001902200008 ], [ 112.159075969000014, 1.400794169000079 ], [ 112.15411503100006, 1.409527486000059 ], [ 112.161556437000115, 1.434538880000062 ], [ 112.180056600000057, 1.449034119000089 ], [ 112.295191692, 1.503811137000071 ], [ 112.319066203000034, 1.511743469000038 ], [ 112.380974569000045, 1.517712097000057 ], [ 112.398544556000104, 1.523344828000077 ], [ 112.415907837000134, 1.536651510000098 ], [ 112.42975712100008, 1.550681662000017 ], [ 112.445880168000087, 1.562076315000098 ], [ 112.470478150000133, 1.567657369000116 ], [ 112.768857870000033, 1.552231954000121 ], [ 112.794799439000087, 1.544377136000094 ], [ 112.801517375, 1.543782858000043 ], [ 112.813506308000058, 1.549338073000044 ], [ 112.820534302000056, 1.557632141000099 ], [ 112.826632121000102, 1.567192281000089 ], [ 112.836450643000092, 1.576054789000096 ], [ 112.854950806000033, 1.582721049000028 ], [ 112.871383912000056, 1.580653991000062 ], [ 112.888127076000046, 1.574866232000076 ], [ 112.907660767000039, 1.570525411000105 ], [ 112.956029908, 1.572334086000097 ], [ 112.97318648300012, 1.56985361800011 ], [ 112.997164348000069, 1.560164287000092 ], [ 113.014114217000042, 1.550785014000041 ], [ 113.023415975000091, 1.537013244000093 ], [ 113.024346151000032, 1.514378968000045 ], [ 113.018455038000127, 1.492390645000071 ], [ 113.007292928000084, 1.473270365000076 ], [ 112.991686645000073, 1.456966452000046 ], [ 112.961197551000055, 1.434383850000103 ], [ 112.955306437000161, 1.423557638000077 ], [ 112.958200318000081, 1.415651143000034 ], [ 112.97318648300012, 1.415082703000067 ], [ 113.011427043000026, 1.427975973000073 ], [ 113.050597778, 1.434797262000117 ], [ 113.089045044000102, 1.431334940000085 ], [ 113.125735312000074, 1.413635763000073 ], [ 113.158601522000026, 1.388159281000057 ], [ 113.172760865000157, 1.38374094600006 ], [ 113.217719361000093, 1.380898742000085 ], [ 113.276010376000102, 1.368883973000024 ], [ 113.323656047000156, 1.351391500000062 ], [ 113.397553345000063, 1.293927307000047 ], [ 113.442925253, 1.292377015000028 ], [ 113.482302694000055, 1.308706767000061 ], [ 113.503386679000073, 1.314494527000136 ], [ 113.524470662000056, 1.313564351000082 ], [ 113.546174764000114, 1.301575419000116 ], [ 113.596507609000014, 1.241630758000042 ], [ 113.624826295000105, 1.22757476800011 ], [ 113.64952762900009, 1.233259176000061 ], [ 113.808174276000102, 1.339712626000093 ], [ 113.868222290000119, 1.415496114000078 ], [ 113.891166626000143, 1.434952291000073 ], [ 113.909666789000084, 1.442471212000015 ], [ 114.053947388000097, 1.465053813000054 ], [ 114.094255005000036, 1.465673930000108 ], [ 114.130945272000076, 1.454175924000083 ], [ 114.14107385300008, 1.445261739000074 ], [ 114.150272258000143, 1.434280497000088 ], [ 114.16040083900009, 1.424797872000099 ], [ 114.173423299000149, 1.420508728000044 ], [ 114.183241822000014, 1.423454285000048 ], [ 114.204842571000086, 1.438362935000086 ], [ 114.207405886772221, 1.439443127298489 ], [ 114.205928583037576, 1.424822902754727 ], [ 114.191407505152142, 1.343742581155198 ], [ 114.191149122733805, 1.330151679256574 ], [ 114.192699416344908, 1.31428701423431 ], [ 114.203913202332387, 1.294960028582466 ], [ 114.208409051736339, 1.277906806054261 ], [ 114.208925815673865, 1.261732083568802 ], [ 114.206135288612586, 1.240596421887346 ], [ 114.200554233590992, 1.225093492070982 ], [ 114.192079298720614, 1.21444814686447 ], [ 114.183397658275226, 1.208195299173724 ], [ 114.173062372330605, 1.202252508946117 ], [ 114.146190626895873, 1.177551173847576 ], [ 114.123349643771007, 1.167422594377229 ], [ 114.111774122577685, 1.160704656894382 ], [ 114.018033075066342, 1.078642483363922 ], [ 114.00723270112826, 1.07223460514291 ], [ 113.989817743394042, 1.064379787896883 ], [ 113.97937910376254, 1.058488674512716 ], [ 113.948786656179209, 1.033942369045064 ], [ 113.899280634093998, 1.011463121126155 ], [ 113.886258172976227, 1.003091539043282 ], [ 113.870031772748121, 0.987278550864403 ], [ 113.864450717726413, 0.97642650008288 ], [ 113.863210484276351, 0.964489244582978 ], [ 113.864554071413181, 0.953017076177105 ], [ 113.864450717726413, 0.941596583715352 ], [ 113.860781692421142, 0.919892483051626 ], [ 113.860213250740912, 0.910125636988539 ], [ 113.862590366652057, 0.902322495686633 ], [ 113.867034540111945, 0.897981675913627 ], [ 113.873855828583601, 0.896017971152446 ], [ 113.883364292228293, 0.896689764720861 ], [ 113.903311394605112, 0.904182846760932 ], [ 113.91312991661232, 0.906456610783948 ], [ 113.923051792306296, 0.905681464428028 ], [ 113.933283726362788, 0.900358791824772 ], [ 113.941655308445661, 0.89167715137944 ], [ 113.947288039411433, 0.878913071780801 ], [ 113.948114861711474, 0.862221584458553 ], [ 113.943412306732512, 0.840982570888912 ], [ 113.932921991156945, 0.820415350887743 ], [ 113.927082553716787, 0.802070217166772 ], [ 113.923878614606338, 0.782329820364907 ], [ 113.923258497881307, 0.761607570732792 ], [ 113.917677442859599, 0.736441148540166 ], [ 113.907858920852505, 0.718871161175116 ], [ 113.874165887845379, 0.679907131508912 ], [ 113.850601434308714, 0.645593979978173 ], [ 113.840679558614738, 0.637480780313751 ], [ 113.817735222702368, 0.627610582362479 ], [ 113.807193231182623, 0.619962469792142 ], [ 113.794067417277461, 0.603632716776474 ], [ 113.787866246430099, 0.591850490907404 ], [ 113.776394078024282, 0.558570868151037 ], [ 113.752726271699999, 0.541931056772853 ], [ 113.734949578760052, 0.521363836771627 ], [ 113.725337763227117, 0.514025784362445 ], [ 113.711901890060176, 0.505809231011199 ], [ 113.703323602402293, 0.495318915435575 ], [ 113.687200554961578, 0.461729234316692 ], [ 113.67510826983073, 0.441472073577302 ], [ 113.663274367118333, 0.427106025322814 ], [ 113.646686232583534, 0.41005280189529 ], [ 113.638573032919112, 0.394859931340761 ], [ 113.63521406507698, 0.379718735830977 ], [ 113.636040888276284, 0.345457262042999 ], [ 113.630976597192216, 0.321324367725367 ], [ 113.622915074371122, 0.310937404937306 ], [ 113.611649610640939, 0.306648261108364 ], [ 113.600590855183782, 0.304529526716294 ], [ 113.58880862841545, 0.298276679025491 ], [ 113.557182652057691, 0.271559963221705 ], [ 113.543643427002507, 0.263963528394129 ], [ 113.531551140972283, 0.261431382852038 ], [ 113.50979536256591, 0.264221909913203 ], [ 113.490623407444218, 0.262103176420453 ], [ 113.479151239038401, 0.262981676463198 ], [ 113.445199822713562, 0.275384019057242 ], [ 113.434296095987975, 0.277244371030861 ], [ 113.424477573980766, 0.277141018243412 ], [ 113.416002639110502, 0.275228990325616 ], [ 113.397915887807926, 0.268252672223014 ], [ 113.359365269291743, 0.259932766084262 ], [ 113.324535353823421, 0.245204983523138 ], [ 113.351820510408174, 0.205517483445078 ], [ 113.368615349618608, 0.171566067120295 ], [ 113.380552606017886, 0.159835517195347 ], [ 113.418741490227603, 0.131465154992895 ], [ 113.431505568027546, 0.113378403690376 ], [ 113.453209669590478, 0.065887763209673 ], [ 113.457343784687851, 0.051211655693351 ], [ 113.458790724612186, 0.039326077036833 ], [ 113.458273959775397, 0.03054108290462 ], [ 113.45941084223648, 0.022169500821803 ], [ 113.47853112231337, -0.047542006058734 ], [ 113.480701531750242, -0.063199964606667 ], [ 113.480184767812716, -0.071519870745476 ], [ 113.476774123127257, -0.079581393566457 ], [ 113.448248733092555, -0.128002210933289 ], [ 113.433107537582714, -0.167276299861385 ], [ 113.429335157691298, -0.190427340449389 ], [ 113.425717808330091, -0.197196953876357 ], [ 113.418896518959173, -0.200917656924332 ], [ 113.410834996138078, -0.202312920904603 ], [ 113.402566765943448, -0.204948419234142 ], [ 113.395745476572415, -0.210684502987419 ], [ 113.383963250703459, -0.226910903215639 ], [ 113.378898959619278, -0.23151010450772 ], [ 113.371457554422591, -0.235127454768246 ], [ 113.363809441852254, -0.237246189160317 ], [ 113.356419711700255, -0.238538099453763 ], [ 113.343242221851028, -0.242362156188562 ], [ 113.337144402891795, -0.244687595256323 ], [ 113.331253290406949, -0.248098239941839 ], [ 113.326240676166208, -0.251663914258245 ], [ 113.271928746314529, -0.310575046301381 ], [ 113.252756789394311, -0.338893730761072 ], [ 113.250431350326494, -0.346800224850483 ], [ 113.249191115077906, -0.361062921216842 ], [ 113.252395054188355, -0.36891773756355 ], [ 113.257872756422557, -0.375170587052935 ], [ 113.264073928169182, -0.378839613257583 ], [ 113.276114537355966, -0.384265638648287 ], [ 113.283297561033578, -0.391345309538394 ], [ 113.290428907867749, -0.401783949169953 ], [ 113.300815870655811, -0.422764581220463 ], [ 113.302727898573607, -0.435683688651295 ], [ 113.300970901186133, -0.448086033043978 ], [ 113.281385533115781, -0.488755385052968 ], [ 113.263143752182373, -0.541206963830348 ], [ 113.256425815598845, -0.551387221043399 ], [ 113.235393507604272, -0.552059013712551 ], [ 113.226040073590525, -0.547046401270393 ], [ 113.216428257158327, -0.539449964644177 ], [ 113.205989618426088, -0.529321384274454 ], [ 113.198238153068246, -0.520278008623222 ], [ 113.176223993142685, -0.482089125312882 ], [ 113.168782587046735, -0.47433765995504 ], [ 113.161134475375661, -0.469893486495209 ], [ 113.152349481243505, -0.469841810551145 ], [ 113.144287958422524, -0.472477308880684 ], [ 113.129921910167923, -0.480797214120173 ], [ 113.122480503172596, -0.483949477286558 ], [ 113.113385450677924, -0.485809827461594 ], [ 113.106874220568784, -0.488135267428675 ], [ 113.102533400795778, -0.491545912114191 ], [ 113.095505405849735, -0.505136814012758 ], [ 113.090544467553059, -0.5125265441647 ], [ 113.084033238343181, -0.518469333492931 ], [ 113.059796991238159, -0.522448418959357 ], [ 113.04744632368886, -0.521363214240978 ], [ 113.025742222125814, -0.517022392669276 ], [ 113.012926466583167, -0.517332451931111 ], [ 113.004244826137779, -0.518727715911382 ], [ 112.949984572230164, -0.541930434242147 ], [ 112.924559767619144, -0.560327243907182 ], [ 112.893398879254846, -0.574641614418965 ], [ 112.790304396830379, -0.610195001198349 ], [ 112.773044467827845, -0.622287285429877 ], [ 112.766429884931199, -0.628333428444989 ], [ 112.75506107021215, -0.635929864171885 ], [ 112.578017613022325, -0.704452812647219 ], [ 112.564788446329658, -0.707036635032694 ], [ 112.551765985212, -0.706778252614299 ], [ 112.521380243203566, -0.699336846518236 ], [ 112.507530958886605, -0.698406670531426 ], [ 112.497299025729376, -0.702127373579458 ], [ 112.472184278581494, -0.717630304295142 ], [ 112.379993523782105, -0.7545789532561 ], [ 112.365937534789396, -0.756749362692972 ], [ 112.354465367282842, -0.755405775556085 ], [ 112.329867384971749, -0.748739515815998 ], [ 112.314571160730452, -0.746672459166689 ], [ 112.289559768168715, -0.746052340643018 ], [ 112.239330275671591, -0.736285495479251 ], [ 112.118510777150618, -0.735355319492385 ], [ 112.10564334476453, -0.737887465034476 ], [ 112.096393264437552, -0.742951755219337 ], [ 112.09019209179155, -0.752408542020589 ], [ 112.084300979306704, -0.773492526858661 ], [ 112.058669468221296, -0.795765069202616 ], [ 111.968649122858665, -0.822843520212302 ], [ 111.862092319804674, -0.895138847679675 ], [ 111.819510939877944, -0.91741139092295 ], [ 111.805713332404309, -0.921235446758487 ], [ 111.749747756153965, -0.949450778430673 ], [ 111.651407504652582, -1.01549325910662 ], [ 111.628463168740211, -1.036215508738735 ], [ 111.597508985950924, -1.07600636070498 ], [ 111.590997755841727, -1.088408705097663 ], [ 111.5873804055812, -1.101999606996287 ], [ 111.587587111156211, -1.115590508894854 ], [ 111.596992222013398, -1.143030694211177 ], [ 111.598490838781117, -1.158016860090015 ], [ 111.590170932642366, -1.175173434506405 ], [ 111.577355177999038, -1.186748955699784 ], [ 111.54366214409265, -1.205662530201607 ], [ 111.490177037440276, -1.223645928716621 ], [ 111.472865431594357, -1.242352796744171 ], [ 111.416073033043972, -1.268759454185499 ], [ 111.390596551589567, -1.288034762993902 ], [ 111.370649449212692, -1.309170423776038 ], [ 111.361399367087074, -1.314131362072715 ], [ 111.348428582812801, -1.331287936489105 ], [ 111.327137893299096, -1.373300875634925 ], [ 111.293496535336772, -1.39402312616636 ], [ 111.269466993806702, -1.404771824160377 ], [ 111.242130162177205, -1.42058481143988 ], [ 111.221511265332595, -1.439808445203596 ], [ 111.18843834815118, -1.481873061192857 ], [ 111.170661656110497, -1.493965345424385 ], [ 111.133971388668613, -1.530448907291259 ], [ 111.119915398776584, -1.536495050306314 ], [ 111.108184848851636, -1.536184991044536 ], [ 111.093767123753707, -1.527399997811642 ], [ 111.086532424132031, -1.525229586576188 ], [ 111.075628697406444, -1.524764499482103 ], [ 111.064621616993975, -1.522852471564306 ], [ 111.053149448588158, -1.518821710153816 ], [ 111.035837843641502, -1.518821710153816 ], [ 111.011601597435742, -1.526108086618933 ], [ 110.975738153193163, -1.549982597618794 ], [ 110.957754754678149, -1.566519057108792 ], [ 110.936102329958544, -1.594217624843509 ], [ 110.927162307094761, -1.603674411644818 ], [ 110.920341017723729, -1.613234552132894 ], [ 110.918790725011888, -1.620572604542076 ], [ 110.921581252073054, -1.631476332166983 ], [ 110.929074335012501, -1.643775322872841 ], [ 110.9383244162388, -1.65535084406622 ], [ 110.950623406944658, -1.664497571605636 ], [ 110.96199222166365, -1.665531101279328 ], [ 110.978942092303669, -1.660466811094466 ], [ 110.991654494159548, -1.654420668079354 ], [ 110.999302605830565, -1.651785169749814 ], [ 111.0042118672838, -1.651320081756353 ], [ 111.011033155755513, -1.653697197667555 ], [ 111.017441033976468, -1.660311780564257 ], [ 111.020696649031095, -1.672662449012819 ], [ 111.02059329624359, -1.686098321280497 ], [ 111.013823683715998, -1.711264743473123 ], [ 111.014392123597588, -1.718654472725746 ], [ 111.020076532306064, -1.725630791727667 ], [ 111.02751793840207, -1.732297051467754 ], [ 111.033925815723762, -1.743510836555856 ], [ 111.035579462122428, -1.757825208866279 ], [ 111.026484409627756, -1.796892592219365 ], [ 111.025657587327771, -1.812395522035729 ], [ 111.027414584715245, -1.829603774194823 ], [ 111.025244175278431, -1.867017511149243 ], [ 110.994755079583229, -1.985253188184117 ], [ 110.993411493345718, -2.003856702524786 ], [ 110.996202020406884, -2.071191095292818 ], [ 111.001989781003545, -2.09651254621707 ], [ 111.012325066948222, -2.127363376218852 ], [ 111.137692091716588, -2.404814140660051 ], [ 111.140741001196204, -2.427551771896788 ], [ 111.131077508819942, -2.464242038439352 ], [ 111.127460157660096, -2.486617933570813 ], [ 111.128286980859457, -2.578395278119615 ], [ 111.131697626444236, -2.607799167297742 ], [ 111.136968622204108, -2.622526950758186 ], [ 111.143273146738295, -2.634825941464044 ], [ 111.151489699190222, -2.646349785813982 ], [ 111.160223015579675, -2.667382093808612 ], [ 111.162393426815129, -2.683195081987435 ], [ 111.16110151562242, -2.698439630284724 ], [ 111.156192255068447, -2.711772148865577 ], [ 111.148234084135652, -2.723347670058956 ], [ 111.137588738929139, -2.733011162435218 ], [ 111.122809278625255, -2.74133106857397 ], [ 111.067102084793362, -2.764688815636362 ], [ 111.053252802274983, -2.775385836786938 ], [ 111.042710808956599, -2.791663913858542 ], [ 111.026226027209361, -2.833676853004363 ], [ 111.012635126210057, -2.856311129654898 ], [ 111.005710484051576, -2.86483774226798 ], [ 110.997855665906229, -2.870212090815357 ], [ 110.987210320699717, -2.874604586532428 ], [ 110.959511752965, -2.885559991000775 ], [ 110.959228809708563, -2.885671293063246 ], [ 110.956065300000034, -2.879001559999949 ], [ 110.934092644000032, -2.883884372999944 ], [ 110.896983269000032, -2.90984465899993 ], [ 110.879405144000032, -2.918145440999922 ], [ 110.830088738000029, -2.933770440999922 ], [ 110.811534050000034, -2.936618747999944 ], [ 110.793955925000034, -2.943536065999922 ], [ 110.776866082000026, -2.959730726999908 ], [ 110.697927280000044, -3.062676690999922 ], [ 110.662445509000065, -3.080743096999925 ], [ 110.630625847000033, -3.053317966999941 ], [ 110.62818444100003, -3.04265715899993 ], [ 110.633148634000065, -3.039483330999929 ], [ 110.640147332000026, -3.037204684999949 ], [ 110.643565300000034, -3.02898528399993 ], [ 110.642588738000029, -3.018731377999927 ], [ 110.636729363000029, -2.994886976999908 ], [ 110.635020379000025, -2.974216403999947 ], [ 110.630381707000026, -2.951348565999922 ], [ 110.616953972000033, -2.90984465899993 ], [ 110.588552280000044, -2.876560153999947 ], [ 110.549489780000044, -2.867608330999929 ], [ 110.508067254000025, -2.874607028999947 ], [ 110.404063347000033, -2.920505466999941 ], [ 110.301036004000025, -2.997979424999926 ], [ 110.263194207000026, -3.002862237999921 ], [ 110.240244988000029, -2.973077080999929 ], [ 110.223643425000034, -2.930352471999925 ], [ 110.204844597000033, -2.89617278399993 ], [ 110.221690300000034, -2.876071872999944 ], [ 110.23755944100003, -2.84693775799991 ], [ 110.247080925000034, -2.815118096999925 ], [ 110.245860222000033, -2.786309502999927 ], [ 110.227549675000034, -2.741957289999959 ], [ 110.223155144000032, -2.701918226999908 ], [ 110.213877800000034, -2.669040622999944 ], [ 110.211680535000028, -2.652601820999962 ], [ 110.203786655000044, -2.640069268999923 ], [ 110.167491082000026, -2.632419528999947 ], [ 110.156993035000028, -2.621270440999922 ], [ 110.160411004000025, -2.612399997999944 ], [ 110.179698113000029, -2.590020440999922 ], [ 110.184336785000028, -2.577243747999944 ], [ 110.199229363000029, -2.552341403999947 ], [ 110.231944207000026, -2.556735934999949 ], [ 110.26490319100003, -2.556573174999926 ], [ 110.28052819100003, -2.518243096999925 ], [ 110.246836785000028, -2.539808851999908 ], [ 110.221039259000065, -2.532810153999947 ], [ 110.201182488000029, -2.508233330999929 ], [ 110.159922722000033, -2.436455987999921 ], [ 110.156993035000028, -2.419528903999947 ], [ 110.154795769000032, -2.37623463299991 ], [ 110.140879754000025, -2.289727471999925 ], [ 110.13209069100003, -2.268161716999941 ], [ 110.119476759000065, -2.258721612999921 ], [ 110.104665561000047, -2.252048434999949 ], [ 110.097178582000026, -2.235772393999923 ], [ 110.09498131600003, -2.215508721999925 ], [ 110.095550977000073, -2.197360934999949 ], [ 110.105316602000073, -2.154392184999949 ], [ 110.119883660000028, -2.112074476999908 ], [ 110.129161004000025, -2.069512627999927 ], [ 110.123545769000032, -2.025485934999949 ], [ 110.095469597000033, -1.960137627999927 ], [ 110.092539910000028, -1.949639580999929 ], [ 110.075043165000068, -1.922458591999941 ], [ 110.06576582100007, -1.917575778999947 ], [ 110.034190300000034, -1.909356377999927 ], [ 109.98755944100003, -1.884698174999926 ], [ 109.968597852000073, -1.881442966999941 ], [ 109.953623894000032, -1.87428150799991 ], [ 109.903819207000026, -1.826104424999926 ], [ 109.908946160000028, -1.823337497999944 ], [ 109.918955925000034, -1.815850518999923 ], [ 109.924327019000032, -1.813164971999925 ], [ 109.916270379000025, -1.807793877999927 ], [ 109.910817905000044, -1.799899997999944 ], [ 109.908702019000032, -1.790134372999944 ], [ 109.910655144000032, -1.77898528399993 ], [ 109.921641472000033, -1.769626559999949 ], [ 109.96802819100003, -1.74342213299991 ], [ 109.982676629000025, -1.73796965899993 ], [ 109.993907097000033, -1.730238539999959 ], [ 110.004649285000028, -1.71217213299991 ], [ 110.033946160000028, -1.64617278399993 ], [ 110.038584832000026, -1.627618096999925 ], [ 110.041758660000028, -1.55982838299991 ], [ 110.068532748000052, -1.432549737999921 ], [ 110.071055535000028, -1.38990650799991 ], [ 110.061371290000068, -1.346368096999925 ], [ 110.044118686000047, -1.304782809999949 ], [ 110.029551629000025, -1.285902601999908 ], [ 110.010020379000025, -1.278008721999925 ], [ 109.988291863000029, -1.274997653999947 ], [ 109.96420332100007, -1.265720309999949 ], [ 109.94849694100003, -1.250746351999908 ], [ 109.951508009000065, -1.230889580999929 ], [ 109.929860873000052, -1.223239841999941 ], [ 109.922048373000052, -1.201592705999929 ], [ 109.923675977000073, -1.174004815999922 ], [ 109.93685957100007, -1.127618096999925 ], [ 109.934580925000034, -1.11256275799991 ], [ 109.922699415000068, -1.103610934999949 ], [ 109.900157097000033, -1.100518487999921 ], [ 109.894053582000026, -1.098565362999921 ], [ 109.869639519000032, -1.086195570999962 ], [ 109.85906009200005, -1.085056247999944 ], [ 109.835459832000026, -1.086195570999962 ], [ 109.823008660000028, -1.075290622999944 ], [ 109.80990644600007, -1.045179945999962 ], [ 109.785655144000032, -1.032972914999959 ], [ 109.775157097000033, -1.018731377999927 ], [ 109.759776238000029, -0.990655205999929 ], [ 109.740489129000025, -0.967543226999908 ], [ 109.734141472000033, -0.954034112999921 ], [ 109.73178144600007, -0.932305596999925 ], [ 109.734873894000032, -0.91765715899993 ], [ 109.742198113000029, -0.908135674999926 ], [ 109.75131269600007, -0.899590752999927 ], [ 109.759776238000029, -0.887627862999921 ], [ 109.765147332000026, -0.87428150799991 ], [ 109.763519727000073, -0.870863539999959 ], [ 109.734873894000032, -0.879001559999949 ], [ 109.724375847000033, -0.888767184999949 ], [ 109.719493035000028, -0.904066664999959 ], [ 109.71810957100007, -0.925876559999949 ], [ 109.71412194100003, -0.947360934999949 ], [ 109.703868035000028, -0.96062590899993 ], [ 109.677256707000026, -0.983819268999923 ], [ 109.647959832000026, -0.967461846999925 ], [ 109.629893425000034, -0.951918226999908 ], [ 109.623220248000052, -0.951592705999929 ], [ 109.616221550000034, -0.954685153999947 ], [ 109.605235222000033, -0.956638278999947 ], [ 109.598643425000034, -0.947849216999941 ], [ 109.58171634200005, -0.894463799999926 ], [ 109.55982506600003, -0.877373955999929 ], [ 109.525645379000025, -0.862399997999944 ], [ 109.488780144000032, -0.851657809999949 ], [ 109.438243035000028, -0.845635674999926 ], [ 109.427989129000025, -0.846612237999921 ], [ 109.420664910000028, -0.850192966999941 ], [ 109.413828972000033, -0.860121351999908 ], [ 109.415863477000073, -0.866957289999959 ], [ 109.421071811000047, -0.873793226999908 ], [ 109.424082879000025, -0.884209893999923 ], [ 109.418955925000034, -0.90357838299991 ], [ 109.406504754000025, -0.91139088299991 ], [ 109.390798373000052, -0.911879164999959 ], [ 109.37623131600003, -0.908786716999941 ], [ 109.33521569100003, -0.889092705999929 ], [ 109.328379754000025, -0.884209893999923 ], [ 109.320485873000052, -0.883396091999941 ], [ 109.283864780000044, -0.863213799999926 ], [ 109.273203972000033, -0.853610934999949 ], [ 109.245290561000047, -0.695896091999941 ], [ 109.250987175000034, -0.677666924999926 ], [ 109.262543165000068, -0.667413018999923 ], [ 109.27857506600003, -0.669040622999944 ], [ 109.297373894000032, -0.685642184999949 ], [ 109.31381269600007, -0.69500090899993 ], [ 109.383067254000025, -0.695896091999941 ], [ 109.398203972000033, -0.703057549999926 ], [ 109.429209832000026, -0.725762627999927 ], [ 109.455821160000028, -0.73211028399993 ], [ 109.461924675000034, -0.734795830999929 ], [ 109.468597852000073, -0.737074476999908 ], [ 109.478688998000052, -0.736911716999941 ], [ 109.501719597000033, -0.731052341999941 ], [ 109.509613477000073, -0.725030205999929 ], [ 109.506521030000044, -0.716403903999947 ], [ 109.49732506600003, -0.713636976999908 ], [ 109.471527540000068, -0.716566664999959 ], [ 109.461599155000044, -0.712985934999949 ], [ 109.443614129000025, -0.687432549999926 ], [ 109.434580925000034, -0.678806247999944 ], [ 109.412933790000068, -0.663995049999926 ], [ 109.38990319100003, -0.654880466999941 ], [ 109.379161004000025, -0.652927341999941 ], [ 109.36255944100003, -0.651950778999947 ], [ 109.35515384200005, -0.64812590899993 ], [ 109.35515384200005, -0.641289971999925 ], [ 109.359629754000025, -0.639743747999944 ], [ 109.36882571700005, -0.633884372999944 ], [ 109.364756707000026, -0.63014088299991 ], [ 109.359629754000025, -0.623630466999941 ], [ 109.35515384200005, -0.620212497999944 ], [ 109.35515384200005, -0.613946221999925 ], [ 109.373220248000052, -0.614190362999921 ], [ 109.406260613000029, -0.620212497999944 ], [ 109.424082879000025, -0.620212497999944 ], [ 109.424082879000025, -0.613946221999925 ], [ 109.400645379000025, -0.59734465899993 ], [ 109.374522332000026, -0.587334893999923 ], [ 109.344004754000025, -0.583754164999959 ], [ 109.277598504000025, -0.586195570999962 ], [ 109.262380405000044, -0.592461846999925 ], [ 109.256602410000028, -0.588474216999941 ], [ 109.250336134000065, -0.582289320999962 ], [ 109.235362175000034, -0.576348565999922 ], [ 109.231130405000044, -0.57000090899993 ], [ 109.228037957000026, -0.563083591999941 ], [ 109.224782748000052, -0.558689059999949 ], [ 109.215098504000025, -0.553399346999925 ], [ 109.211761915000068, -0.552178643999923 ], [ 109.207774285000028, -0.55242278399993 ], [ 109.197520379000025, -0.551853122999944 ], [ 109.187347852000073, -0.552992445999962 ], [ 109.179698113000029, -0.556084893999923 ], [ 109.171397332000026, -0.55632903399993 ], [ 109.159922722000033, -0.548760674999926 ], [ 109.139414910000028, -0.52857838299991 ], [ 109.13013756600003, -0.515720309999949 ], [ 109.123301629000025, -0.49968840899993 ], [ 109.10279381600003, -0.409926039999959 ], [ 109.100596550000034, -0.369724216999941 ], [ 109.102549675000034, -0.361097914999959 ], [ 109.112478061000047, -0.359795830999929 ], [ 109.13599694100003, -0.360039971999925 ], [ 109.10320071700005, -0.31414153399993 ], [ 109.090830925000034, -0.287204684999949 ], [ 109.101328972000033, -0.263848565999922 ], [ 109.101328972000033, -0.257582289999959 ], [ 109.089366082000026, -0.253024997999944 ], [ 109.076426629000025, -0.250583591999941 ], [ 109.067393425000034, -0.25514088299991 ], [ 109.067067905000044, -0.271254164999959 ], [ 109.050303582000026, -0.261895440999922 ], [ 109.04623457100007, -0.245863539999959 ], [ 109.050954623000052, -0.229099216999941 ], [ 109.060313347000033, -0.216729424999926 ], [ 109.070323113000029, -0.211846612999921 ], [ 109.086110873000052, -0.207452080999929 ], [ 109.118662957000026, -0.203057549999926 ], [ 109.146657748000052, -0.205254815999922 ], [ 109.176036004000025, -0.212009372999944 ], [ 109.201670769000032, -0.222751559999949 ], [ 109.218516472000033, -0.237237237999921 ], [ 109.224782748000052, -0.237237237999921 ], [ 109.218760613000029, -0.221612237999921 ], [ 109.19857832100007, -0.20086028399993 ], [ 109.190603061000047, -0.18873463299991 ], [ 109.188487175000034, -0.177341403999947 ], [ 109.190603061000047, -0.137302341999941 ], [ 109.18685957100007, -0.082207940999922 ], [ 109.179698113000029, -0.055474541999956 ], [ 109.160411004000025, -0.023695570999962 ], [ 109.157399936000047, -0.009291273999906 ], [ 109.156504754000025, 0.020086981000077 ], [ 109.160980665000068, 0.03392161700009 ], [ 109.172129754000025, 0.034165757000039 ], [ 109.197520379000025, 0.023504950000074 ], [ 109.30046634200005, 0.01048411700009 ], [ 109.28052819100003, 0.027492580000057 ], [ 109.236664259000065, 0.05727773600006 ], [ 109.176931186000047, 0.107611395000049 ], [ 109.166758660000028, 0.112290757000039 ], [ 109.102305535000028, 0.243109442000048 ], [ 109.046641472000033, 0.287054755000042 ], [ 109.033213738000029, 0.293361721000053 ], [ 109.016123894000032, 0.296820380000042 ], [ 108.953135613000029, 0.301743882000039 ], [ 108.928721550000034, 0.31509023600006 ], [ 108.920909050000034, 0.340277411000045 ], [ 108.931162957000026, 0.379787502000056 ], [ 108.942393425000034, 0.408270575000074 ], [ 108.944346550000034, 0.42251211100006 ], [ 108.944834832000026, 0.445298570000091 ], [ 108.938487175000034, 0.46515534100007 ], [ 108.913096550000034, 0.504339911000045 ], [ 108.910004102000073, 0.530585028000075 ], [ 108.914317254000025, 0.541408596000053 ], [ 108.928233269000032, 0.563666083000044 ], [ 108.931162957000026, 0.575018622000073 ], [ 108.931162957000026, 0.616197007000039 ], [ 108.927256707000026, 0.640773830000057 ], [ 108.91724694100003, 0.661078192000048 ], [ 108.875987175000034, 0.714667059000078 ], [ 108.877452019000032, 0.723822333000044 ], [ 108.885020379000025, 0.733221747000073 ], [ 108.889659050000034, 0.753729559000078 ], [ 108.882578972000033, 0.777533270000049 ], [ 108.855967644000032, 0.811590887000079 ], [ 108.855479363000029, 0.832220770000049 ], [ 108.86264082100007, 0.841742255000042 ], [ 108.876963738000029, 0.855536200000074 ], [ 108.893321160000028, 0.86790599200009 ], [ 108.906586134000065, 0.873236395000049 ], [ 108.926036004000025, 0.875962632000039 ], [ 108.941416863000029, 0.884019273000092 ], [ 108.953949415000068, 0.896877346000053 ], [ 108.965342644000032, 0.914211330000057 ], [ 108.980804884000065, 0.956040757000039 ], [ 108.980316602000073, 0.99555084800005 ], [ 108.92701256600003, 1.140448309000078 ], [ 108.924327019000032, 1.164007880000042 ], [ 108.932627800000034, 1.17804596600007 ], [ 108.952321811000047, 1.184068101000094 ], [ 108.992686394000032, 1.187892971000053 ], [ 109.032725457000026, 1.199042059000078 ], [ 109.108164910000028, 1.228705145000049 ], [ 109.142832879000025, 1.25063711100006 ], [ 109.158457879000025, 1.264634507000039 ], [ 109.215668165000068, 1.335435289000088 ], [ 109.228037957000026, 1.358628648000092 ], [ 109.24341881600003, 1.379868882000039 ], [ 109.266368035000028, 1.394598700000074 ], [ 109.266368035000028, 1.401434637000079 ], [ 109.240489129000025, 1.404201565000051 ], [ 109.227305535000028, 1.388861395000049 ], [ 109.217295769000032, 1.36945221600007 ], [ 109.201182488000029, 1.359849351000094 ], [ 109.188243035000028, 1.349188544000071 ], [ 109.165049675000034, 1.302232164000088 ], [ 109.153086785000028, 1.291571356000077 ], [ 109.149261915000068, 1.286200262000079 ], [ 109.144704623000052, 1.27415599200009 ], [ 109.137380405000044, 1.262274481000077 ], [ 109.125743035000028, 1.256822007000039 ], [ 109.114024285000028, 1.254461981000077 ], [ 109.104502800000034, 1.248846747000073 ], [ 109.088226759000065, 1.236314195000091 ], [ 109.066172722000033, 1.229559637000079 ], [ 109.012217644000032, 1.224310614000046 ], [ 108.985850457000026, 1.215806382000039 ], [ 108.990407748000052, 1.247463283000059 ], [ 109.006032748000052, 1.27415599200009 ], [ 109.04037519600007, 1.318915106000077 ], [ 109.05437259200005, 1.352240302000041 ], [ 109.060801629000025, 1.383856512000079 ], [ 109.060801629000025, 1.499009507000039 ], [ 109.073008660000028, 1.53392161700009 ], [ 109.095957879000025, 1.560614325000074 ], [ 109.252696160000028, 1.668361721000053 ], [ 109.272227410000028, 1.693793036000045 ], [ 109.303396030000044, 1.752630927000041 ], [ 109.321055535000028, 1.778225002000056 ], [ 109.33912194100003, 1.797756252000056 ], [ 109.342051629000025, 1.801825262000079 ], [ 109.34310957100007, 1.804388739000046 ], [ 109.345469597000033, 1.806463934000078 ], [ 109.347829623000052, 1.809556382000039 ], [ 109.34888756600003, 1.815415757000039 ], [ 109.346690300000034, 1.818793036000045 ], [ 109.341807488000029, 1.819973049000055 ], [ 109.336924675000034, 1.818793036000045 ], [ 109.334646030000044, 1.815415757000039 ], [ 109.28679446700005, 1.778225002000056 ], [ 109.289235873000052, 1.795965887000079 ], [ 109.299978061000047, 1.80695221600007 ], [ 109.314463738000029, 1.817206122000073 ], [ 109.328379754000025, 1.832831122000073 ], [ 109.335134311000047, 1.850165106000077 ], [ 109.336436394000032, 1.86790599200009 ], [ 109.334646030000044, 1.90110911700009 ], [ 109.340993686000047, 1.935532945000091 ], [ 109.358897332000026, 1.948309637000079 ], [ 109.424082879000025, 1.95571523600006 ], [ 109.561208530000044, 1.990464585000041 ], [ 109.578868035000028, 1.997626044000071 ], [ 109.592784050000034, 2.007513739000046 ], [ 109.604665561000047, 2.02094147300005 ], [ 109.635020379000025, 2.074042059000078 ], [ 109.645274285000028, 2.083238023000092 ] ] ], [ [ [ 108.677256707000026, -1.713799737999921 ], [ 108.691416863000029, -1.699151299999926 ], [ 108.723155144000032, -1.693617445999962 ], [ 108.75709069100003, -1.695407809999949 ], [ 108.778086785000028, -1.702732028999947 ], [ 108.758799675000034, -1.717461846999925 ], [ 108.724619988000029, -1.719414971999925 ], [ 108.677256707000026, -1.713799737999921 ] ] ], [ [ [ 109.170176629000025, -1.257582289999959 ], [ 109.181895379000025, -1.266208591999941 ], [ 109.176931186000047, -1.278497002999927 ], [ 109.14421634200005, -1.311455987999921 ], [ 109.138519727000073, -1.31414153399993 ], [ 109.13599694100003, -1.309177341999941 ], [ 109.133799675000034, -1.297133070999962 ], [ 109.128428582000026, -1.29656340899993 ], [ 109.121592644000032, -1.299899997999944 ], [ 109.11491946700005, -1.29851653399993 ], [ 109.115733269000032, -1.303887627999927 ], [ 109.108246290000068, -1.304457289999959 ], [ 109.100759311000047, -1.300551039999959 ], [ 109.101328972000033, -1.292413018999923 ], [ 109.107920769000032, -1.284600518999923 ], [ 109.114756707000026, -1.280205987999921 ], [ 109.122813347000033, -1.278497002999927 ], [ 109.132578972000033, -1.278008721999925 ], [ 109.143728061000047, -1.273532809999949 ], [ 109.161306186000047, -1.256605726999908 ], [ 109.170176629000025, -1.257582289999959 ] ] ], [ [ [ 109.254649285000028, -1.169366143999923 ], [ 109.26490319100003, -1.174981377999927 ], [ 109.265147332000026, -1.187920830999929 ], [ 109.259776238000029, -1.202243747999944 ], [ 109.252940300000034, -1.212497653999947 ], [ 109.24577884200005, -1.217868747999944 ], [ 109.234141472000033, -1.224541924999926 ], [ 109.223399285000028, -1.227146091999941 ], [ 109.218516472000033, -1.22039153399993 ], [ 109.218516472000033, -1.206638278999947 ], [ 109.21998131600003, -1.198011976999908 ], [ 109.22388756600003, -1.191338799999926 ], [ 109.242442254000025, -1.174411716999941 ], [ 109.248708530000044, -1.170830987999921 ], [ 109.254649285000028, -1.169366143999923 ] ] ], [ [ [ 108.96420332100007, -1.573418877999927 ], [ 108.967539910000028, -1.587985934999949 ], [ 108.964366082000026, -1.604180596999925 ], [ 108.957286004000025, -1.619561455999929 ], [ 108.948252800000034, -1.631524346999925 ], [ 108.93327884200005, -1.640801690999922 ], [ 108.869802280000044, -1.662286065999922 ], [ 108.858164910000028, -1.663995049999926 ], [ 108.831228061000047, -1.662286065999922 ], [ 108.828379754000025, -1.656996351999908 ], [ 108.825205925000034, -1.645114841999941 ], [ 108.823415561000047, -1.632419528999947 ], [ 108.824392123000052, -1.62468840899993 ], [ 108.829844597000033, -1.615899346999925 ], [ 108.832286004000025, -1.605401299999926 ], [ 108.831553582000026, -1.595147393999923 ], [ 108.82748457100007, -1.586602471999925 ], [ 108.821055535000028, -1.58326588299991 ], [ 108.804209832000026, -1.584893487999921 ], [ 108.793304884000065, -1.580336195999962 ], [ 108.807139519000032, -1.565036716999941 ], [ 108.831065300000034, -1.556084893999923 ], [ 108.875987175000034, -1.54615650799991 ], [ 108.886892123000052, -1.539727471999925 ], [ 108.892832879000025, -1.534274997999944 ], [ 108.900563998000052, -1.53289153399993 ], [ 108.916840040000068, -1.53875090899993 ], [ 108.928558790000068, -1.544854424999926 ], [ 108.955739780000044, -1.563571872999944 ], [ 108.96420332100007, -1.573418877999927 ] ] ], [ [ [ 109.759776238000029, -1.103936455999929 ], [ 109.76295006600003, -1.109551690999922 ], [ 109.770030144000032, -1.11492278399993 ], [ 109.777110222000033, -1.121758721999925 ], [ 109.780284050000034, -1.131605726999908 ], [ 109.776866082000026, -1.140801690999922 ], [ 109.768077019000032, -1.146905205999929 ], [ 109.746104363000029, -1.155205987999921 ], [ 109.698252800000034, -1.190524997999944 ], [ 109.687754754000025, -1.196058851999908 ], [ 109.674489780000044, -1.199395440999922 ], [ 109.601328972000033, -1.230075778999947 ], [ 109.569509311000047, -1.24773528399993 ], [ 109.535980665000068, -1.25904713299991 ], [ 109.502452019000032, -1.292168877999927 ], [ 109.478688998000052, -1.29851653399993 ], [ 109.465586785000028, -1.293389580999929 ], [ 109.44499759200005, -1.281345309999949 ], [ 109.425547722000033, -1.26685963299991 ], [ 109.41724694100003, -1.254489841999941 ], [ 109.420664910000028, -1.231622002999927 ], [ 109.444509311000047, -1.168877862999921 ], [ 109.452321811000047, -1.004001559999949 ], [ 109.459239129000025, -0.985446872999944 ], [ 109.475433790000068, -0.976983330999929 ], [ 109.491221550000034, -0.979180596999925 ], [ 109.525157097000033, -0.988457940999922 ], [ 109.54420006600003, -0.990655205999929 ], [ 109.556162957000026, -0.987481377999927 ], [ 109.577159050000034, -0.973321221999925 ], [ 109.587901238000029, -0.970310153999947 ], [ 109.606293165000068, -0.974704684999949 ], [ 109.639659050000034, -0.996270440999922 ], [ 109.656748894000032, -1.003676039999959 ], [ 109.674571160000028, -1.00359465899993 ], [ 109.686208530000044, -0.996840101999908 ], [ 109.695078972000033, -0.988539320999962 ], [ 109.704600457000026, -0.983819268999923 ], [ 109.723480665000068, -0.987074476999908 ], [ 109.739268425000034, -0.998711846999925 ], [ 109.75131269600007, -1.01490650799991 ], [ 109.759776238000029, -1.031670830999929 ], [ 109.759776238000029, -1.103936455999929 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-PA", "NAME_1": "Papua" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.974457227000016, -2.600518487999921 ], [ 140.97447473200009, -2.63120778399994 ], [ 140.973906291000105, -2.807321064999897 ], [ 140.973286174000066, -3.002451272999906 ], [ 140.972355998000012, -3.250601500999935 ], [ 140.973182821000023, -3.581744079999908 ], [ 140.973544556000093, -3.800025329999912 ], [ 140.97421635, -4.002286884999961 ], [ 140.97473311400006, -4.173645934999925 ], [ 140.975766643000043, -4.595945739999962 ], [ 140.976231730000052, -4.77371266699987 ], [ 140.97687079100001, -4.988486058999896 ], [ 140.976903524000022, -4.999487 ], [ 140.976903524000022, -5.002277526999876 ], [ 140.976903524000022, -5.197407734999985 ], [ 140.976903524000022, -5.322878112999973 ], [ 140.976903524000022, -5.363805846999909 ], [ 140.976903524000022, -5.621154478999927 ], [ 140.976903524000022, -5.806466165999964 ], [ 140.976903524000022, -6.002113137999928 ], [ 140.976903524000022, -6.229386087999984 ], [ 140.976903524000022, -6.33511606799992 ], [ 140.972872762000122, -6.336563008999903 ], [ 140.963726034000047, -6.348035175999925 ], [ 140.958661744000096, -6.368085631999875 ], [ 140.95385583500007, -6.370152689999927 ], [ 140.952822306000087, -6.373770039999911 ], [ 140.954992717000096, -6.379661152999915 ], [ 140.964656210000101, -6.388032734999896 ], [ 140.967085002000147, -6.393923847999901 ], [ 140.963157593, -6.404259135 ], [ 140.955612834000021, -6.411287129999906 ], [ 140.950186809, -6.41893524199989 ], [ 140.952822306000087, -6.431750996999966 ], [ 140.941556844000047, -6.430924173999941 ], [ 140.931014852000146, -6.431440937999895 ], [ 140.921299683000029, -6.433921406999957 ], [ 140.912514690000137, -6.438572285999925 ], [ 140.923160035000024, -6.439812519999862 ], [ 140.929981324000096, -6.444980163999958 ], [ 140.933185262000052, -6.453765156999864 ], [ 140.932823527000153, -6.465960794999958 ], [ 140.948584839000148, -6.465547383999947 ], [ 140.953132366000091, -6.480533548999929 ], [ 140.950186809, -6.498723652999956 ], [ 140.943468872000039, -6.507508645999863 ], [ 140.928224325000087, -6.509679055999939 ], [ 140.920989624000129, -6.516396992999958 ], [ 140.918767538000054, -6.527869160999984 ], [ 140.917837362, -6.553087259999941 ], [ 140.915098511000053, -6.558461608999906 ], [ 140.90987919100013, -6.561355488999894 ], [ 140.901610963000053, -6.562078958999891 ], [ 140.892980998000098, -6.565386249999975 ], [ 140.896494996, -6.573034362999863 ], [ 140.903316284000141, -6.582129413999922 ], [ 140.904969931000096, -6.589467467999924 ], [ 140.890552206000052, -6.599802754999928 ], [ 140.873912395000048, -6.603420104999913 ], [ 140.859287964000089, -6.608381041999863 ], [ 140.850399618000154, -6.623573913999891 ], [ 140.864920695000023, -6.630601908999907 ], [ 140.865799194000033, -6.649205423999945 ], [ 140.857169231000114, -6.682174986999911 ], [ 140.851743205000048, -6.693957213999909 ], [ 140.849211060000016, -6.702845559999929 ], [ 140.850399618000154, -6.712974140999975 ], [ 140.857841024000095, -6.723619486999965 ], [ 140.878718303000028, -6.742223001999932 ], [ 140.884506063, -6.753901875999901 ], [ 140.882697388000054, -6.760619811999931 ], [ 140.873240601000077, -6.773642272999965 ], [ 140.870863486000133, -6.778396503999957 ], [ 140.874170777000018, -6.789455260999958 ], [ 140.882439006000084, -6.798240254999939 ], [ 140.901610963000053, -6.812192890999938 ], [ 140.906726929000058, -6.828212584999989 ], [ 140.908328898000093, -6.849296569999922 ], [ 140.916028687, -6.862732441999881 ], [ 140.939696493000042, -6.856324564999923 ], [ 140.943313844000102, -6.888053893999952 ], [ 140.96217574100001, -6.897975768999942 ], [ 140.977161906000106, -6.896632181999891 ], [ 140.977006877000065, -7.004739277999946 ], [ 140.977006877000065, -7.157081399999939 ], [ 140.976903524000022, -7.282758482999895 ], [ 140.976903524000022, -7.323686217999921 ], [ 140.976903524000022, -7.587546080999914 ], [ 140.976903524000022, -7.772857767999952 ], [ 140.976903524000022, -7.962096862999971 ], [ 140.976903524000022, -8.001991068999914 ], [ 140.977006877000065, -8.1701461789999 ], [ 140.977316936000136, -8.434936217999862 ], [ 140.977626994000047, -8.611152851999933 ], [ 140.977523641000118, -8.798221536999947 ], [ 140.977161906000106, -8.99107798199995 ], [ 140.976980014000105, -9.106133721999925 ], [ 140.976817254000025, -9.106052341999941 ], [ 140.932627800000091, -9.080173434999949 ], [ 140.921071811000047, -9.079278252999927 ], [ 140.856944207000083, -9.049086195999905 ], [ 140.621592644000089, -8.806735934999949 ], [ 140.50749759200005, -8.638116143999923 ], [ 140.452891472000033, -8.586683851999908 ], [ 140.446299675000091, -8.577569268999923 ], [ 140.378103061000047, -8.522230726999908 ], [ 140.367686394000089, -8.508396091999941 ], [ 140.363454623000052, -8.490817966999941 ], [ 140.354014519000089, -8.488539320999905 ], [ 140.301442905000044, -8.467461846999925 ], [ 140.266612175000091, -8.430840752999927 ], [ 140.25163821700005, -8.408949476999908 ], [ 140.031911655000044, -8.246351820999905 ], [ 139.988129102000016, -8.192478122999944 ], [ 139.973643425000091, -8.165215752999927 ], [ 139.970713738000086, -8.142185153999947 ], [ 139.97974694100003, -8.121514580999929 ], [ 139.99773196700005, -8.103773695999905 ], [ 140.021494988000086, -8.08953215899993 ], [ 140.034922722000033, -8.086846612999921 ], [ 140.04810631600003, -8.086602471999925 ], [ 140.058360222000033, -8.081963799999926 ], [ 140.062347852000016, -8.066176039999959 ], [ 140.06568444100003, -8.029473565999922 ], [ 140.056813998000052, -7.996189059999949 ], [ 140.054047071000014, -7.971612237999921 ], [ 140.060557488000086, -7.948337497999944 ], [ 140.083018425000091, -7.932549737999921 ], [ 140.111582879000025, -7.94654713299991 ], [ 140.128672722000033, -7.936130466999941 ], [ 140.151703321000014, -7.884698174999926 ], [ 140.135101759, -7.892673434999949 ], [ 140.118988477000016, -7.914808851999908 ], [ 140.100352410000028, -7.919528903999947 ], [ 140.074961785000028, -7.920017184999949 ], [ 140.061045769000089, -7.924411716999941 ], [ 140.05396569100003, -7.936211846999925 ], [ 140.045664910000028, -7.98015715899993 ], [ 140.041840040000011, -8.045505466999941 ], [ 140.034027540000011, -8.058770440999922 ], [ 140.015391472000033, -8.073663018999923 ], [ 139.973643425000091, -8.09693775799991 ], [ 139.932383660000028, -8.108575127999927 ], [ 139.76880944100003, -8.110446872999944 ], [ 139.63054446700005, -8.124932549999926 ], [ 139.599375847000033, -8.135430596999925 ], [ 139.546641472000033, -8.166192315999922 ], [ 139.514984571000014, -8.178887627999927 ], [ 139.435313347000033, -8.19695403399993 ], [ 139.395192905000044, -8.200941664999959 ], [ 139.35670006600003, -8.199395440999922 ], [ 139.319509311000047, -8.190199476999908 ], [ 139.283376498000052, -8.172539971999925 ], [ 139.254649285000028, -8.146091403999947 ], [ 139.240000847000033, -8.11060963299991 ], [ 139.240244988000086, -8.101820570999905 ], [ 139.242523634, -8.090508721999925 ], [ 139.246104363000086, -8.079522393999923 ], [ 139.250254754000025, -8.072686455999929 ], [ 139.251719597000033, -8.067478122999944 ], [ 139.247894727000016, -8.048760674999926 ], [ 139.245127800000091, -8.015069268999923 ], [ 139.240082227000016, -8.002862237999921 ], [ 139.218923373000052, -7.979668877999927 ], [ 139.234873894000089, -7.975355726999908 ], [ 139.251719597000033, -7.982191664999959 ], [ 139.269379102000016, -7.986260674999926 ], [ 139.287852410000028, -7.973402601999908 ], [ 139.242930535000028, -7.956963799999926 ], [ 139.217133009, -7.951348565999922 ], [ 139.205902540000011, -7.963148695999905 ], [ 139.206797722000033, -7.97429778399993 ], [ 139.211192254000025, -7.994073174999926 ], [ 139.21216881600003, -8.004164320999905 ], [ 139.21412194100003, -8.00709400799991 ], [ 139.224864129000025, -8.008721612999921 ], [ 139.229502800000091, -8.011325778999947 ], [ 139.232188347000033, -8.017836195999905 ], [ 139.230235222000033, -8.022881768999923 ], [ 139.227061394000089, -8.028090101999908 ], [ 139.224457227000016, -8.074395440999922 ], [ 139.201182488000086, -8.095635674999926 ], [ 139.12273196700005, -8.117445570999905 ], [ 139.08952884200005, -8.133558851999908 ], [ 138.973317905000044, -8.229913018999923 ], [ 138.963389519000089, -8.245538018999923 ], [ 138.959483269000089, -8.265232028999947 ], [ 138.957204623000052, -8.27076588299991 ], [ 138.951182488000086, -8.281345309999949 ], [ 138.943369988000086, -8.291192315999922 ], [ 138.93523196700005, -8.295586846999925 ], [ 138.921071811000047, -8.294854424999926 ], [ 138.914398634, -8.292087497999944 ], [ 138.876475457000083, -8.218682549999926 ], [ 138.853037957000083, -8.183851820999905 ], [ 138.842784050000091, -8.161309502999927 ], [ 138.838552280000044, -8.13836028399993 ], [ 138.842784050000091, -8.117445570999905 ], [ 138.85865319100003, -8.101332289999959 ], [ 138.900726759, -8.092380466999941 ], [ 138.921234571000014, -8.079522393999923 ], [ 138.925303582000083, -8.070489190999922 ], [ 138.924327019000089, -8.060642184999949 ], [ 138.920176629000025, -8.05242278399993 ], [ 138.905772332000083, -8.043633721999925 ], [ 138.90552819100003, -8.030694268999923 ], [ 138.910980665000011, -8.007582289999959 ], [ 138.910980665000011, -7.922539971999925 ], [ 138.915375196000014, -7.903252862999921 ], [ 138.92741946700005, -7.894138278999947 ], [ 138.966319207000083, -7.884698174999926 ], [ 138.993988477000016, -7.865492445999905 ], [ 139.002289259, -7.835707289999959 ], [ 139.007172071000014, -7.754327080999929 ], [ 139.034515821000014, -7.690362237999921 ], [ 139.045095248000052, -7.675225518999923 ], [ 139.048187696000014, -7.668064059999949 ], [ 139.054942254000025, -7.634209893999923 ], [ 139.059418165000011, -7.62273528399993 ], [ 139.069346550000091, -7.613946221999925 ], [ 139.080821160000028, -7.606052341999941 ], [ 139.089203321000014, -7.596774997999944 ], [ 139.09302819100003, -7.559991143999923 ], [ 139.071055535000028, -7.532647393999923 ], [ 139.035899285000028, -7.515232028999947 ], [ 139.000498894000089, -7.507907809999949 ], [ 138.958018425000091, -7.507256768999923 ], [ 138.944346550000091, -7.497002862999921 ], [ 138.934906446000014, -7.448825778999947 ], [ 138.925547722000033, -7.427341403999947 ], [ 138.886078321000014, -7.360935153999947 ], [ 138.865489129000025, -7.336032809999949 ], [ 138.840586785000028, -7.314548434999949 ], [ 138.766612175000091, -7.265394789999959 ], [ 138.750987175000091, -7.257745049999926 ], [ 138.745616082000083, -7.250664971999925 ], [ 138.738780144000089, -7.243584893999923 ], [ 138.729258660000028, -7.240411065999922 ], [ 138.708506707000083, -7.239190362999921 ], [ 138.699961785000028, -7.237074476999908 ], [ 138.691254102000016, -7.233575127999927 ], [ 138.67701256600003, -7.223402601999908 ], [ 138.666351759, -7.209893487999921 ], [ 138.667491082000083, -7.197849216999941 ], [ 138.688243035000028, -7.19264088299991 ], [ 138.904551629000025, -7.199395440999922 ], [ 138.945160352000016, -7.206231377999927 ], [ 138.961680535000028, -7.21453215899993 ], [ 138.990977410000028, -7.23601653399993 ], [ 139.003916863000086, -7.240411065999922 ], [ 139.157074415000011, -7.243096612999921 ], [ 139.174571160000028, -7.236993096999925 ], [ 139.188243035000028, -7.215020440999922 ], [ 139.199473504000025, -7.18873463299991 ], [ 139.214610222000033, -7.166924737999921 ], [ 139.240000847000033, -7.158461195999905 ], [ 139.240000847000033, -7.151055596999925 ], [ 139.221853061000047, -7.143975518999923 ], [ 139.206065300000091, -7.150485934999949 ], [ 139.181407097000033, -7.17546965899993 ], [ 139.167328321000014, -7.195489190999922 ], [ 139.15943444100003, -7.203220309999949 ], [ 139.147227410000028, -7.206231377999927 ], [ 139.103526238000086, -7.206231377999927 ], [ 139.060557488000086, -7.212497653999947 ], [ 139.037608269000089, -7.211846612999921 ], [ 139.019379102000016, -7.194431247999944 ], [ 138.966319207000083, -7.164727471999925 ], [ 138.946136915000011, -7.157159112999921 ], [ 138.925303582000083, -7.153008721999925 ], [ 138.858083530000044, -7.149590752999927 ], [ 138.842539910000028, -7.145603122999944 ], [ 138.814789259, -7.13054778399993 ], [ 138.761973504000025, -7.113864841999941 ], [ 138.753428582000083, -7.106622002999927 ], [ 138.747813347000033, -7.098239841999941 ], [ 138.64616946700005, -6.99968840899993 ], [ 138.572032097000033, -6.942478122999944 ], [ 138.561534050000091, -6.918633721999925 ], [ 138.581390821000014, -6.890883070999905 ], [ 138.597422722000033, -6.881442966999941 ], [ 138.61255944100003, -6.877211195999905 ], [ 138.654063347000033, -6.87664153399993 ], [ 138.674571160000028, -6.881117445999905 ], [ 138.715830925000091, -6.89771900799991 ], [ 138.739756707000083, -6.897149346999925 ], [ 138.756358269000089, -6.88795338299991 ], [ 138.783457879000025, -6.861748955999929 ], [ 138.79810631600003, -6.856215101999908 ], [ 138.883799675000091, -6.849379164999959 ], [ 138.91724694100003, -6.842217705999929 ], [ 138.931488477000016, -6.842543226999908 ], [ 138.940440300000091, -6.845472914999959 ], [ 138.959808790000011, -6.854424737999921 ], [ 138.969737175000091, -6.856215101999908 ], [ 138.989431186000047, -6.865899346999925 ], [ 139.017751498000052, -6.908623955999929 ], [ 139.037933790000011, -6.918226820999905 ], [ 139.068695509, -6.942152601999908 ], [ 139.072764519000089, -6.948825778999947 ], [ 139.082530144000089, -6.953301690999922 ], [ 139.103526238000086, -6.959161065999922 ], [ 139.117930535000028, -6.968194268999923 ], [ 139.126475457000083, -6.971612237999921 ], [ 139.140391472000033, -6.972914320999905 ], [ 139.181895379000025, -6.971449476999908 ], [ 139.192230665000011, -6.972914320999905 ], [ 139.180430535000028, -6.959161065999922 ], [ 139.156748894000089, -6.954034112999921 ], [ 139.133311394000089, -6.95240650799991 ], [ 139.12273196700005, -6.948988539999959 ], [ 139.115489129000025, -6.941013278999947 ], [ 139.068695509, -6.918226820999905 ], [ 138.999766472000033, -6.852715752999927 ], [ 138.966319207000083, -6.835707289999959 ], [ 138.923675977000016, -6.825778903999947 ], [ 138.85670006600003, -6.82000090899993 ], [ 138.837901238000086, -6.814548434999949 ], [ 138.822438998000052, -6.806084893999923 ], [ 138.768402540000011, -6.756605726999908 ], [ 138.74577884200005, -6.740166924999926 ], [ 138.70045006600003, -6.72820403399993 ], [ 138.683441602000016, -6.71453215899993 ], [ 138.672862175000091, -6.694919528999947 ], [ 138.670909050000091, -6.671807549999926 ], [ 138.682465040000011, -6.645114841999941 ], [ 138.702891472000033, -6.645440362999921 ], [ 138.743174675000091, -6.664971612999921 ], [ 138.763194207000083, -6.670179945999905 ], [ 138.829112175000091, -6.705987237999921 ], [ 138.708994988000086, -6.629652601999908 ], [ 138.677582227000016, -6.602959893999923 ], [ 138.631602410000028, -6.544122002999927 ], [ 138.619395379000025, -6.534763278999947 ], [ 138.603770379000025, -6.527927341999941 ], [ 138.46607506600003, -6.402113539999959 ], [ 138.42115319100003, -6.318536065999922 ], [ 138.413584832000083, -6.291436455999929 ], [ 138.395355665000011, -6.25318775799991 ], [ 138.390391472000033, -6.23365650799991 ], [ 138.392100457000083, -6.186211846999925 ], [ 138.390391472000033, -6.17156340899993 ], [ 138.372080925000091, -6.12428150799991 ], [ 138.369802280000044, -6.106377862999921 ], [ 138.365489129000025, -6.091729424999926 ], [ 138.346690300000091, -6.071221612999921 ], [ 138.342539910000028, -6.05828215899993 ], [ 138.33912194100003, -6.042575778999947 ], [ 138.276377800000091, -5.946221612999921 ], [ 138.262461785000028, -5.914727471999925 ], [ 138.270843946000014, -5.886976820999905 ], [ 138.304209832000083, -5.868259372999944 ], [ 138.376719597000033, -5.855645440999922 ], [ 138.40398196700005, -5.835707289999959 ], [ 138.385508660000028, -5.837334893999923 ], [ 138.342539910000028, -5.848809502999927 ], [ 138.322032097000033, -5.851006768999923 ], [ 138.208750847000033, -5.825290622999944 ], [ 138.182139519000089, -5.809665622999944 ], [ 138.177989129000025, -5.804457289999959 ], [ 138.175547722000033, -5.795668226999908 ], [ 138.16960696700005, -5.786553643999923 ], [ 138.157562696000014, -5.773695570999905 ], [ 138.251963738000086, -5.718926690999922 ], [ 138.306651238000086, -5.695733330999929 ], [ 138.36296634200005, -5.678806247999944 ], [ 138.343109571000014, -5.670179945999905 ], [ 138.320323113000086, -5.67115650799991 ], [ 138.277354363000086, -5.678806247999944 ], [ 138.252696160000028, -5.679864190999922 ], [ 138.232676629000025, -5.683851820999905 ], [ 138.213877800000091, -5.691989841999941 ], [ 138.171885613000086, -5.716973565999922 ], [ 138.15202884200005, -5.723077080999929 ], [ 138.105967644000089, -5.726006768999923 ], [ 138.085785352000016, -5.73992278399993 ], [ 138.08326256600003, -5.738213799999926 ], [ 138.081553582000083, -5.734307549999926 ], [ 138.071055535000028, -5.728610934999949 ], [ 138.069102410000028, -5.719659112999921 ], [ 138.069183790000011, -5.708428643999923 ], [ 138.068125847000033, -5.698011976999908 ], [ 138.057383660000028, -5.657810153999947 ], [ 138.053396030000044, -5.61296965899993 ], [ 138.054860873000052, -5.589613539999959 ], [ 138.05982506600003, -5.575290622999944 ], [ 138.068614129000025, -5.565036716999941 ], [ 138.081797722000033, -5.554620049999926 ], [ 138.091807488000086, -5.55006275799991 ], [ 138.10124759200005, -5.54851653399993 ], [ 138.107920769000089, -5.544854424999926 ], [ 138.109711134, -5.534112237999921 ], [ 138.105316602000016, -5.53093840899993 ], [ 138.084971550000091, -5.522230726999908 ], [ 138.078135613000086, -5.520440362999921 ], [ 138.064219597000033, -5.511163018999923 ], [ 138.064219597000033, -5.489434502999927 ], [ 138.074392123000052, -5.444756768999923 ], [ 138.074880405000044, -5.41961028399993 ], [ 138.071055535000028, -5.409926039999959 ], [ 138.061371290000011, -5.403741143999923 ], [ 138.058116082000083, -5.420342705999929 ], [ 138.051280144000089, -5.431817315999922 ], [ 138.040782097000033, -5.436130466999941 ], [ 138.026540561000047, -5.431084893999923 ], [ 138.03484134200005, -5.45476653399993 ], [ 138.035980665000011, -5.474786065999922 ], [ 138.025645379000025, -5.484958591999941 ], [ 137.99927819100003, -5.478936455999929 ], [ 137.986582879000025, -5.46998463299991 ], [ 137.958994988000086, -5.431084893999923 ], [ 137.914561394000089, -5.386895440999922 ], [ 137.908457879000025, -5.363051039999959 ], [ 137.924815300000091, -5.328708591999941 ], [ 137.904144727000016, -5.32350025799991 ], [ 137.853363477000016, -5.361586195999905 ], [ 137.821787957000083, -5.362888278999947 ], [ 137.813975457000083, -5.358168226999908 ], [ 137.808604363000086, -5.352959893999923 ], [ 137.782969597000033, -5.317966403999947 ], [ 137.780121290000011, -5.315036716999941 ], [ 137.78288821700005, -5.297539971999925 ], [ 137.801524285000028, -5.270440362999921 ], [ 137.808116082000083, -5.253024997999944 ], [ 137.771006707000083, -5.272393487999921 ], [ 137.75163821700005, -5.277764580999929 ], [ 137.732432488000086, -5.273370049999926 ], [ 137.715586785000028, -5.256524346999925 ], [ 137.70630944100003, -5.22193775799991 ], [ 137.69068444100003, -5.211358330999929 ], [ 137.682139519000089, -5.212660414999959 ], [ 137.672618035000028, -5.217543226999908 ], [ 137.662852410000028, -5.220310153999947 ], [ 137.646983269000089, -5.211846612999921 ], [ 137.616384311000047, -5.205173434999949 ], [ 137.598399285000028, -5.196384372999944 ], [ 137.579844597000033, -5.181898695999905 ], [ 137.574229363000086, -5.167087497999944 ], [ 137.595062696000014, -5.156833591999941 ], [ 137.595062696000014, -5.149997653999947 ], [ 137.580821160000028, -5.142998955999929 ], [ 137.572764519000089, -5.12078215899993 ], [ 137.561045769000089, -5.115817966999941 ], [ 137.556162957000083, -5.121026299999926 ], [ 137.54029381600003, -5.14421965899993 ], [ 137.533050977000016, -5.149997653999947 ], [ 137.519297722000033, -5.148532809999949 ], [ 137.509287957000083, -5.142022393999923 ], [ 137.492198113000086, -5.123223565999922 ], [ 137.481944207000083, -5.117364190999922 ], [ 137.473806186000047, -5.115004164999959 ], [ 137.468109571000014, -5.110039971999925 ], [ 137.464854363000086, -5.095879815999922 ], [ 137.432627800000091, -5.103448174999926 ], [ 137.40357506600003, -5.097588799999926 ], [ 137.377777540000011, -5.082452080999929 ], [ 137.355642123000052, -5.06178150799991 ], [ 137.363291863000086, -5.054620049999926 ], [ 137.368011915000011, -5.046319268999923 ], [ 137.369965040000011, -5.036879164999959 ], [ 137.369151238000086, -5.026462497999944 ], [ 137.363047722000033, -5.026462497999944 ], [ 137.349619988000086, -5.040459893999923 ], [ 137.334646030000044, -5.03093840899993 ], [ 137.30787194100003, -4.999118747999944 ], [ 137.309336785000028, -5.021661065999922 ], [ 137.301605665000011, -5.02662525799991 ], [ 137.276540561000047, -5.020196221999925 ], [ 137.268077019000089, -5.013848565999922 ], [ 137.267100457000083, -4.999444268999923 ], [ 137.282562696000014, -4.939711195999905 ], [ 137.278819207000083, -4.936618747999944 ], [ 137.232432488000086, -4.969414971999925 ], [ 137.224375847000033, -4.98211028399993 ], [ 137.23210696700005, -4.999118747999944 ], [ 137.219004754000025, -5.01336028399993 ], [ 137.169444207000083, -4.991143487999921 ], [ 137.152110222000033, -4.974379164999959 ], [ 137.14966881600003, -4.945082289999959 ], [ 137.115407748000052, -4.979180596999925 ], [ 137.090098504000025, -4.960137627999927 ], [ 137.087738477000016, -4.94304778399993 ], [ 137.095957879000025, -4.921644789999959 ], [ 137.101735873000052, -4.889255466999941 ], [ 137.09498131600003, -4.889255466999941 ], [ 137.073008660000028, -4.923923434999949 ], [ 137.041840040000011, -4.94304778399993 ], [ 137.006521030000044, -4.945733330999929 ], [ 136.953868035000028, -4.922784112999921 ], [ 136.94654381600003, -4.91765715899993 ], [ 136.944102410000028, -4.910332940999922 ], [ 136.949961785000028, -4.899021091999941 ], [ 136.961924675000091, -4.891045830999929 ], [ 136.973643425000091, -4.885023695999905 ], [ 136.978851759, -4.879571221999925 ], [ 136.969248894000089, -4.869561455999929 ], [ 136.947276238000086, -4.875583591999941 ], [ 136.874522332000083, -4.919854424999926 ], [ 136.853770379000025, -4.928155205999929 ], [ 136.831797722000033, -4.931410414999959 ], [ 136.822113477000016, -4.928317966999941 ], [ 136.811859571000014, -4.920342705999929 ], [ 136.80396569100003, -4.910251559999949 ], [ 136.800629102000016, -4.900485934999949 ], [ 136.802989129000025, -4.882907809999949 ], [ 136.799164259, -4.880059502999927 ], [ 136.78638756600003, -4.876153252999927 ], [ 136.763438347000033, -4.874118747999944 ], [ 136.753103061000047, -4.880059502999927 ], [ 136.743174675000091, -4.881524346999925 ], [ 136.695811394000089, -4.846856377999927 ], [ 136.626475457000083, -4.822849216999941 ], [ 136.537852410000028, -4.773614190999922 ], [ 136.463715040000011, -4.73601653399993 ], [ 136.440196160000028, -4.715264580999929 ], [ 136.433441602000016, -4.712334893999923 ], [ 136.413096550000091, -4.711683851999908 ], [ 136.402842644000089, -4.707696221999925 ], [ 136.375661655000044, -4.683770440999922 ], [ 136.355479363000086, -4.67742278399993 ], [ 136.267344597000033, -4.676202080999929 ], [ 136.17701256600003, -4.649590752999927 ], [ 136.146657748000052, -4.626397393999923 ], [ 136.146006707000083, -4.62232838299991 ], [ 136.121918165000011, -4.619317315999922 ], [ 136.10670006600003, -4.612074476999908 ], [ 136.094737175000091, -4.603122653999947 ], [ 136.080739780000044, -4.59498463299991 ], [ 136.062998894000089, -4.590590101999908 ], [ 136.049652540000011, -4.590020440999922 ], [ 136.035817905000044, -4.586032809999949 ], [ 136.015879754000025, -4.571465752999927 ], [ 135.970469597000033, -4.519626559999949 ], [ 135.95045006600003, -4.506280205999929 ], [ 135.912282748000052, -4.498142184999949 ], [ 135.828949415000011, -4.498630466999941 ], [ 135.792735222000033, -4.485772393999923 ], [ 135.776215040000011, -4.494561455999929 ], [ 135.750336134, -4.497247002999927 ], [ 135.724619988000086, -4.495293877999927 ], [ 135.708018425000091, -4.489190362999921 ], [ 135.699554884, -4.487237237999921 ], [ 135.656097852000016, -4.485772393999923 ], [ 135.614268425000091, -4.474704684999949 ], [ 135.60474694100003, -4.46843840899993 ], [ 135.587412957000083, -4.460381768999923 ], [ 135.466563347000033, -4.446058851999908 ], [ 135.443614129000025, -4.44068775799991 ], [ 135.429535352000016, -4.430433851999908 ], [ 135.41334069100003, -4.436293226999908 ], [ 135.359141472000033, -4.443617445999905 ], [ 135.330577019000089, -4.439873955999929 ], [ 135.271983269000089, -4.458428643999923 ], [ 135.22779381600003, -4.461195570999905 ], [ 135.185557488000086, -4.44890715899993 ], [ 134.959157748000052, -4.318617445999905 ], [ 134.943125847000033, -4.30592213299991 ], [ 134.936208530000044, -4.290215752999927 ], [ 134.92741946700005, -4.275648695999905 ], [ 134.906586134, -4.264092705999929 ], [ 134.881846550000091, -4.256117445999905 ], [ 134.873493154272523, -4.254610558750696 ], [ 134.87360761869661, -4.254468682183926 ], [ 135.265108270030623, -3.759976902112328 ], [ 134.258348016048103, -3.39948210951178 ], [ 134.233801710580451, -3.38382415096379 ], [ 134.237212356165287, -3.353335056167907 ], [ 134.254627313000015, -3.30770476586224 ], [ 134.282015822372273, -3.256803480696078 ], [ 134.305580275908937, -3.220940036453555 ], [ 134.332141962081778, -3.189934176820827 ], [ 134.423299188106967, -3.114744967706088 ], [ 134.450687696579848, -3.077899671532634 ], [ 134.451721226253539, -3.065704033614281 ], [ 134.445365024875969, -3.023897800043471 ], [ 134.447587112055544, -3.012787366843497 ], [ 134.456682163650839, -3.003278904098181 ], [ 134.469601271981105, -2.995010674802813 ], [ 134.485155877741477, -2.986897475138392 ], [ 134.665920037979276, -2.840704847950406 ], [ 134.670013868000069, -2.837660414999959 ], [ 134.701345248000052, -2.95867278399993 ], [ 134.727061394000089, -2.985772393999923 ], [ 134.772227410000028, -2.977634372999944 ], [ 134.82781009200005, -2.91375090899993 ], [ 134.851328972000033, -2.899834893999923 ], [ 134.861094597000033, -2.940036716999941 ], [ 134.851817254000025, -3.003676039999959 ], [ 134.846853061000047, -3.018487237999921 ], [ 134.842458530000044, -3.023044528999947 ], [ 134.836924675000091, -3.025811455999929 ], [ 134.831065300000091, -3.030205987999921 ], [ 134.826345248000052, -3.039646091999941 ], [ 134.824229363000086, -3.050388278999947 ], [ 134.826345248000052, -3.083916924999926 ], [ 134.816661004000025, -3.121840101999908 ], [ 134.818532748000052, -3.136325778999947 ], [ 134.853688998000052, -3.147881768999923 ], [ 134.861175977000016, -3.162692966999941 ], [ 134.867930535000028, -3.204034112999921 ], [ 134.869639519000089, -3.209161065999922 ], [ 134.873057488000086, -3.213148695999962 ], [ 134.874766472000033, -3.217705987999921 ], [ 134.874522332000083, -3.217950127999927 ], [ 134.875987175000091, -3.231866143999923 ], [ 134.874766472000033, -3.232028903999947 ], [ 134.880625847000033, -3.242933851999908 ], [ 134.885915561000047, -3.249769789999959 ], [ 134.898936394000089, -3.262790622999944 ], [ 134.914398634, -3.26881275799991 ], [ 134.931813998000052, -3.261651299999926 ], [ 134.96412194100003, -3.238213799999926 ], [ 134.96257571700005, -3.249444268999923 ], [ 134.956797722000033, -3.269463799999926 ], [ 134.95671634200005, -3.279880466999941 ], [ 134.960297071000014, -3.285332940999922 ], [ 134.974619988000086, -3.300876559999949 ], [ 134.984711134, -3.329685153999947 ], [ 135.002126498000052, -3.336114190999922 ], [ 135.046071811000047, -3.334405205999929 ], [ 135.069102410000028, -3.338555596999925 ], [ 135.097178582000083, -3.357517184999949 ], [ 135.111501498000052, -3.361748955999929 ], [ 135.275645379000025, -3.368584893999923 ], [ 135.296071811000047, -3.372002862999921 ], [ 135.322032097000033, -3.386488539999959 ], [ 135.340830925000091, -3.389743747999944 ], [ 135.362315300000091, -3.386163018999923 ], [ 135.403086785000028, -3.371840101999908 ], [ 135.470469597000033, -3.363051039999959 ], [ 135.488942905000044, -3.35670338299991 ], [ 135.505381707000083, -3.348077080999929 ], [ 135.521739129000025, -3.335544528999947 ], [ 135.563649936000047, -3.289727471999925 ], [ 135.569102410000028, -3.281670830999929 ], [ 135.573252800000091, -3.270114841999941 ], [ 135.574392123000052, -3.258070570999962 ], [ 135.570485873000052, -3.248711846999925 ], [ 135.573741082000083, -3.241306247999944 ], [ 135.601573113000086, -3.204034112999921 ], [ 135.638926629000025, -3.178155205999929 ], [ 135.719004754000025, -3.148614190999922 ], [ 135.751719597000033, -3.128350518999923 ], [ 135.767100457000083, -3.108819268999923 ], [ 135.763194207000083, -3.099541924999926 ], [ 135.751963738000086, -3.091729424999926 ], [ 135.745616082000083, -3.077080987999921 ], [ 135.747406446000014, -3.07000090899993 ], [ 135.751800977000016, -3.062107028999947 ], [ 135.757334832000083, -3.055840752999927 ], [ 135.76490319100003, -3.052178643999923 ], [ 135.76685631600003, -3.049899997999944 ], [ 135.769786004000025, -3.047539971999925 ], [ 135.775645379000025, -3.046482028999947 ], [ 135.799489780000044, -3.053317966999941 ], [ 135.816905144000089, -3.042901299999926 ], [ 135.843109571000014, -3.011976820999962 ], [ 135.888519727000016, -3.000095309999949 ], [ 135.909922722000033, -2.985772393999923 ], [ 135.926524285000028, -2.965915622999944 ], [ 135.93677819100003, -2.943454684999949 ], [ 135.935883009, -2.927178643999923 ], [ 135.924978061000047, -2.890394789999959 ], [ 135.926768425000091, -2.878838799999926 ], [ 135.951914910000028, -2.852146091999941 ], [ 135.960459832000083, -2.837660414999959 ], [ 135.964610222000033, -2.820489190999922 ], [ 135.964610222000033, -2.775811455999929 ], [ 135.969574415000011, -2.770114841999941 ], [ 135.992360873000052, -2.752048434999949 ], [ 135.998789910000028, -2.744805596999925 ], [ 136.01295006600003, -2.747002862999921 ], [ 136.023203972000033, -2.707696221999925 ], [ 136.03638756600003, -2.69695403399993 ], [ 136.045420769000089, -2.696221612999921 ], [ 136.055674675000091, -2.693454684999949 ], [ 136.06373131600003, -2.688164971999925 ], [ 136.067149285000028, -2.679864190999922 ], [ 136.072276238000086, -2.672621351999908 ], [ 136.084483269000089, -2.668064059999949 ], [ 136.10865319100003, -2.662774346999925 ], [ 136.197438998000052, -2.624444268999923 ], [ 136.236827019000089, -2.596123955999929 ], [ 136.266368035000028, -2.560316664999959 ], [ 136.276052280000044, -2.540134372999944 ], [ 136.282399936000047, -2.519707940999922 ], [ 136.28874759200005, -2.450127862999921 ], [ 136.293955925000091, -2.433526299999926 ], [ 136.30241946700005, -2.420830987999921 ], [ 136.334483269000089, -2.384535414999959 ], [ 136.344086134, -2.368259372999944 ], [ 136.348155144000089, -2.35125090899993 ], [ 136.347178582000083, -2.340264580999929 ], [ 136.342539910000028, -2.319105726999908 ], [ 136.340098504000025, -2.289239190999922 ], [ 136.341970248000052, -2.283379815999922 ], [ 136.348155144000089, -2.271742445999962 ], [ 136.362071160000028, -2.252129815999922 ], [ 136.380869988000086, -2.23406340899993 ], [ 136.403819207000083, -2.219659112999921 ], [ 136.430186394000089, -2.211032809999949 ], [ 136.481455925000091, -2.211032809999949 ], [ 136.492930535000028, -2.207126559999949 ], [ 136.522146030000044, -2.191338799999926 ], [ 136.532562696000014, -2.189873955999929 ], [ 136.53679446700005, -2.198988539999959 ], [ 136.533702019000089, -2.213067315999922 ], [ 136.532969597000033, -2.22584400799991 ], [ 136.543467644000089, -2.231377862999921 ], [ 136.568207227000016, -2.233005466999941 ], [ 136.594737175000091, -2.23756275799991 ], [ 136.602061394000089, -2.249769789999959 ], [ 136.605235222000033, -2.252048434999949 ], [ 136.613047722000033, -2.250909112999921 ], [ 136.626475457000083, -2.246270440999922 ], [ 136.632823113000086, -2.245049737999921 ], [ 136.646494988000086, -2.246351820999962 ], [ 136.683929884, -2.258721612999921 ], [ 136.704600457000083, -2.23756275799991 ], [ 136.716970248000052, -2.239190362999921 ], [ 136.737152540000011, -2.249444268999923 ], [ 136.74927819100003, -2.252048434999949 ], [ 136.758636915000011, -2.248711846999925 ], [ 136.765472852000016, -2.241631768999923 ], [ 136.770843946000014, -2.234633070999962 ], [ 136.776866082000083, -2.231377862999921 ], [ 136.80591881600003, -2.226739190999922 ], [ 136.814463738000086, -2.224053643999923 ], [ 136.867198113000086, -2.188164971999925 ], [ 136.92701256600003, -2.176202080999929 ], [ 136.938487175000091, -2.172539971999925 ], [ 136.943125847000033, -2.163506768999923 ], [ 136.945811394000089, -2.152276299999926 ], [ 136.951508009, -2.142185153999947 ], [ 136.981455925000091, -2.126560153999947 ], [ 137.024099155000044, -2.11842213299991 ], [ 137.154307488000086, -2.111504815999922 ], [ 137.178477410000028, -2.106133721999925 ], [ 137.19459069100003, -2.09734465899993 ], [ 137.226328972000033, -2.074395440999922 ], [ 137.23365319100003, -2.060967705999929 ], [ 137.225271030000044, -2.038995049999926 ], [ 137.202647332000083, -2.01881275799991 ], [ 137.191172722000033, -2.004571221999925 ], [ 137.19459069100003, -1.998142184999949 ], [ 137.205332879000025, -1.992608330999929 ], [ 137.210134311000047, -1.979261976999908 ], [ 137.209646030000044, -1.963474216999941 ], [ 137.204844597000033, -1.949639580999929 ], [ 137.193858269000089, -1.943942966999941 ], [ 137.167491082000083, -1.934340101999908 ], [ 137.156993035000028, -1.929131768999923 ], [ 137.101735873000052, -1.888278903999947 ], [ 137.111827019000089, -1.874769789999959 ], [ 137.115570509, -1.854424737999921 ], [ 137.115407748000052, -1.809340101999908 ], [ 137.123545769000089, -1.797458591999941 ], [ 137.142832879000025, -1.787041924999926 ], [ 137.348806186000047, -1.710137627999927 ], [ 137.464854363000086, -1.641778252999927 ], [ 137.485850457000083, -1.63250090899993 ], [ 137.492198113000086, -1.628106377999927 ], [ 137.498545769000089, -1.62078215899993 ], [ 137.510264519000089, -1.604099216999941 ], [ 137.516368035000028, -1.60084400799991 ], [ 137.53248131600003, -1.597751559999949 ], [ 137.794444207000083, -1.484144789999959 ], [ 137.83912194100003, -1.471123955999929 ], [ 137.883148634, -1.470472914999959 ], [ 137.924815300000091, -1.484144789999959 ], [ 137.932465040000011, -1.491306247999944 ], [ 137.955577019000089, -1.518243096999925 ], [ 137.965017123000052, -1.522637627999927 ], [ 137.983164910000028, -1.541924737999921 ], [ 137.989268425000091, -1.54615650799991 ], [ 138.002207879000025, -1.547784112999921 ], [ 138.01140384200005, -1.55201588299991 ], [ 138.057627800000091, -1.599053643999923 ], [ 138.074880405000044, -1.610284112999921 ], [ 138.118907097000033, -1.61687590899993 ], [ 138.229177280000044, -1.649102471999925 ], [ 138.35670006600003, -1.710137627999927 ], [ 138.527517123000052, -1.758477471999925 ], [ 138.597504102000016, -1.769789320999962 ], [ 138.619639519000089, -1.778090101999908 ], [ 138.665212436000047, -1.789157809999949 ], [ 138.735199415000011, -1.843926690999922 ], [ 138.803233269000089, -1.920830987999921 ], [ 138.842784050000091, -1.949639580999929 ], [ 138.862152540000011, -1.955743096999925 ], [ 138.928070509, -1.957126559999949 ], [ 138.949554884, -1.959893487999921 ], [ 139.10670006600003, -2.012790622999944 ], [ 139.283213738000086, -2.121840101999908 ], [ 139.38404381600003, -2.155694268999923 ], [ 139.440114780000044, -2.185723565999922 ], [ 139.455332879000025, -2.189873955999929 ], [ 139.468760613000086, -2.195082289999959 ], [ 139.514984571000014, -2.231377862999921 ], [ 139.678233269000089, -2.292901299999926 ], [ 139.780772332000083, -2.354668877999927 ], [ 139.822113477000016, -2.367364190999922 ], [ 139.864756707000083, -2.372002862999921 ], [ 140.059336785000028, -2.354261976999908 ], [ 140.086192254000025, -2.343682549999926 ], [ 140.097178582000083, -2.323663018999923 ], [ 140.10474694100003, -2.320082289999959 ], [ 140.121267123000052, -2.326836846999925 ], [ 140.145030144000089, -2.341241143999923 ], [ 140.151133660000028, -2.337334893999923 ], [ 140.152598504000025, -2.322442315999922 ], [ 140.157969597000033, -2.320896091999941 ], [ 140.16570071700005, -2.325372002999927 ], [ 140.167979363000086, -2.33171965899993 ], [ 140.168793165000011, -2.339288018999923 ], [ 140.172211134, -2.347426039999959 ], [ 140.21021569100003, -2.402113539999959 ], [ 140.225433790000011, -2.405368747999944 ], [ 140.28834069100003, -2.431084893999923 ], [ 140.311289910000028, -2.44695403399993 ], [ 140.332286004000025, -2.455743096999925 ], [ 140.350433790000011, -2.44304778399993 ], [ 140.36101321700005, -2.449802341999941 ], [ 140.371267123000052, -2.448663018999923 ], [ 140.379649285000028, -2.44109465899993 ], [ 140.384532097000033, -2.429457289999959 ], [ 140.379893425000091, -2.419528903999947 ], [ 140.368907097000033, -2.412041924999926 ], [ 140.363942905000044, -2.404880466999941 ], [ 140.377126498000052, -2.395277601999908 ], [ 140.388519727000016, -2.397067966999941 ], [ 140.483164910000028, -2.432224216999941 ], [ 140.500661655000044, -2.435723565999922 ], [ 140.607595248000052, -2.439385674999926 ], [ 140.730804884, -2.49146900799991 ], [ 140.744639519000089, -2.499118747999944 ], [ 140.746755405000044, -2.516696872999944 ], [ 140.740896030000044, -2.549574476999908 ], [ 140.736094597000033, -2.563653252999927 ], [ 140.698578321000014, -2.608168226999908 ], [ 140.70435631600003, -2.616957289999959 ], [ 140.713226759, -2.626722914999959 ], [ 140.723806186000047, -2.633965752999927 ], [ 140.734629754000025, -2.634942315999922 ], [ 140.740000847000033, -2.627699476999908 ], [ 140.740733269000089, -2.616306247999944 ], [ 140.742686394000089, -2.605564059999949 ], [ 140.751719597000033, -2.600762627999927 ], [ 140.75709069100003, -2.603936455999929 ], [ 140.775645379000025, -2.618096612999921 ], [ 140.785492384, -2.621270440999922 ], [ 140.795583530000044, -2.619398695999962 ], [ 140.81804446700005, -2.61101653399993 ], [ 140.829600457000083, -2.608168226999908 ], [ 140.922129754000025, -2.608168226999908 ], [ 140.965017123000052, -2.600762627999927 ], [ 140.974131707000083, -2.600518487999921 ], [ 140.974457227000016, -2.600518487999921 ] ] ], [ [ [ 138.753428582000083, -6.778252862999921 ], [ 138.75904381600003, -6.791680596999925 ], [ 138.783050977000016, -6.814222914999959 ], [ 138.787445509, -6.829522393999923 ], [ 138.781504754000025, -6.838962497999944 ], [ 138.768728061000047, -6.849379164999959 ], [ 138.746592644000089, -6.863051039999959 ], [ 138.728282097000033, -6.867771091999941 ], [ 138.716319207000083, -6.864678643999923 ], [ 138.706553582000083, -6.859144789999959 ], [ 138.695078972000033, -6.856215101999908 ], [ 138.681976759, -6.847751559999949 ], [ 138.672862175000091, -6.810153903999947 ], [ 138.660899285000028, -6.801527601999908 ], [ 138.650157097000033, -6.797295830999929 ], [ 138.638926629000025, -6.787367445999905 ], [ 138.623057488000086, -6.767347914999959 ], [ 138.616953972000033, -6.748142184999949 ], [ 138.618500196000014, -6.729099216999941 ], [ 138.626963738000086, -6.720147393999923 ], [ 138.641286655000044, -6.730645440999922 ], [ 138.665537957000083, -6.750258070999905 ], [ 138.679209832000083, -6.758070570999905 ], [ 138.695078972000033, -6.761325778999947 ], [ 138.731211785000028, -6.763116143999923 ], [ 138.746836785000028, -6.768161716999941 ], [ 138.753428582000083, -6.778252862999921 ] ] ], [ [ [ 138.897308790000011, -8.33717213299991 ], [ 138.904470248000052, -8.351739190999922 ], [ 138.910899285000028, -8.374769789999959 ], [ 138.90984134200005, -8.396091403999947 ], [ 138.894053582000083, -8.405450127999927 ], [ 138.699961785000028, -8.394626559999949 ], [ 138.654063347000033, -8.376153252999927 ], [ 138.629893425000091, -8.371270440999922 ], [ 138.582367384, -8.372979424999926 ], [ 138.558360222000033, -8.366631768999923 ], [ 138.548024936000047, -8.347100518999923 ], [ 138.552256707000083, -8.322686455999929 ], [ 138.564219597000033, -8.307305596999925 ], [ 138.639984571000014, -8.257012627999927 ], [ 138.657237175000091, -8.241143487999921 ], [ 138.664724155000044, -8.22389088299991 ], [ 138.667165561000047, -8.203057549999926 ], [ 138.67505944100003, -8.18914153399993 ], [ 138.688812696000014, -8.18132903399993 ], [ 138.728526238000086, -8.176690362999921 ], [ 138.785329623000052, -8.158949476999908 ], [ 138.816905144000089, -8.161879164999959 ], [ 138.831390821000014, -8.185642184999949 ], [ 138.835297071000014, -8.219008070999905 ], [ 138.835297071000014, -8.25123463299991 ], [ 138.841970248000052, -8.276950778999947 ], [ 138.858164910000028, -8.297458591999941 ], [ 138.897308790000011, -8.33717213299991 ] ] ], [ [ [ 138.938975457000083, -7.542087497999944 ], [ 138.974131707000083, -7.553399346999925 ], [ 139.046397332000083, -7.561944268999923 ], [ 139.075531446000014, -7.576267184999949 ], [ 139.057383660000028, -7.594659112999921 ], [ 139.044444207000083, -7.611423434999949 ], [ 139.035166863000086, -7.629571221999925 ], [ 139.020274285000028, -7.671970309999949 ], [ 138.993662957000083, -7.720147393999923 ], [ 138.988780144000089, -7.73796965899993 ], [ 138.982676629000025, -7.829847914999959 ], [ 138.977224155000044, -7.840915622999944 ], [ 138.966319207000083, -7.850518487999921 ], [ 138.910655144000089, -7.878513278999947 ], [ 138.891123894000089, -7.898044528999947 ], [ 138.883799675000091, -7.932549737999921 ], [ 138.886485222000033, -8.007012627999927 ], [ 138.892588738000086, -8.041273695999905 ], [ 138.904144727000016, -8.07586028399993 ], [ 138.857676629000025, -8.075290622999944 ], [ 138.836680535000028, -8.080010674999926 ], [ 138.818207227000016, -8.093194268999923 ], [ 138.78834069100003, -8.130059502999927 ], [ 138.771820509, -8.143161716999941 ], [ 138.746592644000089, -8.151543877999927 ], [ 138.700938347000033, -8.15398528399993 ], [ 138.679698113000086, -8.15748463299991 ], [ 138.660899285000028, -8.169040622999944 ], [ 138.64616946700005, -8.18873463299991 ], [ 138.621267123000052, -8.233819268999923 ], [ 138.602549675000091, -8.254652601999908 ], [ 138.535817905000044, -8.302178643999923 ], [ 138.517588738000086, -8.309258721999925 ], [ 138.507823113000086, -8.31568775799991 ], [ 138.472178582000083, -8.357598565999922 ], [ 138.444183790000011, -8.379082940999922 ], [ 138.412119988000086, -8.396254164999959 ], [ 138.375987175000091, -8.409600518999923 ], [ 138.335703972000033, -8.419122002999927 ], [ 138.293467644000089, -8.418715101999908 ], [ 138.223399285000028, -8.39185963299991 ], [ 138.177989129000025, -8.384942315999922 ], [ 138.034190300000091, -8.381931247999944 ], [ 137.849131707000083, -8.377536716999941 ], [ 137.801605665000011, -8.382989190999922 ], [ 137.759532097000033, -8.393975518999923 ], [ 137.677093946000014, -8.425957940999922 ], [ 137.638194207000083, -8.425876559999949 ], [ 137.636973504000025, -8.389418226999908 ], [ 137.72624759200005, -8.144789320999905 ], [ 137.749766472000033, -8.101169528999947 ], [ 137.752777540000011, -8.086521091999941 ], [ 137.75904381600003, -8.073418877999927 ], [ 137.789398634, -8.052341403999947 ], [ 137.800547722000033, -8.041680596999925 ], [ 137.809743686000047, -7.983575127999927 ], [ 137.818207227000016, -7.973402601999908 ], [ 137.824392123000052, -7.964288018999923 ], [ 137.894867384, -7.816176039999959 ], [ 137.917979363000086, -7.781670830999929 ], [ 137.965830925000091, -7.739434502999927 ], [ 137.972666863000086, -7.723321221999925 ], [ 137.97624759200005, -7.702894789999959 ], [ 137.985199415000011, -7.679294528999947 ], [ 138.006683790000011, -7.637627862999921 ], [ 138.028086785000028, -7.610039971999925 ], [ 138.088633660000028, -7.55982838299991 ], [ 138.244151238000086, -7.456475518999923 ], [ 138.395030144000089, -7.404880466999941 ], [ 138.529063347000033, -7.386488539999959 ], [ 138.556488477000016, -7.377048434999949 ], [ 138.620860222000033, -7.364678643999923 ], [ 138.717051629000025, -7.359551690999922 ], [ 138.804535352000016, -7.374200127999927 ], [ 138.842784050000091, -7.421644789999959 ], [ 138.848155144000089, -7.43523528399993 ], [ 138.896006707000083, -7.505059502999927 ], [ 138.908702019000089, -7.519789320999905 ], [ 138.922862175000091, -7.531914971999925 ], [ 138.938975457000083, -7.542087497999944 ] ] ], [ [ [ 136.848480665000011, -1.76531340899993 ], [ 136.899261915000011, -1.79461028399993 ], [ 136.899424675000091, -1.799493096999925 ], [ 136.88835696700005, -1.802504164999959 ], [ 136.881358269000089, -1.816176039999959 ], [ 136.87232506600003, -1.819268487999921 ], [ 136.79420006600003, -1.820733330999929 ], [ 136.759776238000086, -1.826104424999926 ], [ 136.729828321000014, -1.826104424999926 ], [ 136.725596550000091, -1.829847914999959 ], [ 136.722504102000016, -1.83953215899993 ], [ 136.715017123000052, -1.847263278999947 ], [ 136.704844597000033, -1.852227471999925 ], [ 136.68287194100003, -1.856377862999921 ], [ 136.674327019000089, -1.861911716999941 ], [ 136.666351759, -1.86842213299991 ], [ 136.656748894000089, -1.873955987999921 ], [ 136.644867384, -1.876397393999923 ], [ 136.552989129000025, -1.867120049999926 ], [ 136.532562696000014, -1.867771091999941 ], [ 136.532562696000014, -1.873955987999921 ], [ 136.540049675000091, -1.879571221999925 ], [ 136.54615319100003, -1.889092705999929 ], [ 136.546397332000083, -1.897881768999923 ], [ 136.536306186000047, -1.901788018999923 ], [ 136.524912957000083, -1.899997653999947 ], [ 136.506602410000028, -1.890801690999922 ], [ 136.498545769000089, -1.888278903999947 ], [ 136.486338738000086, -1.888441664999959 ], [ 136.465830925000091, -1.893731377999927 ], [ 136.453949415000011, -1.895114841999941 ], [ 136.443858269000089, -1.892836195999962 ], [ 136.413096550000091, -1.881442966999941 ], [ 136.397146030000044, -1.87818775799991 ], [ 136.357432488000086, -1.864027601999908 ], [ 136.337657097000033, -1.860935153999947 ], [ 136.332041863000086, -1.86296965899993 ], [ 136.323008660000028, -1.871840101999908 ], [ 136.317149285000028, -1.873955987999921 ], [ 136.317067905000044, -1.87468840899993 ], [ 136.308441602000016, -1.876071872999944 ], [ 136.300303582000083, -1.87623463299991 ], [ 136.30046634200005, -1.873955987999921 ], [ 136.29029381600003, -1.880466403999947 ], [ 136.283864780000044, -1.886976820999962 ], [ 136.278656446000014, -1.89576588299991 ], [ 136.273203972000033, -1.909356377999927 ], [ 136.266368035000028, -1.909356377999927 ], [ 136.260915561000047, -1.896905205999929 ], [ 136.252696160000028, -1.892347914999959 ], [ 136.242686394000089, -1.894463799999926 ], [ 136.232188347000033, -1.901788018999923 ], [ 136.21607506600003, -1.873304945999962 ], [ 136.18482506600003, -1.855889580999929 ], [ 136.10865319100003, -1.839776299999926 ], [ 136.098317905000044, -1.839450778999947 ], [ 136.077159050000091, -1.840915622999944 ], [ 136.067149285000028, -1.839776299999926 ], [ 136.058116082000083, -1.83521900799991 ], [ 136.043223504000025, -1.822035414999959 ], [ 136.03638756600003, -1.819268487999921 ], [ 136.014170769000089, -1.81804778399993 ], [ 135.997569207000083, -1.814385674999926 ], [ 135.984141472000033, -1.808200778999947 ], [ 135.957367384, -1.79225025799991 ], [ 135.912364129000025, -1.771661065999922 ], [ 135.902598504000025, -1.768731377999927 ], [ 135.894867384, -1.75750090899993 ], [ 135.87623131600003, -1.753676039999959 ], [ 135.834320509, -1.75164153399993 ], [ 135.81568444100003, -1.744724216999941 ], [ 135.783864780000044, -1.727715752999927 ], [ 135.748789910000028, -1.723565362999921 ], [ 135.741547071000014, -1.720472914999959 ], [ 135.728526238000086, -1.706963799999926 ], [ 135.71802819100003, -1.703301690999922 ], [ 135.705821160000028, -1.70476653399993 ], [ 135.690928582000083, -1.710137627999927 ], [ 135.679942254000025, -1.705336195999962 ], [ 135.668304884, -1.694105726999908 ], [ 135.656097852000016, -1.690199476999908 ], [ 135.64616946700005, -1.693129164999959 ], [ 135.631602410000028, -1.699883721999925 ], [ 135.616221550000091, -1.704196872999944 ], [ 135.60474694100003, -1.700127862999921 ], [ 135.580821160000028, -1.684258721999925 ], [ 135.554535352000016, -1.68328215899993 ], [ 135.52662194100003, -1.686211846999925 ], [ 135.497894727000016, -1.682793877999927 ], [ 135.483897332000083, -1.674981377999927 ], [ 135.480235222000033, -1.666192315999922 ], [ 135.478688998000052, -1.655450127999927 ], [ 135.471202019000089, -1.641778252999927 ], [ 135.465993686000047, -1.64031340899993 ], [ 135.449229363000086, -1.642673434999949 ], [ 135.443207227000016, -1.641778252999927 ], [ 135.44068444100003, -1.635674737999921 ], [ 135.439626498000052, -1.626560153999947 ], [ 135.436208530000044, -1.618096612999921 ], [ 135.426524285000028, -1.614434502999927 ], [ 135.422211134, -1.610772393999923 ], [ 135.433929884, -1.603122653999947 ], [ 135.449717644000089, -1.596856377999927 ], [ 135.457530144000089, -1.597426039999959 ], [ 135.463552280000044, -1.58953215899993 ], [ 135.477305535000028, -1.589939059999949 ], [ 135.583018425000091, -1.613864841999941 ], [ 135.786468946000014, -1.628106377999927 ], [ 135.855967644000089, -1.643975518999923 ], [ 135.896739129000025, -1.648044528999947 ], [ 135.957286004000025, -1.631524346999925 ], [ 136.03248131600003, -1.651950778999947 ], [ 136.060313347000033, -1.641778252999927 ], [ 136.09888756600003, -1.654717705999929 ], [ 136.191254102000016, -1.653903903999947 ], [ 136.232188347000033, -1.662286065999922 ], [ 136.236989780000044, -1.666436455999929 ], [ 136.245616082000083, -1.678399346999925 ], [ 136.252696160000028, -1.682793877999927 ], [ 136.263519727000016, -1.683689059999949 ], [ 136.287852410000028, -1.682061455999929 ], [ 136.297048373000052, -1.686455987999921 ], [ 136.31177819100003, -1.697849216999941 ], [ 136.332692905000044, -1.709649346999925 ], [ 136.368174675000091, -1.72429778399993 ], [ 136.39031009200005, -1.725762627999927 ], [ 136.453949415000011, -1.717461846999925 ], [ 136.618907097000033, -1.73796965899993 ], [ 136.704600457000083, -1.730564059999949 ], [ 136.723155144000089, -1.734307549999926 ], [ 136.760752800000091, -1.748467705999929 ], [ 136.776866082000083, -1.75164153399993 ], [ 136.814463738000086, -1.754164320999962 ], [ 136.830821160000028, -1.758396091999941 ], [ 136.848480665000011, -1.76531340899993 ] ] ], [ [ [ 135.285655144000089, -1.476739190999922 ], [ 135.296641472000033, -1.480401299999926 ], [ 135.305023634, -1.485284112999921 ], [ 135.31568444100003, -1.487888278999947 ], [ 135.333994988000086, -1.484144789999959 ], [ 135.311859571000014, -1.510186455999929 ], [ 135.275401238000086, -1.522230726999908 ], [ 135.186859571000014, -1.525648695999962 ], [ 135.104340040000011, -1.518243096999925 ], [ 135.096853061000047, -1.508558851999908 ], [ 135.098399285000028, -1.489027601999908 ], [ 135.10906009200005, -1.473809502999927 ], [ 135.128672722000033, -1.476739190999922 ], [ 135.150889519000089, -1.483005466999941 ], [ 135.20476321700005, -1.477715752999927 ], [ 135.227549675000091, -1.48756275799991 ], [ 135.239268425000091, -1.489678643999923 ], [ 135.285655144000089, -1.476739190999922 ] ] ], [ [ [ 134.998220248000052, -1.018649997999944 ], [ 134.993011915000011, -1.033298434999949 ], [ 134.991221550000091, -1.049248955999929 ], [ 134.991384311000047, -1.082940362999921 ], [ 134.95671634200005, -1.128513278999947 ], [ 134.942556186000047, -1.133965752999927 ], [ 134.925791863000086, -1.135511976999908 ], [ 134.892100457000083, -1.134698174999926 ], [ 134.878428582000083, -1.130791924999926 ], [ 134.863536004000025, -1.121026299999926 ], [ 134.851573113000086, -1.10865650799991 ], [ 134.835134311000047, -1.071465752999927 ], [ 134.812836134, -1.049899997999944 ], [ 134.80005944100003, -1.027764580999929 ], [ 134.816416863000086, -1.000664971999925 ], [ 134.818532748000052, -0.99578215899993 ], [ 134.820078972000033, -0.976983330999929 ], [ 134.825938347000033, -0.965752862999921 ], [ 134.829844597000033, -0.96062590899993 ], [ 134.833750847000033, -0.956638278999947 ], [ 134.849131707000083, -0.944431247999944 ], [ 134.862803582000083, -0.937595309999949 ], [ 134.877777540000011, -0.936130466999941 ], [ 134.923594597000033, -0.949965101999908 ], [ 134.937510613000086, -0.957614841999941 ], [ 134.943614129000025, -0.966892184999949 ], [ 134.945567254000025, -0.975192966999941 ], [ 134.954600457000083, -0.990655205999929 ], [ 134.95671634200005, -1.000664971999925 ], [ 134.955739780000044, -1.008884372999944 ], [ 134.951426629000025, -1.024346612999921 ], [ 134.95045006600003, -1.035332940999922 ], [ 134.932139519000089, -1.057712497999944 ], [ 134.927989129000025, -1.072035414999959 ], [ 134.943614129000025, -1.079522393999923 ], [ 134.961924675000091, -1.070570570999962 ], [ 134.978526238000086, -1.027601820999962 ], [ 134.998220248000052, -1.018649997999944 ] ] ], [ [ [ 136.375661655000044, -1.093682549999926 ], [ 136.384938998000052, -1.107517184999949 ], [ 136.381114129000025, -1.123223565999922 ], [ 136.36841881600003, -1.136163018999923 ], [ 136.351328972000033, -1.141534112999921 ], [ 136.340668165000011, -1.147393487999921 ], [ 136.293630405000044, -1.183200778999947 ], [ 136.230642123000052, -1.192966403999947 ], [ 136.214691602000016, -1.199476820999962 ], [ 136.201182488000086, -1.207940362999921 ], [ 136.181651238000086, -1.215427341999941 ], [ 136.160655144000089, -1.220879815999922 ], [ 136.142832879000025, -1.223402601999908 ], [ 136.099457227000016, -1.215997002999927 ], [ 136.03638756600003, -1.176446221999925 ], [ 135.991384311000047, -1.168877862999921 ], [ 135.968516472000033, -1.172621351999908 ], [ 135.929942254000025, -1.186293226999908 ], [ 135.906016472000033, -1.189385674999926 ], [ 135.885020379000025, -1.183038018999923 ], [ 135.864024285000028, -1.167575778999947 ], [ 135.846202019000089, -1.147637627999927 ], [ 135.834320509, -1.128513278999947 ], [ 135.828298373000052, -1.107842705999929 ], [ 135.834320509, -1.049004815999922 ], [ 135.831065300000091, -1.039646091999941 ], [ 135.816416863000086, -1.020277601999908 ], [ 135.813243035000028, -1.01490650799991 ], [ 135.81177819100003, -1.003513278999947 ], [ 135.799489780000044, -0.970310153999947 ], [ 135.781016472000033, -0.872653903999947 ], [ 135.765391472000033, -0.839288018999923 ], [ 135.740977410000028, -0.819024346999925 ], [ 135.719086134, -0.824802341999941 ], [ 135.699961785000028, -0.844903252999927 ], [ 135.684092644000089, -0.867120049999926 ], [ 135.660817905000044, -0.887139580999929 ], [ 135.640635613000086, -0.881605726999908 ], [ 135.484873894000089, -0.757256768999923 ], [ 135.479014519000089, -0.768731377999927 ], [ 135.47974694100003, -0.780205987999921 ], [ 135.491709832000083, -0.805108330999929 ], [ 135.45866946700005, -0.792738539999959 ], [ 135.422618035000028, -0.762383721999925 ], [ 135.393728061000047, -0.723402601999908 ], [ 135.369883660000028, -0.653497002999927 ], [ 135.37037194100003, -0.635918877999927 ], [ 135.389333530000044, -0.627618096999925 ], [ 135.398936394000089, -0.631036065999922 ], [ 135.414561394000089, -0.648695570999962 ], [ 135.423350457000083, -0.654880466999941 ], [ 135.429453972000033, -0.655450127999927 ], [ 135.440928582000083, -0.652439059999949 ], [ 135.446787957000083, -0.652113539999959 ], [ 135.452484571000014, -0.654229424999926 ], [ 135.463145379000025, -0.66139088299991 ], [ 135.469004754000025, -0.664239190999922 ], [ 135.498789910000028, -0.672458591999941 ], [ 135.551280144000089, -0.677178643999923 ], [ 135.562673373000052, -0.676364841999941 ], [ 135.583343946000014, -0.666680596999925 ], [ 135.592458530000044, -0.67546965899993 ], [ 135.601573113000086, -0.695896091999941 ], [ 135.666514519000089, -0.682793877999927 ], [ 135.677256707000083, -0.685642184999949 ], [ 135.679453972000033, -0.691338799999926 ], [ 135.68873131600003, -0.70867278399993 ], [ 135.690928582000083, -0.719821872999944 ], [ 135.695078972000033, -0.729587497999944 ], [ 135.704925977000016, -0.726739190999922 ], [ 135.716319207000083, -0.719496351999908 ], [ 135.725108269000089, -0.716403903999947 ], [ 135.75709069100003, -0.739353122999944 ], [ 135.777517123000052, -0.748711846999925 ], [ 135.786468946000014, -0.740329684999949 ], [ 135.792816602000016, -0.729180596999925 ], [ 135.808604363000086, -0.71412525799991 ], [ 135.828379754000025, -0.70086028399993 ], [ 135.847422722000033, -0.695896091999941 ], [ 135.869313998000052, -0.703789971999925 ], [ 135.893565300000091, -0.721123955999929 ], [ 135.966319207000083, -0.796075127999927 ], [ 136.045583530000044, -0.85320403399993 ], [ 136.065765821000014, -0.871677341999941 ], [ 136.077647332000083, -0.899997653999947 ], [ 136.084646030000044, -0.910251559999949 ], [ 136.092539910000028, -0.918877862999921 ], [ 136.104991082000083, -0.927829684999949 ], [ 136.10906009200005, -0.940118096999925 ], [ 136.111827019000089, -0.953789971999925 ], [ 136.114756707000083, -0.963474216999941 ], [ 136.129730665000011, -0.978448174999926 ], [ 136.14812259200005, -0.991387627999927 ], [ 136.163584832000083, -1.004978122999944 ], [ 136.173350457000083, -1.031345309999949 ], [ 136.187347852000016, -1.049574476999908 ], [ 136.196299675000091, -1.066582940999922 ], [ 136.208750847000033, -1.064060153999947 ], [ 136.220550977000016, -1.056735934999949 ], [ 136.224619988000086, -1.052829684999949 ], [ 136.245941602000016, -1.048760674999926 ], [ 136.273448113000086, -1.047295830999929 ], [ 136.297129754000025, -1.05437590899993 ], [ 136.307302280000044, -1.076348565999922 ], [ 136.316742384, -1.08562590899993 ], [ 136.375661655000044, -1.093682549999926 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-JI", "NAME_1": "Jawa Timur" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.395192905000044, -8.447035414999959 ], [ 113.406097852000016, -8.453220309999949 ], [ 113.412119988000086, -8.466892184999949 ], [ 113.413096550000091, -8.480564059999949 ], [ 113.409190300000091, -8.486748955999929 ], [ 113.396657748000052, -8.488376559999949 ], [ 113.371918165000011, -8.494724216999941 ], [ 113.292491082000083, -8.494805596999925 ], [ 113.281993035000028, -8.488213799999926 ], [ 113.278005405000044, -8.473321221999925 ], [ 113.281993035000028, -8.457207940999922 ], [ 113.295909050000091, -8.447035414999959 ], [ 113.291758660000028, -8.439711195999905 ], [ 113.289073113000086, -8.432793877999927 ], [ 113.339854363000086, -8.444024346999925 ], [ 113.395192905000044, -8.447035414999959 ] ] ], [ [ [ 111.672699415000068, -6.73365650799991 ], [ 111.69499759200005, -6.75514088299991 ], [ 111.716807488000029, -6.770684502999927 ], [ 111.740407748000052, -6.781670830999929 ], [ 111.807302280000044, -6.799493096999925 ], [ 111.849457227000073, -6.803887627999927 ], [ 111.866221550000034, -6.807793877999927 ], [ 111.882334832000026, -6.808689059999949 ], [ 111.904307488000029, -6.801527601999908 ], [ 111.936534050000034, -6.784926039999959 ], [ 111.958506707000026, -6.779392184999949 ], [ 111.97624759200005, -6.78484465899993 ], [ 112.009938998000052, -6.818617445999905 ], [ 112.067881707000083, -6.893649997999944 ], [ 112.083994988000086, -6.906019789999959 ], [ 112.106944207000083, -6.910821221999925 ], [ 112.150645379000025, -6.910088799999926 ], [ 112.192881707000083, -6.904554945999905 ], [ 112.226573113000086, -6.892673434999949 ], [ 112.237071160000028, -6.890883070999905 ], [ 112.278168165000011, -6.890883070999905 ], [ 112.298675977000016, -6.887465101999908 ], [ 112.339691602000016, -6.873142184999949 ], [ 112.363536004000025, -6.870538018999923 ], [ 112.40007571700005, -6.876722914999959 ], [ 112.415049675000091, -6.88250090899993 ], [ 112.422373894000089, -6.878838799999926 ], [ 112.429209832000083, -6.873223565999922 ], [ 112.43523196700005, -6.870538018999923 ], [ 112.454844597000033, -6.875420830999929 ], [ 112.471202019000089, -6.887139580999929 ], [ 112.48601321700005, -6.900567315999922 ], [ 112.500743035000028, -6.910821221999925 ], [ 112.52271569100003, -6.91765715899993 ], [ 112.542816602000016, -6.917575778999947 ], [ 112.557139519000089, -6.90789153399993 ], [ 112.562836134, -6.887302341999941 ], [ 112.56218509200005, -6.874200127999927 ], [ 112.562510613000086, -6.866794528999947 ], [ 112.568125847000033, -6.865411065999922 ], [ 112.582774285000028, -6.870538018999923 ], [ 112.589854363000086, -6.876071872999944 ], [ 112.596202019000089, -6.885186455999929 ], [ 112.601084832000083, -6.895603122999944 ], [ 112.603770379000025, -6.904554945999905 ], [ 112.602549675000091, -6.925957940999922 ], [ 112.586680535000028, -6.965590101999908 ], [ 112.582774285000028, -6.98992278399993 ], [ 112.58716881600003, -6.999607028999947 ], [ 112.609548373000052, -7.033379815999922 ], [ 112.618011915000011, -7.041192315999922 ], [ 112.628672722000033, -7.045342705999929 ], [ 112.643321160000028, -7.039483330999929 ], [ 112.657399936000047, -7.037855726999908 ], [ 112.665782097000033, -7.054864190999922 ], [ 112.633799675000091, -7.06373463299991 ], [ 112.617686394000089, -7.070570570999905 ], [ 112.61060631600003, -7.07935963299991 ], [ 112.614105665000011, -7.091241143999923 ], [ 112.622569207000083, -7.108493747999944 ], [ 112.632823113000086, -7.123793226999908 ], [ 112.641612175000091, -7.13054778399993 ], [ 112.658376498000052, -7.137627862999921 ], [ 112.674652540000011, -7.154473565999922 ], [ 112.683848504000025, -7.174899997999944 ], [ 112.67896569100003, -7.19264088299991 ], [ 112.664317254000025, -7.198825778999947 ], [ 112.603770379000025, -7.19264088299991 ], [ 112.620127800000091, -7.214939059999949 ], [ 112.645518425000091, -7.23015715899993 ], [ 112.700694207000083, -7.254652601999908 ], [ 112.716319207000083, -7.239190362999921 ], [ 112.729502800000091, -7.220472914999959 ], [ 112.745127800000091, -7.205173434999949 ], [ 112.768239780000044, -7.199395440999922 ], [ 112.78443444100003, -7.205498955999929 ], [ 112.797862175000091, -7.218926690999922 ], [ 112.808604363000086, -7.234551690999922 ], [ 112.823252800000091, -7.262627862999921 ], [ 112.826670769000089, -7.277927341999941 ], [ 112.826345248000052, -7.293226820999905 ], [ 112.818125847000033, -7.329522393999923 ], [ 112.816172722000033, -7.34693775799991 ], [ 112.81609134200005, -7.387139580999929 ], [ 112.807465040000011, -7.407321872999944 ], [ 112.770030144000089, -7.432712497999944 ], [ 112.761485222000033, -7.44890715899993 ], [ 112.761485222000033, -7.531182549999926 ], [ 112.844899936000047, -7.592868747999944 ], [ 112.972015821000014, -7.647637627999927 ], [ 112.990489129000025, -7.651950778999947 ], [ 113.016286655000044, -7.652276299999926 ], [ 113.037119988000086, -7.655043226999908 ], [ 113.056000196000014, -7.663018487999921 ], [ 113.076182488000086, -7.678643487999921 ], [ 113.111501498000052, -7.713148695999905 ], [ 113.132660352000016, -7.72779713299991 ], [ 113.165375196000014, -7.735935153999947 ], [ 113.187266472000033, -7.745049737999921 ], [ 113.199554884, -7.747491143999923 ], [ 113.20826256600003, -7.746270440999922 ], [ 113.22974694100003, -7.740817966999941 ], [ 113.241221550000091, -7.740655205999929 ], [ 113.26099694100003, -7.750176690999922 ], [ 113.285329623000052, -7.781670830999929 ], [ 113.299327019000089, -7.788506768999923 ], [ 113.323090040000011, -7.785577080999929 ], [ 113.342539910000028, -7.777764580999929 ], [ 113.377777540000011, -7.754327080999929 ], [ 113.41374759200005, -7.736260674999926 ], [ 113.435801629000025, -7.729180596999925 ], [ 113.456879102000016, -7.726332289999959 ], [ 113.472829623000052, -7.722100518999923 ], [ 113.504567905000044, -7.703789971999925 ], [ 113.52857506600003, -7.700372002999927 ], [ 113.658946160000028, -7.720147393999923 ], [ 113.671071811000047, -7.717950127999927 ], [ 113.690928582000083, -7.709079684999949 ], [ 113.699961785000028, -7.706638278999947 ], [ 113.722992384, -7.70826588299991 ], [ 113.763031446000014, -7.722832940999922 ], [ 113.785899285000028, -7.726332289999959 ], [ 113.803884311000047, -7.721774997999944 ], [ 113.816579623000052, -7.71062590899993 ], [ 113.83716881600003, -7.686130466999941 ], [ 113.85474694100003, -7.67701588299991 ], [ 113.869639519000089, -7.677992445999905 ], [ 113.886078321000014, -7.683038018999923 ], [ 113.90943444100003, -7.686130466999941 ], [ 113.930511915000011, -7.683851820999905 ], [ 113.945078972000033, -7.677992445999905 ], [ 114.016123894000089, -7.618096612999921 ], [ 114.045583530000044, -7.611993096999925 ], [ 114.077321811000047, -7.630791924999926 ], [ 114.116953972000033, -7.680596612999921 ], [ 114.140391472000033, -7.70086028399993 ], [ 114.172211134, -7.713474216999941 ], [ 114.195974155000044, -7.71412525799991 ], [ 114.236827019000089, -7.703301690999922 ], [ 114.258555535000028, -7.700372002999927 ], [ 114.273610873000052, -7.705498955999929 ], [ 114.310069207000083, -7.740655205999929 ], [ 114.325205925000091, -7.750258070999905 ], [ 114.334483269000089, -7.75318775799991 ], [ 114.347504102000016, -7.754327080999929 ], [ 114.369639519000089, -7.75318775799991 ], [ 114.381114129000025, -7.754164320999905 ], [ 114.388926629000025, -7.758070570999905 ], [ 114.406748894000089, -7.773207289999959 ], [ 114.445974155000044, -7.794691664999959 ], [ 114.46021569100003, -7.809665622999944 ], [ 114.467295769000089, -7.830987237999921 ], [ 114.46648196700005, -7.852715752999927 ], [ 114.46021569100003, -7.894952080999929 ], [ 114.457367384, -7.902520440999922 ], [ 114.44459069100003, -7.920668226999908 ], [ 114.440440300000091, -7.932549737999921 ], [ 114.440277540000011, -7.943780205999929 ], [ 114.442556186000047, -7.95240650799991 ], [ 114.445485873000052, -7.959649346999925 ], [ 114.447276238000086, -7.966566664999959 ], [ 114.446787957000083, -8.014255466999941 ], [ 114.404795769000089, -8.158379815999922 ], [ 114.365977410000028, -8.357191664999959 ], [ 114.363536004000025, -8.386163018999923 ], [ 114.35865319100003, -8.409112237999921 ], [ 114.357920769000089, -8.419122002999927 ], [ 114.360118035000028, -8.430596612999921 ], [ 114.371592644000089, -8.453220309999949 ], [ 114.373383009, -8.498467705999929 ], [ 114.376719597000033, -8.519463799999926 ], [ 114.388926629000025, -8.528252862999921 ], [ 114.401133660000028, -8.517185153999947 ], [ 114.405121290000011, -8.491794528999947 ], [ 114.405609571000014, -8.447035414999959 ], [ 114.423187696000014, -8.465020440999922 ], [ 114.42741946700005, -8.496840101999908 ], [ 114.426117384, -8.562432549999926 ], [ 114.43287194100003, -8.582614841999941 ], [ 114.445323113000086, -8.60279713299991 ], [ 114.461192254000025, -8.618340752999927 ], [ 114.478037957000083, -8.624607028999947 ], [ 114.498057488000086, -8.625258070999905 ], [ 114.510752800000091, -8.628350518999923 ], [ 114.535980665000011, -8.645114841999941 ], [ 114.58912194100003, -8.664239190999922 ], [ 114.597422722000033, -8.675713799999926 ], [ 114.603363477000016, -8.688164971999925 ], [ 114.615570509, -8.700127862999921 ], [ 114.625661655000044, -8.71607838299991 ], [ 114.624766472000033, -8.740655205999929 ], [ 114.597178582000083, -8.775567315999922 ], [ 114.555349155000044, -8.777927341999941 ], [ 114.467621290000011, -8.748142184999949 ], [ 114.445323113000086, -8.744073174999926 ], [ 114.388926629000025, -8.748142184999949 ], [ 114.366953972000033, -8.74146900799991 ], [ 114.369802280000044, -8.726332289999959 ], [ 114.391937696000014, -8.700290622999944 ], [ 114.385264519000089, -8.664727471999925 ], [ 114.349619988000086, -8.63250090899993 ], [ 114.302582227000016, -8.611911716999941 ], [ 114.261729363000086, -8.610935153999947 ], [ 114.220876498000052, -8.636488539999959 ], [ 114.197032097000033, -8.645603122999944 ], [ 114.186534050000091, -8.634860934999949 ], [ 114.174815300000091, -8.619805596999925 ], [ 114.148203972000033, -8.62232838299991 ], [ 114.104014519000089, -8.638116143999923 ], [ 114.094899936000047, -8.637872002999927 ], [ 114.059336785000028, -8.631442966999941 ], [ 114.050791863000086, -8.627129815999922 ], [ 114.041514519000089, -8.608330987999921 ], [ 114.031993035000028, -8.604099216999941 ], [ 114.012380405000044, -8.609470309999949 ], [ 113.994883660000028, -8.618340752999927 ], [ 113.979991082000083, -8.620212497999944 ], [ 113.96802819100003, -8.604099216999941 ], [ 113.969248894000089, -8.593519789999959 ], [ 113.973155144000089, -8.579685153999947 ], [ 113.97388756600003, -8.567559502999927 ], [ 113.964366082000083, -8.562432549999926 ], [ 113.954274936000047, -8.564711195999905 ], [ 113.933767123000052, -8.574476820999905 ], [ 113.922862175000091, -8.576755466999941 ], [ 113.905609571000014, -8.57390715899993 ], [ 113.879649285000028, -8.566176039999959 ], [ 113.853770379000025, -8.555108330999929 ], [ 113.83716881600003, -8.542087497999944 ], [ 113.832041863000086, -8.546807549999926 ], [ 113.828461134, -8.548923434999949 ], [ 113.825938347000033, -8.551039320999905 ], [ 113.82349694100003, -8.55632903399993 ], [ 113.818858269000089, -8.541761976999908 ], [ 113.813812696000014, -8.507745049999926 ], [ 113.806162957000083, -8.501071872999944 ], [ 113.790782097000033, -8.503024997999944 ], [ 113.773692254000025, -8.508070570999905 ], [ 113.760101759, -8.515801690999922 ], [ 113.754567905000044, -8.524997653999947 ], [ 113.750743035000028, -8.528090101999908 ], [ 113.741709832000083, -8.52898528399993 ], [ 113.72388756600003, -8.528252862999921 ], [ 113.719737175000091, -8.52467213299991 ], [ 113.721853061000047, -8.507419528999947 ], [ 113.720469597000033, -8.501071872999944 ], [ 113.707286004000025, -8.492364190999922 ], [ 113.698741082000083, -8.493584893999923 ], [ 113.688975457000083, -8.496840101999908 ], [ 113.672618035000028, -8.494805596999925 ], [ 113.658457879000025, -8.484958591999941 ], [ 113.640472852000016, -8.458591403999947 ], [ 113.627940300000091, -8.453220309999949 ], [ 113.59693444100003, -8.447035414999959 ], [ 113.590586785000028, -8.442071221999925 ], [ 113.579112175000091, -8.428806247999944 ], [ 113.573008660000028, -8.425957940999922 ], [ 113.540863477000016, -8.430596612999921 ], [ 113.527191602000016, -8.429294528999947 ], [ 113.490489129000025, -8.408379815999922 ], [ 113.483897332000083, -8.40203215899993 ], [ 113.478851759, -8.394707940999922 ], [ 113.472422722000033, -8.38209400799991 ], [ 113.466563347000033, -8.377536716999941 ], [ 113.446055535000028, -8.375583591999941 ], [ 113.429453972000033, -8.38404713299991 ], [ 113.413584832000083, -8.390232028999947 ], [ 113.395192905000044, -8.381280205999929 ], [ 113.345957879000025, -8.324151299999926 ], [ 113.323090040000011, -8.309258721999925 ], [ 113.281993035000028, -8.292087497999944 ], [ 113.240733269000089, -8.28093840899993 ], [ 113.197927280000044, -8.277276299999926 ], [ 113.070078972000033, -8.292413018999923 ], [ 113.026703321000014, -8.302992445999905 ], [ 112.987315300000091, -8.32350025799991 ], [ 112.93677819100003, -8.381280205999929 ], [ 112.902679884, -8.40398528399993 ], [ 112.870616082000083, -8.391778252999927 ], [ 112.857432488000086, -8.392673434999949 ], [ 112.833832227000016, -8.375746351999908 ], [ 112.82976321700005, -8.381280205999929 ], [ 112.826345248000052, -8.390069268999923 ], [ 112.817881707000083, -8.396579684999949 ], [ 112.80787194100003, -8.398858330999929 ], [ 112.799082879000025, -8.395196221999925 ], [ 112.789805535000028, -8.387872002999927 ], [ 112.784190300000091, -8.386814059999949 ], [ 112.76921634200005, -8.395196221999925 ], [ 112.75513756600003, -8.407972914999959 ], [ 112.747813347000033, -8.412855726999908 ], [ 112.733164910000028, -8.41765715899993 ], [ 112.716807488000086, -8.419122002999927 ], [ 112.701914910000028, -8.422295830999929 ], [ 112.690440300000091, -8.429864190999922 ], [ 112.672699415000011, -8.447035414999959 ], [ 112.656260613000086, -8.436455987999921 ], [ 112.612152540000011, -8.416436455999929 ], [ 112.573415561000047, -8.410088799999926 ], [ 112.520681186000047, -8.391778252999927 ], [ 112.442393425000091, -8.391778252999927 ], [ 112.426524285000028, -8.387627862999921 ], [ 112.413584832000083, -8.379082940999922 ], [ 112.398692254000025, -8.371758721999925 ], [ 112.37663821700005, -8.371270440999922 ], [ 112.381358269000089, -8.361423434999949 ], [ 112.38404381600003, -8.357598565999922 ], [ 112.366221550000091, -8.341973565999922 ], [ 112.341563347000033, -8.332696221999925 ], [ 112.315928582000083, -8.329034112999921 ], [ 112.295258009, -8.32976653399993 ], [ 112.284515821000014, -8.332696221999925 ], [ 112.257823113000086, -8.343357028999947 ], [ 112.244395379000025, -8.341973565999922 ], [ 112.23755944100003, -8.338474216999941 ], [ 112.233083530000044, -8.333916924999926 ], [ 112.227061394000089, -8.32976653399993 ], [ 112.208994988000086, -8.323663018999923 ], [ 112.024750196000014, -8.304945570999905 ], [ 112.002696160000028, -8.297784112999921 ], [ 111.970713738000029, -8.277764580999929 ], [ 111.961192254000025, -8.278252862999921 ], [ 111.936208530000044, -8.294854424999926 ], [ 111.931651238000029, -8.299574476999908 ], [ 111.927256707000026, -8.302504164999959 ], [ 111.918630405000044, -8.302992445999905 ], [ 111.898692254000025, -8.296482028999947 ], [ 111.874766472000033, -8.273858330999929 ], [ 111.859873894000032, -8.26881275799991 ], [ 111.833750847000033, -8.270684502999927 ], [ 111.822438998000052, -8.26881275799991 ], [ 111.811289910000028, -8.264418226999908 ], [ 111.801524285000028, -8.258884372999944 ], [ 111.792002800000034, -8.256524346999925 ], [ 111.781423373000052, -8.26140715899993 ], [ 111.771006707000026, -8.281508070999905 ], [ 111.772227410000028, -8.301690362999921 ], [ 111.770355665000068, -8.317315362999921 ], [ 111.750661655000044, -8.32350025799991 ], [ 111.746592644000032, -8.31804778399993 ], [ 111.74187259200005, -8.306084893999923 ], [ 111.735362175000034, -8.294040622999944 ], [ 111.726084832000026, -8.28875090899993 ], [ 111.717295769000032, -8.292738539999959 ], [ 111.711924675000034, -8.302178643999923 ], [ 111.705739780000044, -8.32350025799991 ], [ 111.70248457100007, -8.32740650799991 ], [ 111.696787957000026, -8.336846612999921 ], [ 111.694834832000026, -8.346368096999925 ], [ 111.709239129000025, -8.354099216999941 ], [ 111.711273634000065, -8.36101653399993 ], [ 111.707530144000032, -8.368096612999921 ], [ 111.695811394000032, -8.371270440999922 ], [ 111.673350457000026, -8.367852471999925 ], [ 111.654063347000033, -8.358086846999925 ], [ 111.639170769000032, -8.34303150799991 ], [ 111.63054446700005, -8.32350025799991 ], [ 111.623708530000044, -8.32350025799991 ], [ 111.61255944100003, -8.337009372999944 ], [ 111.595876498000052, -8.334405205999929 ], [ 111.561696811000047, -8.316664320999905 ], [ 111.548024936000047, -8.315606377999927 ], [ 111.53288821700005, -8.326592705999929 ], [ 111.517832879000025, -8.32976653399993 ], [ 111.448741082000026, -8.312920830999929 ], [ 111.441661004000025, -8.296807549999926 ], [ 111.443532748000052, -8.28484465899993 ], [ 111.442067905000044, -8.276055596999925 ], [ 111.42505944100003, -8.26881275799991 ], [ 111.417491082000026, -8.269138278999947 ], [ 111.399912957000026, -8.274346612999921 ], [ 111.390391472000033, -8.27507903399993 ], [ 111.38412519600007, -8.272881768999923 ], [ 111.37240644600007, -8.264418226999908 ], [ 111.363047722000033, -8.26140715899993 ], [ 111.311534050000034, -8.26140715899993 ], [ 111.300629102000073, -8.26295338299991 ], [ 111.294932488000029, -8.260430596999925 ], [ 111.284190300000034, -8.25123463299991 ], [ 111.276133660000028, -8.248304945999905 ], [ 111.265798373000052, -8.24928150799991 ], [ 111.257009311000047, -8.253024997999944 ], [ 111.25318444100003, -8.257989190999922 ], [ 111.17123457100007, -8.282647393999923 ], [ 111.161957227000073, -8.281914971999925 ], [ 111.158213738000029, -8.272067966999941 ], [ 111.155446811000047, -8.26100025799991 ], [ 111.148285352000073, -8.253513278999947 ], [ 111.138438347000033, -8.249200127999927 ], [ 111.127207879000025, -8.24773528399993 ], [ 111.114756707000026, -8.241957289999959 ], [ 111.111175977000073, -8.229180596999925 ], [ 111.109711134000065, -8.215427341999941 ], [ 111.103037957000026, -8.206801039999959 ], [ 111.095550977000073, -8.208184502999927 ], [ 111.090830925000034, -8.215508721999925 ], [ 111.08716881600003, -8.225274346999925 ], [ 111.082367384000065, -8.233493747999944 ], [ 111.072764519000032, -8.247002862999921 ], [ 111.066661004000025, -8.252536716999941 ], [ 111.05827884200005, -8.254652601999908 ], [ 111.017344597000033, -8.254652601999908 ], [ 110.998220248000052, -8.250176690999922 ], [ 110.94435014716224, -8.226372106493171 ], [ 110.944422235197976, -8.22611256264463 ], [ 110.945662470446621, -8.21882618617957 ], [ 110.960235223376799, -8.169940280819333 ], [ 110.960907016945214, -8.164514254529252 ], [ 110.96126875215117, -8.156607760439783 ], [ 110.959615105752505, -8.134283543051083 ], [ 110.96126875215117, -8.126325372118231 ], [ 110.965196160774155, -8.116868584417659 ], [ 110.98033735628394, -8.100177097095354 ], [ 110.999716017879905, -8.084002373710575 ], [ 111.036406285321789, -8.06038624422979 ], [ 111.09924482598791, -8.008503106233377 ], [ 111.149164260122461, -7.978065688280878 ], [ 111.176552768595343, -7.966903578237577 ], [ 111.192469109561728, -7.9580669081613 ], [ 111.216963739085259, -7.93998015685878 ], [ 111.228022496341111, -7.938119805784424 ], [ 111.235308872806172, -7.941013685633095 ], [ 111.244093866039066, -7.946336358236351 ], [ 111.253033888902792, -7.950625502065293 ], [ 111.263369174847469, -7.951245618790267 ], [ 111.273291049642182, -7.945199476674532 ], [ 111.280267368644104, -7.93920501050286 ], [ 111.284659865260551, -7.904375095034595 ], [ 111.30140302942624, -7.86091521596444 ], [ 111.3079142604347, -7.83781584952186 ], [ 111.310239698603141, -7.798541761493084 ], [ 111.307810906747932, -7.784330742869486 ], [ 111.301092971063724, -7.773323662457074 ], [ 111.291067742582186, -7.760301202238679 ], [ 111.26460941009617, -7.731724134461217 ], [ 111.253964064889658, -7.723145846803391 ], [ 111.242491897383104, -7.718856702974449 ], [ 111.207868686590587, -7.715549411975815 ], [ 111.190608759386691, -7.707436212311336 ], [ 111.188024937001217, -7.690486341671317 ], [ 111.187508173063691, -7.672554619999744 ], [ 111.185647821090015, -7.664389743491881 ], [ 111.182133823616994, -7.657878512483364 ], [ 111.182392206035445, -7.651677340736683 ], [ 111.18688805543934, -7.643512465128197 ], [ 111.212157831318791, -7.624288832263801 ], [ 111.217480503022728, -7.613333428694773 ], [ 111.206060012359615, -7.60056934999551 ], [ 111.197636753433358, -7.58263762742456 ], [ 111.18497602662228, -7.529100843928802 ], [ 111.20197757410574, -7.404974053509761 ], [ 111.202390985255704, -7.385492039126291 ], [ 111.198050164583378, -7.355364678637045 ], [ 111.197378371014963, -7.308597506769502 ], [ 111.20332116124257, -7.266791274098011 ], [ 111.22027103098327, -7.251391697069153 ], [ 111.246005893956806, -7.256300957623125 ], [ 111.263885939684315, -7.265292656430972 ], [ 111.278148635151354, -7.269168390009213 ], [ 111.289310744295392, -7.268858330747378 ], [ 111.297578972691383, -7.265706068480256 ], [ 111.306053907561761, -7.264155775768472 ], [ 111.313185256194572, -7.266067803686212 ], [ 111.325897658050451, -7.274284356138139 ], [ 111.341813999016779, -7.282190850227551 ], [ 111.403825718282235, -7.304256686996496 ], [ 111.444288364716215, -7.311233005099098 ], [ 111.44382327672281, -7.298520603243276 ], [ 111.44651045099647, -7.291699313872243 ], [ 111.454571974716828, -7.27986541115979 ], [ 111.459842971375963, -7.273767592200613 ], [ 111.464803907874, -7.269323418740782 ], [ 111.472762078806852, -7.2634839822 ], [ 111.494156122007382, -7.250719902601418 ], [ 111.521647984167089, -7.230359389074579 ], [ 111.535962355578192, -7.217595309475939 ], [ 111.551206902976162, -7.199250176654346 ], [ 111.591617872566701, -7.163903497248612 ], [ 111.608309360788326, -7.153981621554578 ], [ 111.610221388706066, -7.146488538615188 ], [ 111.608981154356741, -7.135584811889544 ], [ 111.599421013868664, -7.093261813481888 ], [ 111.598129103575218, -7.081427910769492 ], [ 111.601953160310075, -7.046804700876237 ], [ 111.598490838781117, -6.960763441879351 ], [ 111.603503453021915, -6.933995050131443 ], [ 111.620970086700083, -6.844388115918832 ], [ 111.621590204324434, -6.825991306253798 ], [ 111.629341668782956, -6.800101413649315 ], [ 111.66851240402417, -6.73757293044639 ], [ 111.672699415000068, -6.73365650799991 ] ] ], [ [ [ 115.570648634, -6.904554945999905 ], [ 115.572276238000086, -6.930596612999921 ], [ 115.557139519000089, -6.940036716999941 ], [ 115.512705925000091, -6.93873463299991 ], [ 115.50318444100003, -6.936618747999944 ], [ 115.483164910000028, -6.927341403999947 ], [ 115.467051629000025, -6.923923434999949 ], [ 115.454844597000033, -6.917575778999947 ], [ 115.451182488000086, -6.914646091999941 ], [ 115.444102410000028, -6.910088799999926 ], [ 115.438975457000083, -6.91179778399993 ], [ 115.434092644000089, -6.918226820999905 ], [ 115.425791863000086, -6.920098565999922 ], [ 115.419118686000047, -6.92506275799991 ], [ 115.413096550000091, -6.92506275799991 ], [ 115.405121290000011, -6.921644789999959 ], [ 115.400401238000086, -6.916924737999921 ], [ 115.394297722000033, -6.912692966999941 ], [ 115.382334832000083, -6.910821221999925 ], [ 115.350433790000011, -6.927504164999959 ], [ 115.344737175000091, -6.928155205999929 ], [ 115.348155144000089, -6.940606377999927 ], [ 115.356618686000047, -6.945407809999949 ], [ 115.367849155000044, -6.947686455999929 ], [ 115.378916863000086, -6.95240650799991 ], [ 115.390961134, -6.961195570999905 ], [ 115.396006707000083, -6.96607838299991 ], [ 115.400645379000025, -6.972914320999905 ], [ 115.378265821000014, -6.987399997999944 ], [ 115.355316602000016, -6.982028903999947 ], [ 115.317393425000091, -6.95240650799991 ], [ 115.303233269000089, -6.96607838299991 ], [ 115.301036004000025, -6.972263278999947 ], [ 115.300547722000033, -6.977959893999923 ], [ 115.301524285000028, -6.981215101999908 ], [ 115.303233269000089, -6.980401299999926 ], [ 115.303558790000011, -6.985935153999947 ], [ 115.311371290000011, -6.995538018999923 ], [ 115.310557488000086, -7.000746351999908 ], [ 115.306000196000014, -7.004164320999905 ], [ 115.299489780000044, -7.007012627999927 ], [ 115.293304884, -7.007582289999959 ], [ 115.290782097000033, -7.004001559999949 ], [ 115.287119988000086, -7.003024997999944 ], [ 115.265635613000086, -6.983493747999944 ], [ 115.26531009200005, -6.976006768999923 ], [ 115.275889519000089, -6.93873463299991 ], [ 115.238047722000033, -6.942315362999921 ], [ 115.221446160000028, -6.939711195999905 ], [ 115.214366082000083, -6.928155205999929 ], [ 115.218516472000033, -6.904392184999949 ], [ 115.228770379000025, -6.891534112999921 ], [ 115.242035352000016, -6.880954684999949 ], [ 115.255381707000083, -6.863051039999959 ], [ 115.244313998000052, -6.846449476999908 ], [ 115.255056186000047, -6.838148695999905 ], [ 115.275726759, -6.835381768999923 ], [ 115.294932488000086, -6.83562590899993 ], [ 115.379242384, -6.834730726999908 ], [ 115.460785352000016, -6.842543226999908 ], [ 115.483571811000047, -6.851657809999949 ], [ 115.553477410000028, -6.889418226999908 ], [ 115.570648634, -6.904554945999905 ] ] ], [ [ [ 112.700694207000083, -5.726006768999923 ], [ 112.714691602000016, -5.736097914999959 ], [ 112.727061394000089, -5.74732838299991 ], [ 112.736175977000016, -5.763116143999923 ], [ 112.740407748000052, -5.787367445999905 ], [ 112.738536004000025, -5.809991143999923 ], [ 112.731455925000091, -5.828383070999905 ], [ 112.718760613000086, -5.841566664999959 ], [ 112.700694207000083, -5.848809502999927 ], [ 112.69109134200005, -5.849541924999926 ], [ 112.663910352000016, -5.848321221999925 ], [ 112.658376498000052, -5.84539153399993 ], [ 112.654795769000089, -5.83717213299991 ], [ 112.646250847000033, -5.839288018999923 ], [ 112.63054446700005, -5.848809502999927 ], [ 112.604258660000028, -5.847426039999959 ], [ 112.596202019000089, -5.836032809999949 ], [ 112.59343509200005, -5.817315362999921 ], [ 112.582774285000028, -5.79420338299991 ], [ 112.590098504000025, -5.785577080999929 ], [ 112.618011915000011, -5.763441664999959 ], [ 112.621104363000086, -5.757907809999949 ], [ 112.645355665000011, -5.73211028399993 ], [ 112.657074415000011, -5.736748955999929 ], [ 112.670176629000025, -5.733493747999944 ], [ 112.684580925000091, -5.727959893999923 ], [ 112.700694207000083, -5.726006768999923 ] ] ], [ [ [ 114.045664910000028, -6.914646091999941 ], [ 114.06568444100003, -6.922621351999908 ], [ 114.093536100000051, -6.93265686999996 ], [ 114.109790321000105, -6.946898122999926 ], [ 114.124801361000095, -6.981610298999954 ], [ 114.096685906000062, -6.982878634999906 ], [ 114.051104241000075, -7.011430963999942 ], [ 113.981130405000044, -7.020684502999927 ], [ 113.955568360000029, -7.04494862699994 ], [ 113.935583467000015, -7.049914273999946 ], [ 113.909978539, -7.04806317799995 ], [ 113.89187473100003, -7.05922549099995 ], [ 113.870654512000101, -7.095177104999948 ], [ 113.886255820000088, -7.099515480999912 ], [ 113.894999265000024, -7.109432092999953 ], [ 113.895355665000011, -7.120538018999923 ], [ 113.872813347000033, -7.128838799999926 ], [ 113.832533157000057, -7.132019753999941 ], [ 113.776715702000047, -7.125256053999919 ], [ 113.706248483000081, -7.113613321999935 ], [ 113.686667780000107, -7.112641921999909 ], [ 113.665212436000047, -7.110039971999925 ], [ 113.645326892000071, -7.131133891999923 ], [ 113.610052276000033, -7.129187025999954 ], [ 113.59337868, -7.13890102299996 ], [ 113.582766634000109, -7.153486441999917 ], [ 113.577283798000053, -7.168367782999951 ], [ 113.570446380000021, -7.181896028999915 ], [ 113.565882429, -7.193622593999919 ], [ 113.559489261000067, -7.21211735199995 ], [ 113.548984206, -7.233778153999936 ], [ 113.533941279000032, -7.240101743999958 ], [ 113.513425343000108, -7.247781563999922 ], [ 113.507057809, -7.240109507999932 ], [ 113.49521340900003, -7.230636771999912 ], [ 113.472470647000023, -7.222049961999915 ], [ 113.422699415000011, -7.226739190999922 ], [ 113.269053582000083, -7.217461846999925 ], [ 113.25123131600003, -7.209649346999925 ], [ 113.234385613000086, -7.207614841999941 ], [ 113.186534050000091, -7.223321221999925 ], [ 113.165537957000083, -7.219903252999927 ], [ 113.158702019000089, -7.18523528399993 ], [ 113.153168165000011, -7.17742278399993 ], [ 113.146332227000016, -7.17156340899993 ], [ 113.14576256600003, -7.165785414999959 ], [ 113.158702019000089, -7.158461195999905 ], [ 113.158702019000089, -7.151055596999925 ], [ 113.146006707000083, -7.149590752999927 ], [ 113.12232506600003, -7.139418226999908 ], [ 113.114268425000091, -7.141208591999941 ], [ 113.109629754000025, -7.151462497999944 ], [ 113.109711134, -7.171482028999947 ], [ 113.103363477000016, -7.178887627999927 ], [ 113.116384311000047, -7.19068775799991 ], [ 113.135264519000089, -7.202732028999947 ], [ 113.148692254000025, -7.214776299999926 ], [ 113.145030144000089, -7.226739190999922 ], [ 113.127940300000091, -7.231052341999941 ], [ 112.818125847000033, -7.16139088299991 ], [ 112.778086785000028, -7.158461195999905 ], [ 112.742523634, -7.16139088299991 ], [ 112.726410352000016, -7.158786716999941 ], [ 112.719899936000047, -7.147881768999923 ], [ 112.717051629000025, -7.117608330999929 ], [ 112.718760613000086, -7.103285414999959 ], [ 112.727305535000028, -7.08953215899993 ], [ 112.719899936000047, -7.082777601999908 ], [ 112.709971550000091, -7.09734465899993 ], [ 112.701345248000052, -7.092054945999905 ], [ 112.69499759200005, -7.076104424999926 ], [ 112.69263756600003, -7.058526299999926 ], [ 112.694509311000047, -7.038995049999926 ], [ 112.700938347000033, -7.033298434999949 ], [ 112.713633660000028, -7.032403252999927 ], [ 112.734141472000033, -7.028090101999908 ], [ 112.763519727000016, -7.01100025799991 ], [ 112.79265384200005, -6.98406340899993 ], [ 112.844004754000025, -6.92506275799991 ], [ 112.841970248000052, -6.908868096999925 ], [ 112.873220248000052, -6.89771900799991 ], [ 112.91529381600003, -6.891696872999944 ], [ 112.944021030000044, -6.890964450999945 ], [ 112.98170006600003, -6.891289971999925 ], [ 113.067393425000091, -6.881036065999922 ], [ 113.146019868000053, -6.894371211999953 ], [ 113.273356735000107, -6.892996303999951 ], [ 113.445582300000069, -6.882377938999923 ], [ 113.526227887, -6.896293042999957 ], [ 113.672051891000024, -6.879398963999961 ], [ 113.79311278800003, -6.882479059999923 ], [ 113.923675977000016, -6.864841403999947 ], [ 113.96802819100003, -6.870538018999923 ], [ 113.98991946700005, -6.877862237999921 ], [ 114.009613477000016, -6.886976820999905 ], [ 114.028005405000044, -6.899021091999941 ], [ 114.045664910000028, -6.914646091999941 ] ] ], [ [ [ 114.593760613000086, -7.13054778399993 ], [ 114.60474694100003, -7.130629164999959 ], [ 114.614593946000014, -7.13209400799991 ], [ 114.621836785000028, -7.137302341999941 ], [ 114.624522332000083, -7.147881768999923 ], [ 114.623057488000086, -7.163262627999927 ], [ 114.61882571700005, -7.16725025799991 ], [ 114.532725457000083, -7.158461195999905 ], [ 114.511241082000083, -7.159274997999944 ], [ 114.500173373000052, -7.158298434999949 ], [ 114.49537194100003, -7.154717705999929 ], [ 114.496348504000025, -7.14381275799991 ], [ 114.499196811000047, -7.137872002999927 ], [ 114.504649285000028, -7.134372653999947 ], [ 114.541026238000086, -7.118584893999923 ], [ 114.55005944100003, -7.11687590899993 ], [ 114.559092644000089, -7.119073174999926 ], [ 114.58130944100003, -7.128350518999923 ], [ 114.593760613000086, -7.13054778399993 ] ] ], [ [ [ 114.369255482000085, -7.08958267099996 ], [ 114.383068495000089, -7.113356878999923 ], [ 114.396855229000039, -7.131462291999924 ], [ 114.394657894000034, -7.15756483499996 ], [ 114.39185631600003, -7.178887627999927 ], [ 114.378265821000014, -7.178155205999929 ], [ 114.357269727000016, -7.167413018999923 ], [ 114.331797722000033, -7.159356377999927 ], [ 114.325205925000091, -7.147637627999927 ], [ 114.306558219000067, -7.14877918399992 ], [ 114.292822019000027, -7.143151295999928 ], [ 114.284760816000016, -7.12616477399996 ], [ 114.273247745000049, -7.101247319999914 ], [ 114.269762048000075, -7.080834943999946 ], [ 114.294825668000044, -7.054665923999949 ], [ 114.322254550000025, -7.050030942999911 ], [ 114.342946811000047, -7.055759372999944 ], [ 114.357751489000066, -7.069202446999952 ], [ 114.369255482000085, -7.08958267099996 ] ] ], [ [ [ 115.890879754000025, -7.10711028399993 ], [ 115.894297722000033, -7.111586195999905 ], [ 115.896006707000083, -7.124932549999926 ], [ 115.894297722000033, -7.164483330999929 ], [ 115.875743035000028, -7.185723565999922 ], [ 115.837738477000016, -7.197198174999926 ], [ 115.795909050000091, -7.190036716999941 ], [ 115.757334832000083, -7.169691664999959 ], [ 115.743011915000011, -7.150323174999926 ], [ 115.752940300000091, -7.14031340899993 ], [ 115.762217644000089, -7.139092705999929 ], [ 115.765961134, -7.143975518999923 ], [ 115.769867384, -7.142185153999947 ], [ 115.778168165000011, -7.115492445999905 ], [ 115.785980665000011, -7.115980726999908 ], [ 115.791270379000025, -7.125664971999925 ], [ 115.794769727000016, -7.137872002999927 ], [ 115.801036004000025, -7.146416924999926 ], [ 115.807953321000014, -7.149834893999923 ], [ 115.822764519000089, -7.149509372999944 ], [ 115.842784050000091, -7.157647393999923 ], [ 115.870127800000091, -7.15984465899993 ], [ 115.880218946000014, -7.158461195999905 ], [ 115.883799675000091, -7.153252862999921 ], [ 115.881358269000089, -7.152927341999941 ], [ 115.875173373000052, -7.15357838299991 ], [ 115.869395379000025, -7.147149346999925 ], [ 115.866709832000083, -7.137302341999941 ], [ 115.869639519000089, -7.128676039999959 ], [ 115.877452019000089, -7.123467705999929 ], [ 115.883555535000028, -7.123955987999921 ], [ 115.88599694100003, -7.129571221999925 ], [ 115.886973504000025, -7.126560153999947 ], [ 115.889008009, -7.113702080999929 ], [ 115.890879754000025, -7.10711028399993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-MA", "NAME_1": "Maluku" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.231211785000028, -8.25123463299991 ], [ 128.237640821000014, -8.264092705999929 ], [ 128.231455925000091, -8.272881768999923 ], [ 128.219004754000025, -8.27857838299991 ], [ 128.207286004000025, -8.281914971999925 ], [ 128.181976759, -8.285088799999926 ], [ 128.15162194100003, -8.284600518999923 ], [ 128.123301629000025, -8.28093840899993 ], [ 128.103688998000052, -8.27507903399993 ], [ 128.096853061000047, -8.270928643999923 ], [ 128.088226759, -8.263848565999922 ], [ 128.08326256600003, -8.254571221999925 ], [ 128.08716881600003, -8.244317315999922 ], [ 128.094574415000011, -8.232354424999926 ], [ 128.097992384, -8.220961195999905 ], [ 128.103770379000025, -8.211846612999921 ], [ 128.117930535000028, -8.206801039999959 ], [ 128.139170769000089, -8.21648528399993 ], [ 128.166026238000086, -8.210544528999947 ], [ 128.192718946000014, -8.200941664999959 ], [ 128.213552280000044, -8.199395440999922 ], [ 128.22193444100003, -8.208916924999926 ], [ 128.226410352000016, -8.239678643999923 ], [ 128.231211785000028, -8.25123463299991 ] ] ], [ [ [ 129.029633009, -8.206801039999959 ], [ 129.036143425000091, -8.220310153999947 ], [ 129.035004102000016, -8.236097914999959 ], [ 129.027679884, -8.250909112999921 ], [ 129.015961134, -8.26140715899993 ], [ 129.006195509, -8.263604424999926 ], [ 128.99341881600003, -8.261488539999959 ], [ 128.979014519000089, -8.255059502999927 ], [ 128.964610222000033, -8.244317315999922 ], [ 128.949229363000086, -8.23601653399993 ], [ 128.93913821700005, -8.240655205999929 ], [ 128.929698113000086, -8.24968840899993 ], [ 128.916351759, -8.254652601999908 ], [ 128.887705925000091, -8.244886976999908 ], [ 128.852305535000028, -8.222914320999905 ], [ 128.834483269000089, -8.199802341999941 ], [ 128.858409050000091, -8.185723565999922 ], [ 128.889496290000011, -8.177829684999949 ], [ 128.985362175000091, -8.185723565999922 ], [ 128.98951256600003, -8.188897393999923 ], [ 129.029633009, -8.206801039999959 ] ] ], [ [ [ 127.74187259200005, -8.158949476999908 ], [ 127.760590040000011, -8.173923434999949 ], [ 127.771983269000089, -8.194431247999944 ], [ 127.76880944100003, -8.21257903399993 ], [ 127.744883660000028, -8.220472914999959 ], [ 127.724375847000033, -8.223728122999944 ], [ 127.68913821700005, -8.237888278999947 ], [ 127.66920006600003, -8.240899346999925 ], [ 127.64812259200005, -8.235772393999923 ], [ 127.62077884200005, -8.212660414999959 ], [ 127.604014519000089, -8.206801039999959 ], [ 127.682953321000014, -8.155205987999921 ], [ 127.702647332000083, -8.151462497999944 ], [ 127.722911004000025, -8.153008721999925 ], [ 127.74187259200005, -8.158949476999908 ] ] ], [ [ [ 127.216319207000083, -8.026950778999947 ], [ 127.226410352000016, -8.039239190999922 ], [ 127.23210696700005, -8.054294528999947 ], [ 127.234222852000016, -8.070407809999949 ], [ 127.234629754000025, -8.086521091999941 ], [ 127.224945509, -8.108575127999927 ], [ 127.202159050000091, -8.111260674999926 ], [ 127.152110222000033, -8.09693775799991 ], [ 127.152110222000033, -8.08953215899993 ], [ 127.157562696000014, -8.07935963299991 ], [ 127.155609571000014, -8.048435153999947 ], [ 127.158946160000028, -8.034926039999959 ], [ 127.170746290000011, -8.023858330999929 ], [ 127.185883009, -8.018731377999927 ], [ 127.201914910000028, -8.019789320999905 ], [ 127.216319207000083, -8.026950778999947 ] ] ], [ [ [ 131.104991082000083, -7.629001559999949 ], [ 131.118988477000016, -7.619317315999922 ], [ 131.126475457000083, -7.617771091999941 ], [ 131.132578972000033, -7.623304945999905 ], [ 131.119395379000025, -7.663262627999927 ], [ 131.109222852000016, -7.681817315999922 ], [ 131.092295769000089, -7.692315362999921 ], [ 131.049815300000091, -7.683770440999922 ], [ 131.035899285000028, -7.687595309999949 ], [ 131.043793165000011, -7.713474216999941 ], [ 130.986827019000089, -7.711846612999921 ], [ 130.971202019000089, -7.701348565999922 ], [ 130.982432488000086, -7.671807549999926 ], [ 130.98951256600003, -7.663832289999959 ], [ 130.999522332000083, -7.65748463299991 ], [ 131.011892123000052, -7.653497002999927 ], [ 131.04029381600003, -7.650160414999959 ], [ 131.054942254000025, -7.645603122999944 ], [ 131.068532748000052, -7.638848565999922 ], [ 131.077891472000033, -7.630791924999926 ], [ 131.078379754000025, -7.633396091999941 ], [ 131.082530144000089, -7.635023695999905 ], [ 131.090342644000089, -7.635918877999927 ], [ 131.093760613000086, -7.635023695999905 ], [ 131.104991082000083, -7.629001559999949 ] ] ], [ [ [ 130.968597852000016, -7.534600518999923 ], [ 130.976573113000086, -7.53639088299991 ], [ 130.984222852000016, -7.539971612999921 ], [ 130.988291863000086, -7.545179945999905 ], [ 130.985850457000083, -7.551934502999927 ], [ 130.979177280000044, -7.555271091999941 ], [ 130.973399285000028, -7.551202080999929 ], [ 130.967051629000025, -7.545179945999905 ], [ 130.958506707000083, -7.542087497999944 ], [ 130.953868035000028, -7.54420338299991 ], [ 130.941661004000025, -7.553480726999908 ], [ 130.937673373000052, -7.555759372999944 ], [ 130.89771569100003, -7.554457289999959 ], [ 130.856618686000047, -7.546970309999949 ], [ 130.845225457000083, -7.542087497999944 ], [ 130.840993686000047, -7.528741143999923 ], [ 130.844493035000028, -7.513848565999922 ], [ 130.85865319100003, -7.486911716999941 ], [ 130.864756707000083, -7.489190362999921 ], [ 130.893728061000047, -7.514092705999929 ], [ 130.906748894000089, -7.50750090899993 ], [ 130.920420769000089, -7.510918877999927 ], [ 130.933604363000086, -7.517836195999905 ], [ 130.944834832000083, -7.521579684999949 ], [ 130.977549675000091, -7.51531340899993 ], [ 130.984629754000025, -7.518161716999941 ], [ 130.968597852000016, -7.534600518999923 ] ] ], [ [ [ 131.174815300000091, -7.404229424999926 ], [ 131.177500847000033, -7.406670830999929 ], [ 131.181407097000033, -7.411309502999927 ], [ 131.18287194100003, -7.415948174999926 ], [ 131.165863477000016, -7.424493096999925 ], [ 131.126963738000086, -7.466403903999947 ], [ 131.11646569100003, -7.471856377999927 ], [ 131.10515384200005, -7.476006768999923 ], [ 131.095957879000025, -7.481377862999921 ], [ 131.088877800000091, -7.49773528399993 ], [ 131.080332879000025, -7.503676039999959 ], [ 131.069183790000011, -7.50750090899993 ], [ 131.057383660000028, -7.507907809999949 ], [ 131.057383660000028, -7.500420830999929 ], [ 131.063161655000044, -7.497002862999921 ], [ 131.066661004000025, -7.492852471999925 ], [ 131.071787957000083, -7.479424737999921 ], [ 131.047211134, -7.480401299999926 ], [ 131.024587436000047, -7.485284112999921 ], [ 131.004893425000091, -7.485772393999923 ], [ 130.989268425000091, -7.473239841999941 ], [ 130.985199415000011, -7.455987237999921 ], [ 130.991058790000011, -7.438897393999923 ], [ 131.003265821000014, -7.424493096999925 ], [ 131.018239780000044, -7.415215752999927 ], [ 131.027110222000033, -7.413018487999921 ], [ 131.035004102000016, -7.413506768999923 ], [ 131.051280144000089, -7.417168877999927 ], [ 131.067393425000091, -7.417738539999959 ], [ 131.124766472000033, -7.410414320999905 ], [ 131.141449415000011, -7.405368747999944 ], [ 131.153656446000014, -7.404229424999926 ], [ 131.160166863000086, -7.402927341999941 ], [ 131.163422071000014, -7.400485934999949 ], [ 131.16724694100003, -7.399997653999947 ], [ 131.174815300000091, -7.404229424999926 ] ] ], [ [ [ 131.283946160000028, -7.32976653399993 ], [ 131.292735222000033, -7.31804778399993 ], [ 131.297618035000028, -7.319105726999908 ], [ 131.299164259, -7.32740650799991 ], [ 131.297618035000028, -7.336602471999925 ], [ 131.293467644000089, -7.340590101999908 ], [ 131.271006707000083, -7.35711028399993 ], [ 131.277110222000033, -7.37078215899993 ], [ 131.227549675000091, -7.362481377999927 ], [ 131.215830925000091, -7.35711028399993 ], [ 131.223480665000011, -7.35125090899993 ], [ 131.230967644000089, -7.344170830999929 ], [ 131.243011915000011, -7.32976653399993 ], [ 131.257578972000033, -7.30396900799991 ], [ 131.264984571000014, -7.297133070999905 ], [ 131.269541863000086, -7.302911065999922 ], [ 131.282237175000091, -7.32350025799991 ], [ 131.283946160000028, -7.32976653399993 ] ] ], [ [ [ 131.597422722000033, -6.679131768999923 ], [ 131.619313998000052, -6.682549737999921 ], [ 131.628672722000033, -6.693942966999941 ], [ 131.624522332000083, -6.709730726999908 ], [ 131.606211785000028, -6.727146091999941 ], [ 131.583994988000086, -6.719496351999908 ], [ 131.568695509, -6.732598565999922 ], [ 131.566172722000033, -6.75164153399993 ], [ 131.591319207000083, -6.767673434999949 ], [ 131.582041863000086, -6.781670830999929 ], [ 131.564789259, -6.795586846999925 ], [ 131.551036004000025, -6.801527601999908 ], [ 131.527354363000086, -6.780857028999947 ], [ 131.537364129000025, -6.738051039999959 ], [ 131.56568444100003, -6.696465752999927 ], [ 131.597422722000033, -6.679131768999923 ] ] ], [ [ [ 134.707367384, -6.589043877999927 ], [ 134.720062696000014, -6.595310153999947 ], [ 134.73015384200005, -6.60475025799991 ], [ 134.736338738000086, -6.61687590899993 ], [ 134.73755944100003, -6.630954684999949 ], [ 134.729502800000091, -6.664808851999908 ], [ 134.722178582000083, -6.682793877999927 ], [ 134.713633660000028, -6.695733330999929 ], [ 134.703298373000052, -6.707777601999908 ], [ 134.680430535000028, -6.743259372999944 ], [ 134.676036004000025, -6.75750090899993 ], [ 134.669444207000083, -6.772881768999923 ], [ 134.653656446000014, -6.76881275799991 ], [ 134.621429884, -6.747002862999921 ], [ 134.630056186000047, -6.735772393999923 ], [ 134.631602410000028, -6.727227471999925 ], [ 134.628265821000014, -6.709405205999929 ], [ 134.632578972000033, -6.700372002999927 ], [ 134.665782097000033, -6.650485934999949 ], [ 134.676605665000011, -6.610528252999927 ], [ 134.681488477000016, -6.599867445999905 ], [ 134.687673373000052, -6.591973565999922 ], [ 134.696055535000028, -6.587985934999949 ], [ 134.707367384, -6.589043877999927 ] ] ], [ [ [ 134.607758009, -6.421482028999947 ], [ 134.602224155000044, -6.441582940999922 ], [ 134.588145379000025, -6.455254815999922 ], [ 134.553721550000091, -6.473239841999941 ], [ 134.56568444100003, -6.491387627999927 ], [ 134.560557488000086, -6.516045830999929 ], [ 134.541758660000028, -6.529473565999922 ], [ 134.511566602000016, -6.513604424999926 ], [ 134.502289259, -6.500176690999922 ], [ 134.495860222000033, -6.485284112999921 ], [ 134.492360873000052, -6.471612237999921 ], [ 134.491221550000091, -6.462334893999923 ], [ 134.486582879000025, -6.45435963299991 ], [ 134.463877800000091, -6.424899997999944 ], [ 134.451426629000025, -6.424899997999944 ], [ 134.437998894000089, -6.427504164999959 ], [ 134.427256707000083, -6.426364841999941 ], [ 134.422862175000091, -6.414646091999941 ], [ 134.417735222000033, -6.406426690999922 ], [ 134.358409050000091, -6.379489841999941 ], [ 134.350352410000028, -6.371758721999925 ], [ 134.347178582000083, -6.359633070999905 ], [ 134.349864129000025, -6.350681247999944 ], [ 134.356455925000091, -6.341566664999959 ], [ 134.36451256600003, -6.333591403999947 ], [ 134.372080925000091, -6.32781340899993 ], [ 134.386729363000086, -6.31959400799991 ], [ 134.391368035000028, -6.31609465899993 ], [ 134.406423373000052, -6.299574476999908 ], [ 134.413422071000014, -6.294528903999947 ], [ 134.42115319100003, -6.290134372999944 ], [ 134.42937259200005, -6.286716403999947 ], [ 134.437754754000025, -6.285088799999926 ], [ 134.446136915000011, -6.285414320999905 ], [ 134.452159050000091, -6.288018487999921 ], [ 134.463552280000044, -6.296970309999949 ], [ 134.494965040000011, -6.313897393999923 ], [ 134.504730665000011, -6.321221612999921 ], [ 134.528656446000014, -6.350274346999925 ], [ 134.54420006600003, -6.363864841999941 ], [ 134.563161655000044, -6.369561455999929 ], [ 134.574717644000089, -6.374769789999959 ], [ 134.589610222000033, -6.387790622999944 ], [ 134.602305535000028, -6.404554945999905 ], [ 134.607758009, -6.421482028999947 ] ] ], [ [ [ 134.840586785000028, -6.287692966999941 ], [ 134.856130405000044, -6.283786716999941 ], [ 134.871836785000028, -6.288506768999923 ], [ 134.883799675000091, -6.299493096999925 ], [ 134.888194207000083, -6.314060153999947 ], [ 134.885915561000047, -6.336358330999929 ], [ 134.878916863000086, -6.355889580999929 ], [ 134.861094597000033, -6.390069268999923 ], [ 134.837657097000033, -6.460056247999944 ], [ 134.826345248000052, -6.473239841999941 ], [ 134.81177819100003, -6.464288018999923 ], [ 134.798350457000083, -6.452243747999944 ], [ 134.793955925000091, -6.440524997999944 ], [ 134.806407097000033, -6.431735934999949 ], [ 134.806407097000033, -6.424899997999944 ], [ 134.794118686000047, -6.401950778999947 ], [ 134.799001498000052, -6.370538018999923 ], [ 134.814219597000033, -6.345798434999949 ], [ 134.833750847000033, -6.342380466999941 ], [ 134.83366946700005, -6.311455987999921 ], [ 134.83562259200005, -6.29656340899993 ], [ 134.840586785000028, -6.287692966999941 ] ] ], [ [ [ 134.377940300000091, -6.254082940999922 ], [ 134.385915561000047, -6.25750090899993 ], [ 134.395681186000047, -6.26490650799991 ], [ 134.40788821700005, -6.271905205999929 ], [ 134.422862175000091, -6.274021091999941 ], [ 134.422862175000091, -6.280857028999947 ], [ 134.397471550000091, -6.284926039999959 ], [ 134.380869988000086, -6.298760674999926 ], [ 134.36646569100003, -6.31568775799991 ], [ 134.347178582000083, -6.329278252999927 ], [ 134.337657097000033, -6.331963799999926 ], [ 134.334808790000011, -6.328871351999908 ], [ 134.333181186000047, -6.320570570999905 ], [ 134.326670769000089, -6.308200778999947 ], [ 134.30396569100003, -6.287530205999929 ], [ 134.290782097000033, -6.280043226999908 ], [ 134.285004102000016, -6.284274997999944 ], [ 134.277598504000025, -6.27507903399993 ], [ 134.233897332000083, -6.239353122999944 ], [ 134.217946811000047, -6.207614841999941 ], [ 134.20281009200005, -6.194268487999921 ], [ 134.182627800000091, -6.205743096999925 ], [ 134.162282748000052, -6.19654713299991 ], [ 134.166026238000086, -6.183038018999923 ], [ 134.179860873000052, -6.167087497999944 ], [ 134.189463738000086, -6.150485934999949 ], [ 134.186045769000089, -6.133965752999927 ], [ 134.171641472000033, -6.136488539999959 ], [ 134.141123894000089, -6.15789153399993 ], [ 134.12037194100003, -6.122165622999944 ], [ 134.11491946700005, -6.076836846999925 ], [ 134.125987175000091, -6.034274997999944 ], [ 134.155284050000091, -6.006524346999925 ], [ 134.155284050000091, -6.048028252999927 ], [ 134.160655144000089, -6.043552341999941 ], [ 134.206797722000033, -6.025323174999926 ], [ 134.217784050000091, -6.023614190999922 ], [ 134.22584069100003, -6.028741143999923 ], [ 134.235850457000083, -6.062676690999922 ], [ 134.240489129000025, -6.07350025799991 ], [ 134.244802280000044, -6.075941664999959 ], [ 134.250987175000091, -6.070977471999925 ], [ 134.271494988000086, -6.061700127999927 ], [ 134.265798373000052, -6.07740650799991 ], [ 134.246348504000025, -6.096449476999908 ], [ 134.237315300000091, -6.110121351999908 ], [ 134.234141472000033, -6.130059502999927 ], [ 134.242523634, -6.14421965899993 ], [ 134.257009311000047, -6.158379815999922 ], [ 134.271494988000086, -6.178399346999925 ], [ 134.286306186000047, -6.174981377999927 ], [ 134.299815300000091, -6.184502862999921 ], [ 134.33326256600003, -6.234551690999922 ], [ 134.342784050000091, -6.239353122999944 ], [ 134.361501498000052, -6.239353122999944 ], [ 134.35320071700005, -6.250420830999929 ], [ 134.355967644000089, -6.254571221999925 ], [ 134.377940300000091, -6.254082940999922 ] ] ], [ [ [ 132.797373894000089, -5.60906340899993 ], [ 132.796722852000016, -5.625664971999925 ], [ 132.799327019000089, -5.641534112999921 ], [ 132.804535352000016, -5.656670830999929 ], [ 132.812754754000025, -5.671319268999923 ], [ 132.807465040000011, -5.679864190999922 ], [ 132.805430535000028, -5.684991143999923 ], [ 132.797862175000091, -5.680433851999908 ], [ 132.792002800000091, -5.674493096999925 ], [ 132.787852410000028, -5.666680596999925 ], [ 132.784922722000033, -5.657647393999923 ], [ 132.784922722000033, -5.672539971999925 ], [ 132.78052819100003, -5.680352471999925 ], [ 132.772797071000014, -5.682224216999941 ], [ 132.763682488000086, -5.678806247999944 ], [ 132.758474155000044, -5.670668226999908 ], [ 132.743174675000091, -5.630303643999923 ], [ 132.743174675000091, -5.604424737999921 ], [ 132.750824415000011, -5.57350025799991 ], [ 132.76531009200005, -5.545342705999929 ], [ 132.784922722000033, -5.527276299999926 ], [ 132.789805535000028, -5.535821221999925 ], [ 132.791270379000025, -5.544366143999923 ], [ 132.789398634, -5.552911065999922 ], [ 132.784922722000033, -5.561455987999921 ], [ 132.789805535000028, -5.557305596999925 ], [ 132.797373894000089, -5.55396900799991 ], [ 132.805186394000089, -5.552992445999905 ], [ 132.811045769000089, -5.555596612999921 ], [ 132.811859571000014, -5.565524997999944 ], [ 132.797373894000089, -5.60906340899993 ] ] ], [ [ [ 132.318614129000025, -5.513604424999926 ], [ 132.346202019000089, -5.535902601999908 ], [ 132.361175977000016, -5.54029713299991 ], [ 132.380707227000016, -5.534112237999921 ], [ 132.377614780000044, -5.54420338299991 ], [ 132.371429884, -5.554131768999923 ], [ 132.363291863000086, -5.562920830999929 ], [ 132.353526238000086, -5.568942966999941 ], [ 132.340017123000052, -5.573663018999923 ], [ 132.334320509, -5.572930596999925 ], [ 132.331553582000083, -5.568291924999926 ], [ 132.317393425000091, -5.551039320999905 ], [ 132.308848504000025, -5.535739841999941 ], [ 132.307139519000089, -5.52117278399993 ], [ 132.318614129000025, -5.513604424999926 ] ] ], [ [ [ 129.927256707000083, -4.530450127999927 ], [ 129.931813998000052, -4.515069268999923 ], [ 129.94109134200005, -4.508884372999944 ], [ 129.94849694100003, -4.514336846999925 ], [ 129.945648634, -4.556084893999923 ], [ 129.933360222000033, -4.562920830999929 ], [ 129.916026238000086, -4.563897393999923 ], [ 129.899261915000011, -4.568291924999926 ], [ 129.893321160000028, -4.56023528399993 ], [ 129.883799675000091, -4.555596612999921 ], [ 129.871836785000028, -4.553887627999927 ], [ 129.85906009200005, -4.554782809999949 ], [ 129.874034050000091, -4.545830987999921 ], [ 129.918142123000052, -4.537204684999949 ], [ 129.927256707000083, -4.530450127999927 ] ] ], [ [ [ 127.234629754000025, -3.821058851999908 ], [ 127.246118696000053, -3.836224612999956 ], [ 127.253200028000037, -3.849206734999939 ], [ 127.256020915000022, -3.874534031999929 ], [ 127.24952506, -3.89027974499993 ], [ 127.242639844, -3.900407626999936 ], [ 127.241367529000058, -3.91081651099995 ], [ 127.226970554000104, -3.917062727999905 ], [ 127.20952868300003, -3.914779310999961 ], [ 127.190726843000107, -3.91173099599996 ], [ 127.172552624000105, -3.910109891999923 ], [ 127.160499746000028, -3.899030720999917 ], [ 127.145086121000077, -3.884983417999933 ], [ 127.136047764000068, -3.86985890099993 ], [ 127.137933005000036, -3.846851729999912 ], [ 127.165212436000047, -3.81414153399993 ], [ 127.181895379000025, -3.808526299999926 ], [ 127.198985222000033, -3.810316664999959 ], [ 127.234629754000025, -3.821058851999908 ] ] ], [ [ [ 127.615489129000025, -3.307386976999908 ], [ 127.628672722000033, -3.321872653999947 ], [ 127.641612175000091, -3.340264580999929 ], [ 127.643565300000091, -3.356052341999941 ], [ 127.624522332000083, -3.361748955999929 ], [ 127.603037957000083, -3.356866143999923 ], [ 127.565440300000091, -3.338474216999941 ], [ 127.519704623000052, -3.330254815999922 ], [ 127.50359134200005, -3.320082289999959 ], [ 127.490570509, -3.306817315999922 ], [ 127.480479363000086, -3.293389580999929 ], [ 127.485118035000028, -3.292087497999944 ], [ 127.509613477000016, -3.276543877999927 ], [ 127.512705925000091, -3.273614190999922 ], [ 127.521820509, -3.261814059999949 ], [ 127.524750196000014, -3.256117445999962 ], [ 127.526377800000091, -3.254327080999929 ], [ 127.529633009, -3.253350518999923 ], [ 127.532237175000091, -3.254489841999941 ], [ 127.53443444100003, -3.255791924999926 ], [ 127.563975457000083, -3.255791924999926 ], [ 127.583018425000091, -3.267998955999929 ], [ 127.615489129000025, -3.307386976999908 ] ] ], [ [ [ 127.772227410000028, -3.162530205999929 ], [ 127.78443444100003, -3.168715101999908 ], [ 127.788259311000047, -3.18328215899993 ], [ 127.789805535000028, -3.199639580999929 ], [ 127.796397332000083, -3.211521091999941 ], [ 127.785655144000089, -3.234307549999926 ], [ 127.778493686000047, -3.244235934999949 ], [ 127.766449415000011, -3.246270440999922 ], [ 127.74187259200005, -3.245700778999947 ], [ 127.679209832000083, -3.25164153399993 ], [ 127.658539259, -3.245700778999947 ], [ 127.643321160000028, -3.224379164999959 ], [ 127.659678582000083, -3.201429945999962 ], [ 127.687347852000016, -3.178317966999941 ], [ 127.70630944100003, -3.156345309999949 ], [ 127.74187259200005, -3.156345309999949 ], [ 127.753428582000083, -3.150567315999922 ], [ 127.758148634, -3.149509372999944 ], [ 127.76140384200005, -3.151543877999927 ], [ 127.76335696700005, -3.15593840899993 ], [ 127.766286655000044, -3.160414320999962 ], [ 127.772227410000028, -3.162530205999929 ] ] ], [ [ [ 127.954112175000091, -2.916680596999925 ], [ 127.96998131600003, -2.920179945999962 ], [ 127.985362175000091, -2.929457289999959 ], [ 127.994395379000025, -2.939060153999947 ], [ 127.991547071000014, -2.943454684999949 ], [ 127.983571811000047, -2.948825778999947 ], [ 127.969086134, -2.972263278999947 ], [ 127.964040561000047, -2.977634372999944 ], [ 127.960948113000086, -2.983493747999944 ], [ 127.950938347000033, -3.010918877999927 ], [ 127.947276238000086, -3.018487237999921 ], [ 127.934255405000044, -3.025567315999922 ], [ 127.918467644000089, -3.029229424999926 ], [ 127.838389519000089, -3.033298434999949 ], [ 127.826996290000011, -3.02898528399993 ], [ 127.82545006600003, -3.016534112999921 ], [ 127.83716881600003, -3.001885674999926 ], [ 127.854014519000089, -2.989434502999927 ], [ 127.868011915000011, -2.984307549999926 ], [ 127.875254754000025, -2.983005466999941 ], [ 127.879649285000028, -2.979424737999921 ], [ 127.888926629000025, -2.967217705999929 ], [ 127.896494988000086, -2.961846612999921 ], [ 127.902354363000086, -2.962497653999947 ], [ 127.907399936000047, -2.96453215899993 ], [ 127.912364129000025, -2.963799737999921 ], [ 127.925303582000083, -2.955173434999949 ], [ 127.93287194100003, -2.945977471999925 ], [ 127.933767123000052, -2.934014580999929 ], [ 127.926036004000025, -2.916680596999925 ], [ 127.954112175000091, -2.916680596999925 ] ] ], [ [ [ 128.090586785000028, -8.131036065999922 ], [ 128.123545769000089, -8.150323174999926 ], [ 128.127452019000089, -8.161309502999927 ], [ 128.117930535000028, -8.178887627999927 ], [ 128.066416863000086, -8.220472914999959 ], [ 128.05396569100003, -8.226820570999905 ], [ 128.041514519000089, -8.255059502999927 ], [ 128.025645379000025, -8.26140715899993 ], [ 128.008636915000011, -8.258721612999921 ], [ 127.994151238000086, -8.251885674999926 ], [ 127.951996290000011, -8.22389088299991 ], [ 127.939300977000016, -8.218194268999923 ], [ 127.925303582000083, -8.215101820999905 ], [ 127.863780144000089, -8.210707289999959 ], [ 127.843597852000016, -8.205743096999925 ], [ 127.826996290000011, -8.196384372999944 ], [ 127.802093946000014, -8.176202080999929 ], [ 127.793223504000025, -8.162367445999905 ], [ 127.789561394000089, -8.141371351999908 ], [ 127.785166863000086, -8.131605726999908 ], [ 127.775563998000052, -8.124607028999947 ], [ 127.761566602000016, -8.117445570999905 ], [ 127.765635613000086, -8.108086846999925 ], [ 127.774180535000028, -8.103448174999926 ], [ 127.785166863000086, -8.102308851999908 ], [ 127.796397332000083, -8.103773695999905 ], [ 127.832530144000089, -8.098565362999921 ], [ 127.867930535000028, -8.106215101999908 ], [ 127.940277540000011, -8.131036065999922 ], [ 128.017832879000025, -8.143161716999941 ], [ 128.057383660000028, -8.142022393999923 ], [ 128.090586785000028, -8.131036065999922 ] ] ], [ [ [ 131.109385613000086, -8.131036065999922 ], [ 131.124847852000016, -8.127699476999908 ], [ 131.141612175000091, -8.121677341999941 ], [ 131.160166863000086, -8.118747653999947 ], [ 131.181651238000086, -8.124932549999926 ], [ 131.160817905000044, -8.152276299999926 ], [ 131.131683790000011, -8.16765715899993 ], [ 131.100922071000014, -8.179620049999926 ], [ 131.061208530000044, -8.205824476999908 ], [ 130.991058790000011, -8.234795830999929 ], [ 130.979665561000047, -8.236097914999959 ], [ 130.951670769000089, -8.233493747999944 ], [ 130.902110222000033, -8.24968840899993 ], [ 130.893728061000047, -8.25123463299991 ], [ 130.896250847000033, -8.284356377999927 ], [ 130.892425977000016, -8.296075127999927 ], [ 130.879405144000089, -8.309258721999925 ], [ 130.834727410000028, -8.33562590899993 ], [ 130.821299675000091, -8.347100518999923 ], [ 130.810883009, -8.351332289999959 ], [ 130.76335696700005, -8.350762627999927 ], [ 130.774424675000091, -8.334161065999922 ], [ 130.815277540000011, -8.285332940999922 ], [ 130.835785352000016, -8.268649997999944 ], [ 130.844248894000089, -8.254327080999929 ], [ 130.854991082000083, -8.240004164999959 ], [ 130.869395379000025, -8.233493747999944 ], [ 130.879079623000052, -8.231215101999908 ], [ 130.90552819100003, -8.219414971999925 ], [ 130.913422071000014, -8.213636976999908 ], [ 130.922211134, -8.198418877999927 ], [ 130.921071811000047, -8.187758070999905 ], [ 130.916026238000086, -8.176446221999925 ], [ 130.913422071000014, -8.158949476999908 ], [ 130.917491082000083, -8.141289971999925 ], [ 130.926442905000044, -8.13250090899993 ], [ 130.938487175000091, -8.132582289999959 ], [ 130.951670769000089, -8.141371351999908 ], [ 130.973806186000047, -8.145277601999908 ], [ 131.014414910000028, -8.09539153399993 ], [ 131.037608269000089, -8.08326588299991 ], [ 131.050954623000052, -8.091241143999923 ], [ 131.085459832000083, -8.124932549999926 ], [ 131.079844597000033, -8.133233330999929 ], [ 131.077159050000091, -8.142022393999923 ], [ 131.079437696000014, -8.148858330999929 ], [ 131.088877800000091, -8.151543877999927 ], [ 131.094004754000025, -8.148370049999926 ], [ 131.104014519000089, -8.134372653999947 ], [ 131.109385613000086, -8.131036065999922 ] ] ], [ [ [ 129.841156446000014, -7.877862237999921 ], [ 129.854502800000091, -7.88404713299991 ], [ 129.86101321700005, -7.898858330999929 ], [ 129.862071160000028, -7.916924737999921 ], [ 129.85906009200005, -7.932549737999921 ], [ 129.847911004000025, -7.94654713299991 ], [ 129.811534050000091, -7.983005466999941 ], [ 129.782237175000091, -8.046075127999927 ], [ 129.776377800000091, -8.055352471999925 ], [ 129.758799675000091, -8.054457289999959 ], [ 129.693858269000089, -8.038262627999927 ], [ 129.688487175000091, -8.028415622999944 ], [ 129.594248894000089, -7.924004815999922 ], [ 129.58521569100003, -7.90203215899993 ], [ 129.58757571700005, -7.83562590899993 ], [ 129.60124759200005, -7.807305596999925 ], [ 129.63249759200005, -7.795993747999944 ], [ 129.724864129000025, -7.795993747999944 ], [ 129.732920769000089, -7.798028252999927 ], [ 129.758799675000091, -7.808689059999949 ], [ 129.766123894000089, -7.813083591999941 ], [ 129.775238477000016, -7.817071221999925 ], [ 129.810557488000086, -7.816501559999949 ], [ 129.819346550000091, -7.819268487999921 ], [ 129.829844597000033, -7.82390715899993 ], [ 129.839203321000014, -7.829847914999959 ], [ 129.844574415000011, -7.836195570999905 ], [ 129.844248894000089, -7.846856377999927 ], [ 129.838389519000089, -7.87273528399993 ], [ 129.841156446000014, -7.877862237999921 ] ] ], [ [ [ 126.836761915000011, -7.726332289999959 ], [ 126.840017123000052, -7.739434502999927 ], [ 126.839203321000014, -7.748223565999922 ], [ 126.833343946000014, -7.758070570999905 ], [ 126.82349694100003, -7.762383721999925 ], [ 126.813487175000091, -7.758070570999905 ], [ 126.802989129000025, -7.751153252999927 ], [ 126.792328321000014, -7.747491143999923 ], [ 126.749034050000091, -7.754001559999949 ], [ 126.727875196000014, -7.754652601999908 ], [ 126.713389519000089, -7.747491143999923 ], [ 126.631358269000089, -7.775485934999949 ], [ 126.620453321000014, -7.781345309999949 ], [ 126.59734134200005, -7.802178643999923 ], [ 126.589366082000083, -7.806247653999947 ], [ 126.568369988000086, -7.81414153399993 ], [ 126.559336785000028, -7.819919528999947 ], [ 126.504405144000089, -7.888116143999923 ], [ 126.502207879000025, -7.894789320999905 ], [ 126.504161004000025, -7.903090101999908 ], [ 126.504242384, -7.912367445999905 ], [ 126.49732506600003, -7.922539971999925 ], [ 126.488129102000016, -7.932712497999944 ], [ 126.475271030000044, -7.955336195999905 ], [ 126.466156446000014, -7.966566664999959 ], [ 126.45476321700005, -7.958184502999927 ], [ 126.43327884200005, -7.936700127999927 ], [ 126.421885613000086, -7.932549737999921 ], [ 126.373789910000028, -7.932549737999921 ], [ 126.350271030000044, -7.929294528999947 ], [ 126.300547722000033, -7.915215752999927 ], [ 126.274424675000091, -7.911879164999959 ], [ 126.189789259, -7.92351653399993 ], [ 126.168955925000091, -7.91570403399993 ], [ 126.15552819100003, -7.90162525799991 ], [ 126.136892123000052, -7.888604424999926 ], [ 126.11451256600003, -7.882989190999922 ], [ 126.090098504000025, -7.891534112999921 ], [ 126.074961785000028, -7.883884372999944 ], [ 126.05396569100003, -7.884698174999926 ], [ 125.998789910000028, -7.893731377999927 ], [ 125.980316602000016, -7.903497002999927 ], [ 125.969411655000044, -7.905857028999947 ], [ 125.946136915000011, -7.906019789999959 ], [ 125.935069207000083, -7.90789153399993 ], [ 125.92505944100003, -7.911879164999959 ], [ 125.924001498000052, -7.915134372999944 ], [ 125.921397332000083, -7.927504164999959 ], [ 125.918142123000052, -7.932549737999921 ], [ 125.912852410000028, -7.934991143999923 ], [ 125.90202884200005, -7.937269789999959 ], [ 125.89771569100003, -7.939222914999959 ], [ 125.812022332000083, -8.007582289999959 ], [ 125.789317254000025, -8.016045830999929 ], [ 125.774180535000028, -8.007582289999959 ], [ 125.775889519000089, -7.991794528999947 ], [ 125.786306186000047, -7.971123955999929 ], [ 125.798187696000014, -7.953220309999949 ], [ 125.805186394000089, -7.945489190999922 ], [ 125.808441602000016, -7.934258721999925 ], [ 125.808360222000033, -7.864190362999921 ], [ 125.814219597000033, -7.850274346999925 ], [ 125.825043165000011, -7.837009372999944 ], [ 125.838877800000091, -7.827080987999921 ], [ 125.853282097000033, -7.823337497999944 ], [ 125.869802280000044, -7.814711195999905 ], [ 125.87623131600003, -7.794691664999959 ], [ 125.878916863000086, -7.771905205999929 ], [ 125.88404381600003, -7.754327080999929 ], [ 125.888031446000014, -7.751885674999926 ], [ 125.902598504000025, -7.747247002999927 ], [ 125.908213738000086, -7.744073174999926 ], [ 125.914398634, -7.736586195999905 ], [ 125.92115319100003, -7.721123955999929 ], [ 125.947927280000044, -7.678317966999941 ], [ 125.957204623000052, -7.667901299999926 ], [ 125.968923373000052, -7.660088799999926 ], [ 125.980642123000052, -7.658623955999929 ], [ 125.992686394000089, -7.661553643999923 ], [ 126.02271569100003, -7.676039320999905 ], [ 126.031260613000086, -7.682305596999925 ], [ 126.034922722000033, -7.68914153399993 ], [ 126.04615319100003, -7.693454684999949 ], [ 126.203135613000086, -7.713474216999941 ], [ 126.214854363000086, -7.709405205999929 ], [ 126.24537194100003, -7.691176039999959 ], [ 126.261485222000033, -7.686130466999941 ], [ 126.280039910000028, -7.688083591999941 ], [ 126.30437259200005, -7.693454684999949 ], [ 126.328379754000025, -7.695733330999929 ], [ 126.346446160000028, -7.68914153399993 ], [ 126.397959832000083, -7.64381275799991 ], [ 126.45240319100003, -7.619561455999929 ], [ 126.484548373000052, -7.597263278999947 ], [ 126.503754102000016, -7.590427341999941 ], [ 126.603526238000086, -7.569431247999944 ], [ 126.617442254000025, -7.562107028999947 ], [ 126.626963738000086, -7.559991143999923 ], [ 126.631358269000089, -7.565362237999921 ], [ 126.630218946000014, -7.58717213299991 ], [ 126.630869988000086, -7.598565362999921 ], [ 126.634532097000033, -7.606866143999923 ], [ 126.646983269000089, -7.616957289999959 ], [ 126.692718946000014, -7.637627862999921 ], [ 126.703135613000086, -7.64771900799991 ], [ 126.711599155000044, -7.658868096999925 ], [ 126.721690300000091, -7.668064059999949 ], [ 126.73755944100003, -7.671807549999926 ], [ 126.798838738000086, -7.664239190999922 ], [ 126.813243035000028, -7.668633721999925 ], [ 126.821625196000014, -7.680271091999941 ], [ 126.829112175000091, -7.695489190999922 ], [ 126.834320509, -7.711846612999921 ], [ 126.836761915000011, -7.726332289999959 ] ] ], [ [ [ 127.470225457000083, -7.527764580999929 ], [ 127.484385613000086, -7.532403252999927 ], [ 127.489268425000091, -7.544528903999947 ], [ 127.487803582000083, -7.579278252999927 ], [ 127.48170006600003, -7.590101820999905 ], [ 127.467295769000089, -7.599053643999923 ], [ 127.431162957000083, -7.613051039999959 ], [ 127.418630405000044, -7.614678643999923 ], [ 127.412852410000028, -7.617771091999941 ], [ 127.408376498000052, -7.623304945999905 ], [ 127.398610873000052, -7.64381275799991 ], [ 127.389496290000011, -7.64967213299991 ], [ 127.373301629000025, -7.656182549999926 ], [ 127.357676629000025, -7.655694268999923 ], [ 127.350759311000047, -7.640801690999922 ], [ 127.347666863000086, -7.622979424999926 ], [ 127.348399285000028, -7.615329684999949 ], [ 127.354502800000091, -7.606866143999923 ], [ 127.361989780000044, -7.60279713299991 ], [ 127.369883660000028, -7.600274346999925 ], [ 127.376149936000047, -7.595879815999922 ], [ 127.378672722000033, -7.585870049999926 ], [ 127.375743035000028, -7.569919528999947 ], [ 127.364431186000047, -7.53679778399993 ], [ 127.364431186000047, -7.521579684999949 ], [ 127.37273196700005, -7.506117445999905 ], [ 127.384938998000052, -7.502862237999921 ], [ 127.418467644000089, -7.507907809999949 ], [ 127.44068444100003, -7.520603122999944 ], [ 127.454112175000091, -7.525648695999905 ], [ 127.470225457000083, -7.527764580999929 ] ] ], [ [ [ 131.698578321000014, -7.226739190999922 ], [ 131.683604363000086, -7.225030205999929 ], [ 131.674571160000028, -7.222588799999926 ], [ 131.666514519000089, -7.22389088299991 ], [ 131.654633009, -7.233575127999927 ], [ 131.645518425000091, -7.244805596999925 ], [ 131.642751498000052, -7.254815362999921 ], [ 131.647227410000028, -7.281996351999908 ], [ 131.646494988000086, -7.302178643999923 ], [ 131.647227410000028, -7.309258721999925 ], [ 131.648692254000025, -7.310316664999959 ], [ 131.669444207000083, -7.344008070999905 ], [ 131.67505944100003, -7.358168226999908 ], [ 131.673350457000083, -7.371840101999908 ], [ 131.660899285000028, -7.383884372999944 ], [ 131.668467644000089, -7.39421965899993 ], [ 131.677907748000052, -7.400811455999929 ], [ 131.687266472000033, -7.405857028999947 ], [ 131.69499759200005, -7.41179778399993 ], [ 131.699229363000086, -7.413995049999926 ], [ 131.703135613000086, -7.412774346999925 ], [ 131.70630944100003, -7.412692966999941 ], [ 131.709239129000025, -7.417901299999926 ], [ 131.708750847000033, -7.424574476999908 ], [ 131.703623894000089, -7.425388278999947 ], [ 131.697764519000089, -7.42506275799991 ], [ 131.69499759200005, -7.428806247999944 ], [ 131.683441602000016, -7.451592705999929 ], [ 131.679860873000052, -7.473077080999929 ], [ 131.675547722000033, -7.48015715899993 ], [ 131.669118686000047, -7.484551690999922 ], [ 131.660899285000028, -7.486911716999941 ], [ 131.668711785000028, -7.509209893999923 ], [ 131.662933790000011, -7.531833591999941 ], [ 131.652598504000025, -7.554945570999905 ], [ 131.643321160000028, -7.599053643999923 ], [ 131.633067254000025, -7.620049737999921 ], [ 131.618907097000033, -7.636976820999905 ], [ 131.60279381600003, -7.64381275799991 ], [ 131.598643425000091, -7.648532809999949 ], [ 131.57935631600003, -7.688897393999923 ], [ 131.574229363000086, -7.694919528999947 ], [ 131.558360222000033, -7.706638278999947 ], [ 131.538584832000083, -7.71257903399993 ], [ 131.51335696700005, -7.716973565999922 ], [ 131.496918165000011, -7.726332289999959 ], [ 131.50318444100003, -7.747491143999923 ], [ 131.497406446000014, -7.756117445999905 ], [ 131.490000847000033, -7.763278903999947 ], [ 131.480723504000025, -7.766208591999941 ], [ 131.469004754000025, -7.761814059999949 ], [ 131.474945509, -7.782972914999959 ], [ 131.46412194100003, -7.794366143999923 ], [ 131.44890384200005, -7.800225518999923 ], [ 131.441172722000033, -7.805840752999927 ], [ 131.434336785000028, -7.814060153999947 ], [ 131.38990319100003, -7.847100518999923 ], [ 131.382578972000033, -7.859551690999922 ], [ 131.380218946000014, -7.873223565999922 ], [ 131.379649285000028, -7.891534112999921 ], [ 131.368662957000083, -7.90398528399993 ], [ 131.358083530000044, -7.912286065999922 ], [ 131.348155144000089, -7.922133070999905 ], [ 131.338633660000028, -7.939222914999959 ], [ 131.348643425000091, -7.939060153999947 ], [ 131.357269727000016, -7.941582940999922 ], [ 131.360850457000083, -7.947360934999949 ], [ 131.355723504000025, -7.95631275799991 ], [ 131.349782748000052, -7.96412525799991 ], [ 131.348480665000011, -7.969903252999927 ], [ 131.348399285000028, -7.976657809999949 ], [ 131.345469597000033, -7.987074476999908 ], [ 131.33521569100003, -8.000909112999921 ], [ 131.316742384, -8.017998955999929 ], [ 131.299327019000089, -8.025648695999905 ], [ 131.291514519000089, -8.011325778999947 ], [ 131.306000196000014, -7.973402601999908 ], [ 131.310801629000025, -7.954034112999921 ], [ 131.301442905000044, -7.945489190999922 ], [ 131.293955925000091, -7.942478122999944 ], [ 131.289317254000025, -7.93718840899993 ], [ 131.283457879000025, -7.936130466999941 ], [ 131.271006707000083, -7.945489190999922 ], [ 131.265879754000025, -7.95435963299991 ], [ 131.261892123000052, -7.976983330999929 ], [ 131.257334832000083, -7.987074476999908 ], [ 131.229665561000047, -8.003513278999947 ], [ 131.190765821000014, -8.006605726999908 ], [ 131.116221550000091, -8.000746351999908 ], [ 131.106618686000047, -7.991306247999944 ], [ 131.111582879000025, -7.969496351999908 ], [ 131.126963738000086, -7.929131768999923 ], [ 131.123871290000011, -7.913669528999947 ], [ 131.115977410000028, -7.898695570999905 ], [ 131.10474694100003, -7.889580987999921 ], [ 131.092295769000089, -7.891534112999921 ], [ 131.085703972000033, -7.871758721999925 ], [ 131.090179884, -7.848809502999927 ], [ 131.102549675000091, -7.828545830999929 ], [ 131.119639519000089, -7.816501559999949 ], [ 131.132985873000052, -7.816582940999922 ], [ 131.14380944100003, -7.821221612999921 ], [ 131.152842644000089, -7.821872653999947 ], [ 131.161143425000091, -7.809665622999944 ], [ 131.161143425000091, -7.799574476999908 ], [ 131.155284050000091, -7.791599216999941 ], [ 131.147146030000044, -7.785577080999929 ], [ 131.139984571000014, -7.781670830999929 ], [ 131.139984571000014, -7.775485934999949 ], [ 131.156993035000028, -7.774346612999921 ], [ 131.156748894000089, -7.766045830999929 ], [ 131.151377800000091, -7.753838799999926 ], [ 131.153656446000014, -7.740655205999929 ], [ 131.144053582000083, -7.744398695999905 ], [ 131.137380405000044, -7.74342213299991 ], [ 131.133555535000028, -7.737481377999927 ], [ 131.133148634, -7.726332289999959 ], [ 131.126963738000086, -7.726332289999959 ], [ 131.126963738000086, -7.733819268999923 ], [ 131.119639519000089, -7.733819268999923 ], [ 131.114756707000083, -7.706963799999926 ], [ 131.122569207000083, -7.691013278999947 ], [ 131.139170769000089, -7.686130466999941 ], [ 131.161143425000091, -7.692315362999921 ], [ 131.203868035000028, -7.713311455999929 ], [ 131.223317905000044, -7.714450778999947 ], [ 131.249847852000016, -7.706638278999947 ], [ 131.23210696700005, -7.702569268999923 ], [ 131.211680535000028, -7.694919528999947 ], [ 131.194834832000083, -7.683770440999922 ], [ 131.18132571700005, -7.649590752999927 ], [ 131.181407097000033, -7.641208591999941 ], [ 131.191579623000052, -7.637627862999921 ], [ 131.189707879000025, -7.632419528999947 ], [ 131.195160352000016, -7.596774997999944 ], [ 131.202484571000014, -7.579522393999923 ], [ 131.224782748000052, -7.546319268999923 ], [ 131.229502800000091, -7.531182549999926 ], [ 131.232676629000025, -7.50709400799991 ], [ 131.241547071000014, -7.487725518999923 ], [ 131.254730665000011, -7.472263278999947 ], [ 131.315196160000028, -7.422946872999944 ], [ 131.328135613000086, -7.417901299999926 ], [ 131.335703972000033, -7.422539971999925 ], [ 131.341156446000014, -7.431573174999926 ], [ 131.347015821000014, -7.438246351999908 ], [ 131.355723504000025, -7.435316664999959 ], [ 131.36060631600003, -7.427666924999926 ], [ 131.372813347000033, -7.398044528999947 ], [ 131.379649285000028, -7.389336846999925 ], [ 131.384287957000083, -7.38600025799991 ], [ 131.38835696700005, -7.381931247999944 ], [ 131.393321160000028, -7.37078215899993 ], [ 131.391368035000028, -7.368340752999927 ], [ 131.389821811000047, -7.35865650799991 ], [ 131.390798373000052, -7.348321221999925 ], [ 131.396983269000089, -7.34343840899993 ], [ 131.453135613000086, -7.334405205999929 ], [ 131.454112175000091, -7.328301690999922 ], [ 131.449717644000089, -7.31959400799991 ], [ 131.44849694100003, -7.309258721999925 ], [ 131.455088738000086, -7.291192315999922 ], [ 131.462657097000033, -7.278741143999923 ], [ 131.482676629000025, -7.254652601999908 ], [ 131.486827019000089, -7.24537525799991 ], [ 131.489024285000028, -7.236504815999922 ], [ 131.493988477000016, -7.229587497999944 ], [ 131.506846550000091, -7.226739190999922 ], [ 131.526703321000014, -7.225518487999921 ], [ 131.535817905000044, -7.223402601999908 ], [ 131.544769727000016, -7.219903252999927 ], [ 131.532074415000011, -7.190362237999921 ], [ 131.528819207000083, -7.170098565999922 ], [ 131.536957227000016, -7.154229424999926 ], [ 131.568614129000025, -7.130954684999949 ], [ 131.589854363000086, -7.120212497999944 ], [ 131.617198113000086, -7.112237237999921 ], [ 131.637543165000011, -7.10906340899993 ], [ 131.654307488000086, -7.112888278999947 ], [ 131.660980665000011, -7.12859465899993 ], [ 131.65357506600003, -7.166192315999922 ], [ 131.654633009, -7.172133070999905 ], [ 131.668223504000025, -7.166680596999925 ], [ 131.676524285000028, -7.160577080999929 ], [ 131.691905144000089, -7.141208591999941 ], [ 131.704112175000091, -7.131524346999925 ], [ 131.709971550000091, -7.137465101999908 ], [ 131.713715040000011, -7.150485934999949 ], [ 131.73951256600003, -7.195977471999925 ], [ 131.743337436000047, -7.196058851999908 ], [ 131.738291863000086, -7.206638278999947 ], [ 131.726084832000083, -7.216566664999959 ], [ 131.711192254000025, -7.22389088299991 ], [ 131.698578321000014, -7.226739190999922 ] ] ], [ [ [ 131.982188347000033, -7.188897393999923 ], [ 131.98601321700005, -7.225274346999925 ], [ 131.98170006600003, -7.245700778999947 ], [ 131.965586785000028, -7.254652601999908 ], [ 131.955902540000011, -7.249200127999927 ], [ 131.921641472000033, -7.22389088299991 ], [ 131.914073113000086, -7.21648528399993 ], [ 131.90398196700005, -7.180352471999925 ], [ 131.877940300000091, -7.164483330999929 ], [ 131.842784050000091, -7.16179778399993 ], [ 131.772227410000028, -7.164971612999921 ], [ 131.742686394000089, -7.158379815999922 ], [ 131.732188347000033, -7.141208591999941 ], [ 131.757009311000047, -7.110039971999925 ], [ 131.878428582000083, -7.106052341999941 ], [ 131.900401238000086, -7.110039971999925 ], [ 131.918467644000089, -7.103610934999949 ], [ 131.933848504000025, -7.111586195999905 ], [ 131.944183790000011, -7.12664153399993 ], [ 131.948090040000011, -7.141208591999941 ], [ 131.953461134, -7.154066664999959 ], [ 131.977061394000089, -7.174086195999905 ], [ 131.982188347000033, -7.188897393999923 ] ] ], [ [ [ 128.669688347000033, -7.137383721999925 ], [ 128.658539259, -7.14381275799991 ], [ 128.668223504000025, -7.158135674999926 ], [ 128.680511915000011, -7.172458591999941 ], [ 128.676524285000028, -7.178887627999927 ], [ 128.638682488000086, -7.219903252999927 ], [ 128.62232506600003, -7.210137627999927 ], [ 128.583994988000086, -7.178887627999927 ], [ 128.546641472000033, -7.162692966999941 ], [ 128.532725457000083, -7.151055596999925 ], [ 128.528819207000083, -7.13054778399993 ], [ 128.539398634, -7.112237237999921 ], [ 128.563243035000028, -7.091241143999923 ], [ 128.592458530000044, -7.073011976999908 ], [ 128.619639519000089, -7.063164971999925 ], [ 128.62859134200005, -7.068536065999922 ], [ 128.643402540000011, -7.082777601999908 ], [ 128.652354363000086, -7.08953215899993 ], [ 128.660817905000044, -7.092461846999925 ], [ 128.67896569100003, -7.093845309999949 ], [ 128.686371290000011, -7.096368096999925 ], [ 128.699717644000089, -7.109551690999922 ], [ 128.701345248000052, -7.122816664999959 ], [ 128.691254102000016, -7.133233330999929 ], [ 128.669688347000033, -7.137383721999925 ] ] ], [ [ [ 134.484385613000086, -6.575616143999923 ], [ 134.510508660000028, -6.580661716999941 ], [ 134.521494988000086, -6.586846612999921 ], [ 134.515391472000033, -6.599541924999926 ], [ 134.508311394000089, -6.60906340899993 ], [ 134.504161004000025, -6.627536716999941 ], [ 134.49927819100003, -6.637790622999944 ], [ 134.472178582000083, -6.66179778399993 ], [ 134.450368686000047, -6.660577080999929 ], [ 134.428721550000091, -6.652764580999929 ], [ 134.401703321000014, -6.65748463299991 ], [ 134.401703321000014, -6.664971612999921 ], [ 134.420420769000089, -6.664157809999949 ], [ 134.433767123000052, -6.67701588299991 ], [ 134.436534050000091, -6.682061455999929 ], [ 134.432139519000089, -6.691582940999922 ], [ 134.42156009200005, -6.704196872999944 ], [ 134.408946160000028, -6.715020440999922 ], [ 134.398285352000016, -6.719659112999921 ], [ 134.347178582000083, -6.801527601999908 ], [ 134.364268425000091, -6.807793877999927 ], [ 134.358897332000083, -6.820733330999929 ], [ 134.310720248000052, -6.859470309999949 ], [ 134.244802280000044, -6.883477471999925 ], [ 134.207367384, -6.911309502999927 ], [ 134.185069207000083, -6.918633721999925 ], [ 134.158457879000025, -6.873630466999941 ], [ 134.14616946700005, -6.858982028999947 ], [ 134.140472852000016, -6.854913018999923 ], [ 134.127452019000089, -6.849379164999959 ], [ 134.089854363000086, -6.838311455999929 ], [ 134.073415561000047, -6.826755466999941 ], [ 134.064463738000086, -6.795586846999925 ], [ 134.055023634, -6.775160414999959 ], [ 134.052989129000025, -6.764336846999925 ], [ 134.054453972000033, -6.75164153399993 ], [ 134.066579623000052, -6.719659112999921 ], [ 134.085948113000086, -6.642022393999923 ], [ 134.103770379000025, -6.474867445999905 ], [ 134.11060631600003, -6.459161065999922 ], [ 134.117523634, -6.452080987999921 ], [ 134.120616082000083, -6.462334893999923 ], [ 134.131114129000025, -6.47975025799991 ], [ 134.185801629000025, -6.489190362999921 ], [ 134.209971550000091, -6.507419528999947 ], [ 134.20826256600003, -6.489841403999947 ], [ 134.191172722000033, -6.462823174999926 ], [ 134.189463738000086, -6.445245049999926 ], [ 134.136973504000025, -6.450372002999927 ], [ 134.12037194100003, -6.419854424999926 ], [ 134.127452019000089, -6.325290622999944 ], [ 134.121592644000089, -6.291924737999921 ], [ 134.099131707000083, -6.225681247999944 ], [ 134.097504102000016, -6.192071221999925 ], [ 134.102712436000047, -6.180108330999929 ], [ 134.111989780000044, -6.172946872999944 ], [ 134.123789910000028, -6.17156340899993 ], [ 134.13599694100003, -6.176934502999927 ], [ 134.146006707000083, -6.18873463299991 ], [ 134.154063347000033, -6.203057549999926 ], [ 134.163828972000033, -6.215020440999922 ], [ 134.198741082000083, -6.22429778399993 ], [ 134.214040561000047, -6.234795830999929 ], [ 134.247243686000047, -6.268324476999908 ], [ 134.277110222000033, -6.290215752999927 ], [ 134.288828972000033, -6.294528903999947 ], [ 134.29460696700005, -6.297784112999921 ], [ 134.298838738000086, -6.305840752999927 ], [ 134.299815300000091, -6.315850518999923 ], [ 134.295909050000091, -6.325290622999944 ], [ 134.288096550000091, -6.336032809999949 ], [ 134.287771030000044, -6.341892184999949 ], [ 134.312754754000025, -6.374200127999927 ], [ 134.32976321700005, -6.389336846999925 ], [ 134.349375847000033, -6.399834893999923 ], [ 134.392425977000016, -6.408298434999949 ], [ 134.407237175000091, -6.419122002999927 ], [ 134.420420769000089, -6.432793877999927 ], [ 134.436534050000091, -6.445245049999926 ], [ 134.44263756600003, -6.446384372999944 ], [ 134.446055535000028, -6.443454684999949 ], [ 134.449961785000028, -6.441338799999926 ], [ 134.457041863000086, -6.445245049999926 ], [ 134.461273634, -6.45086028399993 ], [ 134.462087436000047, -6.455661716999941 ], [ 134.462087436000047, -6.460381768999923 ], [ 134.463877800000091, -6.465752862999921 ], [ 134.48170006600003, -6.49773528399993 ], [ 134.485362175000091, -6.506931247999944 ], [ 134.487803582000083, -6.508558851999908 ], [ 134.490000847000033, -6.511325778999947 ], [ 134.491221550000091, -6.51726653399993 ], [ 134.489024285000028, -6.520684502999927 ], [ 134.484385613000086, -6.522637627999927 ], [ 134.47974694100003, -6.525485934999949 ], [ 134.477549675000091, -6.531345309999949 ], [ 134.484385613000086, -6.575616143999923 ] ] ], [ [ [ 132.80201256600003, -5.787367445999905 ], [ 132.811045769000089, -5.797051690999922 ], [ 132.812266472000033, -5.81959400799991 ], [ 132.805430535000028, -5.862481377999927 ], [ 132.797129754000025, -5.885837497999944 ], [ 132.787364129000025, -5.905857028999947 ], [ 132.775563998000052, -5.923923434999949 ], [ 132.760590040000011, -5.941582940999922 ], [ 132.741547071000014, -5.950372002999927 ], [ 132.730723504000025, -5.934177341999941 ], [ 132.723643425000091, -5.910332940999922 ], [ 132.715993686000047, -5.896661065999922 ], [ 132.71648196700005, -5.906996351999908 ], [ 132.714203321000014, -5.918389580999929 ], [ 132.70866946700005, -5.927504164999959 ], [ 132.699229363000086, -5.93132903399993 ], [ 132.691905144000089, -5.928806247999944 ], [ 132.686045769000089, -5.922051690999922 ], [ 132.67505944100003, -5.904066664999959 ], [ 132.67505944100003, -5.910902601999908 ], [ 132.669688347000033, -5.899997653999947 ], [ 132.667816602000016, -5.888116143999923 ], [ 132.668223504000025, -5.862481377999927 ], [ 132.667002800000091, -5.857517184999949 ], [ 132.664805535000028, -5.85515715899993 ], [ 132.662364129000025, -5.852146091999941 ], [ 132.66138756600003, -5.84539153399993 ], [ 132.663422071000014, -5.838555596999925 ], [ 132.667979363000086, -5.836521091999941 ], [ 132.672699415000011, -5.836358330999929 ], [ 132.67505944100003, -5.835707289999959 ], [ 132.671641472000033, -5.783379815999922 ], [ 132.674489780000044, -5.760023695999905 ], [ 132.68873131600003, -5.760023695999905 ], [ 132.683360222000033, -5.749118747999944 ], [ 132.67505944100003, -5.71217213299991 ], [ 132.670176629000025, -5.711521091999941 ], [ 132.66138756600003, -5.711114190999922 ], [ 132.655039910000028, -5.708754164999959 ], [ 132.657969597000033, -5.701755466999941 ], [ 132.660411004000025, -5.697198174999926 ], [ 132.661957227000016, -5.691013278999947 ], [ 132.662364129000025, -5.684340101999908 ], [ 132.66138756600003, -5.678806247999944 ], [ 132.65748131600003, -5.67742278399993 ], [ 132.650401238000086, -5.677504164999959 ], [ 132.64380944100003, -5.67546965899993 ], [ 132.640879754000025, -5.667901299999926 ], [ 132.641937696000014, -5.648532809999949 ], [ 132.640879754000025, -5.643324476999908 ], [ 132.634125196000014, -5.633396091999941 ], [ 132.627614780000044, -5.625583591999941 ], [ 132.62232506600003, -5.616631768999923 ], [ 132.619802280000044, -5.602959893999923 ], [ 132.656911655000044, -5.62037525799991 ], [ 132.66138756600003, -5.623467705999929 ], [ 132.675303582000083, -5.612888278999947 ], [ 132.687836134, -5.600030205999929 ], [ 132.697520379000025, -5.597426039999959 ], [ 132.702891472000033, -5.616794528999947 ], [ 132.699473504000025, -5.631524346999925 ], [ 132.692393425000091, -5.642022393999923 ], [ 132.690603061000047, -5.65007903399993 ], [ 132.702891472000033, -5.657647393999923 ], [ 132.711110873000052, -5.658623955999929 ], [ 132.726328972000033, -5.654961846999925 ], [ 132.733571811000047, -5.655043226999908 ], [ 132.740489129000025, -5.660088799999926 ], [ 132.743662957000083, -5.668389580999929 ], [ 132.74537194100003, -5.686455987999921 ], [ 132.757172071000014, -5.722914320999905 ], [ 132.757578972000033, -5.73211028399993 ], [ 132.762380405000044, -5.722426039999959 ], [ 132.763682488000086, -5.71843840899993 ], [ 132.771250847000033, -5.71843840899993 ], [ 132.776377800000091, -5.738457940999922 ], [ 132.779307488000086, -5.76100025799991 ], [ 132.785899285000028, -5.779717705999929 ], [ 132.80201256600003, -5.787367445999905 ] ] ], [ [ [ 134.758067254000025, -6.15789153399993 ], [ 134.758148634, -6.167901299999926 ], [ 134.756602410000028, -6.175957940999922 ], [ 134.75318444100003, -6.182793877999927 ], [ 134.747813347000033, -6.189060153999947 ], [ 134.743662957000083, -6.198825778999947 ], [ 134.751312696000014, -6.219170830999929 ], [ 134.747813347000033, -6.229913018999923 ], [ 134.739593946000014, -6.241957289999959 ], [ 134.720876498000052, -6.281833591999941 ], [ 134.717051629000025, -6.297946872999944 ], [ 134.701833530000044, -6.321872653999947 ], [ 134.630218946000014, -6.35125090899993 ], [ 134.607758009, -6.369561455999929 ], [ 134.58366946700005, -6.352308851999908 ], [ 134.570567254000025, -6.348809502999927 ], [ 134.559336785000028, -6.355889580999929 ], [ 134.553721550000091, -6.355889580999929 ], [ 134.540375196000014, -6.338067315999922 ], [ 134.535817905000044, -6.335381768999923 ], [ 134.53484134200005, -6.331231377999927 ], [ 134.516286655000044, -6.313897393999923 ], [ 134.511566602000016, -6.311618747999944 ], [ 134.501963738000086, -6.299248955999929 ], [ 134.459239129000025, -6.278415622999944 ], [ 134.449473504000025, -6.263767184999949 ], [ 134.437754754000025, -6.264092705999929 ], [ 134.377940300000091, -6.239353122999944 ], [ 134.371592644000089, -6.23756275799991 ], [ 134.368907097000033, -6.233168226999908 ], [ 134.367360873000052, -6.227959893999923 ], [ 134.36451256600003, -6.223077080999929 ], [ 134.35865319100003, -6.219821872999944 ], [ 134.354014519000089, -6.221368096999925 ], [ 134.349375847000033, -6.224541924999926 ], [ 134.343760613000086, -6.226169528999947 ], [ 134.333506707000083, -6.221449476999908 ], [ 134.326670769000089, -6.21062590899993 ], [ 134.321462436000047, -6.198174737999921 ], [ 134.31609134200005, -6.189060153999947 ], [ 134.291351759, -6.156345309999949 ], [ 134.27662194100003, -6.119317315999922 ], [ 134.275889519000089, -6.083591403999947 ], [ 134.292491082000083, -6.054864190999922 ], [ 134.312022332000083, -6.047133070999905 ], [ 134.330577019000089, -6.050388278999947 ], [ 134.34888756600003, -6.050876559999949 ], [ 134.367686394000089, -6.034356377999927 ], [ 134.369313998000052, -6.023858330999929 ], [ 134.33326256600003, -6.026055596999925 ], [ 134.312998894000089, -6.027601820999905 ], [ 134.301768425000091, -6.016289971999925 ], [ 134.305674675000091, -6.00123463299991 ], [ 134.315114780000044, -5.983982028999947 ], [ 134.319102410000028, -5.96607838299991 ], [ 134.312266472000033, -5.95435963299991 ], [ 134.288096550000091, -5.923923434999949 ], [ 134.288828972000033, -5.917738539999959 ], [ 134.299164259, -5.913018487999921 ], [ 134.312510613000086, -5.901950778999947 ], [ 134.322520379000025, -5.889418226999908 ], [ 134.32349694100003, -5.868259372999944 ], [ 134.360362175000091, -5.849541924999926 ], [ 134.354014519000089, -5.835707289999959 ], [ 134.354014519000089, -5.828301690999922 ], [ 134.376475457000083, -5.805596612999921 ], [ 134.378265821000014, -5.793715101999908 ], [ 134.361501498000052, -5.78053150799991 ], [ 134.352386915000011, -5.793389580999929 ], [ 134.340993686000047, -5.804294528999947 ], [ 134.330902540000011, -5.80396900799991 ], [ 134.326670769000089, -5.783949476999908 ], [ 134.318207227000016, -5.772556247999944 ], [ 134.299164259, -5.768243096999925 ], [ 134.265147332000083, -5.76685963299991 ], [ 134.247894727000016, -5.760430596999925 ], [ 134.232676629000025, -5.750909112999921 ], [ 134.206553582000083, -5.729099216999941 ], [ 134.201996290000011, -5.712497653999947 ], [ 134.215505405000044, -5.695896091999941 ], [ 134.237315300000091, -5.68328215899993 ], [ 134.257823113000086, -5.678806247999944 ], [ 134.277191602000016, -5.685723565999922 ], [ 134.309743686000047, -5.71257903399993 ], [ 134.330088738000086, -5.71843840899993 ], [ 134.351817254000025, -5.714450778999947 ], [ 134.358734571000014, -5.703545830999929 ], [ 134.360687696000014, -5.688409112999921 ], [ 134.367686394000089, -5.671319268999923 ], [ 134.37818444100003, -5.66179778399993 ], [ 134.39185631600003, -5.652113539999959 ], [ 134.404063347000033, -5.640883070999905 ], [ 134.409190300000091, -5.626885674999926 ], [ 134.412445509, -5.613946221999925 ], [ 134.457041863000086, -5.534112237999921 ], [ 134.462657097000033, -5.552829684999949 ], [ 134.472504102000016, -5.55787525799991 ], [ 134.483164910000028, -5.552829684999949 ], [ 134.491221550000091, -5.540948174999926 ], [ 134.494802280000044, -5.543226820999905 ], [ 134.504730665000011, -5.547784112999921 ], [ 134.505869988000086, -5.528252862999921 ], [ 134.505056186000047, -5.517754815999922 ], [ 134.501963738000086, -5.510349216999941 ], [ 134.494639519000089, -5.500746351999908 ], [ 134.492035352000016, -5.49578215899993 ], [ 134.491221550000091, -5.448174737999921 ], [ 134.492523634, -5.441827080999929 ], [ 134.496592644000089, -5.436130466999941 ], [ 134.502126498000052, -5.431735934999949 ], [ 134.508311394000089, -5.42937590899993 ], [ 134.515472852000016, -5.429457289999959 ], [ 134.519297722000033, -5.432305596999925 ], [ 134.522471550000091, -5.436293226999908 ], [ 134.527110222000033, -5.440036716999941 ], [ 134.539724155000044, -5.440606377999927 ], [ 134.567881707000083, -5.427829684999949 ], [ 134.581228061000047, -5.424248955999929 ], [ 134.628265821000014, -5.444756768999923 ], [ 134.635915561000047, -5.455254815999922 ], [ 134.648203972000033, -5.493096612999921 ], [ 134.658946160000028, -5.504652601999908 ], [ 134.688487175000091, -5.523858330999929 ], [ 134.69654381600003, -5.534112237999921 ], [ 134.688975457000083, -5.536879164999959 ], [ 134.668630405000044, -5.547784112999921 ], [ 134.675303582000083, -5.552178643999923 ], [ 134.67896569100003, -5.55787525799991 ], [ 134.682383660000028, -5.575127862999921 ], [ 134.676036004000025, -5.575127862999921 ], [ 134.676036004000025, -5.568942966999941 ], [ 134.651703321000014, -5.574639580999929 ], [ 134.641449415000011, -5.579196872999944 ], [ 134.635101759, -5.588799737999921 ], [ 134.644297722000033, -5.586195570999905 ], [ 134.672373894000089, -5.588799737999921 ], [ 134.680349155000044, -5.590915622999944 ], [ 134.691172722000033, -5.596368096999925 ], [ 134.71021569100003, -5.609144789999959 ], [ 134.736827019000089, -5.63795338299991 ], [ 134.758067254000025, -5.671319268999923 ], [ 134.739756707000083, -5.685153903999947 ], [ 134.726410352000016, -5.711195570999905 ], [ 134.718760613000086, -5.73756275799991 ], [ 134.717051629000025, -5.752618096999925 ], [ 134.72624759200005, -5.754327080999929 ], [ 134.733164910000028, -5.756605726999908 ], [ 134.73755944100003, -5.760023695999905 ], [ 134.738617384, -5.765557549999926 ], [ 134.738780144000089, -5.773532809999949 ], [ 134.73755944100003, -5.787367445999905 ], [ 134.731211785000028, -5.802911065999922 ], [ 134.711110873000052, -5.823663018999923 ], [ 134.702891472000033, -5.835707289999959 ], [ 134.723968946000014, -5.837823174999926 ], [ 134.743337436000047, -5.84693775799991 ], [ 134.754405144000089, -5.860772393999923 ], [ 134.75123131600003, -5.876722914999959 ], [ 134.755869988000086, -5.879327080999929 ], [ 134.760020379000025, -5.885674737999921 ], [ 134.76490319100003, -5.890394789999959 ], [ 134.754242384, -5.898370049999926 ], [ 134.734385613000086, -5.90984465899993 ], [ 134.72388756600003, -5.917738539999959 ], [ 134.720225457000083, -5.900567315999922 ], [ 134.709646030000044, -5.89617278399993 ], [ 134.699473504000025, -5.902601820999905 ], [ 134.69654381600003, -5.917738539999959 ], [ 134.702891472000033, -5.925957940999922 ], [ 134.72779381600003, -5.936944268999923 ], [ 134.73755944100003, -5.94500090899993 ], [ 134.727061394000089, -5.944756768999923 ], [ 134.72388756600003, -5.94500090899993 ], [ 134.736094597000033, -5.969496351999908 ], [ 134.720957879000025, -5.971612237999921 ], [ 134.695323113000086, -5.96217213299991 ], [ 134.676036004000025, -5.951836846999925 ], [ 134.668467644000089, -5.944756768999923 ], [ 134.662771030000044, -5.938164971999925 ], [ 134.654307488000086, -5.93328215899993 ], [ 134.638845248000052, -5.93132903399993 ], [ 134.625987175000091, -5.933038018999923 ], [ 134.61451256600003, -5.937432549999926 ], [ 134.605723504000025, -5.943942966999941 ], [ 134.601084832000083, -5.951836846999925 ], [ 134.642588738000086, -5.947523695999905 ], [ 134.656993035000028, -5.953871351999908 ], [ 134.662364129000025, -5.976006768999923 ], [ 134.670664910000028, -5.986748955999929 ], [ 134.711436394000089, -6.020277601999908 ], [ 134.727305535000028, -6.027601820999905 ], [ 134.765147332000083, -6.076836846999925 ], [ 134.772227410000028, -6.089613539999959 ], [ 134.768239780000044, -6.11296965899993 ], [ 134.754649285000028, -6.135511976999908 ], [ 134.73601321700005, -6.15398528399993 ], [ 134.717051629000025, -6.164727471999925 ], [ 134.713145379000025, -6.161716403999947 ], [ 134.71021569100003, -6.160088799999926 ], [ 134.702891472000033, -6.15789153399993 ], [ 134.701426629000025, -6.170586846999925 ], [ 134.697276238000086, -6.180840752999927 ], [ 134.69109134200005, -6.188083591999941 ], [ 134.740733269000089, -6.17115650799991 ], [ 134.758067254000025, -6.15789153399993 ] ] ], [ [ [ 133.184336785000028, -5.310316664999959 ], [ 133.188161655000044, -5.324802341999941 ], [ 133.18873131600003, -5.344496351999908 ], [ 133.184336785000028, -5.361993096999925 ], [ 133.172129754000025, -5.369724216999941 ], [ 133.165375196000014, -5.38014088299991 ], [ 133.138926629000025, -5.52117278399993 ], [ 133.113291863000086, -5.595635674999926 ], [ 133.105967644000089, -5.605645440999922 ], [ 133.079600457000083, -5.631768487999921 ], [ 133.069102410000028, -5.637139580999929 ], [ 133.060801629000025, -5.639336846999925 ], [ 133.047048373000052, -5.648614190999922 ], [ 133.033539259, -5.654392184999949 ], [ 133.027110222000033, -5.662692966999941 ], [ 133.017100457000083, -5.678806247999944 ], [ 132.997243686000047, -5.699965101999908 ], [ 132.975433790000011, -5.728692315999922 ], [ 132.957530144000089, -5.76140715899993 ], [ 132.949392123000052, -5.79420338299991 ], [ 132.950938347000033, -5.813083591999941 ], [ 132.958506707000083, -5.844333591999941 ], [ 132.956797722000033, -5.862481377999927 ], [ 132.949473504000025, -5.87428150799991 ], [ 132.856781446000014, -5.989434502999927 ], [ 132.842295769000089, -5.996840101999908 ], [ 132.840505405000044, -5.984958591999941 ], [ 132.90007571700005, -5.813897393999923 ], [ 132.92351321700005, -5.786716403999947 ], [ 132.928884311000047, -5.777113539999959 ], [ 132.931162957000083, -5.714939059999949 ], [ 132.928884311000047, -5.698011976999908 ], [ 132.96412194100003, -5.640720309999949 ], [ 132.980316602000016, -5.644626559999949 ], [ 132.996592644000089, -5.651543877999927 ], [ 133.004079623000052, -5.647149346999925 ], [ 133.01490319100003, -5.60711028399993 ], [ 133.018565300000091, -5.566176039999959 ], [ 133.022959832000083, -5.54851653399993 ], [ 133.03874759200005, -5.513604424999926 ], [ 133.07585696700005, -5.398044528999947 ], [ 133.096690300000091, -5.366306247999944 ], [ 133.104340040000011, -5.350681247999944 ], [ 133.110118035000028, -5.310967705999929 ], [ 133.121348504000025, -5.29461028399993 ], [ 133.137868686000047, -5.287286065999922 ], [ 133.156097852000016, -5.28834400799991 ], [ 133.172618035000028, -5.296482028999947 ], [ 133.184336785000028, -5.310316664999959 ] ] ], [ [ [ 131.733083530000044, -4.69304778399993 ], [ 131.750173373000052, -4.710544528999947 ], [ 131.754405144000089, -4.736504815999922 ], [ 131.748708530000044, -4.75904713299991 ], [ 131.736501498000052, -4.766289971999925 ], [ 131.729014519000089, -4.754652601999908 ], [ 131.725108269000089, -4.73170338299991 ], [ 131.726084832000083, -4.707777601999908 ], [ 131.733083530000044, -4.69304778399993 ] ] ], [ [ [ 131.606211785000028, -4.430433851999908 ], [ 131.613536004000025, -4.425225518999923 ], [ 131.619802280000044, -4.424493096999925 ], [ 131.626149936000047, -4.426853122999944 ], [ 131.633474155000044, -4.430433851999908 ], [ 131.649424675000091, -4.45240650799991 ], [ 131.670746290000011, -4.490166924999926 ], [ 131.680430535000028, -4.524021091999941 ], [ 131.660899285000028, -4.534274997999944 ], [ 131.655039910000028, -4.525648695999905 ], [ 131.61646569100003, -4.441582940999922 ], [ 131.606211785000028, -4.430433851999908 ] ] ], [ [ [ 131.365977410000028, -4.122165622999944 ], [ 131.385508660000028, -4.140232028999947 ], [ 131.39185631600003, -4.153497002999927 ], [ 131.385427280000044, -4.156182549999926 ], [ 131.352712436000047, -4.133396091999941 ], [ 131.305023634, -4.115329684999949 ], [ 131.29656009200005, -4.10906340899993 ], [ 131.289235873000052, -4.100030205999929 ], [ 131.283702019000089, -4.089776299999926 ], [ 131.28052819100003, -4.079522393999923 ], [ 131.280446811000047, -4.074802341999941 ], [ 131.281504754000025, -4.07000090899993 ], [ 131.284190300000091, -4.06609465899993 ], [ 131.28834069100003, -4.063409112999921 ], [ 131.29460696700005, -4.063164971999925 ], [ 131.29851321700005, -4.065850518999923 ], [ 131.30437259200005, -4.074883721999925 ], [ 131.31763756600003, -4.088067315999922 ], [ 131.365977410000028, -4.122165622999944 ] ] ], [ [ [ 131.235036655000044, -3.98756275799991 ], [ 131.240489129000025, -3.991794528999947 ], [ 131.24537194100003, -3.996840101999908 ], [ 131.248708530000044, -4.002862237999921 ], [ 131.249847852000016, -4.009698174999926 ], [ 131.250498894000089, -4.032321872999944 ], [ 131.247569207000083, -4.04265715899993 ], [ 131.239593946000014, -4.047051690999922 ], [ 131.226084832000083, -4.03834400799991 ], [ 131.21648196700005, -4.018649997999944 ], [ 131.210785352000016, -3.99578215899993 ], [ 131.209157748000052, -3.978936455999929 ], [ 131.235036655000044, -3.98756275799991 ] ] ], [ [ [ 131.444834832000083, -4.036716403999947 ], [ 131.453298373000052, -4.055759372999944 ], [ 131.442393425000091, -4.065118096999925 ], [ 131.421885613000086, -4.062920830999929 ], [ 131.400645379000025, -4.047051690999922 ], [ 131.391286655000044, -4.031508070999905 ], [ 131.370127800000091, -3.985284112999921 ], [ 131.365977410000028, -3.96843840899993 ], [ 131.369639519000089, -3.96217213299991 ], [ 131.377696160000028, -3.957126559999949 ], [ 131.394379102000016, -3.951592705999929 ], [ 131.416026238000086, -3.958591403999947 ], [ 131.42701256600003, -3.983330987999921 ], [ 131.434336785000028, -4.013604424999926 ], [ 131.444834832000083, -4.036716403999947 ] ] ], [ [ [ 128.796234571000014, -3.642836195999905 ], [ 128.797129754000025, -3.652520440999922 ], [ 128.799652540000011, -3.66139088299991 ], [ 128.804209832000083, -3.669366143999923 ], [ 128.810557488000086, -3.676446221999925 ], [ 128.797129754000025, -3.693780205999929 ], [ 128.779307488000086, -3.702243747999944 ], [ 128.761729363000086, -3.699639580999929 ], [ 128.748545769000089, -3.683851820999905 ], [ 128.746348504000025, -3.659763278999947 ], [ 128.757985873000052, -3.643649997999944 ], [ 128.776866082000083, -3.637302341999941 ], [ 128.796234571000014, -3.642836195999905 ] ] ], [ [ [ 128.528819207000083, -3.532972914999959 ], [ 128.542816602000016, -3.547458591999941 ], [ 128.558848504000025, -3.570489190999922 ], [ 128.563812696000014, -3.591892184999949 ], [ 128.545909050000091, -3.601332289999959 ], [ 128.52898196700005, -3.604424737999921 ], [ 128.490570509, -3.618584893999923 ], [ 128.449066602000016, -3.623142184999949 ], [ 128.431651238000086, -3.627048434999949 ], [ 128.392914259, -3.642836195999905 ], [ 128.387543165000011, -3.626885674999926 ], [ 128.392914259, -3.606622002999927 ], [ 128.401377800000091, -3.586358330999929 ], [ 128.406016472000033, -3.570245049999926 ], [ 128.406911655000044, -3.556817315999922 ], [ 128.410166863000086, -3.543226820999905 ], [ 128.416514519000089, -3.531345309999949 ], [ 128.427093946000014, -3.52271900799991 ], [ 128.461436394000089, -3.512139580999929 ], [ 128.477305535000028, -3.519789320999905 ], [ 128.512705925000091, -3.526055596999925 ], [ 128.528819207000083, -3.532972914999959 ] ] ], [ [ [ 128.330821160000028, -3.511895440999922 ], [ 128.349375847000033, -3.529473565999922 ], [ 128.344574415000011, -3.542087497999944 ], [ 128.331065300000091, -3.554131768999923 ], [ 128.323415561000047, -3.570245049999926 ], [ 128.328868035000028, -3.591729424999926 ], [ 128.33716881600003, -3.611586195999905 ], [ 128.334971550000091, -3.627211195999905 ], [ 128.309743686000047, -3.635430596999925 ], [ 128.303070509, -3.633965752999927 ], [ 128.283050977000016, -3.621758721999925 ], [ 128.26921634200005, -3.615817966999941 ], [ 128.263031446000014, -3.615004164999959 ], [ 128.251963738000086, -3.61492278399993 ], [ 128.246592644000089, -3.62037525799991 ], [ 128.25123131600003, -3.632582289999959 ], [ 128.275889519000089, -3.666192315999922 ], [ 128.278168165000011, -3.674411716999941 ], [ 128.274912957000083, -3.681084893999923 ], [ 128.254893425000091, -3.709567966999941 ], [ 128.236501498000052, -3.722263278999947 ], [ 128.212657097000033, -3.729261976999908 ], [ 128.183116082000083, -3.731622002999927 ], [ 128.161468946000014, -3.739027601999908 ], [ 128.146739129000025, -3.755059502999927 ], [ 128.128672722000033, -3.769626559999949 ], [ 128.097422722000033, -3.773207289999959 ], [ 128.104014519000089, -3.763767184999949 ], [ 128.127126498000052, -3.749444268999923 ], [ 128.13209069100003, -3.742282809999949 ], [ 128.15202884200005, -3.703057549999926 ], [ 128.20435631600003, -3.668145440999922 ], [ 128.220957879000025, -3.649102471999925 ], [ 128.202891472000033, -3.639336846999925 ], [ 128.183767123000052, -3.646905205999929 ], [ 128.145192905000044, -3.676446221999925 ], [ 128.10670006600003, -3.692071221999925 ], [ 128.080739780000044, -3.708184502999927 ], [ 128.055511915000011, -3.713311455999929 ], [ 128.042735222000033, -3.71803150799991 ], [ 128.021739129000025, -3.736423434999949 ], [ 128.005707227000016, -3.756768487999921 ], [ 127.98601321700005, -3.771579684999949 ], [ 127.954112175000091, -3.773207289999959 ], [ 127.933441602000016, -3.763441664999959 ], [ 127.926768425000091, -3.746840101999908 ], [ 127.923350457000083, -3.726006768999923 ], [ 127.912364129000025, -3.703057549999926 ], [ 127.916351759, -3.693942966999941 ], [ 127.960948113000086, -3.64031340899993 ], [ 127.984141472000033, -3.620538018999923 ], [ 128.034515821000014, -3.589043877999927 ], [ 128.047699415000011, -3.584730726999908 ], [ 128.062510613000086, -3.583591403999947 ], [ 128.147308790000011, -3.588474216999941 ], [ 128.158702019000089, -3.584649346999925 ], [ 128.241709832000083, -3.522149346999925 ], [ 128.287119988000086, -3.504571221999925 ], [ 128.330821160000028, -3.511895440999922 ] ] ], [ [ [ 128.720550977000016, -3.525567315999922 ], [ 128.726410352000016, -3.545993747999944 ], [ 128.728037957000083, -3.61492278399993 ], [ 128.706553582000083, -3.602959893999923 ], [ 128.687022332000083, -3.582207940999922 ], [ 128.668793165000011, -3.569268487999921 ], [ 128.652354363000086, -3.580824476999908 ], [ 128.65162194100003, -3.59148528399993 ], [ 128.655446811000047, -3.602146091999941 ], [ 128.656016472000033, -3.612399997999944 ], [ 128.645518425000091, -3.621758721999925 ], [ 128.636241082000083, -3.622816664999959 ], [ 128.627452019000089, -3.617608330999929 ], [ 128.618988477000016, -3.607517184999949 ], [ 128.61060631600003, -3.593926690999922 ], [ 128.618174675000091, -3.593926690999922 ], [ 128.603526238000086, -3.583428643999923 ], [ 128.593760613000086, -3.568617445999905 ], [ 128.585703972000033, -3.552992445999905 ], [ 128.567881707000083, -3.528008721999925 ], [ 128.559092644000089, -3.509372653999947 ], [ 128.561045769000089, -3.493747653999947 ], [ 128.583994988000086, -3.49146900799991 ], [ 128.597829623000052, -3.491794528999947 ], [ 128.606293165000011, -3.496677341999941 ], [ 128.621592644000089, -3.515720309999949 ], [ 128.631683790000011, -3.522556247999944 ], [ 128.660655144000089, -3.533379815999922 ], [ 128.672862175000091, -3.539808851999908 ], [ 128.682465040000011, -3.517022393999923 ], [ 128.693207227000016, -3.502048434999949 ], [ 128.705739780000044, -3.502536716999941 ], [ 128.720550977000016, -3.525567315999922 ] ] ], [ [ [ 127.240896030000044, -3.470961195999962 ], [ 127.24341881600003, -3.606052341999941 ], [ 127.227224155000044, -3.642836195999905 ], [ 127.205739780000044, -3.659600518999923 ], [ 127.185801629000025, -3.659926039999959 ], [ 127.165212436000047, -3.653415622999944 ], [ 127.141449415000011, -3.649102471999925 ], [ 127.121592644000089, -3.653252862999921 ], [ 127.001963738000086, -3.713799737999921 ], [ 126.990733269000089, -3.71803150799991 ], [ 126.980723504000025, -3.724541924999926 ], [ 126.956797722000033, -3.755629164999959 ], [ 126.946055535000028, -3.765801690999922 ], [ 126.906999559000042, -3.78734113999991 ], [ 126.826929288000088, -3.810093289999941 ], [ 126.777086390000022, -3.832694756999956 ], [ 126.742185315000029, -3.859378355999922 ], [ 126.718896104, -3.854854321999937 ], [ 126.696573440000066, -3.863792105999948 ], [ 126.67427504300008, -3.842502851999939 ], [ 126.656292803000042, -3.834851643999912 ], [ 126.589325421000012, -3.816639322999947 ], [ 126.55852750400004, -3.793291256999908 ], [ 126.525057473000061, -3.789916427999913 ], [ 126.438879444, -3.750449915999923 ], [ 126.380625847000033, -3.703057549999926 ], [ 126.364431186000047, -3.697198174999926 ], [ 126.324663694000037, -3.687644316999922 ], [ 126.274895582, -3.663260553999919 ], [ 126.258796637000046, -3.642255465999938 ], [ 126.243918449000034, -3.631398868999952 ], [ 126.203020844000093, -3.630993787999955 ], [ 126.173560620000103, -3.602527212999917 ], [ 126.16529381600003, -3.567966403999947 ], [ 126.148553611000011, -3.52550066099991 ], [ 126.088127758000041, -3.483623285999954 ], [ 126.068507251000028, -3.467379435999931 ], [ 126.05262796, -3.446320133999961 ], [ 126.041758660000028, -3.420098565999922 ], [ 126.041188998000052, -3.412855726999908 ], [ 126.007226452000054, -3.36101182799996 ], [ 125.991742403000103, -3.248191339999948 ], [ 126.01726321700005, -3.17115650799991 ], [ 126.036562169000035, -3.153592708999952 ], [ 126.064608538000016, -3.132931362999955 ], [ 126.090921175000062, -3.112098279999941 ], [ 126.110867227000085, -3.121706119999942 ], [ 126.121615228, -3.147897929999942 ], [ 126.136318502, -3.160623631999954 ], [ 126.16134390700006, -3.172316784999907 ], [ 126.185085400000048, -3.180893844999957 ], [ 126.202001198000062, -3.181841811999959 ], [ 126.22774030100004, -3.174758609999913 ], [ 126.226573113000086, -3.149509372999944 ], [ 126.258311394000089, -3.122002862999921 ], [ 126.297129754000025, -3.105889580999929 ], [ 126.421397332000083, -3.070489190999922 ], [ 126.720225457000083, -3.060153903999947 ], [ 126.840017123000052, -3.073663018999923 ], [ 126.858897332000083, -3.085870049999926 ], [ 126.875254754000025, -3.109470309999949 ], [ 126.893402540000011, -3.125583591999941 ], [ 126.918711785000028, -3.114678643999923 ], [ 126.934092644000089, -3.13054778399993 ], [ 126.955739780000044, -3.137790622999944 ], [ 126.979177280000044, -3.14226653399993 ], [ 127.000661655000044, -3.149509372999944 ], [ 127.035004102000016, -3.17351653399993 ], [ 127.054942254000025, -3.179457289999959 ], [ 127.084239129000025, -3.194268487999921 ], [ 127.093516472000033, -3.200778903999947 ], [ 127.102305535000028, -3.210381768999923 ], [ 127.106944207000083, -3.218845309999949 ], [ 127.109141472000033, -3.229424737999921 ], [ 127.112315300000091, -3.264418226999908 ], [ 127.111827019000089, -3.272067966999941 ], [ 127.106455925000091, -3.273044528999947 ], [ 127.093516472000033, -3.272393487999921 ], [ 127.083018425000091, -3.268161716999941 ], [ 127.069834832000083, -3.260918877999927 ], [ 127.05591881600003, -3.259535414999959 ], [ 127.04224694100003, -3.272393487999921 ], [ 127.040782097000033, -3.286716403999947 ], [ 127.04615319100003, -3.305352471999925 ], [ 127.054535352000016, -3.323011976999908 ], [ 127.062754754000025, -3.334405205999929 ], [ 127.069509311000047, -3.336683851999908 ], [ 127.080088738000086, -3.348809502999927 ], [ 127.094737175000091, -3.362074476999908 ], [ 127.113942905000044, -3.368584893999923 ], [ 127.124766472000033, -3.363213799999926 ], [ 127.137868686000047, -3.339776299999926 ], [ 127.148285352000016, -3.334405205999929 ], [ 127.158946160000028, -3.33717213299991 ], [ 127.193125847000033, -3.355564059999949 ], [ 127.238536004000025, -3.363213799999926 ], [ 127.259776238000086, -3.371189059999949 ], [ 127.26880944100003, -3.385918877999927 ], [ 127.264659050000091, -3.404717705999929 ], [ 127.246348504000025, -3.449965101999908 ], [ 127.240896030000044, -3.470961195999962 ] ] ], [ [ [ 130.873220248000052, -3.573988539999959 ], [ 130.875743035000028, -3.58562590899993 ], [ 130.87623131600003, -3.595310153999947 ], [ 130.873220248000052, -3.61492278399993 ], [ 130.868662957000083, -3.625746351999908 ], [ 130.854828321000014, -3.646416924999926 ], [ 130.852061394000089, -3.652927341999941 ], [ 130.84888756600003, -3.662692966999941 ], [ 130.834727410000028, -3.682305596999925 ], [ 130.831553582000083, -3.694105726999908 ], [ 130.824717644000089, -3.824476820999905 ], [ 130.831065300000091, -3.837497653999947 ], [ 130.84148196700005, -3.85279713299991 ], [ 130.841563347000033, -3.865004164999959 ], [ 130.817881707000083, -3.86882903399993 ], [ 130.799571160000028, -3.861748955999929 ], [ 130.767344597000033, -3.834079684999949 ], [ 130.752777540000011, -3.827894789999959 ], [ 130.731211785000028, -3.825941664999959 ], [ 130.631602410000028, -3.788669528999947 ], [ 130.61646569100003, -3.786309502999927 ], [ 130.606944207000083, -3.778497002999927 ], [ 130.564707879000025, -3.731622002999927 ], [ 130.551280144000089, -3.720961195999905 ], [ 130.535166863000086, -3.711846612999921 ], [ 130.515798373000052, -3.705498955999929 ], [ 130.492686394000089, -3.703057549999926 ], [ 130.47779381600003, -3.697360934999949 ], [ 130.465586785000028, -3.683851820999905 ], [ 130.448008660000028, -3.656508070999905 ], [ 130.435313347000033, -3.645440362999921 ], [ 130.418793165000011, -3.636895440999922 ], [ 130.398936394000089, -3.631280205999929 ], [ 130.375987175000091, -3.629164320999905 ], [ 130.356455925000091, -3.62468840899993 ], [ 130.310801629000025, -3.593926690999922 ], [ 130.126475457000083, -3.532972914999959 ], [ 130.106618686000047, -3.514825127999927 ], [ 130.101898634, -3.511895440999922 ], [ 130.088063998000052, -3.509698174999926 ], [ 130.037119988000086, -3.49146900799991 ], [ 130.001719597000033, -3.473077080999929 ], [ 129.983164910000028, -3.459730726999908 ], [ 129.975108269000089, -3.447686455999929 ], [ 129.972911004000025, -3.441501559999949 ], [ 129.963633660000028, -3.428317966999941 ], [ 129.961273634, -3.420098565999922 ], [ 129.962250196000014, -3.390801690999922 ], [ 129.961273634, -3.382256768999923 ], [ 129.933848504000025, -3.348321221999925 ], [ 129.890472852000016, -3.333103122999944 ], [ 129.544932488000086, -3.297784112999921 ], [ 129.509613477000016, -3.302504164999959 ], [ 129.501963738000086, -3.334405205999929 ], [ 129.551442905000044, -3.403252862999921 ], [ 129.563243035000028, -3.439629815999922 ], [ 129.530039910000028, -3.464776299999926 ], [ 129.48560631600003, -3.463474216999941 ], [ 129.401540561000047, -3.422946872999944 ], [ 129.358083530000044, -3.410088799999926 ], [ 129.236175977000016, -3.40162525799991 ], [ 129.193614129000025, -3.389743747999944 ], [ 129.113536004000025, -3.348809502999927 ], [ 129.084320509, -3.341241143999923 ], [ 129.058441602000016, -3.340752862999921 ], [ 128.984222852000016, -3.347426039999959 ], [ 128.960785352000016, -3.355564059999949 ], [ 128.939626498000052, -3.332614841999941 ], [ 128.937673373000052, -3.320407809999949 ], [ 128.947032097000033, -3.300225518999923 ], [ 128.981944207000083, -3.251885674999926 ], [ 128.968923373000052, -3.233005466999941 ], [ 128.952891472000033, -3.22039153399993 ], [ 128.933360222000033, -3.213555596999925 ], [ 128.909515821000014, -3.211521091999941 ], [ 128.889659050000091, -3.20435963299991 ], [ 128.877452019000089, -3.202569268999923 ], [ 128.872080925000091, -3.207777601999908 ], [ 128.869151238000086, -3.213636976999908 ], [ 128.850922071000014, -3.238213799999926 ], [ 128.792165561000047, -3.260430596999925 ], [ 128.782725457000083, -3.26921965899993 ], [ 128.776866082000083, -3.279392184999949 ], [ 128.692556186000047, -3.348728122999944 ], [ 128.686371290000011, -3.358575127999927 ], [ 128.684336785000028, -3.363864841999941 ], [ 128.679535352000016, -3.368747653999947 ], [ 128.674978061000047, -3.375420830999929 ], [ 128.672862175000091, -3.385918877999927 ], [ 128.676036004000025, -3.394789320999962 ], [ 128.68327884200005, -3.401055596999925 ], [ 128.690440300000091, -3.405694268999923 ], [ 128.693858269000089, -3.410088799999926 ], [ 128.677582227000016, -3.432305596999925 ], [ 128.635915561000047, -3.436618747999944 ], [ 128.586924675000091, -3.434340101999908 ], [ 128.549327019000089, -3.437432549999926 ], [ 128.508311394000089, -3.456963799999926 ], [ 128.484141472000033, -3.462497653999947 ], [ 128.464203321000014, -3.454522393999923 ], [ 128.449717644000089, -3.443291924999926 ], [ 128.416188998000052, -3.425957940999922 ], [ 128.399180535000028, -3.410088799999926 ], [ 128.282074415000011, -3.220879815999922 ], [ 128.272146030000044, -3.211521091999941 ], [ 128.230967644000089, -3.208754164999959 ], [ 128.211436394000089, -3.204278252999927 ], [ 128.18287194100003, -3.193780205999929 ], [ 128.178721550000091, -3.194268487999921 ], [ 128.178558790000011, -3.191013278999947 ], [ 128.180186394000089, -3.166761976999908 ], [ 128.185883009, -3.140720309999949 ], [ 128.200043165000011, -3.111423434999949 ], [ 128.196787957000083, -3.090915622999944 ], [ 128.184336785000028, -3.074395440999922 ], [ 128.165782097000033, -3.066989841999941 ], [ 128.135752800000091, -3.075372002999927 ], [ 128.11060631600003, -3.100030205999929 ], [ 128.090668165000011, -3.132012627999927 ], [ 128.076914910000028, -3.162530205999929 ], [ 128.066579623000052, -3.19695403399993 ], [ 128.056895379000025, -3.296807549999926 ], [ 128.053070509, -3.310642184999949 ], [ 128.04420006600003, -3.325778903999947 ], [ 128.031504754000025, -3.357679945999962 ], [ 128.022227410000028, -3.368584893999923 ], [ 128.014170769000089, -3.371351820999962 ], [ 127.993907097000033, -3.373711846999925 ], [ 127.98755944100003, -3.376071872999944 ], [ 127.981455925000091, -3.385023695999962 ], [ 127.975596550000091, -3.405043226999908 ], [ 127.96216881600003, -3.425713799999926 ], [ 127.952891472000033, -3.443942966999941 ], [ 127.940277540000011, -3.478448174999926 ], [ 127.935883009, -3.497002862999921 ], [ 127.93718509200005, -3.50554778399993 ], [ 127.943858269000089, -3.515720309999949 ], [ 127.94263756600003, -3.521661065999922 ], [ 127.929209832000083, -3.542738539999959 ], [ 127.926036004000025, -3.553480726999908 ], [ 127.898610873000052, -3.523858330999929 ], [ 127.903086785000028, -3.476657809999949 ], [ 127.933441602000016, -3.389743747999944 ], [ 127.933848504000025, -3.345310153999947 ], [ 127.930186394000089, -3.323337497999944 ], [ 127.923024936000047, -3.313897393999923 ], [ 127.91570071700005, -3.307224216999941 ], [ 127.885752800000091, -3.266208591999941 ], [ 127.875254754000025, -3.208754164999959 ], [ 127.868011915000011, -3.193780205999929 ], [ 127.842295769000089, -3.173272393999923 ], [ 127.843923373000052, -3.166110934999949 ], [ 127.864756707000083, -3.156345309999949 ], [ 127.874034050000091, -3.154392184999949 ], [ 127.896494988000086, -3.152113539999959 ], [ 127.905609571000014, -3.149509372999944 ], [ 127.916270379000025, -3.13990650799991 ], [ 127.93873131600003, -3.113376559999949 ], [ 127.950694207000083, -3.107842705999929 ], [ 127.967295769000089, -3.103692315999922 ], [ 127.992930535000028, -3.082614841999941 ], [ 128.008067254000025, -3.073663018999923 ], [ 128.025645379000025, -3.068617445999962 ], [ 128.04615319100003, -3.065850518999923 ], [ 128.066661004000025, -3.066989841999941 ], [ 128.083750847000033, -3.073663018999923 ], [ 128.103688998000052, -3.066989841999941 ], [ 128.091807488000086, -3.034600518999923 ], [ 128.090586785000028, -3.022149346999925 ], [ 128.09498131600003, -3.010918877999927 ], [ 128.114105665000011, -2.993584893999923 ], [ 128.117930535000028, -2.984307549999926 ], [ 128.106293165000011, -2.975518487999921 ], [ 128.084971550000091, -2.97389088299991 ], [ 128.06999759200005, -2.970635674999926 ], [ 128.076914910000028, -2.957696221999925 ], [ 128.085459832000083, -2.954847914999959 ], [ 128.112152540000011, -2.949965101999908 ], [ 128.121104363000086, -2.944512627999927 ], [ 128.138926629000025, -2.90984465899993 ], [ 128.136485222000033, -2.911879164999959 ], [ 128.136241082000083, -2.907647393999923 ], [ 128.137461785000028, -2.901299737999921 ], [ 128.138926629000025, -2.89617278399993 ], [ 128.143239780000044, -2.894626559999949 ], [ 128.149912957000083, -2.894952080999929 ], [ 128.156097852000016, -2.893243096999925 ], [ 128.158864780000044, -2.885674737999921 ], [ 128.160899285000028, -2.874118747999944 ], [ 128.166677280000044, -2.863946221999925 ], [ 128.17546634200005, -2.857028903999947 ], [ 128.18677819100003, -2.854668877999927 ], [ 128.212412957000083, -2.860528252999927 ], [ 128.381032748000052, -2.859958591999941 ], [ 128.417328321000014, -2.850518487999921 ], [ 128.459727410000028, -2.846286716999941 ], [ 128.498545769000089, -2.836521091999941 ], [ 128.515879754000025, -2.834161065999922 ], [ 128.537852410000028, -2.83717213299991 ], [ 128.57545006600003, -2.851332289999959 ], [ 128.600759311000047, -2.854668877999927 ], [ 128.800547722000033, -2.856215101999908 ], [ 128.842295769000089, -2.862237237999921 ], [ 128.865244988000086, -2.862074476999908 ], [ 128.908213738000086, -2.855401299999926 ], [ 128.947276238000086, -2.844414971999925 ], [ 129.015961134, -2.814222914999959 ], [ 129.052907748000052, -2.804457289999959 ], [ 129.068858269000089, -2.821221612999921 ], [ 129.070567254000025, -2.854913018999923 ], [ 129.064463738000086, -2.89617278399993 ], [ 129.079437696000014, -2.905368747999944 ], [ 129.105235222000033, -2.947930596999925 ], [ 129.121836785000028, -2.957696221999925 ], [ 129.133148634, -2.956475518999923 ], [ 129.152598504000025, -2.951348565999922 ], [ 129.162852410000028, -2.950290622999944 ], [ 129.169118686000047, -2.951348565999922 ], [ 129.172129754000025, -2.953871351999908 ], [ 129.174164259, -2.956475518999923 ], [ 129.177093946000014, -2.957696221999925 ], [ 129.185394727000016, -2.955173434999949 ], [ 129.184336785000028, -2.949151299999926 ], [ 129.180511915000011, -2.942152601999908 ], [ 129.180511915000011, -2.936618747999944 ], [ 129.179942254000025, -2.934258721999925 ], [ 129.178233269000089, -2.930433851999908 ], [ 129.179453972000033, -2.926446221999925 ], [ 129.187347852000016, -2.922946872999944 ], [ 129.191905144000089, -2.923028252999927 ], [ 129.195323113000086, -2.928399346999925 ], [ 129.20045006600003, -2.929782809999949 ], [ 129.211599155000044, -2.940850518999923 ], [ 129.218516472000033, -2.941176039999959 ], [ 129.221446160000028, -2.926364841999941 ], [ 129.22779381600003, -2.915215752999927 ], [ 129.243174675000091, -2.906833591999941 ], [ 129.276133660000028, -2.89617278399993 ], [ 129.328379754000025, -2.866794528999947 ], [ 129.358409050000091, -2.856215101999908 ], [ 129.364105665000011, -2.842054945999962 ], [ 129.36646569100003, -2.823988539999959 ], [ 129.372894727000016, -2.806817315999922 ], [ 129.400238477000016, -2.791599216999941 ], [ 129.443532748000052, -2.784926039999959 ], [ 129.523203972000033, -2.786309502999927 ], [ 129.53484134200005, -2.780043226999908 ], [ 129.541026238000086, -2.780043226999908 ], [ 129.543711785000028, -2.789727471999925 ], [ 129.545258009, -2.793552341999941 ], [ 129.549571160000028, -2.796644789999959 ], [ 129.554942254000025, -2.799004815999922 ], [ 129.611827019000089, -2.806817315999922 ], [ 129.753754102000016, -2.86646900799991 ], [ 129.766123894000089, -2.868910414999959 ], [ 129.778086785000028, -2.875420830999929 ], [ 129.798024936000047, -2.906426690999922 ], [ 129.810557488000086, -2.916680596999925 ], [ 129.82545006600003, -2.91765715899993 ], [ 129.838145379000025, -2.912692966999941 ], [ 129.849864129000025, -2.906182549999926 ], [ 129.862071160000028, -2.903008721999925 ], [ 129.868337436000047, -2.906996351999908 ], [ 129.869883660000028, -2.916273695999962 ], [ 129.873301629000025, -2.927504164999959 ], [ 129.885590040000011, -2.936618747999944 ], [ 129.895030144000089, -2.925388278999947 ], [ 129.911631707000083, -2.933200778999947 ], [ 129.927582227000016, -2.94695403399993 ], [ 129.943858269000089, -2.96453215899993 ], [ 129.964854363000086, -2.973565362999921 ], [ 130.046641472000033, -2.992120049999926 ], [ 130.212657097000033, -2.990411065999922 ], [ 130.301524285000028, -2.977227471999925 ], [ 130.34498131600003, -2.977634372999944 ], [ 130.389333530000044, -2.99382903399993 ], [ 130.488942905000044, -3.087497653999947 ], [ 130.502940300000091, -3.094496351999908 ], [ 130.578461134, -3.122816664999959 ], [ 130.587901238000086, -3.129489841999941 ], [ 130.591970248000052, -3.138848565999922 ], [ 130.599375847000033, -3.173028252999927 ], [ 130.602224155000044, -3.180108330999929 ], [ 130.622243686000047, -3.21257903399993 ], [ 130.631032748000052, -3.252699476999908 ], [ 130.632823113000086, -3.337823174999926 ], [ 130.637217644000089, -3.353610934999949 ], [ 130.65593509200005, -3.380954684999949 ], [ 130.660329623000052, -3.392754815999922 ], [ 130.666677280000044, -3.40357838299991 ], [ 130.682627800000091, -3.406426690999922 ], [ 130.72234134200005, -3.403252862999921 ], [ 130.761485222000033, -3.405857028999947 ], [ 130.792979363000086, -3.416436455999929 ], [ 130.816579623000052, -3.434258721999925 ], [ 130.831553582000083, -3.457940362999921 ], [ 130.810883009, -3.464939059999949 ], [ 130.810801629000025, -3.484551690999922 ], [ 130.819346550000091, -3.50514088299991 ], [ 130.831390821000014, -3.526462497999944 ], [ 130.862803582000083, -3.557305596999925 ], [ 130.873220248000052, -3.573988539999959 ] ] ], [ [ [ 130.066661004000025, -7.762627862999921 ], [ 130.077484571000014, -7.765883070999905 ], [ 130.083750847000033, -7.772556247999944 ], [ 130.080332879000025, -7.787367445999905 ], [ 130.065928582000083, -7.787855726999908 ], [ 130.052500847000033, -7.777113539999959 ], [ 130.045176629000025, -7.77507903399993 ], [ 130.03248131600003, -7.774997653999947 ], [ 130.025645379000025, -7.772556247999944 ], [ 130.029063347000033, -7.767836195999905 ], [ 130.03093509200005, -7.762627862999921 ], [ 130.037119988000086, -7.761651299999926 ], [ 130.046885613000086, -7.76336028399993 ], [ 130.05591881600003, -7.761488539999959 ], [ 130.066661004000025, -7.762627862999921 ] ] ], [ [ [ 130.007823113000086, -7.724867445999905 ], [ 130.015391472000033, -7.744073174999926 ], [ 130.008474155000044, -7.750420830999929 ], [ 129.997243686000047, -7.748223565999922 ], [ 129.994151238000086, -7.744398695999905 ], [ 129.992686394000089, -7.738539320999905 ], [ 129.983164910000028, -7.732354424999926 ], [ 129.97974694100003, -7.722100518999923 ], [ 129.978851759, -7.712660414999959 ], [ 129.982595248000052, -7.704847914999959 ], [ 129.991953972000033, -7.702080987999921 ], [ 130.000987175000091, -7.70671965899993 ], [ 130.005869988000086, -7.714043877999927 ], [ 130.007823113000086, -7.724867445999905 ] ] ], [ [ [ 129.675140821000014, -7.57154713299991 ], [ 129.655284050000091, -7.560479424999926 ], [ 129.65357506600003, -7.547051690999922 ], [ 129.658539259, -7.535088799999926 ], [ 129.66374759200005, -7.536553643999923 ], [ 129.680674675000091, -7.554131768999923 ], [ 129.69068444100003, -7.559991143999923 ], [ 129.700043165000011, -7.558363539999959 ], [ 129.706797722000033, -7.554782809999949 ], [ 129.713877800000091, -7.558200778999947 ], [ 129.71216881600003, -7.569512627999927 ], [ 129.69459069100003, -7.577569268999923 ], [ 129.681976759, -7.577243747999944 ], [ 129.675140821000014, -7.57154713299991 ] ] ], [ [ [ 129.125010613000086, -6.993259372999944 ], [ 129.116221550000091, -6.983330987999921 ], [ 129.117442254000025, -6.972751559999949 ], [ 129.125010613000086, -6.965752862999921 ], [ 129.134287957000083, -6.961114190999922 ], [ 129.144786004000025, -6.962090752999927 ], [ 129.152842644000089, -6.976169528999947 ], [ 129.150401238000086, -6.99146900799991 ], [ 129.142588738000086, -6.997491143999923 ], [ 129.135427280000044, -6.998142184999949 ], [ 129.125010613000086, -6.993259372999944 ] ] ], [ [ [ 129.484548373000052, -6.755303643999923 ], [ 129.480967644000089, -6.760023695999905 ], [ 129.477875196000014, -6.756036065999922 ], [ 129.478770379000025, -6.744073174999926 ], [ 129.486338738000086, -6.729099216999941 ], [ 129.497080925000091, -6.722588799999926 ], [ 129.509776238000086, -6.723402601999908 ], [ 129.520192905000044, -6.721123955999929 ], [ 129.529063347000033, -6.723077080999929 ], [ 129.530772332000083, -6.731215101999908 ], [ 129.529063347000033, -6.739190362999921 ], [ 129.518077019000089, -6.763116143999923 ], [ 129.511566602000016, -6.769707940999922 ], [ 129.501312696000014, -6.770603122999944 ], [ 129.493174675000091, -6.765720309999949 ], [ 129.488129102000016, -6.760837497999944 ], [ 129.486175977000016, -6.754571221999925 ], [ 129.484548373000052, -6.755303643999923 ] ] ], [ [ [ 130.013682488000086, -6.328383070999905 ], [ 130.006114129000025, -6.324883721999925 ], [ 129.998708530000044, -6.317152601999908 ], [ 129.997813347000033, -6.309747002999927 ], [ 130.003754102000016, -6.306247653999947 ], [ 130.02076256600003, -6.312432549999926 ], [ 130.026052280000044, -6.318454684999949 ], [ 130.021657748000052, -6.324965101999908 ], [ 130.013682488000086, -6.328383070999905 ] ] ], [ [ [ 127.551280144000089, -5.512383721999925 ], [ 127.555186394000089, -5.506605726999908 ], [ 127.561371290000011, -5.51726653399993 ], [ 127.551280144000089, -5.512383721999925 ] ] ], [ [ [ 127.554860873000052, -5.490492445999905 ], [ 127.556976759, -5.499769789999959 ], [ 127.545909050000091, -5.495293877999927 ], [ 127.554860873000052, -5.490492445999905 ] ] ], [ [ [ 127.790049675000091, -5.409600518999923 ], [ 127.79851321700005, -5.400160414999959 ], [ 127.803396030000044, -5.407647393999923 ], [ 127.790049675000091, -5.409600518999923 ] ] ], [ [ [ 127.776866082000083, -5.348809502999927 ], [ 127.779063347000033, -5.342868747999944 ], [ 127.785166863000086, -5.352959893999923 ], [ 127.776866082000083, -5.348809502999927 ] ] ], [ [ [ 131.986501498000052, -5.31764088299991 ], [ 131.997243686000047, -5.312432549999926 ], [ 132.008636915000011, -5.312758070999905 ], [ 132.016286655000044, -5.330824476999908 ], [ 132.000336134, -5.373223565999922 ], [ 131.992035352000016, -5.377373955999929 ], [ 131.985199415000011, -5.377862237999921 ], [ 131.980723504000025, -5.379652601999908 ], [ 131.975108269000089, -5.387465101999908 ], [ 131.965586785000028, -5.388767184999949 ], [ 131.959483269000089, -5.372979424999926 ], [ 131.962412957000083, -5.343519789999959 ], [ 131.977386915000011, -5.323337497999944 ], [ 131.986501498000052, -5.31764088299991 ] ] ], [ [ [ 129.757823113000086, -4.522556247999944 ], [ 129.762705925000091, -4.51881275799991 ], [ 129.778330925000091, -4.524509372999944 ], [ 129.770274285000028, -4.539320570999905 ], [ 129.757823113000086, -4.522556247999944 ] ] ], [ [ [ 134.72779381600003, -6.504571221999925 ], [ 134.730967644000089, -6.514336846999925 ], [ 134.734385613000086, -6.525811455999929 ], [ 134.729828321000014, -6.54615650799991 ], [ 134.715342644000089, -6.552992445999905 ], [ 134.702484571000014, -6.550957940999922 ], [ 134.693858269000089, -6.553480726999908 ], [ 134.688487175000091, -6.558526299999926 ], [ 134.674815300000091, -6.563083591999941 ], [ 134.656260613000086, -6.559014580999929 ], [ 134.64812259200005, -6.541924737999921 ], [ 134.644297722000033, -6.52076588299991 ], [ 134.635915561000047, -6.506280205999929 ], [ 134.626149936000047, -6.497165622999944 ], [ 134.623789910000028, -6.486097914999959 ], [ 134.631358269000089, -6.47584400799991 ], [ 134.644786004000025, -6.464450778999947 ], [ 134.663259311000047, -6.454847914999959 ], [ 134.684336785000028, -6.457777601999908 ], [ 134.704844597000033, -6.470472914999959 ], [ 134.719493035000028, -6.486260674999926 ], [ 134.72779381600003, -6.504571221999925 ] ] ], [ [ [ 134.212738477000016, -5.758721612999921 ], [ 134.225596550000091, -5.77117278399993 ], [ 134.228282097000033, -5.773370049999926 ], [ 134.22779381600003, -5.789320570999905 ], [ 134.22038821700005, -5.815606377999927 ], [ 134.206879102000016, -5.827325127999927 ], [ 134.19459069100003, -5.830173434999949 ], [ 134.180511915000011, -5.827325127999927 ], [ 134.169688347000033, -5.811130466999941 ], [ 134.167491082000083, -5.788995049999926 ], [ 134.169688347000033, -5.768324476999908 ], [ 134.177744988000086, -5.754489841999941 ], [ 134.192067905000044, -5.753024997999944 ], [ 134.200205925000091, -5.755303643999923 ], [ 134.204844597000033, -5.756117445999905 ], [ 134.212738477000016, -5.758721612999921 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-NB", "NAME_1": "Nusa Tenggara Barat" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.664317254000025, -8.14812590899993 ], [ 117.67310631600003, -8.154066664999959 ], [ 117.683360222000033, -8.158623955999929 ], [ 117.691742384, -8.164727471999925 ], [ 117.695323113000086, -8.175876559999949 ], [ 117.692556186000047, -8.183526299999926 ], [ 117.685394727000016, -8.189222914999959 ], [ 117.667328321000014, -8.199395440999922 ], [ 117.64031009200005, -8.224053643999923 ], [ 117.620616082000083, -8.25359465899993 ], [ 117.566579623000052, -8.363946221999925 ], [ 117.553721550000091, -8.379001559999949 ], [ 117.533946160000028, -8.384942315999922 ], [ 117.526133660000028, -8.381768487999921 ], [ 117.492523634, -8.36101653399993 ], [ 117.484873894000089, -8.350192966999941 ], [ 117.48560631600003, -8.34303150799991 ], [ 117.495941602000016, -8.32976653399993 ], [ 117.511241082000083, -8.295505466999941 ], [ 117.510752800000091, -8.281019789999959 ], [ 117.499766472000033, -8.265232028999947 ], [ 117.489756707000083, -8.257419528999947 ], [ 117.484629754000025, -8.255059502999927 ], [ 117.482676629000025, -8.250664971999925 ], [ 117.480479363000086, -8.209161065999922 ], [ 117.481618686000047, -8.19500090899993 ], [ 117.486827019000089, -8.18287525799991 ], [ 117.493907097000033, -8.176202080999929 ], [ 117.548350457000083, -8.149021091999941 ], [ 117.563487175000091, -8.145196221999925 ], [ 117.664317254000025, -8.14812590899993 ] ] ], [ [ [ 116.633311394000089, -8.27507903399993 ], [ 116.668223504000025, -8.289239190999922 ], [ 116.706228061000047, -8.317071221999925 ], [ 116.735118035000028, -8.352959893999923 ], [ 116.743174675000091, -8.391778252999927 ], [ 116.735118035000028, -8.408868096999925 ], [ 116.702159050000091, -8.457452080999929 ], [ 116.691661004000025, -8.467461846999925 ], [ 116.68523196700005, -8.480564059999949 ], [ 116.681000196000014, -8.55632903399993 ], [ 116.668793165000011, -8.573825778999947 ], [ 116.627777540000011, -8.614841403999947 ], [ 116.618988477000016, -8.634860934999949 ], [ 116.599528367000062, -8.666385866999917 ], [ 116.58161992600003, -8.697813045999908 ], [ 116.555304876000037, -8.74497247599993 ], [ 116.519403874000091, -8.77856350199994 ], [ 116.500437814000065, -8.802687801999923 ], [ 116.508311394000089, -8.832940362999921 ], [ 116.506114129000025, -8.847588799999926 ], [ 116.509125196000014, -8.858005466999941 ], [ 116.520030144000089, -8.859470309999949 ], [ 116.529154145, -8.842353687999946 ], [ 116.540796638000074, -8.836037974999954 ], [ 116.54718187800006, -8.84543317999993 ], [ 116.559906446000014, -8.848809502999927 ], [ 116.571787957000083, -8.858819268999923 ], [ 116.588877800000091, -8.863213799999926 ], [ 116.565368521000096, -8.895582838999928 ], [ 116.524046602, -8.902006540999935 ], [ 116.509176611000044, -8.896829057999923 ], [ 116.475596550000091, -8.920017184999949 ], [ 116.446610866000015, -8.920080377999909 ], [ 116.432788900000105, -8.910705027999938 ], [ 116.452904856000032, -8.886558814999944 ], [ 116.460260202000086, -8.864555973999927 ], [ 116.471879924000064, -8.839399234999917 ], [ 116.455577019000089, -8.83367278399993 ], [ 116.423115812000106, -8.83640640099992 ], [ 116.397699746000058, -8.855322488999946 ], [ 116.397727629000087, -8.882544563999943 ], [ 116.4020081970001, -8.916042998999956 ], [ 116.403086785000028, -8.954196872999944 ], [ 116.389170769000089, -8.949151299999926 ], [ 116.388194207000083, -8.937595309999949 ], [ 116.388682488000086, -8.92351653399993 ], [ 116.379567905000044, -8.911879164999959 ], [ 116.370127800000091, -8.911065362999921 ], [ 116.36060631600003, -8.924493096999925 ], [ 116.351410352000016, -8.926202080999929 ], [ 116.347422722000033, -8.921319268999923 ], [ 116.343109571000014, -8.912041924999926 ], [ 116.33716881600003, -8.903008721999925 ], [ 116.327891472000033, -8.898858330999929 ], [ 116.310069207000083, -8.902439059999949 ], [ 116.272308790000011, -8.91725025799991 ], [ 116.255218946000014, -8.920017184999949 ], [ 116.249359571000014, -8.917413018999923 ], [ 116.242686394000089, -8.90789153399993 ], [ 116.236094597000033, -8.905694268999923 ], [ 116.224864129000025, -8.907972914999959 ], [ 116.211924675000091, -8.917738539999959 ], [ 116.20476321700005, -8.920017184999949 ], [ 116.196462436000047, -8.914320570999905 ], [ 116.178477410000028, -8.887790622999944 ], [ 116.16724694100003, -8.878513278999947 ], [ 116.152354363000086, -8.875664971999925 ], [ 116.105723504000025, -8.87468840899993 ], [ 116.101328972000033, -8.888929945999905 ], [ 116.090668165000011, -8.895928643999923 ], [ 116.077159050000091, -8.894626559999949 ], [ 116.064219597000033, -8.883965752999927 ], [ 116.075531446000014, -8.879489841999941 ], [ 116.082530144000089, -8.87273528399993 ], [ 116.083750847000033, -8.865004164999959 ], [ 116.07781009200005, -8.858005466999941 ], [ 116.068614129000025, -8.855726820999905 ], [ 116.059255405000044, -8.858493747999944 ], [ 116.049815300000091, -8.862725518999923 ], [ 116.04029381600003, -8.864678643999923 ], [ 116.036143425000091, -8.870538018999923 ], [ 116.036875847000033, -8.883070570999905 ], [ 116.04029381600003, -8.902276299999926 ], [ 116.029958530000044, -8.908135674999926 ], [ 116.019297722000033, -8.908135674999926 ], [ 116.009532097000033, -8.904473565999922 ], [ 116.002126498000052, -8.898858330999929 ], [ 115.996429884, -8.889743747999944 ], [ 115.988536004000025, -8.867282809999949 ], [ 115.981618686000047, -8.858005466999941 ], [ 115.969248894000089, -8.849379164999959 ], [ 115.964366082000083, -8.850274346999925 ], [ 115.958750847000033, -8.855075778999947 ], [ 115.944346550000091, -8.858005466999941 ], [ 115.928233269000089, -8.854913018999923 ], [ 115.867442254000025, -8.821221612999921 ], [ 115.839261841000052, -8.816856514999927 ], [ 115.828637807000064, -8.791785517999926 ], [ 115.830696474000092, -8.769811756999957 ], [ 115.833821339, -8.748873542999945 ], [ 115.848591645000056, -8.724792571999956 ], [ 115.868907097000033, -8.730645440999922 ], [ 115.879405144000089, -8.724786065999922 ], [ 115.88445071700005, -8.732842705999929 ], [ 115.887461785000028, -8.74578215899993 ], [ 115.89226321700005, -8.754815362999921 ], [ 115.918464092000022, -8.753740461999939 ], [ 115.941759436000098, -8.754876932999935 ], [ 115.9544494700001, -8.753719628999932 ], [ 115.968202922000046, -8.747449558999961 ], [ 115.983025896000072, -8.737059159999944 ], [ 115.993011915000011, -8.742364190999922 ], [ 116.002614780000044, -8.742771091999941 ], [ 116.013845248000052, -8.746677341999941 ], [ 116.023203972000033, -8.748142184999949 ], [ 116.027842644000089, -8.744724216999941 ], [ 116.033702019000089, -8.738864841999941 ], [ 116.041188998000052, -8.734144789999959 ], [ 116.050547722000033, -8.734470309999949 ], [ 116.053233269000089, -8.73951588299991 ], [ 116.057465040000011, -8.749932549999926 ], [ 116.065669987000092, -8.759974082999918 ], [ 116.077280050000013, -8.743198231999941 ], [ 116.08757571700005, -8.737237237999921 ], [ 116.09148196700005, -8.726983330999929 ], [ 116.060271079000017, -8.713907240999959 ], [ 116.063348531000088, -8.673058821999916 ], [ 116.07067293, -8.638494197999933 ], [ 116.072644525000101, -8.577783690999922 ], [ 116.062994082000046, -8.521300971999949 ], [ 116.038591481000026, -8.500403088999917 ], [ 116.027936756000031, -8.445007651999958 ], [ 116.050046746000021, -8.414638435999905 ], [ 116.069088238000063, -8.406236988999922 ], [ 116.097911004000025, -8.408461195999905 ], [ 116.105723504000025, -8.405450127999927 ], [ 116.11060631600003, -8.399183851999908 ], [ 116.117198113000086, -8.382012627999927 ], [ 116.122813347000033, -8.374444268999923 ], [ 116.138438347000033, -8.36296965899993 ], [ 116.167979363000086, -8.34693775799991 ], [ 116.18091881600003, -8.33717213299991 ], [ 116.269704623000052, -8.24773528399993 ], [ 116.28638756600003, -8.236260674999926 ], [ 116.37623131600003, -8.201836846999925 ], [ 116.39380944100003, -8.201104424999926 ], [ 116.424652540000011, -8.217705987999921 ], [ 116.497406446000014, -8.237399997999944 ], [ 116.539073113000086, -8.24382903399993 ], [ 116.554453972000033, -8.25123463299991 ], [ 116.573008660000028, -8.264092705999929 ], [ 116.590993686000047, -8.269707940999922 ], [ 116.633311394000089, -8.27507903399993 ] ] ], [ [ [ 119.086436394000089, -8.131524346999925 ], [ 119.113047722000033, -8.146661065999922 ], [ 119.131521030000044, -8.166273695999905 ], [ 119.137461785000028, -8.190606377999927 ], [ 119.127207879000025, -8.220472914999959 ], [ 119.116547071000014, -8.23560963299991 ], [ 119.100352410000028, -8.251560153999947 ], [ 119.078786655000044, -8.262139580999929 ], [ 119.051524285000028, -8.26140715899993 ], [ 119.022797071000014, -8.234307549999926 ], [ 119.020274285000028, -8.189711195999905 ], [ 119.042002800000091, -8.148532809999949 ], [ 119.086436394000089, -8.131524346999925 ] ] ], [ [ [ 119.203623894000089, -8.610935153999947 ], [ 119.199229363000086, -8.612399997999944 ], [ 119.193125847000033, -8.615980726999908 ], [ 119.189300977000016, -8.617771091999941 ], [ 119.194346550000091, -8.626071872999944 ], [ 119.189463738000086, -8.631280205999929 ], [ 119.18091881600003, -8.636488539999959 ], [ 119.174978061000047, -8.645114841999941 ], [ 119.174082879000025, -8.659926039999959 ], [ 119.17701256600003, -8.674493096999925 ], [ 119.182465040000011, -8.688164971999925 ], [ 119.189300977000016, -8.700290622999944 ], [ 119.181000196000014, -8.703383070999905 ], [ 119.177744988000086, -8.706801039999959 ], [ 119.178233269000089, -8.712090752999927 ], [ 119.181813998000052, -8.720798434999949 ], [ 119.164561394000089, -8.731540622999944 ], [ 119.15162194100003, -8.742364190999922 ], [ 119.138438347000033, -8.74578215899993 ], [ 119.12037194100003, -8.734470309999949 ], [ 119.116709832000083, -8.747816664999959 ], [ 119.110036655000044, -8.75359465899993 ], [ 119.100596550000091, -8.752129815999922 ], [ 119.089691602000016, -8.744317315999922 ], [ 119.077891472000033, -8.739353122999944 ], [ 119.065440300000091, -8.741143487999921 ], [ 119.052989129000025, -8.745538018999923 ], [ 118.991547071000014, -8.755059502999927 ], [ 118.971853061000047, -8.751153252999927 ], [ 118.945974155000044, -8.730645440999922 ], [ 118.923594597000033, -8.69850025799991 ], [ 118.915537957000083, -8.692152601999908 ], [ 118.898448113000086, -8.688409112999921 ], [ 118.891937696000014, -8.693454684999949 ], [ 118.888519727000016, -8.703301690999922 ], [ 118.880869988000086, -8.713962497999944 ], [ 118.85710696700005, -8.721774997999944 ], [ 118.813324415000011, -8.71021900799991 ], [ 118.791351759, -8.720798434999949 ], [ 118.765147332000083, -8.710870049999926 ], [ 118.746429884, -8.717868747999944 ], [ 118.72779381600003, -8.733168226999908 ], [ 118.701996290000011, -8.748142184999949 ], [ 118.711924675000091, -8.754815362999921 ], [ 118.726573113000086, -8.769789320999905 ], [ 118.736175977000016, -8.77467213299991 ], [ 118.746592644000089, -8.776299737999921 ], [ 118.825694207000083, -8.776543877999927 ], [ 118.907237175000091, -8.789727471999925 ], [ 118.926931186000047, -8.79656340899993 ], [ 118.935394727000016, -8.806084893999923 ], [ 118.937754754000025, -8.812269789999959 ], [ 118.947520379000025, -8.825372002999927 ], [ 118.949717644000089, -8.83367278399993 ], [ 118.94459069100003, -8.84148528399993 ], [ 118.932465040000011, -8.846449476999908 ], [ 118.908050977000016, -8.850518487999921 ], [ 118.896820509, -8.849786065999922 ], [ 118.876963738000086, -8.84539153399993 ], [ 118.867198113000086, -8.844333591999941 ], [ 118.851735873000052, -8.838148695999905 ], [ 118.845957879000025, -8.836846612999921 ], [ 118.846690300000091, -8.83912525799991 ], [ 118.842295769000089, -8.843926690999922 ], [ 118.83562259200005, -8.848402601999908 ], [ 118.829274936000047, -8.850518487999921 ], [ 118.81763756600003, -8.843519789999959 ], [ 118.777354363000086, -8.811618747999944 ], [ 118.757334832000083, -8.80201588299991 ], [ 118.714040561000047, -8.799981377999927 ], [ 118.668955925000091, -8.806898695999905 ], [ 118.465017123000052, -8.865004164999959 ], [ 118.414235873000052, -8.853610934999949 ], [ 118.387380405000044, -8.795830987999921 ], [ 118.391123894000089, -8.770196221999925 ], [ 118.405039910000028, -8.750420830999929 ], [ 118.422129754000025, -8.731052341999941 ], [ 118.43523196700005, -8.706475518999923 ], [ 118.43873131600003, -8.690036716999941 ], [ 118.439707879000025, -8.674574476999908 ], [ 118.438324415000011, -8.659763278999947 ], [ 118.43523196700005, -8.645114841999941 ], [ 118.428558790000011, -8.629815362999921 ], [ 118.420420769000089, -8.615655205999929 ], [ 118.414561394000089, -8.600518487999921 ], [ 118.414724155000044, -8.582940362999921 ], [ 118.400401238000086, -8.596123955999929 ], [ 118.396983269000089, -8.617933851999908 ], [ 118.401133660000028, -8.662367445999905 ], [ 118.393565300000091, -8.674574476999908 ], [ 118.37623131600003, -8.680759372999944 ], [ 118.355642123000052, -8.684991143999923 ], [ 118.339040561000047, -8.692152601999908 ], [ 118.312266472000033, -8.726983330999929 ], [ 118.299327019000089, -8.757907809999949 ], [ 118.294932488000086, -8.765232028999947 ], [ 118.286631707000083, -8.770440362999921 ], [ 118.274912957000083, -8.772149346999925 ], [ 118.157725457000083, -8.867852471999925 ], [ 118.14031009200005, -8.872247002999927 ], [ 118.119476759, -8.86296965899993 ], [ 118.097992384, -8.850274346999925 ], [ 118.078868035000028, -8.844333591999941 ], [ 118.070160352000016, -8.846286716999941 ], [ 118.037282748000052, -8.858005466999941 ], [ 118.038584832000083, -8.856052341999941 ], [ 118.035166863000086, -8.853122653999947 ], [ 118.029551629000025, -8.85084400799991 ], [ 118.024180535000028, -8.850518487999921 ], [ 118.016774936000047, -8.86256275799991 ], [ 118.008474155000044, -8.867771091999941 ], [ 117.998383009, -8.880954684999949 ], [ 117.890472852000016, -8.93678150799991 ], [ 117.88013756600003, -8.928317966999941 ], [ 117.872894727000016, -8.927829684999949 ], [ 117.866221550000091, -8.93092213299991 ], [ 117.85670006600003, -8.933038018999923 ], [ 117.853037957000083, -8.929131768999923 ], [ 117.84498131600003, -8.910902601999908 ], [ 117.839366082000083, -8.905694268999923 ], [ 117.82545006600003, -8.905450127999927 ], [ 117.81763756600003, -8.911228122999944 ], [ 117.812022332000083, -8.91920338299991 ], [ 117.805186394000089, -8.926202080999929 ], [ 117.795583530000044, -8.930759372999944 ], [ 117.787933790000011, -8.932793877999927 ], [ 117.774424675000091, -8.933038018999923 ], [ 117.767588738000086, -8.931247653999947 ], [ 117.757172071000014, -8.926527601999908 ], [ 117.747813347000033, -8.920993747999944 ], [ 117.737803582000083, -8.909763278999947 ], [ 117.725108269000089, -8.912041924999926 ], [ 117.712901238000086, -8.917413018999923 ], [ 117.708994988000086, -8.920017184999949 ], [ 117.66765384200005, -8.937107028999947 ], [ 117.558116082000083, -9.001885674999926 ], [ 117.518077019000089, -9.017836195999905 ], [ 117.47388756600003, -9.029961846999925 ], [ 117.388867748000052, -9.053738711999927 ], [ 117.334132038, -9.059354224999936 ], [ 117.300507925000034, -9.047070401999918 ], [ 117.273858389, -9.040239581999913 ], [ 117.226145433000056, -9.023780684999906 ], [ 117.192405612000016, -9.023726812999939 ], [ 117.171445753000057, -9.032049267999923 ], [ 117.15346468000007, -9.061166275999938 ], [ 117.140968937000025, -9.076417890999949 ], [ 117.126800977000016, -9.091241143999923 ], [ 117.071299675000091, -9.101739190999922 ], [ 117.009735615000068, -9.10729288899995 ], [ 116.991421396000078, -9.085126613999932 ], [ 116.970390346000045, -9.07133469899992 ], [ 116.949229363000086, -9.060153903999947 ], [ 116.928233269000089, -9.063897393999923 ], [ 116.906423373000052, -9.063409112999921 ], [ 116.850271030000044, -9.045342705999929 ], [ 116.828298373000052, -9.042901299999926 ], [ 116.806162957000083, -9.036309502999927 ], [ 116.773936394000089, -9.012790622999944 ], [ 116.763031446000014, -9.015557549999926 ], [ 116.758555535000028, -9.004571221999925 ], [ 116.74537194100003, -8.983086846999925 ], [ 116.728451662, -8.963095719999956 ], [ 116.731199757000013, -8.946521530999917 ], [ 116.747906518000036, -8.92292800499996 ], [ 116.740867806000097, -8.905055321999953 ], [ 116.736612599000068, -8.883020736999924 ], [ 116.735179826000035, -8.873397366999939 ], [ 116.758839454000054, -8.849859070999912 ], [ 116.776908555000091, -8.826346783999952 ], [ 116.817149285000028, -8.818129164999959 ], [ 116.824473504000025, -8.799004815999922 ], [ 116.821299675000091, -8.787286065999922 ], [ 116.814463738000086, -8.780043226999908 ], [ 116.807627800000091, -8.775485934999949 ], [ 116.804535352000016, -8.771661065999922 ], [ 116.802500847000033, -8.764580987999921 ], [ 116.797373894000089, -8.754571221999925 ], [ 116.79070071700005, -8.74537525799991 ], [ 116.771078158000023, -8.74781528199992 ], [ 116.764074713000014, -8.738189313999953 ], [ 116.772342986000012, -8.705071437999948 ], [ 116.772267363000083, -8.680257197999936 ], [ 116.74851672300008, -8.666544377999912 ], [ 116.790091493000091, -8.583704495999939 ], [ 116.832041863000086, -8.574802341999941 ], [ 116.839366082000083, -8.554864190999922 ], [ 116.838145379000025, -8.507907809999949 ], [ 116.857269727000016, -8.524021091999941 ], [ 116.865896030000044, -8.527601820999905 ], [ 116.879649285000028, -8.528252862999921 ], [ 116.890391472000033, -8.526299737999921 ], [ 116.984548373000052, -8.49578215899993 ], [ 117.031993035000028, -8.468357028999947 ], [ 117.090179884, -8.425225518999923 ], [ 117.126149936000047, -8.405450127999927 ], [ 117.117686394000089, -8.383477471999925 ], [ 117.140472852000016, -8.372002862999921 ], [ 117.17351321700005, -8.365166924999926 ], [ 117.195078972000033, -8.357598565999922 ], [ 117.215586785000028, -8.384942315999922 ], [ 117.229014519000089, -8.388116143999923 ], [ 117.261973504000025, -8.39031340899993 ], [ 117.273773634, -8.395196221999925 ], [ 117.287364129000025, -8.404961846999925 ], [ 117.31609134200005, -8.419691664999959 ], [ 117.35320071700005, -8.446709893999923 ], [ 117.433929884, -8.481133721999925 ], [ 117.427744988000086, -8.465264580999929 ], [ 117.431162957000083, -8.453301690999922 ], [ 117.437754754000025, -8.442315362999921 ], [ 117.441416863000086, -8.42937590899993 ], [ 117.442718946000014, -8.410739841999941 ], [ 117.447276238000086, -8.408623955999929 ], [ 117.455739780000044, -8.414239190999922 ], [ 117.468760613000086, -8.419122002999927 ], [ 117.519704623000052, -8.418715101999908 ], [ 117.544118686000047, -8.414239190999922 ], [ 117.558116082000083, -8.405450127999927 ], [ 117.567881707000083, -8.422295830999929 ], [ 117.576914910000028, -8.487074476999908 ], [ 117.592295769000089, -8.514743747999944 ], [ 117.598155144000089, -8.493910414999959 ], [ 117.599945509, -8.446058851999908 ], [ 117.612803582000083, -8.432793877999927 ], [ 117.623301629000025, -8.438409112999921 ], [ 117.629079623000052, -8.457452080999929 ], [ 117.635508660000028, -8.524997653999947 ], [ 117.639659050000091, -8.540622653999947 ], [ 117.649099155000044, -8.551853122999944 ], [ 117.698741082000083, -8.576755466999941 ], [ 117.711110873000052, -8.57390715899993 ], [ 117.720876498000052, -8.568536065999922 ], [ 117.730723504000025, -8.565362237999921 ], [ 117.74382571700005, -8.569268487999921 ], [ 117.739431186000047, -8.576267184999949 ], [ 117.736338738000086, -8.582940362999921 ], [ 117.747569207000083, -8.585707289999959 ], [ 117.756195509, -8.58953215899993 ], [ 117.763682488000086, -8.595310153999947 ], [ 117.771657748000052, -8.604099216999941 ], [ 117.768890821000014, -8.60711028399993 ], [ 117.764659050000091, -8.614190362999921 ], [ 117.764659050000091, -8.621270440999922 ], [ 117.774424675000091, -8.624607028999947 ], [ 117.782074415000011, -8.625258070999905 ], [ 117.786306186000047, -8.627699476999908 ], [ 117.78874759200005, -8.631931247999944 ], [ 117.791514519000089, -8.638116143999923 ], [ 117.780772332000083, -8.637627862999921 ], [ 117.771494988000086, -8.638604424999926 ], [ 117.763682488000086, -8.641045830999929 ], [ 117.757334832000083, -8.645114841999941 ], [ 117.76531009200005, -8.659926039999959 ], [ 117.778330925000091, -8.695977471999925 ], [ 117.787852410000028, -8.71021900799991 ], [ 117.805186394000089, -8.71998463299991 ], [ 117.82349694100003, -8.719333591999941 ], [ 117.886566602000016, -8.699476820999905 ], [ 117.893890821000014, -8.700290622999944 ], [ 117.90007571700005, -8.70671965899993 ], [ 117.902354363000086, -8.715590101999908 ], [ 117.903086785000028, -8.723565362999921 ], [ 117.904470248000052, -8.726983330999929 ], [ 117.916840040000011, -8.727308851999908 ], [ 117.934255405000044, -8.72975025799991 ], [ 117.952891472000033, -8.73601653399993 ], [ 117.969004754000025, -8.748142184999949 ], [ 117.988617384, -8.732354424999926 ], [ 118.030284050000091, -8.688246351999908 ], [ 118.047862175000091, -8.679131768999923 ], [ 118.048594597000033, -8.675957940999922 ], [ 118.054860873000052, -8.66920338299991 ], [ 118.061859571000014, -8.66334400799991 ], [ 118.065277540000011, -8.662367445999905 ], [ 118.068125847000033, -8.65593840899993 ], [ 118.074961785000028, -8.653741143999923 ], [ 118.083750847000033, -8.653252862999921 ], [ 118.122813347000033, -8.64576588299991 ], [ 118.157725457000083, -8.645114841999941 ], [ 118.165782097000033, -8.647230726999908 ], [ 118.183767123000052, -8.656508070999905 ], [ 118.191905144000089, -8.658786716999941 ], [ 118.246104363000086, -8.657159112999921 ], [ 118.265635613000086, -8.65203215899993 ], [ 118.281748894000089, -8.641534112999921 ], [ 118.291270379000025, -8.624607028999947 ], [ 118.290863477000016, -8.605889580999929 ], [ 118.28288821700005, -8.587985934999949 ], [ 118.269541863000086, -8.574476820999905 ], [ 118.25359134200005, -8.569268487999921 ], [ 118.250254754000025, -8.564548434999949 ], [ 118.24187259200005, -8.555108330999929 ], [ 118.233164910000028, -8.54851653399993 ], [ 118.229177280000044, -8.552504164999959 ], [ 118.227061394000089, -8.558363539999959 ], [ 118.22234134200005, -8.564873955999929 ], [ 118.209239129000025, -8.576755466999941 ], [ 118.192881707000083, -8.549493096999925 ], [ 118.148936394000089, -8.512139580999929 ], [ 118.133555535000028, -8.486748955999929 ], [ 118.126719597000033, -8.486748955999929 ], [ 118.117198113000086, -8.496514580999929 ], [ 118.103282097000033, -8.488376559999949 ], [ 118.07545006600003, -8.456963799999926 ], [ 118.057465040000011, -8.450616143999923 ], [ 118.03638756600003, -8.457289320999905 ], [ 118.00318444100003, -8.473728122999944 ], [ 117.988454623000052, -8.46998463299991 ], [ 117.970225457000083, -8.461358330999929 ], [ 117.954925977000016, -8.451267184999949 ], [ 117.939952019000089, -8.432793877999927 ], [ 117.881521030000044, -8.398614190999922 ], [ 117.822520379000025, -8.354180596999925 ], [ 117.810069207000083, -8.340020440999922 ], [ 117.786631707000083, -8.305596612999921 ], [ 117.771657748000052, -8.28875090899993 ], [ 117.74382571700005, -8.26881275799991 ], [ 117.730804884, -8.252699476999908 ], [ 117.722178582000083, -8.244561455999929 ], [ 117.712250196000014, -8.240899346999925 ], [ 117.70630944100003, -8.229668877999927 ], [ 117.711110873000052, -8.203871351999908 ], [ 117.720713738000086, -8.176202080999929 ], [ 117.729502800000091, -8.158949476999908 ], [ 117.740977410000028, -8.147881768999923 ], [ 117.74968509200005, -8.144952080999929 ], [ 117.756846550000091, -8.145603122999944 ], [ 117.763519727000016, -8.144789320999905 ], [ 117.789805535000028, -8.127373955999929 ], [ 117.794932488000086, -8.124932549999926 ], [ 117.812510613000086, -8.121840101999908 ], [ 117.895274285000028, -8.090020440999922 ], [ 117.917816602000016, -8.085870049999926 ], [ 117.958750847000033, -8.08326588299991 ], [ 117.965586785000028, -8.088962497999944 ], [ 117.971202019000089, -8.100355726999908 ], [ 117.977549675000091, -8.109144789999959 ], [ 117.986094597000033, -8.107191664999959 ], [ 117.996104363000086, -8.100681247999944 ], [ 118.005056186000047, -8.100192966999941 ], [ 118.024180535000028, -8.103773695999905 ], [ 118.07154381600003, -8.105401299999926 ], [ 118.115244988000086, -8.113864841999941 ], [ 118.14966881600003, -8.13445403399993 ], [ 118.168223504000025, -8.172621351999908 ], [ 118.172699415000011, -8.213148695999905 ], [ 118.177256707000083, -8.232679945999905 ], [ 118.185069207000083, -8.240899346999925 ], [ 118.18913821700005, -8.248223565999922 ], [ 118.222911004000025, -8.28875090899993 ], [ 118.243907097000033, -8.328708591999941 ], [ 118.25359134200005, -8.340264580999929 ], [ 118.259532097000033, -8.342868747999944 ], [ 118.264170769000089, -8.340997002999927 ], [ 118.268077019000089, -8.338067315999922 ], [ 118.270681186000047, -8.33717213299991 ], [ 118.30396569100003, -8.368259372999944 ], [ 118.312266472000033, -8.371270440999922 ], [ 118.32781009200005, -8.367608330999929 ], [ 118.347015821000014, -8.357354424999926 ], [ 118.365244988000086, -8.344659112999921 ], [ 118.391612175000091, -8.318454684999949 ], [ 118.398285352000016, -8.309014580999929 ], [ 118.401133660000028, -8.299248955999929 ], [ 118.406423373000052, -8.295586846999925 ], [ 118.418142123000052, -8.290134372999944 ], [ 118.429860873000052, -8.28248463299991 ], [ 118.443614129000025, -8.257907809999949 ], [ 118.463389519000089, -8.249444268999923 ], [ 118.486094597000033, -8.246189059999949 ], [ 118.503428582000083, -8.24773528399993 ], [ 118.513194207000083, -8.25318775799991 ], [ 118.529551629000025, -8.266289971999925 ], [ 118.541026238000086, -8.26881275799991 ], [ 118.582286004000025, -8.26881275799991 ], [ 118.590179884, -8.270684502999927 ], [ 118.596446160000028, -8.27467213299991 ], [ 118.601735873000052, -8.279066664999959 ], [ 118.606455925000091, -8.281914971999925 ], [ 118.639414910000028, -8.286309502999927 ], [ 118.647471550000091, -8.28875090899993 ], [ 118.66374759200005, -8.305759372999944 ], [ 118.695811394000089, -8.371270440999922 ], [ 118.68913821700005, -8.387872002999927 ], [ 118.684743686000047, -8.412692966999941 ], [ 118.681488477000016, -8.456963799999926 ], [ 118.656504754000025, -8.526462497999944 ], [ 118.654307488000086, -8.542087497999944 ], [ 118.667328321000014, -8.547295830999929 ], [ 118.683116082000083, -8.533461195999905 ], [ 118.696462436000047, -8.514580987999921 ], [ 118.701996290000011, -8.504489841999941 ], [ 118.704274936000047, -8.497002862999921 ], [ 118.715179884, -8.471449476999908 ], [ 118.726898634, -8.451836846999925 ], [ 118.72584069100003, -8.441989841999941 ], [ 118.720957879000025, -8.432061455999929 ], [ 118.716319207000083, -8.419122002999927 ], [ 118.716970248000052, -8.379571221999925 ], [ 118.731455925000091, -8.34929778399993 ], [ 118.753916863000086, -8.326429945999905 ], [ 118.777842644000089, -8.309258721999925 ], [ 118.812673373000052, -8.295586846999925 ], [ 118.859222852000016, -8.288832289999959 ], [ 118.908050977000016, -8.288832289999959 ], [ 118.949717644000089, -8.295586846999925 ], [ 118.972504102000016, -8.30201588299991 ], [ 118.988291863000086, -8.309014580999929 ], [ 118.998301629000025, -8.321221612999921 ], [ 119.004405144000089, -8.343357028999947 ], [ 119.007334832000083, -8.372002862999921 ], [ 119.021657748000052, -8.419528903999947 ], [ 119.051117384, -8.470472914999959 ], [ 119.045583530000044, -8.508965752999927 ], [ 119.03052819100003, -8.547784112999921 ], [ 119.038422071000014, -8.582940362999921 ], [ 119.03834069100003, -8.607679945999905 ], [ 119.041514519000089, -8.629815362999921 ], [ 119.052256707000083, -8.645684502999927 ], [ 119.075694207000083, -8.651950778999947 ], [ 119.090505405000044, -8.649102471999925 ], [ 119.110850457000083, -8.64226653399993 ], [ 119.13013756600003, -8.633396091999941 ], [ 119.140879754000025, -8.624607028999947 ], [ 119.140391472000033, -8.615329684999949 ], [ 119.135427280000044, -8.606215101999908 ], [ 119.133962436000047, -8.599379164999959 ], [ 119.154551629000025, -8.594414971999925 ], [ 119.159678582000083, -8.588067315999922 ], [ 119.16138756600003, -8.578383070999905 ], [ 119.16138756600003, -8.565850518999923 ], [ 119.167328321000014, -8.559747002999927 ], [ 119.18091881600003, -8.573011976999908 ], [ 119.195078972000033, -8.594008070999905 ], [ 119.203623894000089, -8.610935153999947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-SN", "NAME_1": "Sulawesi Selatan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.960459832000083, -7.281996351999908 ], [ 121.019867384, -7.280368747999944 ], [ 121.049978061000047, -7.285821221999925 ], [ 121.066905144000089, -7.302504164999959 ], [ 121.056895379000025, -7.321058851999908 ], [ 121.025645379000025, -7.331638278999947 ], [ 120.992686394000089, -7.333591403999947 ], [ 120.977386915000011, -7.326348565999922 ], [ 120.963877800000091, -7.313897393999923 ], [ 120.900401238000086, -7.303887627999927 ], [ 120.881358269000089, -7.295017184999949 ], [ 120.864105665000011, -7.301934502999927 ], [ 120.840179884, -7.304457289999959 ], [ 120.816254102000016, -7.30242278399993 ], [ 120.799327019000089, -7.295017184999949 ], [ 120.793955925000091, -7.287692966999941 ], [ 120.792328321000014, -7.279473565999922 ], [ 120.794281446000014, -7.27117278399993 ], [ 120.799652540000011, -7.263848565999922 ], [ 120.81568444100003, -7.25750090899993 ], [ 120.834646030000044, -7.260511976999908 ], [ 120.871104363000086, -7.273532809999949 ], [ 120.960459832000083, -7.281996351999908 ] ] ], [ [ [ 120.757823113000086, -7.075941664999959 ], [ 120.772634311000047, -7.058851820999905 ], [ 120.781260613000086, -7.05592213299991 ], [ 120.785166863000086, -7.072442315999922 ], [ 120.783050977000016, -7.088636976999908 ], [ 120.773773634, -7.115817966999941 ], [ 120.771494988000086, -7.13054778399993 ], [ 120.742261451000104, -7.134935144999929 ], [ 120.70558207900001, -7.133380463999913 ], [ 120.683360222000033, -7.12428150799991 ], [ 120.681895379000025, -7.139418226999908 ], [ 120.67034946900003, -7.150959797999917 ], [ 120.633489112, -7.131528227999922 ], [ 120.620407369000077, -7.108675148999907 ], [ 120.624171241, -7.09396032099994 ], [ 120.59842208200007, -7.098033898999915 ], [ 120.580922905000079, -7.091815049999923 ], [ 120.562906203000011, -7.094537751999951 ], [ 120.556253064000089, -7.072889484999905 ], [ 120.565864106000049, -7.067054209999924 ], [ 120.591113029000098, -7.079589061999911 ], [ 120.613695122000081, -7.069816589999959 ], [ 120.619893631000082, -7.044242793999956 ], [ 120.615729176000059, -7.02256112799995 ], [ 120.621255662000067, -6.998245237999924 ], [ 120.635508660000028, -7.007012627999927 ], [ 120.653615204000062, -7.010104614999932 ], [ 120.677673562, -7.043671315999916 ], [ 120.730235222000033, -7.067152601999908 ], [ 120.744965040000011, -7.074151299999926 ], [ 120.757823113000086, -7.075941664999959 ] ] ], [ [ [ 121.086369028420592, -2.910177633995616 ], [ 121.087250196000014, -2.904554945999962 ], [ 121.08171634200005, -2.87232838299991 ], [ 121.070811394000089, -2.851006768999923 ], [ 121.059336785000028, -2.862074476999908 ], [ 121.053233269000089, -2.862074476999908 ], [ 121.04810631600003, -2.85125090899993 ], [ 121.041026238000086, -2.824395440999922 ], [ 121.032725457000083, -2.814222914999959 ], [ 121.024424675000091, -2.822686455999929 ], [ 121.016774936000047, -2.842868747999944 ], [ 121.011729363000086, -2.848402601999908 ], [ 121.001719597000033, -2.848077080999929 ], [ 120.993011915000011, -2.841729424999926 ], [ 120.986827019000089, -2.832614841999941 ], [ 120.984385613000086, -2.82390715899993 ], [ 120.990733269000089, -2.811618747999944 ], [ 121.004893425000091, -2.808363539999959 ], [ 121.018890821000014, -2.801853122999944 ], [ 121.025238477000016, -2.778903903999947 ], [ 121.041677280000044, -2.783868096999925 ], [ 121.052500847000033, -2.777601820999962 ], [ 121.066905144000089, -2.752211195999962 ], [ 121.070648634, -2.755303643999923 ], [ 121.073741082000083, -2.756605726999908 ], [ 121.076833530000044, -2.757419528999947 ], [ 121.080414259, -2.75904713299991 ], [ 121.048187696000014, -2.698988539999959 ], [ 121.035899285000028, -2.690118096999925 ], [ 121.036468946000014, -2.686455987999921 ], [ 121.029307488000086, -2.678399346999925 ], [ 121.015391472000033, -2.665948174999926 ], [ 121.005869988000086, -2.660821221999925 ], [ 120.885020379000025, -2.642347914999959 ], [ 120.872406446000014, -2.644138278999947 ], [ 120.86255944100003, -2.646661065999922 ], [ 120.853770379000025, -2.64617278399993 ], [ 120.843760613000086, -2.638604424999926 ], [ 120.832774285000028, -2.627862237999921 ], [ 120.82349694100003, -2.621514580999929 ], [ 120.813243035000028, -2.617933851999908 ], [ 120.799327019000089, -2.615004164999959 ], [ 120.776052280000044, -2.61492278399993 ], [ 120.76099694100003, -2.622002862999921 ], [ 120.748708530000044, -2.630629164999959 ], [ 120.733897332000083, -2.634942315999922 ], [ 120.71257571700005, -2.636895440999922 ], [ 120.696299675000091, -2.642185153999947 ], [ 120.642100457000083, -2.670342705999929 ], [ 120.626719597000033, -2.674737237999921 ], [ 120.604502800000091, -2.676446221999925 ], [ 120.584483269000089, -2.682061455999929 ], [ 120.574717644000089, -2.695977471999925 ], [ 120.568695509, -2.713799737999921 ], [ 120.55982506600003, -2.731133721999925 ], [ 120.542979363000086, -2.747247002999927 ], [ 120.29224694100003, -2.903008721999925 ], [ 120.252940300000091, -2.936455987999921 ], [ 120.231618686000047, -2.950372002999927 ], [ 120.203461134, -2.957696221999925 ], [ 120.208994988000086, -2.97039153399993 ], [ 120.226410352000016, -2.988051039999959 ], [ 120.230235222000033, -3.001722914999959 ], [ 120.231211785000028, -3.014336846999925 ], [ 120.234385613000086, -3.026543877999927 ], [ 120.240000847000033, -3.035902601999908 ], [ 120.247813347000033, -3.039646091999941 ], [ 120.26140384200005, -3.050388278999947 ], [ 120.275401238000086, -3.102715752999927 ], [ 120.285411004000025, -3.122165622999944 ], [ 120.278656446000014, -3.125258070999962 ], [ 120.274261915000011, -3.129489841999941 ], [ 120.264333530000044, -3.142022393999923 ], [ 120.285329623000052, -3.162530205999929 ], [ 120.306813998000052, -3.17351653399993 ], [ 120.353770379000025, -3.190362237999921 ], [ 120.383067254000025, -3.209079684999949 ], [ 120.387868686000047, -3.214613539999959 ], [ 120.389414910000028, -3.223321221999925 ], [ 120.393890821000014, -3.237237237999921 ], [ 120.400401238000086, -3.250909112999921 ], [ 120.408213738000086, -3.259372653999947 ], [ 120.425791863000086, -3.256117445999962 ], [ 120.42156009200005, -3.267510674999926 ], [ 120.409190300000091, -3.284112237999921 ], [ 120.402110222000033, -3.296807549999926 ], [ 120.40398196700005, -3.307224216999941 ], [ 120.406993035000028, -3.318454684999949 ], [ 120.408539259, -3.329034112999921 ], [ 120.402842644000089, -3.345635674999926 ], [ 120.395274285000028, -3.382256768999923 ], [ 120.39771569100003, -3.392185153999947 ], [ 120.406260613000086, -3.412367445999962 ], [ 120.408213738000086, -3.423760674999926 ], [ 120.407725457000083, -3.433363539999959 ], [ 120.403168165000011, -3.449639580999929 ], [ 120.398936394000089, -3.500909112999921 ], [ 120.400157097000033, -3.517836195999905 ], [ 120.417816602000016, -3.563571872999944 ], [ 120.421885613000086, -3.582452080999929 ], [ 120.422048373000052, -3.666436455999929 ], [ 120.42505944100003, -3.673028252999927 ], [ 120.443695509, -3.69068775799991 ], [ 120.44654381600003, -3.728692315999922 ], [ 120.430023634, -3.766778252999927 ], [ 120.387868686000047, -3.827894789999959 ], [ 120.371429884, -3.860446872999944 ], [ 120.359711134, -3.89421965899993 ], [ 120.353526238000086, -3.930840752999927 ], [ 120.351898634, -4.100274346999925 ], [ 120.355642123000052, -4.11646900799991 ], [ 120.377207879000025, -4.152764580999929 ], [ 120.381358269000089, -4.16725025799991 ], [ 120.381602410000028, -4.207696221999925 ], [ 120.38054446700005, -4.217950127999927 ], [ 120.375254754000025, -4.237725518999923 ], [ 120.374196811000047, -4.24928150799991 ], [ 120.375824415000011, -4.263278903999947 ], [ 120.387868686000047, -4.294040622999944 ], [ 120.386241082000083, -4.329278252999927 ], [ 120.362315300000091, -4.386976820999905 ], [ 120.367360873000052, -4.424411716999941 ], [ 120.391774936000047, -4.452894789999959 ], [ 120.402598504000025, -4.472100518999923 ], [ 120.398692254000025, -4.489190362999921 ], [ 120.392751498000052, -4.506280205999929 ], [ 120.393077019000089, -4.531670830999929 ], [ 120.397146030000044, -4.557224216999941 ], [ 120.402110222000033, -4.574476820999905 ], [ 120.414235873000052, -4.592868747999944 ], [ 120.444102410000028, -4.62664153399993 ], [ 120.449961785000028, -4.646579684999949 ], [ 120.446625196000014, -4.656670830999929 ], [ 120.438487175000091, -4.665134372999944 ], [ 120.41920006600003, -4.680759372999944 ], [ 120.415863477000016, -4.688897393999923 ], [ 120.39616946700005, -4.787204684999949 ], [ 120.395274285000028, -4.810967705999929 ], [ 120.386566602000016, -4.829278252999927 ], [ 120.366384311000047, -4.83562590899993 ], [ 120.34343509200005, -4.837497653999947 ], [ 120.326426629000025, -4.842054945999905 ], [ 120.309418165000011, -4.871270440999922 ], [ 120.306651238000086, -4.992852471999925 ], [ 120.284027540000011, -5.111586195999905 ], [ 120.275645379000025, -5.133884372999944 ], [ 120.264333530000044, -5.149997653999947 ], [ 120.306651238000086, -5.211358330999929 ], [ 120.314952019000089, -5.228936455999929 ], [ 120.328298373000052, -5.268731377999927 ], [ 120.336924675000091, -5.283786716999941 ], [ 120.381114129000025, -5.337334893999923 ], [ 120.387868686000047, -5.352227471999925 ], [ 120.388926629000025, -5.371677341999941 ], [ 120.432953321000014, -5.527601820999905 ], [ 120.436289910000028, -5.565199476999908 ], [ 120.440603061000047, -5.573988539999959 ], [ 120.459320509, -5.601983330999929 ], [ 120.463633660000028, -5.620212497999944 ], [ 120.458343946000014, -5.626071872999944 ], [ 120.430511915000011, -5.613946221999925 ], [ 120.416351759, -5.616794528999947 ], [ 120.379649285000028, -5.576348565999922 ], [ 120.374196811000047, -5.565199476999908 ], [ 120.371267123000052, -5.553887627999927 ], [ 120.354991082000083, -5.522393487999921 ], [ 120.347504102000016, -5.513604424999926 ], [ 120.323252800000091, -5.509535414999959 ], [ 120.297862175000091, -5.518975518999923 ], [ 120.273448113000086, -5.532403252999927 ], [ 120.251963738000086, -5.540948174999926 ], [ 120.20671634200005, -5.547784112999921 ], [ 120.199229363000086, -5.550551039999959 ], [ 120.175547722000033, -5.568942966999941 ], [ 120.156911655000044, -5.576836846999925 ], [ 120.118662957000083, -5.587985934999949 ], [ 120.100433790000011, -5.595635674999926 ], [ 120.094004754000025, -5.590752862999921 ], [ 120.087901238000086, -5.589288018999923 ], [ 120.073090040000011, -5.588799737999921 ], [ 120.010264519000089, -5.57781340899993 ], [ 119.998057488000086, -5.57195403399993 ], [ 119.986582879000025, -5.564222914999959 ], [ 119.960703972000033, -5.562595309999949 ], [ 119.932627800000091, -5.564711195999905 ], [ 119.914886915000011, -5.568942966999941 ], [ 119.899180535000028, -5.57935963299991 ], [ 119.857188347000033, -5.620212497999944 ], [ 119.85124759200005, -5.63054778399993 ], [ 119.848155144000089, -5.65203215899993 ], [ 119.843516472000033, -5.661065362999921 ], [ 119.82349694100003, -5.67937590899993 ], [ 119.805674675000091, -5.692478122999944 ], [ 119.772227410000028, -5.701267184999949 ], [ 119.723643425000091, -5.703789971999925 ], [ 119.676931186000047, -5.697035414999959 ], [ 119.647959832000083, -5.678806247999944 ], [ 119.644053582000083, -5.660088799999926 ], [ 119.642425977000016, -5.636976820999905 ], [ 119.63404381600003, -5.617445570999905 ], [ 119.609711134, -5.609144789999959 ], [ 119.590342644000089, -5.620538018999923 ], [ 119.579844597000033, -5.64226653399993 ], [ 119.56999759200005, -5.65593840899993 ], [ 119.55241946700005, -5.643324476999908 ], [ 119.547129754000025, -5.631768487999921 ], [ 119.547618035000028, -5.608168226999908 ], [ 119.545664910000028, -5.595635674999926 ], [ 119.53834069100003, -5.58521900799991 ], [ 119.52898196700005, -5.579685153999947 ], [ 119.52116946700005, -5.572523695999905 ], [ 119.517588738000086, -5.558038018999923 ], [ 119.502777540000011, -5.555840752999927 ], [ 119.474131707000083, -5.560804945999905 ], [ 119.455332879000025, -5.573825778999947 ], [ 119.469899936000047, -5.595635674999926 ], [ 119.448252800000091, -5.59498463299991 ], [ 119.43327884200005, -5.587823174999926 ], [ 119.424815300000091, -5.573337497999944 ], [ 119.422129754000025, -5.551202080999929 ], [ 119.425954623000052, -5.541761976999908 ], [ 119.43327884200005, -5.532159112999921 ], [ 119.437510613000086, -5.521742445999905 ], [ 119.432383660000028, -5.510349216999941 ], [ 119.424815300000091, -5.50123463299991 ], [ 119.414724155000044, -5.482354424999926 ], [ 119.38013756600003, -5.434014580999929 ], [ 119.360362175000091, -5.396416924999926 ], [ 119.35279381600003, -5.355645440999922 ], [ 119.36060631600003, -5.307549737999921 ], [ 119.369639519000089, -5.276788018999923 ], [ 119.375254754000025, -5.211521091999941 ], [ 119.379893425000091, -5.191664320999905 ], [ 119.394704623000052, -5.156833591999941 ], [ 119.403656446000014, -5.124118747999944 ], [ 119.408457879000025, -5.115817966999941 ], [ 119.417002800000091, -5.109470309999949 ], [ 119.437347852000016, -5.098809502999927 ], [ 119.445974155000044, -5.092461846999925 ], [ 119.459971550000091, -5.07350025799991 ], [ 119.465668165000011, -5.055596612999921 ], [ 119.469899936000047, -5.020196221999925 ], [ 119.483246290000011, -4.986260674999926 ], [ 119.519786004000025, -4.916680596999925 ], [ 119.525157097000033, -4.883070570999905 ], [ 119.491221550000091, -4.754082940999922 ], [ 119.497080925000091, -4.717950127999927 ], [ 119.502126498000052, -4.713555596999925 ], [ 119.519053582000083, -4.703545830999929 ], [ 119.525157097000033, -4.698011976999908 ], [ 119.538828972000033, -4.666680596999925 ], [ 119.541840040000011, -4.652927341999941 ], [ 119.584971550000091, -4.579196872999944 ], [ 119.59107506600003, -4.56414153399993 ], [ 119.606211785000028, -4.420342705999929 ], [ 119.623301629000025, -4.352227471999925 ], [ 119.626800977000016, -4.314548434999949 ], [ 119.625824415000011, -4.304457289999959 ], [ 119.621592644000089, -4.286879164999959 ], [ 119.620616082000083, -4.27662525799991 ], [ 119.617523634, -4.265069268999923 ], [ 119.603363477000016, -4.25164153399993 ], [ 119.600108269000089, -4.242445570999905 ], [ 119.604502800000091, -4.222914320999905 ], [ 119.623301629000025, -4.183770440999922 ], [ 119.626800977000016, -4.163018487999921 ], [ 119.61841881600003, -4.121026299999926 ], [ 119.613536004000025, -4.11296965899993 ], [ 119.60865319100003, -4.107679945999905 ], [ 119.606293165000011, -4.104668877999927 ], [ 119.608164910000028, -4.093194268999923 ], [ 119.617198113000086, -4.076755466999941 ], [ 119.620616082000083, -4.066827080999929 ], [ 119.621104363000086, -4.057061455999929 ], [ 119.61841881600003, -4.038506768999923 ], [ 119.620616082000083, -4.026462497999944 ], [ 119.643077019000089, -3.992771091999941 ], [ 119.646983269000089, -3.977959893999923 ], [ 119.630625847000033, -3.971856377999927 ], [ 119.60710696700005, -3.97584400799991 ], [ 119.600433790000011, -3.986993096999925 ], [ 119.599619988000086, -4.004164320999905 ], [ 119.59343509200005, -4.026462497999944 ], [ 119.587738477000016, -4.008884372999944 ], [ 119.58521569100003, -3.970310153999947 ], [ 119.56609134200005, -3.939873955999929 ], [ 119.519867384, -3.826348565999922 ], [ 119.497406446000014, -3.793877862999921 ], [ 119.485687696000014, -3.754082940999922 ], [ 119.45671634200005, -3.71453215899993 ], [ 119.454274936000047, -3.700127862999921 ], [ 119.469899936000047, -3.66961028399993 ], [ 119.48365319100003, -3.61492278399993 ], [ 119.493988477000016, -3.597588799999926 ], [ 119.508962436000047, -3.577732028999947 ], [ 119.514008009, -3.563083591999941 ], [ 119.511973504000025, -3.547621351999908 ], [ 119.497569207000083, -3.495293877999927 ], [ 119.493988477000016, -3.488376559999949 ], [ 119.490926985511791, -3.486539665106994 ], [ 119.49087731273778, -3.486143487032336 ], [ 119.483022496391072, -3.427439059664891 ], [ 119.463850538571478, -3.369871514758586 ], [ 119.460801629991238, -3.355712172079109 ], [ 119.457907750142454, -3.318195081437864 ], [ 119.452946811845891, -3.280936375013709 ], [ 119.450621372778073, -3.275975436717033 ], [ 119.443024937051177, -3.265950209134871 ], [ 119.417600132440157, -3.236236260694909 ], [ 119.414241163698648, -3.227244560987685 ], [ 119.411915724630944, -3.214687187863433 ], [ 119.414241163698648, -3.204300225075315 ], [ 119.421114129913121, -3.193396497450408 ], [ 119.43000247593352, -3.187350356233935 ], [ 119.43971764515311, -3.185179944998481 ], [ 119.449226108797802, -3.186420180247126 ], [ 119.465452509026022, -3.191536147275372 ], [ 119.475116001402284, -3.193034763143828 ], [ 119.489378696869267, -3.189210707308291 ], [ 119.507827183377799, -3.180632418751145 ], [ 119.541106806134167, -3.156499526232153 ], [ 119.562190790072805, -3.145027357826336 ], [ 119.581879510930662, -3.136914158161858 ], [ 119.626372918775132, -3.127147312098771 ], [ 119.639188674317779, -3.120946139452769 ], [ 119.641359083754651, -3.110300795145577 ], [ 119.635261264795531, -3.096813246034458 ], [ 119.607045933123231, -3.0591411266617 ], [ 119.543225538727597, -2.906902358257241 ], [ 119.538626337435517, -2.887730400437647 ], [ 119.537179396611805, -2.868661798103517 ], [ 119.53748945497432, -2.847319430847051 ], [ 119.542450393270997, -2.827217298839287 ], [ 119.543587273933554, -2.814401544195903 ], [ 119.541726922859198, -2.802877698946645 ], [ 119.515165235786981, -2.75869434946469 ], [ 119.533355340776325, -2.750581149800212 ], [ 119.560433790886691, -2.746498711546337 ], [ 119.579295689444507, -2.745568535559471 ], [ 119.598054234315441, -2.747273857902258 ], [ 119.636449823200678, -2.756472263184435 ], [ 119.661254511086781, -2.758229261471229 ], [ 119.727762078856813, -2.737817071100949 ], [ 119.766829462209898, -2.717869967824754 ], [ 119.777991571353937, -2.707276299461682 ], [ 119.785639683024897, -2.695028984699888 ], [ 119.786879917374222, -2.686864109091346 ], [ 119.783469272688762, -2.68004281972037 ], [ 119.777061395367014, -2.673531588711853 ], [ 119.770446811571105, -2.66536671310331 ], [ 119.767036166885532, -2.655341484621829 ], [ 119.768276402134234, -2.644024346746221 ], [ 119.773650750681554, -2.624490654620047 ], [ 119.774787632243374, -2.613380221420073 ], [ 119.738975864844292, -2.565269464214396 ], [ 119.734893426590361, -2.527287285579803 ], [ 119.737683953651526, -2.502275893018066 ], [ 119.734531692283781, -2.486617933570813 ], [ 119.728433873324548, -2.474525648439908 ], [ 119.718563673574636, -2.460366305760431 ], [ 119.715669793725965, -2.449979342972313 ], [ 119.716393264137764, -2.438817233828274 ], [ 119.729002313206138, -2.413030694011354 ], [ 119.732516310679102, -2.396287529845608 ], [ 119.729002313206138, -2.384350273446387 ], [ 119.72166425989758, -2.371999606796408 ], [ 119.707091506068082, -2.353912855493888 ], [ 119.672468296174884, -2.324663995047331 ], [ 119.660324335099972, -2.31810108809475 ], [ 119.637586704762612, -2.308954359655957 ], [ 119.626889682712658, -2.301823011922465 ], [ 119.62358239081459, -2.293554782627098 ], [ 119.624099155651493, -2.280377291878551 ], [ 119.627509800336952, -2.261825452582571 ], [ 119.631230503384927, -2.213094577752543 ], [ 119.635261264795531, -2.193974297675709 ], [ 119.646268345207886, -2.176404311209978 ], [ 119.753496941830349, -2.081784762756627 ], [ 119.766726109422393, -2.076927179046095 ], [ 119.77762983614798, -2.078580823646121 ], [ 119.789102003654534, -2.07796070692109 ], [ 119.80150434804716, -2.071656181487583 ], [ 119.813855014697083, -2.060494073242921 ], [ 119.825017124740498, -2.046231377775882 ], [ 119.873489618051394, -1.955384210113209 ], [ 119.908836298356391, -1.938330986685685 ], [ 119.965421991331823, -1.902364189655657 ], [ 120.048052605643193, -1.861488132071656 ], [ 120.068619825644419, -1.854511813969054 ], [ 120.101279331675755, -1.852651461995379 ], [ 120.156779819932694, -1.860402926453901 ], [ 120.292378777858289, -1.900193780218785 ], [ 120.323487990278522, -1.903552748060861 ], [ 120.344571975116537, -1.89988372185627 ], [ 120.352323439575002, -1.891822198135969 ], [ 120.357077671397406, -1.883088880847197 ], [ 120.366172722992701, -1.86097136813413 ], [ 120.37299401326311, -1.849344170996687 ], [ 120.383536004782741, -1.84071420649542 ], [ 120.40487837113983, -1.83766529701586 ], [ 120.426530795859549, -1.847122083817112 ], [ 120.447614780697563, -1.866242363894003 ], [ 120.553241407764745, -2.025044041049682 ], [ 120.588329705651404, -2.067470390446147 ], [ 120.62496829624979, -2.104212334731471 ], [ 120.763616163655001, -2.21748707346967 ], [ 120.804182163775749, -2.238571059207004 ], [ 121.349781936387217, -2.348486830103127 ], [ 121.398461135273124, -2.363783053445161 ], [ 121.448897333345258, -2.388484388543702 ], [ 121.471169874789894, -2.402953789585752 ], [ 121.489411655723302, -2.418094985095479 ], [ 121.546359083904576, -2.484189140816227 ], [ 121.608267450382527, -2.538139337260588 ], [ 121.638033074766554, -2.557931410006574 ], [ 121.742006057233652, -2.610072930421438 ], [ 121.763710157897435, -2.627901300204826 ], [ 121.776835971802598, -2.646814873807386 ], [ 121.787377964221605, -2.670120944925657 ], [ 121.793682488755849, -2.695235691174219 ], [ 121.796369663928772, -2.717094821468834 ], [ 121.795491163886027, -2.737455335895049 ], [ 121.792028843256503, -2.75848764388968 ], [ 121.784949172366396, -2.776781100767209 ], [ 121.772495152029592, -2.800913995084841 ], [ 121.61622562131538, -2.960490817697064 ], [ 121.598035516325922, -2.972841485246363 ], [ 121.536540561897368, -3.009221693426412 ], [ 121.515353225171111, -3.017541598665844 ], [ 121.502330764053454, -3.02095224425068 ], [ 121.488481479736492, -3.02208912491318 ], [ 121.475252313043711, -3.019763685845419 ], [ 121.432464226642651, -2.994183851603452 ], [ 121.350091993850356, -2.927004490265006 ], [ 121.277641635852774, -2.87894540810413 ], [ 121.260795118899523, -2.871504001108747 ], [ 121.243741897270638, -2.867266534123246 ], [ 121.226275262693207, -2.865561211780516 ], [ 121.20565636584854, -2.866491387767326 ], [ 121.163540073915215, -2.873467705869928 ], [ 121.127883335247702, -2.885611666944897 ], [ 121.086852248032756, -2.909899590893417 ], [ 121.086369028420592, -2.910177633995616 ] ] ], [ [ [ 120.54615319100003, -5.938164971999925 ], [ 120.555186394000089, -5.979424737999921 ], [ 120.559336785000028, -6.022556247999944 ], [ 120.558604363000086, -6.066338799999926 ], [ 120.552989129000025, -6.110121351999908 ], [ 120.529795769000089, -6.17310963299991 ], [ 120.526215040000011, -6.195489190999922 ], [ 120.532074415000011, -6.248304945999905 ], [ 120.530121290000011, -6.287286065999922 ], [ 120.522471550000091, -6.336521091999941 ], [ 120.514984571000014, -6.352471612999921 ], [ 120.502614780000044, -6.373467705999929 ], [ 120.500987175000091, -6.392510674999926 ], [ 120.50513756600003, -6.431735934999949 ], [ 120.500010613000086, -6.451592705999929 ], [ 120.490489129000025, -6.471449476999908 ], [ 120.481293165000011, -6.477308851999908 ], [ 120.475108269000089, -6.434502862999921 ], [ 120.465668165000011, -6.402764580999929 ], [ 120.463633660000028, -6.383884372999944 ], [ 120.470876498000052, -6.275160414999959 ], [ 120.468109571000014, -6.264336846999925 ], [ 120.460459832000083, -6.259698174999926 ], [ 120.448252800000091, -6.256524346999925 ], [ 120.444834832000083, -6.248467705999929 ], [ 120.445078972000033, -6.237725518999923 ], [ 120.443695509, -6.226169528999947 ], [ 120.430837436000047, -6.194512627999927 ], [ 120.429453972000033, -6.185804945999905 ], [ 120.433360222000033, -6.174004815999922 ], [ 120.44695071700005, -6.154473565999922 ], [ 120.449961785000028, -6.140801690999922 ], [ 120.452159050000091, -6.080824476999908 ], [ 120.441416863000086, -5.977634372999944 ], [ 120.448252800000091, -5.843926690999922 ], [ 120.457367384, -5.801039320999905 ], [ 120.470469597000033, -5.76685963299991 ], [ 120.480479363000086, -5.764092705999929 ], [ 120.488617384, -5.76726653399993 ], [ 120.494395379000025, -5.774509372999944 ], [ 120.497080925000091, -5.783298434999949 ], [ 120.495616082000083, -5.806410414999959 ], [ 120.503428582000083, -5.822686455999929 ], [ 120.51335696700005, -5.836602471999925 ], [ 120.518077019000089, -5.852634372999944 ], [ 120.521494988000086, -5.87468840899993 ], [ 120.54615319100003, -5.938164971999925 ] ] ], [ [ [ 121.779795769000089, -7.34343840899993 ], [ 121.818207227000016, -7.333591403999947 ], [ 121.837087436000047, -7.356540622999944 ], [ 121.834808790000011, -7.388278903999947 ], [ 121.810313347000033, -7.404229424999926 ], [ 121.775889519000089, -7.416924737999921 ], [ 121.75904381600003, -7.415785414999959 ], [ 121.751800977000016, -7.394301039999959 ], [ 121.754079623000052, -7.379082940999922 ], [ 121.759938998000052, -7.363539320999905 ], [ 121.768890821000014, -7.350762627999927 ], [ 121.779795769000089, -7.34343840899993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-JT", "NAME_1": "Jawa Tengah" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 108.895120338881682, -6.814154617478335 ], [ 108.895192905000044, -6.814222914999959 ], [ 108.90357506600003, -6.822198174999926 ], [ 108.911875847000033, -6.834893487999921 ], [ 108.923024936000047, -6.844659112999921 ], [ 108.944834832000026, -6.849379164999959 ], [ 108.968923373000052, -6.848321221999925 ], [ 108.983409050000034, -6.841729424999926 ], [ 108.990733269000032, -6.827894789999959 ], [ 108.992686394000032, -6.805352471999925 ], [ 109.00131269600007, -6.789157809999949 ], [ 109.02084394600007, -6.788669528999947 ], [ 109.041514519000032, -6.795586846999925 ], [ 109.053477410000028, -6.801527601999908 ], [ 109.092051629000025, -6.831475518999923 ], [ 109.115489129000025, -6.838555596999925 ], [ 109.142832879000025, -6.856215101999908 ], [ 109.150401238000029, -6.857028903999947 ], [ 109.176931186000047, -6.856215101999908 ], [ 109.351898634000065, -6.875664971999925 ], [ 109.438243035000028, -6.860121351999908 ], [ 109.492930535000028, -6.801527601999908 ], [ 109.531993035000028, -6.835137627999927 ], [ 109.725596550000034, -6.863051039999959 ], [ 109.896332227000073, -6.918226820999905 ], [ 109.94068444100003, -6.923435153999947 ], [ 109.983897332000026, -6.922621351999908 ], [ 110.114268425000034, -6.903903903999947 ], [ 110.138845248000052, -6.897149346999925 ], [ 110.149587436000047, -6.887302341999941 ], [ 110.152842644000032, -6.881768487999921 ], [ 110.169769727000073, -6.860935153999947 ], [ 110.177500847000033, -6.856215101999908 ], [ 110.188324415000068, -6.860284112999921 ], [ 110.192067905000044, -6.869805596999925 ], [ 110.193532748000052, -6.881117445999905 ], [ 110.198008660000028, -6.890883070999905 ], [ 110.21257571700005, -6.899997653999947 ], [ 110.258799675000034, -6.920993747999944 ], [ 110.292979363000029, -6.931247653999947 ], [ 110.334646030000044, -6.961358330999929 ], [ 110.355723504000025, -6.972914320999905 ], [ 110.381032748000052, -6.975681247999944 ], [ 110.399099155000044, -6.967868747999944 ], [ 110.415049675000034, -6.957452080999929 ], [ 110.434580925000034, -6.95240650799991 ], [ 110.456065300000034, -6.950941664999959 ], [ 110.472422722000033, -6.946384372999944 ], [ 110.486175977000073, -6.937920830999929 ], [ 110.52702884200005, -6.895196221999925 ], [ 110.57154381600003, -6.836195570999905 ], [ 110.644704623000052, -6.688164971999925 ], [ 110.657399936000047, -6.643975518999923 ], [ 110.663259311000047, -6.606052341999941 ], [ 110.664805535000028, -6.565362237999921 ], [ 110.669688347000033, -6.546319268999923 ], [ 110.678477410000028, -6.534600518999923 ], [ 110.681895379000025, -6.521905205999929 ], [ 110.671071811000047, -6.499932549999926 ], [ 110.691661004000025, -6.496026299999926 ], [ 110.701996290000068, -6.488702080999929 ], [ 110.718760613000029, -6.465752862999921 ], [ 110.730479363000029, -6.456963799999926 ], [ 110.781097852000073, -6.436455987999921 ], [ 110.808116082000026, -6.431735934999949 ], [ 110.818125847000033, -6.428155205999929 ], [ 110.833750847000033, -6.420668226999908 ], [ 110.842295769000032, -6.418064059999949 ], [ 110.903168165000068, -6.410821221999925 ], [ 110.924815300000034, -6.403741143999923 ], [ 110.934092644000032, -6.411065362999921 ], [ 110.961761915000068, -6.427911065999922 ], [ 110.972504102000073, -6.431735934999949 ], [ 110.992198113000029, -6.432305596999925 ], [ 111.002452019000032, -6.431247653999947 ], [ 111.006846550000034, -6.428317966999941 ], [ 111.010752800000034, -6.420993747999944 ], [ 111.019297722000033, -6.426364841999941 ], [ 111.02670332100007, -6.435316664999959 ], [ 111.027842644000032, -6.438409112999921 ], [ 111.040863477000073, -6.447360934999949 ], [ 111.051768425000034, -6.45671965899993 ], [ 111.059255405000044, -6.469903252999927 ], [ 111.065440300000034, -6.509372653999947 ], [ 111.082367384000065, -6.543877862999921 ], [ 111.119313998000052, -6.64967213299991 ], [ 111.137054884000065, -6.685479424999926 ], [ 111.144379102000073, -6.691827080999929 ], [ 111.150563998000052, -6.692966403999947 ], [ 111.156911655000044, -6.692071221999925 ], [ 111.342539910000028, -6.712823174999926 ], [ 111.366384311000047, -6.712009372999944 ], [ 111.408050977000073, -6.701755466999941 ], [ 111.428721550000034, -6.699151299999926 ], [ 111.444102410000028, -6.689060153999947 ], [ 111.47779381600003, -6.64031340899993 ], [ 111.49341881600003, -6.623467705999929 ], [ 111.519867384000065, -6.63990650799991 ], [ 111.576996290000068, -6.650974216999941 ], [ 111.610118035000028, -6.664971612999921 ], [ 111.621429884000065, -6.674574476999908 ], [ 111.654633009000065, -6.716241143999923 ], [ 111.672699415000068, -6.73365650799991 ], [ 111.66851240402417, -6.73757293044639 ], [ 111.629341668782956, -6.800101413649315 ], [ 111.621590204324434, -6.825991306253798 ], [ 111.620970086700083, -6.844388115918832 ], [ 111.603503453021915, -6.933995050131443 ], [ 111.598490838781117, -6.960763441879351 ], [ 111.601953160310075, -7.046804700876237 ], [ 111.598129103575218, -7.081427910769492 ], [ 111.599421013868664, -7.093261813481888 ], [ 111.608981154356741, -7.135584811889544 ], [ 111.610221388706066, -7.146488538615188 ], [ 111.608309360788326, -7.153981621554578 ], [ 111.591617872566701, -7.163903497248612 ], [ 111.551206902976162, -7.199250176654346 ], [ 111.535962355578192, -7.217595309475939 ], [ 111.521647984167089, -7.230359389074579 ], [ 111.494156122007382, -7.250719902601418 ], [ 111.472762078806852, -7.2634839822 ], [ 111.464803907874, -7.269323418740782 ], [ 111.459842971375963, -7.273767592200613 ], [ 111.454571974716828, -7.27986541115979 ], [ 111.44651045099647, -7.291699313872243 ], [ 111.44382327672281, -7.298520603243276 ], [ 111.444288364716215, -7.311233005099098 ], [ 111.403825718282235, -7.304256686996496 ], [ 111.341813999016779, -7.282190850227551 ], [ 111.325897658050451, -7.274284356138139 ], [ 111.313185256194572, -7.266067803686212 ], [ 111.306053907561761, -7.264155775768472 ], [ 111.297578972691383, -7.265706068480256 ], [ 111.289310744295392, -7.268858330747378 ], [ 111.278148635151354, -7.269168390009213 ], [ 111.263885939684315, -7.265292656430972 ], [ 111.246005893956806, -7.256300957623125 ], [ 111.22027103098327, -7.251391697069153 ], [ 111.20332116124257, -7.266791274098011 ], [ 111.197378371014963, -7.308597506769502 ], [ 111.198050164583378, -7.355364678637045 ], [ 111.202390985255704, -7.385492039126291 ], [ 111.20197757410574, -7.404974053509761 ], [ 111.18497602662228, -7.529100843928802 ], [ 111.197636753433358, -7.58263762742456 ], [ 111.206060012359615, -7.60056934999551 ], [ 111.217480503022728, -7.613333428694773 ], [ 111.212157831318791, -7.624288832263801 ], [ 111.18688805543934, -7.643512465128197 ], [ 111.182392206035445, -7.651677340736683 ], [ 111.182133823616994, -7.657878512483364 ], [ 111.185647821090015, -7.664389743491881 ], [ 111.187508173063691, -7.672554619999744 ], [ 111.188024937001217, -7.690486341671317 ], [ 111.190608759386691, -7.707436212311336 ], [ 111.207868686590587, -7.715549411975815 ], [ 111.242491897383104, -7.718856702974449 ], [ 111.253964064889658, -7.723145846803391 ], [ 111.26460941009617, -7.731724134461217 ], [ 111.291067742582186, -7.760301202238679 ], [ 111.301092971063724, -7.773323662457074 ], [ 111.307810906747932, -7.784330742869486 ], [ 111.310239698603141, -7.798541761493084 ], [ 111.3079142604347, -7.83781584952186 ], [ 111.30140302942624, -7.86091521596444 ], [ 111.284659865260551, -7.904375095034595 ], [ 111.280267368644104, -7.93920501050286 ], [ 111.273291049642182, -7.945199476674532 ], [ 111.263369174847469, -7.951245618790267 ], [ 111.253033888902792, -7.950625502065293 ], [ 111.244093866039066, -7.946336358236351 ], [ 111.235308872806172, -7.941013685633095 ], [ 111.228022496341111, -7.938119805784424 ], [ 111.216963739085259, -7.93998015685878 ], [ 111.192469109561728, -7.9580669081613 ], [ 111.176552768595343, -7.966903578237577 ], [ 111.149164260122461, -7.978065688280878 ], [ 111.09924482598791, -8.008503106233377 ], [ 111.036406285321789, -8.06038624422979 ], [ 110.999716017879905, -8.084002373710575 ], [ 110.98033735628394, -8.100177097095354 ], [ 110.965196160774155, -8.116868584417659 ], [ 110.96126875215117, -8.126325372118231 ], [ 110.959615105752505, -8.134283543051083 ], [ 110.96126875215117, -8.156607760439783 ], [ 110.960907016945214, -8.164514254529252 ], [ 110.960235223376799, -8.169940280819333 ], [ 110.945662470446621, -8.21882618617957 ], [ 110.944422235197976, -8.22611256264463 ], [ 110.94435014716224, -8.226372106493171 ], [ 110.93100019600007, -8.220472914999959 ], [ 110.847911004000025, -8.201104424999926 ], [ 110.843559797243316, -8.200842658125852 ], [ 110.843549839053765, -8.200739433977731 ], [ 110.837038608944624, -8.133250014276769 ], [ 110.831354201135412, -8.132371515133343 ], [ 110.824842971026271, -8.132888279070812 ], [ 110.818021681655239, -8.13769418683728 ], [ 110.810838657977627, -8.138934421186605 ], [ 110.80241539905137, -8.132268161446518 ], [ 110.798746372846779, -8.12167449308339 ], [ 110.792803582619172, -7.947059827748888 ], [ 110.787532586859356, -7.920188084112795 ], [ 110.786602410872547, -7.873627617820318 ], [ 110.784742058898871, -7.862878919826301 ], [ 110.781331415112675, -7.854042249750023 ], [ 110.773063185817307, -7.843448582286271 ], [ 110.753322789015442, -7.832596530605429 ], [ 110.705212030011126, -7.825310154140311 ], [ 110.689244012201357, -7.819780775962045 ], [ 110.653690627220612, -7.822984714173231 ], [ 110.633123407219443, -7.820969333467986 ], [ 110.578656446837499, -7.820969333467986 ], [ 110.536901890110073, -7.809858901167388 ], [ 110.506619500889201, -7.783090508520161 ], [ 110.490289747873533, -7.757097263128173 ], [ 110.474476759694653, -7.72025196695472 ], [ 110.441300489725791, -7.568943372738488 ], [ 110.437683140364584, -7.560055026718089 ], [ 110.411224806979192, -7.589924004788998 ], [ 110.301309035183806, -7.669143975314228 ], [ 110.287098015660831, -7.681597995650975 ], [ 110.267150914183276, -7.706764417843601 ], [ 110.25877933210046, -7.715291028658044 ], [ 110.255678745777459, -7.712190444133682 ], [ 110.253198277078752, -7.703663831520601 ], [ 110.250407749118267, -7.677257174978649 ], [ 110.245963575658436, -7.672451267212239 ], [ 110.240434198379489, -7.671934503274713 ], [ 110.234594760939444, -7.674466647917484 ], [ 110.228290236405257, -7.67555185263592 ], [ 110.219608595959869, -7.675396823904293 ], [ 110.159043816618805, -7.667593681703067 ], [ 110.136512892755775, -7.676792086985245 ], [ 110.130001661747258, -7.686300550629937 ], [ 110.126591017961061, -7.698082778297589 ], [ 110.128348016247912, -7.72428272926453 ], [ 110.125247429924912, -7.744074802010516 ], [ 110.116669143166405, -7.761593112532125 ], [ 110.064941033901562, -7.83724740964027 ], [ 110.049179721666803, -7.855437513730294 ], [ 110.046182489030627, -7.864739271799976 ], [ 110.042771845244431, -7.888872166117608 ], [ 110.042739562344593, -7.889100591668173 ], [ 110.034190300000034, -7.884698174999926 ], [ 109.931895379000025, -7.854913018999923 ], [ 109.906016472000033, -7.837660414999959 ], [ 109.883067254000025, -7.844821872999944 ], [ 109.847422722000033, -7.836683851999908 ], [ 109.81177819100003, -7.823418877999927 ], [ 109.752452019000032, -7.811944268999923 ], [ 109.656748894000032, -7.781670830999929 ], [ 109.486094597000033, -7.761814059999949 ], [ 109.446787957000026, -7.772067966999941 ], [ 109.426280144000032, -7.774183851999908 ], [ 109.41724694100003, -7.76490650799991 ], [ 109.414724155000044, -7.757907809999949 ], [ 109.408539259000065, -7.754978122999944 ], [ 109.40170332100007, -7.752618096999925 ], [ 109.396657748000052, -7.747491143999923 ], [ 109.397227410000028, -7.74187590899993 ], [ 109.404551629000025, -7.731052341999941 ], [ 109.403493686000047, -7.726332289999959 ], [ 109.397634311000047, -7.722832940999922 ], [ 109.36882571700005, -7.713474216999941 ], [ 109.197233587000028, -7.696216842999945 ], [ 109.098145866000038, -7.686861173999944 ], [ 109.046555243000057, -7.701853287999938 ], [ 109.032969597000033, -7.720147393999923 ], [ 109.021250847000033, -7.732028903999947 ], [ 109.014414910000028, -7.732598565999922 ], [ 108.983897332000026, -7.707207940999922 ], [ 108.973643425000034, -7.702243747999944 ], [ 108.961599155000044, -7.700372002999927 ], [ 108.938975457000026, -7.699476820999905 ], [ 108.918304884000065, -7.696384372999944 ], [ 108.901540561000047, -7.689629815999922 ], [ 108.889659050000034, -7.678643487999921 ], [ 108.881602410000028, -7.63250090899993 ], [ 108.873220248000052, -7.61060963299991 ], [ 108.85865319100003, -7.614027601999908 ], [ 108.852061394000032, -7.61882903399993 ], [ 108.82748457100007, -7.630791924999926 ], [ 108.820485873000052, -7.637872002999927 ], [ 108.806976759000065, -7.658135674999926 ], [ 108.799001498000052, -7.664727471999925 ], [ 108.741559279337253, -7.617622571624395 ], [ 108.736908401201731, -7.612248223976337 ], [ 108.73360110930372, -7.60460011230532 ], [ 108.73380781487873, -7.590750827988302 ], [ 108.73608157800237, -7.580622246719315 ], [ 108.741559279337253, -7.56393075849769 ], [ 108.742282748849732, -7.551838474266162 ], [ 108.741559279337253, -7.536542250024809 ], [ 108.721405471385367, -7.463988539239722 ], [ 108.716392857144569, -7.421407159312935 ], [ 108.712827182828164, -7.406265963803207 ], [ 108.709726597404483, -7.3980494122506 ], [ 108.704662307219678, -7.390969739561854 ], [ 108.692983433238794, -7.386163831795386 ], [ 108.682699823238181, -7.383063245472385 ], [ 108.675413445873801, -7.379600924842805 ], [ 108.67076256683896, -7.357690117704749 ], [ 108.668178746252067, -7.344202568593687 ], [ 108.661770868031113, -7.34037851275815 ], [ 108.650298699625239, -7.340533543288416 ], [ 108.626424187726059, -7.348336683691002 ], [ 108.615933873049755, -7.345907890936417 ], [ 108.610714553234004, -7.338621514471299 ], [ 108.602549676726142, -7.322963555923366 ], [ 108.578881871301292, -7.317020765695815 ], [ 108.553043653741611, -7.309992770749773 ], [ 108.546894158838313, -7.278780205542034 ], [ 108.570716993894109, -7.201213880516207 ], [ 108.572577345867785, -7.178734632597241 ], [ 108.575677932190786, -7.163180026836756 ], [ 108.583532749436813, -7.151139417650029 ], [ 108.59541832899265, -7.142096042898061 ], [ 108.61371178587018, -7.13667001660798 ], [ 108.63164350844113, -7.135791517464554 ], [ 108.669522333388954, -7.141165866911251 ], [ 108.695463901937501, -7.139822278875101 ], [ 108.707142775918328, -7.135429783157974 ], [ 108.71716800260117, -7.130210462442903 ], [ 108.743729689673387, -7.111348564784464 ], [ 108.757010533209495, -7.098171074935181 ], [ 108.769464552646923, -7.083443291474737 ], [ 108.781143426627807, -7.072642917536598 ], [ 108.788998243873834, -7.06132577876167 ], [ 108.793184034915214, -7.047683200918982 ], [ 108.790548536585675, -7.029596448717143 ], [ 108.789463331867239, -7.00003752990807 ], [ 108.796129591607325, -6.950583183766923 ], [ 108.800677117854661, -6.934770195588044 ], [ 108.823156365773627, -6.89559945944751 ], [ 108.89297122634099, -6.815707696253185 ], [ 108.895120338881682, -6.814154617478335 ] ] ], [ [ [ 109.019297722000033, -7.758070570999905 ], [ 109.023692254000025, -7.762383721999925 ], [ 109.042735222000033, -7.761488539999959 ], [ 109.046641472000033, -7.767998955999929 ], [ 109.043142123000052, -7.778903903999947 ], [ 109.035817905000044, -7.780368747999944 ], [ 109.026215040000068, -7.777520440999922 ], [ 108.99927819100003, -7.772881768999923 ], [ 108.944834832000026, -7.754327080999929 ], [ 108.88607832100007, -7.743910414999959 ], [ 108.872813347000033, -7.737237237999921 ], [ 108.857432488000029, -7.732028903999947 ], [ 108.815277540000068, -7.737725518999923 ], [ 108.80014082100007, -7.733819268999923 ], [ 108.794118686000047, -7.719414971999925 ], [ 108.797048373000052, -7.701592705999929 ], [ 108.806895379000025, -7.686211846999925 ], [ 108.82154381600003, -7.678643487999921 ], [ 108.873871290000068, -7.703220309999949 ], [ 108.92505944100003, -7.710381768999923 ], [ 108.957774285000028, -7.720147393999923 ], [ 109.01099694100003, -7.750258070999905 ], [ 109.019297722000033, -7.758070570999905 ] ] ], [ [ [ 110.43132571700005, -5.837334893999923 ], [ 110.459239129000025, -5.831638278999947 ], [ 110.465586785000028, -5.83953215899993 ], [ 110.463633660000028, -5.85711028399993 ], [ 110.449880405000044, -5.874444268999923 ], [ 110.437998894000032, -5.881036065999922 ], [ 110.430349155000044, -5.873711846999925 ], [ 110.426605665000068, -5.861504815999922 ], [ 110.421641472000033, -5.851332289999959 ], [ 110.420664910000028, -5.843682549999926 ], [ 110.43132571700005, -5.837334893999923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-JB", "NAME_1": "Jawa Barat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.988291863000029, -6.07935963299991 ], [ 106.99350019600007, -6.078545830999929 ], [ 107.00513756600003, -6.072360934999949 ], [ 107.008555535000028, -6.053155205999929 ], [ 107.013926629000025, -6.040459893999923 ], [ 107.01498457100007, -6.02898528399993 ], [ 107.00513756600003, -6.013929945999905 ], [ 106.999034050000034, -6.003513278999947 ], [ 107.004567905000044, -5.988213799999926 ], [ 107.025645379000025, -5.95867278399993 ], [ 107.021250847000033, -5.924086195999905 ], [ 107.044444207000026, -5.914320570999905 ], [ 107.080332879000025, -5.92156340899993 ], [ 107.114431186000047, -5.938164971999925 ], [ 107.125743035000028, -5.94890715899993 ], [ 107.136485222000033, -5.961602471999925 ], [ 107.15007571700005, -5.973077080999929 ], [ 107.169688347000033, -5.97975025799991 ], [ 107.187754754000025, -5.98015715899993 ], [ 107.205332879000025, -5.977308851999908 ], [ 107.28093509200005, -5.95476653399993 ], [ 107.320647317000066, -5.962415976999921 ], [ 107.354136487000062, -5.975994692999961 ], [ 107.379630997000049, -6.008516380999936 ], [ 107.413077615000077, -6.063173971999959 ], [ 107.44565470100008, -6.104322740999919 ], [ 107.470267938000063, -6.145432463999953 ], [ 107.510778965000043, -6.164443739999911 ], [ 107.563179279000053, -6.184246526999914 ], [ 107.621132286000034, -6.187473681999961 ], [ 107.655221834000031, -6.225378002999946 ], [ 107.678223849000062, -6.238022903999934 ], [ 107.699661440000057, -6.226997790999917 ], [ 107.715526068000031, -6.235689939999929 ], [ 107.732194483000058, -6.23254847599992 ], [ 107.744900286000075, -6.223092012999928 ], [ 107.768077019000032, -6.213311455999929 ], [ 107.773692254000025, -6.207940362999921 ], [ 107.782969597000033, -6.205743096999925 ], [ 107.792979363000029, -6.207940362999921 ], [ 107.802907748000052, -6.211521091999941 ], [ 107.810313347000033, -6.211195570999905 ], [ 107.813243035000028, -6.202325127999927 ], [ 107.81083632800005, -6.189346824999916 ], [ 107.826262934000056, -6.18513007599995 ], [ 107.847683851000056, -6.191952341999922 ], [ 107.849402905000034, -6.205527749999931 ], [ 107.863960346000056, -6.206397675999938 ], [ 107.877661236000051, -6.191151889999958 ], [ 107.885359295000058, -6.18692221699996 ], [ 107.895630981000068, -6.20983057299992 ], [ 107.895624301000055, -6.231024718999947 ], [ 107.947276238000029, -6.263116143999923 ], [ 107.990471307000064, -6.281091899999922 ], [ 108.049342501000069, -6.309907120999924 ], [ 108.074069506000058, -6.318379011999923 ], [ 108.093682658000034, -6.326846921999959 ], [ 108.11328863600005, -6.326847264999913 ], [ 108.129479502000038, -6.326001111999915 ], [ 108.14226053200008, -6.322614955999939 ], [ 108.158449836000045, -6.311609683999961 ], [ 108.183604363000029, -6.296970309999949 ], [ 108.187022332000026, -6.294528903999947 ], [ 108.195076534000066, -6.287061085999937 ], [ 108.203594456000076, -6.276057684999955 ], [ 108.206998584000075, -6.26251325699991 ], [ 108.205294397000046, -6.249816209999949 ], [ 108.198480872000061, -6.240504778999934 ], [ 108.186557164000078, -6.231192666999959 ], [ 108.198481075000075, -6.227807820999942 ], [ 108.216363826000077, -6.237965338999913 ], [ 108.248723498000061, -6.247274812999933 ], [ 108.310881997000081, -6.248956414999952 ], [ 108.332172675000038, -6.261646979999909 ], [ 108.338981060000037, -6.250641592999955 ], [ 108.360269077000055, -6.246400944999948 ], [ 108.364534805000062, -6.272639433999927 ], [ 108.372227369000029, -6.340352902999939 ], [ 108.455414259000065, -6.442071221999925 ], [ 108.474619988000029, -6.452080987999921 ], [ 108.487803582000026, -6.456801039999959 ], [ 108.539561394000032, -6.486911716999941 ], [ 108.574554884000065, -6.66961028399993 ], [ 108.605479363000029, -6.761651299999926 ], [ 108.663096550000034, -6.767347914999959 ], [ 108.705332879000025, -6.795993747999944 ], [ 108.748789910000028, -6.81218840899993 ], [ 108.79224694100003, -6.811130466999941 ], [ 108.834971550000034, -6.787855726999908 ], [ 108.843272332000026, -6.797946872999944 ], [ 108.85865319100003, -6.80242278399993 ], [ 108.876149936000047, -6.804864190999922 ], [ 108.889659050000034, -6.809014580999929 ], [ 108.895120338881682, -6.814154617478335 ], [ 108.89297122634099, -6.815707696253185 ], [ 108.823156365773627, -6.89559945944751 ], [ 108.800677117854661, -6.934770195588044 ], [ 108.796129591607325, -6.950583183766923 ], [ 108.789463331867239, -7.00003752990807 ], [ 108.790548536585675, -7.029596448717143 ], [ 108.793184034915214, -7.047683200918982 ], [ 108.788998243873834, -7.06132577876167 ], [ 108.781143426627807, -7.072642917536598 ], [ 108.769464552646923, -7.083443291474737 ], [ 108.757010533209495, -7.098171074935181 ], [ 108.743729689673387, -7.111348564784464 ], [ 108.71716800260117, -7.130210462442903 ], [ 108.707142775918328, -7.135429783157974 ], [ 108.695463901937501, -7.139822278875101 ], [ 108.669522333388954, -7.141165866911251 ], [ 108.63164350844113, -7.135791517464554 ], [ 108.61371178587018, -7.13667001660798 ], [ 108.59541832899265, -7.142096042898061 ], [ 108.583532749436813, -7.151139417650029 ], [ 108.575677932190786, -7.163180026836756 ], [ 108.572577345867785, -7.178734632597241 ], [ 108.570716993894109, -7.201213880516207 ], [ 108.546894158838313, -7.278780205542034 ], [ 108.553043653741611, -7.309992770749773 ], [ 108.578881871301292, -7.317020765695815 ], [ 108.602549676726142, -7.322963555923366 ], [ 108.610714553234004, -7.338621514471299 ], [ 108.615933873049755, -7.345907890936417 ], [ 108.626424187726059, -7.348336683691002 ], [ 108.650298699625239, -7.340533543288416 ], [ 108.661770868031113, -7.34037851275815 ], [ 108.668178746252067, -7.344202568593687 ], [ 108.67076256683896, -7.357690117704749 ], [ 108.675413445873801, -7.379600924842805 ], [ 108.682699823238181, -7.383063245472385 ], [ 108.692983433238794, -7.386163831795386 ], [ 108.704662307219678, -7.390969739561854 ], [ 108.709726597404483, -7.3980494122506 ], [ 108.712827182828164, -7.406265963803207 ], [ 108.716392857144569, -7.421407159312935 ], [ 108.721405471385367, -7.463988539239722 ], [ 108.741559279337253, -7.536542250024809 ], [ 108.742282748849732, -7.551838474266162 ], [ 108.741559279337253, -7.56393075849769 ], [ 108.73608157800237, -7.580622246719315 ], [ 108.73380781487873, -7.590750827988302 ], [ 108.73360110930372, -7.60460011230532 ], [ 108.736908401201731, -7.612248223976337 ], [ 108.741559279337253, -7.617622571624395 ], [ 108.799001498000052, -7.664727471999925 ], [ 108.788259311000047, -7.67351653399993 ], [ 108.761053845000049, -7.69276457999996 ], [ 108.735362175000034, -7.678643487999921 ], [ 108.729014519000032, -7.675957940999922 ], [ 108.72193444100003, -7.670342705999929 ], [ 108.713877800000034, -7.66570403399993 ], [ 108.703949415000068, -7.665622653999947 ], [ 108.691742384000065, -7.672295830999929 ], [ 108.681713940000066, -7.682244261999926 ], [ 108.673148905000062, -7.690752519999933 ], [ 108.679535352000073, -7.71021900799991 ], [ 108.677744988000029, -7.718926690999922 ], [ 108.672618035000028, -7.720635674999926 ], [ 108.651740521000079, -7.716271036999956 ], [ 108.646494988000029, -7.692966403999947 ], [ 108.638926629000025, -7.687920830999929 ], [ 108.625498894000032, -7.686130466999941 ], [ 108.559418165000068, -7.687432549999926 ], [ 108.539561394000032, -7.692315362999921 ], [ 108.507823113000029, -7.719496351999908 ], [ 108.503833881000048, -7.764224063999961 ], [ 108.495266431000061, -7.792922989999909 ], [ 108.453711468000051, -7.818501408999907 ], [ 108.326829456000041, -7.817471294999905 ], [ 108.137910373000068, -7.786661276999951 ], [ 107.953530552000075, -7.739873403999923 ], [ 107.905286155000056, -7.738783636999926 ], [ 107.86453418900004, -7.745130128999961 ], [ 107.830228426000076, -7.729167343999961 ], [ 107.828145496000047, -7.700493919999928 ], [ 107.80673901800003, -7.686675730999923 ], [ 107.778796484000054, -7.680248537999944 ], [ 107.71439665500003, -7.671659197999929 ], [ 107.686548766000044, -7.662075041999913 ], [ 107.678013241000031, -7.639753394999957 ], [ 107.660839764000059, -7.614208032999954 ], [ 107.625468604000048, -7.598219571999948 ], [ 107.590960209000059, -7.570433912999931 ], [ 107.55544769800008, -7.56182328299991 ], [ 107.528514276000067, -7.548963287999925 ], [ 107.481151470000043, -7.538193522999961 ], [ 107.470509035000077, -7.516909873999907 ], [ 107.452079487000049, -7.512536997999916 ], [ 107.431895379000025, -7.506524346999925 ], [ 107.426036004000025, -7.507907809999949 ], [ 107.420176629000025, -7.505629164999959 ], [ 107.41138756600003, -7.495863539999959 ], [ 107.361530619000064, -7.503713305999952 ], [ 107.297789594000051, -7.496136852999939 ], [ 107.246325536000029, -7.489654141999949 ], [ 107.212007812000081, -7.485328705999905 ], [ 107.179859417000046, -7.475696022999955 ], [ 107.14558584200006, -7.467119921999938 ], [ 107.107049034000056, -7.456406114999936 ], [ 106.871417251000025, -7.43771129299995 ], [ 106.791021560000047, -7.435331375999908 ], [ 106.607920769000032, -7.417901299999926 ], [ 106.522662137000054, -7.410957330999906 ], [ 106.480825915000025, -7.375669131999928 ], [ 106.459331160000033, -7.365995098999917 ], [ 106.433929884000065, -7.361993096999925 ], [ 106.407479747000082, -7.37531699199991 ], [ 106.397760497000036, -7.378465401999961 ], [ 106.398894561000077, -7.360363496999923 ], [ 106.399057768000034, -7.334824459999936 ], [ 106.375365321000061, -7.310194341999932 ], [ 106.383148634000065, -7.267673434999949 ], [ 106.380707227000073, -7.247247002999927 ], [ 106.38607832100007, -7.230645440999922 ], [ 106.398448113000029, -7.207777601999908 ], [ 106.414886915000068, -7.187676690999922 ], [ 106.432627800000034, -7.178887627999927 ], [ 106.450043165000068, -7.179131768999923 ], [ 106.467295769000032, -7.176446221999925 ], [ 106.472992384000065, -7.166599216999941 ], [ 106.456553582000026, -7.144789320999905 ], [ 106.474375847000033, -7.128106377999927 ], [ 106.513967165000054, -7.079596706999951 ], [ 106.54050382500003, -7.054612118999955 ], [ 106.542002800000034, -7.016778252999927 ], [ 106.537149257000067, -6.982961612999929 ], [ 106.510804213000029, -6.963798794999946 ], [ 106.481455925000034, -6.967054945999905 ], [ 106.451701810000031, -6.955059068999958 ], [ 106.423869679000063, -6.963220839999906 ], [ 106.404633009000065, -6.991306247999944 ], [ 106.399996779227934, -6.97807504592663 ], [ 106.397309604954273, -6.966912936782592 ], [ 106.396947869748374, -6.953322034884025 ], [ 106.402994011864109, -6.931152846226894 ], [ 106.412657505139691, -6.904591160053997 ], [ 106.450794711606591, -6.836223240310289 ], [ 106.506088495187839, -6.783461602271132 ], [ 106.5084139342556, -6.767958672454768 ], [ 106.489190302290581, -6.750905449926563 ], [ 106.475857781911088, -6.744704278179881 ], [ 106.443921747190814, -6.734937432116794 ], [ 106.435240105846162, -6.720468031074802 ], [ 106.42655846630015, -6.696800224750575 ], [ 106.405267775887125, -6.524097589132452 ], [ 106.409505242872626, -6.491903171094464 ], [ 106.423871291127114, -6.463687838522958 ], [ 106.433689813134322, -6.438986505223056 ], [ 106.431622755585636, -6.412166435732445 ], [ 106.42635175982582, -6.387620131164113 ], [ 106.420770704804113, -6.370411879005019 ], [ 106.430589226811321, -6.35041309978476 ], [ 106.444231804654009, -6.341576429708482 ], [ 106.452396682061192, -6.337545668297935 ], [ 106.462421909643354, -6.33785572666045 ], [ 106.468623081390035, -6.345917249481488 ], [ 106.472757195588088, -6.359611505066937 ], [ 106.480095248896589, -6.372685642128715 ], [ 106.489448683809655, -6.3766130507517 ], [ 106.502109409721413, -6.370721938266854 ], [ 106.515441929201643, -6.360645032941932 ], [ 106.531564975742981, -6.35351368610776 ], [ 106.560297072252013, -6.35521900755117 ], [ 106.580760940365053, -6.363590589633986 ], [ 106.601121453891949, -6.376147962758296 ], [ 106.630887079175295, -6.384364516109542 ], [ 106.739149204572072, -6.386483249602293 ], [ 106.766175978738374, -6.370256850273449 ], [ 106.7624552756904, -6.354185478776856 ], [ 106.762920362784484, -6.301423841637018 ], [ 106.776717971157382, -6.309950452451403 ], [ 106.779818556581063, -6.317288506659281 ], [ 106.784469435615904, -6.325815117473724 ], [ 106.791187372199431, -6.332636406844699 ], [ 106.802866246180258, -6.339767754578247 ], [ 106.814441765574998, -6.349792983059729 ], [ 106.82451867089992, -6.351239922984064 ], [ 106.833665399338656, -6.348449395023579 ], [ 106.853715855402356, -6.335788669111821 ], [ 106.884670038191643, -6.351239922984064 ], [ 106.923892450276298, -6.381522312204936 ], [ 106.940893995961119, -6.373770846847094 ], [ 106.952727898673515, -6.345917249481488 ], [ 106.971021355551102, -6.277859388999616 ], [ 106.979702996895753, -6.262356459183252 ], [ 106.983268671212159, -6.249695733271494 ], [ 106.984973992655569, -6.235433037804455 ], [ 106.98466393429311, -6.200913180698763 ], [ 106.987661166929286, -6.145671074860218 ], [ 106.989314813327951, -6.082315768457931 ], [ 106.988291863000029, -6.07935963299991 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-JK", "NAME_1": "Jakarta Raya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.731049024000072, -6.058851820999905 ], [ 106.732432488000029, -6.066582940999922 ], [ 106.737803582000026, -6.083916924999926 ], [ 106.751963738000029, -6.095879815999922 ], [ 106.793223504000025, -6.104099216999941 ], [ 106.837738477000073, -6.102715752999927 ], [ 106.988291863000029, -6.07935963299991 ], [ 106.989314813327951, -6.082315768457931 ], [ 106.987661166929286, -6.145671074860218 ], [ 106.98466393429311, -6.200913180698763 ], [ 106.984973992655569, -6.235433037804455 ], [ 106.983268671212159, -6.249695733271494 ], [ 106.979702996895753, -6.262356459183252 ], [ 106.971021355551102, -6.277859388999616 ], [ 106.952727898673515, -6.345917249481488 ], [ 106.940893995961119, -6.373770846847094 ], [ 106.923892450276298, -6.381522312204936 ], [ 106.884670038191643, -6.351239922984064 ], [ 106.853715855402356, -6.335788669111821 ], [ 106.833665399338656, -6.348449395023579 ], [ 106.82451867089992, -6.351239922984064 ], [ 106.814441765574998, -6.349792983059729 ], [ 106.802866246180258, -6.339767754578247 ], [ 106.791187372199431, -6.332636406844699 ], [ 106.784469435615904, -6.325815117473724 ], [ 106.779818556581063, -6.317288506659281 ], [ 106.776717971157382, -6.309950452451403 ], [ 106.762920362784484, -6.301423841637018 ], [ 106.753463575983176, -6.299201754457386 ], [ 106.741991407577359, -6.284473971896318 ], [ 106.73062259285831, -6.243081149475472 ], [ 106.701993850036104, -6.21011158598094 ], [ 106.684113804308595, -6.101901136528227 ], [ 106.694552443040777, -6.086294853924358 ], [ 106.72679853702283, -6.061025078944226 ], [ 106.731049024000072, -6.058851820999905 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-BT", "NAME_1": "Banten" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.404633009000065, -6.991306247999944 ], [ 106.40162194100003, -6.993096612999921 ], [ 106.378916863000029, -6.999769789999959 ], [ 106.354502800000034, -7.002699476999908 ], [ 106.333018425000034, -7.000746351999908 ], [ 106.31967207100007, -6.996189059999949 ], [ 106.311045769000032, -6.99146900799991 ], [ 106.30241946700005, -6.98796965899993 ], [ 106.288584832000026, -6.986504815999922 ], [ 106.283376498000052, -6.983330987999921 ], [ 106.273203972000033, -6.969333591999941 ], [ 106.267832879000025, -6.96607838299991 ], [ 106.254242384000065, -6.964288018999923 ], [ 106.250336134000065, -6.959567966999941 ], [ 106.24935957100007, -6.95281340899993 ], [ 106.244151238000029, -6.945570570999905 ], [ 106.23755944100003, -6.940606377999927 ], [ 106.201161905000049, -6.913679238999919 ], [ 106.16837141600007, -6.915809251999917 ], [ 106.124707163000039, -6.896279079999942 ], [ 106.052984994000042, -6.83680556999991 ], [ 106.008311394000032, -6.82195403399993 ], [ 105.978706177000049, -6.817711560999953 ], [ 105.959573324000075, -6.817628373999923 ], [ 105.939626498000052, -6.820977471999925 ], [ 105.918955925000034, -6.823988539999959 ], [ 105.90162194100003, -6.829522393999923 ], [ 105.89819202700005, -6.843176040999936 ], [ 105.884379969000065, -6.847672883999905 ], [ 105.873734943000045, -6.834708033999959 ], [ 105.854502800000034, -6.838148695999905 ], [ 105.823132701000077, -6.839039911999919 ], [ 105.792417526000065, -6.845743527999957 ], [ 105.774743779000062, -6.850226666999959 ], [ 105.755603661000066, -6.844816069999922 ], [ 105.723317905000044, -6.838555596999925 ], [ 105.702891472000033, -6.835707289999959 ], [ 105.596531820000052, -6.849073272999931 ], [ 105.555187707000073, -6.855680446999941 ], [ 105.535120742000061, -6.872326969999961 ], [ 105.498460302000069, -6.860727447999921 ], [ 105.486134786000036, -6.867515500999957 ], [ 105.470957879000025, -6.853448174999926 ], [ 105.460459832000026, -6.845310153999947 ], [ 105.442230665000068, -6.842543226999908 ], [ 105.43881269600007, -6.845961195999905 ], [ 105.429698113000029, -6.852715752999927 ], [ 105.420095248000052, -6.856866143999923 ], [ 105.415537957000026, -6.85279713299991 ], [ 105.413584832000026, -6.845798434999949 ], [ 105.408946160000028, -6.838148695999905 ], [ 105.403086785000028, -6.832126559999949 ], [ 105.397959832000026, -6.829522393999923 ], [ 105.356125678000069, -6.812872490999951 ], [ 105.310784459000047, -6.810354247999953 ], [ 105.301117384000065, -6.81414153399993 ], [ 105.296397332000026, -6.83326588299991 ], [ 105.291188998000052, -6.840997002999927 ], [ 105.283702019000032, -6.84693775799991 ], [ 105.27466881600003, -6.849379164999959 ], [ 105.256114129000025, -6.842380466999941 ], [ 105.247080925000034, -6.82545338299991 ], [ 105.236175977000073, -6.787855726999908 ], [ 105.222178582000026, -6.778497002999927 ], [ 105.216807488000029, -6.772067966999941 ], [ 105.219737175000034, -6.764336846999925 ], [ 105.227061394000032, -6.762627862999921 ], [ 105.260752800000034, -6.767347914999959 ], [ 105.27466881600003, -6.761651299999926 ], [ 105.291840040000068, -6.748223565999922 ], [ 105.319346550000034, -6.719659112999921 ], [ 105.328868035000028, -6.702732028999947 ], [ 105.336273634000065, -6.68482838299991 ], [ 105.346364780000044, -6.670668226999908 ], [ 105.363780144000032, -6.664971612999921 ], [ 105.37623131600003, -6.670017184999949 ], [ 105.389821811000047, -6.681410414999959 ], [ 105.401377800000034, -6.69500090899993 ], [ 105.408213738000029, -6.705987237999921 ], [ 105.410817905000044, -6.71843840899993 ], [ 105.410411004000025, -6.728773695999905 ], [ 105.411631707000026, -6.738946221999925 ], [ 105.435394727000073, -6.778252862999921 ], [ 105.44068444100003, -6.794122002999927 ], [ 105.453623894000032, -6.808770440999922 ], [ 105.471202019000032, -6.815850518999923 ], [ 105.490082227000073, -6.809014580999929 ], [ 105.502614780000044, -6.791110934999949 ], [ 105.51726321700005, -6.744235934999949 ], [ 105.52857506600003, -6.723321221999925 ], [ 105.607432488000029, -6.651462497999944 ], [ 105.622243686000047, -6.631605726999908 ], [ 105.627940300000034, -6.615980726999908 ], [ 105.618974385000058, -6.532504875999905 ], [ 105.643858500000078, -6.48233328799995 ], [ 105.656242067000051, -6.473264317999906 ], [ 105.677789795000081, -6.474924131999956 ], [ 105.682238192000057, -6.51153452899996 ], [ 105.699111001000063, -6.520773518999931 ], [ 105.711364124000056, -6.534563343999935 ], [ 105.739085155000055, -6.530148685999961 ], [ 105.782234280000068, -6.512107304999915 ], [ 105.808534315000031, -6.477215533999924 ], [ 105.824091208000027, -6.434645719999935 ], [ 105.821299675000034, -6.401136976999908 ], [ 105.832367384000065, -6.228692315999922 ], [ 105.839610222000033, -6.192071221999925 ], [ 105.867198113000029, -6.110121351999908 ], [ 105.887868686000047, -6.070570570999905 ], [ 105.957041863000029, -5.998711846999925 ], [ 105.966807488000029, -5.992852471999925 ], [ 105.977305535000028, -5.983493747999944 ], [ 105.997243686000047, -5.917738539999959 ], [ 106.020030144000032, -5.893243096999925 ], [ 106.052744988000029, -5.881036065999922 ], [ 106.08521569100003, -5.885511976999908 ], [ 106.10710696700005, -5.910902601999908 ], [ 106.111582879000025, -5.975192966999941 ], [ 106.117930535000028, -5.98601653399993 ], [ 106.128672722000033, -5.990329684999949 ], [ 106.159190300000034, -6.009535414999959 ], [ 106.176036004000025, -6.013929945999905 ], [ 106.209483269000032, -5.998304945999905 ], [ 106.231455925000034, -5.966973565999922 ], [ 106.256521030000044, -5.941582940999922 ], [ 106.298838738000029, -5.94500090899993 ], [ 106.36101321700005, -5.99342213299991 ], [ 106.384938998000052, -6.000258070999905 ], [ 106.409353061000047, -6.004327080999929 ], [ 106.47006269600007, -6.034356377999927 ], [ 106.49537194100003, -6.03484465899993 ], [ 106.512054884000065, -6.024834893999923 ], [ 106.527679884000065, -6.012465101999908 ], [ 106.549327019000032, -6.006524346999925 ], [ 106.662933790000068, -6.007989190999922 ], [ 106.685394727000073, -6.012465101999908 ], [ 106.705821160000028, -6.020196221999925 ], [ 106.720876498000052, -6.03093840899993 ], [ 106.729014519000032, -6.047539971999925 ], [ 106.731049024000072, -6.058851820999905 ], [ 106.72679853702283, -6.061025078944226 ], [ 106.694552443040777, -6.086294853924358 ], [ 106.684113804308595, -6.101901136528227 ], [ 106.701993850036104, -6.21011158598094 ], [ 106.73062259285831, -6.243081149475472 ], [ 106.741991407577359, -6.284473971896318 ], [ 106.753463575983176, -6.299201754457386 ], [ 106.762920362784484, -6.301423841637018 ], [ 106.7624552756904, -6.354185478776856 ], [ 106.766175978738374, -6.370256850273449 ], [ 106.739149204572072, -6.386483249602293 ], [ 106.630887079175295, -6.384364516109542 ], [ 106.601121453891949, -6.376147962758296 ], [ 106.580760940365053, -6.363590589633986 ], [ 106.560297072252013, -6.35521900755117 ], [ 106.531564975742981, -6.35351368610776 ], [ 106.515441929201643, -6.360645032941932 ], [ 106.502109409721413, -6.370721938266854 ], [ 106.489448683809655, -6.3766130507517 ], [ 106.480095248896589, -6.372685642128715 ], [ 106.472757195588088, -6.359611505066937 ], [ 106.468623081390035, -6.345917249481488 ], [ 106.462421909643354, -6.33785572666045 ], [ 106.452396682061192, -6.337545668297935 ], [ 106.444231804654009, -6.341576429708482 ], [ 106.430589226811321, -6.35041309978476 ], [ 106.420770704804113, -6.370411879005019 ], [ 106.42635175982582, -6.387620131164113 ], [ 106.431622755585636, -6.412166435732445 ], [ 106.433689813134322, -6.438986505223056 ], [ 106.423871291127114, -6.463687838522958 ], [ 106.409505242872626, -6.491903171094464 ], [ 106.405267775887125, -6.524097589132452 ], [ 106.42655846630015, -6.696800224750575 ], [ 106.435240105846162, -6.720468031074802 ], [ 106.443921747190814, -6.734937432116794 ], [ 106.475857781911088, -6.744704278179881 ], [ 106.489190302290581, -6.750905449926563 ], [ 106.5084139342556, -6.767958672454768 ], [ 106.506088495187839, -6.783461602271132 ], [ 106.450794711606591, -6.836223240310289 ], [ 106.412657505139691, -6.904591160053997 ], [ 106.402994011864109, -6.931152846226894 ], [ 106.396947869748374, -6.953322034884025 ], [ 106.397309604954273, -6.966912936782592 ], [ 106.399996779227934, -6.97807504592663 ], [ 106.404633009000065, -6.991306247999944 ] ] ], [ [ [ 105.264170769000032, -6.527927341999941 ], [ 105.265635613000029, -6.553317966999941 ], [ 105.263845248000052, -6.592380466999941 ], [ 105.256032748000052, -6.62818775799991 ], [ 105.23991946700005, -6.643975518999923 ], [ 105.222422722000033, -6.649346612999921 ], [ 105.203868035000028, -6.673272393999923 ], [ 105.192149285000028, -6.678806247999944 ], [ 105.18295332100007, -6.67156340899993 ], [ 105.185069207000026, -6.655043226999908 ], [ 105.193532748000052, -6.636651299999926 ], [ 105.202159050000034, -6.623467705999929 ], [ 105.189952019000032, -6.617852471999925 ], [ 105.18295332100007, -6.607679945999905 ], [ 105.17546634200005, -6.583103122999944 ], [ 105.13209069100003, -6.626885674999926 ], [ 105.120127800000034, -6.630954684999949 ], [ 105.117686394000032, -6.612399997999944 ], [ 105.13795006600003, -6.587334893999923 ], [ 105.188487175000034, -6.547621351999908 ], [ 105.195811394000032, -6.555108330999929 ], [ 105.204112175000034, -6.545179945999905 ], [ 105.215586785000028, -6.538832289999959 ], [ 105.225596550000034, -6.53639088299991 ], [ 105.229991082000026, -6.538181247999944 ], [ 105.233571811000047, -6.531833591999941 ], [ 105.242035352000073, -6.528415622999944 ], [ 105.25318444100003, -6.527276299999926 ], [ 105.264170769000032, -6.527927341999941 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-YO", "NAME_1": "Yogyakarta" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.843559797243316, -8.200842658125852 ], [ 110.715342644000032, -8.193129164999959 ], [ 110.705577019000032, -8.190036716999941 ], [ 110.691254102000073, -8.175876559999949 ], [ 110.681488477000073, -8.172621351999908 ], [ 110.660655144000032, -8.169854424999926 ], [ 110.639414910000028, -8.162774346999925 ], [ 110.602712436000047, -8.144789320999905 ], [ 110.602712436000047, -8.151543877999927 ], [ 110.549082879000025, -8.127618096999925 ], [ 110.52116946700005, -8.120212497999944 ], [ 110.496267123000052, -8.117445570999905 ], [ 110.476735873000052, -8.111911716999941 ], [ 110.410899285000028, -8.07586028399993 ], [ 110.400563998000052, -8.074639580999929 ], [ 110.389414910000028, -8.074883721999925 ], [ 110.380381707000026, -8.073174737999921 ], [ 110.376719597000033, -8.066176039999959 ], [ 110.352305535000028, -8.041680596999925 ], [ 110.347422722000033, -8.038832289999959 ], [ 110.328379754000025, -8.02117278399993 ], [ 110.319102410000028, -8.018731377999927 ], [ 110.287364129000025, -8.015069268999923 ], [ 110.042739562344593, -7.889100591668173 ], [ 110.042771845244431, -7.888872166117608 ], [ 110.046182489030627, -7.864739271799976 ], [ 110.049179721666803, -7.855437513730294 ], [ 110.064941033901562, -7.83724740964027 ], [ 110.116669143166405, -7.761593112532125 ], [ 110.125247429924912, -7.744074802010516 ], [ 110.128348016247912, -7.72428272926453 ], [ 110.126591017961061, -7.698082778297589 ], [ 110.130001661747258, -7.686300550629937 ], [ 110.136512892755775, -7.676792086985245 ], [ 110.159043816618805, -7.667593681703067 ], [ 110.219608595959869, -7.675396823904293 ], [ 110.228290236405257, -7.67555185263592 ], [ 110.234594760939444, -7.674466647917484 ], [ 110.240434198379489, -7.671934503274713 ], [ 110.245963575658436, -7.672451267212239 ], [ 110.250407749118267, -7.677257174978649 ], [ 110.253198277078752, -7.703663831520601 ], [ 110.255678745777459, -7.712190444133682 ], [ 110.25877933210046, -7.715291028658044 ], [ 110.267150914183276, -7.706764417843601 ], [ 110.287098015660831, -7.681597995650975 ], [ 110.301309035183806, -7.669143975314228 ], [ 110.411224806979192, -7.589924004788998 ], [ 110.437683140364584, -7.560055026718089 ], [ 110.441300489725791, -7.568943372738488 ], [ 110.474476759694653, -7.72025196695472 ], [ 110.490289747873533, -7.757097263128173 ], [ 110.506619500889201, -7.783090508520161 ], [ 110.536901890110073, -7.809858901167388 ], [ 110.578656446837499, -7.820969333467986 ], [ 110.633123407219443, -7.820969333467986 ], [ 110.653690627220612, -7.822984714173231 ], [ 110.689244012201357, -7.819780775962045 ], [ 110.705212030011126, -7.825310154140311 ], [ 110.753322789015442, -7.832596530605429 ], [ 110.773063185817307, -7.843448582286271 ], [ 110.781331415112675, -7.854042249750023 ], [ 110.784742058898871, -7.862878919826301 ], [ 110.786602410872547, -7.873627617820318 ], [ 110.787532586859356, -7.920188084112795 ], [ 110.792803582619172, -7.947059827748888 ], [ 110.798746372846779, -8.12167449308339 ], [ 110.80241539905137, -8.132268161446518 ], [ 110.810838657977627, -8.138934421186605 ], [ 110.818021681655239, -8.13769418683728 ], [ 110.824842971026271, -8.132888279070812 ], [ 110.831354201135412, -8.132371515133343 ], [ 110.837038608944624, -8.133250014276769 ], [ 110.843549839053765, -8.200739433977731 ], [ 110.843559797243316, -8.200842658125852 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-SG", "NAME_1": "Sulawesi Tenggara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.065196160000028, -5.962497653999947 ], [ 124.073985222000033, -5.985284112999921 ], [ 124.071136915000011, -6.011325778999947 ], [ 124.059336785000028, -6.027439059999949 ], [ 124.041270379000025, -6.02076588299991 ], [ 124.037445509, -6.011651299999926 ], [ 124.035899285000028, -5.987399997999944 ], [ 124.030446811000047, -5.976006768999923 ], [ 124.018565300000091, -5.967950127999927 ], [ 123.992930535000028, -5.961195570999905 ], [ 123.982595248000052, -5.955254815999922 ], [ 123.968923373000052, -5.935316664999959 ], [ 123.96607506600003, -5.915459893999923 ], [ 123.970713738000086, -5.893975518999923 ], [ 123.979177280000044, -5.869886976999908 ], [ 123.986094597000033, -5.879815362999921 ], [ 124.037445509, -5.914320570999905 ], [ 124.046397332000083, -5.925713799999926 ], [ 124.057627800000091, -5.951104424999926 ], [ 124.065196160000028, -5.962497653999947 ] ] ], [ [ [ 123.777110222000033, -5.513604424999926 ], [ 123.801442905000044, -5.52271900799991 ], [ 123.808360222000033, -5.545017184999949 ], [ 123.809255405000044, -5.57195403399993 ], [ 123.814707879000025, -5.595635674999926 ], [ 123.793304884, -5.58912525799991 ], [ 123.778168165000011, -5.572686455999929 ], [ 123.75318444100003, -5.534112237999921 ], [ 123.734629754000025, -5.518324476999908 ], [ 123.716644727000016, -5.506524346999925 ], [ 123.701670769000089, -5.493096612999921 ], [ 123.691172722000033, -5.472751559999949 ], [ 123.704844597000033, -5.472751559999949 ], [ 123.733246290000011, -5.475274346999925 ], [ 123.749766472000033, -5.489841403999947 ], [ 123.761973504000025, -5.505954684999949 ], [ 123.777110222000033, -5.513604424999926 ] ] ], [ [ [ 123.539724155000044, -5.245538018999923 ], [ 123.563487175000091, -5.252618096999925 ], [ 123.595550977000016, -5.256768487999921 ], [ 123.623789910000028, -5.266534112999921 ], [ 123.635915561000047, -5.290785414999959 ], [ 123.63835696700005, -5.343519789999959 ], [ 123.633799675000091, -5.36687590899993 ], [ 123.619151238000086, -5.376560153999947 ], [ 123.590586785000028, -5.374118747999944 ], [ 123.572113477000016, -5.366143487999921 ], [ 123.559255405000044, -5.351332289999959 ], [ 123.522959832000083, -5.277439059999949 ], [ 123.519867384, -5.251722914999959 ], [ 123.539724155000044, -5.245538018999923 ] ] ], [ [ [ 122.321299675000091, -3.511895440999922 ], [ 122.333018425000091, -3.516696872999944 ], [ 122.344004754000025, -3.52898528399993 ], [ 122.352224155000044, -3.543877862999921 ], [ 122.355479363000086, -3.556573174999926 ], [ 122.346527540000011, -3.557305596999925 ], [ 122.326670769000089, -3.562269789999959 ], [ 122.305674675000091, -3.570733330999929 ], [ 122.293304884, -3.580824476999908 ], [ 122.284678582000083, -3.562920830999929 ], [ 122.290375196000014, -3.541192315999922 ], [ 122.304860873000052, -3.522067966999941 ], [ 122.321299675000091, -3.511895440999922 ] ] ], [ [ [ 122.439626498000052, -3.419040622999944 ], [ 122.461273634, -3.436130466999941 ], [ 122.464691602000016, -3.440850518999923 ], [ 122.463389519000089, -3.452243747999944 ], [ 122.45866946700005, -3.466973565999922 ], [ 122.449229363000086, -3.47975025799991 ], [ 122.433604363000086, -3.485284112999921 ], [ 122.425791863000086, -3.477308851999908 ], [ 122.415537957000083, -3.459649346999925 ], [ 122.402598504000025, -3.430596612999921 ], [ 122.402110222000033, -3.420505466999941 ], [ 122.403493686000047, -3.407972914999959 ], [ 122.406504754000025, -3.39617278399993 ], [ 122.412282748000052, -3.387790622999944 ], [ 122.415375196000014, -3.385430596999925 ], [ 122.417816602000016, -3.384535414999959 ], [ 122.420420769000089, -3.385186455999929 ], [ 122.423594597000033, -3.387465101999908 ], [ 122.428477410000028, -3.394301039999959 ], [ 122.434906446000014, -3.41139088299991 ], [ 122.439626498000052, -3.419040622999944 ] ] ], [ [ [ 122.339366082000083, -3.23756275799991 ], [ 122.321299675000091, -3.25709400799991 ], [ 122.295664910000028, -3.312920830999929 ], [ 122.303558790000011, -3.341241143999923 ], [ 122.316905144000089, -3.344821872999944 ], [ 122.359385613000086, -3.363457940999922 ], [ 122.372569207000083, -3.372247002999927 ], [ 122.380625847000033, -3.391534112999921 ], [ 122.383636915000011, -3.418633721999925 ], [ 122.378428582000083, -3.43873463299991 ], [ 122.361582879000025, -3.437432549999926 ], [ 122.368907097000033, -3.425713799999926 ], [ 122.361989780000044, -3.41334400799991 ], [ 122.346202019000089, -3.404473565999922 ], [ 122.327484571000014, -3.403252862999921 ], [ 122.332041863000086, -3.393487237999921 ], [ 122.334971550000091, -3.389743747999944 ], [ 122.325205925000091, -3.375258070999962 ], [ 122.311045769000089, -3.368584893999923 ], [ 122.295095248000052, -3.364027601999908 ], [ 122.279633009, -3.355564059999949 ], [ 122.276866082000083, -3.366306247999944 ], [ 122.272471550000091, -3.37623463299991 ], [ 122.264821811000047, -3.381117445999962 ], [ 122.251719597000033, -3.376071872999944 ], [ 122.254405144000089, -3.395114841999941 ], [ 122.261241082000083, -3.409926039999959 ], [ 122.271250847000033, -3.422295830999929 ], [ 122.283457879000025, -3.434014580999929 ], [ 122.292165561000047, -3.45086028399993 ], [ 122.290537957000083, -3.471368096999925 ], [ 122.282725457000083, -3.492771091999941 ], [ 122.266612175000091, -3.522881768999923 ], [ 122.262461785000028, -3.52898528399993 ], [ 122.256602410000028, -3.533461195999905 ], [ 122.245616082000083, -3.539808851999908 ], [ 122.234385613000086, -3.54420338299991 ], [ 122.210703972000033, -3.550551039999959 ], [ 122.200531446000014, -3.556573174999926 ], [ 122.197927280000044, -3.571709893999923 ], [ 122.205414259, -3.593845309999949 ], [ 122.225108269000089, -3.629164320999905 ], [ 122.23560631600003, -3.643161716999941 ], [ 122.250498894000089, -3.656182549999926 ], [ 122.26880944100003, -3.665785414999959 ], [ 122.29029381600003, -3.66961028399993 ], [ 122.305430535000028, -3.674981377999927 ], [ 122.315196160000028, -3.688164971999925 ], [ 122.323578321000014, -3.704278252999927 ], [ 122.334971550000091, -3.71803150799991 ], [ 122.355235222000033, -3.72779713299991 ], [ 122.376475457000083, -3.729180596999925 ], [ 122.419688347000033, -3.724786065999922 ], [ 122.441416863000086, -3.731052341999941 ], [ 122.453379754000025, -3.746270440999922 ], [ 122.470957879000025, -3.786309502999927 ], [ 122.529551629000025, -3.865411065999922 ], [ 122.548675977000016, -3.878676039999959 ], [ 122.568695509, -3.882907809999949 ], [ 122.636892123000052, -3.883477471999925 ], [ 122.647308790000011, -3.884942315999922 ], [ 122.656423373000052, -3.889336846999925 ], [ 122.66334069100003, -3.897149346999925 ], [ 122.668955925000091, -3.908623955999929 ], [ 122.66724694100003, -3.918877862999921 ], [ 122.64616946700005, -3.92546965899993 ], [ 122.638194207000083, -3.930352471999925 ], [ 122.631846550000091, -3.936211846999925 ], [ 122.624359571000014, -3.95240650799991 ], [ 122.613291863000086, -3.956475518999923 ], [ 122.588145379000025, -3.957614841999941 ], [ 122.565765821000014, -3.963962497999944 ], [ 122.551280144000089, -3.970798434999949 ], [ 122.552500847000033, -3.976332289999959 ], [ 122.600759311000047, -3.98015715899993 ], [ 122.622813347000033, -3.985039971999925 ], [ 122.642100457000083, -3.993747653999947 ], [ 122.656423373000052, -4.006605726999908 ], [ 122.663828972000033, -4.02312590899993 ], [ 122.665537957000083, -4.042168877999927 ], [ 122.663259311000047, -4.084567966999941 ], [ 122.666514519000089, -4.102471612999921 ], [ 122.67505944100003, -4.12273528399993 ], [ 122.688161655000044, -4.13836028399993 ], [ 122.704274936000047, -4.142510674999926 ], [ 122.707774285000028, -4.139092705999929 ], [ 122.71021569100003, -4.13209400799991 ], [ 122.711436394000089, -4.123467705999929 ], [ 122.711110873000052, -4.115329684999949 ], [ 122.739024285000028, -4.129327080999929 ], [ 122.778168165000011, -4.136976820999905 ], [ 122.816416863000086, -4.137302341999941 ], [ 122.842051629000025, -4.128838799999926 ], [ 122.789317254000025, -4.073988539999959 ], [ 122.775157097000033, -4.048272393999923 ], [ 122.807383660000028, -4.04070403399993 ], [ 122.84498131600003, -4.057712497999944 ], [ 122.872813347000033, -4.093194268999923 ], [ 122.89185631600003, -4.136488539999959 ], [ 122.907074415000011, -4.195977471999925 ], [ 122.908946160000028, -4.216729424999926 ], [ 122.907237175000091, -4.235528252999927 ], [ 122.892425977000016, -4.266045830999929 ], [ 122.893890821000014, -4.286065362999921 ], [ 122.90357506600003, -4.328220309999949 ], [ 122.905284050000091, -4.370212497999944 ], [ 122.900157097000033, -4.388767184999949 ], [ 122.88640384200005, -4.396416924999926 ], [ 122.86687259200005, -4.400323174999926 ], [ 122.859141472000033, -4.410332940999922 ], [ 122.854014519000089, -4.423923434999949 ], [ 122.842051629000025, -4.438083591999941 ], [ 122.82740319100003, -4.41961028399993 ], [ 122.758799675000091, -4.369073174999926 ], [ 122.722911004000025, -4.332452080999929 ], [ 122.699717644000089, -4.318291924999926 ], [ 122.670176629000025, -4.314548434999949 ], [ 122.680837436000047, -4.334161065999922 ], [ 122.721690300000091, -4.372491143999923 ], [ 122.72779381600003, -4.381117445999905 ], [ 122.738129102000016, -4.400567315999922 ], [ 122.745127800000091, -4.410088799999926 ], [ 122.749359571000014, -4.410902601999908 ], [ 122.762217644000089, -4.409112237999921 ], [ 122.766286655000044, -4.410088799999926 ], [ 122.770274285000028, -4.416761976999908 ], [ 122.768728061000047, -4.420586846999925 ], [ 122.765879754000025, -4.424086195999905 ], [ 122.766286655000044, -4.430433851999908 ], [ 122.771006707000083, -4.442559502999927 ], [ 122.772959832000083, -4.450127862999921 ], [ 122.77312259200005, -4.46843840899993 ], [ 122.76880944100003, -4.478448174999926 ], [ 122.758148634, -4.484795830999929 ], [ 122.74577884200005, -4.486504815999922 ], [ 122.73560631600003, -4.482354424999926 ], [ 122.711110873000052, -4.451755466999941 ], [ 122.699961785000028, -4.451836846999925 ], [ 122.697276238000086, -4.457940362999921 ], [ 122.699880405000044, -4.46607838299991 ], [ 122.704274936000047, -4.472100518999923 ], [ 122.691172722000033, -4.483819268999923 ], [ 122.682302280000044, -4.480401299999926 ], [ 122.670176629000025, -4.458428643999923 ], [ 122.670095248000052, -4.432224216999941 ], [ 122.640472852000016, -4.408461195999905 ], [ 122.599131707000083, -4.396742445999905 ], [ 122.56373131600003, -4.406914971999925 ], [ 122.531423373000052, -4.427911065999922 ], [ 122.497569207000083, -4.43523528399993 ], [ 122.463633660000028, -4.430840752999927 ], [ 122.430430535000028, -4.416924737999921 ], [ 122.391937696000014, -4.438083591999941 ], [ 122.350352410000028, -4.452894789999959 ], [ 122.306000196000014, -4.461683851999908 ], [ 122.240407748000052, -4.465915622999944 ], [ 122.233246290000011, -4.46803150799991 ], [ 122.225108269000089, -4.472100518999923 ], [ 122.208994988000086, -4.484551690999922 ], [ 122.199392123000052, -4.490166924999926 ], [ 122.176524285000028, -4.49578215899993 ], [ 122.158946160000028, -4.509942315999922 ], [ 122.152842644000089, -4.513116143999923 ], [ 122.116221550000091, -4.517510674999926 ], [ 122.107758009, -4.519952080999929 ], [ 122.08716881600003, -4.543226820999905 ], [ 122.06568444100003, -4.582289320999905 ], [ 122.048350457000083, -4.625909112999921 ], [ 122.039561394000089, -4.66334400799991 ], [ 122.042979363000086, -4.707777601999908 ], [ 122.059336785000028, -4.742445570999905 ], [ 122.082774285000028, -4.770196221999925 ], [ 122.107758009, -4.793633721999925 ], [ 122.111582879000025, -4.795830987999921 ], [ 122.128916863000086, -4.80046965899993 ], [ 122.128916863000086, -4.80787525799991 ], [ 122.11060631600003, -4.813246351999908 ], [ 122.090993686000047, -4.836683851999908 ], [ 122.07740319100003, -4.842054945999905 ], [ 122.055186394000089, -4.844333591999941 ], [ 122.011241082000083, -4.853692315999922 ], [ 121.991709832000083, -4.855726820999905 ], [ 121.887461785000028, -4.846368096999925 ], [ 121.869639519000089, -4.840915622999944 ], [ 121.840830925000091, -4.82154713299991 ], [ 121.823252800000091, -4.813083591999941 ], [ 121.808767123000052, -4.814060153999947 ], [ 121.79224694100003, -4.818780205999929 ], [ 121.769541863000086, -4.82154713299991 ], [ 121.750824415000011, -4.816013278999947 ], [ 121.742442254000025, -4.81609465899993 ], [ 121.739024285000028, -4.824639580999929 ], [ 121.734873894000089, -4.828220309999949 ], [ 121.725352410000028, -4.832289320999905 ], [ 121.713877800000091, -4.83521900799991 ], [ 121.70435631600003, -4.83521900799991 ], [ 121.685557488000086, -4.822442315999922 ], [ 121.657237175000091, -4.787204684999949 ], [ 121.639170769000089, -4.779961846999925 ], [ 121.625498894000089, -4.776788018999923 ], [ 121.566579623000052, -4.752618096999925 ], [ 121.554209832000083, -4.743747653999947 ], [ 121.503428582000083, -4.674899997999944 ], [ 121.498301629000025, -4.66334400799991 ], [ 121.494395379000025, -4.660902601999908 ], [ 121.491221550000091, -4.661309502999927 ], [ 121.488047722000033, -4.661065362999921 ], [ 121.484629754000025, -4.656426690999922 ], [ 121.477712436000047, -4.622979424999926 ], [ 121.480479363000086, -4.580824476999908 ], [ 121.498301629000025, -4.500095309999949 ], [ 121.520518425000091, -4.439629815999922 ], [ 121.529307488000086, -4.397556247999944 ], [ 121.532969597000033, -4.356215101999908 ], [ 121.529307488000086, -4.277520440999922 ], [ 121.533539259, -4.24773528399993 ], [ 121.533213738000086, -4.238051039999959 ], [ 121.536306186000047, -4.230564059999949 ], [ 121.546722852000016, -4.225192966999941 ], [ 121.559580925000091, -4.225192966999941 ], [ 121.563161655000044, -4.232517184999949 ], [ 121.56023196700005, -4.243096612999921 ], [ 121.552989129000025, -4.252373955999929 ], [ 121.584971550000091, -4.236748955999929 ], [ 121.617198113000086, -4.166924737999921 ], [ 121.627696160000028, -4.087090752999927 ], [ 121.594493035000028, -4.04070403399993 ], [ 121.555186394000089, -4.021416924999926 ], [ 121.430023634, -3.999200127999927 ], [ 121.354258660000028, -3.96843840899993 ], [ 121.351084832000083, -3.95826588299991 ], [ 121.336924675000091, -3.943536065999922 ], [ 121.333750847000033, -3.934340101999908 ], [ 121.331390821000014, -3.923028252999927 ], [ 121.325694207000083, -3.912530205999929 ], [ 121.312673373000052, -3.897393487999921 ], [ 121.29615319100003, -3.886814059999949 ], [ 121.28443444100003, -3.88990650799991 ], [ 121.272634311000047, -3.898207289999959 ], [ 121.255625847000033, -3.903008721999925 ], [ 121.246104363000086, -3.89421965899993 ], [ 121.251312696000014, -3.874118747999944 ], [ 121.26099694100003, -3.85125090899993 ], [ 121.26490319100003, -3.834649346999925 ], [ 121.25513756600003, -3.81568775799991 ], [ 121.240244988000086, -3.80787525799991 ], [ 121.200205925000091, -3.807305596999925 ], [ 121.176117384, -3.804457289999959 ], [ 121.160329623000052, -3.79615650799991 ], [ 121.10515384200005, -3.730238539999959 ], [ 120.89380944100003, -3.539157809999949 ], [ 120.874522332000083, -3.498955987999921 ], [ 120.867686394000089, -3.469496351999908 ], [ 120.867686394000089, -3.457940362999921 ], [ 120.870290561000047, -3.445733330999929 ], [ 120.879405144000089, -3.42351653399993 ], [ 120.881358269000089, -3.413262627999927 ], [ 120.889414910000028, -3.388767184999949 ], [ 120.908539259, -3.367608330999929 ], [ 120.931407097000033, -3.347914320999962 ], [ 120.950205925000091, -3.327569268999923 ], [ 120.96802819100003, -3.285739841999941 ], [ 120.979014519000089, -3.267022393999923 ], [ 120.994883660000028, -3.259372653999947 ], [ 121.00554446700005, -3.257256768999923 ], [ 121.01531009200005, -3.25164153399993 ], [ 121.022471550000091, -3.24382903399993 ], [ 121.025238477000016, -3.235039971999925 ], [ 121.029795769000089, -3.226820570999962 ], [ 121.040375196000014, -3.220961195999962 ], [ 121.051931186000047, -3.216403903999947 ], [ 121.059336785000028, -3.211521091999941 ], [ 121.066742384, -3.193780205999929 ], [ 121.073415561000047, -3.139418226999908 ], [ 121.073008660000028, -3.114678643999923 ], [ 121.068369988000086, -3.090427341999941 ], [ 121.063324415000011, -3.078708591999941 ], [ 121.05632571700005, -3.073663018999923 ], [ 121.04810631600003, -3.066176039999959 ], [ 121.052907748000052, -3.049493096999925 ], [ 121.066905144000089, -3.022149346999925 ], [ 121.068532748000052, -3.007989190999922 ], [ 121.076833530000044, -2.989434502999927 ], [ 121.080414259, -2.977634372999944 ], [ 121.079437696000014, -2.936700127999927 ], [ 121.083832227000016, -2.926364841999941 ], [ 121.086369028420592, -2.910177633995616 ], [ 121.086852248032756, -2.909899590893417 ], [ 121.127883335247702, -2.885611666944897 ], [ 121.163540073915215, -2.873467705869928 ], [ 121.20565636584854, -2.866491387767326 ], [ 121.226275262693207, -2.865561211780516 ], [ 121.243741897270638, -2.867266534123246 ], [ 121.260795118899523, -2.871504001108747 ], [ 121.277641635852774, -2.87894540810413 ], [ 121.350091993850356, -2.927004490265006 ], [ 121.432464226642651, -2.994183851603452 ], [ 121.475252313043711, -3.019763685845419 ], [ 121.488481479736492, -3.02208912491318 ], [ 121.502330764053454, -3.02095224425068 ], [ 121.515353225171111, -3.017541598665844 ], [ 121.536540561897368, -3.009221693426412 ], [ 121.598035516325922, -2.972841485246363 ], [ 121.670175815961102, -2.982711684096955 ], [ 121.781435174893318, -2.985502211158121 ], [ 121.816885207086557, -2.995320733165329 ], [ 122.057955764247026, -3.092627454993078 ], [ 122.078109572198969, -3.093971042129908 ], [ 122.135677118004537, -3.088906751945046 ], [ 122.153557163732103, -3.089940280719361 ], [ 122.169990268635956, -3.093712659711514 ], [ 122.187560256001007, -3.100327243507479 ], [ 122.207197300015309, -3.111489352651517 ], [ 122.291843295931358, -3.179237155670194 ], [ 122.339023878948751, -3.237114759838278 ], [ 122.339366082000083, -3.23756275799991 ] ] ], [ [ [ 122.067393425000091, -5.215020440999922 ], [ 122.064219597000033, -5.223565362999921 ], [ 122.057139519000089, -5.226657809999949 ], [ 122.050140821000014, -5.230889580999929 ], [ 122.046885613000086, -5.242364190999922 ], [ 122.051768425000091, -5.269789320999905 ], [ 122.052989129000025, -5.432305596999925 ], [ 122.046885613000086, -5.451592705999929 ], [ 122.031993035000028, -5.465264580999929 ], [ 122.014414910000028, -5.465264580999929 ], [ 121.996755405000044, -5.462823174999926 ], [ 121.981455925000091, -5.468926690999922 ], [ 121.968272332000083, -5.467950127999927 ], [ 121.939219597000033, -5.420993747999944 ], [ 121.92351321700005, -5.403741143999923 ], [ 121.909922722000033, -5.399509372999944 ], [ 121.900563998000052, -5.399102471999925 ], [ 121.892100457000083, -5.39771900799991 ], [ 121.881846550000091, -5.390232028999947 ], [ 121.876963738000086, -5.381931247999944 ], [ 121.86841881600003, -5.359958591999941 ], [ 121.827159050000091, -5.300713799999926 ], [ 121.806813998000052, -5.259860934999949 ], [ 121.81373131600003, -5.24968840899993 ], [ 121.81218509200005, -5.220961195999905 ], [ 121.817230665000011, -5.20826588299991 ], [ 121.826182488000086, -5.197686455999929 ], [ 121.833750847000033, -5.185316664999959 ], [ 121.838877800000091, -5.172539971999925 ], [ 121.840830925000091, -5.160088799999926 ], [ 121.846364780000044, -5.152764580999929 ], [ 121.872569207000083, -5.148532809999949 ], [ 121.881846550000091, -5.143731377999927 ], [ 121.881521030000044, -5.133884372999944 ], [ 121.873057488000086, -5.122247002999927 ], [ 121.853851759, -5.102146091999941 ], [ 121.86491946700005, -5.086521091999941 ], [ 121.880381707000083, -5.072198174999926 ], [ 121.897959832000083, -5.060967705999929 ], [ 121.916026238000086, -5.05437590899993 ], [ 121.910166863000086, -5.070570570999905 ], [ 121.910899285000028, -5.085707289999959 ], [ 121.919444207000083, -5.095472914999959 ], [ 121.937022332000083, -5.095879815999922 ], [ 121.944183790000011, -5.091892184999949 ], [ 121.959483269000089, -5.071221612999921 ], [ 121.969574415000011, -5.066989841999941 ], [ 121.977305535000028, -5.070489190999922 ], [ 121.982676629000025, -5.079034112999921 ], [ 121.996592644000089, -5.137872002999927 ], [ 122.009776238000086, -5.153741143999923 ], [ 122.033376498000052, -5.149997653999947 ], [ 122.045095248000052, -5.165134372999944 ], [ 122.056162957000083, -5.175713799999926 ], [ 122.064219597000033, -5.189873955999929 ], [ 122.067393425000091, -5.215020440999922 ] ] ], [ [ [ 122.780039910000028, -4.916599216999941 ], [ 122.780609571000014, -4.939060153999947 ], [ 122.77857506600003, -4.949476820999905 ], [ 122.77312259200005, -4.958184502999927 ], [ 122.765391472000033, -4.957940362999921 ], [ 122.753916863000086, -4.953871351999908 ], [ 122.743500196000014, -4.95281340899993 ], [ 122.739024285000028, -4.961846612999921 ], [ 122.734873894000089, -4.974704684999949 ], [ 122.724945509, -4.989678643999923 ], [ 122.66138756600003, -5.055352471999925 ], [ 122.643402540000011, -5.078789971999925 ], [ 122.604258660000028, -5.159926039999959 ], [ 122.60124759200005, -5.18092213299991 ], [ 122.606618686000047, -5.190524997999944 ], [ 122.618662957000083, -5.191176039999959 ], [ 122.630625847000033, -5.190199476999908 ], [ 122.63599694100003, -5.194268487999921 ], [ 122.634532097000033, -5.206963799999926 ], [ 122.629893425000091, -5.216729424999926 ], [ 122.622406446000014, -5.222832940999922 ], [ 122.598155144000089, -5.228448174999926 ], [ 122.606455925000091, -5.235772393999923 ], [ 122.629161004000025, -5.245538018999923 ], [ 122.64771569100003, -5.256117445999905 ], [ 122.652354363000086, -5.261814059999949 ], [ 122.656423373000052, -5.273370049999926 ], [ 122.658539259, -5.296482028999947 ], [ 122.655446811000047, -5.322523695999905 ], [ 122.647471550000091, -5.344903252999927 ], [ 122.63599694100003, -5.355401299999926 ], [ 122.624522332000083, -5.342461846999925 ], [ 122.615977410000028, -5.356052341999941 ], [ 122.61060631600003, -5.380466403999947 ], [ 122.60865319100003, -5.400485934999949 ], [ 122.605479363000086, -5.413018487999921 ], [ 122.598399285000028, -5.420098565999922 ], [ 122.59148196700005, -5.420668226999908 ], [ 122.588145379000025, -5.413995049999926 ], [ 122.584483269000089, -5.409112237999921 ], [ 122.576182488000086, -5.414320570999905 ], [ 122.56373131600003, -5.427666924999926 ], [ 122.543467644000089, -5.428806247999944 ], [ 122.540863477000016, -5.38795338299991 ], [ 122.542816602000016, -5.338799737999921 ], [ 122.536631707000083, -5.315036716999941 ], [ 122.528819207000083, -5.306410414999959 ], [ 122.520843946000014, -5.291680596999925 ], [ 122.511485222000033, -5.286716403999947 ], [ 122.498789910000028, -5.307549737999921 ], [ 122.496918165000011, -5.318291924999926 ], [ 122.499196811000047, -5.339288018999923 ], [ 122.498789910000028, -5.349216403999947 ], [ 122.485118035000028, -5.383233330999929 ], [ 122.468597852000016, -5.396416924999926 ], [ 122.450205925000091, -5.399346612999921 ], [ 122.431976759, -5.392673434999949 ], [ 122.416270379000025, -5.376560153999947 ], [ 122.407237175000091, -5.35320403399993 ], [ 122.414886915000011, -5.339288018999923 ], [ 122.451019727000016, -5.321221612999921 ], [ 122.451019727000016, -5.315036716999941 ], [ 122.433604363000086, -5.315036716999941 ], [ 122.42156009200005, -5.311944268999923 ], [ 122.410166863000086, -5.311944268999923 ], [ 122.395192905000044, -5.321221612999921 ], [ 122.387217644000089, -5.330661716999941 ], [ 122.383636915000011, -5.341566664999959 ], [ 122.382660352000016, -5.373142184999949 ], [ 122.377207879000025, -5.384942315999922 ], [ 122.363942905000044, -5.389825127999927 ], [ 122.313324415000011, -5.389580987999921 ], [ 122.300547722000033, -5.386976820999905 ], [ 122.290212436000047, -5.380791924999926 ], [ 122.279633009, -5.369724216999941 ], [ 122.287119988000086, -5.362888278999947 ], [ 122.276215040000011, -5.345961195999905 ], [ 122.275157097000033, -5.327569268999923 ], [ 122.281504754000025, -5.307793877999927 ], [ 122.307139519000089, -5.263929945999905 ], [ 122.31568444100003, -5.242608330999929 ], [ 122.320078972000033, -5.219496351999908 ], [ 122.326019727000016, -5.144707940999922 ], [ 122.332530144000089, -5.123793226999908 ], [ 122.341807488000086, -5.108982028999947 ], [ 122.35084069100003, -5.105075778999947 ], [ 122.377207879000025, -5.098239841999941 ], [ 122.382660352000016, -5.092461846999925 ], [ 122.385101759, -5.08717213299991 ], [ 122.402598504000025, -5.06178150799991 ], [ 122.396006707000083, -5.048435153999947 ], [ 122.391774936000047, -5.030450127999927 ], [ 122.385915561000047, -4.978773695999905 ], [ 122.372243686000047, -4.955010674999926 ], [ 122.365244988000086, -4.915459893999923 ], [ 122.354991082000083, -4.884860934999949 ], [ 122.341563347000033, -4.857679945999905 ], [ 122.327484571000014, -4.842054945999905 ], [ 122.327484571000014, -4.83521900799991 ], [ 122.34498131600003, -4.814629815999922 ], [ 122.366709832000083, -4.765801690999922 ], [ 122.382660352000016, -4.745863539999959 ], [ 122.404958530000044, -4.737888278999947 ], [ 122.470957879000025, -4.731377862999921 ], [ 122.498789910000028, -4.725355726999908 ], [ 122.529470248000052, -4.710056247999944 ], [ 122.60124759200005, -4.656426690999922 ], [ 122.656993035000028, -4.62428150799991 ], [ 122.69068444100003, -4.611748955999929 ], [ 122.711110873000052, -4.615492445999905 ], [ 122.727224155000044, -4.628106377999927 ], [ 122.735524936000047, -4.643731377999927 ], [ 122.752696160000028, -4.773207289999959 ], [ 122.752777540000011, -4.844333591999941 ], [ 122.755707227000016, -4.855726820999905 ], [ 122.770274285000028, -4.87428150799991 ], [ 122.77312259200005, -4.879571221999925 ], [ 122.774099155000044, -4.887790622999944 ], [ 122.77857506600003, -4.905043226999908 ], [ 122.780039910000028, -4.916599216999941 ] ] ], [ [ [ 123.149912957000083, -5.225030205999929 ], [ 123.188812696000014, -5.247816664999959 ], [ 123.209320509, -5.265394789999959 ], [ 123.218109571000014, -5.283786716999941 ], [ 123.213145379000025, -5.301690362999921 ], [ 123.201426629000025, -5.317071221999925 ], [ 123.177256707000083, -5.342380466999941 ], [ 123.158050977000016, -5.373793226999908 ], [ 123.145030144000089, -5.385430596999925 ], [ 123.103037957000083, -5.395277601999908 ], [ 123.065603061000047, -5.418389580999929 ], [ 123.046885613000086, -5.424248955999929 ], [ 123.03052819100003, -5.419528903999947 ], [ 123.010264519000089, -5.395684502999927 ], [ 122.99537194100003, -5.390232028999947 ], [ 122.977549675000091, -5.39421965899993 ], [ 122.892914259, -5.444268487999921 ], [ 122.87623131600003, -5.458428643999923 ], [ 122.862803582000083, -5.495863539999959 ], [ 122.86101321700005, -5.508070570999905 ], [ 122.865977410000028, -5.513604424999926 ], [ 122.876312696000014, -5.510918877999927 ], [ 122.901703321000014, -5.499932549999926 ], [ 122.910411004000025, -5.49928150799991 ], [ 122.918223504000025, -5.527439059999949 ], [ 122.896820509, -5.571221612999921 ], [ 122.84888756600003, -5.637139580999929 ], [ 122.827647332000083, -5.676202080999929 ], [ 122.813487175000091, -5.687920830999929 ], [ 122.79029381600003, -5.692478122999944 ], [ 122.787933790000011, -5.687269789999959 ], [ 122.786306186000047, -5.662692966999941 ], [ 122.783457879000025, -5.654229424999926 ], [ 122.771006707000083, -5.642022393999923 ], [ 122.767832879000025, -5.641371351999908 ], [ 122.766286655000044, -5.64812590899993 ], [ 122.75359134200005, -5.665785414999959 ], [ 122.750498894000089, -5.675388278999947 ], [ 122.746592644000089, -5.67937590899993 ], [ 122.739024285000028, -5.671319268999923 ], [ 122.736827019000089, -5.661065362999921 ], [ 122.739593946000014, -5.636895440999922 ], [ 122.73560631600003, -5.626885674999926 ], [ 122.72234134200005, -5.627699476999908 ], [ 122.690928582000083, -5.665785414999959 ], [ 122.67701256600003, -5.678806247999944 ], [ 122.654307488000086, -5.678480726999908 ], [ 122.63835696700005, -5.662204684999949 ], [ 122.567149285000028, -5.506931247999944 ], [ 122.644297722000033, -5.439385674999926 ], [ 122.654551629000025, -5.424737237999921 ], [ 122.652110222000033, -5.41139088299991 ], [ 122.629161004000025, -5.403741143999923 ], [ 122.635590040000011, -5.391045830999929 ], [ 122.663259311000047, -5.355401299999926 ], [ 122.672618035000028, -5.324151299999926 ], [ 122.678396030000044, -5.322442315999922 ], [ 122.685069207000083, -5.322930596999925 ], [ 122.69068444100003, -5.321221612999921 ], [ 122.704112175000091, -5.302911065999922 ], [ 122.721039259, -5.266208591999941 ], [ 122.732188347000033, -5.253024997999944 ], [ 122.752696160000028, -5.245863539999959 ], [ 122.779470248000052, -5.241143487999921 ], [ 122.803233269000089, -5.231866143999923 ], [ 122.814707879000025, -5.211358330999929 ], [ 122.81413821700005, -5.193129164999959 ], [ 122.808604363000086, -5.189385674999926 ], [ 122.763438347000033, -5.207940362999921 ], [ 122.757578972000033, -5.20671965899993 ], [ 122.766286655000044, -5.190850518999923 ], [ 122.754567905000044, -5.177666924999926 ], [ 122.756602410000028, -5.164727471999925 ], [ 122.77312259200005, -5.143731377999927 ], [ 122.778493686000047, -5.129571221999925 ], [ 122.778086785000028, -5.104587497999944 ], [ 122.780039910000028, -5.089043877999927 ], [ 122.797618035000028, -5.060642184999949 ], [ 122.804453972000033, -5.043633721999925 ], [ 122.800547722000033, -5.026462497999944 ], [ 122.791188998000052, -5.021254164999959 ], [ 122.779795769000089, -5.024997653999947 ], [ 122.766612175000091, -5.031182549999926 ], [ 122.752696160000028, -5.033868096999925 ], [ 122.761892123000052, -5.015394789999959 ], [ 122.817881707000083, -4.968682549999926 ], [ 122.82740319100003, -4.952325127999927 ], [ 122.833506707000083, -4.929131768999923 ], [ 122.835948113000086, -4.904392184999949 ], [ 122.834646030000044, -4.883070570999905 ], [ 122.830739780000044, -4.873223565999922 ], [ 122.824961785000028, -4.862888278999947 ], [ 122.820485873000052, -4.852227471999925 ], [ 122.820974155000044, -4.842054945999905 ], [ 122.828868035000028, -4.835870049999926 ], [ 122.840179884, -4.834649346999925 ], [ 122.850596550000091, -4.831149997999944 ], [ 122.854991082000083, -4.817803643999923 ], [ 122.847992384, -4.648858330999929 ], [ 122.854991082000083, -4.609551690999922 ], [ 122.869395379000025, -4.568291924999926 ], [ 122.899424675000091, -4.510023695999905 ], [ 122.90357506600003, -4.489190362999921 ], [ 122.908946160000028, -4.474541924999926 ], [ 122.922618035000028, -4.461602471999925 ], [ 123.019541863000086, -4.390232028999947 ], [ 123.041351759, -4.384372653999947 ], [ 123.069102410000028, -4.383233330999929 ], [ 123.085703972000033, -4.389092705999929 ], [ 123.061534050000091, -4.421319268999923 ], [ 123.068532748000052, -4.439629815999922 ], [ 123.084239129000025, -4.456149997999944 ], [ 123.147797071000014, -4.508477471999925 ], [ 123.163584832000083, -4.526788018999923 ], [ 123.190440300000091, -4.566827080999929 ], [ 123.20045006600003, -4.589043877999927 ], [ 123.204437696000014, -4.611748955999929 ], [ 123.20240319100003, -4.621514580999929 ], [ 123.19304446700005, -4.641371351999908 ], [ 123.190928582000083, -4.653008721999925 ], [ 123.193369988000086, -4.662855726999908 ], [ 123.199229363000086, -4.667413018999923 ], [ 123.206065300000091, -4.670830987999921 ], [ 123.211273634, -4.677504164999959 ], [ 123.217051629000025, -4.711195570999905 ], [ 123.219737175000091, -4.816664320999905 ], [ 123.211273634, -4.842054945999905 ], [ 123.197032097000033, -4.836846612999921 ], [ 123.18873131600003, -4.816582940999922 ], [ 123.184092644000089, -4.776543877999927 ], [ 123.181895379000025, -4.771905205999929 ], [ 123.17115319100003, -4.756036065999922 ], [ 123.167002800000091, -4.752618096999925 ], [ 123.157725457000083, -4.748467705999929 ], [ 123.154633009, -4.738539320999905 ], [ 123.153493686000047, -4.726983330999929 ], [ 123.149912957000083, -4.717950127999927 ], [ 123.123871290000011, -4.71021900799991 ], [ 123.105316602000016, -4.76726653399993 ], [ 123.081553582000083, -4.739027601999908 ], [ 123.077972852000016, -4.74342213299991 ], [ 123.071055535000028, -4.748304945999905 ], [ 123.067393425000091, -4.752618096999925 ], [ 123.052093946000014, -4.740329684999949 ], [ 123.046397332000083, -4.752862237999921 ], [ 123.046885613000086, -4.797051690999922 ], [ 123.04265384200005, -4.803317966999941 ], [ 123.023773634, -4.815118096999925 ], [ 123.019541863000086, -4.824639580999929 ], [ 123.01295006600003, -4.85711028399993 ], [ 123.012217644000089, -4.869317315999922 ], [ 123.017425977000016, -4.90984465899993 ], [ 123.015147332000083, -4.92937590899993 ], [ 122.98991946700005, -4.945082289999959 ], [ 122.977386915000011, -4.96217213299991 ], [ 122.967946811000047, -4.980889580999929 ], [ 122.964366082000083, -4.992852471999925 ], [ 122.96607506600003, -5.003838799999926 ], [ 122.969899936000047, -5.012139580999929 ], [ 122.974375847000033, -5.01921965899993 ], [ 122.977875196000014, -5.026462497999944 ], [ 122.984629754000025, -5.052504164999959 ], [ 122.985362175000091, -5.064873955999929 ], [ 122.983571811000047, -5.087823174999926 ], [ 122.978526238000086, -5.103285414999959 ], [ 122.955251498000052, -5.149997653999947 ], [ 122.947927280000044, -5.172133070999905 ], [ 122.949880405000044, -5.190199476999908 ], [ 122.96802819100003, -5.197686455999929 ], [ 122.988454623000052, -5.186700127999927 ], [ 123.003428582000083, -5.163262627999927 ], [ 123.020355665000011, -5.142185153999947 ], [ 123.046885613000086, -5.137465101999908 ], [ 123.059336785000028, -5.144138278999947 ], [ 123.062673373000052, -5.152764580999929 ], [ 123.062998894000089, -5.162041924999926 ], [ 123.067393425000091, -5.170505466999941 ], [ 123.102061394000089, -5.18092213299991 ], [ 123.10670006600003, -5.197686455999929 ], [ 123.117930535000028, -5.209161065999922 ], [ 123.149912957000083, -5.225030205999929 ] ] ], [ [ [ 123.204437696000014, -3.992933851999908 ], [ 123.234141472000033, -4.01531340899993 ], [ 123.25123131600003, -4.050876559999949 ], [ 123.253428582000083, -4.089776299999926 ], [ 123.238780144000089, -4.122165622999944 ], [ 123.196299675000091, -4.187676690999922 ], [ 123.169281446000014, -4.221123955999929 ], [ 123.136241082000083, -4.238702080999929 ], [ 123.086599155000044, -4.234470309999949 ], [ 123.044769727000016, -4.209649346999925 ], [ 123.009125196000014, -4.171970309999949 ], [ 122.977875196000014, -4.128838799999926 ], [ 122.968760613000086, -4.108493747999944 ], [ 122.959727410000028, -4.065118096999925 ], [ 122.950694207000083, -4.047051690999922 ], [ 122.961192254000025, -4.03484465899993 ], [ 122.986582879000025, -4.017754815999922 ], [ 122.998383009, -4.006605726999908 ], [ 123.015635613000086, -3.981133721999925 ], [ 123.028168165000011, -3.973809502999927 ], [ 123.046885613000086, -3.978692315999922 ], [ 123.061859571000014, -3.986504815999922 ], [ 123.081797722000033, -4.00123463299991 ], [ 123.102305535000028, -4.012465101999908 ], [ 123.118907097000033, -4.009698174999926 ], [ 123.135020379000025, -4.000176690999922 ], [ 123.158457879000025, -3.993096612999921 ], [ 123.183604363000086, -3.990329684999949 ], [ 123.204437696000014, -3.992933851999908 ] ] ], [ [ [ 123.177256707000083, -3.573988539999959 ], [ 123.177093946000014, -3.601006768999923 ], [ 123.159922722000033, -3.603773695999905 ], [ 123.139414910000028, -3.602715752999927 ], [ 123.129405144000089, -3.618340752999927 ], [ 123.119883660000028, -3.629164320999905 ], [ 123.098806186000047, -3.619235934999949 ], [ 123.078379754000025, -3.602634372999944 ], [ 123.066661004000025, -3.589613539999959 ], [ 123.061696811000047, -3.580254815999922 ], [ 123.061045769000089, -3.570896091999941 ], [ 123.070811394000089, -3.566582940999922 ], [ 123.082774285000028, -3.564222914999959 ], [ 123.140635613000086, -3.539157809999949 ], [ 123.157237175000091, -3.544854424999926 ], [ 123.169769727000016, -3.55828215899993 ], [ 123.177256707000083, -3.573988539999959 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-PB", "NAME_1": "Papua Barat" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.70281009200005, -3.453301690999922 ], [ 132.710459832000083, -3.469496351999908 ], [ 132.714691602000016, -3.486993096999925 ], [ 132.712901238000086, -3.504164320999905 ], [ 132.702891472000033, -3.519301039999959 ], [ 132.689952019000089, -3.509535414999959 ], [ 132.678884311000047, -3.495863539999959 ], [ 132.67115319100003, -3.479424737999921 ], [ 132.666351759, -3.453383070999962 ], [ 132.661143425000091, -3.450616143999923 ], [ 132.644297722000033, -3.451104424999926 ], [ 132.637461785000028, -3.447523695999962 ], [ 132.620290561000047, -3.423760674999926 ], [ 132.626800977000016, -3.418389580999929 ], [ 132.643565300000091, -3.408623955999929 ], [ 132.65162194100003, -3.406019789999959 ], [ 132.666514519000089, -3.410251559999949 ], [ 132.681162957000083, -3.423435153999947 ], [ 132.70281009200005, -3.453301690999922 ] ] ], [ [ [ 134.873493154272523, -4.254610558750696 ], [ 134.861094597000033, -4.252373955999929 ], [ 134.82349694100003, -4.259372653999947 ], [ 134.820078972000033, -4.259209893999923 ], [ 134.80982506600003, -4.254082940999922 ], [ 134.79224694100003, -4.238702080999929 ], [ 134.739756707000083, -4.204034112999921 ], [ 134.733409050000091, -4.197523695999905 ], [ 134.730723504000025, -4.187595309999949 ], [ 134.72584069100003, -4.15007903399993 ], [ 134.72388756600003, -4.142510674999926 ], [ 134.706390821000014, -4.137302341999941 ], [ 134.681162957000083, -4.136814059999949 ], [ 134.658050977000016, -4.133396091999941 ], [ 134.648203972000033, -4.118747653999947 ], [ 134.655284050000091, -4.099786065999922 ], [ 134.687754754000025, -4.073174737999921 ], [ 134.69654381600003, -4.053155205999929 ], [ 134.694102410000028, -4.045179945999905 ], [ 134.680674675000091, -4.03289153399993 ], [ 134.676036004000025, -4.026462497999944 ], [ 134.674571160000028, -4.016289971999925 ], [ 134.679209832000083, -3.960707289999959 ], [ 134.688487175000091, -3.947442315999922 ], [ 134.703379754000025, -3.940362237999921 ], [ 134.72388756600003, -3.937758070999905 ], [ 134.740896030000044, -3.939548434999949 ], [ 134.782237175000091, -3.949151299999926 ], [ 134.864431186000047, -3.953220309999949 ], [ 134.88209069100003, -3.957614841999941 ], [ 134.907074415000011, -3.975518487999921 ], [ 134.916270379000025, -3.978692315999922 ], [ 134.927744988000086, -3.976657809999949 ], [ 134.935720248000052, -3.97193775799991 ], [ 134.941416863000086, -3.967217705999929 ], [ 134.947032097000033, -3.965020440999922 ], [ 134.967458530000044, -3.951836846999925 ], [ 134.970957879000025, -3.947930596999925 ], [ 134.967784050000091, -3.93678150799991 ], [ 134.960297071000014, -3.939385674999926 ], [ 134.951426629000025, -3.947198174999926 ], [ 134.943614129000025, -3.951348565999922 ], [ 134.93091881600003, -3.948337497999944 ], [ 134.923838738000086, -3.943129164999959 ], [ 134.921234571000014, -3.938653252999927 ], [ 134.922618035000028, -3.937758070999905 ], [ 134.920664910000028, -3.934747002999927 ], [ 134.920909050000091, -3.93092213299991 ], [ 134.920420769000089, -3.926853122999944 ], [ 134.916270379000025, -3.923435153999947 ], [ 134.908457879000025, -3.922539971999925 ], [ 134.901866082000083, -3.925225518999923 ], [ 134.89576256600003, -3.92896900799991 ], [ 134.888926629000025, -3.93092213299991 ], [ 134.844574415000011, -3.930108330999929 ], [ 134.770030144000089, -3.918226820999905 ], [ 134.692230665000011, -3.914808851999908 ], [ 134.686045769000089, -3.913506768999923 ], [ 134.675791863000086, -3.908379815999922 ], [ 134.669688347000033, -3.914239190999922 ], [ 134.666026238000086, -3.924004815999922 ], [ 134.662364129000025, -3.93092213299991 ], [ 134.633555535000028, -3.945082289999959 ], [ 134.620290561000047, -3.954685153999947 ], [ 134.614593946000014, -3.96843840899993 ], [ 134.611501498000052, -3.988213799999926 ], [ 134.602224155000044, -4.000664971999925 ], [ 134.58716881600003, -4.008070570999905 ], [ 134.532562696000014, -4.022067966999941 ], [ 134.525238477000016, -4.026462497999944 ], [ 134.509125196000014, -4.015883070999905 ], [ 134.484385613000086, -3.990492445999905 ], [ 134.463877800000091, -3.978692315999922 ], [ 134.478363477000016, -3.961602471999925 ], [ 134.466970248000052, -3.943291924999926 ], [ 134.447032097000033, -3.926446221999925 ], [ 134.436534050000091, -3.913506768999923 ], [ 134.430430535000028, -3.907810153999947 ], [ 134.416758660000028, -3.904554945999905 ], [ 134.392100457000083, -3.903008721999925 ], [ 134.375254754000025, -3.899102471999925 ], [ 134.333506707000083, -3.86882903399993 ], [ 134.351410352000016, -3.899102471999925 ], [ 134.360362175000091, -3.925957940999922 ], [ 134.348968946000014, -3.943454684999949 ], [ 134.306162957000083, -3.944512627999927 ], [ 134.306162957000083, -3.951348565999922 ], [ 134.318614129000025, -3.958184502999927 ], [ 134.329600457000083, -3.96843840899993 ], [ 134.337412957000083, -3.981215101999908 ], [ 134.340342644000089, -3.996026299999926 ], [ 134.326670769000089, -4.019707940999922 ], [ 134.315277540000011, -4.020277601999908 ], [ 134.309336785000028, -4.015557549999926 ], [ 134.306000196000014, -4.009535414999959 ], [ 134.302744988000086, -4.006605726999908 ], [ 134.292735222000033, -4.000176690999922 ], [ 134.283864780000044, -3.985935153999947 ], [ 134.272227410000028, -3.971449476999908 ], [ 134.254405144000089, -3.965020440999922 ], [ 134.234873894000089, -3.962660414999959 ], [ 134.211192254000025, -3.955336195999905 ], [ 134.191172722000033, -3.943536065999922 ], [ 134.182627800000091, -3.927178643999923 ], [ 134.181488477000016, -3.917575778999947 ], [ 134.176280144000089, -3.900323174999926 ], [ 134.175140821000014, -3.893324476999908 ], [ 134.170420769000089, -3.888116143999923 ], [ 134.159678582000083, -3.892754815999922 ], [ 134.14812259200005, -3.90007903399993 ], [ 134.141123894000089, -3.903008721999925 ], [ 134.133962436000047, -3.890069268999923 ], [ 134.14421634200005, -3.874769789999959 ], [ 134.185801629000025, -3.842543226999908 ], [ 134.19263756600003, -3.835544528999947 ], [ 134.190928582000083, -3.826267184999949 ], [ 134.17310631600003, -3.787855726999908 ], [ 134.161631707000083, -3.771661065999922 ], [ 134.146983269000089, -3.757582289999959 ], [ 134.127452019000089, -3.745293877999927 ], [ 134.122243686000047, -3.753676039999959 ], [ 134.123301629000025, -3.760918877999927 ], [ 134.126475457000083, -3.768731377999927 ], [ 134.127452019000089, -3.779473565999922 ], [ 134.126475457000083, -3.799248955999929 ], [ 134.122406446000014, -3.805352471999925 ], [ 134.110362175000091, -3.817559502999927 ], [ 134.091807488000086, -3.823988539999959 ], [ 134.074473504000025, -3.812920830999929 ], [ 134.057383660000028, -3.79810963299991 ], [ 134.039317254000025, -3.793145440999922 ], [ 134.023203972000033, -3.805108330999929 ], [ 133.999359571000014, -3.846286716999941 ], [ 133.987640821000014, -3.85515715899993 ], [ 133.971039259, -3.850274346999925 ], [ 133.958994988000086, -3.83757903399993 ], [ 133.91334069100003, -3.729424737999921 ], [ 133.896006707000083, -3.70240650799991 ], [ 133.852712436000047, -3.653903903999947 ], [ 133.843597852000016, -3.63836028399993 ], [ 133.840098504000025, -3.618340752999927 ], [ 133.840993686000047, -3.597751559999949 ], [ 133.838145379000025, -3.590427341999941 ], [ 133.829844597000033, -3.58757903399993 ], [ 133.822520379000025, -3.589939059999949 ], [ 133.813243035000028, -3.59539153399993 ], [ 133.804453972000033, -3.602308851999908 ], [ 133.799082879000025, -3.608819268999923 ], [ 133.795420769000089, -3.631524346999925 ], [ 133.803396030000044, -3.654066664999959 ], [ 133.81413821700005, -3.675388278999947 ], [ 133.823252800000091, -3.704522393999923 ], [ 133.829112175000091, -3.714450778999947 ], [ 133.829274936000047, -3.721856377999927 ], [ 133.815765821000014, -3.724786065999922 ], [ 133.80982506600003, -3.720310153999947 ], [ 133.799082879000025, -3.69068775799991 ], [ 133.790212436000047, -3.680352471999925 ], [ 133.777598504000025, -3.669122002999927 ], [ 133.76295006600003, -3.660251559999949 ], [ 133.747569207000083, -3.656508070999905 ], [ 133.732595248000052, -3.662855726999908 ], [ 133.716563347000033, -3.672784112999921 ], [ 133.703135613000086, -3.672621351999908 ], [ 133.696055535000028, -3.649102471999925 ], [ 133.707286004000025, -3.630303643999923 ], [ 133.709727410000028, -3.621758721999925 ], [ 133.708018425000091, -3.610121351999908 ], [ 133.698415561000047, -3.590264580999929 ], [ 133.689789259, -3.564548434999949 ], [ 133.648203972000033, -3.505059502999927 ], [ 133.641449415000011, -3.48365650799991 ], [ 133.64185631600003, -3.461602471999925 ], [ 133.653168165000011, -3.444431247999944 ], [ 133.67896569100003, -3.437432549999926 ], [ 133.696787957000083, -3.42742278399993 ], [ 133.702159050000091, -3.404392184999949 ], [ 133.700205925000091, -3.379001559999949 ], [ 133.683360222000033, -3.304945570999962 ], [ 133.683116082000083, -3.232517184999949 ], [ 133.690928582000083, -3.21607838299991 ], [ 133.709727410000028, -3.232028903999947 ], [ 133.713877800000091, -3.224704684999949 ], [ 133.715830925000091, -3.215915622999944 ], [ 133.716563347000033, -3.193780205999929 ], [ 133.722422722000033, -3.183038018999923 ], [ 133.735687696000014, -3.183363539999959 ], [ 133.758067254000025, -3.190362237999921 ], [ 133.77116946700005, -3.17546965899993 ], [ 133.783946160000028, -3.131442966999941 ], [ 133.802500847000033, -3.122165622999944 ], [ 133.822601759, -3.115655205999929 ], [ 133.846446160000028, -3.087090752999927 ], [ 133.863942905000044, -3.080498955999929 ], [ 133.882823113000086, -3.091566664999959 ], [ 133.899099155000044, -3.11296965899993 ], [ 133.914073113000086, -3.126560153999947 ], [ 133.929453972000033, -3.114678643999923 ], [ 133.923594597000033, -3.11101653399993 ], [ 133.919444207000083, -3.106377862999921 ], [ 133.916758660000028, -3.099867445999962 ], [ 133.915782097000033, -3.090915622999944 ], [ 133.912282748000052, -3.083428643999923 ], [ 133.904063347000033, -3.07935963299991 ], [ 133.894786004000025, -3.076836846999925 ], [ 133.887705925000091, -3.073663018999923 ], [ 133.878916863000086, -3.065524997999944 ], [ 133.87037194100003, -3.055108330999929 ], [ 133.863942905000044, -3.042087497999944 ], [ 133.860524936000047, -3.025974216999941 ], [ 133.863047722000033, -3.008233330999929 ], [ 133.877696160000028, -2.979261976999908 ], [ 133.881602410000028, -2.963799737999921 ], [ 133.879649285000028, -2.952243747999944 ], [ 133.874359571000014, -2.940606377999927 ], [ 133.867360873000052, -2.930352471999925 ], [ 133.860524936000047, -2.922946872999944 ], [ 133.843760613000086, -2.927829684999949 ], [ 133.825694207000083, -2.928887627999927 ], [ 133.817556186000047, -2.934747002999927 ], [ 133.829844597000033, -2.953871351999908 ], [ 133.827891472000033, -2.959649346999925 ], [ 133.815196160000028, -2.983575127999927 ], [ 133.809092644000089, -3.010186455999929 ], [ 133.801605665000011, -3.018161716999941 ], [ 133.734141472000033, -3.052666924999926 ], [ 133.71998131600003, -3.063571872999944 ], [ 133.690928582000083, -3.092868747999944 ], [ 133.668223504000025, -3.122165622999944 ], [ 133.65552819100003, -3.188897393999923 ], [ 133.66334069100003, -3.361504815999922 ], [ 133.627696160000028, -3.416273695999962 ], [ 133.613617384, -3.421970309999949 ], [ 133.558848504000025, -3.43328215899993 ], [ 133.551036004000025, -3.431573174999926 ], [ 133.545583530000044, -3.424248955999929 ], [ 133.528493686000047, -3.386651299999926 ], [ 133.52466881600003, -3.382256768999923 ], [ 133.514008009, -3.378350518999923 ], [ 133.513194207000083, -3.384372653999947 ], [ 133.518565300000091, -3.403252862999921 ], [ 133.519379102000016, -3.430840752999927 ], [ 133.511973504000025, -3.438653252999927 ], [ 133.490570509, -3.437432549999926 ], [ 133.490570509, -3.444268487999921 ], [ 133.511241082000083, -3.455173434999949 ], [ 133.550629102000016, -3.468682549999926 ], [ 133.569102410000028, -3.481866143999923 ], [ 133.582286004000025, -3.500176690999922 ], [ 133.590179884, -3.522230726999908 ], [ 133.591807488000086, -3.545342705999929 ], [ 133.586192254000025, -3.566582940999922 ], [ 133.575938347000033, -3.580498955999929 ], [ 133.559255405000044, -3.596449476999908 ], [ 133.539886915000011, -3.609551690999922 ], [ 133.521657748000052, -3.61492278399993 ], [ 133.505625847000033, -3.62232838299991 ], [ 133.408864780000044, -3.722426039999959 ], [ 133.396657748000052, -3.755954684999949 ], [ 133.408702019000089, -3.800551039999959 ], [ 133.440196160000028, -3.827569268999923 ], [ 133.455577019000089, -3.84693775799991 ], [ 133.453379754000025, -3.865411065999922 ], [ 133.443125847000033, -3.872816664999959 ], [ 133.420746290000011, -3.88054778399993 ], [ 133.41179446700005, -3.886163018999923 ], [ 133.403086785000028, -3.896416924999926 ], [ 133.388194207000083, -3.923435153999947 ], [ 133.269379102000016, -4.05201588299991 ], [ 133.250987175000091, -4.066827080999929 ], [ 133.210948113000086, -4.078383070999905 ], [ 133.163910352000016, -4.076267184999949 ], [ 133.079112175000091, -4.060642184999949 ], [ 133.051524285000028, -4.061211846999925 ], [ 133.035166863000086, -4.070082289999959 ], [ 133.00749759200005, -4.104668877999927 ], [ 132.98991946700005, -4.113946221999925 ], [ 132.969411655000044, -4.111993096999925 ], [ 132.918142123000052, -4.09107838299991 ], [ 132.912282748000052, -4.090264580999929 ], [ 132.907725457000083, -4.088148695999905 ], [ 132.90162194100003, -4.081149997999944 ], [ 132.896250847000033, -4.068942966999941 ], [ 132.896983269000089, -4.048272393999923 ], [ 132.891368035000028, -4.036716403999947 ], [ 132.881114129000025, -4.027764580999929 ], [ 132.859385613000086, -4.016534112999921 ], [ 132.849945509, -4.009698174999926 ], [ 132.841156446000014, -3.998142184999949 ], [ 132.831553582000083, -3.975355726999908 ], [ 132.82585696700005, -3.965020440999922 ], [ 132.816905144000089, -3.957614841999941 ], [ 132.805674675000091, -3.949965101999908 ], [ 132.795909050000091, -3.940606377999927 ], [ 132.791758660000028, -3.927178643999923 ], [ 132.796397332000083, -3.918145440999922 ], [ 132.806813998000052, -3.922133070999905 ], [ 132.82585696700005, -3.937758070999905 ], [ 132.826345248000052, -3.926446221999925 ], [ 132.824554884, -3.916436455999929 ], [ 132.802093946000014, -3.858168226999908 ], [ 132.787933790000011, -3.844008070999905 ], [ 132.784922722000033, -3.837823174999926 ], [ 132.785899285000028, -3.80396900799991 ], [ 132.784922722000033, -3.793145440999922 ], [ 132.730967644000089, -3.682305596999925 ], [ 132.729665561000047, -3.649102471999925 ], [ 132.756114129000025, -3.627536716999941 ], [ 132.797129754000025, -3.63404713299991 ], [ 132.842295769000089, -3.646579684999949 ], [ 132.881114129000025, -3.642836195999905 ], [ 132.890147332000083, -3.634535414999959 ], [ 132.890798373000052, -3.626885674999926 ], [ 132.88835696700005, -3.618584893999923 ], [ 132.88795006600003, -3.608819268999923 ], [ 132.891612175000091, -3.594903252999927 ], [ 132.896250847000033, -3.586358330999929 ], [ 132.911875847000033, -3.570245049999926 ], [ 132.927500847000033, -3.561130466999941 ], [ 132.931813998000052, -3.554131768999923 ], [ 132.92546634200005, -3.543226820999905 ], [ 132.91529381600003, -3.53484465899993 ], [ 132.907562696000014, -3.529961846999925 ], [ 132.901133660000028, -3.524021091999941 ], [ 132.894786004000025, -3.511895440999922 ], [ 132.880869988000086, -3.475355726999908 ], [ 132.871592644000089, -3.471368096999925 ], [ 132.849945509, -3.470961195999962 ], [ 132.831879102000016, -3.461032809999949 ], [ 132.821136915000011, -3.437432549999926 ], [ 132.812754754000025, -3.389743747999944 ], [ 132.811859571000014, -3.366631768999923 ], [ 132.819021030000044, -3.303643487999921 ], [ 132.811696811000047, -3.281670830999929 ], [ 132.794444207000083, -3.271661065999922 ], [ 132.774099155000044, -3.269789320999962 ], [ 132.740733269000089, -3.276543877999927 ], [ 132.733897332000083, -3.279961846999925 ], [ 132.729665561000047, -3.286065362999921 ], [ 132.729340040000011, -3.298435153999947 ], [ 132.73755944100003, -3.321058851999908 ], [ 132.733246290000011, -3.330987237999921 ], [ 132.71412194100003, -3.340020440999922 ], [ 132.692149285000028, -3.338148695999962 ], [ 132.67115319100003, -3.328545830999929 ], [ 132.654470248000052, -3.313897393999923 ], [ 132.648936394000089, -3.304864190999922 ], [ 132.63404381600003, -3.272393487999921 ], [ 132.626149936000047, -3.262627862999921 ], [ 132.603037957000083, -3.24187590899993 ], [ 132.602224155000044, -3.231866143999923 ], [ 132.616384311000047, -3.224867445999962 ], [ 132.629893425000091, -3.215101820999962 ], [ 132.627207879000025, -3.197360934999949 ], [ 132.620616082000083, -3.192315362999921 ], [ 132.596446160000028, -3.17937590899993 ], [ 132.589366082000083, -3.176853122999944 ], [ 132.581797722000033, -3.170342705999929 ], [ 132.572601759, -3.142185153999947 ], [ 132.568614129000025, -3.135837497999944 ], [ 132.563243035000028, -3.130466403999947 ], [ 132.559336785000028, -3.118747653999947 ], [ 132.553070509, -3.107028903999947 ], [ 132.541188998000052, -3.101657809999949 ], [ 132.533946160000028, -3.09734465899993 ], [ 132.514659050000091, -3.078057549999926 ], [ 132.50709069100003, -3.073663018999923 ], [ 132.495860222000033, -3.070570570999962 ], [ 132.488454623000052, -3.063083591999941 ], [ 132.482432488000086, -3.053887627999927 ], [ 132.47584069100003, -3.046482028999947 ], [ 132.365733269000089, -2.985284112999921 ], [ 132.339854363000086, -2.977634372999944 ], [ 132.342295769000089, -2.958184502999927 ], [ 132.325694207000083, -2.94654713299991 ], [ 132.277679884, -2.936618747999944 ], [ 132.26685631600003, -2.935479424999926 ], [ 132.233164910000028, -2.936618747999944 ], [ 132.219899936000047, -2.934258721999925 ], [ 132.209483269000089, -2.92896900799991 ], [ 132.199717644000089, -2.922539971999925 ], [ 132.188324415000011, -2.916680596999925 ], [ 132.184580925000091, -2.936211846999925 ], [ 132.168793165000011, -2.946465752999927 ], [ 132.151052280000044, -2.946709893999923 ], [ 132.140635613000086, -2.936618747999944 ], [ 132.131358269000089, -2.941338799999926 ], [ 132.123301629000025, -2.942315362999921 ], [ 132.115244988000086, -2.940524997999944 ], [ 132.106455925000091, -2.936618747999944 ], [ 132.111094597000033, -2.954278252999927 ], [ 132.10124759200005, -2.959893487999921 ], [ 132.07545006600003, -2.957696221999925 ], [ 132.07349694100003, -2.951429945999962 ], [ 132.057953321000014, -2.916680596999925 ], [ 132.03874759200005, -2.926446221999925 ], [ 131.996918165000011, -2.914808851999908 ], [ 131.982188347000033, -2.929782809999949 ], [ 131.976084832000083, -2.929782809999949 ], [ 131.977875196000014, -2.914646091999941 ], [ 131.984548373000052, -2.907647393999923 ], [ 131.993662957000083, -2.903090101999908 ], [ 132.003428582000083, -2.89617278399993 ], [ 132.012868686000047, -2.885918877999927 ], [ 132.017751498000052, -2.87859465899993 ], [ 132.023936394000089, -2.854668877999927 ], [ 132.005707227000016, -2.852715752999927 ], [ 131.989756707000083, -2.848402601999908 ], [ 131.989756707000083, -2.840997002999927 ], [ 132.004405144000089, -2.837090752999927 ], [ 132.022471550000091, -2.829034112999921 ], [ 132.037852410000028, -2.817559502999927 ], [ 132.044444207000083, -2.803399346999925 ], [ 132.035004102000016, -2.793552341999941 ], [ 132.012868686000047, -2.790948174999926 ], [ 131.965586785000028, -2.793145440999922 ], [ 131.958018425000091, -2.788181247999944 ], [ 131.972666863000086, -2.776950778999947 ], [ 132.010264519000089, -2.75904713299991 ], [ 132.027191602000016, -2.75904713299991 ], [ 132.044444207000083, -2.761163018999923 ], [ 132.05827884200005, -2.758558851999908 ], [ 132.065440300000091, -2.744805596999925 ], [ 132.074229363000086, -2.755791924999926 ], [ 132.081553582000083, -2.757907809999949 ], [ 132.084239129000025, -2.751722914999959 ], [ 132.078461134, -2.738539320999962 ], [ 132.088063998000052, -2.73560963299991 ], [ 132.130381707000083, -2.738539320999962 ], [ 132.155772332000083, -2.733493747999944 ], [ 132.181488477000016, -2.724867445999962 ], [ 132.160166863000086, -2.715590101999908 ], [ 132.110850457000083, -2.719414971999925 ], [ 132.113291863000086, -2.70435963299991 ], [ 132.121348504000025, -2.697930596999925 ], [ 132.161631707000083, -2.68328215899993 ], [ 132.181488477000016, -2.68328215899993 ], [ 132.194834832000083, -2.678317966999941 ], [ 132.201914910000028, -2.676446221999925 ], [ 132.31177819100003, -2.676446221999925 ], [ 132.325694207000083, -2.679864190999922 ], [ 132.367198113000086, -2.69695403399993 ], [ 132.382009311000047, -2.699314059999949 ], [ 132.415537957000083, -2.69695403399993 ], [ 132.408050977000016, -2.69695403399993 ], [ 132.413096550000091, -2.696465752999927 ], [ 132.428477410000028, -2.69695403399993 ], [ 132.424327019000089, -2.710381768999923 ], [ 132.430023634, -2.721449476999908 ], [ 132.433360222000033, -2.732191664999959 ], [ 132.42115319100003, -2.744805596999925 ], [ 132.437836134, -2.745049737999921 ], [ 132.459971550000091, -2.732679945999962 ], [ 132.47584069100003, -2.731133721999925 ], [ 132.47584069100003, -2.724867445999962 ], [ 132.468923373000052, -2.707614841999941 ], [ 132.484629754000025, -2.699476820999962 ], [ 132.506358269000089, -2.698011976999908 ], [ 132.517344597000033, -2.700778903999947 ], [ 132.525401238000086, -2.710544528999947 ], [ 132.544281446000014, -2.713799737999921 ], [ 132.566742384, -2.71453215899993 ], [ 132.585703972000033, -2.717461846999925 ], [ 132.620616082000083, -2.740899346999925 ], [ 132.679047071000014, -2.801690362999921 ], [ 132.715993686000047, -2.814222914999959 ], [ 132.728282097000033, -2.813164971999925 ], [ 132.736582879000025, -2.809991143999923 ], [ 132.755056186000047, -2.79656340899993 ], [ 132.763682488000086, -2.786309502999927 ], [ 132.776866082000083, -2.779229424999926 ], [ 132.835297071000014, -2.73601653399993 ], [ 132.853037957000083, -2.717461846999925 ], [ 132.903005405000044, -2.645928643999923 ], [ 132.927744988000086, -2.627699476999908 ], [ 132.949392123000052, -2.580254815999922 ], [ 133.008311394000089, -2.514418226999908 ], [ 133.017100457000083, -2.494886976999908 ], [ 133.033539259, -2.479424737999921 ], [ 133.112152540000011, -2.442803643999923 ], [ 133.137705925000091, -2.435723565999922 ], [ 133.143890821000014, -2.434991143999923 ], [ 133.151540561000047, -2.43287525799991 ], [ 133.158864780000044, -2.429864190999922 ], [ 133.164724155000044, -2.426039320999962 ], [ 133.172862175000091, -2.422051690999922 ], [ 133.180186394000089, -2.423760674999926 ], [ 133.187510613000086, -2.427666924999926 ], [ 133.196299675000091, -2.429457289999959 ], [ 133.213145379000025, -2.426364841999941 ], [ 133.239593946000014, -2.416761976999908 ], [ 133.258474155000044, -2.416436455999929 ], [ 133.312347852000016, -2.44304778399993 ], [ 133.31763756600003, -2.45671965899993 ], [ 133.320567254000025, -2.49187590899993 ], [ 133.326019727000016, -2.50514088299991 ], [ 133.338389519000089, -2.496189059999949 ], [ 133.353770379000025, -2.496270440999922 ], [ 133.368988477000016, -2.502536716999941 ], [ 133.380707227000016, -2.511976820999962 ], [ 133.39031009200005, -2.52662525799991 ], [ 133.392100457000083, -2.538669528999947 ], [ 133.388194207000083, -2.566582940999922 ], [ 133.38835696700005, -2.652276299999926 ], [ 133.380707227000016, -2.676446221999925 ], [ 133.403005405000044, -2.675225518999923 ], [ 133.408050977000016, -2.659600518999923 ], [ 133.401866082000083, -2.615004164999959 ], [ 133.404551629000025, -2.591403903999947 ], [ 133.410980665000011, -2.566501559999949 ], [ 133.437998894000089, -2.503024997999944 ], [ 133.445567254000025, -2.494724216999941 ], [ 133.456553582000083, -2.498304945999962 ], [ 133.45866946700005, -2.506931247999944 ], [ 133.456553582000083, -2.54615650799991 ], [ 133.461192254000025, -2.595310153999947 ], [ 133.458994988000086, -2.618096612999921 ], [ 133.450368686000047, -2.642347914999959 ], [ 133.465098504000025, -2.636163018999923 ], [ 133.473155144000089, -2.615980726999908 ], [ 133.476898634, -2.570407809999949 ], [ 133.474782748000052, -2.558363539999959 ], [ 133.470876498000052, -2.545098565999922 ], [ 133.469086134, -2.532159112999921 ], [ 133.473480665000011, -2.521661065999922 ], [ 133.485036655000044, -2.516534112999921 ], [ 133.492523634, -2.523532809999949 ], [ 133.497406446000014, -2.533949476999908 ], [ 133.50945071700005, -2.55006275799991 ], [ 133.512217644000089, -2.572198174999926 ], [ 133.518728061000047, -2.589613539999959 ], [ 133.53834069100003, -2.587090752999927 ], [ 133.539561394000089, -2.58326588299991 ], [ 133.539724155000044, -2.568780205999929 ], [ 133.541758660000028, -2.563571872999944 ], [ 133.547373894000089, -2.560804945999962 ], [ 133.559580925000091, -2.561618747999944 ], [ 133.56568444100003, -2.560316664999959 ], [ 133.58562259200005, -2.55242278399993 ], [ 133.595225457000083, -2.545668226999908 ], [ 133.60670006600003, -2.53248463299991 ], [ 133.615244988000086, -2.541110934999949 ], [ 133.62232506600003, -2.541761976999908 ], [ 133.628428582000083, -2.539646091999941 ], [ 133.633962436000047, -2.539320570999962 ], [ 133.640635613000086, -2.542901299999926 ], [ 133.66724694100003, -2.563409112999921 ], [ 133.673350457000083, -2.574802341999941 ], [ 133.67546634200005, -2.588067315999922 ], [ 133.676280144000089, -2.649021091999941 ], [ 133.671885613000086, -2.65943775799991 ], [ 133.668467644000089, -2.670830987999921 ], [ 133.682383660000028, -2.717461846999925 ], [ 133.691742384, -2.704278252999927 ], [ 133.692393425000091, -2.691501559999949 ], [ 133.689789259, -2.676202080999929 ], [ 133.689219597000033, -2.656019789999959 ], [ 133.693369988000086, -2.637302341999941 ], [ 133.706797722000033, -2.597832940999922 ], [ 133.709727410000028, -2.577243747999944 ], [ 133.709727410000028, -2.52117278399993 ], [ 133.713145379000025, -2.511976820999962 ], [ 133.735036655000044, -2.516778252999927 ], [ 133.747406446000014, -2.529229424999926 ], [ 133.764333530000044, -2.566582940999922 ], [ 133.785411004000025, -2.597751559999949 ], [ 133.799082879000025, -2.642347914999959 ], [ 133.811045769000089, -2.65398528399993 ], [ 133.816905144000089, -2.649021091999941 ], [ 133.819183790000011, -2.632989190999922 ], [ 133.81959069100003, -2.611586195999962 ], [ 133.827891472000033, -2.549899997999944 ], [ 133.823008660000028, -2.539320570999962 ], [ 133.821787957000083, -2.535577080999929 ], [ 133.808848504000025, -2.520196221999925 ], [ 133.80591881600003, -2.518243096999925 ], [ 133.80396569100003, -2.506768487999921 ], [ 133.804860873000052, -2.497002862999921 ], [ 133.809580925000091, -2.487481377999927 ], [ 133.81959069100003, -2.477227471999925 ], [ 133.801768425000091, -2.470310153999947 ], [ 133.76726321700005, -2.47193775799991 ], [ 133.75123131600003, -2.462985934999949 ], [ 133.740977410000028, -2.445896091999941 ], [ 133.747243686000047, -2.437920830999929 ], [ 133.763194207000083, -2.435723565999922 ], [ 133.781748894000089, -2.435723565999922 ], [ 133.826182488000086, -2.426202080999929 ], [ 133.850108269000089, -2.424248955999929 ], [ 133.860524936000047, -2.432549737999921 ], [ 133.866221550000091, -2.442966403999947 ], [ 133.893321160000028, -2.465997002999927 ], [ 133.902110222000033, -2.477227471999925 ], [ 133.908376498000052, -2.477227471999925 ], [ 133.896494988000086, -2.457940362999921 ], [ 133.876475457000083, -2.43287525799991 ], [ 133.86646569100003, -2.41139088299991 ], [ 133.884613477000016, -2.402113539999959 ], [ 133.954600457000083, -2.409112237999921 ], [ 133.986582879000025, -2.406182549999926 ], [ 134.00513756600003, -2.388441664999959 ], [ 133.94890384200005, -2.390394789999959 ], [ 133.920909050000091, -2.387627862999921 ], [ 133.898692254000025, -2.377618096999925 ], [ 133.894541863000086, -2.363376559999949 ], [ 133.945078972000033, -2.343926690999922 ], [ 133.963552280000044, -2.326429945999962 ], [ 133.937836134, -2.327325127999927 ], [ 133.892832879000025, -2.340264580999929 ], [ 133.867360873000052, -2.341241143999923 ], [ 133.867360873000052, -2.333916924999926 ], [ 133.913584832000083, -2.319512627999927 ], [ 133.934418165000011, -2.308689059999949 ], [ 133.949961785000028, -2.292901299999926 ], [ 133.957041863000086, -2.272637627999927 ], [ 133.959727410000028, -2.246677341999941 ], [ 133.957367384, -2.221449476999908 ], [ 133.949961785000028, -2.203545830999929 ], [ 133.939707879000025, -2.255059502999927 ], [ 133.92896569100003, -2.274183851999908 ], [ 133.908376498000052, -2.258721612999921 ], [ 133.902110222000033, -2.258721612999921 ], [ 133.874196811000047, -2.281670830999929 ], [ 133.85474694100003, -2.294122002999927 ], [ 133.840098504000025, -2.299737237999921 ], [ 133.82349694100003, -2.294854424999926 ], [ 133.807302280000044, -2.27117278399993 ], [ 133.795664910000028, -2.265557549999926 ], [ 133.792002800000091, -2.260186455999929 ], [ 133.799164259, -2.248630466999941 ], [ 133.813161655000044, -2.236911716999941 ], [ 133.847504102000016, -2.227715752999927 ], [ 133.863047722000033, -2.217950127999927 ], [ 133.874766472000033, -2.204685153999947 ], [ 133.881602410000028, -2.189873955999929 ], [ 133.901377800000091, -2.198418877999927 ], [ 133.917002800000091, -2.190850518999923 ], [ 133.931976759, -2.177504164999959 ], [ 133.949961785000028, -2.169366143999923 ], [ 133.943125847000033, -2.162530205999929 ], [ 133.931162957000083, -2.168633721999925 ], [ 133.912933790000011, -2.175225518999923 ], [ 133.897959832000083, -2.17546965899993 ], [ 133.895274285000028, -2.162530205999929 ], [ 133.900401238000086, -2.159274997999944 ], [ 133.921885613000086, -2.152764580999929 ], [ 133.929453972000033, -2.148858330999929 ], [ 133.932790561000047, -2.14226653399993 ], [ 133.935313347000033, -2.125664971999925 ], [ 133.939707879000025, -2.118259372999944 ], [ 133.940440300000091, -2.107598565999922 ], [ 133.922211134, -2.104424737999921 ], [ 133.899099155000044, -2.106377862999921 ], [ 133.884613477000016, -2.111423434999949 ], [ 133.879161004000025, -2.110772393999923 ], [ 133.868500196000014, -2.108168226999908 ], [ 133.858164910000028, -2.107354424999926 ], [ 133.853688998000052, -2.111423434999949 ], [ 133.838552280000044, -2.13600025799991 ], [ 133.83326256600003, -2.142185153999947 ], [ 133.824473504000025, -2.145440362999921 ], [ 133.807627800000091, -2.146579684999949 ], [ 133.799082879000025, -2.148858330999929 ], [ 133.773203972000033, -2.16529713299991 ], [ 133.764333530000044, -2.169366143999923 ], [ 133.726084832000083, -2.170505466999941 ], [ 133.709971550000091, -2.175551039999959 ], [ 133.703461134, -2.193617445999962 ], [ 133.695811394000089, -2.197849216999941 ], [ 133.67896569100003, -2.204278252999927 ], [ 133.662119988000086, -2.213962497999944 ], [ 133.654470248000052, -2.227715752999927 ], [ 133.651866082000083, -2.234144789999959 ], [ 133.64576256600003, -2.23601653399993 ], [ 133.638194207000083, -2.23365650799991 ], [ 133.630869988000086, -2.227715752999927 ], [ 133.623301629000025, -2.225274346999925 ], [ 133.613047722000033, -2.228285414999959 ], [ 133.593597852000016, -2.23756275799991 ], [ 133.596853061000047, -2.195082289999959 ], [ 133.593597852000016, -2.183038018999923 ], [ 133.577159050000091, -2.220472914999959 ], [ 133.564626498000052, -2.237888278999947 ], [ 133.548594597000033, -2.245049737999921 ], [ 133.533050977000016, -2.238457940999922 ], [ 133.521250847000033, -2.209649346999925 ], [ 133.504161004000025, -2.203545830999929 ], [ 133.504161004000025, -2.211032809999949 ], [ 133.514659050000091, -2.226006768999923 ], [ 133.499766472000033, -2.230726820999962 ], [ 133.476084832000083, -2.231540622999944 ], [ 133.445567254000025, -2.237888278999947 ], [ 133.407237175000091, -2.222263278999947 ], [ 133.388194207000083, -2.217217705999929 ], [ 133.341644727000016, -2.222751559999949 ], [ 133.316579623000052, -2.222588799999926 ], [ 133.305511915000011, -2.214043877999927 ], [ 133.29615319100003, -2.204196872999944 ], [ 133.274261915000011, -2.20631275799991 ], [ 133.231211785000028, -2.217217705999929 ], [ 133.192149285000028, -2.214288018999923 ], [ 133.169444207000083, -2.216892184999949 ], [ 133.135020379000025, -2.238457940999922 ], [ 133.112315300000091, -2.242933851999908 ], [ 133.06609134200005, -2.245049737999921 ], [ 133.020192905000044, -2.255791924999926 ], [ 132.981211785000028, -2.272149346999925 ], [ 132.943614129000025, -2.283379815999922 ], [ 132.90162194100003, -2.279229424999926 ], [ 132.83952884200005, -2.249118747999944 ], [ 132.815928582000083, -2.245049737999921 ], [ 132.793304884, -2.249444268999923 ], [ 132.77076256600003, -2.260023695999962 ], [ 132.698741082000083, -2.305352471999925 ], [ 132.68873131600003, -2.307224216999941 ], [ 132.680674675000091, -2.303155205999929 ], [ 132.675629102000016, -2.295993747999944 ], [ 132.669281446000014, -2.289157809999949 ], [ 132.657969597000033, -2.286065362999921 ], [ 132.636729363000086, -2.277276299999926 ], [ 132.626719597000033, -2.256442966999941 ], [ 132.620941602000016, -2.231540622999944 ], [ 132.613536004000025, -2.211032809999949 ], [ 132.60279381600003, -2.201755466999941 ], [ 132.583018425000091, -2.190850518999923 ], [ 132.560394727000016, -2.185642184999949 ], [ 132.541188998000052, -2.193617445999962 ], [ 132.523692254000025, -2.204196872999944 ], [ 132.455332879000025, -2.217217705999929 ], [ 132.384938998000052, -2.256524346999925 ], [ 132.347911004000025, -2.270114841999941 ], [ 132.305674675000091, -2.265557549999926 ], [ 132.28052819100003, -2.249769789999959 ], [ 132.264659050000091, -2.228285414999959 ], [ 132.251963738000086, -2.20476653399993 ], [ 132.236175977000016, -2.183038018999923 ], [ 132.21452884200005, -2.165785414999959 ], [ 132.073415561000047, -2.10515715899993 ], [ 132.048350457000083, -2.083184502999927 ], [ 132.044444207000083, -2.059502862999921 ], [ 132.052582227000016, -2.052829684999949 ], [ 132.080088738000086, -2.037692966999941 ], [ 132.085948113000086, -2.028903903999947 ], [ 132.090586785000028, -2.015557549999926 ], [ 132.101817254000025, -2.006931247999944 ], [ 132.126963738000086, -1.998142184999949 ], [ 132.099619988000086, -2.00123463299991 ], [ 132.053233269000089, -2.015394789999959 ], [ 132.027354363000086, -2.018487237999921 ], [ 132.003428582000083, -1.983819268999923 ], [ 131.983246290000011, -1.972588799999926 ], [ 131.972911004000025, -1.964613539999959 ], [ 131.968597852000016, -1.953383070999962 ], [ 131.971039259, -1.943129164999959 ], [ 131.975433790000011, -1.932224216999941 ], [ 131.977305535000028, -1.921644789999959 ], [ 131.97234134200005, -1.912367445999962 ], [ 131.964691602000016, -1.908868096999925 ], [ 131.956879102000016, -1.907647393999923 ], [ 131.949229363000086, -1.904473565999922 ], [ 131.941905144000089, -1.895114841999941 ], [ 131.938324415000011, -1.883721612999921 ], [ 131.941905144000089, -1.850681247999944 ], [ 131.94109134200005, -1.837497653999947 ], [ 131.938243035000028, -1.828301690999922 ], [ 131.927744988000086, -1.805759372999944 ], [ 131.949229363000086, -1.794691664999959 ], [ 131.963389519000089, -1.778497002999927 ], [ 131.975352410000028, -1.760430596999925 ], [ 131.989756707000083, -1.744805596999925 ], [ 132.00709069100003, -1.732191664999959 ], [ 132.018321160000028, -1.721286716999941 ], [ 132.022471550000091, -1.70631275799991 ], [ 132.018321160000028, -1.682793877999927 ], [ 132.01880944100003, -1.684014580999929 ], [ 132.020192905000044, -1.685642184999949 ], [ 132.021983269000089, -1.683851820999962 ], [ 132.023936394000089, -1.675957940999922 ], [ 132.000987175000091, -1.677911065999922 ], [ 131.967539910000028, -1.697198174999926 ], [ 131.927256707000083, -1.706231377999927 ], [ 131.917491082000083, -1.707289320999962 ], [ 131.909678582000083, -1.703301690999922 ], [ 131.900401238000086, -1.690199476999908 ], [ 131.901133660000028, -1.684177341999941 ], [ 131.905772332000083, -1.67742278399993 ], [ 131.908702019000089, -1.672051690999922 ], [ 131.901377800000091, -1.66765715899993 ], [ 131.895274285000028, -1.662855726999908 ], [ 131.889414910000028, -1.657159112999921 ], [ 131.886729363000086, -1.65203215899993 ], [ 131.893565300000091, -1.61101653399993 ], [ 131.896739129000025, -1.601495049999926 ], [ 131.910899285000028, -1.590264580999929 ], [ 131.914073113000086, -1.583428643999923 ], [ 131.920583530000044, -1.579196872999944 ], [ 131.949066602000016, -1.573337497999944 ], [ 131.955577019000089, -1.569756768999923 ], [ 131.976328972000033, -1.548597914999959 ], [ 131.982188347000033, -1.53875090899993 ], [ 131.964040561000047, -1.53875090899993 ], [ 131.905772332000083, -1.567071221999925 ], [ 131.879893425000091, -1.57350025799991 ], [ 131.888845248000052, -1.556573174999926 ], [ 131.883474155000044, -1.550876559999949 ], [ 131.871267123000052, -1.553155205999929 ], [ 131.859385613000086, -1.55982838299991 ], [ 131.821462436000047, -1.598239841999941 ], [ 131.804860873000052, -1.607598565999922 ], [ 131.797618035000028, -1.580824476999908 ], [ 131.806407097000033, -1.549981377999927 ], [ 131.811045769000089, -1.520440362999921 ], [ 131.791188998000052, -1.49773528399993 ], [ 131.789724155000044, -1.525648695999962 ], [ 131.784027540000011, -1.547458591999941 ], [ 131.771657748000052, -1.563246351999908 ], [ 131.750173373000052, -1.57350025799991 ], [ 131.723155144000089, -1.57195403399993 ], [ 131.707774285000028, -1.555840752999927 ], [ 131.70671634200005, -1.534763278999947 ], [ 131.722911004000025, -1.518243096999925 ], [ 131.703786655000044, -1.51100025799991 ], [ 131.685069207000083, -1.51490650799991 ], [ 131.666351759, -1.522393487999921 ], [ 131.647227410000028, -1.525648695999962 ], [ 131.628754102000016, -1.520928643999923 ], [ 131.613536004000025, -1.511163018999923 ], [ 131.588715040000011, -1.48756275799991 ], [ 131.573090040000011, -1.48015715899993 ], [ 131.552500847000033, -1.476983330999929 ], [ 131.520192905000044, -1.476739190999922 ], [ 131.513926629000025, -1.475192966999941 ], [ 131.507823113000086, -1.47193775799991 ], [ 131.500498894000089, -1.469659112999921 ], [ 131.48951256600003, -1.470472914999959 ], [ 131.477549675000091, -1.474053643999923 ], [ 131.469086134, -1.479099216999941 ], [ 131.465668165000011, -1.486586195999962 ], [ 131.469004754000025, -1.49773528399993 ], [ 131.456879102000016, -1.502862237999921 ], [ 131.446136915000011, -1.503838799999926 ], [ 131.436534050000091, -1.501722914999959 ], [ 131.427500847000033, -1.49773528399993 ], [ 131.404958530000044, -1.469903252999927 ], [ 131.400645379000025, -1.467054945999962 ], [ 131.396657748000052, -1.461032809999949 ], [ 131.389821811000047, -1.456801039999959 ], [ 131.387217644000089, -1.450778903999947 ], [ 131.396983269000089, -1.439385674999926 ], [ 131.401866082000083, -1.427341403999947 ], [ 131.395355665000011, -1.41375090899993 ], [ 131.383636915000011, -1.401950778999947 ], [ 131.372813347000033, -1.394707940999922 ], [ 131.342133009, -1.40357838299991 ], [ 131.322276238000086, -1.401055596999925 ], [ 131.277110222000033, -1.37428150799991 ], [ 131.274912957000083, -1.39185963299991 ], [ 131.292002800000091, -1.410088799999926 ], [ 131.334971550000091, -1.439385674999926 ], [ 131.336924675000091, -1.453057549999926 ], [ 131.323741082000083, -1.469170830999929 ], [ 131.305186394000089, -1.483086846999925 ], [ 131.291514519000089, -1.490980726999908 ], [ 131.257334832000083, -1.49773528399993 ], [ 131.225433790000011, -1.515557549999926 ], [ 131.205739780000044, -1.523614190999922 ], [ 131.19849694100003, -1.521254164999959 ], [ 131.192881707000083, -1.494805596999925 ], [ 131.186534050000091, -1.485039971999925 ], [ 131.177500847000033, -1.477308851999908 ], [ 131.16724694100003, -1.470472914999959 ], [ 131.126312696000014, -1.453301690999922 ], [ 131.086436394000089, -1.451267184999949 ], [ 131.00359134200005, -1.456231377999927 ], [ 130.977305535000028, -1.452894789999959 ], [ 130.960297071000014, -1.446221612999921 ], [ 130.950938347000033, -1.433689059999949 ], [ 130.948252800000091, -1.412204684999949 ], [ 130.953135613000086, -1.405043226999908 ], [ 130.985850457000083, -1.391289971999925 ], [ 130.999522332000083, -1.379082940999922 ], [ 131.004405144000089, -1.37232838299991 ], [ 131.030121290000011, -1.29851653399993 ], [ 131.027598504000025, -1.284112237999921 ], [ 131.030039910000028, -1.275567315999922 ], [ 131.040782097000033, -1.271905205999929 ], [ 131.042165561000047, -1.267836195999962 ], [ 131.057383660000028, -1.24773528399993 ], [ 131.074473504000025, -1.23756275799991 ], [ 131.155284050000091, -1.224541924999926 ], [ 131.181651238000086, -1.217217705999929 ], [ 131.188649936000047, -1.207207940999922 ], [ 131.202159050000091, -1.162692966999941 ], [ 131.231618686000047, -1.126071872999944 ], [ 131.236175977000016, -1.117282809999949 ], [ 131.23951256600003, -1.105645440999922 ], [ 131.254161004000025, -1.080254815999922 ], [ 131.257334832000083, -1.062676690999922 ], [ 131.253672722000033, -1.027601820999962 ], [ 131.25709069100003, -1.014336846999925 ], [ 131.271006707000083, -1.003676039999959 ], [ 131.266368035000028, -0.987888278999947 ], [ 131.271494988000086, -0.949395440999922 ], [ 131.263519727000016, -0.929294528999947 ], [ 131.270192905000044, -0.926853122999944 ], [ 131.291514519000089, -0.914971612999921 ], [ 131.250254754000025, -0.872653903999947 ], [ 131.235362175000091, -0.846449476999908 ], [ 131.243011915000011, -0.819431247999944 ], [ 131.332204623000052, -0.792738539999959 ], [ 131.373545769000089, -0.787855726999908 ], [ 131.387543165000011, -0.782647393999923 ], [ 131.398773634, -0.766289971999925 ], [ 131.426768425000091, -0.75945403399993 ], [ 131.437998894000089, -0.754001559999949 ], [ 131.450368686000047, -0.750095309999949 ], [ 131.488291863000086, -0.746840101999908 ], [ 131.496348504000025, -0.740329684999949 ], [ 131.502940300000091, -0.733330987999921 ], [ 131.517914259, -0.73170338299991 ], [ 131.534190300000091, -0.733493747999944 ], [ 131.544769727000016, -0.736911716999941 ], [ 131.523448113000086, -0.761976820999962 ], [ 131.516612175000091, -0.774346612999921 ], [ 131.516774936000047, -0.785251559999949 ], [ 131.53288821700005, -0.782647393999923 ], [ 131.553477410000028, -0.776788018999923 ], [ 131.571299675000091, -0.76921965899993 ], [ 131.578868035000028, -0.76100025799991 ], [ 131.590179884, -0.756524346999925 ], [ 131.779551629000025, -0.719170830999929 ], [ 131.863454623000052, -0.691989841999941 ], [ 131.876475457000083, -0.689629815999922 ], [ 131.884287957000083, -0.681898695999962 ], [ 131.908457879000025, -0.633884372999944 ], [ 131.951914910000028, -0.588799737999921 ], [ 131.978851759, -0.566664320999962 ], [ 132.003428582000083, -0.551853122999944 ], [ 132.056000196000014, -0.534274997999944 ], [ 132.068858269000089, -0.531996351999908 ], [ 132.074880405000044, -0.523370049999926 ], [ 132.092051629000025, -0.483005466999941 ], [ 132.099619988000086, -0.469903252999927 ], [ 132.150889519000089, -0.435723565999922 ], [ 132.166270379000025, -0.432224216999941 ], [ 132.199880405000044, -0.414646091999941 ], [ 132.237152540000011, -0.401543877999927 ], [ 132.270030144000089, -0.384535414999959 ], [ 132.287933790000011, -0.381117445999962 ], [ 132.312754754000025, -0.379327080999929 ], [ 132.396657748000052, -0.353448174999926 ], [ 132.43718509200005, -0.347100518999923 ], [ 132.679209832000083, -0.368910414999959 ], [ 132.709157748000052, -0.360039971999925 ], [ 132.905284050000091, -0.453220309999949 ], [ 132.92546634200005, -0.45631275799991 ], [ 132.93677819100003, -0.454034112999921 ], [ 132.959808790000011, -0.441989841999941 ], [ 132.975108269000089, -0.444756768999923 ], [ 132.978688998000052, -0.451836846999925 ], [ 132.978688998000052, -0.460870049999926 ], [ 132.983409050000091, -0.469903252999927 ], [ 132.99968509200005, -0.480889580999929 ], [ 133.033539259, -0.49732838299991 ], [ 133.048350457000083, -0.507907809999949 ], [ 133.057302280000044, -0.511163018999923 ], [ 133.06959069100003, -0.511895440999922 ], [ 133.089854363000086, -0.510918877999927 ], [ 133.095225457000083, -0.513767184999949 ], [ 133.10670006600003, -0.527520440999922 ], [ 133.113291863000086, -0.531996351999908 ], [ 133.123220248000052, -0.533379815999922 ], [ 133.144704623000052, -0.531182549999926 ], [ 133.154795769000089, -0.531996351999908 ], [ 133.288910352000016, -0.628513278999947 ], [ 133.314952019000089, -0.65398528399993 ], [ 133.326019727000016, -0.678806247999944 ], [ 133.33562259200005, -0.690362237999921 ], [ 133.379079623000052, -0.717705987999921 ], [ 133.391612175000091, -0.723239841999941 ], [ 133.558360222000033, -0.743747653999947 ], [ 133.562673373000052, -0.745212497999944 ], [ 133.567230665000011, -0.748304945999962 ], [ 133.572764519000089, -0.750909112999921 ], [ 133.57935631600003, -0.750583591999941 ], [ 133.586192254000025, -0.736911716999941 ], [ 133.592458530000044, -0.73211028399993 ], [ 133.597504102000016, -0.726739190999922 ], [ 133.60474694100003, -0.725681247999944 ], [ 133.616953972000033, -0.73365650799991 ], [ 133.633067254000025, -0.74187590899993 ], [ 133.656097852000016, -0.747002862999921 ], [ 133.74537194100003, -0.750746351999908 ], [ 133.759125196000014, -0.745212497999944 ], [ 133.75123131600003, -0.730645440999922 ], [ 133.759938998000052, -0.720879815999922 ], [ 133.774099155000044, -0.717217705999929 ], [ 133.790375196000014, -0.718519789999959 ], [ 133.80591881600003, -0.723239841999941 ], [ 133.812266472000033, -0.727634372999944 ], [ 133.829844597000033, -0.743747653999947 ], [ 133.838389519000089, -0.743096612999921 ], [ 133.85084069100003, -0.739190362999921 ], [ 133.907237175000091, -0.731133721999925 ], [ 133.948415561000047, -0.731540622999944 ], [ 133.963877800000091, -0.729587497999944 ], [ 133.977224155000044, -0.723239841999941 ], [ 133.994883660000028, -0.733330987999921 ], [ 134.056407097000033, -0.795179945999962 ], [ 134.066742384, -0.80242278399993 ], [ 134.089366082000083, -0.807549737999921 ], [ 134.100759311000047, -0.812595309999949 ], [ 134.109141472000033, -0.820082289999959 ], [ 134.125336134, -0.838799737999921 ], [ 134.134938998000052, -0.846774997999944 ], [ 134.163828972000033, -0.858086846999925 ], [ 134.172129754000025, -0.863864841999941 ], [ 134.171234571000014, -0.875909112999921 ], [ 134.151540561000047, -0.882989190999922 ], [ 134.088715040000011, -0.890069268999923 ], [ 134.074473504000025, -0.894952080999929 ], [ 134.068125847000033, -0.907403252999927 ], [ 134.066579623000052, -0.932305596999925 ], [ 134.058929884, -0.948174737999921 ], [ 134.044688347000033, -0.951348565999922 ], [ 134.036143425000091, -0.957777601999908 ], [ 134.077972852000016, -1.045586846999925 ], [ 134.090505405000044, -1.062676690999922 ], [ 134.095062696000014, -1.07195403399993 ], [ 134.097992384, -1.09343840899993 ], [ 134.103770379000025, -1.103936455999929 ], [ 134.112152540000011, -1.115411065999922 ], [ 134.127452019000089, -1.148370049999926 ], [ 134.141449415000011, -1.165785414999959 ], [ 134.159922722000033, -1.183689059999949 ], [ 134.178477410000028, -1.197442315999922 ], [ 134.192881707000083, -1.202894789999959 ], [ 134.203786655000044, -1.21257903399993 ], [ 134.267425977000016, -1.330254815999922 ], [ 134.281993035000028, -1.350192966999941 ], [ 134.239105665000011, -1.416273695999962 ], [ 134.230479363000086, -1.436293226999908 ], [ 134.230479363000086, -1.476739190999922 ], [ 134.221446160000028, -1.544040622999944 ], [ 134.215830925000091, -1.560316664999959 ], [ 134.207204623000052, -1.57350025799991 ], [ 134.154307488000086, -1.628350518999923 ], [ 134.139008009, -1.638116143999923 ], [ 134.125987175000091, -1.652276299999926 ], [ 134.117198113000086, -1.655450127999927 ], [ 134.105316602000016, -1.65748463299991 ], [ 134.096446160000028, -1.663181247999944 ], [ 134.090342644000089, -1.671807549999926 ], [ 134.087087436000047, -1.682793877999927 ], [ 134.089203321000014, -1.697035414999959 ], [ 134.103526238000086, -1.737725518999923 ], [ 134.144867384, -1.93914153399993 ], [ 134.149587436000047, -2.01531340899993 ], [ 134.148610873000052, -2.025485934999949 ], [ 134.149750196000014, -2.02898528399993 ], [ 134.152842644000089, -2.033786716999941 ], [ 134.15552819100003, -2.039483330999929 ], [ 134.155284050000091, -2.045830987999921 ], [ 134.151377800000091, -2.047295830999929 ], [ 134.144297722000033, -2.045830987999921 ], [ 134.137868686000047, -2.045342705999929 ], [ 134.134938998000052, -2.049574476999908 ], [ 134.119639519000089, -2.113864841999941 ], [ 134.120616082000083, -2.135349216999941 ], [ 134.126149936000047, -2.144952080999929 ], [ 134.142344597000033, -2.154717705999929 ], [ 134.148610873000052, -2.162530205999929 ], [ 134.152110222000033, -2.17546965899993 ], [ 134.15162194100003, -2.184991143999923 ], [ 134.14966881600003, -2.19459400799991 ], [ 134.148610873000052, -2.207207940999922 ], [ 134.151703321000014, -2.227634372999944 ], [ 134.16570071700005, -2.259698174999926 ], [ 134.168955925000091, -2.279229424999926 ], [ 134.162771030000044, -2.301690362999921 ], [ 134.161631707000083, -2.31023528399993 ], [ 134.164805535000028, -2.320489190999922 ], [ 134.179453972000033, -2.33562590899993 ], [ 134.182627800000091, -2.344414971999925 ], [ 134.185720248000052, -2.361911716999941 ], [ 134.193369988000086, -2.379082940999922 ], [ 134.20435631600003, -2.395114841999941 ], [ 134.216807488000086, -2.408949476999908 ], [ 134.259125196000014, -2.440524997999944 ], [ 134.270843946000014, -2.465020440999922 ], [ 134.284353061000047, -2.479261976999908 ], [ 134.300140821000014, -2.491957289999959 ], [ 134.312998894000089, -2.498304945999962 ], [ 134.319346550000091, -2.505303643999923 ], [ 134.330251498000052, -2.522230726999908 ], [ 134.33757571700005, -2.541924737999921 ], [ 134.345469597000033, -2.576592705999929 ], [ 134.363617384, -2.617852471999925 ], [ 134.361501498000052, -2.634942315999922 ], [ 134.381358269000089, -2.65398528399993 ], [ 134.390635613000086, -2.681084893999923 ], [ 134.401703321000014, -2.744805596999925 ], [ 134.409027540000011, -2.75514088299991 ], [ 134.420746290000011, -2.766045830999929 ], [ 134.431651238000086, -2.779392184999949 ], [ 134.440277540000011, -2.80828215899993 ], [ 134.463877800000091, -2.854668877999927 ], [ 134.463877800000091, -2.862074476999908 ], [ 134.488617384, -2.861260674999926 ], [ 134.50554446700005, -2.853773695999962 ], [ 134.532725457000083, -2.834161065999922 ], [ 134.52662194100003, -2.82195403399993 ], [ 134.519053582000083, -2.778903903999947 ], [ 134.514659050000091, -2.769626559999949 ], [ 134.50318444100003, -2.750909112999921 ], [ 134.49927819100003, -2.738539320999962 ], [ 134.498383009, -2.724867445999962 ], [ 134.500254754000025, -2.69695403399993 ], [ 134.49927819100003, -2.68328215899993 ], [ 134.494639519000089, -2.670098565999922 ], [ 134.481455925000091, -2.645440362999921 ], [ 134.477549675000091, -2.634942315999922 ], [ 134.473968946000014, -2.606540622999944 ], [ 134.474375847000033, -2.580743096999925 ], [ 134.478037957000083, -2.558038018999923 ], [ 134.484385613000086, -2.539320570999962 ], [ 134.496348504000025, -2.517836195999962 ], [ 134.509287957000083, -2.507745049999926 ], [ 134.553721550000091, -2.49146900799991 ], [ 134.541188998000052, -2.486748955999929 ], [ 134.534515821000014, -2.478773695999962 ], [ 134.535655144000089, -2.46998463299991 ], [ 134.546397332000083, -2.462985934999949 ], [ 134.55632571700005, -2.464776299999926 ], [ 134.576996290000011, -2.480726820999962 ], [ 134.584239129000025, -2.484633070999962 ], [ 134.604258660000028, -2.488457940999922 ], [ 134.623057488000086, -2.498142184999949 ], [ 134.638438347000033, -2.511163018999923 ], [ 134.648203972000033, -2.52507903399993 ], [ 134.658050977000016, -2.562758070999962 ], [ 134.666840040000011, -2.825616143999923 ], [ 134.670013868000069, -2.837660414999959 ], [ 134.665920037979276, -2.840704847950406 ], [ 134.485155877741477, -2.986897475138392 ], [ 134.469601271981105, -2.995010674802813 ], [ 134.456682163650839, -3.003278904098181 ], [ 134.447587112055544, -3.012787366843497 ], [ 134.445365024875969, -3.023897800043471 ], [ 134.451721226253539, -3.065704033614281 ], [ 134.450687696579848, -3.077899671532634 ], [ 134.423299188106967, -3.114744967706088 ], [ 134.332141962081778, -3.189934176820827 ], [ 134.305580275908937, -3.220940036453555 ], [ 134.282015822372273, -3.256803480696078 ], [ 134.254627313000015, -3.30770476586224 ], [ 134.237212356165287, -3.353335056167907 ], [ 134.233801710580451, -3.38382415096379 ], [ 134.258348016048103, -3.39948210951178 ], [ 135.265108270030623, -3.759976902112328 ], [ 134.87360761869661, -4.254468682183926 ], [ 134.873493154272523, -4.254610558750696 ] ] ], [ [ [ 133.558360222000033, -4.232028903999947 ], [ 133.608571811000047, -4.291761976999908 ], [ 133.627696160000028, -4.300225518999923 ], [ 133.604177280000044, -4.300713799999926 ], [ 133.579112175000091, -4.278497002999927 ], [ 133.555186394000089, -4.251722914999959 ], [ 133.535166863000086, -4.238702080999929 ], [ 133.52271569100003, -4.23992278399993 ], [ 133.499522332000083, -4.245049737999921 ], [ 133.48755944100003, -4.246189059999949 ], [ 133.47038821700005, -4.246026299999926 ], [ 133.460459832000083, -4.244073174999926 ], [ 133.451182488000086, -4.237888278999947 ], [ 133.435883009, -4.225192966999941 ], [ 133.423350457000083, -4.217380466999941 ], [ 133.399424675000091, -4.209893487999921 ], [ 133.388194207000083, -4.204685153999947 ], [ 133.376719597000033, -4.193536065999922 ], [ 133.369395379000025, -4.182386976999908 ], [ 133.360199415000011, -4.173923434999949 ], [ 133.343760613000086, -4.170505466999941 ], [ 133.331390821000014, -4.165215752999927 ], [ 133.323741082000083, -4.152927341999941 ], [ 133.320078972000033, -4.137627862999921 ], [ 133.319346550000091, -4.124200127999927 ], [ 133.324229363000086, -4.108330987999921 ], [ 133.334483269000089, -4.10906340899993 ], [ 133.407562696000014, -4.160332940999922 ], [ 133.412608269000089, -4.162286065999922 ], [ 133.418630405000044, -4.163018487999921 ], [ 133.421397332000083, -4.165948174999926 ], [ 133.426768425000091, -4.179864190999922 ], [ 133.429047071000014, -4.184177341999941 ], [ 133.445974155000044, -4.19695403399993 ], [ 133.456065300000091, -4.20240650799991 ], [ 133.466644727000016, -4.204685153999947 ], [ 133.494313998000052, -4.206638278999947 ], [ 133.519704623000052, -4.21217213299991 ], [ 133.541270379000025, -4.220879815999922 ], [ 133.558360222000033, -4.232028903999947 ] ] ], [ [ [ 131.599375847000033, -2.634860934999949 ], [ 131.625987175000091, -2.619561455999929 ], [ 131.63990319100003, -2.613702080999929 ], [ 131.654633009, -2.613213799999926 ], [ 131.644053582000083, -2.628676039999959 ], [ 131.622569207000083, -2.643649997999944 ], [ 131.598155144000089, -2.653903903999947 ], [ 131.578868035000028, -2.656019789999959 ], [ 131.572520379000025, -2.651055596999925 ], [ 131.57935631600003, -2.644626559999949 ], [ 131.599375847000033, -2.634860934999949 ] ] ], [ [ [ 134.581228061000047, -2.416436455999929 ], [ 134.58366946700005, -2.438409112999921 ], [ 134.580251498000052, -2.445082289999959 ], [ 134.566905144000089, -2.45045338299991 ], [ 134.549652540000011, -2.451348565999922 ], [ 134.537282748000052, -2.445733330999929 ], [ 134.53443444100003, -2.435642184999949 ], [ 134.546397332000083, -2.422621351999908 ], [ 134.521494988000086, -2.406670830999929 ], [ 134.524261915000011, -2.39226653399993 ], [ 134.553721550000091, -2.367364190999922 ], [ 134.56023196700005, -2.351495049999926 ], [ 134.564219597000033, -2.329847914999959 ], [ 134.566905144000089, -2.292901299999926 ], [ 134.576833530000044, -2.29851653399993 ], [ 134.58130944100003, -2.30787525799991 ], [ 134.582286004000025, -2.319756768999923 ], [ 134.581228061000047, -2.332696221999925 ], [ 134.581228061000047, -2.416436455999929 ] ] ], [ [ [ 134.385020379000025, -2.00359465899993 ], [ 134.397471550000091, -2.005791924999926 ], [ 134.410655144000089, -2.012465101999908 ], [ 134.42156009200005, -2.022230726999908 ], [ 134.426524285000028, -2.033298434999949 ], [ 134.426280144000089, -2.039727471999925 ], [ 134.424327019000089, -2.045993747999944 ], [ 134.397471550000091, -2.091973565999922 ], [ 134.390147332000083, -2.131442966999941 ], [ 134.377452019000089, -2.149834893999923 ], [ 134.359873894000089, -2.153252862999921 ], [ 134.340342644000089, -2.135349216999941 ], [ 134.332367384, -2.111097914999959 ], [ 134.33326256600003, -2.08326588299991 ], [ 134.340342644000089, -2.055840752999927 ], [ 134.350596550000091, -2.032647393999923 ], [ 134.35670006600003, -2.022881768999923 ], [ 134.36451256600003, -2.013767184999949 ], [ 134.373789910000028, -2.006931247999944 ], [ 134.385020379000025, -2.00359465899993 ] ] ], [ [ [ 134.235850457000083, -1.738539320999962 ], [ 134.248220248000052, -1.743910414999959 ], [ 134.250010613000086, -1.761488539999959 ], [ 134.244802280000044, -1.796075127999927 ], [ 134.236338738000086, -1.799411716999941 ], [ 134.21998131600003, -1.812595309999949 ], [ 134.208018425000091, -1.826836846999925 ], [ 134.22388756600003, -1.849053643999923 ], [ 134.212412957000083, -1.884209893999923 ], [ 134.191661004000025, -1.921482028999947 ], [ 134.175140821000014, -1.943454684999949 ], [ 134.161631707000083, -1.895114841999941 ], [ 134.161631707000083, -1.877536716999941 ], [ 134.168955925000091, -1.829847914999959 ], [ 134.226817254000025, -1.744235934999949 ], [ 134.235850457000083, -1.738539320999962 ] ] ], [ [ [ 130.386485222000033, -1.888278903999947 ], [ 130.354991082000083, -1.912204684999949 ], [ 130.344248894000089, -1.928480726999908 ], [ 130.434336785000028, -1.963311455999929 ], [ 130.436859571000014, -1.976332289999959 ], [ 130.429860873000052, -1.980238539999959 ], [ 130.417979363000086, -1.980726820999962 ], [ 130.406260613000086, -1.983819268999923 ], [ 130.398448113000086, -1.989678643999923 ], [ 130.393890821000014, -1.994805596999925 ], [ 130.38990319100003, -2.000664971999925 ], [ 130.383067254000025, -2.008396091999941 ], [ 130.373545769000089, -2.012790622999944 ], [ 130.365489129000025, -2.008558851999908 ], [ 130.357595248000052, -2.00164153399993 ], [ 130.348399285000028, -1.998142184999949 ], [ 130.340017123000052, -1.99342213299991 ], [ 130.33952884200005, -1.983330987999921 ], [ 130.342458530000044, -1.973565362999921 ], [ 130.34498131600003, -1.970147393999923 ], [ 130.34302819100003, -1.964939059999949 ], [ 130.34107506600003, -1.955336195999962 ], [ 130.338145379000025, -1.949639580999929 ], [ 130.326996290000011, -1.960544528999947 ], [ 130.308848504000025, -1.99146900799991 ], [ 130.300547722000033, -1.998142184999949 ], [ 130.287119988000086, -2.004571221999925 ], [ 130.275238477000016, -2.019138278999947 ], [ 130.264984571000014, -2.035251559999949 ], [ 130.256114129000025, -2.045830987999921 ], [ 130.223399285000028, -2.057793877999927 ], [ 130.154307488000086, -2.058770440999922 ], [ 130.126475457000083, -2.066989841999941 ], [ 130.119476759, -2.059014580999929 ], [ 130.113047722000033, -2.053155205999929 ], [ 130.106455925000091, -2.048760674999926 ], [ 130.098480665000011, -2.045830987999921 ], [ 130.108571811000047, -2.040459893999923 ], [ 130.112803582000083, -2.038995049999926 ], [ 130.086924675000091, -2.026136976999908 ], [ 130.065928582000083, -2.022637627999927 ], [ 130.012868686000047, -2.025485934999949 ], [ 129.968923373000052, -2.004978122999944 ], [ 129.925547722000033, -2.003838799999926 ], [ 129.917002800000091, -2.001560153999947 ], [ 129.904063347000033, -1.993259372999944 ], [ 129.873383009, -1.982028903999947 ], [ 129.856211785000028, -1.969496351999908 ], [ 129.840830925000091, -1.964043877999927 ], [ 129.834320509, -1.960137627999927 ], [ 129.816416863000086, -1.940850518999923 ], [ 129.810557488000086, -1.935967705999929 ], [ 129.768077019000089, -1.918145440999922 ], [ 129.74382571700005, -1.912204684999949 ], [ 129.732920769000089, -1.903741143999923 ], [ 129.714854363000086, -1.881442966999941 ], [ 129.745290561000047, -1.863457940999922 ], [ 129.872569207000083, -1.819268487999921 ], [ 129.87623131600003, -1.815850518999923 ], [ 129.877207879000025, -1.811944268999923 ], [ 129.877614780000044, -1.80828215899993 ], [ 129.879405144000089, -1.805759372999944 ], [ 129.895274285000028, -1.796807549999926 ], [ 129.905039910000028, -1.793715101999908 ], [ 129.93873131600003, -1.789239190999922 ], [ 129.958750847000033, -1.780694268999923 ], [ 130.011973504000025, -1.750176690999922 ], [ 130.030772332000083, -1.74382903399993 ], [ 130.051768425000091, -1.739434502999927 ], [ 130.096039259, -1.735446872999944 ], [ 130.137054884, -1.725274346999925 ], [ 130.160492384, -1.72429778399993 ], [ 130.220469597000033, -1.73601653399993 ], [ 130.23170006600003, -1.734307549999926 ], [ 130.248220248000052, -1.718845309999949 ], [ 130.267751498000052, -1.704522393999923 ], [ 130.289073113000086, -1.692152601999908 ], [ 130.32154381600003, -1.679131768999923 ], [ 130.332286004000025, -1.676690362999921 ], [ 130.342946811000047, -1.676690362999921 ], [ 130.353363477000016, -1.680108330999929 ], [ 130.357188347000033, -1.694919528999947 ], [ 130.351817254000025, -1.741387627999927 ], [ 130.406260613000086, -1.77898528399993 ], [ 130.417979363000086, -1.793552341999941 ], [ 130.43132571700005, -1.814629815999922 ], [ 130.439952019000089, -1.835707289999959 ], [ 130.437754754000025, -1.850681247999944 ], [ 130.428070509, -1.855726820999962 ], [ 130.420420769000089, -1.855645440999922 ], [ 130.41570071700005, -1.858086846999925 ], [ 130.41179446700005, -1.881768487999921 ], [ 130.405772332000083, -1.885023695999962 ], [ 130.396983269000089, -1.885430596999925 ], [ 130.386485222000033, -1.888278903999947 ] ] ], [ [ [ 129.954437696000014, -1.162692966999941 ], [ 129.960703972000033, -1.176364841999941 ], [ 129.953298373000052, -1.189629815999922 ], [ 129.927256707000083, -1.210381768999923 ], [ 129.925303582000083, -1.205173434999949 ], [ 129.922699415000011, -1.20086028399993 ], [ 129.920746290000011, -1.195977471999925 ], [ 129.920420769000089, -1.189385674999926 ], [ 129.88209069100003, -1.219659112999921 ], [ 129.859222852000016, -1.233168226999908 ], [ 129.830902540000011, -1.237074476999908 ], [ 129.872569207000083, -1.21021900799991 ], [ 129.879405144000089, -1.202894789999959 ], [ 129.874196811000047, -1.19695403399993 ], [ 129.861827019000089, -1.20045338299991 ], [ 129.849619988000086, -1.206963799999926 ], [ 129.844574415000011, -1.210381768999923 ], [ 129.83326256600003, -1.211846612999921 ], [ 129.762705925000091, -1.210381768999923 ], [ 129.743907097000033, -1.199883721999925 ], [ 129.748789910000028, -1.185804945999962 ], [ 129.767425977000016, -1.172051690999922 ], [ 129.85865319100003, -1.142022393999923 ], [ 129.879405144000089, -1.141534112999921 ], [ 129.896332227000016, -1.154229424999926 ], [ 129.917002800000091, -1.156426690999922 ], [ 129.937673373000052, -1.156508070999962 ], [ 129.954437696000014, -1.162692966999941 ] ] ], [ [ [ 131.057383660000028, -1.000664971999925 ], [ 131.059336785000028, -1.004978122999944 ], [ 131.068614129000025, -1.021254164999959 ], [ 131.071787957000083, -1.031670830999929 ], [ 131.072520379000025, -1.077569268999923 ], [ 131.037364129000025, -1.226332289999959 ], [ 131.014659050000091, -1.268975518999923 ], [ 131.009776238000086, -1.288669528999947 ], [ 131.006602410000028, -1.310804945999962 ], [ 130.997569207000083, -1.332452080999929 ], [ 130.982595248000052, -1.348565362999921 ], [ 130.961924675000091, -1.353773695999962 ], [ 130.94849694100003, -1.348402601999908 ], [ 130.932383660000028, -1.326592705999929 ], [ 130.920909050000091, -1.31959400799991 ], [ 130.908213738000086, -1.321465752999927 ], [ 130.894704623000052, -1.328708591999941 ], [ 130.879405144000089, -1.340101820999962 ], [ 130.863047722000033, -1.33717213299991 ], [ 130.853282097000033, -1.330661716999941 ], [ 130.828949415000011, -1.291436455999929 ], [ 130.820485873000052, -1.281670830999929 ], [ 130.797373894000089, -1.264418226999908 ], [ 130.769704623000052, -1.248223565999922 ], [ 130.758067254000025, -1.238213799999926 ], [ 130.74968509200005, -1.223402601999908 ], [ 130.748789910000028, -1.216973565999922 ], [ 130.750254754000025, -1.202732028999947 ], [ 130.74968509200005, -1.196058851999908 ], [ 130.746267123000052, -1.190036716999941 ], [ 130.74187259200005, -1.186293226999908 ], [ 130.737803582000083, -1.184340101999908 ], [ 130.73601321700005, -1.183200778999947 ], [ 130.732269727000016, -1.167901299999926 ], [ 130.731211785000028, -1.158379815999922 ], [ 130.729258660000028, -1.150811455999929 ], [ 130.72234134200005, -1.141534112999921 ], [ 130.711761915000011, -1.13250090899993 ], [ 130.703461134, -1.127373955999929 ], [ 130.695974155000044, -1.120700778999947 ], [ 130.688243035000028, -1.107354424999926 ], [ 130.710134311000047, -1.092868747999944 ], [ 130.711924675000091, -1.069919528999947 ], [ 130.701833530000044, -1.045098565999922 ], [ 130.688243035000028, -1.024834893999923 ], [ 130.649424675000091, -0.988376559999949 ], [ 130.649750196000014, -0.973809502999927 ], [ 130.680674675000091, -0.956638278999947 ], [ 130.790049675000091, -0.929294528999947 ], [ 130.830577019000089, -0.90748463299991 ], [ 130.868500196000014, -0.89381275799991 ], [ 130.89185631600003, -0.88990650799991 ], [ 130.912933790000011, -0.89421965899993 ], [ 130.929047071000014, -0.911553643999923 ], [ 130.934906446000014, -0.925876559999949 ], [ 130.939707879000025, -0.932305596999925 ], [ 130.944834832000083, -0.932305596999925 ], [ 130.960785352000016, -0.922946872999944 ], [ 130.980316602000016, -0.91765715899993 ], [ 131.02662194100003, -0.913995049999926 ], [ 131.030772332000083, -0.913018487999921 ], [ 131.03484134200005, -0.914808851999908 ], [ 131.043793165000011, -0.922458591999941 ], [ 131.052744988000086, -0.932305596999925 ], [ 131.074880405000044, -0.966892184999949 ], [ 131.076182488000086, -0.97429778399993 ], [ 131.061534050000091, -0.98992278399993 ], [ 131.057383660000028, -1.000664971999925 ] ] ], [ [ [ 130.91724694100003, -0.778415622999944 ], [ 130.924571160000028, -0.780694268999923 ], [ 130.916758660000028, -0.785739841999941 ], [ 130.904795769000089, -0.79029713299991 ], [ 130.899912957000083, -0.791436455999929 ], [ 130.891123894000089, -0.794854424999926 ], [ 130.88249759200005, -0.795993747999944 ], [ 130.875743035000028, -0.799248955999929 ], [ 130.873220248000052, -0.808851820999962 ], [ 130.876719597000033, -0.817559502999927 ], [ 130.884287957000083, -0.819512627999927 ], [ 130.891612175000091, -0.820407809999949 ], [ 130.893728061000047, -0.826267184999949 ], [ 130.889659050000091, -0.832777601999908 ], [ 130.881602410000028, -0.83953215899993 ], [ 130.871836785000028, -0.844659112999921 ], [ 130.847504102000016, -0.851006768999923 ], [ 130.819346550000091, -0.870293877999927 ], [ 130.800791863000086, -0.874607028999947 ], [ 130.762217644000089, -0.87664153399993 ], [ 130.617930535000028, -0.908461195999962 ], [ 130.543467644000089, -0.913832289999959 ], [ 130.510020379000025, -0.922458591999941 ], [ 130.510020379000025, -0.914971612999921 ], [ 130.519867384, -0.911309502999927 ], [ 130.523692254000025, -0.908786716999941 ], [ 130.50359134200005, -0.907403252999927 ], [ 130.487315300000091, -0.903903903999947 ], [ 130.475433790000011, -0.90593840899993 ], [ 130.468516472000033, -0.922458591999941 ], [ 130.461680535000028, -0.922458591999941 ], [ 130.452647332000083, -0.910577080999929 ], [ 130.43677819100003, -0.913262627999927 ], [ 130.400157097000033, -0.929294528999947 ], [ 130.40943444100003, -0.912041924999926 ], [ 130.427744988000086, -0.902927341999941 ], [ 130.44068444100003, -0.893161716999941 ], [ 130.434336785000028, -0.874607028999947 ], [ 130.447520379000025, -0.860935153999947 ], [ 130.448415561000047, -0.818617445999962 ], [ 130.461680535000028, -0.805108330999929 ], [ 130.461273634, -0.816013278999947 ], [ 130.461680535000028, -0.819431247999944 ], [ 130.468516472000033, -0.819431247999944 ], [ 130.470713738000086, -0.806735934999949 ], [ 130.478526238000086, -0.799899997999944 ], [ 130.490000847000033, -0.799248955999929 ], [ 130.50318444100003, -0.805108330999929 ], [ 130.494639519000089, -0.827894789999959 ], [ 130.519053582000083, -0.839613539999959 ], [ 130.550954623000052, -0.834161065999922 ], [ 130.564707879000025, -0.805108330999929 ], [ 130.573985222000033, -0.80982838299991 ], [ 130.580414259, -0.815606377999927 ], [ 130.584646030000044, -0.823174737999921 ], [ 130.586436394000089, -0.833103122999944 ], [ 130.615896030000044, -0.81178150799991 ], [ 130.631195509, -0.806247653999947 ], [ 130.646657748000052, -0.812595309999949 ], [ 130.645030144000089, -0.814222914999959 ], [ 130.64380944100003, -0.814873955999929 ], [ 130.642588738000086, -0.816013278999947 ], [ 130.641123894000089, -0.819431247999944 ], [ 130.654307488000086, -0.823988539999959 ], [ 130.663910352000016, -0.820896091999941 ], [ 130.671885613000086, -0.815199476999908 ], [ 130.680674675000091, -0.812595309999949 ], [ 130.69459069100003, -0.815199476999908 ], [ 130.718516472000033, -0.824314059999949 ], [ 130.732758009, -0.826267184999949 ], [ 130.757985873000052, -0.818942966999941 ], [ 130.780284050000091, -0.80592213299991 ], [ 130.800140821000014, -0.801446221999925 ], [ 130.817881707000083, -0.819431247999944 ], [ 130.819183790000011, -0.809665622999944 ], [ 130.817556186000047, -0.80592213299991 ], [ 130.811045769000089, -0.798923434999949 ], [ 130.816579623000052, -0.788262627999927 ], [ 130.800629102000016, -0.769952080999929 ], [ 130.804209832000083, -0.757256768999923 ], [ 130.811859571000014, -0.764743747999944 ], [ 130.81999759200005, -0.767347914999959 ], [ 130.83912194100003, -0.767510674999926 ], [ 130.852061394000089, -0.76921965899993 ], [ 130.857188347000033, -0.768731377999927 ], [ 130.873545769000089, -0.764580987999921 ], [ 130.879405144000089, -0.764743747999944 ], [ 130.889414910000028, -0.768161716999941 ], [ 130.906016472000033, -0.77662525799991 ], [ 130.91724694100003, -0.778415622999944 ] ] ], [ [ [ 130.677582227000016, -0.435804945999962 ], [ 130.686371290000011, -0.449151299999926 ], [ 130.687998894000089, -0.463148695999962 ], [ 130.683441602000016, -0.477227471999925 ], [ 130.654551629000025, -0.516696872999944 ], [ 130.641123894000089, -0.527520440999922 ], [ 130.596364780000044, -0.538506768999923 ], [ 130.581065300000091, -0.539239190999922 ], [ 130.57154381600003, -0.531996351999908 ], [ 130.58366946700005, -0.523858330999929 ], [ 130.597666863000086, -0.490817966999941 ], [ 130.596853061000047, -0.46453215899993 ], [ 130.564707879000025, -0.476739190999922 ], [ 130.562266472000033, -0.481052341999941 ], [ 130.55827884200005, -0.495049737999921 ], [ 130.554453972000033, -0.500909112999921 ], [ 130.547618035000028, -0.505303643999923 ], [ 130.533702019000089, -0.509860934999949 ], [ 130.527110222000033, -0.514336846999925 ], [ 130.517100457000083, -0.517754815999922 ], [ 130.461680535000028, -0.525160414999959 ], [ 130.470469597000033, -0.514336846999925 ], [ 130.482432488000086, -0.509209893999923 ], [ 130.492523634, -0.503350518999923 ], [ 130.496348504000025, -0.490411065999922 ], [ 130.481130405000044, -0.49578215899993 ], [ 130.469493035000028, -0.490329684999949 ], [ 130.460948113000086, -0.478122653999947 ], [ 130.454844597000033, -0.463799737999921 ], [ 130.463552280000044, -0.465508721999925 ], [ 130.468597852000016, -0.467217705999929 ], [ 130.472178582000083, -0.470310153999947 ], [ 130.47584069100003, -0.476739190999922 ], [ 130.482188347000033, -0.46453215899993 ], [ 130.49382571700005, -0.450127862999921 ], [ 130.505056186000047, -0.441338799999926 ], [ 130.510020379000025, -0.445733330999929 ], [ 130.513438347000033, -0.461846612999921 ], [ 130.522471550000091, -0.468926690999922 ], [ 130.535166863000086, -0.468926690999922 ], [ 130.55046634200005, -0.463799737999921 ], [ 130.559336785000028, -0.455987237999921 ], [ 130.56959069100003, -0.444105726999908 ], [ 130.582286004000025, -0.433200778999947 ], [ 130.606130405000044, -0.426690362999921 ], [ 130.610118035000028, -0.422621351999908 ], [ 130.613129102000016, -0.417575778999947 ], [ 130.617442254000025, -0.412530205999929 ], [ 130.625010613000086, -0.409600518999923 ], [ 130.63209069100003, -0.411309502999927 ], [ 130.645843946000014, -0.419366143999923 ], [ 130.670258009, -0.430271091999941 ], [ 130.677582227000016, -0.435804945999962 ] ] ], [ [ [ 131.297618035000028, -0.237237237999921 ], [ 131.306651238000086, -0.251397393999923 ], [ 131.338552280000044, -0.277601820999962 ], [ 131.345469597000033, -0.288181247999944 ], [ 131.340098504000025, -0.296075127999927 ], [ 131.316661004000025, -0.299574476999908 ], [ 131.311371290000011, -0.308851820999962 ], [ 131.306651238000086, -0.321221612999921 ], [ 131.296722852000016, -0.328545830999929 ], [ 131.287282748000052, -0.33717213299991 ], [ 131.283946160000028, -0.353936455999929 ], [ 131.279470248000052, -0.351739190999922 ], [ 131.268077019000089, -0.348565362999921 ], [ 131.263519727000016, -0.346449476999908 ], [ 131.262217644000089, -0.368340752999927 ], [ 131.252940300000091, -0.384372653999947 ], [ 131.23796634200005, -0.389255466999941 ], [ 131.219248894000089, -0.377536716999941 ], [ 131.18091881600003, -0.346449476999908 ], [ 131.157725457000083, -0.332940362999921 ], [ 131.147471550000091, -0.335870049999926 ], [ 131.143077019000089, -0.332126559999949 ], [ 131.112803582000083, -0.332126559999949 ], [ 131.104340040000011, -0.328220309999949 ], [ 131.102224155000044, -0.324395440999922 ], [ 131.098480665000011, -0.322930596999925 ], [ 131.085459832000083, -0.32586028399993 ], [ 131.069834832000083, -0.332940362999921 ], [ 131.023285352000016, -0.36687590899993 ], [ 131.021820509, -0.352959893999923 ], [ 131.015635613000086, -0.349867445999962 ], [ 130.996104363000086, -0.353936455999929 ], [ 130.995860222000033, -0.354913018999923 ], [ 130.991058790000011, -0.357028903999947 ], [ 130.984385613000086, -0.359144789999959 ], [ 130.979014519000089, -0.360039971999925 ], [ 130.970469597000033, -0.358005466999941 ], [ 130.95826256600003, -0.348565362999921 ], [ 130.951670769000089, -0.346449476999908 ], [ 130.93091881600003, -0.315362237999921 ], [ 130.905284050000091, -0.298435153999947 ], [ 130.899912957000083, -0.291192315999922 ], [ 130.907237175000091, -0.284926039999959 ], [ 130.893077019000089, -0.264336846999925 ], [ 130.879405144000089, -0.254082940999922 ], [ 130.863291863000086, -0.250583591999941 ], [ 130.834239129000025, -0.24928150799991 ], [ 130.816905144000089, -0.244886976999908 ], [ 130.807627800000091, -0.244073174999926 ], [ 130.796722852000016, -0.239190362999921 ], [ 130.794444207000083, -0.22820403399993 ], [ 130.797373894000089, -0.209242445999962 ], [ 130.79224694100003, -0.189873955999929 ], [ 130.78484134200005, -0.17937590899993 ], [ 130.730235222000033, -0.130466403999947 ], [ 130.719493035000028, -0.114108981999948 ], [ 130.715505405000044, -0.093194268999923 ], [ 130.707041863000086, -0.096286716999941 ], [ 130.701182488000086, -0.096449476999908 ], [ 130.688243035000028, -0.093194268999923 ], [ 130.692718946000014, -0.086358330999929 ], [ 130.695567254000025, -0.079522393999923 ], [ 130.67701256600003, -0.077894789999959 ], [ 130.65007571700005, -0.07976653399993 ], [ 130.625254754000025, -0.084974867999961 ], [ 130.613047722000033, -0.093194268999923 ], [ 130.637461785000028, -0.098728122999944 ], [ 130.647227410000028, -0.103855075999945 ], [ 130.654063347000033, -0.113702080999929 ], [ 130.636078321000014, -0.113457940999922 ], [ 130.62623131600003, -0.125746351999908 ], [ 130.629242384, -0.140720309999949 ], [ 130.665375196000014, -0.154392184999949 ], [ 130.682383660000028, -0.169854424999926 ], [ 130.717784050000091, -0.216973565999922 ], [ 130.738780144000089, -0.255791924999926 ], [ 130.742686394000089, -0.27467213299991 ], [ 130.750987175000091, -0.287530205999929 ], [ 130.792735222000033, -0.307224216999941 ], [ 130.811045769000089, -0.318536065999922 ], [ 130.815440300000091, -0.302178643999923 ], [ 130.820323113000086, -0.294122002999927 ], [ 130.828135613000086, -0.291436455999929 ], [ 130.871918165000011, -0.293226820999962 ], [ 130.887054884, -0.296482028999947 ], [ 130.893728061000047, -0.30201588299991 ], [ 130.896657748000052, -0.312107028999947 ], [ 130.903819207000083, -0.317559502999927 ], [ 130.912852410000028, -0.321058851999908 ], [ 130.920909050000091, -0.32586028399993 ], [ 130.929535352000016, -0.336114190999922 ], [ 130.940114780000044, -0.355889580999929 ], [ 130.948252800000091, -0.36687590899993 ], [ 130.940277540000011, -0.370863539999959 ], [ 130.931407097000033, -0.379001559999949 ], [ 130.924001498000052, -0.388604424999926 ], [ 130.920909050000091, -0.398044528999947 ], [ 130.916758660000028, -0.406019789999959 ], [ 130.906504754000025, -0.413018487999921 ], [ 130.865489129000025, -0.429294528999947 ], [ 130.779307488000086, -0.445082289999959 ], [ 130.756032748000052, -0.445977471999925 ], [ 130.733083530000044, -0.441501559999949 ], [ 130.715505405000044, -0.428399346999925 ], [ 130.706065300000091, -0.410251559999949 ], [ 130.680674675000091, -0.339613539999959 ], [ 130.693614129000025, -0.33131275799991 ], [ 130.695974155000044, -0.318129164999959 ], [ 130.692556186000047, -0.303480726999908 ], [ 130.688243035000028, -0.291192315999922 ], [ 130.609141472000033, -0.314060153999947 ], [ 130.579112175000091, -0.333916924999926 ], [ 130.564707879000025, -0.373711846999925 ], [ 130.57154381600003, -0.373711846999925 ], [ 130.582286004000025, -0.366143487999921 ], [ 130.578623894000089, -0.383884372999944 ], [ 130.561534050000091, -0.42701588299991 ], [ 130.554453972000033, -0.433526299999926 ], [ 130.547373894000089, -0.436130466999941 ], [ 130.54420006600003, -0.432061455999929 ], [ 130.545746290000011, -0.420179945999962 ], [ 130.558441602000016, -0.387383721999925 ], [ 130.541188998000052, -0.38250090899993 ], [ 130.540537957000083, -0.367933851999908 ], [ 130.545420769000089, -0.347751559999949 ], [ 130.54420006600003, -0.32586028399993 ], [ 130.537933790000011, -0.316501559999949 ], [ 130.522227410000028, -0.301934502999927 ], [ 130.516123894000089, -0.291192315999922 ], [ 130.517100457000083, -0.282647393999923 ], [ 130.522471550000091, -0.274834893999923 ], [ 130.526540561000047, -0.266778252999927 ], [ 130.523692254000025, -0.257582289999959 ], [ 130.506602410000028, -0.250258070999962 ], [ 130.485687696000014, -0.255303643999923 ], [ 130.454844597000033, -0.271254164999959 ], [ 130.451182488000086, -0.274183851999908 ], [ 130.444509311000047, -0.283135674999926 ], [ 130.441172722000033, -0.284926039999959 ], [ 130.435557488000086, -0.28289153399993 ], [ 130.432383660000028, -0.273695570999962 ], [ 130.427500847000033, -0.271254164999959 ], [ 130.408457879000025, -0.269707940999922 ], [ 130.399750196000014, -0.267673434999949 ], [ 130.392751498000052, -0.263848565999922 ], [ 130.382172071000014, -0.275648695999962 ], [ 130.375661655000044, -0.274590752999927 ], [ 130.370860222000033, -0.267998955999929 ], [ 130.365977410000028, -0.263848565999922 ], [ 130.338877800000091, -0.262872002999927 ], [ 130.338145379000025, -0.263848565999922 ], [ 130.316254102000016, -0.259942315999922 ], [ 130.310801629000025, -0.257582289999959 ], [ 130.307383660000028, -0.251885674999926 ], [ 130.304698113000086, -0.242771091999941 ], [ 130.300547722000033, -0.234144789999959 ], [ 130.293711785000028, -0.230401299999926 ], [ 130.265391472000033, -0.224786065999922 ], [ 130.232432488000086, -0.212823174999926 ], [ 130.217051629000025, -0.20086028399993 ], [ 130.241953972000033, -0.195570570999962 ], [ 130.250173373000052, -0.197442315999922 ], [ 130.267588738000086, -0.206149997999944 ], [ 130.27662194100003, -0.209242445999962 ], [ 130.279958530000044, -0.20867278399993 ], [ 130.303233269000089, -0.20867278399993 ], [ 130.30396569100003, -0.209242445999962 ], [ 130.338552280000044, -0.203220309999949 ], [ 130.35670006600003, -0.201836846999925 ], [ 130.369151238000086, -0.206149997999944 ], [ 130.383555535000028, -0.214450778999947 ], [ 130.398610873000052, -0.214450778999947 ], [ 130.412852410000028, -0.208428643999923 ], [ 130.424082879000025, -0.199314059999949 ], [ 130.429860873000052, -0.186293226999908 ], [ 130.416677280000044, -0.184177341999941 ], [ 130.39771569100003, -0.183363539999959 ], [ 130.386485222000033, -0.17506275799991 ], [ 130.402679884, -0.169854424999926 ], [ 130.412119988000086, -0.157321872999944 ], [ 130.41374759200005, -0.141534112999921 ], [ 130.406260613000086, -0.127373955999929 ], [ 130.39771569100003, -0.145928643999923 ], [ 130.384613477000016, -0.15748463299991 ], [ 130.374034050000091, -0.155857028999947 ], [ 130.372243686000047, -0.134209893999923 ], [ 130.365977410000028, -0.134209893999923 ], [ 130.361338738000086, -0.143243096999925 ], [ 130.354828321000014, -0.146661065999922 ], [ 130.34693444100003, -0.145440362999921 ], [ 130.338145379000025, -0.14031340899993 ], [ 130.341319207000083, -0.154473565999922 ], [ 130.347504102000016, -0.168389580999929 ], [ 130.350759311000047, -0.180352471999925 ], [ 130.34498131600003, -0.18873463299991 ], [ 130.333018425000091, -0.188246351999908 ], [ 130.317067905000044, -0.181817315999922 ], [ 130.303070509, -0.172946872999944 ], [ 130.297129754000025, -0.165215752999927 ], [ 130.293955925000091, -0.15203215899993 ], [ 130.279795769000089, -0.131442966999941 ], [ 130.27662194100003, -0.117120049999926 ], [ 130.280609571000014, -0.104994398999906 ], [ 130.290782097000033, -0.099216403999947 ], [ 130.304047071000014, -0.099867445999962 ], [ 130.31763756600003, -0.10678476399994 ], [ 130.32349694100003, -0.102634372999944 ], [ 130.329112175000091, -0.096612237999921 ], [ 130.334239129000025, -0.088962497999944 ], [ 130.338145379000025, -0.079522393999923 ], [ 130.343109571000014, -0.093519789999959 ], [ 130.34498131600003, -0.10906340899993 ], [ 130.348399285000028, -0.121840101999908 ], [ 130.35865319100003, -0.127373955999929 ], [ 130.368662957000083, -0.121840101999908 ], [ 130.369151238000086, -0.108330987999921 ], [ 130.364268425000091, -0.092380466999941 ], [ 130.35865319100003, -0.079522393999923 ], [ 130.380869988000086, -0.073663018999923 ], [ 130.394297722000033, -0.082818291999956 ], [ 130.406993035000028, -0.097263278999947 ], [ 130.427500847000033, -0.10678476399994 ], [ 130.423350457000083, -0.086195570999962 ], [ 130.420664910000028, -0.079522393999923 ], [ 130.427500847000033, -0.079522393999923 ], [ 130.429860873000052, -0.086602471999925 ], [ 130.434336785000028, -0.093194268999923 ], [ 130.47779381600003, -0.075494072999959 ], [ 130.498545769000089, -0.062676690999922 ], [ 130.510020379000025, -0.044732354999951 ], [ 130.519541863000086, -0.049655856999948 ], [ 130.528086785000028, -0.056410414999959 ], [ 130.54420006600003, -0.072686455999929 ], [ 130.545420769000089, -0.068617445999962 ], [ 130.55046634200005, -0.058444919999943 ], [ 130.552744988000086, -0.063083591999941 ], [ 130.556162957000083, -0.067925713999955 ], [ 130.558441602000016, -0.072686455999929 ], [ 130.560801629000025, -0.065606377999927 ], [ 130.57154381600003, -0.044732354999951 ], [ 130.574961785000028, -0.048597914999959 ], [ 130.586436394000089, -0.058444919999943 ], [ 130.595225457000083, -0.047214450999945 ], [ 130.62273196700005, -0.051771742999961 ], [ 130.641123894000089, -0.044732354999951 ], [ 130.660980665000011, -0.044732354999951 ], [ 130.69109134200005, -0.035739841999941 ], [ 130.716319207000083, -0.033257744999958 ], [ 130.72234134200005, -0.052178643999923 ], [ 130.736094597000033, -0.046888929999909 ], [ 130.765472852000016, -0.049981377999927 ], [ 130.783864780000044, -0.044732354999951 ], [ 130.776866082000083, -0.037286065999922 ], [ 130.768890821000014, -0.032525322999959 ], [ 130.759776238000086, -0.03053150799991 ], [ 130.74968509200005, -0.031101169999943 ], [ 130.761485222000033, -0.018365166999956 ], [ 130.779063347000033, -0.008965752999927 ], [ 130.800629102000016, -0.003838799999926 ], [ 130.824717644000089, -0.003838799999926 ], [ 130.961924675000091, -0.044732354999951 ], [ 130.966563347000033, -0.04810963299991 ], [ 130.96998131600003, -0.053521416999956 ], [ 130.973643425000091, -0.05718352699995 ], [ 130.979014519000089, -0.055352471999925 ], [ 130.986827019000089, -0.048150322999959 ], [ 130.990570509, -0.04615650799991 ], [ 131.019786004000025, -0.038628838999955 ], [ 131.026703321000014, -0.037896416999956 ], [ 131.04460696700005, -0.038262627999927 ], [ 131.056407097000033, -0.041029554999909 ], [ 131.057790561000047, -0.049086195999962 ], [ 131.043793165000011, -0.065240166999956 ], [ 131.05982506600003, -0.066420179999909 ], [ 131.086192254000025, -0.07154713299991 ], [ 131.113536004000025, -0.073663018999923 ], [ 131.126719597000033, -0.076429945999962 ], [ 131.153656446000014, -0.085707289999959 ], [ 131.161875847000033, -0.092380466999941 ], [ 131.170420769000089, -0.101657809999949 ], [ 131.180023634, -0.110039971999925 ], [ 131.191579623000052, -0.113702080999929 ], [ 131.196625196000014, -0.119235934999949 ], [ 131.201914910000028, -0.130059502999927 ], [ 131.211599155000044, -0.137872002999927 ], [ 131.229502800000091, -0.134209893999923 ], [ 131.233897332000083, -0.138116143999923 ], [ 131.238536004000025, -0.139825127999927 ], [ 131.253672722000033, -0.14031340899993 ], [ 131.263682488000086, -0.142673434999949 ], [ 131.269297722000033, -0.147556247999944 ], [ 131.273936394000089, -0.152439059999949 ], [ 131.297373894000089, -0.159274997999944 ], [ 131.30591881600003, -0.171075127999927 ], [ 131.318207227000016, -0.203057549999926 ], [ 131.304860873000052, -0.217543226999908 ], [ 131.298838738000086, -0.226657809999949 ], [ 131.297618035000028, -0.237237237999921 ] ] ], [ [ [ 134.310313347000033, 0.75649648600006 ], [ 134.326833530000044, 0.766180731000077 ], [ 134.342946811000047, 0.765204169000071 ], [ 134.34693444100003, 0.752020575000074 ], [ 134.338633660000028, 0.737534898000092 ], [ 134.322520379000025, 0.730536200000074 ], [ 134.304860873000052, 0.732896226000094 ], [ 134.30046634200005, 0.743475653000075 ], [ 134.310313347000033, 0.75649648600006 ] ] ], [ [ [ 131.236338738000086, 1.019354559000078 ], [ 131.237071160000028, 1.024969794000071 ], [ 131.244883660000028, 1.035345770000049 ], [ 131.244151238000086, 1.029730536000045 ], [ 131.236338738000086, 1.019354559000078 ] ] ], [ [ [ 131.255625847000033, 1.068793036000045 ], [ 131.263519727000016, 1.075913804000038 ], [ 131.27116946700005, 1.072007554000038 ], [ 131.270192905000044, 1.060980536000045 ], [ 131.265391472000033, 1.052720445000091 ], [ 131.254893425000091, 1.044256903000075 ], [ 131.25359134200005, 1.052639065000051 ], [ 131.255625847000033, 1.068793036000045 ] ] ], [ [ [ 133.591807488000086, -2.461521091999941 ], [ 133.605479363000086, -2.46803150799991 ], [ 133.605804884, -2.488946221999925 ], [ 133.58521569100003, -2.512627862999921 ], [ 133.562998894000089, -2.512872002999927 ], [ 133.561696811000047, -2.508721612999921 ], [ 133.557383660000028, -2.504327080999929 ], [ 133.523285352000016, -2.48796965899993 ], [ 133.513519727000016, -2.476006768999923 ], [ 133.50709069100003, -2.46021900799991 ], [ 133.497894727000016, -2.446384372999944 ], [ 133.490000847000033, -2.431247653999947 ], [ 133.505869988000086, -2.424493096999925 ], [ 133.539073113000086, -2.440118096999925 ], [ 133.553884311000047, -2.449883721999925 ], [ 133.55396569100003, -2.442966403999947 ], [ 133.56023196700005, -2.44304778399993 ], [ 133.570811394000089, -2.450941664999959 ], [ 133.583750847000033, -2.45867278399993 ], [ 133.591807488000086, -2.461521091999941 ] ] ], [ [ [ 129.902354363000086, -0.408461195999962 ], [ 129.910004102000016, -0.413506768999923 ], [ 129.916188998000052, -0.42742278399993 ], [ 129.913828972000033, -0.442559502999927 ], [ 129.908539259, -0.449395440999922 ], [ 129.902842644000089, -0.459161065999922 ], [ 129.897146030000044, -0.479180596999925 ], [ 129.888194207000083, -0.494724216999941 ], [ 129.877940300000091, -0.502373955999929 ], [ 129.864431186000047, -0.498630466999941 ], [ 129.851410352000016, -0.481622002999927 ], [ 129.844086134, -0.462334893999923 ], [ 129.844248894000089, -0.444268487999921 ], [ 129.84888756600003, -0.432386976999908 ], [ 129.854502800000091, -0.426527601999908 ], [ 129.859629754000025, -0.422946872999944 ], [ 129.873789910000028, -0.414971612999921 ], [ 129.892344597000033, -0.409356377999927 ], [ 129.902354363000086, -0.408461195999962 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-ST", "NAME_1": "Sulawesi Tengah" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.876719597000033, -2.018487237999921 ], [ 123.878916863000086, -2.032321872999944 ], [ 123.887868686000047, -2.050876559999949 ], [ 123.889659050000091, -2.063246351999908 ], [ 123.886973504000025, -2.07390715899993 ], [ 123.88054446700005, -2.069431247999944 ], [ 123.869313998000052, -2.053317966999941 ], [ 123.864268425000091, -2.055108330999929 ], [ 123.849864129000025, -2.054864190999922 ], [ 123.839366082000083, -2.049086195999962 ], [ 123.84538821700005, -2.035577080999929 ], [ 123.859873894000089, -2.010511976999908 ], [ 123.867442254000025, -2.00554778399993 ], [ 123.876719597000033, -2.018487237999921 ] ] ], [ [ [ 123.656993035000028, -1.909356377999927 ], [ 123.664398634, -1.94890715899993 ], [ 123.663828972000033, -1.963311455999929 ], [ 123.656993035000028, -1.963311455999929 ], [ 123.65162194100003, -1.949395440999922 ], [ 123.649587436000047, -1.934177341999941 ], [ 123.649587436000047, -1.901788018999923 ], [ 123.656993035000028, -1.901788018999923 ], [ 123.656993035000028, -1.909356377999927 ] ] ], [ [ [ 123.738047722000033, -1.90789153399993 ], [ 123.73951256600003, -1.915948174999926 ], [ 123.746348504000025, -1.929131768999923 ], [ 123.74577884200005, -1.935967705999929 ], [ 123.740489129000025, -1.940524997999944 ], [ 123.711680535000028, -1.957126559999949 ], [ 123.705577019000089, -1.933770440999922 ], [ 123.712901238000086, -1.911716403999947 ], [ 123.726084832000083, -1.899997653999947 ], [ 123.738047722000033, -1.90789153399993 ] ] ], [ [ [ 120.649180535000028, 1.072455145000049 ], [ 120.659922722000033, 1.067613023000092 ], [ 120.668711785000028, 1.061021226000094 ], [ 120.683360222000033, 1.044582424000055 ], [ 120.667165561000047, 1.043117580000057 ], [ 120.63209069100003, 1.068508205000057 ], [ 120.607595248000052, 1.072455145000049 ], [ 120.617523634, 1.07680898600006 ], [ 120.628265821000014, 1.07884349200009 ], [ 120.639170769000089, 1.07758209800005 ], [ 120.649180535000028, 1.072455145000049 ] ] ], [ [ [ 120.377614780000044, 1.079901434000078 ], [ 120.392425977000016, 1.086086330000057 ], [ 120.402354363000086, 1.077215887000079 ], [ 120.406504754000025, 1.060980536000045 ], [ 120.40398196700005, 1.044867255000042 ], [ 120.39966881600003, 1.037502346000053 ], [ 120.393728061000047, 1.030747789000088 ], [ 120.386241082000083, 1.025946356000077 ], [ 120.377940300000091, 1.02407461100006 ], [ 120.368662957000083, 1.031724351000094 ], [ 120.367686394000089, 1.049221096000053 ], [ 120.371592644000089, 1.068019924000055 ], [ 120.377614780000044, 1.079901434000078 ] ] ], [ [ [ 121.333319748323873, 0.462276667744003 ], [ 121.330332879000025, 0.461737372000073 ], [ 121.319672071000014, 0.464748440000051 ], [ 121.296397332000083, 0.478583075000074 ], [ 121.285899285000028, 0.482814846000053 ], [ 121.260590040000011, 0.482489325000074 ], [ 121.220469597000033, 0.465969143000052 ], [ 121.200205925000091, 0.461737372000073 ], [ 121.179698113000086, 0.461004950000074 ], [ 121.163828972000033, 0.457464911000045 ], [ 121.149912957000083, 0.449286200000074 ], [ 121.135101759, 0.434393622000073 ], [ 121.125010613000086, 0.417629299000055 ], [ 121.119151238000086, 0.411444403000075 ], [ 121.107920769000089, 0.407131252000056 ], [ 121.099131707000083, 0.407375393000052 ], [ 121.063161655000044, 0.413967190000051 ], [ 121.047373894000089, 0.418931382000039 ], [ 121.019786004000025, 0.44204336100006 ], [ 121.004893425000091, 0.44867584800005 ], [ 120.986989780000044, 0.447007554000038 ], [ 120.955332879000025, 0.431870835000041 ], [ 120.892425977000016, 0.423325914000088 ], [ 120.876475457000083, 0.424505927000041 ], [ 120.860687696000014, 0.434393622000073 ], [ 120.85670006600003, 0.44086334800005 ], [ 120.851817254000025, 0.455755927000041 ], [ 120.847178582000083, 0.461737372000073 ], [ 120.839610222000033, 0.464097398000092 ], [ 120.809336785000028, 0.469183661000045 ], [ 120.805430535000028, 0.472357489000046 ], [ 120.802582227000016, 0.479396877000056 ], [ 120.797862175000091, 0.486476955000057 ], [ 120.788828972000033, 0.489650783000059 ], [ 120.777191602000016, 0.488104559000078 ], [ 120.760020379000025, 0.482611395000049 ], [ 120.750824415000011, 0.482814846000053 ], [ 120.73015384200005, 0.493475653000075 ], [ 120.698578321000014, 0.52415599200009 ], [ 120.679535352000016, 0.530585028000075 ], [ 120.502696160000028, 0.528876044000071 ], [ 120.486094597000033, 0.524237372000073 ], [ 120.408864780000044, 0.485744533000059 ], [ 120.391612175000091, 0.482814846000053 ], [ 120.375254754000025, 0.477687893000052 ], [ 120.361827019000089, 0.465643622000073 ], [ 120.350759311000047, 0.451971747000073 ], [ 120.340098504000025, 0.441880601000094 ], [ 120.314707879000025, 0.423163153000075 ], [ 120.272959832000083, 0.378119208000044 ], [ 120.21452884200005, 0.291937567000048 ], [ 120.158213738000086, 0.227769273000092 ], [ 120.133311394000089, 0.191229559000078 ], [ 120.128428582000083, 0.18109772300005 ], [ 120.121348504000025, 0.14516836100006 ], [ 120.117523634, 0.136786200000074 ], [ 120.103851759, 0.117254950000074 ], [ 120.098480665000011, 0.096991278000075 ], [ 120.094248894000089, 0.05141836100006 ], [ 120.084239129000025, 0.006252346000053 ], [ 120.07545006600003, -0.016412041999956 ], [ 120.062836134, -0.03451913899994 ], [ 120.028493686000047, -0.061822197999959 ], [ 120.022959832000083, -0.070977471999925 ], [ 120.022308790000011, -0.08171965899993 ], [ 120.024750196000014, -0.10678476399994 ], [ 120.018890821000014, -0.152520440999922 ], [ 120.011973504000025, -0.175225518999923 ], [ 120.001475457000083, -0.192152601999908 ], [ 119.995616082000083, -0.209242445999962 ], [ 119.996592644000089, -0.234307549999926 ], [ 120.018565300000091, -0.363457940999922 ], [ 120.024912957000083, -0.38404713299991 ], [ 120.052989129000025, -0.419366143999923 ], [ 120.059418165000011, -0.441989841999941 ], [ 120.057465040000011, -0.45240650799991 ], [ 120.04810631600003, -0.472751559999949 ], [ 120.045746290000011, -0.483005466999941 ], [ 120.047862175000091, -0.493747653999947 ], [ 120.057302280000044, -0.517185153999947 ], [ 120.073090040000011, -0.613946221999925 ], [ 120.089203321000014, -0.657321872999944 ], [ 120.243907097000033, -0.887627862999921 ], [ 120.255625847000033, -0.899346612999921 ], [ 120.302744988000086, -0.932305596999925 ], [ 120.325531446000014, -0.938653252999927 ], [ 120.347911004000025, -0.927504164999959 ], [ 120.368907097000033, -0.911065362999921 ], [ 120.387868686000047, -0.901299737999921 ], [ 120.412445509, -0.904961846999925 ], [ 120.425791863000086, -0.920017184999949 ], [ 120.434906446000014, -0.940362237999921 ], [ 120.446787957000083, -0.960056247999944 ], [ 120.455088738000086, -0.965997002999927 ], [ 120.465179884, -0.969008070999962 ], [ 120.487803582000083, -0.970310153999947 ], [ 120.500336134, -0.975274346999925 ], [ 120.508148634, -0.987074476999908 ], [ 120.518077019000089, -1.011163018999923 ], [ 120.582367384, -1.105238539999959 ], [ 120.586761915000011, -1.116631768999923 ], [ 120.587901238000086, -1.12859465899993 ], [ 120.583750847000033, -1.138116143999923 ], [ 120.576996290000011, -1.146742445999962 ], [ 120.57545006600003, -1.154392184999949 ], [ 120.575368686000047, -1.16334400799991 ], [ 120.57349694100003, -1.176364841999941 ], [ 120.566905144000089, -1.201429945999962 ], [ 120.565440300000091, -1.215508721999925 ], [ 120.572438998000052, -1.227715752999927 ], [ 120.619395379000025, -1.280450127999927 ], [ 120.630869988000086, -1.30046965899993 ], [ 120.639170769000089, -1.341241143999923 ], [ 120.648936394000089, -1.364353122999944 ], [ 120.661875847000033, -1.384860934999949 ], [ 120.675954623000052, -1.394707940999922 ], [ 120.737315300000091, -1.367445570999962 ], [ 120.737315300000091, -1.36060963299991 ], [ 120.803884311000047, -1.342868747999944 ], [ 120.830088738000086, -1.340101820999962 ], [ 120.832774285000028, -1.344821872999944 ], [ 120.826670769000089, -1.377699476999908 ], [ 120.832041863000086, -1.38445403399993 ], [ 120.844411655000044, -1.389580987999921 ], [ 120.867686394000089, -1.394707940999922 ], [ 120.88990319100003, -1.395277601999908 ], [ 120.957774285000028, -1.386895440999922 ], [ 120.976573113000086, -1.38209400799991 ], [ 120.987803582000083, -1.381117445999962 ], [ 120.998301629000025, -1.385918877999927 ], [ 121.022471550000091, -1.408379815999922 ], [ 121.032725457000083, -1.415785414999959 ], [ 121.073252800000091, -1.421319268999923 ], [ 121.105479363000086, -1.405857028999947 ], [ 121.13054446700005, -1.379815362999921 ], [ 121.167002800000091, -1.322930596999925 ], [ 121.174001498000052, -1.305433851999908 ], [ 121.178477410000028, -1.268161716999941 ], [ 121.189707879000025, -1.221368096999925 ], [ 121.197113477000016, -1.202894789999959 ], [ 121.206553582000083, -1.191338799999926 ], [ 121.222829623000052, -1.175388278999947 ], [ 121.240977410000028, -1.161228122999944 ], [ 121.255625847000033, -1.155205987999921 ], [ 121.266774936000047, -1.148614190999922 ], [ 121.276866082000083, -1.132907809999949 ], [ 121.292165561000047, -1.100518487999921 ], [ 121.318369988000086, -1.067152601999908 ], [ 121.374522332000083, -1.020684502999927 ], [ 121.429942254000025, -0.933770440999922 ], [ 121.452484571000014, -0.905694268999923 ], [ 121.500661655000044, -0.859307549999926 ], [ 121.515961134, -0.850274346999925 ], [ 121.536143425000091, -0.846774997999944 ], [ 121.57781009200005, -0.846774997999944 ], [ 121.58521569100003, -0.842705987999921 ], [ 121.585948113000086, -0.832940362999921 ], [ 121.585134311000047, -0.821709893999923 ], [ 121.587657097000033, -0.812595309999949 ], [ 121.594899936000047, -0.80828215899993 ], [ 121.620127800000091, -0.800388278999947 ], [ 121.629161004000025, -0.798923434999949 ], [ 121.640635613000086, -0.800957940999922 ], [ 121.648692254000025, -0.805596612999921 ], [ 121.654795769000089, -0.810316664999959 ], [ 121.659678582000083, -0.812595309999949 ], [ 121.660655144000089, -0.873223565999922 ], [ 121.662852410000028, -0.887627862999921 ], [ 121.690114780000044, -0.908786716999941 ], [ 121.699961785000028, -0.923435153999947 ], [ 121.707204623000052, -0.931735934999949 ], [ 121.714203321000014, -0.935479424999926 ], [ 121.799978061000047, -0.935479424999926 ], [ 121.84538821700005, -0.941013278999947 ], [ 121.886973504000025, -0.951348565999922 ], [ 121.926036004000025, -0.955336195999962 ], [ 121.963715040000011, -0.942966403999947 ], [ 121.999522332000083, -0.922051690999922 ], [ 122.018565300000091, -0.916761976999908 ], [ 122.043223504000025, -0.914971612999921 ], [ 122.066416863000086, -0.919528903999947 ], [ 122.085703972000033, -0.926446221999925 ], [ 122.105316602000016, -0.926202080999929 ], [ 122.128916863000086, -0.908786716999941 ], [ 122.141368035000028, -0.886814059999949 ], [ 122.152842644000089, -0.85320403399993 ], [ 122.15943444100003, -0.82000090899993 ], [ 122.156260613000086, -0.798923434999949 ], [ 122.193614129000025, -0.768975518999923 ], [ 122.207692905000044, -0.764743747999944 ], [ 122.410166863000086, -0.75750090899993 ], [ 122.451019727000016, -0.750583591999941 ], [ 122.487478061000047, -0.74968840899993 ], [ 122.557139519000089, -0.768161716999941 ], [ 122.59498131600003, -0.764743747999944 ], [ 122.600596550000091, -0.76140715899993 ], [ 122.605723504000025, -0.756524346999925 ], [ 122.612478061000047, -0.752211195999962 ], [ 122.62232506600003, -0.750583591999941 ], [ 122.635752800000091, -0.753838799999926 ], [ 122.656423373000052, -0.767754815999922 ], [ 122.683360222000033, -0.775567315999922 ], [ 122.69890384200005, -0.784926039999959 ], [ 122.71648196700005, -0.792413018999923 ], [ 122.739024285000028, -0.791436455999929 ], [ 122.787445509, -0.773695570999962 ], [ 122.912445509, -0.762872002999927 ], [ 122.929047071000014, -0.758884372999944 ], [ 122.944509311000047, -0.750583591999941 ], [ 122.959727410000028, -0.737074476999908 ], [ 122.96021569100003, -0.730564059999949 ], [ 122.897308790000011, -0.716403903999947 ], [ 122.894053582000083, -0.71257903399993 ], [ 122.886241082000083, -0.699395440999922 ], [ 122.882985873000052, -0.695896091999941 ], [ 122.867849155000044, -0.692803643999923 ], [ 122.780121290000011, -0.686618747999944 ], [ 122.766449415000011, -0.683038018999923 ], [ 122.752696160000028, -0.676039320999962 ], [ 122.741709832000083, -0.668064059999949 ], [ 122.733246290000011, -0.657972914999959 ], [ 122.734629754000025, -0.648370049999926 ], [ 122.752696160000028, -0.641289971999925 ], [ 122.765635613000086, -0.649834893999923 ], [ 122.779307488000086, -0.646254164999959 ], [ 122.807383660000028, -0.627618096999925 ], [ 122.812754754000025, -0.622247002999927 ], [ 122.817393425000091, -0.615492445999962 ], [ 122.823008660000028, -0.612237237999921 ], [ 122.838877800000091, -0.620538018999923 ], [ 122.846446160000028, -0.619235934999949 ], [ 122.852549675000091, -0.615329684999949 ], [ 122.854991082000083, -0.610528252999927 ], [ 122.94304446700005, -0.605075778999947 ], [ 122.964366082000083, -0.599704684999949 ], [ 122.976084832000083, -0.607191664999959 ], [ 122.994313998000052, -0.608005466999941 ], [ 123.01295006600003, -0.604424737999921 ], [ 123.026377800000091, -0.599704684999949 ], [ 123.038259311000047, -0.589613539999959 ], [ 123.05005944100003, -0.566989841999941 ], [ 123.060557488000086, -0.558689059999949 ], [ 123.07585696700005, -0.556410414999959 ], [ 123.23951256600003, -0.570489190999922 ], [ 123.273692254000025, -0.58326588299991 ], [ 123.341807488000086, -0.620212497999944 ], [ 123.403493686000047, -0.642673434999949 ], [ 123.417328321000014, -0.654880466999941 ], [ 123.40593509200005, -0.668389580999929 ], [ 123.403819207000083, -0.672539971999925 ], [ 123.40593509200005, -0.677911065999922 ], [ 123.41529381600003, -0.686944268999923 ], [ 123.417328321000014, -0.692803643999923 ], [ 123.419444207000083, -0.702732028999947 ], [ 123.425303582000083, -0.708428643999923 ], [ 123.434092644000089, -0.71062590899993 ], [ 123.444672071000014, -0.709567966999941 ], [ 123.438487175000091, -0.730401299999926 ], [ 123.45435631600003, -0.758233330999929 ], [ 123.440440300000091, -0.792901299999926 ], [ 123.444834832000083, -0.833103122999944 ], [ 123.437836134, -0.853610934999949 ], [ 123.409922722000033, -0.880303643999923 ], [ 123.400157097000033, -0.894789320999962 ], [ 123.389659050000091, -0.98365650799991 ], [ 123.383311394000089, -1.003676039999959 ], [ 123.352386915000011, -1.039727471999925 ], [ 123.311208530000044, -1.051446221999925 ], [ 123.269786004000025, -1.04461028399993 ], [ 123.238780144000089, -1.024834893999923 ], [ 123.210948113000086, -0.983330987999921 ], [ 123.201019727000016, -0.976983330999929 ], [ 123.196299675000091, -0.97039153399993 ], [ 123.149912957000083, -0.935479424999926 ], [ 123.147797071000014, -0.922946872999944 ], [ 123.15552819100003, -0.89812590899993 ], [ 123.156748894000089, -0.887627862999921 ], [ 123.150889519000089, -0.872979424999926 ], [ 123.140879754000025, -0.862237237999921 ], [ 123.118907097000033, -0.842950127999927 ], [ 123.096202019000089, -0.835056247999944 ], [ 123.060801629000025, -0.88054778399993 ], [ 123.040049675000091, -0.880791924999926 ], [ 123.00945071700005, -0.893731377999927 ], [ 122.917002800000091, -0.899590752999927 ], [ 122.876149936000047, -0.908786716999941 ], [ 122.838715040000011, -0.899183851999908 ], [ 122.811696811000047, -0.924086195999962 ], [ 122.769704623000052, -1.019789320999962 ], [ 122.760752800000091, -1.034356377999927 ], [ 122.73560631600003, -1.062676690999922 ], [ 122.730479363000086, -1.07000090899993 ], [ 122.727061394000089, -1.078545830999929 ], [ 122.725271030000044, -1.087660414999959 ], [ 122.724782748000052, -1.097100518999923 ], [ 122.720957879000025, -1.10906340899993 ], [ 122.712087436000047, -1.114353122999944 ], [ 122.700694207000083, -1.11687590899993 ], [ 122.69068444100003, -1.121026299999926 ], [ 122.661631707000083, -1.142836195999962 ], [ 122.648285352000016, -1.15943775799991 ], [ 122.638438347000033, -1.206149997999944 ], [ 122.626475457000083, -1.21843840899993 ], [ 122.588145379000025, -1.237074476999908 ], [ 122.572113477000016, -1.25318775799991 ], [ 122.529551629000025, -1.316013278999947 ], [ 122.511973504000025, -1.326592705999929 ], [ 122.502696160000028, -1.333754164999959 ], [ 122.498789910000028, -1.343194268999923 ], [ 122.496104363000086, -1.352959893999923 ], [ 122.482920769000089, -1.375095309999949 ], [ 122.478282097000033, -1.381117445999962 ], [ 122.406016472000033, -1.446221612999921 ], [ 122.38209069100003, -1.478692315999922 ], [ 122.36882571700005, -1.492771091999941 ], [ 122.30632571700005, -1.524346612999921 ], [ 122.233164910000028, -1.574314059999949 ], [ 122.200531446000014, -1.604180596999925 ], [ 122.183929884, -1.614190362999921 ], [ 122.171885613000086, -1.609795830999929 ], [ 122.15984134200005, -1.600192966999941 ], [ 122.143239780000044, -1.594008070999962 ], [ 122.124034050000091, -1.597588799999926 ], [ 122.083506707000083, -1.616794528999947 ], [ 122.06373131600003, -1.621270440999922 ], [ 122.054047071000014, -1.619805596999925 ], [ 122.036468946000014, -1.613946221999925 ], [ 122.025889519000089, -1.614434502999927 ], [ 122.018565300000091, -1.618096612999921 ], [ 122.013926629000025, -1.623630466999941 ], [ 122.010264519000089, -1.629652601999908 ], [ 122.005381707000083, -1.634942315999922 ], [ 121.973643425000091, -1.655368747999944 ], [ 121.95476321700005, -1.663832289999959 ], [ 121.943207227000016, -1.662286065999922 ], [ 121.919281446000014, -1.673028252999927 ], [ 121.901377800000091, -1.67546965899993 ], [ 121.861338738000086, -1.669691664999959 ], [ 121.856130405000044, -1.688083591999941 ], [ 121.847666863000086, -1.690199476999908 ], [ 121.831228061000047, -1.701918226999908 ], [ 121.820160352000016, -1.707614841999941 ], [ 121.810394727000016, -1.710137627999927 ], [ 121.798594597000033, -1.717950127999927 ], [ 121.790049675000091, -1.736423434999949 ], [ 121.780039910000028, -1.772149346999925 ], [ 121.75513756600003, -1.833754164999959 ], [ 121.739024285000028, -1.861748955999929 ], [ 121.71802819100003, -1.888278903999947 ], [ 121.692149285000028, -1.908135674999926 ], [ 121.661143425000091, -1.920668226999908 ], [ 121.627696160000028, -1.927341403999947 ], [ 121.562510613000086, -1.930596612999921 ], [ 121.552989129000025, -1.929131768999923 ], [ 121.540049675000091, -1.923435153999947 ], [ 121.534515821000014, -1.916599216999941 ], [ 121.53052819100003, -1.908379815999922 ], [ 121.511566602000016, -1.883558851999908 ], [ 121.504730665000011, -1.876722914999959 ], [ 121.495127800000091, -1.873955987999921 ], [ 121.49146569100003, -1.871677341999941 ], [ 121.45671634200005, -1.860935153999947 ], [ 121.445078972000033, -1.841566664999959 ], [ 121.445160352000016, -1.825616143999923 ], [ 121.440928582000083, -1.813571872999944 ], [ 121.416270379000025, -1.805759372999944 ], [ 121.371348504000025, -1.805759372999944 ], [ 121.364593946000014, -1.802341403999947 ], [ 121.354502800000091, -1.785577080999929 ], [ 121.347422722000033, -1.77898528399993 ], [ 121.311859571000014, -1.78289153399993 ], [ 121.296071811000047, -1.816664320999962 ], [ 121.304209832000083, -1.84693775799991 ], [ 121.340586785000028, -1.839776299999926 ], [ 121.345713738000086, -1.855726820999962 ], [ 121.340098504000025, -1.875664971999925 ], [ 121.331390821000014, -1.897556247999944 ], [ 121.326996290000011, -1.919040622999944 ], [ 121.329112175000091, -1.927911065999922 ], [ 121.338389519000089, -1.937595309999949 ], [ 121.340586785000028, -1.94654713299991 ], [ 121.340586785000028, -1.991306247999944 ], [ 121.351328972000033, -1.984144789999959 ], [ 121.360850457000083, -1.97584400799991 ], [ 121.368662957000083, -1.966566664999959 ], [ 121.374766472000033, -1.957126559999949 ], [ 121.379567905000044, -1.942966403999947 ], [ 121.38249759200005, -1.928887627999927 ], [ 121.388438347000033, -1.917168877999927 ], [ 121.40202884200005, -1.909356377999927 ], [ 121.414561394000089, -1.927341403999947 ], [ 121.436289910000028, -1.98015715899993 ], [ 121.466644727000016, -2.000909112999921 ], [ 121.477875196000014, -2.020277601999908 ], [ 121.49146569100003, -2.035332940999922 ], [ 121.511892123000052, -2.032321872999944 ], [ 121.535329623000052, -2.058770440999922 ], [ 121.555023634, -2.133965752999927 ], [ 121.574554884, -2.162530205999929 ], [ 121.617686394000089, -2.177992445999962 ], [ 121.659922722000033, -2.176690362999921 ], [ 121.70085696700005, -2.180352471999925 ], [ 121.739024285000028, -2.211032809999949 ], [ 121.766937696000014, -2.241631768999923 ], [ 121.822927280000044, -2.287286065999922 ], [ 121.847666863000086, -2.320896091999941 ], [ 121.864756707000083, -2.358493747999944 ], [ 121.872080925000091, -2.380303643999923 ], [ 121.875010613000086, -2.398695570999962 ], [ 121.882578972000033, -2.41334400799991 ], [ 121.929698113000086, -2.462985934999949 ], [ 121.965505405000044, -2.518243096999925 ], [ 121.977875196000014, -2.55396900799991 ], [ 122.009287957000083, -2.593519789999959 ], [ 122.019053582000083, -2.615004164999959 ], [ 122.01921634200005, -2.635430596999925 ], [ 122.01335696700005, -2.68092213299991 ], [ 122.015635613000086, -2.693536065999922 ], [ 122.059906446000014, -2.744805596999925 ], [ 122.083832227000016, -2.763929945999962 ], [ 122.098968946000014, -2.770277601999908 ], [ 122.137054884, -2.775485934999949 ], [ 122.14576256600003, -2.778741143999923 ], [ 122.149424675000091, -2.782647393999923 ], [ 122.152679884, -2.794122002999927 ], [ 122.160492384, -2.798760674999926 ], [ 122.169688347000033, -2.801364841999941 ], [ 122.177256707000083, -2.806817315999922 ], [ 122.181651238000086, -2.822930596999925 ], [ 122.185313347000033, -2.845798434999949 ], [ 122.19263756600003, -2.866306247999944 ], [ 122.207692905000044, -2.875176690999922 ], [ 122.24537194100003, -2.875258070999962 ], [ 122.266123894000089, -2.879164320999962 ], [ 122.287119988000086, -2.888767184999949 ], [ 122.312510613000086, -2.926853122999944 ], [ 122.294444207000083, -2.96453215899993 ], [ 122.270843946000014, -3.002129815999922 ], [ 122.279633009, -3.039646091999941 ], [ 122.286875847000033, -3.044691664999959 ], [ 122.31373131600003, -3.060153903999947 ], [ 122.385915561000047, -3.132012627999927 ], [ 122.394379102000016, -3.133477471999925 ], [ 122.406993035000028, -3.127618096999925 ], [ 122.420095248000052, -3.119561455999929 ], [ 122.430430535000028, -3.114678643999923 ], [ 122.433848504000025, -3.12859465899993 ], [ 122.43873131600003, -3.140069268999923 ], [ 122.446136915000011, -3.149346612999921 ], [ 122.457286004000025, -3.156345309999949 ], [ 122.467539910000028, -3.148207289999959 ], [ 122.472911004000025, -3.151136976999908 ], [ 122.472178582000083, -3.16179778399993 ], [ 122.464691602000016, -3.176853122999944 ], [ 122.459157748000052, -3.180108330999929 ], [ 122.44263756600003, -3.18523528399993 ], [ 122.436696811000047, -3.190362237999921 ], [ 122.435394727000016, -3.196384372999944 ], [ 122.43718509200005, -3.211195570999962 ], [ 122.436696811000047, -3.217705987999921 ], [ 122.433604363000086, -3.234551690999922 ], [ 122.432953321000014, -3.243096612999921 ], [ 122.429209832000083, -3.245863539999959 ], [ 122.416270379000025, -3.245700778999947 ], [ 122.418793165000011, -3.243747653999947 ], [ 122.413422071000014, -3.238946221999925 ], [ 122.402598504000025, -3.232028903999947 ], [ 122.395355665000011, -3.230238539999959 ], [ 122.389821811000047, -3.23170338299991 ], [ 122.385752800000091, -3.234958591999941 ], [ 122.382660352000016, -3.238213799999926 ], [ 122.357920769000089, -3.217543226999908 ], [ 122.339366082000083, -3.23756275799991 ], [ 122.339023878948751, -3.237114759838278 ], [ 122.291843295931358, -3.179237155670194 ], [ 122.207197300015309, -3.111489352651517 ], [ 122.187560256001007, -3.100327243507479 ], [ 122.169990268635956, -3.093712659711514 ], [ 122.153557163732103, -3.089940280719361 ], [ 122.135677118004537, -3.088906751945046 ], [ 122.078109572198969, -3.093971042129908 ], [ 122.057955764247026, -3.092627454993078 ], [ 121.816885207086557, -2.995320733165329 ], [ 121.781435174893318, -2.985502211158121 ], [ 121.670175815961102, -2.982711684096955 ], [ 121.598035516325922, -2.972841485246363 ], [ 121.61622562131538, -2.960490817697064 ], [ 121.772495152029592, -2.800913995084841 ], [ 121.784949172366396, -2.776781100767209 ], [ 121.792028843256503, -2.75848764388968 ], [ 121.795491163886027, -2.737455335895049 ], [ 121.796369663928772, -2.717094821468834 ], [ 121.793682488755849, -2.695235691174219 ], [ 121.787377964221605, -2.670120944925657 ], [ 121.776835971802598, -2.646814873807386 ], [ 121.763710157897435, -2.627901300204826 ], [ 121.742006057233652, -2.610072930421438 ], [ 121.638033074766554, -2.557931410006574 ], [ 121.608267450382527, -2.538139337260588 ], [ 121.546359083904576, -2.484189140816227 ], [ 121.489411655723302, -2.418094985095479 ], [ 121.471169874789894, -2.402953789585752 ], [ 121.448897333345258, -2.388484388543702 ], [ 121.398461135273124, -2.363783053445161 ], [ 121.349781936387217, -2.348486830103127 ], [ 120.804182163775749, -2.238571059207004 ], [ 120.763616163655001, -2.21748707346967 ], [ 120.62496829624979, -2.104212334731471 ], [ 120.588329705651404, -2.067470390446147 ], [ 120.553241407764745, -2.025044041049682 ], [ 120.447614780697563, -1.866242363894003 ], [ 120.426530795859549, -1.847122083817112 ], [ 120.40487837113983, -1.83766529701586 ], [ 120.383536004782741, -1.84071420649542 ], [ 120.37299401326311, -1.849344170996687 ], [ 120.366172722992701, -1.86097136813413 ], [ 120.357077671397406, -1.883088880847197 ], [ 120.352323439575002, -1.891822198135969 ], [ 120.344571975116537, -1.89988372185627 ], [ 120.323487990278522, -1.903552748060861 ], [ 120.292378777858289, -1.900193780218785 ], [ 120.156779819932694, -1.860402926453901 ], [ 120.101279331675755, -1.852651461995379 ], [ 120.068619825644419, -1.854511813969054 ], [ 120.048052605643193, -1.861488132071656 ], [ 119.965421991331823, -1.902364189655657 ], [ 119.908836298356391, -1.938330986685685 ], [ 119.873489618051394, -1.955384210113209 ], [ 119.855299513961313, -1.953833916502049 ], [ 119.846617872616662, -1.948717949473803 ], [ 119.835869174622644, -1.938692721891584 ], [ 119.827032505445686, -1.924016615274581 ], [ 119.822123243992451, -1.908151951151638 ], [ 119.821606480054925, -1.886654555163602 ], [ 119.822743360717482, -1.871823418915653 ], [ 119.838246291433165, -1.819216810507385 ], [ 119.846411167041651, -1.791724949246998 ], [ 119.845480991954219, -1.775136813812935 ], [ 119.838969760945702, -1.757153416197184 ], [ 119.822433303254343, -1.729041435513864 ], [ 119.794424677157053, -1.695555108081805 ], [ 119.768379754921739, -1.669406833958249 ], [ 119.724661493433132, -1.612511081721038 ], [ 119.714739617739156, -1.591737156144859 ], [ 119.706781446806303, -1.565433851491036 ], [ 119.692518752238584, -1.461254163448871 ], [ 119.68161502461362, -1.433762302188484 ], [ 119.670607945100528, -1.41655405002939 ], [ 119.656655307996061, -1.402756442555813 ], [ 119.641669143016543, -1.393713066904525 ], [ 119.525397169843473, -1.349064629429108 ], [ 119.507827183377799, -1.340176282509447 ], [ 119.494494663897626, -1.329324232627243 ], [ 119.487363316164078, -1.311237480425405 ], [ 119.486949904114681, -1.288603203774869 ], [ 119.498525425308117, -1.255375257861886 ], [ 119.511547886425774, -1.237081800984356 ], [ 119.526534052304669, -1.223594251873237 ], [ 119.588752476245759, -1.183958428638562 ], [ 119.598674351040472, -1.168662205296528 ], [ 119.601774937363416, -1.150730482725635 ], [ 119.595367059142404, -1.119001152681051 ], [ 119.572112664867518, -1.052028496917615 ], [ 119.568185256244533, -1.027223809031568 ], [ 119.566841669107703, -0.993995863118585 ], [ 119.572526076017539, -0.877930596419901 ], [ 119.566531609845924, -0.836279391580661 ], [ 119.566219897630162, -0.833692149972762 ], [ 119.573578321000014, -0.829522393999923 ], [ 119.58716881600003, -0.819431247999944 ], [ 119.599131707000083, -0.795505466999941 ], [ 119.603282097000033, -0.791436455999929 ], [ 119.63445071700005, -0.778415622999944 ], [ 119.682139519000089, -0.736911716999941 ], [ 119.658213738000086, -0.712090752999927 ], [ 119.654795769000089, -0.706149997999944 ], [ 119.65943444100003, -0.696221612999921 ], [ 119.670176629000025, -0.689222914999959 ], [ 119.69263756600003, -0.678806247999944 ], [ 119.703868035000028, -0.666761976999908 ], [ 119.724619988000086, -0.639255466999941 ], [ 119.73365319100003, -0.633884372999944 ], [ 119.735199415000011, -0.641045830999929 ], [ 119.750498894000089, -0.678806247999944 ], [ 119.755625847000033, -0.703789971999925 ], [ 119.792002800000091, -0.778415622999944 ], [ 119.80982506600003, -0.833916924999926 ], [ 119.824880405000044, -0.85865650799991 ], [ 119.846527540000011, -0.874607028999947 ], [ 119.862315300000091, -0.834161065999922 ], [ 119.865896030000044, -0.813571872999944 ], [ 119.867198113000086, -0.78834400799991 ], [ 119.865000847000033, -0.78289153399993 ], [ 119.856130405000044, -0.769138278999947 ], [ 119.854014519000089, -0.76100025799991 ], [ 119.855235222000033, -0.727146091999941 ], [ 119.854014519000089, -0.716403903999947 ], [ 119.84693444100003, -0.701267184999949 ], [ 119.824066602000016, -0.67506275799991 ], [ 119.819346550000091, -0.665459893999923 ], [ 119.815765821000014, -0.653415622999944 ], [ 119.792002800000091, -0.60711028399993 ], [ 119.78248131600003, -0.569105726999908 ], [ 119.778330925000091, -0.535088799999926 ], [ 119.775401238000086, -0.522637627999927 ], [ 119.761566602000016, -0.490655205999929 ], [ 119.757823113000086, -0.469903252999927 ], [ 119.781097852000016, -0.239353122999944 ], [ 119.790537957000083, -0.208754164999959 ], [ 119.802256707000083, -0.195570570999962 ], [ 119.808360222000033, -0.182793877999927 ], [ 119.806407097000033, -0.15398528399993 ], [ 119.799978061000047, -0.123793226999908 ], [ 119.792002800000091, -0.10678476399994 ], [ 119.762543165000011, -0.119480075999945 ], [ 119.730479363000086, -0.121351820999962 ], [ 119.699961785000028, -0.114108981999948 ], [ 119.675303582000083, -0.099379164999959 ], [ 119.657562696000014, -0.080132744999958 ], [ 119.638682488000086, -0.050876559999949 ], [ 119.627696160000028, -0.018365166999956 ], [ 119.63445071700005, 0.01048411700009 ], [ 119.650645379000025, 0.001613674000055 ], [ 119.65943444100003, -0.001519463999955 ], [ 119.668467644000089, -0.003838799999926 ], [ 119.667979363000086, 0.007025458000044 ], [ 119.668955925000091, 0.01626211100006 ], [ 119.671397332000083, 0.023993231000077 ], [ 119.675303582000083, 0.030340887000079 ], [ 119.698090040000011, 0.016913153000075 ], [ 119.715830925000091, 0.001532294000071 ], [ 119.744151238000086, -0.031101169999943 ], [ 119.765879754000025, -0.063246351999908 ], [ 119.778330925000091, -0.076348565999922 ], [ 119.798838738000086, -0.085707289999959 ], [ 119.816416863000086, -0.090020440999922 ], [ 119.825938347000033, -0.089939059999949 ], [ 119.832692905000044, -0.084405205999929 ], [ 119.847178582000083, -0.061578057999952 ], [ 119.856781446000014, -0.041029554999909 ], [ 119.877940300000091, 0.045477606000077 ], [ 119.888194207000083, 0.071275132000039 ], [ 119.869802280000044, 0.105658270000049 ], [ 119.793955925000091, 0.196600653000075 ], [ 119.787852410000028, 0.208400783000059 ], [ 119.785655144000089, 0.221096096000053 ], [ 119.785166863000086, 0.239488023000092 ], [ 119.794444207000083, 0.250189520000049 ], [ 119.854014519000089, 0.269924221000053 ], [ 119.869476759, 0.287176825000074 ], [ 119.867686394000089, 0.302069403000075 ], [ 119.859141472000033, 0.318915106000077 ], [ 119.854014519000089, 0.342230536000045 ], [ 119.858734571000014, 0.364243882000039 ], [ 119.883555535000028, 0.400051174000055 ], [ 119.895030144000089, 0.420721747000073 ], [ 119.897308790000011, 0.431138414000088 ], [ 119.898448113000086, 0.451605536000045 ], [ 119.901866082000083, 0.461737372000073 ], [ 119.91179446700005, 0.473700262000079 ], [ 119.923838738000086, 0.480861721000053 ], [ 119.936208530000044, 0.486395575000074 ], [ 119.94654381600003, 0.493353583000044 ], [ 119.964610222000033, 0.501125393000052 ], [ 120.012461785000028, 0.504787502000056 ], [ 120.032237175000091, 0.516302802000041 ], [ 120.045176629000025, 0.549994208000044 ], [ 120.040375196000014, 0.588120835000041 ], [ 120.029633009, 0.628119208000044 ], [ 120.024750196000014, 0.667181708000044 ], [ 120.027517123000052, 0.68891022300005 ], [ 120.034190300000091, 0.713812567000048 ], [ 120.045746290000011, 0.734361070000091 ], [ 120.062836134, 0.742865302000041 ], [ 120.072276238000086, 0.744045315000051 ], [ 120.097422722000033, 0.75031159100007 ], [ 120.110524936000047, 0.75141022300005 ], [ 120.120860222000033, 0.754339911000045 ], [ 120.186534050000091, 0.784002997000073 ], [ 120.207286004000025, 0.79759349200009 ], [ 120.227061394000089, 0.814886786000045 ], [ 120.235524936000047, 0.831529039000088 ], [ 120.247080925000091, 0.933294989000046 ], [ 120.256521030000044, 0.968898830000057 ], [ 120.278493686000047, 0.994208075000074 ], [ 120.31959069100003, 0.996079820000091 ], [ 120.341644727000016, 0.982855536000045 ], [ 120.346690300000091, 0.963080145000049 ], [ 120.340098504000025, 0.917914130000042 ], [ 120.340342644000089, 0.872381903000075 ], [ 120.346446160000028, 0.855617580000057 ], [ 120.361827019000089, 0.866400458000044 ], [ 120.367360873000052, 0.866400458000044 ], [ 120.375254754000025, 0.848700262000079 ], [ 120.387054884, 0.833929755000042 ], [ 120.402842644000089, 0.82172272300005 ], [ 120.422048373000052, 0.811753648000092 ], [ 120.453379754000025, 0.805080471000053 ], [ 120.469574415000011, 0.796820380000042 ], [ 120.476817254000025, 0.800970770000049 ], [ 120.482676629000025, 0.80805084800005 ], [ 120.487803582000083, 0.811753648000092 ], [ 120.511485222000033, 0.810614325000074 ], [ 120.527598504000025, 0.806057033000059 ], [ 120.541026238000086, 0.796576239000046 ], [ 120.556407097000033, 0.780747789000088 ], [ 120.568125847000033, 0.782131252000056 ], [ 120.584727410000028, 0.797552802000041 ], [ 120.614431186000047, 0.832220770000049 ], [ 120.602224155000044, 0.855698960000041 ], [ 120.617849155000044, 0.898586330000057 ], [ 120.662282748000052, 0.968817450000074 ], [ 120.683360222000033, 0.991929429000038 ], [ 120.690196160000028, 0.996079820000091 ], [ 120.699554884, 0.992377020000049 ], [ 120.710948113000086, 0.983465887000079 ], [ 120.722666863000086, 0.976752020000049 ], [ 120.733897332000083, 0.979681708000044 ], [ 120.740000847000033, 0.989162502000056 ], [ 120.747569207000083, 1.010565497000073 ], [ 120.754242384, 1.020656643000052 ], [ 120.763031446000014, 1.02602773600006 ], [ 120.783702019000089, 1.03196849200009 ], [ 120.792491082000083, 1.03774648600006 ], [ 120.801768425000091, 1.052639065000051 ], [ 120.803233269000089, 1.068426825000074 ], [ 120.798675977000016, 1.130845445000091 ], [ 120.799489780000044, 1.142075914000088 ], [ 120.802500847000033, 1.146958726000094 ], [ 120.802500847000033, 1.152044989000046 ], [ 120.809092644000089, 1.162787177000041 ], [ 120.816905144000089, 1.172674872000073 ], [ 120.819834832000083, 1.174872137000079 ], [ 120.825938347000033, 1.196682033000059 ], [ 120.827647332000083, 1.214016018000052 ], [ 120.826670769000089, 1.253729559000078 ], [ 120.819672071000014, 1.290920315000051 ], [ 120.820811394000089, 1.31000397300005 ], [ 120.833506707000083, 1.325669664000088 ], [ 120.84302819100003, 1.328314520000049 ], [ 120.864593946000014, 1.325140692000048 ], [ 120.874522332000083, 1.325669664000088 ], [ 120.88445071700005, 1.330633856000077 ], [ 120.909190300000091, 1.353664455000057 ], [ 120.906097852000016, 1.324286200000074 ], [ 120.908539259, 1.311428127000056 ], [ 120.91920006600003, 1.31517161700009 ], [ 120.938487175000091, 1.337225653000075 ], [ 120.949473504000025, 1.343817450000074 ], [ 120.967295769000089, 1.346177476000094 ], [ 121.061208530000044, 1.327093817000048 ], [ 121.080414259, 1.331935940000051 ], [ 121.133799675000091, 1.314601955000057 ], [ 121.158702019000089, 1.302801825000074 ], [ 121.182790561000047, 1.271429755000042 ], [ 121.26490319100003, 1.229559637000079 ], [ 121.31763756600003, 1.253851630000042 ], [ 121.33716881600003, 1.256822007000039 ], [ 121.381683790000011, 1.256659247000073 ], [ 121.399099155000044, 1.262396552000041 ], [ 121.422536655000044, 1.277289130000042 ], [ 121.441661004000025, 1.294582424000055 ], [ 121.451426629000025, 1.297552802000041 ], [ 121.46412194100003, 1.291571356000077 ], [ 121.469493035000028, 1.282863674000055 ], [ 121.472015821000014, 1.269924221000053 ], [ 121.471527540000011, 1.25657786700009 ], [ 121.467539910000028, 1.246893622000073 ], [ 121.459483269000089, 1.242661851000094 ], [ 121.435069207000083, 1.235296942000048 ], [ 121.430023634, 1.232977606000077 ], [ 121.431407097000033, 1.22601959800005 ], [ 121.439626498000052, 1.212103583000044 ], [ 121.443614129000025, 1.202215887000079 ], [ 121.445078972000033, 1.193345445000091 ], [ 121.44459069100003, 1.186835028000075 ], [ 121.445567254000025, 1.179185289000088 ], [ 121.45045006600003, 1.16742584800005 ], [ 121.46843509200005, 1.146307684000078 ], [ 121.470957879000025, 1.13703034100007 ], [ 121.480723504000025, 1.120917059000078 ], [ 121.52857506600003, 1.083238023000092 ], [ 121.546722852000016, 1.072455145000049 ], [ 121.586761915000011, 1.061753648000092 ], [ 121.630869988000086, 1.06195709800005 ], [ 121.926117384, 1.098700262000079 ], [ 121.943207227000016, 1.091131903000075 ], [ 121.955821160000028, 1.04555898600006 ], [ 121.970225457000083, 1.029486395000049 ], [ 121.990244988000086, 1.021918036000045 ], [ 122.012217644000089, 1.02407461100006 ], [ 122.027191602000016, 1.034002997000073 ], [ 122.048838738000086, 1.059759833000044 ], [ 122.06373131600003, 1.065008856000077 ], [ 122.087738477000016, 1.061590887000079 ], [ 122.149424675000091, 1.03774648600006 ], [ 122.177907748000052, 1.035630601000094 ], [ 122.190928582000083, 1.031480210000041 ], [ 122.197341582048352, 1.027664880829604 ], [ 122.194071487009523, 1.023452053469498 ], [ 122.140844760976847, 0.987071845289393 ], [ 122.045656772641905, 0.943766994950863 ], [ 121.993101841077078, 0.935292060080485 ], [ 121.8898006530776, 0.971155504323065 ], [ 121.875331252035608, 0.974204412903305 ], [ 121.865202670766621, 0.97508291294605 ], [ 121.855900913596201, 0.97508291294605 ], [ 121.840397983779894, 0.970432033911209 ], [ 121.720508661245617, 0.918962307064817 ], [ 121.657463414105223, 0.898860175056996 ], [ 121.629919875102132, 0.885062568482738 ], [ 121.611884799743621, 0.877982895793991 ], [ 121.552146845400557, 0.862841702082846 ], [ 121.507963495019226, 0.846925361116519 ], [ 121.494062534758086, 0.844393215574428 ], [ 121.484140659963487, 0.845065009142843 ], [ 121.475252313043711, 0.847235419479034 ], [ 121.465330438249111, 0.850904446582945 ], [ 121.42326582225985, 0.859844469446671 ], [ 121.394947137800159, 0.861911526096037 ], [ 121.378462356052864, 0.860981350109228 ], [ 121.357636752733924, 0.855813707136861 ], [ 121.34306399980369, 0.8496642113343 ], [ 121.303169794150676, 0.826099757797579 ], [ 121.290974156232323, 0.815919501483791 ], [ 121.278675164627089, 0.803207098728592 ], [ 121.260795118899523, 0.779125881254402 ], [ 121.252733596078542, 0.763416245863027 ], [ 121.241261427672725, 0.734529119723106 ], [ 121.235370315187879, 0.724607244928393 ], [ 121.223588088419547, 0.714685370133736 ], [ 121.215113152649792, 0.709000963223843 ], [ 121.160439487592271, 0.686056627311473 ], [ 121.2157332702742, 0.627507229574974 ], [ 121.228393996185901, 0.608541978229709 ], [ 121.244672072358185, 0.593607489194255 ], [ 121.256712680645592, 0.586682847035775 ], [ 121.279915398976414, 0.582393704106153 ], [ 121.295728388054613, 0.576192532359471 ], [ 121.303324822882246, 0.5747972683792 ], [ 121.309060906635523, 0.5747972683792 ], [ 121.315468784856535, 0.575934149941077 ], [ 121.320119663891319, 0.577484443552237 ], [ 121.324460483664325, 0.578052883433827 ], [ 121.328801304336707, 0.577587795440422 ], [ 121.333762241734007, 0.575624091578561 ], [ 121.337793003144498, 0.567149155808863 ], [ 121.340893588568179, 0.553506577966175 ], [ 121.344304234153014, 0.497437648928326 ], [ 121.342650587754406, 0.485707099003378 ], [ 121.333348829684724, 0.462349351041723 ], [ 121.333319748323873, 0.462276667744003 ] ] ], [ [ [ 123.857432488000086, -1.950372002999927 ], [ 123.864431186000047, -1.989434502999927 ], [ 123.869313998000052, -1.998142184999949 ], [ 123.856211785000028, -1.992445570999962 ], [ 123.847829623000052, -1.995538018999923 ], [ 123.840586785000028, -2.00164153399993 ], [ 123.831797722000033, -2.004978122999944 ], [ 123.809092644000089, -1.99968840899993 ], [ 123.79420006600003, -1.992120049999926 ], [ 123.787364129000025, -1.980645440999922 ], [ 123.773285352000016, -1.922621351999908 ], [ 123.771739129000025, -1.895603122999944 ], [ 123.787364129000025, -1.873955987999921 ], [ 123.844737175000091, -1.928643487999921 ], [ 123.852386915000011, -1.93873463299991 ], [ 123.857432488000086, -1.950372002999927 ] ] ], [ [ [ 123.132823113000086, -1.76531340899993 ], [ 123.143239780000044, -1.775485934999949 ], [ 123.151540561000047, -1.798760674999926 ], [ 123.152842644000089, -1.823825778999947 ], [ 123.142425977000016, -1.839776299999926 ], [ 123.13013756600003, -1.846774997999944 ], [ 123.117035352000016, -1.857842705999929 ], [ 123.106455925000091, -1.871189059999949 ], [ 123.102061394000089, -1.884860934999949 ], [ 123.096690300000091, -1.895277601999908 ], [ 123.084727410000028, -1.901788018999923 ], [ 123.072764519000089, -1.90162525799991 ], [ 123.067393425000091, -1.891696872999944 ], [ 123.070078972000033, -1.840752862999921 ], [ 123.074473504000025, -1.818942966999941 ], [ 123.090179884, -1.779961846999925 ], [ 123.09343509200005, -1.768243096999925 ], [ 123.094574415000011, -1.755059502999927 ], [ 123.102061394000089, -1.748467705999929 ], [ 123.117442254000025, -1.752862237999921 ], [ 123.131032748000052, -1.760918877999927 ], [ 123.132823113000086, -1.76531340899993 ] ] ], [ [ [ 123.503103061000047, -1.264418226999908 ], [ 123.521739129000025, -1.266289971999925 ], [ 123.539073113000086, -1.27271900799991 ], [ 123.550954623000052, -1.284763278999947 ], [ 123.553721550000091, -1.303399346999925 ], [ 123.551768425000091, -1.324314059999949 ], [ 123.538422071000014, -1.36060963299991 ], [ 123.533457879000025, -1.381117445999962 ], [ 123.53484134200005, -1.412286065999922 ], [ 123.533457879000025, -1.422051690999922 ], [ 123.52857506600003, -1.433038018999923 ], [ 123.503103061000047, -1.460056247999944 ], [ 123.46216881600003, -1.494317315999922 ], [ 123.453868035000028, -1.498793226999908 ], [ 123.435720248000052, -1.503106377999927 ], [ 123.427582227000016, -1.507989190999922 ], [ 123.408376498000052, -1.516534112999921 ], [ 123.381195509, -1.498304945999962 ], [ 123.362152540000011, -1.51140715899993 ], [ 123.357188347000033, -1.472914320999962 ], [ 123.350108269000089, -1.45671965899993 ], [ 123.331797722000033, -1.449965101999908 ], [ 123.327647332000083, -1.44459400799991 ], [ 123.328135613000086, -1.43287525799991 ], [ 123.326833530000044, -1.42115650799991 ], [ 123.317718946000014, -1.415785414999959 ], [ 123.305511915000011, -1.416110934999949 ], [ 123.296397332000083, -1.41765715899993 ], [ 123.288584832000083, -1.42156340899993 ], [ 123.280284050000091, -1.428887627999927 ], [ 123.258799675000091, -1.465997002999927 ], [ 123.249847852000016, -1.510674737999921 ], [ 123.252289259, -1.60084400799991 ], [ 123.250498894000089, -1.62273528399993 ], [ 123.243337436000047, -1.632419528999947 ], [ 123.235524936000047, -1.627048434999949 ], [ 123.231944207000083, -1.604180596999925 ], [ 123.226817254000025, -1.593357028999947 ], [ 123.215179884, -1.595472914999959 ], [ 123.178396030000044, -1.622491143999923 ], [ 123.169932488000086, -1.619398695999962 ], [ 123.164398634, -1.609633070999962 ], [ 123.156748894000089, -1.60084400799991 ], [ 123.123871290000011, -1.59148528399993 ], [ 123.115896030000044, -1.586602471999925 ], [ 123.110687696000014, -1.576918226999908 ], [ 123.109141472000033, -1.56568775799991 ], [ 123.111827019000089, -1.55632903399993 ], [ 123.118907097000033, -1.55242278399993 ], [ 123.130869988000086, -1.547621351999908 ], [ 123.177256707000083, -1.518243096999925 ], [ 123.18482506600003, -1.48560963299991 ], [ 123.163584832000083, -1.353773695999962 ], [ 123.164886915000011, -1.322035414999959 ], [ 123.163584832000083, -1.31218840899993 ], [ 123.15943444100003, -1.306247653999947 ], [ 123.152354363000086, -1.300551039999959 ], [ 123.145518425000091, -1.299981377999927 ], [ 123.136973504000025, -1.324476820999962 ], [ 123.123545769000089, -1.332777601999908 ], [ 123.107920769000089, -1.338555596999925 ], [ 123.094574415000011, -1.346368096999925 ], [ 123.07195071700005, -1.393975518999923 ], [ 123.063975457000083, -1.40162525799991 ], [ 123.053396030000044, -1.408461195999962 ], [ 123.045176629000025, -1.424493096999925 ], [ 123.033213738000086, -1.456231377999927 ], [ 123.013926629000025, -1.48560963299991 ], [ 122.993174675000091, -1.509209893999923 ], [ 122.919932488000086, -1.574476820999962 ], [ 122.895843946000014, -1.58953215899993 ], [ 122.874034050000091, -1.584567966999941 ], [ 122.812022332000083, -1.443617445999962 ], [ 122.807383660000028, -1.40162525799991 ], [ 122.810883009, -1.358086846999925 ], [ 122.820811394000089, -1.31373463299991 ], [ 122.836110873000052, -1.274021091999941 ], [ 122.898692254000025, -1.184340101999908 ], [ 122.913828972000033, -1.176364841999941 ], [ 122.935801629000025, -1.179864190999922 ], [ 122.971527540000011, -1.194431247999944 ], [ 122.985362175000091, -1.196058851999908 ], [ 122.99732506600003, -1.190362237999921 ], [ 123.017100457000083, -1.172621351999908 ], [ 123.029795769000089, -1.168877862999921 ], [ 123.074229363000086, -1.162692966999941 ], [ 123.112071160000028, -1.162692966999941 ], [ 123.118337436000047, -1.165785414999959 ], [ 123.125173373000052, -1.172784112999921 ], [ 123.133799675000091, -1.179864190999922 ], [ 123.146250847000033, -1.183200778999947 ], [ 123.159353061000047, -1.179294528999947 ], [ 123.163096550000091, -1.169854424999926 ], [ 123.164317254000025, -1.158379815999922 ], [ 123.170420769000089, -1.148370049999926 ], [ 123.18287194100003, -1.14226653399993 ], [ 123.189463738000086, -1.145277601999908 ], [ 123.194183790000011, -1.15162525799991 ], [ 123.201019727000016, -1.155205987999921 ], [ 123.246104363000086, -1.223402601999908 ], [ 123.237071160000028, -1.232679945999962 ], [ 123.230479363000086, -1.241794528999947 ], [ 123.222178582000083, -1.248711846999925 ], [ 123.207855665000011, -1.251397393999923 ], [ 123.201833530000044, -1.256524346999925 ], [ 123.198741082000083, -1.268731377999927 ], [ 123.197601759, -1.295505466999941 ], [ 123.201670769000089, -1.307305596999925 ], [ 123.210459832000083, -1.316827080999929 ], [ 123.21998131600003, -1.324965101999908 ], [ 123.225759311000047, -1.332696221999925 ], [ 123.228037957000083, -1.348402601999908 ], [ 123.22779381600003, -1.379652601999908 ], [ 123.231944207000083, -1.394707940999922 ], [ 123.255381707000083, -1.377129815999922 ], [ 123.272146030000044, -1.35475025799991 ], [ 123.300791863000086, -1.30592213299991 ], [ 123.304698113000086, -1.302829684999949 ], [ 123.316579623000052, -1.296482028999947 ], [ 123.321136915000011, -1.292413018999923 ], [ 123.335459832000083, -1.271905205999929 ], [ 123.344411655000044, -1.242608330999929 ], [ 123.352224155000044, -1.229180596999925 ], [ 123.365977410000028, -1.223402601999908 ], [ 123.383636915000011, -1.22429778399993 ], [ 123.392832879000025, -1.223565362999921 ], [ 123.40007571700005, -1.22039153399993 ], [ 123.406911655000044, -1.219496351999908 ], [ 123.409922722000033, -1.22820403399993 ], [ 123.41179446700005, -1.239841403999947 ], [ 123.414073113000086, -1.24773528399993 ], [ 123.428477410000028, -1.257745049999926 ], [ 123.43523196700005, -1.250664971999925 ], [ 123.441661004000025, -1.237725518999923 ], [ 123.455088738000086, -1.230889580999929 ], [ 123.465017123000052, -1.236260674999926 ], [ 123.486827019000089, -1.259209893999923 ], [ 123.503103061000047, -1.264418226999908 ] ] ], [ [ [ 121.853851759, -0.401055596999925 ], [ 121.895518425000091, -0.428399346999925 ], [ 121.901703321000014, -0.43718840899993 ], [ 121.910655144000089, -0.460381768999923 ], [ 121.916026238000086, -0.469903252999927 ], [ 121.913584832000083, -0.486423434999949 ], [ 121.906423373000052, -0.49928150799991 ], [ 121.894786004000025, -0.507907809999949 ], [ 121.878428582000083, -0.510918877999927 ], [ 121.874522332000083, -0.505954684999949 ], [ 121.847911004000025, -0.483330987999921 ], [ 121.834727410000028, -0.476739190999922 ], [ 121.846446160000028, -0.500258070999962 ], [ 121.844737175000091, -0.507989190999922 ], [ 121.830902540000011, -0.510918877999927 ], [ 121.816579623000052, -0.507745049999926 ], [ 121.801280144000089, -0.493584893999923 ], [ 121.790049675000091, -0.490411065999922 ], [ 121.746348504000025, -0.48365650799991 ], [ 121.735362175000091, -0.479913018999923 ], [ 121.725596550000091, -0.483086846999925 ], [ 121.700938347000033, -0.535088799999926 ], [ 121.688975457000083, -0.543145440999922 ], [ 121.671722852000016, -0.550388278999947 ], [ 121.654551629000025, -0.55242278399993 ], [ 121.64226321700005, -0.545586846999925 ], [ 121.641774936000047, -0.531019789999959 ], [ 121.650157097000033, -0.512627862999921 ], [ 121.679860873000052, -0.468926690999922 ], [ 121.689707879000025, -0.458184502999927 ], [ 121.701914910000028, -0.449639580999929 ], [ 121.734222852000016, -0.434991143999923 ], [ 121.740896030000044, -0.429131768999923 ], [ 121.752126498000052, -0.401055596999925 ], [ 121.77857506600003, -0.424574476999908 ], [ 121.799489780000044, -0.420505466999941 ], [ 121.822113477000016, -0.406670830999929 ], [ 121.853851759, -0.401055596999925 ] ] ], [ [ [ 122.029551629000025, -0.332126559999949 ], [ 122.043711785000028, -0.334649346999925 ], [ 122.051442905000044, -0.342054945999962 ], [ 122.054047071000014, -0.35515715899993 ], [ 122.053070509, -0.373711846999925 ], [ 122.042735222000033, -0.393487237999921 ], [ 122.02662194100003, -0.406914971999925 ], [ 122.006602410000028, -0.410739841999941 ], [ 121.984873894000089, -0.401055596999925 ], [ 121.96412194100003, -0.41334400799991 ], [ 121.931813998000052, -0.414646091999941 ], [ 121.898692254000025, -0.40748463299991 ], [ 121.875010613000086, -0.394789320999962 ], [ 121.860850457000083, -0.377862237999921 ], [ 121.860118035000028, -0.367445570999962 ], [ 121.865000847000033, -0.357842705999929 ], [ 121.868174675000091, -0.34303150799991 ], [ 121.87232506600003, -0.332614841999941 ], [ 121.882334832000083, -0.330010674999926 ], [ 121.902354363000086, -0.332126559999949 ], [ 121.903330925000091, -0.333916924999926 ], [ 121.908376498000052, -0.337334893999923 ], [ 121.915537957000083, -0.340020440999922 ], [ 121.92351321700005, -0.339613539999959 ], [ 121.924815300000091, -0.334567966999941 ], [ 121.922699415000011, -0.316338799999926 ], [ 121.926524285000028, -0.312269789999959 ], [ 121.966563347000033, -0.314711195999962 ], [ 121.978037957000083, -0.318536065999922 ], [ 122.004405144000089, -0.330254815999922 ], [ 122.013519727000016, -0.331963799999926 ], [ 122.029551629000025, -0.332126559999949 ] ] ], [ [ [ 122.217621290000011, -0.247165622999944 ], [ 122.220957879000025, -0.250176690999922 ], [ 122.235199415000011, -0.258233330999929 ], [ 122.238780144000089, -0.263848565999922 ], [ 122.236501498000052, -0.273370049999926 ], [ 122.23015384200005, -0.274346612999921 ], [ 122.222911004000025, -0.270196221999925 ], [ 122.217621290000011, -0.263848565999922 ], [ 122.211436394000089, -0.263848565999922 ], [ 122.199961785000028, -0.267754815999922 ], [ 122.164398634, -0.249444268999923 ], [ 122.146250847000033, -0.244073174999926 ], [ 122.144379102000016, -0.233005466999941 ], [ 122.158376498000052, -0.211358330999929 ], [ 122.177093946000014, -0.196384372999944 ], [ 122.189707879000025, -0.205254815999922 ], [ 122.177256707000083, -0.230401299999926 ], [ 122.189626498000052, -0.23015715899993 ], [ 122.202647332000083, -0.232191664999959 ], [ 122.213226759, -0.23756275799991 ], [ 122.217621290000011, -0.247165622999944 ] ] ], [ [ [ 122.369151238000086, -0.263848565999922 ], [ 122.36491946700005, -0.282159112999921 ], [ 122.367930535000028, -0.304457289999959 ], [ 122.375173373000052, -0.325616143999923 ], [ 122.382660352000016, -0.339613539999959 ], [ 122.375987175000091, -0.346449476999908 ], [ 122.354258660000028, -0.321709893999923 ], [ 122.32154381600003, -0.257907809999949 ], [ 122.293304884, -0.237237237999921 ], [ 122.288584832000083, -0.23796965899993 ], [ 122.273285352000016, -0.243747653999947 ], [ 122.266123894000089, -0.244073174999926 ], [ 122.260508660000028, -0.240980726999908 ], [ 122.245616082000083, -0.223402601999908 ], [ 122.228851759, -0.207940362999921 ], [ 122.22584069100003, -0.199395440999922 ], [ 122.231944207000083, -0.18873463299991 ], [ 122.240733269000089, -0.195407809999949 ], [ 122.267344597000033, -0.205010674999926 ], [ 122.272797071000014, -0.206149997999944 ], [ 122.277110222000033, -0.213962497999944 ], [ 122.287282748000052, -0.218845309999949 ], [ 122.32781009200005, -0.230564059999949 ], [ 122.34538821700005, -0.238702080999929 ], [ 122.359385613000086, -0.24928150799991 ], [ 122.369151238000086, -0.263848565999922 ] ] ], [ [ [ 121.574554884, -0.182549737999921 ], [ 121.569102410000028, -0.144789320999962 ], [ 121.597422722000033, -0.12468840899993 ], [ 121.633148634, -0.12468840899993 ], [ 121.64966881600003, -0.147393487999921 ], [ 121.642588738000086, -0.176853122999944 ], [ 121.624522332000083, -0.198418877999927 ], [ 121.600271030000044, -0.203220309999949 ], [ 121.574554884, -0.182549737999921 ] ] ], [ [ [ 123.365733269000089, -1.67310963299991 ], [ 123.376149936000047, -1.678806247999944 ], [ 123.382009311000047, -1.689629815999922 ], [ 123.382823113000086, -1.702243747999944 ], [ 123.37818444100003, -1.712823174999926 ], [ 123.369802280000044, -1.719903252999927 ], [ 123.350271030000044, -1.730889580999929 ], [ 123.341807488000086, -1.73796965899993 ], [ 123.317718946000014, -1.774509372999944 ], [ 123.301280144000089, -1.78834400799991 ], [ 123.280284050000091, -1.785821221999925 ], [ 123.271006707000083, -1.769301039999959 ], [ 123.279795769000089, -1.748223565999922 ], [ 123.330251498000052, -1.694919528999947 ], [ 123.356130405000044, -1.675876559999949 ], [ 123.361094597000033, -1.673760674999926 ], [ 123.365733269000089, -1.67310963299991 ] ] ], [ [ [ 122.139414910000028, -0.384209893999923 ], [ 122.123871290000011, -0.392673434999949 ], [ 122.115000847000033, -0.388929945999962 ], [ 122.107188347000033, -0.382256768999923 ], [ 122.094737175000091, -0.381117445999962 ], [ 122.089854363000086, -0.389255466999941 ], [ 122.088877800000091, -0.401543877999927 ], [ 122.084646030000044, -0.407810153999947 ], [ 122.070567254000025, -0.398044528999947 ], [ 122.059906446000014, -0.353936455999929 ], [ 122.060313347000033, -0.329278252999927 ], [ 122.065603061000047, -0.296075127999927 ], [ 122.076670769000089, -0.269138278999947 ], [ 122.094737175000091, -0.263848565999922 ], [ 122.101573113000086, -0.315362237999921 ], [ 122.105804884, -0.321384372999944 ], [ 122.131683790000011, -0.337985934999949 ], [ 122.13795006600003, -0.347263278999947 ], [ 122.143239780000044, -0.360446872999944 ], [ 122.144541863000086, -0.373955987999921 ], [ 122.139414910000028, -0.384209893999923 ] ] ], [ [ [ 123.600596550000091, -1.603285414999959 ], [ 123.610362175000091, -1.611586195999962 ], [ 123.61646569100003, -1.624607028999947 ], [ 123.615977410000028, -1.64031340899993 ], [ 123.614105665000011, -1.652439059999949 ], [ 123.608734571000014, -1.674248955999929 ], [ 123.60865319100003, -1.68873463299991 ], [ 123.601328972000033, -1.70281340899993 ], [ 123.586436394000089, -1.712985934999949 ], [ 123.579274936000047, -1.71607838299991 ], [ 123.574880405000044, -1.71998463299991 ], [ 123.564219597000033, -1.72193775799991 ], [ 123.55396569100003, -1.720635674999926 ], [ 123.545420769000089, -1.721856377999927 ], [ 123.534353061000047, -1.716566664999959 ], [ 123.522146030000044, -1.705824476999908 ], [ 123.515147332000083, -1.703383070999962 ], [ 123.511729363000086, -1.709405205999929 ], [ 123.503672722000033, -1.712823174999926 ], [ 123.493500196000014, -1.709649346999925 ], [ 123.487315300000091, -1.699965101999908 ], [ 123.484873894000089, -1.693536065999922 ], [ 123.47779381600003, -1.668633721999925 ], [ 123.475596550000091, -1.649102471999925 ], [ 123.478526238000086, -1.634535414999959 ], [ 123.478363477000016, -1.619561455999929 ], [ 123.480804884, -1.615004164999959 ], [ 123.482758009, -1.610446872999944 ], [ 123.488047722000033, -1.603285414999959 ], [ 123.492686394000089, -1.59498463299991 ], [ 123.49146569100003, -1.584730726999908 ], [ 123.485036655000044, -1.579685153999947 ], [ 123.479502800000091, -1.577080987999921 ], [ 123.476898634, -1.570245049999926 ], [ 123.476735873000052, -1.562758070999962 ], [ 123.47779381600003, -1.557712497999944 ], [ 123.481944207000083, -1.544691664999959 ], [ 123.490896030000044, -1.524509372999944 ], [ 123.500743035000028, -1.509372653999947 ], [ 123.51140384200005, -1.505629164999959 ], [ 123.520681186000047, -1.504815362999921 ], [ 123.525238477000016, -1.498223565999922 ], [ 123.523285352000016, -1.482679945999962 ], [ 123.529063347000033, -1.480238539999959 ], [ 123.537364129000025, -1.485039971999925 ], [ 123.544688347000033, -1.497002862999921 ], [ 123.560069207000083, -1.545993747999944 ], [ 123.559255405000044, -1.555759372999944 ], [ 123.55591881600003, -1.563409112999921 ], [ 123.557383660000028, -1.581149997999944 ], [ 123.568858269000089, -1.60084400799991 ], [ 123.58130944100003, -1.602634372999944 ], [ 123.590342644000089, -1.598728122999944 ], [ 123.600596550000091, -1.603285414999959 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-MU", "NAME_1": "Maluku Utara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.34888756600003, -1.959567966999941 ], [ 124.366221550000091, -1.971286716999941 ], [ 124.372080925000091, -1.992608330999929 ], [ 124.370290561000047, -2.038995049999926 ], [ 124.358409050000091, -2.033298434999949 ], [ 124.334727410000028, -2.004978122999944 ], [ 124.32545006600003, -2.001153252999927 ], [ 124.314219597000033, -1.999444268999923 ], [ 124.304698113000086, -1.996026299999926 ], [ 124.300629102000016, -1.987481377999927 ], [ 124.305674675000091, -1.973402601999908 ], [ 124.318125847000033, -1.963962497999944 ], [ 124.333832227000016, -1.959242445999962 ], [ 124.34888756600003, -1.959567966999941 ] ] ], [ [ [ 127.371104363000086, -1.367445570999962 ], [ 127.381358269000089, -1.397067966999941 ], [ 127.378754102000016, -1.405450127999927 ], [ 127.361175977000016, -1.408379815999922 ], [ 127.347829623000052, -1.412774346999925 ], [ 127.326670769000089, -1.431817315999922 ], [ 127.316661004000025, -1.436293226999908 ], [ 127.284190300000091, -1.425388278999947 ], [ 127.285817905000044, -1.400323174999926 ], [ 127.304535352000016, -1.377699476999908 ], [ 127.32349694100003, -1.37428150799991 ], [ 127.32545006600003, -1.36882903399993 ], [ 127.32740319100003, -1.365411065999922 ], [ 127.328868035000028, -1.361260674999926 ], [ 127.330251498000052, -1.353773695999962 ], [ 127.337087436000047, -1.353773695999962 ], [ 127.345713738000086, -1.365655205999929 ], [ 127.354177280000044, -1.365329684999949 ], [ 127.36255944100003, -1.36256275799991 ], [ 127.371104363000086, -1.367445570999962 ] ] ], [ [ [ 127.785899285000028, 2.264227606000077 ], [ 127.801442905000044, 2.265041408000059 ], [ 127.810557488000086, 2.263861395000049 ], [ 127.815114780000044, 2.255275783000059 ], [ 127.816172722000033, 2.233791408000059 ], [ 127.805186394000089, 2.21234772300005 ], [ 127.781260613000086, 2.208929755000042 ], [ 127.757660352000016, 2.221380927000041 ], [ 127.748220248000052, 2.247381903000075 ], [ 127.751719597000033, 2.265855210000041 ], [ 127.759938998000052, 2.269924221000053 ], [ 127.785899285000028, 2.264227606000077 ] ] ], [ [ [ 128.193614129000025, 2.367254950000074 ], [ 128.192230665000011, 2.354641018000052 ], [ 128.169932488000086, 2.297430731000077 ], [ 128.154633009, 2.286363023000092 ], [ 128.141123894000089, 2.296372789000088 ], [ 128.130707227000016, 2.316473700000074 ], [ 128.125254754000025, 2.335638739000046 ], [ 128.125254754000025, 2.347479559000078 ], [ 128.128672722000033, 2.358303127000056 ], [ 128.134776238000086, 2.368312893000052 ], [ 128.142100457000083, 2.377834377000056 ], [ 128.149750196000014, 2.390611070000091 ], [ 128.154144727000016, 2.400580145000049 ], [ 128.160166863000086, 2.404852606000077 ], [ 128.173187696000014, 2.40070221600007 ], [ 128.193614129000025, 2.367254950000074 ] ] ], [ [ [ 126.069102410000028, -2.38445403399993 ], [ 126.074473504000025, -2.406508070999962 ], [ 126.084239129000025, -2.423923434999949 ], [ 126.088063998000052, -2.44109465899993 ], [ 126.07585696700005, -2.462985934999949 ], [ 126.04615319100003, -2.474216403999947 ], [ 126.013438347000033, -2.459567966999941 ], [ 125.984548373000052, -2.43132903399993 ], [ 125.965993686000047, -2.402113539999959 ], [ 125.957774285000028, -2.369235934999949 ], [ 125.95476321700005, -2.302178643999923 ], [ 125.946136915000011, -2.271742445999962 ], [ 125.937266472000033, -2.260837497999944 ], [ 125.911875847000033, -2.239678643999923 ], [ 125.904551629000025, -2.231377862999921 ], [ 125.900401238000086, -2.217705987999921 ], [ 125.89771569100003, -2.169366143999923 ], [ 125.887705925000091, -2.142347914999959 ], [ 125.873383009, -2.115492445999962 ], [ 125.86255944100003, -2.086602471999925 ], [ 125.863536004000025, -2.053317966999941 ], [ 125.869965040000011, -2.035577080999929 ], [ 125.879405144000089, -2.018487237999921 ], [ 125.902598504000025, -1.987888278999947 ], [ 125.916351759, -1.97389088299991 ], [ 125.924571160000028, -1.968194268999923 ], [ 125.933360222000033, -1.96453215899993 ], [ 125.94459069100003, -1.965427341999941 ], [ 125.955251498000052, -1.971123955999929 ], [ 125.985362175000091, -1.993747653999947 ], [ 125.99341881600003, -2.00359465899993 ], [ 125.998789910000028, -2.015232028999947 ], [ 126.000987175000091, -2.028252862999921 ], [ 125.99732506600003, -2.055352471999925 ], [ 125.978770379000025, -2.108168226999908 ], [ 125.972829623000052, -2.135349216999941 ], [ 125.977224155000044, -2.180352471999925 ], [ 126.065114780000044, -2.363946221999925 ], [ 126.069102410000028, -2.38445403399993 ] ] ], [ [ [ 126.329112175000091, -1.819268487999921 ], [ 126.34148196700005, -1.82000090899993 ], [ 126.345225457000083, -1.81764088299991 ], [ 126.344493035000028, -1.818780205999929 ], [ 126.343272332000083, -1.829847914999959 ], [ 126.335948113000086, -1.837985934999949 ], [ 126.272146030000044, -1.867282809999949 ], [ 126.258067254000025, -1.869073174999926 ], [ 126.223480665000011, -1.867771091999941 ], [ 126.201508009, -1.870538018999923 ], [ 126.190440300000091, -1.873793226999908 ], [ 126.185720248000052, -1.877618096999925 ], [ 126.179942254000025, -1.88445403399993 ], [ 126.167002800000091, -1.885023695999962 ], [ 126.144786004000025, -1.881442966999941 ], [ 126.059092644000089, -1.888278903999947 ], [ 126.049978061000047, -1.89031340899993 ], [ 126.024261915000011, -1.901788018999923 ], [ 125.990733269000089, -1.900567315999922 ], [ 125.980235222000033, -1.901788018999923 ], [ 125.94849694100003, -1.922946872999944 ], [ 125.927582227000016, -1.931410414999959 ], [ 125.908213738000086, -1.925713799999926 ], [ 125.887705925000091, -1.909274997999944 ], [ 125.871755405000044, -1.902520440999922 ], [ 125.855967644000089, -1.903415622999944 ], [ 125.787445509, -1.918715101999908 ], [ 125.620290561000047, -1.915622653999947 ], [ 125.599864129000025, -1.918633721999925 ], [ 125.552744988000086, -1.932793877999927 ], [ 125.531097852000016, -1.935967705999929 ], [ 125.483409050000091, -1.935967705999929 ], [ 125.468516472000033, -1.937758070999962 ], [ 125.432139519000089, -1.949639580999929 ], [ 125.437998894000089, -1.932549737999921 ], [ 125.439707879000025, -1.913262627999927 ], [ 125.437754754000025, -1.895114841999941 ], [ 125.432139519000089, -1.881442966999941 ], [ 125.423350457000083, -1.875095309999949 ], [ 125.380625847000033, -1.854099216999941 ], [ 125.371836785000028, -1.858330987999921 ], [ 125.366384311000047, -1.877129815999922 ], [ 125.356455925000091, -1.881442966999941 ], [ 125.348806186000047, -1.877862237999921 ], [ 125.342051629000025, -1.869317315999922 ], [ 125.33716881600003, -1.859144789999959 ], [ 125.335297071000014, -1.850681247999944 ], [ 125.338145379000025, -1.828057549999926 ], [ 125.34693444100003, -1.810967705999929 ], [ 125.362071160000028, -1.80242278399993 ], [ 125.377940300000091, -1.799248955999929 ], [ 125.378916863000086, -1.789971612999921 ], [ 125.38404381600003, -1.781182549999926 ], [ 125.390635613000086, -1.775974216999941 ], [ 125.402110222000033, -1.77467213299991 ], [ 125.409678582000083, -1.779229424999926 ], [ 125.422129754000025, -1.794122002999927 ], [ 125.430837436000047, -1.798272393999923 ], [ 125.440196160000028, -1.798028252999927 ], [ 125.459483269000089, -1.79265715899993 ], [ 125.474131707000083, -1.781182549999926 ], [ 125.483246290000011, -1.776950778999947 ], [ 125.487478061000047, -1.782403252999927 ], [ 125.487803582000083, -1.790215752999927 ], [ 125.489105665000011, -1.797784112999921 ], [ 125.491953972000033, -1.803399346999925 ], [ 125.497080925000091, -1.805759372999944 ], [ 125.558848504000025, -1.798028252999927 ], [ 125.589854363000086, -1.799086195999962 ], [ 125.610362175000091, -1.813164971999925 ], [ 125.625336134, -1.80982838299991 ], [ 125.702891472000033, -1.819268487999921 ], [ 125.712738477000016, -1.817803643999923 ], [ 125.723968946000014, -1.814060153999947 ], [ 125.734873894000089, -1.808689059999949 ], [ 125.755625847000033, -1.794528903999947 ], [ 125.765635613000086, -1.793715101999908 ], [ 125.787852410000028, -1.799493096999925 ], [ 125.828868035000028, -1.801527601999908 ], [ 125.946136915000011, -1.785821221999925 ], [ 125.99341881600003, -1.785821221999925 ], [ 126.116709832000083, -1.805759372999944 ], [ 126.288828972000033, -1.813164971999925 ], [ 126.329112175000091, -1.819268487999921 ] ] ], [ [ [ 125.314789259, -1.77898528399993 ], [ 125.319834832000083, -1.793389580999929 ], [ 125.321625196000014, -1.864353122999944 ], [ 125.318369988000086, -1.882582289999959 ], [ 125.308848504000025, -1.884942315999922 ], [ 125.273936394000089, -1.873955987999921 ], [ 125.25123131600003, -1.873467705999929 ], [ 125.188243035000028, -1.881442966999941 ], [ 125.179535352000016, -1.880303643999923 ], [ 125.158457879000025, -1.875095309999949 ], [ 125.147634311000047, -1.873955987999921 ], [ 125.137543165000011, -1.876885674999926 ], [ 125.120941602000016, -1.890720309999949 ], [ 125.110036655000044, -1.895114841999941 ], [ 125.091156446000014, -1.893649997999944 ], [ 125.070811394000089, -1.888848565999922 ], [ 125.05046634200005, -1.88795338299991 ], [ 125.031016472000033, -1.898532809999949 ], [ 125.022634311000047, -1.916273695999962 ], [ 125.02116946700005, -1.933363539999959 ], [ 125.013519727000016, -1.944268487999921 ], [ 124.986582879000025, -1.943454684999949 ], [ 124.959239129000025, -1.922458591999941 ], [ 124.946299675000091, -1.91961028399993 ], [ 124.914561394000089, -1.922458591999941 ], [ 124.891123894000089, -1.91725025799991 ], [ 124.853282097000033, -1.896905205999929 ], [ 124.828298373000052, -1.895114841999941 ], [ 124.785980665000011, -1.907972914999959 ], [ 124.711599155000044, -1.95240650799991 ], [ 124.67115319100003, -1.970147393999923 ], [ 124.58171634200005, -1.994235934999949 ], [ 124.565196160000028, -2.00164153399993 ], [ 124.554453972000033, -2.004978122999944 ], [ 124.543223504000025, -2.006524346999925 ], [ 124.514170769000089, -2.004978122999944 ], [ 124.45281009200005, -2.012465101999908 ], [ 124.43091881600003, -2.011651299999926 ], [ 124.406016472000033, -2.004082940999922 ], [ 124.397227410000028, -1.991387627999927 ], [ 124.392588738000086, -1.97429778399993 ], [ 124.335948113000086, -1.888116143999923 ], [ 124.329112175000091, -1.87078215899993 ], [ 124.331390821000014, -1.826918226999908 ], [ 124.338226759, -1.807793877999927 ], [ 124.352549675000091, -1.789239190999922 ], [ 124.368907097000033, -1.750746351999908 ], [ 124.373057488000086, -1.705010674999926 ], [ 124.384938998000052, -1.667901299999926 ], [ 124.424815300000091, -1.655450127999927 ], [ 124.442393425000091, -1.654392184999949 ], [ 124.488617384, -1.645684502999927 ], [ 124.503265821000014, -1.63836028399993 ], [ 124.518077019000089, -1.62623463299991 ], [ 124.526540561000047, -1.625664971999925 ], [ 124.529551629000025, -1.635674737999921 ], [ 124.527842644000089, -1.655450127999927 ], [ 124.55632571700005, -1.641208591999941 ], [ 124.592784050000091, -1.633233330999929 ], [ 124.632823113000086, -1.631117445999962 ], [ 124.687673373000052, -1.63836028399993 ], [ 124.729014519000089, -1.650567315999922 ], [ 124.742930535000028, -1.658868096999925 ], [ 124.757009311000047, -1.665134372999944 ], [ 124.815196160000028, -1.669691664999959 ], [ 124.871592644000089, -1.69304778399993 ], [ 124.938161655000044, -1.703871351999908 ], [ 124.943614129000025, -1.702894789999959 ], [ 124.950694207000083, -1.697686455999929 ], [ 124.955577019000089, -1.696465752999927 ], [ 124.960703972000033, -1.698337497999944 ], [ 124.968109571000014, -1.707289320999962 ], [ 124.972911004000025, -1.710137627999927 ], [ 125.000173373000052, -1.716729424999926 ], [ 125.010427280000044, -1.717461846999925 ], [ 125.022959832000083, -1.723077080999929 ], [ 125.034678582000083, -1.752129815999922 ], [ 125.048024936000047, -1.76531340899993 ], [ 125.049815300000091, -1.760511976999908 ], [ 125.053558790000011, -1.756524346999925 ], [ 125.055430535000028, -1.75164153399993 ], [ 125.06763756600003, -1.760430596999925 ], [ 125.081553582000083, -1.764743747999944 ], [ 125.096039259, -1.764092705999929 ], [ 125.110036655000044, -1.758477471999925 ], [ 125.100352410000028, -1.753106377999927 ], [ 125.096446160000028, -1.75164153399993 ], [ 125.103037957000083, -1.736993096999925 ], [ 125.11491946700005, -1.692152601999908 ], [ 125.120290561000047, -1.682793877999927 ], [ 125.130707227000016, -1.684991143999923 ], [ 125.137461785000028, -1.689629815999922 ], [ 125.14226321700005, -1.694268487999921 ], [ 125.150157097000033, -1.697686455999929 ], [ 125.18523196700005, -1.703871351999908 ], [ 125.195323113000086, -1.72193775799991 ], [ 125.196462436000047, -1.744235934999949 ], [ 125.191416863000086, -1.782403252999927 ], [ 125.196787957000083, -1.78875090899993 ], [ 125.208343946000014, -1.791110934999949 ], [ 125.220225457000083, -1.788995049999926 ], [ 125.225433790000011, -1.782403252999927 ], [ 125.227305535000028, -1.773044528999947 ], [ 125.231618686000047, -1.76140715899993 ], [ 125.239756707000083, -1.744805596999925 ], [ 125.253428582000083, -1.732842705999929 ], [ 125.268728061000047, -1.72820403399993 ], [ 125.284027540000011, -1.731052341999941 ], [ 125.29810631600003, -1.741387627999927 ], [ 125.30005944100003, -1.750909112999921 ], [ 125.293630405000044, -1.760918877999927 ], [ 125.284922722000033, -1.771416924999926 ], [ 125.280772332000083, -1.782403252999927 ], [ 125.28484134200005, -1.785902601999908 ], [ 125.305837436000047, -1.777927341999941 ], [ 125.314789259, -1.77898528399993 ] ] ], [ [ [ 128.145192905000044, -1.594008070999962 ], [ 128.159027540000011, -1.636976820999962 ], [ 128.151133660000028, -1.669691664999959 ], [ 128.126475457000083, -1.693617445999962 ], [ 128.090586785000028, -1.710137627999927 ], [ 128.051524285000028, -1.71453215899993 ], [ 127.933441602000016, -1.682793877999927 ], [ 127.913096550000091, -1.682386976999908 ], [ 127.876963738000086, -1.693454684999949 ], [ 127.85474694100003, -1.696465752999927 ], [ 127.703298373000052, -1.690199476999908 ], [ 127.684580925000091, -1.695570570999962 ], [ 127.669688347000033, -1.707289320999962 ], [ 127.658050977000016, -1.719008070999962 ], [ 127.648692254000025, -1.72429778399993 ], [ 127.568858269000089, -1.732191664999959 ], [ 127.532725457000083, -1.731377862999921 ], [ 127.494151238000086, -1.717461846999925 ], [ 127.432627800000091, -1.686455987999921 ], [ 127.378672722000033, -1.632256768999923 ], [ 127.383067254000025, -1.61060963299991 ], [ 127.398610873000052, -1.57350025799991 ], [ 127.398285352000016, -1.554294528999947 ], [ 127.396494988000086, -1.54029713299991 ], [ 127.399261915000011, -1.527601820999962 ], [ 127.412852410000028, -1.51140715899993 ], [ 127.40357506600003, -1.491631768999923 ], [ 127.40943444100003, -1.473402601999908 ], [ 127.420095248000052, -1.45631275799991 ], [ 127.425791863000086, -1.439385674999926 ], [ 127.428396030000044, -1.415134372999944 ], [ 127.435313347000033, -1.412204684999949 ], [ 127.459971550000091, -1.428887627999927 ], [ 127.48170006600003, -1.448174737999921 ], [ 127.487803582000083, -1.449965101999908 ], [ 127.493907097000033, -1.444756768999923 ], [ 127.51099694100003, -1.421319268999923 ], [ 127.514659050000091, -1.412204684999949 ], [ 127.521494988000086, -1.401055596999925 ], [ 127.624522332000083, -1.329522393999923 ], [ 127.634287957000083, -1.328708591999941 ], [ 127.713552280000044, -1.34498463299991 ], [ 127.741058790000011, -1.35475025799991 ], [ 127.765391472000033, -1.36842213299991 ], [ 127.775889519000089, -1.38445403399993 ], [ 127.78484134200005, -1.402439059999949 ], [ 127.805674675000091, -1.41920338299991 ], [ 127.830821160000028, -1.431573174999926 ], [ 127.851735873000052, -1.436293226999908 ], [ 127.858409050000091, -1.434014580999929 ], [ 127.875498894000089, -1.424004815999922 ], [ 127.885752800000091, -1.422051690999922 ], [ 127.898936394000089, -1.426690362999921 ], [ 127.919118686000047, -1.445733330999929 ], [ 127.929860873000052, -1.449965101999908 ], [ 128.008067254000025, -1.504571221999925 ], [ 128.02662194100003, -1.529473565999922 ], [ 128.035329623000052, -1.53875090899993 ], [ 128.046722852000016, -1.546319268999923 ], [ 128.070648634, -1.556735934999949 ], [ 128.080332879000025, -1.562920830999929 ], [ 128.089610222000033, -1.567315362999921 ], [ 128.098399285000028, -1.56568775799991 ], [ 128.10670006600003, -1.561944268999923 ], [ 128.11451256600003, -1.55982838299991 ], [ 128.126312696000014, -1.563653252999927 ], [ 128.134613477000016, -1.572849216999941 ], [ 128.145192905000044, -1.594008070999962 ] ] ], [ [ [ 127.689952019000089, -1.213799737999921 ], [ 127.697601759, -1.231133721999925 ], [ 127.692881707000083, -1.249444268999923 ], [ 127.680674675000091, -1.264255466999941 ], [ 127.666026238000086, -1.271905205999929 ], [ 127.645843946000014, -1.270603122999944 ], [ 127.590342644000089, -1.243910414999959 ], [ 127.552582227000016, -1.236911716999941 ], [ 127.531504754000025, -1.237888278999947 ], [ 127.522146030000044, -1.24773528399993 ], [ 127.51490319100003, -1.262139580999929 ], [ 127.498301629000025, -1.259209893999923 ], [ 127.478851759, -1.249607028999947 ], [ 127.463389519000089, -1.243910414999959 ], [ 127.460703972000033, -1.235772393999923 ], [ 127.47388756600003, -1.217705987999921 ], [ 127.50163821700005, -1.189385674999926 ], [ 127.516449415000011, -1.179294528999947 ], [ 127.531504754000025, -1.172621351999908 ], [ 127.547211134, -1.171075127999927 ], [ 127.610199415000011, -1.193129164999959 ], [ 127.627452019000089, -1.207614841999941 ], [ 127.674489780000044, -1.209730726999908 ], [ 127.689952019000089, -1.213799737999921 ] ] ], [ [ [ 127.29615319100003, -0.743747653999947 ], [ 127.31804446700005, -0.780043226999908 ], [ 127.319834832000083, -0.793633721999925 ], [ 127.278819207000083, -0.805596612999921 ], [ 127.26880944100003, -0.805108330999929 ], [ 127.26490319100003, -0.80201588299991 ], [ 127.253103061000047, -0.788995049999926 ], [ 127.248301629000025, -0.785251559999949 ], [ 127.216563347000033, -0.782403252999927 ], [ 127.180186394000089, -0.783868096999925 ], [ 127.15552819100003, -0.772393487999921 ], [ 127.158946160000028, -0.730645440999922 ], [ 127.168955925000091, -0.71021900799991 ], [ 127.180186394000089, -0.693129164999959 ], [ 127.189300977000016, -0.674981377999927 ], [ 127.19459069100003, -0.635186455999929 ], [ 127.20085696700005, -0.622816664999959 ], [ 127.214040561000047, -0.615411065999922 ], [ 127.244151238000086, -0.613946221999925 ], [ 127.250824415000011, -0.61492278399993 ], [ 127.256602410000028, -0.616957289999959 ], [ 127.261241082000083, -0.620212497999944 ], [ 127.248789910000028, -0.637627862999921 ], [ 127.25513756600003, -0.650485934999949 ], [ 127.268077019000089, -0.661228122999944 ], [ 127.27507571700005, -0.672539971999925 ], [ 127.278005405000044, -0.675713799999926 ], [ 127.291758660000028, -0.694512627999927 ], [ 127.29615319100003, -0.702732028999947 ], [ 127.297211134, -0.71257903399993 ], [ 127.295176629000025, -0.73365650799991 ], [ 127.29615319100003, -0.743747653999947 ] ] ], [ [ [ 127.888926629000025, -0.764743747999944 ], [ 127.898203972000033, -0.767347914999959 ], [ 127.898203972000033, -0.773532809999949 ], [ 127.891937696000014, -0.785251559999949 ], [ 127.888194207000083, -0.802178643999923 ], [ 127.87623131600003, -0.817803643999923 ], [ 127.830821160000028, -0.859144789999959 ], [ 127.822276238000086, -0.864353122999944 ], [ 127.812673373000052, -0.866631768999923 ], [ 127.799489780000044, -0.867120049999926 ], [ 127.786631707000083, -0.87037525799991 ], [ 127.76531009200005, -0.884535414999959 ], [ 127.754893425000091, -0.887627862999921 ], [ 127.748789910000028, -0.885349216999941 ], [ 127.727549675000091, -0.867120049999926 ], [ 127.717784050000091, -0.862237237999921 ], [ 127.694021030000044, -0.854668877999927 ], [ 127.683116082000083, -0.853610934999949 ], [ 127.680186394000089, -0.850274346999925 ], [ 127.678477410000028, -0.843357028999947 ], [ 127.673838738000086, -0.836195570999962 ], [ 127.662364129000025, -0.833103122999944 ], [ 127.653493686000047, -0.82740650799991 ], [ 127.653493686000047, -0.814629815999922 ], [ 127.658539259, -0.791436455999929 ], [ 127.65552819100003, -0.78093840899993 ], [ 127.650645379000025, -0.77117278399993 ], [ 127.644786004000025, -0.76295338299991 ], [ 127.638194207000083, -0.757256768999923 ], [ 127.625743035000028, -0.752373955999929 ], [ 127.620453321000014, -0.75554778399993 ], [ 127.616384311000047, -0.761488539999959 ], [ 127.607432488000086, -0.764743747999944 ], [ 127.589691602000016, -0.768731377999927 ], [ 127.535655144000089, -0.798923434999949 ], [ 127.469899936000047, -0.818454684999949 ], [ 127.457692905000044, -0.815606377999927 ], [ 127.452484571000014, -0.80201588299991 ], [ 127.450531446000014, -0.792901299999926 ], [ 127.441579623000052, -0.772881768999923 ], [ 127.437266472000033, -0.729099216999941 ], [ 127.439463738000086, -0.716403903999947 ], [ 127.470713738000086, -0.652520440999922 ], [ 127.470225457000083, -0.641289971999925 ], [ 127.467051629000025, -0.639825127999927 ], [ 127.436045769000089, -0.630629164999959 ], [ 127.426931186000047, -0.625583591999941 ], [ 127.408864780000044, -0.624200127999927 ], [ 127.398610873000052, -0.620212497999944 ], [ 127.397308790000011, -0.61687590899993 ], [ 127.395355665000011, -0.604668877999927 ], [ 127.392344597000033, -0.599704684999949 ], [ 127.387461785000028, -0.597426039999959 ], [ 127.374522332000083, -0.594008070999962 ], [ 127.371104363000086, -0.592868747999944 ], [ 127.353282097000033, -0.562920830999929 ], [ 127.350759311000047, -0.555271091999941 ], [ 127.344411655000044, -0.54461028399993 ], [ 127.313975457000083, -0.522230726999908 ], [ 127.302989129000025, -0.510918877999927 ], [ 127.295258009, -0.494317315999922 ], [ 127.291188998000052, -0.476820570999962 ], [ 127.291840040000011, -0.460137627999927 ], [ 127.299571160000028, -0.445733330999929 ], [ 127.31177819100003, -0.432224216999941 ], [ 127.322438998000052, -0.416924737999921 ], [ 127.32935631600003, -0.398044528999947 ], [ 127.330251498000052, -0.373711846999925 ], [ 127.328135613000086, -0.365166924999926 ], [ 127.316661004000025, -0.339613539999959 ], [ 127.330414259, -0.339450778999947 ], [ 127.350759311000047, -0.328708591999941 ], [ 127.361175977000016, -0.32586028399993 ], [ 127.372813347000033, -0.329034112999921 ], [ 127.382823113000086, -0.336358330999929 ], [ 127.398610873000052, -0.353936455999929 ], [ 127.405039910000028, -0.35865650799991 ], [ 127.411468946000014, -0.362399997999944 ], [ 127.416514519000089, -0.367771091999941 ], [ 127.420583530000044, -0.388929945999962 ], [ 127.426524285000028, -0.401462497999944 ], [ 127.435313347000033, -0.411228122999944 ], [ 127.446299675000091, -0.41529713299991 ], [ 127.460948113000086, -0.406833591999941 ], [ 127.468923373000052, -0.38640715899993 ], [ 127.474131707000083, -0.363213799999926 ], [ 127.480479363000086, -0.346449476999908 ], [ 127.486664259, -0.342461846999925 ], [ 127.495860222000033, -0.33912525799991 ], [ 127.504161004000025, -0.335137627999927 ], [ 127.507823113000086, -0.329034112999921 ], [ 127.508799675000091, -0.320733330999929 ], [ 127.511566602000016, -0.310642184999949 ], [ 127.51685631600003, -0.301934502999927 ], [ 127.524180535000028, -0.298028252999927 ], [ 127.528168165000011, -0.298760674999926 ], [ 127.529795769000089, -0.300713799999926 ], [ 127.530772332000083, -0.303155205999929 ], [ 127.532237175000091, -0.304945570999962 ], [ 127.566172722000033, -0.316501559999949 ], [ 127.578623894000089, -0.324965101999908 ], [ 127.583506707000083, -0.34303150799991 ], [ 127.588877800000091, -0.351983330999929 ], [ 127.612315300000091, -0.366306247999944 ], [ 127.617686394000089, -0.377536716999941 ], [ 127.619151238000086, -0.388604424999926 ], [ 127.622569207000083, -0.399590752999927 ], [ 127.627207879000025, -0.408949476999908 ], [ 127.632009311000047, -0.41529713299991 ], [ 127.635915561000047, -0.416192315999922 ], [ 127.647797071000014, -0.414320570999962 ], [ 127.651703321000014, -0.41529713299991 ], [ 127.658539259, -0.428399346999925 ], [ 127.666270379000025, -0.435723565999922 ], [ 127.683116082000083, -0.460056247999944 ], [ 127.687998894000089, -0.480645440999922 ], [ 127.676524285000028, -0.503513278999947 ], [ 127.617686394000089, -0.573174737999921 ], [ 127.607676629000025, -0.593845309999949 ], [ 127.604014519000089, -0.617120049999926 ], [ 127.606455925000091, -0.629082940999922 ], [ 127.613047722000033, -0.63640715899993 ], [ 127.622894727000016, -0.640232028999947 ], [ 127.635020379000025, -0.641289971999925 ], [ 127.647471550000091, -0.644301039999959 ], [ 127.651133660000028, -0.652439059999949 ], [ 127.651377800000091, -0.685804945999962 ], [ 127.64966881600003, -0.696709893999923 ], [ 127.652679884, -0.707207940999922 ], [ 127.666026238000086, -0.716403903999947 ], [ 127.678233269000089, -0.717705987999921 ], [ 127.690196160000028, -0.713636976999908 ], [ 127.701182488000086, -0.706801039999959 ], [ 127.710134311000047, -0.699314059999949 ], [ 127.725108269000089, -0.694024346999925 ], [ 127.789561394000089, -0.689629815999922 ], [ 127.804698113000086, -0.694105726999908 ], [ 127.848643425000091, -0.712985934999949 ], [ 127.857920769000089, -0.719821872999944 ], [ 127.861094597000033, -0.725762627999927 ], [ 127.875173373000052, -0.744317315999922 ], [ 127.878265821000014, -0.754001559999949 ], [ 127.878428582000083, -0.760186455999929 ], [ 127.879567905000044, -0.76336028399993 ], [ 127.882660352000016, -0.764580987999921 ], [ 127.888926629000025, -0.764743747999944 ] ] ], [ [ [ 127.234629754000025, -0.490411065999922 ], [ 127.210948113000086, -0.513278903999947 ], [ 127.198741082000083, -0.520603122999944 ], [ 127.179453972000033, -0.525160414999959 ], [ 127.117360873000052, -0.525160414999959 ], [ 127.119965040000011, -0.517998955999929 ], [ 127.121592644000089, -0.51490650799991 ], [ 127.124766472000033, -0.510918877999927 ], [ 127.108571811000047, -0.501071872999944 ], [ 127.11255944100003, -0.49187590899993 ], [ 127.124359571000014, -0.485284112999921 ], [ 127.131032748000052, -0.483005466999941 ], [ 127.130625847000033, -0.470147393999923 ], [ 127.126149936000047, -0.45671965899993 ], [ 127.119883660000028, -0.446221612999921 ], [ 127.113942905000044, -0.441989841999941 ], [ 127.102305535000028, -0.437758070999962 ], [ 127.102305535000028, -0.42742278399993 ], [ 127.110524936000047, -0.404717705999929 ], [ 127.110524936000047, -0.377536716999941 ], [ 127.11255944100003, -0.369398695999962 ], [ 127.116953972000033, -0.365655205999929 ], [ 127.121836785000028, -0.363457940999922 ], [ 127.124766472000033, -0.360039971999925 ], [ 127.122569207000083, -0.337334893999923 ], [ 127.114268425000091, -0.31023528399993 ], [ 127.110362175000091, -0.287692966999941 ], [ 127.121104363000086, -0.278090101999908 ], [ 127.12818444100003, -0.276136976999908 ], [ 127.153819207000083, -0.265720309999949 ], [ 127.162119988000086, -0.260837497999944 ], [ 127.174815300000091, -0.25554778399993 ], [ 127.203461134, -0.257256768999923 ], [ 127.213633660000028, -0.250176690999922 ], [ 127.22038821700005, -0.257582289999959 ], [ 127.22820071700005, -0.251722914999959 ], [ 127.234873894000089, -0.251722914999959 ], [ 127.241384311000047, -0.256442966999941 ], [ 127.248301629000025, -0.263848565999922 ], [ 127.254567905000044, -0.275648695999962 ], [ 127.263926629000025, -0.279473565999922 ], [ 127.292491082000083, -0.278090101999908 ], [ 127.297129754000025, -0.281914971999925 ], [ 127.296071811000047, -0.29029713299991 ], [ 127.29224694100003, -0.299574476999908 ], [ 127.28874759200005, -0.305433851999908 ], [ 127.28288821700005, -0.307305596999925 ], [ 127.26490319100003, -0.306247653999947 ], [ 127.257823113000086, -0.308851820999962 ], [ 127.251312696000014, -0.323337497999944 ], [ 127.254730665000011, -0.338799737999921 ], [ 127.26335696700005, -0.353122653999947 ], [ 127.271983269000089, -0.363457940999922 ], [ 127.27702884200005, -0.373467705999929 ], [ 127.280772332000083, -0.388604424999926 ], [ 127.280039910000028, -0.402520440999922 ], [ 127.261566602000016, -0.414646091999941 ], [ 127.261973504000025, -0.428806247999944 ], [ 127.26880944100003, -0.45631275799991 ], [ 127.265961134, -0.46453215899993 ], [ 127.256602410000028, -0.477634372999944 ], [ 127.251963738000086, -0.497165622999944 ], [ 127.246267123000052, -0.496351820999962 ], [ 127.239593946000014, -0.491794528999947 ], [ 127.234629754000025, -0.490411065999922 ] ] ], [ [ [ 129.536875847000033, -0.134209893999923 ], [ 129.557627800000091, -0.158786716999941 ], [ 129.567393425000091, -0.175551039999959 ], [ 129.57154381600003, -0.192152601999908 ], [ 129.568207227000016, -0.200127862999921 ], [ 129.56023196700005, -0.208103122999944 ], [ 129.549978061000047, -0.21412525799991 ], [ 129.54029381600003, -0.216729424999926 ], [ 129.526133660000028, -0.214613539999959 ], [ 129.516774936000047, -0.208754164999959 ], [ 129.501963738000086, -0.18873463299991 ], [ 129.45826256600003, -0.113702080999929 ], [ 129.372894727000016, -0.079522393999923 ], [ 129.37037194100003, -0.066338799999926 ], [ 129.372243686000047, -0.050347588999955 ], [ 129.371592644000089, -0.03679778399993 ], [ 129.361664259, -0.031101169999943 ], [ 129.33757571700005, 0.006781317000048 ], [ 129.332774285000028, 0.011379299000055 ], [ 129.310069207000083, 0.02484772300005 ], [ 129.299082879000025, 0.033433335000041 ], [ 129.293467644000089, 0.036322333000044 ], [ 129.29029381600003, 0.040594794000071 ], [ 129.293467644000089, 0.047674872000073 ], [ 129.30046634200005, 0.050604559000078 ], [ 129.309255405000044, 0.048041083000044 ], [ 129.459808790000011, -0.080173434999949 ], [ 129.512705925000091, -0.114353122999944 ], [ 129.536875847000033, -0.134209893999923 ] ] ], [ [ [ 127.459971550000091, -0.003838799999926 ], [ 127.461680535000028, -0.025160414999959 ], [ 127.460297071000014, -0.038872979999951 ], [ 127.452891472000033, -0.041029554999909 ], [ 127.436045769000089, -0.027683200999945 ], [ 127.432627800000091, -0.020806572999959 ], [ 127.431895379000025, -0.011569919999943 ], [ 127.432627800000091, 0.006781317000048 ], [ 127.429942254000025, 0.008286851000094 ], [ 127.412852410000028, 0.023504950000074 ], [ 127.411875847000033, 0.016099351000094 ], [ 127.409678582000083, 0.010565497000073 ], [ 127.40552819100003, 0.00649648600006 ], [ 127.398610873000052, 0.003078518000052 ], [ 127.391368035000028, 0.02602773600006 ], [ 127.391368035000028, 0.05304596600007 ], [ 127.398610873000052, 0.10610586100006 ], [ 127.408864780000044, 0.147040106000077 ], [ 127.438812696000014, 0.139715887000079 ], [ 127.452484571000014, 0.140204169000071 ], [ 127.448252800000091, 0.134263414000088 ], [ 127.440196160000028, 0.120266018000052 ], [ 127.459971550000091, -0.003838799999926 ] ] ], [ [ [ 127.398692254000025, 0.379584052000041 ], [ 127.418711785000028, 0.353989976000094 ], [ 127.417165561000047, 0.312933661000045 ], [ 127.396250847000033, 0.281073309000078 ], [ 127.358164910000028, 0.28351471600007 ], [ 127.347504102000016, 0.296128648000092 ], [ 127.34107506600003, 0.314642645000049 ], [ 127.337901238000086, 0.333970445000091 ], [ 127.337087436000047, 0.348781643000052 ], [ 127.343272332000083, 0.361395575000074 ], [ 127.358734571000014, 0.371283270000049 ], [ 127.378916863000086, 0.37767161700009 ], [ 127.398692254000025, 0.379584052000041 ] ] ], [ [ [ 127.378672722000033, 0.623032945000091 ], [ 127.373301629000025, 0.633490302000041 ], [ 127.363617384, 0.648260809000078 ], [ 127.35865319100003, 0.665838934000078 ], [ 127.375743035000028, 0.698797919000071 ], [ 127.384938998000052, 0.757147528000075 ], [ 127.394541863000086, 0.75259023600006 ], [ 127.403819207000083, 0.750392971000053 ], [ 127.412119988000086, 0.751654364000046 ], [ 127.418467644000089, 0.757147528000075 ], [ 127.425629102000016, 0.75421784100007 ], [ 127.431407097000033, 0.750921942000048 ], [ 127.436045769000089, 0.747219143000052 ], [ 127.439463738000086, 0.742865302000041 ], [ 127.444834832000083, 0.727443752000056 ], [ 127.448252800000091, 0.706610419000071 ], [ 127.449066602000016, 0.68500397300005 ], [ 127.446299675000091, 0.667181708000044 ], [ 127.433929884, 0.652167059000078 ], [ 127.410899285000028, 0.63226959800005 ], [ 127.388682488000086, 0.618841864000046 ], [ 127.378672722000033, 0.623032945000091 ] ] ], [ [ [ 127.371104363000086, 0.784491278000075 ], [ 127.360036655000044, 0.76508209800005 ], [ 127.34693444100003, 0.757391669000071 ], [ 127.33130944100003, 0.756415106000077 ], [ 127.312836134, 0.757147528000075 ], [ 127.303396030000044, 0.764878648000092 ], [ 127.293304884, 0.78266022300005 ], [ 127.285655144000089, 0.802150783000059 ], [ 127.28248131600003, 0.814886786000045 ], [ 127.288828972000033, 0.836900132000039 ], [ 127.304860873000052, 0.855169989000046 ], [ 127.324880405000044, 0.862860419000071 ], [ 127.363454623000052, 0.840969143000052 ], [ 127.374359571000014, 0.826239325000074 ], [ 127.376963738000086, 0.807766018000052 ], [ 127.371104363000086, 0.784491278000075 ] ] ], [ [ [ 127.666026238000086, -0.209242445999962 ], [ 127.66724694100003, -0.185804945999962 ], [ 127.682627800000091, -0.144952080999929 ], [ 127.686534050000091, -0.123874606999948 ], [ 127.685394727000016, -0.008314710999912 ], [ 127.686534050000091, 0.003078518000052 ], [ 127.689463738000086, 0.014837958000044 ], [ 127.698252800000091, 0.037787177000041 ], [ 127.700205925000091, 0.047674872000073 ], [ 127.697520379000025, 0.070786851000094 ], [ 127.684580925000091, 0.099351304000038 ], [ 127.679698113000086, 0.119086005000042 ], [ 127.680674675000091, 0.162258205000057 ], [ 127.713715040000011, 0.277329820000091 ], [ 127.716807488000086, 0.296454169000071 ], [ 127.715586785000028, 0.312567450000074 ], [ 127.709157748000052, 0.327215887000079 ], [ 127.696787957000083, 0.342230536000045 ], [ 127.685883009, 0.346625067000048 ], [ 127.664235873000052, 0.339789130000042 ], [ 127.655121290000011, 0.342230536000045 ], [ 127.610850457000083, 0.379787502000056 ], [ 127.60865319100003, 0.382879950000074 ], [ 127.605804884, 0.390448309000078 ], [ 127.604014519000089, 0.393459377000056 ], [ 127.583506707000083, 0.407131252000056 ], [ 127.576508009, 0.415513414000088 ], [ 127.572276238000086, 0.422349351000094 ], [ 127.570323113000086, 0.431138414000088 ], [ 127.568614129000025, 0.462836005000042 ], [ 127.561045769000089, 0.509426174000055 ], [ 127.556162957000083, 0.523830471000053 ], [ 127.550547722000033, 0.529364325000074 ], [ 127.542491082000083, 0.534654039000088 ], [ 127.53443444100003, 0.54165273600006 ], [ 127.528330925000091, 0.551743882000039 ], [ 127.526866082000083, 0.560614325000074 ], [ 127.529470248000052, 0.605902411000045 ], [ 127.542491082000083, 0.667181708000044 ], [ 127.547373894000089, 0.715399481000077 ], [ 127.555430535000028, 0.739894924000055 ], [ 127.588063998000052, 0.76117584800005 ], [ 127.604665561000047, 0.786037502000056 ], [ 127.618337436000047, 0.813462632000039 ], [ 127.624522332000083, 0.832220770000049 ], [ 127.611582879000025, 0.85773346600007 ], [ 127.577484571000014, 0.869289455000057 ], [ 127.537608269000089, 0.87571849200009 ], [ 127.507823113000086, 0.886216539000088 ], [ 127.494639519000089, 0.90501536700009 ], [ 127.498545769000089, 0.922796942000048 ], [ 127.508799675000091, 0.940375067000048 ], [ 127.514659050000091, 0.958889065000051 ], [ 127.512543165000011, 0.968898830000057 ], [ 127.50359134200005, 0.987209377000056 ], [ 127.50163821700005, 0.992987372000073 ], [ 127.499359571000014, 0.996486721000053 ], [ 127.490000847000033, 0.995998440000051 ], [ 127.487803582000083, 0.999904690000051 ], [ 127.488536004000025, 1.018255927000041 ], [ 127.487803582000083, 1.02407461100006 ], [ 127.489024285000028, 1.034572658000059 ], [ 127.492686394000089, 1.044867255000042 ], [ 127.491953972000033, 1.054917710000041 ], [ 127.480479363000086, 1.065008856000077 ], [ 127.471446160000028, 1.065578518000052 ], [ 127.462901238000086, 1.060614325000074 ], [ 127.455332879000025, 1.054388739000046 ], [ 127.449473504000025, 1.051336981000077 ], [ 127.432139519000089, 1.046820380000042 ], [ 127.416270379000025, 1.040350653000075 ], [ 127.404144727000016, 1.042792059000078 ], [ 127.398610873000052, 1.065008856000077 ], [ 127.399750196000014, 1.07876211100006 ], [ 127.404470248000052, 1.087388414000088 ], [ 127.410980665000011, 1.09516022300005 ], [ 127.418467644000089, 1.105943101000094 ], [ 127.42546634200005, 1.120428778000075 ], [ 127.42741946700005, 1.128485419000071 ], [ 127.425791863000086, 1.15070221600007 ], [ 127.420664910000028, 1.163804429000038 ], [ 127.410004102000016, 1.175523179000038 ], [ 127.400238477000016, 1.189439195000091 ], [ 127.398610873000052, 1.209051825000074 ], [ 127.40593509200005, 1.229885158000059 ], [ 127.43482506600003, 1.277411200000074 ], [ 127.463389519000089, 1.314113674000055 ], [ 127.487803582000083, 1.38031647300005 ], [ 127.526377800000091, 1.438544012000079 ], [ 127.540782097000033, 1.475653387000079 ], [ 127.531993035000028, 1.506903387000079 ], [ 127.519379102000016, 1.531927802000041 ], [ 127.525157097000033, 1.556626695000091 ], [ 127.556162957000083, 1.600043036000045 ], [ 127.546722852000016, 1.615423895000049 ], [ 127.543711785000028, 1.622992255000042 ], [ 127.542491082000083, 1.630438544000071 ], [ 127.546397332000083, 1.64288971600007 ], [ 127.555186394000089, 1.648423570000091 ], [ 127.564300977000016, 1.65102773600006 ], [ 127.569834832000083, 1.654689846000053 ], [ 127.573090040000011, 1.664007880000042 ], [ 127.574880405000044, 1.675279039000088 ], [ 127.57154381600003, 1.684800523000092 ], [ 127.559336785000028, 1.688869533000059 ], [ 127.555674675000091, 1.692531643000052 ], [ 127.559580925000091, 1.700832424000055 ], [ 127.569834832000083, 1.715521552000041 ], [ 127.580902540000011, 1.751776434000078 ], [ 127.629730665000011, 1.83539459800005 ], [ 127.654633009, 1.865668036000045 ], [ 127.67741946700005, 1.907456773000092 ], [ 127.689952019000089, 1.925279039000088 ], [ 127.746592644000089, 1.973130601000094 ], [ 127.769704623000052, 2.008693752000056 ], [ 127.861094597000033, 2.104437567000048 ], [ 127.892588738000086, 2.129055080000057 ], [ 127.899424675000091, 2.137884833000044 ], [ 127.904307488000086, 2.153998114000046 ], [ 127.91724694100003, 2.172105210000041 ], [ 127.93482506600003, 2.187648830000057 ], [ 127.954112175000091, 2.195868231000077 ], [ 127.973155144000089, 2.193101304000038 ], [ 127.988129102000016, 2.18431224200009 ], [ 128.003916863000086, 2.180609442000048 ], [ 128.047373894000089, 2.20384349200009 ], [ 128.056651238000086, 2.192450262000079 ], [ 128.056813998000052, 2.169907945000091 ], [ 128.050140821000014, 2.147528387000079 ], [ 128.029063347000033, 2.10968659100007 ], [ 128.016123894000089, 2.093003648000092 ], [ 128.004649285000028, 2.086004950000074 ], [ 127.999522332000083, 2.081691799000055 ], [ 127.994476759, 2.072088934000078 ], [ 127.987640821000014, 2.062445380000042 ], [ 127.964610222000033, 2.053615627000056 ], [ 127.958506707000083, 2.04242584800005 ], [ 127.954112175000091, 2.017157294000071 ], [ 127.943369988000086, 1.98078034100007 ], [ 127.934580925000091, 1.96320221600007 ], [ 127.923024936000047, 1.95571523600006 ], [ 127.904958530000044, 1.95343659100007 ], [ 127.889008009, 1.947333075000074 ], [ 127.875661655000044, 1.938788153000075 ], [ 127.864756707000083, 1.929022528000075 ], [ 127.856618686000047, 1.912502346000053 ], [ 127.84929446700005, 1.88353099200009 ], [ 127.846446160000028, 1.851467190000051 ], [ 127.851735873000052, 1.825384833000044 ], [ 127.875661655000044, 1.807928778000075 ], [ 127.94068444100003, 1.800034898000092 ], [ 127.954112175000091, 1.788153387000079 ], [ 127.963552280000044, 1.773586330000057 ], [ 128.005381707000083, 1.739406643000052 ], [ 128.01490319100003, 1.719224351000094 ], [ 128.005869988000086, 1.645493882000039 ], [ 128.002289259, 1.633734442000048 ], [ 127.995616082000083, 1.627346096000053 ], [ 128.001475457000083, 1.613836981000077 ], [ 128.008555535000028, 1.606390692000048 ], [ 128.015798373000052, 1.600775458000044 ], [ 128.022227410000028, 1.592596747000073 ], [ 128.027191602000016, 1.580552476000094 ], [ 128.035329623000052, 1.537990627000056 ], [ 128.032237175000091, 1.516994533000059 ], [ 128.015961134, 1.464178778000075 ], [ 128.01490319100003, 1.435532945000091 ], [ 128.016368035000028, 1.404038804000038 ], [ 128.01490319100003, 1.394598700000074 ], [ 128.010590040000011, 1.389349677000041 ], [ 128.004161004000025, 1.38540273600006 ], [ 127.998220248000052, 1.380072333000044 ], [ 127.995616082000083, 1.370754299000055 ], [ 127.999847852000016, 1.35228099200009 ], [ 128.015391472000033, 1.317287502000056 ], [ 128.01490319100003, 1.305243231000077 ], [ 128.006114129000025, 1.299872137000079 ], [ 127.982920769000089, 1.300360419000071 ], [ 127.97388756600003, 1.297756252000056 ], [ 127.969493035000028, 1.290432033000059 ], [ 127.958506707000083, 1.264593817000048 ], [ 127.950694207000083, 1.253729559000078 ], [ 127.931407097000033, 1.233791408000059 ], [ 127.919118686000047, 1.216050523000092 ], [ 127.899424675000091, 1.174872137000079 ], [ 127.895274285000028, 1.162990627000056 ], [ 127.894297722000033, 1.156642971000053 ], [ 127.890635613000086, 1.152411200000074 ], [ 127.878265821000014, 1.146958726000094 ], [ 127.867442254000025, 1.145697333000044 ], [ 127.843597852000016, 1.147772528000075 ], [ 127.833994988000086, 1.143866278000075 ], [ 127.754893425000091, 1.078599351000094 ], [ 127.671071811000047, 1.031805731000077 ], [ 127.637543165000011, 1.00071849200009 ], [ 127.624522332000083, 0.955145575000074 ], [ 127.627614780000044, 0.937404690000051 ], [ 127.635508660000028, 0.918931382000039 ], [ 127.645355665000011, 0.902411200000074 ], [ 127.655121290000011, 0.890041408000059 ], [ 127.670095248000052, 0.878973700000074 ], [ 127.705414259, 0.863714911000045 ], [ 127.720713738000086, 0.852728583000044 ], [ 127.725433790000011, 0.845404364000046 ], [ 127.735118035000028, 0.825913804000038 ], [ 127.74187259200005, 0.818019924000055 ], [ 127.750336134, 0.81476471600007 ], [ 127.759125196000014, 0.815659898000092 ], [ 127.768565300000091, 0.815375067000048 ], [ 127.795664910000028, 0.799058335000041 ], [ 127.815603061000047, 0.799058335000041 ], [ 127.835459832000083, 0.804632880000042 ], [ 127.851735873000052, 0.811753648000092 ], [ 127.872406446000014, 0.823960679000038 ], [ 127.906586134, 0.852484442000048 ], [ 127.923024936000047, 0.869818427000041 ], [ 127.927582227000016, 0.885158596000053 ], [ 127.932953321000014, 0.973211981000077 ], [ 127.932302280000044, 0.989935614000046 ], [ 127.936371290000011, 1.007310289000088 ], [ 127.993907097000033, 1.082993882000039 ], [ 128.01490319100003, 1.099798895000049 ], [ 128.035492384, 1.112127997000073 ], [ 128.054942254000025, 1.120428778000075 ], [ 128.075694207000083, 1.125067450000074 ], [ 128.144786004000025, 1.124660549000055 ], [ 128.160655144000089, 1.132147528000075 ], [ 128.179453972000033, 1.154445705000057 ], [ 128.192393425000091, 1.177435614000046 ], [ 128.196055535000028, 1.196437893000052 ], [ 128.190603061000047, 1.214056708000044 ], [ 128.176280144000089, 1.232977606000077 ], [ 128.156504754000025, 1.241766669000071 ], [ 128.113617384, 1.231838283000059 ], [ 128.097422722000033, 1.236314195000091 ], [ 128.092051629000025, 1.25726959800005 ], [ 128.10710696700005, 1.276434637000079 ], [ 128.142100457000083, 1.301459052000041 ], [ 128.154551629000025, 1.319281317000048 ], [ 128.174489780000044, 1.356634833000044 ], [ 128.18677819100003, 1.374172268000052 ], [ 128.204600457000083, 1.389960028000075 ], [ 128.247080925000091, 1.416489976000094 ], [ 128.26531009200005, 1.431830145000049 ], [ 128.282399936000047, 1.442613023000092 ], [ 128.326182488000086, 1.456610419000071 ], [ 128.344493035000028, 1.469142971000053 ], [ 128.350271030000044, 1.477932033000059 ], [ 128.357676629000025, 1.495062567000048 ], [ 128.36491946700005, 1.503241278000075 ], [ 128.37273196700005, 1.507473049000055 ], [ 128.393565300000091, 1.515041408000059 ], [ 128.417165561000047, 1.530585028000075 ], [ 128.437266472000033, 1.539292710000041 ], [ 128.459727410000028, 1.544989325000074 ], [ 128.481618686000047, 1.545396226000094 ], [ 128.488942905000044, 1.542181708000044 ], [ 128.493337436000047, 1.536932684000078 ], [ 128.498545769000089, 1.532294012000079 ], [ 128.50904381600003, 1.531195380000042 ], [ 128.519297722000033, 1.535589911000045 ], [ 128.527354363000086, 1.544256903000075 ], [ 128.539317254000025, 1.561916408000059 ], [ 128.553721550000091, 1.568426825000074 ], [ 128.604665561000047, 1.57689036700009 ], [ 128.647227410000028, 1.579006252000056 ], [ 128.719493035000028, 1.57062409100007 ], [ 128.724782748000052, 1.565985419000071 ], [ 128.727305535000028, 1.558579820000091 ], [ 128.728037957000083, 1.548529364000046 ], [ 128.724782748000052, 1.541978257000039 ], [ 128.700694207000083, 1.523667710000041 ], [ 128.687510613000086, 1.503241278000075 ], [ 128.683929884, 1.483343817000048 ], [ 128.686371290000011, 1.445217190000051 ], [ 128.68913821700005, 1.436753648000092 ], [ 128.695485873000052, 1.429754950000074 ], [ 128.714610222000033, 1.414618231000077 ], [ 128.726817254000025, 1.408758856000077 ], [ 128.740977410000028, 1.404852606000077 ], [ 128.743337436000047, 1.398382880000042 ], [ 128.741709832000083, 1.387152411000045 ], [ 128.74577884200005, 1.36945221600007 ], [ 128.748301629000025, 1.34406159100007 ], [ 128.746592644000089, 1.321275132000039 ], [ 128.738291863000086, 1.311468817000048 ], [ 128.721202019000089, 1.304185289000088 ], [ 128.715830925000091, 1.286525783000059 ], [ 128.714366082000083, 1.243150132000039 ], [ 128.70240319100003, 1.193752346000053 ], [ 128.700694207000083, 1.171128648000092 ], [ 128.708506707000083, 1.103461005000042 ], [ 128.706879102000016, 1.085516669000071 ], [ 128.703623894000089, 1.075018622000073 ], [ 128.701182488000086, 1.070868231000077 ], [ 128.686371290000011, 1.065008856000077 ], [ 128.676280144000089, 1.063706773000092 ], [ 128.662608269000089, 1.063788153000075 ], [ 128.650645379000025, 1.06195709800005 ], [ 128.645518425000091, 1.054754950000074 ], [ 128.563324415000011, 1.007391669000071 ], [ 128.548838738000086, 0.996039130000042 ], [ 128.542491082000083, 0.986517645000049 ], [ 128.533213738000086, 0.979437567000048 ], [ 128.474782748000052, 0.962591864000046 ], [ 128.452891472000033, 0.941229559000078 ], [ 128.439789259, 0.931789455000057 ], [ 128.423350457000083, 0.927883205000057 ], [ 128.40398196700005, 0.925482489000046 ], [ 128.315440300000091, 0.901556708000044 ], [ 128.30046634200005, 0.893744208000044 ], [ 128.292002800000091, 0.879868882000039 ], [ 128.289317254000025, 0.855861721000053 ], [ 128.296397332000083, 0.835760809000078 ], [ 128.298350457000083, 0.823431708000044 ], [ 128.292979363000086, 0.818019924000055 ], [ 128.280609571000014, 0.820461330000057 ], [ 128.25945071700005, 0.830633856000077 ], [ 128.248789910000028, 0.832220770000049 ], [ 128.231781446000014, 0.826076565000051 ], [ 128.220957879000025, 0.812689520000049 ], [ 128.215098504000025, 0.794623114000046 ], [ 128.213552280000044, 0.773911851000094 ], [ 128.219493035000028, 0.758368231000077 ], [ 128.234222852000016, 0.742621161000045 ], [ 128.268728061000047, 0.71556224200009 ], [ 128.295176629000025, 0.684637762000079 ], [ 128.313487175000091, 0.668158270000049 ], [ 128.34343509200005, 0.657782294000071 ], [ 128.364593946000014, 0.643622137000079 ], [ 128.375173373000052, 0.640448309000078 ], [ 128.408864780000044, 0.641546942000048 ], [ 128.436289910000028, 0.638861395000049 ], [ 128.442881707000083, 0.636419989000046 ], [ 128.450531446000014, 0.629584052000041 ], [ 128.466644727000016, 0.611517645000049 ], [ 128.476573113000086, 0.602728583000044 ], [ 128.485036655000044, 0.598863023000092 ], [ 128.520192905000044, 0.594427802000041 ], [ 128.539317254000025, 0.589097398000092 ], [ 128.570567254000025, 0.570257880000042 ], [ 128.585459832000083, 0.568508205000057 ], [ 128.600352410000028, 0.570868231000077 ], [ 128.618174675000091, 0.571600653000075 ], [ 128.629567905000044, 0.567450262000079 ], [ 128.641449415000011, 0.560980536000045 ], [ 128.654063347000033, 0.55805084800005 ], [ 128.666677280000044, 0.56476471600007 ], [ 128.680837436000047, 0.554510809000078 ], [ 128.684336785000028, 0.541693427000041 ], [ 128.680186394000089, 0.51007721600007 ], [ 128.677744988000086, 0.504828192000048 ], [ 128.673594597000033, 0.499579169000071 ], [ 128.671722852000016, 0.493719794000071 ], [ 128.681651238000086, 0.479315497000073 ], [ 128.684580925000091, 0.470689195000091 ], [ 128.686045769000089, 0.461371161000045 ], [ 128.685394727000016, 0.382025458000044 ], [ 128.690114780000044, 0.346991278000075 ], [ 128.703868035000028, 0.332017320000091 ], [ 128.762217644000089, 0.321437893000052 ], [ 128.770518425000091, 0.315904039000088 ], [ 128.824229363000086, 0.31085846600007 ], [ 128.850433790000011, 0.289862372000073 ], [ 128.879730665000011, 0.255845445000091 ], [ 128.900157097000033, 0.221991278000075 ], [ 128.899587436000047, 0.207790432000081 ], [ 128.861175977000016, 0.243557033000059 ], [ 128.847911004000025, 0.250067450000074 ], [ 128.834157748000052, 0.251532294000071 ], [ 128.700368686000047, 0.290961005000042 ], [ 128.680186394000089, 0.28351471600007 ], [ 128.656748894000089, 0.297023830000057 ], [ 128.628672722000033, 0.30805084800005 ], [ 128.597911004000025, 0.315619208000044 ], [ 128.566661004000025, 0.318304755000042 ], [ 128.537608269000089, 0.326849677000041 ], [ 128.513438347000033, 0.346828518000052 ], [ 128.474782748000052, 0.387193101000094 ], [ 128.461110873000052, 0.39484284100007 ], [ 128.449554884, 0.39679596600007 ], [ 128.41960696700005, 0.393459377000056 ], [ 128.402842644000089, 0.393500067000048 ], [ 128.376719597000033, 0.398871161000045 ], [ 128.361501498000052, 0.400213934000078 ], [ 128.29460696700005, 0.38898346600007 ], [ 128.262217644000089, 0.39134349200009 ], [ 128.234629754000025, 0.413967190000051 ], [ 128.21021569100003, 0.406805731000077 ], [ 128.187998894000089, 0.420843817000048 ], [ 128.168467644000089, 0.441880601000094 ], [ 128.15202884200005, 0.455511786000045 ], [ 128.070323113000086, 0.463364976000094 ], [ 128.05591881600003, 0.461737372000073 ], [ 128.031586134, 0.47134023600006 ], [ 127.978688998000052, 0.472560940000051 ], [ 127.96021569100003, 0.482814846000053 ], [ 127.94109134200005, 0.465806382000039 ], [ 127.923350457000083, 0.45343659100007 ], [ 127.910492384, 0.437689520000049 ], [ 127.896494988000086, 0.355658270000049 ], [ 127.882823113000086, 0.335923570000091 ], [ 127.878265821000014, 0.32453034100007 ], [ 127.880869988000086, 0.301743882000039 ], [ 127.906097852000016, 0.275376695000091 ], [ 127.912364129000025, 0.253485419000071 ], [ 127.921234571000014, 0.145575262000079 ], [ 127.91920006600003, 0.131333726000094 ], [ 127.911468946000014, 0.118882554000038 ], [ 127.89576256600003, 0.102362372000073 ], [ 127.887868686000047, 0.087469794000071 ], [ 127.884613477000016, 0.06704336100006 ], [ 127.885752800000091, 0.023504950000074 ], [ 127.892425977000016, -0.017185153999947 ], [ 127.903819207000083, -0.049493096999925 ], [ 127.933441602000016, -0.10678476399994 ], [ 127.954600457000083, -0.163506768999923 ], [ 127.973155144000089, -0.196872653999947 ], [ 127.976573113000086, -0.243340752999927 ], [ 127.980723504000025, -0.263848565999922 ], [ 127.991709832000083, -0.281426690999922 ], [ 128.017344597000033, -0.312595309999949 ], [ 128.022227410000028, -0.329034112999921 ], [ 128.024180535000028, -0.349786065999922 ], [ 128.035492384, -0.395928643999923 ], [ 128.042735222000033, -0.41529713299991 ], [ 128.084483269000089, -0.480889580999929 ], [ 128.096364780000044, -0.51726653399993 ], [ 128.125743035000028, -0.543633721999925 ], [ 128.138926629000025, -0.558689059999949 ], [ 128.22779381600003, -0.709567966999941 ], [ 128.281993035000028, -0.766208591999941 ], [ 128.337657097000033, -0.812595309999949 ], [ 128.347422722000033, -0.823418877999927 ], [ 128.368907097000033, -0.852715752999927 ], [ 128.385427280000044, -0.867120049999926 ], [ 128.420420769000089, -0.883070570999962 ], [ 128.435394727000016, -0.893324476999908 ], [ 128.44068444100003, -0.908786716999941 ], [ 128.43327884200005, -0.908786716999941 ], [ 128.406016472000033, -0.89226653399993 ], [ 128.370860222000033, -0.884860934999949 ], [ 128.284027540000011, -0.87818775799991 ], [ 128.266368035000028, -0.873711846999925 ], [ 128.250987175000091, -0.866794528999947 ], [ 128.238047722000033, -0.857028903999947 ], [ 128.228851759, -0.839939059999949 ], [ 128.235118035000028, -0.829034112999921 ], [ 128.248708530000044, -0.826104424999926 ], [ 128.261892123000052, -0.833103122999944 ], [ 128.268728061000047, -0.833103122999944 ], [ 128.249522332000083, -0.796482028999947 ], [ 128.203949415000011, -0.769463799999926 ], [ 128.048838738000086, -0.712823174999926 ], [ 128.032237175000091, -0.699314059999949 ], [ 128.020681186000047, -0.682061455999929 ], [ 127.968516472000033, -0.559502862999921 ], [ 127.912364129000025, -0.476739190999922 ], [ 127.885590040000011, -0.406019789999959 ], [ 127.86882571700005, -0.389336846999925 ], [ 127.851328972000033, -0.365492445999962 ], [ 127.840830925000091, -0.360039971999925 ], [ 127.832204623000052, -0.357517184999949 ], [ 127.777598504000025, -0.328057549999926 ], [ 127.74146569100003, -0.303399346999925 ], [ 127.724131707000083, -0.298597914999959 ], [ 127.708343946000014, -0.287041924999926 ], [ 127.688812696000014, -0.260186455999929 ], [ 127.672373894000089, -0.23015715899993 ], [ 127.666026238000086, -0.209242445999962 ] ] ], [ [ [ 128.686371290000011, 2.483954169000071 ], [ 128.694509311000047, 2.438869533000059 ], [ 128.681651238000086, 2.39907461100006 ], [ 128.660817905000044, 2.362290757000039 ], [ 128.645518425000091, 2.326239325000074 ], [ 128.642100457000083, 2.26117584800005 ], [ 128.58521569100003, 2.154852606000077 ], [ 128.573008660000028, 2.120591539000088 ], [ 128.566661004000025, 2.109930731000077 ], [ 128.509532097000033, 2.062445380000042 ], [ 128.490244988000086, 2.054266669000071 ], [ 128.34498131600003, 2.039943752000056 ], [ 128.330821160000028, 2.034857489000046 ], [ 128.317067905000044, 2.019720770000049 ], [ 128.289561394000089, 2.00141022300005 ], [ 128.269053582000083, 1.995347398000092 ], [ 128.275563998000052, 2.017157294000071 ], [ 128.288584832000083, 2.039618231000077 ], [ 128.283702019000089, 2.057603257000039 ], [ 128.251963738000086, 2.089422919000071 ], [ 128.246104363000086, 2.106146552000041 ], [ 128.248789910000028, 2.175441799000055 ], [ 128.24146569100003, 2.222479559000078 ], [ 128.23210696700005, 2.24681224200009 ], [ 128.217133009, 2.257391669000071 ], [ 128.197113477000016, 2.266180731000077 ], [ 128.207774285000028, 2.286525783000059 ], [ 128.248789910000028, 2.326239325000074 ], [ 128.27662194100003, 2.368719794000071 ], [ 128.321136915000011, 2.458644924000055 ], [ 128.358083530000044, 2.497544664000088 ], [ 128.400726759, 2.518377997000073 ], [ 128.419444207000083, 2.532619533000059 ], [ 128.430023634, 2.567572333000044 ], [ 128.437673373000052, 2.575669664000088 ], [ 128.457367384, 2.590073960000041 ], [ 128.466563347000033, 2.594305731000077 ], [ 128.474782748000052, 2.590765692000048 ], [ 128.488454623000052, 2.57953522300005 ], [ 128.515147332000083, 2.573391018000052 ], [ 128.525157097000033, 2.582424221000053 ], [ 128.531423373000052, 2.601141669000071 ], [ 128.545909050000091, 2.623846747000073 ], [ 128.566416863000086, 2.633612372000073 ], [ 128.58326256600003, 2.625189520000049 ], [ 128.596039259, 2.608587958000044 ], [ 128.620127800000091, 2.560451565000051 ], [ 128.630381707000083, 2.544623114000046 ], [ 128.642100457000083, 2.537909247000073 ], [ 128.686371290000011, 2.483954169000071 ] ] ], [ [ [ 126.394867384, 1.339341539000088 ], [ 126.40162194100003, 1.332017320000091 ], [ 126.390391472000033, 1.310248114000046 ], [ 126.390798373000052, 1.304022528000075 ], [ 126.385427280000044, 1.286281643000052 ], [ 126.380869988000086, 1.283392645000049 ], [ 126.35906009200005, 1.316107489000046 ], [ 126.35084069100003, 1.318508205000057 ], [ 126.347178582000083, 1.323309637000079 ], [ 126.352386915000011, 1.335882880000042 ], [ 126.361664259, 1.344712632000039 ], [ 126.369639519000089, 1.348822333000044 ], [ 126.377696160000028, 1.347479559000078 ], [ 126.384938998000052, 1.342189846000053 ], [ 126.394867384, 1.339341539000088 ] ] ], [ [ [ 128.367360873000052, -0.988376559999949 ], [ 128.403493686000047, -0.995293877999927 ], [ 128.411468946000014, -1.009535414999959 ], [ 128.406748894000089, -1.025974216999941 ], [ 128.392751498000052, -1.035414320999962 ], [ 128.372894727000016, -1.037692966999941 ], [ 128.365082227000016, -1.03639088299991 ], [ 128.368907097000033, -1.034112237999921 ], [ 128.361664259, -1.033623955999929 ], [ 128.343760613000086, -1.029961846999925 ], [ 128.330332879000025, -1.020196221999925 ], [ 128.326833530000044, -1.006605726999908 ], [ 128.329600457000083, -0.991631768999923 ], [ 128.329600457000083, -0.978692315999922 ], [ 128.305430535000028, -0.96217213299991 ], [ 128.30046634200005, -0.955498955999929 ], [ 128.301524285000028, -0.951104424999926 ], [ 128.306162957000083, -0.943291924999926 ], [ 128.314219597000033, -0.939385674999926 ], [ 128.32349694100003, -0.941338799999926 ], [ 128.330902540000011, -0.949151299999926 ], [ 128.335459832000083, -0.960870049999926 ], [ 128.340830925000091, -0.96998463299991 ], [ 128.358083530000044, -0.979668877999927 ], [ 128.367360873000052, -0.988376559999949 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-KR", "NAME_1": "Kepulauan Riau" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.479991082000026, -0.271254164999959 ], [ 104.487803582000026, -0.274102471999925 ], [ 104.493662957000026, -0.281182549999926 ], [ 104.497080925000034, -0.289971612999921 ], [ 104.497080925000034, -0.298597914999959 ], [ 104.492523634000065, -0.308770440999922 ], [ 104.486501498000052, -0.310723565999922 ], [ 104.478851759000065, -0.309991143999923 ], [ 104.469574415000068, -0.312269789999959 ], [ 104.456228061000047, -0.318617445999962 ], [ 104.446136915000068, -0.320082289999959 ], [ 104.418223504000082, -0.318536065999922 ], [ 104.406504754000082, -0.31178150799991 ], [ 104.400889519000032, -0.297295830999929 ], [ 104.404958530000044, -0.283379815999922 ], [ 104.42123457100007, -0.278090101999908 ], [ 104.479991082000026, -0.271254164999959 ] ] ], [ [ [ 103.506358269000032, 0.70189036700009 ], [ 103.517425977000073, 0.698431708000044 ], [ 103.521820509000065, 0.689846096000053 ], [ 103.521332227000073, 0.678656317000048 ], [ 103.517914259000065, 0.667629299000055 ], [ 103.506114129000082, 0.640773830000057 ], [ 103.497894727000073, 0.627020575000074 ], [ 103.489024285000028, 0.619940497000073 ], [ 103.47201582100007, 0.622992255000042 ], [ 103.469248894000032, 0.637396552000041 ], [ 103.47388756600003, 0.653469143000052 ], [ 103.479014519000032, 0.660956122000073 ], [ 103.485850457000026, 0.667385158000059 ], [ 103.499522332000026, 0.695502020000049 ], [ 103.506358269000032, 0.70189036700009 ] ] ], [ [ [ 104.564626498000052, 0.798163153000075 ], [ 104.605642123000052, 0.793890692000048 ], [ 104.621592644000032, 0.78742096600007 ], [ 104.62045332100007, 0.777044989000046 ], [ 104.613536004000082, 0.765855210000041 ], [ 104.601898634000065, 0.764349677000041 ], [ 104.572032097000033, 0.770819403000075 ], [ 104.55396569100003, 0.770697333000044 ], [ 104.541026238000029, 0.766587632000039 ], [ 104.511241082000026, 0.75031159100007 ], [ 104.511892123000052, 0.77374909100007 ], [ 104.523448113000029, 0.788397528000075 ], [ 104.54232832100007, 0.795884507000039 ], [ 104.564626498000052, 0.798163153000075 ] ] ], [ [ [ 103.667735222000033, 0.839667059000078 ], [ 103.702647332000026, 0.814154364000046 ], [ 103.71810957100007, 0.798081773000092 ], [ 103.727305535000028, 0.779852606000077 ], [ 103.724864129000082, 0.766506252000056 ], [ 103.713389519000032, 0.76243724200009 ], [ 103.700938347000033, 0.765692450000074 ], [ 103.695078972000033, 0.773911851000094 ], [ 103.68881269600007, 0.79165273600006 ], [ 103.666514519000032, 0.823635158000059 ], [ 103.667735222000033, 0.839667059000078 ] ] ], [ [ [ 103.46216881600003, 0.918931382000039 ], [ 103.472666863000029, 0.90884023600006 ], [ 103.479502800000034, 0.893622137000079 ], [ 103.479340040000068, 0.878851630000042 ], [ 103.469004754000082, 0.869614976000094 ], [ 103.45826256600003, 0.869696356000077 ], [ 103.44467207100007, 0.873602606000077 ], [ 103.43295332100007, 0.880682684000078 ], [ 103.428070509000065, 0.890041408000059 ], [ 103.42156009200005, 0.896714585000041 ], [ 103.410411004000082, 0.904730536000045 ], [ 103.407074415000068, 0.911444403000075 ], [ 103.453461134000065, 0.92055898600006 ], [ 103.46216881600003, 0.918931382000039 ] ] ], [ [ [ 103.518728061000047, 0.818426825000074 ], [ 103.523203972000033, 0.807928778000075 ], [ 103.524424675000034, 0.798488674000055 ], [ 103.523448113000029, 0.777818101000094 ], [ 103.490489129000082, 0.821275132000039 ], [ 103.47592207100007, 0.832220770000049 ], [ 103.440277540000068, 0.844224351000094 ], [ 103.425791863000029, 0.854396877000056 ], [ 103.42123457100007, 0.873236395000049 ], [ 103.430837436000047, 0.867661851000094 ], [ 103.488536004000082, 0.845445054000038 ], [ 103.49732506600003, 0.840236721000053 ], [ 103.50554446700005, 0.833970445000091 ], [ 103.512705925000034, 0.82680898600006 ], [ 103.518728061000047, 0.818426825000074 ] ] ], [ [ [ 103.818614129000082, 0.886216539000088 ], [ 103.863291863000029, 0.876898505000042 ], [ 103.898203972000033, 0.853338934000078 ], [ 103.924164259000065, 0.822455145000049 ], [ 103.942149285000028, 0.79132721600007 ], [ 103.941416863000029, 0.77570221600007 ], [ 103.93287194100003, 0.770331122000073 ], [ 103.921397332000026, 0.772772528000075 ], [ 103.91138756600003, 0.780747789000088 ], [ 103.895030144000032, 0.810248114000046 ], [ 103.887461785000028, 0.818019924000055 ], [ 103.851735873000052, 0.835353908000059 ], [ 103.845957879000082, 0.842474677000041 ], [ 103.842295769000032, 0.850653387000079 ], [ 103.818614129000082, 0.880072333000044 ], [ 103.818614129000082, 0.886216539000088 ] ] ], [ [ [ 103.489024285000028, 0.777044989000046 ], [ 103.501963738000029, 0.763373114000046 ], [ 103.506846550000034, 0.755438544000071 ], [ 103.510020379000082, 0.742865302000041 ], [ 103.480316602000073, 0.685248114000046 ], [ 103.459483269000032, 0.658107815000051 ], [ 103.434336785000028, 0.647284247000073 ], [ 103.41570071700005, 0.657375393000052 ], [ 103.403086785000028, 0.678208726000094 ], [ 103.393728061000047, 0.698797919000071 ], [ 103.383799675000034, 0.708156643000052 ], [ 103.345550977000073, 0.763373114000046 ], [ 103.340505405000044, 0.784002997000073 ], [ 103.338715040000068, 0.804917710000041 ], [ 103.34115644600007, 0.817368882000039 ], [ 103.350352410000028, 0.839178778000075 ], [ 103.357432488000029, 0.872463283000059 ], [ 103.369883660000028, 0.886053778000075 ], [ 103.385508660000028, 0.888861395000049 ], [ 103.400889519000032, 0.880072333000044 ], [ 103.410004102000073, 0.864569403000075 ], [ 103.417491082000026, 0.846502997000073 ], [ 103.427582227000073, 0.831610419000071 ], [ 103.459727410000028, 0.820379950000074 ], [ 103.470469597000033, 0.807928778000075 ], [ 103.489024285000028, 0.777044989000046 ] ] ], [ [ [ 103.801768425000034, 0.852728583000044 ], [ 103.817067905000044, 0.841701565000051 ], [ 103.831065300000034, 0.816351630000042 ], [ 103.83952884200005, 0.788397528000075 ], [ 103.837657097000033, 0.769517320000091 ], [ 103.832286004000082, 0.765366929000038 ], [ 103.826670769000032, 0.765692450000074 ], [ 103.821055535000028, 0.768947658000059 ], [ 103.801280144000032, 0.784247137000079 ], [ 103.763926629000082, 0.804917710000041 ], [ 103.746348504000082, 0.822739976000094 ], [ 103.730479363000029, 0.847560940000051 ], [ 103.72624759200005, 0.873236395000049 ], [ 103.74341881600003, 0.893744208000044 ], [ 103.750254754000082, 0.888861395000049 ], [ 103.767751498000052, 0.884344794000071 ], [ 103.777598504000082, 0.880072333000044 ], [ 103.801768425000034, 0.852728583000044 ] ] ], [ [ [ 103.942149285000028, 0.996079820000091 ], [ 103.951996290000068, 0.987941799000055 ], [ 103.961436394000032, 0.974798895000049 ], [ 103.967295769000032, 0.960109768000052 ], [ 103.966644727000073, 0.947211005000042 ], [ 103.958832227000073, 0.93976471600007 ], [ 103.946299675000034, 0.935614325000074 ], [ 103.932790561000047, 0.934027411000045 ], [ 103.921641472000033, 0.934637762000079 ], [ 103.91138756600003, 0.937933661000045 ], [ 103.856618686000047, 0.968410549000055 ], [ 103.846446160000028, 0.977484442000048 ], [ 103.839691602000073, 0.989935614000046 ], [ 103.838877800000034, 1.002997137000079 ], [ 103.844737175000034, 1.012681382000039 ], [ 103.856618686000047, 1.01439036700009 ], [ 103.873789910000028, 1.003607489000046 ], [ 103.873708530000044, 1.011908270000049 ], [ 103.880056186000047, 1.031480210000041 ], [ 103.892832879000082, 1.014349677000041 ], [ 103.909027540000068, 1.005926825000074 ], [ 103.942149285000028, 0.996079820000091 ] ] ], [ [ [ 104.798594597000033, 1.031480210000041 ], [ 104.811045769000032, 1.025620835000041 ], [ 104.830088738000029, 1.023382880000042 ], [ 104.843516472000033, 1.01821523600006 ], [ 104.839040561000047, 1.003607489000046 ], [ 104.845550977000073, 0.997788804000038 ], [ 104.849945509000065, 0.991197007000039 ], [ 104.852305535000028, 0.983710028000075 ], [ 104.85279381600003, 0.975490627000056 ], [ 104.849619988000029, 0.968898830000057 ], [ 104.84538821700005, 0.963324286000045 ], [ 104.839691602000073, 0.958807684000078 ], [ 104.832774285000028, 0.955145575000074 ], [ 104.828298373000052, 0.964992580000057 ], [ 104.826345248000052, 0.976629950000074 ], [ 104.825938347000033, 0.992987372000073 ], [ 104.821787957000026, 0.998724677000041 ], [ 104.791188998000052, 1.02407461100006 ], [ 104.798594597000033, 1.031480210000041 ] ] ], [ [ [ 107.562022332000026, 1.037176825000074 ], [ 107.585948113000029, 1.026068427000041 ], [ 107.59888756600003, 1.017157294000071 ], [ 107.601573113000029, 1.009833075000074 ], [ 107.57545006600003, 0.980169989000046 ], [ 107.559580925000034, 0.97016022300005 ], [ 107.547129754000025, 0.976263739000046 ], [ 107.547618035000028, 0.982123114000046 ], [ 107.553396030000044, 0.987453518000052 ], [ 107.559092644000032, 0.993963934000078 ], [ 107.559418165000068, 1.003607489000046 ], [ 107.55404707100007, 1.006903387000079 ], [ 107.545258009000065, 1.006252346000053 ], [ 107.535980665000068, 1.007879950000074 ], [ 107.529551629000025, 1.018052476000094 ], [ 107.531260613000029, 1.027899481000077 ], [ 107.539073113000029, 1.034328518000052 ], [ 107.55014082100007, 1.037502346000053 ], [ 107.562022332000026, 1.037176825000074 ] ] ], [ [ [ 103.443125847000033, 1.012762762000079 ], [ 103.444834832000026, 1.00617096600007 ], [ 103.444834832000026, 1.00031159100007 ], [ 103.442230665000068, 0.995266018000052 ], [ 103.437022332000026, 0.991400458000044 ], [ 103.423594597000033, 0.990179755000042 ], [ 103.40756269600007, 0.994940497000073 ], [ 103.380381707000026, 1.009833075000074 ], [ 103.357676629000082, 1.004461981000077 ], [ 103.340830925000034, 1.019517320000091 ], [ 103.314789259000065, 1.061590887000079 ], [ 103.315603061000047, 1.073187567000048 ], [ 103.32349694100003, 1.092759507000039 ], [ 103.333832227000073, 1.111395575000074 ], [ 103.342133009000065, 1.119696356000077 ], [ 103.347911004000082, 1.121771552000041 ], [ 103.36646569100003, 1.13117096600007 ], [ 103.376719597000033, 1.133286851000094 ], [ 103.389821811000047, 1.130275783000059 ], [ 103.391368035000028, 1.122463283000059 ], [ 103.388194207000026, 1.111721096000053 ], [ 103.387217644000032, 1.099798895000049 ], [ 103.393077019000032, 1.076076565000051 ], [ 103.39779707100007, 1.064154364000046 ], [ 103.40398196700005, 1.054836330000057 ], [ 103.409678582000026, 1.051174221000053 ], [ 103.422699415000068, 1.049709377000056 ], [ 103.428396030000044, 1.04718659100007 ], [ 103.431407097000033, 1.042710679000038 ], [ 103.431651238000029, 1.038153387000079 ], [ 103.431162957000026, 1.033392645000049 ], [ 103.431895379000082, 1.028387762000079 ], [ 103.434255405000044, 1.024237372000073 ], [ 103.440603061000047, 1.017157294000071 ], [ 103.443125847000033, 1.012762762000079 ] ] ], [ [ [ 104.146332227000073, 1.16046784100007 ], [ 104.152354363000029, 1.140041408000059 ], [ 104.15170332100007, 1.11945221600007 ], [ 104.131114129000082, 1.048773505000042 ], [ 104.123220248000052, 1.049627997000073 ], [ 104.105967644000032, 1.065008856000077 ], [ 104.104177280000044, 1.057766018000052 ], [ 104.104177280000044, 1.051662502000056 ], [ 104.10670006600003, 1.045477606000077 ], [ 104.112803582000026, 1.03774648600006 ], [ 104.104502800000034, 1.033270575000074 ], [ 104.100596550000034, 1.027044989000046 ], [ 104.097829623000052, 1.019110419000071 ], [ 104.092295769000032, 1.009833075000074 ], [ 104.091563347000033, 1.005560614000046 ], [ 104.093272332000026, 0.993638414000088 ], [ 104.092295769000032, 0.989935614000046 ], [ 104.087901238000029, 0.988959052000041 ], [ 104.076426629000082, 0.990464585000041 ], [ 104.071787957000026, 0.989935614000046 ], [ 104.049164259000065, 0.984198309000078 ], [ 104.031748894000032, 0.989447333000044 ], [ 103.996104363000029, 1.009833075000074 ], [ 103.98796634200005, 1.01048411700009 ], [ 103.966644727000073, 1.00812409100007 ], [ 103.955821160000028, 1.009833075000074 ], [ 103.95053144600007, 1.014105536000045 ], [ 103.918223504000082, 1.051336981000077 ], [ 103.906748894000032, 1.071682033000059 ], [ 103.902598504000082, 1.090521552000041 ], [ 103.914073113000029, 1.099798895000049 ], [ 103.923838738000029, 1.096136786000045 ], [ 103.938161655000044, 1.079575914000088 ], [ 103.948985222000033, 1.078599351000094 ], [ 103.956228061000047, 1.084865627000056 ], [ 103.955332879000082, 1.093573309000078 ], [ 103.951345248000052, 1.103583075000074 ], [ 103.94654381600003, 1.124701239000046 ], [ 103.943207227000073, 1.130926825000074 ], [ 103.944509311000047, 1.135239976000094 ], [ 103.955821160000028, 1.140773830000057 ], [ 103.967051629000082, 1.141669012000079 ], [ 103.98764082100007, 1.13422272300005 ], [ 103.996104363000029, 1.133286851000094 ], [ 104.01107832100007, 1.144720770000049 ], [ 104.01921634200005, 1.178859768000052 ], [ 104.03093509200005, 1.187892971000053 ], [ 104.041351759000065, 1.181382554000038 ], [ 104.070811394000032, 1.14594147300005 ], [ 104.085459832000026, 1.133286851000094 ], [ 104.091644727000073, 1.145493882000039 ], [ 104.091563347000033, 1.158433335000041 ], [ 104.086599155000044, 1.170965887000079 ], [ 104.078623894000032, 1.181708075000074 ], [ 104.090586785000028, 1.18781159100007 ], [ 104.10320071700005, 1.189520575000074 ], [ 104.115733269000032, 1.187241929000038 ], [ 104.127696160000028, 1.181301174000055 ], [ 104.138194207000026, 1.172023830000057 ], [ 104.142751498000052, 1.166489976000094 ], [ 104.146332227000073, 1.16046784100007 ] ] ], [ [ [ 104.654551629000082, 1.096380927000041 ], [ 104.656423373000052, 1.08038971600007 ], [ 104.667491082000026, 1.030585028000075 ], [ 104.65162194100003, 1.009019273000092 ], [ 104.647146030000044, 0.996893622000073 ], [ 104.65398196700005, 0.97687409100007 ], [ 104.654795769000032, 0.947699286000045 ], [ 104.657725457000026, 0.941473700000074 ], [ 104.661631707000026, 0.937241929000038 ], [ 104.658702019000032, 0.927883205000057 ], [ 104.649912957000026, 0.918443101000094 ], [ 104.636973504000082, 0.914211330000057 ], [ 104.623545769000032, 0.912176825000074 ], [ 104.616384311000047, 0.906195380000042 ], [ 104.613536004000082, 0.896429755000042 ], [ 104.613047722000033, 0.88312409100007 ], [ 104.599864129000082, 0.835028387000079 ], [ 104.567067905000044, 0.82953522300005 ], [ 104.483409050000034, 0.858954169000071 ], [ 104.489268425000034, 0.875148830000057 ], [ 104.48373457100007, 0.89329661700009 ], [ 104.469493035000028, 0.908107815000051 ], [ 104.449229363000029, 0.914211330000057 ], [ 104.449229363000029, 0.921616929000038 ], [ 104.473399285000028, 0.920599677000041 ], [ 104.484629754000082, 0.92218659100007 ], [ 104.490244988000029, 0.927883205000057 ], [ 104.486582879000082, 0.937079169000071 ], [ 104.474864129000082, 0.94009023600006 ], [ 104.449229363000029, 0.941473700000074 ], [ 104.42896569100003, 0.948919989000046 ], [ 104.421071811000047, 0.956610419000071 ], [ 104.42123457100007, 0.968817450000074 ], [ 104.427582227000073, 0.974798895000049 ], [ 104.462738477000073, 0.983099677000041 ], [ 104.458018425000034, 0.993719794000071 ], [ 104.457367384000065, 1.001939195000091 ], [ 104.462738477000073, 1.017279364000046 ], [ 104.468272332000026, 1.018052476000094 ], [ 104.479665561000047, 1.025336005000042 ], [ 104.485199415000068, 1.033677476000094 ], [ 104.472992384000065, 1.03774648600006 ], [ 104.467784050000034, 1.040920315000051 ], [ 104.457774285000028, 1.05499909100007 ], [ 104.45248457100007, 1.058172919000071 ], [ 104.43873131600003, 1.056870835000041 ], [ 104.429942254000082, 1.053615627000056 ], [ 104.386241082000026, 1.029852606000077 ], [ 104.371429884000065, 1.025620835000041 ], [ 104.349457227000073, 1.02407461100006 ], [ 104.340586785000028, 1.020900783000059 ], [ 104.327159050000034, 1.006781317000048 ], [ 104.315440300000034, 1.003607489000046 ], [ 104.281504754000082, 1.002142645000049 ], [ 104.271006707000026, 1.003607489000046 ], [ 104.245616082000026, 1.017279364000046 ], [ 104.241384311000047, 1.035549221000053 ], [ 104.242442254000082, 1.055894273000092 ], [ 104.232758009000065, 1.075588283000059 ], [ 104.231944207000026, 1.093329169000071 ], [ 104.256358269000032, 1.108872789000088 ], [ 104.305186394000032, 1.126450914000088 ], [ 104.316579623000052, 1.132879950000074 ], [ 104.322276238000029, 1.138657945000091 ], [ 104.332530144000032, 1.154445705000057 ], [ 104.336761915000068, 1.165025132000039 ], [ 104.33725019600007, 1.173732815000051 ], [ 104.341319207000026, 1.179592190000051 ], [ 104.356293165000068, 1.181708075000074 ], [ 104.378428582000026, 1.17649974200009 ], [ 104.389333530000044, 1.178656317000048 ], [ 104.39389082100007, 1.191595770000049 ], [ 104.39966881600003, 1.202622789000088 ], [ 104.412608269000032, 1.20062897300005 ], [ 104.435557488000029, 1.187892971000053 ], [ 104.476084832000026, 1.178290106000077 ], [ 104.508148634000065, 1.179510809000078 ], [ 104.538096550000034, 1.190252997000073 ], [ 104.572032097000033, 1.209051825000074 ], [ 104.56804446700005, 1.22016022300005 ], [ 104.575694207000026, 1.225409247000073 ], [ 104.586924675000034, 1.219916083000044 ], [ 104.592539910000028, 1.198797919000071 ], [ 104.586924675000034, 1.162054755000042 ], [ 104.588226759000065, 1.144598700000074 ], [ 104.599375847000033, 1.126450914000088 ], [ 104.647146030000044, 1.104966539000088 ], [ 104.654551629000082, 1.096380927000041 ] ] ], [ [ [ 109.10865319100003, 2.531683661000045 ], [ 109.113942905000044, 2.523179429000038 ], [ 109.110850457000026, 2.516058661000045 ], [ 109.09506269600007, 2.504380601000094 ], [ 109.078461134000065, 2.496039130000042 ], [ 109.052256707000026, 2.487616278000075 ], [ 109.02670332100007, 2.485825914000088 ], [ 109.012461785000028, 2.497544664000088 ], [ 109.014821811000047, 2.511053778000075 ], [ 109.022471550000034, 2.520005601000094 ], [ 109.023285352000073, 2.527818101000094 ], [ 109.005625847000033, 2.537909247000073 ], [ 109.000824415000068, 2.53742096600007 ], [ 108.990733269000032, 2.529730536000045 ], [ 108.98560631600003, 2.527736721000053 ], [ 108.97982832100007, 2.529120184000078 ], [ 108.974375847000033, 2.532904364000046 ], [ 108.97006269600007, 2.538153387000079 ], [ 108.96810957100007, 2.543646552000041 ], [ 108.97193444100003, 2.555121161000045 ], [ 108.982758009000065, 2.560614325000074 ], [ 108.996429884000065, 2.561753648000092 ], [ 109.008311394000032, 2.560126044000071 ], [ 109.019786004000025, 2.555121161000045 ], [ 109.042002800000034, 2.541978257000039 ], [ 109.053477410000028, 2.537909247000073 ], [ 109.096853061000047, 2.537176825000074 ], [ 109.10865319100003, 2.531683661000045 ] ] ], [ [ [ 106.243174675000034, 2.76048411700009 ], [ 106.24341881600003, 2.745428778000075 ], [ 106.24154707100007, 2.738023179000038 ], [ 106.237803582000026, 2.732855536000045 ], [ 106.232432488000029, 2.741766669000071 ], [ 106.219493035000028, 2.758368231000077 ], [ 106.212657097000033, 2.781480210000041 ], [ 106.20435631600003, 2.796128648000092 ], [ 106.198985222000033, 2.809515692000048 ], [ 106.203298373000052, 2.81907786700009 ], [ 106.216319207000026, 2.822455145000049 ], [ 106.22624759200005, 2.81704336100006 ], [ 106.233164910000028, 2.806301174000055 ], [ 106.237803582000026, 2.793768622000073 ], [ 106.243174675000034, 2.76048411700009 ] ] ], [ [ [ 108.842458530000044, 2.973618882000039 ], [ 108.855723504000025, 3.00336334800005 ], [ 108.881358269000032, 3.002997137000079 ], [ 108.898610873000052, 2.982855536000045 ], [ 108.886241082000026, 2.953111070000091 ], [ 108.88412519600007, 2.941636460000041 ], [ 108.89226321700005, 2.903876044000071 ], [ 108.889659050000034, 2.888006903000075 ], [ 108.883555535000028, 2.883978583000044 ], [ 108.862803582000026, 2.877142645000049 ], [ 108.855479363000029, 2.87368398600006 ], [ 108.851735873000052, 2.867661851000094 ], [ 108.845876498000052, 2.850653387000079 ], [ 108.842458530000044, 2.846380927000041 ], [ 108.829600457000026, 2.847601630000042 ], [ 108.818125847000033, 2.855902411000045 ], [ 108.80014082100007, 2.87368398600006 ], [ 108.782969597000033, 2.88226959800005 ], [ 108.775889519000032, 2.888006903000075 ], [ 108.775157097000033, 2.895086981000077 ], [ 108.775889519000032, 2.89594147300005 ], [ 108.796885613000029, 2.90766022300005 ], [ 108.814300977000073, 2.921454169000071 ], [ 108.829274936000047, 2.93626536700009 ], [ 108.836273634000065, 2.94757721600007 ], [ 108.840830925000034, 2.960109768000052 ], [ 108.842458530000044, 2.973618882000039 ] ] ], [ [ [ 107.807139519000032, 3.014878648000092 ], [ 107.813243035000028, 2.994940497000073 ], [ 107.811208530000044, 2.986802476000094 ], [ 107.768239780000044, 2.979071356000077 ], [ 107.756114129000025, 2.978461005000042 ], [ 107.745127800000034, 2.983547268000052 ], [ 107.75123131600003, 3.01203034100007 ], [ 107.772959832000026, 3.025295315000051 ], [ 107.79623457100007, 3.025539455000057 ], [ 107.807139519000032, 3.014878648000092 ] ] ], [ [ [ 105.80201256600003, 2.997259833000044 ], [ 105.813487175000034, 2.996039130000042 ], [ 105.844004754000025, 2.988470770000049 ], [ 105.853282097000033, 2.983547268000052 ], [ 105.84693444100003, 2.969916083000044 ], [ 105.839610222000033, 2.969916083000044 ], [ 105.839610222000033, 2.977362372000073 ], [ 105.83334394600007, 2.977362372000073 ], [ 105.81185957100007, 2.904486395000049 ], [ 105.80201256600003, 2.898179429000038 ], [ 105.788910352000073, 2.907171942000048 ], [ 105.781423373000052, 2.904974677000041 ], [ 105.775563998000052, 2.898504950000074 ], [ 105.72974694100003, 2.88117096600007 ], [ 105.73406009200005, 2.873277085000041 ], [ 105.738942905000044, 2.869289455000057 ], [ 105.74537194100003, 2.867743231000077 ], [ 105.754161004000025, 2.86749909100007 ], [ 105.762217644000032, 2.864203192000048 ], [ 105.765147332000026, 2.856919664000088 ], [ 105.764414910000028, 2.849676825000074 ], [ 105.76099694100003, 2.846380927000041 ], [ 105.748871290000068, 2.844549872000073 ], [ 105.736582879000025, 2.84125397300005 ], [ 105.724457227000073, 2.839667059000078 ], [ 105.712657097000033, 2.843166408000059 ], [ 105.704844597000033, 2.850978908000059 ], [ 105.699473504000025, 2.86163971600007 ], [ 105.696462436000047, 2.873480536000045 ], [ 105.695567254000025, 2.884588934000078 ], [ 105.697601759000065, 2.896470445000091 ], [ 105.706879102000073, 2.920803127000056 ], [ 105.711680535000028, 2.94367096600007 ], [ 105.722178582000026, 2.969224351000094 ], [ 105.723480665000068, 2.977362372000073 ], [ 105.715342644000032, 2.98899974200009 ], [ 105.691172722000033, 3.002346096000053 ], [ 105.681895379000025, 3.011460679000038 ], [ 105.691905144000032, 3.020493882000039 ], [ 105.695567254000025, 3.034165757000039 ], [ 105.694102410000028, 3.048570054000038 ], [ 105.68873131600003, 3.059963283000059 ], [ 105.702891472000033, 3.066107489000046 ], [ 105.71029707100007, 3.048488674000055 ], [ 105.712901238000029, 3.04564036700009 ], [ 105.715179884000065, 3.043890692000048 ], [ 105.732188347000033, 3.035386460000041 ], [ 105.737071160000028, 3.03196849200009 ], [ 105.739431186000047, 3.015122789000088 ], [ 105.736827019000032, 2.999579169000071 ], [ 105.738536004000025, 2.988104559000078 ], [ 105.754161004000025, 2.983547268000052 ], [ 105.762380405000044, 2.982326565000051 ], [ 105.778168165000068, 2.977606512000079 ], [ 105.784922722000033, 2.977362372000073 ], [ 105.79029381600003, 2.981594143000052 ], [ 105.79224694100003, 2.988267320000091 ], [ 105.79460696700005, 2.994533596000053 ], [ 105.80201256600003, 2.997259833000044 ] ] ], [ [ [ 106.285166863000029, 3.179103908000059 ], [ 106.285166863000029, 3.087225653000075 ], [ 106.279063347000033, 3.087225653000075 ], [ 106.257823113000029, 3.11391836100006 ], [ 106.24187259200005, 3.107855536000045 ], [ 106.233897332000026, 3.115220445000091 ], [ 106.226084832000026, 3.125555731000077 ], [ 106.210703972000033, 3.128159898000092 ], [ 106.215098504000025, 3.134833075000074 ], [ 106.21607506600003, 3.140814520000049 ], [ 106.215993686000047, 3.147162177000041 ], [ 106.216970248000052, 3.15493398600006 ], [ 106.205821160000028, 3.20571523600006 ], [ 106.207774285000028, 3.22532786700009 ], [ 106.223806186000047, 3.223781643000052 ], [ 106.238536004000025, 3.226507880000042 ], [ 106.25912519600007, 3.214748440000051 ], [ 106.277354363000029, 3.196234442000048 ], [ 106.285166863000029, 3.179103908000059 ] ] ], [ [ [ 106.27084394600007, 3.360988674000055 ], [ 106.292002800000034, 3.368150132000039 ], [ 106.297373894000032, 3.358303127000056 ], [ 106.292002800000034, 3.316555080000057 ], [ 106.293955925000034, 3.281073309000078 ], [ 106.292002800000034, 3.271551825000074 ], [ 106.285655144000032, 3.263861395000049 ], [ 106.281586134000065, 3.267523505000042 ], [ 106.279633009000065, 3.27765534100007 ], [ 106.279063347000033, 3.288967190000051 ], [ 106.27670332100007, 3.292385158000059 ], [ 106.271739129000025, 3.293524481000077 ], [ 106.26685631600003, 3.292385158000059 ], [ 106.264659050000034, 3.288967190000051 ], [ 106.265472852000073, 3.281805731000077 ], [ 106.275157097000033, 3.25421784100007 ], [ 106.280284050000034, 3.24750397300005 ], [ 106.28288821700005, 3.24087148600006 ], [ 106.279063347000033, 3.230617580000057 ], [ 106.230479363000029, 3.257961330000057 ], [ 106.235362175000034, 3.262640692000048 ], [ 106.236827019000032, 3.268540757000039 ], [ 106.236827019000032, 3.285223700000074 ], [ 106.246755405000044, 3.306341864000046 ], [ 106.249766472000033, 3.326646226000094 ], [ 106.254893425000034, 3.34516022300005 ], [ 106.27084394600007, 3.360988674000055 ] ] ], [ [ [ 108.39616946700005, 3.874823309000078 ], [ 108.406504754000025, 3.884588934000078 ], [ 108.406260613000029, 3.874335028000075 ], [ 108.389333530000044, 3.822170315000051 ], [ 108.382578972000033, 3.809881903000075 ], [ 108.34107506600003, 3.756293036000045 ], [ 108.33326256600003, 3.740423895000049 ], [ 108.327891472000033, 3.72406647300005 ], [ 108.323985222000033, 3.692694403000075 ], [ 108.31763756600003, 3.683783270000049 ], [ 108.30005944100003, 3.676255601000094 ], [ 108.285166863000029, 3.67446523600006 ], [ 108.25359134200005, 3.676988023000092 ], [ 108.238536004000025, 3.676255601000094 ], [ 108.223643425000034, 3.670396226000094 ], [ 108.19499759200005, 3.652289130000042 ], [ 108.183848504000025, 3.648342190000051 ], [ 108.174489780000044, 3.651922919000071 ], [ 108.14226321700005, 3.676255601000094 ], [ 108.10482832100007, 3.690578518000052 ], [ 108.094493035000028, 3.696193752000056 ], [ 108.118174675000034, 3.725775458000044 ], [ 108.121836785000028, 3.734605210000041 ], [ 108.125010613000029, 3.747870184000078 ], [ 108.132334832000026, 3.752183335000041 ], [ 108.140472852000073, 3.751776434000078 ], [ 108.146006707000026, 3.75071849200009 ], [ 108.164886915000068, 3.75726959800005 ], [ 108.171397332000026, 3.771470445000091 ], [ 108.175547722000033, 3.785834052000041 ], [ 108.187022332000026, 3.792303778000075 ], [ 108.20248457100007, 3.792466539000088 ], [ 108.213633660000028, 3.791164455000057 ], [ 108.224375847000033, 3.785345770000049 ], [ 108.238536004000025, 3.772406317000048 ], [ 108.26685631600003, 3.738755601000094 ], [ 108.280039910000028, 3.731512762000079 ], [ 108.277598504000025, 3.745062567000048 ], [ 108.262380405000044, 3.792303778000075 ], [ 108.257334832000026, 3.795355536000045 ], [ 108.248871290000068, 3.80931224200009 ], [ 108.24537194100003, 3.813462632000039 ], [ 108.236827019000032, 3.815008856000077 ], [ 108.207530144000032, 3.813462632000039 ], [ 108.180349155000044, 3.816839911000045 ], [ 108.103363477000073, 3.845892645000049 ], [ 108.07154381600003, 3.852240302000041 ], [ 108.062347852000073, 3.855943101000094 ], [ 108.052989129000025, 3.864650783000059 ], [ 108.044769727000073, 3.877020575000074 ], [ 108.030039910000028, 3.908880927000041 ], [ 108.028086785000028, 3.917222398000092 ], [ 108.026133660000028, 3.932928778000075 ], [ 108.023448113000029, 3.94171784100007 ], [ 108.01685631600003, 3.946763414000088 ], [ 108.009938998000052, 3.951076565000051 ], [ 108.00513756600003, 3.957464911000045 ], [ 108.003916863000029, 3.964341539000088 ], [ 108.00513756600003, 3.987494208000044 ], [ 108.002126498000052, 3.997626044000071 ], [ 107.99545332100007, 4.00226471600007 ], [ 107.988536004000025, 4.005601304000038 ], [ 107.984629754000025, 4.01203034100007 ], [ 107.987803582000026, 4.020697333000044 ], [ 107.997243686000047, 4.034247137000079 ], [ 108.022471550000034, 4.063544012000079 ], [ 108.032237175000034, 4.069973049000055 ], [ 108.041514519000032, 4.07094961100006 ], [ 108.050547722000033, 4.070786851000094 ], [ 108.060313347000033, 4.074123440000051 ], [ 108.066661004000025, 4.080145575000074 ], [ 108.080332879000025, 4.097235419000071 ], [ 108.084239129000025, 4.100775458000044 ], [ 108.094493035000028, 4.105373440000051 ], [ 108.170258009000065, 4.179429429000038 ], [ 108.181976759000065, 4.20453522300005 ], [ 108.195567254000025, 4.220363674000055 ], [ 108.211599155000044, 4.235419012000079 ], [ 108.224864129000025, 4.244818427000041 ], [ 108.242442254000025, 4.230698960000041 ], [ 108.250254754000025, 4.21124909100007 ], [ 108.252207879000025, 4.159165757000039 ], [ 108.257334832000026, 4.130560614000046 ], [ 108.27076256600003, 4.112982489000046 ], [ 108.306813998000052, 4.086493231000077 ], [ 108.365407748000052, 4.015448309000078 ], [ 108.391368035000028, 3.997015692000048 ], [ 108.39616946700005, 3.990912177000041 ], [ 108.398203972000033, 3.976467190000051 ], [ 108.39771569100003, 3.949367580000057 ], [ 108.40357506600003, 3.936346747000073 ], [ 108.392832879000025, 3.924383856000077 ], [ 108.37826582100007, 3.915757554000038 ], [ 108.365977410000028, 3.905462958000044 ], [ 108.362071160000028, 3.888576565000051 ], [ 108.372080925000034, 3.893540757000039 ], [ 108.38013756600003, 3.891180731000077 ], [ 108.39616946700005, 3.874823309000078 ] ] ], [ [ [ 108.00513756600003, 4.772365627000056 ], [ 108.012705925000034, 4.768133856000077 ], [ 108.011973504000025, 4.760931708000044 ], [ 108.007823113000029, 4.752630927000041 ], [ 108.00513756600003, 4.745062567000048 ], [ 108.000498894000032, 4.709133205000057 ], [ 107.99341881600003, 4.691310940000051 ], [ 107.981211785000028, 4.683661200000074 ], [ 107.958994988000029, 4.684393622000073 ], [ 107.946462436000047, 4.686712958000044 ], [ 107.937347852000073, 4.691392320000091 ], [ 107.935557488000029, 4.694525458000044 ], [ 107.935313347000033, 4.698391018000052 ], [ 107.93677819100003, 4.703070380000042 ], [ 107.940603061000047, 4.708644924000055 ], [ 107.951914910000028, 4.717678127000056 ], [ 107.966644727000073, 4.726141669000071 ], [ 107.979177280000044, 4.735988674000055 ], [ 107.984629754000025, 4.74876536700009 ], [ 107.986338738000029, 4.755804755000042 ], [ 107.991221550000034, 4.76398346600007 ], [ 107.997813347000033, 4.770453192000048 ], [ 108.00513756600003, 4.772365627000056 ] ] ], [ [ [ 104.54851321700005, -0.398044528999947 ], [ 104.592946811000047, -0.448418877999927 ], [ 104.599375847000033, -0.463799737999921 ], [ 104.591644727000073, -0.483575127999927 ], [ 104.573008660000028, -0.500420830999929 ], [ 104.534190300000034, -0.52857838299991 ], [ 104.52662194100003, -0.547621351999908 ], [ 104.521983269000032, -0.596612237999921 ], [ 104.511241082000026, -0.613946221999925 ], [ 104.476735873000052, -0.614027601999908 ], [ 104.447113477000073, -0.588067315999922 ], [ 104.420420769000032, -0.574965101999908 ], [ 104.39389082100007, -0.613946221999925 ], [ 104.383636915000068, -0.653497002999927 ], [ 104.375824415000068, -0.660088799999926 ], [ 104.356293165000068, -0.661716403999947 ], [ 104.346039259000065, -0.579196872999944 ], [ 104.335785352000073, -0.54265715899993 ], [ 104.326345248000052, -0.529880466999941 ], [ 104.312022332000026, -0.531996351999908 ], [ 104.255869988000029, -0.475518487999921 ], [ 104.253672722000033, -0.460056247999944 ], [ 104.263194207000026, -0.446221612999921 ], [ 104.27702884200005, -0.413018487999921 ], [ 104.284027540000068, -0.401055596999925 ], [ 104.31185957100007, -0.378350518999923 ], [ 104.324717644000032, -0.364841403999947 ], [ 104.332530144000032, -0.346449476999908 ], [ 104.339366082000026, -0.346449476999908 ], [ 104.345550977000073, -0.363702080999929 ], [ 104.334808790000068, -0.404880466999941 ], [ 104.339366082000026, -0.428399346999925 ], [ 104.346039259000065, -0.428399346999925 ], [ 104.348317905000044, -0.407403252999927 ], [ 104.35287519600007, -0.387383721999925 ], [ 104.359711134000065, -0.387383721999925 ], [ 104.382660352000073, -0.401462497999944 ], [ 104.415782097000033, -0.381931247999944 ], [ 104.469574415000068, -0.332126559999949 ], [ 104.489268425000034, -0.349379164999959 ], [ 104.496755405000044, -0.353936455999929 ], [ 104.518239780000044, -0.36256275799991 ], [ 104.524912957000026, -0.36687590899993 ], [ 104.53093509200005, -0.373467705999929 ], [ 104.541351759000065, -0.389336846999925 ], [ 104.54851321700005, -0.398044528999947 ] ] ], [ [ [ 104.92896569100003, -0.237237237999921 ], [ 105.011485222000033, -0.281508070999962 ], [ 105.002696160000028, -0.294854424999926 ], [ 104.98178144600007, -0.29070403399993 ], [ 104.956553582000026, -0.281182549999926 ], [ 104.93523196700005, -0.278090101999908 ], [ 104.917165561000047, -0.287530205999929 ], [ 104.920176629000082, -0.299004815999922 ], [ 104.930674675000034, -0.313409112999921 ], [ 104.93523196700005, -0.332126559999949 ], [ 104.881683790000068, -0.308363539999959 ], [ 104.863536004000082, -0.305433851999908 ], [ 104.851328972000033, -0.301202080999929 ], [ 104.832855665000068, -0.282403252999927 ], [ 104.778086785000028, -0.257582289999959 ], [ 104.763438347000033, -0.242933851999908 ], [ 104.750743035000028, -0.227146091999941 ], [ 104.735524936000047, -0.214450778999947 ], [ 104.712657097000033, -0.209242445999962 ], [ 104.670909050000034, -0.211602471999925 ], [ 104.654958530000044, -0.215915622999944 ], [ 104.640391472000033, -0.223402601999908 ], [ 104.616953972000033, -0.240329684999949 ], [ 104.606211785000028, -0.244073174999926 ], [ 104.600352410000028, -0.243584893999923 ], [ 104.585134311000047, -0.237237237999921 ], [ 104.579925977000073, -0.240329684999949 ], [ 104.571055535000028, -0.248467705999929 ], [ 104.562998894000032, -0.253513278999947 ], [ 104.550547722000033, -0.267998955999929 ], [ 104.541351759000065, -0.271254164999959 ], [ 104.52865644600007, -0.269952080999929 ], [ 104.523936394000032, -0.265883070999962 ], [ 104.521820509000065, -0.259372653999947 ], [ 104.517425977000073, -0.250176690999922 ], [ 104.507334832000026, -0.236097914999959 ], [ 104.497894727000073, -0.228122653999947 ], [ 104.483897332000026, -0.224379164999959 ], [ 104.459320509000065, -0.223402601999908 ], [ 104.447113477000073, -0.220961195999962 ], [ 104.439952019000032, -0.214288018999923 ], [ 104.436371290000068, -0.20435963299991 ], [ 104.435557488000029, -0.192152601999908 ], [ 104.437266472000033, -0.181084893999923 ], [ 104.441905144000032, -0.175551039999959 ], [ 104.455902540000068, -0.168226820999962 ], [ 104.494476759000065, -0.135674737999921 ], [ 104.510752800000034, -0.113702080999929 ], [ 104.517425977000073, -0.089450778999947 ], [ 104.52507571700005, -0.007745049999926 ], [ 104.537364129000082, 0.021307684000078 ], [ 104.558360222000033, 0.003078518000052 ], [ 104.55982506600003, 0.010158596000053 ], [ 104.56381269600007, 0.022609768000052 ], [ 104.564626498000052, 0.030340887000079 ], [ 104.57162519600007, 0.017645575000074 ], [ 104.587901238000029, 0.008286851000094 ], [ 104.62037194100003, -0.004245700999945 ], [ 104.675547722000033, -0.053806247999944 ], [ 104.68132571700005, -0.065240166999956 ], [ 104.647227410000028, -0.072686455999929 ], [ 104.647227410000028, -0.080743096999925 ], [ 104.652517123000052, -0.08953215899993 ], [ 104.65943444100003, -0.096530856999948 ], [ 104.664561394000032, -0.099379164999959 ], [ 104.67546634200005, -0.095798434999949 ], [ 104.683116082000026, -0.089613539999959 ], [ 104.691905144000032, -0.087497653999947 ], [ 104.705821160000028, -0.096286716999941 ], [ 104.736582879000082, -0.127373955999929 ], [ 104.753916863000029, -0.170586846999925 ], [ 104.766286655000044, -0.188246351999908 ], [ 104.787771030000044, -0.195570570999962 ], [ 104.81413821700005, -0.192803643999923 ], [ 104.820323113000029, -0.184340101999908 ], [ 104.819834832000026, -0.16961028399993 ], [ 104.825938347000033, -0.14771900799991 ], [ 104.84888756600003, -0.139580987999921 ], [ 104.877289259000065, -0.166599216999941 ], [ 104.92896569100003, -0.237237237999921 ] ] ], [ [ [ 104.497080925000034, 0.071275132000039 ], [ 104.485850457000026, 0.065822658000059 ], [ 104.479502800000034, 0.063950914000088 ], [ 104.469574415000068, 0.063788153000075 ], [ 104.479991082000026, 0.045111395000049 ], [ 104.483083530000044, 0.035711981000077 ], [ 104.483409050000034, 0.023504950000074 ], [ 104.476573113000029, 0.023504950000074 ], [ 104.459157748000052, 0.047308661000045 ], [ 104.41138756600003, 0.091701565000051 ], [ 104.401377800000034, 0.119086005000042 ], [ 104.40756269600007, 0.119086005000042 ], [ 104.411875847000033, 0.114569403000075 ], [ 104.416026238000029, 0.111721096000053 ], [ 104.428721550000034, 0.10610586100006 ], [ 104.423594597000033, 0.112209377000056 ], [ 104.408702019000032, 0.150946356000077 ], [ 104.406748894000032, 0.161200262000079 ], [ 104.40788821700005, 0.170599677000041 ], [ 104.413910352000073, 0.175848700000074 ], [ 104.42115319100003, 0.172756252000056 ], [ 104.428396030000044, 0.163763739000046 ], [ 104.439626498000052, 0.146185614000046 ], [ 104.490082227000073, 0.082586981000077 ], [ 104.497080925000034, 0.071275132000039 ] ] ], [ [ [ 104.68873131600003, 0.071275132000039 ], [ 104.707855665000068, 0.043646552000041 ], [ 104.702891472000033, 0.032782294000071 ], [ 104.683929884000065, 0.036281643000052 ], [ 104.660899285000028, 0.05141836100006 ], [ 104.63990319100003, 0.070054429000038 ], [ 104.633555535000028, 0.078111070000091 ], [ 104.626149936000047, 0.102240302000041 ], [ 104.619802280000044, 0.10578034100007 ], [ 104.606211785000028, 0.091782945000091 ], [ 104.595225457000026, 0.101629950000074 ], [ 104.578868035000028, 0.124904690000051 ], [ 104.568369988000029, 0.136786200000074 ], [ 104.56576582100007, 0.142726955000057 ], [ 104.564219597000033, 0.158148505000042 ], [ 104.561534050000034, 0.161281643000052 ], [ 104.553396030000044, 0.161525783000059 ], [ 104.546722852000073, 0.162502346000053 ], [ 104.54070071700005, 0.165228583000044 ], [ 104.534190300000034, 0.170599677000041 ], [ 104.529795769000032, 0.177313544000071 ], [ 104.527354363000029, 0.189886786000045 ], [ 104.524912957000026, 0.195461330000057 ], [ 104.498545769000032, 0.22329336100006 ], [ 104.493662957000026, 0.231146552000041 ], [ 104.490244988000029, 0.242621161000045 ], [ 104.502207879000082, 0.238267320000091 ], [ 104.511973504000082, 0.232896226000094 ], [ 104.531097852000073, 0.215969143000052 ], [ 104.53052819100003, 0.21906159100007 ], [ 104.532399936000047, 0.222886460000041 ], [ 104.535492384000065, 0.226385809000078 ], [ 104.538828972000033, 0.228257554000038 ], [ 104.543223504000082, 0.227443752000056 ], [ 104.54810631600003, 0.224310614000046 ], [ 104.68873131600003, 0.071275132000039 ] ] ], [ [ [ 104.40552819100003, 0.338812567000048 ], [ 104.416188998000052, 0.328802802000041 ], [ 104.421397332000026, 0.317938544000071 ], [ 104.420176629000082, 0.306301174000055 ], [ 104.41138756600003, 0.294419664000088 ], [ 104.405121290000068, 0.292141018000052 ], [ 104.399587436000047, 0.294989325000074 ], [ 104.395518425000034, 0.300930080000057 ], [ 104.39185631600003, 0.316595770000049 ], [ 104.386892123000052, 0.319281317000048 ], [ 104.38021894600007, 0.320379950000074 ], [ 104.373545769000032, 0.32453034100007 ], [ 104.34693444100003, 0.359930731000077 ], [ 104.339366082000026, 0.365464585000041 ], [ 104.34148196700005, 0.366359768000052 ], [ 104.348317905000044, 0.370510158000059 ], [ 104.351817254000082, 0.371242580000057 ], [ 104.358164910000028, 0.368882554000038 ], [ 104.37623131600003, 0.354315497000073 ], [ 104.40552819100003, 0.338812567000048 ] ] ], [ [ [ 104.215830925000034, 0.708156643000052 ], [ 104.24146569100003, 0.695379950000074 ], [ 104.270518425000034, 0.675034898000092 ], [ 104.287608269000032, 0.650783596000053 ], [ 104.277354363000029, 0.626166083000044 ], [ 104.266449415000068, 0.633002020000049 ], [ 104.260264519000032, 0.643377997000073 ], [ 104.249847852000073, 0.667181708000044 ], [ 104.22201582100007, 0.69603099200009 ], [ 104.215830925000034, 0.708156643000052 ] ] ], [ [ [ 104.284027540000068, 0.708156643000052 ], [ 104.274424675000034, 0.70343659100007 ], [ 104.264821811000047, 0.702215887000079 ], [ 104.255381707000026, 0.704901434000078 ], [ 104.236094597000033, 0.718451239000046 ], [ 104.21452884200005, 0.721177476000094 ], [ 104.205577019000032, 0.726060289000088 ], [ 104.191661004000082, 0.745998440000051 ], [ 104.188243035000028, 0.764471747000073 ], [ 104.195811394000032, 0.779974677000041 ], [ 104.215830925000034, 0.79132721600007 ], [ 104.233897332000026, 0.786444403000075 ], [ 104.244883660000028, 0.786525783000059 ], [ 104.249847852000073, 0.794745184000078 ], [ 104.254161004000082, 0.797837632000039 ], [ 104.263682488000029, 0.79913971600007 ], [ 104.272959832000026, 0.796535549000055 ], [ 104.277354363000029, 0.787909247000073 ], [ 104.277598504000082, 0.76430898600006 ], [ 104.279795769000032, 0.747056382000039 ], [ 104.285899285000028, 0.730373440000051 ], [ 104.297699415000068, 0.708156643000052 ], [ 104.284027540000068, 0.708156643000052 ] ] ], [ [ [ 104.226084832000026, 0.880072333000044 ], [ 104.24146569100003, 0.877020575000074 ], [ 104.257823113000029, 0.86859772300005 ], [ 104.266286655000044, 0.855861721000053 ], [ 104.25749759200005, 0.839667059000078 ], [ 104.250254754000082, 0.830023505000042 ], [ 104.23951256600003, 0.822455145000049 ], [ 104.187510613000029, 0.799261786000045 ], [ 104.176442905000044, 0.798488674000055 ], [ 104.167491082000026, 0.804917710000041 ], [ 104.161143425000034, 0.818793036000045 ], [ 104.156016472000033, 0.846380927000041 ], [ 104.147634311000047, 0.858954169000071 ], [ 104.13412519600007, 0.867254950000074 ], [ 104.107188347000033, 0.872992255000042 ], [ 104.092295769000032, 0.880072333000044 ], [ 104.099375847000033, 0.894761460000041 ], [ 104.094004754000082, 0.933091539000088 ], [ 104.099131707000026, 0.948919989000046 ], [ 104.11255944100003, 0.95258209800005 ], [ 104.127696160000028, 0.942531643000052 ], [ 104.15748131600003, 0.91079336100006 ], [ 104.162933790000068, 0.901922919000071 ], [ 104.166351759000065, 0.891791083000044 ], [ 104.172129754000082, 0.883490302000041 ], [ 104.18482506600003, 0.880072333000044 ], [ 104.226084832000026, 0.880072333000044 ] ] ], [ [ [ 104.724864129000082, 0.749660549000055 ], [ 104.740977410000028, 0.748928127000056 ], [ 104.754161004000082, 0.737250067000048 ], [ 104.749034050000034, 0.722601630000042 ], [ 104.739268425000034, 0.71625397300005 ], [ 104.731455925000034, 0.722479559000078 ], [ 104.720713738000029, 0.737860419000071 ], [ 104.724864129000082, 0.749660549000055 ] ] ], [ [ [ 104.65943444100003, 0.845892645000049 ], [ 104.662771030000044, 0.834214585000041 ], [ 104.663259311000047, 0.829087632000039 ], [ 104.66138756600003, 0.820135809000078 ], [ 104.656586134000065, 0.813869533000059 ], [ 104.651540561000047, 0.809963283000059 ], [ 104.642832879000082, 0.806830145000049 ], [ 104.630381707000026, 0.806545315000051 ], [ 104.625498894000032, 0.810695705000057 ], [ 104.63021894600007, 0.816351630000042 ], [ 104.635427280000044, 0.828558661000045 ], [ 104.639170769000032, 0.84796784100007 ], [ 104.648610873000052, 0.857896226000094 ], [ 104.65943444100003, 0.845892645000049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-RI", "NAME_1": "Riau" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.83912194100003, 0.290961005000042 ], [ 102.854502800000034, 0.303168036000045 ], [ 102.884532097000033, 0.315252997000073 ], [ 102.913910352000073, 0.320257880000042 ], [ 102.927256707000026, 0.31085846600007 ], [ 102.907725457000026, 0.298529364000046 ], [ 102.875336134000065, 0.284084377000056 ], [ 102.84701582100007, 0.27806224200009 ], [ 102.83912194100003, 0.290961005000042 ] ] ], [ [ [ 103.079600457000026, 0.624416408000059 ], [ 103.084320509000065, 0.608547268000052 ], [ 103.085459832000026, 0.600083726000094 ], [ 103.084971550000034, 0.592027085000041 ], [ 103.08139082100007, 0.579291083000044 ], [ 103.076996290000068, 0.574774481000077 ], [ 103.071462436000047, 0.577215887000079 ], [ 103.064463738000029, 0.585191148000092 ], [ 103.05787194100003, 0.596380927000041 ], [ 103.045664910000028, 0.627834377000056 ], [ 103.043304884000065, 0.640448309000078 ], [ 103.040863477000073, 0.646714585000041 ], [ 103.037282748000052, 0.65265534100007 ], [ 103.036631707000026, 0.657538153000075 ], [ 103.043304884000065, 0.660956122000073 ], [ 103.055430535000028, 0.658677476000094 ], [ 103.06576582100007, 0.649237372000073 ], [ 103.073985222000033, 0.636460679000038 ], [ 103.079600457000026, 0.624416408000059 ] ] ], [ [ [ 103.112803582000026, 0.792954820000091 ], [ 103.120941602000073, 0.779974677000041 ], [ 103.116221550000034, 0.757757880000042 ], [ 103.104502800000034, 0.735419012000079 ], [ 103.092295769000032, 0.722357489000046 ], [ 103.086273634000065, 0.724676825000074 ], [ 103.080821160000028, 0.734279690000051 ], [ 103.077159050000034, 0.745510158000059 ], [ 103.07585696700005, 0.752834377000056 ], [ 103.077159050000034, 0.760891018000052 ], [ 103.080251498000052, 0.768622137000079 ], [ 103.084727410000028, 0.77570221600007 ], [ 103.094574415000068, 0.786037502000056 ], [ 103.100352410000028, 0.790187893000052 ], [ 103.106618686000047, 0.792954820000091 ], [ 103.112803582000026, 0.792954820000091 ] ] ], [ [ [ 100.313649936000047, 2.55455149900007 ], [ 100.31373131600003, 2.554266669000071 ], [ 100.381683790000068, 2.355047919000071 ], [ 100.405284050000034, 2.312689520000049 ], [ 100.434336785000028, 2.273342190000051 ], [ 100.507334832000026, 2.199164130000042 ], [ 100.561045769000032, 2.156805731000077 ], [ 100.617849155000044, 2.129055080000057 ], [ 100.666188998000052, 2.134466864000046 ], [ 100.789073113000029, 2.048529364000046 ], [ 100.812754754000082, 2.039740302000041 ], [ 100.832286004000082, 2.016302802000041 ], [ 100.840830925000034, 2.010972398000092 ], [ 100.855723504000082, 1.999212958000044 ], [ 100.87240644600007, 1.971991278000075 ], [ 100.886241082000026, 1.940985419000071 ], [ 100.892100457000026, 1.918158270000049 ], [ 100.895518425000034, 1.886216539000088 ], [ 100.90593509200005, 1.856919664000088 ], [ 100.92310631600003, 1.834947007000039 ], [ 100.947276238000029, 1.825384833000044 ], [ 100.941905144000032, 1.841864325000074 ], [ 100.946055535000028, 1.861314195000091 ], [ 100.948252800000034, 1.882757880000042 ], [ 100.937022332000026, 1.904527085000041 ], [ 100.924082879000082, 1.922756252000056 ], [ 100.915782097000033, 1.944728908000059 ], [ 100.905772332000026, 1.990464585000041 ], [ 100.885508660000028, 2.036322333000044 ], [ 100.82349694100003, 2.11595286700009 ], [ 100.803233269000032, 2.161810614000046 ], [ 100.799978061000047, 2.208929755000042 ], [ 100.812754754000082, 2.249823309000078 ], [ 100.84115644600007, 2.280829169000071 ], [ 100.885915561000047, 2.29828522300005 ], [ 100.90788821700005, 2.299505927000041 ], [ 101.050303582000026, 2.291489976000094 ], [ 101.058604363000029, 2.280422268000052 ], [ 101.056488477000073, 2.241156317000048 ], [ 101.067393425000034, 2.219794012000079 ], [ 101.181813998000052, 2.145005601000094 ], [ 101.299978061000047, 2.046616929000038 ], [ 101.317149285000028, 2.024603583000044 ], [ 101.32585696700005, 2.002183335000041 ], [ 101.326996290000068, 1.981268622000073 ], [ 101.323415561000047, 1.938950914000088 ], [ 101.326670769000032, 1.916449286000045 ], [ 101.351328972000033, 1.86009349200009 ], [ 101.377614780000044, 1.773260809000078 ], [ 101.397308790000068, 1.736395575000074 ], [ 101.42701256600003, 1.70929596600007 ], [ 101.494476759000065, 1.678697007000039 ], [ 101.529633009000065, 1.670803127000056 ], [ 101.567393425000034, 1.655910549000055 ], [ 101.591563347000033, 1.654689846000053 ], [ 101.67351321700005, 1.669501044000071 ], [ 101.711680535000028, 1.671128648000092 ], [ 101.749196811000047, 1.661525783000059 ], [ 101.77857506600003, 1.644273179000038 ], [ 102.021494988000029, 1.437892971000053 ], [ 102.118174675000034, 1.386542059000078 ], [ 102.143321160000028, 1.35773346600007 ], [ 102.153330925000034, 1.311468817000048 ], [ 102.146983269000032, 1.273138739000046 ], [ 102.147227410000028, 1.247788804000038 ], [ 102.156748894000032, 1.236314195000091 ], [ 102.17310631600003, 1.230902411000045 ], [ 102.187266472000033, 1.217271226000094 ], [ 102.197276238000029, 1.199611721000053 ], [ 102.201019727000073, 1.181708075000074 ], [ 102.193125847000033, 1.10423411700009 ], [ 102.194183790000068, 1.065904039000088 ], [ 102.208506707000026, 1.02407461100006 ], [ 102.240082227000073, 0.982082424000055 ], [ 102.321055535000028, 0.917181708000044 ], [ 102.42505944100003, 0.804266669000071 ], [ 102.463877800000034, 0.774115302000041 ], [ 102.509532097000033, 0.75031159100007 ], [ 102.532237175000034, 0.742377020000049 ], [ 102.551931186000047, 0.738104559000078 ], [ 102.59498131600003, 0.736029364000046 ], [ 102.616384311000047, 0.738267320000091 ], [ 102.647959832000026, 0.748114325000074 ], [ 102.667165561000047, 0.75031159100007 ], [ 102.781260613000029, 0.730902411000045 ], [ 102.877126498000052, 0.726385809000078 ], [ 102.918142123000052, 0.70766836100006 ], [ 102.953786655000044, 0.675848700000074 ], [ 103.05632571700005, 0.558294989000046 ], [ 103.083750847000033, 0.515570380000042 ], [ 103.092295769000032, 0.469183661000045 ], [ 103.074717644000032, 0.442328192000048 ], [ 103.037282748000052, 0.42064036700009 ], [ 102.961436394000032, 0.387193101000094 ], [ 102.92123457100007, 0.357367255000042 ], [ 102.899099155000044, 0.344183661000045 ], [ 102.861501498000052, 0.335760809000078 ], [ 102.746267123000052, 0.27765534100007 ], [ 102.732432488000029, 0.266506252000056 ], [ 102.715668165000068, 0.257635809000078 ], [ 102.646006707000026, 0.242621161000045 ], [ 102.627696160000028, 0.234320380000042 ], [ 102.619883660000028, 0.229478257000039 ], [ 102.611989780000044, 0.222154039000088 ], [ 102.591807488000029, 0.18626536700009 ], [ 102.581879102000073, 0.18109772300005 ], [ 102.554942254000082, 0.186428127000056 ], [ 102.536631707000026, 0.199774481000077 ], [ 102.502696160000028, 0.236395575000074 ], [ 102.485850457000026, 0.242743231000077 ], [ 102.459971550000034, 0.24750397300005 ], [ 102.437266472000033, 0.249172268000052 ], [ 102.430430535000028, 0.246323960000041 ], [ 102.439626498000052, 0.239243882000039 ], [ 102.449392123000052, 0.236476955000057 ], [ 102.47201582100007, 0.236395575000074 ], [ 102.480723504000082, 0.234279690000051 ], [ 102.486582879000082, 0.228908596000053 ], [ 102.495860222000033, 0.215969143000052 ], [ 102.517832879000082, 0.192572333000044 ], [ 102.545746290000068, 0.169134833000044 ], [ 102.577891472000033, 0.15851471600007 ], [ 102.611989780000044, 0.173651434000078 ], [ 102.618988477000073, 0.181626695000091 ], [ 102.627940300000034, 0.19562409100007 ], [ 102.633067254000082, 0.201646226000094 ], [ 102.644379102000073, 0.209540106000077 ], [ 102.667735222000033, 0.219183661000045 ], [ 102.677744988000029, 0.225572007000039 ], [ 102.695485873000052, 0.232082424000055 ], [ 102.74154707100007, 0.226629950000074 ], [ 102.763438347000033, 0.228949286000045 ], [ 102.818207227000073, 0.253729559000078 ], [ 102.885915561000047, 0.261419989000046 ], [ 102.902679884000065, 0.267767645000049 ], [ 102.972911004000082, 0.31313711100006 ], [ 102.992442254000082, 0.318304755000042 ], [ 103.007578972000033, 0.324652411000045 ], [ 103.057627800000034, 0.372951565000051 ], [ 103.075938347000033, 0.383002020000049 ], [ 103.09888756600003, 0.391791083000044 ], [ 103.122569207000026, 0.397935289000088 ], [ 103.143565300000034, 0.400213934000078 ], [ 103.166270379000082, 0.407904364000046 ], [ 103.18132571700005, 0.42641836100006 ], [ 103.201508009000065, 0.469183661000045 ], [ 103.223643425000034, 0.488430080000057 ], [ 103.280121290000068, 0.498602606000077 ], [ 103.308116082000026, 0.513169664000088 ], [ 103.335785352000073, 0.531683661000045 ], [ 103.362152540000068, 0.536281643000052 ], [ 103.38990319100003, 0.53001536700009 ], [ 103.42123457100007, 0.516302802000041 ], [ 103.480967644000032, 0.482326565000051 ], [ 103.541026238000029, 0.434637762000079 ], [ 103.587657097000033, 0.376532294000071 ], [ 103.606293165000068, 0.31085846600007 ], [ 103.617523634000065, 0.330267645000049 ], [ 103.625010613000029, 0.339829820000091 ], [ 103.634287957000026, 0.345648505000042 ], [ 103.645274285000028, 0.345282294000071 ], [ 103.655772332000026, 0.340399481000077 ], [ 103.664886915000068, 0.33470286700009 ], [ 103.690196160000028, 0.325995184000078 ], [ 103.711192254000082, 0.311468817000048 ], [ 103.730479363000029, 0.293443101000094 ], [ 103.74341881600003, 0.277329820000091 ], [ 103.760020379000082, 0.239488023000092 ], [ 103.80046634200005, 0.034572658000059 ], [ 103.808360222000033, 0.023504950000074 ], [ 103.813975457000026, 0.018866278000075 ], [ 103.811289910000028, 0.00853099200009 ], [ 103.801768425000034, -0.007256768999923 ], [ 103.791514519000032, -0.012546481999948 ], [ 103.778330925000034, -0.013116143999923 ], [ 103.756521030000044, -0.010674737999921 ], [ 103.67115319100003, -0.017429294999943 ], [ 103.66374759200005, -0.021742445999962 ], [ 103.664235873000052, -0.040541273999906 ], [ 103.65748131600003, -0.044732354999951 ], [ 103.644704623000052, -0.045993747999944 ], [ 103.636241082000026, -0.048028252999927 ], [ 103.629161004000082, -0.048394463999955 ], [ 103.619883660000028, -0.044732354999951 ], [ 103.611827019000032, -0.036879164999959 ], [ 103.600759311000047, -0.016900322999959 ], [ 103.592051629000082, -0.010674737999921 ], [ 103.586192254000082, -0.01108163899994 ], [ 103.576996290000068, -0.013970635999954 ], [ 103.568695509000065, -0.018568617999961 ], [ 103.564707879000082, -0.024265231999948 ], [ 103.566905144000032, -0.035210869999958 ], [ 103.573415561000047, -0.037163994999958 ], [ 103.580821160000028, -0.037774346999925 ], [ 103.585785352000073, -0.044732354999951 ], [ 103.584239129000082, -0.053155205999929 ], [ 103.580332879000082, -0.063531182999952 ], [ 103.578135613000029, -0.074029229999951 ], [ 103.58716881600003, -0.09498463299991 ], [ 103.57585696700005, -0.104424737999921 ], [ 103.55827884200005, -0.110772393999923 ], [ 103.54420006600003, -0.113702080999929 ], [ 103.507985873000052, -0.114434502999927 ], [ 103.494395379000082, -0.11842213299991 ], [ 103.489024285000028, -0.130791924999926 ], [ 103.483083530000044, -0.15943775799991 ], [ 103.466807488000029, -0.183038018999923 ], [ 103.44304446700005, -0.202080987999921 ], [ 103.414561394000032, -0.216729424999926 ], [ 103.301442905000044, -0.23756275799991 ], [ 103.270518425000034, -0.257582289999959 ], [ 103.287119988000029, -0.257745049999926 ], [ 103.316661004000082, -0.262872002999927 ], [ 103.332530144000032, -0.263848565999922 ], [ 103.349864129000082, -0.260186455999929 ], [ 103.380625847000033, -0.247002862999921 ], [ 103.397146030000044, -0.244073174999926 ], [ 103.424815300000034, -0.234958591999941 ], [ 103.459320509000065, -0.21843840899993 ], [ 103.489268425000034, -0.211521091999941 ], [ 103.502696160000028, -0.230401299999926 ], [ 103.494639519000032, -0.25359465899993 ], [ 103.45671634200005, -0.288995049999926 ], [ 103.448008660000028, -0.315362237999921 ], [ 103.43677819100003, -0.337985934999949 ], [ 103.40951582100007, -0.349704684999949 ], [ 103.345550977000073, -0.360039971999925 ], [ 103.345550977000073, -0.36687590899993 ], [ 103.379405144000032, -0.380303643999923 ], [ 103.400563998000052, -0.384535414999959 ], [ 103.417979363000029, -0.377536716999941 ], [ 103.429535352000073, -0.374932549999926 ], [ 103.482188347000033, -0.373711846999925 ], [ 103.493011915000068, -0.375420830999929 ], [ 103.502696160000028, -0.378513278999947 ], [ 103.511485222000033, -0.383558851999908 ], [ 103.520030144000032, -0.391208591999941 ], [ 103.53052819100003, -0.397149346999925 ], [ 103.552500847000033, -0.399997653999947 ], [ 103.590505405000044, -0.424574476999908 ], [ 103.598399285000028, -0.43678150799991 ], [ 103.592051629000082, -0.45631275799991 ], [ 103.573252800000034, -0.475355726999908 ], [ 103.547048373000052, -0.489841403999947 ], [ 103.515798373000052, -0.499607028999947 ], [ 103.417979363000029, -0.517754815999922 ], [ 103.40162194100003, -0.509535414999959 ], [ 103.390147332000026, -0.490411065999922 ], [ 103.372894727000073, -0.449395440999922 ], [ 103.380381707000026, -0.514336846999925 ], [ 103.384776238000029, -0.522881768999923 ], [ 103.406504754000082, -0.540785414999959 ], [ 103.414561394000032, -0.551853122999944 ], [ 103.416270379000082, -0.575372002999927 ], [ 103.408539259000065, -0.604913018999923 ], [ 103.393565300000034, -0.632012627999927 ], [ 103.372894727000073, -0.64812590899993 ], [ 103.372894727000073, -0.654880466999941 ], [ 103.388926629000082, -0.665948174999926 ], [ 103.385752800000034, -0.68092213299991 ], [ 103.369395379000082, -0.693291924999926 ], [ 103.345550977000073, -0.695896091999941 ], [ 103.356455925000034, -0.711358330999929 ], [ 103.375987175000034, -0.726820570999962 ], [ 103.399912957000026, -0.738864841999941 ], [ 103.436045769000032, -0.745293877999927 ], [ 103.438703422624826, -0.746179762885731 ], [ 103.427310012347164, -0.748739515815998 ], [ 103.100146519346367, -0.772200615665895 ], [ 102.958449741562276, -0.761503594515261 ], [ 102.917315301559881, -0.763415622433058 ], [ 102.804350621184199, -0.792974542141394 ], [ 102.791948276791516, -0.799589125038096 ], [ 102.780786166748157, -0.807960707120969 ], [ 102.766213413817979, -0.822068372957062 ], [ 102.728592971288549, -0.868422132775208 ], [ 102.719807977156393, -0.87632862686462 ], [ 102.69024905834732, -0.897257582071745 ], [ 102.682187534626962, -0.904492282592798 ], [ 102.674022658119156, -0.91565439173678 ], [ 102.668544955884954, -0.924801121074893 ], [ 102.655212437304101, -0.955290215870775 ], [ 102.646220737596934, -0.967950941782533 ], [ 102.639399449125222, -0.975082288616761 ], [ 102.630976190198965, -0.981593519625221 ], [ 102.600745476922157, -1.000662122858671 ], [ 102.594699334806421, -1.011927584790214 ], [ 102.577491082647327, -1.065154310822777 ], [ 102.563021681605278, -1.080967299001657 ], [ 102.541214227254727, -1.084946383568763 ], [ 102.451813998617126, -1.068203220302394 ], [ 102.4301098979534, -1.059779962275456 ], [ 102.418844436021857, -1.051976820074174 ], [ 102.407682325978499, -1.034871920702585 ], [ 102.401481154231817, -1.027275485875009 ], [ 102.392799513786485, -1.019989108510572 ], [ 102.381534051854942, -1.015441583162556 ], [ 102.356212600031427, -1.010015556872474 ], [ 102.350424839434766, -1.006656589030342 ], [ 102.347892693892675, -1.002522474832347 ], [ 102.346704136386734, -0.993685804756069 ], [ 102.341949903665068, -0.984487399473892 ], [ 102.331511264932885, -0.971103204049655 ], [ 102.280351597348272, -0.925679620218318 ], [ 102.274718866382557, -0.918134860435487 ], [ 102.267329136230614, -0.892916762298739 ], [ 102.260559523703023, -0.880359389174487 ], [ 102.251929559201756, -0.872969659022544 ], [ 102.241387566782748, -0.867698663262729 ], [ 102.200563186042189, -0.857001641212776 ], [ 102.188884312061305, -0.855658054075946 ], [ 102.177412143655488, -0.85689828842527 ], [ 102.165629916887099, -0.859947197904887 ], [ 102.135967645290577, -0.871264336679815 ], [ 102.120051304324193, -0.875708510139646 ], [ 102.070338575764595, -0.881599622624492 ], [ 102.012616001227457, -0.880411065118551 ], [ 102.001815627289318, -0.881754653154701 ], [ 101.993185662788051, -0.883511650542232 ], [ 101.98414228713682, -0.886922296127068 ], [ 101.975770705053947, -0.891883232625105 ], [ 101.955203485052778, -0.907489516128294 ], [ 101.935049677100892, -0.927281588874223 ], [ 101.926574742230514, -0.937978610924176 ], [ 101.921045363152928, -0.946298516163608 ], [ 101.915515984974661, -0.958804212444477 ], [ 101.905284051817489, -0.980043226913381 ], [ 101.898566115233962, -0.987484633009387 ], [ 101.89009118036364, -0.99508106873634 ], [ 101.881822951068273, -0.999990330189576 ], [ 101.76978844578008, -1.038230888544661 ], [ 101.760176630247258, -1.017922051861206 ], [ 101.756145867937391, -1.011307468065183 ], [ 101.752011752840076, -1.005778089886974 ], [ 101.742865025300659, -0.99719980222909 ], [ 101.734235060799392, -0.99105030642653 ], [ 101.722969597968529, -0.985417575460758 ], [ 101.673773635145096, -0.967485853789128 ], [ 101.578688998698283, -0.948830661705699 ], [ 101.52525556799003, -0.931932467909064 ], [ 101.492079298920487, -0.909608249621044 ], [ 101.433684929915557, -0.847131443261503 ], [ 101.330848829909542, -0.787238457488854 ], [ 101.235970899937058, -0.702592461572863 ], [ 101.040323928406508, -0.474492689585986 ], [ 101.00011966259234, -0.401318861176492 ], [ 100.976245151592423, -0.395996188573235 ], [ 100.939296502631464, -0.380389905969423 ], [ 100.855839065120733, -0.322253920282208 ], [ 100.822662795151814, -0.263549492914763 ], [ 100.80199222236314, -0.233990574105746 ], [ 100.795377638567118, -0.220916436144648 ], [ 100.790003290019797, -0.205723564690743 ], [ 100.784008823848126, -0.170531914915955 ], [ 100.778737828088254, -0.155080661943032 ], [ 100.750005730679902, -0.103610935096583 ], [ 100.746129998900301, -0.083043715095357 ], [ 100.745974969269355, -0.072036634682945 ], [ 100.749023878748972, -0.063975110962588 ], [ 100.753106317002903, -0.060047703238922 ], [ 100.759927606373878, -0.056171969660681 ], [ 100.767679070832401, -0.054104913011315 ], [ 100.817753533698578, -0.05188282583174 ], [ 100.828967319686001, -0.049143974714696 ], [ 100.838269077755683, -0.044493096579174 ], [ 100.84400516240828, -0.037516777577252 ], [ 100.845607131064185, -0.03033375389964 ], [ 100.83919925284323, 0.032401434878295 ], [ 100.840026076042534, 0.056741033871617 ], [ 100.853823684415488, 0.144539292953993 ], [ 100.853823684415488, 0.159215400470373 ], [ 100.851704950023361, 0.172444566263721 ], [ 100.847157423776025, 0.185983792218224 ], [ 100.838475783330694, 0.200194809942502 ], [ 100.828657261323485, 0.212648831178626 ], [ 100.80044192875198, 0.240657457275802 ], [ 100.796927932178278, 0.245308336310643 ], [ 100.793207229130303, 0.251199448795489 ], [ 100.789383173294766, 0.255953681517155 ], [ 100.783802118273115, 0.260294501290218 ], [ 100.774707065778443, 0.261431382852038 ], [ 100.768144158825805, 0.258537502104048 ], [ 100.76323489827189, 0.255230211105356 ], [ 100.758067255299579, 0.254196682331042 ], [ 100.751504348346941, 0.257503974228996 ], [ 100.710008173138647, 0.301118882930098 ], [ 100.687477248376297, 0.319670722226022 ], [ 100.646601189892976, 0.345147202781163 ], [ 100.573582391114428, 0.377393296763216 ], [ 100.531104363975203, 0.427209377211 ], [ 100.509813673562121, 0.443900865432568 ], [ 100.494414097432582, 0.448861802829924 ], [ 100.475707229405089, 0.45108388911018 ], [ 100.444184604935515, 0.447363186062205 ], [ 100.430025262255981, 0.443642483014173 ], [ 100.420671828242234, 0.438784898404322 ], [ 100.416072626050834, 0.43356557948789 ], [ 100.407390984706126, 0.420233059108398 ], [ 100.400259636972635, 0.412016505757151 ], [ 100.368685336558997, 0.411293036244615 ], [ 100.265384148559576, 0.450463772385149 ], [ 100.226110061430177, 0.524361070307123 ], [ 100.219185419271639, 0.53335276911497 ], [ 100.197481316809274, 0.555315253096467 ], [ 100.189523146775741, 0.56962962540689 ], [ 100.162961459703581, 0.648384507938658 ], [ 100.16254804855356, 0.658358059576756 ], [ 100.167767369268631, 0.66946849187741 ], [ 100.174588657740344, 0.676909897973417 ], [ 100.196344436146774, 0.695410061325276 ], [ 100.20223554863162, 0.702799791477162 ], [ 100.206783074878956, 0.71070628556663 ], [ 100.207713250865766, 0.719077866750126 ], [ 100.206783074878956, 0.724968980134292 ], [ 100.197481316809274, 0.739231676500651 ], [ 100.173400100234403, 0.757576809322302 ], [ 100.171229689898212, 0.785430405788588 ], [ 100.172469924247537, 0.806411037839098 ], [ 100.175673863358043, 0.818554998914067 ], [ 100.18332197502906, 0.836486721485016 ], [ 100.189781529194192, 0.846305243492168 ], [ 100.196551140822464, 0.853643296800669 ], [ 100.20337243019344, 0.859431057397387 ], [ 100.209883661201957, 0.866355699555868 ], [ 100.212725865106563, 0.874572252007795 ], [ 100.214017775399952, 0.886509508407073 ], [ 100.213707717037494, 0.930124417108175 ], [ 100.218927036853245, 0.996528632090701 ], [ 100.21825524328483, 1.017405911353706 ], [ 100.215878127373628, 1.032960517114191 ], [ 100.209573601940122, 1.05352773711536 ], [ 100.209005162058531, 1.066136786183733 ], [ 100.211227248338787, 1.078952541726437 ], [ 100.22362959183215, 1.122619127270923 ], [ 100.225386591018321, 1.146028551176698 ], [ 100.22321617978281, 1.160859687424647 ], [ 100.217635125660479, 1.173675442067974 ], [ 100.210503777926988, 1.183545640019247 ], [ 100.20182213658228, 1.192382310095525 ], [ 100.191073440386901, 1.200392156972441 ], [ 100.147665236361547, 1.224731756865083 ], [ 100.139552036697069, 1.23222483980453 ], [ 100.134642775243833, 1.241836656236671 ], [ 100.132162307444503, 1.252275294968854 ], [ 100.132575717695147, 1.287828680848918 ], [ 100.130301954571507, 1.299972641923887 ], [ 100.124720900449176, 1.311703192748155 ], [ 100.11707278787884, 1.321004949918517 ], [ 100.070977411378408, 1.358728746134716 ], [ 100.066946649068541, 1.365239976243913 ], [ 100.065706414719216, 1.371286119258968 ], [ 100.067205030587672, 1.379347642080006 ], [ 100.071545852159318, 1.387874253793768 ], [ 100.078108759111899, 1.396245835876641 ], [ 100.086790398657911, 1.403893948446978 ], [ 100.104773798072301, 1.415211086322586 ], [ 100.303934767975136, 1.504146226067462 ], [ 100.319747756153959, 1.510760809863484 ], [ 100.350340203737346, 1.524816798856193 ], [ 100.413178746202107, 1.561197007935561 ], [ 100.424392531290266, 1.571635647567064 ], [ 100.433745966203333, 1.584348049422942 ], [ 100.440877313037504, 1.59871409677811 ], [ 100.443977899360505, 1.616232408199096 ], [ 100.443254428948705, 1.636644599468696 ], [ 100.435296258915173, 1.666565253483668 ], [ 100.396642286712108, 1.748420722338437 ], [ 100.375558302773413, 1.814463202115064 ], [ 100.366773308641257, 1.829914455987364 ], [ 100.356024610647239, 1.842213445793902 ], [ 100.314786817857339, 1.87146230713978 ], [ 100.303573032769179, 1.881177476359426 ], [ 100.296183302617294, 1.89781728773761 ], [ 100.292565953256087, 1.920606594019091 ], [ 100.295976597042284, 1.962412828489221 ], [ 100.303314650350785, 1.996777655064705 ], [ 100.305175002324461, 2.001376858155481 ], [ 100.319127639428984, 2.045663560424941 ], [ 100.321298048865799, 2.074602362508983 ], [ 100.312616408420467, 2.17728343288411 ], [ 100.29804365369165, 2.24280915052185 ], [ 100.283884311911436, 2.286165675905181 ], [ 100.279646844026615, 2.318050035580654 ], [ 100.278716668939069, 2.354533596548208 ], [ 100.293754510762028, 2.495920315070464 ], [ 100.313546584407277, 2.554314683176074 ], [ 100.313649936000047, 2.55455149900007 ] ] ], [ [ [ 103.293630405000044, 0.625433661000045 ], [ 103.297862175000034, 0.604722398000092 ], [ 103.299978061000047, 0.575425523000092 ], [ 103.295746290000068, 0.549383856000077 ], [ 103.280772332000026, 0.538031317000048 ], [ 103.195567254000082, 0.520453192000048 ], [ 103.183360222000033, 0.514837958000044 ], [ 103.170664910000028, 0.513739325000074 ], [ 103.153168165000068, 0.523830471000053 ], [ 103.140472852000073, 0.53937409100007 ], [ 103.13599694100003, 0.556219794000071 ], [ 103.136729363000029, 0.573879299000055 ], [ 103.158946160000028, 0.66478099200009 ], [ 103.179209832000026, 0.695502020000049 ], [ 103.211761915000068, 0.708156643000052 ], [ 103.230235222000033, 0.704169012000079 ], [ 103.246918165000068, 0.694037177000041 ], [ 103.261485222000033, 0.68032461100006 ], [ 103.273203972000033, 0.665676174000055 ], [ 103.285166863000029, 0.646389065000051 ], [ 103.293630405000044, 0.625433661000045 ] ] ], [ [ [ 103.048675977000073, 0.797023830000057 ], [ 103.051768425000034, 0.784654039000088 ], [ 103.054453972000033, 0.777736721000053 ], [ 103.057627800000034, 0.777044989000046 ], [ 103.049082879000082, 0.757798570000091 ], [ 103.043711785000028, 0.720689195000091 ], [ 103.033702019000032, 0.705023505000042 ], [ 103.027842644000032, 0.701239325000074 ], [ 103.017344597000033, 0.696112372000073 ], [ 103.007334832000026, 0.693833726000094 ], [ 103.002940300000034, 0.698472398000092 ], [ 102.999766472000033, 0.700751044000071 ], [ 102.982432488000029, 0.722357489000046 ], [ 102.929942254000082, 0.770005601000094 ], [ 102.894704623000052, 0.789984442000048 ], [ 102.852224155000044, 0.798163153000075 ], [ 102.76685631600003, 0.79132721600007 ], [ 102.745127800000034, 0.793768622000073 ], [ 102.702159050000034, 0.803900458000044 ], [ 102.681488477000073, 0.804917710000041 ], [ 102.597666863000029, 0.785060940000051 ], [ 102.55787194100003, 0.780259507000039 ], [ 102.516368035000028, 0.79132721600007 ], [ 102.467295769000032, 0.826971747000073 ], [ 102.458018425000034, 0.832220770000049 ], [ 102.406504754000082, 0.873236395000049 ], [ 102.40943444100003, 0.894720770000049 ], [ 102.424571160000028, 0.914496161000045 ], [ 102.445078972000033, 0.929022528000075 ], [ 102.489431186000047, 0.93976471600007 ], [ 102.500661655000044, 0.953273830000057 ], [ 102.501719597000033, 0.972886460000041 ], [ 102.469899936000047, 1.067368882000039 ], [ 102.467621290000068, 1.106431382000039 ], [ 102.489024285000028, 1.133286851000094 ], [ 102.527517123000052, 1.139837958000044 ], [ 102.556407097000033, 1.125677802000041 ], [ 102.607920769000032, 1.068915106000077 ], [ 102.615733269000032, 1.057684637000079 ], [ 102.617360873000052, 1.044256903000075 ], [ 102.608897332000026, 1.027777411000045 ], [ 102.605479363000029, 1.01117584800005 ], [ 102.621755405000044, 1.001613674000055 ], [ 102.645274285000028, 0.997219143000052 ], [ 102.66374759200005, 0.996079820000091 ], [ 102.678070509000065, 0.999416408000059 ], [ 102.705332879000082, 1.013902085000041 ], [ 102.718760613000029, 1.017279364000046 ], [ 102.743011915000068, 1.01593659100007 ], [ 102.763845248000052, 1.01117584800005 ], [ 102.78256269600007, 1.001776434000078 ], [ 102.832530144000032, 0.963771877000056 ], [ 102.909027540000068, 0.927720445000091 ], [ 103.021739129000082, 0.845282294000071 ], [ 103.03646894600007, 0.828192450000074 ], [ 103.04037519600007, 0.821275132000039 ], [ 103.048675977000073, 0.797023830000057 ] ] ], [ [ [ 103.126475457000026, 0.927883205000057 ], [ 103.163259311000047, 0.899603583000044 ], [ 103.174571160000028, 0.882147528000075 ], [ 103.167491082000026, 0.858954169000071 ], [ 103.127126498000052, 0.834418036000045 ], [ 103.086273634000065, 0.841009833000044 ], [ 102.951508009000065, 0.924627997000073 ], [ 102.951182488000029, 0.927883205000057 ], [ 102.906748894000032, 0.968817450000074 ], [ 102.893321160000028, 0.97532786700009 ], [ 102.858897332000026, 0.987697658000059 ], [ 102.842295769000032, 0.989935614000046 ], [ 102.824392123000052, 0.995428778000075 ], [ 102.811534050000034, 1.008042710000041 ], [ 102.801036004000082, 1.021958726000094 ], [ 102.79070071700005, 1.031480210000041 ], [ 102.773610873000052, 1.03546784100007 ], [ 102.711924675000034, 1.031480210000041 ], [ 102.69263756600003, 1.025824286000045 ], [ 102.670583530000044, 1.014553127000056 ], [ 102.647634311000047, 1.006293036000045 ], [ 102.62623131600003, 1.009833075000074 ], [ 102.624766472000033, 1.021958726000094 ], [ 102.637217644000032, 1.041001695000091 ], [ 102.670583530000044, 1.075588283000059 ], [ 102.68523196700005, 1.095404364000046 ], [ 102.701914910000028, 1.137762762000079 ], [ 102.715586785000028, 1.154445705000057 ], [ 102.755381707000026, 1.167914130000042 ], [ 102.801768425000034, 1.163275458000044 ], [ 102.886241082000026, 1.133286851000094 ], [ 102.967133009000065, 1.091538804000038 ], [ 103.037119988000029, 1.044582424000055 ], [ 103.077647332000026, 1.003404039000088 ], [ 103.126475457000026, 0.927883205000057 ] ] ], [ [ [ 102.473399285000028, 1.242010809000078 ], [ 102.479502800000034, 1.219142971000053 ], [ 102.476084832000026, 1.194525458000044 ], [ 102.447438998000052, 1.100490627000056 ], [ 102.445567254000082, 1.076157945000091 ], [ 102.447438998000052, 1.051336981000077 ], [ 102.465179884000065, 0.994818427000041 ], [ 102.46802819100003, 0.972560940000051 ], [ 102.464854363000029, 0.963446356000077 ], [ 102.456879102000073, 0.96234772300005 ], [ 102.447032097000033, 0.962958075000074 ], [ 102.437510613000029, 0.958889065000051 ], [ 102.40748131600003, 0.932847398000092 ], [ 102.39966881600003, 0.927883205000057 ], [ 102.369313998000052, 0.935207424000055 ], [ 102.333750847000033, 0.963690497000073 ], [ 102.267100457000026, 1.036851304000038 ], [ 102.25131269600007, 1.066799221000053 ], [ 102.239268425000034, 1.082098700000074 ], [ 102.232920769000032, 1.099514065000051 ], [ 102.234222852000073, 1.124212958000044 ], [ 102.242686394000032, 1.16742584800005 ], [ 102.245127800000034, 1.203924872000073 ], [ 102.24187259200005, 1.221869208000044 ], [ 102.222911004000082, 1.238023179000038 ], [ 102.21257571700005, 1.258002020000049 ], [ 102.204112175000034, 1.280829169000071 ], [ 102.201019727000073, 1.297756252000056 ], [ 102.203461134000065, 1.306545315000051 ], [ 102.212657097000033, 1.325425523000092 ], [ 102.214610222000033, 1.335638739000046 ], [ 102.208506707000026, 1.377183335000041 ], [ 102.21062259200005, 1.398260809000078 ], [ 102.217458530000044, 1.409165757000039 ], [ 102.231211785000028, 1.413234768000052 ], [ 102.252940300000034, 1.413804429000038 ], [ 102.290863477000073, 1.404527085000041 ], [ 102.322113477000073, 1.38149648600006 ], [ 102.375743035000028, 1.322251695000091 ], [ 102.451426629000082, 1.267279364000046 ], [ 102.467051629000082, 1.251206773000092 ], [ 102.473399285000028, 1.242010809000078 ] ] ], [ [ [ 102.495860222000033, 1.36359284100007 ], [ 102.511485222000033, 1.295314846000053 ], [ 102.509532097000033, 1.277289130000042 ], [ 102.478770379000082, 1.270738023000092 ], [ 102.434743686000047, 1.29913971600007 ], [ 102.37232506600003, 1.359849351000094 ], [ 102.330251498000052, 1.413275458000044 ], [ 102.314626498000052, 1.42133209800005 ], [ 102.304698113000029, 1.423529364000046 ], [ 102.285166863000029, 1.433335679000038 ], [ 102.134532097000033, 1.45571523600006 ], [ 102.095550977000073, 1.47524648600006 ], [ 102.056976759000065, 1.510687567000048 ], [ 102.026540561000047, 1.547674872000073 ], [ 102.004405144000032, 1.585679429000038 ], [ 102.007823113000029, 1.615383205000057 ], [ 102.053721550000034, 1.627346096000053 ], [ 102.072438998000052, 1.623236395000049 ], [ 102.120127800000034, 1.600734768000052 ], [ 102.136241082000026, 1.589544989000046 ], [ 102.152354363000029, 1.581122137000079 ], [ 102.17505944100003, 1.575751044000071 ], [ 102.23764082100007, 1.570257880000042 ], [ 102.297862175000034, 1.558498440000051 ], [ 102.328298373000052, 1.559271552000041 ], [ 102.338145379000082, 1.558498440000051 ], [ 102.34896894600007, 1.554632880000042 ], [ 102.369151238000029, 1.542303778000075 ], [ 102.379161004000082, 1.537990627000056 ], [ 102.462657097000033, 1.515448309000078 ], [ 102.490489129000082, 1.48969147300005 ], [ 102.495860222000033, 1.441799221000053 ], [ 102.495860222000033, 1.36359284100007 ] ] ], [ [ [ 101.721202019000032, 2.058091539000088 ], [ 101.757985873000052, 2.011297919000071 ], [ 101.770274285000028, 1.985052802000041 ], [ 101.775563998000052, 1.94798411700009 ], [ 101.767751498000052, 1.925604559000078 ], [ 101.735850457000026, 1.887681382000039 ], [ 101.728770379000082, 1.863226630000042 ], [ 101.732432488000029, 1.817938544000071 ], [ 101.729177280000044, 1.799058335000041 ], [ 101.715098504000082, 1.778225002000056 ], [ 101.666270379000082, 1.744940497000073 ], [ 101.65984134200005, 1.733465887000079 ], [ 101.649424675000034, 1.722235419000071 ], [ 101.625254754000082, 1.714422919000071 ], [ 101.597504102000073, 1.710028387000079 ], [ 101.577321811000047, 1.70929596600007 ], [ 101.53060957100007, 1.718166408000059 ], [ 101.490733269000032, 1.736761786000045 ], [ 101.460134311000047, 1.765529690000051 ], [ 101.44068444100003, 1.804877020000049 ], [ 101.430349155000044, 1.850287177000041 ], [ 101.422211134000065, 1.872992255000042 ], [ 101.397146030000044, 1.909369208000044 ], [ 101.39380944100003, 1.930609442000048 ], [ 101.405772332000026, 2.013861395000049 ], [ 101.418142123000052, 2.044419664000088 ], [ 101.440928582000026, 2.064927476000094 ], [ 101.478282097000033, 2.072414455000057 ], [ 101.49577884200005, 2.068833726000094 ], [ 101.531016472000033, 2.056463934000078 ], [ 101.550547722000033, 2.058091539000088 ], [ 101.566416863000029, 2.067938544000071 ], [ 101.615082227000073, 2.117092190000051 ], [ 101.649261915000068, 2.128485419000071 ], [ 101.681651238000029, 2.108954169000071 ], [ 101.707204623000052, 2.078802802000041 ], [ 101.721202019000032, 2.058091539000088 ] ] ], [ [ [ 103.712738477000073, -0.269707940999922 ], [ 103.734629754000082, -0.281182549999926 ], [ 103.756114129000082, -0.301202080999929 ], [ 103.76685631600003, -0.324639580999929 ], [ 103.756521030000044, -0.346449476999908 ], [ 103.74935957100007, -0.348809502999927 ], [ 103.712412957000026, -0.346449476999908 ], [ 103.698252800000034, -0.349541924999926 ], [ 103.670664910000028, -0.363702080999929 ], [ 103.65748131600003, -0.36687590899993 ], [ 103.64966881600003, -0.370049737999921 ], [ 103.62623131600003, -0.384209893999923 ], [ 103.61255944100003, -0.387383721999925 ], [ 103.604014519000032, -0.383477471999925 ], [ 103.592621290000068, -0.376153252999927 ], [ 103.580332879000082, -0.372002862999921 ], [ 103.568125847000033, -0.377536716999941 ], [ 103.546641472000033, -0.382989190999922 ], [ 103.490000847000033, -0.361586195999962 ], [ 103.461680535000028, -0.36687590899993 ], [ 103.46062259200005, -0.333916924999926 ], [ 103.485118035000028, -0.28679778399993 ], [ 103.522146030000044, -0.24382903399993 ], [ 103.55787194100003, -0.223402601999908 ], [ 103.574554884000065, -0.224704684999949 ], [ 103.628672722000033, -0.234307549999926 ], [ 103.640391472000033, -0.240655205999929 ], [ 103.649587436000047, -0.254815362999921 ], [ 103.670664910000028, -0.262627862999921 ], [ 103.712738477000073, -0.269707940999922 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-GO", "NAME_1": "Gorontalo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.197341582048352, 1.027664880829604 ], [ 122.222829623000052, 1.01235586100006 ], [ 122.235362175000091, 1.009833075000074 ], [ 122.24537194100003, 1.010931708000044 ], [ 122.264659050000091, 1.016058661000045 ], [ 122.276215040000011, 1.017279364000046 ], [ 122.281423373000052, 1.016058661000045 ], [ 122.29070071700005, 1.010931708000044 ], [ 122.296722852000016, 1.009833075000074 ], [ 122.299815300000091, 1.011786200000074 ], [ 122.30827884200005, 1.021185614000046 ], [ 122.31373131600003, 1.02407461100006 ], [ 122.328298373000052, 1.024359442000048 ], [ 122.375987175000091, 1.009833075000074 ], [ 122.395518425000091, 1.010972398000092 ], [ 122.441742384, 1.021673895000049 ], [ 122.454112175000091, 1.020656643000052 ], [ 122.48560631600003, 0.995998440000051 ], [ 122.524180535000028, 0.979966539000088 ], [ 122.565196160000028, 0.971380927000041 ], [ 122.623789910000028, 0.966376044000071 ], [ 122.645274285000028, 0.959173895000049 ], [ 122.662852410000028, 0.947414455000057 ], [ 122.670176629000025, 0.931301174000055 ], [ 122.67937259200005, 0.918850002000056 ], [ 122.70045006600003, 0.908189195000091 ], [ 122.739024285000028, 0.893744208000044 ], [ 122.746918165000011, 0.886664130000042 ], [ 122.751149936000047, 0.880072333000044 ], [ 122.756846550000091, 0.875148830000057 ], [ 122.769704623000052, 0.873236395000049 ], [ 122.778819207000083, 0.870062567000048 ], [ 122.781016472000033, 0.855902411000045 ], [ 122.806000196000014, 0.847845770000049 ], [ 122.830739780000044, 0.82493724200009 ], [ 122.84888756600003, 0.818019924000055 ], [ 122.88990319100003, 0.848211981000077 ], [ 122.906993035000028, 0.852728583000044 ], [ 122.918467644000089, 0.859564520000049 ], [ 122.938243035000028, 0.907416083000044 ], [ 122.94304446700005, 0.912502346000053 ], [ 122.953868035000028, 0.921454169000071 ], [ 122.958181186000047, 0.927883205000057 ], [ 122.958181186000047, 0.945746161000045 ], [ 122.960785352000016, 0.957261460000041 ], [ 122.96802819100003, 0.962591864000046 ], [ 122.990896030000044, 0.961859442000048 ], [ 123.005056186000047, 0.959458726000094 ], [ 123.071299675000091, 0.934759833000044 ], [ 123.095713738000086, 0.928900458000044 ], [ 123.097191082302515, 0.929133722143547 ], [ 123.098977492017639, 0.922269598962828 ], [ 123.121870151985831, 0.881703598842023 ], [ 123.146674838972558, 0.866562405130878 ], [ 123.158198684221816, 0.862479966876947 ], [ 123.20517256076505, 0.836796779847475 ], [ 123.217213169052457, 0.826771552265313 ], [ 123.223155959280007, 0.817573146983136 ], [ 123.224706251991847, 0.810648504824655 ], [ 123.225378045560319, 0.782794908358312 ], [ 123.247030471179301, 0.732927151067145 ], [ 123.2569523459739, 0.723315333735627 ], [ 123.271421747016007, 0.711636461553439 ], [ 123.303047723373652, 0.693239650989085 ], [ 123.325371941661729, 0.664249172061659 ], [ 123.439421827655224, 0.611022446928359 ], [ 123.461177606061597, 0.586476142360084 ], [ 123.481021355651023, 0.556917221752371 ], [ 123.496420932679825, 0.493458564361219 ], [ 123.501071811714723, 0.459972236029841 ], [ 123.499831578264661, 0.429793198697155 ], [ 123.492338495325271, 0.397857163976937 ], [ 123.469239129781954, 0.334811916836486 ], [ 123.457560255801127, 0.311815904080674 ], [ 123.457516493918988, 0.311727637007354 ], [ 123.444672071000014, 0.31085846600007 ], [ 123.407237175000091, 0.300441799000055 ], [ 123.390147332000083, 0.297837632000039 ], [ 123.292002800000091, 0.308335679000038 ], [ 123.259125196000014, 0.320868231000077 ], [ 123.246104363000086, 0.322088934000078 ], [ 123.238780144000089, 0.32453034100007 ], [ 123.235036655000044, 0.328924872000073 ], [ 123.227061394000089, 0.342678127000056 ], [ 123.22193444100003, 0.345648505000042 ], [ 123.215586785000028, 0.352769273000092 ], [ 123.190928582000083, 0.390326239000046 ], [ 123.186696811000047, 0.393866278000075 ], [ 123.167735222000033, 0.393052476000094 ], [ 123.163584832000083, 0.39679596600007 ], [ 123.16179446700005, 0.401353257000039 ], [ 123.132578972000033, 0.44757721600007 ], [ 123.089366082000083, 0.494289455000057 ], [ 123.074229363000086, 0.516302802000041 ], [ 123.067393425000091, 0.516302802000041 ], [ 123.054047071000014, 0.500962632000039 ], [ 123.03248131600003, 0.491359768000052 ], [ 122.977875196000014, 0.482814846000053 ], [ 122.830739780000044, 0.492336330000057 ], [ 122.738291863000086, 0.481675523000092 ], [ 122.694102410000028, 0.482814846000053 ], [ 122.682302280000044, 0.48859284100007 ], [ 122.662933790000011, 0.515692450000074 ], [ 122.64966881600003, 0.523830471000053 ], [ 122.65552819100003, 0.492865302000041 ], [ 122.653168165000011, 0.480414130000042 ], [ 122.639414910000028, 0.47532786700009 ], [ 122.622243686000047, 0.476548570000091 ], [ 122.608083530000044, 0.480861721000053 ], [ 122.596853061000047, 0.489447333000044 ], [ 122.583018425000091, 0.494330145000049 ], [ 122.565928582000083, 0.496527411000045 ], [ 122.324392123000052, 0.497056382000039 ], [ 122.312510613000086, 0.49485911700009 ], [ 122.293142123000052, 0.485052802000041 ], [ 122.283457879000025, 0.482814846000053 ], [ 122.207204623000052, 0.48383209800005 ], [ 122.197113477000016, 0.482814846000053 ], [ 122.188324415000011, 0.479681708000044 ], [ 122.172862175000091, 0.470933335000041 ], [ 122.166351759, 0.469183661000045 ], [ 122.144541863000086, 0.471258856000077 ], [ 122.104258660000028, 0.480698960000041 ], [ 122.037771030000044, 0.482123114000046 ], [ 122.019704623000052, 0.477118231000077 ], [ 122.004161004000025, 0.454901434000078 ], [ 121.985118035000028, 0.448431708000044 ], [ 121.892914259, 0.435451565000051 ], [ 121.840830925000091, 0.434393622000073 ], [ 121.80046634200005, 0.426459052000041 ], [ 121.786306186000047, 0.428168036000045 ], [ 121.779470248000052, 0.433172919000071 ], [ 121.732595248000052, 0.499945380000042 ], [ 121.715505405000044, 0.51508209800005 ], [ 121.690114780000044, 0.523830471000053 ], [ 121.676442905000044, 0.523260809000078 ], [ 121.645030144000089, 0.517157294000071 ], [ 121.63599694100003, 0.516302802000041 ], [ 121.623789910000028, 0.522528387000079 ], [ 121.617360873000052, 0.531317450000074 ], [ 121.611664259, 0.541408596000053 ], [ 121.601898634, 0.551743882000039 ], [ 121.596690300000091, 0.539007880000042 ], [ 121.587738477000016, 0.532863674000055 ], [ 121.574473504000025, 0.530747789000088 ], [ 121.556651238000086, 0.530585028000075 ], [ 121.54460696700005, 0.533677476000094 ], [ 121.535899285000028, 0.538397528000075 ], [ 121.528330925000091, 0.53742096600007 ], [ 121.518728061000047, 0.523830471000053 ], [ 121.51490319100003, 0.51040273600006 ], [ 121.512705925000091, 0.497056382000039 ], [ 121.507823113000086, 0.486802476000094 ], [ 121.495127800000091, 0.482814846000053 ], [ 121.478526238000086, 0.482082424000055 ], [ 121.465342644000089, 0.479641018000052 ], [ 121.454112175000091, 0.47532786700009 ], [ 121.443614129000025, 0.469183661000045 ], [ 121.426768425000091, 0.482367255000042 ], [ 121.41334069100003, 0.483099677000041 ], [ 121.396983269000089, 0.478461005000042 ], [ 121.361338738000086, 0.473211981000077 ], [ 121.342051629000025, 0.463853257000039 ], [ 121.333319748323873, 0.462276667744003 ], [ 121.333348829684724, 0.462349351041723 ], [ 121.342650587754406, 0.485707099003378 ], [ 121.344304234153014, 0.497437648928326 ], [ 121.340893588568179, 0.553506577966175 ], [ 121.337793003144498, 0.567149155808863 ], [ 121.333762241734007, 0.575624091578561 ], [ 121.328801304336707, 0.577587795440422 ], [ 121.324460483664325, 0.578052883433827 ], [ 121.320119663891319, 0.577484443552237 ], [ 121.315468784856535, 0.575934149941077 ], [ 121.309060906635523, 0.5747972683792 ], [ 121.303324822882246, 0.5747972683792 ], [ 121.295728388054613, 0.576192532359471 ], [ 121.279915398976414, 0.582393704106153 ], [ 121.256712680645592, 0.586682847035775 ], [ 121.244672072358185, 0.593607489194255 ], [ 121.228393996185901, 0.608541978229709 ], [ 121.2157332702742, 0.627507229574974 ], [ 121.160439487592271, 0.686056627311473 ], [ 121.215113152649792, 0.709000963223843 ], [ 121.223588088419547, 0.714685370133736 ], [ 121.235370315187879, 0.724607244928393 ], [ 121.241261427672725, 0.734529119723106 ], [ 121.252733596078542, 0.763416245863027 ], [ 121.260795118899523, 0.779125881254402 ], [ 121.278675164627089, 0.803207098728592 ], [ 121.290974156232323, 0.815919501483791 ], [ 121.303169794150676, 0.826099757797579 ], [ 121.34306399980369, 0.8496642113343 ], [ 121.357636752733924, 0.855813707136861 ], [ 121.378462356052864, 0.860981350109228 ], [ 121.394947137800159, 0.861911526096037 ], [ 121.42326582225985, 0.859844469446671 ], [ 121.465330438249111, 0.850904446582945 ], [ 121.475252313043711, 0.847235419479034 ], [ 121.484140659963487, 0.845065009142843 ], [ 121.494062534758086, 0.844393215574428 ], [ 121.507963495019226, 0.846925361116519 ], [ 121.552146845400557, 0.862841702082846 ], [ 121.611884799743621, 0.877982895793991 ], [ 121.629919875102132, 0.885062568482738 ], [ 121.657463414105223, 0.898860175056996 ], [ 121.720508661245617, 0.918962307064817 ], [ 121.840397983779894, 0.970432033911209 ], [ 121.855900913596201, 0.97508291294605 ], [ 121.865202670766621, 0.97508291294605 ], [ 121.875331252035608, 0.974204412903305 ], [ 121.8898006530776, 0.971155504323065 ], [ 121.993101841077078, 0.935292060080485 ], [ 122.045656772641905, 0.943766994950863 ], [ 122.140844760976847, 0.987071845289393 ], [ 122.194071487009523, 1.023452053469498 ], [ 122.197341582048352, 1.027664880829604 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-SA", "NAME_1": "Sulawesi Utara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.097191082302515, 0.929133722143547 ], [ 123.112071160000028, 0.931301174000055 ], [ 123.13445071700005, 0.93891022300005 ], [ 123.175629102000016, 0.922552802000041 ], [ 123.190928582000083, 0.927883205000057 ], [ 123.186696811000047, 0.938177802000041 ], [ 123.182383660000028, 0.960109768000052 ], [ 123.186696811000047, 0.973618882000039 ], [ 123.207855665000011, 0.958889065000051 ], [ 123.225759311000047, 0.94953034100007 ], [ 123.254893425000091, 0.960679429000038 ], [ 123.273448113000086, 0.948919989000046 ], [ 123.278330925000091, 0.938788153000075 ], [ 123.279063347000033, 0.929836330000057 ], [ 123.282074415000011, 0.921779690000051 ], [ 123.293955925000091, 0.914211330000057 ], [ 123.30396569100003, 0.912298895000049 ], [ 123.33130944100003, 0.91282786700009 ], [ 123.341807488000086, 0.914211330000057 ], [ 123.352061394000089, 0.918158270000049 ], [ 123.359629754000025, 0.923407294000071 ], [ 123.368662957000083, 0.927435614000046 ], [ 123.383311394000089, 0.927883205000057 ], [ 123.391123894000089, 0.923814195000091 ], [ 123.397146030000044, 0.917873440000051 ], [ 123.404958530000044, 0.915350653000075 ], [ 123.417328321000014, 0.921616929000038 ], [ 123.445078972000033, 0.90298086100006 ], [ 123.519786004000025, 0.886623440000051 ], [ 123.550547722000033, 0.869818427000041 ], [ 123.562998894000089, 0.866929429000038 ], [ 123.596690300000091, 0.881822007000039 ], [ 123.612315300000091, 0.886216539000088 ], [ 123.632009311000047, 0.881659247000073 ], [ 123.672129754000025, 0.859930731000077 ], [ 123.691172722000033, 0.852728583000044 ], [ 123.831797722000033, 0.832220770000049 ], [ 123.900401238000086, 0.839667059000078 ], [ 123.909922722000033, 0.837876695000091 ], [ 123.929209832000083, 0.831529039000088 ], [ 123.937510613000086, 0.832220770000049 ], [ 123.947927280000044, 0.838934637000079 ], [ 123.951426629000025, 0.846136786000045 ], [ 123.948090040000011, 0.853013414000088 ], [ 123.937510613000086, 0.858954169000071 ], [ 123.95240319100003, 0.867987372000073 ], [ 123.991709832000083, 0.880682684000078 ], [ 124.008067254000025, 0.898179429000038 ], [ 124.120290561000047, 0.939113674000055 ], [ 124.153005405000044, 0.94594961100006 ], [ 124.166677280000044, 0.956935940000051 ], [ 124.190765821000014, 0.983099677000041 ], [ 124.223643425000091, 0.998724677000041 ], [ 124.290375196000014, 1.017320054000038 ], [ 124.314952019000089, 1.03774648600006 ], [ 124.32976321700005, 1.070542710000041 ], [ 124.346527540000011, 1.139634507000039 ], [ 124.362803582000083, 1.16742584800005 ], [ 124.374034050000091, 1.177069403000075 ], [ 124.389414910000028, 1.186102606000077 ], [ 124.407725457000083, 1.192775783000059 ], [ 124.427907748000052, 1.195379950000074 ], [ 124.494313998000052, 1.192206122000073 ], [ 124.514170769000089, 1.195379950000074 ], [ 124.523448113000086, 1.201239325000074 ], [ 124.529551629000025, 1.208685614000046 ], [ 124.536631707000083, 1.214667059000078 ], [ 124.548350457000083, 1.215806382000039 ], [ 124.556000196000014, 1.210598049000055 ], [ 124.560720248000052, 1.201076565000051 ], [ 124.566905144000089, 1.19204336100006 ], [ 124.579112175000091, 1.187892971000053 ], [ 124.593760613000086, 1.195868231000077 ], [ 124.606781446000014, 1.214789130000042 ], [ 124.615000847000033, 1.237534898000092 ], [ 124.615977410000028, 1.256822007000039 ], [ 124.606455925000091, 1.273342190000051 ], [ 124.590830925000091, 1.278794664000088 ], [ 124.551442905000044, 1.277289130000042 ], [ 124.53443444100003, 1.288641669000071 ], [ 124.532969597000033, 1.314520575000074 ], [ 124.539805535000028, 1.34243398600006 ], [ 124.548350457000083, 1.359849351000094 ], [ 124.601817254000025, 1.400132554000038 ], [ 124.609711134, 1.410711981000077 ], [ 124.62037194100003, 1.417141018000052 ], [ 124.691742384, 1.401434637000079 ], [ 124.717295769000089, 1.405829169000071 ], [ 124.732432488000086, 1.415676174000055 ], [ 124.756602410000028, 1.445217190000051 ], [ 124.774180535000028, 1.455226955000057 ], [ 124.815765821000014, 1.460598049000055 ], [ 124.835703972000033, 1.469142971000053 ], [ 124.850433790000011, 1.48969147300005 ], [ 124.843923373000052, 1.50853099200009 ], [ 124.829844597000033, 1.527533270000049 ], [ 124.822032097000033, 1.548529364000046 ], [ 124.825938347000033, 1.57290273600006 ], [ 124.836924675000091, 1.588853257000039 ], [ 124.936534050000091, 1.665594794000071 ], [ 124.945567254000025, 1.678290106000077 ], [ 124.949880405000044, 1.682603257000039 ], [ 124.968597852000016, 1.673814195000091 ], [ 124.972911004000025, 1.678290106000077 ], [ 124.970957879000025, 1.71320221600007 ], [ 124.972911004000025, 1.72296784100007 ], [ 124.983897332000083, 1.731594143000052 ], [ 125.004730665000011, 1.741034247000073 ], [ 125.025157097000033, 1.744126695000091 ], [ 125.03443444100003, 1.733465887000079 ], [ 125.034922722000033, 1.69204336100006 ], [ 125.042735222000033, 1.680568752000056 ], [ 125.061696811000047, 1.67454661700009 ], [ 125.08171634200005, 1.674383856000077 ], [ 125.147634311000047, 1.682033596000053 ], [ 125.175303582000083, 1.678168036000045 ], [ 125.179942254000025, 1.66742584800005 ], [ 125.16529381600003, 1.627346096000053 ], [ 125.167816602000016, 1.584784247000073 ], [ 125.187836134, 1.560532945000091 ], [ 125.215179884, 1.543931382000039 ], [ 125.239756707000083, 1.523667710000041 ], [ 125.249196811000047, 1.48468659100007 ], [ 125.220225457000083, 1.459051825000074 ], [ 125.17701256600003, 1.44017161700009 ], [ 125.144297722000033, 1.42133209800005 ], [ 125.115407748000052, 1.385199286000045 ], [ 125.096202019000089, 1.349514065000051 ], [ 125.033702019000089, 1.175441799000055 ], [ 124.986582879000025, 1.092962958000044 ], [ 124.954274936000047, 1.053534247000073 ], [ 124.92115319100003, 1.020656643000052 ], [ 124.916270379000025, 1.013006903000075 ], [ 124.90593509200005, 0.988104559000078 ], [ 124.90398196700005, 0.979681708000044 ], [ 124.898692254000025, 0.973049221000053 ], [ 124.863047722000033, 0.955145575000074 ], [ 124.830821160000028, 0.946437893000052 ], [ 124.822032097000033, 0.941473700000074 ], [ 124.814463738000086, 0.931708075000074 ], [ 124.799001498000052, 0.905747789000088 ], [ 124.791026238000086, 0.900580145000049 ], [ 124.766449415000011, 0.895005601000094 ], [ 124.746348504000025, 0.881252346000053 ], [ 124.71216881600003, 0.845282294000071 ], [ 124.678721550000091, 0.820379950000074 ], [ 124.663828972000033, 0.805609442000048 ], [ 124.654307488000086, 0.778021552000041 ], [ 124.639821811000047, 0.75844961100006 ], [ 124.636485222000033, 0.746649481000077 ], [ 124.636729363000086, 0.731756903000075 ], [ 124.636078321000014, 0.725083726000094 ], [ 124.624034050000091, 0.708156643000052 ], [ 124.587901238000086, 0.676988023000092 ], [ 124.57935631600003, 0.658189195000091 ], [ 124.573252800000091, 0.649115302000041 ], [ 124.569346550000091, 0.638861395000049 ], [ 124.572113477000016, 0.629584052000041 ], [ 124.57935631600003, 0.621039130000042 ], [ 124.582204623000052, 0.613755601000094 ], [ 124.582530144000089, 0.595445054000038 ], [ 124.577891472000033, 0.591620184000078 ], [ 124.55632571700005, 0.592962958000044 ], [ 124.548350457000083, 0.592027085000041 ], [ 124.544118686000047, 0.587713934000078 ], [ 124.503428582000083, 0.534002997000073 ], [ 124.499766472000033, 0.518540757000039 ], [ 124.514170769000089, 0.51007721600007 ], [ 124.514170769000089, 0.503322658000059 ], [ 124.494802280000044, 0.496283270000049 ], [ 124.482920769000089, 0.482896226000094 ], [ 124.465830925000091, 0.44867584800005 ], [ 124.438975457000083, 0.456447658000059 ], [ 124.414561394000089, 0.448146877000056 ], [ 124.392588738000086, 0.43500397300005 ], [ 124.373301629000025, 0.428168036000045 ], [ 124.34929446700005, 0.422796942000048 ], [ 124.321787957000083, 0.398871161000045 ], [ 124.199717644000089, 0.374090887000079 ], [ 124.150563998000052, 0.36985911700009 ], [ 124.109385613000086, 0.387193101000094 ], [ 124.09734134200005, 0.37962474200009 ], [ 124.068532748000052, 0.35187409100007 ], [ 124.041351759, 0.359198309000078 ], [ 124.033864780000044, 0.359320380000042 ], [ 124.023936394000089, 0.354437567000048 ], [ 124.006114129000025, 0.341457424000055 ], [ 123.996267123000052, 0.338812567000048 ], [ 123.931407097000033, 0.33624909100007 ], [ 123.910899285000028, 0.332017320000091 ], [ 123.869313998000052, 0.318304755000042 ], [ 123.858897332000083, 0.31704336100006 ], [ 123.824961785000028, 0.318304755000042 ], [ 123.807302280000044, 0.31085846600007 ], [ 123.790537957000083, 0.301255601000094 ], [ 123.781993035000028, 0.298570054000038 ], [ 123.770518425000091, 0.302069403000075 ], [ 123.758067254000025, 0.307521877000056 ], [ 123.74577884200005, 0.31085846600007 ], [ 123.724619988000086, 0.308823960000041 ], [ 123.689707879000025, 0.294501044000071 ], [ 123.656504754000025, 0.288275458000044 ], [ 123.646983269000089, 0.281642971000053 ], [ 123.63249759200005, 0.266506252000056 ], [ 123.625987175000091, 0.266587632000039 ], [ 123.61646569100003, 0.272040106000077 ], [ 123.584239129000025, 0.29759349200009 ], [ 123.571055535000028, 0.303615627000056 ], [ 123.466319207000083, 0.312323309000078 ], [ 123.457516493918988, 0.311727637007354 ], [ 123.457560255801127, 0.311815904080674 ], [ 123.469239129781954, 0.334811916836486 ], [ 123.492338495325271, 0.397857163976937 ], [ 123.499831578264661, 0.429793198697155 ], [ 123.501071811714723, 0.459972236029841 ], [ 123.496420932679825, 0.493458564361219 ], [ 123.481021355651023, 0.556917221752371 ], [ 123.461177606061597, 0.586476142360084 ], [ 123.439421827655224, 0.611022446928359 ], [ 123.325371941661729, 0.664249172061659 ], [ 123.303047723373652, 0.693239650989085 ], [ 123.271421747016007, 0.711636461553439 ], [ 123.2569523459739, 0.723315333735627 ], [ 123.247030471179301, 0.732927151067145 ], [ 123.225378045560319, 0.782794908358312 ], [ 123.224706251991847, 0.810648504824655 ], [ 123.223155959280007, 0.817573146983136 ], [ 123.217213169052457, 0.826771552265313 ], [ 123.20517256076505, 0.836796779847475 ], [ 123.158198684221816, 0.862479966876947 ], [ 123.146674838972558, 0.866562405130878 ], [ 123.121870151985831, 0.881703598842023 ], [ 123.098977492017639, 0.922269598962828 ], [ 123.097191082302515, 0.929133722143547 ] ] ], [ [ [ 125.295095248000052, 1.551662502000056 ], [ 125.301280144000089, 1.551662502000056 ], [ 125.301280144000089, 1.531195380000042 ], [ 125.296397332000083, 1.502752997000073 ], [ 125.295095248000052, 1.472845770000049 ], [ 125.291758660000028, 1.465277411000045 ], [ 125.277110222000033, 1.453070380000042 ], [ 125.273936394000089, 1.445217190000051 ], [ 125.267100457000083, 1.413804429000038 ], [ 125.248383009, 1.40298086100006 ], [ 125.215993686000047, 1.392726955000057 ], [ 125.185313347000033, 1.390692450000074 ], [ 125.17156009200005, 1.404486395000049 ], [ 125.174652540000011, 1.41547272300005 ], [ 125.182953321000014, 1.42133209800005 ], [ 125.204925977000016, 1.428127346000053 ], [ 125.250010613000086, 1.448635158000059 ], [ 125.295095248000052, 1.551662502000056 ] ] ], [ [ [ 125.432139519000089, 2.387681382000039 ], [ 125.450694207000083, 2.377915757000039 ], [ 125.456228061000047, 2.367743231000077 ], [ 125.452647332000083, 2.333075262000079 ], [ 125.42310631600003, 2.31712474200009 ], [ 125.392344597000033, 2.325669664000088 ], [ 125.370941602000016, 2.348130601000094 ], [ 125.369476759, 2.374090887000079 ], [ 125.380625847000033, 2.385728257000039 ], [ 125.396820509, 2.391424872000073 ], [ 125.415049675000091, 2.391831773000092 ], [ 125.432139519000089, 2.387681382000039 ] ] ], [ [ [ 125.443614129000025, 2.793036200000074 ], [ 125.451019727000016, 2.778387762000079 ], [ 125.45045006600003, 2.764837958000044 ], [ 125.44304446700005, 2.75259023600006 ], [ 125.416026238000086, 2.73078034100007 ], [ 125.409678582000083, 2.724514065000051 ], [ 125.404958530000044, 2.716701565000051 ], [ 125.401866082000083, 2.69993724200009 ], [ 125.406586134, 2.686346747000073 ], [ 125.418467644000089, 2.668890692000048 ], [ 125.421885613000086, 2.657212632000039 ], [ 125.423675977000016, 2.644720770000049 ], [ 125.421071811000047, 2.633937893000052 ], [ 125.411143425000091, 2.62726471600007 ], [ 125.392588738000086, 2.628892320000091 ], [ 125.382578972000033, 2.641831773000092 ], [ 125.378265821000014, 2.660345770000049 ], [ 125.377614780000044, 2.678778387000079 ], [ 125.37427819100003, 2.693101304000038 ], [ 125.359711134, 2.723089911000045 ], [ 125.356455925000091, 2.74054596600007 ], [ 125.360118035000028, 2.753322658000059 ], [ 125.378916863000086, 2.790961005000042 ], [ 125.387217644000089, 2.802394924000055 ], [ 125.40162194100003, 2.810207424000055 ], [ 125.417002800000091, 2.810248114000046 ], [ 125.431488477000016, 2.804103908000059 ], [ 125.443614129000025, 2.793036200000074 ] ] ], [ [ [ 125.652517123000052, 3.469631252000056 ], [ 125.65552819100003, 3.461737372000073 ], [ 125.663422071000014, 3.446112372000073 ], [ 125.665782097000033, 3.438788153000075 ], [ 125.664561394000089, 3.430894273000092 ], [ 125.659515821000014, 3.424790757000039 ], [ 125.624359571000014, 3.397650458000044 ], [ 125.617198113000086, 3.395086981000077 ], [ 125.602712436000047, 3.398098049000055 ], [ 125.599131707000083, 3.405503648000092 ], [ 125.598399285000028, 3.41547272300005 ], [ 125.59302819100003, 3.42609284100007 ], [ 125.572032097000033, 3.43813711100006 ], [ 125.524180535000028, 3.450588283000059 ], [ 125.507334832000083, 3.463324286000045 ], [ 125.505056186000047, 3.48078034100007 ], [ 125.513926629000025, 3.529120184000078 ], [ 125.517588738000086, 3.539048570000091 ], [ 125.52076256600003, 3.544012762000079 ], [ 125.521006707000083, 3.576971747000073 ], [ 125.517344597000033, 3.58234284100007 ], [ 125.493662957000083, 3.59438711100006 ], [ 125.442149285000028, 3.637762762000079 ], [ 125.430511915000011, 3.651353257000039 ], [ 125.42115319100003, 3.668036200000074 ], [ 125.416514519000089, 3.687567450000074 ], [ 125.418467644000089, 3.709784247000073 ], [ 125.442067905000044, 3.736558335000041 ], [ 125.47779381600003, 3.73078034100007 ], [ 125.51295006600003, 3.707912502000056 ], [ 125.534515821000014, 3.68305084800005 ], [ 125.56999759200005, 3.628119208000044 ], [ 125.57545006600003, 3.61078522300005 ], [ 125.574554884, 3.604396877000056 ], [ 125.573008660000028, 3.598456122000073 ], [ 125.572601759, 3.59125397300005 ], [ 125.57545006600003, 3.580633856000077 ], [ 125.57976321700005, 3.575873114000046 ], [ 125.596527540000011, 3.560980536000045 ], [ 125.603526238000086, 3.552720445000091 ], [ 125.613780144000089, 3.525376695000091 ], [ 125.616547071000014, 3.523016669000071 ], [ 125.627289259, 3.51821523600006 ], [ 125.638926629000025, 3.514349677000041 ], [ 125.644379102000016, 3.514878648000092 ], [ 125.646983269000089, 3.492010809000078 ], [ 125.652517123000052, 3.469631252000056 ] ] ], [ [ [ 126.74399309, 3.853385379000088 ], [ 126.780265606000057, 3.843554032000043 ], [ 126.811588086000029, 3.82386568000004 ], [ 126.833005215000071, 3.795958589000065 ], [ 126.842885834000072, 3.779539954000086 ], [ 126.856056960000046, 3.758195233000038 ], [ 126.837915072000101, 3.743390532000092 ], [ 126.81153026000004, 3.731861627000058 ], [ 126.765381844000103, 3.772892250000041 ], [ 126.739012355, 3.823800694000056 ], [ 126.74399309, 3.853385379000088 ] ] ], [ [ [ 126.656546759000094, 3.981478084000059 ], [ 126.701072043000067, 3.93385124100007 ], [ 126.712628618000053, 3.920714118000092 ], [ 126.714275847000067, 3.901001649000079 ], [ 126.701053991000094, 3.879630668000061 ], [ 126.687851417000047, 3.853330733000064 ], [ 126.696088573, 3.812256189000038 ], [ 126.677923645000078, 3.812235590000057 ], [ 126.669686034000051, 3.854956748000063 ], [ 126.661431078000078, 3.897676902000057 ], [ 126.666391484000087, 3.930547457000046 ], [ 126.648214547000066, 3.951896161000093 ], [ 126.626722436000023, 3.965031270000054 ], [ 126.620095856000034, 3.991323517000069 ], [ 126.613464343000032, 4.025835761000053 ], [ 126.615107719000093, 4.04391471200006 ], [ 126.643222116000061, 4.027484228000048 ], [ 126.656546759000094, 3.981478084000059 ] ] ], [ [ [ 126.870708719000049, 4.331393328000047 ], [ 126.900425813000084, 4.306702378000068 ], [ 126.922129754000025, 4.282049872000073 ], [ 126.863536004000025, 4.210638739000046 ], [ 126.809874762000049, 4.157243649000065 ], [ 126.808307400000103, 4.08661131100007 ], [ 126.809978715000057, 4.037348902000076 ], [ 126.798437505000038, 4.017644473000075 ], [ 126.758896992000018, 3.993006460000061 ], [ 126.71452884200005, 4.011623440000051 ], [ 126.676419985000052, 4.004482550000091 ], [ 126.664762023000094, 4.034055368000054 ], [ 126.676286053000013, 4.060346120000077 ], [ 126.691185890000042, 4.078410261000045 ], [ 126.720929163000051, 4.096468192000088 ], [ 126.758697220000045, 4.185200129000066 ], [ 126.803206547000059, 4.222968111000057 ], [ 126.791631593000034, 4.241055919000075 ], [ 126.776772275000098, 4.245998363000069 ], [ 126.758608132000063, 4.250943112000073 ], [ 126.710700332000101, 4.264137215000062 ], [ 126.707356412000081, 4.28716412700004 ], [ 126.715651502000014, 4.308494709000058 ], [ 126.707204623000052, 4.333563544000071 ], [ 126.703379754000025, 4.343247789000088 ], [ 126.699961785000028, 4.355454820000091 ], [ 126.699229363000086, 4.36790599200009 ], [ 126.697207148000075, 4.397426780000046 ], [ 126.705407056000013, 4.423747300000059 ], [ 126.73951256600003, 4.473089911000045 ], [ 126.740733269000089, 4.480169989000046 ], [ 126.741221550000091, 4.491888739000046 ], [ 126.740082227000016, 4.501695054000038 ], [ 126.734873894000089, 4.523871161000045 ], [ 126.733734571000014, 4.53587474200009 ], [ 126.744395379000025, 4.545599677000041 ], [ 126.768728061000047, 4.550279039000088 ], [ 126.796397332000083, 4.550482489000046 ], [ 126.816254102000016, 4.546454169000071 ], [ 126.829844597000033, 4.537054755000042 ], [ 126.833343946000014, 4.527736721000053 ], [ 126.835134311000047, 4.517523505000042 ], [ 126.84302819100003, 4.504868882000039 ], [ 126.855723504000025, 4.498277085000041 ], [ 126.866953972000033, 4.497992255000042 ], [ 126.875010613000086, 4.494330145000049 ], [ 126.877289259, 4.478013414000088 ], [ 126.877207879000025, 4.478176174000055 ], [ 126.884776238000086, 4.456854559000078 ], [ 126.879079623000052, 4.43585846600007 ], [ 126.868907097000033, 4.41437409100007 ], [ 126.863536004000025, 4.391913153000075 ], [ 126.859129079000013, 4.367569102000061 ], [ 126.870708719000049, 4.331393328000047 ] ] ], [ [ [ 125.393402540000011, 2.118231512000079 ], [ 125.404958530000044, 2.130275783000059 ], [ 125.408457879000025, 2.122259833000044 ], [ 125.406260613000086, 2.107326565000051 ], [ 125.403168165000011, 2.102769273000092 ], [ 125.397797071000014, 2.104193427000041 ], [ 125.393321160000028, 2.104396877000056 ], [ 125.390879754000025, 2.101752020000049 ], [ 125.375498894000089, 2.09210846600007 ], [ 125.370127800000091, 2.091701565000051 ], [ 125.362152540000011, 2.086371161000045 ], [ 125.356130405000044, 2.077215887000079 ], [ 125.349131707000083, 2.071234442000048 ], [ 125.340505405000044, 2.073309637000079 ], [ 125.334239129000025, 2.081854559000078 ], [ 125.33521569100003, 2.09243398600006 ], [ 125.340586785000028, 2.100775458000044 ], [ 125.344574415000011, 2.102240302000041 ], [ 125.350352410000028, 2.109035549000055 ], [ 125.357188347000033, 2.109849351000094 ], [ 125.357188347000033, 2.11391836100006 ], [ 125.353770379000025, 2.116685289000088 ], [ 125.35124759200005, 2.122259833000044 ], [ 125.354258660000028, 2.129868882000039 ], [ 125.359873894000089, 2.127630927000041 ], [ 125.36451256600003, 2.123602606000077 ], [ 125.367930535000028, 2.12563711100006 ], [ 125.372080925000091, 2.124416408000059 ], [ 125.377940300000091, 2.120591539000088 ], [ 125.386241082000083, 2.118312893000052 ], [ 125.393402540000011, 2.118231512000079 ] ] ], [ [ [ 126.591156446000014, 5.557114976000094 ], [ 126.598643425000091, 5.565375067000048 ], [ 126.602875196000014, 5.564032294000071 ], [ 126.599375847000033, 5.553615627000056 ], [ 126.595469597000033, 5.548407294000071 ], [ 126.591156446000014, 5.557114976000094 ] ] ], [ [ [ 125.172211134, 1.799221096000053 ], [ 125.176605665000011, 1.792792059000078 ], [ 125.17701256600003, 1.77875397300005 ], [ 125.154063347000033, 1.75649648600006 ], [ 125.15202884200005, 1.747707424000055 ], [ 125.149424675000091, 1.742173570000091 ], [ 125.144704623000052, 1.741848049000055 ], [ 125.137217644000089, 1.747951565000051 ], [ 125.13209069100003, 1.758368231000077 ], [ 125.129730665000011, 1.772406317000048 ], [ 125.123871290000011, 1.789048570000091 ], [ 125.12232506600003, 1.807033596000053 ], [ 125.125987175000091, 1.815415757000039 ], [ 125.129405144000089, 1.82843659100007 ], [ 125.135264519000089, 1.830959377000056 ], [ 125.144541863000086, 1.822333075000074 ], [ 125.15398196700005, 1.810736395000049 ], [ 125.16570071700005, 1.802232164000088 ], [ 125.172211134, 1.799221096000053 ] ] ], [ [ [ 127.130381707000083, 4.774400132000039 ], [ 127.139170769000089, 4.766587632000039 ], [ 127.14576256600003, 4.752183335000041 ], [ 127.13599694100003, 4.740383205000057 ], [ 127.123057488000086, 4.752508856000077 ], [ 127.121429884, 4.768500067000048 ], [ 127.124034050000091, 4.772040106000077 ], [ 127.130381707000083, 4.774400132000039 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-SR", "NAME_1": "Sulawesi Barat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.490926985511791, -3.486539665106994 ], [ 119.485850457000083, -3.483493747999944 ], [ 119.465668165000011, -3.477227471999925 ], [ 119.456797722000033, -3.470961195999962 ], [ 119.432383660000028, -3.475030205999929 ], [ 119.403005405000044, -3.461521091999941 ], [ 119.372894727000016, -3.442559502999927 ], [ 119.34693444100003, -3.430596612999921 ], [ 119.31177819100003, -3.426364841999941 ], [ 119.297618035000028, -3.427911065999922 ], [ 119.291677280000044, -3.434014580999929 ], [ 119.283946160000028, -3.445896091999941 ], [ 119.24537194100003, -3.476169528999947 ], [ 119.229665561000047, -3.485284112999921 ], [ 119.208994988000086, -3.489841403999947 ], [ 119.192149285000028, -3.486911716999941 ], [ 119.175954623000052, -3.481377862999921 ], [ 119.157969597000033, -3.478448174999926 ], [ 119.140879754000025, -3.48211028399993 ], [ 119.117686394000089, -3.49968840899993 ], [ 119.099375847000033, -3.505059502999927 ], [ 119.02702884200005, -3.509698174999926 ], [ 118.998708530000044, -3.524997653999947 ], [ 119.004405144000089, -3.559747002999927 ], [ 118.992360873000052, -3.556735934999949 ], [ 118.979177280000044, -3.542168877999927 ], [ 118.970225457000083, -3.539808851999908 ], [ 118.961924675000091, -3.546075127999927 ], [ 118.949473504000025, -3.569024346999925 ], [ 118.938812696000014, -3.573988539999959 ], [ 118.926768425000091, -3.56609465899993 ], [ 118.916840040000011, -3.546807549999926 ], [ 118.88013756600003, -3.443129164999959 ], [ 118.858897332000083, -3.411309502999927 ], [ 118.848968946000014, -3.390557549999926 ], [ 118.842295769000089, -3.368340752999927 ], [ 118.839854363000086, -3.348077080999929 ], [ 118.843760613000086, -3.329034112999921 ], [ 118.850433790000011, -3.312432549999926 ], [ 118.852549675000091, -3.295586846999925 ], [ 118.834483269000089, -3.259942315999922 ], [ 118.823415561000047, -3.193291924999926 ], [ 118.817149285000028, -3.171807549999926 ], [ 118.811859571000014, -3.162530205999929 ], [ 118.803477410000028, -3.156508070999962 ], [ 118.792002800000091, -3.151543877999927 ], [ 118.781993035000028, -3.144301039999959 ], [ 118.777842644000089, -3.132012627999927 ], [ 118.775645379000025, -3.122165622999944 ], [ 118.766368035000028, -3.102634372999944 ], [ 118.764170769000089, -3.090915622999944 ], [ 118.767751498000052, -3.084161065999922 ], [ 118.784922722000033, -3.064548434999949 ], [ 118.791351759, -3.060153903999947 ], [ 118.799164259, -3.06178150799991 ], [ 118.822520379000025, -3.071465752999927 ], [ 118.836110873000052, -3.073663018999923 ], [ 118.848399285000028, -3.067803643999923 ], [ 118.853282097000033, -3.053399346999925 ], [ 118.856944207000083, -2.972832940999922 ], [ 118.864024285000028, -2.942966403999947 ], [ 118.88249759200005, -2.923760674999926 ], [ 118.885752800000091, -2.909926039999959 ], [ 118.887705925000091, -2.88250090899993 ], [ 118.885508660000028, -2.869561455999929 ], [ 118.880625847000033, -2.86101653399993 ], [ 118.872406446000014, -2.854668877999927 ], [ 118.860362175000091, -2.848402601999908 ], [ 118.834320509, -2.840997002999927 ], [ 118.812998894000089, -2.844170830999929 ], [ 118.771657748000052, -2.862074476999908 ], [ 118.771006707000083, -2.839288018999923 ], [ 118.760101759, -2.796807549999926 ], [ 118.757334832000083, -2.775811455999929 ], [ 118.760427280000044, -2.765394789999959 ], [ 118.774587436000047, -2.745293877999927 ], [ 118.777842644000089, -2.734795830999929 ], [ 118.777842644000089, -2.690118096999925 ], [ 118.78248131600003, -2.672946872999944 ], [ 118.792328321000014, -2.649997653999947 ], [ 118.806162957000083, -2.629815362999921 ], [ 118.822764519000089, -2.621270440999922 ], [ 118.84148196700005, -2.627699476999908 ], [ 118.855479363000086, -2.641534112999921 ], [ 118.871104363000086, -2.653903903999947 ], [ 118.894541863000086, -2.656019789999959 ], [ 118.914398634, -2.648370049999926 ], [ 118.958506707000083, -2.618747653999947 ], [ 118.98170006600003, -2.597426039999959 ], [ 119.004405144000089, -2.585137627999927 ], [ 119.01490319100003, -2.577243747999944 ], [ 119.021006707000083, -2.567478122999944 ], [ 119.031586134, -2.53248463299991 ], [ 119.047373894000089, -2.512872002999927 ], [ 119.064789259, -2.503024997999944 ], [ 119.083506707000083, -2.495049737999921 ], [ 119.135752800000091, -2.454278252999927 ], [ 119.141449415000011, -2.441989841999941 ], [ 119.137543165000011, -2.379571221999925 ], [ 119.130381707000083, -2.35475025799991 ], [ 119.127207879000025, -2.255303643999923 ], [ 119.131195509, -2.244398695999962 ], [ 119.138438347000033, -2.231052341999941 ], [ 119.14185631600003, -2.216729424999926 ], [ 119.13404381600003, -2.203545830999929 ], [ 119.171234571000014, -2.149509372999944 ], [ 119.185557488000086, -2.120863539999959 ], [ 119.21607506600003, -2.009942315999922 ], [ 119.234629754000025, -1.982191664999959 ], [ 119.264414910000028, -1.963311455999929 ], [ 119.287364129000025, -1.958428643999923 ], [ 119.304047071000014, -1.961521091999941 ], [ 119.319021030000044, -1.967054945999962 ], [ 119.336436394000089, -1.970147393999923 ], [ 119.347015821000014, -1.959405205999929 ], [ 119.354014519000089, -1.934747002999927 ], [ 119.367442254000025, -1.847263278999947 ], [ 119.367035352000016, -1.832940362999921 ], [ 119.365244988000086, -1.827732028999947 ], [ 119.360118035000028, -1.824476820999962 ], [ 119.350108269000089, -1.816176039999959 ], [ 119.335703972000033, -1.79810963299991 ], [ 119.328786655000044, -1.781182549999926 ], [ 119.308441602000016, -1.694919528999947 ], [ 119.305430535000028, -1.65203215899993 ], [ 119.30982506600003, -1.63014088299991 ], [ 119.328868035000028, -1.593194268999923 ], [ 119.33326256600003, -1.57350025799991 ], [ 119.309092644000089, -1.504571221999925 ], [ 119.30241946700005, -1.493747653999947 ], [ 119.296885613000086, -1.41139088299991 ], [ 119.294769727000016, -1.405368747999944 ], [ 119.294444207000083, -1.399183851999908 ], [ 119.298594597000033, -1.387872002999927 ], [ 119.305511915000011, -1.38054778399993 ], [ 119.328461134, -1.36060963299991 ], [ 119.33326256600003, -1.350192966999941 ], [ 119.330739780000044, -1.330254815999922 ], [ 119.312836134, -1.28484465899993 ], [ 119.313649936000047, -1.24578215899993 ], [ 119.328379754000025, -1.214450778999947 ], [ 119.350433790000011, -1.18914153399993 ], [ 119.373708530000044, -1.168877862999921 ], [ 119.381358269000089, -1.158623955999929 ], [ 119.389414910000028, -1.145196221999925 ], [ 119.399180535000028, -1.133477471999925 ], [ 119.411875847000033, -1.128513278999947 ], [ 119.429209832000083, -1.12428150799991 ], [ 119.443614129000025, -1.113051039999959 ], [ 119.453135613000086, -1.096449476999908 ], [ 119.459971550000091, -1.057712497999944 ], [ 119.474131707000083, -1.020928643999923 ], [ 119.482432488000086, -0.963474216999941 ], [ 119.489756707000083, -0.945977471999925 ], [ 119.500824415000011, -0.932305596999925 ], [ 119.508555535000028, -0.918715101999908 ], [ 119.518077019000089, -0.876722914999959 ], [ 119.525157097000033, -0.860446872999944 ], [ 119.537364129000025, -0.850030205999929 ], [ 119.566219897630162, -0.833692149972762 ], [ 119.566531609845924, -0.836279391580661 ], [ 119.572526076017539, -0.877930596419901 ], [ 119.566841669107703, -0.993995863118585 ], [ 119.568185256244533, -1.027223809031568 ], [ 119.572112664867518, -1.052028496917615 ], [ 119.595367059142404, -1.119001152681051 ], [ 119.601774937363416, -1.150730482725635 ], [ 119.598674351040472, -1.168662205296528 ], [ 119.588752476245759, -1.183958428638562 ], [ 119.526534052304669, -1.223594251873237 ], [ 119.511547886425774, -1.237081800984356 ], [ 119.498525425308117, -1.255375257861886 ], [ 119.486949904114681, -1.288603203774869 ], [ 119.487363316164078, -1.311237480425405 ], [ 119.494494663897626, -1.329324232627243 ], [ 119.507827183377799, -1.340176282509447 ], [ 119.525397169843473, -1.349064629429108 ], [ 119.641669143016543, -1.393713066904525 ], [ 119.656655307996061, -1.402756442555813 ], [ 119.670607945100528, -1.41655405002939 ], [ 119.68161502461362, -1.433762302188484 ], [ 119.692518752238584, -1.461254163448871 ], [ 119.706781446806303, -1.565433851491036 ], [ 119.714739617739156, -1.591737156144859 ], [ 119.724661493433132, -1.612511081721038 ], [ 119.768379754921739, -1.669406833958249 ], [ 119.794424677157053, -1.695555108081805 ], [ 119.822433303254343, -1.729041435513864 ], [ 119.838969760945702, -1.757153416197184 ], [ 119.845480991954219, -1.775136813812935 ], [ 119.846411167041651, -1.791724949246998 ], [ 119.838246291433165, -1.819216810507385 ], [ 119.822743360717482, -1.871823418915653 ], [ 119.821606480054925, -1.886654555163602 ], [ 119.822123243992451, -1.908151951151638 ], [ 119.827032505445686, -1.924016615274581 ], [ 119.835869174622644, -1.938692721891584 ], [ 119.846617872616662, -1.948717949473803 ], [ 119.855299513961313, -1.953833916502049 ], [ 119.873489618051394, -1.955384210113209 ], [ 119.825017124740498, -2.046231377775882 ], [ 119.813855014697083, -2.060494073242921 ], [ 119.80150434804716, -2.071656181487583 ], [ 119.789102003654534, -2.07796070692109 ], [ 119.77762983614798, -2.078580823646121 ], [ 119.766726109422393, -2.076927179046095 ], [ 119.753496941830349, -2.081784762756627 ], [ 119.646268345207886, -2.176404311209978 ], [ 119.635261264795531, -2.193974297675709 ], [ 119.631230503384927, -2.213094577752543 ], [ 119.627509800336952, -2.261825452582571 ], [ 119.624099155651493, -2.280377291878551 ], [ 119.62358239081459, -2.293554782627098 ], [ 119.626889682712658, -2.301823011922465 ], [ 119.637586704762612, -2.308954359655957 ], [ 119.660324335099972, -2.31810108809475 ], [ 119.672468296174884, -2.324663995047331 ], [ 119.707091506068082, -2.353912855493888 ], [ 119.72166425989758, -2.371999606796408 ], [ 119.729002313206138, -2.384350273446387 ], [ 119.732516310679102, -2.396287529845608 ], [ 119.729002313206138, -2.413030694011354 ], [ 119.716393264137764, -2.438817233828274 ], [ 119.715669793725965, -2.449979342972313 ], [ 119.718563673574636, -2.460366305760431 ], [ 119.728433873324548, -2.474525648439908 ], [ 119.734531692283781, -2.486617933570813 ], [ 119.737683953651526, -2.502275893018066 ], [ 119.734893426590361, -2.527287285579803 ], [ 119.738975864844292, -2.565269464214396 ], [ 119.774787632243374, -2.613380221420073 ], [ 119.773650750681554, -2.624490654620047 ], [ 119.768276402134234, -2.644024346746221 ], [ 119.767036166885532, -2.655341484621829 ], [ 119.770446811571105, -2.66536671310331 ], [ 119.777061395367014, -2.673531588711853 ], [ 119.783469272688762, -2.68004281972037 ], [ 119.786879917374222, -2.686864109091346 ], [ 119.785639683024897, -2.695028984699888 ], [ 119.777991571353937, -2.707276299461682 ], [ 119.766829462209898, -2.717869967824754 ], [ 119.727762078856813, -2.737817071100949 ], [ 119.661254511086781, -2.758229261471229 ], [ 119.636449823200678, -2.756472263184435 ], [ 119.598054234315441, -2.747273857902258 ], [ 119.579295689444507, -2.745568535559471 ], [ 119.560433790886691, -2.746498711546337 ], [ 119.533355340776325, -2.750581149800212 ], [ 119.515165235786981, -2.75869434946469 ], [ 119.541726922859198, -2.802877698946645 ], [ 119.543587273933554, -2.814401544195903 ], [ 119.542450393270997, -2.827217298839287 ], [ 119.53748945497432, -2.847319430847051 ], [ 119.537179396611805, -2.868661798103517 ], [ 119.538626337435517, -2.887730400437647 ], [ 119.543225538727597, -2.906902358257241 ], [ 119.607045933123231, -3.0591411266617 ], [ 119.635261264795531, -3.096813246034458 ], [ 119.641359083754651, -3.110300795145577 ], [ 119.639188674317779, -3.120946139452769 ], [ 119.626372918775132, -3.127147312098771 ], [ 119.581879510930662, -3.136914158161858 ], [ 119.562190790072805, -3.145027357826336 ], [ 119.541106806134167, -3.156499526232153 ], [ 119.507827183377799, -3.180632418751145 ], [ 119.489378696869267, -3.189210707308291 ], [ 119.475116001402284, -3.193034763143828 ], [ 119.465452509026022, -3.191536147275372 ], [ 119.449226108797802, -3.186420180247126 ], [ 119.43971764515311, -3.185179944998481 ], [ 119.43000247593352, -3.187350356233935 ], [ 119.421114129913121, -3.193396497450408 ], [ 119.414241163698648, -3.204300225075315 ], [ 119.411915724630944, -3.214687187863433 ], [ 119.414241163698648, -3.227244560987685 ], [ 119.417600132440157, -3.236236260694909 ], [ 119.443024937051177, -3.265950209134871 ], [ 119.450621372778073, -3.275975436717033 ], [ 119.452946811845891, -3.280936375013709 ], [ 119.457907750142454, -3.318195081437864 ], [ 119.460801629991238, -3.355712172079109 ], [ 119.463850538571478, -3.369871514758586 ], [ 119.483022496391072, -3.427439059664891 ], [ 119.49087731273778, -3.486143487032336 ], [ 119.490926985511791, -3.486539665106994 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-JA", "NAME_1": "Jambi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.438703422624826, -0.746179762885731 ], [ 103.450694207000026, -0.750095309999949 ], [ 103.463145379000082, -0.757745049999926 ], [ 103.468516472000033, -0.767836195999962 ], [ 103.464854363000029, -0.782972914999959 ], [ 103.447520379000082, -0.799411716999941 ], [ 103.441172722000033, -0.812595309999949 ], [ 103.485362175000034, -0.804945570999962 ], [ 103.507334832000026, -0.804945570999962 ], [ 103.527110222000033, -0.816013278999947 ], [ 103.537608269000032, -0.830336195999962 ], [ 103.552500847000033, -0.861097914999959 ], [ 103.564707879000082, -0.874607028999947 ], [ 103.569102410000028, -0.875664971999925 ], [ 103.581065300000034, -0.873793226999908 ], [ 103.585785352000073, -0.874607028999947 ], [ 103.587412957000026, -0.877048434999949 ], [ 103.590505405000044, -0.885186455999929 ], [ 103.592051629000082, -0.887627862999921 ], [ 103.598317905000044, -0.894463799999926 ], [ 103.60474694100003, -0.90357838299991 ], [ 103.61264082100007, -0.911553643999923 ], [ 103.63445071700005, -0.919366143999923 ], [ 103.640635613000029, -0.928887627999927 ], [ 103.644786004000082, -0.938571872999944 ], [ 103.650401238000029, -0.942966403999947 ], [ 103.68873131600003, -0.949151299999926 ], [ 103.702891472000033, -0.960056247999944 ], [ 103.725108269000032, -0.98560963299991 ], [ 103.739756707000026, -0.990655205999929 ], [ 103.762054884000065, -0.992771091999941 ], [ 103.780039910000028, -0.998793226999908 ], [ 103.794118686000047, -1.00945403399993 ], [ 103.804942254000082, -1.024834893999923 ], [ 103.820811394000032, -1.063083591999941 ], [ 103.828868035000028, -1.073418877999927 ], [ 103.83912194100003, -1.032810153999947 ], [ 103.856293165000068, -1.013767184999949 ], [ 103.87859134200005, -0.99928150799991 ], [ 103.900401238000029, -0.990655205999929 ], [ 103.942393425000034, -0.982028903999947 ], [ 103.955821160000028, -0.976983330999929 ], [ 104.022308790000068, -1.008233330999929 ], [ 104.040782097000033, -1.021742445999962 ], [ 104.056895379000082, -1.027520440999922 ], [ 104.107920769000032, -1.02898528399993 ], [ 104.126963738000029, -1.031670830999929 ], [ 104.189463738000029, -1.068129164999959 ], [ 104.212412957000026, -1.073337497999944 ], [ 104.253672722000033, -1.055840752999927 ], [ 104.262705925000034, -1.050551039999959 ], [ 104.31959069100003, -1.033623955999929 ], [ 104.377207879000082, -1.031670830999929 ], [ 104.381846550000034, -1.040785414999959 ], [ 104.410492384000065, -1.128350518999923 ], [ 104.397471550000034, -1.191338799999926 ], [ 104.401377800000034, -1.230889580999929 ], [ 104.410655144000032, -1.262465101999908 ], [ 104.415049675000034, -1.271905205999929 ], [ 104.44499759200005, -1.304620049999926 ], [ 104.449229363000029, -1.316013278999947 ], [ 104.456065300000034, -1.379082940999922 ], [ 104.45435631600003, -1.531019789999959 ], [ 104.462738477000073, -1.57350025799991 ], [ 104.479258660000028, -1.615817966999941 ], [ 104.517344597000033, -1.688409112999921 ], [ 104.531586134000065, -1.73406340899993 ], [ 104.515460647191048, -1.740616956707186 ], [ 104.508019240195722, -1.740203545557165 ], [ 104.495926955064874, -1.73782642964602 ], [ 104.486418492319501, -1.732400404255259 ], [ 104.456601190192714, -1.710541273960644 ], [ 104.428282504833703, -1.693849785739019 ], [ 104.411280959148883, -1.688940525185103 ], [ 104.397845086881205, -1.689974053959418 ], [ 104.388646681599027, -1.69638193128111 ], [ 104.382445509852346, -1.702841484546866 ], [ 104.375934278843829, -1.713848564959335 ], [ 104.349062535207793, -1.781286308716176 ], [ 104.33821048442627, -1.791983330766129 ], [ 104.321518996204645, -1.804333997416052 ], [ 104.235787794670955, -1.828518568577067 ], [ 104.174189488354159, -1.836425062666535 ], [ 104.125613641356438, -1.830637302069817 ], [ 103.957871942236295, -1.790588066785858 ], [ 103.91787438379572, -1.789399509279917 ], [ 103.886351760225523, -1.794773857827295 ], [ 103.535003696962974, -1.967941583237462 ], [ 103.520275914401907, -1.979052015538116 ], [ 103.528957553947919, -1.997965590039939 ], [ 103.517692092016375, -2.120387058116251 ], [ 103.521826206214428, -2.151289564961473 ], [ 103.531748081009084, -2.174182224030403 ], [ 103.53665734336164, -2.180745130983041 ], [ 103.548077834024753, -2.191803888238837 ], [ 103.552573684328024, -2.197384941461905 ], [ 103.552573684328024, -2.203482760421082 ], [ 103.547767774762974, -2.210407402579563 ], [ 103.537949252755766, -2.217693779944 ], [ 103.523686558188047, -2.224515068415712 ], [ 103.506633334760522, -2.229165947450497 ], [ 103.47040815621142, -2.233661797753768 ], [ 103.459866163792356, -2.238260999945226 ], [ 103.453871697620684, -2.246167494034637 ], [ 103.450202671416093, -2.25934498478324 ], [ 103.449324172272668, -2.268285006747647 ], [ 103.449892613053635, -2.277225029611429 ], [ 103.461158074985121, -2.323837171848027 ], [ 103.463225131634488, -2.351535739582744 ], [ 103.462605014909457, -2.35799529374782 ], [ 103.460227898998312, -2.365436699843826 ], [ 103.459504428586456, -2.371327813227992 ], [ 103.459607782273281, -2.376960544193764 ], [ 103.461054722197616, -2.383110039996382 ], [ 103.461468134246957, -2.389621270105522 ], [ 103.460537958260147, -2.397011000257464 ], [ 103.457023959887806, -2.402281996017336 ], [ 103.448962437066768, -2.404194023935077 ], [ 103.438730503010277, -2.403108819216641 ], [ 103.418990106208412, -2.393807061146958 ], [ 103.303648309022208, -2.284563083819251 ], [ 103.295896843664366, -2.268646741953603 ], [ 103.289282260767664, -2.245547377309606 ], [ 103.271918979877, -2.209063815442732 ], [ 103.259103225233616, -2.193664239313193 ], [ 103.247941115190258, -2.184000746037611 ], [ 103.232644890948905, -2.179453219790275 ], [ 103.21559166932002, -2.185964450798792 ], [ 103.19362918533858, -2.226220390758442 ], [ 103.177661166629491, -2.248802991464913 ], [ 103.169599643808453, -2.271230563439758 ], [ 103.170219761432804, -2.286113375631771 ], [ 103.177557814741306, -2.297275485675129 ], [ 103.187479690435339, -2.306990654894832 ], [ 103.196264682768856, -2.318411146457265 ], [ 103.202982619352383, -2.333552341067673 ], [ 103.205153028789198, -2.349055270884037 ], [ 103.204532912064224, -2.361302584746511 ], [ 103.198745152366826, -2.369829196460273 ], [ 103.186549514448473, -2.377994072968079 ], [ 103.143037957635613, -2.394375501927868 ], [ 103.122884148784408, -2.397992852188395 ], [ 103.097976109010176, -2.390861504454904 ], [ 103.044439324615098, -2.369209079735242 ], [ 103.015397169743551, -2.381714776016111 ], [ 102.986251662084499, -2.380009453673381 ], [ 102.953798863426755, -2.369054050104353 ], [ 102.922586298219073, -2.363421319138581 ], [ 102.893854200810665, -2.354222913856404 ], [ 102.874320509583811, -2.351587415526808 ], [ 102.862021518877953, -2.353912855493888 ], [ 102.851686232933275, -2.364971611850422 ], [ 102.843728062000423, -2.380784600029301 ], [ 102.839593946903108, -2.397682793825879 ], [ 102.841247593301773, -2.411066990149493 ], [ 102.847965528985924, -2.421608981669181 ], [ 102.856440463856302, -2.428636976615167 ], [ 102.863726841220682, -2.437732029109839 ], [ 102.866982456275309, -2.448429050260472 ], [ 102.863571811589793, -2.461761569740645 ], [ 102.791741571216505, -2.567853284801288 ], [ 102.778719110098791, -2.583356214617595 ], [ 102.762286005194937, -2.596947116516219 ], [ 102.745232781767413, -2.606507257004296 ], [ 102.733760614260916, -2.610382988783897 ], [ 102.727559441614915, -2.607024020941822 ], [ 102.724148797828718, -2.601908053913576 ], [ 102.718671095594516, -2.602269789119475 ], [ 102.699240757155167, -2.62066659878451 ], [ 102.681877476264503, -2.632552179239667 ], [ 102.634128453365406, -2.65808033573893 ], [ 102.618677198593787, -2.671516208905928 ], [ 102.610357294253674, -2.685830579417711 ], [ 102.605396355956998, -2.699214775741325 ], [ 102.596404657149151, -2.709808445003716 ], [ 102.578731316996652, -2.716733087162254 ], [ 102.515996128218717, -2.72164234771617 ], [ 102.502921991156938, -2.726603285113526 ], [ 102.486850620559665, -2.729910577011537 ], [ 102.46979739803146, -2.730220636273373 ], [ 102.448455030774994, -2.728463637087202 ], [ 102.420601434308708, -2.71957529106686 ], [ 102.397760451183842, -2.709911797791221 ], [ 102.350941604271554, -2.68019784845194 ], [ 102.298024936601507, -2.666917005815151 ], [ 102.260197789396443, -2.639528496442949 ], [ 102.2331193383867, -2.684383639493376 ], [ 102.179169142841602, -2.717714939093185 ], [ 102.160979038751577, -2.725879814701671 ], [ 102.117054070788697, -2.735181572771353 ], [ 102.107338901568994, -2.741641126936486 ], [ 102.06682457919095, -2.78236215578886 ], [ 102.057212761859432, -2.776160984042178 ], [ 102.032718134134541, -2.770114841027123 ], [ 102.019799024905012, -2.763913669280441 ], [ 101.994994337918342, -2.749030857088371 ], [ 101.962644891148784, -2.735026544039783 ], [ 101.949002313306096, -2.735026544039783 ], [ 101.940940789585738, -2.737041924745029 ], [ 101.920476923271337, -2.74479339010287 ], [ 101.91029666515891, -2.745051771621945 ], [ 101.900426467207637, -2.740142511068029 ], [ 101.878929071219602, -2.714304293508349 ], [ 101.867870314863126, -2.704640802031406 ], [ 101.841928746314522, -2.697819512660374 ], [ 101.82766604994822, -2.692290133582787 ], [ 101.772785679315632, -2.663661390760581 ], [ 101.736715528598722, -2.636272882287699 ], [ 101.704004348421904, -2.601132907557655 ], [ 101.681835157966134, -2.567233168076257 ], [ 101.6464884785604, -2.536175631600145 ], [ 101.638685337258494, -2.510440768626609 ], [ 101.631812371943397, -2.500105482681874 ], [ 101.617136265326337, -2.486669609514877 ], [ 101.585510288968635, -2.474112237289944 ], [ 101.572901239000942, -2.464655449589316 ], [ 101.56421959765629, -2.450237724491387 ], [ 101.539104852307048, -2.350967298801834 ], [ 101.521328160266364, -2.322596937498702 ], [ 101.519054397142668, -2.310504653267117 ], [ 101.517142369224928, -2.305233655708662 ], [ 101.511302931784826, -2.298309013550124 ], [ 101.500760940265138, -2.290247490729143 ], [ 101.483449335318539, -2.280997409502845 ], [ 101.459729852150929, -2.258414808796374 ], [ 101.451978386793087, -2.248596286789223 ], [ 101.443606804710214, -2.241258232581401 ], [ 101.435751988363506, -2.236245619239924 ], [ 101.418698764936039, -2.238932793513641 ], [ 101.335603061731888, -2.296965427312614 ], [ 101.299946323963638, -2.179608249421165 ], [ 101.259742059048733, -2.081474705293431 ], [ 101.24640953956856, -2.05832366290673 ], [ 101.235557488787038, -2.043802585021297 ], [ 101.203724806854325, -2.018532810041165 ], [ 101.188531936299796, -2.001996351450487 ], [ 101.170858596147241, -1.975331312490084 ], [ 101.142281529269098, -1.919985853864091 ], [ 101.12765709769684, -1.865002129544678 ], [ 101.118665398888993, -1.806659438282452 ], [ 101.113911167066647, -1.704908542095552 ], [ 101.151118199345376, -1.711781508309969 ], [ 101.168481480236096, -1.708939303506043 ], [ 101.18512129071496, -1.715243828939549 ], [ 101.20362145406682, -1.726405938083587 ], [ 101.226049025142345, -1.728421318788833 ], [ 101.402989130443984, -1.702066339090266 ], [ 101.415546502668917, -1.71410694647841 ], [ 101.44856774300689, -1.716742444808006 ], [ 101.460970087399573, -1.711574801835638 ], [ 101.475697869960698, -1.702118015034387 ], [ 101.500140821741468, -1.664135837299057 ], [ 101.519364454605864, -1.639847914249856 ], [ 101.557501661972083, -1.604552910788186 ], [ 101.639357130826909, -1.543161309147081 ], [ 101.663334996412914, -1.51866668052287 ], [ 101.675323927856937, -1.499856458808551 ], [ 101.68560753785755, -1.469367364012669 ], [ 101.685504185070045, -1.461150810661366 ], [ 101.681835157966134, -1.45432952218971 ], [ 101.676047398268793, -1.446578056831868 ], [ 101.674393751870127, -1.436346123674696 ], [ 101.68524580265165, -1.407097263228138 ], [ 101.686899449050316, -1.3955734188782 ], [ 101.66943281537209, -1.337179049873271 ], [ 101.67325687120757, -1.308395277420118 ], [ 101.678114454918102, -1.288964938980769 ], [ 101.687829624137805, -1.278577976192651 ], [ 101.695477735808822, -1.274805597200555 ], [ 101.702815790016643, -1.27377206752692 ], [ 101.712530959236346, -1.27356536195191 ], [ 101.747309197861171, -1.267519219836117 ], [ 101.774025913664957, -1.254600110606646 ], [ 101.794489780878621, -1.238890476114591 ], [ 101.818260939990353, -1.209486586037144 ], [ 101.832213576195556, -1.185818779712918 ], [ 101.840998570327713, -1.166233411642622 ], [ 101.842548863039553, -1.153934420936764 ], [ 101.840895216640888, -1.147629897301954 ], [ 101.835365839361941, -1.145304456435554 ], [ 101.830456577908706, -1.148405042758554 ], [ 101.82456546362522, -1.150730482725635 ], [ 101.814953648092342, -1.151040541088094 ], [ 101.795730015228003, -1.142513930273651 ], [ 101.782707554110289, -1.131816908223755 ], [ 101.785911493220794, -1.110164482604773 ], [ 101.786118198795805, -1.087271823535843 ], [ 101.782087437385258, -1.064895929303702 ], [ 101.76978844578008, -1.038230888544661 ], [ 101.881822951068273, -0.999990330189576 ], [ 101.89009118036364, -0.99508106873634 ], [ 101.898566115233962, -0.987484633009387 ], [ 101.905284051817489, -0.980043226913381 ], [ 101.915515984974661, -0.958804212444477 ], [ 101.921045363152928, -0.946298516163608 ], [ 101.926574742230514, -0.937978610924176 ], [ 101.935049677100892, -0.927281588874223 ], [ 101.955203485052778, -0.907489516128294 ], [ 101.975770705053947, -0.891883232625105 ], [ 101.98414228713682, -0.886922296127068 ], [ 101.993185662788051, -0.883511650542232 ], [ 102.001815627289318, -0.881754653154701 ], [ 102.012616001227457, -0.880411065118551 ], [ 102.070338575764595, -0.881599622624492 ], [ 102.120051304324193, -0.875708510139646 ], [ 102.135967645290577, -0.871264336679815 ], [ 102.165629916887099, -0.859947197904887 ], [ 102.177412143655488, -0.85689828842527 ], [ 102.188884312061305, -0.855658054075946 ], [ 102.200563186042189, -0.857001641212776 ], [ 102.241387566782748, -0.867698663262729 ], [ 102.251929559201756, -0.872969659022544 ], [ 102.260559523703023, -0.880359389174487 ], [ 102.267329136230614, -0.892916762298739 ], [ 102.274718866382557, -0.918134860435487 ], [ 102.280351597348272, -0.925679620218318 ], [ 102.331511264932885, -0.971103204049655 ], [ 102.341949903665068, -0.984487399473892 ], [ 102.346704136386734, -0.993685804756069 ], [ 102.347892693892675, -1.002522474832347 ], [ 102.350424839434766, -1.006656589030342 ], [ 102.356212600031427, -1.010015556872474 ], [ 102.381534051854942, -1.015441583162556 ], [ 102.392799513786485, -1.019989108510572 ], [ 102.401481154231817, -1.027275485875009 ], [ 102.407682325978499, -1.034871920702585 ], [ 102.418844436021857, -1.051976820074174 ], [ 102.4301098979534, -1.059779962275456 ], [ 102.451813998617126, -1.068203220302394 ], [ 102.541214227254727, -1.084946383568763 ], [ 102.563021681605278, -1.080967299001657 ], [ 102.577491082647327, -1.065154310822777 ], [ 102.594699334806421, -1.011927584790214 ], [ 102.600745476922157, -1.000662122858671 ], [ 102.630976190198965, -0.981593519625221 ], [ 102.639399449125222, -0.975082288616761 ], [ 102.646220737596934, -0.967950941782533 ], [ 102.655212437304101, -0.955290215870775 ], [ 102.668544955884954, -0.924801121074893 ], [ 102.674022658119156, -0.91565439173678 ], [ 102.682187534626962, -0.904492282592798 ], [ 102.69024905834732, -0.897257582071745 ], [ 102.719807977156393, -0.87632862686462 ], [ 102.728592971288549, -0.868422132775208 ], [ 102.766213413817979, -0.822068372957062 ], [ 102.780786166748157, -0.807960707120969 ], [ 102.791948276791516, -0.799589125038096 ], [ 102.804350621184199, -0.792974542141394 ], [ 102.917315301559881, -0.763415622433058 ], [ 102.958449741562276, -0.761503594515261 ], [ 103.100146519346367, -0.772200615665895 ], [ 103.427310012347164, -0.748739515815998 ], [ 103.438703422624826, -0.746179762885731 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-SS", "NAME_1": "Sumatera Selatan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.531586134000065, -1.73406340899993 ], [ 104.533539259000065, -1.740492445999962 ], [ 104.537608269000032, -1.760674737999921 ], [ 104.537364129000082, -1.772149346999925 ], [ 104.533457879000082, -1.783461195999962 ], [ 104.517425977000073, -1.809340101999908 ], [ 104.512380405000044, -1.821465752999927 ], [ 104.489024285000028, -1.860039971999925 ], [ 104.483409050000034, -1.881442966999941 ], [ 104.48406009200005, -1.897067966999941 ], [ 104.486827019000032, -1.910332940999922 ], [ 104.497080925000034, -1.935967705999929 ], [ 104.513519727000073, -1.918633721999925 ], [ 104.527354363000029, -1.867445570999962 ], [ 104.537364129000082, -1.854099216999941 ], [ 104.564463738000029, -1.857679945999962 ], [ 104.586680535000028, -1.877211195999962 ], [ 104.605723504000082, -1.899021091999941 ], [ 104.623545769000032, -1.909356377999927 ], [ 104.636973504000082, -1.92156340899993 ], [ 104.629649285000028, -1.949151299999926 ], [ 104.614268425000034, -1.97820403399993 ], [ 104.60279381600003, -1.994724216999941 ], [ 104.594737175000034, -2.003024997999944 ], [ 104.587412957000026, -2.012790622999944 ], [ 104.588877800000034, -2.019463799999926 ], [ 104.606211785000028, -2.018487237999921 ], [ 104.620616082000026, -2.010430596999925 ], [ 104.642588738000029, -1.98170338299991 ], [ 104.654551629000082, -1.970147393999923 ], [ 104.65984134200005, -1.990166924999926 ], [ 104.660411004000082, -2.012872002999927 ], [ 104.663828972000033, -2.031345309999949 ], [ 104.677907748000052, -2.038995049999926 ], [ 104.680837436000047, -2.040134372999944 ], [ 104.68287194100003, -2.042413018999923 ], [ 104.685801629000082, -2.044691664999959 ], [ 104.691905144000032, -2.045830987999921 ], [ 104.69467207100007, -2.043715101999908 ], [ 104.696787957000026, -2.038995049999926 ], [ 104.699961785000028, -2.034356377999927 ], [ 104.705821160000028, -2.032321872999944 ], [ 104.710459832000026, -2.029473565999922 ], [ 104.729177280000044, -2.011651299999926 ], [ 104.772634311000047, -1.99773528399993 ], [ 104.814626498000052, -2.008396091999941 ], [ 104.850271030000044, -2.037855726999908 ], [ 104.87427819100003, -2.080010674999926 ], [ 104.882823113000029, -2.125664971999925 ], [ 104.876149936000047, -2.164727471999925 ], [ 104.859711134000065, -2.199395440999922 ], [ 104.828298373000052, -2.246677341999941 ], [ 104.757009311000047, -2.330498955999929 ], [ 104.74341881600003, -2.341241143999923 ], [ 104.726898634000065, -2.344496351999908 ], [ 104.684743686000047, -2.345798434999949 ], [ 104.671397332000026, -2.35125090899993 ], [ 104.657237175000034, -2.36451588299991 ], [ 104.623383009000065, -2.387465101999908 ], [ 104.606211785000028, -2.402113539999959 ], [ 104.676036004000082, -2.371758721999925 ], [ 104.709646030000044, -2.370863539999959 ], [ 104.729177280000044, -2.408949476999908 ], [ 104.73015384200005, -2.452732028999947 ], [ 104.726817254000082, -2.478122653999947 ], [ 104.713145379000082, -2.511488539999959 ], [ 104.713145379000082, -2.557793877999927 ], [ 104.709239129000082, -2.573988539999959 ], [ 104.698741082000026, -2.582207940999922 ], [ 104.68091881600003, -2.590997002999927 ], [ 104.660980665000068, -2.597832940999922 ], [ 104.64380944100003, -2.600762627999927 ], [ 104.632823113000029, -2.60515715899993 ], [ 104.60279381600003, -2.62664153399993 ], [ 104.569509311000047, -2.656426690999922 ], [ 104.548675977000073, -2.68482838299991 ], [ 104.535980665000068, -2.719333591999941 ], [ 104.537364129000082, -2.75904713299991 ], [ 104.535411004000082, -2.757256768999923 ], [ 104.533213738000029, -2.762627862999921 ], [ 104.531097852000073, -2.772637627999927 ], [ 104.547211134000065, -2.759535414999959 ], [ 104.562754754000082, -2.738376559999949 ], [ 104.574392123000052, -2.71453215899993 ], [ 104.578868035000028, -2.693536065999922 ], [ 104.585134311000047, -2.677666924999926 ], [ 104.599864129000082, -2.66375090899993 ], [ 104.633555535000028, -2.642347914999959 ], [ 104.70281009200005, -2.609470309999949 ], [ 104.731455925000034, -2.590752862999921 ], [ 104.750254754000082, -2.560316664999959 ], [ 104.768565300000034, -2.494724216999941 ], [ 104.77076256600003, -2.473809502999927 ], [ 104.768239780000044, -2.430108330999929 ], [ 104.771820509000065, -2.414239190999922 ], [ 104.784353061000047, -2.395277601999908 ], [ 104.816416863000029, -2.36492278399993 ], [ 104.832204623000052, -2.345310153999947 ], [ 104.845957879000082, -2.302178643999923 ], [ 104.86264082100007, -2.28875090899993 ], [ 104.883311394000032, -2.284926039999959 ], [ 104.901052280000044, -2.292901299999926 ], [ 104.908702019000032, -2.312676690999922 ], [ 104.908702019000032, -2.337334893999923 ], [ 104.911631707000026, -2.360284112999921 ], [ 104.92896569100003, -2.374769789999959 ], [ 104.93091881600003, -2.351169528999947 ], [ 104.941416863000029, -2.336195570999962 ], [ 104.95826256600003, -2.328545830999929 ], [ 104.980235222000033, -2.326429945999962 ], [ 105.001963738000029, -2.331963799999926 ], [ 105.016449415000068, -2.344659112999921 ], [ 105.029063347000033, -2.358493747999944 ], [ 105.045095248000052, -2.367364190999922 ], [ 105.05396569100003, -2.367120049999926 ], [ 105.075205925000034, -2.361504815999922 ], [ 105.086680535000028, -2.361260674999926 ], [ 105.09701582100007, -2.365411065999922 ], [ 105.111338738000029, -2.377699476999908 ], [ 105.116709832000026, -2.380466403999947 ], [ 105.138438347000033, -2.37623463299991 ], [ 105.202159050000034, -2.347426039999959 ], [ 105.223643425000034, -2.34343840899993 ], [ 105.246918165000068, -2.342868747999944 ], [ 105.269297722000033, -2.34734465899993 ], [ 105.307383660000028, -2.36882903399993 ], [ 105.331065300000034, -2.373142184999949 ], [ 105.38021894600007, -2.374769789999959 ], [ 105.466807488000029, -2.388441664999959 ], [ 105.511241082000026, -2.390801690999922 ], [ 105.535004102000073, -2.394789320999962 ], [ 105.55209394600007, -2.402113539999959 ], [ 105.55209394600007, -2.408949476999908 ], [ 105.548838738000029, -2.409356377999927 ], [ 105.541758660000028, -2.408786716999941 ], [ 105.53842207100007, -2.408949476999908 ], [ 105.549001498000052, -2.42115650799991 ], [ 105.56381269600007, -2.414971612999921 ], [ 105.578868035000028, -2.402276299999926 ], [ 105.590017123000052, -2.395277601999908 ], [ 105.608571811000047, -2.39617278399993 ], [ 105.623789910000028, -2.401788018999923 ], [ 105.633311394000032, -2.416192315999922 ], [ 105.634776238000029, -2.44304778399993 ], [ 105.629242384000065, -2.464613539999959 ], [ 105.611175977000073, -2.505954684999949 ], [ 105.607432488000029, -2.528741143999923 ], [ 105.608409050000034, -2.552341403999947 ], [ 105.612071160000028, -2.574151299999926 ], [ 105.61841881600003, -2.594903252999927 ], [ 105.627940300000034, -2.615004164999959 ], [ 105.638519727000073, -2.630791924999926 ], [ 105.654470248000052, -2.648614190999922 ], [ 105.67310631600003, -2.663018487999921 ], [ 105.701996290000068, -2.671319268999923 ], [ 105.722504102000073, -2.681084893999923 ], [ 105.733409050000034, -2.68328215899993 ], [ 105.75709069100003, -2.68287525799991 ], [ 105.768077019000032, -2.684747002999927 ], [ 105.778086785000028, -2.690118096999925 ], [ 105.794932488000029, -2.724053643999923 ], [ 105.791758660000028, -2.862074476999908 ], [ 105.809580925000034, -2.899021091999941 ], [ 105.840179884000065, -2.930108330999929 ], [ 105.879242384000065, -2.951104424999926 ], [ 105.922618035000028, -2.957696221999925 ], [ 105.93327884200005, -2.955987237999921 ], [ 105.951833530000044, -2.950941664999959 ], [ 105.963145379000025, -2.950290622999944 ], [ 105.975108269000032, -2.95281340899993 ], [ 105.990977410000028, -2.961846612999921 ], [ 106.000824415000068, -2.963799737999921 ], [ 106.015635613000029, -2.969496351999908 ], [ 106.028493686000047, -2.982842705999929 ], [ 106.045583530000044, -3.012302341999941 ], [ 106.05404707100007, -3.046970309999949 ], [ 106.053477410000028, -3.12859465899993 ], [ 106.059336785000028, -3.170017184999949 ], [ 106.06373131600003, -3.179864190999922 ], [ 106.076508009000065, -3.20086028399993 ], [ 106.07976321700005, -3.211521091999941 ], [ 106.07935631600003, -3.223728122999944 ], [ 106.074229363000029, -3.244724216999941 ], [ 106.073008660000028, -3.25554778399993 ], [ 106.063161655000044, -3.266696872999944 ], [ 105.997243686000047, -3.300225518999923 ], [ 105.962738477000073, -3.328789971999925 ], [ 105.92904707100007, -3.365411065999922 ], [ 105.900238477000073, -3.407159112999921 ], [ 105.881114129000025, -3.451104424999926 ], [ 105.81959069100003, -3.672539971999925 ], [ 105.825694207000026, -3.711521091999941 ], [ 105.851084832000026, -3.743340752999927 ], [ 105.933441602000073, -3.802341403999947 ], [ 105.95248457100007, -3.833754164999959 ], [ 105.952891472000033, -3.869073174999926 ], [ 105.935801629000025, -3.90984465899993 ], [ 105.870127800000034, -4.004164320999905 ], [ 105.86060631600003, -4.036716403999947 ], [ 105.855235222000033, -4.070896091999941 ], [ 105.83130944100003, -4.140232028999947 ], [ 105.827972852000073, -4.157972914999959 ], [ 105.789336378770827, -4.136853122773402 ], [ 105.76546186687159, -4.141917412958264 ], [ 105.747633497987522, -4.149978935779245 ], [ 105.709186233158107, -4.149978935779245 ], [ 105.700814650175914, -4.141504000908924 ], [ 105.693114861661513, -4.119489840983363 ], [ 105.686035190771406, -4.110704847750526 ], [ 105.676630079914219, -4.104141940797945 ], [ 105.656372919174828, -4.104813735265679 ], [ 105.649448277016347, -4.098922620982194 ], [ 105.648001337092012, -4.088380628563186 ], [ 105.648001337092012, -4.078820488974372 ], [ 105.64676110184331, -4.070862318940897 ], [ 105.639319695747304, -4.061457208083709 ], [ 105.632498407275648, -4.057323092986337 ], [ 105.624643589130301, -4.055876153062002 ], [ 105.607073601765251, -4.058511650492278 ], [ 105.602216018054719, -4.054325859450842 ], [ 105.602216018054719, -4.04662607183576 ], [ 105.609244012101442, -4.02791920290889 ], [ 105.611104364075118, -4.019392592094448 ], [ 105.610225864931692, -4.009522393243856 ], [ 105.606453485040277, -4.000168959230109 ], [ 105.604593133965921, -3.997688489632083 ], [ 105.596221551883048, -3.982443943133489 ], [ 105.591674024736392, -3.970299981159201 ], [ 105.584232618640385, -3.956657402417193 ], [ 105.571726923258836, -3.946063734953441 ], [ 105.56335534117602, -3.932214450636422 ], [ 105.550074497639912, -3.916298109670038 ], [ 105.54082441641367, -3.911233818585856 ], [ 105.530385776782111, -3.909528497142446 ], [ 105.52439131061044, -3.905497734832579 ], [ 105.520980665924924, -3.900226739072764 ], [ 105.520670607562465, -3.891906833833332 ], [ 105.519171990794689, -3.883070163757054 ], [ 105.513229200567082, -3.868445733084116 ], [ 105.503720737821766, -3.860332532520374 ], [ 105.473748406963352, -3.847465101932926 ], [ 105.442225783393155, -3.84234913490468 ], [ 105.432613966960957, -3.833874200034302 ], [ 105.414010450821593, -3.805193779469334 ], [ 105.402434929628271, -3.796977227017408 ], [ 105.390859410233531, -3.793463229544443 ], [ 105.380782504908609, -3.794238375900363 ], [ 105.366829868703462, -3.799922783709519 ], [ 105.358613316251478, -3.800852959696329 ], [ 105.347451206208177, -3.796977227017408 ], [ 105.340836623311475, -3.786951999435246 ], [ 105.331121454091772, -3.76276742917355 ], [ 105.32243981274712, -3.752173760810422 ], [ 105.315825229850418, -3.751656995973576 ], [ 105.309934117365572, -3.755584404596618 ], [ 105.30528323833073, -3.763852633891929 ], [ 105.302286004795235, -3.771810804824781 ], [ 105.29970218330908, -3.782352797243789 ], [ 105.30011559535842, -3.792326347982566 ], [ 105.298823684165654, -3.798889254935204 ], [ 105.295671420999213, -3.803540133969989 ], [ 105.290968866020307, -3.806434014718036 ], [ 105.287093134240706, -3.809379570510771 ], [ 105.284612664642736, -3.812428480889707 ], [ 105.283579135868365, -3.816976007137043 ], [ 105.283940871074321, -3.835372816802078 ], [ 105.28290734319927, -3.84446786929675 ], [ 105.270453321963203, -3.879039401447244 ], [ 105.266060826246076, -3.886119073236671 ], [ 105.251229689998127, -3.900485120591838 ], [ 105.241204462415965, -3.90766814516877 ], [ 105.229422234748313, -3.911233818585856 ], [ 105.216503127317424, -3.911543877847691 ], [ 105.201878696644485, -3.906272882087819 ], [ 105.191698440330697, -3.906531263606951 ], [ 105.183326858247881, -3.910562025916761 ], [ 105.166480341294687, -3.92787362996404 ], [ 105.157075230437499, -3.934901624910083 ], [ 105.141882358983651, -3.940017591938329 ], [ 105.133924188050798, -3.94714893967182 ], [ 105.128963250653442, -3.956347344953997 ], [ 105.127929721879127, -3.966114190117764 ], [ 105.127309605154096, -3.986423027700596 ], [ 105.126017693961387, -3.993864433796602 ], [ 105.124157342887031, -3.998153577625544 ], [ 105.108809441802237, -4.019082532832613 ], [ 105.104571974816736, -4.027092379709586 ], [ 105.104727004447682, -4.031949965218701 ], [ 105.107310825933837, -4.037427666553583 ], [ 105.115837436748279, -4.047246188560734 ], [ 105.115837436748279, -4.053395683464032 ], [ 105.111496616975273, -4.059958590416613 ], [ 105.081627638904365, -4.076650078638238 ], [ 105.072945997559714, -4.084866631989485 ], [ 105.063644240389351, -4.096287122652598 ], [ 105.057339715855164, -4.110084731025552 ], [ 105.052585484032818, -4.124244072805709 ], [ 105.045350782612502, -4.135096123587232 ], [ 105.029227736071107, -4.147653496711541 ], [ 105.01775556766529, -4.158763929911458 ], [ 105.008867221644948, -4.169202568643641 ], [ 104.974244011751694, -4.185997409652714 ], [ 104.923807814578936, -4.195040785304002 ], [ 104.884843784912675, -4.209665215976941 ], [ 104.839575229812965, -4.220672295490033 ], [ 104.674313999391529, -4.296843356535703 ], [ 104.60165693581888, -4.314154961482302 ], [ 104.550393915446818, -4.314361667956632 ], [ 104.527242873060118, -4.320046074866468 ], [ 104.465644565844002, -4.348468113013041 ], [ 104.4420801132066, -4.363040866842539 ], [ 104.409627312750217, -4.391514580933176 ], [ 104.39722497015623, -4.4051054828318 ], [ 104.309064975867898, -4.440245456662524 ], [ 104.298936394598911, -4.466858818779485 ], [ 104.29273522285223, -4.494712416145092 ], [ 104.296662632374534, -4.525201510940974 ], [ 104.308496535086988, -4.595378105814916 ], [ 104.309685092592929, -4.610467624481316 ], [ 104.308754916606063, -4.627830906271299 ], [ 104.300383335422566, -4.642558688832423 ], [ 104.293510370107469, -4.651188652434371 ], [ 104.287670932667368, -4.657183118606042 ], [ 104.271961298175313, -4.66679493593756 ], [ 104.269170770214828, -4.67118743165463 ], [ 104.266380243153662, -4.689377536644031 ], [ 104.264313185604976, -4.694855237978857 ], [ 104.263383009618167, -4.701056409725538 ], [ 104.264933303229327, -4.70782602315245 ], [ 104.271651238913478, -4.715887545973487 ], [ 104.282399936907495, -4.723483981700383 ], [ 104.285190463968718, -4.727979832003655 ], [ 104.287050815942337, -4.752681166202876 ], [ 104.289841343003559, -4.762292982635074 ], [ 104.293510370107469, -4.771077975867911 ], [ 104.310925327841574, -4.787562757615206 ], [ 104.31588626523893, -4.795262546129607 ], [ 104.326428256758618, -4.805029392192694 ], [ 104.332009311780268, -4.808853448028231 ], [ 104.33650516208354, -4.814279472519672 ], [ 104.338830601151301, -4.820635674796563 ], [ 104.337900425164435, -4.833658135914277 ], [ 104.33593672130263, -4.842288099516168 ], [ 104.320950555423735, -4.87143360807454 ], [ 104.303277216170557, -4.888280125027734 ], [ 104.297851189880475, -4.89246591606917 ], [ 104.288291050291718, -4.895101413499447 ], [ 104.27749067635358, -4.896341647848772 ], [ 104.246019728727447, -4.891329033608031 ], [ 104.210362990059878, -4.893189385581707 ], [ 104.155017531433884, -4.93117156241766 ], [ 104.081068556668527, -4.946726169077465 ], [ 104.051612989747639, -4.946312757927444 ], [ 104.020917190276066, -4.942902113241928 ], [ 103.986087273908538, -4.942385349304459 ], [ 103.927279493753588, -4.934427179270926 ], [ 103.889452345649204, -4.933600356071565 ], [ 103.87281253517034, -4.92869109461833 ], [ 103.863510777100657, -4.922283217296638 ], [ 103.861547072339476, -4.912361341602661 ], [ 103.85658613494212, -4.901715997295469 ], [ 103.854157343086854, -4.893396091156717 ], [ 103.8550875181744, -4.883422539518619 ], [ 103.857206251667151, -4.873138929518007 ], [ 103.857309605353976, -4.862545261154878 ], [ 103.854725782968444, -4.854225355915446 ], [ 103.847077671297427, -4.84678394892012 ], [ 103.836845738140255, -4.841099542010284 ], [ 103.821549513898901, -4.835466811044512 ], [ 103.765273879286042, -4.804667656986794 ], [ 103.757212355565741, -4.78570240564153 ], [ 103.747652215976927, -4.777485854088923 ], [ 103.729048699837563, -4.765910332895544 ], [ 103.722537469728422, -4.757487073969287 ], [ 103.719540236192927, -4.744154554489114 ], [ 103.718300001843545, -4.730098564597085 ], [ 103.693908726006839, -4.639303073777853 ], [ 103.688637730247024, -4.626280612660139 ], [ 103.680162795376646, -4.617598972214807 ], [ 103.667243687046494, -4.583130791952499 ], [ 103.637168003400575, -4.54768075885994 ], [ 103.629106479680274, -4.531454359531097 ], [ 103.621768427271036, -4.505254407664779 ], [ 103.615773960200045, -4.418024591161952 ], [ 103.610864698746809, -4.401591484459459 ], [ 103.603474968594867, -4.390481052158862 ], [ 103.591796096412679, -4.384228203568739 ], [ 103.580633986369321, -4.380869235726664 ], [ 103.53608890168141, -4.378078708665498 ], [ 103.521516147851912, -4.378388767027957 ], [ 103.492629021711934, -4.368983656170826 ], [ 103.448135613867464, -4.339218030887423 ], [ 103.391498244048705, -4.334773857427592 ], [ 103.358115269404095, -4.322629897251943 ], [ 103.313260126353725, -4.295758151817267 ], [ 103.268508335191484, -4.286508069691649 ], [ 103.241119825819283, -4.272090345493041 ], [ 103.222412957791732, -4.26495899775955 ], [ 103.214971551695726, -4.263460381891093 ], [ 103.199261916304351, -4.265217380177944 ], [ 103.185929396824179, -4.242531426684025 ], [ 103.180968459426822, -4.16129607455423 ], [ 103.175387404405171, -4.140418796190488 ], [ 103.148205600607923, -4.080370781686213 ], [ 103.141642693655342, -4.04678110056733 ], [ 103.1362166691639, -4.039598076889718 ], [ 103.128775262168574, -4.033138522724641 ], [ 103.122212356115313, -4.03039967160754 ], [ 103.107381218968044, -4.019857680087853 ], [ 103.100559929597011, -4.018565768895144 ], [ 103.091258173325969, -4.018875828156979 ], [ 103.080199416070172, -4.022493177518129 ], [ 103.054051141047296, -4.02290658866815 ], [ 103.034982537813846, -4.025128675847725 ], [ 103.021288283127717, -4.0238884414984 ], [ 102.998602329633741, -4.025903822203645 ], [ 102.981032343168067, -4.035360609904217 ], [ 102.935918816799926, -4.000220636073493 ], [ 102.92713382356709, -3.996034845032057 ], [ 102.90842695464022, -3.991073906735437 ], [ 102.873286980809496, -4.000995781530094 ], [ 102.856957228693091, -4.002959487190594 ], [ 102.845175001924758, -4.000479017592625 ], [ 102.799079623625687, -3.982443943133489 ], [ 102.781406285271828, -3.972160333132877 ], [ 102.768487176941619, -3.961359959194795 ], [ 102.744095900205593, -3.923739515766044 ], [ 102.73190026228724, -3.909838555504962 ], [ 102.696295201362432, -3.88720427795505 ], [ 102.683634474551297, -3.875111992824202 ], [ 102.672265659832306, -3.857852064721044 ], [ 102.661310256263278, -3.84482960360333 ], [ 102.635988804439705, -3.82746632181329 ], [ 102.629890984581209, -3.813668715239032 ], [ 102.655212437304101, -3.806795749923936 ], [ 102.684978061688128, -3.799457695716114 ], [ 102.701824578641322, -3.791086113633241 ], [ 102.822023960437377, -3.680963637162108 ], [ 102.844038121262258, -3.66561573697669 ], [ 102.864191929214144, -3.656055596488613 ], [ 102.885017530734387, -3.641689548234069 ], [ 102.897213168652797, -3.630837497452546 ], [ 102.898401727058001, -3.617401625184868 ], [ 102.89168379137385, -3.60355234086785 ], [ 102.883208855604153, -3.589806410237657 ], [ 102.880211622967977, -3.579471124292979 ], [ 102.883208855604153, -3.573890069271272 ], [ 102.892200555311319, -3.573890069271272 ], [ 102.917005243197366, -3.58350188570347 ], [ 102.931888055389379, -3.58675750075804 ], [ 102.945220574869609, -3.58505217931463 ], [ 102.957932976725431, -3.581899916148245 ], [ 102.968164910781979, -3.581434828154784 ], [ 102.993072950556154, -3.58407032558506 ], [ 103.006508823723209, -3.565053399195051 ], [ 103.017309197661291, -3.485368340676416 ], [ 103.01632734573036, -3.459323418441045 ], [ 103.011779820382344, -3.434105320304297 ], [ 103.009195997996869, -3.425320326172141 ], [ 103.004648471749533, -3.415398450478108 ], [ 102.998602329633741, -3.408008722124862 ], [ 102.988835483570654, -3.401652519847914 ], [ 102.97488284736545, -3.395606377732179 ], [ 102.947080926843284, -3.392092380259157 ], [ 102.928994174641389, -3.38614959093087 ], [ 102.870186395385815, -3.375917656874378 ], [ 102.856440463856302, -3.371111749107968 ], [ 102.800629917236847, -3.336178480852197 ], [ 102.791741571216505, -3.321295667760864 ], [ 102.781716342734967, -3.290806572964982 ], [ 102.775205112625827, -3.282796726088065 ], [ 102.765955031399528, -3.278972670252529 ], [ 102.747196485629274, -3.28476043084919 ], [ 102.725492384965548, -3.297937920698473 ], [ 102.683737828238122, -3.329563897056232 ], [ 102.65112999905017, -3.36191334382579 ], [ 102.640949741837062, -3.368786309140887 ], [ 102.631337925404864, -3.373023777025708 ], [ 102.610977410978705, -3.367287693272431 ], [ 102.581521844057818, -3.350441175419917 ], [ 102.573563674024285, -3.349149265126471 ], [ 102.562608269555938, -3.344084974941666 ], [ 102.551756218774415, -3.336281833639703 ], [ 102.538216993719232, -3.319797051892465 ], [ 102.522507359227177, -3.305120945275405 ], [ 102.512275425170685, -3.293803805601158 ], [ 102.501733432751678, -3.279437758245933 ], [ 102.49232832189449, -3.268999118614431 ], [ 102.478995803313637, -3.260472506900669 ], [ 102.468557163682135, -3.256028333440838 ], [ 102.461684198367038, -3.250447278419188 ], [ 102.458893671305816, -3.243625989947475 ], [ 102.459255405612453, -3.238044935825144 ], [ 102.461839227098608, -3.232825616009393 ], [ 102.46711022285848, -3.227037856312052 ], [ 102.471657749105816, -3.220940036453555 ], [ 102.476205275353152, -3.212516777527298 ], [ 102.480184360819578, -3.17959889087615 ], [ 102.487367385396453, -3.16011687559336 ], [ 102.489331089258314, -3.151228528673641 ], [ 102.487470738183958, -3.142288506709235 ], [ 102.481476272012287, -3.132263279127017 ], [ 102.471967808367594, -3.122651461795556 ], [ 102.456154820188772, -3.111024264658113 ], [ 102.430781690622496, -3.087924900014116 ], [ 102.369080030618875, -3.066789239232037 ], [ 102.357504511224192, -3.064928888157681 ], [ 102.350011428284745, -3.066014092876117 ], [ 102.342621698132803, -3.071285088635932 ], [ 102.332699823338146, -3.081517021793104 ], [ 102.32737714983557, -3.084875989635236 ], [ 102.317248570365166, -3.084617608116105 ], [ 102.302675815636348, -3.080276787443779 ], [ 102.281643507641718, -3.069063001456357 ], [ 102.26898278172996, -3.067977796737921 ], [ 102.259577670872773, -3.068597913462952 ], [ 102.25182620641425, -3.066324151238575 ], [ 102.241129185263674, -3.058831069198504 ], [ 102.210330031205956, -3.022812594425716 ], [ 102.208314649601334, -3.010616956507363 ], [ 102.215032587084181, -3.007826429446197 ], [ 102.232809279124865, -3.006586195096816 ], [ 102.238080274884737, -3.003950696767276 ], [ 102.239940626858413, -3.001521904912011 ], [ 102.240457390795882, -3.000281670562629 ], [ 102.235186395036067, -2.976872246656853 ], [ 102.230535516001225, -2.964521580006931 ], [ 102.223817580317018, -2.954289645950382 ], [ 102.205214065076973, -2.942094008032029 ], [ 102.160048862764768, -2.90168303754217 ], [ 102.14816328320893, -2.887523694862637 ], [ 102.133073765441907, -2.853882337799632 ], [ 102.124702183359034, -2.840033053482614 ], [ 102.115090366926836, -2.829904473112947 ], [ 102.087908563129645, -2.810319105941971 ], [ 102.06682457919095, -2.78236215578886 ], [ 102.107338901568994, -2.741641126936486 ], [ 102.117054070788697, -2.735181572771353 ], [ 102.160979038751577, -2.725879814701671 ], [ 102.179169142841602, -2.717714939093185 ], [ 102.2331193383867, -2.684383639493376 ], [ 102.260197789396443, -2.639528496442949 ], [ 102.298024936601507, -2.666917005815151 ], [ 102.350941604271554, -2.68019784845194 ], [ 102.397760451183842, -2.709911797791221 ], [ 102.420601434308708, -2.71957529106686 ], [ 102.448455030774994, -2.728463637087202 ], [ 102.46979739803146, -2.730220636273373 ], [ 102.486850620559665, -2.729910577011537 ], [ 102.502921991156938, -2.726603285113526 ], [ 102.515996128218717, -2.72164234771617 ], [ 102.578731316996652, -2.716733087162254 ], [ 102.596404657149151, -2.709808445003716 ], [ 102.605396355956998, -2.699214775741325 ], [ 102.610357294253674, -2.685830579417711 ], [ 102.618677198593787, -2.671516208905928 ], [ 102.634128453365406, -2.65808033573893 ], [ 102.681877476264503, -2.632552179239667 ], [ 102.699240757155167, -2.62066659878451 ], [ 102.718671095594516, -2.602269789119475 ], [ 102.724148797828718, -2.601908053913576 ], [ 102.727559441614915, -2.607024020941822 ], [ 102.733760614260916, -2.610382988783897 ], [ 102.745232781767413, -2.606507257004296 ], [ 102.762286005194937, -2.596947116516219 ], [ 102.778719110098791, -2.583356214617595 ], [ 102.791741571216505, -2.567853284801288 ], [ 102.863571811589793, -2.461761569740645 ], [ 102.866982456275309, -2.448429050260472 ], [ 102.863726841220682, -2.437732029109839 ], [ 102.856440463856302, -2.428636976615167 ], [ 102.847965528985924, -2.421608981669181 ], [ 102.841247593301773, -2.411066990149493 ], [ 102.839593946903108, -2.397682793825879 ], [ 102.843728062000423, -2.380784600029301 ], [ 102.851686232933275, -2.364971611850422 ], [ 102.862021518877953, -2.353912855493888 ], [ 102.874320509583811, -2.351587415526808 ], [ 102.893854200810665, -2.354222913856404 ], [ 102.922586298219073, -2.363421319138581 ], [ 102.953798863426755, -2.369054050104353 ], [ 102.986251662084499, -2.380009453673381 ], [ 103.015397169743551, -2.381714776016111 ], [ 103.044439324615098, -2.369209079735242 ], [ 103.097976109010176, -2.390861504454904 ], [ 103.122884148784408, -2.397992852188395 ], [ 103.143037957635613, -2.394375501927868 ], [ 103.186549514448473, -2.377994072968079 ], [ 103.198745152366826, -2.369829196460273 ], [ 103.204532912064224, -2.361302584746511 ], [ 103.205153028789198, -2.349055270884037 ], [ 103.202982619352383, -2.333552341067673 ], [ 103.196264682768856, -2.318411146457265 ], [ 103.187479690435339, -2.306990654894832 ], [ 103.177557814741306, -2.297275485675129 ], [ 103.170219761432804, -2.286113375631771 ], [ 103.169599643808453, -2.271230563439758 ], [ 103.177661166629491, -2.248802991464913 ], [ 103.19362918533858, -2.226220390758442 ], [ 103.21559166932002, -2.185964450798792 ], [ 103.232644890948905, -2.179453219790275 ], [ 103.247941115190258, -2.184000746037611 ], [ 103.259103225233616, -2.193664239313193 ], [ 103.271918979877, -2.209063815442732 ], [ 103.289282260767664, -2.245547377309606 ], [ 103.295896843664366, -2.268646741953603 ], [ 103.303648309022208, -2.284563083819251 ], [ 103.418990106208412, -2.393807061146958 ], [ 103.438730503010277, -2.403108819216641 ], [ 103.448962437066768, -2.404194023935077 ], [ 103.457023959887806, -2.402281996017336 ], [ 103.460537958260147, -2.397011000257464 ], [ 103.461468134246957, -2.389621270105522 ], [ 103.461054722197616, -2.383110039996382 ], [ 103.459607782273281, -2.376960544193764 ], [ 103.459504428586456, -2.371327813227992 ], [ 103.460227898998312, -2.365436699843826 ], [ 103.462605014909457, -2.35799529374782 ], [ 103.463225131634488, -2.351535739582744 ], [ 103.461158074985121, -2.323837171848027 ], [ 103.449892613053635, -2.277225029611429 ], [ 103.449324172272668, -2.268285006747647 ], [ 103.450202671416093, -2.25934498478324 ], [ 103.453871697620684, -2.246167494034637 ], [ 103.459866163792356, -2.238260999945226 ], [ 103.47040815621142, -2.233661797753768 ], [ 103.506633334760522, -2.229165947450497 ], [ 103.523686558188047, -2.224515068415712 ], [ 103.537949252755766, -2.217693779944 ], [ 103.547767774762974, -2.210407402579563 ], [ 103.552573684328024, -2.203482760421082 ], [ 103.552573684328024, -2.197384941461905 ], [ 103.548077834024753, -2.191803888238837 ], [ 103.53665734336164, -2.180745130983041 ], [ 103.531748081009084, -2.174182224030403 ], [ 103.521826206214428, -2.151289564961473 ], [ 103.517692092016375, -2.120387058116251 ], [ 103.528957553947919, -1.997965590039939 ], [ 103.520275914401907, -1.979052015538116 ], [ 103.535003696962974, -1.967941583237462 ], [ 103.886351760225523, -1.794773857827295 ], [ 103.91787438379572, -1.789399509279917 ], [ 103.957871942236295, -1.790588066785858 ], [ 104.125613641356438, -1.830637302069817 ], [ 104.174189488354159, -1.836425062666535 ], [ 104.235787794670955, -1.828518568577067 ], [ 104.321518996204645, -1.804333997416052 ], [ 104.33821048442627, -1.791983330766129 ], [ 104.349062535207793, -1.781286308716176 ], [ 104.375934278843829, -1.713848564959335 ], [ 104.382445509852346, -1.702841484546866 ], [ 104.388646681599027, -1.69638193128111 ], [ 104.397845086881205, -1.689974053959418 ], [ 104.411280959148883, -1.688940525185103 ], [ 104.428282504833703, -1.693849785739019 ], [ 104.456601190192714, -1.710541273960644 ], [ 104.486418492319501, -1.732400404255259 ], [ 104.495926955064874, -1.73782642964602 ], [ 104.508019240195722, -1.740203545557165 ], [ 104.515460647191048, -1.740616956707186 ], [ 104.531586134000065, -1.73406340899993 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-LA", "NAME_1": "Lampung" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.827972852000073, -4.157972914999959 ], [ 105.812754754000025, -4.238702080999929 ], [ 105.814219597000033, -4.27312590899993 ], [ 105.819021030000044, -4.300225518999923 ], [ 105.829600457000026, -4.324476820999905 ], [ 105.846039259000065, -4.35320403399993 ], [ 105.857432488000029, -4.381280205999929 ], [ 105.853282097000033, -4.403903903999947 ], [ 105.868174675000034, -4.412041924999926 ], [ 105.879161004000025, -4.424899997999944 ], [ 105.894786004000025, -4.458428643999923 ], [ 105.896983269000032, -4.455498955999929 ], [ 105.897471550000034, -4.454522393999923 ], [ 105.90162194100003, -4.451755466999941 ], [ 105.906260613000029, -4.469333591999941 ], [ 105.898692254000025, -4.511976820999905 ], [ 105.90943444100003, -4.546644789999959 ], [ 105.902679884000065, -4.56568775799991 ], [ 105.892914259000065, -4.585137627999927 ], [ 105.88795006600003, -4.601820570999905 ], [ 105.890635613000029, -4.619398695999905 ], [ 105.905039910000028, -4.670098565999922 ], [ 105.890472852000073, -4.677829684999949 ], [ 105.881846550000034, -4.696221612999921 ], [ 105.868662957000026, -4.78093840899993 ], [ 105.867442254000025, -4.824639580999929 ], [ 105.87240644600007, -4.848565362999921 ], [ 105.908457879000025, -4.910332940999922 ], [ 105.909678582000026, -4.943129164999959 ], [ 105.896820509000065, -4.975192966999941 ], [ 105.879567905000044, -5.007582289999959 ], [ 105.867442254000025, -5.041273695999905 ], [ 105.861827019000032, -5.126560153999947 ], [ 105.867442254000025, -5.211358330999929 ], [ 105.86451256600003, -5.25554778399993 ], [ 105.83952884200005, -5.33717213299991 ], [ 105.83334394600007, -5.383233330999929 ], [ 105.839610222000033, -5.468926690999922 ], [ 105.836192254000025, -5.491794528999947 ], [ 105.824066602000073, -5.530450127999927 ], [ 105.832774285000028, -5.592543226999908 ], [ 105.83334394600007, -5.633721612999921 ], [ 105.829600457000026, -5.654717705999929 ], [ 105.811289910000028, -5.696872653999947 ], [ 105.805430535000028, -5.71843840899993 ], [ 105.793630405000044, -5.795586846999925 ], [ 105.78256269600007, -5.828545830999929 ], [ 105.764414910000028, -5.856215101999908 ], [ 105.733571811000047, -5.89031340899993 ], [ 105.72974694100003, -5.896661065999922 ], [ 105.719899936000047, -5.887139580999929 ], [ 105.719493035000028, -5.848728122999944 ], [ 105.712901238000029, -5.832126559999949 ], [ 105.68100019600007, -5.819024346999925 ], [ 105.602061394000032, -5.80982838299991 ], [ 105.586192254000025, -5.790785414999959 ], [ 105.580821160000028, -5.713148695999905 ], [ 105.568614129000025, -5.680352471999925 ], [ 105.545258009000065, -5.657647393999923 ], [ 105.539886915000068, -5.662692966999941 ], [ 105.530284050000034, -5.675551039999959 ], [ 105.525401238000029, -5.678806247999944 ], [ 105.51498457100007, -5.677829684999949 ], [ 105.507334832000026, -5.672784112999921 ], [ 105.500743035000028, -5.667087497999944 ], [ 105.493907097000033, -5.664483330999929 ], [ 105.483571811000047, -5.658949476999908 ], [ 105.449717644000032, -5.623467705999929 ], [ 105.398203972000033, -5.58131275799991 ], [ 105.375987175000034, -5.557712497999944 ], [ 105.310720248000052, -5.465997002999927 ], [ 105.279633009000065, -5.444268487999921 ], [ 105.250498894000032, -5.459079684999949 ], [ 105.246348504000025, -5.478773695999905 ], [ 105.257009311000047, -5.51726653399993 ], [ 105.247080925000034, -5.537530205999929 ], [ 105.247894727000073, -5.541273695999905 ], [ 105.238780144000032, -5.568942966999941 ], [ 105.236175977000073, -5.57195403399993 ], [ 105.230804884000065, -5.576348565999922 ], [ 105.219004754000025, -5.574802341999941 ], [ 105.202159050000034, -5.568942966999941 ], [ 105.180023634000065, -5.580498955999929 ], [ 105.180186394000032, -5.59693775799991 ], [ 105.189789259000065, -5.617282809999949 ], [ 105.195811394000032, -5.64031340899993 ], [ 105.195811394000032, -5.667901299999926 ], [ 105.199229363000029, -5.678887627999927 ], [ 105.20671634200005, -5.686944268999923 ], [ 105.213715040000068, -5.692966403999947 ], [ 105.216319207000026, -5.698011976999908 ], [ 105.201914910000028, -5.706801039999959 ], [ 105.17546634200005, -5.715590101999908 ], [ 105.154795769000032, -5.726820570999905 ], [ 105.158050977000073, -5.742933851999908 ], [ 105.177989129000025, -5.750420830999929 ], [ 105.202159050000034, -5.75359465899993 ], [ 105.215342644000032, -5.75904713299991 ], [ 105.202159050000034, -5.773695570999905 ], [ 105.183604363000029, -5.782159112999921 ], [ 105.163259311000047, -5.786065362999921 ], [ 105.130625847000033, -5.787367445999905 ], [ 105.11841881600003, -5.782159112999921 ], [ 105.073008660000028, -5.746351820999905 ], [ 104.901052280000044, -5.671319268999923 ], [ 104.838633660000028, -5.623467705999929 ], [ 104.790782097000033, -5.609470309999949 ], [ 104.769297722000033, -5.591973565999922 ], [ 104.709727410000028, -5.525811455999929 ], [ 104.698415561000047, -5.515557549999926 ], [ 104.68132571700005, -5.506931247999944 ], [ 104.64226321700005, -5.497816664999959 ], [ 104.622813347000033, -5.490655205999929 ], [ 104.613047722000033, -5.478936455999929 ], [ 104.606211785000028, -5.478936455999929 ], [ 104.608164910000028, -5.483330987999921 ], [ 104.613047722000033, -5.49928150799991 ], [ 104.587087436000047, -5.49928150799991 ], [ 104.56763756600003, -5.50123463299991 ], [ 104.551442905000044, -5.508477471999925 ], [ 104.534190300000034, -5.523858330999929 ], [ 104.528493686000047, -5.540459893999923 ], [ 104.533213738000029, -5.55982838299991 ], [ 104.68873131600003, -5.80787525799991 ], [ 104.697764519000032, -5.84539153399993 ], [ 104.70240319100003, -5.886976820999905 ], [ 104.713877800000034, -5.910088799999926 ], [ 104.71607506600003, -5.921075127999927 ], [ 104.710948113000029, -5.927829684999949 ], [ 104.699066602000073, -5.930433851999908 ], [ 104.561289910000028, -5.928317966999941 ], [ 104.553396030000044, -5.919122002999927 ], [ 104.558360222000033, -5.883558851999908 ], [ 104.553721550000034, -5.860039971999925 ], [ 104.541758660000028, -5.841892184999949 ], [ 104.488780144000032, -5.796970309999949 ], [ 104.478770379000082, -5.790215752999927 ], [ 104.463145379000082, -5.782810153999947 ], [ 104.45671634200005, -5.772067966999941 ], [ 104.449229363000029, -5.752618096999925 ], [ 104.38404381600003, -5.692478122999944 ], [ 104.367686394000032, -5.685723565999922 ], [ 104.297699415000068, -5.643324476999908 ], [ 104.290782097000033, -5.625420830999929 ], [ 104.314463738000029, -5.605075778999947 ], [ 104.301524285000028, -5.58562590899993 ], [ 104.257985873000052, -5.539808851999908 ], [ 104.236175977000073, -5.527276299999926 ], [ 104.224782748000052, -5.524021091999941 ], [ 104.215668165000068, -5.52271900799991 ], [ 104.20671634200005, -5.520440362999921 ], [ 104.195323113000029, -5.513604424999926 ], [ 104.189789259000065, -5.505303643999923 ], [ 104.18490644600007, -5.493747653999947 ], [ 104.177500847000033, -5.483330987999921 ], [ 104.144867384000065, -5.47389088299991 ], [ 104.12663821700005, -5.461683851999908 ], [ 104.110850457000026, -5.446221612999921 ], [ 104.038828972000033, -5.356622002999927 ], [ 103.993174675000034, -5.312676690999922 ], [ 103.988129102000073, -5.296319268999923 ], [ 103.999766472000033, -5.276950778999947 ], [ 104.002452019000032, -5.262872002999927 ], [ 103.991384311000047, -5.246351820999905 ], [ 103.975108269000032, -5.232354424999926 ], [ 103.96257571700005, -5.225030205999929 ], [ 103.94109134200005, -5.222832940999922 ], [ 103.918793165000068, -5.223077080999929 ], [ 103.901377800000034, -5.218519789999959 ], [ 103.894297722000033, -5.201429945999905 ], [ 103.897308790000068, -5.191664320999905 ], [ 103.910980665000068, -5.172295830999929 ], [ 103.914073113000029, -5.160088799999926 ], [ 103.91342207100007, -5.139255466999941 ], [ 103.911875847000033, -5.130791924999926 ], [ 103.908457879000082, -5.123223565999922 ], [ 103.891123894000032, -5.104180596999925 ], [ 103.832286004000082, -5.06804778399993 ], [ 103.807627800000034, -5.041924737999921 ], [ 103.792165561000047, -5.03093840899993 ], [ 103.773773634000065, -5.026462497999944 ], [ 103.748220248000052, -5.026543877999927 ], [ 103.736827019000032, -5.023695570999905 ], [ 103.726084832000026, -5.016778252999927 ], [ 103.72584069100003, -5.007012627999927 ], [ 103.735524936000047, -4.977959893999923 ], [ 103.732920769000032, -4.971774997999944 ], [ 103.726817254000082, -4.968682549999926 ], [ 103.717458530000044, -4.961846612999921 ], [ 103.705414259000065, -4.955010674999926 ], [ 103.692067905000044, -4.951918226999908 ], [ 103.681651238000029, -4.954685153999947 ], [ 103.671722852000073, -4.961521091999941 ], [ 103.654063347000033, -4.979180596999925 ], [ 103.630625847000033, -4.934991143999923 ], [ 103.616953972000033, -4.919854424999926 ], [ 103.608152959862409, -4.916489332154952 ], [ 103.608152960390782, -4.916489331417495 ], [ 103.608332554104038, -4.916392103912472 ], [ 103.623318719083557, -4.90827890424805 ], [ 103.638821648899921, -4.903421318738879 ], [ 103.676855502579315, -4.877273043716002 ], [ 103.703468865595653, -4.862545261154878 ], [ 103.734733107646775, -4.839187514092487 ], [ 103.765273879286042, -4.804667656986794 ], [ 103.821549513898901, -4.835466811044512 ], [ 103.836845738140255, -4.841099542010284 ], [ 103.847077671297427, -4.84678394892012 ], [ 103.854725782968444, -4.854225355915446 ], [ 103.857309605353976, -4.862545261154878 ], [ 103.857206251667151, -4.873138929518007 ], [ 103.8550875181744, -4.883422539518619 ], [ 103.854157343086854, -4.893396091156717 ], [ 103.85658613494212, -4.901715997295469 ], [ 103.861547072339476, -4.912361341602661 ], [ 103.863510777100657, -4.922283217296638 ], [ 103.87281253517034, -4.92869109461833 ], [ 103.889452345649204, -4.933600356071565 ], [ 103.927279493753588, -4.934427179270926 ], [ 103.986087273908538, -4.942385349304459 ], [ 104.020917190276066, -4.942902113241928 ], [ 104.051612989747639, -4.946312757927444 ], [ 104.081068556668527, -4.946726169077465 ], [ 104.155017531433884, -4.93117156241766 ], [ 104.210362990059878, -4.893189385581707 ], [ 104.246019728727447, -4.891329033608031 ], [ 104.27749067635358, -4.896341647848772 ], [ 104.288291050291718, -4.895101413499447 ], [ 104.297851189880475, -4.89246591606917 ], [ 104.303277216170557, -4.888280125027734 ], [ 104.320950555423735, -4.87143360807454 ], [ 104.33593672130263, -4.842288099516168 ], [ 104.337900425164435, -4.833658135914277 ], [ 104.338830601151301, -4.820635674796563 ], [ 104.33650516208354, -4.814279472519672 ], [ 104.332009311780268, -4.808853448028231 ], [ 104.326428256758618, -4.805029392192694 ], [ 104.31588626523893, -4.795262546129607 ], [ 104.310925327841574, -4.787562757615206 ], [ 104.293510370107469, -4.771077975867911 ], [ 104.289841343003559, -4.762292982635074 ], [ 104.287050815942337, -4.752681166202876 ], [ 104.285190463968718, -4.727979832003655 ], [ 104.282399936907495, -4.723483981700383 ], [ 104.271651238913478, -4.715887545973487 ], [ 104.264933303229327, -4.70782602315245 ], [ 104.263383009618167, -4.701056409725538 ], [ 104.264313185604976, -4.694855237978857 ], [ 104.266380243153662, -4.689377536644031 ], [ 104.269170770214828, -4.67118743165463 ], [ 104.271961298175313, -4.66679493593756 ], [ 104.287670932667368, -4.657183118606042 ], [ 104.293510370107469, -4.651188652434371 ], [ 104.300383335422566, -4.642558688832423 ], [ 104.308754916606063, -4.627830906271299 ], [ 104.309685092592929, -4.610467624481316 ], [ 104.308496535086988, -4.595378105814916 ], [ 104.296662632374534, -4.525201510940974 ], [ 104.29273522285223, -4.494712416145092 ], [ 104.298936394598911, -4.466858818779485 ], [ 104.309064975867898, -4.440245456662524 ], [ 104.39722497015623, -4.4051054828318 ], [ 104.409627312750217, -4.391514580933176 ], [ 104.4420801132066, -4.363040866842539 ], [ 104.465644565844002, -4.348468113013041 ], [ 104.527242873060118, -4.320046074866468 ], [ 104.550393915446818, -4.314361667956632 ], [ 104.60165693581888, -4.314154961482302 ], [ 104.674313999391529, -4.296843356535703 ], [ 104.839575229812965, -4.220672295490033 ], [ 104.884843784912675, -4.209665215976941 ], [ 104.923807814578936, -4.195040785304002 ], [ 104.974244011751694, -4.185997409652714 ], [ 105.008867221644948, -4.169202568643641 ], [ 105.01775556766529, -4.158763929911458 ], [ 105.029227736071107, -4.147653496711541 ], [ 105.045350782612502, -4.135096123587232 ], [ 105.052585484032818, -4.124244072805709 ], [ 105.057339715855164, -4.110084731025552 ], [ 105.063644240389351, -4.096287122652598 ], [ 105.072945997559714, -4.084866631989485 ], [ 105.081627638904365, -4.076650078638238 ], [ 105.111496616975273, -4.059958590416613 ], [ 105.115837436748279, -4.053395683464032 ], [ 105.115837436748279, -4.047246188560734 ], [ 105.107310825933837, -4.037427666553583 ], [ 105.104727004447682, -4.031949965218701 ], [ 105.104571974816736, -4.027092379709586 ], [ 105.108809441802237, -4.019082532832613 ], [ 105.124157342887031, -3.998153577625544 ], [ 105.126017693961387, -3.993864433796602 ], [ 105.127309605154096, -3.986423027700596 ], [ 105.127929721879127, -3.966114190117764 ], [ 105.128963250653442, -3.956347344953997 ], [ 105.133924188050798, -3.94714893967182 ], [ 105.141882358983651, -3.940017591938329 ], [ 105.157075230437499, -3.934901624910083 ], [ 105.166480341294687, -3.92787362996404 ], [ 105.183326858247881, -3.910562025916761 ], [ 105.191698440330697, -3.906531263606951 ], [ 105.201878696644485, -3.906272882087819 ], [ 105.216503127317424, -3.911543877847691 ], [ 105.229422234748313, -3.911233818585856 ], [ 105.241204462415965, -3.90766814516877 ], [ 105.251229689998127, -3.900485120591838 ], [ 105.266060826246076, -3.886119073236671 ], [ 105.270453321963203, -3.879039401447244 ], [ 105.28290734319927, -3.84446786929675 ], [ 105.283940871074321, -3.835372816802078 ], [ 105.283579135868365, -3.816976007137043 ], [ 105.284612664642736, -3.812428480889707 ], [ 105.287093134240706, -3.809379570510771 ], [ 105.290968866020307, -3.806434014718036 ], [ 105.295671420999213, -3.803540133969989 ], [ 105.298823684165654, -3.798889254935204 ], [ 105.30011559535842, -3.792326347982566 ], [ 105.29970218330908, -3.782352797243789 ], [ 105.302286004795235, -3.771810804824781 ], [ 105.30528323833073, -3.763852633891929 ], [ 105.309934117365572, -3.755584404596618 ], [ 105.315825229850418, -3.751656995973576 ], [ 105.32243981274712, -3.752173760810422 ], [ 105.331121454091772, -3.76276742917355 ], [ 105.340836623311475, -3.786951999435246 ], [ 105.347451206208177, -3.796977227017408 ], [ 105.358613316251478, -3.800852959696329 ], [ 105.366829868703462, -3.799922783709519 ], [ 105.380782504908609, -3.794238375900363 ], [ 105.390859410233531, -3.793463229544443 ], [ 105.402434929628271, -3.796977227017408 ], [ 105.414010450821593, -3.805193779469334 ], [ 105.432613966960957, -3.833874200034302 ], [ 105.442225783393155, -3.84234913490468 ], [ 105.473748406963352, -3.847465101932926 ], [ 105.503720737821766, -3.860332532520374 ], [ 105.513229200567082, -3.868445733084116 ], [ 105.519171990794689, -3.883070163757054 ], [ 105.520670607562465, -3.891906833833332 ], [ 105.520980665924924, -3.900226739072764 ], [ 105.52439131061044, -3.905497734832579 ], [ 105.530385776782111, -3.909528497142446 ], [ 105.54082441641367, -3.911233818585856 ], [ 105.550074497639912, -3.916298109670038 ], [ 105.56335534117602, -3.932214450636422 ], [ 105.571726923258836, -3.946063734953441 ], [ 105.584232618640385, -3.956657402417193 ], [ 105.591674024736392, -3.970299981159201 ], [ 105.596221551883048, -3.982443943133489 ], [ 105.604593133965921, -3.997688489632083 ], [ 105.606453485040277, -4.000168959230109 ], [ 105.610225864931692, -4.009522393243856 ], [ 105.611104364075118, -4.019392592094448 ], [ 105.609244012101442, -4.02791920290889 ], [ 105.602216018054719, -4.04662607183576 ], [ 105.602216018054719, -4.054325859450842 ], [ 105.607073601765251, -4.058511650492278 ], [ 105.624643589130301, -4.055876153062002 ], [ 105.632498407275648, -4.057323092986337 ], [ 105.639319695747304, -4.061457208083709 ], [ 105.64676110184331, -4.070862318940897 ], [ 105.648001337092012, -4.078820488974372 ], [ 105.648001337092012, -4.088380628563186 ], [ 105.649448277016347, -4.098922620982194 ], [ 105.656372919174828, -4.104813735265679 ], [ 105.676630079914219, -4.104141940797945 ], [ 105.686035190771406, -4.110704847750526 ], [ 105.693114861661513, -4.119489840983363 ], [ 105.700814650175914, -4.141504000908924 ], [ 105.709186233158107, -4.149978935779245 ], [ 105.747633497987522, -4.149978935779245 ], [ 105.76546186687159, -4.141917412958264 ], [ 105.789336378770827, -4.136853122773402 ], [ 105.827972852000073, -4.157972914999959 ] ] ], [ [ [ 104.832774285000028, -5.760023695999905 ], [ 104.846364780000044, -5.772556247999944 ], [ 104.849782748000052, -5.783298434999949 ], [ 104.846446160000028, -5.811211846999925 ], [ 104.838389519000032, -5.820407809999949 ], [ 104.820160352000073, -5.812269789999959 ], [ 104.790049675000034, -5.787692966999941 ], [ 104.77670332100007, -5.771579684999949 ], [ 104.771657748000052, -5.761651299999926 ], [ 104.770355665000068, -5.752048434999949 ], [ 104.776540561000047, -5.741143487999921 ], [ 104.78679446700005, -5.742120049999926 ], [ 104.80787194100003, -5.754327080999929 ], [ 104.826996290000068, -5.757907809999949 ], [ 104.832774285000028, -5.760023695999905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-BE", "NAME_1": "Bengkulu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.608152959862409, -4.916489332154952 ], [ 103.592051629000082, -4.910332940999922 ], [ 103.584646030000044, -4.909600518999923 ], [ 103.561289910000028, -4.910332940999922 ], [ 103.553558790000068, -4.908868096999925 ], [ 103.55005944100003, -4.905368747999944 ], [ 103.547862175000034, -4.901055596999925 ], [ 103.54420006600003, -4.897230726999908 ], [ 103.533702019000032, -4.890232028999947 ], [ 103.518321160000028, -4.875664971999925 ], [ 103.510020379000082, -4.869317315999922 ], [ 103.500010613000029, -4.863946221999925 ], [ 103.487803582000026, -4.859144789999959 ], [ 103.474782748000052, -4.856052341999941 ], [ 103.461680535000028, -4.855726820999905 ], [ 103.449880405000044, -4.859795830999929 ], [ 103.437022332000026, -4.866306247999944 ], [ 103.424815300000034, -4.870863539999959 ], [ 103.414561394000032, -4.869317315999922 ], [ 103.40984134200005, -4.860039971999925 ], [ 103.393402540000068, -4.81414153399993 ], [ 103.38599694100003, -4.804945570999905 ], [ 103.37818444100003, -4.798923434999949 ], [ 103.359222852000073, -4.787367445999905 ], [ 103.344493035000028, -4.80046965899993 ], [ 103.328868035000028, -4.794122002999927 ], [ 103.316579623000052, -4.776543877999927 ], [ 103.303558790000068, -4.734144789999959 ], [ 103.28451582100007, -4.715020440999922 ], [ 103.172862175000034, -4.617933851999908 ], [ 103.049978061000047, -4.543064059999949 ], [ 102.920420769000032, -4.492608330999929 ], [ 102.904307488000029, -4.47779713299991 ], [ 102.88990319100003, -4.440362237999921 ], [ 102.87631269600007, -4.420586846999925 ], [ 102.701182488000029, -4.270440362999921 ], [ 102.527517123000052, -4.151136976999908 ], [ 102.366221550000034, -4.026462497999944 ], [ 102.339366082000026, -4.011325778999947 ], [ 102.312510613000029, -3.99146900799991 ], [ 102.291758660000028, -3.965427341999941 ], [ 102.283539259000065, -3.93092213299991 ], [ 102.287852410000028, -3.91529713299991 ], [ 102.306651238000029, -3.884698174999926 ], [ 102.310883009000065, -3.865411065999922 ], [ 102.304535352000073, -3.845147393999923 ], [ 102.274099155000044, -3.810479424999926 ], [ 102.263194207000026, -3.793145440999922 ], [ 102.26107832100007, -3.781914971999925 ], [ 102.261729363000029, -3.772556247999944 ], [ 102.263194207000026, -3.764825127999927 ], [ 102.263194207000026, -3.758396091999941 ], [ 102.257660352000073, -3.746840101999908 ], [ 102.250824415000068, -3.737725518999923 ], [ 102.245127800000034, -3.727959893999923 ], [ 102.242686394000032, -3.714613539999959 ], [ 102.240489129000082, -3.678480726999908 ], [ 102.234385613000029, -3.659356377999927 ], [ 102.222178582000026, -3.642836195999905 ], [ 102.06568444100003, -3.55046965899993 ], [ 101.876963738000029, -3.421319268999923 ], [ 101.637461785000028, -3.250664971999925 ], [ 101.611338738000029, -3.224541924999926 ], [ 101.584483269000032, -3.176853122999944 ], [ 101.564952019000032, -3.162286065999922 ], [ 101.418955925000034, -2.927341403999947 ], [ 101.407969597000033, -2.885511976999908 ], [ 101.326996290000068, -2.739190362999921 ], [ 101.299327019000032, -2.707614841999941 ], [ 101.262543165000068, -2.68328215899993 ], [ 101.178396030000044, -2.641289971999925 ], [ 101.139821811000047, -2.61687590899993 ], [ 101.10482832100007, -2.587090752999927 ], [ 101.026595635072354, -2.479950759425808 ], [ 101.02659563528033, -2.479950759220173 ], [ 101.02688805523951, -2.479693292311595 ], [ 101.078357782085959, -2.434321383525059 ], [ 101.170961948934746, -2.367142022186556 ], [ 101.188118524250456, -2.35990732166556 ], [ 101.237831251910677, -2.345851331773531 ], [ 101.259742059048733, -2.335877781034753 ], [ 101.303563674224165, -2.306163831695471 ], [ 101.335603061731888, -2.296965427312614 ], [ 101.418698764936039, -2.238932793513641 ], [ 101.435751988363506, -2.236245619239924 ], [ 101.443606804710214, -2.241258232581401 ], [ 101.451978386793087, -2.248596286789223 ], [ 101.459729852150929, -2.258414808796374 ], [ 101.483449335318539, -2.280997409502845 ], [ 101.500760940265138, -2.290247490729143 ], [ 101.511302931784826, -2.298309013550124 ], [ 101.517142369224928, -2.305233655708662 ], [ 101.519054397142668, -2.310504653267117 ], [ 101.521328160266364, -2.322596937498702 ], [ 101.539104852307048, -2.350967298801834 ], [ 101.56421959765629, -2.450237724491387 ], [ 101.572901239000942, -2.464655449589316 ], [ 101.585510288968635, -2.474112237289944 ], [ 101.617136265326337, -2.486669609514877 ], [ 101.631812371943397, -2.500105482681874 ], [ 101.638685337258494, -2.510440768626609 ], [ 101.6464884785604, -2.536175631600145 ], [ 101.681835157966134, -2.567233168076257 ], [ 101.704004348421904, -2.601132907557655 ], [ 101.736715528598722, -2.636272882287699 ], [ 101.772785679315632, -2.663661390760581 ], [ 101.82766604994822, -2.692290133582787 ], [ 101.841928746314522, -2.697819512660374 ], [ 101.867870314863126, -2.704640802031406 ], [ 101.878929071219602, -2.714304293508349 ], [ 101.900426467207637, -2.740142511068029 ], [ 101.91029666515891, -2.745051771621945 ], [ 101.920476923271337, -2.74479339010287 ], [ 101.940940789585738, -2.737041924745029 ], [ 101.949002313306096, -2.735026544039783 ], [ 101.962644891148784, -2.735026544039783 ], [ 101.994994337918342, -2.749030857088371 ], [ 102.019799024905012, -2.763913669280441 ], [ 102.032718134134541, -2.770114841027123 ], [ 102.057212761859432, -2.776160984042178 ], [ 102.06682457919095, -2.78236215578886 ], [ 102.087908563129645, -2.810319105941971 ], [ 102.115090366926836, -2.829904473112947 ], [ 102.124702183359034, -2.840033053482614 ], [ 102.133073765441907, -2.853882337799632 ], [ 102.14816328320893, -2.887523694862637 ], [ 102.160048862764768, -2.90168303754217 ], [ 102.205214065076973, -2.942094008032029 ], [ 102.223817580317018, -2.954289645950382 ], [ 102.230535516001225, -2.964521580006931 ], [ 102.235186395036067, -2.976872246656853 ], [ 102.240457390795882, -3.000281670562629 ], [ 102.239940626858413, -3.001521904912011 ], [ 102.238080274884737, -3.003950696767276 ], [ 102.232809279124865, -3.006586195096816 ], [ 102.215032587084181, -3.007826429446197 ], [ 102.208314649601334, -3.010616956507363 ], [ 102.210330031205956, -3.022812594425716 ], [ 102.241129185263674, -3.058831069198504 ], [ 102.25182620641425, -3.066324151238575 ], [ 102.259577670872773, -3.068597913462952 ], [ 102.26898278172996, -3.067977796737921 ], [ 102.281643507641718, -3.069063001456357 ], [ 102.302675815636348, -3.080276787443779 ], [ 102.317248570365166, -3.084617608116105 ], [ 102.32737714983557, -3.084875989635236 ], [ 102.332699823338146, -3.081517021793104 ], [ 102.342621698132803, -3.071285088635932 ], [ 102.350011428284745, -3.066014092876117 ], [ 102.357504511224192, -3.064928888157681 ], [ 102.369080030618875, -3.066789239232037 ], [ 102.430781690622496, -3.087924900014116 ], [ 102.456154820188772, -3.111024264658113 ], [ 102.471967808367594, -3.122651461795556 ], [ 102.481476272012287, -3.132263279127017 ], [ 102.487470738183958, -3.142288506709235 ], [ 102.489331089258314, -3.151228528673641 ], [ 102.487367385396453, -3.16011687559336 ], [ 102.480184360819578, -3.17959889087615 ], [ 102.476205275353152, -3.212516777527298 ], [ 102.471657749105816, -3.220940036453555 ], [ 102.46711022285848, -3.227037856312052 ], [ 102.461839227098608, -3.232825616009393 ], [ 102.459255405612453, -3.238044935825144 ], [ 102.458893671305816, -3.243625989947475 ], [ 102.461684198367038, -3.250447278419188 ], [ 102.468557163682135, -3.256028333440838 ], [ 102.478995803313637, -3.260472506900669 ], [ 102.49232832189449, -3.268999118614431 ], [ 102.501733432751678, -3.279437758245933 ], [ 102.512275425170685, -3.293803805601158 ], [ 102.522507359227177, -3.305120945275405 ], [ 102.538216993719232, -3.319797051892465 ], [ 102.551756218774415, -3.336281833639703 ], [ 102.562608269555938, -3.344084974941666 ], [ 102.573563674024285, -3.349149265126471 ], [ 102.581521844057818, -3.350441175419917 ], [ 102.610977410978705, -3.367287693272431 ], [ 102.631337925404864, -3.373023777025708 ], [ 102.640949741837062, -3.368786309140887 ], [ 102.65112999905017, -3.36191334382579 ], [ 102.683737828238122, -3.329563897056232 ], [ 102.725492384965548, -3.297937920698473 ], [ 102.747196485629274, -3.28476043084919 ], [ 102.765955031399528, -3.278972670252529 ], [ 102.775205112625827, -3.282796726088065 ], [ 102.781716342734967, -3.290806572964982 ], [ 102.791741571216505, -3.321295667760864 ], [ 102.800629917236847, -3.336178480852197 ], [ 102.856440463856302, -3.371111749107968 ], [ 102.870186395385815, -3.375917656874378 ], [ 102.928994174641389, -3.38614959093087 ], [ 102.947080926843284, -3.392092380259157 ], [ 102.97488284736545, -3.395606377732179 ], [ 102.988835483570654, -3.401652519847914 ], [ 102.998602329633741, -3.408008722124862 ], [ 103.004648471749533, -3.415398450478108 ], [ 103.009195997996869, -3.425320326172141 ], [ 103.011779820382344, -3.434105320304297 ], [ 103.01632734573036, -3.459323418441045 ], [ 103.017309197661291, -3.485368340676416 ], [ 103.006508823723209, -3.565053399195051 ], [ 102.993072950556154, -3.58407032558506 ], [ 102.968164910781979, -3.581434828154784 ], [ 102.957932976725431, -3.581899916148245 ], [ 102.945220574869609, -3.58505217931463 ], [ 102.931888055389379, -3.58675750075804 ], [ 102.917005243197366, -3.58350188570347 ], [ 102.892200555311319, -3.573890069271272 ], [ 102.883208855604153, -3.573890069271272 ], [ 102.880211622967977, -3.579471124292979 ], [ 102.883208855604153, -3.589806410237657 ], [ 102.89168379137385, -3.60355234086785 ], [ 102.898401727058001, -3.617401625184868 ], [ 102.897213168652797, -3.630837497452546 ], [ 102.885017530734387, -3.641689548234069 ], [ 102.864191929214144, -3.656055596488613 ], [ 102.844038121262258, -3.66561573697669 ], [ 102.822023960437377, -3.680963637162108 ], [ 102.701824578641322, -3.791086113633241 ], [ 102.684978061688128, -3.799457695716114 ], [ 102.655212437304101, -3.806795749923936 ], [ 102.629890984581209, -3.813668715239032 ], [ 102.635988804439705, -3.82746632181329 ], [ 102.661310256263278, -3.84482960360333 ], [ 102.672265659832306, -3.857852064721044 ], [ 102.683634474551297, -3.875111992824202 ], [ 102.696295201362432, -3.88720427795505 ], [ 102.73190026228724, -3.909838555504962 ], [ 102.744095900205593, -3.923739515766044 ], [ 102.768487176941619, -3.961359959194795 ], [ 102.781406285271828, -3.972160333132877 ], [ 102.799079623625687, -3.982443943133489 ], [ 102.845175001924758, -4.000479017592625 ], [ 102.856957228693091, -4.002959487190594 ], [ 102.873286980809496, -4.000995781530094 ], [ 102.90842695464022, -3.991073906735437 ], [ 102.92713382356709, -3.996034845032057 ], [ 102.935918816799926, -4.000220636073493 ], [ 102.981032343168067, -4.035360609904217 ], [ 102.998602329633741, -4.025903822203645 ], [ 103.021288283127717, -4.0238884414984 ], [ 103.034982537813846, -4.025128675847725 ], [ 103.054051141047296, -4.02290658866815 ], [ 103.080199416070172, -4.022493177518129 ], [ 103.091258173325969, -4.018875828156979 ], [ 103.100559929597011, -4.018565768895144 ], [ 103.107381218968044, -4.019857680087853 ], [ 103.122212356115313, -4.03039967160754 ], [ 103.128775262168574, -4.033138522724641 ], [ 103.1362166691639, -4.039598076889718 ], [ 103.141642693655342, -4.04678110056733 ], [ 103.148205600607923, -4.080370781686213 ], [ 103.175387404405171, -4.140418796190488 ], [ 103.180968459426822, -4.16129607455423 ], [ 103.185929396824179, -4.242531426684025 ], [ 103.199261916304351, -4.265217380177944 ], [ 103.214971551695726, -4.263460381891093 ], [ 103.222412957791732, -4.26495899775955 ], [ 103.241119825819283, -4.272090345493041 ], [ 103.268508335191484, -4.286508069691649 ], [ 103.313260126353725, -4.295758151817267 ], [ 103.358115269404095, -4.322629897251943 ], [ 103.391498244048705, -4.334773857427592 ], [ 103.448135613867464, -4.339218030887423 ], [ 103.492629021711934, -4.368983656170826 ], [ 103.521516147851912, -4.378388767027957 ], [ 103.53608890168141, -4.378078708665498 ], [ 103.580633986369321, -4.380869235726664 ], [ 103.591796096412679, -4.384228203568739 ], [ 103.603474968594867, -4.390481052158862 ], [ 103.610864698746809, -4.401591484459459 ], [ 103.615773960200045, -4.418024591161952 ], [ 103.621768427271036, -4.505254407664779 ], [ 103.629106479680274, -4.531454359531097 ], [ 103.637168003400575, -4.54768075885994 ], [ 103.667243687046494, -4.583130791952499 ], [ 103.680162795376646, -4.617598972214807 ], [ 103.688637730247024, -4.626280612660139 ], [ 103.693908726006839, -4.639303073777853 ], [ 103.718300001843545, -4.730098564597085 ], [ 103.719540236192927, -4.744154554489114 ], [ 103.722537469728422, -4.757487073969287 ], [ 103.729048699837563, -4.765910332895544 ], [ 103.747652215976927, -4.777485854088923 ], [ 103.757212355565741, -4.78570240564153 ], [ 103.765273879286042, -4.804667656986794 ], [ 103.734733107646775, -4.839187514092487 ], [ 103.703468865595653, -4.862545261154878 ], [ 103.676855502579315, -4.877273043716002 ], [ 103.638821648899921, -4.903421318738879 ], [ 103.623318719083557, -4.90827890424805 ], [ 103.608332554104038, -4.916392103912472 ], [ 103.608152960390782, -4.916489331417495 ], [ 103.608152959862409, -4.916489332154952 ] ] ], [ [ [ 102.406504754000082, -5.403741143999923 ], [ 102.400238477000073, -5.418389580999929 ], [ 102.386485222000033, -5.430271091999941 ], [ 102.366221550000034, -5.441582940999922 ], [ 102.369639519000032, -5.453301690999922 ], [ 102.38249759200005, -5.466241143999923 ], [ 102.390147332000026, -5.476983330999929 ], [ 102.378754102000073, -5.482191664999959 ], [ 102.332367384000065, -5.472263278999947 ], [ 102.324473504000082, -5.468926690999922 ], [ 102.321299675000034, -5.472914320999905 ], [ 102.313649936000047, -5.472914320999905 ], [ 102.304698113000029, -5.471856377999927 ], [ 102.297862175000034, -5.472751559999949 ], [ 102.29420006600003, -5.477471612999921 ], [ 102.283539259000065, -5.49928150799991 ], [ 102.270355665000068, -5.488702080999929 ], [ 102.257334832000026, -5.457207940999922 ], [ 102.246104363000029, -5.441582940999922 ], [ 102.127696160000028, -5.349541924999926 ], [ 102.098643425000034, -5.334893487999921 ], [ 102.147227410000028, -5.289646091999941 ], [ 102.172048373000052, -5.280368747999944 ], [ 102.201019727000073, -5.287204684999949 ], [ 102.228282097000033, -5.301853122999944 ], [ 102.241709832000026, -5.306084893999923 ], [ 102.259776238000029, -5.307549737999921 ], [ 102.273936394000032, -5.312269789999959 ], [ 102.28638756600003, -5.323011976999908 ], [ 102.30404707100007, -5.342380466999941 ], [ 102.365896030000044, -5.361260674999926 ], [ 102.394379102000073, -5.375909112999921 ], [ 102.406504754000082, -5.403741143999923 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-SB", "NAME_1": "Sumatera Barat" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.026595635072354, -2.479950759425808 ], [ 101.017832879000082, -2.467950127999927 ], [ 100.92310631600003, -2.333428643999923 ], [ 100.83952884200005, -2.16725025799991 ], [ 100.833994988000029, -2.159112237999921 ], [ 100.831553582000026, -2.141289971999925 ], [ 100.845713738000029, -2.119398695999962 ], [ 100.87826582100007, -2.080010674999926 ], [ 100.887217644000032, -2.037204684999949 ], [ 100.881358269000032, -1.994886976999908 ], [ 100.870616082000026, -1.953301690999922 ], [ 100.86459394600007, -1.912367445999962 ], [ 100.857595248000052, -1.89185963299991 ], [ 100.84107506600003, -1.87037525799991 ], [ 100.783946160000028, -1.815524997999944 ], [ 100.776052280000044, -1.805759372999944 ], [ 100.771332227000073, -1.795586846999925 ], [ 100.764659050000034, -1.772067966999941 ], [ 100.71843509200005, -1.698174737999921 ], [ 100.668304884000065, -1.639743747999944 ], [ 100.654470248000052, -1.617608330999929 ], [ 100.645518425000034, -1.594008070999962 ], [ 100.636566602000073, -1.551364841999941 ], [ 100.632578972000033, -1.507989190999922 ], [ 100.62435957100007, -1.497491143999923 ], [ 100.584646030000044, -1.460381768999923 ], [ 100.570567254000082, -1.442559502999927 ], [ 100.576426629000082, -1.437758070999962 ], [ 100.579925977000073, -1.431898695999962 ], [ 100.584239129000082, -1.415785414999959 ], [ 100.58171634200005, -1.416680596999925 ], [ 100.573252800000034, -1.407647393999923 ], [ 100.570567254000082, -1.408379815999922 ], [ 100.572764519000032, -1.404473565999922 ], [ 100.57740319100003, -1.39812590899993 ], [ 100.581879102000073, -1.393649997999944 ], [ 100.584239129000082, -1.394707940999922 ], [ 100.576833530000044, -1.355645440999922 ], [ 100.569183790000068, -1.330824476999908 ], [ 100.55990644600007, -1.31959400799991 ], [ 100.539805535000028, -1.314222914999959 ], [ 100.498708530000044, -1.29029713299991 ], [ 100.479177280000044, -1.282972914999959 ], [ 100.473480665000068, -1.278497002999927 ], [ 100.46412194100003, -1.268161716999941 ], [ 100.45826256600003, -1.263848565999922 ], [ 100.455577019000032, -1.265720309999949 ], [ 100.453461134000065, -1.269707940999922 ], [ 100.45045006600003, -1.271905205999929 ], [ 100.425791863000029, -1.276055596999925 ], [ 100.415537957000026, -1.274509372999944 ], [ 100.406016472000033, -1.264418226999908 ], [ 100.409678582000026, -1.258558851999908 ], [ 100.426524285000028, -1.243910414999959 ], [ 100.431813998000052, -1.234551690999922 ], [ 100.433604363000029, -1.228692315999922 ], [ 100.43327884200005, -1.20671965899993 ], [ 100.42741946700005, -1.192559502999927 ], [ 100.384938998000052, -1.155205987999921 ], [ 100.370127800000034, -1.160902601999908 ], [ 100.366058790000068, -1.150485934999949 ], [ 100.368011915000068, -1.133721612999921 ], [ 100.371267123000052, -1.121026299999926 ], [ 100.374196811000047, -1.117608330999929 ], [ 100.378754102000073, -1.115166924999926 ], [ 100.383067254000082, -1.111423434999949 ], [ 100.384938998000052, -1.103936455999929 ], [ 100.383311394000032, -1.096774997999944 ], [ 100.371267123000052, -1.073337497999944 ], [ 100.381032748000052, -1.068617445999962 ], [ 100.39193769600007, -1.067071221999925 ], [ 100.402842644000032, -1.068617445999962 ], [ 100.412852410000028, -1.073337497999944 ], [ 100.416351759000065, -1.064629815999922 ], [ 100.417735222000033, -1.056247653999947 ], [ 100.416351759000065, -1.047784112999921 ], [ 100.412852410000028, -1.039157809999949 ], [ 100.390961134000065, -1.041599216999941 ], [ 100.379893425000034, -1.030450127999927 ], [ 100.353037957000026, -0.977146091999941 ], [ 100.344004754000082, -0.908786716999941 ], [ 100.327891472000033, -0.858819268999923 ], [ 100.301442905000044, -0.816338799999926 ], [ 100.159678582000026, -0.667901299999926 ], [ 100.13404381600003, -0.634698174999926 ], [ 100.090586785000028, -0.557224216999941 ], [ 100.034922722000033, -0.48796965899993 ], [ 100.00131269600007, -0.45631275799991 ], [ 99.930430535000028, -0.40943775799991 ], [ 99.919444207000026, -0.398044528999947 ], [ 99.910329623000052, -0.375176690999922 ], [ 99.888845248000052, -0.357598565999922 ], [ 99.843597852000073, -0.332126559999949 ], [ 99.823985222000033, -0.313409112999921 ], [ 99.81381269600007, -0.29461028399993 ], [ 99.810069207000026, -0.273370049999926 ], [ 99.809580925000034, -0.247165622999944 ], [ 99.80591881600003, -0.22779713299991 ], [ 99.797211134000065, -0.215915622999944 ], [ 99.785980665000068, -0.206638278999947 ], [ 99.775401238000029, -0.195570570999962 ], [ 99.765879754000082, -0.181247653999947 ], [ 99.75945071700005, -0.168389580999929 ], [ 99.756032748000052, -0.154717705999929 ], [ 99.754893425000034, -0.137302341999941 ], [ 99.757985873000052, -0.115817966999941 ], [ 99.763845248000052, -0.095879815999922 ], [ 99.766774936000047, -0.075372002999927 ], [ 99.761729363000029, -0.052178643999923 ], [ 99.747243686000047, -0.02983977699995 ], [ 99.689463738000029, 0.020086981000077 ], [ 99.632823113000029, 0.081000067000048 ], [ 99.610850457000026, 0.098578192000048 ], [ 99.534027540000068, 0.140326239000046 ], [ 99.490489129000082, 0.155422268000052 ], [ 99.450205925000034, 0.161281643000052 ], [ 99.426931186000047, 0.161363023000092 ], [ 99.408213738000029, 0.163885809000078 ], [ 99.392588738000029, 0.171698309000078 ], [ 99.37818444100003, 0.187974351000094 ], [ 99.356618686000047, 0.225653387000079 ], [ 99.34107506600003, 0.238755601000094 ], [ 99.316172722000033, 0.242621161000045 ], [ 99.29656009200005, 0.237697658000059 ], [ 99.260590040000068, 0.219875393000052 ], [ 99.244151238000029, 0.215969143000052 ], [ 99.233409050000034, 0.217027085000041 ], [ 99.22193444100003, 0.220363674000055 ], [ 99.211273634000065, 0.225653387000079 ], [ 99.203135613000029, 0.23273346600007 ], [ 99.193695509000065, 0.243150132000039 ], [ 99.18881269600007, 0.245591539000088 ], [ 99.182302280000044, 0.244086005000042 ], [ 99.168711785000028, 0.242621161000045 ], [ 99.162119988000029, 0.245266018000052 ], [ 99.1511646636649, 0.252456858195392 ], [ 99.151343622010529, 0.252646388719882 ], [ 99.268545770271032, 0.376773180038242 ], [ 99.342339716304821, 0.47361481387253 ], [ 99.353605178236364, 0.484466863754733 ], [ 99.364302199386941, 0.489221096476399 ], [ 99.394016147826903, 0.496249091422442 ], [ 99.424143508316206, 0.499246324058618 ], [ 99.443677198643741, 0.503690497518448 ], [ 99.467189976236398, 0.513560696369041 ], [ 99.539588658289915, 0.554695136371436 ], [ 99.564341669332521, 0.563015042510187 ], [ 99.584495477284406, 0.562756659192473 ], [ 99.600825230300075, 0.557123928226702 ], [ 99.625939975649317, 0.542654527184652 ], [ 99.636688673643334, 0.539553940861651 ], [ 99.646920607699826, 0.539037176924182 ], [ 99.655343865726763, 0.537228501793891 ], [ 99.661183303166865, 0.533662828376805 ], [ 99.665627475727376, 0.527926743724208 ], [ 99.677926467332554, 0.508909817334199 ], [ 99.685367873428561, 0.500693263982953 ], [ 99.694876337073254, 0.495422268223081 ], [ 99.706141799004797, 0.492941799524431 ], [ 99.767636753433408, 0.492476711531026 ], [ 99.776318393878739, 0.490306301194835 ], [ 99.78096927291358, 0.486327215728409 ], [ 99.788927442947113, 0.477335516920562 ], [ 99.814093866039059, 0.468188788481768 ], [ 99.828408238349482, 0.46865387647523 ], [ 99.845616489609256, 0.472167873948194 ], [ 99.887836135229406, 0.487257391715218 ], [ 99.900031773147759, 0.49500885707306 ], [ 99.908196648756302, 0.503587143831624 ], [ 99.915586378908245, 0.524981187032154 ], [ 99.917963494819389, 0.538158677780757 ], [ 99.91873864117531, 0.549734198074759 ], [ 99.917705113300315, 0.559707749712857 ], [ 99.914656202921378, 0.568596095733199 ], [ 99.889283075153742, 0.616965237155966 ], [ 99.875433790836723, 0.635982164445295 ], [ 99.867837356009147, 0.653035386973499 ], [ 99.861377801844014, 0.663474025705739 ], [ 99.818072950606165, 0.708690903962065 ], [ 99.811871778859484, 0.721765041923163 ], [ 99.803448520832546, 0.759282130765712 ], [ 99.79910770105954, 0.7717878279459 ], [ 99.794198439606248, 0.780056057241211 ], [ 99.788410679009587, 0.784035141808317 ], [ 99.781382684063601, 0.787445787393153 ], [ 99.76339928644785, 0.793905341558229 ], [ 99.754614292315694, 0.798091131700346 ], [ 99.748206414994002, 0.803362128359538 ], [ 99.739989861642755, 0.819226793381802 ], [ 99.735700717813813, 0.825324612340978 ], [ 99.728672722867827, 0.829562079326479 ], [ 99.720301140784954, 0.837003486321805 ], [ 99.710482618777803, 0.84888906497838 ], [ 99.702007683907425, 0.86986969612957 ], [ 99.702627802431095, 0.880773423754476 ], [ 99.706658562942266, 0.887232977919609 ], [ 99.712963088375773, 0.888059801118914 ], [ 99.719629348115859, 0.886199449145238 ], [ 99.750893589267662, 0.866355699555868 ], [ 99.762727491980115, 0.861291409371063 ], [ 99.776938510603713, 0.858190823048062 ], [ 99.793268263619439, 0.85751902947959 ], [ 99.805773959900307, 0.859637762972397 ], [ 99.81528242444432, 0.862221584458553 ], [ 99.826392856744917, 0.868216051529544 ], [ 99.854039747636193, 0.864288642007239 ], [ 99.900393508353659, 0.844703273936943 ], [ 99.94126956593766, 0.836176663122501 ], [ 99.955532261404699, 0.829975491375819 ], [ 99.971965367207872, 0.819330146169307 ], [ 100.003487989878806, 0.808478095387784 ], [ 100.044415725205511, 0.798762926168081 ], [ 100.058368361410714, 0.792096666427994 ], [ 100.068496941780381, 0.784293525126088 ], [ 100.089270868255937, 0.764449775536718 ], [ 100.107564325133467, 0.752977607130845 ], [ 100.122550490112985, 0.748120022520993 ], [ 100.135366245655689, 0.746363023334823 ], [ 100.147148472424021, 0.746879788171668 ], [ 100.16254804855356, 0.750135403226295 ], [ 100.173400100234403, 0.757576809322302 ], [ 100.197481316809274, 0.739231676500651 ], [ 100.206783074878956, 0.724968980134292 ], [ 100.207713250865766, 0.719077866750126 ], [ 100.206783074878956, 0.71070628556663 ], [ 100.20223554863162, 0.702799791477162 ], [ 100.196344436146774, 0.695410061325276 ], [ 100.174588657740344, 0.676909897973417 ], [ 100.167767369268631, 0.66946849187741 ], [ 100.16254804855356, 0.658358059576756 ], [ 100.162961459703581, 0.648384507938658 ], [ 100.189523146775741, 0.56962962540689 ], [ 100.197481316809274, 0.555315253096467 ], [ 100.219185419271639, 0.53335276911497 ], [ 100.226110061430177, 0.524361070307123 ], [ 100.265384148559576, 0.450463772385149 ], [ 100.368685336558997, 0.411293036244615 ], [ 100.400259636972635, 0.412016505757151 ], [ 100.407390984706126, 0.420233059108398 ], [ 100.416072626050834, 0.43356557948789 ], [ 100.420671828242234, 0.438784898404322 ], [ 100.430025262255981, 0.443642483014173 ], [ 100.444184604935515, 0.447363186062205 ], [ 100.475707229405089, 0.45108388911018 ], [ 100.494414097432582, 0.448861802829924 ], [ 100.509813673562121, 0.443900865432568 ], [ 100.531104363975203, 0.427209377211 ], [ 100.573582391114428, 0.377393296763216 ], [ 100.646601189892976, 0.345147202781163 ], [ 100.687477248376297, 0.319670722226022 ], [ 100.710008173138647, 0.301118882930098 ], [ 100.751504348346941, 0.257503974228996 ], [ 100.758067255299579, 0.254196682331042 ], [ 100.76323489827189, 0.255230211105356 ], [ 100.768144158825805, 0.258537502104048 ], [ 100.774707065778443, 0.261431382852038 ], [ 100.783802118273115, 0.260294501290218 ], [ 100.789383173294766, 0.255953681517155 ], [ 100.793207229130303, 0.251199448795489 ], [ 100.796927932178278, 0.245308336310643 ], [ 100.80044192875198, 0.240657457275802 ], [ 100.828657261323485, 0.212648831178626 ], [ 100.838475783330694, 0.200194809942502 ], [ 100.847157423776025, 0.185983792218224 ], [ 100.851704950023361, 0.172444566263721 ], [ 100.853823684415488, 0.159215400470373 ], [ 100.853823684415488, 0.144539292953993 ], [ 100.840026076042534, 0.056741033871617 ], [ 100.83919925284323, 0.032401434878295 ], [ 100.845607131064185, -0.03033375389964 ], [ 100.84400516240828, -0.037516777577252 ], [ 100.838269077755683, -0.044493096579174 ], [ 100.828967319686001, -0.049143974714696 ], [ 100.817753533698578, -0.05188282583174 ], [ 100.767679070832401, -0.054104913011315 ], [ 100.759927606373878, -0.056171969660681 ], [ 100.753106317002903, -0.060047703238922 ], [ 100.749023878748972, -0.063975110962588 ], [ 100.745974969269355, -0.072036634682945 ], [ 100.746129998900301, -0.083043715095357 ], [ 100.750005730679902, -0.103610935096583 ], [ 100.778737828088254, -0.155080661943032 ], [ 100.784008823848126, -0.170531914915955 ], [ 100.790003290019797, -0.205723564690743 ], [ 100.795377638567118, -0.220916436144648 ], [ 100.80199222236314, -0.233990574105746 ], [ 100.822662795151814, -0.263549492914763 ], [ 100.855839065120733, -0.322253920282208 ], [ 100.939296502631464, -0.380389905969423 ], [ 100.976245151592423, -0.395996188573235 ], [ 101.00011966259234, -0.401318861176492 ], [ 101.040323928406508, -0.474492689585986 ], [ 101.235970899937058, -0.702592461572863 ], [ 101.330848829909542, -0.787238457488854 ], [ 101.433684929915557, -0.847131443261503 ], [ 101.492079298920487, -0.909608249621044 ], [ 101.52525556799003, -0.931932467909064 ], [ 101.578688998698283, -0.948830661705699 ], [ 101.673773635145096, -0.967485853789128 ], [ 101.722969597968529, -0.985417575460758 ], [ 101.734235060799392, -0.99105030642653 ], [ 101.742865025300659, -0.99719980222909 ], [ 101.752011752840076, -1.005778089886974 ], [ 101.756145867937391, -1.011307468065183 ], [ 101.760176630247258, -1.017922051861206 ], [ 101.76978844578008, -1.038230888544661 ], [ 101.782087437385258, -1.064895929303702 ], [ 101.786118198795805, -1.087271823535843 ], [ 101.785911493220794, -1.110164482604773 ], [ 101.782707554110289, -1.131816908223755 ], [ 101.795730015228003, -1.142513930273651 ], [ 101.814953648092342, -1.151040541088094 ], [ 101.82456546362522, -1.150730482725635 ], [ 101.830456577908706, -1.148405042758554 ], [ 101.835365839361941, -1.145304456435554 ], [ 101.840895216640888, -1.147629897301954 ], [ 101.842548863039553, -1.153934420936764 ], [ 101.840998570327713, -1.166233411642622 ], [ 101.832213576195556, -1.185818779712918 ], [ 101.818260939990353, -1.209486586037144 ], [ 101.794489780878621, -1.238890476114591 ], [ 101.774025913664957, -1.254600110606646 ], [ 101.747309197861171, -1.267519219836117 ], [ 101.712530959236346, -1.27356536195191 ], [ 101.702815790016643, -1.27377206752692 ], [ 101.695477735808822, -1.274805597200555 ], [ 101.687829624137805, -1.278577976192651 ], [ 101.678114454918102, -1.288964938980769 ], [ 101.67325687120757, -1.308395277420118 ], [ 101.66943281537209, -1.337179049873271 ], [ 101.686899449050316, -1.3955734188782 ], [ 101.68524580265165, -1.407097263228138 ], [ 101.674393751870127, -1.436346123674696 ], [ 101.676047398268793, -1.446578056831868 ], [ 101.681835157966134, -1.45432952218971 ], [ 101.685504185070045, -1.461150810661366 ], [ 101.68560753785755, -1.469367364012669 ], [ 101.675323927856937, -1.499856458808551 ], [ 101.663334996412914, -1.51866668052287 ], [ 101.639357130826909, -1.543161309147081 ], [ 101.557501661972083, -1.604552910788186 ], [ 101.519364454605864, -1.639847914249856 ], [ 101.500140821741468, -1.664135837299057 ], [ 101.475697869960698, -1.702118015034387 ], [ 101.460970087399573, -1.711574801835638 ], [ 101.44856774300689, -1.716742444808006 ], [ 101.415546502668917, -1.71410694647841 ], [ 101.402989130443984, -1.702066339090266 ], [ 101.226049025142345, -1.728421318788833 ], [ 101.20362145406682, -1.726405938083587 ], [ 101.18512129071496, -1.715243828939549 ], [ 101.168481480236096, -1.708939303506043 ], [ 101.151118199345376, -1.711781508309969 ], [ 101.113911167066647, -1.704908542095552 ], [ 101.118665398888993, -1.806659438282452 ], [ 101.12765709769684, -1.865002129544678 ], [ 101.142281529269098, -1.919985853864091 ], [ 101.170858596147241, -1.975331312490084 ], [ 101.188531936299796, -2.001996351450487 ], [ 101.203724806854325, -2.018532810041165 ], [ 101.235557488787038, -2.043802585021297 ], [ 101.24640953956856, -2.05832366290673 ], [ 101.259742059048733, -2.081474705293431 ], [ 101.299946323963638, -2.179608249421165 ], [ 101.335603061731888, -2.296965427312614 ], [ 101.303563674224165, -2.306163831695471 ], [ 101.259742059048733, -2.335877781034753 ], [ 101.237831251910677, -2.345851331773531 ], [ 101.188118524250456, -2.35990732166556 ], [ 101.170961948934746, -2.367142022186556 ], [ 101.078357782085959, -2.434321383525059 ], [ 101.02688805523951, -2.479693292311595 ], [ 101.02659563528033, -2.479950759220173 ], [ 101.026595635072354, -2.479950759425808 ] ] ], [ [ [ 100.508474155000044, -3.122165622999944 ], [ 100.508311394000032, -3.140801690999922 ], [ 100.515472852000073, -3.153903903999947 ], [ 100.53638756600003, -3.176853122999944 ], [ 100.528819207000026, -3.183526299999926 ], [ 100.506683790000068, -3.178399346999925 ], [ 100.493662957000026, -3.160251559999949 ], [ 100.493011915000068, -3.138278903999947 ], [ 100.508474155000044, -3.122165622999944 ] ] ], [ [ [ 100.398610873000052, -3.183526299999926 ], [ 100.411631707000026, -3.213474216999941 ], [ 100.426524285000028, -3.238213799999926 ], [ 100.466970248000052, -3.287286065999922 ], [ 100.478282097000033, -3.315199476999908 ], [ 100.460703972000033, -3.334405205999929 ], [ 100.448252800000034, -3.325372002999927 ], [ 100.42937259200005, -3.303155205999929 ], [ 100.418955925000034, -3.293389580999929 ], [ 100.40788821700005, -3.286879164999959 ], [ 100.38607832100007, -3.277520440999922 ], [ 100.378672722000033, -3.272393487999921 ], [ 100.377614780000044, -3.268161716999941 ], [ 100.378672722000033, -3.248711846999925 ], [ 100.37623131600003, -3.241143487999921 ], [ 100.37037194100003, -3.23951588299991 ], [ 100.363617384000065, -3.239841403999947 ], [ 100.358246290000068, -3.238213799999926 ], [ 100.336924675000034, -3.222588799999926 ], [ 100.330414259000065, -3.212985934999949 ], [ 100.330332879000082, -3.197360934999949 ], [ 100.33716881600003, -3.197360934999949 ], [ 100.33920332100007, -3.203220309999949 ], [ 100.342458530000044, -3.207696221999925 ], [ 100.34734134200005, -3.210544528999947 ], [ 100.354502800000034, -3.211521091999941 ], [ 100.360199415000068, -3.207452080999929 ], [ 100.355804884000065, -3.198337497999944 ], [ 100.344004754000082, -3.183526299999926 ], [ 100.337657097000033, -3.161553643999923 ], [ 100.33716881600003, -3.152927341999941 ], [ 100.343516472000033, -3.13640715899993 ], [ 100.345225457000026, -3.126560153999947 ], [ 100.29232832100007, -3.077080987999921 ], [ 100.277354363000029, -3.072930596999925 ], [ 100.259287957000026, -3.073174737999921 ], [ 100.248220248000052, -3.069431247999944 ], [ 100.254649285000028, -3.053317966999941 ], [ 100.244151238000029, -3.044040622999944 ], [ 100.213226759000065, -3.006931247999944 ], [ 100.206797722000033, -2.994886976999908 ], [ 100.203623894000032, -2.983819268999923 ], [ 100.189463738000029, -2.966566664999959 ], [ 100.186289910000028, -2.953871351999908 ], [ 100.188487175000034, -2.941664320999962 ], [ 100.197764519000032, -2.929294528999947 ], [ 100.199961785000028, -2.919854424999926 ], [ 100.197520379000082, -2.896254164999959 ], [ 100.179453972000033, -2.827325127999927 ], [ 100.17896569100003, -2.802911065999922 ], [ 100.18913821700005, -2.791192315999922 ], [ 100.227305535000028, -2.772637627999927 ], [ 100.240244988000029, -2.778252862999921 ], [ 100.249034050000034, -2.784356377999927 ], [ 100.255381707000026, -2.791436455999929 ], [ 100.27507571700005, -2.820489190999922 ], [ 100.281504754000082, -2.826104424999926 ], [ 100.28638756600003, -2.828708591999941 ], [ 100.290863477000073, -2.830661716999941 ], [ 100.29615319100003, -2.834161065999922 ], [ 100.354340040000068, -2.894463799999926 ], [ 100.385101759000065, -2.914646091999941 ], [ 100.415863477000073, -2.965915622999944 ], [ 100.467539910000028, -3.01531340899993 ], [ 100.471446160000028, -3.037855726999908 ], [ 100.47201582100007, -3.051690362999921 ], [ 100.467539910000028, -3.066989841999941 ], [ 100.473317905000044, -3.08717213299991 ], [ 100.472911004000082, -3.113946221999925 ], [ 100.46452884200005, -3.13250090899993 ], [ 100.447032097000033, -3.128350518999923 ], [ 100.43718509200005, -3.134372653999947 ], [ 100.426524285000028, -3.13640715899993 ], [ 100.415863477000073, -3.134372653999947 ], [ 100.406016472000033, -3.128350518999923 ], [ 100.38640384200005, -3.14381275799991 ], [ 100.380707227000073, -3.152520440999922 ], [ 100.388682488000029, -3.156345309999949 ], [ 100.402110222000033, -3.158868096999925 ], [ 100.403168165000068, -3.165459893999923 ], [ 100.399424675000034, -3.174248955999929 ], [ 100.398610873000052, -3.183526299999926 ] ] ], [ [ [ 100.206797722000033, -2.693536065999922 ], [ 100.209727410000028, -2.707696221999925 ], [ 100.215179884000065, -2.723565362999921 ], [ 100.218597852000073, -2.739353122999944 ], [ 100.215179884000065, -2.752862237999921 ], [ 100.204112175000034, -2.759942315999922 ], [ 100.172373894000032, -2.765557549999926 ], [ 100.158946160000028, -2.772637627999927 ], [ 100.151377800000034, -2.78484465899993 ], [ 100.145192905000044, -2.811130466999941 ], [ 100.138519727000073, -2.820489190999922 ], [ 100.115244988000029, -2.827894789999959 ], [ 100.089854363000029, -2.824395440999922 ], [ 100.066661004000082, -2.815524997999944 ], [ 100.049652540000068, -2.806817315999922 ], [ 100.044769727000073, -2.820896091999941 ], [ 100.03834069100003, -2.833754164999959 ], [ 100.029307488000029, -2.840101820999962 ], [ 100.015635613000029, -2.834161065999922 ], [ 100.007823113000029, -2.819512627999927 ], [ 100.007009311000047, -2.781914971999925 ], [ 100.00131269600007, -2.76531340899993 ], [ 99.986827019000032, -2.767185153999947 ], [ 99.988454623000052, -2.744886976999908 ], [ 100.00131269600007, -2.686700127999927 ], [ 100.000498894000032, -2.658868096999925 ], [ 99.996267123000052, -2.638767184999949 ], [ 99.98601321700005, -2.62468840899993 ], [ 99.967133009000065, -2.615004164999959 ], [ 99.975759311000047, -2.603448174999926 ], [ 99.975596550000034, -2.594903252999927 ], [ 99.967133009000065, -2.580254815999922 ], [ 99.961436394000032, -2.559014580999929 ], [ 99.960948113000029, -2.552911065999922 ], [ 99.967295769000032, -2.51490650799991 ], [ 99.974619988000029, -2.493910414999959 ], [ 99.984141472000033, -2.484633070999962 ], [ 100.002940300000034, -2.490899346999925 ], [ 100.013682488000029, -2.504815362999921 ], [ 100.021739129000082, -2.518731377999927 ], [ 100.032399936000047, -2.52507903399993 ], [ 100.087087436000047, -2.576267184999949 ], [ 100.107595248000052, -2.600274346999925 ], [ 100.117442254000082, -2.608168226999908 ], [ 100.152110222000033, -2.618584893999923 ], [ 100.166677280000044, -2.627862237999921 ], [ 100.172618035000028, -2.64576588299991 ], [ 100.177989129000082, -2.65593840899993 ], [ 100.201426629000082, -2.678155205999929 ], [ 100.206797722000033, -2.693536065999922 ] ] ], [ [ [ 99.823252800000034, -2.292901299999926 ], [ 99.849619988000029, -2.333916924999926 ], [ 99.85873457100007, -2.356866143999923 ], [ 99.857920769000032, -2.374769789999959 ], [ 99.857920769000032, -2.367364190999922 ], [ 99.853363477000073, -2.377618096999925 ], [ 99.846202019000032, -2.380059502999927 ], [ 99.839691602000073, -2.375258070999962 ], [ 99.83334394600007, -2.352308851999908 ], [ 99.824554884000065, -2.347588799999926 ], [ 99.799571160000028, -2.347426039999959 ], [ 99.788096550000034, -2.344414971999925 ], [ 99.779958530000044, -2.337009372999944 ], [ 99.772146030000044, -2.328220309999949 ], [ 99.761729363000029, -2.320896091999941 ], [ 99.749766472000033, -2.31804778399993 ], [ 99.725108269000032, -2.317071221999925 ], [ 99.713389519000032, -2.313409112999921 ], [ 99.699229363000029, -2.300876559999949 ], [ 99.687022332000026, -2.284926039999959 ], [ 99.671722852000073, -2.271254164999959 ], [ 99.648448113000029, -2.265557549999926 ], [ 99.610850457000026, -2.267185153999947 ], [ 99.603526238000029, -2.265557549999926 ], [ 99.602549675000034, -2.253024997999944 ], [ 99.611582879000082, -2.242771091999941 ], [ 99.61646569100003, -2.233575127999927 ], [ 99.603526238000029, -2.224053643999923 ], [ 99.597666863000029, -2.229099216999941 ], [ 99.593923373000052, -2.22779713299991 ], [ 99.59148196700005, -2.221368096999925 ], [ 99.589854363000029, -2.211032809999949 ], [ 99.583018425000034, -2.211032809999949 ], [ 99.576182488000029, -2.224053643999923 ], [ 99.56771894600007, -2.215101820999962 ], [ 99.555674675000034, -2.183038018999923 ], [ 99.531260613000029, -2.15593840899993 ], [ 99.527679884000065, -2.145440362999921 ], [ 99.531016472000033, -2.134209893999923 ], [ 99.53842207100007, -2.131768487999921 ], [ 99.552256707000026, -2.135349216999941 ], [ 99.564463738000029, -2.131117445999962 ], [ 99.562266472000033, -2.121677341999941 ], [ 99.548838738000029, -2.101169528999947 ], [ 99.548350457000026, -2.061455987999921 ], [ 99.564952019000032, -2.030857028999947 ], [ 99.594004754000082, -2.014825127999927 ], [ 99.631358269000032, -2.018487237999921 ], [ 99.643321160000028, -2.028415622999944 ], [ 99.651866082000026, -2.042087497999944 ], [ 99.662852410000028, -2.054294528999947 ], [ 99.682627800000034, -2.059502862999921 ], [ 99.694346550000034, -2.067803643999923 ], [ 99.70053144600007, -2.087497653999947 ], [ 99.707204623000052, -2.127699476999908 ], [ 99.721364780000044, -2.159112237999921 ], [ 99.775401238000029, -2.23756275799991 ], [ 99.775889519000032, -2.242445570999962 ], [ 99.774261915000068, -2.254327080999929 ], [ 99.775401238000029, -2.258721612999921 ], [ 99.778819207000026, -2.261651299999926 ], [ 99.785817905000044, -2.263441664999959 ], [ 99.814626498000052, -2.284356377999927 ], [ 99.823252800000034, -2.292901299999926 ] ] ], [ [ [ 99.274424675000034, -1.634942315999922 ], [ 99.286875847000033, -1.653741143999923 ], [ 99.29428144600007, -1.686211846999925 ], [ 99.292002800000034, -1.718926690999922 ], [ 99.274424675000034, -1.73796965899993 ], [ 99.261485222000033, -1.669691664999959 ], [ 99.254161004000082, -1.654473565999922 ], [ 99.226735873000052, -1.614434502999927 ], [ 99.214040561000047, -1.623630466999941 ], [ 99.208750847000033, -1.625746351999908 ], [ 99.200043165000068, -1.628106377999927 ], [ 99.210785352000073, -1.638929945999962 ], [ 99.24537194100003, -1.715508721999925 ], [ 99.255056186000047, -1.756036065999922 ], [ 99.254893425000034, -1.772067966999941 ], [ 99.244151238000029, -1.77898528399993 ], [ 99.230804884000065, -1.77703215899993 ], [ 99.208181186000047, -1.770603122999944 ], [ 99.182139519000032, -1.773695570999962 ], [ 99.164561394000032, -1.778415622999944 ], [ 99.148203972000033, -1.785821221999925 ], [ 99.134287957000026, -1.796075127999927 ], [ 99.11850019600007, -1.802341403999947 ], [ 99.100596550000034, -1.799411716999941 ], [ 98.98568769600007, -1.740004164999959 ], [ 98.960134311000047, -1.713067315999922 ], [ 98.898692254000082, -1.687758070999962 ], [ 98.884776238000029, -1.67937590899993 ], [ 98.84302819100003, -1.621270440999922 ], [ 98.838145379000082, -1.617852471999925 ], [ 98.826426629000082, -1.612481377999927 ], [ 98.822601759000065, -1.607598565999922 ], [ 98.830332879000082, -1.570245049999926 ], [ 98.811696811000047, -1.52898528399993 ], [ 98.651377800000034, -1.29851653399993 ], [ 98.635508660000028, -1.289646091999941 ], [ 98.630869988000029, -1.28484465899993 ], [ 98.630056186000047, -1.280205987999921 ], [ 98.631602410000028, -1.26921965899993 ], [ 98.630869988000029, -1.264418226999908 ], [ 98.613780144000032, -1.229180596999925 ], [ 98.606944207000026, -1.22039153399993 ], [ 98.593760613000029, -1.198418877999927 ], [ 98.597911004000082, -1.176934502999927 ], [ 98.624034050000034, -1.134698174999926 ], [ 98.642832879000082, -1.093926690999922 ], [ 98.648936394000032, -1.072035414999959 ], [ 98.651377800000034, -1.049004815999922 ], [ 98.64975019600007, -1.004327080999929 ], [ 98.65162194100003, -0.982028903999947 ], [ 98.658213738000029, -0.963474216999941 ], [ 98.668467644000032, -0.95435963299991 ], [ 98.68482506600003, -0.948011976999908 ], [ 98.704112175000034, -0.944105726999908 ], [ 98.723643425000034, -0.942966403999947 ], [ 98.73796634200005, -0.945733330999929 ], [ 98.769053582000026, -0.956475518999923 ], [ 98.788584832000026, -0.956638278999947 ], [ 98.803233269000032, -0.949802341999941 ], [ 98.82748457100007, -0.927178643999923 ], [ 98.840017123000052, -0.922458591999941 ], [ 98.882823113000029, -0.913181247999944 ], [ 98.898203972000033, -0.91570403399993 ], [ 98.891612175000034, -0.935479424999926 ], [ 98.917979363000029, -0.940118096999925 ], [ 98.937510613000029, -0.960056247999944 ], [ 98.945811394000032, -0.984633070999962 ], [ 98.939300977000073, -1.003676039999959 ], [ 98.932383660000028, -0.996840101999908 ], [ 98.924815300000034, -0.992445570999962 ], [ 98.916026238000029, -0.990492445999962 ], [ 98.905284050000034, -0.990655205999929 ], [ 98.912933790000068, -1.006117445999962 ], [ 98.921885613000029, -1.017510674999926 ], [ 98.929453972000033, -1.029961846999925 ], [ 98.932465040000068, -1.049004815999922 ], [ 98.938324415000068, -1.065118096999925 ], [ 98.95240319100003, -1.07545338299991 ], [ 98.96810957100007, -1.08367278399993 ], [ 98.980316602000073, -1.093682549999926 ], [ 98.989268425000034, -1.111097914999959 ], [ 99.001719597000033, -1.144707940999922 ], [ 99.01099694100003, -1.158868096999925 ], [ 99.02662194100003, -1.174248955999929 ], [ 99.03256269600007, -1.182549737999921 ], [ 99.034922722000033, -1.192803643999923 ], [ 99.03638756600003, -1.205498955999929 ], [ 99.04037519600007, -1.210137627999927 ], [ 99.047048373000052, -1.213799737999921 ], [ 99.064300977000073, -1.234551690999922 ], [ 99.06763756600003, -1.241387627999927 ], [ 99.06959069100003, -1.251397393999923 ], [ 99.065196160000028, -1.251885674999926 ], [ 99.057383660000028, -1.261488539999959 ], [ 99.053070509000065, -1.272637627999927 ], [ 99.059092644000032, -1.278008721999925 ], [ 99.077647332000026, -1.283379815999922 ], [ 99.087412957000026, -1.296807549999926 ], [ 99.096446160000028, -1.332696221999925 ], [ 99.116709832000026, -1.366631768999923 ], [ 99.144053582000026, -1.389092705999929 ], [ 99.164724155000044, -1.414239190999922 ], [ 99.16529381600003, -1.456231377999927 ], [ 99.155772332000026, -1.451267184999949 ], [ 99.13054446700005, -1.428887627999927 ], [ 99.12427819100003, -1.428887627999927 ], [ 99.130625847000033, -1.448174737999921 ], [ 99.14584394600007, -1.469414971999925 ], [ 99.178884311000047, -1.504571221999925 ], [ 99.188243035000028, -1.510349216999941 ], [ 99.197032097000033, -1.512872002999927 ], [ 99.203623894000032, -1.51726653399993 ], [ 99.20630944100003, -1.528903903999947 ], [ 99.20630944100003, -1.556084893999923 ], [ 99.209727410000028, -1.572930596999925 ], [ 99.219411655000044, -1.57976653399993 ], [ 99.23365319100003, -1.580824476999908 ], [ 99.25123131600003, -1.580336195999962 ], [ 99.262054884000065, -1.586683851999908 ], [ 99.272471550000034, -1.601820570999962 ], [ 99.278086785000028, -1.620049737999921 ], [ 99.274424675000034, -1.634942315999922 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-SU", "NAME_1": "Sumatera Utara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.1511646636649, 0.252456858195392 ], [ 99.142344597000033, 0.258246161000045 ], [ 99.13795006600003, 0.263088283000059 ], [ 99.139333530000044, 0.27374909100007 ], [ 99.153086785000028, 0.287176825000074 ], [ 99.158457879000082, 0.297837632000039 ], [ 99.158457879000082, 0.320013739000046 ], [ 99.148448113000029, 0.333156643000052 ], [ 99.131521030000044, 0.34056224200009 ], [ 99.11060631600003, 0.345648505000042 ], [ 99.128754102000073, 0.391791083000044 ], [ 99.132334832000026, 0.412054755000042 ], [ 99.127207879000082, 0.484361070000091 ], [ 99.122569207000026, 0.509019273000092 ], [ 99.11060631600003, 0.523830471000053 ], [ 99.098399285000028, 0.514227606000077 ], [ 99.09734134200005, 0.530747789000088 ], [ 99.103851759000065, 0.57843659100007 ], [ 99.100271030000044, 0.601752020000049 ], [ 99.089854363000029, 0.622015692000048 ], [ 99.072764519000032, 0.630804755000042 ], [ 99.048594597000033, 0.619940497000073 ], [ 99.040049675000034, 0.650458075000074 ], [ 99.047373894000032, 0.739732164000088 ], [ 99.041758660000028, 0.777044989000046 ], [ 99.006114129000082, 0.818752346000053 ], [ 98.99732506600003, 0.825425523000092 ], [ 98.981211785000028, 0.831732489000046 ], [ 98.976735873000052, 0.847357489000046 ], [ 98.980316602000073, 0.886216539000088 ], [ 98.97584069100003, 0.920843817000048 ], [ 98.91732832100007, 1.117173570000091 ], [ 98.850596550000034, 1.277289130000042 ], [ 98.839040561000047, 1.301255601000094 ], [ 98.836924675000034, 1.311468817000048 ], [ 98.838877800000034, 1.321356512000079 ], [ 98.842946811000047, 1.33344147300005 ], [ 98.844574415000068, 1.345892645000049 ], [ 98.840017123000052, 1.356756903000075 ], [ 98.799082879000082, 1.39874909100007 ], [ 98.788584832000026, 1.413804429000038 ], [ 98.775401238000029, 1.451564846000053 ], [ 98.770274285000028, 1.474595445000091 ], [ 98.768077019000032, 1.49359772300005 ], [ 98.764659050000034, 1.498846747000073 ], [ 98.756521030000044, 1.504461981000077 ], [ 98.746267123000052, 1.508937893000052 ], [ 98.736989780000044, 1.510687567000048 ], [ 98.730235222000033, 1.51439036700009 ], [ 98.72584069100003, 1.523627020000049 ], [ 98.720225457000026, 1.545396226000094 ], [ 98.709646030000044, 1.564113674000055 ], [ 98.711273634000065, 1.569566148000092 ], [ 98.727061394000032, 1.572170315000051 ], [ 98.73365319100003, 1.569891669000071 ], [ 98.740407748000052, 1.56391022300005 ], [ 98.74537194100003, 1.556138414000088 ], [ 98.74740644600007, 1.548529364000046 ], [ 98.753428582000026, 1.535630601000094 ], [ 98.766449415000068, 1.549017645000049 ], [ 98.788584832000026, 1.586411851000094 ], [ 98.79818769600007, 1.59906647300005 ], [ 98.818858269000032, 1.619696356000077 ], [ 98.822601759000065, 1.630438544000071 ], [ 98.82357832100007, 1.666693427000041 ], [ 98.819102410000028, 1.682318427000041 ], [ 98.80591881600003, 1.688869533000059 ], [ 98.788096550000034, 1.691351630000042 ], [ 98.783702019000032, 1.699042059000078 ], [ 98.78451582100007, 1.711859442000048 ], [ 98.782969597000033, 1.729722398000092 ], [ 98.773936394000032, 1.748602606000077 ], [ 98.760101759000065, 1.764146226000094 ], [ 98.727061394000032, 1.791896877000056 ], [ 98.715017123000052, 1.784979559000078 ], [ 98.711110873000052, 1.779120184000078 ], [ 98.712738477000073, 1.763902085000041 ], [ 98.715098504000082, 1.76398346600007 ], [ 98.724945509000065, 1.756822007000039 ], [ 98.727061394000032, 1.75649648600006 ], [ 98.726735873000052, 1.749416408000059 ], [ 98.721527540000068, 1.739081122000073 ], [ 98.720225457000026, 1.733465887000079 ], [ 98.711110873000052, 1.725775458000044 ], [ 98.69068444100003, 1.736273505000042 ], [ 98.658213738000029, 1.763902085000041 ], [ 98.576182488000029, 1.888088283000059 ], [ 98.535166863000029, 1.936468817000048 ], [ 98.444021030000044, 1.991156317000048 ], [ 98.426117384000065, 1.997626044000071 ], [ 98.406993035000028, 2.001939195000091 ], [ 98.387868686000047, 2.003485419000071 ], [ 98.365977410000028, 2.002875067000048 ], [ 98.354502800000034, 2.003810940000051 ], [ 98.349619988000029, 2.007228908000059 ], [ 98.349375847000033, 2.021429755000042 ], [ 98.347178582000026, 2.028998114000046 ], [ 98.34115644600007, 2.033392645000049 ], [ 98.329844597000033, 2.038275458000044 ], [ 98.31177819100003, 2.039618231000077 ], [ 98.288828972000033, 2.037339585000041 ], [ 98.26921634200005, 2.038072007000039 ], [ 98.260915561000047, 2.048529364000046 ], [ 98.256114129000082, 2.073309637000079 ], [ 98.243662957000026, 2.087551174000055 ], [ 98.209483269000032, 2.109930731000077 ], [ 98.152598504000082, 2.156927802000041 ], [ 98.101333577388615, 2.188620652979915 ], [ 98.101333577782327, 2.188620653520331 ], [ 98.101381871376248, 2.188858954077432 ], [ 98.125824823157018, 2.309471747023508 ], [ 98.127633498287253, 2.326990058444437 ], [ 98.119261916204437, 2.367349351191592 ], [ 98.103758986388073, 2.402592677809821 ], [ 98.097041049804545, 2.425433660934686 ], [ 98.089392938133528, 2.434528713429359 ], [ 98.080607944900692, 2.438766181314179 ], [ 98.071409539618514, 2.440316474026019 ], [ 98.062572870441556, 2.444347236335886 ], [ 98.05549319865213, 2.45829987254109 ], [ 98.033892449876646, 2.528063056265012 ], [ 98.025314162218763, 2.576122138425944 ], [ 98.025934278943794, 2.588834540281823 ], [ 98.028001337391743, 2.600255031844256 ], [ 98.035546096275255, 2.619633694339484 ], [ 98.037303093662786, 2.627901922735532 ], [ 98.036786329725317, 2.645678616574912 ], [ 98.039163445636461, 2.652293199471558 ], [ 98.059007196125151, 2.666245836576081 ], [ 98.069394158913269, 2.676994534570099 ], [ 98.07171959798103, 2.685469469440477 ], [ 98.069755894119169, 2.691412257869388 ], [ 98.056526727426501, 2.712031154713998 ], [ 98.046811558206798, 2.742416896722375 ], [ 98.044537795083158, 2.760865383230851 ], [ 98.047121616569314, 2.777556871452418 ], [ 98.052702670691644, 2.787582099034637 ], [ 98.059627312850182, 2.797917384979314 ], [ 98.05704349226329, 2.812128404502232 ], [ 98.047845086981113, 2.824272366476521 ], [ 98.036682976937811, 2.831507066098197 ], [ 98.020198195190517, 2.83677806185807 ], [ 98.005005323736668, 2.843857734546816 ], [ 97.995548536935416, 2.853831285285594 ], [ 97.967023146900658, 2.894138902088628 ], [ 97.957824741618481, 2.899099840385304 ], [ 97.935190464068626, 2.904060776883341 ], [ 97.922788120575262, 2.909280096699092 ], [ 97.914158156073995, 2.917083238000998 ], [ 97.910385777081899, 2.924162908891105 ], [ 97.908835484370059, 2.936410224552219 ], [ 97.914519891279895, 2.977854722917129 ], [ 97.898086786376041, 3.056712958236403 ], [ 97.892815789716906, 3.071647447271857 ], [ 97.8930741721353, 3.079192206155369 ], [ 97.895606316778071, 3.082602850840885 ], [ 97.902634311724057, 3.08286123325928 ], [ 97.919067416627911, 3.079657294148774 ], [ 97.927438998710784, 3.08038076456063 ], [ 97.937980992029111, 3.086271877045476 ], [ 97.941701695077143, 3.116864325528184 ], [ 97.940461459828441, 3.127923081884717 ], [ 97.936379021574567, 3.140635483740596 ], [ 97.911419304956894, 3.173139960141043 ], [ 97.907078485183888, 3.184767157278486 ], [ 97.903254429348408, 3.203060614156016 ], [ 97.899327019826046, 3.213705959362528 ], [ 97.89400434812211, 3.223317775794726 ], [ 97.887441441169528, 3.231172593940073 ], [ 97.870594924216334, 3.24553864219456 ], [ 97.863980341319632, 3.257424220851078 ], [ 97.872713657709085, 3.264297187065495 ], [ 97.885994501245193, 3.269413153194478 ], [ 97.952088657865204, 3.285742906210146 ], [ 97.973017613072329, 3.30047068877127 ], [ 97.989554070763688, 3.330391343685562 ], [ 97.976324904071021, 3.360880439380765 ], [ 97.968676792400004, 3.367908433427431 ], [ 97.929712761834423, 3.393643297300343 ], [ 97.920411004664118, 3.40527049443773 ], [ 97.913589716192405, 3.417207749937688 ], [ 97.906768426821372, 3.433020738116568 ], [ 97.903357782135913, 3.446559963171751 ], [ 97.903564487710923, 3.456998602803253 ], [ 97.91100589380693, 3.473328354919659 ], [ 97.914158156073995, 3.48376699545048 ], [ 97.91100589380693, 3.490950019128093 ], [ 97.894366083328066, 3.50722809530032 ], [ 97.888061557894559, 3.520353909205539 ], [ 97.881240269422847, 3.540662746788314 ], [ 97.875762567188701, 3.552548326344152 ], [ 97.870129836222929, 3.560609849165189 ], [ 97.863360222796018, 3.565570787461866 ], [ 97.855402052762486, 3.570221666496707 ], [ 97.843826531569164, 3.579885158872969 ], [ 97.837005243097451, 3.593631090402482 ], [ 97.820365431719267, 3.64830475546006 ], [ 97.80961673372525, 3.670422268173127 ], [ 97.783158400339858, 3.711970120224862 ], [ 97.777577346217527, 3.725095933230705 ], [ 97.777577346217527, 3.736464748849073 ], [ 97.783881870751713, 3.744784654088505 ], [ 97.790031365654954, 3.750727444316112 ], [ 97.798144566218696, 3.756721910487784 ], [ 97.876589390388006, 3.822454331901895 ], [ 97.893332553654375, 3.848189194875431 ], [ 97.891575555367524, 3.856302395439172 ], [ 97.888371617156338, 3.86472565346611 ], [ 97.884650913209043, 3.885396226254841 ], [ 97.890231968230694, 3.915161851538187 ], [ 97.911419304956894, 3.901105862545535 ], [ 97.921237827863422, 3.899813951352769 ], [ 97.931469761020594, 3.901829332058014 ], [ 97.936120640055435, 3.909374090941526 ], [ 97.939221226378436, 3.919399319423064 ], [ 97.945267369393548, 3.930561428567046 ], [ 97.956481153582331, 3.941413479348569 ], [ 97.986350131653239, 3.964047755999104 ], [ 98.001026239169562, 3.980067449752994 ], [ 98.007537469278759, 3.996965644448949 ], [ 98.0121883483136, 4.014483954071238 ], [ 98.019009636785256, 4.031640530286211 ], [ 98.023040399095123, 4.051329251144011 ], [ 98.023660515820097, 4.062439683444609 ], [ 98.032652216426584, 4.10393585955228 ], [ 98.045054559020627, 4.135975247060003 ], [ 98.055803257014645, 4.181760566097239 ], [ 98.062727899173183, 4.192147527986037 ], [ 98.072236362817875, 4.202069402780694 ], [ 98.075440301928325, 4.213128160036547 ], [ 98.07326989069287, 4.222533270893734 ], [ 98.062727899173183, 4.240309962934418 ], [ 98.065725131809359, 4.250903632196867 ], [ 98.075130242666546, 4.254779363976468 ], [ 98.103810663231457, 4.256019599225112 ], [ 98.114921096431431, 4.258500067923762 ], [ 98.127116734349784, 4.266458237957295 ], [ 98.138485549068776, 4.28237457892368 ], [ 98.147167190413484, 4.285991930083469 ], [ 98.178379754721846, 4.293743394541991 ], [ 98.188404982304064, 4.294776923316363 ], [ 98.263955926624647, 4.28816234041966 ], [ 98.267588738000029, 4.287909247000073 ], [ 98.266368035000028, 4.21157461100006 ], [ 98.263438347000033, 4.202866929000038 ], [ 98.240489129000082, 4.19017161700009 ], [ 98.196136915000068, 4.175116278000075 ], [ 98.185801629000082, 4.169745184000078 ], [ 98.180023634000065, 4.158189195000091 ], [ 98.178070509000065, 4.141831773000092 ], [ 98.17896569100003, 4.108221747000073 ], [ 98.201833530000044, 4.132147528000075 ], [ 98.217051629000082, 4.144110419000071 ], [ 98.237071160000028, 4.149237372000073 ], [ 98.23959394600007, 4.153713283000059 ], [ 98.256846550000034, 4.171779690000051 ], [ 98.260915561000047, 4.173163153000075 ], [ 98.26303144600007, 4.177313544000071 ], [ 98.299489780000044, 4.089016018000052 ], [ 98.305674675000034, 4.080308335000041 ], [ 98.36296634200005, 4.087551174000055 ], [ 98.38445071700005, 4.086493231000077 ], [ 98.405772332000026, 4.078924872000073 ], [ 98.441661004000082, 4.057521877000056 ], [ 98.462657097000033, 4.05304596600007 ], [ 98.477224155000044, 4.046210028000075 ], [ 98.497569207000026, 4.014553127000056 ], [ 98.507985873000052, 4.004584052000041 ], [ 98.526377800000034, 4.003241278000075 ], [ 98.54420006600003, 4.005194403000075 ], [ 98.557790561000047, 4.000799872000073 ], [ 98.567881707000026, 3.966457424000055 ], [ 98.579600457000026, 3.95384349200009 ], [ 98.594899936000047, 3.94367096600007 ], [ 98.610362175000034, 3.936346747000073 ], [ 98.676619801000072, 3.914546933000054 ], [ 98.700268798000081, 3.875304345000075 ], [ 98.699717644000032, 3.833929755000042 ], [ 98.71062259200005, 3.803778387000079 ], [ 98.79658192100004, 3.725442643000065 ], [ 98.896582865000028, 3.681402408000054 ], [ 98.957530144000032, 3.67133209800005 ], [ 98.977906598000061, 3.657914212000094 ], [ 99.009251598000048, 3.635417095000093 ], [ 99.026885360000051, 3.629545113000063 ], [ 99.052357179000069, 3.621714496000038 ], [ 99.073910048000073, 3.608994286000041 ], [ 99.101340069000059, 3.582579167000063 ], [ 99.179760944000066, 3.546337688000051 ], [ 99.270038059000058, 3.484585772000059 ], [ 99.368174675000034, 3.407945054000038 ], [ 99.383962436000047, 3.398871161000045 ], [ 99.420909050000034, 3.391546942000048 ], [ 99.43327884200005, 3.382879950000074 ], [ 99.453868035000028, 3.360988674000055 ], [ 99.478770379000082, 3.34601471600007 ], [ 99.489756707000026, 3.33624909100007 ], [ 99.497569207000026, 3.309515692000048 ], [ 99.506032748000052, 3.295965887000079 ], [ 99.527679884000065, 3.271551825000074 ], [ 99.558116082000026, 3.244574286000045 ], [ 99.589366082000026, 3.22797272300005 ], [ 99.685313347000033, 3.204738674000055 ], [ 99.719493035000028, 3.191595770000049 ], [ 99.73755944100003, 3.189032294000071 ], [ 99.750743035000028, 3.180487372000073 ], [ 99.781586134000065, 3.120754299000055 ], [ 99.833994988000029, 3.072414455000057 ], [ 99.85287519600007, 3.047267971000053 ], [ 99.857920769000032, 3.011460679000038 ], [ 99.88998457100007, 3.018255927000041 ], [ 99.911306186000047, 3.000067450000074 ], [ 99.930511915000068, 2.975409247000073 ], [ 99.957286004000082, 2.963080145000049 ], [ 99.979502800000034, 2.948472398000092 ], [ 99.990244988000029, 2.914496161000045 ], [ 99.997894727000073, 2.79913971600007 ], [ 99.995860222000033, 2.785589911000045 ], [ 99.988617384000065, 2.772040106000077 ], [ 99.979014519000032, 2.759466864000046 ], [ 99.970713738000029, 2.745428778000075 ], [ 99.967133009000065, 2.727240302000041 ], [ 99.964610222000033, 2.71938711100006 ], [ 99.95435631600003, 2.70384349200009 ], [ 99.953461134000065, 2.696234442000048 ], [ 99.959239129000082, 2.687892971000053 ], [ 99.967621290000068, 2.68431224200009 ], [ 99.976735873000052, 2.682440497000073 ], [ 99.984141472000033, 2.678778387000079 ], [ 99.992686394000032, 2.668768622000073 ], [ 99.991709832000026, 2.664211330000057 ], [ 99.98764082100007, 2.66087474200009 ], [ 99.98764082100007, 2.65460846600007 ], [ 100.008799675000034, 2.620428778000075 ], [ 100.005869988000029, 2.609198309000078 ], [ 100.007985873000052, 2.602606512000079 ], [ 100.013926629000082, 2.601629950000074 ], [ 100.022471550000034, 2.607407945000091 ], [ 100.028168165000068, 2.617580471000053 ], [ 100.025157097000033, 2.624579169000071 ], [ 100.01889082100007, 2.630804755000042 ], [ 100.015635613000029, 2.63812897300005 ], [ 100.014496290000068, 2.671535549000055 ], [ 100.012217644000032, 2.678778387000079 ], [ 99.980235222000033, 2.697333075000074 ], [ 99.97396894600007, 2.703070380000042 ], [ 99.98568769600007, 2.718451239000046 ], [ 100.018565300000034, 2.731675523000092 ], [ 100.054942254000082, 2.72728099200009 ], [ 100.076996290000068, 2.689398505000042 ], [ 100.07781009200005, 2.675848700000074 ], [ 100.076019727000073, 2.648260809000078 ], [ 100.076996290000068, 2.634711005000042 ], [ 100.088389519000032, 2.601507880000042 ], [ 100.090098504000082, 2.590073960000041 ], [ 100.095957879000082, 2.570461330000057 ], [ 100.109711134000065, 2.54564036700009 ], [ 100.125824415000068, 2.530096747000073 ], [ 100.138519727000073, 2.537909247000073 ], [ 100.137461785000028, 2.551947333000044 ], [ 100.121429884000065, 2.58820221600007 ], [ 100.117442254000082, 2.603705145000049 ], [ 100.117442254000082, 2.64516836100006 ], [ 100.121104363000029, 2.663560289000088 ], [ 100.131114129000082, 2.681870835000041 ], [ 100.14380944100003, 2.695054429000038 ], [ 100.15943444100003, 2.70376211100006 ], [ 100.179209832000026, 2.70844147300005 ], [ 100.203379754000082, 2.709865627000056 ], [ 100.21062259200005, 2.706244208000044 ], [ 100.21257571700005, 2.697699286000045 ], [ 100.213389519000032, 2.687445380000042 ], [ 100.217458530000044, 2.678778387000079 ], [ 100.224864129000082, 2.673773505000042 ], [ 100.242442254000082, 2.66632721600007 ], [ 100.248383009000065, 2.662054755000042 ], [ 100.25131269600007, 2.654771226000094 ], [ 100.254649285000028, 2.62726471600007 ], [ 100.258067254000082, 2.619086005000042 ], [ 100.26693769600007, 2.602606512000079 ], [ 100.26880944100003, 2.596869208000044 ], [ 100.273692254000082, 2.59015534100007 ], [ 100.299571160000028, 2.572088934000078 ], [ 100.308360222000033, 2.569484768000052 ], [ 100.31218509200005, 2.562892971000053 ], [ 100.313649936000047, 2.55455149900007 ], [ 100.313546584407277, 2.554314683176074 ], [ 100.293754510762028, 2.495920315070464 ], [ 100.278716668939069, 2.354533596548208 ], [ 100.279646844026615, 2.318050035580654 ], [ 100.283884311911436, 2.286165675905181 ], [ 100.29804365369165, 2.24280915052185 ], [ 100.312616408420467, 2.17728343288411 ], [ 100.321298048865799, 2.074602362508983 ], [ 100.319127639428984, 2.045663560424941 ], [ 100.305175002324461, 2.001376858155481 ], [ 100.303314650350785, 1.996777655064705 ], [ 100.295976597042284, 1.962412828489221 ], [ 100.292565953256087, 1.920606594019091 ], [ 100.296183302617294, 1.89781728773761 ], [ 100.303573032769179, 1.881177476359426 ], [ 100.314786817857339, 1.87146230713978 ], [ 100.356024610647239, 1.842213445793902 ], [ 100.366773308641257, 1.829914455987364 ], [ 100.375558302773413, 1.814463202115064 ], [ 100.396642286712108, 1.748420722338437 ], [ 100.435296258915173, 1.666565253483668 ], [ 100.443254428948705, 1.636644599468696 ], [ 100.443977899360505, 1.616232408199096 ], [ 100.440877313037504, 1.59871409677811 ], [ 100.433745966203333, 1.584348049422942 ], [ 100.424392531290266, 1.571635647567064 ], [ 100.413178746202107, 1.561197007935561 ], [ 100.350340203737346, 1.524816798856193 ], [ 100.319747756153959, 1.510760809863484 ], [ 100.303934767975136, 1.504146226067462 ], [ 100.104773798072301, 1.415211086322586 ], [ 100.086790398657911, 1.403893948446978 ], [ 100.078108759111899, 1.396245835876641 ], [ 100.071545852159318, 1.387874253793768 ], [ 100.067205030587672, 1.379347642080006 ], [ 100.065706414719216, 1.371286119258968 ], [ 100.066946649068541, 1.365239976243913 ], [ 100.070977411378408, 1.358728746134716 ], [ 100.11707278787884, 1.321004949918517 ], [ 100.124720900449176, 1.311703192748155 ], [ 100.130301954571507, 1.299972641923887 ], [ 100.132575717695147, 1.287828680848918 ], [ 100.132162307444503, 1.252275294968854 ], [ 100.134642775243833, 1.241836656236671 ], [ 100.139552036697069, 1.23222483980453 ], [ 100.147665236361547, 1.224731756865083 ], [ 100.191073440386901, 1.200392156972441 ], [ 100.20182213658228, 1.192382310095525 ], [ 100.210503777926988, 1.183545640019247 ], [ 100.217635125660479, 1.173675442067974 ], [ 100.22321617978281, 1.160859687424647 ], [ 100.225386591018321, 1.146028551176698 ], [ 100.22362959183215, 1.122619127270923 ], [ 100.211227248338787, 1.078952541726437 ], [ 100.209005162058531, 1.066136786183733 ], [ 100.209573601940122, 1.05352773711536 ], [ 100.215878127373628, 1.032960517114191 ], [ 100.21825524328483, 1.017405911353706 ], [ 100.218927036853245, 0.996528632090701 ], [ 100.213707717037494, 0.930124417108175 ], [ 100.214017775399952, 0.886509508407073 ], [ 100.212725865106563, 0.874572252007795 ], [ 100.209883661201957, 0.866355699555868 ], [ 100.20337243019344, 0.859431057397387 ], [ 100.196551140822464, 0.853643296800669 ], [ 100.189781529194192, 0.846305243492168 ], [ 100.18332197502906, 0.836486721485016 ], [ 100.175673863358043, 0.818554998914067 ], [ 100.172469924247537, 0.806411037839098 ], [ 100.171229689898212, 0.785430405788588 ], [ 100.173400100234403, 0.757576809322302 ], [ 100.16254804855356, 0.750135403226295 ], [ 100.147148472424021, 0.746879788171668 ], [ 100.135366245655689, 0.746363023334823 ], [ 100.122550490112985, 0.748120022520993 ], [ 100.107564325133467, 0.752977607130845 ], [ 100.089270868255937, 0.764449775536718 ], [ 100.068496941780381, 0.784293525126088 ], [ 100.058368361410714, 0.792096666427994 ], [ 100.044415725205511, 0.798762926168081 ], [ 100.003487989878806, 0.808478095387784 ], [ 99.971965367207872, 0.819330146169307 ], [ 99.955532261404699, 0.829975491375819 ], [ 99.94126956593766, 0.836176663122501 ], [ 99.900393508353659, 0.844703273936943 ], [ 99.854039747636193, 0.864288642007239 ], [ 99.826392856744917, 0.868216051529544 ], [ 99.81528242444432, 0.862221584458553 ], [ 99.805773959900307, 0.859637762972397 ], [ 99.793268263619439, 0.85751902947959 ], [ 99.776938510603713, 0.858190823048062 ], [ 99.762727491980115, 0.861291409371063 ], [ 99.750893589267662, 0.866355699555868 ], [ 99.719629348115859, 0.886199449145238 ], [ 99.712963088375773, 0.888059801118914 ], [ 99.706658562942266, 0.887232977919609 ], [ 99.702627802431095, 0.880773423754476 ], [ 99.702007683907425, 0.86986969612957 ], [ 99.710482618777803, 0.84888906497838 ], [ 99.720301140784954, 0.837003486321805 ], [ 99.728672722867827, 0.829562079326479 ], [ 99.735700717813813, 0.825324612340978 ], [ 99.739989861642755, 0.819226793381802 ], [ 99.748206414994002, 0.803362128359538 ], [ 99.754614292315694, 0.798091131700346 ], [ 99.76339928644785, 0.793905341558229 ], [ 99.781382684063601, 0.787445787393153 ], [ 99.788410679009587, 0.784035141808317 ], [ 99.794198439606248, 0.780056057241211 ], [ 99.79910770105954, 0.7717878279459 ], [ 99.803448520832546, 0.759282130765712 ], [ 99.811871778859484, 0.721765041923163 ], [ 99.818072950606165, 0.708690903962065 ], [ 99.861377801844014, 0.663474025705739 ], [ 99.867837356009147, 0.653035386973499 ], [ 99.875433790836723, 0.635982164445295 ], [ 99.889283075153742, 0.616965237155966 ], [ 99.914656202921378, 0.568596095733199 ], [ 99.917705113300315, 0.559707749712857 ], [ 99.91873864117531, 0.549734198074759 ], [ 99.917963494819389, 0.538158677780757 ], [ 99.915586378908245, 0.524981187032154 ], [ 99.908196648756302, 0.503587143831624 ], [ 99.900031773147759, 0.49500885707306 ], [ 99.887836135229406, 0.487257391715218 ], [ 99.845616489609256, 0.472167873948194 ], [ 99.828408238349482, 0.46865387647523 ], [ 99.814093866039059, 0.468188788481768 ], [ 99.788927442947113, 0.477335516920562 ], [ 99.78096927291358, 0.486327215728409 ], [ 99.776318393878739, 0.490306301194835 ], [ 99.767636753433408, 0.492476711531026 ], [ 99.706141799004797, 0.492941799524431 ], [ 99.694876337073254, 0.495422268223081 ], [ 99.685367873428561, 0.500693263982953 ], [ 99.677926467332554, 0.508909817334199 ], [ 99.665627475727376, 0.527926743724208 ], [ 99.661183303166865, 0.533662828376805 ], [ 99.655343865726763, 0.537228501793891 ], [ 99.646920607699826, 0.539037176924182 ], [ 99.636688673643334, 0.539553940861651 ], [ 99.625939975649317, 0.542654527184652 ], [ 99.600825230300075, 0.557123928226702 ], [ 99.584495477284406, 0.562756659192473 ], [ 99.564341669332521, 0.563015042510187 ], [ 99.539588658289915, 0.554695136371436 ], [ 99.467189976236398, 0.513560696369041 ], [ 99.443677198643741, 0.503690497518448 ], [ 99.424143508316206, 0.499246324058618 ], [ 99.394016147826903, 0.496249091422442 ], [ 99.364302199386941, 0.489221096476399 ], [ 99.353605178236364, 0.484466863754733 ], [ 99.342339716304821, 0.47361481387253 ], [ 99.268545770271032, 0.376773180038242 ], [ 99.151343622010529, 0.252646388719882 ], [ 99.1511646636649, 0.252456858195392 ] ] ], [ [ [ 98.501963738000029, -0.460544528999947 ], [ 98.504567905000044, -0.473565362999921 ], [ 98.50163821700005, -0.486097914999959 ], [ 98.495127800000034, -0.498630466999941 ], [ 98.486827019000032, -0.510918877999927 ], [ 98.496429884000065, -0.520928643999923 ], [ 98.502696160000028, -0.535414320999962 ], [ 98.504405144000032, -0.551202080999929 ], [ 98.500498894000032, -0.565606377999927 ], [ 98.493662957000026, -0.565606377999927 ], [ 98.492930535000028, -0.55787525799991 ], [ 98.491384311000047, -0.553887627999927 ], [ 98.489105665000068, -0.550713799999926 ], [ 98.486827019000032, -0.545586846999925 ], [ 98.479258660000028, -0.553155205999929 ], [ 98.473480665000068, -0.556735934999949 ], [ 98.467458530000044, -0.556084893999923 ], [ 98.458994988000029, -0.551853122999944 ], [ 98.467784050000034, -0.538832289999959 ], [ 98.462087436000047, -0.529473565999922 ], [ 98.447927280000044, -0.526299737999921 ], [ 98.431651238000029, -0.531996351999908 ], [ 98.425547722000033, -0.543389580999929 ], [ 98.421885613000029, -0.56178150799991 ], [ 98.420420769000032, -0.579034112999921 ], [ 98.422048373000052, -0.586602471999925 ], [ 98.39031009200005, -0.577080987999921 ], [ 98.316742384000065, -0.535088799999926 ], [ 98.275157097000033, -0.525160414999959 ], [ 98.284190300000034, -0.521742445999962 ], [ 98.295095248000052, -0.51336028399993 ], [ 98.30201256600003, -0.510918877999927 ], [ 98.31185957100007, -0.511976820999962 ], [ 98.329274936000047, -0.518731377999927 ], [ 98.336110873000052, -0.517754815999922 ], [ 98.342133009000065, -0.506280205999929 ], [ 98.364024285000028, -0.441989841999941 ], [ 98.365977410000028, -0.422051690999922 ], [ 98.36264082100007, -0.38014088299991 ], [ 98.364024285000028, -0.360039971999925 ], [ 98.368907097000033, -0.349216403999947 ], [ 98.389414910000028, -0.320896091999941 ], [ 98.39812259200005, -0.312269789999959 ], [ 98.405446811000047, -0.308851820999962 ], [ 98.41342207100007, -0.306735934999949 ], [ 98.420664910000028, -0.303806247999944 ], [ 98.42546634200005, -0.298597914999959 ], [ 98.426117384000065, -0.288181247999944 ], [ 98.418630405000044, -0.257582289999959 ], [ 98.429209832000026, -0.24382903399993 ], [ 98.44068444100003, -0.246514580999929 ], [ 98.451182488000029, -0.258396091999941 ], [ 98.49341881600003, -0.329196872999944 ], [ 98.507334832000026, -0.36492278399993 ], [ 98.500498894000032, -0.387383721999925 ], [ 98.510264519000032, -0.403741143999923 ], [ 98.512380405000044, -0.422946872999944 ], [ 98.508799675000034, -0.442559502999927 ], [ 98.501963738000029, -0.460544528999947 ] ] ], [ [ [ 98.479991082000026, -0.158379815999922 ], [ 98.49732506600003, -0.199802341999941 ], [ 98.532237175000034, -0.239353122999944 ], [ 98.55982506600003, -0.278252862999921 ], [ 98.555186394000032, -0.318536065999922 ], [ 98.555186394000032, -0.312269789999959 ], [ 98.551768425000034, -0.322198174999926 ], [ 98.543223504000082, -0.334079684999949 ], [ 98.541514519000032, -0.34303150799991 ], [ 98.54265384200005, -0.354180596999925 ], [ 98.547862175000034, -0.369235934999949 ], [ 98.549001498000052, -0.381117445999962 ], [ 98.541514519000032, -0.381117445999962 ], [ 98.512461785000028, -0.319024346999925 ], [ 98.40552819100003, -0.168226820999962 ], [ 98.38998457100007, -0.140394789999959 ], [ 98.363291863000029, -0.074395440999922 ], [ 98.343516472000033, -0.044732354999951 ], [ 98.331879102000073, -0.03679778399993 ], [ 98.315928582000026, -0.028334242999961 ], [ 98.301768425000034, -0.018731377999927 ], [ 98.295664910000028, -0.007256768999923 ], [ 98.304453972000033, -0.001722914999959 ], [ 98.324961785000028, 0.003973700000074 ], [ 98.364024285000028, 0.01048411700009 ], [ 98.406097852000073, -0.007378838999955 ], [ 98.443369988000029, -0.05201588299991 ], [ 98.46998131600003, -0.107517184999949 ], [ 98.479991082000026, -0.158379815999922 ] ] ], [ [ [ 98.555186394000032, 1.682033596000053 ], [ 98.570974155000044, 1.673081773000092 ], [ 98.590668165000068, 1.651922919000071 ], [ 98.599131707000026, 1.631984768000052 ], [ 98.581065300000034, 1.626776434000078 ], [ 98.55990644600007, 1.623602606000077 ], [ 98.528819207000026, 1.623236395000049 ], [ 98.497569207000026, 1.62726471600007 ], [ 98.464854363000029, 1.644191799000055 ], [ 98.451833530000044, 1.646226304000038 ], [ 98.439952019000032, 1.64984772300005 ], [ 98.431651238000029, 1.661525783000059 ], [ 98.430186394000032, 1.676459052000041 ], [ 98.43482506600003, 1.691961981000077 ], [ 98.445648634000065, 1.704331773000092 ], [ 98.462657097000033, 1.70929596600007 ], [ 98.477061394000032, 1.703599351000094 ], [ 98.488129102000073, 1.690497137000079 ], [ 98.504161004000082, 1.664943752000056 ], [ 98.521006707000026, 1.655585028000075 ], [ 98.531097852000073, 1.661444403000075 ], [ 98.540537957000026, 1.673407294000071 ], [ 98.555186394000032, 1.682033596000053 ] ] ], [ [ [ 97.928477410000028, 0.996079820000091 ], [ 97.939219597000033, 0.986070054000038 ], [ 97.934418165000068, 0.96360911700009 ], [ 97.917735222000033, 0.927883205000057 ], [ 97.917735222000033, 0.934637762000079 ], [ 97.901377800000034, 0.905951239000046 ], [ 97.898285352000073, 0.87531159100007 ], [ 97.904063347000033, 0.814886786000045 ], [ 97.901866082000026, 0.800726630000042 ], [ 97.892588738000029, 0.777044989000046 ], [ 97.884532097000033, 0.71820709800005 ], [ 97.882985873000052, 0.642971096000053 ], [ 97.87427819100003, 0.622015692000048 ], [ 97.827159050000034, 0.562689520000049 ], [ 97.819346550000034, 0.558539130000042 ], [ 97.809255405000044, 0.560288804000038 ], [ 97.800303582000026, 0.565497137000079 ], [ 97.774261915000068, 0.585191148000092 ], [ 97.764170769000032, 0.567572333000044 ], [ 97.752289259000065, 0.568345445000091 ], [ 97.726410352000073, 0.585191148000092 ], [ 97.725271030000044, 0.580755927000041 ], [ 97.715342644000032, 0.574448960000041 ], [ 97.704112175000034, 0.572739976000094 ], [ 97.696136915000068, 0.586371161000045 ], [ 97.690440300000034, 0.591620184000078 ], [ 97.683848504000082, 0.596136786000045 ], [ 97.678721550000034, 0.598863023000092 ], [ 97.690928582000026, 0.624212958000044 ], [ 97.683848504000082, 0.643052476000094 ], [ 97.668955925000034, 0.658758856000077 ], [ 97.658213738000029, 0.674627997000073 ], [ 97.65748131600003, 0.687241929000038 ], [ 97.659190300000034, 0.715399481000077 ], [ 97.654551629000082, 0.726060289000088 ], [ 97.64771569100003, 0.736314195000091 ], [ 97.633067254000082, 0.769476630000042 ], [ 97.630381707000026, 0.780747789000088 ], [ 97.613780144000032, 0.823553778000075 ], [ 97.574392123000052, 0.860907294000071 ], [ 97.486338738000029, 0.914211330000057 ], [ 97.49187259200005, 0.933010158000059 ], [ 97.479340040000068, 0.943426825000074 ], [ 97.457367384000065, 0.94798411700009 ], [ 97.435069207000026, 0.948919989000046 ], [ 97.395355665000068, 0.944891669000071 ], [ 97.388845248000052, 0.952093817000048 ], [ 97.38998457100007, 0.976263739000046 ], [ 97.387705925000034, 1.018784898000092 ], [ 97.371592644000032, 1.059759833000044 ], [ 97.321787957000026, 1.140773830000057 ], [ 97.312266472000033, 1.166937567000048 ], [ 97.30827884200005, 1.174872137000079 ], [ 97.298838738000029, 1.183254299000055 ], [ 97.287852410000028, 1.190822658000059 ], [ 97.27857506600003, 1.199693101000094 ], [ 97.271332227000073, 1.222235419000071 ], [ 97.256846550000034, 1.23501211100006 ], [ 97.25359134200005, 1.246893622000073 ], [ 97.251719597000033, 1.25922272300005 ], [ 97.247243686000047, 1.26703522300005 ], [ 97.240570509000065, 1.272406317000048 ], [ 97.233083530000044, 1.277289130000042 ], [ 97.222911004000082, 1.28188711100006 ], [ 97.212657097000033, 1.284328518000052 ], [ 97.202159050000034, 1.288316148000092 ], [ 97.191579623000052, 1.297756252000056 ], [ 97.185801629000082, 1.307766018000052 ], [ 97.175954623000052, 1.331854559000078 ], [ 97.168223504000082, 1.342840887000079 ], [ 97.128428582000026, 1.382635809000078 ], [ 97.107269727000073, 1.397772528000075 ], [ 97.082286004000082, 1.407619533000059 ], [ 97.082286004000082, 1.405340887000079 ], [ 97.068614129000082, 1.394598700000074 ], [ 97.063649936000047, 1.415228583000044 ], [ 97.080414259000065, 1.42914459800005 ], [ 97.106944207000026, 1.436021226000094 ], [ 97.130625847000033, 1.435532945000091 ], [ 97.139496290000068, 1.432196356000077 ], [ 97.150726759000065, 1.425930080000057 ], [ 97.160655144000032, 1.41828034100007 ], [ 97.164805535000028, 1.410711981000077 ], [ 97.169688347000033, 1.415961005000042 ], [ 97.181407097000033, 1.416449286000045 ], [ 97.205821160000028, 1.413804429000038 ], [ 97.235850457000026, 1.416693427000041 ], [ 97.257823113000029, 1.423651434000078 ], [ 97.277354363000029, 1.436224677000041 ], [ 97.321055535000028, 1.47406647300005 ], [ 97.330739780000044, 1.486558335000041 ], [ 97.334808790000068, 1.500148830000057 ], [ 97.331797722000033, 1.527818101000094 ], [ 97.335459832000026, 1.537665106000077 ], [ 97.349782748000052, 1.545396226000094 ], [ 97.374522332000026, 1.518540757000039 ], [ 97.391612175000034, 1.508937893000052 ], [ 97.40748131600003, 1.514064846000053 ], [ 97.416758660000028, 1.519232489000046 ], [ 97.424327019000032, 1.514878648000092 ], [ 97.437998894000032, 1.495266018000052 ], [ 97.438975457000026, 1.484605210000041 ], [ 97.441661004000082, 1.479681708000044 ], [ 97.447276238000029, 1.47687409100007 ], [ 97.459971550000034, 1.47797272300005 ], [ 97.47038821700005, 1.475653387000079 ], [ 97.48170006600003, 1.477443752000056 ], [ 97.486338738000029, 1.476548570000091 ], [ 97.487803582000026, 1.473089911000045 ], [ 97.49146569100003, 1.459784247000073 ], [ 97.493174675000034, 1.456040757000039 ], [ 97.51685631600003, 1.431789455000057 ], [ 97.524180535000028, 1.428127346000053 ], [ 97.528086785000028, 1.422919012000079 ], [ 97.533539259000065, 1.39984772300005 ], [ 97.539886915000068, 1.390570380000042 ], [ 97.592133009000065, 1.339911200000074 ], [ 97.60474694100003, 1.322333075000074 ], [ 97.61654707100007, 1.280910549000055 ], [ 97.693614129000082, 1.186021226000094 ], [ 97.712657097000033, 1.172674872000073 ], [ 97.757334832000026, 1.163885809000078 ], [ 97.776540561000047, 1.155096747000073 ], [ 97.79224694100003, 1.14398834800005 ], [ 97.802256707000026, 1.133286851000094 ], [ 97.819021030000044, 1.109930731000077 ], [ 97.826426629000082, 1.096258856000077 ], [ 97.82943769600007, 1.082098700000074 ], [ 97.836273634000065, 1.069973049000055 ], [ 97.85279381600003, 1.065008856000077 ], [ 97.872813347000033, 1.062486070000091 ], [ 97.890391472000033, 1.058172919000071 ], [ 97.904470248000052, 1.044012762000079 ], [ 97.922211134000065, 1.004339911000045 ], [ 97.928477410000028, 0.996079820000091 ] ] ], [ [ [ 98.54759660600007, 0.159326621000048 ], [ 98.590049144000034, 0.171655865000048 ], [ 98.625416223000059, 0.175154445000089 ], [ 98.673148818000072, 0.169812204000038 ], [ 98.717351713000028, 0.175119907000067 ], [ 98.743868042000031, 0.166265774000067 ], [ 98.766855252000028, 0.166260799000042 ], [ 98.805743591000066, 0.160915958000089 ], [ 98.835798913000076, 0.141468860000089 ], [ 98.851685415000077, 0.109621341000093 ], [ 98.84458901000005, 0.084859408000057 ], [ 98.802151388000027, 0.086636337000073 ], [ 98.763256051000042, 0.086647611000046 ], [ 98.726125446000026, 0.07428458000004 ], [ 98.689003552000031, 0.070775303000062 ], [ 98.650123449000034, 0.079621516000088 ], [ 98.620081454000058, 0.08670274800005 ], [ 98.575882542000045, 0.086750186000074 ], [ 98.538739882000073, 0.090335129000039 ], [ 98.528133186000048, 0.111575879000043 ], [ 98.52460056700005, 0.145197070000052 ], [ 98.54759660600007, 0.159326621000048 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-AC", "NAME_1": "Aceh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.101333577388615, 2.188620652979915 ], [ 98.089610222000033, 2.195868231000077 ], [ 97.983571811000047, 2.244370835000041 ], [ 97.955902540000068, 2.271714585000041 ], [ 97.933360222000033, 2.269761460000041 ], [ 97.881114129000082, 2.25031159100007 ], [ 97.86687259200005, 2.247463283000059 ], [ 97.850759311000047, 2.251206773000092 ], [ 97.82943769600007, 2.264227606000077 ], [ 97.81771894600007, 2.258937893000052 ], [ 97.80990644600007, 2.263657945000091 ], [ 97.803396030000044, 2.272040106000077 ], [ 97.794769727000073, 2.277818101000094 ], [ 97.786143425000034, 2.278021552000041 ], [ 97.768565300000034, 2.273016669000071 ], [ 97.757334832000026, 2.271673895000049 ], [ 97.744395379000082, 2.281073309000078 ], [ 97.706065300000034, 2.346136786000045 ], [ 97.676442905000044, 2.375921942000048 ], [ 97.663584832000026, 2.392075914000088 ], [ 97.658213738000029, 2.41156647300005 ], [ 97.661143425000034, 2.527329820000091 ], [ 97.644053582000026, 2.668890692000048 ], [ 97.608897332000026, 2.848618882000039 ], [ 97.602712436000047, 2.866197007000039 ], [ 97.592784050000034, 2.87368398600006 ], [ 97.57740319100003, 2.875921942000048 ], [ 97.535329623000052, 2.888251044000071 ], [ 97.484629754000082, 2.913031317000048 ], [ 97.463877800000034, 2.919623114000046 ], [ 97.441661004000082, 2.922105210000041 ], [ 97.422129754000082, 2.92837148600006 ], [ 97.405039910000028, 2.943345445000091 ], [ 97.332041863000029, 3.031398830000057 ], [ 97.313487175000034, 3.061672268000052 ], [ 97.300791863000029, 3.093410549000055 ], [ 97.285166863000029, 3.17845286700009 ], [ 97.27076256600003, 3.214422919000071 ], [ 97.240489129000082, 3.238023179000038 ], [ 97.20671634200005, 3.240790106000077 ], [ 97.182627800000034, 3.245998440000051 ], [ 97.171641472000033, 3.254828192000048 ], [ 97.166351759000065, 3.267971096000053 ], [ 97.018565300000034, 3.522691148000092 ], [ 96.999766472000033, 3.545884507000039 ], [ 96.921722852000073, 3.605698960000041 ], [ 96.903493686000047, 3.634670315000051 ], [ 96.892100457000026, 3.666489976000094 ], [ 96.883555535000028, 3.682440497000073 ], [ 96.873057488000029, 3.689276434000078 ], [ 96.866058790000068, 3.69212474200009 ], [ 96.842051629000082, 3.706732489000046 ], [ 96.838145379000082, 3.712632554000038 ], [ 96.828868035000028, 3.716620184000078 ], [ 96.81763756600003, 3.719916083000044 ], [ 96.80787194100003, 3.72406647300005 ], [ 96.778005405000044, 3.742987372000073 ], [ 96.760508660000028, 3.74868398600006 ], [ 96.55982506600003, 3.746568101000094 ], [ 96.519867384000065, 3.754828192000048 ], [ 96.479502800000034, 3.778713283000059 ], [ 96.430349155000044, 3.825262762000079 ], [ 96.279307488000029, 4.025783596000053 ], [ 96.211436394000032, 4.093939520000049 ], [ 96.207530144000032, 4.100490627000056 ], [ 96.201914910000028, 4.115179755000042 ], [ 96.197764519000032, 4.121283270000049 ], [ 96.190928582000026, 4.125962632000039 ], [ 96.175303582000026, 4.132717190000051 ], [ 96.16765384200005, 4.138373114000046 ], [ 96.159678582000026, 4.141302802000041 ], [ 96.147146030000044, 4.142482815000051 ], [ 96.135264519000032, 4.141669012000079 ], [ 96.13013756600003, 4.138373114000046 ], [ 96.125173373000052, 4.136419989000046 ], [ 96.113780144000032, 4.147162177000041 ], [ 96.065196160000028, 4.205023505000042 ], [ 96.049652540000068, 4.21430084800005 ], [ 96.030772332000026, 4.217474677000041 ], [ 96.010020379000082, 4.225653387000079 ], [ 95.903493686000047, 4.344712632000039 ], [ 95.81413821700005, 4.432847398000092 ], [ 95.807139519000032, 4.446112372000073 ], [ 95.758962436000047, 4.484442450000074 ], [ 95.72584069100003, 4.531683661000045 ], [ 95.656504754000082, 4.579982815000051 ], [ 95.61654707100007, 4.628404039000088 ], [ 95.59896894600007, 4.635199286000045 ], [ 95.576182488000029, 4.634670315000051 ], [ 95.565440300000034, 4.637518622000073 ], [ 95.560883009000065, 4.645738023000092 ], [ 95.563243035000028, 4.651556708000044 ], [ 95.572927280000044, 4.660711981000077 ], [ 95.575205925000034, 4.666571356000077 ], [ 95.572520379000082, 4.673814195000091 ], [ 95.566661004000082, 4.675197658000059 ], [ 95.559580925000034, 4.674627997000073 ], [ 95.55404707100007, 4.676214911000045 ], [ 95.526866082000026, 4.697251695000091 ], [ 95.515147332000026, 4.71352773600006 ], [ 95.489105665000068, 4.76243724200009 ], [ 95.46843509200005, 4.789496161000045 ], [ 95.459971550000034, 4.79718659100007 ], [ 95.441254102000073, 4.810614325000074 ], [ 95.434336785000028, 4.81712474200009 ], [ 95.426280144000032, 4.827337958000044 ], [ 95.424571160000028, 4.83234284100007 ], [ 95.42505944100003, 4.83734772300005 ], [ 95.423838738000029, 4.847479559000078 ], [ 95.418467644000032, 4.862494208000044 ], [ 95.405772332000026, 4.887681382000039 ], [ 95.400157097000033, 4.910549221000053 ], [ 95.38599694100003, 4.935126044000071 ], [ 95.379893425000034, 4.960435289000088 ], [ 95.34888756600003, 5.037502346000053 ], [ 95.338877800000034, 5.053534247000073 ], [ 95.324473504000082, 5.070298570000091 ], [ 95.312836134000065, 5.087144273000092 ], [ 95.30591881600003, 5.103583075000074 ], [ 95.296885613000029, 5.116400458000044 ], [ 95.279795769000032, 5.12250397300005 ], [ 95.299164259000065, 5.150336005000042 ], [ 95.301605665000068, 5.172430731000077 ], [ 95.291270379000082, 5.191636460000041 ], [ 95.272959832000026, 5.211167710000041 ], [ 95.256032748000052, 5.22337474200009 ], [ 95.248708530000044, 5.231024481000077 ], [ 95.245616082000026, 5.24164459800005 ], [ 95.243988477000073, 5.256048895000049 ], [ 95.23951256600003, 5.270819403000075 ], [ 95.231944207000026, 5.282294012000079 ], [ 95.221446160000028, 5.286932684000078 ], [ 95.198985222000033, 5.292873440000051 ], [ 95.205332879000082, 5.307562567000048 ], [ 95.222178582000026, 5.326402085000041 ], [ 95.231944207000026, 5.344631252000056 ], [ 95.233897332000026, 5.359320380000042 ], [ 95.245290561000047, 5.379136460000041 ], [ 95.251719597000033, 5.395575262000079 ], [ 95.25359134200005, 5.41156647300005 ], [ 95.24968509200005, 5.424953518000052 ], [ 95.231944207000026, 5.450751044000071 ], [ 95.24545332100007, 5.460516669000071 ], [ 95.236827019000032, 5.474025783000059 ], [ 95.22388756600003, 5.489569403000075 ], [ 95.225108269000032, 5.505438544000071 ], [ 95.203623894000032, 5.533677476000094 ], [ 95.197276238000029, 5.546372789000088 ], [ 95.212738477000073, 5.573146877000056 ], [ 95.22388756600003, 5.580267645000049 ], [ 95.238780144000032, 5.574367580000057 ], [ 95.250498894000032, 5.579046942000048 ], [ 95.260427280000044, 5.577541408000059 ], [ 95.269704623000052, 5.574408270000049 ], [ 95.279795769000032, 5.574367580000057 ], [ 95.28834069100003, 5.57876211100006 ], [ 95.304942254000082, 5.591986395000049 ], [ 95.31576582100007, 5.59796784100007 ], [ 95.33529707100007, 5.612127997000073 ], [ 95.345225457000026, 5.615301825000074 ], [ 95.358897332000026, 5.616888739000046 ], [ 95.369151238000029, 5.621283270000049 ], [ 95.412852410000028, 5.649562893000052 ], [ 95.431895379000082, 5.654689846000053 ], [ 95.449717644000032, 5.649562893000052 ], [ 95.477061394000032, 5.623602606000077 ], [ 95.494313998000052, 5.612290757000039 ], [ 95.502696160000028, 5.605129299000055 ], [ 95.511241082000026, 5.603013414000088 ], [ 95.521250847000033, 5.609198309000078 ], [ 95.533702019000032, 5.622137762000079 ], [ 95.576182488000029, 5.631252346000053 ], [ 95.611582879000082, 5.626654364000046 ], [ 95.762217644000032, 5.576849677000041 ], [ 95.839610222000033, 5.528550523000092 ], [ 95.855479363000029, 5.522162177000041 ], [ 95.872569207000026, 5.519720770000049 ], [ 95.887543165000068, 5.512152411000045 ], [ 95.894379102000073, 5.493801174000055 ], [ 95.90357506600003, 5.450751044000071 ], [ 95.930430535000028, 5.414496161000045 ], [ 96.054942254000082, 5.313625393000052 ], [ 96.088063998000052, 5.295477606000077 ], [ 96.12623131600003, 5.281805731000077 ], [ 96.290537957000026, 5.258978583000044 ], [ 96.30396569100003, 5.254299221000053 ], [ 96.344411655000044, 5.232326565000051 ], [ 96.362152540000068, 5.225490627000056 ], [ 96.406586134000065, 5.217230536000045 ], [ 96.429453972000033, 5.218329169000071 ], [ 96.44849694100003, 5.228583075000074 ], [ 96.466319207000026, 5.235541083000044 ], [ 96.486338738000029, 5.229396877000056 ], [ 96.50709069100003, 5.218573309000078 ], [ 96.527354363000029, 5.211167710000041 ], [ 96.56763756600003, 5.20844147300005 ], [ 96.650563998000052, 5.21625397300005 ], [ 96.68490644600007, 5.225490627000056 ], [ 96.785131729000057, 5.259857206000049 ], [ 96.828379754000082, 5.280178127000056 ], [ 96.848643425000034, 5.276597398000092 ], [ 96.894379102000073, 5.262111721000053 ], [ 96.907237175000034, 5.262681382000039 ], [ 96.922862175000034, 5.269476630000042 ], [ 96.973399285000028, 5.273423570000091 ], [ 97.030198010000049, 5.251295019000054 ], [ 97.074338566000051, 5.238154799000085 ], [ 97.109640546000037, 5.214092463000043 ], [ 97.149344777000067, 5.198772387000076 ], [ 97.166026238000029, 5.173732815000051 ], [ 97.175954623000052, 5.161281643000052 ], [ 97.195160352000073, 5.156642971000053 ], [ 97.226552943000058, 5.146221342000047 ], [ 97.268368278000082, 5.155068075000088 ], [ 97.496836785000028, 5.251898505000042 ], [ 97.526215040000068, 5.242254950000074 ], [ 97.664398634000065, 5.073431708000044 ], [ 97.830088738000029, 4.938788153000075 ], [ 97.873871290000068, 4.918850002000056 ], [ 97.89380944100003, 4.905829169000071 ], [ 97.909190300000034, 4.889593817000048 ], [ 97.956065300000034, 4.808010158000059 ], [ 97.963226759000065, 4.789496161000045 ], [ 97.975352410000028, 4.706244208000044 ], [ 97.98373457100007, 4.678412177000041 ], [ 98.007009311000047, 4.633856512000079 ], [ 98.008799675000034, 4.62368398600006 ], [ 98.00709069100003, 4.597723700000074 ], [ 97.996836785000028, 4.570217190000051 ], [ 97.992523634000065, 4.553778387000079 ], [ 97.996836785000028, 4.546454169000071 ], [ 98.026215040000068, 4.553168036000045 ], [ 98.038828972000033, 4.551947333000044 ], [ 98.048024936000047, 4.539007880000042 ], [ 98.05396569100003, 4.553168036000045 ], [ 98.061289910000028, 4.554836330000057 ], [ 98.075938347000033, 4.546454169000071 ], [ 98.078868035000028, 4.540513414000088 ], [ 98.082855665000068, 4.536078192000048 ], [ 98.089610222000033, 4.532782294000071 ], [ 98.094004754000082, 4.533189195000091 ], [ 98.105723504000082, 4.53782786700009 ], [ 98.113536004000082, 4.539007880000042 ], [ 98.138194207000026, 4.534409898000092 ], [ 98.159678582000026, 4.522284247000073 ], [ 98.176117384000065, 4.504828192000048 ], [ 98.185801629000082, 4.484442450000074 ], [ 98.192149285000028, 4.484442450000074 ], [ 98.195160352000073, 4.489203192000048 ], [ 98.201914910000028, 4.494086005000042 ], [ 98.205739780000044, 4.498032945000091 ], [ 98.219004754000082, 4.484767971000053 ], [ 98.240570509000065, 4.456732489000046 ], [ 98.254161004000082, 4.443426825000074 ], [ 98.268321160000028, 4.432318427000041 ], [ 98.275563998000052, 4.425360419000071 ], [ 98.27857506600003, 4.41547272300005 ], [ 98.28248131600003, 4.364935614000046 ], [ 98.267751498000052, 4.292629299000055 ], [ 98.267588738000029, 4.287909247000073 ], [ 98.263955926624647, 4.28816234041966 ], [ 98.188404982304064, 4.294776923316363 ], [ 98.178379754721846, 4.293743394541991 ], [ 98.147167190413484, 4.285991930083469 ], [ 98.138485549068776, 4.28237457892368 ], [ 98.127116734349784, 4.266458237957295 ], [ 98.114921096431431, 4.258500067923762 ], [ 98.103810663231457, 4.256019599225112 ], [ 98.075130242666546, 4.254779363976468 ], [ 98.065725131809359, 4.250903632196867 ], [ 98.062727899173183, 4.240309962934418 ], [ 98.07326989069287, 4.222533270893734 ], [ 98.075440301928325, 4.213128160036547 ], [ 98.072236362817875, 4.202069402780694 ], [ 98.062727899173183, 4.192147527986037 ], [ 98.055803257014645, 4.181760566097239 ], [ 98.045054559020627, 4.135975247060003 ], [ 98.032652216426584, 4.10393585955228 ], [ 98.023660515820097, 4.062439683444609 ], [ 98.023040399095123, 4.051329251144011 ], [ 98.019009636785256, 4.031640530286211 ], [ 98.0121883483136, 4.014483954071238 ], [ 98.007537469278759, 3.996965644448949 ], [ 98.001026239169562, 3.980067449752994 ], [ 97.986350131653239, 3.964047755999104 ], [ 97.956481153582331, 3.941413479348569 ], [ 97.945267369393548, 3.930561428567046 ], [ 97.939221226378436, 3.919399319423064 ], [ 97.936120640055435, 3.909374090941526 ], [ 97.931469761020594, 3.901829332058014 ], [ 97.921237827863422, 3.899813951352769 ], [ 97.911419304956894, 3.901105862545535 ], [ 97.890231968230694, 3.915161851538187 ], [ 97.884650913209043, 3.885396226254841 ], [ 97.888371617156338, 3.86472565346611 ], [ 97.891575555367524, 3.856302395439172 ], [ 97.893332553654375, 3.848189194875431 ], [ 97.876589390388006, 3.822454331901895 ], [ 97.798144566218696, 3.756721910487784 ], [ 97.790031365654954, 3.750727444316112 ], [ 97.783881870751713, 3.744784654088505 ], [ 97.777577346217527, 3.736464748849073 ], [ 97.777577346217527, 3.725095933230705 ], [ 97.783158400339858, 3.711970120224862 ], [ 97.80961673372525, 3.670422268173127 ], [ 97.820365431719267, 3.64830475546006 ], [ 97.837005243097451, 3.593631090402482 ], [ 97.843826531569164, 3.579885158872969 ], [ 97.855402052762486, 3.570221666496707 ], [ 97.863360222796018, 3.565570787461866 ], [ 97.870129836222929, 3.560609849165189 ], [ 97.875762567188701, 3.552548326344152 ], [ 97.881240269422847, 3.540662746788314 ], [ 97.888061557894559, 3.520353909205539 ], [ 97.894366083328066, 3.50722809530032 ], [ 97.91100589380693, 3.490950019128093 ], [ 97.914158156073995, 3.48376699545048 ], [ 97.91100589380693, 3.473328354919659 ], [ 97.903564487710923, 3.456998602803253 ], [ 97.903357782135913, 3.446559963171751 ], [ 97.906768426821372, 3.433020738116568 ], [ 97.913589716192405, 3.417207749937688 ], [ 97.920411004664118, 3.40527049443773 ], [ 97.929712761834423, 3.393643297300343 ], [ 97.968676792400004, 3.367908433427431 ], [ 97.976324904071021, 3.360880439380765 ], [ 97.989554070763688, 3.330391343685562 ], [ 97.973017613072329, 3.30047068877127 ], [ 97.952088657865204, 3.285742906210146 ], [ 97.885994501245193, 3.269413153194478 ], [ 97.872713657709085, 3.264297187065495 ], [ 97.863980341319632, 3.257424220851078 ], [ 97.870594924216334, 3.24553864219456 ], [ 97.887441441169528, 3.231172593940073 ], [ 97.89400434812211, 3.223317775794726 ], [ 97.899327019826046, 3.213705959362528 ], [ 97.903254429348408, 3.203060614156016 ], [ 97.907078485183888, 3.184767157278486 ], [ 97.911419304956894, 3.173139960141043 ], [ 97.936379021574567, 3.140635483740596 ], [ 97.940461459828441, 3.127923081884717 ], [ 97.941701695077143, 3.116864325528184 ], [ 97.937980992029111, 3.086271877045476 ], [ 97.927438998710784, 3.08038076456063 ], [ 97.919067416627911, 3.079657294148774 ], [ 97.902634311724057, 3.08286123325928 ], [ 97.895606316778071, 3.082602850840885 ], [ 97.8930741721353, 3.079192206155369 ], [ 97.892815789716906, 3.071647447271857 ], [ 97.898086786376041, 3.056712958236403 ], [ 97.914519891279895, 2.977854722917129 ], [ 97.908835484370059, 2.936410224552219 ], [ 97.910385777081899, 2.924162908891105 ], [ 97.914158156073995, 2.917083238000998 ], [ 97.922788120575262, 2.909280096699092 ], [ 97.935190464068626, 2.904060776883341 ], [ 97.957824741618481, 2.899099840385304 ], [ 97.967023146900658, 2.894138902088628 ], [ 97.995548536935416, 2.853831285285594 ], [ 98.005005323736668, 2.843857734546816 ], [ 98.020198195190517, 2.83677806185807 ], [ 98.036682976937811, 2.831507066098197 ], [ 98.047845086981113, 2.824272366476521 ], [ 98.05704349226329, 2.812128404502232 ], [ 98.059627312850182, 2.797917384979314 ], [ 98.052702670691644, 2.787582099034637 ], [ 98.047121616569314, 2.777556871452418 ], [ 98.044537795083158, 2.760865383230851 ], [ 98.046811558206798, 2.742416896722375 ], [ 98.056526727426501, 2.712031154713998 ], [ 98.069755894119169, 2.691412257869388 ], [ 98.07171959798103, 2.685469469440477 ], [ 98.069394158913269, 2.676994534570099 ], [ 98.059007196125151, 2.666245836576081 ], [ 98.039163445636461, 2.652293199471558 ], [ 98.036786329725317, 2.645678616574912 ], [ 98.037303093662786, 2.627901922735532 ], [ 98.035546096275255, 2.619633694339484 ], [ 98.028001337391743, 2.600255031844256 ], [ 98.025934278943794, 2.588834540281823 ], [ 98.025314162218763, 2.576122138425944 ], [ 98.033892449876646, 2.528063056265012 ], [ 98.05549319865213, 2.45829987254109 ], [ 98.062572870441556, 2.444347236335886 ], [ 98.071409539618514, 2.440316474026019 ], [ 98.080607944900692, 2.438766181314179 ], [ 98.089392938133528, 2.434528713429359 ], [ 98.097041049804545, 2.425433660934686 ], [ 98.103758986388073, 2.402592677809821 ], [ 98.119261916204437, 2.367349351191592 ], [ 98.127633498287253, 2.326990058444437 ], [ 98.125824823157018, 2.309471747023508 ], [ 98.101381871376248, 2.188858954077432 ], [ 98.101333577782327, 2.188620653520331 ], [ 98.101333577388615, 2.188620652979915 ] ] ], [ [ [ 97.151133660000028, 2.058091539000088 ], [ 97.144786004000082, 2.051947333000044 ], [ 97.123057488000029, 2.039292710000041 ], [ 97.120127800000034, 2.034857489000046 ], [ 97.12427819100003, 2.021673895000049 ], [ 97.115000847000033, 2.014715887000079 ], [ 97.102305535000028, 2.016058661000045 ], [ 97.069021030000044, 2.087144273000092 ], [ 97.07545006600003, 2.086004950000074 ], [ 97.08725019600007, 2.096869208000044 ], [ 97.092539910000028, 2.105536200000074 ], [ 97.100352410000028, 2.111273505000042 ], [ 97.120127800000034, 2.113348700000074 ], [ 97.133799675000034, 2.107163804000038 ], [ 97.142914259000065, 2.092271226000094 ], [ 97.148448113000029, 2.074164130000042 ], [ 97.151133660000028, 2.058091539000088 ] ] ], [ [ [ 96.644053582000026, 2.127020575000074 ], [ 96.657969597000033, 2.12181224200009 ], [ 96.668223504000082, 2.113430080000057 ], [ 96.671722852000073, 2.101996161000045 ], [ 96.66537519600007, 2.087876695000091 ], [ 96.643565300000034, 2.074448960000041 ], [ 96.622894727000073, 2.07062409100007 ], [ 96.609629754000082, 2.080145575000074 ], [ 96.609873894000032, 2.106512762000079 ], [ 96.613291863000029, 2.119126695000091 ], [ 96.618337436000047, 2.126857815000051 ], [ 96.627696160000028, 2.129461981000077 ], [ 96.644053582000026, 2.127020575000074 ] ] ], [ [ [ 97.328623894000032, 2.147528387000079 ], [ 97.336273634000065, 2.126654364000046 ], [ 97.34107506600003, 2.105698960000041 ], [ 97.34302819100003, 2.083319403000075 ], [ 97.342295769000032, 2.058091539000088 ], [ 97.33952884200005, 2.04946523600006 ], [ 97.33521569100003, 2.042181708000044 ], [ 97.32935631600003, 2.036322333000044 ], [ 97.321787957000026, 2.031439520000049 ], [ 97.320323113000029, 2.049994208000044 ], [ 97.321787957000026, 2.058091539000088 ], [ 97.306162957000026, 2.057196356000077 ], [ 97.29615319100003, 2.069525458000044 ], [ 97.287852410000028, 2.087469794000071 ], [ 97.278086785000028, 2.103094794000071 ], [ 97.233897332000026, 2.147162177000041 ], [ 97.226817254000082, 2.158026434000078 ], [ 97.207367384000065, 2.175523179000038 ], [ 97.10279381600003, 2.212713934000078 ], [ 97.109385613000029, 2.22016022300005 ], [ 97.125173373000052, 2.225490627000056 ], [ 97.167002800000034, 2.233099677000041 ], [ 97.171722852000073, 2.233099677000041 ], [ 97.178477410000028, 2.230658270000049 ], [ 97.182790561000047, 2.226060289000088 ], [ 97.191579623000052, 2.208929755000042 ], [ 97.208018425000034, 2.207586981000077 ], [ 97.220713738000029, 2.21430084800005 ], [ 97.232920769000032, 2.223822333000044 ], [ 97.246755405000044, 2.230658270000049 ], [ 97.264659050000034, 2.232245184000078 ], [ 97.281260613000029, 2.229071356000077 ], [ 97.289235873000052, 2.221177476000094 ], [ 97.281504754000082, 2.208929755000042 ], [ 97.305837436000047, 2.185370184000078 ], [ 97.319834832000026, 2.178656317000048 ], [ 97.323741082000026, 2.169582424000055 ], [ 97.328623894000032, 2.147528387000079 ] ] ], [ [ [ 96.479502800000034, 2.414984442000048 ], [ 96.475108269000032, 2.397853908000059 ], [ 96.481211785000028, 2.378851630000042 ], [ 96.481211785000028, 2.36399974200009 ], [ 96.458506707000026, 2.359808661000045 ], [ 96.465830925000034, 2.359808661000045 ], [ 96.430674675000034, 2.348781643000052 ], [ 96.420909050000034, 2.343003648000092 ], [ 96.41138756600003, 2.343817450000074 ], [ 96.369639519000032, 2.367254950000074 ], [ 96.351084832000026, 2.355047919000071 ], [ 96.334971550000034, 2.355454820000091 ], [ 96.320811394000032, 2.363470770000049 ], [ 96.307627800000034, 2.374090887000079 ], [ 96.312836134000065, 2.378648179000038 ], [ 96.322601759000065, 2.389797268000052 ], [ 96.328135613000029, 2.394517320000091 ], [ 96.306162957000026, 2.405096747000073 ], [ 96.285166863000029, 2.436428127000056 ], [ 96.23991946700005, 2.44867584800005 ], [ 96.06568444100003, 2.579413153000075 ], [ 96.04265384200005, 2.592027085000041 ], [ 96.020274285000028, 2.600002346000053 ], [ 96.01099694100003, 2.600897528000075 ], [ 95.986094597000033, 2.600002346000053 ], [ 95.980642123000052, 2.602687893000052 ], [ 95.97193444100003, 2.612209377000056 ], [ 95.965098504000082, 2.614243882000039 ], [ 95.961273634000065, 2.607123114000046 ], [ 95.958018425000034, 2.602240302000041 ], [ 95.955088738000029, 2.600002346000053 ], [ 95.947520379000082, 2.598049221000053 ], [ 95.939952019000032, 2.59516022300005 ], [ 95.931407097000033, 2.595607815000051 ], [ 95.91146894600007, 2.610296942000048 ], [ 95.892100457000026, 2.615627346000053 ], [ 95.883067254000082, 2.620428778000075 ], [ 95.87818444100003, 2.628566799000055 ], [ 95.877777540000068, 2.637111721000053 ], [ 95.874766472000033, 2.645819403000075 ], [ 95.86255944100003, 2.65460846600007 ], [ 95.790537957000026, 2.65460846600007 ], [ 95.785329623000052, 2.660589911000045 ], [ 95.787445509000065, 2.674058335000041 ], [ 95.79428144600007, 2.696234442000048 ], [ 95.788910352000073, 2.704006252000056 ], [ 95.758962436000047, 2.724107164000088 ], [ 95.761566602000073, 2.739935614000046 ], [ 95.748789910000028, 2.749904690000051 ], [ 95.735199415000068, 2.757879950000074 ], [ 95.73568769600007, 2.76788971600007 ], [ 95.740082227000073, 2.77806224200009 ], [ 95.72787519600007, 2.779242255000042 ], [ 95.71021569100003, 2.777492580000057 ], [ 95.698008660000028, 2.77875397300005 ], [ 95.69263756600003, 2.792059637000079 ], [ 95.69263756600003, 2.81281159100007 ], [ 95.699554884000065, 2.831773179000038 ], [ 95.714854363000029, 2.84015534100007 ], [ 95.768728061000047, 2.840806382000039 ], [ 95.780039910000028, 2.846380927000041 ], [ 95.781504754000082, 2.855047919000071 ], [ 95.77662194100003, 2.860988674000055 ], [ 95.769867384000065, 2.864894924000055 ], [ 95.766368035000028, 2.86749909100007 ], [ 95.766774936000047, 2.878119208000044 ], [ 95.771820509000065, 2.895453192000048 ], [ 95.773203972000033, 2.90501536700009 ], [ 95.784678582000026, 2.924953518000052 ], [ 95.786875847000033, 2.932684637000079 ], [ 95.791514519000032, 2.942531643000052 ], [ 95.801524285000028, 2.937567450000074 ], [ 95.811045769000032, 2.927435614000046 ], [ 95.81413821700005, 2.922105210000041 ], [ 95.88404381600003, 2.919012762000079 ], [ 95.911875847000033, 2.906236070000091 ], [ 95.910411004000082, 2.87368398600006 ], [ 95.890798373000052, 2.889105536000045 ], [ 95.882985873000052, 2.883937893000052 ], [ 95.883067254000082, 2.846380927000041 ], [ 95.91724694100003, 2.860663153000075 ], [ 95.927744988000029, 2.844549872000073 ], [ 95.96452884200005, 2.827948309000078 ], [ 95.98170006600003, 2.790350653000075 ], [ 96.00326582100007, 2.777004299000055 ], [ 96.028330925000034, 2.768459377000056 ], [ 96.090505405000044, 2.757798570000091 ], [ 96.10678144600007, 2.749660549000055 ], [ 96.12631269600007, 2.733710028000075 ], [ 96.130869988000029, 2.715277411000045 ], [ 96.101817254000082, 2.675441799000055 ], [ 96.10279381600003, 2.65460846600007 ], [ 96.118662957000026, 2.666001695000091 ], [ 96.129730665000068, 2.66478099200009 ], [ 96.138438347000033, 2.658392645000049 ], [ 96.147146030000044, 2.65460846600007 ], [ 96.156260613000029, 2.648423570000091 ], [ 96.161875847000033, 2.647772528000075 ], [ 96.164235873000052, 2.65460846600007 ], [ 96.160899285000028, 2.661200262000079 ], [ 96.146983269000032, 2.670721747000073 ], [ 96.143728061000047, 2.678778387000079 ], [ 96.157969597000033, 2.68040599200009 ], [ 96.246104363000029, 2.600002346000053 ], [ 96.257823113000029, 2.591864325000074 ], [ 96.29070071700005, 2.575181382000039 ], [ 96.304209832000026, 2.572088934000078 ], [ 96.321299675000034, 2.566148179000038 ], [ 96.335948113000029, 2.552150783000059 ], [ 96.359141472000033, 2.521429755000042 ], [ 96.363942905000044, 2.508490302000041 ], [ 96.367849155000044, 2.48969147300005 ], [ 96.375254754000082, 2.473863023000092 ], [ 96.390147332000026, 2.469671942000048 ], [ 96.395274285000028, 2.477362372000073 ], [ 96.396983269000032, 2.493109442000048 ], [ 96.396494988000029, 2.52484772300005 ], [ 96.410655144000032, 2.508937893000052 ], [ 96.41724694100003, 2.506333726000094 ], [ 96.424327019000032, 2.510565497000073 ], [ 96.444102410000028, 2.490383205000057 ], [ 96.465017123000052, 2.43781159100007 ], [ 96.479502800000034, 2.414984442000048 ] ] ], [ [ [ 95.17741946700005, 5.62836334800005 ], [ 95.19109134200005, 5.608465887000079 ], [ 95.180511915000068, 5.609198309000078 ], [ 95.171397332000026, 5.607245184000078 ], [ 95.163259311000047, 5.602443752000056 ], [ 95.156260613000029, 5.594794012000079 ], [ 95.145274285000028, 5.60423411700009 ], [ 95.133799675000034, 5.60618724200009 ], [ 95.12232506600003, 5.606756903000075 ], [ 95.111582879000082, 5.611883856000077 ], [ 95.109141472000033, 5.622015692000048 ], [ 95.118174675000034, 5.631659247000073 ], [ 95.129893425000034, 5.640041408000059 ], [ 95.135752800000034, 5.646307684000078 ], [ 95.141774936000047, 5.664129950000074 ], [ 95.155039910000028, 5.656683661000045 ], [ 95.17741946700005, 5.62836334800005 ] ] ], [ [ [ 95.115244988000029, 5.711493231000077 ], [ 95.126963738000029, 5.702053127000056 ], [ 95.133311394000032, 5.691310940000051 ], [ 95.132334832000026, 5.680121161000045 ], [ 95.122080925000034, 5.669256903000075 ], [ 95.094737175000034, 5.683579820000091 ], [ 95.060720248000052, 5.656236070000091 ], [ 95.056895379000082, 5.669094143000052 ], [ 95.057139519000032, 5.674750067000048 ], [ 95.060720248000052, 5.683579820000091 ], [ 95.050303582000026, 5.686224677000041 ], [ 95.047862175000034, 5.689642645000049 ], [ 95.051036004000082, 5.694403387000079 ], [ 95.057302280000044, 5.700913804000038 ], [ 95.057139519000032, 5.70734284100007 ], [ 95.051036004000082, 5.712958075000074 ], [ 95.048675977000073, 5.718451239000046 ], [ 95.060720248000052, 5.724554755000042 ], [ 95.060720248000052, 5.732001044000071 ], [ 95.048838738000029, 5.736476955000057 ], [ 95.04037519600007, 5.736029364000046 ], [ 95.032725457000026, 5.733547268000052 ], [ 95.02312259200005, 5.732001044000071 ], [ 95.012705925000034, 5.735825914000088 ], [ 95.014659050000034, 5.744614976000094 ], [ 95.023692254000082, 5.754055080000057 ], [ 95.033946160000028, 5.759914455000057 ], [ 95.05827884200005, 5.757310289000088 ], [ 95.080902540000068, 5.74095286700009 ], [ 95.102305535000028, 5.720200914000088 ], [ 95.122080925000034, 5.704657294000071 ], [ 95.115244988000029, 5.711493231000077 ] ] ], [ [ [ 95.341807488000029, 5.896429755000042 ], [ 95.351328972000033, 5.88703034100007 ], [ 95.382823113000029, 5.841864325000074 ], [ 95.382823113000029, 5.807074286000045 ], [ 95.375987175000034, 5.807074286000045 ], [ 95.372569207000026, 5.813625393000052 ], [ 95.368662957000026, 5.818304755000042 ], [ 95.355479363000029, 5.82758209800005 ], [ 95.355316602000073, 5.795152085000041 ], [ 95.350433790000068, 5.783636786000045 ], [ 95.338389519000032, 5.779201565000051 ], [ 95.320323113000029, 5.780747789000088 ], [ 95.302744988000029, 5.785711981000077 ], [ 95.286631707000026, 5.794419664000088 ], [ 95.272959832000026, 5.807074286000045 ], [ 95.265879754000082, 5.821112372000073 ], [ 95.259776238000029, 5.839260158000059 ], [ 95.252696160000028, 5.854966539000088 ], [ 95.231455925000034, 5.869289455000057 ], [ 95.220550977000073, 5.885931708000044 ], [ 95.213552280000044, 5.902533270000049 ], [ 95.214610222000033, 5.910101630000042 ], [ 95.236175977000073, 5.909125067000048 ], [ 95.247813347000033, 5.905218817000048 ], [ 95.259287957000026, 5.896429755000042 ], [ 95.272471550000034, 5.870306708000044 ], [ 95.283864780000044, 5.857407945000091 ], [ 95.297129754000082, 5.858587958000044 ], [ 95.307302280000044, 5.872381903000075 ], [ 95.314952019000032, 5.887762762000079 ], [ 95.324961785000028, 5.898016669000071 ], [ 95.341807488000029, 5.896429755000042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-KT", "NAME_1": "Kalimantan Tengah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.310683266196619, -3.43391382655977 ], [ 114.288828972000033, -3.424493096999925 ], [ 114.272227410000028, -3.413262627999927 ], [ 114.263519727000016, -3.397556247999944 ], [ 114.265147332000083, -3.378350518999923 ], [ 114.275401238000086, -3.362399997999944 ], [ 114.292979363000086, -3.355564059999949 ], [ 114.301931186000047, -3.345798434999949 ], [ 114.323741082000083, -3.279880466999941 ], [ 114.35084069100003, -3.248955987999921 ], [ 114.359629754000025, -3.234470309999949 ], [ 114.364756707000083, -3.211521091999941 ], [ 114.324066602000016, -3.247979424999926 ], [ 114.289561394000089, -3.306410414999959 ], [ 114.248057488000086, -3.360284112999921 ], [ 114.186534050000091, -3.382256768999923 ], [ 114.153168165000011, -3.378350518999923 ], [ 114.125824415000011, -3.367852471999925 ], [ 114.108246290000011, -3.34734465899993 ], [ 114.104014519000089, -3.313897393999923 ], [ 114.122569207000083, -3.21607838299991 ], [ 114.117686394000089, -3.190362237999921 ], [ 114.112315300000091, -3.19890715899993 ], [ 114.108897332000083, -3.208428643999923 ], [ 114.09929446700005, -3.253350518999923 ], [ 114.097178582000083, -3.276055596999925 ], [ 114.094004754000025, -3.281182549999926 ], [ 114.080332879000025, -3.291273695999962 ], [ 114.042002800000091, -3.355564059999949 ], [ 113.980642123000052, -3.385023695999962 ], [ 113.948008660000028, -3.394789320999962 ], [ 113.885508660000028, -3.430596612999921 ], [ 113.814707879000025, -3.455254815999922 ], [ 113.713145379000025, -3.472588799999926 ], [ 113.63249759200005, -3.456801039999959 ], [ 113.624766472000033, -3.382256768999923 ], [ 113.637543165000011, -3.341729424999926 ], [ 113.64380944100003, -3.298435153999947 ], [ 113.642100457000083, -3.255954684999949 ], [ 113.62037194100003, -3.185316664999959 ], [ 113.611501498000052, -3.174248955999929 ], [ 113.593516472000033, -3.170017184999949 ], [ 113.508067254000025, -3.170017184999949 ], [ 113.486175977000016, -3.174737237999921 ], [ 113.466319207000083, -3.184258721999925 ], [ 113.452159050000091, -3.199395440999922 ], [ 113.446625196000014, -3.221123955999929 ], [ 113.439707879000025, -3.238457940999922 ], [ 113.423024936000047, -3.247247002999927 ], [ 113.365733269000089, -3.252862237999921 ], [ 113.35279381600003, -3.24928150799991 ], [ 113.345876498000052, -3.237888278999947 ], [ 113.343597852000016, -3.214613539999959 ], [ 113.339610222000033, -3.200290622999944 ], [ 113.32935631600003, -3.182793877999927 ], [ 113.315928582000083, -3.168064059999949 ], [ 113.302744988000086, -3.162530205999929 ], [ 113.345225457000083, -3.246514580999929 ], [ 113.351084832000083, -3.272393487999921 ], [ 113.299327019000089, -3.214613539999959 ], [ 113.285004102000016, -3.204196872999944 ], [ 113.254649285000028, -3.186944268999923 ], [ 113.241221550000091, -3.176853122999944 ], [ 113.230479363000086, -3.164320570999962 ], [ 113.221690300000091, -3.149997653999947 ], [ 113.215586785000028, -3.134209893999923 ], [ 113.209971550000091, -3.103773695999962 ], [ 113.201670769000089, -3.09303150799991 ], [ 113.182627800000091, -3.077080987999921 ], [ 113.159190300000091, -3.064629815999922 ], [ 113.128265821000014, -3.054945570999962 ], [ 113.101328972000033, -3.042575778999947 ], [ 113.035166863000086, -2.922946872999944 ], [ 113.037119988000086, -2.993096612999921 ], [ 113.031504754000025, -3.008884372999944 ], [ 113.025238477000016, -3.017347914999959 ], [ 113.017344597000033, -3.03679778399993 ], [ 113.007823113000086, -3.046482028999947 ], [ 113.003428582000083, -3.047458591999941 ], [ 112.991953972000033, -3.045668226999908 ], [ 112.987315300000091, -3.046482028999947 ], [ 112.983164910000028, -3.049737237999921 ], [ 112.976328972000033, -3.057549737999921 ], [ 112.963389519000089, -3.069024346999925 ], [ 112.949066602000016, -3.086032809999949 ], [ 112.94109134200005, -3.106377862999921 ], [ 112.949473504000025, -3.125176690999922 ], [ 112.961924675000091, -3.13836028399993 ], [ 112.96843509200005, -3.143975518999923 ], [ 112.979828321000014, -3.149509372999944 ], [ 112.990489129000025, -3.151788018999923 ], [ 113.01140384200005, -3.153252862999921 ], [ 113.021494988000086, -3.156345309999949 ], [ 113.021494988000086, -3.162530205999929 ], [ 112.669769727000016, -3.388604424999926 ], [ 112.638031446000014, -3.416761976999908 ], [ 112.618011915000011, -3.423760674999926 ], [ 112.581553582000083, -3.415948174999926 ], [ 112.575938347000033, -3.420098565999922 ], [ 112.573090040000011, -3.430352471999925 ], [ 112.565765821000014, -3.437920830999929 ], [ 112.55591881600003, -3.44264088299991 ], [ 112.545095248000052, -3.444268487999921 ], [ 112.52466881600003, -3.437758070999962 ], [ 112.390472852000016, -3.339939059999949 ], [ 112.348968946000014, -3.322849216999941 ], [ 112.302744988000086, -3.313897393999923 ], [ 112.202891472000033, -3.329522393999923 ], [ 112.11687259200005, -3.382256768999923 ], [ 111.973155144000032, -3.525567315999922 ], [ 111.93100019600007, -3.559014580999929 ], [ 111.905284050000034, -3.572035414999959 ], [ 111.887217644000032, -3.570245049999926 ], [ 111.869476759000065, -3.560153903999947 ], [ 111.822032097000033, -3.545098565999922 ], [ 111.808767123000052, -3.532972914999959 ], [ 111.808360222000033, -3.511814059999949 ], [ 111.82976321700005, -3.468194268999923 ], [ 111.83529707100007, -3.447686455999929 ], [ 111.842946811000047, -3.38445403399993 ], [ 111.842784050000034, -3.361748955999929 ], [ 111.814952019000032, -3.190362237999921 ], [ 111.817556186000047, -3.144463799999926 ], [ 111.832530144000032, -3.061618747999944 ], [ 111.822438998000052, -3.018487237999921 ], [ 111.760264519000032, -2.907647393999923 ], [ 111.754079623000052, -2.868910414999959 ], [ 111.754079623000052, -2.82390715899993 ], [ 111.750987175000034, -2.820407809999949 ], [ 111.74382571700005, -2.817478122999944 ], [ 111.736827019000032, -2.812676690999922 ], [ 111.733571811000047, -2.803399346999925 ], [ 111.737478061000047, -2.783379815999922 ], [ 111.752777540000068, -2.756280205999929 ], [ 111.754079623000052, -2.738539320999962 ], [ 111.739431186000047, -2.746189059999949 ], [ 111.723480665000068, -2.75904713299991 ], [ 111.710785352000073, -2.774590752999927 ], [ 111.705739780000044, -2.789727471999925 ], [ 111.712657097000033, -2.835056247999944 ], [ 111.713145379000025, -2.848402601999908 ], [ 111.708018425000034, -2.859633070999962 ], [ 111.698741082000026, -2.868096612999921 ], [ 111.689789259000065, -2.874200127999927 ], [ 111.685801629000025, -2.878838799999926 ], [ 111.683116082000026, -2.882989190999922 ], [ 111.677500847000033, -2.88795338299991 ], [ 111.672536655000044, -2.894626559999949 ], [ 111.67156009200005, -2.903008721999925 ], [ 111.67546634200005, -2.911065362999921 ], [ 111.68091881600003, -2.914483330999929 ], [ 111.68677819100003, -2.916924737999921 ], [ 111.695567254000025, -2.926202080999929 ], [ 111.700043165000068, -2.928155205999929 ], [ 111.703949415000068, -2.931817315999922 ], [ 111.705739780000044, -2.940036716999941 ], [ 111.703461134000065, -2.943617445999962 ], [ 111.694183790000068, -2.94304778399993 ], [ 111.692067905000044, -2.946872653999947 ], [ 111.648936394000032, -2.962009372999944 ], [ 111.584320509000065, -3.008884372999944 ], [ 111.569834832000026, -3.015720309999949 ], [ 111.551768425000034, -3.018487237999921 ], [ 111.534353061000047, -3.012139580999929 ], [ 111.525726759000065, -2.996840101999908 ], [ 111.52084394600007, -2.978936455999929 ], [ 111.514414910000028, -2.963799737999921 ], [ 111.48568769600007, -2.941501559999949 ], [ 111.447520379000025, -2.929782809999949 ], [ 111.363047722000033, -2.922946872999944 ], [ 111.324229363000029, -2.925957940999922 ], [ 111.29615319100003, -2.936455987999921 ], [ 111.060801629000025, -3.061130466999941 ], [ 110.986175977000073, -3.087497653999947 ], [ 110.942393425000034, -3.09148528399993 ], [ 110.906504754000025, -3.08326588299991 ], [ 110.823741082000026, -3.037204684999949 ], [ 110.806651238000029, -3.032972914999959 ], [ 110.770274285000028, -3.032159112999921 ], [ 110.754242384000065, -3.026055596999925 ], [ 110.75554446700005, -3.011814059999949 ], [ 110.76498457100007, -2.99578215899993 ], [ 110.774099155000044, -2.984307549999926 ], [ 110.80437259200005, -2.959079684999949 ], [ 110.837901238000029, -2.94500090899993 ], [ 110.872080925000034, -2.93523528399993 ], [ 110.956065300000034, -2.90007903399993 ], [ 110.965830925000034, -2.899590752999927 ], [ 110.959228809708563, -2.885671293063246 ], [ 110.959511752965, -2.885559991000775 ], [ 110.987210320699717, -2.874604586532428 ], [ 110.997855665906229, -2.870212090815357 ], [ 111.005710484051576, -2.86483774226798 ], [ 111.012635126210057, -2.856311129654898 ], [ 111.026226027209361, -2.833676853004363 ], [ 111.042710808956599, -2.791663913858542 ], [ 111.053252802274983, -2.775385836786938 ], [ 111.067102084793362, -2.764688815636362 ], [ 111.122809278625255, -2.74133106857397 ], [ 111.137588738929139, -2.733011162435218 ], [ 111.148234084135652, -2.723347670058956 ], [ 111.156192255068447, -2.711772148865577 ], [ 111.16110151562242, -2.698439630284724 ], [ 111.162393426815129, -2.683195081987435 ], [ 111.160223015579675, -2.667382093808612 ], [ 111.151489699190222, -2.646349785813982 ], [ 111.143273146738295, -2.634825941464044 ], [ 111.136968622204108, -2.622526950758186 ], [ 111.131697626444236, -2.607799167297742 ], [ 111.128286980859457, -2.578395278119615 ], [ 111.127460157660096, -2.486617933570813 ], [ 111.131077508819942, -2.464242038439352 ], [ 111.140741001196204, -2.427551771896788 ], [ 111.137692091716588, -2.404814140660051 ], [ 111.012325066948222, -2.127363376218852 ], [ 111.001989781003545, -2.09651254621707 ], [ 110.996202020406884, -2.071191095292818 ], [ 110.993411493345718, -2.003856702524786 ], [ 110.994755079583229, -1.985253188184117 ], [ 111.025244175278431, -1.867017511149243 ], [ 111.027414584715245, -1.829603774194823 ], [ 111.025657587327771, -1.812395522035729 ], [ 111.026484409627756, -1.796892592219365 ], [ 111.035579462122428, -1.757825208866279 ], [ 111.033925815723762, -1.743510836555856 ], [ 111.02751793840207, -1.732297051467754 ], [ 111.020076532306064, -1.725630791727667 ], [ 111.014392123597588, -1.718654472725746 ], [ 111.013823683715998, -1.711264743473123 ], [ 111.02059329624359, -1.686098321280497 ], [ 111.020696649031095, -1.672662449012819 ], [ 111.017441033976468, -1.660311780564257 ], [ 111.011033155755513, -1.653697197667555 ], [ 111.0042118672838, -1.651320081756353 ], [ 110.999302605830565, -1.651785169749814 ], [ 110.991654494159548, -1.654420668079354 ], [ 110.978942092303669, -1.660466811094466 ], [ 110.96199222166365, -1.665531101279328 ], [ 110.950623406944658, -1.664497571605636 ], [ 110.9383244162388, -1.65535084406622 ], [ 110.929074335012501, -1.643775322872841 ], [ 110.921581252073054, -1.631476332166983 ], [ 110.918790725011888, -1.620572604542076 ], [ 110.920341017723729, -1.613234552132894 ], [ 110.927162307094761, -1.603674411644818 ], [ 110.936102329958544, -1.594217624843509 ], [ 110.957754754678149, -1.566519057108792 ], [ 110.975738153193163, -1.549982597618794 ], [ 111.011601597435742, -1.526108086618933 ], [ 111.035837843641502, -1.518821710153816 ], [ 111.053149448588158, -1.518821710153816 ], [ 111.064621616993975, -1.522852471564306 ], [ 111.075628697406444, -1.524764499482103 ], [ 111.086532424132031, -1.525229586576188 ], [ 111.093767123753707, -1.527399997811642 ], [ 111.108184848851636, -1.536184991044536 ], [ 111.119915398776584, -1.536495050306314 ], [ 111.133971388668613, -1.530448907291259 ], [ 111.170661656110497, -1.493965345424385 ], [ 111.18843834815118, -1.481873061192857 ], [ 111.221511265332595, -1.439808445203596 ], [ 111.242130162177205, -1.42058481143988 ], [ 111.269466993806702, -1.404771824160377 ], [ 111.293496535336772, -1.39402312616636 ], [ 111.327137893299096, -1.373300875634925 ], [ 111.348428582812801, -1.331287936489105 ], [ 111.361399367087074, -1.314131362072715 ], [ 111.370649449212692, -1.309170423776038 ], [ 111.390596551589567, -1.288034762993902 ], [ 111.416073033043972, -1.268759454185499 ], [ 111.472865431594357, -1.242352796744171 ], [ 111.490177037440276, -1.223645928716621 ], [ 111.54366214409265, -1.205662530201607 ], [ 111.577355177999038, -1.186748955699784 ], [ 111.590170932642366, -1.175173434506405 ], [ 111.598490838781117, -1.158016860090015 ], [ 111.596992222013398, -1.143030694211177 ], [ 111.587587111156211, -1.115590508894854 ], [ 111.5873804055812, -1.101999606996287 ], [ 111.590997755841727, -1.088408705097663 ], [ 111.597508985950924, -1.07600636070498 ], [ 111.628463168740211, -1.036215508738735 ], [ 111.651407504652582, -1.01549325910662 ], [ 111.749747756153965, -0.949450778430673 ], [ 111.805713332404309, -0.921235446758487 ], [ 111.819510939877944, -0.91741139092295 ], [ 111.862092319804674, -0.895138847679675 ], [ 111.968649122858665, -0.822843520212302 ], [ 112.058669468221296, -0.795765069202616 ], [ 112.084300979306704, -0.773492526858661 ], [ 112.09019209179155, -0.752408542020589 ], [ 112.096393264437552, -0.742951755219337 ], [ 112.10564334476453, -0.737887465034476 ], [ 112.118510777150618, -0.735355319492385 ], [ 112.239330275671591, -0.736285495479251 ], [ 112.289559768168715, -0.746052340643018 ], [ 112.314571160730452, -0.746672459166689 ], [ 112.329867384971749, -0.748739515815998 ], [ 112.354465367282842, -0.755405775556085 ], [ 112.365937534789396, -0.756749362692972 ], [ 112.379993523782105, -0.7545789532561 ], [ 112.472184278581494, -0.717630304295142 ], [ 112.497299025729376, -0.702127373579458 ], [ 112.507530958886605, -0.698406670531426 ], [ 112.521380243203566, -0.699336846518236 ], [ 112.551765985212, -0.706778252614299 ], [ 112.564788446329658, -0.707036635032694 ], [ 112.578017613022325, -0.704452812647219 ], [ 112.75506107021215, -0.635929864171885 ], [ 112.766429884931199, -0.628333428444989 ], [ 112.773044467827845, -0.622287285429877 ], [ 112.790304396830379, -0.610195001198349 ], [ 112.893398879254846, -0.574641614418965 ], [ 112.924559767619144, -0.560327243907182 ], [ 112.949984572230164, -0.541930434242147 ], [ 113.004244826137779, -0.518727715911382 ], [ 113.012926466583167, -0.517332451931111 ], [ 113.025742222125814, -0.517022392669276 ], [ 113.04744632368886, -0.521363214240978 ], [ 113.059796991238159, -0.522448418959357 ], [ 113.084033238343181, -0.518469333492931 ], [ 113.090544467553059, -0.5125265441647 ], [ 113.095505405849735, -0.505136814012758 ], [ 113.102533400795778, -0.491545912114191 ], [ 113.106874220568784, -0.488135267428675 ], [ 113.113385450677924, -0.485809827461594 ], [ 113.122480503172596, -0.483949477286558 ], [ 113.129921910167923, -0.480797214120173 ], [ 113.144287958422524, -0.472477308880684 ], [ 113.152349481243505, -0.469841810551145 ], [ 113.161134475375661, -0.469893486495209 ], [ 113.168782587046735, -0.47433765995504 ], [ 113.176223993142685, -0.482089125312882 ], [ 113.198238153068246, -0.520278008623222 ], [ 113.205989618426088, -0.529321384274454 ], [ 113.216428257158327, -0.539449964644177 ], [ 113.226040073590525, -0.547046401270393 ], [ 113.235393507604272, -0.552059013712551 ], [ 113.256425815598845, -0.551387221043399 ], [ 113.263143752182373, -0.541206963830348 ], [ 113.281385533115781, -0.488755385052968 ], [ 113.300970901186133, -0.448086033043978 ], [ 113.302727898573607, -0.435683688651295 ], [ 113.300815870655811, -0.422764581220463 ], [ 113.290428907867749, -0.401783949169953 ], [ 113.283297561033578, -0.391345309538394 ], [ 113.276114537355966, -0.384265638648287 ], [ 113.264073928169182, -0.378839613257583 ], [ 113.257872756422557, -0.375170587052935 ], [ 113.252395054188355, -0.36891773756355 ], [ 113.249191115077906, -0.361062921216842 ], [ 113.250431350326494, -0.346800224850483 ], [ 113.252756789394311, -0.338893730761072 ], [ 113.271928746314529, -0.310575046301381 ], [ 113.326240676166208, -0.251663914258245 ], [ 113.331253290406949, -0.248098239941839 ], [ 113.337144402891795, -0.244687595256323 ], [ 113.343242221851028, -0.242362156188562 ], [ 113.356419711700255, -0.238538099453763 ], [ 113.363809441852254, -0.237246189160317 ], [ 113.371457554422591, -0.235127454768246 ], [ 113.378898959619278, -0.23151010450772 ], [ 113.383963250703459, -0.226910903215639 ], [ 113.395745476572415, -0.210684502987419 ], [ 113.402566765943448, -0.204948419234142 ], [ 113.410834996138078, -0.202312920904603 ], [ 113.418896518959173, -0.200917656924332 ], [ 113.425717808330091, -0.197196953876357 ], [ 113.429335157691298, -0.190427340449389 ], [ 113.433107537582714, -0.167276299861385 ], [ 113.448248733092555, -0.128002210933289 ], [ 113.476774123127257, -0.079581393566457 ], [ 113.480184767812716, -0.071519870745476 ], [ 113.480701531750242, -0.063199964606667 ], [ 113.47853112231337, -0.047542006058734 ], [ 113.45941084223648, 0.022169500821803 ], [ 113.458273959775397, 0.03054108290462 ], [ 113.458790724612186, 0.039326077036833 ], [ 113.457343784687851, 0.051211655693351 ], [ 113.453209669590478, 0.065887763209673 ], [ 113.431505568027546, 0.113378403690376 ], [ 113.418741490227603, 0.131465154992895 ], [ 113.380552606017886, 0.159835517195347 ], [ 113.368615349618608, 0.171566067120295 ], [ 113.351820510408174, 0.205517483445078 ], [ 113.324535353823421, 0.245204983523138 ], [ 113.359365269291743, 0.259932766084262 ], [ 113.397915887807926, 0.268252672223014 ], [ 113.416002639110502, 0.275228990325616 ], [ 113.424477573980766, 0.277141018243412 ], [ 113.434296095987975, 0.277244371030861 ], [ 113.445199822713562, 0.275384019057242 ], [ 113.479151239038401, 0.262981676463198 ], [ 113.490623407444218, 0.262103176420453 ], [ 113.50979536256591, 0.264221909913203 ], [ 113.531551140972283, 0.261431382852038 ], [ 113.543643427002507, 0.263963528394129 ], [ 113.557182652057691, 0.271559963221705 ], [ 113.58880862841545, 0.298276679025491 ], [ 113.600590855183782, 0.304529526716294 ], [ 113.611649610640939, 0.306648261108364 ], [ 113.622915074371122, 0.310937404937306 ], [ 113.630976597192216, 0.321324367725367 ], [ 113.636040888276284, 0.345457262042999 ], [ 113.63521406507698, 0.379718735830977 ], [ 113.638573032919112, 0.394859931340761 ], [ 113.646686232583534, 0.41005280189529 ], [ 113.663274367118333, 0.427106025322814 ], [ 113.67510826983073, 0.441472073577302 ], [ 113.687200554961578, 0.461729234316692 ], [ 113.703323602402293, 0.495318915435575 ], [ 113.711901890060176, 0.505809231011199 ], [ 113.725337763227117, 0.514025784362445 ], [ 113.734949578760052, 0.521363836771627 ], [ 113.752726271699999, 0.541931056772853 ], [ 113.776394078024282, 0.558570868151037 ], [ 113.804351027278017, 0.568337714214124 ], [ 113.854425490144195, 0.574177150754906 ], [ 113.86982506717311, 0.577587795440422 ], [ 113.911889683162258, 0.595881252317952 ], [ 113.927702671341194, 0.599395249790916 ], [ 113.969870640117847, 0.603632716776474 ], [ 113.983719924434922, 0.608386949498083 ], [ 113.993796827961205, 0.615104885182291 ], [ 114.007129348340754, 0.630091051061129 ], [ 114.017102899079532, 0.638049221094661 ], [ 114.036326531943814, 0.647040919902508 ], [ 114.052449579384529, 0.648952947820248 ], [ 114.095030959311316, 0.648797919088679 ], [ 114.136578811363051, 0.652932034185994 ], [ 114.183914423112128, 0.650451565487344 ], [ 114.198073764892342, 0.646472480020918 ], [ 114.211716342735031, 0.639961249012401 ], [ 114.236831088983536, 0.621616116190808 ], [ 114.251403842813033, 0.614433092513195 ], [ 114.267113479103728, 0.609833889422475 ], [ 114.342767776211872, 0.596501369942246 ], [ 114.359045852384156, 0.591385402914 ], [ 114.377546013937376, 0.588646551796899 ], [ 114.663058302998252, 0.621306056928972 ], [ 114.68279869980006, 0.634638577308465 ], [ 114.705019566200008, 0.654172268535376 ], [ 114.735405308208328, 0.672569078200411 ], [ 114.785324742342937, 0.689777330359505 ], [ 114.832970411555152, 0.698200588386442 ], [ 114.856379836360361, 0.706158759319294 ], [ 114.866353387998402, 0.71148143102323 ], [ 114.874104851557604, 0.727346096045494 ], [ 114.878600701860819, 0.733340562217165 ], [ 114.882993199376642, 0.735821030915815 ], [ 114.890072870266749, 0.737267970840151 ], [ 114.947071975291351, 0.740058498800693 ], [ 114.964073520976171, 0.738869941294752 ], [ 114.976475865368798, 0.735200914190841 ], [ 114.983038772321493, 0.728069566457293 ], [ 114.990790235880581, 0.711429755079109 ], [ 114.996888054839815, 0.706055406531789 ], [ 115.001952345923996, 0.703058172996293 ], [ 115.009600457594956, 0.700060940360117 ], [ 115.018592157302123, 0.695306708537771 ], [ 115.027067092172501, 0.686986803298339 ], [ 115.033164911131735, 0.677271633179316 ], [ 115.037609083692246, 0.666367906453729 ], [ 115.04205325715202, 0.657737941952462 ], [ 115.053215367195435, 0.645490627190668 ], [ 115.057246127706549, 0.636860662689401 ], [ 115.061897006741447, 0.593400784518565 ], [ 115.066237828313092, 0.580171616926577 ], [ 115.072490676003895, 0.56807933179573 ], [ 115.076883172620228, 0.557537340276042 ], [ 115.078381789388004, 0.547305406219493 ], [ 115.075952996633418, 0.533042710752511 ], [ 115.069441765624902, 0.521053778409112 ], [ 115.057866246230219, 0.508909817334199 ], [ 115.033164911131735, 0.488652654796169 ], [ 115.02510338831064, 0.479505927256753 ], [ 114.967949252755716, 0.364215806014613 ], [ 114.955856967624868, 0.32871409697799 ], [ 114.952963087776197, 0.31253937449253 ], [ 114.953066440563703, 0.284169013189398 ], [ 114.955133498112446, 0.27145661133352 ], [ 114.959370965997209, 0.258382473372421 ], [ 114.968879428742639, 0.236833401440322 ], [ 114.972186720640593, 0.225877996971974 ], [ 114.973220249414908, 0.211822007979265 ], [ 114.971980015065583, 0.185622056113004 ], [ 114.973530307777423, 0.176268622099201 ], [ 114.978077834024816, 0.16645010009205 ], [ 114.999988641162759, 0.130896715111305 ], [ 115.011150751206173, 0.10846914313646 ], [ 115.015904983028463, 0.094981594025342 ], [ 115.019212274027154, 0.080718899457622 ], [ 115.019832390752185, 0.069556790313584 ], [ 115.017661981315314, 0.057671209858427 ], [ 114.985415888232637, -0.017207939994421 ], [ 114.970429722353742, -0.068160902903344 ], [ 114.967587518449136, -0.08604094773159 ], [ 114.967329136030799, -0.097513116137407 ], [ 114.969809604729448, -0.106401462157748 ], [ 114.97466719023862, -0.11280933947944 ], [ 114.978129510868143, -0.119630628850473 ], [ 114.979318069273404, -0.128777358188529 ], [ 114.976630894100481, -0.141438084100287 ], [ 114.975545689381988, -0.154822278625261 ], [ 114.978129510868143, -0.166707859080418 ], [ 114.98634606332007, -0.178903496998771 ], [ 114.996267938114784, -0.179420260936297 ], [ 115.002572462649027, -0.177663262649446 ], [ 115.037505730904741, -0.142523288818722 ], [ 115.045567254625098, -0.136838881009567 ], [ 115.076779819832723, -0.123041273535932 ], [ 115.085771518640627, -0.117511894458346 ], [ 115.093006220060943, -0.110380547624175 ], [ 115.098690626970779, -0.103094171159057 ], [ 115.107785678566188, -0.086661064456564 ], [ 115.18736738519658, 0.005219631081104 ], [ 115.212843865751779, 0.024960027882969 ], [ 115.226951531587815, 0.024546616732948 ], [ 115.248552281262732, 0.027440497480939 ], [ 115.265192091741596, 0.031212877372354 ], [ 115.275424025798088, 0.031367906103981 ], [ 115.303329299107872, 0.023409736070448 ], [ 115.337022333014261, 0.017105211536261 ], [ 115.342603388035855, 0.01436636041916 ], [ 115.346634149446345, 0.010283922165286 ], [ 115.347822706952343, 0.005684719074509 ], [ 115.347357618958881, 0.002274075288312 ], [ 115.342293328774076, -0.010386650623445 ], [ 115.337022333014261, -0.02899016676281 ], [ 115.32555016460833, -0.098184909705822 ], [ 115.322242872710376, -0.109967135574834 ], [ 115.31790205293737, -0.120715833568852 ], [ 115.291030308402014, -0.167689711011349 ], [ 115.284105666243477, -0.185156344689574 ], [ 115.27723270092838, -0.220141289788728 ], [ 115.272943557099438, -0.29434864697248 ], [ 115.274183791448763, -0.311040134294785 ], [ 115.287516310928936, -0.35098601589192 ], [ 115.290616897251994, -0.366437269764219 ], [ 115.294647657763107, -0.416615084518526 ], [ 115.299711948847289, -0.438009127719056 ], [ 115.312010939553147, -0.473252455236604 ], [ 115.329890985280713, -0.511027926497604 ], [ 115.381257359339656, -0.582031344570908 ], [ 115.38740685424284, -0.597637628074096 ], [ 115.390559117409339, -0.615155937696386 ], [ 115.391282586921761, -0.655205172980345 ], [ 115.415157097921679, -0.773905938008625 ], [ 115.421358269668417, -0.786256605557924 ], [ 115.453190953399712, -0.828114515972118 ], [ 115.45877200662278, -0.843359062470768 ], [ 115.459908889083863, -0.858706963555505 ], [ 115.458358596372022, -0.871884454304109 ], [ 115.460012241871368, -0.885992120140259 ], [ 115.467143588705653, -0.897257582071745 ], [ 115.517838169196125, -0.93782358219255 ], [ 115.528741896821089, -0.944644870664263 ], [ 115.540059034696696, -0.949605808061619 ], [ 115.574475539014884, -0.958235771663567 ], [ 115.605378045860107, -0.972808525493065 ], [ 115.611269159244216, -0.974772231153565 ], [ 115.619382358908638, -0.975857435872001 ], [ 115.62868411697832, -0.978027846208136 ], [ 115.641913282771725, -0.984849134679848 ], [ 115.655245803151274, -0.9943059214811 ], [ 115.672815789616948, -1.013322848770486 ], [ 115.680670607762295, -1.025673515420408 ], [ 115.687801954596466, -1.044122002828203 ], [ 115.692762892893143, -1.05233855617945 ], [ 115.717050815942343, -1.071768893719479 ], [ 115.725525750812722, -1.086961765173328 ], [ 115.733225539327123, -1.097038668699611 ], [ 115.739685092592936, -1.103808282126522 ], [ 115.745989618026442, -1.106960543494324 ], [ 115.752397496247454, -1.107425631487729 ], [ 115.758908726356594, -1.105565281312693 ], [ 115.771879510630811, -1.097658787223281 ], [ 115.784850294905141, -1.091767672939739 ], [ 115.805107457443114, -1.085256442830598 ], [ 115.816579624050405, -1.207006116439118 ], [ 115.811308628290476, -1.221888929530508 ], [ 115.807794630817511, -1.272170097971639 ], [ 115.80200687112017, -1.294442641214914 ], [ 115.750640497061227, -1.387305189582833 ], [ 115.734104039369868, -1.411334731112959 ], [ 115.720151402265401, -1.426320896092477 ], [ 115.707025588360125, -1.430351657503024 ], [ 115.693693068879952, -1.429214775941148 ], [ 115.67751834459591, -1.425907484942513 ], [ 115.686251661884626, -1.382189222554587 ], [ 115.685941604421487, -1.368494967868457 ], [ 115.680050490138001, -1.360898533040881 ], [ 115.665787794670905, -1.360743502510616 ], [ 115.642533401295395, -1.366272881588202 ], [ 115.553029819870289, -1.404306736166973 ], [ 115.509518263956693, -1.412213230256384 ], [ 115.480062697035805, -1.41577890367347 ], [ 115.473654819714056, -1.41732919728463 ], [ 115.426629266327495, -1.43448577170102 ], [ 115.416914097107906, -1.443374118620682 ], [ 115.410196161423642, -1.453451023046284 ], [ 115.404253371196091, -1.474431654197474 ], [ 115.338262567363586, -1.765369967749848 ], [ 115.335161981040528, -1.799424736862136 ], [ 115.341363152787267, -1.828053480583662 ], [ 115.35355879070562, -1.855700371474995 ], [ 115.360948520857505, -1.879884941736691 ], [ 115.35836469937135, -1.903862806423376 ], [ 115.340122919337205, -1.938692721891584 ], [ 115.322449579184649, -1.96003508914805 ], [ 115.311184117253219, -1.979982191524925 ], [ 115.307980178142657, -1.991919447024884 ], [ 115.330149366799787, -2.037084648437769 ], [ 115.187574090771591, -2.171081637707402 ], [ 115.155327996789538, -2.195989679280274 ], [ 115.130936720952832, -2.207616875518397 ], [ 115.084841342653817, -2.22001921991108 ], [ 115.02644697544747, -2.235367120096498 ], [ 114.904800652827817, -2.262548922994426 ], [ 114.890227898998319, -2.268905125271317 ], [ 114.87999596584109, -2.274641209024594 ], [ 114.878600701860819, -2.2789820287976 ], [ 114.879169142641786, -2.285028170913392 ], [ 114.878962437066775, -2.292779636271234 ], [ 114.878962437066775, -2.326317640546677 ], [ 114.882063023389719, -2.335722750504544 ], [ 114.891261427772633, -2.352207533151159 ], [ 114.895188837294995, -2.36280120151423 ], [ 114.899788038587076, -2.367607110180018 ], [ 114.904283888890291, -2.374170017132599 ], [ 114.906247592752152, -2.384350273446387 ], [ 114.908107944725771, -2.418663424977069 ], [ 114.906247592752152, -2.429360447027022 ], [ 114.902113478554156, -2.440315849696731 ], [ 114.885783726437808, -2.470339858297848 ], [ 114.872451206957635, -2.507495211934497 ], [ 114.868627151122041, -2.514988294873945 ], [ 114.82217003761707, -2.561962171417065 ], [ 114.810026075642782, -2.580152275507146 ], [ 114.801447788884275, -2.599582614845815 ], [ 114.794936557875758, -2.621390069196366 ], [ 114.790905795566005, -2.644024346746221 ], [ 114.789510533384373, -2.665831801096772 ], [ 114.785428095130442, -2.688776137009143 ], [ 114.775299513861455, -2.705105890024811 ], [ 114.757212762558879, -2.723089287640505 ], [ 114.749151238838522, -2.730065605743107 ], [ 114.742950067091897, -2.734509779202938 ], [ 114.675047235341594, -2.759417819876489 ], [ 114.66507368370344, -2.765153903629766 ], [ 114.660164423149581, -2.771716810582348 ], [ 114.661094598237128, -2.783602390138185 ], [ 114.65892418790088, -2.790888766603302 ], [ 114.6543766616536, -2.799105319954549 ], [ 114.643938022921361, -2.812024428284758 ], [ 114.637116734449705, -2.818070569501174 ], [ 114.631225621065482, -2.82225636144193 ], [ 114.610658401064256, -2.829439386018862 ], [ 114.54099857012784, -2.843185316649055 ], [ 114.533867222394406, -2.846389254860242 ], [ 114.528337844216139, -2.850006606020088 ], [ 114.504463332316845, -2.880960788809375 ], [ 114.498107130939275, -2.893311455459298 ], [ 114.493766311166269, -2.906023858214496 ], [ 114.471132032717037, -3.003950696767276 ], [ 114.310728387804829, -3.433795261042462 ], [ 114.310683266196619, -3.43391382655977 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-KS", "NAME_1": "Kalimantan Selatan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.572890168787993, -2.36297628779497 ], [ 116.540049675000091, -2.512872002999927 ], [ 116.517914259, -2.553887627999927 ], [ 116.482432488000086, -2.560316664999959 ], [ 116.473155144000089, -2.547458591999941 ], [ 116.468109571000014, -2.526462497999944 ], [ 116.460948113000086, -2.507012627999927 ], [ 116.44459069100003, -2.498304945999962 ], [ 116.418955925000091, -2.496514580999929 ], [ 116.406748894000089, -2.498304945999962 ], [ 116.40162194100003, -2.500746351999908 ], [ 116.39185631600003, -2.509209893999923 ], [ 116.386241082000083, -2.511976820999962 ], [ 116.379730665000011, -2.511895440999922 ], [ 116.37427819100003, -2.509372653999947 ], [ 116.369639519000089, -2.506442966999941 ], [ 116.365733269000089, -2.50514088299991 ], [ 116.33326256600003, -2.511163018999923 ], [ 116.321055535000028, -2.511976820999962 ], [ 116.310069207000083, -2.516289971999925 ], [ 116.304209832000083, -2.525648695999962 ], [ 116.303070509, -2.535088799999926 ], [ 116.307139519000089, -2.539320570999962 ], [ 116.323741082000083, -2.547539971999925 ], [ 116.320811394000089, -2.566989841999941 ], [ 116.296885613000086, -2.608168226999908 ], [ 116.310557488000086, -2.615004164999959 ], [ 116.341563347000033, -2.566582940999922 ], [ 116.366221550000091, -2.556735934999949 ], [ 116.382009311000047, -2.557712497999944 ], [ 116.393077019000089, -2.573988539999959 ], [ 116.390391472000033, -2.589043877999927 ], [ 116.370616082000083, -2.632907809999949 ], [ 116.365733269000089, -2.652601820999962 ], [ 116.369965040000011, -2.82390715899993 ], [ 116.364756707000083, -2.861423434999949 ], [ 116.351410352000016, -2.89617278399993 ], [ 116.334239129000025, -2.925551039999959 ], [ 116.287608269000089, -2.987074476999908 ], [ 116.26335696700005, -3.005466403999947 ], [ 116.24382571700005, -3.00904713299991 ], [ 116.228770379000025, -3.00164153399993 ], [ 116.219004754000025, -2.985039971999925 ], [ 116.214610222000033, -2.938653252999927 ], [ 116.212412957000083, -2.930352471999925 ], [ 116.208181186000047, -2.922946872999944 ], [ 116.199961785000028, -2.915215752999927 ], [ 116.183604363000086, -2.909356377999927 ], [ 116.174082879000025, -2.903008721999925 ], [ 116.16570071700005, -2.889092705999929 ], [ 116.159190300000091, -2.867445570999962 ], [ 116.155039910000028, -2.843926690999922 ], [ 116.15357506600003, -2.82390715899993 ], [ 116.150645379000025, -2.816338799999926 ], [ 116.144541863000086, -2.816827080999929 ], [ 116.137705925000091, -2.823418877999927 ], [ 116.133067254000025, -2.834161065999922 ], [ 116.133962436000047, -2.840020440999922 ], [ 116.139659050000091, -2.857842705999929 ], [ 116.139821811000047, -2.868910414999959 ], [ 116.130625847000033, -2.88990650799991 ], [ 116.117442254000025, -2.909763278999947 ], [ 116.111338738000086, -2.930271091999941 ], [ 116.122813347000033, -2.953871351999908 ], [ 116.126719597000033, -2.96607838299991 ], [ 116.119639519000089, -2.976495049999926 ], [ 116.109873894000089, -2.986586195999962 ], [ 116.105723504000025, -2.997979424999926 ], [ 116.110199415000011, -3.006280205999929 ], [ 116.118337436000047, -3.005303643999923 ], [ 116.133067254000025, -2.997979424999926 ], [ 116.16138756600003, -3.003513278999947 ], [ 116.167491082000083, -3.014825127999927 ], [ 116.167328321000014, -3.030694268999923 ], [ 116.177500847000033, -3.049899997999944 ], [ 116.192067905000044, -3.063571872999944 ], [ 116.254893425000091, -3.10865650799991 ], [ 116.26726321700005, -3.124200127999927 ], [ 116.26490319100003, -3.136895440999922 ], [ 116.219248894000089, -3.146661065999922 ], [ 116.180186394000089, -3.161309502999927 ], [ 116.16724694100003, -3.156345309999949 ], [ 116.16334069100003, -3.172946872999944 ], [ 116.18327884200005, -3.20826588299991 ], [ 116.187673373000052, -3.232028903999947 ], [ 116.18132571700005, -3.255954684999949 ], [ 116.168467644000089, -3.265801690999922 ], [ 116.14966881600003, -3.270684502999927 ], [ 116.12623131600003, -3.279880466999941 ], [ 116.127696160000028, -3.264825127999927 ], [ 116.134287957000083, -3.254327080999929 ], [ 116.143565300000091, -3.251560153999947 ], [ 116.15357506600003, -3.259372653999947 ], [ 116.160655144000089, -3.253024997999944 ], [ 116.16724694100003, -3.245700778999947 ], [ 116.172129754000025, -3.226169528999947 ], [ 116.156016472000033, -3.225681247999944 ], [ 116.122813347000033, -3.238213799999926 ], [ 116.110524936000047, -3.246189059999949 ], [ 116.100271030000044, -3.26490650799991 ], [ 116.08521569100003, -3.307061455999929 ], [ 116.023448113000086, -3.41179778399993 ], [ 116.009532097000033, -3.451104424999926 ], [ 115.999766472000033, -3.540134372999944 ], [ 115.98951256600003, -3.582696221999925 ], [ 115.967946811000047, -3.608819268999923 ], [ 115.94890384200005, -3.614190362999921 ], [ 115.882578972000033, -3.61492278399993 ], [ 115.858164910000028, -3.620212497999944 ], [ 115.836192254000025, -3.633233330999929 ], [ 115.796641472000033, -3.66961028399993 ], [ 115.758799675000091, -3.69695403399993 ], [ 115.583343946000014, -3.78053150799991 ], [ 115.313649936000047, -3.883070570999905 ], [ 115.060313347000033, -3.985772393999923 ], [ 114.875987175000091, -4.070977471999925 ], [ 114.712901238000086, -4.170830987999921 ], [ 114.664317254000025, -4.184177341999941 ], [ 114.624766472000033, -4.170505466999941 ], [ 114.606618686000047, -4.132256768999923 ], [ 114.61060631600003, -4.088799737999921 ], [ 114.631602410000028, -4.012872002999927 ], [ 114.611338738000086, -3.926364841999941 ], [ 114.604258660000028, -3.85515715899993 ], [ 114.611094597000033, -3.683851820999905 ], [ 114.596446160000028, -3.637872002999927 ], [ 114.536875847000033, -3.563409112999921 ], [ 114.522308790000011, -3.519301039999959 ], [ 114.523936394000089, -3.47584400799991 ], [ 114.550303582000083, -3.348077080999929 ], [ 114.529063347000033, -3.357354424999926 ], [ 114.511729363000086, -3.367608330999929 ], [ 114.500010613000086, -3.382745049999926 ], [ 114.488291863000086, -3.488376559999949 ], [ 114.476817254000025, -3.500664971999925 ], [ 114.451508009, -3.498711846999925 ], [ 114.412445509, -3.485284112999921 ], [ 114.367930535000028, -3.458591403999947 ], [ 114.310683266196619, -3.43391382655977 ], [ 114.310728387804829, -3.433795261042462 ], [ 114.471132032717037, -3.003950696767276 ], [ 114.493766311166269, -2.906023858214496 ], [ 114.498107130939275, -2.893311455459298 ], [ 114.504463332316845, -2.880960788809375 ], [ 114.528337844216139, -2.850006606020088 ], [ 114.533867222394406, -2.846389254860242 ], [ 114.54099857012784, -2.843185316649055 ], [ 114.610658401064256, -2.829439386018862 ], [ 114.631225621065482, -2.82225636144193 ], [ 114.637116734449705, -2.818070569501174 ], [ 114.643938022921361, -2.812024428284758 ], [ 114.6543766616536, -2.799105319954549 ], [ 114.65892418790088, -2.790888766603302 ], [ 114.661094598237128, -2.783602390138185 ], [ 114.660164423149581, -2.771716810582348 ], [ 114.66507368370344, -2.765153903629766 ], [ 114.675047235341594, -2.759417819876489 ], [ 114.742950067091897, -2.734509779202938 ], [ 114.749151238838522, -2.730065605743107 ], [ 114.757212762558879, -2.723089287640505 ], [ 114.775299513861455, -2.705105890024811 ], [ 114.785428095130442, -2.688776137009143 ], [ 114.789510533384373, -2.665831801096772 ], [ 114.790905795566005, -2.644024346746221 ], [ 114.794936557875758, -2.621390069196366 ], [ 114.801447788884275, -2.599582614845815 ], [ 114.810026075642782, -2.580152275507146 ], [ 114.82217003761707, -2.561962171417065 ], [ 114.868627151122041, -2.514988294873945 ], [ 114.872451206957635, -2.507495211934497 ], [ 114.885783726437808, -2.470339858297848 ], [ 114.902113478554156, -2.440315849696731 ], [ 114.906247592752152, -2.429360447027022 ], [ 114.908107944725771, -2.418663424977069 ], [ 114.906247592752152, -2.384350273446387 ], [ 114.904283888890291, -2.374170017132599 ], [ 114.899788038587076, -2.367607110180018 ], [ 114.895188837294995, -2.36280120151423 ], [ 114.891261427772633, -2.352207533151159 ], [ 114.882063023389719, -2.335722750504544 ], [ 114.878962437066775, -2.326317640546677 ], [ 114.878962437066775, -2.292779636271234 ], [ 114.879169142641786, -2.285028170913392 ], [ 114.878600701860819, -2.2789820287976 ], [ 114.87999596584109, -2.274641209024594 ], [ 114.890227898998319, -2.268905125271317 ], [ 114.904800652827817, -2.262548922994426 ], [ 115.02644697544747, -2.235367120096498 ], [ 115.084841342653817, -2.22001921991108 ], [ 115.130936720952832, -2.207616875518397 ], [ 115.155327996789538, -2.195989679280274 ], [ 115.187574090771591, -2.171081637707402 ], [ 115.330149366799787, -2.037084648437769 ], [ 115.307980178142657, -1.991919447024884 ], [ 115.311184117253219, -1.979982191524925 ], [ 115.322449579184649, -1.96003508914805 ], [ 115.340122919337205, -1.938692721891584 ], [ 115.35836469937135, -1.903862806423376 ], [ 115.360948520857505, -1.879884941736691 ], [ 115.35355879070562, -1.855700371474995 ], [ 115.341363152787267, -1.828053480583662 ], [ 115.335161981040528, -1.799424736862136 ], [ 115.338262567363586, -1.765369967749848 ], [ 115.404253371196091, -1.474431654197474 ], [ 115.410196161423642, -1.453451023046284 ], [ 115.416914097107906, -1.443374118620682 ], [ 115.426629266327495, -1.43448577170102 ], [ 115.473654819714056, -1.41732919728463 ], [ 115.480062697035805, -1.41577890367347 ], [ 115.509518263956693, -1.412213230256384 ], [ 115.553029819870289, -1.404306736166973 ], [ 115.642533401295395, -1.366272881588202 ], [ 115.665787794670905, -1.360743502510616 ], [ 115.680050490138001, -1.360898533040881 ], [ 115.685941604421487, -1.368494967868457 ], [ 115.686251661884626, -1.382189222554587 ], [ 115.67751834459591, -1.425907484942513 ], [ 115.652093540884152, -1.428698012003679 ], [ 115.64046634284739, -1.435002536537866 ], [ 115.628580764190815, -1.443529148251628 ], [ 115.606876661728506, -1.466680189738952 ], [ 115.569876336823427, -1.517943210111071 ], [ 115.614989862292305, -1.521612237214981 ], [ 115.631164584777707, -1.525022881900497 ], [ 115.643101841176986, -1.533136081564919 ], [ 115.650594924116376, -1.544556573127352 ], [ 115.653385451177542, -1.576854343053526 ], [ 115.656796095863115, -1.593649184062599 ], [ 115.664547561220957, -1.606309909974357 ], [ 115.683151075561682, -1.624603366851886 ], [ 115.689042189845168, -1.63550709357753 ], [ 115.692349480843859, -1.657986341496496 ], [ 115.698809035008935, -1.680930678308187 ], [ 115.741235386204039, -1.784231866307607 ], [ 115.745576206876422, -1.905568128766163 ], [ 115.741648798253436, -1.924430026424602 ], [ 115.737824742417843, -1.93652231155545 ], [ 115.736997919218538, -1.953833916502049 ], [ 115.739891799067209, -1.97238575579803 ], [ 115.74893517471844, -2.00070444115704 ], [ 115.762991163711149, -2.017344251635905 ], [ 115.778752475945907, -2.025509128143767 ], [ 115.810068393941151, -2.029384860822688 ], [ 115.823142531002986, -2.035896090931885 ], [ 115.828775262868021, -2.047161553762692 ], [ 115.81895673996155, -2.089691256846038 ], [ 115.811928745914884, -2.162089938899555 ], [ 115.814099156251018, -2.183639010831712 ], [ 115.839937372012059, -2.255417576160198 ], [ 115.849549188444257, -2.311951593191509 ], [ 115.850892775581087, -2.320116468799995 ], [ 115.853063185917222, -2.327351168421671 ], [ 115.860711297588296, -2.343319187130817 ], [ 115.866395705397395, -2.348280124528117 ], [ 115.874043817068468, -2.350657239539998 ], [ 115.89626468256904, -2.344714451111031 ], [ 115.906754999043869, -2.338099866415689 ], [ 115.911870966072229, -2.328384698095363 ], [ 115.915591669120204, -2.316447441696084 ], [ 115.921947869598512, -2.309264418018472 ], [ 115.942980177593086, -2.301564629504071 ], [ 115.954762404361418, -2.294639988244853 ], [ 115.975226271575139, -2.276966648092355 ], [ 115.984579705588885, -2.271850681064109 ], [ 115.994449904439534, -2.271023857864748 ], [ 116.021941765699921, -2.283477878201552 ], [ 116.04271569217542, -2.288232110023841 ], [ 116.128085157603891, -2.293244724264639 ], [ 116.157282343005704, -2.2990324848613 ], [ 116.390498082020827, -2.314432060990839 ], [ 116.467702670941435, -2.327247816533543 ], [ 116.567954950360672, -2.36202605605763 ], [ 116.572890168787993, -2.36297628779497 ] ] ], [ [ [ 115.845876498000052, -4.764092705999929 ], [ 115.846690300000091, -4.768649997999944 ], [ 115.849131707000083, -4.77467213299991 ], [ 115.853037957000083, -4.779473565999922 ], [ 115.858083530000044, -4.779961846999925 ], [ 115.806813998000052, -4.821872653999947 ], [ 115.78638756600003, -4.82781340899993 ], [ 115.773448113000086, -4.815118096999925 ], [ 115.795258009, -4.786309502999927 ], [ 115.851817254000025, -4.739027601999908 ], [ 115.851817254000025, -4.745538018999923 ], [ 115.847015821000014, -4.757745049999926 ], [ 115.845876498000052, -4.764092705999929 ] ] ], [ [ [ 116.399261915000011, -3.392754815999922 ], [ 116.404470248000052, -3.374607028999947 ], [ 116.415863477000016, -3.381768487999921 ], [ 116.434418165000011, -3.409763278999947 ], [ 116.431407097000033, -3.447523695999962 ], [ 116.411468946000014, -3.520928643999923 ], [ 116.404551629000025, -3.576836846999925 ], [ 116.395274285000028, -3.613457940999922 ], [ 116.393077019000089, -3.632419528999947 ], [ 116.38599694100003, -3.639580987999921 ], [ 116.370127800000091, -3.621351820999905 ], [ 116.332204623000052, -3.561700127999927 ], [ 116.325368686000047, -3.547621351999908 ], [ 116.324717644000089, -3.532972914999959 ], [ 116.331065300000091, -3.511895440999922 ], [ 116.355642123000052, -3.459730726999908 ], [ 116.358897332000083, -3.440850518999923 ], [ 116.365244988000086, -3.429131768999923 ], [ 116.393077019000089, -3.405857028999947 ], [ 116.399261915000011, -3.392754815999922 ] ] ], [ [ [ 116.303721550000091, -3.71803150799991 ], [ 116.309743686000047, -3.724541924999926 ], [ 116.324961785000028, -3.732028903999947 ], [ 116.331065300000091, -3.739027601999908 ], [ 116.33326256600003, -3.749769789999959 ], [ 116.321055535000028, -3.756931247999944 ], [ 116.311534050000091, -3.785739841999941 ], [ 116.299327019000089, -3.799086195999905 ], [ 116.289235873000052, -3.815606377999927 ], [ 116.289398634, -3.840915622999944 ], [ 116.294932488000086, -3.854587497999944 ], [ 116.307953321000014, -3.87859465899993 ], [ 116.310557488000086, -3.893324476999908 ], [ 116.306488477000016, -3.904473565999922 ], [ 116.296885613000086, -3.907972914999959 ], [ 116.285492384, -3.908298434999949 ], [ 116.276377800000091, -3.90984465899993 ], [ 116.267588738000086, -3.917901299999926 ], [ 116.262705925000091, -3.92701588299991 ], [ 116.25709069100003, -3.934665622999944 ], [ 116.245941602000016, -3.937758070999905 ], [ 116.231211785000028, -3.938083591999941 ], [ 116.221853061000047, -3.939629815999922 ], [ 116.215098504000025, -3.943780205999929 ], [ 116.208181186000047, -3.951348565999922 ], [ 116.206553582000083, -3.95671965899993 ], [ 116.207530144000089, -3.969496351999908 ], [ 116.20476321700005, -3.975274346999925 ], [ 116.198985222000033, -3.979261976999908 ], [ 116.183848504000025, -3.987074476999908 ], [ 116.18091881600003, -3.989353122999944 ], [ 116.177744988000086, -3.995293877999927 ], [ 116.170258009, -4.004001559999949 ], [ 116.15357506600003, -4.019707940999922 ], [ 116.144541863000086, -4.024102471999925 ], [ 116.12468509200005, -4.030368747999944 ], [ 116.115570509, -4.036716403999947 ], [ 116.099782748000052, -4.060642184999949 ], [ 116.09148196700005, -4.066827080999929 ], [ 116.090342644000089, -4.050551039999959 ], [ 116.082855665000011, -4.037774346999925 ], [ 116.071055535000028, -4.03289153399993 ], [ 116.057383660000028, -4.04070403399993 ], [ 116.050140821000014, -4.020196221999925 ], [ 116.053477410000028, -3.997816664999959 ], [ 116.060313347000033, -3.975355726999908 ], [ 116.064219597000033, -3.954522393999923 ], [ 116.068369988000086, -3.951104424999926 ], [ 116.07781009200005, -3.948337497999944 ], [ 116.08716881600003, -3.943536065999922 ], [ 116.09148196700005, -3.934340101999908 ], [ 116.088715040000011, -3.924737237999921 ], [ 116.076019727000016, -3.90984465899993 ], [ 116.07154381600003, -3.903008721999925 ], [ 116.068858269000089, -3.885511976999908 ], [ 116.07781009200005, -3.824476820999905 ], [ 116.074473504000025, -3.800876559999949 ], [ 116.06609134200005, -3.787041924999926 ], [ 116.043711785000028, -3.765801690999922 ], [ 116.025645379000025, -3.740166924999926 ], [ 116.019053582000083, -3.724867445999905 ], [ 116.013031446000014, -3.650485934999949 ], [ 116.016368035000028, -3.629164320999905 ], [ 116.040537957000083, -3.566338799999926 ], [ 116.046397332000083, -3.497491143999923 ], [ 116.052500847000033, -3.478692315999922 ], [ 116.096690300000091, -3.39967213299991 ], [ 116.117930535000028, -3.336114190999922 ], [ 116.119395379000025, -3.324151299999926 ], [ 116.12623131600003, -3.318617445999962 ], [ 116.159190300000091, -3.303643487999921 ], [ 116.170664910000028, -3.296807549999926 ], [ 116.229177280000044, -3.245538018999923 ], [ 116.245941602000016, -3.238213799999926 ], [ 116.254730665000011, -3.232598565999922 ], [ 116.26140384200005, -3.222588799999926 ], [ 116.267832879000025, -3.218845309999949 ], [ 116.276377800000091, -3.232028903999947 ], [ 116.27857506600003, -3.244724216999941 ], [ 116.276133660000028, -3.256280205999929 ], [ 116.272146030000044, -3.267754815999922 ], [ 116.258962436000047, -3.366631768999923 ], [ 116.263031446000014, -3.40553150799991 ], [ 116.289398634, -3.444268487999921 ], [ 116.304698113000086, -3.460137627999927 ], [ 116.318858269000089, -3.480401299999926 ], [ 116.321055535000028, -3.49773528399993 ], [ 116.276377800000091, -3.513604424999926 ], [ 116.274099155000044, -3.53289153399993 ], [ 116.281993035000028, -3.553643487999921 ], [ 116.289398634, -3.566582940999922 ], [ 116.297048373000052, -3.584730726999908 ], [ 116.298838738000086, -3.602146091999941 ], [ 116.296885613000086, -3.646091403999947 ], [ 116.302582227000016, -3.669854424999926 ], [ 116.303721550000091, -3.680108330999929 ], [ 116.303721550000091, -3.71803150799991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-BA", "NAME_1": "Bali" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.550140821000014, -8.666192315999922 ], [ 115.573090040000011, -8.671970309999949 ], [ 115.589153388, -8.695665505999955 ], [ 115.59774535300005, -8.718726089999905 ], [ 115.615730898000038, -8.739627448999954 ], [ 115.624203937000061, -8.768908689999932 ], [ 115.606944207000083, -8.786553643999923 ], [ 115.588877800000091, -8.807305596999925 ], [ 115.560801629000025, -8.799004815999922 ], [ 115.505381707000083, -8.760918877999927 ], [ 115.488780144000089, -8.740655205999929 ], [ 115.474619988000086, -8.736586195999905 ], [ 115.468272332000083, -8.731866143999923 ], [ 115.471364780000044, -8.723809502999927 ], [ 115.507009311000047, -8.67896900799991 ], [ 115.517588738000086, -8.670179945999905 ], [ 115.535055447000104, -8.673678329999916 ], [ 115.550140821000014, -8.666192315999922 ] ] ], [ [ [ 115.619151238000086, -8.28875090899993 ], [ 115.652517123000052, -8.318454684999949 ], [ 115.69109134200005, -8.344414971999925 ], [ 115.714203321000014, -8.375176690999922 ], [ 115.700938347000033, -8.419122002999927 ], [ 115.69068444100003, -8.429457289999959 ], [ 115.658457879000025, -8.455498955999929 ], [ 115.63990319100003, -8.466241143999923 ], [ 115.615489129000025, -8.492445570999905 ], [ 115.604828321000014, -8.501071872999944 ], [ 115.533702019000089, -8.506524346999925 ], [ 115.522959832000083, -8.511325778999947 ], [ 115.515961134, -8.534356377999927 ], [ 115.498789910000028, -8.548435153999947 ], [ 115.364024285000028, -8.59693775799991 ], [ 115.322601759, -8.623793226999908 ], [ 115.290782097000033, -8.658786716999941 ], [ 115.26880944100003, -8.699151299999926 ], [ 115.253916863000086, -8.714613539999959 ], [ 115.23170006600003, -8.720798434999949 ], [ 115.212412957000083, -8.728448174999926 ], [ 115.203135613000086, -8.747002862999921 ], [ 115.205332879000025, -8.769463799999926 ], [ 115.220550977000016, -8.788995049999926 ], [ 115.228037957000083, -8.782159112999921 ], [ 115.223480665000011, -8.778008721999925 ], [ 115.214366082000083, -8.761814059999949 ], [ 115.232432488000086, -8.754001559999949 ], [ 115.23796634200005, -8.772230726999908 ], [ 115.235524936000047, -8.819756768999923 ], [ 115.229014519000089, -8.830254815999922 ], [ 115.213226759, -8.839939059999949 ], [ 115.195078972000033, -8.847100518999923 ], [ 115.18091881600003, -8.850518487999921 ], [ 115.157399936000047, -8.851820570999905 ], [ 115.134532097000033, -8.850762627999927 ], [ 115.113454623000052, -8.84539153399993 ], [ 115.09498131600003, -8.83367278399993 ], [ 115.094248894000089, -8.818454684999949 ], [ 115.11491946700005, -8.803399346999925 ], [ 115.159190300000091, -8.782159112999921 ], [ 115.170664910000028, -8.768731377999927 ], [ 115.181895379000025, -8.746351820999905 ], [ 115.186289910000028, -8.72234465899993 ], [ 115.176931186000047, -8.703383070999905 ], [ 115.172373894000089, -8.69654713299991 ], [ 115.156097852000016, -8.662041924999926 ], [ 115.148692254000025, -8.658135674999926 ], [ 115.139821811000047, -8.655368747999944 ], [ 115.131846550000091, -8.651950778999947 ], [ 115.103363477000016, -8.629652601999908 ], [ 115.090098504000025, -8.614841403999947 ], [ 115.084727410000028, -8.600355726999908 ], [ 115.076670769000089, -8.585137627999927 ], [ 115.058116082000083, -8.570733330999929 ], [ 115.022634311000047, -8.548923434999949 ], [ 114.953135613000086, -8.485121351999908 ], [ 114.92701256600003, -8.467461846999925 ], [ 114.796641472000033, -8.405450127999927 ], [ 114.755869988000086, -8.39771900799991 ], [ 114.639008009, -8.398614190999922 ], [ 114.604502800000091, -8.386488539999959 ], [ 114.574229363000086, -8.362481377999927 ], [ 114.549082879000025, -8.334242445999905 ], [ 114.46843509200005, -8.218519789999959 ], [ 114.447927280000044, -8.121840101999908 ], [ 114.45240319100003, -8.095147393999923 ], [ 114.481455925000091, -8.08953215899993 ], [ 114.504730665000011, -8.090427341999941 ], [ 114.517832879000025, -8.099704684999949 ], [ 114.527354363000086, -8.113539320999905 ], [ 114.539724155000044, -8.128024997999944 ], [ 114.555349155000044, -8.133884372999944 ], [ 114.570974155000044, -8.129489841999941 ], [ 114.597422722000033, -8.11060963299991 ], [ 114.61255944100003, -8.121840101999908 ], [ 114.63404381600003, -8.127211195999905 ], [ 114.67310631600003, -8.131036065999922 ], [ 114.691416863000086, -8.135023695999905 ], [ 114.857595248000052, -8.193129164999959 ], [ 114.892914259, -8.180271091999941 ], [ 114.984385613000086, -8.180433851999908 ], [ 115.022634311000047, -8.172621351999908 ], [ 115.063243035000028, -8.143243096999925 ], [ 115.135915561000047, -8.072849216999941 ], [ 115.172862175000091, -8.055352471999925 ], [ 115.193125847000033, -8.055108330999929 ], [ 115.215505405000044, -8.059502862999921 ], [ 115.236175977000016, -8.067966403999947 ], [ 115.251963738000086, -8.079522393999923 ], [ 115.26880944100003, -8.089450778999947 ], [ 115.337901238000086, -8.103773695999905 ], [ 115.502452019000089, -8.172621351999908 ], [ 115.535329623000052, -8.19459400799991 ], [ 115.565114780000044, -8.221612237999921 ], [ 115.619151238000086, -8.28875090899993 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ID-BB", "NAME_1": "Bangka-Belitung" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.908946160000028, -2.929782809999949 ], [ 106.91570071700005, -2.950941664999959 ], [ 106.890798373000052, -2.994886976999908 ], [ 106.895274285000028, -3.018487237999921 ], [ 106.865896030000044, -3.026543877999927 ], [ 106.861175977000073, -3.02898528399993 ], [ 106.81576582100007, -3.018487237999921 ], [ 106.798594597000033, -3.01100025799991 ], [ 106.758067254000025, -2.97820403399993 ], [ 106.722666863000029, -2.96607838299991 ], [ 106.725596550000034, -2.956231377999927 ], [ 106.73406009200005, -2.94654713299991 ], [ 106.738291863000029, -2.943454684999949 ], [ 106.745616082000026, -2.926934502999927 ], [ 106.749522332000026, -2.92310963299991 ], [ 106.772227410000028, -2.907321872999944 ], [ 106.79232832100007, -2.896416924999926 ], [ 106.812510613000029, -2.892185153999947 ], [ 106.826426629000025, -2.903008721999925 ], [ 106.843516472000033, -2.911879164999959 ], [ 106.88990319100003, -2.919854424999926 ], [ 106.908946160000028, -2.929782809999949 ] ] ], [ [ [ 107.099231796000026, -2.859058011999934 ], [ 107.09676088100008, -2.885194687999956 ], [ 107.090751379000039, -2.902999833999957 ], [ 107.083750847000033, -2.90984465899993 ], [ 107.06999759200005, -2.90748463299991 ], [ 107.059580925000034, -2.901462497999944 ], [ 107.044371892000072, -2.896928103999926 ], [ 107.033698127000036, -2.888574783999957 ], [ 107.01707568300003, -2.880205997999951 ], [ 107.032608594000067, -2.858870155999909 ], [ 107.045746290000068, -2.840752862999921 ], [ 107.059418165000068, -2.831963799999926 ], [ 107.061045769000032, -2.827243747999944 ], [ 107.064626498000052, -2.822523695999962 ], [ 107.07349694100003, -2.820489190999922 ], [ 107.077891472000033, -2.823337497999944 ], [ 107.086210316000063, -2.840005214999906 ], [ 107.099231796000026, -2.859058011999934 ] ] ], [ [ [ 107.395030144000032, -2.868910414999959 ], [ 107.400238477000073, -2.850762627999927 ], [ 107.425791863000029, -2.83521900799991 ], [ 107.458181186000047, -2.824476820999962 ], [ 107.484385613000029, -2.820489190999922 ], [ 107.495192047000046, -2.823489319999908 ], [ 107.49383832500007, -2.837821595999912 ], [ 107.49773196700005, -2.845147393999923 ], [ 107.504730665000068, -2.854668877999927 ], [ 107.494883660000028, -2.876397393999923 ], [ 107.480967644000032, -2.898695570999962 ], [ 107.462901238000029, -2.915948174999926 ], [ 107.427989129000025, -2.925713799999926 ], [ 107.410147308000035, -2.947565211999915 ], [ 107.398453587000063, -2.938427947999912 ], [ 107.369247030000054, -2.905168980999917 ], [ 107.341292226000064, -2.88685845099991 ], [ 107.348488173000078, -2.875167492999935 ], [ 107.366053730000033, -2.882383951999941 ], [ 107.381052232000059, -2.875274658999956 ], [ 107.395030144000032, -2.868910414999959 ] ] ], [ [ [ 108.293711785000028, -2.848402601999908 ], [ 108.28874759200005, -2.866631768999923 ], [ 108.279144727000073, -2.88014088299991 ], [ 108.270030144000032, -2.890801690999922 ], [ 108.265798373000052, -2.899590752999927 ], [ 108.256683790000068, -2.926202080999929 ], [ 108.215586785000028, -2.978692315999922 ], [ 108.20435631600003, -3.005466403999947 ], [ 108.204925977000073, -3.014580987999921 ], [ 108.21021569100003, -3.030450127999927 ], [ 108.21062259200005, -3.039646091999941 ], [ 108.207774285000028, -3.049411716999941 ], [ 108.199392123000052, -3.068617445999962 ], [ 108.197520379000025, -3.077080987999921 ], [ 108.195323113000029, -3.081475518999923 ], [ 108.19068444100003, -3.087497653999947 ], [ 108.186045769000032, -3.095472914999959 ], [ 108.183848504000025, -3.10475025799991 ], [ 108.187673373000052, -3.112074476999908 ], [ 108.204925977000073, -3.125909112999921 ], [ 108.21062259200005, -3.135837497999944 ], [ 108.187673373000052, -3.136895440999922 ], [ 108.152191602000073, -3.152439059999949 ], [ 108.13209069100003, -3.156345309999949 ], [ 108.10873457100007, -3.157159112999921 ], [ 108.090830925000034, -3.16139088299991 ], [ 108.079112175000034, -3.171807549999926 ], [ 108.073985222000033, -3.190362237999921 ], [ 108.073985222000033, -3.226006768999923 ], [ 108.06413821700005, -3.231052341999941 ], [ 108.036143425000034, -3.232028903999947 ], [ 108.011973504000025, -3.236504815999922 ], [ 107.993988477000073, -3.242445570999962 ], [ 107.980967644000032, -3.239841403999947 ], [ 107.970957879000025, -3.217705987999921 ], [ 107.969737175000034, -3.172133070999962 ], [ 107.96607506600003, -3.150974216999941 ], [ 107.941416863000029, -3.13445403399993 ], [ 107.888438347000033, -3.087497653999947 ], [ 107.890472852000073, -3.086114190999922 ], [ 107.891368035000028, -3.079278252999927 ], [ 107.889170769000032, -3.06959400799991 ], [ 107.88217207100007, -3.060153903999947 ], [ 107.87045332100007, -3.051690362999921 ], [ 107.865000847000033, -3.052666924999926 ], [ 107.85906009200005, -3.057305596999925 ], [ 107.844737175000034, -3.060153903999947 ], [ 107.82545006600003, -3.066176039999959 ], [ 107.82545006600003, -3.080661716999941 ], [ 107.84115644600007, -3.107842705999929 ], [ 107.841807488000029, -3.145440362999921 ], [ 107.815196160000028, -3.16725025799991 ], [ 107.753149940000071, -3.198455191999926 ], [ 107.686271377000025, -3.198206957999957 ], [ 107.658839461000071, -3.232633893999946 ], [ 107.631399026000054, -3.240863765999961 ], [ 107.602794007000057, -3.228857672999936 ], [ 107.594497878000027, -3.206238452999912 ], [ 107.605266313000072, -3.176545423999926 ], [ 107.640798373000052, -3.132582289999959 ], [ 107.642588738000029, -3.128350518999923 ], [ 107.640391472000033, -3.121677341999941 ], [ 107.635590040000068, -3.117608330999929 ], [ 107.631114129000025, -3.11451588299991 ], [ 107.62468509200005, -3.105401299999926 ], [ 107.597911004000025, -3.083916924999926 ], [ 107.593597852000073, -3.074965101999908 ], [ 107.59343509200005, -3.063164971999925 ], [ 107.594493035000028, -3.05046965899993 ], [ 107.594248894000032, -3.039646091999941 ], [ 107.590342644000032, -3.029229424999926 ], [ 107.58521569100003, -3.020277601999908 ], [ 107.581065300000034, -3.010674737999921 ], [ 107.580577019000032, -2.997979424999926 ], [ 107.585948113000029, -2.98560963299991 ], [ 107.604340040000068, -2.964043877999927 ], [ 107.608409050000034, -2.953871351999908 ], [ 107.61101321700005, -2.917901299999926 ], [ 107.605316602000073, -2.91375090899993 ], [ 107.587412957000026, -2.916680596999925 ], [ 107.562673373000052, -2.927666924999926 ], [ 107.552989129000025, -2.927992445999962 ], [ 107.547129754000025, -2.916680596999925 ], [ 107.549082879000025, -2.904961846999925 ], [ 107.55795332100007, -2.893975518999923 ], [ 107.570567254000025, -2.885837497999944 ], [ 107.583994988000029, -2.88250090899993 ], [ 107.603363477000073, -2.871026299999926 ], [ 107.609629754000025, -2.843682549999926 ], [ 107.605723504000025, -2.81178150799991 ], [ 107.594248894000032, -2.786309502999927 ], [ 107.60710696700005, -2.78093840899993 ], [ 107.623057488000029, -2.770603122999944 ], [ 107.636729363000029, -2.758558851999908 ], [ 107.642588738000029, -2.748467705999929 ], [ 107.638682488000029, -2.684991143999923 ], [ 107.654551629000025, -2.584893487999921 ], [ 107.670258009000065, -2.561455987999921 ], [ 107.711436394000032, -2.552911065999922 ], [ 107.72779381600003, -2.553155205999929 ], [ 107.756602410000028, -2.560642184999949 ], [ 107.772959832000026, -2.560316664999959 ], [ 107.789073113000029, -2.553806247999944 ], [ 107.818369988000029, -2.531914971999925 ], [ 107.834320509000065, -2.52507903399993 ], [ 107.848155144000032, -2.549899997999944 ], [ 107.883474155000044, -2.564222914999959 ], [ 107.919688347000033, -2.568617445999962 ], [ 107.936208530000044, -2.563571872999944 ], [ 107.988454623000052, -2.574151299999926 ], [ 108.00513756600003, -2.580254815999922 ], [ 108.014008009000065, -2.59107838299991 ], [ 108.032399936000047, -2.642347914999959 ], [ 108.039805535000028, -2.642347914999959 ], [ 108.04623457100007, -2.61492278399993 ], [ 108.053070509000065, -2.60279713299991 ], [ 108.066579623000052, -2.594496351999908 ], [ 108.097911004000025, -2.608168226999908 ], [ 108.104177280000044, -2.612399997999944 ], [ 108.11451256600003, -2.630629164999959 ], [ 108.11841881600003, -2.634942315999922 ], [ 108.135590040000068, -2.639255466999941 ], [ 108.149587436000047, -2.650323174999926 ], [ 108.158946160000028, -2.665785414999959 ], [ 108.162771030000044, -2.68328215899993 ], [ 108.182790561000047, -2.67351653399993 ], [ 108.197764519000032, -2.678155205999929 ], [ 108.26726321700005, -2.757419528999947 ], [ 108.276133660000028, -2.793877862999921 ], [ 108.290863477000073, -2.828708591999941 ], [ 108.293711785000028, -2.848402601999908 ] ] ], [ [ [ 106.769053582000026, -2.560316664999959 ], [ 106.815440300000034, -2.560967705999929 ], [ 106.83326256600003, -2.566582940999922 ], [ 106.83326256600003, -2.580254815999922 ], [ 106.826426629000025, -2.586032809999949 ], [ 106.818695509000065, -2.586195570999962 ], [ 106.809743686000047, -2.58521900799991 ], [ 106.799082879000025, -2.587090752999927 ], [ 106.765961134000065, -2.605645440999922 ], [ 106.755381707000026, -2.608168226999908 ], [ 106.738047722000033, -2.614434502999927 ], [ 106.72193444100003, -2.629327080999929 ], [ 106.674815300000034, -2.699802341999941 ], [ 106.611989780000044, -2.87037525799991 ], [ 106.603770379000025, -2.910251559999949 ], [ 106.613047722000033, -2.942559502999927 ], [ 106.648936394000032, -2.963799737999921 ], [ 106.659922722000033, -2.965915622999944 ], [ 106.674327019000032, -2.966892184999949 ], [ 106.68295332100007, -2.970635674999926 ], [ 106.692556186000047, -2.979261976999908 ], [ 106.698252800000034, -2.988213799999926 ], [ 106.705821160000028, -2.995212497999944 ], [ 106.720876498000052, -2.997979424999926 ], [ 106.738454623000052, -3.004571221999925 ], [ 106.74577884200005, -3.020114841999941 ], [ 106.744965040000068, -3.03834400799991 ], [ 106.738291863000029, -3.053317966999941 ], [ 106.747569207000026, -3.068617445999962 ], [ 106.751963738000029, -3.073663018999923 ], [ 106.744476759000065, -3.080498955999929 ], [ 106.73568769600007, -3.076755466999941 ], [ 106.728282097000033, -3.082126559999949 ], [ 106.719574415000068, -3.090101820999962 ], [ 106.707286004000025, -3.094170830999929 ], [ 106.700368686000047, -3.092217705999929 ], [ 106.693695509000065, -3.088555596999925 ], [ 106.687022332000026, -3.086846612999921 ], [ 106.670664910000028, -3.096123955999929 ], [ 106.66529381600003, -3.092217705999929 ], [ 106.661306186000047, -3.08521900799991 ], [ 106.655772332000026, -3.080498955999929 ], [ 106.60124759200005, -3.071058851999908 ], [ 106.573741082000026, -3.076755466999941 ], [ 106.566416863000029, -3.101657809999949 ], [ 106.556488477000073, -3.096856377999927 ], [ 106.552744988000029, -3.094170830999929 ], [ 106.532237175000034, -3.105645440999922 ], [ 106.517100457000026, -3.094821872999944 ], [ 106.507578972000033, -3.072442315999922 ], [ 106.504405144000032, -3.049899997999944 ], [ 106.49968509200005, -3.038995049999926 ], [ 106.489024285000028, -3.030043226999908 ], [ 106.467051629000025, -3.01531340899993 ], [ 106.458994988000029, -3.004327080999929 ], [ 106.447032097000033, -2.981133721999925 ], [ 106.436045769000032, -2.970635674999926 ], [ 106.416514519000032, -2.965508721999925 ], [ 106.368662957000026, -2.966973565999922 ], [ 106.350352410000028, -2.960707289999959 ], [ 106.30201256600003, -2.913262627999927 ], [ 106.094004754000025, -2.840590101999908 ], [ 106.07390384200005, -2.836195570999962 ], [ 106.002452019000032, -2.830743096999925 ], [ 105.986501498000052, -2.821221612999921 ], [ 105.922536655000044, -2.715997002999927 ], [ 105.90756269600007, -2.674574476999908 ], [ 105.90162194100003, -2.628676039999959 ], [ 105.912364129000025, -2.58562590899993 ], [ 105.932627800000034, -2.541924737999921 ], [ 105.944346550000034, -2.498793226999908 ], [ 105.928884311000047, -2.45671965899993 ], [ 105.897471550000034, -2.436130466999941 ], [ 105.859385613000029, -2.420098565999922 ], [ 105.828786655000044, -2.395114841999941 ], [ 105.819021030000044, -2.347426039999959 ], [ 105.82553144600007, -2.318536065999922 ], [ 105.825938347000033, -2.307224216999941 ], [ 105.823415561000047, -2.297539971999925 ], [ 105.814707879000025, -2.282321872999944 ], [ 105.810557488000029, -2.265883070999962 ], [ 105.800791863000029, -2.245538018999923 ], [ 105.798594597000033, -2.234551690999922 ], [ 105.799082879000025, -2.20086028399993 ], [ 105.795746290000068, -2.171807549999926 ], [ 105.79029381600003, -2.159763278999947 ], [ 105.780446811000047, -2.150811455999929 ], [ 105.764414910000028, -2.142185153999947 ], [ 105.747569207000026, -2.13600025799991 ], [ 105.68873131600003, -2.127699476999908 ], [ 105.683848504000025, -2.125420830999929 ], [ 105.673675977000073, -2.11687590899993 ], [ 105.669444207000026, -2.114841403999947 ], [ 105.663096550000034, -2.115411065999922 ], [ 105.652191602000073, -2.120538018999923 ], [ 105.648285352000073, -2.121514580999929 ], [ 105.616221550000034, -2.117608330999929 ], [ 105.607432488000029, -2.114841403999947 ], [ 105.593760613000029, -2.103610934999949 ], [ 105.577647332000026, -2.077080987999921 ], [ 105.56576582100007, -2.066989841999941 ], [ 105.54224694100003, -2.081801039999959 ], [ 105.491221550000034, -2.098402601999908 ], [ 105.470225457000026, -2.108005466999941 ], [ 105.450368686000047, -2.122653903999947 ], [ 105.44109134200005, -2.123793226999908 ], [ 105.421885613000029, -2.121514580999929 ], [ 105.356944207000026, -2.121514580999929 ], [ 105.306407097000033, -2.135023695999962 ], [ 105.298350457000026, -2.131524346999925 ], [ 105.293142123000052, -2.12623463299991 ], [ 105.271494988000029, -2.094903252999927 ], [ 105.267914259000065, -2.087497653999947 ], [ 105.22982832100007, -2.070082289999959 ], [ 105.212901238000029, -2.066989841999941 ], [ 105.17896569100003, -2.069919528999947 ], [ 105.161143425000034, -2.07390715899993 ], [ 105.147471550000034, -2.080010674999926 ], [ 105.127940300000034, -2.04461028399993 ], [ 105.125498894000032, -2.004082940999922 ], [ 105.135915561000047, -1.965508721999925 ], [ 105.154307488000029, -1.935967705999929 ], [ 105.183604363000029, -1.916924737999921 ], [ 105.298350457000026, -1.873955987999921 ], [ 105.375661655000044, -1.821872653999947 ], [ 105.402354363000029, -1.783298434999949 ], [ 105.394541863000029, -1.73796965899993 ], [ 105.355235222000033, -1.715020440999922 ], [ 105.335459832000026, -1.697930596999925 ], [ 105.34302819100003, -1.690199476999908 ], [ 105.351084832000026, -1.68678150799991 ], [ 105.351328972000033, -1.678480726999908 ], [ 105.346039259000065, -1.658868096999925 ], [ 105.349864129000025, -1.648695570999962 ], [ 105.359141472000033, -1.64381275799991 ], [ 105.370290561000047, -1.640557549999926 ], [ 105.38021894600007, -1.634942315999922 ], [ 105.383799675000034, -1.629082940999922 ], [ 105.389333530000044, -1.613864841999941 ], [ 105.394541863000029, -1.607598565999922 ], [ 105.400157097000033, -1.606215101999908 ], [ 105.412852410000028, -1.607517184999949 ], [ 105.418711785000028, -1.604180596999925 ], [ 105.459646030000044, -1.562920830999929 ], [ 105.471690300000034, -1.558363539999959 ], [ 105.518077019000032, -1.55982838299991 ], [ 105.53679446700005, -1.555271091999941 ], [ 105.546397332000026, -1.549004815999922 ], [ 105.553721550000034, -1.541110934999949 ], [ 105.56576582100007, -1.531914971999925 ], [ 105.594086134000065, -1.525567315999922 ], [ 105.61101321700005, -1.540215752999927 ], [ 105.618907097000033, -1.565199476999908 ], [ 105.621104363000029, -1.590264580999929 ], [ 105.628754102000073, -1.614027601999908 ], [ 105.648448113000029, -1.633233330999929 ], [ 105.674978061000047, -1.647230726999908 ], [ 105.702891472000033, -1.655450127999927 ], [ 105.691416863000029, -1.671319268999923 ], [ 105.65170332100007, -1.706963799999926 ], [ 105.64975019600007, -1.721856377999927 ], [ 105.663096550000034, -1.739678643999923 ], [ 105.681813998000052, -1.755791924999926 ], [ 105.695567254000025, -1.76531340899993 ], [ 105.715098504000025, -1.773532809999949 ], [ 105.72820071700005, -1.772556247999944 ], [ 105.741221550000034, -1.767998955999929 ], [ 105.76099694100003, -1.76531340899993 ], [ 105.765635613000029, -1.768975518999923 ], [ 105.772634311000047, -1.78679778399993 ], [ 105.778086785000028, -1.79265715899993 ], [ 105.785411004000025, -1.794040622999944 ], [ 105.812754754000025, -1.79265715899993 ], [ 105.804698113000029, -1.772637627999927 ], [ 105.791677280000044, -1.753676039999959 ], [ 105.76099694100003, -1.720879815999922 ], [ 105.750987175000034, -1.703057549999926 ], [ 105.750824415000068, -1.683526299999926 ], [ 105.757578972000033, -1.645196221999925 ], [ 105.754649285000028, -1.642673434999949 ], [ 105.737071160000028, -1.614434502999927 ], [ 105.733897332000026, -1.605238539999959 ], [ 105.73170006600003, -1.589043877999927 ], [ 105.72974694100003, -1.580336195999962 ], [ 105.72396894600007, -1.56609465899993 ], [ 105.716644727000073, -1.55242278399993 ], [ 105.707286004000025, -1.540622653999947 ], [ 105.695567254000025, -1.531914971999925 ], [ 105.71998131600003, -1.524183851999908 ], [ 105.809092644000032, -1.525648695999962 ], [ 105.834320509000065, -1.517836195999962 ], [ 105.875743035000028, -1.489190362999921 ], [ 105.894297722000033, -1.490817966999941 ], [ 105.894379102000073, -1.490817966999941 ], [ 105.91374759200005, -1.494235934999949 ], [ 105.921722852000073, -1.504489841999941 ], [ 105.927500847000033, -1.518975518999923 ], [ 105.939463738000029, -1.535332940999922 ], [ 105.947601759000065, -1.538995049999926 ], [ 105.958832227000073, -1.539808851999908 ], [ 105.980479363000029, -1.53875090899993 ], [ 105.987071160000028, -1.542087497999944 ], [ 106.033946160000028, -1.57586028399993 ], [ 106.041514519000032, -1.583591403999947 ], [ 106.045583530000044, -1.594008070999962 ], [ 106.044444207000026, -1.604099216999941 ], [ 106.03443444100003, -1.613051039999959 ], [ 106.031911655000044, -1.62468840899993 ], [ 106.031911655000044, -1.665948174999926 ], [ 106.035492384000065, -1.678317966999941 ], [ 106.043711785000028, -1.686130466999941 ], [ 106.052907748000052, -1.691501559999949 ], [ 106.059336785000028, -1.696465752999927 ], [ 106.06373131600003, -1.705254815999922 ], [ 106.069346550000034, -1.723402601999908 ], [ 106.073008660000028, -1.730564059999949 ], [ 106.078949415000068, -1.736097914999959 ], [ 106.085703972000033, -1.740329684999949 ], [ 106.09107506600003, -1.745700778999947 ], [ 106.09343509200005, -1.755059502999927 ], [ 106.094493035000028, -1.767185153999947 ], [ 106.098399285000028, -1.776950778999947 ], [ 106.105804884000065, -1.783461195999962 ], [ 106.117930535000028, -1.785821221999925 ], [ 106.126963738000029, -1.790134372999944 ], [ 106.126475457000026, -1.799981377999927 ], [ 106.12273196700005, -1.811211846999925 ], [ 106.121348504000025, -1.819268487999921 ], [ 106.174571160000028, -1.879082940999922 ], [ 106.179453972000033, -1.888278903999947 ], [ 106.174815300000034, -1.898207289999959 ], [ 106.162364129000025, -1.963311455999929 ], [ 106.162608269000032, -2.007012627999927 ], [ 106.200694207000026, -2.178155205999929 ], [ 106.264170769000032, -2.351332289999959 ], [ 106.289073113000029, -2.393487237999921 ], [ 106.318858269000032, -2.43132903399993 ], [ 106.354014519000032, -2.462985934999949 ], [ 106.370860222000033, -2.47234465899993 ], [ 106.39616946700005, -2.48211028399993 ], [ 106.419118686000047, -2.484958591999941 ], [ 106.429209832000026, -2.473809502999927 ], [ 106.44109134200005, -2.471368096999925 ], [ 106.553396030000044, -2.510430596999925 ], [ 106.68295332100007, -2.53248463299991 ], [ 106.748383009000065, -2.557061455999929 ], [ 106.769053582000026, -2.560316664999959 ] ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/iran.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/iran.geojson new file mode 100644 index 000000000000..251d2797d631 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/iran.geojson @@ -0,0 +1,37 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "IR-02", "NAME_1": "West Azarbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.590435425000067, 39.771526998000084 ], [ 44.646504354000115, 39.719540507000048 ], [ 44.827836955000066, 39.62879669199999 ], [ 44.872278687000062, 39.625075989000081 ], [ 44.928399292000108, 39.488236796000095 ], [ 44.961627238000062, 39.453768616000033 ], [ 44.957028036000111, 39.434493307000096 ], [ 45.006379028000083, 39.417956848000088 ], [ 45.08797611500006, 39.350725810000043 ], [ 45.135828491000098, 39.278482158000102 ], [ 45.152726685000061, 39.213524883000062 ], [ 45.311114950000103, 39.200528260000041 ], [ 45.311114950000103, 39.176292013000037 ], [ 45.348218628000097, 39.163915507000084 ], [ 45.345273071000065, 39.138439026000057 ], [ 45.396381063000092, 39.073326722000061 ], [ 45.434518270000126, 39.052785340000085 ], [ 45.427076864000128, 39.014880677000079 ], [ 45.494529007607582, 38.981916519032097 ], [ 45.377830030931136, 38.885172024569272 ], [ 45.355815871005632, 38.843417466942526 ], [ 45.326773716134085, 38.737377427826004 ], [ 45.366047805062124, 38.627435818508218 ], [ 45.365634393012783, 38.577800605213724 ], [ 45.32822065605842, 38.524754747233771 ], [ 45.156551548315292, 38.385357570995097 ], [ 45.100327589646497, 38.310478421142193 ], [ 45.089372186077526, 38.267018541172718 ], [ 45.199442986604538, 38.113410346310388 ], [ 45.193241814857856, 38.059253445190336 ], [ 45.228485142375405, 37.789579982730004 ], [ 45.252979770999616, 37.760072739865052 ], [ 45.262178176281793, 37.69583893521866 ], [ 45.234893018797777, 37.668837999474079 ], [ 45.354472283868802, 37.505307928917773 ], [ 45.343103469149753, 37.381103624132948 ], [ 45.356849399779946, 37.327179267009569 ], [ 45.39467654788433, 37.281859035965738 ], [ 45.686545038322834, 37.129155177769235 ], [ 45.923533156330052, 37.109208076291679 ], [ 46.062129347791142, 37.008413194513309 ], [ 46.078975863845017, 36.981618964343681 ], [ 46.292916294051679, 36.877749335563351 ], [ 46.322268508185061, 36.893872382104746 ], [ 46.389551223210333, 36.984409492304223 ], [ 46.449495884027783, 37.015673733456026 ], [ 46.523186476374747, 37.021978257990213 ], [ 46.592742953624395, 37.064973049066964 ], [ 46.761311475943842, 37.004408271524483 ], [ 46.792834100413359, 36.982652493118053 ], [ 46.784152459968027, 36.946582343300463 ], [ 46.823839960046087, 36.853978176451676 ], [ 46.822909784059277, 36.787470607782325 ], [ 46.858876581089305, 36.745405991793064 ], [ 46.956441685335506, 36.734760647485871 ], [ 47.193843215392064, 36.756826484254816 ], [ 47.332336053166273, 36.507694404273309 ], [ 47.278385857621231, 36.487023831484635 ], [ 47.276008741710029, 36.435089015745461 ], [ 47.2164774920426, 36.36819387524713 ], [ 47.141029901408785, 36.341244615446612 ], [ 46.923782180203432, 36.372457179755031 ], [ 46.815158318701435, 36.457774970138757 ], [ 46.297877232348355, 36.419120998835012 ], [ 46.046419712399768, 36.448111476863119 ], [ 45.958776482948281, 36.420206204452768 ], [ 45.936658970235271, 36.397158514853572 ], [ 45.935212030310936, 36.34894440396107 ], [ 45.887049595362498, 36.289878242287045 ], [ 45.724475539214723, 36.247606919823454 ], [ 45.660810173550658, 36.186732083019194 ], [ 45.646960890132959, 36.138001207289847 ], [ 45.535856560831576, 36.022556057316194 ], [ 45.501423676000059, 36.005434777000104 ], [ 45.453121785000064, 36.011653137000096 ], [ 45.359587443000066, 35.976874899000038 ], [ 45.320210002000067, 35.994134827000025 ], [ 45.319589885000084, 36.031031800000065 ], [ 45.348321980000094, 36.08751414000001 ], [ 45.304603719000113, 36.140379130000056 ], [ 45.29736901800004, 36.226730449000044 ], [ 45.258508342000084, 36.26223215800006 ], [ 45.282692912000073, 36.27489288400001 ], [ 45.257009725000103, 36.311686503000104 ], [ 45.238871298000049, 36.402998759000027 ], [ 45.195979858000101, 36.422429097000091 ], [ 45.110817098000098, 36.402533671000086 ], [ 45.07226647900012, 36.423410950000076 ], [ 45.038160034000043, 36.49400095600005 ], [ 44.991392863000044, 36.533740133000052 ], [ 45.044309530000078, 36.649340312000064 ], [ 45.035266154000055, 36.68959625300009 ], [ 44.996198771000138, 36.741686096000038 ], [ 44.922714884000072, 36.775895895000033 ], [ 44.851194702000043, 36.781218567000096 ], [ 44.823392782000099, 36.809330547000016 ], [ 44.883440796000116, 36.88684519499999 ], [ 44.869178101000045, 36.967357076000056 ], [ 44.887368205000143, 37.015932923000051 ], [ 44.840601034000144, 37.047197165000043 ], [ 44.801895386000126, 37.04352813800007 ], [ 44.752699422000092, 37.10331777 ], [ 44.772336467000116, 37.161247051000046 ], [ 44.753526245000103, 37.215326436000041 ], [ 44.798484741000038, 37.26031077100005 ], [ 44.801585327000055, 37.292686056000051 ], [ 44.721383504000073, 37.343277283000091 ], [ 44.698025757000039, 37.38004506500009 ], [ 44.661645549000127, 37.375652568000092 ], [ 44.638184448000061, 37.41260121700013 ], [ 44.572141968000039, 37.430791321000086 ], [ 44.571831909000139, 37.539208476000042 ], [ 44.587438191000047, 37.584011943000107 ], [ 44.540877726000133, 37.632716980000041 ], [ 44.545270223000102, 37.663025208000064 ], [ 44.596119833000046, 37.71638112400008 ], [ 44.506461223000088, 37.779348857000073 ], [ 44.436439656000061, 37.767799174000046 ], [ 44.433029012000134, 37.806117249000053 ], [ 44.404400269000121, 37.809734599000038 ], [ 44.367141561000039, 37.860222473000064 ], [ 44.319237508000072, 37.876862285000087 ], [ 44.219605346000037, 37.87531199200005 ], [ 44.20208703600008, 37.897171122000103 ], [ 44.225496460000045, 37.929313863000047 ], [ 44.227563517000078, 37.980990296000058 ], [ 44.295879761000037, 38.079020488000097 ], [ 44.333810262000043, 38.100879618000036 ], [ 44.327092325000137, 38.12839731900003 ], [ 44.360578654000051, 38.147853496000025 ], [ 44.372412557000132, 38.24950103800002 ], [ 44.436749715000133, 38.296940003000103 ], [ 44.458763876000035, 38.338332825000052 ], [ 44.409051147000071, 38.381792704000063 ], [ 44.363369182000099, 38.364610291000091 ], [ 44.289523560000134, 38.38225779200009 ], [ 44.297016643000063, 38.622320659000124 ], [ 44.282547242000135, 38.645394185 ], [ 44.244306682000058, 38.658959249000091 ], [ 44.260481405000121, 38.679242249000097 ], [ 44.248647501000107, 38.72182362900007 ], [ 44.279808391000074, 38.814221090000061 ], [ 44.275002482000104, 38.843573303000042 ], [ 44.205756063000081, 38.875664368000074 ], [ 44.151960897000038, 38.964625346000034 ], [ 44.139196818000073, 38.993951721000101 ], [ 44.179142700000057, 39.03493113200004 ], [ 44.169892619000109, 39.074360250000055 ], [ 44.194800659000066, 39.120533142000099 ], [ 44.186635783000042, 39.145131125000077 ], [ 44.077701864000062, 39.2000631720001 ], [ 44.069433635000109, 39.287008769000025 ], [ 44.01486332200011, 39.374083557000077 ], [ 44.061372111000139, 39.400283508000101 ], [ 44.176507203000085, 39.411548971000073 ], [ 44.294949585000097, 39.381214905000022 ], [ 44.387967163000098, 39.414494528000077 ], [ 44.404813680000132, 39.434389954000082 ], [ 44.414012085000138, 39.560893860000036 ], [ 44.457626994000123, 39.638718567000083 ], [ 44.459487345000127, 39.698456523000019 ], [ 44.590435425000067, 39.771526998000084 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-01", "NAME_1": "East Azarbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.378233277000049, 38.924705303000096 ], [ 46.514038940000034, 38.882175599000036 ], [ 46.553726440000048, 38.889823710000101 ], [ 46.599201701000084, 38.91969268800004 ], [ 46.652170044000059, 38.992944031000022 ], [ 46.744825888000037, 39.040253804000074 ], [ 46.773764690000121, 39.085367330000039 ], [ 46.866162150000036, 39.165362448000067 ], [ 46.953753703000132, 39.160659892000083 ], [ 47.01362785800012, 39.186956287 ], [ 47.026204868160107, 39.154948838917733 ], [ 47.085529413151846, 39.110894679745627 ], [ 47.103926222816881, 39.049838975788077 ], [ 47.07292036318421, 38.989945990914748 ], [ 46.986103956932027, 38.943359687099871 ], [ 46.883887973651042, 38.918735867266435 ], [ 46.839963005688162, 38.912302151523079 ], [ 46.772990349924669, 38.94077586471434 ], [ 46.762965122342507, 38.868661404400257 ], [ 46.658888787987166, 38.866025906070661 ], [ 46.581684198167181, 38.7982005886862 ], [ 46.565664504413348, 38.735878811058285 ], [ 46.59418989444805, 38.681153469157266 ], [ 46.645246210144478, 38.659139309231705 ], [ 46.847817823833452, 38.721900336431361 ], [ 46.997472771651076, 38.688801580828283 ], [ 47.152088656865999, 38.805073554001297 ], [ 47.123459914043792, 38.825692450845906 ], [ 47.238181593605646, 38.981393540779266 ], [ 47.313422478664449, 39.02097768806982 ], [ 47.354143508416144, 39.018187161008655 ], [ 47.486021763293706, 39.094668281316103 ], [ 47.525605909684941, 39.083118598544445 ], [ 47.511756626267243, 38.969507962122748 ], [ 47.527259556083607, 38.951989650701819 ], [ 47.529740024782313, 38.87664541285551 ], [ 47.587617628950397, 38.763887437155461 ], [ 47.57707563743071, 38.697121486967035 ], [ 47.540075310726991, 38.658209133244895 ], [ 47.540902133926295, 38.630278022412767 ], [ 47.593405388647739, 38.606946112872777 ], [ 47.612318963149619, 38.557956854725035 ], [ 47.563536410576887, 38.531963609333104 ], [ 47.491912875778553, 38.540929469719231 ], [ 47.423803337553977, 38.525219835227176 ], [ 47.301950311157896, 38.443726101578306 ], [ 47.224435662975452, 38.334869696978899 ], [ 47.231670362597129, 38.252394111399099 ], [ 47.343498163209631, 38.273478095337794 ], [ 47.418118930644084, 38.237046210314361 ], [ 47.642911410733007, 38.262987778862907 ], [ 47.712777948143753, 38.23565094723341 ], [ 47.742336866952826, 38.162322089193026 ], [ 47.748641392386332, 38.082740383461896 ], [ 47.799180943245915, 37.984115912019718 ], [ 47.955450473960184, 37.832161363556054 ], [ 47.922687616040605, 37.766428941242623 ], [ 47.913695917232758, 37.675323391161555 ], [ 47.943668247191852, 37.566001899468063 ], [ 48.169907668104372, 37.468514308688384 ], [ 48.178072543712915, 37.396089789112466 ], [ 48.204014113160781, 37.347126370285764 ], [ 48.332068312202807, 37.267854722917093 ], [ 48.324626906106801, 37.247390854804109 ], [ 48.390152621945902, 37.261653551170411 ], [ 48.418574660092474, 37.232714749086369 ], [ 48.455264926635039, 37.223878079010092 ], [ 48.334135369751493, 37.172873440157105 ], [ 47.935193312321474, 37.195740260804371 ], [ 47.620690545232435, 37.166568914723598 ], [ 47.400342237704081, 37.048333237688723 ], [ 47.358277621714819, 36.992471015125204 ], [ 47.206762322822897, 36.869067695118019 ], [ 47.187642042746063, 36.837700100279392 ], [ 47.193843215392064, 36.756826484254816 ], [ 46.956441685335506, 36.734760647485871 ], [ 46.858876581089305, 36.745405991793064 ], [ 46.822909784059277, 36.787470607782325 ], [ 46.823839960046087, 36.853978176451676 ], [ 46.784152459968027, 36.946582343300463 ], [ 46.792834100413359, 36.982652493118053 ], [ 46.638838331923466, 37.058926906951172 ], [ 46.592742953624395, 37.064973049066964 ], [ 46.523186476374747, 37.021978257990213 ], [ 46.449495884027783, 37.015673733456026 ], [ 46.389551223210333, 36.984409492304223 ], [ 46.322268508185061, 36.893872382104746 ], [ 46.292916294051679, 36.877749335563351 ], [ 46.078975863845017, 36.981618964343681 ], [ 46.062129347791142, 37.008413194513309 ], [ 45.923533156330052, 37.109208076291679 ], [ 45.686545038322834, 37.129155177769235 ], [ 45.39467654788433, 37.281859035965738 ], [ 45.356849399779946, 37.327179267009569 ], [ 45.343103469149753, 37.381103624132948 ], [ 45.354472283868802, 37.505307928917773 ], [ 45.234893018797777, 37.668837999474079 ], [ 45.262178176281793, 37.69583893521866 ], [ 45.252979770999616, 37.760072739865052 ], [ 45.228485142375405, 37.789579982730004 ], [ 45.193241814857856, 38.059253445190336 ], [ 45.199442986604538, 38.113410346310388 ], [ 45.089372186077526, 38.267018541172718 ], [ 45.100327589646497, 38.310478421142193 ], [ 45.156551548315292, 38.385357570995097 ], [ 45.32822065605842, 38.524754747233771 ], [ 45.365634393012783, 38.577800605213724 ], [ 45.366047805062124, 38.627435818508218 ], [ 45.326773716134085, 38.737377427826004 ], [ 45.377830030931136, 38.885172024569272 ], [ 45.494529007607582, 38.981916519032097 ], [ 45.627788127000144, 38.955504456000043 ], [ 45.716878296000061, 38.954780986000046 ], [ 46.126052286000117, 38.862667745000024 ], [ 46.202481730000102, 38.870548401000079 ], [ 46.291313517000049, 38.913930766000064 ], [ 46.378233277000049, 38.924705303000096 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-03", "NAME_1": "Ardebil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.957258341000056, 39.707344869000039 ], [ 48.052032919000112, 39.65008738300007 ], [ 48.2886076260001, 39.445035299000054 ], [ 48.338940471000058, 39.378941142000102 ], [ 48.153525432000094, 39.31904815700004 ], [ 48.106189820000054, 39.269180400000081 ], [ 48.104329468000117, 39.234841411000062 ], [ 48.142156616000079, 39.181201274000088 ], [ 48.271296021000069, 39.108311666000063 ], [ 48.306797730000142, 39.045395610000085 ], [ 48.293671916000051, 39.004597067000091 ], [ 48.243184042000053, 38.973875428000056 ], [ 48.058544149000113, 38.948373108000013 ], [ 48.052446330000123, 38.927909241000052 ], [ 47.990744670000083, 38.891218974000097 ], [ 47.993121786000131, 38.850084534000118 ], [ 48.077974487000063, 38.780941467000034 ], [ 48.222978556000044, 38.721461894000058 ], [ 48.22804284700004, 38.662189026000064 ], [ 48.310311727000112, 38.600151470000085 ], [ 48.415266561000124, 38.61810903000007 ], [ 48.433715047000135, 38.569972433000103 ], [ 48.677060174087728, 38.322932441478997 ], [ 48.754471470382043, 38.295518092785755 ], [ 48.519653761811639, 38.065816352142917 ], [ 48.490198194890752, 37.974271552490109 ], [ 48.458365512958039, 37.935049140405511 ], [ 48.456091749834343, 37.880323798504492 ], [ 48.548075799058836, 37.678837389533896 ], [ 48.714060499892128, 37.471459866279758 ], [ 48.866609327558422, 37.3520614692614 ], [ 48.863198682872905, 37.279843655260436 ], [ 48.882525669424069, 37.202794094172077 ], [ 48.815139600711973, 37.231474513837725 ], [ 48.740622186065025, 37.201398831091183 ], [ 48.676026646212733, 37.217935288782542 ], [ 48.656803013348338, 37.211992499454254 ], [ 48.631171502262987, 37.160006007771017 ], [ 48.600268996317084, 37.154786688854585 ], [ 48.525648227983311, 37.218297023988441 ], [ 48.418574660092474, 37.232714749086369 ], [ 48.390152621945902, 37.261653551170411 ], [ 48.324626906106801, 37.247390854804109 ], [ 48.332068312202807, 37.267854722917093 ], [ 48.204014113160781, 37.347126370285764 ], [ 48.178072543712915, 37.396089789112466 ], [ 48.169907668104372, 37.468514308688384 ], [ 47.943668247191852, 37.566001899468063 ], [ 47.913695917232758, 37.675323391161555 ], [ 47.922687616040605, 37.766428941242623 ], [ 47.955450473960184, 37.832161363556054 ], [ 47.799180943245915, 37.984115912019718 ], [ 47.748641392386332, 38.082740383461896 ], [ 47.742336866952826, 38.162322089193026 ], [ 47.712777948143753, 38.23565094723341 ], [ 47.642911410733007, 38.262987778862907 ], [ 47.418118930644084, 38.237046210314361 ], [ 47.343498163209631, 38.273478095337794 ], [ 47.231670362597129, 38.252394111399099 ], [ 47.224435662975452, 38.334869696978899 ], [ 47.301950311157896, 38.443726101578306 ], [ 47.423803337553977, 38.525219835227176 ], [ 47.491912875778553, 38.540929469719231 ], [ 47.563536410576887, 38.531963609333104 ], [ 47.612318963149619, 38.557956854725035 ], [ 47.593405388647739, 38.606946112872777 ], [ 47.540902133926295, 38.630278022412767 ], [ 47.540075310726991, 38.658209133244895 ], [ 47.57707563743071, 38.697121486967035 ], [ 47.587617628950397, 38.763887437155461 ], [ 47.529740024782313, 38.87664541285551 ], [ 47.527259556083607, 38.951989650701819 ], [ 47.511756626267243, 38.969507962122748 ], [ 47.525605909684941, 39.083118598544445 ], [ 47.486021763293706, 39.094668281316103 ], [ 47.354143508416144, 39.018187161008655 ], [ 47.313422478664449, 39.02097768806982 ], [ 47.238181593605646, 38.981393540779266 ], [ 47.123459914043792, 38.825692450845906 ], [ 47.152088656865999, 38.805073554001297 ], [ 46.997472771651076, 38.688801580828283 ], [ 46.847817823833452, 38.721900336431361 ], [ 46.645246210144478, 38.659139309231705 ], [ 46.59418989444805, 38.681153469157266 ], [ 46.565664504413348, 38.735878811058285 ], [ 46.581684198167181, 38.7982005886862 ], [ 46.658888787987166, 38.866025906070661 ], [ 46.762965122342507, 38.868661404400257 ], [ 46.772990349924669, 38.94077586471434 ], [ 46.839963005688162, 38.912302151523079 ], [ 46.883887973651042, 38.918735867266435 ], [ 46.986103956932027, 38.943359687099871 ], [ 47.093487583185379, 39.011856798052747 ], [ 47.103926222816881, 39.049838975788077 ], [ 47.085529413151846, 39.110894679745627 ], [ 47.026204868160107, 39.154948838917733 ], [ 47.01362785800012, 39.186956287 ], [ 47.102220093000142, 39.30840281200004 ], [ 47.291355835000047, 39.379612935000083 ], [ 47.406904338000061, 39.476816304000081 ], [ 47.541159709000112, 39.515160217000115 ], [ 47.823106323000047, 39.680318095000089 ], [ 47.935244182000076, 39.686519267000065 ], [ 47.957258341000056, 39.707344869000039 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-19", "NAME_1": "Gilan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.612962150882538, 38.395646442928978 ], [ 48.683208862000129, 38.398019104000085 ], [ 48.777725057000112, 38.444812114000101 ], [ 48.874278191000087, 38.434068101000037 ], [ 48.874847852000073, 38.242743231000077 ], [ 48.949066602000073, 37.966864325000074 ], [ 48.944509311000047, 37.903387762000079 ], [ 48.987478061000047, 37.842474677000041 ], [ 48.983164910000085, 37.815985419000071 ], [ 49.014496290000068, 37.739162502000056 ], [ 49.13249759200005, 37.62335846600007 ], [ 49.205577019000089, 37.581691799000055 ], [ 49.441742384000065, 37.49485911700009 ], [ 49.826182488000086, 37.453558661000045 ], [ 49.933767123000052, 37.474432684000078 ], [ 49.969493035000085, 37.45970286700009 ], [ 49.935313347000033, 37.453558661000045 ], [ 50.148773634000065, 37.403876044000071 ], [ 50.227305535000085, 37.365423895000049 ], [ 50.223317905000044, 37.329331773000035 ], [ 50.245127800000034, 37.279282945000034 ], [ 50.322276238000086, 37.153265692000048 ], [ 50.478851759000065, 37.034979559000078 ], [ 50.576303083431441, 36.989168601212072 ], [ 50.531934035427355, 36.922501125826273 ], [ 50.439639926941027, 36.868240871918658 ], [ 50.417729119803028, 36.785351874289518 ], [ 50.356440870949427, 36.697372748053851 ], [ 50.304557732953015, 36.670268460421084 ], [ 50.168648715765585, 36.681017158415102 ], [ 50.085553012561434, 36.666289374055339 ], [ 49.854869419088402, 36.569060167492694 ], [ 49.805260044215629, 36.561954658180923 ], [ 49.472257113774731, 36.624328110853639 ], [ 49.354951612726722, 36.727861842849734 ], [ 49.340482211684673, 36.776618557000802 ], [ 49.24581098818652, 36.813076280445955 ], [ 49.186693149669111, 36.977433173302302 ], [ 49.144215121630509, 37.032391059199995 ], [ 49.033317498803513, 37.126054592345554 ], [ 48.882525669424069, 37.202794094172077 ], [ 48.863198682872905, 37.279843655260436 ], [ 48.866609327558422, 37.3520614692614 ], [ 48.714060499892128, 37.471459866279758 ], [ 48.548075799058836, 37.678837389533896 ], [ 48.456091749834343, 37.880323798504492 ], [ 48.458365512958039, 37.935049140405511 ], [ 48.490198194890752, 37.974271552490109 ], [ 48.519653761811639, 38.065816352142917 ], [ 48.754471470382043, 38.295518092785755 ], [ 48.677060174087728, 38.322932441478997 ], [ 48.612962150882538, 38.395646442928978 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-16", "NAME_1": "Kordestan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.749021037000091, 35.810993551000067 ], [ 45.718738648000055, 35.82830515600007 ], [ 45.646856730000138, 35.933208313000065 ], [ 45.501423676000059, 36.005434777000104 ], [ 45.575027296972166, 36.054362900827186 ], [ 45.646960890132959, 36.138001207289847 ], [ 45.660810173550658, 36.186732083019194 ], [ 45.724475539214723, 36.247606919823454 ], [ 45.887049595362498, 36.289878242287045 ], [ 45.935212030310936, 36.34894440396107 ], [ 45.936658970235271, 36.397158514853572 ], [ 45.958776482948281, 36.420206204452768 ], [ 46.046419712399768, 36.448111476863119 ], [ 46.297877232348355, 36.419120998835012 ], [ 46.815158318701435, 36.457774970138757 ], [ 46.923782180203432, 36.372457179755031 ], [ 47.141029901408785, 36.341244615446612 ], [ 47.2164774920426, 36.36819387524713 ], [ 47.276008741710029, 36.435089015745461 ], [ 47.278385857621231, 36.487023831484635 ], [ 47.332336053166273, 36.507694404273309 ], [ 47.361274855250372, 36.484181627580028 ], [ 47.865120070235037, 36.403411363443638 ], [ 47.90005333759143, 36.370648505524116 ], [ 47.94108442570564, 36.28781118383904 ], [ 47.927441847862951, 36.219546616882837 ], [ 47.948939242951667, 36.216497708302597 ], [ 47.967749464666042, 36.160041204737809 ], [ 47.967646111878537, 36.058316147871892 ], [ 47.945631951952976, 35.98509064441771 ], [ 47.889821405333578, 35.915534166268742 ], [ 47.903567335963771, 35.888972480095845 ], [ 48.178796014124714, 35.752934271699246 ], [ 48.225718214723827, 35.690224921343031 ], [ 48.07854373560491, 35.755698961238068 ], [ 48.042576938574825, 35.7474307319427 ], [ 48.101591424304786, 35.654929917881361 ], [ 48.101384718729776, 35.62966014290123 ], [ 47.968679640652852, 35.575296536206167 ], [ 47.93767378102018, 35.582091987155479 ], [ 47.890441522058552, 35.662138779980694 ], [ 47.867497186146181, 35.660200914540553 ], [ 47.799491000709111, 35.587207953284405 ], [ 47.869150831645527, 35.503052882884219 ], [ 47.976947869948219, 35.306372382579355 ], [ 48.124018996279631, 35.190229601514886 ], [ 48.151510858439337, 35.097754624975948 ], [ 48.131667107950648, 35.02303050385467 ], [ 48.063247512262876, 34.952802232137287 ], [ 48.041543409800511, 34.962336534203644 ], [ 48.009504022292788, 35.027267970840171 ], [ 47.943151483254326, 34.979105535891733 ], [ 47.851477492392348, 34.951226101003726 ], [ 47.777373487996044, 34.955541083254388 ], [ 47.62368777876793, 35.097754624975948 ], [ 47.440753208193996, 35.170049954241961 ], [ 47.430004510199979, 35.150981350109191 ], [ 47.448091262401817, 35.121241563247509 ], [ 47.444783969604487, 35.087264309400325 ], [ 47.410470818973067, 35.061529446426789 ], [ 47.267327101264698, 35.053674628281442 ], [ 47.250893996360844, 34.969493720358912 ], [ 47.129247673741133, 34.957143052809613 ], [ 47.068889600874343, 34.90541494444409 ], [ 47.026928337672643, 34.893736070463262 ], [ 47.013905876554929, 34.842912298763565 ], [ 46.960059034696656, 34.818469346982738 ], [ 46.93587446533428, 34.763924872235066 ], [ 46.829627719743428, 34.739094346826619 ], [ 46.679559360775841, 34.742479153090414 ], [ 46.646486443594483, 34.772451483948828 ], [ 46.648966913192453, 34.86226512283713 ], [ 46.583337843666527, 34.88536448838039 ], [ 46.342939080973792, 35.154805405944728 ], [ 46.125285440870357, 35.284989340785444 ], [ 46.120161173000042, 35.318517151000052 ], [ 46.0409928790001, 35.381562398000099 ], [ 45.963994995000064, 35.494165344000081 ], [ 45.984562215000096, 35.531062317000092 ], [ 45.959344116000125, 35.578707988000062 ], [ 45.999238322000053, 35.572145081000073 ], [ 46.00378584800012, 35.67425771100001 ], [ 46.037065471000062, 35.691569316000127 ], [ 46.107035360000054, 35.689812317000033 ], [ 46.177728719000072, 35.715392151000103 ], [ 46.237880086000075, 35.715547181000048 ], [ 46.313379354000119, 35.771512757000053 ], [ 46.319632202000037, 35.816884664000057 ], [ 46.281391642000131, 35.82830515600007 ], [ 46.163517700000114, 35.79750600200002 ], [ 46.129101196000136, 35.81554107700002 ], [ 46.115045207000037, 35.846443584 ], [ 46.060423218000096, 35.857243958000041 ], [ 46.004922730000033, 35.837968649000103 ], [ 45.878315470000132, 35.835229798000043 ], [ 45.834752238000078, 35.81052846300004 ], [ 45.749021037000091, 35.810993551000067 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-17", "NAME_1": "Kermanshah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.11540694200005, 35.226326396 ], [ 46.101454305000061, 35.234284566000085 ], [ 46.107655477000037, 35.262758281000018 ], [ 46.125285440870357, 35.284989340785444 ], [ 46.152976514554496, 35.277381904551248 ], [ 46.342939080973792, 35.154805405944728 ], [ 46.583337843666527, 34.88536448838039 ], [ 46.648966913192453, 34.86226512283713 ], [ 46.646486443594483, 34.772451483948828 ], [ 46.679559360775841, 34.742479153090414 ], [ 46.829627719743428, 34.739094346826619 ], [ 46.93587446533428, 34.763924872235066 ], [ 46.960059034696656, 34.818469346982738 ], [ 47.013905876554929, 34.842912298763565 ], [ 47.026928337672643, 34.893736070463262 ], [ 47.068889600874343, 34.90541494444409 ], [ 47.129247673741133, 34.957143052809613 ], [ 47.250893996360844, 34.969493720358912 ], [ 47.267327101264698, 35.053674628281442 ], [ 47.410470818973067, 35.061529446426789 ], [ 47.444783969604487, 35.087264309400325 ], [ 47.448091262401817, 35.121241563247509 ], [ 47.430004510199979, 35.150981350109191 ], [ 47.440753208193996, 35.170049954241961 ], [ 47.469795363065543, 35.168034573536715 ], [ 47.62368777876793, 35.097754624975948 ], [ 47.777373487996044, 34.955541083254388 ], [ 47.851477492392348, 34.951226101003726 ], [ 47.846619906883177, 34.90812795713947 ], [ 47.727040642711472, 34.74661326818773 ], [ 47.595059035046404, 34.726821194542481 ], [ 47.58069298679186, 34.711189073516891 ], [ 47.590408156011563, 34.671424059073047 ], [ 47.774582960934879, 34.58724315025114 ], [ 47.814787224950464, 34.513810940322628 ], [ 47.900156691278255, 34.587372341460366 ], [ 47.969299758277202, 34.608172105458266 ], [ 47.99854861782444, 34.54352488876259 ], [ 47.990073682954062, 34.430999457059272 ], [ 47.959584588158179, 34.410122178695588 ], [ 47.847343377294976, 34.429940089863237 ], [ 47.748227980336992, 34.424048977378391 ], [ 47.693967726429435, 34.349712428985413 ], [ 47.625238070580451, 34.357438055921534 ], [ 47.576972283743885, 34.34038483339333 ], [ 47.577385694893906, 34.208041490522362 ], [ 47.39972212097905, 34.160680040351565 ], [ 47.417808872281626, 34.067455755878427 ], [ 47.403546176814586, 34.048102931804863 ], [ 47.175136345565875, 34.013634752441874 ], [ 47.175136345565875, 33.98306814238083 ], [ 47.217407668029409, 33.923743598288411 ], [ 47.182474399773696, 33.824912421271222 ], [ 47.025894809797592, 33.830855211498772 ], [ 46.855672641978799, 33.794707547315454 ], [ 46.738780552080812, 33.802639878927266 ], [ 46.487839796969013, 33.869974269896602 ], [ 46.347073195171788, 33.957384955351415 ], [ 46.185739374272657, 33.977564601724964 ], [ 46.035877719980761, 34.028620917421392 ], [ 45.822040642561603, 34.013841458016827 ], [ 45.803540480109064, 33.995909736345254 ], [ 45.817493117213587, 33.957720852135594 ], [ 45.768503859065845, 33.793725694485204 ], [ 45.747316522339588, 33.648850816012327 ], [ 45.724629622758869, 33.633036413199875 ], [ 45.645151408000061, 33.697918396000048 ], [ 45.616729370000144, 33.768689270000053 ], [ 45.574768107000125, 33.803932597000042 ], [ 45.485781290000034, 33.938653056000035 ], [ 45.423717895000095, 33.938782247000077 ], [ 45.380361369000127, 33.973560486000039 ], [ 45.419945516000041, 33.994256898000046 ], [ 45.454878784000073, 34.069859518 ], [ 45.544537395000134, 34.139493510000094 ], [ 45.526657349000061, 34.179310202000025 ], [ 45.563037557000143, 34.289277649000027 ], [ 45.521541382000066, 34.342504374000058 ], [ 45.47927006000009, 34.329146017000042 ], [ 45.460769898000081, 34.340463155000023 ], [ 45.417051635000064, 34.444358623000042 ], [ 45.47927006000009, 34.467251282000078 ], [ 45.503454631000068, 34.49417470300007 ], [ 45.500664103000076, 34.591688131000083 ], [ 45.701530396000067, 34.551277161000101 ], [ 45.708558391000111, 34.579079081000046 ], [ 45.687629435000076, 34.653234762000082 ], [ 45.627374715000144, 34.720827535000055 ], [ 45.662824748000048, 34.763253886000101 ], [ 45.666752156000143, 34.806920472000044 ], [ 45.745403687000078, 34.84097524000002 ], [ 45.755118856000138, 34.909963277000045 ], [ 45.835010620000048, 34.890171204000083 ], [ 45.850203492000048, 34.906811015000088 ], [ 45.868962036000084, 34.968357646000115 ], [ 45.857024780000131, 35.021274312000102 ], [ 45.899089396000136, 35.046905823000074 ], [ 45.913197062000108, 35.087316793000056 ], [ 46.009211873000083, 35.060910136000061 ], [ 46.066572714000074, 35.088815410000038 ], [ 46.143105510000055, 35.099512431000065 ], [ 46.151063680000107, 35.111604716000031 ], [ 46.130393107000089, 35.131396790000011 ], [ 46.169253784000034, 35.216249492000074 ], [ 46.11540694200005, 35.226326396 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-05", "NAME_1": "Ilam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.734551636000049, 33.583119202000049 ], [ 45.724629622758869, 33.633036413199875 ], [ 45.747316522339588, 33.648850816012327 ], [ 45.768503859065845, 33.793725694485204 ], [ 45.817493117213587, 33.957720852135594 ], [ 45.803540480109064, 33.995909736345254 ], [ 45.822040642561603, 34.013841458016827 ], [ 46.035877719980761, 34.028620917421392 ], [ 46.185739374272657, 33.977564601724964 ], [ 46.347073195171788, 33.957384955351415 ], [ 46.487839796969013, 33.869974269896602 ], [ 46.738780552080812, 33.802639878927266 ], [ 46.855672641978799, 33.794707547315454 ], [ 47.025894809797592, 33.830855211498772 ], [ 47.182474399773696, 33.824912421271222 ], [ 47.217407668029409, 33.923743598288411 ], [ 47.175136345565875, 33.98306814238083 ], [ 47.175136345565875, 34.013634752441874 ], [ 47.335643345064284, 34.044433906499592 ], [ 47.386182895923866, 34.03781932180425 ], [ 47.422769809678925, 33.978236396192699 ], [ 47.431658155699324, 33.929247138044957 ], [ 47.426490512726957, 33.897466132056309 ], [ 47.389283482246867, 33.854032091407873 ], [ 47.313732537926285, 33.799565131025929 ], [ 46.963573032169677, 33.717451279752765 ], [ 46.901561313803541, 33.668358669716838 ], [ 46.879547153878036, 33.622960924307165 ], [ 46.844923943984782, 33.615106106161875 ], [ 46.827870720557257, 33.553662828576648 ], [ 46.923575473729102, 33.471187242097528 ], [ 47.009461703994418, 33.433360093993144 ], [ 47.000366652399066, 33.39723826823149 ], [ 47.029408807270613, 33.365870673392862 ], [ 47.098758578945251, 33.334554755397619 ], [ 47.123666619618803, 33.339929103944996 ], [ 47.201181267801246, 33.292981064924163 ], [ 47.21937137189127, 33.264197293370387 ], [ 47.465351189605713, 33.159526678913096 ], [ 47.705853305985272, 32.920833238563091 ], [ 47.898813104141425, 32.601472886864201 ], [ 47.806829054916932, 32.420502021051391 ], [ 47.733758579294999, 32.334977525092711 ], [ 47.747297805249502, 32.220204168687417 ], [ 47.711537712895108, 32.170723985023869 ], [ 47.607047967389747, 32.11256216091499 ], [ 47.5436401770001, 32.114578349000041 ], [ 47.491343628000095, 32.148633118000092 ], [ 47.504004354000131, 32.226742046000098 ], [ 47.402460165000036, 32.323506165000097 ], [ 47.395948934000046, 32.341980489000022 ], [ 47.416412801000035, 32.387972514000111 ], [ 47.343342326000084, 32.458691712000032 ], [ 47.265310913000064, 32.484684957000084 ], [ 47.152552938000042, 32.455177714000072 ], [ 47.090592896000089, 32.474556376000052 ], [ 46.715887085000077, 32.756012065 ], [ 46.479312378000088, 32.891791890000022 ], [ 46.379628540000112, 32.931763611000051 ], [ 46.273433472000079, 32.959488017000083 ], [ 46.097010132000037, 32.954320374000091 ], [ 46.075719442000036, 32.994498800000102 ], [ 46.119489380000061, 33.031008199000027 ], [ 46.120419556000115, 33.061678162000064 ], [ 46.043266643000038, 33.083459778000091 ], [ 46.030295857000112, 33.105680644000117 ], [ 46.105381714000089, 33.118393047000083 ], [ 46.167186726000068, 33.168338318000039 ], [ 46.155301148000092, 33.260219015000089 ], [ 46.036238648000108, 33.367938538000075 ], [ 46.019392131000131, 33.438399353000122 ], [ 45.974433635000139, 33.490799255000056 ], [ 45.899399454000047, 33.476304017000118 ], [ 45.852580608000039, 33.494364930000032 ], [ 45.927924845000064, 33.55087310800009 ], [ 45.88203617400012, 33.600198263000081 ], [ 45.885963582000102, 33.630919902000031 ], [ 45.815786987000138, 33.625803935000036 ], [ 45.734551636000049, 33.583119202000049 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-10", "NAME_1": "Khuzestan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.222978556000044, 30.31809885700001 ], [ 48.192076050000082, 30.331276347000099 ], [ 48.170475301000124, 30.406672261000082 ], [ 48.140916382000057, 30.441915589000061 ], [ 48.013585653000064, 30.463878072000014 ], [ 48.012242066000113, 30.989065653000026 ], [ 47.67293461100013, 30.994698385000063 ], [ 47.678929077000134, 31.407851461000106 ], [ 47.837265666000064, 31.784469300000026 ], [ 47.820780884000101, 31.823588359000055 ], [ 47.765280395000104, 31.86410268200008 ], [ 47.668077026000105, 32.012414043000078 ], [ 47.617795858000136, 32.041869609000074 ], [ 47.580232355838518, 32.103495196046424 ], [ 47.711537712895108, 32.170723985023869 ], [ 47.747297805249502, 32.220204168687417 ], [ 47.733758579294999, 32.334977525092711 ], [ 47.806829054916932, 32.420502021051391 ], [ 47.898813104141425, 32.601472886864201 ], [ 47.953486769199003, 32.669013984307924 ], [ 48.090119255898912, 32.971346951000953 ], [ 48.144172805130836, 33.005995999315871 ], [ 48.567402784710737, 33.044701646563738 ], [ 48.671169060703562, 33.018760077115871 ], [ 48.722535434762506, 32.976850490757499 ], [ 48.784857212390421, 32.960830797003666 ], [ 49.006342400581275, 32.942046413711012 ], [ 49.239299758077323, 32.807041734088727 ], [ 49.379859654299594, 32.795776272157241 ], [ 49.453240187384722, 32.808798733274898 ], [ 49.501609327908113, 32.707822984343238 ], [ 49.555559522553892, 32.683431708506532 ], [ 49.642582635280348, 32.688340969060448 ], [ 49.742834913800209, 32.6561982278659 ], [ 49.784279413064439, 32.608759264228638 ], [ 49.736116978116002, 32.506336575372643 ], [ 49.756270786067887, 32.416419582797459 ], [ 49.906959262659825, 32.21446808493414 ], [ 49.938378534341837, 32.147185369908868 ], [ 50.002043898207319, 32.090858059351945 ], [ 50.065812615759569, 32.063831285185643 ], [ 50.136402621783532, 31.89381582294186 ], [ 50.321197544331199, 31.706824653434978 ], [ 50.350343051990251, 31.65135000270044 ], [ 50.347552524929029, 31.604892890094789 ], [ 50.190869582165476, 31.411674710419504 ], [ 50.071083612418761, 31.319949041814823 ], [ 49.959979282218058, 31.270003770157871 ], [ 49.934761183182047, 31.241142483338933 ], [ 49.918224724591369, 31.20871552220359 ], [ 49.919051547790673, 31.150191961989435 ], [ 49.964630161252899, 31.008908596254685 ], [ 49.954811639245747, 30.86641083369301 ], [ 50.125343866326318, 30.885789496188295 ], [ 50.243889600824389, 30.774581814099406 ], [ 50.395611607089961, 30.695542710727523 ], [ 50.412768182405671, 30.642781074487004 ], [ 50.354993931025092, 30.52552724938306 ], [ 50.362021925971078, 30.473592434543207 ], [ 50.393957960691296, 30.442354030913748 ], [ 50.412664828718846, 30.375975654352942 ], [ 50.429821404933875, 30.218801785174207 ], [ 50.275515578081411, 30.225752264855146 ], [ 50.217844680387657, 30.249988511960225 ], [ 50.114905225795496, 30.235028185402427 ], [ 50.050584278641509, 30.207357895950111 ], [ 49.951019727000073, 30.215033270000049 ], [ 49.600759311000047, 30.030096747000073 ], [ 49.532237175000034, 30.022935289000088 ], [ 49.504079623000052, 30.058661200000074 ], [ 49.501231316000087, 30.120062567000048 ], [ 49.47982832100007, 30.156073309000078 ], [ 49.349945509000065, 30.175279039000088 ], [ 49.245127800000034, 30.156480210000041 ], [ 49.237071160000085, 30.206366278000075 ], [ 49.215993686000047, 30.223781643000052 ], [ 49.221202019000089, 30.264553127000056 ], [ 49.209157748000052, 30.271470445000034 ], [ 49.192881707000083, 30.23773834800005 ], [ 49.161387566000087, 30.223781643000052 ], [ 49.124034050000034, 30.256415106000077 ], [ 49.017344597000033, 30.29828522300005 ], [ 48.979502800000034, 30.361761786000045 ], [ 48.921153191000087, 30.380764065000051 ], [ 48.94857832100007, 30.401068427000041 ], [ 49.062022332000083, 30.408107815000051 ], [ 49.176442905000044, 30.372748114000046 ], [ 49.202891472000033, 30.346625067000048 ], [ 49.263845248000052, 30.449652411000045 ], [ 49.228282097000033, 30.454413153000075 ], [ 49.211192254000082, 30.506333726000037 ], [ 49.168223504000082, 30.476996161000045 ], [ 49.166758660000085, 30.508775132000039 ], [ 49.134043816000087, 30.497463283000059 ], [ 49.110118035000085, 30.517971096000053 ], [ 48.981455925000034, 30.515611070000034 ], [ 48.945648634000065, 30.479722398000035 ], [ 49.004405144000089, 30.464016018000052 ], [ 49.037282748000052, 30.432521877000056 ], [ 49.017344597000033, 30.414943752000056 ], [ 48.934825066000087, 30.418646552000041 ], [ 48.862315300000034, 30.345607815000051 ], [ 48.873708530000044, 30.33665599200009 ], [ 48.859629754000082, 30.316229559000078 ], [ 48.867035352000073, 30.294745184000078 ], [ 48.921153191000087, 30.250433661000045 ], [ 48.936045769000089, 30.210109768000052 ], [ 48.928558790000068, 30.06000397300005 ], [ 48.876719597000033, 30.024481512000079 ], [ 48.701996290000068, 30.031927802000041 ], [ 48.643321160000085, 30.05540599200009 ], [ 48.658702019000089, 29.983628648000035 ], [ 48.610850457000083, 29.957017320000034 ], [ 48.531016472000033, 29.961330471000053 ], [ 48.45779626500007, 29.994862772000076 ], [ 48.423948202000076, 30.083642884000099 ], [ 48.381108440000048, 30.145344544000082 ], [ 48.408031860000051, 30.180897929000039 ], [ 48.40358768800013, 30.212523906000044 ], [ 48.296359090000124, 30.319752502000071 ], [ 48.222978556000044, 30.31809885700001 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-31", "NAME_1": "North Khorasan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.174938599000086, 38.277561340000048 ], [ 57.218346802000099, 38.26508148200007 ], [ 57.344333943000095, 38.081061707000075 ], [ 57.327074015000107, 37.994116110000036 ], [ 57.352395467000065, 37.967528585000096 ], [ 57.496262654000077, 37.92231170700002 ], [ 57.691186157000061, 37.920270488000071 ], [ 57.734827149952991, 37.898271669302062 ], [ 57.575741814932769, 37.808674425284494 ], [ 57.575845167720274, 37.765085354105793 ], [ 57.548249952773062, 37.693306790575889 ], [ 57.586387160139282, 37.671680203378685 ], [ 58.034938592442074, 37.654730332738666 ], [ 58.089508904712147, 37.560317490759587 ], [ 58.180046014012305, 37.492853909480289 ], [ 58.207641228959517, 37.448179633583209 ], [ 58.213842400706199, 37.407949531145903 ], [ 58.165369907395302, 37.349994411712714 ], [ 58.145319452230922, 37.283099270315063 ], [ 58.109352655200837, 37.242946682243542 ], [ 58.049304640696562, 37.101456610933838 ], [ 58.008686964631693, 37.061304022862316 ], [ 58.013441197353359, 37.026396593028323 ], [ 58.062327100914956, 36.999163113287011 ], [ 58.108009068064007, 36.946634020143904 ], [ 58.134674107024409, 36.949941311142595 ], [ 58.162269321971621, 36.984822903454187 ], [ 58.190794712006323, 36.934645086901241 ], [ 58.223970981975185, 36.921777656313793 ], [ 58.227588332235712, 36.898626613927092 ], [ 58.168263788143292, 36.847466946342479 ], [ 58.161752557134776, 36.819561673032752 ], [ 58.210535108808187, 36.786747138269789 ], [ 58.218803338103555, 36.755482896218666 ], [ 58.185523716246507, 36.677348131311192 ], [ 58.148109979292087, 36.648951930687019 ], [ 58.072248975709613, 36.633991604129221 ], [ 57.795263299261819, 36.66807221076391 ], [ 57.133184848801704, 36.962912096316188 ], [ 56.973504673401919, 36.96911326806287 ], [ 56.732692498659844, 36.812507838765725 ], [ 56.675021600066771, 36.750832018083145 ], [ 56.671610956280574, 36.642595730208768 ], [ 56.519268833289971, 36.621795966210868 ], [ 56.317937453051002, 36.665410874911913 ], [ 56.086013625228588, 36.850619207710224 ], [ 56.067306756301718, 36.882141832179798 ], [ 56.094798617562105, 37.029781399292119 ], [ 56.077021926420741, 37.074998277548445 ], [ 56.108957961140959, 37.106107489968679 ], [ 56.167352329246569, 37.120034287752162 ], [ 56.177894321665576, 37.143056138929637 ], [ 56.129111769092844, 37.159256699836817 ], [ 56.08973432827662, 37.153753160080271 ], [ 56.018627557415812, 37.193854072207671 ], [ 55.867422315987085, 37.354361069907441 ], [ 55.970878533617395, 37.480813300293562 ], [ 56.104100375631788, 37.537889920583325 ], [ 56.247967563752013, 37.57346914308647 ], [ 56.303054640858988, 37.634137275215039 ], [ 56.284451124719624, 37.695167140750925 ], [ 56.162494744636717, 37.770408026709049 ], [ 56.181511671926103, 37.903991603929342 ], [ 56.166740624780005, 38.080792149737874 ], [ 56.214067017000104, 38.068840231000038 ], [ 56.315456177000044, 38.08945912700004 ], [ 56.328995402000032, 38.123772278000061 ], [ 56.297059367000031, 38.165785217000078 ], [ 56.30336389200005, 38.179427796000098 ], [ 56.436482381000133, 38.255082092000052 ], [ 56.528156372000126, 38.257407532000073 ], [ 56.585207154000045, 38.234566549000064 ], [ 56.729384399000139, 38.271050110000076 ], [ 56.812376750000055, 38.228959656000043 ], [ 57.038409465000086, 38.187282613000022 ], [ 57.174938599000086, 38.277561340000048 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-27", "NAME_1": "Golestan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.708671509000055, 38.118656311000066 ], [ 55.963022909000074, 38.066514791000102 ], [ 56.166740624780005, 38.080792149737874 ], [ 56.181511671926103, 37.903991603929342 ], [ 56.162494744636717, 37.770408026709049 ], [ 56.284451124719624, 37.695167140750925 ], [ 56.303054640858988, 37.634137275215039 ], [ 56.247967563752013, 37.57346914308647 ], [ 56.104100375631788, 37.537889920583325 ], [ 55.970878533617395, 37.480813300293562 ], [ 55.897704706107277, 37.377718817869152 ], [ 55.82608117040968, 37.327230942953634 ], [ 55.640046014412007, 37.098536891764127 ], [ 55.557260369570372, 36.951465766332035 ], [ 55.537623324656693, 36.842015082529997 ], [ 55.504343702799645, 36.77287201643037 ], [ 55.453597447264372, 36.753880927562761 ], [ 55.096203240986767, 36.79312917716976 ], [ 55.011143833021436, 36.785093491871123 ], [ 54.836270786167802, 36.704374905477493 ], [ 54.604967075070419, 36.543609524459953 ], [ 54.394127232086078, 36.477437853474157 ], [ 54.12013878827446, 36.484775905883339 ], [ 53.973584425880517, 36.622726142197678 ], [ 53.752822707202142, 36.72995473882014 ], [ 53.717889438946429, 36.778401393709316 ], [ 53.70538068630556, 36.816284109831756 ], [ 53.889170769000032, 36.79360586100006 ], [ 54.014333530000044, 36.821112372000073 ], [ 54.033050977000073, 36.845770575000074 ], [ 54.033539259000065, 36.949123440000051 ], [ 54.028086785000085, 36.966213283000059 ], [ 53.994395379000082, 36.97915273600006 ], [ 54.020030144000032, 37.027736721000053 ], [ 53.980316602000073, 37.09406159100007 ], [ 53.927744988000086, 37.243801174000055 ], [ 53.91374759200005, 37.342759507000039 ], [ 54.206437622000124, 37.324596253000024 ], [ 54.261524699000063, 37.354826965000044 ], [ 54.364154094000071, 37.36268178400006 ], [ 54.53334273300004, 37.440816549000104 ], [ 54.653955526000118, 37.438904521000083 ], [ 54.788314250000042, 37.52463572200007 ], [ 54.809398234000128, 37.60333892900006 ], [ 54.787280721000059, 37.651863098000049 ], [ 54.826658162000058, 37.73526886000009 ], [ 55.006802206000089, 37.84309173600009 ], [ 55.130308878000051, 37.952309876000086 ], [ 55.219709106000039, 37.969983215000084 ], [ 55.228804159000106, 37.985796204000067 ], [ 55.307455688000061, 38.008792216000032 ], [ 55.447395467000092, 38.083671367000065 ], [ 55.708671509000055, 38.118656311000066 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-30", "NAME_1": "Razavi Khorasan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.734827149952991, 37.898271669302062 ], [ 57.763016399000037, 37.899393209 ], [ 57.800016723000113, 37.867638042000081 ], [ 57.884145955000065, 37.865338440000059 ], [ 58.040932251000072, 37.805703838000042 ], [ 58.173533976000101, 37.781622620000107 ], [ 58.206813599000043, 37.678734843000043 ], [ 58.357812134000085, 37.633311260000099 ], [ 58.479665161000071, 37.644111634000055 ], [ 58.529791300000113, 37.700387268000028 ], [ 58.681720011000095, 37.642716370000059 ], [ 58.779801880000036, 37.659640402000051 ], [ 58.801092570000037, 37.69465118400008 ], [ 59.034566691000066, 37.624526265000029 ], [ 59.211713501000077, 37.51631581700012 ], [ 59.312275838000119, 37.530345967000031 ], [ 59.356304159000047, 37.480633240000103 ], [ 59.361988567000083, 37.439214580000069 ], [ 59.348345988000119, 37.409293925000028 ], [ 59.370360149000078, 37.319428609000013 ], [ 59.469372193000083, 37.240699565000043 ], [ 59.461724080000124, 37.20760081000013 ], [ 59.501204875000042, 37.190211690000112 ], [ 59.555981893000137, 37.197782288000056 ], [ 59.604971151000143, 37.123884990000093 ], [ 59.653236938000134, 37.149671529 ], [ 59.797207479000065, 37.112206116000024 ], [ 59.899526815000058, 37.050556132000068 ], [ 60.019209432000082, 37.025803121000038 ], [ 60.132587525000076, 36.873409322000029 ], [ 60.238524211000083, 36.769746399000056 ], [ 60.309217570000101, 36.651975810000081 ], [ 60.342290487000071, 36.637144674000055 ], [ 61.075475708000056, 36.647790019000027 ], [ 61.165806112000041, 36.636317851000015 ], [ 61.187613567000142, 36.565107727000068 ], [ 61.166322876000038, 36.513844707000132 ], [ 61.173970988000065, 36.486817933000097 ], [ 61.146685832000117, 36.357265117000097 ], [ 61.153507121000075, 36.314942118000104 ], [ 61.185443156000076, 36.283987936000088 ], [ 61.224717244000033, 36.123687643000025 ], [ 61.19815555800011, 36.060797424000057 ], [ 61.173970988000065, 36.048033345000064 ], [ 61.173970988000065, 36.006485494000074 ], [ 61.12983931500014, 35.970518697000031 ], [ 61.188337036000064, 35.953568828000115 ], [ 61.241046997000069, 35.893882548000093 ], [ 61.256343221000122, 35.769497375000086 ], [ 61.231745239000134, 35.671880595000076 ], [ 61.27701379400014, 35.609197082000051 ], [ 61.290036255000075, 35.548063863000024 ], [ 61.195054973000083, 35.390089010000011 ], [ 61.187096802000099, 35.300378723000037 ], [ 61.108341919000111, 35.277951152000028 ], [ 61.112372681000124, 35.202038472000098 ], [ 61.096352987000046, 35.193201802000104 ], [ 61.139864543000101, 35.139665019000077 ], [ 61.147305949000099, 35.102096252000067 ], [ 61.115886678000038, 35.059876608000096 ], [ 61.074752238000087, 34.93311431900004 ], [ 61.065450480000038, 34.814723613000083 ], [ 61.034754680000106, 34.806248678000074 ], [ 61.009639933000074, 34.760980123000067 ], [ 60.959927206000089, 34.723204651000017 ], [ 60.947524862000137, 34.637990214000055 ], [ 60.895435018000057, 34.62832672200004 ], [ 60.838487590000113, 34.570914205000022 ], [ 60.739268840000136, 34.548021546000101 ], [ 60.699684692000062, 34.516395569000011 ], [ 60.779369751000047, 34.455081482000068 ], [ 60.890474080000104, 34.318914083000053 ], [ 60.643667440000058, 34.306640930000029 ], [ 60.65059208200006, 34.285350241000046 ], [ 60.587443482000083, 34.250261943000012 ], [ 60.520884237000075, 34.18613149 ], [ 60.49277225700007, 34.139028422000095 ], [ 60.488460679816512, 34.080927320439457 ], [ 59.787906528863175, 34.068515123074462 ], [ 59.656751742598829, 34.107117418434086 ], [ 59.558669875314479, 34.239874172455075 ], [ 59.50492638534439, 34.27795970297791 ], [ 59.307935824878371, 34.20163361320067 ], [ 59.011003045154382, 34.165150051333796 ], [ 58.955192499434247, 34.12241364177612 ], [ 58.693399692641663, 34.165150051333796 ], [ 58.639759556358399, 34.148096828805592 ], [ 58.630664503863727, 34.093345649382172 ], [ 58.669835240004318, 34.04107493685882 ], [ 58.639346144309059, 33.901135159160219 ], [ 58.646167433680091, 33.817393499910054 ], [ 58.605446404827717, 33.709286404144223 ], [ 58.610097283862558, 33.666679185795772 ], [ 58.66156700980963, 33.629730535935437 ], [ 58.6802738787365, 33.57743398678906 ], [ 58.831995884102753, 33.485062363936947 ], [ 58.796132439860173, 33.410312405293269 ], [ 58.701771274724535, 33.305512600526072 ], [ 58.387578565998012, 33.130846259247448 ], [ 58.248672316174407, 32.954190374785924 ], [ 58.215599399892369, 32.835722153754375 ], [ 58.147696568142067, 32.748595689139734 ], [ 58.04062300025123, 32.871068834059429 ], [ 57.782240838144162, 32.996797594033694 ], [ 57.71702518066752, 33.121699530808655 ], [ 57.642301060445561, 33.54405101214445 ], [ 57.602716913155007, 33.607716376009932 ], [ 57.559928826753946, 33.653243313528094 ], [ 57.304440545394812, 33.603737291442826 ], [ 57.105796340328823, 33.623581041032196 ], [ 57.05887413883039, 33.685256863513416 ], [ 56.9966557148893, 33.973482164370353 ], [ 57.004820591397163, 34.142567449728006 ], [ 57.13080773289056, 34.456295071360444 ], [ 57.198917271115135, 34.557735908285508 ], [ 57.595172154271495, 34.788807075386217 ], [ 57.692013788105783, 34.86686432502853 ], [ 57.705553013161023, 34.930994777786736 ], [ 57.671239861630283, 34.993936672139682 ], [ 57.37957807766611, 35.177336330707078 ], [ 57.268370395577278, 35.201314195393763 ], [ 57.016602818165495, 35.148294175835531 ], [ 56.619211053447316, 34.993678289721288 ], [ 56.210450474010145, 34.906060898691521 ], [ 56.37126753097175, 35.06922923404187 ], [ 56.500355258788147, 35.165941677566366 ], [ 56.85557905472956, 35.305829780220165 ], [ 57.071999952735609, 35.630409450835486 ], [ 57.087192824189458, 35.700353501712698 ], [ 57.021770461137862, 35.761512560256449 ], [ 56.784575636656257, 35.918970649375922 ], [ 56.757290480071561, 35.974936224726946 ], [ 56.724941034201322, 36.095936591300642 ], [ 56.706130811587684, 36.283470364066034 ], [ 56.720910271891512, 36.392404283031226 ], [ 56.761321242381428, 36.454596869449972 ], [ 56.788192986916783, 36.547898668288894 ], [ 56.763698358292572, 36.626576036454878 ], [ 56.723080682227703, 36.646135566103453 ], [ 56.671610956280574, 36.642595730208768 ], [ 56.667063430033238, 36.705253403721599 ], [ 56.675021600066771, 36.750832018083145 ], [ 56.732692498659844, 36.812507838765725 ], [ 56.973504673401919, 36.96911326806287 ], [ 57.133184848801704, 36.962912096316188 ], [ 57.795263299261819, 36.66807221076391 ], [ 58.072248975709613, 36.633991604129221 ], [ 58.148109979292087, 36.648951930687019 ], [ 58.185523716246507, 36.677348131311192 ], [ 58.218803338103555, 36.755482896218666 ], [ 58.210535108808187, 36.786747138269789 ], [ 58.161752557134776, 36.819561673032752 ], [ 58.168263788143292, 36.847466946342479 ], [ 58.227588332235712, 36.898626613927092 ], [ 58.223970981975185, 36.921777656313793 ], [ 58.190794712006323, 36.934645086901241 ], [ 58.162269321971621, 36.984822903454187 ], [ 58.134674107024409, 36.949941311142595 ], [ 58.108009068064007, 36.946634020143904 ], [ 58.062327100914956, 36.999163113287011 ], [ 58.013441197353359, 37.026396593028323 ], [ 58.008686964631693, 37.061304022862316 ], [ 58.049304640696562, 37.101456610933838 ], [ 58.109352655200837, 37.242946682243542 ], [ 58.145319452230922, 37.283099270315063 ], [ 58.165369907395302, 37.349994411712714 ], [ 58.213842400706199, 37.407949531145903 ], [ 58.207641228959517, 37.448179633583209 ], [ 58.180046014012305, 37.492853909480289 ], [ 58.089508904712147, 37.560317490759587 ], [ 58.034938592442074, 37.654730332738666 ], [ 57.586387160139282, 37.671680203378685 ], [ 57.548249952773062, 37.693306790575889 ], [ 57.575845167720274, 37.765085354105793 ], [ 57.575741814932769, 37.808674425284494 ], [ 57.734827149952991, 37.898271669302062 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-29", "NAME_1": "South Khorasan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.488460679816512, 34.080927320439457 ], [ 60.528015585000048, 33.841449687000036 ], [ 60.486881145000041, 33.711380107000096 ], [ 60.511789185000112, 33.638387146000056 ], [ 60.574834432000046, 33.587795919000101 ], [ 60.655553019000081, 33.559890645000038 ], [ 60.846032348000051, 33.555782370000102 ], [ 60.8951249590001, 33.541132101000031 ], [ 60.920859822000068, 33.514105326000092 ], [ 60.832183065000095, 33.484494731000055 ], [ 60.829082479000135, 33.416281841000014 ], [ 60.757045533000053, 33.366336568000051 ], [ 60.567599731000087, 33.151285096000024 ], [ 60.562948853000137, 33.058267518000051 ], [ 60.830322713000044, 32.248885397000024 ], [ 60.814819783000075, 32.08786163300006 ], [ 60.774925578000136, 32.027193502000088 ], [ 60.792598918000124, 32.011277161000052 ], [ 60.805311320000101, 31.733981426000113 ], [ 60.792598918000124, 31.660084127000047 ], [ 60.821744425000134, 31.494667868000093 ], [ 61.125148649000096, 31.448887156000083 ], [ 61.143275994991143, 31.390745755212436 ], [ 61.129426710674124, 31.270287990997986 ], [ 61.065347934759359, 31.138409736120423 ], [ 61.018012323010282, 30.99167450657319 ], [ 61.001269158844593, 30.654175726728397 ], [ 61.052118768066691, 30.460001533543902 ], [ 61.034755487175971, 30.408066717804786 ], [ 61.000855746795253, 30.396465359089007 ], [ 60.864843377719694, 30.392357083312731 ], [ 60.782987908864868, 30.453025214541981 ], [ 60.625478142901954, 30.6465534534791 ], [ 60.502281529369043, 30.724714056808239 ], [ 60.409677361620936, 30.746650702368015 ], [ 60.351593051877785, 30.794451402110496 ], [ 60.297126092395217, 30.802822984193369 ], [ 59.515365024975893, 30.60660757098259 ], [ 59.116319614758368, 31.10616364213837 ], [ 58.972865837788163, 31.197889308944411 ], [ 57.834744093764868, 31.637268175286067 ], [ 57.901199985590836, 31.771549384496495 ], [ 58.003932732809346, 31.907200019265474 ], [ 58.040726353038735, 31.994533189455126 ], [ 58.173948195053129, 32.146048489246368 ], [ 58.190381300856302, 32.192789821792815 ], [ 58.224384393125206, 32.352547512457704 ], [ 58.10036095639299, 32.568141588163769 ], [ 58.152554151852598, 32.671882025734874 ], [ 58.147696568142067, 32.748595689139734 ], [ 58.215599399892369, 32.835722153754375 ], [ 58.248672316174407, 32.954190374785924 ], [ 58.387578565998012, 33.130846259247448 ], [ 58.746316359412447, 33.343494778261402 ], [ 58.831995884102753, 33.485062363936947 ], [ 58.6802738787365, 33.57743398678906 ], [ 58.66156700980963, 33.629730535935437 ], [ 58.610097283862558, 33.666679185795772 ], [ 58.605446404827717, 33.709286404144223 ], [ 58.646167433680091, 33.817393499910054 ], [ 58.639346144309059, 33.901135159160219 ], [ 58.669835240004318, 34.04107493685882 ], [ 58.630664503863727, 34.093345649382172 ], [ 58.639759556358399, 34.148096828805592 ], [ 58.693399692641663, 34.165150051333796 ], [ 58.955192499434247, 34.12241364177612 ], [ 59.011003045154382, 34.165150051333796 ], [ 59.307935824878371, 34.20163361320067 ], [ 59.50492638534439, 34.27795970297791 ], [ 59.558669875314479, 34.239874172455075 ], [ 59.656751742598829, 34.107117418434086 ], [ 59.787906528863175, 34.068515123074462 ], [ 60.488460679816512, 34.080927320439457 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-13", "NAME_1": "Sistan and Baluchestan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.606258629632009, 31.388741287780192 ], [ 61.686911255000098, 31.373176575000073 ], [ 61.749233032000063, 31.302379863000041 ], [ 61.742721802000062, 31.239541321000061 ], [ 61.779205363000074, 31.181095276000079 ], [ 61.826334269000085, 31.03459259099999 ], [ 61.800185995000106, 30.961418762 ], [ 61.80225305200014, 30.847058818000036 ], [ 60.844378703000075, 29.858178610000053 ], [ 61.279184205000035, 29.406629944000073 ], [ 61.337371867000059, 29.374383850000086 ], [ 61.346570272000122, 29.349062398000015 ], [ 61.332824341000105, 29.274906718000082 ], [ 61.386981242000104, 29.206642151000025 ], [ 61.397936646000119, 29.159073995000099 ], [ 61.437727498000129, 29.139617818000104 ], [ 61.460878540000067, 29.093884176000088 ], [ 61.487750285000118, 29.080655009000097 ], [ 61.46800988800004, 29.041742656000011 ], [ 61.510901327000113, 29.007377828000088 ], [ 61.566505168000106, 28.870977886000034 ], [ 61.653011516000106, 28.756333720000057 ], [ 61.89279016100005, 28.542599997000096 ], [ 62.049111369000116, 28.486324361000115 ], [ 62.362787313000069, 28.418886617000069 ], [ 62.464279826000052, 28.349821066000018 ], [ 62.492288452000139, 28.300702616000066 ], [ 62.575642538000068, 28.229027405000082 ], [ 62.739301799000032, 28.258327942000065 ], [ 62.761522664000097, 28.246442362000025 ], [ 62.735684448000086, 27.994984843000012 ], [ 62.780281209000066, 27.829723613000013 ], [ 62.814697713000044, 27.494963684000041 ], [ 62.756044963000079, 27.348099263000037 ], [ 62.778782593000074, 27.299833476000046 ], [ 62.768085571000086, 27.274356995000105 ], [ 62.74235070800006, 27.266812236000064 ], [ 62.800641723000126, 27.225161031000042 ], [ 62.829322144000116, 27.233635966000051 ], [ 62.892419067000048, 27.213482157000058 ], [ 63.166975953000076, 27.258699036000067 ], [ 63.260613647000071, 27.213792217000062 ], [ 63.319628133000037, 27.117312317000042 ], [ 63.260923707000075, 27.115606995000078 ], [ 63.231364787000132, 27.065842590000059 ], [ 63.234982137000031, 26.941147359000084 ], [ 63.261647176000054, 26.871745911000019 ], [ 63.189558553000097, 26.846011048000022 ], [ 63.174314006000031, 26.685038961000075 ], [ 63.163772013000084, 26.645093078000045 ], [ 63.141344441000115, 26.625404359000086 ], [ 63.098039591000031, 26.63837514300009 ], [ 62.753564494000045, 26.644162903000066 ], [ 62.701939738000078, 26.604010315000082 ], [ 62.640599813000051, 26.605147197000079 ], [ 62.595331259000034, 26.580704244000046 ], [ 62.418494507000105, 26.562307435000051 ], [ 62.396687053000051, 26.539053039000024 ], [ 62.355862671000068, 26.536624248000052 ], [ 62.291990601000123, 26.501225891000033 ], [ 62.297881714000084, 26.47404408800007 ], [ 62.248995809000121, 26.416528219000028 ], [ 62.265118856000129, 26.360976054000034 ], [ 62.243414755000117, 26.35064076700003 ], [ 62.123835490000033, 26.373998515000082 ], [ 62.094173218000094, 26.314829000000103 ], [ 61.832948853000062, 26.225377095000098 ], [ 61.809901164000053, 26.167447815000045 ], [ 61.754504029000088, 25.819975485000057 ], [ 61.739311157000031, 25.803283997 ], [ 61.681433553000033, 25.795480855000093 ], [ 61.660349569000118, 25.769177552000045 ], [ 61.67636926300014, 25.692799785000076 ], [ 61.673475383000039, 25.658279928000113 ], [ 61.643192993000127, 25.613321432000092 ], [ 61.620041951000132, 25.285486145000036 ], [ 61.588226759000065, 25.202093817000048 ], [ 61.554453972000033, 25.254095770000049 ], [ 61.537282748000052, 25.220363674000055 ], [ 61.558360222000033, 25.200506903000075 ], [ 61.504242384000065, 25.208807684000078 ], [ 61.482595248000052, 25.19367096600007 ], [ 61.524180535000085, 25.173163153000075 ], [ 61.48951256600003, 25.11859772300005 ], [ 61.420583530000044, 25.096869208000044 ], [ 61.435069207000083, 25.087713934000078 ], [ 61.411716503000036, 25.059408165000036 ], [ 61.185068238000042, 25.123249171000055 ], [ 61.170268609000061, 25.164440118000073 ], [ 61.03060957100007, 25.209784247000073 ], [ 60.633474155000044, 25.274969794000071 ], [ 60.616953972000033, 25.283189195000091 ], [ 60.632334832000083, 25.296087958000044 ], [ 60.608164910000085, 25.32758209800005 ], [ 60.601573113000086, 25.405951239000046 ], [ 60.549652540000068, 25.446926174000055 ], [ 60.445648634000065, 25.428168036000045 ], [ 60.395274285000085, 25.377875067000048 ], [ 60.40202884200005, 25.344671942000048 ], [ 60.437673373000052, 25.333929755000042 ], [ 60.467245869000067, 25.29027590600009 ], [ 60.362559441000087, 25.330552476000037 ], [ 60.319223345000069, 25.329851431000066 ], [ 60.290293816000087, 25.351304429000038 ], [ 60.303965691000087, 25.371161200000074 ], [ 60.271250847000033, 25.379584052000041 ], [ 60.201508009000065, 25.371161200000074 ], [ 60.192556186000047, 25.356146552000041 ], [ 60.215973770000062, 25.338280241000064 ], [ 60.209209550000082, 25.319688555000084 ], [ 60.116709832000083, 25.339829820000091 ], [ 60.082038193000074, 25.365949817000057 ], [ 59.940822838000031, 25.354911352000045 ], [ 59.903805956000042, 25.32986334900005 ], [ 59.77487302600008, 25.389868583000066 ], [ 59.61399704300004, 25.38377666000008 ], [ 59.53798983300004, 25.399749989000043 ], [ 59.45390175600005, 25.461607493000088 ], [ 59.251068556000064, 25.430731512000079 ], [ 59.246750929711595, 25.454518948090936 ], [ 59.273002556622657, 25.46485423403567 ], [ 59.276206495733163, 25.495989284877567 ], [ 59.160761345759454, 25.638228665020847 ], [ 59.108568150299845, 25.668976142235181 ], [ 59.070947706871152, 25.752898667739316 ], [ 58.832202589677763, 25.929451199413279 ], [ 58.833029412877067, 25.979577338223578 ], [ 58.882845493324851, 26.05396556256062 ], [ 58.888219841872171, 26.152719225212081 ], [ 58.913954705745027, 26.19486135556707 ], [ 58.912197706558857, 26.227495022277424 ], [ 58.947027622027122, 26.286638699216553 ], [ 58.885222609235996, 26.419989732440172 ], [ 58.94217003831659, 26.500243231739717 ], [ 58.94123986232978, 26.534478868005351 ], [ 58.892974073694518, 26.583545641418198 ], [ 58.949404737938266, 26.702582302331393 ], [ 58.896694776742549, 26.79826121708146 ], [ 58.820627069383704, 26.876602688463265 ], [ 58.775255160597169, 27.130333971535549 ], [ 58.774945103133973, 27.229449368493533 ], [ 58.890080193845847, 27.630794379357098 ], [ 58.903309361437834, 27.745283514922278 ], [ 58.896591423955044, 28.091722316731534 ], [ 59.011933221141192, 28.224685777226796 ], [ 59.04293908077392, 28.315171210582889 ], [ 59.007385694893856, 28.365891629495081 ], [ 58.925220167676571, 28.420849514493455 ], [ 58.888013137196481, 28.471440741297158 ], [ 59.059578892152103, 28.532599798941533 ], [ 59.292226190386373, 28.651662299175769 ], [ 59.366743605033321, 28.710857652058962 ], [ 59.357958611800484, 28.786692817219716 ], [ 59.328606397667102, 28.840591335921374 ], [ 59.312896763175047, 28.989083563755457 ], [ 59.327262811429591, 29.053575750820244 ], [ 59.411081984146222, 29.165506904220251 ], [ 59.441777785416434, 29.26451894839073 ], [ 59.44456831157828, 29.351748765792877 ], [ 59.410048456271227, 29.563002020826559 ], [ 59.370154249718837, 29.650748603065551 ], [ 59.301321241981725, 29.698445950020584 ], [ 59.310312940789572, 29.781541653224679 ], [ 59.515365024975893, 30.60660757098259 ], [ 60.297126092395217, 30.802822984193369 ], [ 60.351593051877785, 30.794451402110496 ], [ 60.409677361620936, 30.746650702368015 ], [ 60.502281529369043, 30.724714056808239 ], [ 60.625478142901954, 30.6465534534791 ], [ 60.782987908864868, 30.453025214541981 ], [ 60.864843377719694, 30.392357083312731 ], [ 61.034755487175971, 30.408066717804786 ], [ 61.052118768066691, 30.460001533543902 ], [ 61.001269158844593, 30.654175726728397 ], [ 60.997135043747221, 30.730372626195731 ], [ 61.018012323010282, 30.99167450657319 ], [ 61.065347934759359, 31.138409736120423 ], [ 61.129426710674124, 31.270287990997986 ], [ 61.143275994991143, 31.390745755212436 ], [ 61.125148649000096, 31.448887156000083 ], [ 61.606258629632009, 31.388741287780192 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-06", "NAME_1": "Bushehr" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.678802931000064, 27.322373765000066 ], [ 52.601328972000033, 27.352932033000059 ], [ 52.579112175000034, 27.392767645000049 ], [ 52.605235222000033, 27.412054755000042 ], [ 52.666514519000032, 27.415350653000075 ], [ 52.678965691000087, 27.425279039000088 ], [ 52.670095248000052, 27.448635158000059 ], [ 52.598399285000085, 27.485825914000088 ], [ 52.567637566000087, 27.540716864000046 ], [ 52.459646030000044, 27.632635809000078 ], [ 52.244883660000085, 27.681382554000038 ], [ 52.08920332100007, 27.795396226000037 ], [ 52.011241082000083, 27.832709052000041 ], [ 51.894297722000033, 27.830877997000073 ], [ 51.859629754000082, 27.845892645000049 ], [ 51.683442878000051, 27.830580873000088 ], [ 51.585134311000047, 27.849310614000046 ], [ 51.570323113000086, 27.877630927000041 ], [ 51.496423785000047, 27.893040839000037 ], [ 51.428156011000056, 27.961147005000043 ], [ 51.420405207000044, 27.933200948000035 ], [ 51.399875502000043, 27.931713147000039 ], [ 51.345221635000087, 28.052668550000078 ], [ 51.269759278000038, 28.140453578000063 ], [ 51.285329623000052, 28.240912177000041 ], [ 51.141856316000087, 28.400783596000053 ], [ 51.080739780000044, 28.53392161700009 ], [ 51.058848504000082, 28.735907294000071 ], [ 51.010915561000047, 28.79913971600007 ], [ 50.978688998000052, 28.816636460000041 ], [ 50.876149936000047, 28.832017320000091 ], [ 50.804860873000052, 28.933579820000091 ], [ 50.802582227000073, 28.985825914000088 ], [ 50.823252800000034, 28.996649481000077 ], [ 50.888682488000086, 28.941392320000091 ], [ 50.899261915000068, 28.949448960000041 ], [ 50.894867384000065, 28.976141669000071 ], [ 50.928965691000087, 29.009670315000051 ], [ 50.929942254000082, 29.054632880000042 ], [ 50.920176629000082, 29.069037177000041 ], [ 50.90170332100007, 29.064886786000045 ], [ 50.87435957100007, 29.113267320000091 ], [ 50.850840691000087, 29.105454820000091 ], [ 50.840342644000032, 29.140611070000091 ], [ 50.738291863000086, 29.14008209800005 ], [ 50.693695509000065, 29.123439846000053 ], [ 50.643809441000087, 29.143459377000056 ], [ 50.635752800000034, 29.207709052000041 ], [ 50.667491082000083, 29.25726959800005 ], [ 50.682627800000034, 29.243068752000056 ], [ 50.689463738000086, 29.290838934000078 ], [ 50.66146894600007, 29.318793036000045 ], [ 50.655284050000034, 29.449123440000051 ], [ 50.607432488000086, 29.499497789000088 ], [ 50.606944207000083, 29.469631252000056 ], [ 50.456065300000034, 29.634100653000075 ], [ 50.396983269000032, 29.654730536000045 ], [ 50.24382571700005, 29.866848049000055 ], [ 50.144867384000065, 29.938055731000077 ], [ 50.133962436000047, 29.983547268000052 ], [ 50.153330925000034, 29.991034247000073 ], [ 50.133962436000047, 30.004055080000057 ], [ 50.144786004000082, 30.037909247000073 ], [ 50.121836785000085, 30.094549872000073 ], [ 50.127696160000085, 30.120672919000071 ], [ 50.050584278641509, 30.207357895950111 ], [ 50.114905225795496, 30.235028185402427 ], [ 50.217844680387657, 30.249988511960225 ], [ 50.275515578081411, 30.225752264855146 ], [ 50.429821404933875, 30.218801785174207 ], [ 50.54671349483192, 30.182395738572438 ], [ 50.601490512677003, 30.144826971987129 ], [ 50.601490512677003, 30.093486436349963 ], [ 50.628258905324174, 30.021216946404934 ], [ 50.678591749709483, 29.977757066435458 ], [ 50.739569940200568, 29.869908352188702 ], [ 50.796620721169347, 29.850943101742757 ], [ 51.017589146321995, 29.836551215066493 ], [ 51.154841749746936, 29.798026434971973 ], [ 51.221814406409692, 29.733172511801968 ], [ 51.346147902403743, 29.528533840564251 ], [ 51.410536736681024, 29.469519354834347 ], [ 51.490325147987164, 29.443784490961491 ], [ 51.578795199738636, 29.372781073787507 ], [ 52.027656691303207, 28.632412827889652 ], [ 52.050911085578093, 28.542340807482276 ], [ 52.222373487746211, 28.140892442032566 ], [ 52.299991488716216, 28.107871201694593 ], [ 52.375335728361165, 28.030124010414738 ], [ 52.510934686286703, 27.761380723941215 ], [ 52.642916293951771, 27.617177639036811 ], [ 52.770970492993854, 27.509949042414348 ], [ 52.970854933308487, 27.382024034581491 ], [ 52.914114210702223, 27.355514024352715 ], [ 52.725495233218396, 27.363808092069746 ], [ 52.700793898119855, 27.356340847552076 ], [ 52.678802931000064, 27.322373765000066 ] ] ], [ [ [ 50.305817485000034, 29.271275468000056 ], [ 50.334650621000037, 29.258660858000042 ], [ 50.326426629000082, 29.208929755000042 ], [ 50.30662970700007, 29.215445750000072 ], [ 50.283267078000051, 29.268939366000041 ], [ 50.305817485000034, 29.271275468000056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-23", "NAME_1": "Hormozgan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.251068556000064, 25.430731512000079 ], [ 59.117198113000086, 25.394191799000055 ], [ 59.024180535000085, 25.403225002000056 ], [ 58.994313998000052, 25.419623114000046 ], [ 58.92351321700005, 25.513373114000046 ], [ 58.840342644000032, 25.532904364000046 ], [ 58.825205925000034, 25.560370184000078 ], [ 58.546397332000083, 25.593654690000051 ], [ 58.430511915000068, 25.587958075000074 ], [ 58.41179446700005, 25.59601471600007 ], [ 58.418955925000034, 25.612005927000041 ], [ 58.357595248000052, 25.604559637000079 ], [ 58.260752800000034, 25.565741278000075 ], [ 58.248301629000082, 25.573879299000055 ], [ 58.207286004000082, 25.549302476000037 ], [ 58.137868686000047, 25.549790757000039 ], [ 58.04623457100007, 25.57493724200009 ], [ 57.963226759000065, 25.693182684000078 ], [ 57.884043816000087, 25.691636460000041 ], [ 57.771739129000082, 25.635565497000073 ], [ 57.783050977000073, 25.699774481000077 ], [ 57.755625847000033, 25.742743231000077 ], [ 57.520681186000047, 25.743557033000059 ], [ 57.459971550000034, 25.769029039000088 ], [ 57.311534050000034, 25.784125067000048 ], [ 57.25359134200005, 25.958970445000091 ], [ 57.219737175000034, 25.995021877000056 ], [ 57.19857832100007, 25.995021877000056 ], [ 57.166758660000085, 26.082993882000039 ], [ 57.170909050000034, 26.115627346000053 ], [ 57.212901238000086, 26.166245835000041 ], [ 57.133067254000082, 26.263739325000074 ], [ 57.118174675000034, 26.364325262000079 ], [ 57.080332879000082, 26.415350653000075 ], [ 57.090017123000052, 26.618801174000055 ], [ 57.024912957000083, 26.850978908000059 ], [ 56.965179884000065, 26.911118882000039 ], [ 56.96648196700005, 26.927232164000088 ], [ 56.925547722000033, 26.955145575000074 ], [ 56.973317905000044, 26.968817450000074 ], [ 56.973317905000044, 27.002997137000079 ], [ 56.932383660000085, 26.989325262000079 ], [ 56.890879754000082, 27.01703522300005 ], [ 56.865489129000082, 27.011867580000057 ], [ 56.844086134000065, 27.040228583000044 ], [ 56.884613477000073, 27.078070380000042 ], [ 56.83139082100007, 27.096136786000045 ], [ 56.808848504000082, 27.139553127000056 ], [ 56.757334832000083, 27.125230210000041 ], [ 56.716075066000087, 27.153143622000073 ], [ 56.582855665000068, 27.153143622000073 ], [ 56.353037957000083, 27.201605536000045 ], [ 56.123708530000044, 27.160630601000037 ], [ 56.093516472000033, 27.125555731000077 ], [ 55.939300977000073, 27.026678778000075 ], [ 55.763682488000086, 26.996161200000074 ], [ 55.665863477000073, 26.995428778000075 ], [ 55.554453972000033, 26.899888414000088 ], [ 55.582367384000065, 26.913560289000088 ], [ 55.580414259000065, 26.859116929000038 ], [ 55.521739129000082, 26.784572658000059 ], [ 55.442230665000068, 26.759914455000057 ], [ 55.27084394600007, 26.792547919000071 ], [ 55.232920769000032, 26.776434637000079 ], [ 55.205902540000068, 26.726385809000078 ], [ 55.103282097000033, 26.701320705000057 ], [ 54.930674675000034, 26.572658596000053 ], [ 54.791026238000086, 26.495835679000038 ], [ 54.74968509200005, 26.508937893000052 ], [ 54.619965040000068, 26.508246161000045 ], [ 54.561289910000085, 26.584662177000041 ], [ 54.425629102000073, 26.589341539000088 ], [ 54.389414910000085, 26.605129299000055 ], [ 54.337738477000073, 26.693426825000074 ], [ 54.308116082000083, 26.714992580000057 ], [ 54.150401238000086, 26.708197333000044 ], [ 54.015798373000052, 26.74945709800005 ], [ 53.842784050000034, 26.702093817000048 ], [ 53.716075066000087, 26.708563544000071 ], [ 53.49154707100007, 26.854315497000073 ], [ 53.444102410000085, 26.975653387000079 ], [ 53.02865644600007, 27.104071356000077 ], [ 52.992198113000086, 27.146958726000037 ], [ 52.932627800000034, 27.160345770000049 ], [ 52.914724155000044, 27.191961981000077 ], [ 52.848317905000044, 27.215277411000045 ], [ 52.767751498000052, 27.279730536000045 ], [ 52.678802931000064, 27.322373765000066 ], [ 52.700793898119855, 27.356340847552076 ], [ 52.725495233218396, 27.363808092069746 ], [ 52.914114210702223, 27.355514024352715 ], [ 52.970854933308487, 27.382024034581491 ], [ 52.998243442680689, 27.335024318717331 ], [ 53.071520623877689, 27.273064277194635 ], [ 53.294556104780384, 27.25539093704208 ], [ 53.432738885091453, 27.173354601033964 ], [ 53.548907504577642, 27.187746486810909 ], [ 53.854831984008854, 27.139377346287461 ], [ 53.958908319263514, 27.188728338741839 ], [ 53.986090122161386, 27.227744046150804 ], [ 53.974824660229842, 27.268103338897959 ], [ 54.010688103573102, 27.402229519376817 ], [ 54.054923129898498, 27.450366115903535 ], [ 54.158379348428184, 27.482198797836247 ], [ 54.425133090819486, 27.503954576242677 ], [ 54.533240186585317, 27.482198797836247 ], [ 54.674110142069367, 27.519870917209062 ], [ 54.940760531673163, 27.486436265721068 ], [ 55.06561079340338, 27.520336005202466 ], [ 55.123488396672144, 27.569170233719319 ], [ 55.156354608278548, 27.657872830366784 ], [ 55.195215285157246, 27.712779039421093 ], [ 55.331744419069651, 27.77783966726679 ], [ 55.51116499217062, 27.807656969393577 ], [ 55.55126590429802, 27.846569322216453 ], [ 55.557260369570372, 27.903206692035212 ], [ 55.509511345771955, 27.972246406246654 ], [ 55.424968702643469, 28.033482978256814 ], [ 55.420214470821122, 28.065729072238867 ], [ 55.475508254402371, 28.270471096264089 ], [ 55.487393833058945, 28.382815659914741 ], [ 55.460832146886048, 28.445835069532791 ], [ 55.160075311326523, 28.702098497247846 ], [ 55.154907668354156, 28.749408271474522 ], [ 55.187670526273735, 28.770311388259927 ], [ 55.187360467011899, 28.798449205566385 ], [ 55.129689569318145, 28.950739650814228 ], [ 55.214645623596653, 28.945261949479345 ], [ 55.395306431046947, 28.900303452742151 ], [ 55.484810011572733, 28.83883433673526 ], [ 55.528424920273835, 28.788734036346682 ], [ 55.617101677600317, 28.74222524689759 ], [ 55.66826134608425, 28.754007472766659 ], [ 55.868352491973894, 28.887048448527082 ], [ 56.015837030354646, 28.938621528160979 ], [ 56.044155714814337, 28.902163804715769 ], [ 56.063069289316218, 28.52138601295411 ], [ 56.038367954217676, 28.447282009457126 ], [ 56.059245232581418, 28.349536038057693 ], [ 56.148645461219019, 28.247940172401002 ], [ 56.23442833779751, 28.178254503042865 ], [ 56.337264438702846, 28.123374132410277 ], [ 56.456223586149576, 28.107225247447218 ], [ 56.520199009276837, 28.117353826917565 ], [ 56.637917922374186, 28.168668525032388 ], [ 56.822712844022533, 28.324395453387467 ], [ 56.87697309793009, 28.322612615779576 ], [ 56.981359490647947, 28.277550768053459 ], [ 56.980325961873632, 28.159185898910096 ], [ 57.016809522841186, 28.003769028917532 ], [ 57.051122674371925, 27.967750555943383 ], [ 57.13390831921356, 27.93917348906524 ], [ 57.287904086804133, 27.748616645241952 ], [ 57.29462202338766, 27.698412991166606 ], [ 57.249250116399708, 27.646994941163598 ], [ 57.298962844059986, 27.605757148373698 ], [ 57.356427036178729, 27.478271389213205 ], [ 57.387742954173973, 27.104030666881727 ], [ 57.408000115812683, 27.046127224291922 ], [ 57.784721306842812, 26.85510529247523 ], [ 57.815003696963004, 26.846888740023303 ], [ 57.927038202251197, 26.940991522740546 ], [ 57.992873975553493, 26.939544582816211 ], [ 58.136534458098708, 26.846475327973963 ], [ 58.195238884566834, 26.785755519901329 ], [ 58.223867629187737, 26.730332546010175 ], [ 58.215392694317359, 26.71118642841094 ], [ 58.131056755864563, 26.746352241562704 ], [ 58.155551385388094, 26.636875719338946 ], [ 58.11793094285872, 26.569231269107775 ], [ 58.100464309180495, 26.316223456447347 ], [ 58.069871860697788, 26.217521471538646 ], [ 58.202576938774655, 26.225893052722199 ], [ 58.284639113204491, 26.21276723881698 ], [ 58.373315871430293, 26.23188751889387 ], [ 58.527931755745897, 26.189538682963814 ], [ 58.51935346898739, 26.140936998443692 ], [ 58.549325798946427, 26.060683499144147 ], [ 58.683064405797666, 26.055464179328396 ], [ 58.741768833165111, 26.089932358691385 ], [ 58.807811313841057, 26.076393134535522 ], [ 58.863105095623609, 26.01024730107207 ], [ 58.833029412877067, 25.979577338223578 ], [ 58.832202589677763, 25.929451199413279 ], [ 59.070947706871152, 25.752898667739316 ], [ 59.108568150299845, 25.668976142235181 ], [ 59.160761345759454, 25.638228665020847 ], [ 59.276206495733163, 25.495989284877567 ], [ 59.273002556622657, 25.46485423403567 ], [ 59.246750929711595, 25.454518948090936 ], [ 59.251068556000064, 25.430731512000079 ] ] ], [ [ [ 54.526377800000034, 26.309637762000079 ], [ 54.547373894000032, 26.290432033000059 ], [ 54.521006707000083, 26.250962632000039 ], [ 54.492198113000086, 26.265570380000042 ], [ 54.488129102000073, 26.298081773000035 ], [ 54.506846550000034, 26.321234442000048 ], [ 54.526377800000034, 26.309637762000079 ] ] ], [ [ [ 54.036875847000033, 26.488430080000057 ], [ 53.955414259000065, 26.492580471000053 ], [ 53.902842644000032, 26.536200262000079 ], [ 53.945485873000052, 26.56509023600006 ], [ 54.018809441000087, 26.555568752000056 ], [ 54.05046634200005, 26.517767645000049 ], [ 54.036875847000033, 26.488430080000057 ] ] ], [ [ [ 53.317149285000085, 26.799994208000044 ], [ 53.222829623000052, 26.79954661700009 ], [ 53.149424675000034, 26.847886460000041 ], [ 53.178070509000065, 26.85687897300005 ], [ 53.337412957000083, 26.828680731000077 ], [ 53.382009311000047, 26.803127346000053 ], [ 53.317149285000085, 26.799994208000044 ] ] ], [ [ [ 56.322276238000086, 26.834418036000045 ], [ 56.34115644600007, 26.879339911000045 ], [ 56.404144727000073, 26.893052476000037 ], [ 56.409190300000034, 26.862250067000048 ], [ 56.379161004000082, 26.838690497000073 ], [ 56.322276238000086, 26.834418036000045 ] ] ], [ [ [ 56.212412957000083, 27.002997137000079 ], [ 56.257660352000073, 26.988714911000045 ], [ 56.287445509000065, 26.955145575000074 ], [ 56.193532748000052, 26.92454661700009 ], [ 56.080821160000085, 26.785345770000049 ], [ 55.947032097000033, 26.696275132000039 ], [ 55.87663821700005, 26.74290599200009 ], [ 55.772715691000087, 26.688381252000056 ], [ 55.685557488000086, 26.690497137000079 ], [ 55.502940300000034, 26.594875393000052 ], [ 55.290537957000083, 26.548488674000055 ], [ 55.273773634000065, 26.649807033000059 ], [ 55.284678582000083, 26.660223700000074 ], [ 55.351898634000065, 26.647447007000039 ], [ 55.574229363000086, 26.720689195000091 ], [ 55.640391472000033, 26.760565497000073 ], [ 55.774180535000085, 26.796942450000074 ], [ 55.781016472000033, 26.889634507000039 ], [ 55.732595248000052, 26.940904039000088 ], [ 55.757985873000052, 26.954046942000048 ], [ 55.897715691000087, 26.906805731000077 ], [ 56.041026238000086, 26.975653387000079 ], [ 56.212412957000083, 27.002997137000079 ] ] ], [ [ [ 56.472992384000065, 27.106024481000077 ], [ 56.504649285000085, 27.088934637000079 ], [ 56.504730665000068, 27.061672268000052 ], [ 56.46615644600007, 27.043931382000039 ], [ 56.434580925000034, 27.054836330000057 ], [ 56.43685957100007, 27.080023505000042 ], [ 56.472992384000065, 27.106024481000077 ] ] ], [ [ [ 54.54656009200005, 25.92649974200009 ], [ 54.553233269000032, 25.89984772300005 ], [ 54.513682488000086, 25.90265534100007 ], [ 54.509776238000086, 25.913763739000046 ], [ 54.54656009200005, 25.92649974200009 ] ] ], [ [ [ 55.894297722000033, 26.679429429000038 ], [ 55.90398196700005, 26.64524974200009 ], [ 55.889659050000034, 26.62376536700009 ], [ 55.85320071700005, 26.621039130000042 ], [ 55.868337436000047, 26.666449286000045 ], [ 55.894297722000033, 26.679429429000038 ] ] ], [ [ [ 53.639414910000085, 26.688788153000075 ], [ 53.659190300000034, 26.668850002000056 ], [ 53.646250847000033, 26.657171942000048 ], [ 53.60124759200005, 26.679592190000051 ], [ 53.639414910000085, 26.688788153000075 ] ] ], [ [ [ 55.048675977000187, 25.885768947000088 ], [ 55.054372592000163, 25.86461009300001 ], [ 55.018402540000125, 25.859605210000097 ], [ 55.012054884000179, 25.881618557000081 ], [ 55.048675977000187, 25.885768947000088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-21", "NAME_1": "Mazandaran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.576303083431441, 36.989168601212072 ], [ 51.088633660000085, 36.737005927000041 ], [ 51.909027540000068, 36.582709052000041 ], [ 52.094086134000065, 36.602525132000039 ], [ 52.258555535000085, 36.650946356000077 ], [ 52.779307488000086, 36.740383205000057 ], [ 53.115733269000032, 36.822251695000034 ], [ 53.447601759000065, 36.881903387000079 ], [ 53.885915561000047, 36.905829169000071 ], [ 53.957774285000085, 36.919623114000046 ], [ 54.006521030000044, 36.952622789000088 ], [ 54.004242384000065, 36.914618231000077 ], [ 53.947601759000065, 36.89874909100007 ], [ 53.818207227000073, 36.875230210000041 ], [ 53.609141472000033, 36.876898505000042 ], [ 53.663828972000033, 36.863226630000042 ], [ 53.635996941000087, 36.857001044000071 ], [ 53.660166863000086, 36.831203518000052 ], [ 53.70538068630556, 36.816284109831756 ], [ 53.752822707202142, 36.72995473882014 ], [ 53.973584425880517, 36.622726142197678 ], [ 54.12013878827446, 36.484775905883339 ], [ 54.019369744917753, 36.460462145311737 ], [ 53.936170688926154, 36.421033026752752 ], [ 53.861136509442304, 36.360313219579382 ], [ 53.825686476349802, 36.304761054479059 ], [ 53.787652621771031, 36.163761909584423 ], [ 53.645749139311306, 36.052993476167956 ], [ 53.586631300793897, 35.973515123224331 ], [ 53.472426385169513, 35.911322536805585 ], [ 53.345819126051822, 35.885535996988665 ], [ 53.313573032069769, 35.900237942027388 ], [ 53.198127882995379, 35.856106269388818 ], [ 53.0347270036483, 35.831094875927761 ], [ 52.944810011972436, 35.881556912421559 ], [ 52.901401807947025, 35.889695950507701 ], [ 52.816342400881069, 35.86825023046373 ], [ 52.740274692622961, 35.881014309162993 ], [ 52.625863072322886, 35.931347154447622 ], [ 52.398486768949226, 35.976202298397311 ], [ 52.306812778986512, 35.917394518242418 ], [ 52.177001580758315, 35.789960435925366 ], [ 52.108168573021203, 35.767171128744565 ], [ 52.029206984015048, 35.77091767021426 ], [ 51.950245395908269, 35.799804796354238 ], [ 51.856504348396925, 35.921554469962814 ], [ 51.754391717004125, 36.010980536122815 ], [ 51.618275995141062, 36.054052843363991 ], [ 51.465003697062969, 36.064698188570503 ], [ 51.356896600397761, 36.116271267305137 ], [ 51.291991001283634, 36.178102118517927 ], [ 51.127970005211523, 36.20745433175199 ], [ 51.086008742009824, 36.222259630477538 ], [ 51.029888137027854, 36.27179149008515 ], [ 50.966222772263109, 36.292203681354806 ], [ 50.800961541841673, 36.318662013840822 ], [ 50.788352491873979, 36.365790920914264 ], [ 50.571104770668626, 36.489504299283965 ], [ 50.304557732953015, 36.670268460421084 ], [ 50.356440870949427, 36.697372748053851 ], [ 50.417729119803028, 36.785351874289518 ], [ 50.439639926941027, 36.868240871918658 ], [ 50.531934035427355, 36.922501125826273 ], [ 50.576303083431441, 36.989168601212072 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-12", "NAME_1": "Semnan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.345819126051822, 35.885535996988665 ], [ 53.472426385169513, 35.911322536805585 ], [ 53.586631300793897, 35.973515123224331 ], [ 53.645749139311306, 36.052993476167956 ], [ 53.787652621771031, 36.163761909584423 ], [ 53.825686476349802, 36.304761054479059 ], [ 53.861136509442304, 36.360313219579382 ], [ 53.936170688926154, 36.421033026752752 ], [ 54.019369744917753, 36.460462145311737 ], [ 54.12013878827446, 36.484775905883339 ], [ 54.394127232086078, 36.477437853474157 ], [ 54.463787062123174, 36.490124416908316 ], [ 54.604967075070419, 36.543609524459953 ], [ 54.836270786167802, 36.704374905477493 ], [ 55.011143833021436, 36.785093491871123 ], [ 55.096203240986767, 36.79312917716976 ], [ 55.453597447264372, 36.753880927562761 ], [ 55.504343702799645, 36.77287201643037 ], [ 55.537623324656693, 36.842015082529997 ], [ 55.557260369570372, 36.951465766332035 ], [ 55.640046014412007, 37.098536891764127 ], [ 55.82608117040968, 37.327230942953634 ], [ 55.867422315987085, 37.354361069907441 ], [ 56.018627557415812, 37.193854072207671 ], [ 56.08973432827662, 37.153753160080271 ], [ 56.129111769092844, 37.159256699836817 ], [ 56.177894321665576, 37.143056138929637 ], [ 56.167352329246569, 37.120034287752162 ], [ 56.083223098167423, 37.089674384165448 ], [ 56.08973432827662, 36.962007757851723 ], [ 56.067306756301718, 36.882141832179798 ], [ 56.204456007838473, 36.743829861558822 ], [ 56.317937453051002, 36.665410874911913 ], [ 56.374264763607925, 36.650373033089011 ], [ 56.519268833289971, 36.621795966210868 ], [ 56.691248000294934, 36.647014065246879 ], [ 56.763698358292572, 36.626576036454878 ], [ 56.788192986916783, 36.547898668288894 ], [ 56.761321242381428, 36.454596869449972 ], [ 56.720910271891512, 36.392404283031226 ], [ 56.706130811587684, 36.283470364066034 ], [ 56.724941034201322, 36.095936591300642 ], [ 56.757290480071561, 35.974936224726946 ], [ 56.784575636656257, 35.918970649375922 ], [ 57.021770461137862, 35.761512560256449 ], [ 57.087192824189458, 35.700353501712698 ], [ 57.071999952735609, 35.630409450835486 ], [ 56.85557905472956, 35.305829780220165 ], [ 56.500355258788147, 35.165941677566366 ], [ 56.37126753097175, 35.06922923404187 ], [ 56.210450474010145, 34.906060898691521 ], [ 55.850885858295669, 34.407254137268581 ], [ 55.741125116131172, 34.360331935770205 ], [ 55.484706658785228, 34.365163682857656 ], [ 55.375152622195742, 34.341909288582769 ], [ 55.341562941076859, 34.369194444268146 ], [ 55.28668257044427, 34.38410309488188 ], [ 52.900058220810195, 34.32495941794275 ], [ 52.422257928060901, 34.447690945280897 ], [ 52.08015994692397, 34.442084051837526 ], [ 51.982284784315311, 34.455416572217018 ], [ 51.788911574109818, 34.54197459605075 ], [ 51.866116163929803, 34.66646312077637 ], [ 51.893194614040169, 34.754002997440352 ], [ 51.886269972781008, 34.918359890296699 ], [ 51.916862420364396, 34.998587551174523 ], [ 51.968022087948953, 35.063725694285324 ], [ 51.980631137916646, 35.125246487135655 ], [ 51.822501255228701, 35.315260727700377 ], [ 51.814853142658365, 35.357842109425803 ], [ 51.853403762073924, 35.555452785717478 ], [ 51.870146926239613, 35.569818833971965 ], [ 51.922443475386046, 35.54684866053725 ], [ 51.982078077840981, 35.54431651499516 ], [ 52.21968631437187, 35.414221095926791 ], [ 52.29275678909454, 35.393628038403222 ], [ 52.674955682358814, 35.336189683806822 ], [ 52.888275994941182, 35.410190335415621 ], [ 53.047232699929111, 35.528374334707735 ], [ 53.079375441123659, 35.618136298551292 ], [ 53.0347270036483, 35.831094875927761 ], [ 53.198127882995379, 35.856106269388818 ], [ 53.313573032069769, 35.900237942027388 ], [ 53.345819126051822, 35.885535996988665 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-11", "NAME_1": "Zanjan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.882525669424069, 37.202794094172077 ], [ 49.033317498803513, 37.126054592345554 ], [ 49.186693149669111, 36.977433173302302 ], [ 49.24581098818652, 36.813076280445955 ], [ 49.164368931381034, 36.79062287004939 ], [ 49.055538364304027, 36.732538561205615 ], [ 49.014817336350973, 36.656780911309966 ], [ 49.035694613815338, 36.593425604907736 ], [ 49.089334750997921, 36.539656277415247 ], [ 49.154860466837022, 36.434003811027026 ], [ 49.234752231829987, 36.412403062251485 ], [ 49.299037713319763, 36.375454413290527 ], [ 49.3884379410581, 36.215412503584162 ], [ 49.4042509301363, 36.109269110780815 ], [ 49.381203241436424, 36.081983954196119 ], [ 49.198888787587464, 36.042089749442368 ], [ 49.097913038655804, 35.995891018355792 ], [ 49.036728142589709, 35.939615382843613 ], [ 49.032800733966667, 35.88886912730834 ], [ 48.94154015515403, 35.923156440417358 ], [ 48.876014439314872, 35.926747952256164 ], [ 48.785373976327946, 35.906335760986565 ], [ 48.729563429708492, 35.873056139129517 ], [ 48.59830529155596, 35.848716539236875 ], [ 48.60119917230395, 35.817607326816642 ], [ 48.728013136996651, 35.724796454392845 ], [ 48.802530551643599, 35.635783800282127 ], [ 48.766563754613571, 35.577415269698918 ], [ 48.690909458404747, 35.555814520923377 ], [ 48.519136996974794, 35.611521714755327 ], [ 48.30436974536741, 35.617490343404597 ], [ 48.25951460141772, 35.640202135320294 ], [ 48.178796014124714, 35.752934271699246 ], [ 47.903567335963771, 35.888972480095845 ], [ 47.889821405333578, 35.915534166268742 ], [ 47.945631951952976, 35.98509064441771 ], [ 47.967646111878537, 36.058316147871892 ], [ 47.967749464666042, 36.160041204737809 ], [ 47.948939242951667, 36.216497708302597 ], [ 47.927441847862951, 36.219546616882837 ], [ 47.94108442570564, 36.28781118383904 ], [ 47.90005333759143, 36.370648505524116 ], [ 47.865120070235037, 36.403411363443638 ], [ 47.361274855250372, 36.484181627580028 ], [ 47.332336053166273, 36.507694404273309 ], [ 47.193843215392064, 36.756826484254816 ], [ 47.187642042746063, 36.837700100279392 ], [ 47.206762322822897, 36.869067695118019 ], [ 47.358277621714819, 36.992471015125204 ], [ 47.400342237704081, 37.048333237688723 ], [ 47.620690545232435, 37.166568914723598 ], [ 47.935193312321474, 37.195740260804371 ], [ 48.334135369751493, 37.172873440157105 ], [ 48.484410435193411, 37.230285956331784 ], [ 48.525648227983311, 37.218297023988441 ], [ 48.600268996317084, 37.154786688854585 ], [ 48.631171502262987, 37.160006007771017 ], [ 48.656803013348338, 37.211992499454254 ], [ 48.676026646212733, 37.217935288782542 ], [ 48.740622186065025, 37.201398831091183 ], [ 48.815139600711973, 37.231474513837725 ], [ 48.882525669424069, 37.202794094172077 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-28", "NAME_1": "Qazvin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.24581098818652, 36.813076280445955 ], [ 49.340482211684673, 36.776618557000802 ], [ 49.354951612726722, 36.727861842849734 ], [ 49.472257113774731, 36.624328110853639 ], [ 49.805260044215629, 36.561954658180923 ], [ 49.854869419088402, 36.569060167492694 ], [ 50.085553012561434, 36.666289374055339 ], [ 50.168648715765585, 36.681017158415102 ], [ 50.304557732953015, 36.670268460421084 ], [ 50.571104770668626, 36.489504299283965 ], [ 50.788352491873979, 36.365790920914264 ], [ 50.800961541841673, 36.318662013840822 ], [ 50.563146599735774, 36.339177557897983 ], [ 50.449665155422565, 36.331684474958536 ], [ 50.420829706126028, 36.296389472396186 ], [ 50.508679641152469, 36.214043077126291 ], [ 50.579683058326452, 36.197015693019807 ], [ 50.625881789413029, 36.164769599037754 ], [ 50.534517856913567, 35.960802721368452 ], [ 50.500204706282148, 35.934266872717956 ], [ 50.297736443581982, 35.853961697474347 ], [ 50.242752720161889, 35.81083771428905 ], [ 50.2302470229817, 35.771925361466231 ], [ 50.238618605064573, 35.741022853721688 ], [ 50.285540805663629, 35.666014513558935 ], [ 50.196140577925291, 35.66671214554907 ], [ 50.016720004824322, 35.603124295150053 ], [ 49.687851190380115, 35.523232530157145 ], [ 49.645889927178359, 35.497936916755293 ], [ 49.615917596320003, 35.441557929354929 ], [ 49.440527784629523, 35.437630519832624 ], [ 49.273819614283752, 35.481116238223819 ], [ 49.117756789144494, 35.492717596939542 ], [ 49.049440545344851, 35.535376492131377 ], [ 49.079826288252548, 35.572996935560127 ], [ 49.041895785562019, 35.611960964327011 ], [ 48.958490024894729, 35.650847480526807 ], [ 48.849142693880196, 35.652397773238647 ], [ 48.802530551643599, 35.635783800282127 ], [ 48.728013136996651, 35.724796454392845 ], [ 48.60119917230395, 35.817607326816642 ], [ 48.59830529155596, 35.848716539236875 ], [ 48.729563429708492, 35.873056139129517 ], [ 48.785373976327946, 35.906335760986565 ], [ 48.876014439314872, 35.926747952256164 ], [ 48.94154015515403, 35.923156440417358 ], [ 49.032800733966667, 35.88886912730834 ], [ 49.036728142589709, 35.939615382843613 ], [ 49.097913038655804, 35.995891018355792 ], [ 49.198888787587464, 36.042089749442368 ], [ 49.381203241436424, 36.081983954196119 ], [ 49.4042509301363, 36.109269110780815 ], [ 49.3884379410581, 36.215412503584162 ], [ 49.299037713319763, 36.375454413290527 ], [ 49.234752231829987, 36.412403062251485 ], [ 49.154860466837022, 36.434003811027026 ], [ 49.089334750997921, 36.539656277415247 ], [ 49.035694613815338, 36.593425604907736 ], [ 49.014817336350973, 36.656780911309966 ], [ 49.055538364304027, 36.732538561205615 ], [ 49.164368931381034, 36.79062287004939 ], [ 49.24581098818652, 36.813076280445955 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-22", "NAME_1": "Markazi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.032988723350854, 34.105799668819657 ], [ 51.021103142895697, 34.046242580730507 ], [ 50.898940057237837, 33.814887192789683 ], [ 50.778740676341101, 33.797937323948304 ], [ 50.660091587256943, 33.726210436362521 ], [ 50.243166131311909, 33.634872341385403 ], [ 50.001527134269793, 33.498653265835515 ], [ 49.928870069797881, 33.535472724486624 ], [ 49.923289015675493, 33.593246974967883 ], [ 49.831201612764175, 33.667712714570087 ], [ 49.796164991720957, 33.646861273728803 ], [ 49.77001671669808, 33.588544419988978 ], [ 49.746555616848241, 33.575444444505479 ], [ 49.573542921968226, 33.680812690053585 ], [ 49.56403445832359, 33.704247952381081 ], [ 49.589665969408941, 33.789100653872083 ], [ 49.518559197648813, 33.872118841811073 ], [ 49.463678827016224, 33.886665758118227 ], [ 49.313920526411152, 33.826023464411321 ], [ 49.279814081354743, 33.73874197016579 ], [ 49.18090538907245, 33.67996002933188 ], [ 49.040448845637684, 33.696651515754809 ], [ 48.923453403851454, 33.74161001249206 ], [ 48.910430942733797, 33.762538966799866 ], [ 48.963967726229555, 33.885528876556407 ], [ 48.94805138526317, 33.935370795425854 ], [ 48.955286085784223, 33.967875270926982 ], [ 49.075175409217763, 34.066913154418501 ], [ 49.095845982006438, 34.110528062220283 ], [ 49.056055129140873, 34.284315904355481 ], [ 48.98505171106757, 34.399786891851534 ], [ 48.959936964819065, 34.568226222961812 ], [ 48.909500766746987, 34.58473684313077 ], [ 48.895031365704938, 34.612797146071387 ], [ 48.929964633960651, 34.624295151999661 ], [ 49.101633741703779, 34.601454168874795 ], [ 49.088197870335421, 34.748809516046322 ], [ 49.126645135164836, 34.819942125328794 ], [ 49.115379673233292, 34.878129787859393 ], [ 49.140391065795029, 34.909368191488852 ], [ 49.322395461281474, 34.917352199944048 ], [ 49.408798456383636, 34.904975693973086 ], [ 49.432879672958506, 34.876166083098212 ], [ 49.411692336232306, 34.839010728562243 ], [ 49.426885206786835, 34.793587144730907 ], [ 49.498715448059443, 34.730541896691136 ], [ 49.542433710447369, 34.727002060796451 ], [ 49.566928338172261, 34.767568060917256 ], [ 49.520109491259973, 34.924948634771681 ], [ 49.472050409099097, 34.971638292273326 ], [ 49.313507114361812, 35.016028347330348 ], [ 49.26854861762456, 35.034864407466387 ], [ 49.242917108337849, 35.067575589441901 ], [ 49.260900505953543, 35.08431875270827 ], [ 49.348750440980041, 35.101578680811429 ], [ 49.397119582402752, 35.147880763786191 ], [ 49.321051874144644, 35.321720282764829 ], [ 49.352471144028073, 35.354121406377772 ], [ 49.379549595037759, 35.355930081508006 ], [ 49.380789829387084, 35.311901759858301 ], [ 49.400220167826433, 35.288957423945931 ], [ 49.434429965670347, 35.283841457817005 ], [ 49.468122999576735, 35.314330553512207 ], [ 49.471947056311592, 35.352855332707406 ], [ 49.448279249987365, 35.378202622952642 ], [ 49.440527784629523, 35.437630519832624 ], [ 49.615917596320003, 35.441557929354929 ], [ 49.645889927178359, 35.497936916755293 ], [ 49.687851190380115, 35.523232530157145 ], [ 50.016720004824322, 35.603124295150053 ], [ 50.196140577925291, 35.66671214554907 ], [ 50.42951134567204, 35.652552801970216 ], [ 50.527696568441854, 35.62911754054204 ], [ 50.610378858697345, 35.574831448212763 ], [ 50.620714146440662, 35.60635407178296 ], [ 50.581956822349468, 35.650072333271567 ], [ 50.594772576992796, 35.677047431493747 ], [ 50.650996534762271, 35.676478989813518 ], [ 50.689753858853464, 35.639246120911707 ], [ 50.696471795436992, 35.550543525163562 ], [ 50.724893832684188, 35.555168564877363 ], [ 50.75269575410573, 35.601341458441539 ], [ 50.798687778717976, 35.604777939750079 ], [ 50.870828078353099, 35.517031358410463 ], [ 50.8712414886038, 35.4471906603207 ], [ 50.784735141613453, 35.218419093866089 ], [ 50.723033481609889, 35.107883206244935 ], [ 50.693681268375826, 34.915956935963777 ], [ 50.57151818181859, 34.878129787859393 ], [ 50.447598097873879, 34.862058417262119 ], [ 50.388170200094635, 34.829915676067571 ], [ 50.301147088267498, 34.809374295387386 ], [ 50.21112674290481, 34.819373684547884 ], [ 50.153972609148582, 34.781494858700739 ], [ 50.152629022011752, 34.716124172492528 ], [ 50.173402947587931, 34.692042955018337 ], [ 50.162757603280738, 34.671992498954637 ], [ 50.069429966020095, 34.628739325459492 ], [ 50.060024855162908, 34.577062893038089 ], [ 50.158313429820907, 34.492106838759582 ], [ 50.264146763362419, 34.466423651730111 ], [ 50.30869184805033, 34.408520209140306 ], [ 50.30445438016551, 34.367463284403016 ], [ 50.32874230321471, 34.317879747052643 ], [ 50.441190219652867, 34.224784653788731 ], [ 50.699262323397477, 34.20488922825524 ], [ 50.802201776190998, 34.157889513290399 ], [ 51.032988723350854, 34.105799668819657 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-04", "NAME_1": "Esfahan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.001527134269793, 33.498653265835515 ], [ 50.243166131311909, 33.634872341385403 ], [ 50.660091587256943, 33.726210436362521 ], [ 50.778740676341101, 33.797937323948304 ], [ 50.898940057237837, 33.814887192789683 ], [ 51.021103142895697, 34.046242580730507 ], [ 51.032988723350854, 34.105799668819657 ], [ 51.004670037991843, 34.11838288036563 ], [ 50.983689405941277, 34.161610216338374 ], [ 51.025547316355528, 34.387022813152271 ], [ 51.063064406097453, 34.418235379259329 ], [ 51.158355747219957, 34.452522691469028 ], [ 51.451671176683419, 34.469730942728802 ], [ 51.788911574109818, 34.54197459605075 ], [ 51.982284784315311, 34.455416572217018 ], [ 52.08015994692397, 34.442084051837526 ], [ 52.422257928060901, 34.447690945280897 ], [ 52.900058220810195, 34.32495941794275 ], [ 55.28668257044427, 34.38410309488188 ], [ 55.341562941076859, 34.369194444268146 ], [ 55.375152622195742, 34.341909288582769 ], [ 55.386418085026548, 33.665464788968791 ], [ 55.359856397954388, 33.594642238948154 ], [ 55.274590285313366, 33.470644639738339 ], [ 55.217229445082808, 33.437261664194409 ], [ 55.139404737638529, 33.430362861356969 ], [ 55.040082635105477, 33.385688585459832 ], [ 54.986339146034709, 33.329955553206219 ], [ 54.908204380227914, 33.088161526533213 ], [ 54.814670038291581, 32.970700994954939 ], [ 54.70904341032508, 32.920083929729572 ], [ 53.650710076708663, 32.61286754000497 ], [ 53.334036900182753, 32.67412995043685 ], [ 53.261069777348325, 32.672011216944099 ], [ 53.164641554664001, 32.640333563742956 ], [ 53.060358513834331, 32.576694037399875 ], [ 52.883728468693846, 32.505199692911503 ], [ 52.904915806319366, 32.164600328542292 ], [ 52.824093866238911, 31.813846544482431 ], [ 52.827091098875087, 31.744419257542688 ], [ 52.870706007576189, 31.597451483998782 ], [ 52.527677849553072, 31.51316722328869 ], [ 52.453367141380454, 31.512857164026855 ], [ 52.230641717041578, 31.555025132803621 ], [ 52.184132927592486, 31.590785224258696 ], [ 52.174727817634675, 31.683131007789768 ], [ 52.142171665290107, 31.712534897867215 ], [ 51.823328078428062, 31.537713527857022 ], [ 51.748293898044949, 31.528566799418229 ], [ 51.651245557736274, 31.548358873063535 ], [ 51.647524854688243, 31.518748277411078 ], [ 51.671089308224964, 31.471774399968581 ], [ 51.701681755808352, 31.444902656332488 ], [ 51.784984164587513, 31.425007229000414 ], [ 51.842655064079906, 31.387438463314425 ], [ 51.871593866163948, 31.320052395501648 ], [ 51.827048780576717, 31.14972687399603 ], [ 51.742402784660783, 30.9687301697615 ], [ 51.745296665408773, 30.79008474391577 ], [ 51.717184685624716, 30.782178249826359 ], [ 51.641116978265927, 30.772204698188261 ], [ 51.480920038029296, 30.875970974181087 ], [ 51.373226353413429, 30.974492091936497 ], [ 51.317725864257227, 31.097197780852866 ], [ 51.323513624853888, 31.276204941904552 ], [ 51.232253045141874, 31.534716295220846 ], [ 51.209928826853854, 31.64848196127349 ], [ 51.215819940238021, 31.702147935978417 ], [ 51.292197706858644, 31.738528144158522 ], [ 51.289923943735005, 31.768991401432004 ], [ 51.240004509600396, 31.832424221300755 ], [ 51.244241978384593, 31.863275051302537 ], [ 51.284239535925792, 31.886813666417538 ], [ 51.315865513182871, 31.939704494766602 ], [ 51.297365349831011, 32.043677477233757 ], [ 51.245275506259588, 32.124318549261602 ], [ 50.94927290162309, 32.327432766209199 ], [ 50.945035434637589, 32.478379625219532 ], [ 50.914649692629212, 32.536489773384289 ], [ 50.873205194264301, 32.556617742914511 ], [ 50.85346479656306, 32.626484280325258 ], [ 50.814294061321846, 32.655113023147464 ], [ 50.707840611055303, 32.616665758318049 ], [ 50.537205031187227, 32.607260647460919 ], [ 50.425687289836503, 32.545972397707942 ], [ 50.380212030061102, 32.537600816524446 ], [ 50.235207961278377, 32.543931179480353 ], [ 50.11304487472114, 32.615089627184545 ], [ 50.001320427795463, 32.588605455377433 ], [ 49.933107537682702, 32.59604686147344 ], [ 49.736116978116002, 32.506336575372643 ], [ 49.784279413064439, 32.608759264228638 ], [ 49.742834913800209, 32.6561982278659 ], [ 49.642582635280348, 32.688340969060448 ], [ 49.555559522553892, 32.683431708506532 ], [ 49.501609327908113, 32.707822984343238 ], [ 49.453240187384722, 32.808798733274898 ], [ 49.458717888719548, 32.842543443125408 ], [ 49.494994745011468, 32.875280463522529 ], [ 49.620568475354844, 32.926543483894648 ], [ 49.638551873869858, 33.045115057713701 ], [ 49.696016065988601, 33.101881618741686 ], [ 49.86871870340542, 33.149036363337473 ], [ 49.876366815076437, 33.190997626539229 ], [ 49.977445916795602, 33.361245631880365 ], [ 49.979099562294948, 33.45868154581666 ], [ 50.001527134269793, 33.498653265835515 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-08", "NAME_1": "Chahar Mahall and Bakhtiari" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.814294061321846, 32.655113023147464 ], [ 50.85346479656306, 32.626484280325258 ], [ 50.873205194264301, 32.556617742914511 ], [ 50.914649692629212, 32.536489773384289 ], [ 50.945035434637589, 32.478379625219532 ], [ 50.94927290162309, 32.327432766209199 ], [ 51.245275506259588, 32.124318549261602 ], [ 51.297365349831011, 32.043677477233757 ], [ 51.315865513182871, 31.939704494766602 ], [ 51.284239535925792, 31.886813666417538 ], [ 51.244241978384593, 31.863275051302537 ], [ 51.240004509600396, 31.832424221300755 ], [ 51.289923943735005, 31.768991401432004 ], [ 51.292197706858644, 31.738528144158522 ], [ 51.215819940238021, 31.702147935978417 ], [ 51.209928826853854, 31.64848196127349 ], [ 51.232253045141874, 31.534716295220846 ], [ 51.323513624853888, 31.276204941904552 ], [ 51.320826449680908, 31.198406073781257 ], [ 51.310801222998009, 31.164015407884733 ], [ 51.21178917792821, 31.155566311436132 ], [ 51.108022901935328, 31.093838813010791 ], [ 50.959091423630298, 31.106396186135044 ], [ 50.587124465321779, 31.38966054869536 ], [ 50.503718702855849, 31.390487371894665 ], [ 50.257532179566397, 31.487897447409239 ], [ 50.347552524929029, 31.604892890094789 ], [ 50.350343051990251, 31.65135000270044 ], [ 50.321197544331199, 31.706824653434978 ], [ 50.136402621783532, 31.89381582294186 ], [ 50.065812615759569, 32.063831285185643 ], [ 50.002043898207319, 32.090858059351945 ], [ 49.938378534341837, 32.147185369908868 ], [ 49.906959262659825, 32.21446808493414 ], [ 49.756270786067887, 32.416419582797459 ], [ 49.739941033951538, 32.476881008451755 ], [ 49.736116978116002, 32.506336575372643 ], [ 49.933107537682702, 32.59604686147344 ], [ 50.001320427795463, 32.588605455377433 ], [ 50.11304487472114, 32.615089627184545 ], [ 50.235207961278377, 32.543931179480353 ], [ 50.380212030061102, 32.537600816524446 ], [ 50.425687289836503, 32.545972397707942 ], [ 50.537205031187227, 32.607260647460919 ], [ 50.707840611055303, 32.616665758318049 ], [ 50.814294061321846, 32.655113023147464 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-18", "NAME_1": "Kohgiluyeh and Buyer Ahmad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.310801222998009, 31.164015407884733 ], [ 51.317725864257227, 31.097197780852866 ], [ 51.373226353413429, 30.974492091936497 ], [ 51.480920038029296, 30.875970974181087 ], [ 51.641116978265927, 30.772204698188261 ], [ 51.670882602649954, 30.64727692299158 ], [ 51.665818311565772, 30.58965770124189 ], [ 51.590990837656989, 30.54265798627705 ], [ 51.535593703086874, 30.52950633395011 ], [ 51.429450311182904, 30.553355007427626 ], [ 51.369919060616155, 30.597331651334628 ], [ 51.148330518738419, 30.66771495178358 ], [ 51.133447707445725, 30.652677109960621 ], [ 51.181300083132328, 30.492299303470077 ], [ 51.169621210050764, 30.448167629932129 ], [ 51.201453891983476, 30.39096181933246 ], [ 51.200317010421657, 30.339207872545273 ], [ 51.179129672796137, 30.300657254029034 ], [ 50.912169223930505, 30.165730088772534 ], [ 50.701949496771817, 30.168649807042925 ], [ 50.601490512677003, 30.144826971987129 ], [ 50.54671349483192, 30.182395738572438 ], [ 50.429821404933875, 30.218801785174207 ], [ 50.412664828718846, 30.375975654352942 ], [ 50.393957960691296, 30.442354030913748 ], [ 50.362021925971078, 30.473592434543207 ], [ 50.354993931025092, 30.52552724938306 ], [ 50.412768182405671, 30.642781074487004 ], [ 50.395611607089961, 30.695542710727523 ], [ 50.243889600824389, 30.774581814099406 ], [ 50.125343866326318, 30.885789496188295 ], [ 49.954811639245747, 30.86641083369301 ], [ 49.964630161252899, 31.008908596254685 ], [ 49.919051547790673, 31.150191961989435 ], [ 49.918224724591369, 31.20871552220359 ], [ 49.959979282218058, 31.270003770157871 ], [ 50.071083612418761, 31.319949041814823 ], [ 50.190869582165476, 31.411674710419504 ], [ 50.257532179566397, 31.487897447409239 ], [ 50.503718702855849, 31.390487371894665 ], [ 50.587124465321779, 31.38966054869536 ], [ 50.959091423630298, 31.106396186135044 ], [ 51.108022901935328, 31.093838813010791 ], [ 51.21178917792821, 31.155566311436132 ], [ 51.310801222998009, 31.164015407884733 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-14", "NAME_1": "Fars" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.142171665290107, 31.712534897867215 ], [ 52.174727817634675, 31.683131007789768 ], [ 52.184132927592486, 31.590785224258696 ], [ 52.230641717041578, 31.555025132803621 ], [ 52.453367141380454, 31.512857164026855 ], [ 52.527677849553072, 31.51316722328869 ], [ 52.870706007576189, 31.597451483998782 ], [ 53.125160760160952, 31.51394236874529 ], [ 53.276469354377184, 31.395086574985442 ], [ 53.404936964569231, 31.261502996865772 ], [ 53.638411086002804, 30.755151476559377 ], [ 53.80460249241105, 30.499068915098348 ], [ 53.964075962235825, 30.329983628841376 ], [ 54.007587518149421, 30.263191840231229 ], [ 54.043140904029485, 30.044161282317305 ], [ 54.071769646851692, 29.984268297443975 ], [ 54.227212355265976, 29.882879137362295 ], [ 54.430197381004291, 29.793220527205563 ], [ 54.457275832014034, 29.694415187710717 ], [ 54.549879998862821, 29.509310207699912 ], [ 54.595458612325046, 29.454584865798893 ], [ 54.640313755375473, 29.429728501968782 ], [ 54.869343703349216, 29.411280016359626 ], [ 54.927531365879815, 29.389679267584086 ], [ 55.187360467011899, 28.798449205566385 ], [ 55.187670526273735, 28.770311388259927 ], [ 55.154907668354156, 28.749408271474522 ], [ 55.160075311326523, 28.702098497247846 ], [ 55.460832146886048, 28.445835069532791 ], [ 55.487393833058945, 28.382815659914741 ], [ 55.475508254402371, 28.270471096264089 ], [ 55.420214470821122, 28.065729072238867 ], [ 55.424968702643469, 28.033482978256814 ], [ 55.509511345771955, 27.972246406246654 ], [ 55.557260369570372, 27.903206692035212 ], [ 55.534109328082991, 27.822100532013906 ], [ 55.481089307625439, 27.795874741725925 ], [ 55.331744419069651, 27.77783966726679 ], [ 55.195215285157246, 27.712779039421093 ], [ 55.156354608278548, 27.657872830366784 ], [ 55.123488396672144, 27.569170233719319 ], [ 55.06561079340338, 27.520336005202466 ], [ 54.940760531673163, 27.486436265721068 ], [ 54.674110142069367, 27.519870917209062 ], [ 54.533240186585317, 27.482198797836247 ], [ 54.425133090819486, 27.503954576242677 ], [ 54.158379348428184, 27.482198797836247 ], [ 54.054923129898498, 27.450366115903535 ], [ 54.010688103573102, 27.402229519376817 ], [ 53.974824660229842, 27.268103338897959 ], [ 53.986090122161386, 27.227744046150804 ], [ 53.958908319263514, 27.188728338741839 ], [ 53.854831984008854, 27.139377346287461 ], [ 53.548907504577642, 27.187746486810909 ], [ 53.432738885091453, 27.173354601033964 ], [ 53.294556104780384, 27.25539093704208 ], [ 53.071520623877689, 27.273064277194635 ], [ 52.998243442680689, 27.335024318717331 ], [ 52.970854933308487, 27.382024034581491 ], [ 52.770970492993854, 27.509949042414348 ], [ 52.642916293951771, 27.617177639036811 ], [ 52.510934686286703, 27.761380723941215 ], [ 52.375335728361165, 28.030124010414738 ], [ 52.299991488716216, 28.107871201694593 ], [ 52.222373487746211, 28.140892442032566 ], [ 52.197362095184531, 28.177298489533655 ], [ 52.027656691303207, 28.632412827889652 ], [ 51.578795199738636, 29.372781073787507 ], [ 51.490325147987164, 29.443784490961491 ], [ 51.410536736681024, 29.469519354834347 ], [ 51.346147902403743, 29.528533840564251 ], [ 51.221814406409692, 29.733172511801968 ], [ 51.154841749746936, 29.798026434971973 ], [ 51.017589146321995, 29.836551215066493 ], [ 50.796620721169347, 29.850943101742757 ], [ 50.739569940200568, 29.869908352188702 ], [ 50.678591749709483, 29.977757066435458 ], [ 50.628258905324174, 30.021216946404934 ], [ 50.601490512677003, 30.093486436349963 ], [ 50.601387159889498, 30.147229926320051 ], [ 50.701949496771817, 30.168649807042925 ], [ 50.912169223930505, 30.165730088772534 ], [ 51.179129672796137, 30.300657254029034 ], [ 51.200317010421657, 30.339207872545273 ], [ 51.201453891983476, 30.39096181933246 ], [ 51.169621210050764, 30.448167629932129 ], [ 51.181300083132328, 30.492299303470077 ], [ 51.133447707445725, 30.652677109960621 ], [ 51.148330518738419, 30.66771495178358 ], [ 51.369919060616155, 30.597331651334628 ], [ 51.429450311182904, 30.553355007427626 ], [ 51.535593703086874, 30.52950633395011 ], [ 51.590990837656989, 30.54265798627705 ], [ 51.665818311565772, 30.58965770124189 ], [ 51.670882602649954, 30.64727692299158 ], [ 51.641116978265927, 30.772204698188261 ], [ 51.745296665408773, 30.79008474391577 ], [ 51.742402784660783, 30.9687301697615 ], [ 51.827048780576717, 31.14972687399603 ], [ 51.871593866163948, 31.320052395501648 ], [ 51.842655064079906, 31.387438463314425 ], [ 51.784984164587513, 31.425007229000414 ], [ 51.701681755808352, 31.444902656332488 ], [ 51.671089308224964, 31.471774399968581 ], [ 51.647524854688243, 31.518748277411078 ], [ 51.651245557736274, 31.548358873063535 ], [ 51.748293898044949, 31.528566799418229 ], [ 51.823328078428062, 31.537713527857022 ], [ 52.142171665290107, 31.712534897867215 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-15", "NAME_1": "Kerman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.129689569318145, 28.950739650814228 ], [ 54.927531365879815, 29.389679267584086 ], [ 54.869343703349216, 29.411280016359626 ], [ 54.640313755375473, 29.429728501968782 ], [ 54.595458612325046, 29.454584865798893 ], [ 54.549879998862821, 29.509310207699912 ], [ 54.4299906763286, 29.773480130403698 ], [ 54.430197381004291, 29.793220527205563 ], [ 54.4843542821244, 29.817663478986333 ], [ 54.585226678268555, 29.828360501036286 ], [ 54.616749301838809, 29.847971707528245 ], [ 54.591221144440226, 29.973106187400617 ], [ 54.603830194407919, 30.297349962131022 ], [ 54.539441359231319, 30.350550848842602 ], [ 54.515566848231458, 30.450441393055826 ], [ 54.400638462195275, 30.675466417141422 ], [ 54.398054640709063, 30.725075792014195 ], [ 54.420275506209634, 30.797913722740077 ], [ 54.466474237296211, 30.873361314273211 ], [ 54.554427525110157, 30.957774767091792 ], [ 55.116460401726158, 31.043247586207144 ], [ 55.32637006962301, 31.024773261276948 ], [ 55.514989048006157, 31.046787421202509 ], [ 55.684487746312413, 31.110917873960716 ], [ 55.712289666834636, 31.495183823874356 ], [ 55.756834750623227, 31.576264146373262 ], [ 56.287758416617578, 31.815086777932436 ], [ 56.358451776328366, 31.879036363537352 ], [ 56.566397738564774, 31.978926906851257 ], [ 56.634093865639386, 32.049181016990303 ], [ 56.761631300743886, 32.03008657533519 ], [ 57.834744093764868, 31.637268175286067 ], [ 58.972865837788163, 31.197889308944411 ], [ 59.116319614758368, 31.10616364213837 ], [ 59.515365024975893, 30.60660757098259 ], [ 59.310312940789572, 29.781541653224679 ], [ 59.301321241981725, 29.698445950020584 ], [ 59.370154249718837, 29.650748603065551 ], [ 59.410048456271227, 29.563002020826559 ], [ 59.44456831157828, 29.351748765792877 ], [ 59.441777785416434, 29.26451894839073 ], [ 59.411081984146222, 29.165506904220251 ], [ 59.327262811429591, 29.053575750820244 ], [ 59.312896763175047, 28.989083563755457 ], [ 59.328606397667102, 28.840591335921374 ], [ 59.357958611800484, 28.786692817219716 ], [ 59.366743605033321, 28.710857652058962 ], [ 59.292226190386373, 28.651662299175769 ], [ 59.059578892152103, 28.532599798941533 ], [ 58.888013137196481, 28.471440741297158 ], [ 58.925220167676571, 28.420849514493455 ], [ 59.007385694893856, 28.365891629495081 ], [ 59.04293908077392, 28.315171210582889 ], [ 59.011933221141192, 28.224685777226796 ], [ 58.896591423955044, 28.091722316731534 ], [ 58.903309361437834, 27.745283514922278 ], [ 58.890080193845847, 27.630794379357098 ], [ 58.774945103133973, 27.229449368493533 ], [ 58.775255160597169, 27.130333971535549 ], [ 58.820627069383704, 26.876602688463265 ], [ 58.896694776742549, 26.79826121708146 ], [ 58.949404737938266, 26.702582302331393 ], [ 58.892974073694518, 26.583545641418198 ], [ 58.94123986232978, 26.534478868005351 ], [ 58.94217003831659, 26.500243231739717 ], [ 58.885222609235996, 26.419989732440172 ], [ 58.947027622027122, 26.286638699216553 ], [ 58.888219841872171, 26.152719225212081 ], [ 58.882845493324851, 26.05396556256062 ], [ 58.863105095623609, 26.01024730107207 ], [ 58.807811313841057, 26.076393134535522 ], [ 58.741768833165111, 26.089932358691385 ], [ 58.683064405797666, 26.055464179328396 ], [ 58.549325798946427, 26.060683499144147 ], [ 58.51935346898739, 26.140936998443692 ], [ 58.527931755745897, 26.189538682963814 ], [ 58.509224887718347, 26.200261542536168 ], [ 58.373315871430293, 26.23188751889387 ], [ 58.284639113204491, 26.21276723881698 ], [ 58.202576938774655, 26.225893052722199 ], [ 58.069871860697788, 26.217521471538646 ], [ 58.100464309180495, 26.316223456447347 ], [ 58.11793094285872, 26.569231269107775 ], [ 58.155551385388094, 26.636875719338946 ], [ 58.131056755864563, 26.746352241562704 ], [ 58.215392694317359, 26.71118642841094 ], [ 58.223867629187737, 26.730332546010175 ], [ 58.195238884566834, 26.785755519901329 ], [ 58.136534458098708, 26.846475327973963 ], [ 57.992873975553493, 26.939544582816211 ], [ 57.927038202251197, 26.940991522740546 ], [ 57.815003696963004, 26.846888740023303 ], [ 57.408000115812683, 27.046127224291922 ], [ 57.387742954173973, 27.104030666881727 ], [ 57.356427036178729, 27.478271389213205 ], [ 57.298962844059986, 27.605757148373698 ], [ 57.249250116399708, 27.646994941163598 ], [ 57.29462202338766, 27.698412991166606 ], [ 57.287904086804133, 27.748616645241952 ], [ 57.13390831921356, 27.93917348906524 ], [ 57.051122674371925, 27.967750555943383 ], [ 57.016809522841186, 28.003769028917532 ], [ 56.980325961873632, 28.159185898910096 ], [ 56.981359490647947, 28.277550768053459 ], [ 56.87697309793009, 28.322612615779576 ], [ 56.822712844022533, 28.324395453387467 ], [ 56.637917922374186, 28.168668525032388 ], [ 56.520199009276837, 28.117353826917565 ], [ 56.456223586149576, 28.107225247447218 ], [ 56.337264438702846, 28.123374132410277 ], [ 56.23442833779751, 28.178254503042865 ], [ 56.148645461219019, 28.247940172401002 ], [ 56.059245232581418, 28.349536038057693 ], [ 56.038367954217676, 28.447282009457126 ], [ 56.063069289316218, 28.52138601295411 ], [ 56.044155714814337, 28.902163804715769 ], [ 56.015837030354646, 28.938621528160979 ], [ 55.868352491973894, 28.887048448527082 ], [ 55.66826134608425, 28.754007472766659 ], [ 55.617101677600317, 28.74222524689759 ], [ 55.528424920273835, 28.788734036346682 ], [ 55.484810011572733, 28.83883433673526 ], [ 55.395306431046947, 28.900303452742151 ], [ 55.214645623596653, 28.945261949479345 ], [ 55.129689569318145, 28.950739650814228 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-24", "NAME_1": "Hamadan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.440527784629523, 35.437630519832624 ], [ 49.448279249987365, 35.378202622952642 ], [ 49.471947056311592, 35.352855332707406 ], [ 49.468122999576735, 35.314330553512207 ], [ 49.434429965670347, 35.283841457817005 ], [ 49.400220167826433, 35.288957423945931 ], [ 49.380789829387084, 35.311901759858301 ], [ 49.379549595037759, 35.355930081508006 ], [ 49.352471144028073, 35.354121406377772 ], [ 49.321051874144644, 35.321720282764829 ], [ 49.397119582402752, 35.147880763786191 ], [ 49.348750440980041, 35.101578680811429 ], [ 49.260900505953543, 35.08431875270827 ], [ 49.24560428171219, 35.053261217131421 ], [ 49.313507114361812, 35.016028347330348 ], [ 49.472050409099097, 34.971638292273326 ], [ 49.520109491259973, 34.924948634771681 ], [ 49.545224236609215, 34.875235908010723 ], [ 49.566928338172261, 34.767568060917256 ], [ 49.542433710447369, 34.727002060796451 ], [ 49.498715448059443, 34.730541896691136 ], [ 49.46626264760306, 34.755036526214667 ], [ 49.426885206786835, 34.793587144730907 ], [ 49.411692336232306, 34.839010728562243 ], [ 49.432879672958506, 34.876166083098212 ], [ 49.408798456383636, 34.904975693973086 ], [ 49.322395461281474, 34.917352199944048 ], [ 49.140391065795029, 34.909368191488852 ], [ 49.115379673233292, 34.878129787859393 ], [ 49.126645135164836, 34.819942125328794 ], [ 49.088197870335421, 34.748809516046322 ], [ 49.101633741703779, 34.601454168874795 ], [ 48.929964633960651, 34.624295151999661 ], [ 48.895031365704938, 34.612797146071387 ], [ 48.909500766746987, 34.58473684313077 ], [ 48.959936964819065, 34.568226222961812 ], [ 48.98505171106757, 34.399786891851534 ], [ 49.056055129140873, 34.284315904355481 ], [ 49.095845982006438, 34.110528062220283 ], [ 49.075175409217763, 34.066913154418501 ], [ 48.970995721175541, 33.989088446974222 ], [ 48.698040806138295, 34.085878403965125 ], [ 48.553243442930523, 34.076473294007315 ], [ 48.500636835421574, 34.031566474113447 ], [ 48.471077914813918, 34.02508108242597 ], [ 48.211972284093633, 34.058799953854759 ], [ 47.693967726429435, 34.349712428985413 ], [ 47.748227980336992, 34.424048977378391 ], [ 47.847343377294976, 34.429940089863237 ], [ 47.959584588158179, 34.410122178695588 ], [ 47.990073682954062, 34.430999457059272 ], [ 47.988420038354036, 34.584245916715645 ], [ 47.969299758277202, 34.608172105458266 ], [ 47.900156691278255, 34.587372341460366 ], [ 47.814787224950464, 34.513810940322628 ], [ 47.774582960934879, 34.58724315025114 ], [ 47.641154413345475, 34.637524318692329 ], [ 47.590408156011563, 34.671424059073047 ], [ 47.58069298679186, 34.711189073516891 ], [ 47.626891716979117, 34.737156480487158 ], [ 47.727040642711472, 34.74661326818773 ], [ 47.846619906883177, 34.90812795713947 ], [ 47.851477492392348, 34.951226101003726 ], [ 47.979531691434374, 34.995331936119953 ], [ 47.990900506153423, 35.02341807748229 ], [ 48.009504022292788, 35.027267970840171 ], [ 48.041543409800511, 34.962336534203644 ], [ 48.063247512262876, 34.952802232137287 ], [ 48.131667107950648, 35.02303050385467 ], [ 48.151510858439337, 35.097754624975948 ], [ 48.124018996279631, 35.190229601514886 ], [ 47.976947869948219, 35.306372382579355 ], [ 47.869150831645527, 35.503052882884219 ], [ 47.799491000709111, 35.587207953284405 ], [ 47.867497186146181, 35.660200914540553 ], [ 47.890441522058552, 35.662138779980694 ], [ 47.93767378102018, 35.582091987155479 ], [ 47.968679640652852, 35.575296536206167 ], [ 48.101384718729776, 35.62966014290123 ], [ 48.101591424304786, 35.654929917881361 ], [ 48.042576938574825, 35.7474307319427 ], [ 48.07854373560491, 35.755698961238068 ], [ 48.225718214723827, 35.690224921343031 ], [ 48.25951460141772, 35.640202135320294 ], [ 48.30436974536741, 35.617490343404597 ], [ 48.519136996974794, 35.611521714755327 ], [ 48.690909458404747, 35.555814520923377 ], [ 48.766563754613571, 35.577415269698918 ], [ 48.802530551643599, 35.635783800282127 ], [ 48.849142693880196, 35.652397773238647 ], [ 48.958490024894729, 35.650847480526807 ], [ 49.041895785562019, 35.611960964327011 ], [ 49.079826288252548, 35.572996935560127 ], [ 49.049440545344851, 35.535376492131377 ], [ 49.117756789144494, 35.492717596939542 ], [ 49.273819614283752, 35.481116238223819 ], [ 49.440527784629523, 35.437630519832624 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-20", "NAME_1": "Lorestan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.001527134269793, 33.498653265835515 ], [ 49.979099562294948, 33.45868154581666 ], [ 49.977445916795602, 33.361245631880365 ], [ 49.876366815076437, 33.190997626539229 ], [ 49.86871870340542, 33.149036363337473 ], [ 49.696016065988601, 33.101881618741686 ], [ 49.638551873869858, 33.045115057713701 ], [ 49.620568475354844, 32.926543483894648 ], [ 49.472153761886602, 32.862800604764061 ], [ 49.453240187384722, 32.808798733274898 ], [ 49.379859654299594, 32.795776272157241 ], [ 49.239299758077323, 32.807041734088727 ], [ 49.006342400581275, 32.942046413711012 ], [ 48.784857212390421, 32.960830797003666 ], [ 48.722535434762506, 32.976850490757499 ], [ 48.671169060703562, 33.018760077115871 ], [ 48.567402784710737, 33.044701646563738 ], [ 48.144172805130836, 33.005995999315871 ], [ 48.090119255898912, 32.971346951000953 ], [ 47.953486769199003, 32.669013984307924 ], [ 47.898813104141425, 32.601472886864201 ], [ 47.705853305985272, 32.920833238563091 ], [ 47.55547488775585, 33.081340237162181 ], [ 47.521781853849461, 33.092373155096993 ], [ 47.465351189605713, 33.159526678913096 ], [ 47.426490512726957, 33.167872423473568 ], [ 47.410367466185619, 33.190790920964218 ], [ 47.21937137189127, 33.264197293370387 ], [ 47.201181267801246, 33.292981064924163 ], [ 47.123666619618803, 33.339929103944996 ], [ 47.098758578945251, 33.334554755397619 ], [ 47.029408807270613, 33.365870673392862 ], [ 47.000366652399066, 33.39723826823149 ], [ 47.009461703994418, 33.433360093993144 ], [ 46.923575473729102, 33.471187242097528 ], [ 46.826630487107252, 33.56141429303517 ], [ 46.844923943984782, 33.615106106161875 ], [ 46.879547153878036, 33.622960924307165 ], [ 46.901561313803541, 33.668358669716838 ], [ 46.963573032169677, 33.717451279752765 ], [ 47.313732537926285, 33.799565131025929 ], [ 47.413054639559959, 33.875038560980784 ], [ 47.431658155699324, 33.929247138044957 ], [ 47.422769809678925, 33.978236396192699 ], [ 47.386182895923866, 34.03781932180425 ], [ 47.417808872281626, 34.067455755878427 ], [ 47.39972212097905, 34.160680040351565 ], [ 47.577385694893906, 34.208041490522362 ], [ 47.576972283743885, 34.34038483339333 ], [ 47.625238070580451, 34.357438055921534 ], [ 47.71908247267794, 34.34038483339333 ], [ 48.211972284093633, 34.058799953854759 ], [ 48.471077914813918, 34.02508108242597 ], [ 48.500636835421574, 34.031566474113447 ], [ 48.553243442930523, 34.076473294007315 ], [ 48.698040806138295, 34.085878403965125 ], [ 48.970995721175541, 33.989088446974222 ], [ 48.94805138526317, 33.935370795425854 ], [ 48.963967726229555, 33.885528876556407 ], [ 48.910430942733797, 33.762538966799866 ], [ 48.923453403851454, 33.74161001249206 ], [ 49.040448845637684, 33.696651515754809 ], [ 49.18090538907245, 33.67996002933188 ], [ 49.279814081354743, 33.73874197016579 ], [ 49.313920526411152, 33.826023464411321 ], [ 49.463678827016224, 33.886665758118227 ], [ 49.518559197648813, 33.872118841811073 ], [ 49.589665969408941, 33.789100653872083 ], [ 49.56403445832359, 33.704247952381081 ], [ 49.573542921968226, 33.680812690053585 ], [ 49.746555616848241, 33.575444444505479 ], [ 49.77001671669808, 33.588544419988978 ], [ 49.796164991720957, 33.646861273728803 ], [ 49.831201612764175, 33.667712714570087 ], [ 49.923289015675493, 33.593246974967883 ], [ 49.928870069797881, 33.535472724486624 ], [ 50.001527134269793, 33.498653265835515 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-25", "NAME_1": "Yazd" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.650710076708663, 32.61286754000497 ], [ 54.70904341032508, 32.920083929729572 ], [ 54.814670038291581, 32.970700994954939 ], [ 54.908204380227914, 33.088161526533213 ], [ 54.986339146034709, 33.329955553206219 ], [ 55.040082635105477, 33.385688585459832 ], [ 55.139404737638529, 33.430362861356969 ], [ 55.217229445082808, 33.437261664194409 ], [ 55.274590285313366, 33.470644639738339 ], [ 55.359856397954388, 33.594642238948154 ], [ 55.386418085026548, 33.665464788968791 ], [ 55.375255974983247, 34.344363918859756 ], [ 55.484706658785228, 34.365163682857656 ], [ 55.741125116131172, 34.360331935770205 ], [ 55.850885858295669, 34.407254137268581 ], [ 56.210450474010145, 34.906060898691521 ], [ 56.619211053447316, 34.993678289721288 ], [ 57.016602818165495, 35.148294175835531 ], [ 57.268370395577278, 35.201314195393763 ], [ 57.37957807766611, 35.177336330707078 ], [ 57.671239861630283, 34.993936672139682 ], [ 57.705553013161023, 34.930994777786736 ], [ 57.692013788105783, 34.86686432502853 ], [ 57.595172154271495, 34.788807075386217 ], [ 57.198917271115135, 34.557735908285508 ], [ 57.13080773289056, 34.456295071360444 ], [ 57.004820591397163, 34.142567449728006 ], [ 56.9966557148893, 33.973482164370353 ], [ 57.05887413883039, 33.685256863513416 ], [ 57.105796340328823, 33.623581041032196 ], [ 57.304440545394812, 33.603737291442826 ], [ 57.559928826753946, 33.653243313528094 ], [ 57.602716913155007, 33.607716376009932 ], [ 57.642301060445561, 33.54405101214445 ], [ 57.71702518066752, 33.121699530808655 ], [ 57.782240838144162, 32.996797594033694 ], [ 58.04062300025123, 32.871068834059429 ], [ 58.147696568142067, 32.748595689139734 ], [ 58.152554151852598, 32.671882025734874 ], [ 58.10036095639299, 32.568141588163769 ], [ 58.224384393125206, 32.352547512457704 ], [ 58.222213982789071, 32.297563788138291 ], [ 58.173948195053129, 32.146048489246368 ], [ 58.040726353038735, 31.994533189455126 ], [ 58.003932732809346, 31.907200019265474 ], [ 57.901199985590836, 31.771549384496495 ], [ 57.834744093764868, 31.637268175286067 ], [ 56.761631300743886, 32.03008657533519 ], [ 56.634093865639386, 32.049181016990303 ], [ 56.566397738564774, 31.978926906851257 ], [ 56.358451776328366, 31.879036363537352 ], [ 56.287758416617578, 31.815086777932436 ], [ 55.756834750623227, 31.576264146373262 ], [ 55.712289666834636, 31.495183823874356 ], [ 55.684487746312413, 31.110917873960716 ], [ 55.514989048006157, 31.046787421202509 ], [ 55.32637006962301, 31.024773261276948 ], [ 55.116460401726158, 31.043247586207144 ], [ 54.554427525110157, 30.957774767091792 ], [ 54.466474237296211, 30.873361314273211 ], [ 54.420275506209634, 30.797913722740077 ], [ 54.398054640709063, 30.725075792014195 ], [ 54.400638462195275, 30.675466417141422 ], [ 54.515566848231458, 30.450441393055826 ], [ 54.539441359231319, 30.350550848842602 ], [ 54.603830194407919, 30.297349962131022 ], [ 54.591221144440226, 29.973106187400617 ], [ 54.616749301838809, 29.847971707528245 ], [ 54.430197381004291, 29.793220527205563 ], [ 54.227212355265976, 29.882879137362295 ], [ 54.071769646851692, 29.984268297443975 ], [ 54.043140904029485, 30.044161282317305 ], [ 54.007587518149421, 30.263191840231229 ], [ 53.964075962235825, 30.329983628841376 ], [ 53.80460249241105, 30.499068915098348 ], [ 53.638411086002804, 30.755151476559377 ], [ 53.404936964569231, 31.261502996865772 ], [ 53.276469354377184, 31.395086574985442 ], [ 53.125160760160952, 31.51394236874529 ], [ 52.870706007576189, 31.597451483998782 ], [ 52.827091098875087, 31.744419257542688 ], [ 52.824093866238911, 31.813846544482431 ], [ 52.904915806319366, 32.164600328542292 ], [ 52.883728468693846, 32.505199692911503 ], [ 53.060358513834331, 32.576694037399875 ], [ 53.164641554664001, 32.640333563742956 ], [ 53.261069777348325, 32.672011216944099 ], [ 53.334036900182753, 32.67412995043685 ], [ 53.650710076708663, 32.61286754000497 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-26", "NAME_1": "Qom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.788911574109818, 34.54197459605075 ], [ 51.451671176683419, 34.469730942728802 ], [ 51.158355747219957, 34.452522691469028 ], [ 51.063064406097453, 34.418235379259329 ], [ 51.013765089587196, 34.357903143914939 ], [ 50.983689405941277, 34.161610216338374 ], [ 51.004670037991843, 34.11838288036563 ], [ 51.032988723350854, 34.105799668819657 ], [ 50.802201776190998, 34.157889513290399 ], [ 50.699262323397477, 34.20488922825524 ], [ 50.441190219652867, 34.224784653788731 ], [ 50.32874230321471, 34.317879747052643 ], [ 50.30445438016551, 34.367463284403016 ], [ 50.30869184805033, 34.408520209140306 ], [ 50.264146763362419, 34.466423651730111 ], [ 50.158313429820907, 34.492106838759582 ], [ 50.060024855162908, 34.577062893038089 ], [ 50.069429966020095, 34.628739325459492 ], [ 50.162757603280738, 34.671992498954637 ], [ 50.173402947587931, 34.692042955018337 ], [ 50.152629022011752, 34.716124172492528 ], [ 50.153972609148582, 34.781494858700739 ], [ 50.21112674290481, 34.819373684547884 ], [ 50.301147088267498, 34.809374295387386 ], [ 50.388170200094635, 34.829915676067571 ], [ 50.447598097873879, 34.862058417262119 ], [ 50.57151818181859, 34.878129787859393 ], [ 50.693681268375826, 34.915956935963777 ], [ 50.723033481609889, 35.107883206244935 ], [ 50.784735141613453, 35.218419093866089 ], [ 51.072159457692806, 35.213251450893722 ], [ 51.31235151570985, 35.153952745222966 ], [ 51.882342564157966, 34.875494290429117 ], [ 51.893194614040169, 34.754002997440352 ], [ 51.866116163929803, 34.66646312077637 ], [ 51.788911574109818, 34.54197459605075 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-07", "NAME_1": "Tehran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.784735141613453, 35.218419093866089 ], [ 50.8712414886038, 35.4471906603207 ], [ 50.870828078353099, 35.517031358410463 ], [ 50.798687778717976, 35.604777939750079 ], [ 50.825095940725078, 35.654454591106457 ], [ 50.889640414373616, 35.686726828380415 ], [ 50.942082799381637, 35.739169213388493 ], [ 50.970321006209417, 35.799679657490174 ], [ 51.059069657138934, 35.803713687037032 ], [ 51.075205776225573, 35.916666515247471 ], [ 51.135716220327254, 35.97314292980235 ], [ 51.216396812163111, 35.997347107083328 ], [ 51.297077403998969, 35.989279047989669 ], [ 51.353553818553848, 36.017517255716768 ], [ 51.356896600397761, 36.116271267305137 ], [ 51.465003697062969, 36.064698188570503 ], [ 51.618275995141062, 36.054052843363991 ], [ 51.754391717004125, 36.010980536122815 ], [ 51.856504348396925, 35.921554469962814 ], [ 51.950245395908269, 35.799804796354238 ], [ 52.029206984015048, 35.77091767021426 ], [ 52.108168573021203, 35.767171128744565 ], [ 52.177001580758315, 35.789960435925366 ], [ 52.306812778986512, 35.917394518242418 ], [ 52.398486768949226, 35.976202298397311 ], [ 52.625863072322886, 35.931347154447622 ], [ 52.740274692622961, 35.881014309162993 ], [ 52.816342400881069, 35.86825023046373 ], [ 52.901401807947025, 35.889695950507701 ], [ 52.944810011972436, 35.881556912421559 ], [ 53.0347270036483, 35.831094875927761 ], [ 53.066249628117816, 35.718905341008679 ], [ 53.079375441123659, 35.618136298551292 ], [ 53.047232699929111, 35.528374334707735 ], [ 52.888275994941182, 35.410190335415621 ], [ 52.674955682358814, 35.336189683806822 ], [ 52.594133742278359, 35.338721829348913 ], [ 52.21968631437187, 35.414221095926791 ], [ 51.982078077840981, 35.54431651499516 ], [ 51.922443475386046, 35.54684866053725 ], [ 51.870146926239613, 35.569818833971965 ], [ 51.853403762073924, 35.555452785717478 ], [ 51.821054315304366, 35.403420721988709 ], [ 51.822501255228701, 35.315260727700377 ], [ 51.980631137916646, 35.125246487135655 ], [ 51.968022087948953, 35.063725694285324 ], [ 51.916862420364396, 34.998587551174523 ], [ 51.882342564157966, 34.875494290429117 ], [ 51.31235151570985, 35.153952745222966 ], [ 51.072159457692806, 35.213251450893722 ], [ 50.784735141613453, 35.218419093866089 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IR-07", "NAME_1": "Alborz" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.696471795436992, 35.550543525163562 ], [ 50.689753858853464, 35.639246120911707 ], [ 50.650996534762271, 35.676478989813518 ], [ 50.594772576992796, 35.677047431493747 ], [ 50.581956822349468, 35.650072333271567 ], [ 50.620714146440662, 35.60635407178296 ], [ 50.610378858697345, 35.574831448212763 ], [ 50.527696568441854, 35.62911754054204 ], [ 50.285540805663629, 35.666014513558935 ], [ 50.238618605064573, 35.741022853721688 ], [ 50.2302470229817, 35.771925361466231 ], [ 50.242752720161889, 35.81083771428905 ], [ 50.297736443581982, 35.853961697474347 ], [ 50.500204706282148, 35.934266872717956 ], [ 50.534517856913567, 35.960802721368452 ], [ 50.625881789413029, 36.164769599037754 ], [ 50.47188602092308, 36.239648748890602 ], [ 50.420829706126028, 36.296389472396186 ], [ 50.449665155422565, 36.331684474958536 ], [ 50.563146599735774, 36.339177557897983 ], [ 50.966222772263109, 36.292203681354806 ], [ 51.029888137027854, 36.27179149008515 ], [ 51.086008742009824, 36.222259630477538 ], [ 51.127970005211523, 36.20745433175199 ], [ 51.291991001283634, 36.178102118517927 ], [ 51.356896600397761, 36.116271267305137 ], [ 51.353553818553848, 36.017517255716768 ], [ 51.297077403998969, 35.989279047989669 ], [ 51.216396812163111, 35.997347107083328 ], [ 51.135716220327254, 35.97314292980235 ], [ 51.075205776225573, 35.916666515247471 ], [ 51.059069657138934, 35.803713687037032 ], [ 50.970321006209417, 35.799679657490174 ], [ 50.942082799381637, 35.739169213388493 ], [ 50.889640414373616, 35.686726828380415 ], [ 50.825095940725078, 35.654454591106457 ], [ 50.798687778717976, 35.604777939750079 ], [ 50.75269575410573, 35.601341458441539 ], [ 50.724893832684188, 35.555168564877363 ], [ 50.696471795436992, 35.550543525163562 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/italy.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/italy.geojson new file mode 100644 index 000000000000..7ffecf0d7202 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/italy.geojson @@ -0,0 +1,116 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "IT-AO", "NAME_1": "Aoste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.022082560000115, 45.92525990899999 ], [ 7.090192097000113, 45.880508118000122 ], [ 7.153547404000022, 45.87652903300004 ], [ 7.286665893000105, 45.913426005000062 ], [ 7.393842814000038, 45.915699768000096 ], [ 7.541120646000138, 45.984119365000069 ], [ 7.643026571000121, 45.966342672000039 ], [ 7.706278523, 45.925724997000103 ], [ 7.831232137000143, 45.914459534000045 ], [ 7.84962011600004, 45.939712062000112 ], [ 7.863537439601146, 45.805995170640585 ], [ 7.879401698129868, 45.755139455921153 ], [ 7.915041347879878, 45.738242482504518 ], [ 7.919545742641901, 45.649044480818134 ], [ 7.880170741686356, 45.602693160860667 ], [ 7.749323568527871, 45.564142134052247 ], [ 7.538012524858118, 45.588795455246043 ], [ 7.464579904838729, 45.574216597717793 ], [ 7.385478339953409, 45.524349652514445 ], [ 7.232768372662235, 45.485545939593408 ], [ 7.146218076702837, 45.49221464099287 ], [ 7.137934384464245, 45.511748333119044 ], [ 7.075368543000081, 45.466285856000056 ], [ 6.982808471000055, 45.511124980000048 ], [ 6.952939494000105, 45.594272360000062 ], [ 6.963378133000049, 45.640729472000075 ], [ 6.816100301000034, 45.696850077000121 ], [ 6.79594649200007, 45.718140768000112 ], [ 6.781993856000071, 45.777465312000018 ], [ 6.800804077000095, 45.826454570000053 ], [ 6.843355552194634, 45.838642859960729 ], [ 6.864440509042115, 45.826890588930986 ], [ 6.873461141000121, 45.844799704000124 ], [ 6.949012085000049, 45.857822164000069 ], [ 7.022082560000115, 45.92525990899999 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-VB", "NAME_1": "Verbano-Cusio-Ossola" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.84962011600004, 45.939712062000112 ], [ 7.870201292731351, 45.940369630770249 ], [ 7.898204794000065, 45.981948954000089 ], [ 7.985848022000084, 45.999312236000023 ], [ 8.010652710000102, 46.029697978000073 ], [ 8.025328817000087, 46.091141256000057 ], [ 8.110594930000076, 46.12695302300007 ], [ 8.132299032000077, 46.159354147000087 ], [ 8.129508504000114, 46.196044413000052 ], [ 8.077315307000021, 46.262035218000094 ], [ 8.106874227000048, 46.285547995000073 ], [ 8.192553752000038, 46.309164124000077 ], [ 8.291462443000114, 46.378358866 ], [ 8.294976441000074, 46.41804636600007 ], [ 8.343448934000037, 46.443884583000099 ], [ 8.399156128000072, 46.45217865000005 ], [ 8.441634155000116, 46.434944560000062 ], [ 8.446285034000084, 46.38218292300003 ], [ 8.423237345000103, 46.275832825000052 ], [ 8.438120158000061, 46.235370178000053 ], [ 8.510260457000072, 46.207878317000066 ], [ 8.601831095000136, 46.12281890900006 ], [ 8.677485392000079, 46.095792135000025 ], [ 8.728973717163285, 46.108235732892751 ], [ 8.724623898773871, 46.016130677188983 ], [ 8.59052477260019, 45.914660946845174 ], [ 8.598412956492723, 45.825990288720845 ], [ 8.554357778388749, 45.844425348351137 ], [ 8.499997425440824, 45.833944390221404 ], [ 8.46077623193753, 45.868935847311491 ], [ 8.415754257452988, 45.838141168280288 ], [ 8.380729842008577, 45.84215117783458 ], [ 8.378796248348181, 45.799370414612895 ], [ 8.349902204623049, 45.772409964548217 ], [ 8.316877301346381, 45.769322806002663 ], [ 8.322304547117142, 45.853950495319054 ], [ 8.270383158256152, 45.904927059136469 ], [ 8.210353859542977, 45.927558895926268 ], [ 8.209079445559951, 45.945005186040476 ], [ 8.090602877920446, 45.92341705025666 ], [ 8.05302963451004, 45.933799130625346 ], [ 7.957031096208084, 45.902411190424061 ], [ 7.899968105143898, 45.924823300355001 ], [ 7.855934900175498, 45.919319149958767 ], [ 7.84962011600004, 45.939712062000112 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-VA", "NAME_1": "Varese" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.728973717163285, 46.108235732892751 ], [ 8.808950236000101, 46.089745993000079 ], [ 8.834375041000015, 46.066388245000027 ], [ 8.767919149000079, 45.983085836 ], [ 8.864450724000079, 45.953423564000033 ], [ 8.912096394000031, 45.88340199800011 ], [ 8.900361210301583, 45.784747611712874 ], [ 8.950920293536683, 45.725937794593506 ], [ 8.911874882419852, 45.673884570516464 ], [ 8.931957890344336, 45.651164842983121 ], [ 8.977946662108764, 45.674983203012403 ], [ 8.993986702124573, 45.648033739065795 ], [ 9.058655603273451, 45.66137189369789 ], [ 9.058871957674683, 45.586103805046548 ], [ 8.988383673967348, 45.579402144393441 ], [ 8.973068732136255, 45.615591110841081 ], [ 8.926882206648486, 45.615909714561667 ], [ 8.837036012302121, 45.5684048297191 ], [ 8.795112182481205, 45.602253708042156 ], [ 8.746794309609697, 45.564153120170317 ], [ 8.705178097391297, 45.556781293721713 ], [ 8.697443721850277, 45.603033737716771 ], [ 8.664572626925178, 45.635718065036656 ], [ 8.682392451350552, 45.644397263822668 ], [ 8.674943721175794, 45.676389453110744 ], [ 8.648862176748025, 45.68088286175464 ], [ 8.648862176748025, 45.717159718046503 ], [ 8.609025749838452, 45.734474172045395 ], [ 8.565410025452309, 45.798623344191981 ], [ 8.60203844471846, 45.832549127140453 ], [ 8.59052477260019, 45.914660946845174 ], [ 8.728183468492261, 46.021997376677575 ], [ 8.728973717163285, 46.108235732892751 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-CO", "NAME_1": "Como" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.908884719317435, 45.828292631305978 ], [ 9.002426798000073, 45.82071848599999 ], [ 9.059270874000021, 45.881955058000116 ], [ 9.051726115000065, 45.915544739000055 ], [ 9.010798380000068, 45.926655172000054 ], [ 8.980515991000118, 45.96437896800002 ], [ 9.015552612000135, 45.993111064000018 ], [ 8.997775919000105, 46.027940979000093 ], [ 9.059167521000091, 46.06178904299999 ], [ 9.072086629000097, 46.118891500000089 ], [ 9.163243856000065, 46.172273255 ], [ 9.181330607000092, 46.204054260000035 ], [ 9.251989641708576, 46.235681466826236 ], [ 9.440844629176297, 46.214521797742748 ], [ 9.424593402263667, 46.160029947723899 ], [ 9.340012105374342, 46.15354767398594 ], [ 9.295099994768918, 46.11635895190409 ], [ 9.271984758889516, 46.022162171147272 ], [ 9.284575092166733, 45.966966857034777 ], [ 9.260449114534993, 45.951838681909635 ], [ 9.284948626477899, 45.900719295858778 ], [ 9.317599995443402, 45.903663631271513 ], [ 9.328520405492327, 45.859949030023699 ], [ 9.245397844035267, 45.773508597044099 ], [ 9.247199601580348, 45.742637014286743 ], [ 9.202155654859553, 45.706843555285843 ], [ 9.185148818463176, 45.664546191153761 ], [ 9.110705455792129, 45.695439747046692 ], [ 9.065705454443162, 45.68475004907549 ], [ 9.058655603273451, 45.66137189369789 ], [ 8.993986702124573, 45.648033739065795 ], [ 8.977946662108764, 45.674983203012403 ], [ 8.931957890344336, 45.651164842983121 ], [ 8.906799198724002, 45.682179247973863 ], [ 8.950920293536683, 45.725937794593506 ], [ 8.900361210301583, 45.784747611712874 ], [ 8.908884719317435, 45.828292631305978 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-SO", "NAME_1": "Sondrio" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.22483143702118, 46.23118805818234 ], [ 9.275175008000076, 46.331384990000046 ], [ 9.260912313000119, 46.416651103 ], [ 9.237967977000068, 46.43654653 ], [ 9.245822794000105, 46.461041158000072 ], [ 9.282306355000117, 46.497369691000031 ], [ 9.330985555000069, 46.501503805000041 ], [ 9.384625691000025, 46.466415508000026 ], [ 9.434648478000014, 46.498325704000095 ], [ 9.444363648000149, 46.375284119000057 ], [ 9.482604207000065, 46.356809794000029 ], [ 9.536451050000068, 46.298622132000034 ], [ 9.674323771000047, 46.291800842000086 ], [ 9.708430217000114, 46.311747946000096 ], [ 9.720109090000079, 46.35089284300004 ], [ 9.768064819000102, 46.338619690000101 ], [ 9.918443237000076, 46.371150004000029 ], [ 9.964021851000069, 46.356086325000049 ], [ 9.977561076000114, 46.298105367000076 ], [ 10.031717977000142, 46.260071513000057 ], [ 10.04267338000011, 46.220487366 ], [ 10.117914266000071, 46.231132711 ], [ 10.158945353000121, 46.262448629000104 ], [ 10.092386108000113, 46.338102926000047 ], [ 10.14075524900008, 46.402905172000075 ], [ 10.026343627000074, 46.446261699000033 ], [ 10.044016968000079, 46.466983948000077 ], [ 10.028100627000072, 46.483933818000068 ], [ 10.032751506000125, 46.532974752000101 ], [ 10.07119877100007, 46.564394023000048 ], [ 10.087838582000103, 46.604391582000105 ], [ 10.192121623000048, 46.626819154000103 ], [ 10.233772827000053, 46.617982484 ], [ 10.234703003000106, 46.575297750000104 ], [ 10.306636597000136, 46.547495829000056 ], [ 10.425905803000148, 46.535326030000036 ], [ 10.451828554544136, 46.546704427767111 ], [ 10.488435000674713, 46.497364826125818 ], [ 10.624709420503336, 46.454452226788817 ], [ 10.63866205760786, 46.41106721537966 ], [ 10.61890863862277, 46.375361648021624 ], [ 10.558242132468422, 46.366704420572546 ], [ 10.509616641994398, 46.336535962864389 ], [ 10.471164492047649, 46.35463044563852 ], [ 10.445895936548197, 46.34809358035443 ], [ 10.367014097622473, 46.293052074593561 ], [ 10.317883236721968, 46.277396555906307 ], [ 10.29098870426526, 46.221289376003881 ], [ 10.178488699993522, 46.173015448504145 ], [ 10.153813406563472, 46.134783025416255 ], [ 10.178093192546783, 46.076423648132845 ], [ 10.169523855841248, 46.056988832868342 ], [ 10.097167896081544, 46.057142641219912 ], [ 10.096948169222628, 46.090925601934941 ], [ 9.888691325744048, 46.0448379533089 ], [ 9.749604406618062, 46.062471011028322 ], [ 9.62587637469494, 46.051528627843879 ], [ 9.52686758157364, 46.011428528703618 ], [ 9.509267483107863, 46.062789613849588 ], [ 9.435043847295731, 46.084531557984974 ], [ 9.414587304160762, 46.104504703828979 ], [ 9.440844629176297, 46.214521797742748 ], [ 9.37358632534864, 46.212038887384722 ], [ 9.32876210548676, 46.235044259385063 ], [ 9.22483143702118, 46.23118805818234 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-BZ", "NAME_1": "Bozen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.451828554544136, 46.546704427767111 ], [ 10.465903361000102, 46.578475851000078 ], [ 10.459082072000058, 46.623563538000028 ], [ 10.395623413000123, 46.638808085000065 ], [ 10.36916508000013, 46.672397766000088 ], [ 10.394383179000073, 46.700819804 ], [ 10.399654175000109, 46.735546367000055 ], [ 10.42869633, 46.755648499000088 ], [ 10.417224162000082, 46.798849997000033 ], [ 10.444922730000116, 46.823241272000061 ], [ 10.453811076000136, 46.864427389000056 ], [ 10.527708374000099, 46.843214213000081 ], [ 10.647080932000051, 46.86375559599999 ], [ 10.738961629000102, 46.82954579699999 ], [ 10.748676798000133, 46.819443055000036 ], [ 10.716947469000047, 46.79520680800006 ], [ 10.722941935000051, 46.786447652000064 ], [ 10.834149617000065, 46.780246480000088 ], [ 10.870426473000123, 46.764071757000082 ], [ 10.996930379000105, 46.769110210000051 ], [ 11.052844279000084, 46.81492136700011 ], [ 11.091911662000115, 46.912434795000095 ], [ 11.174490601000059, 46.963852845000062 ], [ 11.313810262000089, 46.987262268000038 ], [ 11.411168661000147, 46.970493266000076 ], [ 11.471836792000119, 47.007080181000035 ], [ 11.524443400000024, 46.988347473000047 ], [ 11.596480347000096, 47.000439758000098 ], [ 11.683813517000118, 46.991913147 ], [ 11.734869832000101, 46.970622457000033 ], [ 11.899510946000134, 47.027724915000036 ], [ 12.014956096000105, 47.040488994 ], [ 12.180630737000115, 47.085214945000061 ], [ 12.20419519100011, 47.079685567000055 ], [ 12.203575073000138, 47.053330588000094 ], [ 12.111177612000063, 46.9929983520001 ], [ 12.141666708000031, 46.927989400000044 ], [ 12.126887247000127, 46.908869120000034 ], [ 12.266620320000072, 46.868148092000084 ], [ 12.269100789000049, 46.788566387000046 ], [ 12.342688029000044, 46.765131124000092 ], [ 12.370386596000088, 46.71115509000002 ], [ 12.405009806000095, 46.690122783 ], [ 12.469632061270602, 46.675798880713728 ], [ 12.399221206493451, 46.6397366575207 ], [ 12.388674331655068, 46.619433922737301 ], [ 12.340729993094669, 46.628157067794405 ], [ 12.208081062391102, 46.594934409895075 ], [ 12.174375006301489, 46.636968102695732 ], [ 12.089670413258943, 46.66681795758268 ], [ 12.022038575120121, 46.539409505044603 ], [ 11.832238763508087, 46.504033527525223 ], [ 11.811760246338281, 46.530312825676333 ], [ 11.778405753222899, 46.510108966855285 ], [ 11.684099109486283, 46.507680988886477 ], [ 11.641186510149282, 46.472722491050092 ], [ 11.577399886195792, 46.368088698434633 ], [ 11.537849103753103, 46.35367463537608 ], [ 11.476567363293157, 46.359629224708954 ], [ 11.454858377512096, 46.334844068299105 ], [ 11.408474098300985, 46.324461987031043 ], [ 11.370725073403378, 46.269035959941561 ], [ 11.328186009276919, 46.293502513530143 ], [ 11.217246063455036, 46.223893136359152 ], [ 11.175212370654378, 46.235857247414003 ], [ 11.153767058003325, 46.266234445862949 ], [ 11.201755341036119, 46.339238599181954 ], [ 11.214455536393871, 46.469316729683328 ], [ 11.202062957739315, 46.503989582153451 ], [ 11.131816373127094, 46.48856477734256 ], [ 11.085893519870012, 46.523556233533327 ], [ 11.05528560844408, 46.515613118150839 ], [ 11.064338343339841, 46.458011797406527 ], [ 11.051066858148943, 46.445981767844273 ], [ 10.997387657114643, 46.479182452608086 ], [ 10.839931595966391, 46.430721757503079 ], [ 10.797546341090765, 46.446937578106713 ], [ 10.762719679369695, 46.484302081675708 ], [ 10.657492624684892, 46.449497392190892 ], [ 10.624709420503336, 46.454452226788817 ], [ 10.488435000674713, 46.497364826125818 ], [ 10.451828554544136, 46.546704427767111 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-IM", "NAME_1": "Imperia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.502289259000065, 43.792222398000035 ], [ 7.477868693000062, 43.86551483200013 ], [ 7.630934285000137, 43.993543193000036 ], [ 7.65336185700005, 44.039690247000053 ], [ 7.689948771000076, 44.06733713800007 ], [ 7.687931964188806, 44.09079857219632 ], [ 7.738007650132943, 44.099378895019981 ], [ 7.730866536661324, 44.121703114207321 ], [ 7.757541342259117, 44.143818593553249 ], [ 7.834379723645327, 44.125416493176601 ], [ 8.002118988300651, 44.118440175073999 ], [ 8.038571626079658, 44.067166979772253 ], [ 7.992165374632293, 44.021332016359452 ], [ 7.999811859429769, 44.000282211155081 ], [ 8.093129733650301, 43.978913802230181 ], [ 8.130225812766355, 43.940343103909598 ], [ 8.06771894600007, 43.896673895000049 ], [ 7.959727410000085, 43.852850653000075 ], [ 7.785817905000044, 43.821966864000046 ], [ 7.736582879000082, 43.798244533000059 ], [ 7.502289259000065, 43.792222398000035 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-CN", "NAME_1": "Cuneo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.687931964188806, 44.09079857219632 ], [ 7.64188968900001, 44.143559876000083 ], [ 7.655635620000055, 44.176064352000097 ], [ 7.34061608900015, 44.123664449000088 ], [ 7.309300171000132, 44.147487284000064 ], [ 7.046060425000121, 44.240298157000055 ], [ 6.982808471000055, 44.241745098000067 ], [ 6.869843791000051, 44.362926331 ], [ 6.877181844000035, 44.414396057000076 ], [ 6.917799519000084, 44.436306864000031 ], [ 6.861265503000112, 44.474909160000024 ], [ 6.835737345000069, 44.534026998000073 ], [ 6.945601441000122, 44.625442607000096 ], [ 6.941467326000094, 44.666990459000019 ], [ 6.982808471000055, 44.692156881000031 ], [ 7.055155476000095, 44.684870504000074 ], [ 7.03881884212556, 44.712119593556416 ], [ 7.325822575551399, 44.785475112186646 ], [ 7.357880682447501, 44.75479029703456 ], [ 7.495121898656691, 44.76413966251539 ], [ 7.61997053621127, 44.836166032436438 ], [ 7.654885087776563, 44.81323756416225 ], [ 7.714079426224544, 44.81219386315621 ], [ 7.753432454943834, 44.815083267978423 ], [ 7.799772788783173, 44.843296159789929 ], [ 7.908537441849433, 44.827629654984548 ], [ 7.960942228900706, 44.855183367118684 ], [ 8.005480804295644, 44.810370132475612 ], [ 8.12916489174637, 44.811512711242585 ], [ 8.092294772485729, 44.755317640596616 ], [ 8.127912449999542, 44.74574854825687 ], [ 8.152983251775652, 44.712503918121286 ], [ 8.191149757255459, 44.748945569782222 ], [ 8.265856791257875, 44.714492443271638 ], [ 8.197455909562564, 44.632754159676722 ], [ 8.196906592864934, 44.614670662121341 ], [ 8.232634133358545, 44.597147468281037 ], [ 8.249750833634039, 44.534591313838064 ], [ 8.220922707516934, 44.518056889513844 ], [ 8.195610206645711, 44.474551028107442 ], [ 8.205827491645437, 44.422431885523054 ], [ 8.164123388683436, 44.399404541286515 ], [ 8.138964696163782, 44.353163084308846 ], [ 8.069157565269393, 44.307789546850074 ], [ 8.081242526321546, 44.195652091670695 ], [ 8.067905123522621, 44.174360587371211 ], [ 8.045273286732765, 44.158023916770333 ], [ 7.995768890621775, 44.160353017877469 ], [ 7.98177230724616, 44.141852040639151 ], [ 8.002426605003791, 44.127130360877402 ], [ 7.994692230362148, 44.114056629409902 ], [ 7.757541342259117, 44.143818593553249 ], [ 7.730866536661324, 44.121703114207321 ], [ 7.738007650132943, 44.099378895019981 ], [ 7.687931964188806, 44.09079857219632 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-TO", "NAME_1": "Turin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.03881884212556, 44.712119593556416 ], [ 6.998414754000066, 44.793752747000056 ], [ 7.000791870000114, 44.8329751590001 ], [ 6.932682332000127, 44.8616555790001 ], [ 6.847106161000056, 44.859071758000098 ], [ 6.745406941000027, 44.907802633000031 ], [ 6.727940307000097, 44.928731588000019 ], [ 6.723496134000072, 45.013377584000025 ], [ 6.651665894000075, 45.035650126000078 ], [ 6.636576375000061, 45.074459127000111 ], [ 6.602728312000067, 45.103449606000098 ], [ 6.736415242000078, 45.157348125000041 ], [ 6.84410892700015, 45.130114645000035 ], [ 6.876665079000105, 45.141225078000062 ], [ 6.873461141000121, 45.165926412000076 ], [ 6.913768758000089, 45.170163880000118 ], [ 6.958727254000081, 45.209799703000087 ], [ 7.029730672000085, 45.228196513000071 ], [ 7.062183471000111, 45.218533021000056 ], [ 7.108382202000143, 45.259202373 ], [ 7.092569213000075, 45.323952942000105 ], [ 7.159645223000098, 45.39847035800004 ], [ 7.160678752000081, 45.410924378000047 ], [ 7.096806681000118, 45.435419007000078 ], [ 7.075368543000081, 45.466285856000056 ], [ 7.137934384464245, 45.511748333119044 ], [ 7.146218076702837, 45.49221464099287 ], [ 7.224550598930989, 45.484205608002355 ], [ 7.385478339953409, 45.524349652514445 ], [ 7.464579904838729, 45.574216597717793 ], [ 7.538012524858118, 45.588795455246043 ], [ 7.731349934851607, 45.56171415608344 ], [ 7.880170741686356, 45.602693160860667 ], [ 7.895749354848817, 45.568174116742057 ], [ 7.882214198326551, 45.534105512459405 ], [ 8.027497406779901, 45.449104287932528 ], [ 8.027035980825815, 45.403071571695648 ], [ 8.010095062936784, 45.402632117977817 ], [ 8.02448715285982, 45.35224881533054 ], [ 7.955712735953966, 45.328111851580672 ], [ 7.988408050291298, 45.307600376056484 ], [ 7.988342131783952, 45.263413362736458 ], [ 8.050524751915759, 45.185190703488161 ], [ 8.105104831722599, 45.186487090606704 ], [ 8.151906591515967, 45.168590361555914 ], [ 8.129033055630998, 45.123030056491871 ], [ 8.096601413524411, 45.125732693708812 ], [ 8.075134127737783, 45.09744289727189 ], [ 8.02885971150647, 45.132654080321515 ], [ 7.893530116721479, 45.090290797682144 ], [ 7.899748379184359, 45.060528833538797 ], [ 7.942682950757558, 45.037501489302258 ], [ 7.886718593088574, 44.909477802458582 ], [ 7.943364102671183, 44.846262468338239 ], [ 7.908537441849433, 44.827629654984548 ], [ 7.787995444434216, 44.841977800435131 ], [ 7.753432454943834, 44.815083267978423 ], [ 7.714079426224544, 44.81219386315621 ], [ 7.654885087776563, 44.81323756416225 ], [ 7.642624345237323, 44.831299088582057 ], [ 7.605380691665573, 44.834100602660669 ], [ 7.495121898656691, 44.76413966251539 ], [ 7.357880682447501, 44.75479029703456 ], [ 7.325822575551399, 44.785475112186646 ], [ 7.03881884212556, 44.712119593556416 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-RN", "NAME_1": "Rimini" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.490736531221911, 43.965044292228598 ], [ 12.482160321000038, 43.982566786000078 ], [ 12.453324871000092, 43.97905278900005 ], [ 12.395653973000037, 43.948408664000013 ], [ 12.385628745000105, 43.924534153000124 ], [ 12.421106834936927, 43.895173510312112 ], [ 12.420249039461567, 43.878158183053699 ], [ 12.351452650319516, 43.869951395440523 ], [ 12.335017102857023, 43.827939675775383 ], [ 12.284985362284601, 43.794695045639799 ], [ 12.28584229568537, 43.768866186425328 ], [ 12.213815925764322, 43.76296652858241 ], [ 12.185229499641707, 43.742861547522352 ], [ 12.14150391137639, 43.762494116510254 ], [ 12.102238773400643, 43.759033422754214 ], [ 12.143679205031276, 43.832466042773603 ], [ 12.161674810943737, 43.925893780873253 ], [ 12.244863290908143, 43.92212547041413 ], [ 12.326184094820121, 43.958578108193137 ], [ 12.394804702475028, 44.029549790990018 ], [ 12.361669935319242, 44.052807848203599 ], [ 12.365383314288522, 44.063849108249713 ], [ 12.456416032773689, 44.094303211324132 ], [ 12.428730485423557, 44.147334218799131 ], [ 12.458018425000091, 44.166408596000053 ], [ 12.660899285000085, 44.008286851000037 ], [ 12.753835483000046, 43.972398179000038 ], [ 12.730832547583987, 43.88197043888465 ], [ 12.668452173728838, 43.842540506439207 ], [ 12.621584496327444, 43.846572488229697 ], [ 12.58779054949423, 43.895406719444509 ], [ 12.550832540389422, 43.877938457094103 ], [ 12.542307149954979, 43.90349265706044 ], [ 12.483090838371481, 43.929200665378403 ], [ 12.490736531221911, 43.965044292228598 ] ], [ [ 12.199335945097801, 43.780467750186517 ], [ 12.238557137701719, 43.798814918173889 ], [ 12.238227547863005, 43.808801491095892 ], [ 12.177561041708714, 43.82166648182266 ], [ 12.170837408819352, 43.804604713936385 ], [ 12.199335945097801, 43.780467750186517 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-PU", "NAME_1": "Pesaro e Urbino" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.478026206000095, 43.923216404000058 ], [ 12.537363301475182, 43.90695334991716 ], [ 12.555029318448248, 43.875202860623517 ], [ 12.58779054949423, 43.895406719444509 ], [ 12.627011742997524, 43.843628152816962 ], [ 12.674978052894801, 43.843320535214502 ], [ 12.740742215880516, 43.897834697413316 ], [ 12.753835483000046, 43.972398179000038 ], [ 12.803965691000087, 43.966864325000074 ], [ 12.928884311000047, 43.915838934000078 ], [ 13.177206383015417, 43.751518513248975 ], [ 13.067409708491255, 43.721405247853909 ], [ 13.058049356892298, 43.688600070536779 ], [ 12.992065467946986, 43.649214082563844 ], [ 12.969060095946645, 43.606224579500747 ], [ 12.929816930207153, 43.592030242401734 ], [ 12.758166532859207, 43.461227014615019 ], [ 12.712683132420636, 43.453932092791831 ], [ 12.691084010518637, 43.434299523803929 ], [ 12.638635278095592, 43.443604943912987 ], [ 12.608884300969692, 43.428872277133848 ], [ 12.488320331318221, 43.521970425394784 ], [ 12.431674820836292, 43.538427945992908 ], [ 12.392563491212115, 43.522354946723397 ], [ 12.309089367680144, 43.552072965494915 ], [ 12.309726574221997, 43.566695769294313 ], [ 12.353122571749282, 43.573825896647804 ], [ 12.358857435122502, 43.619408173048726 ], [ 12.285952159564488, 43.591601775701349 ], [ 12.20885010594759, 43.610882782614283 ], [ 12.193491218744725, 43.644160372003569 ], [ 12.282392588946834, 43.693280246785946 ], [ 12.301926281073008, 43.728908909518509 ], [ 12.315769055197734, 43.688655002026678 ], [ 12.334050305577136, 43.689116427980764 ], [ 12.357626966511305, 43.722602757211462 ], [ 12.28584229568537, 43.768866186425328 ], [ 12.284985362284601, 43.794695045639799 ], [ 12.335017102857023, 43.827939675775383 ], [ 12.351452650319516, 43.869951395440523 ], [ 12.387685561239664, 43.883794169565249 ], [ 12.41710694942617, 43.875455546736077 ], [ 12.421106834936927, 43.895173510312112 ], [ 12.460456219000037, 43.895259454000055 ], [ 12.478026206000095, 43.923216404000058 ] ], [ [ 12.4211947611293, 43.589709617404878 ], [ 12.444798333376355, 43.601057488712115 ], [ 12.429819143538623, 43.631469784103217 ], [ 12.407577315740525, 43.610135785937757 ], [ 12.4211947611293, 43.589709617404878 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-BL", "NAME_1": "Belluno" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.469632061270602, 46.675798880713728 ], [ 12.547326701000145, 46.652192281000097 ], [ 12.74849856365779, 46.641000085385599 ], [ 12.761418485874401, 46.572555258318516 ], [ 12.757089872599522, 46.534476643582195 ], [ 12.681635768176136, 46.524962483631668 ], [ 12.646435571244581, 46.501759357908043 ], [ 12.669858423827179, 46.459132403037927 ], [ 12.593063987812798, 46.463680743171722 ], [ 12.529299336994768, 46.449024980118736 ], [ 12.46531495931788, 46.356443190201048 ], [ 12.338400891987533, 46.274232493634656 ], [ 12.382785659030901, 46.229946603452959 ], [ 12.456481951281035, 46.206380928636918 ], [ 12.462832048959854, 46.178442695174226 ], [ 12.494978046599556, 46.155679022269055 ], [ 12.497153339355123, 46.104219059362094 ], [ 12.444243180977992, 46.08274078655802 ], [ 12.422431828066408, 46.043078760676224 ], [ 12.330908215541683, 46.082213442995965 ], [ 12.191579597320526, 46.004089660609338 ], [ 12.109863285062545, 46.002716369764642 ], [ 12.063061526168497, 45.963692930884008 ], [ 11.973325193902554, 45.96341827253525 ], [ 11.925205075653707, 45.884964900309853 ], [ 11.861308588720362, 45.882756648300642 ], [ 11.821296380323702, 45.899587704109251 ], [ 11.799697258421702, 45.880570369427005 ], [ 11.779724112577696, 45.887634578273151 ], [ 11.784448234198635, 45.919044491609952 ], [ 11.72813231355542, 45.938830868949424 ], [ 11.715498035805695, 45.967417295971416 ], [ 11.684802233636162, 45.984325255506121 ], [ 11.702666004332627, 46.095166324466277 ], [ 11.896464839380826, 46.132662664150587 ], [ 11.971281737262359, 46.193098457327892 ], [ 11.922568356044792, 46.219839180533711 ], [ 11.924567868212534, 46.253094797686742 ], [ 11.853464350199602, 46.273716136190728 ], [ 11.848037103529464, 46.307872631216924 ], [ 11.799213859332156, 46.353191236286477 ], [ 11.84819091188109, 46.381019606769428 ], [ 11.860957025746131, 46.427085282259952 ], [ 11.895695796723601, 46.454759844391276 ], [ 11.834238274776567, 46.483829669603551 ], [ 11.832238763508087, 46.504033527525223 ], [ 12.022038575120121, 46.539409505044603 ], [ 12.094636233974995, 46.668290125289047 ], [ 12.177934576919199, 46.634803796058293 ], [ 12.208081062391102, 46.594934409895075 ], [ 12.340729993094669, 46.628157067794405 ], [ 12.388674331655068, 46.619433922737301 ], [ 12.399221206493451, 46.6397366575207 ], [ 12.469632061270602, 46.675798880713728 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-UD", "NAME_1": "Udine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.74849856365779, 46.641000085385599 ], [ 12.830410197000077, 46.609636740000028 ], [ 13.14646325700005, 46.584961243000024 ], [ 13.231109253000056, 46.552172547000012 ], [ 13.478019246000116, 46.563567200000122 ], [ 13.506751343000133, 46.546927389000089 ], [ 13.700951375000102, 46.519745586000013 ], [ 13.67749027500011, 46.452075297000121 ], [ 13.600182332000117, 46.442644349000048 ], [ 13.530005737000067, 46.388332418000104 ], [ 13.434094279000107, 46.353864238000043 ], [ 13.365261271000094, 46.290302226000065 ], [ 13.41011641500009, 46.20798167 ], [ 13.437401570000105, 46.210927226000095 ], [ 13.422828816000049, 46.228600566000111 ], [ 13.468304077000084, 46.22343292300009 ], [ 13.559047892000137, 46.184107158000117 ], [ 13.637389363000125, 46.18038645500009 ], [ 13.645037475, 46.16173126300005 ], [ 13.616408732000139, 46.125040995000077 ], [ 13.482256713000083, 46.044839173000085 ], [ 13.490008179000085, 46.025563863000045 ], [ 13.461792846000037, 46.006391907000122 ], [ 13.46487310241173, 45.989851379037873 ], [ 13.407854057618636, 45.917528378531813 ], [ 13.432419488068888, 45.778793021480737 ], [ 13.422618035000085, 45.72406647300005 ], [ 13.369395379000082, 45.744614976000037 ], [ 13.254893425000091, 45.756048895000049 ], [ 13.215505405000044, 45.778794664000088 ], [ 13.149668816000087, 45.751532294000071 ], [ 13.119313998000052, 45.771958726000037 ], [ 13.108164910000085, 45.758205471000053 ], [ 13.122894727000073, 45.737209377000056 ], [ 13.080577019000089, 45.727606512000079 ], [ 13.075043165000068, 45.696844794000071 ], [ 13.149668816000087, 45.70376211100006 ], [ 13.095628174300771, 45.652321452972672 ], [ 13.001931190871744, 45.781957083752388 ], [ 12.999294472162148, 45.825473931276861 ], [ 12.972883337895723, 45.842623589906736 ], [ 12.972927283267495, 45.869155573271087 ], [ 12.906657749855242, 45.935502011308756 ], [ 12.954821813475917, 46.178420722038652 ], [ 12.94596683320276, 46.204227608117606 ], [ 12.977959021591573, 46.256061106235052 ], [ 12.965698279052333, 46.328922436421294 ], [ 12.801232940547777, 46.357014479134875 ], [ 12.750344266574643, 46.341029370608965 ], [ 12.641975121854387, 46.3393045176893 ], [ 12.593129905420767, 46.362958082349621 ], [ 12.53837404412684, 46.363375562931878 ], [ 12.500092240164747, 46.404181459906397 ], [ 12.520246602099007, 46.44227937499312 ], [ 12.551162130228136, 46.457418535337126 ], [ 12.669858423827179, 46.459132403037927 ], [ 12.646435571244581, 46.501759357908043 ], [ 12.681635768176136, 46.524962483631668 ], [ 12.760188017263147, 46.536926595585896 ], [ 12.74849856365779, 46.641000085385599 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-GO", "NAME_1": "Gorizia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.461792846000037, 46.006391907000122 ], [ 13.47946618600011, 45.993111064000018 ], [ 13.509438517000149, 45.967427877000048 ], [ 13.605866740000067, 45.985411276000022 ], [ 13.622816610000086, 45.966394349000055 ], [ 13.569279826000127, 45.864540101000088 ], [ 13.583327116904757, 45.786788721319233 ], [ 13.551280144000089, 45.79242584800005 ], [ 13.524180535000085, 45.76007721600007 ], [ 13.528330925000091, 45.74054596600007 ], [ 13.554942254000082, 45.737209377000056 ], [ 13.40170332100007, 45.675441799000055 ], [ 13.37671959700009, 45.683172919000071 ], [ 13.43140709700009, 45.706854559000078 ], [ 13.407854057618636, 45.917528378531813 ], [ 13.46487310241173, 45.989851379037873 ], [ 13.461792846000037, 46.006391907000122 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-TS", "NAME_1": "Trieste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.588513778236168, 45.806482477016267 ], [ 13.778724406000038, 45.743410543000081 ], [ 13.858409465000079, 45.649359436000012 ], [ 13.893136027000111, 45.634683329000026 ], [ 13.887038208000149, 45.618766988000104 ], [ 13.84776411900009, 45.584660543000055 ], [ 13.711761915000068, 45.59320709800005 ], [ 13.73015384200005, 45.613104559000078 ], [ 13.808116082000083, 45.614325262000079 ], [ 13.739268425000091, 45.649115302000041 ], [ 13.757660352000073, 45.654974677000041 ], [ 13.739105665000068, 45.691595770000049 ], [ 13.647308790000068, 45.76203034100007 ], [ 13.583327116904757, 45.786788721319233 ], [ 13.588513778236168, 45.806482477016267 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-VE", "NAME_1": "Venezia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.095628174300771, 45.652321452972672 ], [ 13.060557488000086, 45.636664130000042 ], [ 12.943858269000089, 45.628566799000055 ], [ 12.780772332000083, 45.553534247000073 ], [ 12.423675977000073, 45.438055731000077 ], [ 12.410329623000052, 45.436224677000041 ], [ 12.430918816000087, 45.484035549000055 ], [ 12.451426629000082, 45.498236395000049 ], [ 12.471934441000087, 45.485907294000071 ], [ 12.465017123000052, 45.504461981000077 ], [ 12.515147332000083, 45.492743231000077 ], [ 12.521494988000086, 45.51898834800005 ], [ 12.58171634200005, 45.552883205000057 ], [ 12.537282748000052, 45.535834052000041 ], [ 12.506602410000085, 45.573309637000079 ], [ 12.441905144000089, 45.530340887000079 ], [ 12.451426629000082, 45.511908270000049 ], [ 12.403575066000087, 45.518133856000077 ], [ 12.396739129000082, 45.539252020000049 ], [ 12.38412519600007, 45.523016669000071 ], [ 12.424001498000052, 45.498236395000049 ], [ 12.350433790000068, 45.504868882000039 ], [ 12.272715691000087, 45.463609117000033 ], [ 12.246104363000086, 45.411322333000044 ], [ 12.258962436000047, 45.395209052000041 ], [ 12.245290561000047, 45.361070054000038 ], [ 12.223806186000047, 45.353949286000045 ], [ 12.23218834700009, 45.340562242000033 ], [ 12.216319207000083, 45.316229559000078 ], [ 12.154470248000052, 45.313462632000039 ], [ 12.149099155000044, 45.292181708000044 ], [ 12.083386234087413, 45.326749546854103 ], [ 12.036848145625413, 45.315126011756035 ], [ 12.016721192329157, 45.342976354475127 ], [ 12.033442384258592, 45.360235876084801 ], [ 11.975917968139697, 45.397743201887238 ], [ 12.023906251172548, 45.432613808980079 ], [ 12.027092286579773, 45.456135538424348 ], [ 11.988332519030507, 45.45512479577269 ], [ 11.981542967633857, 45.470725382970045 ], [ 12.039572755078552, 45.571459029010953 ], [ 12.111203617552917, 45.601418746877641 ], [ 12.1885913156367, 45.584324019737721 ], [ 12.220078133598975, 45.542795698262864 ], [ 12.255410165746525, 45.53302885219972 ], [ 12.285622569725774, 45.566009810104617 ], [ 12.343916028501894, 45.583060591872766 ], [ 12.419018570850369, 45.574546187556507 ], [ 12.435388199805573, 45.586015914303005 ], [ 12.433586442260491, 45.631795945326587 ], [ 12.471818865348325, 45.641343064530759 ], [ 12.498735370940608, 45.676620166087787 ], [ 12.66302492795802, 45.701888721587181 ], [ 12.672802760139234, 45.80206206481239 ], [ 12.787478057166595, 45.855389703771777 ], [ 12.826743196041662, 45.824441216389005 ], [ 12.863217806056866, 45.846501764244977 ], [ 12.939858434619055, 45.819321587321383 ], [ 12.972883337895723, 45.842623589906736 ], [ 12.992614783745239, 45.833482965166695 ], [ 13.001931190871744, 45.781957083752388 ], [ 13.095628174300771, 45.652321452972672 ] ] ], [ [ [ 12.199392123000052, 45.274603583000044 ], [ 12.197438998000052, 45.299627997000073 ], [ 12.217295769000089, 45.293850002000056 ], [ 12.224864129000082, 45.251166083000044 ], [ 12.211110873000052, 45.242987372000073 ], [ 12.247325066000087, 45.196926174000055 ], [ 12.307302280000044, 45.230698960000041 ], [ 12.298024936000047, 45.215399481000077 ], [ 12.321256412437899, 45.164807313841131 ], [ 12.280898448104892, 45.128237576303093 ], [ 12.228427743445593, 45.108835720292234 ], [ 12.189118659198755, 45.114328884570341 ], [ 12.148513189631956, 45.058243677803489 ], [ 12.075102541848821, 45.092795680276424 ], [ 12.02871826263771, 45.145563016420056 ], [ 11.961943357899656, 45.143189969941147 ], [ 11.987453612494221, 45.190584990904597 ], [ 12.097272952684591, 45.205713165130419 ], [ 12.152512213068178, 45.194177520775952 ], [ 12.160751959035679, 45.218918732713348 ], [ 12.201862800827598, 45.247439241227994 ], [ 12.199392123000052, 45.274603583000044 ] ] ], [ [ [ 12.352061394000089, 45.405462958000044 ], [ 12.389170769000089, 45.433539130000042 ], [ 12.430918816000087, 45.415676174000055 ], [ 12.376231316000087, 45.422552802000041 ], [ 12.321462436000047, 45.348008531000062 ], [ 12.352061394000089, 45.405462958000044 ] ] ], [ [ [ 12.32984459700009, 45.458807684000078 ], [ 12.363780144000089, 45.449652411000045 ], [ 12.362071160000085, 45.43813711100006 ], [ 12.320648634000065, 45.429836330000057 ], [ 12.32984459700009, 45.458807684000078 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-PD", "NAME_1": "Padova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.149099155000044, 45.292181708000044 ], [ 12.168793165000068, 45.262152411000045 ], [ 12.199392123000052, 45.274603583000044 ], [ 12.201862800827598, 45.247439241227994 ], [ 12.160751959035679, 45.218918732713348 ], [ 12.152512213068178, 45.194177520775952 ], [ 12.097272952684591, 45.205713165130419 ], [ 11.987453612494221, 45.190584990904597 ], [ 11.961943357899656, 45.143189969941147 ], [ 11.839995111285361, 45.138861356666268 ], [ 11.753818349637129, 45.098695339018661 ], [ 11.566787092850063, 45.12921535970105 ], [ 11.488278789134824, 45.111274685278488 ], [ 11.418580315229349, 45.131771449692621 ], [ 11.400739723659285, 45.230058869621132 ], [ 11.406035133314731, 45.252251253592476 ], [ 11.487158183503368, 45.265863313840839 ], [ 11.542792951333638, 45.246252717988511 ], [ 11.615939926886085, 45.253382845342003 ], [ 11.581354964260186, 45.296690952125743 ], [ 11.626135239649557, 45.333275426020066 ], [ 11.616686997307056, 45.38698758630801 ], [ 11.689811999723986, 45.438293740863401 ], [ 11.705192860062425, 45.465781534490191 ], [ 11.74426024431483, 45.478921183565717 ], [ 11.738063954987524, 45.547124311537743 ], [ 11.706555164788995, 45.558923628122898 ], [ 11.658193346545715, 45.538873578552796 ], [ 11.670695788180069, 45.585521529994594 ], [ 11.644328599285416, 45.614789108930211 ], [ 11.649382310745011, 45.635410447434197 ], [ 11.724396962349942, 45.679663379261513 ], [ 11.853332514084229, 45.680816943247294 ], [ 11.905495602040389, 45.624731736480442 ], [ 11.954736326820012, 45.610559372517002 ], [ 12.020544434278179, 45.64580351392101 ], [ 12.069038088636887, 45.640145555173206 ], [ 12.092438968083911, 45.598353561467661 ], [ 12.034694825106101, 45.568679488067914 ], [ 12.029113770983713, 45.5361489690996 ], [ 11.981542967633857, 45.470725382970045 ], [ 11.988332519030507, 45.45512479577269 ], [ 12.027092286579773, 45.456135538424348 ], [ 12.023906251172548, 45.432613808980079 ], [ 11.975917968139697, 45.397743201887238 ], [ 12.033442384258592, 45.360235876084801 ], [ 12.016721192329157, 45.342976354475127 ], [ 12.036848145625413, 45.315126011756035 ], [ 12.083386234087413, 45.326749546854103 ], [ 12.149099155000044, 45.292181708000044 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-RO", "NAME_1": "Rovigo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.321256412437899, 45.164807313841131 ], [ 12.328461134000065, 45.10101959800005 ], [ 12.307302280000044, 45.107855536000045 ], [ 12.307302280000044, 45.12836334800005 ], [ 12.296722852000073, 45.088568427000041 ], [ 12.340830925000091, 45.081447658000059 ], [ 12.376231316000087, 45.038967190000051 ], [ 12.35515384200005, 45.024644273000035 ], [ 12.36882571700005, 45.010972398000035 ], [ 12.386566602000073, 45.038763739000046 ], [ 12.36882571700005, 45.065619208000044 ], [ 12.486175977000073, 44.976507880000042 ], [ 12.499196811000047, 44.983710028000075 ], [ 12.48609459700009, 44.991156317000048 ], [ 12.502614780000044, 44.991441148000035 ], [ 12.533864780000044, 44.970038153000075 ], [ 12.512705925000091, 44.922308661000045 ], [ 12.499034050000091, 44.921454169000071 ], [ 12.487315300000091, 44.862250067000048 ], [ 12.444590691000087, 44.820502020000049 ], [ 12.424001498000052, 44.854641018000052 ], [ 12.438324415000068, 44.901109117000033 ], [ 12.406911655000044, 44.891302802000041 ], [ 12.391612175000091, 44.85883209800005 ], [ 12.415863477000073, 44.843573309000078 ], [ 12.396739129000082, 44.826646226000037 ], [ 12.424001498000052, 44.820502020000049 ], [ 12.397959832000083, 44.793768622000073 ], [ 12.349716810382461, 44.818038590408605 ], [ 12.336533215935162, 44.848635514817147 ], [ 12.293378917503048, 44.86475245945843 ], [ 12.287644054129771, 44.935350606145505 ], [ 12.14802979054241, 44.933427998603236 ], [ 12.087209476036492, 44.970484885469091 ], [ 11.869636225431464, 44.9853713605998 ], [ 11.797346183279728, 44.977647971176907 ], [ 11.622268052328764, 44.895085712535604 ], [ 11.524907208400919, 44.939975850904773 ], [ 11.431896950883583, 44.937668722033891 ], [ 11.419020974038688, 44.966870383361481 ], [ 11.272683077561965, 45.033788110332978 ], [ 11.272836885913534, 45.059573023276357 ], [ 11.195734832296637, 45.063396265225435 ], [ 11.190922820831474, 45.087533228975303 ], [ 11.210302704606136, 45.104298366276566 ], [ 11.332492650315544, 45.089521755024975 ], [ 11.385864234646704, 45.053036157992267 ], [ 11.425810524536075, 45.06634060153749 ], [ 11.445212381446254, 45.092740748786525 ], [ 11.411110817010581, 45.121579861921077 ], [ 11.418580315229349, 45.131771449692621 ], [ 11.488278789134824, 45.111274685278488 ], [ 11.566787092850063, 45.12921535970105 ], [ 11.753818349637129, 45.098695339018661 ], [ 11.839995111285361, 45.138861356666268 ], [ 12.02871826263771, 45.145563016420056 ], [ 12.075102541848821, 45.092795680276424 ], [ 12.148513189631956, 45.058243677803489 ], [ 12.189118659198755, 45.114328884570341 ], [ 12.266352548930968, 45.120865749854431 ], [ 12.321256412437899, 45.164807313841131 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-FE", "NAME_1": "Ferrara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.393396594381445, 44.793452193104393 ], [ 12.375661655000044, 44.792222398000035 ], [ 12.302989129000082, 44.842922268000052 ], [ 12.266368035000085, 44.826646226000037 ], [ 12.280039910000085, 44.820502020000049 ], [ 12.246592644000089, 44.711615302000041 ], [ 12.269582296230839, 44.62975477246362 ], [ 12.205334480701708, 44.573471930485198 ], [ 12.054777833929904, 44.550708257580027 ], [ 12.023598633570089, 44.564056646497022 ], [ 11.99806640583995, 44.600805915760361 ], [ 11.879633784471537, 44.57974512443792 ], [ 11.852497552919715, 44.555937750526766 ], [ 11.789348136407341, 44.55442163654925 ], [ 11.76150877980632, 44.571977789643256 ], [ 11.795895988708878, 44.620515389373679 ], [ 11.770495597094111, 44.647629647789984 ], [ 11.673200670774349, 44.6359292080665 ], [ 11.606271957684669, 44.696408946615577 ], [ 11.467712382120737, 44.752252455186635 ], [ 11.375031714442059, 44.777466079196188 ], [ 11.264597139946034, 44.706999767725051 ], [ 11.265366182603259, 44.781915541568992 ], [ 11.313706028610341, 44.827234147537865 ], [ 11.368637671391411, 44.842625993095055 ], [ 11.336162083913052, 44.869223894966751 ], [ 11.234890107292586, 44.905973164230147 ], [ 11.25701657365596, 44.947336691235307 ], [ 11.279648410445759, 44.942678487222395 ], [ 11.30296139914924, 44.960069845846704 ], [ 11.421503884396714, 44.949863546065785 ], [ 11.431896950883583, 44.937668722033891 ], [ 11.524907208400919, 44.939975850904773 ], [ 11.622268052328764, 44.895085712535604 ], [ 11.797346183279728, 44.977647971176907 ], [ 11.986025390159625, 44.985261496720682 ], [ 12.087209476036492, 44.970484885469091 ], [ 12.14802979054241, 44.933427998603236 ], [ 12.287644054129771, 44.935350606145505 ], [ 12.293378917503048, 44.86475245945843 ], [ 12.336533215935162, 44.848635514817147 ], [ 12.349716810382461, 44.818038590408605 ], [ 12.393396594381445, 44.793452193104393 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-RA", "NAME_1": "Ravenna" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.269582296230839, 44.62975477246362 ], [ 12.285817905000044, 44.602687893000052 ], [ 12.283702019000089, 44.487616278000075 ], [ 12.318207227000073, 44.361151434000078 ], [ 12.38561536573245, 44.228496092479823 ], [ 12.354924330193683, 44.195509269437196 ], [ 12.287468272642627, 44.228764885690907 ], [ 12.218759774244177, 44.21487816709373 ], [ 12.200961922055058, 44.230094232063152 ], [ 12.208937996691191, 44.255505609796046 ], [ 12.173540046036294, 44.243255853374933 ], [ 12.118916019958363, 44.265624017934044 ], [ 12.108039555281209, 44.288530513072715 ], [ 12.031640625814191, 44.330278561406487 ], [ 11.886533198848042, 44.174745108699767 ], [ 11.76432128000306, 44.197168204748834 ], [ 11.729274892322394, 44.167461172994706 ], [ 11.719980243393479, 44.131684016004499 ], [ 11.644482408536305, 44.117462391675986 ], [ 11.588166487893091, 44.128833241560812 ], [ 11.610798324682946, 44.152289053397055 ], [ 11.58832029714398, 44.170636221384484 ], [ 11.526269473557363, 44.16222283611495 ], [ 11.554965803129278, 44.217405021924208 ], [ 11.63435301338086, 44.254670648631532 ], [ 11.671684557696153, 44.317688229028533 ], [ 11.716750477552466, 44.306877681959406 ], [ 11.756169423879783, 44.318830807795507 ], [ 11.820329583043815, 44.395702148435362 ], [ 11.782404776659121, 44.470991457489731 ], [ 11.742414541397977, 44.506477298888228 ], [ 11.778098135620439, 44.519858647058868 ], [ 11.789348136407341, 44.55442163654925 ], [ 11.852497552919715, 44.555937750526766 ], [ 11.879633784471537, 44.57974512443792 ], [ 11.99806640583995, 44.600805915760361 ], [ 12.023598633570089, 44.564056646497022 ], [ 12.054777833929904, 44.550708257580027 ], [ 12.177736823195801, 44.564199468730465 ], [ 12.223813484804452, 44.583689216384187 ], [ 12.269582296230839, 44.62975477246362 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-FC", "NAME_1": "Forlì-Cesena" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.38561536573245, 44.228496092479823 ], [ 12.458018425000091, 44.166408596000053 ], [ 12.428730485423557, 44.147334218799131 ], [ 12.456416032773689, 44.094303211324132 ], [ 12.365383314288522, 44.063849108249713 ], [ 12.361669935319242, 44.052807848203599 ], [ 12.394804702475028, 44.029549790990018 ], [ 12.326184094820121, 43.958578108193137 ], [ 12.244863290908143, 43.92212547041413 ], [ 12.164157721301763, 43.928244855115963 ], [ 12.143679205031276, 43.832466042773603 ], [ 12.102238773400643, 43.759033422754214 ], [ 11.968601073180992, 43.773139869109627 ], [ 11.884995112634329, 43.815415261005455 ], [ 11.813012688085053, 43.824402077393927 ], [ 11.708884265896131, 43.884837870571232 ], [ 11.685615222564479, 43.962049788067247 ], [ 11.650700670099809, 43.990855941048835 ], [ 11.652392564665092, 44.017728501269289 ], [ 11.684802233636162, 44.026715317657761 ], [ 11.722990712251544, 44.074989245157496 ], [ 11.747380361214709, 44.126614003433474 ], [ 11.719980243393479, 44.131684016004499 ], [ 11.724353016978114, 44.156343008323176 ], [ 11.757839346208868, 44.193762443382013 ], [ 11.825251458388095, 44.195267570342082 ], [ 11.886533198848042, 44.174745108699767 ], [ 12.031640625814191, 44.330278561406487 ], [ 12.108039555281209, 44.288530513072715 ], [ 12.118916019958363, 44.265624017934044 ], [ 12.173540046036294, 44.243255853374933 ], [ 12.208937996691191, 44.255505609796046 ], [ 12.200961922055058, 44.230094232063152 ], [ 12.218759774244177, 44.21487816709373 ], [ 12.287468272642627, 44.228764885690907 ], [ 12.347497572255122, 44.191894767329643 ], [ 12.38561536573245, 44.228496092479823 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-AN", "NAME_1": "Ancona" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.177206383015417, 43.751518513248975 ], [ 13.399668816000087, 43.635646877000056 ], [ 13.473399285000085, 43.612005927000041 ], [ 13.516123894000089, 43.631740627000056 ], [ 13.578868035000085, 43.57290273600006 ], [ 13.615570509000065, 43.560492255000042 ], [ 13.646966413963892, 43.475280590777523 ], [ 13.619318909639958, 43.460337121960606 ], [ 13.608222717204626, 43.419742638511934 ], [ 13.578603576194098, 43.419171349578107 ], [ 13.559838926725092, 43.442649133650548 ], [ 13.531362362682898, 43.448098352556883 ], [ 13.315876514989156, 43.399648643570004 ], [ 13.257956590524202, 43.45730489580427 ], [ 13.196960494531197, 43.41287618338913 ], [ 13.090964397189168, 43.429113976229019 ], [ 13.07180424027348, 43.412920128760902 ], [ 13.059235880131723, 43.359131063847485 ], [ 13.01085208965219, 43.308714801946508 ], [ 12.944033239542364, 43.271624956726328 ], [ 12.887937045758065, 43.278919879448836 ], [ 12.89072757281923, 43.227295121172858 ], [ 12.851723772434127, 43.206090223385104 ], [ 12.795673858661644, 43.278469439612934 ], [ 12.791191436135875, 43.319712116620849 ], [ 12.746499051490048, 43.378829550443356 ], [ 12.758166532859207, 43.461227014615019 ], [ 12.929816930207153, 43.592030242401734 ], [ 12.969060095946645, 43.606224579500747 ], [ 12.992065467946986, 43.649214082563844 ], [ 13.058049356892298, 43.688600070536779 ], [ 13.067409708491255, 43.721405247853909 ], [ 13.177206383015417, 43.751518513248975 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-MC", "NAME_1": "Macerata" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.646966413963892, 43.475280590777523 ], [ 13.744997028384391, 43.292245576618832 ], [ 13.600993712989464, 43.267834674030951 ], [ 13.606838440241802, 43.235853470860945 ], [ 13.590139220548565, 43.210376175520082 ], [ 13.533691464689355, 43.211474808015964 ], [ 13.508444881426101, 43.173440138651472 ], [ 13.452502496892691, 43.154818312315228 ], [ 13.434265190985741, 43.100062450121925 ], [ 13.466718806227902, 43.048833200192007 ], [ 13.440681207171963, 43.016423531220994 ], [ 13.419213921385335, 43.0118202595973 ], [ 13.372214407868626, 43.045932809251724 ], [ 13.223811081616134, 42.960634955039097 ], [ 13.217636765424345, 42.938816106278239 ], [ 13.241806688427914, 42.891959414994972 ], [ 13.22429448070568, 42.847673524813274 ], [ 13.150444380104034, 42.823613465688879 ], [ 13.137216840284964, 42.849453310122158 ], [ 13.043064004899918, 42.919348331760091 ], [ 12.988593788072819, 42.915678898162582 ], [ 12.990461463225927, 42.892838321531315 ], [ 12.972114295238498, 42.88869647586165 ], [ 12.96466556416442, 42.926808048952296 ], [ 12.907097202673754, 42.971533392851768 ], [ 12.892836947966771, 43.093910106166447 ], [ 12.83388430951328, 43.142953077222728 ], [ 12.856823763006219, 43.175582473052657 ], [ 12.851723772434127, 43.206090223385104 ], [ 12.89072757281923, 43.227295121172858 ], [ 12.887937045758065, 43.278919879448836 ], [ 12.944033239542364, 43.271624956726328 ], [ 13.01085208965219, 43.308714801946508 ], [ 13.059235880131723, 43.359131063847485 ], [ 13.083098185532833, 43.424653526838767 ], [ 13.196960494531197, 43.41287618338913 ], [ 13.257956590524202, 43.45730489580427 ], [ 13.315876514989156, 43.399648643570004 ], [ 13.531362362682898, 43.448098352556883 ], [ 13.559838926725092, 43.442649133650548 ], [ 13.578603576194098, 43.419171349578107 ], [ 13.608222717204626, 43.419742638511934 ], [ 13.619318909639958, 43.460337121960606 ], [ 13.646966413963892, 43.475280590777523 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-FM", "NAME_1": "Fermo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.744997028384391, 43.292245576618832 ], [ 13.853485288725958, 43.067356655087679 ], [ 13.802812568944887, 43.06092914826155 ], [ 13.779895087688146, 43.076463816951559 ], [ 13.550412656618789, 42.992517280448112 ], [ 13.462478082797247, 42.968424262070016 ], [ 13.418049370382107, 42.974038275446048 ], [ 13.397790580970536, 42.95941547254597 ], [ 13.401965385893845, 42.914140812848188 ], [ 13.388166557140892, 42.891629825156258 ], [ 13.294738819041243, 42.924467961727032 ], [ 13.241806688427914, 42.891959414994972 ], [ 13.216230515326004, 42.951142767324825 ], [ 13.343518117866836, 43.037989693869235 ], [ 13.372214407868626, 43.045932809251724 ], [ 13.419213921385335, 43.0118202595973 ], [ 13.458764703828024, 43.030013619233102 ], [ 13.463400934705362, 43.06961933406501 ], [ 13.434265190985741, 43.100062450121925 ], [ 13.452502496892691, 43.154818312315228 ], [ 13.508444881426101, 43.173440138651472 ], [ 13.533691464689355, 43.211474808015964 ], [ 13.590139220548565, 43.210376175520082 ], [ 13.606838440241802, 43.235853470860945 ], [ 13.600993712989464, 43.267834674030951 ], [ 13.744997028384391, 43.292245576618832 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-AP", "NAME_1": "Ascoli Piceno" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.853485288725958, 43.067356655087679 ], [ 13.905526647137037, 42.901560778607006 ], [ 13.719140690790255, 42.863021425898069 ], [ 13.664978090666352, 42.811440612993863 ], [ 13.536372128770722, 42.811154968526978 ], [ 13.490119685674927, 42.744105405440109 ], [ 13.443713434227618, 42.728757504355315 ], [ 13.411567436587916, 42.695117366773047 ], [ 13.3375635276347, 42.687657649580842 ], [ 13.26791020419256, 42.744621762884037 ], [ 13.194477585072491, 42.734602231607653 ], [ 13.203464401460963, 42.759848813971587 ], [ 13.248947801899533, 42.767780943235891 ], [ 13.25564946165332, 42.806200134828316 ], [ 13.22429448070568, 42.847673524813274 ], [ 13.241806688427914, 42.891959414994972 ], [ 13.286784716641364, 42.92311664311859 ], [ 13.349758352565914, 42.914283635081688 ], [ 13.388166557140892, 42.891629825156258 ], [ 13.401965385893845, 42.914140812848188 ], [ 13.397790580970536, 42.95941547254597 ], [ 13.418049370382107, 42.974038275446048 ], [ 13.462478082797247, 42.968424262070016 ], [ 13.550412656618789, 42.992517280448112 ], [ 13.779895087688146, 43.076463816951559 ], [ 13.802812568944887, 43.06092914826155 ], [ 13.853485288725958, 43.067356655087679 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-TE", "NAME_1": "Teramo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.905526647137037, 42.901560778607006 ], [ 14.001231316000087, 42.698431708000044 ], [ 14.075368686000047, 42.598822333000044 ], [ 14.151262702889609, 42.531564237800374 ], [ 13.994567947352891, 42.540506765075122 ], [ 13.957214429902024, 42.528982105939406 ], [ 13.939108961009708, 42.500846118753373 ], [ 13.898657298895216, 42.509514332320578 ], [ 13.872004465533621, 42.487332934467304 ], [ 13.825070870524257, 42.495210132241766 ], [ 13.765415106122248, 42.420085617657094 ], [ 13.738630437544657, 42.437839524474441 ], [ 13.531648008049103, 42.444057786937321 ], [ 13.417587944428078, 42.529685230988605 ], [ 13.375883841466077, 42.603766044567294 ], [ 13.386298881088464, 42.644426446523255 ], [ 13.347956594121513, 42.65962053925648 ], [ 13.3375635276347, 42.687657649580842 ], [ 13.429760797123095, 42.701731136682611 ], [ 13.443713434227618, 42.728757504355315 ], [ 13.490119685674927, 42.744105405440109 ], [ 13.536372128770722, 42.811154968526978 ], [ 13.664978090666352, 42.811440612993863 ], [ 13.719140690790255, 42.863021425898069 ], [ 13.905526647137037, 42.901560778607006 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-PE", "NAME_1": "Pescara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.151262702889609, 42.531564237800374 ], [ 14.25715884396045, 42.446074868214772 ], [ 14.228400963933325, 42.416822678523772 ], [ 14.190168540845491, 42.433598801943106 ], [ 14.167536704055635, 42.426194016240856 ], [ 14.116472248595358, 42.33823747018306 ], [ 14.077360918971237, 42.327361004606644 ], [ 14.12554695572743, 42.231746987633358 ], [ 14.091643145914418, 42.190141761533027 ], [ 14.113176350208391, 42.157336584215955 ], [ 14.111638263994678, 42.10337173871477 ], [ 14.001687087688936, 42.075807040462507 ], [ 13.889340892668031, 42.163027502217403 ], [ 13.817490303334807, 42.140483556171148 ], [ 13.795407783242581, 42.151162268024223 ], [ 13.805559150634281, 42.234900063786881 ], [ 13.843593819998773, 42.269265299553922 ], [ 13.806899483124653, 42.374591231100396 ], [ 13.765415106122248, 42.420085617657094 ], [ 13.810524971350333, 42.484795092619379 ], [ 13.872004465533621, 42.487332934467304 ], [ 13.898657298895216, 42.509514332320578 ], [ 13.939108961009708, 42.500846118753373 ], [ 13.957214429902024, 42.528982105939406 ], [ 13.994567947352891, 42.540506765075122 ], [ 14.151262702889609, 42.531564237800374 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-CH", "NAME_1": "Chieti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.25715884396045, 42.446074868214772 ], [ 14.387380405000044, 42.372951565000051 ], [ 14.42904707100007, 42.32172272300005 ], [ 14.56023196700005, 42.225653387000079 ], [ 14.709239129000082, 42.175482489000046 ], [ 14.729502800000091, 42.099107164000088 ], [ 14.76335696700005, 42.077948309000078 ], [ 14.744340924593985, 42.013042145278746 ], [ 14.647045999173486, 41.947673490639033 ], [ 14.64456308881546, 41.918790433032029 ], [ 14.524768162720534, 41.795095359463232 ], [ 14.473418062793371, 41.769024802052968 ], [ 14.448457124896379, 41.7669044407873 ], [ 14.432944428442624, 41.837030175402276 ], [ 14.376716399442273, 41.873263087221687 ], [ 14.348042081676738, 41.86204604568843 ], [ 14.282871180760367, 41.906233059008457 ], [ 14.229410536567002, 41.877366328593155 ], [ 14.194387291140572, 41.896103663852955 ], [ 14.117175373644557, 41.889522853197093 ], [ 14.08193123134123, 41.939312894674345 ], [ 14.097619709282128, 41.949782865786631 ], [ 14.081579669266318, 42.005219878994183 ], [ 14.102277912395721, 42.069797518740472 ], [ 14.085380938979142, 42.086683505139604 ], [ 14.114099202116449, 42.111875156912959 ], [ 14.113176350208391, 42.157336584215955 ], [ 14.091643145914418, 42.190141761533027 ], [ 14.12554695572743, 42.231746987633358 ], [ 14.077360918971237, 42.327361004606644 ], [ 14.116472248595358, 42.33823747018306 ], [ 14.167536704055635, 42.426194016240856 ], [ 14.190168540845491, 42.433598801943106 ], [ 14.228400963933325, 42.416822678523772 ], [ 14.25715884396045, 42.446074868214772 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-CB", "NAME_1": "Campobasso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.76335696700005, 42.077948309000078 ], [ 14.871104363000086, 42.031805731000077 ], [ 14.993662957000083, 42.010646877000056 ], [ 15.03451582100007, 41.974595445000034 ], [ 15.143540133270506, 41.931182960425247 ], [ 15.13431164296793, 41.875691066089814 ], [ 15.107329219767678, 41.835898583652693 ], [ 15.102627071282313, 41.76375136463372 ], [ 15.113064084040218, 41.718333881803176 ], [ 15.157097288109355, 41.701689594499157 ], [ 15.017614861536629, 41.619731583146006 ], [ 14.958025014742645, 41.634541154550618 ], [ 14.936272084489076, 41.623785538971447 ], [ 14.935041615877878, 41.525996228343217 ], [ 14.995290641449913, 41.482072886354615 ], [ 14.926823842146575, 41.451574838807744 ], [ 14.827024033232533, 41.425691049002694 ], [ 14.779585066897312, 41.444675424431296 ], [ 14.746823834952011, 41.409716926594854 ], [ 14.659196878732928, 41.403213020564408 ], [ 14.587609961630392, 41.370133184898521 ], [ 14.555683690849662, 41.389359260321555 ], [ 14.495940036603372, 41.390391975209468 ], [ 14.461948336046873, 41.423054329393779 ], [ 14.382694794728991, 41.441960703923314 ], [ 14.392251068132282, 41.499387340353451 ], [ 14.458300874685619, 41.528116589608885 ], [ 14.501850681463736, 41.593891738712728 ], [ 14.423188569396928, 41.644494768218976 ], [ 14.42558358901141, 41.659897600793613 ], [ 14.490754489927781, 41.680024554089869 ], [ 14.519033299347257, 41.705754535543349 ], [ 14.516110936170776, 41.726760396275267 ], [ 14.481152438334334, 41.745678854095843 ], [ 14.490381434955225, 41.776079281133889 ], [ 14.64456308881546, 41.918790433032029 ], [ 14.647045999173486, 41.947673490639033 ], [ 14.744340924593985, 42.013042145278746 ], [ 14.76335696700005, 42.077948309000078 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-FG", "NAME_1": "Foggia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.143540133270506, 41.931182960425247 ], [ 15.446055535000085, 41.906927802000041 ], [ 15.611338738000086, 41.92804596600007 ], [ 15.774424675000091, 41.921210028000075 ], [ 16.02711022200009, 41.944077867000033 ], [ 16.140472852000073, 41.919907945000034 ], [ 16.160899285000085, 41.892645575000074 ], [ 16.179209832000083, 41.893296617000033 ], [ 16.184336785000085, 41.77960846600007 ], [ 15.90007571700005, 41.614650783000059 ], [ 15.896332227000073, 41.536444403000075 ], [ 15.91179446700005, 41.502875067000048 ], [ 15.971734283331804, 41.453904281626912 ], [ 15.940312650108694, 41.429734017810631 ], [ 16.033191071510714, 41.367155890232141 ], [ 15.981972808598243, 41.348402227780582 ], [ 16.020183258550503, 41.235199098459589 ], [ 15.948244779373056, 41.181706664131241 ], [ 15.771101217747002, 41.104549679024444 ], [ 15.583169082187396, 41.104549679024444 ], [ 15.561657851028997, 41.086147578647797 ], [ 15.558559706365315, 41.055122186639551 ], [ 15.406025520561286, 41.105626339284129 ], [ 15.280341921842194, 41.103846553975245 ], [ 15.202866333014867, 41.153383909339937 ], [ 15.252700318964514, 41.207151001117779 ], [ 15.244636354484157, 41.226421021912586 ], [ 15.266015749527185, 41.235418824419185 ], [ 15.262456178909531, 41.247536744724982 ], [ 15.178696410011298, 41.289054080981032 ], [ 15.143452268607291, 41.274618044786905 ], [ 15.128247189755996, 41.30770886657092 ], [ 15.075337031378865, 41.330395634850618 ], [ 15.06665783169359, 41.358454718310554 ], [ 15.101858028625088, 41.390600715050937 ], [ 15.097046016260606, 41.425844857354264 ], [ 14.934580189923793, 41.529401989710038 ], [ 14.939062612449618, 41.626554093796358 ], [ 15.017614861536629, 41.619731583146006 ], [ 15.157097288109355, 41.701689594499157 ], [ 15.113064084040218, 41.718333881803176 ], [ 15.102627071282313, 41.76375136463372 ], [ 15.107329219767678, 41.835898583652693 ], [ 15.13431164296793, 41.875691066089814 ], [ 15.143540133270506, 41.931182960425247 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-BT", "NAME_1": "Barletta-Andria Trani" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.971734283331804, 41.453904281626912 ], [ 16.520681186000047, 41.250148830000057 ], [ 16.544163645584927, 41.235193775759846 ], [ 16.539814625944189, 41.220422486308678 ], [ 16.500373706481355, 41.151911741633569 ], [ 16.412878586377644, 41.19378063906521 ], [ 16.338061688496111, 41.160272337598258 ], [ 16.345598310313733, 41.118513302247095 ], [ 16.279394694509506, 41.054968378287981 ], [ 16.253269205609342, 40.972263297413235 ], [ 16.196623695127414, 40.91143199588987 ], [ 16.159665686022549, 40.922725941149224 ], [ 16.11000748066067, 40.904170032421064 ], [ 15.987575835856148, 40.949906118072875 ], [ 15.981840972482871, 40.962024038378672 ], [ 16.011657868116117, 40.974581412402244 ], [ 16.031345368593861, 41.016922722805418 ], [ 15.962461088708267, 41.080335810649103 ], [ 15.896059719180698, 41.102835811323587 ], [ 15.858332666519345, 41.136816525762015 ], [ 16.020183258550503, 41.235199098459589 ], [ 15.981972808598243, 41.348402227780582 ], [ 16.033191071510714, 41.367155890232141 ], [ 15.940312650108694, 41.429734017810631 ], [ 15.971734283331804, 41.453904281626912 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-BA", "NAME_1": "Bari" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.544163645584927, 41.235193775759846 ], [ 16.593923373000052, 41.206976630000042 ], [ 17.057139519000089, 41.081854559000078 ], [ 17.276377800000091, 40.980210679000038 ], [ 17.347911004000082, 40.912095445000034 ], [ 17.392260470904205, 40.893685948349692 ], [ 17.345639852497186, 40.866486926030802 ], [ 17.315581257768827, 40.815905868760808 ], [ 17.39145284277447, 40.792922469896041 ], [ 17.392441612290554, 40.755437117229178 ], [ 17.325095417719353, 40.742539167248765 ], [ 17.257551470324074, 40.764940291061578 ], [ 17.208508499267793, 40.763391218729737 ], [ 17.165002638760768, 40.746955671267187 ], [ 17.144568066962677, 40.70944834546475 ], [ 17.124902539620507, 40.70944834546475 ], [ 17.024619332516181, 40.71613901999973 ], [ 17.013676949331739, 40.755415144093604 ], [ 16.996911812030476, 40.763907576173665 ], [ 16.946418645504082, 40.743703718251993 ], [ 16.923083683665027, 40.700879009658536 ], [ 16.862131533043794, 40.72146738890882 ], [ 16.817922547487569, 40.693199565607472 ], [ 16.786150085058352, 40.732223004488048 ], [ 16.715661801351018, 40.715391949578759 ], [ 16.691162288508792, 40.735705670480286 ], [ 16.586880057968301, 40.762314558470052 ], [ 16.574619315429061, 40.749273786256197 ], [ 16.53799089616291, 40.757568464612916 ], [ 16.541089040826535, 40.730465192314739 ], [ 16.509316578397375, 40.761182966720526 ], [ 16.427973801349822, 40.70598765170871 ], [ 16.396443038915095, 40.712963970710632 ], [ 16.234812172843476, 40.847063096884369 ], [ 16.196623695127414, 40.91143199588987 ], [ 16.253269205609342, 40.972263297413235 ], [ 16.279394694509506, 41.054968378287981 ], [ 16.345598310313733, 41.118513302247095 ], [ 16.338061688496111, 41.160272337598258 ], [ 16.412878586377644, 41.19378063906521 ], [ 16.500373706481355, 41.151911741633569 ], [ 16.544163645584927, 41.235193775759846 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-BR", "NAME_1": "Brindisi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.392260470904205, 40.893685948349692 ], [ 17.476084832000083, 40.830145575000074 ], [ 17.748383009000065, 40.747626044000071 ], [ 17.843923373000052, 40.694159247000073 ], [ 17.955821160000085, 40.670477606000077 ], [ 17.954925977000073, 40.646918036000045 ], [ 18.007009311000047, 40.65070221600007 ], [ 18.043223504000082, 40.601996161000045 ], [ 18.037445509000065, 40.55695221600007 ], [ 18.098928192790666, 40.517934358907453 ], [ 17.943427961531199, 40.43223031747516 ], [ 17.844638895268758, 40.409763275155001 ], [ 17.798496315152818, 40.379583831328716 ], [ 17.714231174928784, 40.406269623044636 ], [ 17.63405294888446, 40.459718111101949 ], [ 17.601467498426302, 40.4640906697486 ], [ 17.552336637525798, 40.436921479842397 ], [ 17.485298060557056, 40.487535495466716 ], [ 17.448405969959538, 40.554903662274171 ], [ 17.462072962597119, 40.614658302638531 ], [ 17.431574914150929, 40.631368508449896 ], [ 17.403889365901478, 40.697154643671865 ], [ 17.353857626228432, 40.738287457699982 ], [ 17.392441612290554, 40.755437117229178 ], [ 17.397033896896801, 40.786396590730078 ], [ 17.315581257768827, 40.815905868760808 ], [ 17.345639852497186, 40.866486926030802 ], [ 17.392260470904205, 40.893685948349692 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-LE", "NAME_1": "Lecce" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.098928192790666, 40.517934358907453 ], [ 18.238291863000086, 40.45766836100006 ], [ 18.303233269000089, 40.399888414000088 ], [ 18.43726647200009, 40.26788971600007 ], [ 18.516123894000089, 40.139227606000077 ], [ 18.516123894000089, 40.104478257000039 ], [ 18.483571811000047, 40.055161851000037 ], [ 18.434092644000089, 40.022528387000079 ], [ 18.411387566000087, 39.97882721600007 ], [ 18.392588738000086, 39.916083075000074 ], [ 18.389170769000089, 39.817084052000041 ], [ 18.368337436000047, 39.796616929000038 ], [ 18.282074415000068, 39.833197333000044 ], [ 18.211273634000065, 39.839341539000088 ], [ 18.071543816000087, 39.911525783000059 ], [ 17.995371941000087, 39.995266018000052 ], [ 18.020274285000085, 40.010199286000045 ], [ 18.015798373000052, 40.036200262000079 ], [ 17.967458530000044, 40.057318427000041 ], [ 18.002940300000091, 40.074448960000041 ], [ 18.010996941000087, 40.09601471600007 ], [ 17.926036004000082, 40.176255601000037 ], [ 17.899668816000087, 40.249090887000079 ], [ 17.912771030000044, 40.25531647300005 ], [ 17.847666863000086, 40.290025132000039 ], [ 17.764022121701487, 40.293432580240861 ], [ 17.798496315152818, 40.379583831328716 ], [ 17.819875710195845, 40.397326752027936 ], [ 17.943427961531199, 40.43223031747516 ], [ 18.098928192790666, 40.517934358907453 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-TA", "NAME_1": "Taranto" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.764022121701487, 40.293432580240861 ], [ 17.49390709700009, 40.307440497000073 ], [ 17.399424675000091, 40.331000067000048 ], [ 17.200205925000091, 40.420396226000037 ], [ 17.243011915000068, 40.441392320000034 ], [ 17.247894727000073, 40.45734284100007 ], [ 17.227549675000091, 40.474432684000078 ], [ 17.295746290000068, 40.473211981000077 ], [ 17.323252800000091, 40.498480536000045 ], [ 17.261729363000086, 40.488714911000045 ], [ 17.268565300000091, 40.496161200000074 ], [ 17.24740644600007, 40.502834377000056 ], [ 17.189952019000089, 40.48187897300005 ], [ 17.15601647200009, 40.512396552000041 ], [ 17.049571160000085, 40.519110419000071 ], [ 16.976084832000083, 40.492621161000045 ], [ 16.863276657791516, 40.390919726364245 ], [ 16.786303893409922, 40.473451022246877 ], [ 16.730888852438568, 40.477526950308516 ], [ 16.711311214940622, 40.551530859261732 ], [ 16.719990414625897, 40.673951517948183 ], [ 16.696589534279553, 40.697209575161764 ], [ 16.786150085058352, 40.732223004488048 ], [ 16.812231628586801, 40.693463237838159 ], [ 16.862131533043794, 40.72146738890882 ], [ 16.923083683665027, 40.700879009658536 ], [ 16.946418645504082, 40.743703718251993 ], [ 16.996911812030476, 40.763907576173665 ], [ 17.013676949331739, 40.755415144093604 ], [ 17.024619332516181, 40.71613901999973 ], [ 17.124902539620507, 40.70944834546475 ], [ 17.144568066962677, 40.70944834546475 ], [ 17.165002638760768, 40.746955671267187 ], [ 17.208508499267793, 40.763391218729737 ], [ 17.353681844741345, 40.748559675088927 ], [ 17.403889365901478, 40.697154643671865 ], [ 17.431574914150929, 40.631368508449896 ], [ 17.462072962597119, 40.614658302638531 ], [ 17.448405969959538, 40.554903662274171 ], [ 17.490439662760195, 40.482646579376137 ], [ 17.552336637525798, 40.436921479842397 ], [ 17.601467498426302, 40.4640906697486 ], [ 17.63405294888446, 40.459718111101949 ], [ 17.714231174928784, 40.406269623044636 ], [ 17.798496315152818, 40.379583831328716 ], [ 17.764022121701487, 40.293432580240861 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-MT", "NAME_1": "Matera" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.863276657791516, 40.390919726364245 ], [ 16.782725457000083, 40.301581122000073 ], [ 16.730723504000082, 40.200669664000088 ], [ 16.67945397200009, 40.146063544000071 ], [ 16.640048698588544, 40.118748515631466 ], [ 16.449990403834079, 40.124371418805936 ], [ 16.42687516885394, 40.13656624373715 ], [ 16.398821301461851, 40.055530345948682 ], [ 16.355683760097463, 40.117922444265389 ], [ 16.394179855415985, 40.157692953566936 ], [ 16.351047529220068, 40.206988609836458 ], [ 16.37464616328981, 40.30985360416048 ], [ 16.330986493531839, 40.306546718756067 ], [ 16.302817547092104, 40.27356576085117 ], [ 16.21538834459642, 40.265721522330352 ], [ 16.183989417377688, 40.284870692228651 ], [ 16.152898107761473, 40.373673186468352 ], [ 16.108974765772814, 40.403226409870911 ], [ 16.136484532535121, 40.445161225809898 ], [ 16.095813144461033, 40.529272557682361 ], [ 16.119170079435605, 40.582677100367846 ], [ 16.052790682144234, 40.632280374239883 ], [ 16.056196443511055, 40.656362405600532 ], [ 16.145844885033398, 40.69573740745534 ], [ 16.14920670102839, 40.722456158424961 ], [ 16.117214512639634, 40.769939070131954 ], [ 16.121521153678259, 40.796108505303266 ], [ 16.245401190812288, 40.837546858600604 ], [ 16.420063645221035, 40.703252056137444 ], [ 16.509316578397375, 40.761182966720526 ], [ 16.541089040826535, 40.730465192314739 ], [ 16.53799089616291, 40.757568464612916 ], [ 16.574619315429061, 40.749273786256197 ], [ 16.586880057968301, 40.762314558470052 ], [ 16.691162288508792, 40.735705670480286 ], [ 16.715661801351018, 40.715391949578759 ], [ 16.696589534279553, 40.697209575161764 ], [ 16.719990414625897, 40.673951517948183 ], [ 16.711311214940622, 40.551530859261732 ], [ 16.730888852438568, 40.477526950308516 ], [ 16.786303893409922, 40.473451022246877 ], [ 16.863276657791516, 40.390919726364245 ] ] ], [ [ [ 15.973306095100213, 40.650500518384206 ], [ 15.983233609543447, 40.646777701030032 ], [ 15.984474548961259, 40.605826703839284 ], [ 15.939800734416337, 40.63809112600461 ], [ 15.973306095100213, 40.650500518384206 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-CS", "NAME_1": "Cosenza" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.640048698588544, 40.118748515631466 ], [ 16.604746941000087, 40.084458726000037 ], [ 16.596934441000087, 40.046779690000051 ], [ 16.631602410000085, 39.966213283000059 ], [ 16.542246941000087, 39.88540273600006 ], [ 16.491709832000083, 39.805487372000073 ], [ 16.489756707000083, 39.775213934000078 ], [ 16.528575066000087, 39.721502997000073 ], [ 16.515635613000086, 39.689601955000057 ], [ 16.624847852000073, 39.62531159100007 ], [ 16.782481316000087, 39.61163971600007 ], [ 16.846202019000089, 39.552679755000042 ], [ 17.019200709742577, 39.479223241464837 ], [ 16.979113959841357, 39.448975885728544 ], [ 16.96452411529566, 39.403887992736657 ], [ 16.901308780275997, 39.400734916583133 ], [ 16.87702899429263, 39.352592825198712 ], [ 16.716738461610703, 39.353328908602236 ], [ 16.708542660115654, 39.33577275640755 ], [ 16.753740416087339, 39.281192675701391 ], [ 16.762968931570924, 39.19651005579442 ], [ 16.6429762517526, 39.203222702565654 ], [ 16.53944109073376, 39.154289594489171 ], [ 16.508064136650546, 39.160727582911591 ], [ 16.4896949955276, 39.144643598423329 ], [ 16.469348315372429, 39.049556925012041 ], [ 16.430149095004708, 39.056423380134845 ], [ 16.36851579157053, 39.101840862066126 ], [ 16.311936199595891, 39.11041019877166 ], [ 16.096887947545625, 39.05041320096651 ], [ 16.03402716100004, 39.345241768000051 ], [ 15.995396030000052, 39.438768236000044 ], [ 15.867523634000065, 39.56391022300005 ], [ 15.80640709700009, 39.695502020000049 ], [ 15.769704623000052, 39.830145575000074 ], [ 15.774424675000091, 39.891099351000037 ], [ 15.745807744060896, 39.924603827643658 ], [ 15.776528464417083, 39.965333326971461 ], [ 15.841128076399571, 40.003972244523425 ], [ 15.903508449355456, 39.985515212656935 ], [ 15.946355131084431, 40.005620193716936 ], [ 15.981994780834441, 39.978901442747372 ], [ 16.021281891945762, 39.986866531265377 ], [ 16.011042633810462, 39.954017408576533 ], [ 16.068918612004325, 39.90668830522111 ], [ 16.197392738683902, 39.914510571505673 ], [ 16.262717447951843, 39.942185132737677 ], [ 16.30771744930081, 39.935933911920472 ], [ 16.354277509999065, 39.900799633496263 ], [ 16.344038251863822, 39.9352417729894 ], [ 16.387610030878193, 40.000709304490783 ], [ 16.421140305480719, 40.132743000888752 ], [ 16.640048698588544, 40.118748515631466 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-KR", "NAME_1": "Crotene" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.019200709742577, 39.479223241464837 ], [ 17.088552280000044, 39.42259349200009 ], [ 17.158702019000089, 39.406195380000042 ], [ 17.122243686000047, 39.338324286000045 ], [ 17.11491946700005, 39.282782294000071 ], [ 17.145681186000047, 39.210679429000038 ], [ 17.124522332000083, 39.090887762000079 ], [ 17.158457879000082, 39.04047272300005 ], [ 17.20639082100007, 39.029486395000049 ], [ 17.172373894000089, 39.005194403000075 ], [ 17.172373894000089, 38.960516669000071 ], [ 17.104014519000089, 38.89907461100006 ], [ 17.094981316000087, 38.919134833000044 ], [ 17.070567254000082, 38.922796942000048 ], [ 17.021983269000089, 38.905951239000046 ], [ 16.981293165000068, 38.937201239000046 ], [ 16.892234624183345, 38.929605326842946 ], [ 16.901330753411514, 38.959985388115172 ], [ 16.874480166326578, 39.015114784619584 ], [ 16.812758973048176, 39.054544717964347 ], [ 16.733152035937678, 39.06202640739275 ], [ 16.677209651404269, 39.094820598591753 ], [ 16.660971857665061, 39.149082074678006 ], [ 16.613181328355608, 39.194268844531507 ], [ 16.762968931570924, 39.19651005579442 ], [ 16.753740416087339, 39.281192675701391 ], [ 16.708542660115654, 39.33577275640755 ], [ 16.716738461610703, 39.353328908602236 ], [ 16.87702899429263, 39.352592825198712 ], [ 16.901308780275997, 39.400734916583133 ], [ 16.96452411529566, 39.403887992736657 ], [ 16.979113959841357, 39.448975885728544 ], [ 17.019200709742577, 39.479223241464837 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-CZ", "NAME_1": "Catanzaro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.892234624183345, 38.929605326842946 ], [ 16.727793816000087, 38.878851630000042 ], [ 16.574392123000052, 38.785060940000051 ], [ 16.53484134200005, 38.699896552000041 ], [ 16.549082879000082, 38.689927476000037 ], [ 16.576996290000068, 38.528550523000035 ], [ 16.573491658469187, 38.467325027888535 ], [ 16.536848317395936, 38.465095232658825 ], [ 16.42817155597254, 38.513336200904916 ], [ 16.434323899928017, 38.538428975816544 ], [ 16.419909836869465, 38.553963644506553 ], [ 16.435005051841642, 38.571618674462229 ], [ 16.382732100905741, 38.602885765565588 ], [ 16.332238934379291, 38.66081667524935 ], [ 16.348476728118499, 38.730371121829762 ], [ 16.372185225167982, 38.746444120199953 ], [ 16.365879072860935, 38.779853545704555 ], [ 16.27851578797322, 38.82545779524105 ], [ 16.259289713449505, 38.79812380996583 ], [ 16.213689025479642, 38.810399804993153 ], [ 16.214691602000073, 38.919012762000079 ], [ 16.154307488000086, 38.955023505000042 ], [ 16.096887947545625, 39.05041320096651 ], [ 16.311936199595891, 39.11041019877166 ], [ 16.36851579157053, 39.101840862066126 ], [ 16.430149095004708, 39.056423380134845 ], [ 16.469348315372429, 39.049556925012041 ], [ 16.493122730029938, 39.150235639563107 ], [ 16.584704764313415, 39.168857466798613 ], [ 16.613181328355608, 39.194268844531507 ], [ 16.660971857665061, 39.149082074678006 ], [ 16.677209651404269, 39.094820598591753 ], [ 16.733152035937678, 39.06202640739275 ], [ 16.812758973048176, 39.054544717964347 ], [ 16.874480166326578, 39.015114784619584 ], [ 16.901330753411514, 38.959985388115172 ], [ 16.892234624183345, 38.929605326842946 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-RC", "NAME_1": "Reggio Calabria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.573491658469187, 38.467325027888535 ], [ 16.561371290000068, 38.41632721600007 ], [ 16.508148634000065, 38.371527411000045 ], [ 16.339854363000086, 38.300848700000074 ], [ 16.169444207000083, 38.14321523600006 ], [ 16.125498894000089, 38.004828192000048 ], [ 16.077159050000091, 37.939886786000045 ], [ 16.000987175000091, 37.919012762000079 ], [ 15.942149285000085, 37.933091539000088 ], [ 15.76148522200009, 37.92523834800005 ], [ 15.684418165000068, 37.953517971000053 ], [ 15.645518425000091, 37.988348700000074 ], [ 15.63835696700005, 38.027736721000053 ], [ 15.658457879000082, 38.042547919000071 ], [ 15.624034050000091, 38.09210846600007 ], [ 15.64779707100007, 38.143133856000077 ], [ 15.632823113000086, 38.220282294000071 ], [ 15.650563998000052, 38.241034247000073 ], [ 15.78646894600007, 38.278021552000041 ], [ 15.812836134000065, 38.300604559000078 ], [ 15.914422375735041, 38.50562195682928 ], [ 16.014975738739338, 38.522784444146737 ], [ 16.082959139852392, 38.554699727910076 ], [ 16.184494788703546, 38.502932148299976 ], [ 16.24900650994249, 38.489353046405938 ], [ 16.276252604474109, 38.441210954122198 ], [ 16.365022139460166, 38.431663834918027 ], [ 16.390664230170046, 38.462337663951985 ], [ 16.353640302557892, 38.500306415708508 ], [ 16.352190107087779, 38.528596211246111 ], [ 16.384665694566138, 38.568026144590874 ], [ 16.432917649829676, 38.543098165048264 ], [ 16.431071946013503, 38.510325946984835 ], [ 16.536848317395936, 38.465095232658825 ], [ 16.573491658469187, 38.467325027888535 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-VV", "NAME_1": "Vibo Valentia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.914422375735041, 38.50562195682928 ], [ 15.916026238000086, 38.550360419000071 ], [ 15.90007571700005, 38.578273830000057 ], [ 15.835459832000083, 38.628241278000075 ], [ 15.844493035000085, 38.660386460000041 ], [ 16.002614780000044, 38.725409247000073 ], [ 16.135996941000087, 38.723822333000044 ], [ 16.179209832000083, 38.748277085000041 ], [ 16.213689025479642, 38.810399804993153 ], [ 16.259289713449505, 38.79812380996583 ], [ 16.27851578797322, 38.82545779524105 ], [ 16.365879072860935, 38.779853545704555 ], [ 16.372185225167982, 38.746444120199953 ], [ 16.348476728118499, 38.730371121829762 ], [ 16.332238934379291, 38.66081667524935 ], [ 16.382732100905741, 38.602885765565588 ], [ 16.435005051841642, 38.571618674462229 ], [ 16.419909836869465, 38.553963644506553 ], [ 16.384665694566138, 38.568026144590874 ], [ 16.352190107087779, 38.528596211246111 ], [ 16.353640302557892, 38.500306415708508 ], [ 16.390664230170046, 38.462337663951985 ], [ 16.376052413388152, 38.434234636019596 ], [ 16.276252604474109, 38.441210954122198 ], [ 16.24900650994249, 38.489353046405938 ], [ 16.184494788703546, 38.502932148299976 ], [ 16.082959139852392, 38.554699727910076 ], [ 16.014975738739338, 38.522784444146737 ], [ 15.914422375735041, 38.50562195682928 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-PZ", "NAME_1": "Potenza" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.745807744060896, 39.924603827643658 ], [ 15.728037957000083, 39.964178778000075 ], [ 15.646651419391926, 40.046931666694626 ], [ 15.664336076848429, 40.066956865666782 ], [ 15.649152971132708, 40.077679522891628 ], [ 15.693076313121367, 40.130523762761413 ], [ 15.695559222580016, 40.166097494903454 ], [ 15.775451804157399, 40.219820641309525 ], [ 15.789140769930555, 40.261832361873985 ], [ 15.716960590758617, 40.318444913102212 ], [ 15.701294086852613, 40.379572844311269 ], [ 15.598418106410463, 40.428538910742134 ], [ 15.537883435472168, 40.484635104526433 ], [ 15.539597303172968, 40.520011082045755 ], [ 15.517580700688768, 40.56470346669164 ], [ 15.445598276139492, 40.605660500131933 ], [ 15.487609996703952, 40.661855569878639 ], [ 15.435161264280907, 40.679433696108163 ], [ 15.386162238596398, 40.718347272008998 ], [ 15.368913703104909, 40.802183944633327 ], [ 15.344260381911056, 40.820684921871646 ], [ 15.365815558441227, 40.843866075359074 ], [ 15.369221319808048, 40.898951526491715 ], [ 15.470866831638943, 40.901796985942099 ], [ 15.536652966860913, 40.933261830768856 ], [ 15.577939589240657, 41.011034050181252 ], [ 15.554736463516974, 41.069195673741319 ], [ 15.583169082187396, 41.104549679024444 ], [ 15.771101217747002, 41.104549679024444 ], [ 15.858332666519345, 41.136816525762015 ], [ 15.896059719180698, 41.102835811323587 ], [ 15.962461088708267, 41.080335810649103 ], [ 16.031345368593861, 41.016922722805418 ], [ 15.984016265238438, 40.95254283768179 ], [ 16.11000748066067, 40.904170032421064 ], [ 16.181418616276119, 40.91812266952553 ], [ 16.208247231124801, 40.903499866625509 ], [ 16.245401190812288, 40.837546858600604 ], [ 16.121521153678259, 40.796108505303266 ], [ 16.117214512639634, 40.769939070131954 ], [ 16.14920670102839, 40.722456158424961 ], [ 16.145844885033398, 40.69573740745534 ], [ 16.056196443511055, 40.656362405600532 ], [ 16.052790682144234, 40.632280374239883 ], [ 16.119170079435605, 40.582677100367846 ], [ 16.095813144461033, 40.529272557682361 ], [ 16.136484532535121, 40.445161225809898 ], [ 16.108974765772814, 40.403226409870911 ], [ 16.152898107761473, 40.373673186468352 ], [ 16.183989417377688, 40.284870692228651 ], [ 16.21538834459642, 40.265721522330352 ], [ 16.302817547092104, 40.27356576085117 ], [ 16.330986493531839, 40.306546718756067 ], [ 16.37464616328981, 40.30985360416048 ], [ 16.351047529220068, 40.206988609836458 ], [ 16.394179855415985, 40.157692953566936 ], [ 16.355683760097463, 40.117922444265389 ], [ 16.398821301461851, 40.055530345948682 ], [ 16.387302413275734, 39.999984207205387 ], [ 16.344038251863822, 39.9352417729894 ], [ 16.354277509999065, 39.900799633496263 ], [ 16.30771744930081, 39.935933911920472 ], [ 16.262717447951843, 39.942185132737677 ], [ 16.197392738683902, 39.914510571505673 ], [ 16.068918612004325, 39.90668830522111 ], [ 16.011042633810462, 39.954017408576533 ], [ 16.021281891945762, 39.986866531265377 ], [ 15.981994780834441, 39.978901442747372 ], [ 15.946355131084431, 40.005620193716936 ], [ 15.903508449355456, 39.985515212656935 ], [ 15.841128076399571, 40.003972244523425 ], [ 15.776528464417083, 39.965333326971461 ], [ 15.745807744060896, 39.924603827643658 ] ], [ [ 15.984474548961259, 40.605826703839284 ], [ 15.983233609543447, 40.646777701030032 ], [ 15.939800734416337, 40.63809112600461 ], [ 15.964619520074791, 40.608308582674908 ], [ 15.984474548961259, 40.605826703839284 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-SA", "NAME_1": "Salerno" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.646651419391926, 40.046931666694626 ], [ 15.624278191000087, 40.077785549000055 ], [ 15.53492272200009, 40.077785549000055 ], [ 15.429601880000064, 39.999792660000082 ], [ 15.360943483000085, 39.998890575000075 ], [ 15.314300977000073, 40.033758856000077 ], [ 15.261241082000083, 40.029364325000074 ], [ 15.279144727000073, 40.047674872000073 ], [ 15.26343834700009, 40.073716539000088 ], [ 15.127207879000082, 40.169623114000046 ], [ 15.047211134000065, 40.168931382000039 ], [ 15.003122129000076, 40.210258570000065 ], [ 14.911143425000091, 40.24164459800005 ], [ 14.906911655000044, 40.258612372000073 ], [ 14.93913821700005, 40.307074286000045 ], [ 14.932383660000085, 40.333726304000038 ], [ 15.000432928000066, 40.368828183000062 ], [ 14.998266587000046, 40.397558661000062 ], [ 14.888845248000052, 40.573065497000073 ], [ 14.809743686000047, 40.65298086100006 ], [ 14.752207879000082, 40.676703192000048 ], [ 14.690440300000091, 40.649115302000041 ], [ 14.613291863000086, 40.645900783000059 ], [ 14.571299675000091, 40.617743231000077 ], [ 14.471364780000044, 40.624660549000055 ], [ 14.49257821970906, 40.649506936595799 ], [ 14.549553320029702, 40.645870462251992 ], [ 14.582204688095885, 40.686827494793022 ], [ 14.570141699279986, 40.722972515868889 ], [ 14.513144626723147, 40.742769880225751 ], [ 14.515693455588462, 40.769576521938916 ], [ 14.579348242527374, 40.794954940418165 ], [ 14.568032324132446, 40.831056016122204 ], [ 14.580117286083862, 40.846766466299357 ], [ 14.668007914533632, 40.82417857488133 ], [ 14.710239361057631, 40.848392442357294 ], [ 14.762314558270248, 40.805842392112709 ], [ 14.907795521346202, 40.806984969980363 ], [ 14.985622672248496, 40.780112410659228 ], [ 15.111657833941877, 40.765775252226092 ], [ 15.172390257704194, 40.711381939125147 ], [ 15.237385377133421, 40.723488873312817 ], [ 15.252546510612945, 40.787934676943735 ], [ 15.279375125461684, 40.799360458318461 ], [ 15.298403446262, 40.835681260881472 ], [ 15.322067997939712, 40.837483018426553 ], [ 15.368913703104909, 40.802183944633327 ], [ 15.39112805931245, 40.712887066085216 ], [ 15.487609996703952, 40.661855569878639 ], [ 15.445598276139492, 40.605660500131933 ], [ 15.517580700688768, 40.56470346669164 ], [ 15.543310682142248, 40.477834567011655 ], [ 15.598418106410463, 40.428538910742134 ], [ 15.701294086852613, 40.379572844311269 ], [ 15.716960590758617, 40.318444913102212 ], [ 15.789140769930555, 40.261832361873985 ], [ 15.775451804157399, 40.219820641309525 ], [ 15.695559222580016, 40.166097494903454 ], [ 15.69678969209059, 40.13858772814109 ], [ 15.649768205438306, 40.080810625909635 ], [ 15.664336076848429, 40.066956865666782 ], [ 15.646651419391926, 40.046931666694626 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-NA", "NAME_1": "Napoli" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.471364780000044, 40.624660549000055 ], [ 14.422048373000052, 40.61554596600007 ], [ 14.342621290000068, 40.57062409100007 ], [ 14.32984459700009, 40.584458726000037 ], [ 14.337738477000073, 40.624416408000059 ], [ 14.387380405000044, 40.636948960000041 ], [ 14.476369627000054, 40.695102127000041 ], [ 14.474131707000083, 40.729681708000044 ], [ 14.442637566000087, 40.755072333000044 ], [ 14.394432653000081, 40.761566239000047 ], [ 14.294200066000087, 40.838771877000056 ], [ 14.223643425000091, 40.831366278000075 ], [ 14.203461134000065, 40.801214911000045 ], [ 14.082530144000089, 40.831284898000035 ], [ 14.082530144000089, 40.78351471600007 ], [ 14.04769740100005, 40.789589273000047 ], [ 14.044464903000062, 40.874205132000043 ], [ 14.010078434600286, 40.936830928165939 ], [ 14.125129476044492, 40.981535758268592 ], [ 14.15217781685277, 40.954366567463069 ], [ 14.245891198519985, 40.944358022304868 ], [ 14.272873621720237, 40.947038686386236 ], [ 14.314885342284697, 41.004848747871392 ], [ 14.47363778965223, 40.981601675876618 ], [ 14.514528904585291, 40.985457877978661 ], [ 14.541335546298399, 41.017636833972688 ], [ 14.571965429960585, 41.00953990933931 ], [ 14.582556251070116, 40.942907826834698 ], [ 14.654890237694303, 40.921352650304527 ], [ 14.66908457479326, 40.90092906552394 ], [ 14.579655860129833, 40.899248157076784 ], [ 14.578205664659663, 40.874792590505649 ], [ 14.605539649934883, 40.847645371936323 ], [ 14.569790137205075, 40.842042344678418 ], [ 14.584204200263628, 40.801425888094229 ], [ 14.525339451654361, 40.777552596575049 ], [ 14.510134372803066, 40.756623640468604 ], [ 14.518879490995687, 40.736408795529485 ], [ 14.570141699279986, 40.722972515868889 ], [ 14.582204688095885, 40.686827494793022 ], [ 14.549553320029702, 40.645870462251992 ], [ 14.49257821970906, 40.649506936595799 ], [ 14.471364780000044, 40.624660549000055 ] ] ], [ [ [ 13.94467207100007, 40.701605536000045 ], [ 13.890147332000083, 40.694159247000073 ], [ 13.849131707000083, 40.715277411000045 ], [ 13.870127800000091, 40.748724677000041 ], [ 13.862803582000083, 40.762396552000041 ], [ 13.965830925000091, 40.735052802000041 ], [ 13.965830925000091, 40.715277411000045 ], [ 13.94467207100007, 40.701605536000045 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-CE", "NAME_1": "Caserta" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.010078434600286, 40.936830928165939 ], [ 13.965342644000089, 40.99640534100007 ], [ 13.917979363000086, 41.023667710000041 ], [ 13.910655144000089, 41.064642645000049 ], [ 13.851725251000062, 41.147315694000042 ], [ 13.74366407134597, 41.23760326943394 ], [ 13.804921944092428, 41.253733034052232 ], [ 13.865434641895206, 41.302468387506053 ], [ 13.875564036151331, 41.388502326920843 ], [ 13.862182687980635, 41.425998665705833 ], [ 13.96180671540759, 41.470702036469788 ], [ 13.988020095051354, 41.458089731855637 ], [ 14.031482011085927, 41.398148322986685 ], [ 14.104431232915033, 41.390391975209468 ], [ 14.105837483013431, 41.418758675372544 ], [ 14.080195391404175, 41.447707651486894 ], [ 14.120866780377582, 41.4956629752661 ], [ 14.222512292208478, 41.494806041865331 ], [ 14.461948336046873, 41.423054329393779 ], [ 14.51384842086793, 41.389031095908308 ], [ 14.444106538485926, 41.350072149210291 ], [ 14.488073824947037, 41.306972782268076 ], [ 14.439536226115933, 41.279353152525971 ], [ 14.420398041436442, 41.243087282352178 ], [ 14.460212496109818, 41.177476927718033 ], [ 14.453620699335772, 41.165435912037708 ], [ 14.421386810952527, 41.150703245258512 ], [ 14.378430266243754, 41.164007688803792 ], [ 14.356589445246698, 41.149286009042044 ], [ 14.431889741318514, 41.105769161517571 ], [ 14.429274994845116, 41.047959100931735 ], [ 14.51589120931186, 41.044641229409194 ], [ 14.530700779817096, 40.995158805534402 ], [ 14.47363778965223, 40.981601675876618 ], [ 14.314885342284697, 41.004848747871392 ], [ 14.272873621720237, 40.947038686386236 ], [ 14.161208578613014, 40.951828725615144 ], [ 14.125129476044492, 40.981535758268592 ], [ 14.010078434600286, 40.936830928165939 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-LT", "NAME_1": "Latina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.74366407134597, 41.23760326943394 ], [ 13.708506707000083, 41.256415106000077 ], [ 13.594411655000044, 41.253119208000044 ], [ 13.563649936000047, 41.237982489000046 ], [ 13.575450066000087, 41.208075262000079 ], [ 13.543955925000091, 41.206610419000071 ], [ 13.514414910000085, 41.229681708000044 ], [ 13.49968509200005, 41.221747137000079 ], [ 13.324392123000052, 41.294826565000051 ], [ 13.285817905000044, 41.295721747000073 ], [ 13.187022332000083, 41.278021552000041 ], [ 13.114512566000087, 41.250881252000056 ], [ 13.090505405000044, 41.226548570000034 ], [ 13.04460696700005, 41.227525132000039 ], [ 12.992686394000089, 41.315619208000044 ], [ 12.923838738000086, 41.379787502000056 ], [ 12.862152540000068, 41.41351959800005 ], [ 12.774405430874301, 41.420939951655406 ], [ 12.740412626041859, 41.480809459389036 ], [ 12.576057150517045, 41.58250990270983 ], [ 12.566213400727861, 41.635409074069514 ], [ 12.598469261347304, 41.659370256332238 ], [ 12.638151879905308, 41.664127337206821 ], [ 12.659882837922623, 41.603636611640297 ], [ 12.699213893506339, 41.605954727528626 ], [ 12.746982450579594, 41.573753798399082 ], [ 12.790202666619734, 41.617479385765023 ], [ 12.847573274387116, 41.640682511488706 ], [ 12.853527864619252, 41.701294086153155 ], [ 12.934541050928715, 41.709621723763519 ], [ 12.95345950874929, 41.66675306979829 ], [ 13.003623085437027, 41.627048478104768 ], [ 13.020080605135831, 41.577785781088892 ], [ 13.075539591478957, 41.568491347097961 ], [ 13.103730511054209, 41.545431043607778 ], [ 13.192609909020064, 41.588134902203933 ], [ 13.209704636160041, 41.546595594611006 ], [ 13.265778856808765, 41.527710095144755 ], [ 13.298979541572578, 41.47033948827675 ], [ 13.258879442432317, 41.435677621025377 ], [ 13.303461964098346, 41.406651741184874 ], [ 13.419851128826508, 41.400092902765209 ], [ 13.436792046715595, 41.423372933114365 ], [ 13.433474176092318, 41.458100717973707 ], [ 13.445734918631558, 41.460166147749476 ], [ 13.565376036374971, 41.403169075192636 ], [ 13.57970220868998, 41.361937384302848 ], [ 13.625449280459918, 41.319057744219492 ], [ 13.707385318677495, 41.347226689759907 ], [ 13.786948310416165, 41.308576786089759 ], [ 13.872575755366825, 41.335405400938498 ], [ 13.86310553988875, 41.299337284488047 ], [ 13.817490303334807, 41.276628543072775 ], [ 13.810041573160049, 41.256710329617988 ], [ 13.74366407134597, 41.23760326943394 ] ] ], [ [ [ 13.418955925000091, 40.795599677000041 ], [ 13.424164259000065, 40.80023834800005 ], [ 13.431976759000065, 40.801459052000041 ], [ 13.414724155000044, 40.78587474200009 ], [ 13.418955925000091, 40.795599677000041 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-RM", "NAME_1": "Roma" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.774405430874301, 41.420939951655406 ], [ 12.65398196700005, 41.465643622000073 ], [ 12.635264519000089, 41.447495835000041 ], [ 12.448008660000085, 41.630764065000051 ], [ 12.327159050000091, 41.711371161000045 ], [ 12.223480665000068, 41.750677802000041 ], [ 12.206228061000047, 41.827337958000044 ], [ 12.147471550000091, 41.903469143000052 ], [ 12.03882897200009, 41.96515534100007 ], [ 12.020355665000068, 41.993068752000056 ], [ 11.934580925000091, 42.031480210000041 ], [ 11.82748457100007, 42.034165757000039 ], [ 11.739818749343126, 42.159937373232928 ], [ 11.825888664929948, 42.147437902037552 ], [ 11.886818843314927, 42.230472573650331 ], [ 11.914108883218375, 42.233361977573168 ], [ 12.032475586978762, 42.15393082284919 ], [ 12.129396977188719, 42.150085607764538 ], [ 12.173012701574919, 42.175760657728176 ], [ 12.222978524539258, 42.18172623407844 ], [ 12.271516123370361, 42.179397132071983 ], [ 12.325986340197403, 42.14900894750491 ], [ 12.369755873834492, 42.172904212159665 ], [ 12.382917495146273, 42.233801431290999 ], [ 12.415986343794714, 42.231098794074057 ], [ 12.42339112949702, 42.181770179450211 ], [ 12.482365741086085, 42.220980385936059 ], [ 12.480278339074061, 42.258542643228395 ], [ 12.520399358243765, 42.295772467025699 ], [ 12.546877462325028, 42.293523113301035 ], [ 12.56054445496261, 42.270627604280492 ], [ 12.581682150910524, 42.291128093686552 ], [ 12.584626487222579, 42.272231608102231 ], [ 12.602204612552839, 42.277538004775067 ], [ 12.629780297822492, 42.241403970716647 ], [ 12.629384789476433, 42.222232826783511 ], [ 12.611081565961513, 42.237734536219875 ], [ 12.606093773009206, 42.191767737591022 ], [ 12.670319849781208, 42.152491613497148 ], [ 12.695346706185546, 42.146460119538858 ], [ 12.775920439676554, 42.186626136287146 ], [ 12.873522982699455, 42.099867099586959 ], [ 12.920456577708876, 42.113479160734641 ], [ 12.952514684604978, 42.09829605501892 ], [ 12.986462439789761, 42.125575108804185 ], [ 13.029582059464474, 42.11564326682327 ], [ 13.0119946675199, 42.102284092336959 ], [ 13.028430214982393, 42.031927643845677 ], [ 13.097050823536676, 42.023665924742602 ], [ 13.29785731266486, 41.947045739569205 ], [ 13.184436080660589, 41.848247216935476 ], [ 13.082636760478124, 41.858014062998564 ], [ 13.061433146022864, 41.83334975568664 ], [ 13.007468300521623, 41.814870750684577 ], [ 13.000964393591858, 41.769409323381524 ], [ 13.079011271353068, 41.720882710668548 ], [ 13.094809612273764, 41.684605853477308 ], [ 13.157563520440078, 41.635409074069514 ], [ 13.156882368526453, 41.588574355921764 ], [ 13.175207564277628, 41.583597549087585 ], [ 13.103730511054209, 41.545431043607778 ], [ 13.075539591478957, 41.568491347097961 ], [ 13.020080605135831, 41.577785781088892 ], [ 13.003623085437027, 41.627048478104768 ], [ 12.957678259044428, 41.661995988923707 ], [ 12.924653355767759, 41.712719868427143 ], [ 12.853527864619252, 41.701294086153155 ], [ 12.847573274387116, 41.640682511488706 ], [ 12.790202666619734, 41.617479385765023 ], [ 12.746982450579594, 41.573753798399082 ], [ 12.699213893506339, 41.605954727528626 ], [ 12.659882837922623, 41.603636611640297 ], [ 12.638151879905308, 41.664127337206821 ], [ 12.598469261347304, 41.659370256332238 ], [ 12.566213400727861, 41.635409074069514 ], [ 12.576057150517045, 41.58250990270983 ], [ 12.740412626041859, 41.480809459389036 ], [ 12.774405430874301, 41.420939951655406 ] ], [ [ 12.45313691700008, 41.902751941000091 ], [ 12.454035442000077, 41.902751941000091 ], [ 12.453982588000144, 41.90386188399999 ], [ 12.453031208000141, 41.903914738000125 ], [ 12.45313691700008, 41.902751941000091 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-VT", "NAME_1": "Viterbo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.739818749343126, 42.159937373232928 ], [ 11.658213738000086, 42.279364325000074 ], [ 11.539073113000086, 42.348863023000035 ], [ 11.451496463502611, 42.374371280336497 ], [ 11.487136211267114, 42.430489671161354 ], [ 11.601811508294475, 42.447386644577989 ], [ 11.607853989270154, 42.487332934467304 ], [ 11.565930159449294, 42.516117115212694 ], [ 11.588166487893091, 42.566137869666932 ], [ 11.620554184627906, 42.560139334062967 ], [ 11.671157214134098, 42.577036307479602 ], [ 11.753884268144418, 42.643283868655601 ], [ 11.786909171421087, 42.651248957173607 ], [ 11.788930655825084, 42.71098162530177 ], [ 11.807124016360262, 42.742512387736497 ], [ 11.750478505878334, 42.806331970044369 ], [ 11.76924315534734, 42.820361511774308 ], [ 11.808046867369001, 42.813352234418062 ], [ 11.889016109206068, 42.850387148148343 ], [ 11.973457030017926, 42.760288267689361 ], [ 11.927995602714873, 42.716595638677745 ], [ 11.948759763452301, 42.691711604506906 ], [ 12.025136719783802, 42.645558038272839 ], [ 12.128737797511349, 42.657346368739923 ], [ 12.152358403817288, 42.675814387623859 ], [ 12.235832528248579, 42.647579522676779 ], [ 12.280217296191267, 42.510404224974991 ], [ 12.300673839326237, 42.489914721687057 ], [ 12.34283936824221, 42.491925219972927 ], [ 12.393596206100028, 42.462503832685684 ], [ 12.417370621656858, 42.428468186757414 ], [ 12.451516130564983, 42.421030441801406 ], [ 12.431059586530694, 42.393092208338714 ], [ 12.465132967112709, 42.386932183273643 ], [ 12.454592302093033, 42.352849286965011 ], [ 12.486079120055308, 42.32526261647655 ], [ 12.472412127417726, 42.318429119708071 ], [ 12.490957050027816, 42.298280193276298 ], [ 12.520399358243765, 42.295772467025699 ], [ 12.480278339074061, 42.258542643228395 ], [ 12.482365741086085, 42.220980385936059 ], [ 12.42339112949702, 42.181770179450211 ], [ 12.415986343794714, 42.231098794074057 ], [ 12.382917495146273, 42.233801431290999 ], [ 12.369755873834492, 42.172904212159665 ], [ 12.325986340197403, 42.14900894750491 ], [ 12.271516123370361, 42.179397132071983 ], [ 12.222978524539258, 42.18172623407844 ], [ 12.173012701574919, 42.175760657728176 ], [ 12.129396977188719, 42.150085607764538 ], [ 12.032475586978762, 42.15393082284919 ], [ 11.914108883218375, 42.233361977573168 ], [ 11.886818843314927, 42.230472573650331 ], [ 11.825888664929948, 42.147437902037552 ], [ 11.739818749343126, 42.159937373232928 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-GR", "NAME_1": "Grosseto" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.451496463502611, 42.374371280336497 ], [ 11.37663821700005, 42.40688711100006 ], [ 11.333018425000091, 42.400580145000049 ], [ 11.245616082000083, 42.422308661000045 ], [ 11.211273634000065, 42.418890692000048 ], [ 11.183848504000082, 42.366278387000079 ], [ 11.15593509200005, 42.366278387000079 ], [ 11.094493035000085, 42.402736721000053 ], [ 11.086941071000069, 42.429456508000044 ], [ 11.099131707000083, 42.442857164000088 ], [ 11.164190816000087, 42.439828081000087 ], [ 11.179691769000044, 42.45649774900005 ], [ 11.18685957100007, 42.520819403000075 ], [ 11.158457879000082, 42.564032294000071 ], [ 11.12867272200009, 42.55805084800005 ], [ 11.07781009200005, 42.632228908000059 ], [ 11.005707227000073, 42.667914130000042 ], [ 10.99000084700009, 42.710272528000075 ], [ 10.943614129000082, 42.742987372000073 ], [ 10.731293165000068, 42.804429429000038 ], [ 10.764903191000087, 42.835272528000075 ], [ 10.777679884000065, 42.894720770000049 ], [ 10.763519727000073, 42.91828034100007 ], [ 10.705054403294788, 42.940937583476476 ], [ 10.735429639466247, 42.977927435902416 ], [ 10.738373974879039, 43.011095161412527 ], [ 10.785505324511121, 42.997043647446333 ], [ 10.790954543417456, 43.014764595909355 ], [ 10.779001418480675, 43.067092478335155 ], [ 10.724333447030915, 43.075551951161572 ], [ 10.717280224302897, 43.108477978475889 ], [ 10.737385205362898, 43.145600782050451 ], [ 10.930986287587075, 43.16220112488196 ], [ 11.039553186030673, 43.192633254820805 ], [ 11.059548304110933, 43.176549269433224 ], [ 11.060207483788361, 43.122221874839624 ], [ 11.089321254372351, 43.084802439780731 ], [ 11.36101315883019, 43.083253367448947 ], [ 11.358925756818223, 42.999614448547959 ], [ 11.396806617831146, 42.966831244366404 ], [ 11.449365213233989, 42.954043157365788 ], [ 11.507966289612568, 42.980102728657982 ], [ 11.575444319399821, 42.967204779576889 ], [ 11.619741196598909, 42.928994328725253 ], [ 11.63501219305823, 42.79975115938845 ], [ 11.747226552863083, 42.79847674540548 ], [ 11.777614737430156, 42.776822692013582 ], [ 11.807893059017431, 42.738348569830634 ], [ 11.788930655825084, 42.71098162530177 ], [ 11.786909171421087, 42.651248957173607 ], [ 11.753884268144418, 42.643283868655601 ], [ 11.671157214134098, 42.577036307479602 ], [ 11.620554184627906, 42.560139334062967 ], [ 11.588166487893091, 42.566137869666932 ], [ 11.565930159449294, 42.516117115212694 ], [ 11.607853989270154, 42.487332934467304 ], [ 11.601811508294475, 42.447386644577989 ], [ 11.487136211267114, 42.430489671161354 ], [ 11.451496463502611, 42.374371280336497 ] ] ], [ [ [ 10.89584394600007, 42.386704820000034 ], [ 10.939764452000077, 42.330659710000077 ], [ 10.92333095500004, 42.318728032000081 ], [ 10.861827019000089, 42.366278387000079 ], [ 10.882985873000052, 42.392157294000071 ], [ 10.89584394600007, 42.386704820000034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-LI", "NAME_1": "Livorno" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.705054403294788, 42.940937583476476 ], [ 10.583262566000087, 42.959702867000033 ], [ 10.539073113000086, 42.949123440000051 ], [ 10.54656009200005, 42.934759833000044 ], [ 10.518565300000091, 42.925279039000088 ], [ 10.499522332000083, 42.940497137000079 ], [ 10.477549675000091, 42.990057684000078 ], [ 10.517100457000083, 43.023911851000037 ], [ 10.54656009200005, 43.14712148600006 ], [ 10.528168165000068, 43.246771552000041 ], [ 10.437022332000083, 43.388576565000051 ], [ 10.35914147200009, 43.465277411000045 ], [ 10.326345248000052, 43.47687409100007 ], [ 10.293418294039624, 43.579129757304884 ], [ 10.49045648507871, 43.632394013772682 ], [ 10.497136173495619, 43.608311981512713 ], [ 10.471054629067851, 43.549908658857476 ], [ 10.495927677120562, 43.462347620246476 ], [ 10.495993594728589, 43.38769551773396 ], [ 10.537873479177733, 43.358878378634245 ], [ 10.541367132187361, 43.318316853539955 ], [ 10.585114691789556, 43.290532428428833 ], [ 10.701745555612888, 43.30296895245516 ], [ 10.668940379195135, 43.253552446188394 ], [ 10.681772410668202, 43.197302444052525 ], [ 10.645078072894762, 43.192424514080017 ], [ 10.638706002979632, 43.165925489969368 ], [ 10.710974071995793, 43.126133008431566 ], [ 10.724333447030915, 43.075551951161572 ], [ 10.787746535773977, 43.055677683078613 ], [ 10.785505324511121, 42.997043647446333 ], [ 10.738373974879039, 43.011095161412527 ], [ 10.735429639466247, 42.977927435902416 ], [ 10.705054403294788, 42.940937583476476 ] ] ], [ [ [ 10.443369988000086, 42.845445054000038 ], [ 10.430023634000065, 42.787583726000037 ], [ 10.388845248000052, 42.763495184000078 ], [ 10.42514082100007, 42.740790106000077 ], [ 10.430674675000091, 42.72211334800005 ], [ 10.415537957000083, 42.708889065000051 ], [ 10.337901238000086, 42.764837958000044 ], [ 10.313731316000087, 42.742987372000073 ], [ 10.304535352000073, 42.759751695000034 ], [ 10.26539147200009, 42.744574286000045 ], [ 10.245371941000087, 42.75726959800005 ], [ 10.229665561000047, 42.735419012000079 ], [ 10.147227410000085, 42.737290757000039 ], [ 10.10678144600007, 42.757391669000071 ], [ 10.101410352000073, 42.784002997000073 ], [ 10.132985873000052, 42.811916408000059 ], [ 10.265879754000082, 42.804429429000038 ], [ 10.272146030000044, 42.827337958000044 ], [ 10.326833530000044, 42.826239325000074 ], [ 10.322113477000073, 42.811712958000044 ], [ 10.34734134200005, 42.805853583000044 ], [ 10.412364129000082, 42.87335846600007 ], [ 10.443369988000086, 42.845445054000038 ] ] ], [ [ [ 9.840098504000082, 43.065171617000033 ], [ 9.854810932000078, 43.044274697000048 ], [ 9.842127292000043, 43.024955918000046 ], [ 9.801498481000067, 43.007805218000044 ], [ 9.78459484800004, 43.028441834000034 ], [ 9.806944043000044, 43.06640771800005 ], [ 9.840098504000082, 43.065171617000033 ] ] ], [ [ [ 10.297048373000052, 42.344875393000052 ], [ 10.315928582000083, 42.340765692000048 ], [ 10.313243035000085, 42.323919989000046 ], [ 10.294444207000083, 42.328029690000051 ], [ 10.297048373000052, 42.344875393000052 ] ] ], [ [ [ 10.091644727000073, 42.595770575000074 ], [ 10.085785352000073, 42.572455145000049 ], [ 10.050303582000083, 42.581935940000051 ], [ 10.07943769600007, 42.61391836100006 ], [ 10.091644727000073, 42.595770575000074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-PI", "NAME_1": "Pisa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.293418294039624, 43.579129757304884 ], [ 10.261770662028662, 43.816127741758237 ], [ 10.420671326420575, 43.824731667232641 ], [ 10.447587831113481, 43.801978981344917 ], [ 10.445214784634572, 43.774161596980093 ], [ 10.47949212965807, 43.755550756761977 ], [ 10.603703559771475, 43.7575502680304 ], [ 10.653383737369552, 43.802824928627558 ], [ 10.678981883607037, 43.80489035840327 ], [ 10.793481399147254, 43.718977268985725 ], [ 10.865903277414304, 43.730414037377898 ], [ 10.907255817402017, 43.680118624574845 ], [ 10.910573688924615, 43.651279512339613 ], [ 10.889370074469355, 43.627955536618686 ], [ 10.819694778791018, 43.613442596698462 ], [ 10.836350053112426, 43.584153044627271 ], [ 10.835229447481026, 43.531242887149517 ], [ 10.860476030744223, 43.472004603329765 ], [ 10.952123983534989, 43.452229212108421 ], [ 10.995234336595331, 43.403878379983212 ], [ 11.004990196540348, 43.356604208117687 ], [ 10.953442342889787, 43.317602741473308 ], [ 10.994465293938163, 43.269416704717116 ], [ 10.98890621115271, 43.239896440568259 ], [ 10.935270955490182, 43.240478715620213 ], [ 10.911650349184242, 43.162563673075056 ], [ 10.740285596303238, 43.148138623898376 ], [ 10.717280224302897, 43.108477978475889 ], [ 10.635432076828863, 43.175351760075671 ], [ 10.645078072894762, 43.192424514080017 ], [ 10.681772410668202, 43.197302444052525 ], [ 10.668940379195135, 43.253552446188394 ], [ 10.701745555612888, 43.30296895245516 ], [ 10.585114691789556, 43.290532428428833 ], [ 10.541367132187361, 43.318316853539955 ], [ 10.537873479177733, 43.358878378634245 ], [ 10.495993594728589, 43.38769551773396 ], [ 10.495927677120562, 43.462347620246476 ], [ 10.471054629067851, 43.549908658857476 ], [ 10.497136173495619, 43.608311981512713 ], [ 10.49045648507871, 43.632394013772682 ], [ 10.293418294039624, 43.579129757304884 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-LU", "NAME_1": "Lucca" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.261770662028662, 43.816127741758237 ], [ 10.210134311000047, 43.92023346600007 ], [ 10.143296703893075, 43.975092425311786 ], [ 10.21575432670079, 44.039997788966787 ], [ 10.232101983419795, 44.083382800375887 ], [ 10.185563895857115, 44.135941395778787 ], [ 10.197846610632553, 44.16844994251079 ], [ 10.185146415274858, 44.205407951615655 ], [ 10.231420830606851, 44.228819818080126 ], [ 10.253943701940273, 44.270603680115698 ], [ 10.287824641993609, 44.282389155235307 ], [ 10.359191832237229, 44.272029048002139 ], [ 10.400170837014514, 44.235884026926271 ], [ 10.471230410554995, 44.224590080767598 ], [ 10.483930605912747, 44.186808097515666 ], [ 10.570393012027864, 44.12562523391739 ], [ 10.610537056539897, 44.125702137643486 ], [ 10.716599072389272, 44.080833972409891 ], [ 10.735891065420333, 44.032076645820553 ], [ 10.668654734728193, 43.974870833422187 ], [ 10.645056100658508, 43.879344706293125 ], [ 10.716752880740842, 43.83890403119608 ], [ 10.727805126905082, 43.814118873886912 ], [ 10.711105908111165, 43.78634543579318 ], [ 10.665029245603193, 43.805967018662955 ], [ 10.603703559771475, 43.7575502680304 ], [ 10.47949212965807, 43.755550756761977 ], [ 10.445214784634572, 43.774161596980093 ], [ 10.447587831113481, 43.801978981344917 ], [ 10.420671326420575, 43.824731667232641 ], [ 10.261770662028662, 43.816127741758237 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-MS", "NAME_1": "Massa-Carrara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.143296703893075, 43.975092425311786 ], [ 10.105804884000065, 44.016750393000052 ], [ 10.028458440713065, 44.049255495102059 ], [ 10.053156664248661, 44.099532703371551 ], [ 9.989853439384717, 44.117616200027612 ], [ 9.968166426739174, 44.159968496548856 ], [ 9.898644939412407, 44.166395498853149 ], [ 9.902226482266315, 44.199881828083903 ], [ 9.861708902543796, 44.18592919097938 ], [ 9.852084878714152, 44.252594232737636 ], [ 9.716293857975131, 44.329883053959747 ], [ 9.68885000972017, 44.370060057725482 ], [ 9.751384191926888, 44.389231200759298 ], [ 9.820268471812483, 44.464465578323768 ], [ 9.866345133421135, 44.482966555562086 ], [ 9.989853439384717, 44.448041017878666 ], [ 10.001652755969872, 44.42822168038623 ], [ 9.984909590904863, 44.412796875575339 ], [ 10.072602465631292, 44.352130369420991 ], [ 10.204328544426744, 44.314194576918169 ], [ 10.253943701940273, 44.270603680115698 ], [ 10.231420830606851, 44.228819818080126 ], [ 10.185146415274858, 44.205407951615655 ], [ 10.197846610632553, 44.16844994251079 ], [ 10.185563895857115, 44.135941395778787 ], [ 10.232101983419795, 44.083382800375887 ], [ 10.21575432670079, 44.039997788966787 ], [ 10.143296703893075, 43.975092425311786 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-SP", "NAME_1": "La Spezia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.028458440713065, 44.049255495102059 ], [ 9.988536004000082, 44.059759833000044 ], [ 9.962738477000073, 44.044663804000038 ], [ 9.844737175000091, 44.108628648000035 ], [ 9.819590691000087, 44.093003648000035 ], [ 9.847504102000073, 44.072495835000041 ], [ 9.833262566000087, 44.052069403000075 ], [ 9.846364780000044, 44.046291408000059 ], [ 9.832286004000082, 44.042303778000075 ], [ 9.819834832000083, 44.063381252000056 ], [ 9.682627800000091, 44.136542059000078 ], [ 9.621104363000086, 44.148260809000078 ], [ 9.573008660000085, 44.191595770000049 ], [ 9.511241082000083, 44.215236721000053 ], [ 9.547258207100583, 44.257274408986746 ], [ 9.571516020847696, 44.253330317040479 ], [ 9.562309477600309, 44.283410884005093 ], [ 9.503444728991042, 44.327971432535549 ], [ 9.518166409652054, 44.355140623341072 ], [ 9.484811915637408, 44.379255614854742 ], [ 9.476396388182764, 44.412478271854752 ], [ 9.512431545379513, 44.428990723942718 ], [ 9.590917876858498, 44.428342530383475 ], [ 9.651430574661276, 44.406183105665775 ], [ 9.716293857975131, 44.329883053959747 ], [ 9.852084878714152, 44.252594232737636 ], [ 9.861708902543796, 44.18592919097938 ], [ 9.902226482266315, 44.199881828083903 ], [ 9.898644939412407, 44.166395498853149 ], [ 9.968166426739174, 44.159968496548856 ], [ 9.989853439384717, 44.117616200027612 ], [ 10.053156664248661, 44.099532703371551 ], [ 10.028458440713065, 44.049255495102059 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-GE", "NAME_1": "Genova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.511241082000083, 44.215236721000053 ], [ 9.484385613000086, 44.243841864000046 ], [ 9.436778191000087, 44.239488023000035 ], [ 9.374522332000083, 44.27179596600007 ], [ 9.367686394000089, 44.294419664000088 ], [ 9.230642123000052, 44.353705145000049 ], [ 9.21070397200009, 44.30532461100006 ], [ 9.146657748000052, 44.328558661000045 ], [ 9.130056186000047, 44.363348700000074 ], [ 9.102061394000089, 44.373968817000048 ], [ 8.762380405000044, 44.432114976000037 ], [ 8.678558790000068, 44.394680080000057 ], [ 8.617331414313298, 44.385759520885131 ], [ 8.587668327031679, 44.424651123650392 ], [ 8.668264032758884, 44.455368898955498 ], [ 8.650817743543996, 44.488668460580982 ], [ 8.599665397340175, 44.491184329293333 ], [ 8.564157583705537, 44.516244144951315 ], [ 8.599357780637035, 44.54255640235607 ], [ 8.609487175792538, 44.585337165577698 ], [ 8.632119012582336, 44.588698981572691 ], [ 8.724623898773871, 44.578624518806464 ], [ 8.773337279092118, 44.501258792958879 ], [ 8.825742066143448, 44.558827154449602 ], [ 8.903986698527319, 44.565188239145868 ], [ 8.906623417236915, 44.611847175806474 ], [ 8.875092653902868, 44.634281258872988 ], [ 8.923058964699464, 44.682807872485284 ], [ 8.95922595801153, 44.682599131744496 ], [ 9.134567762092558, 44.583480475643398 ], [ 9.179260146738386, 44.586919196263864 ], [ 9.225051163880096, 44.620273690278566 ], [ 9.360490621644885, 44.581931403311614 ], [ 9.407973534251198, 44.596191658018597 ], [ 9.490656642889746, 44.554905035638853 ], [ 9.493622951438056, 44.511651859445749 ], [ 9.45268789113328, 44.471958254769618 ], [ 9.436054589947332, 44.41992700292883 ], [ 9.476396388182764, 44.412478271854752 ], [ 9.484811915637408, 44.379255614854742 ], [ 9.518166409652054, 44.355140623341072 ], [ 9.503444728991042, 44.327971432535549 ], [ 9.562309477600309, 44.283410884005093 ], [ 9.571516020847696, 44.253330317040479 ], [ 9.547258207100583, 44.257274408986746 ], [ 9.511241082000083, 44.215236721000053 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-SV", "NAME_1": "Savona" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.630560756513738, 44.381894921544294 ], [ 8.466075066000087, 44.304266669000071 ], [ 8.394541863000086, 44.182359117000033 ], [ 8.256521030000044, 44.12836334800005 ], [ 8.233164910000085, 44.103583075000074 ], [ 8.216319207000083, 44.04523346600007 ], [ 8.152679884000065, 43.983221747000073 ], [ 8.167979363000086, 43.95648834800005 ], [ 8.130225812766355, 43.940343103909598 ], [ 8.093129733650301, 43.978913802230181 ], [ 7.999811859429769, 44.000282211155081 ], [ 7.992165374632293, 44.021332016359452 ], [ 8.038571626079658, 44.067166979772253 ], [ 7.983002776756734, 44.146916738216873 ], [ 8.006623383062674, 44.164538809818168 ], [ 8.048525239748017, 44.158803945545628 ], [ 8.077529147352266, 44.185830314117652 ], [ 8.069157565269393, 44.307789546850074 ], [ 8.138964696163782, 44.353163084308846 ], [ 8.164123388683436, 44.399404541286515 ], [ 8.205827491645437, 44.422431885523054 ], [ 8.195610206645711, 44.474551028107442 ], [ 8.236127786368229, 44.532317143321507 ], [ 8.353264020618042, 44.480648440573077 ], [ 8.404328476078319, 44.514651127247703 ], [ 8.476310900627539, 44.518111821003686 ], [ 8.564157583705537, 44.516244144951315 ], [ 8.599665397340175, 44.491184329293333 ], [ 8.650817743543996, 44.488668460580982 ], [ 8.668264032758884, 44.455368898955498 ], [ 8.587668327031679, 44.424651123650392 ], [ 8.630560756513738, 44.381894921544294 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-TP", "NAME_1": "Trapani" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.999522332000083, 36.835923570000034 ], [ 12.051524285000085, 36.790350653000075 ], [ 12.053477410000085, 36.767645575000074 ], [ 12.03060957100007, 36.741359768000052 ], [ 11.961192254000082, 36.765204169000071 ], [ 11.924978061000047, 36.81195709800005 ], [ 11.922211134000065, 36.828355210000041 ], [ 11.946136915000068, 36.841701565000051 ], [ 11.987315300000091, 36.824164130000042 ], [ 11.999522332000083, 36.835923570000034 ] ] ], [ [ [ 12.27320397200009, 37.939520575000074 ], [ 12.31421959700009, 37.946356512000079 ], [ 12.36882571700005, 37.92523834800005 ], [ 12.357676629000082, 37.914048570000034 ], [ 12.299652540000068, 37.919256903000075 ], [ 12.27320397200009, 37.939520575000074 ] ] ], [ [ [ 12.893890974058364, 37.573289215410568 ], [ 12.659353061000047, 37.565130927000041 ], [ 12.57781009200005, 37.652004299000055 ], [ 12.506195509000065, 37.665513414000088 ], [ 12.427012566000087, 37.797023830000057 ], [ 12.465017123000052, 37.822821356000077 ], [ 12.478688998000052, 37.88117096600007 ], [ 12.464121941000087, 37.912909247000073 ], [ 12.502940300000091, 37.997056382000039 ], [ 12.492930535000085, 38.021429755000042 ], [ 12.576345248000052, 38.07172272300005 ], [ 12.608409050000091, 38.062404690000051 ], [ 12.662445509000065, 38.116278387000079 ], [ 12.704600457000083, 38.110825914000088 ], [ 12.725352410000085, 38.125921942000048 ], [ 12.719899936000047, 38.175482489000046 ], [ 12.73178144600007, 38.192775783000059 ], [ 12.760915561000047, 38.180975653000075 ], [ 12.828786655000044, 38.069891669000071 ], [ 12.901133660000085, 38.02806224200009 ], [ 12.976111327443594, 38.044203885572955 ], [ 13.048227579339311, 37.954033201071354 ], [ 13.019311562478606, 37.906879879203018 ], [ 12.938364293777113, 37.904045406770081 ], [ 12.952712438328376, 37.830261223776461 ], [ 13.086460002427145, 37.811672355794542 ], [ 13.088459514594888, 37.770286856553184 ], [ 12.983298377518111, 37.73598753839417 ], [ 12.906130405393867, 37.688977038759333 ], [ 12.893891635990201, 37.662664782253898 ], [ 12.913315464237257, 37.645965562560662 ], [ 12.893890974058364, 37.573289215410568 ] ] ], [ [ [ 12.072276238000086, 37.967922268000052 ], [ 12.079274936000047, 37.950262762000079 ], [ 12.030446811000047, 37.984361070000034 ], [ 12.053558790000068, 37.992417710000041 ], [ 12.072276238000086, 37.967922268000052 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-ME", "NAME_1": "Messina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.179581502313503, 38.025692058954064 ], [ 14.331228061000047, 38.018011786000045 ], [ 14.431895379000082, 38.049383856000077 ], [ 14.464121941000087, 38.037176825000074 ], [ 14.511729363000086, 38.04437897300005 ], [ 14.634613477000073, 38.08148834800005 ], [ 14.73373457100007, 38.157619533000059 ], [ 14.907074415000068, 38.187689520000049 ], [ 14.94499759200005, 38.181789455000057 ], [ 14.969737175000091, 38.159247137000079 ], [ 15.049001498000052, 38.15180084800005 ], [ 15.087901238000086, 38.128241278000075 ], [ 15.17741946700005, 38.156317450000074 ], [ 15.240733269000089, 38.241156317000048 ], [ 15.237152540000068, 38.264797268000052 ], [ 15.245371941000087, 38.217230536000045 ], [ 15.291840040000068, 38.207017320000034 ], [ 15.399668816000087, 38.232570705000057 ], [ 15.52865644600007, 38.302639065000051 ], [ 15.651621941000087, 38.275295315000051 ], [ 15.56967207100007, 38.226955471000053 ], [ 15.55990644600007, 38.199774481000077 ], [ 15.57593834700009, 38.200181382000039 ], [ 15.500336134000065, 38.084947007000039 ], [ 15.392588738000086, 37.976141669000071 ], [ 15.259931751341302, 37.807769214484786 ], [ 15.144045529777372, 37.898090816537945 ], [ 14.97951427366479, 37.892696529121508 ], [ 14.928999134902142, 37.956604002172924 ], [ 14.866289172107599, 37.932423093051284 ], [ 14.830891221452703, 37.963228758200614 ], [ 14.769192000410499, 37.942365720601515 ], [ 14.761501570241251, 37.904792477191052 ], [ 14.732937116354833, 37.881204829239437 ], [ 14.73728770186591, 37.854936518105831 ], [ 14.763742781504163, 37.865285639220872 ], [ 14.794416610538121, 37.846059564697157 ], [ 14.7892969814705, 37.808695061128162 ], [ 14.75236094460189, 37.821120599036419 ], [ 14.671677348131084, 37.799488517880775 ], [ 14.602946876597059, 37.808288566663975 ], [ 14.56062753932946, 37.839237054046805 ], [ 14.574470313454185, 37.864143061353161 ], [ 14.561286719006887, 37.875964351073947 ], [ 14.513693943420719, 37.85781493591054 ], [ 14.493347263265548, 37.810595695534914 ], [ 14.468320406861267, 37.801850578241556 ], [ 14.44760019059629, 37.843554681203557 ], [ 14.421892182278384, 37.859473871222178 ], [ 14.279948817583829, 37.840159905954863 ], [ 14.276389246966176, 37.920810544071344 ], [ 14.179581502313503, 38.025692058954064 ] ] ], [ [ [ 14.966319207000083, 38.432928778000075 ], [ 15.007334832000083, 38.37767161700009 ], [ 14.986827019000089, 38.364081122000073 ], [ 14.948252800000091, 38.396429755000042 ], [ 14.966319207000083, 38.432928778000075 ] ] ], [ [ [ 14.907725457000083, 38.473944403000075 ], [ 14.900645379000082, 38.49868398600006 ], [ 14.924815300000091, 38.522365627000056 ], [ 14.957855665000068, 38.522040106000077 ], [ 14.979340040000068, 38.487534898000035 ], [ 14.952647332000083, 38.481390692000048 ], [ 14.966319207000083, 38.45343659100007 ], [ 14.907725457000083, 38.473944403000075 ] ] ], [ [ [ 14.863291863000086, 38.549017645000049 ], [ 14.861664259000065, 38.539292710000041 ], [ 14.793793165000068, 38.571600653000075 ], [ 14.86695397200009, 38.581122137000079 ], [ 14.876963738000086, 38.569525458000044 ], [ 14.863291863000086, 38.549017645000049 ] ] ], [ [ [ 14.346446160000085, 38.535142320000034 ], [ 14.342784050000091, 38.547267971000053 ], [ 14.35718834700009, 38.551214911000045 ], [ 14.360850457000083, 38.539048570000034 ], [ 14.346446160000085, 38.535142320000034 ] ] ], [ [ [ 14.576019727000073, 38.576646226000037 ], [ 14.585459832000083, 38.557440497000073 ], [ 14.551605665000068, 38.561590887000079 ], [ 14.542491082000083, 38.586859442000048 ], [ 14.576019727000073, 38.576646226000037 ] ] ], [ [ [ 15.227793816000087, 38.810288804000038 ], [ 15.237478061000047, 38.795965887000079 ], [ 15.217458530000044, 38.773016669000071 ], [ 15.187022332000083, 38.789007880000042 ], [ 15.227793816000087, 38.810288804000038 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-PA", "NAME_1": "Palermo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.976111327443594, 38.044203885572955 ], [ 13.06967207100007, 38.091131903000075 ], [ 13.054698113000086, 38.141831773000035 ], [ 13.10092207100007, 38.19009023600006 ], [ 13.207204623000052, 38.17609284100007 ], [ 13.239024285000085, 38.207017320000034 ], [ 13.31812584700009, 38.220648505000042 ], [ 13.371918165000068, 38.172796942000048 ], [ 13.391368035000085, 38.103176174000055 ], [ 13.513519727000073, 38.110541083000044 ], [ 13.541270379000082, 38.09406159100007 ], [ 13.557465040000068, 38.04913971600007 ], [ 13.651133660000085, 38.000962632000039 ], [ 13.711924675000091, 37.987941799000055 ], [ 13.705088738000086, 37.980454820000034 ], [ 13.812673373000052, 37.977932033000059 ], [ 14.020518425000091, 38.049383856000077 ], [ 14.083262566000087, 38.023830471000053 ], [ 14.179581502313503, 38.025692058954064 ], [ 14.276389246966176, 37.920810544071344 ], [ 14.279948817583829, 37.840159905954863 ], [ 14.261316004230196, 37.788238517093873 ], [ 14.292517177725529, 37.747028799339603 ], [ 14.26480965634056, 37.7030175666074 ], [ 14.173754965619139, 37.671431871783454 ], [ 14.134929280461904, 37.616752915114944 ], [ 14.060068438107919, 37.642966294758651 ], [ 13.974704665388003, 37.583178695140646 ], [ 13.906501537415977, 37.60692015144383 ], [ 13.881540599519042, 37.675573718352382 ], [ 13.790046455079846, 37.73341673819192 ], [ 13.732390202845579, 37.682989490172815 ], [ 13.679458072232251, 37.698403308865579 ], [ 13.644016176205525, 37.655018297456422 ], [ 13.444899957467044, 37.647668443244015 ], [ 13.386452689440034, 37.611842025888734 ], [ 13.399526420907591, 37.556855451617764 ], [ 13.356328177103649, 37.539255353151987 ], [ 13.326071827752628, 37.596241439590756 ], [ 13.349670461822313, 37.657061754096674 ], [ 13.241521043061653, 37.622509751623738 ], [ 13.187160690113728, 37.685098865320356 ], [ 13.055412638182702, 37.705368640850054 ], [ 13.027463417702563, 37.740700673896981 ], [ 13.088459514594888, 37.770286856553184 ], [ 13.081911662293351, 37.820560296220663 ], [ 13.031132852199335, 37.813671867962341 ], [ 12.952712438328376, 37.830261223776461 ], [ 12.938364293777113, 37.904045406770081 ], [ 13.019311562478606, 37.906879879203018 ], [ 13.048227579339311, 37.954033201071354 ], [ 12.976111327443594, 38.044203885572955 ] ], [ [ 14.01970466673697, 37.675848376701197 ], [ 14.066528398766593, 37.679836413119972 ], [ 14.087885821573366, 37.701688221134475 ], [ 14.068418047954538, 37.719683827046936 ], [ 14.040183183007457, 37.719420155715568 ], [ 14.011399002262124, 37.690185535134333 ], [ 14.01970466673697, 37.675848376701197 ] ] ], [ [ [ 13.16928144600007, 38.717271226000037 ], [ 13.185720248000052, 38.71751536700009 ], [ 13.197438998000052, 38.708319403000075 ], [ 13.153493686000047, 38.69476959800005 ], [ 13.16928144600007, 38.717271226000037 ] ] ], [ [ [ 13.150466352340288, 37.642109361357939 ], [ 13.176218306929286, 37.634792466399176 ], [ 13.178942916382482, 37.62536619629293 ], [ 13.14543461401621, 37.61456663534193 ], [ 13.150466352340288, 37.642109361357939 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-AG", "NAME_1": "Agrigento" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.039303510263661, 37.11447242763564 ], [ 13.894379102000073, 37.100816148000035 ], [ 13.832692905000044, 37.139553127000056 ], [ 13.715830925000091, 37.171372789000088 ], [ 13.569183790000068, 37.273504950000074 ], [ 13.42156009200005, 37.314398505000042 ], [ 13.278005405000044, 37.393703518000052 ], [ 13.25326582100007, 37.431789455000057 ], [ 13.174082879000082, 37.487005927000041 ], [ 13.016856316000087, 37.497544664000088 ], [ 12.974131707000083, 37.557440497000073 ], [ 12.893890974058364, 37.573289215410568 ], [ 12.913315464237257, 37.645965562560662 ], [ 12.893891635990201, 37.662664782253898 ], [ 12.906130405393867, 37.688977038759333 ], [ 13.012038612891672, 37.742700185165404 ], [ 13.075166056268472, 37.695920398507553 ], [ 13.187160690113728, 37.685098865320356 ], [ 13.241521043061653, 37.622509751623738 ], [ 13.337497610026674, 37.663477770282839 ], [ 13.347868703377969, 37.641494127052283 ], [ 13.326071827752628, 37.596241439590756 ], [ 13.356328177103649, 37.539255353151987 ], [ 13.399526420907591, 37.556855451617764 ], [ 13.386452689440034, 37.611842025888734 ], [ 13.444899957467044, 37.647668443244015 ], [ 13.599565490654868, 37.644020982782081 ], [ 13.644016176205525, 37.655018297456422 ], [ 13.679458072232251, 37.698403308865579 ], [ 13.78143317300254, 37.675156237770125 ], [ 13.816940987536555, 37.642395005824824 ], [ 13.816853096792954, 37.619279770844742 ], [ 13.73304938252295, 37.585244124916414 ], [ 13.671525942967889, 37.588045638995027 ], [ 13.690268619301321, 37.51530515700739 ], [ 13.681743227967559, 37.494090556434003 ], [ 13.643510804879725, 37.475578593077614 ], [ 13.644104066949126, 37.458857401148123 ], [ 13.73836676531397, 37.432490213152789 ], [ 13.838781808533611, 37.436225564358267 ], [ 13.861325754579923, 37.40388181299528 ], [ 13.894240794876794, 37.401981178588471 ], [ 13.90753425230389, 37.385930152454534 ], [ 13.882111888452869, 37.360299047862725 ], [ 13.927309643525234, 37.330405247604062 ], [ 13.963212965505932, 37.330185521644466 ], [ 14.019528885249827, 37.277791720711321 ], [ 13.989118728446556, 37.197404754825527 ], [ 14.039303510263661, 37.11447242763564 ] ], [ [ 13.156684614803112, 37.614204087148892 ], [ 13.178942916382482, 37.62536619629293 ], [ 13.150466352340288, 37.642109361357939 ], [ 13.140402875692132, 37.629387192864613 ], [ 13.156684614803112, 37.614204087148892 ] ] ], [ [ [ 12.859873894000089, 35.872219143000052 ], [ 12.874034050000091, 35.866441148000035 ], [ 12.872569207000083, 35.85228099200009 ], [ 12.845876498000052, 35.862697658000059 ], [ 12.859873894000089, 35.872219143000052 ] ] ], [ [ [ 12.621755405000044, 35.509751695000034 ], [ 12.61109459700009, 35.489243882000039 ], [ 12.526133660000085, 35.516669012000079 ], [ 12.555674675000091, 35.521226304000038 ], [ 12.621755405000044, 35.509751695000034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-CL", "NAME_1": "Caltanissetta" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.334587469993071, 37.000579302768934 ], [ 14.208506707000083, 37.081122137000079 ], [ 14.12631269600007, 37.112250067000048 ], [ 14.039303510263661, 37.11447242763564 ], [ 13.989118728446556, 37.197404754825527 ], [ 14.019528885249827, 37.277791720711321 ], [ 13.963212965505932, 37.330185521644466 ], [ 13.927309643525234, 37.330405247604062 ], [ 13.882111888452869, 37.360299047862725 ], [ 13.907050854113606, 37.389797339775384 ], [ 13.861325754579923, 37.40388181299528 ], [ 13.847834543429428, 37.433061502086616 ], [ 13.73836676531397, 37.432490213152789 ], [ 13.644104066949126, 37.458857401148123 ], [ 13.643510804879725, 37.475578593077614 ], [ 13.681743227967559, 37.494090556434003 ], [ 13.690268619301321, 37.51530515700739 ], [ 13.671525942967889, 37.588045638995027 ], [ 13.73304938252295, 37.585244124916414 ], [ 13.816853096792954, 37.619279770844742 ], [ 13.796242744407095, 37.66698240941065 ], [ 13.732390202845579, 37.682989490172815 ], [ 13.773391180758381, 37.725407704302086 ], [ 13.803273994898916, 37.733548573407916 ], [ 13.836408761155383, 37.694645984524527 ], [ 13.881540599519042, 37.675573718352382 ], [ 13.906501537415977, 37.60692015144383 ], [ 13.956533277988399, 37.585518783265229 ], [ 13.99663337712866, 37.590056136381577 ], [ 14.060068438107919, 37.642966294758651 ], [ 14.15435310960828, 37.609447006274308 ], [ 14.127634358638716, 37.525335675301164 ], [ 14.146992269277803, 37.490915508044225 ], [ 14.06936287209885, 37.412604958052327 ], [ 14.090061115228252, 37.346005834801417 ], [ 14.169931723670118, 37.325219700928415 ], [ 14.261733484812453, 37.343193334604678 ], [ 14.319301846303176, 37.304038059608729 ], [ 14.352546476438704, 37.306037570877152 ], [ 14.388845305866141, 37.183946502029414 ], [ 14.437273042616823, 37.171784636351845 ], [ 14.472341402533687, 37.13416744756961 ], [ 14.432219331157171, 37.086860316450441 ], [ 14.444018647742382, 37.052857629775758 ], [ 14.334587469993071, 37.000579302768934 ] ] ], [ [ [ 14.050312578162959, 37.721947010546103 ], [ 14.082436602667087, 37.712707508944334 ], [ 14.079382403375178, 37.687263171957795 ], [ 14.010168533650869, 37.677858874087747 ], [ 14.050312578162959, 37.721947010546103 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-RG", "NAME_1": "Ragusa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.000309863898337, 36.702367849042048 ], [ 14.982432488000086, 36.688869533000059 ], [ 14.88217207100007, 36.730658270000049 ], [ 14.780772332000083, 36.699367580000057 ], [ 14.684580925000091, 36.72601959800005 ], [ 14.658946160000085, 36.753810940000051 ], [ 14.582204623000052, 36.781317450000074 ], [ 14.487315300000091, 36.793361721000053 ], [ 14.394541863000086, 36.945013739000046 ], [ 14.334587469993071, 37.000579302768934 ], [ 14.444018647742382, 37.052857629775758 ], [ 14.519187107698826, 37.070666468083004 ], [ 14.564648535001879, 37.053868372427416 ], [ 14.704460552312639, 37.123214078267097 ], [ 14.756645613404316, 37.100175747013111 ], [ 14.765852156651704, 37.128970913876572 ], [ 14.793735457725177, 37.131981167796653 ], [ 14.835285752335608, 37.041519739144633 ], [ 14.90177501260672, 36.990554160546026 ], [ 14.924055287321664, 36.938951375405622 ], [ 14.906872669438144, 36.930832478536047 ], [ 14.836933701529063, 36.97444820292219 ], [ 14.849040635716733, 36.92921748859618 ], [ 14.936030385393963, 36.871989703062297 ], [ 14.927241322728833, 36.851621049771609 ], [ 14.852248644259532, 36.861794390298826 ], [ 14.843261826971741, 36.836833451502571 ], [ 14.985578726876724, 36.783461868070731 ], [ 15.000309863898337, 36.702367849042048 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-SR", "NAME_1": "Siracusa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.092535475095918, 37.35878395738623 ], [ 15.11068769600007, 37.321844794000071 ], [ 15.217458530000044, 37.284979559000078 ], [ 15.251963738000086, 37.257717190000051 ], [ 15.261241082000083, 37.23383209800005 ], [ 15.244883660000085, 37.246161200000074 ], [ 15.220225457000083, 37.22016022300005 ], [ 15.221690300000091, 37.237453518000052 ], [ 15.205414259000065, 37.244696356000077 ], [ 15.183441602000073, 37.207464911000045 ], [ 15.21648196700005, 37.155218817000048 ], [ 15.247569207000083, 37.158677476000037 ], [ 15.229177280000044, 37.149644273000035 ], [ 15.246592644000089, 37.118231512000079 ], [ 15.303233269000089, 37.101223049000055 ], [ 15.302744988000086, 37.062486070000034 ], [ 15.287933790000068, 37.06899648600006 ], [ 15.283702019000089, 37.048407294000071 ], [ 15.321055535000085, 37.040228583000044 ], [ 15.332367384000065, 37.011623440000051 ], [ 15.308929884000065, 37.017767645000049 ], [ 15.268077019000089, 37.000433661000045 ], [ 15.268077019000089, 36.973089911000045 ], [ 15.174652540000068, 36.94407786700009 ], [ 15.158376498000052, 36.924221096000053 ], [ 15.094004754000082, 36.79954661700009 ], [ 15.134287957000083, 36.675197658000059 ], [ 15.093923373000052, 36.65493398600006 ], [ 15.000309863898337, 36.702367849042048 ], [ 14.995620231288626, 36.765642042746038 ], [ 14.970197867437605, 36.794854690191755 ], [ 14.843261826971741, 36.836833451502571 ], [ 14.852248644259532, 36.861794390298826 ], [ 14.927241322728833, 36.851621049771609 ], [ 14.936030385393963, 36.871989703062297 ], [ 14.849040635716733, 36.92921748859618 ], [ 14.836933701529063, 36.97444820292219 ], [ 14.906872669438144, 36.930832478536047 ], [ 14.924055287321664, 36.938951375405622 ], [ 14.90177501260672, 36.990554160546026 ], [ 14.835285752335608, 37.041519739144633 ], [ 14.795691024521147, 37.121412319822696 ], [ 14.793735457725177, 37.131981167796653 ], [ 14.838735459973464, 37.128981899994642 ], [ 14.864575304406742, 37.197020232597652 ], [ 14.807336532754789, 37.19803097524931 ], [ 14.776970320423914, 37.216916473816184 ], [ 14.78778086839236, 37.239724092093127 ], [ 14.85734630019158, 37.271090060058214 ], [ 14.870178332563967, 37.293447238499255 ], [ 14.867321886995455, 37.3149364974214 ], [ 14.807468368870104, 37.316957981825396 ], [ 14.787824813764132, 37.33348142003149 ], [ 14.901071888456897, 37.410253883809673 ], [ 14.936711538206907, 37.407144753027922 ], [ 14.991115836526603, 37.370812964346783 ], [ 15.03152355326938, 37.377536597236144 ], [ 15.092535475095918, 37.35878395738623 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-CT", "NAME_1": "Catania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.259931751341302, 37.807769214484786 ], [ 15.206553582000083, 37.747748114000046 ], [ 15.220225457000083, 37.706732489000046 ], [ 15.16382897200009, 37.567694403000075 ], [ 15.096690300000091, 37.49445221600007 ], [ 15.092535475095918, 37.35878395738623 ], [ 15.03152355326938, 37.377536597236144 ], [ 14.991115836526603, 37.370812964346783 ], [ 14.936711538206907, 37.407144753027922 ], [ 14.901071888456897, 37.410253883809673 ], [ 14.787824813764132, 37.33348142003149 ], [ 14.807468368870104, 37.316957981825396 ], [ 14.867321886995455, 37.3149364974214 ], [ 14.85734630019158, 37.271090060058214 ], [ 14.777255964890855, 37.227496308807588 ], [ 14.807336532754789, 37.19803097524931 ], [ 14.864575304406742, 37.197020232597652 ], [ 14.838735459973464, 37.128981899994642 ], [ 14.771477156145806, 37.133727993851835 ], [ 14.749724225892294, 37.099143032125198 ], [ 14.704460552312639, 37.123214078267097 ], [ 14.564648535001879, 37.053868372427416 ], [ 14.519187107698826, 37.070666468083004 ], [ 14.444018647742382, 37.052857629775758 ], [ 14.432219331157171, 37.086860316450441 ], [ 14.472341402533687, 37.13416744756961 ], [ 14.437273042616823, 37.171784636351845 ], [ 14.388845305866141, 37.183946502029414 ], [ 14.352546476438704, 37.306037570877152 ], [ 14.432043549670084, 37.293710910729942 ], [ 14.454895113318798, 37.303675510516371 ], [ 14.434021088702252, 37.329658177183092 ], [ 14.447775972083434, 37.344863256034444 ], [ 14.508068943027297, 37.311574680527087 ], [ 14.509848728336124, 37.352136205621377 ], [ 14.580095312948345, 37.365605444535618 ], [ 14.582292578839429, 37.400190407161517 ], [ 14.628742775658566, 37.421207253112243 ], [ 14.611472267930822, 37.439345682157466 ], [ 14.514704686072378, 37.463131082933103 ], [ 14.511364842313583, 37.502846660744751 ], [ 14.542917577883884, 37.542518293184685 ], [ 14.6902881883492, 37.555855695983553 ], [ 14.772092391350782, 37.502385234790722 ], [ 14.794262802186552, 37.523358136268939 ], [ 14.794746200376835, 37.567501204217194 ], [ 14.835615342174265, 37.59658201554754 ], [ 14.791867782572069, 37.659709459823716 ], [ 14.797734482060662, 37.712751454316162 ], [ 14.73139903014112, 37.684263904155841 ], [ 14.712041119502032, 37.706818836320224 ], [ 14.730651959720149, 37.748742666141084 ], [ 14.715754498471313, 37.775131827271991 ], [ 14.73994639371108, 37.791940909945026 ], [ 14.74220957721019, 37.818198234960562 ], [ 14.7892969814705, 37.808695061128162 ], [ 14.799404403490428, 37.825471184547496 ], [ 14.775124617507061, 37.862802728862846 ], [ 14.731069440302406, 37.863461908540216 ], [ 14.769192000410499, 37.942365720601515 ], [ 14.830891221452703, 37.963228758200614 ], [ 14.866289172107599, 37.932423093051284 ], [ 14.928999134902142, 37.956604002172924 ], [ 14.97951427366479, 37.892696529121508 ], [ 15.144045529777372, 37.898090816537945 ], [ 15.259931751341302, 37.807769214484786 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-CI", "NAME_1": "Carbonia-Iglesias" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.455902540000068, 39.073553778000075 ], [ 8.483897332000083, 39.06976959800005 ], [ 8.459320509000065, 39.049790757000039 ], [ 8.437022332000083, 38.967189846000053 ], [ 8.40984134200005, 38.961818752000056 ], [ 8.34929446700005, 39.062160549000055 ], [ 8.346039259000065, 39.097723700000074 ], [ 8.360362175000091, 39.118150132000039 ], [ 8.444590691000087, 39.102728583000044 ], [ 8.455902540000068, 39.073553778000075 ] ] ], [ [ [ 8.305837436000047, 39.193304755000042 ], [ 8.305837436000047, 39.104559637000079 ], [ 8.254730665000068, 39.107123114000046 ], [ 8.257334832000083, 39.124416408000059 ], [ 8.224619988000086, 39.157049872000073 ], [ 8.229991082000083, 39.172796942000048 ], [ 8.305837436000047, 39.193304755000042 ] ] ], [ [ [ 8.610337184669124, 38.954892976342286 ], [ 8.580088738000086, 38.960516669000071 ], [ 8.559580925000091, 39.056708075000074 ], [ 8.504405144000089, 39.062933661000045 ], [ 8.518077019000089, 39.08344147300005 ], [ 8.504405144000089, 39.090887762000079 ], [ 8.482758009000065, 39.08038971600007 ], [ 8.465098504000082, 39.11945221600007 ], [ 8.442230665000068, 39.118150132000039 ], [ 8.435394727000073, 39.165961005000042 ], [ 8.40951582100007, 39.169338283000059 ], [ 8.37281334700009, 39.222072658000059 ], [ 8.432139519000089, 39.301825262000079 ], [ 8.417246941000087, 39.339016018000052 ], [ 8.374034050000091, 39.378851630000042 ], [ 8.419775254024728, 39.46749883520306 ], [ 8.530627309103011, 39.479440974021713 ], [ 8.643303094861949, 39.383288627368245 ], [ 8.699267452530876, 39.374851126778083 ], [ 8.701047237839759, 39.333839161847834 ], [ 8.743234738991987, 39.266965380248052 ], [ 8.764570188663242, 39.1869189903191 ], [ 8.817853882250859, 39.159958540254422 ], [ 8.821237671381425, 39.124758343322867 ], [ 8.849033082610674, 39.087404826771319 ], [ 8.814250367160696, 39.046953164656827 ], [ 8.744553098346785, 39.049556925012041 ], [ 8.695641963405876, 39.028562051297627 ], [ 8.66672594744449, 39.043184854197648 ], [ 8.610337184669124, 38.954892976342286 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-SS", "NAME_1": "Sassari" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.27475019600007, 41.05727773600006 ], [ 8.251149936000047, 41.043768622000073 ], [ 8.246429884000065, 40.993638414000088 ], [ 8.209646030000044, 40.995794989000046 ], [ 8.228851759000065, 41.041734117000033 ], [ 8.275645379000082, 41.06976959800005 ], [ 8.277842644000089, 41.105658270000049 ], [ 8.30209394600007, 41.105047919000071 ], [ 8.326182488000086, 41.126125393000052 ], [ 8.341319207000083, 41.074123440000051 ], [ 8.27475019600007, 41.05727773600006 ] ] ], [ [ [ 8.392115538387502, 40.41232060536619 ], [ 8.379893425000091, 40.468695380000042 ], [ 8.33171634200005, 40.510687567000048 ], [ 8.312022332000083, 40.578070380000042 ], [ 8.291514519000089, 40.595363674000055 ], [ 8.216319207000083, 40.57062409100007 ], [ 8.195974155000044, 40.578070380000042 ], [ 8.216319207000083, 40.612209377000056 ], [ 8.193369988000086, 40.61749909100007 ], [ 8.16179446700005, 40.563788153000075 ], [ 8.147308790000068, 40.59320709800005 ], [ 8.140635613000086, 40.625189520000049 ], [ 8.173838738000086, 40.641587632000039 ], [ 8.197438998000052, 40.691229559000078 ], [ 8.133799675000091, 40.728908596000053 ], [ 8.215342644000089, 40.881415106000077 ], [ 8.209727410000085, 40.914455471000053 ], [ 8.178884311000047, 40.928168036000045 ], [ 8.202159050000091, 40.975287177000041 ], [ 8.236175977000073, 40.954779364000046 ], [ 8.233164910000085, 40.910101630000042 ], [ 8.277842644000089, 40.865423895000049 ], [ 8.500987175000091, 40.824448960000041 ], [ 8.598399285000085, 40.85297272300005 ], [ 8.640961134000065, 40.896470445000034 ], [ 8.709157748000052, 40.920640367000033 ], [ 8.764414910000085, 40.913804429000038 ], [ 8.81124993258403, 40.940829680145001 ], [ 8.88117908025032, 40.933217885397085 ], [ 8.935473515590274, 40.957102163933712 ], [ 8.96656482610581, 40.952751577523259 ], [ 8.981132697515989, 40.903005481417836 ], [ 8.903063846619204, 40.88716319602463 ], [ 8.897856326808039, 40.870496935585095 ], [ 8.910468632321511, 40.853621935304034 ], [ 8.993371466919655, 40.84183360483695 ], [ 9.027077523009268, 40.773147078674697 ], [ 9.01002674124112, 40.682784525985085 ], [ 9.117758679419524, 40.646749368788335 ], [ 9.176557509521444, 40.654516702683679 ], [ 9.193762099641162, 40.61873423070017 ], [ 9.19176258837274, 40.512837010219812 ], [ 9.25844960236725, 40.505190525422393 ], [ 9.280554095595051, 40.485832614783305 ], [ 9.240651750178131, 40.454675386659744 ], [ 9.222766007245411, 40.409576507549787 ], [ 9.183303115546323, 40.371058439995011 ], [ 9.059113657669172, 40.33257333079456 ], [ 9.027912484173783, 40.30532723626294 ], [ 8.941318242842613, 40.372761320678364 ], [ 8.858437380480723, 40.392360931311885 ], [ 8.837079957673893, 40.413850189334767 ], [ 8.816052124705777, 40.405830170226125 ], [ 8.805615112847192, 40.362697844030265 ], [ 8.729172238907665, 40.348107999484569 ], [ 8.646511102505372, 40.306348965032669 ], [ 8.5927000653557, 40.338132413580013 ], [ 8.510258655812322, 40.423166596461215 ], [ 8.451745470177286, 40.39789804096182 ], [ 8.392115538387502, 40.41232060536619 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-NU", "NAME_1": "Nuoro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.74884406844199, 40.660342456989746 ], [ 9.756521030000044, 40.59516022300005 ], [ 9.826426629000082, 40.52960846600007 ], [ 9.761729363000086, 40.390692450000074 ], [ 9.712412957000083, 40.366400458000044 ], [ 9.645518425000091, 40.296087958000044 ], [ 9.626149936000047, 40.263088283000059 ], [ 9.627177059235587, 40.224523231241221 ], [ 9.57718496661289, 40.197331626753169 ], [ 9.525966702801099, 40.218601158816398 ], [ 9.427199608774913, 40.102761310785866 ], [ 9.30030751458014, 40.042600175957318 ], [ 9.294682514186661, 40.025384598820153 ], [ 9.319072163149769, 40.008432693913676 ], [ 9.318039448261914, 39.985723952498404 ], [ 9.283871967117591, 39.957972486640926 ], [ 9.280400287243424, 39.917323070803036 ], [ 9.20176014741287, 39.90387580502437 ], [ 9.200200088063582, 39.826213448591773 ], [ 9.159265028658126, 39.829575265486085 ], [ 9.155353895066185, 39.866489329219121 ], [ 8.988229865615779, 39.932099682954004 ], [ 9.01138904596769, 39.980703200292453 ], [ 8.957841681048706, 39.997852859821592 ], [ 8.956457403186619, 40.029152909279333 ], [ 8.985329474675495, 40.052531816490102 ], [ 9.026682015562528, 40.03746955987225 ], [ 9.044963265941931, 40.062782060743473 ], [ 8.99269031500603, 40.207504967280386 ], [ 8.767822142577813, 40.198012779566113 ], [ 8.688852412908489, 40.210383385085152 ], [ 8.661935908215582, 40.254943933615607 ], [ 8.618649773668096, 40.276169520307121 ], [ 8.620319695097862, 40.318785489059053 ], [ 8.658771845044612, 40.306678554871382 ], [ 8.71034167183069, 40.341285489733536 ], [ 8.805615112847192, 40.362697844030265 ], [ 8.816052124705777, 40.405830170226125 ], [ 8.831784547119128, 40.414113861565454 ], [ 8.858437380480723, 40.392360931311885 ], [ 8.941318242842613, 40.372761320678364 ], [ 9.027912484173783, 40.30532723626294 ], [ 9.059113657669172, 40.33257333079456 ], [ 9.183303115546323, 40.371058439995011 ], [ 9.222766007245411, 40.409576507549787 ], [ 9.240651750178131, 40.454675386659744 ], [ 9.274929095201571, 40.476867770631088 ], [ 9.25844960236725, 40.505190525422393 ], [ 9.199233291683072, 40.505443210635633 ], [ 9.189477431738055, 40.536754247110821 ], [ 9.319138081657115, 40.550168554535162 ], [ 9.384836326135542, 40.587412208106912 ], [ 9.424035546503262, 40.653527933167538 ], [ 9.503708401221729, 40.648430277235491 ], [ 9.602058013766282, 40.698659770631878 ], [ 9.637873445003493, 40.695561625968253 ], [ 9.671711337208421, 40.666162210917264 ], [ 9.703571689481862, 40.677170512609052 ], [ 9.74884406844199, 40.660342456989746 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-OT", "NAME_1": "Olbia-Tempio" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.81124993258403, 40.940829680145001 ], [ 8.887950066000087, 41.01626211100006 ], [ 8.881114129000082, 41.023667710000041 ], [ 8.922699415000068, 41.036769924000055 ], [ 9.00554446700005, 41.121893622000073 ], [ 9.141856316000087, 41.152777411000045 ], [ 9.16342207100007, 41.184149481000077 ], [ 9.171071811000047, 41.242905992000033 ], [ 9.230642123000052, 41.262640692000048 ], [ 9.268077019000089, 41.23663971600007 ], [ 9.267425977000073, 41.201971747000073 ], [ 9.278330925000091, 41.195013739000046 ], [ 9.285329623000052, 41.221747137000079 ], [ 9.285329623000052, 41.195013739000046 ], [ 9.312510613000086, 41.201239325000074 ], [ 9.333018425000091, 41.187567450000074 ], [ 9.335215691000087, 41.211655992000033 ], [ 9.388194207000083, 41.180731512000079 ], [ 9.422373894000089, 41.180731512000079 ], [ 9.408702019000089, 41.160305080000057 ], [ 9.442881707000083, 41.132961330000057 ], [ 9.442881707000083, 41.091986395000049 ], [ 9.469086134000065, 41.146185614000046 ], [ 9.523936394000089, 41.149725653000075 ], [ 9.52475019600007, 41.132961330000057 ], [ 9.566416863000086, 41.119330145000049 ], [ 9.545909050000091, 41.077704169000071 ], [ 9.539073113000086, 41.091986395000049 ], [ 9.511892123000052, 41.01626211100006 ], [ 9.532237175000091, 41.01626211100006 ], [ 9.52475019600007, 41.030503648000035 ], [ 9.543142123000052, 41.036932684000078 ], [ 9.552744988000086, 41.009466864000046 ], [ 9.615733269000089, 41.019598700000074 ], [ 9.662608269000089, 41.002630927000041 ], [ 9.651215040000068, 40.991115627000056 ], [ 9.58757571700005, 40.995794989000046 ], [ 9.571136915000068, 40.934881903000075 ], [ 9.504242384000065, 40.926906643000052 ], [ 9.573252800000091, 40.906398830000057 ], [ 9.642100457000083, 40.920640367000033 ], [ 9.614105665000068, 40.893377997000073 ], [ 9.655772332000083, 40.876044012000079 ], [ 9.663259311000047, 40.858221747000073 ], [ 9.683116082000083, 40.865423895000049 ], [ 9.72396894600007, 40.844916083000044 ], [ 9.68100019600007, 40.829779364000046 ], [ 9.689789259000065, 40.810777085000041 ], [ 9.65788821700005, 40.799872137000079 ], [ 9.703949415000068, 40.759426174000055 ], [ 9.74884406844199, 40.660342456989746 ], [ 9.703571689481862, 40.677170512609052 ], [ 9.671711337208421, 40.666162210917264 ], [ 9.637873445003493, 40.695561625968253 ], [ 9.602058013766282, 40.698659770631878 ], [ 9.503708401221729, 40.648430277235491 ], [ 9.424035546503262, 40.653527933167538 ], [ 9.384836326135542, 40.587412208106912 ], [ 9.319138081657115, 40.550168554535162 ], [ 9.189477431738055, 40.536754247110821 ], [ 9.193762099641162, 40.61873423070017 ], [ 9.176557509521444, 40.654516702683679 ], [ 9.117758679419524, 40.646749368788335 ], [ 9.01002674124112, 40.682784525985085 ], [ 9.027077523009268, 40.773147078674697 ], [ 8.993371466919655, 40.84183360483695 ], [ 8.900536990889407, 40.863509630465046 ], [ 8.903063846619204, 40.88716319602463 ], [ 8.981132697515989, 40.903005481417836 ], [ 8.96656482610581, 40.952751577523259 ], [ 8.935473515590274, 40.957102163933712 ], [ 8.88117908025032, 40.933217885397085 ], [ 8.81124993258403, 40.940829680145001 ] ] ], [ [ [ 9.474782748000052, 41.236070054000038 ], [ 9.474864129000082, 41.179266669000071 ], [ 9.464366082000083, 41.172674872000073 ], [ 9.437022332000083, 41.185939846000053 ], [ 9.459971550000091, 41.242377020000049 ], [ 9.474782748000052, 41.236070054000038 ] ] ], [ [ [ 9.430918816000087, 41.224798895000049 ], [ 9.395274285000085, 41.210598049000055 ], [ 9.373057488000086, 41.229885158000059 ], [ 9.414235873000052, 41.262437242000033 ], [ 9.430918816000087, 41.224798895000049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-OR", "NAME_1": "Oristrano" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.548520390112957, 39.697913201837778 ], [ 8.56576582100007, 39.701076565000051 ], [ 8.504405144000089, 39.721502997000073 ], [ 8.545258009000065, 39.782945054000038 ], [ 8.518077019000089, 39.762518622000073 ], [ 8.55209394600007, 39.820786851000037 ], [ 8.545258009000065, 39.878566799000055 ], [ 8.494151238000086, 39.91242096600007 ], [ 8.463063998000052, 39.914129950000074 ], [ 8.435394727000073, 39.898993231000077 ], [ 8.463389519000089, 39.898993231000077 ], [ 8.435394727000073, 39.85805898600006 ], [ 8.437510613000086, 39.876776434000078 ], [ 8.394541863000086, 39.912665106000077 ], [ 8.407074415000068, 40.02220286700009 ], [ 8.377207879000082, 40.033758856000077 ], [ 8.468597852000073, 40.062160549000055 ], [ 8.49000084700009, 40.104478257000039 ], [ 8.463389519000089, 40.163153387000079 ], [ 8.476084832000083, 40.292141018000052 ], [ 8.441254102000073, 40.331447658000059 ], [ 8.385996941000087, 40.351792710000041 ], [ 8.392115538387502, 40.41232060536619 ], [ 8.430629746465627, 40.396118255652937 ], [ 8.500986194956909, 40.424616791931385 ], [ 8.529638539586927, 40.411894623438116 ], [ 8.620319695097862, 40.318785489059053 ], [ 8.618649773668096, 40.276169520307121 ], [ 8.661935908215582, 40.254943933615607 ], [ 8.678019892703844, 40.214019859428959 ], [ 8.767822142577813, 40.198012779566113 ], [ 8.99269031500603, 40.207504967280386 ], [ 9.044963265941931, 40.062782060743473 ], [ 9.026682015562528, 40.03746955987225 ], [ 8.985329474675495, 40.052531816490102 ], [ 8.956457403186619, 40.029152909279333 ], [ 8.957841681048706, 39.997852859821592 ], [ 9.01138904596769, 39.980703200292453 ], [ 8.988229865615779, 39.932099682954004 ], [ 9.158210340634696, 39.863138498442936 ], [ 9.159265028658126, 39.829575265486085 ], [ 9.062892954246422, 39.816523507154102 ], [ 9.003281136115504, 39.760515204113346 ], [ 8.940790899280557, 39.784882880840257 ], [ 8.862282595565318, 39.678205630685284 ], [ 8.751650266446632, 39.632337708918101 ], [ 8.660705438705008, 39.638237366761018 ], [ 8.603444694816801, 39.689928042645022 ], [ 8.548520390112957, 39.697913201837778 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-VS", "NAME_1": "Medio Campidano" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.398064080242118, 39.44650217996972 ], [ 8.386892123000052, 39.469794012000079 ], [ 8.463389519000089, 39.576849677000041 ], [ 8.446055535000085, 39.762518622000073 ], [ 8.51693769600007, 39.702134507000039 ], [ 8.603444694816801, 39.689928042645022 ], [ 8.67711901393136, 39.633974671993485 ], [ 8.751650266446632, 39.632337708918101 ], [ 8.843825562799452, 39.667461001224183 ], [ 8.892714725504163, 39.708725651367672 ], [ 8.940790899280557, 39.784882880840257 ], [ 9.071330454836584, 39.746815252222063 ], [ 9.042216684252537, 39.639456849254145 ], [ 8.995700568926111, 39.546303769503311 ], [ 9.010114631984663, 39.48765874775296 ], [ 8.96801502067666, 39.456809137231858 ], [ 8.970344122683116, 39.4147754444312 ], [ 8.929958379075913, 39.399537407225523 ], [ 8.78217028712902, 39.403657279759614 ], [ 8.699267452530876, 39.374851126778083 ], [ 8.643303094861949, 39.383288627368245 ], [ 8.530627309103011, 39.479440974021713 ], [ 8.419775254024728, 39.46749883520306 ], [ 8.398064080242118, 39.44650217996972 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-CA", "NAME_1": "Cagliari" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.646300043401228, 39.549088465251273 ], [ 9.628428582000083, 39.501776434000078 ], [ 9.644867384000065, 39.483954169000071 ], [ 9.639008009000065, 39.452460028000075 ], [ 9.600433790000068, 39.341009833000044 ], [ 9.634613477000073, 39.296942450000074 ], [ 9.581879102000073, 39.266302802000041 ], [ 9.567556186000047, 39.238104559000078 ], [ 9.579925977000073, 39.187079169000071 ], [ 9.566416863000086, 39.149237372000073 ], [ 9.522715691000087, 39.124904690000051 ], [ 9.518565300000091, 39.104559637000079 ], [ 9.496348504000082, 39.133612372000073 ], [ 9.442881707000083, 39.124416408000059 ], [ 9.292165561000047, 39.221258856000077 ], [ 9.216319207000083, 39.228013414000088 ], [ 9.166026238000086, 39.187079169000071 ], [ 9.136892123000052, 39.194322007000039 ], [ 9.073008660000085, 39.248521226000037 ], [ 9.013926629000082, 39.263902085000041 ], [ 9.037852410000085, 39.227118231000077 ], [ 9.07984459700009, 39.224595445000034 ], [ 9.018321160000085, 39.146144924000055 ], [ 9.018728061000047, 39.103949286000045 ], [ 9.044932488000086, 39.051255601000037 ], [ 9.025726759000065, 38.995306708000044 ], [ 9.004649285000085, 38.995306708000044 ], [ 8.85328209700009, 38.877997137000079 ], [ 8.805430535000085, 38.905951239000046 ], [ 8.805430535000085, 38.885443427000041 ], [ 8.766612175000091, 38.920396226000037 ], [ 8.71656334700009, 38.932603257000039 ], [ 8.668793165000068, 38.910589911000045 ], [ 8.640961134000065, 38.864325262000079 ], [ 8.642832879000082, 38.889960028000075 ], [ 8.599864129000082, 38.89907461100006 ], [ 8.61500084700009, 38.923000393000052 ], [ 8.610337184669124, 38.954892976342286 ], [ 8.66672594744449, 39.043184854197648 ], [ 8.695641963405876, 39.028562051297627 ], [ 8.744553098346785, 39.049556925012041 ], [ 8.814250367160696, 39.046953164656827 ], [ 8.849033082610674, 39.087404826771319 ], [ 8.821237671381425, 39.124758343322867 ], [ 8.817853882250859, 39.159958540254422 ], [ 8.764570188663242, 39.1869189903191 ], [ 8.743234738991987, 39.266965380248052 ], [ 8.701047237839759, 39.333839161847834 ], [ 8.699267452530876, 39.374851126778083 ], [ 8.78217028712902, 39.403657279759614 ], [ 8.929958379075913, 39.399537407225523 ], [ 8.978408088062793, 39.422037407900007 ], [ 8.96801502067666, 39.456809137231858 ], [ 9.010114631984663, 39.48765874775296 ], [ 8.995700568926111, 39.546303769503311 ], [ 9.073110240145468, 39.742695378788653 ], [ 9.003281136115504, 39.760515204113346 ], [ 9.062892954246422, 39.816523507154102 ], [ 9.101257213449628, 39.83170661286988 ], [ 9.200200088063582, 39.826213448591773 ], [ 9.20176014741287, 39.90387580502437 ], [ 9.280400287243424, 39.917323070803036 ], [ 9.277917376885398, 39.838671944854354 ], [ 9.385583396556513, 39.740454167525797 ], [ 9.346516012304107, 39.685775210857287 ], [ 9.397997947447323, 39.688049380474524 ], [ 9.399448142917436, 39.649794985150436 ], [ 9.419509178605722, 39.63263433950317 ], [ 9.472968653680425, 39.632930970088182 ], [ 9.551125394421376, 39.575538390084603 ], [ 9.646300043401228, 39.549088465251273 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-OG", "NAME_1": "Ogliastra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.627177059235587, 40.224523231241221 ], [ 9.654633009000065, 40.144598700000074 ], [ 9.732269727000073, 40.083929755000042 ], [ 9.68726647200009, 39.961167710000041 ], [ 9.69662519600007, 39.933783270000049 ], [ 9.717784050000091, 39.933783270000049 ], [ 9.684336785000085, 39.894232489000046 ], [ 9.69662519600007, 39.85187409100007 ], [ 9.670258009000065, 39.793768622000073 ], [ 9.676280144000089, 39.718085028000075 ], [ 9.651133660000085, 39.652492580000057 ], [ 9.646300043401228, 39.549088465251273 ], [ 9.551125394421376, 39.575538390084603 ], [ 9.472968653680425, 39.632930970088182 ], [ 9.419509178605722, 39.63263433950317 ], [ 9.399448142917436, 39.649794985150436 ], [ 9.397997947447323, 39.688049380474524 ], [ 9.346516012304107, 39.685775210857287 ], [ 9.385583396556513, 39.740454167525797 ], [ 9.308437397567843, 39.798187324385481 ], [ 9.272973528405601, 39.850723947552126 ], [ 9.283871967117591, 39.957972486640926 ], [ 9.318039448261914, 39.985723952498404 ], [ 9.319072163149769, 40.008432693913676 ], [ 9.294682514186661, 40.025384598820153 ], [ 9.30030751458014, 40.042600175957318 ], [ 9.427199608774913, 40.102761310785866 ], [ 9.525966702801099, 40.218601158816398 ], [ 9.57718496661289, 40.197331626753169 ], [ 9.627177059235587, 40.224523231241221 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-EN", "NAME_1": "Enna" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.74220957721019, 37.818198234960562 ], [ 14.73994639371108, 37.791940909945026 ], [ 14.715754498471313, 37.775131827271991 ], [ 14.730651959720149, 37.748742666141084 ], [ 14.714897564171224, 37.697436511585693 ], [ 14.745900983943216, 37.686933582119082 ], [ 14.797734482060662, 37.712751454316162 ], [ 14.791867782572069, 37.659709459823716 ], [ 14.835615342174265, 37.59658201554754 ], [ 14.794746200376835, 37.567501204217194 ], [ 14.784441024633566, 37.509350566775197 ], [ 14.772092391350782, 37.502385234790722 ], [ 14.6902881883492, 37.555855695983553 ], [ 14.528547459297783, 37.53224607579574 ], [ 14.511364842313583, 37.502846660744751 ], [ 14.514704686072378, 37.463131082933103 ], [ 14.611472267930822, 37.439345682157466 ], [ 14.628742775658566, 37.421207253112243 ], [ 14.582292578839429, 37.400190407161517 ], [ 14.580095312948345, 37.365605444535618 ], [ 14.509848728336124, 37.352136205621377 ], [ 14.508068943027297, 37.311574680527087 ], [ 14.447775972083434, 37.344863256034444 ], [ 14.434021088702252, 37.329658177183092 ], [ 14.454895113318798, 37.303675510516371 ], [ 14.404973236625551, 37.293425266263 ], [ 14.319301846303176, 37.304038059608729 ], [ 14.261733484812453, 37.343193334604678 ], [ 14.169931723670118, 37.325219700928415 ], [ 14.090061115228252, 37.346005834801417 ], [ 14.06936287209885, 37.412604958052327 ], [ 14.146992269277803, 37.490915508044225 ], [ 14.127634358638716, 37.525335675301164 ], [ 14.156901937574332, 37.601525864027394 ], [ 14.134929280461904, 37.616752915114944 ], [ 14.173754965619139, 37.671431871783454 ], [ 14.26480965634056, 37.7030175666074 ], [ 14.286211024519162, 37.73276854463262 ], [ 14.291989833264154, 37.757509756570016 ], [ 14.259777918016482, 37.809079582456718 ], [ 14.279948817583829, 37.840159905954863 ], [ 14.421892182278384, 37.859473871222178 ], [ 14.475461520332885, 37.800982658722717 ], [ 14.493347263265548, 37.810595695534914 ], [ 14.50444345480156, 37.850157464994993 ], [ 14.561286719006887, 37.875964351073947 ], [ 14.574470313454185, 37.864143061353161 ], [ 14.56062753932946, 37.839237054046805 ], [ 14.602946876597059, 37.808288566663975 ], [ 14.671677348131084, 37.799488517880775 ], [ 14.74220957721019, 37.818198234960562 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-BN", "NAME_1": "Benevento" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.421386810952527, 41.150703245258512 ], [ 14.460212496109818, 41.177476927718033 ], [ 14.420969330370269, 41.230244263861664 ], [ 14.424397064872608, 41.256215944410258 ], [ 14.488073824947037, 41.306972782268076 ], [ 14.445315034860982, 41.345743535935412 ], [ 14.453291109497115, 41.3638380187096 ], [ 14.51384842086793, 41.389031095908308 ], [ 14.594597266750441, 41.370781378457821 ], [ 14.659196878732928, 41.403213020564408 ], [ 14.746823834952011, 41.409716926594854 ], [ 14.779585066897312, 41.444675424431296 ], [ 14.827024033232533, 41.425691049002694 ], [ 14.995290641449913, 41.482072886354615 ], [ 15.097046016260606, 41.425844857354264 ], [ 15.101858028625088, 41.390600715050937 ], [ 15.066965449296049, 41.348643926875695 ], [ 15.080149042844027, 41.326319706789036 ], [ 15.128247189755996, 41.30770886657092 ], [ 15.143452268607291, 41.274618044786905 ], [ 15.104099239888001, 41.248075075304484 ], [ 14.991555290244435, 41.272036257567208 ], [ 14.983029898910672, 41.239967164552979 ], [ 14.998169059254678, 41.205953491760226 ], [ 14.963913687366755, 41.165468870392033 ], [ 15.000168571422421, 41.134795041358075 ], [ 15.000256462165964, 41.11074596835175 ], [ 14.834978135632412, 41.038477899335589 ], [ 14.781672469808598, 41.059055292467747 ], [ 14.753129988158435, 41.013824578141737 ], [ 14.712480572320544, 41.058132440559689 ], [ 14.599650978210036, 41.051101190967188 ], [ 14.571965429960585, 41.00953990933931 ], [ 14.531316014122751, 41.013352166069581 ], [ 14.500664158224311, 41.051496698413871 ], [ 14.429274994845116, 41.047959100931735 ], [ 14.431889741318514, 41.105769161517571 ], [ 14.356589445246698, 41.149286009042044 ], [ 14.378430266243754, 41.164007688803792 ], [ 14.421386810952527, 41.150703245258512 ] ] ], [ [ [ 14.691254985629087, 41.029381219068 ], [ 14.707404888624694, 41.006331901695887 ], [ 14.687805277991174, 40.972746695603519 ], [ 14.672402445416481, 40.988940543970898 ], [ 14.691254985629087, 41.029381219068 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-AT", "NAME_1": "Asti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.023959809297764, 44.805854751595461 ], [ 7.974037932604517, 44.850591081613118 ], [ 7.943364102671183, 44.846262468338239 ], [ 7.890739589660313, 44.899853778628938 ], [ 7.897331386434303, 44.955917013159592 ], [ 7.929499356310259, 44.986513938467453 ], [ 7.942682950757558, 45.037501489302258 ], [ 7.899748379184359, 45.060528833538797 ], [ 7.893530116721479, 45.090290797682144 ], [ 8.02885971150647, 45.132654080321515 ], [ 8.075134127737783, 45.09744289727189 ], [ 8.102797702851717, 45.128589139277324 ], [ 8.129033055630998, 45.123030056491871 ], [ 8.110422214513562, 45.098816189015906 ], [ 8.14254623991701, 45.049443628120912 ], [ 8.19229233512317, 45.038611107916267 ], [ 8.223054054900729, 45.0137710191172 ], [ 8.237863626305284, 45.055903589678906 ], [ 8.303232280944997, 45.072240260279784 ], [ 8.338630231599893, 45.043587914750447 ], [ 8.351681989931876, 44.997917747605925 ], [ 8.387475448033513, 44.968968771491575 ], [ 8.383476424597291, 44.934219014395978 ], [ 8.362228864770259, 44.911784931329521 ], [ 8.372292342317735, 44.86395045754756 ], [ 8.424323594158523, 44.843274186654355 ], [ 8.426169297075376, 44.81631373658962 ], [ 8.486813830993469, 44.80378932181975 ], [ 8.498854846673794, 44.767435560902413 ], [ 8.421994492152066, 44.733531751089401 ], [ 8.408635117116944, 44.692212169456013 ], [ 8.346276716397313, 44.689817149841588 ], [ 8.349484724040792, 44.631886239258506 ], [ 8.31597642167452, 44.595982917277809 ], [ 8.360427107225178, 44.577020514984781 ], [ 8.294816753490352, 44.560661871248328 ], [ 8.265461282911872, 44.521737309229422 ], [ 8.234106301964232, 44.561496832412843 ], [ 8.232634133358545, 44.597147468281037 ], [ 8.196906592864934, 44.614670662121341 ], [ 8.224042824416813, 44.674128672800009 ], [ 8.265856791257875, 44.714492443271638 ], [ 8.191149757255459, 44.748945569782222 ], [ 8.152983251775652, 44.712503918121286 ], [ 8.127912449999542, 44.74574854825687 ], [ 8.101896824079176, 44.747868909522538 ], [ 8.092294772485729, 44.755317640596616 ], [ 8.12916489174637, 44.811512711242585 ], [ 8.023959809297764, 44.805854751595461 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-BG", "NAME_1": "Bergamo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.169523855841248, 46.056988832868342 ], [ 10.224191826391689, 46.049397279560765 ], [ 10.261369562355412, 46.017053528197721 ], [ 10.191935965772188, 45.999651184354661 ], [ 10.098068774854084, 45.927064511617914 ], [ 10.09668449789126, 45.901477352397876 ], [ 10.132829518967128, 45.863102106177223 ], [ 10.062341234360474, 45.784121390389828 ], [ 10.063967211317731, 45.696681201776016 ], [ 9.92887931562791, 45.665436083808174 ], [ 9.870607829088044, 45.604472946169494 ], [ 9.859863199626943, 45.539291059135053 ], [ 9.891453075399113, 45.426670089752804 ], [ 9.81881827634237, 45.455454385611404 ], [ 9.807282631088526, 45.425033241790629 ], [ 9.768083410720806, 45.431020791276467 ], [ 9.751516027142941, 45.464199503804025 ], [ 9.714074619847793, 45.482293986578213 ], [ 9.674457918897815, 45.436843545393288 ], [ 9.602365631368798, 45.471472453390959 ], [ 9.564880277802558, 45.458157022828289 ], [ 9.510256252623947, 45.512033977585986 ], [ 9.533942777437233, 45.558824751261227 ], [ 9.527109280668753, 45.60443998691585 ], [ 9.455829981168677, 45.699856251065114 ], [ 9.447766015789, 45.749942922228058 ], [ 9.518715725450363, 45.784022513528157 ], [ 9.466618556001549, 45.849358209813488 ], [ 9.510212307252175, 45.876384577486249 ], [ 9.540117093628965, 45.945642392582329 ], [ 9.502741603941843, 45.970097960052783 ], [ 9.491491603154941, 46.011615295409513 ], [ 9.579228423253142, 46.0220303350319 ], [ 9.62587637469494, 46.051528627843879 ], [ 9.749604406618062, 46.062471011028322 ], [ 9.888691325744048, 46.0448379533089 ], [ 10.096948169222628, 46.090925601934941 ], [ 10.097167896081544, 46.057142641219912 ], [ 10.169523855841248, 46.056988832868342 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-BS", "NAME_1": "Brescia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.891453075399113, 45.426670089752804 ], [ 9.859863199626943, 45.539291059135053 ], [ 9.870607829088044, 45.604472946169494 ], [ 9.92887931562791, 45.665436083808174 ], [ 10.063967211317731, 45.696681201776016 ], [ 10.062341234360474, 45.784121390389828 ], [ 10.132829518967128, 45.863102106177223 ], [ 10.09668449789126, 45.901477352397876 ], [ 10.098068774854084, 45.927064511617914 ], [ 10.191935965772188, 45.999651184354661 ], [ 10.261369562355412, 46.017053528197721 ], [ 10.224191826391689, 46.049397279560765 ], [ 10.169523855841248, 46.056988832868342 ], [ 10.178093192546783, 46.076423648132845 ], [ 10.153813406563472, 46.134783025416255 ], [ 10.160954520035034, 46.158403631722194 ], [ 10.29098870426526, 46.221289376003881 ], [ 10.317883236721968, 46.277396555906307 ], [ 10.367014097622473, 46.293052074593561 ], [ 10.445895936548197, 46.34809358035443 ], [ 10.527853947901349, 46.342644361448095 ], [ 10.56698724976178, 46.32205598129849 ], [ 10.590234320857235, 46.233374337955297 ], [ 10.565427191311812, 46.18852814405858 ], [ 10.556857855505598, 46.112425846975214 ], [ 10.515153751644334, 46.081993716137049 ], [ 10.459145448603579, 45.984995422200939 ], [ 10.5000585366721, 45.965154112472305 ], [ 10.519482365818533, 45.91673736273907 ], [ 10.506892032541259, 45.88220733160307 ], [ 10.522910100320871, 45.841338189805583 ], [ 10.584653266734847, 45.794228813309076 ], [ 10.665314890070135, 45.811488334918693 ], [ 10.687397411061681, 45.845260308616332 ], [ 10.844897416682443, 45.834054254100522 ], [ 10.644243112629511, 45.609570603000918 ], [ 10.642990670882739, 45.448027627672843 ], [ 10.661755320351745, 45.419034707086041 ], [ 10.616140083797802, 45.381955847983988 ], [ 10.562482854999757, 45.382197547079102 ], [ 10.490851993424769, 45.412893349248634 ], [ 10.469582461361483, 45.405796181148844 ], [ 10.45426751953039, 45.383307166592431 ], [ 10.463166445175318, 45.328551305298504 ], [ 10.402214294554028, 45.27837674249264 ], [ 10.3928978883269, 45.248263216274381 ], [ 10.358268980329171, 45.238913850793551 ], [ 10.361367124992796, 45.215414093585537 ], [ 10.330539486707949, 45.203065460302753 ], [ 10.253151788624109, 45.255228548258856 ], [ 10.221379327094269, 45.231915558656056 ], [ 9.985612715954062, 45.306468784306901 ], [ 9.889658123023935, 45.359038366727191 ], [ 9.891453075399113, 45.426670089752804 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-CR", "NAME_1": "Cremona" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.891453075399113, 45.426670089752804 ], [ 9.889658123023935, 45.359038366727191 ], [ 10.008310471251207, 45.295394565007143 ], [ 10.221379327094269, 45.231915558656056 ], [ 10.253151788624109, 45.255228548258856 ], [ 10.309116146293093, 45.217951935433462 ], [ 10.322123959253304, 45.183290069081409 ], [ 10.39234857162927, 45.151836210372778 ], [ 10.480239200078984, 45.145694852535371 ], [ 10.489731387793313, 45.109242214756364 ], [ 10.416408630753665, 45.087313503015707 ], [ 10.413288513853843, 45.042269555395649 ], [ 10.489665469285967, 45.056727563825973 ], [ 10.523459416119124, 45.079974634921427 ], [ 10.529589787838404, 45.039599878331671 ], [ 10.468483827966281, 45.010782738332693 ], [ 10.455739687236758, 44.982372092797846 ], [ 10.562087347553017, 45.003553734117531 ], [ 10.560747015062702, 44.984031028109428 ], [ 10.464089297083376, 44.937185322944288 ], [ 10.501513503045715, 44.919431197591678 ], [ 10.443588807677315, 44.936690938635877 ], [ 10.399247986005719, 44.991314963814489 ], [ 10.350358824200384, 44.9840200419913 ], [ 10.183542411453118, 45.046554224198076 ], [ 10.071877367446518, 45.037534448555959 ], [ 9.997917403865074, 45.124743924192728 ], [ 9.916025311019268, 45.108000759127719 ], [ 9.923144452254633, 45.130061306983691 ], [ 9.882890543863482, 45.134148221163457 ], [ 9.867202066821903, 45.160350614689094 ], [ 9.812753823130436, 45.166656767895518 ], [ 9.706889561004402, 45.264632845229585 ], [ 9.610363678241129, 45.308094761264215 ], [ 9.58452383380785, 45.359664587150974 ], [ 9.567341215924387, 45.366772742268211 ], [ 9.553520414935178, 45.342580846129124 ], [ 9.523725491538187, 45.345821813026248 ], [ 9.468266505195061, 45.379945349698119 ], [ 9.462905177032269, 45.407861610924556 ], [ 9.510256252623947, 45.512033977585986 ], [ 9.564880277802558, 45.458157022828289 ], [ 9.602365631368798, 45.471472453390959 ], [ 9.674457918897815, 45.436843545393288 ], [ 9.714074619847793, 45.482293986578213 ], [ 9.751516027142941, 45.464199503804025 ], [ 9.768083410720806, 45.431020791276467 ], [ 9.807282631088526, 45.425033241790629 ], [ 9.81881827634237, 45.455454385611404 ], [ 9.891453075399113, 45.426670089752804 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-MN", "NAME_1": "Mantova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.468351992750229, 45.095344509141739 ], [ 10.493554629742334, 45.122491726811745 ], [ 10.480239200078984, 45.145694852535371 ], [ 10.39234857162927, 45.151836210372778 ], [ 10.322123959253304, 45.183290069081409 ], [ 10.317817318214622, 45.204702423378137 ], [ 10.361367124992796, 45.215414093585537 ], [ 10.358268980329171, 45.238913850793551 ], [ 10.3928978883269, 45.248263216274381 ], [ 10.402214294554028, 45.27837674249264 ], [ 10.463166445175318, 45.328551305298504 ], [ 10.45426751953039, 45.383307166592431 ], [ 10.469582461361483, 45.405796181148844 ], [ 10.490851993424769, 45.412893349248634 ], [ 10.562482854999757, 45.382197547079102 ], [ 10.616140083797802, 45.381955847983988 ], [ 10.661755320351745, 45.419034707086041 ], [ 10.702426708425833, 45.422814003663291 ], [ 10.702119090823373, 45.382450233191662 ], [ 10.717939403980324, 45.361213659482758 ], [ 10.697460887709781, 45.320256626941728 ], [ 10.740153760187866, 45.316048862764774 ], [ 10.761071730176184, 45.293669712087535 ], [ 10.794623977014908, 45.307204868609801 ], [ 10.848610795651666, 45.263072786779674 ], [ 10.987324180466544, 45.197374542301247 ], [ 11.005297813243487, 45.179983183676939 ], [ 11.001892051876666, 45.155077177269902 ], [ 11.04922115523209, 45.15196804648815 ], [ 11.048298303324032, 45.122645535163315 ], [ 11.077346156300052, 45.09946438257515 ], [ 11.154909635870979, 45.119316677522647 ], [ 11.204106415278829, 45.112439236281716 ], [ 11.195734832296637, 45.063396265225435 ], [ 11.272836885913534, 45.059573023276357 ], [ 11.272683077561965, 45.033788110332978 ], [ 11.419020974038688, 44.966870383361481 ], [ 11.421503884396714, 44.949863546065785 ], [ 11.30296139914924, 44.960069845846704 ], [ 11.279648410445759, 44.942678487222395 ], [ 11.163435026305422, 44.931516378078356 ], [ 11.08308101967333, 44.961904562645429 ], [ 10.99940914151864, 44.953434102801566 ], [ 10.888930621650843, 44.913487812912194 ], [ 10.764499464678522, 44.943557393758681 ], [ 10.754260206543279, 44.976527365545451 ], [ 10.692495066993729, 44.990381125788304 ], [ 10.601242622548966, 44.92239772467525 ], [ 10.521350040971583, 44.916168476993619 ], [ 10.464089297083376, 44.937185322944288 ], [ 10.538796331085791, 44.967145040810976 ], [ 10.562087347553017, 45.003553734117531 ], [ 10.455739687236758, 44.982372092797846 ], [ 10.468483827966281, 45.010782738332693 ], [ 10.529589787838404, 45.039599878331671 ], [ 10.53488519839317, 45.069537623062843 ], [ 10.523459416119124, 45.079974634921427 ], [ 10.489665469285967, 45.056727563825973 ], [ 10.413288513853843, 45.042269555395649 ], [ 10.416408630753665, 45.087313503015707 ], [ 10.468351992750229, 45.095344509141739 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-MI", "NAME_1": "Milano" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.496435451634795, 45.6452541981227 ], [ 9.527109280668753, 45.60443998691585 ], [ 9.530119534588835, 45.541653119495834 ], [ 9.47349599724248, 45.451158731590169 ], [ 9.437592675261726, 45.469681681064685 ], [ 9.417048241383213, 45.446500528476577 ], [ 9.414807030120357, 45.407400184970527 ], [ 9.364731345075484, 45.370123572145133 ], [ 9.377958883995291, 45.306325962073458 ], [ 9.2981981394326, 45.329243443330199 ], [ 9.220436905238955, 45.32757352190049 ], [ 9.171328017474025, 45.299140903230068 ], [ 9.04300770004528, 45.303579380384065 ], [ 9.013366584999858, 45.326474888505288 ], [ 8.988383673967348, 45.321585972414653 ], [ 9.011213264480546, 45.287363558881111 ], [ 8.982956428196587, 45.264962435068298 ], [ 8.86474353278777, 45.359324011194133 ], [ 8.778456908159797, 45.48688627208378 ], [ 8.720580929965934, 45.518230266913235 ], [ 8.705178097391297, 45.556781293721713 ], [ 8.746794309609697, 45.564153120170317 ], [ 8.795112182481205, 45.602253708042156 ], [ 8.837036012302121, 45.5684048297191 ], [ 8.926882206648486, 45.615909714561667 ], [ 8.973068732136255, 45.615591110841081 ], [ 8.97601306844831, 45.58760893200656 ], [ 9.006269416900068, 45.57719389238423 ], [ 9.058871957674683, 45.586103805046548 ], [ 9.05300525908541, 45.623215622502926 ], [ 9.107805065751165, 45.6226772928228 ], [ 9.112045788282501, 45.585642379092519 ], [ 9.173898817676275, 45.591113571134372 ], [ 9.324323628332763, 45.539005414668111 ], [ 9.330497945423815, 45.558418256797097 ], [ 9.372619528968073, 45.557616254886227 ], [ 9.461059473216096, 45.599309371730101 ], [ 9.496435451634795, 45.6452541981227 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-LC", "NAME_1": "Lecco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.52686758157364, 46.011428528703618 ], [ 9.491491603154941, 46.011615295409513 ], [ 9.502741603941843, 45.970097960052783 ], [ 9.53767812864271, 45.954035947800719 ], [ 9.538337308320138, 45.936479794706713 ], [ 9.510212307252175, 45.876384577486249 ], [ 9.466618556001549, 45.849358209813488 ], [ 9.518715725450363, 45.784022513528157 ], [ 9.447766015789, 45.749942922228058 ], [ 9.455829981168677, 45.699856251065114 ], [ 9.482768458997157, 45.671775195368923 ], [ 9.432912499911936, 45.651164842983121 ], [ 9.411291404874419, 45.672654101005946 ], [ 9.372245993757588, 45.655163866419286 ], [ 9.347043355866163, 45.671039111066079 ], [ 9.315226948065174, 45.666007372742058 ], [ 9.28272938835056, 45.73515532395902 ], [ 9.247199601580348, 45.742637014286743 ], [ 9.245397844035267, 45.773508597044099 ], [ 9.328520405492327, 45.859949030023699 ], [ 9.317599995443402, 45.903663631271513 ], [ 9.284948626477899, 45.900719295858778 ], [ 9.260449114534993, 45.951838681909635 ], [ 9.284575092166733, 45.966966857034777 ], [ 9.271984758889516, 46.022162171147272 ], [ 9.303954975042075, 46.132959294735656 ], [ 9.36842275090919, 46.159974676290233 ], [ 9.424593402263667, 46.160029947723899 ], [ 9.420366112905754, 46.092903140967167 ], [ 9.509267483107863, 46.062789613849588 ], [ 9.52686758157364, 46.011428528703618 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-MB", "NAME_1": "Monza e Brianza" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.482768458997157, 45.671775195368923 ], [ 9.496435451634795, 45.6452541981227 ], [ 9.461059473216096, 45.599309371730101 ], [ 9.372619528968073, 45.557616254886227 ], [ 9.330497945423815, 45.558418256797097 ], [ 9.324323628332763, 45.539005414668111 ], [ 9.173898817676275, 45.591113571134372 ], [ 9.112045788282501, 45.585642379092519 ], [ 9.107805065751165, 45.6226772928228 ], [ 9.05300525908541, 45.623215622502926 ], [ 9.065705454443162, 45.68475004907549 ], [ 9.129404187653108, 45.692934863553091 ], [ 9.185148818463176, 45.664546191153761 ], [ 9.202155654859553, 45.706843555285843 ], [ 9.247199601580348, 45.742637014286743 ], [ 9.28272938835056, 45.73515532395902 ], [ 9.315226948065174, 45.666007372742058 ], [ 9.347043355866163, 45.671039111066079 ], [ 9.372245993757588, 45.655163866419286 ], [ 9.411291404874419, 45.672654101005946 ], [ 9.432912499911936, 45.651164842983121 ], [ 9.482768458997157, 45.671775195368923 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-LO", "NAME_1": "Lodi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.47349599724248, 45.451158731590169 ], [ 9.468266505195061, 45.379945349698119 ], [ 9.538842679645938, 45.340691197840499 ], [ 9.567341215924387, 45.366772742268211 ], [ 9.58452383380785, 45.359664587150974 ], [ 9.610363678241129, 45.308094761264215 ], [ 9.706889561004402, 45.264632845229585 ], [ 9.812753823130436, 45.166656767895518 ], [ 9.876320719325747, 45.152813993770792 ], [ 9.895854412351241, 45.091872829267629 ], [ 9.830178140109069, 45.096267360150534 ], [ 9.840197671385397, 45.073811304847823 ], [ 9.824443276735792, 45.068669703543947 ], [ 9.758349523911363, 45.114812282760624 ], [ 9.752460852186573, 45.082007106342871 ], [ 9.681445224017864, 45.075338404943409 ], [ 9.636862703251154, 45.093938259043398 ], [ 9.640422272969488, 45.12608425578378 ], [ 9.573405669136321, 45.114812282760624 ], [ 9.531591702295202, 45.165316435405146 ], [ 9.438669335521411, 45.187640655491805 ], [ 9.351921285838671, 45.245296906826752 ], [ 9.311996968185497, 45.246626253198997 ], [ 9.338847554371114, 45.312873814374996 ], [ 9.377958883995291, 45.306325962073458 ], [ 9.361457418924715, 45.359840368638061 ], [ 9.414807030120357, 45.407400184970527 ], [ 9.419904686951725, 45.45231229557595 ], [ 9.452731836505052, 45.47029691626966 ], [ 9.47349599724248, 45.451158731590169 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-SI", "NAME_1": "Siena" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.404584937844618, 43.546964322545421 ], [ 11.474985331707671, 43.483067836511395 ], [ 11.536618634242586, 43.451855676897935 ], [ 11.535520001746647, 43.392946982916897 ], [ 11.553076154840653, 43.373358359300823 ], [ 11.65902830771023, 43.320821736134178 ], [ 11.690603015516729, 43.273426715170729 ], [ 11.752082509700074, 43.235963334740063 ], [ 11.827404778907407, 43.221175736471025 ], [ 11.883896480138446, 43.160256544204117 ], [ 11.95271090158684, 43.173798737921402 ], [ 11.91775634457963, 43.122430615580413 ], [ 11.933247067897867, 43.063774606812615 ], [ 11.963547361721339, 43.073134959310892 ], [ 11.977807616428322, 43.046361276851428 ], [ 11.932170407638182, 42.927203557298299 ], [ 11.951704099764356, 42.897738223740021 ], [ 11.936982419103344, 42.874337344292996 ], [ 11.80086180852561, 42.811132996290723 ], [ 11.774670401118101, 42.82095477384371 ], [ 11.747226552863083, 42.79847674540548 ], [ 11.63501219305823, 42.79975115938845 ], [ 11.611874984942574, 42.947868841174056 ], [ 11.507966289612568, 42.980102728657982 ], [ 11.449365213233989, 42.954043157365788 ], [ 11.396806617831146, 42.966831244366404 ], [ 11.358925756818223, 42.999614448547959 ], [ 11.36101315883019, 43.083253367448947 ], [ 11.089321254372351, 43.084802439780731 ], [ 11.060207483788361, 43.122221874839624 ], [ 11.059548304110933, 43.176549269433224 ], [ 11.039553186030673, 43.192633254820805 ], [ 10.911650349184242, 43.162563673075056 ], [ 10.935270955490182, 43.240478715620213 ], [ 10.980974081888348, 43.234633988367818 ], [ 10.994619102289732, 43.253167924859838 ], [ 10.953947714215644, 43.310296833531993 ], [ 10.960385702638064, 43.333049519419774 ], [ 10.998134727535614, 43.347221883383213 ], [ 11.006857872592718, 43.368919882146827 ], [ 10.952123983534989, 43.452229212108421 ], [ 10.965373495590313, 43.513928433150625 ], [ 11.027512170350349, 43.541899625867018 ], [ 11.082355922387876, 43.5197731595037 ], [ 11.124367642053016, 43.475091761875262 ], [ 11.175585905864864, 43.517147426912175 ], [ 11.205490692241654, 43.480540980781598 ], [ 11.247788057272999, 43.500722866467072 ], [ 11.278813449281245, 43.538614713598122 ], [ 11.298500949758989, 43.519201870569873 ], [ 11.404584937844618, 43.546964322545421 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-AR", "NAME_1": "Arezzo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.752082509700074, 43.235963334740063 ], [ 11.690603015516729, 43.273426715170729 ], [ 11.65902830771023, 43.320821736134178 ], [ 11.553076154840653, 43.373358359300823 ], [ 11.535520001746647, 43.392946982916897 ], [ 11.536618634242586, 43.451855676897935 ], [ 11.397509742880288, 43.548238737427766 ], [ 11.422756325244222, 43.569892790819608 ], [ 11.507526836794057, 43.587262176308343 ], [ 11.498913554716751, 43.631273408141226 ], [ 11.54630857657952, 43.63984274484676 ], [ 11.563073713880783, 43.667594210704237 ], [ 11.607941880013755, 43.691071994776735 ], [ 11.574785139722394, 43.730479954985924 ], [ 11.579069808524821, 43.756352758672847 ], [ 11.649865708935295, 43.86293113196615 ], [ 11.716335402656682, 43.879143170920599 ], [ 11.813012688085053, 43.824402077393927 ], [ 11.884995112634329, 43.815415261005455 ], [ 11.968601073180992, 43.773139869109627 ], [ 12.067763674653861, 43.75433127426885 ], [ 12.131066899517805, 43.764043188842095 ], [ 12.185229499641707, 43.742861547522352 ], [ 12.213815925764322, 43.76296652858241 ], [ 12.27819581178727, 43.77126120603981 ], [ 12.357626966511305, 43.722602757211462 ], [ 12.324755871586206, 43.683436496097386 ], [ 12.301926281073008, 43.728908909518509 ], [ 12.277734385833242, 43.689687716914591 ], [ 12.195820319851862, 43.653355928233452 ], [ 12.204807137139653, 43.616826385829029 ], [ 12.13748291570397, 43.531605435342556 ], [ 12.09758057028705, 43.518279018661758 ], [ 12.13385742657897, 43.481167201205324 ], [ 12.038166504980211, 43.421126915474758 ], [ 12.073652346378651, 43.411195274941974 ], [ 12.077739260558417, 43.373863730626624 ], [ 12.132626957967716, 43.357252401676988 ], [ 12.138713384315224, 43.299991656889404 ], [ 12.173452155292694, 43.296783649245981 ], [ 12.198457038561457, 43.318778279493984 ], [ 12.213178719222526, 43.291048785872761 ], [ 12.096657718378992, 43.245521440062362 ], [ 12.037375490086788, 43.25467305181985 ], [ 12.001208495875346, 43.190589797281291 ], [ 11.887126460917443, 43.160641066432049 ], [ 11.827404778907407, 43.221175736471025 ], [ 11.752082509700074, 43.235963334740063 ] ] ], [ [ [ 12.177561041708714, 43.82166648182266 ], [ 12.233195809538984, 43.81262473304497 ], [ 12.239875497056516, 43.800891334967105 ], [ 12.190129401850413, 43.783313208737582 ], [ 12.170837408819352, 43.804604713936385 ], [ 12.177561041708714, 43.82166648182266 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-FI", "NAME_1": "Firenze" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.793481399147254, 43.718977268985725 ], [ 10.711105908111165, 43.78634543579318 ], [ 10.727805126905082, 43.814118873886912 ], [ 10.774738722813765, 43.801275856295717 ], [ 10.813278763504115, 43.817898171363481 ], [ 10.855268510933001, 43.796024391112724 ], [ 10.947619588772966, 43.821084206770706 ], [ 10.977897910360241, 43.785444557020639 ], [ 11.057043420617333, 43.759055395889789 ], [ 11.062294885800327, 43.817019264827195 ], [ 11.146933561234846, 43.861502908732234 ], [ 11.135353970609231, 43.895022197216576 ], [ 11.189670379084703, 44.024089585066292 ], [ 11.200106485326046, 44.10467889841243 ], [ 11.256401338450985, 44.115968250834101 ], [ 11.203007781883628, 44.13829247092076 ], [ 11.2036449893248, 44.158803945545628 ], [ 11.291118137192257, 44.170790030635374 ], [ 11.402541481204366, 44.234928216663832 ], [ 11.431896950883583, 44.227116936497396 ], [ 11.495969219304015, 44.166472403478622 ], [ 11.604118637165357, 44.162528311532355 ], [ 11.593747542914741, 44.125888905248758 ], [ 11.747380361214709, 44.126614003433474 ], [ 11.695239246394067, 44.038393785145047 ], [ 11.651162096053895, 44.012718735181465 ], [ 11.653315416573207, 43.986406478676031 ], [ 11.708576649192992, 43.919598614684276 ], [ 11.716335402656682, 43.879143170920599 ], [ 11.660895982863281, 43.870204081553084 ], [ 11.632111802117947, 43.845309061264118 ], [ 11.574785139722394, 43.730479954985924 ], [ 11.607941880013755, 43.691071994776735 ], [ 11.563073713880783, 43.667594210704237 ], [ 11.54630857657952, 43.63984274484676 ], [ 11.498913554716751, 43.631273408141226 ], [ 11.507526836794057, 43.587262176308343 ], [ 11.491289043054906, 43.580285857306421 ], [ 11.422756325244222, 43.569892790819608 ], [ 11.362661108923021, 43.525727749735836 ], [ 11.298500949758989, 43.519201870569873 ], [ 11.278813449281245, 43.538614713598122 ], [ 11.247788057272999, 43.500722866467072 ], [ 11.205490692241654, 43.480540980781598 ], [ 11.175585905864864, 43.517147426912175 ], [ 11.124367642053016, 43.475091761875262 ], [ 11.082355922387876, 43.5197731595037 ], [ 11.027512170350349, 43.541899625867018 ], [ 10.965373495590313, 43.513928433150625 ], [ 10.952123983534989, 43.452229212108421 ], [ 10.885371051033189, 43.459908655260222 ], [ 10.843798784186504, 43.499107875627942 ], [ 10.836350053112426, 43.584153044627271 ], [ 10.819694778791018, 43.613442596698462 ], [ 10.889370074469355, 43.627955536618686 ], [ 10.910573688924615, 43.651279512339613 ], [ 10.907255817402017, 43.680118624574845 ], [ 10.865903277414304, 43.730414037377898 ], [ 10.793481399147254, 43.718977268985725 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-VC", "NAME_1": "Vercelli" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.010534515755296, 45.34038358113736 ], [ 8.02448715285982, 45.35224881533054 ], [ 8.010095062936784, 45.402632117977817 ], [ 8.130549168709138, 45.381834997986743 ], [ 8.168561865837432, 45.43593168050262 ], [ 8.20993637896072, 45.452279337221626 ], [ 8.262956400317591, 45.504266643690642 ], [ 8.287346050180076, 45.542026654706319 ], [ 8.263176127176507, 45.594684127870153 ], [ 8.288840190122642, 45.644891649030342 ], [ 8.182228858475014, 45.7419338892376 ], [ 8.129582372328628, 45.756974172719879 ], [ 8.078386080753035, 45.720862110897656 ], [ 8.043229829193251, 45.734616994278838 ], [ 7.91629378962665, 45.729662159680913 ], [ 7.874743495016276, 45.76320342130083 ], [ 7.847717126444195, 45.915023495038213 ], [ 7.899968105143898, 45.924823300355001 ], [ 7.974894866005229, 45.903619685899741 ], [ 8.05302963451004, 45.933799130625346 ], [ 8.090602877920446, 45.92341705025666 ], [ 8.209079445559951, 45.945005186040476 ], [ 8.210353859542977, 45.927558895926268 ], [ 8.270383158256152, 45.904927059136469 ], [ 8.322304547117142, 45.853950495319054 ], [ 8.316877301346381, 45.769322806002663 ], [ 8.349902204623049, 45.772409964548217 ], [ 8.38468492097229, 45.724970998212996 ], [ 8.369391951377452, 45.699394825111085 ], [ 8.310527202768185, 45.697098682358273 ], [ 8.385036483047259, 45.621721482560361 ], [ 8.409887557964396, 45.412289101061162 ], [ 8.492219104528033, 45.373847937232483 ], [ 8.499645862466593, 45.347711462214193 ], [ 8.471498889162376, 45.325859654199633 ], [ 8.512620921218513, 45.31344975010586 ], [ 8.498371448483567, 45.29193387215048 ], [ 8.559037954637859, 45.193111846634395 ], [ 8.556555044279833, 45.16478909184309 ], [ 8.502106800588365, 45.180598418881914 ], [ 8.497097034500541, 45.197989776606903 ], [ 8.404723983525002, 45.204515655772866 ], [ 8.334543317420128, 45.171128203403839 ], [ 8.268845072941758, 45.178313262247229 ], [ 8.220790871401562, 45.16494290019466 ], [ 8.199213722635193, 45.176105010238018 ], [ 8.172055517947797, 45.159515653524579 ], [ 8.105104831722599, 45.186487090606704 ], [ 8.050524751915759, 45.185190703488161 ], [ 7.988342131783952, 45.263413362736458 ], [ 7.988408050291298, 45.307600376056484 ], [ 7.955712735953966, 45.328111851580672 ], [ 7.972719573249719, 45.342449010913072 ], [ 8.010534515755296, 45.34038358113736 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-PV", "NAME_1": "Pavia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.832004273978043, 45.408180214645142 ], [ 8.86474353278777, 45.359324011194133 ], [ 8.982956428196587, 45.264962435068298 ], [ 9.011213264480546, 45.287363558881111 ], [ 8.988383673967348, 45.321585972414653 ], [ 9.013366584999858, 45.326474888505288 ], [ 9.04300770004528, 45.303579380384065 ], [ 9.171328017474025, 45.299140903230068 ], [ 9.220436905238955, 45.32757352190049 ], [ 9.309096577245214, 45.327936070992848 ], [ 9.338847554371114, 45.312873814374996 ], [ 9.311996968185497, 45.246626253198997 ], [ 9.351921285838671, 45.245296906826752 ], [ 9.438669335521411, 45.187640655491805 ], [ 9.538117581461222, 45.158537871025885 ], [ 9.541874905802274, 45.086039089032681 ], [ 9.500632228794302, 45.103089870800886 ], [ 9.425046288255601, 45.101178249376687 ], [ 9.306481830771872, 44.924880635033276 ], [ 9.304636127855019, 44.891679950269463 ], [ 9.358469137240888, 44.852151140063029 ], [ 9.305866596466217, 44.758844251960625 ], [ 9.322609761531282, 44.71623927022614 ], [ 9.313776752595061, 44.698562267134889 ], [ 9.274863177593545, 44.696079356776863 ], [ 9.251396379639175, 44.71574488501841 ], [ 9.242101945648244, 44.683005626208683 ], [ 9.201430557574156, 44.68212671967234 ], [ 9.202199600231324, 44.732202405616476 ], [ 9.156738172928328, 44.806722672013677 ], [ 9.059641001231228, 44.83711085658075 ], [ 9.053268930416777, 44.880539813361679 ], [ 8.977529181526506, 44.933274190251666 ], [ 8.963884161125122, 44.976219748842311 ], [ 8.882431521997148, 45.000532493180003 ], [ 8.880827518175408, 45.052552758902664 ], [ 8.850351441965472, 45.05844143152683 ], [ 8.774128294884861, 45.0276357663775 ], [ 8.669055048551627, 45.024801293045186 ], [ 8.573298209344898, 45.137092557475512 ], [ 8.551457388347785, 45.178741728947614 ], [ 8.557653677675091, 45.196001251456551 ], [ 8.498371448483567, 45.29193387215048 ], [ 8.541943227497939, 45.359664587150974 ], [ 8.625593133416373, 45.356972936951479 ], [ 8.663781611132436, 45.312632115279882 ], [ 8.702695187033214, 45.304776889741618 ], [ 8.714538448990197, 45.333198522293969 ], [ 8.757319212211883, 45.35707181381315 ], [ 8.734994993024486, 45.375495886425995 ], [ 8.832004273978043, 45.408180214645142 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-RI", "NAME_1": "Rieti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.519719258536952, 42.295830242171917 ], [ 12.490957050027816, 42.298280193276298 ], [ 12.472412127417726, 42.318429119708071 ], [ 12.486079120055308, 42.32526261647655 ], [ 12.454592302093033, 42.352849286965011 ], [ 12.465132967112709, 42.386932183273643 ], [ 12.509853534712818, 42.389400802505008 ], [ 12.536879903284898, 42.369350752934849 ], [ 12.592602561858712, 42.401002365366821 ], [ 12.616926293213851, 42.465569018095664 ], [ 12.652016626266288, 42.443816087842151 ], [ 12.722153347898654, 42.454000414487496 ], [ 12.717648953136688, 42.494045581238538 ], [ 12.880114779473502, 42.564687674196762 ], [ 12.879191928464707, 42.590318778788571 ], [ 12.901977573606132, 42.609599784802185 ], [ 12.999294472162148, 42.608874687516789 ], [ 13.017575722541551, 42.631561455796543 ], [ 13.059345743111521, 42.623750176529427 ], [ 13.153850141470855, 42.645096612318753 ], [ 13.187797896655582, 42.690316341426012 ], [ 13.194477585072491, 42.734602231607653 ], [ 13.282478076502002, 42.739513119934486 ], [ 13.347956594121513, 42.65962053925648 ], [ 13.386298881088464, 42.644426446523255 ], [ 13.368940481717857, 42.585979178496245 ], [ 13.291311084538904, 42.572180350642668 ], [ 13.186106002090298, 42.586913016522487 ], [ 13.174306685505144, 42.557381765356183 ], [ 13.135349164232537, 42.538287526947784 ], [ 13.166879927566583, 42.490277270779416 ], [ 13.131789593614826, 42.454846361770137 ], [ 13.130866742606088, 42.430797287864493 ], [ 13.178349654313081, 42.399947677343391 ], [ 13.157563520440078, 42.344499677118392 ], [ 13.20599125719076, 42.318835614172258 ], [ 13.227546433720931, 42.272143717358631 ], [ 13.272854052672358, 42.228692788341505 ], [ 13.305109913291858, 42.219024819140088 ], [ 13.320358937514925, 42.195019691505536 ], [ 13.367490286247687, 42.185175940816976 ], [ 13.305417529994997, 42.16745499325333 ], [ 13.295507861698468, 42.133221593601661 ], [ 13.220405320249313, 42.131584630526277 ], [ 13.098764690338157, 42.173651282580579 ], [ 13.029582059464474, 42.11564326682327 ], [ 12.986462439789761, 42.125575108804185 ], [ 12.952514684604978, 42.09829605501892 ], [ 12.920456577708876, 42.113479160734641 ], [ 12.873522982699455, 42.099867099586959 ], [ 12.775920439676554, 42.186626136287146 ], [ 12.695346706185546, 42.146460119538858 ], [ 12.624660668754871, 42.174705969704689 ], [ 12.606093773009206, 42.191767737591022 ], [ 12.611081565961513, 42.237734536219875 ], [ 12.629384789476433, 42.222232826783511 ], [ 12.62230959361284, 42.254334879051385 ], [ 12.602204612552839, 42.277538004775067 ], [ 12.584626487222579, 42.272231608102231 ], [ 12.581682150910524, 42.291128093686552 ], [ 12.56054445496261, 42.270627604280492 ], [ 12.546877462325028, 42.293523113301035 ], [ 12.519719258536952, 42.295830242171917 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-NO", "NAME_1": "Novara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.369391951377452, 45.699394825111085 ], [ 8.38468492097229, 45.724970998212996 ], [ 8.349902204623049, 45.772409964548217 ], [ 8.378796248348181, 45.799370414612895 ], [ 8.380729842008577, 45.84215117783458 ], [ 8.415754257452988, 45.838141168280288 ], [ 8.46077623193753, 45.868935847311491 ], [ 8.499997425440824, 45.833944390221404 ], [ 8.554357778388749, 45.844425348351137 ], [ 8.598412956492723, 45.825990288720845 ], [ 8.568508170115933, 45.789504691688137 ], [ 8.609025749838452, 45.734474172045395 ], [ 8.648862176748025, 45.717159718046503 ], [ 8.648862176748025, 45.68088286175464 ], [ 8.676965205579734, 45.672873827864862 ], [ 8.682392451350552, 45.644397263822668 ], [ 8.664572626925178, 45.635718065036656 ], [ 8.697443721850277, 45.603033737716771 ], [ 8.717021359348223, 45.523009320024073 ], [ 8.77241442808338, 45.493653850344913 ], [ 8.832004273978043, 45.408180214645142 ], [ 8.734994993024486, 45.375495886425995 ], [ 8.757319212211883, 45.35707181381315 ], [ 8.714538448990197, 45.333198522293969 ], [ 8.702695187033214, 45.304776889741618 ], [ 8.663781611132436, 45.312632115279882 ], [ 8.625593133416373, 45.356972936951479 ], [ 8.572221549085214, 45.366684851524667 ], [ 8.546491567631733, 45.364212927284768 ], [ 8.512620921218513, 45.31344975010586 ], [ 8.471498889162376, 45.325859654199633 ], [ 8.499645862466593, 45.347711462214193 ], [ 8.495866565889287, 45.367003455245253 ], [ 8.409887557964396, 45.412289101061162 ], [ 8.39136460848988, 45.606219772224676 ], [ 8.310527202768185, 45.697098682358273 ], [ 8.369391951377452, 45.699394825111085 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-AL", "NAME_1": "Alessandria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.404723983525002, 45.204515655772866 ], [ 8.497097034500541, 45.197989776606903 ], [ 8.502106800588365, 45.180598418881914 ], [ 8.556555044279833, 45.16478909184309 ], [ 8.669055048551627, 45.024801293045186 ], [ 8.774128294884861, 45.0276357663775 ], [ 8.850351441965472, 45.05844143152683 ], [ 8.880827518175408, 45.052552758902664 ], [ 8.882431521997148, 45.000532493180003 ], [ 8.963884161125122, 44.976219748842311 ], [ 8.977529181526506, 44.933274190251666 ], [ 9.053268930416777, 44.880539813361679 ], [ 9.059641001231228, 44.83711085658075 ], [ 9.161066786203207, 44.801559097574284 ], [ 9.205934952336179, 44.720831554832387 ], [ 9.19925526391927, 44.599289802682222 ], [ 9.154409070921872, 44.58126123751606 ], [ 9.120922741691174, 44.587358649981695 ], [ 9.099477428140801, 44.614615730631442 ], [ 8.944658086601407, 44.684763438381935 ], [ 8.917477909677757, 44.681094004784484 ], [ 8.875861697459356, 44.637280526674942 ], [ 8.906623417236915, 44.611847175806474 ], [ 8.903986698527319, 44.565188239145868 ], [ 8.825742066143448, 44.558827154449602 ], [ 8.773337279092118, 44.501258792958879 ], [ 8.724623898773871, 44.578624518806464 ], [ 8.632119012582336, 44.588698981572691 ], [ 8.609487175792538, 44.585337165577698 ], [ 8.599357780637035, 44.54255640235607 ], [ 8.564157583705537, 44.516244144951315 ], [ 8.408810898604088, 44.515936528248176 ], [ 8.353264020618042, 44.480648440573077 ], [ 8.267175150612672, 44.519968510038666 ], [ 8.294816753490352, 44.560661871248328 ], [ 8.360427107225178, 44.577020514984781 ], [ 8.31597642167452, 44.595982917277809 ], [ 8.349484724040792, 44.631886239258506 ], [ 8.346276716397313, 44.689817149841588 ], [ 8.408635117116944, 44.692212169456013 ], [ 8.421994492152066, 44.733531751089401 ], [ 8.498854846673794, 44.767435560902413 ], [ 8.497822131785938, 44.794659683197779 ], [ 8.426169297075376, 44.81631373658962 ], [ 8.424323594158523, 44.843274186654355 ], [ 8.380861678123949, 44.851074479803401 ], [ 8.362228864770259, 44.911784931329521 ], [ 8.383476424597291, 44.934219014395978 ], [ 8.387475448033513, 44.968968771491575 ], [ 8.351681989931876, 44.997917747605925 ], [ 8.348188336922192, 45.03351345198422 ], [ 8.303232280944997, 45.072240260279784 ], [ 8.237863626305284, 45.055903589678906 ], [ 8.223054054900729, 45.0137710191172 ], [ 8.19229233512317, 45.038611107916267 ], [ 8.14254623991701, 45.049443628120912 ], [ 8.111784519240132, 45.107055934983407 ], [ 8.151906591515967, 45.168590361555914 ], [ 8.334543317420128, 45.171128203403839 ], [ 8.404723983525002, 45.204515655772866 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-TN", "NAME_1": "Trento" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.824372551851752, 46.522688313115111 ], [ 11.834238274776567, 46.483829669603551 ], [ 11.895695796723601, 46.454759844391276 ], [ 11.860957025746131, 46.427085282259952 ], [ 11.84819091188109, 46.381019606769428 ], [ 11.799213859332156, 46.353191236286477 ], [ 11.848037103529464, 46.307872631216924 ], [ 11.853464350199602, 46.273716136190728 ], [ 11.924567868212534, 46.253094797686742 ], [ 11.920393063289225, 46.222761543710249 ], [ 11.97066650295676, 46.189220282989652 ], [ 11.88422606997716, 46.128246159232845 ], [ 11.706862781492134, 46.099385074761358 ], [ 11.684802233636162, 45.984325255506121 ], [ 11.603349594508188, 45.97784332171193 ], [ 11.572148421012798, 46.010626525893429 ], [ 11.540991193788557, 46.015976867938093 ], [ 11.387512183840215, 45.97889800973536 ], [ 11.383007789078192, 45.944840390671459 ], [ 11.358969702189995, 45.922933652066376 ], [ 11.314738743498197, 45.939369199528926 ], [ 11.274528780478818, 45.914979549666441 ], [ 11.200546844661119, 45.810895073748611 ], [ 11.184880339855795, 45.754721975338839 ], [ 11.130717740631212, 45.699592578834427 ], [ 11.011252403475623, 45.714621876198578 ], [ 10.931777303379818, 45.681893603506978 ], [ 10.870319781432727, 45.722070607272656 ], [ 10.900246540045771, 45.784077445018056 ], [ 10.893896442366895, 45.806094047502256 ], [ 10.812443802339601, 45.84497466414939 ], [ 10.687397411061681, 45.845260308616332 ], [ 10.665314890070135, 45.811488334918693 ], [ 10.584653266734847, 45.794228813309076 ], [ 10.522910100320871, 45.841338189805583 ], [ 10.506892032541259, 45.88220733160307 ], [ 10.519482365818533, 45.91673736273907 ], [ 10.5000585366721, 45.965154112472305 ], [ 10.459760683808497, 45.991037902277355 ], [ 10.515153751644334, 46.081993716137049 ], [ 10.556857855505598, 46.112425846975214 ], [ 10.565427191311812, 46.18852814405858 ], [ 10.590234320857235, 46.233374337955297 ], [ 10.577687933851053, 46.312728588953178 ], [ 10.527853947901349, 46.342644361448095 ], [ 10.551892034789546, 46.364353346329835 ], [ 10.632311959928984, 46.386315017324193 ], [ 10.624709420503336, 46.454452226788817 ], [ 10.657492624684892, 46.449497392190892 ], [ 10.745229443883716, 46.484939288217561 ], [ 10.839931595966391, 46.430721757503079 ], [ 10.997387657114643, 46.479182452608086 ], [ 11.051066858148943, 46.445981767844273 ], [ 11.064338343339841, 46.458011797406527 ], [ 11.05528560844408, 46.515613118150839 ], [ 11.085893519870012, 46.523556233533327 ], [ 11.145395475021132, 46.487180499480417 ], [ 11.202062957739315, 46.503989582153451 ], [ 11.214455536393871, 46.469316729683328 ], [ 11.201755341036119, 46.339238599181954 ], [ 11.153767058003325, 46.266234445862949 ], [ 11.175212370654378, 46.235857247414003 ], [ 11.217246063455036, 46.223893136359152 ], [ 11.328186009276919, 46.293502513530143 ], [ 11.370725073403378, 46.269035959941561 ], [ 11.408474098300985, 46.324461987031043 ], [ 11.454858377512096, 46.334844068299105 ], [ 11.476567363293157, 46.359629224708954 ], [ 11.537849103753103, 46.35367463537608 ], [ 11.577399886195792, 46.368088698434633 ], [ 11.641186510149282, 46.472722491050092 ], [ 11.684099109486283, 46.507680988886477 ], [ 11.824372551851752, 46.522688313115111 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-VI", "NAME_1": "Vicenza" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.183825652731684, 45.620139450974875 ], [ 11.156733366551634, 45.637794480930552 ], [ 11.130717740631212, 45.699592578834427 ], [ 11.184880339855795, 45.754721975338839 ], [ 11.200546844661119, 45.810895073748611 ], [ 11.274528780478818, 45.914979549666441 ], [ 11.314738743498197, 45.939369199528926 ], [ 11.358969702189995, 45.922933652066376 ], [ 11.383007789078192, 45.944840390671459 ], [ 11.387512183840215, 45.97889800973536 ], [ 11.495046367395901, 46.012439270455957 ], [ 11.55911863581639, 46.015196839162797 ], [ 11.603349594508188, 45.97784332171193 ], [ 11.695788562192377, 45.980567931165069 ], [ 11.72813231355542, 45.938830868949424 ], [ 11.784448234198635, 45.919044491609952 ], [ 11.779724112577696, 45.887634578273151 ], [ 11.799697258421702, 45.880570369427005 ], [ 11.741535634861634, 45.833735650379936 ], [ 11.759333487050753, 45.803457328792661 ], [ 11.804245597656177, 45.795843803248886 ], [ 11.825756829713896, 45.77386016001833 ], [ 11.821823723885757, 45.687101123318143 ], [ 11.711323230882385, 45.676257616995429 ], [ 11.649382310745011, 45.635410447434197 ], [ 11.645998521614445, 45.60629667685015 ], [ 11.670695788180069, 45.585521529994594 ], [ 11.658193346545715, 45.538873578552796 ], [ 11.730461415561876, 45.555550825110458 ], [ 11.745930165744539, 45.488215617556705 ], [ 11.616686997307056, 45.38698758630801 ], [ 11.626135239649557, 45.333275426020066 ], [ 11.581354964260186, 45.296690952125743 ], [ 11.616950668638424, 45.267115755587611 ], [ 11.61033689962818, 45.247450227346064 ], [ 11.542792951333638, 45.246252717988511 ], [ 11.487158183503368, 45.265863313840839 ], [ 11.432578103696528, 45.332923863945155 ], [ 11.363540014559987, 45.351897253255629 ], [ 11.321769993990017, 45.495895061607769 ], [ 11.280812960549667, 45.511056195087292 ], [ 11.249370088858484, 45.5474539013764 ], [ 11.228276337383022, 45.610471481773459 ], [ 11.183825652731684, 45.620139450974875 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-VR", "NAME_1": "Verona" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.130717740631212, 45.699592578834427 ], [ 11.161984831734571, 45.631422410116102 ], [ 11.228276337383022, 45.610471481773459 ], [ 11.249370088858484, 45.5474539013764 ], [ 11.280812960549667, 45.511056195087292 ], [ 11.321769993990017, 45.495895061607769 ], [ 11.359255346656937, 45.356874060089751 ], [ 11.432578103696528, 45.332923863945155 ], [ 11.486608866805739, 45.278673373077709 ], [ 11.473996562191587, 45.260007601369693 ], [ 11.406035133314731, 45.252251253592476 ], [ 11.42609616990228, 45.142541776381847 ], [ 11.411110817010581, 45.121579861921077 ], [ 11.445212381446254, 45.092740748786525 ], [ 11.425810524536075, 45.06634060153749 ], [ 11.385864234646704, 45.053036157992267 ], [ 11.332492650315544, 45.089521755024975 ], [ 11.173520476089095, 45.119085964545604 ], [ 11.077346156300052, 45.09946438257515 ], [ 11.048298303324032, 45.122645535163315 ], [ 11.04922115523209, 45.15196804648815 ], [ 11.001892051876666, 45.155077177269902 ], [ 11.005297813243487, 45.179983183676939 ], [ 10.987324180466544, 45.197374542301247 ], [ 10.848610795651666, 45.263072786779674 ], [ 10.794623977014908, 45.307204868609801 ], [ 10.761071730176184, 45.293669712087535 ], [ 10.740153760187866, 45.316048862764774 ], [ 10.697460887709781, 45.320256626941728 ], [ 10.717939403980324, 45.361213659482758 ], [ 10.702119090823373, 45.382450233191662 ], [ 10.702426708425833, 45.422814003663291 ], [ 10.661755320351745, 45.419034707086041 ], [ 10.642990670882739, 45.448027627672843 ], [ 10.644243112629511, 45.609570603000918 ], [ 10.844897416682443, 45.834054254100522 ], [ 10.884580035240447, 45.816948539943155 ], [ 10.899521442760374, 45.790021049132065 ], [ 10.872495074188294, 45.717829883842057 ], [ 10.931777303379818, 45.681893603506978 ], [ 11.011252403475623, 45.714621876198578 ], [ 11.130717740631212, 45.699592578834427 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-TV", "NAME_1": "Treviso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.330908215541683, 46.082213442995965 ], [ 12.422431828066408, 46.043078760676224 ], [ 12.447802751595702, 45.959649962076071 ], [ 12.526289082175367, 45.92035186484668 ], [ 12.567905295293144, 45.838855279447557 ], [ 12.638855004954507, 45.832087701186424 ], [ 12.665507838316046, 45.814773247187588 ], [ 12.66302492795802, 45.701888721587181 ], [ 12.498735370940608, 45.676620166087787 ], [ 12.471818865348325, 45.641343064530759 ], [ 12.433586442260491, 45.631795945326587 ], [ 12.435388199805573, 45.586015914303005 ], [ 12.419018570850369, 45.574546187556507 ], [ 12.343916028501894, 45.583060591872766 ], [ 12.285622569725774, 45.566009810104617 ], [ 12.255410165746525, 45.53302885219972 ], [ 12.220078133598975, 45.542795698262864 ], [ 12.1885913156367, 45.584324019737721 ], [ 12.092438968083911, 45.598353561467661 ], [ 12.069038088636887, 45.640145555173206 ], [ 12.020544434278179, 45.64580351392101 ], [ 11.954736326820012, 45.610559372517002 ], [ 11.905495602040389, 45.624731736480442 ], [ 11.870646968083122, 45.670698535109295 ], [ 11.821823723885757, 45.687101123318143 ], [ 11.825756829713896, 45.77386016001833 ], [ 11.750258779918738, 45.811795952521152 ], [ 11.741535634861634, 45.833735650379936 ], [ 11.754147939475786, 45.855104059304892 ], [ 11.821296380323702, 45.899587704109251 ], [ 11.861308588720362, 45.882756648300642 ], [ 11.925205075653707, 45.884964900309853 ], [ 11.973325193902554, 45.96341827253525 ], [ 12.063061526168497, 45.963692930884008 ], [ 12.109863285062545, 46.002716369764642 ], [ 12.191579597320526, 46.004089660609338 ], [ 12.330908215541683, 46.082213442995965 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-PC", "NAME_1": "Piacenza" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.071877367446518, 45.037534448555959 ], [ 9.99396232580068, 44.9506985072303 ], [ 10.006970138760892, 44.871816668304575 ], [ 9.895173259538296, 44.810490982472857 ], [ 9.869663004943732, 44.764809828310888 ], [ 9.814753334398858, 44.748550062335482 ], [ 9.766259680040207, 44.706406505655707 ], [ 9.76513907530807, 44.681247813136054 ], [ 9.656923738939383, 44.679457041709099 ], [ 9.491334523069781, 44.5510477318673 ], [ 9.407973534251198, 44.596191658018597 ], [ 9.360490621644885, 44.581931403311614 ], [ 9.290375873148037, 44.609342293212251 ], [ 9.203144424375694, 44.613758797230673 ], [ 9.201430557574156, 44.68212671967234 ], [ 9.242101945648244, 44.683005626208683 ], [ 9.251396379639175, 44.71574488501841 ], [ 9.292529193667349, 44.693915050139424 ], [ 9.322148335577197, 44.707713878892378 ], [ 9.305866596466217, 44.758844251960625 ], [ 9.355217184225637, 44.826542008606793 ], [ 9.358315328889319, 44.856490740355355 ], [ 9.306965228962156, 44.888944354698197 ], [ 9.302614643451022, 44.913125263819836 ], [ 9.425046288255601, 45.101178249376687 ], [ 9.500632228794302, 45.103089870800886 ], [ 9.541874905802274, 45.086039089032681 ], [ 9.538930570389482, 45.124172635258901 ], [ 9.552729399142436, 45.134818386958955 ], [ 9.590412505532697, 45.112593044633286 ], [ 9.640422272969488, 45.12608425578378 ], [ 9.636862703251154, 45.093938259043398 ], [ 9.681445224017864, 45.075338404943409 ], [ 9.752460852186573, 45.082007106342871 ], [ 9.764545813238669, 45.114812282760624 ], [ 9.833693765354951, 45.068252222961689 ], [ 9.830178140109069, 45.096267360150534 ], [ 9.895854412351241, 45.091872829267629 ], [ 9.882890543863482, 45.134148221163457 ], [ 9.903918376831598, 45.138487821455783 ], [ 9.923144452254633, 45.130061306983691 ], [ 9.916025311019268, 45.108000759127719 ], [ 9.997917403865074, 45.124743924192728 ], [ 10.071877367446518, 45.037534448555959 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-PR", "NAME_1": "Parma" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.859973062606741, 44.760788831739148 ], [ 9.895173259538296, 44.810490982472857 ], [ 10.006970138760892, 44.871816668304575 ], [ 9.99396232580068, 44.9506985072303 ], [ 10.071877367446518, 45.037534448555959 ], [ 10.183542411453118, 45.046554224198076 ], [ 10.350358824200384, 44.9840200419913 ], [ 10.399247986005719, 44.991314963814489 ], [ 10.443588807677315, 44.936690938635877 ], [ 10.501513503045715, 44.919431197591678 ], [ 10.463100527567292, 44.893899188396801 ], [ 10.464462832293862, 44.852975115109473 ], [ 10.434316346821959, 44.795219986013535 ], [ 10.435612733041182, 44.709076183618947 ], [ 10.391777282695443, 44.554048101338765 ], [ 10.219731377001438, 44.406281982527446 ], [ 10.14996819147882, 44.367807860344442 ], [ 10.135707936771837, 44.341814206660274 ], [ 10.072602465631292, 44.352130369420991 ], [ 9.991259688583739, 44.406567626994388 ], [ 10.001960372673068, 44.432638184404652 ], [ 9.989853439384717, 44.448041017878666 ], [ 9.866345133421135, 44.482966555562086 ], [ 9.835649331251602, 44.476253908790852 ], [ 9.751384191926888, 44.389231200759298 ], [ 9.691486728429766, 44.372795653296748 ], [ 9.689772860728908, 44.357656492952742 ], [ 9.651430574661276, 44.406183105665775 ], [ 9.598520416284146, 44.427156007143992 ], [ 9.437900292864185, 44.414345947907123 ], [ 9.45268789113328, 44.471958254769618 ], [ 9.493622951438056, 44.511651859445749 ], [ 9.491334523069781, 44.5510477318673 ], [ 9.656923738939383, 44.679457041709099 ], [ 9.76513907530807, 44.681247813136054 ], [ 9.766259680040207, 44.706406505655707 ], [ 9.814753334398858, 44.748550062335482 ], [ 9.859973062606741, 44.760788831739148 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-RE", "NAME_1": "Reggio Emilia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.135707936771837, 44.341814206660274 ], [ 10.14996819147882, 44.367807860344442 ], [ 10.219731377001438, 44.406281982527446 ], [ 10.391777282695443, 44.554048101338765 ], [ 10.435612733041182, 44.709076183618947 ], [ 10.434316346821959, 44.795219986013535 ], [ 10.470373477154226, 44.900293232346769 ], [ 10.501513503045715, 44.919431197591678 ], [ 10.601242622548966, 44.92239772467525 ], [ 10.692495066993729, 44.990381125788304 ], [ 10.754260206543279, 44.976527365545451 ], [ 10.764499464678522, 44.943557393758681 ], [ 10.887784904249941, 44.914023264761852 ], [ 10.876186480921319, 44.871684832189203 ], [ 10.843513139719619, 44.858797869226237 ], [ 10.815102494184771, 44.807239029457605 ], [ 10.839733842242993, 44.790122329182111 ], [ 10.808532669646979, 44.712800548706355 ], [ 10.822880814198186, 44.670591074418553 ], [ 10.785065871692609, 44.63473169870889 ], [ 10.761730909853611, 44.53611841303433 ], [ 10.673796336032069, 44.470859622273736 ], [ 10.625632271512131, 44.412851807065238 ], [ 10.615480904120432, 44.376256347052731 ], [ 10.534138127972199, 44.353141111173329 ], [ 10.512011661608881, 44.278225337329445 ], [ 10.478239687911241, 44.229819573714337 ], [ 10.400170837014514, 44.235884026926271 ], [ 10.350974058505983, 44.274918451924975 ], [ 10.287824641993609, 44.282389155235307 ], [ 10.249020929072628, 44.269853755246572 ], [ 10.199362724610012, 44.318281491097935 ], [ 10.135707936771837, 44.341814206660274 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-MO", "NAME_1": "Modena" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.471230410554995, 44.224590080767598 ], [ 10.512011661608881, 44.278225337329445 ], [ 10.534138127972199, 44.353141111173329 ], [ 10.615480904120432, 44.376256347052731 ], [ 10.625632271512131, 44.412851807065238 ], [ 10.673796336032069, 44.470859622273736 ], [ 10.761730909853611, 44.53611841303433 ], [ 10.785065871692609, 44.63473169870889 ], [ 10.822880814198186, 44.670591074418553 ], [ 10.808532669646979, 44.712800548706355 ], [ 10.839733842242993, 44.790122329182111 ], [ 10.815102494184771, 44.807239029457605 ], [ 10.843513139719619, 44.858797869226237 ], [ 10.876186480921319, 44.871684832189203 ], [ 10.887784904249941, 44.914023264761852 ], [ 10.99940914151864, 44.953434102801566 ], [ 11.08308101967333, 44.961904562645429 ], [ 11.163435026305422, 44.931516378078356 ], [ 11.25701657365596, 44.947336691235307 ], [ 11.234890107292586, 44.905973164230147 ], [ 11.336162083913052, 44.869223894966751 ], [ 11.368637671391411, 44.842625993095055 ], [ 11.3234618885553, 44.832463639585285 ], [ 11.293337375319595, 44.802701675441938 ], [ 11.129597134999756, 44.780805922954983 ], [ 11.078071253585449, 44.646981455130003 ], [ 11.131706510147296, 44.601344246339863 ], [ 11.136320767889117, 44.568176519930432 ], [ 11.117973599002369, 44.53441553235092 ], [ 11.072797816166258, 44.529021244934484 ], [ 11.04930904597569, 44.474045656781584 ], [ 10.992399864162394, 44.444382570399284 ], [ 11.042849084417696, 44.417059571242191 ], [ 11.02454586090272, 44.368895506722254 ], [ 11.033620568934111, 44.315117428826284 ], [ 10.9532665614027, 44.296891109037404 ], [ 10.96779048834037, 44.245749749851029 ], [ 10.936874959311922, 44.215603264379126 ], [ 10.855004838702314, 44.23091820621022 ], [ 10.852126420897605, 44.206045159056828 ], [ 10.813476517227457, 44.169262930539787 ], [ 10.815869081692767, 44.113512932575759 ], [ 10.707392529141885, 44.162011954088371 ], [ 10.645473581240765, 44.156892325020749 ], [ 10.610537056539897, 44.125702137643486 ], [ 10.570393012027864, 44.12562523391739 ], [ 10.483930605912747, 44.186808097515666 ], [ 10.471230410554995, 44.224590080767598 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-BO", "NAME_1": "Bologna" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.263564425058178, 44.804151870912108 ], [ 11.293337375319595, 44.802701675441938 ], [ 11.260004854440467, 44.772961684434165 ], [ 11.272551241446649, 44.748824720684297 ], [ 11.264597139946034, 44.706999767725051 ], [ 11.375031714442059, 44.777466079196188 ], [ 11.606271957684669, 44.696408946615577 ], [ 11.673200670774349, 44.6359292080665 ], [ 11.749709463221109, 44.650815683197209 ], [ 11.788205558539687, 44.63658838774387 ], [ 11.786777335305771, 44.602190193622505 ], [ 11.760014638964378, 44.58231592464017 ], [ 11.789348136407341, 44.55442163654925 ], [ 11.78376708138569, 44.530427495032825 ], [ 11.742414541397977, 44.506477298888228 ], [ 11.782404776659121, 44.470991457489731 ], [ 11.820329583043815, 44.395702148435362 ], [ 11.756169423879783, 44.318830807795507 ], [ 11.716750477552466, 44.306877681959406 ], [ 11.671684557696153, 44.317688229028533 ], [ 11.63435301338086, 44.254670648631532 ], [ 11.554965803129278, 44.217405021924208 ], [ 11.526269473557363, 44.16222283611495 ], [ 11.495969219304015, 44.166472403478622 ], [ 11.431896950883583, 44.227116936497396 ], [ 11.402541481204366, 44.234928216663832 ], [ 11.291118137192257, 44.170790030635374 ], [ 11.200217254822462, 44.156628652790062 ], [ 11.203007781883628, 44.13829247092076 ], [ 11.255148897603533, 44.119033436244081 ], [ 11.229374970778281, 44.102707752660649 ], [ 11.041486779691127, 44.091809314847978 ], [ 11.001276817571068, 44.11266136632895 ], [ 11.015075646324021, 44.136996083802217 ], [ 10.990729941833308, 44.139995351604171 ], [ 10.919208943238118, 44.067804186314106 ], [ 10.815869081692767, 44.113512932575759 ], [ 10.813476517227457, 44.169262930539787 ], [ 10.852126420897605, 44.206045159056828 ], [ 10.855004838702314, 44.23091820621022 ], [ 10.936874959311922, 44.215603264379126 ], [ 10.96779048834037, 44.245749749851029 ], [ 10.9532665614027, 44.296891109037404 ], [ 11.033620568934111, 44.315117428826284 ], [ 11.02454586090272, 44.368895506722254 ], [ 11.042849084417696, 44.417059571242191 ], [ 10.992399864162394, 44.444382570399284 ], [ 11.04930904597569, 44.474045656781584 ], [ 11.072797816166258, 44.529021244934484 ], [ 11.117973599002369, 44.53441553235092 ], [ 11.136320767889117, 44.568176519930432 ], [ 11.131706510147296, 44.601344246339863 ], [ 11.078071253585449, 44.646981455130003 ], [ 11.129597134999756, 44.780805922954983 ], [ 11.263564425058178, 44.804151870912108 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-PT", "NAME_1": "Pistoia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.657844186759803, 43.868808817572869 ], [ 10.645056100658508, 43.879344706293125 ], [ 10.668654734728193, 43.974870833422187 ], [ 10.735891065420333, 44.032076645820553 ], [ 10.70203120007983, 44.093973621485418 ], [ 10.610537056539897, 44.125702137643486 ], [ 10.636025338898264, 44.153530508126437 ], [ 10.73395747086056, 44.154673085994091 ], [ 10.919208943238118, 44.067804186314106 ], [ 10.990729941833308, 44.139995351604171 ], [ 11.01729488445136, 44.133535390046177 ], [ 11.007934532852403, 44.104124988877118 ], [ 11.048254125927144, 44.092382786436417 ], [ 11.051638147082826, 44.068100817798495 ], [ 11.015822716744992, 43.995426254318147 ], [ 11.062712366382584, 43.973860090770529 ], [ 11.025710411905948, 43.931606672010275 ], [ 11.015822716744992, 43.869654764855511 ], [ 11.025930138764863, 43.852845682182476 ], [ 11.00488033356055, 43.828554910081039 ], [ 10.90578364969565, 43.79940818024329 ], [ 10.855268510933001, 43.796024391112724 ], [ 10.813278763504115, 43.817898171363481 ], [ 10.763071241444607, 43.801550514644532 ], [ 10.727805126905082, 43.814118873886912 ], [ 10.692165477155015, 43.862228006916951 ], [ 10.657844186759803, 43.868808817572869 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-TR", "NAME_1": "Terni" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.068269045979662, 42.938486516439582 ], [ 12.317966321088818, 42.906054874332938 ], [ 12.327106945828859, 42.857824892204974 ], [ 12.29061036267808, 42.76727557280941 ], [ 12.298059093752158, 42.747994565896477 ], [ 12.348728040866376, 42.726604183836002 ], [ 12.350222181708318, 42.679428889731469 ], [ 12.366987319009525, 42.675979182093556 ], [ 12.400759292707164, 42.706543148147773 ], [ 12.442771013271624, 42.689679133984839 ], [ 12.49822999961475, 42.732679624065383 ], [ 12.557292501947416, 42.711003597537967 ], [ 12.592053245161139, 42.745654477771893 ], [ 12.622902855682241, 42.683296077052319 ], [ 12.704003932735304, 42.625958428538638 ], [ 12.71413332789075, 42.599942802618216 ], [ 12.733557157037126, 42.602151054627427 ], [ 12.749157743335161, 42.632890802168788 ], [ 12.843068879625093, 42.671749445680348 ], [ 12.880246615588817, 42.650348077501747 ], [ 12.901977573606132, 42.609599784802185 ], [ 12.879191928464707, 42.590318778788571 ], [ 12.880114779473502, 42.564687674196762 ], [ 12.717648953136688, 42.494045581238538 ], [ 12.722153347898654, 42.454000414487496 ], [ 12.652016626266288, 42.443816087842151 ], [ 12.616926293213851, 42.465569018095664 ], [ 12.592602561858712, 42.401002365366821 ], [ 12.536879903284898, 42.369350752934849 ], [ 12.503964862988028, 42.390587325744491 ], [ 12.438706071328113, 42.38903825341265 ], [ 12.451516130564983, 42.421030441801406 ], [ 12.417370621656858, 42.428468186757414 ], [ 12.393596206100028, 42.462503832685684 ], [ 12.34283936824221, 42.491925219972927 ], [ 12.300673839326237, 42.489914721687057 ], [ 12.280217296191267, 42.510404224974991 ], [ 12.235832528248579, 42.647579522676779 ], [ 12.152358403817288, 42.675814387623859 ], [ 12.128737797511349, 42.657346368739923 ], [ 12.025136719783802, 42.645558038272839 ], [ 11.930302731585755, 42.709102963131215 ], [ 11.973457030017926, 42.760288267689361 ], [ 11.889016109206068, 42.850387148148343 ], [ 11.931662005597047, 42.871680792834297 ], [ 11.998483886422207, 42.877292666723179 ], [ 12.015688477441245, 42.908735538414362 ], [ 12.068269045979662, 42.938486516439582 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-PG", "NAME_1": "Perugia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.366987319009525, 42.675979182093556 ], [ 12.350222181708318, 42.679428889731469 ], [ 12.336774915030276, 42.741765317315526 ], [ 12.298059093752158, 42.747994565896477 ], [ 12.29061036267808, 42.76727557280941 ], [ 12.327106945828859, 42.857824892204974 ], [ 12.328293469967662, 42.888784366605194 ], [ 12.300849620813324, 42.914799992525616 ], [ 12.068269045979662, 42.938486516439582 ], [ 12.015688477441245, 42.908735538414362 ], [ 11.998483886422207, 42.877292666723179 ], [ 11.931662005597047, 42.871680792834297 ], [ 11.951396482161897, 42.893299747485344 ], [ 11.932016599286612, 42.919908634575791 ], [ 11.93946532946137, 42.955438421346059 ], [ 11.977807616428322, 43.046361276851428 ], [ 11.963547361721339, 43.073134959310892 ], [ 11.929841305631726, 43.06856464604158 ], [ 11.922722165295681, 43.137569775924419 ], [ 11.956208494526379, 43.176329543473628 ], [ 12.009580078857539, 43.19692890884204 ], [ 12.029003907104595, 43.250223588547726 ], [ 12.096657718378992, 43.245521440062362 ], [ 12.215046395274896, 43.294872027821782 ], [ 12.198457038561457, 43.318778279493984 ], [ 12.173452155292694, 43.296783649245981 ], [ 12.138713384315224, 43.299991656889404 ], [ 12.132626957967716, 43.357252401676988 ], [ 12.080837405222042, 43.371875204577009 ], [ 12.073652346378651, 43.411195274941974 ], [ 12.037067872484329, 43.416523643851065 ], [ 12.131286626376664, 43.477475794472298 ], [ 12.129528813304091, 43.496306362448649 ], [ 12.09758057028705, 43.518279018661758 ], [ 12.13748291570397, 43.531605435342556 ], [ 12.204807137139653, 43.616826385829029 ], [ 12.285952159564488, 43.591601775701349 ], [ 12.358857435122502, 43.619408173048726 ], [ 12.353122571749282, 43.573825896647804 ], [ 12.309726574221997, 43.566695769294313 ], [ 12.309089367680144, 43.552072965494915 ], [ 12.392563491212115, 43.522354946723397 ], [ 12.431674820836292, 43.538427945992908 ], [ 12.488320331318221, 43.521970425394784 ], [ 12.608884300969692, 43.428872277133848 ], [ 12.638635278095592, 43.443604943912987 ], [ 12.691084010518637, 43.434299523803929 ], [ 12.712683132420636, 43.453932092791831 ], [ 12.758166532859207, 43.461227014615019 ], [ 12.746499051490048, 43.378829550443356 ], [ 12.791191436135875, 43.319712116620849 ], [ 12.795673858661644, 43.278469439612934 ], [ 12.850935091281428, 43.208728226326571 ], [ 12.856823763006219, 43.175582473052657 ], [ 12.83388430951328, 43.142953077222728 ], [ 12.892836947966771, 43.093910106166447 ], [ 12.895781284278826, 43.007195014838032 ], [ 12.91313968364949, 42.96342548210032 ], [ 12.96466556416442, 42.926808048952296 ], [ 12.972114295238498, 42.88869647586165 ], [ 12.990461463225927, 42.892838321531315 ], [ 12.988593788072819, 42.915678898162582 ], [ 13.048798868273138, 42.917843204800022 ], [ 13.150444380104034, 42.823613465688879 ], [ 13.22429448070568, 42.847673524813274 ], [ 13.256286669094493, 42.802475768841646 ], [ 13.248947801899533, 42.767780943235891 ], [ 13.194477585072491, 42.749093198392359 ], [ 13.187797896655582, 42.690316341426012 ], [ 13.153850141470855, 42.645096612318753 ], [ 13.059345743111521, 42.623750176529427 ], [ 13.017575722541551, 42.631561455796543 ], [ 12.999294472162148, 42.608874687516789 ], [ 12.901977573606132, 42.609599784802185 ], [ 12.880246615588817, 42.650348077501747 ], [ 12.843068879625093, 42.671749445680348 ], [ 12.749157743335161, 42.632890802168788 ], [ 12.720637234820515, 42.597569755239988 ], [ 12.704003932735304, 42.625958428538638 ], [ 12.622902855682241, 42.683296077052319 ], [ 12.592053245161139, 42.745654477771893 ], [ 12.563510763510919, 42.712838314336693 ], [ 12.49822999961475, 42.732679624065383 ], [ 12.447363297877871, 42.69163470078081 ], [ 12.400759292707164, 42.706543148147773 ], [ 12.366987319009525, 42.675979182093556 ] ] ], [ [ [ 12.429819143538623, 43.631469784103217 ], [ 12.444798333376355, 43.601057488712115 ], [ 12.4211947611293, 43.589709617404878 ], [ 12.407577315740525, 43.610135785937757 ], [ 12.429819143538623, 43.631469784103217 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-FR", "NAME_1": "Frosinone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.419851128826508, 41.400092902765209 ], [ 13.318073780880297, 41.401652962114497 ], [ 13.258879442432317, 41.435677621025377 ], [ 13.298979541572578, 41.47033948827675 ], [ 13.265778856808765, 41.527710095144755 ], [ 13.209704636160041, 41.546595594611006 ], [ 13.192609909020064, 41.588134902203933 ], [ 13.156882368526453, 41.588574355921764 ], [ 13.147148480817748, 41.653250871630405 ], [ 13.094809612273764, 41.684605853477308 ], [ 13.079011271353068, 41.720882710668548 ], [ 13.000964393591858, 41.769409323381524 ], [ 13.009929237744132, 41.818737938904746 ], [ 13.061433146022864, 41.83334975568664 ], [ 13.082636760478124, 41.858014062998564 ], [ 13.184436080660589, 41.848247216935476 ], [ 13.306669971741769, 41.94606948681735 ], [ 13.368610891879143, 41.907782131340241 ], [ 13.361118216332613, 41.828658593319403 ], [ 13.40521733890904, 41.831602929631458 ], [ 13.545205136807624, 41.768200827006524 ], [ 13.599191955444383, 41.777989646205185 ], [ 13.646630921779604, 41.810520165173443 ], [ 13.714812077515376, 41.794787742760093 ], [ 13.749990301311357, 41.751842184169448 ], [ 13.800747139169118, 41.752622213844063 ], [ 13.891845775262311, 41.723651265493459 ], [ 13.96769538713238, 41.667434221711915 ], [ 13.993952713047236, 41.625005021464574 ], [ 14.009311600250157, 41.524644909734775 ], [ 13.96180671540759, 41.470702036469788 ], [ 13.862182687980635, 41.425998665705833 ], [ 13.872575755366825, 41.335405400938498 ], [ 13.786948310416165, 41.308576786089759 ], [ 13.707385318677495, 41.347226689759907 ], [ 13.625449280459918, 41.319057744219492 ], [ 13.57970220868998, 41.361937384302848 ], [ 13.565376036374971, 41.403169075192636 ], [ 13.445734918631558, 41.460166147749476 ], [ 13.433474176092318, 41.458100717973707 ], [ 13.436792046715595, 41.423372933114365 ], [ 13.419851128826508, 41.400092902765209 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-AV", "NAME_1": "Avellino" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.653791605198421, 40.893952747421338 ], [ 14.66908457479326, 40.90092906552394 ], [ 14.663525492007807, 40.916452748095821 ], [ 14.582556251070116, 40.942907826834698 ], [ 14.571965429960585, 41.00953990933931 ], [ 14.584401953986969, 41.039378778108073 ], [ 14.712480572320544, 41.058132440559689 ], [ 14.753129988158435, 41.013824578141737 ], [ 14.781672469808598, 41.059055292467747 ], [ 14.834978135632412, 41.038477899335589 ], [ 14.993664665391975, 41.106494258802968 ], [ 15.000168571422421, 41.134795041358075 ], [ 14.963913687366755, 41.165468870392033 ], [ 14.998169059254678, 41.205953491760226 ], [ 14.983029898910672, 41.239967164552979 ], [ 14.991555290244435, 41.272036257567208 ], [ 15.104099239888001, 41.248075075304484 ], [ 15.178696410011298, 41.289054080981032 ], [ 15.240131959722135, 41.266729860894316 ], [ 15.267575807977153, 41.237868775523566 ], [ 15.24648205740101, 41.228848999881393 ], [ 15.252700318964514, 41.207151001117779 ], [ 15.202866333014867, 41.153383909339937 ], [ 15.280341921842194, 41.103846553975245 ], [ 15.406025520561286, 41.105626339284129 ], [ 15.558559706365315, 41.055122186639551 ], [ 15.576247694675374, 41.026590692006835 ], [ 15.536652966860913, 40.933261830768856 ], [ 15.470866831638943, 40.901796985942099 ], [ 15.369221319808048, 40.898951526491715 ], [ 15.362080206336429, 40.834461778388345 ], [ 15.344260381911056, 40.820684921871646 ], [ 15.298403446262, 40.835681260881472 ], [ 15.279375125461684, 40.799360458318461 ], [ 15.252546510612945, 40.787934676943735 ], [ 15.237385377133421, 40.723488873312817 ], [ 15.215764282995224, 40.715721539417473 ], [ 15.172390257704194, 40.711381939125147 ], [ 15.111657833941877, 40.765775252226092 ], [ 14.985622672248496, 40.780112410659228 ], [ 14.918913685118468, 40.80498545871194 ], [ 14.762314558270248, 40.805842392112709 ], [ 14.710239361057631, 40.848392442357294 ], [ 14.652473245843623, 40.826628525985655 ], [ 14.605539649934883, 40.847645371936323 ], [ 14.574140723615471, 40.885251574600488 ], [ 14.594443458398871, 40.903335071256492 ], [ 14.653791605198421, 40.893952747421338 ] ], [ [ 14.687805277991174, 40.972746695603519 ], [ 14.707404888624694, 41.006331901695887 ], [ 14.691254985629087, 41.029381219068 ], [ 14.672402445416481, 40.988940543970898 ], [ 14.687805277991174, 40.972746695603519 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-AQ", "NAME_1": "L'Aquila" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.375883841466077, 42.603766044567294 ], [ 13.436286676289058, 42.509360523969008 ], [ 13.511499080718011, 42.470831469396785 ], [ 13.531648008049103, 42.444057786937321 ], [ 13.738630437544657, 42.437839524474441 ], [ 13.775236884574554, 42.413230148652417 ], [ 13.806899483124653, 42.374591231100396 ], [ 13.843593819998773, 42.269265299553922 ], [ 13.805559150634281, 42.234900063786881 ], [ 13.795407783242581, 42.151162268024223 ], [ 13.817490303334807, 42.140483556171148 ], [ 13.889340892668031, 42.163027502217403 ], [ 14.001687087688936, 42.075807040462507 ], [ 14.085380938979142, 42.086683505139604 ], [ 14.102277912395721, 42.069797518740472 ], [ 14.081579669266318, 42.005219878994183 ], [ 14.097619709282128, 41.949782865786631 ], [ 14.08193123134123, 41.939312894674345 ], [ 14.099751056665923, 41.902321926315835 ], [ 14.117175373644557, 41.889522853197093 ], [ 14.194387291140572, 41.896103663852955 ], [ 14.229410536567002, 41.877366328593155 ], [ 14.191618736315604, 41.839568017250201 ], [ 14.160615316543613, 41.841842187766701 ], [ 14.142268148556184, 41.824165184675508 ], [ 14.187114341553581, 41.765981588879185 ], [ 14.094785235949871, 41.723453510870797 ], [ 14.062990801284457, 41.728770894561137 ], [ 13.994567947352891, 41.686912982348247 ], [ 13.945700757783754, 41.688176410213146 ], [ 13.891845775262311, 41.723651265493459 ], [ 13.800747139169118, 41.752622213844063 ], [ 13.749990301311357, 41.751842184169448 ], [ 13.714812077515376, 41.794787742760093 ], [ 13.655683656675421, 41.809487450285587 ], [ 13.578845275289211, 41.769903708589254 ], [ 13.536042538932008, 41.769233541894437 ], [ 13.40521733890904, 41.831602929631458 ], [ 13.357097219760874, 41.83083388607497 ], [ 13.368610891879143, 41.907782131340241 ], [ 13.311767628573193, 41.943949124652363 ], [ 13.097050823536676, 42.023665924742602 ], [ 13.028430214982393, 42.031927643845677 ], [ 13.013708534321381, 42.108458408528691 ], [ 13.073298381115364, 42.141252599727693 ], [ 13.094260295576191, 42.173134925136651 ], [ 13.241499070825455, 42.129057774796422 ], [ 13.295507861698468, 42.133221593601661 ], [ 13.305417529994997, 42.16745499325333 ], [ 13.367490286247687, 42.185175940816976 ], [ 13.320358937514925, 42.195019691505536 ], [ 13.305109913291858, 42.219024819140088 ], [ 13.272854052672358, 42.228692788341505 ], [ 13.227546433720931, 42.272143717358631 ], [ 13.20599125719076, 42.318835614172258 ], [ 13.160046430798104, 42.340775312030985 ], [ 13.178349654313081, 42.399947677343391 ], [ 13.1418750433985, 42.415317551563703 ], [ 13.128537640599632, 42.445266282413002 ], [ 13.166572309964124, 42.485619067665823 ], [ 13.136293988376849, 42.542286550383949 ], [ 13.167956587826268, 42.551405202887793 ], [ 13.186106002090298, 42.586913016522487 ], [ 13.327961476041253, 42.573059256279635 ], [ 13.368940481717857, 42.585979178496245 ], [ 13.375883841466077, 42.603766044567294 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-PN", "NAME_1": "Pordenone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.500092240164747, 46.404181459906397 ], [ 12.53837404412684, 46.363375562931878 ], [ 12.593129905420767, 46.362958082349621 ], [ 12.641975121854387, 46.3393045176893 ], [ 12.750344266574643, 46.341029370608965 ], [ 12.801232940547777, 46.357014479134875 ], [ 12.965698279052333, 46.328922436421294 ], [ 12.977959021591573, 46.256061106235052 ], [ 12.94596683320276, 46.204227608117606 ], [ 12.954821813475917, 46.178420722038652 ], [ 12.905734897947184, 45.96196807706508 ], [ 12.917446323788795, 45.911760555904891 ], [ 12.972927283267495, 45.869155573271087 ], [ 12.972883337895723, 45.842623589906736 ], [ 12.951789587319581, 45.820716851301597 ], [ 12.894550815667571, 45.825836480369276 ], [ 12.870051302825345, 45.846842340201817 ], [ 12.826743196041662, 45.824441216389005 ], [ 12.791960479692364, 45.856169733446393 ], [ 12.672802760139234, 45.80206206481239 ], [ 12.638855004954507, 45.832087701186424 ], [ 12.567905295293144, 45.838855279447557 ], [ 12.526289082175367, 45.92035186484668 ], [ 12.447802751595702, 45.959649962076071 ], [ 12.418952652343023, 46.050682680561238 ], [ 12.447341325641673, 46.085201724679848 ], [ 12.49917482375912, 46.106647037330902 ], [ 12.49822999961475, 46.146955877211951 ], [ 12.460656756204344, 46.181365058350764 ], [ 12.452922380663324, 46.209709786277585 ], [ 12.382785659030901, 46.229946603452959 ], [ 12.335917981629507, 46.269475412760073 ], [ 12.370393080376346, 46.306268627395241 ], [ 12.444704606932078, 46.337744458340069 ], [ 12.500092240164747, 46.404181459906397 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-IS", "NAME_1": "Isernia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490381434955225, 41.776079281133889 ], [ 14.481152438334334, 41.745678854095843 ], [ 14.516110936170776, 41.726760396275267 ], [ 14.519033299347257, 41.705754535543349 ], [ 14.490754489927781, 41.680024554089869 ], [ 14.42558358901141, 41.659897600793613 ], [ 14.423188569396928, 41.644494768218976 ], [ 14.501850681463736, 41.593891738712728 ], [ 14.458300874685619, 41.528116589608885 ], [ 14.392251068132282, 41.499387340353451 ], [ 14.382694794728991, 41.441960703923314 ], [ 14.222512292208478, 41.494806041865331 ], [ 14.120866780377582, 41.4956629752661 ], [ 14.080195391404175, 41.447707651486894 ], [ 14.109550861982655, 41.395478645023445 ], [ 14.088259356783851, 41.388744026015956 ], [ 14.031482011085927, 41.398148322986685 ], [ 13.988020095051354, 41.458089731855637 ], [ 13.96180671540759, 41.470702036469788 ], [ 14.009311600250157, 41.524644909734775 ], [ 14.008674392808985, 41.553308241382183 ], [ 13.992568435185149, 41.628289933733413 ], [ 13.945700757783754, 41.688176410213146 ], [ 14.001247634870424, 41.687484271282074 ], [ 14.062990801284457, 41.728770894561137 ], [ 14.094785235949871, 41.723453510870797 ], [ 14.182939536630272, 41.762927389587333 ], [ 14.141652913351265, 41.818683007414847 ], [ 14.154726644818766, 41.839458154270403 ], [ 14.191618736315604, 41.839568017250201 ], [ 14.282871180760367, 41.906233059008457 ], [ 14.33874764768575, 41.866023096888398 ], [ 14.376716399442273, 41.873263087221687 ], [ 14.42824227995726, 41.842380517446884 ], [ 14.448457124896379, 41.7669044407873 ], [ 14.490381434955225, 41.776079281133889 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-BI", "NAME_1": "Biella" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.129582372328628, 45.756974172719879 ], [ 8.182228858475014, 45.7419338892376 ], [ 8.280380717296225, 45.661821581700622 ], [ 8.290729839310643, 45.631246628628958 ], [ 8.263176127176507, 45.594684127870153 ], [ 8.289499369800069, 45.556506636272218 ], [ 8.262956400317591, 45.504266643690642 ], [ 8.112201999822446, 45.378231482896581 ], [ 8.027035980825815, 45.403071571695648 ], [ 8.027497406779901, 45.449104287932528 ], [ 7.882214198326551, 45.534105512459405 ], [ 7.895749354848817, 45.568174116742057 ], [ 7.880170741686356, 45.602693160860667 ], [ 7.919545742641901, 45.649044480818134 ], [ 7.91629378962665, 45.729662159680913 ], [ 8.043229829193251, 45.734616994278838 ], [ 8.078386080753035, 45.720862110897656 ], [ 8.129582372328628, 45.756974172719879 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "IT-PO", "NAME_1": "Prato" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.200106485326046, 44.10467889841243 ], [ 11.189670379084703, 44.024089585066292 ], [ 11.135353970609231, 43.895022197216576 ], [ 11.146933561234846, 43.861502908732234 ], [ 11.062294885800327, 43.817019264827195 ], [ 11.057043420617333, 43.759055395889789 ], [ 10.977897910360241, 43.785444557020639 ], [ 10.964099081607344, 43.812481910811528 ], [ 11.02439205255115, 43.846286843762812 ], [ 11.025710411905948, 43.931606672010275 ], [ 11.062712366382584, 43.973860090770529 ], [ 11.015822716744992, 43.995426254318147 ], [ 11.051638147082826, 44.068100817798495 ], [ 11.048254125927144, 44.092382786436417 ], [ 11.200106485326046, 44.10467889841243 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/italy_regions.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/italy_regions.geojson new file mode 100644 index 000000000000..871098b36fec --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/italy_regions.geojson @@ -0,0 +1,26 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "NAME_1": "Marche", "ISO": "IT-57" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.916724724800755, 42.894584737494966 ], [ 13.816123316587612, 42.877523900747057 ], [ 13.774078751107728, 42.859485469040976 ], [ 13.72485564570424, 42.855721080540967 ], [ 13.699303310176438, 42.822615601908971 ], [ 13.663599836744181, 42.807127380591886 ], [ 13.635516366621307, 42.803302389555917 ], [ 13.624398869633838, 42.816541735840168 ], [ 13.571461264925428, 42.800507078974697 ], [ 13.534478518585237, 42.816644505459031 ], [ 13.529114552507343, 42.795341939318952 ], [ 13.502316530881258, 42.77096911334872 ], [ 13.504224310152731, 42.747084947943236 ], [ 13.488800659368593, 42.733673712789717 ], [ 13.45210847879806, 42.733911387405264 ], [ 13.427396937983231, 42.706425296381987 ], [ 13.388807677200528, 42.687300169831964 ], [ 13.357755645107735, 42.694098094891459 ], [ 13.318860293576895, 42.722726303502505 ], [ 13.287762036842247, 42.739220780618439 ], [ 13.264502280253325, 42.740181239807953 ], [ 13.254152834006465, 42.721450249452147 ], [ 13.189215833537546, 42.733577628927513 ], [ 13.194196609710362, 42.758495152417026 ], [ 13.216506774642644, 42.771476382264211 ], [ 13.245124119367892, 42.772627564469211 ], [ 13.264029091353761, 42.808243691532653 ], [ 13.247943837114077, 42.849474969304353 ], [ 13.230901403504342, 42.854000781086668 ], [ 13.187557255135516, 42.834477293749117 ], [ 13.154557655927601, 42.834622019074921 ], [ 13.112247784161525, 42.889333511514792 ], [ 13.080726005213807, 42.899528199248792 ], [ 13.052779583571294, 42.919795984326626 ], [ 13.037783946901206, 42.907543886926589 ], [ 13.002523591790149, 42.895566931650528 ], [ 12.990237852892305, 42.871119626373641 ], [ 12.976152797799937, 42.869804191194859 ], [ 12.968393686547856, 42.900677357671562 ], [ 12.976787230481836, 42.925680045230955 ], [ 12.895822077078666, 42.964592022053552 ], [ 12.908166392222691, 42.984870486793781 ], [ 12.888007381548421, 43.009515662968809 ], [ 12.906705859589829, 43.035395397263976 ], [ 12.889934815853701, 43.058884079266129 ], [ 12.897327701037113, 43.09348462558588 ], [ 12.875466379546546, 43.123444504315579 ], [ 12.843003102618345, 43.12234421735328 ], [ 12.832360997938194, 43.147299177125888 ], [ 12.862490472547746, 43.165966038681233 ], [ 12.868244076689649, 43.195212528606049 ], [ 12.862344919549191, 43.211252115588152 ], [ 12.836606568022578, 43.217532939478069 ], [ 12.824756867376795, 43.266567356241374 ], [ 12.789242008456791, 43.284482206696424 ], [ 12.802226056220443, 43.307567531768846 ], [ 12.791086899941561, 43.337301187764439 ], [ 12.749689714158825, 43.378058380156517 ], [ 12.746809419868166, 43.390452943940701 ], [ 12.774427487657977, 43.401966497068408 ], [ 12.765912305254945, 43.426038772824619 ], [ 12.767446108847878, 43.459847887521505 ], [ 12.735763292396454, 43.463753373193889 ], [ 12.715265434552691, 43.446085501981578 ], [ 12.709384576537682, 43.425115966803361 ], [ 12.66317659085316, 43.43683082384991 ], [ 12.62515821359421, 43.420658567814272 ], [ 12.604760711837301, 43.437982931144361 ], [ 12.56425968478989, 43.459799784697672 ], [ 12.49981472840371, 43.521458051934118 ], [ 12.480534309027922, 43.527453820583894 ], [ 12.457387863637186, 43.517307933907453 ], [ 12.433186279253926, 43.538406998059394 ], [ 12.417935631818168, 43.534894000786394 ], [ 12.399043882069481, 43.513218797495249 ], [ 12.366736516080339, 43.534085932253056 ], [ 12.333181381108808, 43.523578304491927 ], [ 12.31290682962284, 43.543096871186982 ], [ 12.344949885177261, 43.553627442519236 ], [ 12.373496499035324, 43.584287738557151 ], [ 12.351156356678519, 43.611476044063558 ], [ 12.263183396169937, 43.589072032206587 ], [ 12.225280421846268, 43.593915565530374 ], [ 12.218159327299237, 43.603497960259112 ], [ 12.217786380802849, 43.604323121809841 ], [ 12.213834576267299, 43.61088376589796 ], [ 12.187218825608769, 43.636039460004476 ], [ 12.203692080567693, 43.651743968009342 ], [ 12.232656485132241, 43.655595902256927 ], [ 12.251079533243413, 43.672570743323874 ], [ 12.273479375928517, 43.675964237760326 ], [ 12.320768370299373, 43.694666916950439 ], [ 12.330116713202194, 43.707044149327373 ], [ 12.368190442424893, 43.71510153409055 ], [ 12.327074389378867, 43.751009835620714 ], [ 12.283780916917237, 43.76491721980068 ], [ 12.284853869138802, 43.794794791762179 ], [ 12.315886833910598, 43.805637702470797 ], [ 12.33543921078245, 43.824118636046755 ], [ 12.347371693262831, 43.867020012594963 ], [ 12.386230551428406, 43.881984733828588 ], [ 12.420010773732276, 43.872231174687357 ], [ 12.417681311971824, 43.899048936454307 ], [ 12.48740431178164, 43.896469315118438 ], [ 12.49394529981652, 43.915564808052956 ], [ 12.542596427514786, 43.889081906580529 ], [ 12.541692224843722, 43.864027769312649 ], [ 12.584400319589555, 43.884103453977268 ], [ 12.602561423884056, 43.86343482663694 ], [ 12.600999399191556, 43.850510878434605 ], [ 12.623274694683218, 43.821151727050641 ], [ 12.681317061618605, 43.828070669756386 ], [ 12.682295035094915, 43.852796654608937 ], [ 12.723632264320612, 43.861236755559105 ], [ 12.722653233043534, 43.880566371936155 ], [ 12.734831054339262, 43.896024749086486 ], [ 12.727907581132266, 43.924182452501476 ], [ 12.755640592249428, 43.961954709655835 ], [ 12.750621437533921, 43.968544500728427 ], [ 12.797592701131089, 43.965174407536736 ], [ 12.882185026563768, 43.928843918415211 ], [ 12.907332215722676, 43.923002451206116 ], [ 12.986315895884651, 43.865335277194411 ], [ 13.022041503428627, 43.849821066708408 ], [ 13.067573556099875, 43.821916513278723 ], [ 13.128498126782517, 43.776816456258771 ], [ 13.219789197382234, 43.717697570473433 ], [ 13.307963186618588, 43.668418436700328 ], [ 13.375420345710637, 43.643981453778686 ], [ 13.413824707555477, 43.62371569378822 ], [ 13.481587787160663, 43.606808724967074 ], [ 13.514888763874522, 43.624379272982068 ], [ 13.53160503930083, 43.619539230467723 ], [ 13.565564875589491, 43.589131307393075 ], [ 13.572892841047944, 43.571073275376946 ], [ 13.625544343192777, 43.550333122731104 ], [ 13.622952259080298, 43.503264185700985 ], [ 13.670913983503887, 43.423885394403797 ], [ 13.709885252901977, 43.336811803013191 ], [ 13.735357405632325, 43.308378168785488 ], [ 13.777727030541088, 43.234270982027127 ], [ 13.803650160825169, 43.172324532615271 ], [ 13.844697447729336, 43.096726964764699 ], [ 13.852405949976751, 43.0544896242939 ], [ 13.872683224305113, 42.987350114447253 ], [ 13.892990732898433, 42.936701041954201 ], [ 13.916724724800755, 42.894584737494966 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Abruzzo", "ISO": "IT-65" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.233094736844542, 42.465408449024338 ], [ 14.259919074419273, 42.440958540248019 ], [ 14.320923772076622, 42.404985670789472 ], [ 14.409916365403955, 42.358090012693381 ], [ 14.410145351013178, 42.34787727634469 ], [ 14.441202555547132, 42.312316019711155 ], [ 14.502406052834061, 42.271809117925812 ], [ 14.50826546902605, 42.252503041083983 ], [ 14.563059109050114, 42.223933001549412 ], [ 14.62078725762824, 42.199270731361651 ], [ 14.717219238683663, 42.170204636206051 ], [ 14.717765760822685, 42.107717501779526 ], [ 14.751524634670931, 42.080592191862785 ], [ 14.779549206678633, 42.069826092393903 ], [ 14.761709287838086, 42.041686685310019 ], [ 14.782246961659654, 42.03510522100111 ], [ 14.765818464354835, 42.018088344224324 ], [ 14.727161086607271, 42.003246147525523 ], [ 14.670244377350645, 41.948202807650823 ], [ 14.663763356271486, 41.916289062991815 ], [ 14.641321987150839, 41.899342290368502 ], [ 14.614244513551007, 41.889188438808077 ], [ 14.598641695486231, 41.853465546955221 ], [ 14.567979076507637, 41.818119509367691 ], [ 14.550771436132116, 41.816587375281273 ], [ 14.533345113013381, 41.791585377669456 ], [ 14.48954516735024, 41.760969858882625 ], [ 14.465140215227283, 41.777175312849181 ], [ 14.454744170997854, 41.795807644752422 ], [ 14.445696547537173, 41.837823152507006 ], [ 14.375890767079124, 41.878472677297999 ], [ 14.343491250232539, 41.868952105986303 ], [ 14.324496797125946, 41.895656179046505 ], [ 14.302740182045241, 41.894221597303449 ], [ 14.279300964143342, 41.909518272888199 ], [ 14.266367103605036, 41.895796673666737 ], [ 14.226873756031999, 41.874797787526546 ], [ 14.21686752526225, 41.853771558598808 ], [ 14.155622375810376, 41.839612463530287 ], [ 14.147157882335579, 41.827297321146354 ], [ 14.164648133055799, 41.80946941878944 ], [ 14.170691877691496, 41.779708146634697 ], [ 14.201914373000662, 41.766995000264195 ], [ 14.193963271972601, 41.748023553701856 ], [ 14.158677477034754, 41.74702474601149 ], [ 14.115264658940367, 41.736933820690531 ], [ 14.069570906247812, 41.737225381408905 ], [ 14.053477370805631, 41.719612014472446 ], [ 14.053246219551411, 41.701698685139711 ], [ 14.026922804646032, 41.702701603081053 ], [ 14.019180269188272, 41.682360810913849 ], [ 13.994407574240309, 41.693692836911588 ], [ 13.956438332477653, 41.695669426858679 ], [ 13.941015156699477, 41.687972757233084 ], [ 13.919701411270122, 41.71724358135657 ], [ 13.89763893693722, 41.732134254419954 ], [ 13.880585016448974, 41.72829710444789 ], [ 13.823480811890143, 41.740884308191021 ], [ 13.810136331327767, 41.753868855786827 ], [ 13.790142019301378, 41.742969511743183 ], [ 13.765912204726451, 41.748702417466134 ], [ 13.748649336676205, 41.773587431717665 ], [ 13.716492042916633, 41.797397523762093 ], [ 13.692708067659144, 41.791522967374952 ], [ 13.662891496340114, 41.811268090273479 ], [ 13.63845929409505, 41.804317946667346 ], [ 13.63127241458872, 41.782645519324547 ], [ 13.586099572066995, 41.76643483256229 ], [ 13.576229509611961, 41.755018809205026 ], [ 13.520432946280071, 41.772965539585904 ], [ 13.50440742760016, 41.801543496052787 ], [ 13.463751577454873, 41.809450717205642 ], [ 13.451554363454068, 41.822817937681997 ], [ 13.407463067282647, 41.83746446307255 ], [ 13.391512384066456, 41.819786708627994 ], [ 13.366833915817226, 41.833068138188764 ], [ 13.359835255309399, 41.869376933330074 ], [ 13.383994309041661, 41.904186669042808 ], [ 13.356555612045883, 41.92573862211708 ], [ 13.337529960650786, 41.925980487880267 ], [ 13.322622080905733, 41.945157799363002 ], [ 13.286035101953608, 41.950368901050894 ], [ 13.2315416304117, 41.981688602069163 ], [ 13.199082173301921, 41.986496263187547 ], [ 13.139947933551502, 42.015346562494095 ], [ 13.107740704300078, 42.025104605550808 ], [ 13.101323964660519, 42.009748286903843 ], [ 13.058121607990385, 42.015554349080034 ], [ 13.02662171301999, 42.050027646246441 ], [ 13.018487902907868, 42.074938195218941 ], [ 13.037007376516502, 42.118997634984225 ], [ 13.059821994116945, 42.122954529094393 ], [ 13.086165958188138, 42.144334609116008 ], [ 13.087057415640288, 42.177871038920259 ], [ 13.122312478849601, 42.177119397736753 ], [ 13.158308551518324, 42.157494956084136 ], [ 13.192711209324177, 42.158257556288703 ], [ 13.237228454051005, 42.12913098733938 ], [ 13.265000251731703, 42.136789926341372 ], [ 13.305290680556327, 42.138256333433226 ], [ 13.323194376101069, 42.161412509267684 ], [ 13.353963092799255, 42.174943636363409 ], [ 13.352232570651134, 42.19127877322623 ], [ 13.33189413054904, 42.208179471632604 ], [ 13.319935807435737, 42.229637860111815 ], [ 13.28212792987294, 42.23722655316849 ], [ 13.271242878606939, 42.254163387508633 ], [ 13.238635371632126, 42.272824691956629 ], [ 13.22893262267136, 42.287175296775608 ], [ 13.226462981830029, 42.319330568331061 ], [ 13.191351061361985, 42.332334245211037 ], [ 13.153349002710204, 42.356994106668139 ], [ 13.189398306857452, 42.381111437583108 ], [ 13.189201958226942, 42.400220126524466 ], [ 13.15516715154677, 42.414216312915428 ], [ 13.116168386454083, 42.443909781783191 ], [ 13.15405333366988, 42.462332424957502 ], [ 13.171535326789312, 42.486081202394658 ], [ 13.177769627522387, 42.512636323290614 ], [ 13.157356701348391, 42.527716086144046 ], [ 13.176085156583463, 42.552646291933776 ], [ 13.174272316382705, 42.567512898475428 ], [ 13.191362658468133, 42.587517659346418 ], [ 13.226788582099001, 42.582836772562032 ], [ 13.245935333596099, 42.572705807059442 ], [ 13.261546699490447, 42.583099750497468 ], [ 13.291260373436115, 42.570537370209983 ], [ 13.327113247102783, 42.579935059903171 ], [ 13.342823763659114, 42.574902272269654 ], [ 13.38178069237987, 42.581013207403942 ], [ 13.406420484028999, 42.628797402691156 ], [ 13.408283307006782, 42.642863529562753 ], [ 13.369918601352065, 42.648968157148225 ], [ 13.349682744561218, 42.668716743016056 ], [ 13.357755645107735, 42.694098094891459 ], [ 13.388807677200528, 42.687300169831964 ], [ 13.427396937983231, 42.706425296381987 ], [ 13.45210847879806, 42.733911387405264 ], [ 13.488800659368593, 42.733673712789717 ], [ 13.504224310152731, 42.747084947943236 ], [ 13.502316530881258, 42.77096911334872 ], [ 13.529114552507343, 42.795341939318952 ], [ 13.534478518585237, 42.816644505459031 ], [ 13.571461264925428, 42.800507078974697 ], [ 13.624398869633838, 42.816541735840168 ], [ 13.635516366621307, 42.803302389555917 ], [ 13.663599836744181, 42.807127380591886 ], [ 13.699303310176438, 42.822615601908971 ], [ 13.72485564570424, 42.855721080540967 ], [ 13.774078751107728, 42.859485469040976 ], [ 13.816123316587612, 42.877523900747057 ], [ 13.916724724800755, 42.894584737494966 ], [ 13.940261590286207, 42.814281241061359 ], [ 13.960990666705019, 42.769881546581686 ], [ 13.995827523092627, 42.708337620726006 ], [ 14.038847503423087, 42.654779555068707 ], [ 14.075265254754333, 42.601629611221618 ], [ 14.123731993512131, 42.549463769402422 ], [ 14.205996100913337, 42.478537193821388 ], [ 14.233094736844542, 42.465408449024338 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Molise", "ISO": "IT-67" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.13804572601151, 41.926645131283351 ], [ 15.131434658668908, 41.903020468357226 ], [ 15.138799094149407, 41.879280886008274 ], [ 15.103662499331355, 41.846740100367967 ], [ 15.100268188895479, 41.833788284985346 ], [ 15.11644311204285, 41.814535319156661 ], [ 15.115135695304557, 41.789559297141047 ], [ 15.097373450288227, 41.765933609661168 ], [ 15.102843255471287, 41.741275748922241 ], [ 15.133599011611897, 41.697974418054727 ], [ 15.106073507209885, 41.685610971240514 ], [ 15.069561949061683, 41.6600669667693 ], [ 15.048312513445644, 41.655520501691832 ], [ 15.044698171360217, 41.640346094960961 ], [ 15.022689641148363, 41.621853006204077 ], [ 14.988700165326026, 41.637807884412567 ], [ 14.955895630688966, 41.643400959043788 ], [ 14.934875641972228, 41.621619242178546 ], [ 14.947021944093835, 41.609683372769084 ], [ 14.948537857070249, 41.573751713836685 ], [ 14.937030621498904, 41.527855827102236 ], [ 14.966394423870211, 41.519007319233154 ], [ 15.007617821316355, 41.486388790667682 ], [ 14.9822669632229, 41.469066131494557 ], [ 14.946414272248898, 41.455974077131096 ], [ 14.884420400615085, 41.444779771122839 ], [ 14.867695147263719, 41.427822853780604 ], [ 14.843115392073251, 41.426607271996453 ], [ 14.790181661567996, 41.452551867281493 ], [ 14.773960106309859, 41.445526426643241 ], [ 14.764700386857301, 41.417368064904643 ], [ 14.717278583928451, 41.400827771466147 ], [ 14.699623329791864, 41.410843581190385 ], [ 14.671443331166333, 41.40664145578166 ], [ 14.633779448306827, 41.387432981213287 ], [ 14.60303922297425, 41.363962337538197 ], [ 14.56632577764718, 41.392130642127142 ], [ 14.551523203529202, 41.379385180268038 ], [ 14.488605940440827, 41.390708420083016 ], [ 14.477989489025873, 41.410171904803192 ], [ 14.453967497959626, 41.427913314418106 ], [ 14.427611314256213, 41.429106270905756 ], [ 14.342178761593951, 41.454080402706865 ], [ 14.327161984410347, 41.453437422302535 ], [ 14.277555162757212, 41.485849135713487 ], [ 14.249421810605362, 41.484551902892456 ], [ 14.241625288222719, 41.496661590456945 ], [ 14.204853211254242, 41.499934198876645 ], [ 14.167302350595877, 41.494416225636385 ], [ 14.15164277331812, 41.482656041498579 ], [ 14.125270002804655, 41.507369669026666 ], [ 14.078369433168255, 41.447083963600356 ], [ 14.107489615994126, 41.416432516304923 ], [ 14.084769192623909, 41.400034099677676 ], [ 14.042388571469933, 41.39278043584752 ], [ 14.017694511788269, 41.423418784127833 ], [ 14.005020681923792, 41.42500310896304 ], [ 14.005781248381961, 41.452833570330199 ], [ 13.977906078513243, 41.462487472719815 ], [ 13.992776635760507, 41.482081471864106 ], [ 13.972906893010684, 41.494036417114664 ], [ 14.022159092117356, 41.527012522732193 ], [ 14.023659888804259, 41.56103265831527 ], [ 13.997814151055278, 41.579429587065952 ], [ 14.010990423866678, 41.607538602272108 ], [ 13.996666499222393, 41.624139801618973 ], [ 13.988294022558046, 41.653832035951005 ], [ 13.96736001429295, 41.674030248299324 ], [ 13.941015156699477, 41.687972757233084 ], [ 13.956438332477653, 41.695669426858679 ], [ 13.994407574240309, 41.693692836911588 ], [ 14.019180269188272, 41.682360810913849 ], [ 14.026922804646032, 41.702701603081053 ], [ 14.053246219551411, 41.701698685139711 ], [ 14.053477370805631, 41.719612014472446 ], [ 14.069570906247812, 41.737225381408905 ], [ 14.115264658940367, 41.736933820690531 ], [ 14.158677477034754, 41.74702474601149 ], [ 14.193963271972601, 41.748023553701856 ], [ 14.201914373000662, 41.766995000264195 ], [ 14.170691877691496, 41.779708146634697 ], [ 14.164648133055799, 41.80946941878944 ], [ 14.147157882335579, 41.827297321146354 ], [ 14.155622375810376, 41.839612463530287 ], [ 14.21686752526225, 41.853771558598808 ], [ 14.226873756031999, 41.874797787526546 ], [ 14.266367103605036, 41.895796673666737 ], [ 14.279300964143342, 41.909518272888199 ], [ 14.302740182045241, 41.894221597303449 ], [ 14.324496797125946, 41.895656179046505 ], [ 14.343491250232539, 41.868952105986303 ], [ 14.375890767079124, 41.878472677297999 ], [ 14.445696547537173, 41.837823152507006 ], [ 14.454744170997854, 41.795807644752422 ], [ 14.465140215227283, 41.777175312849181 ], [ 14.48954516735024, 41.760969858882625 ], [ 14.533345113013381, 41.791585377669456 ], [ 14.550771436132116, 41.816587375281273 ], [ 14.567979076507637, 41.818119509367691 ], [ 14.598641695486231, 41.853465546955221 ], [ 14.614244513551007, 41.889188438808077 ], [ 14.641321987150839, 41.899342290368502 ], [ 14.663763356271486, 41.916289062991815 ], [ 14.670244377350645, 41.948202807650823 ], [ 14.727161086607271, 42.003246147525523 ], [ 14.765818464354835, 42.018088344224324 ], [ 14.782246961659654, 42.03510522100111 ], [ 14.761709287838086, 42.041686685310019 ], [ 14.779549206678633, 42.069826092393903 ], [ 14.859157068121885, 42.03450852975633 ], [ 14.915703271218687, 42.017746565350102 ], [ 14.993590838894631, 42.004786688217678 ], [ 15.089402310381283, 41.938448900335395 ], [ 15.13804572601151, 41.926645131283351 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Lazio", "ISO": "IT-62" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.243624215182994, 41.737867752004576 ], [ 12.21984172576858, 41.770544517463918 ], [ 12.224221068356169, 41.781894623661735 ], [ 12.203510232991254, 41.829742950622609 ], [ 12.177670531091044, 41.873527292519725 ], [ 12.140738377440915, 41.916242170859483 ], [ 12.049786154042998, 41.956510706301302 ], [ 12.023977794115932, 41.9838407723609 ], [ 11.979957764680886, 41.996447684381316 ], [ 11.963893192053675, 42.014262224653557 ], [ 11.915734127794892, 42.039369819661665 ], [ 11.879449276579523, 42.038062209548563 ], [ 11.844990932008793, 42.03018711427066 ], [ 11.820141894992286, 42.049536549235356 ], [ 11.807310650324283, 42.079543870693783 ], [ 11.754958031180241, 42.127185779225059 ], [ 11.733766971184139, 42.158058111336828 ], [ 11.739298231747759, 42.17132357829577 ], [ 11.720683865102703, 42.190416743498588 ], [ 11.695050642129432, 42.235708369959994 ], [ 11.63247438265163, 42.295532042355823 ], [ 11.556419466737141, 42.338389879074853 ], [ 11.45113006521626, 42.377247045229865 ], [ 11.452083509204654, 42.382292243429404 ], [ 11.449780207458822, 42.394039298977411 ], [ 11.48192765192338, 42.419786865353608 ], [ 11.488888408440369, 42.439370363574263 ], [ 11.5165750923461, 42.433556015626905 ], [ 11.5435113232683, 42.442114789784405 ], [ 11.617709310728431, 42.43604425816801 ], [ 11.615960005868102, 42.488638172954708 ], [ 11.561235582203089, 42.517293007395715 ], [ 11.58435064511499, 42.542754621250182 ], [ 11.578557204548636, 42.56621098077828 ], [ 11.600890164619015, 42.56979561892458 ], [ 11.616191560285268, 42.559874834984541 ], [ 11.685941663536957, 42.584843991943252 ], [ 11.680049983789461, 42.595313337790387 ], [ 11.711617343731417, 42.61103075771284 ], [ 11.733129585050669, 42.606061885389607 ], [ 11.751830319925919, 42.625595434716409 ], [ 11.804776035350242, 42.643999178416067 ], [ 11.808407124577794, 42.659751170671854 ], [ 11.784515149937148, 42.671321054910202 ], [ 11.781143070502255, 42.705325727112402 ], [ 11.797080998601096, 42.706513129263726 ], [ 11.818658361058541, 42.745771945513361 ], [ 11.779418833765593, 42.758017440230866 ], [ 11.759273255676629, 42.782236462285411 ], [ 11.753349313045744, 42.802236022458374 ], [ 11.775874040438593, 42.820673635327459 ], [ 11.80300110081736, 42.800970061202577 ], [ 11.815446802121066, 42.8237621024116 ], [ 11.850593088594648, 42.838683189875887 ], [ 11.894963940648154, 42.834668794073558 ], [ 11.9049256096552, 42.827894644781637 ], [ 11.931307756390986, 42.778440340033235 ], [ 11.97948183640772, 42.764585315682403 ], [ 11.968726058972106, 42.734578430361644 ], [ 11.949145956380136, 42.727403910843449 ], [ 11.926292757558661, 42.70474094517725 ], [ 11.941329826271726, 42.683300890387194 ], [ 11.97797968717965, 42.675525143512083 ], [ 12.024711325237149, 42.651486672789197 ], [ 12.073715387792065, 42.656670308861656 ], [ 12.119543863273396, 42.649823514219221 ], [ 12.140774611037447, 42.656300823454188 ], [ 12.16101159955824, 42.676909990906495 ], [ 12.197280568141618, 42.66384549189879 ], [ 12.243340641492326, 42.628091062814853 ], [ 12.229194591134986, 42.610401984449375 ], [ 12.245948987694959, 42.599948884482593 ], [ 12.238720421699664, 42.572005785237558 ], [ 12.275043308590547, 42.559914794904557 ], [ 12.267169292630577, 42.532617674399198 ], [ 12.316442039191863, 42.488380024679998 ], [ 12.374173937561823, 42.481128252615896 ], [ 12.40352334299747, 42.49996109026506 ], [ 12.417899011365868, 42.458454637334462 ], [ 12.411381843078695, 42.446006775687508 ], [ 12.422269521962855, 42.421603933820791 ], [ 12.466712791879388, 42.419465501787407 ], [ 12.481361930332469, 42.404163922927708 ], [ 12.511129429006887, 42.403566741975922 ], [ 12.513271034315048, 42.378624695109885 ], [ 12.531231637708686, 42.365074276401081 ], [ 12.54893846608655, 42.38232862011472 ], [ 12.569990346498846, 42.382910275544901 ], [ 12.614891063683718, 42.414481756275805 ], [ 12.611962216367422, 42.436246623261539 ], [ 12.621374616963509, 42.468667316790956 ], [ 12.642693800303487, 42.464506052831879 ], [ 12.649855656287059, 42.443090953236819 ], [ 12.665982787549353, 42.440973358947438 ], [ 12.702785342659867, 42.460899122061797 ], [ 12.741568095117392, 42.470532509047949 ], [ 12.711133549815331, 42.500796903906114 ], [ 12.731537309034664, 42.50885750668111 ], [ 12.773542713309421, 42.513093990305528 ], [ 12.773202317644337, 42.531279914395533 ], [ 12.823016965798367, 42.537487077923757 ], [ 12.847831716929839, 42.552803148549408 ], [ 12.892729022539914, 42.563497445659642 ], [ 12.880089884947566, 42.602361789521886 ], [ 12.896340286536367, 42.616444035750412 ], [ 12.931535760230684, 42.603591925951825 ], [ 12.953388674077495, 42.619021280586111 ], [ 13.004317781651098, 42.615237367650955 ], [ 13.015329889827614, 42.631916161535301 ], [ 13.058573752524453, 42.622842295271468 ], [ 13.097805149524875, 42.636308500135243 ], [ 13.1304959748211, 42.659301116771282 ], [ 13.14423367035819, 42.64631056821036 ], [ 13.174140797605588, 42.666105124295683 ], [ 13.17333487487914, 42.687313921861367 ], [ 13.190655787651554, 42.712751553959187 ], [ 13.189215833537546, 42.733577628927513 ], [ 13.254152834006465, 42.721450249452147 ], [ 13.264502280253325, 42.740181239807953 ], [ 13.287762036842247, 42.739220780618439 ], [ 13.318860293576895, 42.722726303502505 ], [ 13.357755645107735, 42.694098094891459 ], [ 13.349682744561218, 42.668716743016056 ], [ 13.369918601352065, 42.648968157148225 ], [ 13.408283307006782, 42.642863529562753 ], [ 13.406420484028999, 42.628797402691156 ], [ 13.38178069237987, 42.581013207403942 ], [ 13.342823763659114, 42.574902272269654 ], [ 13.327113247102783, 42.579935059903171 ], [ 13.291260373436115, 42.570537370209983 ], [ 13.261546699490447, 42.583099750497468 ], [ 13.245935333596099, 42.572705807059442 ], [ 13.226788582099001, 42.582836772562032 ], [ 13.191362658468133, 42.587517659346418 ], [ 13.174272316382705, 42.567512898475428 ], [ 13.176085156583463, 42.552646291933776 ], [ 13.157356701348391, 42.527716086144046 ], [ 13.177769627522387, 42.512636323290614 ], [ 13.171535326789312, 42.486081202394658 ], [ 13.15405333366988, 42.462332424957502 ], [ 13.116168386454083, 42.443909781783191 ], [ 13.15516715154677, 42.414216312915428 ], [ 13.189201958226942, 42.400220126524466 ], [ 13.189398306857452, 42.381111437583108 ], [ 13.153349002710204, 42.356994106668139 ], [ 13.191351061361985, 42.332334245211037 ], [ 13.226462981830029, 42.319330568331061 ], [ 13.22893262267136, 42.287175296775608 ], [ 13.238635371632126, 42.272824691956629 ], [ 13.271242878606939, 42.254163387508633 ], [ 13.28212792987294, 42.23722655316849 ], [ 13.319935807435737, 42.229637860111815 ], [ 13.33189413054904, 42.208179471632604 ], [ 13.352232570651134, 42.19127877322623 ], [ 13.353963092799255, 42.174943636363409 ], [ 13.323194376101069, 42.161412509267684 ], [ 13.305290680556327, 42.138256333433226 ], [ 13.265000251731703, 42.136789926341372 ], [ 13.237228454051005, 42.12913098733938 ], [ 13.192711209324177, 42.158257556288703 ], [ 13.158308551518324, 42.157494956084136 ], [ 13.122312478849601, 42.177119397736753 ], [ 13.087057415640288, 42.177871038920259 ], [ 13.086165958188138, 42.144334609116008 ], [ 13.059821994116945, 42.122954529094393 ], [ 13.037007376516502, 42.118997634984225 ], [ 13.018487902907868, 42.074938195218941 ], [ 13.02662171301999, 42.050027646246441 ], [ 13.058121607990385, 42.015554349080034 ], [ 13.101323964660519, 42.009748286903843 ], [ 13.107740704300078, 42.025104605550808 ], [ 13.139947933551502, 42.015346562494095 ], [ 13.199082173301921, 41.986496263187547 ], [ 13.2315416304117, 41.981688602069163 ], [ 13.286035101953608, 41.950368901050894 ], [ 13.322622080905733, 41.945157799363002 ], [ 13.337529960650786, 41.925980487880267 ], [ 13.356555612045883, 41.92573862211708 ], [ 13.383994309041661, 41.904186669042808 ], [ 13.359835255309399, 41.869376933330074 ], [ 13.366833915817226, 41.833068138188764 ], [ 13.391512384066456, 41.819786708627994 ], [ 13.407463067282647, 41.83746446307255 ], [ 13.451554363454068, 41.822817937681997 ], [ 13.463751577454873, 41.809450717205642 ], [ 13.50440742760016, 41.801543496052787 ], [ 13.520432946280071, 41.772965539585904 ], [ 13.576229509611961, 41.755018809205026 ], [ 13.586099572066995, 41.76643483256229 ], [ 13.63127241458872, 41.782645519324547 ], [ 13.63845929409505, 41.804317946667346 ], [ 13.662891496340114, 41.811268090273479 ], [ 13.692708067659144, 41.791522967374952 ], [ 13.716492042916633, 41.797397523762093 ], [ 13.748649336676205, 41.773587431717665 ], [ 13.765912204726451, 41.748702417466134 ], [ 13.790142019301378, 41.742969511743183 ], [ 13.810136331327767, 41.753868855786827 ], [ 13.823480811890143, 41.740884308191021 ], [ 13.880585016448974, 41.72829710444789 ], [ 13.89763893693722, 41.732134254419954 ], [ 13.919701411270122, 41.71724358135657 ], [ 13.941015156699477, 41.687972757233084 ], [ 13.96736001429295, 41.674030248299324 ], [ 13.988294022558046, 41.653832035951005 ], [ 13.996666499222393, 41.624139801618973 ], [ 14.010990423866678, 41.607538602272108 ], [ 13.997814151055278, 41.579429587065952 ], [ 14.023659888804259, 41.56103265831527 ], [ 14.022159092117356, 41.527012522732193 ], [ 13.972906893010684, 41.494036417114664 ], [ 13.992776635760507, 41.482081471864106 ], [ 13.977906078513243, 41.462487472719815 ], [ 13.96078305537627, 41.463598228750378 ], [ 13.910858089491217, 41.428684734875262 ], [ 13.875139873699007, 41.426416378851599 ], [ 13.861798821502379, 41.418086883241308 ], [ 13.886318363847954, 41.384444270562106 ], [ 13.87361822819487, 41.374715852777321 ], [ 13.873679899232473, 41.335624633308768 ], [ 13.894737593899951, 41.310536935531758 ], [ 13.882337481196213, 41.290942098019215 ], [ 13.85105968643807, 41.289571048510211 ], [ 13.827571151221267, 41.27745612015719 ], [ 13.839808293780914, 41.263381760699367 ], [ 13.816849546994408, 41.243674625778475 ], [ 13.773747395312757, 41.242659244952463 ], [ 13.762112597963092, 41.222596729924064 ], [ 13.70604450899979, 41.25406299445018 ], [ 13.680471034918009, 41.244354828059244 ], [ 13.665111338708915, 41.253395862247707 ], [ 13.621035889635651, 41.260720933157266 ], [ 13.582661217608983, 41.246227680134368 ], [ 13.568366938308595, 41.23091568535888 ], [ 13.575590529786815, 41.203920497693929 ], [ 13.547626223995934, 41.207493140737213 ], [ 13.519197590960211, 41.224828907399115 ], [ 13.470157603358928, 41.237452863282094 ], [ 13.408487669288096, 41.269154497361022 ], [ 13.35596163068562, 41.286647777229383 ], [ 13.291613725200516, 41.297520192109076 ], [ 13.266395305621572, 41.294887165983866 ], [ 13.251298475787786, 41.283246797915304 ], [ 13.205787158560835, 41.283044614002137 ], [ 13.143000785840909, 41.263281928488524 ], [ 13.10539478545415, 41.241218611715226 ], [ 13.094520924672103, 41.224432960841646 ], [ 13.045546957771077, 41.226785711189045 ], [ 13.017523069669894, 41.285752805594328 ], [ 12.980249882362532, 41.335714658861335 ], [ 12.920076602746525, 41.381583560048405 ], [ 12.854489252539297, 41.411507599035218 ], [ 12.789126696841363, 41.41792269586535 ], [ 12.765493527125701, 41.410134495338852 ], [ 12.695024784253908, 41.449694262705769 ], [ 12.669143689860418, 41.456495508401247 ], [ 12.62235298403411, 41.444698910602284 ], [ 12.575329053610455, 41.508153767730811 ], [ 12.533546176042105, 41.553399658709239 ], [ 12.437108471491987, 41.640773949659469 ], [ 12.352154355397891, 41.696842184143328 ], [ 12.307121283239484, 41.717328153939548 ], [ 12.251858905229881, 41.736896543113481 ], [ 12.249030304315591, 41.737460603537251 ], [ 12.243624215182994, 41.737867752004576 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Campania", "ISO": "IT-72" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.159209066658033, 40.808043221787997 ], [ 14.156050422033594, 40.818097532129826 ], [ 14.120786624483953, 40.820572632156797 ], [ 14.107691054054898, 40.831580419992939 ], [ 14.077525100805707, 40.825469836316174 ], [ 14.084763956023316, 40.79340204503562 ], [ 14.041708252606711, 40.791138894051699 ], [ 14.048001810932179, 40.835638021273418 ], [ 14.044821927182637, 40.864839335001378 ], [ 14.032569577693506, 40.898985283284119 ], [ 13.996745257067078, 40.956267765594689 ], [ 13.922475322999604, 41.026536040397588 ], [ 13.890605758450894, 41.096115342334834 ], [ 13.835732197841459, 41.162798878577057 ], [ 13.813881613968306, 41.184494623503326 ], [ 13.762112597963092, 41.222596729924064 ], [ 13.773747395312757, 41.242659244952463 ], [ 13.816849546994408, 41.243674625778475 ], [ 13.839808293780914, 41.263381760699367 ], [ 13.827571151221267, 41.27745612015719 ], [ 13.85105968643807, 41.289571048510211 ], [ 13.882337481196213, 41.290942098019215 ], [ 13.894737593899951, 41.310536935531758 ], [ 13.873679899232473, 41.335624633308768 ], [ 13.87361822819487, 41.374715852777321 ], [ 13.886318363847954, 41.384444270562106 ], [ 13.861798821502379, 41.418086883241308 ], [ 13.875139873699007, 41.426416378851599 ], [ 13.910858089491217, 41.428684734875262 ], [ 13.96078305537627, 41.463598228750378 ], [ 13.977906078513243, 41.462487472719815 ], [ 14.005781248381961, 41.452833570330199 ], [ 14.005020681923792, 41.42500310896304 ], [ 14.017694511788269, 41.423418784127833 ], [ 14.042388571469933, 41.39278043584752 ], [ 14.084769192623909, 41.400034099677676 ], [ 14.107489615994126, 41.416432516304923 ], [ 14.078369433168255, 41.447083963600356 ], [ 14.125270002804655, 41.507369669026666 ], [ 14.15164277331812, 41.482656041498579 ], [ 14.167302350595877, 41.494416225636385 ], [ 14.204853211254242, 41.499934198876645 ], [ 14.241625288222719, 41.496661590456945 ], [ 14.249421810605362, 41.484551902892456 ], [ 14.277555162757212, 41.485849135713487 ], [ 14.327161984410347, 41.453437422302535 ], [ 14.342178761593951, 41.454080402706865 ], [ 14.427611314256213, 41.429106270905756 ], [ 14.453967497959626, 41.427913314418106 ], [ 14.477989489025873, 41.410171904803192 ], [ 14.488605940440827, 41.390708420083016 ], [ 14.551523203529202, 41.379385180268038 ], [ 14.56632577764718, 41.392130642127142 ], [ 14.60303922297425, 41.363962337538197 ], [ 14.633779448306827, 41.387432981213287 ], [ 14.671443331166333, 41.40664145578166 ], [ 14.699623329791864, 41.410843581190385 ], [ 14.717278583928451, 41.400827771466147 ], [ 14.764700386857301, 41.417368064904643 ], [ 14.773960106309859, 41.445526426643241 ], [ 14.790181661567996, 41.452551867281493 ], [ 14.843115392073251, 41.426607271996453 ], [ 14.867695147263719, 41.427822853780604 ], [ 14.884420400615085, 41.444779771122839 ], [ 14.946414272248898, 41.455974077131096 ], [ 14.9822669632229, 41.469066131494557 ], [ 15.007617821316355, 41.486388790667682 ], [ 15.023892892177068, 41.476947367867346 ], [ 15.032443012371683, 41.452684907432086 ], [ 15.076251397415279, 41.432778119149155 ], [ 15.098780028445717, 41.433768457841687 ], [ 15.081552475879354, 41.387731211509674 ], [ 15.058467630508098, 41.37213470669095 ], [ 15.072190201309729, 41.332460329543984 ], [ 15.130560172252572, 41.317185586189773 ], [ 15.126770590082126, 41.302951905626742 ], [ 15.150198891415716, 41.282737062280482 ], [ 15.201002932669999, 41.286271979523725 ], [ 15.216282568267189, 41.275235909018967 ], [ 15.24704587477339, 41.271362534970514 ], [ 15.27984391576175, 41.240794970102989 ], [ 15.246175057200286, 41.23611113175145 ], [ 15.257382332625827, 41.197397522955399 ], [ 15.227501700965593, 41.184928377191191 ], [ 15.209345463529804, 41.167686590369684 ], [ 15.210788474066577, 41.148670655533842 ], [ 15.235663186761132, 41.13988247747259 ], [ 15.267187977130732, 41.106639611262736 ], [ 15.291726587294121, 41.093543911413299 ], [ 15.314357197196216, 41.103885682062035 ], [ 15.367453556121735, 41.084879005874846 ], [ 15.396375502806071, 41.106816248061449 ], [ 15.446099979446805, 41.078014443546188 ], [ 15.478347259454361, 41.078662320097102 ], [ 15.48948875144854, 41.070031694646033 ], [ 15.54287667544658, 41.055854618942718 ], [ 15.572035681793091, 40.99887659506971 ], [ 15.566617504226254, 40.968780341068111 ], [ 15.54228574107659, 40.946396218045543 ], [ 15.526732364992951, 40.907587699022557 ], [ 15.467632576334575, 40.889603444774494 ], [ 15.473142246509635, 40.874939310811293 ], [ 15.402734376663188, 40.881610859059357 ], [ 15.37835716702776, 40.867667766642327 ], [ 15.378332833760068, 40.840749921909861 ], [ 15.334971175904856, 40.834880040351152 ], [ 15.385559164864789, 40.791530003125288 ], [ 15.389024140768031, 40.76762606317358 ], [ 15.379057675155597, 40.750930543730014 ], [ 15.381476215488266, 40.724150828828016 ], [ 15.402582214087802, 40.716334660450386 ], [ 15.430167131655969, 40.692082931156556 ], [ 15.470001738950776, 40.673170766867571 ], [ 15.503590705950067, 40.662938679799268 ], [ 15.492094742728577, 40.647492898499202 ], [ 15.467774888541504, 40.639236398026043 ], [ 15.449472593367625, 40.60910203831952 ], [ 15.475362514829769, 40.59244978120423 ], [ 15.510128227559274, 40.585747461625907 ], [ 15.544736059892832, 40.530036937936458 ], [ 15.550469378933272, 40.509247823616299 ], [ 15.5388564308718, 40.488050024089354 ], [ 15.577925741121616, 40.469475550230811 ], [ 15.59476542266378, 40.440842336696321 ], [ 15.650445185436945, 40.408250544209864 ], [ 15.710122280505271, 40.37729949168444 ], [ 15.704519019563069, 40.344018205961149 ], [ 15.726879580673128, 40.31544638889784 ], [ 15.749161607890032, 40.298736065507562 ], [ 15.792286333182377, 40.289779700255096 ], [ 15.805766226581706, 40.274527041916187 ], [ 15.805372404582542, 40.251409616845777 ], [ 15.774084861097998, 40.217343503654782 ], [ 15.712527211915466, 40.178444954093003 ], [ 15.70173806747766, 40.161469081808079 ], [ 15.70582992362662, 40.117732324916886 ], [ 15.668591111143968, 40.073250811342533 ], [ 15.676164249131885, 40.054899075570482 ], [ 15.64533920803013, 40.042961242453416 ], [ 15.63251054681157, 40.067402921335173 ], [ 15.571766129067834, 40.078331757611998 ], [ 15.53067204379305, 40.073834366725464 ], [ 15.503294967009449, 40.064051463757558 ], [ 15.484407549577814, 40.038364849881198 ], [ 15.460097014765381, 40.033698392382448 ], [ 15.418571522521907, 39.990599986484021 ], [ 15.380500205656862, 40.000825191786461 ], [ 15.342096189919776, 40.005213640657161 ], [ 15.314859884676819, 40.031881755795204 ], [ 15.291689306566715, 40.023533919464903 ], [ 15.276172533428127, 40.066770519214202 ], [ 15.262854193009373, 40.082704877823375 ], [ 15.239350820460725, 40.093316296176965 ], [ 15.209135978730576, 40.121169528234049 ], [ 15.178842007846182, 40.127282103810039 ], [ 15.146325297602194, 40.160010493079596 ], [ 15.11789165849347, 40.17725479171407 ], [ 15.08537688741764, 40.173662592039072 ], [ 15.065846061628028, 40.164396020593109 ], [ 15.036263242963697, 40.172461282917183 ], [ 14.990894450510559, 40.218945952107866 ], [ 14.958666498564012, 40.230368988773442 ], [ 14.935258184357147, 40.228593293626886 ], [ 14.906478820971062, 40.253954954017651 ], [ 14.942882561528334, 40.274851826763147 ], [ 14.946990661390139, 40.295253976355085 ], [ 14.939311616290231, 40.319325320968581 ], [ 14.945638960255515, 40.336883776092321 ], [ 14.993556123209913, 40.353606438103 ], [ 15.001336489934884, 40.377622011709377 ], [ 14.98019525844879, 40.429273063028404 ], [ 14.939261173487409, 40.486387626805644 ], [ 14.906753652188737, 40.546896627801914 ], [ 14.858465868084236, 40.607771951800153 ], [ 14.821681169725144, 40.641641425879619 ], [ 14.788948223221798, 40.665296903922851 ], [ 14.747374506336627, 40.677728383742732 ], [ 14.713837841116039, 40.662551193579219 ], [ 14.691665564759738, 40.634302743546833 ], [ 14.642104667148208, 40.64726735686564 ], [ 14.619894591450288, 40.646065995241834 ], [ 14.576913837512469, 40.618265711700097 ], [ 14.529589777231259, 40.607217944938554 ], [ 14.495423644486671, 40.627039601746262 ], [ 14.418907643931304, 40.610291529598719 ], [ 14.408032845645661, 40.599576492295611 ], [ 14.352310017857361, 40.582081073137338 ], [ 14.324520440734144, 40.569041073039486 ], [ 14.320442579758389, 40.58780684798743 ], [ 14.35179175371322, 40.634501239235988 ], [ 14.364544382895277, 40.627740932594406 ], [ 14.399704165158296, 40.637978946631051 ], [ 14.429619800269547, 40.665652097080098 ], [ 14.439007792298625, 40.681837648761125 ], [ 14.481795739180809, 40.700538322586489 ], [ 14.466243489580712, 40.73600731831673 ], [ 14.447137076968358, 40.754675334823787 ], [ 14.413484599785507, 40.752314855690507 ], [ 14.360077828829402, 40.785683917006182 ], [ 14.36011535444138, 40.785410472773641 ], [ 14.360251918458266, 40.784890477301573 ], [ 14.3163968080659, 40.825106612243601 ], [ 14.273932841198341, 40.844693329860718 ], [ 14.220621072827205, 40.826391363433046 ], [ 14.221487776010152, 40.825456969695949 ], [ 14.187286159428215, 40.792255829443562 ], [ 14.159209066658033, 40.808043221787997 ] ] ], [ [ [ 13.871807657324034, 40.761130609271376 ], [ 13.907808805295879, 40.748877131290257 ], [ 13.955072179858057, 40.740445579747934 ], [ 13.965289409472268, 40.712697068319706 ], [ 13.923472304759613, 40.69739743504266 ], [ 13.873661896267247, 40.696909581039868 ], [ 13.858568386254772, 40.73806069329229 ], [ 13.871807657324034, 40.761130609271376 ] ] ], [ [ [ 14.260009037053527, 40.561385987160975 ], [ 14.252459739562132, 40.5417539852007 ], [ 14.197944362970134, 40.536806430830957 ], [ 14.19817176339502, 40.559366982568442 ], [ 14.240478243810877, 40.55574525751296 ], [ 14.260009037053527, 40.561385987160975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Basilicata", "ISO": "IT-77" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.866520499668283, 40.398077514192892 ], [ 16.8498850700311, 40.37355040588789 ], [ 16.786363791856015, 40.302738117795847 ], [ 16.74948118698984, 40.245793860475189 ], [ 16.7312739437983, 40.202710863304247 ], [ 16.684080799705409, 40.144215968694446 ], [ 16.643872047782747, 40.119038643631164 ], [ 16.627769254874952, 40.129728068067337 ], [ 16.587215663522358, 40.1331186274315 ], [ 16.530009955226454, 40.118094100957798 ], [ 16.517974206452287, 40.128776870450274 ], [ 16.494670011903974, 40.125077536577813 ], [ 16.451984489238399, 40.134802367154315 ], [ 16.408948710657526, 40.120957650210997 ], [ 16.414240147970194, 40.080684623345668 ], [ 16.394386831405217, 40.049941451965552 ], [ 16.398430607556122, 40.018966697011926 ], [ 16.360272110891486, 39.968040498832323 ], [ 16.358086774676181, 39.954099882644357 ], [ 16.337802482389325, 39.936175228628265 ], [ 16.359662865299139, 39.919604145320484 ], [ 16.343227915437797, 39.902433354171329 ], [ 16.313933699193221, 39.931042918212661 ], [ 16.268430068459704, 39.935962388514334 ], [ 16.237998581816154, 39.925469211575844 ], [ 16.216533235044402, 39.927826545789564 ], [ 16.214690825793138, 39.89597885241043 ], [ 16.158954956614938, 39.919403153889732 ], [ 16.13797202683994, 39.901412696220945 ], [ 16.10331854227962, 39.906921230830648 ], [ 16.083045642336341, 39.896614558034841 ], [ 16.053497689349385, 39.898141290113777 ], [ 16.016656539924252, 39.927102606370006 ], [ 16.006877336575705, 39.956936136947832 ], [ 16.03051323634573, 39.993442454178826 ], [ 15.979203220547033, 39.982400536126505 ], [ 15.968515587435704, 39.991734725493401 ], [ 15.928019428714327, 40.001071708350104 ], [ 15.898015860583042, 39.981682994323926 ], [ 15.867660744101688, 39.990126364509422 ], [ 15.85023312397009, 40.006032852939647 ], [ 15.820049773546554, 40.001869081591508 ], [ 15.7951173134072, 39.971655732450522 ], [ 15.771190926378711, 39.955600227110843 ], [ 15.755915690898368, 39.923556830088529 ], [ 15.74259964087619, 39.934377272986289 ], [ 15.731927700557574, 39.964080374662238 ], [ 15.681132539114742, 40.006164212514875 ], [ 15.664461279404959, 40.039578465560027 ], [ 15.64533920803013, 40.042961242453416 ], [ 15.676164249131885, 40.054899075570482 ], [ 15.668591111143968, 40.073250811342533 ], [ 15.70582992362662, 40.117732324916886 ], [ 15.70173806747766, 40.161469081808079 ], [ 15.712527211915466, 40.178444954093003 ], [ 15.774084861097998, 40.217343503654782 ], [ 15.805372404582542, 40.251409616845777 ], [ 15.805766226581706, 40.274527041916187 ], [ 15.792286333182377, 40.289779700255096 ], [ 15.749161607890032, 40.298736065507562 ], [ 15.726879580673128, 40.31544638889784 ], [ 15.704519019563069, 40.344018205961149 ], [ 15.710122280505271, 40.37729949168444 ], [ 15.650445185436945, 40.408250544209864 ], [ 15.59476542266378, 40.440842336696321 ], [ 15.577925741121616, 40.469475550230811 ], [ 15.5388564308718, 40.488050024089354 ], [ 15.550469378933272, 40.509247823616299 ], [ 15.544736059892832, 40.530036937936458 ], [ 15.510128227559274, 40.585747461625907 ], [ 15.475362514829769, 40.59244978120423 ], [ 15.449472593367625, 40.60910203831952 ], [ 15.467774888541504, 40.639236398026043 ], [ 15.492094742728577, 40.647492898499202 ], [ 15.503590705950067, 40.662938679799268 ], [ 15.470001738950776, 40.673170766867571 ], [ 15.430167131655969, 40.692082931156556 ], [ 15.402582214087802, 40.716334660450386 ], [ 15.381476215488266, 40.724150828828016 ], [ 15.379057675155597, 40.750930543730014 ], [ 15.389024140768031, 40.76762606317358 ], [ 15.385559164864789, 40.791530003125288 ], [ 15.334971175904856, 40.834880040351152 ], [ 15.378332833760068, 40.840749921909861 ], [ 15.37835716702776, 40.867667766642327 ], [ 15.402734376663188, 40.881610859059357 ], [ 15.473142246509635, 40.874939310811293 ], [ 15.467632576334575, 40.889603444774494 ], [ 15.526732364992951, 40.907587699022557 ], [ 15.54228574107659, 40.946396218045543 ], [ 15.566617504226254, 40.968780341068111 ], [ 15.572035681793091, 40.99887659506971 ], [ 15.54287667544658, 41.055854618942718 ], [ 15.558910089025613, 41.087386312554408 ], [ 15.587553655190982, 41.098375363016565 ], [ 15.617416838117101, 41.099257909521661 ], [ 15.646555063996876, 41.089622589240051 ], [ 15.67941423190765, 41.086802050723875 ], [ 15.752597503895766, 41.09733718603276 ], [ 15.768400657013768, 41.083189768068827 ], [ 15.798734074792447, 41.091983429516766 ], [ 15.805370198876005, 41.110887159429119 ], [ 15.880662209653886, 41.1368357790315 ], [ 15.920968885486133, 41.11115106815091 ], [ 15.953384641931338, 41.11080943690488 ], [ 15.976253883848804, 41.094166700937087 ], [ 16.007250296230751, 41.059106301231871 ], [ 16.040539275046878, 41.036365263709271 ], [ 16.027934449533653, 41.024081169241654 ], [ 16.03198448642927, 40.998384237598842 ], [ 16.002854462927345, 40.970209302067275 ], [ 15.976628515816243, 40.958452914034915 ], [ 16.093637771020642, 40.920267862131311 ], [ 16.121297926185125, 40.899238930570981 ], [ 16.138067180941668, 40.918353365652834 ], [ 16.162970589440999, 40.928579973098536 ], [ 16.202464180777746, 40.91753154312751 ], [ 16.223804873424637, 40.886585430749491 ], [ 16.231198953989836, 40.85488696286604 ], [ 16.278230362717853, 40.801605356805801 ], [ 16.316226019289413, 40.783105613747253 ], [ 16.35007526007734, 40.748897269547726 ], [ 16.380389453514745, 40.7363977872037 ], [ 16.400152104123748, 40.7074054089844 ], [ 16.430509334698211, 40.704754582332427 ], [ 16.479679068453933, 40.736799074442722 ], [ 16.496076968684548, 40.7582853502864 ], [ 16.522550517293254, 40.746448958777911 ], [ 16.566965861175103, 40.754460021791346 ], [ 16.574607359572742, 40.763047340935309 ], [ 16.607937887857332, 40.751831472202689 ], [ 16.632819727970865, 40.753570629433973 ], [ 16.724908461460032, 40.713832764509149 ], [ 16.696624245409158, 40.702082812769056 ], [ 16.725656280417642, 40.677600802934442 ], [ 16.70975934091565, 40.632833730154339 ], [ 16.723972665131939, 40.602445657517798 ], [ 16.705688619711175, 40.550190491091698 ], [ 16.724378920090814, 40.535291821890254 ], [ 16.715820357193785, 40.52424837120406 ], [ 16.737072231631775, 40.503827497731272 ], [ 16.719589356455479, 40.481411054233689 ], [ 16.735593149660005, 40.467924173455962 ], [ 16.792606590898046, 40.461952229969413 ], [ 16.809382462945358, 40.433073958449789 ], [ 16.85067693823083, 40.401239151529715 ], [ 16.866520499668283, 40.398077514192892 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Sicilia", "ISO": "IT-82" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.620346148337672, 38.272714104126621 ], [ 15.610822331229892, 38.256581694015296 ], [ 15.583623902963463, 38.246702842682197 ], [ 15.567533711822881, 38.224454616505163 ], [ 15.549741174324984, 38.168067280667636 ], [ 15.521791866461216, 38.128259743595223 ], [ 15.493774293659541, 38.074860017890565 ], [ 15.477210919609986, 38.054592593751927 ], [ 15.441742519189123, 38.024604187967036 ], [ 15.349353098000632, 37.923404907232836 ], [ 15.345718178210866, 37.9144927954327 ], [ 15.30629059519949, 37.878225246572789 ], [ 15.297746285458794, 37.850730946200144 ], [ 15.269144061246548, 37.830683456223944 ], [ 15.211785312401613, 37.753541768111042 ], [ 15.204813508149298, 37.739300180566566 ], [ 15.218347297125332, 37.708373057921762 ], [ 15.199178717709675, 37.67667901868262 ], [ 15.19321911343402, 37.646669211679672 ], [ 15.174308796230401, 37.63210669649586 ], [ 15.177234100407068, 37.576567966811339 ], [ 15.14299444951518, 37.5435608249106 ], [ 15.116154249704165, 37.531572209463292 ], [ 15.085542600179418, 37.480461488320159 ], [ 15.09154768367479, 37.405900289095463 ], [ 15.090968265288339, 37.358650926211638 ], [ 15.097889932403097, 37.321145577794191 ], [ 15.139282760849454, 37.306814124738516 ], [ 15.161635813947148, 37.289290236834553 ], [ 15.194784465448047, 37.28254611184871 ], [ 15.209130536696255, 37.291123512392723 ], [ 15.241039816942077, 37.260561029189255 ], [ 15.234662095483818, 37.241550803471533 ], [ 15.206511116736072, 37.245176596207273 ], [ 15.182838493801263, 37.209213512975701 ], [ 15.201318615616682, 37.178237561004813 ], [ 15.200700761669111, 37.161449201380591 ], [ 15.220482550760822, 37.144501028835123 ], [ 15.220736036016792, 37.129403432424915 ], [ 15.263153374943595, 37.106058131641909 ], [ 15.295748411366302, 37.106744907290114 ], [ 15.301400920036075, 37.08020049475374 ], [ 15.278044183212145, 37.065250398156479 ], [ 15.279388562828645, 37.034850861471547 ], [ 15.314950168079672, 37.037095817154253 ], [ 15.336742362349964, 37.007567970656837 ], [ 15.314988829869794, 37.00370965552252 ], [ 15.303953473491593, 37.014665559898368 ], [ 15.267779666870748, 37.002517777553841 ], [ 15.259127268464418, 36.973273559254586 ], [ 15.229798520306765, 36.970281072716055 ], [ 15.18641516201054, 36.945700404976066 ], [ 15.153430417592096, 36.914459319499173 ], [ 15.137111408095411, 36.880138603412895 ], [ 15.11078498882015, 36.848318775071277 ], [ 15.109847716561257, 36.816926326629073 ], [ 15.094173499881173, 36.799330357903621 ], [ 15.094945940962395, 36.776550293603798 ], [ 15.121503299190675, 36.731482372995544 ], [ 15.125864332692412, 36.698470991391439 ], [ 15.140249269461791, 36.685038500739481 ], [ 15.132740582699743, 36.667592486816893 ], [ 15.112394694570201, 36.673149468092717 ], [ 15.081668848619422, 36.649052301474853 ], [ 15.056603708589332, 36.661816465334432 ], [ 15.042291549504059, 36.688924516345992 ], [ 15.020715977043594, 36.701244491452449 ], [ 14.996140793884068, 36.702071567881788 ], [ 14.956615361967101, 36.694085566259744 ], [ 14.91855048954346, 36.719820994147426 ], [ 14.894564320685843, 36.729440587698413 ], [ 14.862180240842454, 36.73021760375272 ], [ 14.783088724724452, 36.703605217418627 ], [ 14.743315756836376, 36.720590189596955 ], [ 14.689837002580591, 36.7212365037255 ], [ 14.67072175954698, 36.742523768759078 ], [ 14.639124466767374, 36.761057892611468 ], [ 14.587519593396761, 36.777131810168314 ], [ 14.531337102895543, 36.780480063582146 ], [ 14.493513126068704, 36.786545921839348 ], [ 14.459481165274696, 36.827247954080939 ], [ 14.435869011618289, 36.884901560926018 ], [ 14.383042073374371, 36.956142167235207 ], [ 14.36289007894703, 36.978355998564581 ], [ 14.296132340025203, 37.037071746796379 ], [ 14.244244817826129, 37.065120465875985 ], [ 14.15680902618227, 37.095083857845097 ], [ 14.069107004980502, 37.110497263397022 ], [ 14.036310030220911, 37.106088285965349 ], [ 13.975326408047987, 37.108624514768039 ], [ 13.935463170504883, 37.096364223606194 ], [ 13.906933918649367, 37.095926574714717 ], [ 13.859261931864877, 37.112215501260259 ], [ 13.838819277271757, 37.137327802705705 ], [ 13.824081645659465, 37.144489121312546 ], [ 13.751391912614627, 37.149257767322553 ], [ 13.726155043732094, 37.170251545214654 ], [ 13.663438752935146, 37.193382305381569 ], [ 13.639134952704138, 37.229457601446668 ], [ 13.614128532699459, 37.241932177741525 ], [ 13.551278279891916, 37.286971199276358 ], [ 13.537610373162121, 37.282245671910623 ], [ 13.511819912453293, 37.291507754170325 ], [ 13.482362951073918, 37.288187436426021 ], [ 13.453078033881855, 37.29450961305195 ], [ 13.426511341545266, 37.309741739705181 ], [ 13.401853386645735, 37.333047555577629 ], [ 13.352930129528831, 37.358192061514536 ], [ 13.323054156962977, 37.363270959407515 ], [ 13.297808335665282, 37.387163042195141 ], [ 13.271616526832393, 37.391692034578092 ], [ 13.25385005118752, 37.424547833012078 ], [ 13.217219576235795, 37.459232232505613 ], [ 13.195921280236707, 37.465288149281101 ], [ 13.16891096280863, 37.491989931013187 ], [ 13.130621329067825, 37.492482604364653 ], [ 13.078217280048774, 37.505723056988131 ], [ 13.038555597310442, 37.495739874676126 ], [ 13.013365563228772, 37.499193676591638 ], [ 13.012000991138658, 37.512672981640542 ], [ 12.988764487439948, 37.540942978403329 ], [ 12.955871540383399, 37.567142939554117 ], [ 12.917718699294339, 37.577103227087463 ], [ 12.905249982259935, 37.573800182533603 ], [ 12.858243340718824, 37.582635089836103 ], [ 12.764810897098247, 37.578846409472916 ], [ 12.672842309630546, 37.559953263156949 ], [ 12.629979952345151, 37.601544115807648 ], [ 12.614031921626323, 37.634690805929743 ], [ 12.586256380844615, 37.654347622300364 ], [ 12.554141780596723, 37.663354572722476 ], [ 12.533603303577465, 37.658694208050775 ], [ 12.50129305265591, 37.674639266724455 ], [ 12.47175409740324, 37.703354833104719 ], [ 12.470065952570831, 37.747043140962468 ], [ 12.455000730382348, 37.773443643193616 ], [ 12.425464527236738, 37.803122659647322 ], [ 12.457424788581399, 37.813685648897255 ], [ 12.485775971237057, 37.873528073999957 ], [ 12.459171178329752, 37.908365833656589 ], [ 12.491641076230104, 37.951078812231117 ], [ 12.495428489195056, 37.984971491592916 ], [ 12.519225915880426, 38.009096223747534 ], [ 12.518667856535634, 38.021388038795841 ], [ 12.577507287130301, 38.07065871551017 ], [ 12.61057580357679, 38.065747732816071 ], [ 12.660530628411481, 38.091470859764335 ], [ 12.656923266113562, 38.107293760770858 ], [ 12.709737940506489, 38.108936563477471 ], [ 12.73764972739586, 38.141047953650926 ], [ 12.718952480918313, 38.166954947697718 ], [ 12.766006543026739, 38.180244564664854 ], [ 12.790927354295686, 38.135140441038509 ], [ 12.790191436891874, 38.112036453041135 ], [ 12.82656661145619, 38.06673508644198 ], [ 12.868640630809621, 38.051287382758147 ], [ 12.871379850279526, 38.036609368024408 ], [ 12.892975024030848, 38.024275740104422 ], [ 12.937580730273634, 38.029298024178189 ], [ 12.997146701865564, 38.04778112925424 ], [ 13.078238476304161, 38.088303327759441 ], [ 13.068259710642668, 38.12055865287541 ], [ 13.052968353344415, 38.139267590294345 ], [ 13.083371836469881, 38.157693260105198 ], [ 13.080727172015258, 38.173919184802344 ], [ 13.105628439528767, 38.190942281564723 ], [ 13.161806512960485, 38.172703524215912 ], [ 13.194510753113198, 38.169957161718251 ], [ 13.237527038289175, 38.186328881334624 ], [ 13.247960595659801, 38.198952135268883 ], [ 13.276695105647374, 38.202259106370228 ], [ 13.31821465852568, 38.224074273199484 ], [ 13.326026646479612, 38.203696289341316 ], [ 13.365571504869258, 38.182525028767209 ], [ 13.374944607487661, 38.153950608181773 ], [ 13.364965270166127, 38.125591874425972 ], [ 13.403803091182441, 38.100380078492023 ], [ 13.44271945325602, 38.094806804480605 ], [ 13.50508007056388, 38.108328113446923 ], [ 13.535635135696607, 38.107174969239551 ], [ 13.540588952429593, 38.058288112237527 ], [ 13.567778919500867, 38.037914699626064 ], [ 13.619184489761485, 38.011855262558669 ], [ 13.66415232415042, 37.99431583406993 ], [ 13.703790144608996, 37.990767155067623 ], [ 13.710673077713961, 37.977514424836329 ], [ 13.744956937265288, 37.97014325242624 ], [ 13.797415950181863, 37.975084841551947 ], [ 13.834113613616919, 37.982616006690868 ], [ 13.895970434304703, 38.004134547354695 ], [ 13.945821457910004, 38.028198099630664 ], [ 13.980413876941281, 38.029019819609275 ], [ 14.032677766470748, 38.036432375490676 ], [ 14.062435322027428, 38.019057750261794 ], [ 14.106424714319855, 38.014616767315658 ], [ 14.145953048068606, 38.025990590915953 ], [ 14.228191040775826, 38.010200925672628 ], [ 14.308972501072578, 38.007868353473775 ], [ 14.338524312734634, 38.018662616617846 ], [ 14.372828424405931, 38.015843392664799 ], [ 14.424108959872589, 38.040073877874129 ], [ 14.476222101704741, 38.033362786138241 ], [ 14.533180644535403, 38.044978403256884 ], [ 14.556420981769362, 38.060117806075667 ], [ 14.581193212099963, 38.05857964150028 ], [ 14.62988633241703, 38.070261620905981 ], [ 14.671147377794176, 38.094001340831859 ], [ 14.746639696568018, 38.164848730671984 ], [ 14.784392976637561, 38.151634650788154 ], [ 14.890712874027479, 38.172431117955398 ], [ 14.91627087696688, 38.192276200396932 ], [ 14.939763021150959, 38.179317469540251 ], [ 14.967379619499484, 38.15343996682352 ], [ 15.01192894377415, 38.149051695634732 ], [ 15.04327751296869, 38.151931730489643 ], [ 15.0561691250259, 38.131508400634345 ], [ 15.088840548986392, 38.119976879661145 ], [ 15.170632877840696, 38.151704105989324 ], [ 15.212148356620004, 38.186423627245169 ], [ 15.2409004971045, 38.218307872702177 ], [ 15.267902756504466, 38.206673805215374 ], [ 15.292829295879352, 38.206377865122825 ], [ 15.35356481124162, 38.217766678300251 ], [ 15.400331434277167, 38.231733432940892 ], [ 15.449662701381305, 38.25139580276484 ], [ 15.517414710341038, 38.296111828160505 ], [ 15.540318718934579, 38.301250237974777 ], [ 15.582826481113786, 38.282692115496445 ], [ 15.620346148337672, 38.272714104126621 ] ] ], [ [ [ 12.001338332686156, 36.819661948028632 ], [ 12.013349513226412, 36.825166200600933 ], [ 12.048781767346448, 36.799772657196172 ], [ 12.055815416816841, 36.775283222103887 ], [ 12.04903348586487, 36.75021904267512 ], [ 12.028354756678679, 36.735822082550655 ], [ 11.99292563857586, 36.737391427786136 ], [ 11.972575299650945, 36.762987047826947 ], [ 11.956855060005097, 36.768120697408563 ], [ 11.944124853803897, 36.790414065145143 ], [ 11.926590387126746, 36.802270851662641 ], [ 11.935080337209341, 36.831850194129586 ], [ 11.952807786261927, 36.839350636395331 ], [ 12.001338332686156, 36.819661948028632 ] ] ], [ [ [ 14.962466846470075, 38.521237776918056 ], [ 14.963601284636502, 38.489470618737272 ], [ 14.95706422452991, 38.476995665514934 ], [ 14.962545891087851, 38.451664447127463 ], [ 14.932086439620228, 38.461325275059409 ], [ 14.899469616897939, 38.479118791441941 ], [ 14.912497673128025, 38.518430888138688 ], [ 14.962466846470075, 38.521237776918056 ] ] ], [ [ [ 14.866795420976718, 38.583120946134784 ], [ 14.873648002616923, 38.56117091011874 ], [ 14.870997471899106, 38.536623862952403 ], [ 14.856459138235246, 38.534191707896916 ], [ 14.7966416115573, 38.560805623444921 ], [ 14.806728905885013, 38.582838901367822 ], [ 14.866795420976718, 38.583120946134784 ] ] ], [ [ [ 14.963728919324604, 38.412110374782472 ], [ 14.997138555980982, 38.396245433898173 ], [ 15.006074871643767, 38.375670345058722 ], [ 14.976419829806018, 38.369017087033043 ], [ 14.94904639545881, 38.385117802190109 ], [ 14.938909911151866, 38.409450486955564 ], [ 14.963728919324604, 38.412110374782472 ] ] ], [ [ [ 12.531392236044239, 35.529131400569234 ], [ 12.594007254966566, 35.520752474917714 ], [ 12.625312895781605, 35.510249851149297 ], [ 12.632694802799049, 35.493691935511407 ], [ 12.599256775872124, 35.495536848104997 ], [ 12.531392236044239, 35.529131400569234 ] ] ], [ [ [ 12.308425094827154, 37.952359904880211 ], [ 12.316978777572901, 37.936746035538015 ], [ 12.338813453951579, 37.936551144141951 ], [ 12.370581120035887, 37.918471422626801 ], [ 12.350710882988219, 37.907625567544613 ], [ 12.337267540460264, 37.919798492909585 ], [ 12.281612867696966, 37.919082001926391 ], [ 12.27445482905493, 37.936098475611416 ], [ 12.308425094827154, 37.952359904880211 ] ] ], [ [ [ 15.215086812903774, 38.771489616362679 ], [ 15.188535505846845, 38.787810483247718 ], [ 15.212847905420386, 38.810230132318225 ], [ 15.242266312200414, 38.804968646886941 ], [ 15.22687539317695, 38.777225761841812 ], [ 15.215086812903774, 38.771489616362679 ] ] ], [ [ [ 12.063892447961523, 37.990046615286985 ], [ 12.080731245706808, 37.957935452237372 ], [ 12.056291167683506, 37.952010025932594 ], [ 12.033644505265652, 37.98868327847859 ], [ 12.063892447961523, 37.990046615286985 ] ] ], [ [ [ 14.587088181331261, 38.5586363913323 ], [ 14.555769030268445, 38.557764730911217 ], [ 14.545412704530776, 38.585251813565982 ], [ 14.575692923211708, 38.58127409985574 ], [ 14.587088181331261, 38.5586363913323 ] ] ], [ [ [ 12.333515460236345, 38.020659775189543 ], [ 12.351242153395424, 37.988604967889486 ], [ 12.329806226444436, 37.987056677802215 ], [ 12.319885054289854, 38.00103131392008 ], [ 12.333515460236345, 38.020659775189543 ] ] ], [ [ [ 12.877266946555523, 35.874824549181604 ], [ 12.880737764934763, 35.854604159086144 ], [ 12.859511330851046, 35.855029995323733 ], [ 12.848486472578902, 35.868318017906375 ], [ 12.877266946555523, 35.874824549181604 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Sardegna", "ISO": "IT-88" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.364308832460738, 39.032933946514468 ], [ 8.350785837539155, 39.096924173142888 ], [ 8.373142350406905, 39.112218809100682 ], [ 8.386417613773503, 39.099234735012615 ], [ 8.425741780700889, 39.108923674287148 ], [ 8.431567328398716, 39.095885102180084 ], [ 8.456489585553841, 39.083743272264719 ], [ 8.464582369894186, 39.0579977288143 ], [ 8.488416179711441, 39.084560172988489 ], [ 8.461029983735315, 39.121211987456157 ], [ 8.433533070217505, 39.129849308880949 ], [ 8.437124246531861, 39.155962482607947 ], [ 8.396331226875333, 39.19929901470762 ], [ 8.372247536805327, 39.209547735719369 ], [ 8.366645119503179, 39.228174340294416 ], [ 8.425311418251237, 39.269513775614762 ], [ 8.436990414785157, 39.291998612469733 ], [ 8.41588984390394, 39.336128208273976 ], [ 8.396694754088372, 39.337680373369246 ], [ 8.385543291124392, 39.365553881732971 ], [ 8.386019975066564, 39.393630027265758 ], [ 8.410738738936939, 39.418027793941931 ], [ 8.410899534931186, 39.441184528717301 ], [ 8.38326218944901, 39.457359252472209 ], [ 8.38740063715168, 39.475861580196877 ], [ 8.404096841789039, 39.486697799204187 ], [ 8.451117346122821, 39.545646694754524 ], [ 8.470855057563892, 39.601623618324453 ], [ 8.449561440308321, 39.63422287616973 ], [ 8.458990581462954, 39.667441600105136 ], [ 8.444373762196008, 39.678341333175084 ], [ 8.45534374119338, 39.711115842900064 ], [ 8.447251322683552, 39.715033032204666 ], [ 8.444058297845011, 39.758157965732998 ], [ 8.458445621029414, 39.769425448474628 ], [ 8.498394142309047, 39.718337702601289 ], [ 8.521088237656851, 39.74616095934234 ], [ 8.545365739603943, 39.795188710564695 ], [ 8.554758738366502, 39.838761289256702 ], [ 8.544541527879254, 39.884645062858795 ], [ 8.506808506879135, 39.908042445657884 ], [ 8.468109445449912, 39.904172871228113 ], [ 8.438569196132065, 39.875296777385024 ], [ 8.39890874130953, 39.917957649591912 ], [ 8.402006993684447, 39.944804707591686 ], [ 8.392714051677073, 39.979239905544617 ], [ 8.409098322830157, 39.996225597491645 ], [ 8.4138705096822, 40.018134239692401 ], [ 8.38575660643578, 40.043874315467441 ], [ 8.421542834102294, 40.042593322545649 ], [ 8.453700210526991, 40.050806230485506 ], [ 8.489199609775245, 40.07962761262359 ], [ 8.484900801585249, 40.117781892357876 ], [ 8.460057734769462, 40.150382063093716 ], [ 8.455762002122277, 40.176678430601207 ], [ 8.46765782640399, 40.199491416913773 ], [ 8.462102927605008, 40.214042854112058 ], [ 8.482967782171983, 40.285356300427331 ], [ 8.419873225487256, 40.337211236832353 ], [ 8.390284132282178, 40.337590586494848 ], [ 8.389169066465326, 40.365927330550704 ], [ 8.399777553015525, 40.403487557467166 ], [ 8.398198071573514, 40.429983830210432 ], [ 8.373937160324529, 40.490827416349369 ], [ 8.33921463033789, 40.509170949178078 ], [ 8.312841063468092, 40.55988268021823 ], [ 8.306795060562616, 40.585579247957213 ], [ 8.28678379380248, 40.595181189689399 ], [ 8.24564856424964, 40.580918096795841 ], [ 8.243817490863893, 40.569869324548399 ], [ 8.198149257364024, 40.571194178843776 ], [ 8.216851907866941, 40.594132495222553 ], [ 8.209754541321063, 40.614763524246015 ], [ 8.189122536802381, 40.6157769879133 ], [ 8.181488846274094, 40.597838730144424 ], [ 8.150882657744898, 40.579431542643761 ], [ 8.146459843808985, 40.626076070106642 ], [ 8.186731290417402, 40.639192703485037 ], [ 8.203143333402743, 40.688458968235118 ], [ 8.174851803197214, 40.694655135651367 ], [ 8.169001039571148, 40.709139363304146 ], [ 8.135188808462805, 40.737672985811948 ], [ 8.165903082190416, 40.765735048371553 ], [ 8.160165676456456, 40.790894359566913 ], [ 8.175763767930116, 40.800965571898871 ], [ 8.218263609634201, 40.868499345105498 ], [ 8.219316444888596, 40.900089331640871 ], [ 8.19233299449715, 40.912844894288988 ], [ 8.177303684930747, 40.93899178225476 ], [ 8.19829877692168, 40.96918174634515 ], [ 8.226477351168164, 40.953137137252014 ], [ 8.248761464577843, 40.891528911294721 ], [ 8.290013728468832, 40.858063304887317 ], [ 8.315553315662108, 40.844305472179521 ], [ 8.368602505520867, 40.837958753673959 ], [ 8.413655491836273, 40.839001665253754 ], [ 8.449312361570623, 40.821259733125956 ], [ 8.48634542458125, 40.819753867903209 ], [ 8.539795709463183, 40.826345017949592 ], [ 8.607670219591617, 40.851243888495198 ], [ 8.632368541967613, 40.881332066067465 ], [ 8.703342433347586, 40.915834472887354 ], [ 8.768447972037942, 40.915885612971159 ], [ 8.789901408657371, 40.922169439093082 ], [ 8.836548400955509, 40.957215054082361 ], [ 8.873002218222721, 40.9954647664253 ], [ 8.879882421892361, 41.02866153879679 ], [ 8.929013859305602, 41.043657988400334 ], [ 8.976072821173165, 41.083942314639366 ], [ 9.013252846650778, 41.125421402491042 ], [ 9.041684587909272, 41.137332160812733 ], [ 9.058023954384028, 41.128136968208274 ], [ 9.110178784484209, 41.134931434453897 ], [ 9.118813271116325, 41.151907328055593 ], [ 9.152488916787394, 41.155421297235982 ], [ 9.167743955413608, 41.168108004245418 ], [ 9.154112382116059, 41.19721124242357 ], [ 9.169604110203815, 41.241647572852358 ], [ 9.225239579965679, 41.259235558603642 ], [ 9.280526624336662, 41.227842508135119 ], [ 9.310312544569488, 41.191032182331114 ], [ 9.33820333563237, 41.204690611265889 ], [ 9.363314231806568, 41.207577702953735 ], [ 9.37055948983476, 41.183107341675964 ], [ 9.406335815376138, 41.176419947915058 ], [ 9.421973740486916, 41.166527123905794 ], [ 9.44216631386236, 41.130987270572824 ], [ 9.440575562151706, 41.103338957286375 ], [ 9.471747208867898, 41.125825493835009 ], [ 9.485682439300243, 41.14643173979308 ], [ 9.510156774876371, 41.140732043116962 ], [ 9.526151160648924, 41.156838262095143 ], [ 9.56689335800259, 41.115866201315924 ], [ 9.570631550902654, 41.10051623311648 ], [ 9.540332280828283, 41.089798707615458 ], [ 9.523532498193934, 41.053432125392234 ], [ 9.5267364921588, 41.028805273149459 ], [ 9.561215139982988, 41.037713654899051 ], [ 9.550932067285583, 41.006719185273077 ], [ 9.576839528790343, 41.002856336560122 ], [ 9.596284407683932, 41.02089065742954 ], [ 9.621460471814142, 41.006128545716066 ], [ 9.585337947086829, 40.988017670424192 ], [ 9.593879562598126, 40.968475871835764 ], [ 9.568348073152915, 40.942788258634977 ], [ 9.57483390690974, 40.927986025601307 ], [ 9.502369522571234, 40.927469844234594 ], [ 9.506574039175662, 40.911328942313915 ], [ 9.563364823637638, 40.919062553218033 ], [ 9.591853672706213, 40.900813286194747 ], [ 9.613599925013288, 40.919803849109314 ], [ 9.645201233556634, 40.91764279950317 ], [ 9.615952950632765, 40.889586661690885 ], [ 9.656629782263501, 40.875017700139054 ], [ 9.652356615523603, 40.861338084934282 ], [ 9.693524558667404, 40.846371583141384 ], [ 9.681174574187596, 40.826581798604437 ], [ 9.672488949361048, 40.782806967446739 ], [ 9.686692259918782, 40.766499141587353 ], [ 9.71496009747543, 40.753130104094559 ], [ 9.714967908049504, 40.709884824652249 ], [ 9.746015287426273, 40.687180545222141 ], [ 9.751736026225293, 40.673909873533226 ], [ 9.742215091643507, 40.645441278164505 ], [ 9.751756272777094, 40.600867865533424 ], [ 9.788361201079789, 40.572786976430166 ], [ 9.79883319278407, 40.542373647144366 ], [ 9.827156630307062, 40.527419686901681 ], [ 9.819951157667955, 40.496181845051112 ], [ 9.792594825834543, 40.443063896769374 ], [ 9.773819603303279, 40.421824189208181 ], [ 9.772903296826222, 40.406776356379275 ], [ 9.754099215526155, 40.381078511878094 ], [ 9.717499977807996, 40.366525316993133 ], [ 9.665662502951383, 40.319759403284223 ], [ 9.632007733505871, 40.276992423357974 ], [ 9.623004118509019, 40.245013418570394 ], [ 9.62570791363547, 40.20793461875833 ], [ 9.661407270578231, 40.139075809575594 ], [ 9.700634925079205, 40.102176733301313 ], [ 9.728917956483786, 40.090830464115868 ], [ 9.73561561773716, 40.078805524355438 ], [ 9.705487888679023, 40.033566904151158 ], [ 9.69998205942014, 40.000733324507458 ], [ 9.686638269734638, 39.984172365612359 ], [ 9.68684841696661, 39.948420752615696 ], [ 9.71583009891175, 39.928376775117584 ], [ 9.683180800541191, 39.905530202245558 ], [ 9.68225398589062, 39.871348011294344 ], [ 9.696731380301868, 39.853434880175683 ], [ 9.685396544704846, 39.842122967696916 ], [ 9.6684348899149, 39.776746882352953 ], [ 9.674692933634295, 39.751545785657541 ], [ 9.675953198801379, 39.71088518215663 ], [ 9.647192466538273, 39.65169940800736 ], [ 9.656693117263307, 39.605752642274972 ], [ 9.651360579107424, 39.549247675578215 ], [ 9.639066120202125, 39.539617430038852 ], [ 9.632592766546987, 39.49679386867475 ], [ 9.64595077720776, 39.461390526136867 ], [ 9.60799879466475, 39.388434176351588 ], [ 9.597419393954896, 39.345757249866509 ], [ 9.604892959986065, 39.317984932400961 ], [ 9.628449086427286, 39.306341099151489 ], [ 9.591190773436047, 39.278429536456436 ], [ 9.570181577720398, 39.239291183167552 ], [ 9.56444255480584, 39.188970940428121 ], [ 9.570014078170757, 39.170220262457079 ], [ 9.563962976617491, 39.141620783618393 ], [ 9.539145275554002, 39.133078669466251 ], [ 9.518764282875539, 39.113292857504959 ], [ 9.502533949386999, 39.131297013497189 ], [ 9.484413990133646, 39.135670852300144 ], [ 9.434020513984725, 39.125533746030051 ], [ 9.370871642481637, 39.173890848894352 ], [ 9.34583058744982, 39.181139466701055 ], [ 9.338719329974811, 39.193597734975548 ], [ 9.297485008731426, 39.213251671383446 ], [ 9.247380133799837, 39.216435942000302 ], [ 9.229861550600374, 39.228077897580974 ], [ 9.192131570153915, 39.221188681912288 ], [ 9.164784954077406, 39.204355578133921 ], [ 9.146008425984421, 39.183950015917475 ], [ 9.123443341387182, 39.206024460491676 ], [ 9.095924251467293, 39.214114972811522 ], [ 9.061233566472248, 39.193414469706624 ], [ 9.019239336988436, 39.149177594849512 ], [ 9.008920210274903, 39.121278304363656 ], [ 9.016258197917308, 39.087457646522012 ], [ 9.045790505496619, 39.05613822070525 ], [ 9.024373679681046, 39.020170731483745 ], [ 9.011828886071092, 38.987145221212117 ], [ 8.990119285746422, 38.974914798905338 ], [ 8.914648265202242, 38.919862878646725 ], [ 8.903154607915321, 38.905104474402442 ], [ 8.854598796065897, 38.87855144525998 ], [ 8.832535599298616, 38.877421364787622 ], [ 8.81974047291895, 38.894516186157468 ], [ 8.794087412683661, 38.894651739914231 ], [ 8.780468537334531, 38.913059783171882 ], [ 8.720211860799056, 38.936671400025254 ], [ 8.714643904348016, 38.925006223446353 ], [ 8.649668990313863, 38.894893488901438 ], [ 8.606658664128265, 38.892835967411209 ], [ 8.623590569093201, 38.937562276485643 ], [ 8.612564649401723, 38.957923324744662 ], [ 8.588811996133748, 38.964470988085736 ], [ 8.565008955240407, 38.999764012014488 ], [ 8.57486874418619, 39.017048953045069 ], [ 8.565025403021801, 39.045385492980159 ], [ 8.544198274458241, 39.046430102658157 ], [ 8.527168313566477, 39.059145730906813 ], [ 8.498665461338218, 39.063385811571159 ], [ 8.468459601739065, 39.049183441719165 ], [ 8.452738193894787, 39.024731093140403 ], [ 8.45141656443216, 38.989450599370748 ], [ 8.430288210811481, 38.960053845851242 ], [ 8.403208224256772, 38.962312119213593 ], [ 8.364308832460738, 39.032933946514468 ] ] ], [ [ [ 8.32540466693259, 41.105530319198159 ], [ 8.344731034005394, 41.097372580485455 ], [ 8.340597969653675, 41.071279976256733 ], [ 8.321948218229601, 41.055850289340761 ], [ 8.283372596285172, 41.064442420482948 ], [ 8.250951595761434, 41.033282540098618 ], [ 8.24900349954342, 41.017718637207011 ], [ 8.26358580188028, 41.002671325597568 ], [ 8.25583000047096, 40.984974699235401 ], [ 8.208651850218953, 40.990181300241026 ], [ 8.223692690613069, 41.043441072831854 ], [ 8.244620229246053, 41.04690859959851 ], [ 8.266655712735265, 41.073222472297957 ], [ 8.285290993053762, 41.076740070464389 ], [ 8.276168612878873, 41.105031077336641 ], [ 8.32540466693259, 41.105530319198159 ] ] ], [ [ [ 8.308209596117633, 39.180184763884121 ], [ 8.310181019225501, 39.113172088895872 ], [ 8.281287669158997, 39.096225854084921 ], [ 8.247908595801581, 39.10847634491801 ], [ 8.250320489532699, 39.13340261387075 ], [ 8.219609899605526, 39.14778967563484 ], [ 8.230517081744248, 39.164359987449373 ], [ 8.27168483339662, 39.179798860995916 ], [ 8.308209596117633, 39.180184763884121 ] ] ], [ [ [ 9.428391538901959, 41.263691963391182 ], [ 9.438362784199334, 41.235355473844592 ], [ 9.437184543043289, 41.213654572107153 ], [ 9.416590381892078, 41.216870133827136 ], [ 9.381329209071581, 41.210329897616852 ], [ 9.378054816805575, 41.234656112347984 ], [ 9.428391538901959, 41.263691963391182 ] ] ], [ [ [ 9.4711456231316, 41.245181819948058 ], [ 9.481668009796447, 41.236115893321134 ], [ 9.478828029497095, 41.199524595448054 ], [ 9.464770333003226, 41.189466398169287 ], [ 9.444808170302613, 41.202808125427147 ], [ 9.4711456231316, 41.245181819948058 ] ] ], [ [ [ 9.734127341026772, 40.922616081987996 ], [ 9.742751340952003, 40.912302777304866 ], [ 9.692782284731393, 40.887846796742934 ], [ 9.673540623711338, 40.891771265879804 ], [ 9.734127341026772, 40.922616081987996 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Calabria", "ISO": "IT-78" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.643872047782747, 40.119038643631164 ], [ 16.609069047586942, 40.084914132452681 ], [ 16.598989646350233, 40.037393556802158 ], [ 16.618466903715284, 39.976432212791444 ], [ 16.628884033675135, 39.967378595533269 ], [ 16.604540569532581, 39.931000125305125 ], [ 16.554897098172898, 39.888384470293097 ], [ 16.49674663742093, 39.817776801989737 ], [ 16.486177477469244, 39.782487962534013 ], [ 16.499737310816528, 39.741491144143289 ], [ 16.529399762719766, 39.72443546944374 ], [ 16.529229974798003, 39.66648848600007 ], [ 16.563156858736136, 39.642770479500221 ], [ 16.607169302028051, 39.624602524263217 ], [ 16.630321896727686, 39.620304879309948 ], [ 16.688554328431682, 39.621529975776603 ], [ 16.735620998625635, 39.616393318076554 ], [ 16.770404597778438, 39.620792956163193 ], [ 16.817650630522952, 39.588084686340011 ], [ 16.826685305021815, 39.5681748870322 ], [ 16.866594982064523, 39.538618585949472 ], [ 16.901813411030201, 39.524923186528554 ], [ 16.943775147773774, 39.501843123946145 ], [ 16.979915208488404, 39.49109099357846 ], [ 17.024495707648889, 39.483847542057944 ], [ 17.046792852599712, 39.443914843932127 ], [ 17.080892046733261, 39.42183980194779 ], [ 17.120848906124376, 39.405101823008913 ], [ 17.153309260640107, 39.401890756960064 ], [ 17.109202066561899, 39.30718812530678 ], [ 17.104804115050545, 39.266366272881413 ], [ 17.110721538116305, 39.245293927002464 ], [ 17.148421459653566, 39.206097992223178 ], [ 17.122933045721442, 39.157622415502942 ], [ 17.110292550964481, 39.124233408997902 ], [ 17.109797479855697, 39.098408232378816 ], [ 17.130419118800507, 39.075313719448211 ], [ 17.146749906774026, 39.04647926796914 ], [ 17.195935210873991, 39.026939444177877 ], [ 17.171135807587493, 39.00399893252969 ], [ 17.15950399942432, 38.981177160695744 ], [ 17.170130505904339, 38.956806070090266 ], [ 17.1298920940526, 38.925964105647644 ], [ 17.093435579966847, 38.905589445063676 ], [ 17.047383968971111, 38.919290226459502 ], [ 17.010146672026192, 38.911728555747509 ], [ 16.997539998438764, 38.930041383114357 ], [ 16.953722536342802, 38.938074486105606 ], [ 16.876436999686561, 38.925078723022381 ], [ 16.836431811506902, 38.91532458940641 ], [ 16.770280431961663, 38.893127263588909 ], [ 16.701330094608103, 38.860044288828249 ], [ 16.603037641323738, 38.809059256006925 ], [ 16.566705291753053, 38.76518299800312 ], [ 16.567806010410177, 38.753789098710179 ], [ 16.542562984680742, 38.726993326907781 ], [ 16.5357098509302, 38.703711961390688 ], [ 16.558631955185202, 38.679531192964347 ], [ 16.556437133760845, 38.654993611754058 ], [ 16.573113582510029, 38.563921862352302 ], [ 16.57187958784246, 38.535018215439784 ], [ 16.579321405739933, 38.502845410713846 ], [ 16.581893952075042, 38.451972337671535 ], [ 16.570778040233009, 38.426733500946781 ], [ 16.502952827657605, 38.364824886530016 ], [ 16.473316493605143, 38.344058222518804 ], [ 16.421644695567014, 38.325788737853287 ], [ 16.329623382028338, 38.297325651030633 ], [ 16.192498202275104, 38.157901184904119 ], [ 16.166327395667569, 38.137310831821324 ], [ 16.143116563742083, 38.043647693160814 ], [ 16.14419374932119, 38.031248330418542 ], [ 16.116230253487743, 37.981726729522215 ], [ 16.096945972787054, 37.956589630623682 ], [ 16.064455271369138, 37.925634592477714 ], [ 16.019065894086246, 37.92250169216458 ], [ 15.998006296389701, 37.915784380640069 ], [ 15.957393613210277, 37.919350437456984 ], [ 15.920156671742037, 37.929696550130402 ], [ 15.839800992821678, 37.919175354929692 ], [ 15.764249137788196, 37.916065938921705 ], [ 15.732663585817043, 37.925391017610629 ], [ 15.697005412326474, 37.948879179137727 ], [ 15.677694649806915, 37.954360456225714 ], [ 15.645926064961929, 37.991383504103446 ], [ 15.633557804085898, 38.018403099022407 ], [ 15.654058626846291, 38.031034800967745 ], [ 15.649400355680955, 38.06821970237224 ], [ 15.634663603195154, 38.075780946338043 ], [ 15.630615093468343, 38.101922211223467 ], [ 15.647960431789853, 38.114303259986492 ], [ 15.655062442611456, 38.152486186238569 ], [ 15.640545972429004, 38.168847763845989 ], [ 15.632699275171131, 38.193964031234877 ], [ 15.636501780513694, 38.232184016607398 ], [ 15.679056154722234, 38.247164852597805 ], [ 15.749190119664066, 38.257113009778372 ], [ 15.794217772042524, 38.280267316809464 ], [ 15.817086228532293, 38.30071921819313 ], [ 15.829623957338676, 38.32481368083296 ], [ 15.832983009472313, 38.355945081584508 ], [ 15.858128646054096, 38.380210541279901 ], [ 15.865231208102076, 38.402023740702205 ], [ 15.898369025069988, 38.451502116469229 ], [ 15.930650522959755, 38.537291721874986 ], [ 15.92827030467862, 38.550340143332093 ], [ 15.901163621716938, 38.564431597583308 ], [ 15.892751376987754, 38.577820060418659 ], [ 15.82671287053741, 38.62297066525592 ], [ 15.848160850628483, 38.659206061511739 ], [ 15.872071240154741, 38.673228745351643 ], [ 15.94757098060272, 38.690947996068736 ], [ 15.986023532349796, 38.723020127622398 ], [ 16.031585499734604, 38.727881466288274 ], [ 16.104433366109063, 38.711806199266618 ], [ 16.146869325817402, 38.724255113829344 ], [ 16.182207836747793, 38.747675617169435 ], [ 16.213656761258605, 38.811617080503289 ], [ 16.221110032930266, 38.86632307887605 ], [ 16.218328970437177, 38.92034881328064 ], [ 16.153666356842781, 38.954288819518062 ], [ 16.131583643869185, 38.99847206479788 ], [ 16.101841742581904, 39.025253609918479 ], [ 16.076314498400883, 39.112911828368667 ], [ 16.066866482872999, 39.133468836544473 ], [ 16.051120235531968, 39.297917418812148 ], [ 16.036686676257524, 39.348400705322078 ], [ 15.993540530214803, 39.445373726313086 ], [ 15.958623346522634, 39.478324028232528 ], [ 15.925195480003239, 39.526531697602081 ], [ 15.881706003935909, 39.543857583615804 ], [ 15.873953234705429, 39.553901656054336 ], [ 15.831838677023111, 39.667770528607278 ], [ 15.817375321044356, 39.677397364168058 ], [ 15.808367856977423, 39.730569938869387 ], [ 15.794836952104992, 39.773476079658792 ], [ 15.779478001156937, 39.847287453293447 ], [ 15.791068147769572, 39.864803803336798 ], [ 15.7789793960117, 39.893671789949913 ], [ 15.755915690898368, 39.923556830088529 ], [ 15.771190926378711, 39.955600227110843 ], [ 15.7951173134072, 39.971655732450522 ], [ 15.820049773546554, 40.001869081591508 ], [ 15.85023312397009, 40.006032852939647 ], [ 15.867660744101688, 39.990126364509422 ], [ 15.898015860583042, 39.981682994323926 ], [ 15.928019428714327, 40.001071708350104 ], [ 15.968515587435704, 39.991734725493401 ], [ 15.979203220547033, 39.982400536126505 ], [ 16.03051323634573, 39.993442454178826 ], [ 16.006877336575705, 39.956936136947832 ], [ 16.016656539924252, 39.927102606370006 ], [ 16.053497689349385, 39.898141290113777 ], [ 16.083045642336341, 39.896614558034841 ], [ 16.10331854227962, 39.906921230830648 ], [ 16.13797202683994, 39.901412696220945 ], [ 16.158954956614938, 39.919403153889732 ], [ 16.214690825793138, 39.89597885241043 ], [ 16.216533235044402, 39.927826545789564 ], [ 16.237998581816154, 39.925469211575844 ], [ 16.268430068459704, 39.935962388514334 ], [ 16.313933699193221, 39.931042918212661 ], [ 16.343227915437797, 39.902433354171329 ], [ 16.359662865299139, 39.919604145320484 ], [ 16.337802482389325, 39.936175228628265 ], [ 16.358086774676181, 39.954099882644357 ], [ 16.360272110891486, 39.968040498832323 ], [ 16.398430607556122, 40.018966697011926 ], [ 16.394386831405217, 40.049941451965552 ], [ 16.414240147970194, 40.080684623345668 ], [ 16.408948710657526, 40.120957650210997 ], [ 16.451984489238399, 40.134802367154315 ], [ 16.494670011903974, 40.125077536577813 ], [ 16.517974206452287, 40.128776870450274 ], [ 16.530009955226454, 40.118094100957798 ], [ 16.587215663522358, 40.1331186274315 ], [ 16.627769254874952, 40.129728068067337 ], [ 16.643872047782747, 40.119038643631164 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Piemonte", "ISO": "IT-21" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.714815174881675, 46.09804279081736 ], [ 8.705672484500239, 46.081394093847756 ], [ 8.72876349224258, 46.029232087331479 ], [ 8.719322009721374, 46.011145796848069 ], [ 8.682299171094328, 45.986887611440487 ], [ 8.587887044177481, 45.916927845249063 ], [ 8.569446777720254, 45.89412925833448 ], [ 8.59231149983346, 45.852446370533762 ], [ 8.595200847790371, 45.83361402360179 ], [ 8.581647069925868, 45.813658208247368 ], [ 8.563511048799057, 45.807244946742649 ], [ 8.555665076912646, 45.774990328805643 ], [ 8.593750066231086, 45.730411491946249 ], [ 8.645960658884343, 45.721760671151984 ], [ 8.654357860758891, 45.707882509292425 ], [ 8.640799341547064, 45.676808279132736 ], [ 8.663680494156496, 45.674546720559881 ], [ 8.688553806896952, 45.639874069408847 ], [ 8.665198890688039, 45.631545228821317 ], [ 8.703148019933277, 45.600057010319233 ], [ 8.713196449584625, 45.519932090625453 ], [ 8.727892399133076, 45.502399393701012 ], [ 8.760351535295721, 45.496846429706295 ], [ 8.790803153924333, 45.478742071744755 ], [ 8.789348168175083, 45.461981956635682 ], [ 8.810067916568718, 45.445977423625223 ], [ 8.842896248692092, 45.393838041390069 ], [ 8.793381044089305, 45.378959659211212 ], [ 8.765430269810571, 45.388937745921652 ], [ 8.748289688853285, 45.37437755550819 ], [ 8.746697388767794, 45.356290458692733 ], [ 8.726539794810881, 45.332890066588128 ], [ 8.716121244207653, 45.302881122157743 ], [ 8.666586878749541, 45.292206631564504 ], [ 8.655710324668691, 45.325680474023962 ], [ 8.611778288009791, 45.354426176833201 ], [ 8.57881241734154, 45.347234506016505 ], [ 8.550375560328902, 45.354804219183826 ], [ 8.526375783366499, 45.342199974686004 ], [ 8.538366851396061, 45.319354089703189 ], [ 8.507710448765685, 45.307751565921187 ], [ 8.498337449907515, 45.292226427781266 ], [ 8.530940559593054, 45.268162132148653 ], [ 8.548040690490801, 45.237925410148698 ], [ 8.525670255888459, 45.219291610951387 ], [ 8.556876204319108, 45.205174288687068 ], [ 8.543949901535527, 45.181289529736389 ], [ 8.552512637228491, 45.160115666304094 ], [ 8.580001304300779, 45.152699208855978 ], [ 8.588272927391358, 45.135687919716126 ], [ 8.610978613935336, 45.123630110551638 ], [ 8.608474967104097, 45.10834571605433 ], [ 8.635487215942755, 45.089036457490536 ], [ 8.646950960782187, 45.055540965692479 ], [ 8.634737779035316, 45.040962422644348 ], [ 8.671159891654959, 45.027174314391246 ], [ 8.75096015203165, 45.020384055316526 ], [ 8.802312636785397, 45.026074628628663 ], [ 8.823892219987417, 45.04658902639779 ], [ 8.881058583395392, 45.054080341583258 ], [ 8.898066853153219, 45.050658118098262 ], [ 8.901273696575366, 45.007762784387303 ], [ 8.92498293889208, 44.98339026392734 ], [ 8.948592285341832, 44.988471402903564 ], [ 8.978124116162544, 44.96720639657908 ], [ 8.969596754325078, 44.943513664948043 ], [ 8.988206286266058, 44.930852047307923 ], [ 9.008047616978732, 44.902982206252304 ], [ 9.030363538382424, 44.888499204898523 ], [ 9.055710650732996, 44.889051788594678 ], [ 9.070108666833333, 44.866025741296575 ], [ 9.051379379077911, 44.845924900329351 ], [ 9.081615817515431, 44.81446287144356 ], [ 9.108992328237115, 44.80543785312711 ], [ 9.155119546657721, 44.809408488129399 ], [ 9.173504927518719, 44.796148854153024 ], [ 9.171725568500902, 44.771683552512471 ], [ 9.213550435359078, 44.752348219624373 ], [ 9.20283026703275, 44.72205710765688 ], [ 9.20031986650889, 44.686404806099667 ], [ 9.206434823669957, 44.660204532226395 ], [ 9.198675885722679, 44.648758232729335 ], [ 9.20297322777567, 44.613494121389706 ], [ 9.183520923748612, 44.591640485662445 ], [ 9.152554983969685, 44.574221158210314 ], [ 9.112968880959361, 44.58110909700892 ], [ 9.104484677627125, 44.606612259456654 ], [ 9.075853438802275, 44.623699039315156 ], [ 9.053681216510572, 44.620884835270502 ], [ 9.013153036142141, 44.666791557548983 ], [ 8.972515235098644, 44.663349583004432 ], [ 8.959523102917657, 44.676021069774741 ], [ 8.927883877261284, 44.674268010124834 ], [ 8.908261178318767, 44.646823643954789 ], [ 8.882693538437506, 44.639020647016586 ], [ 8.904354612581981, 44.620825893271089 ], [ 8.917502849410619, 44.561055017009437 ], [ 8.89494050249658, 44.555369382571854 ], [ 8.826840445761208, 44.561799380765827 ], [ 8.824397540914365, 44.53864144851012 ], [ 8.795107398637262, 44.521856823088505 ], [ 8.796653932674031, 44.500109236340535 ], [ 8.782453626018144, 44.488361025287467 ], [ 8.767564336338809, 44.524964010557852 ], [ 8.720998035385316, 44.579865416558121 ], [ 8.681419819092236, 44.574882508739982 ], [ 8.666756586579965, 44.582456803886345 ], [ 8.620169123973987, 44.576729797825578 ], [ 8.60088684508005, 44.567823557321532 ], [ 8.613452993148364, 44.546602747701627 ], [ 8.5761615944997, 44.509226681676189 ], [ 8.560059320073831, 44.502845947712885 ], [ 8.534783194965605, 44.513350884981044 ], [ 8.453011038403229, 44.509811222680518 ], [ 8.449498672110682, 44.497388095000019 ], [ 8.403879279100115, 44.508971681395231 ], [ 8.394448314049942, 44.480229506554863 ], [ 8.358490861829067, 44.464935699382785 ], [ 8.350053090205758, 44.484810925314491 ], [ 8.320803203176194, 44.488403832203005 ], [ 8.304553658861346, 44.502647252956699 ], [ 8.271312522344425, 44.506797275016162 ], [ 8.252777445079877, 44.52874739172254 ], [ 8.22416288176799, 44.514174953545904 ], [ 8.218479553078948, 44.48182573716123 ], [ 8.196435047300378, 44.46360440003091 ], [ 8.221835830597765, 44.429556468179641 ], [ 8.203499648958614, 44.40489303591702 ], [ 8.149519219361119, 44.384792022968341 ], [ 8.14863717053858, 44.354810721924125 ], [ 8.134283905431907, 44.332099621955315 ], [ 8.106968945588099, 44.332818123315185 ], [ 8.101956775119451, 44.300931025227875 ], [ 8.076021695437712, 44.313958462045086 ], [ 8.059739808101254, 44.300703827902872 ], [ 8.088599544850677, 44.274298017757879 ], [ 8.063096634217187, 44.253074194549185 ], [ 8.080619613650059, 44.241710730597916 ], [ 8.065363260272326, 44.216936583575809 ], [ 8.087962853890144, 44.203160425578318 ], [ 8.094194318175587, 44.175407994425953 ], [ 8.067310192013958, 44.144689929309102 ], [ 8.042931067612338, 44.142826509399953 ], [ 8.009445818085219, 44.15560664325028 ], [ 7.978931542874537, 44.13354203581811 ], [ 8.006633536039438, 44.12570291859754 ], [ 8.004633814641833, 44.102326670875662 ], [ 7.971531404232715, 44.113095205126783 ], [ 7.937197952637066, 44.099747479051274 ], [ 7.925962472956769, 44.110302209860116 ], [ 7.88394395599448, 44.104658567968052 ], [ 7.866119599251603, 44.118155382027098 ], [ 7.815310656735465, 44.123244234570365 ], [ 7.775143121862861, 44.139971613343839 ], [ 7.746024607649917, 44.135356779840833 ], [ 7.723123588946839, 44.120817201411178 ], [ 7.719295838473721, 44.104480817033682 ], [ 7.740081233899363, 44.077324158211461 ], [ 7.714329727043173, 44.061558889222972 ], [ 7.713246747975248, 44.087828927448427 ], [ 7.67193328494051, 44.120451827278529 ], [ 7.684645253449835, 44.173915453436088 ], [ 7.6449891232579, 44.178124495098587 ], [ 7.617380267275574, 44.14983900718665 ], [ 7.565022895081815, 44.152344311383082 ], [ 7.521404851615582, 44.137797150862653 ], [ 7.497204270535271, 44.141856826220319 ], [ 7.45995894858939, 44.12585733021649 ], [ 7.428170599653418, 44.130412011727273 ], [ 7.425850485381555, 44.114228442800872 ], [ 7.392652171315304, 44.125560177776343 ], [ 7.355476238282638, 44.117144221073715 ], [ 7.343266903825134, 44.145291565095711 ], [ 7.286744283607515, 44.145583050298519 ], [ 7.219666455989657, 44.168352183922678 ], [ 7.188674222026387, 44.198902738535367 ], [ 7.163572576497832, 44.207851439334362 ], [ 7.141649939800888, 44.200969633209908 ], [ 7.086430047495385, 44.229308284708893 ], [ 7.068538382001325, 44.233688584329421 ], [ 7.033387517832566, 44.224355779072134 ], [ 7.005252082903752, 44.237426164163104 ], [ 6.994965093041854, 44.28071190217721 ], [ 6.969985610288285, 44.285330131749376 ], [ 6.959912607701003, 44.312114042089476 ], [ 6.926784976416632, 44.333187028198623 ], [ 6.922010698397107, 44.351726936570955 ], [ 6.888823581831114, 44.36107512060665 ], [ 6.896151344107024, 44.371950633988824 ], [ 6.893488217963649, 44.420849077251745 ], [ 6.934649601425642, 44.429937552390044 ], [ 6.906328028856554, 44.467826816403637 ], [ 6.875702205091097, 44.482250332769617 ], [ 6.853413312154607, 44.527881332474124 ], [ 6.877207046867999, 44.552867010664976 ], [ 6.91430948496239, 44.559006372172234 ], [ 6.933685093709813, 44.575013963902521 ], [ 6.933124925475237, 44.592639573400533 ], [ 6.955043672585919, 44.621805952322688 ], [ 6.947599136327262, 44.652622442124283 ], [ 6.987115517497958, 44.689524313388659 ], [ 7.030411022722888, 44.691467787795112 ], [ 7.062260253045888, 44.679859724240828 ], [ 7.076159015682995, 44.683848738132717 ], [ 7.065112671436522, 44.7137819116477 ], [ 7.041061421291772, 44.719558055038618 ], [ 7.023670715493413, 44.739702363961591 ], [ 7.019236393049165, 44.775958362683781 ], [ 7.000079320674002, 44.789046566638831 ], [ 7.023850184782191, 44.82333100658704 ], [ 7.006570471632654, 44.839508898437892 ], [ 6.969539045696018, 44.846643027398791 ], [ 6.931505434975123, 44.863438210678119 ], [ 6.912837670054149, 44.844855229009227 ], [ 6.862942563783793, 44.850719592379853 ], [ 6.808954117891057, 44.87546892284724 ], [ 6.771186321114425, 44.903049003708915 ], [ 6.74999962173807, 44.907485420266944 ], [ 6.753188583307626, 44.938433935913288 ], [ 6.765061519889106, 44.959074361133816 ], [ 6.750432417563165, 44.978150061672089 ], [ 6.743217065344981, 45.015914454272554 ], [ 6.726020616117039, 45.021676389646835 ], [ 6.675447047985418, 45.019325396043797 ], [ 6.665428237505354, 45.031615433565875 ], [ 6.661522688661323, 45.071683424102098 ], [ 6.627259868476274, 45.101771276520154 ], [ 6.633393877484786, 45.114807067236086 ], [ 6.673057730232576, 45.124534219029826 ], [ 6.680208224149355, 45.140414698384305 ], [ 6.71203493549247, 45.144765762789412 ], [ 6.740199547823683, 45.136973271724301 ], [ 6.769156841737924, 45.159839941294202 ], [ 6.813103262619924, 45.148529097652769 ], [ 6.850404181809829, 45.127453582802659 ], [ 6.897924929520398, 45.141345931590365 ], [ 6.884424581260233, 45.157569558028968 ], [ 6.893519542896275, 45.169007780328698 ], [ 6.931976099107119, 45.17109715714183 ], [ 6.967018015993172, 45.19518473211523 ], [ 6.960615668295435, 45.202982940369701 ], [ 7.006349306895656, 45.21727508655075 ], [ 7.050968530212865, 45.225705848176112 ], [ 7.066990730496424, 45.210293057545648 ], [ 7.107070681254653, 45.243608681877944 ], [ 7.136916881025262, 45.255549535102354 ], [ 7.135284431323893, 45.282437288547627 ], [ 7.109400589924697, 45.327702820335873 ], [ 7.126078542957362, 45.327329671996338 ], [ 7.138458420736455, 45.351178794989544 ], [ 7.159508110845342, 45.359459233234681 ], [ 7.163280767433855, 45.381789269864299 ], [ 7.182413156487096, 45.400962138459093 ], [ 7.152258373604588, 45.422630265275991 ], [ 7.114426605764367, 45.433461384958953 ], [ 7.104329571840415, 45.466958756615561 ], [ 7.121665161917869, 45.506238285201867 ], [ 7.141055509566042, 45.510921157630349 ], [ 7.157272270847698, 45.486601879706704 ], [ 7.230384227160346, 45.475462723419447 ], [ 7.269497278219059, 45.514677044267565 ], [ 7.322953196485625, 45.514451294711463 ], [ 7.364023612362701, 45.525053441026714 ], [ 7.375713968516539, 45.516492736602778 ], [ 7.422174649234082, 45.54600706667194 ], [ 7.447963076345624, 45.555567375822363 ], [ 7.470864867029825, 45.577686920710079 ], [ 7.499021008394017, 45.583109996106927 ], [ 7.532669279667474, 45.577171119402522 ], [ 7.565487319324157, 45.591564461445593 ], [ 7.599082245809964, 45.578445314603762 ], [ 7.609065934816604, 45.562876784140776 ], [ 7.645939996483633, 45.568991839216913 ], [ 7.676792735028634, 45.552093724962155 ], [ 7.716345015474464, 45.55895637549127 ], [ 7.732703534982383, 45.550335202936211 ], [ 7.785323506423492, 45.574788949351337 ], [ 7.795674250246953, 45.586385441018443 ], [ 7.848871322540834, 45.602262239198481 ], [ 7.896248937227446, 45.599768545372221 ], [ 7.915904355570726, 45.633087585247772 ], [ 7.939504004237182, 45.643697391533522 ], [ 7.905208199525089, 45.681961972446246 ], [ 7.936624515996284, 45.724342593321118 ], [ 7.929003239798807, 45.74244267625572 ], [ 7.900164962190673, 45.74924676293584 ], [ 7.863100279395171, 45.790989123359545 ], [ 7.868816135070534, 45.867721946645133 ], [ 7.864048284549527, 45.916439364669955 ], [ 7.876964877160916, 45.926428299417744 ], [ 7.87776449690777, 45.972265006701988 ], [ 7.908819617839213, 45.997316767982973 ], [ 7.988913566381116, 45.996487437847939 ], [ 8.012179386955596, 46.011914941820869 ], [ 8.012766652627016, 46.031968171537486 ], [ 8.034410258786403, 46.045356486285442 ], [ 8.022581113285, 46.068224516494574 ], [ 8.032772853982188, 46.098416876142281 ], [ 8.108052276867831, 46.111593369035766 ], [ 8.114971355812239, 46.13031341577549 ], [ 8.143376358336798, 46.136739899375364 ], [ 8.164551419874467, 46.183291960761146 ], [ 8.153461186860881, 46.191652394028189 ], [ 8.139002741167099, 46.226077367993526 ], [ 8.110140435464347, 46.249301215986634 ], [ 8.081325878330318, 46.258199218318538 ], [ 8.137708932817825, 46.301612827385533 ], [ 8.161355552174117, 46.2962088069064 ], [ 8.211722247776068, 46.309184947745791 ], [ 8.223702324521655, 46.333638386724083 ], [ 8.264730862841919, 46.35149514517299 ], [ 8.263397643340268, 46.363663212670879 ], [ 8.311947536384032, 46.376556280409275 ], [ 8.316902520281253, 46.39724028756909 ], [ 8.300311653964764, 46.419351150651799 ], [ 8.339405150445044, 46.432813131818392 ], [ 8.356177839724218, 46.447461162411962 ], [ 8.445494368747655, 46.463705354009129 ], [ 8.465881587319069, 46.442905352520896 ], [ 8.457665214965788, 46.422356558821242 ], [ 8.468529063232712, 46.411625993946423 ], [ 8.46096824391152, 46.38653553104055 ], [ 8.468552434210409, 46.364872745622819 ], [ 8.464441486676577, 46.332985463551019 ], [ 8.427662002847081, 46.298401028965827 ], [ 8.456246349576583, 46.263513127104964 ], [ 8.46875542432576, 46.233485266385692 ], [ 8.532580816421557, 46.218059143653662 ], [ 8.540685643270923, 46.197671082273963 ], [ 8.569425166982835, 46.177019954009261 ], [ 8.573054981382638, 46.165018534486883 ], [ 8.602911739685858, 46.154200110445913 ], [ 8.594879562429186, 46.14223785407323 ], [ 8.611712590471026, 46.121821092450801 ], [ 8.647690407030458, 46.123166167152256 ], [ 8.658286439473834, 46.112564704178837 ], [ 8.714815174881675, 46.09804279081736 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Valle d'Aosta", "ISO": "IT-23" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.864048284549527, 45.916439364669955 ], [ 7.868816135070534, 45.867721946645133 ], [ 7.863100279395171, 45.790989123359545 ], [ 7.900164962190673, 45.74924676293584 ], [ 7.929003239798807, 45.74244267625572 ], [ 7.936624515996284, 45.724342593321118 ], [ 7.905208199525089, 45.681961972446246 ], [ 7.939504004237182, 45.643697391533522 ], [ 7.915904355570726, 45.633087585247772 ], [ 7.896248937227446, 45.599768545372221 ], [ 7.848871322540834, 45.602262239198481 ], [ 7.795674250246953, 45.586385441018443 ], [ 7.785323506423492, 45.574788949351337 ], [ 7.732703534982383, 45.550335202936211 ], [ 7.716345015474464, 45.55895637549127 ], [ 7.676792735028634, 45.552093724962155 ], [ 7.645939996483633, 45.568991839216913 ], [ 7.609065934816604, 45.562876784140776 ], [ 7.599082245809964, 45.578445314603762 ], [ 7.565487319324157, 45.591564461445593 ], [ 7.532669279667474, 45.577171119402522 ], [ 7.499021008394017, 45.583109996106927 ], [ 7.470864867029825, 45.577686920710079 ], [ 7.447963076345624, 45.555567375822363 ], [ 7.422174649234082, 45.54600706667194 ], [ 7.375713968516539, 45.516492736602778 ], [ 7.364023612362701, 45.525053441026714 ], [ 7.322953196485625, 45.514451294711463 ], [ 7.269497278219059, 45.514677044267565 ], [ 7.230384227160346, 45.475462723419447 ], [ 7.157272270847698, 45.486601879706704 ], [ 7.141055509566042, 45.510921157630349 ], [ 7.121665161917869, 45.506238285201867 ], [ 7.104329571840415, 45.466958756615561 ], [ 7.07555334093479, 45.47421841727089 ], [ 7.04788903474158, 45.472479637136537 ], [ 7.055021567244497, 45.493106040478715 ], [ 6.999687712960812, 45.504571682125579 ], [ 6.989627735730454, 45.563109260953482 ], [ 6.977857290746678, 45.588941463605757 ], [ 6.98454643056606, 45.625531823311512 ], [ 6.999981518113932, 45.640600793168979 ], [ 6.960858558624606, 45.655066505025189 ], [ 6.930115767521179, 45.647132609406079 ], [ 6.893524892052889, 45.675959596648752 ], [ 6.869583793313772, 45.680555984401039 ], [ 6.827844997534027, 45.70391910255028 ], [ 6.809186914888365, 45.724759751024763 ], [ 6.801326682921887, 45.781259955436383 ], [ 6.812233694797402, 45.796752745759662 ], [ 6.809387323207018, 45.820775225806678 ], [ 6.818645090953184, 45.836208649091326 ], [ 6.84250487132072, 45.842224310902409 ], [ 6.865877271953953, 45.833842727762274 ], [ 6.895464428468137, 45.842780422328893 ], [ 6.939628645194489, 45.846834893471694 ], [ 6.950740399725474, 45.85883469126307 ], [ 6.999257723546286, 45.874158894834729 ], [ 7.004278906742844, 45.89981749610002 ], [ 7.018406761474257, 45.914698408947729 ], [ 7.045749352912737, 45.922252897743419 ], [ 7.065241203253342, 45.899849249141354 ], [ 7.118271606316963, 45.859539337671599 ], [ 7.154124355202157, 45.87932265742559 ], [ 7.19026131255262, 45.858596417707183 ], [ 7.216412732881811, 45.888754730519238 ], [ 7.259707342625866, 45.890367564487796 ], [ 7.290710292935383, 45.920456471545393 ], [ 7.329669990072669, 45.910556112143105 ], [ 7.343855238687847, 45.915253909210492 ], [ 7.381796716109362, 45.896905490963356 ], [ 7.431670538191572, 45.918419271142731 ], [ 7.444278391774223, 45.931480369395999 ], [ 7.474708055101137, 45.936120895151618 ], [ 7.478126222470627, 45.952628323414523 ], [ 7.502336178205274, 45.96066162002645 ], [ 7.538129001053798, 45.95503189218978 ], [ 7.550348973662794, 45.986203028921629 ], [ 7.578094128784747, 45.98625465792729 ], [ 7.584121495296412, 45.972162866088766 ], [ 7.639219507632195, 45.970321210054472 ], [ 7.657886502956366, 45.976626281659456 ], [ 7.680118681346386, 45.958038397887428 ], [ 7.709992825584522, 45.947489053735993 ], [ 7.707657640236871, 45.934160021054417 ], [ 7.734554907653767, 45.923651525293671 ], [ 7.747306141704758, 45.937760733892489 ], [ 7.76861851258554, 45.93711037102171 ], [ 7.801154318822281, 45.917250341890579 ], [ 7.819574998639345, 45.926685607478362 ], [ 7.864048284549527, 45.916439364669955 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Lombardia", "ISO": "IT-25" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.453137486280417, 46.530551006376491 ], [ 10.457940426074908, 46.510589612535959 ], [ 10.484530696550369, 46.493600815227822 ], [ 10.551960791889435, 46.491456659887895 ], [ 10.5770823544136, 46.473365119864184 ], [ 10.600492368602493, 46.468664278553447 ], [ 10.62183698232052, 46.447960643498341 ], [ 10.619058845987286, 46.418139569286161 ], [ 10.630461791644922, 46.402550825532771 ], [ 10.607379470468391, 46.379297361818317 ], [ 10.56669012988675, 46.377771946644636 ], [ 10.537700756973118, 46.354125478149989 ], [ 10.515934154219075, 46.346362635835334 ], [ 10.565620658695345, 46.326343362838116 ], [ 10.579572506115124, 46.298828440309336 ], [ 10.5756661740896, 46.275682356355205 ], [ 10.585730953341056, 46.245339104589632 ], [ 10.541399639511907, 46.188619472517068 ], [ 10.565243127153281, 46.167064260281073 ], [ 10.549269646520719, 46.146427420419862 ], [ 10.541578022803836, 46.103269276899439 ], [ 10.517182333882371, 46.080078850290789 ], [ 10.490919693294744, 46.066808681959714 ], [ 10.481369928636584, 46.049909693390049 ], [ 10.486224613266241, 46.029550942041716 ], [ 10.457093819272199, 46.008047883122501 ], [ 10.45340790318558, 45.976552541292826 ], [ 10.486604675164379, 45.97115833691754 ], [ 10.483026188136582, 45.951928010356426 ], [ 10.50736171353573, 45.924972901856911 ], [ 10.507690115721706, 45.905344248374675 ], [ 10.490990555237122, 45.882317512761368 ], [ 10.502311221986171, 45.871261904682299 ], [ 10.508197559112407, 45.823737571314034 ], [ 10.543266710425025, 45.818364034178273 ], [ 10.53088115094733, 45.795861647361939 ], [ 10.563473316357877, 45.784112642397865 ], [ 10.600486986389416, 45.802819453164318 ], [ 10.645327553740028, 45.804127150933425 ], [ 10.654640146273255, 45.832627615335021 ], [ 10.675723848826138, 45.8304607026962 ], [ 10.701843840259544, 45.841035047335652 ], [ 10.751296018256296, 45.836564234095796 ], [ 10.77694329212455, 45.843111729252207 ], [ 10.791684910073323, 45.833098943008885 ], [ 10.840150465662774, 45.832755997726998 ], [ 10.771985692206837, 45.750779332840239 ], [ 10.702006906309597, 45.672735282586068 ], [ 10.631043056919495, 45.609508661923044 ], [ 10.628467648905106, 45.602056603117113 ], [ 10.643011353579887, 45.457311194063664 ], [ 10.665232922753923, 45.427716386094765 ], [ 10.712515372218581, 45.41855005434428 ], [ 10.716841862234498, 45.395567861088324 ], [ 10.685544251498941, 45.353684468269194 ], [ 10.686763001537594, 45.342174748815239 ], [ 10.714970718949052, 45.334076403624806 ], [ 10.730482235632913, 45.3158576029101 ], [ 10.737415803955814, 45.287244810284214 ], [ 10.782815233962854, 45.31542152102169 ], [ 10.816490846451321, 45.294083948827875 ], [ 10.846608062258477, 45.256568806670998 ], [ 10.899661781178617, 45.246921933929329 ], [ 10.936790164805236, 45.232938371884963 ], [ 10.930730099512154, 45.21800994911392 ], [ 10.946957398972511, 45.205736791508841 ], [ 10.990386615931225, 45.196110850918217 ], [ 10.998122243048241, 45.185056797558403 ], [ 10.994517318948212, 45.150355586098982 ], [ 11.028365453922307, 45.159237928360341 ], [ 11.043847620237013, 45.134279276634871 ], [ 11.028696816153289, 45.123045378715808 ], [ 11.072942481278847, 45.098748587337752 ], [ 11.105400623323501, 45.109054134685124 ], [ 11.127404576990585, 45.103227162611951 ], [ 11.138738154354986, 45.123863309587939 ], [ 11.18922532548914, 45.109772763105561 ], [ 11.187325751331203, 45.082511461091812 ], [ 11.174294908174176, 45.061561284975092 ], [ 11.201449215265384, 45.060203664620765 ], [ 11.238533460327497, 45.043207215133144 ], [ 11.256959287226669, 45.053907575806086 ], [ 11.275497053591401, 45.01731177473939 ], [ 11.313215727492507, 45.009730221335523 ], [ 11.338246004621542, 44.9894206325339 ], [ 11.424416955925867, 44.961895424017229 ], [ 11.426742032083617, 44.950083525538552 ], [ 11.378192691041217, 44.957925883674584 ], [ 11.357155462134562, 44.950080514966444 ], [ 11.329319188598506, 44.960698110358308 ], [ 11.301583514420189, 44.962358973165543 ], [ 11.26669316699075, 44.943990176740606 ], [ 11.241432752864233, 44.945916750304725 ], [ 11.148671422513441, 44.934233644327719 ], [ 11.124333257199879, 44.95136975990409 ], [ 11.073025379974478, 44.962610660532178 ], [ 11.059570643380418, 44.949248237484305 ], [ 10.994007523592993, 44.953860149161983 ], [ 10.941373456294496, 44.921913848977091 ], [ 10.876633012271745, 44.917058763642466 ], [ 10.819754130672523, 44.936723468558121 ], [ 10.743719814603844, 44.949076854017548 ], [ 10.738673161525933, 44.985742167670317 ], [ 10.6866799950343, 44.986592637925163 ], [ 10.663882897431137, 44.968587306232052 ], [ 10.630511006619228, 44.928924081076325 ], [ 10.598825423724444, 44.91474458489116 ], [ 10.56606698410156, 44.908465116300668 ], [ 10.519853032428268, 44.912726452848148 ], [ 10.504315232298701, 44.922427602652341 ], [ 10.431837991925526, 44.9470727902523 ], [ 10.416767804868922, 44.9776500124309 ], [ 10.383365843522611, 44.979109051357895 ], [ 10.365288026395547, 44.966102859451155 ], [ 10.308900794774491, 44.987377481089773 ], [ 10.304687589325436, 44.999038101152983 ], [ 10.274466594177545, 44.997930114237128 ], [ 10.260030522103106, 45.014230632908664 ], [ 10.211067558052486, 45.034031827374484 ], [ 10.193959028655518, 45.028155279573078 ], [ 10.157721357914674, 45.044079043589697 ], [ 10.106190811475322, 45.022130358597117 ], [ 10.057349645498142, 45.041447329686036 ], [ 10.0435097235061, 45.063079876059597 ], [ 10.02131684360069, 45.077179225939766 ], [ 10.029232475063258, 45.094895560331175 ], [ 9.992727070401752, 45.129758215367517 ], [ 9.978336355512388, 45.133735119270568 ], [ 9.936468007782542, 45.104821692521114 ], [ 9.915507360803078, 45.138990963633191 ], [ 9.881033418501282, 45.127001883271589 ], [ 9.879389107296902, 45.111846736280178 ], [ 9.900628060643536, 45.095442144192369 ], [ 9.88284346447543, 45.07450797650943 ], [ 9.863435093676989, 45.092470790453007 ], [ 9.844004570527707, 45.096810852713389 ], [ 9.83550722304215, 45.071884539731592 ], [ 9.778962207252645, 45.089584063765884 ], [ 9.753101094412109, 45.086599438751541 ], [ 9.730062461424572, 45.063578562821966 ], [ 9.712537614644791, 45.0587652847017 ], [ 9.659538767806902, 45.082092135323819 ], [ 9.631419791538958, 45.087796124686491 ], [ 9.638307226000176, 45.124304710787669 ], [ 9.618412910683592, 45.133019757928849 ], [ 9.601881983534748, 45.104140694527516 ], [ 9.537442638959911, 45.114877071858814 ], [ 9.550611373015634, 45.095231153104677 ], [ 9.532026203856985, 45.078432026699588 ], [ 9.501469257408381, 45.103568055174939 ], [ 9.439006409963381, 45.093446269262977 ], [ 9.370819944710394, 45.048153672491217 ], [ 9.376196795230499, 45.041667331359051 ], [ 9.36620436884829, 45.003608589142502 ], [ 9.347463128731336, 44.997410855194246 ], [ 9.314532002976938, 44.936819921584991 ], [ 9.287612456242892, 44.934235310270182 ], [ 9.290113399812011, 44.882206412908275 ], [ 9.341675182676603, 44.869811990008031 ], [ 9.358424690507526, 44.814946812774394 ], [ 9.329870700878169, 44.799990264651051 ], [ 9.316759748943644, 44.783949464687609 ], [ 9.28697494270069, 44.772496369004877 ], [ 9.28589944581023, 44.759427838170708 ], [ 9.332580793519327, 44.735040353474609 ], [ 9.308480647426125, 44.705634462073775 ], [ 9.324637473044445, 44.690015632043192 ], [ 9.298505879631204, 44.681021554408332 ], [ 9.257588757117496, 44.681220195290933 ], [ 9.240482795971243, 44.688306337484079 ], [ 9.20031986650889, 44.686404806099667 ], [ 9.20283026703275, 44.72205710765688 ], [ 9.213550435359078, 44.752348219624373 ], [ 9.171725568500902, 44.771683552512471 ], [ 9.173504927518719, 44.796148854153024 ], [ 9.155119546657721, 44.809408488129399 ], [ 9.108992328237115, 44.80543785312711 ], [ 9.081615817515431, 44.81446287144356 ], [ 9.051379379077911, 44.845924900329351 ], [ 9.070108666833333, 44.866025741296575 ], [ 9.055710650732996, 44.889051788594678 ], [ 9.030363538382424, 44.888499204898523 ], [ 9.008047616978732, 44.902982206252304 ], [ 8.988206286266058, 44.930852047307923 ], [ 8.969596754325078, 44.943513664948043 ], [ 8.978124116162544, 44.96720639657908 ], [ 8.948592285341832, 44.988471402903564 ], [ 8.92498293889208, 44.98339026392734 ], [ 8.901273696575366, 45.007762784387303 ], [ 8.898066853153219, 45.050658118098262 ], [ 8.881058583395392, 45.054080341583258 ], [ 8.823892219987417, 45.04658902639779 ], [ 8.802312636785397, 45.026074628628663 ], [ 8.75096015203165, 45.020384055316526 ], [ 8.671159891654959, 45.027174314391246 ], [ 8.634737779035316, 45.040962422644348 ], [ 8.646950960782187, 45.055540965692479 ], [ 8.635487215942755, 45.089036457490536 ], [ 8.608474967104097, 45.10834571605433 ], [ 8.610978613935336, 45.123630110551638 ], [ 8.588272927391358, 45.135687919716126 ], [ 8.580001304300779, 45.152699208855978 ], [ 8.552512637228491, 45.160115666304094 ], [ 8.543949901535527, 45.181289529736389 ], [ 8.556876204319108, 45.205174288687068 ], [ 8.525670255888459, 45.219291610951387 ], [ 8.548040690490801, 45.237925410148698 ], [ 8.530940559593054, 45.268162132148653 ], [ 8.498337449907515, 45.292226427781266 ], [ 8.507710448765685, 45.307751565921187 ], [ 8.538366851396061, 45.319354089703189 ], [ 8.526375783366499, 45.342199974686004 ], [ 8.550375560328902, 45.354804219183826 ], [ 8.57881241734154, 45.347234506016505 ], [ 8.611778288009791, 45.354426176833201 ], [ 8.655710324668691, 45.325680474023962 ], [ 8.666586878749541, 45.292206631564504 ], [ 8.716121244207653, 45.302881122157743 ], [ 8.726539794810881, 45.332890066588128 ], [ 8.746697388767794, 45.356290458692733 ], [ 8.748289688853285, 45.37437755550819 ], [ 8.765430269810571, 45.388937745921652 ], [ 8.793381044089305, 45.378959659211212 ], [ 8.842896248692092, 45.393838041390069 ], [ 8.810067916568718, 45.445977423625223 ], [ 8.789348168175083, 45.461981956635682 ], [ 8.790803153924333, 45.478742071744755 ], [ 8.760351535295721, 45.496846429706295 ], [ 8.727892399133076, 45.502399393701012 ], [ 8.713196449584625, 45.519932090625453 ], [ 8.703148019933277, 45.600057010319233 ], [ 8.665198890688039, 45.631545228821317 ], [ 8.688553806896952, 45.639874069408847 ], [ 8.663680494156496, 45.674546720559881 ], [ 8.640799341547064, 45.676808279132736 ], [ 8.654357860758891, 45.707882509292425 ], [ 8.645960658884343, 45.721760671151984 ], [ 8.593750066231086, 45.730411491946249 ], [ 8.555665076912646, 45.774990328805643 ], [ 8.563511048799057, 45.807244946742649 ], [ 8.581647069925868, 45.813658208247368 ], [ 8.595200847790371, 45.83361402360179 ], [ 8.59231149983346, 45.852446370533762 ], [ 8.569446777720254, 45.89412925833448 ], [ 8.587887044177481, 45.916927845249063 ], [ 8.682299171094328, 45.986887611440487 ], [ 8.719322009721374, 46.011145796848069 ], [ 8.72876349224258, 46.029232087331479 ], [ 8.705672484500239, 46.081394093847756 ], [ 8.714815174881675, 46.09804279081736 ], [ 8.742687498164713, 46.122145971221016 ], [ 8.75678030339164, 46.10376260458537 ], [ 8.783424607493638, 46.09394306503885 ], [ 8.815292700283887, 46.097257056560274 ], [ 8.852050539206351, 46.075521195677062 ], [ 8.854517049155156, 46.061628082020619 ], [ 8.827975316093498, 46.033317081490409 ], [ 8.792063805963835, 46.004983092810662 ], [ 8.795635379696927, 45.99204713430963 ], [ 8.831275503648497, 45.987983170424876 ], [ 8.868233490295093, 45.960387270298384 ], [ 8.894274628167889, 45.958465751355156 ], [ 8.894005081203279, 45.929988336141385 ], [ 8.924614438967307, 45.905851032333345 ], [ 8.934301677606481, 45.862060771077012 ], [ 8.949537469933587, 45.843477958941989 ], [ 8.99328220193666, 45.822634640562974 ], [ 9.030634394731111, 45.820785628241694 ], [ 9.054006893561279, 45.872898973712473 ], [ 9.07779410719257, 45.885593936537433 ], [ 9.076324450409576, 45.911439676950948 ], [ 9.041898003210347, 45.927149686376893 ], [ 9.019395194076884, 45.928577795302388 ], [ 9.014063885666987, 45.960156367397587 ], [ 8.988409471494432, 45.972608602526073 ], [ 9.022644523876545, 45.992673128647809 ], [ 9.022462901579489, 46.016469870026071 ], [ 9.009097503113667, 46.027173018259923 ], [ 9.016289825911485, 46.048925752817162 ], [ 9.049376158490421, 46.062407523275127 ], [ 9.073369350682672, 46.06261964455139 ], [ 9.089211215121402, 46.09007235744582 ], [ 9.071634933247356, 46.11951509957693 ], [ 9.120802181968019, 46.13461184638453 ], [ 9.16037280203693, 46.170851336840322 ], [ 9.19296933801483, 46.179233972084759 ], [ 9.200326448944121, 46.207193239226697 ], [ 9.221300739791337, 46.229870404727528 ], [ 9.246130131161591, 46.23224962618098 ], [ 9.251640605921533, 46.265487721135763 ], [ 9.300050105433163, 46.326587678708435 ], [ 9.295739227451453, 46.355681588912837 ], [ 9.281473301775467, 46.358876484005684 ], [ 9.275710902626802, 46.394740794806808 ], [ 9.280637478609261, 46.412359119038804 ], [ 9.249473866110254, 46.431159545203855 ], [ 9.246549513988498, 46.446433689318091 ], [ 9.271688111592715, 46.454521355677961 ], [ 9.281928889045414, 46.496420894144819 ], [ 9.309582544936559, 46.504471439153654 ], [ 9.364683797619366, 46.507728837934899 ], [ 9.389428242546398, 46.473260116263305 ], [ 9.412823700810831, 46.466914373570276 ], [ 9.424811093596384, 46.489517814732281 ], [ 9.449387895657791, 46.499719339706488 ], [ 9.459259917791815, 46.484925421565549 ], [ 9.453925346217828, 46.418403817219314 ], [ 9.468748677636757, 46.388694646866668 ], [ 9.464232545777858, 46.374232575041141 ], [ 9.493650036179691, 46.36535264125002 ], [ 9.51390076702155, 46.333237835509557 ], [ 9.53712974927576, 46.309650641225538 ], [ 9.582895853937289, 46.294477762998177 ], [ 9.635082453781282, 46.286216945045936 ], [ 9.674341223860116, 46.302754342060652 ], [ 9.714497746252984, 46.293069616507537 ], [ 9.725924590505992, 46.313701748599506 ], [ 9.723021760371559, 46.340445028575701 ], [ 9.743631538156698, 46.351517555801763 ], [ 9.777477412757241, 46.334962345720633 ], [ 9.850439147418037, 46.364641685614842 ], [ 9.869618332319533, 46.362485984280688 ], [ 9.906360621196155, 46.380884117000875 ], [ 9.924533285337995, 46.366123039004194 ], [ 9.952661972726514, 46.37946825643656 ], [ 9.964490577620275, 46.363412529427016 ], [ 9.996352302176094, 46.350935638872308 ], [ 9.981430656140477, 46.322683801712088 ], [ 9.99468004131108, 46.314046462577622 ], [ 9.998270548618676, 46.282929615326545 ], [ 10.030107476727441, 46.277121259668817 ], [ 10.055456296912093, 46.262922161695805 ], [ 10.047772571399415, 46.232168016850707 ], [ 10.070837217564151, 46.217140300377849 ], [ 10.094518258064804, 46.228553009589291 ], [ 10.123287577428995, 46.223773924012932 ], [ 10.145676243466818, 46.230382713290446 ], [ 10.17453054294748, 46.254668831380812 ], [ 10.155928277262275, 46.290597141821074 ], [ 10.116406438072646, 46.314740603350636 ], [ 10.10431590158213, 46.33354168359989 ], [ 10.107768507935175, 46.351381923609011 ], [ 10.128639546601239, 46.360861592199136 ], [ 10.127721873646669, 46.377619224730452 ], [ 10.163941027522622, 46.390895394832576 ], [ 10.160591850595154, 46.415813697559763 ], [ 10.128943463233981, 46.431893508025908 ], [ 10.101254190875753, 46.422331348676046 ], [ 10.062013478672799, 46.427202369434845 ], [ 10.039811092559413, 46.445702727053728 ], [ 10.052817417484055, 46.46127908467983 ], [ 10.04304482462593, 46.479412857764594 ], [ 10.053098023758078, 46.53146417705166 ], [ 10.044730882822483, 46.53645913327361 ], [ 10.101094870693583, 46.582777220902472 ], [ 10.101666701756598, 46.610111986503838 ], [ 10.130171656553753, 46.605599696544608 ], [ 10.190628325313037, 46.62608553110357 ], [ 10.211533722261033, 46.617825068213747 ], [ 10.239062677816213, 46.635187015145299 ], [ 10.257877512557927, 46.610894754420372 ], [ 10.244002741757665, 46.578400947821841 ], [ 10.283535246529629, 46.571223555814406 ], [ 10.295748754446249, 46.550400448464785 ], [ 10.337062487834965, 46.543431763322381 ], [ 10.363373882134008, 46.555567513378435 ], [ 10.397555441507793, 46.543941509765332 ], [ 10.419340040355499, 46.551052878254879 ], [ 10.453137486280417, 46.530551006376491 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Trentino-Alto Adige", "ISO": "IT-32" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.477594353987696, 46.679821263820415 ], [ 12.434241768382297, 46.668280548276847 ], [ 12.40574775752375, 46.643199132043549 ], [ 12.379773560307624, 46.642907395660067 ], [ 12.385163313207311, 46.622781708630662 ], [ 12.360103329521952, 46.619484689912667 ], [ 12.339704826308852, 46.631377894466908 ], [ 12.283836514981516, 46.617926058700036 ], [ 12.261219936117886, 46.629124883929407 ], [ 12.241838869164997, 46.616319015468221 ], [ 12.194459958824906, 46.604908993707497 ], [ 12.17132832777285, 46.634101428883532 ], [ 12.14512592229409, 46.634070197920217 ], [ 12.106037543526625, 46.658925365075284 ], [ 12.06826965936267, 46.675071285755863 ], [ 12.064790096139555, 46.62320174368201 ], [ 12.045450211447861, 46.607950647789593 ], [ 12.049772255788398, 46.593759353607624 ], [ 11.998418896176526, 46.532855717993563 ], [ 11.966147470771402, 46.544677921566731 ], [ 11.93388524405429, 46.527897553245836 ], [ 11.911883948346714, 46.532960254465912 ], [ 11.851350817996213, 46.517836393747451 ], [ 11.815453512431437, 46.500317507540231 ], [ 11.81315754008342, 46.478140392353112 ], [ 11.874215856205984, 46.47287531740534 ], [ 11.888793266283193, 46.441995973635798 ], [ 11.850518726101749, 46.434309295439363 ], [ 11.832040043421976, 46.387187001015675 ], [ 11.804010741008502, 46.364979853511628 ], [ 11.774378553466406, 46.358241658147129 ], [ 11.831850611592179, 46.325146525942117 ], [ 11.836767942022291, 46.302667840555699 ], [ 11.826260827389966, 46.28497039753362 ], [ 11.83763758508778, 46.270722310987217 ], [ 11.885247948001281, 46.278808757500386 ], [ 11.886261583179003, 46.25819042121941 ], [ 11.924814917214018, 46.24295248185642 ], [ 11.919401196854444, 46.220828193682514 ], [ 11.939554654903995, 46.198773376055563 ], [ 11.962269324687739, 46.187859812157001 ], [ 11.928626243220465, 46.175801189354324 ], [ 11.921767061193089, 46.149340983052618 ], [ 11.893414937041362, 46.121146904608878 ], [ 11.819681895478151, 46.107963079255946 ], [ 11.813669793680626, 46.102265664206392 ], [ 11.716789161492585, 46.102936683256239 ], [ 11.682346410473615, 46.089987027619472 ], [ 11.686389386142302, 46.066258871879377 ], [ 11.706441012288908, 46.045993265895838 ], [ 11.666902007585069, 46.038061962892805 ], [ 11.666650287801597, 46.017098891176069 ], [ 11.690004516380618, 45.988807204602971 ], [ 11.673230085830337, 45.96435139784159 ], [ 11.587592031352596, 45.968997079148025 ], [ 11.577230068511547, 46.006520286308763 ], [ 11.538910644294184, 46.013303872095001 ], [ 11.491200756328805, 46.008549616860321 ], [ 11.446781740879834, 45.980893452051546 ], [ 11.400149737755815, 45.980101820348132 ], [ 11.372396425666413, 45.973169322543271 ], [ 11.380749169633175, 45.942673602852942 ], [ 11.358056948042769, 45.925294623631288 ], [ 11.324349210629329, 45.917415884948554 ], [ 11.261236326732414, 45.918248225665415 ], [ 11.239323863122346, 45.855981907902638 ], [ 11.218453825517342, 45.843961758490614 ], [ 11.188499049848369, 45.811862931731994 ], [ 11.19351040695461, 45.793851439526684 ], [ 11.173567324026381, 45.786520949705313 ], [ 11.18065594286405, 45.762907469824022 ], [ 11.174652158321308, 45.733106869646967 ], [ 11.138661966205575, 45.709315634596486 ], [ 11.138509794435102, 45.696848300040045 ], [ 11.092399049248421, 45.695151100203852 ], [ 11.05772665332614, 45.71759893734226 ], [ 11.04137698011948, 45.706319095878065 ], [ 11.007558013760217, 45.710422202607127 ], [ 10.968319505533913, 45.680121097270728 ], [ 10.937459644557659, 45.673415698080639 ], [ 10.91199760492265, 45.688314669818133 ], [ 10.918781936923571, 45.700553584667162 ], [ 10.889578631809837, 45.71507464915414 ], [ 10.843832376572811, 45.718592819105673 ], [ 10.865244391890631, 45.761301294964355 ], [ 10.884776880540127, 45.778237603717777 ], [ 10.872797363143709, 45.788561840771635 ], [ 10.88340432129991, 45.816971555951397 ], [ 10.840150465662774, 45.832755997726998 ], [ 10.791684910073323, 45.833098943008885 ], [ 10.77694329212455, 45.843111729252207 ], [ 10.751296018256296, 45.836564234095796 ], [ 10.701843840259544, 45.841035047335652 ], [ 10.675723848826138, 45.8304607026962 ], [ 10.654640146273255, 45.832627615335021 ], [ 10.645327553740028, 45.804127150933425 ], [ 10.600486986389416, 45.802819453164318 ], [ 10.563473316357877, 45.784112642397865 ], [ 10.53088115094733, 45.795861647361939 ], [ 10.543266710425025, 45.818364034178273 ], [ 10.508197559112407, 45.823737571314034 ], [ 10.502311221986171, 45.871261904682299 ], [ 10.490990555237122, 45.882317512761368 ], [ 10.507690115721706, 45.905344248374675 ], [ 10.50736171353573, 45.924972901856911 ], [ 10.483026188136582, 45.951928010356426 ], [ 10.486604675164379, 45.97115833691754 ], [ 10.45340790318558, 45.976552541292826 ], [ 10.457093819272199, 46.008047883122501 ], [ 10.486224613266241, 46.029550942041716 ], [ 10.481369928636584, 46.049909693390049 ], [ 10.490919693294744, 46.066808681959714 ], [ 10.517182333882371, 46.080078850290789 ], [ 10.541578022803836, 46.103269276899439 ], [ 10.549269646520719, 46.146427420419862 ], [ 10.565243127153281, 46.167064260281073 ], [ 10.541399639511907, 46.188619472517068 ], [ 10.585730953341056, 46.245339104589632 ], [ 10.5756661740896, 46.275682356355205 ], [ 10.579572506115124, 46.298828440309336 ], [ 10.565620658695345, 46.326343362838116 ], [ 10.515934154219075, 46.346362635835334 ], [ 10.537700756973118, 46.354125478149989 ], [ 10.56669012988675, 46.377771946644636 ], [ 10.607379470468391, 46.379297361818317 ], [ 10.630461791644922, 46.402550825532771 ], [ 10.619058845987286, 46.418139569286161 ], [ 10.62183698232052, 46.447960643498341 ], [ 10.600492368602493, 46.468664278553447 ], [ 10.5770823544136, 46.473365119864184 ], [ 10.551960791889435, 46.491456659887895 ], [ 10.484530696550369, 46.493600815227822 ], [ 10.457940426074908, 46.510589612535959 ], [ 10.453137486280417, 46.530551006376491 ], [ 10.47257269863271, 46.543555354691392 ], [ 10.489164242888078, 46.615017689434161 ], [ 10.445953812902333, 46.641103666412405 ], [ 10.410754576344383, 46.635140057065577 ], [ 10.394139163610172, 46.654751107944264 ], [ 10.3874179941125, 46.687280241977447 ], [ 10.418273791549, 46.717810260842214 ], [ 10.401046661138766, 46.732088496098065 ], [ 10.434777865484039, 46.752188941444032 ], [ 10.440535083613451, 46.773750917580323 ], [ 10.424673271166068, 46.788789302240758 ], [ 10.448274566047058, 46.801370954975766 ], [ 10.457628887398128, 46.828852809081788 ], [ 10.480096678376221, 46.858711710237344 ], [ 10.49894207641335, 46.847505431832872 ], [ 10.550722648396803, 46.849897724323661 ], [ 10.57050648192663, 46.842446563092508 ], [ 10.596427047940534, 46.857296569998454 ], [ 10.671446110003954, 46.870696202205927 ], [ 10.723320563737353, 46.837385538507348 ], [ 10.763203143203853, 46.823486004225018 ], [ 10.73049412975501, 46.787907096607732 ], [ 10.756022970634271, 46.785146809063477 ], [ 10.788784393840276, 46.794700579379253 ], [ 10.813742096663844, 46.775543982490305 ], [ 10.836786464101106, 46.781939377908756 ], [ 10.882208080088313, 46.763193329936129 ], [ 10.914950418229758, 46.773755244806267 ], [ 10.94397290620674, 46.775137657474076 ], [ 11.021671831787359, 46.765911960230248 ], [ 11.039798522774962, 46.805084235259287 ], [ 11.08353835027779, 46.822866323440124 ], [ 11.071439677737036, 46.851798538029662 ], [ 11.101546106138906, 46.889859710163215 ], [ 11.094982288256752, 46.907480735653152 ], [ 11.115012732548061, 46.931005378346214 ], [ 11.139551429332077, 46.927628964493096 ], [ 11.188908731929837, 46.970157508311438 ], [ 11.241393713200225, 46.969618595193012 ], [ 11.262770713265743, 46.980339022793999 ], [ 11.35828650177176, 46.990361692319375 ], [ 11.400908519190615, 46.965244764173036 ], [ 11.44209068065523, 46.976499944643862 ], [ 11.479858518248923, 47.010996642746363 ], [ 11.512598761831118, 47.004666919187805 ], [ 11.538076938508821, 46.984108086544133 ], [ 11.580790890106861, 47.001488974872238 ], [ 11.627210453739464, 47.012577350938948 ], [ 11.664104053923309, 46.992627610513104 ], [ 11.711231915465195, 46.993023559218408 ], [ 11.727242365851717, 46.972938716252997 ], [ 11.747168164872111, 46.968902722792613 ], [ 11.78178266658257, 46.992059053905692 ], [ 11.836210497951651, 46.992896204961966 ], [ 11.86055426891121, 47.008417316145412 ], [ 11.915327526073638, 47.032548487723787 ], [ 11.968401567134622, 47.040606418356745 ], [ 11.979903674415667, 47.049882954949666 ], [ 12.020061028533313, 47.046760178266005 ], [ 12.035318118731553, 47.057916397724881 ], [ 12.0700459954537, 47.059928232429037 ], [ 12.092982732979195, 47.076283716845708 ], [ 12.121547556459328, 47.07459904340007 ], [ 12.186680722821988, 47.091783746462163 ], [ 12.225591385120209, 47.082706242418112 ], [ 12.240192643587909, 47.067939196581435 ], [ 12.216738668262758, 47.058503403637125 ], [ 12.204790459886221, 47.027888815689195 ], [ 12.148150696767896, 47.024367654475085 ], [ 12.120988263371178, 47.006653577586583 ], [ 12.136698765529035, 46.983004686119941 ], [ 12.131524775170522, 46.964116548417287 ], [ 12.168205333581767, 46.937889135890799 ], [ 12.158905935417868, 46.909441538495912 ], [ 12.190163939062986, 46.906233948867204 ], [ 12.215033121002342, 46.874191038754368 ], [ 12.236201428650046, 46.888515731726763 ], [ 12.266493435174448, 46.887141483897416 ], [ 12.3061764362029, 46.833940906975641 ], [ 12.282430622956195, 46.814991651332349 ], [ 12.308663366714429, 46.784818999171137 ], [ 12.351169807524649, 46.777069359197128 ], [ 12.377918330627839, 46.721930524882104 ], [ 12.442903554077526, 46.688126391314299 ], [ 12.477594353987696, 46.679821263820415 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Veneto", "ISO": "IT-34" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.731981346929517, 46.633812917020975 ], [ 12.704720976229961, 46.618395649042476 ], [ 12.656792202741341, 46.572548390270775 ], [ 12.643940103489632, 46.576050673904099 ], [ 12.619164000901229, 46.54003574363432 ], [ 12.630021099358675, 46.500706650862952 ], [ 12.654062693711976, 46.484387004388218 ], [ 12.606068810736311, 46.46412668753316 ], [ 12.569953967915158, 46.475485617219491 ], [ 12.505862751259476, 46.440960490447459 ], [ 12.495264127430424, 46.412015894739106 ], [ 12.460518570722595, 46.380424738784768 ], [ 12.462942620928919, 46.369262691123176 ], [ 12.428666028515835, 46.351595883347713 ], [ 12.411457007551078, 46.330832012826249 ], [ 12.379068429405287, 46.331765614241071 ], [ 12.354654621268041, 46.319682129508053 ], [ 12.350831858178859, 46.293839191731635 ], [ 12.329143279762611, 46.28212268940716 ], [ 12.321218957014205, 46.264462489124661 ], [ 12.337709119674917, 46.239469040694146 ], [ 12.376419789080604, 46.222941372544227 ], [ 12.401680924864214, 46.228997067632491 ], [ 12.407258988015641, 46.20702410437184 ], [ 12.430593246531046, 46.209434984281849 ], [ 12.456918901584235, 46.170649269606074 ], [ 12.491512301471893, 46.15689665632506 ], [ 12.498785893497102, 46.137002936592083 ], [ 12.484425216221593, 46.104472459913453 ], [ 12.427844796541025, 46.076320872241908 ], [ 12.405080946521153, 46.042738797214213 ], [ 12.428183916001387, 45.995763442032363 ], [ 12.422292547674648, 45.956162876192423 ], [ 12.453498473269844, 45.947338440652871 ], [ 12.463104732122902, 45.934519941144409 ], [ 12.500833930340061, 45.92520959783154 ], [ 12.558984977651161, 45.847064698896894 ], [ 12.559299514513793, 45.825924963706363 ], [ 12.597392331352548, 45.822141613324327 ], [ 12.632159593655436, 45.829259280678841 ], [ 12.6502842175107, 45.80366692779895 ], [ 12.678930064903973, 45.794695433935537 ], [ 12.729994678142107, 45.837277947244054 ], [ 12.7428643273857, 45.826619806734584 ], [ 12.775032524710353, 45.853099181988554 ], [ 12.804297392582283, 45.84462434008941 ], [ 12.874983452853575, 45.850344635505188 ], [ 12.869670839862275, 45.833757538900443 ], [ 12.890058566370064, 45.820474414610935 ], [ 12.952065058743775, 45.822206125128666 ], [ 12.974233159067852, 45.807594093245008 ], [ 12.98467844226532, 45.781401861265294 ], [ 13.007591397652526, 45.765629920803661 ], [ 13.001293763229432, 45.750017825919919 ], [ 13.03016183824842, 45.725265881098395 ], [ 13.044369758996009, 45.684310500663592 ], [ 13.101006696653197, 45.643537301216966 ], [ 13.063390589292295, 45.63096313599889 ], [ 12.978115091194276, 45.626475782692303 ], [ 12.917840903408994, 45.612634236403345 ], [ 12.715455759289888, 45.524405861655872 ], [ 12.650171669838459, 45.505452602194808 ], [ 12.584296373343642, 45.479612415770504 ], [ 12.480266037536193, 45.449391090381987 ], [ 12.452796456189196, 45.438663469708992 ], [ 12.426900474479593, 45.417969132915744 ], [ 12.39957028868327, 45.429795526877143 ], [ 12.360135237015312, 45.396087803066187 ], [ 12.330680730020926, 45.353546431967644 ], [ 12.328953986158091, 45.337529142420451 ], [ 12.306011509909748, 45.287846353066129 ], [ 12.295898558485664, 45.244463373020679 ], [ 12.30625325909608, 45.194384794946828 ], [ 12.330904503694141, 45.163707930073755 ], [ 12.327262213667385, 45.122644958304853 ], [ 12.337233926183172, 45.089522101291998 ], [ 12.393531755506727, 45.045503079398536 ], [ 12.444145243464877, 45.013209173126583 ], [ 12.485137429725333, 44.992954419077201 ], [ 12.510904944009836, 44.991382762013103 ], [ 12.553936465624114, 44.965983569142878 ], [ 12.51560589061717, 44.934472601593868 ], [ 12.465007790125687, 44.84373283740662 ], [ 12.429039622497266, 44.830929676894186 ], [ 12.421587502422597, 44.812285399857451 ], [ 12.396763299630519, 44.790683970678295 ], [ 12.353281638907733, 44.817027717038023 ], [ 12.336318417129377, 44.852236883893454 ], [ 12.303835739267303, 44.855387754810387 ], [ 12.286650719688124, 44.870305355244575 ], [ 12.282185363293957, 44.911509869004064 ], [ 12.294747074496529, 44.925370819517163 ], [ 12.280868808441033, 44.941767201366297 ], [ 12.256183144383797, 44.942528489027481 ], [ 12.224971806218676, 44.922980719297946 ], [ 12.194173928031269, 44.92535048898683 ], [ 12.169144604547229, 44.942089931580838 ], [ 12.142424359394441, 44.927903858805074 ], [ 12.116183235544007, 44.957672768984963 ], [ 12.091563584372308, 44.970207037874687 ], [ 12.056888799992176, 44.970601221013226 ], [ 11.962678867873572, 44.986827714374193 ], [ 11.926377187102922, 44.974792814737057 ], [ 11.899559982557815, 44.977804410503595 ], [ 11.838317927322215, 44.972789300742051 ], [ 11.804719119685782, 44.976961254991707 ], [ 11.783826507166234, 44.964186070522324 ], [ 11.747036296701273, 44.958096663787153 ], [ 11.744746369310423, 44.937127796685296 ], [ 11.672844863527706, 44.915165703183959 ], [ 11.624808733599158, 44.889223040537608 ], [ 11.592083579366152, 44.892039155417017 ], [ 11.586428680547797, 44.911339161814546 ], [ 11.534130503841563, 44.936245910947797 ], [ 11.469601804442512, 44.936373070133506 ], [ 11.434076896437318, 44.929395433737284 ], [ 11.426742032083617, 44.950083525538552 ], [ 11.424416955925867, 44.961895424017229 ], [ 11.338246004621542, 44.9894206325339 ], [ 11.313215727492507, 45.009730221335523 ], [ 11.275497053591401, 45.01731177473939 ], [ 11.256959287226669, 45.053907575806086 ], [ 11.238533460327497, 45.043207215133144 ], [ 11.201449215265384, 45.060203664620765 ], [ 11.174294908174176, 45.061561284975092 ], [ 11.187325751331203, 45.082511461091812 ], [ 11.18922532548914, 45.109772763105561 ], [ 11.138738154354986, 45.123863309587939 ], [ 11.127404576990585, 45.103227162611951 ], [ 11.105400623323501, 45.109054134685124 ], [ 11.072942481278847, 45.098748587337752 ], [ 11.028696816153289, 45.123045378715808 ], [ 11.043847620237013, 45.134279276634871 ], [ 11.028365453922307, 45.159237928360341 ], [ 10.994517318948212, 45.150355586098982 ], [ 10.998122243048241, 45.185056797558403 ], [ 10.990386615931225, 45.196110850918217 ], [ 10.946957398972511, 45.205736791508841 ], [ 10.930730099512154, 45.21800994911392 ], [ 10.936790164805236, 45.232938371884963 ], [ 10.899661781178617, 45.246921933929329 ], [ 10.846608062258477, 45.256568806670998 ], [ 10.816490846451321, 45.294083948827875 ], [ 10.782815233962854, 45.31542152102169 ], [ 10.737415803955814, 45.287244810284214 ], [ 10.730482235632913, 45.3158576029101 ], [ 10.714970718949052, 45.334076403624806 ], [ 10.686763001537594, 45.342174748815239 ], [ 10.685544251498941, 45.353684468269194 ], [ 10.716841862234498, 45.395567861088324 ], [ 10.712515372218581, 45.41855005434428 ], [ 10.665232922753923, 45.427716386094765 ], [ 10.643011353579887, 45.457311194063664 ], [ 10.628467648905106, 45.602056603117113 ], [ 10.631043056919495, 45.609508661923044 ], [ 10.702006906309597, 45.672735282586068 ], [ 10.771985692206837, 45.750779332840239 ], [ 10.840150465662774, 45.832755997726998 ], [ 10.88340432129991, 45.816971555951397 ], [ 10.872797363143709, 45.788561840771635 ], [ 10.884776880540127, 45.778237603717777 ], [ 10.865244391890631, 45.761301294964355 ], [ 10.843832376572811, 45.718592819105673 ], [ 10.889578631809837, 45.71507464915414 ], [ 10.918781936923571, 45.700553584667162 ], [ 10.91199760492265, 45.688314669818133 ], [ 10.937459644557659, 45.673415698080639 ], [ 10.968319505533913, 45.680121097270728 ], [ 11.007558013760217, 45.710422202607127 ], [ 11.04137698011948, 45.706319095878065 ], [ 11.05772665332614, 45.71759893734226 ], [ 11.092399049248421, 45.695151100203852 ], [ 11.138509794435102, 45.696848300040045 ], [ 11.138661966205575, 45.709315634596486 ], [ 11.174652158321308, 45.733106869646967 ], [ 11.18065594286405, 45.762907469824022 ], [ 11.173567324026381, 45.786520949705313 ], [ 11.19351040695461, 45.793851439526684 ], [ 11.188499049848369, 45.811862931731994 ], [ 11.218453825517342, 45.843961758490614 ], [ 11.239323863122346, 45.855981907902638 ], [ 11.261236326732414, 45.918248225665415 ], [ 11.324349210629329, 45.917415884948554 ], [ 11.358056948042769, 45.925294623631288 ], [ 11.380749169633175, 45.942673602852942 ], [ 11.372396425666413, 45.973169322543271 ], [ 11.400149737755815, 45.980101820348132 ], [ 11.446781740879834, 45.980893452051546 ], [ 11.491200756328805, 46.008549616860321 ], [ 11.538910644294184, 46.013303872095001 ], [ 11.577230068511547, 46.006520286308763 ], [ 11.587592031352596, 45.968997079148025 ], [ 11.673230085830337, 45.96435139784159 ], [ 11.690004516380618, 45.988807204602971 ], [ 11.666650287801597, 46.017098891176069 ], [ 11.666902007585069, 46.038061962892805 ], [ 11.706441012288908, 46.045993265895838 ], [ 11.686389386142302, 46.066258871879377 ], [ 11.682346410473615, 46.089987027619472 ], [ 11.716789161492585, 46.102936683256239 ], [ 11.813669793680626, 46.102265664206392 ], [ 11.819681895478151, 46.107963079255946 ], [ 11.893414937041362, 46.121146904608878 ], [ 11.921767061193089, 46.149340983052618 ], [ 11.928626243220465, 46.175801189354324 ], [ 11.962269324687739, 46.187859812157001 ], [ 11.939554654903995, 46.198773376055563 ], [ 11.919401196854444, 46.220828193682514 ], [ 11.924814917214018, 46.24295248185642 ], [ 11.886261583179003, 46.25819042121941 ], [ 11.885247948001281, 46.278808757500386 ], [ 11.83763758508778, 46.270722310987217 ], [ 11.826260827389966, 46.28497039753362 ], [ 11.836767942022291, 46.302667840555699 ], [ 11.831850611592179, 46.325146525942117 ], [ 11.774378553466406, 46.358241658147129 ], [ 11.804010741008502, 46.364979853511628 ], [ 11.832040043421976, 46.387187001015675 ], [ 11.850518726101749, 46.434309295439363 ], [ 11.888793266283193, 46.441995973635798 ], [ 11.874215856205984, 46.47287531740534 ], [ 11.81315754008342, 46.478140392353112 ], [ 11.815453512431437, 46.500317507540231 ], [ 11.851350817996213, 46.517836393747451 ], [ 11.911883948346714, 46.532960254465912 ], [ 11.93388524405429, 46.527897553245836 ], [ 11.966147470771402, 46.544677921566731 ], [ 11.998418896176526, 46.532855717993563 ], [ 12.049772255788398, 46.593759353607624 ], [ 12.045450211447861, 46.607950647789593 ], [ 12.064790096139555, 46.62320174368201 ], [ 12.06826965936267, 46.675071285755863 ], [ 12.106037543526625, 46.658925365075284 ], [ 12.14512592229409, 46.634070197920217 ], [ 12.17132832777285, 46.634101428883532 ], [ 12.194459958824906, 46.604908993707497 ], [ 12.241838869164997, 46.616319015468221 ], [ 12.261219936117886, 46.629124883929407 ], [ 12.283836514981516, 46.617926058700036 ], [ 12.339704826308852, 46.631377894466908 ], [ 12.360103329521952, 46.619484689912667 ], [ 12.385163313207311, 46.622781708630662 ], [ 12.379773560307624, 46.642907395660067 ], [ 12.40574775752375, 46.643199132043549 ], [ 12.434241768382297, 46.668280548276847 ], [ 12.477594353987696, 46.679821263820415 ], [ 12.514262497490696, 46.678058181559969 ], [ 12.57040187213742, 46.650770812026813 ], [ 12.621417775327824, 46.660753212851482 ], [ 12.64245631786881, 46.651934739465794 ], [ 12.690107827955677, 46.65597243694647 ], [ 12.731981346929517, 46.633812917020975 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Liguria", "ISO": "IT-42" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.486071903347417, 44.308319786532742 ], [ 8.448126451427843, 44.285446296457877 ], [ 8.442363161115221, 44.265206589792527 ], [ 8.456329590367696, 44.258401239006382 ], [ 8.415849392833646, 44.220905155171558 ], [ 8.422249925455526, 44.192570065536138 ], [ 8.329069907015196, 44.161256552237411 ], [ 8.291604159456728, 44.152153239350199 ], [ 8.269068025901213, 44.139320153512834 ], [ 8.237492244864173, 44.102182538929142 ], [ 8.22676614559122, 44.080359675347708 ], [ 8.226053366347173, 44.044009602220683 ], [ 8.168703017889378, 44.00096449074627 ], [ 8.161385245078504, 43.970137302582025 ], [ 8.173963051770174, 43.957942580110675 ], [ 8.142052988641391, 43.94761115734552 ], [ 8.128289346297041, 43.92690697613056 ], [ 8.094201263629575, 43.916948418333703 ], [ 8.066430506584727, 43.888864550750036 ], [ 8.040574026548846, 43.887440517659336 ], [ 8.015014873324802, 43.872013762748018 ], [ 7.968739236810413, 43.859925585889748 ], [ 7.965612931311611, 43.852092327983001 ], [ 7.907827080232422, 43.837259130743007 ], [ 7.872114707167014, 43.836065873907252 ], [ 7.830362574204225, 43.816211786618524 ], [ 7.805557910977198, 43.823293167779241 ], [ 7.752866080679861, 43.806933344543374 ], [ 7.736471546282501, 43.795475033299397 ], [ 7.711864463238277, 43.801131453790568 ], [ 7.673216607070946, 43.776033831105771 ], [ 7.588339165264485, 43.792024721673727 ], [ 7.55574155999181, 43.77978205710609 ], [ 7.529601085691219, 43.784254369135482 ], [ 7.506777261012433, 43.838218616077185 ], [ 7.494791069329108, 43.855955894885604 ], [ 7.515170428409882, 43.883831854955297 ], [ 7.562643523734295, 43.9006587532255 ], [ 7.55970913829734, 43.916553440516687 ], [ 7.587796017019619, 43.955416258712027 ], [ 7.608877036502558, 43.956044042915913 ], [ 7.652096049942485, 43.973520037079112 ], [ 7.670344906809393, 43.998227560720196 ], [ 7.662305180337917, 44.027489060647746 ], [ 7.702825588682283, 44.045796398076497 ], [ 7.714329727043173, 44.061558889222972 ], [ 7.740081233899363, 44.077324158211461 ], [ 7.719295838473721, 44.104480817033682 ], [ 7.723123588946839, 44.120817201411178 ], [ 7.746024607649917, 44.135356779840833 ], [ 7.775143121862861, 44.139971613343839 ], [ 7.815310656735465, 44.123244234570365 ], [ 7.866119599251603, 44.118155382027098 ], [ 7.88394395599448, 44.104658567968052 ], [ 7.925962472956769, 44.110302209860116 ], [ 7.937197952637066, 44.099747479051274 ], [ 7.971531404232715, 44.113095205126783 ], [ 8.004633814641833, 44.102326670875662 ], [ 8.006633536039438, 44.12570291859754 ], [ 7.978931542874537, 44.13354203581811 ], [ 8.009445818085219, 44.15560664325028 ], [ 8.042931067612338, 44.142826509399953 ], [ 8.067310192013958, 44.144689929309102 ], [ 8.094194318175587, 44.175407994425953 ], [ 8.087962853890144, 44.203160425578318 ], [ 8.065363260272326, 44.216936583575809 ], [ 8.080619613650059, 44.241710730597916 ], [ 8.063096634217187, 44.253074194549185 ], [ 8.088599544850677, 44.274298017757879 ], [ 8.059739808101254, 44.300703827902872 ], [ 8.076021695437712, 44.313958462045086 ], [ 8.101956775119451, 44.300931025227875 ], [ 8.106968945588099, 44.332818123315185 ], [ 8.134283905431907, 44.332099621955315 ], [ 8.14863717053858, 44.354810721924125 ], [ 8.149519219361119, 44.384792022968341 ], [ 8.203499648958614, 44.40489303591702 ], [ 8.221835830597765, 44.429556468179641 ], [ 8.196435047300378, 44.46360440003091 ], [ 8.218479553078948, 44.48182573716123 ], [ 8.22416288176799, 44.514174953545904 ], [ 8.252777445079877, 44.52874739172254 ], [ 8.271312522344425, 44.506797275016162 ], [ 8.304553658861346, 44.502647252956699 ], [ 8.320803203176194, 44.488403832203005 ], [ 8.350053090205758, 44.484810925314491 ], [ 8.358490861829067, 44.464935699382785 ], [ 8.394448314049942, 44.480229506554863 ], [ 8.403879279100115, 44.508971681395231 ], [ 8.449498672110682, 44.497388095000019 ], [ 8.453011038403229, 44.509811222680518 ], [ 8.534783194965605, 44.513350884981044 ], [ 8.560059320073831, 44.502845947712885 ], [ 8.5761615944997, 44.509226681676189 ], [ 8.613452993148364, 44.546602747701627 ], [ 8.60088684508005, 44.567823557321532 ], [ 8.620169123973987, 44.576729797825578 ], [ 8.666756586579965, 44.582456803886345 ], [ 8.681419819092236, 44.574882508739982 ], [ 8.720998035385316, 44.579865416558121 ], [ 8.767564336338809, 44.524964010557852 ], [ 8.782453626018144, 44.488361025287467 ], [ 8.796653932674031, 44.500109236340535 ], [ 8.795107398637262, 44.521856823088505 ], [ 8.824397540914365, 44.53864144851012 ], [ 8.826840445761208, 44.561799380765827 ], [ 8.89494050249658, 44.555369382571854 ], [ 8.917502849410619, 44.561055017009437 ], [ 8.904354612581981, 44.620825893271089 ], [ 8.882693538437506, 44.639020647016586 ], [ 8.908261178318767, 44.646823643954789 ], [ 8.927883877261284, 44.674268010124834 ], [ 8.959523102917657, 44.676021069774741 ], [ 8.972515235098644, 44.663349583004432 ], [ 9.013153036142141, 44.666791557548983 ], [ 9.053681216510572, 44.620884835270502 ], [ 9.075853438802275, 44.623699039315156 ], [ 9.104484677627125, 44.606612259456654 ], [ 9.112968880959361, 44.58110909700892 ], [ 9.152554983969685, 44.574221158210314 ], [ 9.183520923748612, 44.591640485662445 ], [ 9.20297322777567, 44.613494121389706 ], [ 9.245502627472387, 44.619647816927909 ], [ 9.272230477095945, 44.595915226960678 ], [ 9.300410245095064, 44.607777379619492 ], [ 9.340150300043842, 44.578668882512012 ], [ 9.389368023284453, 44.590219462077535 ], [ 9.421306236588197, 44.592604305201768 ], [ 9.42307656270188, 44.574612236558231 ], [ 9.440701055438527, 44.566716617138447 ], [ 9.476536032684049, 44.565195097756479 ], [ 9.5046076784718, 44.529960002362955 ], [ 9.496803432387546, 44.482730402724556 ], [ 9.470235902102335, 44.473268527406979 ], [ 9.458198517902064, 44.442204087139388 ], [ 9.479034348453366, 44.409258522169431 ], [ 9.493902292042117, 44.423896725086465 ], [ 9.55122873534609, 44.428081808227709 ], [ 9.559177528006002, 44.438135252920112 ], [ 9.598170786726497, 44.436740323692085 ], [ 9.636038298729819, 44.413902798781251 ], [ 9.655289531762499, 44.411660311003473 ], [ 9.674979443495076, 44.364713021974985 ], [ 9.686700448591354, 44.365939567169846 ], [ 9.706301260291486, 44.366189155557272 ], [ 9.729455184652446, 44.328330595849053 ], [ 9.7583142978248, 44.318351982440106 ], [ 9.764178639738594, 44.305515239957543 ], [ 9.805714973677329, 44.282803445656675 ], [ 9.851527007782172, 44.270861769545263 ], [ 9.857027383161213, 44.234029824024503 ], [ 9.928121740347001, 44.195609077517979 ], [ 9.89236544733131, 44.168021474016506 ], [ 9.966465907266667, 44.169432464011592 ], [ 9.979011937466387, 44.161027578677995 ], [ 9.976347899537693, 44.139547987819341 ], [ 10.002127623361172, 44.107651484842258 ], [ 10.017885463973887, 44.1192810519726 ], [ 10.04614155604953, 44.115472329305732 ], [ 10.069262695388113, 44.097999078445014 ], [ 10.066221102968724, 44.086165737172792 ], [ 10.028686887526804, 44.059166947300525 ], [ 10.018772948617334, 44.044476889729317 ], [ 10.000637168879118, 44.051175801345188 ], [ 9.964242319642853, 44.037265778562116 ], [ 9.909188436844516, 44.070462226211454 ], [ 9.881169615620225, 44.080980403424903 ], [ 9.853838481067772, 44.106337417844216 ], [ 9.848703126824033, 44.109565080840994 ], [ 9.848529669964124, 44.109996275275719 ], [ 9.831219984638476, 44.10616210950802 ], [ 9.823889095421503, 44.082697575455818 ], [ 9.847278800551017, 44.061229085841198 ], [ 9.820888189018312, 44.058745653690259 ], [ 9.782145351534881, 44.072717117343402 ], [ 9.756079998483822, 44.091118611885157 ], [ 9.738482304883664, 44.092515560932661 ], [ 9.725644247436247, 44.112493890594571 ], [ 9.65749923725803, 44.145379884779352 ], [ 9.635464679204361, 44.133521318611351 ], [ 9.609165785063544, 44.156588962275045 ], [ 9.61009400168712, 44.166720448744776 ], [ 9.568984311460413, 44.182207569876979 ], [ 9.552850434859785, 44.202865676018362 ], [ 9.501397302686488, 44.222539652060959 ], [ 9.495532068470238, 44.234690128809717 ], [ 9.439490986634592, 44.242539442797863 ], [ 9.365019306282973, 44.296946899813058 ], [ 9.233913655402102, 44.3484790025203 ], [ 9.214167177597366, 44.334701661260539 ], [ 9.212394522684779, 44.310559119377565 ], [ 9.155528082777876, 44.315765497855679 ], [ 9.155090304038309, 44.347714060622636 ], [ 9.140098110425622, 44.361127464980349 ], [ 9.06980685874443, 44.377902473642429 ], [ 8.951967080571469, 44.391261808797971 ], [ 8.886972627521846, 44.407384353363312 ], [ 8.871372088990269, 44.405229821259965 ], [ 8.831292437921507, 44.420997169218694 ], [ 8.775610256254758, 44.420377301535183 ], [ 8.741320382934131, 44.42657809776437 ], [ 8.69292688838711, 44.408346809329231 ], [ 8.678254279795972, 44.392650545991266 ], [ 8.640202096769906, 44.386518635772283 ], [ 8.624350001145197, 44.371859373912123 ], [ 8.526265406370618, 44.331369988998162 ], [ 8.509346068312819, 44.328446892655833 ], [ 8.486071903347417, 44.308319786532742 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Friuli Venezia Giulia", "ISO": "IT-36" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.536229675353241, 45.784268587085208 ], [ 13.520736456328555, 45.757091496390395 ], [ 13.532056417292116, 45.72371042702796 ], [ 13.424270306689502, 45.677236481850343 ], [ 13.351198404682442, 45.679028609018445 ], [ 13.291559284449798, 45.704070152764409 ], [ 13.233325753637928, 45.714708273671071 ], [ 13.185788887928551, 45.711154248492527 ], [ 13.15673882577927, 45.702661197743048 ], [ 13.142977180131599, 45.685666475649178 ], [ 13.109309870208609, 45.662882743675198 ], [ 13.101006696653197, 45.643537301216966 ], [ 13.044369758996009, 45.684310500663592 ], [ 13.03016183824842, 45.725265881098395 ], [ 13.001293763229432, 45.750017825919919 ], [ 13.007591397652526, 45.765629920803661 ], [ 12.98467844226532, 45.781401861265294 ], [ 12.974233159067852, 45.807594093245008 ], [ 12.952065058743775, 45.822206125128666 ], [ 12.890058566370064, 45.820474414610935 ], [ 12.869670839862275, 45.833757538900443 ], [ 12.874983452853575, 45.850344635505188 ], [ 12.804297392582283, 45.84462434008941 ], [ 12.775032524710353, 45.853099181988554 ], [ 12.7428643273857, 45.826619806734584 ], [ 12.729994678142107, 45.837277947244054 ], [ 12.678930064903973, 45.794695433935537 ], [ 12.6502842175107, 45.80366692779895 ], [ 12.632159593655436, 45.829259280678841 ], [ 12.597392331352548, 45.822141613324327 ], [ 12.559299514513793, 45.825924963706363 ], [ 12.558984977651161, 45.847064698896894 ], [ 12.500833930340061, 45.92520959783154 ], [ 12.463104732122902, 45.934519941144409 ], [ 12.453498473269844, 45.947338440652871 ], [ 12.422292547674648, 45.956162876192423 ], [ 12.428183916001387, 45.995763442032363 ], [ 12.405080946521153, 46.042738797214213 ], [ 12.427844796541025, 46.076320872241908 ], [ 12.484425216221593, 46.104472459913453 ], [ 12.498785893497102, 46.137002936592083 ], [ 12.491512301471893, 46.15689665632506 ], [ 12.456918901584235, 46.170649269606074 ], [ 12.430593246531046, 46.209434984281849 ], [ 12.407258988015641, 46.20702410437184 ], [ 12.401680924864214, 46.228997067632491 ], [ 12.376419789080604, 46.222941372544227 ], [ 12.337709119674917, 46.239469040694146 ], [ 12.321218957014205, 46.264462489124661 ], [ 12.329143279762611, 46.28212268940716 ], [ 12.350831858178859, 46.293839191731635 ], [ 12.354654621268041, 46.319682129508053 ], [ 12.379068429405287, 46.331765614241071 ], [ 12.411457007551078, 46.330832012826249 ], [ 12.428666028515835, 46.351595883347713 ], [ 12.462942620928919, 46.369262691123176 ], [ 12.460518570722595, 46.380424738784768 ], [ 12.495264127430424, 46.412015894739106 ], [ 12.505862751259476, 46.440960490447459 ], [ 12.569953967915158, 46.475485617219491 ], [ 12.606068810736311, 46.46412668753316 ], [ 12.654062693711976, 46.484387004388218 ], [ 12.630021099358675, 46.500706650862952 ], [ 12.619164000901229, 46.54003574363432 ], [ 12.643940103489632, 46.576050673904099 ], [ 12.656792202741341, 46.572548390270775 ], [ 12.704720976229961, 46.618395649042476 ], [ 12.731981346929517, 46.633812917020975 ], [ 12.756477964839398, 46.647217508942923 ], [ 12.795023658248079, 46.642523491315686 ], [ 12.837321305106995, 46.62742547204126 ], [ 12.851989495938813, 46.605078732514912 ], [ 12.92869855636547, 46.61033647882163 ], [ 12.987686720922126, 46.599426836905494 ], [ 13.021430497344955, 46.6021319860482 ], [ 13.045923269615976, 46.595353601813798 ], [ 13.083549630705722, 46.601831527967349 ], [ 13.125139380196366, 46.591201248472771 ], [ 13.168416161239225, 46.588833265897527 ], [ 13.178796491905137, 46.578323643929274 ], [ 13.218005533374047, 46.570293579645686 ], [ 13.237377315724771, 46.553186035322334 ], [ 13.252717672378873, 46.560567869107757 ], [ 13.320184835235942, 46.552886654180014 ], [ 13.344443122316713, 46.569864274399215 ], [ 13.372750478531833, 46.579359606683191 ], [ 13.408755748412133, 46.570999321908431 ], [ 13.427267608049144, 46.557632273725801 ], [ 13.473394948903877, 46.557337282681146 ], [ 13.504100254887009, 46.56607596194813 ], [ 13.519874583101826, 46.546960098118554 ], [ 13.563496872959398, 46.551259653910272 ], [ 13.62716557244349, 46.541513674117226 ], [ 13.676779593197066, 46.523253633814178 ], [ 13.70641739192703, 46.520973174516207 ], [ 13.706335276510222, 46.483748074241156 ], [ 13.698751471499479, 46.45649472535024 ], [ 13.684235576038576, 46.437419589030554 ], [ 13.647457369744124, 46.445971198143475 ], [ 13.592201157791676, 46.436412196972206 ], [ 13.575266955923125, 46.408860596694105 ], [ 13.516261188630054, 46.376782071359166 ], [ 13.436827684357157, 46.354366620754291 ], [ 13.447371487227191, 46.336377241492315 ], [ 13.402797089155285, 46.299995428305401 ], [ 13.391872584511557, 46.279286544331796 ], [ 13.398584934087816, 46.253406559528514 ], [ 13.422483037705982, 46.234390689178284 ], [ 13.423452394793999, 46.206336667620704 ], [ 13.457028054782834, 46.226422724724614 ], [ 13.503000991942859, 46.215682159466752 ], [ 13.545723978381513, 46.212120131108982 ], [ 13.56509080896517, 46.187813252763959 ], [ 13.614534735988322, 46.184410637170551 ], [ 13.632584106641781, 46.190744995858779 ], [ 13.663203312362564, 46.180118082470358 ], [ 13.646932126682826, 46.140434117979154 ], [ 13.583510994980605, 46.100618028414274 ], [ 13.544117178358453, 46.082967654252045 ], [ 13.529945042582941, 46.067698251817824 ], [ 13.496495433167397, 46.058616406105379 ], [ 13.510016063634117, 46.046246001906653 ], [ 13.494292813494102, 46.01454772086322 ], [ 13.476190270924157, 46.006253859694752 ], [ 13.501685417747593, 45.980470653087536 ], [ 13.568246366048216, 45.968075463072736 ], [ 13.590541485162463, 45.98977343978067 ], [ 13.639496045315886, 45.980051151929992 ], [ 13.637545531807964, 45.935389351428007 ], [ 13.609231238724055, 45.899249297543392 ], [ 13.5744583412146, 45.843081422958299 ], [ 13.587794822327266, 45.834129299375718 ], [ 13.596289003274157, 45.807939687815633 ], [ 13.627271823210652, 45.797473492507173 ], [ 13.669400445009785, 45.799639951187046 ], [ 13.746151755846281, 45.755216684097029 ], [ 13.783605071991119, 45.748232184741006 ], [ 13.827080705862715, 45.714263891695815 ], [ 13.831046195593512, 45.692694727915857 ], [ 13.858129378922293, 45.665668525737438 ], [ 13.918066026827372, 45.631142812739562 ], [ 13.879144535589699, 45.611684608381786 ], [ 13.851118286816629, 45.58485458633767 ], [ 13.786989173221519, 45.582894467786424 ], [ 13.719605283111997, 45.605717636695367 ], [ 13.748407229500256, 45.608920842874298 ], [ 13.786222583873739, 45.599542286720627 ], [ 13.780444275993936, 45.612146516708918 ], [ 13.779659974804042, 45.611900376508359 ], [ 13.780262713552126, 45.612510679337753 ], [ 13.776780204854585, 45.613507700839463 ], [ 13.774047685405618, 45.612773917625347 ], [ 13.77674102650122, 45.613563202287914 ], [ 13.74868994048864, 45.644039532983967 ], [ 13.769104473509245, 45.652992296306067 ], [ 13.753336827602222, 45.680443464218939 ], [ 13.720088568803389, 45.700998257568834 ], [ 13.711255401392943, 45.710847141227418 ], [ 13.69633607332176, 45.720884991615634 ], [ 13.632010140454948, 45.768215285232934 ], [ 13.58128818065358, 45.780522065531933 ], [ 13.536229675353241, 45.784268587085208 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Puglia", "ISO": "IT-75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.967821402873685, 40.659775357583207 ], [ 17.967842054664601, 40.659637578755287 ], [ 17.982176659936592, 40.644444511556387 ], [ 17.998613846560186, 40.649032569992094 ], [ 18.018141596568501, 40.621976473143683 ], [ 18.045139096582577, 40.597176308206564 ], [ 18.03524928475559, 40.574939602605752 ], [ 18.042271955323475, 40.558564130726388 ], [ 18.07473422911994, 40.539533363905704 ], [ 18.078750527215441, 40.527716997059414 ], [ 18.13924555766269, 40.487775458258319 ], [ 18.203014074260494, 40.467089758096563 ], [ 18.249107580082818, 40.437387892512781 ], [ 18.278961143685919, 40.407314492816887 ], [ 18.305529582281746, 40.39203408645718 ], [ 18.317252259187288, 40.37200841909533 ], [ 18.362692562089926, 40.341528179216603 ], [ 18.385980703318051, 40.314460507049915 ], [ 18.422830971555886, 40.294179242766738 ], [ 18.440446173731861, 40.269421998769559 ], [ 18.464541057106238, 40.222069979220031 ], [ 18.463653187238489, 40.1929208884115 ], [ 18.478963057761124, 40.178118834421483 ], [ 18.488680108478899, 40.146988165193036 ], [ 18.513405740801922, 40.138322352453869 ], [ 18.506806896043205, 40.124713851979898 ], [ 18.520381599098918, 40.107082372874117 ], [ 18.484679591217734, 40.077469345671844 ], [ 18.475588154777686, 40.045500385227911 ], [ 18.435772435922175, 40.02474520281902 ], [ 18.431663414478702, 40.000598922539652 ], [ 18.408273807788987, 39.977840200029632 ], [ 18.390176267586313, 39.905849364996996 ], [ 18.399034356485867, 39.889082337540358 ], [ 18.385916677239251, 39.83112254634338 ], [ 18.3893459348871, 39.815644885979772 ], [ 18.368992764954022, 39.793763550799241 ], [ 18.346169153964986, 39.791463315866402 ], [ 18.327075040248197, 39.807370933697499 ], [ 18.263237587583358, 39.83620364214552 ], [ 18.204743310445124, 39.838545208470514 ], [ 18.151219755620716, 39.861218577425014 ], [ 18.120747470265439, 39.884673633439327 ], [ 18.076996337705307, 39.907032851860308 ], [ 18.047563745047491, 39.928785212326076 ], [ 17.994845029032493, 39.995220419007872 ], [ 18.017640895614825, 40.0070169409491 ], [ 18.019149013999829, 40.027121038186785 ], [ 17.997661663182896, 40.05066005947036 ], [ 18.0110097652124, 40.086058631222642 ], [ 18.010877206470717, 40.106847148114767 ], [ 17.987180225540367, 40.140341217180413 ], [ 17.96383965084955, 40.147539873925822 ], [ 17.919810324797353, 40.192135477931153 ], [ 17.924205105136288, 40.217532307303991 ], [ 17.904518088714809, 40.256203398421732 ], [ 17.855879855144192, 40.285617948530096 ], [ 17.839384054516358, 40.280574871103646 ], [ 17.816364154173215, 40.2895929638429 ], [ 17.678494388567557, 40.304714471705964 ], [ 17.510536880093341, 40.29458360354559 ], [ 17.494765184344832, 40.309956318369956 ], [ 17.458034183322493, 40.316977672315076 ], [ 17.427192680092762, 40.332479193698319 ], [ 17.402127641518792, 40.332308008608159 ], [ 17.340023312626446, 40.361898920666675 ], [ 17.311295425901271, 40.366335963073539 ], [ 17.267664725469068, 40.390601800782775 ], [ 17.23264593170185, 40.401082378230889 ], [ 17.229547552012033, 40.423806445583793 ], [ 17.255667123891413, 40.442731924211969 ], [ 17.246732582299543, 40.462135596256594 ], [ 17.220167281566319, 40.479340906273016 ], [ 17.181832291059017, 40.481441220108756 ], [ 17.162639860831291, 40.506111022222449 ], [ 17.128680788831151, 40.517333912660199 ], [ 17.085051012664458, 40.519752128237606 ], [ 17.044997516152119, 40.512372476591977 ], [ 16.995265770975411, 40.494937038319392 ], [ 16.958392544394702, 40.475304592773057 ], [ 16.901624644124155, 40.435487747136207 ], [ 16.866520499668283, 40.398077514192892 ], [ 16.85067693823083, 40.401239151529715 ], [ 16.809382462945358, 40.433073958449789 ], [ 16.792606590898046, 40.461952229969413 ], [ 16.735593149660005, 40.467924173455962 ], [ 16.719589356455479, 40.481411054233689 ], [ 16.737072231631775, 40.503827497731272 ], [ 16.715820357193785, 40.52424837120406 ], [ 16.724378920090814, 40.535291821890254 ], [ 16.705688619711175, 40.550190491091698 ], [ 16.723972665131939, 40.602445657517798 ], [ 16.70975934091565, 40.632833730154339 ], [ 16.725656280417642, 40.677600802934442 ], [ 16.696624245409158, 40.702082812769056 ], [ 16.724908461460032, 40.713832764509149 ], [ 16.632819727970865, 40.753570629433973 ], [ 16.607937887857332, 40.751831472202689 ], [ 16.574607359572742, 40.763047340935309 ], [ 16.566965861175103, 40.754460021791346 ], [ 16.522550517293254, 40.746448958777911 ], [ 16.496076968684548, 40.7582853502864 ], [ 16.479679068453933, 40.736799074442722 ], [ 16.430509334698211, 40.704754582332427 ], [ 16.400152104123748, 40.7074054089844 ], [ 16.380389453514745, 40.7363977872037 ], [ 16.35007526007734, 40.748897269547726 ], [ 16.316226019289413, 40.783105613747253 ], [ 16.278230362717853, 40.801605356805801 ], [ 16.231198953989836, 40.85488696286604 ], [ 16.223804873424637, 40.886585430749491 ], [ 16.202464180777746, 40.91753154312751 ], [ 16.162970589440999, 40.928579973098536 ], [ 16.138067180941668, 40.918353365652834 ], [ 16.121297926185125, 40.899238930570981 ], [ 16.093637771020642, 40.920267862131311 ], [ 15.976628515816243, 40.958452914034915 ], [ 16.002854462927345, 40.970209302067275 ], [ 16.03198448642927, 40.998384237598842 ], [ 16.027934449533653, 41.024081169241654 ], [ 16.040539275046878, 41.036365263709271 ], [ 16.007250296230751, 41.059106301231871 ], [ 15.976253883848804, 41.094166700937087 ], [ 15.953384641931338, 41.11080943690488 ], [ 15.920968885486133, 41.11115106815091 ], [ 15.880662209653886, 41.1368357790315 ], [ 15.805370198876005, 41.110887159429119 ], [ 15.798734074792447, 41.091983429516766 ], [ 15.768400657013768, 41.083189768068827 ], [ 15.752597503895766, 41.09733718603276 ], [ 15.67941423190765, 41.086802050723875 ], [ 15.646555063996876, 41.089622589240051 ], [ 15.617416838117101, 41.099257909521661 ], [ 15.587553655190982, 41.098375363016565 ], [ 15.558910089025613, 41.087386312554408 ], [ 15.54287667544658, 41.055854618942718 ], [ 15.48948875144854, 41.070031694646033 ], [ 15.478347259454361, 41.078662320097102 ], [ 15.446099979446805, 41.078014443546188 ], [ 15.396375502806071, 41.106816248061449 ], [ 15.367453556121735, 41.084879005874846 ], [ 15.314357197196216, 41.103885682062035 ], [ 15.291726587294121, 41.093543911413299 ], [ 15.267187977130732, 41.106639611262736 ], [ 15.235663186761132, 41.13988247747259 ], [ 15.210788474066577, 41.148670655533842 ], [ 15.209345463529804, 41.167686590369684 ], [ 15.227501700965593, 41.184928377191191 ], [ 15.257382332625827, 41.197397522955399 ], [ 15.246175057200286, 41.23611113175145 ], [ 15.27984391576175, 41.240794970102989 ], [ 15.24704587477339, 41.271362534970514 ], [ 15.216282568267189, 41.275235909018967 ], [ 15.201002932669999, 41.286271979523725 ], [ 15.150198891415716, 41.282737062280482 ], [ 15.126770590082126, 41.302951905626742 ], [ 15.130560172252572, 41.317185586189773 ], [ 15.072190201309729, 41.332460329543984 ], [ 15.058467630508098, 41.37213470669095 ], [ 15.081552475879354, 41.387731211509674 ], [ 15.098780028445717, 41.433768457841687 ], [ 15.076251397415279, 41.432778119149155 ], [ 15.032443012371683, 41.452684907432086 ], [ 15.023892892177068, 41.476947367867346 ], [ 15.007617821316355, 41.486388790667682 ], [ 14.966394423870211, 41.519007319233154 ], [ 14.937030621498904, 41.527855827102236 ], [ 14.948537857070249, 41.573751713836685 ], [ 14.947021944093835, 41.609683372769084 ], [ 14.934875641972228, 41.621619242178546 ], [ 14.955895630688966, 41.643400959043788 ], [ 14.988700165326026, 41.637807884412567 ], [ 15.022689641148363, 41.621853006204077 ], [ 15.044698171360217, 41.640346094960961 ], [ 15.048312513445644, 41.655520501691832 ], [ 15.069561949061683, 41.6600669667693 ], [ 15.106073507209885, 41.685610971240514 ], [ 15.133599011611897, 41.697974418054727 ], [ 15.102843255471287, 41.741275748922241 ], [ 15.097373450288227, 41.765933609661168 ], [ 15.115135695304557, 41.789559297141047 ], [ 15.11644311204285, 41.814535319156661 ], [ 15.100268188895479, 41.833788284985346 ], [ 15.103662499331355, 41.846740100367967 ], [ 15.138799094149407, 41.879280886008274 ], [ 15.131434658668908, 41.903020468357226 ], [ 15.13804572601151, 41.926645131283351 ], [ 15.207805075916561, 41.919205524708843 ], [ 15.292875134551151, 41.920242724996946 ], [ 15.33592161755637, 41.91672952119292 ], [ 15.363393031921104, 41.903208324091608 ], [ 15.391713097847639, 41.900625351712399 ], [ 15.458268386266584, 41.903694794065693 ], [ 15.5248292456901, 41.91188875351466 ], [ 15.62304804245311, 41.927434398078482 ], [ 15.686531237313428, 41.914427683100897 ], [ 15.74996829957608, 41.916519805334723 ], [ 15.924564573212335, 41.933138460475568 ], [ 16.012148696915489, 41.950441827831838 ], [ 16.089751302222417, 41.938670449910177 ], [ 16.118143314565003, 41.916566102410073 ], [ 16.153279366965752, 41.908526188741838 ], [ 16.176461870562761, 41.884823734289725 ], [ 16.176685121700945, 41.855114567992317 ], [ 16.195100045620581, 41.822157839422275 ], [ 16.197729387670723, 41.803593546067098 ], [ 16.186602786058501, 41.7721220288797 ], [ 16.140036909796461, 41.74091130657613 ], [ 16.104912400832717, 41.729740540639327 ], [ 16.074156167458362, 41.711066539066515 ], [ 16.065379999674214, 41.695707467359007 ], [ 16.014461790851378, 41.669517970374443 ], [ 15.943518803238563, 41.64247945381004 ], [ 15.903320764627811, 41.618280522031291 ], [ 15.894229415781005, 41.575561021582743 ], [ 15.904561155329191, 41.532462491659722 ], [ 15.918247981294723, 41.505528407703295 ], [ 15.945303542071471, 41.471316423954143 ], [ 15.980566017950173, 41.445737130701986 ], [ 16.168684713996839, 41.369403309080653 ], [ 16.20703390472384, 41.359425150558515 ], [ 16.266533342484124, 41.326920023603002 ], [ 16.359056434515566, 41.304711275156599 ], [ 16.421768094575235, 41.280205312991747 ], [ 16.453176955177064, 41.259786257985446 ], [ 16.531833456771125, 41.238745795844366 ], [ 16.582084531461913, 41.208224236510311 ], [ 16.626142957947891, 41.19483146546839 ], [ 16.660195953711245, 41.192234043074201 ], [ 16.695374643421076, 41.177960021934226 ], [ 16.779316701444284, 41.159614009477494 ], [ 16.809634877705928, 41.140327299853347 ], [ 16.839964262302402, 41.138787241402724 ], [ 16.890475283385395, 41.118774036821961 ], [ 16.928565253847083, 41.111823843842672 ], [ 16.960641707940056, 41.097888768083763 ], [ 17.04647311548511, 41.08032280952245 ], [ 17.093610347042976, 41.062347227180609 ], [ 17.142406887405837, 41.036936664239654 ], [ 17.175409394343436, 41.02910148036716 ], [ 17.201639427273665, 41.003672395632144 ], [ 17.237035534340912, 40.993127236796084 ], [ 17.30672777973005, 40.952234056193277 ], [ 17.334322838583446, 40.928914692529311 ], [ 17.350114793232891, 40.905737619317264 ], [ 17.385233364506828, 40.894500132707492 ], [ 17.414832241948947, 40.870678423194235 ], [ 17.457210595682028, 40.849207447309333 ], [ 17.472812708280124, 40.832214887956866 ], [ 17.559432862089427, 40.798149933421385 ], [ 17.681531302772374, 40.767220706287134 ], [ 17.722702072645884, 40.750993017086408 ], [ 17.747325052347506, 40.733317980012579 ], [ 17.828069859455915, 40.695086341392965 ], [ 17.874073768528216, 40.684849259108191 ], [ 17.941952466916266, 40.682003863642549 ], [ 17.967842054664601, 40.659637578755287 ], [ 17.967821402873685, 40.659775357583207 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Emilia-Romagna", "ISO": "IT-45" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.426742032083617, 44.950083525538552 ], [ 11.434076896437318, 44.929395433737284 ], [ 11.469601804442512, 44.936373070133506 ], [ 11.534130503841563, 44.936245910947797 ], [ 11.586428680547797, 44.911339161814546 ], [ 11.592083579366152, 44.892039155417017 ], [ 11.624808733599158, 44.889223040537608 ], [ 11.672844863527706, 44.915165703183959 ], [ 11.744746369310423, 44.937127796685296 ], [ 11.747036296701273, 44.958096663787153 ], [ 11.783826507166234, 44.964186070522324 ], [ 11.804719119685782, 44.976961254991707 ], [ 11.838317927322215, 44.972789300742051 ], [ 11.899559982557815, 44.977804410503595 ], [ 11.926377187102922, 44.974792814737057 ], [ 11.962678867873572, 44.986827714374193 ], [ 12.056888799992176, 44.970601221013226 ], [ 12.091563584372308, 44.970207037874687 ], [ 12.116183235544007, 44.957672768984963 ], [ 12.142424359394441, 44.927903858805074 ], [ 12.169144604547229, 44.942089931580838 ], [ 12.194173928031269, 44.92535048898683 ], [ 12.224971806218676, 44.922980719297946 ], [ 12.256183144383797, 44.942528489027481 ], [ 12.280868808441033, 44.941767201366297 ], [ 12.294747074496529, 44.925370819517163 ], [ 12.282185363293957, 44.911509869004064 ], [ 12.286650719688124, 44.870305355244575 ], [ 12.303835739267303, 44.855387754810387 ], [ 12.336318417129377, 44.852236883893454 ], [ 12.353281638907733, 44.817027717038023 ], [ 12.396763299630519, 44.790683970678295 ], [ 12.373167744436515, 44.796189982720975 ], [ 12.308601320945781, 44.842309586799153 ], [ 12.284776890713863, 44.840730621243686 ], [ 12.258928443694801, 44.815625761248278 ], [ 12.272469324514285, 44.800255476730747 ], [ 12.248307327934029, 44.762765017864361 ], [ 12.24024368510516, 44.691004509201683 ], [ 12.281782336336889, 44.593728770804567 ], [ 12.279585959870486, 44.521616960464797 ], [ 12.292122054049669, 44.454274541947946 ], [ 12.316539219597622, 44.402909237426165 ], [ 12.329881533009056, 44.34622591654329 ], [ 12.351403280969004, 44.286428896975416 ], [ 12.383523730403532, 44.224494066038943 ], [ 12.429749191552583, 44.17884505008135 ], [ 12.514764883888684, 44.106290467004364 ], [ 12.560896338599905, 44.076357202886648 ], [ 12.575472785086774, 44.078509085864319 ], [ 12.620537996440133, 44.034965843177154 ], [ 12.655697552884895, 44.008169159969057 ], [ 12.7137120462748, 43.974330223646156 ], [ 12.750621437533921, 43.968544500728427 ], [ 12.755640592249428, 43.961954709655835 ], [ 12.727907581132266, 43.924182452501476 ], [ 12.734831054339262, 43.896024749086486 ], [ 12.722653233043534, 43.880566371936155 ], [ 12.723632264320612, 43.861236755559105 ], [ 12.682295035094915, 43.852796654608937 ], [ 12.681317061618605, 43.828070669756386 ], [ 12.623274694683218, 43.821151727050641 ], [ 12.600999399191556, 43.850510878434605 ], [ 12.602561423884056, 43.86343482663694 ], [ 12.584400319589555, 43.884103453977268 ], [ 12.541692224843722, 43.864027769312649 ], [ 12.542596427514786, 43.889081906580529 ], [ 12.49394529981652, 43.915564808052956 ], [ 12.515665508624716, 43.941532892837728 ], [ 12.506556296821341, 43.970932962241498 ], [ 12.509471054667955, 43.991203470347216 ], [ 12.452949907529879, 43.969389671688909 ], [ 12.436867357127205, 43.95662264201156 ], [ 12.403605266934079, 43.951083316738448 ], [ 12.41472455709323, 43.928748022411412 ], [ 12.417681311971824, 43.899048936454307 ], [ 12.420010773732276, 43.872231174687357 ], [ 12.386230551428406, 43.881984733828588 ], [ 12.347371693262831, 43.867020012594963 ], [ 12.33543921078245, 43.824118636046755 ], [ 12.315886833910598, 43.805637702470797 ], [ 12.284853869138802, 43.794794791762179 ], [ 12.283780916917237, 43.76491721980068 ], [ 12.209310650537891, 43.757072811925767 ], [ 12.194632649708918, 43.731924318484459 ], [ 12.164047757038764, 43.762261497059818 ], [ 12.123577531976904, 43.749150702621009 ], [ 12.108553634830672, 43.75306296446324 ], [ 12.07706063014915, 43.740654258107035 ], [ 12.053002579133906, 43.756965634181277 ], [ 12.006392013227856, 43.766521343917958 ], [ 11.986510468773206, 43.761927473254701 ], [ 11.953380474185742, 43.776088699442468 ], [ 11.947062127345196, 43.790873229599811 ], [ 11.918787746585977, 43.793688209688696 ], [ 11.896425545216882, 43.807780500873619 ], [ 11.856060664062033, 43.815900783054154 ], [ 11.824546537186261, 43.815487203452925 ], [ 11.784461168815685, 43.847577909138039 ], [ 11.732476127598087, 43.863166840451385 ], [ 11.710166740227887, 43.877445949456387 ], [ 11.71703165391205, 43.921817608914274 ], [ 11.682381492268279, 43.938266386002638 ], [ 11.688787668904713, 43.959020971909545 ], [ 11.654930702118914, 43.974695394509013 ], [ 11.645639817071638, 43.989379763752055 ], [ 11.694909020908105, 44.035339846605098 ], [ 11.709428609451034, 44.066596776126211 ], [ 11.748876930689061, 44.104141416373203 ], [ 11.744182821844486, 44.126068444063392 ], [ 11.720301358024065, 44.120707083632645 ], [ 11.678021275065802, 44.12217898340797 ], [ 11.653815194212527, 44.10254201680057 ], [ 11.597290446973293, 44.12515193988429 ], [ 11.617760466393849, 44.14623494313517 ], [ 11.615364491489578, 44.158254382894683 ], [ 11.552452064763022, 44.165339200971871 ], [ 11.544818930124899, 44.152608622872954 ], [ 11.50598106522928, 44.163474498560667 ], [ 11.480162809026298, 44.18378616446347 ], [ 11.447627004684865, 44.199485294647211 ], [ 11.451297227596203, 44.220568337692413 ], [ 11.426106860938283, 44.235053142541808 ], [ 11.398332282850768, 44.222675990938242 ], [ 11.38054512740419, 44.200000764930891 ], [ 11.342809365390291, 44.205819212674719 ], [ 11.322621016764005, 44.182242651367389 ], [ 11.280713653565755, 44.155339220957785 ], [ 11.234639631485775, 44.158412047509842 ], [ 11.195854696217628, 44.143544295934831 ], [ 11.218360298092501, 44.129403334102008 ], [ 11.260226123504275, 44.11584191382385 ], [ 11.248036195242927, 44.0975722911435 ], [ 11.21457852896846, 44.098878775644351 ], [ 11.159202384871927, 44.112422020768342 ], [ 11.127642600601822, 44.109684564851399 ], [ 11.093220805811606, 44.094457474362336 ], [ 11.054281790580342, 44.091498811408606 ], [ 11.029107254614813, 44.095811513602932 ], [ 11.002009019916432, 44.110892493871205 ], [ 10.994956505218397, 44.130795662085632 ], [ 10.91825041970572, 44.063010928347147 ], [ 10.8991394712562, 44.06647692394688 ], [ 10.90280224627811, 44.086087839051764 ], [ 10.878707279434002, 44.098619523232912 ], [ 10.848664830564152, 44.098058533390997 ], [ 10.766150428314752, 44.140676418482343 ], [ 10.743933574360867, 44.15623768325333 ], [ 10.661676932485278, 44.153849188989042 ], [ 10.641209711772985, 44.159835083075379 ], [ 10.623752784508222, 44.141205125189174 ], [ 10.624055850627933, 44.120366100014934 ], [ 10.593103763332431, 44.115415140687752 ], [ 10.577509040919645, 44.131900250108593 ], [ 10.53225640711192, 44.155042076894738 ], [ 10.522938734170062, 44.17483843156549 ], [ 10.485214943883053, 44.204496089194585 ], [ 10.492902584145824, 44.217000077312917 ], [ 10.46493668770187, 44.231136802133079 ], [ 10.430263427472214, 44.227434895583222 ], [ 10.407397558311063, 44.249308117473937 ], [ 10.371588787979585, 44.269379212010861 ], [ 10.342755174438937, 44.269631812107924 ], [ 10.296616312209331, 44.285460928023809 ], [ 10.25385666310428, 44.268580690340926 ], [ 10.229177129849372, 44.296731055339286 ], [ 10.167905844961496, 44.329910491998845 ], [ 10.142034727843635, 44.353867637999663 ], [ 10.098985744047011, 44.346167534604376 ], [ 10.05317829251922, 44.373033329550267 ], [ 10.021696590860561, 44.382934288668821 ], [ 9.98928472008847, 44.404331168942889 ], [ 10.006937090071204, 44.431734306687034 ], [ 9.980666157480284, 44.445043860969363 ], [ 9.970712722807278, 44.464439669965991 ], [ 9.92205491298057, 44.47228809198814 ], [ 9.827717218284638, 44.468275353519275 ], [ 9.732074203798588, 44.379378074547219 ], [ 9.716899238458241, 44.383174494867355 ], [ 9.686700448591354, 44.365939567169846 ], [ 9.674979443495076, 44.364713021974985 ], [ 9.655289531762499, 44.411660311003473 ], [ 9.636038298729819, 44.413902798781251 ], [ 9.598170786726497, 44.436740323692085 ], [ 9.559177528006002, 44.438135252920112 ], [ 9.55122873534609, 44.428081808227709 ], [ 9.493902292042117, 44.423896725086465 ], [ 9.479034348453366, 44.409258522169431 ], [ 9.458198517902064, 44.442204087139388 ], [ 9.470235902102335, 44.473268527406979 ], [ 9.496803432387546, 44.482730402724556 ], [ 9.5046076784718, 44.529960002362955 ], [ 9.476536032684049, 44.565195097756479 ], [ 9.440701055438527, 44.566716617138447 ], [ 9.42307656270188, 44.574612236558231 ], [ 9.421306236588197, 44.592604305201768 ], [ 9.389368023284453, 44.590219462077535 ], [ 9.340150300043842, 44.578668882512012 ], [ 9.300410245095064, 44.607777379619492 ], [ 9.272230477095945, 44.595915226960678 ], [ 9.245502627472387, 44.619647816927909 ], [ 9.20297322777567, 44.613494121389706 ], [ 9.198675885722679, 44.648758232729335 ], [ 9.206434823669957, 44.660204532226395 ], [ 9.20031986650889, 44.686404806099667 ], [ 9.240482795971243, 44.688306337484079 ], [ 9.257588757117496, 44.681220195290933 ], [ 9.298505879631204, 44.681021554408332 ], [ 9.324637473044445, 44.690015632043192 ], [ 9.308480647426125, 44.705634462073775 ], [ 9.332580793519327, 44.735040353474609 ], [ 9.28589944581023, 44.759427838170708 ], [ 9.28697494270069, 44.772496369004877 ], [ 9.316759748943644, 44.783949464687609 ], [ 9.329870700878169, 44.799990264651051 ], [ 9.358424690507526, 44.814946812774394 ], [ 9.341675182676603, 44.869811990008031 ], [ 9.290113399812011, 44.882206412908275 ], [ 9.287612456242892, 44.934235310270182 ], [ 9.314532002976938, 44.936819921584991 ], [ 9.347463128731336, 44.997410855194246 ], [ 9.36620436884829, 45.003608589142502 ], [ 9.376196795230499, 45.041667331359051 ], [ 9.370819944710394, 45.048153672491217 ], [ 9.439006409963381, 45.093446269262977 ], [ 9.501469257408381, 45.103568055174939 ], [ 9.532026203856985, 45.078432026699588 ], [ 9.550611373015634, 45.095231153104677 ], [ 9.537442638959911, 45.114877071858814 ], [ 9.601881983534748, 45.104140694527516 ], [ 9.618412910683592, 45.133019757928849 ], [ 9.638307226000176, 45.124304710787669 ], [ 9.631419791538958, 45.087796124686491 ], [ 9.659538767806902, 45.082092135323819 ], [ 9.712537614644791, 45.0587652847017 ], [ 9.730062461424572, 45.063578562821966 ], [ 9.753101094412109, 45.086599438751541 ], [ 9.778962207252645, 45.089584063765884 ], [ 9.83550722304215, 45.071884539731592 ], [ 9.844004570527707, 45.096810852713389 ], [ 9.863435093676989, 45.092470790453007 ], [ 9.88284346447543, 45.07450797650943 ], [ 9.900628060643536, 45.095442144192369 ], [ 9.879389107296902, 45.111846736280178 ], [ 9.881033418501282, 45.127001883271589 ], [ 9.915507360803078, 45.138990963633191 ], [ 9.936468007782542, 45.104821692521114 ], [ 9.978336355512388, 45.133735119270568 ], [ 9.992727070401752, 45.129758215367517 ], [ 10.029232475063258, 45.094895560331175 ], [ 10.02131684360069, 45.077179225939766 ], [ 10.0435097235061, 45.063079876059597 ], [ 10.057349645498142, 45.041447329686036 ], [ 10.106190811475322, 45.022130358597117 ], [ 10.157721357914674, 45.044079043589697 ], [ 10.193959028655518, 45.028155279573078 ], [ 10.211067558052486, 45.034031827374484 ], [ 10.260030522103106, 45.014230632908664 ], [ 10.274466594177545, 44.997930114237128 ], [ 10.304687589325436, 44.999038101152983 ], [ 10.308900794774491, 44.987377481089773 ], [ 10.365288026395547, 44.966102859451155 ], [ 10.383365843522611, 44.979109051357895 ], [ 10.416767804868922, 44.9776500124309 ], [ 10.431837991925526, 44.9470727902523 ], [ 10.504315232298701, 44.922427602652341 ], [ 10.519853032428268, 44.912726452848148 ], [ 10.56606698410156, 44.908465116300668 ], [ 10.598825423724444, 44.91474458489116 ], [ 10.630511006619228, 44.928924081076325 ], [ 10.663882897431137, 44.968587306232052 ], [ 10.6866799950343, 44.986592637925163 ], [ 10.738673161525933, 44.985742167670317 ], [ 10.743719814603844, 44.949076854017548 ], [ 10.819754130672523, 44.936723468558121 ], [ 10.876633012271745, 44.917058763642466 ], [ 10.941373456294496, 44.921913848977091 ], [ 10.994007523592993, 44.953860149161983 ], [ 11.059570643380418, 44.949248237484305 ], [ 11.073025379974478, 44.962610660532178 ], [ 11.124333257199879, 44.95136975990409 ], [ 11.148671422513441, 44.934233644327719 ], [ 11.241432752864233, 44.945916750304725 ], [ 11.26669316699075, 44.943990176740606 ], [ 11.301583514420189, 44.962358973165543 ], [ 11.329319188598506, 44.960698110358308 ], [ 11.357155462134562, 44.950080514966444 ], [ 11.378192691041217, 44.957925883674584 ], [ 11.426742032083617, 44.950083525538552 ] ], [ [ 12.224258762985661, 43.809859256369499 ], [ 12.218027798425904, 43.802789746346761 ], [ 12.169755048823186, 43.8046252237787 ], [ 12.186139625861239, 43.77413008249804 ], [ 12.237261526973207, 43.787003998912297 ], [ 12.224258762985661, 43.809859256369499 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Toscana", "ISO": "IT-52" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.137898216451434, 42.434638438303686 ], [ 11.166126551890356, 42.437636073525638 ], [ 11.189654025327302, 42.481411503348255 ], [ 11.190423126022779, 42.517381664198844 ], [ 11.158172567772702, 42.562051702538078 ], [ 11.11718412047307, 42.565828953581935 ], [ 11.104838807595412, 42.596836112894721 ], [ 11.062590142399284, 42.639026672474849 ], [ 11.015341488277125, 42.6554535145792 ], [ 10.98269942497882, 42.713105692374278 ], [ 10.951543177308338, 42.736891449650813 ], [ 10.911811915315129, 42.753440650190704 ], [ 10.846215252571277, 42.769071698294333 ], [ 10.784595658308115, 42.775658958026163 ], [ 10.733274714014815, 42.803491794861017 ], [ 10.762826904264868, 42.812864972651695 ], [ 10.776017617378773, 42.843712410176359 ], [ 10.769426802133466, 42.869494249460331 ], [ 10.78663213865979, 42.888227261196185 ], [ 10.775452153519767, 42.9073452011352 ], [ 10.712290513244273, 42.940009161733649 ], [ 10.679618402091787, 42.949137979613248 ], [ 10.593861539590783, 42.954277102904321 ], [ 10.563485663561972, 42.951463392354825 ], [ 10.521183701795493, 42.922569521248668 ], [ 10.499061040007023, 42.935954545486467 ], [ 10.48391622957676, 42.967200712352557 ], [ 10.483003149688123, 42.988391918036584 ], [ 10.515717291046785, 43.002521789806352 ], [ 10.531618530083911, 43.052529533669542 ], [ 10.53977705294149, 43.134139462316561 ], [ 10.534535841324834, 43.199834990547963 ], [ 10.525840885111775, 43.240345348944082 ], [ 10.501515971880741, 43.290842087342199 ], [ 10.465231408003874, 43.316714034742212 ], [ 10.424991223265959, 43.398378202854644 ], [ 10.406780663369558, 43.408796492071957 ], [ 10.382193136006398, 43.445817726865016 ], [ 10.330446324827131, 43.473835410031597 ], [ 10.318925046133391, 43.510311610186918 ], [ 10.295578804684215, 43.541365856957398 ], [ 10.295648522479487, 43.568699364313112 ], [ 10.285598111021359, 43.642186028235315 ], [ 10.272559433175225, 43.671896157748336 ], [ 10.282597017340706, 43.686419694251853 ], [ 10.277599435348328, 43.737515899767409 ], [ 10.261012872597867, 43.807910985035981 ], [ 10.231220053353372, 43.882839671018559 ], [ 10.180905208132991, 43.942617060260375 ], [ 10.137487304533995, 43.980490585950463 ], [ 10.066931837782507, 44.02665631885781 ], [ 10.018772948617334, 44.044476889729317 ], [ 10.028686887526804, 44.059166947300525 ], [ 10.066221102968724, 44.086165737172792 ], [ 10.069262695388113, 44.097999078445014 ], [ 10.04614155604953, 44.115472329305732 ], [ 10.017885463973887, 44.1192810519726 ], [ 10.002127623361172, 44.107651484842258 ], [ 9.976347899537693, 44.139547987819341 ], [ 9.979011937466387, 44.161027578677995 ], [ 9.966465907266667, 44.169432464011592 ], [ 9.89236544733131, 44.168021474016506 ], [ 9.928121740347001, 44.195609077517979 ], [ 9.857027383161213, 44.234029824024503 ], [ 9.851527007782172, 44.270861769545263 ], [ 9.805714973677329, 44.282803445656675 ], [ 9.764178639738594, 44.305515239957543 ], [ 9.7583142978248, 44.318351982440106 ], [ 9.729455184652446, 44.328330595849053 ], [ 9.706301260291486, 44.366189155557272 ], [ 9.686700448591354, 44.365939567169846 ], [ 9.716899238458241, 44.383174494867355 ], [ 9.732074203798588, 44.379378074547219 ], [ 9.827717218284638, 44.468275353519275 ], [ 9.92205491298057, 44.47228809198814 ], [ 9.970712722807278, 44.464439669965991 ], [ 9.980666157480284, 44.445043860969363 ], [ 10.006937090071204, 44.431734306687034 ], [ 9.98928472008847, 44.404331168942889 ], [ 10.021696590860561, 44.382934288668821 ], [ 10.05317829251922, 44.373033329550267 ], [ 10.098985744047011, 44.346167534604376 ], [ 10.142034727843635, 44.353867637999663 ], [ 10.167905844961496, 44.329910491998845 ], [ 10.229177129849372, 44.296731055339286 ], [ 10.25385666310428, 44.268580690340926 ], [ 10.296616312209331, 44.285460928023809 ], [ 10.342755174438937, 44.269631812107924 ], [ 10.371588787979585, 44.269379212010861 ], [ 10.407397558311063, 44.249308117473937 ], [ 10.430263427472214, 44.227434895583222 ], [ 10.46493668770187, 44.231136802133079 ], [ 10.492902584145824, 44.217000077312917 ], [ 10.485214943883053, 44.204496089194585 ], [ 10.522938734170062, 44.17483843156549 ], [ 10.53225640711192, 44.155042076894738 ], [ 10.577509040919645, 44.131900250108593 ], [ 10.593103763332431, 44.115415140687752 ], [ 10.624055850627933, 44.120366100014934 ], [ 10.623752784508222, 44.141205125189174 ], [ 10.641209711772985, 44.159835083075379 ], [ 10.661676932485278, 44.153849188989042 ], [ 10.743933574360867, 44.15623768325333 ], [ 10.766150428314752, 44.140676418482343 ], [ 10.848664830564152, 44.098058533390997 ], [ 10.878707279434002, 44.098619523232912 ], [ 10.90280224627811, 44.086087839051764 ], [ 10.8991394712562, 44.06647692394688 ], [ 10.91825041970572, 44.063010928347147 ], [ 10.994956505218397, 44.130795662085632 ], [ 11.002009019916432, 44.110892493871205 ], [ 11.029107254614813, 44.095811513602932 ], [ 11.054281790580342, 44.091498811408606 ], [ 11.093220805811606, 44.094457474362336 ], [ 11.127642600601822, 44.109684564851399 ], [ 11.159202384871927, 44.112422020768342 ], [ 11.21457852896846, 44.098878775644351 ], [ 11.248036195242927, 44.0975722911435 ], [ 11.260226123504275, 44.11584191382385 ], [ 11.218360298092501, 44.129403334102008 ], [ 11.195854696217628, 44.143544295934831 ], [ 11.234639631485775, 44.158412047509842 ], [ 11.280713653565755, 44.155339220957785 ], [ 11.322621016764005, 44.182242651367389 ], [ 11.342809365390291, 44.205819212674719 ], [ 11.38054512740419, 44.200000764930891 ], [ 11.398332282850768, 44.222675990938242 ], [ 11.426106860938283, 44.235053142541808 ], [ 11.451297227596203, 44.220568337692413 ], [ 11.447627004684865, 44.199485294647211 ], [ 11.480162809026298, 44.18378616446347 ], [ 11.50598106522928, 44.163474498560667 ], [ 11.544818930124899, 44.152608622872954 ], [ 11.552452064763022, 44.165339200971871 ], [ 11.615364491489578, 44.158254382894683 ], [ 11.617760466393849, 44.14623494313517 ], [ 11.597290446973293, 44.12515193988429 ], [ 11.653815194212527, 44.10254201680057 ], [ 11.678021275065802, 44.12217898340797 ], [ 11.720301358024065, 44.120707083632645 ], [ 11.744182821844486, 44.126068444063392 ], [ 11.748876930689061, 44.104141416373203 ], [ 11.709428609451034, 44.066596776126211 ], [ 11.694909020908105, 44.035339846605098 ], [ 11.645639817071638, 43.989379763752055 ], [ 11.654930702118914, 43.974695394509013 ], [ 11.688787668904713, 43.959020971909545 ], [ 11.682381492268279, 43.938266386002638 ], [ 11.71703165391205, 43.921817608914274 ], [ 11.710166740227887, 43.877445949456387 ], [ 11.732476127598087, 43.863166840451385 ], [ 11.784461168815685, 43.847577909138039 ], [ 11.824546537186261, 43.815487203452925 ], [ 11.856060664062033, 43.815900783054154 ], [ 11.896425545216882, 43.807780500873619 ], [ 11.918787746585977, 43.793688209688696 ], [ 11.947062127345196, 43.790873229599811 ], [ 11.953380474185742, 43.776088699442468 ], [ 11.986510468773206, 43.761927473254701 ], [ 12.006392013227856, 43.766521343917958 ], [ 12.053002579133906, 43.756965634181277 ], [ 12.07706063014915, 43.740654258107035 ], [ 12.108553634830672, 43.75306296446324 ], [ 12.123577531976904, 43.749150702621009 ], [ 12.164047757038764, 43.762261497059818 ], [ 12.194632649708918, 43.731924318484459 ], [ 12.209310650537891, 43.757072811925767 ], [ 12.283780916917237, 43.76491721980068 ], [ 12.327074389378867, 43.751009835620714 ], [ 12.368190442424893, 43.71510153409055 ], [ 12.330116713202194, 43.707044149327373 ], [ 12.320768370299373, 43.694666916950439 ], [ 12.273479375928517, 43.675964237760326 ], [ 12.251079533243413, 43.672570743323874 ], [ 12.232656485132241, 43.655595902256927 ], [ 12.203692080567693, 43.651743968009342 ], [ 12.187218825608769, 43.636039460004476 ], [ 12.213834576267299, 43.61088376589796 ], [ 12.162662184634627, 43.561366653013451 ], [ 12.1420987596074, 43.535767858757197 ], [ 12.102727692492511, 43.529932862855986 ], [ 12.095094816253868, 43.499164729110468 ], [ 12.130960584789749, 43.482638199457249 ], [ 12.141232493176382, 43.468928758500091 ], [ 12.104025518177544, 43.460449493686149 ], [ 12.080291716830777, 43.433845453583565 ], [ 12.056878656138249, 43.43825456989736 ], [ 12.025210456317867, 43.415573891329821 ], [ 12.032936004757882, 43.400224918132338 ], [ 12.077832704202351, 43.398686630398963 ], [ 12.0730261238472, 43.370413952571923 ], [ 12.118769196017796, 43.364358717264508 ], [ 12.135456822352674, 43.341703744476646 ], [ 12.132523236121528, 43.293069704763937 ], [ 12.178171933082247, 43.283078530610709 ], [ 12.193818427023867, 43.313071520470551 ], [ 12.223707911309594, 43.296262861883832 ], [ 12.210062888370022, 43.282727299189425 ], [ 12.166431131296299, 43.268724009663877 ], [ 12.148583105463311, 43.25461712363942 ], [ 12.121823857012492, 43.255194558160653 ], [ 12.085921455264767, 43.236334317847799 ], [ 12.04889637624834, 43.253107259048463 ], [ 12.027489928451001, 43.19161710352121 ], [ 11.987476471753645, 43.180519047881212 ], [ 11.924029185723887, 43.147778351398962 ], [ 11.920937233202343, 43.117586867694072 ], [ 11.930407872461666, 43.094296131577003 ], [ 11.923748981642674, 43.075216034579967 ], [ 11.936380167345131, 43.05563026321385 ], [ 11.956587920973996, 43.068676848299738 ], [ 11.980820454949008, 43.056369361589894 ], [ 11.971935909575629, 43.022299480049107 ], [ 11.948552285393299, 42.961964282552294 ], [ 11.932721565093408, 42.908497908904948 ], [ 11.958812280991564, 42.891646493502201 ], [ 11.95865704951477, 42.871057606049234 ], [ 11.929018727873537, 42.869290194570581 ], [ 11.894963940648154, 42.834668794073558 ], [ 11.850593088594648, 42.838683189875887 ], [ 11.815446802121066, 42.8237621024116 ], [ 11.80300110081736, 42.800970061202577 ], [ 11.775874040438593, 42.820673635327459 ], [ 11.753349313045744, 42.802236022458374 ], [ 11.759273255676629, 42.782236462285411 ], [ 11.779418833765593, 42.758017440230866 ], [ 11.818658361058541, 42.745771945513361 ], [ 11.797080998601096, 42.706513129263726 ], [ 11.781143070502255, 42.705325727112402 ], [ 11.784515149937148, 42.671321054910202 ], [ 11.808407124577794, 42.659751170671854 ], [ 11.804776035350242, 42.643999178416067 ], [ 11.751830319925919, 42.625595434716409 ], [ 11.733129585050669, 42.606061885389607 ], [ 11.711617343731417, 42.61103075771284 ], [ 11.680049983789461, 42.595313337790387 ], [ 11.685941663536957, 42.584843991943252 ], [ 11.616191560285268, 42.559874834984541 ], [ 11.600890164619015, 42.56979561892458 ], [ 11.578557204548636, 42.56621098077828 ], [ 11.58435064511499, 42.542754621250182 ], [ 11.561235582203089, 42.517293007395715 ], [ 11.615960005868102, 42.488638172954708 ], [ 11.617709310728431, 42.43604425816801 ], [ 11.5435113232683, 42.442114789784405 ], [ 11.5165750923461, 42.433556015626905 ], [ 11.488888408440369, 42.439370363574263 ], [ 11.48192765192338, 42.419786865353608 ], [ 11.449780207458822, 42.394039298977411 ], [ 11.452083509204654, 42.382292243429404 ], [ 11.24353378688952, 42.418489320852316 ], [ 11.206295503596159, 42.404736364128695 ], [ 11.212516815822216, 42.38719105499198 ], [ 11.187837752076476, 42.372562878871307 ], [ 11.152686236313878, 42.361332431466053 ], [ 11.142379881704183, 42.377312070285264 ], [ 11.098008793675119, 42.393199070331953 ], [ 11.089741076900664, 42.408285610515868 ], [ 11.097604117999007, 42.440016458107834 ], [ 11.137898216451434, 42.434638438303686 ] ] ], [ [ [ 10.431358135572067, 42.82460108333089 ], [ 10.433711627446755, 42.775025510410195 ], [ 10.401618963253672, 42.757448553391548 ], [ 10.432765266380132, 42.734894524075841 ], [ 10.431663023417768, 42.712600119881763 ], [ 10.384700912135024, 42.713988079448768 ], [ 10.344611131574114, 42.76394954443505 ], [ 10.291956357444839, 42.754055685680996 ], [ 10.289988425600216, 42.738710441877458 ], [ 10.237560404751447, 42.747920579876862 ], [ 10.236704059154111, 42.72604704388408 ], [ 10.188139569372041, 42.736248640623216 ], [ 10.151433519670505, 42.730511255622908 ], [ 10.122240968951392, 42.741778506525009 ], [ 10.103689197011477, 42.76761482266091 ], [ 10.103316961802214, 42.786578934278801 ], [ 10.141351550272722, 42.807147709432833 ], [ 10.205543490360391, 42.807237238412995 ], [ 10.219575171310746, 42.793103602044624 ], [ 10.269405620727852, 42.803455977595441 ], [ 10.275209766288649, 42.817507038154048 ], [ 10.316168491118011, 42.820064713390153 ], [ 10.317373230264174, 42.804643086257769 ], [ 10.357425334237732, 42.799330463754877 ], [ 10.360270747773836, 42.817989071326544 ], [ 10.379261695658027, 42.82749635849347 ], [ 10.407719808583579, 42.871342227380296 ], [ 10.444024012694339, 42.846846598401314 ], [ 10.431358135572067, 42.82460108333089 ] ] ], [ [ [ 10.882474264983172, 42.389283134916894 ], [ 10.904094827469665, 42.383241220355529 ], [ 10.924684472847364, 42.355313327159074 ], [ 10.929255336433807, 42.325527089886563 ], [ 10.899674790465667, 42.330400119271054 ], [ 10.8824220634085, 42.351859158554369 ], [ 10.882474264983172, 42.389283134916894 ] ] ], [ [ [ 9.83394551054948, 43.058608891379137 ], [ 9.847599823543803, 43.045145348167502 ], [ 9.841816507853947, 43.029834700752346 ], [ 9.810080833203831, 43.002285795245726 ], [ 9.79606236251192, 43.02594331658544 ], [ 9.802881343399664, 43.050260675505584 ], [ 9.83394551054948, 43.058608891379137 ] ] ], [ [ [ 12.224258762985661, 43.809859256369499 ], [ 12.237261526973207, 43.787003998912297 ], [ 12.186139625861239, 43.77413008249804 ], [ 12.169755048823186, 43.8046252237787 ], [ 12.218027798425904, 43.802789746346761 ], [ 12.224258762985661, 43.809859256369499 ] ] ], [ [ [ 10.330008294648978, 42.322195083756036 ], [ 10.293735596116125, 42.31734760944277 ], [ 10.292666461771354, 42.344251147187904 ], [ 10.32748748610314, 42.342677840425459 ], [ 10.330008294648978, 42.322195083756036 ] ] ], [ [ [ 10.086524645785744, 42.603315992618306 ], [ 10.100293281962097, 42.574893730275178 ], [ 10.052134187902384, 42.573869206361159 ], [ 10.086524645785744, 42.603315992618306 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME_1": "Umbria", "ISO": "IT-55" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.189215833537546, 42.733577628927513 ], [ 13.190655787651554, 42.712751553959187 ], [ 13.17333487487914, 42.687313921861367 ], [ 13.174140797605588, 42.666105124295683 ], [ 13.14423367035819, 42.64631056821036 ], [ 13.1304959748211, 42.659301116771282 ], [ 13.097805149524875, 42.636308500135243 ], [ 13.058573752524453, 42.622842295271468 ], [ 13.015329889827614, 42.631916161535301 ], [ 13.004317781651098, 42.615237367650955 ], [ 12.953388674077495, 42.619021280586111 ], [ 12.931535760230684, 42.603591925951825 ], [ 12.896340286536367, 42.616444035750412 ], [ 12.880089884947566, 42.602361789521886 ], [ 12.892729022539914, 42.563497445659642 ], [ 12.847831716929839, 42.552803148549408 ], [ 12.823016965798367, 42.537487077923757 ], [ 12.773202317644337, 42.531279914395533 ], [ 12.773542713309421, 42.513093990305528 ], [ 12.731537309034664, 42.50885750668111 ], [ 12.711133549815331, 42.500796903906114 ], [ 12.741568095117392, 42.470532509047949 ], [ 12.702785342659867, 42.460899122061797 ], [ 12.665982787549353, 42.440973358947438 ], [ 12.649855656287059, 42.443090953236819 ], [ 12.642693800303487, 42.464506052831879 ], [ 12.621374616963509, 42.468667316790956 ], [ 12.611962216367422, 42.436246623261539 ], [ 12.614891063683718, 42.414481756275805 ], [ 12.569990346498846, 42.382910275544901 ], [ 12.54893846608655, 42.38232862011472 ], [ 12.531231637708686, 42.365074276401081 ], [ 12.513271034315048, 42.378624695109885 ], [ 12.511129429006887, 42.403566741975922 ], [ 12.481361930332469, 42.404163922927708 ], [ 12.466712791879388, 42.419465501787407 ], [ 12.422269521962855, 42.421603933820791 ], [ 12.411381843078695, 42.446006775687508 ], [ 12.417899011365868, 42.458454637334462 ], [ 12.40352334299747, 42.49996109026506 ], [ 12.374173937561823, 42.481128252615896 ], [ 12.316442039191863, 42.488380024679998 ], [ 12.267169292630577, 42.532617674399198 ], [ 12.275043308590547, 42.559914794904557 ], [ 12.238720421699664, 42.572005785237558 ], [ 12.245948987694959, 42.599948884482593 ], [ 12.229194591134986, 42.610401984449375 ], [ 12.243340641492326, 42.628091062814853 ], [ 12.197280568141618, 42.66384549189879 ], [ 12.16101159955824, 42.676909990906495 ], [ 12.140774611037447, 42.656300823454188 ], [ 12.119543863273396, 42.649823514219221 ], [ 12.073715387792065, 42.656670308861656 ], [ 12.024711325237149, 42.651486672789197 ], [ 11.97797968717965, 42.675525143512083 ], [ 11.941329826271726, 42.683300890387194 ], [ 11.926292757558661, 42.70474094517725 ], [ 11.949145956380136, 42.727403910843449 ], [ 11.968726058972106, 42.734578430361644 ], [ 11.97948183640772, 42.764585315682403 ], [ 11.931307756390986, 42.778440340033235 ], [ 11.9049256096552, 42.827894644781637 ], [ 11.894963940648154, 42.834668794073558 ], [ 11.929018727873537, 42.869290194570581 ], [ 11.95865704951477, 42.871057606049234 ], [ 11.958812280991564, 42.891646493502201 ], [ 11.932721565093408, 42.908497908904948 ], [ 11.948552285393299, 42.961964282552294 ], [ 11.971935909575629, 43.022299480049107 ], [ 11.980820454949008, 43.056369361589894 ], [ 11.956587920973996, 43.068676848299738 ], [ 11.936380167345131, 43.05563026321385 ], [ 11.923748981642674, 43.075216034579967 ], [ 11.930407872461666, 43.094296131577003 ], [ 11.920937233202343, 43.117586867694072 ], [ 11.924029185723887, 43.147778351398962 ], [ 11.987476471753645, 43.180519047881212 ], [ 12.027489928451001, 43.19161710352121 ], [ 12.04889637624834, 43.253107259048463 ], [ 12.085921455264767, 43.236334317847799 ], [ 12.121823857012492, 43.255194558160653 ], [ 12.148583105463311, 43.25461712363942 ], [ 12.166431131296299, 43.268724009663877 ], [ 12.210062888370022, 43.282727299189425 ], [ 12.223707911309594, 43.296262861883832 ], [ 12.193818427023867, 43.313071520470551 ], [ 12.178171933082247, 43.283078530610709 ], [ 12.132523236121528, 43.293069704763937 ], [ 12.135456822352674, 43.341703744476646 ], [ 12.118769196017796, 43.364358717264508 ], [ 12.0730261238472, 43.370413952571923 ], [ 12.077832704202351, 43.398686630398963 ], [ 12.032936004757882, 43.400224918132338 ], [ 12.025210456317867, 43.415573891329821 ], [ 12.056878656138249, 43.43825456989736 ], [ 12.080291716830777, 43.433845453583565 ], [ 12.104025518177544, 43.460449493686149 ], [ 12.141232493176382, 43.468928758500091 ], [ 12.130960584789749, 43.482638199457249 ], [ 12.095094816253868, 43.499164729110468 ], [ 12.102727692492511, 43.529932862855986 ], [ 12.1420987596074, 43.535767858757197 ], [ 12.162662184634627, 43.561366653013451 ], [ 12.213834576267299, 43.61088376589796 ], [ 12.217786380802849, 43.604323121809841 ], [ 12.218159327299237, 43.603497960259112 ], [ 12.225280421846268, 43.593915565530374 ], [ 12.263183396169937, 43.589072032206587 ], [ 12.351156356678519, 43.611476044063558 ], [ 12.373496499035324, 43.584287738557151 ], [ 12.344949885177261, 43.553627442519236 ], [ 12.31290682962284, 43.543096871186982 ], [ 12.333181381108808, 43.523578304491927 ], [ 12.366736516080339, 43.534085932253056 ], [ 12.399043882069481, 43.513218797495249 ], [ 12.417935631818168, 43.534894000786394 ], [ 12.433186279253926, 43.538406998059394 ], [ 12.457387863637186, 43.517307933907453 ], [ 12.480534309027922, 43.527453820583894 ], [ 12.49981472840371, 43.521458051934118 ], [ 12.56425968478989, 43.459799784697672 ], [ 12.604760711837301, 43.437982931144361 ], [ 12.62515821359421, 43.420658567814272 ], [ 12.66317659085316, 43.43683082384991 ], [ 12.709384576537682, 43.425115966803361 ], [ 12.715265434552691, 43.446085501981578 ], [ 12.735763292396454, 43.463753373193889 ], [ 12.767446108847878, 43.459847887521505 ], [ 12.765912305254945, 43.426038772824619 ], [ 12.774427487657977, 43.401966497068408 ], [ 12.746809419868166, 43.390452943940701 ], [ 12.749689714158825, 43.378058380156517 ], [ 12.791086899941561, 43.337301187764439 ], [ 12.802226056220443, 43.307567531768846 ], [ 12.789242008456791, 43.284482206696424 ], [ 12.824756867376795, 43.266567356241374 ], [ 12.836606568022578, 43.217532939478069 ], [ 12.862344919549191, 43.211252115588152 ], [ 12.868244076689649, 43.195212528606049 ], [ 12.862490472547746, 43.165966038681233 ], [ 12.832360997938194, 43.147299177125888 ], [ 12.843003102618345, 43.12234421735328 ], [ 12.875466379546546, 43.123444504315579 ], [ 12.897327701037113, 43.09348462558588 ], [ 12.889934815853701, 43.058884079266129 ], [ 12.906705859589829, 43.035395397263976 ], [ 12.888007381548421, 43.009515662968809 ], [ 12.908166392222691, 42.984870486793781 ], [ 12.895822077078666, 42.964592022053552 ], [ 12.976787230481836, 42.925680045230955 ], [ 12.968393686547856, 42.900677357671562 ], [ 12.976152797799937, 42.869804191194859 ], [ 12.990237852892305, 42.871119626373641 ], [ 13.002523591790149, 42.895566931650528 ], [ 13.037783946901206, 42.907543886926589 ], [ 13.052779583571294, 42.919795984326626 ], [ 13.080726005213807, 42.899528199248792 ], [ 13.112247784161525, 42.889333511514792 ], [ 13.154557655927601, 42.834622019074921 ], [ 13.187557255135516, 42.834477293749117 ], [ 13.230901403504342, 42.854000781086668 ], [ 13.247943837114077, 42.849474969304353 ], [ 13.264029091353761, 42.808243691532653 ], [ 13.245124119367892, 42.772627564469211 ], [ 13.216506774642644, 42.771476382264211 ], [ 13.194196609710362, 42.758495152417026 ], [ 13.189215833537546, 42.733577628927513 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/japan.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/japan.geojson new file mode 100644 index 000000000000..6e5fce873f29 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/japan.geojson @@ -0,0 +1,53 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "JP-46", "NAME_1": "Kagoshima" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.783213738000086, 31.799627997000073 ], [ 129.799571160000028, 31.745428778000075 ], [ 129.729340040000011, 31.644232489000046 ], [ 129.695977406, 31.621447336000074 ], [ 129.659373675000097, 31.64193470500004 ], [ 129.783213738000086, 31.799627997000073 ] ] ], [ [ [ 131.150645379000025, 31.47134023600006 ], [ 131.056895379000025, 31.439642645000049 ], [ 131.013610736000032, 31.363069850000045 ], [ 131.104014519000089, 31.32884349200009 ], [ 131.074216905000071, 31.282104405000041 ], [ 131.132113944000025, 31.279513102000067 ], [ 131.008159402000047, 31.22108228400009 ], [ 130.94068444100003, 31.121323960000041 ], [ 130.657722026000101, 31.00319120000006 ], [ 130.663339410000049, 31.069506364000063 ], [ 130.742686394000089, 31.121283270000049 ], [ 130.795251606000079, 31.344425107000063 ], [ 130.703417386000069, 31.459304551000059 ], [ 130.695567254000025, 31.545803127000056 ], [ 130.590888846000098, 31.585987911000075 ], [ 130.687836134, 31.61945221600007 ], [ 130.749034050000091, 31.559719143000052 ], [ 130.810313347000033, 31.650946356000077 ], [ 130.776377800000091, 31.710272528000075 ], [ 130.686045769000089, 31.725531317000048 ], [ 130.613047722000033, 31.68235911700009 ], [ 130.516123894000089, 31.453314520000049 ], [ 130.57349694100003, 31.314601955000057 ], [ 130.660329623000052, 31.271429755000042 ], [ 130.639821811000047, 31.186468817000048 ], [ 130.53679446700005, 31.162176825000074 ], [ 130.451144476000081, 31.249388072000045 ], [ 130.2222047140001, 31.246299862000058 ], [ 130.179381995000085, 31.327781069000082 ], [ 130.207774285000028, 31.336615302000041 ], [ 130.118988477000016, 31.408636786000045 ], [ 130.162364129000025, 31.421942450000074 ], [ 130.228282097000033, 31.381293036000045 ], [ 130.317067905000044, 31.493068752000056 ], [ 130.337657097000033, 31.607896226000037 ], [ 130.171430627000063, 31.790136657000062 ], [ 130.190318738000087, 31.835088246000055 ], [ 130.235118035000028, 31.819525458000044 ], [ 130.197003742000106, 31.858485428000051 ], [ 130.220437744000037, 31.929594515000076 ], [ 130.174106087000041, 31.998755987000038 ], [ 130.204048122000017, 32.048285308000061 ], [ 130.179860873000052, 32.093451239000046 ], [ 130.248301629000025, 32.133734442000048 ], [ 130.29851321700005, 32.105861721000053 ], [ 130.344643105894534, 32.161784580893652 ], [ 130.424370151960943, 32.113414822536015 ], [ 130.610870395951906, 32.15702973123706 ], [ 130.712362908821092, 32.090909736195329 ], [ 130.700115594958675, 32.067035224296148 ], [ 130.783883090831978, 31.954845689377066 ], [ 130.873438349100525, 31.887562975251114 ], [ 130.889096306749138, 31.790230414102325 ], [ 130.965474074269082, 31.760671495293252 ], [ 131.047226190336346, 31.637268175286067 ], [ 131.1862357929474, 31.586831977213933 ], [ 131.150645379000025, 31.47134023600006 ] ] ], [ [ [ 129.714854363000086, 29.654527085000041 ], [ 129.753754102000016, 29.645412502000056 ], [ 129.721039259, 29.606146552000041 ], [ 129.712901238000086, 29.629299221000053 ], [ 129.714854363000086, 29.654527085000041 ] ] ], [ [ [ 129.893565300000091, 29.874741929000038 ], [ 129.927256707000083, 29.825873114000046 ], [ 129.920420769000089, 29.819647528000075 ], [ 129.86340189200007, 29.82460653000004 ], [ 129.832772265000017, 29.873077651000074 ], [ 129.893565300000091, 29.874741929000038 ] ] ], [ [ [ 130.674571160000028, 30.374579169000071 ], [ 130.603751051000017, 30.252468518000057 ], [ 130.485977453000032, 30.225777010000058 ], [ 130.437713208000105, 30.238970153000082 ], [ 130.376246508, 30.394435997000073 ], [ 130.423361028000045, 30.398968251000042 ], [ 130.498950736000097, 30.467962261000082 ], [ 130.674571160000028, 30.374579169000071 ] ] ], [ [ [ 131.05201256600003, 30.840236721000053 ], [ 131.087933572, 30.782606299000065 ], [ 131.057615143000021, 30.611269028000038 ], [ 130.982638859000076, 30.519305321000047 ], [ 130.962177175000079, 30.372808183000075 ], [ 130.870381079000026, 30.343904295000073 ], [ 130.851495082000042, 30.470143740000083 ], [ 130.930221199000016, 30.540859645000069 ], [ 130.939299697000024, 30.672251498000037 ], [ 131.05201256600003, 30.840236721000053 ] ] ], [ [ [ 130.220062696000014, 30.471584377000056 ], [ 130.26215684400006, 30.435023779000062 ], [ 130.212467642000092, 30.420690741000044 ], [ 130.141766046000043, 30.489301081000065 ], [ 130.220062696000014, 30.471584377000056 ] ] ], [ [ [ 129.591563347000033, 29.450100002000056 ], [ 129.591319207000083, 29.467962958000044 ], [ 129.608083530000044, 29.469224351000037 ], [ 129.612315300000091, 29.443345445000091 ], [ 129.591563347000033, 29.450100002000056 ] ] ], [ [ [ 129.527679884, 29.902329820000034 ], [ 129.535411004000025, 29.909857489000046 ], [ 129.554453972000033, 29.897528387000079 ], [ 129.539886915000011, 29.889878648000035 ], [ 129.527679884, 29.902329820000034 ] ] ], [ [ [ 129.943695509, 29.965277411000045 ], [ 129.900645379000025, 29.972560940000051 ], [ 129.909027540000011, 29.999335028000075 ], [ 129.921989545000088, 30.00472988100006 ], [ 129.943695509, 29.965277411000045 ] ] ], [ [ [ 129.428233269000089, 30.84642161700009 ], [ 129.43091881600003, 30.848211981000077 ], [ 129.433848504000025, 30.844549872000073 ], [ 129.429453972000033, 30.840887762000079 ], [ 129.428233269000089, 30.84642161700009 ] ] ], [ [ [ 129.946299675000091, 30.844712632000039 ], [ 129.939463738000086, 30.813421942000048 ], [ 129.90398196700005, 30.834418036000045 ], [ 129.932139519000089, 30.851752020000049 ], [ 129.946299675000091, 30.844712632000039 ] ] ], [ [ [ 129.933360222000033, 31.86782461100006 ], [ 129.929209832000083, 31.826727606000077 ], [ 129.88990319100003, 31.810736395000049 ], [ 129.850433790000011, 31.857407945000034 ], [ 129.820567254000025, 31.845526434000078 ], [ 129.84498131600003, 31.880601304000038 ], [ 129.909922722000033, 31.845689195000034 ], [ 129.933360222000033, 31.86782461100006 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-44", "NAME_1": "Ōita" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.200892146387815, 33.612709765904661 ], [ 131.367620482, 33.57480177900004 ], [ 131.417703108000069, 33.581681679000042 ], [ 131.521045117000085, 33.676370792000057 ], [ 131.667366274000074, 33.667192003000082 ], [ 131.729537981000021, 33.580236163000052 ], [ 131.73729484099999, 33.484607799000059 ], [ 131.706243498000049, 33.409582667000052 ], [ 131.64031009200005, 33.416571356000077 ], [ 131.596234455000058, 33.349400219000074 ], [ 131.506028546000039, 33.363073839000037 ], [ 131.51037964, 33.273403693000034 ], [ 131.822174097000016, 33.24403243800009 ], [ 131.90262453299999, 33.266041833000088 ], [ 131.809573689000104, 33.127648887000078 ], [ 131.911457216000031, 33.124815134000073 ], [ 131.868937761000097, 33.094340211000087 ], [ 131.880510747000017, 33.075040430000058 ], [ 131.942383545000098, 33.09255668600008 ], [ 131.976084832000083, 33.060248114000046 ], [ 131.996112915000026, 33.09171124900007 ], [ 132.013438347000033, 33.063869533000059 ], [ 131.929550264, 33.047089602000085 ], [ 131.903168165000011, 32.98305898600006 ], [ 131.959239129000025, 32.944525458000044 ], [ 132.081188909000048, 32.943229703000043 ], [ 131.982188347000033, 32.888902085000041 ], [ 132.000173373000052, 32.871283270000049 ], [ 131.955577019000089, 32.827541408000059 ], [ 131.996592644000089, 32.810532945000034 ], [ 131.88249759200005, 32.783433335000041 ], [ 131.87232506600003, 32.731634833000044 ], [ 131.839219191812163, 32.73410045057534 ], [ 131.809246860953863, 32.808979601327508 ], [ 131.746873407381827, 32.823035590320217 ], [ 131.695662062953829, 32.765829779720548 ], [ 131.526886835059372, 32.742988797495002 ], [ 131.478310988061594, 32.81499990502158 ], [ 131.356612990397139, 32.804638779755862 ], [ 131.262148471574619, 32.866288763815362 ], [ 131.209076776072266, 33.030206407099968 ], [ 131.059421828254699, 33.180610662851791 ], [ 130.972915481264408, 33.15420400630984 ], [ 131.009657423751037, 33.079531562031946 ], [ 130.990898878880103, 33.033100286948638 ], [ 130.834732700953282, 33.08092682511284 ], [ 130.856023391366421, 33.142990221221737 ], [ 130.826257766083017, 33.232984728162648 ], [ 130.83710981686454, 33.33974823679165 ], [ 130.885840691694511, 33.425401923060292 ], [ 130.980666945722874, 33.495785224408564 ], [ 131.149493849561509, 33.495656033199339 ], [ 131.200892146387815, 33.612709765904661 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-40", "NAME_1": "Fukuoka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.036274928086698, 33.45759283362726 ], [ 130.055294383000046, 33.495225676000075 ], [ 130.167979363000086, 33.534084377000056 ], [ 130.09302819100003, 33.573431708000044 ], [ 130.208011242, 33.665076437000039 ], [ 130.29029381600003, 33.574204820000034 ], [ 130.390865624000071, 33.604874022000047 ], [ 130.398692254000025, 33.669134833000044 ], [ 130.348971888000051, 33.641130205000081 ], [ 130.294900039000026, 33.664350875000082 ], [ 130.29428057699999, 33.689239407000059 ], [ 130.324122259000092, 33.664887418000035 ], [ 130.386485222000033, 33.677232164000088 ], [ 130.467673844000046, 33.743563601000062 ], [ 130.449554884, 33.802232164000088 ], [ 130.488942905000044, 33.855373440000051 ], [ 130.633067254000025, 33.882473049000055 ], [ 130.692393425000091, 33.937323309000078 ], [ 130.828227904000073, 33.939585138000041 ], [ 130.896983269000089, 33.88930898600006 ], [ 131.007147594, 33.966054932000077 ], [ 130.961680535000028, 33.816229559000078 ], [ 131.006944709000095, 33.813087590000066 ], [ 131.009776238000086, 33.746161200000074 ], [ 131.08130944100003, 33.634955145000049 ], [ 131.200892146387815, 33.612709765904661 ], [ 131.149493849561509, 33.495656033199339 ], [ 130.980666945722874, 33.495785224408564 ], [ 130.885840691694511, 33.425401923060292 ], [ 130.83710981686454, 33.33974823679165 ], [ 130.826257766083017, 33.232984728162648 ], [ 130.856023391366421, 33.142990221221737 ], [ 130.834732700953282, 33.08092682511284 ], [ 130.68518110592322, 33.140044664529626 ], [ 130.563689812934513, 33.091675523106858 ], [ 130.508241002420277, 33.049455878386084 ], [ 130.498215773938796, 33.000234076241611 ], [ 130.429158388540742, 32.980522542911146 ], [ 130.420664910000028, 33.087591864000046 ], [ 130.349360618293332, 33.142044552577367 ], [ 130.346752150990937, 33.179913031760975 ], [ 130.381220331253189, 33.236447047892909 ], [ 130.531908806945808, 33.337887884818031 ], [ 130.526637811185992, 33.414239813916254 ], [ 130.41429324843466, 33.386541246181537 ], [ 130.258953891908504, 33.467983302987022 ], [ 130.036274928086698, 33.45759283362726 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-41", "NAME_1": "Saga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.814544364630706, 33.331246004799254 ], [ 129.851573113000086, 33.28001536700009 ], [ 129.868662957000083, 33.397447007000039 ], [ 129.787257223000097, 33.454519039000047 ], [ 129.818440047000081, 33.484211776000052 ], [ 129.871348504000025, 33.442938544000071 ], [ 129.836834739000096, 33.513254121000045 ], [ 129.853187156000104, 33.552501711000048 ], [ 129.942149285000028, 33.531683661000045 ], [ 129.941208901000095, 33.479536587000041 ], [ 129.9889460280001, 33.448851378000086 ], [ 130.258953891908504, 33.467983302987022 ], [ 130.41429324843466, 33.386541246181537 ], [ 130.519299757877434, 33.420854396812956 ], [ 130.536404657249136, 33.37698110569346 ], [ 130.453360629988993, 33.264714057307856 ], [ 130.381220331253189, 33.236447047892909 ], [ 130.349360618293332, 33.142044552577367 ], [ 130.24139647700008, 33.188234066000064 ], [ 130.127564872000107, 33.120936620000066 ], [ 130.222310199000049, 32.975205048000078 ], [ 130.204101279278376, 32.94357262895047 ], [ 130.059534539587276, 32.973233141396349 ], [ 129.925175816011006, 33.068782864037928 ], [ 129.930136753408419, 33.132086492697454 ], [ 129.815001661797169, 33.185959173876768 ], [ 129.759449497596165, 33.268202216359157 ], [ 129.814544364630706, 33.331246004799254 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-42", "NAME_1": "Nagasaki" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.204101279278376, 32.94357262895047 ], [ 130.105316602000016, 32.875921942000048 ], [ 130.153634952000061, 32.842457332000038 ], [ 130.243587902000058, 32.875284097000076 ], [ 130.339419787, 32.856579311000075 ], [ 130.375782094000101, 32.747884438000085 ], [ 130.341703709000058, 32.667257674000041 ], [ 130.165986973000031, 32.592955657000061 ], [ 130.12813256000004, 32.683870546000037 ], [ 130.207585429, 32.752162345000045 ], [ 130.17842736700004, 32.792921787000068 ], [ 130.093789355000013, 32.794860309000057 ], [ 129.9908080350001, 32.746916780000049 ], [ 129.958508413, 32.764782273000037 ], [ 129.894929384000079, 32.662689399000044 ], [ 129.74035124, 32.568442387000061 ], [ 129.814495961000034, 32.662551104000045 ], [ 129.796922555000037, 32.69224452900005 ], [ 129.85906009200005, 32.724514065000051 ], [ 129.823795170000039, 32.721984624000072 ], [ 129.771006707000083, 32.813950914000088 ], [ 129.73271004500009, 32.805570175000071 ], [ 129.638430137, 32.926546363000057 ], [ 129.681612229000052, 33.094092267000065 ], [ 129.759665339000094, 33.047889438000084 ], [ 129.74166376900007, 32.99103548100004 ], [ 129.766328098000031, 33.017953982000051 ], [ 129.823276995000015, 32.979537528000037 ], [ 129.806676955000057, 32.914696547000062 ], [ 129.786944806000065, 32.947804871000073 ], [ 129.794399834000046, 32.874920702000054 ], [ 129.845439553, 32.838308484000038 ], [ 129.883205584000052, 32.875692707000042 ], [ 130.003147542000079, 32.845378716000084 ], [ 129.931224421000024, 32.928894270000058 ], [ 129.945622642000103, 33.015757714000074 ], [ 129.881443666, 33.062762999000086 ], [ 129.823859385000105, 33.043118812000046 ], [ 129.797515059000034, 33.07730904400006 ], [ 129.746479535000049, 33.065590119000035 ], [ 129.758676612000045, 33.138941491000082 ], [ 129.728526238000086, 33.122300523000035 ], [ 129.70976418500004, 33.162570344000073 ], [ 129.704112175000091, 33.111802476000037 ], [ 129.666514519000089, 33.101263739000046 ], [ 129.687022332000083, 33.142238674000055 ], [ 129.652679884, 33.190252997000073 ], [ 129.552144346000091, 33.225838734000035 ], [ 129.591498490000049, 33.283410159000084 ], [ 129.580412760000058, 33.371007269000074 ], [ 129.644379102000016, 33.362372137000079 ], [ 129.673184681000066, 33.398539117000041 ], [ 129.701007885000081, 33.353006931000039 ], [ 129.807465040000011, 33.348130601000037 ], [ 129.759449497596165, 33.268202216359157 ], [ 129.815001661797169, 33.185959173876768 ], [ 129.930136753408419, 33.132086492697454 ], [ 129.925175816011006, 33.068782864037928 ], [ 130.059534539587276, 32.973233141396349 ], [ 130.204101279278376, 32.94357262895047 ] ] ], [ [ [ 128.878426932000025, 32.673924825000086 ], [ 128.899261915000011, 32.642523505000042 ], [ 128.779633009, 32.64679596600007 ], [ 128.773110265000014, 32.571665843000062 ], [ 128.736041819000093, 32.603493841000045 ], [ 128.600438893000046, 32.614177909000034 ], [ 128.652679884, 32.667914130000042 ], [ 128.660817905000044, 32.782782294000071 ], [ 128.699652891000028, 32.743771302000084 ], [ 128.808490389000099, 32.799908412000036 ], [ 128.878426932000025, 32.673924825000086 ] ] ], [ [ [ 129.097992384, 32.988267320000034 ], [ 129.169628216000092, 33.005816536000054 ], [ 129.182807278000041, 32.984685539000054 ], [ 129.100352410000028, 32.919012762000079 ], [ 129.096572252000101, 32.856942376000063 ], [ 129.045722828000066, 32.822092732000044 ], [ 129.047819517000107, 32.909964614000046 ], [ 128.981460312000081, 32.960351967000065 ], [ 129.054453972000033, 32.979315497000073 ], [ 129.048622194000018, 33.039602796000054 ], [ 129.083994988000086, 33.023382880000042 ], [ 129.108180298000093, 33.166688089000047 ], [ 129.097992384, 32.988267320000034 ] ] ], [ [ [ 129.555684200000087, 33.410804911000071 ], [ 129.562163301000055, 33.366393867000056 ], [ 129.493095126000071, 33.245163286000036 ], [ 129.412590953000063, 33.17831786000005 ], [ 129.342500664, 33.179620180000086 ], [ 129.3498690240001, 33.213467515000048 ], [ 129.406504754000025, 33.194037177000041 ], [ 129.377656884000089, 33.214639528000077 ], [ 129.416769161000047, 33.236929605000057 ], [ 129.44266269100001, 33.348066089000042 ], [ 129.522916224000028, 33.368377118000069 ], [ 129.525320807000071, 33.404927250000071 ], [ 129.555684200000087, 33.410804911000071 ] ] ], [ [ [ 129.776377800000091, 33.773423570000034 ], [ 129.799652540000011, 33.751044012000079 ], [ 129.73506403500005, 33.736738564000063 ], [ 129.721039259, 33.697739976000037 ], [ 129.657126909, 33.74255478300006 ], [ 129.646658083000034, 33.772772906000057 ], [ 129.687022332000083, 33.759182033000059 ], [ 129.6569338810001, 33.815453689000037 ], [ 129.688647503000084, 33.871145815000034 ], [ 129.76726321700005, 33.844549872000073 ], [ 129.796885613000086, 33.786444403000075 ], [ 129.776377800000091, 33.773423570000034 ] ] ], [ [ [ 129.312528389000022, 34.27975637600008 ], [ 129.347102762000077, 34.286977747000037 ], [ 129.276587440000071, 34.129111206000061 ], [ 129.220421471, 34.088877923000041 ], [ 129.171634259000029, 34.106806812000059 ], [ 129.207360827, 34.329277274000049 ], [ 129.224052602000029, 34.29344308800006 ], [ 129.280196987000068, 34.322871728000052 ], [ 129.312528389000022, 34.27975637600008 ] ] ], [ [ [ 129.452647332000083, 34.61945221600007 ], [ 129.47820071700005, 34.59711334800005 ], [ 129.46424106500001, 34.554273963000071 ], [ 129.361830867000094, 34.405485748000046 ], [ 129.393181010000035, 34.410800218000077 ], [ 129.400755935, 34.337924254000086 ], [ 129.343833222000058, 34.300314315000037 ], [ 129.305463995000082, 34.32487545400005 ], [ 129.345063695000022, 34.32724397800007 ], [ 129.347002708000105, 34.355851989000087 ], [ 129.305103747000089, 34.343206092000059 ], [ 129.309322243, 34.384401910000065 ], [ 129.286358737, 34.344008264000081 ], [ 129.228913023000018, 34.355601426000078 ], [ 129.272349114, 34.375696607000066 ], [ 129.268568625000057, 34.433051288000058 ], [ 129.310867452000025, 34.460511068000073 ], [ 129.276044124, 34.462188494000088 ], [ 129.326119190000099, 34.535438770000042 ], [ 129.289106914000058, 34.569866748000038 ], [ 129.323300096000025, 34.648072157000058 ], [ 129.378337434000059, 34.644851764000066 ], [ 129.464560585000072, 34.700805306000063 ], [ 129.488277715000095, 34.635677671000053 ], [ 129.452647332000083, 34.61945221600007 ] ] ], [ [ [ 128.899750196000014, 32.818304755000042 ], [ 128.882334832000083, 32.765285549000055 ], [ 128.840098504000025, 32.777573960000041 ], [ 128.837250196000014, 32.833807684000078 ], [ 128.873871290000011, 32.798732815000051 ], [ 128.86296634200005, 32.835272528000075 ], [ 128.899750196000014, 32.818304755000042 ] ] ], [ [ [ 128.953135613000086, 32.874212958000044 ], [ 128.945078972000033, 32.804348049000055 ], [ 128.880707227000016, 32.862616278000075 ], [ 128.929453972000033, 32.849798895000049 ], [ 128.953135613000086, 32.874212958000044 ] ] ], [ [ [ 129.027842644000089, 32.899807033000059 ], [ 129.024099155000044, 32.848049221000053 ], [ 128.96802819100003, 32.87368398600006 ], [ 128.964610222000033, 32.898260809000078 ], [ 128.995616082000083, 32.890529690000051 ], [ 128.984629754000025, 32.929185289000088 ], [ 129.027842644000089, 32.899807033000059 ] ] ], [ [ [ 129.135508660000028, 33.299872137000079 ], [ 129.127289259, 33.24750397300005 ], [ 129.075043165000011, 33.259914455000057 ], [ 129.08912194100003, 33.283270575000074 ], [ 129.135508660000028, 33.299872137000079 ] ] ], [ [ [ 129.55591881600003, 33.493963934000078 ], [ 129.576426629000025, 33.488348700000074 ], [ 129.50318444100003, 33.473700262000079 ], [ 129.541758660000028, 33.507310289000088 ], [ 129.55591881600003, 33.493963934000078 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-43", "NAME_1": "Kumamoto" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.344643105894534, 32.161784580893652 ], [ 130.469574415000011, 32.34711334800005 ], [ 130.512461785000028, 32.33820221600007 ], [ 130.510020379000025, 32.378485419000071 ], [ 130.571299675000091, 32.45189036700009 ], [ 130.55046634200005, 32.491685289000088 ], [ 130.598806186000047, 32.505357164000088 ], [ 130.564707879000025, 32.54633209800005 ], [ 130.668304884, 32.64874909100007 ], [ 130.448008660000028, 32.62140534100007 ], [ 130.625987175000091, 32.711411851000037 ], [ 130.594493035000028, 32.737982489000046 ], [ 130.59302819100003, 32.81586334800005 ], [ 130.441254102000016, 32.923651434000078 ], [ 130.429158388540742, 32.980522542911146 ], [ 130.498215773938796, 33.000234076241611 ], [ 130.508241002420277, 33.049455878386084 ], [ 130.563689812934513, 33.091675523106858 ], [ 130.68518110592322, 33.140044664529626 ], [ 130.976946241775636, 33.028862819963138 ], [ 131.009657423751037, 33.079531562031946 ], [ 130.977566360299193, 33.1607152373183 ], [ 131.059421828254699, 33.180610662851791 ], [ 131.124947544093857, 33.142447617963171 ], [ 131.209076776072266, 33.030206407099968 ], [ 131.262148471574619, 32.866288763815362 ], [ 131.323901809321001, 32.822286282386017 ], [ 131.242253046041242, 32.793269965036814 ], [ 131.00412804557277, 32.487423000870763 ], [ 131.013068069335873, 32.422284857759962 ], [ 131.087843866401272, 32.313660997157285 ], [ 131.050326775760027, 32.246197414978724 ], [ 131.075906610001994, 32.155634467256846 ], [ 131.005626662340546, 32.165788886048233 ], [ 130.93689700739094, 32.114965115247855 ], [ 130.712362908821092, 32.090909736195329 ], [ 130.589786412013268, 32.163463446980472 ], [ 130.424370151960943, 32.113414822536015 ], [ 130.344643105894534, 32.161784580893652 ] ] ], [ [ [ 130.153086785000028, 32.20376211100006 ], [ 130.194102410000028, 32.17641836100006 ], [ 130.149261915000011, 32.110500393000052 ], [ 130.111094597000033, 32.193304755000042 ], [ 130.153086785000028, 32.20376211100006 ] ] ], [ [ [ 130.410004102000016, 32.511623440000051 ], [ 130.468516472000033, 32.511623440000051 ], [ 130.362315300000091, 32.374986070000034 ], [ 130.353851759, 32.42413971600007 ], [ 130.241953972000033, 32.395493882000039 ], [ 130.213063998000052, 32.436509507000039 ], [ 130.363047722000033, 32.527085679000038 ], [ 130.410004102000016, 32.511623440000051 ] ] ], [ [ [ 130.160492384, 32.54633209800005 ], [ 130.198985222000033, 32.480169989000046 ], [ 130.203379754000025, 32.338853257000039 ], [ 130.074961785000028, 32.220770575000074 ], [ 129.995453321000014, 32.190659898000035 ], [ 130.009125196000014, 32.252142645000049 ], [ 129.961273634, 32.252142645000049 ], [ 130.064300977000016, 32.306789455000057 ], [ 129.97974694100003, 32.332993882000039 ], [ 130.030284050000091, 32.482407945000034 ], [ 130.002940300000091, 32.533351955000057 ], [ 130.160492384, 32.54633209800005 ] ] ], [ [ [ 130.243907097000033, 32.301825262000079 ], [ 130.263031446000014, 32.281317450000074 ], [ 130.210703972000033, 32.255357164000088 ], [ 130.217051629000025, 32.286932684000078 ], [ 130.243907097000033, 32.301825262000079 ] ] ], [ [ [ 130.446787957000083, 32.596828518000052 ], [ 130.450938347000033, 32.563421942000048 ], [ 130.427582227000016, 32.537298895000049 ], [ 130.398773634, 32.593166408000059 ], [ 130.436534050000091, 32.620672919000071 ], [ 130.446787957000083, 32.596828518000052 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-45", "NAME_1": "Miyazaki" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 131.87232506600003, 32.731634833000044 ], [ 131.682139519000089, 32.535060940000051 ], [ 131.736501498000052, 32.491685289000088 ], [ 131.659790276000081, 32.476819574000046 ], [ 131.68913158600003, 32.421737335000046 ], [ 131.633474155000044, 32.395493882000039 ], [ 131.562416900000017, 32.217916371000058 ], [ 131.447276238000086, 31.876898505000042 ], [ 131.455903478000096, 31.821973977000084 ], [ 131.496348504000025, 31.795965887000079 ], [ 131.455332879000025, 31.620917059000078 ], [ 131.390798373000052, 31.548814195000034 ], [ 131.363780144000089, 31.419663804000038 ], [ 131.33130944100003, 31.367661851000037 ], [ 131.249847852000016, 31.38812897300005 ], [ 131.212657097000033, 31.454738674000055 ], [ 131.150645379000025, 31.47134023600006 ], [ 131.1862357929474, 31.586831977213933 ], [ 131.047226190336346, 31.637268175286067 ], [ 130.965474074269082, 31.760671495293252 ], [ 130.889096306749138, 31.790230414102325 ], [ 130.873438349100525, 31.887562975251114 ], [ 130.700115594958675, 32.067035224296148 ], [ 130.712362908821092, 32.090909736195329 ], [ 130.93689700739094, 32.114965115247855 ], [ 131.005626662340546, 32.165788886048233 ], [ 131.075906610001994, 32.155634467256846 ], [ 131.050326775760027, 32.246197414978724 ], [ 131.087843866401272, 32.313660997157285 ], [ 131.013068069335873, 32.422284857759962 ], [ 131.00412804557277, 32.487423000870763 ], [ 131.258066034220064, 32.803811957455878 ], [ 131.478310988061594, 32.81499990502158 ], [ 131.539702589702756, 32.743040473439066 ], [ 131.695662062953829, 32.765829779720548 ], [ 131.761187778792873, 32.822182928699192 ], [ 131.809246860953863, 32.808979601327508 ], [ 131.839219191812163, 32.73410045057534 ], [ 131.87232506600003, 32.731634833000044 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-36", "NAME_1": "Tokushima" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.442445673430115, 34.20826688237468 ], [ 134.646871456000099, 34.239252459000056 ], [ 134.607758009, 34.18431224200009 ], [ 134.642088745000024, 34.179263295000055 ], [ 134.599782748000052, 34.009466864000046 ], [ 134.637016, 34.01066622400009 ], [ 134.702570540000011, 33.937266741000087 ], [ 134.646250847000033, 33.853094794000071 ], [ 134.75123131600003, 33.834906317000048 ], [ 134.404022398000052, 33.654477560000089 ], [ 134.295664797033169, 33.530322987932436 ], [ 134.190083449091844, 33.551518255762858 ], [ 134.158715855152536, 33.65624054616427 ], [ 134.060168898975462, 33.67933991080821 ], [ 134.017535842205348, 33.810778917013408 ], [ 133.906379836060523, 33.784966538774711 ], [ 133.647894322065213, 33.855659898485499 ], [ 133.660606723921092, 33.997873440207059 ], [ 133.828245071153106, 34.092880561388768 ], [ 133.983997837030529, 34.074406236458628 ], [ 134.172100050576773, 34.157656969293669 ], [ 134.408261347183384, 34.157036852568694 ], [ 134.442445673430115, 34.20826688237468 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-37", "NAME_1": "Kagawa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.591883921576027, 34.023809221024592 ], [ 133.641286655000044, 34.079169012000079 ], [ 133.646006707000083, 34.167385158000059 ], [ 133.558360222000033, 34.259466864000046 ], [ 133.701426629000025, 34.231268622000073 ], [ 133.937022332000083, 34.375067450000074 ], [ 134.08130944100003, 34.347723700000074 ], [ 134.143565300000091, 34.391791083000044 ], [ 134.166270379000025, 34.32485586100006 ], [ 134.216807488000086, 34.355047919000071 ], [ 134.271250847000033, 34.323065497000073 ], [ 134.257823113000086, 34.294175523000035 ], [ 134.442445673430115, 34.20826688237468 ], [ 134.395859002790644, 34.154194647764768 ], [ 134.172100050576773, 34.157656969293669 ], [ 133.983997837030529, 34.074406236458628 ], [ 133.828245071153106, 34.092880561388768 ], [ 133.660606723921092, 33.997873440207059 ], [ 133.591883921576027, 34.023809221024592 ] ] ], [ [ [ 134.367360873000052, 34.554266669000071 ], [ 134.34693444100003, 34.430812893000052 ], [ 134.30591881600003, 34.445013739000046 ], [ 134.320648634, 34.468939520000049 ], [ 134.244395379000025, 34.417710679000038 ], [ 134.243174675000091, 34.463853257000039 ], [ 134.16138756600003, 34.479193427000041 ], [ 134.17505944100003, 34.520086981000077 ], [ 134.367360873000052, 34.554266669000071 ] ] ], [ [ [ 133.715668165000011, 34.396144924000055 ], [ 133.72584069100003, 34.37140534100007 ], [ 133.703135613000086, 34.351752020000049 ], [ 133.691905144000089, 34.378404039000088 ], [ 133.715668165000011, 34.396144924000055 ] ] ], [ [ [ 134.049001498000052, 34.474351304000038 ], [ 134.072032097000033, 34.498480536000045 ], [ 134.104502800000091, 34.490261135000083 ], [ 134.083994988000086, 34.459824937000064 ], [ 134.049001498000052, 34.474351304000038 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-38", "NAME_1": "Ehime" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.63990319100003, 32.90892161700009 ], [ 132.558929884, 32.936753648000035 ], [ 132.504161004000025, 32.891669012000079 ], [ 132.472272326000052, 32.933672312000056 ], [ 132.501475457000083, 32.993231512000079 ], [ 132.471495412000081, 33.040685904000043 ], [ 132.419704131, 33.05192155800006 ], [ 132.382402156000012, 33.019779079000045 ], [ 132.407922397000107, 33.069329326000059 ], [ 132.451833530000044, 33.052883205000057 ], [ 132.483164910000028, 33.067694403000075 ], [ 132.449066602000016, 33.114894924000055 ], [ 132.490082227000016, 33.132757880000042 ], [ 132.44068444100003, 33.142279364000046 ], [ 132.458606517000021, 33.173705878000078 ], [ 132.39467584800002, 33.203894821000063 ], [ 132.459658865000051, 33.204012318000082 ], [ 132.485701764000055, 33.169153220000055 ], [ 132.54836358700004, 33.226902944000074 ], [ 132.541393707, 33.26255771700005 ], [ 132.484570570000074, 33.276525918000061 ], [ 132.525609768000095, 33.314664231000052 ], [ 132.378672722000033, 33.319484768000052 ], [ 132.415537957000083, 33.341457424000055 ], [ 132.391123894000089, 33.39789459800005 ], [ 132.42115319100003, 33.444484768000052 ], [ 132.307803890000059, 33.464289883000049 ], [ 132.130660483000042, 33.363566366000043 ], [ 132.110295567000094, 33.386727643000086 ], [ 132.010538920000045, 33.348988639000083 ], [ 132.171331261000091, 33.445634434000056 ], [ 132.412364129000025, 33.534979559000078 ], [ 132.500612341000078, 33.624998209000069 ], [ 132.676605665000011, 33.715643622000073 ], [ 132.712370372, 33.904548780000084 ], [ 132.754936877000091, 33.910320249000051 ], [ 132.769861567000021, 33.996270044000084 ], [ 132.919110430000046, 34.068406073000062 ], [ 132.926158290000103, 34.111668096000074 ], [ 132.897499941000092, 34.122714018000067 ], [ 132.942383612000071, 34.141262037000047 ], [ 133.127010888000086, 33.933290639000063 ], [ 133.322607543, 33.990552810000054 ], [ 133.51099694100003, 33.965236721000053 ], [ 133.591883921576027, 34.023809221024592 ], [ 133.646654086816625, 34.012136134774778 ], [ 133.668874953216459, 33.927800198120622 ], [ 133.647894322065213, 33.855659898485499 ], [ 133.178827345705372, 33.771556504928753 ], [ 133.002559034871524, 33.47529551877318 ], [ 132.809030795934405, 33.444005439199657 ], [ 132.815852086204814, 33.389047553301907 ], [ 132.88225630118734, 33.316312975363473 ], [ 132.784381137679361, 33.249702053007297 ], [ 132.685524123139771, 33.123637397148116 ], [ 132.618654820163783, 33.153377184009798 ], [ 132.675343865926607, 32.962794500865527 ], [ 132.63990319100003, 32.90892161700009 ] ] ], [ [ [ 132.999475487000041, 34.208377288000065 ], [ 132.954844597000033, 34.198187567000048 ], [ 132.990896030000044, 34.232123114000046 ], [ 132.969737175000091, 34.252630927000041 ], [ 133.030039910000028, 34.295314846000053 ], [ 133.051768425000091, 34.222316799000055 ], [ 132.999475487000041, 34.208377288000065 ] ] ], [ [ [ 132.641368035000028, 34.014064846000053 ], [ 132.63445071700005, 33.964829820000034 ], [ 132.58912194100003, 33.956447658000059 ], [ 132.596364780000044, 33.980943101000037 ], [ 132.641368035000028, 34.014064846000053 ] ] ], [ [ [ 133.093516472000033, 34.174302476000037 ], [ 133.045176629000025, 34.118394273000035 ], [ 133.017100457000083, 34.118841864000046 ], [ 133.033050977000016, 34.189398505000042 ], [ 133.093516472000033, 34.174302476000037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-39", "NAME_1": "Kōchi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.295664797033169, 33.530322987932436 ], [ 134.244633605000104, 33.460750226000073 ], [ 134.176527122000039, 33.236127821000082 ], [ 133.925205166000069, 33.493693261000089 ], [ 133.73939679, 33.537506879000034 ], [ 133.465909386000021, 33.454324098000086 ], [ 133.439707879000025, 33.401678778000075 ], [ 133.269379102000016, 33.346869208000044 ], [ 133.269379102000016, 33.252346096000053 ], [ 133.21533962500007, 33.187503519000074 ], [ 133.225433790000011, 33.159084377000056 ], [ 133.165033411000081, 33.137199555000052 ], [ 133.097764177000045, 33.023466920000089 ], [ 133.018258809000031, 33.024023267000075 ], [ 133.002452019000089, 32.869330145000049 ], [ 132.961059035000062, 32.864100526000072 ], [ 132.955477133000045, 32.814618733000088 ], [ 133.028005405000044, 32.720648505000042 ], [ 132.984385613000086, 32.719631252000056 ], [ 132.915049675000091, 32.77798086100006 ], [ 132.791514519000089, 32.740668036000045 ], [ 132.711400796000021, 32.789525389000062 ], [ 132.627660768000055, 32.752093098000046 ], [ 132.623376882, 32.79949569300004 ], [ 132.709157748000052, 32.909409898000035 ], [ 132.63990319100003, 32.90892161700009 ], [ 132.671726515666137, 33.001112576284356 ], [ 132.613848912397316, 33.145005601926982 ], [ 132.685524123139771, 33.123637397148116 ], [ 132.784381137679361, 33.249702053007297 ], [ 132.876675246165632, 33.302722073464906 ], [ 132.809030795934405, 33.444005439199657 ], [ 133.002559034871524, 33.47529551877318 ], [ 133.178827345705372, 33.771556504928753 ], [ 133.560251092613726, 33.853127752943408 ], [ 133.906379836060523, 33.784966538774711 ], [ 134.017535842205348, 33.810778917013408 ], [ 134.060168898975462, 33.67933991080821 ], [ 134.158715855152536, 33.65624054616427 ], [ 134.190083449091844, 33.551518255762858 ], [ 134.295664797033169, 33.530322987932436 ] ] ], [ [ [ 132.562022332000083, 32.742132880000042 ], [ 132.570811394000089, 32.717271226000037 ], [ 132.549652540000011, 32.704291083000044 ], [ 132.539886915000011, 32.733791408000059 ], [ 132.562022332000083, 32.742132880000042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-32", "NAME_1": "Shimane" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.121348504000025, 36.109767971000053 ], [ 133.123220248000052, 36.062933661000045 ], [ 133.079112175000091, 36.02094147300005 ], [ 133.08130944100003, 36.080145575000074 ], [ 133.121348504000025, 36.109767971000053 ] ] ], [ [ [ 133.090586785000028, 36.117865302000041 ], [ 133.093272332000083, 36.12335846600007 ], [ 133.113617384, 36.113511460000041 ], [ 133.093272332000083, 36.109767971000053 ], [ 133.090586785000028, 36.117865302000041 ] ] ], [ [ [ 133.074229363000086, 36.127915757000039 ], [ 133.044932488000086, 36.055121161000045 ], [ 133.010020379000025, 36.081529039000088 ], [ 132.994965040000011, 36.038234768000052 ], [ 132.949392123000052, 36.06195709800005 ], [ 133.074229363000086, 36.127915757000039 ] ] ], [ [ [ 131.675628663303598, 34.672143185101149 ], [ 131.858409050000091, 34.714504299000055 ], [ 131.873757670000032, 34.75922287700007 ], [ 132.053884311000047, 34.872259833000044 ], [ 132.063304118000019, 34.907489343000066 ], [ 132.316849987000069, 35.062346339000044 ], [ 132.408084915000018, 35.175050678000048 ], [ 132.638679189000072, 35.29464467300005 ], [ 132.674023211000076, 35.385424756000077 ], [ 132.635359169000026, 35.440954695000073 ], [ 132.969737175000091, 35.516994533000059 ], [ 133.091261013, 35.601484911000057 ], [ 133.156466569000031, 35.562621685000067 ], [ 133.326019727000016, 35.568508205000057 ], [ 133.200841505630933, 35.516488756051217 ], [ 133.325743443305214, 35.411482244809747 ], [ 133.293187290960645, 35.269165351200002 ], [ 133.164409620607444, 35.20588756006282 ], [ 133.12792605963989, 35.06731720612413 ], [ 132.854040968615777, 35.073259996351737 ], [ 132.642529332062963, 34.894692083972473 ], [ 132.667850782987216, 34.838235582206323 ], [ 132.509100782674977, 34.789504706476976 ], [ 132.247928095305269, 34.782941799524394 ], [ 132.143800084106601, 34.70501374019193 ], [ 132.109796990938321, 34.577553819453158 ], [ 131.946757846797141, 34.306045844340247 ], [ 131.771419711950102, 34.314262396792174 ], [ 131.768474156157367, 34.416142483288979 ], [ 131.679228957150599, 34.447096666078266 ], [ 131.668841994362538, 34.509780178012761 ], [ 131.703310174624789, 34.581041978504459 ], [ 131.675628663303598, 34.672143185101149 ] ] ], [ [ [ 133.012461785000028, 36.014797268000052 ], [ 133.045176629000025, 36.020005601000037 ], [ 133.079112175000091, 35.993638414000088 ], [ 133.027842644000089, 35.993638414000088 ], [ 133.012461785000028, 36.014797268000052 ] ] ], [ [ [ 133.367035352000016, 36.274237372000073 ], [ 133.379242384, 36.208238023000035 ], [ 133.326019727000016, 36.191636460000041 ], [ 133.326019727000016, 36.158148505000042 ], [ 133.256358269000089, 36.164984442000048 ], [ 133.187754754000025, 36.216131903000075 ], [ 133.209483269000089, 36.29718659100007 ], [ 133.292002800000091, 36.342474677000041 ], [ 133.367035352000016, 36.274237372000073 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-35", "NAME_1": "Yamaguchi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.240407747619429, 34.189805405894731 ], [ 132.201914910000028, 34.108587958000044 ], [ 132.213226759, 33.989650783000059 ], [ 132.135590040000011, 33.938421942000048 ], [ 132.161631707000083, 33.841701565000051 ], [ 132.05591881600003, 33.777167059000078 ], [ 132.078461134, 33.834906317000048 ], [ 132.108897332000083, 33.830267645000049 ], [ 132.099457227000016, 33.872259833000044 ], [ 131.852061394000089, 33.99835846600007 ], [ 131.826508009, 33.965236721000053 ], [ 131.779551629000025, 33.969671942000048 ], [ 131.822764519000089, 34.026678778000075 ], [ 131.74146569100003, 34.056219794000071 ], [ 131.593272332000083, 34.037298895000049 ], [ 131.578868035000028, 33.985744533000059 ], [ 131.482920769000089, 34.032049872000073 ], [ 131.441172722000033, 33.978908596000053 ], [ 131.393321160000028, 33.985744533000059 ], [ 131.38990319100003, 34.039740302000041 ], [ 131.332530144000089, 33.962103583000044 ], [ 131.257985873000052, 33.924790757000039 ], [ 131.215830925000091, 33.950751044000071 ], [ 131.178233269000089, 33.930487372000073 ], [ 131.103164684000035, 34.030216890000077 ], [ 131.035594808000042, 34.047975095000083 ], [ 130.915753455000072, 33.913989822000076 ], [ 130.879405144000089, 33.937933661000045 ], [ 130.917134522000083, 34.010913063000089 ], [ 130.861582879000025, 34.11273834800005 ], [ 130.923350457000083, 34.183783270000049 ], [ 130.871592644000089, 34.279242255000042 ], [ 130.893077019000089, 34.343491929000038 ], [ 131.033606810000038, 34.381789240000046 ], [ 130.933929884, 34.395982164000088 ], [ 130.947764519000089, 34.418931382000039 ], [ 130.976396076000015, 34.438967292000086 ], [ 131.009776238000086, 34.410305080000057 ], [ 131.13392298799999, 34.411561804000087 ], [ 131.172699415000011, 34.367743231000077 ], [ 131.171314549000044, 34.429534605000072 ], [ 131.252631761000089, 34.437386992000086 ], [ 131.281213917000059, 34.407957800000077 ], [ 131.229502800000091, 34.417710679000038 ], [ 131.208994988000086, 34.369330145000049 ], [ 131.414317254000025, 34.423976955000057 ], [ 131.45476321700005, 34.519110419000071 ], [ 131.536468946000014, 34.565619208000044 ], [ 131.557299194000052, 34.61485699900004 ], [ 131.595876498000052, 34.616848049000055 ], [ 131.615241890000107, 34.664880636000078 ], [ 131.679624520355333, 34.666484570506498 ], [ 131.703413528311671, 34.571042589344017 ], [ 131.668841994362538, 34.509780178012761 ], [ 131.679228957150599, 34.447096666078266 ], [ 131.768474156157367, 34.416142483288979 ], [ 131.771419711950102, 34.314262396792174 ], [ 131.946757846797141, 34.306045844340247 ], [ 132.001999952635629, 34.363949286030731 ], [ 131.991612989847567, 34.413351956227757 ], [ 132.050420770002461, 34.457845364072284 ], [ 132.126436802316562, 34.248762519374736 ], [ 132.240407747619429, 34.189805405894731 ] ] ], [ [ [ 132.243662957000083, 33.79328034100007 ], [ 132.272959832000083, 33.768540757000039 ], [ 132.188324415000011, 33.779689846000053 ], [ 132.208750847000033, 33.800116278000075 ], [ 132.243662957000083, 33.79328034100007 ] ] ], [ [ [ 132.236175977000016, 33.869045315000051 ], [ 132.216319207000083, 33.855373440000051 ], [ 132.193369988000086, 33.897650458000044 ], [ 132.201914910000028, 33.94476959800005 ], [ 132.279470248000052, 33.941229559000078 ], [ 132.326182488000086, 33.896307684000078 ], [ 132.469493035000028, 33.937933661000045 ], [ 132.384776238000086, 33.894191799000055 ], [ 132.374034050000091, 33.841701565000051 ], [ 132.318614129000025, 33.883286851000037 ], [ 132.236175977000016, 33.869045315000051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-31", "NAME_1": "Tottori" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 133.25749759200005, 35.536200262000079 ], [ 133.264659050000091, 35.496161200000074 ], [ 133.400157097000033, 35.454291083000044 ], [ 133.580181711000023, 35.533602742000085 ], [ 133.731144642, 35.50290661400004 ], [ 134.03478971200002, 35.519355662000066 ], [ 134.237765161000084, 35.546651206000035 ], [ 134.36558094775495, 35.599965416311129 ], [ 134.416787957997826, 35.544187323785934 ], [ 134.510063918415085, 35.271878363895382 ], [ 134.448465611198912, 35.218677477183803 ], [ 134.395652297215747, 35.229219468703491 ], [ 134.1745805201748, 35.161626695315704 ], [ 134.113602329683772, 35.260742092273745 ], [ 134.006632114580384, 35.287872219227495 ], [ 133.98694339372264, 35.325027573763521 ], [ 133.929065789554443, 35.319394842797749 ], [ 133.823490839330702, 35.239037990710699 ], [ 133.755794712256147, 35.288492336851846 ], [ 133.592032098602431, 35.320996812352973 ], [ 133.501443313358209, 35.176974596400498 ], [ 133.397160271629218, 35.156614081074963 ], [ 133.360056593936633, 35.095274156277242 ], [ 133.264300164820725, 35.050625718801882 ], [ 133.12792605963989, 35.06731720612413 ], [ 133.164409620607444, 35.20588756006282 ], [ 133.299801873857291, 35.282446193836734 ], [ 133.32512332568092, 35.416133123844588 ], [ 133.200841505630933, 35.516488756051217 ], [ 133.25749759200005, 35.536200262000079 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-28", "NAME_1": "Hyōgo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.36558094775495, 35.599965416311129 ], [ 134.536987309000097, 35.672203099000058 ], [ 134.863249912653259, 35.658278401427083 ], [ 134.867716506211764, 35.57069733311539 ], [ 134.910866326919404, 35.512819728947306 ], [ 135.043829787414666, 35.50269114857764 ], [ 135.044759963401589, 35.394997463961772 ], [ 135.014839309386616, 35.366110337821794 ], [ 134.930244989414632, 35.379597886932913 ], [ 134.926782667885732, 35.302367458691265 ], [ 135.077781202840242, 35.233560289375816 ], [ 135.15271203043585, 35.244774075363239 ], [ 135.201287877433515, 35.170075791764361 ], [ 135.389080030818718, 35.100183416831214 ], [ 135.39703820175157, 35.06426829754389 ], [ 135.338643833645961, 35.021971137557955 ], [ 135.366755813430018, 34.953422349761638 ], [ 135.439826288152631, 34.90370962210136 ], [ 135.44246178558285, 34.716124172492528 ], [ 135.381214428000021, 34.681262829000048 ], [ 135.341267368000103, 34.708509605000074 ], [ 135.253604781000035, 34.67699777100006 ], [ 135.254890282000019, 34.700910022000073 ], [ 135.220066570000085, 34.690773770000078 ], [ 135.24234854000008, 34.650751996000054 ], [ 135.186030437, 34.674908794000089 ], [ 135.183976047000101, 34.651155858000038 ], [ 135.045768788000032, 34.624966887000085 ], [ 134.696299675000091, 34.776190497000073 ], [ 134.519053582000083, 34.759711005000042 ], [ 134.491221550000091, 34.787054755000042 ], [ 134.422862175000091, 34.725572007000039 ], [ 134.304640557196393, 34.709108550329461 ], [ 134.310644566093742, 34.770332750456021 ], [ 134.256797724235525, 34.835858466295178 ], [ 134.263619012707181, 35.000964667085668 ], [ 134.39410200360453, 35.140697740108578 ], [ 134.395652297215747, 35.229219468703491 ], [ 134.448465611198912, 35.218677477183803 ], [ 134.510063918415085, 35.271878363895382 ], [ 134.416787957997826, 35.544187323785934 ], [ 134.36558094775495, 35.599965416311129 ] ] ], [ [ [ 135.00268188699999, 34.608423048000077 ], [ 135.030121290000011, 34.57884349200009 ], [ 134.89576256600003, 34.372748114000046 ], [ 134.958254061000048, 34.27035550100004 ], [ 134.728677141000048, 34.190939349000075 ], [ 134.702162514000065, 34.221198790000074 ], [ 134.72388756600003, 34.252630927000041 ], [ 134.688114320000068, 34.243579891000081 ], [ 134.657169133000025, 34.288204316000076 ], [ 134.683259586000077, 34.328226407000045 ], [ 134.720814407000034, 34.329788749000045 ], [ 134.798955629000034, 34.446793791000061 ], [ 135.00268188699999, 34.608423048000077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-26", "NAME_1": "Kyōto" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.863249912653259, 35.658278401427083 ], [ 134.92701256600003, 35.641180731000077 ], [ 135.084119836000013, 35.739022447000082 ], [ 135.226845612000034, 35.772320652000076 ], [ 135.306162957000083, 35.671535549000055 ], [ 135.258827003000079, 35.656828813000061 ], [ 135.188324232000014, 35.54525757600004 ], [ 135.248225502000082, 35.591694479000068 ], [ 135.270910671000024, 35.562922895000042 ], [ 135.238738934000025, 35.542025591000083 ], [ 135.335489892000055, 35.508210085000087 ], [ 135.319021030000044, 35.446966864000046 ], [ 135.352517859000045, 35.486984186000086 ], [ 135.402354363000086, 35.482163804000038 ], [ 135.337796219000097, 35.537477564000085 ], [ 135.463222092000024, 35.603327396000054 ], [ 135.45238978899999, 35.571781119000036 ], [ 135.482937686000014, 35.559199188000036 ], [ 135.441841668857933, 35.517728990400542 ], [ 135.447422723879527, 35.452074083352215 ], [ 135.518787877158729, 35.373448391130353 ], [ 135.742856886835852, 35.337584946887773 ], [ 135.826986118814261, 35.263300076237499 ], [ 135.814583775320898, 35.001093858294894 ], [ 135.858818800747031, 34.880067654198854 ], [ 135.988526646187665, 34.813611762372886 ], [ 136.029195998196656, 34.703618476211659 ], [ 135.909875116443459, 34.724185696212885 ], [ 135.832257114574077, 34.699122625908444 ], [ 135.752675408842947, 34.726252752862251 ], [ 135.706269973080794, 34.759532376517939 ], [ 135.708440383416928, 34.811157131196637 ], [ 135.646376988207408, 34.899187934275744 ], [ 135.582763300286047, 34.946549384446541 ], [ 135.538218214698759, 34.909781603538136 ], [ 135.444012079194067, 34.98370473898251 ], [ 135.341951124644652, 35.014813951402687 ], [ 135.39703820175157, 35.06426829754389 ], [ 135.379158156024005, 35.107883206244935 ], [ 135.201287877433515, 35.170075791764361 ], [ 135.147027622626638, 35.247202867218505 ], [ 135.077781202840242, 35.233560289375816 ], [ 134.936704542680445, 35.293789171033382 ], [ 134.930244989414632, 35.379597886932913 ], [ 135.014839309386616, 35.366110337821794 ], [ 135.044759963401589, 35.394997463961772 ], [ 135.043829787414666, 35.50269114857764 ], [ 134.910866326919404, 35.512819728947306 ], [ 134.867716506211764, 35.57069733311539 ], [ 134.863249912653259, 35.658278401427083 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-18", "NAME_1": "Fukui" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.478760704942488, 35.543724789867156 ], [ 135.488291863000086, 35.520697333000044 ], [ 135.512217644000089, 35.548041083000044 ], [ 135.51099694100003, 35.498195705000057 ], [ 135.55827884200005, 35.491766669000071 ], [ 135.648945178000076, 35.542833529000063 ], [ 135.669769727000016, 35.534369208000044 ], [ 135.622080925000091, 35.486558335000041 ], [ 135.645065724, 35.480200014000047 ], [ 135.738036364000095, 35.498738638000077 ], [ 135.748197943000037, 35.533525420000046 ], [ 135.72080139600007, 35.522304815000041 ], [ 135.706093332000023, 35.56209461800006 ], [ 135.834320509, 35.534369208000044 ], [ 135.804254904, 35.575174764000053 ], [ 135.85474694100003, 35.579046942000048 ], [ 135.811684605000096, 35.643405811000036 ], [ 135.91944111600003, 35.608160382000051 ], [ 135.980573611000068, 35.630480591000037 ], [ 135.956005081000058, 35.728324936000035 ], [ 136.019705266000074, 35.765347201000054 ], [ 136.046847005000018, 35.703721898000083 ], [ 136.02700644399999, 35.680947415000048 ], [ 136.069114354000021, 35.661879743000043 ], [ 136.099457227000016, 35.77570221600007 ], [ 135.993454064000048, 35.885142117000044 ], [ 135.963217411000073, 35.999923222000064 ], [ 136.120154857000102, 36.199754698000049 ], [ 136.124173276000079, 36.253179332000059 ], [ 136.226719262708826, 36.285602746069856 ], [ 136.322924838810195, 36.166319891749595 ], [ 136.532989537237313, 36.139913235207644 ], [ 136.637169224380159, 36.066170966017239 ], [ 136.720885045208661, 36.074800930518506 ], [ 136.701248000294981, 35.931605535966696 ], [ 136.802120396439136, 35.850370184736221 ], [ 136.757730341382057, 35.784017645697759 ], [ 136.484155307821197, 35.739110825803948 ], [ 136.324165074058897, 35.761693427409739 ], [ 136.257295770183646, 35.645628159811679 ], [ 136.127742955273106, 35.663534043960965 ], [ 136.145261264895453, 35.570955715533842 ], [ 136.095755242810128, 35.558475856775374 ], [ 136.080820753774674, 35.514292507293362 ], [ 135.979534947379875, 35.480418606233684 ], [ 135.930959100382097, 35.502639471734199 ], [ 135.876492140899586, 35.381587429216438 ], [ 135.817529332013009, 35.384688015539439 ], [ 135.742856886835852, 35.337584946887773 ], [ 135.518787877158729, 35.373448391130353 ], [ 135.447422723879527, 35.452074083352215 ], [ 135.441841668857933, 35.517728990400542 ], [ 135.478760704942488, 35.543724789867156 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-17", "NAME_1": "Ishikawa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.226719262708826, 36.285602746069856 ], [ 136.430186394000089, 36.432521877000056 ], [ 136.639961431000074, 36.662600574000066 ], [ 136.760554526000078, 36.870599361000075 ], [ 136.767613314000073, 36.980998748000047 ], [ 136.720448258000033, 37.054998330000046 ], [ 136.726735873000052, 37.126613674000055 ], [ 136.670258903000104, 37.149957088000065 ], [ 136.749094194, 37.357917400000076 ], [ 136.842170667, 37.399532772000043 ], [ 136.934766136, 37.399457018000078 ], [ 137.113840563000053, 37.487746918000084 ], [ 137.295709888000033, 37.531490165000037 ], [ 137.340965559000097, 37.517094138000061 ], [ 137.356130405000044, 37.453192450000074 ], [ 137.253601239000091, 37.42910590200006 ], [ 137.237363609, 37.379881620000049 ], [ 137.265349212000046, 37.339807303000043 ], [ 137.230235222000033, 37.292141018000052 ], [ 137.108721389000038, 37.283449651000069 ], [ 137.014170769000089, 37.184881903000075 ], [ 136.951069955000094, 37.234482894000053 ], [ 136.892597764000016, 37.173321100000067 ], [ 136.86092618400005, 37.076775450000071 ], [ 136.933604363000086, 37.079820054000038 ], [ 136.980125962000102, 37.046859640000037 ], [ 137.047129754000025, 37.098822333000044 ], [ 137.05444619900004, 36.966749864000064 ], [ 136.894104445663629, 36.925705064037459 ], [ 136.777109002978023, 36.718947659306991 ], [ 136.764396600222881, 36.321555895488189 ], [ 136.816796503056139, 36.235204576330091 ], [ 136.720885045208661, 36.074800930518506 ], [ 136.637169224380159, 36.066170966017239 ], [ 136.532989537237313, 36.139913235207644 ], [ 136.322924838810195, 36.166319891749595 ], [ 136.226719262708826, 36.285602746069856 ] ] ], [ [ [ 137.04810631600003, 37.152289130000042 ], [ 137.03874759200005, 37.120103257000039 ], [ 136.947276238000086, 37.096991278000075 ], [ 136.905284050000091, 37.143622137000079 ], [ 137.04810631600003, 37.152289130000042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-16", "NAME_1": "Toyama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.04442499167402, 36.956404201740085 ], [ 136.987741561, 36.871021637000069 ], [ 137.00554446700005, 36.835923570000034 ], [ 137.19728775100009, 36.758124588000044 ], [ 137.33334435900008, 36.762726067000074 ], [ 137.383605796000097, 36.800145455000063 ], [ 137.427107669000065, 36.922011158000089 ], [ 137.499346965000086, 36.955741617000058 ], [ 137.614563894846839, 36.975108174328042 ], [ 137.684547154427605, 36.925911770511789 ], [ 137.732657911633282, 36.77480988187051 ], [ 137.728317091860276, 36.621408393482568 ], [ 137.620778435976035, 36.423642687559948 ], [ 137.565381301405864, 36.377004706002367 ], [ 137.341312290829478, 36.439688218836181 ], [ 137.294906854167948, 36.421136380439577 ], [ 137.276303338927846, 36.452245591960491 ], [ 137.161168248216086, 36.436846014931632 ], [ 136.957976516003328, 36.273315945274646 ], [ 136.935703973659429, 36.32656850793029 ], [ 136.850489536962527, 36.342794908158453 ], [ 136.814522739932499, 36.294477444478446 ], [ 136.773233270299102, 36.291996974880476 ], [ 136.777109002978023, 36.718947659306991 ], [ 136.894104445663629, 36.925705064037459 ], [ 137.04442499167402, 36.956404201740085 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-15", "NAME_1": "Niigata" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.614563894846839, 36.975108174328042 ], [ 137.896739129000025, 37.057521877000056 ], [ 138.097501804000103, 37.171059352000043 ], [ 138.244894979000037, 37.183789445000059 ], [ 138.550629102000016, 37.377915757000039 ], [ 138.746592644000089, 37.596869208000044 ], [ 138.857676629000025, 37.827826239000046 ], [ 139.068193436, 37.955093852000061 ], [ 139.215943141000025, 37.989933954000037 ], [ 139.425140821000014, 38.151271877000056 ], [ 139.472829623000052, 38.412502346000053 ], [ 139.548717931850604, 38.545003113135053 ], [ 139.701788365440621, 38.494394842747795 ], [ 139.709384800268253, 38.387683010062858 ], [ 139.862243687196383, 38.314379991343515 ], [ 139.844415318312258, 38.240870266149841 ], [ 139.679154086991502, 38.187566025751437 ], [ 139.61740075104376, 37.909572658951049 ], [ 139.724629347666223, 37.820379136787722 ], [ 139.537147251744273, 37.624370429151952 ], [ 139.553580356648126, 37.506496487323034 ], [ 139.419531692333635, 37.503344225055912 ], [ 139.381394484967473, 37.460814521073246 ], [ 139.225745070978178, 37.446913560812163 ], [ 139.188538038699448, 37.41812978835901 ], [ 139.208175083613128, 37.354593613904115 ], [ 139.155568476104236, 37.225893459715394 ], [ 139.23520185777943, 37.139903875763252 ], [ 139.214582960934877, 36.945652167313654 ], [ 139.080017530884334, 37.036576850241431 ], [ 138.965192499434238, 36.967407944820764 ], [ 138.964727411440776, 36.901675523406652 ], [ 138.903284132956287, 36.8362789978774 ], [ 138.822462192875832, 36.803593655222983 ], [ 138.794143508416141, 36.757808336185747 ], [ 138.679525180742417, 36.730652370810219 ], [ 138.666812778886538, 36.835839749205036 ], [ 138.581546666245572, 36.908548488721749 ], [ 138.535864699096578, 37.010041002490254 ], [ 138.365745884065291, 36.977407334880581 ], [ 138.26394331283359, 36.850825914184554 ], [ 138.044215122929472, 36.807185167061789 ], [ 137.989334752296941, 36.896972968427747 ], [ 137.868721959350864, 36.919245509872383 ], [ 137.80107750911975, 36.803386948748653 ], [ 137.732657911633282, 36.77480988187051 ], [ 137.694779086685458, 36.911959133407265 ], [ 137.614563894846839, 36.975108174328042 ] ] ], [ [ [ 138.459239129000025, 38.069891669000071 ], [ 138.575205925000091, 38.074286200000074 ], [ 138.500498894000089, 37.906683661000045 ], [ 138.37037194100003, 37.82876211100006 ], [ 138.222666863000086, 37.802232164000088 ], [ 138.215505405000044, 37.830267645000049 ], [ 138.283213738000086, 37.848334052000041 ], [ 138.287852410000028, 37.905991929000038 ], [ 138.342539910000028, 37.966864325000074 ], [ 138.314789259, 37.997463283000059 ], [ 138.247894727000016, 37.978501695000034 ], [ 138.242198113000086, 38.071478583000044 ], [ 138.310069207000083, 38.168117580000057 ], [ 138.514170769000089, 38.323065497000073 ], [ 138.443207227000016, 38.051947333000044 ], [ 138.459239129000025, 38.069891669000071 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-06", "NAME_1": "Yamagata" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.548717931850604, 38.545003113135053 ], [ 139.599215149000088, 38.648254087000055 ], [ 139.773844333000056, 38.817116774000056 ], [ 139.880854949687375, 39.115106310108104 ], [ 140.024145948876367, 39.108362535102913 ], [ 140.126206903425782, 39.048469550229527 ], [ 140.405052931847308, 38.975657457025989 ], [ 140.479363641818509, 38.892200019515258 ], [ 140.532900425314324, 38.881709703040315 ], [ 140.618218214798731, 38.755567531916029 ], [ 140.598994581934335, 38.659785265277776 ], [ 140.5343990420821, 38.631182359078593 ], [ 140.585041945729131, 38.452898668438763 ], [ 140.474351027577768, 38.281746323733842 ], [ 140.450786574041103, 38.152141831979918 ], [ 140.37880130403687, 38.078709622051406 ], [ 140.282321405408425, 38.045119940932523 ], [ 140.273743116851279, 37.799553534368101 ], [ 140.2144702496023, 37.740590725481582 ], [ 140.104296096287726, 37.722659002910632 ], [ 139.979239129881876, 37.761984767782792 ], [ 139.932368606126261, 37.811594143554885 ], [ 139.724629347666223, 37.820379136787722 ], [ 139.631043328886449, 37.87929026973012 ], [ 139.687370640342692, 38.202061266114526 ], [ 139.793669060978345, 38.211931464065799 ], [ 139.871183710060109, 38.285906277252877 ], [ 139.84658572774913, 38.330115465156553 ], [ 139.709384800268253, 38.387683010062858 ], [ 139.701788365440621, 38.494394842747795 ], [ 139.548717931850604, 38.545003113135053 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-05", "NAME_1": "Akita" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.880854949687375, 39.115106310108104 ], [ 139.916842552000048, 39.262499030000072 ], [ 139.995310190000055, 39.327328560000069 ], [ 140.048577150000028, 39.504669646000082 ], [ 140.059295881000025, 39.727492249000079 ], [ 140.027598504000025, 39.82453034100007 ], [ 139.96648196700005, 39.880072333000044 ], [ 139.921397332000083, 39.898504950000074 ], [ 139.760101759, 39.85805898600006 ], [ 139.697730669000066, 39.988566482000067 ], [ 139.822113477000016, 39.961086330000057 ], [ 139.90419316100008, 40.017695121000088 ], [ 139.978037957000083, 40.125474351000037 ], [ 140.02426296100009, 40.355016067000065 ], [ 139.94376212571035, 40.429279553146785 ], [ 140.061352981155096, 40.46409373643678 ], [ 140.300614862286011, 40.44709218985264 ], [ 140.409032017313734, 40.480836899703149 ], [ 140.527784459185341, 40.412210598440367 ], [ 140.647880487294628, 40.411797187290347 ], [ 140.849935337046077, 40.499517931107619 ], [ 140.940369093558729, 40.468202013112375 ], [ 140.962744988690247, 40.368647366582707 ], [ 140.926261427722693, 40.2439779729051 ], [ 140.855413039280279, 40.18059682898047 ], [ 140.838153111177121, 40.066391913356085 ], [ 140.870554233890743, 39.878315538231504 ], [ 140.783169386857708, 39.840152493342885 ], [ 140.82647423719618, 39.78434194582411 ], [ 140.790197381803637, 39.719772244393539 ], [ 140.813761835340415, 39.643937079232785 ], [ 140.65811242135112, 39.392272853709187 ], [ 140.79608849518786, 39.174715074141318 ], [ 140.749373000163814, 39.113271796556148 ], [ 140.798413934255564, 39.048676255804537 ], [ 140.75944990458936, 38.951731269182687 ], [ 140.544062535357625, 38.873699856163398 ], [ 140.342782831062777, 39.003846951175831 ], [ 140.210697869710884, 39.019995836138889 ], [ 140.024145948876367, 39.108362535102913 ], [ 139.880854949687375, 39.115106310108104 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-02", "NAME_1": "Aomori" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.94376212571035, 40.429279553146785 ], [ 139.942786333000072, 40.544585558000051 ], [ 139.860362175000091, 40.608791408000059 ], [ 140.045977276000031, 40.767770087000088 ], [ 140.1223587180001, 40.744765534000067 ], [ 140.258067254000025, 40.79564036700009 ], [ 140.321921558000099, 41.027445197000077 ], [ 140.369594440000014, 40.986054691000049 ], [ 140.369628538000029, 41.021661632000075 ], [ 140.407792583000059, 41.025698461000047 ], [ 140.326904820000095, 41.041186808000077 ], [ 140.300161981000088, 41.111277292000068 ], [ 140.248095449000061, 41.123361002000081 ], [ 140.32043302, 41.149779762000037 ], [ 140.342283043000066, 41.265731298000048 ], [ 140.462248040000077, 41.183887407000043 ], [ 140.548597594000057, 41.226242993000085 ], [ 140.632702383000037, 41.194257795000055 ], [ 140.641286655000044, 41.041489976000037 ], [ 140.703121670000087, 40.853292023000051 ], [ 140.799223468000037, 40.839081251000039 ], [ 140.852068291000023, 40.883848724000075 ], [ 140.870836804000078, 40.94485248400008 ], [ 140.840519949000054, 40.952971527000045 ], [ 140.888674956000045, 41.010777795000081 ], [ 141.126268683000035, 40.872919082000067 ], [ 141.226400074000026, 40.987442920000035 ], [ 141.277882083, 41.155329909000045 ], [ 141.20591119200003, 41.264719704000072 ], [ 141.161232458000086, 41.278467262000049 ], [ 141.146830113000078, 41.236288570000056 ], [ 141.058075718000055, 41.183068125000034 ], [ 140.977561863, 41.196477815000037 ], [ 140.814525015000072, 41.128461806000075 ], [ 140.765796043000023, 41.145018739000079 ], [ 140.803147934000094, 41.329543976000082 ], [ 140.901052280000044, 41.481024481000077 ], [ 140.907092721000026, 41.538548263000052 ], [ 141.107750407000026, 41.46386893600004 ], [ 141.276095682, 41.353195528000072 ], [ 141.382160878000036, 41.372599583000067 ], [ 141.46386574600001, 41.426022665000062 ], [ 141.390816767000047, 41.16101119700005 ], [ 141.423156040000094, 40.725772286000051 ], [ 141.491639652, 40.562326700000085 ], [ 141.53250427099999, 40.531397895000055 ], [ 141.575549586000079, 40.542279059000066 ], [ 141.680988037168163, 40.451005874821249 ], [ 141.553148228407963, 40.359190578882078 ], [ 141.30251753075936, 40.355392361468262 ], [ 141.00150231278144, 40.211318467773026 ], [ 140.926261427722693, 40.2439779729051 ], [ 140.963985223938835, 40.380610460504329 ], [ 140.946880323667983, 40.459675401398613 ], [ 140.868848912447334, 40.496598211937908 ], [ 140.647880487294628, 40.411797187290347 ], [ 140.527784459185341, 40.412210598440367 ], [ 140.409032017313734, 40.480836899703149 ], [ 140.300614862286011, 40.44709218985264 ], [ 140.061352981155096, 40.46409373643678 ], [ 139.94376212571035, 40.429279553146785 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-03", "NAME_1": "Iwate" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.680988037168163, 40.451005874821249 ], [ 141.841970248000052, 40.225775458000044 ], [ 141.813324415000011, 40.183579820000034 ], [ 141.877207879000025, 40.13930898600006 ], [ 141.842458530000044, 40.070379950000074 ], [ 141.949554884, 39.996568101000037 ], [ 141.942230665000011, 39.924505927000041 ], [ 142.008799675000091, 39.752752997000073 ], [ 141.960459832000083, 39.61163971600007 ], [ 142.036143425000091, 39.63898346600007 ], [ 142.030772332000083, 39.584173895000049 ], [ 142.070323113000086, 39.550197658000059 ], [ 141.952972852000016, 39.460760809000078 ], [ 141.996267123000052, 39.445257880000042 ], [ 142.03638756600003, 39.483791408000059 ], [ 142.058441602000016, 39.466294664000088 ], [ 142.038096550000091, 39.424017645000049 ], [ 141.93873131600003, 39.38507721600007 ], [ 141.96412194100003, 39.375555731000077 ], [ 141.905284050000091, 39.330471096000053 ], [ 141.980967644000089, 39.350978908000059 ], [ 141.914886915000011, 39.294867255000042 ], [ 141.932627800000091, 39.275213934000078 ], [ 141.899099155000044, 39.275213934000078 ], [ 141.899099155000044, 39.248521226000037 ], [ 141.947032097000033, 39.249701239000046 ], [ 141.930023634, 39.212225653000075 ], [ 141.878672722000033, 39.207586981000077 ], [ 141.915782097000033, 39.169989325000074 ], [ 141.843760613000086, 39.152329820000034 ], [ 141.91334069100003, 39.097723700000074 ], [ 141.817149285000028, 39.090887762000079 ], [ 141.871836785000028, 39.062933661000045 ], [ 141.823252800000091, 39.056708075000074 ], [ 141.847422722000033, 39.021958726000037 ], [ 141.727712436000047, 39.036281643000052 ], [ 141.748220248000052, 38.987860419000071 ], [ 141.717133009, 38.946844794000071 ], [ 141.67310631600003, 38.981024481000077 ], [ 141.693614129000025, 38.995306708000044 ], [ 141.651052280000044, 38.99681224200009 ], [ 141.640303531006651, 38.967503417383966 ], [ 141.499456415281315, 38.986767890225906 ], [ 141.443284132556641, 38.809414373774302 ], [ 141.406697218801582, 38.785436509986937 ], [ 141.320707635748704, 38.813031724934149 ], [ 141.228413528161695, 38.754172267935814 ], [ 141.133432245401764, 38.79876902946711 ], [ 141.128884719154371, 38.863648790159516 ], [ 140.992665642705219, 38.875198472931174 ], [ 140.75944990458936, 38.951731269182687 ], [ 140.798413934255564, 39.048676255804537 ], [ 140.749373000163814, 39.113271796556148 ], [ 140.79608849518786, 39.174715074141318 ], [ 140.65811242135112, 39.392272853709187 ], [ 140.813761835340415, 39.643937079232785 ], [ 140.790197381803637, 39.719772244393539 ], [ 140.82647423719618, 39.78434194582411 ], [ 140.783169386857708, 39.840152493342885 ], [ 140.870554233890743, 39.878315538231504 ], [ 140.837843051915229, 40.053834540231833 ], [ 140.855413039280279, 40.18059682898047 ], [ 140.926261427722693, 40.2439779729051 ], [ 141.013439569180719, 40.213101305380917 ], [ 141.30251753075936, 40.355392361468262 ], [ 141.553148228407963, 40.359190578882078 ], [ 141.680988037168163, 40.451005874821249 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-04", "NAME_1": "Miyagi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.640303531006651, 38.967503417383966 ], [ 141.673594597000033, 38.851955471000053 ], [ 141.636729363000086, 38.891099351000037 ], [ 141.588552280000044, 38.882228908000059 ], [ 141.587087436000047, 38.819240627000056 ], [ 141.521657748000052, 38.768133856000077 ], [ 141.566416863000086, 38.703558661000045 ], [ 141.463063998000052, 38.661363023000035 ], [ 141.535166863000086, 38.632025458000044 ], [ 141.467051629000025, 38.569525458000044 ], [ 141.547618035000028, 38.518622137000079 ], [ 141.542816602000016, 38.481390692000048 ], [ 141.514821811000047, 38.508042710000041 ], [ 141.507985873000052, 38.446600653000075 ], [ 141.470469597000033, 38.429510809000078 ], [ 141.48755944100003, 38.39203522300005 ], [ 141.518402540000011, 38.402329820000034 ], [ 141.549082879000025, 38.385158596000053 ], [ 141.50123131600003, 38.371527411000045 ], [ 141.542816602000016, 38.302639065000051 ], [ 141.525401238000086, 38.267808335000041 ], [ 141.463389519000089, 38.299221096000053 ], [ 141.428070509, 38.380438544000071 ], [ 141.333181186000047, 38.409002997000073 ], [ 141.20240319100003, 38.385809637000079 ], [ 141.169688347000033, 38.322821356000077 ], [ 141.131846550000091, 38.371527411000045 ], [ 141.079437696000014, 38.360907294000071 ], [ 141.048675977000016, 38.309475002000056 ], [ 141.080577019000089, 38.294907945000034 ], [ 140.98796634200005, 38.207017320000034 ], [ 140.925791863000086, 38.049383856000077 ], [ 140.933192594596051, 37.889804989305908 ], [ 140.854896275342753, 37.87603465377623 ], [ 140.849625278683561, 37.798778388012181 ], [ 140.778983595816271, 37.770382188287329 ], [ 140.694699335106179, 37.79854584401545 ], [ 140.651601190342603, 37.882907619990647 ], [ 140.497967157058611, 37.89494822917743 ], [ 140.443241815157535, 37.943007311338306 ], [ 140.269557325809842, 37.964246324008627 ], [ 140.282321405408425, 38.045119940932523 ], [ 140.37880130403687, 38.078709622051406 ], [ 140.450786574041103, 38.152141831979918 ], [ 140.474351027577768, 38.281746323733842 ], [ 140.585041945729131, 38.452898668438763 ], [ 140.5343990420821, 38.631182359078593 ], [ 140.598994581934335, 38.659785265277776 ], [ 140.618218214798731, 38.755567531916029 ], [ 140.532900425314324, 38.881709703040315 ], [ 140.816087274408119, 38.946589463732721 ], [ 140.992665642705219, 38.875198472931174 ], [ 141.128884719154371, 38.863648790159516 ], [ 141.133432245401764, 38.79876902946711 ], [ 141.228413528161695, 38.754172267935814 ], [ 141.320707635748704, 38.813031724934149 ], [ 141.406697218801582, 38.785436509986937 ], [ 141.443284132556641, 38.809414373774302 ], [ 141.499456415281315, 38.986767890225906 ], [ 141.640303531006651, 38.967503417383966 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-07", "NAME_1": "Fukushima" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.933192594596051, 37.889804989305908 ], [ 141.022227410000028, 37.726955471000053 ], [ 141.041840040000011, 37.377142645000049 ], [ 140.960297071000014, 36.966213283000059 ], [ 140.80437259200005, 36.885972398000035 ], [ 140.79728604861225, 36.846489052327854 ], [ 140.570004103906172, 36.926066799243358 ], [ 140.564681431302915, 36.863176580834534 ], [ 140.449856398953557, 36.794576117094095 ], [ 140.237311232727166, 36.924826564894033 ], [ 140.23126508971211, 36.999989936486372 ], [ 140.17628136629196, 37.058926906951172 ], [ 140.098094923641725, 37.105823269128564 ], [ 139.91686567630984, 37.143572902867163 ], [ 139.359587029717545, 36.902037257713232 ], [ 139.217373488895305, 36.929503282350595 ], [ 139.23520185777943, 37.139903875763252 ], [ 139.155568476104236, 37.225893459715394 ], [ 139.208175083613128, 37.354593613904115 ], [ 139.188538038699448, 37.41812978835901 ], [ 139.225745070978178, 37.446913560812163 ], [ 139.381394484967473, 37.460814521073246 ], [ 139.419531692333635, 37.503344225055912 ], [ 139.553580356648126, 37.506496487323034 ], [ 139.537147251744273, 37.624370429151952 ], [ 139.724629347666223, 37.820379136787722 ], [ 139.932368606126261, 37.811594143554885 ], [ 139.990556267757484, 37.75653290486963 ], [ 140.117370233349561, 37.722607326966568 ], [ 140.269247268346703, 37.780536607078716 ], [ 140.269557325809842, 37.964246324008627 ], [ 140.443241815157535, 37.943007311338306 ], [ 140.497967157058611, 37.89494822917743 ], [ 140.651601190342603, 37.882907619990647 ], [ 140.694699335106179, 37.79854584401545 ], [ 140.764100782724881, 37.770201321134039 ], [ 140.849625278683561, 37.798778388012181 ], [ 140.864663121405897, 37.883036811199872 ], [ 140.933192594596051, 37.889804989305908 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-08", "NAME_1": "Ibaraki" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.79728604861225, 36.846489052327854 ], [ 140.623545769000089, 36.506089585000041 ], [ 140.624766472000033, 36.36359284100007 ], [ 140.564107371000091, 36.283095802000048 ], [ 140.578379754000025, 36.160956122000073 ], [ 140.646034105000012, 36.013320444000044 ], [ 140.85717003756713, 35.732444566063862 ], [ 140.551452264610248, 35.888559068046504 ], [ 140.127343784987602, 35.854426785467751 ], [ 139.969627313449678, 35.913932196713461 ], [ 139.805451287746678, 36.077798163154682 ], [ 139.685510289268336, 36.125495510109658 ], [ 139.653729283279745, 36.203139350400704 ], [ 139.781990187896781, 36.234326077186665 ], [ 139.95350426690834, 36.362121893810354 ], [ 140.181138950901754, 36.414883530950192 ], [ 140.235399204809369, 36.516866970234446 ], [ 140.221033155655505, 36.677193102579622 ], [ 140.266766798748677, 36.718637600045156 ], [ 140.237311232727166, 36.924826564894033 ], [ 140.449856398953557, 36.794576117094095 ], [ 140.564681431302915, 36.863176580834534 ], [ 140.570004103906172, 36.926066799243358 ], [ 140.79728604861225, 36.846489052327854 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-12", "NAME_1": "Chiba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.859466993000069, 35.735378322000088 ], [ 140.860664672000098, 35.687791018000041 ], [ 140.828301457000066, 35.71396943700006 ], [ 140.661056456000097, 35.688634978000039 ], [ 140.483467497000106, 35.56599105500004 ], [ 140.385918569000069, 35.380998573000056 ], [ 140.413096550000091, 35.301214911000045 ], [ 140.394195275000015, 35.19659166200006 ], [ 140.321213612000065, 35.130394078000052 ], [ 140.134602814, 35.12264536400005 ], [ 139.990967633000082, 35.020502112000088 ], [ 139.926395846000105, 34.90735665200009 ], [ 139.843099617, 34.899981860000082 ], [ 139.756993555, 34.956283674000076 ], [ 139.869965040000011, 34.999335028000075 ], [ 139.835785352000016, 35.027248440000051 ], [ 139.818974296000079, 35.157662877000064 ], [ 139.866326628000024, 35.246205377000081 ], [ 139.84933413400006, 35.293553600000052 ], [ 139.781003379000026, 35.318060656000057 ], [ 139.824158042000022, 35.328423989000044 ], [ 139.844776736000085, 35.376205084000048 ], [ 139.892743076000102, 35.364183689000072 ], [ 139.900121044, 35.423104455000043 ], [ 140.005859289, 35.473427120000053 ], [ 140.10204868400001, 35.567087494000077 ], [ 139.983614332, 35.66864466800007 ], [ 139.920531897000046, 35.662066673000083 ], [ 139.939579291000086, 35.636891498000068 ], [ 139.897167830000058, 35.614373758000056 ], [ 139.864242856722399, 35.632067576757265 ], [ 139.871855502729204, 35.869361274503206 ], [ 139.752844680237786, 36.079555162340853 ], [ 139.805451287746678, 36.077798163154682 ], [ 139.969627313449678, 35.913932196713461 ], [ 140.127343784987602, 35.854426785467751 ], [ 140.551452264610248, 35.888559068046504 ], [ 140.859466993000069, 35.735378322000088 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-13", "NAME_1": "Tokyo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.864242856722399, 35.632067576757265 ], [ 139.837277067000059, 35.61454952400004 ], [ 139.806825188000062, 35.638192534000041 ], [ 139.789146748, 35.60324341200004 ], [ 139.76527245200009, 35.653510485000083 ], [ 139.786621383469992, 35.511529650572868 ], [ 139.539421014867912, 35.612606920373082 ], [ 139.454464959690085, 35.597310696131672 ], [ 139.489811639995082, 35.558785916037152 ], [ 139.463146601034737, 35.489823717090871 ], [ 139.399067824220651, 35.556305447338502 ], [ 139.266362746143727, 35.582143663099544 ], [ 139.035782504558938, 35.696348577824608 ], [ 138.922817824183198, 35.835384019756702 ], [ 139.013613315901807, 35.877293606115018 ], [ 139.411470167714015, 35.751978258190036 ], [ 139.757805616735823, 35.795283108528622 ], [ 139.863949008639793, 35.778126533212912 ], [ 139.885963170363993, 35.697743841804822 ], [ 139.864242856722399, 35.632067576757265 ] ] ], [ [ [ 141.357758009, 24.789618231000077 ], [ 141.365489129000025, 24.777736721000053 ], [ 141.289561394000089, 24.726955471000053 ], [ 141.299489780000044, 24.78587474200009 ], [ 141.357758009, 24.789618231000077 ] ] ], [ [ [ 142.193207227000016, 26.646063544000071 ], [ 142.180186394000089, 26.618801174000055 ], [ 142.159922722000033, 26.632025458000044 ], [ 142.111338738000086, 26.721177476000037 ], [ 142.165863477000016, 26.701320705000057 ], [ 142.193207227000016, 26.646063544000071 ] ] ], [ [ [ 142.193207227000016, 27.091742255000042 ], [ 142.233246290000011, 27.094305731000077 ], [ 142.234629754000025, 27.050034898000035 ], [ 142.198578321000014, 27.05109284100007 ], [ 142.193207227000016, 27.091742255000042 ] ] ], [ [ [ 139.791026238000086, 33.135321356000077 ], [ 139.877452019000089, 33.087591864000046 ], [ 139.835785352000016, 33.03978099200009 ], [ 139.787608269000089, 33.058417059000078 ], [ 139.739756707000083, 33.133246161000045 ], [ 139.791026238000086, 33.135321356000077 ] ] ], [ [ [ 139.487071160000028, 34.060777085000041 ], [ 139.523448113000086, 34.112372137000079 ], [ 139.575043165000011, 34.090033270000049 ], [ 139.534515821000014, 34.037543036000045 ], [ 139.487071160000028, 34.060777085000041 ] ] ], [ [ [ 139.270355665000011, 34.395982164000088 ], [ 139.300954623000052, 34.417914130000042 ], [ 139.267832879000025, 34.322699286000045 ], [ 139.253672722000033, 34.341376044000071 ], [ 139.270355665000011, 34.395982164000088 ] ] ], [ [ [ 139.418223504000025, 34.780829169000071 ], [ 139.450043165000011, 34.756781317000048 ], [ 139.453786655000044, 34.678941148000035 ], [ 139.351195483000083, 34.72003363400006 ], [ 139.356465122000031, 34.797229492000042 ], [ 139.418223504000025, 34.780829169000071 ] ] ], [ [ [ 140.869965040000011, 27.218247789000088 ], [ 140.867930535000028, 27.233954169000071 ], [ 140.874196811000047, 27.238226630000042 ], [ 140.87818444100003, 27.232611395000049 ], [ 140.869965040000011, 27.218247789000088 ] ] ], [ [ [ 141.452972852000016, 24.222398179000038 ], [ 141.46998131600003, 24.226263739000046 ], [ 141.470713738000086, 24.219183661000045 ], [ 141.463145379000025, 24.212103583000044 ], [ 141.452972852000016, 24.222398179000038 ] ] ], [ [ [ 153.972992384, 24.28969961100006 ], [ 153.981211785000028, 24.295355536000045 ], [ 153.98560631600003, 24.291083075000074 ], [ 153.98365319100003, 24.282945054000038 ], [ 153.972992384, 24.28969961100006 ] ] ], [ [ [ 141.287445509, 25.417710679000038 ], [ 141.27466881600003, 25.427069403000075 ], [ 141.274750196000014, 25.451117255000042 ], [ 141.297536655000044, 25.445298570000091 ], [ 141.287445509, 25.417710679000038 ] ] ], [ [ [ 142.189219597000033, 27.145493882000039 ], [ 142.184255405000044, 27.158351955000057 ], [ 142.190928582000083, 27.185207424000055 ], [ 142.204112175000091, 27.173895575000074 ], [ 142.189219597000033, 27.145493882000039 ] ] ], [ [ [ 142.195323113000086, 27.599107164000088 ], [ 142.179453972000033, 27.612494208000044 ], [ 142.183116082000083, 27.61945221600007 ], [ 142.192881707000083, 27.616197007000039 ], [ 142.195323113000086, 27.599107164000088 ] ] ], [ [ [ 142.080577019000089, 27.716945705000057 ], [ 142.078623894000089, 27.727240302000041 ], [ 142.082286004000025, 27.729885158000059 ], [ 142.085134311000047, 27.726060289000088 ], [ 142.080577019000089, 27.716945705000057 ] ] ], [ [ [ 140.307627800000091, 30.491156317000048 ], [ 140.317149285000028, 30.491156317000048 ], [ 140.325938347000033, 30.485174872000073 ], [ 140.306488477000016, 30.473618882000039 ], [ 140.307627800000091, 30.491156317000048 ] ] ], [ [ [ 140.043467644000089, 31.443101304000038 ], [ 140.044444207000083, 31.445054429000038 ], [ 140.045664910000028, 31.443304755000042 ], [ 140.043467644000089, 31.443101304000038 ] ] ], [ [ [ 140.041270379000025, 31.444159247000073 ], [ 140.041351759, 31.446478583000044 ], [ 140.043142123000052, 31.444566148000035 ], [ 140.041270379000025, 31.444159247000073 ] ] ], [ [ [ 139.756358269000089, 32.452297268000052 ], [ 139.75709069100003, 32.470363674000055 ], [ 139.773773634, 32.440985419000071 ], [ 139.756358269000089, 32.452297268000052 ] ] ], [ [ [ 139.299082879000025, 33.650091864000046 ], [ 139.29615319100003, 33.651068427000041 ], [ 139.299082879000025, 33.65070221600007 ], [ 139.299082879000025, 33.650091864000046 ] ] ], [ [ [ 139.622813347000033, 33.885565497000073 ], [ 139.622894727000016, 33.856756903000075 ], [ 139.58130944100003, 33.862534898000035 ], [ 139.592458530000044, 33.895819403000075 ], [ 139.622813347000033, 33.885565497000073 ] ] ], [ [ [ 153.966237826, 24.308661200000074 ], [ 153.953461134, 24.29250722900008 ], [ 153.94068444100003, 24.311468817000048 ], [ 153.953705274000072, 24.315822658000059 ], [ 153.966237826, 24.308661200000074 ] ] ], [ [ [ 142.10515384200005, 27.727036851000037 ], [ 142.111664259, 27.725856838000084 ], [ 142.107188347000033, 27.716742255000042 ], [ 142.10515384200005, 27.727036851000037 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-14", "NAME_1": "Kanagawa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.786621383469992, 35.511529650572868 ], [ 139.642301837000105, 35.454261182000039 ], [ 139.687397096000041, 35.432175530000052 ], [ 139.686859571000014, 35.40070221600007 ], [ 139.635791908000101, 35.401632427000038 ], [ 139.648358142, 35.297890507000034 ], [ 139.745453321000014, 35.248968817000048 ], [ 139.728024657000105, 35.207084100000088 ], [ 139.666456229, 35.193893224000078 ], [ 139.685069207000083, 35.140448309000078 ], [ 139.664317254000025, 35.134833075000074 ], [ 139.616284936000056, 35.134001708000085 ], [ 139.601792743000033, 35.201835319000054 ], [ 139.623958952000066, 35.211617096000055 ], [ 139.544177797000089, 35.307892798000069 ], [ 139.414855720000105, 35.318814659000054 ], [ 139.183537821000073, 35.263266716000089 ], [ 139.14595743699999, 35.235226985000054 ], [ 139.158050977000016, 35.136460679000038 ], [ 139.028754511411535, 35.135555935557932 ], [ 138.968603143220435, 35.230252997477805 ], [ 139.000280796421521, 35.290559394400532 ], [ 138.986586541735505, 35.381148180544074 ], [ 138.900338576264176, 35.380941474069743 ], [ 138.933256463814701, 35.437062079051714 ], [ 139.091024612196065, 35.514008287352567 ], [ 139.121772089410342, 35.653999741894552 ], [ 139.399067824220651, 35.556305447338502 ], [ 139.463146601034737, 35.489823717090871 ], [ 139.489811639995082, 35.558785916037152 ], [ 139.454464959690085, 35.597310696131672 ], [ 139.527380405681129, 35.614028021875697 ], [ 139.786621383469992, 35.511529650572868 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-22", "NAME_1": "Shizuoka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.094430840048489, 35.117473623398702 ], [ 139.075874036000073, 35.05317728600005 ], [ 139.105967644000089, 35.049383856000077 ], [ 139.086548091000054, 34.997305469000082 ], [ 139.142588738000086, 34.942287502000056 ], [ 139.140879754000025, 34.87055084800005 ], [ 138.998758722000048, 34.733284342000047 ], [ 138.993662957000083, 34.64984772300005 ], [ 138.940825981000103, 34.661107187000084 ], [ 138.835297071000014, 34.595892645000049 ], [ 138.746592644000089, 34.691473700000074 ], [ 138.774261915000011, 34.751288153000075 ], [ 138.753838793, 34.879467275000081 ], [ 138.789805535000028, 34.906805731000077 ], [ 138.7618935590001, 34.979902605000063 ], [ 138.786089901000082, 35.026438762000055 ], [ 138.907562696000014, 35.030666408000059 ], [ 138.803331685000103, 35.121909308000056 ], [ 138.696185576000062, 35.13897567500004 ], [ 138.554082175000076, 35.096069379000085 ], [ 138.497882982000078, 35.032569502000058 ], [ 138.50701000399999, 34.991072252000038 ], [ 138.531617442000083, 35.016923751000036 ], [ 138.514293034000048, 34.98017780400005 ], [ 138.353352612000094, 34.904115016000048 ], [ 138.340830925000091, 34.82648346600007 ], [ 138.215989191000062, 34.712282661000074 ], [ 138.193614129000025, 34.641506252000056 ], [ 138.233289761000037, 34.594588770000087 ], [ 137.96758503500007, 34.666540387000055 ], [ 137.792165561000047, 34.63939036700009 ], [ 137.683506484000077, 34.670754599000077 ], [ 137.467903432279002, 34.670969249081665 ], [ 137.488435093104954, 34.809761868115686 ], [ 137.617987908914756, 34.879266669421213 ], [ 137.684857211890744, 35.002514959797509 ], [ 137.770226679117854, 35.081166490441149 ], [ 137.805573357624326, 35.194518744444451 ], [ 138.123073358248803, 35.370864570543461 ], [ 138.135940789735628, 35.547081204533924 ], [ 138.196143833870792, 35.627851466871675 ], [ 138.241309035283734, 35.517780667243983 ], [ 138.235883009892973, 35.303685208305694 ], [ 138.342956577783752, 35.292058010268931 ], [ 138.418972610097853, 35.165114854367005 ], [ 138.472354363962722, 35.161678372159145 ], [ 138.50713260258749, 35.194286200447777 ], [ 138.523255650028204, 35.381354885219764 ], [ 138.556483595941131, 35.417476711880738 ], [ 138.697198520894972, 35.350762436737057 ], [ 138.986586541735505, 35.381148180544074 ], [ 139.000280796421521, 35.290559394400532 ], [ 138.973564080617734, 35.20495738407601 ], [ 139.019349399654971, 35.14116282810204 ], [ 139.094430840048489, 35.117473623398702 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-23", "NAME_1": "Aichi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.467903432279002, 34.670969249081665 ], [ 137.01609532100008, 34.578784710000036 ], [ 137.072830166000017, 34.664599003000035 ], [ 137.110850457000083, 34.625433661000045 ], [ 137.282254577, 34.731178516000057 ], [ 137.303452012000093, 34.689428676000034 ], [ 137.309256237, 34.725664278000067 ], [ 137.34081945299999, 34.726542951000056 ], [ 137.279958530000044, 34.808091539000088 ], [ 137.194432321000022, 34.80699872100007 ], [ 137.17083922900008, 34.763864997000042 ], [ 137.171470807000105, 34.784049803000073 ], [ 137.018247853000048, 34.783289035000053 ], [ 136.958231373000103, 34.832352185000047 ], [ 136.978851759, 34.924221096000053 ], [ 136.915564036000092, 34.775960012000041 ], [ 136.971496594000087, 34.696411325000042 ], [ 136.855967644000089, 34.739813544000071 ], [ 136.864263763000054, 34.836525620000089 ], [ 136.827725810000061, 34.87194149700008 ], [ 136.823464778000016, 34.954855423000083 ], [ 136.885729897000033, 35.089195486000051 ], [ 136.848864740000067, 35.039469415000042 ], [ 136.830118294000044, 35.078831393000087 ], [ 136.839327255000057, 35.032519579000052 ], [ 136.751800977000016, 35.026149807000081 ], [ 136.673446079772702, 35.138811549713239 ], [ 136.680060662669348, 35.236376654858702 ], [ 136.760985956436684, 35.347506822581749 ], [ 136.952912224919146, 35.384145413180249 ], [ 137.168609654312036, 35.242190252977764 ], [ 137.293201531825162, 35.267770087219731 ], [ 137.422030878122428, 35.215990302010823 ], [ 137.547862989984992, 35.270353908705886 ], [ 137.575148146569632, 35.188162543066881 ], [ 137.805573357624326, 35.194518744444451 ], [ 137.770226679117854, 35.081166490441149 ], [ 137.684857211890744, 35.002514959797509 ], [ 137.617987908914756, 34.879266669421213 ], [ 137.488435093104954, 34.809761868115686 ], [ 137.467903432279002, 34.670969249081665 ] ] ], [ [ [ 136.798059690000059, 34.876400640000043 ], [ 136.82350283300002, 34.862037441000041 ], [ 136.815002428000071, 34.839917089000039 ], [ 136.807730592000098, 34.839196455000035 ], [ 136.798059690000059, 34.876400640000043 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-24", "NAME_1": "Mie" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.751800977000016, 35.026149807000081 ], [ 136.659190300000091, 34.983954169000071 ], [ 136.639315940000074, 34.889048701000036 ], [ 136.534939939000083, 34.765695099000084 ], [ 136.519541863000086, 34.680853583000044 ], [ 136.551036004000025, 34.601996161000045 ], [ 136.632985873000052, 34.591131903000075 ], [ 136.916026238000086, 34.433986721000053 ], [ 136.916758660000028, 34.376166083000044 ], [ 136.875254754000025, 34.369330145000049 ], [ 136.909922722000033, 34.355047919000071 ], [ 136.883311394000089, 34.328314520000049 ], [ 136.895681186000047, 34.266913153000075 ], [ 136.835459832000083, 34.24640534100007 ], [ 136.79420006600003, 34.253119208000044 ], [ 136.773448113000086, 34.273098049000055 ], [ 136.841644727000016, 34.259466864000046 ], [ 136.846446160000028, 34.307562567000048 ], [ 136.702647332000083, 34.295152085000041 ], [ 136.706797722000033, 34.33429596600007 ], [ 136.608083530000044, 34.264593817000048 ], [ 136.522959832000083, 34.273098049000055 ], [ 136.514821811000047, 34.229803778000075 ], [ 136.336680535000028, 34.184027411000045 ], [ 136.299001498000052, 34.154282945000034 ], [ 136.308441602000016, 34.090033270000049 ], [ 136.252696160000028, 34.108587958000044 ], [ 136.218516472000033, 34.075140692000048 ], [ 136.279795769000089, 34.017320054000038 ], [ 136.273203972000033, 33.97142161700009 ], [ 136.232188347000033, 33.993150132000039 ], [ 136.204844597000033, 33.97142161700009 ], [ 136.228526238000086, 33.938381252000056 ], [ 136.104744225000104, 33.891411400000038 ], [ 135.993739570025127, 33.686259743392441 ], [ 135.950802849971524, 33.703937893119246 ], [ 135.847656691602992, 33.838141587963889 ], [ 136.017568801059269, 34.004849758309661 ], [ 136.097770624414693, 34.011645209258972 ], [ 136.118699578722499, 34.24114024522612 ], [ 136.071208938241853, 34.393818264101583 ], [ 136.177507358877506, 34.438621731207888 ], [ 136.211200392783894, 34.486396593428026 ], [ 136.059891798567605, 34.562851874414434 ], [ 136.03818769700456, 34.637162584385749 ], [ 136.072345818904409, 34.656308701984983 ], [ 136.003099400017277, 34.773691718298153 ], [ 136.08195763623587, 34.800925198039465 ], [ 136.112653435707443, 34.871050116969286 ], [ 136.240500930073836, 34.863117784458154 ], [ 136.381577590233519, 34.926395574696016 ], [ 136.443175897449692, 35.131835232509957 ], [ 136.398785842392613, 35.202606105687209 ], [ 136.528338658202415, 35.229426174278501 ], [ 136.673446079772702, 35.138811549713239 ], [ 136.751800977000016, 35.026149807000081 ] ] ], [ [ [ 136.891968442, 34.496692080000059 ], [ 136.908952542000065, 34.502362467000069 ], [ 136.883204290000094, 34.47536609000008 ], [ 136.872598946000039, 34.491139333000035 ], [ 136.891968442, 34.496692080000059 ] ] ], [ [ [ 136.890178716000037, 34.531200943000044 ], [ 136.910052351000104, 34.540109474000076 ], [ 136.849127376000069, 34.515037052000082 ], [ 136.86591662, 34.521326624000039 ], [ 136.890178716000037, 34.531200943000044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-30", "NAME_1": "Wakayama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.993739570025127, 33.686259743392441 ], [ 135.937066684, 33.61747297900007 ], [ 135.946071342000096, 33.577809933000083 ], [ 135.80918398599999, 33.505037213000037 ], [ 135.760020379000025, 33.433335679000038 ], [ 135.765570607000086, 33.481545488000052 ], [ 135.444834832000083, 33.550848700000074 ], [ 135.327695126000094, 33.671192935000079 ], [ 135.391612175000091, 33.713568427000041 ], [ 135.232582648000061, 33.781998007000084 ], [ 135.118683511000086, 33.892938704000073 ], [ 135.058859504, 33.880032887000084 ], [ 135.101222401000086, 33.954437547000055 ], [ 135.075737251000078, 33.977487938000081 ], [ 135.161631707000083, 34.024969794000071 ], [ 135.094493035000028, 34.067613023000035 ], [ 135.122839384000031, 34.137101115000064 ], [ 135.189952019000089, 34.149603583000044 ], [ 135.071299675000091, 34.28579336100006 ], [ 135.188471090368466, 34.274302707903644 ], [ 135.646842076200755, 34.371752428231957 ], [ 135.708440383416928, 34.212899075132214 ], [ 135.640020786829837, 34.193468735793488 ], [ 135.543024123364603, 34.064561876029757 ], [ 135.606482781655018, 33.977202867418384 ], [ 135.602917108237875, 33.875090236924848 ], [ 135.817270948695295, 33.872222195497898 ], [ 135.8631596214193, 33.787085273166781 ], [ 135.993739570025127, 33.686259743392441 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-27", "NAME_1": "Ōsaka" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.085271304201399, 34.299181985718477 ], [ 135.256564013, 34.376754752000068 ], [ 135.408323731, 34.540974933000086 ], [ 135.403590677000011, 34.658912182000051 ], [ 135.448507928598019, 34.729198310453626 ], [ 135.439826288152631, 34.90370962210136 ], [ 135.366755813430018, 34.953422349761638 ], [ 135.363345167845182, 34.997450670512023 ], [ 135.444012079194067, 34.98370473898251 ], [ 135.538218214698759, 34.909781603538136 ], [ 135.574391718203174, 34.950528469013591 ], [ 135.646376988207408, 34.899187934275744 ], [ 135.714796583895122, 34.785318915435596 ], [ 135.622037388314766, 34.553420925135583 ], [ 135.674023879098741, 34.464149889505791 ], [ 135.665445591440857, 34.381105862245704 ], [ 135.188471090368466, 34.274302707903644 ], [ 135.085271304201399, 34.299181985718477 ] ] ], [ [ [ 135.205179161000046, 34.430490875000089 ], [ 135.240970989000061, 34.454646595000042 ], [ 135.257054285000095, 34.435778061000065 ], [ 135.22441622000008, 34.416304280000077 ], [ 135.205179161000046, 34.430490875000089 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-33", "NAME_1": "Okayama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.304640557196393, 34.709108550329461 ], [ 134.208750847000033, 34.728013414000088 ], [ 134.278819207000083, 34.698228257000039 ], [ 134.155284050000091, 34.636867580000057 ], [ 134.189463738000086, 34.636867580000057 ], [ 134.147959832000083, 34.596991278000075 ], [ 134.08366946700005, 34.581529039000088 ], [ 133.994395379000025, 34.608710028000075 ], [ 133.936696811000047, 34.587225653000075 ], [ 133.942556186000047, 34.555121161000045 ], [ 134.000743035000028, 34.59446849200009 ], [ 134.04615319100003, 34.581529039000088 ], [ 133.936289910000028, 34.451239325000074 ], [ 133.794444207000083, 34.442938544000071 ], [ 133.723399285000028, 34.527573960000041 ], [ 133.470062696000014, 34.423976955000057 ], [ 133.522471550000091, 34.48305898600006 ], [ 133.443022871201748, 34.472672645534381 ], [ 133.362227004272768, 34.792708644688162 ], [ 133.310085483857961, 34.876889553510068 ], [ 133.304142693630411, 34.997398992769263 ], [ 133.264300164820725, 35.050625718801882 ], [ 133.377936639664085, 35.105764471852865 ], [ 133.397160271629218, 35.156614081074963 ], [ 133.501443313358209, 35.176974596400498 ], [ 133.592032098602431, 35.320996812352973 ], [ 133.755794712256147, 35.288492336851846 ], [ 133.823490839330702, 35.239037990710699 ], [ 133.929065789554443, 35.319394842797749 ], [ 133.98694339372264, 35.325027573763521 ], [ 134.006632114580384, 35.287872219227495 ], [ 134.113602329683772, 35.260742092273745 ], [ 134.1745805201748, 35.161626695315704 ], [ 134.395652297215747, 35.229219468703491 ], [ 134.39410200360453, 35.140697740108578 ], [ 134.263619012707181, 35.000964667085668 ], [ 134.256797724235525, 34.835858466295178 ], [ 134.310644566093742, 34.770332750456021 ], [ 134.304640557196393, 34.709108550329461 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-34", "NAME_1": "Hiroshima" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.443022871201748, 34.472672645534381 ], [ 133.34107506600003, 34.348049221000053 ], [ 133.281748894000089, 34.321519273000035 ], [ 133.269867384, 34.339178778000075 ], [ 133.314952019000089, 34.366034247000073 ], [ 133.258474155000044, 34.382310289000088 ], [ 133.27662194100003, 34.401760158000059 ], [ 133.24732506600003, 34.42649974200009 ], [ 133.182139519000089, 34.341376044000071 ], [ 133.20866946700005, 34.307806708000044 ], [ 133.185557488000086, 34.280503648000035 ], [ 133.076426629000025, 34.259588934000078 ], [ 133.072276238000086, 34.317531643000052 ], [ 133.114024285000028, 34.351752020000049 ], [ 133.133148634, 34.318182684000078 ], [ 133.168467644000089, 34.355047919000071 ], [ 133.093272332000083, 34.389797268000052 ], [ 133.059092644000089, 34.33234284100007 ], [ 132.853037957000083, 34.287339585000041 ], [ 132.836192254000025, 34.311102606000077 ], [ 132.762217644000089, 34.270331122000073 ], [ 132.771494988000086, 34.235296942000048 ], [ 132.656260613000086, 34.199286200000074 ], [ 132.613536004000025, 34.218451239000046 ], [ 132.554453972000033, 34.192368882000039 ], [ 132.503672722000033, 34.287339585000041 ], [ 132.517588738000086, 34.353013414000088 ], [ 132.383474155000044, 34.365668036000045 ], [ 132.222504102000016, 34.238959052000041 ], [ 132.240407747619429, 34.189805405894731 ], [ 132.126436802316562, 34.248762519374736 ], [ 132.041274041563724, 34.495207424183263 ], [ 132.109796990938321, 34.577553819453158 ], [ 132.143800084106601, 34.70501374019193 ], [ 132.247928095305269, 34.782941799524394 ], [ 132.509100782674977, 34.789504706476976 ], [ 132.667850782987216, 34.838235582206323 ], [ 132.642529332062963, 34.894692083972473 ], [ 132.839158156423764, 35.066490382924826 ], [ 132.993980748113017, 35.080546372816855 ], [ 133.264300164820725, 35.050625718801882 ], [ 133.304142693630411, 34.997398992769263 ], [ 133.310085483857961, 34.876889553510068 ], [ 133.362227004272768, 34.792708644688162 ], [ 133.443022871201748, 34.472672645534381 ] ] ], [ [ [ 132.555186394000089, 34.071356512000079 ], [ 132.455332879000025, 34.088120835000041 ], [ 132.519297722000033, 34.174383856000077 ], [ 132.551524285000028, 34.17064036700009 ], [ 132.551524285000028, 34.108587958000044 ], [ 132.577647332000083, 34.118882554000038 ], [ 132.555186394000089, 34.071356512000079 ] ] ], [ [ [ 132.738536004000025, 34.196966864000046 ], [ 132.76140384200005, 34.177150783000059 ], [ 132.740000847000033, 34.159898179000038 ], [ 132.688975457000083, 34.189886786000045 ], [ 132.738536004000025, 34.196966864000046 ] ] ], [ [ [ 132.92115319100003, 34.277329820000034 ], [ 132.916758660000028, 34.221869208000044 ], [ 132.849945509, 34.21515534100007 ], [ 132.846446160000028, 34.240220445000034 ], [ 132.92115319100003, 34.277329820000034 ] ] ], [ [ [ 132.338389519000089, 34.304429429000038 ], [ 132.325531446000014, 34.264715887000079 ], [ 132.267914259, 34.24445221600007 ], [ 132.298838738000086, 34.292222398000035 ], [ 132.338389519000089, 34.304429429000038 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-01", "NAME_1": "Hokkaidō" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.896494988000086, 44.158148505000042 ], [ 143.97584069100003, 44.148260809000078 ], [ 143.81373131600003, 44.168402411000045 ], [ 143.836273634, 44.175930080000057 ], [ 143.896494988000086, 44.158148505000042 ] ] ], [ [ [ 145.767425977000016, 43.387274481000077 ], [ 145.824961785000028, 43.373602606000077 ], [ 145.629161004000025, 43.309759833000044 ], [ 145.530609571000014, 43.168850002000056 ], [ 145.302500847000033, 43.173488674000055 ], [ 145.138438347000033, 43.128159898000035 ], [ 145.12273196700005, 43.08820221600007 ], [ 145.168223504000025, 43.079413153000075 ], [ 145.075694207000083, 43.034002997000073 ], [ 145.003103061000047, 43.044623114000046 ], [ 145.014333530000044, 42.989488023000035 ], [ 144.899750196000014, 42.979478257000039 ], [ 144.798675977000016, 43.046698309000078 ], [ 144.73560631600003, 42.979478257000039 ], [ 144.783457879000025, 42.934759833000044 ], [ 144.741953972000033, 42.924221096000053 ], [ 144.464854363000086, 42.937079169000071 ], [ 144.323008660000028, 43.002630927000041 ], [ 144.042002800000091, 42.926581122000073 ], [ 143.88640384200005, 42.844183661000045 ], [ 143.575205925000091, 42.603338934000078 ], [ 143.348968946000014, 42.319159247000073 ], [ 143.331065300000091, 42.106919664000088 ], [ 143.241547071000014, 41.92804596600007 ], [ 142.959727410000028, 42.105373440000051 ], [ 142.459971550000091, 42.271307684000078 ], [ 142.167751677000069, 42.459858508000082 ], [ 142.062580385000047, 42.470728272000088 ], [ 141.817149285000028, 42.599595445000034 ], [ 141.636485222000033, 42.615790106000077 ], [ 141.427744988000086, 42.564398505000042 ], [ 141.091563347000033, 42.391791083000044 ], [ 140.977305535000028, 42.299627997000073 ], [ 140.931651238000086, 42.32876211100006 ], [ 140.986827019000089, 42.339829820000034 ], [ 140.917979363000086, 42.372544664000088 ], [ 140.901377800000091, 42.420843817000048 ], [ 140.73365319100003, 42.564154364000046 ], [ 140.500661655000044, 42.579169012000079 ], [ 140.417002800000091, 42.538153387000079 ], [ 140.32545006600003, 42.432806708000044 ], [ 140.288584832000083, 42.350165106000077 ], [ 140.291758660000028, 42.259588934000078 ], [ 140.548838738000086, 42.105536200000074 ], [ 140.713552280000044, 42.133490302000041 ], [ 140.97429446700005, 41.913763739000046 ], [ 141.106944207000083, 41.871771552000041 ], [ 141.199961785000028, 41.79946523600006 ], [ 141.006358269000089, 41.712144273000035 ], [ 140.823985222000033, 41.770697333000044 ], [ 140.708018425000091, 41.74555084800005 ], [ 140.727224155000044, 41.811346747000073 ], [ 140.660411004000025, 41.827134507000039 ], [ 140.604258660000028, 41.736273505000042 ], [ 140.452891472000033, 41.681057033000059 ], [ 140.432383660000028, 41.530829169000071 ], [ 140.27466881600003, 41.482367255000042 ], [ 140.208994988000086, 41.401109117000033 ], [ 140.038259311000047, 41.442572333000044 ], [ 139.979828321000014, 41.581732489000046 ], [ 140.083018425000091, 41.800767320000034 ], [ 140.126719597000033, 41.814032294000071 ], [ 140.145030144000089, 41.982652085000041 ], [ 140.027598504000025, 42.105536200000074 ], [ 139.927500847000033, 42.138902085000041 ], [ 139.798350457000083, 42.235907294000071 ], [ 139.767588738000086, 42.310980536000045 ], [ 139.836761915000011, 42.423895575000074 ], [ 139.832774285000028, 42.588812567000048 ], [ 139.876963738000086, 42.663397528000075 ], [ 140.037852410000028, 42.686021226000037 ], [ 140.200368686000047, 42.814276434000078 ], [ 140.281504754000025, 42.75726959800005 ], [ 140.377126498000052, 42.893784898000035 ], [ 140.52116946700005, 42.996283270000049 ], [ 140.487315300000091, 43.082709052000041 ], [ 140.338063998000052, 43.210516669000071 ], [ 140.360118035000028, 43.325181382000039 ], [ 140.433929884, 43.32843659100007 ], [ 140.487152540000011, 43.372381903000075 ], [ 140.79615319100003, 43.195502020000049 ], [ 141.011241082000083, 43.228989976000037 ], [ 141.021983269000089, 43.174994208000044 ], [ 141.169118686000047, 43.140855210000041 ], [ 141.30396569100003, 43.197251695000034 ], [ 141.423350457000083, 43.317857164000088 ], [ 141.439707879000025, 43.407782294000071 ], [ 141.359873894000089, 43.523586330000057 ], [ 141.391368035000028, 43.579087632000039 ], [ 141.337412957000083, 43.712836005000042 ], [ 141.385020379000025, 43.79132721600007 ], [ 141.528168165000011, 43.841213283000059 ], [ 141.640635613000086, 43.937933661000045 ], [ 141.670176629000025, 44.066636460000041 ], [ 141.655446811000047, 44.276922919000071 ], [ 141.747243686000047, 44.424221096000053 ], [ 141.796071811000047, 44.641750393000052 ], [ 141.75359134200005, 44.885443427000041 ], [ 141.586436394000089, 45.16437409100007 ], [ 141.583750847000033, 45.251166083000044 ], [ 141.649180535000028, 45.341009833000044 ], [ 141.647959832000083, 45.437201239000046 ], [ 141.677256707000083, 45.444322007000039 ], [ 141.692149285000028, 45.402289130000042 ], [ 141.823252800000091, 45.422552802000041 ], [ 141.919444207000083, 45.515855210000041 ], [ 142.221202019000089, 45.299627997000073 ], [ 142.539317254000025, 45.018459377000056 ], [ 142.630707227000016, 44.883734442000048 ], [ 142.981455925000091, 44.586493231000077 ], [ 143.351410352000016, 44.381048895000049 ], [ 143.405284050000091, 44.317450262000079 ], [ 143.77662194100003, 44.189276434000078 ], [ 143.680430535000028, 44.182359117000033 ], [ 143.728282097000033, 44.113470770000049 ], [ 143.937754754000025, 44.096421617000033 ], [ 143.999196811000047, 44.133978583000044 ], [ 144.119313998000052, 44.129055080000057 ], [ 144.171722852000016, 44.106024481000077 ], [ 144.105479363000086, 44.03156159100007 ], [ 144.152842644000089, 44.01984284100007 ], [ 144.242930535000028, 44.119208075000074 ], [ 144.278330925000091, 44.036769924000055 ], [ 144.379405144000089, 43.95648834800005 ], [ 144.740489129000025, 43.914618231000077 ], [ 144.831228061000047, 43.942206122000073 ], [ 145.04851321700005, 44.122137762000079 ], [ 145.201670769000089, 44.205796617000033 ], [ 145.34148196700005, 44.345526434000078 ], [ 145.371836785000028, 44.248765367000033 ], [ 145.260427280000044, 44.069403387000079 ], [ 145.144297722000033, 43.952948309000078 ], [ 145.071462436000047, 43.774603583000044 ], [ 145.218516472000033, 43.589667059000078 ], [ 145.311696811000047, 43.366766669000071 ], [ 145.393565300000091, 43.305365302000041 ], [ 145.270030144000089, 43.346380927000041 ], [ 145.258311394000089, 43.327093817000048 ], [ 145.321625196000014, 43.276271877000056 ], [ 145.517100457000083, 43.228989976000037 ], [ 145.496592644000089, 43.270575262000079 ], [ 145.582286004000025, 43.335760809000078 ], [ 145.661631707000083, 43.379828192000048 ], [ 145.767425977000016, 43.387274481000077 ] ] ], [ [ [ 139.54851321700005, 42.243353583000044 ], [ 139.508962436000047, 42.100816148000035 ], [ 139.445648634, 42.054836330000057 ], [ 139.423838738000086, 42.191595770000049 ], [ 139.54851321700005, 42.243353583000044 ] ] ], [ [ [ 145.311534050000091, 43.593329169000071 ], [ 145.362803582000083, 43.554877020000049 ], [ 145.283539259, 43.51788971600007 ], [ 145.332041863000086, 43.565415757000039 ], [ 145.20240319100003, 43.613836981000077 ], [ 145.311534050000091, 43.593329169000071 ] ] ], [ [ [ 144.448252800000091, 43.942206122000073 ], [ 144.455088738000086, 43.942206122000073 ], [ 144.448985222000033, 43.94204336100006 ], [ 144.448252800000091, 43.942206122000073 ] ] ], [ [ [ 141.327159050000091, 45.172349351000037 ], [ 141.310069207000083, 45.124579169000071 ], [ 141.25123131600003, 45.099188544000071 ], [ 141.15007571700005, 45.14712148600006 ], [ 141.131846550000091, 45.210272528000075 ], [ 141.202647332000083, 45.249090887000079 ], [ 141.327159050000091, 45.172349351000037 ] ] ], [ [ [ 141.052744988000086, 45.450425523000035 ], [ 141.073578321000014, 45.424709377000056 ], [ 141.035655144000089, 45.264878648000035 ], [ 140.966807488000086, 45.463446356000077 ], [ 141.052744988000086, 45.450425523000035 ] ] ], [ [ [ 139.372894727000016, 41.522162177000041 ], [ 139.37427819100003, 41.504339911000045 ], [ 139.340830925000091, 41.49750397300005 ], [ 139.340342644000089, 41.523830471000053 ], [ 139.372894727000016, 41.522162177000041 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-47", "NAME_1": "Okinawa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.814707879000025, 24.391750393000052 ], [ 123.934418165000011, 24.36749909100007 ], [ 123.873057488000086, 24.258246161000045 ], [ 123.668223504000025, 24.296616929000038 ], [ 123.683767123000052, 24.323472398000035 ], [ 123.742360873000052, 24.319728908000059 ], [ 123.769867384, 24.418361721000053 ], [ 123.814707879000025, 24.391750393000052 ] ] ], [ [ [ 123.002614780000044, 24.474310614000046 ], [ 122.998383009, 24.439520575000074 ], [ 122.938649936000047, 24.444240627000056 ], [ 122.955577019000089, 24.473130601000037 ], [ 123.002614780000044, 24.474310614000046 ] ] ], [ [ [ 124.329112175000091, 24.583563544000071 ], [ 124.24187259200005, 24.363714911000045 ], [ 124.14031009200005, 24.341986395000049 ], [ 124.143077019000089, 24.384914455000057 ], [ 124.078379754000025, 24.435492255000042 ], [ 124.129161004000025, 24.46938711100006 ], [ 124.211924675000091, 24.446966864000046 ], [ 124.329112175000091, 24.583563544000071 ] ] ], [ [ [ 125.387217644000089, 24.782171942000048 ], [ 125.452647332000083, 24.744940497000073 ], [ 125.258799675000091, 24.733384507000039 ], [ 125.260264519000089, 24.885199286000045 ], [ 125.387217644000089, 24.782171942000048 ] ] ], [ [ [ 131.25513756600003, 25.874986070000091 ], [ 131.277110222000033, 25.858384507000039 ], [ 131.252452019000089, 25.819037177000041 ], [ 131.212087436000047, 25.829046942000048 ], [ 131.25513756600003, 25.874986070000091 ] ] ], [ [ [ 126.810069207000083, 26.35187409100007 ], [ 126.788910352000016, 26.30345286700009 ], [ 126.697764519000089, 26.369045315000051 ], [ 126.769867384, 26.388006903000075 ], [ 126.810069207000083, 26.35187409100007 ] ] ], [ [ [ 128.337657097000033, 26.796942450000074 ], [ 128.308116082000083, 26.700873114000046 ], [ 128.243337436000047, 26.633286851000037 ], [ 128.158864780000044, 26.618801174000055 ], [ 128.13835696700005, 26.554022528000075 ], [ 128.05591881600003, 26.550482489000046 ], [ 127.947276238000086, 26.451157945000091 ], [ 127.851735873000052, 26.441229559000078 ], [ 127.919932488000086, 26.309637762000079 ], [ 127.828298373000052, 26.316229559000078 ], [ 127.771006707000083, 26.216498114000046 ], [ 127.775401238000086, 26.185126044000071 ], [ 127.823578321000014, 26.186753648000035 ], [ 127.796885613000086, 26.139715887000079 ], [ 127.725352410000028, 26.089585679000038 ], [ 127.651703321000014, 26.084377346000053 ], [ 127.638194207000083, 26.214748440000051 ], [ 127.74187259200005, 26.320542710000041 ], [ 127.722504102000016, 26.429917710000041 ], [ 127.805186394000089, 26.44757721600007 ], [ 127.96021569100003, 26.564113674000055 ], [ 127.955902540000011, 26.594794012000079 ], [ 127.885590040000011, 26.620184637000079 ], [ 127.878265821000014, 26.694525458000044 ], [ 127.987315300000091, 26.692938544000071 ], [ 127.995616082000083, 26.639227606000077 ], [ 128.057383660000028, 26.644761460000041 ], [ 128.225922071000014, 26.800970770000049 ], [ 128.255056186000047, 26.886297919000071 ], [ 128.337657097000033, 26.796942450000074 ] ] ], [ [ [ 128.700694207000083, 27.454820054000038 ], [ 128.613129102000016, 27.364325262000079 ], [ 128.526866082000083, 27.371893622000073 ], [ 128.538422071000014, 27.417629299000055 ], [ 128.700694207000083, 27.454820054000038 ] ] ], [ [ [ 128.988780144000089, 27.811102606000077 ], [ 129.024261915000011, 27.75657786700009 ], [ 128.976328972000033, 27.695502020000049 ], [ 128.929453972000033, 27.686712958000044 ], [ 128.890879754000025, 27.741888739000046 ], [ 128.894541863000086, 27.891302802000041 ], [ 128.947032097000033, 27.914129950000074 ], [ 128.988780144000089, 27.811102606000077 ] ] ], [ [ [ 129.296641472000033, 28.119574286000045 ], [ 129.350433790000011, 28.086493231000077 ], [ 129.221446160000028, 28.099107164000088 ], [ 129.180837436000047, 28.190252997000073 ], [ 129.269297722000033, 28.174872137000079 ], [ 129.251800977000016, 28.143784898000035 ], [ 129.296641472000033, 28.119574286000045 ] ] ], [ [ [ 130.030284050000091, 28.373480536000045 ], [ 129.995453321000014, 28.290920315000051 ], [ 129.913584832000083, 28.297105210000041 ], [ 129.975596550000091, 28.343247789000088 ], [ 130.030284050000091, 28.373480536000045 ] ] ], [ [ [ 129.707530144000089, 28.462144273000035 ], [ 129.715993686000047, 28.42914459800005 ], [ 129.619313998000052, 28.400783596000053 ], [ 129.498871290000011, 28.287502346000053 ], [ 129.447438998000052, 28.290920315000051 ], [ 129.420176629000025, 28.249945380000042 ], [ 129.467946811000047, 28.215765692000048 ], [ 129.351817254000025, 28.160549221000053 ], [ 129.375987175000091, 28.119574286000045 ], [ 129.286631707000083, 28.177923895000049 ], [ 129.269297722000033, 28.229437567000048 ], [ 129.14576256600003, 28.249945380000042 ], [ 129.270843946000014, 28.255357164000088 ], [ 129.290375196000014, 28.284084377000056 ], [ 129.227712436000047, 28.304592190000051 ], [ 129.263926629000025, 28.32884349200009 ], [ 129.475352410000028, 28.421291408000059 ], [ 129.516368035000028, 28.39329661700009 ], [ 129.62623131600003, 28.48273346600007 ], [ 129.61646569100003, 28.438544012000079 ], [ 129.644053582000083, 28.43976471600007 ], [ 129.67310631600003, 28.509833075000074 ], [ 129.707530144000089, 28.462144273000035 ] ] ], [ [ [ 127.80982506600003, 26.735419012000079 ], [ 127.811208530000044, 26.706976630000042 ], [ 127.758555535000028, 26.712876695000091 ], [ 127.754649285000028, 26.728583075000074 ], [ 127.80982506600003, 26.735419012000079 ] ] ], [ [ [ 127.99537194100003, 27.091742255000042 ], [ 127.975759311000047, 27.039740302000041 ], [ 127.925791863000086, 27.009751695000091 ], [ 127.935720248000052, 27.025091864000046 ], [ 127.99537194100003, 27.091742255000042 ] ] ], [ [ [ 131.289724155000044, 25.951361395000049 ], [ 131.321299675000091, 25.947699286000045 ], [ 131.327891472000033, 25.937079169000071 ], [ 131.309580925000091, 25.922756252000056 ], [ 131.289724155000044, 25.951361395000049 ] ] ], [ [ [ 127.222178582000083, 26.598944403000075 ], [ 127.242360873000052, 26.596747137000079 ], [ 127.244151238000086, 26.586411851000037 ], [ 127.214854363000086, 26.577460028000075 ], [ 127.222178582000083, 26.598944403000075 ] ] ], [ [ [ 128.45435631600003, 27.04751211100006 ], [ 128.448578321000014, 27.020697333000044 ], [ 128.396250847000033, 27.040757554000038 ], [ 128.42896569100003, 27.066473700000074 ], [ 128.45435631600003, 27.04751211100006 ] ] ], [ [ [ 128.236582879000025, 27.866522528000075 ], [ 128.24341881600003, 27.857245184000078 ], [ 128.241547071000014, 27.845363674000055 ], [ 128.232269727000016, 27.852850653000075 ], [ 128.236582879000025, 27.866522528000075 ] ] ], [ [ [ 125.202891472000033, 24.846258856000077 ], [ 125.205251498000052, 24.80499909100007 ], [ 125.140147332000083, 24.816392320000091 ], [ 125.163584832000083, 24.854641018000052 ], [ 125.202891472000033, 24.846258856000077 ] ] ], [ [ [ 127.369639519000089, 26.214585679000038 ], [ 127.361094597000033, 26.164007880000042 ], [ 127.353526238000086, 26.153998114000046 ], [ 127.346202019000089, 26.206366278000075 ], [ 127.369639519000089, 26.214585679000038 ] ] ], [ [ [ 123.606293165000125, 25.738999742000146 ], [ 123.600433790000011, 25.739365953000174 ], [ 123.60279381600003, 25.745469468000067 ], [ 123.606293165000125, 25.738999742000146 ] ] ], [ [ [ 123.594248894000202, 25.752793687000064 ], [ 123.59302819100003, 25.744370835000041 ], [ 123.588633660000141, 25.751532294000071 ], [ 123.594248894000202, 25.752793687000064 ] ] ], [ [ [ 123.559906446000014, 25.756822007000153 ], [ 123.55819746200018, 25.754339911000102 ], [ 123.555593295000108, 25.757554428999981 ], [ 123.559906446000014, 25.756822007000153 ] ] ], [ [ [ 123.545339389000219, 25.761786200000131 ], [ 123.528900587000066, 25.761786200000131 ], [ 123.511485222000147, 25.758083401000079 ], [ 123.531423373000052, 25.773342190000051 ], [ 123.545339389000219, 25.761786200000131 ] ] ], [ [ [ 123.620453321000014, 25.774481512000136 ], [ 123.620453321000014, 25.773586330000171 ], [ 123.618011915000011, 25.774481512000136 ], [ 123.620453321000014, 25.774481512000136 ] ] ], [ [ [ 123.595306837000066, 25.801906643000109 ], [ 123.595469597000033, 25.797267971 ], [ 123.592377149000185, 25.797430731000134 ], [ 123.595306837000066, 25.801906643000109 ] ] ], [ [ [ 124.568858269000202, 25.896226303999981 ], [ 124.567718946000127, 25.89443594 ], [ 124.565277540000125, 25.895738023000035 ], [ 124.566823764000105, 25.898423570000091 ], [ 124.568858269000202, 25.896226303999981 ] ] ], [ [ [ 123.673024936000161, 25.928697006999982 ], [ 123.672048373000166, 25.927476304000152 ], [ 123.67172285200013, 25.929754950000017 ], [ 123.673024936000161, 25.928697006999982 ] ] ], [ [ [ 123.675873243000069, 25.918158270000106 ], [ 123.672699415000011, 25.926825262000136 ], [ 123.679209832000197, 25.930772203000117 ], [ 123.685801629000139, 25.922796942000048 ], [ 123.675873243000069, 25.918158270000106 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-10", "NAME_1": "Gunma" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.091954787283498, 37.039238186093371 ], [ 139.217373488895305, 36.929503282350595 ], [ 139.359587029717545, 36.902037257713232 ], [ 139.3363843122861, 36.860075995410853 ], [ 139.368940463731406, 36.814290676373616 ], [ 139.305946893434339, 36.644740302123239 ], [ 139.44764367121843, 36.572703355275621 ], [ 139.343515660019648, 36.358556220393211 ], [ 139.440512322585619, 36.268484199086515 ], [ 139.605463494644482, 36.252412828489241 ], [ 139.674038120862519, 36.152212225913502 ], [ 139.111850213716366, 36.27086131409834 ], [ 139.033767124752899, 36.138673000858262 ], [ 138.75073530529005, 36.027181097929315 ], [ 138.700919223942947, 35.969536037757905 ], [ 138.614516228840785, 36.031030992186516 ], [ 138.613275995390836, 36.116400458514306 ], [ 138.570281203414766, 36.153349107475321 ], [ 138.60469770683369, 36.186370347813295 ], [ 138.587024366681135, 36.270215358951646 ], [ 138.629864129925636, 36.310652166963905 ], [ 138.623662958178897, 36.383955187481888 ], [ 138.583768751626508, 36.416898912554757 ], [ 138.45065026329894, 36.397571926003536 ], [ 138.388896925552672, 36.434520574964552 ], [ 138.404709913731494, 36.57037791620786 ], [ 138.507442661849268, 36.68887197476181 ], [ 138.794143508416141, 36.757808336185747 ], [ 138.964727411440776, 36.901675523406652 ], [ 138.965192499434238, 36.967407944820764 ], [ 139.091954787283498, 37.039238186093371 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-20", "NAME_1": "Nagano" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.679525180742417, 36.730652370810219 ], [ 138.499226109397341, 36.682050686290097 ], [ 138.493903435894822, 36.645773830897554 ], [ 138.430651483179304, 36.618126939106958 ], [ 138.376804641321087, 36.46782603614264 ], [ 138.438402947637883, 36.400284938698917 ], [ 138.614826288102677, 36.400284938698917 ], [ 138.632654656986801, 36.323907172078293 ], [ 138.587024366681135, 36.270215358951646 ], [ 138.60469770683369, 36.186370347813295 ], [ 138.570281203414766, 36.153349107475321 ], [ 138.613275995390836, 36.116400458514306 ], [ 138.614516228840785, 36.031030992186516 ], [ 138.700919223942947, 35.969536037757905 ], [ 138.715698684246831, 35.896465562135973 ], [ 138.622991163711163, 35.853987534996747 ], [ 138.585267369293661, 35.891969712732021 ], [ 138.45276899589237, 35.890316067232675 ], [ 138.42817101538003, 35.939150295749528 ], [ 138.360268182730351, 35.957805487832957 ], [ 138.278877801869044, 35.854891873461156 ], [ 138.216504348297008, 35.850396023157941 ], [ 138.180175816061023, 35.786730659292459 ], [ 138.202655063979932, 35.747094835158521 ], [ 138.168548618923523, 35.698803209000857 ], [ 138.196143833870792, 35.627851466871675 ], [ 138.135940789735628, 35.547081204533924 ], [ 138.112531365829796, 35.357377021432399 ], [ 137.805573357624326, 35.194518744444451 ], [ 137.565226271774918, 35.193123481363557 ], [ 137.538716262445519, 35.237177638737023 ], [ 137.578403761624259, 35.3284382193483 ], [ 137.564451125419055, 35.371122952062592 ], [ 137.604448683859573, 35.384507148386149 ], [ 137.585225050995291, 35.495094712850687 ], [ 137.528174270026511, 35.539226386388577 ], [ 137.510759312292407, 35.634569404354522 ], [ 137.444045038047989, 35.733374742050671 ], [ 137.323225538627639, 35.801639309006873 ], [ 137.39278201677655, 35.880575060490628 ], [ 137.462803582918923, 35.889385891245865 ], [ 137.57731855690588, 36.031237697761526 ], [ 137.539439731958055, 36.117899075282082 ], [ 137.624499139923273, 36.31499298853555 ], [ 137.565381301405864, 36.377004706002367 ], [ 137.719480421783942, 36.58983409306893 ], [ 137.732657911633282, 36.77480988187051 ], [ 137.80107750911975, 36.803386948748653 ], [ 137.868721959350864, 36.919245509872383 ], [ 137.989334752296941, 36.896972968427747 ], [ 138.044215122929472, 36.807185167061789 ], [ 138.26394331283359, 36.850825914184554 ], [ 138.365745884065291, 36.977407334880581 ], [ 138.499691197390803, 37.015389513515231 ], [ 138.555243361591806, 37.000635890733747 ], [ 138.581546666245572, 36.908548488721749 ], [ 138.666812778886538, 36.835839749205036 ], [ 138.679525180742417, 36.730652370810219 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-09", "NAME_1": "Tochigi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.440512322585619, 36.268484199086515 ], [ 139.336539341017669, 36.379123440394437 ], [ 139.44764367121843, 36.572703355275621 ], [ 139.305946893434339, 36.644740302123239 ], [ 139.368940463731406, 36.814290676373616 ], [ 139.3363843122861, 36.860075995410853 ], [ 139.359587029717545, 36.902037257713232 ], [ 139.885859816677112, 37.139180406250716 ], [ 140.098094923641725, 37.105823269128564 ], [ 140.185014682681413, 37.0529324407795 ], [ 140.234520704766624, 36.990248927945629 ], [ 140.266766798748677, 36.718637600045156 ], [ 140.221033155655505, 36.677193102579622 ], [ 140.235399204809369, 36.516866970234446 ], [ 140.170286900120345, 36.401602688313403 ], [ 139.95350426690834, 36.362121893810354 ], [ 139.703648715615714, 36.204689643112545 ], [ 139.653729283279745, 36.203139350400704 ], [ 139.588668655434049, 36.260112617003642 ], [ 139.440512322585619, 36.268484199086515 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-21", "NAME_1": "Gifu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.276303338927846, 36.452245591960491 ], [ 137.294906854167948, 36.421136380439577 ], [ 137.341312290829478, 36.439688218836181 ], [ 137.565381301405864, 36.377004706002367 ], [ 137.624499139923273, 36.31499298853555 ], [ 137.539439731958055, 36.117899075282082 ], [ 137.57731855690588, 36.031237697761526 ], [ 137.462803582918923, 35.889385891245865 ], [ 137.39278201677655, 35.880575060490628 ], [ 137.323225538627639, 35.801639309006873 ], [ 137.444045038047989, 35.733374742050671 ], [ 137.510759312292407, 35.634569404354522 ], [ 137.528174270026511, 35.539226386388577 ], [ 137.585225050995291, 35.495094712850687 ], [ 137.604448683859573, 35.384507148386149 ], [ 137.564451125419055, 35.371122952062592 ], [ 137.578403761624259, 35.3284382193483 ], [ 137.547862989984992, 35.270353908705886 ], [ 137.422030878122428, 35.215990302010823 ], [ 137.293201531825162, 35.267770087219731 ], [ 137.168609654312036, 35.242190252977764 ], [ 136.952912224919146, 35.384145413180249 ], [ 136.760985956436684, 35.347506822581749 ], [ 136.680060662669348, 35.236376654858702 ], [ 136.673446079772702, 35.138811549713239 ], [ 136.528338658202415, 35.229426174278501 ], [ 136.398785842392613, 35.202606105687209 ], [ 136.375376417587518, 35.266323147295395 ], [ 136.397390578412455, 35.452771715342351 ], [ 136.257295770183646, 35.645628159811679 ], [ 136.304269646726766, 35.744226792832194 ], [ 136.350261672238275, 35.767920437578084 ], [ 136.484155307821197, 35.739110825803948 ], [ 136.76858239216358, 35.790993963800361 ], [ 136.802120396439136, 35.850370184736221 ], [ 136.698560826021208, 35.943542792365974 ], [ 136.720885045208661, 36.074800930518506 ], [ 136.816796503056139, 36.235204576330091 ], [ 136.773233270299102, 36.291996974880476 ], [ 136.814522739932499, 36.294477444478446 ], [ 136.850489536962527, 36.342794908158453 ], [ 136.935703973659429, 36.32656850793029 ], [ 136.957976516003328, 36.273315945274646 ], [ 137.14576867118717, 36.432711899834317 ], [ 137.276303338927846, 36.452245591960491 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-25", "NAME_1": "Shiga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.257295770183646, 35.645628159811679 ], [ 136.397390578412455, 35.452771715342351 ], [ 136.376151564842758, 35.231493231827187 ], [ 136.443175897449692, 35.131835232509957 ], [ 136.40720910041955, 34.96688406045098 ], [ 136.311607700934587, 34.879292506943614 ], [ 136.112653435707443, 34.871050116969286 ], [ 136.08195763623587, 34.800925198039465 ], [ 136.003099400017277, 34.773691718298153 ], [ 135.928892042833468, 34.860301418975268 ], [ 135.858818800747031, 34.880067654198854 ], [ 135.814583775320898, 35.001093858294894 ], [ 135.826986118814261, 35.263300076237499 ], [ 135.742856886835852, 35.337584946887773 ], [ 135.817529332013009, 35.384688015539439 ], [ 135.876492140899586, 35.381587429216438 ], [ 135.930959100382097, 35.502639471734199 ], [ 135.979534947379875, 35.480418606233684 ], [ 136.135494418832309, 35.557933255315447 ], [ 136.127742955273106, 35.663534043960965 ], [ 136.257295770183646, 35.645628159811679 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-11", "NAME_1": "Saitama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.111850213716366, 36.27086131409834 ], [ 139.674038120862519, 36.152212225913502 ], [ 139.785917597419143, 36.036792914361513 ], [ 139.866532831025324, 35.888817450464956 ], [ 139.863949008639793, 35.778126533212912 ], [ 139.757805616735823, 35.795283108528622 ], [ 139.411470167714015, 35.751978258190036 ], [ 139.013613315901807, 35.877293606115018 ], [ 138.868970982324868, 35.837761134768527 ], [ 138.715698684246831, 35.896465562135973 ], [ 138.700919223942947, 35.969536037757905 ], [ 138.741433547220367, 36.019868883042477 ], [ 139.033767124752899, 36.138673000858262 ], [ 139.111850213716366, 36.27086131409834 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-19", "NAME_1": "Yamanashi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.360268182730351, 35.957805487832957 ], [ 138.42817101538003, 35.939150295749528 ], [ 138.45276899589237, 35.890316067232675 ], [ 138.572865024900921, 35.894579373539216 ], [ 138.634463332116979, 35.853264065484211 ], [ 138.715698684246831, 35.896465562135973 ], [ 138.922817824183198, 35.835384019756702 ], [ 138.992684360694625, 35.732547918851367 ], [ 139.121772089410342, 35.653999741894552 ], [ 139.099241163748616, 35.525661322911674 ], [ 138.933256463814701, 35.437062079051714 ], [ 138.900338576264176, 35.380941474069743 ], [ 138.829696893396886, 35.364663397897459 ], [ 138.697198520894972, 35.350762436737057 ], [ 138.54340945887941, 35.417037462308997 ], [ 138.50713260258749, 35.194286200447777 ], [ 138.472354363962722, 35.161678372159145 ], [ 138.418972610097853, 35.165114854367005 ], [ 138.342956577783752, 35.292058010268931 ], [ 138.235883009892973, 35.303685208305694 ], [ 138.241309035283734, 35.517780667243983 ], [ 138.168548618923523, 35.698803209000857 ], [ 138.216504348297008, 35.850396023157941 ], [ 138.278877801869044, 35.854891873461156 ], [ 138.360268182730351, 35.957805487832957 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "JP-29", "NAME_1": "Nara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.036482374661773, 34.715349026136607 ], [ 136.072345818904409, 34.656308701984983 ], [ 136.03818769700456, 34.637162584385749 ], [ 136.059891798567605, 34.562851874414434 ], [ 136.211200392783894, 34.486396593428026 ], [ 136.177507358877506, 34.438621731207888 ], [ 136.071208938241853, 34.393818264101583 ], [ 136.118699578722499, 34.24114024522612 ], [ 136.101491326563405, 34.018466497730685 ], [ 136.017568801059269, 34.004849758309661 ], [ 135.847656691602992, 33.838141587963889 ], [ 135.785231561187516, 33.87904348396961 ], [ 135.618575066785866, 33.857132676831554 ], [ 135.606482781655018, 33.977202867418384 ], [ 135.543024123364603, 34.064561876029757 ], [ 135.640020786829837, 34.193468735793488 ], [ 135.708440383416928, 34.212899075132214 ], [ 135.646842076200755, 34.371752428231957 ], [ 135.674023879098741, 34.464149889505791 ], [ 135.622037388314766, 34.553420925135583 ], [ 135.706269973080794, 34.759532376517939 ], [ 135.832257114574077, 34.699122625908444 ], [ 136.036482374661773, 34.715349026136607 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/korea.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/korea.geojson new file mode 100644 index 000000000000..c33b0a0ed63b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/korea.geojson @@ -0,0 +1,23 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "KR-42", "NAME_1": "Gangwon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.971754192000049, 38.300040589000062 ], [ 128.03986372900016, 38.30427805600003 ], [ 128.108490031000088, 38.323501689000025 ], [ 128.172362102000136, 38.355954489000041 ], [ 128.225588827000024, 38.399776103000065 ], [ 128.24873986800003, 38.425769348000117 ], [ 128.26806685400004, 38.453519593000053 ], [ 128.281089315000088, 38.484370423000044 ], [ 128.285430136000059, 38.519846293000072 ], [ 128.276955201000078, 38.554056091000078 ], [ 128.274784790000012, 38.571496887000123 ], [ 128.281089315000088, 38.584415996000033 ], [ 128.308374472000082, 38.601340027000035 ], [ 128.36491946700005, 38.624335028000075 ], [ 128.39478358100007, 38.578074133000129 ], [ 128.441416863000086, 38.505804755000042 ], [ 128.450694207000083, 38.474107164000088 ], [ 128.474457227000016, 38.42609284100007 ], [ 128.562754754000025, 38.288967190000051 ], [ 128.631602410000028, 38.144964911000045 ], [ 128.642832879000025, 38.129299221000053 ], [ 128.678721550000091, 38.094305731000077 ], [ 128.692474806000064, 38.064927476000037 ], [ 128.859141472000033, 37.876776434000078 ], [ 128.923838738000086, 37.802313544000071 ], [ 129.001312696000014, 37.734361070000034 ], [ 129.012299024000072, 37.727240302000041 ], [ 129.064219597000033, 37.678859768000052 ], [ 129.066905144000089, 37.658433335000041 ], [ 129.067149285000028, 37.633856512000079 ], [ 129.073334181000064, 37.613023179000038 ], [ 129.108734571000014, 37.597398179000038 ], [ 129.118988477000016, 37.580633856000077 ], [ 129.148203972000033, 37.505113023000035 ], [ 129.161224806000064, 37.487616278000075 ], [ 129.176849806000064, 37.480169989000046 ], [ 129.189952019000089, 37.46938711100006 ], [ 129.235443556000064, 37.398260809000078 ], [ 129.262787306000064, 37.370917059000078 ], [ 129.272227410000028, 37.355861721000053 ], [ 129.275889519000089, 37.339911200000074 ], [ 129.282806837000066, 37.324448960000041 ], [ 129.331065300000091, 37.282171942000048 ], [ 129.346446160000028, 37.24750397300005 ], [ 129.360118035000028, 37.171779690000051 ], [ 129.378916863000086, 37.130113023000035 ], [ 129.430186394000089, 37.073065497000073 ], [ 129.434092644000089, 37.061102606000077 ], [ 129.428233269000089, 37.04954661700009 ], [ 129.418955925000091, 37.03851959800005 ], [ 129.413096550000091, 37.027736721000053 ], [ 129.412689649000072, 37.018052476000037 ], [ 129.419932488000086, 36.986761786000045 ], [ 129.428721550000091, 36.897406317000048 ], [ 129.437998894000089, 36.856146552000041 ], [ 129.471202019000089, 36.771877346000053 ], [ 129.47388756600003, 36.730617580000057 ], [ 129.463470899000072, 36.692450262000079 ], [ 129.440928582000083, 36.657782294000071 ], [ 129.422618035000028, 36.61664459800005 ], [ 129.412597283737568, 36.616990058444401 ], [ 129.379214309093072, 36.623139553347698 ], [ 129.34717492068603, 36.611744900206929 ], [ 129.277928501798897, 36.632286281786435 ], [ 129.28898725815543, 36.656083279319887 ], [ 129.285886671832372, 36.678407498507227 ], [ 129.277101678599593, 36.703134671128169 ], [ 129.274414504325819, 36.731143297225344 ], [ 129.287747023806105, 36.757704983398241 ], [ 129.298495721800123, 36.782871406490187 ], [ 129.290640903654776, 36.790312811686874 ], [ 129.282062615996892, 36.796849881117112 ], [ 129.286093378306759, 36.819561673032752 ], [ 129.21281619710976, 36.823954168749879 ], [ 129.191318801121724, 36.833746853234686 ], [ 129.168374465209354, 36.841627508902377 ], [ 129.158969354352166, 36.860024319466731 ], [ 129.151631301043608, 36.881315008980437 ], [ 129.118661736649756, 36.893820706160625 ], [ 129.09809451664853, 36.918728745934857 ], [ 129.093650344088019, 36.951129869547799 ], [ 129.100885043709695, 36.975934557433845 ], [ 129.11793826713722, 36.986269843378523 ], [ 129.136645136064089, 36.991876735922631 ], [ 129.165790642823822, 36.982652493118053 ], [ 129.189458449148106, 36.996811834898267 ], [ 129.179743279928402, 37.019859524497463 ], [ 129.148530714720664, 37.034897366320365 ], [ 129.11432091687675, 37.041279405220337 ], [ 129.087139113079502, 37.02980723681452 ], [ 129.060990838956059, 37.024510403532304 ], [ 129.024093865939108, 37.038049627688167 ], [ 128.984923129798517, 37.043320624347302 ], [ 128.971693964005226, 37.039005642096697 ], [ 128.960738560436198, 37.040090846815133 ], [ 128.952263624666443, 37.049160060888084 ], [ 128.94006798674809, 37.053216660720295 ], [ 128.911645948601631, 37.035517483045396 ], [ 128.881673618642481, 37.026112372188209 ], [ 128.879399856418217, 37.043630682709818 ], [ 128.881880324217491, 37.061019802022201 ], [ 128.864517043326828, 37.067918605759019 ], [ 128.845190056775664, 37.07145844255308 ], [ 128.831134067782955, 37.091173000933225 ], [ 128.803848912097578, 37.092878323275954 ], [ 128.77666710830033, 37.082698066062903 ], [ 128.758477004210363, 37.064973049066964 ], [ 128.765091587107008, 37.040375068554567 ], [ 128.761887648895822, 37.017404894220476 ], [ 128.755996534612336, 36.996036689441667 ], [ 128.730468378113073, 36.997948717359407 ], [ 128.700599400042279, 37.003090521910053 ], [ 128.675898064943681, 37.011384588727765 ], [ 128.65026655475765, 37.022262477931008 ], [ 128.63021609869395, 37.032623603196726 ], [ 128.609958937954616, 37.039651598142711 ], [ 128.584534133343482, 37.042002874732873 ], [ 128.558489211108167, 37.046111152307788 ], [ 128.5321342314096, 37.059753730150533 ], [ 128.508363072297925, 37.074145615927421 ], [ 128.484488560398745, 37.074016424718195 ], [ 128.460407342924441, 37.067866929814954 ], [ 128.438909946936406, 37.064818020335338 ], [ 128.420719842846438, 37.063732814717582 ], [ 128.413485142325385, 37.076884467044522 ], [ 128.393641391836695, 37.093343411269416 ], [ 128.395398391022923, 37.107606105837078 ], [ 128.385476516228209, 37.116339423125851 ], [ 128.33783084521724, 37.111998603352845 ], [ 128.30744510320892, 37.103885402789103 ], [ 128.298350050714248, 37.100474758103587 ], [ 128.289461704693849, 37.100629787734476 ], [ 128.275302362014372, 37.106882636324599 ], [ 128.264346959344607, 37.116752835175191 ], [ 128.281503533760997, 37.137991847845456 ], [ 128.310338983057591, 37.154373276805245 ], [ 128.321914504250913, 37.175431423221596 ], [ 128.303931105735842, 37.179746406371521 ], [ 128.246880323867799, 37.186929430049133 ], [ 128.191069778147721, 37.202794094172077 ], [ 128.167918735760964, 37.188531398705038 ], [ 128.148178338959156, 37.180263170309047 ], [ 128.124303827059975, 37.184268093297874 ], [ 128.104253370996275, 37.171917425748575 ], [ 128.071180454714181, 37.157215480709851 ], [ 128.038004184745319, 37.150807603388159 ], [ 128.025601841251955, 37.164682726126898 ], [ 128.025601841251955, 37.186154282793893 ], [ 127.987567986673184, 37.21827118646604 ], [ 127.936615024663638, 37.204525254936527 ], [ 127.917701451061021, 37.186025092483987 ], [ 127.923179153295223, 37.137423407963865 ], [ 127.90292199075725, 37.126338813185669 ], [ 127.896204055072985, 37.119801743755431 ], [ 127.888452589715143, 37.11440155678639 ], [ 127.879874302057374, 37.117605495896896 ], [ 127.871399367186996, 37.121817125360053 ], [ 127.840806918704288, 37.123522446803463 ], [ 127.810421176695854, 37.117786363050186 ], [ 127.818999465253114, 37.166052150786129 ], [ 127.712649366874757, 37.15445079207035 ], [ 127.607022739807576, 37.131351427426409 ], [ 127.66128299371519, 37.211475735516785 ], [ 127.705724724716219, 37.298498847343922 ], [ 127.767323032831655, 37.403117784058452 ], [ 127.774971145401992, 37.425571194455017 ], [ 127.769183383906011, 37.448050442373983 ], [ 127.782309197811173, 37.466240546464007 ], [ 127.800809361163033, 37.484146429713917 ], [ 127.82065311075246, 37.490683499144154 ], [ 127.831091750383962, 37.508486030505878 ], [ 127.819722934765537, 37.523859768213697 ], [ 127.804840122573523, 37.53396251106102 ], [ 127.781068964361111, 37.53605540613205 ], [ 127.756677687625142, 37.543419297862272 ], [ 127.722984653718754, 37.547010809701078 ], [ 127.666760695949279, 37.571712144799619 ], [ 127.641439244125763, 37.579928697251546 ], [ 127.616324497877258, 37.593028672735045 ], [ 127.588729282929989, 37.596413478998841 ], [ 127.561960891182139, 37.589695543314633 ], [ 127.539740024782304, 37.604578355506703 ], [ 127.541497023968418, 37.620778917313146 ], [ 127.552039016387425, 37.637780462997966 ], [ 127.556173129686158, 37.65746918385571 ], [ 127.556483188947936, 37.677752183916141 ], [ 127.530024855562601, 37.670982571388549 ], [ 127.518139276006764, 37.683178209306902 ], [ 127.547284783665759, 37.710308336260709 ], [ 127.542427199055965, 37.728395087563229 ], [ 127.53436567623487, 37.746352646757202 ], [ 127.540153435932325, 37.759969387077547 ], [ 127.539843377569809, 37.776247464149151 ], [ 127.537879672808572, 37.79164704027869 ], [ 127.588625930142484, 37.821283474352811 ], [ 127.60919315014371, 37.826580309433723 ], [ 127.620665317650264, 37.840532944739607 ], [ 127.625832960622574, 37.881098944860412 ], [ 127.602165155197667, 37.909779365425379 ], [ 127.582734816758375, 37.912905789270724 ], [ 127.564234654305778, 37.919649563376652 ], [ 127.550282017201312, 37.949208482185668 ], [ 127.528164503588869, 37.950086982228413 ], [ 127.504496698164075, 37.948846746979768 ], [ 127.478658482403034, 37.963755398492822 ], [ 127.466359490797799, 37.990213730978894 ], [ 127.461295200612994, 38.037265122787176 ], [ 127.451683384180797, 38.060958767533066 ], [ 127.444965447597269, 38.065532131302803 ], [ 127.437110630351299, 38.064498603427808 ], [ 127.431839633692107, 38.060467841117941 ], [ 127.425225050795461, 38.059718533183741 ], [ 127.4081718282672, 38.069226995929114 ], [ 127.366417270640454, 38.05757396126927 ], [ 127.328073357699282, 38.064912014577772 ], [ 127.312570428782237, 38.072353421573098 ], [ 127.296757439704038, 38.083618883504641 ], [ 127.296240675766512, 38.102480781163081 ], [ 127.303992141124354, 38.120257473203822 ], [ 127.30967654803419, 38.127027085731413 ], [ 127.313707310344057, 38.13351247831821 ], [ 127.307092727447412, 38.137879137412256 ], [ 127.298617791677657, 38.13948110606816 ], [ 127.290556267957299, 38.13813751893133 ], [ 127.283528273910633, 38.133848375102389 ], [ 127.270299107217966, 38.120309150047206 ], [ 127.255519646914081, 38.108501084857153 ], [ 127.232782016576721, 38.105426336955873 ], [ 127.212731561412397, 38.11617503494989 ], [ 127.209010858364422, 38.125941881012977 ], [ 127.207460564753205, 38.13583791828529 ], [ 127.200225865131529, 38.139326077336591 ], [ 127.192577752561192, 38.132969875958963 ], [ 127.189993931075037, 38.122789617846593 ], [ 127.18978722460065, 38.089871731195444 ], [ 127.176764765281632, 38.07380036149749 ], [ 127.140074497839805, 38.087494615284243 ], [ 127.106484816720922, 38.111420803127544 ], [ 127.094702589952476, 38.121187649190631 ], [ 127.08230024555985, 38.119947414841306 ], [ 127.071241490102693, 38.132608140753064 ], [ 127.064316847944156, 38.149092923399678 ], [ 127.055221796348746, 38.157748725423289 ], [ 127.044369744667961, 38.164595852316722 ], [ 127.035998162585088, 38.180305487708097 ], [ 127.021104429000104, 38.187760032000099 ], [ 126.985872023774846, 38.205394395534881 ], [ 126.966064635574412, 38.213038015991629 ], [ 126.971918579000089, 38.218908590000112 ], [ 127.026747274000058, 38.254461976000087 ], [ 127.090464315000077, 38.285855408000103 ], [ 127.157488648000026, 38.307223613000119 ], [ 127.221980835000124, 38.312701315000098 ], [ 127.253813518000072, 38.310039978000063 ], [ 127.377113485, 38.318514913000072 ], [ 127.47193973800006, 38.295906474000034 ], [ 127.502067099000101, 38.298076884000025 ], [ 127.560823202000108, 38.31208119700004 ], [ 127.753731323000011, 38.325362041000048 ], [ 127.761947877000068, 38.320969543000061 ], [ 127.7747119550001, 38.306448466000106 ], [ 127.787010946000066, 38.296681620000058 ], [ 127.800756877000083, 38.293916932000101 ], [ 127.866851034000149, 38.304846497000071 ], [ 127.971754192000049, 38.300040589000062 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-41", "NAME_1": "Gyeonggi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.667458927000098, 37.827810161000016 ], [ 126.660516398000084, 37.913810934000125 ], [ 126.665787395000109, 37.937633769000101 ], [ 126.677828003000059, 37.944584249000073 ], [ 126.696328166000114, 37.946186219000097 ], [ 126.722114706000127, 37.953937683000035 ], [ 126.761905558000137, 37.979000753000022 ], [ 126.847326702000032, 38.082017721000014 ], [ 126.864793335000059, 38.096022034000029 ], [ 126.90334395400015, 38.119586487000035 ], [ 126.919828736000056, 38.134598491000091 ], [ 126.94013424700006, 38.174172571000028 ], [ 126.953728475000048, 38.200666810000072 ], [ 126.966064635574412, 38.213038015991629 ], [ 126.985872023774846, 38.205394395534881 ], [ 127.021104429000104, 38.187760032000099 ], [ 127.035998162585088, 38.180305487708097 ], [ 127.044369744667961, 38.164595852316722 ], [ 127.055221796348746, 38.157748725423289 ], [ 127.064316847944156, 38.149092923399678 ], [ 127.071241490102693, 38.132608140753064 ], [ 127.08230024555985, 38.119947414841306 ], [ 127.094702589952476, 38.121187649190631 ], [ 127.106484816720922, 38.111420803127544 ], [ 127.140074497839805, 38.087494615284243 ], [ 127.176764765281632, 38.07380036149749 ], [ 127.18978722460065, 38.089871731195444 ], [ 127.189993931075037, 38.122789617846593 ], [ 127.192577752561192, 38.132969875958963 ], [ 127.200225865131529, 38.139326077336591 ], [ 127.207460564753205, 38.13583791828529 ], [ 127.209010858364422, 38.125941881012977 ], [ 127.212731561412397, 38.11617503494989 ], [ 127.232782016576721, 38.105426336955873 ], [ 127.255519646914081, 38.108501084857153 ], [ 127.270299107217966, 38.120309150047206 ], [ 127.283528273910633, 38.133848375102389 ], [ 127.290556267957299, 38.13813751893133 ], [ 127.298617791677657, 38.13948110606816 ], [ 127.307092727447412, 38.137879137412256 ], [ 127.313707310344057, 38.13351247831821 ], [ 127.30967654803419, 38.127027085731413 ], [ 127.303992141124354, 38.120257473203822 ], [ 127.296240675766512, 38.102480781163081 ], [ 127.296757439704038, 38.083618883504641 ], [ 127.312570428782237, 38.072353421573098 ], [ 127.328073357699282, 38.064912014577772 ], [ 127.366417270640454, 38.05757396126927 ], [ 127.4081718282672, 38.069226995929114 ], [ 127.425225050795461, 38.059718533183741 ], [ 127.431839633692107, 38.060467841117941 ], [ 127.437110630351299, 38.064498603427808 ], [ 127.444965447597269, 38.065532131302803 ], [ 127.451683384180797, 38.060958767533066 ], [ 127.461295200612994, 38.037265122787176 ], [ 127.466359490797799, 37.990213730978894 ], [ 127.478658482403034, 37.963755398492822 ], [ 127.504496698164075, 37.948846746979768 ], [ 127.528164503588869, 37.950086982228413 ], [ 127.550282017201312, 37.949208482185668 ], [ 127.564234654305778, 37.919649563376652 ], [ 127.582734816758375, 37.912905789270724 ], [ 127.602165155197667, 37.909779365425379 ], [ 127.625832960622574, 37.881098944860412 ], [ 127.620665317650264, 37.840532944739607 ], [ 127.60919315014371, 37.826580309433723 ], [ 127.588625930142484, 37.821283474352811 ], [ 127.537879672808572, 37.79164704027869 ], [ 127.539843377569809, 37.776247464149151 ], [ 127.540153435932325, 37.759969387077547 ], [ 127.53436567623487, 37.746352646757202 ], [ 127.542427199055965, 37.728395087563229 ], [ 127.547284783665759, 37.710308336260709 ], [ 127.518139276006764, 37.683178209306902 ], [ 127.530024855562601, 37.670982571388549 ], [ 127.556483188947936, 37.677752183916141 ], [ 127.556173129686158, 37.65746918385571 ], [ 127.552039016387425, 37.637780462997966 ], [ 127.541497023968418, 37.620778917313146 ], [ 127.539740024782304, 37.604578355506703 ], [ 127.561960891182139, 37.589695543314633 ], [ 127.588729282929989, 37.596413478998841 ], [ 127.616324497877258, 37.593028672735045 ], [ 127.641439244125763, 37.579928697251546 ], [ 127.666760695949279, 37.571712144799619 ], [ 127.722984653718754, 37.547010809701078 ], [ 127.756677687625142, 37.543419297862272 ], [ 127.781068964361111, 37.53605540613205 ], [ 127.804840122573523, 37.53396251106102 ], [ 127.819722934765537, 37.523859768213697 ], [ 127.831091750383962, 37.508486030505878 ], [ 127.82065311075246, 37.490683499144154 ], [ 127.800809361163033, 37.484146429713917 ], [ 127.782309197811173, 37.466240546464007 ], [ 127.769183383906011, 37.448050442373983 ], [ 127.774971145401992, 37.425571194455017 ], [ 127.767323032831655, 37.403117784058452 ], [ 127.705724724716219, 37.298498847343922 ], [ 127.66128299371519, 37.211475735516785 ], [ 127.607022739807576, 37.131351427426409 ], [ 127.599994744861533, 37.120706082219897 ], [ 127.591933222040552, 37.111042588944315 ], [ 127.583871698320195, 37.106546739540363 ], [ 127.576120232962353, 37.101559963721343 ], [ 127.570332473265012, 37.09375682241938 ], [ 127.56547488775584, 37.085256049127338 ], [ 127.517725864856743, 37.014278469475755 ], [ 127.492611118608238, 37.000274156427167 ], [ 127.486926710799025, 37.006294461020559 ], [ 127.467393019572114, 37.00957591449685 ], [ 127.451890089755807, 36.996398423748246 ], [ 127.443621861359816, 36.979784450791726 ], [ 127.431529576228854, 36.967252916089194 ], [ 127.40589806514356, 36.958390408490516 ], [ 127.389568313027212, 36.944231064911719 ], [ 127.380576613320045, 36.914801337311872 ], [ 127.347296990563564, 36.905861314448089 ], [ 127.304818964323658, 36.889479885488299 ], [ 127.259963821273232, 36.878937893069292 ], [ 127.212731561412397, 36.884053860097538 ], [ 127.174077590108595, 36.910047105489525 ], [ 127.130876092557628, 36.925808416824964 ], [ 127.047780390252797, 36.897360541156047 ], [ 127.008609654112206, 36.89738638047703 ], [ 126.961997511875666, 36.905060330569768 ], [ 126.961688664283514, 36.90511165123467 ], [ 126.974457227000016, 36.912909247000073 ], [ 126.98951256600003, 36.91860586100006 ], [ 127.000336134, 36.92837148600006 ], [ 127.007172071000014, 36.952622789000088 ], [ 127.005218946000014, 36.956935940000051 ], [ 126.995941602000016, 36.964789130000042 ], [ 126.994151238000086, 36.966864325000074 ], [ 126.999522332000083, 36.970892645000049 ], [ 127.004893425000091, 36.97142161700009 ], [ 127.010020379000025, 36.971258856000077 ], [ 127.023936394000089, 36.977443752000056 ], [ 127.032806837000066, 36.978501695000034 ], [ 127.039398634, 36.982001044000071 ], [ 127.042002800000091, 36.99359772300005 ], [ 126.982188347000033, 36.980169989000046 ], [ 126.973155144000089, 36.969956773000035 ], [ 126.976328972000033, 36.939032294000071 ], [ 126.969086134, 36.932033596000053 ], [ 126.945811394000089, 36.925930080000057 ], [ 126.912689649000072, 36.929632880000042 ], [ 126.873383009, 36.94798411700009 ], [ 126.837901238000086, 36.975897528000075 ], [ 126.824409671000012, 37.00261617600006 ], [ 126.884287957000083, 37.007879950000074 ], [ 126.884287957000083, 37.014105536000045 ], [ 126.88013756600003, 37.015692450000074 ], [ 126.870697462000066, 37.021470445000034 ], [ 126.881927931000064, 37.022650458000044 ], [ 126.892588738000086, 37.022162177000041 ], [ 126.902354363000086, 37.019476630000042 ], [ 126.910980665000011, 37.014105536000045 ], [ 126.906748894000089, 37.033148505000042 ], [ 126.893077019000089, 37.050116278000075 ], [ 126.883148634, 37.069566148000035 ], [ 126.890472852000016, 37.095933335000041 ], [ 126.879161004000025, 37.100002346000053 ], [ 126.870453321000014, 37.090765692000048 ], [ 126.865082227000016, 37.07485586100006 ], [ 126.863291863000086, 37.058783270000049 ], [ 126.85865319100003, 37.04132721600007 ], [ 126.849131707000083, 37.037298895000049 ], [ 126.839691602000016, 37.044867255000042 ], [ 126.820567254000025, 37.041693427000041 ], [ 126.801280144000089, 37.03774648600006 ], [ 126.755218946000014, 37.048814195000034 ], [ 126.75552653200009, 37.060141064000049 ], [ 126.751190535000092, 37.07009237300008 ], [ 126.754813952000063, 37.083556184000088 ], [ 126.752858864000018, 37.100687967000056 ], [ 126.764451014000088, 37.117657804000089 ], [ 126.778268350000076, 37.132804006000072 ], [ 126.794181693000041, 37.138920300000052 ], [ 126.8112099, 37.144120531000056 ], [ 126.836517774000072, 37.144435940000051 ], [ 126.863536004000025, 37.150295315000051 ], [ 126.869151238000086, 37.15696849200009 ], [ 126.870697462000066, 37.175482489000046 ], [ 126.86451256600003, 37.179103908000059 ], [ 126.850596550000091, 37.173041083000044 ], [ 126.829844597000033, 37.158677476000037 ], [ 126.816905144000089, 37.16079336100006 ], [ 126.807383660000028, 37.165269273000035 ], [ 126.802256707000083, 37.173163153000075 ], [ 126.802338087000066, 37.185370184000078 ], [ 126.77857506600003, 37.175685940000051 ], [ 126.759287957000083, 37.16469961100006 ], [ 126.723643425000091, 37.133856512000079 ], [ 126.714447462000066, 37.127997137000079 ], [ 126.702891472000033, 37.124701239000046 ], [ 126.692149285000028, 37.124986070000034 ], [ 126.685638868000069, 37.130113023000035 ], [ 126.686045769000089, 37.13930898600006 ], [ 126.692149285000028, 37.148260809000078 ], [ 126.706879102000016, 37.164862372000073 ], [ 126.677744988000086, 37.159491278000075 ], [ 126.668467644000089, 37.161810614000046 ], [ 126.66529381600003, 37.175482489000046 ], [ 126.670664910000028, 37.185614325000074 ], [ 126.68287194100003, 37.191351630000042 ], [ 126.696787957000083, 37.195135809000078 ], [ 126.706879102000016, 37.199652411000045 ], [ 126.719004754000025, 37.212876695000034 ], [ 126.715830925000091, 37.216294664000088 ], [ 126.689056837000066, 37.213324286000045 ], [ 126.680186394000089, 37.217678127000056 ], [ 126.673187696000014, 37.228420315000051 ], [ 126.666514519000089, 37.241848049000055 ], [ 126.658457879000025, 37.254299221000053 ], [ 126.662933790000011, 37.25531647300005 ], [ 126.665782097000033, 37.256903387000079 ], [ 126.672129754000025, 37.261704820000034 ], [ 126.679453972000033, 37.257228908000059 ], [ 126.690521681000064, 37.257717190000051 ], [ 126.709971550000091, 37.261704820000034 ], [ 126.72584069100003, 37.258205471000053 ], [ 126.739105665000011, 37.251654364000046 ], [ 126.752207879000025, 37.248277085000041 ], [ 126.767588738000086, 37.254299221000053 ], [ 126.766368035000028, 37.243150132000039 ], [ 126.767588738000086, 37.232326565000051 ], [ 126.772471550000091, 37.223944403000075 ], [ 126.781993035000028, 37.22016022300005 ], [ 126.792491082000083, 37.223456122000073 ], [ 126.797373894000089, 37.232855536000045 ], [ 126.802338087000066, 37.254299221000053 ], [ 126.819183790000011, 37.274400132000039 ], [ 126.833018425000091, 37.272853908000059 ], [ 126.848643425000091, 37.265326239000046 ], [ 126.870697462000066, 37.26788971600007 ], [ 126.865977410000028, 37.276068427000041 ], [ 126.859873894000089, 37.282131252000056 ], [ 126.852142774000072, 37.286200262000079 ], [ 126.842784050000091, 37.288397528000075 ], [ 126.82889134800007, 37.287984005000055 ], [ 126.822544474000097, 37.295606773000088 ], [ 126.807602697000107, 37.297765931000072 ], [ 126.795559630000071, 37.294724614000074 ], [ 126.783573079, 37.295267564000085 ], [ 126.764643172000092, 37.298266746000081 ], [ 126.733310089000042, 37.30617043500007 ], [ 126.689792719000025, 37.332486420000066 ], [ 126.687487904000022, 37.344027753000034 ], [ 126.706865099000083, 37.366468577000035 ], [ 126.720045091000088, 37.377053382000042 ], [ 126.751571080041231, 37.384385076709918 ], [ 126.759010576876562, 37.388759052688101 ], [ 126.772138300042457, 37.396477362740086 ], [ 126.786400994610176, 37.418388169878142 ], [ 126.795806106366626, 37.443037828133242 ], [ 126.786297641822671, 37.455440172525925 ], [ 126.770174595281333, 37.463837592131142 ], [ 126.759425897287315, 37.483448797723838 ], [ 126.75952925007482, 37.507064928103944 ], [ 126.700618117132308, 37.552023423941819 ], [ 126.649330092909395, 37.550579080360251 ], [ 126.603792371620557, 37.549296673202889 ], [ 126.598906704, 37.558087735000072 ], [ 126.59110467000005, 37.572870008000052 ], [ 126.582250045000023, 37.58448345700009 ], [ 126.571934549000048, 37.598494570000071 ], [ 126.560514625, 37.607353315000069 ], [ 126.560285771000054, 37.620847372000071 ], [ 126.556162957000083, 37.641017971000053 ], [ 126.545420769000089, 37.67251211100006 ], [ 126.531016472000033, 37.754706122000073 ], [ 126.534922722000033, 37.76821523600006 ], [ 126.548187696000014, 37.77016836100006 ], [ 126.603282097000033, 37.75454336100006 ], [ 126.620860222000033, 37.757554429000038 ], [ 126.635508660000028, 37.763006903000075 ], [ 126.648529493000069, 37.765041408000059 ], [ 126.661875847000033, 37.757961330000057 ], [ 126.666840040000011, 37.746161200000074 ], [ 126.668793165000011, 37.727728583000044 ], [ 126.667328321000014, 37.708807684000078 ], [ 126.661875847000033, 37.695868231000077 ], [ 126.661468946000014, 37.672430731000077 ], [ 126.692149285000028, 37.652044989000046 ], [ 126.731049024000072, 37.639064846000053 ], [ 126.755218946000014, 37.637884833000044 ], [ 126.736420118000069, 37.653306382000039 ], [ 126.678802931000064, 37.68626536700009 ], [ 126.695567254000025, 37.721747137000079 ], [ 126.700531446000014, 37.742987372000073 ], [ 126.696299675000091, 37.757961330000057 ], [ 126.686859571000014, 37.773627020000049 ], [ 126.686044697000114, 37.782182705000068 ], [ 126.684906446000014, 37.79360586100006 ], [ 126.689463738000086, 37.813666083000044 ], [ 126.699961785000028, 37.829657294000071 ], [ 126.692474806000064, 37.837103583000044 ], [ 126.682627800000091, 37.836004950000074 ], [ 126.667458927000098, 37.827810161000016 ] ], [ [ 127.115889926678733, 37.550576484017483 ], [ 127.12508833196091, 37.578895169376551 ], [ 127.124468215235879, 37.603312282735658 ], [ 127.114029575604377, 37.625558987557213 ], [ 127.107414991808355, 37.657391669489925 ], [ 127.090258417391965, 37.680801093395701 ], [ 127.054291620361937, 37.683126533362781 ], [ 127.023079055154199, 37.677209581556895 ], [ 127.003131951878004, 37.660285549338596 ], [ 126.989075961986032, 37.63666941985781 ], [ 126.966028274185419, 37.613415025582924 ], [ 126.921173130235729, 37.610004380897465 ], [ 126.915385369639012, 37.594139715875144 ], [ 126.913731724139666, 37.576931463716051 ], [ 126.892544387413523, 37.566699531458198 ], [ 126.868773228301848, 37.560291653237186 ], [ 126.836733839894691, 37.57579458305355 ], [ 126.808725213797516, 37.577215685455485 ], [ 126.793739047918621, 37.551661688735919 ], [ 126.817406854242904, 37.528665675980164 ], [ 126.837250603832217, 37.506212267382239 ], [ 126.842521599592146, 37.477506008395551 ], [ 126.862468702868341, 37.467067368764049 ], [ 126.891407504952326, 37.460142727504831 ], [ 126.920759719085709, 37.429472765555658 ], [ 126.963651158274274, 37.428310045572118 ], [ 126.98194461515186, 37.43068716148332 ], [ 126.999514601617534, 37.438697008360236 ], [ 127.024319288604261, 37.444846503263477 ], [ 127.049330682065261, 37.449445706354254 ], [ 127.060802849571814, 37.428516751147129 ], [ 127.090155063705197, 37.440247301072077 ], [ 127.118680454639275, 37.445518296831892 ], [ 127.144622024087084, 37.457765610694366 ], [ 127.1541304868324, 37.470839749554784 ], [ 127.17128706304743, 37.48944326389551 ], [ 127.163225539327073, 37.496626288472442 ], [ 127.162915480964671, 37.514713039774961 ], [ 127.178108352418462, 37.522722887551197 ], [ 127.192060987724403, 37.528329780095248 ], [ 127.194748162897326, 37.543238429809662 ], [ 127.187100051226366, 37.557785346116816 ], [ 127.166739536800151, 37.557552802120085 ], [ 127.143278436050878, 37.550834866435935 ], [ 127.115889926678733, 37.550576484017483 ] ] ], [ [ [ 126.295258009, 37.802476304000038 ], [ 126.314952019000089, 37.802720445000034 ], [ 126.33326256600003, 37.800441799000055 ], [ 126.342539910000028, 37.792141018000052 ], [ 126.335948113000086, 37.774400132000039 ], [ 126.318207227000016, 37.762274481000077 ], [ 126.296234571000014, 37.761135158000059 ], [ 126.254567905000044, 37.76821523600006 ], [ 126.24537194100003, 37.765366929000038 ], [ 126.234141472000033, 37.760646877000056 ], [ 126.224457227000016, 37.760443427000041 ], [ 126.220469597000033, 37.771307684000078 ], [ 126.222666863000086, 37.774725653000075 ], [ 126.234141472000033, 37.802313544000071 ], [ 126.246429884, 37.811753648000035 ], [ 126.260508660000028, 37.81476471600007 ], [ 126.276540561000047, 37.811509507000039 ], [ 126.295258009, 37.802476304000038 ] ] ], [ [ [ 126.35670006600003, 37.695135809000078 ], [ 126.369151238000086, 37.687323309000078 ], [ 126.378754102000016, 37.678697007000039 ], [ 126.380707227000016, 37.669175523000035 ], [ 126.370127800000091, 37.658351955000057 ], [ 126.349864129000025, 37.657375393000052 ], [ 126.281993035000028, 37.699286200000074 ], [ 126.290782097000033, 37.705633856000077 ], [ 126.294932488000086, 37.713568427000041 ], [ 126.300629102000016, 37.732367255000042 ], [ 126.303721550000091, 37.737209377000056 ], [ 126.308604363000086, 37.742336330000057 ], [ 126.314219597000033, 37.746079820000034 ], [ 126.31999759200005, 37.747219143000052 ], [ 126.323741082000083, 37.74555084800005 ], [ 126.326182488000086, 37.74249909100007 ], [ 126.327647332000083, 37.738267320000034 ], [ 126.330739780000044, 37.719956773000035 ], [ 126.331879102000016, 37.716498114000046 ], [ 126.336680535000028, 37.709906317000048 ], [ 126.34302819100003, 37.704291083000044 ], [ 126.35670006600003, 37.695135809000078 ] ] ], [ [ [ 126.507823113000086, 37.596869208000044 ], [ 126.500173373000052, 37.596177476000037 ], [ 126.494151238000086, 37.59837474200009 ], [ 126.48365319100003, 37.607407945000034 ], [ 126.476084832000083, 37.611070054000038 ], [ 126.470713738000086, 37.609564520000049 ], [ 126.466563347000033, 37.60618724200009 ], [ 126.462738477000016, 37.604315497000073 ], [ 126.410166863000086, 37.602036851000037 ], [ 126.390635613000086, 37.609279690000051 ], [ 126.370127800000091, 37.631048895000049 ], [ 126.400889519000089, 37.63743724200009 ], [ 126.408213738000086, 37.641302802000041 ], [ 126.416677280000044, 37.651841539000088 ], [ 126.415537957000083, 37.656683661000045 ], [ 126.409922722000033, 37.659735419000071 ], [ 126.404795769000089, 37.665187893000052 ], [ 126.369151238000086, 37.71906159100007 ], [ 126.366953972000033, 37.727240302000041 ], [ 126.370616082000083, 37.737982489000046 ], [ 126.369639519000089, 37.785345770000049 ], [ 126.373789910000028, 37.796128648000035 ], [ 126.383474155000044, 37.799017645000049 ], [ 126.407074415000011, 37.820705471000053 ], [ 126.425303582000083, 37.824448960000041 ], [ 126.441254102000016, 37.815334377000056 ], [ 126.45630944100003, 37.801214911000045 ], [ 126.471446160000028, 37.790228583000044 ], [ 126.50359134200005, 37.777411200000074 ], [ 126.516368035000028, 37.767238674000055 ], [ 126.521494988000086, 37.751166083000044 ], [ 126.520355665000011, 37.743109442000048 ], [ 126.515147332000083, 37.729559637000079 ], [ 126.514008009, 37.723537502000056 ], [ 126.516286655000044, 37.716782945000034 ], [ 126.525563998000052, 37.703273830000057 ], [ 126.527679884, 37.695868231000077 ], [ 126.53093509200005, 37.659898179000038 ], [ 126.527679884, 37.651516018000052 ], [ 126.533213738000086, 37.646144924000055 ], [ 126.538828972000033, 37.635443427000041 ], [ 126.542002800000091, 37.631048895000049 ], [ 126.529063347000033, 37.624904690000051 ], [ 126.517832879000025, 37.60382721600007 ], [ 126.507823113000086, 37.596869208000044 ] ] ], [ [ [ 124.732676629000025, 37.980454820000034 ], [ 124.743662957000083, 37.969671942000048 ], [ 124.742035352000016, 37.955023505000042 ], [ 124.72820071700005, 37.947007554000038 ], [ 124.708750847000033, 37.956284898000035 ], [ 124.68327884200005, 37.95453522300005 ], [ 124.677989129000025, 37.952541408000059 ], [ 124.678396030000044, 37.94204336100006 ], [ 124.688161655000044, 37.938177802000041 ], [ 124.699880405000044, 37.936509507000039 ], [ 124.705332879000025, 37.932684637000079 ], [ 124.684906446000014, 37.919989325000074 ], [ 124.644053582000083, 37.924505927000041 ], [ 124.613617384, 37.945054429000038 ], [ 124.624034050000091, 37.980454820000034 ], [ 124.649424675000091, 37.97329336100006 ], [ 124.704925977000016, 37.988674221000053 ], [ 124.732676629000025, 37.980454820000034 ] ] ], [ [ [ 126.099864129000025, 37.228013414000088 ], [ 126.092784050000091, 37.224839585000041 ], [ 126.088633660000028, 37.225978908000059 ], [ 126.088715040000011, 37.229559637000079 ], [ 126.091807488000086, 37.245917059000078 ], [ 126.097422722000033, 37.259426174000055 ], [ 126.10474694100003, 37.267523505000042 ], [ 126.112803582000083, 37.263088283000059 ], [ 126.119802280000044, 37.253607489000046 ], [ 126.126963738000086, 37.248928127000056 ], [ 126.15162194100003, 37.23859284100007 ], [ 126.159190300000091, 37.231919664000088 ], [ 126.155039910000028, 37.225734768000052 ], [ 126.142344597000033, 37.215399481000077 ], [ 126.133311394000089, 37.21234772300005 ], [ 126.121592644000089, 37.210923570000034 ], [ 126.111664259, 37.214544989000046 ], [ 126.10515384200005, 37.223578192000048 ], [ 126.102549675000091, 37.228664455000057 ], [ 126.099864129000025, 37.228013414000088 ] ] ], [ [ [ 126.48406009200005, 37.278998114000046 ], [ 126.494395379000025, 37.273504950000074 ], [ 126.498301629000025, 37.261419989000046 ], [ 126.493907097000033, 37.25726959800005 ], [ 126.483164910000028, 37.254339911000045 ], [ 126.479014519000089, 37.247748114000046 ], [ 126.47820071700005, 37.241603908000059 ], [ 126.469493035000028, 37.233465887000079 ], [ 126.458181186000047, 37.231268622000073 ], [ 126.45045006600003, 37.235825914000088 ], [ 126.442230665000011, 37.235174872000073 ], [ 126.435720248000052, 37.238430080000057 ], [ 126.433441602000016, 37.251044012000079 ], [ 126.435313347000033, 37.26398346600007 ], [ 126.443532748000052, 37.273098049000055 ], [ 126.461192254000025, 37.280585028000075 ], [ 126.48406009200005, 37.278998114000046 ] ] ], [ [ [ 126.613942905000044, 37.255194403000075 ], [ 126.616384311000047, 37.250555731000077 ], [ 126.61882571700005, 37.242010809000078 ], [ 126.613536004000025, 37.232814846000053 ], [ 126.562510613000086, 37.200384833000044 ], [ 126.539317254000025, 37.198065497000073 ], [ 126.539561394000089, 37.203111070000034 ], [ 126.55046634200005, 37.214911200000074 ], [ 126.551931186000047, 37.221665757000039 ], [ 126.547373894000089, 37.227484442000048 ], [ 126.560394727000016, 37.239325262000079 ], [ 126.560801629000025, 37.251288153000075 ], [ 126.555430535000028, 37.266058661000045 ], [ 126.548024936000047, 37.276312567000048 ], [ 126.540782097000033, 37.282945054000038 ], [ 126.542979363000086, 37.284979559000078 ], [ 126.559418165000011, 37.278631903000075 ], [ 126.57349694100003, 37.288478908000059 ], [ 126.576670769000089, 37.287665106000077 ], [ 126.573741082000083, 37.278998114000046 ], [ 126.577891472000033, 37.271144924000055 ], [ 126.589610222000033, 37.265773830000057 ], [ 126.60865319100003, 37.259426174000055 ], [ 126.613942905000044, 37.255194403000075 ] ] ], [ [ [ 125.688243035000028, 37.679266669000071 ], [ 125.699229363000086, 37.678127346000053 ], [ 125.706228061000047, 37.672308661000045 ], [ 125.703135613000086, 37.661444403000075 ], [ 125.693614129000025, 37.653957424000055 ], [ 125.687836134, 37.651760158000059 ], [ 125.684580925000091, 37.657294012000079 ], [ 125.679209832000083, 37.669663804000038 ], [ 125.680430535000028, 37.678290106000077 ], [ 125.688243035000028, 37.679266669000071 ] ] ], [ [ [ 124.71648196700005, 37.846909898000035 ], [ 124.724457227000016, 37.843654690000051 ], [ 124.72584069100003, 37.837388414000088 ], [ 124.721364780000044, 37.82843659100007 ], [ 124.718272332000083, 37.818182684000078 ], [ 124.714203321000014, 37.809556382000039 ], [ 124.706797722000033, 37.806341864000046 ], [ 124.698985222000033, 37.806870835000041 ], [ 124.692393425000091, 37.80499909100007 ], [ 124.687266472000033, 37.800767320000034 ], [ 124.684580925000091, 37.799994208000044 ], [ 124.684580925000091, 37.802639065000051 ], [ 124.684743686000047, 37.803941148000035 ], [ 124.681488477000016, 37.808823960000041 ], [ 124.67351321700005, 37.81704336100006 ], [ 124.676524285000028, 37.824896552000041 ], [ 124.693369988000086, 37.835516669000071 ], [ 124.704112175000091, 37.84438711100006 ], [ 124.709157748000052, 37.847560940000051 ], [ 124.71648196700005, 37.846909898000035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-44", "NAME_1": "South Chungcheong" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.405413865000014, 36.458835528000066 ], [ 126.412933790000011, 36.440334377000056 ], [ 126.426442905000044, 36.423570054000038 ], [ 126.432139519000089, 36.407945054000038 ], [ 126.422618035000028, 36.411525783000059 ], [ 126.37818444100003, 36.409491278000075 ], [ 126.363780144000089, 36.411363023000035 ], [ 126.361052808000068, 36.42632098100006 ], [ 126.365873928000042, 36.431644584000082 ], [ 126.37355578800009, 36.437336702000039 ], [ 126.377614780000044, 36.446193752000056 ], [ 126.353770379000025, 36.434068101000037 ], [ 126.342621290000011, 36.438381252000056 ], [ 126.345713738000086, 36.453314520000049 ], [ 126.363780144000089, 36.473456122000073 ], [ 126.356944207000083, 36.479641018000052 ], [ 126.343272332000083, 36.466620184000078 ], [ 126.338640291000047, 36.475611029000049 ], [ 126.328143101000023, 36.471089495000058 ], [ 126.333606169000063, 36.495093329000042 ], [ 126.32976321700005, 36.531724351000037 ], [ 126.325153224000019, 36.55386421500009 ], [ 126.314818112000012, 36.581786863000048 ], [ 126.323462903000063, 36.590890510000065 ], [ 126.34118120200003, 36.604133602000047 ], [ 126.360243600000103, 36.609360123000044 ], [ 126.373545769000089, 36.592230536000045 ], [ 126.375336134, 36.586086330000057 ], [ 126.370993698, 36.578754296000056 ], [ 126.363367399000026, 36.573839777000046 ], [ 126.364266309000072, 36.566970229000049 ], [ 126.381114129000025, 36.536281643000052 ], [ 126.383799675000091, 36.526516018000052 ], [ 126.379405144000089, 36.518377997000073 ], [ 126.384565650000013, 36.511198198000045 ], [ 126.395909574000029, 36.505792186000065 ], [ 126.404795769000089, 36.493312893000052 ], [ 126.383799675000091, 36.493312893000052 ], [ 126.383799675000091, 36.487127997000073 ], [ 126.390635613000086, 36.486029364000046 ], [ 126.404795769000089, 36.479641018000052 ], [ 126.403690509000057, 36.473343568000075 ], [ 126.402686703000086, 36.468391678000046 ], [ 126.405413865000014, 36.458835528000066 ] ] ], [ [ [ 126.812083737374564, 36.047303686815667 ], [ 126.791514519000089, 36.042181708000044 ], [ 126.771332227000016, 36.030910549000055 ], [ 126.754405144000089, 36.017726955000057 ], [ 126.735687696000014, 36.010443427000041 ], [ 126.713389519000089, 36.007391669000071 ], [ 126.692474806000064, 35.999904690000051 ], [ 126.677256707000083, 36.005926825000074 ], [ 126.672129754000025, 36.012884833000044 ], [ 126.670502149000072, 36.022040106000077 ], [ 126.66529381600003, 36.03461334800005 ], [ 126.656993035000028, 36.045477606000077 ], [ 126.640147332000083, 36.063421942000048 ], [ 126.631114129000025, 36.075588283000059 ], [ 126.645030144000089, 36.08470286700009 ], [ 126.638519727000016, 36.090969143000052 ], [ 126.624847852000016, 36.095607815000051 ], [ 126.612328367000032, 36.098992442000053 ], [ 126.589447462000066, 36.130804755000042 ], [ 126.571868652000035, 36.136978742000053 ], [ 126.558573356000011, 36.130763698000067 ], [ 126.552281539000091, 36.130808778000073 ], [ 126.551767688000041, 36.141822647000083 ], [ 126.529172256000038, 36.153514132000055 ], [ 126.509647580000092, 36.151024779000068 ], [ 126.503579486000035, 36.132190125000079 ], [ 126.500254754000025, 36.12571849200009 ], [ 126.49341881600003, 36.130804755000042 ], [ 126.497401172000082, 36.160018682000043 ], [ 126.531356813, 36.17393972800005 ], [ 126.561341238000068, 36.181588440000041 ], [ 126.603282097000033, 36.171820380000042 ], [ 126.588470899000072, 36.191595770000049 ], [ 126.580088738000086, 36.199367580000057 ], [ 126.568939649000072, 36.205959377000056 ], [ 126.562266472000033, 36.207220770000049 ], [ 126.554291212000066, 36.20343659100007 ], [ 126.548594597000033, 36.205959377000056 ], [ 126.541107618000069, 36.212551174000055 ], [ 126.534922722000033, 36.219631252000056 ], [ 126.55591881600003, 36.26626211100006 ], [ 126.567963087000066, 36.286810614000046 ], [ 126.582611524000072, 36.294663804000038 ], [ 126.57154381600003, 36.305609442000048 ], [ 126.529063347000033, 36.316107489000046 ], [ 126.513763868000069, 36.322658596000053 ], [ 126.528819207000083, 36.333889065000051 ], [ 126.573334181000064, 36.342596747000073 ], [ 126.582611524000072, 36.353013414000088 ], [ 126.576182488000086, 36.366278387000079 ], [ 126.560394727000016, 36.369614976000037 ], [ 126.527435743000069, 36.36977773600006 ], [ 126.520599806000064, 36.373602606000077 ], [ 126.508799675000091, 36.385199286000045 ], [ 126.500743035000028, 36.39093659100007 ], [ 126.500743035000028, 36.397691148000035 ], [ 126.513763868000069, 36.397691148000035 ], [ 126.498779376000016, 36.420105859000046 ], [ 126.516895300000101, 36.428187147000074 ], [ 126.537536592000038, 36.433220901000084 ], [ 126.556777590000024, 36.455829834000042 ], [ 126.597959919, 36.465072646000067 ], [ 126.617442254000025, 36.473456122000073 ], [ 126.559092644000089, 36.473456122000073 ], [ 126.545013868000069, 36.466986395000049 ], [ 126.523448113000086, 36.441107489000046 ], [ 126.507578972000033, 36.438666083000044 ], [ 126.497650587000066, 36.448391018000052 ], [ 126.488536004000025, 36.466864325000074 ], [ 126.482758009, 36.485825914000088 ], [ 126.483409050000091, 36.497015692000048 ], [ 126.504242384, 36.516669012000079 ], [ 126.513926629000025, 36.528794664000088 ], [ 126.510752800000091, 36.534247137000079 ], [ 126.491579894000097, 36.528669687000047 ], [ 126.482920769000089, 36.535223700000074 ], [ 126.47507125300001, 36.539414438000051 ], [ 126.470328521000056, 36.540198793000059 ], [ 126.465684606000082, 36.549387396000043 ], [ 126.470058642000026, 36.557766204000075 ], [ 126.469217507000053, 36.566933745000085 ], [ 126.464182028000096, 36.584120884000072 ], [ 126.458095196000045, 36.591406820000088 ], [ 126.457656954000072, 36.595595665000076 ], [ 126.471456469000032, 36.596291460000089 ], [ 126.491453081000031, 36.603761955000039 ], [ 126.51231193700005, 36.603209348000064 ], [ 126.51386797300006, 36.615391621000072 ], [ 126.519867384, 36.626166083000044 ], [ 126.511710376, 36.634848333000036 ], [ 126.499855288000049, 36.63683581500004 ], [ 126.483798690000071, 36.649603414000069 ], [ 126.493955996000068, 36.661316129000056 ], [ 126.508030235000092, 36.670413284000063 ], [ 126.498510498000087, 36.684273433000044 ], [ 126.474535156, 36.687885090000066 ], [ 126.469686832000093, 36.704587037000067 ], [ 126.477349172, 36.716888123000047 ], [ 126.500743035000028, 36.719875393000052 ], [ 126.487315300000091, 36.732163804000038 ], [ 126.482676629000025, 36.738348700000074 ], [ 126.479584181000064, 36.747137762000079 ], [ 126.471202019000089, 36.741400458000044 ], [ 126.457041863000086, 36.728989976000037 ], [ 126.441172722000033, 36.723537502000056 ], [ 126.437998894000089, 36.716457424000055 ], [ 126.438568556000064, 36.709418036000045 ], [ 126.445636113000091, 36.700721628000053 ], [ 126.446880397000086, 36.683761865000065 ], [ 126.439513488000102, 36.664265281000041 ], [ 126.443907384, 36.638081079000074 ], [ 126.433289986000091, 36.615726512000037 ], [ 126.424238344000059, 36.606581370000072 ], [ 126.40572781000003, 36.61819575800007 ], [ 126.386391037000067, 36.618887706000066 ], [ 126.367149829000027, 36.629065495000077 ], [ 126.371968767, 36.683077732000072 ], [ 126.377908769000101, 36.702581756000086 ], [ 126.366422431000046, 36.706971539000051 ], [ 126.369883660000028, 36.732326565000051 ], [ 126.359141472000033, 36.742661851000037 ], [ 126.34302819100003, 36.740383205000057 ], [ 126.333994988000086, 36.727362372000073 ], [ 126.331553582000083, 36.711371161000045 ], [ 126.324310743000069, 36.699652411000045 ], [ 126.301524285000028, 36.699367580000057 ], [ 126.310883009, 36.683986721000053 ], [ 126.329112175000091, 36.660589911000045 ], [ 126.335703972000033, 36.644110419000071 ], [ 126.324717644000089, 36.636623440000051 ], [ 126.326182488000086, 36.62836334800005 ], [ 126.34302819100003, 36.61001211100006 ], [ 126.327728712000066, 36.607570705000057 ], [ 126.314789259, 36.601629950000074 ], [ 126.30396569100003, 36.593085028000075 ], [ 126.295258009, 36.582709052000041 ], [ 126.295420769000089, 36.590033270000049 ], [ 126.294281446000014, 36.597479559000078 ], [ 126.292002800000091, 36.60423411700009 ], [ 126.288584832000083, 36.61001211100006 ], [ 126.302338087000066, 36.634426174000055 ], [ 126.272959832000083, 36.673163153000075 ], [ 126.281748894000089, 36.692572333000044 ], [ 126.274180535000028, 36.719875393000052 ], [ 126.255707227000016, 36.71157461100006 ], [ 126.229258660000028, 36.684719143000052 ], [ 126.209727410000028, 36.678900458000044 ], [ 126.198252800000091, 36.677069403000075 ], [ 126.187998894000089, 36.673814195000034 ], [ 126.177744988000086, 36.673244533000059 ], [ 126.165619337000066, 36.678900458000044 ], [ 126.162689649000072, 36.683539130000042 ], [ 126.158539259, 36.692857164000088 ], [ 126.156993035000028, 36.702053127000056 ], [ 126.161875847000033, 36.706203518000052 ], [ 126.203135613000086, 36.705877997000073 ], [ 126.213633660000028, 36.711615302000041 ], [ 126.213389519000089, 36.726711330000057 ], [ 126.202647332000083, 36.742417710000041 ], [ 126.187266472000033, 36.748480536000045 ], [ 126.17115319100003, 36.75226471600007 ], [ 126.158213738000086, 36.760809637000079 ], [ 126.153086785000028, 36.748846747000073 ], [ 126.150157097000033, 36.723944403000075 ], [ 126.144541863000086, 36.712388414000088 ], [ 126.132823113000086, 36.70384349200009 ], [ 126.128916863000086, 36.711900132000039 ], [ 126.13013756600003, 36.73696523600006 ], [ 126.12818444100003, 36.761297919000071 ], [ 126.130951368000069, 36.768052476000037 ], [ 126.156586134, 36.794175523000035 ], [ 126.161631707000083, 36.803290106000077 ], [ 126.165619337000066, 36.816066799000055 ], [ 126.168793165000011, 36.806382554000038 ], [ 126.17310631600003, 36.797674872000073 ], [ 126.178477410000028, 36.789455471000053 ], [ 126.185394727000016, 36.781317450000074 ], [ 126.19068444100003, 36.785305080000057 ], [ 126.197276238000086, 36.784898179000038 ], [ 126.204844597000033, 36.782782294000071 ], [ 126.213389519000089, 36.781317450000074 ], [ 126.202891472000033, 36.793198960000041 ], [ 126.192230665000011, 36.808579820000034 ], [ 126.220713738000086, 36.801743882000039 ], [ 126.232432488000086, 36.804185289000088 ], [ 126.240000847000033, 36.816066799000055 ], [ 126.214447462000066, 36.817531643000052 ], [ 126.198741082000083, 36.823228257000039 ], [ 126.196869337000066, 36.835679429000038 ], [ 126.213389519000089, 36.857001044000071 ], [ 126.190765821000014, 36.872015692000048 ], [ 126.192230665000011, 36.885931708000044 ], [ 126.209483269000089, 36.897162177000041 ], [ 126.233897332000083, 36.904201565000051 ], [ 126.227549675000091, 36.879787502000056 ], [ 126.229991082000083, 36.873032945000034 ], [ 126.243744337000066, 36.870672919000071 ], [ 126.268565300000091, 36.871039130000042 ], [ 126.275238477000016, 36.874741929000038 ], [ 126.281748894000089, 36.883734442000048 ], [ 126.283539259, 36.906236070000034 ], [ 126.281016472000033, 36.936468817000048 ], [ 126.285655144000089, 36.961127020000049 ], [ 126.308929884, 36.966864325000074 ], [ 126.30591881600003, 36.953070380000042 ], [ 126.306651238000086, 36.931463934000078 ], [ 126.311045769000089, 36.909572658000059 ], [ 126.32349694100003, 36.883246161000045 ], [ 126.317393425000091, 36.873968817000048 ], [ 126.307627800000091, 36.865668036000045 ], [ 126.301524285000028, 36.857001044000071 ], [ 126.301849806000064, 36.847805080000057 ], [ 126.308116082000083, 36.833075262000079 ], [ 126.308929884, 36.829087632000039 ], [ 126.303477410000028, 36.824367580000057 ], [ 126.285492384, 36.814927476000037 ], [ 126.281748894000089, 36.812323309000078 ], [ 126.282725457000083, 36.803697007000039 ], [ 126.285980665000011, 36.794582424000055 ], [ 126.291270379000025, 36.789252020000049 ], [ 126.298431837000066, 36.791896877000056 ], [ 126.315277540000011, 36.804348049000055 ], [ 126.327891472000033, 36.804632880000042 ], [ 126.35670006600003, 36.788763739000046 ], [ 126.336029493000069, 36.824652411000045 ], [ 126.328705274000072, 36.846991278000075 ], [ 126.339366082000083, 36.857001044000071 ], [ 126.355479363000086, 36.84048086100006 ], [ 126.365326368000069, 36.835353908000059 ], [ 126.369883660000028, 36.846177476000037 ], [ 126.374115431000064, 36.849554755000042 ], [ 126.384532097000033, 36.852932033000059 ], [ 126.404551629000025, 36.857001044000071 ], [ 126.404551629000025, 36.863226630000042 ], [ 126.396576368000069, 36.864203192000048 ], [ 126.377289259, 36.870672919000071 ], [ 126.377289259, 36.876898505000042 ], [ 126.401377800000091, 36.881415106000077 ], [ 126.415537957000083, 36.89984772300005 ], [ 126.41920006600003, 36.922308661000045 ], [ 126.41138756600003, 36.93891022300005 ], [ 126.402679884, 36.941229559000078 ], [ 126.376475457000083, 36.941595770000049 ], [ 126.363536004000025, 36.945786851000037 ], [ 126.353851759, 36.955226955000057 ], [ 126.350677931000064, 36.964504299000055 ], [ 126.355479363000086, 36.967759507000039 ], [ 126.369883660000028, 36.959418036000045 ], [ 126.376475457000083, 36.97492096600007 ], [ 126.369395379000025, 36.984116929000038 ], [ 126.354014519000089, 36.987860419000071 ], [ 126.335703972000033, 36.986761786000045 ], [ 126.343109571000014, 36.99445221600007 ], [ 126.353037957000083, 36.999986070000034 ], [ 126.363780144000089, 37.001450914000088 ], [ 126.373545769000089, 36.997015692000048 ], [ 126.383067254000025, 36.991156317000048 ], [ 126.391449415000011, 36.989813544000071 ], [ 126.395274285000028, 36.99290599200009 ], [ 126.390879754000025, 37.000433661000045 ], [ 126.390879754000025, 37.007879950000074 ], [ 126.427744988000086, 37.008368231000077 ], [ 126.445404493000069, 37.003404039000088 ], [ 126.452891472000033, 36.990179755000042 ], [ 126.447845899000072, 36.982001044000071 ], [ 126.438243035000028, 36.973334052000041 ], [ 126.432383660000028, 36.961981512000079 ], [ 126.43873131600003, 36.945786851000037 ], [ 126.447520379000025, 36.952826239000046 ], [ 126.458832227000016, 36.95774974200009 ], [ 126.468597852000016, 36.957586981000077 ], [ 126.472748243000069, 36.949204820000034 ], [ 126.47388756600003, 36.942206122000073 ], [ 126.478526238000086, 36.93585846600007 ], [ 126.479584181000064, 36.929022528000075 ], [ 126.47779381600003, 36.92641836100006 ], [ 126.468760613000086, 36.917792059000078 ], [ 126.465912306000064, 36.911607164000088 ], [ 126.465912306000064, 36.866929429000038 ], [ 126.469248894000089, 36.853989976000037 ], [ 126.476573113000086, 36.844916083000044 ], [ 126.483897332000083, 36.841498114000046 ], [ 126.487152540000011, 36.846177476000037 ], [ 126.491221550000091, 36.871079820000034 ], [ 126.509532097000033, 36.918850002000056 ], [ 126.513763868000069, 36.942368882000039 ], [ 126.519134962000066, 36.94790273600006 ], [ 126.531260613000086, 36.941310940000051 ], [ 126.548594597000033, 36.925930080000057 ], [ 126.555674675000091, 36.915106512000079 ], [ 126.560801629000025, 36.905096747000073 ], [ 126.568369988000086, 36.898504950000074 ], [ 126.582611524000072, 36.898016669000071 ], [ 126.582611524000072, 36.904201565000051 ], [ 126.57545006600003, 36.911810614000046 ], [ 126.566742384, 36.932196356000077 ], [ 126.559092644000089, 36.942368882000039 ], [ 126.497813347000033, 36.994208075000074 ], [ 126.49341881600003, 36.997015692000048 ], [ 126.496836785000028, 37.007798570000034 ], [ 126.505381707000083, 37.00657786700009 ], [ 126.515635613000086, 36.998846747000073 ], [ 126.531586134, 36.982896226000037 ], [ 126.540049675000091, 36.97687409100007 ], [ 126.550303582000083, 36.973130601000037 ], [ 126.562754754000025, 36.973089911000045 ], [ 126.572113477000016, 36.977484442000048 ], [ 126.573008660000028, 36.984361070000034 ], [ 126.566172722000033, 36.990790106000077 ], [ 126.55201256600003, 36.99359772300005 ], [ 126.532969597000033, 37.000921942000048 ], [ 126.51225445700004, 37.016430340000056 ], [ 126.502920773000028, 37.039520921000076 ], [ 126.500743035000028, 37.05499909100007 ], [ 126.519053582000083, 37.05540599200009 ], [ 126.535004102000016, 37.049261786000045 ], [ 126.549327019000089, 37.039211330000057 ], [ 126.569341447000056, 37.027777516000072 ], [ 126.588452369000038, 37.017221133000078 ], [ 126.596292387000062, 37.010827787000039 ], [ 126.611466687000075, 37.002560097000071 ], [ 126.626094867, 36.996104465000087 ], [ 126.636095410000053, 36.982453124000074 ], [ 126.631382679000012, 36.968930852000085 ], [ 126.621674024000072, 36.959784247000073 ], [ 126.623627149000072, 36.952622789000088 ], [ 126.633555535000028, 36.937404690000051 ], [ 126.634776238000086, 36.92804596600007 ], [ 126.631114129000025, 36.911607164000088 ], [ 126.642100457000083, 36.917710679000038 ], [ 126.646494988000086, 36.925116278000075 ], [ 126.649180535000028, 36.933417059000078 ], [ 126.645375457, 36.957953220000036 ], [ 126.649448961000076, 36.966056461000051 ], [ 126.655792537000025, 36.97459363300004 ], [ 126.665043153000056, 36.988524572000074 ], [ 126.681544454, 36.994704069000079 ], [ 126.697032097000033, 36.994818427000041 ], [ 126.714348316000041, 36.993042063000075 ], [ 126.733512394000059, 36.987430872000061 ], [ 126.757766946000061, 36.982219859000054 ], [ 126.775157097000033, 36.973089911000045 ], [ 126.796234571000014, 36.955755927000041 ], [ 126.797699415000011, 36.934393622000073 ], [ 126.781993035000028, 36.891180731000077 ], [ 126.793955925000091, 36.897528387000079 ], [ 126.812754754000025, 36.916937567000048 ], [ 126.823008660000028, 36.918443101000037 ], [ 126.830170118000069, 36.910223700000074 ], [ 126.834320509, 36.895493882000039 ], [ 126.836517774000072, 36.866929429000038 ], [ 126.835459832000083, 36.860825914000088 ], [ 126.830821160000028, 36.847235419000071 ], [ 126.829844597000033, 36.839341539000088 ], [ 126.831797722000033, 36.831122137000079 ], [ 126.840668165000011, 36.819159247000073 ], [ 126.849131707000083, 36.788031317000048 ], [ 126.846283399000072, 36.779120184000078 ], [ 126.829844597000033, 36.775091864000046 ], [ 126.832855665000011, 36.766669012000079 ], [ 126.836761915000011, 36.760931708000044 ], [ 126.842539910000028, 36.757025458000044 ], [ 126.85084069100003, 36.753973700000074 ], [ 126.85670006600003, 36.776434637000079 ], [ 126.866547071000014, 36.78978099200009 ], [ 126.871592644000089, 36.804022528000075 ], [ 126.863291863000086, 36.829087632000039 ], [ 126.883555535000028, 36.824367580000057 ], [ 126.904795769000089, 36.822251695000034 ], [ 126.870453321000014, 36.852769273000035 ], [ 126.860199415000011, 36.869574286000045 ], [ 126.880625847000033, 36.876898505000042 ], [ 126.899017774000072, 36.879339911000045 ], [ 126.942474806000064, 36.893377997000073 ], [ 126.961688664283514, 36.90511165123467 ], [ 126.961997511875666, 36.905060330569768 ], [ 127.008609654112206, 36.89738638047703 ], [ 127.047780390252797, 36.897360541156047 ], [ 127.130876092557628, 36.925808416824964 ], [ 127.174077590108595, 36.910047105489525 ], [ 127.212731561412397, 36.884053860097538 ], [ 127.259963821273232, 36.878937893069292 ], [ 127.267818637619939, 36.864106756821343 ], [ 127.279600865287648, 36.854184882026686 ], [ 127.293036736656063, 36.847932034335884 ], [ 127.310193312871093, 36.820233465701847 ], [ 127.323319125876878, 36.812843736449281 ], [ 127.32228559800194, 36.792276516448055 ], [ 127.330553827297194, 36.786204535011279 ], [ 127.337168410193954, 36.77615346900734 ], [ 127.339338821429465, 36.764810491810749 ], [ 127.336858351831438, 36.753519192356805 ], [ 127.33200076722153, 36.742977199937798 ], [ 127.328900180898586, 36.73204763389117 ], [ 127.327556593761756, 36.723443507811623 ], [ 127.322492303576951, 36.715795396140606 ], [ 127.313190546406531, 36.71370250106952 ], [ 127.303682081862576, 36.71489105947478 ], [ 127.295310499779703, 36.707682197375505 ], [ 127.274226515840951, 36.678278307298001 ], [ 127.246527948106291, 36.646032213315948 ], [ 127.104238539576841, 36.691572216184795 ], [ 127.080931981925346, 36.639779866547599 ], [ 127.084057244745964, 36.48828990335636 ], [ 127.068864374191435, 36.476585190953756 ], [ 127.059769321696763, 36.455630398224287 ], [ 127.150823195833823, 36.441238512447342 ], [ 127.21898978704894, 36.456242251079004 ], [ 127.272563674773778, 36.388586972111057 ], [ 127.290690997191746, 36.360101180125355 ], [ 127.295870232425273, 36.287591890453371 ], [ 127.316587171560627, 36.233209924098674 ], [ 127.365789903581117, 36.243568393666408 ], [ 127.40930870982902, 36.269827786223345 ], [ 127.423674758083621, 36.273755194846331 ], [ 127.449823033106441, 36.290782578952815 ], [ 127.464292434148433, 36.334009914925616 ], [ 127.477418248053709, 36.3510114615097 ], [ 127.482275831764127, 36.374498398881997 ], [ 127.495401645669403, 36.388761095248299 ], [ 127.512248162622541, 36.398657130721972 ], [ 127.526097446939616, 36.393618678958831 ], [ 127.538913201582886, 36.39018219675097 ], [ 127.535089145747406, 36.372844754281971 ], [ 127.518656040843553, 36.362845364222153 ], [ 127.508527459574566, 36.34796255113082 ], [ 127.499432407979157, 36.331219386965131 ], [ 127.476798130429302, 36.298353176258047 ], [ 127.464809198085959, 36.259699204954302 ], [ 127.463052198899845, 36.232052314063026 ], [ 127.465739374072768, 36.203604438394109 ], [ 127.497985468054821, 36.20900462536315 ], [ 127.527647739651457, 36.201227322482907 ], [ 127.558343540921669, 36.186034451029059 ], [ 127.568678826866289, 36.156294664167376 ], [ 127.567335239729459, 36.121723131117562 ], [ 127.575913528286605, 36.087435818008601 ], [ 127.596274041813558, 36.058109443196201 ], [ 127.619011672150918, 36.029506536997076 ], [ 127.595343865826749, 36.010282905032 ], [ 127.571055942777434, 35.992997138507121 ], [ 127.541393671180913, 35.986330877867715 ], [ 127.511938104260025, 35.985219834727559 ], [ 127.490337356383861, 35.980930690898617 ], [ 127.432459751316401, 35.987080186701235 ], [ 127.428325637118405, 35.995115871999872 ], [ 127.435353632064448, 36.006536363562304 ], [ 127.42935916589272, 36.016509915200402 ], [ 127.416543410350073, 36.019145413529998 ], [ 127.383367141280473, 36.03265880016346 ], [ 127.338408645442541, 36.098210354424282 ], [ 127.306472609823004, 36.121154690336652 ], [ 127.289729445657372, 36.10727956849729 ], [ 127.276293573389694, 36.090355536278935 ], [ 127.255312942238447, 36.08684153880597 ], [ 127.241153598659594, 36.081725571777667 ], [ 127.226684197617601, 36.077643134423113 ], [ 127.171597121409945, 36.068961493078405 ], [ 127.14358849531277, 36.060176499845568 ], [ 127.114029575604377, 36.055706488863336 ], [ 127.092738886090615, 36.082526557454628 ], [ 127.101627232111014, 36.126658230093199 ], [ 127.064730259094176, 36.132626857843206 ], [ 126.961170688676248, 36.106220201301255 ], [ 126.904946730906886, 36.096453355238111 ], [ 126.857094354320907, 36.092215888252611 ], [ 126.812083737374564, 36.047303686815667 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-28", "NAME_1": "Incheon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.720045091000088, 37.377053382000042 ], [ 126.717162389, 37.383838776000061 ], [ 126.664750292, 37.389168229000063 ], [ 126.640340142000014, 37.364389566000057 ], [ 126.615087493000033, 37.379744927000047 ], [ 126.62538212000004, 37.397918345000051 ], [ 126.638628539000024, 37.413790562000088 ], [ 126.630308394000053, 37.425012798000068 ], [ 126.612405490000015, 37.432740637000052 ], [ 126.595985216000031, 37.439656589000037 ], [ 126.598290714000086, 37.457927538000035 ], [ 126.595018037000045, 37.47227345500005 ], [ 126.604760982000016, 37.485696540000049 ], [ 126.633444290000057, 37.492570852000085 ], [ 126.642021974000045, 37.496062212000083 ], [ 126.644162981000022, 37.504385171000081 ], [ 126.630675226000108, 37.507301053000049 ], [ 126.627025162, 37.498594657000069 ], [ 126.606451234000019, 37.496811747000038 ], [ 126.601105773000086, 37.506802104000087 ], [ 126.598904517000051, 37.525106533000042 ], [ 126.603792371620557, 37.549296673202889 ], [ 126.649330092909395, 37.550579080360251 ], [ 126.700618117132308, 37.552023423941819 ], [ 126.75952925007482, 37.507064928103944 ], [ 126.759425897287315, 37.483448797723838 ], [ 126.770174595281333, 37.463837592131142 ], [ 126.786297641822671, 37.455440172525925 ], [ 126.795806106366626, 37.443037828133242 ], [ 126.786400994610176, 37.418388169878142 ], [ 126.772138300042457, 37.396477362740086 ], [ 126.759010576876562, 37.388759052688101 ], [ 126.751571080041231, 37.384385076709918 ], [ 126.720045091000088, 37.377053382000042 ] ] ], [ [ [ 126.563303207000104, 37.514443293000056 ], [ 126.567230328000051, 37.511231283000086 ], [ 126.571140365000019, 37.506348497000033 ], [ 126.576440105000074, 37.502370480000081 ], [ 126.580578935000062, 37.495627118000073 ], [ 126.583065937000015, 37.490383828000063 ], [ 126.577625729000033, 37.488584848000073 ], [ 126.569183790000011, 37.483587958000044 ], [ 126.565765821000014, 37.479966539000088 ], [ 126.548291354000071, 37.47663722100009 ], [ 126.540559471000051, 37.477657005000083 ], [ 126.529932585000097, 37.473683142000084 ], [ 126.506572135000056, 37.46556815100007 ], [ 126.493984366000063, 37.45658508300005 ], [ 126.487012499, 37.446795614000052 ], [ 126.443412653, 37.420625381000036 ], [ 126.433594572000061, 37.422405821000041 ], [ 126.424434238, 37.421569434000048 ], [ 126.420460596, 37.422355526000047 ], [ 126.416278030000058, 37.434554709000054 ], [ 126.408366947000104, 37.438536943000088 ], [ 126.404726992000064, 37.435367928000062 ], [ 126.40142731800006, 37.434469826000054 ], [ 126.400288547000059, 37.436530282000035 ], [ 126.401991943000098, 37.440053295000041 ], [ 126.399492203000023, 37.444921322000084 ], [ 126.393411833000073, 37.445545420000087 ], [ 126.389386113, 37.441316253000082 ], [ 126.383200061000025, 37.437454989000059 ], [ 126.375731449, 37.440136735000067 ], [ 126.364972927000053, 37.442291305000083 ], [ 126.371327096000073, 37.447311164000041 ], [ 126.369114619000015, 37.45273648400007 ], [ 126.358177773000079, 37.461012025000059 ], [ 126.355511141000079, 37.466222800000082 ], [ 126.359342279000089, 37.473629767000034 ], [ 126.365291656000068, 37.47506439700004 ], [ 126.373567534000017, 37.471642951000035 ], [ 126.41888511500008, 37.496861378000062 ], [ 126.451326746000063, 37.499682004000078 ], [ 126.473379650000084, 37.499256839000054 ], [ 126.493708733000062, 37.507781052000041 ], [ 126.500660817000039, 37.530185259000064 ], [ 126.51483014900009, 37.53434720000007 ], [ 126.526377800000091, 37.525091864000046 ], [ 126.531993035000028, 37.523342190000051 ], [ 126.537771030000044, 37.520738023000035 ], [ 126.543467644000089, 37.518866278000075 ], [ 126.549082879000025, 37.518622137000079 ], [ 126.555110864000085, 37.517683956000042 ], [ 126.563303207000104, 37.514443293000056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-45", "NAME_1": "North Jeolla" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.43690020030192, 35.370562056925955 ], [ 126.42310631600003, 35.383368231000077 ], [ 126.418223504000025, 35.394029039000088 ], [ 126.425547722000033, 35.417669989000046 ], [ 126.442718946000014, 35.446926174000055 ], [ 126.469814235000058, 35.498526407000043 ], [ 126.492663279, 35.525333007000086 ], [ 126.52528299100004, 35.534857697000064 ], [ 126.562449969, 35.541087444000084 ], [ 126.59423270100001, 35.542487712000082 ], [ 126.608894295000027, 35.552056091000054 ], [ 126.622977491000029, 35.568612060000078 ], [ 126.642889399000069, 35.572774993000053 ], [ 126.660736524000072, 35.556463934000078 ], [ 126.679047071000014, 35.538031317000048 ], [ 126.692474806000064, 35.534369208000044 ], [ 126.679453972000033, 35.57172272300005 ], [ 126.670176629000025, 35.588690497000073 ], [ 126.655039910000028, 35.595770575000074 ], [ 126.513157781000018, 35.576896518000069 ], [ 126.463735996000082, 35.601972857000078 ], [ 126.466743634000068, 35.628874691000078 ], [ 126.467558991000033, 35.639638447000038 ], [ 126.490977410000028, 35.649115302000041 ], [ 126.511415695000096, 35.665532511000038 ], [ 126.530334722000021, 35.683164305000048 ], [ 126.560345747000042, 35.697391795000044 ], [ 126.597167701000103, 35.713890194000044 ], [ 126.625132250000092, 35.745625835000055 ], [ 126.629389008000089, 35.775480579000089 ], [ 126.644754720000037, 35.782901804000062 ], [ 126.656116721000103, 35.78873572100008 ], [ 126.662153668000087, 35.792998345000058 ], [ 126.698022947000027, 35.795939459000067 ], [ 126.733127228000058, 35.792415051000035 ], [ 126.755381707000083, 35.778469143000052 ], [ 126.771332227000016, 35.775213934000078 ], [ 126.781993035000028, 35.760239976000037 ], [ 126.786143425000091, 35.768377997000073 ], [ 126.789561394000089, 35.779689846000053 ], [ 126.791026238000086, 35.791449286000045 ], [ 126.777668248000055, 35.800092446000065 ], [ 126.768464744000084, 35.805555327000036 ], [ 126.749344132000033, 35.813257440000086 ], [ 126.727622285000052, 35.825278498000046 ], [ 126.709971550000091, 35.836004950000074 ], [ 126.700694207000083, 35.839829820000034 ], [ 126.703379754000025, 35.848456122000073 ], [ 126.711680535000028, 35.85773346600007 ], [ 126.71998131600003, 35.863267320000034 ], [ 126.729095899000072, 35.864976304000038 ], [ 126.784922722000033, 35.86204661700009 ], [ 126.797129754000025, 35.862860419000071 ], [ 126.806162957000083, 35.866685289000088 ], [ 126.812266472000033, 35.875677802000041 ], [ 126.814545118000069, 35.883042710000041 ], [ 126.819346550000091, 35.88812897300005 ], [ 126.833099806000064, 35.890041408000059 ], [ 126.837494337000066, 35.89329661700009 ], [ 126.832286004000025, 35.900620835000041 ], [ 126.821625196000014, 35.908148505000042 ], [ 126.80982506600003, 35.911688544000071 ], [ 126.806651238000086, 35.909654039000088 ], [ 126.733164910000028, 35.885565497000073 ], [ 126.708506707000083, 35.884588934000078 ], [ 126.660090996, 35.887157801000058 ], [ 126.61228893200007, 35.89022422000005 ], [ 126.611838151000029, 35.907439668000052 ], [ 126.608809303000044, 35.931126764000055 ], [ 126.59957573500003, 35.937653630000057 ], [ 126.569739740000045, 35.945951984000089 ], [ 126.525735658000031, 35.940358909000054 ], [ 126.521416736000106, 35.970520003000047 ], [ 126.612045971000043, 35.978430089000085 ], [ 126.661335147000045, 35.983398648000048 ], [ 126.711192254000025, 35.98578522300005 ], [ 126.727305535000028, 35.993638414000088 ], [ 126.744476759, 35.989569403000075 ], [ 126.765472852000016, 35.998277085000041 ], [ 126.802338087000066, 36.02094147300005 ], [ 126.849131707000083, 36.036037502000056 ], [ 126.868907097000033, 36.04751211100006 ], [ 126.870697462000066, 36.06195709800005 ], [ 126.812083737374564, 36.047303686815667 ], [ 126.857094354320907, 36.092215888252611 ], [ 126.904946730906886, 36.096453355238111 ], [ 126.961170688676248, 36.106220201301255 ], [ 127.064730259094176, 36.132626857843206 ], [ 127.101627232111014, 36.126658230093199 ], [ 127.092738886090615, 36.082526557454628 ], [ 127.114029575604377, 36.055706488863336 ], [ 127.14358849531277, 36.060176499845568 ], [ 127.171597121409945, 36.068961493078405 ], [ 127.226684197617601, 36.077643134423113 ], [ 127.241153598659594, 36.081725571777667 ], [ 127.255312942238447, 36.08684153880597 ], [ 127.276293573389694, 36.090355536278935 ], [ 127.289729445657372, 36.10727956849729 ], [ 127.306472609823004, 36.121154690336652 ], [ 127.338408645442541, 36.098210354424282 ], [ 127.383367141280473, 36.03265880016346 ], [ 127.416543410350073, 36.019145413529998 ], [ 127.42935916589272, 36.016509915200402 ], [ 127.435353632064448, 36.006536363562304 ], [ 127.428325637118405, 35.995115871999872 ], [ 127.432459751316401, 35.987080186701235 ], [ 127.490337356383861, 35.980930690898617 ], [ 127.511938104260025, 35.985219834727559 ], [ 127.541393671180913, 35.986330877867715 ], [ 127.571055942777434, 35.992997138507121 ], [ 127.595343865826749, 36.010282905032 ], [ 127.619011672150918, 36.029506536997076 ], [ 127.627589959808802, 36.021160794235243 ], [ 127.637098422554118, 36.014106960867537 ], [ 127.645159947173738, 36.015708930422761 ], [ 127.651671177282992, 36.022762762891148 ], [ 127.668621047023635, 36.014675400749127 ], [ 127.683607212003153, 36.000283514972239 ], [ 127.728359003165451, 35.988372096994681 ], [ 127.737660761235134, 35.978941147715773 ], [ 127.753680454988967, 35.975220445567061 ], [ 127.785823196183514, 35.991162624955166 ], [ 127.822720168301089, 36.004650173166965 ], [ 127.837292922130587, 35.993384711235421 ], [ 127.85196902874759, 35.986950995492009 ], [ 127.86478478429035, 35.996459459136702 ], [ 127.877600538933621, 36.007363185862289 ], [ 127.918528274260439, 35.95075165536457 ], [ 127.913877395225541, 35.887060452178105 ], [ 127.877290480571219, 35.855201930924352 ], [ 127.867575311351516, 35.834195462250761 ], [ 127.817862583691181, 35.81274974220679 ], [ 127.793264602279578, 35.80662608482595 ], [ 127.779622024436776, 35.807814643231154 ], [ 127.769803500631042, 35.802672837781245 ], [ 127.75099327981593, 35.769625759021551 ], [ 127.729392531040389, 35.7512806261999 ], [ 127.706551547915524, 35.734821681975006 ], [ 127.695389438771485, 35.708621731008066 ], [ 127.692495558922815, 35.677874253793732 ], [ 127.679886508955178, 35.655446681818887 ], [ 127.664383580038134, 35.631856390759822 ], [ 127.652704706057307, 35.601703192748118 ], [ 127.644126418399424, 35.570542304383821 ], [ 127.630173781294957, 35.547339586053056 ], [ 127.629140253419905, 35.522173162961053 ], [ 127.654771762706673, 35.513336492884832 ], [ 127.658492465754648, 35.50230357495002 ], [ 127.660352817728267, 35.489668687459925 ], [ 127.6714115740848, 35.466104233923261 ], [ 127.669654575797949, 35.440524400580614 ], [ 127.679886508955178, 35.421636664500454 ], [ 127.694252557209666, 35.413807684776828 ], [ 127.688258091038051, 35.386367499460505 ], [ 127.646503534310568, 35.34559479376469 ], [ 127.639888951413923, 35.318826402016839 ], [ 127.638442010590211, 35.294150906239338 ], [ 127.617461379439078, 35.276632594818352 ], [ 127.560410597570922, 35.314227199825382 ], [ 127.496435175342981, 35.333114935905542 ], [ 127.460158319051175, 35.316604315736583 ], [ 127.431012811392065, 35.290972805550496 ], [ 127.399696893396822, 35.28740713123409 ], [ 127.366520624327336, 35.2872004265584 ], [ 127.330243768035416, 35.283221340192654 ], [ 127.293450148705347, 35.28376394345122 ], [ 127.276396926177199, 35.291902981537362 ], [ 127.261204054723294, 35.301488959547839 ], [ 127.24363406825762, 35.297819933343249 ], [ 127.222860141782121, 35.298052477339922 ], [ 127.19268110624796, 35.293970038186671 ], [ 127.163949008839609, 35.279914049194019 ], [ 127.126741978359519, 35.284435737019635 ], [ 127.102660760885328, 35.305390529749104 ], [ 127.104004348022158, 35.338463446930518 ], [ 127.083643833595943, 35.357247830223173 ], [ 127.077546014636823, 35.375799669519097 ], [ 127.086434360657222, 35.404635117916314 ], [ 127.066280551806017, 35.429698188220812 ], [ 127.036824985784392, 35.428380439505645 ], [ 127.029590285263453, 35.418096829505032 ], [ 127.019771763256244, 35.410397040091311 ], [ 127.013363885934496, 35.397167874297963 ], [ 127.010986770023351, 35.382905177931605 ], [ 126.980084263178128, 35.382595120468409 ], [ 126.933162062579072, 35.434478258464821 ], [ 126.902569614995741, 35.454916287256822 ], [ 126.885102981317459, 35.460962429372614 ], [ 126.866912876328115, 35.462021796568649 ], [ 126.850273064949988, 35.445898749127934 ], [ 126.816373326367852, 35.448611761823315 ], [ 126.791258580119347, 35.430214952158281 ], [ 126.791155227331842, 35.416701565524818 ], [ 126.792085403318652, 35.403162340469635 ], [ 126.782886998036474, 35.391793524851266 ], [ 126.770277948068838, 35.384222927546034 ], [ 126.77100141758126, 35.373551743917801 ], [ 126.772965123241761, 35.363319810760629 ], [ 126.764593541159002, 35.349160468081095 ], [ 126.751364373566958, 35.339781196544948 ], [ 126.735034620551232, 35.333347479902272 ], [ 126.717878046134842, 35.329265042547661 ], [ 126.70340864509285, 35.322082017970729 ], [ 126.689972771925795, 35.313968818306307 ], [ 126.656486443594417, 35.309886380052376 ], [ 126.62475711534853, 35.300481269195188 ], [ 126.594991490065127, 35.294383450236012 ], [ 126.570083449391632, 35.301230577129388 ], [ 126.57153039021523, 35.328334866560795 ], [ 126.577938266637602, 35.355258287040272 ], [ 126.583726028133697, 35.391845200795387 ], [ 126.554890577937726, 35.398175563751238 ], [ 126.457738885740923, 35.376032213515828 ], [ 126.437068312952192, 35.370606187225746 ], [ 126.43690020030192, 35.370562056925955 ] ] ], [ [ [ 126.258067254000025, 35.57062409100007 ], [ 126.253672722000033, 35.574367580000057 ], [ 126.250498894000089, 35.580959377000056 ], [ 126.252452019000089, 35.587307033000059 ], [ 126.26295006600003, 35.591782945000034 ], [ 126.261485222000033, 35.593410549000055 ], [ 126.256521030000044, 35.59601471600007 ], [ 126.258962436000047, 35.59837474200009 ], [ 126.264496290000011, 35.600897528000075 ], [ 126.268239780000044, 35.605210679000038 ], [ 126.274261915000011, 35.606024481000077 ], [ 126.277842644000089, 35.607367255000042 ], [ 126.276133660000028, 35.612860419000071 ], [ 126.280446811000047, 35.612697658000059 ], [ 126.291758660000028, 35.611029364000046 ], [ 126.299327019000089, 35.616034247000073 ], [ 126.302989129000025, 35.619330145000049 ], [ 126.307302280000044, 35.61664459800005 ], [ 126.309418165000011, 35.610663153000075 ], [ 126.305674675000091, 35.603216864000046 ], [ 126.287282748000052, 35.590277411000045 ], [ 126.274912957000083, 35.579046942000048 ], [ 126.267100457000083, 35.574123440000051 ], [ 126.263845248000052, 35.571682033000059 ], [ 126.258067254000025, 35.57062409100007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-46", "NAME_1": "South Jeolla" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.804990421770526, 34.957146974753073 ], [ 127.798431837000066, 34.958644924000055 ], [ 127.757904493000069, 34.958319403000075 ], [ 127.744395379000025, 34.960191148000035 ], [ 127.739024285000028, 34.965277411000045 ], [ 127.736582879000025, 34.972886460000041 ], [ 127.730723504000025, 34.982570705000057 ], [ 127.719248894000089, 34.990057684000078 ], [ 127.716563347000033, 34.982367255000042 ], [ 127.718272332000083, 34.970404364000046 ], [ 127.720469597000033, 34.96515534100007 ], [ 127.713226759, 34.94672272300005 ], [ 127.709239129000025, 34.940415757000039 ], [ 127.699961785000028, 34.931626695000034 ], [ 127.662119988000086, 34.906805731000077 ], [ 127.641123894000089, 34.899115302000041 ], [ 127.626068556000064, 34.909735419000071 ], [ 127.607188347000033, 34.941310940000051 ], [ 127.591563347000033, 34.946437893000052 ], [ 127.580658399000072, 34.933661200000074 ], [ 127.575287306000064, 34.913641669000071 ], [ 127.576426629000025, 34.896918036000045 ], [ 127.585703972000033, 34.87921784100007 ], [ 127.601166212000066, 34.856350002000056 ], [ 127.618907097000033, 34.836411851000037 ], [ 127.634776238000086, 34.828029690000051 ], [ 127.646006707000083, 34.816066799000055 ], [ 127.656504754000025, 34.811916408000059 ], [ 127.668955925000091, 34.818345445000034 ], [ 127.699961785000028, 34.842271226000037 ], [ 127.721446160000028, 34.844631252000056 ], [ 127.739756707000083, 34.841701565000051 ], [ 127.756846550000091, 34.840806382000039 ], [ 127.775645379000025, 34.84906647300005 ], [ 127.774506056000064, 34.829331773000035 ], [ 127.771250847000033, 34.815334377000056 ], [ 127.761322462000066, 34.787054755000042 ], [ 127.749847852000016, 34.737127997000073 ], [ 127.741547071000014, 34.725572007000039 ], [ 127.706390821000014, 34.715887762000079 ], [ 127.678558790000011, 34.727362372000073 ], [ 127.656260613000086, 34.731268622000073 ], [ 127.63795006600003, 34.698228257000039 ], [ 127.63209069100003, 34.701402085000041 ], [ 127.630625847000033, 34.701117255000042 ], [ 127.629242384, 34.699286200000074 ], [ 127.62427819100003, 34.698228257000039 ], [ 127.63209069100003, 34.685044664000088 ], [ 127.63795006600003, 34.670965887000079 ], [ 127.645274285000028, 34.626288153000075 ], [ 127.640716993000069, 34.617987372000073 ], [ 127.630381707000083, 34.622707424000055 ], [ 127.614024285000028, 34.636867580000057 ], [ 127.590098504000025, 34.63930898600006 ], [ 127.572276238000086, 34.647406317000048 ], [ 127.560801629000025, 34.662176825000074 ], [ 127.55591881600003, 34.684556382000039 ], [ 127.562022332000083, 34.70571523600006 ], [ 127.575043165000011, 34.726548570000034 ], [ 127.584483269000089, 34.746242580000057 ], [ 127.579844597000033, 34.76312897300005 ], [ 127.571787957000083, 34.772528387000079 ], [ 127.55591881600003, 34.800726630000042 ], [ 127.551768425000091, 34.802923895000049 ], [ 127.54615319100003, 34.80304596600007 ], [ 127.54029381600003, 34.803778387000079 ], [ 127.535411004000025, 34.808091539000088 ], [ 127.534922722000033, 34.81321849200009 ], [ 127.536631707000083, 34.819240627000056 ], [ 127.539561394000089, 34.823065497000073 ], [ 127.524424675000091, 34.849269924000055 ], [ 127.521820509, 34.859035549000055 ], [ 127.52271569100003, 34.864935614000046 ], [ 127.527110222000033, 34.874701239000046 ], [ 127.528086785000028, 34.879828192000048 ], [ 127.525889519000089, 34.885443427000041 ], [ 127.521250847000033, 34.889837958000044 ], [ 127.516612175000091, 34.891099351000037 ], [ 127.514414910000028, 34.886948960000041 ], [ 127.51099694100003, 34.884711005000042 ], [ 127.493907097000033, 34.84906647300005 ], [ 127.487315300000091, 34.841498114000046 ], [ 127.483897332000083, 34.839544989000046 ], [ 127.478770379000025, 34.839056708000044 ], [ 127.444672071000014, 34.829169012000079 ], [ 127.424815300000091, 34.827134507000039 ], [ 127.381602410000028, 34.828029690000051 ], [ 127.365326368000069, 34.824042059000078 ], [ 127.378509962000066, 34.815130927000041 ], [ 127.404307488000086, 34.805853583000044 ], [ 127.425547722000033, 34.800726630000042 ], [ 127.425547722000033, 34.794419664000088 ], [ 127.383067254000025, 34.783270575000074 ], [ 127.361582879000025, 34.773342190000051 ], [ 127.357920769000089, 34.759711005000042 ], [ 127.36646569100003, 34.753973700000074 ], [ 127.385264519000089, 34.760199286000045 ], [ 127.395274285000028, 34.756659247000073 ], [ 127.402354363000086, 34.747137762000079 ], [ 127.400238477000016, 34.743638414000088 ], [ 127.394867384, 34.74249909100007 ], [ 127.392100457000083, 34.739813544000071 ], [ 127.406016472000033, 34.700018622000073 ], [ 127.434906446000014, 34.678697007000039 ], [ 127.466156446000014, 34.662176825000074 ], [ 127.48755944100003, 34.636867580000057 ], [ 127.477305535000028, 34.638169664000088 ], [ 127.459727410000028, 34.638251044000071 ], [ 127.452240431000064, 34.636867580000057 ], [ 127.495209181000064, 34.623236395000049 ], [ 127.50075946700008, 34.612163867000049 ], [ 127.503589850000026, 34.591324773000053 ], [ 127.494440221000104, 34.583776608000051 ], [ 127.484141472000033, 34.576564846000053 ], [ 127.464610222000033, 34.577337958000044 ], [ 127.452240431000064, 34.574774481000077 ], [ 127.406748894000089, 34.598130601000037 ], [ 127.392100457000083, 34.602036851000037 ], [ 127.379161004000025, 34.600002346000053 ], [ 127.363047722000033, 34.593898830000057 ], [ 127.349375847000033, 34.585842190000051 ], [ 127.343597852000016, 34.578192450000074 ], [ 127.345957879000025, 34.575018622000073 ], [ 127.357920769000089, 34.554266669000071 ], [ 127.371940404000043, 34.551733359000082 ], [ 127.3804082690001, 34.547104675000071 ], [ 127.418418626000062, 34.555280369000059 ], [ 127.439219597000033, 34.540676174000055 ], [ 127.391788013, 34.504779601000052 ], [ 127.374940968000033, 34.485036569000044 ], [ 127.356618394000066, 34.491964730000063 ], [ 127.327801728000054, 34.473929461000068 ], [ 127.330821160000028, 34.45648834800005 ], [ 127.343597852000016, 34.445013739000046 ], [ 127.315925504, 34.444901020000088 ], [ 127.275081801000056, 34.489453300000037 ], [ 127.26099694100003, 34.513332424000055 ], [ 127.223480665000011, 34.546820380000042 ], [ 127.212006056000064, 34.544663804000038 ], [ 127.172373894000089, 34.527573960000041 ], [ 127.176361524000072, 34.517320054000038 ], [ 127.179209832000083, 34.513332424000055 ], [ 127.162933790000011, 34.517971096000053 ], [ 127.147227410000028, 34.520493882000039 ], [ 127.133799675000091, 34.526312567000048 ], [ 127.124522332000083, 34.540676174000055 ], [ 127.123301629000025, 34.555365302000041 ], [ 127.129649285000028, 34.56391022300005 ], [ 127.151866082000083, 34.574774481000077 ], [ 127.159027540000011, 34.580023505000042 ], [ 127.179209832000083, 34.602036851000037 ], [ 127.191661004000025, 34.623602606000077 ], [ 127.198822462000066, 34.631008205000057 ], [ 127.213389519000089, 34.636867580000057 ], [ 127.212412957000083, 34.620184637000079 ], [ 127.207530144000089, 34.603989976000037 ], [ 127.192881707000083, 34.574774481000077 ], [ 127.222178582000083, 34.576361395000049 ], [ 127.246674024000072, 34.583726304000038 ], [ 127.261322462000066, 34.600409247000073 ], [ 127.26099694100003, 34.629950262000079 ], [ 127.25513756600003, 34.641506252000056 ], [ 127.247406446000014, 34.648098049000055 ], [ 127.24146569100003, 34.655829169000071 ], [ 127.240570509, 34.670965887000079 ], [ 127.245941602000016, 34.678900458000044 ], [ 127.274750196000014, 34.705145575000074 ], [ 127.285166863000086, 34.70062897300005 ], [ 127.292002800000091, 34.694525458000044 ], [ 127.293711785000028, 34.686712958000044 ], [ 127.288422071000014, 34.67719147300005 ], [ 127.294444207000083, 34.664129950000074 ], [ 127.302989129000025, 34.65501536700009 ], [ 127.314463738000086, 34.651922919000071 ], [ 127.329925977000016, 34.656683661000045 ], [ 127.336436394000089, 34.663641669000071 ], [ 127.350108269000089, 34.68781159100007 ], [ 127.357920769000089, 34.698228257000039 ], [ 127.344004754000025, 34.715277411000045 ], [ 127.338633660000028, 34.733099677000041 ], [ 127.331553582000083, 34.741156317000048 ], [ 127.312591993000069, 34.728989976000037 ], [ 127.290782097000033, 34.721380927000041 ], [ 127.27271569100003, 34.733791408000059 ], [ 127.248057488000086, 34.766546942000048 ], [ 127.233897332000083, 34.748236395000049 ], [ 127.213715040000011, 34.705552476000037 ], [ 127.199717644000089, 34.691473700000074 ], [ 127.185313347000033, 34.686672268000052 ], [ 127.17310631600003, 34.687201239000046 ], [ 127.148041212000066, 34.691473700000074 ], [ 127.136241082000083, 34.688055731000077 ], [ 127.125254754000025, 34.679754950000074 ], [ 127.107188347000033, 34.660101630000042 ], [ 127.099131707000083, 34.654486395000049 ], [ 127.062510613000086, 34.636867580000057 ], [ 127.042735222000033, 34.62445709800005 ], [ 127.030039910000028, 34.618353583000044 ], [ 127.017832879000025, 34.615708726000037 ], [ 127.010264519000089, 34.612494208000044 ], [ 127.008555535000028, 34.60423411700009 ], [ 127.00904381600003, 34.59320709800005 ], [ 127.007172071000014, 34.581529039000088 ], [ 127.000580274000072, 34.573309637000079 ], [ 126.991302931000064, 34.564357815000051 ], [ 126.986664259, 34.553697007000039 ], [ 126.994151238000086, 34.540676174000055 ], [ 126.938975457000083, 34.495917059000078 ], [ 126.940765821000014, 34.454575914000088 ], [ 126.931407097000033, 34.447699286000045 ], [ 126.904795769000089, 34.458685614000046 ], [ 126.896006707000083, 34.44993724200009 ], [ 126.89185631600003, 34.440130927000041 ], [ 126.892344597000033, 34.429388739000046 ], [ 126.897959832000083, 34.417710679000038 ], [ 126.885020379000025, 34.421087958000044 ], [ 126.857025587000066, 34.437567450000074 ], [ 126.818614129000025, 34.446844794000071 ], [ 126.80982506600003, 34.451239325000074 ], [ 126.80201256600003, 34.470404364000046 ], [ 126.806162957000083, 34.521063544000071 ], [ 126.802338087000066, 34.540676174000055 ], [ 126.80787194100003, 34.553168036000045 ], [ 126.806651238000086, 34.568548895000049 ], [ 126.80005944100003, 34.582017320000034 ], [ 126.788666212000066, 34.589056708000044 ], [ 126.777842644000089, 34.586493231000077 ], [ 126.766937696000014, 34.578029690000051 ], [ 126.758555535000028, 34.567206122000073 ], [ 126.755218946000014, 34.557684637000079 ], [ 126.759287957000083, 34.543850002000056 ], [ 126.765635613000086, 34.531805731000077 ], [ 126.765961134, 34.523382880000042 ], [ 126.735118035000028, 34.514878648000035 ], [ 126.739105665000011, 34.50267161700009 ], [ 126.761485222000033, 34.479193427000041 ], [ 126.723155144000089, 34.460842190000051 ], [ 126.708750847000033, 34.449896552000041 ], [ 126.723643425000091, 34.445013739000046 ], [ 126.727061394000089, 34.442775783000059 ], [ 126.728037957000083, 34.437892971000053 ], [ 126.726898634, 34.433010158000059 ], [ 126.723643425000091, 34.430812893000052 ], [ 126.717539910000028, 34.431830145000049 ], [ 126.70826256600003, 34.436468817000048 ], [ 126.703379754000025, 34.437567450000074 ], [ 126.690196160000028, 34.435939846000053 ], [ 126.687510613000086, 34.431341864000046 ], [ 126.687347852000016, 34.423895575000074 ], [ 126.682220899000072, 34.414007880000042 ], [ 126.674408399000072, 34.409654039000088 ], [ 126.644786004000025, 34.403469143000052 ], [ 126.633636915000011, 34.395697333000044 ], [ 126.629649285000028, 34.389227606000077 ], [ 126.605316602000016, 34.321682033000059 ], [ 126.603282097000033, 34.311997789000088 ], [ 126.603282097000033, 34.300441799000055 ], [ 126.578868035000028, 34.304754950000074 ], [ 126.532806837000066, 34.292222398000035 ], [ 126.521250847000033, 34.294175523000035 ], [ 126.519867384, 34.305975653000075 ], [ 126.529307488000086, 34.330023505000042 ], [ 126.527435743000069, 34.341376044000071 ], [ 126.518321160000028, 34.347845770000049 ], [ 126.505707227000016, 34.34992096600007 ], [ 126.479584181000064, 34.348822333000044 ], [ 126.479584181000064, 34.355047919000071 ], [ 126.484873894000089, 34.360825914000088 ], [ 126.486582879000025, 34.364813544000071 ], [ 126.488536004000025, 34.380560614000046 ], [ 126.491953972000033, 34.381089585000041 ], [ 126.496429884, 34.379868882000039 ], [ 126.500743035000028, 34.382310289000088 ], [ 126.51490319100003, 34.403550523000035 ], [ 126.517588738000086, 34.413763739000046 ], [ 126.513763868000069, 34.423976955000057 ], [ 126.508799675000091, 34.427232164000088 ], [ 126.501475457000083, 34.429348049000055 ], [ 126.486582879000025, 34.430812893000052 ], [ 126.47584069100003, 34.433254299000055 ], [ 126.474375847000033, 34.438666083000044 ], [ 126.477305535000028, 34.443589585000041 ], [ 126.479584181000064, 34.445013739000046 ], [ 126.479991082000083, 34.457831122000073 ], [ 126.483734571000014, 34.47016022300005 ], [ 126.481944207000083, 34.476752020000049 ], [ 126.465912306000064, 34.472357489000046 ], [ 126.470306837000066, 34.496486721000053 ], [ 126.490244988000086, 34.508612372000073 ], [ 126.51685631600003, 34.512844143000052 ], [ 126.541758660000028, 34.513332424000055 ], [ 126.537201368000069, 34.521063544000071 ], [ 126.531016472000033, 34.527004299000055 ], [ 126.523203972000033, 34.531154690000051 ], [ 126.513763868000069, 34.53384023600006 ], [ 126.529551629000025, 34.542954820000034 ], [ 126.539317254000025, 34.553615627000056 ], [ 126.539642774000072, 34.562974351000037 ], [ 126.527435743000069, 34.568548895000049 ], [ 126.522959832000083, 34.567084052000041 ], [ 126.513926629000025, 34.557806708000044 ], [ 126.507578972000033, 34.554266669000071 ], [ 126.49927819100003, 34.554348049000055 ], [ 126.486338738000086, 34.560939846000053 ], [ 126.479584181000064, 34.561102606000077 ], [ 126.473480665000011, 34.556545315000051 ], [ 126.469330274000072, 34.549709377000056 ], [ 126.465912306000064, 34.540676174000055 ], [ 126.457041863000086, 34.539048570000034 ], [ 126.44849694100003, 34.539292710000041 ], [ 126.43873131600003, 34.540676174000055 ], [ 126.417328321000014, 34.540350653000075 ], [ 126.405609571000014, 34.538641669000071 ], [ 126.390879754000025, 34.53384023600006 ], [ 126.389008009, 34.549709377000056 ], [ 126.380463087000066, 34.55890534100007 ], [ 126.35670006600003, 34.568548895000049 ], [ 126.357025587000066, 34.57172272300005 ], [ 126.352061394000089, 34.579779364000046 ], [ 126.346039259, 34.58462148600006 ], [ 126.34302819100003, 34.578192450000074 ], [ 126.340098504000025, 34.574367580000057 ], [ 126.333018425000091, 34.570990302000041 ], [ 126.324961785000028, 34.569647528000075 ], [ 126.318614129000025, 34.571682033000059 ], [ 126.297862175000091, 34.588039455000057 ], [ 126.295258009, 34.589056708000044 ], [ 126.291840040000011, 34.599107164000088 ], [ 126.293549024000072, 34.601996161000045 ], [ 126.297618035000028, 34.603338934000078 ], [ 126.301524285000028, 34.608872789000088 ], [ 126.305511915000011, 34.604193427000041 ], [ 126.315521681000064, 34.604071356000077 ], [ 126.322764519000089, 34.608872789000088 ], [ 126.318614129000025, 34.619126695000034 ], [ 126.291840040000011, 34.629950262000079 ], [ 126.271088087000066, 34.642482815000051 ], [ 126.269379102000016, 34.671291408000059 ], [ 126.278086785000028, 34.703314520000049 ], [ 126.288584832000083, 34.725572007000039 ], [ 126.289642774000072, 34.73314036700009 ], [ 126.288828972000033, 34.742417710000041 ], [ 126.29029381600003, 34.750230210000041 ], [ 126.298431837000066, 34.753485419000071 ], [ 126.30591881600003, 34.752875067000048 ], [ 126.31373131600003, 34.751044012000079 ], [ 126.31959069100003, 34.747748114000046 ], [ 126.326182488000086, 34.735825914000088 ], [ 126.35670006600003, 34.698228257000039 ], [ 126.347178582000083, 34.687892971000053 ], [ 126.344248894000089, 34.677883205000057 ], [ 126.345957879000025, 34.667669989000046 ], [ 126.349213087000066, 34.656683661000045 ], [ 126.369883660000028, 34.608872789000088 ], [ 126.382334832000083, 34.602728583000044 ], [ 126.431895379000025, 34.595892645000049 ], [ 126.453135613000086, 34.583807684000078 ], [ 126.464610222000033, 34.584662177000041 ], [ 126.472748243000069, 34.602036851000037 ], [ 126.461517774000072, 34.600653387000079 ], [ 126.455577019000089, 34.603094794000071 ], [ 126.434997147000104, 34.606785903000059 ], [ 126.425299312000107, 34.619271769000079 ], [ 126.412566542000036, 34.629766068000038 ], [ 126.416107618000069, 34.652736721000053 ], [ 126.402901775000032, 34.650747830000057 ], [ 126.396519011, 34.636604222000074 ], [ 126.386133741000094, 34.63583540500008 ], [ 126.379854787, 34.654505542000038 ], [ 126.376775424000016, 34.679470152000079 ], [ 126.384379372000012, 34.693698786000084 ], [ 126.37861288900001, 34.711182163000046 ], [ 126.405969475, 34.713408013000048 ], [ 126.447881157000097, 34.705878563000056 ], [ 126.453336352000065, 34.697883824000087 ], [ 126.450694207000083, 34.684881903000075 ], [ 126.450938347000033, 34.680853583000044 ], [ 126.450531446000014, 34.676988023000035 ], [ 126.452891472000033, 34.670965887000079 ], [ 126.463305994000052, 34.665421393000088 ], [ 126.469362486000023, 34.658674345000065 ], [ 126.48239978399999, 34.651669889000061 ], [ 126.500345465, 34.645818576000067 ], [ 126.511193270000035, 34.637154827000074 ], [ 126.52512592100004, 34.628902292000078 ], [ 126.535711330000026, 34.623177625000039 ], [ 126.540049675000091, 34.62759023600006 ], [ 126.519111345000056, 34.650369807000061 ], [ 126.53155606200005, 34.652596588000051 ], [ 126.550037842000052, 34.643830033000086 ], [ 126.573872579000067, 34.633111353000061 ], [ 126.602701003000107, 34.62553248100005 ], [ 126.623627149000072, 34.629950262000079 ], [ 126.602549675000091, 34.632879950000074 ], [ 126.585459832000083, 34.641791083000044 ], [ 126.555430535000028, 34.66351959800005 ], [ 126.562754754000025, 34.670965887000079 ], [ 126.541107618000069, 34.683986721000053 ], [ 126.508392774000072, 34.718491929000038 ], [ 126.490244988000086, 34.725572007000039 ], [ 126.465342644000089, 34.729681708000044 ], [ 126.435767441000053, 34.728105394000067 ], [ 126.415375196000014, 34.73899974200009 ], [ 126.390178602000105, 34.733397455000045 ], [ 126.36705994600004, 34.739664412000081 ], [ 126.364016908000053, 34.749160108000069 ], [ 126.378316873000017, 34.763887706000048 ], [ 126.392328407000036, 34.768607452000083 ], [ 126.422127907, 34.764783571000066 ], [ 126.460148599000036, 34.778755392000051 ], [ 126.505869988000086, 34.751044012000079 ], [ 126.521250847000033, 34.753485419000071 ], [ 126.525157097000033, 34.751288153000075 ], [ 126.527598504000025, 34.749253648000035 ], [ 126.530284050000091, 34.74750397300005 ], [ 126.534922722000033, 34.746039130000042 ], [ 126.53052819100003, 34.765285549000055 ], [ 126.53248131600003, 34.782863674000055 ], [ 126.544444207000083, 34.795721747000073 ], [ 126.568939649000072, 34.800726630000042 ], [ 126.614756707000083, 34.789455471000053 ], [ 126.638194207000083, 34.788031317000048 ], [ 126.631114129000025, 34.800726630000042 ], [ 126.646576368000069, 34.807114976000037 ], [ 126.654877149000072, 34.808539130000042 ], [ 126.66529381600003, 34.808091539000088 ], [ 126.650401238000086, 34.822170315000051 ], [ 126.627696160000028, 34.825588283000059 ], [ 126.575775587000066, 34.821763414000088 ], [ 126.579681837000066, 34.831447658000059 ], [ 126.578379754000025, 34.838039455000057 ], [ 126.575775587000066, 34.844875393000052 ], [ 126.575775587000066, 34.855292059000078 ], [ 126.579437696000014, 34.861883856000077 ], [ 126.584727410000028, 34.866766669000071 ], [ 126.58912194100003, 34.872870184000078 ], [ 126.589447462000066, 34.883246161000045 ], [ 126.581390821000014, 34.898016669000071 ], [ 126.56763756600003, 34.901434637000079 ], [ 126.552744988000086, 34.895697333000044 ], [ 126.541758660000028, 34.883246161000045 ], [ 126.540537957000083, 34.874945380000042 ], [ 126.547129754000025, 34.858099677000041 ], [ 126.548594597000033, 34.84906647300005 ], [ 126.546885613000086, 34.847723700000074 ], [ 126.534922722000033, 34.828029690000051 ], [ 126.523692254000025, 34.793931382000039 ], [ 126.513275587000066, 34.782294012000079 ], [ 126.49341881600003, 34.780829169000071 ], [ 126.49341881600003, 34.783148505000042 ], [ 126.487152540000011, 34.787054755000042 ], [ 126.491221550000091, 34.792385158000059 ], [ 126.496592644000089, 34.802801825000074 ], [ 126.500743035000028, 34.808091539000088 ], [ 126.487152540000011, 34.813788153000075 ], [ 126.478037957000083, 34.810451565000051 ], [ 126.469248894000089, 34.804103908000059 ], [ 126.456065300000091, 34.800726630000042 ], [ 126.429453972000033, 34.805609442000048 ], [ 126.420990431000064, 34.802313544000071 ], [ 126.419317908000039, 34.791988179000043 ], [ 126.405609571000014, 34.792181708000044 ], [ 126.38404381600003, 34.786322333000044 ], [ 126.373545769000089, 34.790716864000046 ], [ 126.370127800000091, 34.801336981000077 ], [ 126.377289259, 34.81126536700009 ], [ 126.39771569100003, 34.828029690000051 ], [ 126.405121290000011, 34.837225653000075 ], [ 126.409271681000064, 34.84446849200009 ], [ 126.410980665000011, 34.851263739000046 ], [ 126.41138756600003, 34.859035549000055 ], [ 126.408702019000089, 34.873968817000048 ], [ 126.412119988000086, 34.881333726000037 ], [ 126.42505944100003, 34.890692450000074 ], [ 126.412608269000089, 34.89874909100007 ], [ 126.401703321000014, 34.91547272300005 ], [ 126.39576256600003, 34.935044664000088 ], [ 126.39771569100003, 34.95148346600007 ], [ 126.411631707000083, 34.961981512000079 ], [ 126.430511915000011, 34.972601630000042 ], [ 126.436371290000011, 34.981390692000048 ], [ 126.41138756600003, 34.986273505000042 ], [ 126.399994337000066, 34.984564520000049 ], [ 126.393321160000028, 34.979803778000075 ], [ 126.38795006600003, 34.974839585000041 ], [ 126.380381707000083, 34.972601630000042 ], [ 126.370616082000083, 34.968491929000038 ], [ 126.372080925000091, 34.958726304000038 ], [ 126.376963738000086, 34.947251695000034 ], [ 126.377289259, 34.937892971000053 ], [ 126.363291863000086, 34.927435614000046 ], [ 126.345225457000083, 34.92641836100006 ], [ 126.327728712000066, 34.93109772300005 ], [ 126.315196160000028, 34.937892971000053 ], [ 126.324717644000089, 34.943264065000051 ], [ 126.328868035000028, 34.944728908000059 ], [ 126.320078972000033, 34.949896552000041 ], [ 126.312591993000069, 34.956122137000079 ], [ 126.306407097000033, 34.963568427000041 ], [ 126.301524285000028, 34.972601630000042 ], [ 126.312998894000089, 34.977443752000056 ], [ 126.324229363000086, 34.976955471000053 ], [ 126.349213087000066, 34.972601630000042 ], [ 126.346202019000089, 34.994086005000042 ], [ 126.374115431000064, 35.016831773000035 ], [ 126.366709832000083, 35.037787177000041 ], [ 126.338226759, 35.070135809000078 ], [ 126.320648634, 35.083319403000075 ], [ 126.301524285000028, 35.088690497000073 ], [ 126.309418165000011, 35.066229559000078 ], [ 126.302500847000033, 35.05337148600006 ], [ 126.28834069100003, 35.052964585000041 ], [ 126.274180535000028, 35.068182684000078 ], [ 126.283539259, 35.07884349200009 ], [ 126.257823113000086, 35.106838283000059 ], [ 126.254242384, 35.123439846000053 ], [ 126.268646681000064, 35.137152411000045 ], [ 126.289073113000086, 35.13939036700009 ], [ 126.307220899000072, 35.131781317000048 ], [ 126.315196160000028, 35.11595286700009 ], [ 126.327891472000033, 35.122626044000071 ], [ 126.334971550000091, 35.134100653000075 ], [ 126.34302819100003, 35.15696849200009 ], [ 126.350108269000089, 35.145575262000079 ], [ 126.351410352000016, 35.135972398000035 ], [ 126.348724806000064, 35.11749909100007 ], [ 126.344248894000089, 35.10814036700009 ], [ 126.34302819100003, 35.102362372000073 ], [ 126.34498131600003, 35.09642161700009 ], [ 126.348968946000014, 35.09642161700009 ], [ 126.353607618000069, 35.097845770000049 ], [ 126.35670006600003, 35.096136786000045 ], [ 126.360687696000014, 35.082953192000048 ], [ 126.361664259, 35.077297268000052 ], [ 126.365326368000069, 35.074042059000078 ], [ 126.377289259, 35.068182684000078 ], [ 126.386973504000025, 35.065375067000048 ], [ 126.403819207000083, 35.064886786000045 ], [ 126.41138756600003, 35.061346747000073 ], [ 126.405609571000014, 35.049953518000052 ], [ 126.407237175000091, 35.038967190000051 ], [ 126.414398634, 35.02875397300005 ], [ 126.42505944100003, 35.019761460000041 ], [ 126.450287306000064, 35.066595770000049 ], [ 126.452891472000033, 35.082464911000045 ], [ 126.45240319100003, 35.100287177000041 ], [ 126.447520379000025, 35.106675523000035 ], [ 126.428721550000091, 35.110541083000044 ], [ 126.420746290000011, 35.114203192000048 ], [ 126.414154493000069, 35.119696356000077 ], [ 126.403900587000066, 35.142157294000071 ], [ 126.371104363000086, 35.173529364000046 ], [ 126.363536004000025, 35.187974351000037 ], [ 126.365733269000089, 35.192857164000088 ], [ 126.37037194100003, 35.196966864000046 ], [ 126.375091993000069, 35.202378648000035 ], [ 126.377289259, 35.211615302000041 ], [ 126.366709832000083, 35.217718817000048 ], [ 126.361582879000025, 35.225653387000079 ], [ 126.363536004000025, 35.239488023000035 ], [ 126.350677931000064, 35.235337632000039 ], [ 126.337412957000083, 35.233587958000044 ], [ 126.308929884, 35.233303127000056 ], [ 126.320078972000033, 35.244574286000045 ], [ 126.338389519000089, 35.248032945000034 ], [ 126.359141472000033, 35.248968817000048 ], [ 126.377289259, 35.25259023600006 ], [ 126.371348504000025, 35.254461981000077 ], [ 126.368174675000091, 35.256740627000056 ], [ 126.36451256600003, 35.258734442000048 ], [ 126.35670006600003, 35.259995835000041 ], [ 126.361582879000025, 35.269029039000088 ], [ 126.367442254000025, 35.274318752000056 ], [ 126.373871290000011, 35.278387762000079 ], [ 126.380381707000083, 35.284165757000039 ], [ 126.383799675000091, 35.29173411700009 ], [ 126.382172071000014, 35.29828522300005 ], [ 126.378998243000069, 35.304592190000051 ], [ 126.377289259, 35.311509507000039 ], [ 126.380707227000016, 35.327093817000048 ], [ 126.389414910000028, 35.342474677000041 ], [ 126.41138756600003, 35.36985911700009 ], [ 126.41724694100003, 35.364894924000055 ], [ 126.431895379000025, 35.349351304000038 ], [ 126.449554884, 35.344956773000035 ], [ 126.458506707000083, 35.345445054000038 ], [ 126.456065300000091, 35.352769273000035 ], [ 126.43690020030192, 35.370562056925955 ], [ 126.437068312952192, 35.370606187225746 ], [ 126.457738885740923, 35.376032213515828 ], [ 126.554890577937726, 35.398175563751238 ], [ 126.583726028133697, 35.391845200795387 ], [ 126.577938266637602, 35.355258287040272 ], [ 126.57153039021523, 35.328334866560795 ], [ 126.570083449391632, 35.301230577129388 ], [ 126.594991490065127, 35.294383450236012 ], [ 126.62475711534853, 35.300481269195188 ], [ 126.656486443594417, 35.309886380052376 ], [ 126.689972771925795, 35.313968818306307 ], [ 126.70340864509285, 35.322082017970729 ], [ 126.717878046134842, 35.329265042547661 ], [ 126.735034620551232, 35.333347479902272 ], [ 126.751364373566958, 35.339781196544948 ], [ 126.764593541159002, 35.349160468081095 ], [ 126.772965123241761, 35.363319810760629 ], [ 126.77100141758126, 35.373551743917801 ], [ 126.770277948068838, 35.384222927546034 ], [ 126.782886998036474, 35.391793524851266 ], [ 126.792085403318652, 35.403162340469635 ], [ 126.791155227331842, 35.416701565524818 ], [ 126.791258580119347, 35.430214952158281 ], [ 126.816373326367852, 35.448611761823315 ], [ 126.850273064949988, 35.445898749127934 ], [ 126.866912876328115, 35.462021796568649 ], [ 126.885102981317459, 35.460962429372614 ], [ 126.902569614995741, 35.454916287256822 ], [ 126.933162062579072, 35.434478258464821 ], [ 126.980084263178128, 35.382595120468409 ], [ 127.010986770023351, 35.382905177931605 ], [ 127.013363885934496, 35.397167874297963 ], [ 127.019771763256244, 35.410397040091311 ], [ 127.029590285263453, 35.418096829505032 ], [ 127.036824985784392, 35.428380439505645 ], [ 127.066280551806017, 35.429698188220812 ], [ 127.086434360657222, 35.404635117916314 ], [ 127.077546014636823, 35.375799669519097 ], [ 127.083643833595943, 35.357247830223173 ], [ 127.104004348022158, 35.338463446930518 ], [ 127.102660760885328, 35.305390529749104 ], [ 127.126741978359519, 35.284435737019635 ], [ 127.163949008839609, 35.279914049194019 ], [ 127.19268110624796, 35.293970038186671 ], [ 127.222860141782121, 35.298052477339922 ], [ 127.24363406825762, 35.297819933343249 ], [ 127.261204054723294, 35.301488959547839 ], [ 127.276396926177199, 35.291902981537362 ], [ 127.293450148705347, 35.28376394345122 ], [ 127.330243768035416, 35.283221340192654 ], [ 127.366520624327336, 35.2872004265584 ], [ 127.399696893396822, 35.28740713123409 ], [ 127.431012811392065, 35.290972805550496 ], [ 127.460158319051175, 35.316604315736583 ], [ 127.496435175342981, 35.333114935905542 ], [ 127.560410597570922, 35.314227199825382 ], [ 127.617461379439078, 35.276632594818352 ], [ 127.612087029992381, 35.254825141367178 ], [ 127.632654249993607, 35.235007229300152 ], [ 127.642679477575825, 35.209401557535841 ], [ 127.646916946359966, 35.156252345869063 ], [ 127.660456171415149, 35.136356920335572 ], [ 127.685054152826865, 35.12168081281925 ], [ 127.707378371114942, 35.102508856798295 ], [ 127.716060011560216, 35.081373196016159 ], [ 127.726808709554234, 35.06292471040706 ], [ 127.789130487182206, 35.007295030041576 ], [ 127.802566360349147, 34.980164903087768 ], [ 127.802463006662379, 34.961587226269444 ], [ 127.804990421770526, 34.957146974753073 ] ], [ [ 126.98556196541233, 35.238779609191567 ], [ 126.933988885778376, 35.254592597370447 ], [ 126.906600376406232, 35.24787466078692 ], [ 126.880348748595793, 35.242991237755405 ], [ 126.844485305252533, 35.250768541534967 ], [ 126.82288455557773, 35.234077053313342 ], [ 126.850273064949988, 35.18488109048991 ], [ 126.904740025331876, 35.158138536264403 ], [ 126.96644168533544, 35.150077013443422 ], [ 127.005819126151664, 35.193045966098452 ], [ 126.98556196541233, 35.238779609191567 ] ] ], [ [ [ 127.173024936000047, 34.483710028000075 ], [ 127.204274936000047, 34.486761786000045 ], [ 127.220550977000016, 34.485744533000059 ], [ 127.234222852000016, 34.480292059000078 ], [ 127.245127800000091, 34.464056708000044 ], [ 127.24187259200005, 34.445461330000057 ], [ 127.228688998000052, 34.430243231000077 ], [ 127.21021569100003, 34.423976955000057 ], [ 127.168955925000091, 34.417710679000038 ], [ 127.153005405000044, 34.419582424000055 ], [ 127.141286655000044, 34.424302476000037 ], [ 127.117360873000052, 34.437567450000074 ], [ 127.117360873000052, 34.445013739000046 ], [ 127.122813347000033, 34.450588283000059 ], [ 127.123789910000028, 34.455226955000057 ], [ 127.119883660000028, 34.45970286700009 ], [ 127.110524936000047, 34.464911200000074 ], [ 127.124359571000014, 34.473334052000041 ], [ 127.14031009200005, 34.478705145000049 ], [ 127.173024936000047, 34.483710028000075 ] ] ], [ [ [ 126.380056186000047, 34.498439846000053 ], [ 126.381602410000028, 34.48468659100007 ], [ 126.378916863000086, 34.469305731000077 ], [ 126.373545769000089, 34.454413153000075 ], [ 126.353851759, 34.419582424000055 ], [ 126.345876498000052, 34.409002997000073 ], [ 126.335948113000086, 34.403469143000052 ], [ 126.334239129000025, 34.40656159100007 ], [ 126.317149285000028, 34.419907945000034 ], [ 126.309255405000044, 34.423976955000057 ], [ 126.309255405000044, 34.417710679000038 ], [ 126.305186394000089, 34.401678778000075 ], [ 126.209971550000091, 34.358791408000059 ], [ 126.19849694100003, 34.355536200000074 ], [ 126.156423373000052, 34.352606512000079 ], [ 126.144786004000025, 34.355047919000071 ], [ 126.142588738000086, 34.363755601000037 ], [ 126.148203972000033, 34.371079820000034 ], [ 126.155609571000014, 34.377183335000041 ], [ 126.158457879000025, 34.382310289000088 ], [ 126.153086785000028, 34.388495184000078 ], [ 126.12427819100003, 34.403469143000052 ], [ 126.12427819100003, 34.382310289000088 ], [ 126.103282097000033, 34.402777411000045 ], [ 126.115733269000089, 34.43618398600006 ], [ 126.14421634200005, 34.46320221600007 ], [ 126.172129754000025, 34.464911200000074 ], [ 126.181162957000083, 34.486517645000049 ], [ 126.187022332000083, 34.494208075000074 ], [ 126.196299675000091, 34.502752997000073 ], [ 126.207041863000086, 34.507635809000078 ], [ 126.216563347000033, 34.508978583000044 ], [ 126.223806186000047, 34.513413804000038 ], [ 126.226573113000086, 34.527573960000041 ], [ 126.238291863000086, 34.515692450000074 ], [ 126.254161004000025, 34.514349677000041 ], [ 126.268321160000028, 34.522040106000077 ], [ 126.274424675000091, 34.537258205000057 ], [ 126.266774936000047, 34.549750067000048 ], [ 126.241058790000011, 34.566473700000074 ], [ 126.24773196700005, 34.574774481000077 ], [ 126.263926629000025, 34.575751044000071 ], [ 126.280446811000047, 34.568304755000042 ], [ 126.294769727000016, 34.55890534100007 ], [ 126.305430535000028, 34.554266669000071 ], [ 126.30787194100003, 34.551459052000041 ], [ 126.310801629000025, 34.545152085000041 ], [ 126.315603061000047, 34.538275458000044 ], [ 126.322276238000086, 34.53384023600006 ], [ 126.326833530000044, 34.535060940000051 ], [ 126.349457227000016, 34.546820380000042 ], [ 126.350352410000028, 34.538153387000079 ], [ 126.380056186000047, 34.498439846000053 ] ] ], [ [ [ 127.782074415000011, 34.684556382000039 ], [ 127.792491082000083, 34.68235911700009 ], [ 127.801605665000011, 34.670477606000077 ], [ 127.808767123000052, 34.655829169000071 ], [ 127.817230665000011, 34.630764065000051 ], [ 127.818125847000033, 34.616156317000048 ], [ 127.815114780000044, 34.601955471000053 ], [ 127.80787194100003, 34.58820221600007 ], [ 127.797862175000091, 34.579738674000055 ], [ 127.786631707000083, 34.579006252000056 ], [ 127.775401238000086, 34.583970445000034 ], [ 127.740000847000033, 34.613674221000053 ], [ 127.735850457000083, 34.625230210000041 ], [ 127.74187259200005, 34.643622137000079 ], [ 127.746267123000052, 34.648423570000034 ], [ 127.764984571000014, 34.660101630000042 ], [ 127.768321160000028, 34.666083075000074 ], [ 127.775889519000089, 34.691473700000074 ], [ 127.760752800000091, 34.704738674000055 ], [ 127.762543165000011, 34.712836005000042 ], [ 127.773448113000086, 34.716986395000049 ], [ 127.785899285000028, 34.718166408000059 ], [ 127.796641472000033, 34.714178778000075 ], [ 127.799327019000089, 34.704820054000038 ], [ 127.79420006600003, 34.693793036000045 ], [ 127.782074415000011, 34.684556382000039 ] ] ], [ [ [ 125.989024285000028, 34.713324286000045 ], [ 126.000987175000091, 34.704413153000075 ], [ 126.004079623000052, 34.700262762000079 ], [ 126.005381707000083, 34.692613023000035 ], [ 126.00318444100003, 34.684759833000044 ], [ 125.999034050000091, 34.677435614000046 ], [ 125.983897332000083, 34.660630601000037 ], [ 125.976898634, 34.656398830000057 ], [ 125.96998131600003, 34.655910549000055 ], [ 125.959727410000028, 34.656683661000045 ], [ 125.959646030000044, 34.659816799000055 ], [ 125.945160352000016, 34.666815497000073 ], [ 125.929453972000033, 34.672308661000045 ], [ 125.92505944100003, 34.670965887000079 ], [ 125.916026238000086, 34.687648830000057 ], [ 125.922862175000091, 34.695379950000074 ], [ 125.95240319100003, 34.705145575000074 ], [ 125.970550977000016, 34.725653387000079 ], [ 125.976735873000052, 34.728257554000038 ], [ 125.980479363000086, 34.726223049000055 ], [ 125.989024285000028, 34.713324286000045 ] ] ], [ [ [ 126.007172071000014, 34.780951239000046 ], [ 126.007578972000033, 34.759711005000042 ], [ 126.002940300000091, 34.761460679000038 ], [ 125.991547071000014, 34.764105536000045 ], [ 125.986501498000052, 34.766546942000048 ], [ 125.977875196000014, 34.757147528000075 ], [ 125.964203321000014, 34.757066148000035 ], [ 125.951670769000089, 34.759263414000088 ], [ 125.946136915000011, 34.756659247000073 ], [ 125.944102410000028, 34.743231512000079 ], [ 125.93873131600003, 34.731431382000039 ], [ 125.930023634, 34.722601630000042 ], [ 125.918142123000052, 34.718166408000059 ], [ 125.906423373000052, 34.719305731000077 ], [ 125.897797071000014, 34.72601959800005 ], [ 125.892588738000086, 34.73663971600007 ], [ 125.890879754000025, 34.749823309000078 ], [ 125.893890821000014, 34.762274481000077 ], [ 125.901866082000083, 34.771063544000071 ], [ 125.912852410000028, 34.776922919000071 ], [ 125.92505944100003, 34.780829169000071 ], [ 125.938649936000047, 34.776516018000052 ], [ 125.956553582000083, 34.779730536000045 ], [ 125.989268425000091, 34.790025132000039 ], [ 125.995941602000016, 34.790757554000038 ], [ 126.000743035000028, 34.790106512000079 ], [ 126.004405144000089, 34.787176825000074 ], [ 126.007172071000014, 34.780951239000046 ] ] ], [ [ [ 126.056000196000014, 34.913641669000071 ], [ 126.060313347000033, 34.926906643000052 ], [ 126.070078972000033, 34.928900458000044 ], [ 126.081228061000047, 34.92259349200009 ], [ 126.08912194100003, 34.911322333000044 ], [ 126.09148196700005, 34.896918036000045 ], [ 126.088389519000089, 34.882961330000057 ], [ 126.080739780000044, 34.870998440000051 ], [ 126.069102410000028, 34.86273834800005 ], [ 126.054698113000086, 34.859198309000078 ], [ 126.046397332000083, 34.861802476000037 ], [ 126.039886915000011, 34.866441148000035 ], [ 126.031423373000052, 34.868963934000078 ], [ 125.998789910000028, 34.862941799000055 ], [ 125.986501498000052, 34.86273834800005 ], [ 125.986501498000052, 34.868963934000078 ], [ 125.996348504000025, 34.876044012000079 ], [ 126.014333530000044, 34.899644273000035 ], [ 126.028005405000044, 34.909898179000038 ], [ 126.03443444100003, 34.909572658000059 ], [ 126.043955925000091, 34.907416083000044 ], [ 126.052256707000083, 34.907538153000075 ], [ 126.056000196000014, 34.913641669000071 ] ] ], [ [ [ 126.11060631600003, 35.051174221000053 ], [ 126.105235222000033, 35.050034898000035 ], [ 126.078623894000089, 35.055853583000044 ], [ 126.069102410000028, 35.054592190000051 ], [ 126.065440300000091, 35.056830145000049 ], [ 126.062998894000089, 35.059027411000045 ], [ 126.060394727000016, 35.060736395000049 ], [ 126.056000196000014, 35.061346747000073 ], [ 126.063812696000014, 35.093085028000075 ], [ 126.069102410000028, 35.102362372000073 ], [ 126.076019727000016, 35.105617580000057 ], [ 126.087901238000086, 35.108872789000088 ], [ 126.09888756600003, 35.113267320000034 ], [ 126.103770379000025, 35.119696356000077 ], [ 126.111338738000086, 35.133286851000037 ], [ 126.129405144000089, 35.14288971600007 ], [ 126.149912957000083, 35.146877346000053 ], [ 126.165212436000047, 35.143500067000048 ], [ 126.134776238000086, 35.128973700000074 ], [ 126.127777540000011, 35.12055084800005 ], [ 126.126963738000086, 35.110541083000044 ], [ 126.131358269000089, 35.10024648600006 ], [ 126.144786004000025, 35.082464911000045 ], [ 126.13404381600003, 35.078802802000041 ], [ 126.122813347000033, 35.069810289000088 ], [ 126.114268425000091, 35.05931224200009 ], [ 126.11060631600003, 35.051174221000053 ] ] ], [ [ [ 127.309092644000089, 34.020086981000077 ], [ 127.314952019000089, 34.015773830000057 ], [ 127.322113477000016, 34.014105536000045 ], [ 127.324717644000089, 34.010687567000048 ], [ 127.32349694100003, 34.005764065000051 ], [ 127.309336785000028, 34.011460679000038 ], [ 127.295664910000028, 34.014105536000045 ], [ 127.293223504000025, 34.017238674000055 ], [ 127.289805535000028, 34.02407461100006 ], [ 127.287608269000089, 34.032416083000044 ], [ 127.283864780000044, 34.03461334800005 ], [ 127.280772332000083, 34.037787177000041 ], [ 127.278330925000091, 34.044623114000046 ], [ 127.279795769000089, 34.048651434000078 ], [ 127.279307488000086, 34.053290106000077 ], [ 127.280039910000028, 34.057440497000073 ], [ 127.283213738000086, 34.058294989000046 ], [ 127.286875847000033, 34.05727773600006 ], [ 127.291514519000089, 34.058498440000051 ], [ 127.29420006600003, 34.061102606000077 ], [ 127.295664910000028, 34.061468817000048 ], [ 127.29810631600003, 34.057196356000077 ], [ 127.294688347000033, 34.047919012000079 ], [ 127.296397332000083, 34.037583726000037 ], [ 127.309092644000089, 34.020086981000077 ] ] ], [ [ [ 127.531911655000044, 34.450588283000059 ], [ 127.53638756600003, 34.440659898000035 ], [ 127.53638756600003, 34.434759833000044 ], [ 127.528819207000083, 34.42804596600007 ], [ 127.510590040000011, 34.41828034100007 ], [ 127.494639519000089, 34.414252020000049 ], [ 127.488942905000044, 34.416937567000048 ], [ 127.488536004000025, 34.425482489000046 ], [ 127.481781446000014, 34.431341864000046 ], [ 127.471690300000091, 34.434027411000045 ], [ 127.467051629000025, 34.439195054000038 ], [ 127.469737175000091, 34.443182684000078 ], [ 127.458832227000016, 34.448919989000046 ], [ 127.452159050000091, 34.453029690000051 ], [ 127.455739780000044, 34.460516669000071 ], [ 127.455088738000086, 34.466131903000075 ], [ 127.453379754000025, 34.470607815000051 ], [ 127.45826256600003, 34.472886460000041 ], [ 127.465342644000089, 34.470363674000055 ], [ 127.472829623000052, 34.466782945000034 ], [ 127.486827019000089, 34.463853257000039 ], [ 127.487071160000028, 34.46124909100007 ], [ 127.491709832000083, 34.462225653000075 ], [ 127.500743035000028, 34.469631252000056 ], [ 127.509938998000052, 34.470038153000075 ], [ 127.531911655000044, 34.450588283000059 ] ] ], [ [ [ 127.782969597000033, 34.506984768000052 ], [ 127.789561394000089, 34.503973700000074 ], [ 127.793955925000091, 34.498236395000049 ], [ 127.791758660000028, 34.492010809000078 ], [ 127.779307488000086, 34.488470770000049 ], [ 127.77116946700005, 34.488185940000051 ], [ 127.769053582000083, 34.489935614000046 ], [ 127.765798373000052, 34.493963934000078 ], [ 127.756521030000044, 34.498236395000049 ], [ 127.741953972000033, 34.50226471600007 ], [ 127.732188347000033, 34.508490302000041 ], [ 127.727712436000047, 34.516994533000059 ], [ 127.722829623000052, 34.523179429000038 ], [ 127.714610222000033, 34.526841539000088 ], [ 127.707530144000089, 34.533880927000041 ], [ 127.712901238000086, 34.54242584800005 ], [ 127.72974694100003, 34.549058335000041 ], [ 127.748057488000086, 34.55109284100007 ], [ 127.761078321000014, 34.543117580000057 ], [ 127.776215040000011, 34.518784898000035 ], [ 127.774424675000091, 34.511786200000074 ], [ 127.774912957000083, 34.508205471000053 ], [ 127.782969597000033, 34.506984768000052 ] ] ], [ [ [ 126.100108269000089, 34.596747137000079 ], [ 126.102386915000011, 34.594875393000052 ], [ 126.104258660000028, 34.589789130000042 ], [ 126.103363477000016, 34.579413153000075 ], [ 126.100271030000044, 34.568304755000042 ], [ 126.099375847000033, 34.558661200000074 ], [ 126.093760613000086, 34.553656317000048 ], [ 126.085703972000033, 34.548732815000051 ], [ 126.077321811000047, 34.542181708000044 ], [ 126.057627800000091, 34.532538153000075 ], [ 126.046722852000016, 34.531154690000051 ], [ 126.035166863000086, 34.53392161700009 ], [ 126.031586134, 34.539048570000034 ], [ 126.037364129000025, 34.540716864000046 ], [ 126.043467644000089, 34.540961005000042 ], [ 126.04851321700005, 34.545152085000041 ], [ 126.054453972000033, 34.548895575000074 ], [ 126.053477410000028, 34.552313544000071 ], [ 126.031260613000086, 34.556382554000038 ], [ 126.036631707000083, 34.561672268000052 ], [ 126.05046634200005, 34.563421942000048 ], [ 126.064952019000089, 34.563788153000075 ], [ 126.076345248000052, 34.570990302000041 ], [ 126.08130944100003, 34.580755927000041 ], [ 126.076426629000025, 34.590765692000048 ], [ 126.066416863000086, 34.603989976000037 ], [ 126.060069207000083, 34.620794989000046 ], [ 126.06763756600003, 34.625474351000037 ], [ 126.079844597000033, 34.617377020000049 ], [ 126.087087436000047, 34.611151434000078 ], [ 126.099375847000033, 34.605454820000034 ], [ 126.100108269000089, 34.596747137000079 ] ] ], [ [ [ 126.038096550000091, 34.569484768000052 ], [ 126.02857506600003, 34.56586334800005 ], [ 126.020518425000091, 34.571437893000052 ], [ 126.016612175000091, 34.606146552000041 ], [ 126.020192905000044, 34.625433661000045 ], [ 126.02857506600003, 34.63422272300005 ], [ 126.041351759, 34.611151434000078 ], [ 126.05201256600003, 34.598334052000041 ], [ 126.060394727000016, 34.58429596600007 ], [ 126.057627800000091, 34.57257721600007 ], [ 126.048594597000033, 34.570054429000038 ], [ 126.038096550000091, 34.569484768000052 ] ] ], [ [ [ 125.445811394000089, 34.688462632000039 ], [ 125.457286004000025, 34.690904039000088 ], [ 125.459239129000025, 34.686835028000075 ], [ 125.45045006600003, 34.679673570000034 ], [ 125.445811394000089, 34.675116278000075 ], [ 125.443207227000016, 34.669419664000088 ], [ 125.42741946700005, 34.654242255000042 ], [ 125.424327019000089, 34.64720286700009 ], [ 125.417735222000033, 34.63812897300005 ], [ 125.412608269000089, 34.632310289000088 ], [ 125.408539259, 34.628607489000046 ], [ 125.398773634, 34.631984768000052 ], [ 125.392344597000033, 34.646307684000078 ], [ 125.393402540000011, 34.659654039000088 ], [ 125.398936394000089, 34.671820380000042 ], [ 125.405609571000014, 34.682562567000048 ], [ 125.412852410000028, 34.691961981000077 ], [ 125.421234571000014, 34.697088934000078 ], [ 125.429453972000033, 34.698431708000044 ], [ 125.433929884, 34.695542710000041 ], [ 125.437266472000033, 34.688299872000073 ], [ 125.445811394000089, 34.688462632000039 ] ] ], [ [ [ 126.174082879000025, 34.732814846000053 ], [ 126.177500847000033, 34.72406647300005 ], [ 126.177907748000052, 34.713364976000037 ], [ 126.172129754000025, 34.703802802000041 ], [ 126.15943444100003, 34.702785549000055 ], [ 126.14771569100003, 34.71234772300005 ], [ 126.138438347000033, 34.723456122000073 ], [ 126.127696160000028, 34.723578192000048 ], [ 126.12232506600003, 34.719631252000056 ], [ 126.11882571700005, 34.718247789000088 ], [ 126.111338738000086, 34.717718817000048 ], [ 126.104258660000028, 34.721991278000075 ], [ 126.102549675000091, 34.730536200000074 ], [ 126.09343509200005, 34.744289455000057 ], [ 126.073741082000083, 34.761379299000055 ], [ 126.06959069100003, 34.769680080000057 ], [ 126.079274936000047, 34.767564195000034 ], [ 126.08716881600003, 34.767523505000042 ], [ 126.094574415000011, 34.770656643000052 ], [ 126.105235222000033, 34.771551825000074 ], [ 126.117849155000044, 34.769964911000045 ], [ 126.127207879000025, 34.766546942000048 ], [ 126.133148634, 34.761216539000088 ], [ 126.141937696000014, 34.757554429000038 ], [ 126.153819207000083, 34.756903387000079 ], [ 126.163584832000083, 34.754950262000079 ], [ 126.170258009, 34.749945380000042 ], [ 126.173838738000086, 34.74445221600007 ], [ 126.17310631600003, 34.739447333000044 ], [ 126.174082879000025, 34.732814846000053 ] ] ], [ [ [ 126.168711785000028, 34.792303778000075 ], [ 126.165537957000083, 34.78969961100006 ], [ 126.162119988000086, 34.783270575000074 ], [ 126.164235873000052, 34.769761460000041 ], [ 126.158213738000086, 34.764471747000073 ], [ 126.146250847000033, 34.761867580000057 ], [ 126.134613477000016, 34.767320054000038 ], [ 126.121592644000089, 34.776516018000052 ], [ 126.104828321000014, 34.781642971000053 ], [ 126.092539910000028, 34.787583726000037 ], [ 126.102386915000011, 34.79437897300005 ], [ 126.127289259, 34.797756252000056 ], [ 126.14185631600003, 34.802964585000041 ], [ 126.149424675000091, 34.808091539000088 ], [ 126.159027540000011, 34.804592190000051 ], [ 126.166270379000025, 34.796454169000071 ], [ 126.168711785000028, 34.792303778000075 ] ] ], [ [ [ 126.079437696000014, 34.822658596000053 ], [ 126.071055535000028, 34.832180080000057 ], [ 126.06413821700005, 34.842596747000073 ], [ 126.067149285000028, 34.850531317000048 ], [ 126.081797722000033, 34.856594143000052 ], [ 126.093760613000086, 34.857611395000049 ], [ 126.103282097000033, 34.853176174000055 ], [ 126.11255944100003, 34.853420315000051 ], [ 126.115244988000086, 34.859442450000074 ], [ 126.113291863000086, 34.871161200000074 ], [ 126.122813347000033, 34.878810940000051 ], [ 126.135915561000047, 34.878607489000046 ], [ 126.14226321700005, 34.879136460000041 ], [ 126.147227410000028, 34.876857815000051 ], [ 126.15202884200005, 34.871161200000074 ], [ 126.153086785000028, 34.864976304000038 ], [ 126.139659050000091, 34.857896226000037 ], [ 126.144541863000086, 34.842352606000077 ], [ 126.142100457000083, 34.832912502000056 ], [ 126.135020379000025, 34.829291083000044 ], [ 126.125173373000052, 34.829657294000071 ], [ 126.118907097000033, 34.823797919000071 ], [ 126.119151238000086, 34.812648830000057 ], [ 126.115896030000044, 34.803127346000053 ], [ 126.105235222000033, 34.798163153000075 ], [ 126.096202019000089, 34.798773505000042 ], [ 126.094004754000025, 34.804673570000034 ], [ 126.094411655000044, 34.808661200000074 ], [ 126.079437696000014, 34.822658596000053 ] ] ], [ [ [ 126.246429884, 34.916245835000041 ], [ 126.23755944100003, 34.913072007000039 ], [ 126.225352410000028, 34.913397528000075 ], [ 126.22038821700005, 34.922430731000077 ], [ 126.222422722000033, 34.93195221600007 ], [ 126.230235222000033, 34.935451565000051 ], [ 126.24732506600003, 34.935451565000051 ], [ 126.25318444100003, 34.933498440000051 ], [ 126.253428582000083, 34.929185289000088 ], [ 126.250173373000052, 34.918850002000056 ], [ 126.246429884, 34.916245835000041 ] ] ], [ [ [ 126.178396030000044, 35.048488674000055 ], [ 126.18091881600003, 35.044012762000079 ], [ 126.181895379000025, 35.038885809000078 ], [ 126.181651238000086, 35.029120184000078 ], [ 126.17741946700005, 35.025946356000077 ], [ 126.172373894000089, 35.023627020000049 ], [ 126.167002800000091, 35.025295315000051 ], [ 126.158050977000016, 35.033433335000041 ], [ 126.15398196700005, 35.035711981000077 ], [ 126.148610873000052, 35.03351471600007 ], [ 126.14380944100003, 35.03392161700009 ], [ 126.142344597000033, 35.038275458000044 ], [ 126.138519727000016, 35.039862372000073 ], [ 126.133555535000028, 35.039740302000041 ], [ 126.132172071000014, 35.041937567000048 ], [ 126.139414910000028, 35.046454169000071 ], [ 126.136566602000016, 35.047756252000056 ], [ 126.13209069100003, 35.047105210000041 ], [ 126.127777540000011, 35.048163153000075 ], [ 126.129649285000028, 35.052679755000042 ], [ 126.137380405000044, 35.056870835000041 ], [ 126.14380944100003, 35.057684637000079 ], [ 126.152517123000052, 35.054388739000046 ], [ 126.16529381600003, 35.055243231000077 ], [ 126.174164259, 35.053168036000045 ], [ 126.178396030000044, 35.048488674000055 ] ] ], [ [ [ 125.127696160000028, 34.048570054000038 ], [ 125.122813347000033, 34.051174221000053 ], [ 125.103282097000033, 34.066066799000055 ], [ 125.092133009, 34.071763414000088 ], [ 125.089691602000016, 34.07953522300005 ], [ 125.094574415000011, 34.090073960000041 ], [ 125.102224155000044, 34.095933335000041 ], [ 125.113291863000086, 34.092840887000079 ], [ 125.122080925000091, 34.083807684000078 ], [ 125.13640384200005, 34.059271552000041 ], [ 125.137380405000044, 34.051336981000077 ], [ 125.134287957000083, 34.046861070000034 ], [ 125.129893425000091, 34.047552802000041 ], [ 125.127696160000028, 34.048570054000038 ] ] ], [ [ [ 126.598968946000014, 34.168646552000041 ], [ 126.607676629000025, 34.165594794000071 ], [ 126.615977410000028, 34.15696849200009 ], [ 126.613536004000025, 34.152533270000049 ], [ 126.609385613000086, 34.155666408000059 ], [ 126.605804884, 34.156154690000051 ], [ 126.604014519000089, 34.152248440000051 ], [ 126.600271030000044, 34.153469143000052 ], [ 126.591156446000014, 34.157619533000059 ], [ 126.581797722000033, 34.157416083000044 ], [ 126.576426629000025, 34.15306224200009 ], [ 126.573008660000028, 34.147691148000035 ], [ 126.561859571000014, 34.141424872000073 ], [ 126.551931186000047, 34.133978583000044 ], [ 126.536875847000033, 34.126450914000088 ], [ 126.517751498000052, 34.127142645000049 ], [ 126.50709069100003, 34.138861395000049 ], [ 126.506358269000089, 34.153998114000046 ], [ 126.515147332000083, 34.168850002000056 ], [ 126.53288821700005, 34.179103908000059 ], [ 126.54810631600003, 34.179103908000059 ], [ 126.567881707000083, 34.168646552000041 ], [ 126.573741082000083, 34.168036200000074 ], [ 126.582041863000086, 34.170152085000041 ], [ 126.593272332000083, 34.169989325000074 ], [ 126.598968946000014, 34.168646552000041 ] ] ], [ [ [ 126.672048373000052, 34.153265692000048 ], [ 126.676036004000025, 34.151434637000079 ], [ 126.679453972000033, 34.146551825000074 ], [ 126.676280144000089, 34.143540757000039 ], [ 126.671885613000086, 34.142971096000053 ], [ 126.670420769000089, 34.13703034100007 ], [ 126.670420769000089, 34.126939195000034 ], [ 126.665375196000014, 34.119086005000042 ], [ 126.65552819100003, 34.116848049000055 ], [ 126.650401238000086, 34.119370835000041 ], [ 126.648610873000052, 34.124009507000039 ], [ 126.64380944100003, 34.127183335000041 ], [ 126.638682488000086, 34.128119208000044 ], [ 126.636485222000033, 34.141546942000048 ], [ 126.642832879000025, 34.164618231000077 ], [ 126.645030144000089, 34.177476304000038 ], [ 126.638438347000033, 34.182562567000048 ], [ 126.636485222000033, 34.187160549000055 ], [ 126.644786004000025, 34.193752346000053 ], [ 126.645274285000028, 34.197170315000051 ], [ 126.653819207000083, 34.197088934000078 ], [ 126.670746290000011, 34.189886786000045 ], [ 126.67310631600003, 34.180121161000045 ], [ 126.663584832000083, 34.173325914000088 ], [ 126.661875847000033, 34.165716864000046 ], [ 126.672048373000052, 34.153265692000048 ] ] ], [ [ [ 126.909353061000047, 34.197699286000045 ], [ 126.918955925000091, 34.190497137000079 ], [ 126.924978061000047, 34.184881903000075 ], [ 126.922373894000089, 34.172349351000037 ], [ 126.919932488000086, 34.166978257000039 ], [ 126.913584832000083, 34.15766022300005 ], [ 126.901866082000083, 34.152411200000074 ], [ 126.886973504000025, 34.151353257000039 ], [ 126.875987175000091, 34.156073309000078 ], [ 126.866953972000033, 34.16282786700009 ], [ 126.860362175000091, 34.162176825000074 ], [ 126.856944207000083, 34.157171942000048 ], [ 126.85320071700005, 34.159002997000073 ], [ 126.849131707000083, 34.174383856000077 ], [ 126.855316602000016, 34.184759833000044 ], [ 126.856944207000083, 34.194281317000048 ], [ 126.860850457000083, 34.201849677000041 ], [ 126.867930535000028, 34.207464911000045 ], [ 126.882172071000014, 34.213283596000053 ], [ 126.899261915000011, 34.209662177000041 ], [ 126.909353061000047, 34.197699286000045 ] ] ], [ [ [ 126.612152540000011, 34.218166408000059 ], [ 126.616221550000091, 34.213283596000053 ], [ 126.617035352000016, 34.20453522300005 ], [ 126.610118035000028, 34.199693101000037 ], [ 126.606618686000047, 34.188299872000073 ], [ 126.592051629000025, 34.187648830000057 ], [ 126.583994988000086, 34.18626536700009 ], [ 126.588877800000091, 34.179103908000059 ], [ 126.583832227000016, 34.175604559000078 ], [ 126.568614129000025, 34.179022528000075 ], [ 126.560720248000052, 34.185126044000071 ], [ 126.558767123000052, 34.189154364000046 ], [ 126.554535352000016, 34.190415757000039 ], [ 126.549815300000091, 34.191229559000078 ], [ 126.548838738000086, 34.194566148000035 ], [ 126.55396569100003, 34.206529039000088 ], [ 126.556895379000025, 34.211004950000074 ], [ 126.557302280000044, 34.214056708000044 ], [ 126.555349155000044, 34.216457424000055 ], [ 126.556162957000083, 34.218654690000051 ], [ 126.55982506600003, 34.22016022300005 ], [ 126.56218509200005, 34.222316799000055 ], [ 126.561534050000091, 34.225165106000077 ], [ 126.556407097000033, 34.232123114000046 ], [ 126.559743686000047, 34.234523830000057 ], [ 126.56763756600003, 34.232407945000034 ], [ 126.575368686000047, 34.228949286000045 ], [ 126.596202019000089, 34.22601959800005 ], [ 126.606944207000083, 34.221380927000041 ], [ 126.612152540000011, 34.218166408000059 ] ] ], [ [ [ 126.088715040000011, 34.307928778000075 ], [ 126.087738477000016, 34.296820380000042 ], [ 126.089366082000083, 34.289618231000077 ], [ 126.084646030000044, 34.283880927000041 ], [ 126.074961785000028, 34.282863674000055 ], [ 126.069346550000091, 34.278998114000046 ], [ 126.064952019000089, 34.28070709800005 ], [ 126.060801629000025, 34.286078192000048 ], [ 126.057383660000028, 34.285956122000073 ], [ 126.055674675000091, 34.280991929000038 ], [ 126.049327019000089, 34.280218817000048 ], [ 126.028656446000014, 34.287339585000041 ], [ 126.021657748000052, 34.29564036700009 ], [ 126.021006707000083, 34.30109284100007 ], [ 126.025238477000016, 34.305853583000044 ], [ 126.025726759, 34.310777085000041 ], [ 126.033213738000086, 34.314886786000045 ], [ 126.06763756600003, 34.30890534100007 ], [ 126.082041863000086, 34.310736395000049 ], [ 126.088715040000011, 34.307928778000075 ] ] ], [ [ [ 126.853851759, 34.308539130000042 ], [ 126.849619988000086, 34.304917710000041 ], [ 126.840586785000028, 34.30337148600006 ], [ 126.835703972000033, 34.309149481000077 ], [ 126.83366946700005, 34.316839911000045 ], [ 126.828298373000052, 34.32290273600006 ], [ 126.820567254000025, 34.32562897300005 ], [ 126.810313347000033, 34.324367580000057 ], [ 126.798350457000083, 34.320868231000077 ], [ 126.78874759200005, 34.32094961100006 ], [ 126.784922722000033, 34.32257721600007 ], [ 126.781097852000016, 34.324652411000045 ], [ 126.758962436000047, 34.33274974200009 ], [ 126.757578972000033, 34.336127020000049 ], [ 126.767832879000025, 34.337225653000075 ], [ 126.777842644000089, 34.339667059000078 ], [ 126.782237175000091, 34.341782945000034 ], [ 126.785899285000028, 34.343247789000088 ], [ 126.793793165000011, 34.342230536000045 ], [ 126.802907748000052, 34.338690497000073 ], [ 126.813975457000083, 34.34251536700009 ], [ 126.827484571000014, 34.351629950000074 ], [ 126.837657097000033, 34.353745835000041 ], [ 126.843516472000033, 34.350043036000045 ], [ 126.850759311000047, 34.348456122000073 ], [ 126.854991082000083, 34.348700262000079 ], [ 126.859222852000016, 34.349351304000038 ], [ 126.87037194100003, 34.34837474200009 ], [ 126.884532097000033, 34.345526434000078 ], [ 126.893321160000028, 34.34125397300005 ], [ 126.891368035000028, 34.333929755000042 ], [ 126.885590040000011, 34.328314520000049 ], [ 126.88404381600003, 34.324896552000041 ], [ 126.883067254000025, 34.317938544000071 ], [ 126.876800977000016, 34.312241929000038 ], [ 126.868174675000091, 34.313625393000052 ], [ 126.858897332000083, 34.312201239000046 ], [ 126.853851759, 34.308539130000042 ] ] ], [ [ [ 127.091563347000033, 34.344916083000044 ], [ 127.09498131600003, 34.342474677000041 ], [ 127.09693444100003, 34.337795315000051 ], [ 127.090830925000091, 34.336737372000073 ], [ 127.082367384, 34.340277411000045 ], [ 127.072438998000052, 34.34210846600007 ], [ 127.065277540000011, 34.339789130000042 ], [ 127.067881707000083, 34.337062893000052 ], [ 127.073985222000033, 34.334173895000049 ], [ 127.066742384, 34.328192450000074 ], [ 127.049082879000025, 34.31671784100007 ], [ 127.038828972000033, 34.312892971000053 ], [ 127.037852410000028, 34.32172272300005 ], [ 127.042816602000016, 34.327948309000078 ], [ 127.049164259, 34.331447658000059 ], [ 127.045583530000044, 34.335435289000088 ], [ 127.023692254000025, 34.339178778000075 ], [ 127.02662194100003, 34.343166408000059 ], [ 127.024261915000011, 34.348211981000077 ], [ 127.017588738000086, 34.351548570000034 ], [ 127.000824415000011, 34.352850653000075 ], [ 126.994313998000052, 34.354681708000044 ], [ 126.99146569100003, 34.356268622000073 ], [ 126.99382571700005, 34.35814036700009 ], [ 127.00123131600003, 34.359361070000034 ], [ 127.007009311000047, 34.362616278000075 ], [ 127.016286655000044, 34.371893622000073 ], [ 127.026215040000011, 34.378729559000078 ], [ 127.025401238000086, 34.381333726000037 ], [ 127.02857506600003, 34.380438544000071 ], [ 127.035655144000089, 34.374741929000038 ], [ 127.042165561000047, 34.366685289000088 ], [ 127.045909050000091, 34.357652085000041 ], [ 127.053721550000091, 34.354803778000075 ], [ 127.067393425000091, 34.358384507000039 ], [ 127.07740319100003, 34.359320380000042 ], [ 127.082041863000086, 34.355943101000037 ], [ 127.085459832000083, 34.351385809000078 ], [ 127.091563347000033, 34.344916083000044 ] ] ], [ [ [ 126.763926629000025, 34.30923086100006 ], [ 126.765879754000025, 34.30304596600007 ], [ 126.771494988000086, 34.291896877000056 ], [ 126.768077019000089, 34.289211330000057 ], [ 126.763194207000083, 34.28978099200009 ], [ 126.758311394000089, 34.290920315000051 ], [ 126.749359571000014, 34.294134833000044 ], [ 126.741709832000083, 34.298244533000059 ], [ 126.737478061000047, 34.297552802000041 ], [ 126.736501498000052, 34.291693427000041 ], [ 126.73170006600003, 34.28937409100007 ], [ 126.722911004000025, 34.292710679000038 ], [ 126.707774285000028, 34.29564036700009 ], [ 126.688975457000083, 34.30109284100007 ], [ 126.688812696000014, 34.307562567000048 ], [ 126.698090040000011, 34.313421942000048 ], [ 126.695648634, 34.320786851000037 ], [ 126.687022332000083, 34.322699286000045 ], [ 126.676605665000011, 34.320461330000057 ], [ 126.663584832000083, 34.323431708000044 ], [ 126.651866082000083, 34.329779364000046 ], [ 126.644867384, 34.337103583000044 ], [ 126.641937696000014, 34.34796784100007 ], [ 126.640961134, 34.360337632000039 ], [ 126.641774936000047, 34.372951565000051 ], [ 126.64576256600003, 34.385565497000073 ], [ 126.653656446000014, 34.395209052000041 ], [ 126.664398634, 34.399481512000079 ], [ 126.670176629000025, 34.400580145000049 ], [ 126.687754754000025, 34.402044989000046 ], [ 126.699229363000086, 34.398911851000037 ], [ 126.709971550000091, 34.39288971600007 ], [ 126.721853061000047, 34.381293036000045 ], [ 126.731130405000044, 34.362005927000041 ], [ 126.733897332000083, 34.346177476000037 ], [ 126.737071160000028, 34.338853257000039 ], [ 126.742523634, 34.33274974200009 ], [ 126.745616082000083, 34.324204820000034 ], [ 126.763926629000025, 34.30923086100006 ] ] ], [ [ [ 126.762461785000028, 34.382961330000057 ], [ 126.757578972000033, 34.383246161000045 ], [ 126.75318444100003, 34.386948960000041 ], [ 126.756846550000091, 34.39288971600007 ], [ 126.761485222000033, 34.39874909100007 ], [ 126.768402540000011, 34.411363023000035 ], [ 126.78248131600003, 34.426743882000039 ], [ 126.802256707000083, 34.435777085000041 ], [ 126.823008660000028, 34.439846096000053 ], [ 126.835459832000083, 34.438055731000077 ], [ 126.840179884, 34.432074286000045 ], [ 126.840993686000047, 34.425482489000046 ], [ 126.835785352000016, 34.421047268000052 ], [ 126.836599155000044, 34.418646552000041 ], [ 126.845876498000052, 34.413967190000051 ], [ 126.853526238000086, 34.40688711100006 ], [ 126.860199415000011, 34.398871161000045 ], [ 126.861094597000033, 34.392767645000049 ], [ 126.853770379000025, 34.391750393000052 ], [ 126.83326256600003, 34.396958726000037 ], [ 126.824717644000089, 34.395209052000041 ], [ 126.819672071000014, 34.389064846000053 ], [ 126.793304884, 34.378892320000034 ], [ 126.784027540000011, 34.36859772300005 ], [ 126.781097852000016, 34.357855536000045 ], [ 126.775726759, 34.354722398000035 ], [ 126.76921634200005, 34.360988674000055 ], [ 126.769379102000016, 34.371323960000041 ], [ 126.76726321700005, 34.380031643000052 ], [ 126.762461785000028, 34.382961330000057 ] ] ], [ [ [ 126.340668165000011, 34.864081122000073 ], [ 126.359629754000025, 34.858587958000044 ], [ 126.361664259, 34.837388414000088 ], [ 126.342051629000025, 34.822495835000041 ], [ 126.33130944100003, 34.825832424000055 ], [ 126.337657097000033, 34.831732489000046 ], [ 126.340830925000091, 34.837469794000071 ], [ 126.338226759, 34.841457424000055 ], [ 126.310313347000033, 34.854071356000077 ], [ 126.306162957000083, 34.855902411000045 ], [ 126.27662194100003, 34.851955471000053 ], [ 126.263519727000016, 34.846665757000039 ], [ 126.248708530000044, 34.844712632000039 ], [ 126.236827019000089, 34.848049221000053 ], [ 126.230723504000025, 34.854559637000079 ], [ 126.236094597000033, 34.859808661000045 ], [ 126.251963738000086, 34.860663153000075 ], [ 126.272308790000011, 34.866766669000071 ], [ 126.275889519000089, 34.870510158000059 ], [ 126.279144727000016, 34.873277085000041 ], [ 126.280121290000011, 34.877508856000077 ], [ 126.29265384200005, 34.880682684000078 ], [ 126.297129754000025, 34.886908270000049 ], [ 126.297618035000028, 34.894232489000046 ], [ 126.289805535000028, 34.903021552000041 ], [ 126.286468946000014, 34.912909247000073 ], [ 126.297373894000089, 34.917547919000071 ], [ 126.314707879000025, 34.914129950000074 ], [ 126.332530144000089, 34.906724351000037 ], [ 126.345225457000083, 34.896226304000038 ], [ 126.343923373000052, 34.890326239000046 ], [ 126.33521569100003, 34.88939036700009 ], [ 126.31999759200005, 34.881089585000041 ], [ 126.318125847000033, 34.876450914000088 ], [ 126.318695509, 34.87055084800005 ], [ 126.320078972000033, 34.86587148600006 ], [ 126.326508009, 34.864203192000048 ], [ 126.340668165000011, 34.864081122000073 ] ] ], [ [ [ 126.234222852000016, 35.047064520000049 ], [ 126.236094597000033, 35.051947333000044 ], [ 126.229258660000028, 35.053656317000048 ], [ 126.203623894000089, 35.057196356000077 ], [ 126.197927280000044, 35.06126536700009 ], [ 126.18913821700005, 35.06195709800005 ], [ 126.18482506600003, 35.062689520000049 ], [ 126.180511915000011, 35.065904039000088 ], [ 126.174815300000091, 35.068264065000051 ], [ 126.169444207000083, 35.07367584800005 ], [ 126.158702019000089, 35.094224351000037 ], [ 126.164805535000028, 35.10228099200009 ], [ 126.177500847000033, 35.10578034100007 ], [ 126.189219597000033, 35.102240302000041 ], [ 126.198578321000014, 35.09711334800005 ], [ 126.207041863000086, 35.099514065000051 ], [ 126.216644727000016, 35.103664455000057 ], [ 126.222829623000052, 35.101141669000071 ], [ 126.224945509, 35.096747137000079 ], [ 126.229828321000014, 35.096909898000035 ], [ 126.23601321700005, 35.09837474200009 ], [ 126.238536004000025, 35.091864325000074 ], [ 126.231618686000047, 35.086127020000049 ], [ 126.222422722000033, 35.085638739000046 ], [ 126.218516472000033, 35.081935940000051 ], [ 126.218516472000033, 35.076605536000045 ], [ 126.229502800000091, 35.067328192000048 ], [ 126.238780144000089, 35.063869533000059 ], [ 126.249196811000047, 35.063299872000073 ], [ 126.25513756600003, 35.056382554000038 ], [ 126.258148634, 35.04751211100006 ], [ 126.263194207000083, 35.041896877000056 ], [ 126.264984571000014, 35.034247137000079 ], [ 126.261078321000014, 35.024562893000052 ], [ 126.257172071000014, 35.021958726000037 ], [ 126.254567905000044, 35.025091864000046 ], [ 126.242930535000028, 35.027289130000042 ], [ 126.238047722000033, 35.032416083000044 ], [ 126.23406009200005, 35.038316148000035 ], [ 126.234222852000016, 35.047064520000049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-48", "NAME_1": "South Gyeongsang" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.962777642773972, 35.133385991070611 ], [ 128.958009914000058, 35.136896883000077 ], [ 128.948944017000031, 35.125974671000051 ], [ 128.918419593000067, 35.081882053000072 ], [ 128.904592926000078, 35.081098650000058 ], [ 128.903635321000024, 35.101390025000057 ], [ 128.904585929000064, 35.120509920000075 ], [ 128.897925608000037, 35.121305330000041 ], [ 128.889252149000072, 35.105454820000034 ], [ 128.882186070000103, 35.081484777000071 ], [ 128.857402426000021, 35.083823079000069 ], [ 128.791555442, 35.082953208000049 ], [ 128.787773254000058, 35.101318593000087 ], [ 128.781076915000085, 35.111062146000052 ], [ 128.771988319, 35.083313239000063 ], [ 128.761970885000096, 35.079392388000088 ], [ 128.73868948900008, 35.087987622000071 ], [ 128.72779381600003, 35.104722398000035 ], [ 128.715830925000091, 35.105861721000053 ], [ 128.70045006600003, 35.096136786000045 ], [ 128.70045006600003, 35.139878648000035 ], [ 128.696299675000091, 35.143500067000048 ], [ 128.687754754000025, 35.140611070000034 ], [ 128.680511915000011, 35.131415106000077 ], [ 128.679942254000025, 35.11595286700009 ], [ 128.664073113000086, 35.126125393000052 ], [ 128.651703321000014, 35.140773830000057 ], [ 128.638031446000014, 35.14984772300005 ], [ 128.617930535000028, 35.143255927000041 ], [ 128.62232506600003, 35.157375393000052 ], [ 128.614024285000028, 35.177435614000046 ], [ 128.617930535000028, 35.184881903000075 ], [ 128.607920769000089, 35.211167710000041 ], [ 128.602061394000089, 35.213934637000079 ], [ 128.590586785000028, 35.20538971600007 ], [ 128.578135613000086, 35.189357815000051 ], [ 128.577891472000033, 35.178656317000048 ], [ 128.590586785000028, 35.15696849200009 ], [ 128.597666863000086, 35.130519924000055 ], [ 128.601817254000025, 35.121242580000057 ], [ 128.610362175000091, 35.109198309000078 ], [ 128.627045118000069, 35.090765692000048 ], [ 128.629486524000072, 35.08148834800005 ], [ 128.624766472000033, 35.068182684000078 ], [ 128.632660352000016, 35.067287502000056 ], [ 128.645030144000089, 35.062892971000053 ], [ 128.652110222000033, 35.061346747000073 ], [ 128.643321160000028, 35.056545315000051 ], [ 128.634532097000033, 35.054632880000042 ], [ 128.614268425000091, 35.054592190000051 ], [ 128.603607618000069, 35.056626695000034 ], [ 128.600596550000091, 35.061916408000059 ], [ 128.600108269000089, 35.068589585000041 ], [ 128.596771681000064, 35.075018622000073 ], [ 128.58716881600003, 35.083319403000075 ], [ 128.580332879000025, 35.087876695000034 ], [ 128.526377800000091, 35.103461005000042 ], [ 128.511241082000083, 35.10423411700009 ], [ 128.478119337000066, 35.09906647300005 ], [ 128.469086134, 35.095404364000046 ], [ 128.469737175000091, 35.088364976000037 ], [ 128.481293165000011, 35.075018622000073 ], [ 128.462738477000016, 35.071966864000046 ], [ 128.428477410000028, 35.057806708000044 ], [ 128.389170769000089, 35.049017645000049 ], [ 128.38404381600003, 35.036363023000035 ], [ 128.38209069100003, 35.022609768000052 ], [ 128.371429884, 35.013576565000051 ], [ 128.371429884, 35.006781317000048 ], [ 128.471202019000089, 35.05023834800005 ], [ 128.488129102000016, 35.051174221000053 ], [ 128.491547071000014, 35.033596096000053 ], [ 128.497569207000083, 35.020697333000044 ], [ 128.499603712000066, 35.00922272300005 ], [ 128.491547071000014, 34.995917059000078 ], [ 128.478770379000025, 34.990057684000078 ], [ 128.459239129000025, 34.987372137000079 ], [ 128.439707879000025, 34.988104559000078 ], [ 128.426768425000091, 34.99249909100007 ], [ 128.420013868000069, 34.98273346600007 ], [ 128.424652540000011, 34.978013414000088 ], [ 128.433685743000069, 34.973700262000079 ], [ 128.440440300000091, 34.96515534100007 ], [ 128.441416863000086, 34.959947007000039 ], [ 128.441742384, 34.952460028000075 ], [ 128.440440300000091, 34.931626695000034 ], [ 128.432953321000014, 34.890692450000074 ], [ 128.442149285000028, 34.883490302000041 ], [ 128.450938347000033, 34.885891018000052 ], [ 128.457855665000011, 34.893866278000075 ], [ 128.460948113000086, 34.903713283000059 ], [ 128.474457227000016, 34.890692450000074 ], [ 128.460541212000066, 34.870184637000079 ], [ 128.435313347000033, 34.843166408000059 ], [ 128.412929531000032, 34.837635083000066 ], [ 128.38288272, 34.839289670000085 ], [ 128.38339652600007, 34.85458744400006 ], [ 128.402679884, 34.854803778000075 ], [ 128.410899285000028, 34.856024481000077 ], [ 128.415863477000016, 34.86273834800005 ], [ 128.353770379000025, 34.868475653000075 ], [ 128.340830925000091, 34.872707424000055 ], [ 128.326508009, 34.889064846000053 ], [ 128.324473504000025, 34.897284247000073 ], [ 128.334727410000028, 34.902573960000041 ], [ 128.357758009, 34.909898179000038 ], [ 128.335052931000064, 34.947333075000074 ], [ 128.318695509, 34.934068101000037 ], [ 128.302256707000083, 34.908026434000078 ], [ 128.279063347000033, 34.906805731000077 ], [ 128.257904493000069, 34.930161851000037 ], [ 128.246836785000028, 34.935980536000045 ], [ 128.224131707000083, 34.937892971000053 ], [ 128.21412194100003, 34.932928778000075 ], [ 128.208588087000066, 34.920843817000048 ], [ 128.206553582000083, 34.905503648000035 ], [ 128.207041863000086, 34.890692450000074 ], [ 128.185883009, 34.893622137000079 ], [ 128.139414910000028, 34.891913153000075 ], [ 128.121104363000086, 34.900295315000051 ], [ 128.118988477000016, 34.90570709800005 ], [ 128.118744337000066, 34.920355536000045 ], [ 128.117686394000089, 34.924221096000053 ], [ 128.113047722000033, 34.925197658000059 ], [ 128.101898634, 34.923529364000046 ], [ 128.087494337000066, 34.926255601000037 ], [ 128.063975457000083, 34.927923895000049 ], [ 128.055674675000091, 34.931626695000034 ], [ 128.051036004000025, 34.939642645000049 ], [ 128.051524285000028, 34.947495835000041 ], [ 128.054047071000014, 34.955023505000042 ], [ 128.055674675000091, 34.961737372000073 ], [ 128.054047071000014, 35.035834052000041 ], [ 128.055674675000091, 35.047756252000056 ], [ 128.058604363000086, 35.053290106000077 ], [ 128.06373131600003, 35.060614325000074 ], [ 128.068125847000033, 35.070217190000051 ], [ 128.069346550000091, 35.082464911000045 ], [ 128.053721550000091, 35.06712474200009 ], [ 128.040863477000016, 35.049221096000053 ], [ 128.024994337000066, 35.03579336100006 ], [ 128.000987175000091, 35.034084377000056 ], [ 128.019297722000033, 34.99868398600006 ], [ 128.006846550000091, 34.991766669000071 ], [ 127.97974694100003, 34.992254950000074 ], [ 127.953868035000028, 34.97882721600007 ], [ 127.943369988000086, 35.002834377000056 ], [ 127.937022332000083, 35.012640692000048 ], [ 127.925791863000086, 35.019761460000041 ], [ 127.922862175000091, 34.987534898000035 ], [ 127.912119988000086, 34.962062893000052 ], [ 127.891205274000072, 34.946682033000059 ], [ 127.86451256600003, 34.944728908000059 ], [ 127.853851759, 34.948187567000048 ], [ 127.844330274000072, 34.950181382000039 ], [ 127.836436394000089, 34.949448960000041 ], [ 127.830332879000025, 34.944728908000059 ], [ 127.815440300000091, 34.954820054000038 ], [ 127.804990421770526, 34.957146974753073 ], [ 127.802463006662379, 34.961587226269444 ], [ 127.802566360349147, 34.980164903087768 ], [ 127.789130487182206, 35.007295030041576 ], [ 127.726808709554234, 35.06292471040706 ], [ 127.716060011560216, 35.081373196016159 ], [ 127.707378371114942, 35.102508856798295 ], [ 127.685054152826865, 35.12168081281925 ], [ 127.660456171415149, 35.136356920335572 ], [ 127.646916946359966, 35.156252345869063 ], [ 127.642679477575825, 35.209401557535841 ], [ 127.632654249993607, 35.235007229300152 ], [ 127.612087029992381, 35.254825141367178 ], [ 127.617461379439078, 35.276632594818352 ], [ 127.638442010590211, 35.294150906239338 ], [ 127.639888951413923, 35.318826402016839 ], [ 127.646503534310568, 35.34559479376469 ], [ 127.688258091038051, 35.386367499460505 ], [ 127.694252557209666, 35.413807684776828 ], [ 127.679886508955178, 35.421636664500454 ], [ 127.669654575797949, 35.440524400580614 ], [ 127.6714115740848, 35.466104233923261 ], [ 127.660352817728267, 35.489668687459925 ], [ 127.658492465754648, 35.50230357495002 ], [ 127.654771762706673, 35.513336492884832 ], [ 127.629140253419905, 35.522173162961053 ], [ 127.630173781294957, 35.547339586053056 ], [ 127.644126418399424, 35.570542304383821 ], [ 127.652704706057307, 35.601703192748118 ], [ 127.664383580038134, 35.631856390759822 ], [ 127.679886508955178, 35.655446681818887 ], [ 127.692495558922815, 35.677874253793732 ], [ 127.695389438771485, 35.708621731008066 ], [ 127.706551547915524, 35.734821681975006 ], [ 127.729392531040389, 35.7512806261999 ], [ 127.75099327981593, 35.769625759021551 ], [ 127.769803500631042, 35.802672837781245 ], [ 127.779622024436776, 35.807814643231154 ], [ 127.793264602279578, 35.80662608482595 ], [ 127.817862583691181, 35.81274974220679 ], [ 127.867575311351516, 35.834195462250761 ], [ 127.877290480571219, 35.855201930924352 ], [ 127.913877395225541, 35.887060452178105 ], [ 127.921938918046635, 35.864839585778213 ], [ 127.942196079685232, 35.855279446189456 ], [ 127.951497836855651, 35.849595038380301 ], [ 127.960696242137828, 35.84323883700273 ], [ 127.961523065337133, 35.835332342913262 ], [ 127.965553826747623, 35.827244980771241 ], [ 127.973615349568718, 35.824273587456048 ], [ 127.981780226975843, 35.822051500276473 ], [ 128.012062616196772, 35.820139472358733 ], [ 128.025188430101935, 35.81119944949495 ], [ 128.041414830330154, 35.802311103474608 ], [ 128.070146925939866, 35.800502428344373 ], [ 128.09846561129882, 35.800709133020064 ], [ 128.124303827059975, 35.793629462129957 ], [ 128.143320754349247, 35.776834622020147 ], [ 128.15665327382942, 35.756267402018977 ], [ 128.178770787441863, 35.743554999263779 ], [ 128.184351840664817, 35.734201565250032 ], [ 128.187762486249653, 35.725597439170485 ], [ 128.203162063278569, 35.717845973812643 ], [ 128.216494581859365, 35.705107734434364 ], [ 128.215874465134448, 35.681517442475979 ], [ 128.203885532791105, 35.658960680191228 ], [ 128.219595168182423, 35.612761949104652 ], [ 128.281296828185987, 35.610643214712582 ], [ 128.31147586461941, 35.614105536241482 ], [ 128.340311313916004, 35.610178128517816 ], [ 128.367389764925633, 35.599584459255368 ], [ 128.393021275111664, 35.583926499808115 ], [ 128.421443313258237, 35.579275620773274 ], [ 128.474980096754052, 35.601651515904734 ], [ 128.502368606126197, 35.597129828079062 ], [ 128.527069940325418, 35.625784410222309 ], [ 128.550117629025294, 35.640305488107742 ], [ 128.558385858320662, 35.58501170542587 ], [ 128.583603957356672, 35.559948635121373 ], [ 128.614919875351916, 35.543799750158314 ], [ 128.651196730744459, 35.547132880478046 ], [ 128.688610467698823, 35.552584744290471 ], [ 128.721269972830896, 35.544445706204328 ], [ 128.752482538038635, 35.531061509880772 ], [ 128.789792922205493, 35.530183009838026 ], [ 128.822349073650798, 35.551215317832657 ], [ 128.836715122804662, 35.555556139404302 ], [ 128.851184523846655, 35.557106432116143 ], [ 128.864930455376111, 35.566795762914126 ], [ 128.876402622882665, 35.578862210522573 ], [ 128.912576124588441, 35.590954494754101 ], [ 128.951023391216495, 35.583177191873858 ], [ 128.980478957238006, 35.571885891520651 ], [ 129.008487584234558, 35.579508164769948 ], [ 129.012725051220059, 35.539743150326103 ], [ 128.987713657759059, 35.498660387167092 ], [ 129.002699822738577, 35.473959052068551 ], [ 129.064298129954636, 35.46625926445347 ], [ 129.090239699402559, 35.450187892956876 ], [ 129.13344119695364, 35.409880276153785 ], [ 129.184910922900713, 35.386755073088125 ], [ 129.207855258813083, 35.372156479937587 ], [ 129.214573196295873, 35.344406236258749 ], [ 129.236380649747161, 35.326784572949634 ], [ 129.264802687893734, 35.318568020497707 ], [ 129.268836275612387, 35.315724062199827 ], [ 129.264126291000025, 35.302427614000067 ], [ 129.262400161000073, 35.283988745000045 ], [ 129.256484172, 35.274421522000068 ], [ 129.249734574000058, 35.266227746000084 ], [ 129.255381707000083, 35.25259023600006 ], [ 129.255707227000016, 35.246975002000056 ], [ 129.244390344000067, 35.228218040000058 ], [ 129.228479027000049, 35.200530553000078 ], [ 129.210692606000066, 35.183001370000056 ], [ 129.201084094000066, 35.16662808600006 ], [ 129.199273767664067, 35.163639034932693 ], [ 129.197313267293453, 35.167233587859755 ], [ 129.17715945934151, 35.184054267290605 ], [ 129.159072707139671, 35.203148708945719 ], [ 129.136231724014806, 35.218264065134463 ], [ 129.118351679186617, 35.238572902717237 ], [ 129.112770624164909, 35.260509548277014 ], [ 129.093133580150607, 35.270767319855906 ], [ 129.067812128326977, 35.271568305532867 ], [ 129.044247674790313, 35.263842677697369 ], [ 129.025230748400304, 35.252577215765882 ], [ 129.010968052033945, 35.238107814723833 ], [ 129.000529413301706, 35.179041653049808 ], [ 128.986266717834724, 35.161264960109804 ], [ 128.971073847280195, 35.145813707136881 ], [ 128.962777642773972, 35.133385991070611 ] ] ], [ [ [ 128.06959069100003, 34.815008856000077 ], [ 128.074717644000089, 34.803656317000048 ], [ 128.071787957000083, 34.793646552000041 ], [ 128.066254102000016, 34.783026434000078 ], [ 128.063324415000011, 34.769964911000045 ], [ 128.06609134200005, 34.749335028000075 ], [ 128.065277540000011, 34.737534898000035 ], [ 128.059580925000091, 34.732407945000034 ], [ 128.051605665000011, 34.728705145000049 ], [ 128.060069207000083, 34.708400783000059 ], [ 128.05591881600003, 34.698228257000039 ], [ 128.040537957000083, 34.695868231000077 ], [ 128.025889519000089, 34.703111070000034 ], [ 128.010101759, 34.708807684000078 ], [ 127.991547071000014, 34.701727606000077 ], [ 127.975271030000044, 34.69993724200009 ], [ 127.965342644000089, 34.719305731000077 ], [ 127.954112175000091, 34.759711005000042 ], [ 127.937673373000052, 34.76703522300005 ], [ 127.924571160000028, 34.759588934000078 ], [ 127.91570071700005, 34.742743231000077 ], [ 127.912364129000025, 34.721869208000044 ], [ 127.906260613000086, 34.713080145000049 ], [ 127.892100457000083, 34.712713934000078 ], [ 127.877126498000052, 34.716945705000057 ], [ 127.868011915000011, 34.721869208000044 ], [ 127.861827019000089, 34.730861721000053 ], [ 127.860362175000091, 34.738267320000034 ], [ 127.860118035000028, 34.747015692000048 ], [ 127.857920769000089, 34.759711005000042 ], [ 127.830332879000025, 34.833563544000071 ], [ 127.826670769000089, 34.851385809000078 ], [ 127.82935631600003, 34.868963934000078 ], [ 127.840830925000091, 34.886948960000041 ], [ 127.848480665000011, 34.891546942000048 ], [ 127.856293165000011, 34.892726955000057 ], [ 127.862315300000091, 34.896063544000071 ], [ 127.867035352000016, 34.918158270000049 ], [ 127.872894727000016, 34.92446523600006 ], [ 127.888926629000025, 34.934759833000044 ], [ 127.902110222000033, 34.940008856000077 ], [ 127.91724694100003, 34.93618398600006 ], [ 127.930511915000011, 34.926459052000041 ], [ 127.938243035000028, 34.913967190000051 ], [ 127.936859571000014, 34.900824286000045 ], [ 127.928070509, 34.888251044000071 ], [ 127.905609571000014, 34.868963934000078 ], [ 127.909678582000083, 34.86204661700009 ], [ 127.914317254000025, 34.844549872000073 ], [ 127.919932488000086, 34.835435289000088 ], [ 127.928477410000028, 34.830552476000037 ], [ 127.949880405000044, 34.824652411000045 ], [ 127.961924675000091, 34.80695221600007 ], [ 127.981293165000011, 34.809759833000044 ], [ 128.005869988000086, 34.817694403000075 ], [ 128.029063347000033, 34.821763414000088 ], [ 128.062754754000025, 34.81712474200009 ], [ 128.06959069100003, 34.815008856000077 ] ] ], [ [ [ 128.748545769000089, 34.868963934000078 ], [ 128.747406446000014, 34.857123114000046 ], [ 128.742930535000028, 34.844549872000073 ], [ 128.734141472000033, 34.837551174000055 ], [ 128.720550977000016, 34.842271226000037 ], [ 128.726084832000083, 34.82884349200009 ], [ 128.739024285000028, 34.806219794000071 ], [ 128.741709832000083, 34.790716864000046 ], [ 128.73406009200005, 34.788234768000052 ], [ 128.716563347000033, 34.793198960000041 ], [ 128.697764519000089, 34.801336981000077 ], [ 128.686371290000011, 34.808091539000088 ], [ 128.68327884200005, 34.794134833000044 ], [ 128.680186394000089, 34.78656647300005 ], [ 128.662852410000028, 34.769964911000045 ], [ 128.657237175000091, 34.756984768000052 ], [ 128.669118686000047, 34.749497789000088 ], [ 128.685557488000086, 34.743841864000046 ], [ 128.693858269000089, 34.736151434000078 ], [ 128.678233269000089, 34.724839585000041 ], [ 128.605804884, 34.706366278000075 ], [ 128.583994988000086, 34.705145575000074 ], [ 128.618174675000091, 34.725572007000039 ], [ 128.604014519000089, 34.73110586100006 ], [ 128.598643425000091, 34.739976304000038 ], [ 128.599457227000016, 34.751898505000042 ], [ 128.604502800000091, 34.766546942000048 ], [ 128.57349694100003, 34.753485419000071 ], [ 128.564300977000016, 34.758734442000048 ], [ 128.55982506600003, 34.77024974200009 ], [ 128.560394727000016, 34.781805731000077 ], [ 128.566661004000025, 34.787054755000042 ], [ 128.591563347000033, 34.791205145000049 ], [ 128.598643425000091, 34.802232164000088 ], [ 128.599131707000083, 34.81781647300005 ], [ 128.604502800000091, 34.835435289000088 ], [ 128.590830925000091, 34.842271226000037 ], [ 128.580577019000089, 34.831854559000078 ], [ 128.544688347000033, 34.818793036000045 ], [ 128.528819207000083, 34.808091539000088 ], [ 128.517425977000016, 34.822658596000053 ], [ 128.50318444100003, 34.835516669000071 ], [ 128.491547071000014, 34.84992096600007 ], [ 128.488454623000052, 34.868963934000078 ], [ 128.494883660000028, 34.880438544000071 ], [ 128.508067254000025, 34.891017971000053 ], [ 128.523285352000016, 34.89915599200009 ], [ 128.536306186000047, 34.903713283000059 ], [ 128.573741082000083, 34.910060940000051 ], [ 128.583994988000086, 34.909898179000038 ], [ 128.600433790000011, 34.904201565000051 ], [ 128.613536004000025, 34.897162177000041 ], [ 128.626963738000086, 34.891750393000052 ], [ 128.645518425000091, 34.890692450000074 ], [ 128.645518425000091, 34.896918036000045 ], [ 128.626963738000086, 34.906927802000041 ], [ 128.616384311000047, 34.921861070000034 ], [ 128.611664259, 34.93891022300005 ], [ 128.61060631600003, 34.954901434000078 ], [ 128.623789910000028, 34.953558661000045 ], [ 128.693858269000089, 34.986273505000042 ], [ 128.681895379000025, 35.00462474200009 ], [ 128.687510613000086, 35.022853908000059 ], [ 128.702891472000033, 35.032945054000038 ], [ 128.720550977000016, 35.027248440000051 ], [ 128.724945509, 35.018947658000059 ], [ 128.725271030000044, 35.009263414000088 ], [ 128.718760613000086, 34.972154039000088 ], [ 128.719248894000089, 34.966294664000088 ], [ 128.72388756600003, 34.95453522300005 ], [ 128.729991082000083, 34.945135809000078 ], [ 128.734385613000086, 34.935451565000051 ], [ 128.734141472000033, 34.922308661000045 ], [ 128.73015384200005, 34.910386460000041 ], [ 128.714366082000083, 34.87641022300005 ], [ 128.734629754000025, 34.88226959800005 ], [ 128.744313998000052, 34.887762762000079 ], [ 128.747569207000083, 34.885809637000079 ], [ 128.748545769000089, 34.868963934000078 ] ] ], [ [ [ 128.072764519000089, 34.845119533000059 ], [ 128.076833530000044, 34.842474677000041 ], [ 128.082367384, 34.835598049000055 ], [ 128.071787957000083, 34.833400783000059 ], [ 128.026540561000047, 34.84320709800005 ], [ 128.001800977000016, 34.83665599200009 ], [ 127.987315300000091, 34.838080145000049 ], [ 127.972422722000033, 34.845526434000078 ], [ 127.963633660000028, 34.859767971000053 ], [ 127.970469597000033, 34.875189520000049 ], [ 127.984141472000033, 34.889715887000079 ], [ 127.992849155000044, 34.903387762000079 ], [ 128.001963738000086, 34.913031317000048 ], [ 128.017832879000025, 34.916571356000077 ], [ 128.022959832000083, 34.905503648000035 ], [ 128.015961134, 34.889349677000041 ], [ 128.012461785000028, 34.878322658000059 ], [ 128.013438347000033, 34.869126695000034 ], [ 128.018728061000047, 34.866156317000048 ], [ 128.024587436000047, 34.877020575000074 ], [ 128.036306186000047, 34.892279364000046 ], [ 128.045909050000091, 34.893622137000079 ], [ 128.048838738000086, 34.886623440000051 ], [ 128.05396569100003, 34.882635809000078 ], [ 128.058929884, 34.880357164000088 ], [ 128.061208530000044, 34.868353583000044 ], [ 128.066905144000089, 34.851752020000049 ], [ 128.072764519000089, 34.845119533000059 ] ] ], [ [ [ 128.842784050000091, 35.021877346000053 ], [ 128.838389519000089, 35.001206773000035 ], [ 128.831797722000033, 34.993801174000055 ], [ 128.826670769000089, 34.992377020000049 ], [ 128.824229363000086, 34.99673086100006 ], [ 128.819346550000091, 35.014227606000077 ], [ 128.81177819100003, 35.020738023000035 ], [ 128.809092644000089, 35.025864976000037 ], [ 128.810313347000033, 35.032945054000038 ], [ 128.806895379000025, 35.041245835000041 ], [ 128.801605665000011, 35.04913971600007 ], [ 128.80437259200005, 35.056341864000046 ], [ 128.814952019000089, 35.06126536700009 ], [ 128.826426629000025, 35.062241929000038 ], [ 128.836436394000089, 35.059800523000035 ], [ 128.843272332000083, 35.04718659100007 ], [ 128.842784050000091, 35.021877346000053 ] ] ], [ [ [ 128.29460696700005, 34.639553127000056 ], [ 128.297129754000025, 34.637315171000068 ], [ 128.295664910000028, 34.631984768000052 ], [ 128.28606204499999, 34.622219143000052 ], [ 128.281748894000089, 34.61985911700009 ], [ 128.275319858000103, 34.619086005000042 ], [ 128.265879754000025, 34.620835679000038 ], [ 128.258067254000025, 34.619899807000081 ], [ 128.247406446000014, 34.61554596600007 ], [ 128.242198113000086, 34.611517645000049 ], [ 128.236257358000103, 34.61045970300006 ], [ 128.23528079499999, 34.614203192000048 ], [ 128.238780144000089, 34.620591539000088 ], [ 128.237803582000083, 34.625759182000081 ], [ 128.233409050000091, 34.629380601000037 ], [ 128.229665561000047, 34.630072333000044 ], [ 128.225271030000044, 34.632839260000083 ], [ 128.225677931000064, 34.637844143000052 ], [ 128.228363477000016, 34.642401434000078 ], [ 128.228770379000025, 34.647853908000059 ], [ 128.232758009, 34.65102773600006 ], [ 128.23951256600003, 34.652411200000074 ], [ 128.27116946700005, 34.638495184000078 ], [ 128.271250847000033, 34.632310289000088 ], [ 128.275808139000105, 34.631903387000079 ], [ 128.29460696700005, 34.639553127000056 ] ] ], [ [ [ 128.385829703000013, 34.820124841000052 ], [ 128.395366186000047, 34.823348162000059 ], [ 128.410763570000086, 34.826521822000075 ], [ 128.428226033000101, 34.827448422000089 ], [ 128.437997230000065, 34.81957166400008 ], [ 128.44063484600008, 34.806735409000055 ], [ 128.435333762000027, 34.798709496000072 ], [ 128.438976476000107, 34.793902942000045 ], [ 128.43463561100009, 34.787882311000089 ], [ 128.424572047000083, 34.791220274000068 ], [ 128.420597445, 34.789235826000038 ], [ 128.42088569200007, 34.786720069000069 ], [ 128.429100684000105, 34.785396720000051 ], [ 128.437332031000096, 34.779808956000068 ], [ 128.433294310000065, 34.773784158000069 ], [ 128.423082744, 34.763252549000072 ], [ 128.406533551000052, 34.763098136000053 ], [ 128.399280549000082, 34.770715731000053 ], [ 128.395362876000036, 34.778540189000068 ], [ 128.386989848000098, 34.778803800000048 ], [ 128.388956792000045, 34.785362821000035 ], [ 128.386205988000029, 34.791917414000068 ], [ 128.373304643000097, 34.793491198000083 ], [ 128.368702331, 34.796536845000048 ], [ 128.378271686000062, 34.80278985800004 ], [ 128.380089230000067, 34.810404341000037 ], [ 128.370416220000038, 34.816686261000086 ], [ 128.35239543, 34.821804177000047 ], [ 128.340974250000045, 34.818844074000083 ], [ 128.334192486, 34.819132496000066 ], [ 128.332048844000042, 34.825702467000042 ], [ 128.3400934, 34.832972862000076 ], [ 128.351830849000066, 34.83542157800008 ], [ 128.367246858000044, 34.830274022000083 ], [ 128.379012856000031, 34.822870451000085 ], [ 128.385829703000013, 34.820124841000052 ] ] ], [ [ [ 128.23991946700005, 34.836167710000041 ], [ 128.254893425000091, 34.822414455000057 ], [ 128.260508660000028, 34.814642645000049 ], [ 128.256521030000044, 34.809271552000041 ], [ 128.24577884200005, 34.809271552000041 ], [ 128.240733269000089, 34.807074286000045 ], [ 128.24146569100003, 34.799994208000044 ], [ 128.238454623000052, 34.796942450000074 ], [ 128.229014519000089, 34.79913971600007 ], [ 128.223155144000089, 34.80149974200009 ], [ 128.21216881600003, 34.807806708000044 ], [ 128.205821160000028, 34.815619208000044 ], [ 128.207041863000086, 34.82103099200009 ], [ 128.213877800000091, 34.830226955000057 ], [ 128.227305535000028, 34.838568427000041 ], [ 128.23991946700005, 34.836167710000041 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-26", "NAME_1": "Busan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.199273767664067, 35.163639034932693 ], [ 129.194346550000091, 35.155503648000035 ], [ 129.178895553000075, 35.155757452000046 ], [ 129.167479847000095, 35.156168307000087 ], [ 129.153412306000064, 35.154282945000034 ], [ 129.143077019000089, 35.154771226000037 ], [ 129.132204581, 35.150766444000055 ], [ 129.120257149000054, 35.149616723000065 ], [ 129.119296635000069, 35.135567198000047 ], [ 129.127280508000013, 35.125825034000059 ], [ 129.128601181000022, 35.11414797000009 ], [ 129.12347008100005, 35.100845473000049 ], [ 129.101078185, 35.092276153000057 ], [ 129.082966363000082, 35.105184781000048 ], [ 129.071998054, 35.112617369000077 ], [ 129.06384042000002, 35.120847092000076 ], [ 129.03762722700003, 35.097834228000067 ], [ 129.025689682, 35.079502249000086 ], [ 129.021861854, 35.05998310700005 ], [ 129.013753676000078, 35.055307289000041 ], [ 129.008957133000081, 35.065134478000061 ], [ 128.997026105000032, 35.075728095000045 ], [ 128.998014734000094, 35.066281188000062 ], [ 129.00040153000009, 35.045950018000042 ], [ 128.992769944000088, 35.045962659000054 ], [ 128.989405459000068, 35.052694024000061 ], [ 128.985111560000064, 35.054283780000048 ], [ 128.974864129000025, 35.048651434000078 ], [ 128.965124617000015, 35.04364879600007 ], [ 128.958447379000063, 35.050387047000072 ], [ 128.950360400000022, 35.072913013000061 ], [ 128.95370360600009, 35.093201670000042 ], [ 128.961340938000035, 35.118954637000058 ], [ 128.962777642773972, 35.133385991070611 ], [ 128.971073847280195, 35.145813707136881 ], [ 128.986266717834724, 35.161264960109804 ], [ 129.000529413301706, 35.179041653049808 ], [ 129.010968052033945, 35.238107814723833 ], [ 129.025230748400304, 35.252577215765882 ], [ 129.044247674790313, 35.263842677697369 ], [ 129.067812128326977, 35.271568305532867 ], [ 129.093133580150607, 35.270767319855906 ], [ 129.112770624164909, 35.260509548277014 ], [ 129.118351679186617, 35.238572902717237 ], [ 129.136231724014806, 35.218264065134463 ], [ 129.159072707139671, 35.203148708945719 ], [ 129.17715945934151, 35.184054267290605 ], [ 129.197313267293453, 35.167233587859755 ], [ 129.199273767664067, 35.163639034932693 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-31", "NAME_1": "Ulsan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.459055955356206, 35.610784051152933 ], [ 129.460589908000088, 35.609294223000063 ], [ 129.467275141000073, 35.599667569000076 ], [ 129.463487901, 35.577883359000054 ], [ 129.461351284000102, 35.552061385000059 ], [ 129.454600457000083, 35.513251044000071 ], [ 129.444427931000064, 35.49681224200009 ], [ 129.427989129000025, 35.478745835000041 ], [ 129.412852410000028, 35.472072658000059 ], [ 129.406260613000086, 35.48969147300005 ], [ 129.400401238000086, 35.512640692000048 ], [ 129.387461785000028, 35.529852606000077 ], [ 129.373545769000089, 35.532782294000071 ], [ 129.365244988000086, 35.513251044000071 ], [ 129.378916863000086, 35.510687567000048 ], [ 129.387054884, 35.50226471600007 ], [ 129.390961134, 35.489935614000046 ], [ 129.39185631600003, 35.475734768000052 ], [ 129.387461785000028, 35.462307033000059 ], [ 129.377207879000025, 35.459173895000049 ], [ 129.365733269000089, 35.458319403000075 ], [ 129.357758009, 35.45180898600006 ], [ 129.359222852000016, 35.444647528000075 ], [ 129.360503480000034, 35.426056067000047 ], [ 129.364581329000089, 35.406870057000049 ], [ 129.355261914000039, 35.394571780000035 ], [ 129.34678727000005, 35.382272538000052 ], [ 129.355129749000071, 35.372667319000072 ], [ 129.361813990000087, 35.367171831000064 ], [ 129.360443556000064, 35.353583075000074 ], [ 129.339875029000041, 35.348074232000045 ], [ 129.320513210000058, 35.338545472000078 ], [ 129.292719869000052, 35.316049089000046 ], [ 129.26920554700007, 35.316766528000073 ], [ 129.268836275612387, 35.315724062199827 ], [ 129.264802687893734, 35.318568020497707 ], [ 129.236380649747161, 35.326784572949634 ], [ 129.214573196295873, 35.344406236258749 ], [ 129.207855258813083, 35.372156479937587 ], [ 129.184910922900713, 35.386755073088125 ], [ 129.13344119695364, 35.409880276153785 ], [ 129.090239699402559, 35.450187892956876 ], [ 129.064298129954636, 35.46625926445347 ], [ 129.002699822738577, 35.473959052068551 ], [ 128.987713657759059, 35.498660387167092 ], [ 129.012725051220059, 35.539743150326103 ], [ 129.008487584234558, 35.579508164769948 ], [ 129.032568800809486, 35.595372829792268 ], [ 129.058303663783022, 35.607594306132285 ], [ 129.073703240811824, 35.60790436539412 ], [ 129.08000776624533, 35.617722887401328 ], [ 129.07039594891387, 35.63064199483216 ], [ 129.064918247579044, 35.644646307880805 ], [ 129.098611280586056, 35.66591115987211 ], [ 129.14088260304959, 35.677925929737853 ], [ 129.175505812942902, 35.682189236044394 ], [ 129.2094055524243, 35.676401476347053 ], [ 129.244648879042529, 35.664050807898434 ], [ 129.253847284324706, 35.651751817192576 ], [ 129.254364048262119, 35.636817328157122 ], [ 129.256844516960882, 35.623484809576269 ], [ 129.269246861353508, 35.616224269734232 ], [ 129.285990024619878, 35.612684434738867 ], [ 129.379007602618685, 35.626352851003276 ], [ 129.458175897199794, 35.61059153876846 ], [ 129.459055955356206, 35.610784051152933 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-47", "NAME_1": "North Gyeongsang" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.422618035000028, 36.61664459800005 ], [ 129.422862175000091, 36.614976304000038 ], [ 129.427989129000025, 36.575669664000088 ], [ 129.441661004000025, 36.534654039000088 ], [ 129.447113477000016, 36.493312893000052 ], [ 129.440928582000083, 36.407945054000038 ], [ 129.43482506600003, 36.389593817000048 ], [ 129.403900587000066, 36.359442450000074 ], [ 129.39185631600003, 36.342474677000041 ], [ 129.386566602000016, 36.322699286000045 ], [ 129.382334832000083, 36.201849677000041 ], [ 129.385752800000091, 36.185451565000051 ], [ 129.39185631600003, 36.176336981000077 ], [ 129.398529493000069, 36.172674872000073 ], [ 129.403900587000066, 36.167629299000055 ], [ 129.409678582000083, 36.133612372000073 ], [ 129.417084181000064, 36.107570705000057 ], [ 129.425140821000014, 36.103013414000088 ], [ 129.430511915000011, 36.097398179000038 ], [ 129.426768425000091, 36.081773179000038 ], [ 129.418711785000028, 36.07298411700009 ], [ 129.408295118000069, 36.068915106000077 ], [ 129.398448113000086, 36.066310940000051 ], [ 129.381782668000028, 36.055174622000038 ], [ 129.380858717000024, 36.041486844000076 ], [ 129.401937043000089, 36.025660084000037 ], [ 129.417080621000082, 36.011912686000073 ], [ 129.43305147500007, 35.996107732000041 ], [ 129.453331410000033, 35.99328736800004 ], [ 129.479014519000089, 36.009588934000078 ], [ 129.542572462000066, 36.065904039000088 ], [ 129.554794958, 36.082477915000084 ], [ 129.571299675000091, 36.071844794000071 ], [ 129.574961785000028, 36.054673570000034 ], [ 129.582041863000086, 36.036810614000046 ], [ 129.587250196000014, 36.016913153000075 ], [ 129.571643753000103, 35.997124364000058 ], [ 129.535589553000023, 35.939035632000071 ], [ 129.532839055000068, 35.913012911000067 ], [ 129.522134310000069, 35.844552213000043 ], [ 129.49621649900007, 35.785073935000071 ], [ 129.497650587000066, 35.747870184000078 ], [ 129.471125895, 35.683222298000089 ], [ 129.451575704000106, 35.651802283000052 ], [ 129.443053392000024, 35.636090011000078 ], [ 129.451375761, 35.618243323000058 ], [ 129.459055955356206, 35.610784051152933 ], [ 129.458175897199794, 35.61059153876846 ], [ 129.379007602618685, 35.626352851003276 ], [ 129.285990024619878, 35.612684434738867 ], [ 129.269246861353508, 35.616224269734232 ], [ 129.256844516960882, 35.623484809576269 ], [ 129.254364048262119, 35.636817328157122 ], [ 129.253847284324706, 35.651751817192576 ], [ 129.244648879042529, 35.664050807898434 ], [ 129.2094055524243, 35.676401476347053 ], [ 129.175505812942902, 35.682189236044394 ], [ 129.14088260304959, 35.677925929737853 ], [ 129.098611280586056, 35.66591115987211 ], [ 129.064918247579044, 35.644646307880805 ], [ 129.07039594891387, 35.63064199483216 ], [ 129.08000776624533, 35.617722887401328 ], [ 129.073703240811824, 35.60790436539412 ], [ 129.058303663783022, 35.607594306132285 ], [ 129.032568800809486, 35.595372829792268 ], [ 129.008487584234558, 35.579508164769948 ], [ 128.980478957238006, 35.571885891520651 ], [ 128.951023391216495, 35.583177191873858 ], [ 128.912576124588441, 35.590954494754101 ], [ 128.876402622882665, 35.578862210522573 ], [ 128.864930455376111, 35.566795762914126 ], [ 128.851184523846655, 35.557106432116143 ], [ 128.836715122804662, 35.555556139404302 ], [ 128.822349073650798, 35.551215317832657 ], [ 128.789792922205493, 35.530183009838026 ], [ 128.752482538038635, 35.531061509880772 ], [ 128.721269972830896, 35.544445706204328 ], [ 128.688610467698823, 35.552584744290471 ], [ 128.651196730744459, 35.547132880478046 ], [ 128.614919875351916, 35.543799750158314 ], [ 128.583603957356672, 35.559948635121373 ], [ 128.558385858320662, 35.58501170542587 ], [ 128.550117629025294, 35.640305488107742 ], [ 128.527069940325418, 35.625784410222309 ], [ 128.502368606126197, 35.597129828079062 ], [ 128.474980096754052, 35.601651515904734 ], [ 128.421443313258237, 35.579275620773274 ], [ 128.393021275111664, 35.583926499808115 ], [ 128.367389764925633, 35.599584459255368 ], [ 128.340311313916004, 35.610178128517816 ], [ 128.31147586461941, 35.614105536241482 ], [ 128.281296828185987, 35.610643214712582 ], [ 128.219595168182423, 35.612761949104652 ], [ 128.203885532791105, 35.658960680191228 ], [ 128.215874465134448, 35.681517442475979 ], [ 128.216494581859365, 35.705107734434364 ], [ 128.203162063278569, 35.717845973812643 ], [ 128.187762486249653, 35.725597439170485 ], [ 128.184351840664817, 35.734201565250032 ], [ 128.178770787441863, 35.743554999263779 ], [ 128.15665327382942, 35.756267402018977 ], [ 128.143320754349247, 35.776834622020147 ], [ 128.124303827059975, 35.793629462129957 ], [ 128.09846561129882, 35.800709133020064 ], [ 128.070146925939866, 35.800502428344373 ], [ 128.041414830330154, 35.802311103474608 ], [ 128.025188430101935, 35.81119944949495 ], [ 128.012062616196772, 35.820139472358733 ], [ 127.981780226975843, 35.822051500276473 ], [ 127.973615349568718, 35.824273587456048 ], [ 127.965553826747623, 35.827244980771241 ], [ 127.961523065337133, 35.835332342913262 ], [ 127.960696242137828, 35.84323883700273 ], [ 127.951497836855651, 35.849595038380301 ], [ 127.942196079685232, 35.855279446189456 ], [ 127.921938918046635, 35.864839585778213 ], [ 127.913877395225541, 35.887060452178105 ], [ 127.918528274260439, 35.95075165536457 ], [ 127.877600538933621, 36.007363185862289 ], [ 127.901888461982935, 36.017000840716207 ], [ 127.927003209130703, 36.02382213008724 ], [ 127.942506138047747, 36.048316758711451 ], [ 127.95087772013062, 36.073974107319202 ], [ 127.958629184589199, 36.085136217362503 ], [ 127.968241001021283, 36.094567165742092 ], [ 127.970411412256794, 36.111026109067666 ], [ 127.970204705782521, 36.124720363753738 ], [ 127.964623650760814, 36.151592109188471 ], [ 127.988808221921886, 36.16833527335416 ], [ 128.012786085709195, 36.164743761515354 ], [ 128.03407677612222, 36.163710231841719 ], [ 128.022707961403285, 36.215851752256526 ], [ 128.000073683853429, 36.229339301367645 ], [ 127.949017369056264, 36.219443264095332 ], [ 127.929587029717595, 36.226884671090659 ], [ 127.901268345257904, 36.245979111846509 ], [ 127.877083774996208, 36.25236115254512 ], [ 127.836879510980566, 36.244713039974783 ], [ 127.830885043909575, 36.29222951887715 ], [ 127.853002556622641, 36.307654934327729 ], [ 127.867368605776505, 36.330702623027605 ], [ 127.856309849419972, 36.346489772784764 ], [ 127.850005323986466, 36.363723863365578 ], [ 127.855999791057457, 36.387753403996385 ], [ 127.860030551568684, 36.442246201900673 ], [ 127.86995242726266, 36.465113023447259 ], [ 127.888142531352742, 36.479401557335962 ], [ 127.839153274104319, 36.536633206357351 ], [ 127.799982537963729, 36.541981716483008 ], [ 127.788717076032185, 36.564848538029594 ], [ 127.803496535436693, 36.57037791620786 ], [ 127.818172642053696, 36.572522488122331 ], [ 127.832642043095802, 36.584976508459079 ], [ 127.855172967858152, 36.60929026993 ], [ 127.860754021980483, 36.619496365564771 ], [ 127.860133905255452, 36.628823961156854 ], [ 127.862717726741607, 36.640709539813372 ], [ 127.893826939161841, 36.657685247975792 ], [ 127.928760207417554, 36.670991929933621 ], [ 127.9504643089806, 36.696985175325551 ], [ 127.988601516346876, 36.683704331789443 ], [ 128.059501580733354, 36.674660956138212 ], [ 128.044928826903742, 36.697140204057177 ], [ 128.025808546826966, 36.716932277702426 ], [ 128.032526483410379, 36.737447821759531 ], [ 128.045032179691248, 36.759306952054146 ], [ 128.057124464822095, 36.775740057857377 ], [ 128.073144158576042, 36.767239285464655 ], [ 128.093091261852237, 36.768608710123829 ], [ 128.109524366756091, 36.786359565541488 ], [ 128.126577590183615, 36.795170396296726 ], [ 128.142700636724953, 36.786824653534893 ], [ 128.1736031426708, 36.778117173768521 ], [ 128.20243859286677, 36.776308499537606 ], [ 128.209466586913436, 36.792793281284901 ], [ 128.214427525210112, 36.80837372546705 ], [ 128.224866163942238, 36.821577052838677 ], [ 128.237888625059895, 36.83188650216033 ], [ 128.250911086177666, 36.820181789757783 ], [ 128.26755089665653, 36.81067332611309 ], [ 128.291115350193195, 36.794317735575021 ], [ 128.305998163284585, 36.770159002835669 ], [ 128.341654901052834, 36.760753892877858 ], [ 128.425370721881222, 36.788969225449364 ], [ 128.440150181285844, 36.82821747505642 ], [ 128.426921014593063, 36.837984321119507 ], [ 128.419893019647134, 36.847777004704994 ], [ 128.432605422402276, 36.866432196788423 ], [ 128.443044061134515, 36.885242418502799 ], [ 128.465058221959339, 36.910434679117145 ], [ 128.495960727905185, 36.927978827161098 ], [ 128.504745722037342, 36.940717068338017 ], [ 128.517148064631442, 36.948985296734008 ], [ 128.537818638319436, 36.954178779027416 ], [ 128.5544584487983, 36.967097887357568 ], [ 128.579883254308697, 36.984099433042388 ], [ 128.602930943008573, 37.003633124269243 ], [ 128.612646112228276, 37.008594062565919 ], [ 128.624531691784114, 37.004925035462009 ], [ 128.638070916839297, 37.011177883152754 ], [ 128.65026655475765, 37.022262477931008 ], [ 128.675898064943681, 37.011384588727765 ], [ 128.700599400042279, 37.003090521910053 ], [ 128.730468378113073, 36.997948717359407 ], [ 128.755996534612336, 36.996036689441667 ], [ 128.761887648895822, 37.017404894220476 ], [ 128.765091587107008, 37.040375068554567 ], [ 128.758477004210363, 37.064973049066964 ], [ 128.77666710830033, 37.082698066062903 ], [ 128.803848912097578, 37.092878323275954 ], [ 128.831134067782955, 37.091173000933225 ], [ 128.845190056775664, 37.07145844255308 ], [ 128.864517043326828, 37.067918605759019 ], [ 128.881880324217491, 37.061019802022201 ], [ 128.879399856418217, 37.043630682709818 ], [ 128.881673618642481, 37.026112372188209 ], [ 128.911645948601631, 37.035517483045396 ], [ 128.94006798674809, 37.053216660720295 ], [ 128.952263624666443, 37.049160060888084 ], [ 128.960738560436198, 37.040090846815133 ], [ 128.971693964005226, 37.039005642096697 ], [ 128.984923129798517, 37.043320624347302 ], [ 129.024093865939108, 37.038049627688167 ], [ 129.060990838956059, 37.024510403532304 ], [ 129.087139113079502, 37.02980723681452 ], [ 129.11432091687675, 37.041279405220337 ], [ 129.148530714720664, 37.034897366320365 ], [ 129.179743279928402, 37.019859524497463 ], [ 129.189458449148106, 36.996811834898267 ], [ 129.165790642823822, 36.982652493118053 ], [ 129.136645136064089, 36.991876735922631 ], [ 129.11793826713722, 36.986269843378523 ], [ 129.100885043709695, 36.975934557433845 ], [ 129.093650344088019, 36.951129869547799 ], [ 129.09809451664853, 36.918728745934857 ], [ 129.118661736649756, 36.893820706160625 ], [ 129.151631301043608, 36.881315008980437 ], [ 129.158969354352166, 36.860024319466731 ], [ 129.168374465209354, 36.841627508902377 ], [ 129.191318801121724, 36.833746853234686 ], [ 129.21281619710976, 36.823954168749879 ], [ 129.286093378306759, 36.819561673032752 ], [ 129.282062615996892, 36.796849881117112 ], [ 129.290640903654776, 36.790312811686874 ], [ 129.298495721800123, 36.782871406490187 ], [ 129.287747023806105, 36.757704983398241 ], [ 129.274414504325819, 36.731143297225344 ], [ 129.277101678599593, 36.703134671128169 ], [ 129.285886671832372, 36.678407498507227 ], [ 129.28898725815543, 36.656083279319887 ], [ 129.277928501798897, 36.632286281786435 ], [ 129.34717492068603, 36.611744900206929 ], [ 129.379214309093072, 36.623139553347698 ], [ 129.412597283737568, 36.616990058444401 ], [ 129.422618035000028, 36.61664459800005 ] ], [ [ 128.741320428894596, 35.84881989202438 ], [ 128.756926710599146, 35.861894029086159 ], [ 128.762301060045843, 35.877707018164358 ], [ 128.761784296108317, 35.894631049483337 ], [ 128.759717237660311, 35.910495714505601 ], [ 128.74896854056567, 35.917911282179887 ], [ 128.740907016845313, 35.927729804187095 ], [ 128.740596959382174, 35.952999579167226 ], [ 128.745454543092592, 35.959665838907313 ], [ 128.745971307030118, 35.967572332996724 ], [ 128.733258905174239, 35.985504055567674 ], [ 128.693157993946215, 36.00932689152279 ], [ 128.640344679962936, 36.006536363562304 ], [ 128.576679315198135, 35.999611721403824 ], [ 128.529653761811574, 35.967985745046064 ], [ 128.53595828724508, 35.922407131583839 ], [ 128.518801711030051, 35.907110908241805 ], [ 128.508053013036033, 35.887448024906405 ], [ 128.517561476680726, 35.88618195213536 ], [ 128.526346469913619, 35.883546453805764 ], [ 128.524486118839263, 35.873572903066986 ], [ 128.520248650954386, 35.864116116265734 ], [ 128.504125604413048, 35.861971544351263 ], [ 128.489139439433529, 35.861894029086159 ], [ 128.475290155116568, 35.846210232116505 ], [ 128.481284621288182, 35.827735908085685 ], [ 128.496787551104603, 35.822826645733073 ], [ 128.511360304934101, 35.81119944949495 ], [ 128.523245883590562, 35.792544257411521 ], [ 128.540919223743117, 35.780917060274078 ], [ 128.553218215348352, 35.774457506109002 ], [ 128.562416619731152, 35.768282171884721 ], [ 128.570064732301489, 35.773579006066257 ], [ 128.584327426869208, 35.793836167704967 ], [ 128.598590123235567, 35.802982896143703 ], [ 128.630939569105749, 35.800347397814164 ], [ 128.688713821385704, 35.788125922373411 ], [ 128.711038038774404, 35.799107164364102 ], [ 128.714035272309957, 35.808486435900249 ], [ 128.714138625097462, 35.814945990964702 ], [ 128.723543735954649, 35.834944770184961 ], [ 128.72488732309148, 35.843393867532939 ], [ 128.724370559153954, 35.84995677268688 ], [ 128.733775669111765, 35.850628567154615 ], [ 128.741320428894596, 35.84881989202438 ] ] ], [ [ [ 130.90357506600003, 37.545843817000048 ], [ 130.920664910000028, 37.535589911000045 ], [ 130.919444207000083, 37.510199286000045 ], [ 130.908376498000052, 37.481919664000088 ], [ 130.896739129000025, 37.463120835000041 ], [ 130.877696160000028, 37.455511786000045 ], [ 130.852224155000044, 37.459458726000037 ], [ 130.827484571000014, 37.471258856000077 ], [ 130.811045769000089, 37.487005927000041 ], [ 130.805837436000047, 37.507391669000071 ], [ 130.814300977000016, 37.522609768000052 ], [ 130.832286004000025, 37.532131252000056 ], [ 130.867849155000044, 37.536932684000078 ], [ 130.891612175000091, 37.543890692000048 ], [ 130.90357506600003, 37.545843817000048 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-49", "NAME_1": "Jeju" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.946055535000028, 33.478013414000088 ], [ 126.953623894000089, 33.465033270000049 ], [ 126.948985222000033, 33.460598049000055 ], [ 126.939300977000016, 33.458238023000035 ], [ 126.932383660000028, 33.451320705000057 ], [ 126.93287194100003, 33.445502020000049 ], [ 126.939219597000033, 33.43626536700009 ], [ 126.939219597000033, 33.430853583000044 ], [ 126.935801629000025, 33.425482489000046 ], [ 126.927256707000083, 33.416083075000074 ], [ 126.925547722000033, 33.413153387000079 ], [ 126.90750666100007, 33.395725098000071 ], [ 126.873530040000105, 33.373045514000069 ], [ 126.862992360000021, 33.354141206000065 ], [ 126.84795550900003, 33.332065315000079 ], [ 126.847239136000098, 33.323217852000084 ], [ 126.840586785000028, 33.310207424000055 ], [ 126.815928582000083, 33.307806708000044 ], [ 126.806407097000033, 33.303615627000056 ], [ 126.780141005000019, 33.305550290000042 ], [ 126.741792565000083, 33.280208472000083 ], [ 126.640723329000025, 33.264666184000077 ], [ 126.606918862000043, 33.240610458000049 ], [ 126.565527490000022, 33.232907836000038 ], [ 126.521208895000086, 33.236617790000082 ], [ 126.470562205000078, 33.228713895000055 ], [ 126.428457759000025, 33.239309302000038 ], [ 126.333427296000082, 33.238169044000074 ], [ 126.30379021400006, 33.22655937400009 ], [ 126.286143425000091, 33.200384833000044 ], [ 126.270030144000089, 33.19757721600007 ], [ 126.253916863000086, 33.204046942000048 ], [ 126.231150586000012, 33.23492299600008 ], [ 126.200823943000046, 33.243552024000053 ], [ 126.171397332000083, 33.269354559000078 ], [ 126.161143425000091, 33.300767320000034 ], [ 126.17896569100003, 33.341457424000055 ], [ 126.195811394000089, 33.366685289000088 ], [ 126.206228061000047, 33.375555731000077 ], [ 126.240977410000028, 33.392767645000049 ], [ 126.270660675000045, 33.435873541000035 ], [ 126.297949248, 33.441714895000075 ], [ 126.310567327000058, 33.464476461000061 ], [ 126.357360286000016, 33.477960841000083 ], [ 126.459380103000058, 33.502380557000038 ], [ 126.484934588000101, 33.520757551000088 ], [ 126.582433913000045, 33.529283568000039 ], [ 126.648797658000035, 33.553426278000074 ], [ 126.664691543, 33.549675810000053 ], [ 126.745505216000083, 33.560556374000043 ], [ 126.792360330000065, 33.563796905000061 ], [ 126.82336637100002, 33.559439826000073 ], [ 126.83521569100003, 33.544582424000055 ], [ 126.849945509, 33.534979559000078 ], [ 126.898203972000033, 33.51898834800005 ], [ 126.912852410000028, 33.50657786700009 ], [ 126.922699415000011, 33.476629950000074 ], [ 126.932383660000028, 33.464911200000074 ], [ 126.937022332000083, 33.46946849200009 ], [ 126.943369988000086, 33.473822333000044 ], [ 126.946055535000028, 33.478013414000088 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-11", "NAME_1": "Seoul" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.054291620361937, 37.683126533362781 ], [ 127.090258417391965, 37.680801093395701 ], [ 127.107414991808355, 37.657391669489925 ], [ 127.114029575604377, 37.625558987557213 ], [ 127.124468215235879, 37.603312282735658 ], [ 127.12508833196091, 37.578895169376551 ], [ 127.115889926678733, 37.550576484017483 ], [ 127.143278436050878, 37.550834866435935 ], [ 127.166739536800151, 37.557552802120085 ], [ 127.187100051226366, 37.557785346116816 ], [ 127.194748162897326, 37.543238429809662 ], [ 127.192060987724403, 37.528329780095248 ], [ 127.178108352418462, 37.522722887551197 ], [ 127.162915480964671, 37.514713039774961 ], [ 127.163225539327073, 37.496626288472442 ], [ 127.17128706304743, 37.48944326389551 ], [ 127.1541304868324, 37.470839749554784 ], [ 127.144622024087084, 37.457765610694366 ], [ 127.118680454639275, 37.445518296831892 ], [ 127.090155063705197, 37.440247301072077 ], [ 127.060802849571814, 37.428516751147129 ], [ 127.049330682065261, 37.449445706354254 ], [ 127.024319288604261, 37.444846503263477 ], [ 126.999514601617534, 37.438697008360236 ], [ 126.98194461515186, 37.43068716148332 ], [ 126.963651158274274, 37.428310045572118 ], [ 126.920759719085709, 37.429472765555658 ], [ 126.891407504952326, 37.460142727504831 ], [ 126.862468702868341, 37.467067368764049 ], [ 126.842521599592146, 37.477506008395551 ], [ 126.837250603832217, 37.506212267382239 ], [ 126.817406854242904, 37.528665675980164 ], [ 126.793739047918621, 37.551661688735919 ], [ 126.808725213797516, 37.577215685455485 ], [ 126.836733839894691, 37.57579458305355 ], [ 126.868773228301848, 37.560291653237186 ], [ 126.892544387413523, 37.566699531458198 ], [ 126.913731724139666, 37.576931463716051 ], [ 126.915385369639012, 37.594139715875144 ], [ 126.921173130235729, 37.610004380897465 ], [ 126.966028274185419, 37.613415025582924 ], [ 126.989075961986032, 37.63666941985781 ], [ 127.003131951878004, 37.660285549338596 ], [ 127.023079055154199, 37.677209581556895 ], [ 127.054291620361937, 37.683126533362781 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-30", "NAME_1": "Daejeon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.316587171560627, 36.233209924098674 ], [ 127.295870232425273, 36.287591890453371 ], [ 127.290690997191746, 36.360101180125355 ], [ 127.272563674773778, 36.388586972111057 ], [ 127.21898978704894, 36.456242251079004 ], [ 127.264784614618179, 36.466321875054462 ], [ 127.32972700409789, 36.480615953263623 ], [ 127.352567987222756, 36.479065660551782 ], [ 127.350294224099116, 36.471417547981446 ], [ 127.353808221572081, 36.464157009038729 ], [ 127.360939569305629, 36.457852485403862 ], [ 127.369621209751017, 36.454467678240746 ], [ 127.375408970347621, 36.443253893152644 ], [ 127.371584913612878, 36.425735581731715 ], [ 127.401763950945565, 36.418810940472497 ], [ 127.434010044028241, 36.424572861748175 ], [ 127.445688918009068, 36.438241278911846 ], [ 127.459641555113649, 36.435450750951361 ], [ 127.457884555927421, 36.424056097810649 ], [ 127.47018354663328, 36.418965969204066 ], [ 127.471940545819507, 36.401111761898278 ], [ 127.482275831764127, 36.374498398881997 ], [ 127.477418248053709, 36.3510114615097 ], [ 127.464292434148433, 36.334009914925616 ], [ 127.449823033106441, 36.290782578952815 ], [ 127.423674758083621, 36.273755194846331 ], [ 127.40930870982902, 36.269827786223345 ], [ 127.365789903581117, 36.243568393666408 ], [ 127.316587171560627, 36.233209924098674 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-50", "NAME_1": "Sejong" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.104238539576841, 36.691572216184795 ], [ 127.246527948106291, 36.646032213315948 ], [ 127.226994256879379, 36.611899928938556 ], [ 127.228854607953735, 36.595079251306402 ], [ 127.216348911672867, 36.566372992319714 ], [ 127.211698032638083, 36.535651353527101 ], [ 127.285285272197484, 36.547536933082995 ], [ 127.361352981354912, 36.543661201303394 ], [ 127.360629510943113, 36.53278331210015 ], [ 127.355565219858931, 36.523429877187084 ], [ 127.35360151599707, 36.515807603038411 ], [ 127.356908806995762, 36.509399725716719 ], [ 127.357632278306937, 36.504335436431234 ], [ 127.358769158969494, 36.499271145347052 ], [ 127.356805455107633, 36.488884182558934 ], [ 127.352567987222756, 36.479065660551782 ], [ 127.32972700409789, 36.480615953263623 ], [ 127.264784614618179, 36.466321875054462 ], [ 127.21898978704894, 36.456242251079004 ], [ 127.150823195833823, 36.441238512447342 ], [ 127.059769321696763, 36.455630398224287 ], [ 127.068864374191435, 36.476585190953756 ], [ 127.084057244745964, 36.48828990335636 ], [ 127.080931981925346, 36.639779866547599 ], [ 127.104238539576841, 36.691572216184795 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-43", "NAME_1": "North Chungcheong" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.492611118608238, 37.000274156427167 ], [ 127.517725864856743, 37.014278469475755 ], [ 127.56547488775584, 37.085256049127338 ], [ 127.570332473265012, 37.09375682241938 ], [ 127.576120232962353, 37.101559963721343 ], [ 127.583871698320195, 37.106546739540363 ], [ 127.591933222040552, 37.111042588944315 ], [ 127.599994744861533, 37.120706082219897 ], [ 127.607022739807576, 37.131351427426409 ], [ 127.712649366874757, 37.15445079207035 ], [ 127.818999465253114, 37.166052150786129 ], [ 127.810421176695854, 37.117786363050186 ], [ 127.840806918704288, 37.123522446803463 ], [ 127.871399367186996, 37.121817125360053 ], [ 127.879874302057374, 37.117605495896896 ], [ 127.888452589715143, 37.11440155678639 ], [ 127.896204055072985, 37.119801743755431 ], [ 127.90292199075725, 37.126338813185669 ], [ 127.923179153295223, 37.137423407963865 ], [ 127.917701451061021, 37.186025092483987 ], [ 127.936615024663638, 37.204525254936527 ], [ 127.987567986673184, 37.21827118646604 ], [ 128.025601841251955, 37.186154282793893 ], [ 128.025601841251955, 37.164682726126898 ], [ 128.038004184745319, 37.150807603388159 ], [ 128.071180454714181, 37.157215480709851 ], [ 128.104253370996275, 37.171917425748575 ], [ 128.124303827059975, 37.184268093297874 ], [ 128.148178338959156, 37.180263170309047 ], [ 128.167918735760964, 37.188531398705038 ], [ 128.191069778147721, 37.202794094172077 ], [ 128.246880323867799, 37.186929430049133 ], [ 128.303931105735842, 37.179746406371521 ], [ 128.321914504250913, 37.175431423221596 ], [ 128.310338983057591, 37.154373276805245 ], [ 128.281503533760997, 37.137991847845456 ], [ 128.264346959344607, 37.116752835175191 ], [ 128.275302362014372, 37.106882636324599 ], [ 128.289461704693849, 37.100629787734476 ], [ 128.298350050714248, 37.100474758103587 ], [ 128.30744510320892, 37.103885402789103 ], [ 128.33783084521724, 37.111998603352845 ], [ 128.385476516228209, 37.116339423125851 ], [ 128.395398391022923, 37.107606105837078 ], [ 128.393641391836695, 37.093343411269416 ], [ 128.413485142325385, 37.076884467044522 ], [ 128.420719842846438, 37.063732814717582 ], [ 128.438909946936406, 37.064818020335338 ], [ 128.460407342924441, 37.067866929814954 ], [ 128.484488560398745, 37.074016424718195 ], [ 128.508363072297925, 37.074145615927421 ], [ 128.5321342314096, 37.059753730150533 ], [ 128.558489211108167, 37.046111152307788 ], [ 128.584534133343482, 37.042002874732873 ], [ 128.609958937954616, 37.039651598142711 ], [ 128.63021609869395, 37.032623603196726 ], [ 128.65026655475765, 37.022262477931008 ], [ 128.638070916839297, 37.011177883152754 ], [ 128.624531691784114, 37.004925035462009 ], [ 128.612646112228276, 37.008594062565919 ], [ 128.602930943008573, 37.003633124269243 ], [ 128.579883254308697, 36.984099433042388 ], [ 128.5544584487983, 36.967097887357568 ], [ 128.537818638319436, 36.954178779027416 ], [ 128.517148064631442, 36.948985296734008 ], [ 128.504745722037342, 36.940717068338017 ], [ 128.495960727905185, 36.927978827161098 ], [ 128.465058221959339, 36.910434679117145 ], [ 128.443044061134515, 36.885242418502799 ], [ 128.432605422402276, 36.866432196788423 ], [ 128.419893019647134, 36.847777004704994 ], [ 128.426921014593063, 36.837984321119507 ], [ 128.440150181285844, 36.82821747505642 ], [ 128.425370721881222, 36.788969225449364 ], [ 128.341654901052834, 36.760753892877858 ], [ 128.305998163284585, 36.770159002835669 ], [ 128.291115350193195, 36.794317735575021 ], [ 128.26755089665653, 36.81067332611309 ], [ 128.250911086177666, 36.820181789757783 ], [ 128.237888625059895, 36.83188650216033 ], [ 128.224866163942238, 36.821577052838677 ], [ 128.214427525210112, 36.80837372546705 ], [ 128.209466586913436, 36.792793281284901 ], [ 128.20243859286677, 36.776308499537606 ], [ 128.1736031426708, 36.778117173768521 ], [ 128.142700636724953, 36.786824653534893 ], [ 128.126577590183615, 36.795170396296726 ], [ 128.109524366756091, 36.786359565541488 ], [ 128.093091261852237, 36.768608710123829 ], [ 128.073144158576042, 36.767239285464655 ], [ 128.057124464822095, 36.775740057857377 ], [ 128.045032179691248, 36.759306952054146 ], [ 128.032526483410379, 36.737447821759531 ], [ 128.025808546826966, 36.716932277702426 ], [ 128.044928826903742, 36.697140204057177 ], [ 128.059501580733354, 36.674660956138212 ], [ 127.988601516346876, 36.683704331789443 ], [ 127.9504643089806, 36.696985175325551 ], [ 127.928760207417554, 36.670991929933621 ], [ 127.893826939161841, 36.657685247975792 ], [ 127.862717726741607, 36.640709539813372 ], [ 127.860133905255452, 36.628823961156854 ], [ 127.860754021980483, 36.619496365564771 ], [ 127.855172967858152, 36.60929026993 ], [ 127.832642043095802, 36.584976508459079 ], [ 127.818172642053696, 36.572522488122331 ], [ 127.803496535436693, 36.57037791620786 ], [ 127.788717076032185, 36.564848538029594 ], [ 127.799982537963729, 36.541981716483008 ], [ 127.839153274104319, 36.536633206357351 ], [ 127.888142531352742, 36.479401557335962 ], [ 127.86995242726266, 36.465113023447259 ], [ 127.860030551568684, 36.442246201900673 ], [ 127.855999791057457, 36.387753403996385 ], [ 127.850005323986466, 36.363723863365578 ], [ 127.856309849419972, 36.346489772784764 ], [ 127.867368605776505, 36.330702623027605 ], [ 127.853002556622641, 36.307654934327729 ], [ 127.830885043909575, 36.29222951887715 ], [ 127.836879510980566, 36.244713039974783 ], [ 127.877083774996208, 36.25236115254512 ], [ 127.901268345257904, 36.245979111846509 ], [ 127.929587029717595, 36.226884671090659 ], [ 127.949017369056264, 36.219443264095332 ], [ 128.000073683853429, 36.229339301367645 ], [ 128.022707961403285, 36.215851752256526 ], [ 128.03407677612222, 36.163710231841719 ], [ 128.012786085709195, 36.164743761515354 ], [ 127.988808221921886, 36.16833527335416 ], [ 127.964623650760814, 36.151592109188471 ], [ 127.970204705782521, 36.124720363753738 ], [ 127.970411412256794, 36.111026109067666 ], [ 127.968241001021283, 36.094567165742092 ], [ 127.958629184589199, 36.085136217362503 ], [ 127.95087772013062, 36.073974107319202 ], [ 127.942506138047747, 36.048316758711451 ], [ 127.927003209130703, 36.02382213008724 ], [ 127.901888461982935, 36.017000840716207 ], [ 127.877600538933621, 36.007363185862289 ], [ 127.86478478429035, 35.996459459136702 ], [ 127.85196902874759, 35.986950995492009 ], [ 127.837292922130587, 35.993384711235421 ], [ 127.822720168301089, 36.004650173166965 ], [ 127.785823196183514, 35.991162624955166 ], [ 127.753680454988967, 35.975220445567061 ], [ 127.737660761235134, 35.978941147715773 ], [ 127.728359003165451, 35.988372096994681 ], [ 127.683607212003153, 36.000283514972239 ], [ 127.668621047023635, 36.014675400749127 ], [ 127.651671177282992, 36.022762762891148 ], [ 127.645159947173738, 36.015708930422761 ], [ 127.637098422554118, 36.014106960867537 ], [ 127.627589959808802, 36.021160794235243 ], [ 127.619011672150918, 36.029506536997076 ], [ 127.596274041813558, 36.058109443196201 ], [ 127.575913528286605, 36.087435818008601 ], [ 127.567335239729459, 36.121723131117562 ], [ 127.568678826866289, 36.156294664167376 ], [ 127.558343540921669, 36.186034451029059 ], [ 127.527647739651457, 36.201227322482907 ], [ 127.497985468054821, 36.20900462536315 ], [ 127.465739374072768, 36.203604438394109 ], [ 127.463052198899845, 36.232052314063026 ], [ 127.464809198085959, 36.259699204954302 ], [ 127.476798130429302, 36.298353176258047 ], [ 127.499432407979157, 36.331219386965131 ], [ 127.508527459574566, 36.34796255113082 ], [ 127.518656040843553, 36.362845364222153 ], [ 127.535089145747406, 36.372844754281971 ], [ 127.538913201582886, 36.39018219675097 ], [ 127.526097446939616, 36.393618678958831 ], [ 127.512248162622541, 36.398657130721972 ], [ 127.495401645669403, 36.388761095248299 ], [ 127.482275831764127, 36.374498398881997 ], [ 127.471940545819507, 36.401111761898278 ], [ 127.47018354663328, 36.418965969204066 ], [ 127.457884555927421, 36.424056097810649 ], [ 127.459641555113649, 36.435450750951361 ], [ 127.445688918009068, 36.438241278911846 ], [ 127.434010044028241, 36.424572861748175 ], [ 127.401763950945565, 36.418810940472497 ], [ 127.371584913612878, 36.425735581731715 ], [ 127.375408970347621, 36.443253893152644 ], [ 127.369621209751017, 36.454467678240746 ], [ 127.360939569305629, 36.457852485403862 ], [ 127.353808221572081, 36.464157009038729 ], [ 127.350294224099116, 36.471417547981446 ], [ 127.352567987222756, 36.479065660551782 ], [ 127.356805455107633, 36.488884182558934 ], [ 127.358769158969494, 36.499271145347052 ], [ 127.357632278306937, 36.504335436431234 ], [ 127.356908806995762, 36.509399725716719 ], [ 127.35360151599707, 36.515807603038411 ], [ 127.355565219858931, 36.523429877187084 ], [ 127.360629510943113, 36.53278331210015 ], [ 127.361352981354912, 36.543661201303394 ], [ 127.285285272197484, 36.547536933082995 ], [ 127.211698032638083, 36.535651353527101 ], [ 127.216348911672867, 36.566372992319714 ], [ 127.228854607953735, 36.595079251306402 ], [ 127.226994256879379, 36.611899928938556 ], [ 127.246527948106291, 36.646032213315948 ], [ 127.274226515840951, 36.678278307298001 ], [ 127.295310499779703, 36.707682197375505 ], [ 127.303682081862576, 36.71489105947478 ], [ 127.313190546406531, 36.71370250106952 ], [ 127.322492303576951, 36.715795396140606 ], [ 127.327556593761756, 36.723443507811623 ], [ 127.328900180898586, 36.73204763389117 ], [ 127.33200076722153, 36.742977199937798 ], [ 127.336858351831438, 36.753519192356805 ], [ 127.339338821429465, 36.764810491810749 ], [ 127.337168410193954, 36.77615346900734 ], [ 127.330553827297194, 36.786204535011279 ], [ 127.32228559800194, 36.792276516448055 ], [ 127.323319125876878, 36.812843736449281 ], [ 127.310193312871093, 36.820233465701847 ], [ 127.293036736656063, 36.847932034335884 ], [ 127.279600865287648, 36.854184882026686 ], [ 127.267818637619939, 36.864106756821343 ], [ 127.259963821273232, 36.878937893069292 ], [ 127.304818964323658, 36.889479885488299 ], [ 127.347296990563564, 36.905861314448089 ], [ 127.380576613320045, 36.914801337311872 ], [ 127.389568313027212, 36.944231064911719 ], [ 127.40589806514356, 36.958390408490516 ], [ 127.431529576228854, 36.967252916089194 ], [ 127.443621861359816, 36.979784450791726 ], [ 127.451890089755807, 36.996398423748246 ], [ 127.467393019572114, 37.00957591449685 ], [ 127.486926710799025, 37.006294461020559 ], [ 127.492611118608238, 37.000274156427167 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-29", "NAME_1": "Gwangju" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.933988885778376, 35.254592597370447 ], [ 126.98556196541233, 35.238779609191567 ], [ 127.005819126151664, 35.193045966098452 ], [ 126.96644168533544, 35.150077013443422 ], [ 126.904740025331876, 35.158138536264403 ], [ 126.850273064949988, 35.18488109048991 ], [ 126.82288455557773, 35.234077053313342 ], [ 126.844485305252533, 35.250768541534967 ], [ 126.880348748595793, 35.242991237755405 ], [ 126.906600376406232, 35.24787466078692 ], [ 126.933988885778376, 35.254592597370447 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "KR-27", "NAME_1": "Daegu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.693157993946215, 36.00932689152279 ], [ 128.733258905174239, 35.985504055567674 ], [ 128.745971307030118, 35.967572332996724 ], [ 128.745454543092592, 35.959665838907313 ], [ 128.740596959382174, 35.952999579167226 ], [ 128.740907016845313, 35.927729804187095 ], [ 128.74896854056567, 35.917911282179887 ], [ 128.759717237660311, 35.910495714505601 ], [ 128.761784296108317, 35.894631049483337 ], [ 128.762301060045843, 35.877707018164358 ], [ 128.756926710599146, 35.861894029086159 ], [ 128.741320428894596, 35.84881989202438 ], [ 128.733775669111765, 35.850628567154615 ], [ 128.724370559153954, 35.84995677268688 ], [ 128.72488732309148, 35.843393867532939 ], [ 128.723543735954649, 35.834944770184961 ], [ 128.714138625097462, 35.814945990964702 ], [ 128.714035272309957, 35.808486435900249 ], [ 128.711038038774404, 35.799107164364102 ], [ 128.688713821385704, 35.788125922373411 ], [ 128.630939569105749, 35.800347397814164 ], [ 128.598590123235567, 35.802982896143703 ], [ 128.584327426869208, 35.793836167704967 ], [ 128.570064732301489, 35.773579006066257 ], [ 128.562416619731152, 35.768282171884721 ], [ 128.553218215348352, 35.774457506109002 ], [ 128.540919223743117, 35.780917060274078 ], [ 128.523245883590562, 35.792544257411521 ], [ 128.511360304934101, 35.81119944949495 ], [ 128.496787551104603, 35.822826645733073 ], [ 128.481284621288182, 35.827735908085685 ], [ 128.475290155116568, 35.846210232116505 ], [ 128.489139439433529, 35.861894029086159 ], [ 128.504125604413048, 35.861971544351263 ], [ 128.520248650954386, 35.864116116265734 ], [ 128.524486118839263, 35.873572903066986 ], [ 128.526346469913619, 35.883546453805764 ], [ 128.517561476680726, 35.88618195213536 ], [ 128.508053013036033, 35.887448024906405 ], [ 128.518801711030051, 35.907110908241805 ], [ 128.53595828724508, 35.922407131583839 ], [ 128.529653761811574, 35.967985745046064 ], [ 128.576679315198135, 35.999611721403824 ], [ 128.640344679962936, 36.006536363562304 ], [ 128.693157993946215, 36.00932689152279 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/liechtenstein.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/liechtenstein.geojson new file mode 100644 index 000000000000..14404563a33d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/liechtenstein.geojson @@ -0,0 +1,17 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "LI-09", "NAME_1": "Triesen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.588252960082398, 47.06297656631186 ], [ 9.581202840000032, 47.056870423000063 ], [ 9.560635620000141, 47.05240041200004 ], [ 9.533133795803231, 47.055529849177844 ], [ 9.532162928276477, 47.062332844385253 ], [ 9.529382436750041, 47.070674318065301 ], [ 9.522709257626104, 47.078459693260186 ], [ 9.522153159140942, 47.08680116694029 ], [ 9.512143390904725, 47.088469462395722 ], [ 9.50286136800014, 47.094697572000129 ], [ 9.512369832000047, 47.10803009100006 ], [ 9.511853068000107, 47.129372457000059 ], [ 9.52715804370871, 47.130732929281237 ], [ 9.533275124347483, 47.125171946228306 ], [ 9.534387321317809, 47.11516217799209 ], [ 9.537167811944926, 47.1029280167146 ], [ 9.547733678666305, 47.097367034560989 ], [ 9.556631250831572, 47.096254837590664 ], [ 9.560523938429014, 47.089025559981565 ], [ 9.554406857790241, 47.082908479342848 ], [ 9.560523938429014, 47.075679202633069 ], [ 9.57053370756455, 47.075679202633069 ], [ 9.571645903635556, 47.082908479342848 ], [ 9.567753216038057, 47.088469462395722 ], [ 9.582767868842041, 47.08680116694029 ], [ 9.584436163398209, 47.075123104147906 ], [ 9.588252960082398, 47.06297656631186 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "LI-07", "NAME_1": "Schaan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.605130657392339, 47.077594422085042 ], [ 9.588252960082398, 47.06297656631186 ], [ 9.584436163398209, 47.075123104147906 ], [ 9.582767868842041, 47.08680116694029 ], [ 9.597782521646025, 47.090693855437053 ], [ 9.600563013172518, 47.082352381757005 ], [ 9.605130657392339, 47.077594422085042 ] ] ], [ [ [ 9.609508497359142, 47.122410484328647 ], [ 9.614160036831384, 47.110698572910657 ], [ 9.600006914687356, 47.110713391909485 ], [ 9.591665441007308, 47.111269490394648 ], [ 9.585548360368534, 47.109601195838479 ], [ 9.576094689718161, 47.108488998868154 ], [ 9.57387029667683, 47.123503651672138 ], [ 9.569977609079388, 47.132957322322568 ], [ 9.561080036914177, 47.137406108405173 ], [ 9.563304429955451, 47.147971975126552 ], [ 9.572758100605824, 47.144079287529053 ], [ 9.580543475800766, 47.138518304476122 ], [ 9.58999714645114, 47.1312890277664 ], [ 9.59889471771703, 47.121279258630864 ], [ 9.609508497359142, 47.122410484328647 ] ] ], [ [ [ 9.551953979000103, 47.175571188 ], [ 9.552057332000118, 47.166889547000054 ], [ 9.548289777151467, 47.160762234889205 ], [ 9.538280008915251, 47.162430529445373 ], [ 9.525489749152598, 47.16521102097181 ], [ 9.517704373957656, 47.161318332475048 ], [ 9.512699489389888, 47.167435414013141 ], [ 9.505470211780846, 47.169103708569253 ], [ 9.508250703307283, 47.152976858795 ], [ 9.495534340722259, 47.155950501228105 ], [ 9.492629435000083, 47.159809876000011 ], [ 9.484981323000085, 47.176346334000115 ], [ 9.486433793458151, 47.196917734867441 ], [ 9.499909229627235, 47.191903736568179 ], [ 9.51714827547255, 47.191347638083016 ], [ 9.531050731306209, 47.194684228094616 ], [ 9.529938535235203, 47.185786655929405 ], [ 9.541060500441745, 47.177445182249357 ], [ 9.551953979000103, 47.175571188 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "LI-10", "NAME_1": "Triesenberg" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.614160036831384, 47.110698572910657 ], [ 9.615722697000109, 47.106764018000021 ], [ 9.608798055000136, 47.080770773000054 ], [ 9.605130657392339, 47.077594422085042 ], [ 9.600563013172518, 47.082352381757005 ], [ 9.597782521646025, 47.090693855437053 ], [ 9.598338620131187, 47.0990353291171 ], [ 9.591665441007308, 47.111269490394648 ], [ 9.600006914687356, 47.110713391909485 ], [ 9.614160036831384, 47.110698572910657 ] ] ], [ [ [ 9.560523938429014, 47.089025559981565 ], [ 9.556631250831572, 47.096254837590664 ], [ 9.547733678666305, 47.097367034560989 ], [ 9.537167811944926, 47.1029280167146 ], [ 9.534387321317809, 47.11516217799209 ], [ 9.533275124347483, 47.125171946228306 ], [ 9.52715804370871, 47.130732929281237 ], [ 9.527714142193872, 47.142967090558784 ], [ 9.531606829791372, 47.145747582085221 ], [ 9.542172696512694, 47.145747582085221 ], [ 9.54550928562503, 47.151864662723995 ], [ 9.548289777151467, 47.160762234889205 ], [ 9.555519054760566, 47.153532957280106 ], [ 9.563304429955451, 47.147971975126552 ], [ 9.561080036914177, 47.137406108405173 ], [ 9.569977609079388, 47.132957322322568 ], [ 9.57387029667683, 47.123503651672138 ], [ 9.576094689718161, 47.108488998868154 ], [ 9.568309314523219, 47.107376802797205 ], [ 9.568865413008382, 47.097923132146832 ], [ 9.567753216038057, 47.088469462395722 ], [ 9.560523938429014, 47.089025559981565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "LI-01", "NAME_1": "Balzers" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.567114250315864, 47.160824955048199 ], [ 9.581822957000099, 47.154900615000074 ], [ 9.605594116000077, 47.132266337000047 ], [ 9.609508497359142, 47.122410484328647 ], [ 9.59889471771703, 47.121279258630864 ], [ 9.58999714645114, 47.1312890277664 ], [ 9.580543475800766, 47.138518304476122 ], [ 9.572758100605824, 47.144079287529053 ], [ 9.563304429955451, 47.147971975126552 ], [ 9.567114250315864, 47.160824955048199 ] ] ], [ [ [ 9.533133795803231, 47.055529849177844 ], [ 9.499554077000141, 47.059350891000022 ], [ 9.477023152696347, 47.063898417477958 ], [ 9.475886271000121, 47.073226014000099 ], [ 9.487565145000104, 47.083948874 ], [ 9.50286136800014, 47.094697572000129 ], [ 9.512143390904725, 47.088469462395722 ], [ 9.522153159140942, 47.08680116694029 ], [ 9.522709257626104, 47.078459693260186 ], [ 9.529382436750041, 47.070674318065301 ], [ 9.532162928276477, 47.062332844385253 ], [ 9.533133795803231, 47.055529849177844 ] ] ], [ [ [ 9.560523938429014, 47.089025559981565 ], [ 9.567753216038057, 47.088469462395722 ], [ 9.571645903635556, 47.082908479342848 ], [ 9.57053370756455, 47.075679202633069 ], [ 9.560523938429014, 47.075679202633069 ], [ 9.554406857790241, 47.082908479342848 ], [ 9.560523938429014, 47.089025559981565 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "LI-05", "NAME_1": "Planken" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.552057332000118, 47.166889547000054 ], [ 9.567114250315864, 47.160824955048199 ], [ 9.563304429955451, 47.147971975126552 ], [ 9.555519054760566, 47.153532957280106 ], [ 9.548289777151467, 47.160762234889205 ], [ 9.552057332000118, 47.166889547000054 ] ] ], [ [ [ 9.561875854000078, 47.190609029000072 ], [ 9.551953979000103, 47.175571188 ], [ 9.541060500441745, 47.177445182249357 ], [ 9.529938535235203, 47.185786655929405 ], [ 9.531050731306209, 47.194684228094616 ], [ 9.539948303471419, 47.199689111763064 ], [ 9.551626367163124, 47.19746471872179 ], [ 9.561875854000078, 47.190609029000072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "LI-02", "NAME_1": "Eschen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.554331095000123, 47.211615499000104 ], [ 9.562909383000061, 47.197740377000017 ], [ 9.561875854000078, 47.190609029000072 ], [ 9.551626367163124, 47.19746471872179 ], [ 9.539948303471419, 47.199689111763064 ], [ 9.531050731306209, 47.194684228094616 ], [ 9.518816570028662, 47.199689111763064 ], [ 9.509362899378289, 47.204693996330832 ], [ 9.508250703307283, 47.214703764567048 ], [ 9.512699489389888, 47.224713533702584 ], [ 9.519928766099667, 47.225269631288427 ], [ 9.524933650667435, 47.216928157608379 ], [ 9.542172696512694, 47.210811076969605 ], [ 9.554331095000123, 47.211615499000104 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "LI-04", "NAME_1": "Mauren" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.543132148856643, 47.23481658408042 ], [ 9.540378458000134, 47.229107972000051 ], [ 9.544822632000148, 47.220322978000056 ], [ 9.554331095000123, 47.211615499000104 ], [ 9.542172696512694, 47.210811076969605 ], [ 9.524933650667435, 47.216928157608379 ], [ 9.519928766099667, 47.225269631288427 ], [ 9.529938535235203, 47.231942810412363 ], [ 9.543132148856643, 47.23481658408042 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "LI-08", "NAME_1": "Schellenberg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.534181546332288, 47.251175878683298 ], [ 9.547096395000068, 47.243034770000023 ], [ 9.543132148856643, 47.23481658408042 ], [ 9.529938535235203, 47.231942810412363 ], [ 9.519928766099667, 47.225269631288427 ], [ 9.519372668513824, 47.23138671282652 ], [ 9.526045847637761, 47.23805989105108 ], [ 9.529382436750041, 47.244733070175016 ], [ 9.534181546332288, 47.251175878683298 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "LI-06", "NAME_1": "Ruggell" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.52115482500011, 47.2628010050001 ], [ 9.530249878000092, 47.253654277000024 ], [ 9.534181546332288, 47.251175878683298 ], [ 9.529382436750041, 47.244733070175016 ], [ 9.526045847637761, 47.23805989105108 ], [ 9.519372668513824, 47.23138671282652 ], [ 9.519928766099667, 47.225269631288427 ], [ 9.512699489389888, 47.224713533702584 ], [ 9.503801917224678, 47.227494024329758 ], [ 9.497043626603961, 47.228934441756735 ], [ 9.504618368000138, 47.24373240200002 ], [ 9.52115482500011, 47.2628010050001 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "LI-11", "NAME_1": "Vaduz" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.511853068000107, 47.129372457000059 ], [ 9.503481486000112, 47.145392151000109 ], [ 9.495534340722259, 47.155950501228105 ], [ 9.508250703307283, 47.152976858795 ], [ 9.505470211780846, 47.169103708569253 ], [ 9.512699489389888, 47.167435414013141 ], [ 9.517704373957656, 47.161318332475048 ], [ 9.525489749152598, 47.16521102097181 ], [ 9.538280008915251, 47.162430529445373 ], [ 9.548289777151467, 47.160762234889205 ], [ 9.54550928562503, 47.151864662723995 ], [ 9.542172696512694, 47.145747582085221 ], [ 9.531606829791372, 47.145747582085221 ], [ 9.527714142193872, 47.142967090558784 ], [ 9.52715804370871, 47.130732929281237 ], [ 9.511853068000107, 47.129372457000059 ] ] ], [ [ [ 9.567753216038057, 47.088469462395722 ], [ 9.568865413008382, 47.097923132146832 ], [ 9.568309314523219, 47.107376802797205 ], [ 9.576094689718161, 47.108488998868154 ], [ 9.585548360368534, 47.109601195838479 ], [ 9.591665441007308, 47.111269490394648 ], [ 9.598338620131187, 47.0990353291171 ], [ 9.597782521646025, 47.090693855437053 ], [ 9.582767868842041, 47.08680116694029 ], [ 9.567753216038057, 47.088469462395722 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "LI-03", "NAME_1": "Gamprin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.486433793458151, 47.196917734867441 ], [ 9.487358439000047, 47.210013529000051 ], [ 9.497043626603961, 47.228934441756735 ], [ 9.503801917224678, 47.227494024329758 ], [ 9.512699489389888, 47.224713533702584 ], [ 9.508250703307283, 47.214703764567048 ], [ 9.509362899378289, 47.204693996330832 ], [ 9.518816570028662, 47.199689111763064 ], [ 9.531050731306209, 47.194684228094616 ], [ 9.51714827547255, 47.191347638083016 ], [ 9.499909229627235, 47.191903736568179 ], [ 9.486433793458151, 47.196917734867441 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/malaysia.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/malaysia.geojson new file mode 100644 index 000000000000..2cffd2d44e48 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/malaysia.geojson @@ -0,0 +1,22 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "MY-12", "NAME_1": "Sabah" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.70360790400008, 4.163414542000055 ], [ 117.640147332000083, 4.227443752000056 ], [ 117.701670769000089, 4.267523505000042 ], [ 117.785411004000025, 4.246649481000077 ], [ 117.817718946000014, 4.204738674000055 ], [ 117.896250847000033, 4.181341864000046 ], [ 117.907039027605904, 4.156683015004099 ], [ 117.70360790400008, 4.163414542000055 ] ] ], [ [ [ 116.590226685000118, 4.33113210100008 ], [ 116.52222050000006, 4.396787008000018 ], [ 116.486460409000131, 4.348831278000091 ], [ 116.494108521000101, 4.324853414000074 ], [ 116.446359497, 4.317256979000106 ], [ 116.411322876000099, 4.288654074000135 ], [ 116.391065715000082, 4.294674377000078 ], [ 116.358199504000083, 4.355445862000082 ], [ 116.310657186000071, 4.383376974000072 ], [ 116.22880171700001, 4.356117656000066 ], [ 116.125758912000038, 4.378906962000059 ], [ 116.109945923000112, 4.345110575000078 ], [ 116.020649048000053, 4.270851542000102 ], [ 115.993570598000019, 4.288912455000101 ], [ 115.977240845000154, 4.328625794000089 ], [ 115.878848918000017, 4.352138570000079 ], [ 115.864896281000028, 4.38257598900006 ], [ 115.844122355000081, 4.38921641000006 ], [ 115.821178020000048, 4.344335429000068 ], [ 115.817457317000049, 4.281316020000048 ], [ 115.770741821000058, 4.225608825000108 ], [ 115.732604615000014, 4.239380595000057 ], [ 115.655916789000059, 4.178634949000042 ], [ 115.639134330884644, 4.145949698020161 ], [ 115.62790896972308, 4.220827948550948 ], [ 115.666356236351135, 4.280255846330249 ], [ 115.673539260028747, 4.323302314250384 ], [ 115.6441353699513, 4.362498887913318 ], [ 115.590650263298926, 4.388104560577005 ], [ 115.560109490760397, 4.496935125855373 ], [ 115.557008905336716, 4.573519598950327 ], [ 115.595921259058855, 4.653902289459097 ], [ 115.607755161771252, 4.726843572972484 ], [ 115.638450962142088, 4.763688870045314 ], [ 115.658501418205788, 4.824822089267968 ], [ 115.636280551805953, 4.940499783238408 ], [ 115.609305455382469, 4.960524399981068 ], [ 115.421561803458914, 4.962329459971157 ], [ 115.47974694100003, 5.02602773600006 ], [ 115.556976759, 5.067206122000073 ], [ 115.57349694100003, 5.169663804000038 ], [ 115.605235222000033, 5.212103583000044 ], [ 115.598643425000091, 5.225490627000056 ], [ 115.560801629000025, 5.207831122000073 ], [ 115.489756707000083, 5.22296784100007 ], [ 115.400645379000025, 5.299994208000044 ], [ 115.399750196000014, 5.324204820000091 ], [ 115.365244988000086, 5.307440497000073 ], [ 115.359629754000025, 5.319647528000075 ], [ 115.392588738000086, 5.413275458000044 ], [ 115.550140821000014, 5.540187893000052 ], [ 115.604828321000014, 5.635809637000079 ], [ 115.61882571700005, 5.612860419000071 ], [ 115.584320509, 5.548488674000055 ], [ 115.604828321000014, 5.519720770000049 ], [ 115.619151238000086, 5.568060614000046 ], [ 115.674082879000025, 5.529364325000074 ], [ 115.762380405000044, 5.523138739000046 ], [ 115.817718946000014, 5.533351955000057 ], [ 115.848643425000091, 5.56000397300005 ], [ 115.89421634200005, 5.643255927000041 ], [ 115.930674675000091, 5.763006903000075 ], [ 116.050791863000086, 5.842271226000094 ], [ 116.066416863000086, 5.930650132000039 ], [ 116.14185631600003, 6.073065497000073 ], [ 116.12623131600003, 6.102525132000039 ], [ 116.103770379000025, 6.094712632000039 ], [ 116.105967644000089, 6.126450914000088 ], [ 116.154063347000033, 6.147284247000073 ], [ 116.222666863000086, 6.237209377000056 ], [ 116.252207879000025, 6.245917059000078 ], [ 116.291514519000089, 6.232611395000049 ], [ 116.292735222000033, 6.275783596000053 ], [ 116.236094597000033, 6.272609768000052 ], [ 116.283213738000086, 6.30735911700009 ], [ 116.31999759200005, 6.313381252000056 ], [ 116.347666863000086, 6.379584052000041 ], [ 116.50318444100003, 6.495184637000079 ], [ 116.520681186000047, 6.568752346000053 ], [ 116.639008009, 6.699286200000074 ], [ 116.66920006600003, 6.87641022300005 ], [ 116.697520379000025, 6.889715887000079 ], [ 116.718923373000052, 6.975409247000073 ], [ 116.765879754000025, 7.025091864000046 ], [ 116.838145379000025, 6.962144273000092 ], [ 116.851817254000025, 6.890204169000071 ], [ 116.822520379000025, 6.904120184000078 ], [ 116.810801629000025, 6.862860419000071 ], [ 116.852386915000011, 6.83852773600006 ], [ 116.85865319100003, 6.817857164000088 ], [ 116.843923373000052, 6.75226471600007 ], [ 116.792735222000033, 6.669745184000078 ], [ 116.783946160000028, 6.591620184000078 ], [ 116.824473504000025, 6.581732489000046 ], [ 116.845469597000033, 6.592027085000041 ], [ 116.973806186000047, 6.708075262000079 ], [ 116.984141472000033, 6.754950262000079 ], [ 117.05787194100003, 6.845526434000078 ], [ 117.03052819100003, 6.931138414000088 ], [ 117.08326256600003, 6.948472398000092 ], [ 117.078379754000025, 6.992621161000045 ], [ 117.119883660000028, 6.98578522300005 ], [ 117.150238477000016, 7.003119208000044 ], [ 117.256521030000044, 6.937974351000094 ], [ 117.230316602000016, 6.817531643000052 ], [ 117.271983269000089, 6.753729559000078 ], [ 117.295909050000091, 6.636297919000071 ], [ 117.364756707000083, 6.625148830000057 ], [ 117.458506707000083, 6.547552802000041 ], [ 117.533702019000089, 6.621039130000042 ], [ 117.537608269000089, 6.578314520000049 ], [ 117.564952019000089, 6.554388739000046 ], [ 117.558116082000083, 6.540106512000079 ], [ 117.603282097000033, 6.514715887000079 ], [ 117.640879754000025, 6.521714585000041 ], [ 117.695323113000086, 6.451361395000049 ], [ 117.710703972000033, 6.463771877000056 ], [ 117.727061394000089, 6.451157945000091 ], [ 117.74382571700005, 6.389878648000092 ], [ 117.728526238000086, 6.362372137000079 ], [ 117.738780144000089, 6.335679429000038 ], [ 117.722992384, 6.25462474200009 ], [ 117.656260613000086, 6.252752997000073 ], [ 117.600352410000028, 6.197821356000077 ], [ 117.661143425000091, 6.105617580000057 ], [ 117.661143425000091, 6.067775783000059 ], [ 117.633311394000089, 6.039862372000073 ], [ 117.668304884, 6.013413804000038 ], [ 117.668955925000091, 5.972642320000091 ], [ 117.619639519000089, 5.937445380000042 ], [ 117.492849155000044, 5.894680080000057 ], [ 117.468760613000086, 5.868557033000059 ], [ 117.569346550000091, 5.902899481000077 ], [ 117.774261915000011, 5.908026434000078 ], [ 117.771657748000052, 5.944281317000048 ], [ 117.88404381600003, 5.954657294000071 ], [ 117.973643425000091, 6.047756252000056 ], [ 118.01685631600003, 6.060980536000045 ], [ 118.050954623000052, 6.026190497000073 ], [ 118.077159050000091, 5.931586005000042 ], [ 118.125173373000052, 5.86391836100006 ], [ 118.095957879000025, 5.824164130000042 ], [ 118.058848504000025, 5.808986721000053 ], [ 117.92115319100003, 5.809027411000045 ], [ 117.908457879000025, 5.784654039000088 ], [ 117.960297071000014, 5.687160549000055 ], [ 118.054698113000086, 5.718329169000071 ], [ 118.078868035000028, 5.704657294000071 ], [ 118.106618686000047, 5.712591864000046 ], [ 118.13404381600003, 5.689642645000049 ], [ 118.151540561000047, 5.705145575000074 ], [ 118.160817905000044, 5.793402411000045 ], [ 118.176280144000089, 5.805161851000094 ], [ 118.262217644000089, 5.827866929000038 ], [ 118.340668165000011, 5.794256903000075 ], [ 118.365244988000086, 5.813788153000075 ], [ 118.594004754000025, 5.682074286000045 ], [ 118.562022332000083, 5.568019924000055 ], [ 118.565440300000091, 5.525946356000077 ], [ 118.600596550000091, 5.581284898000092 ], [ 118.603037957000083, 5.618719794000071 ], [ 118.651052280000044, 5.636419989000046 ], [ 118.736582879000025, 5.547837632000039 ], [ 118.80005944100003, 5.52212148600006 ], [ 118.819346550000091, 5.478094794000071 ], [ 118.832367384, 5.505438544000071 ], [ 118.918793165000011, 5.454982815000051 ], [ 118.935720248000052, 5.433986721000053 ], [ 118.939463738000086, 5.41282786700009 ], [ 118.921722852000016, 5.403021552000041 ], [ 118.932627800000091, 5.394110419000071 ], [ 118.976410352000016, 5.395575262000079 ], [ 118.970876498000052, 5.428290106000077 ], [ 118.983897332000083, 5.436509507000039 ], [ 119.085703972000033, 5.409857489000046 ], [ 119.189300977000016, 5.450751044000071 ], [ 119.274261915000011, 5.361151434000078 ], [ 119.267100457000083, 5.201076565000051 ], [ 119.15593509200005, 5.10618724200009 ], [ 118.681488477000016, 4.944322007000039 ], [ 118.572276238000086, 4.971625067000048 ], [ 118.499359571000014, 4.931463934000078 ], [ 118.428396030000044, 5.018784898000092 ], [ 118.357188347000033, 5.038804429000038 ], [ 118.291677280000044, 5.000921942000048 ], [ 118.291270379000025, 4.977850653000075 ], [ 118.252696160000028, 4.987127997000073 ], [ 118.216970248000052, 4.965806382000039 ], [ 118.136485222000033, 4.882310289000088 ], [ 118.134938998000052, 4.859605210000041 ], [ 118.177989129000025, 4.830755927000041 ], [ 118.219004754000025, 4.756293036000045 ], [ 118.277598504000025, 4.695135809000078 ], [ 118.333506707000083, 4.651556708000044 ], [ 118.38054446700005, 4.642645575000074 ], [ 118.411143425000091, 4.601507880000042 ], [ 118.428396030000044, 4.594305731000077 ], [ 118.44459069100003, 4.614935614000046 ], [ 118.476735873000052, 4.601141669000071 ], [ 118.48951256600003, 4.575100002000056 ], [ 118.469411655000044, 4.537176825000074 ], [ 118.496592644000089, 4.508286851000094 ], [ 118.551931186000047, 4.532782294000071 ], [ 118.599619988000086, 4.519191799000055 ], [ 118.594004754000025, 4.505519924000055 ], [ 118.64576256600003, 4.436753648000092 ], [ 118.62623131600003, 4.419338283000059 ], [ 118.592133009, 4.42914459800005 ], [ 118.592784050000091, 4.397365627000056 ], [ 118.556895379000025, 4.363511460000041 ], [ 118.391937696000014, 4.346380927000041 ], [ 118.353282097000033, 4.361517645000049 ], [ 118.332530144000089, 4.339016018000052 ], [ 118.160817905000044, 4.306219794000071 ], [ 117.982676629000025, 4.231146552000041 ], [ 117.89226321700005, 4.256984768000052 ], [ 117.822520379000025, 4.306219794000071 ], [ 117.80827884200005, 4.333563544000071 ], [ 117.707530144000089, 4.369940497000073 ], [ 117.67115319100003, 4.426011460000041 ], [ 117.656016472000033, 4.424221096000053 ], [ 117.605804884, 4.382025458000044 ], [ 117.628754102000016, 4.361761786000045 ], [ 117.653656446000014, 4.272162177000041 ], [ 117.598968946000014, 4.206935940000051 ], [ 117.627126498000052, 4.17649974200009 ], [ 117.567149285000028, 4.159654039000088 ], [ 117.436479940000027, 4.185611267000041 ], [ 117.356588176000059, 4.259508566000108 ], [ 117.202695761000086, 4.35606597900005 ], [ 117.164661906000106, 4.333147481000125 ], [ 116.980590454000094, 4.329555970000058 ], [ 116.883025351000072, 4.344903870000024 ], [ 116.804477173, 4.330072733000094 ], [ 116.711666300000104, 4.366788838000062 ], [ 116.680040324000117, 4.339917094000072 ], [ 116.615548137000019, 4.344077047000098 ], [ 116.590226685000118, 4.33113210100008 ] ] ], [ [ [ 118.219493035000028, 5.855536200000074 ], [ 118.233083530000044, 5.851141669000071 ], [ 118.230804884, 5.831935940000051 ], [ 118.165537957000083, 5.827541408000059 ], [ 118.181000196000014, 5.851263739000046 ], [ 118.219493035000028, 5.855536200000074 ] ] ], [ [ [ 118.72624759200005, 4.491888739000046 ], [ 118.748789910000028, 4.485500393000052 ], [ 118.756114129000025, 4.457220770000049 ], [ 118.674815300000091, 4.436590887000079 ], [ 118.644053582000083, 4.495306708000044 ], [ 118.72624759200005, 4.491888739000046 ] ] ], [ [ [ 118.510264519000089, 4.648871161000045 ], [ 118.523773634, 4.665716864000046 ], [ 118.549489780000044, 4.665187893000052 ], [ 118.599619988000086, 4.635199286000045 ], [ 118.575368686000047, 4.627386786000045 ], [ 118.572276238000086, 4.601141669000071 ], [ 118.54810631600003, 4.621568101000094 ], [ 118.535166863000086, 4.601304429000038 ], [ 118.346446160000028, 4.676214911000045 ], [ 118.425303582000083, 4.676214911000045 ], [ 118.45630944100003, 4.697251695000091 ], [ 118.476084832000083, 4.693793036000045 ], [ 118.510264519000089, 4.648871161000045 ] ] ], [ [ [ 117.468760613000086, 6.766669012000079 ], [ 117.510752800000091, 6.704291083000044 ], [ 117.506602410000028, 6.673488674000055 ], [ 117.44304446700005, 6.635728257000039 ], [ 117.34693444100003, 6.654974677000041 ], [ 117.354991082000083, 6.679632880000042 ], [ 117.443858269000089, 6.698553778000075 ], [ 117.439300977000016, 6.723944403000075 ], [ 117.40357506600003, 6.725816148000092 ], [ 117.399912957000083, 6.739325262000079 ], [ 117.468760613000086, 6.766669012000079 ] ] ], [ [ [ 117.002614780000044, 7.355698960000041 ], [ 117.02271569100003, 7.318833726000094 ], [ 117.010020379000025, 7.279974677000041 ], [ 116.991547071000014, 7.29718659100007 ], [ 116.976735873000052, 7.290228583000044 ], [ 116.982188347000033, 7.253322658000059 ], [ 116.886485222000033, 7.229396877000056 ], [ 116.905121290000011, 7.208929755000042 ], [ 116.890961134, 7.19367096600007 ], [ 116.851817254000025, 7.198065497000073 ], [ 116.900157097000033, 7.28742096600007 ], [ 116.961680535000028, 7.307928778000075 ], [ 117.002614780000044, 7.355698960000041 ] ] ], [ [ [ 117.17115319100003, 7.342678127000056 ], [ 117.246267123000052, 7.35578034100007 ], [ 117.281911655000044, 7.33234284100007 ], [ 117.262380405000044, 7.201971747000073 ], [ 117.247080925000091, 7.183172919000071 ], [ 117.22974694100003, 7.191839911000045 ], [ 117.140391472000033, 7.167629299000055 ], [ 117.09888756600003, 7.143459377000056 ], [ 117.07154381600003, 7.102484442000048 ], [ 117.056407097000033, 7.202866929000038 ], [ 117.067718946000014, 7.28001536700009 ], [ 117.17115319100003, 7.342678127000056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MY-09", "NAME_1": "Perlis" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 100.187558634000084, 6.707963766000077 ], [ 100.212363322000044, 6.689179383000081 ], [ 100.273961630000088, 6.696259053000091 ], [ 100.329203735000078, 6.557766215000072 ], [ 100.377658989570648, 6.526754413285516 ], [ 100.36548139924713, 6.455756130341115 ], [ 100.214327833762468, 6.298969834790057 ], [ 100.198731966586095, 6.260527681200568 ], [ 100.152842644000032, 6.333929755000042 ], [ 100.127289259000065, 6.44228750200007 ], [ 100.14570072500004, 6.539524435000104 ], [ 100.16719812000008, 6.566137797000053 ], [ 100.164045858000122, 6.683727519000087 ], [ 100.187558634000084, 6.707963766000077 ] ] ], [ [ [ 99.786291611000081, 6.24182214800004 ], [ 99.800442449000059, 6.27281133200006 ], [ 99.83697849400005, 6.294227056000068 ], [ 99.826427831000046, 6.190674611000077 ], [ 99.805596483000045, 6.171792982000056 ], [ 99.767234416000065, 6.223804251000047 ], [ 99.786291611000081, 6.24182214800004 ] ] ], [ [ [ 99.900616598000056, 6.364303784000072 ], [ 99.916270379000082, 6.331529039000088 ], [ 99.865691780000077, 6.290526604000092 ], [ 99.844585942000037, 6.324685901000066 ], [ 99.825332550000041, 6.324098670000069 ], [ 99.728734603000078, 6.261475800000085 ], [ 99.719043692000071, 6.353230673000041 ], [ 99.658702019000032, 6.362616278000075 ], [ 99.645228060000079, 6.435840878000079 ], [ 99.77092667200003, 6.419841624000071 ], [ 99.814291611000044, 6.454036660000043 ], [ 99.83920332100007, 6.454820054000038 ], [ 99.842029096000033, 6.469639039000072 ], [ 99.91334069100003, 6.390204169000071 ], [ 99.900616598000056, 6.364303784000072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MY-02", "NAME_1": "Kedah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.377658989570648, 6.526754413285516 ], [ 100.46723148600006, 6.513221131000066 ], [ 100.630684041000109, 6.444775696000065 ], [ 100.729954468000074, 6.493196513000029 ], [ 100.733881877000044, 6.456377055000118 ], [ 100.796307007000109, 6.433949484000038 ], [ 100.805608765000045, 6.414803365000125 ], [ 100.832997274000093, 6.236674703000034 ], [ 100.855114787000048, 6.247914328000078 ], [ 100.910098511000115, 6.235796204000081 ], [ 100.974280640000075, 6.272615662000092 ], [ 101.023063192000109, 6.240989685000102 ], [ 101.081664266000132, 6.246467387000081 ], [ 101.091017700000066, 6.213161926000041 ], [ 101.089157349000061, 6.188848165000124 ], [ 101.053448934000073, 6.157609761000046 ], [ 101.052518759000122, 6.134562073000083 ], [ 101.094273315000066, 6.085753683000121 ], [ 101.078770386000031, 5.93816579200012 ], [ 101.071122274000061, 5.919846497000051 ], [ 101.015311727000096, 5.898349101000093 ], [ 100.967717733000086, 5.804117126000094 ], [ 100.972426655000049, 5.772852627000077 ], [ 100.954644402816882, 5.76634084735224 ], [ 100.984254999368659, 5.722105821026787 ], [ 100.969992303002357, 5.659112249830457 ], [ 100.928754511111777, 5.613326930793221 ], [ 100.949528435788636, 5.585163275964419 ], [ 100.936816033932757, 5.523099879855579 ], [ 100.878783400133784, 5.478012192808421 ], [ 100.852686801954292, 5.354117947285431 ], [ 100.755741815332442, 5.315567327869871 ], [ 100.686185337183531, 5.20725352652903 ], [ 100.563298781113815, 5.081550604976428 ], [ 100.517513462076579, 5.099094753020438 ], [ 100.503715854602945, 5.134234726851162 ], [ 100.546555616948126, 5.12919627508802 ], [ 100.559112990072379, 5.142761339464244 ], [ 100.5248515162844, 5.469175522732201 ], [ 100.533223098367273, 5.549790758136965 ], [ 100.35429595495971, 5.568982631344737 ], [ 100.344004754000082, 5.669256903000075 ], [ 100.37631269600007, 5.663316148000092 ], [ 100.38640384200005, 5.679103908000059 ], [ 100.36451256600003, 5.69407786700009 ], [ 100.375743035000028, 5.810939846000053 ], [ 100.349131707000026, 6.012681382000039 ], [ 100.247894727000073, 6.220770575000074 ], [ 100.198731966586095, 6.260527681200568 ], [ 100.214327833762468, 6.298969834790057 ], [ 100.36548139924713, 6.455756130341115 ], [ 100.377658989570648, 6.526754413285516 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MY-03", "NAME_1": "Kelantan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.784153686000082, 5.738100484000057 ], [ 101.912931356000115, 5.85930755600009 ], [ 101.934738810000113, 5.98172902400006 ], [ 102.060002482000073, 6.094797058000083 ], [ 102.073090040000068, 6.257513739000046 ], [ 102.163584832000026, 6.197495835000041 ], [ 102.187022332000026, 6.20343659100007 ], [ 102.183116082000026, 6.223049221000053 ], [ 102.166840040000068, 6.217962958000044 ], [ 102.178070509000065, 6.233628648000092 ], [ 102.199554884000065, 6.232814846000053 ], [ 102.31568444100003, 6.190375067000048 ], [ 102.379893425000034, 6.132961330000057 ], [ 102.499847852000073, 5.897406317000048 ], [ 102.542002800000034, 5.854763088000084 ], [ 102.386288282777969, 5.685958156843469 ], [ 102.4058219749042, 5.608443507761649 ], [ 102.394194776867437, 5.427265937273148 ], [ 102.440290155166508, 5.369388333105064 ], [ 102.412643264275175, 5.183973292933103 ], [ 102.528553501342969, 5.10607107202236 ], [ 102.503128696731949, 5.075814521223151 ], [ 102.513050572425925, 4.910398261170826 ], [ 102.550774366843541, 4.907917792472119 ], [ 102.636247185958837, 4.858256740755962 ], [ 102.665289340830384, 4.790612291424111 ], [ 102.660638461795543, 4.76841726344594 ], [ 102.606636591205699, 4.773920803202486 ], [ 102.602450800164263, 4.694545803046367 ], [ 102.55247969008559, 4.708214220210095 ], [ 102.50700442941087, 4.673926907101077 ], [ 102.450522089223, 4.712167467254801 ], [ 102.402876418212088, 4.718213609370537 ], [ 102.371973912266185, 4.703950913903554 ], [ 102.343293491701218, 4.644988105017035 ], [ 102.277044304550998, 4.662196357176128 ], [ 102.227693312995939, 4.636978258140061 ], [ 102.178962437266648, 4.663669135522184 ], [ 102.128836297557029, 4.721236681327753 ], [ 102.116123894801888, 4.759115505376258 ], [ 102.042588332085813, 4.733819891974406 ], [ 102.001453892083418, 4.762991238055179 ], [ 101.987346226247325, 4.752578436845397 ], [ 101.967605829445404, 4.762603665326878 ], [ 101.944506463902144, 4.673694363104346 ], [ 101.912053664345081, 4.617832140540827 ], [ 101.891899856393195, 4.670516262415561 ], [ 101.850300328397395, 4.694778347043098 ], [ 101.802034539762133, 4.763146266786748 ], [ 101.777694939869548, 4.743121650044088 ], [ 101.76715294834986, 4.635582994159847 ], [ 101.647987095328119, 4.561892401812884 ], [ 101.592589959858742, 4.560652167463559 ], [ 101.521483188997934, 4.599357814711368 ], [ 101.472907342899532, 4.570341498261541 ], [ 101.379062940802044, 4.612845363822487 ], [ 101.34335452708973, 4.681755885925384 ], [ 101.387899610878321, 4.709919542552825 ], [ 101.384954055085529, 4.750563056140095 ], [ 101.419060500141939, 4.793325304119492 ], [ 101.41058556527156, 4.830713201752872 ], [ 101.449032831000295, 4.854303493711257 ], [ 101.461435175392978, 4.888203233192655 ], [ 101.456474237096302, 4.940654811969978 ], [ 101.435080193895772, 4.974554552350696 ], [ 101.456629265827928, 4.995121772351922 ], [ 101.528821242306435, 5.2721849631655 ], [ 101.551300490225401, 5.275285549488501 ], [ 101.616929558852007, 5.359931545404493 ], [ 101.676357455731932, 5.33362824075067 ], [ 101.749893020246645, 5.368613185849824 ], [ 101.752373488045976, 5.49129303634453 ], [ 101.741366407633564, 5.509534817277995 ], [ 101.670466343247085, 5.518061428092437 ], [ 101.68736453704372, 5.581907660010472 ], [ 101.667520786555031, 5.612784329333294 ], [ 101.66442020113135, 5.658182073843648 ], [ 101.694392531090386, 5.694872341285532 ], [ 101.697566699943195, 5.767138300492149 ], [ 101.714752238000131, 5.782903951000037 ], [ 101.740022014000033, 5.782361349000084 ], [ 101.784153686000082, 5.738100484000057 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MY-08", "NAME_1": "Perak" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.972426655000049, 5.772852627000077 ], [ 100.998620239000047, 5.729548035000036 ], [ 101.05980513500009, 5.709575094000101 ], [ 101.122178589000043, 5.629890035000059 ], [ 101.212302287000114, 5.681514791000083 ], [ 101.248992554000097, 5.786986389000049 ], [ 101.557914266000125, 5.911345724000043 ], [ 101.634085327000037, 5.855586853000077 ], [ 101.630778036000038, 5.8284050500001 ], [ 101.665918009000052, 5.765592346000034 ], [ 101.699663526850259, 5.761147365958152 ], [ 101.694392531090386, 5.694872341285532 ], [ 101.66442020113135, 5.658182073843648 ], [ 101.667520786555031, 5.612784329333294 ], [ 101.68736453704372, 5.581907660010472 ], [ 101.66938113762933, 5.522247219133817 ], [ 101.750203077709841, 5.498579412809647 ], [ 101.749893020246645, 5.368613185849824 ], [ 101.676357455731932, 5.33362824075067 ], [ 101.616929558852007, 5.359931545404493 ], [ 101.551300490225401, 5.275285549488501 ], [ 101.528821242306435, 5.2721849631655 ], [ 101.456629265827928, 4.995121772351922 ], [ 101.435080193895772, 4.974554552350696 ], [ 101.456474237096302, 4.940654811969978 ], [ 101.461435175392978, 4.888203233192655 ], [ 101.449032831000295, 4.854303493711257 ], [ 101.41058556527156, 4.830713201752872 ], [ 101.419060500141939, 4.793325304119492 ], [ 101.384954055085529, 4.750563056140095 ], [ 101.387899610878321, 4.709919542552825 ], [ 101.34335452708973, 4.681755885925384 ], [ 101.379062940802044, 4.612845363822487 ], [ 101.362733188685695, 4.557913316346458 ], [ 101.386349318166481, 4.499725652916538 ], [ 101.341959263109459, 4.431461085960336 ], [ 101.370226271625086, 4.402444770409829 ], [ 101.445777215945725, 4.38203257914023 ], [ 101.433219842821472, 4.344179591714749 ], [ 101.452546827573997, 4.318418891218869 ], [ 101.465310907172579, 4.220569566132554 ], [ 101.51156131420322, 4.200880846174073 ], [ 101.52199995293546, 4.127319444137015 ], [ 101.550990431862886, 4.124683945807419 ], [ 101.584941848187725, 4.082025051514904 ], [ 101.560757277026653, 4.004200344070625 ], [ 101.601426629934963, 3.867025255011526 ], [ 101.598946161236313, 3.797597968071784 ], [ 101.626851433646721, 3.771759752310686 ], [ 101.520656365798629, 3.675615750466477 ], [ 101.370226271625086, 3.793463852974412 ], [ 101.336688267349643, 3.789588121194811 ], [ 101.325836215668801, 3.769253445190316 ], [ 101.345059849432459, 3.720548406983369 ], [ 101.337463413705564, 3.689516709828297 ], [ 101.265633173332219, 3.668251857836935 ], [ 101.240466750240273, 3.716672675203768 ], [ 101.174941034401172, 3.715174058436048 ], [ 101.132773064725143, 3.752587795390411 ], [ 101.08068322115372, 3.730315253046456 ], [ 101.081716749928034, 3.74793691725489 ], [ 101.10435102657857, 3.750572415584486 ], [ 101.092465447922052, 3.776333116080423 ], [ 101.061717970707718, 3.753130397749658 ], [ 101.058462355653148, 3.78571238941521 ], [ 101.019808384349403, 3.800233466401323 ], [ 100.968442011189836, 3.773155015391637 ], [ 100.976245151592423, 3.806279609416436 ], [ 100.943327264041955, 3.833280544261697 ], [ 100.939451532262353, 3.861056627261519 ], [ 100.78484134200005, 3.839341539000088 ], [ 100.720713738000029, 3.868068752000056 ], [ 100.700694207000026, 3.917222398000092 ], [ 100.70630944100003, 3.983587958000044 ], [ 100.801524285000028, 3.991115627000056 ], [ 100.834646030000044, 4.018540757000039 ], [ 100.871429884000065, 4.018866278000075 ], [ 100.861501498000052, 4.040350653000075 ], [ 100.777598504000082, 4.021389065000051 ], [ 100.765879754000082, 4.099839585000041 ], [ 100.677744988000029, 4.165187893000052 ], [ 100.632578972000033, 4.155462958000044 ], [ 100.622569207000026, 4.175848700000074 ], [ 100.615244988000029, 4.251654364000046 ], [ 100.565440300000034, 4.319159247000073 ], [ 100.645518425000034, 4.560044664000088 ], [ 100.59734134200005, 4.571926174000055 ], [ 100.594411655000044, 4.610907294000071 ], [ 100.616953972000033, 4.638251044000071 ], [ 100.632578972000033, 4.629055080000057 ], [ 100.666188998000052, 4.669907945000091 ], [ 100.604177280000044, 4.665838934000078 ], [ 100.594493035000028, 4.743068752000056 ], [ 100.632578972000033, 4.75812409100007 ], [ 100.612071160000028, 4.772365627000056 ], [ 100.617360873000052, 4.792914130000042 ], [ 100.576182488000029, 4.799261786000045 ], [ 100.57740319100003, 4.854315497000073 ], [ 100.55005944100003, 4.875433661000045 ], [ 100.494395379000082, 4.872259833000044 ], [ 100.51531009200005, 4.889064846000053 ], [ 100.51099694100003, 4.906927802000041 ], [ 100.48170006600003, 4.924709377000056 ], [ 100.453868035000028, 4.90892161700009 ], [ 100.441579623000052, 4.922837632000039 ], [ 100.36451256600003, 5.08429596600007 ], [ 100.404096640599349, 5.120176955359527 ], [ 100.491003452747123, 5.138808092419538 ], [ 100.517513462076579, 5.099094753020438 ], [ 100.570946892784832, 5.08449616076922 ], [ 100.686185337183531, 5.20725352652903 ], [ 100.755741815332442, 5.315567327869871 ], [ 100.852686801954292, 5.354117947285431 ], [ 100.878783400133784, 5.478012192808421 ], [ 100.895061477205388, 5.500129706420807 ], [ 100.917902460330254, 5.500207220786592 ], [ 100.943327264041955, 5.538008531368632 ], [ 100.949528435788636, 5.585163275964419 ], [ 100.928754511111777, 5.613326930793221 ], [ 100.969992303002357, 5.659112249830457 ], [ 100.984254999368659, 5.722105821026787 ], [ 100.954644402816882, 5.76634084735224 ], [ 100.972426655000049, 5.772852627000077 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MY-13", "NAME_1": "Sarawak" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.346271607000119, 4.313768820000064 ], [ 115.358260539000071, 4.350278219000074 ], [ 115.285603475000016, 4.435363465000094 ], [ 115.272477662000085, 4.474663391000078 ], [ 115.272684367000011, 4.636772359000119 ], [ 115.207365357000072, 4.825598043000127 ], [ 115.146800578000011, 4.885620219000131 ], [ 115.14616946700005, 4.908514716000127 ], [ 115.189463738000086, 4.917466539000088 ], [ 115.21062259200005, 4.95970286700009 ], [ 115.238617384, 4.937323309000078 ], [ 115.285329623000052, 4.931219794000071 ], [ 115.30396569100003, 4.906154690000051 ], [ 115.342295769000089, 4.899807033000059 ], [ 115.421561803458914, 4.962329459971157 ], [ 115.622482945231695, 4.957811388185007 ], [ 115.658501418205788, 4.824822089267968 ], [ 115.558094110055094, 4.581581121771364 ], [ 115.560109490760397, 4.496935125855373 ], [ 115.590650263298926, 4.388104560577005 ], [ 115.654263951220287, 4.353481349784431 ], [ 115.675399611103103, 4.312450263468861 ], [ 115.62790896972308, 4.220827948550948 ], [ 115.639134330884644, 4.145949698020161 ], [ 115.609511352000027, 3.996914774000075 ], [ 115.580985962, 3.946917827000078 ], [ 115.538817994000055, 3.920614522000037 ], [ 115.538301229000012, 3.897825216000044 ], [ 115.588634074000083, 3.857595113000116 ], [ 115.544399048000059, 3.629159445000141 ], [ 115.601243124, 3.43023101900009 ], [ 115.58501672400007, 3.416820984000054 ], [ 115.557214803000136, 3.425450948000091 ], [ 115.517630656000051, 3.357160543000049 ], [ 115.482800741, 3.206472066000103 ], [ 115.517010539000012, 3.157276103000129 ], [ 115.482180624000137, 3.110974020000057 ], [ 115.464093873000024, 3.030823873000074 ], [ 115.309994751000147, 2.98591705300008 ], [ 115.24209192, 3.041624247000101 ], [ 115.207985474000054, 2.98069773400006 ], [ 115.122822714000108, 2.912949931000057 ], [ 115.069079224, 2.832644755000032 ], [ 115.104632610000067, 2.761486308000087 ], [ 115.056986939000012, 2.711256816000045 ], [ 115.071869752000055, 2.671827698000129 ], [ 115.056470175000072, 2.608627422000069 ], [ 115.071456340000054, 2.594623108000064 ], [ 115.114967896000053, 2.607903951000068 ], [ 115.151968221000118, 2.597051900000025 ], [ 115.192379192000089, 2.55105987600011 ], [ 115.20612512200006, 2.509873759000129 ], [ 115.192689250000058, 2.490546773000077 ], [ 115.105046021000078, 2.465690409000032 ], [ 114.972961060000102, 2.35747996000012 ], [ 114.922214803000088, 2.353914287000052 ], [ 114.913326457000096, 2.28404775000007 ], [ 114.778761027000087, 2.24720245400006 ], [ 114.753026164000119, 2.134806213000033 ], [ 114.780621379000138, 2.036052552000086 ], [ 114.841082805000042, 2.038222962000077 ], [ 114.831987753000078, 1.902520650000014 ], [ 114.679542277, 1.840741476000119 ], [ 114.669000285000095, 1.694006246000058 ], [ 114.624455201000103, 1.59879242000008 ], [ 114.563166952000131, 1.536393128000029 ], [ 114.568024537000042, 1.469394633000121 ], [ 114.545596965000072, 1.434952291000073 ], [ 114.50063846900008, 1.436037496000068 ], [ 114.37485803300001, 1.506937562000118 ], [ 114.173423299000149, 1.420508728000044 ], [ 114.094255005000036, 1.465673930000108 ], [ 113.909666789000084, 1.442471212000015 ], [ 113.868222290000119, 1.415496114000078 ], [ 113.808174276000102, 1.339712626000093 ], [ 113.624826295000105, 1.22757476800011 ], [ 113.524470662000056, 1.313564351000082 ], [ 113.397553345000063, 1.293927307000047 ], [ 113.323656047000156, 1.351391500000062 ], [ 113.158601522000026, 1.388159281000057 ], [ 113.089045044000102, 1.431334940000085 ], [ 112.958200318000081, 1.415651143000034 ], [ 113.024346151000032, 1.514378968000045 ], [ 113.014114217000042, 1.550785014000041 ], [ 112.97318648300012, 1.56985361800011 ], [ 112.854950806000033, 1.582721049000028 ], [ 112.801517375, 1.543782858000043 ], [ 112.470478150000133, 1.567657369000116 ], [ 112.398544556000104, 1.523344828000077 ], [ 112.295191692, 1.503811137000071 ], [ 112.161556437000115, 1.434538880000062 ], [ 112.15411503100006, 1.409527486000059 ], [ 112.181813599000122, 1.40001902200008 ], [ 112.187394653000126, 1.379658508000134 ], [ 112.092930135000074, 1.143135478000076 ], [ 111.910098918000074, 1.114041646000075 ], [ 111.823075806000134, 1.008466695000081 ], [ 111.762821086000088, 0.993015442000086 ], [ 111.622674601000085, 1.03027415000011 ], [ 111.538855429000137, 0.997717997000066 ], [ 111.503198690000033, 0.958443909000096 ], [ 111.4720894780001, 1.02221262700003 ], [ 111.374110962000032, 1.007536519000041 ], [ 111.197584270000107, 1.075232646000117 ], [ 110.97341190700007, 1.0177167760001 ], [ 110.880394329000126, 1.010533753000047 ], [ 110.796988566000039, 0.949658915000015 ], [ 110.776731405000135, 0.903253479000099 ], [ 110.758334595000065, 0.914518941000068 ], [ 110.704177694000123, 0.901393127000091 ], [ 110.66128625500005, 0.872144267000053 ], [ 110.61343387900007, 0.893951721000079 ], [ 110.553902629000106, 0.851370341000106 ], [ 110.460264933000076, 0.879740703000024 ], [ 110.364146769000058, 0.981388245000034 ], [ 110.263481079000087, 0.994307353000039 ], [ 110.256556437000029, 1.039059144000092 ], [ 110.170360149000089, 1.17445139600008 ], [ 110.07455204300004, 1.198635966000055 ], [ 110.012126912000099, 1.270517883000082 ], [ 109.963757772000065, 1.298578186000015 ], [ 109.920246216000123, 1.394773865000047 ], [ 109.842834920000087, 1.403274638000056 ], [ 109.8005635990001, 1.466759135000103 ], [ 109.77555220500011, 1.457948303000109 ], [ 109.766353801000037, 1.496473084000087 ], [ 109.646981242000095, 1.617628479000103 ], [ 109.641813599000102, 1.781003520000084 ], [ 109.566986125000028, 1.792553203000125 ], [ 109.539804322000066, 1.826556295000074 ], [ 109.529365682000048, 1.905156149000035 ], [ 109.600265747000094, 1.98313588500011 ], [ 109.645274285000028, 2.083238023000092 ], [ 109.663584832000026, 1.98305898600006 ], [ 109.654633009000065, 1.936997789000088 ], [ 109.69304446700005, 1.873114325000074 ], [ 109.886729363000029, 1.760199286000045 ], [ 109.927744988000029, 1.692287502000056 ], [ 110.16765384200005, 1.701849677000041 ], [ 110.211680535000028, 1.682033596000053 ], [ 110.254161004000025, 1.706203518000052 ], [ 110.290782097000033, 1.673976955000057 ], [ 110.30787194100003, 1.70929596600007 ], [ 110.301036004000025, 1.770738023000092 ], [ 110.32935631600003, 1.802557684000078 ], [ 110.34302819100003, 1.79751211100006 ], [ 110.36646569100003, 1.715887762000079 ], [ 110.390147332000026, 1.699042059000078 ], [ 110.42115319100003, 1.695705471000053 ], [ 110.443614129000025, 1.718695380000042 ], [ 110.507985873000052, 1.740912177000041 ], [ 110.52076256600003, 1.72296784100007 ], [ 110.465586785000028, 1.62055084800005 ], [ 110.506358269000032, 1.633002020000049 ], [ 110.536306186000047, 1.596869208000044 ], [ 110.589040561000047, 1.606268622000073 ], [ 110.726735873000052, 1.547430731000077 ], [ 110.733409050000034, 1.49868398600006 ], [ 110.677907748000052, 1.448635158000059 ], [ 110.725108269000032, 1.453111070000091 ], [ 110.763438347000033, 1.479681708000044 ], [ 110.766612175000034, 1.551662502000056 ], [ 110.793304884000065, 1.572414455000057 ], [ 110.839610222000033, 1.565985419000071 ], [ 110.924815300000034, 1.531195380000042 ], [ 111.043955925000034, 1.426947333000044 ], [ 111.14193769600007, 1.371527411000045 ], [ 111.232676629000025, 1.394598700000074 ], [ 111.340586785000028, 1.333319403000075 ], [ 111.383555535000028, 1.353664455000057 ], [ 111.32553144600007, 1.367336330000057 ], [ 111.304698113000029, 1.407619533000059 ], [ 111.26099694100003, 1.419907945000091 ], [ 111.19849694100003, 1.401434637000079 ], [ 111.157969597000033, 1.406154690000051 ], [ 111.048350457000026, 1.476548570000091 ], [ 111.006846550000034, 1.555080471000053 ], [ 111.037852410000028, 1.676947333000044 ], [ 111.117523634000065, 1.688869533000059 ], [ 111.179453972000033, 1.627020575000074 ], [ 111.215098504000025, 1.639837958000044 ], [ 111.24577884200005, 1.621323960000041 ], [ 111.267425977000073, 1.627346096000053 ], [ 111.172862175000034, 1.659369208000044 ], [ 111.158213738000029, 1.692287502000056 ], [ 111.126149936000047, 1.706610419000071 ], [ 111.096039259000065, 1.774481512000079 ], [ 111.13021894600007, 1.791896877000056 ], [ 111.109873894000032, 1.815415757000039 ], [ 111.113129102000073, 1.835516669000071 ], [ 111.175303582000026, 1.953192450000074 ], [ 111.205902540000068, 2.06899648600006 ], [ 111.267832879000025, 2.067531643000052 ], [ 111.24187259200005, 2.089422919000071 ], [ 111.253916863000029, 2.126125393000052 ], [ 111.336436394000032, 2.112127997000073 ], [ 111.377940300000034, 2.161810614000046 ], [ 111.35678144600007, 2.166205145000049 ], [ 111.329112175000034, 2.128729559000078 ], [ 111.270518425000034, 2.153794664000088 ], [ 111.184743686000047, 2.145086981000077 ], [ 111.18482506600003, 2.19476959800005 ], [ 111.21998131600003, 2.220404364000046 ], [ 111.240082227000073, 2.216376044000071 ], [ 111.18482506600003, 2.253648179000038 ], [ 111.220957879000025, 2.416083075000074 ], [ 111.246348504000025, 2.436102606000077 ], [ 111.365489129000025, 2.340765692000048 ], [ 111.448252800000034, 2.372381903000075 ], [ 111.49341881600003, 2.346136786000045 ], [ 111.424164259000065, 2.427232164000088 ], [ 111.404551629000025, 2.483954169000071 ], [ 111.487315300000034, 2.473944403000075 ], [ 111.521250847000033, 2.490708726000094 ], [ 111.461680535000028, 2.508002020000049 ], [ 111.422862175000034, 2.539618231000077 ], [ 111.41765384200005, 2.57953522300005 ], [ 111.440277540000068, 2.680121161000045 ], [ 111.529795769000032, 2.760687567000048 ], [ 111.66960696700005, 2.843085028000075 ], [ 111.86060631600003, 2.880601304000038 ], [ 112.013519727000016, 2.885931708000044 ], [ 112.727305535000028, 3.066107489000046 ], [ 113.007823113000086, 3.161688544000071 ], [ 113.082286004000025, 3.256781317000048 ], [ 113.069346550000091, 3.278998114000046 ], [ 113.162119988000086, 3.353461005000042 ], [ 113.199554884, 3.415513414000088 ], [ 113.277598504000025, 3.484198309000078 ], [ 113.308116082000083, 3.55931224200009 ], [ 113.391449415000011, 3.648342190000051 ], [ 113.434255405000044, 3.753159898000092 ], [ 113.736827019000089, 4.001288153000075 ], [ 113.946787957000083, 4.273830471000053 ], [ 113.967784050000091, 4.322170315000051 ], [ 113.96062259200005, 4.361517645000049 ], [ 113.992198113000086, 4.437079169000071 ], [ 113.97584069100003, 4.594712632000039 ], [ 113.998789910000028, 4.601141669000071 ], [ 114.118956340000068, 4.561634827000105 ], [ 114.209080038000025, 4.508149719000073 ], [ 114.216728149, 4.487660014000099 ], [ 114.24556359900015, 4.481433004000024 ], [ 114.289901978000103, 4.361311137000072 ], [ 114.296723267000061, 4.316662700000052 ], [ 114.276259400000072, 4.289015808000045 ], [ 114.282667277000144, 4.264908753000086 ], [ 114.419919882000045, 4.26012868300009 ], [ 114.477384075000032, 4.144967753000088 ], [ 114.569368124000107, 4.064404195000108 ], [ 114.586628052000037, 4.021435242000038 ], [ 114.627762492000102, 4.016681010000042 ], [ 114.766875448000064, 4.131816101000112 ], [ 114.817208293000078, 4.259663595000063 ], [ 114.813797649000151, 4.277104391000094 ], [ 114.782585084000061, 4.264417826000056 ], [ 114.781964966000089, 4.284933370000118 ], [ 114.828990519000058, 4.340485535000113 ], [ 114.845630331000109, 4.395107524000068 ], [ 114.847904094, 4.423736268000127 ], [ 114.806046183000035, 4.433322246000046 ], [ 114.788166138000065, 4.46120168000003 ], [ 114.773903442, 4.636824036000036 ], [ 114.74196740800005, 4.729454040000107 ], [ 114.855758911000066, 4.806658630000086 ], [ 114.948363078000114, 4.818931783000025 ], [ 114.958905070000071, 4.866293234000082 ], [ 115.015798373000052, 4.916408596000053 ], [ 115.026807902000087, 4.660026754000043 ], [ 115.07982792200005, 4.503963928000132 ], [ 115.091816854000058, 4.405416972000069 ], [ 115.16995162, 4.36125946000007 ], [ 115.220697876000088, 4.359760844000064 ], [ 115.346271607000119, 4.313768820000064 ] ] ], [ [ [ 111.41138756600003, 2.391099351000094 ], [ 111.410492384000065, 2.372219143000052 ], [ 111.390961134000065, 2.382147528000075 ], [ 111.369883660000028, 2.359808661000045 ], [ 111.342621290000068, 2.413885809000078 ], [ 111.312673373000052, 2.431341864000046 ], [ 111.31763756600003, 2.536769924000055 ], [ 111.299001498000052, 2.702704169000071 ], [ 111.315440300000034, 2.784491278000075 ], [ 111.349945509000065, 2.771307684000078 ], [ 111.381032748000052, 2.69790273600006 ], [ 111.381846550000034, 2.523342190000051 ], [ 111.41138756600003, 2.391099351000094 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MY-07", "NAME_1": "Pulau Pinang" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 100.404096640599349, 5.120176955359527 ], [ 100.43091881600003, 5.190619208000044 ], [ 100.418955925000034, 5.248480536000045 ], [ 100.43327884200005, 5.290025132000039 ], [ 100.38021894600007, 5.390692450000074 ], [ 100.384938998000052, 5.499253648000092 ], [ 100.35429595495971, 5.568982631344737 ], [ 100.533223098367273, 5.549790758136965 ], [ 100.5248515162844, 5.469175522732201 ], [ 100.558337843716458, 5.138498033157703 ], [ 100.404096640599349, 5.120176955359527 ] ] ], [ [ [ 100.30982506600003, 5.450751044000071 ], [ 100.34343509200005, 5.417629299000055 ], [ 100.28874759200005, 5.262681382000039 ], [ 100.184336785000028, 5.268540757000039 ], [ 100.196136915000068, 5.299994208000044 ], [ 100.179453972000033, 5.458197333000044 ], [ 100.21062259200005, 5.44399648600006 ], [ 100.234711134000065, 5.464504299000055 ], [ 100.274099155000044, 5.468491929000038 ], [ 100.30982506600003, 5.450751044000071 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MY-10", "NAME_1": "Selangor" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.721200959872078, 2.595849968106314 ], [ 101.67351321700005, 2.62726471600007 ], [ 101.54232832100007, 2.661281643000052 ], [ 101.502777540000068, 2.689398505000042 ], [ 101.399180535000028, 2.81907786700009 ], [ 101.28638756600003, 2.849676825000074 ], [ 101.303477410000028, 2.89484284100007 ], [ 101.281016472000033, 2.897853908000059 ], [ 101.283050977000073, 2.911200262000079 ], [ 101.372813347000033, 3.002346096000053 ], [ 101.365000847000033, 3.076361395000049 ], [ 101.323415561000047, 3.12445709800005 ], [ 101.297618035000028, 3.274603583000044 ], [ 101.23568769600007, 3.344142971000053 ], [ 101.197601759000065, 3.359320380000042 ], [ 101.108409050000034, 3.473944403000075 ], [ 101.040537957000026, 3.621975002000056 ], [ 100.933604363000029, 3.689276434000078 ], [ 100.886485222000033, 3.756333726000094 ], [ 100.812266472000033, 3.78656647300005 ], [ 100.840569109665239, 3.842807661109986 ], [ 100.939451532262353, 3.861056627261519 ], [ 100.943327264041955, 3.833280544261697 ], [ 100.976245151592423, 3.806279609416436 ], [ 100.968442011189836, 3.773155015391637 ], [ 101.019808384349403, 3.800233466401323 ], [ 101.058462355653148, 3.78571238941521 ], [ 101.061717970707718, 3.753130397749658 ], [ 101.092465447922052, 3.776333116080423 ], [ 101.10435102657857, 3.750572415584486 ], [ 101.081716749928034, 3.74793691725489 ], [ 101.08068322115372, 3.730315253046456 ], [ 101.132773064725143, 3.752587795390411 ], [ 101.174941034401172, 3.715174058436048 ], [ 101.240466750240273, 3.716672675203768 ], [ 101.265633173332219, 3.668251857836935 ], [ 101.337463413705564, 3.689516709828297 ], [ 101.345059849432459, 3.720548406983369 ], [ 101.3250610702122, 3.766230374132476 ], [ 101.334052769020047, 3.787727769221135 ], [ 101.361699659911324, 3.794471544226383 ], [ 101.442004836054309, 3.746851710737872 ], [ 101.510631138216411, 3.675925807929673 ], [ 101.543238967404363, 3.688819077838161 ], [ 101.626851433646721, 3.771759752310686 ], [ 101.668140904179324, 3.715742499216958 ], [ 101.771648797753755, 3.668949489827071 ], [ 101.813971796161411, 3.588489284952516 ], [ 101.7656026547387, 3.499502468364199 ], [ 101.785911493220794, 3.425786038494891 ], [ 101.764982538013669, 3.373256944452407 ], [ 101.830301548277816, 3.289153550895662 ], [ 101.933499384389052, 3.249052638768262 ], [ 101.961714716061238, 3.142521674135935 ], [ 101.964505243122403, 3.037075914222044 ], [ 101.942025995203494, 3.017619737360974 ], [ 101.931328973153541, 2.965943304939572 ], [ 101.902545200700388, 2.939407457188395 ], [ 101.879962599993974, 2.871039537444688 ], [ 101.855106236163806, 2.856776841977648 ], [ 101.759504835779524, 2.862822984093441 ], [ 101.772578972841302, 2.738153591315154 ], [ 101.721200959872078, 2.595849968106314 ] ], [ [ 101.716406691015948, 3.206135362057296 ], [ 101.665143670643829, 3.231741033821663 ], [ 101.621735468417114, 3.178824367950199 ], [ 101.62607628819012, 3.14050629343069 ], [ 101.665350376218839, 3.085884304317176 ], [ 101.662094761164269, 3.040744941325954 ], [ 101.727878859421764, 3.026921495430656 ], [ 101.751960076896012, 3.052217108832508 ], [ 101.741831495626968, 3.126321112329435 ], [ 101.763122186039993, 3.175956326523249 ], [ 101.746172316299294, 3.214687812192778 ], [ 101.716406691015948, 3.206135362057296 ] ], [ [ 101.681473422760234, 2.874243476555193 ], [ 101.730359328120471, 2.928865464769387 ], [ 101.712996047229751, 2.981213690759205 ], [ 101.671551547965521, 2.960362249917864 ], [ 101.66690066893068, 2.893932196513674 ], [ 101.681473422760234, 2.874243476555193 ] ] ], [ [ [ 101.27116946700005, 3.046454169000071 ], [ 101.259613477000073, 3.030218817000048 ], [ 101.236989780000044, 3.035060940000051 ], [ 101.262868686000047, 3.056341864000046 ], [ 101.27116946700005, 3.046454169000071 ] ] ], [ [ [ 101.337657097000033, 3.051825262000079 ], [ 101.33529707100007, 3.009019273000092 ], [ 101.268077019000032, 2.96515534100007 ], [ 101.30591881600003, 3.063950914000088 ], [ 101.32349694100003, 3.071112372000073 ], [ 101.337657097000033, 3.051825262000079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MY-05", "NAME_1": "Negeri Sembilan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.98846643739526, 2.391327968722818 ], [ 101.926768425000034, 2.422430731000077 ], [ 101.865244988000029, 2.394517320000091 ], [ 101.851084832000026, 2.478949286000045 ], [ 101.803233269000032, 2.518011786000045 ], [ 101.783050977000073, 2.575873114000046 ], [ 101.721200959872078, 2.595849968106314 ], [ 101.772578972841302, 2.738153591315154 ], [ 101.759504835779524, 2.862822984093441 ], [ 101.855106236163806, 2.856776841977648 ], [ 101.879962599993974, 2.871039537444688 ], [ 101.902545200700388, 2.939407457188395 ], [ 101.931328973153541, 2.965943304939572 ], [ 101.942025995203494, 3.017619737360974 ], [ 101.963420038404024, 3.033045151912233 ], [ 101.945746698251469, 3.22127655756708 ], [ 101.915981072968123, 3.26060232243924 ], [ 101.933654413120621, 3.283417467142385 ], [ 102.000213657734093, 3.228485418767036 ], [ 102.0492545918259, 3.223291938272325 ], [ 102.069046664571886, 3.171693020216708 ], [ 102.130231560637981, 3.194508164919853 ], [ 102.304484490766583, 3.131979681716928 ], [ 102.388613722745049, 3.117923691824899 ], [ 102.46633507740188, 3.029246934498417 ], [ 102.668079868790869, 2.891839301442587 ], [ 102.687303500755888, 2.896490180477429 ], [ 102.704563429758423, 2.839000149037645 ], [ 102.634076775622646, 2.633870551384803 ], [ 102.641983269712114, 2.604931749300761 ], [ 102.619504021793148, 2.5613943549655 ], [ 102.621054315404308, 2.481347561240966 ], [ 102.599350213841262, 2.421738796308375 ], [ 102.456568231338736, 2.454889227855574 ], [ 102.383652785347749, 2.487858792249426 ], [ 102.267277460286493, 2.463338324304232 ], [ 102.180357701246862, 2.492277126388274 ], [ 102.14966189997665, 2.467524115345611 ], [ 102.074679397336297, 2.4596176212562 ], [ 102.060881788963343, 2.427268175385962 ], [ 102.046464064764734, 2.43765513817408 ], [ 101.98846643739526, 2.391327968722818 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MY-04", "NAME_1": "Melaka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.488889968243498, 2.092976851215032 ], [ 102.154307488000029, 2.235663153000075 ], [ 102.051280144000032, 2.340887762000079 ], [ 101.999034050000034, 2.36163971600007 ], [ 101.98846643739526, 2.391327968722818 ], [ 102.046464064764734, 2.43765513817408 ], [ 102.060881788963343, 2.427268175385962 ], [ 102.074679397336297, 2.4596176212562 ], [ 102.14966189997665, 2.467524115345611 ], [ 102.180357701246862, 2.492277126388274 ], [ 102.267277460286493, 2.463338324304232 ], [ 102.383652785347749, 2.487858792249426 ], [ 102.456568231338736, 2.454889227855574 ], [ 102.599350213841262, 2.421738796308375 ], [ 102.54689863506394, 2.390397039891468 ], [ 102.519716831266692, 2.349753526304198 ], [ 102.502043492013513, 2.233765773971299 ], [ 102.480597771969542, 2.207850042945097 ], [ 102.488245883640559, 2.189608262911008 ], [ 102.535374789814682, 2.171056422715708 ], [ 102.536511672275822, 2.136536567408655 ], [ 102.488889968243498, 2.092976851215032 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MY-01", "NAME_1": "Johor" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.64031009200005, 2.671291408000059 ], [ 103.71615644600007, 2.641546942000048 ], [ 103.765147332000026, 2.648911851000094 ], [ 103.767100457000026, 2.623846747000073 ], [ 103.813975457000026, 2.58148834800005 ], [ 103.839691602000073, 2.52484772300005 ], [ 103.837657097000033, 2.463812567000048 ], [ 103.948985222000033, 2.339911200000074 ], [ 103.98365319100003, 2.253648179000038 ], [ 103.976410352000073, 2.192368882000039 ], [ 104.112803582000026, 1.976141669000071 ], [ 104.12427819100003, 1.87055084800005 ], [ 104.149180535000028, 1.837469794000071 ], [ 104.167491082000026, 1.847072658000059 ], [ 104.195323113000029, 1.798732815000051 ], [ 104.25521894600007, 1.637762762000079 ], [ 104.293711785000028, 1.471584377000056 ], [ 104.277354363000029, 1.367336330000057 ], [ 104.23959394600007, 1.367336330000057 ], [ 104.219248894000032, 1.346177476000094 ], [ 104.174082879000082, 1.348211981000077 ], [ 104.106211785000028, 1.375189520000049 ], [ 104.100596550000034, 1.418850002000056 ], [ 104.064952019000032, 1.448635158000059 ], [ 104.059418165000068, 1.485337632000039 ], [ 104.147634311000047, 1.545396226000094 ], [ 104.111175977000073, 1.545070705000057 ], [ 104.053396030000044, 1.506293036000045 ], [ 104.012217644000032, 1.596869208000044 ], [ 103.965993686000047, 1.647853908000059 ], [ 103.97038821700005, 1.608628648000092 ], [ 104.008311394000032, 1.548732815000051 ], [ 104.009776238000029, 1.448635158000059 ], [ 103.974457227000073, 1.419826565000051 ], [ 103.839691602000073, 1.476548570000091 ], [ 103.753103061000047, 1.448635158000059 ], [ 103.697601759000065, 1.45062897300005 ], [ 103.600108269000032, 1.353461005000042 ], [ 103.564707879000082, 1.359849351000094 ], [ 103.547862175000034, 1.382066148000092 ], [ 103.54851321700005, 1.331691799000055 ], [ 103.516368035000028, 1.270453192000048 ], [ 103.454844597000033, 1.339422919000071 ], [ 103.413910352000073, 1.467840887000079 ], [ 103.367360873000052, 1.538397528000075 ], [ 103.206065300000034, 1.610419012000079 ], [ 103.037119988000029, 1.715521552000041 ], [ 102.934580925000034, 1.747544664000088 ], [ 102.83562259200005, 1.845648505000042 ], [ 102.804453972000033, 1.86009349200009 ], [ 102.738780144000032, 1.846625067000048 ], [ 102.699392123000052, 1.859442450000074 ], [ 102.650645379000082, 1.940904039000088 ], [ 102.557627800000034, 2.018744208000044 ], [ 102.557302280000044, 2.045111395000049 ], [ 102.488889968243498, 2.092976851215032 ], [ 102.536511672275822, 2.136536567408655 ], [ 102.535374789814682, 2.171056422715708 ], [ 102.488245883640559, 2.189608262911008 ], [ 102.480597771969542, 2.207850042945097 ], [ 102.502043492013513, 2.233765773971299 ], [ 102.519716831266692, 2.349753526304198 ], [ 102.54689863506394, 2.390397039891468 ], [ 102.599350213841262, 2.421738796308375 ], [ 102.620124139417442, 2.475973211794269 ], [ 102.619504021793148, 2.5613943549655 ], [ 102.641983269712114, 2.604931749300761 ], [ 102.634076775622646, 2.633870551384803 ], [ 102.704563429758423, 2.839000149037645 ], [ 102.814427524710482, 2.794713445868808 ], [ 102.992091098625281, 2.595242418502778 ], [ 103.154975214034835, 2.529354967457778 ], [ 103.364471469882403, 2.593898831365948 ], [ 103.618512811317146, 2.445949204991791 ], [ 103.636031121838755, 2.494835110352028 ], [ 103.602389763876431, 2.530827744904514 ], [ 103.623938836707907, 2.602141222239595 ], [ 103.600219354439616, 2.632397773038804 ], [ 103.64031009200005, 2.671291408000059 ] ] ], [ [ [ 104.222666863000029, 2.785589911000045 ], [ 104.225108269000032, 2.735907294000071 ], [ 104.210785352000073, 2.715073960000041 ], [ 104.15748131600003, 2.713283596000053 ], [ 104.130625847000033, 2.745794989000046 ], [ 104.126963738000029, 2.785589911000045 ], [ 104.160329623000052, 2.817857164000088 ], [ 104.153819207000026, 2.864081122000073 ], [ 104.170664910000028, 2.891099351000094 ], [ 104.186208530000044, 2.885321356000077 ], [ 104.222666863000029, 2.785589911000045 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MY-06", "NAME_1": "Pahang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.442800326000054, 4.168972072000088 ], [ 103.40398196700005, 4.131822007000039 ], [ 103.394053582000026, 4.098618882000039 ], [ 103.437998894000032, 3.975043036000045 ], [ 103.434336785000028, 3.950018622000073 ], [ 103.411631707000026, 3.963934637000079 ], [ 103.394704623000052, 3.93500397300005 ], [ 103.378428582000026, 3.802435614000046 ], [ 103.351084832000026, 3.789211330000057 ], [ 103.339610222000033, 3.738348700000074 ], [ 103.387217644000032, 3.624741929000038 ], [ 103.46216881600003, 3.534125067000048 ], [ 103.448008660000028, 3.504950262000079 ], [ 103.482188347000033, 3.511786200000074 ], [ 103.428070509000065, 3.367173570000091 ], [ 103.456065300000034, 3.20376211100006 ], [ 103.434580925000034, 2.961818752000056 ], [ 103.473643425000034, 2.85101959800005 ], [ 103.64031009200005, 2.671291408000059 ], [ 103.600219354439616, 2.632397773038804 ], [ 103.623938836707907, 2.602141222239595 ], [ 103.602389763876431, 2.530827744904514 ], [ 103.636031121838755, 2.494835110352028 ], [ 103.618512811317146, 2.445949204991791 ], [ 103.364471469882403, 2.593898831365948 ], [ 103.154975214034835, 2.529354967457778 ], [ 102.992091098625281, 2.595242418502778 ], [ 102.814427524710482, 2.794713445868808 ], [ 102.704563429758423, 2.839000149037645 ], [ 102.687303500755888, 2.896490180477429 ], [ 102.668079868790869, 2.891839301442587 ], [ 102.46633507740188, 3.029246934498417 ], [ 102.388613722745049, 3.117923691824899 ], [ 102.304484490766583, 3.131979681716928 ], [ 102.130231560637981, 3.194508164919853 ], [ 102.069046664571886, 3.171693020216708 ], [ 102.0492545918259, 3.223291938272325 ], [ 102.000213657734093, 3.228485418767036 ], [ 101.948537225312634, 3.277991440852304 ], [ 101.933654413120621, 3.283417467142385 ], [ 101.915981072968123, 3.26060232243924 ], [ 101.830301548277816, 3.289153550895662 ], [ 101.764982538013669, 3.373256944452407 ], [ 101.785911493220794, 3.425786038494891 ], [ 101.7656026547387, 3.499502468364199 ], [ 101.80549686129109, 3.553194281490903 ], [ 101.813351677637797, 3.597636013391309 ], [ 101.771648797753755, 3.668949489827071 ], [ 101.668140904179324, 3.715742499216958 ], [ 101.601271600304074, 3.792378648255976 ], [ 101.601426629934963, 3.867025255011526 ], [ 101.560757277026653, 4.004200344070625 ], [ 101.584941848187725, 4.082025051514904 ], [ 101.550990431862886, 4.124683945807419 ], [ 101.52199995293546, 4.127319444137015 ], [ 101.51156131420322, 4.200880846174073 ], [ 101.465310907172579, 4.220569566132554 ], [ 101.452546827573997, 4.318418891218869 ], [ 101.433219842821472, 4.344179591714749 ], [ 101.445777215945725, 4.38203257914023 ], [ 101.370226271625086, 4.402444770409829 ], [ 101.341959263109459, 4.431461085960336 ], [ 101.386349318166481, 4.499725652916538 ], [ 101.364490187871809, 4.574139716574621 ], [ 101.379062940802044, 4.612845363822487 ], [ 101.472907342899532, 4.570341498261541 ], [ 101.521483188997934, 4.599357814711368 ], [ 101.592589959858742, 4.560652167463559 ], [ 101.655118443061667, 4.564682928874049 ], [ 101.76715294834986, 4.635582994159847 ], [ 101.777694939869548, 4.743121650044088 ], [ 101.802034539762133, 4.763146266786748 ], [ 101.850300328397395, 4.694778347043098 ], [ 101.891899856393195, 4.670516262415561 ], [ 101.912053664345081, 4.617832140540827 ], [ 101.944506463902144, 4.673694363104346 ], [ 101.967605829445404, 4.762603665326878 ], [ 101.987346226247325, 4.752578436845397 ], [ 102.001453892083418, 4.762991238055179 ], [ 102.042588332085813, 4.733819891974406 ], [ 102.116123894801888, 4.759115505376258 ], [ 102.128836297557029, 4.721236681327753 ], [ 102.178962437266648, 4.663669135522184 ], [ 102.227693312995939, 4.636978258140061 ], [ 102.277044304550998, 4.662196357176128 ], [ 102.343293491701218, 4.644988105017035 ], [ 102.371973912266185, 4.703950913903554 ], [ 102.402876418212088, 4.718213609370537 ], [ 102.450522089223, 4.712167467254801 ], [ 102.50700442941087, 4.673926907101077 ], [ 102.55247969008559, 4.708214220210095 ], [ 102.602450800164263, 4.694545803046367 ], [ 102.597903273916927, 4.742036445325652 ], [ 102.619038933799686, 4.781465562085998 ], [ 102.660638461795543, 4.76841726344594 ], [ 102.690404087078889, 4.717360947749512 ], [ 102.734484083773395, 4.689274807286495 ], [ 102.843883090731993, 4.675942287806322 ], [ 102.880780063748887, 4.619227402722458 ], [ 102.870754836166725, 4.573752142947001 ], [ 102.843262974007018, 4.547138779930719 ], [ 102.857525668574681, 4.498175361104018 ], [ 102.887498000332414, 4.46985667574495 ], [ 102.948786249186014, 4.456059068271372 ], [ 102.975141228884581, 4.475308539557432 ], [ 103.024492222238223, 4.412831733197891 ], [ 103.013950229819216, 4.338598538491738 ], [ 102.964754266096463, 4.325007635693794 ], [ 102.934006788882186, 4.273176174540822 ], [ 102.903310987611974, 4.140832830770535 ], [ 102.922017857438107, 4.110731308702896 ], [ 103.008214146065939, 4.134528306236348 ], [ 103.118543329011402, 4.086985988912261 ], [ 103.17704104990446, 4.035852158850048 ], [ 103.203396031401667, 4.038177597917809 ], [ 103.21367964140228, 4.015207424483037 ], [ 103.239724562738331, 4.017455349185013 ], [ 103.320236443557008, 3.875319321829238 ], [ 103.343697544306167, 3.949423326225485 ], [ 103.326437616203009, 4.04437877056381 ], [ 103.303183221028803, 4.079234524453739 ], [ 103.324577264229333, 4.143080756371774 ], [ 103.318582798057662, 4.193594468809692 ], [ 103.442800326000054, 4.168972072000088 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MY-11", "NAME_1": "Trengganu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.542002800000034, 5.854763088000084 ], [ 102.62631269600007, 5.79718659100007 ], [ 102.66920006600003, 5.725002346000053 ], [ 102.875661655000044, 5.571437893000052 ], [ 102.975596550000034, 5.531317450000074 ], [ 103.120290561000047, 5.381333726000094 ], [ 103.448008660000028, 4.806545315000051 ], [ 103.44263756600003, 4.74282461100006 ], [ 103.469411655000044, 4.550034898000092 ], [ 103.451426629000082, 4.488470770000049 ], [ 103.496429884000065, 4.306219794000071 ], [ 103.448008660000028, 4.217474677000041 ], [ 103.44857832100007, 4.172430731000077 ], [ 103.318582798057662, 4.193594468809692 ], [ 103.324577264229333, 4.143080756371774 ], [ 103.303183221028803, 4.079234524453739 ], [ 103.326437616203009, 4.04437877056381 ], [ 103.343697544306167, 3.949423326225485 ], [ 103.320236443557008, 3.875319321829238 ], [ 103.239724562738331, 4.017455349185013 ], [ 103.21367964140228, 4.015207424483037 ], [ 103.203396031401667, 4.038177597917809 ], [ 103.17704104990446, 4.035852158850048 ], [ 103.118543329011402, 4.086985988912261 ], [ 103.008214146065939, 4.134528306236348 ], [ 102.938554315129522, 4.10910350252459 ], [ 102.917263624716441, 4.115149643741063 ], [ 102.903310987611974, 4.140832830770535 ], [ 102.936177199218321, 4.278395494356573 ], [ 102.964754266096463, 4.325007635693794 ], [ 103.015035435436971, 4.342319241539769 ], [ 103.025267368594143, 4.399731756815129 ], [ 103.011779820382344, 4.439290066583283 ], [ 102.970180292386544, 4.477556464259408 ], [ 102.948786249186014, 4.456059068271372 ], [ 102.883467238022547, 4.472182114812711 ], [ 102.843728062000423, 4.538767197847903 ], [ 102.873235304865375, 4.580340888321302 ], [ 102.871685012153534, 4.648631292799905 ], [ 102.843883090731993, 4.675942287806322 ], [ 102.752932570281871, 4.683383693902329 ], [ 102.690404087078889, 4.717360947749512 ], [ 102.660638461795543, 4.76841726344594 ], [ 102.639502801912727, 4.855001125701392 ], [ 102.575579054729531, 4.896755683328138 ], [ 102.51119021955293, 4.915126654571452 ], [ 102.503128696731949, 5.075814521223151 ], [ 102.528553501342969, 5.10607107202236 ], [ 102.412643264275175, 5.183973292933103 ], [ 102.440290155166508, 5.369388333105064 ], [ 102.394194776867437, 5.427265937273148 ], [ 102.4058219749042, 5.608443507761649 ], [ 102.386288282777969, 5.685958156843469 ], [ 102.542002800000034, 5.854763088000084 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MY-15", "NAME_1": "Labuan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.248545769000089, 5.365464585000041 ], [ 115.259287957000083, 5.291205145000049 ], [ 115.241709832000083, 5.272691148000092 ], [ 115.204112175000091, 5.283596096000053 ], [ 115.159190300000091, 5.252183335000041 ], [ 115.18913821700005, 5.344794012000079 ], [ 115.241709832000083, 5.387396552000041 ], [ 115.248545769000089, 5.365464585000041 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MY-14", "NAME_1": "Kuala Lumpur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.66845096164252, 3.232206121815068 ], [ 101.70834516819491, 3.206988022779001 ], [ 101.746172316299294, 3.214687812192778 ], [ 101.760435011766333, 3.187996933911336 ], [ 101.741831495626968, 3.126321112329435 ], [ 101.751960076896012, 3.052217108832508 ], [ 101.727878859421764, 3.026921495430656 ], [ 101.662094761164269, 3.040744941325954 ], [ 101.665350376218839, 3.085884304317176 ], [ 101.624836052941475, 3.144071966847775 ], [ 101.622355585142088, 3.182079983004826 ], [ 101.66845096164252, 3.232206121815068 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MY-16", "NAME_1": "Putrajaya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.712996047229751, 2.981213690759205 ], [ 101.730359328120471, 2.928865464769387 ], [ 101.677132602987172, 2.875483710005199 ], [ 101.671551547965521, 2.960362249917864 ], [ 101.712996047229751, 2.981213690759205 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/morocco.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/morocco.geojson new file mode 100644 index 000000000000..1844dc24765f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/morocco.geojson @@ -0,0 +1,22 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "MA-14", "NAME_1": "Guelmim - Es-Semara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.817034779999915, 27.661464011000092 ], [ -8.773387410999931, 27.460030416000066 ], [ -8.801706094999929, 27.360424092000088 ], [ -8.795840819999938, 27.307688294000073 ], [ -8.752871866999953, 27.190486146000026 ], [ -8.752871866999953, 27.150462749000056 ], [ -8.79390295399989, 27.120180359000116 ], [ -9.000918741999953, 27.08992380799999 ], [ -9.207469441999876, 27.099690654000042 ], [ -9.412056436999961, 27.087960104000061 ], [ -9.486315469999852, 27.04987457300011 ], [ -9.734362345999926, 26.860428773000038 ], [ -9.816863769999941, 26.849680075000023 ], [ -9.89936519399987, 26.849680075000023 ], [ -10.031708536999929, 26.910219015000067 ], [ -10.18844315599992, 26.860428773000038 ], [ -10.250454873999956, 26.860428773000038 ], [ -10.550281534999925, 26.990291647000035 ], [ -10.756780557999917, 27.019592184000075 ], [ -10.921835082999877, 27.009825338000027 ], [ -11.391573852999898, 26.882908021000063 ], [ -11.360309610999906, 26.793042705000047 ], [ -11.315867878999939, 26.744208476000054 ], [ -11.315867878999939, 26.683643697000022 ], [ -11.336900186999856, 26.632897441000026 ], [ -11.51068802899988, 26.46980662 ], [ -11.68354569499985, 26.212974752000022 ], [ -11.717238728999888, 26.1035757450001 ], [ -12.029751952999902, 26.030350241000107 ], [ -12.055823329999953, 25.995829570000055 ], [ -12.444919603157189, 25.994201767997197 ], [ -12.497397020356232, 26.231758328583965 ], [ -12.57343889019262, 26.424588935530949 ], [ -12.571578538218944, 26.502594509229198 ], [ -12.52876461429554, 26.617109483216041 ], [ -12.486544968675389, 26.682118435117673 ], [ -12.312550421864501, 26.844020697697033 ], [ -12.261752488586467, 26.911458442353194 ], [ -12.153025275196285, 27.119171861492191 ], [ -12.03404029022721, 27.440547593896326 ], [ -11.926992559858775, 27.57513886236859 ], [ -11.813166499834097, 27.662203552551887 ], [ -11.543656785931944, 27.790086982028583 ], [ -11.553656175092385, 27.83455455235071 ], [ -11.782298037159284, 28.210141167807151 ], [ -11.485585089999915, 28.32562897300005 ], [ -11.340972459999932, 28.479681708000044 ], [ -11.325917120999918, 28.515204169000071 ], [ -11.266468878999945, 28.551581122000073 ], [ -11.063099738999938, 28.752386786000045 ], [ -10.573801235999952, 28.990423895000049 ], [ -10.450917120999918, 29.092189846000053 ], [ -10.399063959021962, 29.161245479153255 ], [ -10.333084683011691, 29.131090399902007 ], [ -10.20877702543936, 29.11920482034617 ], [ -10.145395880615411, 29.075925808429304 ], [ -10.097905239235388, 29.07892304106548 ], [ -9.974088508078182, 29.160726833976184 ], [ -9.924194912365294, 29.173671779828737 ], [ -9.871872523897878, 29.166127020945225 ], [ -9.786864792775987, 29.280280259726169 ], [ -9.725266485559871, 29.30115753808991 ], [ -9.631163702842628, 29.269299017735477 ], [ -9.582355312747495, 29.276688747887363 ], [ -9.509879116328136, 29.320949611735159 ], [ -9.414794480780643, 29.316324571122038 ], [ -9.188529222345721, 29.355882879990872 ], [ -9.148970912577568, 29.333016059343663 ], [ -9.077399053723354, 29.424948431724715 ], [ -8.981797655137655, 29.450734972441012 ], [ -8.875085821553455, 29.456858628922589 ], [ -8.739409349262075, 29.404846299716951 ], [ -8.669852871113108, 29.426886298064176 ], [ -8.645668300851412, 29.442285875093035 ], [ -8.69499345488407, 29.58478363675539 ], [ -8.700884569167556, 29.792342027162817 ], [ -8.670783047099974, 29.84425100448027 ], [ -8.687241991324868, 29.897322699083304 ], [ -8.644092169717851, 29.963313503815129 ], [ -8.366744758064158, 29.955510362513223 ], [ -8.298816086992815, 29.996980699299797 ], [ -8.21776160291563, 30.007858588503041 ], [ -8.155078090981135, 30.006928412516231 ], [ -8.100301073136052, 29.98127106390848 ], [ -8.019169073793705, 30.026668810217416 ], [ -7.967311774219013, 30.115810655537302 ], [ -7.760011766230036, 30.129504910223432 ], [ -7.627255011309728, 30.219008490749218 ], [ -7.467135586338259, 30.223840236937349 ], [ -7.324741176564032, 30.190663966968486 ], [ -7.218856167078457, 30.355279242243228 ], [ -7.177179123817496, 30.392253730525226 ], [ -7.03504309736104, 30.368663438566841 ], [ -6.910864630997935, 30.376414903025307 ], [ -6.843530239129223, 30.452534288126856 ], [ -6.715631068818766, 30.487028306810885 ], [ -6.582254198072803, 30.416334947100097 ], [ -6.526650356129039, 30.352437039237941 ], [ -6.573340012731421, 30.246164456124745 ], [ -6.539414434828302, 30.105501207114969 ], [ -6.51122494067846, 30.070852158800051 ], [ -6.414925910102681, 30.04808869094029 ], [ -6.494765998252205, 29.889416204993836 ], [ -6.343910237016219, 29.572068646746661 ], [ -6.699648713798354, 29.516227185783251 ], [ -6.78351469980592, 29.446338864110359 ], [ -6.95823550398822, 29.509238353615942 ], [ -7.070056818664909, 29.516227185783251 ], [ -7.146933972505082, 29.509238353615942 ], [ -7.258755287181771, 29.467305360612258 ], [ -7.349610105356646, 29.383439374604663 ], [ -7.619452677999902, 29.389421692000084 ], [ -7.945014200999935, 29.176230570000072 ], [ -8.036326456999859, 29.099852804000093 ], [ -8.182312377999921, 29.035541484000035 ], [ -8.368450886999909, 28.916530661000095 ], [ -8.430410929999937, 28.841005555000081 ], [ -8.667605753999879, 28.711685283000051 ], [ -8.68238521299989, 28.665899964000104 ], [ -8.68238521299989, 27.66143931100008 ], [ -8.817034779999915, 27.661464011000092 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MA-15", "NAME_1": "Laâyoune - Boujdour - Sakia El Hamra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.055823329999953, 25.995829570000055 ], [ -12.080058959999889, 25.870204976000096 ], [ -12.169872599999877, 25.639728088000069 ], [ -12.310019083999862, 25.110432230000058 ], [ -12.399884399999877, 24.879955343000049 ], [ -12.430140949999895, 24.830165101000105 ], [ -12.499981648999949, 24.769600322000045 ], [ -12.946880248324817, 24.496748253529063 ], [ -13.064235805637907, 24.518632920972493 ], [ -13.233501959947489, 24.519821479377754 ], [ -13.684818080889727, 24.393989365716664 ], [ -13.949168869847483, 24.46096202237942 ], [ -14.14220618326874, 24.484448961550299 ], [ -14.306537237703367, 24.470832221230012 ], [ -14.632848069982458, 24.405849106850781 ], [ -14.678530036232189, 24.420809435207275 ], [ -14.785603604123025, 24.526048489546156 ], [ -15.012249130992586, 24.591545671695371 ], [ -14.976226365999935, 24.641424872000073 ], [ -14.895619269999941, 24.70571523600006 ], [ -14.836048956999946, 24.91868724200009 ], [ -14.843495245999918, 24.987616278000075 ], [ -14.829213019999941, 25.05023834800005 ], [ -14.849720831999946, 25.214178778000075 ], [ -14.819243943999936, 25.330226955000057 ], [ -14.782053188999953, 25.446926174000055 ], [ -14.714914516999954, 25.525580145000049 ], [ -14.685170050999943, 25.590887762000079 ], [ -14.620961066999939, 25.783596096000053 ], [ -14.51390540299991, 25.93695709800005 ], [ -14.48656165299991, 26.015448309000078 ], [ -14.480376756999931, 26.087795315000051 ], [ -14.49282792899993, 26.132717190000051 ], [ -14.466135219999956, 26.194240627000056 ], [ -14.400746222999942, 26.266302802000041 ], [ -14.298939581999946, 26.302232164000088 ], [ -14.180246548999946, 26.424383856000077 ], [ -14.046864386999914, 26.444403387000079 ], [ -13.923736131999931, 26.500881252000056 ], [ -13.619984503999945, 26.68891022300005 ], [ -13.561105923999946, 26.749090887000079 ], [ -13.480336066999939, 26.911688544000071 ], [ -13.402455206999946, 27.17719147300005 ], [ -13.30109615799995, 27.324448960000041 ], [ -13.307932094999956, 27.344956773000035 ], [ -13.240834113999938, 27.465399481000077 ], [ -13.171254035999937, 27.68500397300005 ], [ -13.04515540299991, 27.759833075000074 ], [ -13.003000454999949, 27.82103099200009 ], [ -12.968088344999956, 27.914618231000077 ], [ -12.838937954999949, 27.970404364000046 ], [ -12.657826300999943, 27.998032945000091 ], [ -12.513539191999939, 27.995428778000075 ], [ -12.335031704999949, 28.047267971000053 ], [ -12.061431443999936, 28.089016018000052 ], [ -12.023101365999935, 28.119574286000045 ], [ -11.782298037159284, 28.210141167807151 ], [ -11.553656175092385, 27.83455455235071 ], [ -11.543656785931944, 27.790086982028583 ], [ -11.813166499834097, 27.662203552551887 ], [ -11.926992559858775, 27.57513886236859 ], [ -12.03404029022721, 27.440547593896326 ], [ -12.153025275196285, 27.119171861492191 ], [ -12.261752488586467, 26.911458442353194 ], [ -12.312550421864501, 26.844020697697033 ], [ -12.486544968675389, 26.682118435117673 ], [ -12.560984869855872, 26.540912583748707 ], [ -12.577366298815662, 26.459987290880747 ], [ -12.497397020356232, 26.231758328583965 ], [ -12.444919603157189, 25.994201767997197 ], [ -12.055823329999953, 25.995829570000055 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MA-16", "NAME_1": "Oued el Dahab" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.946880248324817, 24.496748253529063 ], [ -13.060024983999938, 24.400475566000054 ], [ -13.229962931999921, 24.089900207000071 ], [ -13.310009724999873, 23.980552877000051 ], [ -13.769981648999931, 23.790125224000022 ], [ -13.83979650899991, 23.750075989000052 ], [ -13.890129353999981, 23.690493063000062 ], [ -14.019992227999865, 23.410251771 ], [ -14.100064860999908, 23.099676412000022 ], [ -14.169905558999886, 22.759852193000071 ], [ -14.189904337999934, 22.450258687000073 ], [ -14.220186726999941, 22.309647115000061 ], [ -14.310052042999871, 22.19050710099999 ], [ -14.439914916999953, 22.080152079000115 ], [ -14.459913695999887, 22.040102844000032 ], [ -14.629851643999871, 21.860423889000103 ], [ -14.60982702599992, 21.750068868000128 ], [ -14.669875040999926, 21.599664612000069 ], [ -14.749973510999894, 21.50008412699999 ], [ -14.83981298899991, 21.450268046000062 ], [ -14.970166788999848, 21.440501201000117 ], [ -15.459930175999915, 21.450268046000062 ], [ -15.749964151999905, 21.49031728100006 ], [ -16.040023965999922, 21.50008412699999 ], [ -16.189885620999945, 21.480550435000097 ], [ -16.729956013999896, 21.469801737000083 ], [ -17.013743325393165, 21.419971097583428 ], [ -16.971058722999942, 21.592596747000073 ], [ -16.968006964999915, 21.697251695000091 ], [ -16.947661912999934, 21.736029364000046 ], [ -16.947010870999918, 21.759995835000041 ], [ -16.966908331999946, 21.781154690000051 ], [ -16.921009894999941, 21.931301174000055 ], [ -16.81663977799991, 22.130560614000046 ], [ -16.706776495999918, 22.275458075000074 ], [ -16.659006313999953, 22.295070705000057 ], [ -16.631703253999945, 22.273911851000037 ], [ -16.521839972999942, 22.314886786000045 ], [ -16.466623501999948, 22.377386786000045 ], [ -16.429351365999935, 22.510443427000041 ], [ -16.357289191999939, 22.583075262000079 ], [ -16.336822068999936, 22.753729559000078 ], [ -16.296457485999952, 22.832098700000074 ], [ -16.289621548999946, 22.899807033000059 ], [ -16.238636847999942, 22.91156647300005 ], [ -16.163238084999932, 22.993231512000079 ], [ -16.159535285999937, 23.082464911000045 ], [ -16.220204230999911, 23.075873114000046 ], [ -16.21312415299991, 23.094427802000041 ], [ -16.139271613999938, 23.178534247000073 ], [ -16.060414191999939, 23.344549872000073 ], [ -15.981190558999913, 23.445786851000037 ], [ -15.956450975999928, 23.531724351000037 ], [ -15.905506964999915, 23.610296942000048 ], [ -15.83039303299995, 23.685980536000045 ], [ -15.772613084999932, 23.78782786700009 ], [ -15.775135870999918, 23.911932684000078 ], [ -15.795318162999934, 23.856634833000044 ], [ -15.861724412999934, 23.836167710000041 ], [ -15.888172980999911, 23.810736395000049 ], [ -15.948231574999909, 23.68431224200009 ], [ -15.994862433999913, 23.645005601000037 ], [ -16.009755011999914, 23.655422268000052 ], [ -16.003163214999915, 23.672105210000041 ], [ -15.840931769999941, 23.90265534100007 ], [ -15.768137173999946, 23.959865627000056 ], [ -15.620106574999909, 24.026271877000056 ], [ -15.444691535999937, 24.221869208000044 ], [ -15.298247850999928, 24.34516022300005 ], [ -15.171864386999914, 24.494126695000091 ], [ -15.048329230999911, 24.538275458000044 ], [ -15.014800584999932, 24.562445380000042 ], [ -15.012249130992586, 24.591545671695371 ], [ -14.785603604123025, 24.526048489546156 ], [ -14.678530036232189, 24.420809435207275 ], [ -14.632848069982458, 24.405849106850781 ], [ -14.306537237703367, 24.470832221230012 ], [ -14.14220618326874, 24.484448961550299 ], [ -13.949168869847483, 24.46096202237942 ], [ -13.684818080889727, 24.393989365716664 ], [ -13.233501959947489, 24.519821479377754 ], [ -13.064235805637907, 24.518632920972493 ], [ -12.946880248324817, 24.496748253529063 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MA-01", "NAME_1": "Tanger - Tétouan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.398858678999886, 35.924503853000076 ], [ -5.340728318999936, 35.847357489000046 ], [ -5.318755662999934, 35.701727606000077 ], [ -5.304798956999946, 35.685207424000055 ], [ -5.276763475999928, 35.685207424000055 ], [ -5.249419725999928, 35.58462148600006 ], [ -5.150786912999934, 35.516099351000037 ], [ -5.066273566999939, 35.417466539000088 ], [ -4.98851477799991, 35.387884833000044 ], [ -4.909331834999932, 35.314520575000074 ], [ -4.864979620999918, 35.301988023000035 ], [ -4.810617641999954, 35.259995835000041 ], [ -4.495432094999956, 35.18077220300006 ], [ -4.495766567273279, 35.138966580243448 ], [ -4.477653978448359, 35.127313543785021 ], [ -4.464218105281361, 35.079099432892519 ], [ -4.505042486921241, 35.019955755953333 ], [ -4.579534064045845, 34.963395901399736 ], [ -4.665652839207155, 34.947582913220856 ], [ -4.832464362340431, 34.84567698830233 ], [ -5.130611537992081, 34.767748928070546 ], [ -5.190168626081231, 34.716434230855043 ], [ -5.239235398594758, 34.725942695399056 ], [ -5.34951290469678, 34.714677232568192 ], [ -5.420102911620063, 34.737724921268068 ], [ -5.513042975253086, 34.819890449384729 ], [ -5.633009813052411, 34.82296519638669 ], [ -5.781708747360824, 34.930684719424221 ], [ -6.113083868925401, 35.010163072367902 ], [ -6.249209009091353, 35.001396854296509 ], [ -6.20539303299995, 35.124579169000071 ], [ -6.023915167999917, 35.501166083000044 ], [ -5.927235480999911, 35.780747789000088 ], [ -5.873402472999942, 35.801988023000035 ], [ -5.769276495999918, 35.792792059000078 ], [ -5.693511522999927, 35.83429596600007 ], [ -5.598988410999937, 35.822333075000074 ], [ -5.468861456999946, 35.910345770000049 ], [ -5.414198431999921, 35.909398432000046 ], [ -5.398858678999886, 35.924503853000076 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MA-04", "NAME_1": "Oriental" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.947824673999946, 35.329779364000046 ], [ -2.966920125999877, 35.313866272 ], [ -2.963767862999902, 35.286219381000095 ], [ -2.943045613999885, 35.267874248000098 ], [ -2.912912563999953, 35.276922919000071 ], [ -2.899037238999938, 35.259995835000041 ], [ -2.909820115999935, 35.186712958000044 ], [ -2.856068488999938, 35.131293036000045 ], [ -2.748117641999954, 35.11595286700009 ], [ -2.868275519999941, 35.217352606000077 ], [ -2.878407355999911, 35.246323960000041 ], [ -2.761097785999937, 35.143255927000041 ], [ -2.666737433999913, 35.108221747000073 ], [ -2.517486131999931, 35.099351304000038 ], [ -2.416737433999913, 35.14915599200009 ], [ -2.275257941999939, 35.109564520000049 ], [ -2.222564256999931, 35.089300848000065 ], [ -2.22112585499994, 35.049954733000092 ], [ -2.193789021999919, 35.003600973000104 ], [ -2.061238972999888, 34.92970367400001 ], [ -2.016280476999981, 34.926241354000084 ], [ -1.979745238999953, 34.865263164000012 ], [ -1.769525512999849, 34.741343079000032 ], [ -1.871121377999941, 34.596649069000122 ], [ -1.750663614999894, 34.49417470300007 ], [ -1.702966267999955, 34.479679464000057 ], [ -1.80962642399993, 34.372450867000012 ], [ -1.746064412999942, 34.290311178000096 ], [ -1.669634968999901, 34.079212952000049 ], [ -1.718727579999921, 33.898087056000023 ], [ -1.703224650999914, 33.761816305000096 ], [ -1.746787881999865, 33.702388408000061 ], [ -1.662400268999932, 33.644691671000075 ], [ -1.617338418999879, 33.554438782000048 ], [ -1.612739216999927, 33.521469218000092 ], [ -1.683225869999887, 33.369230449000028 ], [ -1.674234171999927, 33.237972311000064 ], [ -1.623591267999871, 33.196605327000029 ], [ -1.571398071999909, 33.111985169000022 ], [ -1.499516153999878, 33.060205384000071 ], [ -1.502978474999907, 32.974629212000096 ], [ -1.558789021999871, 32.933649801000072 ], [ -1.423345092999881, 32.742395325000118 ], [ -1.327020223999909, 32.69890960700009 ], [ -1.031999470999949, 32.49440012700002 ], [ -1.123156697999917, 32.417944845000065 ], [ -1.217982950999954, 32.392623393000079 ], [ -1.244131225999894, 32.356914978000063 ], [ -1.276635700999918, 32.200852153000071 ], [ -1.309553588999961, 32.167443339 ], [ -1.305161091999963, 32.151165263000067 ], [ -1.23271073399988, 32.163722636000088 ], [ -1.195607055999886, 32.146049296000072 ], [ -1.190594440999917, 32.125223694000013 ], [ -1.210334838999898, 32.089670309000056 ], [ -2.516146605999893, 32.13220001300003 ], [ -2.695567178999852, 32.089670309000056 ], [ -2.881188923999957, 32.076286113000023 ], [ -2.938730631999903, 32.048639221000101 ], [ -2.827835693118061, 31.794586472320745 ], [ -3.002556497300333, 31.773619975818931 ], [ -3.161717774952856, 31.732546097715037 ], [ -3.152256842279485, 31.838754584256662 ], [ -3.191918503935824, 31.864360256020973 ], [ -3.239874233309251, 31.957636217337551 ], [ -3.248297492235508, 32.104965725188038 ], [ -3.229203049681018, 32.154316718541679 ], [ -3.269329800230082, 32.164135240548887 ], [ -3.362502406960516, 32.15284394019568 ], [ -3.488282842878903, 32.185606798115202 ], [ -3.657523158766764, 32.141190903737197 ], [ -3.684575771354787, 32.153076484192354 ], [ -3.747078416135992, 32.262630519882578 ], [ -3.787980313041032, 32.284308783023903 ], [ -3.844850225957146, 32.409598294325804 ], [ -3.999181891231331, 32.617337550987145 ], [ -3.861076626185366, 32.822958075055112 ], [ -3.678038702823869, 33.029586290374993 ], [ -3.59825029061841, 33.087231350546347 ], [ -3.319352586252876, 33.101674913166676 ], [ -3.033762782826159, 33.148622952187452 ], [ -2.926120775053732, 33.210996405759488 ], [ -2.982964850447502, 33.341996161493626 ], [ -3.089780035919944, 33.439509588896385 ], [ -3.21439775185479, 33.512605902940038 ], [ -3.237367926188824, 33.543870144091841 ], [ -3.111820034267168, 33.655982163745819 ], [ -3.060608689839171, 33.717477118174429 ], [ -3.050686815044514, 33.754322415247259 ], [ -3.102440761831701, 33.785095729983937 ], [ -3.210315313600859, 33.996013089132759 ], [ -3.202822230661411, 34.025339463945102 ], [ -3.109959683192812, 34.060789496138341 ], [ -3.069548712702954, 34.14571971289439 ], [ -3.110114711924439, 34.258064277444419 ], [ -3.19607845655554, 34.363742581355041 ], [ -3.19395972306279, 34.401595566981825 ], [ -3.069342007127943, 34.498256334562143 ], [ -3.025003628015043, 34.609877427801052 ], [ -2.949090949387823, 34.620936184157529 ], [ -2.970381638901529, 34.686203518477555 ], [ -2.985600347877778, 34.706693224112996 ], [ -3.198403895623301, 34.777257391715239 ], [ -3.272120327291304, 34.773278307148132 ], [ -3.364207729303246, 34.688063870451231 ], [ -3.511382209321539, 34.593547674785327 ], [ -3.544765183966092, 34.592643338119558 ], [ -3.632511766205027, 34.663104152934295 ], [ -3.595873174707265, 34.796041775007893 ], [ -3.611376105422949, 34.840845242114199 ], [ -3.730335251970303, 34.871411852175243 ], [ -3.810640428113288, 34.930943101842672 ], [ -3.824463874008586, 35.128347073458656 ], [ -3.821929490999935, 35.206773179000038 ], [ -3.764800584999932, 35.218451239000046 ], [ -3.747141079999949, 35.263657945000034 ], [ -3.699574347999942, 35.290838934000078 ], [ -3.590972459999932, 35.233303127000056 ], [ -3.412912563999953, 35.197943427000041 ], [ -3.319243943999936, 35.20180898600006 ], [ -3.195139126999948, 35.238226630000042 ], [ -3.118031378999945, 35.294134833000044 ], [ -3.077056443999936, 35.287909247000073 ], [ -3.045399542999917, 35.314439195000034 ], [ -2.968576626999948, 35.446437893000052 ], [ -2.952219204999949, 35.43305084800005 ], [ -2.963042772999927, 35.373480536000045 ], [ -2.947824673999946, 35.329779364000046 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MA-06", "NAME_1": "Meknès - Tafilalet" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.161717774952856, 31.732546097715037 ], [ -3.511563883999941, 31.672744853000083 ], [ -3.591378132999949, 31.67827423199999 ], [ -3.659506721025934, 31.647820996807653 ], [ -3.673484385360553, 31.389234206617786 ], [ -3.747466796999959, 31.385165507000053 ], [ -3.815188761999934, 31.337158102 ], [ -3.814982054999888, 31.220524394 ], [ -3.839321654999907, 31.152828268000022 ], [ -3.810796263999862, 31.142906393000104 ], [ -3.748862059999936, 31.180216776000051 ], [ -3.731421264999881, 31.176341045000086 ], [ -3.689718383999946, 31.125594788000015 ], [ -3.624140991999951, 31.086527405000098 ], [ -3.60874141499994, 31.030871888000078 ], [ -3.554674238516554, 30.955926612245648 ], [ -3.659506721025934, 30.837116465401678 ], [ -3.645529056691345, 30.711317486390399 ], [ -3.834227525208235, 30.627451500382804 ], [ -4.274523951747767, 30.557563178709913 ], [ -4.372367602089838, 30.50864135353892 ], [ -4.484188916766527, 30.382842374527641 ], [ -4.62396556011231, 30.284998724185542 ], [ -4.770731035625488, 30.229088066847154 ], [ -5.219133266586994, 30.497880356693088 ], [ -5.22714311436323, 30.559762884749318 ], [ -5.205878262371925, 30.65306468448756 ], [ -5.296260342041137, 30.771248683779731 ], [ -5.360959234680934, 30.824165351449778 ], [ -5.363155483438845, 30.871526800721256 ], [ -5.359538133178319, 30.906382555510504 ], [ -5.332640550221242, 30.929068508105161 ], [ -5.302849087415439, 30.998728339041577 ], [ -5.304321864862175, 31.110892035538996 ], [ -5.233344285210592, 31.301552232149788 ], [ -5.213784755562017, 31.41239817993204 ], [ -5.252593757395971, 31.474461575141561 ], [ -5.454106003888967, 31.608871975561215 ], [ -5.565106981302165, 31.638405055948567 ], [ -5.639934455210948, 31.623238022916382 ], [ -5.735639206584153, 31.638430894370231 ], [ -5.712746548414486, 31.704705919042908 ], [ -5.571850755408036, 31.874798896551795 ], [ -5.588542242730341, 31.938025010845536 ], [ -5.658537969551674, 31.969728502468399 ], [ -5.80591915514492, 31.93024770796535 ], [ -5.828656784582961, 31.985179755441322 ], [ -5.859610968271568, 32.013420925535286 ], [ -5.851626959816372, 32.057681790282402 ], [ -5.821060349755328, 32.102097682861768 ], [ -5.637867396762942, 32.214726467352591 ], [ -5.555856899176547, 32.243639431014913 ], [ -5.476120163814528, 32.245189723726753 ], [ -5.46842037619939, 32.262087918422651 ], [ -5.527279832298404, 32.389935410990404 ], [ -5.507797817015671, 32.440242417853256 ], [ -5.437311163779214, 32.507938544028548 ], [ -5.522267218057664, 32.528815823291609 ], [ -5.652259284338527, 32.603255724472092 ], [ -5.774732428358902, 32.643175768546882 ], [ -5.899453497980574, 32.744125678157502 ], [ -6.041667038802814, 32.79306325946186 ], [ -6.037067836611357, 32.857116196954905 ], [ -6.057454188559973, 32.897165432238864 ], [ -6.15354651535938, 32.925897528747953 ], [ -6.132720912939817, 33.011835435856653 ], [ -6.202794155026254, 33.077774562845775 ], [ -6.403453741696808, 33.19544179909974 ], [ -6.419783493813213, 33.238307399866585 ], [ -6.39329932290542, 33.268021349205867 ], [ -6.40854387030339, 33.334968167446959 ], [ -6.399293789077092, 33.382458807927605 ], [ -6.35358598530496, 33.468293362248858 ], [ -6.328626267788025, 33.475424709982349 ], [ -6.213026089082746, 33.438114324916114 ], [ -6.197523159266382, 33.365870673392862 ], [ -6.024174566702925, 33.315589504951674 ], [ -5.949502122425031, 33.332384345061428 ], [ -5.835426398009872, 33.327681790082522 ], [ -5.788090786260796, 33.350264390788993 ], [ -5.807004359863299, 33.401010647223586 ], [ -5.789020962247605, 33.61960195646509 ], [ -5.739540777684738, 33.718820706210579 ], [ -5.724528774283499, 33.787963772310206 ], [ -5.786540492649635, 33.885993964549812 ], [ -5.759772100901728, 33.955472927433618 ], [ -5.771864386032576, 33.980665188047965 ], [ -5.837183397196043, 34.088100491144758 ], [ -5.885061611304309, 34.116729233966964 ], [ -5.788814255773275, 34.211865546357842 ], [ -5.742072923226829, 34.191970119925088 ], [ -5.678588425615374, 34.133575750920158 ], [ -5.571230637783742, 34.129441636722163 ], [ -5.468652920196121, 34.165356756908807 ], [ -5.450514492050161, 34.17830170276136 ], [ -5.454467739094866, 34.212821559867052 ], [ -5.420516322770084, 34.28064687815089 ], [ -5.352174242347417, 34.197809557365133 ], [ -5.329384935166615, 34.10218231945845 ], [ -5.313339402991062, 34.089728298222383 ], [ -5.247658656621695, 34.108874416720937 ], [ -5.087875129333781, 33.836281235990214 ], [ -5.151824714039321, 33.748973904222282 ], [ -5.148439906876206, 33.717890530223769 ], [ -5.119139369586264, 33.693137519181164 ], [ -4.976770799133078, 33.666033229749758 ], [ -4.932664964016908, 33.63851553006765 ], [ -4.90413957398215, 33.594073798167244 ], [ -4.897912562914428, 33.540692044302375 ], [ -4.980026414187648, 33.459146632910745 ], [ -4.994134080023798, 33.41690114976825 ], [ -4.86406450027647, 33.127073880255352 ], [ -4.780426194713129, 33.023591824203322 ], [ -4.754898037314604, 32.950392158271484 ], [ -4.719422165800324, 32.925484116698613 ], [ -4.493492804149582, 32.884478867905386 ], [ -4.397426316671158, 32.802235826322317 ], [ -4.279345669267229, 32.652710068814599 ], [ -4.237100186124678, 32.629093940233133 ], [ -4.187361619143417, 32.613151759945765 ], [ -3.999181891231331, 32.617337550987145 ], [ -3.844850225957146, 32.409598294325804 ], [ -3.787980313041032, 32.284308783023903 ], [ -3.747078416135992, 32.262630519882578 ], [ -3.684575771354787, 32.153076484192354 ], [ -3.657523158766764, 32.141190903737197 ], [ -3.488282842878903, 32.185606798115202 ], [ -3.362502406960516, 32.15284394019568 ], [ -3.269329800230082, 32.164135240548887 ], [ -3.229203049681018, 32.154316718541679 ], [ -3.248297492235508, 32.104965725188038 ], [ -3.239874233309251, 31.957636217337551 ], [ -3.191918503935824, 31.864360256020973 ], [ -3.152256842279485, 31.838754584256662 ], [ -3.161717774952856, 31.732546097715037 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MA-13", "NAME_1": "Souss - Massa - Draâ" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.770731035625488, 30.229088066847154 ], [ -4.875563518134896, 30.180166241676076 ], [ -5.176083301328532, 29.977490108824597 ], [ -5.273926951670632, 29.886635290649807 ], [ -5.434670091518313, 29.64202616479453 ], [ -5.539502574027694, 29.52321601795056 ], [ -5.637346224369793, 29.495260689281352 ], [ -5.721212210377359, 29.52321601795056 ], [ -5.756156371213876, 29.61407083612535 ], [ -6.000765497129976, 29.579126675355781 ], [ -6.343910237016219, 29.572068646746661 ], [ -6.494765998252205, 29.889416204993836 ], [ -6.414925910102681, 30.04808869094029 ], [ -6.51122494067846, 30.070852158800051 ], [ -6.539414434828302, 30.105501207114969 ], [ -6.568818324905806, 30.203324692880244 ], [ -6.573340012731421, 30.246164456124745 ], [ -6.526650356129039, 30.352437039237941 ], [ -6.582254198072803, 30.416334947100097 ], [ -6.715631068818766, 30.487028306810885 ], [ -6.843530239129223, 30.452534288126856 ], [ -6.910864630997935, 30.376414903025307 ], [ -7.03504309736104, 30.368663438566841 ], [ -7.177179123817496, 30.392253730525226 ], [ -7.218856167078457, 30.355279242243228 ], [ -7.324741176564032, 30.190663966968486 ], [ -7.467135586338259, 30.223840236937349 ], [ -7.627255011309728, 30.219008490749218 ], [ -7.760011766230036, 30.129504910223432 ], [ -7.967311774219013, 30.115810655537302 ], [ -8.019169073793705, 30.026668810217416 ], [ -8.100301073136052, 29.98127106390848 ], [ -8.155078090981135, 30.006928412516231 ], [ -8.21776160291563, 30.007858588503041 ], [ -8.298816086992815, 29.996980699299797 ], [ -8.366744758064158, 29.955510362513223 ], [ -8.644092169717851, 29.963313503815129 ], [ -8.687241991324868, 29.897322699083304 ], [ -8.670783047099974, 29.84425100448027 ], [ -8.700884569167556, 29.792342027162817 ], [ -8.69499345488407, 29.58478363675539 ], [ -8.645668300851412, 29.442285875093035 ], [ -8.669852871113108, 29.426886298064176 ], [ -8.739409349262075, 29.404846299716951 ], [ -8.875085821553455, 29.456858628922589 ], [ -8.981797655137655, 29.450734972441012 ], [ -9.077399053723354, 29.424948431724715 ], [ -9.148970912577568, 29.333016059343663 ], [ -9.188529222345721, 29.355882879990872 ], [ -9.414794480780643, 29.316324571122038 ], [ -9.509879116328136, 29.320949611735159 ], [ -9.582355312747495, 29.276688747887363 ], [ -9.631163702842628, 29.269299017735477 ], [ -9.725266485559871, 29.30115753808991 ], [ -9.786864792775987, 29.280280259726169 ], [ -9.871872523897878, 29.166127020945225 ], [ -9.924194912365294, 29.173671779828737 ], [ -9.974088508078182, 29.160726833976184 ], [ -10.097905239235388, 29.07892304106548 ], [ -10.145395880615411, 29.075925808429304 ], [ -10.20877702543936, 29.11920482034617 ], [ -10.333084683011691, 29.131090399902007 ], [ -10.399063959021962, 29.161245479153255 ], [ -10.320871548999946, 29.257961330000057 ], [ -10.248402472999942, 29.299383856000077 ], [ -10.086984829999949, 29.509955145000049 ], [ -10.05296790299991, 29.59992096600007 ], [ -9.820220506999931, 29.838934637000079 ], [ -9.717925584999932, 29.996568101000037 ], [ -9.655140753999945, 30.126898505000042 ], [ -9.61164303299995, 30.404364325000074 ], [ -9.66624915299991, 30.45929596600007 ], [ -9.700062628999945, 30.542710679000038 ], [ -9.829660610999952, 30.628607489000046 ], [ -9.888539191999939, 30.648260809000078 ], [ -9.886708136999914, 30.686672268000052 ], [ -9.813710089999915, 30.814683335000041 ], [ -9.823608997370586, 30.959954031053226 ], [ -9.768183763170157, 30.9259937611032 ], [ -9.690384894147542, 30.829358831944546 ], [ -9.643411016705045, 30.830056463934625 ], [ -9.547680426010857, 30.881939601931037 ], [ -9.330742764067338, 30.882559719555388 ], [ -9.23671749481656, 30.847213040149654 ], [ -9.048460251639312, 30.855403754179918 ], [ -8.820102098133304, 30.96878184750426 ], [ -8.792610235973598, 30.952994696847782 ], [ -8.750700648715963, 30.877779649311321 ], [ -8.596343145919434, 30.897726751688197 ], [ -8.360285202999705, 30.898734442940167 ], [ -8.164354009729777, 30.955526842389872 ], [ -8.033819341989044, 30.94640595147348 ], [ -7.989351771666918, 30.975112210460111 ], [ -7.890133021921429, 31.095518296931857 ], [ -7.825098231598133, 31.140140895985553 ], [ -7.326343146119314, 31.340593777081153 ], [ -7.186455044364834, 31.447176419456184 ], [ -7.109508836063924, 31.402347113928158 ], [ -6.983676724201473, 31.373098253481601 ], [ -6.88996151421253, 31.372013047863845 ], [ -6.803868576573564, 31.392270209502556 ], [ -6.74870398600018, 31.431751004005605 ], [ -6.702556931756988, 31.494718735880951 ], [ -6.431307339062471, 31.583653876525148 ], [ -6.056291470375072, 31.752790838726185 ], [ -5.860954556307718, 31.868313503964998 ], [ -5.80591915514492, 31.93024770796535 ], [ -5.658537969551674, 31.969728502468399 ], [ -5.588542242730341, 31.938025010845536 ], [ -5.571850755408036, 31.874798896551795 ], [ -5.712746548414486, 31.704705919042908 ], [ -5.735639206584153, 31.638430894370231 ], [ -5.639934455210948, 31.623238022916382 ], [ -5.565106981302165, 31.638405055948567 ], [ -5.454106003888967, 31.608871975561215 ], [ -5.252593757395971, 31.474461575141561 ], [ -5.213784755562017, 31.41239817993204 ], [ -5.233344285210592, 31.301552232149788 ], [ -5.304321864862175, 31.110892035538996 ], [ -5.302849087415439, 30.998728339041577 ], [ -5.332640550221242, 30.929068508105161 ], [ -5.359538133178319, 30.906382555510504 ], [ -5.363155483438845, 30.871526800721256 ], [ -5.360959234680934, 30.824165351449778 ], [ -5.296260342041137, 30.771248683779731 ], [ -5.205878262371925, 30.65306468448756 ], [ -5.22714311436323, 30.559762884749318 ], [ -5.219133266586994, 30.497880356693088 ], [ -4.770731035625488, 30.229088066847154 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MA-03", "NAME_1": "Taza - Al Hoceima - Taounate" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.495432094999956, 35.18077220300006 ], [ -4.347645636999914, 35.150132554000038 ], [ -4.269398566999939, 35.184881903000075 ], [ -4.130604620999918, 35.204779364000046 ], [ -3.919341600999928, 35.266831773000035 ], [ -3.909413214999915, 35.255275783000059 ], [ -3.92952945299993, 35.243819796000082 ], [ -3.903901018999932, 35.214172586000075 ], [ -3.821929490999935, 35.206773179000038 ], [ -3.810640428113288, 34.930943101842672 ], [ -3.730335251970303, 34.871411852175243 ], [ -3.611376105422949, 34.840845242114199 ], [ -3.595873174707265, 34.796041775007893 ], [ -3.632511766205027, 34.663104152934295 ], [ -3.544765183966092, 34.592643338119558 ], [ -3.511382209321539, 34.593547674785327 ], [ -3.364207729303246, 34.688063870451231 ], [ -3.272120327291304, 34.773278307148132 ], [ -3.198403895623301, 34.777257391715239 ], [ -2.985600347877778, 34.706693224112996 ], [ -2.949090949387823, 34.620936184157529 ], [ -3.025003628015043, 34.609877427801052 ], [ -3.069342007127943, 34.498256334562143 ], [ -3.19395972306279, 34.401595566981825 ], [ -3.19607845655554, 34.363742581355041 ], [ -3.110114711924439, 34.258064277444419 ], [ -3.069548712702954, 34.14571971289439 ], [ -3.109959683192812, 34.060789496138341 ], [ -3.202822230661411, 34.025339463945102 ], [ -3.210315313600859, 33.996013089132759 ], [ -3.102440761831701, 33.785095729983937 ], [ -3.342710334214587, 33.837831528702054 ], [ -3.425883550885146, 33.895605780982009 ], [ -3.498902349663695, 33.907543036481911 ], [ -3.576287808435609, 33.859303087167746 ], [ -3.798083054988979, 33.643993232301796 ], [ -3.817151659121805, 33.600042425917195 ], [ -3.811880661563293, 33.574565945362053 ], [ -3.850844692128874, 33.516042385147955 ], [ -3.86479732923334, 33.513381049295958 ], [ -3.885752121962867, 33.552164211808929 ], [ -3.974092983404489, 33.536428737995834 ], [ -4.027733119687753, 33.548391831917513 ], [ -4.072381558062489, 33.571749578979848 ], [ -4.081114875351204, 33.668642890556953 ], [ -4.064500902394741, 33.708847154572481 ], [ -4.186586472787496, 33.870284329158437 ], [ -4.185242885650666, 33.904804186264187 ], [ -4.476568772830603, 33.903796495012216 ], [ -4.559612799191314, 33.952708237894853 ], [ -4.565245531056405, 34.007769477479371 ], [ -4.596509772208208, 34.035933132308173 ], [ -4.72068823857137, 34.088178006409862 ], [ -4.80587683774587, 34.192641913493503 ], [ -4.842773809863445, 34.220805569221625 ], [ -4.876053432619813, 34.220004584443984 ], [ -4.912097744015682, 34.2654023298536 ], [ -4.944653896360251, 34.265118109912805 ], [ -4.973928595228472, 34.291343899301467 ], [ -5.089451259567966, 34.290517076102162 ], [ -5.106840378880406, 34.275995999116049 ], [ -5.136321784222957, 34.302480170023784 ], [ -5.175389166676723, 34.310722560897432 ], [ -5.284168056910289, 34.274549059191713 ], [ -5.382275762616359, 34.269743150525983 ], [ -5.420516322770084, 34.28064687815089 ], [ -5.479014044562518, 34.344725654065655 ], [ -5.490692917644026, 34.370047104989908 ], [ -5.197067429818048, 34.576132717051223 ], [ -5.177869635375373, 34.631400662210751 ], [ -5.190168626081231, 34.716434230855043 ], [ -5.130611537992081, 34.767748928070546 ], [ -4.832464362340431, 34.84567698830233 ], [ -4.665652839207155, 34.947582913220856 ], [ -4.579534064045845, 34.963395901399736 ], [ -4.54010494638618, 34.988924058798261 ], [ -4.464218105281361, 35.079099432892519 ], [ -4.477653978448359, 35.127313543785021 ], [ -4.495766567273279, 35.138966580243448 ], [ -4.495432094999956, 35.18077220300006 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MA-02", "NAME_1": "Gharb - Chrarda - Béni Hssen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.722646038432041, 34.182442440938175 ], [ -6.667795376999948, 34.280503648000035 ], [ -6.547759568999936, 34.434719143000052 ], [ -6.292103644999941, 34.880804755000042 ], [ -6.249209009091353, 35.001396854296509 ], [ -6.113083868925401, 35.010163072367902 ], [ -5.781708747360824, 34.930684719424221 ], [ -5.633009813052411, 34.82296519638669 ], [ -5.513042975253086, 34.819890449384729 ], [ -5.420102911620063, 34.737724921268068 ], [ -5.34951290469678, 34.714677232568192 ], [ -5.239235398594758, 34.725942695399056 ], [ -5.190168626081231, 34.716434230855043 ], [ -5.177869635375373, 34.631400662210751 ], [ -5.197067429818048, 34.576132717051223 ], [ -5.490692917644026, 34.370047104989908 ], [ -5.420516322770084, 34.28064687815089 ], [ -5.454467739094866, 34.212821559867052 ], [ -5.450514492050161, 34.17830170276136 ], [ -5.571230637783742, 34.129441636722163 ], [ -5.702772995877069, 34.14246409783982 ], [ -5.742072923226829, 34.191970119925088 ], [ -5.788814255773275, 34.211865546357842 ], [ -5.885061611304309, 34.116729233966964 ], [ -5.917126838133072, 34.105153714572225 ], [ -6.017120734234481, 34.107194932799871 ], [ -6.202225715144664, 34.157605292450285 ], [ -6.362836065631939, 34.168560696019313 ], [ -6.555098231797956, 34.12029490828337 ], [ -6.687854986718264, 34.157243557244328 ], [ -6.722646038432041, 34.182442440938175 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MA-07", "NAME_1": "Rabat - Salé - Zemmour - Zaer" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.117014127300138, 33.834865627546662 ], [ -6.927357550999943, 33.944159247000073 ], [ -6.822092251999948, 34.039618231000077 ], [ -6.722646038432041, 34.182442440938175 ], [ -6.687854986718264, 34.157243557244328 ], [ -6.555098231797956, 34.12029490828337 ], [ -6.362836065631939, 34.168560696019313 ], [ -6.202225715144664, 34.157605292450285 ], [ -6.017120734234481, 34.107194932799871 ], [ -5.885061611304309, 34.116729233966964 ], [ -5.837183397196043, 34.088100491144758 ], [ -5.771864386032576, 33.980665188047965 ], [ -5.759772100901728, 33.955472927433618 ], [ -5.786540492649635, 33.885993964549812 ], [ -5.724528774283499, 33.787963772310206 ], [ -5.739540777684738, 33.718820706210579 ], [ -5.789020962247605, 33.61960195646509 ], [ -5.807004359863299, 33.401010647223586 ], [ -5.788090786260796, 33.350264390788993 ], [ -5.835426398009872, 33.327681790082522 ], [ -5.949502122425031, 33.332384345061428 ], [ -6.024174566702925, 33.315589504951674 ], [ -6.197523159266382, 33.365870673392862 ], [ -6.213026089082746, 33.438114324916114 ], [ -6.328626267788025, 33.475424709982349 ], [ -6.35358598530496, 33.468293362248858 ], [ -6.399293789077092, 33.382458807927605 ], [ -6.40854387030339, 33.334968167446959 ], [ -6.39329932290542, 33.268021349205867 ], [ -6.419783493813213, 33.238307399866585 ], [ -6.555563319791361, 33.187948717059612 ], [ -6.73152157226275, 33.242803250169857 ], [ -6.80709835500511, 33.282800807711112 ], [ -6.820379197641842, 33.330084744415387 ], [ -6.801439784718298, 33.422714748786632 ], [ -6.815779994551121, 33.466122951912666 ], [ -6.782758755112468, 33.534697577231384 ], [ -6.788081426816404, 33.552474270171388 ], [ -6.978689948382396, 33.614124254230944 ], [ -7.058400845322751, 33.784320584527336 ], [ -7.117014127300138, 33.834865627546662 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MA-09", "NAME_1": "Chaouia - Ouardigha" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.341135219999956, 33.73110586100006 ], [ -7.192941860999952, 33.817694403000075 ], [ -7.114598964670506, 33.833128973723149 ], [ -7.038066169318256, 33.751738592861727 ], [ -6.978689948382396, 33.614124254230944 ], [ -6.788081426816404, 33.552474270171388 ], [ -6.782758755112468, 33.534697577231384 ], [ -6.815779994551121, 33.466122951912666 ], [ -6.801904872711702, 33.441628323288455 ], [ -6.820379197641842, 33.330084744415387 ], [ -6.80709835500511, 33.282800807711112 ], [ -6.73152157226275, 33.242803250169857 ], [ -6.555563319791361, 33.187948717059612 ], [ -6.419783493813213, 33.238307399866585 ], [ -6.403453741696808, 33.19544179909974 ], [ -6.202794155026254, 33.077774562845775 ], [ -6.132720912939817, 33.011835435856653 ], [ -6.15354651535938, 32.925897528747953 ], [ -6.057454188559973, 32.897165432238864 ], [ -6.037067836611357, 32.857116196954905 ], [ -6.041667038802814, 32.79306325946186 ], [ -6.063241950055954, 32.760765489535686 ], [ -6.292091029977087, 32.701802679749846 ], [ -6.578611009390556, 32.721000475091842 ], [ -6.661370814911209, 32.684775296542682 ], [ -6.857612067442972, 32.690588893762424 ], [ -6.979103358633097, 32.638912462240341 ], [ -7.069717983198359, 32.407272854358723 ], [ -7.126665412278953, 32.346604723129474 ], [ -7.195911831166086, 32.35613902429651 ], [ -7.37176672995065, 32.458923448358462 ], [ -7.576431239610031, 32.479619859568857 ], [ -7.645806850605652, 32.504527900242408 ], [ -7.750038214591939, 32.626432603481817 ], [ -7.908814053325898, 32.736400051221381 ], [ -7.968086920574933, 32.801874091116417 ], [ -8.001599087328032, 32.867761542161418 ], [ -8.034439459613395, 32.880241400919886 ], [ -8.064179245575758, 32.957471829161591 ], [ -8.075677253302615, 33.083407293811547 ], [ -8.117922736445166, 33.167769069786743 ], [ -8.090405035863739, 33.212960110520669 ], [ -8.019918381727962, 33.246033026802706 ], [ -7.968474494202553, 33.335097357756808 ], [ -7.978344692153826, 33.415066637115615 ], [ -8.011572225277973, 33.46643253903045 ], [ -7.88601930898396, 33.509147704034255 ], [ -7.681256882798891, 33.441964220072691 ], [ -7.590280523927049, 33.445814114329892 ], [ -7.576896327603436, 33.432481593950399 ], [ -7.61131283192168, 33.404834703059066 ], [ -7.613689947832825, 33.383027248708515 ], [ -7.581418016328371, 33.362485867129067 ], [ -7.426311203799003, 33.472298285237628 ], [ -7.393496669935359, 33.525912583998547 ], [ -7.394194301925495, 33.634458930235439 ], [ -7.341135219999956, 33.73110586100006 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MA-08", "NAME_1": "Grand Casablanca" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.88601930898396, 33.509147704034255 ], [ -7.869740363999938, 33.526556708000044 ], [ -7.700998501999948, 33.58274974200009 ], [ -7.667551235999952, 33.612697658000059 ], [ -7.606190558999913, 33.608343817000048 ], [ -7.529123501999948, 33.632635809000078 ], [ -7.406361456999946, 33.726996161000045 ], [ -7.341135219999956, 33.73110586100006 ], [ -7.394194301925495, 33.634458930235439 ], [ -7.393496669935359, 33.525912583998547 ], [ -7.426311203799003, 33.472298285237628 ], [ -7.581418016328371, 33.362485867129067 ], [ -7.613689947832825, 33.383027248708515 ], [ -7.61131283192168, 33.404834703059066 ], [ -7.576896327603436, 33.432481593950399 ], [ -7.590280523927049, 33.445814114329892 ], [ -7.681256882798891, 33.441964220072691 ], [ -7.88601930898396, 33.509147704034255 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MA-10", "NAME_1": "Doukkala - Abda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.458767340731134, 31.944620516953105 ], [ -9.366118943999936, 32.026312567000048 ], [ -9.328114386999914, 32.130438544000071 ], [ -9.277740037999934, 32.196600653000075 ], [ -9.264759894999941, 32.330633856000077 ], [ -9.291981574999909, 32.350816148000035 ], [ -9.248850063999953, 32.452541408000059 ], [ -9.278309699999909, 32.529527085000041 ], [ -9.259917772999927, 32.57689036700009 ], [ -9.112172003999945, 32.682847398000035 ], [ -8.998524542999917, 32.797105210000041 ], [ -8.867787238999938, 32.881903387000079 ], [ -8.62913977799991, 33.127630927000041 ], [ -8.621001756999931, 33.173529364000046 ], [ -8.529164191999939, 33.268703518000052 ], [ -8.451649542999917, 33.264227606000077 ], [ -8.378773566999939, 33.304673570000034 ], [ -8.284657355999911, 33.389837958000044 ], [ -8.011572225277973, 33.46643253903045 ], [ -7.978344692153826, 33.415066637115615 ], [ -7.968474494202553, 33.335097357756808 ], [ -8.019918381727962, 33.246033026802706 ], [ -8.090405035863739, 33.212960110520669 ], [ -8.117922736445166, 33.167769069786743 ], [ -8.075677253302615, 33.083407293811547 ], [ -8.053740606843519, 32.913753566773664 ], [ -8.034439459613395, 32.880241400919886 ], [ -8.001599087328032, 32.867761542161418 ], [ -7.990204434187319, 32.834042669833309 ], [ -8.051079270991579, 32.787378852551967 ], [ -8.091464403059774, 32.582610989205762 ], [ -8.199235602041426, 32.490885322399663 ], [ -8.450460577993283, 32.335003364413694 ], [ -8.449530402006474, 32.288830470849518 ], [ -8.391549445050828, 32.200903022356556 ], [ -8.278042161416636, 32.142947902923368 ], [ -8.263701951583812, 32.11176117613735 ], [ -8.274967414414675, 32.056079819827801 ], [ -8.33362016403936, 31.989623928001834 ], [ -8.449530402006474, 31.773590602724141 ], [ -8.566939255841987, 31.744858507114373 ], [ -8.857154099881825, 31.765012315066258 ], [ -8.969033576438392, 31.798266100300282 ], [ -9.055617437794524, 31.908931179130605 ], [ -9.184420945670126, 31.93024770796535 ], [ -9.333765835125178, 31.902885037014812 ], [ -9.458767340731134, 31.944620516953105 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MA-11", "NAME_1": "Marrakech - Tensift - Al Haouz" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.823608997370586, 30.959954031053226 ], [ -9.827707485999952, 31.067450262000079 ], [ -9.847523566999939, 31.121283270000049 ], [ -9.806630011999914, 31.343451239000046 ], [ -9.847523566999939, 31.402411200000074 ], [ -9.694203253999945, 31.62571849200009 ], [ -9.667307094999956, 31.731146552000041 ], [ -9.483794725999928, 31.922552802000041 ], [ -9.458767340731134, 31.944620516953105 ], [ -9.333765835125178, 31.902885037014812 ], [ -9.184420945670126, 31.93024770796535 ], [ -9.055617437794524, 31.908931179130605 ], [ -8.969033576438392, 31.798266100300282 ], [ -8.857154099881825, 31.765012315066258 ], [ -8.566939255841987, 31.744858507114373 ], [ -8.449530402006474, 31.773590602724141 ], [ -8.33362016403936, 31.989623928001834 ], [ -8.274967414414675, 32.056079819827801 ], [ -8.263701951583812, 32.11176117613735 ], [ -8.278042161416636, 32.142947902923368 ], [ -8.391549445050828, 32.200903022356556 ], [ -8.449530402006474, 32.288830470849518 ], [ -8.450460577993283, 32.335003364413694 ], [ -8.199235602041426, 32.490885322399663 ], [ -8.091464403059774, 32.582610989205762 ], [ -8.051079270991579, 32.787378852551967 ], [ -7.990204434187319, 32.834042669833309 ], [ -7.908814053325898, 32.736400051221381 ], [ -7.750038214591939, 32.626432603481817 ], [ -7.621131353928831, 32.489205838478654 ], [ -7.37176672995065, 32.458923448358462 ], [ -7.195911831166086, 32.35613902429651 ], [ -7.126665412278953, 32.346604723129474 ], [ -7.109043748070519, 32.305186062286907 ], [ -7.113203700690235, 32.15341238007727 ], [ -7.097726610194911, 32.065484931584308 ], [ -7.027601691265033, 31.881852729020181 ], [ -7.040779181114317, 31.829142767824464 ], [ -7.080518358035818, 31.785863755907599 ], [ -7.223920457263318, 31.759353746578142 ], [ -7.268801438735409, 31.734678249901265 ], [ -7.284433559760998, 31.696928616162666 ], [ -7.14994564497556, 31.562104803693728 ], [ -7.186455044364834, 31.447176419456184 ], [ -7.326343146119314, 31.340593777081153 ], [ -7.825098231598133, 31.140140895985553 ], [ -7.890133021921429, 31.095518296931857 ], [ -7.989351771666918, 30.975112210460111 ], [ -8.033819341989044, 30.94640595147348 ], [ -8.164354009729777, 30.955526842389872 ], [ -8.360285202999705, 30.898734442940167 ], [ -8.596343145919434, 30.897726751688197 ], [ -8.750700648715963, 30.877779649311321 ], [ -8.792610235973598, 30.952994696847782 ], [ -8.820102098133304, 30.96878184750426 ], [ -9.048460251639312, 30.855403754179918 ], [ -9.23671749481656, 30.847213040149654 ], [ -9.330742764067338, 30.882559719555388 ], [ -9.547680426010857, 30.881939601931037 ], [ -9.643411016705045, 30.830056463934625 ], [ -9.690384894147542, 30.829358831944546 ], [ -9.768183763170157, 30.9259937611032 ], [ -9.823608997370586, 30.959954031053226 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MA-05", "NAME_1": "Fès - Boulemane" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.175389166676723, 34.310722560897432 ], [ -5.136321784222957, 34.302480170023784 ], [ -5.106840378880406, 34.275995999116049 ], [ -5.089451259567966, 34.290517076102162 ], [ -4.991007656178397, 34.293281764741607 ], [ -4.944653896360251, 34.265118109912805 ], [ -4.912097744015682, 34.2654023298536 ], [ -4.876053432619813, 34.220004584443984 ], [ -4.842773809863445, 34.220805569221625 ], [ -4.80587683774587, 34.192641913493503 ], [ -4.72068823857137, 34.088178006409862 ], [ -4.596509772208208, 34.035933132308173 ], [ -4.565245531056405, 34.007769477479371 ], [ -4.559612799191314, 33.952708237894853 ], [ -4.476568772830603, 33.903796495012216 ], [ -4.185242885650666, 33.904804186264187 ], [ -4.186586472787496, 33.870284329158437 ], [ -4.064500902394741, 33.708847154572481 ], [ -4.081114875351204, 33.668642890556953 ], [ -4.072381558062489, 33.571749578979848 ], [ -4.027733119687753, 33.548391831917513 ], [ -3.974092983404489, 33.536428737995834 ], [ -3.885752121962867, 33.552164211808929 ], [ -3.86479732923334, 33.513381049295958 ], [ -3.850844692128874, 33.516042385147955 ], [ -3.811880661563293, 33.574565945362053 ], [ -3.817151659121805, 33.600042425917195 ], [ -3.798083054988979, 33.643993232301796 ], [ -3.576287808435609, 33.859303087167746 ], [ -3.498902349663695, 33.907543036481911 ], [ -3.425883550885146, 33.895605780982009 ], [ -3.342710334214587, 33.837831528702054 ], [ -3.069936286330574, 33.769721992276118 ], [ -3.050686815044514, 33.754322415247259 ], [ -3.060608689839171, 33.717477118174429 ], [ -3.237367926188824, 33.543870144091841 ], [ -3.21439775185479, 33.512605902940038 ], [ -3.089780035919944, 33.439509588896385 ], [ -2.982964850447502, 33.341996161493626 ], [ -2.926120775053732, 33.210996405759488 ], [ -3.033762782826159, 33.148622952187452 ], [ -3.319352586252876, 33.101674913166676 ], [ -3.59825029061841, 33.087231350546347 ], [ -3.678038702823869, 33.029586290374993 ], [ -3.861076626185366, 32.822958075055112 ], [ -3.999181891231331, 32.617337550987145 ], [ -4.187361619143417, 32.613151759945765 ], [ -4.237100186124678, 32.629093940233133 ], [ -4.279345669267229, 32.652710068814599 ], [ -4.397426316671158, 32.802235826322317 ], [ -4.493492804149582, 32.884478867905386 ], [ -4.719422165800324, 32.925484116698613 ], [ -4.754898037314604, 32.950392158271484 ], [ -4.780426194713129, 33.023591824203322 ], [ -4.86406450027647, 33.127073880255352 ], [ -4.994134080023798, 33.41690114976825 ], [ -4.980026414187648, 33.459146632910745 ], [ -4.897912562914428, 33.540692044302375 ], [ -4.90413957398215, 33.594073798167244 ], [ -4.932664964016908, 33.63851553006765 ], [ -4.976770799133078, 33.666033229749758 ], [ -5.119139369586264, 33.693137519181164 ], [ -5.148439906876206, 33.717890530223769 ], [ -5.151824714039321, 33.748973904222282 ], [ -5.087875129333781, 33.836281235990214 ], [ -5.247658656621695, 34.108874416720937 ], [ -5.313339402991062, 34.089728298222383 ], [ -5.329384935166615, 34.10218231945845 ], [ -5.352174242347417, 34.197809557365133 ], [ -5.420516322770084, 34.28064687815089 ], [ -5.320315721093664, 34.268812975438436 ], [ -5.175389166676723, 34.310722560897432 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MA-12", "NAME_1": "Tadla - Azilal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.041667038802814, 32.79306325946186 ], [ -5.899453497980574, 32.744125678157502 ], [ -5.774732428358902, 32.643175768546882 ], [ -5.652259284338527, 32.603255724472092 ], [ -5.522267218057664, 32.528815823291609 ], [ -5.437311163779214, 32.507938544028548 ], [ -5.507797817015671, 32.440242417853256 ], [ -5.527279832298404, 32.389935410990404 ], [ -5.46842037619939, 32.262087918422651 ], [ -5.476120163814528, 32.245189723726753 ], [ -5.555856899176547, 32.243639431014913 ], [ -5.637867396762942, 32.214726467352591 ], [ -5.821060349755328, 32.102097682861768 ], [ -5.851626959816372, 32.057681790282402 ], [ -5.859610968271568, 32.013420925535286 ], [ -5.828656784582961, 31.985179755441322 ], [ -5.80591915514492, 31.93024770796535 ], [ -5.860954556307718, 31.868313503964998 ], [ -6.056291470375072, 31.752790838726185 ], [ -6.431307339062471, 31.583653876525148 ], [ -6.702556931756988, 31.494718735880951 ], [ -6.74870398600018, 31.431751004005605 ], [ -6.803868576573564, 31.392270209502556 ], [ -6.88996151421253, 31.372013047863845 ], [ -6.983676724201473, 31.373098253481601 ], [ -7.109508836063924, 31.402347113928158 ], [ -7.186455044364834, 31.447176419456184 ], [ -7.14994564497556, 31.562104803693728 ], [ -7.284433559760998, 31.696928616162666 ], [ -7.268801438735409, 31.734678249901265 ], [ -7.223920457263318, 31.759353746578142 ], [ -7.080518358035818, 31.785863755907599 ], [ -7.040779181114317, 31.829142767824464 ], [ -7.027601691265033, 31.881852729020181 ], [ -7.097726610194911, 32.065484931584308 ], [ -7.113203700690235, 32.15341238007727 ], [ -7.109043748070519, 32.305186062286907 ], [ -7.126665412278953, 32.346604723129474 ], [ -7.069717983198359, 32.407272854358723 ], [ -6.979103358633097, 32.638912462240341 ], [ -6.857612067442972, 32.690588893762424 ], [ -6.661370814911209, 32.684775296542682 ], [ -6.578611009390556, 32.721000475091842 ], [ -6.292091029977087, 32.701802679749846 ], [ -6.215041469787991, 32.714256700086594 ], [ -6.091741501668992, 32.747303778846288 ], [ -6.041667038802814, 32.79306325946186 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/myanmar.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/myanmar.geojson new file mode 100644 index 000000000000..bac8ea1c1ff8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/myanmar.geojson @@ -0,0 +1,20 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "MM-16", "NAME_1": "Rakhine" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.57060754400004, 21.247283020000012 ], [ 92.614325806000068, 21.263147685000021 ], [ 92.641039906000117, 21.30858591800002 ], [ 92.66920698391516, 21.296917425998402 ], [ 92.780001254853971, 21.156124985779456 ], [ 92.83508833196089, 21.059541734363506 ], [ 92.869194777017299, 21.037269192019608 ], [ 92.939681431153076, 21.079566352005543 ], [ 93.132641229309229, 21.044090481390583 ], [ 93.168401319864984, 20.901334337309777 ], [ 93.224005161808748, 20.859993190833052 ], [ 93.246226027309262, 20.806766465699809 ], [ 93.47401574093368, 20.673699653316305 ], [ 93.547499627705633, 20.680133368160398 ], [ 93.602483352025047, 20.663416043315749 ], [ 93.671523065337169, 20.698271796306358 ], [ 93.683615349568697, 20.715919298037136 ], [ 93.651782667635985, 20.782685248225619 ], [ 93.655813429945795, 20.853947047817996 ], [ 93.689093051802843, 20.891903388030926 ], [ 93.734981723627584, 20.881413072455302 ], [ 93.802161085865407, 20.762273057855339 ], [ 93.854354283123655, 20.75087840381525 ], [ 93.904583774721402, 20.701914984988548 ], [ 93.913782180003579, 20.564352322301829 ], [ 93.983855422090016, 20.544689438966429 ], [ 94.011657342612239, 20.517946886539562 ], [ 94.155937940983165, 20.287392483376379 ], [ 94.207614374303887, 20.166676336743535 ], [ 94.256190220402289, 20.111356716539206 ], [ 94.265181919210136, 20.016943875459447 ], [ 94.341352981155126, 19.933073025000112 ], [ 94.324816521665127, 19.831968084859227 ], [ 94.369775018402322, 19.730578924777546 ], [ 94.430133091269113, 19.451345322728457 ], [ 94.555500116037479, 19.264095770803181 ], [ 94.559530878347346, 19.236448879012528 ], [ 94.542684361394151, 19.233089911170453 ], [ 94.533589308899423, 19.197898261395608 ], [ 94.559530878347346, 19.114931749400682 ], [ 94.634461704144314, 19.075502630841697 ], [ 94.68231408073018, 19.024988919303155 ], [ 94.718487583335275, 18.943727728751639 ], [ 94.804683871963107, 18.837170924798329 ], [ 94.797242465867043, 18.813063869801738 ], [ 94.720141228834621, 18.78378917093346 ], [ 94.791868117319723, 18.697153631834624 ], [ 94.744015740733801, 18.623566392275166 ], [ 94.775848422666513, 18.535974840566439 ], [ 94.76365278474816, 18.466315008730646 ], [ 94.836516554795139, 18.357768663393074 ], [ 94.890053339190217, 18.236535752822704 ], [ 94.875377231673838, 17.99885000282535 ], [ 94.857910597995669, 17.94236766173816 ], [ 94.90297244662105, 17.833743801135483 ], [ 94.868969354352203, 17.696930447282284 ], [ 94.809541456572902, 17.623989162869577 ], [ 94.799412876203235, 17.465394192188228 ], [ 94.754351026678478, 17.371653143777564 ], [ 94.636218703330428, 17.41624990530886 ], [ 94.56771864799714, 17.462880298387063 ], [ 94.560313347000033, 17.582098700000074 ], [ 94.615000847000033, 17.54555898600006 ], [ 94.590668165000068, 17.593247789000088 ], [ 94.595225457000026, 17.615464585000041 ], [ 94.562998894000032, 17.661688544000071 ], [ 94.543955925000034, 17.748032945000091 ], [ 94.501719597000033, 17.786607164000088 ], [ 94.483409050000034, 17.902289130000042 ], [ 94.447438998000052, 17.973334052000041 ], [ 94.45085696700005, 18.002427476000037 ], [ 94.492198113000029, 18.025946356000077 ], [ 94.490570509000065, 18.072495835000041 ], [ 94.422862175000034, 18.24249909100007 ], [ 94.341563347000033, 18.24750397300005 ], [ 94.32585696700005, 18.267726955000057 ], [ 94.331065300000034, 18.303127346000053 ], [ 94.389170769000032, 18.286037502000056 ], [ 94.417002800000034, 18.313950914000088 ], [ 94.389659050000034, 18.362697658000059 ], [ 94.350596550000034, 18.375230210000041 ], [ 94.331065300000034, 18.425970770000049 ], [ 94.258962436000047, 18.509019273000092 ], [ 94.244965040000068, 18.539252020000049 ], [ 94.262217644000032, 18.545111395000049 ], [ 94.248789910000028, 18.638861395000049 ], [ 94.148936394000032, 18.731024481000077 ], [ 94.211599155000044, 18.725531317000048 ], [ 94.279307488000029, 18.738511460000041 ], [ 94.252452019000032, 18.752142645000049 ], [ 94.212412957000026, 18.741848049000055 ], [ 94.153086785000028, 18.82103099200009 ], [ 94.148936394000032, 18.868231512000079 ], [ 94.135101759000065, 18.820461330000057 ], [ 94.119639519000032, 18.816636460000041 ], [ 94.038096550000034, 18.859116929000038 ], [ 94.036631707000026, 18.918036200000074 ], [ 94.053233269000032, 18.936509507000039 ], [ 94.041188998000052, 18.997626044000071 ], [ 94.06609134200005, 19.042873440000051 ], [ 94.060069207000026, 19.063706773000035 ], [ 94.094248894000032, 19.08734772300005 ], [ 94.04656009200005, 19.081122137000079 ], [ 94.029063347000033, 19.095404364000046 ], [ 94.032725457000026, 19.169256903000075 ], [ 94.053233269000032, 19.221380927000041 ], [ 94.045909050000034, 19.304673570000091 ], [ 94.06967207100007, 19.350897528000075 ], [ 94.066905144000032, 19.38898346600007 ], [ 94.025238477000073, 19.28656647300005 ], [ 94.033376498000052, 19.20453522300005 ], [ 93.973480665000068, 19.146307684000078 ], [ 93.947113477000073, 19.159654039000088 ], [ 93.937266472000033, 19.204657294000071 ], [ 93.92546634200005, 19.210272528000075 ], [ 93.910411004000082, 19.190985419000071 ], [ 93.955414259000065, 19.126898505000042 ], [ 93.95248457100007, 19.032049872000073 ], [ 93.984385613000029, 18.967840887000079 ], [ 93.97388756600003, 18.922796942000048 ], [ 93.937266472000033, 18.889349677000041 ], [ 93.944102410000028, 18.868231512000079 ], [ 93.930430535000028, 18.858628648000035 ], [ 93.81373131600003, 18.94399648600006 ], [ 93.734629754000082, 18.98118724200009 ], [ 93.703868035000028, 19.018459377000056 ], [ 93.678884311000047, 19.019598700000074 ], [ 93.642344597000033, 19.13422272300005 ], [ 93.594004754000082, 19.176703192000048 ], [ 93.487071160000028, 19.333726304000038 ], [ 93.490896030000044, 19.407619533000059 ], [ 93.552989129000082, 19.430568752000056 ], [ 93.56804446700005, 19.406724351000037 ], [ 93.611338738000029, 19.403265692000048 ], [ 93.636973504000082, 19.34906647300005 ], [ 93.621348504000082, 19.334377346000053 ], [ 93.717539910000028, 19.293402411000045 ], [ 93.722911004000082, 19.268459377000056 ], [ 93.754649285000028, 19.247137762000079 ], [ 93.834239129000082, 19.238185940000051 ], [ 93.929942254000082, 19.299750067000048 ], [ 93.987315300000034, 19.386704820000091 ], [ 93.984385613000029, 19.464056708000044 ], [ 93.923838738000029, 19.462388414000088 ], [ 93.91920006600003, 19.484279690000051 ], [ 93.937266472000033, 19.492010809000078 ], [ 93.88209069100003, 19.501898505000042 ], [ 93.731211785000028, 19.632554429000038 ], [ 93.756114129000082, 19.661078192000048 ], [ 93.80005944100003, 19.656480210000041 ], [ 93.794444207000083, 19.673570054000038 ], [ 93.82740319100003, 19.718573309000078 ], [ 93.806813998000052, 19.745835679000038 ], [ 93.783864780000044, 19.691107489000046 ], [ 93.76107832100007, 19.674872137000079 ], [ 93.720957879000082, 19.685288804000038 ], [ 93.709483269000032, 19.71352773600006 ], [ 93.718760613000029, 19.74359772300005 ], [ 93.75163821700005, 19.765692450000074 ], [ 93.72193444100003, 19.76898834800005 ], [ 93.693532748000052, 19.724798895000049 ], [ 93.648448113000029, 19.725165106000077 ], [ 93.635508660000028, 19.759507554000038 ], [ 93.601410352000073, 19.718573309000078 ], [ 93.606455925000034, 19.796128648000035 ], [ 93.660655144000032, 19.870835679000038 ], [ 93.738047722000033, 19.882473049000055 ], [ 93.725596550000034, 19.905585028000075 ], [ 93.740000847000033, 19.925116278000075 ], [ 93.717539910000028, 19.937689520000049 ], [ 93.707530144000032, 19.916571356000077 ], [ 93.611338738000029, 19.910345770000049 ], [ 93.580739780000044, 19.881333726000037 ], [ 93.546722852000073, 19.902899481000077 ], [ 93.565928582000083, 19.916571356000077 ], [ 93.518321160000028, 19.939601955000057 ], [ 93.531911655000044, 19.951361395000049 ], [ 93.511973504000082, 19.970445054000038 ], [ 93.531911655000044, 19.984849351000037 ], [ 93.525645379000082, 19.999172268000052 ], [ 93.492198113000029, 19.964992580000057 ], [ 93.470469597000033, 19.984849351000037 ], [ 93.457041863000029, 19.954250393000052 ], [ 93.42318769600007, 19.965318101000037 ], [ 93.382334832000083, 20.08852773600006 ], [ 93.361827019000032, 20.026434637000079 ], [ 93.340668165000068, 20.10219961100006 ], [ 93.312754754000082, 20.065375067000048 ], [ 93.272471550000034, 20.04751211100006 ], [ 93.190277540000068, 20.064439195000091 ], [ 93.176280144000032, 20.053697007000039 ], [ 93.128428582000083, 20.094671942000048 ], [ 93.176280144000032, 19.957505601000037 ], [ 93.235850457000083, 19.847235419000071 ], [ 93.238291863000029, 19.820990302000041 ], [ 93.201426629000082, 19.862779039000088 ], [ 93.14812259200005, 19.994330145000049 ], [ 93.131521030000044, 20.00657786700009 ], [ 93.109141472000033, 19.993801174000055 ], [ 93.106130405000044, 19.930650132000039 ], [ 93.134532097000033, 19.84829336100006 ], [ 93.168793165000068, 19.807318427000041 ], [ 93.125010613000029, 19.846665757000039 ], [ 93.03842207100007, 20.012925523000035 ], [ 92.980723504000082, 20.077948309000078 ], [ 92.970225457000083, 20.129461981000077 ], [ 93.042491082000083, 20.129461981000077 ], [ 93.080088738000029, 20.170477606000077 ], [ 93.094248894000032, 20.149969794000071 ], [ 93.120941602000073, 20.211981512000079 ], [ 93.08920332100007, 20.210353908000059 ], [ 93.018565300000034, 20.149969794000071 ], [ 92.990489129000082, 20.15493398600006 ], [ 93.00123131600003, 20.239325262000079 ], [ 93.041270379000082, 20.332017320000091 ], [ 93.091319207000083, 20.381008205000057 ], [ 93.100433790000068, 20.43109772300005 ], [ 93.059580925000034, 20.362250067000048 ], [ 93.043223504000082, 20.364935614000046 ], [ 93.031016472000033, 20.409654039000088 ], [ 93.08562259200005, 20.532945054000038 ], [ 93.073252800000034, 20.554632880000042 ], [ 93.022634311000047, 20.452541408000059 ], [ 93.016286655000044, 20.32485586100006 ], [ 92.898448113000029, 20.135687567000048 ], [ 92.867686394000032, 20.122015692000048 ], [ 92.772146030000044, 20.20148346600007 ], [ 92.778168165000068, 20.231634833000044 ], [ 92.864024285000028, 20.300767320000091 ], [ 92.942881707000083, 20.321234442000048 ], [ 92.893321160000028, 20.32953522300005 ], [ 92.84693444100003, 20.377346096000053 ], [ 92.826914910000028, 20.495062567000048 ], [ 92.79265384200005, 20.506252346000053 ], [ 92.79656009200005, 20.48383209800005 ], [ 92.769297722000033, 20.455064195000091 ], [ 92.758555535000028, 20.47211334800005 ], [ 92.77898196700005, 20.478257554000038 ], [ 92.750987175000034, 20.498521226000037 ], [ 92.720713738000029, 20.592230536000045 ], [ 92.635020379000082, 20.69798411700009 ], [ 92.70826256600003, 20.578680731000077 ], [ 92.737478061000047, 20.44476959800005 ], [ 92.731211785000028, 20.259182033000059 ], [ 92.653168165000068, 20.41828034100007 ], [ 92.539886915000068, 20.527533270000049 ], [ 92.507009311000047, 20.609279690000051 ], [ 92.453623894000032, 20.668524481000077 ], [ 92.381114129000082, 20.700140692000048 ], [ 92.281016472000033, 20.959418036000045 ], [ 92.270518425000034, 21.049017645000049 ], [ 92.224272095000117, 21.093183899000039 ], [ 92.174972779000029, 21.175607809000027 ], [ 92.183654419000106, 21.317201233 ], [ 92.236261028000058, 21.417091777000039 ], [ 92.284526815000106, 21.419055481000086 ], [ 92.32266402200014, 21.461895243000029 ], [ 92.35470341000007, 21.451818340000088 ], [ 92.400282024000035, 21.370996400000124 ], [ 92.524512167000069, 21.361126201000033 ], [ 92.57060754400004, 21.247283020000012 ] ] ], [ [ [ 93.74537194100003, 18.799994208000044 ], [ 93.75904381600003, 18.755560614000046 ], [ 93.731944207000083, 18.689683335000041 ], [ 93.693125847000033, 18.673773505000042 ], [ 93.645274285000028, 18.679348049000055 ], [ 93.497813347000033, 18.840887762000079 ], [ 93.484141472000033, 18.874986070000091 ], [ 93.577159050000034, 18.881903387000079 ], [ 93.621755405000044, 18.910345770000049 ], [ 93.66334069100003, 18.873195705000057 ], [ 93.742442254000082, 18.872300523000035 ], [ 93.74537194100003, 18.799994208000044 ] ] ], [ [ [ 93.970713738000029, 19.416937567000048 ], [ 93.965830925000034, 19.363023179000038 ], [ 93.917165561000047, 19.318304755000042 ], [ 93.889414910000028, 19.299627997000073 ], [ 93.862803582000083, 19.307766018000052 ], [ 93.856944207000083, 19.278876044000071 ], [ 93.802744988000029, 19.276678778000075 ], [ 93.749847852000073, 19.333319403000075 ], [ 93.725352410000028, 19.386867580000057 ], [ 93.730479363000029, 19.419256903000075 ], [ 93.669118686000047, 19.446478583000044 ], [ 93.641774936000047, 19.492010809000078 ], [ 93.688161655000044, 19.559475002000056 ], [ 93.723643425000034, 19.556382554000038 ], [ 93.81999759200005, 19.471502997000073 ], [ 93.88021894600007, 19.479193427000041 ], [ 93.970713738000029, 19.416937567000048 ] ] ], [ [ [ 93.50521894600007, 19.807318427000041 ], [ 93.511973504000082, 19.745835679000038 ], [ 93.44068444100003, 19.810939846000053 ], [ 93.402842644000032, 19.953070380000042 ], [ 93.44263756600003, 19.93813711100006 ], [ 93.498789910000028, 19.88703034100007 ], [ 93.50521894600007, 19.807318427000041 ] ] ], [ [ [ 92.964040561000047, 20.036688544000071 ], [ 93.014659050000034, 19.905585028000075 ], [ 93.024912957000083, 19.827826239000046 ], [ 93.00123131600003, 19.906642971000053 ], [ 92.90943444100003, 20.06509023600006 ], [ 92.911957227000073, 20.08470286700009 ], [ 92.946462436000047, 20.070502020000049 ], [ 92.964040561000047, 20.036688544000071 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MM-14", "NAME_1": "Chin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.641039906000117, 21.30858591800002 ], [ 92.590244588000076, 21.495536601000069 ], [ 92.575568482000051, 21.733971660000051 ], [ 92.593035116000124, 21.886933899000027 ], [ 92.575878540000133, 21.977574362000027 ], [ 92.650912720000122, 22.019173890000033 ], [ 92.683778931000063, 22.154307760000066 ], [ 92.836121053000056, 22.046510722000065 ], [ 92.877462199000092, 21.957007142000052 ], [ 92.906194295000091, 22.017313538000039 ], [ 92.920973756000137, 22.021809387000062 ], [ 92.968102662000035, 21.987237854000071 ], [ 92.979884888000129, 22.002275696000041 ], [ 92.967172486000095, 22.06268544600006 ], [ 92.985465943000122, 22.095965068000012 ], [ 93.025463501000104, 22.112914937000099 ], [ 93.02453332500005, 22.201901754000076 ], [ 93.141735474000086, 22.187277324000021 ], [ 93.123545370000045, 22.230685527 ], [ 93.173671509000087, 22.259417623000033 ], [ 93.165920044000075, 22.386593323000071 ], [ 93.099154093000038, 22.511960347000027 ], [ 93.11052290900011, 22.596347962000053 ], [ 93.073935994000067, 22.671898905000077 ], [ 93.079517049000117, 22.772719626000068 ], [ 93.115897258000075, 22.798402812000049 ], [ 93.175531861000081, 22.881705220000086 ], [ 93.138221477000059, 23.005263570000054 ], [ 93.152380819000086, 23.049937846000105 ], [ 93.196512492000068, 23.053839417000077 ], [ 93.246535279000057, 23.004488424000058 ], [ 93.272786906000078, 23.005909526000053 ], [ 93.318262167000057, 23.033659770000085 ], [ 93.374899536000044, 23.129726257000087 ], [ 93.377896769000074, 23.296822001000081 ], [ 93.407248983000045, 23.34725819900008 ], [ 93.400220988000115, 23.454021709000088 ], [ 93.432363729000087, 23.647317404000106 ], [ 93.42595585100014, 23.69080312100003 ], [ 93.374796184000047, 23.739017232000023 ], [ 93.355985962000034, 23.906991475000083 ], [ 93.302965942000128, 23.995280660000063 ], [ 93.309683879000033, 24.063984477000034 ], [ 93.348544556000093, 24.088892517000104 ], [ 93.368284953000057, 24.078479716000075 ], [ 93.456651652000062, 23.959959819000076 ], [ 93.543468059000134, 23.980888774000064 ], [ 93.571063274000039, 23.968021343000046 ], [ 93.612404419000086, 24.009052430000011 ], [ 93.711106405000123, 24.005460917000036 ], [ 93.743042440000067, 23.995280660000063 ], [ 93.803710572000057, 23.936059469000057 ], [ 93.91233443200008, 23.939005025000071 ], [ 94.055064738000056, 23.88794871 ], [ 94.09971317600008, 23.842628479000084 ], [ 94.128859266941561, 23.853904873511112 ], [ 94.170097283662699, 23.694962267194853 ], [ 94.142502068715487, 23.49928945634332 ], [ 94.123485142325421, 23.475854194015824 ], [ 94.050311313915984, 23.499392809130825 ], [ 94.049071078667282, 23.347955023705367 ], [ 94.00028852699387, 23.330540065971263 ], [ 94.011450637037228, 23.277959295984715 ], [ 94.001735467817525, 23.166854967582651 ], [ 94.020028924695055, 23.052004095912253 ], [ 93.992537063434668, 22.920255032243915 ], [ 94.013931105735878, 22.81496430106165 ], [ 93.994397413609704, 22.743159898210706 ], [ 94.026126743654231, 22.590275172860913 ], [ 94.035428500824594, 22.433152981424939 ], [ 94.023749627743086, 22.395119126846225 ], [ 94.050724725065947, 22.37439687811343 ], [ 94.02147586461939, 22.312798569997994 ], [ 94.050311313915984, 22.139785875118037 ], [ 94.02147586461939, 22.049429632971169 ], [ 94.053721957702123, 21.952019558355914 ], [ 94.016928339271374, 21.921943874710053 ], [ 94.007316521939913, 21.89106720628655 ], [ 94.007006463577397, 21.790091458254153 ], [ 94.130306430797077, 21.572998765780426 ], [ 94.075529412951994, 21.436624661498911 ], [ 94.05775272001199, 21.320378525848298 ], [ 94.027987094728587, 21.265834051999889 ], [ 94.106018507747876, 21.208731594187725 ], [ 94.119144321653096, 21.111373196415855 ], [ 94.039459263134461, 20.916630561551131 ], [ 94.095889927378209, 20.760335191515878 ], [ 94.138264601729929, 20.692949123703102 ], [ 94.02302615823055, 20.651556301282255 ], [ 93.977860955918345, 20.655664577957907 ], [ 93.854354283123655, 20.75087840381525 ], [ 93.802161085865407, 20.762273057855339 ], [ 93.749761183931469, 20.86903656738366 ], [ 93.689093051802843, 20.891903388030926 ], [ 93.660981072918162, 20.867589627459324 ], [ 93.651162550910954, 20.795681870921612 ], [ 93.680308058570006, 20.705713202402364 ], [ 93.602483352025047, 20.663416043315749 ], [ 93.547499627705633, 20.680133368160398 ], [ 93.47401574093368, 20.673699653316305 ], [ 93.246226027309262, 20.806766465699809 ], [ 93.224005161808748, 20.859993190833052 ], [ 93.168401319864984, 20.901334337309777 ], [ 93.132641229309229, 21.044090481390583 ], [ 92.939681431153076, 21.079566352005543 ], [ 92.881183710259961, 21.038509426368933 ], [ 92.854828728762811, 21.043263658191279 ], [ 92.66920698391516, 21.296917425998402 ], [ 92.641039906000117, 21.30858591800002 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MM-11", "NAME_1": "Kachin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.292903280000075, 27.87755015099999 ], [ 97.338171835000082, 27.901553853000038 ], [ 97.335691366000049, 27.935608622000061 ], [ 97.362253052000028, 27.994881490000083 ], [ 97.355121705000101, 28.02304514600003 ], [ 97.292903280000075, 28.095082092 ], [ 97.328663371000118, 28.190011699000095 ], [ 97.323495728000125, 28.217477723000073 ], [ 97.36959110600003, 28.25347035700004 ], [ 97.38437056500004, 28.284837952000075 ], [ 97.447829224000088, 28.297602031000039 ], [ 97.445348755000111, 28.382971497000128 ], [ 97.527720988000112, 28.52952585900006 ], [ 97.546221151000111, 28.538465881000079 ], [ 97.613607218000027, 28.481983541000133 ], [ 97.670451294000088, 28.511284079000077 ], [ 97.699596802000087, 28.488029683000079 ], [ 97.765329224000084, 28.352430725000133 ], [ 97.797265259000028, 28.343929952000011 ], [ 97.859070272000054, 28.370129903000034 ], [ 97.897517538000102, 28.355324605000121 ], [ 97.9447497970001, 28.298842265000062 ], [ 97.992912232000094, 28.268921611000039 ], [ 97.9910518800001, 28.214015401000026 ], [ 98.04861942600013, 28.199623515000027 ], [ 98.126960897000117, 28.124279277000042 ], [ 98.10711714700011, 27.973074036000057 ], [ 98.177293742000074, 27.91292266900011 ], [ 98.176673625000035, 27.898117371000083 ], [ 98.140086711000095, 27.878557841000074 ], [ 98.196620728000028, 27.823186544000023 ], [ 98.20437219300004, 27.727300924000062 ], [ 98.25439497900004, 27.648132629000074 ], [ 98.294702596000093, 27.536614889000063 ], [ 98.328602336000074, 27.522868957000028 ], [ 98.363949015000117, 27.532170716000067 ], [ 98.38327600100007, 27.555786845000071 ], [ 98.410251099000106, 27.68425445600009 ], [ 98.492313273000093, 27.64343007399999 ], [ 98.522182252000107, 27.656297506000087 ], [ 98.578406209000093, 27.59172780400003 ], [ 98.647239217000106, 27.611726583000078 ], [ 98.679278605000093, 27.577335918000031 ], [ 98.674421021000057, 27.386598206000102 ], [ 98.707700644000113, 27.337247213000083 ], [ 98.672560669000063, 27.17560333200008 ], [ 98.691370891000076, 27.092404276000067 ], [ 98.731368449000058, 27.068788147000063 ], [ 98.737776326000073, 27.048686015 ], [ 98.712661581000077, 26.995149231000042 ], [ 98.736329386000079, 26.898255921000029 ], [ 98.714521932000082, 26.862030741000083 ], [ 98.750385376000111, 26.792009176000064 ], [ 98.73198856700003, 26.713512675000018 ], [ 98.755553019000104, 26.625042623000084 ], [ 98.721136516000058, 26.538898011000086 ], [ 98.713488403000099, 26.389449768000063 ], [ 98.657781209000063, 26.311625061000129 ], [ 98.642174927000099, 26.25452260400003 ], [ 98.677004842000088, 26.239329733000076 ], [ 98.705530233000104, 26.174940898000088 ], [ 98.680828898000129, 26.12496978800003 ], [ 98.644448690000047, 26.097891337000064 ], [ 98.624294881000139, 26.108485006000038 ], [ 98.619333944000118, 26.145743714000062 ], [ 98.5630066330001, 26.131222636000118 ], [ 98.545539999000027, 26.105642803000066 ], [ 98.582436972000096, 25.982291159000042 ], [ 98.616233358000045, 25.979397278000064 ], [ 98.68982059800004, 25.8915990200001 ], [ 98.684859660000029, 25.853100078000054 ], [ 98.610032187000058, 25.800596822000088 ], [ 98.526833131000046, 25.838785706000053 ], [ 98.498101034000058, 25.830724183000072 ], [ 98.418726034000088, 25.724219056000024 ], [ 98.347102498000027, 25.577819723000047 ], [ 98.312065877000123, 25.557459208000111 ], [ 98.276615845000094, 25.552446594000045 ], [ 98.23238081900007, 25.586553040000027 ], [ 98.140086711000095, 25.611461080000097 ], [ 98.134195598000076, 25.534618225000102 ], [ 98.099779093000052, 25.500046692000112 ], [ 98.108357381000076, 25.388890686000096 ], [ 98.075697876000106, 25.376074932000037 ], [ 98.033529907000116, 25.301299134000104 ], [ 97.97627242100009, 25.272256979000119 ], [ 97.909919881000064, 25.207558085000059 ], [ 97.888939250000135, 25.205646057000124 ], [ 97.860310507000065, 25.244093323000058 ], [ 97.823620239000093, 25.261611633000129 ], [ 97.80098596300013, 25.237633769000112 ], [ 97.754063762000101, 25.113558655000091 ], [ 97.703627564000101, 25.073922831000047 ], [ 97.70827844300004, 24.927290955 ], [ 97.772977336000054, 24.854685568000079 ], [ 97.765225871000041, 24.834660950000043 ], [ 97.66394006400003, 24.829777527000104 ], [ 97.536092570000051, 24.745028178000084 ], [ 97.538573039000028, 24.597259420000015 ], [ 97.51325158700007, 24.438586935 ], [ 97.647300252000093, 24.432334086000097 ], [ 97.68957157400007, 24.346473694000068 ], [ 97.638205201000119, 24.328102722 ], [ 97.644509725000034, 24.302393698000103 ], [ 97.718407023000111, 24.277666524 ], [ 97.724091431000033, 24.241518860000056 ], [ 97.701560506000135, 24.210926412000063 ], [ 97.72305790200005, 24.171264751000066 ], [ 97.707658325000068, 24.12529856400009 ], [ 97.516455526000129, 23.942829081000113 ], [ 97.609886515000028, 23.88314280200008 ], [ 97.624665975000028, 23.846710918 ], [ 97.647344830899158, 23.868524415469381 ], [ 97.641099888249187, 23.833170885028323 ], [ 97.586942987129135, 23.806350816437032 ], [ 97.471291131580415, 23.78526683249828 ], [ 97.420338168671492, 23.750152696189957 ], [ 97.377446731281566, 23.749816799405778 ], [ 97.309543898632, 23.705194200352025 ], [ 97.259831170971722, 23.70335968680007 ], [ 97.226964960264638, 23.679743557319284 ], [ 97.17342817586956, 23.675945339006148 ], [ 97.097567173186462, 23.645404568266201 ], [ 97.033178338909181, 23.644836127485291 ], [ 97.006616651836964, 23.657445177452985 ], [ 96.994524366706116, 23.707752184315837 ], [ 96.878252395331742, 23.721627306155256 ], [ 96.778723586324418, 23.757439073554394 ], [ 96.786785109145455, 23.776404324000339 ], [ 96.892928501049425, 23.823404038965236 ], [ 96.916803012948662, 23.90438100777726 ], [ 96.88610721167845, 23.989827989370212 ], [ 96.833293898594491, 23.96548839037689 ], [ 96.729837680964181, 24.028094387046281 ], [ 96.699348586168298, 24.070081489569077 ], [ 96.696247999845298, 24.117830512468174 ], [ 96.609845004743136, 24.227100328217546 ], [ 96.607674595306264, 24.355335395312238 ], [ 96.656250441404723, 24.417192084047429 ], [ 96.42474002473233, 24.50106293450682 ], [ 96.279322543900264, 24.479823920037859 ], [ 96.235087517574811, 24.458714098576763 ], [ 96.139796177351684, 24.548166002259165 ], [ 96.103829380321599, 24.636971950794873 ], [ 95.947869907969846, 24.690043647196546 ], [ 95.840382928029669, 24.964988105416694 ], [ 95.969574008633572, 25.011419378701362 ], [ 96.021560500316809, 25.056171169863603 ], [ 96.033859491022667, 25.040254827997899 ], [ 96.015876093406973, 24.963437811805534 ], [ 96.039233839569988, 24.957159124793748 ], [ 96.068275995340855, 24.98594289814622 ], [ 96.073133579051387, 25.078030300158218 ], [ 95.987970819197926, 25.199702460300273 ], [ 95.977222121203909, 25.241353665139513 ], [ 95.96854048075852, 25.515652167313647 ], [ 95.989624464697272, 25.567147732581759 ], [ 96.04316124909235, 25.533713080194502 ], [ 96.060834589244848, 25.538829047222748 ], [ 96.166357862625205, 25.632079169218287 ], [ 96.181860793340888, 25.671663316508841 ], [ 96.117575310951793, 25.760495103466212 ], [ 96.077681106198042, 25.872865505538641 ], [ 96.130081008131981, 25.999989529493178 ], [ 96.163774042038369, 26.03107290349169 ], [ 96.154885695118708, 26.142203071214738 ], [ 96.084088982620415, 26.262247423379847 ], [ 96.078197870135568, 26.303045965698743 ], [ 96.00688439280043, 26.408879299240255 ], [ 96.019906853918144, 26.435518499778937 ], [ 96.102175733922934, 26.457558499025481 ], [ 96.151681756907522, 26.499158027021338 ], [ 96.132044711993842, 26.578791408696532 ], [ 96.054633416598847, 26.651758531530959 ], [ 96.051842888638362, 26.679198716847282 ], [ 96.198293899144062, 26.766195991152074 ], [ 96.205115187615775, 26.824228624051727 ], [ 96.274568312977237, 26.857973333902237 ], [ 96.292861769854767, 26.915902614913705 ], [ 96.239014927097173, 26.959000758777961 ], [ 96.342161086365024, 26.963238227562158 ], [ 96.449441358931551, 26.942360948299097 ], [ 96.677644483705933, 26.965201931423962 ], [ 96.764564243644884, 26.988430488176448 ], [ 96.965172154371373, 26.991324368025118 ], [ 96.990286899720616, 27.002796536430992 ], [ 97.058826607000128, 27.092075635000057 ], [ 97.119167114000106, 27.087288310000091 ], [ 97.134773397000117, 27.12733754500006 ], [ 97.104387655000096, 27.156017965000061 ], [ 97.101287069000136, 27.183303121000066 ], [ 96.881352173000096, 27.44411407500003 ], [ 96.888483521000126, 27.507185160000077 ], [ 96.862128540000072, 27.599298401000098 ], [ 96.883522584000048, 27.636324565000066 ], [ 96.990906210000048, 27.726629130000092 ], [ 97.056741984000041, 27.746782939000056 ], [ 97.065320272000065, 27.773990581000064 ], [ 97.222933390000094, 27.899719341000022 ], [ 97.276366822000114, 27.910338847 ], [ 97.292903280000075, 27.87755015099999 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MM-01", "NAME_1": "Sagaing" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.687255493000123, 27.361741842000058 ], [ 96.789161417000116, 27.317971904000061 ], [ 96.859648072000084, 27.240715637000065 ], [ 96.842698202000065, 27.188522441000075 ], [ 96.865332479000131, 27.1716242480001 ], [ 97.002998495000043, 27.114521790000069 ], [ 97.026769654000077, 27.091474101000117 ], [ 97.058826607000128, 27.092075635000057 ], [ 96.990286899720616, 27.002796536430992 ], [ 96.965172154371373, 26.991324368025118 ], [ 96.764564243644884, 26.988430488176448 ], [ 96.677644483705933, 26.965201931423962 ], [ 96.449441358931551, 26.942360948299097 ], [ 96.342161086365024, 26.963238227562158 ], [ 96.239014927097173, 26.959000758777961 ], [ 96.292861769854767, 26.915902614913705 ], [ 96.274568312977237, 26.857973333902237 ], [ 96.205115187615775, 26.824228624051727 ], [ 96.198293899144062, 26.766195991152074 ], [ 96.06972293526519, 26.694262397091961 ], [ 96.047192009603521, 26.666072902942119 ], [ 96.132044711993842, 26.578791408696532 ], [ 96.151681756907522, 26.499158027021338 ], [ 96.12791059779579, 26.470012519362285 ], [ 96.019906853918144, 26.435518499778937 ], [ 96.006987745587935, 26.417715969316532 ], [ 96.154885695118708, 26.142203071214738 ], [ 96.163774042038369, 26.03107290349169 ], [ 96.130081008131981, 25.999989529493178 ], [ 96.077681106198042, 25.872865505538641 ], [ 96.117575310951793, 25.760495103466212 ], [ 96.181860793340888, 25.671663316508841 ], [ 96.166357862625205, 25.632079169218287 ], [ 96.060834589244848, 25.538829047222748 ], [ 96.04316124909235, 25.533713080194502 ], [ 95.989624464697272, 25.567147732581759 ], [ 95.96854048075852, 25.515652167313647 ], [ 95.977222121203909, 25.241353665139513 ], [ 95.987970819197926, 25.199702460300273 ], [ 96.073133579051387, 25.078030300158218 ], [ 96.068275995340855, 24.98594289814622 ], [ 96.039233839569988, 24.957159124793748 ], [ 96.015876093406973, 24.963437811805534 ], [ 96.033859491022667, 25.040254827997899 ], [ 96.021560500316809, 25.056171169863603 ], [ 95.969574008633572, 25.011419378701362 ], [ 95.840382928029669, 24.964988105416694 ], [ 95.947869907969846, 24.690043647196546 ], [ 96.103829380321599, 24.636971950794873 ], [ 96.139796177351684, 24.548166002259165 ], [ 96.235087517574811, 24.458714098576763 ], [ 96.279322543900264, 24.479823920037859 ], [ 96.42474002473233, 24.50106293450682 ], [ 96.656250441404723, 24.417192084047429 ], [ 96.607674595306264, 24.355335395312238 ], [ 96.606744419319455, 24.249837958554906 ], [ 96.620076938799627, 24.209039415336747 ], [ 96.673613723194705, 24.141911729043045 ], [ 96.590104607941271, 24.124884344936561 ], [ 96.389393345326596, 24.028533637517342 ], [ 96.38908328696408, 24.00132599529843 ], [ 96.409960565327765, 23.983058376842621 ], [ 96.454815708378192, 24.022409980136445 ], [ 96.508042434410754, 24.010679430211496 ], [ 96.512693313445595, 23.951251532432252 ], [ 96.559925572407224, 23.848751329210472 ], [ 96.501014438565448, 23.740489202914375 ], [ 96.439829543398673, 23.688580227395562 ], [ 96.419469028972458, 23.609877020807858 ], [ 96.382882115217399, 23.559673366732454 ], [ 96.320663690376989, 23.506653347174222 ], [ 96.279219191112759, 23.531432197537868 ], [ 96.193022901585607, 23.500219631430809 ], [ 96.12946089140695, 23.527995714430631 ], [ 96.12522342262281, 23.622589423563056 ], [ 96.082021925971048, 23.629436550456433 ], [ 96.034893019796982, 23.585175685709316 ], [ 95.909319288554286, 23.3790642361256 ], [ 95.975155063655222, 23.153987535196563 ], [ 95.964819776811225, 22.769049790815188 ], [ 95.955001254804017, 22.750291245944254 ], [ 95.910249465440415, 22.739439195162731 ], [ 95.901257765733249, 22.707193101180678 ], [ 95.990244582321566, 22.529271144847428 ], [ 95.964613072135535, 22.472530422241164 ], [ 95.963682896148725, 22.392483629415949 ], [ 96.012775507083973, 22.331789658865659 ], [ 95.98611046812357, 22.281379299215246 ], [ 95.987764112723596, 22.216473700101176 ], [ 96.007504510424781, 22.089427192311064 ], [ 96.04812218559033, 21.99398082155767 ], [ 96.041197544331169, 21.923416653056051 ], [ 95.973191358894042, 21.867218532809034 ], [ 95.884307895992549, 21.851198839055144 ], [ 95.835835401782333, 21.705032050288878 ], [ 95.772066685129403, 21.626070462182042 ], [ 95.74271447099602, 21.63759430653198 ], [ 95.657138299992539, 21.626923122903804 ], [ 95.594919875152073, 21.707538357409248 ], [ 95.545207146592475, 21.745081285572837 ], [ 95.395758905249238, 21.718881333706577 ], [ 95.34222212085416, 21.608862210022949 ], [ 95.3013977401136, 21.621419583147201 ], [ 95.248481073342816, 21.661029567960156 ], [ 95.242486607171145, 21.711879177182254 ], [ 95.152052849759173, 21.823267727323753 ], [ 95.111125116231108, 21.83362885169015 ], [ 95.052213983288652, 21.809986883787644 ], [ 94.843957960891146, 21.828900458289525 ], [ 94.684277784592041, 21.808565782285029 ], [ 94.601905551799746, 21.819727892328331 ], [ 94.490387811348398, 21.767327989495129 ], [ 94.453387486443319, 21.77652639387793 ], [ 94.395716586950869, 21.824430447307293 ], [ 94.416180454164589, 21.989614163362944 ], [ 94.405638461745582, 22.055656643139571 ], [ 94.365744256991832, 22.079634507826256 ], [ 94.349311151188658, 22.110537013772159 ], [ 94.279444614677175, 22.106325385208322 ], [ 94.256190220402289, 22.145392768561408 ], [ 94.244201288058946, 22.275824083514635 ], [ 94.29577436679358, 22.388866279155422 ], [ 94.262804803298991, 22.477207139697725 ], [ 94.120694615264256, 22.669572659550568 ], [ 94.113253208268929, 22.708097438745767 ], [ 94.007006463577397, 22.678021755099905 ], [ 93.994397413609704, 22.743159898210706 ], [ 94.013931105735878, 22.81496430106165 ], [ 93.992537063434668, 22.920255032243915 ], [ 94.020028924695055, 23.052004095912253 ], [ 94.001735467817525, 23.166854967582651 ], [ 94.011450637037228, 23.277959295984715 ], [ 94.00028852699387, 23.330540065971263 ], [ 94.049071078667282, 23.347955023705367 ], [ 94.050311313915984, 23.499392809130825 ], [ 94.123485142325421, 23.475854194015824 ], [ 94.142502068715487, 23.49928945634332 ], [ 94.170097283662699, 23.694962267194853 ], [ 94.140124952804285, 23.778316351918079 ], [ 94.135059855000065, 23.919006246000052 ], [ 94.190250285000104, 23.995280660000063 ], [ 94.295360148000043, 24.332598572 ], [ 94.330706828000132, 24.362855123000131 ], [ 94.328743124000027, 24.394481100000021 ], [ 94.361195923000139, 24.425409444000124 ], [ 94.363676392000116, 24.46582041500001 ], [ 94.397059367000054, 24.495069275000063 ], [ 94.418453410000097, 24.56031077100009 ], [ 94.47498742700003, 24.597388611000056 ], [ 94.516328573000067, 24.704953105000087 ], [ 94.555706014000066, 24.708854676000058 ], [ 94.581544231000123, 24.730119528000031 ], [ 94.599010864000036, 24.813473612000067 ], [ 94.654821411000114, 24.889153748000027 ], [ 94.673528280000085, 24.974807434000112 ], [ 94.708564901000102, 25.025889587000094 ], [ 94.70680790300014, 25.109941305000021 ], [ 94.689134563000039, 25.138518372000092 ], [ 94.576893352000127, 25.173606670000126 ], [ 94.553328898000132, 25.204147440000028 ], [ 94.550124960000062, 25.245281881 ], [ 94.608002564000117, 25.394626770000073 ], [ 94.659472290000053, 25.45550160800012 ], [ 94.764375448000067, 25.491675110000031 ], [ 94.82235640500005, 25.559112854000077 ], [ 94.860286906000056, 25.567174378000047 ], [ 94.853465617000097, 25.586036275000069 ], [ 94.961469361000127, 25.717966207000032 ], [ 95.00880497300011, 25.73713816300004 ], [ 95.000640096000097, 25.922036438000063 ], [ 95.065855754000097, 25.953817444000023 ], [ 95.151225220000072, 26.049935608000041 ], [ 95.137479289000055, 26.08295684799999 ], [ 95.088179973000081, 26.10409250900004 ], [ 95.078361451000092, 26.171323548000103 ], [ 95.094484497000053, 26.195043030000065 ], [ 95.058724406000067, 26.217677307000102 ], [ 95.041774536000048, 26.287595520000096 ], [ 95.066062459000136, 26.407433167000065 ], [ 95.040637655000126, 26.475594381000079 ], [ 95.109574016000067, 26.551300354000048 ], [ 95.122803183000087, 26.611606751000025 ], [ 95.173239380000098, 26.63382761700008 ], [ 95.204865357000074, 26.66757232700003 ], [ 95.260572551000109, 26.647625224000123 ], [ 95.410640910000097, 26.701627096 ], [ 95.489809204000096, 26.810716044000046 ], [ 95.591301717000078, 26.823738505000065 ], [ 95.624271281000119, 26.880737610000054 ], [ 95.699305461000108, 26.896188863000063 ], [ 95.777956991000053, 26.995149231000042 ], [ 95.888854615000128, 27.027033590000102 ], [ 96.01318811100009, 27.190796204000023 ], [ 96.074166301000048, 27.229863586000121 ], [ 96.14258589700006, 27.257510478000128 ], [ 96.407789347000119, 27.29817983000008 ], [ 96.510935507000056, 27.292495422000044 ], [ 96.547315715000138, 27.306448059000033 ], [ 96.586899862000053, 27.353576966000034 ], [ 96.649014933000046, 27.336213685000118 ], [ 96.687255493000123, 27.361741842000058 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MM-17", "NAME_1": "Shan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.996717571000033, 20.3835114540001 ], [ 99.942043905000105, 20.444024557000049 ], [ 99.877913453000076, 20.435136210000039 ], [ 99.837709188000133, 20.416842753000068 ], [ 99.787169637000034, 20.334082947000084 ], [ 99.651932414000044, 20.306823629000078 ], [ 99.502897583000049, 20.345219218000111 ], [ 99.439955689000044, 20.382167867000064 ], [ 99.420628703000034, 20.375553284000048 ], [ 99.466414022000038, 20.322171530000062 ], [ 99.486257772000044, 20.245483704000023 ], [ 99.525841919000072, 20.196184387000116 ], [ 99.510338989000104, 20.153809713 ], [ 99.441402629000038, 20.101616516000021 ], [ 99.295675090000088, 20.062497457000106 ], [ 99.177749471000027, 20.121796163000013 ], [ 99.073466431000099, 20.101228943000123 ], [ 99.016829061000124, 20.041000061000048 ], [ 99.000912720000088, 19.821013489000094 ], [ 98.973834269000122, 19.788069764000042 ], [ 98.899316854000062, 19.748614808000113 ], [ 98.883710572000041, 19.745462545000052 ], [ 98.851877889000093, 19.784039001000039 ], [ 98.807849569000041, 19.806544088000052 ], [ 98.749248495000074, 19.763497620000052 ], [ 98.623778117000029, 19.737504375000086 ], [ 98.532620890000032, 19.675854390000055 ], [ 98.488799276000123, 19.706705220000018 ], [ 98.439603312000088, 19.687739970000067 ], [ 98.307311645000027, 19.689987895000073 ], [ 98.237548462000063, 19.664692281000029 ], [ 98.21915165200005, 19.676991272000052 ], [ 98.213260539000089, 19.717763978000036 ], [ 98.111354615000096, 19.777140198000055 ], [ 98.072907349000047, 19.777295227000096 ], [ 98.04562219200011, 19.807629293000062 ], [ 98.017923624000105, 19.789387513000079 ], [ 98.008311809000077, 19.639112447000073 ], [ 97.885838664000119, 19.572811585000053 ], [ 97.869123020910649, 19.570489967937647 ], [ 97.838813918227686, 19.64719900253192 ], [ 97.758715447659768, 19.670350043119981 ], [ 97.726779412939493, 19.656268214806232 ], [ 97.611954379690815, 19.686576443348144 ], [ 97.560122919437163, 19.742361152445199 ], [ 97.586012811142268, 19.827343045145426 ], [ 97.55407677642205, 19.843672797261775 ], [ 97.519298536897907, 19.898992418365424 ], [ 97.44731326689373, 19.881990871781284 ], [ 97.39176110179335, 19.953123481063756 ], [ 97.367825078964188, 19.945773953305263 ], [ 97.339929640640378, 19.898992418365424 ], [ 97.263448521232249, 19.893101304981201 ], [ 97.236060011860047, 19.912454128155446 ], [ 97.22587975464694, 19.972476305137377 ], [ 97.16784712084791, 19.988728542887941 ], [ 97.135394322190166, 19.727840074559765 ], [ 97.026925490319059, 19.666784368803576 ], [ 96.937576939424162, 19.585006415213854 ], [ 96.895047235441496, 19.500308743353798 ], [ 96.926724887743319, 19.405353298116211 ], [ 96.839902332826341, 19.288448616810228 ], [ 96.846833123649674, 19.335460924082383 ], [ 96.825129022086685, 19.378171495218339 ], [ 96.703586053153799, 19.446616930227151 ], [ 96.673303663932927, 19.495787055528183 ], [ 96.678781366167073, 19.524157415931995 ], [ 96.656457146979733, 19.568418281578431 ], [ 96.607571241619439, 19.572604071720491 ], [ 96.558375278796063, 19.599294949102614 ], [ 96.560338982657868, 19.616684068414997 ], [ 96.618216586826009, 19.639292507543189 ], [ 96.655630323780372, 19.677507229275193 ], [ 96.654803500581068, 19.708332220855311 ], [ 96.619663526750344, 19.732671820747896 ], [ 96.537084589282301, 19.849383043492651 ], [ 96.454505650015676, 19.856643582435368 ], [ 96.44975141819333, 19.900025947139738 ], [ 96.375854120271413, 20.007461249337155 ], [ 96.380504999306254, 20.022499091160114 ], [ 96.432801547553311, 20.019708564098949 ], [ 96.452852003617011, 20.032756862739006 ], [ 96.478896925852382, 20.071746730826931 ], [ 96.459983352249878, 20.090556952541306 ], [ 96.453575474028867, 20.132389024533836 ], [ 96.546593052027674, 20.216389065303133 ], [ 96.476416457153732, 20.423068956567079 ], [ 96.499360793066103, 20.475701402497691 ], [ 96.496260206743102, 20.508593450727176 ], [ 96.54845340400135, 20.520866603910633 ], [ 96.54690311128951, 20.58941539170695 ], [ 96.504011672100944, 20.608173936577884 ], [ 96.460293409713074, 20.667007555154555 ], [ 96.456676060351867, 20.724135851388439 ], [ 96.506388788012089, 20.767466539249369 ], [ 96.568710564740741, 20.769146023170435 ], [ 96.587520787354435, 20.850303860035069 ], [ 96.564679803330193, 20.881413072455302 ], [ 96.537704706007332, 20.88544383386585 ], [ 96.505768671287115, 20.915648708720937 ], [ 96.476106398791217, 20.898388779718402 ], [ 96.429700962129687, 20.928309433733375 ], [ 96.393424106737086, 20.925932318721493 ], [ 96.257928500699734, 20.974172268035716 ], [ 96.215450473560452, 21.007761949154599 ], [ 96.210489537062472, 21.059541734363506 ], [ 96.229713169027491, 21.096852118530421 ], [ 96.22392540933015, 21.134136664275616 ], [ 96.240358514234003, 21.149975490876159 ], [ 96.373683709935221, 21.171343696554345 ], [ 96.331515741158512, 21.24950429898422 ], [ 96.288314243607431, 21.459698187721187 ], [ 96.337820265692642, 21.493675442467691 ], [ 96.340300734391349, 21.537755439162197 ], [ 96.460913527337368, 21.554111029700266 ], [ 96.582869908319594, 21.596976630467111 ], [ 96.704619581928114, 21.717046821053941 ], [ 96.739139439033863, 21.711930854025695 ], [ 96.788128697181605, 21.731076972524249 ], [ 96.811279737769667, 21.759550685715567 ], [ 96.848176710786561, 21.737019761852537 ], [ 96.888691034063925, 21.743996079955082 ], [ 96.846833123649674, 21.873419705455035 ], [ 96.764564243644884, 21.987082016921534 ], [ 96.736348911972641, 22.077205715071671 ], [ 96.483651157674728, 22.159836331181737 ], [ 96.478690220277429, 22.223863430253061 ], [ 96.436832309863178, 22.283859767913953 ], [ 96.427013787855969, 22.337086493047195 ], [ 96.402519159231758, 22.365327664040421 ], [ 96.324384393424964, 22.3738025989108 ], [ 96.333376093132131, 22.487826646482517 ], [ 96.294825473716571, 22.527514146560577 ], [ 96.294205356991597, 22.570328071383358 ], [ 96.239118279884678, 22.644147854040227 ], [ 96.238704868734658, 22.690449937014989 ], [ 96.219274530295309, 22.692103583413655 ], [ 96.203564894903934, 22.739697577581126 ], [ 96.271777785016752, 22.781607163939441 ], [ 96.351462844434707, 22.773700669850029 ], [ 96.40758344941662, 22.794681301001219 ], [ 96.429804314917135, 22.78023773928021 ], [ 96.471248814181365, 22.783105780707217 ], [ 96.543905877754014, 22.818504136956335 ], [ 96.635269810253476, 22.81974437130566 ], [ 96.717435336571498, 22.93387177256426 ], [ 96.70761681456429, 22.957462062724005 ], [ 96.586073845631404, 22.99593516687446 ], [ 96.58814090407941, 23.03732798929525 ], [ 96.554757927636217, 23.031385199067643 ], [ 96.513210077383121, 23.060143133998395 ], [ 96.482720981687919, 23.038154812494611 ], [ 96.34650190613803, 23.017535916549264 ], [ 96.260822382347044, 23.022755235465752 ], [ 96.212453240924276, 23.049782008732677 ], [ 96.198810663081588, 23.099520574814676 ], [ 96.160156690878523, 23.144246528454516 ], [ 96.159226515791033, 23.166312364324142 ], [ 96.192919549697422, 23.212252712092948 ], [ 96.205011834828269, 23.307673245323997 ], [ 96.190129021736936, 23.347877509339583 ], [ 96.233433872075523, 23.343975938238941 ], [ 96.249246861153665, 23.390665594841323 ], [ 96.306504347697455, 23.429500434197678 ], [ 96.298442823977098, 23.46402029130337 ], [ 96.320663690376989, 23.506653347174222 ], [ 96.396524693060087, 23.573729355725163 ], [ 96.439829543398673, 23.688580227395562 ], [ 96.501014438565448, 23.740489202914375 ], [ 96.559925572407224, 23.848751329210472 ], [ 96.512693313445595, 23.951251532432252 ], [ 96.508042434410754, 24.010679430211496 ], [ 96.454815708378192, 24.022409980136445 ], [ 96.409960565327765, 23.983058376842621 ], [ 96.38598270064108, 24.014632677256259 ], [ 96.399418572908758, 24.040134996233064 ], [ 96.590104607941271, 24.124884344936561 ], [ 96.673613723194705, 24.141911729043045 ], [ 96.729837680964181, 24.028094387046281 ], [ 96.833293898594491, 23.96548839037689 ], [ 96.88610721167845, 23.989827989370212 ], [ 96.912255486701326, 23.927971299735702 ], [ 96.916286249011137, 23.873013413837953 ], [ 96.892928501049425, 23.823404038965236 ], [ 96.780377231823763, 23.772606105687203 ], [ 96.783167758884929, 23.750695299448466 ], [ 96.994524366706116, 23.707752184315837 ], [ 97.013024530057976, 23.649435330576011 ], [ 97.097567173186462, 23.645404568266201 ], [ 97.17342817586956, 23.675945339006148 ], [ 97.226964960264638, 23.679743557319284 ], [ 97.259831170971722, 23.70335968680007 ], [ 97.309543898632, 23.705194200352025 ], [ 97.471291131580415, 23.78526683249828 ], [ 97.617122023562501, 23.817228704740899 ], [ 97.641099888249187, 23.833170885028323 ], [ 97.647344830899158, 23.868524415469381 ], [ 97.696806274000039, 23.887121887000077 ], [ 97.767809693000117, 23.946472270000086 ], [ 97.817832479000117, 23.95815114400007 ], [ 97.889972778000129, 24.022617493 ], [ 98.105050090000077, 24.101527405000027 ], [ 98.181531209000127, 24.118658142000086 ], [ 98.330669393000051, 24.099486186000078 ], [ 98.434952433000092, 24.130259501000026 ], [ 98.503268677000051, 24.121267802000077 ], [ 98.585227499000041, 24.075715027000015 ], [ 98.716175578000104, 24.12134531700012 ], [ 98.865727173000039, 24.145684917000025 ], [ 98.873478638000051, 24.114498190000049 ], [ 98.856218710000064, 24.083802388000024 ], [ 98.658814738000046, 23.961122539000073 ], [ 98.6745243740001, 23.936886292000096 ], [ 98.663672323000128, 23.796946513000066 ], [ 98.793173462000027, 23.758473409000104 ], [ 98.800304810000057, 23.692715149000051 ], [ 98.856012004000092, 23.610007020000083 ], [ 98.780874471000061, 23.532854106000016 ], [ 98.799994751000099, 23.480738424000052 ], [ 98.848880657000052, 23.480402527000066 ], [ 98.863970174000087, 23.466604919000119 ], [ 98.889601684000127, 23.406789449000073 ], [ 98.890118449000056, 23.367902934000099 ], [ 98.853428182000073, 23.324882304000099 ], [ 98.896526327000117, 23.323280335000064 ], [ 98.910685669000088, 23.297597148000094 ], [ 98.860146118000046, 23.212279358000032 ], [ 98.859009237000123, 23.179387309000063 ], [ 99.02644087800013, 23.160447897000026 ], [ 99.055069621000086, 23.109598287000026 ], [ 99.194182577000106, 23.095774842000068 ], [ 99.216610149000076, 23.057379252000132 ], [ 99.333812297000122, 23.129622904000044 ], [ 99.403265421000071, 23.068334656 ], [ 99.493079061000117, 23.057379252000132 ], [ 99.490391887000044, 23.0120073450001 ], [ 99.538037557000109, 22.92643117300004 ], [ 99.515299927000058, 22.908809510000069 ], [ 99.413394003000064, 22.930746155000023 ], [ 99.414427532000047, 22.856900533000058 ], [ 99.359030396000094, 22.77489003500007 ], [ 99.307974080000122, 22.745176087000104 ], [ 99.35499963400008, 22.608543600000061 ], [ 99.344147583000051, 22.533251038000017 ], [ 99.357790162000128, 22.495475566000053 ], [ 99.282755981000037, 22.411914775000056 ], [ 99.243068482000069, 22.393156230000059 ], [ 99.243688599000052, 22.341221416000039 ], [ 99.159352661000128, 22.184693502000115 ], [ 99.175062297000068, 22.168673808000065 ], [ 99.144469849000075, 22.153532613000053 ], [ 99.166380656000058, 22.132086894000011 ], [ 99.252887004000058, 22.102786357000056 ], [ 99.364921509000055, 22.098858948 ], [ 99.438612102000093, 22.124232076000069 ], [ 99.490391887000044, 22.104336650000064 ], [ 99.53896773300005, 22.106713766000027 ], [ 99.633535604000087, 22.084751282000056 ], [ 99.683868449000045, 22.039017639000022 ], [ 99.723659302000044, 22.070591940000028 ], [ 99.821017701000073, 22.017778626000066 ], [ 99.841739950000033, 22.027080384000087 ], [ 99.84783776900008, 22.055037333000072 ], [ 99.942405640000061, 22.045528869000108 ], [ 99.934344116000091, 22.018863831000047 ], [ 99.965660034000109, 21.963001608000084 ], [ 99.917962687000056, 21.8291596480001 ], [ 99.950260458000116, 21.721155904000071 ], [ 99.996717571000033, 21.686119283000053 ], [ 100.082345419000035, 21.684465638000106 ], [ 100.14280684400012, 21.654906718000078 ], [ 100.14373702000006, 21.640023906000025 ], [ 100.094851115000097, 21.598837789000029 ], [ 100.089993530000072, 21.528919577000025 ], [ 100.162495565000086, 21.436367086000089 ], [ 100.187145223000073, 21.42789215099999 ], [ 100.289516235000121, 21.483134258000078 ], [ 100.341967814000043, 21.530366517000019 ], [ 100.399121949000062, 21.518894348000018 ], [ 100.456689494000045, 21.455022278000044 ], [ 100.621744018000072, 21.469078268000075 ], [ 100.703961223000078, 21.516413879000041 ], [ 100.834909302000085, 21.657542217000085 ], [ 100.992780803000073, 21.711440735000039 ], [ 101.082801148000044, 21.766734518000064 ], [ 101.118871298000045, 21.759809876000062 ], [ 101.127656291000051, 21.695162659000104 ], [ 101.168842408000103, 21.637853496000034 ], [ 101.157111857000132, 21.519669495000116 ], [ 101.003426148000074, 21.40598134400004 ], [ 100.81460046400008, 21.300199687000074 ], [ 100.72540694200012, 21.311671855 ], [ 100.68938846900005, 21.159329732000018 ], [ 100.625516398000116, 21.054116517000026 ], [ 100.543454224000072, 21.027399801000072 ], [ 100.557251831000031, 20.992001445000042 ], [ 100.529243205000057, 20.968436992000036 ], [ 100.517822714000033, 20.906321920000082 ], [ 100.515703979000136, 20.886478170000075 ], [ 100.534204143000068, 20.873920797000054 ], [ 100.623087606000126, 20.888545227000051 ], [ 100.652129761000026, 20.876607971000098 ], [ 100.536684611000055, 20.80767161100006 ], [ 100.383670695000092, 20.831701151000104 ], [ 100.329668823000077, 20.786019185000086 ], [ 100.290188029000092, 20.775012106000091 ], [ 100.211329794000051, 20.697394104000111 ], [ 100.172934205000047, 20.622101542000038 ], [ 100.099295288000121, 20.317804870000074 ], [ 100.036146688000031, 20.373124492 ], [ 99.996717571000033, 20.3835114540001 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MM-12", "NAME_1": "Kayah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.869123020910649, 19.570489967937647 ], [ 97.839846639000029, 19.555319113000095 ], [ 97.842120403000138, 19.479380595000052 ], [ 97.767086222000046, 19.397525126000019 ], [ 97.806153606000066, 19.301096903000101 ], [ 97.798298787000135, 19.281408183000067 ], [ 97.764088990000118, 19.266396179000097 ], [ 97.812561483000081, 19.208466899000044 ], [ 97.810804485000119, 19.11221954299999 ], [ 97.727812134000089, 19.037082011000095 ], [ 97.70331750500003, 18.964373271000042 ], [ 97.65784224500004, 18.925719299000022 ], [ 97.723367961000065, 18.8519770300001 ], [ 97.759748169000034, 18.622792054000016 ], [ 97.751789999000096, 18.582484437000076 ], [ 97.742798299000128, 18.569255270000085 ], [ 97.617948039000112, 18.553158061000104 ], [ 97.509530884000071, 18.491275533000092 ], [ 97.427468710000085, 18.489518535000016 ], [ 97.372898830000054, 18.548616618000025 ], [ 97.319775831789173, 18.674648546393257 ], [ 97.122991977797483, 18.689298813689277 ], [ 97.053487177391276, 18.827016506006942 ], [ 97.01173261886521, 18.874584661752749 ], [ 97.01250776612045, 18.911249090772912 ], [ 96.968066034220044, 18.975147000433708 ], [ 96.957265660281962, 19.069223944729231 ], [ 96.915356073024327, 19.140873317949229 ], [ 96.86647016766409, 19.168029283324756 ], [ 96.836239455286602, 19.26022003812426 ], [ 96.840115187965523, 19.290089016195111 ], [ 96.926724887743319, 19.405353298116211 ], [ 96.898922968120416, 19.514881497183353 ], [ 96.97261355956806, 19.623841254570209 ], [ 97.135394322190166, 19.727840074559765 ], [ 97.16784712084791, 19.988728542887941 ], [ 97.22587975464694, 19.972476305137377 ], [ 97.236060011860047, 19.912454128155446 ], [ 97.263448521232249, 19.893101304981201 ], [ 97.339929640640378, 19.898992418365424 ], [ 97.367825078964188, 19.945773953305263 ], [ 97.39176110179335, 19.953123481063756 ], [ 97.44731326689373, 19.881990871781284 ], [ 97.519298536897907, 19.898992418365424 ], [ 97.55407677642205, 19.843672797261775 ], [ 97.586012811142268, 19.827343045145426 ], [ 97.560122919437163, 19.742361152445199 ], [ 97.611954379690815, 19.686576443348144 ], [ 97.726779412939493, 19.656268214806232 ], [ 97.758715447659768, 19.670350043119981 ], [ 97.838813918227686, 19.64719900253192 ], [ 97.869123020910649, 19.570489967937647 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MM-13", "NAME_1": "Kayin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.372898830000054, 18.548616618000025 ], [ 97.351401001000113, 18.551168519000058 ], [ 97.443074992000106, 18.403348084000086 ], [ 97.45258345600007, 18.333610738000047 ], [ 97.486483195000119, 18.292140401000083 ], [ 97.528341105000095, 18.265320333000076 ], [ 97.573816366000131, 18.333093974000107 ], [ 97.637585083000033, 18.306325582000042 ], [ 97.643269491000069, 18.273020121000073 ], [ 97.617948039000112, 18.241678365000055 ], [ 97.684300578000034, 18.146102804000108 ], [ 97.694222453000123, 18.061508484000015 ], [ 97.720060669000077, 18.053059387000118 ], [ 97.754063762000101, 17.969033508000095 ], [ 97.720060669000077, 17.943195293000073 ], [ 97.685540813000102, 17.880718486000077 ], [ 97.699080038000034, 17.83333119800001 ], [ 97.676135702000124, 17.830333964000104 ], [ 97.749619588000087, 17.739848532000011 ], [ 97.759334758000136, 17.691479391000072 ], [ 97.933794393000028, 17.531799215000078 ], [ 97.982783651000034, 17.505444234000024 ], [ 98.035493612000039, 17.40503692700004 ], [ 98.088720337000041, 17.372790833000082 ], [ 98.092647746000068, 17.312226054000021 ], [ 98.278992961000029, 17.13657786 ], [ 98.268347616000028, 17.107742411000075 ], [ 98.294392538000125, 17.107587382000034 ], [ 98.286227661000112, 17.087433574000059 ], [ 98.299663534000047, 17.064747620000091 ], [ 98.417899211000076, 17.029039205000075 ], [ 98.474536580000063, 16.950439352000032 ], [ 98.484458455000038, 16.905894267000022 ], [ 98.509469849000027, 16.892665100000031 ], [ 98.524559367000052, 16.85044545500007 ], [ 98.500581503000035, 16.86222768100005 ], [ 98.490039510000088, 16.843210755000101 ], [ 98.517531372000121, 16.803006490000072 ], [ 98.474536580000063, 16.776651509000104 ], [ 98.456656535000093, 16.723218079000091 ], [ 98.486318807000032, 16.700997213000065 ], [ 98.512260376000029, 16.643274638000079 ], [ 98.561559692000117, 16.601726787000089 ], [ 98.564246867000122, 16.55196238200007 ], [ 98.631632934000038, 16.463130595000038 ], [ 98.629462525000065, 16.402669170000095 ], [ 98.663258912000117, 16.286655579000083 ], [ 98.682379192000042, 16.27347808899999 ], [ 98.788625936000074, 16.374557190000061 ], [ 98.81870162000007, 16.455637512000081 ], [ 98.839578898000127, 16.472432353000059 ], [ 98.843402954000055, 16.438377584000094 ], [ 98.902520793000065, 16.381636862000093 ], [ 98.883710572000041, 16.258750305000078 ], [ 98.843092896000087, 16.208727519000107 ], [ 98.835444783000128, 16.144545390000062 ], [ 98.807229452000058, 16.110542298000027 ], [ 98.78304488100008, 16.102429098000115 ], [ 98.758446900000081, 16.119172262000077 ], [ 98.67958866400005, 16.126148580000077 ], [ 98.658711385000117, 16.116278381000072 ], [ 98.619127238000033, 16.051011048000063 ], [ 98.546986938000032, 16.047497050000104 ], [ 98.583780559000047, 15.976958720000127 ], [ 98.568587687000104, 15.920166321000082 ], [ 98.574375448000069, 15.835985413000017 ], [ 98.540269003000105, 15.711961975000023 ], [ 98.56714074700011, 15.452546285000054 ], [ 98.559906047000027, 15.355317078000027 ], [ 98.533551066000086, 15.325964865000046 ], [ 98.515464315000088, 15.363456116000037 ], [ 98.474536580000063, 15.383480734000074 ], [ 98.403429810000034, 15.360097148000122 ], [ 98.399088990000052, 15.321779074000105 ], [ 98.377488241000094, 15.296457622000034 ], [ 98.394748169000081, 15.280076193000085 ], [ 98.392267700000104, 15.258242900000141 ], [ 98.295116007000104, 15.292607728000078 ], [ 98.232897583000124, 15.226797791000095 ], [ 98.207692860000066, 15.219215764000083 ], [ 98.189903599071783, 15.301727809990439 ], [ 98.127581822343188, 15.359631252580243 ], [ 97.998597447314296, 15.564812527076469 ], [ 97.95167524581592, 15.606179511075538 ], [ 97.945577426856744, 15.639484972253626 ], [ 97.870749952947904, 15.683590807369853 ], [ 97.886562941126783, 15.737256781175518 ], [ 97.835403274441546, 15.897066147784471 ], [ 97.838710565440181, 15.967552801920249 ], [ 97.863618606113732, 16.040003159917887 ], [ 97.823414341198827, 16.13387339953772 ], [ 98.005935499723478, 16.152838649983721 ], [ 98.07518191861061, 16.124209906262138 ], [ 98.131922642116194, 16.162812200722442 ], [ 98.13491987475237, 16.192991238055185 ], [ 98.084276971105282, 16.244435126479914 ], [ 98.07652550664676, 16.283528347355343 ], [ 98.005315382998504, 16.339080512455666 ], [ 97.985471633409134, 16.426258653014429 ], [ 97.919532504621372, 16.429695136121609 ], [ 97.900412225443802, 16.465971991514209 ], [ 97.859587843803922, 16.486694241146324 ], [ 97.85431684804405, 16.535450955297335 ], [ 97.785897250557639, 16.51816518787308 ], [ 97.729502800000034, 16.572495835000041 ], [ 97.70351702728891, 16.573536841052373 ], [ 97.695360142156801, 16.602191067064098 ], [ 97.655879347653752, 16.603379625469302 ], [ 97.63479536281568, 16.649397488503269 ], [ 97.557694125783257, 16.727506414989023 ], [ 97.55252648281089, 16.79109426538804 ], [ 97.495889112992131, 16.885455431422997 ], [ 97.499299757677647, 16.944366563466133 ], [ 97.468293898944239, 17.013974718458485 ], [ 97.492168409944099, 17.039192817494495 ], [ 97.486277296559933, 17.073325100073305 ], [ 97.531442498872195, 17.125182400547317 ], [ 97.508911574109788, 17.185282090995713 ], [ 97.521934035227503, 17.210758572450118 ], [ 97.503640578349973, 17.269540514183348 ], [ 97.521003859240693, 17.301166490541107 ], [ 97.47273807240407, 17.380644843484731 ], [ 97.444832798195023, 17.464231472204688 ], [ 97.455684848976546, 17.533555406356925 ], [ 97.412379998637959, 17.565439765133021 ], [ 97.384268019753279, 17.631947332903053 ], [ 97.421268344658358, 17.705327866887558 ], [ 97.377446731281566, 17.701529649473741 ], [ 97.326287062797689, 17.590192776175684 ], [ 97.284119094020923, 17.598822739777631 ], [ 97.245878533867199, 17.545053412285142 ], [ 97.213012323160171, 17.559471137383071 ], [ 97.217869907769966, 17.62112112144257 ], [ 97.177768995642566, 17.738245754438026 ], [ 97.202883741891128, 17.819016018574359 ], [ 97.178699171629432, 17.844905911178842 ], [ 97.130330031105984, 17.965647895334087 ], [ 97.186037224937934, 18.065228380285532 ], [ 97.203503858616159, 18.152664903262632 ], [ 97.140251905900698, 18.206382554811057 ], [ 97.141492141149342, 18.260616970296951 ], [ 97.122371861072509, 18.313611152332783 ], [ 97.07224572136289, 18.292578844338152 ], [ 97.060463494594558, 18.338596707372119 ], [ 97.006616651836964, 18.372728989950929 ], [ 96.976540969090422, 18.415672105083559 ], [ 96.989253370946244, 18.53850698520921 ], [ 96.982432081575269, 18.588038844816822 ], [ 96.94987593013002, 18.638552558154004 ], [ 96.881973098379774, 18.630852768740283 ], [ 96.821304966251148, 18.600208645212774 ], [ 96.740999790108162, 18.623953965902786 ], [ 96.702655878066253, 18.604394436254211 ], [ 96.661831496426373, 18.653280340715128 ], [ 96.615632766239116, 18.747719021115927 ], [ 96.643021274711998, 18.793633531362389 ], [ 96.614805943039812, 18.856627102558718 ], [ 96.684465773976228, 18.921765244770199 ], [ 96.651599563269201, 18.968506578216022 ], [ 96.551243931062515, 19.052325750932653 ], [ 96.505768671287115, 19.124698595463769 ], [ 96.502461379389104, 19.141932685145264 ], [ 96.538428176419188, 19.179940701302314 ], [ 96.462567172836714, 19.302904770838495 ], [ 96.463704055297853, 19.354322821740823 ], [ 96.423293084807995, 19.399668891206375 ], [ 96.423603143170453, 19.438141995356773 ], [ 96.398901808971289, 19.470000514811886 ], [ 96.524785597677123, 19.476950995392087 ], [ 96.583800083407084, 19.459639391344808 ], [ 96.59217166459058, 19.431114000410787 ], [ 96.634236280579842, 19.450260118010021 ], [ 96.673303663932927, 19.495787055528183 ], [ 96.703586053153799, 19.446616930227151 ], [ 96.821615024613664, 19.38297740298475 ], [ 96.846833123649674, 19.335460924082383 ], [ 96.836239455286602, 19.26022003812426 ], [ 96.863679640602868, 19.173377794349733 ], [ 96.932305942765026, 19.117903144514514 ], [ 96.957265660281962, 19.069223944729231 ], [ 96.975869174622687, 18.955380764310803 ], [ 97.01250776612045, 18.911249090772912 ], [ 97.01173261886521, 18.874584661752749 ], [ 97.053487177391276, 18.827016506006942 ], [ 97.114620395714667, 18.700331733422729 ], [ 97.126557652113888, 18.688471991389292 ], [ 97.316365188002976, 18.677671617451153 ], [ 97.372898830000054, 18.548616618000025 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MM-15", "NAME_1": "Mon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.207692860000066, 15.219215764000083 ], [ 98.177190390000078, 15.22059661900002 ], [ 98.190729615000066, 15.179177958000068 ], [ 98.160447225000041, 15.106365865000086 ], [ 98.198997844000075, 15.051382142000136 ], [ 98.191223655000044, 14.99320983800007 ], [ 98.100710076908456, 14.999058946513173 ], [ 98.020818312814868, 15.099130356980368 ], [ 97.902272577417477, 15.078433945769973 ], [ 97.854936964769081, 14.944902045393064 ], [ 97.794769727000073, 14.88031647300005 ], [ 97.812836134000065, 14.983343817000048 ], [ 97.774261915000068, 15.017482815000051 ], [ 97.808360222000033, 15.031154690000051 ], [ 97.794769727000073, 15.058498440000051 ], [ 97.822764519000032, 15.20929596600007 ], [ 97.769379102000073, 15.223334052000041 ], [ 97.726410352000073, 15.339585679000038 ], [ 97.760752800000034, 15.394232489000046 ], [ 97.794769727000073, 15.407904364000046 ], [ 97.76140384200005, 15.49054596600007 ], [ 97.774261915000068, 15.531398830000057 ], [ 97.742930535000028, 15.604478257000039 ], [ 97.743662957000026, 15.664862372000073 ], [ 97.725596550000034, 15.701320705000057 ], [ 97.733897332000026, 15.726304429000038 ], [ 97.712901238000029, 15.757310289000088 ], [ 97.727061394000032, 15.84320709800005 ], [ 97.706065300000034, 15.860337632000039 ], [ 97.71225019600007, 15.887681382000039 ], [ 97.691416863000029, 15.912298895000049 ], [ 97.575694207000026, 16.017401434000078 ], [ 97.568858269000032, 16.062404690000051 ], [ 97.619639519000032, 16.125433661000045 ], [ 97.650889519000032, 16.271307684000078 ], [ 97.623057488000029, 16.394476630000042 ], [ 97.637217644000032, 16.477362372000073 ], [ 97.703135613000029, 16.552069403000075 ], [ 97.740244988000029, 16.559271552000041 ], [ 97.785897250557639, 16.51816518787308 ], [ 97.85431684804405, 16.535450955297335 ], [ 97.859587843803922, 16.486694241146324 ], [ 97.900412225443802, 16.465971991514209 ], [ 97.919532504621372, 16.429695136121609 ], [ 97.985471633409134, 16.426258653014429 ], [ 98.005315382998504, 16.339080512455666 ], [ 98.07652550664676, 16.283528347355343 ], [ 98.084276971105282, 16.244435126479914 ], [ 98.13491987475237, 16.192991238055185 ], [ 98.131922642116194, 16.162812200722442 ], [ 98.07518191861061, 16.124209906262138 ], [ 98.005935499723478, 16.152838649983721 ], [ 97.823414341198827, 16.13387339953772 ], [ 97.863618606113732, 16.040003159917887 ], [ 97.838710565440181, 15.967552801920249 ], [ 97.835403274441546, 15.897066147784471 ], [ 97.886562941126783, 15.737256781175518 ], [ 97.870749952947904, 15.683590807369853 ], [ 97.945577426856744, 15.639484972253626 ], [ 97.95167524581592, 15.606179511075538 ], [ 97.998597447314296, 15.564812527076469 ], [ 98.127581822343188, 15.359631252580243 ], [ 98.189903599071783, 15.301727809990439 ], [ 98.207692860000066, 15.219215764000083 ] ] ], [ [ [ 97.70351702728891, 16.573536841052373 ], [ 97.630381707000026, 16.53196849200009 ], [ 97.42310631600003, 16.523423570000091 ], [ 97.370290561000047, 16.483547268000052 ], [ 97.329828227000064, 16.679846809000082 ], [ 97.31119371300008, 16.652366398000083 ], [ 97.28583595300006, 16.658921726000074 ], [ 97.25544480700006, 16.697868885000048 ], [ 97.230172977000052, 16.769141733000083 ], [ 97.240489129000082, 16.874579169000071 ], [ 97.219493035000028, 16.826157945000091 ], [ 97.204600457000026, 16.859808661000045 ], [ 97.219493035000028, 16.901271877000056 ], [ 97.191579623000052, 16.901271877000056 ], [ 97.18327884200005, 16.921535549000055 ], [ 97.198252800000034, 17.013495184000078 ], [ 97.157237175000034, 17.086859442000048 ], [ 97.174489780000044, 17.112494208000044 ], [ 97.23365319100003, 17.09516022300005 ], [ 97.26099694100003, 17.107326565000051 ], [ 97.202647332000026, 17.13157786700009 ], [ 97.158050977000073, 17.129299221000053 ], [ 97.130625847000033, 17.079413153000075 ], [ 97.100271030000044, 17.133775132000039 ], [ 97.109629754000082, 17.189276434000078 ], [ 97.088715040000068, 17.193508205000057 ], [ 97.068614129000082, 17.251369533000059 ], [ 97.00717207100007, 17.27806224200009 ], [ 97.01335696700005, 17.29913971600007 ], [ 96.895518425000034, 17.384670315000051 ], [ 96.882901898563503, 17.457197883431974 ], [ 96.890758090713291, 17.602698473355872 ], [ 96.959901157712238, 17.616263535933399 ], [ 97.002275832063958, 17.606755072288763 ], [ 97.038449334668996, 17.567119249054088 ], [ 97.100047641885112, 17.536630154258205 ], [ 97.122578565748142, 17.481982326722971 ], [ 97.216836378995652, 17.522548325944456 ], [ 97.284119094020923, 17.598822739777631 ], [ 97.326287062797689, 17.590192776175684 ], [ 97.377446731281566, 17.701529649473741 ], [ 97.419304640796497, 17.708402614788838 ], [ 97.384268019753279, 17.631947332903053 ], [ 97.412379998637959, 17.565439765133021 ], [ 97.455684848976546, 17.533555406356925 ], [ 97.444832798195023, 17.464231472204688 ], [ 97.47273807240407, 17.380644843484731 ], [ 97.521003859240693, 17.301166490541107 ], [ 97.503640578349973, 17.269540514183348 ], [ 97.521934035227503, 17.210758572450118 ], [ 97.508911574109788, 17.185282090995713 ], [ 97.531442498872195, 17.125182400547317 ], [ 97.486277296559933, 17.073325100073305 ], [ 97.492168409944099, 17.039192817494495 ], [ 97.468293898944239, 17.013974718458485 ], [ 97.499299757677647, 16.944366563466133 ], [ 97.495889112992131, 16.885455431422997 ], [ 97.534336378720866, 16.838765773921295 ], [ 97.562861769654887, 16.719057319439742 ], [ 97.63479536281568, 16.649397488503269 ], [ 97.655879347653752, 16.603379625469302 ], [ 97.698564081267307, 16.598935452009471 ], [ 97.70351702728891, 16.573536841052373 ] ] ], [ [ [ 97.664398634000065, 15.565578518000052 ], [ 97.672373894000032, 15.533351955000057 ], [ 97.664398634000065, 15.504095770000049 ], [ 97.650889519000032, 15.592230536000045 ], [ 97.664398634000065, 15.565578518000052 ] ] ], [ [ [ 97.589366082000026, 16.415269273000092 ], [ 97.571364181000035, 16.222693119000041 ], [ 97.547461019000082, 16.199927595000077 ], [ 97.516856697000037, 16.209823449000055 ], [ 97.510508660000028, 16.25421784100007 ], [ 97.459269406000033, 16.301362208000057 ], [ 97.484873894000032, 16.36391836100006 ], [ 97.45476321700005, 16.436916408000059 ], [ 97.459646030000044, 16.477362372000073 ], [ 97.520518425000034, 16.510891018000052 ], [ 97.606293165000068, 16.483547268000052 ], [ 97.61060631600003, 16.446234442000048 ], [ 97.589366082000026, 16.415269273000092 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MM-05", "NAME_1": "Tanintharyi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.191223655000044, 14.99320983800007 ], [ 98.221632121000027, 14.921260885000081 ], [ 98.243336222000039, 14.805118103000041 ], [ 98.297493123000038, 14.721247254000048 ], [ 98.418209269000045, 14.607559103000057 ], [ 98.547710409000047, 14.377676493000095 ], [ 98.601453898000045, 14.313649394000095 ], [ 98.670390259000044, 14.267915751000075 ], [ 98.706977173000098, 14.269982809000041 ], [ 98.753692668000099, 14.200116272000045 ], [ 98.872341756000139, 14.112473043000122 ], [ 98.935283651000134, 14.085394592000071 ], [ 98.952956991000065, 14.028033752000084 ], [ 99.007113892000064, 13.949640605000084 ], [ 99.090002890000108, 13.870110575000083 ], [ 99.101164999000105, 13.778824158000077 ], [ 99.152531372000055, 13.714874573000102 ], [ 99.152014608000115, 13.581962790000091 ], [ 99.187878052000087, 13.427140198000117 ], [ 99.186947876000033, 13.329135844000092 ], [ 99.172788534000063, 13.300920512000033 ], [ 99.190151815000092, 13.229503682000114 ], [ 99.172788534000063, 13.19950551400008 ], [ 99.11408410700011, 13.188085022000067 ], [ 99.102095175000045, 13.171341858000119 ], [ 99.093206828000064, 13.038326722000079 ], [ 99.164830364000125, 12.975514018000112 ], [ 99.153151490000027, 12.913553975000085 ], [ 99.17526900200005, 12.833429667000104 ], [ 99.210719035000068, 12.792269389000126 ], [ 99.224464966000028, 12.717467753000093 ], [ 99.266736288000118, 12.702843323000124 ], [ 99.276864869000065, 12.6655846150001 ], [ 99.403265421000071, 12.575926005000042 ], [ 99.404195597000069, 12.508126526000112 ], [ 99.387039022000067, 12.465906880000148 ], [ 99.473752076000039, 12.18726755800013 ], [ 99.452254680000124, 12.129389953000029 ], [ 99.541654907000122, 12.140655416000072 ], [ 99.518400513000074, 12.025933737000102 ], [ 99.574004354000067, 11.976324361000124 ], [ 99.561395305000076, 11.872919820000035 ], [ 99.630021606000128, 11.815765686000105 ], [ 99.606870565000122, 11.725693665000037 ], [ 99.542585083000063, 11.640479228000075 ], [ 99.449774211000033, 11.613762513000026 ], [ 99.428173462000075, 11.49689626100006 ], [ 99.387039022000067, 11.451550192000042 ], [ 99.364301392000129, 11.37672271800011 ], [ 99.243275188000041, 11.197663880000064 ], [ 99.212992798000073, 11.108263652000076 ], [ 99.07687707600013, 10.996513367000105 ], [ 99.055069621000086, 10.94525034600008 ], [ 99.005563599000027, 10.958815410000071 ], [ 98.992334433000053, 10.947963359000113 ], [ 98.979622030000087, 10.90765574100007 ], [ 98.989853964000076, 10.860449321000132 ], [ 98.974454387000094, 10.824198303000088 ], [ 98.892082153000104, 10.808514506000037 ], [ 98.868207642000129, 10.769886373000119 ], [ 98.830070435000039, 10.763556010000102 ], [ 98.766715128000044, 10.688754375000087 ], [ 98.747904908000123, 10.623125305000059 ], [ 98.777257121000105, 10.583231100000106 ], [ 98.790382935000082, 10.500264588000078 ], [ 98.74740644600007, 10.350531317000048 ], [ 98.718923373000052, 10.312567450000074 ], [ 98.696055535000028, 10.223700262000079 ], [ 98.543142123000052, 9.987453518000052 ], [ 98.521006707000026, 10.028998114000046 ], [ 98.513926629000082, 10.146918036000045 ], [ 98.48959394600007, 10.19790273600006 ], [ 98.528493686000047, 10.364203192000048 ], [ 98.494151238000029, 10.452460028000075 ], [ 98.49545332100007, 10.556870835000041 ], [ 98.463389519000032, 10.630031643000052 ], [ 98.459320509000065, 10.715399481000077 ], [ 98.463552280000044, 10.729437567000048 ], [ 98.498301629000082, 10.731594143000052 ], [ 98.528493686000047, 10.693101304000038 ], [ 98.53834069100003, 10.718695380000042 ], [ 98.521006707000026, 10.74095286700009 ], [ 98.543711785000028, 10.745062567000048 ], [ 98.563243035000028, 10.72728099200009 ], [ 98.599864129000082, 10.805487372000073 ], [ 98.596690300000034, 10.837144273000092 ], [ 98.630869988000029, 10.850816148000092 ], [ 98.586436394000032, 10.861029364000046 ], [ 98.581553582000026, 10.882025458000044 ], [ 98.647959832000026, 10.919094143000052 ], [ 98.67310631600003, 10.905462958000044 ], [ 98.712412957000026, 10.924383856000077 ], [ 98.720225457000026, 10.980536200000074 ], [ 98.692881707000026, 11.00844961100006 ], [ 98.722422722000033, 11.044867255000042 ], [ 98.706553582000026, 11.097845770000049 ], [ 98.676280144000032, 11.100572007000039 ], [ 98.658213738000029, 11.131984768000052 ], [ 98.724131707000026, 11.156195380000042 ], [ 98.759287957000026, 11.268947658000059 ], [ 98.72193444100003, 11.350083726000037 ], [ 98.727061394000032, 11.385199286000045 ], [ 98.698008660000028, 11.388006903000075 ], [ 98.715342644000032, 11.443182684000078 ], [ 98.774912957000026, 11.453517971000053 ], [ 98.754405144000032, 11.522406317000048 ], [ 98.728851759000065, 11.517645575000074 ], [ 98.717946811000047, 11.53188711100006 ], [ 98.73560631600003, 11.64203522300005 ], [ 98.752207879000082, 11.681708075000074 ], [ 98.817149285000028, 11.677394924000055 ], [ 98.822601759000065, 11.707953192000048 ], [ 98.891612175000034, 11.69367096600007 ], [ 98.876719597000033, 11.722642320000091 ], [ 98.804942254000082, 11.736517645000049 ], [ 98.782969597000033, 11.755113023000092 ], [ 98.825694207000026, 11.825873114000046 ], [ 98.808929884000065, 11.851304429000038 ], [ 98.81609134200005, 11.833807684000078 ], [ 98.768077019000032, 11.761948960000041 ], [ 98.744151238000029, 11.762518622000073 ], [ 98.71216881600003, 11.736517645000049 ], [ 98.703135613000029, 11.697455145000049 ], [ 98.674164259000065, 11.685248114000046 ], [ 98.610362175000034, 11.731268622000073 ], [ 98.605967644000032, 11.769191799000055 ], [ 98.63209069100003, 11.792873440000051 ], [ 98.603526238000029, 11.803615627000056 ], [ 98.624034050000034, 11.830267645000049 ], [ 98.651377800000034, 11.830267645000049 ], [ 98.68091881600003, 11.877346096000053 ], [ 98.706553582000026, 11.878648179000038 ], [ 98.694102410000028, 11.89288971600007 ], [ 98.549001498000052, 11.878648179000038 ], [ 98.578135613000029, 11.906683661000045 ], [ 98.664073113000029, 11.920355536000045 ], [ 98.690928582000026, 11.954331773000092 ], [ 98.720225457000026, 11.96430084800005 ], [ 98.721446160000028, 11.997788804000038 ], [ 98.703135613000029, 12.048081773000092 ], [ 98.712738477000073, 12.063625393000052 ], [ 98.665049675000034, 12.060248114000046 ], [ 98.633799675000034, 12.090318101000037 ], [ 98.629649285000028, 12.131984768000052 ], [ 98.709727410000028, 12.204250393000052 ], [ 98.703298373000052, 12.237779039000088 ], [ 98.662933790000068, 12.236802476000037 ], [ 98.596690300000034, 12.19399648600006 ], [ 98.563243035000028, 12.20766836100006 ], [ 98.539073113000029, 12.241766669000071 ], [ 98.568369988000029, 12.290920315000051 ], [ 98.676768425000034, 12.315252997000073 ], [ 98.706553582000026, 12.347886460000041 ], [ 98.60515384200005, 12.428941148000092 ], [ 98.616221550000034, 12.485744533000059 ], [ 98.701426629000082, 12.498724677000041 ], [ 98.709727410000028, 12.512396552000041 ], [ 98.63998457100007, 12.53188711100006 ], [ 98.623057488000029, 12.558172919000071 ], [ 98.651377800000034, 12.622259833000044 ], [ 98.67310631600003, 12.625392971000053 ], [ 98.66765384200005, 12.674790757000039 ], [ 98.692881707000026, 12.725287177000041 ], [ 98.648448113000029, 12.723334052000041 ], [ 98.644541863000029, 12.742010809000078 ], [ 98.678721550000034, 12.756293036000045 ], [ 98.617849155000044, 12.76626211100006 ], [ 98.651377800000034, 12.797308661000045 ], [ 98.634287957000026, 12.878607489000046 ], [ 98.589854363000029, 12.919582424000055 ], [ 98.614024285000028, 12.954291083000044 ], [ 98.583832227000073, 13.026597398000092 ], [ 98.578461134000065, 13.186753648000092 ], [ 98.500498894000032, 13.249172268000052 ], [ 98.48991946700005, 13.297837632000039 ], [ 98.479991082000026, 13.283880927000041 ], [ 98.460459832000026, 13.35578034100007 ], [ 98.473155144000032, 13.413031317000048 ], [ 98.45281009200005, 13.379461981000077 ], [ 98.445323113000029, 13.424302476000037 ], [ 98.418630405000044, 13.454575914000088 ], [ 98.426442905000044, 13.490057684000078 ], [ 98.336110873000052, 13.598578192000048 ], [ 98.288259311000047, 13.69476959800005 ], [ 98.30201256600003, 13.700995184000078 ], [ 98.244802280000044, 13.714056708000044 ], [ 98.254161004000082, 13.851792710000041 ], [ 98.23365319100003, 13.917303778000075 ], [ 98.23365319100003, 14.002630927000041 ], [ 98.192149285000028, 14.064683335000041 ], [ 98.17896569100003, 14.019720770000049 ], [ 98.199473504000082, 13.992743231000077 ], [ 98.198252800000034, 13.964911200000074 ], [ 98.180186394000032, 13.925034898000092 ], [ 98.199473504000082, 13.869208075000074 ], [ 98.179453972000033, 13.732407945000091 ], [ 98.196055535000028, 13.668361721000053 ], [ 98.168467644000032, 13.58429596600007 ], [ 98.18685957100007, 13.543850002000056 ], [ 98.171071811000047, 13.53782786700009 ], [ 98.151052280000044, 13.557603257000039 ], [ 98.144297722000033, 13.537095445000091 ], [ 98.129730665000068, 13.58234284100007 ], [ 98.151052280000044, 13.606024481000077 ], [ 98.137461785000028, 13.626532294000071 ], [ 98.158457879000082, 13.642320054000038 ], [ 98.151052280000044, 13.673732815000051 ], [ 98.168793165000068, 13.680812893000052 ], [ 98.103282097000033, 13.700995184000078 ], [ 98.116953972000033, 13.728949286000045 ], [ 98.092051629000082, 13.73969147300005 ], [ 98.082774285000028, 13.769964911000045 ], [ 98.088877800000034, 13.795111395000049 ], [ 98.110118035000028, 13.790350653000075 ], [ 98.110850457000026, 13.902167059000078 ], [ 98.082286004000082, 13.92446523600006 ], [ 98.061696811000047, 14.01007721600007 ], [ 98.107676629000082, 14.11001211100006 ], [ 98.096446160000028, 14.167792059000078 ], [ 98.110118035000028, 14.167792059000078 ], [ 98.041758660000028, 14.242865302000041 ], [ 97.99350019600007, 14.330511786000045 ], [ 97.97974694100003, 14.397406317000048 ], [ 98.000254754000082, 14.468736070000091 ], [ 97.96607506600003, 14.448309637000079 ], [ 97.913584832000026, 14.586737372000073 ], [ 97.92505944100003, 14.612779039000088 ], [ 97.885508660000028, 14.655951239000046 ], [ 97.885508660000028, 14.684068101000037 ], [ 97.904063347000033, 14.708970445000091 ], [ 97.943125847000033, 14.720200914000088 ], [ 97.992442254000082, 14.663723049000055 ], [ 98.027598504000082, 14.647528387000079 ], [ 97.982188347000033, 14.715277411000045 ], [ 98.000254754000082, 14.722072658000059 ], [ 97.964610222000033, 14.747056382000039 ], [ 97.972911004000082, 14.763617255000042 ], [ 97.949880405000044, 14.798895575000074 ], [ 97.931162957000026, 14.752183335000041 ], [ 97.897227410000028, 14.797756252000056 ], [ 97.902191602000073, 14.737697658000059 ], [ 97.875498894000032, 14.716742255000042 ], [ 97.850352410000028, 14.723618882000039 ], [ 97.794922596600486, 14.880153274553948 ], [ 97.854936964769081, 14.944902045393064 ], [ 97.902272577417477, 15.078433945769973 ], [ 98.020818312814868, 15.099130356980368 ], [ 98.100710076908456, 14.999058946513173 ], [ 98.191223655000044, 14.99320983800007 ] ] ], [ [ [ 98.057465040000068, 9.796861070000091 ], [ 98.018321160000028, 9.794907945000091 ], [ 98.015391472000033, 9.826402085000041 ], [ 98.046071811000047, 9.827948309000078 ], [ 98.057465040000068, 9.796861070000091 ] ] ], [ [ [ 98.228688998000052, 10.519964911000045 ], [ 98.221853061000047, 10.498114325000074 ], [ 98.19271894600007, 10.482407945000091 ], [ 98.189707879000082, 10.515570380000042 ], [ 98.23365319100003, 10.529364325000074 ], [ 98.228688998000052, 10.519964911000045 ] ] ], [ [ [ 98.429535352000073, 10.977728583000044 ], [ 98.43287194100003, 10.99359772300005 ], [ 98.451426629000082, 11.001939195000091 ], [ 98.440277540000068, 10.96556224200009 ], [ 98.429535352000073, 10.977728583000044 ] ] ], [ [ [ 97.46452884200005, 11.782456773000092 ], [ 97.459239129000082, 11.786200262000079 ], [ 97.444346550000034, 11.80023834800005 ], [ 97.479665561000047, 11.77798086100006 ], [ 97.46452884200005, 11.782456773000092 ] ] ], [ [ [ 97.836924675000034, 12.772447007000039 ], [ 97.83529707100007, 12.792792059000078 ], [ 97.85279381600003, 12.806545315000051 ], [ 97.868011915000068, 12.774807033000059 ], [ 97.836924675000034, 12.772447007000039 ] ] ], [ [ [ 98.295664910000028, 10.048895575000074 ], [ 98.273936394000032, 10.048041083000044 ], [ 98.288259311000047, 10.007961330000057 ], [ 98.26921634200005, 10.00259023600006 ], [ 98.243907097000033, 9.960109768000052 ], [ 98.17896569100003, 9.932806708000044 ], [ 98.133474155000044, 9.845607815000051 ], [ 98.117198113000029, 9.882025458000044 ], [ 98.127452019000032, 9.960109768000052 ], [ 98.234629754000082, 10.054185289000088 ], [ 98.254405144000032, 10.062689520000049 ], [ 98.295664910000028, 10.048895575000074 ] ] ], [ [ [ 98.185801629000082, 10.121161200000074 ], [ 98.17156009200005, 10.148138739000046 ], [ 98.17896569100003, 10.192857164000088 ], [ 98.240489129000082, 10.172349351000037 ], [ 98.23365319100003, 10.144476630000042 ], [ 98.201426629000082, 10.118068752000056 ], [ 98.185801629000082, 10.042059637000079 ], [ 98.185801629000082, 10.121161200000074 ] ] ], [ [ [ 97.91146894600007, 10.494533596000053 ], [ 97.902598504000082, 10.479315497000073 ], [ 97.92505944100003, 10.47406647300005 ], [ 97.943532748000052, 10.443793036000045 ], [ 97.917735222000033, 10.43305084800005 ], [ 97.931895379000082, 10.412014065000051 ], [ 97.910166863000029, 10.401922919000071 ], [ 97.889414910000028, 10.419989325000074 ], [ 97.904063347000033, 10.439276434000078 ], [ 97.896250847000033, 10.487534898000092 ], [ 97.91146894600007, 10.494533596000053 ] ] ], [ [ [ 98.493662957000026, 10.891099351000037 ], [ 98.54224694100003, 10.860052802000041 ], [ 98.553233269000032, 10.832831122000073 ], [ 98.527110222000033, 10.786932684000078 ], [ 98.498383009000065, 10.79360586100006 ], [ 98.528493686000047, 10.820054429000038 ], [ 98.500498894000032, 10.823472398000092 ], [ 98.493662957000026, 10.891099351000037 ] ] ], [ [ [ 97.890391472000033, 10.884955145000049 ], [ 97.911957227000073, 10.924261786000045 ], [ 97.951833530000044, 10.919094143000052 ], [ 97.927744988000029, 10.871975002000056 ], [ 97.883555535000028, 10.844549872000073 ], [ 97.890391472000033, 10.884955145000049 ] ] ], [ [ [ 98.267751498000052, 10.837144273000092 ], [ 98.276377800000034, 10.784491278000075 ], [ 98.295664910000028, 10.781927802000041 ], [ 98.282969597000033, 10.756537177000041 ], [ 98.295664910000028, 10.73468659100007 ], [ 98.250743035000028, 10.693101304000038 ], [ 98.232188347000033, 10.708319403000075 ], [ 98.23365319100003, 10.74095286700009 ], [ 98.25554446700005, 10.74640534100007 ], [ 98.23365319100003, 10.768255927000041 ], [ 98.240489129000082, 10.830959377000056 ], [ 98.198741082000026, 10.881659247000073 ], [ 98.17896569100003, 10.898586330000057 ], [ 98.17156009200005, 10.884955145000049 ], [ 98.16529381600003, 10.919094143000052 ], [ 98.146739129000082, 10.924505927000041 ], [ 98.100271030000044, 10.882025458000044 ], [ 98.07740319100003, 10.888088283000059 ], [ 98.131195509000065, 10.946356512000079 ], [ 98.140879754000082, 10.977443752000056 ], [ 98.171885613000029, 10.978664455000057 ], [ 98.205739780000044, 10.960028387000079 ], [ 98.23178144600007, 10.870266018000052 ], [ 98.267751498000052, 10.837144273000092 ] ] ], [ [ [ 98.528493686000047, 10.974310614000046 ], [ 98.507985873000052, 10.946356512000079 ], [ 98.477061394000032, 10.973700262000079 ], [ 98.514170769000032, 11.03579336100006 ], [ 98.52466881600003, 11.08665599200009 ], [ 98.54460696700005, 11.031195380000042 ], [ 98.541514519000032, 10.953802802000041 ], [ 98.528493686000047, 10.974310614000046 ] ] ], [ [ [ 98.275157097000033, 11.248032945000091 ], [ 98.30201256600003, 11.241197007000039 ], [ 98.24732506600003, 11.214504299000055 ], [ 98.21998131600003, 11.269110419000071 ], [ 98.281423373000052, 11.275946356000077 ], [ 98.275157097000033, 11.248032945000091 ] ] ], [ [ [ 98.278330925000034, 11.799790757000039 ], [ 98.306651238000029, 11.777411200000074 ], [ 98.323008660000028, 11.731268622000073 ], [ 98.300303582000026, 11.704779364000046 ], [ 98.283539259000065, 11.509426174000055 ], [ 98.260915561000047, 11.467759507000039 ], [ 98.23365319100003, 11.501898505000042 ], [ 98.226817254000082, 11.473944403000075 ], [ 98.201996290000068, 11.46625397300005 ], [ 98.21998131600003, 11.453517971000053 ], [ 98.176524285000028, 11.449164130000042 ], [ 98.16529381600003, 11.473944403000075 ], [ 98.199473504000082, 11.488226630000042 ], [ 98.187510613000029, 11.534979559000078 ], [ 98.213145379000082, 11.553412177000041 ], [ 98.202647332000026, 11.589178778000075 ], [ 98.240489129000082, 11.624823309000078 ], [ 98.23365319100003, 11.666408596000053 ], [ 98.278330925000034, 11.799790757000039 ] ] ], [ [ [ 98.535329623000052, 11.803615627000056 ], [ 98.556407097000033, 11.758734442000048 ], [ 98.549001498000052, 11.62173086100006 ], [ 98.528493686000047, 11.580471096000053 ], [ 98.535329623000052, 11.529242255000042 ], [ 98.458994988000029, 11.583807684000078 ], [ 98.432383660000028, 11.56671784100007 ], [ 98.431651238000029, 11.60492584800005 ], [ 98.41570071700005, 11.604437567000048 ], [ 98.418630405000044, 11.63226959800005 ], [ 98.379405144000032, 11.691107489000046 ], [ 98.40552819100003, 11.707953192000048 ], [ 98.379893425000034, 11.750921942000048 ], [ 98.413096550000034, 11.773382880000042 ], [ 98.37077884200005, 11.789252020000049 ], [ 98.535329623000052, 11.803615627000056 ] ] ], [ [ [ 98.055430535000028, 11.701117255000042 ], [ 98.089610222000033, 11.63226959800005 ], [ 98.011729363000029, 11.704738674000055 ], [ 98.028330925000034, 11.717189846000053 ], [ 98.022471550000034, 11.755804755000042 ], [ 98.00709069100003, 11.761948960000041 ], [ 97.999766472000033, 11.841782945000091 ], [ 98.013926629000082, 11.864976304000038 ], [ 98.013926629000082, 11.816595770000049 ], [ 98.052256707000026, 11.77602773600006 ], [ 98.05795332100007, 11.729071356000077 ], [ 98.082286004000082, 11.73468659100007 ], [ 98.055430535000028, 11.701117255000042 ] ] ], [ [ [ 97.664398634000065, 11.905951239000046 ], [ 97.678477410000028, 11.887884833000044 ], [ 97.671885613000029, 11.837713934000078 ], [ 97.650889519000032, 11.844549872000073 ], [ 97.642832879000082, 11.867661851000037 ], [ 97.664398634000065, 11.905951239000046 ] ] ], [ [ [ 98.254161004000082, 11.85814036700009 ], [ 98.256521030000044, 11.902533270000049 ], [ 98.265391472000033, 11.90851471600007 ], [ 98.289073113000029, 11.882391669000071 ], [ 98.273692254000082, 11.853338934000078 ], [ 98.254161004000082, 11.85814036700009 ] ] ], [ [ [ 98.267751498000052, 11.93390534100007 ], [ 98.246104363000029, 11.925441799000055 ], [ 98.227061394000032, 11.953924872000073 ], [ 98.235850457000026, 11.968329169000071 ], [ 98.260915561000047, 11.971136786000045 ], [ 98.267751498000052, 11.93390534100007 ] ] ], [ [ [ 98.603526238000029, 11.96743398600006 ], [ 98.659190300000034, 11.94867584800005 ], [ 98.658213738000029, 11.93390534100007 ], [ 98.572601759000065, 11.931626695000091 ], [ 98.515879754000082, 11.895900783000059 ], [ 98.478037957000026, 11.89093659100007 ], [ 98.459727410000028, 11.933661200000074 ], [ 98.470957879000082, 11.988104559000078 ], [ 98.440277540000068, 12.015366929000038 ], [ 98.43913821700005, 12.112005927000041 ], [ 98.519867384000065, 12.007025458000044 ], [ 98.559580925000034, 12.000799872000073 ], [ 98.603526238000029, 11.96743398600006 ] ] ], [ [ [ 98.096446160000028, 12.187160549000055 ], [ 98.131846550000034, 12.198553778000075 ], [ 98.137461785000028, 12.138739325000074 ], [ 98.116709832000026, 12.16547272300005 ], [ 98.076670769000032, 12.161932684000078 ], [ 98.039398634000065, 12.20734284100007 ], [ 98.04615319100003, 12.26203034100007 ], [ 98.072520379000082, 12.289536851000037 ], [ 98.108246290000068, 12.284654039000088 ], [ 98.123789910000028, 12.259466864000046 ], [ 98.096446160000028, 12.187160549000055 ] ] ], [ [ [ 98.065277540000068, 12.365301825000074 ], [ 98.048024936000047, 12.330511786000045 ], [ 98.010508660000028, 12.310044664000088 ], [ 98.000254754000082, 12.269029039000088 ], [ 97.982432488000029, 12.306382554000038 ], [ 97.945567254000082, 12.310044664000088 ], [ 97.971039259000065, 12.344875393000052 ], [ 97.96607506600003, 12.358465887000079 ], [ 97.938161655000044, 12.337958075000074 ], [ 97.939952019000032, 12.366278387000079 ], [ 98.017832879000082, 12.40265534100007 ], [ 98.005381707000026, 12.367336330000057 ], [ 98.041758660000028, 12.358465887000079 ], [ 98.045583530000044, 12.389064846000053 ], [ 98.075938347000033, 12.427394924000055 ], [ 98.104502800000034, 12.383042710000041 ], [ 98.087738477000073, 12.360052802000041 ], [ 98.065277540000068, 12.365301825000074 ] ] ], [ [ [ 98.514170769000032, 12.495591539000088 ], [ 98.514170769000032, 12.423651434000078 ], [ 98.495616082000026, 12.405829169000071 ], [ 98.47429446700005, 12.424994208000044 ], [ 98.499847852000073, 12.513088283000059 ], [ 98.514170769000032, 12.495591539000088 ] ] ], [ [ [ 98.254161004000082, 12.567613023000092 ], [ 98.289886915000068, 12.526312567000048 ], [ 98.28288821700005, 12.503851630000042 ], [ 98.260508660000028, 12.495266018000052 ], [ 98.230235222000033, 12.516994533000059 ], [ 98.23365319100003, 12.553656317000048 ], [ 98.254161004000082, 12.567613023000092 ] ] ], [ [ [ 97.822764519000032, 12.587469794000071 ], [ 97.849945509000065, 12.594631252000056 ], [ 97.861827019000032, 12.559800523000092 ], [ 97.849945509000065, 12.537258205000057 ], [ 97.822764519000032, 12.587469794000071 ] ] ], [ [ [ 98.466319207000026, 12.583726304000038 ], [ 98.455821160000028, 12.45774974200009 ], [ 98.349945509000065, 12.325913804000038 ], [ 98.30201256600003, 12.337958075000074 ], [ 98.336110873000052, 12.450913804000038 ], [ 98.315603061000047, 12.495591539000088 ], [ 98.333018425000034, 12.519232489000046 ], [ 98.302744988000029, 12.598578192000048 ], [ 98.315603061000047, 12.687445380000042 ], [ 98.40552819100003, 12.63898346600007 ], [ 98.39812259200005, 12.587469794000071 ], [ 98.42546634200005, 12.529730536000045 ], [ 98.450938347000033, 12.603989976000037 ], [ 98.466319207000026, 12.583726304000038 ] ] ], [ [ [ 98.295664910000028, 13.084662177000041 ], [ 98.318532748000052, 13.091376044000071 ], [ 98.336436394000032, 13.073879299000055 ], [ 98.30201256600003, 13.029445705000057 ], [ 98.314300977000073, 12.925523179000038 ], [ 98.30201256600003, 12.913316148000092 ], [ 98.240489129000082, 13.13930898600006 ], [ 98.24732506600003, 13.215033270000049 ], [ 98.26880944100003, 13.198919989000046 ], [ 98.295664910000028, 13.084662177000041 ] ] ], [ [ [ 97.931895379000082, 13.859279690000051 ], [ 97.938161655000044, 13.851792710000041 ], [ 97.917735222000033, 13.783596096000053 ], [ 97.918711785000028, 13.853257554000038 ], [ 97.931895379000082, 13.859279690000051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MM-07", "NAME_1": "Ayeyarwady" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 96.01725835095003, 16.378167461430106 ], [ 96.066579623000052, 16.335638739000046 ], [ 96.067556186000047, 16.310248114000046 ], [ 95.979991082000026, 16.223130601000037 ], [ 95.942393425000034, 16.21906159100007 ], [ 95.951426629000082, 16.257635809000078 ], [ 95.90788821700005, 16.211737372000073 ], [ 95.883067254000082, 16.209173895000049 ], [ 95.88990319100003, 16.243963934000078 ], [ 95.797699415000068, 16.144924221000053 ], [ 95.77662194100003, 16.140692450000074 ], [ 95.745860222000033, 16.158351955000057 ], [ 95.724864129000082, 16.222845770000049 ], [ 95.732269727000073, 16.12726471600007 ], [ 95.697032097000033, 16.065985419000071 ], [ 95.687347852000073, 15.988226630000042 ], [ 95.664724155000044, 15.949204820000091 ], [ 95.523448113000029, 15.803656317000048 ], [ 95.396494988000029, 15.716376044000071 ], [ 95.310557488000029, 15.723211981000077 ], [ 95.287933790000068, 15.740139065000051 ], [ 95.28256269600007, 15.838324286000045 ], [ 95.312673373000052, 15.866522528000075 ], [ 95.313975457000026, 15.90070221600007 ], [ 95.338552280000044, 15.922023830000057 ], [ 95.364268425000034, 15.984564520000049 ], [ 95.36850019600007, 16.038804429000038 ], [ 95.345469597000033, 16.104966539000088 ], [ 95.361582879000082, 16.148382880000042 ], [ 95.32748457100007, 16.107407945000091 ], [ 95.348643425000034, 16.041571356000077 ], [ 95.341807488000029, 15.983872789000088 ], [ 95.297129754000082, 15.90298086100006 ], [ 95.25163821700005, 15.868231512000079 ], [ 95.238780144000032, 15.893947658000059 ], [ 95.275889519000032, 15.970648505000042 ], [ 95.272959832000026, 16.003729559000078 ], [ 95.22396894600007, 15.91860586100006 ], [ 95.212738477000073, 15.78656647300005 ], [ 95.173594597000033, 15.777818101000037 ], [ 95.125743035000028, 15.817613023000092 ], [ 95.115244988000029, 15.893947658000059 ], [ 95.137543165000068, 16.006659247000073 ], [ 95.128916863000029, 16.03851959800005 ], [ 95.107758009000065, 15.983872789000088 ], [ 95.097666863000029, 16.025132554000038 ], [ 95.13795006600003, 16.10032786700009 ], [ 95.22592207100007, 16.119940497000073 ], [ 95.183604363000029, 16.14093659100007 ], [ 95.148692254000082, 16.132025458000044 ], [ 95.135752800000034, 16.148382880000042 ], [ 95.070567254000082, 16.07485586100006 ], [ 95.072927280000044, 15.970648505000042 ], [ 95.055023634000065, 15.846136786000045 ], [ 95.033946160000028, 15.805731512000079 ], [ 94.997569207000026, 15.795314846000053 ], [ 94.975596550000034, 15.764146226000037 ], [ 94.846853061000047, 15.790594794000071 ], [ 94.896332227000073, 15.847398179000038 ], [ 94.882578972000033, 15.867173570000091 ], [ 94.85320071700005, 15.840277411000045 ], [ 94.834727410000028, 15.949164130000042 ], [ 94.862803582000026, 15.991766669000071 ], [ 94.920664910000028, 16.018622137000079 ], [ 94.924082879000082, 16.03851959800005 ], [ 94.889333530000044, 16.017401434000078 ], [ 94.863129102000073, 16.127752997000073 ], [ 94.90007571700005, 16.183783270000049 ], [ 94.959239129000082, 16.200873114000046 ], [ 94.992442254000082, 16.250799872000073 ], [ 94.966970248000052, 16.220404364000046 ], [ 94.893077019000032, 16.205755927000041 ], [ 94.854665561000047, 16.160223700000074 ], [ 94.848399285000028, 16.096502997000073 ], [ 94.869395379000082, 16.040961005000042 ], [ 94.846202019000032, 15.999986070000091 ], [ 94.786875847000033, 15.962144273000092 ], [ 94.721202019000032, 15.856675523000092 ], [ 94.658702019000032, 15.854478257000039 ], [ 94.635508660000028, 15.908148505000042 ], [ 94.62240644600007, 15.891546942000048 ], [ 94.601328972000033, 15.921210028000075 ], [ 94.703135613000029, 15.982367255000042 ], [ 94.732269727000073, 16.017401434000078 ], [ 94.741709832000026, 16.067287502000056 ], [ 94.793711785000028, 16.162014065000051 ], [ 94.765961134000065, 16.139471747000073 ], [ 94.705332879000082, 16.020656643000052 ], [ 94.614756707000026, 15.94367096600007 ], [ 94.566579623000052, 15.935492255000042 ], [ 94.562347852000073, 15.961859442000048 ], [ 94.642344597000033, 16.044663804000038 ], [ 94.678884311000047, 16.121283270000049 ], [ 94.683848504000082, 16.209173895000049 ], [ 94.665212436000047, 16.257635809000078 ], [ 94.704925977000073, 16.353216864000046 ], [ 94.732269727000073, 16.360663153000075 ], [ 94.705821160000028, 16.473089911000045 ], [ 94.732269727000073, 16.524562893000052 ], [ 94.697276238000029, 16.508368231000077 ], [ 94.67701256600003, 16.53196849200009 ], [ 94.683848504000082, 16.364081122000073 ], [ 94.627940300000034, 16.260199286000045 ], [ 94.583994988000029, 16.236517645000049 ], [ 94.635508660000028, 16.32648346600007 ], [ 94.629730665000068, 16.344183661000045 ], [ 94.58366946700005, 16.27484772300005 ], [ 94.52116946700005, 16.295477606000077 ], [ 94.507009311000047, 16.189601955000057 ], [ 94.428070509000065, 16.074164130000042 ], [ 94.36060631600003, 16.049261786000045 ], [ 94.340017123000052, 15.996242580000057 ], [ 94.286631707000026, 15.99750397300005 ], [ 94.251475457000026, 15.968451239000046 ], [ 94.214610222000033, 16.014797268000052 ], [ 94.215098504000082, 16.15766022300005 ], [ 94.237803582000026, 16.273138739000046 ], [ 94.235362175000034, 16.34837474200009 ], [ 94.258636915000068, 16.38735586100006 ], [ 94.27312259200005, 16.466498114000046 ], [ 94.268321160000028, 16.527492580000057 ], [ 94.27312259200005, 16.538153387000079 ], [ 94.331065300000034, 16.528631903000075 ], [ 94.341319207000026, 16.548407294000071 ], [ 94.346202019000032, 16.59243398600006 ], [ 94.327647332000026, 16.606431382000039 ], [ 94.361989780000044, 16.63548411700009 ], [ 94.364431186000047, 16.701117255000042 ], [ 94.402679884000065, 16.788275458000044 ], [ 94.382334832000026, 16.901271877000056 ], [ 94.42318769600007, 16.901271877000056 ], [ 94.464691602000073, 16.949652411000045 ], [ 94.444346550000034, 16.949652411000045 ], [ 94.457855665000068, 17.059556382000039 ], [ 94.488780144000032, 17.124212958000044 ], [ 94.48568769600007, 17.141017971000053 ], [ 94.457774285000028, 17.15375397300005 ], [ 94.45435631600003, 17.180080471000053 ], [ 94.464691602000073, 17.189276434000078 ], [ 94.510915561000047, 17.169012762000079 ], [ 94.537852410000028, 17.187404690000051 ], [ 94.508636915000068, 17.230129299000055 ], [ 94.511973504000082, 17.275213934000078 ], [ 94.545420769000032, 17.296087958000044 ], [ 94.54615319100003, 17.319647528000075 ], [ 94.594493035000028, 17.292303778000075 ], [ 94.56771864799714, 17.462880298387063 ], [ 94.636218703330428, 17.41624990530886 ], [ 94.754351026678478, 17.371653143777564 ], [ 94.799412876203235, 17.465394192188228 ], [ 94.809541456572902, 17.623989162869577 ], [ 94.882921990557406, 17.729977525142658 ], [ 94.902662388258591, 17.850822862085408 ], [ 94.857910597995669, 17.94236766173816 ], [ 94.875377231673838, 17.99885000282535 ], [ 94.890053339190217, 18.236535752822704 ], [ 94.836595309326015, 18.357620357093765 ], [ 94.910723911978891, 18.411589666829627 ], [ 94.965294224249021, 18.411589666829627 ], [ 95.011596307223783, 18.371902166751568 ], [ 95.064512973994511, 18.360326646457565 ], [ 95.08435672358388, 18.376863105048244 ], [ 95.109161412369247, 18.457891750703709 ], [ 95.153357178790714, 18.47127496586694 ], [ 95.382736444131524, 18.230747992226043 ], [ 95.450329218418631, 18.033059801568584 ], [ 95.444851516184485, 17.957017930832819 ], [ 95.490326775959886, 17.914462389327809 ], [ 95.481438429939544, 17.822426663259876 ], [ 95.450225864731806, 17.790128892434439 ], [ 95.473480259006692, 17.685871690026431 ], [ 95.516475050982763, 17.634040228873459 ], [ 95.672641228909526, 17.566524969851457 ], [ 95.74674523330583, 17.462190253077722 ], [ 95.690727981111422, 17.300107123345072 ], [ 95.706747674865255, 17.206391913356128 ], [ 95.795837844241078, 17.118206082444715 ], [ 95.850098098148692, 17.032733263329419 ], [ 95.852268507585507, 16.988369044895478 ], [ 95.90074100089646, 16.932687690384569 ], [ 95.904254999268744, 16.904963284228188 ], [ 95.872318963649207, 16.818844509066821 ], [ 95.9061153503431, 16.742053331296177 ], [ 95.88606489517872, 16.670739853961095 ], [ 95.861363560080179, 16.652239692407875 ], [ 95.883171014430729, 16.613714911414036 ], [ 95.88895877502739, 16.552607529713725 ], [ 95.832321405208631, 16.479123642941772 ], [ 95.904151645581919, 16.406053168219103 ], [ 95.981356236301224, 16.398947658907332 ], [ 96.01725835095003, 16.378167461430106 ] ] ], [ [ [ 93.396006707000083, 14.140448309000078 ], [ 93.394786004000082, 14.076361395000049 ], [ 93.374847852000073, 14.064683335000041 ], [ 93.39031009200005, 14.15375397300005 ], [ 93.396006707000083, 14.140448309000078 ] ] ], [ [ [ 93.675791863000029, 14.859198309000078 ], [ 93.703868035000028, 14.904445705000057 ], [ 93.724375847000033, 14.913804429000038 ], [ 93.70443769600007, 14.870998440000051 ], [ 93.675791863000029, 14.859198309000078 ] ] ], [ [ [ 94.827972852000073, 15.932033596000053 ], [ 94.841563347000033, 15.877427476000037 ], [ 94.803721550000034, 15.796576239000046 ], [ 94.724864129000082, 15.81195709800005 ], [ 94.806813998000052, 15.93109772300005 ], [ 94.823252800000034, 15.945786851000037 ], [ 94.827972852000073, 15.932033596000053 ] ] ], [ [ [ 94.662119988000029, 16.221869208000044 ], [ 94.667491082000026, 16.171942450000074 ], [ 94.629649285000028, 16.075181382000039 ], [ 94.56959069100003, 16.005194403000075 ], [ 94.478037957000026, 15.966131903000075 ], [ 94.478363477000073, 15.942328192000048 ], [ 94.402679884000065, 15.839260158000059 ], [ 94.41724694100003, 15.871771552000041 ], [ 94.382334832000026, 15.969631252000056 ], [ 94.389659050000034, 16.000921942000048 ], [ 94.485362175000034, 16.058986721000053 ], [ 94.51880944100003, 16.120428778000075 ], [ 94.611582879000082, 16.221747137000079 ], [ 94.642832879000082, 16.245510158000059 ], [ 94.662119988000029, 16.221869208000044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MM-06", "NAME_1": "Yangon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.827152576462964, 16.890353405276915 ], [ 96.846690300000034, 16.844916083000044 ], [ 96.811289910000028, 16.764715887000079 ], [ 96.789398634000065, 16.756089585000041 ], [ 96.801036004000082, 16.737372137000079 ], [ 96.716319207000026, 16.658351955000057 ], [ 96.679473385000051, 16.574867894000079 ], [ 96.615942930000074, 16.518004835000056 ], [ 96.436260641000047, 16.47776837400005 ], [ 96.289805535000028, 16.566839911000045 ], [ 96.265961134000065, 16.596828518000052 ], [ 96.226410352000073, 16.739406643000052 ], [ 96.234548373000052, 16.776922919000071 ], [ 96.287119988000029, 16.81313711100006 ], [ 96.257578972000033, 16.815904039000088 ], [ 96.206553582000026, 16.777492580000057 ], [ 96.17115319100003, 16.771551825000074 ], [ 96.240896030000044, 16.650132554000038 ], [ 96.234629754000082, 16.576361395000049 ], [ 96.336436394000032, 16.439439195000091 ], [ 96.285335514000053, 16.365993422000088 ], [ 96.118988477000073, 16.321763414000088 ], [ 96.07740319100003, 16.360825914000088 ], [ 95.990761346259092, 16.396260483734295 ], [ 95.883171014430729, 16.417706203778266 ], [ 95.832321405208631, 16.479123642941772 ], [ 95.88895877502739, 16.552607529713725 ], [ 95.883171014430729, 16.613714911414036 ], [ 95.861363560080179, 16.652239692407875 ], [ 95.88606489517872, 16.670739853961095 ], [ 95.9061153503431, 16.742053331296177 ], [ 95.872318963649207, 16.818844509066821 ], [ 95.904254999268744, 16.904963284228188 ], [ 95.90074100089646, 16.932687690384569 ], [ 95.852268507585507, 16.988369044895478 ], [ 95.850098098148692, 17.032733263329419 ], [ 95.795837844241078, 17.118206082444715 ], [ 95.706747674865255, 17.206391913356128 ], [ 95.691968214561427, 17.271788437986004 ], [ 95.706024203554136, 17.35997426979668 ], [ 95.773823684315516, 17.513324083139935 ], [ 95.848547805436851, 17.568695380187648 ], [ 95.902601352870079, 17.646752630729281 ], [ 95.976912062841393, 17.688817246718543 ], [ 96.039957309981844, 17.757288520149075 ], [ 96.060524529983013, 17.757443548880644 ], [ 96.293895297729762, 17.35421234852106 ], [ 96.328828565985475, 17.205952663784387 ], [ 96.38732628777791, 17.110687161083604 ], [ 96.394457634612081, 16.989402574569169 ], [ 96.573671503037417, 16.993717555920455 ], [ 96.714541456722827, 16.97648346623896 ], [ 96.827152576462964, 16.890353405276915 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MM-02", "NAME_1": "Bago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.882901898563503, 17.457197883431974 ], [ 96.855723504000082, 17.388495184000078 ], [ 96.842051629000082, 17.409002997000073 ], [ 96.82154381600003, 17.394720770000049 ], [ 96.910655144000032, 17.317084052000041 ], [ 96.910899285000028, 17.284857489000046 ], [ 96.849375847000033, 17.212958075000074 ], [ 96.855723504000082, 17.168768622000073 ], [ 96.910166863000029, 17.066839911000045 ], [ 96.910899285000028, 17.024807033000059 ], [ 96.879079623000052, 16.934719143000052 ], [ 96.83521569100003, 16.936021226000037 ], [ 96.855723504000082, 16.901271877000056 ], [ 96.80787194100003, 16.908677476000037 ], [ 96.827152576462964, 16.890353405276915 ], [ 96.714541456722827, 16.97648346623896 ], [ 96.573671503037417, 16.993717555920455 ], [ 96.394457634612081, 16.989402574569169 ], [ 96.38732628777791, 17.110687161083604 ], [ 96.328828565985475, 17.205952663784387 ], [ 96.293895297729762, 17.35421234852106 ], [ 96.060524529983013, 17.757443548880644 ], [ 96.039957309981844, 17.757288520149075 ], [ 95.976912062841393, 17.688817246718543 ], [ 95.902601352870079, 17.646752630729281 ], [ 95.848547805436851, 17.568695380187648 ], [ 95.773823684315516, 17.513324083139935 ], [ 95.74674523330583, 17.462190253077722 ], [ 95.672641228909526, 17.566524969851457 ], [ 95.516475050982763, 17.634040228873459 ], [ 95.473480259006692, 17.685871690026431 ], [ 95.450225864731806, 17.790128892434439 ], [ 95.481438429939544, 17.822426663259876 ], [ 95.490326775959886, 17.914462389327809 ], [ 95.444851516184485, 17.957017930832819 ], [ 95.450329218418631, 18.033059801568584 ], [ 95.387800734316386, 18.21989594234384 ], [ 95.197114699283929, 18.431924342834122 ], [ 95.067510206630686, 18.543726305024961 ], [ 95.079809198235864, 18.666974596300577 ], [ 95.10151329979891, 18.697515367040523 ], [ 95.16300825422752, 18.716738999904919 ], [ 95.204556106279256, 18.767846991545412 ], [ 95.213031040250257, 18.805467434074785 ], [ 95.185022414153025, 18.893110663526272 ], [ 95.278660108876863, 18.964708359902886 ], [ 95.306875441448426, 19.055322984468148 ], [ 95.380152621746049, 19.068603827104937 ], [ 95.432759231053637, 19.130357163951942 ], [ 95.52412316265378, 19.162551581090554 ], [ 95.736823357611797, 19.18180105237667 ], [ 95.823743116651485, 19.168184312056326 ], [ 95.829324171673136, 19.213504543999477 ], [ 95.852475214059837, 19.239756170910539 ], [ 95.857229444982863, 19.30396413803453 ], [ 95.800282016801589, 19.463592638389514 ], [ 95.884101190417539, 19.445712591762685 ], [ 95.906942172643141, 19.473126939556607 ], [ 95.952210727742852, 19.480775051227624 ], [ 96.070136346415211, 19.444498195835081 ], [ 96.112200962404472, 19.415636908116824 ], [ 96.162327102114034, 19.442999579067305 ], [ 96.179897088579708, 19.484883327903219 ], [ 96.398901808971289, 19.470000514811886 ], [ 96.423603143170453, 19.438141995356773 ], [ 96.423293084807995, 19.399668891206375 ], [ 96.463704055297853, 19.354322821740823 ], [ 96.462567172836714, 19.302904770838495 ], [ 96.538428176419188, 19.179940701302314 ], [ 96.502461379389104, 19.141932685145264 ], [ 96.505768671287115, 19.124698595463769 ], [ 96.551243931062515, 19.052325750932653 ], [ 96.651599563269201, 18.968506578216022 ], [ 96.684465773976228, 18.921765244770199 ], [ 96.614805943039812, 18.856627102558718 ], [ 96.643021274711998, 18.793633531362389 ], [ 96.615632766239116, 18.747719021115927 ], [ 96.689943475311111, 18.608761095348257 ], [ 96.740999790108162, 18.623953965902786 ], [ 96.821304966251148, 18.600208645212774 ], [ 96.939437289599198, 18.644934597053975 ], [ 96.978401320164778, 18.598012397354239 ], [ 96.989666782995585, 18.519128322713925 ], [ 96.976540969090422, 18.415672105083559 ], [ 97.006616651836964, 18.372728989950929 ], [ 97.060463494594558, 18.338596707372119 ], [ 97.07224572136289, 18.292578844338152 ], [ 97.122371861072509, 18.313611152332783 ], [ 97.141492141149342, 18.260616970296951 ], [ 97.140251905900698, 18.206382554811057 ], [ 97.205674269851613, 18.145094305957457 ], [ 97.186037224937934, 18.065228380285532 ], [ 97.130330031105984, 17.965647895334087 ], [ 97.178699171629432, 17.844905911178842 ], [ 97.202883741891128, 17.819016018574359 ], [ 97.179009230891268, 17.723569647820966 ], [ 97.217869907769966, 17.62112112144257 ], [ 97.213012323160171, 17.559471137383071 ], [ 97.233992955210681, 17.545544337800948 ], [ 97.199783155568127, 17.510921128807013 ], [ 97.122578565748142, 17.481982326722971 ], [ 97.100047641885112, 17.536630154258205 ], [ 97.038449334668996, 17.567119249054088 ], [ 97.006926711098799, 17.604016222070982 ], [ 96.916286249011137, 17.612077744892019 ], [ 96.890758090713291, 17.602698473355872 ], [ 96.882901898563503, 17.457197883431974 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MM-03", "NAME_1": "Magway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.836595309326015, 18.357620357093765 ], [ 94.76365278474816, 18.466315008730646 ], [ 94.775848422666513, 18.535974840566439 ], [ 94.744015740733801, 18.623566392275166 ], [ 94.791868117319723, 18.697153631834624 ], [ 94.720141228834621, 18.78378917093346 ], [ 94.797242465867043, 18.813063869801738 ], [ 94.804683871963107, 18.837170924798329 ], [ 94.718487583335275, 18.943727728751639 ], [ 94.68231408073018, 19.024988919303155 ], [ 94.634461704144314, 19.075502630841697 ], [ 94.559530878347346, 19.114931749400682 ], [ 94.533589308899423, 19.197898261395608 ], [ 94.542684361394151, 19.233089911170453 ], [ 94.559530878347346, 19.236448879012528 ], [ 94.555500116037479, 19.264095770803181 ], [ 94.430133091269113, 19.451345322728457 ], [ 94.369775018402322, 19.730578924777546 ], [ 94.324816521665127, 19.831968084859227 ], [ 94.341352981155126, 19.933073025000112 ], [ 94.265181919210136, 20.016943875459447 ], [ 94.256190220402289, 20.111356716539206 ], [ 94.207614374303887, 20.166676336743535 ], [ 94.155937940983165, 20.287392483376379 ], [ 94.011657342612239, 20.517946886539562 ], [ 93.903963657996371, 20.581069648045798 ], [ 93.904583774721402, 20.701914984988548 ], [ 93.977860955918345, 20.655664577957907 ], [ 94.02302615823055, 20.651556301282255 ], [ 94.138264601729929, 20.692949123703102 ], [ 94.095889927378209, 20.760335191515878 ], [ 94.039459263134461, 20.916630561551131 ], [ 94.046280551606117, 20.957403266347626 ], [ 94.116663852954389, 21.086826890948259 ], [ 94.116250440905105, 21.177234809039192 ], [ 94.106018507747876, 21.208731594187725 ], [ 94.027987094728587, 21.265834051999889 ], [ 94.05775272001199, 21.320378525848298 ], [ 94.075529412951994, 21.436624661498911 ], [ 94.130306430797077, 21.572998765780426 ], [ 94.021785922981906, 21.756062527563586 ], [ 94.003699171679386, 21.827918606358594 ], [ 94.016928339271374, 21.921943874710053 ], [ 94.053721957702123, 21.952019558355914 ], [ 94.02147586461939, 22.049429632971169 ], [ 94.050311313915984, 22.139785875118037 ], [ 94.02147586461939, 22.312798569997994 ], [ 94.050724725065947, 22.37439687811343 ], [ 94.023749627743086, 22.395119126846225 ], [ 94.035428500824594, 22.433152981424939 ], [ 94.027470330791118, 22.57309276002286 ], [ 94.007006463577397, 22.678021755099905 ], [ 94.063953891758672, 22.683783678174166 ], [ 94.097750279351885, 22.711818141793799 ], [ 94.113253208268929, 22.708097438745767 ], [ 94.147566358900292, 22.628386541805469 ], [ 94.216606073111734, 22.555600287023594 ], [ 94.289986607096182, 22.421499945865776 ], [ 94.29577436679358, 22.388866279155422 ], [ 94.244201288058946, 22.275824083514635 ], [ 94.256190220402289, 22.145392768561408 ], [ 94.279444614677175, 22.106325385208322 ], [ 94.349311151188658, 22.110537013772159 ], [ 94.365744256991832, 22.079634507826256 ], [ 94.405638461745582, 22.055656643139571 ], [ 94.416180454164589, 21.989614163362944 ], [ 94.395716586950869, 21.824430447307293 ], [ 94.409049107330418, 21.803759874518562 ], [ 94.490387811348398, 21.767327989495129 ], [ 94.601905551799746, 21.819727892328331 ], [ 94.684277784592041, 21.808565782285029 ], [ 94.843957960891146, 21.828900458289525 ], [ 95.052213983288652, 21.809986883787644 ], [ 95.127661573922467, 21.830295722269739 ], [ 95.152052849759173, 21.823267727323753 ], [ 95.242486607171145, 21.711879177182254 ], [ 95.248481073342816, 21.661029567960156 ], [ 95.34222212085416, 21.608862210022949 ], [ 95.3244454279141, 21.537471218322025 ], [ 95.330233189410137, 21.463883978762567 ], [ 95.275559524352502, 21.445073757048249 ], [ 95.14161421102699, 21.313867295739101 ], [ 95.077328728637895, 21.301309923514168 ], [ 95.02172488759345, 21.311205959887104 ], [ 94.975009392569348, 21.244155788858563 ], [ 94.848298780664152, 21.225578111140919 ], [ 94.81935997858011, 21.204313259149558 ], [ 94.79992964104008, 21.143645127920308 ], [ 94.814709100444588, 20.952984931309516 ], [ 94.90338585777107, 20.889707140172391 ], [ 95.001467726854059, 20.880560410834278 ], [ 95.08166955020954, 20.829814155299005 ], [ 95.059862094959669, 20.749198919894241 ], [ 95.072677849603053, 20.675172430763041 ], [ 95.062652622020835, 20.609905097342335 ], [ 95.109058058682422, 20.53195119868883 ], [ 95.139443800690799, 20.594608873100981 ], [ 95.200421991181884, 20.642900499258644 ], [ 95.2824841647124, 20.651918036488155 ], [ 95.354624465246843, 20.699434516289898 ], [ 95.439993930675314, 20.724755968113413 ], [ 95.483815545850746, 20.760903632296788 ], [ 95.60680545380859, 20.748656318434314 ], [ 95.62416873559863, 20.722508043411437 ], [ 95.633057081618972, 20.643055527990214 ], [ 95.729071893153332, 20.46782074593068 ], [ 95.757183872038013, 20.375629991131177 ], [ 95.735893181624988, 20.336123359105727 ], [ 95.751706170703187, 20.278840033240897 ], [ 95.80245242713778, 20.155979316492221 ], [ 95.831391229221822, 20.130632026246985 ], [ 95.780955031149745, 20.047200426258655 ], [ 95.78529585182207, 20.007280382183865 ], [ 95.764625279033339, 19.974853420149202 ], [ 95.78374555911023, 19.957541816101923 ], [ 95.815578241042942, 19.833053290476983 ], [ 95.790876905944401, 19.814630642390227 ], [ 95.767415806094562, 19.758897610136557 ], [ 95.774753859403063, 19.711794542384212 ], [ 95.7253511901053, 19.6094235303716 ], [ 95.739200474422319, 19.507130031825511 ], [ 95.800282016801589, 19.463592638389514 ], [ 95.823329706400784, 19.371531073000597 ], [ 95.855265741121002, 19.320603949412714 ], [ 95.852475214059837, 19.239756170910539 ], [ 95.829324171673136, 19.213504543999477 ], [ 95.82591352698762, 19.171052354382653 ], [ 95.736823357611797, 19.18180105237667 ], [ 95.52412316265378, 19.162551581090554 ], [ 95.432759231053637, 19.130357163951942 ], [ 95.380152621746049, 19.068603827104937 ], [ 95.306875441448426, 19.055322984468148 ], [ 95.278660108876863, 18.964708359902886 ], [ 95.185022414153025, 18.893110663526272 ], [ 95.213031040250257, 18.805467434074785 ], [ 95.204556106279256, 18.767846991545412 ], [ 95.16300825422752, 18.716738999904919 ], [ 95.10151329979891, 18.697515367040523 ], [ 95.079809198235864, 18.666974596300577 ], [ 95.067510206630686, 18.543726305024961 ], [ 95.153357178790714, 18.47127496586694 ], [ 95.109161412369247, 18.457891750703709 ], [ 95.08435672358388, 18.376863105048244 ], [ 95.064512973994511, 18.360326646457565 ], [ 95.011596307223783, 18.371902166751568 ], [ 94.935528598965618, 18.418204251524969 ], [ 94.836595309326015, 18.357620357093765 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "MM-04", "NAME_1": "Mandalay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.104966261883419, 23.631529446426782 ], [ 96.133801711180013, 23.60274567307431 ], [ 96.123983189172804, 23.536935737294414 ], [ 96.138555943002302, 23.520347601860294 ], [ 96.193022901585607, 23.500219631430809 ], [ 96.289761184431086, 23.531561387847773 ], [ 96.320663690376989, 23.506653347174222 ], [ 96.298442823977098, 23.46402029130337 ], [ 96.306504347697455, 23.429500434197678 ], [ 96.249246861153665, 23.390665594841323 ], [ 96.233433872075523, 23.343975938238941 ], [ 96.188992141074436, 23.343200791883021 ], [ 96.205011834828269, 23.307673245323997 ], [ 96.192919549697422, 23.212252712092948 ], [ 96.158192987016719, 23.158173326238 ], [ 96.198810663081588, 23.099520574814676 ], [ 96.212453240924276, 23.049782008732677 ], [ 96.260822382347044, 23.022755235465752 ], [ 96.34650190613803, 23.017535916549264 ], [ 96.482720981687919, 23.038154812494611 ], [ 96.513210077383121, 23.060143133998395 ], [ 96.554757927636217, 23.031385199067643 ], [ 96.58814090407941, 23.03732798929525 ], [ 96.582869908319594, 22.999035753197461 ], [ 96.613875767052946, 22.979450385127166 ], [ 96.715264927134626, 22.949374701481247 ], [ 96.715988396647163, 22.929841010254393 ], [ 96.635269810253476, 22.81974437130566 ], [ 96.543905877754014, 22.818504136956335 ], [ 96.471248814181365, 22.783105780707217 ], [ 96.429804314917135, 22.78023773928021 ], [ 96.40758344941662, 22.794681301001219 ], [ 96.351462844434707, 22.773700669850029 ], [ 96.271777785016752, 22.781607163939441 ], [ 96.203564894903934, 22.739697577581126 ], [ 96.219274530295309, 22.692103583413655 ], [ 96.238704868734658, 22.690449937014989 ], [ 96.239118279884678, 22.644147854040227 ], [ 96.294205356991597, 22.570328071383358 ], [ 96.294825473716571, 22.527514146560577 ], [ 96.333376093132131, 22.487826646482517 ], [ 96.324384393424964, 22.3738025989108 ], [ 96.402519159231758, 22.365327664040421 ], [ 96.427013787855969, 22.337086493047195 ], [ 96.436832309863178, 22.283859767913953 ], [ 96.478690220277429, 22.223863430253061 ], [ 96.483651157674728, 22.159836331181737 ], [ 96.736348911972641, 22.077205715071671 ], [ 96.764564243644884, 21.987082016921534 ], [ 96.846833123649674, 21.873419705455035 ], [ 96.851897413834536, 21.825903224754029 ], [ 96.873291457035066, 21.813862616466565 ], [ 96.88858768127642, 21.759809068133961 ], [ 96.879492628781747, 21.732575588392649 ], [ 96.815310500079477, 21.759989936186571 ], [ 96.739139439033863, 21.711930854025695 ], [ 96.704619581928114, 21.717046821053941 ], [ 96.575945266161057, 21.59403107287568 ], [ 96.460913527337368, 21.554111029700266 ], [ 96.340300734391349, 21.537755439162197 ], [ 96.337820265692642, 21.493675442467691 ], [ 96.288314243607431, 21.459698187721187 ], [ 96.331515741158512, 21.24950429898422 ], [ 96.373683709935221, 21.171343696554345 ], [ 96.240358514234003, 21.149975490876159 ], [ 96.22392540933015, 21.134136664275616 ], [ 96.229713169027491, 21.096852118530421 ], [ 96.210489537062472, 21.059541734363506 ], [ 96.215450473560452, 21.007761949154599 ], [ 96.257928500699734, 20.974172268035716 ], [ 96.393424106737086, 20.925932318721493 ], [ 96.429700962129687, 20.928309433733375 ], [ 96.476106398791217, 20.898388779718402 ], [ 96.505768671287115, 20.915648708720937 ], [ 96.5671602720289, 20.879320177384272 ], [ 96.588761020804441, 20.845239569850264 ], [ 96.568710564740741, 20.769146023170435 ], [ 96.506388788012089, 20.767466539249369 ], [ 96.456676060351867, 20.724135851388439 ], [ 96.460293409713074, 20.667007555154555 ], [ 96.504011672100944, 20.608173936577884 ], [ 96.54690311128951, 20.58941539170695 ], [ 96.54845340400135, 20.520866603910633 ], [ 96.496260206743102, 20.508593450727176 ], [ 96.499360793066103, 20.475701402497691 ], [ 96.476416457153732, 20.423068956567079 ], [ 96.546593052027674, 20.216389065303133 ], [ 96.453575474028867, 20.132389024533836 ], [ 96.459983352249878, 20.090556952541306 ], [ 96.478896925852382, 20.071746730826931 ], [ 96.452852003617011, 20.032756862739006 ], [ 96.374923944284546, 20.017176419456177 ], [ 96.44975141819333, 19.900025947139738 ], [ 96.454505650015676, 19.856643582435368 ], [ 96.537084589282301, 19.849383043492651 ], [ 96.619663526750344, 19.732671820747896 ], [ 96.658317498953352, 19.70272532831126 ], [ 96.655630323780372, 19.677507229275193 ], [ 96.618216586826009, 19.639292507543189 ], [ 96.557238397234187, 19.611542262965031 ], [ 96.580182733146557, 19.582293403417793 ], [ 96.656457146979733, 19.568418281578431 ], [ 96.678781366167073, 19.524157415931995 ], [ 96.661831496426373, 19.478992214519053 ], [ 96.59217166459058, 19.431114000410787 ], [ 96.583800083407084, 19.459639391344808 ], [ 96.505148552763444, 19.479974067349303 ], [ 96.284490187771894, 19.471783352419777 ], [ 96.183721145314564, 19.48509003347823 ], [ 96.162327102114034, 19.442999579067305 ], [ 96.112200962404472, 19.415636908116824 ], [ 96.070136346415211, 19.444498195835081 ], [ 95.952210727742852, 19.480775051227624 ], [ 95.859606560894008, 19.443929755054114 ], [ 95.751602817915682, 19.488888250892046 ], [ 95.7253511901053, 19.6094235303716 ], [ 95.774753859403063, 19.711794542384212 ], [ 95.767415806094562, 19.758897610136557 ], [ 95.816198357767973, 19.837807522299272 ], [ 95.78374555911023, 19.957541816101923 ], [ 95.764625279033339, 19.974853420149202 ], [ 95.78529585182207, 20.007280382183865 ], [ 95.780955031149745, 20.047200426258655 ], [ 95.831391229221822, 20.130632026246985 ], [ 95.80245242713778, 20.155979316492221 ], [ 95.751706170703187, 20.278840033240897 ], [ 95.735893181624988, 20.336123359105727 ], [ 95.757183872038013, 20.375629991131177 ], [ 95.718013136796799, 20.497457180004858 ], [ 95.633057081618972, 20.643055527990214 ], [ 95.619827914926304, 20.731964830212746 ], [ 95.587891880206087, 20.757415473245487 ], [ 95.483815545850746, 20.760903632296788 ], [ 95.439993930675314, 20.724755968113413 ], [ 95.354624465246843, 20.699434516289898 ], [ 95.2824841647124, 20.651918036488155 ], [ 95.185539178090551, 20.635252386688251 ], [ 95.139443800690799, 20.594608873100981 ], [ 95.109058058682422, 20.53195119868883 ], [ 95.062652622020835, 20.609905097342335 ], [ 95.072677849603053, 20.675172430763041 ], [ 95.059862094959669, 20.749198919894241 ], [ 95.08166955020954, 20.829814155299005 ], [ 95.001467726854059, 20.880560410834278 ], [ 94.90338585777107, 20.889707140172391 ], [ 94.814709100444588, 20.952984931309516 ], [ 94.79992964104008, 21.143645127920308 ], [ 94.81935997858011, 21.204313259149558 ], [ 94.848298780664152, 21.225578111140919 ], [ 94.975009392569348, 21.244155788858563 ], [ 95.02172488759345, 21.311205959887104 ], [ 95.077328728637895, 21.301309923514168 ], [ 95.14161421102699, 21.313867295739101 ], [ 95.275559524352502, 21.445073757048249 ], [ 95.330233189410137, 21.463883978762567 ], [ 95.3244454279141, 21.537471218322025 ], [ 95.379945917070359, 21.707435003722424 ], [ 95.545207146592475, 21.745081285572837 ], [ 95.594919875152073, 21.707538357409248 ], [ 95.657138299992539, 21.626923122903804 ], [ 95.74271447099602, 21.63759430653198 ], [ 95.772066685129403, 21.626070462182042 ], [ 95.835835401782333, 21.705032050288878 ], [ 95.884307895992549, 21.851198839055144 ], [ 95.973191358894042, 21.867218532809034 ], [ 96.041197544331169, 21.923416653056051 ], [ 96.04812218559033, 21.99398082155767 ], [ 96.007504510424781, 22.089427192311064 ], [ 95.987764112723596, 22.216473700101176 ], [ 95.98611046812357, 22.281379299215246 ], [ 96.012775507083973, 22.331789658865659 ], [ 95.963682896148725, 22.392483629415949 ], [ 95.964613072135535, 22.472530422241164 ], [ 95.990244582321566, 22.529271144847428 ], [ 95.901257765733249, 22.707193101180678 ], [ 95.910249465440415, 22.739439195162731 ], [ 95.955001254804017, 22.750291245944254 ], [ 95.964819776811225, 22.769049790815188 ], [ 95.975155063655222, 23.153987535196563 ], [ 95.908182407891786, 23.359117132849406 ], [ 95.923995396070609, 23.420327867337164 ], [ 96.007607863212286, 23.522466336252421 ], [ 96.034893019796982, 23.585175685709316 ], [ 96.082021925971048, 23.629436550456433 ], [ 96.104966261883419, 23.631529446426782 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/netherlands.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/netherlands.geojson new file mode 100644 index 000000000000..f68a12cda7d3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/netherlands.geojson @@ -0,0 +1,18 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "NL-GR", "NAME_1": "Groningen" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.194590691000087, 53.245021877000056 ], [ 7.19747237100006, 53.216623637000097 ], [ 7.198505900000043, 53.200578105000048 ], [ 7.195405314000112, 53.184997661000111 ], [ 7.18858402500004, 53.167789408000019 ], [ 7.174424682000108, 53.145775249000039 ], [ 7.171944214000121, 53.137713725000069 ], [ 7.172667684000118, 53.125750631000088 ], [ 7.176491740000074, 53.119394430000071 ], [ 7.181349324000081, 53.114175111000051 ], [ 7.18507002700008, 53.105441793000082 ], [ 7.194371786000119, 53.033844096000038 ], [ 7.19282149300011, 52.998006490000094 ], [ 7.183623088000104, 52.966122131000034 ], [ 7.161918986000103, 52.932635804000128 ], [ 7.079856812000116, 52.85442352299999 ], [ 7.072150759000124, 52.841316552000066 ], [ 7.071796095413447, 52.841684475058457 ], [ 7.06626671723518, 52.847420558811734 ], [ 7.048128289089277, 52.861063137553742 ], [ 7.037741327200479, 52.866179104581988 ], [ 7.017845899868348, 52.870364894724105 ], [ 7.038981560650484, 52.903902899898867 ], [ 7.039446648643889, 52.907881985365293 ], [ 7.038206414294564, 52.912171129194235 ], [ 7.031178420247898, 52.913152981125165 ], [ 6.982189162100155, 52.950153306929565 ], [ 6.935473667076053, 52.988393867083289 ], [ 6.896819695772308, 53.013095201282511 ], [ 6.862041457147541, 53.035161038051456 ], [ 6.843127882645661, 53.046013088832979 ], [ 6.81940840037737, 53.060120755568391 ], [ 6.775638462045379, 53.089214586384003 ], [ 6.740550164158719, 53.111900539877979 ], [ 6.734814080405499, 53.114381009476006 ], [ 6.725357292704871, 53.11748159400031 ], [ 6.698692253744525, 53.118980210768086 ], [ 6.636887240953399, 53.106681220062228 ], [ 6.631461215562638, 53.105596015343792 ], [ 6.629600863588962, 53.107559719205653 ], [ 6.627740513413926, 53.109110011917494 ], [ 6.617043491364029, 53.124509588946353 ], [ 6.58293704630762, 53.152001451106059 ], [ 6.572498406676118, 53.157169094078426 ], [ 6.567072381285357, 53.15835765248363 ], [ 6.563971794962356, 53.159959622038912 ], [ 6.547693718790072, 53.177219550142127 ], [ 6.530640496261867, 53.191223863190714 ], [ 6.51973676863696, 53.190397039991353 ], [ 6.501443311759431, 53.195099595869635 ], [ 6.468370396376656, 53.204504705827503 ], [ 6.432093540084793, 53.184815985869022 ], [ 6.413748407263199, 53.177839666867101 ], [ 6.40041588688365, 53.169674791258558 ], [ 6.385378045060691, 53.158202622852741 ], [ 6.378711786219924, 53.148384100845533 ], [ 6.377936638964684, 53.146006984934388 ], [ 6.374991082272629, 53.140839341962021 ], [ 6.36243370914832, 53.124871324152252 ], [ 6.358402947737829, 53.118411769987176 ], [ 6.354165479853009, 53.108386542404958 ], [ 6.338042433311614, 53.090868231883348 ], [ 6.330135939222203, 53.088077703922863 ], [ 6.309517043276912, 53.092056790288609 ], [ 6.30078372598814, 53.095002346081401 ], [ 6.264816928958112, 53.109213364704999 ], [ 6.247608676798961, 53.112934067752974 ], [ 6.204923944084726, 53.115414537351 ], [ 6.196242302740075, 53.11711985879441 ], [ 6.18301313604735, 53.124302884270662 ], [ 6.173711378877044, 53.131485907948274 ], [ 6.169060499842203, 53.152931627092869 ], [ 6.176036817944805, 53.174429023080904 ], [ 6.186268752001297, 53.186779689730884 ], [ 6.223372429693882, 53.21654531501423 ], [ 6.226007928023421, 53.220576077324097 ], [ 6.225697869660962, 53.223314928441141 ], [ 6.224612664043207, 53.226157132345747 ], [ 6.22290734170042, 53.229206040926044 ], [ 6.220891960995175, 53.231686510524014 ], [ 6.219961785907685, 53.23587230156545 ], [ 6.21794640520244, 53.240574856544356 ], [ 6.230348747796484, 53.255457668736369 ], [ 6.245231560887817, 53.27075389297778 ], [ 6.250244175128557, 53.283673001307932 ], [ 6.253964878176589, 53.288168849812564 ], [ 6.267607456019277, 53.29752228472563 ], [ 6.284350620184966, 53.306875718739377 ], [ 6.287141147246132, 53.308891100343999 ], [ 6.287141147246132, 53.309924628218994 ], [ 6.280474888405365, 53.311474920930834 ], [ 6.277839390075769, 53.312405096917644 ], [ 6.27613406683372, 53.313593655322904 ], [ 6.276599154827124, 53.323360501385991 ], [ 6.278924594794205, 53.33586619676754 ], [ 6.277219271552156, 53.341395575845127 ], [ 6.273653599034333, 53.344702866843818 ], [ 6.255205111626594, 53.348423569891793 ], [ 6.251949496572024, 53.348268541160223 ], [ 6.249158970410122, 53.347545070748367 ], [ 6.243526239444407, 53.345271308524048 ], [ 6.239960565127944, 53.344444485324686 ], [ 6.236859978804944, 53.344341132537238 ], [ 6.234069451743778, 53.344857897374027 ], [ 6.230658807058262, 53.346046453980648 ], [ 6.226473016016882, 53.348836981941133 ], [ 6.220736932263605, 53.353849596181874 ], [ 6.216861199584685, 53.356020006518065 ], [ 6.213295526167599, 53.357311916811511 ], [ 6.194381951665719, 53.360567531866081 ], [ 6.180067580254615, 53.364339911757497 ], [ 6.170300734191528, 53.386095689264607 ], [ 6.175261671588885, 53.398136298451391 ], [ 6.18602106971656, 53.410996341108216 ], [ 6.273936394000089, 53.412665106000077 ], [ 6.284353061000047, 53.410549221000053 ], [ 6.301931186000047, 53.401109117000033 ], [ 6.311534050000091, 53.398993231000077 ], [ 6.32007897200009, 53.40070221600007 ], [ 6.345550977000073, 53.412665106000077 ], [ 6.494395379000082, 53.438706773000035 ], [ 6.73023522200009, 53.460638739000046 ], [ 6.829112175000091, 53.450588283000059 ], [ 6.849782748000052, 53.444891669000071 ], [ 6.86687259200005, 53.434271552000041 ], [ 6.900563998000052, 53.351792710000041 ], [ 6.905772332000083, 53.350490627000056 ], [ 6.930023634000065, 53.340073960000041 ], [ 6.931895379000082, 53.337591864000046 ], [ 6.936696811000047, 53.33539459800005 ], [ 6.941661004000082, 53.33071523600006 ], [ 6.94857832100007, 53.326076565000051 ], [ 6.98015384200005, 53.31976959800005 ], [ 7.020030144000089, 53.306138414000031 ], [ 7.037771030000044, 53.309637762000079 ], [ 7.04623457100007, 53.303859768000052 ], [ 7.05827884200005, 53.301947333000044 ], [ 7.07007897200009, 53.303941148000035 ], [ 7.078623894000089, 53.309637762000079 ], [ 7.085459832000083, 53.309637762000079 ], [ 7.085459832000083, 53.302801825000074 ], [ 7.07748457100007, 53.298651434000078 ], [ 7.073496941000087, 53.295640367000033 ], [ 7.073741082000083, 53.29132721600007 ], [ 7.078623894000089, 53.282945054000038 ], [ 7.080739780000044, 53.266791083000044 ], [ 7.11109459700009, 53.256333726000037 ], [ 7.18336022200009, 53.245103257000039 ], [ 7.194590691000087, 53.245021877000056 ] ] ], [ [ [ 6.44117272200009, 53.556626695000034 ], [ 6.455088738000086, 53.558091539000031 ], [ 6.510101759000065, 53.54360586100006 ], [ 6.50562584700009, 53.543768622000073 ], [ 6.501963738000086, 53.542547919000071 ], [ 6.498871290000068, 53.539984442000048 ], [ 6.496429884000065, 53.536200262000079 ], [ 6.46070397200009, 53.543361721000053 ], [ 6.44304446700005, 53.549994208000044 ], [ 6.44117272200009, 53.556626695000034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NL-DR", "NAME_1": "Drenthe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.072150759000124, 52.841316552000066 ], [ 7.061976766000043, 52.824011942000126 ], [ 7.053295125000091, 52.790577291000048 ], [ 7.04399336700007, 52.682625224 ], [ 7.036655314000058, 52.647381897000045 ], [ 7.018465210000045, 52.625987854000115 ], [ 6.982808471000055, 52.632783305000075 ], [ 6.967718953000144, 52.636659038000019 ], [ 6.918419637000056, 52.632189026 ], [ 6.865399617000037, 52.641955872000054 ], [ 6.77052168700007, 52.641025696 ], [ 6.73703536000005, 52.634695333000067 ], [ 6.719083149000085, 52.626758982000055 ], [ 6.718380974602269, 52.627020576238579 ], [ 6.707838983082581, 52.630947983962244 ], [ 6.705358514383931, 52.639267890100996 ], [ 6.705823602377336, 52.646605943409554 ], [ 6.702102899329304, 52.649344794526598 ], [ 6.696366814676765, 52.652186998431205 ], [ 6.62417483909752, 52.67234080728241 ], [ 6.611152377979863, 52.672599188801485 ], [ 6.58195519437669, 52.669395249690979 ], [ 6.533275994591463, 52.653943996718056 ], [ 6.520821974254716, 52.645882472997698 ], [ 6.518651563918525, 52.641231593962857 ], [ 6.521597120610636, 52.61146596957883 ], [ 6.48020429908911, 52.623661607497183 ], [ 6.474158156074054, 52.624333401065599 ], [ 6.466665073134607, 52.624333401065599 ], [ 6.462324253361601, 52.621439521216928 ], [ 6.454107700010354, 52.618287258949806 ], [ 6.448371616257077, 52.617873846900466 ], [ 6.443100619597885, 52.619424140511626 ], [ 6.439224887818284, 52.621956285154397 ], [ 6.434418980051873, 52.626503811401733 ], [ 6.431318393728873, 52.627744045751058 ], [ 6.428992953761792, 52.628002428169509 ], [ 6.42372195800192, 52.625160224264903 ], [ 6.416590610268429, 52.622834785197142 ], [ 6.393284539150159, 52.618442288580752 ], [ 6.386618280309392, 52.618493964524816 ], [ 6.382587517999525, 52.619579169243252 ], [ 6.381502313281146, 52.621129461955093 ], [ 6.373440788661469, 52.634410305491201 ], [ 6.365379265840431, 52.641748358799703 ], [ 6.347964308106327, 52.65249705679372 ], [ 6.332771436652479, 52.660093492520616 ], [ 6.325019972193957, 52.667793281035074 ], [ 6.321299269145925, 52.668258369028479 ], [ 6.273033481410039, 52.667896633822579 ], [ 6.264661899327166, 52.66965363210943 ], [ 6.233759393381263, 52.682624417283023 ], [ 6.21794640520244, 52.686241767543493 ], [ 6.210970086200518, 52.685156561925794 ], [ 6.205234002447241, 52.682004300557992 ], [ 6.197172478726884, 52.678852037391607 ], [ 6.191281366242038, 52.678645330917277 ], [ 6.183323195309185, 52.679988918953427 ], [ 6.179137404267806, 52.682055976502113 ], [ 6.17650190593821, 52.683812974788907 ], [ 6.169680616567177, 52.69104767530996 ], [ 6.164874708800767, 52.693424791221105 ], [ 6.130251498907512, 52.748511868328023 ], [ 6.139914992183151, 52.758692125541131 ], [ 6.166269971881661, 52.766495265943718 ], [ 6.202443475386076, 52.788199368406083 ], [ 6.206939324789971, 52.796725979220525 ], [ 6.197792596351235, 52.805355942822473 ], [ 6.187353956719733, 52.812590644242789 ], [ 6.17975752099278, 52.816776435284225 ], [ 6.129476352551592, 52.853415024983406 ], [ 6.214225702154408, 52.892947496329839 ], [ 6.247608676798961, 52.916201891504045 ], [ 6.254584994901563, 52.920491035332986 ], [ 6.265437045683086, 52.925658678305354 ], [ 6.292102084643489, 52.925710354249418 ], [ 6.314477979774949, 52.922196356776396 ], [ 6.347964308106327, 52.908398749302819 ], [ 6.395765007848809, 52.927829087742168 ], [ 6.40196617959549, 52.931911525996099 ], [ 6.429458041755197, 52.959351712211742 ], [ 6.432093540084793, 52.964881090390008 ], [ 6.433798862427523, 52.96932526295052 ], [ 6.421706577296675, 52.984569811247752 ], [ 6.367549676176623, 53.028494778311369 ], [ 6.363828973128591, 53.039708564298792 ], [ 6.358402947737829, 53.049682115037569 ], [ 6.359333122825319, 53.055159817271715 ], [ 6.356956007813494, 53.060740872293422 ], [ 6.354630567846414, 53.063634752142093 ], [ 6.326415236174171, 53.070921129506473 ], [ 6.310757276726918, 53.076553860472245 ], [ 6.307656691303237, 53.078414212445921 ], [ 6.309517043276912, 53.092056790288609 ], [ 6.330135939222203, 53.088077703922863 ], [ 6.338042433311614, 53.090868231883348 ], [ 6.354165479853009, 53.108386542404958 ], [ 6.358402947737829, 53.118411769987176 ], [ 6.36243370914832, 53.124871324152252 ], [ 6.374991082272629, 53.140839341962021 ], [ 6.377936638964684, 53.146006984934388 ], [ 6.378711786219924, 53.148384100845533 ], [ 6.385378045060691, 53.158202622852741 ], [ 6.40041588688365, 53.169674791258558 ], [ 6.413748407263199, 53.177839666867101 ], [ 6.432093540084793, 53.184815985869022 ], [ 6.468370396376656, 53.204504705827503 ], [ 6.501443311759431, 53.195099595869635 ], [ 6.51973676863696, 53.190397039991353 ], [ 6.530640496261867, 53.191223863190714 ], [ 6.547693718790072, 53.177219550142127 ], [ 6.563971794962356, 53.159959622038912 ], [ 6.567072381285357, 53.15835765248363 ], [ 6.572498406676118, 53.157169094078426 ], [ 6.58293704630762, 53.152001451106059 ], [ 6.617043491364029, 53.124509588946353 ], [ 6.627740513413926, 53.109110011917494 ], [ 6.629600863588962, 53.107559719205653 ], [ 6.631461215562638, 53.105596015343792 ], [ 6.636887240953399, 53.106681220062228 ], [ 6.698692253744525, 53.118980210768086 ], [ 6.725357292704871, 53.11748159400031 ], [ 6.734814080405499, 53.114381009476006 ], [ 6.740550164158719, 53.111900539877979 ], [ 6.775638462045379, 53.089214586384003 ], [ 6.81940840037737, 53.060120755568391 ], [ 6.843127882645661, 53.046013088832979 ], [ 6.862041457147541, 53.035161038051456 ], [ 6.896819695772308, 53.013095201282511 ], [ 6.935473667076053, 52.988393867083289 ], [ 6.982189162100155, 52.950153306929565 ], [ 7.031178420247898, 52.913152981125165 ], [ 7.038206414294564, 52.912171129194235 ], [ 7.039446648643889, 52.907881985365293 ], [ 7.038981560650484, 52.903902899898867 ], [ 7.017845899868348, 52.870364894724105 ], [ 7.037741327200479, 52.866179104581988 ], [ 7.048128289089277, 52.861063137553742 ], [ 7.06626671723518, 52.847420558811734 ], [ 7.071796095413447, 52.841684475058457 ], [ 7.072150759000124, 52.841316552000066 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NL-OV", "NAME_1": "Overijssel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.719083149000085, 52.626758982000055 ], [ 6.701792032000071, 52.619114889000045 ], [ 6.710163615000056, 52.608650412000017 ], [ 6.708199911000122, 52.599684550000077 ], [ 6.703652384000094, 52.591390483000012 ], [ 6.70396244300008, 52.583070577000043 ], [ 6.710990438000096, 52.576636862 ], [ 6.743753296000079, 52.559712830000095 ], [ 6.688252807000111, 52.542582093000064 ], [ 6.671716349000121, 52.541677755000094 ], [ 6.684015340000144, 52.525993958000058 ], [ 6.687529337000115, 52.508139751 ], [ 6.688976278000098, 52.490518087000012 ], [ 6.695074097000145, 52.475609437000045 ], [ 6.714814494000109, 52.461553447000043 ], [ 6.741169474000088, 52.453672791000102 ], [ 6.820337769000105, 52.446825663000041 ], [ 6.872014200000137, 52.434733378000047 ], [ 6.9002295330001, 52.431917012999989 ], [ 6.92648116100014, 52.432976380000085 ], [ 6.951492553000037, 52.43747222899999 ], [ 6.960794311000143, 52.442846578000044 ], [ 6.966995483000034, 52.449564515000091 ], [ 6.973300008000137, 52.451373190000069 ], [ 7.034174845000081, 52.390782573000095 ], [ 7.048230835000112, 52.365073547000023 ], [ 7.039755900000102, 52.328615825000028 ], [ 7.019705444000067, 52.300038758000042 ], [ 7.012470744000098, 52.284949239000056 ], [ 7.011850626000125, 52.266629944000087 ], [ 7.02073897300005, 52.245261739000071 ], [ 7.026600151575735, 52.23862268668762 ], [ 7.029110555000017, 52.235779114000096 ], [ 7.026320027000054, 52.230637309000102 ], [ 6.981878296000076, 52.213997498000069 ], [ 6.971129598000061, 52.206271871000084 ], [ 6.94766849700008, 52.182810771 ], [ 6.927721395000077, 52.171907044000037 ], [ 6.884829956000118, 52.160331523000096 ], [ 6.865399617000037, 52.147799988000074 ], [ 6.843282105000128, 52.119998067000026 ], [ 6.830673055000091, 52.112892558000013 ], [ 6.771575683870708, 52.108792501972346 ], [ 6.770884230223032, 52.109119371361885 ], [ 6.759515414604664, 52.114493719909206 ], [ 6.661898634414456, 52.127309475451909 ], [ 6.671820509209113, 52.142347317274869 ], [ 6.672130567571628, 52.147618313034684 ], [ 6.671045362853192, 52.157591865572101 ], [ 6.669340041409782, 52.161622626083329 ], [ 6.666704543080186, 52.164464829987878 ], [ 6.66329389839467, 52.165860093968149 ], [ 6.653527052331583, 52.168495592297745 ], [ 6.645620558242172, 52.169839179434575 ], [ 6.610067173261427, 52.164516506831319 ], [ 6.606036410951617, 52.164929917981283 ], [ 6.601695591178554, 52.165911769912213 ], [ 6.601695591178554, 52.169115709022719 ], [ 6.600765415191745, 52.17335317600822 ], [ 6.597354771405548, 52.178055731886502 ], [ 6.591773716383898, 52.179347643079211 ], [ 6.585727573368786, 52.179554347754902 ], [ 6.557615593584785, 52.175936998393752 ], [ 6.519116651911929, 52.178830878242422 ], [ 6.495242140012749, 52.177177231843757 ], [ 6.465889926778686, 52.194437160846292 ], [ 6.418450962242105, 52.237018540773022 ], [ 6.417365756624349, 52.238413804753236 ], [ 6.411422967296119, 52.244563300555853 ], [ 6.381657342012716, 52.246785386836109 ], [ 6.347344191381296, 52.238207099178283 ], [ 6.332461379189283, 52.231282457019745 ], [ 6.322539504394626, 52.22947378188951 ], [ 6.259235873936404, 52.228853665164479 ], [ 6.189214307794032, 52.237431952822362 ], [ 6.179602492261211, 52.237690335240757 ], [ 6.17650190593821, 52.236915187985517 ], [ 6.167045119136901, 52.232057604274985 ], [ 6.15991377140341, 52.225339666792138 ], [ 6.157743361067276, 52.225132962116504 ], [ 6.154332717281079, 52.225598050109909 ], [ 6.146116163929833, 52.230300605088814 ], [ 6.14332563596929, 52.232832749731585 ], [ 6.141930372888396, 52.235106512855282 ], [ 6.141930372888396, 52.236501776835496 ], [ 6.142240431250912, 52.237483628766427 ], [ 6.145961134298886, 52.243943182931503 ], [ 6.14410078322453, 52.248800768440674 ], [ 6.139139844927911, 52.251281236240061 ], [ 6.127926059839751, 52.25448517535051 ], [ 6.12405032716083, 52.256242174536681 ], [ 6.122345004818101, 52.259497788691988 ], [ 6.12405032716083, 52.262546699070867 ], [ 6.124515415154292, 52.27091828115374 ], [ 6.106532016639221, 52.299702052707516 ], [ 6.086068149425557, 52.305541490147618 ], [ 6.080952183296631, 52.309313870039034 ], [ 6.070668573296018, 52.318357244791002 ], [ 6.068033074966422, 52.321767890375838 ], [ 6.069273309315747, 52.329002590896835 ], [ 6.0780066257052, 52.350965073978955 ], [ 6.087308383774882, 52.359440008849276 ], [ 6.086533237418962, 52.363729153577538 ], [ 6.081572300021605, 52.370602118892634 ], [ 6.083587680726851, 52.371997381973586 ], [ 6.086688267049851, 52.373495998741305 ], [ 6.12001956485102, 52.380368964056402 ], [ 6.134799025154848, 52.404450182429969 ], [ 6.136194289135119, 52.41561229157395 ], [ 6.134799025154848, 52.418712876997631 ], [ 6.132731967606219, 52.421296699383163 ], [ 6.111958042029983, 52.439796860936383 ], [ 6.104206576672141, 52.45204417569812 ], [ 6.09536990659592, 52.467908840720384 ], [ 6.089013706117612, 52.47379995410455 ], [ 6.081572300021605, 52.477727362727592 ], [ 6.063847283924986, 52.489406235809099 ], [ 6.056405876929659, 52.498707993878782 ], [ 6.049584587558684, 52.505322578574123 ], [ 6.042763299086971, 52.507854723216894 ], [ 6.030671013956123, 52.511006985483959 ], [ 6.001628859084576, 52.501601873727452 ], [ 5.969692824364358, 52.484962063248588 ], [ 5.939410435143429, 52.479329332282816 ], [ 5.931348911423129, 52.480621243475582 ], [ 5.924992710045501, 52.484031887261779 ], [ 5.903857049263422, 52.508836575147825 ], [ 5.891454704870739, 52.520360419497763 ], [ 5.880988074739832, 52.52112861229557 ], [ 5.866948142242961, 52.521791345194401 ], [ 5.846520708363983, 52.57769801045481 ], [ 5.832503424393508, 52.585245778469869 ], [ 5.832503424393508, 52.597106557421682 ], [ 5.843285950386303, 52.604654325436741 ], [ 5.844232866353707, 52.605317167153487 ], [ 5.895020379187144, 52.619475816455747 ], [ 5.908197869036428, 52.619992581292593 ], [ 5.91383060090152, 52.617977199687971 ], [ 5.930108677073804, 52.616323554188625 ], [ 5.939565463875056, 52.616685289394582 ], [ 5.987831251610942, 52.626762192920864 ], [ 6.019767287230536, 52.63761424370233 ], [ 5.997753127304975, 52.65384064393055 ], [ 5.978219435178801, 52.660351874039748 ], [ 5.937860142431589, 52.667586575460064 ], [ 5.929333529818507, 52.670067044158714 ], [ 5.926543002757342, 52.671669012814675 ], [ 5.928403354731017, 52.673374335157405 ], [ 5.935689731196135, 52.677560126198841 ], [ 5.939720492606625, 52.683399562739623 ], [ 5.945301547628333, 52.688773912186264 ], [ 5.93770511190138, 52.714457099215736 ], [ 5.923442417333661, 52.739881903826756 ], [ 5.916466099231059, 52.747064928403688 ], [ 5.904787225250232, 52.756470038361556 ], [ 5.858433465432086, 52.779414374273927 ], [ 5.785156284235143, 52.803702298222447 ], [ 5.822414991558617, 52.815019436098055 ], [ 5.834197218326949, 52.808766588407309 ], [ 5.837917922274301, 52.807681382789553 ], [ 5.866184929890608, 52.804839178884947 ], [ 5.871765984912258, 52.805045885359277 ], [ 5.879362419739891, 52.805924384502703 ], [ 5.908973016291668, 52.81667308249672 ], [ 5.91383060090152, 52.819618639188832 ], [ 5.918326450305415, 52.823701077442763 ], [ 5.9218921237225, 52.827576809222364 ], [ 5.924372593320527, 52.83093577706444 ], [ 5.927938266737613, 52.833364569819025 ], [ 5.932899204134969, 52.835224920893381 ], [ 5.953053012986175, 52.838170478484756 ], [ 5.956773716034149, 52.839720771196596 ], [ 5.959254184732799, 52.841581122270952 ], [ 5.961889683062395, 52.841271063908437 ], [ 5.967212354766332, 52.839772447140717 ], [ 5.978994582434041, 52.829230454721653 ], [ 5.988141309973457, 52.824269518223673 ], [ 5.993102248270134, 52.822822578299338 ], [ 6.032376336298853, 52.821065579113167 ], [ 6.046639031765892, 52.831039129851945 ], [ 6.047569206853382, 52.832641100306489 ], [ 6.048499382840248, 52.836981920079495 ], [ 6.049584587558684, 52.838118800742052 ], [ 6.051910028425084, 52.839307359147256 ], [ 6.068188103697992, 52.842097887107798 ], [ 6.087463413405771, 52.843338121457123 ], [ 6.129476352551592, 52.853415024983406 ], [ 6.17975752099278, 52.816776435284225 ], [ 6.187353956719733, 52.812590644242789 ], [ 6.197792596351235, 52.805355942822473 ], [ 6.206939324789971, 52.796725979220525 ], [ 6.202443475386076, 52.788199368406083 ], [ 6.166269971881661, 52.766495265943718 ], [ 6.139914992183151, 52.758692125541131 ], [ 6.130251498907512, 52.748511868328023 ], [ 6.164874708800767, 52.693424791221105 ], [ 6.169680616567177, 52.69104767530996 ], [ 6.17650190593821, 52.683812974788907 ], [ 6.179137404267806, 52.682055976502113 ], [ 6.183323195309185, 52.679988918953427 ], [ 6.191281366242038, 52.678645330917277 ], [ 6.197172478726884, 52.678852037391607 ], [ 6.205234002447241, 52.682004300557992 ], [ 6.210970086200518, 52.685156561925794 ], [ 6.21794640520244, 52.686241767543493 ], [ 6.233759393381263, 52.682624417283023 ], [ 6.264661899327166, 52.66965363210943 ], [ 6.273033481410039, 52.667896633822579 ], [ 6.321299269145925, 52.668258369028479 ], [ 6.325019972193957, 52.667793281035074 ], [ 6.332771436652479, 52.660093492520616 ], [ 6.347964308106327, 52.65249705679372 ], [ 6.365379265840431, 52.641748358799703 ], [ 6.373440788661469, 52.634410305491201 ], [ 6.381502313281146, 52.621129461955093 ], [ 6.382587517999525, 52.619579169243252 ], [ 6.386618280309392, 52.618493964524816 ], [ 6.393284539150159, 52.618442288580752 ], [ 6.416590610268429, 52.622834785197142 ], [ 6.42372195800192, 52.625160224264903 ], [ 6.428992953761792, 52.628002428169509 ], [ 6.431318393728873, 52.627744045751058 ], [ 6.434418980051873, 52.626503811401733 ], [ 6.439224887818284, 52.621956285154397 ], [ 6.443100619597885, 52.619424140511626 ], [ 6.448371616257077, 52.617873846900466 ], [ 6.454107700010354, 52.618287258949806 ], [ 6.462324253361601, 52.621439521216928 ], [ 6.466665073134607, 52.624333401065599 ], [ 6.474158156074054, 52.624333401065599 ], [ 6.48020429908911, 52.623661607497183 ], [ 6.521597120610636, 52.61146596957883 ], [ 6.518651563918525, 52.641231593962857 ], [ 6.520821974254716, 52.645882472997698 ], [ 6.533275994591463, 52.653943996718056 ], [ 6.58195519437669, 52.669395249690979 ], [ 6.611152377979863, 52.672599188801485 ], [ 6.62417483909752, 52.67234080728241 ], [ 6.696366814676765, 52.652186998431205 ], [ 6.702102899329304, 52.649344794526598 ], [ 6.705823602377336, 52.646605943409554 ], [ 6.705358514383931, 52.639267890100996 ], [ 6.707838983082581, 52.630947983962244 ], [ 6.718380974602269, 52.627020576238579 ], [ 6.719083149000085, 52.626758982000055 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NL-GE", "NAME_1": "Gelderland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.771575683870708, 52.108792501972346 ], [ 6.765870808000102, 52.10839670899999 ], [ 6.749851115000126, 52.10286733000008 ], [ 6.73290124500005, 52.091989441000024 ], [ 6.7276302490001, 52.086305033000073 ], [ 6.719465373000077, 52.073566793000012 ], [ 6.711403849000106, 52.067288107000095 ], [ 6.699414917000126, 52.063567404000096 ], [ 6.688872925000084, 52.063102316000069 ], [ 6.679881225000116, 52.060466818000052 ], [ 6.672956583000143, 52.050054016000033 ], [ 6.675023641000109, 52.034809469 ], [ 6.690939982000117, 52.027858988 ], [ 6.7128507890001, 52.023854065000094 ], [ 6.778169800000029, 52.001271465000073 ], [ 6.804008016000068, 51.984373271 ], [ 6.809175659000061, 51.979541525000073 ], [ 6.811656127000049, 51.972797751000044 ], [ 6.81072595200007, 51.960576274000019 ], [ 6.805661661000102, 51.95752736499999 ], [ 6.798013550000121, 51.956700542000064 ], [ 6.789848673000108, 51.95114532500007 ], [ 6.767007690000099, 51.925513815 ], [ 6.743753296000079, 51.908331401000041 ], [ 6.716674846000046, 51.899262187000048 ], [ 6.628153117000068, 51.897505189000086 ], [ 6.528624308000133, 51.876421204000067 ], [ 6.47942834400007, 51.853011780000102 ], [ 6.462891887000069, 51.848360901000021 ], [ 6.442531372000133, 51.848360901000021 ], [ 6.378452596000045, 51.86011728900003 ], [ 6.38661747200004, 51.837560527000093 ], [ 6.382483358000115, 51.827586975000074 ], [ 6.344966268000121, 51.821101583000129 ], [ 6.341969034000016, 51.836682028000055 ], [ 6.325742635000097, 51.842547303000046 ], [ 6.287398722000091, 51.846164653000031 ], [ 6.282851196000138, 51.849601135000071 ], [ 6.271792439000137, 51.861900127000112 ], [ 6.264661092000011, 51.866189271000067 ], [ 6.256392862000069, 51.866809387000032 ], [ 6.225180298000083, 51.862546082000094 ], [ 6.191383911000088, 51.871150208000117 ], [ 6.159241170000058, 51.887299093000095 ], [ 6.1269950760001, 51.896730041000083 ], [ 6.09299198400015, 51.885309550000059 ], [ 6.105394327000056, 51.879470113000067 ], [ 6.142704712000068, 51.855182190000093 ], [ 6.156140584000127, 51.842056376000116 ], [ 6.140017537000062, 51.844536845000093 ], [ 6.116453084000057, 51.848283387000023 ], [ 6.084000284000126, 51.853657735000056 ], [ 6.043279256000062, 51.846862285000029 ], [ 6.028913208000063, 51.842108053000047 ], [ 6.008242635000045, 51.832573751000055 ], [ 5.988915650000081, 51.82745778400006 ], [ 5.948091268000098, 51.822961935000123 ], [ 5.931451457000065, 51.815649720000053 ], [ 5.928040812000063, 51.806735535000101 ], [ 5.950778442000114, 51.795909322000071 ], [ 5.964110962000063, 51.776556499000023 ], [ 5.962353963000083, 51.756351013000128 ], [ 5.946056399882934, 51.746288216527944 ], [ 5.944629754059918, 51.745989081331004 ], [ 5.941425814949412, 51.745317287762589 ], [ 5.915845980707445, 51.756065985756607 ], [ 5.912280308189679, 51.758133043305293 ], [ 5.894400261562794, 51.773429267546646 ], [ 5.889904412158899, 51.777304999326248 ], [ 5.886958856366107, 51.777873440107157 ], [ 5.882152947700376, 51.777925116950541 ], [ 5.872231072905663, 51.776633205757832 ], [ 5.863239373198496, 51.772809149922296 ], [ 5.862774286104411, 51.759373276755298 ], [ 5.759938185199076, 51.762577215865804 ], [ 5.690123324631713, 51.792704576355106 ], [ 5.670796339879189, 51.795856839521491 ], [ 5.661287876234496, 51.800197659294497 ], [ 5.648937208685197, 51.819472968102957 ], [ 5.643201124931977, 51.823813787875963 ], [ 5.59850101061312, 51.830014960521964 ], [ 5.5345772643293, 51.823917141562788 ], [ 5.520004509600426, 51.826914374198964 ], [ 5.500832553579471, 51.835027573863442 ], [ 5.481557243871691, 51.830221666096975 ], [ 5.461971876700716, 51.821074938557558 ], [ 5.441456332643611, 51.816372381779956 ], [ 5.401045363053072, 51.818232733753632 ], [ 5.381098259776877, 51.81161814995761 ], [ 5.372571648962435, 51.792136135574196 ], [ 5.367507357878253, 51.775392971408451 ], [ 5.354639927290805, 51.762577215865804 ], [ 5.337018263082371, 51.753378811482946 ], [ 5.317949659848921, 51.747436022154659 ], [ 5.134911737386744, 51.734826972186966 ], [ 5.126023389567763, 51.736739000104762 ], [ 5.137185499611121, 51.753120429064495 ], [ 5.13734052924201, 51.76924347650521 ], [ 5.100391880281052, 51.784798082265638 ], [ 5.089229771137013, 51.782575995086063 ], [ 5.064993524031877, 51.783092759922908 ], [ 5.027786492652524, 51.800817776019528 ], [ 5.01207685726115, 51.811463121226041 ], [ 5.010061475656585, 51.819524644946398 ], [ 5.009286330199984, 51.825209051856234 ], [ 5.008046094951283, 51.834872545131816 ], [ 5.010681593280879, 51.842934067952854 ], [ 5.010836622911825, 51.844897772714035 ], [ 5.004480422433517, 51.85094391482977 ], [ 5.033367546774855, 51.852029120447526 ], [ 5.110158726344139, 51.87213125335461 ], [ 5.120545689132257, 51.876213690709221 ], [ 5.121475864219747, 51.878384101045413 ], [ 5.121475864219747, 51.881433010524972 ], [ 5.119615513145391, 51.885928859928924 ], [ 5.117910189903341, 51.891509914950575 ], [ 5.152998487789944, 51.93037059182933 ], [ 5.157649366824785, 51.935228176439182 ], [ 5.182557406599017, 51.966854152796884 ], [ 5.197388542846966, 51.965613919346879 ], [ 5.221418084377092, 51.968456122352165 ], [ 5.239453158836227, 51.977086086853376 ], [ 5.25433597192756, 51.979049790715237 ], [ 5.310508253752914, 51.959722805063393 ], [ 5.331230503385029, 51.963030096961404 ], [ 5.360634392563156, 51.977034410009992 ], [ 5.382803582119607, 51.980186673176377 ], [ 5.409055209929988, 51.974295558892891 ], [ 5.420372348704916, 51.973985501429695 ], [ 5.429674105875279, 51.976724352546796 ], [ 5.449466180419904, 51.985509344880313 ], [ 5.461971876700716, 51.98762807927244 ], [ 5.505070020564972, 51.981995348306668 ], [ 5.58211958165333, 51.953314927741701 ], [ 5.61570926277227, 51.948250637556839 ], [ 5.619274937088676, 51.952953193435121 ], [ 5.619740024182761, 51.968662827927119 ], [ 5.61834476110181, 51.973830470899486 ], [ 5.616484409128191, 51.977809557265232 ], [ 5.612298618086754, 51.982357083512568 ], [ 5.605477328715722, 51.991348782320415 ], [ 5.584858432770432, 52.005094712950608 ], [ 5.572249382802738, 52.019047350055132 ], [ 5.563412712726517, 52.049381415220125 ], [ 5.564807976706732, 52.073307603962746 ], [ 5.562792596001486, 52.079147040503472 ], [ 5.561862420014677, 52.084573065894233 ], [ 5.553335809200235, 52.104830227532943 ], [ 5.536902703397004, 52.102453110722479 ], [ 5.541243524069387, 52.095063382369176 ], [ 5.540623407344356, 52.09108429600343 ], [ 5.539228143364085, 52.087156887380445 ], [ 5.535042352322705, 52.082299302770593 ], [ 5.531166618744464, 52.079508774810108 ], [ 5.527135858233237, 52.077855130210082 ], [ 5.523105095923427, 52.077648423735752 ], [ 5.51969445213723, 52.076873277379832 ], [ 5.509255811606408, 52.07180898719497 ], [ 5.500109084066992, 52.069793606489725 ], [ 5.472203809857945, 52.078371894147551 ], [ 5.470188429152699, 52.080128893333722 ], [ 5.468638136440859, 52.082299302770593 ], [ 5.476234572167755, 52.086330064181084 ], [ 5.481040479934165, 52.089792384810664 ], [ 5.483986036626277, 52.093099676708675 ], [ 5.489877150010443, 52.103848374702693 ], [ 5.497628615368285, 52.113976955971737 ], [ 5.508480666149808, 52.113460191134891 ], [ 5.508790723613004, 52.114597072696711 ], [ 5.508790723613004, 52.11650910151377 ], [ 5.507860549424777, 52.120023098087472 ], [ 5.507705518894568, 52.126741035570319 ], [ 5.512666457191244, 52.132735500842671 ], [ 5.512821485922814, 52.136249498315692 ], [ 5.510185987593218, 52.138523261439332 ], [ 5.502434523134696, 52.143897609986709 ], [ 5.494373000313715, 52.147049872253774 ], [ 5.490342238003848, 52.149426988164919 ], [ 5.481505567927627, 52.157540187829397 ], [ 5.474529249825025, 52.160899156570792 ], [ 5.453858677036294, 52.163793037318783 ], [ 5.430139193868683, 52.168598945085193 ], [ 5.424093051752948, 52.175420234456226 ], [ 5.424868198108868, 52.177383938318087 ], [ 5.426728550082487, 52.178727525454917 ], [ 5.433239780191684, 52.181983141408807 ], [ 5.4366504248772, 52.18611725470754 ], [ 5.438665805582446, 52.195935776714691 ], [ 5.402492302977407, 52.21402252891653 ], [ 5.3969112479557, 52.219861966356632 ], [ 5.39923668792278, 52.230765693082219 ], [ 5.402847834659838, 52.247860667535747 ], [ 5.408750149100115, 52.267161258984913 ], [ 5.408921681290565, 52.267722169742285 ], [ 5.426002191048269, 52.263926501007177 ], [ 5.497166862960341, 52.269317764003574 ], [ 5.532749198916406, 52.276865532018689 ], [ 5.552157745883278, 52.298430584903542 ], [ 5.562940271876016, 52.319995636889132 ], [ 5.579114060865209, 52.344795446852345 ], [ 5.600679112850742, 52.357734477863858 ], [ 5.627635428732049, 52.371751761834332 ], [ 5.654591743713979, 52.381456034868108 ], [ 5.689095826711025, 52.390082055842186 ], [ 5.733304183641167, 52.403021087752961 ], [ 5.771043024615892, 52.413803613745756 ], [ 5.795842834579162, 52.426742644757212 ], [ 5.815251382445354, 52.440759928727687 ], [ 5.837894687389905, 52.462324980713277 ], [ 5.85514672933806, 52.48065527472113 ], [ 5.865929255330855, 52.505455085583719 ], [ 5.867007507390554, 52.521628874572855 ], [ 5.866948142242961, 52.521791345194401 ], [ 5.880988074739832, 52.52112861229557 ], [ 5.891454704870739, 52.520360419497763 ], [ 5.903857049263422, 52.508836575147825 ], [ 5.924992710045501, 52.484031887261779 ], [ 5.931348911423129, 52.480621243475582 ], [ 5.939410435143429, 52.479329332282816 ], [ 5.969692824364358, 52.484962063248588 ], [ 6.001628859084576, 52.501601873727452 ], [ 6.030671013956123, 52.511006985483959 ], [ 6.042763299086971, 52.507854723216894 ], [ 6.049584587558684, 52.505322578574123 ], [ 6.056405876929659, 52.498707993878782 ], [ 6.063847283924986, 52.489406235809099 ], [ 6.081572300021605, 52.477727362727592 ], [ 6.089013706117612, 52.47379995410455 ], [ 6.09536990659592, 52.467908840720384 ], [ 6.104206576672141, 52.45204417569812 ], [ 6.111958042029983, 52.439796860936383 ], [ 6.132731967606219, 52.421296699383163 ], [ 6.134799025154848, 52.418712876997631 ], [ 6.136194289135119, 52.41561229157395 ], [ 6.134799025154848, 52.404450182429969 ], [ 6.12001956485102, 52.380368964056402 ], [ 6.086688267049851, 52.373495998741305 ], [ 6.083587680726851, 52.371997381973586 ], [ 6.081572300021605, 52.370602118892634 ], [ 6.086533237418962, 52.363729153577538 ], [ 6.087308383774882, 52.359440008849276 ], [ 6.0780066257052, 52.350965073978955 ], [ 6.069273309315747, 52.329002590896835 ], [ 6.068033074966422, 52.321767890375838 ], [ 6.070668573296018, 52.318357244791002 ], [ 6.080952183296631, 52.309313870039034 ], [ 6.086068149425557, 52.305541490147618 ], [ 6.106532016639221, 52.299702052707516 ], [ 6.124515415154292, 52.27091828115374 ], [ 6.12405032716083, 52.262546699070867 ], [ 6.122345004818101, 52.259497788691988 ], [ 6.12405032716083, 52.256242174536681 ], [ 6.127926059839751, 52.25448517535051 ], [ 6.139139844927911, 52.251281236240061 ], [ 6.14410078322453, 52.248800768440674 ], [ 6.145961134298886, 52.243943182931503 ], [ 6.142240431250912, 52.237483628766427 ], [ 6.141930372888396, 52.236501776835496 ], [ 6.141930372888396, 52.235106512855282 ], [ 6.14332563596929, 52.232832749731585 ], [ 6.146116163929833, 52.230300605088814 ], [ 6.154332717281079, 52.225598050109909 ], [ 6.157743361067276, 52.225132962116504 ], [ 6.15991377140341, 52.225339666792138 ], [ 6.167045119136901, 52.232057604274985 ], [ 6.17650190593821, 52.236915187985517 ], [ 6.179602492261211, 52.237690335240757 ], [ 6.189214307794032, 52.237431952822362 ], [ 6.259235873936404, 52.228853665164479 ], [ 6.322539504394626, 52.22947378188951 ], [ 6.332461379189283, 52.231282457019745 ], [ 6.347344191381296, 52.238207099178283 ], [ 6.381657342012716, 52.246785386836109 ], [ 6.411422967296119, 52.244563300555853 ], [ 6.417365756624349, 52.238413804753236 ], [ 6.418450962242105, 52.237018540773022 ], [ 6.465889926778686, 52.194437160846292 ], [ 6.495242140012749, 52.177177231843757 ], [ 6.519116651911929, 52.178830878242422 ], [ 6.557615593584785, 52.175936998393752 ], [ 6.585727573368786, 52.179554347754902 ], [ 6.591773716383898, 52.179347643079211 ], [ 6.597354771405548, 52.178055731886502 ], [ 6.600765415191745, 52.17335317600822 ], [ 6.601695591178554, 52.169115709022719 ], [ 6.601695591178554, 52.165911769912213 ], [ 6.606036410951617, 52.164929917981283 ], [ 6.610067173261427, 52.164516506831319 ], [ 6.645620558242172, 52.169839179434575 ], [ 6.653527052331583, 52.168495592297745 ], [ 6.66329389839467, 52.165860093968149 ], [ 6.666704543080186, 52.164464829987878 ], [ 6.669340041409782, 52.161622626083329 ], [ 6.671045362853192, 52.157591865572101 ], [ 6.672130567571628, 52.147618313034684 ], [ 6.671820509209113, 52.142347317274869 ], [ 6.661898634414456, 52.127309475451909 ], [ 6.759515414604664, 52.114493719909206 ], [ 6.770884230223032, 52.109119371361885 ], [ 6.771575683870708, 52.108792501972346 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NL-LI", "NAME_1": "Limburg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.946056399882934, 51.746288216527944 ], [ 5.940133097000029, 51.742630921000099 ], [ 5.939306274000103, 51.731882223000085 ], [ 5.949228150000096, 51.729375916 ], [ 5.978270304000091, 51.729789327 ], [ 5.989742472000103, 51.726378682000089 ], [ 6.012066691000086, 51.715862528000045 ], [ 6.02198856600009, 51.709506328000018 ], [ 6.008552694000116, 51.681187643 ], [ 6.031497030000054, 51.662997539000074 ], [ 6.099193156000069, 51.644471538000047 ], [ 6.087514282000086, 51.622095642000048 ], [ 6.082139933000121, 51.607807109000063 ], [ 6.086480754000092, 51.59553395600004 ], [ 6.153039998000082, 51.538431499000026 ], [ 6.19334761500005, 51.509337667000111 ], [ 6.20047896300008, 51.476574809000013 ], [ 6.205336548000105, 51.458436382000073 ], [ 6.201719197000102, 51.438644308 ], [ 6.194071086000122, 51.417379456000035 ], [ 6.192727499000057, 51.398956808000023 ], [ 6.207817016000149, 51.387665508000069 ], [ 6.202029256000088, 51.378880513000055 ], [ 6.198928670000043, 51.3569697060001 ], [ 6.193554321000079, 51.344515686000037 ], [ 6.183632446000104, 51.335704854000042 ], [ 6.158207641000075, 51.324594422000118 ], [ 6.147769002000047, 51.318160706000057 ], [ 6.096505981000121, 51.258810324000038 ], [ 6.075421997000092, 51.242661439000059 ], [ 6.065190063000102, 51.231628520000058 ], [ 6.056611776000096, 51.211707255000036 ], [ 6.053717895000091, 51.18938303700007 ], [ 6.060849243000121, 51.17090871200007 ], [ 6.084310344000102, 51.162692159000031 ], [ 6.134126424000044, 51.184215394000077 ], [ 6.157070760000067, 51.179254456000123 ], [ 6.149112589000111, 51.176334737000033 ], [ 6.12627160700012, 51.164578349000053 ], [ 6.147252238000107, 51.15225352 ], [ 6.132369426000082, 51.139825338000023 ], [ 6.075421997000092, 51.120369161000028 ], [ 5.982921183000144, 51.074687195000124 ], [ 5.969485311000113, 51.064920350000065 ], [ 5.950261678000089, 51.039469707000038 ], [ 5.937962687000038, 51.03094309500004 ], [ 5.919565877000139, 51.02970286 ], [ 5.906233358000122, 51.037402649000072 ], [ 5.894347778000082, 51.047143657000035 ], [ 5.88049849500004, 51.052052918000058 ], [ 5.852489868000106, 51.042751160000037 ], [ 5.858174275000067, 51.019341736000072 ], [ 5.87357385200005, 50.990583801000056 ], [ 5.874607381000118, 50.965365703000018 ], [ 5.888249959000035, 50.967122701000093 ], [ 5.914191529000078, 50.97523590100009 ], [ 5.927730754000066, 50.977664694000069 ], [ 5.941580037000023, 50.976476135000027 ], [ 5.967831665000062, 50.970998434000037 ], [ 6.003695109000091, 50.97373728399999 ], [ 6.005762167000057, 50.968517965000061 ], [ 5.999664348000096, 50.960094706000078 ], [ 5.995840291000064, 50.951774801000013 ], [ 5.997287232000076, 50.937357076000112 ], [ 5.999871053000078, 50.929398906000031 ], [ 6.007519165000133, 50.924076233000093 ], [ 6.031083618000139, 50.914722799000046 ], [ 6.063743124000041, 50.907539775000018 ], [ 6.061779419000089, 50.90350901300009 ], [ 6.056508423000139, 50.898082988000041 ], [ 6.054648071000145, 50.891468404000037 ], [ 6.063123006000069, 50.870901184000061 ], [ 6.062812948000072, 50.862943014000095 ], [ 6.056715129000111, 50.852659404000079 ], [ 6.045553019000067, 50.844184469000098 ], [ 6.023022095000073, 50.845424704000024 ], [ 6.009276164000113, 50.840463765000081 ], [ 6.000491170000117, 50.830438538000053 ], [ 6.001421346000086, 50.821808574 ], [ 6.003591756000077, 50.812610169000024 ], [ 5.998320760000041, 50.800724589000069 ], [ 5.983954712000127, 50.792197978000061 ], [ 5.968761841000116, 50.794626770000022 ], [ 5.972999308000055, 50.781811015000031 ], [ 5.980647420000139, 50.773439433000064 ], [ 5.990569295000057, 50.769046936000066 ], [ 5.997080525000115, 50.762949117000019 ], [ 5.994910116000113, 50.749926656000085 ], [ 5.974756307000035, 50.747549540000037 ], [ 5.902202596000024, 50.749048157000047 ], [ 5.891287548000093, 50.751246327000047 ], [ 5.879878377000068, 50.75354400600007 ], [ 5.793165324000114, 50.752148743000092 ], [ 5.782933390000039, 50.75669627000012 ], [ 5.762469523000078, 50.771010641000018 ], [ 5.752444296000135, 50.773439433000064 ], [ 5.74355594900004, 50.769098613 ], [ 5.732776968000053, 50.758851489000051 ], [ 5.727846313000072, 50.754164124000042 ], [ 5.717407674000128, 50.752820537000062 ], [ 5.706555623000071, 50.75421580000004 ], [ 5.688365519000115, 50.760830384000045 ], [ 5.698700806000119, 50.783774720000068 ], [ 5.700457804000109, 50.795556946000076 ], [ 5.68485152100007, 50.79850250300008 ], [ 5.663250773000101, 50.805065410000068 ], [ 5.657432381000092, 50.80764098200008 ], [ 5.640719849000078, 50.81503896100007 ], [ 5.624493448000067, 50.830283509000097 ], [ 5.622323039000094, 50.852659404000079 ], [ 5.694463338000077, 50.903664042000045 ], [ 5.706038859000046, 50.906609599000049 ], [ 5.717614380000072, 50.909245097000067 ], [ 5.722368612000082, 50.911673890000131 ], [ 5.73528771900007, 50.923972881000068 ], [ 5.752547648000075, 50.947227275000088 ], [ 5.764019816000086, 50.959422913000097 ], [ 5.75430464700014, 50.963091940000098 ], [ 5.744692830000133, 50.963246969000053 ], [ 5.722368612000082, 50.959422913000097 ], [ 5.761746053000081, 50.999162090000098 ], [ 5.777559041000075, 51.02355336600003 ], [ 5.764019816000086, 51.035180563000083 ], [ 5.766396932000134, 51.048435568000073 ], [ 5.771461222000113, 51.05812489900002 ], [ 5.779626098000023, 51.061302999000091 ], [ 5.791304972000091, 51.054998475000062 ], [ 5.798849731000132, 51.061483866000046 ], [ 5.804327434000129, 51.068589376000048 ], [ 5.81176884000007, 51.082309469000094 ], [ 5.808978312000107, 51.08634023000009 ], [ 5.807428019000071, 51.089389140000023 ], [ 5.804947550000094, 51.096623840000078 ], [ 5.81590295400008, 51.095874532000082 ], [ 5.826651652000095, 51.096908061000065 ], [ 5.836780232000137, 51.099491883000056 ], [ 5.845978638000048, 51.103393454000113 ], [ 5.823241007000064, 51.118741354000079 ], [ 5.826444946000038, 51.130161844999989 ], [ 5.840500936000069, 51.138921 ], [ 5.838020467000092, 51.14372690900008 ], [ 5.829132121000072, 51.156465149000027 ], [ 5.812078898000038, 51.157317810000066 ], [ 5.781383098000106, 51.152408549000128 ], [ 5.768050577000082, 51.159462383000047 ], [ 5.74717329900011, 51.177600810000072 ], [ 5.730843547000063, 51.18375030600005 ], [ 5.718027791000083, 51.184602967000089 ], [ 5.676169881000106, 51.179176941000023 ], [ 5.659013306000048, 51.179073588000065 ], [ 5.648161255000105, 51.183957011000089 ], [ 5.638549438000098, 51.19090749100009 ], [ 5.62501021300011, 51.196901957000122 ], [ 5.568372843000134, 51.207650655000052 ], [ 5.551406597000096, 51.216767134000108 ], [ 5.551630486857448, 51.216822415422087 ], [ 5.568373651023137, 51.220956528720819 ], [ 5.592299838866438, 51.225504054968155 ], [ 5.600981480211146, 51.224987291030629 ], [ 5.608422886307153, 51.227054348579316 ], [ 5.615399204409755, 51.231963609133231 ], [ 5.620980259431406, 51.239043280922658 ], [ 5.630023634183374, 51.272684637985606 ], [ 5.647696974335872, 51.292321682000022 ], [ 5.654518262807585, 51.299142971370998 ], [ 5.675757277276489, 51.316351223530091 ], [ 5.773063999104238, 51.334954738770136 ], [ 5.844119093121662, 51.34911408144967 ], [ 5.875021599966828, 51.354075018847027 ], [ 5.898120964610825, 51.366115628033754 ], [ 5.93444949684681, 51.384874172904745 ], [ 5.910109896954168, 51.417326972461808 ], [ 5.875951775953695, 51.44683421532676 ], [ 5.853265821560399, 51.504091701870493 ], [ 5.837762891744035, 51.567033596223439 ], [ 5.873626335986614, 51.564811509943183 ], [ 5.911815220196218, 51.556749986222883 ], [ 5.923597446065287, 51.556646634334697 ], [ 5.950572544287468, 51.559437161395863 ], [ 5.999613478379331, 51.56997915291555 ], [ 6.009380324442418, 51.568377184259646 ], [ 6.033771600279124, 51.557886867784703 ], [ 6.049274530095488, 51.566465156341849 ], [ 6.049481234771179, 51.574526679162886 ], [ 6.043538446342211, 51.582949938089143 ], [ 6.031291130681097, 51.612715563372547 ], [ 6.027105339639718, 51.617108059089617 ], [ 6.026020134921282, 51.620673733406022 ], [ 6.006279738119417, 51.641292630250632 ], [ 5.99728803931157, 51.646925361216404 ], [ 5.987211133986648, 51.650749417051941 ], [ 5.982250196589291, 51.655865384080187 ], [ 5.988916457228697, 51.665528876456449 ], [ 5.973310173725508, 51.676329251293907 ], [ 5.959977655144655, 51.712399400212121 ], [ 5.944526401272412, 51.720150865569963 ], [ 5.904167107625881, 51.722734687056118 ], [ 5.888199089816112, 51.728987534746921 ], [ 5.87967247900167, 51.741234850407977 ], [ 5.882721387581967, 51.753275457796121 ], [ 5.862774286104411, 51.759373276755298 ], [ 5.863239373198496, 51.772809149922296 ], [ 5.872231072905663, 51.776633205757832 ], [ 5.882152947700376, 51.777925116950541 ], [ 5.886958856366107, 51.777873440107157 ], [ 5.889904412158899, 51.777304999326248 ], [ 5.894400261562794, 51.773429267546646 ], [ 5.912280308189679, 51.758133043305293 ], [ 5.915845980707445, 51.756065985756607 ], [ 5.941425814949412, 51.745317287762589 ], [ 5.944629754059918, 51.745989081331004 ], [ 5.946056399882934, 51.746288216527944 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NL-ZE", "NAME_1": "Zeeland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.45387658700011, 51.235633444000044 ], [ 3.421940552000109, 51.237984720999989 ], [ 3.398798476568402, 51.24469829349141 ], [ 3.391658163000102, 51.24676971500007 ], [ 3.367370240000099, 51.263487040000101 ], [ 3.353210897000054, 51.288601787000047 ], [ 3.353934366000146, 51.311907858000083 ], [ 3.358068481000061, 51.336712546000015 ], [ 3.349414674000116, 51.375223118000051 ], [ 3.510915561000047, 51.407945054000038 ], [ 3.525726759000065, 51.415594794000071 ], [ 3.541351759000065, 51.416734117000033 ], [ 3.604665561000047, 51.391058661000045 ], [ 3.702159050000091, 51.373602606000077 ], [ 3.734222852000073, 51.35578034100007 ], [ 3.75554446700005, 51.350083726000037 ], [ 3.795909050000091, 51.350083726000037 ], [ 3.833994988000086, 51.343247789000088 ], [ 3.858164910000085, 51.345445054000038 ], [ 3.955821160000085, 51.371771552000041 ], [ 3.969248894000089, 51.381659247000073 ], [ 3.974619988000086, 51.401597398000035 ], [ 3.98414147200009, 51.41046784100007 ], [ 4.005707227000073, 51.409816799000055 ], [ 4.02906334700009, 51.404201565000051 ], [ 4.043467644000089, 51.398504950000074 ], [ 4.050059441000087, 51.392238674000055 ], [ 4.061289910000085, 51.376654364000046 ], [ 4.070160352000073, 51.37055084800005 ], [ 4.081309441000087, 51.368150132000039 ], [ 4.105479363000086, 51.366115627000056 ], [ 4.115489129000082, 51.360988674000055 ], [ 4.121918165000068, 51.359361070000034 ], [ 4.156504754000082, 51.357570705000057 ], [ 4.173675977000073, 51.373724677000041 ], [ 4.180023634000065, 51.377427476000037 ], [ 4.199554884000065, 51.376044012000079 ], [ 4.221491455000091, 51.368000603000027 ], [ 4.220961547000115, 51.363816834000076 ], [ 4.213520141000089, 51.340536601000039 ], [ 4.207939087000085, 51.330588888000037 ], [ 4.168561645000096, 51.296870016000085 ], [ 4.118952271000097, 51.272401225000053 ], [ 3.995032186000032, 51.233230489000093 ], [ 3.949453572000067, 51.210777080000085 ], [ 3.927026001000058, 51.206255392000074 ], [ 3.8086869710001, 51.20532521600002 ], [ 3.796284627000119, 51.20876169800006 ], [ 3.781401815000095, 51.219872132000077 ], [ 3.779748169000129, 51.230310771000106 ], [ 3.781401815000095, 51.241421204000019 ], [ 3.776234172000102, 51.254521180000083 ], [ 3.757320597000046, 51.262324321 ], [ 3.635054159000049, 51.287826640000034 ], [ 3.609526001000091, 51.290436300000053 ], [ 3.584824666000088, 51.289531963000101 ], [ 3.54503381300006, 51.283925069000063 ], [ 3.529014120000113, 51.283330791000097 ], [ 3.514338012000024, 51.281031188999989 ], [ 3.503382609000141, 51.273951518000061 ], [ 3.501522258000136, 51.262401836000024 ], [ 3.504106079000053, 51.249741110000073 ], [ 3.501212199000065, 51.240284323000097 ], [ 3.45387658700011, 51.235633444000044 ] ] ], [ [ [ 4.281124221805385, 51.368946510373121 ], [ 4.261067579000098, 51.369379275000071 ], [ 4.257090691000087, 51.37250397300005 ], [ 4.249034050000091, 51.38422272300005 ], [ 4.246348504000082, 51.396429755000042 ], [ 4.246836785000085, 51.406724351000037 ], [ 4.244883660000085, 51.414496161000045 ], [ 4.234711134000065, 51.419012762000079 ], [ 4.222992384000065, 51.409491278000075 ], [ 4.201019727000073, 51.405340887000079 ], [ 4.11109459700009, 51.406968492000033 ], [ 4.090342644000089, 51.411281643000052 ], [ 4.070160352000073, 51.419012762000079 ], [ 4.015147332000083, 51.448919989000046 ], [ 3.998789910000085, 51.453111070000034 ], [ 3.957041863000086, 51.455796617000033 ], [ 3.94312584700009, 51.450384833000044 ], [ 3.91342207100007, 51.415269273000035 ], [ 3.90211022200009, 51.40493398600006 ], [ 3.886729363000086, 51.399807033000059 ], [ 3.850759311000047, 51.397365627000056 ], [ 3.837901238000086, 51.392238674000055 ], [ 3.827159050000091, 51.391058661000045 ], [ 3.816416863000086, 51.394110419000071 ], [ 3.789073113000086, 51.412176825000074 ], [ 3.728770379000082, 51.430812893000052 ], [ 3.689707879000082, 51.454291083000044 ], [ 3.674001498000052, 51.45538971600007 ], [ 3.63257897200009, 51.445705471000053 ], [ 3.610036655000044, 51.445054429000038 ], [ 3.553396030000044, 51.453111070000034 ], [ 3.535411004000082, 51.459214585000041 ], [ 3.520192905000044, 51.473374742000033 ], [ 3.506846550000091, 51.489325262000079 ], [ 3.494802280000044, 51.500921942000048 ], [ 3.461924675000091, 51.51898834800005 ], [ 3.451019727000073, 51.529730536000045 ], [ 3.44703209700009, 51.545965887000079 ], [ 3.457530144000089, 51.555080471000053 ], [ 3.560394727000073, 51.594631252000056 ], [ 3.828868035000085, 51.61273834800005 ], [ 3.851084832000083, 51.61078522300005 ], [ 3.866058790000068, 51.605414130000042 ], [ 3.88217207100007, 51.596096096000053 ], [ 3.896494988000086, 51.583807684000078 ], [ 3.905772332000083, 51.569240627000056 ], [ 3.895274285000085, 51.566595770000049 ], [ 3.87826582100007, 51.559393622000073 ], [ 3.871592644000089, 51.555568752000056 ], [ 3.871592644000089, 51.549383856000077 ], [ 3.967295769000089, 51.543117580000057 ], [ 4.015879754000082, 51.530829169000071 ], [ 4.057139519000089, 51.508368231000077 ], [ 4.070323113000086, 51.492743231000077 ], [ 4.090017123000052, 51.458238023000035 ], [ 4.10482832100007, 51.445705471000053 ], [ 4.128754102000073, 51.441351630000042 ], [ 4.180837436000047, 51.445868231000077 ], [ 4.200450066000087, 51.439520575000074 ], [ 4.220225457000083, 51.443548895000049 ], [ 4.252777540000068, 51.442531643000052 ], [ 4.263802118173203, 51.444457099415558 ], [ 4.263850897400971, 51.444394383394069 ], [ 4.264163853379102, 51.443992011422154 ], [ 4.268659701883735, 51.429315903905831 ], [ 4.265094027567329, 51.425285143394603 ], [ 4.264008822848893, 51.421926175552528 ], [ 4.262148471774537, 51.418877265173649 ], [ 4.262768589398888, 51.407456772711839 ], [ 4.266644321178489, 51.388129787959315 ], [ 4.276101107979741, 51.383117173718574 ], [ 4.279821811927093, 51.376760973240323 ], [ 4.281062046276418, 51.36931956624494 ], [ 4.281124221805385, 51.368946510373121 ] ] ], [ [ [ 4.230479363000086, 51.519558010000083 ], [ 4.19467207100007, 51.523586330000057 ], [ 4.153330925000091, 51.535060940000051 ], [ 4.137950066000087, 51.535874742000033 ], [ 4.106293165000068, 51.53351471600007 ], [ 4.091319207000083, 51.535060940000051 ], [ 4.067230665000068, 51.544012762000079 ], [ 3.988129102000073, 51.590277411000045 ], [ 4.041188998000052, 51.606024481000077 ], [ 4.06771894600007, 51.610663153000075 ], [ 4.157237175000091, 51.607896226000037 ], [ 4.18336022200009, 51.602932033000059 ], [ 4.206811881528696, 51.590557023008138 ], [ 4.207526482661024, 51.589564520985846 ], [ 4.233778109572086, 51.57090932890236 ], [ 4.237033726425295, 51.567963772210305 ], [ 4.244010043628577, 51.555303046298548 ], [ 4.243855014897008, 51.543365789899269 ], [ 4.242614779648363, 51.539335029388042 ], [ 4.230479363000086, 51.519558010000083 ] ] ], [ [ [ 4.186127148748881, 51.616807359072311 ], [ 4.146657748000052, 51.617865302000041 ], [ 4.135996941000087, 51.620428778000075 ], [ 4.125987175000091, 51.624701239000046 ], [ 4.118011915000068, 51.630682684000078 ], [ 4.11296634200005, 51.639390367000033 ], [ 4.110919028994119, 51.646986975332325 ], [ 4.1110982599767, 51.647132066791414 ], [ 4.113796791788502, 51.649316591987088 ], [ 4.13065633632084, 51.658304500152553 ], [ 4.15306084338323, 51.652877867719383 ], [ 4.174425444578617, 51.643261319054602 ], [ 4.196954970895206, 51.63772724191864 ], [ 4.197784305001676, 51.637891923973086 ], [ 4.197373152948614, 51.637154889986164 ], [ 4.186127148748881, 51.616807359072311 ] ] ], [ [ [ 4.036631707000083, 51.68585846600007 ], [ 4.078379754000082, 51.678615627000056 ], [ 4.09734134200005, 51.67023346600007 ], [ 4.09937584700009, 51.654120184000078 ], [ 4.089040561000047, 51.644029039000088 ], [ 4.072601759000065, 51.636908270000049 ], [ 4.054860873000052, 51.632635809000078 ], [ 3.978037957000083, 51.623277085000041 ], [ 3.96029707100007, 51.623846747000073 ], [ 3.923106316000087, 51.632473049000055 ], [ 3.901540561000047, 51.641994533000059 ], [ 3.89193769600007, 51.655503648000035 ], [ 3.885590040000068, 51.668361721000053 ], [ 3.869802280000044, 51.67609284100007 ], [ 3.830577019000089, 51.68585846600007 ], [ 3.82390384200005, 51.689886786000045 ], [ 3.817637566000087, 51.695257880000042 ], [ 3.809255405000044, 51.69953034100007 ], [ 3.795909050000091, 51.700140692000048 ], [ 3.77125084700009, 51.681830145000049 ], [ 3.76539147200009, 51.678412177000041 ], [ 3.720550977000073, 51.676825262000079 ], [ 3.700043165000068, 51.680609442000048 ], [ 3.686696811000047, 51.692694403000075 ], [ 3.689463738000086, 51.725043036000045 ], [ 3.725840691000087, 51.739732164000088 ], [ 3.810069207000083, 51.747300523000035 ], [ 3.81421959700009, 51.748236395000049 ], [ 3.830577019000089, 51.747300523000035 ], [ 3.843760613000086, 51.74282461100006 ], [ 3.939626498000052, 51.741156317000048 ], [ 3.961761915000068, 51.738104559000078 ], [ 3.978037957000083, 51.730292059000078 ], [ 4.01539147200009, 51.701727606000077 ], [ 4.020274285000085, 51.696478583000044 ], [ 4.026621941000087, 51.691107489000046 ], [ 4.036631707000083, 51.68585846600007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NL-NB", "NAME_1": "Noord-Brabant" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.822681925000012, 51.413684591000035 ], [ 4.815447224000138, 51.431073711000053 ], [ 4.819891398000067, 51.446214905000076 ], [ 4.826092570000128, 51.460555115000048 ], [ 4.823922159000062, 51.475644633000073 ], [ 4.813586873000133, 51.484119569000072 ], [ 4.796843709000086, 51.491018372000028 ], [ 4.778653605000045, 51.495359192000123 ], [ 4.764184204000117, 51.496237691000047 ], [ 4.731214641000065, 51.485618185000064 ], [ 4.653906697000053, 51.426216126000028 ], [ 4.643571411000067, 51.42141021700003 ], [ 4.630135539000094, 51.418206279000046 ], [ 4.614632609000097, 51.417560322999989 ], [ 4.582696573000106, 51.422598776000044 ], [ 4.553861125000083, 51.419291484000055 ], [ 4.540631958000091, 51.420066630000051 ], [ 4.521511678000081, 51.428644917999989 ], [ 4.523372029000086, 51.438411764000037 ], [ 4.531846964000096, 51.450865784000129 ], [ 4.533190551000075, 51.467583110000064 ], [ 4.525232381000109, 51.475928854000031 ], [ 4.512623331000071, 51.477375794000025 ], [ 4.483064412000147, 51.474326884 ], [ 4.429424275000059, 51.461976217000043 ], [ 4.37712772600014, 51.44288177500006 ], [ 4.389220011000134, 51.434587708000024 ], [ 4.387152954000072, 51.427456360000079 ], [ 4.3806417240001, 51.41965321900004 ], [ 4.379918253000113, 51.409524638000093 ], [ 4.387669719000115, 51.400532939000058 ], [ 4.410097290000124, 51.383789775000096 ], [ 4.416195109000085, 51.37397125300005 ], [ 4.411234171000018, 51.356737162000044 ], [ 4.392217244000051, 51.350406799000027 ], [ 4.345605103000082, 51.352292990000038 ], [ 4.326278117000129, 51.356427104000076 ], [ 4.290104614000114, 51.368751933000013 ], [ 4.281124221805385, 51.368946510373121 ], [ 4.281062046276418, 51.36931956624494 ], [ 4.279821811927093, 51.376760973240323 ], [ 4.276101107979741, 51.383117173718574 ], [ 4.266644321178489, 51.388129787959315 ], [ 4.262768589398888, 51.407456772711839 ], [ 4.262148471774537, 51.418877265173649 ], [ 4.264008822848893, 51.421926175552528 ], [ 4.265094027567329, 51.425285143394603 ], [ 4.268659701883735, 51.429315903905831 ], [ 4.264163853379102, 51.443992011422154 ], [ 4.263850897400971, 51.444394383394069 ], [ 4.263802118173203, 51.444457099415558 ], [ 4.283213738000086, 51.447699286000045 ], [ 4.296722852000073, 51.470526434000078 ], [ 4.288584832000083, 51.492132880000042 ], [ 4.267751498000052, 51.508286851000037 ], [ 4.239756707000083, 51.518500067000048 ], [ 4.230479363000086, 51.519558010000083 ], [ 4.242614779648363, 51.539335029388042 ], [ 4.243855014897008, 51.543365789899269 ], [ 4.244010043628577, 51.555303046298548 ], [ 4.237033726425295, 51.567963772210305 ], [ 4.233778109572086, 51.57090932890236 ], [ 4.207526482661024, 51.589564520985846 ], [ 4.206811881528696, 51.590557023008138 ], [ 4.206879102000073, 51.590521552000041 ], [ 4.207286004000082, 51.590277411000045 ], [ 4.202647332000083, 51.609116929000038 ], [ 4.189952019000089, 51.616685289000088 ], [ 4.186127148748881, 51.616807359072311 ], [ 4.197373152948614, 51.637154889986164 ], [ 4.197784305001676, 51.637891923973086 ], [ 4.238928665425533, 51.646062019246756 ], [ 4.28015564206919, 51.64823186031208 ], [ 4.333678383550534, 51.656911224573321 ], [ 4.372735520028243, 51.673546669742962 ], [ 4.403113292244655, 51.708264124989341 ], [ 4.506542374630897, 51.695245079496772 ], [ 4.544876231352987, 51.695968360151653 ], [ 4.579593684800727, 51.702477882448306 ], [ 4.620820662343704, 51.714773647285995 ], [ 4.64396563070926, 51.719113329416587 ], [ 4.675553647582774, 51.719373504183864 ], [ 4.725634393112728, 51.756892808955968 ], [ 4.739948765423151, 51.774411119477577 ], [ 4.761756218874382, 51.789035550150516 ], [ 4.790384962595908, 51.802678127993204 ], [ 4.845472038803564, 51.803194891930673 ], [ 4.870328402633675, 51.808104153383965 ], [ 4.908982374836739, 51.82991160683514 ], [ 4.93476891375434, 51.83016999015291 ], [ 4.985566847032374, 51.823813787875963 ], [ 5.009286330199984, 51.825209051856234 ], [ 5.010061475656585, 51.819524644946398 ], [ 5.01207685726115, 51.811463121226041 ], [ 5.027786492652524, 51.800817776019528 ], [ 5.064993524031877, 51.783092759922908 ], [ 5.089229771137013, 51.782575995086063 ], [ 5.100391880281052, 51.784798082265638 ], [ 5.13734052924201, 51.76924347650521 ], [ 5.137185499611121, 51.753120429064495 ], [ 5.126023389567763, 51.736739000104762 ], [ 5.134911737386744, 51.734826972186966 ], [ 5.317949659848921, 51.747436022154659 ], [ 5.337018263082371, 51.753378811482946 ], [ 5.354639927290805, 51.762577215865804 ], [ 5.367507357878253, 51.775392971408451 ], [ 5.372571648962435, 51.792136135574196 ], [ 5.381098259776877, 51.81161814995761 ], [ 5.401045363053072, 51.818232733753632 ], [ 5.441456332643611, 51.816372381779956 ], [ 5.461971876700716, 51.821074938557558 ], [ 5.481557243871691, 51.830221666096975 ], [ 5.500832553579471, 51.835027573863442 ], [ 5.520004509600426, 51.826914374198964 ], [ 5.5345772643293, 51.823917141562788 ], [ 5.59850101061312, 51.830014960521964 ], [ 5.643201124931977, 51.823813787875963 ], [ 5.648937208685197, 51.819472968102957 ], [ 5.661287876234496, 51.800197659294497 ], [ 5.670796339879189, 51.795856839521491 ], [ 5.690123324631713, 51.792704576355106 ], [ 5.759938185199076, 51.762577215865804 ], [ 5.862774286104411, 51.759373276755298 ], [ 5.882721387581967, 51.753275457796121 ], [ 5.87967247900167, 51.741234850407977 ], [ 5.888199089816112, 51.728987534746921 ], [ 5.904167107625881, 51.722734687056118 ], [ 5.944526401272412, 51.720150865569963 ], [ 5.959977655144655, 51.712399400212121 ], [ 5.973310173725508, 51.676329251293907 ], [ 5.988916457228697, 51.665528876456449 ], [ 5.982250196589291, 51.655865384080187 ], [ 5.987211133986648, 51.650749417051941 ], [ 5.99728803931157, 51.646925361216404 ], [ 6.006279738119417, 51.641292630250632 ], [ 6.026020134921282, 51.620673733406022 ], [ 6.027105339639718, 51.617108059089617 ], [ 6.031291130681097, 51.612715563372547 ], [ 6.043538446342211, 51.582949938089143 ], [ 6.049481234771179, 51.574526679162886 ], [ 6.049274530095488, 51.566465156341849 ], [ 6.033771600279124, 51.557886867784703 ], [ 6.009380324442418, 51.568377184259646 ], [ 5.999613478379331, 51.56997915291555 ], [ 5.950572544287468, 51.559437161395863 ], [ 5.923597446065287, 51.556646634334697 ], [ 5.911815220196218, 51.556749986222883 ], [ 5.873626335986614, 51.564811509943183 ], [ 5.837762891744035, 51.567033596223439 ], [ 5.853265821560399, 51.504091701870493 ], [ 5.875951775953695, 51.44683421532676 ], [ 5.910109896954168, 51.417326972461808 ], [ 5.93444949684681, 51.384874172904745 ], [ 5.898120964610825, 51.366115628033754 ], [ 5.875021599966828, 51.354075018847027 ], [ 5.844119093121662, 51.34911408144967 ], [ 5.773063999104238, 51.334954738770136 ], [ 5.675757277276489, 51.316351223530091 ], [ 5.654518262807585, 51.299142971370998 ], [ 5.647696974335872, 51.292321682000022 ], [ 5.630023634183374, 51.272684637985606 ], [ 5.620980259431406, 51.239043280922658 ], [ 5.615399204409755, 51.231963609133231 ], [ 5.608422886307153, 51.227054348579316 ], [ 5.600981480211146, 51.224987291030629 ], [ 5.592299838866438, 51.225504054968155 ], [ 5.568373651023137, 51.220956528720819 ], [ 5.551630486857448, 51.216822415422087 ], [ 5.551406597000096, 51.216767134000108 ], [ 5.54553186000004, 51.21992380799999 ], [ 5.542327921000066, 51.242661439000059 ], [ 5.535196573000121, 51.262040100000021 ], [ 5.516696411000083, 51.27723297200005 ], [ 5.49323531100012, 51.286534729000081 ], [ 5.471634562000133, 51.288085023000107 ], [ 5.451894165000084, 51.282116394000084 ], [ 5.409932901000076, 51.263538717000031 ], [ 5.389055623000104, 51.258706971000024 ], [ 5.270716593000145, 51.261833395000068 ], [ 5.239455934000091, 51.25693018200009 ], [ 5.232992798000112, 51.255916443000061 ], [ 5.215422811000025, 51.258732808000033 ], [ 5.214906047000085, 51.29433787 ], [ 5.197336059000122, 51.308342183000022 ], [ 5.178835897000084, 51.309504903000018 ], [ 5.140181926000082, 51.307386170000044 ], [ 5.122921997000105, 51.313380636000076 ], [ 5.118064412000081, 51.319917705000037 ], [ 5.107832479000081, 51.341983541000033 ], [ 5.102561483000073, 51.3506651820001 ], [ 5.068144979000095, 51.374539694000092 ], [ 5.061737101000062, 51.384254863000123 ], [ 5.065251099000108, 51.405907288000023 ], [ 5.076413208000048, 51.421901144000046 ], [ 5.079927205000104, 51.438540955000079 ], [ 5.060290161000069, 51.461976217000043 ], [ 5.030317831000048, 51.474430237000021 ], [ 5.027527303000085, 51.476807353000069 ], [ 5.012127727000092, 51.474326884 ], [ 5.00613326000007, 51.468306580000061 ], [ 5.002722616000142, 51.45900482200004 ], [ 4.995797973000066, 51.446705831000102 ], [ 4.980191691000101, 51.430531108000096 ], [ 4.957144002000064, 51.410997416 ], [ 4.931925903000092, 51.395623678000035 ], [ 4.910325154000134, 51.391902975 ], [ 4.871671183000046, 51.403039246000034 ], [ 4.853274373000119, 51.406139832000079 ], [ 4.783304484000013, 51.407638448000071 ], [ 4.762117146000151, 51.413374532000049 ], [ 4.767801554000101, 51.425389303000102 ], [ 4.779067016000056, 51.426422832000085 ], [ 4.822681925000012, 51.413684591000035 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NL-ZH", "NAME_1": "Zuid-Holland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.110919028994119, 51.646986975332325 ], [ 4.109873894000089, 51.650864976000037 ], [ 4.109629754000082, 51.662298895000049 ], [ 4.11264082100007, 51.670803127000056 ], [ 4.125661655000044, 51.679632880000042 ], [ 4.142914259000065, 51.684149481000077 ], [ 4.176931186000047, 51.68585846600007 ], [ 4.166351759000065, 51.692694403000075 ], [ 4.141123894000089, 51.703924872000073 ], [ 4.071543816000087, 51.717189846000053 ], [ 4.057139519000089, 51.730292059000078 ], [ 4.050791863000086, 51.763495184000078 ], [ 4.033946160000085, 51.784247137000079 ], [ 4.009776238000086, 51.797919012000079 ], [ 3.981455925000091, 51.81000397300005 ], [ 3.96257571700005, 51.801214911000045 ], [ 3.93718509200005, 51.79633209800005 ], [ 3.911387566000087, 51.796372789000088 ], [ 3.891856316000087, 51.792954820000034 ], [ 3.888194207000083, 51.788885809000078 ], [ 3.881114129000082, 51.788072007000039 ], [ 3.871592644000089, 51.788275458000044 ], [ 3.862315300000091, 51.816066799000055 ], [ 3.891368035000085, 51.828273830000057 ], [ 3.954112175000091, 51.84015534100007 ], [ 3.96265709700009, 51.847357489000046 ], [ 3.98218834700009, 51.84829336100006 ], [ 4.015635613000086, 51.843573309000078 ], [ 4.043467644000089, 51.834214585000041 ], [ 4.047618035000085, 51.833685614000046 ], [ 4.055023634000065, 51.834214585000041 ], [ 4.065440300000091, 51.837103583000044 ], [ 4.077647332000083, 51.843573309000078 ], [ 4.07007897200009, 51.852728583000044 ], [ 4.04460696700005, 51.874497789000088 ], [ 4.037852410000085, 51.877915757000039 ], [ 4.032074415000068, 51.882025458000044 ], [ 4.029795769000089, 51.888251044000071 ], [ 4.031993035000085, 51.896063544000071 ], [ 4.036631707000083, 51.901556708000044 ], [ 4.041270379000082, 51.905503648000035 ], [ 4.043467644000089, 51.908677476000037 ], [ 4.040212436000047, 51.924058335000041 ], [ 4.02116946700005, 51.963324286000045 ], [ 4.010020379000082, 51.980129299000055 ], [ 4.015635613000086, 51.987697658000059 ], [ 4.022471550000091, 51.994370835000041 ], [ 4.069021030000044, 51.987941799000055 ], [ 4.107676629000082, 51.991888739000046 ], [ 4.141856316000087, 52.005601304000038 ], [ 4.284678582000083, 52.112941799000055 ], [ 4.406911655000044, 52.223456122000073 ], [ 4.508148634000065, 52.336371161000045 ], [ 4.499033236994308, 52.326057034204723 ], [ 4.542854852169683, 52.313913072230491 ], [ 4.548590935922959, 52.31251780914954 ], [ 4.566470980751149, 52.310089016394954 ], [ 4.587244907226648, 52.316755276135041 ], [ 4.609724155145614, 52.31344798423703 ], [ 4.567711215999793, 52.2705048691044 ], [ 4.566315952019579, 52.268076077249134 ], [ 4.565075717670197, 52.263735257476128 ], [ 4.564145541683388, 52.254381822563062 ], [ 4.559287957073536, 52.240894273451943 ], [ 4.546730583949284, 52.227768460446043 ], [ 4.548125847929555, 52.220378730294158 ], [ 4.559442986704482, 52.220895494231627 ], [ 4.569261508711634, 52.215056056791582 ], [ 4.574067417377421, 52.213609116867246 ], [ 4.580888705849077, 52.212833971410646 ], [ 4.605538364104234, 52.213195705717226 ], [ 4.648223096818469, 52.220223701562531 ], [ 4.669462111287373, 52.226476549253334 ], [ 4.71028649292731, 52.234589748917756 ], [ 4.715402459056236, 52.232471015425006 ], [ 4.717882927754886, 52.23097239775791 ], [ 4.722223748427211, 52.216244615196786 ], [ 4.725634393112728, 52.211490384273816 ], [ 4.736228062375176, 52.20828644516331 ], [ 4.767854037833558, 52.221205553493462 ], [ 4.780876498951272, 52.207149562702114 ], [ 4.785837437247892, 52.202808742929108 ], [ 4.791935256207069, 52.199088039881133 ], [ 4.81394941613263, 52.193713691333755 ], [ 4.862680290962658, 52.167978828360219 ], [ 4.853688592154811, 52.163431301213564 ], [ 4.857719353565301, 52.15237254485703 ], [ 4.864075554942872, 52.141365465343938 ], [ 4.865625847654712, 52.138006497501806 ], [ 4.865470818923143, 52.1355777038479 ], [ 4.863300408586952, 52.133872382404491 ], [ 4.859114618444892, 52.133148911992691 ], [ 4.842629835798277, 52.138006497501806 ], [ 4.837668898400921, 52.138729967014342 ], [ 4.834258253715404, 52.139711818945273 ], [ 4.831002637761515, 52.141210435712992 ], [ 4.825576613270073, 52.140486966200513 ], [ 4.820770704604342, 52.139505113370262 ], [ 4.796896192705105, 52.123898830766393 ], [ 4.79085004969005, 52.119713039724957 ], [ 4.804647658062947, 52.11227163452827 ], [ 4.81982940310445, 52.108847437958843 ], [ 4.832528591221489, 52.071596486388728 ], [ 4.87771813278556, 52.071395576044949 ], [ 4.870520327850841, 52.064611933194158 ], [ 4.831152845227621, 52.052547704213168 ], [ 4.799404874935021, 52.02270461312736 ], [ 4.80384959068607, 52.01635501906884 ], [ 4.84956666826713, 52.020164774784519 ], [ 4.854011384018122, 52.008100545803529 ], [ 4.841389601448952, 52.003234360976933 ], [ 4.834103224084515, 52.001115628383502 ], [ 4.827591993975318, 51.999823717190793 ], [ 4.824336378920748, 51.996826484554617 ], [ 4.833328077728595, 51.987318020010605 ], [ 4.865315789292254, 51.962048245030473 ], [ 4.887329950117078, 51.941170965767412 ], [ 4.893996208957844, 51.94752716714504 ], [ 4.91668216335114, 51.946700343945679 ], [ 4.926759066877423, 51.949284166331211 ], [ 4.95481936981804, 51.967164212058719 ], [ 4.986910435068523, 51.978636380464536 ], [ 4.988977491717833, 51.980186673176377 ], [ 5.030421990982063, 51.974347235736332 ], [ 5.040498895407666, 51.977086086853376 ], [ 5.055019972393779, 51.98855825525925 ], [ 5.063908319313498, 51.99279572224475 ], [ 5.086749302438363, 51.996671454024352 ], [ 5.095585971615264, 52.000908921909172 ], [ 5.104887729684947, 52.003802801757843 ], [ 5.118685337158581, 52.001942451582863 ], [ 5.130880975076934, 51.996051337299377 ], [ 5.144678581651192, 51.981220201051428 ], [ 5.154083693407699, 51.973985501429695 ], [ 5.172945591066139, 51.967784328783694 ], [ 5.182557406599017, 51.966854152796884 ], [ 5.157649366824785, 51.935228176439182 ], [ 5.152998487789944, 51.93037059182933 ], [ 5.117910189903341, 51.891509914950575 ], [ 5.119615513145391, 51.885928859928924 ], [ 5.121475864219747, 51.881433010524972 ], [ 5.121475864219747, 51.878384101045413 ], [ 5.120545689132257, 51.876213690709221 ], [ 5.110158726344139, 51.87213125335461 ], [ 5.033367546774855, 51.852029120447526 ], [ 5.004480422433517, 51.85094391482977 ], [ 5.010836622911825, 51.844897772714035 ], [ 5.010681593280879, 51.842934067952854 ], [ 5.008046094951283, 51.834872545131816 ], [ 5.009286330199984, 51.825209051856234 ], [ 4.985566847032374, 51.823813787875963 ], [ 4.93476891375434, 51.83016999015291 ], [ 4.908982374836739, 51.82991160683514 ], [ 4.870328402633675, 51.808104153383965 ], [ 4.845472038803564, 51.803194891930673 ], [ 4.790384962595908, 51.802678127993204 ], [ 4.761756218874382, 51.789035550150516 ], [ 4.739948765423151, 51.774411119477577 ], [ 4.725634393112728, 51.756892808955968 ], [ 4.675553647582774, 51.719373504183864 ], [ 4.64396563070926, 51.719113329416587 ], [ 4.620820662343704, 51.714773647285995 ], [ 4.579593684800727, 51.702477882448306 ], [ 4.544876231352987, 51.695968360151653 ], [ 4.506542374630897, 51.695245079496772 ], [ 4.403113292244655, 51.708264124989341 ], [ 4.372735520028243, 51.673546669742962 ], [ 4.333678383550534, 51.656911224573321 ], [ 4.28015564206919, 51.64823186031208 ], [ 4.238928665425533, 51.646062019246756 ], [ 4.197784305001676, 51.637891923973086 ], [ 4.196954970895206, 51.63772724191864 ], [ 4.174425444578617, 51.643261319054602 ], [ 4.15306084338323, 51.652877867719383 ], [ 4.13065633632084, 51.658304500152553 ], [ 4.113796791788502, 51.649316591987088 ], [ 4.1110982599767, 51.647132066791414 ], [ 4.110919028994119, 51.646986975332325 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NL-NH", "NAME_1": "Noord-Holland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.508148634000065, 52.336371161000045 ], [ 4.568614129000082, 52.445257880000042 ], [ 4.577321811000047, 52.473578192000048 ], [ 4.577321811000047, 52.480943101000037 ], [ 4.596934441000087, 52.506577867000033 ], [ 4.639333530000044, 52.700669664000031 ], [ 4.657074415000068, 52.750189520000049 ], [ 4.65984134200005, 52.765285549000055 ], [ 4.669444207000083, 52.796576239000046 ], [ 4.711680535000085, 52.863104559000078 ], [ 4.721364780000044, 52.89594147300005 ], [ 4.72242272200009, 52.914496161000045 ], [ 4.726410352000073, 52.938299872000073 ], [ 4.733897332000083, 52.958889065000051 ], [ 4.74545332100007, 52.967596747000073 ], [ 4.806976759000065, 52.961818752000056 ], [ 4.816905144000089, 52.967596747000073 ], [ 4.824392123000052, 52.960150458000044 ], [ 4.809418165000068, 52.929592190000051 ], [ 4.832774285000085, 52.911322333000044 ], [ 4.873789910000085, 52.903957424000055 ], [ 4.913096550000091, 52.905585028000075 ], [ 4.935801629000082, 52.913397528000075 ], [ 4.97828209700009, 52.935695705000057 ], [ 4.999034050000091, 52.940334377000056 ], [ 5.038910352000073, 52.943508205000057 ], [ 5.078135613000086, 52.954006252000056 ], [ 5.17977250358083, 53.008994521404261 ], [ 5.180115213046633, 53.007985134706189 ], [ 5.182130593751879, 53.004884549282508 ], [ 5.1860063264308, 52.995117704118741 ], [ 5.187429153732467, 52.991532176368821 ], [ 5.187502351352407, 52.991347720920544 ], [ 5.260188560153892, 52.8653582915519 ], [ 5.370323085741802, 52.79033912085373 ], [ 5.370207545341941, 52.789315757116469 ], [ 5.358882060858434, 52.689004330185639 ], [ 5.308726346943331, 52.698711887543539 ], [ 5.277985748643346, 52.685768476833687 ], [ 5.261806486380237, 52.648556174527812 ], [ 5.095160083271196, 52.582221197450281 ], [ 5.119428975766596, 52.515886221272069 ], [ 5.167966764354674, 52.472202213161609 ], [ 5.193853583975681, 52.428518204151771 ], [ 5.159877133223119, 52.428518204151771 ], [ 5.103249714402807, 52.396159678726178 ], [ 5.104867639729775, 52.363801154199905 ], [ 5.159877133223119, 52.328206777220942 ], [ 5.190617730623785, 52.32335299854202 ], [ 5.227830034728299, 52.324970923868989 ], [ 5.248863075670386, 52.324970923868989 ], [ 5.282839527322324, 52.31849921896378 ], [ 5.367600324395426, 52.283315492216161 ], [ 5.366119229119136, 52.283151138414269 ], [ 5.33219305766346, 52.279386409055519 ], [ 5.276195103121495, 52.279341539180678 ], [ 5.268288608132764, 52.277481188106321 ], [ 5.263792758728812, 52.275879218551097 ], [ 5.245654330582852, 52.257172350523547 ], [ 5.225293817056013, 52.226166489991499 ], [ 5.221883172370497, 52.214435940066551 ], [ 5.216302118248166, 52.206994533970544 ], [ 5.209325799246244, 52.196504218394921 ], [ 5.202039421881807, 52.187409165900249 ], [ 5.182350701923326, 52.179037583817433 ], [ 5.126798536823003, 52.180897935791052 ], [ 5.089052189207166, 52.176576441549514 ], [ 5.071273325303707, 52.171496764863775 ], [ 5.045028337188, 52.168110315538627 ], [ 5.039948662300901, 52.189275628767234 ], [ 5.034022373733535, 52.204514654327795 ], [ 5.041584100126101, 52.224822902854669 ], [ 5.058172234660901, 52.237380275978921 ], [ 5.053366326894434, 52.243529771781539 ], [ 5.050730827665575, 52.245751858061794 ], [ 5.048715447859593, 52.247663885979534 ], [ 5.046390007892512, 52.249472561109769 ], [ 5.042979364106372, 52.251384589027509 ], [ 5.040188836145887, 52.252314765014376 ], [ 5.038018425809696, 52.253761704938711 ], [ 5.036468133097856, 52.255932115274845 ], [ 5.03538292837942, 52.259652818322877 ], [ 5.03383263476826, 52.262701727802494 ], [ 5.030421990982063, 52.267145901262325 ], [ 5.035227898748531, 52.27184845624123 ], [ 5.065768670387797, 52.279238186393172 ], [ 5.025306023953817, 52.281563626360253 ], [ 5.009131299669718, 52.277171128844486 ], [ 5.004480422433517, 52.281563626360253 ], [ 4.999674512868467, 52.283940742271398 ], [ 4.993628370752674, 52.285439358139854 ], [ 4.986341994287613, 52.285491034983238 ], [ 4.961537306401567, 52.277067776056981 ], [ 4.942417026324676, 52.275000719407672 ], [ 4.933115269154314, 52.275465807401076 ], [ 4.928464390119473, 52.27376048415897 ], [ 4.925208774165583, 52.272003485872176 ], [ 4.911256137960379, 52.255622056912387 ], [ 4.871516961038935, 52.25221141222687 ], [ 4.849657829844944, 52.245596829330168 ], [ 4.83456831207792, 52.23598501199865 ], [ 4.814414504126034, 52.229628811520399 ], [ 4.767854037833558, 52.221205553493462 ], [ 4.736228062375176, 52.20828644516331 ], [ 4.725634393112728, 52.211490384273816 ], [ 4.722223748427211, 52.216244615196786 ], [ 4.717882927754886, 52.23097239775791 ], [ 4.715402459056236, 52.232471015425006 ], [ 4.71028649292731, 52.234589748917756 ], [ 4.669462111287373, 52.226476549253334 ], [ 4.648223096818469, 52.220223701562531 ], [ 4.605538364104234, 52.213195705717226 ], [ 4.580888705849077, 52.212833971410646 ], [ 4.574067417377421, 52.213609116867246 ], [ 4.569261508711634, 52.215056056791582 ], [ 4.559442986704482, 52.220895494231627 ], [ 4.548125847929555, 52.220378730294158 ], [ 4.546730583949284, 52.227768460446043 ], [ 4.559287957073536, 52.240894273451943 ], [ 4.564145541683388, 52.254381822563062 ], [ 4.565075717670197, 52.263735257476128 ], [ 4.566315952019579, 52.268076077249134 ], [ 4.567711215999793, 52.2705048691044 ], [ 4.609724155145614, 52.31344798423703 ], [ 4.587244907226648, 52.316755276135041 ], [ 4.566470980751149, 52.310089016394954 ], [ 4.548590935922959, 52.31251780914954 ], [ 4.542854852169683, 52.313913072230491 ], [ 4.499033236994308, 52.326057034204723 ], [ 4.508148634000065, 52.336371161000045 ] ] ], [ [ [ 4.892588738000086, 53.111029364000046 ], [ 4.892588738000086, 53.104803778000075 ], [ 4.913096550000091, 53.104803778000075 ], [ 4.906097852000073, 53.091701565000051 ], [ 4.893077019000089, 53.076117255000042 ], [ 4.865244988000086, 53.050197658000059 ], [ 4.81812584700009, 53.026760158000059 ], [ 4.795664910000085, 53.00031159100007 ], [ 4.761973504000082, 52.994330145000049 ], [ 4.726817254000082, 53.003078518000052 ], [ 4.707692905000044, 53.028469143000052 ], [ 4.713877800000091, 53.054632880000042 ], [ 4.733653191000087, 53.084214585000041 ], [ 4.758474155000044, 53.108465887000079 ], [ 4.805674675000091, 53.133002020000049 ], [ 4.829274936000047, 53.162990627000056 ], [ 4.854340040000068, 53.187730210000041 ], [ 4.885752800000091, 53.186712958000044 ], [ 4.889821811000047, 53.180853583000044 ], [ 4.892100457000083, 53.175726630000042 ], [ 4.891368035000085, 53.170965887000079 ], [ 4.885752800000091, 53.166205145000049 ], [ 4.899912957000083, 53.152329820000034 ], [ 4.910166863000086, 53.134588934000078 ], [ 4.90992272200009, 53.118841864000046 ], [ 4.892588738000086, 53.111029364000046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NL-FR", "NAME_1": "Friesland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.17977250358083, 53.008994521404261 ], [ 5.279470248000052, 53.062933661000045 ], [ 5.294200066000087, 53.073431708000044 ], [ 5.312754754000082, 53.082831122000073 ], [ 5.358897332000083, 53.089341539000031 ], [ 5.379242384000065, 53.097357489000046 ], [ 5.39975019600007, 53.122056382000039 ], [ 5.42709394600007, 53.190334377000056 ], [ 5.447438998000052, 53.220892645000049 ], [ 5.482595248000052, 53.24555084800005 ], [ 5.504242384000065, 53.257025458000044 ], [ 5.541026238000086, 53.266587632000039 ], [ 5.557871941000087, 53.278021552000041 ], [ 5.573496941000087, 53.29165273600006 ], [ 5.59156334700009, 53.302801825000074 ], [ 5.611827019000089, 53.307114976000037 ], [ 5.659678582000083, 53.31195709800005 ], [ 5.694590691000087, 53.330064195000034 ], [ 5.854746941000087, 53.368801174000055 ], [ 5.890798373000052, 53.384263414000031 ], [ 5.91374759200005, 53.38540273600006 ], [ 5.980804884000065, 53.406073309000078 ], [ 6.077321811000047, 53.408921617000033 ], [ 6.18602106971656, 53.410996341108216 ], [ 6.175261671588885, 53.398136298451391 ], [ 6.170300734191528, 53.386095689264607 ], [ 6.180067580254615, 53.364339911757497 ], [ 6.194381951665719, 53.360567531866081 ], [ 6.213295526167599, 53.357311916811511 ], [ 6.216861199584685, 53.356020006518065 ], [ 6.220736932263605, 53.353849596181874 ], [ 6.226473016016882, 53.348836981941133 ], [ 6.230658807058262, 53.346046453980648 ], [ 6.234069451743778, 53.344857897374027 ], [ 6.236859978804944, 53.344341132537238 ], [ 6.239960565127944, 53.344444485324686 ], [ 6.243526239444407, 53.345271308524048 ], [ 6.249158970410122, 53.347545070748367 ], [ 6.251949496572024, 53.348268541160223 ], [ 6.255205111626594, 53.348423569891793 ], [ 6.273653599034333, 53.344702866843818 ], [ 6.277219271552156, 53.341395575845127 ], [ 6.278924594794205, 53.33586619676754 ], [ 6.276599154827124, 53.323360501385991 ], [ 6.27613406683372, 53.313593655322904 ], [ 6.277839390075769, 53.312405096917644 ], [ 6.280474888405365, 53.311474920930834 ], [ 6.287141147246132, 53.309924628218994 ], [ 6.287141147246132, 53.308891100343999 ], [ 6.284350620184966, 53.306875718739377 ], [ 6.267607456019277, 53.29752228472563 ], [ 6.253964878176589, 53.288168849812564 ], [ 6.250244175128557, 53.283673001307932 ], [ 6.245231560887817, 53.27075389297778 ], [ 6.230348747796484, 53.255457668736369 ], [ 6.21794640520244, 53.240574856544356 ], [ 6.219961785907685, 53.23587230156545 ], [ 6.220891960995175, 53.231686510524014 ], [ 6.22290734170042, 53.229206040926044 ], [ 6.224612664043207, 53.226157132345747 ], [ 6.225697869660962, 53.223314928441141 ], [ 6.226007928023421, 53.220576077324097 ], [ 6.223372429693882, 53.21654531501423 ], [ 6.186268752001297, 53.186779689730884 ], [ 6.176036817944805, 53.174429023080904 ], [ 6.169060499842203, 53.152931627092869 ], [ 6.173711378877044, 53.131485907948274 ], [ 6.18301313604735, 53.124302884270662 ], [ 6.196242302740075, 53.11711985879441 ], [ 6.204923944084726, 53.115414537351 ], [ 6.247608676798961, 53.112934067752974 ], [ 6.264816928958112, 53.109213364704999 ], [ 6.30078372598814, 53.095002346081401 ], [ 6.309517043276912, 53.092056790288609 ], [ 6.307656691303237, 53.078414212445921 ], [ 6.310757276726918, 53.076553860472245 ], [ 6.326415236174171, 53.070921129506473 ], [ 6.354630567846414, 53.063634752142093 ], [ 6.356956007813494, 53.060740872293422 ], [ 6.359333122825319, 53.055159817271715 ], [ 6.358402947737829, 53.049682115037569 ], [ 6.363828973128591, 53.039708564298792 ], [ 6.367549676176623, 53.028494778311369 ], [ 6.421706577296675, 52.984569811247752 ], [ 6.433798862427523, 52.96932526295052 ], [ 6.432093540084793, 52.964881090390008 ], [ 6.429458041755197, 52.959351712211742 ], [ 6.40196617959549, 52.931911525996099 ], [ 6.395765007848809, 52.927829087742168 ], [ 6.347964308106327, 52.908398749302819 ], [ 6.314477979774949, 52.922196356776396 ], [ 6.292102084643489, 52.925710354249418 ], [ 6.265437045683086, 52.925658678305354 ], [ 6.254584994901563, 52.920491035332986 ], [ 6.247608676798961, 52.916201891504045 ], [ 6.214225702154408, 52.892947496329839 ], [ 6.129476352551592, 52.853415024983406 ], [ 6.087463413405771, 52.843338121457123 ], [ 6.068188103697992, 52.842097887107798 ], [ 6.051910028425084, 52.839307359147256 ], [ 6.049584587558684, 52.838118800742052 ], [ 6.048499382840248, 52.836981920079495 ], [ 6.047569206853382, 52.832641100306489 ], [ 6.046639031765892, 52.831039129851945 ], [ 6.032376336298853, 52.821065579113167 ], [ 5.993102248270134, 52.822822578299338 ], [ 5.988141309973457, 52.824269518223673 ], [ 5.978994582434041, 52.829230454721653 ], [ 5.967212354766332, 52.839772447140717 ], [ 5.961889683062395, 52.841271063908437 ], [ 5.959254184732799, 52.841581122270952 ], [ 5.956773716034149, 52.839720771196596 ], [ 5.953053012986175, 52.838170478484756 ], [ 5.932899204134969, 52.835224920893381 ], [ 5.927938266737613, 52.833364569819025 ], [ 5.924372593320527, 52.83093577706444 ], [ 5.9218921237225, 52.827576809222364 ], [ 5.918326450305415, 52.823701077442763 ], [ 5.91383060090152, 52.819618639188832 ], [ 5.908973016291668, 52.81667308249672 ], [ 5.879362419739891, 52.805924384502703 ], [ 5.871765984912258, 52.805045885359277 ], [ 5.866184929890608, 52.804839178884947 ], [ 5.837917922274301, 52.807681382789553 ], [ 5.834197218326949, 52.808766588407309 ], [ 5.822414991558617, 52.815019436098055 ], [ 5.785156284235143, 52.803702298222447 ], [ 5.77507937980954, 52.818998522463801 ], [ 5.750119663191867, 52.835069892161755 ], [ 5.740456169916285, 52.838738919265666 ], [ 5.719992302702622, 52.836775214504542 ], [ 5.717352093724116, 52.836468370318983 ], [ 5.703500351559967, 52.837853543905908 ], [ 5.680849384391593, 52.837853543905908 ], [ 5.656580490097554, 52.834617692352595 ], [ 5.632311596702834, 52.828145987447328 ], [ 5.599953072176504, 52.81196672518422 ], [ 5.557886989393012, 52.792551610468422 ], [ 5.371825470668909, 52.789315757116469 ], [ 5.370323085741802, 52.79033912085373 ], [ 5.260188560153892, 52.8653582915519 ], [ 5.187502351352407, 52.991347720920544 ], [ 5.187429153732467, 52.991532176368821 ], [ 5.1860063264308, 52.995117704118741 ], [ 5.182130593751879, 53.004884549282508 ], [ 5.180115213046633, 53.007985134706189 ], [ 5.17977250358083, 53.008994521404261 ] ] ], [ [ [ 4.878916863000086, 53.220892645000049 ], [ 4.92123457100007, 53.253729559000078 ], [ 4.986501498000052, 53.289984442000048 ], [ 5.05445397200009, 53.313788153000075 ], [ 5.10482832100007, 53.309637762000079 ], [ 5.10482832100007, 53.302801825000074 ], [ 5.078135613000086, 53.302801825000074 ], [ 5.065603061000047, 53.298488674000055 ], [ 5.03646894600007, 53.291815497000073 ], [ 4.957530144000089, 53.24555084800005 ], [ 4.935720248000052, 53.225978908000059 ], [ 4.910166863000086, 53.212469794000071 ], [ 4.878916863000086, 53.220892645000049 ] ] ], [ [ [ 5.42359459700009, 53.430365302000041 ], [ 5.437022332000083, 53.436468817000048 ], [ 5.58529707100007, 53.453599351000037 ], [ 5.562022332000083, 53.434312242000033 ], [ 5.533702019000089, 53.42837148600006 ], [ 5.475433790000068, 53.426947333000044 ], [ 5.477386915000068, 53.423529364000046 ], [ 5.479746941000087, 53.416205145000049 ], [ 5.481700066000087, 53.412665106000077 ], [ 5.468597852000073, 53.40851471600007 ], [ 5.427012566000087, 53.406439520000049 ], [ 5.38249759200005, 53.394680080000057 ], [ 5.346934441000087, 53.389227606000077 ], [ 5.20834394600007, 53.352687893000052 ], [ 5.179860873000052, 53.353094794000071 ], [ 5.16765384200005, 53.368231512000079 ], [ 5.178884311000047, 53.385443427000041 ], [ 5.232432488000086, 53.396714585000041 ], [ 5.250173373000052, 53.406439520000049 ], [ 5.272959832000083, 53.406073309000078 ], [ 5.407237175000091, 53.422552802000041 ], [ 5.42359459700009, 53.430365302000041 ] ] ], [ [ [ 5.674001498000052, 53.467922268000052 ], [ 5.91382897200009, 53.473863023000035 ], [ 5.954600457000083, 53.461086330000057 ], [ 5.855642123000052, 53.447414455000057 ], [ 5.752777540000068, 53.447414455000057 ], [ 5.727061394000089, 53.443345445000034 ], [ 5.678965691000087, 53.430121161000045 ], [ 5.653575066000087, 53.433742580000057 ], [ 5.63607832100007, 53.44867584800005 ], [ 5.64193769600007, 53.463364976000037 ], [ 5.658864780000044, 53.471869208000044 ], [ 5.674001498000052, 53.467922268000052 ] ] ], [ [ [ 6.211761915000068, 53.508856512000079 ], [ 6.310801629000082, 53.514146226000037 ], [ 6.338715040000068, 53.508856512000079 ], [ 6.338715040000068, 53.502020575000074 ], [ 6.325043165000068, 53.502020575000074 ], [ 6.153168165000068, 53.468817450000074 ], [ 6.133311394000089, 53.453599351000037 ], [ 6.127452019000089, 53.459906317000048 ], [ 6.127126498000052, 53.463080145000049 ], [ 6.133311394000089, 53.467922268000052 ], [ 6.12281334700009, 53.481634833000044 ], [ 6.147959832000083, 53.494859117000033 ], [ 6.185394727000073, 53.504868882000039 ], [ 6.211761915000068, 53.508856512000079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NL-FL", "NAME_1": "Flevoland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.740456169916285, 52.838738919265666 ], [ 5.750119663191867, 52.835069892161755 ], [ 5.77507937980954, 52.818998522463801 ], [ 5.785156284235143, 52.803702298222447 ], [ 5.858433465432086, 52.779414374273927 ], [ 5.904787225250232, 52.756470038361556 ], [ 5.916466099231059, 52.747064928403688 ], [ 5.923442417333661, 52.739881903826756 ], [ 5.93770511190138, 52.714457099215736 ], [ 5.945301547628333, 52.688773912186264 ], [ 5.939720492606625, 52.683399562739623 ], [ 5.935689731196135, 52.677560126198841 ], [ 5.928403354731017, 52.673374335157405 ], [ 5.926543002757342, 52.671669012814675 ], [ 5.929333529818507, 52.670067044158714 ], [ 5.937860142431589, 52.667586575460064 ], [ 5.978219435178801, 52.660351874039748 ], [ 5.997753127304975, 52.65384064393055 ], [ 6.019767287230536, 52.63761424370233 ], [ 5.987831251610942, 52.626762192920864 ], [ 5.939565463875056, 52.616685289394582 ], [ 5.930108677073804, 52.616323554188625 ], [ 5.91383060090152, 52.617977199687971 ], [ 5.908197869036428, 52.619992581292593 ], [ 5.895020379187144, 52.619475816455747 ], [ 5.844232866353707, 52.605317167153487 ], [ 5.843285950386303, 52.604654325436741 ], [ 5.832503424393508, 52.597106557421682 ], [ 5.832503424393508, 52.585245778469869 ], [ 5.846520708363983, 52.57769801045481 ], [ 5.866948142242961, 52.521791345194401 ], [ 5.867007507390554, 52.521628874572855 ], [ 5.865929255330855, 52.505455085583719 ], [ 5.85514672933806, 52.48065527472113 ], [ 5.837894687389905, 52.462324980713277 ], [ 5.815251382445354, 52.440759928727687 ], [ 5.795842834579162, 52.426742644757212 ], [ 5.771043024615892, 52.413803613745756 ], [ 5.733304183641167, 52.403021087752961 ], [ 5.689095826711025, 52.390082055842186 ], [ 5.654591743713979, 52.381456034868108 ], [ 5.627635428732049, 52.371751761834332 ], [ 5.600679112850742, 52.357734477863858 ], [ 5.579114060865209, 52.344795446852345 ], [ 5.562940271876016, 52.319995636889132 ], [ 5.552157745883278, 52.298430584903542 ], [ 5.532749198916406, 52.276865532018689 ], [ 5.497166862960341, 52.269317764003574 ], [ 5.426002191048269, 52.263926501007177 ], [ 5.408921681290565, 52.267722169742285 ], [ 5.406593644081397, 52.268239511943875 ], [ 5.366119229119136, 52.283151138414269 ], [ 5.367600324395426, 52.283315492216161 ], [ 5.282839527322324, 52.31849921896378 ], [ 5.248863075670386, 52.324970923868989 ], [ 5.227830034728299, 52.324970923868989 ], [ 5.190617730623785, 52.32335299854202 ], [ 5.159877133223119, 52.328206777220942 ], [ 5.104867639729775, 52.363801154199905 ], [ 5.103249714402807, 52.396159678726178 ], [ 5.159877133223119, 52.428518204151771 ], [ 5.193853583975681, 52.428518204151771 ], [ 5.167966764354674, 52.472202213161609 ], [ 5.119428975766596, 52.515886221272069 ], [ 5.095160083271196, 52.582221197450281 ], [ 5.261806486380237, 52.648556174527812 ], [ 5.277985748643346, 52.685768476833687 ], [ 5.308726346943331, 52.698711887543539 ], [ 5.358882060858434, 52.689004330185639 ], [ 5.370207545341941, 52.789315757116469 ], [ 5.370323085741802, 52.79033912085373 ], [ 5.371825470668909, 52.789315757116469 ], [ 5.557886989393012, 52.792551610468422 ], [ 5.599953072176504, 52.81196672518422 ], [ 5.632311596702834, 52.828145987447328 ], [ 5.656580490097554, 52.834617692352595 ], [ 5.680849384391593, 52.837853543905908 ], [ 5.703500351559967, 52.837853543905908 ], [ 5.717352093724116, 52.836468370318983 ], [ 5.719992302702622, 52.836775214504542 ], [ 5.740456169916285, 52.838738919265666 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NL-UT", "NAME_1": "Utrecht" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.408921681290565, 52.267722169742285 ], [ 5.408750149100115, 52.267161258984913 ], [ 5.402847834659838, 52.247860667535747 ], [ 5.39923668792278, 52.230765693082219 ], [ 5.3969112479557, 52.219861966356632 ], [ 5.402492302977407, 52.21402252891653 ], [ 5.438665805582446, 52.195935776714691 ], [ 5.4366504248772, 52.18611725470754 ], [ 5.433239780191684, 52.181983141408807 ], [ 5.426728550082487, 52.178727525454917 ], [ 5.424868198108868, 52.177383938318087 ], [ 5.424093051752948, 52.175420234456226 ], [ 5.430139193868683, 52.168598945085193 ], [ 5.453858677036294, 52.163793037318783 ], [ 5.474529249825025, 52.160899156570792 ], [ 5.481505567927627, 52.157540187829397 ], [ 5.490342238003848, 52.149426988164919 ], [ 5.494373000313715, 52.147049872253774 ], [ 5.502434523134696, 52.143897609986709 ], [ 5.510185987593218, 52.138523261439332 ], [ 5.512821485922814, 52.136249498315692 ], [ 5.512666457191244, 52.132735500842671 ], [ 5.507705518894568, 52.126741035570319 ], [ 5.507860549424777, 52.120023098087472 ], [ 5.508790723613004, 52.11650910151377 ], [ 5.508790723613004, 52.114597072696711 ], [ 5.508480666149808, 52.113460191134891 ], [ 5.497628615368285, 52.113976955971737 ], [ 5.489877150010443, 52.103848374702693 ], [ 5.483986036626277, 52.093099676708675 ], [ 5.481040479934165, 52.089792384810664 ], [ 5.476234572167755, 52.086330064181084 ], [ 5.468638136440859, 52.082299302770593 ], [ 5.470188429152699, 52.080128893333722 ], [ 5.472203809857945, 52.078371894147551 ], [ 5.500109084066992, 52.069793606489725 ], [ 5.509255811606408, 52.07180898719497 ], [ 5.51969445213723, 52.076873277379832 ], [ 5.523105095923427, 52.077648423735752 ], [ 5.527135858233237, 52.077855130210082 ], [ 5.531166618744464, 52.079508774810108 ], [ 5.535042352322705, 52.082299302770593 ], [ 5.539228143364085, 52.087156887380445 ], [ 5.540623407344356, 52.09108429600343 ], [ 5.541243524069387, 52.095063382369176 ], [ 5.536902703397004, 52.102453110722479 ], [ 5.553335809200235, 52.104830227532943 ], [ 5.561862420014677, 52.084573065894233 ], [ 5.562792596001486, 52.079147040503472 ], [ 5.564807976706732, 52.073307603962746 ], [ 5.563412712726517, 52.049381415220125 ], [ 5.572249382802738, 52.019047350055132 ], [ 5.584858432770432, 52.005094712950608 ], [ 5.605477328715722, 51.991348782320415 ], [ 5.612298618086754, 51.982357083512568 ], [ 5.616484409128191, 51.977809557265232 ], [ 5.61834476110181, 51.973830470899486 ], [ 5.619740024182761, 51.968662827927119 ], [ 5.619274937088676, 51.952953193435121 ], [ 5.61570926277227, 51.948250637556839 ], [ 5.58211958165333, 51.953314927741701 ], [ 5.505070020564972, 51.981995348306668 ], [ 5.461971876700716, 51.98762807927244 ], [ 5.449466180419904, 51.985509344880313 ], [ 5.429674105875279, 51.976724352546796 ], [ 5.420372348704916, 51.973985501429695 ], [ 5.409055209929988, 51.974295558892891 ], [ 5.382803582119607, 51.980186673176377 ], [ 5.360634392563156, 51.977034410009992 ], [ 5.331230503385029, 51.963030096961404 ], [ 5.310508253752914, 51.959722805063393 ], [ 5.25433597192756, 51.979049790715237 ], [ 5.239453158836227, 51.977086086853376 ], [ 5.221418084377092, 51.968456122352165 ], [ 5.197388542846966, 51.965613919346879 ], [ 5.182557406599017, 51.966854152796884 ], [ 5.172945591066139, 51.967784328783694 ], [ 5.154083693407699, 51.973985501429695 ], [ 5.144678581651192, 51.981220201051428 ], [ 5.130880975076934, 51.996051337299377 ], [ 5.118685337158581, 52.001942451582863 ], [ 5.104887729684947, 52.003802801757843 ], [ 5.095585971615264, 52.000908921909172 ], [ 5.086749302438363, 51.996671454024352 ], [ 5.063908319313498, 51.99279572224475 ], [ 5.055019972393779, 51.98855825525925 ], [ 5.040498895407666, 51.977086086853376 ], [ 5.030421990982063, 51.974347235736332 ], [ 4.988977491717833, 51.980186673176377 ], [ 4.986910435068523, 51.978636380464536 ], [ 4.95481936981804, 51.967164212058719 ], [ 4.926759066877423, 51.949284166331211 ], [ 4.91668216335114, 51.946700343945679 ], [ 4.893996208957844, 51.94752716714504 ], [ 4.887329950117078, 51.941170965767412 ], [ 4.865315789292254, 51.962048245030473 ], [ 4.833328077728595, 51.987318020010605 ], [ 4.824336378920748, 51.996826484554617 ], [ 4.827591993975318, 51.999823717190793 ], [ 4.834103224084515, 52.001115628383502 ], [ 4.841389601448952, 52.003234360976933 ], [ 4.854011384018122, 52.008100545803529 ], [ 4.84956666826713, 52.020164774784519 ], [ 4.80384959068607, 52.01635501906884 ], [ 4.799404874935021, 52.02270461312736 ], [ 4.831152845227621, 52.052547704213168 ], [ 4.870520327850841, 52.064611933194158 ], [ 4.87771813278556, 52.071395576044949 ], [ 4.832528591221489, 52.071596486388728 ], [ 4.81982940310445, 52.108847437958843 ], [ 4.804647658062947, 52.11227163452827 ], [ 4.79085004969005, 52.119713039724957 ], [ 4.796896192705105, 52.123898830766393 ], [ 4.820770704604342, 52.139505113370262 ], [ 4.825576613270073, 52.140486966200513 ], [ 4.831002637761515, 52.141210435712992 ], [ 4.834258253715404, 52.139711818945273 ], [ 4.837668898400921, 52.138729967014342 ], [ 4.842629835798277, 52.138006497501806 ], [ 4.859114618444892, 52.133148911992691 ], [ 4.863300408586952, 52.133872382404491 ], [ 4.865470818923143, 52.1355777038479 ], [ 4.865625847654712, 52.138006497501806 ], [ 4.864075554942872, 52.141365465343938 ], [ 4.857719353565301, 52.15237254485703 ], [ 4.853688592154811, 52.163431301213564 ], [ 4.862680290962658, 52.167978828360219 ], [ 4.81394941613263, 52.193713691333755 ], [ 4.791935256207069, 52.199088039881133 ], [ 4.785837437247892, 52.202808742929108 ], [ 4.780876498951272, 52.207149562702114 ], [ 4.767854037833558, 52.221205553493462 ], [ 4.814414504126034, 52.229628811520399 ], [ 4.83456831207792, 52.23598501199865 ], [ 4.849657829844944, 52.245596829330168 ], [ 4.871516961038935, 52.25221141222687 ], [ 4.911256137960379, 52.255622056912387 ], [ 4.925208774165583, 52.272003485872176 ], [ 4.928464390119473, 52.27376048415897 ], [ 4.933115269154314, 52.275465807401076 ], [ 4.942417026324676, 52.275000719407672 ], [ 4.961537306401567, 52.277067776056981 ], [ 4.986341994287613, 52.285491034983238 ], [ 4.993628370752674, 52.285439358139854 ], [ 4.999674512868467, 52.283940742271398 ], [ 5.004480422433517, 52.281563626360253 ], [ 5.009131299669718, 52.277171128844486 ], [ 5.025306023953817, 52.281563626360253 ], [ 5.065768670387797, 52.279238186393172 ], [ 5.035227898748531, 52.27184845624123 ], [ 5.030421990982063, 52.267145901262325 ], [ 5.03383263476826, 52.262701727802494 ], [ 5.03538292837942, 52.259652818322877 ], [ 5.036468133097856, 52.255932115274845 ], [ 5.038018425809696, 52.253761704938711 ], [ 5.040188836145887, 52.252314765014376 ], [ 5.042979364106372, 52.251384589027509 ], [ 5.046390007892512, 52.249472561109769 ], [ 5.048715447859593, 52.247663885979534 ], [ 5.050730827665575, 52.245751858061794 ], [ 5.053366326894434, 52.243529771781539 ], [ 5.058172234660901, 52.237380275978921 ], [ 5.041584100126101, 52.224822902854669 ], [ 5.034022373733535, 52.204514654327795 ], [ 5.039948662300901, 52.189275628767234 ], [ 5.045028337188, 52.168110315538627 ], [ 5.071273325303707, 52.171496764863775 ], [ 5.089052189207166, 52.176576441549514 ], [ 5.126798536823003, 52.180897935791052 ], [ 5.182350701923326, 52.179037583817433 ], [ 5.202039421881807, 52.187409165900249 ], [ 5.209325799246244, 52.196504218394921 ], [ 5.216302118248166, 52.206994533970544 ], [ 5.221883172370497, 52.214435940066551 ], [ 5.225293817056013, 52.226166489991499 ], [ 5.245654330582852, 52.257172350523547 ], [ 5.263792758728812, 52.275879218551097 ], [ 5.268288608132764, 52.277481188106321 ], [ 5.276195103121495, 52.279341539180678 ], [ 5.33219305766346, 52.279386409055519 ], [ 5.366119229119136, 52.283151138414269 ], [ 5.406593644081397, 52.268239511943875 ], [ 5.408921681290565, 52.267722169742285 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/norway.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/norway.geojson new file mode 100644 index 000000000000..666530e0c31b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/norway.geojson @@ -0,0 +1,26 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "NO-19", "NAME_1": "Troms" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.62316451, 69.036355693000118 ], [ 20.102266073000095, 69.022144674000046 ], [ 20.341114543000089, 68.910058493000108 ], [ 20.356514120000071, 68.804586894000053 ], [ 20.236624796000086, 68.659066061000019 ], [ 19.96222294100005, 68.541192119000087 ], [ 20.245926554000107, 68.477371724000037 ], [ 19.971214640000085, 68.351281230000083 ], [ 19.038144979000066, 68.505638733000026 ], [ 18.644577270000127, 68.501246236000028 ], [ 18.436217895000112, 68.573851624000056 ], [ 18.189291147968106, 68.538424682752861 ], [ 18.036656527676598, 68.619610296977612 ], [ 16.884633823392221, 68.566538601475258 ], [ 16.669246454160543, 68.507343247692688 ], [ 16.587959426086627, 68.516851712236701 ], [ 16.632090691000087, 68.546291408000059 ], [ 16.562754754000082, 68.591538804000038 ], [ 16.629242384000065, 68.641669012000079 ], [ 16.992930535000085, 68.707953192000048 ], [ 17.090017123000052, 68.643377997000073 ], [ 17.16773522200009, 68.634019273000035 ], [ 17.100596550000091, 68.690619208000044 ], [ 17.250173373000052, 68.723944403000075 ], [ 17.460215691000087, 68.666693427000041 ], [ 17.67937259200005, 68.66046784100007 ], [ 17.494476759000065, 68.690334377000056 ], [ 17.403330925000091, 68.74445221600007 ], [ 17.234385613000086, 68.756048895000049 ], [ 17.460948113000086, 68.815375067000048 ], [ 17.78296959700009, 68.748602606000077 ], [ 17.78288821700005, 68.778143622000073 ], [ 17.739268425000091, 68.79132721600007 ], [ 17.467621290000068, 68.831203518000052 ], [ 17.707367384000065, 68.893255927000041 ], [ 17.85132897200009, 68.872748114000046 ], [ 17.82593834700009, 68.893744208000044 ], [ 17.707367384000065, 68.913763739000046 ], [ 17.720957879000082, 68.93423086100006 ], [ 17.426117384000065, 68.899481512000079 ], [ 17.533702019000089, 68.960842190000051 ], [ 17.488291863000086, 68.995672919000071 ], [ 17.67937259200005, 69.091864325000074 ], [ 17.631602410000085, 69.105536200000074 ], [ 17.658864780000044, 69.116888739000046 ], [ 18.152354363000086, 69.153957424000055 ], [ 18.071055535000085, 69.177557684000078 ], [ 18.10523522200009, 69.229071356000077 ], [ 17.988536004000082, 69.235256252000056 ], [ 18.003103061000047, 69.285711981000077 ], [ 18.138682488000086, 69.352525132000039 ], [ 18.180349155000044, 69.407782294000071 ], [ 18.155039910000085, 69.457586981000077 ], [ 18.26335696700005, 69.488104559000078 ], [ 18.382334832000083, 69.431341864000046 ], [ 18.364756707000083, 69.391506252000056 ], [ 18.502940300000091, 69.370062567000048 ], [ 18.502452019000089, 69.235256252000056 ], [ 18.564789259000065, 69.364650783000059 ], [ 18.602061394000089, 69.30023834800005 ], [ 18.691661004000082, 69.263495184000078 ], [ 18.703135613000086, 69.287665106000077 ], [ 18.673675977000073, 69.30414459800005 ], [ 18.735036655000044, 69.324164130000042 ], [ 19.012950066000087, 69.287054755000042 ], [ 18.954600457000083, 69.328314520000049 ], [ 18.664805535000085, 69.369330145000049 ], [ 18.57781009200005, 69.431341864000046 ], [ 18.454600457000083, 69.454331773000035 ], [ 18.488780144000089, 69.482245184000078 ], [ 18.47429446700005, 69.516424872000073 ], [ 18.852712436000047, 69.552313544000071 ], [ 18.844493035000085, 69.502752997000073 ], [ 19.00953209700009, 69.428290106000077 ], [ 19.014414910000085, 69.397040106000077 ], [ 19.379405144000089, 69.321844794000071 ], [ 19.350596550000091, 69.29047272300005 ], [ 19.215342644000089, 69.28156159100007 ], [ 19.17750084700009, 69.253485419000071 ], [ 19.250987175000091, 69.274237372000073 ], [ 19.272308790000068, 69.252386786000045 ], [ 19.249034050000091, 69.242661851000037 ], [ 19.300791863000086, 69.224025783000059 ], [ 19.509287957000083, 69.229071356000077 ], [ 19.44857832100007, 69.260321356000077 ], [ 19.449473504000082, 69.32485586100006 ], [ 19.350108269000089, 69.379095770000049 ], [ 19.119395379000082, 69.386053778000075 ], [ 19.00131269600007, 69.464341539000031 ], [ 19.005707227000073, 69.50617096600007 ], [ 19.069102410000085, 69.533270575000074 ], [ 19.194834832000083, 69.550482489000046 ], [ 19.262705925000091, 69.523260809000078 ], [ 19.229258660000085, 69.567938544000071 ], [ 18.994476759000065, 69.539618231000077 ], [ 18.944346550000091, 69.615301825000074 ], [ 19.084971550000091, 69.693426825000074 ], [ 19.098317905000044, 69.736151434000078 ], [ 19.249034050000091, 69.777085679000038 ], [ 19.784190300000091, 69.804388739000046 ], [ 19.674327019000089, 69.681545315000051 ], [ 19.727386915000068, 69.642157294000071 ], [ 19.629893425000091, 69.520453192000048 ], [ 19.65015709700009, 69.45962148600006 ], [ 19.530284050000091, 69.400336005000042 ], [ 19.688487175000091, 69.444728908000059 ], [ 19.743174675000091, 69.612616278000075 ], [ 20.06023196700005, 69.579087632000039 ], [ 20.112559441000087, 69.585353908000059 ], [ 19.857758009000065, 69.62726471600007 ], [ 19.824473504000082, 69.711900132000039 ], [ 20.006114129000082, 69.842840887000079 ], [ 19.96851647200009, 69.763413804000038 ], [ 20.007009311000047, 69.768500067000048 ], [ 20.16773522200009, 69.942206122000073 ], [ 20.170664910000085, 69.880438544000071 ], [ 20.202403191000087, 69.858954169000071 ], [ 20.201914910000085, 69.924221096000053 ], [ 20.270355665000068, 69.967840887000079 ], [ 20.417246941000087, 69.890366929000038 ], [ 20.318614129000082, 69.681545315000051 ], [ 20.383067254000082, 69.634670315000051 ], [ 20.376475457000083, 69.589178778000075 ], [ 20.274180535000085, 69.560614325000074 ], [ 20.30437259200005, 69.544338283000059 ], [ 20.269541863000086, 69.517279364000046 ], [ 20.278493686000047, 69.485174872000073 ], [ 20.215586785000085, 69.468654690000051 ], [ 20.168793165000068, 69.393703518000052 ], [ 19.98218834700009, 69.338934637000079 ], [ 20.002696160000085, 69.325262762000079 ], [ 19.916840040000068, 69.269273179000038 ], [ 19.948008660000085, 69.26312897300005 ], [ 20.070485873000052, 69.336004950000074 ], [ 20.27702884200005, 69.392279364000046 ], [ 20.482432488000086, 69.577866929000038 ], [ 20.853037957000083, 69.495917059000078 ], [ 20.492360873000052, 69.62726471600007 ], [ 20.541758660000085, 69.70538971600007 ], [ 20.482432488000086, 69.763413804000038 ], [ 20.785166863000086, 69.801743882000039 ], [ 20.824961785000085, 69.841538804000038 ], [ 20.791514519000089, 69.87954336100006 ], [ 21.092539910000085, 69.948391018000052 ], [ 20.89389082100007, 69.852850653000075 ], [ 20.955088738000086, 69.846096096000053 ], [ 20.94109134200005, 69.81867096600007 ], [ 21.020518425000091, 69.788153387000079 ], [ 21.050954623000052, 69.797593492000033 ], [ 20.996348504000082, 69.824896552000041 ], [ 21.170420769000089, 69.87563711100006 ], [ 21.180511915000068, 69.854559637000079 ], [ 21.12671959700009, 69.811224677000041 ], [ 21.179209832000083, 69.819484768000052 ], [ 21.222911004000082, 69.845404364000046 ], [ 21.209239129000082, 69.907456773000035 ], [ 21.32593834700009, 69.907456773000035 ], [ 21.209239129000082, 69.934759833000044 ], [ 21.289886915000068, 70.021063544000071 ], [ 21.558116082000083, 69.989406643000052 ], [ 21.606455925000091, 69.955267645000049 ], [ 21.578623894000089, 69.927923895000049 ], [ 21.608897332000083, 69.911932684000078 ], [ 21.757660352000073, 69.882879950000074 ], [ 22.051524285000085, 69.749823309000078 ], [ 21.977061394000089, 69.749823309000078 ], [ 22.000173373000052, 69.740383205000057 ], [ 22.098155144000089, 69.749823309000078 ], [ 22.056162957000083, 69.79360586100006 ], [ 21.915537957000083, 69.838568427000041 ], [ 22.018077019000089, 69.845404364000046 ], [ 21.930023634000065, 69.879339911000045 ], [ 21.913584832000083, 69.945257880000042 ], [ 21.928558790000068, 69.983140367000033 ], [ 22.024099155000044, 69.985500393000052 ], [ 22.052256707000083, 69.938421942000048 ], [ 22.051524285000085, 70.016750393000052 ], [ 22.113617384000065, 70.030340887000079 ], [ 21.865896030000044, 70.011908270000049 ], [ 21.798350457000083, 70.037176825000074 ], [ 22.005137566000087, 70.061346747000073 ], [ 22.09937584700009, 70.120347398000035 ], [ 21.719493035000085, 70.060614325000074 ], [ 21.613291863000086, 70.098578192000048 ], [ 21.482269727000073, 70.098578192000048 ], [ 21.436534050000091, 70.149603583000044 ], [ 21.496592644000089, 70.174953518000052 ], [ 21.31226647200009, 70.167547919000071 ], [ 21.209239129000082, 70.208482164000031 ], [ 21.233878920175982, 70.224285600200233 ], [ 21.617109816065124, 70.187240709391176 ], [ 21.874510125341999, 70.102439683844295 ], [ 22.112221713761073, 70.158379422572239 ], [ 22.321407912145389, 69.951596178520788 ], [ 22.557259148590845, 69.91733470293417 ], [ 22.5386556333508, 69.867208564123928 ], [ 22.58428592275709, 69.840698553895095 ], [ 22.526408318589006, 69.800029201886105 ], [ 22.628675977814112, 69.705874742325477 ], [ 22.933411899739383, 69.639935615336356 ], [ 22.830989210883331, 69.585468654954411 ], [ 22.774816929058034, 69.515240384136405 ], [ 22.335515577981539, 69.468266506693908 ], [ 22.35866662036824, 69.393852443935089 ], [ 22.591107212128122, 69.230554918274834 ], [ 22.581185337333409, 69.151464138059509 ], [ 22.524082878621925, 69.109916286907094 ], [ 21.946100152000042, 69.065702532 ], [ 21.662894328000107, 69.263215231000046 ], [ 21.313561646000096, 69.29143056300002 ], [ 21.098380981000048, 69.239495749000113 ], [ 21.03357873500002, 69.181204733000087 ], [ 21.156361938000089, 69.087618714000044 ], [ 21.099001099000105, 69.043797099000031 ], [ 20.744397421000144, 69.104361878000091 ], [ 20.62316451, 69.036355693000118 ] ] ], [ [ [ 17.052907748000052, 68.817531643000052 ], [ 17.145681186000047, 68.770331122000073 ], [ 16.816661004000082, 68.735581773000035 ], [ 17.000987175000091, 68.858587958000044 ], [ 17.052907748000052, 68.817531643000052 ] ] ], [ [ [ 17.20639082100007, 68.893255927000041 ], [ 17.224945509000065, 68.921128648000035 ], [ 17.31967207100007, 68.918443101000037 ], [ 17.440440300000091, 68.865912177000041 ], [ 17.223643425000091, 68.793036200000074 ], [ 17.083506707000083, 68.913763739000046 ], [ 17.282237175000091, 68.858465887000079 ], [ 17.20639082100007, 68.893255927000041 ] ] ], [ [ [ 15.907851124738627, 68.95750048316809 ], [ 15.924082879000082, 68.886419989000046 ], [ 15.87077884200005, 68.790228583000044 ], [ 15.76148522200009, 68.735581773000035 ], [ 15.955577019000089, 68.79165273600006 ], [ 15.983653191000087, 68.74555084800005 ], [ 15.933116082000083, 68.684149481000077 ], [ 15.774424675000091, 68.632554429000038 ], [ 15.777842644000089, 68.562160549000055 ], [ 15.740407748000052, 68.530096747000073 ], [ 15.802907748000052, 68.551336981000077 ], [ 15.816742384000065, 68.610825914000031 ], [ 15.858571811000047, 68.634182033000059 ], [ 16.005137566000087, 68.677557684000078 ], [ 16.083018425000091, 68.638739325000074 ], [ 16.033213738000086, 68.711371161000045 ], [ 16.213226759000065, 68.735581773000035 ], [ 16.094574415000068, 68.801662502000056 ], [ 16.097178582000083, 68.831203518000052 ], [ 16.207041863000086, 68.858465887000079 ], [ 16.284027540000068, 68.840318101000037 ], [ 16.254649285000085, 68.903225002000056 ], [ 16.43881269600007, 68.849554755000042 ], [ 16.455577019000089, 68.815334377000056 ], [ 16.555918816000087, 68.824937242000033 ], [ 16.494476759000065, 68.790228583000044 ], [ 16.555918816000087, 68.770331122000073 ], [ 16.525726759000065, 68.752630927000041 ], [ 16.528575066000087, 68.721991278000075 ], [ 16.576996290000068, 68.70766836100006 ], [ 16.53484134200005, 68.680975653000075 ], [ 16.558929884000065, 68.655218817000048 ], [ 16.491058790000068, 68.60578034100007 ], [ 16.496104363000086, 68.579331773000035 ], [ 16.245809767206993, 68.628627835106499 ], [ 15.934045851235055, 68.596433417068511 ], [ 15.643262567313627, 68.460886135986357 ], [ 15.675250277977909, 68.495147609774335 ], [ 15.640627068984031, 68.536643784982687 ], [ 15.679591098650292, 68.617259020387451 ], [ 15.782013788405607, 68.687616482414683 ], [ 15.721759067427001, 68.751359361545269 ], [ 15.847022739407862, 68.835695299098745 ], [ 15.885314976405027, 68.886751613895854 ], [ 15.874152866361669, 68.935069078475181 ], [ 15.907851124738627, 68.95750048316809 ] ] ], [ [ [ 16.56617272200009, 68.968329169000071 ], [ 16.599457227000073, 68.947170315000051 ], [ 16.587168816000087, 68.897447007000039 ], [ 16.47624759200005, 68.885809637000079 ], [ 16.261729363000086, 68.968329169000071 ], [ 16.30632571700005, 68.995306708000044 ], [ 16.56617272200009, 68.968329169000071 ] ] ], [ [ [ 18.070811394000089, 69.437933661000045 ], [ 18.090993686000047, 69.358343817000048 ], [ 17.923106316000087, 69.33234284100007 ], [ 17.926442905000044, 69.283677476000037 ], [ 17.967458530000044, 69.26312897300005 ], [ 17.87867272200009, 69.249497789000031 ], [ 18.008962436000047, 69.201117255000042 ], [ 17.988454623000052, 69.187445380000042 ], [ 17.488291863000086, 69.153957424000055 ], [ 17.529795769000089, 69.201117255000042 ], [ 17.472178582000083, 69.200140692000048 ], [ 17.188324415000068, 69.083482164000031 ], [ 17.158702019000089, 69.050279039000031 ], [ 17.213877800000091, 69.044094143000052 ], [ 17.129405144000089, 69.011542059000078 ], [ 17.042002800000091, 69.016791083000044 ], [ 17.13803144600007, 69.072007554000038 ], [ 17.109873894000089, 69.084702867000033 ], [ 16.823252800000091, 69.054429429000038 ], [ 16.77312259200005, 69.08820221600007 ], [ 16.816661004000082, 69.119208075000074 ], [ 17.05600019600007, 69.132879950000074 ], [ 17.05632571700005, 69.160142320000034 ], [ 17.172373894000089, 69.201117255000042 ], [ 16.898610873000052, 69.194891669000071 ], [ 16.919118686000047, 69.215399481000077 ], [ 16.87867272200009, 69.222154039000031 ], [ 17.086761915000068, 69.228949286000045 ], [ 17.145681186000047, 69.256333726000037 ], [ 17.108897332000083, 69.251776434000078 ], [ 17.088877800000091, 69.289536851000037 ], [ 17.04037519600007, 69.268255927000041 ], [ 16.981130405000044, 69.27680084800005 ], [ 17.007823113000086, 69.297919012000079 ], [ 16.90601647200009, 69.297919012000079 ], [ 17.131846550000091, 69.310980536000045 ], [ 17.042002800000091, 69.345119533000059 ], [ 17.110850457000083, 69.352525132000039 ], [ 17.084646030000044, 69.361761786000045 ], [ 16.87867272200009, 69.359361070000034 ], [ 16.926524285000085, 69.393540757000039 ], [ 17.276052280000044, 69.393540757000039 ], [ 17.399424675000091, 69.366197007000039 ], [ 17.282237175000091, 69.414007880000042 ], [ 17.49577884200005, 69.428290106000077 ], [ 17.242930535000085, 69.454738674000055 ], [ 17.186534050000091, 69.502752997000073 ], [ 17.316254102000073, 69.461818752000056 ], [ 17.303233269000089, 69.482245184000078 ], [ 17.392100457000083, 69.482245184000078 ], [ 17.303233269000089, 69.523260809000078 ], [ 17.343272332000083, 69.537543036000045 ], [ 17.645274285000085, 69.461818752000056 ], [ 17.474782748000052, 69.552964585000041 ], [ 17.467621290000068, 69.599554755000042 ], [ 17.65788821700005, 69.508490302000041 ], [ 17.693614129000082, 69.52016836100006 ], [ 17.658946160000085, 69.599554755000042 ], [ 17.753103061000047, 69.540594794000071 ], [ 17.85914147200009, 69.586737372000073 ], [ 17.892832879000082, 69.536851304000038 ], [ 17.830821160000085, 69.448146877000056 ], [ 17.944102410000085, 69.523260809000078 ], [ 18.05054772200009, 69.495917059000078 ], [ 17.982269727000073, 69.482245184000078 ], [ 17.984385613000086, 69.449611721000053 ], [ 17.940684441000087, 69.428290106000077 ], [ 18.002289259000065, 69.409979559000078 ], [ 18.024668816000087, 69.44086334800005 ], [ 18.070811394000089, 69.437933661000045 ] ] ], [ [ [ 18.999034050000091, 69.828599351000037 ], [ 19.057383660000085, 69.763413804000038 ], [ 18.794118686000047, 69.675604559000078 ], [ 18.76929772200009, 69.646714585000041 ], [ 18.836436394000089, 69.604315497000073 ], [ 18.76929772200009, 69.571682033000059 ], [ 18.194021030000044, 69.53070709800005 ], [ 17.995371941000087, 69.59210846600007 ], [ 18.029470248000052, 69.63312409100007 ], [ 18.236827019000089, 69.629299221000053 ], [ 18.290212436000047, 69.59210846600007 ], [ 18.40007571700005, 69.640570380000042 ], [ 18.291026238000086, 69.63898346600007 ], [ 18.186534050000091, 69.708807684000078 ], [ 18.214366082000083, 69.714178778000075 ], [ 18.632823113000086, 69.701971747000073 ], [ 18.351817254000082, 69.72992584800005 ], [ 18.326914910000085, 69.765448309000078 ], [ 18.382334832000083, 69.797593492000033 ], [ 18.502452019000089, 69.749823309000078 ], [ 18.556895379000082, 69.796372789000031 ], [ 18.653168165000068, 69.804388739000046 ], [ 18.663259311000047, 69.712958075000074 ], [ 18.762461785000085, 69.687730210000041 ], [ 18.736827019000089, 69.706000067000048 ], [ 18.789805535000085, 69.783880927000041 ], [ 18.674082879000082, 69.847154039000031 ], [ 18.678884311000047, 69.886053778000075 ], [ 18.82203209700009, 69.886053778000075 ], [ 18.858164910000085, 69.86587148600006 ], [ 18.83765709700009, 69.845404364000046 ], [ 18.999034050000091, 69.828599351000037 ] ] ], [ [ [ 21.667979363000086, 69.948391018000052 ], [ 21.701996290000068, 69.954779364000046 ], [ 21.736175977000073, 69.948391018000052 ], [ 21.695811394000089, 69.927923895000049 ], [ 21.667979363000086, 69.948391018000052 ] ] ], [ [ [ 19.90015709700009, 70.016750393000052 ], [ 19.947927280000044, 70.02680084800005 ], [ 19.99586022200009, 70.016750393000052 ], [ 19.949961785000085, 70.009711005000042 ], [ 19.90015709700009, 70.016750393000052 ] ] ], [ [ [ 20.958832227000073, 70.003078518000052 ], [ 21.09937584700009, 70.010484117000033 ], [ 20.89193769600007, 69.937974351000037 ], [ 20.805186394000089, 69.948391018000052 ], [ 20.760508660000085, 69.999660549000055 ], [ 20.859873894000089, 70.044012762000079 ], [ 20.958832227000073, 70.003078518000052 ] ] ], [ [ [ 21.041026238000086, 70.061346747000073 ], [ 21.04664147200009, 70.039129950000074 ], [ 20.955332879000082, 70.024115302000041 ], [ 20.99187259200005, 70.051459052000041 ], [ 21.041026238000086, 70.061346747000073 ] ] ], [ [ [ 19.619151238000086, 70.016750393000052 ], [ 19.669444207000083, 70.017320054000038 ], [ 19.683116082000083, 69.98578522300005 ], [ 19.540212436000047, 69.951605536000045 ], [ 19.37476647200009, 69.823309637000079 ], [ 19.121592644000089, 69.787827867000033 ], [ 18.728851759000065, 69.947821356000077 ], [ 18.883636915000068, 69.945379950000074 ], [ 18.933767123000052, 69.969549872000073 ], [ 18.844737175000091, 69.982123114000046 ], [ 18.844899936000047, 70.015041408000059 ], [ 19.030039910000085, 70.037176825000074 ], [ 19.07390384200005, 70.01626211100006 ], [ 19.119395379000082, 70.030340887000079 ], [ 19.06421959700009, 70.078802802000041 ], [ 19.208181186000047, 70.098578192000048 ], [ 19.234873894000089, 70.065130927000041 ], [ 19.324880405000044, 70.078802802000041 ], [ 19.29232832100007, 70.031195380000042 ], [ 19.392588738000086, 69.991888739000046 ], [ 19.535655144000089, 70.057318427000041 ], [ 19.574961785000085, 70.047756252000056 ], [ 19.582286004000082, 69.993231512000079 ], [ 19.619151238000086, 70.016750393000052 ] ] ], [ [ [ 20.791514519000089, 70.09243398600006 ], [ 20.771006707000083, 70.057603257000039 ], [ 20.688487175000091, 70.071356512000079 ], [ 20.602549675000091, 70.044012762000079 ], [ 20.592295769000089, 70.106024481000077 ], [ 20.506683790000068, 70.058335679000038 ], [ 20.389903191000087, 70.102687893000052 ], [ 20.437754754000082, 70.186672268000052 ], [ 20.561371290000068, 70.233221747000073 ], [ 20.733897332000083, 70.236721096000053 ], [ 20.824392123000052, 70.209865627000056 ], [ 20.771006707000083, 70.11554596600007 ], [ 20.791514519000089, 70.09243398600006 ] ] ], [ [ [ 19.98218834700009, 70.147040106000077 ], [ 20.15406334700009, 70.112860419000071 ], [ 19.97820071700005, 70.060126044000071 ], [ 19.776133660000085, 70.067328192000048 ], [ 19.692149285000085, 70.188625393000052 ], [ 19.537119988000086, 70.250067450000074 ], [ 19.677744988000086, 70.290432033000059 ], [ 19.815603061000047, 70.169745184000078 ], [ 19.891368035000085, 70.213853257000039 ], [ 19.98218834700009, 70.147040106000077 ] ] ], [ [ [ 20.70289147200009, 69.888820705000057 ], [ 20.70671634200005, 69.817287502000056 ], [ 20.606211785000085, 69.793768622000073 ], [ 20.52670332100007, 69.821112372000073 ], [ 20.562754754000082, 69.895982164000031 ], [ 20.72201582100007, 69.904120184000078 ], [ 20.70289147200009, 69.888820705000057 ] ] ], [ [ [ 19.813324415000068, 70.00259023600006 ], [ 19.856455925000091, 69.973130601000037 ], [ 19.720550977000073, 69.86469147300005 ], [ 19.434255405000044, 69.840521552000041 ], [ 19.546885613000086, 69.925482489000046 ], [ 19.813324415000068, 70.00259023600006 ] ] ], [ [ [ 18.666758660000085, 70.027573960000041 ], [ 18.721364780000044, 70.116034247000073 ], [ 18.781260613000086, 70.101996161000045 ], [ 18.806488477000073, 70.059312242000033 ], [ 18.889821811000047, 70.106146552000041 ], [ 18.975596550000091, 70.073635158000059 ], [ 18.701670769000089, 69.98468659100007 ], [ 18.666758660000085, 70.027573960000041 ] ] ], [ [ [ 20.89421634200005, 70.079575914000031 ], [ 20.82553144600007, 70.073065497000073 ], [ 20.792979363000086, 70.119045315000051 ], [ 20.856944207000083, 70.144924221000053 ], [ 20.914805535000085, 70.107896226000037 ], [ 20.89421634200005, 70.079575914000031 ] ] ], [ [ [ 19.53874759200005, 70.093695380000042 ], [ 19.358653191000087, 70.113104559000078 ], [ 19.334971550000091, 70.127915757000039 ], [ 19.40796959700009, 70.162054755000042 ], [ 19.573252800000091, 70.111721096000053 ], [ 19.53874759200005, 70.093695380000042 ] ] ], [ [ [ 19.242360873000052, 70.200873114000046 ], [ 19.226817254000082, 70.134955145000049 ], [ 19.174164259000065, 70.115139065000051 ], [ 18.99586022200009, 70.152085679000038 ], [ 19.098643425000091, 70.157904364000046 ], [ 19.13803144600007, 70.201727606000077 ], [ 19.09148196700005, 70.237941799000055 ], [ 19.168304884000065, 70.254868882000039 ], [ 19.211436394000089, 70.250555731000077 ], [ 19.242360873000052, 70.200873114000046 ] ] ], [ [ [ 17.547129754000082, 69.09210846600007 ], [ 17.572113477000073, 69.089544989000046 ], [ 17.418955925000091, 68.99640534100007 ], [ 17.344086134000065, 69.003241278000075 ], [ 17.41968834700009, 69.079169012000079 ], [ 17.547129754000082, 69.09210846600007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-18", "NAME_1": "Nordland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.189291147968106, 68.538424682752861 ], [ 18.15623498500014, 68.518609518000048 ], [ 18.135667765000051, 68.39572296200005 ], [ 18.188584432000113, 68.198732402000033 ], [ 17.921003865000017, 67.972854717000061 ], [ 17.321453898000101, 68.10530141200006 ], [ 17.220064738000076, 68.040085755000021 ], [ 16.782882121000085, 67.896993714000061 ], [ 16.608732544000077, 67.64729319300001 ], [ 16.482952107000102, 67.557841289000081 ], [ 16.180748332000093, 67.496398010000107 ], [ 16.127108195000091, 67.422759095000103 ], [ 16.437890259000142, 67.200317892000058 ], [ 16.415566040000073, 67.052704163000058 ], [ 16.03884484800011, 66.887546285999989 ], [ 15.669461711000054, 66.599424337000087 ], [ 15.426272420000089, 66.491213888000075 ], [ 15.481876261000082, 66.27487050400002 ], [ 15.053375285000072, 66.153275859000061 ], [ 14.54053837100011, 66.125448100000099 ], [ 14.648852172000147, 65.802392884000128 ], [ 14.560692179000085, 65.701055400000101 ], [ 14.510359335000118, 65.464739075000082 ], [ 14.514286743000099, 65.31808136000005 ], [ 14.380238078000076, 65.240282492000105 ], [ 14.332073666000099, 65.113963805000068 ], [ 13.143415154885474, 65.119074612003715 ], [ 12.939396600372788, 65.030165309781182 ], [ 12.933970574982027, 64.991278795380083 ], [ 12.759252556860019, 64.949834296115853 ], [ 12.2016707685911, 64.99925364783752 ], [ 12.19312584700009, 65.050482489000046 ], [ 12.636241082000083, 65.131293036000045 ], [ 12.602224155000044, 65.137437242000033 ], [ 12.790537957000083, 65.213812567000048 ], [ 12.939952019000089, 65.327826239000046 ], [ 12.502777540000068, 65.144924221000053 ], [ 12.36882571700005, 65.151760158000059 ], [ 12.499196811000047, 65.200140692000048 ], [ 12.35515384200005, 65.22687409100007 ], [ 12.712087436000047, 65.254136460000041 ], [ 12.435720248000052, 65.273342190000051 ], [ 12.245290561000047, 65.233628648000035 ], [ 12.342133009000065, 65.302557684000078 ], [ 12.451426629000082, 65.313544012000079 ], [ 12.478688998000052, 65.336655992000033 ], [ 12.410329623000052, 65.322455145000049 ], [ 12.499196811000047, 65.370835679000038 ], [ 12.691579623000052, 65.329820054000038 ], [ 12.547048373000052, 65.363999742000033 ], [ 12.478688998000052, 65.446519273000035 ], [ 12.602224155000044, 65.432318427000041 ], [ 12.712087436000047, 65.370835679000038 ], [ 12.629405144000089, 65.432318427000041 ], [ 12.780284050000091, 65.45962148600006 ], [ 12.608409050000091, 65.45962148600006 ], [ 12.656911655000044, 65.480698960000041 ], [ 12.564626498000052, 65.513657945000034 ], [ 12.615733269000089, 65.528509833000044 ], [ 12.574229363000086, 65.589992580000057 ], [ 12.513682488000086, 65.512152411000045 ], [ 12.465017123000052, 65.521673895000049 ], [ 12.533864780000044, 65.583156643000052 ], [ 12.438324415000068, 65.528509833000044 ], [ 12.396494988000086, 65.551906643000052 ], [ 12.417165561000047, 65.596747137000079 ], [ 12.35515384200005, 65.604193427000041 ], [ 12.364105665000068, 65.652492580000057 ], [ 12.495371941000087, 65.733343817000048 ], [ 12.636241082000083, 65.68618398600006 ], [ 12.608409050000091, 65.651353257000039 ], [ 12.787119988000086, 65.638373114000046 ], [ 12.683604363000086, 65.661444403000075 ], [ 12.557790561000047, 65.753729559000078 ], [ 12.645355665000068, 65.807684637000079 ], [ 12.717539910000085, 65.789129950000074 ], [ 12.693695509000065, 65.835516669000071 ], [ 12.611664259000065, 65.834662177000041 ], [ 12.682302280000044, 65.926662502000056 ], [ 12.848480665000068, 65.966701565000051 ], [ 13.04037519600007, 65.925726630000042 ], [ 13.176036004000082, 65.85578034100007 ], [ 13.122894727000073, 65.943101304000038 ], [ 12.924327019000089, 65.994045315000051 ], [ 13.04037519600007, 66.08344147300005 ], [ 12.712087436000047, 66.04242584800005 ], [ 12.670420769000089, 66.062892971000053 ], [ 12.68718509200005, 66.074611721000053 ], [ 12.868988477000073, 66.134344794000071 ], [ 13.08952884200005, 66.146144924000055 ], [ 13.30600019600007, 66.217922268000052 ], [ 13.527191602000073, 66.240139065000051 ], [ 13.576508009000065, 66.218939520000049 ], [ 13.492849155000044, 66.185777085000041 ], [ 13.582286004000082, 66.185777085000041 ], [ 13.535899285000085, 66.110541083000044 ], [ 13.639659050000091, 66.157294012000079 ], [ 13.82162519600007, 66.147040106000077 ], [ 13.822438998000052, 66.171820380000042 ], [ 13.609548373000052, 66.185777085000041 ], [ 13.696462436000047, 66.238714911000045 ], [ 13.808116082000083, 66.234198309000078 ], [ 13.760264519000089, 66.199448960000041 ], [ 13.986175977000073, 66.241034247000073 ], [ 14.134613477000073, 66.316392320000034 ], [ 14.13054446700005, 66.343085028000075 ], [ 14.100108269000089, 66.336859442000048 ], [ 13.907481316000087, 66.268377997000073 ], [ 13.753754102000073, 66.295843817000048 ], [ 13.619802280000044, 66.240912177000041 ], [ 13.575450066000087, 66.262152411000045 ], [ 13.623220248000052, 66.275213934000078 ], [ 13.575450066000087, 66.289455471000053 ], [ 13.04037519600007, 66.179632880000042 ], [ 13.031586134000065, 66.198228257000039 ], [ 13.163096550000091, 66.259100653000075 ], [ 13.534434441000087, 66.309312242000033 ], [ 13.403493686000047, 66.316799221000053 ], [ 13.451914910000085, 66.337225653000075 ], [ 13.364756707000083, 66.338324286000045 ], [ 13.310883009000065, 66.374497789000031 ], [ 13.33765709700009, 66.327826239000046 ], [ 13.226573113000086, 66.297349351000037 ], [ 13.136566602000073, 66.303127346000053 ], [ 13.150238477000073, 66.33038971600007 ], [ 13.037282748000052, 66.319973049000055 ], [ 13.000010613000086, 66.357123114000046 ], [ 13.140961134000065, 66.386135158000059 ], [ 13.170664910000085, 66.412339585000041 ], [ 13.156993035000085, 66.436590887000079 ], [ 13.102549675000091, 66.453924872000073 ], [ 13.16382897200009, 66.466986395000049 ], [ 12.97201582100007, 66.522202867000033 ], [ 13.102549675000091, 66.542710679000038 ], [ 13.208994988000086, 66.514105536000045 ], [ 13.225352410000085, 66.453924872000073 ], [ 13.362071160000085, 66.455511786000045 ], [ 13.397227410000085, 66.466986395000049 ], [ 13.266856316000087, 66.466986395000049 ], [ 13.287771030000044, 66.509507554000038 ], [ 13.25953209700009, 66.522202867000033 ], [ 13.489431186000047, 66.550116278000075 ], [ 13.671071811000047, 66.515366929000038 ], [ 13.45875084700009, 66.563788153000075 ], [ 13.60132897200009, 66.607245184000078 ], [ 13.72624759200005, 66.604803778000075 ], [ 13.687510613000086, 66.615790106000077 ], [ 13.502777540000068, 66.606512762000079 ], [ 13.423350457000083, 66.56281159100007 ], [ 13.239024285000085, 66.548407294000071 ], [ 13.20484459700009, 66.556341864000046 ], [ 13.250010613000086, 66.613836981000077 ], [ 13.403493686000047, 66.625230210000041 ], [ 13.170664910000085, 66.651922919000071 ], [ 13.19117272200009, 66.666571356000077 ], [ 13.547373894000089, 66.638251044000071 ], [ 13.48015384200005, 66.675279039000031 ], [ 13.225352410000085, 66.714016018000052 ], [ 13.69312584700009, 66.691310940000051 ], [ 13.718760613000086, 66.700384833000044 ], [ 13.698252800000091, 66.714016018000052 ], [ 13.890147332000083, 66.735093492000033 ], [ 13.575450066000087, 66.714016018000052 ], [ 13.547129754000082, 66.724310614000046 ], [ 13.558767123000052, 66.753485419000071 ], [ 13.752940300000091, 66.761786200000074 ], [ 13.507090691000087, 66.782294012000079 ], [ 13.612152540000068, 66.809800523000035 ], [ 13.993011915000068, 66.789740302000041 ], [ 13.688324415000068, 66.835028387000079 ], [ 13.698252800000091, 66.857977606000077 ], [ 13.63062584700009, 66.899603583000044 ], [ 13.520762566000087, 66.905747789000031 ], [ 13.543630405000044, 66.921861070000034 ], [ 13.972666863000086, 66.994574286000045 ], [ 13.890147332000083, 66.953558661000045 ], [ 13.934580925000091, 66.92218659100007 ], [ 13.958994988000086, 66.926947333000044 ], [ 13.931651238000086, 66.933091539000031 ], [ 14.043793165000068, 66.980943101000037 ], [ 14.014333530000044, 67.022528387000079 ], [ 14.05990644600007, 67.06085846600007 ], [ 14.151540561000047, 66.971625067000048 ], [ 14.226735873000052, 66.983587958000044 ], [ 14.272146030000044, 67.06000397300005 ], [ 14.529551629000082, 67.048488674000055 ], [ 14.568207227000073, 67.018133856000077 ], [ 14.581309441000087, 67.058417059000078 ], [ 14.267425977000073, 67.083929755000042 ], [ 14.36304772200009, 67.159654039000031 ], [ 14.451914910000085, 67.165838934000078 ], [ 14.422862175000091, 67.109442450000074 ], [ 14.459239129000082, 67.152818101000037 ], [ 14.676931186000047, 67.159572658000059 ], [ 14.750336134000065, 67.123928127000056 ], [ 14.723155144000089, 67.161200262000079 ], [ 14.513926629000082, 67.180121161000045 ], [ 14.603770379000082, 67.204250393000052 ], [ 14.651621941000087, 67.185248114000046 ], [ 14.979340040000068, 67.21430084800005 ], [ 14.890635613000086, 67.152818101000037 ], [ 14.99390709700009, 67.09906647300005 ], [ 14.931651238000086, 67.152818101000037 ], [ 15.094574415000068, 67.213364976000037 ], [ 15.383311394000089, 67.156724351000037 ], [ 15.37671959700009, 67.097601630000042 ], [ 15.501475457000083, 67.070257880000042 ], [ 15.438731316000087, 67.097601630000042 ], [ 15.480316602000073, 67.152818101000037 ], [ 15.37671959700009, 67.20062897300005 ], [ 15.740407748000052, 67.17328522300005 ], [ 15.706309441000087, 67.21430084800005 ], [ 15.40796959700009, 67.235744533000059 ], [ 15.287445509000065, 67.205633856000077 ], [ 15.261241082000083, 67.21430084800005 ], [ 15.342458530000044, 67.241603908000059 ], [ 15.062510613000086, 67.247748114000046 ], [ 15.137705925000091, 67.269517320000034 ], [ 15.165049675000091, 67.310492255000042 ], [ 14.989512566000087, 67.270493882000039 ], [ 14.774587436000047, 67.269517320000034 ], [ 14.835459832000083, 67.255275783000059 ], [ 14.673838738000086, 67.216701565000051 ], [ 14.61695397200009, 67.21430084800005 ], [ 14.699473504000082, 67.27570221600007 ], [ 14.328298373000052, 67.241603908000059 ], [ 14.601735873000052, 67.377346096000053 ], [ 14.57593834700009, 67.398627020000049 ], [ 14.623057488000086, 67.420640367000033 ], [ 14.799978061000047, 67.421820380000042 ], [ 14.822438998000052, 67.406073309000078 ], [ 14.795095248000052, 67.385565497000073 ], [ 14.824717644000089, 67.378322658000059 ], [ 15.049001498000052, 67.447007554000038 ], [ 14.822438998000052, 67.447007554000038 ], [ 14.842784050000091, 67.461330471000053 ], [ 14.726817254000082, 67.488674221000053 ], [ 15.058848504000082, 67.577337958000044 ], [ 15.158864780000044, 67.53579336100006 ], [ 15.008311394000089, 67.563666083000044 ], [ 14.986827019000089, 67.549505927000041 ], [ 15.055186394000089, 67.51593659100007 ], [ 15.010427280000044, 67.487005927000041 ], [ 14.829274936000047, 67.475002346000053 ], [ 15.016774936000047, 67.468736070000034 ], [ 15.192881707000083, 67.51593659100007 ], [ 15.212738477000073, 67.488674221000053 ], [ 15.151377800000091, 67.481146552000041 ], [ 15.172373894000089, 67.467474677000041 ], [ 15.137705925000091, 67.420355536000045 ], [ 15.240977410000085, 67.479193427000041 ], [ 15.42904707100007, 67.482977606000077 ], [ 15.54859459700009, 67.351467190000051 ], [ 15.644786004000082, 67.30304596600007 ], [ 15.603526238000086, 67.280340887000079 ], [ 15.658457879000082, 67.27570221600007 ], [ 15.700043165000068, 67.30304596600007 ], [ 15.514414910000085, 67.426499742000033 ], [ 15.582774285000085, 67.461330471000053 ], [ 15.52865644600007, 67.467474677000041 ], [ 15.597911004000082, 67.509914455000057 ], [ 15.897959832000083, 67.556870835000041 ], [ 15.668142123000052, 67.551947333000044 ], [ 15.498708530000044, 67.510484117000033 ], [ 15.239268425000091, 67.529242255000042 ], [ 15.228363477000073, 67.558783270000049 ], [ 15.261241082000083, 67.577337958000044 ], [ 15.240733269000089, 67.584214585000041 ], [ 15.275645379000082, 67.593573309000078 ], [ 15.466075066000087, 67.577337958000044 ], [ 15.406586134000065, 67.631293036000045 ], [ 15.35914147200009, 67.605210679000038 ], [ 15.178558790000068, 67.618353583000044 ], [ 15.336924675000091, 67.687201239000046 ], [ 15.274912957000083, 67.694037177000041 ], [ 15.301117384000065, 67.720200914000031 ], [ 15.541758660000085, 67.673570054000038 ], [ 15.514414910000085, 67.694037177000041 ], [ 15.658457879000082, 67.680405992000033 ], [ 15.404551629000082, 67.735052802000041 ], [ 15.596934441000087, 67.748846747000073 ], [ 15.799652540000068, 67.679022528000075 ], [ 15.836599155000044, 67.694037177000041 ], [ 15.63054446700005, 67.76235586100006 ], [ 15.692637566000087, 67.796454169000071 ], [ 15.594981316000087, 67.773871161000045 ], [ 15.411387566000087, 67.796454169000071 ], [ 15.446136915000068, 67.832180080000057 ], [ 15.432790561000047, 67.860744533000059 ], [ 15.404551629000082, 67.824408270000049 ], [ 15.369476759000065, 67.865179755000042 ], [ 15.384043816000087, 67.803900458000044 ], [ 15.181976759000065, 67.714544989000046 ], [ 14.836110873000052, 67.642523505000042 ], [ 14.726817254000082, 67.659369208000044 ], [ 14.876963738000086, 67.700262762000079 ], [ 14.792979363000086, 67.72882721600007 ], [ 15.117198113000086, 67.741888739000046 ], [ 14.993662957000083, 67.769232489000046 ], [ 15.034678582000083, 67.782863674000055 ], [ 14.829274936000047, 67.76235586100006 ], [ 14.831228061000047, 67.791815497000073 ], [ 14.778575066000087, 67.784898179000038 ], [ 14.754079623000052, 67.803900458000044 ], [ 14.772959832000083, 67.815985419000071 ], [ 15.10287519600007, 67.851141669000071 ], [ 14.849619988000086, 67.844916083000044 ], [ 14.998708530000044, 67.895453192000048 ], [ 15.233246290000068, 67.872219143000052 ], [ 15.199066602000073, 67.831244208000044 ], [ 15.30209394600007, 67.890366929000038 ], [ 15.483164910000085, 67.917669989000046 ], [ 15.543467644000089, 67.916978257000039 ], [ 15.503184441000087, 67.875433661000045 ], [ 15.53256269600007, 67.852362372000073 ], [ 15.53492272200009, 67.889797268000052 ], [ 15.603770379000082, 67.930568752000056 ], [ 15.752289259000065, 67.952093817000048 ], [ 15.860118035000085, 67.899644273000035 ], [ 15.968760613000086, 68.008612372000073 ], [ 16.063161655000044, 68.016180731000077 ], [ 15.850271030000044, 68.036688544000071 ], [ 15.898285352000073, 68.066839911000045 ], [ 15.877452019000089, 68.070868231000077 ], [ 15.789235873000052, 68.034328518000052 ], [ 15.602386915000068, 68.038275458000044 ], [ 15.545420769000089, 68.074693101000037 ], [ 15.384043816000087, 68.023016669000071 ], [ 15.438731316000087, 68.009426174000055 ], [ 15.39820397200009, 67.994940497000073 ], [ 15.281748894000089, 68.036688544000071 ], [ 15.463389519000089, 68.124212958000044 ], [ 15.50757897200009, 68.13226959800005 ], [ 15.52865644600007, 68.091294664000031 ], [ 15.629893425000091, 68.134588934000078 ], [ 15.643728061000047, 68.168931382000039 ], [ 15.73414147200009, 68.139715887000079 ], [ 15.700043165000068, 68.126044012000079 ], [ 15.737478061000047, 68.102769273000035 ], [ 15.617442254000082, 68.091294664000031 ], [ 15.628428582000083, 68.05304596600007 ], [ 15.844493035000085, 68.096258856000077 ], [ 15.925303582000083, 68.13226959800005 ], [ 15.87077884200005, 68.186916408000059 ], [ 15.942067905000044, 68.185939846000053 ], [ 15.949554884000065, 68.238999742000033 ], [ 15.979665561000047, 68.250067450000074 ], [ 16.037852410000085, 68.242987372000073 ], [ 16.063161655000044, 68.201157945000034 ], [ 16.027842644000089, 68.180731512000079 ], [ 16.042491082000083, 68.162298895000049 ], [ 16.104014519000089, 68.160223700000074 ], [ 16.06967207100007, 68.112494208000044 ], [ 16.08366946700005, 68.057359117000033 ], [ 16.042002800000091, 68.029852606000077 ], [ 16.192881707000083, 67.981512762000079 ], [ 16.236827019000089, 67.883612372000073 ], [ 16.437347852000073, 67.807562567000048 ], [ 16.51498457100007, 67.803900458000044 ], [ 16.46029707100007, 67.817694403000075 ], [ 16.453461134000065, 67.851141669000071 ], [ 16.268565300000091, 67.88930898600006 ], [ 16.275401238000086, 67.975287177000041 ], [ 16.207041863000086, 68.00259023600006 ], [ 16.274261915000068, 68.005682684000078 ], [ 16.412608269000089, 67.906317450000074 ], [ 16.46656334700009, 67.899562893000052 ], [ 16.446055535000085, 67.926825262000079 ], [ 16.46656334700009, 67.940497137000079 ], [ 16.333506707000083, 68.002427476000037 ], [ 16.380381707000083, 68.008937893000052 ], [ 16.451508009000065, 67.962795315000051 ], [ 16.542246941000087, 67.961004950000074 ], [ 16.463389519000089, 67.978338934000078 ], [ 16.500743035000085, 68.016180731000077 ], [ 16.364756707000083, 68.029852606000077 ], [ 16.389170769000089, 68.059271552000041 ], [ 16.463633660000085, 68.094305731000077 ], [ 16.662771030000044, 68.050685940000051 ], [ 16.688975457000083, 68.071030992000033 ], [ 16.500743035000085, 68.11859772300005 ], [ 16.289073113000086, 68.091294664000031 ], [ 16.302744988000086, 68.111802476000037 ], [ 16.241221550000091, 68.13226959800005 ], [ 16.473399285000085, 68.152777411000045 ], [ 16.412608269000089, 68.186916408000059 ], [ 16.590098504000082, 68.167059637000079 ], [ 16.453135613000086, 68.228461005000042 ], [ 16.172048373000052, 68.203680731000077 ], [ 16.355642123000052, 68.238999742000033 ], [ 16.103363477000073, 68.283148505000042 ], [ 16.172373894000089, 68.317857164000031 ], [ 16.281748894000089, 68.307440497000073 ], [ 16.508311394000089, 68.255438544000071 ], [ 16.559825066000087, 68.232814846000053 ], [ 16.562754754000082, 68.194322007000039 ], [ 16.802989129000082, 68.13226959800005 ], [ 16.612152540000068, 68.21906159100007 ], [ 16.567393425000091, 68.276312567000048 ], [ 16.22006269600007, 68.351385809000078 ], [ 16.694590691000087, 68.405462958000044 ], [ 16.869883660000085, 68.372544664000031 ], [ 16.824066602000073, 68.324042059000078 ], [ 17.127289259000065, 68.372870184000078 ], [ 17.223806186000047, 68.284247137000079 ], [ 17.330577019000089, 68.255804755000042 ], [ 17.310069207000083, 68.232245184000078 ], [ 17.333994988000086, 68.167059637000079 ], [ 17.364024285000085, 68.183539130000042 ], [ 17.352061394000089, 68.225531317000048 ], [ 17.419932488000086, 68.235907294000071 ], [ 17.222992384000065, 68.339585679000038 ], [ 17.206065300000091, 68.372992255000042 ], [ 17.247894727000073, 68.405991929000038 ], [ 17.576914910000085, 68.35883209800005 ], [ 17.36459394600007, 68.413478908000059 ], [ 17.539886915000068, 68.42837148600006 ], [ 17.816661004000082, 68.384751695000034 ], [ 17.871836785000085, 68.393011786000045 ], [ 17.612152540000068, 68.450873114000046 ], [ 17.467621290000068, 68.44757721600007 ], [ 17.54656009200005, 68.530096747000073 ], [ 17.04664147200009, 68.434149481000077 ], [ 17.00163821700005, 68.44757721600007 ], [ 17.091970248000052, 68.48078034100007 ], [ 16.98796634200005, 68.509670315000051 ], [ 16.848643425000091, 68.448716539000031 ], [ 16.510996941000087, 68.441310940000051 ], [ 16.46461022200009, 68.509995835000041 ], [ 16.484873894000089, 68.528957424000055 ], [ 16.542002800000091, 68.543768622000073 ], [ 16.669246454160543, 68.507343247692688 ], [ 16.884633823392221, 68.566538601475258 ], [ 18.036656527676598, 68.619610296977612 ], [ 18.189291147968106, 68.538424682752861 ] ] ], [ [ [ 14.87240644600007, 68.222723700000074 ], [ 14.795583530000044, 68.246161200000074 ], [ 14.940114780000044, 68.302150783000059 ], [ 14.953135613000086, 68.277411200000074 ], [ 14.87240644600007, 68.222723700000074 ] ] ], [ [ [ 14.199229363000086, 68.315171617000033 ], [ 14.268239780000044, 68.282619533000059 ], [ 14.20053144600007, 68.248765367000033 ], [ 14.14584394600007, 68.295640367000033 ], [ 14.04037519600007, 68.312567450000074 ], [ 14.117198113000086, 68.337307033000059 ], [ 14.199229363000086, 68.315171617000033 ] ] ], [ [ [ 14.027842644000089, 68.262640692000048 ], [ 14.08725019600007, 68.282619533000059 ], [ 14.158864780000044, 68.255275783000059 ], [ 14.034027540000068, 68.180731512000079 ], [ 13.774099155000044, 68.15961334800005 ], [ 13.845957879000082, 68.12055084800005 ], [ 13.774099155000044, 68.101955471000053 ], [ 13.722666863000086, 68.123032945000034 ], [ 13.69898522200009, 68.070257880000042 ], [ 13.643728061000047, 68.070868231000077 ], [ 13.594899936000047, 68.12055084800005 ], [ 13.541270379000082, 68.101548570000034 ], [ 13.564789259000065, 68.081773179000038 ], [ 13.527191602000073, 68.043402411000045 ], [ 13.45671634200005, 68.070990302000041 ], [ 13.589121941000087, 68.15961334800005 ], [ 13.479258660000085, 68.13226959800005 ], [ 13.51335696700005, 68.15961334800005 ], [ 13.479258660000085, 68.167059637000079 ], [ 13.527598504000082, 68.17328522300005 ], [ 13.479258660000085, 68.186916408000059 ], [ 13.615896030000044, 68.226629950000074 ], [ 13.500010613000086, 68.242254950000074 ], [ 13.636729363000086, 68.294338283000059 ], [ 13.791188998000052, 68.268052476000037 ], [ 13.873708530000044, 68.325588283000059 ], [ 13.983083530000044, 68.337307033000059 ], [ 14.007823113000086, 68.294338283000059 ], [ 13.967458530000044, 68.269598700000074 ], [ 14.027842644000089, 68.262640692000048 ] ] ], [ [ [ 14.76303144600007, 68.494859117000033 ], [ 14.717458530000044, 68.490952867000033 ], [ 14.604177280000044, 68.558661200000074 ], [ 14.66928144600007, 68.587307033000059 ], [ 15.000010613000086, 68.554754950000074 ], [ 14.89193769600007, 68.494859117000033 ], [ 14.76303144600007, 68.494859117000033 ] ] ], [ [ [ 12.045379334586665, 65.060133735386799 ], [ 12.137054884000065, 65.046698309000078 ], [ 12.165863477000073, 65.028469143000052 ], [ 12.176337952762681, 65.011110468142121 ], [ 12.045379334586665, 65.060133735386799 ] ] ], [ [ [ 12.224864129000082, 65.123765367000033 ], [ 12.309092644000089, 65.110581773000035 ], [ 12.156504754000082, 65.055487372000073 ], [ 11.979014519000089, 65.082831122000073 ], [ 12.122325066000087, 65.131293036000045 ], [ 12.092784050000091, 65.135565497000073 ], [ 12.09506269600007, 65.178412177000041 ], [ 12.167246941000087, 65.211127020000049 ], [ 12.271657748000052, 65.164618231000077 ], [ 12.224864129000082, 65.123765367000033 ] ] ], [ [ [ 12.451426629000082, 65.42609284100007 ], [ 12.506602410000085, 65.398138739000046 ], [ 12.336436394000089, 65.331529039000031 ], [ 12.211110873000052, 65.324652411000045 ], [ 12.24773196700005, 65.280462958000044 ], [ 12.053477410000085, 65.219956773000035 ], [ 12.122325066000087, 65.302557684000078 ], [ 12.080739780000044, 65.308783270000049 ], [ 12.122243686000047, 65.357326565000051 ], [ 12.211192254000082, 65.377630927000041 ], [ 12.160817905000044, 65.395819403000075 ], [ 12.328461134000065, 65.467027085000041 ], [ 12.31421959700009, 65.494940497000073 ], [ 12.197438998000052, 65.473863023000035 ], [ 12.23218834700009, 65.487494208000044 ], [ 12.204356316000087, 65.487494208000044 ], [ 12.258636915000068, 65.574611721000053 ], [ 12.397308790000068, 65.507554429000038 ], [ 12.451426629000082, 65.42609284100007 ] ] ], [ [ [ 12.005137566000087, 65.689601955000057 ], [ 11.916840040000068, 65.589992580000057 ], [ 11.759287957000083, 65.617905992000033 ], [ 11.824473504000082, 65.693019924000055 ], [ 12.005137566000087, 65.689601955000057 ] ] ], [ [ [ 12.698008660000085, 65.997748114000046 ], [ 12.903819207000083, 66.01508209800005 ], [ 12.465830925000091, 65.873277085000041 ], [ 12.430918816000087, 65.871079820000034 ], [ 12.478688998000052, 65.898382880000042 ], [ 12.36882571700005, 65.891587632000039 ], [ 12.491221550000091, 65.990627346000053 ], [ 12.627207879000082, 66.023016669000071 ], [ 12.65007571700005, 66.01508209800005 ], [ 12.615244988000086, 65.974188544000071 ], [ 12.698008660000085, 65.997748114000046 ] ] ], [ [ [ 12.574229363000086, 66.075913804000038 ], [ 12.533376498000052, 66.060695705000057 ], [ 12.294200066000087, 66.01508209800005 ], [ 12.429698113000086, 66.087103583000044 ], [ 12.342133009000065, 66.08344147300005 ], [ 12.574229363000086, 66.15851471600007 ], [ 12.430918816000087, 66.165961005000042 ], [ 12.551442905000044, 66.220363674000055 ], [ 12.595225457000083, 66.205023505000042 ], [ 12.611827019000089, 66.156805731000077 ], [ 12.547048373000052, 66.13117096600007 ], [ 12.656911655000044, 66.103908596000053 ], [ 12.574229363000086, 66.075913804000038 ] ] ], [ [ [ 14.273692254000082, 67.165838934000078 ], [ 14.192393425000091, 67.083929755000042 ], [ 14.215098504000082, 67.032416083000044 ], [ 14.192230665000068, 67.003566799000055 ], [ 14.100108269000089, 67.061672268000052 ], [ 13.993011915000068, 67.077704169000071 ], [ 14.057302280000044, 67.133042710000041 ], [ 14.152191602000073, 67.107123114000046 ], [ 14.273692254000082, 67.165838934000078 ] ] ], [ [ [ 13.054698113000086, 68.098130601000037 ], [ 13.156993035000085, 68.085109768000052 ], [ 13.095550977000073, 68.057196356000077 ], [ 13.136566602000073, 68.050360419000071 ], [ 13.120616082000083, 68.038234768000052 ], [ 13.050303582000083, 68.024562893000052 ], [ 13.110850457000083, 68.028265692000048 ], [ 13.123871290000068, 67.94399648600006 ], [ 12.976817254000082, 67.969468492000033 ], [ 12.960215691000087, 67.940985419000071 ], [ 13.04664147200009, 67.91547272300005 ], [ 13.013682488000086, 67.879095770000049 ], [ 12.787119988000086, 67.810126044000071 ], [ 12.979177280000044, 68.036525783000059 ], [ 13.075043165000068, 68.085109768000052 ], [ 13.054698113000086, 68.098130601000037 ] ] ], [ [ [ 13.280528191000087, 68.129136460000041 ], [ 13.330577019000089, 68.155747789000031 ], [ 13.437673373000052, 68.126044012000079 ], [ 13.366221550000091, 68.012762762000079 ], [ 13.321543816000087, 68.029852606000077 ], [ 13.238617384000065, 67.985541083000044 ], [ 13.215505405000044, 68.036688544000071 ], [ 13.172699415000068, 68.009019273000035 ], [ 13.168467644000089, 68.049750067000048 ], [ 13.239268425000091, 68.09210846600007 ], [ 13.328379754000082, 68.063421942000048 ], [ 13.338633660000085, 68.086004950000074 ], [ 13.280528191000087, 68.129136460000041 ] ] ], [ [ [ 15.000498894000089, 68.365057684000078 ], [ 14.735524936000047, 68.254950262000079 ], [ 14.722911004000082, 68.27960846600007 ], [ 14.774587436000047, 68.317857164000031 ], [ 14.718760613000086, 68.337632554000038 ], [ 14.693858269000089, 68.286200262000079 ], [ 14.623789910000085, 68.262640692000048 ], [ 14.67164147200009, 68.249579169000071 ], [ 14.61491946700005, 68.224554755000042 ], [ 14.198496941000087, 68.152777411000045 ], [ 14.219737175000091, 68.175970770000049 ], [ 14.198496941000087, 68.201157945000034 ], [ 14.356211785000085, 68.242132880000042 ], [ 14.253184441000087, 68.249579169000071 ], [ 14.328298373000052, 68.262640692000048 ], [ 14.303396030000044, 68.311997789000031 ], [ 14.357920769000089, 68.320502020000049 ], [ 14.425059441000087, 68.283148505000042 ], [ 14.44271894600007, 68.318426825000074 ], [ 14.495616082000083, 68.306057033000059 ], [ 14.383555535000085, 68.37250397300005 ], [ 14.58961022200009, 68.365057684000078 ], [ 14.541758660000085, 68.405991929000038 ], [ 14.653493686000047, 68.428534247000073 ], [ 14.707530144000089, 68.377915757000039 ], [ 14.714121941000087, 68.42328522300005 ], [ 14.760915561000047, 68.43390534100007 ], [ 14.822438998000052, 68.409735419000071 ], [ 14.754079623000052, 68.35883209800005 ], [ 14.783539259000065, 68.35415273600006 ], [ 14.880381707000083, 68.385972398000035 ], [ 14.897471550000091, 68.43390534100007 ], [ 15.172373894000089, 68.454413153000075 ], [ 15.000498894000089, 68.365057684000078 ] ] ], [ [ [ 16.422862175000091, 68.491929429000038 ], [ 16.46656334700009, 68.468695380000042 ], [ 16.371592644000089, 68.44757721600007 ], [ 16.398610873000052, 68.413478908000059 ], [ 16.094899936000047, 68.397528387000079 ], [ 16.172373894000089, 68.427720445000034 ], [ 16.117686394000089, 68.43390534100007 ], [ 16.221690300000091, 68.52374909100007 ], [ 16.35873457100007, 68.534857489000046 ], [ 16.422862175000091, 68.491929429000038 ] ] ], [ [ [ 16.496104363000086, 68.579331773000035 ], [ 16.481455925000091, 68.54751211100006 ], [ 16.105967644000089, 68.53851959800005 ], [ 16.053396030000044, 68.464829820000034 ], [ 15.90398196700005, 68.369859117000033 ], [ 15.876231316000087, 68.369086005000042 ], [ 15.87077884200005, 68.495428778000075 ], [ 15.84929446700005, 68.434759833000044 ], [ 15.774424675000091, 68.430853583000044 ], [ 15.81617272200009, 68.393011786000045 ], [ 15.747894727000073, 68.425360419000071 ], [ 15.726735873000052, 68.37250397300005 ], [ 15.658457879000082, 68.365057684000078 ], [ 15.706309441000087, 68.35883209800005 ], [ 15.62435957100007, 68.300482489000046 ], [ 15.527679884000065, 68.337713934000078 ], [ 15.375987175000091, 68.32758209800005 ], [ 15.322601759000065, 68.351385809000078 ], [ 15.611338738000086, 68.47492096600007 ], [ 15.541758660000085, 68.509670315000051 ], [ 15.553965691000087, 68.475327867000033 ], [ 15.439300977000073, 68.418402411000045 ], [ 15.211761915000068, 68.365952867000033 ], [ 15.185394727000073, 68.351385809000078 ], [ 15.233246290000068, 68.337713934000078 ], [ 15.085785352000073, 68.271226304000038 ], [ 14.986827019000089, 68.269476630000042 ], [ 15.009287957000083, 68.313666083000044 ], [ 15.192556186000047, 68.434881903000075 ], [ 15.35678144600007, 68.46124909100007 ], [ 15.240733269000089, 68.47492096600007 ], [ 15.336924675000091, 68.48859284100007 ], [ 15.178558790000068, 68.523342190000051 ], [ 15.217295769000089, 68.556870835000041 ], [ 15.394704623000052, 68.584784247000073 ], [ 15.452321811000047, 68.557440497000073 ], [ 15.391612175000091, 68.605210679000038 ], [ 15.452321811000047, 68.597805080000057 ], [ 15.438731316000087, 68.619533596000053 ], [ 15.63054446700005, 68.612127997000073 ], [ 15.49773196700005, 68.642482815000051 ], [ 15.442067905000044, 68.682196356000077 ], [ 15.44304446700005, 68.723578192000048 ], [ 15.60482832100007, 68.735744533000059 ], [ 15.713633660000085, 68.701402085000041 ], [ 15.639659050000091, 68.743231512000079 ], [ 15.47592207100007, 68.746893622000073 ], [ 15.452321811000047, 68.811265367000033 ], [ 15.637950066000087, 68.824937242000033 ], [ 15.563487175000091, 68.839178778000075 ], [ 15.553233269000089, 68.872259833000044 ], [ 15.624278191000087, 68.885809637000079 ], [ 15.596446160000085, 68.906927802000041 ], [ 15.676605665000068, 68.962713934000078 ], [ 15.907851124738627, 68.95750048316809 ], [ 15.874152866361669, 68.935069078475181 ], [ 15.885314976405027, 68.886751613895854 ], [ 15.847022739407862, 68.835695299098745 ], [ 15.721759067427001, 68.751359361545269 ], [ 15.782013788405607, 68.687616482414683 ], [ 15.679591098650292, 68.617259020387451 ], [ 15.640627068984031, 68.536643784982687 ], [ 15.675250277977909, 68.495147609774335 ], [ 15.643262567313627, 68.460886135986357 ], [ 15.961692743025651, 68.602221178564491 ], [ 16.245809767206993, 68.628627835106499 ], [ 16.496104363000086, 68.579331773000035 ] ] ], [ [ [ 14.397227410000085, 68.66046784100007 ], [ 14.381114129000082, 68.697658596000053 ], [ 14.541758660000085, 68.735581773000035 ], [ 14.438161655000044, 68.756048895000049 ], [ 14.488454623000052, 68.795355536000045 ], [ 14.548024936000047, 68.803900458000044 ], [ 14.572276238000086, 68.746323960000041 ], [ 14.623789910000085, 68.735581773000035 ], [ 14.58961022200009, 68.748602606000077 ], [ 14.64421634200005, 68.790228583000044 ], [ 14.607595248000052, 68.80727773600006 ], [ 14.628428582000083, 68.829901434000078 ], [ 14.685801629000082, 68.824937242000033 ], [ 14.686534050000091, 68.757473049000055 ], [ 14.843597852000073, 68.796291408000059 ], [ 14.907074415000068, 68.760239976000037 ], [ 14.952647332000083, 68.817531643000052 ], [ 14.904307488000086, 68.845445054000038 ], [ 14.952647332000083, 68.865912177000041 ], [ 15.006032748000052, 68.793850002000056 ], [ 15.049815300000091, 68.852769273000035 ], [ 15.158864780000044, 68.817531643000052 ], [ 15.009287957000083, 68.963324286000045 ], [ 15.084483269000089, 69.011216539000031 ], [ 15.137705925000091, 69.013088283000059 ], [ 15.168223504000082, 68.988267320000034 ], [ 15.151377800000091, 68.962144273000035 ], [ 15.240733269000089, 68.913763739000046 ], [ 15.185394727000073, 68.885809637000079 ], [ 15.295258009000065, 68.906927802000041 ], [ 15.240733269000089, 68.824937242000033 ], [ 15.384043816000087, 68.852280992000033 ], [ 15.350759311000047, 68.802923895000049 ], [ 15.274912957000083, 68.797064520000049 ], [ 15.302744988000086, 68.776556708000044 ], [ 15.274912957000083, 68.762884833000044 ], [ 15.39421634200005, 68.73110586100006 ], [ 15.375254754000082, 68.669907945000034 ], [ 15.062673373000052, 68.578517971000053 ], [ 14.873220248000052, 68.584458726000037 ], [ 14.80640709700009, 68.615952867000033 ], [ 14.83366946700005, 68.644476630000042 ], [ 15.165049675000091, 68.701402085000041 ], [ 15.151377800000091, 68.756048895000049 ], [ 15.026052280000044, 68.771185614000046 ], [ 14.993662957000083, 68.762884833000044 ], [ 15.068695509000065, 68.748602606000077 ], [ 15.019541863000086, 68.712144273000035 ], [ 14.958832227000073, 68.70766836100006 ], [ 14.958832227000073, 68.729396877000056 ], [ 14.900889519000089, 68.681301174000055 ], [ 14.82781009200005, 68.673488674000055 ], [ 14.815114780000044, 68.714748440000051 ], [ 14.750336134000065, 68.667466539000031 ], [ 14.678965691000087, 68.70766836100006 ], [ 14.622569207000083, 68.628851630000042 ], [ 14.520681186000047, 68.609035549000055 ], [ 14.417246941000087, 68.619533596000053 ], [ 14.431895379000082, 68.666693427000041 ], [ 14.397227410000085, 68.66046784100007 ] ] ], [ [ [ 15.52865644600007, 68.913763739000046 ], [ 15.431488477000073, 68.88422272300005 ], [ 15.425059441000087, 68.962144273000035 ], [ 15.56967207100007, 69.105536200000074 ], [ 15.791351759000065, 69.161281643000052 ], [ 15.864512566000087, 69.249497789000031 ], [ 15.975108269000089, 69.287176825000074 ], [ 16.101573113000086, 69.315252997000073 ], [ 16.149912957000083, 69.290838934000078 ], [ 16.076182488000086, 69.153957424000055 ], [ 15.847911004000082, 69.029242255000042 ], [ 15.63217207100007, 68.98663971600007 ], [ 15.52865644600007, 69.009344794000071 ], [ 15.56967207100007, 68.962144273000035 ], [ 15.52865644600007, 68.913763739000046 ] ] ], [ [ [ 12.875336134000065, 66.285630601000037 ], [ 12.879242384000065, 66.243394273000035 ], [ 12.824961785000085, 66.215887762000079 ], [ 12.700205925000091, 66.243231512000079 ], [ 12.793793165000068, 66.311224677000041 ], [ 12.875336134000065, 66.285630601000037 ] ] ], [ [ [ 12.94076582100007, 66.460191148000035 ], [ 12.96648196700005, 66.453111070000034 ], [ 12.938487175000091, 66.394435940000051 ], [ 12.899668816000087, 66.416083075000074 ], [ 12.881358269000089, 66.390570380000042 ], [ 12.898936394000089, 66.355047919000071 ], [ 12.800791863000086, 66.384711005000042 ], [ 12.850271030000044, 66.40961334800005 ], [ 12.817230665000068, 66.442572333000044 ], [ 12.896739129000082, 66.456203518000052 ], [ 12.919444207000083, 66.431586005000042 ], [ 12.94076582100007, 66.460191148000035 ] ] ], [ [ [ 15.295664910000085, 67.945257880000042 ], [ 15.25367272200009, 67.916571356000077 ], [ 15.163096550000091, 67.910711981000077 ], [ 14.98023522200009, 67.914618231000077 ], [ 14.961192254000082, 67.941595770000049 ], [ 14.97201582100007, 67.970038153000075 ], [ 15.105723504000082, 68.000718492000033 ], [ 15.139903191000087, 67.95844147300005 ], [ 15.295664910000085, 67.945257880000042 ] ] ], [ [ [ 15.930186394000089, 68.008246161000045 ], [ 15.883962436000047, 67.984116929000038 ], [ 15.728770379000082, 68.011948960000041 ], [ 15.617360873000052, 67.985256252000056 ], [ 15.482432488000086, 68.002630927000041 ], [ 15.574066602000073, 68.025580145000049 ], [ 15.930186394000089, 68.008246161000045 ] ] ], [ [ [ 15.166188998000052, 67.986761786000045 ], [ 15.230316602000073, 68.036688544000071 ], [ 15.286631707000083, 67.976996161000045 ], [ 15.184825066000087, 67.966782945000034 ], [ 15.166188998000052, 67.986761786000045 ] ] ], [ [ [ 14.996592644000089, 68.901597398000035 ], [ 14.95834394600007, 68.87531159100007 ], [ 14.840098504000082, 68.891669012000079 ], [ 14.899668816000087, 68.930853583000044 ], [ 14.996592644000089, 68.901597398000035 ] ] ], [ [ [ -7.962554490999935, 71.174872137000079 ], [ -7.939320441999939, 71.136419989000046 ], [ -8.008900519999941, 71.105210679000038 ], [ -7.983021613999938, 71.045152085000041 ], [ -8.005970831999946, 71.032538153000075 ], [ -8.401356574999909, 70.962591864000046 ], [ -8.619740363999938, 70.958075262000079 ], [ -8.98656165299991, 70.810777085000041 ], [ -9.079741990999935, 70.812445380000042 ], [ -9.066070115999935, 70.832261460000041 ], [ -9.11742102799991, 70.874904690000051 ], [ -8.516835089999915, 71.014471747000073 ], [ -8.325672980999911, 71.147609768000052 ], [ -7.962554490999935, 71.174872137000079 ] ] ], [ [ [ 14.408457879000082, 67.425767320000034 ], [ 14.366465691000087, 67.39093659100007 ], [ 14.226735873000052, 67.377346096000053 ], [ 14.371755405000044, 67.441107489000046 ], [ 14.408457879000082, 67.425767320000034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-17", "NAME_1": "Nord-Trøndelag" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.332073666000099, 65.113963805000068 ], [ 13.642763713000079, 64.584017639000095 ], [ 14.115551391000054, 64.441235657 ], [ 14.160509887000075, 64.187245992000086 ], [ 13.98232954900007, 64.019504293000111 ], [ 13.234106486000144, 64.090869446000099 ], [ 12.755272665000064, 63.991392314000066 ], [ 12.170295450000111, 63.598134665000018 ], [ 12.219801472000057, 63.474266256000064 ], [ 11.992425171000093, 63.288902893000099 ], [ 12.059826572000105, 63.204772150000011 ], [ 11.642473179193871, 63.196866359694695 ], [ 11.459073520626475, 63.336728623926831 ], [ 10.932542352147834, 63.354272772870161 ], [ 10.884431593143518, 63.386699734005504 ], [ 10.875883179165385, 63.445907681893971 ], [ 10.916351759000065, 63.466538804000038 ], [ 10.777679884000065, 63.487494208000044 ], [ 10.758799675000091, 63.517482815000051 ], [ 10.922618035000085, 63.554754950000074 ], [ 10.856944207000083, 63.569322007000039 ], [ 10.922618035000085, 63.602484442000048 ], [ 10.656423373000052, 63.548529364000046 ], [ 10.905446811000047, 63.684475002000056 ], [ 11.033457879000082, 63.719183661000045 ], [ 11.156748894000089, 63.711127020000049 ], [ 11.265798373000052, 63.774400132000039 ], [ 11.457692905000044, 63.789984442000048 ], [ 11.415212436000047, 63.850083726000037 ], [ 11.096527540000068, 63.858099677000041 ], [ 11.101898634000065, 63.893500067000048 ], [ 11.223317905000044, 63.945461330000057 ], [ 11.486827019000089, 64.006659247000073 ], [ 11.24195397200009, 64.051581122000073 ], [ 11.362071160000085, 64.117092190000051 ], [ 11.225352410000085, 64.071966864000046 ], [ 11.17514082100007, 64.007025458000044 ], [ 10.573741082000083, 63.809149481000077 ], [ 10.900238477000073, 63.894720770000049 ], [ 11.05600019600007, 63.861273505000042 ], [ 11.07398522200009, 63.835882880000042 ], [ 10.910004102000073, 63.731024481000077 ], [ 10.671722852000073, 63.686835028000075 ], [ 10.602305535000085, 63.635931708000044 ], [ 10.401621941000087, 63.576361395000049 ], [ 10.197921118787535, 63.542281307785629 ], [ 10.168454623981688, 63.573406684470854 ], [ 10.201372510632837, 63.634927477321185 ], [ 10.482233920658871, 63.737711900483816 ], [ 10.581090936097837, 63.85822134154165 ], [ 10.798338657303191, 63.968395493956848 ], [ 10.822988314658971, 64.041491808000501 ], [ 10.916884392700524, 64.106423245536348 ], [ 10.811826206414253, 64.143552760751277 ], [ 10.832755160722058, 64.19665029647399 ], [ 10.908977898611113, 64.222901923385052 ], [ 10.964064975718031, 64.293698635883288 ], [ 10.789657016857802, 64.33385122305549 ], [ 10.625222069856751, 64.405308928190578 ], [ 10.59929446700005, 64.448797919000071 ], [ 10.834971550000091, 64.369126695000034 ], [ 10.854991082000083, 64.377752997000073 ], [ 10.786631707000083, 64.411281643000052 ], [ 10.79664147200009, 64.432318427000041 ], [ 10.656423373000052, 64.452215887000079 ], [ 10.762217644000089, 64.480169989000046 ], [ 10.84115644600007, 64.465887762000079 ], [ 10.800303582000083, 64.507473049000055 ], [ 10.824717644000089, 64.511379299000055 ], [ 10.89226321700005, 64.474676825000074 ], [ 10.95671634200005, 64.487005927000041 ], [ 10.922618035000085, 64.507473049000055 ], [ 10.964121941000087, 64.507473049000055 ], [ 10.95671634200005, 64.55219147300005 ], [ 10.916351759000065, 64.582586981000077 ], [ 10.971202019000089, 64.602606512000079 ], [ 11.06031334700009, 64.575751044000071 ], [ 11.076182488000086, 64.523627020000049 ], [ 11.167246941000087, 64.489162502000056 ], [ 11.162771030000044, 64.445990302000041 ], [ 11.34156334700009, 64.431708075000074 ], [ 11.224864129000082, 64.322455145000049 ], [ 11.24740644600007, 64.325588283000059 ], [ 11.389333530000044, 64.405096747000073 ], [ 11.362071160000085, 64.411281643000052 ], [ 11.40984134200005, 64.452215887000079 ], [ 11.656260613000086, 64.480169989000046 ], [ 11.437754754000082, 64.465887762000079 ], [ 11.46070397200009, 64.51117584800005 ], [ 11.539561394000089, 64.521144924000055 ], [ 11.506032748000052, 64.548407294000071 ], [ 11.57007897200009, 64.537258205000057 ], [ 11.779795769000089, 64.596869208000044 ], [ 11.635752800000091, 64.582586981000077 ], [ 11.611175977000073, 64.628607489000046 ], [ 11.553233269000089, 64.603013414000031 ], [ 11.594737175000091, 64.596869208000044 ], [ 11.577159050000091, 64.575018622000073 ], [ 11.516774936000047, 64.572943427000041 ], [ 11.420664910000085, 64.636379299000055 ], [ 11.39616946700005, 64.685614325000074 ], [ 11.424082879000082, 64.695868231000077 ], [ 11.39616946700005, 64.706732489000046 ], [ 11.615896030000044, 64.740220445000034 ], [ 11.553233269000089, 64.767523505000042 ], [ 11.841807488000086, 64.794867255000042 ], [ 11.643239780000044, 64.822739976000037 ], [ 11.787282748000052, 64.835842190000051 ], [ 11.787282748000052, 64.857570705000057 ], [ 11.649424675000091, 64.84320709800005 ], [ 11.74545332100007, 64.884182033000059 ], [ 12.063731316000087, 64.959947007000039 ], [ 12.224864129000082, 64.939439195000034 ], [ 12.053477410000085, 64.97296784100007 ], [ 11.911631707000083, 64.949408270000049 ], [ 11.617035352000073, 64.869614976000037 ], [ 11.622080925000091, 64.84320709800005 ], [ 11.47828209700009, 64.810614325000074 ], [ 11.403330925000091, 64.759711005000042 ], [ 11.238536004000082, 64.740220445000034 ], [ 11.429698113000086, 64.815904039000031 ], [ 11.231700066000087, 64.822739976000037 ], [ 11.252696160000085, 64.837836005000042 ], [ 11.523773634000065, 64.862534898000035 ], [ 11.697113477000073, 64.912176825000074 ], [ 11.245371941000087, 64.857570705000057 ], [ 11.401377800000091, 64.922267971000053 ], [ 11.554209832000083, 64.89907461100006 ], [ 11.594737175000091, 64.925197658000059 ], [ 11.533946160000085, 64.904730536000045 ], [ 11.477386915000068, 64.932603257000039 ], [ 11.820160352000073, 64.981187242000033 ], [ 11.81421959700009, 65.018011786000045 ], [ 11.978526238000086, 65.068833726000037 ], [ 12.015472852000073, 65.02960846600007 ], [ 12.045379334586665, 65.060133735386799 ], [ 12.292459343623818, 64.972210191247314 ], [ 12.419893425940813, 64.987919827538008 ], [ 12.759252556860019, 64.949834296115853 ], [ 12.933970574982027, 64.991278795380083 ], [ 12.939396600372788, 65.030165309781182 ], [ 13.143415154885474, 65.119074612003715 ], [ 14.332073666000099, 65.113963805000068 ] ] ], [ [ [ 11.286306186000047, 64.558986721000053 ], [ 11.451426629000082, 64.514960028000075 ], [ 11.416758660000085, 64.472723700000074 ], [ 11.283864780000044, 64.513251044000071 ], [ 11.180186394000089, 64.507473049000055 ], [ 11.12867272200009, 64.555853583000044 ], [ 11.224864129000082, 64.569525458000044 ], [ 11.191742384000065, 64.595607815000051 ], [ 11.083994988000086, 64.588283596000053 ], [ 11.037364129000082, 64.614447333000044 ], [ 11.085785352000073, 64.652044989000046 ], [ 11.229258660000085, 64.611273505000042 ], [ 11.286306186000047, 64.558986721000053 ] ] ], [ [ [ 11.091075066000087, 64.901597398000035 ], [ 11.005707227000073, 64.898504950000074 ], [ 10.826914910000085, 64.850083726000037 ], [ 11.10132897200009, 64.953111070000034 ], [ 11.266368035000085, 64.893703518000052 ], [ 11.13217207100007, 64.838853257000039 ], [ 11.046071811000047, 64.850083726000037 ], [ 11.091075066000087, 64.901597398000035 ] ] ], [ [ [ 10.84115644600007, 64.877386786000045 ], [ 10.710948113000086, 64.863714911000045 ], [ 10.783864780000044, 64.924017645000049 ], [ 11.033457879000082, 64.988226630000042 ], [ 11.11500084700009, 64.97296784100007 ], [ 10.84115644600007, 64.877386786000045 ] ] ], [ [ [ 11.465505405000044, 64.587836005000042 ], [ 11.48023522200009, 64.556057033000059 ], [ 11.432871941000087, 64.54242584800005 ], [ 11.344493035000085, 64.57367584800005 ], [ 11.366465691000087, 64.634426174000055 ], [ 11.465505405000044, 64.587836005000042 ] ] ], [ [ [ 11.350759311000047, 64.651556708000044 ], [ 11.31226647200009, 64.599676825000074 ], [ 11.167979363000086, 64.659735419000071 ], [ 11.303965691000087, 64.692084052000041 ], [ 11.350759311000047, 64.651556708000044 ] ] ], [ [ [ 11.761729363000086, 65.119370835000041 ], [ 11.669444207000083, 65.044907945000034 ], [ 11.518809441000087, 65.054592190000051 ], [ 11.580332879000082, 65.10968659100007 ], [ 11.761729363000086, 65.119370835000041 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-16", "NAME_1": "Sør-Trøndelag" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.059826572000105, 63.204772150000011 ], [ 12.222695353000063, 63.001478577000015 ], [ 12.093297567000093, 62.907427471000048 ], [ 12.156239461000098, 62.73369130500005 ], [ 12.091230509000127, 62.586310120000107 ], [ 12.279521920600132, 62.344214039446342 ], [ 11.573071729776473, 62.396501777035326 ], [ 11.235004510050089, 62.56930776634033 ], [ 11.168858676586638, 62.666123561752954 ], [ 11.125243767885593, 62.679817817338346 ], [ 10.896523879173685, 62.707800605013858 ], [ 10.730022414402868, 62.668914089713439 ], [ 10.673540073315735, 62.695992539823806 ], [ 10.285656773141568, 62.707387192964575 ], [ 10.156827426844245, 62.654935615086515 ], [ 10.096934441970916, 62.585792548087568 ], [ 10.087012567176203, 62.428360297389759 ], [ 9.855347120872921, 62.357718614522412 ], [ 9.783051791606908, 62.28581085888402 ], [ 9.597275018027631, 62.274312852955745 ], [ 9.0906392759818, 62.380120348075593 ], [ 9.166862012971535, 62.419394436104312 ], [ 9.244893425990824, 62.564476020152199 ], [ 8.931734246038616, 62.729556383420345 ], [ 9.416200799427315, 62.833167629782281 ], [ 9.449738803702814, 62.952281805960524 ], [ 9.580686882593568, 63.020236315453587 ], [ 9.490046421405225, 63.052947496529725 ], [ 9.467102084593535, 63.191905423196715 ], [ 9.279051547890617, 63.21146495194597 ], [ 9.220398797366613, 63.190923570366465 ], [ 9.205619337962048, 63.140797431556166 ], [ 8.858663771316003, 63.138058580439122 ], [ 8.805126986920925, 63.188934028082883 ], [ 8.94312584700009, 63.212062893000052 ], [ 8.868988476736774, 63.210475979183059 ], [ 8.914991081872927, 63.35556468406287 ], [ 8.786387566000087, 63.429836330000057 ], [ 8.881114129000082, 63.397650458000044 ], [ 8.891368035000085, 63.42133209800005 ], [ 8.997243686000047, 63.418158270000049 ], [ 8.967458530000044, 63.433417059000078 ], [ 9.000824415000068, 63.466131903000075 ], [ 9.052989129000082, 63.452337958000044 ], [ 9.148610873000052, 63.375921942000048 ], [ 9.09343509200005, 63.294012762000079 ], [ 9.143077019000089, 63.330877997000073 ], [ 9.476898634000065, 63.403876044000071 ], [ 9.218028191000087, 63.372015692000048 ], [ 9.16773522200009, 63.402004299000055 ], [ 9.18295332100007, 63.434515692000048 ], [ 9.484385613000086, 63.482652085000041 ], [ 9.333018425000091, 63.466538804000038 ], [ 9.257823113000086, 63.500067450000074 ], [ 9.292165561000047, 63.459133205000057 ], [ 9.210215691000087, 63.459418036000045 ], [ 9.16732832100007, 63.466864325000074 ], [ 9.161957227000073, 63.507147528000075 ], [ 9.368011915000068, 63.563299872000073 ], [ 9.403330925000091, 63.518459377000056 ], [ 9.495371941000087, 63.576890367000033 ], [ 9.573252800000091, 63.541001695000034 ], [ 9.545909050000091, 63.580552476000037 ], [ 9.490570509000065, 63.589422919000071 ], [ 9.699066602000073, 63.644476630000042 ], [ 9.799978061000047, 63.56313711100006 ], [ 9.805918816000087, 63.513739325000074 ], [ 9.96062259200005, 63.427720445000034 ], [ 9.928477410000085, 63.377183335000041 ], [ 9.833262566000087, 63.328802802000041 ], [ 10.01343834700009, 63.361883856000077 ], [ 10.09929446700005, 63.324896552000041 ], [ 10.242198113000086, 63.326320705000057 ], [ 10.259043816000087, 63.267279364000046 ], [ 10.265879754000082, 63.331935940000051 ], [ 10.068695509000065, 63.36554596600007 ], [ 10.040863477000073, 63.406398830000057 ], [ 10.30046634200005, 63.466538804000038 ], [ 10.576914910000085, 63.430731512000079 ], [ 10.690440300000091, 63.452337958000044 ], [ 10.797862175000091, 63.417385158000059 ], [ 10.875883179165385, 63.445907681893971 ], [ 10.884431593143518, 63.386699734005504 ], [ 10.932542352147834, 63.354272772870161 ], [ 11.459073520626475, 63.336728623926831 ], [ 11.642473179193871, 63.196866359694695 ], [ 12.059826572000105, 63.204772150000011 ] ] ], [ [ [ 10.197921118787535, 63.542281307785629 ], [ 9.98015384200005, 63.493353583000044 ], [ 9.918223504000082, 63.514715887000079 ], [ 9.90211022200009, 63.589422919000071 ], [ 9.833262566000087, 63.602484442000048 ], [ 9.810801629000082, 63.627142645000049 ], [ 9.833262566000087, 63.644110419000071 ], [ 9.792246941000087, 63.664536851000037 ], [ 9.799082879000082, 63.691839911000045 ], [ 9.999847852000073, 63.723863023000035 ], [ 10.101410352000073, 63.767564195000034 ], [ 10.00521894600007, 63.746527411000045 ], [ 10.029551629000082, 63.78351471600007 ], [ 9.544118686000047, 63.665594794000071 ], [ 9.552744988000086, 63.72601959800005 ], [ 9.778086785000085, 63.767564195000034 ], [ 9.545909050000091, 63.774400132000039 ], [ 9.874278191000087, 63.863185940000051 ], [ 9.792246941000087, 63.883693752000056 ], [ 10.19703209700009, 63.938299872000073 ], [ 10.141774936000047, 63.965562242000033 ], [ 9.94312584700009, 63.918402411000045 ], [ 10.128103061000047, 63.986721096000053 ], [ 9.936289910000085, 63.959418036000045 ], [ 10.018239780000044, 64.035101630000042 ], [ 10.013682488000086, 64.118801174000055 ], [ 10.192067905000044, 64.101467190000051 ], [ 10.217539910000085, 64.123928127000056 ], [ 10.107676629000082, 64.117092190000051 ], [ 10.19703209700009, 64.158026434000078 ], [ 10.16968834700009, 64.198960679000038 ], [ 10.374522332000083, 64.185370184000078 ], [ 10.245371941000087, 64.233791408000059 ], [ 10.491221550000091, 64.29523346600007 ], [ 10.449554884000065, 64.31281159100007 ], [ 10.470713738000086, 64.356634833000044 ], [ 10.559418165000068, 64.329331773000035 ], [ 10.504730665000068, 64.370306708000044 ], [ 10.648936394000089, 64.356634833000044 ], [ 10.552989129000082, 64.405096747000073 ], [ 10.463877800000091, 64.405096747000073 ], [ 10.497325066000087, 64.429103908000059 ], [ 10.964064975718031, 64.293698635883288 ], [ 10.908977898611113, 64.222901923385052 ], [ 10.832755160722058, 64.19665029647399 ], [ 10.811826206414253, 64.143552760751277 ], [ 10.916884392700524, 64.106423245536348 ], [ 10.822988314658971, 64.041491808000501 ], [ 10.798338657303191, 63.968395493956848 ], [ 10.581090936097837, 63.85822134154165 ], [ 10.482233920658871, 63.737711900483816 ], [ 10.201372510632837, 63.634927477321185 ], [ 10.163338656953442, 63.587850247091183 ], [ 10.197921118787535, 63.542281307785629 ] ] ], [ [ [ 9.138682488000086, 63.567775783000059 ], [ 9.176036004000082, 63.562201239000046 ], [ 8.50359134200005, 63.43423086100006 ], [ 8.277842644000089, 63.466538804000038 ], [ 8.413340691000087, 63.557806708000044 ], [ 8.723480665000068, 63.567775783000059 ], [ 8.545258009000065, 63.602484442000048 ], [ 8.788259311000047, 63.640041408000059 ], [ 8.846446160000085, 63.615912177000041 ], [ 8.868174675000091, 63.646185614000046 ], [ 8.965179884000065, 63.656236070000034 ], [ 8.988291863000086, 63.592759507000039 ], [ 9.080088738000086, 63.606187242000033 ], [ 9.138682488000086, 63.567775783000059 ] ] ], [ [ [ 8.360362175000091, 63.671372789000031 ], [ 8.271739129000082, 63.685044664000031 ], [ 8.743418816000087, 63.774400132000039 ], [ 8.675059441000087, 63.767564195000034 ], [ 8.805430535000085, 63.815375067000048 ], [ 8.82553144600007, 63.734076239000046 ], [ 8.743418816000087, 63.687933661000045 ], [ 8.360362175000091, 63.671372789000031 ] ] ], [ [ [ 9.160004102000073, 63.647772528000075 ], [ 9.076345248000052, 63.612982489000046 ], [ 9.014008009000065, 63.626695054000038 ], [ 9.057871941000087, 63.661078192000048 ], [ 9.160004102000073, 63.647772528000075 ] ] ], [ [ [ 9.930837436000047, 64.027533270000049 ], [ 9.943858269000089, 64.011460679000038 ], [ 9.89226321700005, 63.997015692000048 ], [ 9.843760613000086, 64.033189195000034 ], [ 9.930837436000047, 64.027533270000049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-04", "NAME_1": "Hedmark" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.279521920600132, 62.344214039446342 ], [ 12.317469929000112, 62.234031881000092 ], [ 12.161717163000077, 61.724838155000029 ], [ 12.416481975000096, 61.582288717 ], [ 12.613782592000121, 61.547045390000036 ], [ 12.888184448000061, 61.349615581000066 ], [ 12.839815308000112, 61.226987406000049 ], [ 12.739149617000066, 61.142444763000086 ], [ 12.703802938000081, 61.046197409000044 ], [ 12.511773316000102, 61.049117127000031 ], [ 12.253287801000056, 61.001704 ], [ 12.350026082000056, 60.793344626000035 ], [ 12.594352254000029, 60.51493784600008 ], [ 12.612645711000113, 60.455380758 ], [ 12.577919148000149, 60.375902405000019 ], [ 12.491722860000039, 60.312288717000044 ], [ 12.52469242300009, 60.161703593000098 ], [ 12.483247925000057, 60.081243388000061 ], [ 12.290598185000107, 59.958718567000076 ], [ 12.102702677000138, 59.893967998000065 ], [ 11.874627299000053, 59.88493681900006 ], [ 11.841840854671716, 59.933861395986582 ], [ 11.83998050269804, 60.06181224224116 ], [ 11.585680779744166, 60.180099596119419 ], [ 11.582735223052111, 60.280093492220885 ], [ 11.431581659366088, 60.368098455978952 ], [ 11.354170363071773, 60.46132274045209 ], [ 11.237278273173729, 60.516151435140614 ], [ 11.148394810272237, 60.64151845990898 ], [ 10.727231886442382, 60.804325060053429 ], [ 10.729970736660164, 60.884190985725354 ], [ 10.450401238726158, 61.046661689085681 ], [ 10.853735792772625, 61.281169339293569 ], [ 10.687699415995212, 61.479761868415494 ], [ 10.608376091783214, 61.734940091412057 ], [ 10.51809736490145, 61.736748766542291 ], [ 10.389578077865963, 61.682178453372899 ], [ 10.058280469767851, 61.756334133713267 ], [ 10.106701287134683, 61.848214830150255 ], [ 10.085617303195988, 61.904387111975609 ], [ 10.005260451108938, 61.910846666140685 ], [ 9.9986975441563, 61.882683010412563 ], [ 9.811577183440249, 61.929863593430071 ], [ 9.80832156658704, 62.017687690034847 ], [ 9.903457878977918, 62.074454251062832 ], [ 9.656392855645777, 62.188607489843776 ], [ 9.855347120872921, 62.357718614522412 ], [ 9.917410516082441, 62.357176012163222 ], [ 10.104995964791954, 62.442648831278518 ], [ 10.07523034040787, 62.510784207025495 ], [ 10.096934441970916, 62.585792548087568 ], [ 10.156827426844245, 62.654935615086515 ], [ 10.285656773141568, 62.707387192964575 ], [ 10.673540073315735, 62.695992539823806 ], [ 10.730022414402868, 62.668914089713439 ], [ 10.896523879173685, 62.707800605013858 ], [ 11.125243767885593, 62.679817817338346 ], [ 11.168858676586638, 62.666123561752954 ], [ 11.235004510050089, 62.56930776634033 ], [ 11.573071729776473, 62.396501777035326 ], [ 12.279521920600132, 62.344214039446342 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-02", "NAME_1": "Akershus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.874627299000053, 59.88493681900006 ], [ 11.842976929000088, 59.83841583300007 ], [ 11.883741545835676, 59.80538299842658 ], [ 11.750166863809682, 59.786738592811787 ], [ 11.684382764652867, 59.713203030095713 ], [ 11.522687209447156, 59.625792345540276 ], [ 11.487908969923012, 59.635791733801454 ], [ 11.480777622189521, 59.686796373553761 ], [ 11.266940544770307, 59.786376858505207 ], [ 11.255313347632864, 59.717853909130554 ], [ 10.981893344602156, 59.719430040264115 ], [ 10.766350945739532, 59.517090968773175 ], [ 10.687958254138472, 59.483598792867319 ], [ 10.651133660000085, 59.526434637000079 ], [ 10.61459394600007, 59.697170315000051 ], [ 10.56023196700005, 59.726223049000055 ], [ 10.655528191000087, 59.856675523000035 ], [ 10.717784050000091, 59.738104559000078 ], [ 10.75660306306983, 59.844155760013756 ], [ 10.876215040691534, 59.830534370464818 ], [ 10.934247673591244, 59.873038235126444 ], [ 10.928046501844562, 59.993392646553389 ], [ 10.752708367896844, 60.137259832874975 ], [ 10.680102980268316, 60.153382880315633 ], [ 10.754103630977795, 60.168162339720197 ], [ 10.799578891652516, 60.250637926199317 ], [ 10.921845330097881, 60.356884670890793 ], [ 10.830274692023409, 60.432797350417331 ], [ 10.683823683316291, 60.447163397772556 ], [ 10.716069777298344, 60.523127753243216 ], [ 10.862262403587067, 60.490209865692691 ], [ 11.09532311387062, 60.532016100162878 ], [ 11.163973097880159, 60.622635996553981 ], [ 11.237278273173729, 60.516151435140614 ], [ 11.354170363071773, 60.46132274045209 ], [ 11.431581659366088, 60.368098455978952 ], [ 11.582735223052111, 60.280093492220885 ], [ 11.585680779744166, 60.180099596119419 ], [ 11.83998050269804, 60.06181224224116 ], [ 11.841840854671716, 59.933861395986582 ], [ 11.874627299000053, 59.88493681900006 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-01", "NAME_1": "Østfold" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.883741545835676, 59.80538299842658 ], [ 11.891656128000108, 59.705762432000043 ], [ 11.674925171000012, 59.607112122000032 ], [ 11.811661011000069, 59.24966624000011 ], [ 11.66438317900014, 58.920073955000063 ], [ 11.611569865000092, 58.893150533000053 ], [ 11.45199304200014, 58.896044414000031 ], [ 11.453233276000077, 58.960484925000046 ], [ 11.389333530000044, 59.080755927000041 ], [ 11.344574415000068, 59.111395575000074 ], [ 11.182383660000085, 59.116034247000073 ], [ 11.174652540000068, 59.14093659100007 ], [ 11.20671634200005, 59.145697333000044 ], [ 11.176442905000044, 59.196844794000071 ], [ 11.135508660000085, 59.183172919000071 ], [ 11.135508660000085, 59.142238674000055 ], [ 11.087738477000073, 59.175767320000034 ], [ 11.091075066000087, 59.127997137000079 ], [ 11.032481316000087, 59.127997137000079 ], [ 10.948496941000087, 59.183335679000038 ], [ 10.916351759000065, 59.142238674000055 ], [ 10.90211022200009, 59.196844794000071 ], [ 10.822927280000044, 59.163967190000051 ], [ 10.779144727000073, 59.189398505000042 ], [ 10.772959832000083, 59.252101955000057 ], [ 10.738129102000073, 59.216701565000051 ], [ 10.779144727000073, 59.312933661000045 ], [ 10.674082879000082, 59.315741278000075 ], [ 10.642751498000052, 59.374945380000042 ], [ 10.659678582000083, 59.400213934000078 ], [ 10.591644727000073, 59.430650132000039 ], [ 10.656423373000052, 59.497870184000078 ], [ 10.648936394000089, 59.443833726000037 ], [ 10.67514082100007, 59.44086334800005 ], [ 10.687958254138472, 59.483598792867319 ], [ 10.766350945739532, 59.517090968773175 ], [ 10.981893344602156, 59.719430040264115 ], [ 11.255313347632864, 59.717853909130554 ], [ 11.266940544770307, 59.786376858505207 ], [ 11.289729851951108, 59.786971136808461 ], [ 11.480777622189521, 59.686796373553761 ], [ 11.487908969923012, 59.635791733801454 ], [ 11.522687209447156, 59.625792345540276 ], [ 11.684382764652867, 59.713203030095713 ], [ 11.750166863809682, 59.786738592811787 ], [ 11.883741545835676, 59.80538299842658 ] ] ], [ [ [ 11.070323113000086, 59.079331773000035 ], [ 11.082367384000065, 59.067857164000031 ], [ 11.046397332000083, 59.02680084800005 ], [ 10.991465691000087, 59.033596096000053 ], [ 11.00326582100007, 59.086493231000077 ], [ 11.070323113000086, 59.079331773000035 ] ] ], [ [ [ 10.910492384000065, 59.116441148000035 ], [ 10.883799675000091, 59.072170315000051 ], [ 10.829112175000091, 59.099432684000078 ], [ 10.855479363000086, 59.115383205000057 ], [ 10.910492384000065, 59.116441148000035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-20", "NAME_1": "Finnmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.954077189000088, 69.027260641000041 ], [ 28.827573283000106, 69.090770976 ], [ 28.852171265000095, 69.203528952000042 ], [ 29.229254191000052, 69.37685170500005 ], [ 29.34454431100005, 69.464391582000118 ], [ 29.147140341000124, 69.663914287000026 ], [ 28.404550008000058, 69.802252096000117 ], [ 28.381192260000034, 69.856202291000088 ], [ 28.167355184000115, 69.894339499000054 ], [ 27.897294149000061, 70.070685324000053 ], [ 27.665060262000054, 70.068282370000091 ], [ 27.334537801000124, 69.96862436900004 ], [ 27.352417847000083, 69.948703105 ], [ 27.311800170000055, 69.929479472000097 ], [ 27.100340210000098, 69.901755066000064 ], [ 26.864592326000064, 69.938083599000024 ], [ 26.500686890000082, 69.918317362000053 ], [ 26.418728068000092, 69.835635071000084 ], [ 26.198276408000112, 69.715435690000035 ], [ 26.005109904000022, 69.689339091000036 ], [ 25.961701701000038, 69.652545472000057 ], [ 26.0039730230001, 69.587174785000073 ], [ 25.886667521000049, 69.520873922000064 ], [ 25.886667521000049, 69.455193176000122 ], [ 25.841398966000042, 69.417779439000057 ], [ 25.877365763000114, 69.370805563 ], [ 25.78662194900005, 69.312772929000019 ], [ 25.737219279000044, 69.218205058000038 ], [ 25.771222372000068, 69.13510935500004 ], [ 25.750241739000074, 69.05924835200004 ], [ 25.795820353000067, 68.993309225000033 ], [ 25.627768595000106, 68.874143372000034 ], [ 25.433930298000121, 68.883858542 ], [ 25.201283, 68.812648418000052 ], [ 25.149606567000092, 68.764641012000098 ], [ 25.132449992000119, 68.64764556900009 ], [ 24.951789185000024, 68.605064189000032 ], [ 24.905177042000076, 68.556953430000064 ], [ 24.663434693000085, 68.666094056000119 ], [ 24.332498820000069, 68.708623760000066 ], [ 23.929009237000031, 68.816214091000106 ], [ 23.787209106000091, 68.799780986000044 ], [ 23.734809204000072, 68.715445048000035 ], [ 23.197581014000093, 68.618034973000064 ], [ 23.071490519000037, 68.680873515000044 ], [ 22.851658976000095, 68.675705872000023 ], [ 22.570125773000115, 68.726813864000022 ], [ 22.409205363000098, 68.712912903000031 ], [ 22.371378215000107, 68.822621969000053 ], [ 21.946100152000042, 69.065702532 ], [ 22.5467171570711, 69.118727119460971 ], [ 22.586456333093281, 69.161515204962711 ], [ 22.591107212128122, 69.230554918274834 ], [ 22.35866662036824, 69.393852443935089 ], [ 22.335515577981539, 69.468266506693908 ], [ 22.774816929058034, 69.515240384136405 ], [ 22.830989210883331, 69.585468654954411 ], [ 22.933411899739383, 69.639935615336356 ], [ 22.628675977814112, 69.705874742325477 ], [ 22.526408318589006, 69.800029201886105 ], [ 22.58428592275709, 69.840698553895095 ], [ 22.5386556333508, 69.867208564123928 ], [ 22.557259148590845, 69.91733470293417 ], [ 22.321407912145389, 69.951596178520788 ], [ 22.112221713761073, 70.158379422572239 ], [ 21.874510125341999, 70.102439683844295 ], [ 21.617109816065124, 70.187240709391176 ], [ 21.233878920175982, 70.224285600200233 ], [ 21.439300977000073, 70.269476630000042 ], [ 21.489756707000083, 70.208482164000031 ], [ 21.517751498000052, 70.304673570000034 ], [ 21.571462436000047, 70.318915106000077 ], [ 21.613291863000086, 70.269924221000053 ], [ 21.709483269000089, 70.250067450000074 ], [ 21.874034050000091, 70.147040106000077 ], [ 21.860362175000091, 70.202297268000052 ], [ 21.894541863000086, 70.208482164000031 ], [ 21.805674675000091, 70.257228908000059 ], [ 22.010101759000065, 70.324611721000053 ], [ 22.031586134000065, 70.318345445000034 ], [ 21.983897332000083, 70.284247137000079 ], [ 22.095225457000083, 70.307806708000044 ], [ 22.117198113000086, 70.233465887000079 ], [ 22.152842644000089, 70.246527411000045 ], [ 22.140879754000082, 70.284247137000079 ], [ 22.305837436000047, 70.287298895000049 ], [ 22.25757897200009, 70.229559637000079 ], [ 22.291758660000085, 70.167547919000071 ], [ 22.237071160000085, 70.140204169000071 ], [ 22.274668816000087, 70.135484117000033 ], [ 22.559336785000085, 70.126613674000055 ], [ 22.32593834700009, 70.167547919000071 ], [ 22.400645379000082, 70.258286851000037 ], [ 22.603688998000052, 70.218491929000038 ], [ 22.967051629000082, 70.207464911000045 ], [ 22.836680535000085, 70.120347398000035 ], [ 22.434580925000091, 70.088934637000079 ], [ 22.28492272200009, 70.044012762000079 ], [ 22.867198113000086, 70.106024481000077 ], [ 23.018565300000091, 70.147040106000077 ], [ 22.998057488000086, 70.082180080000057 ], [ 23.020030144000089, 70.038072007000039 ], [ 23.128428582000083, 70.033758856000077 ], [ 23.148936394000089, 69.975734768000052 ], [ 23.094411655000044, 69.955267645000049 ], [ 23.31413821700005, 69.996527411000045 ], [ 23.32984459700009, 69.948391018000052 ], [ 23.539317254000082, 70.024115302000041 ], [ 23.296885613000086, 70.039780992000033 ], [ 23.17554772200009, 70.09243398600006 ], [ 23.379242384000065, 70.123236395000049 ], [ 23.40211022200009, 70.140204169000071 ], [ 23.299082879000082, 70.167547919000071 ], [ 23.422048373000052, 70.195461330000057 ], [ 23.24390709700009, 70.215887762000079 ], [ 23.531911655000044, 70.243841864000046 ], [ 23.292246941000087, 70.243841864000046 ], [ 23.312836134000065, 70.256984768000052 ], [ 23.614431186000047, 70.304673570000034 ], [ 23.463633660000085, 70.318345445000034 ], [ 23.513194207000083, 70.36554596600007 ], [ 23.917979363000086, 70.509426174000055 ], [ 24.350271030000044, 70.456244208000044 ], [ 24.231455925000091, 70.523830471000053 ], [ 24.102712436000047, 70.541408596000053 ], [ 24.264333530000044, 70.606268622000073 ], [ 24.282237175000091, 70.657538153000075 ], [ 24.352386915000068, 70.690985419000071 ], [ 24.723480665000068, 70.621039130000042 ], [ 24.724864129000082, 70.665228583000044 ], [ 24.65593509200005, 70.709377346000053 ], [ 24.245127800000091, 70.784491278000075 ], [ 24.269379102000073, 70.838446356000077 ], [ 24.395762566000087, 70.866888739000046 ], [ 24.464121941000087, 70.818019924000055 ], [ 24.635427280000044, 70.779771226000037 ], [ 24.649668816000087, 70.798773505000042 ], [ 24.600759311000047, 70.825425523000035 ], [ 24.613291863000086, 70.859361070000034 ], [ 24.724864129000082, 70.873236395000049 ], [ 24.608164910000085, 70.894354559000078 ], [ 24.62867272200009, 70.908026434000078 ], [ 24.57398522200009, 70.935288804000038 ], [ 24.65593509200005, 70.949611721000053 ], [ 24.58765709700009, 70.962591864000046 ], [ 24.608653191000087, 70.970526434000078 ], [ 24.78288821700005, 70.965969143000052 ], [ 24.860199415000068, 70.92837148600006 ], [ 24.820485873000052, 70.908026434000078 ], [ 24.984873894000089, 70.914252020000049 ], [ 24.971202019000089, 70.962591864000046 ], [ 25.033457879000082, 70.97134023600006 ], [ 25.062836134000065, 70.957586981000077 ], [ 25.053233269000089, 70.927883205000057 ], [ 24.916026238000086, 70.873236395000049 ], [ 25.067393425000091, 70.852769273000035 ], [ 25.153575066000087, 70.919501044000071 ], [ 25.24187259200005, 70.862372137000079 ], [ 25.266123894000089, 70.825425523000035 ], [ 25.245616082000083, 70.79132721600007 ], [ 25.34156334700009, 70.812445380000042 ], [ 25.39226321700005, 70.884426174000055 ], [ 25.341807488000086, 70.952704169000071 ], [ 25.36500084700009, 70.976141669000071 ], [ 25.535980665000068, 70.922919012000079 ], [ 25.423106316000087, 70.859605210000041 ], [ 25.441661004000082, 70.841498114000046 ], [ 25.662608269000089, 70.895331122000073 ], [ 25.756114129000082, 70.859605210000041 ], [ 25.853037957000083, 70.894029039000031 ], [ 25.918711785000085, 70.872870184000078 ], [ 25.75326582100007, 70.784491278000075 ], [ 25.629161004000082, 70.76398346600007 ], [ 25.656504754000082, 70.736029364000046 ], [ 25.620127800000091, 70.712307033000059 ], [ 25.07357832100007, 70.503322658000059 ], [ 25.287119988000086, 70.510728257000039 ], [ 25.242523634000065, 70.48663971600007 ], [ 25.05990644600007, 70.489650783000059 ], [ 25.287119988000086, 70.456122137000079 ], [ 25.251800977000073, 70.448065497000073 ], [ 25.256602410000085, 70.386379299000055 ], [ 25.197764519000089, 70.400376695000034 ], [ 25.081065300000091, 70.359320380000042 ], [ 25.135752800000091, 70.353094794000071 ], [ 25.105479363000086, 70.33624909100007 ], [ 25.122080925000091, 70.318345445000034 ], [ 25.186778191000087, 70.339341539000031 ], [ 25.20875084700009, 70.31671784100007 ], [ 24.97982832100007, 70.229437567000048 ], [ 24.946787957000083, 70.157619533000059 ], [ 24.943369988000086, 70.102362372000073 ], [ 25.004242384000065, 70.064032294000071 ], [ 25.037119988000086, 70.064357815000051 ], [ 25.012217644000089, 70.133978583000044 ], [ 25.094737175000091, 70.153876044000071 ], [ 25.07357832100007, 70.126613674000055 ], [ 25.135752800000091, 70.126613674000055 ], [ 25.081065300000091, 70.106024481000077 ], [ 25.159434441000087, 70.080877997000073 ], [ 25.252696160000085, 70.101304429000038 ], [ 25.324392123000052, 70.182440497000073 ], [ 25.54037519600007, 70.297837632000039 ], [ 25.423106316000087, 70.325140692000048 ], [ 25.44109134200005, 70.342230536000045 ], [ 25.990570509000065, 70.606512762000079 ], [ 26.070811394000089, 70.712469794000071 ], [ 26.13640384200005, 70.723049221000053 ], [ 26.374278191000087, 70.868475653000075 ], [ 26.613617384000065, 70.949123440000051 ], [ 26.69117272200009, 70.955796617000033 ], [ 26.725352410000085, 70.927883205000057 ], [ 26.73015384200005, 70.887884833000044 ], [ 26.66382897200009, 70.849310614000046 ], [ 26.74577884200005, 70.832261460000041 ], [ 26.69117272200009, 70.736029364000046 ], [ 26.341644727000073, 70.647935289000031 ], [ 26.656993035000085, 70.640529690000051 ], [ 26.560801629000082, 70.517645575000074 ], [ 26.581309441000087, 70.476629950000074 ], [ 26.521332227000073, 70.448391018000052 ], [ 26.505869988000086, 70.362860419000071 ], [ 26.649587436000047, 70.379787502000056 ], [ 26.63445071700005, 70.413031317000048 ], [ 26.753103061000047, 70.427313544000071 ], [ 26.81226647200009, 70.47992584800005 ], [ 27.102061394000089, 70.469794012000079 ], [ 26.976084832000083, 70.527411200000074 ], [ 27.007090691000087, 70.558539130000042 ], [ 26.972911004000082, 70.565375067000048 ], [ 27.080902540000068, 70.613185940000051 ], [ 27.266612175000091, 70.585272528000075 ], [ 27.099864129000082, 70.641099351000037 ], [ 27.156748894000089, 70.681463934000078 ], [ 27.080902540000068, 70.70258209800005 ], [ 27.110606316000087, 70.728705145000049 ], [ 27.32943769600007, 70.743312893000052 ], [ 27.280446811000047, 70.774725653000075 ], [ 27.32398522200009, 70.823635158000059 ], [ 27.629649285000085, 70.80499909100007 ], [ 27.48015384200005, 70.825425523000035 ], [ 27.534027540000068, 70.845933335000041 ], [ 27.391286655000044, 70.876369533000059 ], [ 27.410492384000065, 70.914252020000049 ], [ 27.335134311000047, 70.884019273000035 ], [ 27.190928582000083, 70.894964911000045 ], [ 27.122569207000083, 70.921698309000078 ], [ 27.133799675000091, 70.950018622000073 ], [ 27.34896894600007, 70.942124742000033 ], [ 27.232432488000086, 70.996771552000041 ], [ 27.221690300000091, 71.018947658000059 ], [ 27.253184441000087, 71.026312567000048 ], [ 27.476410352000073, 71.006659247000073 ], [ 27.554209832000083, 70.955267645000049 ], [ 27.582530144000089, 71.017279364000046 ], [ 27.533050977000073, 71.02875397300005 ], [ 27.524587436000047, 71.074408270000049 ], [ 27.64234459700009, 71.095445054000038 ], [ 27.65015709700009, 71.127101955000057 ], [ 27.715505405000044, 71.104234117000033 ], [ 27.698008660000085, 71.065659898000035 ], [ 27.721690300000034, 71.059719143000052 ], [ 27.87671959700009, 71.03774648600006 ], [ 28.043223504000082, 71.070990302000041 ], [ 28.081065300000034, 71.040961005000042 ], [ 28.191416863000086, 71.086127020000049 ], [ 28.260996941000087, 71.055731512000079 ], [ 28.19890384200005, 71.017279364000046 ], [ 28.219248894000089, 71.017279364000046 ], [ 28.18523196700005, 70.996771552000041 ], [ 28.239756707000083, 71.011053778000075 ], [ 28.205088738000086, 70.983099677000041 ], [ 28.491465691000087, 70.999823309000078 ], [ 28.548838738000086, 70.972601630000042 ], [ 28.483164910000085, 70.889471747000073 ], [ 28.369476759000065, 70.886908270000049 ], [ 28.445160352000073, 70.866400458000044 ], [ 28.34343509200005, 70.845933335000041 ], [ 28.363291863000086, 70.825425523000035 ], [ 28.225433790000068, 70.832261460000041 ], [ 28.301280144000089, 70.812445380000042 ], [ 28.265879754000082, 70.794989325000074 ], [ 28.02312259200005, 70.792914130000042 ], [ 27.998789910000085, 70.815741278000075 ], [ 27.760020379000082, 70.79132721600007 ], [ 27.828298373000052, 70.770819403000075 ], [ 27.773692254000082, 70.743557033000059 ], [ 27.899668816000087, 70.76821523600006 ], [ 28.13054446700005, 70.736029364000046 ], [ 27.65015709700009, 70.606350002000056 ], [ 28.253428582000083, 70.716376044000071 ], [ 28.301280144000089, 70.70258209800005 ], [ 28.233164910000085, 70.615179755000042 ], [ 27.84937584700009, 70.482855536000045 ], [ 27.883555535000085, 70.428208726000037 ], [ 27.94499759200005, 70.489162502000056 ], [ 27.979746941000087, 70.497056382000039 ], [ 27.938161655000044, 70.469794012000079 ], [ 28.18523196700005, 70.503322658000059 ], [ 28.040863477000073, 70.44476959800005 ], [ 28.13054446700005, 70.469794012000079 ], [ 28.104014519000089, 70.454331773000035 ], [ 28.127126498000052, 70.441839911000045 ], [ 28.252940300000034, 70.51007721600007 ], [ 28.33529707100007, 70.517645575000074 ], [ 28.160655144000089, 70.382798570000034 ], [ 28.167246941000087, 70.135484117000033 ], [ 28.013845248000052, 70.071356512000079 ], [ 28.066254102000073, 70.063177802000041 ], [ 28.183929884000065, 70.11554596600007 ], [ 28.225433790000068, 70.174017645000049 ], [ 28.191416863000086, 70.284247137000079 ], [ 28.232676629000082, 70.399115302000041 ], [ 28.39039147200009, 70.493353583000044 ], [ 28.458832227000073, 70.489650783000059 ], [ 28.507334832000083, 70.448716539000031 ], [ 28.500498894000089, 70.482855536000045 ], [ 28.555023634000065, 70.510728257000039 ], [ 28.458832227000073, 70.517645575000074 ], [ 28.40170332100007, 70.558986721000053 ], [ 28.516856316000087, 70.678168036000045 ], [ 28.620290561000047, 70.678290106000077 ], [ 28.526215040000068, 70.721747137000079 ], [ 28.555023634000065, 70.750392971000053 ], [ 28.79468834700009, 70.873236395000049 ], [ 29.082692905000044, 70.880682684000078 ], [ 29.104502800000034, 70.873032945000034 ], [ 29.06226647200009, 70.859605210000041 ], [ 29.221364780000044, 70.855414130000042 ], [ 29.282399936000047, 70.805121161000045 ], [ 29.404795769000089, 70.784491278000075 ], [ 29.294932488000086, 70.743557033000059 ], [ 29.417816602000073, 70.736029364000046 ], [ 29.322276238000086, 70.723049221000053 ], [ 29.363780144000089, 70.709377346000053 ], [ 29.281423373000052, 70.681463934000078 ], [ 29.30640709700009, 70.652899481000077 ], [ 29.392100457000083, 70.697333075000074 ], [ 29.699554884000065, 70.743719794000071 ], [ 29.77898196700005, 70.726548570000034 ], [ 29.781504754000082, 70.68891022300005 ], [ 29.679209832000083, 70.620021877000056 ], [ 29.823090040000068, 70.633693752000056 ], [ 29.99382571700005, 70.713080145000049 ], [ 30.104746941000087, 70.710760809000078 ], [ 30.20679772200009, 70.681463934000078 ], [ 30.096934441000087, 70.647935289000031 ], [ 30.34734134200005, 70.596136786000045 ], [ 30.12476647200009, 70.551703192000048 ], [ 30.165212436000047, 70.531236070000034 ], [ 30.000743035000085, 70.538072007000039 ], [ 30.163096550000034, 70.524603583000044 ], [ 30.50163821700005, 70.558539130000042 ], [ 30.58179772200009, 70.542181708000044 ], [ 30.599131707000083, 70.529771226000037 ], [ 30.562347852000073, 70.517645575000074 ], [ 30.731944207000083, 70.468166408000059 ], [ 30.786631707000083, 70.420640367000033 ], [ 30.94695071700005, 70.450018622000073 ], [ 31.063324415000068, 70.366766669000071 ], [ 31.021739129000082, 70.325140692000048 ], [ 31.076996290000068, 70.284247137000079 ], [ 30.548838738000086, 70.24868398600006 ], [ 30.488942905000044, 70.203070380000042 ], [ 30.374847852000073, 70.18585846600007 ], [ 30.35523522200009, 70.129706122000073 ], [ 30.119476759000065, 70.084906317000048 ], [ 30.158946160000085, 70.071356512000079 ], [ 29.22046959700009, 70.120347398000035 ], [ 28.65365644600007, 70.182318427000041 ], [ 28.61654707100007, 70.176906643000052 ], [ 28.596690300000034, 70.161322333000044 ], [ 28.75367272200009, 70.167547919000071 ], [ 28.610362175000034, 70.120347398000035 ], [ 28.629405144000089, 70.107123114000046 ], [ 28.849945509000065, 70.098578192000048 ], [ 28.732676629000082, 70.085598049000055 ], [ 29.192556186000047, 70.037176825000074 ], [ 29.130381707000083, 70.016750393000052 ], [ 29.158376498000052, 70.00922272300005 ], [ 29.34343509200005, 70.016750393000052 ], [ 29.685883009000065, 69.969549872000073 ], [ 29.363780144000089, 69.85968659100007 ], [ 29.535166863000086, 69.914252020000049 ], [ 29.741221550000034, 69.907456773000035 ], [ 29.775401238000086, 69.838568427000041 ], [ 29.589691602000073, 69.722479559000078 ], [ 29.507985873000052, 69.708807684000078 ], [ 29.543467644000089, 69.708319403000075 ], [ 29.487315300000034, 69.661078192000048 ], [ 29.680023634000065, 69.735419012000079 ], [ 29.901621941000087, 69.736314195000034 ], [ 30.030446811000047, 69.775946356000077 ], [ 30.062754754000082, 69.770249742000033 ], [ 29.936696811000047, 69.705755927000041 ], [ 29.939300977000073, 69.687730210000041 ], [ 30.071136915000068, 69.739935614000046 ], [ 30.186289910000085, 69.687730210000041 ], [ 30.110606316000087, 69.756008205000057 ], [ 30.20679772200009, 69.770249742000033 ], [ 30.158946160000085, 69.811224677000041 ], [ 30.165212436000047, 69.87954336100006 ], [ 30.289235873000052, 69.886542059000078 ], [ 30.32398522200009, 69.867132880000042 ], [ 30.268809441000087, 69.845404364000046 ], [ 30.402598504000082, 69.831244208000044 ], [ 30.40984134200005, 69.702297268000052 ], [ 30.337087436000047, 69.674058335000041 ], [ 30.443532748000052, 69.678412177000041 ], [ 30.450694207000083, 69.810288804000038 ], [ 30.482920769000089, 69.818182684000078 ], [ 30.698741082000083, 69.808539130000042 ], [ 30.716970248000052, 69.770249742000033 ], [ 30.840953890666185, 69.805841902463143 ], [ 30.927703491000045, 69.672130839000076 ], [ 30.927031697000132, 69.578389792000095 ], [ 30.898247925000135, 69.54423167000003 ], [ 30.755310913000073, 69.521494039000046 ], [ 30.5116565350001, 69.536325176000062 ], [ 30.230691772000057, 69.637300924 ], [ 30.119070679000117, 69.634562073000055 ], [ 30.208780965000074, 69.608672181000017 ], [ 30.231621948000111, 69.55833933600006 ], [ 30.154830770000046, 69.506094462000064 ], [ 30.123411499000099, 69.441912334 ], [ 29.948073364000038, 69.365586243000067 ], [ 29.376790405000122, 69.301610820000079 ], [ 29.221037638000041, 69.098419089000075 ], [ 29.120268595000141, 69.046846009000078 ], [ 28.954077189000088, 69.027260641000041 ] ] ], [ [ [ 22.922373894000089, 70.304673570000034 ], [ 22.988536004000082, 70.292954820000034 ], [ 23.016286655000044, 70.254299221000053 ], [ 22.445160352000073, 70.291449286000045 ], [ 22.373708530000044, 70.331976630000042 ], [ 22.421071811000047, 70.361761786000045 ], [ 22.504649285000085, 70.325140692000048 ], [ 22.473643425000091, 70.380275783000059 ], [ 22.600271030000044, 70.366766669000071 ], [ 22.674652540000068, 70.398871161000045 ], [ 22.714366082000083, 70.336981512000079 ], [ 22.756358269000089, 70.394964911000045 ], [ 22.827972852000073, 70.333726304000038 ], [ 22.95639082100007, 70.325140692000048 ], [ 22.922373894000089, 70.304673570000034 ] ] ], [ [ [ 23.65601647200009, 70.503322658000059 ], [ 23.628103061000047, 70.489650783000059 ], [ 23.662282748000052, 70.469794012000079 ], [ 23.592539910000085, 70.415269273000035 ], [ 23.319021030000044, 70.34210846600007 ], [ 23.292246941000087, 70.331976630000042 ], [ 23.381602410000085, 70.318345445000034 ], [ 23.216319207000083, 70.282782294000071 ], [ 23.082041863000086, 70.301662502000056 ], [ 23.134613477000073, 70.414536851000037 ], [ 23.038910352000073, 70.340969143000052 ], [ 22.854014519000089, 70.407700914000031 ], [ 22.940114780000044, 70.407049872000073 ], [ 22.963877800000091, 70.421372789000031 ], [ 22.897227410000085, 70.450995184000078 ], [ 23.018565300000091, 70.497056382000039 ], [ 23.223399285000085, 70.517645575000074 ], [ 23.17554772200009, 70.547593492000033 ], [ 23.262054884000065, 70.536118882000039 ], [ 23.278575066000087, 70.476629950000074 ], [ 23.326426629000082, 70.531236070000034 ], [ 23.307627800000091, 70.550441799000055 ], [ 23.539317254000082, 70.544867255000042 ], [ 23.390961134000065, 70.617987372000073 ], [ 23.573496941000087, 70.613185940000051 ], [ 23.60132897200009, 70.579046942000048 ], [ 23.580332879000082, 70.531236070000034 ], [ 23.65601647200009, 70.503322658000059 ] ] ], [ [ [ 24.066905144000089, 70.660956122000073 ], [ 24.128428582000083, 70.620021877000056 ], [ 24.101573113000086, 70.588690497000073 ], [ 23.928965691000087, 70.523260809000078 ], [ 23.804209832000083, 70.513332424000055 ], [ 23.750987175000091, 70.523830471000053 ], [ 23.686778191000087, 70.599514065000051 ], [ 23.641774936000047, 70.599514065000051 ], [ 23.690196160000085, 70.667792059000078 ], [ 23.635508660000085, 70.69204336100006 ], [ 23.709239129000082, 70.748602606000077 ], [ 23.815684441000087, 70.751166083000044 ], [ 23.840342644000089, 70.743557033000059 ], [ 23.831879102000073, 70.703355210000041 ], [ 23.977793816000087, 70.706935940000051 ], [ 24.066905144000089, 70.660956122000073 ] ] ], [ [ [ 22.422129754000082, 70.510728257000039 ], [ 22.308929884000065, 70.50336334800005 ], [ 22.285655144000089, 70.541571356000077 ], [ 22.243337436000047, 70.489650783000059 ], [ 22.154470248000052, 70.472316799000055 ], [ 22.185557488000086, 70.534654039000031 ], [ 22.264414910000085, 70.571600653000075 ], [ 22.237071160000085, 70.579046942000048 ], [ 22.33334394600007, 70.613185940000051 ], [ 22.04070071700005, 70.593573309000078 ], [ 22.011241082000083, 70.599514065000051 ], [ 22.07203209700009, 70.633693752000056 ], [ 21.950368686000047, 70.647935289000031 ], [ 22.221527540000068, 70.631903387000079 ], [ 22.250336134000065, 70.649400132000039 ], [ 22.229746941000087, 70.674627997000073 ], [ 22.265879754000082, 70.674994208000044 ], [ 22.415212436000047, 70.626206773000035 ], [ 22.38453209700009, 70.709377346000053 ], [ 22.492686394000089, 70.675726630000042 ], [ 22.541026238000086, 70.717474677000041 ], [ 22.651540561000047, 70.687689520000049 ], [ 22.594981316000087, 70.652533270000049 ], [ 22.688975457000083, 70.660956122000073 ], [ 22.724864129000082, 70.603583075000074 ], [ 22.747894727000073, 70.647406317000048 ], [ 22.826182488000086, 70.647935289000031 ], [ 22.722992384000065, 70.748480536000045 ], [ 22.805674675000091, 70.76398346600007 ], [ 22.854014519000089, 70.723049221000053 ], [ 22.923838738000086, 70.724798895000049 ], [ 22.895030144000089, 70.695135809000078 ], [ 22.969086134000065, 70.661200262000079 ], [ 23.032725457000083, 70.701361395000049 ], [ 23.025401238000086, 70.723049221000053 ], [ 23.120941602000073, 70.709377346000053 ], [ 23.09310957100007, 70.732123114000046 ], [ 23.182383660000085, 70.736029364000046 ], [ 23.029958530000044, 70.790838934000078 ], [ 23.100596550000091, 70.798773505000042 ], [ 23.066254102000073, 70.812445380000042 ], [ 23.182139519000089, 70.794989325000074 ], [ 23.16187584700009, 70.825425523000035 ], [ 23.328949415000068, 70.779282945000034 ], [ 23.312998894000089, 70.86163971600007 ], [ 23.342539910000085, 70.866034247000073 ], [ 23.48414147200009, 70.798773505000042 ], [ 23.387868686000047, 70.784491278000075 ], [ 23.457367384000065, 70.770819403000075 ], [ 23.333262566000087, 70.750392971000053 ], [ 23.319590691000087, 70.709377346000053 ], [ 23.25131269600007, 70.695135809000078 ], [ 23.271739129000082, 70.681463934000078 ], [ 23.158539259000065, 70.694159247000073 ], [ 23.134613477000073, 70.667792059000078 ], [ 23.182383660000085, 70.654120184000078 ], [ 23.151866082000083, 70.63226959800005 ], [ 23.059418165000068, 70.626206773000035 ], [ 23.114105665000068, 70.613185940000051 ], [ 23.088877800000091, 70.58624909100007 ], [ 23.018321160000085, 70.603949286000045 ], [ 22.976898634000065, 70.565375067000048 ], [ 22.880869988000086, 70.579046942000048 ], [ 22.936045769000089, 70.558539130000042 ], [ 22.788584832000083, 70.523830471000053 ], [ 22.778330925000091, 70.551703192000048 ], [ 22.643809441000087, 70.564154364000046 ], [ 22.631602410000085, 70.526312567000048 ], [ 22.56609134200005, 70.503322658000059 ], [ 22.489268425000091, 70.531927802000041 ], [ 22.46843509200005, 70.494859117000033 ], [ 22.422129754000082, 70.510728257000039 ] ] ], [ [ [ 24.073090040000068, 70.962591864000046 ], [ 24.245127800000091, 70.955796617000033 ], [ 24.043142123000052, 70.914129950000074 ], [ 23.909353061000047, 70.955796617000033 ], [ 24.038910352000073, 70.976263739000046 ], [ 23.885752800000091, 70.996161200000074 ], [ 23.960134311000047, 71.028631903000075 ], [ 24.224619988000086, 70.996771552000041 ], [ 24.106700066000087, 70.993882554000038 ], [ 24.073090040000068, 70.962591864000046 ] ] ], [ [ [ 26.135996941000087, 71.03774648600006 ], [ 26.21810957100007, 71.03156159100007 ], [ 26.072601759000065, 70.975165106000077 ], [ 25.731130405000044, 70.975409247000073 ], [ 25.71851647200009, 70.955796617000033 ], [ 25.75326582100007, 70.942124742000033 ], [ 25.553396030000044, 70.927883205000057 ], [ 25.416270379000082, 70.983099677000041 ], [ 25.560801629000082, 71.017279364000046 ], [ 25.292491082000083, 71.028143622000073 ], [ 25.347992384000065, 71.065659898000035 ], [ 25.31381269600007, 71.072455145000049 ], [ 25.458832227000073, 71.072007554000038 ], [ 25.471690300000091, 71.102606512000079 ], [ 25.71851647200009, 71.051988023000035 ], [ 25.553396030000044, 71.140773830000057 ], [ 25.66732832100007, 71.165269273000035 ], [ 25.807383660000085, 71.154445705000057 ], [ 25.783946160000085, 71.112209377000056 ], [ 25.805674675000091, 71.095851955000057 ], [ 26.029795769000089, 71.116522528000075 ], [ 26.033702019000089, 71.087225653000075 ], [ 25.990977410000085, 71.06704336100006 ], [ 25.889821811000047, 71.051988023000035 ], [ 25.964366082000083, 71.03774648600006 ], [ 25.930186394000089, 71.011053778000075 ], [ 25.95639082100007, 71.002020575000074 ], [ 26.135996941000087, 71.03774648600006 ] ] ], [ [ [ 30.02116946700005, 69.83234284100007 ], [ 30.107432488000086, 69.828599351000037 ], [ 29.905039910000085, 69.777085679000038 ], [ 29.846527540000068, 69.796576239000046 ], [ 29.795746290000068, 69.756008205000057 ], [ 29.713226759000065, 69.763413804000038 ], [ 29.830088738000086, 69.838568427000041 ], [ 29.80836022200009, 69.86587148600006 ], [ 29.842458530000044, 69.908921617000033 ], [ 29.994476759000065, 69.893784898000035 ], [ 30.02116946700005, 69.83234284100007 ] ] ], [ [ [ 21.738129102000073, 70.378241278000075 ], [ 21.79273522200009, 70.35805898600006 ], [ 21.793711785000085, 70.323431708000044 ], [ 21.703135613000086, 70.261786200000074 ], [ 21.676931186000047, 70.284816799000055 ], [ 21.684580925000091, 70.363836981000077 ], [ 21.738129102000073, 70.378241278000075 ] ] ], [ [ [ 24.836924675000091, 71.094875393000052 ], [ 24.770030144000089, 71.026190497000073 ], [ 24.614268425000091, 71.056626695000034 ], [ 24.67164147200009, 71.088080145000049 ], [ 24.732920769000089, 71.068589585000041 ], [ 24.71257571700005, 71.107570705000057 ], [ 24.836924675000091, 71.094875393000052 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-03", "NAME_1": "Oslo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.75660306306983, 59.844155760013756 ], [ 10.752614780000044, 59.888902085000041 ], [ 10.688731316000087, 59.911769924000055 ], [ 10.508148634000065, 59.871527411000045 ], [ 10.475433790000068, 59.850043036000045 ], [ 10.486664026023959, 59.803166436681693 ], [ 10.39877648314814, 59.808287664743887 ], [ 10.349115431431983, 59.853452867056149 ], [ 10.382911818125876, 59.985382798777096 ], [ 10.552668897951264, 60.067031562056911 ], [ 10.623620640080446, 60.154726468351782 ], [ 10.752708367896844, 60.137259832874975 ], [ 10.928046501844562, 59.993392646553389 ], [ 10.917349480693986, 59.846166489691711 ], [ 10.75660306306983, 59.844155760013756 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-06", "NAME_1": "Buskerud" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.486664026023959, 59.803166436681693 ], [ 10.502207879000082, 59.708726304000038 ], [ 10.61459394600007, 59.60773346600007 ], [ 10.54273522200009, 59.535549221000053 ], [ 10.436696811000047, 59.518377997000073 ], [ 10.403005405000044, 59.682847398000035 ], [ 10.238942905000044, 59.738755601000037 ], [ 10.22437584700009, 59.723822333000044 ], [ 10.278628778195525, 59.690413722914968 ], [ 10.071354607728949, 59.665247300722342 ], [ 10.03301069478772, 59.684625963217627 ], [ 9.929502801213289, 59.628350327705448 ], [ 10.065773552707299, 59.49983104156928 ], [ 9.784912143580527, 59.491976223423933 ], [ 9.782741733244393, 59.432186591338109 ], [ 9.682334425992963, 59.439783027065005 ], [ 9.559447869923247, 59.511406561863339 ], [ 9.480434604973027, 59.51794363129352 ], [ 9.502500440842653, 59.562617906291337 ], [ 9.351656934619825, 59.73594066043313 ], [ 9.359873487971072, 59.807693386440576 ], [ 9.203138869263398, 59.850042223269952 ], [ 9.180194533351028, 59.941612861344424 ], [ 9.020514357051923, 60.000058906293475 ], [ 8.959226108198322, 60.1045744902205 ], [ 8.842850783137123, 60.161496079980054 ], [ 8.171418897763886, 60.197514552954203 ], [ 7.823378127298724, 60.127751370129602 ], [ 7.624268833339954, 60.145683091801232 ], [ 7.467844272994796, 60.113695380237573 ], [ 7.666488478060785, 60.331356513492267 ], [ 7.678890821554148, 60.511087144955752 ], [ 7.589025505822406, 60.660380357567419 ], [ 7.477921177420399, 60.702341620769175 ], [ 7.679510939178499, 60.779649563376609 ], [ 7.737543572977472, 60.860032253885379 ], [ 7.873969354102371, 60.930441392756052 ], [ 8.036853467713343, 60.932715155879691 ], [ 8.193743116951282, 61.023045558705519 ], [ 8.198083936724288, 61.072448228902601 ], [ 8.279732700004104, 61.117665107158928 ], [ 8.604829136355534, 61.003925279528005 ], [ 8.663326857248649, 60.949509995989501 ], [ 8.893131951578312, 60.913388170227847 ], [ 9.300600619822717, 60.7814582385069 ], [ 9.41015465731158, 60.584726061358595 ], [ 9.606421745567104, 60.561213283765994 ], [ 9.657633090894421, 60.514704495216279 ], [ 9.831420933029619, 60.48499054587694 ], [ 9.820878939711292, 60.591392320199361 ], [ 9.935393913698135, 60.616197008085408 ], [ 9.942990350324408, 60.658571682437184 ], [ 10.043707716837673, 60.655393581748342 ], [ 10.167989535988283, 60.532274482581272 ], [ 10.225247023431393, 60.396313788550458 ], [ 10.33154544406699, 60.280041816276764 ], [ 10.623620640080446, 60.154726468351782 ], [ 10.552668897951264, 60.067031562056911 ], [ 10.439394159213066, 60.033622748091318 ], [ 10.37454023604306, 59.975460923982439 ], [ 10.349890577787903, 59.83846670207663 ], [ 10.486664026023959, 59.803166436681693 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-07", "NAME_1": "Vestfold" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.283009934354505, 59.695839717720752 ], [ 10.379242384000065, 59.658351955000057 ], [ 10.390147332000083, 59.558294989000046 ], [ 10.364268425000091, 59.525824286000045 ], [ 10.237315300000091, 59.559963283000059 ], [ 10.369395379000082, 59.455267645000049 ], [ 10.477549675000091, 59.429632880000042 ], [ 10.444509311000047, 59.348944403000075 ], [ 10.514170769000089, 59.302923895000049 ], [ 10.469574415000068, 59.247788804000038 ], [ 10.360850457000083, 59.271307684000078 ], [ 10.361989780000044, 59.219549872000073 ], [ 10.330251498000052, 59.209662177000041 ], [ 10.313731316000087, 59.127997137000079 ], [ 10.289805535000085, 59.134588934000078 ], [ 10.306895379000082, 59.059719143000052 ], [ 10.272146030000044, 59.114325262000079 ], [ 10.262461785000085, 59.038560289000031 ], [ 10.22437584700009, 59.114325262000079 ], [ 10.23218834700009, 59.040350653000075 ], [ 10.207041863000086, 59.016424872000073 ], [ 10.114512566000087, 59.005072333000044 ], [ 10.16968834700009, 59.03546784100007 ], [ 10.148773634000065, 59.051581122000073 ], [ 10.059418165000068, 59.018133856000077 ], [ 10.016774936000047, 59.033677476000037 ], [ 10.033376498000052, 58.993475653000075 ], [ 9.983653191000087, 58.960882880000042 ], [ 9.81218509200005, 58.963446356000077 ], [ 9.845225457000083, 58.989325262000079 ], [ 9.832661167378944, 59.168998522363893 ], [ 9.884027541437888, 59.204345200870307 ], [ 9.868524610722204, 59.28129140917116 ], [ 9.770132684176019, 59.368779608991758 ], [ 9.776953972647732, 59.484224758965411 ], [ 10.065773552707299, 59.49983104156928 ], [ 9.929502801213289, 59.628350327705448 ], [ 10.03301069478772, 59.684625963217627 ], [ 10.071354607728949, 59.665247300722342 ], [ 10.283009934354505, 59.695839717720752 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-08", "NAME_1": "Telemark" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.827183556501103, 59.018401108927563 ], [ 9.688487175000091, 59.090765692000048 ], [ 9.668630405000044, 59.051459052000041 ], [ 9.63062584700009, 59.131415106000077 ], [ 9.539073113000086, 59.12055084800005 ], [ 9.726817254000082, 59.015204169000071 ], [ 9.72396894600007, 58.983954169000071 ], [ 9.655772332000083, 58.983954169000071 ], [ 9.689789259000065, 58.956691799000055 ], [ 9.57593834700009, 58.921454169000071 ], [ 9.47006269600007, 58.928697007000039 ], [ 9.51148522200009, 58.895209052000041 ], [ 9.373789910000085, 58.895412502000056 ], [ 9.40365644600007, 58.880926825000074 ], [ 9.33952884200005, 58.862616278000075 ], [ 9.298838738000086, 58.881537177000041 ], [ 9.27084394600007, 58.833156643000052 ], [ 9.450368686000047, 58.833156643000052 ], [ 9.367035352000073, 58.792181708000044 ], [ 9.408702019000089, 58.799627997000073 ], [ 9.386586768541033, 58.78483285005057 ], [ 9.206549513049595, 58.817702135045465 ], [ 9.190581496139146, 58.883589586090523 ], [ 8.991317173448806, 59.009938462789819 ], [ 8.836804640122011, 59.000326647256941 ], [ 8.80636722216957, 58.871264756962944 ], [ 8.760736931863903, 58.85707957586169 ], [ 8.579352654901072, 58.941363837471101 ], [ 8.475534702064863, 58.916765856059385 ], [ 8.18692182758025, 58.99800120728986 ], [ 8.033907911920608, 58.982498277473496 ], [ 7.771391635615487, 59.157112941908736 ], [ 7.789064975767985, 59.244136053735872 ], [ 7.725916374940766, 59.319015204488096 ], [ 7.52727216987472, 59.427484036359147 ], [ 7.619462924674224, 59.493371487404204 ], [ 7.530527784929291, 59.549492093285437 ], [ 7.517815383073469, 59.589696357301023 ], [ 7.54592736195815, 59.614501044287749 ], [ 7.438698765335744, 59.676409409866324 ], [ 7.364956496145396, 59.658581040982199 ], [ 7.144194776567645, 59.71493419086022 ], [ 7.092053257052157, 59.794076647019608 ], [ 7.154116652261678, 59.836968085308854 ], [ 7.163108351069525, 59.912725735204504 ], [ 7.222071160855364, 59.966210842756141 ], [ 7.390898064693943, 60.027034002717016 ], [ 7.467844272994796, 60.113695380237573 ], [ 7.624268833339954, 60.145683091801232 ], [ 7.823378127298724, 60.127751370129602 ], [ 8.171418897763886, 60.197514552954203 ], [ 8.842850783137123, 60.161496079980054 ], [ 8.959226108198322, 60.1045744902205 ], [ 9.020514357051923, 60.000058906293475 ], [ 9.180194533351028, 59.941612861344424 ], [ 9.203138869263398, 59.850042223269952 ], [ 9.359873487971072, 59.807693386440576 ], [ 9.351656934619825, 59.73594066043313 ], [ 9.502500440842653, 59.562617906291337 ], [ 9.480434604973027, 59.51794363129352 ], [ 9.559447869923247, 59.511406561863339 ], [ 9.682334425992963, 59.439783027065005 ], [ 9.782741733244393, 59.432186591338109 ], [ 9.778349236627946, 59.348677476983937 ], [ 9.868524610722204, 59.28129140917116 ], [ 9.884027541437888, 59.204345200870307 ], [ 9.832661167378944, 59.168998522363893 ], [ 9.855192092141351, 59.108227037447818 ], [ 9.827183556501103, 59.018401108927563 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-09", "NAME_1": "Aust-Agder" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.386586768541033, 58.78483285005057 ], [ 9.306488477000073, 58.738714911000045 ], [ 9.070974155000044, 58.741197007000039 ], [ 9.216319207000083, 58.702785549000055 ], [ 9.059336785000085, 58.682928778000075 ], [ 9.20053144600007, 58.672349351000037 ], [ 9.033836547000078, 58.594754032000083 ], [ 8.913340691000087, 58.60687897300005 ], [ 8.95009437300007, 58.547183856000061 ], [ 8.909419211000056, 58.500891762000037 ], [ 8.707295191000071, 58.378910743000063 ], [ 8.607269727000073, 58.332831122000073 ], [ 8.579356316000087, 58.347479559000078 ], [ 8.501231316000087, 58.257228908000059 ], [ 8.409353061000047, 58.272040106000077 ], [ 8.406260613000086, 58.244208075000074 ], [ 8.243662957000083, 58.203111070000034 ], [ 8.271739129000082, 58.196275132000039 ], [ 8.224619988000086, 58.156927802000041 ], [ 8.184751418143435, 58.19626719817262 ], [ 8.225730827615564, 58.234843655110581 ], [ 8.210692986691981, 58.288690496968854 ], [ 8.092715692075501, 58.312203274561455 ], [ 8.092095575350527, 58.356541652775036 ], [ 7.975410190128173, 58.345121162111923 ], [ 7.765035435137236, 58.480771795981582 ], [ 7.580498895007963, 58.480410060775682 ], [ 7.546237420320665, 58.545832424726598 ], [ 7.618997836680819, 58.600066840212492 ], [ 7.585769890767835, 58.690914007875108 ], [ 7.643802523667546, 58.710473538423059 ], [ 7.677960645567339, 58.769281318577953 ], [ 7.594038120063203, 58.878421943118155 ], [ 7.071692742625942, 58.847261053854538 ], [ 7.164503615049796, 58.948908596354613 ], [ 7.118408236750724, 59.01918854401606 ], [ 7.158302443303114, 59.033037828333079 ], [ 7.146830274897241, 59.097504176976145 ], [ 7.1834171886523, 59.173546047711909 ], [ 6.830260451158892, 59.211476549503118 ], [ 6.816772902047774, 59.325319729022226 ], [ 6.902400749894696, 59.455027574462974 ], [ 7.014590284813778, 59.498823351216629 ], [ 6.984824660429695, 59.529131577959902 ], [ 6.993816359237599, 59.610108548570622 ], [ 7.148380567609081, 59.6810086129571 ], [ 7.438698765335744, 59.676409409866324 ], [ 7.54592736195815, 59.614501044287749 ], [ 7.517815383073469, 59.589696357301023 ], [ 7.530527784929291, 59.549492093285437 ], [ 7.619462924674224, 59.493371487404204 ], [ 7.52727216987472, 59.427484036359147 ], [ 7.725916374940766, 59.319015204488096 ], [ 7.789064975767985, 59.244136053735872 ], [ 7.771391635615487, 59.157112941908736 ], [ 7.971999546341976, 59.000895087138531 ], [ 8.091785516088692, 58.974643460227469 ], [ 8.18692182758025, 58.99800120728986 ], [ 8.475534702064863, 58.916765856059385 ], [ 8.579352654901072, 58.941363837471101 ], [ 8.760736931863903, 58.85707957586169 ], [ 8.80636722216957, 58.871264756962944 ], [ 8.836804640122011, 59.000326647256941 ], [ 8.991317173448806, 59.009938462789819 ], [ 9.190581496139146, 58.883589586090523 ], [ 9.206549513049595, 58.817702135045465 ], [ 9.386586768541033, 58.78483285005057 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-10", "NAME_1": "Vest-Agder" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.224619988000086, 58.156927802000041 ], [ 8.201914910000085, 58.122992255000042 ], [ 8.15796959700009, 58.144476630000042 ], [ 8.122894727000073, 58.102036851000037 ], [ 8.05250084700009, 58.113185940000051 ], [ 8.024587436000047, 58.141058661000045 ], [ 8.07984459700009, 58.162095445000034 ], [ 8.004079623000052, 58.223049221000053 ], [ 8.022308790000068, 58.163763739000046 ], [ 7.91578209700009, 58.081854559000078 ], [ 7.663910352000073, 58.067287502000056 ], [ 7.614756707000083, 58.02212148600006 ], [ 7.578868035000085, 58.045477606000077 ], [ 7.578868035000085, 58.017523505000042 ], [ 7.155528191000087, 58.050279039000031 ], [ 7.006602410000085, 57.993150132000039 ], [ 6.99935957100007, 58.03070709800005 ], [ 7.116221550000091, 58.058539130000042 ], [ 7.147471550000091, 58.100083726000037 ], [ 6.93531334700009, 58.045477606000077 ], [ 6.980316602000073, 58.105373440000051 ], [ 6.900563998000052, 58.052313544000071 ], [ 6.90796959700009, 58.100083726000037 ], [ 6.866384311000047, 58.079575914000031 ], [ 6.804209832000083, 58.100083726000037 ], [ 6.989268425000091, 58.141058661000045 ], [ 6.873789910000085, 58.134833075000074 ], [ 6.777598504000082, 58.182033596000053 ], [ 6.80795332100007, 58.12055084800005 ], [ 6.731455925000091, 58.119859117000033 ], [ 6.72242272200009, 58.189439195000034 ], [ 6.688243035000085, 58.12055084800005 ], [ 6.78256269600007, 58.065334377000056 ], [ 6.61850019600007, 58.068304755000042 ], [ 6.530528191000087, 58.12055084800005 ], [ 6.59701582100007, 58.176499742000033 ], [ 6.674571160000085, 58.182033596000053 ], [ 6.65406334700009, 58.189439195000034 ], [ 6.67514082100007, 58.206976630000042 ], [ 6.845957879000082, 58.271389065000051 ], [ 6.68140709700009, 58.223049221000053 ], [ 6.633636915000068, 58.27484772300005 ], [ 6.656260613000086, 58.302801825000074 ], [ 6.69507897200009, 58.291896877000056 ], [ 6.68726647200009, 58.327337958000044 ], [ 6.619965040000068, 58.319159247000073 ], [ 6.626231316000087, 58.244696356000077 ], [ 6.397634988360687, 58.272996862869661 ], [ 6.577149285710959, 58.326620998760063 ], [ 6.630996127569233, 58.384343574196578 ], [ 6.584797397381976, 58.611461494252524 ], [ 6.445426059564966, 58.658073634690481 ], [ 6.598595004855554, 58.708044746567793 ], [ 6.516636183213279, 58.785714423481807 ], [ 6.57776940333531, 58.864520981957696 ], [ 6.562421502250515, 58.931183580257994 ], [ 6.88147179468757, 59.135150457927239 ], [ 6.889843376770386, 59.177525133178335 ], [ 6.942605014809601, 59.208582668755128 ], [ 7.179696485604325, 59.177680161909905 ], [ 7.146830274897241, 59.097504176976145 ], [ 7.161403028726795, 59.040995999265931 ], [ 7.118408236750724, 59.01918854401606 ], [ 7.164503615049796, 58.948908596354613 ], [ 7.071692742625942, 58.847261053854538 ], [ 7.594038120063203, 58.878421943118155 ], [ 7.677960645567339, 58.769281318577953 ], [ 7.643802523667546, 58.710473538423059 ], [ 7.585769890767835, 58.690914007875108 ], [ 7.618997836680819, 58.600066840212492 ], [ 7.546237420320665, 58.545832424726598 ], [ 7.580498895007963, 58.480410060775682 ], [ 7.765035435137236, 58.480771795981582 ], [ 7.975410190128173, 58.345121162111923 ], [ 8.092095575350527, 58.356541652775036 ], [ 8.092715692075501, 58.312203274561455 ], [ 8.210692986691981, 58.288690496968854 ], [ 8.225730827615564, 58.234843655110581 ], [ 8.184751418143435, 58.19626719817262 ], [ 8.224619988000086, 58.156927802000041 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-11", "NAME_1": "Rogaland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.397634988360687, 58.272996862869661 ], [ 6.010101759000065, 58.384914455000057 ], [ 5.954600457000083, 58.477484442000048 ], [ 5.79665267200005, 58.489245957000037 ], [ 5.77839094400008, 58.520899272000065 ], [ 5.64625084700009, 58.548651434000078 ], [ 5.477951160000089, 58.754747227000053 ], [ 5.526723268000069, 58.784113904000037 ], [ 5.530528191000087, 58.868719794000071 ], [ 5.572520379000082, 58.894029039000031 ], [ 5.537119988000086, 58.956122137000079 ], [ 5.617360873000052, 58.907294012000079 ], [ 5.626231316000087, 58.925604559000078 ], [ 5.55054772200009, 58.970892645000049 ], [ 5.578868035000085, 58.989081122000073 ], [ 5.52320397200009, 58.991400458000044 ], [ 5.55054772200009, 59.038560289000031 ], [ 5.715586785000085, 58.977118231000077 ], [ 5.715586785000085, 58.867254950000074 ], [ 5.735524936000047, 58.928697007000039 ], [ 5.853526238000086, 58.965033270000049 ], [ 6.092539910000085, 58.847235419000071 ], [ 6.228851759000065, 58.839992580000057 ], [ 6.118988477000073, 58.853583075000074 ], [ 6.057627800000091, 58.902044989000046 ], [ 6.194834832000083, 58.983954169000071 ], [ 6.626231316000087, 59.052801825000074 ], [ 6.160411004000082, 58.998236395000049 ], [ 6.033864780000044, 58.905178127000056 ], [ 5.975108269000089, 58.963446356000077 ], [ 6.050791863000086, 58.998236395000049 ], [ 5.934092644000089, 59.018133856000077 ], [ 5.875498894000089, 59.066229559000078 ], [ 5.890635613000086, 59.103908596000053 ], [ 6.126475457000083, 59.148423570000034 ], [ 6.008799675000091, 59.149359442000048 ], [ 6.171397332000083, 59.261419989000046 ], [ 6.32390384200005, 59.315008856000077 ], [ 6.461680535000085, 59.31976959800005 ], [ 6.31381269600007, 59.322943427000041 ], [ 6.154144727000073, 59.267767645000049 ], [ 6.084971550000091, 59.306708075000074 ], [ 6.236338738000086, 59.31976959800005 ], [ 6.199229363000086, 59.351548570000034 ], [ 6.172129754000082, 59.321234442000048 ], [ 6.092458530000044, 59.31976959800005 ], [ 6.057627800000091, 59.353908596000053 ], [ 5.99545332100007, 59.334051825000074 ], [ 6.041514519000089, 59.383693752000056 ], [ 6.188649936000047, 59.429632880000042 ], [ 6.242686394000089, 59.510565497000073 ], [ 6.544200066000087, 59.559963283000059 ], [ 6.236338738000086, 59.525824286000045 ], [ 6.311534050000091, 59.655503648000035 ], [ 6.28646894600007, 59.649237372000073 ], [ 6.153005405000044, 59.459418036000045 ], [ 6.02702884200005, 59.402289130000042 ], [ 5.982595248000052, 59.429632880000042 ], [ 5.968923373000052, 59.402289130000042 ], [ 5.99545332100007, 59.38117096600007 ], [ 5.924164259000065, 59.35578034100007 ], [ 5.886241082000083, 59.446966864000046 ], [ 6.153168165000068, 59.477443752000056 ], [ 5.901866082000083, 59.479071356000077 ], [ 5.807383660000085, 59.53937409100007 ], [ 5.77711022200009, 59.525824286000045 ], [ 5.797536655000044, 59.463120835000041 ], [ 5.748383009000065, 59.445786851000037 ], [ 5.708262566000087, 59.470607815000051 ], [ 5.696462436000047, 59.429429429000038 ], [ 5.64616946700005, 59.40851471600007 ], [ 5.784190300000091, 59.429266669000071 ], [ 5.859629754000082, 59.350775458000044 ], [ 5.70484459700009, 59.340236721000053 ], [ 5.611989780000044, 59.293036200000074 ], [ 5.64616946700005, 59.334051825000074 ], [ 5.586599155000044, 59.416489976000037 ], [ 5.560720248000052, 59.409328518000052 ], [ 5.58529707100007, 59.395453192000048 ], [ 5.567881707000083, 59.316351630000042 ], [ 5.505381707000083, 59.277736721000053 ], [ 5.435801629000082, 59.307684637000079 ], [ 5.433116082000083, 59.405096747000073 ], [ 5.390879754000082, 59.294623114000046 ], [ 5.353770379000082, 59.411078192000048 ], [ 5.33139082100007, 59.353908596000053 ], [ 5.297211134000065, 59.344671942000048 ], [ 5.201670769000089, 59.429632880000042 ], [ 5.189984585267053, 59.480164436954354 ], [ 5.416758660000085, 59.504706122000073 ], [ 5.65730879076807, 59.57830170416031 ], [ 6.170610792554044, 59.615792955480458 ], [ 6.285280796171776, 59.780744127539435 ], [ 6.528625115556622, 59.858568834084394 ], [ 6.668564894154542, 59.845804755385132 ], [ 6.686393263038667, 59.7970222028124 ], [ 6.653992140324988, 59.729119371062097 ], [ 6.674766065901224, 59.71741465955887 ], [ 7.092053257052157, 59.794076647019608 ], [ 7.127709994820407, 59.723331611364756 ], [ 7.243930259673732, 59.691033840539262 ], [ 7.122128939798699, 59.675530910722898 ], [ 6.986064893879757, 59.604165758343072 ], [ 6.984824660429695, 59.529131577959902 ], [ 7.014590284813778, 59.498823351216629 ], [ 6.902400749894696, 59.455027574462974 ], [ 6.815067579705044, 59.312710679953909 ], [ 6.830260451158892, 59.211476549503118 ], [ 6.942605014809601, 59.208582668755128 ], [ 6.881936882680975, 59.169205227039583 ], [ 6.88147179468757, 59.135150457927239 ], [ 6.562421502250515, 58.931183580257994 ], [ 6.57776940333531, 58.864520981957696 ], [ 6.516636183213279, 58.785714423481807 ], [ 6.598595004855554, 58.708044746567793 ], [ 6.445426059564966, 58.658073634690481 ], [ 6.584797397381976, 58.611461494252524 ], [ 6.627275425420521, 58.366799425253248 ], [ 6.397634988360687, 58.272996862869661 ] ] ], [ [ [ 5.276866082000083, 59.299261786000045 ], [ 5.317929266000078, 59.256539763000035 ], [ 5.297090544000071, 59.168884398000046 ], [ 5.208550995000053, 59.142885598000078 ], [ 5.166168649000042, 59.195682414000032 ], [ 5.165278478000062, 59.273427630000072 ], [ 5.22828209700009, 59.285589911000045 ], [ 5.173838738000086, 59.334051825000074 ], [ 5.208506707000083, 59.374945380000042 ], [ 5.185883009000065, 59.414740302000041 ], [ 5.280284050000091, 59.330267645000049 ], [ 5.276866082000083, 59.299261786000045 ] ] ], [ [ [ 5.764008009000065, 59.117865302000041 ], [ 5.77475019600007, 59.080552476000037 ], [ 5.750743035000085, 59.072333075000074 ], [ 5.575205925000091, 59.124009507000039 ], [ 5.764008009000065, 59.117865302000041 ] ] ], [ [ [ 5.462087436000047, 59.210882880000042 ], [ 5.443207227000073, 59.158921617000033 ], [ 5.375336134000065, 59.218817450000074 ], [ 5.403819207000083, 59.242092190000051 ], [ 5.462087436000047, 59.210882880000042 ] ] ], [ [ [ 6.016368035000085, 59.292181708000044 ], [ 6.099864129000082, 59.276556708000044 ], [ 6.05632571700005, 59.240708726000037 ], [ 5.929860873000052, 59.243475653000075 ], [ 5.95248457100007, 59.283921617000033 ], [ 6.016368035000085, 59.292181708000044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-12", "NAME_1": "Hordaland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.189984585267053, 59.480164436954354 ], [ 5.187998894000089, 59.518377997000073 ], [ 5.242686394000089, 59.525824286000045 ], [ 5.201670769000089, 59.546291408000059 ], [ 5.321299675000091, 59.638251044000071 ], [ 5.385996941000087, 59.649359442000048 ], [ 5.413340691000087, 59.594671942000048 ], [ 5.427012566000087, 59.635687567000048 ], [ 5.399668816000087, 59.669826565000051 ], [ 5.489105665000068, 59.738104559000078 ], [ 5.485524936000047, 59.56976959800005 ], [ 5.407887833256893, 59.516234583059543 ], [ 5.189984585267053, 59.480164436954354 ] ] ], [ [ [ 5.52873058285013, 59.557913031960823 ], [ 5.523610873000052, 59.617905992000033 ], [ 5.56413821700005, 59.676662502000056 ], [ 5.721934441000087, 59.663478908000059 ], [ 5.715586785000085, 59.60773346600007 ], [ 5.754405144000089, 59.609849351000037 ], [ 5.789073113000086, 59.656439520000049 ], [ 5.879405144000089, 59.655503648000035 ], [ 5.879405144000089, 59.676662502000056 ], [ 5.746104363000086, 59.675523179000038 ], [ 5.81421959700009, 59.729071356000077 ], [ 5.903086785000085, 59.764797268000052 ], [ 6.038096550000091, 59.745184637000079 ], [ 6.311534050000091, 59.854193427000041 ], [ 6.002289259000065, 59.758612372000073 ], [ 5.934092644000089, 59.779038804000038 ], [ 5.968923373000052, 59.861029364000046 ], [ 5.914398634000065, 59.791449286000045 ], [ 5.83171634200005, 59.772202867000033 ], [ 5.715098504000082, 59.831732489000046 ], [ 5.721853061000047, 59.861029364000046 ], [ 5.68140709700009, 59.841498114000046 ], [ 5.64616946700005, 59.854193427000041 ], [ 5.742930535000085, 59.882066148000035 ], [ 5.772227410000085, 59.930731512000079 ], [ 5.971527540000068, 59.959540106000077 ], [ 5.982595248000052, 59.98110586100006 ], [ 5.947764519000089, 59.99750397300005 ], [ 6.010020379000082, 60.057440497000073 ], [ 6.291026238000086, 60.121649481000077 ], [ 6.256846550000091, 60.162665106000077 ], [ 6.105316602000073, 60.107367255000042 ], [ 6.074961785000085, 60.198391018000052 ], [ 6.14234459700009, 60.21548086100006 ], [ 6.201670769000089, 60.299790757000039 ], [ 6.502696160000085, 60.430812893000052 ], [ 6.64039147200009, 60.416489976000037 ], [ 6.530528191000087, 60.262274481000077 ], [ 6.510101759000065, 60.135321356000077 ], [ 6.523773634000065, 60.080755927000041 ], [ 6.571543816000087, 60.272528387000079 ], [ 6.65406334700009, 60.382391669000071 ], [ 6.802582227000073, 60.472805080000057 ], [ 7.078786655000044, 60.479396877000056 ], [ 7.105967644000089, 60.505845445000034 ], [ 6.900563998000052, 60.505845445000034 ], [ 7.01726321700005, 60.587836005000042 ], [ 6.98804772200009, 60.589544989000046 ], [ 6.855967644000089, 60.503241278000075 ], [ 6.656097852000073, 60.433010158000059 ], [ 6.592051629000082, 60.443793036000045 ], [ 6.69507897200009, 60.518947658000059 ], [ 6.297211134000065, 60.388576565000051 ], [ 6.225271030000044, 60.412298895000049 ], [ 6.17750084700009, 60.47101471600007 ], [ 6.240977410000085, 60.387884833000044 ], [ 6.118988477000073, 60.368109442000048 ], [ 6.188649936000047, 60.355047919000071 ], [ 6.14031009200005, 60.306626695000034 ], [ 6.15170332100007, 60.267645575000074 ], [ 6.105316602000073, 60.245184637000079 ], [ 5.996429884000065, 60.264960028000075 ], [ 5.914724155000044, 60.168850002000056 ], [ 5.851573113000086, 60.149603583000044 ], [ 5.855967644000089, 60.02374909100007 ], [ 5.771657748000052, 60.023504950000074 ], [ 5.756032748000052, 59.990668036000045 ], [ 5.68140709700009, 60.039740302000041 ], [ 5.790537957000083, 60.076605536000045 ], [ 5.700205925000091, 60.103908596000053 ], [ 5.729177280000044, 60.132391669000071 ], [ 5.708262566000087, 60.176336981000077 ], [ 5.79070071700005, 60.211086330000057 ], [ 5.593028191000087, 60.138576565000051 ], [ 5.543711785000085, 60.162665106000077 ], [ 5.574066602000073, 60.176743882000039 ], [ 5.56413821700005, 60.204250393000052 ], [ 5.708262566000087, 60.232163804000038 ], [ 5.598399285000085, 60.232163804000038 ], [ 5.633067254000082, 60.272528387000079 ], [ 5.571543816000087, 60.238348700000074 ], [ 5.667246941000087, 60.355047919000071 ], [ 5.736582879000082, 60.39203522300005 ], [ 5.639903191000087, 60.347601630000042 ], [ 5.633067254000082, 60.368109442000048 ], [ 5.526621941000087, 60.217230536000045 ], [ 5.40984134200005, 60.131333726000037 ], [ 5.30404707100007, 60.190619208000044 ], [ 5.351817254000082, 60.217230536000045 ], [ 5.222829623000052, 60.211086330000057 ], [ 5.31031334700009, 60.265692450000074 ], [ 5.170664910000085, 60.278713283000059 ], [ 5.170664910000085, 60.317206122000073 ], [ 5.22828209700009, 60.32094961100006 ], [ 5.140961134000065, 60.351385809000078 ], [ 5.177744988000086, 60.388576565000051 ], [ 5.297862175000091, 60.395982164000031 ], [ 5.237071160000085, 60.473781643000052 ], [ 5.305837436000047, 60.528265692000048 ], [ 5.47624759200005, 60.435044664000031 ], [ 5.653575066000087, 60.430812893000052 ], [ 5.714040561000047, 60.484279690000051 ], [ 5.71062259200005, 60.603094794000071 ], [ 5.74976647200009, 60.718166408000059 ], [ 5.66382897200009, 60.703924872000073 ], [ 5.695160352000073, 60.752346096000053 ], [ 5.675629102000073, 60.757757880000042 ], [ 5.59156334700009, 60.697699286000045 ], [ 5.533457879000082, 60.697699286000045 ], [ 5.526621941000087, 60.628729559000078 ], [ 5.250498894000089, 60.563421942000048 ], [ 5.084971550000091, 60.662909247000073 ], [ 5.22828209700009, 60.621323960000041 ], [ 5.084971550000091, 60.711371161000045 ], [ 5.146494988000086, 60.703924872000073 ], [ 5.125824415000068, 60.724432684000078 ], [ 4.926768425000091, 60.800116278000075 ], [ 4.981455925000091, 60.808783270000049 ], [ 5.280121290000068, 60.721828518000052 ], [ 5.347992384000065, 60.640448309000078 ], [ 5.37240644600007, 60.635646877000056 ], [ 5.351817254000082, 60.662909247000073 ], [ 5.433848504000082, 60.628729559000078 ], [ 5.37086022200009, 60.674383856000077 ], [ 5.433848504000082, 60.662909247000073 ], [ 5.413340691000087, 60.703924872000073 ], [ 5.235850457000083, 60.776190497000073 ], [ 5.351817254000082, 60.81313711100006 ], [ 5.356455925000091, 60.852850653000075 ], [ 5.53687584700009, 60.875799872000073 ], [ 5.471690300000091, 60.907456773000035 ], [ 5.326670769000089, 60.868150132000039 ], [ 5.293223504000082, 60.822739976000037 ], [ 5.187836134000065, 60.827704169000071 ], [ 5.16765384200005, 60.854681708000044 ], [ 5.131032748000052, 60.812079169000071 ], [ 5.104784362880866, 60.837187562020084 ], [ 5.163695508940577, 60.923981839490295 ], [ 5.268908725757058, 60.955452786217108 ], [ 5.425798374095677, 60.937469386802718 ], [ 5.630023634183374, 60.990851142466227 ], [ 5.864169549185362, 60.975477402959768 ], [ 6.013411085852908, 61.033122464030441 ], [ 6.117074009058285, 60.992143052759673 ], [ 6.136504346598315, 60.950181790457236 ], [ 6.269932895986358, 60.917780666844294 ], [ 6.490901320239743, 60.959586900415104 ], [ 6.504078810089027, 60.928322659263301 ], [ 6.556685417597919, 60.923025825081709 ], [ 6.67817671058674, 60.975942490953173 ], [ 6.824369337774726, 60.932534287827082 ], [ 6.717295769883833, 60.874811713289887 ], [ 6.864418573058686, 60.84502025048414 ], [ 6.861266309892301, 60.799958400959383 ], [ 6.958883090981828, 60.793757229212702 ], [ 6.983894484442885, 60.748902086162332 ], [ 7.477921177420399, 60.702341620769175 ], [ 7.589025505822406, 60.660380357567419 ], [ 7.668658888396976, 60.547364000348296 ], [ 7.657651807984564, 60.317920641224589 ], [ 7.426761508936465, 60.055817776069489 ], [ 7.175355665831319, 59.926213284315565 ], [ 7.160007764746524, 59.844822903454201 ], [ 7.092053257052157, 59.794076647019608 ], [ 6.975522902360069, 59.792474677464384 ], [ 6.702878044785905, 59.712582913370738 ], [ 6.653992140324988, 59.729119371062097 ], [ 6.686393263038667, 59.7970222028124 ], [ 6.668564894154542, 59.845804755385132 ], [ 6.528625115556622, 59.858568834084394 ], [ 6.285280796171776, 59.780744127539435 ], [ 6.170610792554044, 59.615792955480458 ], [ 5.944216342909897, 59.616748968989725 ], [ 5.52873058285013, 59.557913031960823 ] ] ], [ [ [ 5.307139519000089, 59.758612372000073 ], [ 5.344981316000087, 59.710150458000044 ], [ 5.29078209700009, 59.683539130000042 ], [ 5.270030144000089, 59.682847398000035 ], [ 5.31031334700009, 59.703314520000049 ], [ 5.289317254000082, 59.749823309000078 ], [ 5.194183790000068, 59.744940497000073 ], [ 5.15398196700005, 59.669826565000051 ], [ 5.208506707000083, 59.682847398000035 ], [ 5.201670769000089, 59.614569403000075 ], [ 5.152842644000089, 59.591620184000078 ], [ 5.116709832000083, 59.685695705000057 ], [ 5.187998894000089, 59.758612372000073 ], [ 5.070648634000065, 59.782782294000071 ], [ 5.098643425000091, 59.827460028000075 ], [ 5.146494988000086, 59.827460028000075 ], [ 5.10482832100007, 59.868475653000075 ], [ 5.15398196700005, 59.874660549000055 ], [ 5.307139519000089, 59.758612372000073 ] ] ], [ [ [ 5.489105665000068, 59.861029364000046 ], [ 5.49781334700009, 59.803412177000041 ], [ 5.389659050000091, 59.758612372000073 ], [ 5.358164910000085, 59.772202867000033 ], [ 5.401866082000083, 59.787298895000049 ], [ 5.314300977000073, 59.789455471000053 ], [ 5.250173373000052, 59.909409898000035 ], [ 5.297536655000044, 59.950995184000078 ], [ 5.28288821700005, 59.966620184000078 ], [ 5.326182488000086, 59.976507880000042 ], [ 5.420664910000085, 59.938381252000056 ], [ 5.489105665000068, 59.861029364000046 ] ] ], [ [ [ 5.619151238000086, 60.073919989000046 ], [ 5.660411004000082, 60.066473700000074 ], [ 5.652842644000089, 60.000921942000048 ], [ 5.60523522200009, 59.962225653000075 ], [ 5.639903191000087, 59.915594794000071 ], [ 5.508067254000082, 59.899115302000041 ], [ 5.476817254000082, 59.962958075000074 ], [ 5.410166863000086, 59.95766836100006 ], [ 5.361827019000089, 59.995347398000035 ], [ 5.449392123000052, 60.005031643000052 ], [ 5.461680535000085, 60.052801825000074 ], [ 5.619151238000086, 60.073919989000046 ] ] ], [ [ [ 5.111664259000065, 60.200506903000075 ], [ 5.057139519000089, 60.19367096600007 ], [ 5.035817905000044, 60.237941799000055 ], [ 4.993011915000068, 60.225287177000041 ], [ 4.947927280000044, 60.258856512000079 ], [ 4.941416863000086, 60.291245835000041 ], [ 5.022959832000083, 60.286200262000079 ], [ 5.036631707000083, 60.313462632000039 ], [ 4.970957879000082, 60.332831122000073 ], [ 4.94890384200005, 60.439154364000046 ], [ 5.093760613000086, 60.320217190000051 ], [ 5.082855665000068, 60.285549221000053 ], [ 5.050303582000083, 60.286200262000079 ], [ 5.111664259000065, 60.200506903000075 ] ] ], [ [ [ 4.977793816000087, 60.524318752000056 ], [ 4.960785352000073, 60.559881903000075 ], [ 5.15015709700009, 60.501369533000059 ], [ 5.204356316000087, 60.431830145000049 ], [ 5.125010613000086, 60.402411200000074 ], [ 5.132823113000086, 60.443793036000045 ], [ 4.977793816000087, 60.524318752000056 ] ] ], [ [ [ 5.687673373000052, 60.676581122000073 ], [ 5.68140709700009, 60.481675523000035 ], [ 5.608897332000083, 60.443793036000045 ], [ 5.502126498000052, 60.43695709800005 ], [ 5.32398522200009, 60.546820380000042 ], [ 5.56967207100007, 60.625067450000074 ], [ 5.608409050000091, 60.688421942000048 ], [ 5.687673373000052, 60.676581122000073 ] ] ], [ [ [ 5.289724155000044, 60.074286200000074 ], [ 5.268809441000087, 59.994859117000033 ], [ 5.171722852000073, 60.04946523600006 ], [ 5.203623894000089, 60.088283596000053 ], [ 5.223887566000087, 60.042303778000075 ], [ 5.246592644000089, 60.051459052000041 ], [ 5.205332879000082, 60.117377020000049 ], [ 5.289724155000044, 60.074286200000074 ] ] ], [ [ [ 4.845876498000052, 60.628119208000044 ], [ 4.843923373000052, 60.589748440000051 ], [ 4.779470248000052, 60.598537502000056 ], [ 4.791270379000082, 60.666083075000074 ], [ 4.845876498000052, 60.628119208000044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-14", "NAME_1": "Sogn og Fjordane" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.104784362880866, 60.837187562020084 ], [ 5.047129754000082, 60.844427802000041 ], [ 4.981944207000083, 60.950873114000046 ], [ 5.077403191000087, 60.949652411000045 ], [ 5.100759311000047, 60.877752997000073 ], [ 5.098643425000091, 60.950873114000046 ], [ 5.14031009200005, 60.991888739000046 ], [ 5.07789147200009, 60.971380927000041 ], [ 5.004730665000068, 60.997544664000031 ], [ 5.016123894000089, 61.046535549000055 ], [ 5.068614129000082, 61.073553778000075 ], [ 5.433848504000082, 61.026597398000035 ], [ 5.448415561000047, 60.995428778000075 ], [ 5.460215691000087, 61.049994208000044 ], [ 5.52711022200009, 61.075425523000035 ], [ 5.639903191000087, 61.060126044000071 ], [ 5.597666863000086, 61.085150458000044 ], [ 5.773936394000089, 61.114447333000044 ], [ 5.78093509200005, 61.064357815000051 ], [ 5.863617384000065, 61.117865302000041 ], [ 6.098480665000068, 61.122219143000052 ], [ 6.258067254000082, 61.093817450000074 ], [ 6.242523634000065, 61.046535549000055 ], [ 6.359222852000073, 61.067572333000044 ], [ 6.355967644000089, 61.010931708000044 ], [ 6.437673373000052, 61.081244208000044 ], [ 6.545664910000085, 61.104071356000077 ], [ 6.600596550000091, 61.17523834800005 ], [ 6.836680535000085, 61.139349677000041 ], [ 6.868174675000091, 61.090277411000045 ], [ 6.955821160000085, 61.088080145000049 ], [ 7.009776238000086, 61.008937893000052 ], [ 6.873789910000085, 60.937241929000038 ], [ 7.051442905000044, 60.964544989000046 ], [ 7.130137566000087, 60.926703192000048 ], [ 7.105967644000089, 60.861558335000041 ], [ 7.157481316000087, 60.897447007000039 ], [ 7.161306186000047, 60.950873114000046 ], [ 7.09351647200009, 60.963812567000048 ], [ 7.000336134000065, 61.092922268000052 ], [ 7.222666863000086, 61.140366929000038 ], [ 7.435557488000086, 61.101141669000071 ], [ 7.346202019000089, 61.142726955000057 ], [ 7.427012566000087, 61.18585846600007 ], [ 7.606211785000085, 61.198309637000079 ], [ 7.69499759200005, 61.232082424000055 ], [ 7.38843834700009, 61.198187567000048 ], [ 7.312022332000083, 61.287298895000049 ], [ 7.380707227000073, 61.378322658000059 ], [ 7.57203209700009, 61.485337632000039 ], [ 7.346202019000089, 61.389105536000045 ], [ 7.263682488000086, 61.39594147300005 ], [ 7.305186394000089, 61.348130601000037 ], [ 7.239756707000083, 61.297267971000053 ], [ 7.359711134000065, 61.191107489000046 ], [ 7.292246941000087, 61.16242096600007 ], [ 7.213715040000068, 61.183661200000074 ], [ 6.953135613000086, 61.11163971600007 ], [ 6.917246941000087, 61.136297919000071 ], [ 7.00359134200005, 61.183661200000074 ], [ 6.89429772200009, 61.163234768000052 ], [ 6.557871941000087, 61.224595445000034 ], [ 6.69507897200009, 61.344712632000039 ], [ 6.701914910000085, 61.402777411000045 ], [ 6.603363477000073, 61.27875397300005 ], [ 6.501149936000047, 61.268133856000077 ], [ 6.537364129000082, 61.204169012000079 ], [ 6.465098504000082, 61.207586981000077 ], [ 6.506195509000065, 61.146958726000037 ], [ 6.434336785000085, 61.114732164000031 ], [ 6.282725457000083, 61.125433661000045 ], [ 6.174327019000089, 61.183661200000074 ], [ 6.073496941000087, 61.148016669000071 ], [ 5.961436394000089, 61.163234768000052 ], [ 6.037119988000086, 61.204169012000079 ], [ 5.80445397200009, 61.155747789000031 ], [ 5.78296959700009, 61.196600653000075 ], [ 5.74976647200009, 61.155747789000031 ], [ 5.557302280000044, 61.136460679000038 ], [ 5.423675977000073, 61.079657294000071 ], [ 5.297862175000091, 61.129095770000049 ], [ 5.193858269000089, 61.105292059000078 ], [ 5.160166863000086, 61.129095770000049 ], [ 5.22828209700009, 61.142726955000057 ], [ 5.044118686000047, 61.163234768000052 ], [ 5.059336785000085, 61.187974351000037 ], [ 5.222829623000052, 61.163234768000052 ], [ 5.214691602000073, 61.183661200000074 ], [ 5.250173373000052, 61.183661200000074 ], [ 5.167816602000073, 61.220770575000074 ], [ 4.988780144000089, 61.224595445000034 ], [ 5.064463738000086, 61.245754299000055 ], [ 4.964121941000087, 61.265692450000074 ], [ 5.201508009000065, 61.342718817000048 ], [ 5.279307488000086, 61.321356512000079 ], [ 5.320648634000065, 61.25226471600007 ], [ 5.320811394000089, 61.317450262000079 ], [ 5.256358269000089, 61.348130601000037 ], [ 5.633067254000082, 61.361802476000037 ], [ 5.164317254000082, 61.35610586100006 ], [ 5.058441602000073, 61.323472398000035 ], [ 4.998789910000085, 61.376898505000042 ], [ 5.044118686000047, 61.402777411000045 ], [ 5.062673373000052, 61.374579169000071 ], [ 5.111664259000065, 61.430731512000079 ], [ 4.947927280000044, 61.416408596000053 ], [ 5.180511915000068, 61.472316799000055 ], [ 5.51889082100007, 61.430121161000045 ], [ 5.71265709700009, 61.487127997000073 ], [ 5.80445397200009, 61.451157945000034 ], [ 5.72242272200009, 61.498968817000048 ], [ 5.49195397200009, 61.454006252000056 ], [ 5.39779707100007, 61.486883856000077 ], [ 5.290293816000087, 61.479641018000052 ], [ 5.138926629000082, 61.524115302000041 ], [ 5.14031009200005, 61.554185289000031 ], [ 5.358164910000085, 61.561021226000037 ], [ 5.146494988000086, 61.595200914000031 ], [ 5.427012566000087, 61.588934637000079 ], [ 5.270030144000089, 61.615668036000045 ], [ 5.340668165000068, 61.643133856000077 ], [ 4.992686394000089, 61.630438544000071 ], [ 4.944102410000085, 61.667181708000044 ], [ 5.003428582000083, 61.751125393000052 ], [ 5.16765384200005, 61.725531317000048 ], [ 5.125987175000091, 61.752183335000041 ], [ 5.190196160000085, 61.768947658000059 ], [ 5.064463738000086, 61.759711005000042 ], [ 5.33757571700005, 61.841620184000078 ], [ 5.29037519600007, 61.862127997000073 ], [ 5.362559441000087, 61.905462958000044 ], [ 5.600271030000044, 61.899115302000041 ], [ 5.742930535000085, 61.848456122000073 ], [ 5.619395379000082, 61.814927476000037 ], [ 5.940928582000083, 61.845038153000075 ], [ 5.899261915000068, 61.73859284100007 ], [ 5.992035352000073, 61.83539459800005 ], [ 6.181162957000083, 61.766546942000048 ], [ 6.057627800000091, 61.83539459800005 ], [ 6.473806186000047, 61.804632880000042 ], [ 6.58961022200009, 61.870835679000038 ], [ 6.777679884000065, 61.84125397300005 ], [ 6.818614129000082, 61.869574286000045 ], [ 6.677989129000082, 61.896877346000053 ], [ 6.555511915000068, 61.878322658000059 ], [ 6.47624759200005, 61.825344143000052 ], [ 5.886241082000083, 61.883205471000053 ], [ 5.80445397200009, 61.855861721000053 ], [ 5.729258660000085, 61.889390367000033 ], [ 5.961436394000089, 61.916693427000041 ], [ 5.427012566000087, 61.93781159100007 ], [ 5.155772332000083, 61.896063544000071 ], [ 5.098643425000091, 61.916693427000041 ], [ 5.14031009200005, 61.97134023600006 ], [ 5.22828209700009, 61.958319403000075 ], [ 5.31031334700009, 62.026556708000044 ], [ 5.40015709700009, 62.020005601000037 ], [ 5.091807488000086, 62.122748114000046 ], [ 5.125987175000091, 62.129584052000041 ], [ 5.078135613000086, 62.18423086100006 ], [ 5.16968834700009, 62.214504299000055 ], [ 5.274587436000047, 62.169419664000031 ], [ 5.270030144000089, 62.135809637000079 ], [ 5.317881707000083, 62.106512762000079 ], [ 5.451426629000082, 62.061712958000044 ], [ 5.462436964694177, 61.996086941259307 ], [ 5.573851353257339, 61.963246568074624 ], [ 5.927473178744208, 62.000350247565848 ], [ 6.106687046270167, 61.973271796556162 ], [ 6.193296746047963, 62.008360094442764 ], [ 6.340212842748485, 61.976139837983112 ], [ 6.670115186866383, 62.078174954110807 ], [ 6.805094028066947, 61.973039252559431 ], [ 7.348368360711277, 62.046497300909664 ], [ 7.405160760160925, 62.003683376986203 ], [ 7.393533563023482, 61.878135484165227 ], [ 7.492390577563071, 61.760468247911263 ], [ 7.868491651868226, 61.745016994938339 ], [ 7.991584914412272, 61.576241767043882 ], [ 8.2041300797394, 61.523635159534933 ], [ 8.30856814930064, 61.44976369913536 ], [ 8.141911654898934, 61.426690172013821 ], [ 8.203820021376885, 61.337289944275483 ], [ 8.044966668277084, 61.223446763857055 ], [ 8.182270949444728, 61.107949937939281 ], [ 8.193743116951282, 61.023045558705519 ], [ 8.036853467713343, 60.932715155879691 ], [ 7.873969354102371, 60.930441392756052 ], [ 7.773407017220052, 60.885534572862241 ], [ 7.679510939178499, 60.779649563376609 ], [ 7.477921177420399, 60.702341620769175 ], [ 6.983894484442885, 60.748902086162332 ], [ 6.958883090981828, 60.793757229212702 ], [ 6.861266309892301, 60.799958400959383 ], [ 6.864418573058686, 60.84502025048414 ], [ 6.722721795274595, 60.868843085539936 ], [ 6.824369337774726, 60.932534287827082 ], [ 6.67817671058674, 60.975942490953173 ], [ 6.556685417597919, 60.923025825081709 ], [ 6.504078810089027, 60.928322659263301 ], [ 6.490901320239743, 60.959586900415104 ], [ 6.269932895986358, 60.917780666844294 ], [ 6.136504346598315, 60.950181790457236 ], [ 6.117074009058285, 60.992143052759673 ], [ 6.026640251646256, 61.033174139974562 ], [ 5.864169549185362, 60.975477402959768 ], [ 5.630023634183374, 60.990851142466227 ], [ 5.425798374095677, 60.937469386802718 ], [ 5.268908725757058, 60.955452786217108 ], [ 5.163695508940577, 60.923981839490295 ], [ 5.104784362880866, 60.837187562020084 ] ] ], [ [ [ 4.960785352000073, 61.177435614000046 ], [ 4.985362175000091, 61.104885158000059 ], [ 4.893809441000087, 61.05609772300005 ], [ 4.858409050000091, 61.101141669000071 ], [ 4.803233269000089, 61.046535549000055 ], [ 4.79460696700005, 61.15375397300005 ], [ 4.872080925000091, 61.136460679000038 ], [ 4.844737175000091, 61.197333075000074 ], [ 4.895274285000085, 61.13735586100006 ], [ 4.919932488000086, 61.191107489000046 ], [ 4.960785352000073, 61.177435614000046 ] ] ], [ [ [ 4.865244988000086, 61.889390367000033 ], [ 4.952972852000073, 61.896958726000037 ], [ 5.222829623000052, 61.848456122000073 ], [ 5.118418816000087, 61.821112372000073 ], [ 5.125987175000091, 61.855861721000053 ], [ 4.916270379000082, 61.780951239000046 ], [ 4.87077884200005, 61.813381252000056 ], [ 4.926768425000091, 61.827948309000078 ], [ 4.803233269000089, 61.841620184000078 ], [ 4.865244988000086, 61.889390367000033 ] ] ], [ [ [ 4.922373894000089, 60.86749909100007 ], [ 4.878754102000073, 60.865139065000051 ], [ 4.776866082000083, 60.92999909100007 ], [ 4.882823113000086, 60.92999909100007 ], [ 4.922373894000089, 60.86749909100007 ] ] ], [ [ [ 4.721446160000085, 61.040228583000044 ], [ 4.739024285000085, 61.013739325000074 ], [ 4.706879102000073, 60.988511460000041 ], [ 4.70866946700005, 61.019720770000049 ], [ 4.680349155000044, 60.997137762000079 ], [ 4.643809441000087, 61.057603257000039 ], [ 4.700043165000068, 61.082220770000049 ], [ 4.721446160000085, 61.040228583000044 ] ] ], [ [ [ 5.120290561000047, 62.025783596000053 ], [ 5.15211022200009, 61.997951565000051 ], [ 5.095225457000083, 61.927435614000046 ], [ 5.021494988000086, 61.938869533000059 ], [ 5.05437259200005, 61.972357489000046 ], [ 4.984222852000073, 62.009466864000046 ], [ 4.992930535000085, 62.035060940000051 ], [ 5.07976321700005, 62.006415106000077 ], [ 5.120290561000047, 62.025783596000053 ] ] ], [ [ [ 4.836273634000065, 61.674546617000033 ], [ 4.879893425000091, 61.711981512000079 ], [ 4.903493686000047, 61.676174221000053 ], [ 4.902842644000089, 61.652492580000057 ], [ 4.836273634000065, 61.674546617000033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-15", "NAME_1": "Møre og Romsdal" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.461680535000085, 62.006740627000056 ], [ 5.536387566000087, 62.079046942000048 ], [ 5.59156334700009, 62.068182684000078 ], [ 5.390961134000065, 62.123236395000049 ], [ 5.454274936000047, 62.191066799000055 ], [ 5.622080925000091, 62.164862372000073 ], [ 5.74976647200009, 62.088609117000033 ], [ 5.667246941000087, 62.170599677000041 ], [ 5.905528191000087, 62.190904039000031 ], [ 5.920583530000044, 62.119696356000077 ], [ 5.84538821700005, 62.019720770000049 ], [ 5.936696811000047, 62.08734772300005 ], [ 5.954600457000083, 62.139960028000075 ], [ 6.04428144600007, 62.099269924000055 ], [ 6.050791863000086, 62.068182684000078 ], [ 6.366709832000083, 62.061346747000073 ], [ 6.088633660000085, 62.109116929000038 ], [ 5.920583530000044, 62.208156643000052 ], [ 5.939707879000082, 62.229396877000056 ], [ 6.01726321700005, 62.206976630000042 ], [ 6.064463738000086, 62.204738674000055 ], [ 5.947764519000089, 62.245672919000071 ], [ 6.027679884000065, 62.305731512000079 ], [ 6.310801629000082, 62.372056382000039 ], [ 6.55046634200005, 62.170599677000041 ], [ 6.530528191000087, 62.109116929000038 ], [ 6.592051629000082, 62.135809637000079 ], [ 6.580902540000068, 62.160345770000049 ], [ 6.41765384200005, 62.31118398600006 ], [ 6.400238477000073, 62.387193101000037 ], [ 6.500254754000082, 62.399318752000056 ], [ 6.564707879000082, 62.355536200000074 ], [ 6.544200066000087, 62.41079336100006 ], [ 6.688975457000083, 62.44985586100006 ], [ 6.879161004000082, 62.417914130000042 ], [ 6.873789910000085, 62.355536200000074 ], [ 6.99935957100007, 62.253485419000071 ], [ 7.00521894600007, 62.194281317000048 ], [ 6.938731316000087, 62.121812242000033 ], [ 6.98796634200005, 62.08930084800005 ], [ 7.187836134000065, 62.102280992000033 ], [ 7.149668816000087, 62.130804755000042 ], [ 6.979340040000068, 62.112860419000071 ], [ 7.037119988000086, 62.183823960000041 ], [ 7.037771030000044, 62.273016669000071 ], [ 7.209239129000082, 62.250881252000056 ], [ 7.310720248000052, 62.28156159100007 ], [ 7.415049675000091, 62.232001044000071 ], [ 7.293467644000089, 62.297919012000079 ], [ 7.161306186000047, 62.286607164000031 ], [ 6.957041863000086, 62.325344143000052 ], [ 6.914073113000086, 62.369818427000041 ], [ 6.975596550000091, 62.376654364000046 ], [ 6.851573113000086, 62.454494533000059 ], [ 6.756521030000044, 62.464789130000042 ], [ 6.79070071700005, 62.478420315000051 ], [ 6.397715691000087, 62.425034898000035 ], [ 6.242930535000085, 62.451117255000042 ], [ 6.222666863000086, 62.459173895000049 ], [ 6.453623894000089, 62.502386786000045 ], [ 6.674571160000085, 62.492743231000077 ], [ 6.613780144000089, 62.52016836100006 ], [ 6.476084832000083, 62.513169664000031 ], [ 6.564707879000082, 62.527492580000057 ], [ 6.53296959700009, 62.536851304000038 ], [ 6.26303144600007, 62.527492580000057 ], [ 6.24935957100007, 62.574652411000045 ], [ 6.291026238000086, 62.602606512000079 ], [ 6.537364129000082, 62.615627346000053 ], [ 6.612559441000087, 62.560980536000045 ], [ 6.621592644000089, 62.619574286000045 ], [ 6.756114129000082, 62.65460846600007 ], [ 6.917816602000073, 62.574652411000045 ], [ 6.928477410000085, 62.623032945000034 ], [ 6.887461785000085, 62.643540757000039 ], [ 7.092295769000089, 62.650946356000077 ], [ 7.037771030000044, 62.623032945000034 ], [ 7.096527540000068, 62.612209377000056 ], [ 7.127126498000052, 62.533677476000037 ], [ 7.157481316000087, 62.62921784100007 ], [ 7.36500084700009, 62.592840887000079 ], [ 7.430430535000085, 62.548041083000044 ], [ 7.517425977000073, 62.541083075000074 ], [ 7.542491082000083, 62.503607489000046 ], [ 7.572927280000044, 62.549994208000044 ], [ 7.778168165000068, 62.574652411000045 ], [ 7.50521894600007, 62.566351630000042 ], [ 7.422699415000068, 62.59796784100007 ], [ 7.418223504000082, 62.633002020000049 ], [ 7.477305535000085, 62.639593817000048 ], [ 7.520192905000044, 62.584662177000041 ], [ 7.52320397200009, 62.674383856000077 ], [ 7.835948113000086, 62.732123114000046 ], [ 8.018809441000087, 62.733587958000044 ], [ 8.147471550000091, 62.691961981000077 ], [ 8.045095248000052, 62.759588934000078 ], [ 8.073008660000085, 62.780096747000073 ], [ 7.489268425000091, 62.686835028000075 ], [ 7.359711134000065, 62.698187567000048 ], [ 7.403575066000087, 62.711900132000039 ], [ 7.36654707100007, 62.732896226000037 ], [ 7.471527540000068, 62.767238674000055 ], [ 7.68132571700005, 62.79437897300005 ], [ 7.609548373000052, 62.796087958000044 ], [ 7.312510613000086, 62.744045315000051 ], [ 6.97038821700005, 62.725572007000039 ], [ 6.94898522200009, 62.732896226000037 ], [ 6.983083530000044, 62.75336334800005 ], [ 6.961924675000091, 62.784165757000039 ], [ 7.009776238000086, 62.814846096000053 ], [ 7.215830925000091, 62.814846096000053 ], [ 7.133148634000065, 62.848944403000075 ], [ 7.016612175000091, 62.841538804000038 ], [ 6.948008660000085, 62.905462958000044 ], [ 6.880056186000047, 62.911078192000048 ], [ 7.076019727000073, 62.982855536000045 ], [ 7.27116946700005, 63.014105536000045 ], [ 7.501149936000047, 62.910834052000041 ], [ 7.668304884000065, 62.979315497000073 ], [ 7.780446811000047, 62.972601630000042 ], [ 7.668304884000065, 62.917873440000051 ], [ 7.694346550000091, 62.912095445000034 ], [ 7.973887566000087, 62.976955471000053 ], [ 8.086680535000085, 62.945217190000051 ], [ 8.154307488000086, 62.814846096000053 ], [ 8.513194207000083, 62.707424221000053 ], [ 8.545258009000065, 62.657171942000048 ], [ 8.567230665000068, 62.68227773600006 ], [ 8.543955925000091, 62.720648505000042 ], [ 8.184092644000089, 62.847723700000074 ], [ 8.171153191000087, 62.891791083000044 ], [ 8.209646030000044, 62.911078192000048 ], [ 8.147471550000091, 62.951402085000041 ], [ 7.983083530000044, 63.027085679000038 ], [ 7.877207879000082, 63.01040273600006 ], [ 7.997325066000087, 63.092271226000037 ], [ 8.086680535000085, 63.10968659100007 ], [ 8.160411004000082, 63.026434637000079 ], [ 8.330088738000086, 62.973374742000033 ], [ 8.309336785000085, 62.944566148000035 ], [ 8.329274936000047, 62.880682684000078 ], [ 8.538584832000083, 62.852362372000073 ], [ 8.428721550000091, 62.89679596600007 ], [ 8.450694207000083, 62.895656643000052 ], [ 8.702972852000073, 62.822251695000034 ], [ 8.41570071700005, 62.958807684000078 ], [ 8.668793165000068, 62.979315497000073 ], [ 8.521739129000082, 62.989203192000048 ], [ 8.586273634000065, 63.020249742000033 ], [ 8.553721550000091, 63.022650458000044 ], [ 8.374034050000091, 62.973089911000045 ], [ 8.319509311000047, 62.999823309000078 ], [ 8.470225457000083, 63.020249742000033 ], [ 8.238536004000082, 63.025458075000074 ], [ 8.165537957000083, 63.115301825000074 ], [ 8.219737175000091, 63.134466864000046 ], [ 8.284678582000083, 63.075506903000075 ], [ 8.319509311000047, 63.10968659100007 ], [ 8.236175977000073, 63.15070221600007 ], [ 8.640961134000065, 63.10968659100007 ], [ 8.56576582100007, 63.161200262000079 ], [ 8.849945509000065, 63.20343659100007 ], [ 8.805126986920925, 63.188934028082883 ], [ 8.901038445667723, 63.128911852000329 ], [ 9.036792433224207, 63.1549567742357 ], [ 9.205619337962048, 63.140797431556166 ], [ 9.220398797366613, 63.190923570366465 ], [ 9.279051547890617, 63.21146495194597 ], [ 9.467102084593535, 63.191905423196715 ], [ 9.490046421405225, 63.052947496529725 ], [ 9.580686882593568, 63.020236315453587 ], [ 9.449738803702814, 62.952281805960524 ], [ 9.416200799427315, 62.833167629782281 ], [ 8.936385125073457, 62.735809231111091 ], [ 9.16810224822018, 62.583260403444854 ], [ 9.244893425990824, 62.564476020152199 ], [ 9.166862012971535, 62.419394436104312 ], [ 9.0906392759818, 62.380120348075593 ], [ 8.409285515813906, 62.378931790569652 ], [ 8.154210645604792, 62.345497138182338 ], [ 8.02181562678976, 62.20984650341336 ], [ 7.742814568737344, 62.199821274931878 ], [ 7.611711460215702, 62.122513333223708 ], [ 7.611401400953866, 62.091920884741 ], [ 7.497816602953833, 62.100499173298203 ], [ 6.805094028066947, 61.973039252559431 ], [ 6.670115186866383, 62.078174954110807 ], [ 6.340212842748485, 61.976139837983112 ], [ 6.193296746047963, 62.008360094442764 ], [ 6.106687046270167, 61.973271796556162 ], [ 5.927473178744208, 62.000350247565848 ], [ 5.573851353257339, 61.963246568074624 ], [ 5.461680535000085, 62.006740627000056 ] ] ], [ [ [ 8.868988476736774, 63.210475979183059 ], [ 8.612152540000068, 63.203802802000041 ], [ 8.476410352000073, 63.294012762000079 ], [ 8.737559441000087, 63.334662177000041 ], [ 8.764414910000085, 63.349269924000055 ], [ 8.695567254000082, 63.356675523000035 ], [ 8.646820509000065, 63.409165757000039 ], [ 8.786387566000087, 63.429836330000057 ], [ 8.914991081872927, 63.35556468406287 ], [ 8.868988476736774, 63.210475979183059 ] ] ], [ [ [ 5.73609459700009, 62.280462958000044 ], [ 5.801117384000065, 62.277411200000074 ], [ 5.79070071700005, 62.214992580000057 ], [ 5.546885613000086, 62.192694403000075 ], [ 5.502126498000052, 62.225816148000035 ], [ 5.605723504000082, 62.225816148000035 ], [ 5.518077019000089, 62.243150132000039 ], [ 5.563243035000085, 62.291408596000053 ], [ 5.73609459700009, 62.280462958000044 ] ] ], [ [ [ 5.988617384000065, 62.396470445000034 ], [ 5.999522332000083, 62.366115627000056 ], [ 6.078786655000044, 62.341864325000074 ], [ 5.811289910000085, 62.245672919000071 ], [ 5.851573113000086, 62.280462958000044 ], [ 5.815603061000047, 62.385728257000039 ], [ 5.917002800000091, 62.429877020000049 ], [ 5.988617384000065, 62.396470445000034 ] ] ], [ [ [ 6.26303144600007, 62.423814195000034 ], [ 6.332530144000089, 62.41079336100006 ], [ 6.090668165000068, 62.402411200000074 ], [ 6.023448113000086, 62.437445380000042 ], [ 6.26303144600007, 62.423814195000034 ] ] ], [ [ [ 6.852793816000087, 62.745917059000078 ], [ 6.904470248000052, 62.732611395000049 ], [ 6.914073113000086, 62.698187567000048 ], [ 6.672373894000089, 62.655991929000038 ], [ 6.646657748000052, 62.678290106000077 ], [ 6.684743686000047, 62.730169989000046 ], [ 6.852793816000087, 62.745917059000078 ] ] ], [ [ [ 6.832286004000082, 62.841538804000038 ], [ 6.924327019000089, 62.856594143000052 ], [ 6.942149285000085, 62.825913804000038 ], [ 6.880056186000047, 62.808010158000059 ], [ 6.886729363000086, 62.775091864000046 ], [ 6.770355665000068, 62.816961981000077 ], [ 6.804209832000083, 62.822251695000034 ], [ 6.790049675000091, 62.857652085000041 ], [ 6.832286004000082, 62.841538804000038 ] ] ], [ [ [ 7.778168165000068, 63.081732489000046 ], [ 7.886729363000086, 63.099758205000057 ], [ 7.914724155000044, 63.081732489000046 ], [ 7.787933790000068, 63.020656643000052 ], [ 7.68132571700005, 63.055080471000053 ], [ 7.726410352000073, 63.093817450000074 ], [ 7.778168165000068, 63.081732489000046 ] ] ], [ [ [ 7.64039147200009, 63.055080471000053 ], [ 7.706309441000087, 63.006659247000073 ], [ 7.526540561000047, 62.946030992000033 ], [ 7.36654707100007, 62.99673086100006 ], [ 7.435557488000086, 63.020249742000033 ], [ 7.401377800000091, 63.061265367000033 ], [ 7.490244988000086, 63.068060614000046 ], [ 7.565196160000085, 63.020249742000033 ], [ 7.606130405000044, 63.07843659100007 ], [ 7.585134311000047, 63.116522528000075 ], [ 7.64779707100007, 63.10968659100007 ], [ 7.64039147200009, 63.055080471000053 ] ] ], [ [ [ 8.113291863000086, 63.239406643000052 ], [ 8.188487175000091, 63.157456773000035 ], [ 8.020192905000044, 63.137925523000035 ], [ 7.928396030000044, 63.177923895000049 ], [ 8.113291863000086, 63.239406643000052 ] ] ], [ [ [ 8.483897332000083, 63.246812242000033 ], [ 8.574717644000089, 63.199611721000053 ], [ 8.56576582100007, 63.177923895000049 ], [ 8.374034050000091, 63.164943752000056 ], [ 8.264170769000089, 63.232611395000049 ], [ 8.28842207100007, 63.277167059000078 ], [ 8.396006707000083, 63.22687409100007 ], [ 8.428721550000091, 63.287787177000041 ], [ 8.483897332000083, 63.246812242000033 ] ] ], [ [ [ 7.914724155000044, 63.342474677000041 ], [ 7.997325066000087, 63.342474677000041 ], [ 7.80632571700005, 63.371283270000049 ], [ 7.778168165000068, 63.411322333000044 ], [ 8.070567254000082, 63.47329336100006 ], [ 8.181651238000086, 63.390204169000071 ], [ 8.086680535000085, 63.328802802000041 ], [ 7.976817254000082, 63.315130927000041 ], [ 7.914724155000044, 63.342474677000041 ] ] ], [ [ [ 5.635996941000087, 62.319281317000048 ], [ 5.603037957000083, 62.32876211100006 ], [ 5.741465691000087, 62.360663153000075 ], [ 5.728526238000086, 62.326646226000037 ], [ 5.635996941000087, 62.319281317000048 ] ] ], [ [ [ 5.593923373000052, 62.339789130000042 ], [ 5.521332227000073, 62.334865627000056 ], [ 5.509938998000052, 62.363999742000033 ], [ 5.58171634200005, 62.35883209800005 ], [ 5.593923373000052, 62.339789130000042 ] ] ], [ [ [ 8.314789259000065, 63.181341864000046 ], [ 8.209808790000068, 63.161363023000035 ], [ 8.165293816000087, 63.213446356000077 ], [ 8.235118035000085, 63.222235419000071 ], [ 8.314789259000065, 63.181341864000046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-21", "NAME_1": "Svalbard" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.61135908275007, 68.042374985500061 ], [ 8.67288252025007, 68.001379706000051 ], [ 8.568064812250086, 67.953039862000054 ], [ 8.426097038750086, 68.018469549500054 ], [ 8.61135908275007, 68.042374985500061 ] ] ], [ [ [ 11.77037600975008, 69.135392564000057 ], [ 11.821604851250086, 69.128576971500053 ], [ 11.502879265250087, 69.00192902200007 ], [ 11.57856285875009, 69.051428534000053 ], [ 11.77037600975008, 69.135392564000057 ] ] ], [ [ [ 11.243576613750079, 69.692329043000058 ], [ 10.977610710750085, 69.533545233000069 ], [ 10.708364291250078, 69.467790025000056 ], [ 10.648464575250088, 69.411202843000069 ], [ 10.232005241750088, 69.421362616000067 ], [ 10.283518913750086, 69.447302557500052 ], [ 10.242259148250085, 69.49509308450007 ], [ 10.42035973375009, 69.556819972500051 ], [ 10.32075035875009, 69.536047674500054 ], [ 10.33442223375009, 69.553442694000069 ], [ 10.254506869250079, 69.568274237000054 ], [ 10.127065463250077, 69.531429347500051 ], [ 9.577464226250086, 69.498938299500054 ], [ 9.463938835750085, 69.507462876500057 ], [ 9.49612470775007, 69.530167954500058 ], [ 9.447093132250089, 69.549719549500054 ], [ 9.639231804250088, 69.584143377500055 ], [ 9.66157067125009, 69.645910956000051 ], [ 9.862091504750069, 69.738379217500068 ], [ 9.469676140250087, 69.828650213500055 ], [ 9.879588249750086, 69.884904282500059 ], [ 10.514231804250088, 69.907507635500053 ], [ 10.766429069750089, 69.858496405000068 ], [ 10.583933952750087, 69.823421535000051 ], [ 10.558706088250077, 69.798010565000055 ], [ 10.591420931750079, 69.772314764500067 ], [ 10.845327181750079, 69.714514471500053 ], [ 11.183665398250085, 69.73528676950005 ], [ 11.243576613750079, 69.692329043000058 ] ] ], [ [ [ 9.543325228750078, 69.888932603000057 ], [ 9.354807976250086, 69.876379706000051 ], [ 9.426951530750088, 69.916540838500055 ], [ 9.265574577750087, 69.937028306000059 ], [ 9.368479851250086, 69.952673651000055 ], [ 9.36176598375009, 69.974890448000053 ], [ 9.107981804250088, 70.017065741000067 ], [ 9.541372103750078, 70.05173370950007 ], [ 9.620310905750088, 70.090979315000055 ], [ 9.780874056750079, 70.063391424500054 ], [ 10.063588900750077, 70.077917791500056 ], [ 10.14887535875009, 70.023291327000067 ], [ 10.128977898250085, 69.99879588400006 ], [ 10.166819694750089, 69.913122870000052 ], [ 9.543325228750078, 69.888932603000057 ] ] ], [ [ [ 12.541575554250088, 70.128821112000054 ], [ 12.399973991750088, 70.092586574500046 ], [ 12.22936038475008, 70.16696808450007 ], [ 12.338938835750085, 70.183752752500055 ], [ 12.541575554250088, 70.128821112000054 ] ] ], [ [ [ 5.102610710750085, 69.897884426000047 ], [ 4.977325879750069, 69.896155096500053 ], [ 4.938100619250079, 69.916540838500055 ], [ 4.955393913750086, 69.933244126500057 ], [ 4.703074577750087, 70.003922837500056 ], [ 4.592112663750086, 69.99879588400006 ], [ 4.434764030750088, 70.122290350500066 ], [ 4.305491569750089, 70.164953924500054 ], [ 4.314646843250088, 70.20110708200005 ], [ 4.273387077750087, 70.224707342500068 ], [ 4.53111819725008, 70.196448065000055 ], [ 4.623118523250085, 70.146175441500048 ], [ 4.561350944750089, 70.125708319000069 ], [ 4.667511426750067, 70.084448553500067 ], [ 4.660716179250088, 70.043473618500059 ], [ 4.75475100975008, 70.053381659000053 ], [ 4.967316114250067, 70.003332831000051 ], [ 5.102610710750085, 69.897884426000047 ] ] ], [ [ [ 13.750681999750086, 70.231848456000051 ], [ 13.884715202750087, 70.228430487000054 ], [ 12.95217939525007, 70.20110708200005 ], [ 13.240509473750066, 70.262854315000055 ], [ 13.750681999750086, 70.231848456000051 ] ] ], [ [ [ 14.065989616750088, 70.283362127500055 ], [ 14.185821973750066, 70.283362127500055 ], [ 14.199737989250067, 70.276526190000055 ], [ 14.099314812250086, 70.263830877500055 ], [ 14.065989616750088, 70.283362127500055 ] ] ], [ [ [ 9.080638054250088, 70.34140656100007 ], [ 9.26508629625009, 70.342261053500067 ], [ 9.447093132250089, 70.306942043000049 ], [ 9.210317416250078, 70.276709295500069 ], [ 9.053294304250088, 70.300106105500049 ], [ 9.098704460750085, 70.309708970000059 ], [ 9.080638054250088, 70.34140656100007 ] ] ], [ [ [ 9.060130241750088, 70.467993475500066 ], [ 9.120188835750085, 70.456071275000056 ], [ 8.881948275750077, 70.44785187350007 ], [ 8.844431999750086, 70.47515493350005 ], [ 9.060130241750088, 70.467993475500066 ] ] ], [ [ [ 4.547434929250088, 70.632829087500056 ], [ 4.568186882250089, 70.612341620000052 ], [ 4.441966179250088, 70.604630845000059 ], [ 4.40025882225008, 70.622575181000059 ], [ 4.455190463250077, 70.625993150000056 ], [ 4.386668327750087, 70.639949855500049 ], [ 4.547434929250088, 70.632829087500056 ] ] ], [ [ [ 4.389923536250066, 70.650183416500056 ], [ 4.354075554250088, 70.65992869650006 ], [ 4.537181023250085, 70.650183416500056 ], [ 4.52330569725008, 70.645056463500055 ], [ 4.389923536250066, 70.650183416500056 ] ] ], [ [ [ 9.135569694750089, 70.09840525900006 ], [ 8.912709994250079, 70.091467596500053 ], [ 8.822581413750086, 70.070105291500056 ], [ 8.871775749750086, 70.036637681000059 ], [ 8.512075228750078, 70.005591131500069 ], [ 8.564402702750087, 69.968298651000055 ], [ 8.508372429250088, 69.920263983000069 ], [ 8.573802116750088, 69.894324041500056 ], [ 8.491486036250066, 69.868628241000067 ], [ 8.580353223750066, 69.830867824500046 ], [ 8.436798536250066, 69.793595689000057 ], [ 8.234324577750087, 69.789933579500058 ], [ 8.282420280750088, 69.769446112000054 ], [ 8.196401400750077, 69.731848456000051 ], [ 8.249298536250066, 69.707739569000069 ], [ 8.258494499750086, 69.666398423000061 ], [ 8.172556999750086, 69.570491847500051 ], [ 8.18110192125009, 69.539465643500051 ], [ 7.843577507250089, 69.502234198000053 ], [ 7.699900749750086, 69.302995103000057 ], [ 7.579783562250086, 69.306697902500048 ], [ 7.693064812250086, 69.268835760500053 ], [ 7.490753614250067, 69.17632680850005 ], [ 7.627228223750066, 69.127783514500067 ], [ 7.43598473375009, 69.062781073000053 ], [ 7.246653679250088, 69.090552069000069 ], [ 7.203074577750087, 69.065568345000059 ], [ 7.173208041250078, 69.133317368500059 ], [ 6.781931999750086, 69.217627264500067 ], [ 6.91840660875009, 69.255509751500057 ], [ 7.151723666250078, 69.24566274600005 ], [ 7.295481804250088, 69.279394842500068 ], [ 7.16002444725008, 69.275671698000053 ], [ 7.045685254750069, 69.321936346500053 ], [ 6.960032585750085, 69.313859360500061 ], [ 6.97447757225008, 69.287146307500052 ], [ 6.704051140250087, 69.283626613500047 ], [ 6.551300489250067, 69.346736965000048 ], [ 6.255076530750088, 69.37005239450005 ], [ 6.018097364250067, 69.484289862000054 ], [ 6.010691765250087, 69.50563182150006 ], [ 6.05846194725008, 69.50563182150006 ], [ 5.986521843250088, 69.546606756500069 ], [ 6.251170280750088, 69.572404282500059 ], [ 6.32913252025007, 69.546606756500069 ], [ 6.305003288750086, 69.525610663000066 ], [ 6.38674970775007, 69.526587225500066 ], [ 6.552358431750079, 69.562720038000066 ], [ 6.957835319750089, 69.545141913000066 ], [ 7.141876661250066, 69.499792791500056 ], [ 7.18598473375009, 69.51246775900006 ], [ 6.95413252025007, 69.568762518500051 ], [ 6.401438835750085, 69.611466782500059 ], [ 7.197866244250079, 69.678157863500047 ], [ 7.593455437250086, 69.670101222500051 ], [ 7.425852898250085, 69.717932440000055 ], [ 7.535105827750087, 69.74863312350007 ], [ 7.372630241750088, 69.712378241000067 ], [ 6.92385908275007, 69.69703807150006 ], [ 6.80846194725008, 69.719417629000048 ], [ 6.576365593250088, 69.674841620000052 ], [ 6.118968132250089, 69.67148468600007 ], [ 6.009715202750087, 69.639319159000053 ], [ 5.89985192125009, 69.654333807500052 ], [ 5.942088249750086, 69.680070298000061 ], [ 5.856761101250086, 69.704260565000055 ], [ 5.866526726250086, 69.776261704500058 ], [ 5.825755241750088, 69.807287909000053 ], [ 6.010040723750066, 69.827205715000048 ], [ 6.196238640250087, 69.761572577000067 ], [ 6.204213900750077, 69.789343573000053 ], [ 6.147573275750077, 69.826086737000054 ], [ 6.548533562250086, 69.837683416500056 ], [ 6.528025749750086, 69.847937323000053 ], [ 6.739858431750079, 69.898657538000066 ], [ 6.87796064525007, 69.886776027500048 ], [ 6.896027051750067, 69.896338202000067 ], [ 6.826284213250077, 69.923681952000067 ], [ 6.92874189525007, 69.950822251500057 ], [ 7.49946129625009, 69.955501613500047 ], [ 7.679392937250086, 69.99566274600005 ], [ 7.456614616750088, 69.971818345000059 ], [ 7.19615725975008, 70.005591131500069 ], [ 7.44477379625009, 70.103369452000067 ], [ 7.308299187250086, 70.139013983000069 ], [ 7.214142286250066, 70.105139471500053 ], [ 7.190053744250079, 70.06324900900006 ], [ 7.032176140250087, 70.020727850500066 ], [ 6.750926140250087, 70.00856150900006 ], [ 6.627635124750086, 70.07415395700005 ], [ 6.763743523250085, 70.106665350500066 ], [ 6.780589226250086, 70.14251333200005 ], [ 6.743723991750088, 70.173498846500053 ], [ 6.774485710750085, 70.183752752500055 ], [ 6.721954786250066, 70.20505402200007 ], [ 6.63072757225008, 70.149593410000051 ], [ 6.661814812250086, 70.112036444000069 ], [ 6.522532585750085, 70.07806020700005 ], [ 6.431834343250088, 70.101477362000054 ], [ 6.456004265250087, 70.122290350500066 ], [ 6.438670280750088, 70.146175441500048 ], [ 6.253977898250085, 70.118567206000051 ], [ 6.302073601250086, 70.108313299500054 ], [ 6.325999382250089, 70.057104803500067 ], [ 6.222972038750086, 70.029822088500055 ], [ 6.398020866750088, 69.974890448000053 ], [ 6.174184603750078, 69.973079738500047 ], [ 6.154368523250085, 69.961218573000053 ], [ 6.192210319750089, 69.933610337500056 ], [ 6.069122754750069, 69.900814113500047 ], [ 6.07953942125009, 69.923681952000067 ], [ 6.01410973375009, 69.920263983000069 ], [ 6.003530306750079, 69.892615057500052 ], [ 5.904246452750087, 69.913122870000052 ], [ 5.959178093250088, 69.885799465000048 ], [ 5.53600100975008, 69.881282863500047 ], [ 5.486847364250067, 69.902868963500055 ], [ 5.506948275750077, 69.927059230500049 ], [ 5.474436882250089, 69.953222967500068 ], [ 5.212473991750088, 70.022986151000055 ], [ 5.630198601250086, 70.050594387000046 ], [ 5.246043327750087, 70.051448879000048 ], [ 4.982981804250088, 70.09840525900006 ], [ 4.852814161250066, 70.152991034000053 ], [ 4.921580437250086, 70.19215525900006 ], [ 4.99986819725008, 70.190588690000055 ], [ 4.982045931750079, 70.201513983000069 ], [ 4.69827314525007, 70.265967108000069 ], [ 5.284495476250086, 70.235266424500054 ], [ 5.243357780750088, 70.277685858000069 ], [ 5.063588900750077, 70.266496079500058 ], [ 5.020701530750088, 70.272803045500069 ], [ 5.085561556750079, 70.279638983000069 ], [ 4.872996452750087, 70.31406281100007 ], [ 5.00670413475008, 70.379289048000061 ], [ 5.099192741750088, 70.386084295500069 ], [ 5.061350944750089, 70.399715480500049 ], [ 5.088694694750089, 70.430456854000056 ], [ 4.94868004625009, 70.42734406100007 ], [ 4.989614291250078, 70.399715480500049 ], [ 4.957631869250079, 70.392370916500056 ], [ 4.876739942250069, 70.440466620000052 ], [ 4.82856285875009, 70.43417999850007 ], [ 4.807810905750088, 70.420223293000049 ], [ 4.892527702750087, 70.373144842500068 ], [ 4.645335319750089, 70.32968781100007 ], [ 4.601674838250077, 70.397680975500066 ], [ 4.451772494250079, 70.464880682500052 ], [ 4.489370150750077, 70.471736965000048 ], [ 4.458811882250089, 70.484778143500051 ], [ 4.481232129750069, 70.514685370000052 ], [ 4.36957848375009, 70.550574041500056 ], [ 4.623118523250085, 70.560827948000053 ], [ 4.458689812250086, 70.577856756500069 ], [ 4.538035515250087, 70.604346014500067 ], [ 4.760040723750066, 70.595251776000055 ], [ 4.63813317125009, 70.63339874850007 ], [ 4.644847038750086, 70.673376776000055 ], [ 4.793081088250077, 70.662899074500046 ], [ 4.794139030750088, 70.683996893500051 ], [ 4.942332390250087, 70.701880194000069 ], [ 5.054515007250089, 70.625993150000056 ], [ 5.17971845775007, 70.611853338500055 ], [ 5.206004265250087, 70.638098456000051 ], [ 5.112864616750088, 70.683996893500051 ], [ 5.226756218250088, 70.696448065000055 ], [ 5.299510124750086, 70.652502752500055 ], [ 5.92971845775007, 70.72031281100007 ], [ 6.00629723375009, 70.698034979000056 ], [ 6.017527702750087, 70.66696808450007 ], [ 5.900340202750087, 70.63258494650006 ], [ 5.538035515250087, 70.625993150000056 ], [ 5.256907585750085, 70.563900051000047 ], [ 5.757029655750088, 70.575578110500061 ], [ 5.777618848750066, 70.563900051000047 ], [ 5.664622429250088, 70.540320135500053 ], [ 5.660960319750089, 70.516129868500059 ], [ 5.839671257250089, 70.519832668000049 ], [ 6.052032911250066, 70.412268377500055 ], [ 6.110301140250087, 70.45094432150006 ], [ 5.972768588250077, 70.550574041500056 ], [ 6.171458366750088, 70.588110663000066 ], [ 6.103139681750079, 70.595251776000055 ], [ 6.305491569750089, 70.685095526000055 ], [ 6.460154655750088, 70.666194972500051 ], [ 6.678823275750077, 70.581274725500066 ], [ 6.678823275750077, 70.547156073000053 ], [ 6.779856804250088, 70.444372870000052 ], [ 6.917552116750088, 70.400447902500048 ], [ 6.860423210750085, 70.355017401000055 ], [ 6.872264030750088, 70.335465806000059 ], [ 6.971995476250086, 70.359879868500059 ], [ 7.09068850975008, 70.313208319000069 ], [ 7.107127312250086, 70.274695135500053 ], [ 7.248810254750069, 70.235083319000069 ], [ 7.276642286250066, 70.24472687350007 ], [ 7.127635124750086, 70.348527329500058 ], [ 7.106557650750077, 70.396378892000058 ], [ 7.010935905750088, 70.43417999850007 ], [ 6.957713249750086, 70.543860174500054 ], [ 6.990183952750087, 70.560827948000053 ], [ 6.853587273250085, 70.663509426000047 ], [ 6.88910973375009, 70.717932440000055 ], [ 7.10004723375009, 70.714738267000058 ], [ 7.009064161250066, 70.752010402500048 ], [ 7.04202314525007, 70.78704458200005 ], [ 7.178538444750089, 70.81304555850005 ], [ 7.309153679250088, 70.800696112000054 ], [ 7.441233757250089, 70.717261053500067 ], [ 7.51354007225008, 70.760657049500054 ], [ 7.665965202750087, 70.752132472500051 ], [ 8.080393913750086, 70.643042303500067 ], [ 7.826528353750078, 70.55364614450005 ], [ 7.905629916250078, 70.55364614450005 ], [ 7.922679069750089, 70.526383775000056 ], [ 7.919016960750085, 70.492224432500052 ], [ 7.857778353750078, 70.464046535000051 ], [ 7.97171064525007, 70.480017401000055 ], [ 8.084259473750066, 70.573523260500053 ], [ 8.204661491750088, 70.59433624850007 ], [ 8.394847038750086, 70.551123358000069 ], [ 8.47211754625009, 70.499914862000054 ], [ 8.487864616750088, 70.47515493350005 ], [ 8.450022819750089, 70.45778025900006 ], [ 8.470774773250085, 70.437292791500056 ], [ 8.327098015250087, 70.409969387000046 ], [ 8.453481478750078, 70.406551418000049 ], [ 8.504954460750085, 70.389502264500067 ], [ 8.503733757250089, 70.357845363500047 ], [ 8.924347364250067, 70.36191437350007 ], [ 8.998362663750086, 70.308813788000066 ], [ 8.98440595775007, 70.286474920500069 ], [ 9.803904655750088, 70.196387030000068 ], [ 9.785431348750066, 70.17636749850007 ], [ 9.807159864250067, 70.16696808450007 ], [ 9.711253288750086, 70.128821112000054 ], [ 9.722849968250088, 70.108659165500057 ], [ 9.376902702750087, 70.126155910000051 ], [ 9.32034345775007, 70.09466176950005 ], [ 9.135569694750089, 70.09840525900006 ] ] ], [ [ [ 15.580515983750061, 70.893205064000057 ], [ 15.851390007250089, 70.889746405000068 ], [ 15.446726921250061, 70.845984198000053 ], [ 14.769724968250088, 70.831335760500053 ], [ 15.580515983750061, 70.893205064000057 ] ] ], [ [ [ 8.179392937250086, 70.917395331000051 ], [ 8.090607129750069, 70.924231268500051 ], [ 8.189646843250088, 70.961462713500055 ], [ 8.409007194750089, 70.930721340000048 ], [ 8.276886426750067, 70.898779608000069 ], [ 8.179392937250086, 70.917395331000051 ] ] ], [ [ [ 11.115834994250079, 71.002417303500067 ], [ 11.152618848750066, 71.006384588500055 ], [ 11.221995476250086, 70.975134588500055 ], [ 11.114777051750067, 70.971045233000069 ], [ 11.115834994250079, 71.002417303500067 ] ] ], [ [ [ 11.177317741750088, 71.023535467500068 ], [ 11.13967939525007, 71.014136053500067 ], [ 11.01996910875009, 71.026648260500053 ], [ 11.11860192125009, 71.035172837500056 ], [ 11.177317741750088, 71.023535467500068 ] ] ], [ [ [ 12.616730176750067, 70.816076971500053 ], [ 12.582224968250088, 70.76657745950007 ], [ 12.643667025750077, 70.74179718600007 ], [ 12.634877963250077, 70.716203110500061 ], [ 11.94420413475008, 70.59238312350007 ], [ 12.015574577750087, 70.53708527200007 ], [ 11.94575035875009, 70.500464178500067 ], [ 11.622833692250069, 70.447485663000066 ], [ 11.491526726250086, 70.468481756500069 ], [ 11.17524254625009, 70.434302069000069 ], [ 11.161082390250087, 70.399756170500069 ], [ 11.057729525750077, 70.37379588400006 ], [ 10.49400882225008, 70.390784002500055 ], [ 10.35354658275007, 70.43417999850007 ], [ 10.358673536250066, 70.46148305850005 ], [ 10.478709343250088, 70.489111639500067 ], [ 9.439646843250088, 70.468400376500057 ], [ 9.457713249750086, 70.481970526000055 ], [ 9.396067741750088, 70.508642889500067 ], [ 9.129588249750086, 70.513769842500068 ], [ 8.873850944750089, 70.556311346500053 ], [ 8.847849968250088, 70.585018215000048 ], [ 9.135366244250079, 70.602087713500055 ], [ 9.608470085750085, 70.563900051000047 ], [ 9.26899254625009, 70.622575181000059 ], [ 9.956370476250086, 70.632829087500056 ], [ 10.204661491750088, 70.67376333200005 ], [ 10.174917025750077, 70.68222687350007 ], [ 8.423126661250066, 70.640906073000053 ], [ 8.087189161250066, 70.732112941500048 ], [ 8.342967155750088, 70.757727362000054 ], [ 8.371450228750078, 70.769669907500059 ], [ 8.309682650750077, 70.769669907500059 ], [ 8.365550163750086, 70.784440415500057 ], [ 8.426097038750086, 70.76657745950007 ], [ 8.49807783275007, 70.807532049500054 ], [ 8.148631218250088, 70.803808905000068 ], [ 8.107371452750087, 70.821183579500058 ], [ 8.213491244250079, 70.821183579500058 ], [ 7.922679069750089, 70.848486639500067 ], [ 8.049917025750077, 70.875789699500046 ], [ 8.415843132250089, 70.872717596500053 ], [ 8.381419304250088, 70.882951157500059 ], [ 8.666819694750089, 70.821997381500069 ], [ 8.823598666250078, 70.855322577000067 ], [ 8.643341504750069, 70.878210760500053 ], [ 8.522003614250067, 70.951208807500052 ], [ 8.547923210750085, 70.958349920500069 ], [ 8.86705569725008, 70.888098456000051 ], [ 8.957102898250085, 70.889746405000068 ], [ 8.888784213250077, 70.903418280000068 ], [ 8.960520866750088, 70.951208807500052 ], [ 8.91645348375009, 70.954626776000055 ], [ 8.988108757250089, 70.971981105500049 ], [ 8.765574577750087, 70.983801581000051 ], [ 8.781443718250088, 71.015478827000067 ], [ 8.868357780750088, 70.999304510500053 ], [ 8.859568718250088, 71.031876939000057 ], [ 9.049591504750069, 71.01328156100007 ], [ 9.083933952750087, 70.968603827000067 ], [ 9.226105176750067, 70.991105454500058 ], [ 9.327098015250087, 70.930721340000048 ], [ 9.450795931750079, 70.93413930850005 ], [ 9.40571129625009, 70.91367218600007 ], [ 9.457631869250079, 70.88632843600007 ], [ 9.95453942125009, 70.915421860500061 ], [ 9.980011426750067, 70.886084295500069 ], [ 9.831004265250087, 70.841976222500051 ], [ 10.063792351250086, 70.834855454500058 ], [ 10.13951663475008, 70.800696112000054 ], [ 10.128977898250085, 70.77337270700005 ], [ 10.172801140250087, 70.770890610500061 ], [ 10.214060905750088, 70.801855780000068 ], [ 10.269847038750086, 70.78704458200005 ], [ 10.204661491750088, 70.814367987000054 ], [ 10.26272627025007, 70.814367987000054 ], [ 10.218048536250066, 70.834855454500058 ], [ 10.255931023250085, 70.910254217500068 ], [ 10.31920413475008, 70.928869940000055 ], [ 10.20006350975008, 70.97128937350007 ], [ 10.259877963250077, 70.999792791500056 ], [ 10.372264030750088, 70.992814439000057 ], [ 10.337840202750087, 70.958349920500069 ], [ 10.406362338250077, 70.944372870000052 ], [ 10.379425489250067, 70.958349920500069 ], [ 10.44770348375009, 70.985652980500049 ], [ 10.421987338250077, 71.038000799500054 ], [ 10.711497429250088, 70.995886541500056 ], [ 10.59166507225008, 70.975134588500055 ], [ 10.708079460750085, 70.948136704500058 ], [ 10.558706088250077, 70.903540350500066 ], [ 10.534536166250078, 70.860408840000048 ], [ 10.592356804250088, 70.838151353000057 ], [ 10.646311882250089, 70.841976222500051 ], [ 10.574575228750078, 70.865576483000069 ], [ 10.684886101250086, 70.876074530000068 ], [ 10.730540398250085, 70.850622870000052 ], [ 10.730540398250085, 70.88144562350007 ], [ 10.766429069750089, 70.886043605500049 ], [ 10.815013054250088, 70.846106268500051 ], [ 10.93362470775007, 70.87163930850005 ], [ 10.889598015250087, 70.910254217500068 ], [ 10.913849317250069, 70.933895168000049 ], [ 11.038442416250078, 70.91464874850007 ], [ 10.978709343250088, 70.93413930850005 ], [ 11.126170280750088, 70.917029120000052 ], [ 11.232249382250089, 70.940954901000055 ], [ 11.105581088250077, 70.954626776000055 ], [ 11.161082390250087, 70.967261053500067 ], [ 11.331573926750067, 70.937882798000061 ], [ 11.266673210750085, 70.927018540500057 ], [ 11.29186038475008, 70.90720245950007 ], [ 11.44615725975008, 70.957312323000053 ], [ 11.475535515250087, 70.940954901000055 ], [ 11.421254916250078, 70.903418280000068 ], [ 11.708933952750087, 70.92050812350007 ], [ 11.643748405750088, 70.906531073000053 ], [ 11.921458366750088, 70.886043605500049 ], [ 11.883372429250088, 70.865576483000069 ], [ 12.434764030750088, 70.866492010500053 ], [ 12.650747103750078, 70.828019517000058 ], [ 12.616730176750067, 70.816076971500053 ] ] ], [ [ [ 8.984690788750086, 71.023535467500068 ], [ 8.957306348750066, 71.031876939000057 ], [ 9.097972038750086, 71.03688182150006 ], [ 9.02485192125009, 71.024064439000057 ], [ 8.984690788750086, 71.023535467500068 ] ] ], [ [ [ 9.409943067250069, 71.091813462500056 ], [ 9.364451530750088, 71.100439764500067 ], [ 9.279246452750087, 71.109167791500056 ], [ 9.426951530750088, 71.109167791500056 ], [ 9.409943067250069, 71.091813462500056 ] ] ], [ [ [ 9.618439161250066, 71.109167791500056 ], [ 9.543325228750078, 71.126257635500053 ], [ 9.714671257250089, 71.119421698000053 ], [ 9.618439161250066, 71.109167791500056 ] ] ], [ [ [ 9.347849968250088, 71.146745103000057 ], [ 9.290110710750085, 71.164099432500052 ], [ 9.532786491750088, 71.13649119650006 ], [ 9.441966179250088, 71.119421698000053 ], [ 9.347849968250088, 71.146745103000057 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "NO-05", "NAME_1": "Oppland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.163973097880159, 60.622635996553981 ], [ 11.09532311387062, 60.532016100162878 ], [ 10.862262403587067, 60.490209865692691 ], [ 10.716069777298344, 60.523127753243216 ], [ 10.683823683316291, 60.447163397772556 ], [ 10.830274692023409, 60.432797350417331 ], [ 10.921845330097881, 60.356884670890793 ], [ 10.799578891652516, 60.250637926199317 ], [ 10.754103630977795, 60.168162339720197 ], [ 10.680102980268316, 60.153382880315633 ], [ 10.33154544406699, 60.280041816276764 ], [ 10.225247023431393, 60.396313788550458 ], [ 10.167989535988283, 60.532274482581272 ], [ 10.043707716837673, 60.655393581748342 ], [ 9.942990350324408, 60.658571682437184 ], [ 9.935393913698135, 60.616197008085408 ], [ 9.820878939711292, 60.591392320199361 ], [ 9.831420933029619, 60.48499054587694 ], [ 9.657633090894421, 60.514704495216279 ], [ 9.606421745567104, 60.561213283765994 ], [ 9.41015465731158, 60.584726061358595 ], [ 9.407829217344499, 60.629219469203122 ], [ 9.280911898964973, 60.789545599749601 ], [ 8.893131951578312, 60.913388170227847 ], [ 8.663326857248649, 60.949509995989501 ], [ 8.604829136355534, 61.003925279528005 ], [ 8.279732700004104, 61.117665107158928 ], [ 8.198083936724288, 61.072448228902601 ], [ 8.047137077713955, 61.231198229214897 ], [ 8.203820021376885, 61.337289944275483 ], [ 8.141911654898934, 61.426690172013821 ], [ 8.30856814930064, 61.44976369913536 ], [ 8.2041300797394, 61.523635159534933 ], [ 7.991584914412272, 61.576241767043882 ], [ 7.868491651868226, 61.745016994938339 ], [ 7.492390577563071, 61.760468247911263 ], [ 7.393533563023482, 61.878135484165227 ], [ 7.405160760160925, 62.003683376986203 ], [ 7.327904494396876, 62.049804592807675 ], [ 7.497816602953833, 62.100499173298203 ], [ 7.611401400953866, 62.091920884741 ], [ 7.611711460215702, 62.122513333223708 ], [ 7.742814568737344, 62.199821274931878 ], [ 7.970914340724221, 62.19137217938254 ], [ 8.071941765600002, 62.243151963692128 ], [ 8.154210645604792, 62.345497138182338 ], [ 8.409285515813906, 62.378931790569652 ], [ 9.0906392759818, 62.380120348075593 ], [ 9.597275018027631, 62.274312852955745 ], [ 9.783051791606908, 62.28581085888402 ], [ 9.659028354874692, 62.169693915341895 ], [ 9.903457878977918, 62.074454251062832 ], [ 9.80832156658704, 62.017687690034847 ], [ 9.811577183440249, 61.929863593430071 ], [ 9.9986975441563, 61.882683010412563 ], [ 10.005260451108938, 61.910846666140685 ], [ 10.085617303195988, 61.904387111975609 ], [ 10.106701287134683, 61.848214830150255 ], [ 10.058280469767851, 61.756334133713267 ], [ 10.389578077865963, 61.682178453372899 ], [ 10.51809736490145, 61.736748766542291 ], [ 10.608376091783214, 61.734940091412057 ], [ 10.687699415995212, 61.479761868415494 ], [ 10.853735792772625, 61.281169339293569 ], [ 10.450401238726158, 61.046661689085681 ], [ 10.729970736660164, 60.884190985725354 ], [ 10.727231886442382, 60.804325060053429 ], [ 11.163973097880159, 60.622635996553981 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/peru.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/peru.geojson new file mode 100644 index 000000000000..5ab3207a6ab1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/peru.geojson @@ -0,0 +1,33 @@ +{ +"type": "FeatureCollection", +"name": "PER_adm1", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-AMA", "NAME_0": "Peru", "ID_1": 1, "NAME_1": "Amazonas", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.789451599121094, -3.114161968231201 ], [ -77.789535522460938, -3.119230985641366 ], [ -77.789222717285099, -3.121257066726685 ], [ -77.78839111328125, -3.124367952346802 ], [ -77.788360595703068, -3.126898050308228 ], [ -77.786743164062443, -3.135478973388672 ], [ -77.785102844238224, -3.151945114135685 ], [ -77.784523010253849, -3.153446912765503 ], [ -77.783187866210881, -3.162071943283024 ], [ -77.782600402832031, -3.163311004638672 ], [ -77.781814575195312, -3.170152902603149 ], [ -77.781761169433537, -3.170833587646484 ], [ -77.781150817871094, -3.178641080856266 ], [ -77.781219482421761, -3.182780027389526 ], [ -77.782646179199162, -3.191169023513794 ], [ -77.782989501953125, -3.195749998092651 ], [ -77.783012390136662, -3.200809955596924 ], [ -77.782470703125, -3.205374956130981 ], [ -77.782546997070256, -3.221008062362614 ], [ -77.781990051269531, -3.223664999008179 ], [ -77.781455993652344, -3.232839107513428 ], [ -77.7808837890625, -3.234340906143132 ], [ -77.780082702636719, -3.239576101303101 ], [ -77.779800415039062, -3.2430100440979 ], [ -77.779853820800724, -3.250581979751587 ], [ -77.780433654785099, -3.267595052719059 ], [ -77.7803955078125, -3.273803949356079 ], [ -77.779617309570312, -3.279262065887451 ], [ -77.778305053710938, -3.283423900604134 ], [ -77.777145385742188, -3.289525032043457 ], [ -77.776649475097656, -3.293395042419377 ], [ -77.77630615234375, -3.29913401603693 ], [ -77.776046752929631, -3.307874917984009 ], [ -77.776100158691406, -3.316375970840397 ], [ -77.777259826660156, -3.323087930679264 ], [ -77.777427673339844, -3.340101957321053 ], [ -77.776985168457031, -3.352040052413884 ], [ -77.776237487792912, -3.359587907791138 ], [ -77.774528503417912, -3.368611097335815 ], [ -77.774337768554631, -3.375740051269474 ], [ -77.772964477539062, -3.388766050338745 ], [ -77.772994995117131, -3.394973993301278 ], [ -77.772438049316349, -3.398139953613224 ], [ -77.772743225097656, -3.40018892288208 ], [ -77.771896362304688, -3.404467105865479 ], [ -77.771636962890625, -3.409282922744637 ], [ -77.769630432128906, -3.41848611831665 ], [ -77.765457153320256, -3.43199896812439 ], [ -77.763618469238281, -3.440768957138062 ], [ -77.762168884277344, -3.445610046386719 ], [ -77.760108947753849, -3.451206922531128 ], [ -77.757034301757812, -3.457866907119751 ], [ -77.753128051757812, -3.465143918991089 ], [ -77.744621276855469, -3.478462934494019 ], [ -77.740104675292912, -3.484802007675057 ], [ -77.738868713378849, -3.487253904342538 ], [ -77.733230590820256, -3.494399070739746 ], [ -77.731376647949219, -3.497566938400212 ], [ -77.730300903320312, -3.500833034515381 ], [ -77.727424621581974, -3.51501202583313 ], [ -77.725402832031193, -3.521595954894906 ], [ -77.723701477050724, -3.525099039077702 ], [ -77.722267150878849, -3.526566982269173 ], [ -77.719978332519474, -3.530280113220215 ], [ -77.718017578125, -3.532505989074707 ], [ -77.712646484374943, -3.538136005401611 ], [ -77.708175659179688, -3.542395114898625 ], [ -77.704803466796818, -3.544744968414307 ], [ -77.699996948242188, -3.547370910644531 ], [ -77.683914184570256, -3.558234930038338 ], [ -77.68157958984375, -3.559144973754883 ], [ -77.677650451660043, -3.562273979187012 ], [ -77.676986694335938, -3.562340021133366 ], [ -77.672348022460938, -3.565670013427734 ], [ -77.669227600097599, -3.567090034484863 ], [ -77.664001464843693, -3.572065114974976 ], [ -77.660537719726562, -3.579052925109863 ], [ -77.659736633300781, -3.58191990852356 ], [ -77.656890869140625, -3.58741307258606 ], [ -77.653221130371037, -3.596327066421452 ], [ -77.647529602050781, -3.607839107513428 ], [ -77.642608642578125, -3.621427059173527 ], [ -77.636390686035156, -3.63317608833313 ], [ -77.634002685546875, -3.638885021209717 ], [ -77.631027221679688, -3.643783092498722 ], [ -77.630332946777287, -3.646675109863224 ], [ -77.628517150878849, -3.649888992309457 ], [ -77.627555847167912, -3.652441024780217 ], [ -77.625595092773438, -3.664239883422852 ], [ -77.625343322753906, -3.666980028152466 ], [ -77.625366210937443, -3.670892953872624 ], [ -77.624801635742131, -3.67270302772522 ], [ -77.624267578125, -3.678648948669434 ], [ -77.62420654296875, -3.691293954849186 ], [ -77.624511718749943, -3.70186710357666 ], [ -77.625251770019531, -3.711498022079468 ], [ -77.6260986328125, -3.715082883834782 ], [ -77.62615966796875, -3.717369079589844 ], [ -77.627883911132812, -3.723337888717651 ], [ -77.627876281738281, -3.724721908569279 ], [ -77.629600524902344, -3.73068189620966 ], [ -77.630790710449162, -3.737001895904541 ], [ -77.633087158203068, -3.74395489692688 ], [ -77.636222839355469, -3.751617908477783 ], [ -77.637123107910156, -3.755419015884286 ], [ -77.639060974121094, -3.760085105895996 ], [ -77.640937805175781, -3.765547990798837 ], [ -77.642356872558537, -3.771101951599064 ], [ -77.642601013183594, -3.773613929748478 ], [ -77.642593383789062, -3.776631116867009 ], [ -77.642341613769474, -3.780066013336125 ], [ -77.641212463378849, -3.782835006713867 ], [ -77.640365600585938, -3.786878108978271 ], [ -77.639022827148381, -3.789799928665104 ], [ -77.638092041015625, -3.79593110084528 ], [ -77.636459350585938, -3.799724102020207 ], [ -77.635116577148324, -3.804848909378052 ], [ -77.633758544921818, -3.808486938476562 ], [ -77.631645202636719, -3.812577962875366 ], [ -77.6285400390625, -3.817109107971135 ], [ -77.621391296386719, -3.824206113815308 ], [ -77.619140625, -3.827375888824349 ], [ -77.616355895996094, -3.830185890197697 ], [ -77.603782653808594, -3.83934211730957 ], [ -77.597702026367131, -3.844160079956055 ], [ -77.591476440429688, -3.849883079528752 ], [ -77.583496093749943, -3.858076095580941 ], [ -77.582199096679688, -3.860250949859562 ], [ -77.581619262695312, -3.86198711395258 ], [ -77.576278686523438, -3.87026309967041 ], [ -77.572761535644531, -3.877728939056396 ], [ -77.570892333984375, -3.880338907241764 ], [ -77.568550109863168, -3.885072946548462 ], [ -77.566871643066406, -3.887219905853215 ], [ -77.561393737792912, -3.89308404922474 ], [ -77.559082031249943, -3.896488904952946 ], [ -77.554992675781193, -3.90366792678833 ], [ -77.553932189941349, -3.90646505355835 ], [ -77.553939819335881, -3.907610893249512 ], [ -77.551986694335938, -3.913006067275944 ], [ -77.55169677734375, -3.915056943893376 ], [ -77.549179077148381, -3.920967102050668 ], [ -77.547454833984318, -3.925725936889648 ], [ -77.545967102050781, -3.930792093276921 ], [ -77.545196533203125, -3.936929941177368 ], [ -77.544967651367131, -3.943383932113647 ], [ -77.545028686523438, -3.962923049926758 ], [ -77.54388427734375, -3.977586984634343 ], [ -77.543243408203068, -3.982368946075383 ], [ -77.542335510253906, -3.986646890640202 ], [ -77.538726806640625, -3.9978830814361 ], [ -77.537979125976562, -4.000823020935059 ], [ -77.537887573242188, -4.002630233764592 ], [ -77.538703918457031, -4.004788875579834 ], [ -77.539360046386662, -4.009099006652775 ], [ -77.540214538574162, -4.018486022949219 ], [ -77.540496826171818, -4.034572124481201 ], [ -77.540000915527287, -4.047677993774414 ], [ -77.540222167968693, -4.054096221923771 ], [ -77.540779113769474, -4.059804916381836 ], [ -77.543342590331974, -4.077322006225472 ], [ -77.544441223144531, -4.082496166229191 ], [ -77.545730590820256, -4.086668968200627 ], [ -77.547653198242131, -4.097987174987793 ], [ -77.548606872558537, -4.10224723815918 ], [ -77.551940917968693, -4.115162849426156 ], [ -77.552635192871094, -4.117348194122314 ], [ -77.554039001464787, -4.120235919952393 ], [ -77.555992126464844, -4.125632762908936 ], [ -77.558830261230469, -4.134374141693115 ], [ -77.561393737792912, -4.145805835723877 ], [ -77.561965942382756, -4.149203777313232 ], [ -77.562438964843693, -4.153992176055908 ], [ -77.563339233398438, -4.167056083679142 ], [ -77.563728332519531, -4.170708179473877 ], [ -77.564285278320312, -4.173641204833984 ], [ -77.566001892089844, -4.179846763610783 ], [ -77.5677490234375, -4.185063838958683 ], [ -77.572448730468693, -4.197266101837158 ], [ -77.5736083984375, -4.20265007019043 ], [ -77.576904296875, -4.212317943572998 ], [ -77.579177856445312, -4.222866058349553 ], [ -77.579353332519531, -4.225612163543701 ], [ -77.579055786132812, -4.227260112762394 ], [ -77.58148193359375, -4.250793933868408 ], [ -77.582229614257812, -4.255083084106388 ], [ -77.582809448242188, -4.255760192871094 ], [ -77.582794189453125, -4.258055210113412 ], [ -77.583610534667912, -4.260213851928654 ], [ -77.583259582519531, -4.269153118133545 ], [ -77.583496093749943, -4.275124073028564 ], [ -77.582923889160099, -4.276609897613525 ], [ -77.581649780273438, -4.290557861328125 ], [ -77.578338623046818, -4.31258583068842 ], [ -77.57745361328125, -4.31519079208374 ], [ -77.576210021972656, -4.321965217590332 ], [ -77.573005676269474, -4.332260131835881 ], [ -77.571594238281193, -4.339431762695256 ], [ -77.569366455078125, -4.345467090606689 ], [ -77.56878662109375, -4.347900867462158 ], [ -77.568672180175781, -4.387677192687988 ], [ -77.568084716796875, -4.388906955718994 ], [ -77.567695617675781, -4.393725872039795 ], [ -77.567680358886662, -4.397178173065186 ], [ -77.568695068359375, -4.406085014343262 ], [ -77.570320129394531, -4.414909839630127 ], [ -77.571640014648438, -4.42002010345459 ], [ -77.575416564941293, -4.432089805602971 ], [ -77.575454711914062, -4.433690071105957 ], [ -77.57656097412098, -4.437716960906926 ], [ -77.582946777343693, -4.453219890594482 ], [ -77.584678649902344, -4.456459045410156 ], [ -77.585670471191406, -4.457487106323242 ], [ -77.585578918457031, -4.458608150482178 ], [ -77.592498779296875, -4.473114967346191 ], [ -77.593490600585938, -4.476880073547306 ], [ -77.595634460449105, -4.479275226593018 ], [ -77.596076965331974, -4.480838775634709 ], [ -77.596931457519531, -4.481892108917236 ], [ -77.600173950195312, -4.485452175140324 ], [ -77.603782653808594, -4.488988876342717 ], [ -77.606903076171875, -4.491309165954533 ], [ -77.612892150878849, -4.49465894699091 ], [ -77.614799499511662, -4.496640205383301 ], [ -77.617668151855469, -4.498021125793457 ], [ -77.620704650878849, -4.499087810516357 ], [ -77.623809814453125, -4.499825954437256 ], [ -77.62628173828125, -4.500249862670842 ], [ -77.628334045410099, -4.500279903411865 ], [ -77.631912231445312, -4.501060962677002 ], [ -77.634315490722656, -4.501766204833984 ], [ -77.636627197265568, -4.502742767333984 ], [ -77.63885498046875, -4.503964900970402 ], [ -77.640907287597599, -4.505403041839543 ], [ -77.64202880859375, -4.506556034088078 ], [ -77.643188476562443, -4.508295059204102 ], [ -77.6456298828125, -4.513735771179142 ], [ -77.646987915039062, -4.517643928527832 ], [ -77.647804260253906, -4.520767211914062 ], [ -77.64837646484375, -4.52416276931757 ], [ -77.648841857910099, -4.532429218292236 ], [ -77.650169372558537, -4.538382053375244 ], [ -77.650688171386719, -4.544101238250732 ], [ -77.652076721191349, -4.54896688461298 ], [ -77.652313232421875, -4.555850028991699 ], [ -77.652885437011719, -4.557105064392033 ], [ -77.652870178222656, -4.559400081634521 ], [ -77.653396606445256, -4.560680866241398 ], [ -77.653411865234318, -4.563429832458439 ], [ -77.653961181640625, -4.565423965454102 ], [ -77.653594970703068, -4.577364921569824 ], [ -77.653854370117188, -4.58519792556757 ], [ -77.654357910156193, -4.592506885528564 ], [ -77.654891967773438, -4.592974185943547 ], [ -77.655746459960938, -4.596785068511906 ], [ -77.657173156738281, -4.599139213562012 ], [ -77.661933898925781, -4.611836910247746 ], [ -77.66357421875, -4.614323139190674 ], [ -77.665756225585938, -4.619384765625 ], [ -77.670379638671818, -4.628368854522705 ], [ -77.672187805175724, -4.631568908691406 ], [ -77.675712585449162, -4.636931896209717 ], [ -77.679328918457031, -4.643787860870361 ], [ -77.684204101562443, -4.65021276473999 ], [ -77.686904907226562, -4.653292179107666 ], [ -77.689064025878849, -4.654983043670597 ], [ -77.692123413085881, -4.656580924987736 ], [ -77.693862915038949, -4.65715312957758 ], [ -77.695907592773438, -4.657442092895394 ], [ -77.70684814453125, -4.657255172729492 ], [ -77.711380004882756, -4.657733917236328 ], [ -77.715080261230469, -4.658903121948242 ], [ -77.718009948730469, -4.660220146179142 ], [ -77.719764709472656, -4.661297798156681 ], [ -77.721595764160099, -4.663016796112061 ], [ -77.723823547363281, -4.665341854095402 ], [ -77.727340698242188, -4.669582843780461 ], [ -77.731063842773438, -4.676183223724308 ], [ -77.733802795410099, -4.680428981781006 ], [ -77.738212585449219, -4.686285018920898 ], [ -77.743362426757812, -4.691180229187012 ], [ -77.749053955078068, -4.697790145874023 ], [ -77.7520751953125, -4.700904846191406 ], [ -77.757247924804631, -4.705121994018498 ], [ -77.764678955078125, -4.710471153259221 ], [ -77.767608642578125, -4.713386058807373 ], [ -77.769859313964787, -4.716828823089543 ], [ -77.775070190429688, -4.726287841796875 ], [ -77.780769348144531, -4.73317813873291 ], [ -77.78560638427723, -4.740429878234863 ], [ -77.787635803222656, -4.744029045104924 ], [ -77.791648864746094, -4.75206279754633 ], [ -77.793724060058594, -4.756906032562256 ], [ -77.794326782226562, -4.758872985839844 ], [ -77.794822692871037, -4.764383792877197 ], [ -77.794692993164062, -4.770366191863957 ], [ -77.794197082519531, -4.773068904876709 ], [ -77.793228149414006, -4.776381015777588 ], [ -77.791252136230469, -4.781068801879883 ], [ -77.790580749511719, -4.783466815948429 ], [ -77.790245056152287, -4.787362098693848 ], [ -77.790458679199162, -4.791988849639893 ], [ -77.790878295898438, -4.794218063354492 ], [ -77.79278564453125, -4.799089908599854 ], [ -77.799201965332031, -4.807475090026799 ], [ -77.801277160644531, -4.81102800369257 ], [ -77.802947998046818, -4.815087795257568 ], [ -77.80511474609375, -4.821881771087646 ], [ -77.806404113769531, -4.826793193817139 ], [ -77.807304382324219, -4.832201957702637 ], [ -77.807441711425724, -4.839111804962158 ], [ -77.807258605957031, -4.84325122833252 ], [ -77.806907653808594, -4.845294952392578 ], [ -77.806381225585881, -4.84728479385376 ], [ -77.80584716796875, -4.848036766052246 ], [ -77.805534362792912, -4.850080966949406 ], [ -77.8046875, -4.851169109344369 ], [ -77.804397583007812, -4.853445053100586 ], [ -77.801895141601506, -4.857820987701302 ], [ -77.801010131835938, -4.860428810119572 ], [ -77.796852111816349, -4.868089199066105 ], [ -77.793243408203125, -4.873651981353646 ], [ -77.783248901367188, -4.885875225067082 ], [ -77.781646728515625, -4.889684200286865 ], [ -77.779090881347599, -4.892921924591064 ], [ -77.778282165527344, -4.894299030303841 ], [ -77.777549743652344, -4.896469116210881 ], [ -77.777572631835881, -4.898015975952148 ], [ -77.776405334472656, -4.901996135711613 ], [ -77.774765014648438, -4.90472412109375 ], [ -77.771232604980469, -4.909553050994873 ], [ -77.769729614257812, -4.912107944488525 ], [ -77.768402099609375, -4.915266990661621 ], [ -77.765602111816406, -4.923564910888558 ], [ -77.763740539550724, -4.927457809448242 ], [ -77.759765625, -4.932515144348145 ], [ -77.757270812988224, -4.934867858886719 ], [ -77.754547119140625, -4.93654012680048 ], [ -77.75274658203125, -4.936848163604736 ], [ -77.749176025390511, -4.938388824462891 ], [ -77.746788024902287, -4.939726829528752 ], [ -77.7412109375, -4.943833827972412 ], [ -77.738609313964844, -4.94610404968256 ], [ -77.736480712890568, -4.948417186737004 ], [ -77.735404968261719, -4.950366020202637 ], [ -77.733886718749943, -4.956715106964111 ], [ -77.734024047851562, -4.966066837310791 ], [ -77.735145568847599, -4.969314098358097 ], [ -77.735137939453068, -4.970471858978271 ], [ -77.735481262207031, -4.970866203308105 ], [ -77.736602783203125, -4.977090835571232 ], [ -77.737388610839844, -4.979689121246281 ], [ -77.740425109863281, -4.983940124511719 ], [ -77.740707397460938, -4.985167980194092 ], [ -77.740097045898381, -4.98593807220459 ], [ -77.739654541015625, -4.987007141113281 ], [ -77.737174987792969, -4.987306118011361 ], [ -77.735847473144531, -4.988650798797607 ], [ -77.733512878417912, -4.989797115325928 ], [ -77.732612609863281, -4.990561008453312 ], [ -77.731529235839787, -4.992101192474365 ], [ -77.730308532714844, -4.997104167938232 ], [ -77.729995727539006, -4.999888896942139 ], [ -77.728935241699162, -5.002622127532959 ], [ -77.728302001953125, -5.005218029022217 ], [ -77.727851867675781, -5.008128166198674 ], [ -77.727600097656193, -5.011890888214111 ], [ -77.726676940917969, -5.016492843627873 ], [ -77.725364685058594, -5.020221233367863 ], [ -77.72357177734375, -5.023942947387695 ], [ -77.722175598144474, -5.029081821441594 ], [ -77.720993041992188, -5.037398815154972 ], [ -77.720558166503849, -5.045949935913029 ], [ -77.720115661621094, -5.048211097717228 ], [ -77.71990966796875, -5.052070140838623 ], [ -77.719230651855355, -5.056807994842529 ], [ -77.71923828125, -5.058191776275635 ], [ -77.717979431152287, -5.066256999969482 ], [ -77.71734619140625, -5.074419021606445 ], [ -77.717102050781193, -5.075305938720703 ], [ -77.717010498046818, -5.078152179717961 ], [ -77.715248107910156, -5.088398933410645 ], [ -77.715003967285099, -5.094470977783203 ], [ -77.715087890625, -5.103860855102539 ], [ -77.715309143066349, -5.106986045837402 ], [ -77.715736389160156, -5.108538150787297 ], [ -77.715507507324162, -5.108810901641846 ], [ -77.715789794921818, -5.123167037963867 ], [ -77.714790344238281, -5.135832786560059 ], [ -77.714698791503906, -5.14356803894043 ], [ -77.712570190429688, -5.158606052398625 ], [ -77.710990905761719, -5.167295932769775 ], [ -77.710189819335938, -5.17022705078125 ], [ -77.708518981933537, -5.17487001419056 ], [ -77.707229614257812, -5.180713176727295 ], [ -77.706291198730469, -5.183887958526611 ], [ -77.706047058105412, -5.184162139892578 ], [ -77.705146789550781, -5.18771505355835 ], [ -77.70458984375, -5.191170215606633 ], [ -77.704132080078068, -5.192689895629883 ], [ -77.703689575195312, -5.19625282287592 ], [ -77.702651977539062, -5.20035982131958 ], [ -77.701766967773381, -5.203064918518066 ], [ -77.698974609375, -5.209854125976506 ], [ -77.698150634765568, -5.213066101074162 ], [ -77.696197509765625, -5.218423843383789 ], [ -77.693855285644474, -5.228628158569336 ], [ -77.692550659179688, -5.232554912567139 ], [ -77.692054748535156, -5.235304832458496 ], [ -77.68947601318348, -5.245164871215763 ], [ -77.68719482421875, -5.251492023468018 ], [ -77.685058593749943, -5.256470203399601 ], [ -77.684600830078068, -5.25705099105835 ], [ -77.684600830078068, -5.257511138915959 ], [ -77.683219909667969, -5.260708808898869 ], [ -77.681663513183594, -5.2670578956604 ], [ -77.681488037109375, -5.268603801727295 ], [ -77.678901672363281, -5.277904987335205 ], [ -77.677986145019531, -5.28242015838623 ], [ -77.677604675292969, -5.285510063171387 ], [ -77.677528381347599, -5.295062065124455 ], [ -77.678237915039062, -5.303227901458683 ], [ -77.677719116210881, -5.318593978881779 ], [ -77.677940368652344, -5.319207191467285 ], [ -77.67852783203125, -5.325068950653076 ], [ -77.679000854492188, -5.327752113342228 ], [ -77.681274414062386, -5.334464073181096 ], [ -77.683502197265625, -5.339517116546631 ], [ -77.684906005859375, -5.343700885772705 ], [ -77.687713623046875, -5.35008716583252 ], [ -77.690185546875, -5.357116222381592 ], [ -77.691490173339844, -5.36171817779541 ], [ -77.693061828613281, -5.370079994201603 ], [ -77.695365905761662, -5.376132965087891 ], [ -77.696144104003849, -5.379445075988656 ], [ -77.696388244628906, -5.385354995727482 ], [ -77.696296691894531, -5.387642860412541 ], [ -77.695144653320312, -5.391424179077148 ], [ -77.694648742675781, -5.395349025726262 ], [ -77.694541931152344, -5.403456211090088 ], [ -77.694801330566349, -5.410935878753662 ], [ -77.69610595703125, -5.411599159240723 ], [ -77.698776245117188, -5.412228107452336 ], [ -77.703880310058594, -5.412565231323242 ], [ -77.706245422363224, -5.41246509552002 ], [ -77.711662292480412, -5.411592006683293 ], [ -77.717277526855469, -5.410996913909855 ], [ -77.7198486328125, -5.410407066345215 ], [ -77.721847534179688, -5.40961217880249 ], [ -77.723518371581974, -5.408483028411865 ], [ -77.724876403808594, -5.407249927520695 ], [ -77.7261962890625, -5.405725955963135 ], [ -77.729560852050781, -5.400360107421875 ], [ -77.730369567871037, -5.399750232696533 ], [ -77.731399536132812, -5.399366855621338 ], [ -77.734764099121037, -5.399433135986271 ], [ -77.739280700683594, -5.400914192199707 ], [ -77.74139404296875, -5.402368068695068 ], [ -77.743812561035099, -5.405014038085938 ], [ -77.743980407714844, -5.405536174774113 ], [ -77.744430541992188, -5.405633926391602 ], [ -77.745162963867131, -5.407229900360051 ], [ -77.745506286621094, -5.410056114196777 ], [ -77.745140075683537, -5.412228107452336 ], [ -77.744880676269474, -5.416546821594238 ], [ -77.744033813476562, -5.418865203857422 ], [ -77.743499755859375, -5.421110153198185 ], [ -77.743583679199219, -5.424045085906982 ], [ -77.744163513183594, -5.425796031951904 ], [ -77.744766235351506, -5.429137229919434 ], [ -77.748161315917969, -5.43534517288208 ], [ -77.74969482421875, -5.439286231994629 ], [ -77.750541687011719, -5.44277286529541 ], [ -77.750282287597656, -5.445339202880859 ], [ -77.747314453125, -5.454615116119328 ], [ -77.747245788574162, -5.457651138305607 ], [ -77.747657775878906, -5.459284782409611 ], [ -77.747993469238281, -5.459917068481445 ], [ -77.750640869140625, -5.462326049804688 ], [ -77.753051757812443, -5.465096950530892 ], [ -77.755386352539062, -5.467300891876221 ], [ -77.757652282714787, -5.468862056732178 ], [ -77.762435913085938, -5.4715700149535 ], [ -77.764961242675781, -5.473689079284611 ], [ -77.765556335449162, -5.474925041198674 ], [ -77.765968322753906, -5.476541042327767 ], [ -77.766380310058594, -5.479032039642334 ], [ -77.766403198242131, -5.481354236602726 ], [ -77.766143798828068, -5.482765197753849 ], [ -77.764533996582031, -5.485139846801758 ], [ -77.761032104492188, -5.488636016845703 ], [ -77.759788513183594, -5.490447998046875 ], [ -77.751205444335938, -5.499839782714787 ], [ -77.748420715332031, -5.504940986633244 ], [ -77.748344421386719, -5.506784915924015 ], [ -77.748695373535099, -5.508312225341797 ], [ -77.751182556152344, -5.515545845031738 ], [ -77.752105712890568, -5.519391059875488 ], [ -77.753852844238281, -5.523746013641357 ], [ -77.754165649414062, -5.52612113952631 ], [ -77.754013061523381, -5.529988765716553 ], [ -77.753425598144531, -5.532693862914982 ], [ -77.752708435058594, -5.537892818450928 ], [ -77.751274108886605, -5.543169021606445 ], [ -77.750839233398438, -5.54571008682251 ], [ -77.750213623046818, -5.547628879547119 ], [ -77.748863220214787, -5.550552845001221 ], [ -77.747917175292912, -5.553629875183049 ], [ -77.74749755859375, -5.555519104003906 ], [ -77.747337341308537, -5.557805061340332 ], [ -77.746391296386662, -5.561951160430851 ], [ -77.744087219238224, -5.567454814910832 ], [ -77.743713378906193, -5.572697162628174 ], [ -77.742805480957031, -5.576170921325684 ], [ -77.741661071777344, -5.578886985778752 ], [ -77.740364074707031, -5.581107139587402 ], [ -77.737014770507812, -5.585252761840763 ], [ -77.736282348632756, -5.58562707901001 ], [ -77.735610961914006, -5.586369991302433 ], [ -77.734939575195256, -5.587478160858097 ], [ -77.734390258789006, -5.589041233062744 ], [ -77.734016418457031, -5.591301918029785 ], [ -77.734619140625, -5.596432209014893 ], [ -77.73443603515625, -5.599297046661377 ], [ -77.733551025390625, -5.601768016815186 ], [ -77.732261657714787, -5.607703208923283 ], [ -77.731956481933594, -5.612773895263615 ], [ -77.732421875, -5.615012168884277 ], [ -77.733520507812443, -5.617960929870605 ], [ -77.73583984375, -5.621709823608398 ], [ -77.738410949707031, -5.624590873718262 ], [ -77.749366760253793, -5.635190963745117 ], [ -77.750373840332031, -5.63648796081543 ], [ -77.751838684081974, -5.639572143554631 ], [ -77.752044677734375, -5.641205787658635 ], [ -77.751968383789062, -5.643330097198486 ], [ -77.75140380859375, -5.645754814147892 ], [ -77.749664306640625, -5.656832218170166 ], [ -77.749710083007812, -5.658394813537484 ], [ -77.750480651855412, -5.660072803497258 ], [ -77.755790710449219, -5.667554855346623 ], [ -77.764106750488281, -5.675955772399846 ], [ -77.767944335937443, -5.680263042449894 ], [ -77.771713256835938, -5.686057090759277 ], [ -77.772727966308537, -5.688917160034123 ], [ -77.772689819335938, -5.691961765289307 ], [ -77.773139953613281, -5.693362236022949 ], [ -77.773330688476562, -5.696947097778207 ], [ -77.772628784179631, -5.700193881988469 ], [ -77.772018432617188, -5.704668045043888 ], [ -77.771682739257699, -5.712224006652832 ], [ -77.771080017089787, -5.716601848602238 ], [ -77.770355224609375, -5.719648838043156 ], [ -77.7686767578125, -5.724520206451302 ], [ -77.763641357421818, -5.733479022979736 ], [ -77.762588500976506, -5.736908912658691 ], [ -77.762184143066406, -5.739551067352295 ], [ -77.762413024902287, -5.741556167602482 ], [ -77.763458251953068, -5.744115829467773 ], [ -77.767898559570312, -5.749460220336857 ], [ -77.770492553710938, -5.753245830535832 ], [ -77.771278381347599, -5.757024765014592 ], [ -77.771667480468693, -5.761804103851318 ], [ -77.771324157714844, -5.765745162963867 ], [ -77.769386291503849, -5.772270202636719 ], [ -77.768745422363281, -5.778480052947998 ], [ -77.768829345703125, -5.783830165863037 ], [ -77.768135070800724, -5.788288116455078 ], [ -77.766891479492131, -5.792811870574894 ], [ -77.764854431152344, -5.797231197357121 ], [ -77.764396667480469, -5.799013137817383 ], [ -77.764190673828125, -5.80177116394043 ], [ -77.764640808105469, -5.80440616607666 ], [ -77.764610290527287, -5.806800842285156 ], [ -77.764366149902344, -5.808067798614502 ], [ -77.762901306152287, -5.81213188171381 ], [ -77.762786865234318, -5.813975811004582 ], [ -77.762992858886662, -5.815113067626953 ], [ -77.762596130371037, -5.815740108489933 ], [ -77.762153625488281, -5.815839767455998 ], [ -77.76092529296875, -5.816949844360352 ], [ -77.759628295898438, -5.817625045776367 ], [ -77.756324768066349, -5.818317890167236 ], [ -77.75341796875, -5.818656921386662 ], [ -77.75128173828125, -5.819443225860539 ], [ -77.7459716796875, -5.822515964508057 ], [ -77.744110107421818, -5.823853969573918 ], [ -77.743003845214844, -5.824950218200627 ], [ -77.740699768066406, -5.826445102691594 ], [ -77.737892150878849, -5.827994823455754 ], [ -77.734733581542969, -5.82920312881464 ], [ -77.731811523437443, -5.829343795776367 ], [ -77.728340148925781, -5.828529834747314 ], [ -77.726142883300781, -5.828322887420654 ], [ -77.720535278320256, -5.829253196716309 ], [ -77.711044311523438, -5.827971935272217 ], [ -77.706954956054688, -5.828389167785645 ], [ -77.703216552734375, -5.829285144805908 ], [ -77.696006774902344, -5.829695224761906 ], [ -77.693084716796818, -5.830436229705811 ], [ -77.689979553222656, -5.831995010375977 ], [ -77.689048767089844, -5.832877159118652 ], [ -77.686294555664006, -5.836331844329777 ], [ -77.6815185546875, -5.845444202423096 ], [ -77.679977416992188, -5.848976135253849 ], [ -77.679283142089844, -5.852505207061768 ], [ -77.679077148437443, -5.856643199920654 ], [ -77.678596496581974, -5.859928131103516 ], [ -77.677803039550781, -5.863048076629639 ], [ -77.676803588867188, -5.865718841552734 ], [ -77.674613952636719, -5.869649887084904 ], [ -77.669227600097599, -5.875658035278263 ], [ -77.668045043945312, -5.877298831939584 ], [ -77.667510986328068, -5.878468036651554 ], [ -77.66748046875, -5.88464879989624 ], [ -77.667236328124943, -5.886141777038574 ], [ -77.666130065917969, -5.890130996704045 ], [ -77.665336608886662, -5.894301891326904 ], [ -77.663955688476562, -5.898978233337402 ], [ -77.663246154785099, -5.905111789703312 ], [ -77.662826538085938, -5.906803131103402 ], [ -77.660644531249943, -5.912162780761719 ], [ -77.660247802734375, -5.913963794708195 ], [ -77.660079956054631, -5.916258811950684 ], [ -77.659561157226562, -5.917733192443848 ], [ -77.658164978027287, -5.92074012756342 ], [ -77.656417846679688, -5.923442840576172 ], [ -77.65582275390625, -5.924042224883976 ], [ -77.65545654296875, -5.924983024597111 ], [ -77.653350830078125, -5.928327083587646 ], [ -77.652458190917912, -5.93054723739624 ], [ -77.652313232421875, -5.931637763977051 ], [ -77.65167236328125, -5.933477878570557 ], [ -77.651603698730412, -5.936867237091064 ], [ -77.651947021484375, -5.942855834960938 ], [ -77.655593872070256, -5.951622009277287 ], [ -77.656280517578068, -5.954103946685791 ], [ -77.657691955566349, -5.957820892333928 ], [ -77.658065795898381, -5.959509849548283 ], [ -77.658226013183594, -5.962425231933594 ], [ -77.657768249511719, -5.96311616897583 ], [ -77.656494140625, -5.967533111572209 ], [ -77.652557373046818, -5.974724769592228 ], [ -77.650131225585938, -5.976634979248047 ], [ -77.648567199707031, -5.978891849517822 ], [ -77.645156860351562, -5.982126235961914 ], [ -77.643814086914062, -5.982901096343994 ], [ -77.641761779785099, -5.983373165130615 ], [ -77.640106201171875, -5.984138011932373 ], [ -77.638458251953125, -5.985836029052678 ], [ -77.637413024902344, -5.987775802612305 ], [ -77.636993408203068, -5.989359855651799 ], [ -77.635017395019474, -5.993697166442871 ], [ -77.634681701660156, -5.995125770568791 ], [ -77.633377075195256, -5.998062133789006 ], [ -77.632972717285156, -5.999941825866642 ], [ -77.631698608398438, -6.001855850219727 ], [ -77.62996673583973, -6.006011009216309 ], [ -77.629226684570312, -6.007046222686654 ], [ -77.626792907714787, -6.00887393951416 ], [ -77.625228881835938, -6.009803771972656 ], [ -77.623908996582031, -6.010198116302433 ], [ -77.621810913085938, -6.010388851165715 ], [ -77.619255065917912, -6.010148048400879 ], [ -77.614990234374943, -6.008017063140812 ], [ -77.613052368164006, -6.007446765899658 ], [ -77.611785888671875, -6.007309913635197 ], [ -77.605636596679631, -6.004419803619328 ], [ -77.59944915771473, -6.004068851470947 ], [ -77.595878601074219, -6.00198221206665 ], [ -77.593116760253906, -5.999959945678711 ], [ -77.591590881347656, -5.998386859893799 ], [ -77.590599060058594, -5.997722148895264 ], [ -77.587295532226562, -5.996364116668701 ], [ -77.585922241210938, -5.99637317657465 ], [ -77.584465026855412, -5.997297763824463 ], [ -77.583877563476506, -5.999028205871525 ], [ -77.582832336425724, -6.000860214233342 ], [ -77.578125, -6.00560808181757 ], [ -77.576988220214844, -6.007809162139779 ], [ -77.576492309570312, -6.009484767913818 ], [ -77.576271057128849, -6.011606216430664 ], [ -77.578048706054688, -6.015223026275635 ], [ -77.578102111816406, -6.017673969268799 ], [ -77.577613830566406, -6.018505096435547 ], [ -77.576011657714844, -6.020276069641113 ], [ -77.572891235351562, -6.023365020751953 ], [ -77.569953918456974, -6.025057792663574 ], [ -77.56695556640625, -6.027613162994385 ], [ -77.566207885742188, -6.027958869934082 ], [ -77.565750122070256, -6.027888774871769 ], [ -77.565032958984375, -6.028398990631104 ], [ -77.563697814941406, -6.028729915618896 ], [ -77.561225891113281, -6.028669834136963 ], [ -77.558334350585881, -6.028221130371094 ], [ -77.555618286132812, -6.028985023498478 ], [ -77.554878234863224, -6.028998851776123 ], [ -77.551765441894418, -6.027692794799805 ], [ -77.550117492675724, -6.027674198150578 ], [ -77.548713684081918, -6.028104782104492 ], [ -77.547996520996094, -6.028044223785344 ], [ -77.545852661132699, -6.026799201965218 ], [ -77.542343139648438, -6.023696899414006 ], [ -77.540214538574162, -6.022648811340332 ], [ -77.538299560546818, -6.022704124450684 ], [ -77.536384582519474, -6.023392200469971 ], [ -77.534957885742131, -6.024200916290226 ], [ -77.531578063964844, -6.027542114257812 ], [ -77.528587341308537, -6.03103590011591 ], [ -77.527160644531136, -6.033500194549504 ], [ -77.526931762695312, -6.034440994262638 ], [ -77.527206420898438, -6.036157131194955 ], [ -77.528236389160156, -6.038113117217961 ], [ -77.531814575195256, -6.040718078613281 ], [ -77.532768249511662, -6.041862010955811 ], [ -77.53338623046875, -6.043087959289494 ], [ -77.533370971679688, -6.044579029083252 ], [ -77.531684875488281, -6.047840118408146 ], [ -77.531448364257756, -6.049385070800781 ], [ -77.531616210937443, -6.050281047821045 ], [ -77.532325744628906, -6.051587104797306 ], [ -77.533943176269531, -6.055791854858342 ], [ -77.533927917480412, -6.057526111602783 ], [ -77.532768249511662, -6.060018062591553 ], [ -77.529953002929688, -6.062633991241398 ], [ -77.526092529296818, -6.064722061157227 ], [ -77.524238586425781, -6.065218925476074 ], [ -77.523239135742131, -6.065158843994141 ], [ -77.522476196289006, -6.063229084014893 ], [ -77.522018432617188, -6.062652111053467 ], [ -77.521217346191349, -6.060407161712646 ], [ -77.520195007324162, -6.059226989746094 ], [ -77.518318176269531, -6.058042049407959 ], [ -77.517700195312443, -6.057168960571289 ], [ -77.516975402832031, -6.055246829986515 ], [ -77.516197204589844, -6.051652908325195 ], [ -77.515296936035156, -6.050057888030949 ], [ -77.514381408691293, -6.049023151397705 ], [ -77.513465881347656, -6.046523094177246 ], [ -77.509918212890625, -6.044073104858342 ], [ -77.508674621582031, -6.042714118957463 ], [ -77.507705688476449, -6.041380882263184 ], [ -77.505813598632812, -6.037693023681641 ], [ -77.504661560058594, -6.036271095275879 ], [ -77.50189208984375, -6.033898830413818 ], [ -77.500190734863281, -6.033209800720158 ], [ -77.499893188476562, -6.032188892364445 ], [ -77.499671936035099, -6.032018184661865 ], [ -77.496566772460938, -6.030776023864746 ], [ -77.492599487304688, -6.027966022491455 ], [ -77.491195678710881, -6.027656078338623 ], [ -77.488937377929688, -6.027945995330811 ], [ -77.487602233886719, -6.027636051177979 ], [ -77.482170104980469, -6.02459812164301 ], [ -77.481071472167912, -6.023489952087346 ], [ -77.480232238769474, -6.022174835205021 ], [ -77.479804992675781, -6.020677089691105 ], [ -77.479789733886719, -6.018925189971924 ], [ -77.480247497558594, -6.016852855682373 ], [ -77.480018615722599, -6.013184070587158 ], [ -77.480133056640568, -6.009045124053898 ], [ -77.479713439941406, -6.006487846374512 ], [ -77.479293823242188, -6.005280017852783 ], [ -77.478157043457031, -6.004352092742806 ], [ -77.475685119628906, -6.004165172576904 ], [ -77.474739074707031, -6.003898143768311 ], [ -77.471603393554688, -6.00150823593134 ], [ -77.469406127929688, -6.001419067382812 ], [ -77.467582702636719, -6.003488063812256 ], [ -77.466125488281136, -6.006665229797306 ], [ -77.465019226074219, -6.008354187011662 ], [ -77.460838317871094, -6.012331008911133 ], [ -77.458572387695256, -6.014004230499211 ], [ -77.457145690917912, -6.015555858612061 ], [ -77.456916809082031, -6.016442775726318 ], [ -77.457099914550781, -6.017537117004338 ], [ -77.458602905273438, -6.019705772399902 ], [ -77.458587646484318, -6.020556926727238 ], [ -77.45831298828125, -6.021334171295166 ], [ -77.452934265136662, -6.025751113891545 ], [ -77.449996948242131, -6.02891016006464 ], [ -77.448738098144474, -6.030821800231877 ], [ -77.448448181152287, -6.032071113586426 ], [ -77.4486083984375, -6.033345222473088 ], [ -77.449302673339844, -6.03454399108881 ], [ -77.45068359375, -6.03602123260498 ], [ -77.45111083984375, -6.037581920623779 ], [ -77.450843811035099, -6.038124084472543 ], [ -77.450080871581974, -6.038824081420842 ], [ -77.448165893554631, -6.039412021636906 ], [ -77.447105407714844, -6.040419101715088 ], [ -77.446464538574162, -6.042428970336857 ], [ -77.446296691894531, -6.044995784759465 ], [ -77.445716857910043, -6.046345233917236 ], [ -77.444908142089844, -6.047080993652287 ], [ -77.443183898925781, -6.047404766082764 ], [ -77.442581176757812, -6.047760009765625 ], [ -77.440887451171875, -6.050615787506104 ], [ -77.439384460449219, -6.052220821380615 ], [ -77.437347412109375, -6.053253173828068 ], [ -77.434722900390568, -6.054032802581787 ], [ -77.432861328125, -6.055196762084961 ], [ -77.431175231933594, -6.056886196136475 ], [ -77.429672241210881, -6.059187889099121 ], [ -77.427726745605469, -6.061620235443002 ], [ -77.424362182617188, -6.064986228942814 ], [ -77.422943115234375, -6.065310001373291 ], [ -77.421676635742131, -6.064538955688477 ], [ -77.421134948730469, -6.06357479095459 ], [ -77.421234130859375, -6.06220817565918 ], [ -77.422134399414006, -6.060200214385986 ], [ -77.422683715820312, -6.057222843170109 ], [ -77.422348022460881, -6.053156852722111 ], [ -77.421798706054688, -6.051623821258488 ], [ -77.420768737792969, -6.050533771514779 ], [ -77.419975280761719, -6.050364971160889 ], [ -77.417808532714844, -6.051731109619084 ], [ -77.416885375976506, -6.051871776580811 ], [ -77.416114807128906, -6.05125904083252 ], [ -77.415428161621094, -6.049843788146916 ], [ -77.415435791015625, -6.048377990722656 ], [ -77.415885925292969, -6.046407222747803 ], [ -77.415847778320256, -6.045205116271859 ], [ -77.414619445800724, -6.042741775512638 ], [ -77.41455078125, -6.041930198669434 ], [ -77.414863586425781, -6.041007041931152 ], [ -77.415748596191349, -6.039700984954834 ], [ -77.415992736816406, -6.038723945617676 ], [ -77.415809631347656, -6.037639141082764 ], [ -77.41485595703125, -6.036152839660645 ], [ -77.41522216796875, -6.034750938415471 ], [ -77.415016174316406, -6.033394813537598 ], [ -77.4140625, -6.032405853271484 ], [ -77.413253784179688, -6.032282829284554 ], [ -77.410743713378906, -6.034064769744873 ], [ -77.409751892089787, -6.034241199493408 ], [ -77.408782958984318, -6.033956050872746 ], [ -77.407585144042969, -6.032451152801457 ], [ -77.405502319335938, -6.02795219421381 ], [ -77.404327392578011, -6.026140213012638 ], [ -77.403358459472599, -6.025898933410645 ], [ -77.401657104492074, -6.026766777038574 ], [ -77.396263122558594, -6.031986236572209 ], [ -77.394104003906193, -6.035295963287297 ], [ -77.392364501953125, -6.039144992828369 ], [ -77.391632080078068, -6.03988790512085 ], [ -77.391151428222599, -6.040171146392765 ], [ -77.390800476074219, -6.040118217468262 ], [ -77.389419555664006, -6.039219856262207 ], [ -77.388366699218693, -6.03937816619873 ], [ -77.387565612792969, -6.040168762207031 ], [ -77.386993408203125, -6.041319847106877 ], [ -77.385437011718693, -6.042998790740967 ], [ -77.384513854980469, -6.044366836547795 ], [ -77.384506225585938, -6.044899940490666 ], [ -77.385856628417969, -6.04597806930542 ], [ -77.386009216308537, -6.04698991775507 ], [ -77.384086608886662, -6.051960945129338 ], [ -77.3826904296875, -6.054743766784668 ], [ -77.381202697753906, -6.059667110443115 ], [ -77.3804931640625, -6.060626029968262 ], [ -77.379417419433537, -6.061075210571289 ], [ -77.378913879394531, -6.061971187591496 ], [ -77.37972259521473, -6.066207885742188 ], [ -77.379638671875, -6.068123817443848 ], [ -77.378997802734375, -6.068803787231445 ], [ -77.377639770507812, -6.06955099105835 ], [ -77.376922607421818, -6.070504188537598 ], [ -77.376358032226506, -6.071654796600285 ], [ -77.37518310546875, -6.075535774230957 ], [ -77.374336242675781, -6.076607227325439 ], [ -77.372406005859375, -6.07816219329834 ], [ -77.37164306640625, -6.078498840332031 ], [ -77.370742797851506, -6.078619956970158 ], [ -77.369209289550724, -6.078373908996525 ], [ -77.367897033691293, -6.077972888946476 ], [ -77.365371704101562, -6.076302051544189 ], [ -77.363037109375, -6.07347583770752 ], [ -77.361030578613168, -6.071900844573918 ], [ -77.357757568359318, -6.071508884429932 ], [ -77.353889465332031, -6.071743965148926 ], [ -77.353431701660156, -6.072541236877385 ], [ -77.352943420410156, -6.075986862182617 ], [ -77.352973937988281, -6.078472137451172 ], [ -77.353370666503849, -6.080647945404053 ], [ -77.353141784667969, -6.082927227020207 ], [ -77.351982116699219, -6.086710929870549 ], [ -77.350341796874943, -6.090606212615967 ], [ -77.349784851074219, -6.092631816863957 ], [ -77.348968505859375, -6.098826885223332 ], [ -77.346672058105469, -6.10443115234375 ], [ -77.345359802246037, -6.106534957885685 ], [ -77.343231201171875, -6.108813762664795 ], [ -77.338920593261719, -6.112446784973145 ], [ -77.33685302734375, -6.113629817962646 ], [ -77.333427429199219, -6.116538047790527 ], [ -77.332099914550724, -6.118161201476937 ], [ -77.329536437988224, -6.122194766998234 ], [ -77.327743530273381, -6.124300956726017 ], [ -77.326576232910099, -6.125201225280762 ], [ -77.3251953125, -6.125604152679387 ], [ -77.321708679199162, -6.125654220581055 ], [ -77.317352294921761, -6.126632213592529 ], [ -77.312690734863281, -6.126561164855957 ], [ -77.310096740722599, -6.127088069915771 ], [ -77.308418273925781, -6.12778997421259 ], [ -77.305374145507812, -6.130434036254883 ], [ -77.302719116210938, -6.132288932800236 ], [ -77.298828124999943, -6.134087085723877 ], [ -77.296119689941406, -6.13447904586792 ], [ -77.291275024414062, -6.134335994720459 ], [ -77.289474487304631, -6.134794235229492 ], [ -77.288093566894531, -6.135841846466064 ], [ -77.281906127929688, -6.141833782196045 ], [ -77.280372619628906, -6.142454147338867 ], [ -77.278297424316406, -6.14221000671381 ], [ -77.2738037109375, -6.140387058258 ], [ -77.271522521972656, -6.139735221862736 ], [ -77.264633178710938, -6.138300895690861 ], [ -77.258308410644474, -6.138092041015625 ], [ -77.254623413085938, -6.138604164123535 ], [ -77.252777099609318, -6.139588832855225 ], [ -77.249061584472599, -6.142308235168457 ], [ -77.242340087890625, -6.149313926696777 ], [ -77.240570068359318, -6.149755954742375 ], [ -77.236732482910099, -6.149808883666992 ], [ -77.233512878417912, -6.150481224060059 ], [ -77.225067138671875, -6.155001163482609 ], [ -77.222526550292912, -6.155753135681096 ], [ -77.218482971191406, -6.156429767608643 ], [ -77.214256286621037, -6.158408164978027 ], [ -77.213165283203125, -6.159406185150146 ], [ -77.212486267089844, -6.16047477722168 ], [ -77.210853576660156, -6.166141033172607 ], [ -77.204383850097656, -6.174347877502441 ], [ -77.203285217285099, -6.176777839660588 ], [ -77.202705383300724, -6.179616928100586 ], [ -77.202713012695256, -6.181227207183781 ], [ -77.203254699707031, -6.18197393417347 ], [ -77.204658508300781, -6.182863235473633 ], [ -77.204963684082031, -6.183296203613281 ], [ -77.205513000488281, -6.18339204788208 ], [ -77.207756042480412, -6.18555212020874 ], [ -77.211982727050781, -6.188562870025578 ], [ -77.215835571289062, -6.190878868102914 ], [ -77.217376708984318, -6.192182064056396 ], [ -77.218818664550724, -6.193975925445557 ], [ -77.219169616699219, -6.195005893707275 ], [ -77.219039916992188, -6.196209907531738 ], [ -77.218185424804688, -6.198146820068303 ], [ -77.216247558593693, -6.200459957122746 ], [ -77.215263366699219, -6.202128887176457 ], [ -77.21478271484375, -6.204462051391545 ], [ -77.213058471679688, -6.209784030914307 ], [ -77.212425231933537, -6.214794158935547 ], [ -77.211929321289062, -6.216090202331543 ], [ -77.209823608398438, -6.218983173370361 ], [ -77.207954406738224, -6.220996856689453 ], [ -77.206649780273438, -6.222150802612305 ], [ -77.204490661621094, -6.223523139953556 ], [ -77.202537536621094, -6.225458145141545 ], [ -77.201690673828125, -6.226663112640381 ], [ -77.200149536132812, -6.229998111724854 ], [ -77.198600769042912, -6.232153892517033 ], [ -77.197288513183594, -6.23322677612299 ], [ -77.195869445800781, -6.235021114349365 ], [ -77.193794250488281, -6.236812114715576 ], [ -77.189804077148438, -6.239576816558781 ], [ -77.1871337890625, -6.240979194641056 ], [ -77.183204650878906, -6.243824958801213 ], [ -77.181320190429688, -6.244754791259709 ], [ -77.178680419921818, -6.245498180389404 ], [ -77.176673889160099, -6.24639177322382 ], [ -77.175399780273438, -6.246506214141789 ], [ -77.174247741699219, -6.247406005859375 ], [ -77.173004150390625, -6.249120235443115 ], [ -77.170989990234375, -6.25324010848999 ], [ -77.168777465820312, -6.256847858428955 ], [ -77.168190002441349, -6.258478164672852 ], [ -77.167472839355469, -6.261697769164982 ], [ -77.164985656738281, -6.267131805419922 ], [ -77.163948059082031, -6.268013954162598 ], [ -77.161758422851562, -6.26873588562006 ], [ -77.158882141113281, -6.271262168884221 ], [ -77.153953552246037, -6.276443958282414 ], [ -77.150398254394531, -6.28220796585083 ], [ -77.14678955078125, -6.286753177642822 ], [ -77.145660400390568, -6.287787914276123 ], [ -77.143280029296818, -6.288980007171631 ], [ -77.141799926757812, -6.290614128112736 ], [ -77.139236450195312, -6.292370796203556 ], [ -77.138328552246037, -6.293284893035832 ], [ -77.135871887207031, -6.299027919769287 ], [ -77.132919311523438, -6.302267074584961 ], [ -77.133018493652344, -6.30777978897089 ], [ -77.134292602539062, -6.312774181365967 ], [ -77.134696960449162, -6.316154003143311 ], [ -77.134246826171761, -6.31885910034174 ], [ -77.132644653320312, -6.322363853454533 ], [ -77.132652282714844, -6.324281215667725 ], [ -77.134178161621094, -6.326851844787598 ], [ -77.136260986328125, -6.32953405380249 ], [ -77.139335632324219, -6.335291862487793 ], [ -77.142105102539062, -6.338478088378906 ], [ -77.144882202148438, -6.343033790588322 ], [ -77.145294189453068, -6.344549179077148 ], [ -77.145599365234375, -6.348127841949349 ], [ -77.146812438964787, -6.351892948150635 ], [ -77.147537231445312, -6.355966091156006 ], [ -77.148292541503906, -6.358720779418945 ], [ -77.148231506347599, -6.35969877243042 ], [ -77.148635864257756, -6.360509872436467 ], [ -77.149429321289062, -6.367728233337402 ], [ -77.149978637695256, -6.369779109954834 ], [ -77.150711059570256, -6.370942115783691 ], [ -77.153053283691406, -6.373011112213078 ], [ -77.154960632324219, -6.374269008636475 ], [ -77.15753173828125, -6.375243186950684 ], [ -77.162261962890568, -6.375720977783146 ], [ -77.162788391113281, -6.376568794250488 ], [ -77.162834167480412, -6.379071235656681 ], [ -77.162384033203125, -6.380936145782471 ], [ -77.161338806152344, -6.383192062377873 ], [ -77.15838623046875, -6.387616157531738 ], [ -77.157508850097599, -6.390131950378418 ], [ -77.157241821289062, -6.392600059509277 ], [ -77.156898498535156, -6.393660068511963 ], [ -77.156951904296875, -6.397256851196289 ], [ -77.157173156738281, -6.398702144622803 ], [ -77.157974243164006, -6.401058197021428 ], [ -77.159011840820256, -6.402698993682804 ], [ -77.163337707519531, -6.406524181365967 ], [ -77.165603637695256, -6.407498836517277 ], [ -77.167228698730412, -6.408541202545166 ], [ -77.171989440917912, -6.410891056060791 ], [ -77.174949645996037, -6.411456108093205 ], [ -77.181709289550724, -6.411798000335637 ], [ -77.184692382812443, -6.412661075591984 ], [ -77.18585205078125, -6.413561820983773 ], [ -77.187538146972599, -6.415740966796875 ], [ -77.18898773193348, -6.417082786560002 ], [ -77.194656372070312, -6.420636177062931 ], [ -77.197578430175781, -6.421942234039193 ], [ -77.198120117187443, -6.422502994537297 ], [ -77.199447631835881, -6.422849178314152 ], [ -77.202629089355469, -6.423088073730412 ], [ -77.211486816406193, -6.422861099243107 ], [ -77.216529846191349, -6.421545028686467 ], [ -77.220184326171875, -6.420084953308105 ], [ -77.222099304199219, -6.418520927429086 ], [ -77.223930358886719, -6.415259838104191 ], [ -77.227737426757812, -6.41129207611084 ], [ -77.230033874511719, -6.410639762878418 ], [ -77.233413696289006, -6.410435199737492 ], [ -77.235382080078125, -6.410047054290771 ], [ -77.237197875976562, -6.409117221832275 ], [ -77.238243103027344, -6.408072948455811 ], [ -77.238685607910156, -6.407501220703125 ], [ -77.239227294921818, -6.405838012695256 ], [ -77.24090576171875, -6.402357101440373 ], [ -77.243644714355469, -6.398351192474308 ], [ -77.245498657226562, -6.394961833953801 ], [ -77.248039245605469, -6.391822814941349 ], [ -77.250274658203068, -6.389390945434513 ], [ -77.251678466796875, -6.388219833374023 ], [ -77.260055541992188, -6.384847164154053 ], [ -77.261070251464787, -6.384218215942383 ], [ -77.262786865234318, -6.382701873779297 ], [ -77.263694763183594, -6.382262229919377 ], [ -77.265068054199162, -6.382257938384953 ], [ -77.266281127929688, -6.382658958435002 ], [ -77.269073486328068, -6.384897232055607 ], [ -77.271461486816349, -6.385818004608097 ], [ -77.273086547851506, -6.385638236999512 ], [ -77.275123596191406, -6.384905815124512 ], [ -77.27630615234375, -6.385397911071721 ], [ -77.276992797851506, -6.386372089385986 ], [ -77.277282714843693, -6.387247085571289 ], [ -77.277381896972599, -6.389471054077092 ], [ -77.274772644042969, -6.39827823638916 ], [ -77.274787902831974, -6.399930000305176 ], [ -77.273826599121094, -6.403488159179688 ], [ -77.273445129394531, -6.406075000762939 ], [ -77.273551940917912, -6.406897068023682 ], [ -77.280021667480469, -6.411359786987305 ], [ -77.282341003417912, -6.4137282371521 ], [ -77.285408020019531, -6.417384147644043 ], [ -77.288597106933594, -6.420018196105957 ], [ -77.291290283203068, -6.421570777893066 ], [ -77.296302795410156, -6.423309803008976 ], [ -77.297576904296818, -6.424351215362492 ], [ -77.298088073730355, -6.425624847412109 ], [ -77.298538208007756, -6.429834842681828 ], [ -77.299705505371037, -6.432530879974365 ], [ -77.301307678222599, -6.435428142547607 ], [ -77.302894592285156, -6.440237045288029 ], [ -77.303352355957031, -6.442955970764103 ], [ -77.303802490234318, -6.44920015335083 ], [ -77.30413818359375, -6.450826168060303 ], [ -77.304595947265625, -6.451826095581055 ], [ -77.306755065917912, -6.454798221588135 ], [ -77.309883117675724, -6.457622051238957 ], [ -77.3125, -6.459139823913517 ], [ -77.314964294433537, -6.459902763366642 ], [ -77.316001892089787, -6.460443019866887 ], [ -77.318984985351562, -6.462878227233887 ], [ -77.32177734375, -6.465532779693604 ], [ -77.324172973632812, -6.466423988342228 ], [ -77.325752258300781, -6.467385768890324 ], [ -77.326301574706974, -6.468413829803467 ], [ -77.326782226562443, -6.470036029815617 ], [ -77.327903747558537, -6.476559162139893 ], [ -77.329383850097656, -6.479724884033203 ], [ -77.33099365234375, -6.485139846801701 ], [ -77.332046508789062, -6.487077236175537 ], [ -77.332962036132756, -6.488031864166146 ], [ -77.3330078125, -6.491620063781625 ], [ -77.332382202148438, -6.492745876312199 ], [ -77.331649780273381, -6.495124816894418 ], [ -77.330520629882812, -6.501175880432129 ], [ -77.330528259277344, -6.502642154693604 ], [ -77.331192016601562, -6.504164218902588 ], [ -77.331352233886662, -6.505276203155518 ], [ -77.330642700195312, -6.507051944732666 ], [ -77.330574035644474, -6.508154869079533 ], [ -77.331184387207031, -6.510367870330754 ], [ -77.332832336425781, -6.51388502120966 ], [ -77.336151123046875, -6.518062114715519 ], [ -77.336555480957031, -6.519172191619873 ], [ -77.336448669433594, -6.522570133209229 ], [ -77.335868835449219, -6.524319171905404 ], [ -77.335243225097656, -6.525207042694092 ], [ -77.334732055664062, -6.52648401260376 ], [ -77.335273742675724, -6.52945613861084 ], [ -77.334999084472656, -6.536089897155705 ], [ -77.335151672363224, -6.537565231323242 ], [ -77.335678100585938, -6.538410186767521 ], [ -77.337318420410156, -6.540038108825684 ], [ -77.34149169921875, -6.542315006256104 ], [ -77.345054626464844, -6.54522705078125 ], [ -77.346488952636719, -6.546783924102783 ], [ -77.347999572753906, -6.549407005310059 ], [ -77.34906005859375, -6.551861763000431 ], [ -77.350654602050781, -6.553644180297852 ], [ -77.353073120117188, -6.555790901184025 ], [ -77.353378295898381, -6.556404113769531 ], [ -77.353302001953068, -6.55782413482666 ], [ -77.353530883789062, -6.558518886566162 ], [ -77.356880187988281, -6.562552928924561 ], [ -77.357879638671818, -6.567419052124023 ], [ -77.358428955078068, -6.56859302520752 ], [ -77.360786437988281, -6.56981897354126 ], [ -77.366020202636719, -6.570824146270695 ], [ -77.369659423828125, -6.572136878967285 ], [ -77.371627807617188, -6.573231220245304 ], [ -77.375396728515568, -6.578725814819336 ], [ -77.3787841796875, -6.580292224883976 ], [ -77.382957458496037, -6.583903789520264 ], [ -77.385887145996037, -6.587071895599308 ], [ -77.386871337890568, -6.588730812072754 ], [ -77.3887939453125, -6.590583801269474 ], [ -77.389244079589787, -6.591574192047062 ], [ -77.391242980956974, -6.593020915985051 ], [ -77.392059326171875, -6.594246864318848 ], [ -77.392898559570312, -6.596196174621582 ], [ -77.393302917480469, -6.601605892181396 ], [ -77.39385986328125, -6.60196590423584 ], [ -77.395210266113281, -6.602193832397461 ], [ -77.395896911621094, -6.602652072906437 ], [ -77.396369934082031, -6.603092193603516 ], [ -77.396858215331974, -6.604290962219238 ], [ -77.397567749023438, -6.604865074157658 ], [ -77.399543762206974, -6.60518217086792 ], [ -77.40413665771473, -6.60515022277832 ], [ -77.405570983886719, -6.603880882263127 ], [ -77.407279968261662, -6.601439952850285 ], [ -77.408058166503906, -6.601102828979435 ], [ -77.409271240234318, -6.601284980773869 ], [ -77.411048889160156, -6.602589130401554 ], [ -77.412147521972543, -6.602734088897705 ], [ -77.4129638671875, -6.602667808532658 ], [ -77.415199279785043, -6.601599216461125 ], [ -77.416366577148438, -6.601430892944336 ], [ -77.42059326171875, -6.602241992950439 ], [ -77.423347473144531, -6.601596832275391 ], [ -77.426063537597599, -6.602867126464787 ], [ -77.431961059570256, -6.602214813232365 ], [ -77.433929443359375, -6.602647781372013 ], [ -77.434623718261662, -6.604263782501221 ], [ -77.434745788574162, -6.605083942413273 ], [ -77.432876586914062, -6.608970165252629 ], [ -77.432136535644531, -6.611640930175724 ], [ -77.431991577148438, -6.613467216491699 ], [ -77.432426452636662, -6.61684513092041 ], [ -77.432327270507812, -6.618507862091008 ], [ -77.431854248046818, -6.619287967681885 ], [ -77.429710388183594, -6.62142276763916 ], [ -77.429016113281193, -6.622635841369572 ], [ -77.428749084472656, -6.627871036529541 ], [ -77.428184509277344, -6.629817008972168 ], [ -77.428169250488168, -6.632483959197998 ], [ -77.427597045898324, -6.63555908203125 ], [ -77.426399230957031, -6.636703014373722 ], [ -77.424339294433537, -6.637102127075195 ], [ -77.423461914062443, -6.637883186340275 ], [ -77.423461914062443, -6.638551235198975 ], [ -77.424812316894474, -6.640155792236271 ], [ -77.42474365234375, -6.641177177429142 ], [ -77.423904418945312, -6.641750812530518 ], [ -77.423271179199162, -6.64184379577631 ], [ -77.419853210449162, -6.640839099883976 ], [ -77.419151306152344, -6.641003131866455 ], [ -77.417617797851562, -6.64184379577631 ], [ -77.416709899902287, -6.641938209533691 ], [ -77.415100097656193, -6.64089918136591 ], [ -77.413642883300724, -6.640752792358398 ], [ -77.412727355957031, -6.641136169433594 ], [ -77.411148071289062, -6.64240121841425 ], [ -77.408966064453068, -6.643106937408447 ], [ -77.408111572265568, -6.643788814544678 ], [ -77.406578063964844, -6.647329807281494 ], [ -77.405685424804688, -6.648120880126953 ], [ -77.404441833496094, -6.649880886077881 ], [ -77.404502868652287, -6.652365207672119 ], [ -77.403785705566406, -6.653804779052678 ], [ -77.403984069824219, -6.654428005218506 ], [ -77.404594421386662, -6.654823780059814 ], [ -77.407463073730412, -6.655676841735783 ], [ -77.407402038574219, -6.656952857971135 ], [ -77.4068603515625, -6.65801286697382 ], [ -77.405433654785156, -6.660051822662297 ], [ -77.403930664062443, -6.661533832549992 ], [ -77.402854919433594, -6.663345813751164 ], [ -77.402053833007812, -6.66395711898798 ], [ -77.400466918945312, -6.664405822753906 ], [ -77.400062561035156, -6.664841175079346 ], [ -77.399734497070256, -6.666181087493896 ], [ -77.397850036621094, -6.669325828552189 ], [ -77.395332336425724, -6.67562818527216 ], [ -77.393905639648381, -6.677182197570744 ], [ -77.3919677734375, -6.678401947021428 ], [ -77.391227722167912, -6.679220199584904 ], [ -77.390686035156193, -6.680377960205078 ], [ -77.389266967773438, -6.682301044464111 ], [ -77.388153076171875, -6.685027122497559 ], [ -77.385002136230469, -6.690882205963135 ], [ -77.383911132812443, -6.693986892700138 ], [ -77.380767822265568, -6.697826862335205 ], [ -77.378997802734375, -6.700942039489746 ], [ -77.375862121582031, -6.70477104187006 ], [ -77.375473022460938, -6.70610523223877 ], [ -77.375427246093693, -6.70756816864008 ], [ -77.376602172851562, -6.711429119110107 ], [ -77.376884460449219, -6.714735984802246 ], [ -77.377723693847656, -6.716784954071045 ], [ -77.378273010253849, -6.719113826751709 ], [ -77.378250122070312, -6.721329212188664 ], [ -77.377456665039062, -6.724991798400879 ], [ -77.3775634765625, -6.726728916168156 ], [ -77.378059387207031, -6.727149963378849 ], [ -77.378868103027344, -6.727282047271672 ], [ -77.381507873535099, -6.726590156555119 ], [ -77.382369995117131, -6.727336883544865 ], [ -77.383247375488224, -6.729465961456299 ], [ -77.383750915527344, -6.733106136322021 ], [ -77.384101867675724, -6.734151840209904 ], [ -77.385063171386605, -6.73572921752924 ], [ -77.386741638183594, -6.736978054046574 ], [ -77.387306213378906, -6.738530158996582 ], [ -77.388084411621037, -6.739312171936035 ], [ -77.391265869140625, -6.739321231841984 ], [ -77.392356872558594, -6.739788055419922 ], [ -77.394180297851562, -6.739680767059326 ], [ -77.394966125488224, -6.739937782287541 ], [ -77.396446228027344, -6.739523887634221 ], [ -77.398941040039062, -6.740371227264347 ], [ -77.39996337890625, -6.740330219268799 ], [ -77.400718688964844, -6.7398362159729 ], [ -77.401367187499943, -6.739056110382023 ], [ -77.401763916015625, -6.738123893737793 ], [ -77.403251647949162, -6.736136913299561 ], [ -77.404533386230469, -6.733085155487061 ], [ -77.405929565429631, -6.728793144226074 ], [ -77.407890319824219, -6.725069046020451 ], [ -77.410423278808537, -6.72229099273676 ], [ -77.414398193359375, -6.716668128967228 ], [ -77.416107177734375, -6.715150833129826 ], [ -77.417442321777344, -6.714784145355168 ], [ -77.420730590820199, -6.714920043945256 ], [ -77.425270080566406, -6.715764045715332 ], [ -77.427009582519474, -6.715765953063908 ], [ -77.427803039550781, -6.715536117553654 ], [ -77.428642272949162, -6.714818000793457 ], [ -77.430122375488281, -6.714095115661621 ], [ -77.433143615722656, -6.710899829864502 ], [ -77.434318542480469, -6.708815097808838 ], [ -77.435188293457031, -6.706389904022217 ], [ -77.437141418457031, -6.70383882522583 ], [ -77.437614440917969, -6.702263832092228 ], [ -77.439910888671875, -6.698845863342228 ], [ -77.441001892089844, -6.696509838104191 ], [ -77.444168090820256, -6.693321228027344 ], [ -77.444694519042969, -6.691853046417179 ], [ -77.44696044921875, -6.689455986022892 ], [ -77.447822570800781, -6.688158988952637 ], [ -77.448593139648438, -6.687513828277531 ], [ -77.450981140136719, -6.686182975768986 ], [ -77.454597473144531, -6.681952953338623 ], [ -77.455284118652344, -6.681353092193604 ], [ -77.457290649414062, -6.680467128753662 ], [ -77.458381652831974, -6.680569171905518 ], [ -77.460098266601506, -6.68144702911377 ], [ -77.461105346679688, -6.681594848632812 ], [ -77.461967468261719, -6.681345939636174 ], [ -77.463859558105469, -6.680206775665283 ], [ -77.465126037597656, -6.680019855499211 ], [ -77.465980529785156, -6.680566787719613 ], [ -77.4669189453125, -6.681577205657902 ], [ -77.467704772949219, -6.683523178100472 ], [ -77.467643737792912, -6.684906005859261 ], [ -77.467346191406193, -6.686164855957031 ], [ -77.465347290039006, -6.689888954162484 ], [ -77.465423583984318, -6.690619945526123 ], [ -77.466232299804688, -6.691222190856934 ], [ -77.467674255371094, -6.690681934356689 ], [ -77.470886230468693, -6.68840503692627 ], [ -77.474815368652344, -6.686649799346924 ], [ -77.476272583007812, -6.686462879180908 ], [ -77.477912902832031, -6.686673164367676 ], [ -77.480278015136719, -6.68785285949707 ], [ -77.481773376464844, -6.689237117767334 ], [ -77.482696533203068, -6.690830230712891 ], [ -77.483406066894531, -6.693784236907902 ], [ -77.483489990234375, -6.696818828582764 ], [ -77.483924865722599, -6.698425769805851 ], [ -77.484527587890568, -6.699670791625977 ], [ -77.486686706542969, -6.702623844146729 ], [ -77.486694335937443, -6.703563213348332 ], [ -77.486129760742131, -6.705501079559326 ], [ -77.487030029296875, -6.710738182067871 ], [ -77.48805999755848, -6.711915969848576 ], [ -77.490280151367188, -6.71302604675293 ], [ -77.490982055664006, -6.713619232177734 ], [ -77.491561889648381, -6.714772224426213 ], [ -77.491661071777287, -6.716036796569767 ], [ -77.492156982421818, -6.716704845428467 ], [ -77.493476867675724, -6.717049121856633 ], [ -77.495513916015625, -6.716532230377084 ], [ -77.497428894042969, -6.716605186462346 ], [ -77.498382568359375, -6.717467784881592 ], [ -77.499290466308537, -6.71947002410883 ], [ -77.499755859374943, -6.719675064086914 ], [ -77.500480651855469, -6.718876838684025 ], [ -77.500968933105469, -6.717689990997258 ], [ -77.500961303710938, -6.714924812316895 ], [ -77.500656127929688, -6.713379859924316 ], [ -77.500846862792969, -6.712502002716064 ], [ -77.501663208007756, -6.711494922637883 ], [ -77.503509521484261, -6.710302829742375 ], [ -77.504600524902344, -6.708018779754639 ], [ -77.509567260742188, -6.703129768371525 ], [ -77.5123291015625, -6.698806762695256 ], [ -77.512496948242188, -6.698192119598389 ], [ -77.512397766113281, -6.695704936981201 ], [ -77.512901306152344, -6.693751811981144 ], [ -77.515052795410156, -6.689383029937744 ], [ -77.515716552734261, -6.688529968261605 ], [ -77.517906188964787, -6.683169841766301 ], [ -77.519546508789062, -6.680403232574463 ], [ -77.5208740234375, -6.679132938384953 ], [ -77.522094726562443, -6.678511142730713 ], [ -77.523544311523438, -6.677392005920353 ], [ -77.529914855956974, -6.67509222030634 ], [ -77.532539367675781, -6.673605918884221 ], [ -77.534278869628849, -6.673695087432861 ], [ -77.536582946777287, -6.674604892730713 ], [ -77.538505554199162, -6.674507141113224 ], [ -77.541793823242188, -6.676132202148324 ], [ -77.542655944824219, -6.676128864288273 ], [ -77.544097900390625, -6.675333976745549 ], [ -77.545913696289006, -6.673526763915959 ], [ -77.547950744628793, -6.672712802886963 ], [ -77.550544738769531, -6.66962718963623 ], [ -77.553611755371094, -6.669133186340332 ], [ -77.554672241210938, -6.668547153472844 ], [ -77.55519866943348, -6.667894840240365 ], [ -77.555938720703068, -6.665955066680908 ], [ -77.557365417480412, -6.660769939422607 ], [ -77.557907104492188, -6.657973766326847 ], [ -77.559181213378849, -6.65532112121582 ], [ -77.559806823730469, -6.652569770812931 ], [ -77.561584472656193, -6.648232936859131 ], [ -77.564498901367188, -6.642940998077336 ], [ -77.568572998046875, -6.638717174529972 ], [ -77.572631835937443, -6.636235237121582 ], [ -77.574371337890625, -6.634655952453556 ], [ -77.577621459960938, -6.635334968566838 ], [ -77.579086303710938, -6.635344028472844 ], [ -77.580558776855412, -6.635825157165527 ], [ -77.58148193359375, -6.635793209075871 ], [ -77.582962036132812, -6.63530778884882 ], [ -77.584693908691406, -6.633543968200627 ], [ -77.587120056152287, -6.632483959197998 ], [ -77.588005065917855, -6.631674766540527 ], [ -77.589141845703068, -6.629798889160156 ], [ -77.59033203125, -6.628527164459229 ], [ -77.593902587890568, -6.627052783966064 ], [ -77.597999572753849, -6.623235225677433 ], [ -77.600090026855412, -6.619737148284912 ], [ -77.600593566894418, -6.616942882537842 ], [ -77.601615905761662, -6.616024017333928 ], [ -77.605339050292912, -6.615615844726562 ], [ -77.607192993164062, -6.614632129669076 ], [ -77.609794616699219, -6.614085197448674 ], [ -77.611885070800781, -6.613195896148682 ], [ -77.613723754882756, -6.613311767578125 ], [ -77.616516113281193, -6.614699840545597 ], [ -77.618125915527287, -6.615042209625187 ], [ -77.619338989257812, -6.614611148834229 ], [ -77.621871948242188, -6.612799167633057 ], [ -77.623970031738281, -6.612887859344426 ], [ -77.625167846679631, -6.613533020019531 ], [ -77.627548217773381, -6.612644195556641 ], [ -77.634086608886719, -6.618264198303166 ], [ -77.635696411132812, -6.619108200073242 ], [ -77.638427734374943, -6.621288776397648 ], [ -77.646095275878906, -6.627880096435547 ], [ -77.650154113769474, -6.632386207580566 ], [ -77.653091430664062, -6.637585163116398 ], [ -77.653923034667969, -6.6383118629455 ], [ -77.655769348144531, -6.639348983764592 ], [ -77.657417297363224, -6.640813827514648 ], [ -77.659378051757812, -6.643685817718506 ], [ -77.660804748535156, -6.645243167877197 ], [ -77.662948608398381, -6.646261215209961 ], [ -77.664726257324219, -6.647398948669377 ], [ -77.666603088378906, -6.648158073425236 ], [ -77.66888427734375, -6.648278236389103 ], [ -77.674507141113281, -6.647581100463867 ], [ -77.678306579589787, -6.648138999938908 ], [ -77.681678771972656, -6.649600028991699 ], [ -77.683631896972599, -6.650078773498535 ], [ -77.685913085937443, -6.649949073791504 ], [ -77.687896728515625, -6.649549961090031 ], [ -77.691154479980469, -6.648322105407658 ], [ -77.693817138671875, -6.646562099456787 ], [ -77.698387145996094, -6.641920089721623 ], [ -77.698524475097599, -6.641487121581974 ], [ -77.69830322265625, -6.640069007873535 ], [ -77.698501586914006, -6.639651775360107 ], [ -77.700523376464787, -6.638094902038574 ], [ -77.701873779296761, -6.637529850006104 ], [ -77.704292297363281, -6.636999130249023 ], [ -77.707626342773438, -6.635301113128662 ], [ -77.711105346679631, -6.635103225708008 ], [ -77.713035583496094, -6.635406017303467 ], [ -77.714401245117188, -6.636645793914795 ], [ -77.714996337890625, -6.637682914733887 ], [ -77.715576171874943, -6.643633842468262 ], [ -77.717636108398438, -6.648843765258789 ], [ -77.718017578125, -6.651121139526367 ], [ -77.718032836914062, -6.654437065124455 ], [ -77.718521118164062, -6.659566879272404 ], [ -77.718856811523438, -6.661290168762207 ], [ -77.719436645507812, -6.662841796874943 ], [ -77.720924377441349, -6.665164947509652 ], [ -77.7227783203125, -6.666817188262939 ], [ -77.724945068359318, -6.667817115783691 ], [ -77.728645324706974, -6.668863773345947 ], [ -77.731346130371094, -6.670590877532959 ], [ -77.734901428222656, -6.673760890960637 ], [ -77.736137390136719, -6.675806045532227 ], [ -77.736991882324219, -6.676651000976562 ], [ -77.737602233886662, -6.677677154541016 ], [ -77.737815856933537, -6.680973052978459 ], [ -77.737464904785156, -6.682504177093506 ], [ -77.736091613769474, -6.684779167175236 ], [ -77.733070373535156, -6.688827037811279 ], [ -77.732559204101506, -6.690209865570068 ], [ -77.732505798339844, -6.690944194793701 ], [ -77.733467102050781, -6.692501068115178 ], [ -77.736328125, -6.693965911865121 ], [ -77.738113403320199, -6.694353103637695 ], [ -77.739326477050724, -6.695621013641357 ], [ -77.739654541015625, -6.697516918182373 ], [ -77.73956298828125, -6.700364112853947 ], [ -77.738952636718693, -6.701786041259652 ], [ -77.735649108886719, -6.704452037811279 ], [ -77.734039306640625, -6.706089019775391 ], [ -77.732818603515625, -6.708036899566594 ], [ -77.732582092285043, -6.709104061126709 ], [ -77.733222961425724, -6.711115837097168 ], [ -77.734588623046875, -6.712972164153996 ], [ -77.735130310058537, -6.715118885040226 ], [ -77.736038208007812, -6.717129230499211 ], [ -77.737594604492188, -6.719620227813664 ], [ -77.739265441894531, -6.721710205078068 ], [ -77.740020751953011, -6.724271774291992 ], [ -77.741905212402287, -6.7272047996521 ], [ -77.741767883300781, -6.733477115631047 ], [ -77.741920471191349, -6.735851764678955 ], [ -77.742622375488281, -6.738442897796517 ], [ -77.744400024414006, -6.742262840270939 ], [ -77.744743347167969, -6.743419170379582 ], [ -77.744766235351506, -6.747645854949837 ], [ -77.744140625, -6.751101970672607 ], [ -77.743362426757812, -6.75326681137085 ], [ -77.742118835449105, -6.754952907562256 ], [ -77.737678527832031, -6.758022785186768 ], [ -77.735832214355469, -6.759823799133301 ], [ -77.734657287597599, -6.761328220367375 ], [ -77.733222961425724, -6.764934062957764 ], [ -77.733291625976562, -6.768792152404785 ], [ -77.732902526855469, -6.770302772521973 ], [ -77.731391906738281, -6.772364139556885 ], [ -77.730003356933537, -6.776066780090275 ], [ -77.729316711425724, -6.777255058288574 ], [ -77.728057861328125, -6.778590202331543 ], [ -77.724739074706974, -6.780751228332463 ], [ -77.724441528320256, -6.781863212585392 ], [ -77.724647521972599, -6.783631801605168 ], [ -77.725654602050781, -6.786547183990479 ], [ -77.726264953613224, -6.787580966949349 ], [ -77.728813171386719, -6.790214061737061 ], [ -77.729507446289006, -6.791285037994328 ], [ -77.731330871581974, -6.792675018310547 ], [ -77.732269287109318, -6.793042182922306 ], [ -77.733993530273381, -6.794548988342285 ], [ -77.735488891601562, -6.795263767242432 ], [ -77.736228942871094, -6.795285224914551 ], [ -77.737709045410099, -6.794789791107121 ], [ -77.740486145019474, -6.792406082153263 ], [ -77.743156433105412, -6.790475845336914 ], [ -77.746238708496094, -6.788633823394775 ], [ -77.748481750488224, -6.787618160247746 ], [ -77.749847412109375, -6.787782192230225 ], [ -77.752471923828125, -6.789284229278564 ], [ -77.754570007324219, -6.789064884185791 ], [ -77.755874633789062, -6.7895188331604 ], [ -77.758003234863281, -6.791537761688232 ], [ -77.758773803710881, -6.792673110961914 ], [ -77.760093688964844, -6.795619964599553 ], [ -77.760406494140568, -6.797164916992188 ], [ -77.760414123535099, -6.798637866973877 ], [ -77.759925842285099, -6.801639080047607 ], [ -77.758903503417855, -6.804483890533447 ], [ -77.756431579589844, -6.808355808258 ], [ -77.755279541015511, -6.810855865478459 ], [ -77.752944946289062, -6.81414890289301 ], [ -77.751960754394531, -6.817117214202824 ], [ -77.750785827636662, -6.818869113922119 ], [ -77.74969482421875, -6.821685791015625 ], [ -77.746353149414062, -6.825310230255127 ], [ -77.745063781738224, -6.827746868133488 ], [ -77.743721008300724, -6.829716205596924 ], [ -77.743309020996094, -6.831217765808105 ], [ -77.741836547851562, -6.833668231964054 ], [ -77.741661071777344, -6.835040092468262 ], [ -77.742347717285156, -6.83643722534174 ], [ -77.742340087890625, -6.83725976943964 ], [ -77.741821289062443, -6.838337898254395 ], [ -77.739837646484375, -6.840500831604004 ], [ -77.739044189453068, -6.841949939727783 ], [ -77.738563537597599, -6.843913078308105 ], [ -77.738105773925724, -6.848406791686955 ], [ -77.737464904785156, -6.850234985351562 ], [ -77.736946105956974, -6.850971221923828 ], [ -77.735519409179631, -6.852136135101318 ], [ -77.735313415527287, -6.853140830993652 ], [ -77.734588623046875, -6.854299068450871 ], [ -77.734085083007756, -6.854112148284855 ], [ -77.733856201171875, -6.853041172027588 ], [ -77.733207702636719, -6.852057933807316 ], [ -77.732559204101506, -6.852197170257512 ], [ -77.731880187988224, -6.853104114532471 ], [ -77.730491638183594, -6.857786178588867 ], [ -77.730361938476506, -6.85942888259882 ], [ -77.730812072753906, -6.85988712310791 ], [ -77.732559204101506, -6.859325885772648 ], [ -77.733879089355469, -6.85963582992548 ], [ -77.734329223632812, -6.860464096069336 ], [ -77.73431396484375, -6.863210201263428 ], [ -77.733787536621037, -6.864082813262883 ], [ -77.733108520507812, -6.864539146423283 ], [ -77.732376098632756, -6.864378929138184 ], [ -77.731109619140625, -6.86332893371582 ], [ -77.730667114257756, -6.863477230072021 ], [ -77.730049133300781, -6.864155769348145 ], [ -77.729621887206974, -6.865371227264404 ], [ -77.729461669921875, -6.866754055023193 ], [ -77.730384826660099, -6.870499134063664 ], [ -77.730247497558594, -6.87223291397089 ], [ -77.729736328125, -6.873104095458984 ], [ -77.725013732910099, -6.877449989318791 ], [ -77.723396301269474, -6.879446983337402 ], [ -77.722511291503906, -6.881758213043213 ], [ -77.722000122070312, -6.885600090026799 ], [ -77.720252990722599, -6.88975715637207 ], [ -77.719581604003849, -6.893194198608398 ], [ -77.718849182128793, -6.895267963409367 ], [ -77.7166748046875, -6.897990226745605 ], [ -77.715187072753906, -6.900845050811768 ], [ -77.712051391601506, -6.904189109802246 ], [ -77.711761474609318, -6.904669761657658 ], [ -77.711761474609318, -6.905861854553166 ], [ -77.713424682617188, -6.910155773162842 ], [ -77.716209411621094, -6.912957191467285 ], [ -77.717330932617188, -6.913311958312931 ], [ -77.718894958496094, -6.913194179534912 ], [ -77.721534729003906, -6.914030075073242 ], [ -77.722068786621037, -6.914540767669678 ], [ -77.722328186035156, -6.915226936340275 ], [ -77.722648620605412, -6.917693138122559 ], [ -77.723678588867131, -6.919221878051758 ], [ -77.725837707519531, -6.920609951019287 ], [ -77.728256225585881, -6.922992229461613 ], [ -77.730072021484318, -6.923873901367131 ], [ -77.732978820800781, -6.924716949462891 ], [ -77.733688354492188, -6.925327777862492 ], [ -77.733757019042969, -6.92667293548584 ], [ -77.73138427734375, -6.929215908050537 ], [ -77.731376647949219, -6.931611061096135 ], [ -77.731834411621094, -6.93249320983881 ], [ -77.733337402343693, -6.934264183044377 ], [ -77.73516845703125, -6.935989856719914 ], [ -77.737449645996094, -6.937692165374756 ], [ -77.739089965820312, -6.939554214477482 ], [ -77.739692687988281, -6.941103935241642 ], [ -77.739875793457031, -6.94218921661377 ], [ -77.739822387695256, -6.945414066314584 ], [ -77.739555358886719, -6.94724178314209 ], [ -77.739768981933594, -6.948775768279916 ], [ -77.740821838378906, -6.950180053710938 ], [ -77.743057250976506, -6.952010154724121 ], [ -77.744354248046875, -6.955824851989746 ], [ -77.746635437011719, -6.958936214447021 ], [ -77.746871948242131, -6.959832191467285 ], [ -77.746948242187443, -6.962594032287598 ], [ -77.747383117675781, -6.963821887969971 ], [ -77.748542785644531, -6.9648180007934 ], [ -77.749870300292969, -6.965514183044377 ], [ -77.750267028808594, -6.965449810028019 ], [ -77.750190734863224, -6.960993766784668 ], [ -77.750694274902287, -6.958388805389347 ], [ -77.751922607421818, -6.95581579208374 ], [ -77.755508422851562, -6.951521873474064 ], [ -77.756744384765625, -6.949372768402043 ], [ -77.756629943847656, -6.944583892822209 ], [ -77.757026672363281, -6.94271278381342 ], [ -77.758369445800781, -6.940083026885986 ], [ -77.760658264160156, -6.936998844146672 ], [ -77.761726379394531, -6.933216094970646 ], [ -77.763458251953068, -6.931714057922306 ], [ -77.765052795410156, -6.929265975952092 ], [ -77.76849365234375, -6.926407814025879 ], [ -77.769996643066406, -6.926797866821232 ], [ -77.770904541015568, -6.927821159362793 ], [ -77.7708740234375, -6.932429790496826 ], [ -77.771240234375, -6.933548927307072 ], [ -77.772598266601562, -6.934806823730469 ], [ -77.774787902832031, -6.93572282791132 ], [ -77.776939392089844, -6.938241004943848 ], [ -77.77797698974598, -6.938831806182861 ], [ -77.780265808105355, -6.941952228546143 ], [ -77.781990051269531, -6.946506023406982 ], [ -77.784172058105412, -6.950025081634521 ], [ -77.786453247070256, -6.952425003051701 ], [ -77.790611267089844, -6.955464839935246 ], [ -77.792350769042912, -6.958804130554199 ], [ -77.795219421386662, -6.962392807006836 ], [ -77.797920227050781, -6.966977119445801 ], [ -77.79888916015625, -6.967964172363281 ], [ -77.800178527831974, -6.968453884124699 ], [ -77.800819396972656, -6.968467235565186 ], [ -77.802253723144531, -6.967654228210449 ], [ -77.805343627929631, -6.966833114623967 ], [ -77.808967590331974, -6.963342189788818 ], [ -77.811988830566349, -6.963060855865479 ], [ -77.813194274902344, -6.962648868560734 ], [ -77.815216064453125, -6.961216926574707 ], [ -77.819602966308594, -6.957324981689453 ], [ -77.821632385253849, -6.956445217132512 ], [ -77.823143005371094, -6.956085205078125 ], [ -77.824325561523324, -6.95612096786499 ], [ -77.827377319335824, -6.957141876220703 ], [ -77.830299377441349, -6.95692586898798 ], [ -77.831741333007756, -6.957242965698242 ], [ -77.8341064453125, -6.95912504196167 ], [ -77.836555480957031, -6.962797164916992 ], [ -77.83721923828125, -6.9631090164184 ], [ -77.838554382324219, -6.96320009231556 ], [ -77.840263366699219, -6.962314128875676 ], [ -77.842491149902344, -6.959879875183105 ], [ -77.844612121581974, -6.959296226501465 ], [ -77.845809936523438, -6.958440780639592 ], [ -77.846183776855469, -6.957824230194035 ], [ -77.846824645996037, -6.955136775970459 ], [ -77.848564147949219, -6.953266143798771 ], [ -77.851295471191349, -6.952581882476807 ], [ -77.854316711425781, -6.952788829803467 ], [ -77.859840393066406, -6.954751968383789 ], [ -77.86175537109375, -6.955824851989746 ], [ -77.863571166992188, -6.957520961761475 ], [ -77.86737060546875, -6.963180065155029 ], [ -77.868972778320312, -6.964678764343205 ], [ -77.870613098144531, -6.96469783782959 ], [ -77.874481201171818, -6.963579177856445 ], [ -77.877952575683594, -6.963596820831299 ], [ -77.881477355957031, -6.96419620513916 ], [ -77.88433837890625, -6.965147018432617 ], [ -77.886764526367131, -6.966242790222168 ], [ -77.888633728027344, -6.967578887939453 ], [ -77.893630981445256, -6.971910953521672 ], [ -77.895233154296875, -6.973552227020207 ], [ -77.897422790527344, -6.97523021697998 ], [ -77.903053283691406, -6.97813081741333 ], [ -77.905380249023381, -6.978985786437988 ], [ -77.911651611328068, -6.980102062225342 ], [ -77.914543151855355, -6.980996131896973 ], [ -77.926246643066349, -6.987483978271428 ], [ -77.927818298339844, -6.987491130828801 ], [ -77.930038452148438, -6.986674785614014 ], [ -77.930747985839787, -6.986751079559326 ], [ -77.932258605956974, -6.98494291305542 ], [ -77.933235168456918, -6.982371807098389 ], [ -77.934188842773324, -6.980992794036865 ], [ -77.9346923828125, -6.980653762817326 ], [ -77.936393737792969, -6.980203151702881 ], [ -77.937423706054631, -6.979598999023438 ], [ -77.938301086425781, -6.97878980636591 ], [ -77.938804626464844, -6.977712154388371 ], [ -77.939628601074219, -6.976839065551701 ], [ -77.940620422363281, -6.976273059844971 ], [ -77.943077087402344, -6.974196910858154 ], [ -77.944732666015625, -6.973418235778809 ], [ -77.946647644042912, -6.973244190216064 ], [ -77.950584411621037, -6.974114894866943 ], [ -77.953338623046818, -6.974114894866943 ], [ -77.95556640625, -6.975347995758 ], [ -77.957298278808594, -6.975419044494515 ], [ -77.958984374999886, -6.975868225097599 ], [ -77.961372375488281, -6.97585391998291 ], [ -77.962783813476506, -6.975223064422607 ], [ -77.964683532714787, -6.973636150360051 ], [ -77.966850280761719, -6.973145961761475 ], [ -77.968963623046818, -6.971687793731576 ], [ -77.971443176269474, -6.970748901367188 ], [ -77.973320007324219, -6.969427108764592 ], [ -77.975044250488281, -6.969272136688176 ], [ -77.979965209960824, -6.965013980865479 ], [ -77.981918334960938, -6.963997840881348 ], [ -77.98382568359375, -6.963373184204102 ], [ -77.985198974609318, -6.963435173034611 ], [ -77.98846435546875, -6.964363098144531 ], [ -77.992851257324219, -6.964344024658203 ], [ -77.999282836914062, -6.968695163726807 ], [ -77.999298095703068, -6.966010093688908 ], [ -77.999862670898381, -6.964834213256779 ], [ -78.001167297363281, -6.963478088378906 ], [ -78.001350402832031, -6.962323188781681 ], [ -78.001022338867131, -6.960274219512939 ], [ -78.000572204589844, -6.959489822387638 ], [ -77.999893188476506, -6.958916187286377 ], [ -77.999900817871094, -6.9578599929809 ], [ -77.998802185058594, -6.956149101257324 ], [ -77.997062683105469, -6.954995155334416 ], [ -77.996688842773438, -6.953859806060791 ], [ -77.997222900390568, -6.952294826507568 ], [ -77.999855041503906, -6.948256015777531 ], [ -78.000312805175781, -6.946638107299748 ], [ -77.999900817871094, -6.945563793182373 ], [ -77.999900817871094, -6.945184230804387 ], [ -77.999038696288949, -6.944612026214543 ], [ -77.998794555664062, -6.943746089935246 ], [ -77.999855041503906, -6.941671848297062 ], [ -78.000480651855469, -6.940945148467961 ], [ -78.002182006835881, -6.939036846160832 ], [ -78.004432678222656, -6.937078952789307 ], [ -78.005844116210938, -6.936782836914062 ], [ -78.009681701660156, -6.937218189239502 ], [ -78.011314392089787, -6.936954021453857 ], [ -78.012466430664006, -6.936071872711182 ], [ -78.013557434082031, -6.934483051299992 ], [ -78.013450622558594, -6.934095859527588 ], [ -78.014183044433537, -6.931633949279728 ], [ -78.013809204101506, -6.929721832275391 ], [ -78.013084411621094, -6.928814888000488 ], [ -78.010841369628849, -6.927030086517334 ], [ -78.010337829589844, -6.926047801971379 ], [ -78.008857727050724, -6.924675941467228 ], [ -78.008308410644531, -6.92362117767334 ], [ -78.007034301757756, -6.922737121581974 ], [ -78.00592041015625, -6.921505928039494 ], [ -78.005569458007812, -6.920269966125431 ], [ -78.005439758300781, -6.917986869812012 ], [ -78.004997253417969, -6.916767120361328 ], [ -78.005027770996037, -6.915476799011174 ], [ -78.004554748535099, -6.914476871490479 ], [ -78.003829956054688, -6.913642883300781 ], [ -78.003013610839787, -6.913258075714111 ], [ -78.002021789550781, -6.912957191467285 ], [ -77.999916076660156, -6.913088798522892 ], [ -77.997444152832031, -6.911233901977482 ], [ -77.996665954589844, -6.910281181335449 ], [ -77.995841979980469, -6.906744003295842 ], [ -77.995780944824162, -6.90448522567749 ], [ -77.995903015136719, -6.903229236602783 ], [ -77.996650695800724, -6.901481151580811 ], [ -77.997642517089844, -6.899977207183838 ], [ -77.998565673828125, -6.898985862731934 ], [ -78.004226684570312, -6.895796775817871 ], [ -78.005210876464787, -6.894986152648926 ], [ -78.005775451660099, -6.893990039825439 ], [ -78.006011962890625, -6.891450881958008 ], [ -78.005882263183537, -6.890655040740967 ], [ -78.004867553710938, -6.888845920562687 ], [ -78.000999450683594, -6.884913921356201 ], [ -77.999923706054688, -6.88441276550293 ], [ -77.999832153320312, -6.883303165435734 ], [ -78.001953125, -6.881538867950383 ], [ -78.006629943847656, -6.879549026489258 ], [ -78.007041931152287, -6.878696918487492 ], [ -78.006584167480469, -6.877326965331974 ], [ -78.005325317382756, -6.875554084777775 ], [ -77.999931335449219, -6.870213985443058 ], [ -77.999542236328125, -6.869600772857666 ], [ -77.999526977539062, -6.867984771728459 ], [ -78.004470825195256, -6.863236904144287 ], [ -78.004966735839844, -6.860921859741211 ], [ -78.00653076171875, -6.858898162841797 ], [ -78.008155822753906, -6.857279777526799 ], [ -78.009483337402344, -6.855401992797852 ], [ -78.011627197265511, -6.853544235229435 ], [ -78.013999938964787, -6.852807998657227 ], [ -78.017662048339844, -6.852550983428898 ], [ -78.019874572753906, -6.85195779800415 ], [ -78.021255493164006, -6.851875782012883 ], [ -78.024383544921818, -6.850827217102051 ], [ -78.027763366699219, -6.850578784942627 ], [ -78.030372619628906, -6.849236965179387 ], [ -78.031097412109375, -6.848073959350586 ], [ -78.030975341796818, -6.84587907791132 ], [ -78.030364990234375, -6.844655990600586 ], [ -78.028709411621094, -6.843049049377328 ], [ -78.026947021484318, -6.842030048370361 ], [ -78.024948120117131, -6.841627120971623 ], [ -78.024314880371094, -6.841261863708439 ], [ -78.023994445800724, -6.840611934661865 ], [ -78.024223327636719, -6.838597774505615 ], [ -78.023872375488281, -6.838057994842529 ], [ -78.019630432128849, -6.834171772003174 ], [ -78.016525268554688, -6.832862854003906 ], [ -78.015792846679631, -6.832136154174805 ], [ -78.015495300292969, -6.831200122833195 ], [ -78.016593933105469, -6.82951116561884 ], [ -78.016685485839844, -6.828208923339787 ], [ -78.016189575195256, -6.827046871185303 ], [ -78.014541625976562, -6.824456214904785 ], [ -78.014183044433537, -6.823068141937256 ], [ -78.014419555664062, -6.821692943572998 ], [ -78.015350341796875, -6.820439815521183 ], [ -78.016548156738281, -6.820017814636117 ], [ -78.0184326171875, -6.820384979248047 ], [ -78.0191650390625, -6.820298194885254 ], [ -78.020385742187443, -6.819496154785156 ], [ -78.0211181640625, -6.818451881408691 ], [ -78.021125793457031, -6.817151069641113 ], [ -78.0205078125, -6.815530776977539 ], [ -78.020370483398381, -6.813607215881348 ], [ -78.018592834472656, -6.811511993408203 ], [ -78.017890930175724, -6.809133052825928 ], [ -78.017898559570256, -6.807506084442082 ], [ -78.018455505371094, -6.805949211120605 ], [ -78.019226074218693, -6.80469799041748 ], [ -78.020164489746094, -6.803446769714355 ], [ -78.021873474121094, -6.801781177520752 ], [ -78.022979736328125, -6.800211906433105 ], [ -78.023811340331974, -6.798571109771729 ], [ -78.0240478515625, -6.797502994537354 ], [ -78.023834228515511, -6.796041965484562 ], [ -78.022705078125, -6.794847011566162 ], [ -78.021568298339844, -6.794067859649658 ], [ -78.021095275878906, -6.792878150939885 ], [ -78.021156311035099, -6.792137145996094 ], [ -78.022148132324219, -6.789284229278564 ], [ -78.023414611816406, -6.786342144012394 ], [ -78.024078369140625, -6.783493041992131 ], [ -78.023818969726506, -6.781578063964787 ], [ -78.021980285644531, -6.778717994689941 ], [ -78.021881103515625, -6.77761697769165 ], [ -78.022468566894474, -6.776936054229679 ], [ -78.026069641113281, -6.77558422088623 ], [ -78.026626586914062, -6.774965763091984 ], [ -78.026870727539006, -6.77417087554926 ], [ -78.02669525146473, -6.773403167724553 ], [ -78.025413513183594, -6.772543907165527 ], [ -78.023239135742131, -6.772294998168888 ], [ -78.022720336914062, -6.771910190582219 ], [ -78.022354125976562, -6.770973205566406 ], [ -78.022346496582031, -6.769781112670898 ], [ -78.023025512695312, -6.768070220947266 ], [ -78.023689270019531, -6.76718807220459 ], [ -78.024848937988224, -6.767354011535645 ], [ -78.027458190917855, -6.769505977630558 ], [ -78.028076171875, -6.769302845001164 ], [ -78.029022216796875, -6.768564224243107 ], [ -78.030708312988281, -6.76627779006958 ], [ -78.031646728515568, -6.763976097106934 ], [ -78.031791687011719, -6.762532234191838 ], [ -78.031448364257756, -6.761676788329964 ], [ -78.029449462890568, -6.759518146514893 ], [ -78.029396057128906, -6.758697986602726 ], [ -78.030319213867074, -6.757438182830754 ], [ -78.032806396484375, -6.755895137786752 ], [ -78.034217834472599, -6.754322052001896 ], [ -78.034896850585824, -6.751372814178467 ], [ -78.035438537597599, -6.750041961669808 ], [ -78.037117004394531, -6.747873783111515 ], [ -78.038017272949162, -6.746059894561768 ], [ -78.038139343261605, -6.744136810302734 ], [ -78.037101745605469, -6.743772029876652 ], [ -78.034393310546818, -6.741493225097656 ], [ -78.034149169921875, -6.740114212036133 ], [ -78.034904479980469, -6.738907814025765 ], [ -78.0377197265625, -6.735485076904297 ], [ -78.039703369140625, -6.731768131256047 ], [ -78.039756774902287, -6.729482173919678 ], [ -78.038391113281193, -6.725814819335881 ], [ -78.038742065429688, -6.724013805389404 ], [ -78.040107727050724, -6.721514225006104 ], [ -78.040458679199219, -6.719604015350285 ], [ -78.040481567382812, -6.718148231506348 ], [ -78.039573669433594, -6.716450214385929 ], [ -78.039764404296875, -6.715651988983154 ], [ -78.040214538574162, -6.714853763580322 ], [ -78.041305541992188, -6.714170932769775 ], [ -78.042678833007812, -6.714297771453857 ], [ -78.043716430664062, -6.713946819305363 ], [ -78.044982910156193, -6.712169170379525 ], [ -78.045219421386719, -6.70831823348999 ], [ -78.046363830566406, -6.7049241065979 ], [ -78.046722412109261, -6.702754020690918 ], [ -78.046607971191349, -6.700279235839844 ], [ -78.046005249023438, -6.698250770568791 ], [ -78.045547485351506, -6.695436000823975 ], [ -78.045608520507812, -6.69425106048584 ], [ -78.046180725097656, -6.692314147949162 ], [ -78.046150207519418, -6.691204071044922 ], [ -78.046440124511719, -6.690543174743652 ], [ -78.050430297851506, -6.685856819152775 ], [ -78.052108764648438, -6.683306217193604 ], [ -78.056488037109375, -6.679388999938965 ], [ -78.056884765625, -6.677326202392578 ], [ -78.05828857421875, -6.676024913787728 ], [ -78.059272766113281, -6.675901889800969 ], [ -78.063064575195312, -6.676826953887939 ], [ -78.065895080566406, -6.6766099929809 ], [ -78.067520141601562, -6.675759792327824 ], [ -78.069282531738281, -6.674447059631348 ], [ -78.07354736328125, -6.673301219940186 ], [ -78.075607299804631, -6.67166185379017 ], [ -78.077842712402344, -6.66944503784174 ], [ -78.079223632812443, -6.66773796081543 ], [ -78.079376220703125, -6.665722846984863 ], [ -78.078987121582031, -6.664604187011719 ], [ -78.078208923339844, -6.663337230682316 ], [ -78.076072692871037, -6.660936832427979 ], [ -78.075965881347599, -6.659717082977181 ], [ -78.076568603515568, -6.658919811248722 ], [ -78.0777587890625, -6.658442974090519 ], [ -78.080902099609375, -6.655360221862793 ], [ -78.081947326660156, -6.654938220977726 ], [ -78.082748413085881, -6.654897212982121 ], [ -78.084320068359375, -6.655465126037598 ], [ -78.086700439453125, -6.655597209930363 ], [ -78.088996887207031, -6.656267166137695 ], [ -78.090187072753849, -6.65628719329834 ], [ -78.093955993652344, -6.657084941864014 ], [ -78.094886779785156, -6.657052993774414 ], [ -78.095695495605469, -6.656208038330078 ], [ -78.096961975097599, -6.65255880355835 ], [ -78.098388671874943, -6.64971399307251 ], [ -78.0994873046875, -6.648866176605168 ], [ -78.104911804199219, -6.646383762359619 ], [ -78.106292724609318, -6.645328998565617 ], [ -78.107345581054631, -6.644174098968506 ], [ -78.108207702636662, -6.642977237701359 ], [ -78.108581542968693, -6.641664028167725 ], [ -78.10791015625, -6.639165878295842 ], [ -78.106704711914006, -6.637234210967904 ], [ -78.105560302734318, -6.636463165283203 ], [ -78.104698181152287, -6.636159896850586 ], [ -78.104026794433537, -6.634857177734375 ], [ -78.104194641113224, -6.632576942443848 ], [ -78.105468749999886, -6.630248069763184 ], [ -78.105911254882756, -6.628654956817627 ], [ -78.105819702148381, -6.627742767333984 ], [ -78.104888916015568, -6.625545978546143 ], [ -78.104888916015568, -6.623894214630127 ], [ -78.105964660644531, -6.621274948120117 ], [ -78.106460571289062, -6.620739936828556 ], [ -78.107429504394531, -6.618765830993596 ], [ -78.111755371093693, -6.614654064178467 ], [ -78.114387512207031, -6.611485958099308 ], [ -78.114273071289062, -6.610385894775391 ], [ -78.114509582519474, -6.609597206115723 ], [ -78.114509582519474, -6.60757303237915 ], [ -78.115188598632756, -6.606476783752441 ], [ -78.115341186523438, -6.604650974273625 ], [ -78.116355895996094, -6.603116989135685 ], [ -78.117004394531193, -6.601956844329777 ], [ -78.119598388671875, -6.600396156311035 ], [ -78.120704650878849, -6.599070072174072 ], [ -78.121841430664006, -6.595567226409855 ], [ -78.122634887695199, -6.590766906738224 ], [ -78.122566223144531, -6.589206218719426 ], [ -78.122108459472656, -6.588519096374512 ], [ -78.121780395507812, -6.586808204650879 ], [ -78.119232177734375, -6.58367919921875 ], [ -78.119049072265625, -6.583055973052979 ], [ -78.118461608886719, -6.582347869873047 ], [ -78.11824798583973, -6.581453800201416 ], [ -78.117141723632812, -6.580007076263371 ], [ -78.117340087890625, -6.577809810638371 ], [ -78.118766784667969, -6.575932025909424 ], [ -78.120079040527344, -6.575119972229004 ], [ -78.122085571289062, -6.573371887207031 ], [ -78.126892089843693, -6.570950031280461 ], [ -78.130607604980469, -6.568108081817627 ], [ -78.134719848632756, -6.566301822662297 ], [ -78.137077331542969, -6.564554214477539 ], [ -78.138008117675781, -6.563536167144719 ], [ -78.138153076171818, -6.56273078918457 ], [ -78.137886047363224, -6.561594009399414 ], [ -78.13800048828125, -6.56013107299799 ], [ -78.137207031249943, -6.558998107910099 ], [ -78.136840820312443, -6.557400226592961 ], [ -78.133628845214844, -6.55373477935791 ], [ -78.132667541503906, -6.551657199859619 ], [ -78.132919311523381, -6.55089616775507 ], [ -78.133941650390625, -6.549950122833195 ], [ -78.134986877441406, -6.549625873565674 ], [ -78.137245178222656, -6.549575805664006 ], [ -78.137802124023438, -6.549119949340763 ], [ -78.13808441162098, -6.548440933227539 ], [ -78.13800048828125, -6.547430992126408 ], [ -78.136978149414062, -6.545477867126465 ], [ -78.136787414550781, -6.543835163116398 ], [ -78.137374877929688, -6.541607856750488 ], [ -78.138809204101562, -6.538943767547607 ], [ -78.139083862304688, -6.537306785583496 ], [ -78.138839721679631, -6.536812782287541 ], [ -78.138359069824162, -6.536543846130371 ], [ -78.136161804199162, -6.536584854125977 ], [ -78.135314941406193, -6.535281181335449 ], [ -78.135284423828068, -6.533718109130803 ], [ -78.136245727539006, -6.531742095947209 ], [ -78.136573791503906, -6.530404090881291 ], [ -78.136238098144474, -6.527306079864502 ], [ -78.136421203613281, -6.526702880859375 ], [ -78.137855529785156, -6.524895191192627 ], [ -78.142272949218693, -6.522167205810547 ], [ -78.143913269042969, -6.520829200744629 ], [ -78.144836425781193, -6.519676208496094 ], [ -78.145751953125, -6.517682075500488 ], [ -78.145980834960881, -6.516318798065186 ], [ -78.145851135253906, -6.515504837036133 ], [ -78.145172119140625, -6.514317989349308 ], [ -78.146392822265625, -6.512440204620361 ], [ -78.147544860839844, -6.51151180267334 ], [ -78.148727416992188, -6.511611938476506 ], [ -78.15069580078125, -6.51238489151001 ], [ -78.151290893554688, -6.512203216552734 ], [ -78.151885986328068, -6.51161003112793 ], [ -78.15240478515625, -6.510324954986515 ], [ -78.152503967285156, -6.50941085815424 ], [ -78.151954650878906, -6.507583141326847 ], [ -78.153053283691349, -6.504881858825684 ], [ -78.151832580566406, -6.50048303604126 ], [ -78.151824951171875, -6.499742984771672 ], [ -78.15252685546875, -6.498535156249943 ], [ -78.153305053710938, -6.498061180114746 ], [ -78.156051635742188, -6.497938156127816 ], [ -78.156906127929688, -6.497641086578312 ], [ -78.157341003417912, -6.497159957885685 ], [ -78.157608032226506, -6.495713233947697 ], [ -78.158340454101562, -6.494553089141789 ], [ -78.1614990234375, -6.492068767547607 ], [ -78.1636962890625, -6.49076318740839 ], [ -78.165245056152287, -6.490715026855412 ], [ -78.167579650878906, -6.492922782897949 ], [ -78.169654846191406, -6.493587017059212 ], [ -78.170761108398381, -6.493635177612248 ], [ -78.172500610351506, -6.493216991424561 ], [ -78.174194335937443, -6.49170017242426 ], [ -78.174446105957031, -6.491108894348088 ], [ -78.174446105957031, -6.485953807830754 ], [ -78.177024841308594, -6.482874870300236 ], [ -78.177062988281193, -6.479388236999512 ], [ -78.177490234375, -6.477604866027832 ], [ -78.177383422851562, -6.476882934570256 ], [ -78.176872253417912, -6.475901126861515 ], [ -78.176994323730355, -6.475089073181152 ], [ -78.177322387695312, -6.474300861358643 ], [ -78.178131103515568, -6.473708152770939 ], [ -78.181442260742131, -6.472669124603271 ], [ -78.184577941894531, -6.471158027648926 ], [ -78.186050415039006, -6.470064163207951 ], [ -78.187278747558537, -6.468700885772648 ], [ -78.187957763671818, -6.467304229736328 ], [ -78.188552856445312, -6.464800834655762 ], [ -78.188552856445312, -6.462587833404541 ], [ -78.188217163085881, -6.461777210235596 ], [ -78.188308715820256, -6.459924221038818 ], [ -78.189544677734375, -6.457784175872803 ], [ -78.190864562988281, -6.456521034240666 ], [ -78.192131042480412, -6.456459999084473 ], [ -78.194404602050781, -6.457833766937256 ], [ -78.195137023925781, -6.458518028259277 ], [ -78.197082519531193, -6.458893775939885 ], [ -78.19818115234375, -6.458436012268066 ], [ -78.201087951660099, -6.455138206481877 ], [ -78.202323913574219, -6.454742908477783 ], [ -78.203010559081974, -6.455567836761418 ], [ -78.203033447265625, -6.457077026367188 ], [ -78.203308105468693, -6.457599163055363 ], [ -78.204780578613281, -6.458592891693115 ], [ -78.205856323242131, -6.458631992340031 ], [ -78.206153869628849, -6.458855152130127 ], [ -78.207069396972656, -6.458930015563908 ], [ -78.208580017089844, -6.458568096160832 ], [ -78.209556579589844, -6.457913875579834 ], [ -78.210533142089787, -6.456569194793644 ], [ -78.210853576660156, -6.454209804534912 ], [ -78.209907531738281, -6.450386047363224 ], [ -78.210174560546818, -6.449111938476562 ], [ -78.210746765136662, -6.44829607009882 ], [ -78.211578369140568, -6.447566032409668 ], [ -78.212364196777287, -6.447336196899414 ], [ -78.216659545898381, -6.447165012359619 ], [ -78.217758178710938, -6.446217060089111 ], [ -78.218536376953125, -6.44377422332758 ], [ -78.218780517578125, -6.438262939453068 ], [ -78.219375610351562, -6.436713218688908 ], [ -78.220817565917969, -6.43405103683466 ], [ -78.221061706542969, -6.431203842163086 ], [ -78.221412658691349, -6.430062770843506 ], [ -78.222198486328011, -6.429183006286564 ], [ -78.225364685058594, -6.426895141601562 ], [ -78.228370666503849, -6.423932075500488 ], [ -78.230545043945312, -6.421452045440674 ], [ -78.233291625976562, -6.41917705535883 ], [ -78.234596252441293, -6.417644023895207 ], [ -78.235702514648438, -6.414826869964543 ], [ -78.236717224121094, -6.413411140441838 ], [ -78.23846435546875, -6.411793231964111 ], [ -78.240554809570312, -6.410469055175781 ], [ -78.241981506347656, -6.409170150756836 ], [ -78.242477416992131, -6.407621860504094 ], [ -78.242752075195312, -6.404973983764648 ], [ -78.243598937988281, -6.402050018310547 ], [ -78.244720458984375, -6.400616168975773 ], [ -78.246398925781193, -6.399702072143498 ], [ -78.250686645507756, -6.399539947509709 ], [ -78.251159667968693, -6.398950099945068 ], [ -78.252044677734318, -6.396931171417236 ], [ -78.253334045410156, -6.395595073699951 ], [ -78.254150390625, -6.395183086395264 ], [ -78.255668640136662, -6.39488410949707 ], [ -78.258682250976562, -6.394720077514592 ], [ -78.262161254882812, -6.393930912017822 ], [ -78.263671874999943, -6.393280029296875 ], [ -78.267837524414062, -6.390789031982365 ], [ -78.2698974609375, -6.390350818634033 ], [ -78.270530700683537, -6.390419006347656 ], [ -78.271575927734318, -6.391180992126465 ], [ -78.272262573242131, -6.392682075500488 ], [ -78.272453308105412, -6.393675804138184 ], [ -78.272415161132812, -6.397443771362305 ], [ -78.272804260253849, -6.398388862609863 ], [ -78.273529052734375, -6.398942947387638 ], [ -78.274673461914062, -6.399287223815918 ], [ -78.275856018066349, -6.399416923522892 ], [ -78.277030944824162, -6.39923715591425 ], [ -78.278472900390625, -6.398642063140812 ], [ -78.279464721679688, -6.397830963134709 ], [ -78.280258178710881, -6.39683294296259 ], [ -78.280876159667969, -6.395382881164494 ], [ -78.280838012695256, -6.393892765045109 ], [ -78.28057861328125, -6.392929077148438 ], [ -78.278579711914062, -6.390305042266789 ], [ -78.278556823730412, -6.389193058013916 ], [ -78.278892517089844, -6.388866901397648 ], [ -78.279037475585824, -6.388269901275578 ], [ -78.281379699707031, -6.386105060577336 ], [ -78.282485961914062, -6.382839202880859 ], [ -78.283302307128849, -6.381505966186523 ], [ -78.284751892089787, -6.380257129669189 ], [ -78.287010192871094, -6.379251956939697 ], [ -78.287643432617188, -6.37872314453125 ], [ -78.2882080078125, -6.377779006958008 ], [ -78.289688110351506, -6.374112129211369 ], [ -78.291099548339844, -6.37268495559681 ], [ -78.293052673339787, -6.371875762939396 ], [ -78.294425964355469, -6.371832847595215 ], [ -78.29681396484375, -6.373380184173584 ], [ -78.298721313476562, -6.375473022460938 ], [ -78.299705505371037, -6.375763893127441 ], [ -78.300949096679631, -6.375476837158203 ], [ -78.301605224609318, -6.375146865844727 ], [ -78.302589416503849, -6.374192237853947 ], [ -78.303291320800781, -6.373032093048039 ], [ -78.304214477538949, -6.36815881729126 ], [ -78.304534912109375, -6.367198944091797 ], [ -78.305229187011662, -6.366337776184082 ], [ -78.3060302734375, -6.365907192230168 ], [ -78.307685852050781, -6.364459991455021 ], [ -78.311439514160099, -6.362178802490178 ], [ -78.314140319824219, -6.359839916229248 ], [ -78.316001892089844, -6.358671188354435 ], [ -78.317962646484375, -6.356880187988281 ], [ -78.319145202636719, -6.356186866760197 ], [ -78.321044921875, -6.355992794036808 ], [ -78.322647094726562, -6.357755184173584 ], [ -78.323295593261719, -6.358091831207275 ], [ -78.324577331542969, -6.35810995101923 ], [ -78.325286865234318, -6.35752010345459 ], [ -78.329811096191406, -6.352722167968693 ], [ -78.332138061523381, -6.351894855499154 ], [ -78.332824707031136, -6.351284027099553 ], [ -78.333007812499943, -6.350389003753605 ], [ -78.332565307617188, -6.348604202270508 ], [ -78.332519531249943, -6.346563816070557 ], [ -78.334091186523438, -6.343256950378361 ], [ -78.334793090820256, -6.340976238250676 ], [ -78.334571838378906, -6.340282917022705 ], [ -78.332366943359375, -6.337252140045109 ], [ -78.331977844238281, -6.33611011505127 ], [ -78.331771850585881, -6.334096908569222 ], [ -78.332038879394474, -6.332460880279484 ], [ -78.332733154296875, -6.330855846404972 ], [ -78.335365295410099, -6.327002048492432 ], [ -78.336174011230469, -6.32523584365839 ], [ -78.336608886718693, -6.322803974151554 ], [ -78.336982727050781, -6.316749095916691 ], [ -78.337600708007812, -6.316292762756348 ], [ -78.33868408203125, -6.31640720367426 ], [ -78.339820861816406, -6.316028118133545 ], [ -78.340499877929688, -6.315590858459473 ], [ -78.341178894042969, -6.314717769622746 ], [ -78.342430114746037, -6.312360763549805 ], [ -78.3426513671875, -6.310174942016602 ], [ -78.343246459960938, -6.308348178863469 ], [ -78.345550537109375, -6.306562900543213 ], [ -78.347763061523381, -6.304108142852726 ], [ -78.348075866699162, -6.300440788268986 ], [ -78.348922729492131, -6.298313140869141 ], [ -78.349708557128906, -6.297677040100098 ], [ -78.351043701171875, -6.297115802764893 ], [ -78.354690551757812, -6.29716587066639 ], [ -78.356056213378906, -6.296641826629582 ], [ -78.357147216796875, -6.295812129974308 ], [ -78.358848571777287, -6.292388916015625 ], [ -78.358795166015625, -6.291088104248047 ], [ -78.358131408691406, -6.287841796875 ], [ -78.357978820800724, -6.285359859466553 ], [ -78.358108520507812, -6.28298282623291 ], [ -78.358711242675781, -6.280948162078857 ], [ -78.359329223632756, -6.27993106842041 ], [ -78.360183715820256, -6.2793931961059 ], [ -78.361526489257756, -6.279636859893799 ], [ -78.363983154296818, -6.281060218811035 ], [ -78.364715576171875, -6.280900001525879 ], [ -78.365531921386662, -6.280155181884709 ], [ -78.366195678710881, -6.278748035430795 ], [ -78.367408752441349, -6.273738861083984 ], [ -78.368782043457031, -6.270135879516602 ], [ -78.368988037109375, -6.268021106719971 ], [ -78.368942260742131, -6.267489910125732 ], [ -78.368728637695312, -6.267291069030762 ], [ -78.368942260742131, -6.260292053222656 ], [ -78.370964050292912, -6.255366802215576 ], [ -78.371421813964787, -6.252744197845459 ], [ -78.371299743652344, -6.250730991363469 ], [ -78.3701171875, -6.248859882354736 ], [ -78.369895935058537, -6.247969150543156 ], [ -78.369941711425781, -6.247055053710881 ], [ -78.370681762695256, -6.245668888091984 ], [ -78.370849609374943, -6.244685173034668 ], [ -78.370735168457031, -6.243483066558781 ], [ -78.370094299316349, -6.241652965545654 ], [ -78.370040893554688, -6.240897178649902 ], [ -78.370292663574162, -6.23994588851923 ], [ -78.371467590332031, -6.238889217376652 ], [ -78.374076843261719, -6.238051891326904 ], [ -78.375259399414006, -6.23734807968134 ], [ -78.377822875976506, -6.234741210937443 ], [ -78.379539489746037, -6.23201322555542 ], [ -78.380630493164062, -6.231183052062988 ], [ -78.381546020507756, -6.231104850768986 ], [ -78.382980346679631, -6.231681823730469 ], [ -78.384986877441349, -6.231579780578613 ], [ -78.387397766113281, -6.230716228485107 ], [ -78.392318725585881, -6.228236198425236 ], [ -78.393798828125, -6.227867126464844 ], [ -78.396697998046818, -6.228343009948674 ], [ -78.398239135742131, -6.229135990142822 ], [ -78.399574279785099, -6.228886127471924 ], [ -78.400817871093693, -6.227647781372013 ], [ -78.401641845703125, -6.225800037383976 ], [ -78.402137756347599, -6.219946861267033 ], [ -78.403594970703125, -6.21772480010975 ], [ -78.404075622558594, -6.217296123504582 ], [ -78.404441833496037, -6.217267036437988 ], [ -78.405540466308594, -6.21592378616333 ], [ -78.40771484375, -6.214255809783822 ], [ -78.409439086914062, -6.214009761810246 ], [ -78.411628723144531, -6.214663982391357 ], [ -78.413444519042969, -6.214753150939885 ], [ -78.415489196777287, -6.212915897369385 ], [ -78.416122436523438, -6.211801052093449 ], [ -78.416763305664062, -6.209495067596436 ], [ -78.418624877929631, -6.206548213958683 ], [ -78.418968200683594, -6.205397129058838 ], [ -78.418907165527287, -6.204024791717472 ], [ -78.417510986328011, -6.202698230743408 ], [ -78.416725158691349, -6.200336933135929 ], [ -78.416610717773438, -6.195470809936523 ], [ -78.417251586914062, -6.191475868225041 ], [ -78.419380187988281, -6.189077854156494 ], [ -78.42047119140625, -6.188185214996281 ], [ -78.424835205078068, -6.185321807861328 ], [ -78.425422668456974, -6.184414863586369 ], [ -78.426765441894531, -6.181001186370793 ], [ -78.428009033203125, -6.179900169372502 ], [ -78.430023193359375, -6.178641796112061 ], [ -78.431938171386719, -6.176191806793213 ], [ -78.433044433593693, -6.175560951232853 ], [ -78.435737609863281, -6.175064086914006 ], [ -78.436965942382699, -6.174108982086182 ], [ -78.437339782714787, -6.173176765441838 ], [ -78.437652587890625, -6.16821718215931 ], [ -78.438339233398438, -6.165728092193604 ], [ -78.440498352050781, -6.163610935211182 ], [ -78.442512512207031, -6.162017822265625 ], [ -78.448013305664006, -6.159154891967773 ], [ -78.451324462890625, -6.155858039855957 ], [ -78.452720642089844, -6.154827117919865 ], [ -78.456581115722599, -6.15090894699091 ], [ -78.457695007324219, -6.150270938873291 ], [ -78.459434509277344, -6.149717807769775 ], [ -78.460983276367131, -6.148742198944092 ], [ -78.464004516601562, -6.145806789398137 ], [ -78.465187072753849, -6.144406795501709 ], [ -78.465721130371094, -6.143338203430062 ], [ -78.465957641601449, -6.138297080993596 ], [ -78.466575622558594, -6.136270999908447 ], [ -78.467201232910156, -6.135354042053223 ], [ -78.468048095703068, -6.135069847106877 ], [ -78.469863891601506, -6.135698795318604 ], [ -78.472785949707031, -6.135571002960148 ], [ -78.473739624023438, -6.135247230529785 ], [ -78.474960327148438, -6.134140014648381 ], [ -78.476135253906193, -6.133247852325439 ], [ -78.477394104003849, -6.131793975830078 ], [ -78.478675842285156, -6.129349231719971 ], [ -78.479103088378849, -6.127944946289006 ], [ -78.479072570800781, -6.124731063842717 ], [ -78.478141784667912, -6.121568202972412 ], [ -78.47735595703125, -6.116758823394719 ], [ -78.478134155273381, -6.114127159118652 ], [ -78.479743957519531, -6.111561775207463 ], [ -78.481010437011662, -6.109990119934082 ], [ -78.482017517089844, -6.109199047088623 ], [ -78.485008239746037, -6.108828067779484 ], [ -78.487289428710881, -6.107917785644474 ], [ -78.489448547363281, -6.105801105499268 ], [ -78.490844726562443, -6.104724884033203 ], [ -78.491523742675781, -6.104603767394963 ], [ -78.493003845214844, -6.104774951934758 ], [ -78.495460510253906, -6.104452133178597 ], [ -78.496696472167969, -6.104162216186467 ], [ -78.497665405273438, -6.103453159332275 ], [ -78.498321533203125, -6.102573871612492 ], [ -78.498588562011719, -6.101677894592285 ], [ -78.497627258300781, -6.099923133850041 ], [ -78.497329711914006, -6.098659992217961 ], [ -78.497421264648381, -6.094019889831543 ], [ -78.498023986816406, -6.091847896575871 ], [ -78.499359130859375, -6.090151786804142 ], [ -78.501205444335938, -6.088802814483643 ], [ -78.507415771484318, -6.086478233337402 ], [ -78.508514404296875, -6.085322856903076 ], [ -78.509231567382756, -6.083161830902043 ], [ -78.509826660156136, -6.08024883270258 ], [ -78.509658813476562, -6.078129768371582 ], [ -78.510887145996094, -6.076675891876221 ], [ -78.515892028808594, -6.071965217590332 ], [ -78.518302917480412, -6.071988105773869 ], [ -78.520713806152344, -6.072819232940617 ], [ -78.52398681640625, -6.073838233947754 ], [ -78.524932861328125, -6.073859214782658 ], [ -78.525688171386719, -6.073592185974121 ], [ -78.527259826660099, -6.072120189666748 ], [ -78.527801513671875, -6.07213306427002 ], [ -78.529014587402344, -6.071545124053955 ], [ -78.530632019042969, -6.071364879608097 ], [ -78.531791687011719, -6.071627140045109 ], [ -78.535545349121037, -6.073129177093449 ], [ -78.540336608886662, -6.07386589050293 ], [ -78.544387817382812, -6.072926998138428 ], [ -78.546531677246037, -6.072796821594238 ], [ -78.550224304199219, -6.071525096893311 ], [ -78.555198669433537, -6.071428775787354 ], [ -78.557022094726506, -6.071903228759766 ], [ -78.558601379394531, -6.072652816772461 ], [ -78.5616455078125, -6.075729846954346 ], [ -78.56280517578125, -6.076598167419377 ], [ -78.566909790039062, -6.077925205230656 ], [ -78.569808959960881, -6.07859277725214 ], [ -78.572212219238281, -6.078378200530949 ], [ -78.575798034667912, -6.078958988189697 ], [ -78.580093383789006, -6.07882022857666 ], [ -78.583572387695312, -6.079151153564453 ], [ -78.586723327636719, -6.077983856201115 ], [ -78.589363098144418, -6.076132774352971 ], [ -78.598060607910156, -6.067498207092228 ], [ -78.601577758789062, -6.06553316116333 ], [ -78.602104187011719, -6.064283847808781 ], [ -78.602081298828125, -6.06333589553833 ], [ -78.602439880371094, -6.06294584274292 ], [ -78.602561950683594, -6.060389041900578 ], [ -78.603195190429688, -6.059193134307804 ], [ -78.60491943359375, -6.057899951934814 ], [ -78.607177734374943, -6.057560920715332 ], [ -78.608291625976562, -6.057065963745117 ], [ -78.609107971191406, -6.056364059448185 ], [ -78.609596252441406, -6.055259227752629 ], [ -78.609542846679688, -6.048532962799072 ], [ -78.609779357910156, -6.046521186828556 ], [ -78.609207153320312, -6.043750762939339 ], [ -78.609138488769531, -6.041468143463135 ], [ -78.609405517578125, -6.039053916931039 ], [ -78.610610961914006, -6.036176204681396 ], [ -78.610862731933594, -6.034747123718205 ], [ -78.610687255859375, -6.028546810150146 ], [ -78.610336303710881, -6.027247905731201 ], [ -78.610458374023438, -6.0240159034729 ], [ -78.611137390136719, -6.020599842071533 ], [ -78.611259460449219, -6.018043041229248 ], [ -78.611961364746037, -6.016294956207275 ], [ -78.613380432128849, -6.015048027038574 ], [ -78.615005493164006, -6.014091014862061 ], [ -78.620063781738224, -6.011817932128906 ], [ -78.622001647949219, -6.010017871856689 ], [ -78.624298095703125, -6.00680685043335 ], [ -78.626716613769474, -6.00257396697998 ], [ -78.627944946289062, -5.99852180480957 ], [ -78.628135681152344, -5.996379852294922 ], [ -78.62774658203125, -5.994884014129582 ], [ -78.627723693847656, -5.99353981018055 ], [ -78.628334045410099, -5.991349220275879 ], [ -78.628944396972656, -5.990316867828369 ], [ -78.63031005859375, -5.989467144012394 ], [ -78.635772705078068, -5.988825798034668 ], [ -78.636466979980412, -5.988405227661133 ], [ -78.636985778808594, -5.987726211547852 ], [ -78.637931823730469, -5.983856201171818 ], [ -78.639915466308594, -5.972845077514535 ], [ -78.640617370605469, -5.971145153045597 ], [ -78.64300537109375, -5.9689621925354 ], [ -78.643608093261662, -5.967928886413574 ], [ -78.64501953125, -5.966301918029728 ], [ -78.649429321289006, -5.963726043701115 ], [ -78.652664184570256, -5.963075160980168 ], [ -78.654052734375, -5.962569236755257 ], [ -78.656959533691349, -5.960175037384033 ], [ -78.658935546875, -5.957787036895752 ], [ -78.660850524902344, -5.953648090362549 ], [ -78.6602783203125, -5.948804855346623 ], [ -78.660438537597656, -5.947061061859074 ], [ -78.660911560058594, -5.945089817047062 ], [ -78.6622314453125, -5.942290782928467 ], [ -78.663726806640568, -5.940221786498967 ], [ -78.664237976074219, -5.938685894012451 ], [ -78.666465759277344, -5.934083938598633 ], [ -78.668678283691349, -5.931062221526986 ], [ -78.670181274414062, -5.926890850067082 ], [ -78.67120361328125, -5.92133188247675 ], [ -78.671966552734375, -5.919033050537109 ], [ -78.672927856445312, -5.917411804199219 ], [ -78.674392700195312, -5.915839195251351 ], [ -78.681076049804631, -5.911308765411377 ], [ -78.683151245117188, -5.909426212310734 ], [ -78.684394836425781, -5.906879901885929 ], [ -78.684806823730412, -5.903944969177246 ], [ -78.685455322265625, -5.901891231536865 ], [ -78.686508178710881, -5.899292945861703 ], [ -78.688613891601506, -5.896173000335693 ], [ -78.690422058105412, -5.894174098968506 ], [ -78.695724487304688, -5.889218807220459 ], [ -78.696220397949219, -5.888278007507211 ], [ -78.696388244628906, -5.885460853576603 ], [ -78.695762634277287, -5.881879806518555 ], [ -78.694770812988281, -5.879087924957219 ], [ -78.692733764648381, -5.875914096832275 ], [ -78.6925048828125, -5.874175071716309 ], [ -78.693298339843693, -5.870917797088566 ], [ -78.694023132324219, -5.869784832000676 ], [ -78.695953369140568, -5.867541790008545 ], [ -78.696990966796875, -5.864772796630859 ], [ -78.697113037109318, -5.862217903137207 ], [ -78.696548461914006, -5.859034061431885 ], [ -78.696502685546875, -5.857138156890869 ], [ -78.696823120117131, -5.855701923370361 ], [ -78.698577880859375, -5.850897789001465 ], [ -78.698661804199219, -5.849441051483097 ], [ -78.698364257812443, -5.84552621841425 ], [ -78.698822021484318, -5.843005180358887 ], [ -78.700561523437386, -5.839200973510685 ], [ -78.702178955078068, -5.837232112884521 ], [ -78.704467773437443, -5.833415031433049 ], [ -78.706687927246094, -5.831278800964355 ], [ -78.709045410156193, -5.830235004424935 ], [ -78.709663391113281, -5.829770088195687 ], [ -78.710472106933537, -5.828527927398682 ], [ -78.711174011230469, -5.826475143432617 ], [ -78.710693359375, -5.820690155029297 ], [ -78.709815979003906, -5.816770076751709 ], [ -78.707695007324162, -5.81165599822998 ], [ -78.704505920410156, -5.805438041687012 ], [ -78.704345703124943, -5.802605152130127 ], [ -78.703987121581974, -5.801308155059758 ], [ -78.703987121581974, -5.796994209289551 ], [ -78.703659057617188, -5.794602870941162 ], [ -78.702140808105469, -5.78901481628418 ], [ -78.700820922851506, -5.786513805389347 ], [ -78.700622558593693, -5.78559398651123 ], [ -78.698730468749943, -5.782662868499699 ], [ -78.69525146484375, -5.77909421920765 ], [ -78.693794250488281, -5.776502132415771 ], [ -78.692810058593693, -5.77396297454834 ], [ -78.692420959472599, -5.771617889404297 ], [ -78.692657470703125, -5.765937805175724 ], [ -78.691352844238281, -5.760169982910156 ], [ -78.691444396972656, -5.758822917938232 ], [ -78.691986083984375, -5.756600856780949 ], [ -78.691871643066349, -5.755127906799316 ], [ -78.69197845458973, -5.754415035247746 ], [ -78.691696166992188, -5.753107070922795 ], [ -78.690673828125, -5.750028133392277 ], [ -78.689407348632812, -5.748311996459961 ], [ -78.686729431152287, -5.746044158935547 ], [ -78.68426513671875, -5.744659900665226 ], [ -78.680511474609318, -5.743176937103215 ], [ -78.679168701171818, -5.743185997009277 ], [ -78.674499511718693, -5.741916179656982 ], [ -78.669975280761719, -5.741293907165471 ], [ -78.668449401855469, -5.740437030792236 ], [ -78.663459777831974, -5.738420009612923 ], [ -78.658119201660099, -5.73710107803339 ], [ -78.655632019042912, -5.736059188842773 ], [ -78.653846740722656, -5.734628200531006 ], [ -78.652244567871094, -5.732301235198918 ], [ -78.651580810546875, -5.730685234069824 ], [ -78.651031494140568, -5.727628231048527 ], [ -78.650939941406193, -5.725193977355957 ], [ -78.651344299316349, -5.722970008850098 ], [ -78.652259826660156, -5.721004962921086 ], [ -78.653991699218693, -5.719295978546086 ], [ -78.655746459960938, -5.718618869781494 ], [ -78.657730102539006, -5.718208789825439 ], [ -78.663894653320312, -5.718340873718262 ], [ -78.667984008789062, -5.717564105987549 ], [ -78.672035217285099, -5.715407848358154 ], [ -78.67425537109375, -5.713922023773193 ], [ -78.680305480957031, -5.707807064056283 ], [ -78.68115234375, -5.707386970519963 ], [ -78.682624816894474, -5.70728683471674 ], [ -78.683876037597656, -5.706540107726994 ], [ -78.685096740722599, -5.704769134521484 ], [ -78.685951232910099, -5.701089859008789 ], [ -78.685935974121037, -5.698544025421143 ], [ -78.685226440429688, -5.696508884429932 ], [ -78.683097839355412, -5.694265842437687 ], [ -78.681266784667912, -5.692896842956543 ], [ -78.670272827148438, -5.68605899810791 ], [ -78.668228149414006, -5.683670997619629 ], [ -78.667434692382756, -5.68300819396967 ], [ -78.664146423339844, -5.682271003723145 ], [ -78.661933898925724, -5.681300163268986 ], [ -78.660194396972599, -5.681104183196908 ], [ -78.656501770019418, -5.678400993347168 ], [ -78.650703430175781, -5.675303936004582 ], [ -78.650146484375, -5.674521923065186 ], [ -78.648353576660156, -5.669875144958439 ], [ -78.647483825683594, -5.668336868286019 ], [ -78.647529602050724, -5.666494846343994 ], [ -78.648277282714787, -5.66063117980957 ], [ -78.648139953613281, -5.659459114074707 ], [ -78.646537780761719, -5.657239913940373 ], [ -78.641418457031193, -5.651600837707463 ], [ -78.6383056640625, -5.646401882171631 ], [ -78.637054443359375, -5.645606994628906 ], [ -78.631690979003849, -5.644739151000977 ], [ -78.628440856933537, -5.643854141235352 ], [ -78.624580383300781, -5.64141321182251 ], [ -78.622810363769474, -5.639548778533879 ], [ -78.622436523437443, -5.638566970825138 ], [ -78.622138977050724, -5.635471820831242 ], [ -78.620491027832031, -5.631787776946965 ], [ -78.619705200195312, -5.62851619720459 ], [ -78.6182861328125, -5.625617027282658 ], [ -78.617057800292969, -5.621607780456486 ], [ -78.614570617675781, -5.618822097778263 ], [ -78.612297058105469, -5.616887092590275 ], [ -78.610382080078125, -5.615664005279541 ], [ -78.608406066894474, -5.613443851470947 ], [ -78.607376098632756, -5.611112117767334 ], [ -78.605941772460881, -5.610129833221436 ], [ -78.604835510253906, -5.608761787414551 ], [ -78.604690551757756, -5.607977867126408 ], [ -78.604850769042969, -5.607020854949894 ], [ -78.606376647949219, -5.604979038238525 ], [ -78.607704162597656, -5.601458072662354 ], [ -78.608886718749943, -5.599420070648193 ], [ -78.608924865722656, -5.59836483001709 ], [ -78.608230590820256, -5.595324993133545 ], [ -78.607315063476562, -5.593832015991154 ], [ -78.606323242187443, -5.592726230621338 ], [ -78.602134704589787, -5.589829921722355 ], [ -78.600433349609375, -5.58834791183466 ], [ -78.599754333496037, -5.587368011474609 ], [ -78.598106384277287, -5.583955764770508 ], [ -78.595504760742188, -5.581833839416504 ], [ -78.593833923339787, -5.57971286773676 ], [ -78.593032836914062, -5.577607154846135 ], [ -78.591522216796818, -5.570932865142822 ], [ -78.590835571289062, -5.568751811981201 ], [ -78.590362548828125, -5.567797183990422 ], [ -78.589355468749943, -5.566711902618351 ], [ -78.587203979492188, -5.565144062042236 ], [ -78.586128234863281, -5.564013957977238 ], [ -78.585357666015511, -5.561029911041203 ], [ -78.585037231445256, -5.555695056915283 ], [ -78.584327697753906, -5.554146766662541 ], [ -78.582168579101562, -5.550746917724609 ], [ -78.580383300781193, -5.548933029174748 ], [ -78.577720642089787, -5.54713678359974 ], [ -78.574653625488224, -5.546106815338135 ], [ -78.5706787109375, -5.545281887054387 ], [ -78.5694580078125, -5.544818878173828 ], [ -78.568489074707031, -5.543679237365723 ], [ -78.567840576171875, -5.541903972625676 ], [ -78.566833496093693, -5.540257930755615 ], [ -78.565597534179631, -5.539317131042424 ], [ -78.563835144042969, -5.538694858551025 ], [ -78.560623168945256, -5.538099765777588 ], [ -78.557525634765625, -5.538272857665959 ], [ -78.555740356445312, -5.538852214813176 ], [ -78.554153442382756, -5.538565158843994 ], [ -78.55218505859375, -5.536914825439453 ], [ -78.551528930664062, -5.535591125488281 ], [ -78.549865722656193, -5.533659934997559 ], [ -78.549491882324162, -5.53265285491932 ], [ -78.549560546874943, -5.532090187072754 ], [ -78.550125122070312, -5.531554222106934 ], [ -78.550468444824219, -5.531417846679631 ], [ -78.551017761230412, -5.531747817993107 ], [ -78.551322937011719, -5.531475067138672 ], [ -78.552375793457031, -5.528961181640625 ], [ -78.551475524902287, -5.525208950042725 ], [ -78.551002502441349, -5.524470806121826 ], [ -78.550788879394531, -5.522576808929387 ], [ -78.550422668456974, -5.521467208862248 ], [ -78.550285339355469, -5.51885986328125 ], [ -78.550048828124943, -5.517983913421631 ], [ -78.550987243652344, -5.513824939727783 ], [ -78.551742553710938, -5.512529850006104 ], [ -78.552749633789062, -5.512251853942871 ], [ -78.555290222167912, -5.50980901718134 ], [ -78.557456970214844, -5.508712768554631 ], [ -78.559494018554631, -5.506793975830078 ], [ -78.560585021972656, -5.505461215972787 ], [ -78.561195373535099, -5.503092765808105 ], [ -78.561431884765625, -5.499904155731201 ], [ -78.561988830566349, -5.498212814331055 ], [ -78.563095092773438, -5.496383190155029 ], [ -78.562576293945312, -5.494379043579045 ], [ -78.562080383300724, -5.493604183196965 ], [ -78.560050964355412, -5.491496086120605 ], [ -78.559715270996094, -5.489729881286564 ], [ -78.558395385742188, -5.487053871154785 ], [ -78.552841186523438, -5.480063915252686 ], [ -78.551277160644474, -5.478854179382267 ], [ -78.547920227050781, -5.475197792053223 ], [ -78.546554565429688, -5.474329948425293 ], [ -78.545326232910156, -5.473010063171387 ], [ -78.544143676757756, -5.472177982330209 ], [ -78.542747497558594, -5.470517158508244 ], [ -78.537628173828125, -5.466536998748779 ], [ -78.535995483398438, -5.464488983154183 ], [ -78.534492492675724, -5.463494777679443 ], [ -78.532699584960881, -5.463342189788818 ], [ -78.529296875, -5.462215900421143 ], [ -78.528083801269531, -5.461428165435791 ], [ -78.526306152343693, -5.459624767303467 ], [ -78.523597717285156, -5.457508087158146 ], [ -78.519966125488281, -5.455942153930607 ], [ -78.519149780273381, -5.455367088317871 ], [ -78.516563415527287, -5.451889038085881 ], [ -78.513175964355469, -5.448532104492131 ], [ -78.511352539062386, -5.445724010467529 ], [ -78.51025390625, -5.444800853729191 ], [ -78.508964538574162, -5.44274997711176 ], [ -78.508186340331974, -5.441742897033691 ], [ -78.507766723632812, -5.441628932952824 ], [ -78.506797790527344, -5.440190792083683 ], [ -78.504547119140568, -5.438893795013428 ], [ -78.50146484375, -5.436021804809457 ], [ -78.497116088867131, -5.434168815612793 ], [ -78.496231079101562, -5.431807994842529 ], [ -78.495201110839787, -5.426034927368164 ], [ -78.495033264160099, -5.421449184417725 ], [ -78.495941162109375, -5.416107177734318 ], [ -78.497055053710938, -5.41212797164917 ], [ -78.498092651367131, -5.410651206970158 ], [ -78.499176025390625, -5.409694194793701 ], [ -78.500320434570312, -5.4091281890868 ], [ -78.502540588378906, -5.407074928283635 ], [ -78.505027770996037, -5.403926849365178 ], [ -78.5074462890625, -5.402152061462402 ], [ -78.5084228515625, -5.400827884674015 ], [ -78.508781433105469, -5.399787902832031 ], [ -78.511222839355412, -5.397707939147836 ], [ -78.511886596679688, -5.396852970123291 ], [ -78.514358520507812, -5.392361164093018 ], [ -78.515594482421875, -5.391135215759277 ], [ -78.516716003417969, -5.390531063079834 ], [ -78.517829895019474, -5.389190196990967 ], [ -78.519760131835938, -5.384943962097168 ], [ -78.524459838867188, -5.379732131957951 ], [ -78.524887084960881, -5.378818035125676 ], [ -78.525390625, -5.37668514251709 ], [ -78.526885986328068, -5.373858928680363 ], [ -78.528144836425781, -5.370745182037354 ], [ -78.529541015624943, -5.368706226348877 ], [ -78.532218933105412, -5.365711212158203 ], [ -78.533401489257812, -5.361487865447998 ], [ -78.535507202148438, -5.35762882232666 ], [ -78.536941528320312, -5.356482982635498 ], [ -78.538520812988224, -5.356021881103459 ], [ -78.543632507324219, -5.35612678527832 ], [ -78.545471191406193, -5.354788780212346 ], [ -78.547721862792969, -5.354379177093506 ], [ -78.548873901367188, -5.353668212890568 ], [ -78.549270629882812, -5.353170871734619 ], [ -78.550636291503849, -5.350065231323185 ], [ -78.552658081054688, -5.347822189331055 ], [ -78.552986145019531, -5.34594202041626 ], [ -78.554328918456974, -5.342928886413574 ], [ -78.554611206054688, -5.341481208801213 ], [ -78.554985046386719, -5.340750217437687 ], [ -78.557708740234375, -5.33817720413208 ], [ -78.558662414550781, -5.336970806121712 ], [ -78.56075286865223, -5.335505008697453 ], [ -78.561607360839787, -5.33370304107666 ], [ -78.562774658203125, -5.332180023193303 ], [ -78.563964843749943, -5.331045150756836 ], [ -78.565116882324162, -5.330478191375676 ], [ -78.566001892089844, -5.329678058624268 ], [ -78.567146301269531, -5.327070236206055 ], [ -78.568183898925724, -5.325703144073486 ], [ -78.571739196777344, -5.321988105773926 ], [ -78.573348999023438, -5.320641040802002 ], [ -78.573417663574162, -5.320351123809814 ], [ -78.575317382812443, -5.318373203277588 ], [ -78.576187133789006, -5.316968917846623 ], [ -78.579025268554688, -5.314533233642578 ], [ -78.581138610839787, -5.310999870300236 ], [ -78.582771301269474, -5.309400081634521 ], [ -78.584304809570256, -5.308417797088623 ], [ -78.585716247558537, -5.306982040405217 ], [ -78.586830139160156, -5.304681777954045 ], [ -78.587814331054631, -5.303239822387638 ], [ -78.592208862304631, -5.298717975616398 ], [ -78.593475341796875, -5.297150135040283 ], [ -78.595718383789006, -5.292938232421875 ], [ -78.598518371581918, -5.288696765899658 ], [ -78.600837707519531, -5.283816814422551 ], [ -78.603752136230412, -5.279483795166016 ], [ -78.605369567871037, -5.277874946594181 ], [ -78.607559204101506, -5.276372909545842 ], [ -78.608642578125, -5.275897026061955 ], [ -78.610771179199219, -5.275389194488525 ], [ -78.612350463867188, -5.27548885345459 ], [ -78.615318298339844, -5.276372909545842 ], [ -78.61688232421875, -5.277132034301701 ], [ -78.621871948242131, -5.284840106964111 ], [ -78.625953674316349, -5.293175220489502 ], [ -78.627449035644531, -5.295487880706787 ], [ -78.628814697265568, -5.296854019164982 ], [ -78.629974365234318, -5.297586917877197 ], [ -78.63238525390625, -5.298277854919434 ], [ -78.634201049804688, -5.298283100128174 ], [ -78.636840820312443, -5.297616958618107 ], [ -78.640190124511662, -5.295918941497803 ], [ -78.641380310058594, -5.29507398605341 ], [ -78.643989562988224, -5.29237508773798 ], [ -78.646469116210881, -5.289425849914551 ], [ -78.647994995117131, -5.286925792694092 ], [ -78.652717590332031, -5.276255130767822 ], [ -78.655403137207031, -5.273503780364877 ], [ -78.658332824707031, -5.271155834197941 ], [ -78.660125732421761, -5.270205974578801 ], [ -78.662071228027344, -5.269862174987793 ], [ -78.666007995605412, -5.270134925842228 ], [ -78.668426513671875, -5.27062797546381 ], [ -78.677146911621094, -5.271568775176945 ], [ -78.678962707519531, -5.271377086639404 ], [ -78.680564880371094, -5.270699977874756 ], [ -78.683479309081974, -5.267666816711369 ], [ -78.684310913085938, -5.266352176666203 ], [ -78.684761047363281, -5.264852046966553 ], [ -78.6849365234375, -5.262294769287053 ], [ -78.686431884765568, -5.257801055908146 ], [ -78.687667846679631, -5.255041122436523 ], [ -78.689880371093636, -5.251036167144775 ], [ -78.691169738769531, -5.24466419219965 ], [ -78.692436218261662, -5.24243688583374 ], [ -78.694824218749943, -5.239377975463867 ], [ -78.695350646972656, -5.238311767578125 ], [ -78.695419311523438, -5.236476898193359 ], [ -78.695091247558537, -5.235342025756779 ], [ -78.694755554199219, -5.231768131256104 ], [ -78.695396423339787, -5.22661113739008 ], [ -78.695999145507812, -5.22496318817133 ], [ -78.697860717773381, -5.221576213836556 ], [ -78.698532104492131, -5.219875812530461 ], [ -78.69879150390625, -5.217896938323918 ], [ -78.698799133300781, -5.21391582489008 ], [ -78.701492309570256, -5.209311962127686 ], [ -78.702781677246094, -5.206281185150146 ], [ -78.703178405761719, -5.202911853790283 ], [ -78.703262329101562, -5.197584152221623 ], [ -78.704261779785099, -5.192730903625488 ], [ -78.703796386718693, -5.190865039825383 ], [ -78.702102661132812, -5.187379837036076 ], [ -78.701828002929688, -5.186244964599609 ], [ -78.702285766601562, -5.184165954589844 ], [ -78.703483581542912, -5.181594848632756 ], [ -78.703109741210881, -5.180377960205021 ], [ -78.703109741210881, -5.179549217224121 ], [ -78.704574584960938, -5.174139976501408 ], [ -78.704948425292855, -5.171973228454476 ], [ -78.704925537109318, -5.164938926696777 ], [ -78.705337524414062, -5.162500858306828 ], [ -78.704727172851506, -5.158322811126709 ], [ -78.70526123046875, -5.152099132537842 ], [ -78.704063415527287, -5.145688056945744 ], [ -78.703941345214844, -5.143847942352238 ], [ -78.7042236328125, -5.140369892120361 ], [ -78.70428466796875, -5.134943962097111 ], [ -78.705543518066406, -5.127056121826115 ], [ -78.704818725585881, -5.12178897857666 ], [ -78.703651428222656, -5.11918401718134 ], [ -78.703147888183594, -5.117228031158447 ], [ -78.702911376953068, -5.111902236938477 ], [ -78.702392578125, -5.109478950500488 ], [ -78.701934814453125, -5.108280181884709 ], [ -78.700393676757812, -5.105877876281738 ], [ -78.697685241699162, -5.102509021759033 ], [ -78.696388244628906, -5.1000781059264 ], [ -78.695983886718636, -5.098762035369873 ], [ -78.695823669433594, -5.094367980956918 ], [ -78.694747924804688, -5.092028141021672 ], [ -78.692703247070312, -5.08871603012085 ], [ -78.689041137695312, -5.08473014831543 ], [ -78.681945800781193, -5.077962875366211 ], [ -78.678535461425781, -5.073629856109562 ], [ -78.674072265625, -5.067119121551514 ], [ -78.671363830566349, -5.063893795013428 ], [ -78.668518066406136, -5.061174869537354 ], [ -78.664321899413949, -5.056005954742432 ], [ -78.662971496581974, -5.054643154144287 ], [ -78.660186767578068, -5.052391052246037 ], [ -78.653083801269531, -5.047694206237736 ], [ -78.64910888671875, -5.045808792114258 ], [ -78.645454406738281, -5.043725967407227 ], [ -78.642936706542912, -5.042703151702824 ], [ -78.638870239257812, -5.041676998138428 ], [ -78.632308959960938, -5.037840843200684 ], [ -78.629974365234318, -5.036139011383 ], [ -78.627761840820256, -5.033839225769043 ], [ -78.625778198242131, -5.031188011169377 ], [ -78.625343322753906, -5.030080795288086 ], [ -78.625038146972656, -5.027434825897217 ], [ -78.624519348144474, -5.025299072265568 ], [ -78.622726440429631, -5.021481990814209 ], [ -78.621932983398438, -5.020257949829102 ], [ -78.62178802490223, -5.018686771392765 ], [ -78.622520446777287, -5.016271114349308 ], [ -78.623947143554631, -5.0138258934021 ], [ -78.625373840332031, -5.012526988983097 ], [ -78.627151489257812, -5.011416912078857 ], [ -78.629470825195312, -5.009253978729191 ], [ -78.630538940429631, -5.008600234985352 ], [ -78.631546020507812, -5.008278846740723 ], [ -78.634788513183594, -5.008132934570256 ], [ -78.637413024902287, -5.008326053619385 ], [ -78.647262573242188, -5.010309219360352 ], [ -78.650650024414006, -5.01085376739502 ], [ -78.654792785644531, -5.011146068572998 ], [ -78.657730102539006, -5.011002063751164 ], [ -78.659500122070312, -5.010450839996338 ], [ -78.661071777343693, -5.009675979614258 ], [ -78.6619873046875, -5.008918762206918 ], [ -78.662445068359375, -5.008104801177922 ], [ -78.662696838378849, -5.006840229034424 ], [ -78.661972045898438, -5.000370025634766 ], [ -78.661064147949162, -4.99619722366333 ], [ -78.655082702636719, -4.990377902984562 ], [ -78.654335021972656, -4.989218235015812 ], [ -78.654273986816349, -4.985065937042179 ], [ -78.654579162597599, -4.981859207153263 ], [ -78.656593322753849, -4.975987911224365 ], [ -78.657684326171875, -4.970809936523438 ], [ -78.657806396484318, -4.964371204376164 ], [ -78.657371520996094, -4.947102069854679 ], [ -78.656295776367131, -4.940742969512826 ], [ -78.655143737792912, -4.937490940093994 ], [ -78.654464721679631, -4.934577941894531 ], [ -78.653617858886662, -4.927033901214486 ], [ -78.651588439941406, -4.919624805450439 ], [ -78.650108337402287, -4.911705017089787 ], [ -78.648338317871094, -4.90646314620966 ], [ -78.647911071777287, -4.903972148895207 ], [ -78.646682739257812, -4.891130924224854 ], [ -78.645828247070312, -4.888020038604736 ], [ -78.646064758300781, -4.866740226745605 ], [ -78.645896911621037, -4.862605094909668 ], [ -78.645233154296818, -4.860126018524113 ], [ -78.644599914550781, -4.858920097351074 ], [ -78.637321472167912, -4.85126876831049 ], [ -78.636550903320256, -4.849843978881836 ], [ -78.636070251464787, -4.84830379486084 ], [ -78.6358642578125, -4.842788219451904 ], [ -78.636032104492188, -4.836565971374398 ], [ -78.636886596679688, -4.832274913787785 ], [ -78.637138366699162, -4.826006889343262 ], [ -78.637435913085938, -4.823513984680119 ], [ -78.638832092285099, -4.819443225860596 ], [ -78.643531799316293, -4.809929847717285 ], [ -78.6439208984375, -4.807415962219181 ], [ -78.643844604492188, -4.804183959960938 ], [ -78.642623901367188, -4.799513816833496 ], [ -78.640869140625, -4.795263767242432 ], [ -78.637794494628849, -4.790676116943359 ], [ -78.631622314453125, -4.783565044403076 ], [ -78.629318237304631, -4.777925968170166 ], [ -78.628204345703125, -4.774647235870361 ], [ -78.627899169921875, -4.772831916809082 ], [ -78.628311157226562, -4.768027782440186 ], [ -78.629783630371037, -4.760796070098877 ], [ -78.631057739257812, -4.758368968963566 ], [ -78.635231018066349, -4.744497776031437 ], [ -78.636871337890625, -4.741735935211125 ], [ -78.638084411621037, -4.73900318145752 ], [ -78.639617919921818, -4.734661102294922 ], [ -78.640296936035156, -4.73197698593134 ], [ -78.640678405761719, -4.724859237670842 ], [ -78.640617370605469, -4.722098827362061 ], [ -78.640106201171875, -4.720077037811279 ], [ -78.639999389648381, -4.718245029449463 ], [ -78.64009857177723, -4.702345848083496 ], [ -78.640419006347656, -4.698697090148869 ], [ -78.641998291015568, -4.691970825195312 ], [ -78.6419677734375, -4.682065963745117 ], [ -78.642532348632812, -4.676809787750187 ], [ -78.643432617187443, -4.672056198120117 ], [ -78.643966674804688, -4.669822216033936 ], [ -78.644798278808594, -4.668446063995304 ], [ -78.645095825195312, -4.666403770446721 ], [ -78.645614624023381, -4.665932178497314 ], [ -78.646224975585938, -4.663247108459473 ], [ -78.647354125976562, -4.661245822906437 ], [ -78.647956848144531, -4.659023761749211 ], [ -78.648880004882812, -4.657184123992863 ], [ -78.651214599609375, -4.65435600280756 ], [ -78.653526306152287, -4.652430057525635 ], [ -78.655548095703011, -4.651418209075871 ], [ -78.658279418945256, -4.651113033294621 ], [ -78.660568237304631, -4.651247024536133 ], [ -78.662078857421875, -4.651834964752197 ], [ -78.666229248046761, -4.654712200164681 ], [ -78.667633056640568, -4.656210899352971 ], [ -78.674888610839787, -4.665408134460449 ], [ -78.675743103027287, -4.665747165679875 ], [ -78.677825927734375, -4.665926933288517 ], [ -78.679595947265625, -4.665482997894287 ], [ -78.682617187499943, -4.662668228149357 ], [ -78.684722900390568, -4.6593980789184 ], [ -78.687324523925781, -4.654266834259033 ], [ -78.690299987792969, -4.645531177520752 ], [ -78.691650390625, -4.642643928527832 ], [ -78.693809509277344, -4.639416217803955 ], [ -78.700332641601562, -4.63108587265009 ], [ -78.700813293456974, -4.629971981048584 ], [ -78.702339172363224, -4.626445770263672 ], [ -78.704376220703011, -4.623424053192082 ], [ -78.703125, -4.622955799102726 ], [ -78.702453613281193, -4.62259387969965 ], [ -78.700859069824219, -4.621726036071777 ], [ -78.699684143066349, -4.620790958404541 ], [ -78.698059082031193, -4.619314193725586 ], [ -78.695083618164062, -4.616030216216984 ], [ -78.69183349609375, -4.611817836761418 ], [ -78.686920166015568, -4.605454921722298 ], [ -78.685333251953125, -4.603738784789982 ], [ -78.684547424316406, -4.603090763091984 ], [ -78.681709289550781, -4.600872039794922 ], [ -78.680389404296875, -4.599979877471867 ], [ -78.678146362304631, -4.598808765411377 ], [ -78.676475524902344, -4.598164081573429 ], [ -78.67523193359375, -4.597807884216309 ], [ -78.669395446777344, -4.596039772033691 ], [ -78.667427062988281, -4.5951828956604 ], [ -78.666511535644474, -4.594596862792969 ], [ -78.664817810058594, -4.593270778656006 ], [ -78.663940429687386, -4.592266082763672 ], [ -78.663154602050724, -4.590993881225586 ], [ -78.662025451660099, -4.589179992675724 ], [ -78.661170959472599, -4.58669996261591 ], [ -78.660713195800781, -4.584335803985539 ], [ -78.660659790039062, -4.583624839782658 ], [ -78.660583496093693, -4.582594871520939 ], [ -78.660095214843693, -4.578948974609375 ], [ -78.659645080566349, -4.577901840209904 ], [ -78.658714294433594, -4.576395988464299 ], [ -78.658103942871037, -4.575644016265869 ], [ -78.657615661621037, -4.575041770935002 ], [ -78.655647277832031, -4.572762966156006 ], [ -78.654739379882812, -4.571339130401611 ], [ -78.654182434081974, -4.569893836975098 ], [ -78.654106140136662, -4.569491863250732 ], [ -78.653961181640625, -4.568777084350586 ], [ -78.653717041015568, -4.567200183868408 ], [ -78.653678894042969, -4.564424037933293 ], [ -78.654045104980469, -4.561615943908691 ], [ -78.654205322265568, -4.56081581115717 ], [ -78.65460205078125, -4.558913230895996 ], [ -78.655296325683594, -4.556978225708008 ], [ -78.65545654296875, -4.556553840637207 ], [ -78.657531738281193, -4.551222801208439 ], [ -78.658126831054688, -4.54888916015625 ], [ -78.658905029296875, -4.544588088989201 ], [ -78.65911865234375, -4.542058944702148 ], [ -78.659004211425781, -4.53934907913208 ], [ -78.65899658203125, -4.539226055145264 ], [ -78.658828735351562, -4.538040161132812 ], [ -78.65826416015625, -4.53470420837391 ], [ -78.657951354980469, -4.533596038818303 ], [ -78.657516479492131, -4.532095909118652 ], [ -78.65692138671875, -4.530511856079102 ], [ -78.656059265136719, -4.528711795806885 ], [ -78.649444580078011, -4.517957210540771 ], [ -78.648269653320256, -4.515781879424992 ], [ -78.648170471191349, -4.5155930519104 ], [ -78.647560119628906, -4.514180183410645 ], [ -78.647140502929631, -4.512932777404728 ], [ -78.646659851074162, -4.511514186859074 ], [ -78.644622802734375, -4.507183074951115 ], [ -78.644126892089844, -4.506142139434758 ], [ -78.643714904785099, -4.505255222320557 ], [ -78.643257141113281, -4.504827022552433 ], [ -78.643074035644531, -4.504652976989689 ], [ -78.641960144042969, -4.50389385223383 ], [ -78.641029357910099, -4.503582000732422 ], [ -78.639579772949219, -4.503232955932504 ], [ -78.638900756835938, -4.50269603729248 ], [ -78.63861083984375, -4.502240180969181 ], [ -78.638526916503906, -4.501902103424015 ], [ -78.637969970703068, -4.500122070312443 ], [ -78.637664794921875, -4.499152183532658 ], [ -78.637405395507756, -4.498913764953556 ], [ -78.637161254882812, -4.498753070831299 ], [ -78.636352539062443, -4.498344898223877 ], [ -78.6358642578125, -4.498101234436035 ], [ -78.635009765624943, -4.497986793518066 ], [ -78.634048461914062, -4.498197078704834 ], [ -78.633537292480469, -4.498308181762695 ], [ -78.633171081542969, -4.498197078704834 ], [ -78.633049011230469, -4.497952938079777 ], [ -78.633003234863281, -4.497282981872559 ], [ -78.633232116699105, -4.496592044830322 ], [ -78.633712768554688, -4.495911121368408 ], [ -78.635276794433594, -4.494550228118896 ], [ -78.635993957519474, -4.493628978729191 ], [ -78.636032104492188, -4.49351692199707 ], [ -78.636352539062443, -4.49250602722168 ], [ -78.636367797851506, -4.492138862609806 ], [ -78.636260986328068, -4.491250038146973 ], [ -78.636184692382756, -4.490835189819222 ], [ -78.635757446289062, -4.488271236419678 ], [ -78.635536193847656, -4.486958026885929 ], [ -78.635566711425781, -4.484170913696289 ], [ -78.635574340820312, -4.483520984649601 ], [ -78.635780334472599, -4.481028079986572 ], [ -78.635749816894531, -4.479483127593937 ], [ -78.635719299316406, -4.477613925933838 ], [ -78.635574340820312, -4.476799964904785 ], [ -78.635398864746037, -4.475850105285645 ], [ -78.635040283203068, -4.475131988525334 ], [ -78.634643554687443, -4.47455978393549 ], [ -78.634384155273438, -4.474260807037354 ], [ -78.634002685546875, -4.473827838897705 ], [ -78.633155822753906, -4.473183155059814 ], [ -78.632041931152344, -4.472548961639347 ], [ -78.6317138671875, -4.472362995147648 ], [ -78.631324768066293, -4.471793174743652 ], [ -78.631141662597656, -4.471189022064209 ], [ -78.631149291992188, -4.471075057983342 ], [ -78.631195068359318, -4.470291137695312 ], [ -78.632087707519418, -4.466667175292969 ], [ -78.632431030273438, -4.464234828948975 ], [ -78.632369995117131, -4.461653232574406 ], [ -78.632301330566406, -4.461277008056641 ], [ -78.632156372070256, -4.460502147674561 ], [ -78.632087707519418, -4.460134983062687 ], [ -78.631706237792855, -4.459403038024902 ], [ -78.631149291992188, -4.458539962768555 ], [ -78.630317687988281, -4.457923889160156 ], [ -78.628501892089844, -4.457044124603215 ], [ -78.626907348632756, -4.456240177154541 ], [ -78.626502990722656, -4.456035137176457 ], [ -78.626136779785156, -4.455595016479492 ], [ -78.625755310058594, -4.454794883727971 ], [ -78.625503540039006, -4.45381498336792 ], [ -78.625411987304574, -4.452732086181584 ], [ -78.625389099121037, -4.45237493515009 ], [ -78.625328063964844, -4.450081825256291 ], [ -78.625129699707031, -4.449123859405404 ], [ -78.624832153320256, -4.448661804199219 ], [ -78.624496459960938, -4.448386192321721 ], [ -78.624214172363281, -4.44814395904541 ], [ -78.623222351074219, -4.447287082672119 ], [ -78.62286376953125, -4.446547031402588 ], [ -78.622779846191406, -4.446105003356877 ], [ -78.622673034667969, -4.445242881774846 ], [ -78.622665405273438, -4.44373893737793 ], [ -78.622665405273438, -4.44324684143055 ], [ -78.622711181640568, -4.442259788513184 ], [ -78.622802734374943, -4.440596103668213 ], [ -78.622749328613281, -4.439993858337346 ], [ -78.622695922851562, -4.439437866210938 ], [ -78.622627258300724, -4.439139842987061 ], [ -78.622573852539062, -4.438892841339054 ], [ -78.622207641601562, -4.437881946563721 ], [ -78.621406555175668, -4.436291217803955 ], [ -78.621009826660099, -4.435763835906982 ], [ -78.619796752929688, -4.434475898742676 ], [ -78.619163513183594, -4.434173107147217 ], [ -78.618659973144531, -4.434160232543888 ], [ -78.618225097656193, -4.434311866760254 ], [ -78.617408752441406, -4.434912204742432 ], [ -78.616188049316406, -4.435811996459961 ], [ -78.616073608398438, -4.435901165008545 ], [ -78.615577697753849, -4.436003208160344 ], [ -78.615013122558537, -4.435985088348389 ], [ -78.614639282226562, -4.435883045196533 ], [ -78.613929748535156, -4.435690879821777 ], [ -78.613800048828125, -4.435643196105957 ], [ -78.611618041992188, -4.434613227844181 ], [ -78.610946655273438, -4.434296131134033 ], [ -78.610733032226562, -4.434197902679443 ], [ -78.609535217285156, -4.433272838592529 ], [ -78.608413696289006, -4.432412147521916 ], [ -78.606925964355469, -4.431281089782715 ], [ -78.606651306152344, -4.431001186370793 ], [ -78.604957580566406, -4.429347991943303 ], [ -78.604423522949162, -4.4288330078125 ], [ -78.604026794433537, -4.428445816039982 ], [ -78.602561950683594, -4.426689147949162 ], [ -78.602157592773438, -4.425986766815129 ], [ -78.602035522460881, -4.425705909729004 ], [ -78.601715087890625, -4.424950122833252 ], [ -78.601585388183594, -4.424118041992131 ], [ -78.601516723632812, -4.422942161560002 ], [ -78.601646423339787, -4.421624183654785 ], [ -78.602600097656193, -4.417777061462346 ], [ -78.603164672851506, -4.415708065032959 ], [ -78.60321044921875, -4.414855003356934 ], [ -78.603240966796875, -4.412679195404053 ], [ -78.603439331054688, -4.411118030548096 ], [ -78.603492736816406, -4.410664081573429 ], [ -78.603729248046818, -4.410085201263428 ], [ -78.603988647460938, -4.409660816192627 ], [ -78.604286193847656, -4.409166812896729 ], [ -78.6043701171875, -4.409033775329476 ], [ -78.604713439941349, -4.408768177032414 ], [ -78.605506896972656, -4.408425807952767 ], [ -78.606590270996037, -4.408367156982365 ], [ -78.607696533203125, -4.408658027648926 ], [ -78.608451843261719, -4.409160137176514 ], [ -78.608909606933537, -4.409681797027531 ], [ -78.609855651855412, -4.410995006561279 ], [ -78.610527038574162, -4.411511898040771 ], [ -78.611343383789062, -4.411623954772949 ], [ -78.612426757812443, -4.411534786224365 ], [ -78.61334228515625, -4.41155481338501 ], [ -78.614234924316349, -4.411283969879094 ], [ -78.615913391113281, -4.411265850067139 ], [ -78.617172241210938, -4.411461830139103 ], [ -78.618965148925781, -4.41197681427002 ], [ -78.621170043945312, -4.412816047668457 ], [ -78.62322998046875, -4.41362190246582 ], [ -78.623596191406193, -4.413642883300781 ], [ -78.624336242675724, -4.413688182830754 ], [ -78.625686645507756, -4.413530826568604 ], [ -78.626472473144531, -4.41323709487915 ], [ -78.627708435058594, -4.412205219268742 ], [ -78.628723144531193, -4.411291122436467 ], [ -78.629768371581974, -4.41005802154541 ], [ -78.630485534667969, -4.408803939819279 ], [ -78.631225585937443, -4.406929016113224 ], [ -78.631431579589844, -4.40574312210083 ], [ -78.63153076171875, -4.403892993926945 ], [ -78.631362915039062, -4.402313232421875 ], [ -78.631111145019474, -4.401148796081543 ], [ -78.630844116210881, -4.399953842163086 ], [ -78.630302429199219, -4.397440910339355 ], [ -78.630165100097599, -4.396845817565918 ], [ -78.630096435546875, -4.395628929138184 ], [ -78.630088806152344, -4.395370960235596 ], [ -78.629974365234318, -4.392442226409912 ], [ -78.630035400390625, -4.39182710647583 ], [ -78.63018798828125, -4.390621185302678 ], [ -78.630348205566349, -4.390095233917236 ], [ -78.630729675292912, -4.388722896575928 ], [ -78.631492614746037, -4.387222766876164 ], [ -78.631996154785156, -4.386281967163029 ], [ -78.633163452148438, -4.384149074554443 ], [ -78.633544921875, -4.383010864257756 ], [ -78.63385009765625, -4.381661891937256 ], [ -78.634040832519531, -4.380314826965332 ], [ -78.635131835937443, -4.373598098754826 ], [ -78.635871887206974, -4.370842933654785 ], [ -78.635940551757812, -4.370613098144474 ], [ -78.636352539062443, -4.369416236877441 ], [ -78.63726806640625, -4.367349147796631 ], [ -78.638420104980469, -4.365315914153996 ], [ -78.640029907226562, -4.362820148467904 ], [ -78.64129638671875, -4.360259056091309 ], [ -78.641395568847656, -4.360037803649902 ], [ -78.641921997070312, -4.359481811523438 ], [ -78.64202880859375, -4.359417915344238 ], [ -78.642318725585938, -4.359249114990178 ], [ -78.642547607421818, -4.359118938446045 ], [ -78.642967224121094, -4.359023094177246 ], [ -78.644584655761719, -4.358822822570687 ], [ -78.645416259765568, -4.358482837677002 ], [ -78.645629882812386, -4.358397006988525 ], [ -78.6461181640625, -4.357970237731934 ], [ -78.646362304687443, -4.357446193695068 ], [ -78.646408081054688, -4.356735229492188 ], [ -78.646263122558537, -4.35598087310791 ], [ -78.645553588867188, -4.35446119308466 ], [ -78.645004272460938, -4.353754043579102 ], [ -78.644546508789006, -4.353342056274414 ], [ -78.642387390136605, -4.351283073425293 ], [ -78.640792846679688, -4.349024772643986 ], [ -78.640495300292969, -4.348260879516488 ], [ -78.640113830566406, -4.346788883209229 ], [ -78.640052795410156, -4.345995903015023 ], [ -78.640022277832031, -4.345497131347656 ], [ -78.640060424804688, -4.3433837890625 ], [ -78.640144348144531, -4.343047142028809 ], [ -78.640312194824219, -4.342367172241211 ], [ -78.640548706054631, -4.341732025146371 ], [ -78.641700744628849, -4.339716911315918 ], [ -78.642913818359375, -4.337137222290039 ], [ -78.643127441406193, -4.335999965667725 ], [ -78.643112182617188, -4.335310935974064 ], [ -78.643104553222656, -4.334531784057504 ], [ -78.642890930175781, -4.333700180053711 ], [ -78.642562866210881, -4.332909107208252 ], [ -78.642135620117188, -4.332155227661133 ], [ -78.641571044921875, -4.331762790679875 ], [ -78.641319274902287, -4.331651210784855 ], [ -78.640655517578068, -4.331355094909668 ], [ -78.640350341796818, -4.331267833709717 ], [ -78.638618469238281, -4.330769062042179 ], [ -78.637344360351562, -4.330125808715763 ], [ -78.636840820312443, -4.329664230346566 ], [ -78.636482238769531, -4.329166889190674 ], [ -78.636199951171875, -4.328485012054387 ], [ -78.636146545410156, -4.327858924865723 ], [ -78.636238098144531, -4.327125072479134 ], [ -78.636604309082031, -4.325736999511719 ], [ -78.636634826660099, -4.325624942779541 ], [ -78.637153625488281, -4.324645042419434 ], [ -78.638000488281136, -4.323452949523926 ], [ -78.638076782226506, -4.323370933532658 ], [ -78.640205383300781, -4.320764064788762 ], [ -78.640853881835881, -4.319478034973145 ], [ -78.641159057617188, -4.318418025970459 ], [ -78.641250610351562, -4.317649841308594 ], [ -78.641098022460938, -4.316502094268799 ], [ -78.64068603515625, -4.315509796142578 ], [ -78.640258789062443, -4.314081192016602 ], [ -78.640327453613281, -4.313416004180795 ], [ -78.640510559082031, -4.311605930328369 ], [ -78.640281677246037, -4.310914993286133 ], [ -78.639907836913949, -4.310493946075439 ], [ -78.639556884765625, -4.310267925262451 ], [ -78.639228820800724, -4.310058116912728 ], [ -78.638595581054688, -4.309812068939152 ], [ -78.638435363769531, -4.309661865234318 ], [ -78.637992858886662, -4.30919885635376 ], [ -78.637191772460938, -4.308177947998047 ], [ -78.636756896972599, -4.307940959930363 ], [ -78.635841369628906, -4.307239055633545 ], [ -78.634933471679631, -4.306541919708195 ], [ -78.634597778320312, -4.306285858154297 ], [ -78.634193420410156, -4.305545806884766 ], [ -78.6339111328125, -4.304526805877572 ], [ -78.633575439453125, -4.302916049957275 ], [ -78.633430480957031, -4.302210807800236 ], [ -78.632789611816406, -4.300835132598877 ], [ -78.632026672363281, -4.299749851226807 ], [ -78.630874633789062, -4.298680782318115 ], [ -78.628616333007812, -4.297085762023869 ], [ -78.625267028808594, -4.295273780822697 ], [ -78.62353515625, -4.294662952423096 ], [ -78.623016357421818, -4.294515132904053 ], [ -78.621894836425781, -4.294187068939209 ], [ -78.621253967285156, -4.294006824493408 ], [ -78.620277404785156, -4.293931007385254 ], [ -78.619590759277287, -4.293889999389592 ], [ -78.619384765624943, -4.293888092041016 ], [ -78.618011474609375, -4.293894767761174 ], [ -78.617851257324162, -4.293854236602726 ], [ -78.616355895996094, -4.293461799621525 ], [ -78.61590576171875, -4.293119907379094 ], [ -78.615631103515625, -4.292731761932373 ], [ -78.615020751953125, -4.291546821594238 ], [ -78.614631652831974, -4.290059089660588 ], [ -78.614418029785099, -4.289286136627197 ], [ -78.614356994628906, -4.288247108459416 ], [ -78.614501953125, -4.286643028259221 ], [ -78.614585876464844, -4.286105155944711 ], [ -78.614738464355469, -4.285235881805363 ], [ -78.614639282226562, -4.284687042236271 ], [ -78.614410400390568, -4.284440994262638 ], [ -78.614013671875, -4.284336090087891 ], [ -78.612945556640625, -4.284170150756779 ], [ -78.612541198730469, -4.283894062042236 ], [ -78.612258911132812, -4.283549785614014 ], [ -78.611824035644531, -4.282752037048283 ], [ -78.611373901367131, -4.28142786026001 ], [ -78.610710144042912, -4.279184818267822 ], [ -78.610237121581974, -4.27761697769165 ], [ -78.609764099121037, -4.276041984558105 ], [ -78.608802795410099, -4.273611068725586 ], [ -78.608291625976562, -4.272694110870248 ], [ -78.607521057128906, -4.271483898162842 ], [ -78.607414245605469, -4.271328926086426 ], [ -78.605506896972656, -4.268619060516357 ], [ -78.604667663574219, -4.266939163208008 ], [ -78.604545593261719, -4.266664028167725 ], [ -78.604431152343636, -4.266380786895695 ], [ -78.603973388671875, -4.265316963195801 ], [ -78.603538513183537, -4.26442289352417 ], [ -78.601409912109375, -4.25995397567749 ], [ -78.600837707519531, -4.259127140045166 ], [ -78.600685119628849, -4.258539199829102 ], [ -78.600669860839844, -4.258149147033691 ], [ -78.600723266601562, -4.257698059081974 ], [ -78.601219177246094, -4.254941940307617 ], [ -78.601119995117188, -4.254725933074894 ], [ -78.600830078125, -4.254352092742863 ], [ -78.599220275878906, -4.253012180328369 ], [ -78.599075317382756, -4.252885818481388 ], [ -78.598960876464787, -4.25219821929926 ], [ -78.599105834960938, -4.251530170440674 ], [ -78.599372863769474, -4.251036167144775 ], [ -78.599746704101506, -4.250685214996281 ], [ -78.600898742675724, -4.250125885009766 ], [ -78.601921081542912, -4.249558925628662 ], [ -78.602615356445256, -4.248770236968937 ], [ -78.603591918945312, -4.247423171997013 ], [ -78.603744506835881, -4.24699687957758 ], [ -78.604072570800781, -4.245804786682072 ], [ -78.604217529296818, -4.245175838470459 ], [ -78.604446411132812, -4.244113922119141 ], [ -78.604637145996094, -4.243103981018066 ], [ -78.605308532714844, -4.238788127899113 ], [ -78.605453491210881, -4.237500190734806 ], [ -78.605583190917969, -4.236355781555119 ], [ -78.6055908203125, -4.236241817474365 ], [ -78.605636596679631, -4.235414028167668 ], [ -78.605819702148438, -4.232423782348633 ], [ -78.605766296386605, -4.231167793273926 ], [ -78.605735778808537, -4.230350017547607 ], [ -78.605583190917969, -4.228829860687199 ], [ -78.605361938476506, -4.227237224578857 ], [ -78.6048583984375, -4.224854946136475 ], [ -78.604301452636662, -4.222989082336369 ], [ -78.602462768554688, -4.218613147735539 ], [ -78.600837707519531, -4.215872764587402 ], [ -78.600456237792969, -4.215228080749455 ], [ -78.59942626953125, -4.213909149169865 ], [ -78.599250793456974, -4.213681221008301 ], [ -78.597663879394531, -4.212144851684513 ], [ -78.597412109375, -4.211897850036564 ], [ -78.596145629882812, -4.21111011505127 ], [ -78.595321655273438, -4.210694789886418 ], [ -78.594070434570312, -4.210175037384033 ], [ -78.593772888183594, -4.2099928855896 ], [ -78.591873168945312, -4.209070205688477 ], [ -78.590843200683594, -4.208322048187199 ], [ -78.590126037597543, -4.207583904266357 ], [ -78.589630126953068, -4.207067012786865 ], [ -78.588020324706974, -4.205396175384521 ], [ -78.586944580078068, -4.204570770263615 ], [ -78.585899353027287, -4.204026222228947 ], [ -78.583969116210938, -4.203159809112492 ], [ -78.579124450683537, -4.201097965240422 ], [ -78.578582763671818, -4.200707912445012 ], [ -78.578330993652344, -4.200522899627686 ], [ -78.577934265136719, -4.200149059295654 ], [ -78.577674865722656, -4.199837207794076 ], [ -78.577255249023438, -4.199076175689697 ], [ -78.576675415039006, -4.197650909423828 ], [ -78.576606750488281, -4.197319030761662 ], [ -78.576408386230469, -4.196348190307617 ], [ -78.576316833496094, -4.194047927856388 ], [ -78.576400756835938, -4.190640926361084 ], [ -78.576652526855412, -4.180373191833496 ], [ -78.576339721679688, -4.177364826202393 ], [ -78.575912475585881, -4.175373077392521 ], [ -78.57501220703125, -4.171432018280029 ], [ -78.574378967285099, -4.166328907012883 ], [ -78.574256896972656, -4.16470193862915 ], [ -78.574287414550724, -4.163160800933781 ], [ -78.574699401855469, -4.161501884460449 ], [ -78.575897216796818, -4.158020019531193 ], [ -78.576583862304574, -4.154829025268498 ], [ -78.576637268066406, -4.154444217681885 ], [ -78.577812194824162, -4.146894931793213 ], [ -78.577972412109375, -4.145911216735783 ], [ -78.578224182128906, -4.143103122711125 ], [ -78.578552246093693, -4.142045021057072 ], [ -78.578971862792969, -4.140890121459961 ], [ -78.579055786132756, -4.140679836273193 ], [ -78.580116271972656, -4.13762092590332 ], [ -78.580055236816406, -4.13687610626215 ], [ -78.579917907714787, -4.136141777038574 ], [ -78.57977294921875, -4.135773181915283 ], [ -78.579605102539006, -4.135454177856445 ], [ -78.578514099121094, -4.133662223815918 ], [ -78.576858520507756, -4.13012504577631 ], [ -78.57537841796875, -4.126639842987004 ], [ -78.574554443359318, -4.125495910644474 ], [ -78.573570251464844, -4.124499797821045 ], [ -78.571266174316406, -4.122176170349121 ], [ -78.570625305175781, -4.121113777160645 ], [ -78.570510864257812, -4.120765209197998 ], [ -78.5703125, -4.120144844055176 ], [ -78.570091247558537, -4.118715763091984 ], [ -78.569953918457031, -4.118000030517464 ], [ -78.569198608398438, -4.114003181457463 ], [ -78.56890869140625, -4.112475872039795 ], [ -78.567947387695312, -4.109829902648926 ], [ -78.567054748535156, -4.106953144073486 ], [ -78.565902709960824, -4.104434967040959 ], [ -78.565765380859375, -4.10414981842041 ], [ -78.564620971679688, -4.102193832397404 ], [ -78.563934326171875, -4.101544857025146 ], [ -78.563186645507812, -4.101303100585881 ], [ -78.56298828125, -4.101193904876709 ], [ -78.562149047851506, -4.101187229156494 ], [ -78.561920166015625, -4.10118913650507 ], [ -78.559219360351506, -4.101178169250488 ], [ -78.558677673339844, -4.100938796997013 ], [ -78.558036804199219, -4.100458145141602 ], [ -78.557006835937443, -4.09942102432251 ], [ -78.556526184081974, -4.098502159118596 ], [ -78.55609130859375, -4.09714412689209 ], [ -78.555816650390625, -4.095427989959717 ], [ -78.555442810058594, -4.092453002929688 ], [ -78.554786682128906, -4.090434074401855 ], [ -78.554428100585881, -4.089591026306152 ], [ -78.5538330078125, -4.088622093200684 ], [ -78.553314208984261, -4.08804988861084 ], [ -78.552894592285156, -4.087724208831787 ], [ -78.552276611328125, -4.087434768676644 ], [ -78.550270080566406, -4.086685180664006 ], [ -78.549682617187443, -4.086236000060978 ], [ -78.549346923828125, -4.085778236389103 ], [ -78.548500061035156, -4.084700107574463 ], [ -78.547904968261719, -4.083922863006535 ], [ -78.547164916992188, -4.082756042480469 ], [ -78.545364379882756, -4.079914093017521 ], [ -78.545204162597599, -4.079604148864689 ], [ -78.543785095214844, -4.076984882354679 ], [ -78.543281555175724, -4.076045989990234 ], [ -78.542770385742188, -4.075534820556584 ], [ -78.542617797851506, -4.075441837310791 ], [ -78.541023254394531, -4.074594020843506 ], [ -78.54083251953125, -4.074429988861027 ], [ -78.54046630859375, -4.074103832244816 ], [ -78.540321350097599, -4.073799133300781 ], [ -78.540275573730469, -4.073705196380615 ], [ -78.540283203125, -4.073041915893555 ], [ -78.540214538574162, -4.070610046386719 ], [ -78.540176391601562, -4.070295810699463 ], [ -78.539939880371037, -4.069018840789795 ], [ -78.539382934570256, -4.066919803619328 ], [ -78.539550781249943, -4.06672191619873 ], [ -78.53973388671875, -4.066598892211914 ], [ -78.539894104003906, -4.066589832305851 ], [ -78.541061401367188, -4.066805839538574 ], [ -78.541831970214844, -4.066708087921143 ], [ -78.542106628417969, -4.06667423248291 ], [ -78.542182922363281, -4.066559791564941 ], [ -78.54229736328125, -4.066393852233887 ], [ -78.542976379394531, -4.065348148345947 ], [ -78.543716430664062, -4.064441204071045 ], [ -78.544837951660156, -4.063200950622502 ], [ -78.545562744140568, -4.062403202056885 ], [ -78.545928955078125, -4.061724185943604 ], [ -78.546188354492188, -4.060924053192082 ], [ -78.546234130859318, -4.060770988464355 ], [ -78.546546936035156, -4.05982780456543 ], [ -78.546997070312443, -4.058056831359863 ], [ -78.547142028808594, -4.057496070861816 ], [ -78.547660827636662, -4.056449890136662 ], [ -78.548355102538949, -4.055354118347168 ], [ -78.549957275390568, -4.052816867828312 ], [ -78.550491333007812, -4.051976203918457 ], [ -78.551246643066406, -4.051092147827092 ], [ -78.551383972167912, -4.050965785980168 ], [ -78.552581787109375, -4.049853801727295 ], [ -78.553749084472656, -4.049080848693848 ], [ -78.554862976074219, -4.048685073852482 ], [ -78.555831909179688, -4.048625946044922 ], [ -78.558692932128906, -4.048668861389103 ], [ -78.559837341308594, -4.048410892486515 ], [ -78.560630798339787, -4.048026084899902 ], [ -78.56109619140625, -4.047743797302246 ], [ -78.562362670898381, -4.046977996826172 ], [ -78.563087463378906, -4.046388149261418 ], [ -78.563346862792969, -4.046115875244141 ], [ -78.563827514648438, -4.045612812042179 ], [ -78.565216064453068, -4.043988227844181 ], [ -78.565567016601562, -4.043185234069767 ], [ -78.565643310546875, -4.04271411895752 ], [ -78.565765380859375, -4.041997909545898 ], [ -78.565956115722656, -4.03971004486084 ], [ -78.565841674804688, -4.037901878356934 ], [ -78.566085815429631, -4.037347793579045 ], [ -78.5665283203125, -4.036472797393685 ], [ -78.567459106445312, -4.034686088561955 ], [ -78.568099975585938, -4.033434867858887 ], [ -78.568138122558594, -4.032755851745605 ], [ -78.566680908203125, -4.030971050262451 ], [ -78.566162109374943, -4.030337810516301 ], [ -78.565841674804688, -4.029945850372314 ], [ -78.565200805664006, -4.02845287322998 ], [ -78.564460754394474, -4.026719093322697 ], [ -78.563873291015568, -4.025331020355168 ], [ -78.563552856445312, -4.02449893951416 ], [ -78.562667846679688, -4.022194862365723 ], [ -78.562507629394531, -4.021212100982666 ], [ -78.562385559082031, -4.020466804504395 ], [ -78.562347412109318, -4.020208835601693 ], [ -78.562507629394531, -4.01970815658558 ], [ -78.563201904296818, -4.018178939819279 ], [ -78.5633544921875, -4.017202854156494 ], [ -78.563362121582031, -4.016959190368596 ], [ -78.563385009765625, -4.016547203063965 ], [ -78.563346862792969, -4.015920162200928 ], [ -78.563186645507812, -4.014157772064152 ], [ -78.563125610351506, -4.013484001159668 ], [ -78.562873840332031, -4.012627124786263 ], [ -78.562660217285043, -4.012267112731934 ], [ -78.561790466308537, -4.010765075683594 ], [ -78.561706542968636, -4.010625839233342 ], [ -78.561729431152344, -4.009712219238281 ], [ -78.561729431152344, -4.00944709777832 ], [ -78.561729431152344, -4.007572174072266 ], [ -78.561683654785099, -4.007115840911808 ], [ -78.561576843261662, -4.006303787231445 ], [ -78.561401367187443, -4.004764080047551 ], [ -78.561431884765625, -4.004580974578801 ], [ -78.561607360839787, -4.003689765930176 ], [ -78.561767578124943, -4.001995086669865 ], [ -78.5616455078125, -4.000860214233398 ], [ -78.561470031738281, -4.0002121925354 ], [ -78.561439514160156, -4.000078201293832 ], [ -78.560821533203068, -3.997473001480103 ], [ -78.560905456542969, -3.996840953826847 ], [ -78.561180114746094, -3.996390104293766 ], [ -78.563575744628906, -3.994852066040039 ], [ -78.564735412597599, -3.993716955184937 ], [ -78.564895629882812, -3.993258953094482 ], [ -78.564941406249943, -3.992547988891602 ], [ -78.564895629882812, -3.991748094558659 ], [ -78.564582824707031, -3.990370988845825 ], [ -78.564125061035156, -3.98921799659729 ], [ -78.563949584960938, -3.988806962966805 ], [ -78.563133239746037, -3.987551927566471 ], [ -78.561141967773438, -3.984968900680485 ], [ -78.560684204101562, -3.984287977218628 ], [ -78.557678222656193, -3.979779958724919 ], [ -78.556694030761719, -3.978790998458805 ], [ -78.556243896484318, -3.978599071502686 ], [ -78.555282592773381, -3.978307008743286 ], [ -78.554595947265625, -3.978231906890812 ], [ -78.5533447265625, -3.978076934814396 ], [ -78.55267333984375, -3.977994918823242 ], [ -78.551628112792969, -3.977394104003849 ], [ -78.550827026367131, -3.976587057113647 ], [ -78.549697875976562, -3.975045919418335 ], [ -78.549552917480469, -3.974829912185669 ], [ -78.548431396484318, -3.973129034042358 ], [ -78.547515869140625, -3.971744060516357 ], [ -78.546829223632699, -3.971115112304631 ], [ -78.546066284179574, -3.970823049545231 ], [ -78.545799255371094, -3.970720052719059 ], [ -78.545379638671818, -3.970763921737614 ], [ -78.544609069824162, -3.970909118652287 ], [ -78.5440673828125, -3.971000909805298 ], [ -78.542076110839844, -3.971328973770142 ], [ -78.541572570800724, -3.971210002899113 ], [ -78.541175842285099, -3.970851898193359 ], [ -78.540931701660156, -3.970483064651489 ], [ -78.540657043457031, -3.969938039779663 ], [ -78.540336608886662, -3.96895790100092 ], [ -78.540184020996094, -3.968071937560978 ], [ -78.540245056152287, -3.967019081115666 ], [ -78.540657043457031, -3.964409112930241 ], [ -78.540679931640625, -3.964261054992619 ], [ -78.540657043457031, -3.963386058807316 ], [ -78.540634155273438, -3.962380886077824 ], [ -78.540626525878849, -3.962171077728215 ], [ -78.540573120117188, -3.961767911910954 ], [ -78.540420532226506, -3.960629940032959 ], [ -78.540298461914062, -3.960375070571899 ], [ -78.540115356445312, -3.960007905960083 ], [ -78.53948974609375, -3.959476947784367 ], [ -78.539299011230469, -3.959309101104679 ], [ -78.53656005859375, -3.957505941390991 ], [ -78.535636901855412, -3.956895112991276 ], [ -78.534065246582031, -3.955394983291626 ], [ -78.533409118652344, -3.954586029052734 ], [ -78.533340454101562, -3.954474925994873 ], [ -78.532501220703068, -3.953161954879761 ], [ -78.53228759765625, -3.952826976776123 ], [ -78.529304504394531, -3.94825005531311 ], [ -78.529144287109375, -3.947999954223576 ], [ -78.528877258300724, -3.947593927383366 ], [ -78.528503417968693, -3.947031021118107 ], [ -78.528106689453068, -3.946631908416748 ], [ -78.5277099609375, -3.946230888366699 ], [ -78.527107238769531, -3.945739030838013 ], [ -78.526756286621094, -3.945445060729924 ], [ -78.526512145996037, -3.945244073867684 ], [ -78.526321411132756, -3.944761037826538 ], [ -78.526290893554631, -3.94260311126709 ], [ -78.525901794433594, -3.939734935760441 ], [ -78.525772094726562, -3.938793897628784 ], [ -78.525466918945199, -3.938216924667358 ], [ -78.525337219238224, -3.938040018081608 ], [ -78.523826599121037, -3.935828924179077 ], [ -78.523139953613281, -3.934315919876099 ], [ -78.522666931152287, -3.933794021606332 ], [ -78.521881103515625, -3.933234930038452 ], [ -78.521156311035099, -3.932991027832031 ], [ -78.520431518554688, -3.932915925979614 ], [ -78.519477844238281, -3.933027982711792 ], [ -78.518478393554631, -3.933144092559814 ], [ -78.517440795898381, -3.932936906814575 ], [ -78.516265869140625, -3.932585954666138 ], [ -78.514305114746037, -3.932323932647648 ], [ -78.499977111816349, -3.931631088256836 ], [ -78.495086669921875, -3.931201934814453 ], [ -78.493583679199162, -3.930742025375366 ], [ -78.492172241210881, -3.930192947387695 ], [ -78.490837097167912, -3.929409027099609 ], [ -78.489601135253849, -3.928400993347168 ], [ -78.488433837890568, -3.927172899246159 ], [ -78.487342834472656, -3.925734996795654 ], [ -78.487213134765568, -3.925527095794678 ], [ -78.486305236816406, -3.924082040786743 ], [ -78.485290527343693, -3.922125101089478 ], [ -78.484237670898381, -3.919744968414307 ], [ -78.483154296875, -3.916867017745972 ], [ -78.482109069824219, -3.913502931594792 ], [ -78.481216430663949, -3.909684896469059 ], [ -78.479927062988281, -3.901083946227971 ], [ -78.479309082031136, -3.897609949111938 ], [ -78.479232788085938, -3.897191047668457 ], [ -78.479118347167855, -3.896569013595581 ], [ -78.477966308593693, -3.892009973525944 ], [ -78.476524353027287, -3.887557029724064 ], [ -78.474937438964844, -3.883333921432495 ], [ -78.473274230956974, -3.879415988922062 ], [ -78.469062805175781, -3.87061595916748 ], [ -78.467384338378849, -3.867120027542114 ], [ -78.465629577636719, -3.863374948501473 ], [ -78.465232849121094, -3.862520933151188 ], [ -78.463356018066349, -3.858076095580941 ], [ -78.461936950683537, -3.85403490066517 ], [ -78.460029602050724, -3.847207069396973 ], [ -78.459388732910156, -3.845130920410099 ], [ -78.458358764648438, -3.841783046722412 ], [ -78.458045959472656, -3.841015100479126 ], [ -78.457748413085881, -3.840271949768066 ], [ -78.457466125488224, -3.839570045471191 ], [ -78.456504821777287, -3.837663888931274 ], [ -78.455665588378906, -3.836344957351685 ], [ -78.45538330078125, -3.835896015167179 ], [ -78.454010009765568, -3.834069967269841 ], [ -78.450462341308594, -3.82991099357605 ], [ -78.449157714843693, -3.828493118286076 ], [ -78.448471069335881, -3.827754974365234 ], [ -78.447433471679631, -3.826699018478337 ], [ -78.446449279785156, -3.82569694519043 ], [ -78.445732116699162, -3.825064897537231 ], [ -78.444229125976562, -3.823724985122681 ], [ -78.441635131835881, -3.821816921234074 ], [ -78.440811157226562, -3.821325063705444 ], [ -78.435493469238281, -3.81816911697382 ], [ -78.435028076171818, -3.817883968353215 ], [ -78.433250427246094, -3.816782951354924 ], [ -78.432846069335881, -3.816534042358398 ], [ -78.431488037109375, -3.815431118011361 ], [ -78.431022644042912, -3.81505298614502 ], [ -78.429740905761719, -3.813599109649545 ], [ -78.424674987792969, -3.806788921356144 ], [ -78.424430847167969, -3.806456089019719 ], [ -78.422744750976506, -3.804186105728149 ], [ -78.422508239746094, -3.803843975067025 ], [ -78.418930053710881, -3.798779964447021 ], [ -78.416549682617131, -3.795527935028019 ], [ -78.416389465332031, -3.795358896255436 ], [ -78.412155151367131, -3.790895938873291 ], [ -78.411247253417969, -3.789896011352539 ], [ -78.410781860351562, -3.789382934570312 ], [ -78.409568786621037, -3.787919998168945 ], [ -78.408561706542969, -3.786539077758732 ], [ -78.407798767089844, -3.785271883010864 ], [ -78.407234191894531, -3.784081935882568 ], [ -78.406829833984261, -3.782912969589177 ], [ -78.406562805175781, -3.781707048416138 ], [ -78.406440734863224, -3.780436992645264 ], [ -78.406463623046875, -3.779047012329102 ], [ -78.407218933105469, -3.774224996566772 ], [ -78.407600402832031, -3.770699024200439 ], [ -78.40802001953125, -3.764947891235352 ], [ -78.408088684082031, -3.758981943130493 ], [ -78.408088684082031, -3.758865118026677 ], [ -78.408096313476562, -3.758101940155029 ], [ -78.408203125, -3.75546288490284 ], [ -78.409126281738281, -3.747421979904175 ], [ -78.409301757812443, -3.745412111282349 ], [ -78.409446716308594, -3.742183923721257 ], [ -78.409591674804631, -3.738915920257512 ], [ -78.409530639648438, -3.73714804649353 ], [ -78.409294128417912, -3.735263109207153 ], [ -78.408401489257812, -3.731600046157837 ], [ -78.408187866210938, -3.730745077133179 ], [ -78.407394409179631, -3.727926015853825 ], [ -78.406715393066349, -3.724708080291748 ], [ -78.406471252441406, -3.721129894256535 ], [ -78.406913757324162, -3.717226028442383 ], [ -78.407989501953125, -3.713188886642456 ], [ -78.4095458984375, -3.709213972091618 ], [ -78.411468505859318, -3.705590963363591 ], [ -78.412918090820256, -3.702832937240544 ], [ -78.413246154785156, -3.702222108840942 ], [ -78.414550781249943, -3.699529886245614 ], [ -78.414886474609375, -3.698122024536076 ], [ -78.415023803710881, -3.697554111480656 ], [ -78.414703369140625, -3.696193933486938 ], [ -78.413825988769531, -3.695245981216431 ], [ -78.412513732910156, -3.694540977477914 ], [ -78.406036376953068, -3.692692995071411 ], [ -78.404991149902287, -3.692375898361206 ], [ -78.40325927734375, -3.691849946975651 ], [ -78.400550842285156, -3.690800905227604 ], [ -78.398124694824162, -3.689513921737671 ], [ -78.39605712890625, -3.687973022460881 ], [ -78.394363403320312, -3.686186075210571 ], [ -78.393074035644474, -3.684145927429086 ], [ -78.392112731933537, -3.681823968887272 ], [ -78.391654968261662, -3.680071115493718 ], [ -78.39141845703125, -3.679174900054818 ], [ -78.390754699707031, -3.675052881240788 ], [ -78.390434265136719, -3.672965049743596 ], [ -78.390357971191406, -3.672584056854191 ], [ -78.389823913574162, -3.669703006744328 ], [ -78.388946533203125, -3.66656303405756 ], [ -78.387870788574219, -3.663688898086491 ], [ -78.387489318847656, -3.662952899932861 ], [ -78.384681701660099, -3.657519102096558 ], [ -78.383888244628906, -3.655878067016545 ], [ -78.383323669433594, -3.654148101806641 ], [ -78.382965087890568, -3.652390956878662 ], [ -78.382766723632756, -3.650784015655461 ], [ -78.382720947265625, -3.649424076080209 ], [ -78.382781982421818, -3.648530006408578 ], [ -78.382804870605469, -3.648181915283146 ], [ -78.383056640624943, -3.646868944168091 ], [ -78.383476257324219, -3.645354986190796 ], [ -78.38482666015625, -3.641829967498779 ], [ -78.386650085449219, -3.637998104095459 ], [ -78.386833190917969, -3.637561082839909 ], [ -78.387496948242188, -3.635967969894352 ], [ -78.387657165527287, -3.635433912277222 ], [ -78.388145446777344, -3.633822917938232 ], [ -78.388198852539006, -3.633531093597355 ], [ -78.388626098632812, -3.631388902664185 ], [ -78.388961791992131, -3.628484964370614 ], [ -78.389198303222656, -3.625041007995605 ], [ -78.389244079589844, -3.623840093612614 ], [ -78.389297485351562, -3.622261047363224 ], [ -78.389328002929688, -3.621345043182373 ], [ -78.389152526855412, -3.613893985748291 ], [ -78.38909912109375, -3.611721992492676 ], [ -78.38922119140625, -3.599526882171631 ], [ -78.389198303222656, -3.594923019409123 ], [ -78.388046264648438, -3.582911968231201 ], [ -78.387046813964844, -3.569148063659668 ], [ -78.386825561523438, -3.566747903823796 ], [ -78.386756896972656, -3.566339969634953 ], [ -78.386627197265625, -3.565602064132577 ], [ -78.386459350585938, -3.564657926559391 ], [ -78.385856628417969, -3.562771081924438 ], [ -78.384994506835938, -3.560940980911141 ], [ -78.383880615234375, -3.55903506278986 ], [ -78.382469177246094, -3.556925058364811 ], [ -78.374076843261719, -3.546142101287785 ], [ -78.372344970703125, -3.54391789436329 ], [ -78.370658874511662, -3.541511058807373 ], [ -78.369560241699219, -3.539949893951416 ], [ -78.367454528808594, -3.536216974258309 ], [ -78.365966796875, -3.53252911567688 ], [ -78.364845275878849, -3.528879880905151 ], [ -78.364212036132812, -3.525995016098022 ], [ -78.363983154296818, -3.524930000305062 ], [ -78.362579345703011, -3.516755104064941 ], [ -78.362342834472656, -3.515419960021973 ], [ -78.361198425292969, -3.508950948715153 ], [ -78.360397338867188, -3.505129098892212 ], [ -78.358329772949219, -3.496906042098942 ], [ -78.358207702636719, -3.496470928192082 ], [ -78.354301452636719, -3.483059883117619 ], [ -78.353294372558537, -3.479578018188477 ], [ -78.351730346679688, -3.473954916000309 ], [ -78.350700378417969, -3.469614028930607 ], [ -78.350509643554688, -3.4684898853302 ], [ -78.350135803222656, -3.466253995895329 ], [ -78.349899291992188, -3.463336944580078 ], [ -78.349876403808537, -3.460403919219971 ], [ -78.350196838378906, -3.455321073532104 ], [ -78.350349426269474, -3.453836917877197 ], [ -78.350517272949219, -3.452155113220215 ], [ -78.351043701171875, -3.446777105331421 ], [ -78.351638793945312, -3.441103935241699 ], [ -78.352569580078125, -3.432476997375488 ], [ -78.352706909179688, -3.431232929229679 ], [ -78.353614807128793, -3.422049999237061 ], [ -78.353897094726506, -3.418246030807495 ], [ -78.353927612304688, -3.415627956390324 ], [ -78.353935241699219, -3.415167093276978 ], [ -78.353675842285099, -3.412880897521973 ], [ -78.35308837890625, -3.411062955856323 ], [ -78.349472045898438, -3.404798984527531 ], [ -78.348144531249943, -3.401968955993652 ], [ -78.347755432128906, -3.400686025619507 ], [ -78.345535278320312, -3.393345117568913 ], [ -78.344924926757756, -3.39188098907465 ], [ -78.344322204589844, -3.391213893890324 ], [ -78.343666076660099, -3.391010999679565 ], [ -78.343315124511605, -3.390975952148381 ], [ -78.342864990234375, -3.390928983688298 ], [ -78.34161376953125, -3.390893936157227 ], [ -78.339607238769531, -3.39103794097889 ], [ -78.336647033691406, -3.391448020935002 ], [ -78.333160400390625, -3.392108917236328 ], [ -78.329673767089787, -3.392936944961491 ], [ -78.326622009277287, -3.393893957138005 ], [ -78.319953918457031, -3.396771907806283 ], [ -78.318572998046875, -3.397373914718514 ], [ -78.313766479492188, -3.399368047714233 ], [ -78.312110900878849, -3.399821996688786 ], [ -78.310844421386719, -3.399816989898625 ], [ -78.308197021484318, -3.399804115295353 ], [ -78.307960510253906, -3.399804115295353 ], [ -78.306327819824219, -3.400002002716064 ], [ -78.30548095703125, -3.400099992751962 ], [ -78.305313110351562, -3.400141000747624 ], [ -78.303268432617188, -3.400641918182373 ], [ -78.302070617675781, -3.40093207359314 ], [ -78.300361633300781, -3.40134406089777 ], [ -78.298286437988224, -3.401921033859196 ], [ -78.297782897949219, -3.402115106582585 ], [ -78.290641784667912, -3.404827117919865 ], [ -78.287994384765568, -3.405761003494263 ], [ -78.285537719726562, -3.406347036361637 ], [ -78.283172607421875, -3.406620025634709 ], [ -78.280685424804688, -3.406672954559326 ], [ -78.275077819824219, -3.406326055526733 ], [ -78.268653869628906, -3.405394077301025 ], [ -78.264198303222656, -3.404748916625977 ], [ -78.259109497070312, -3.404148101806584 ], [ -78.253898620605469, -3.403197050094604 ], [ -78.251358032226506, -3.403140068054199 ], [ -78.249061584472599, -3.404077053070012 ], [ -78.246932983398438, -3.407509088516235 ], [ -78.245941162109318, -3.410253047943115 ], [ -78.245071411132756, -3.412667036056519 ], [ -78.244186401367188, -3.416112899780217 ], [ -78.243728637695256, -3.417908906936646 ], [ -78.243171691894474, -3.421783924102783 ], [ -78.242973327636662, -3.42314600944519 ], [ -78.242523193359375, -3.426239013671875 ], [ -78.242164611816406, -3.42872595787037 ], [ -78.241683959960938, -3.430717945098877 ], [ -78.239669799804688, -3.434715032577458 ], [ -78.238929748535156, -3.436311006546021 ], [ -78.238204956054631, -3.438441991805973 ], [ -78.237495422363281, -3.441286087036076 ], [ -78.237236022949162, -3.44270396232605 ], [ -78.236854553222599, -3.444787025451603 ], [ -78.23663330078125, -3.44635701179493 ], [ -78.236274719238281, -3.448867082595825 ], [ -78.236213684081974, -3.449505090713444 ], [ -78.235794067382812, -3.453915119171143 ], [ -78.235389709472656, -3.458019971847477 ], [ -78.234931945800781, -3.465500116348267 ], [ -78.234748840332031, -3.468441963195744 ], [ -78.234603881835938, -3.470732927322331 ], [ -78.234542846679688, -3.471370935440063 ], [ -78.234161376953125, -3.475671052932682 ], [ -78.233718872070256, -3.480593919753915 ], [ -78.232444763183594, -3.491516113281193 ], [ -78.232330322265625, -3.492516994476205 ], [ -78.231590270996094, -3.49843788146967 ], [ -78.231338500976506, -3.499975919723511 ], [ -78.230972290038949, -3.502193927764836 ], [ -78.230949401855412, -3.502310037612801 ], [ -78.230705261230469, -3.503787040710392 ], [ -78.230064392089844, -3.50614595413208 ], [ -78.229866027832031, -3.506880044937077 ], [ -78.229522705078068, -3.508100986480713 ], [ -78.22796630859375, -3.511105060577393 ], [ -78.226181030273381, -3.513005971908569 ], [ -78.224411010742188, -3.514111042022648 ], [ -78.222747802734318, -3.51421594619751 ], [ -78.221122741699162, -3.513994932174683 ], [ -78.22003173828125, -3.513719081878662 ], [ -78.219718933105355, -3.5136399269104 ], [ -78.219406127929631, -3.513561964035034 ], [ -78.219306945800724, -3.513536930084229 ], [ -78.217178344726562, -3.512844085693359 ], [ -78.214958190917969, -3.511996030807495 ], [ -78.212936401367131, -3.511085033416748 ], [ -78.211349487304688, -3.510173082351685 ], [ -78.210060119628849, -3.509222984313908 ], [ -78.207145690917969, -3.506546974182129 ], [ -78.206253051757756, -3.50572395324707 ], [ -78.205963134765568, -3.505498886108285 ], [ -78.204864501953125, -3.504662036895752 ], [ -78.203414916992188, -3.503889083862305 ], [ -78.201873779296818, -3.503396987914982 ], [ -78.200180053710938, -3.503096103668156 ], [ -78.194152832031193, -3.502846002578735 ], [ -78.193138122558594, -3.501951932907104 ], [ -78.191970825195312, -3.501255035400277 ], [ -78.191749572753849, -3.501122951507568 ], [ -78.189987182617188, -3.500123977661076 ], [ -78.189071655273381, -3.499833106994572 ], [ -78.188232421874943, -3.499798059463501 ], [ -78.186248779296875, -3.499948978424015 ], [ -78.185249328613281, -3.499759912490788 ], [ -78.185066223144474, -3.499659061431828 ], [ -78.184532165527344, -3.499373912811279 ], [ -78.184150695800781, -3.499018907546997 ], [ -78.18386077880848, -3.498637914657593 ], [ -78.182769775390625, -3.496833086013794 ], [ -78.181274414062443, -3.494309902191105 ], [ -78.180419921874943, -3.492867946624699 ], [ -78.179702758789062, -3.492072105407658 ], [ -78.178947448730469, -3.491549968719482 ], [ -78.178314208984318, -3.491306066513062 ], [ -78.177772521972656, -3.491216897964421 ], [ -78.177268981933537, -3.491197109222412 ], [ -78.1766357421875, -3.491163015365601 ], [ -78.175643920898381, -3.491112947463932 ], [ -78.174285888671875, -3.490837097167912 ], [ -78.172904968261719, -3.490401983261052 ], [ -78.171409606933594, -3.489727020263672 ], [ -78.171005249023438, -3.489439964294434 ], [ -78.170509338378793, -3.489084005355835 ], [ -78.169937133788949, -3.488543987274113 ], [ -78.169364929199105, -3.487818956375065 ], [ -78.168830871582031, -3.486891984939575 ], [ -78.167251586914006, -3.483944892883301 ], [ -78.167098999023438, -3.48375296592701 ], [ -78.166160583496094, -3.482537984847966 ], [ -78.1654052734375, -3.48169994354248 ], [ -78.165260314941349, -3.481543064117375 ], [ -78.164131164550781, -3.480617046356144 ], [ -78.163276672363281, -3.480247974395752 ], [ -78.162025451660156, -3.480082035064697 ], [ -78.161026000976562, -3.480062961578369 ], [ -78.159599304199219, -3.479974031448251 ], [ -78.158859252929631, -3.479650974273625 ], [ -78.156425476074219, -3.478570938110295 ], [ -78.152832031249943, -3.47829008102417 ], [ -78.151329040527287, -3.477936983108464 ], [ -78.150787353515625, -3.477555990219116 ], [ -78.150421142578125, -3.477166891098022 ], [ -78.150039672851562, -3.47675609588623 ], [ -78.149314880371037, -3.475682973861637 ], [ -78.148681640625, -3.474379062652588 ], [ -78.148422241210938, -3.47346305847168 ], [ -78.148185729980412, -3.471889972686711 ], [ -78.148094177246037, -3.470065116882324 ], [ -78.148056030273438, -3.466734886169434 ], [ -78.148025512695312, -3.464178085327092 ], [ -78.147804260253849, -3.462762117385864 ], [ -78.147415161132756, -3.461878061294442 ], [ -78.147010803222656, -3.460848093032837 ], [ -78.146614074707031, -3.459837913513127 ], [ -78.146514892578125, -3.458959102630615 ], [ -78.146644592285099, -3.458498001098633 ], [ -78.147041320800724, -3.457964897155762 ], [ -78.148735046386662, -3.4561510086059 ], [ -78.148895263671875, -3.455677032470703 ], [ -78.149009704589844, -3.45532298088068 ], [ -78.149101257324219, -3.454313993453979 ], [ -78.149055480957031, -3.453072071075383 ], [ -78.148727416992188, -3.448911905288696 ], [ -78.148857116699162, -3.447304964065552 ], [ -78.149238586425724, -3.445892095565682 ], [ -78.149276733398438, -3.445758104324284 ], [ -78.149848937988281, -3.444490909576416 ], [ -78.150764465331974, -3.442867994308472 ], [ -78.151161193847656, -3.442251920700073 ], [ -78.152252197265625, -3.440620899200439 ], [ -78.152290344238224, -3.440500020980721 ], [ -78.152542114257812, -3.439811944961548 ], [ -78.15252685546875, -3.439342021942082 ], [ -78.152336120605469, -3.437814950942936 ], [ -78.151649475097656, -3.432914972305241 ], [ -78.151710510253849, -3.432504892349129 ], [ -78.151771545410156, -3.432137966155949 ], [ -78.152671813964787, -3.428936004638615 ], [ -78.152740478515568, -3.428692102432251 ], [ -78.153465270996094, -3.424880981445312 ], [ -78.154052734375, -3.423140048980713 ], [ -78.154281616210881, -3.422449111938477 ], [ -78.155006408691406, -3.420928955078068 ], [ -78.155349731445312, -3.42064189910883 ], [ -78.155776977539062, -3.420347929000854 ], [ -78.156455993652287, -3.419879913330021 ], [ -78.158332824707031, -3.418781995773315 ], [ -78.158699035644531, -3.418322086334172 ], [ -78.158836364746094, -3.417897939681893 ], [ -78.159332275390568, -3.415956020355225 ], [ -78.159744262695312, -3.415365934371948 ], [ -78.16015625, -3.415183067321721 ], [ -78.161224365234318, -3.414947986602726 ], [ -78.162200927734318, -3.41495490074152 ], [ -78.165229797363224, -3.415529966354313 ], [ -78.165878295898438, -3.415463924407845 ], [ -78.166595458984318, -3.415232896804753 ], [ -78.168083190917969, -3.414619922637939 ], [ -78.169425964355412, -3.414370059967041 ], [ -78.170944213867188, -3.414452075958195 ], [ -78.172660827636719, -3.414577007293701 ], [ -78.174156188964844, -3.414428949355965 ], [ -78.175239562988281, -3.414082050323429 ], [ -78.175949096679688, -3.413645029067993 ], [ -78.17645263671875, -3.413136959075871 ], [ -78.17694091796875, -3.412447929382211 ], [ -78.177810668945312, -3.41084098815918 ], [ -78.178504943847599, -3.409178018569946 ], [ -78.178855895996094, -3.408189058303833 ], [ -78.180130004882756, -3.404623985290414 ], [ -78.182563781738281, -3.398834943771362 ], [ -78.183013916015625, -3.397779941558838 ], [ -78.183143615722656, -3.397466897964421 ], [ -78.183799743652344, -3.395291090011597 ], [ -78.184356689453125, -3.392988920211792 ], [ -78.185211181640625, -3.389348983764648 ], [ -78.185432434082031, -3.388418912887516 ], [ -78.186050415039006, -3.385791063308659 ], [ -78.186614990234318, -3.384659051895085 ], [ -78.187377929687443, -3.383630990982056 ], [ -78.188911437988224, -3.381771087646484 ], [ -78.189315795898438, -3.380937099456673 ], [ -78.189216613769531, -3.380445003509465 ], [ -78.188835144042969, -3.380059003829956 ], [ -78.188262939453125, -3.379890918731689 ], [ -78.18646240234375, -3.379268884658813 ], [ -78.185874938964844, -3.379065990447941 ], [ -78.185768127441293, -3.378974914550724 ], [ -78.185295104980469, -3.378580093383789 ], [ -78.185165405273381, -3.378113031387329 ], [ -78.185333251953125, -3.377573013305664 ], [ -78.185539245605469, -3.377266883850041 ], [ -78.186241149902287, -3.376451969146672 ], [ -78.186607360839787, -3.376168966293335 ], [ -78.187225341796875, -3.375685930251962 ], [ -78.189720153808594, -3.373661994934025 ], [ -78.190399169921875, -3.372690916061345 ], [ -78.190780639648438, -3.371860980987549 ], [ -78.19085693359375, -3.371270895004272 ], [ -78.190650939941406, -3.370738029479924 ], [ -78.190238952636662, -3.370248079299927 ], [ -78.189765930175724, -3.369867086410522 ], [ -78.189277648925724, -3.369676113128605 ], [ -78.188598632812443, -3.369616031646615 ], [ -78.187507629394531, -3.369647979736214 ], [ -78.185531616210938, -3.369859933853149 ], [ -78.185073852539006, -3.369709968566895 ], [ -78.1842041015625, -3.369210958480835 ], [ -78.183654785156193, -3.368798017501831 ], [ -78.183074951171818, -3.368201017379704 ], [ -78.182144165038949, -3.367225885391122 ], [ -78.18017578125, -3.365135908126717 ], [ -78.179328918457031, -3.364828109741154 ], [ -78.175529479980412, -3.363241910934391 ], [ -78.173683166503906, -3.362242937087899 ], [ -78.172653198242188, -3.361479997634774 ], [ -78.171951293945312, -3.36076903343195 ], [ -78.170585632324162, -3.359143972396794 ], [ -78.169509887695312, -3.358284950256348 ], [ -78.168975830078068, -3.358074903488102 ], [ -78.168411254882699, -3.357935905456543 ], [ -78.167205810546875, -3.357712984084969 ], [ -78.1654052734375, -3.357357025146484 ], [ -78.165206909179688, -3.357317924499455 ], [ -78.163551330566406, -3.356663942336922 ], [ -78.162544250488281, -3.356040000915527 ], [ -78.161941528320312, -3.355469942092896 ], [ -78.161712646484318, -3.355142116546631 ], [ -78.161529541015568, -3.354872941970768 ], [ -78.160896301269531, -3.353595972061157 ], [ -78.159538269042912, -3.350702047348022 ], [ -78.158950805664006, -3.34945106506342 ], [ -78.158287048339787, -3.348522901534977 ], [ -78.157943725585938, -3.348264932632389 ], [ -78.156356811523438, -3.347126007080021 ], [ -78.155258178710938, -3.34606409072876 ], [ -78.154289245605412, -3.344849109649601 ], [ -78.153404235839787, -3.343368053436279 ], [ -78.152137756347656, -3.340820074081421 ], [ -78.151466369628906, -3.3399560451507 ], [ -78.151008605957031, -3.339605093002206 ], [ -78.14876556396473, -3.337821960449219 ], [ -78.148384094238168, -3.337114095687809 ], [ -78.147521972656193, -3.335117101669312 ], [ -78.147048950195199, -3.334583997726384 ], [ -78.146492004394531, -3.334310054779053 ], [ -78.145622253417969, -3.334100961685181 ], [ -78.143127441406193, -3.333451032638493 ], [ -78.141693115234318, -3.332822084426766 ], [ -78.140953063964844, -3.332021951675415 ], [ -78.140495300292969, -3.331402063369751 ], [ -78.139587402343693, -3.329890966415348 ], [ -78.138648986816349, -3.327878952026367 ], [ -78.137596130371037, -3.325205087661686 ], [ -78.135787963867131, -3.320245981216374 ], [ -78.135047912597656, -3.318816900253296 ], [ -78.13421630859375, -3.317843914031926 ], [ -78.131050109863281, -3.315118074417114 ], [ -78.129364013671875, -3.313174009323063 ], [ -78.1282958984375, -3.311624050140381 ], [ -78.127700805664062, -3.31041407585144 ], [ -78.124908447265568, -3.303900003433228 ], [ -78.124687194824219, -3.303585052490234 ], [ -78.124221801757756, -3.30292010307312 ], [ -78.123016357421761, -3.301573038101196 ], [ -78.121917724609375, -3.300759077072087 ], [ -78.118789672851506, -3.298742055892944 ], [ -78.117477416992131, -3.297897100448608 ], [ -78.116645812988281, -3.296902894973755 ], [ -78.113059997558594, -3.29200005531311 ], [ -78.112403869628849, -3.291424036026001 ], [ -78.111106872558594, -3.290520906448364 ], [ -78.109077453613224, -3.289345026016235 ], [ -78.108528137207031, -3.288700103759766 ], [ -78.108299255371037, -3.288239955901986 ], [ -78.106803894042855, -3.284657001495304 ], [ -78.106292724609318, -3.283759117126408 ], [ -78.104728698730469, -3.280997037887573 ], [ -78.104278564453125, -3.279771089553776 ], [ -78.104232788085938, -3.279062032699585 ], [ -78.104385375976506, -3.277981996536141 ], [ -78.104782104492131, -3.276973962783757 ], [ -78.10491943359375, -3.276628017425537 ], [ -78.1072998046875, -3.271712064742985 ], [ -78.107360839843693, -3.270905017852783 ], [ -78.10723876953125, -3.269810914993286 ], [ -78.106994628906136, -3.269287109374943 ], [ -78.106544494628906, -3.268698930740356 ], [ -78.105850219726449, -3.268013000488281 ], [ -78.104179382324219, -3.266361951828003 ], [ -78.103446960449162, -3.266005039215088 ], [ -78.103157043456974, -3.26590895652771 ], [ -78.102264404296875, -3.265621900558472 ], [ -78.100677490234318, -3.265469074249268 ], [ -78.095802307128849, -3.265180110931396 ], [ -78.095123291015625, -3.264875888824406 ], [ -78.094863891601506, -3.264564037322998 ], [ -78.094779968261662, -3.264456987380925 ], [ -78.094520568847656, -3.263997077941838 ], [ -78.094184875488224, -3.263016939163208 ], [ -78.094268798828125, -3.262521982192936 ], [ -78.094665527343693, -3.261873006820622 ], [ -78.095489501953125, -3.260983943939209 ], [ -78.096000671386662, -3.260710000991764 ], [ -78.097602844238281, -3.259947061538639 ], [ -78.098091125488224, -3.25941610336298 ], [ -78.098182678222656, -3.258991956710702 ], [ -78.098045349121094, -3.258326053619385 ], [ -78.097587585449219, -3.257285118102914 ], [ -78.096923828125, -3.256438970565796 ], [ -78.096786499023381, -3.256261110305786 ], [ -78.095825195312443, -3.255480051040593 ], [ -78.093986511230469, -3.254009962081852 ], [ -78.092887878417969, -3.253129959106388 ], [ -78.091880798339844, -3.252047061920166 ], [ -78.091354370117074, -3.251069068908691 ], [ -78.091148376464787, -3.250092029571533 ], [ -78.091094970703125, -3.24971604347229 ], [ -78.090606689453125, -3.246387958526611 ], [ -78.090194702148381, -3.24514102935791 ], [ -78.089851379394531, -3.244648933410531 ], [ -78.089347839355412, -3.244318962097168 ], [ -78.088951110839787, -3.244195938110238 ], [ -78.086685180664062, -3.243695974349976 ], [ -78.085922241210938, -3.243237972259521 ], [ -78.0855712890625, -3.242855072021484 ], [ -78.085433959960881, -3.242454051971436 ], [ -78.08544921875, -3.242017030715886 ], [ -78.085479736328125, -3.241898059844971 ], [ -78.085624694824162, -3.241369009017887 ], [ -78.085960388183594, -3.240751981735229 ], [ -78.086463928222599, -3.240120887756348 ], [ -78.087486267089844, -3.239166021347046 ], [ -78.088012695312443, -3.238662004470825 ], [ -78.088562011718693, -3.237857103347721 ], [ -78.088623046875, -3.237395048141366 ], [ -78.088485717773381, -3.236701965331974 ], [ -78.088195800781193, -3.236036062240487 ], [ -78.087661743164062, -3.23534107208252 ], [ -78.086692810058594, -3.234596014022827 ], [ -78.084602355957031, -3.233031988143807 ], [ -78.084167480468693, -3.232446908950806 ], [ -78.08392333984375, -3.231894969940129 ], [ -78.083747863769531, -3.231173038482666 ], [ -78.083755493164062, -3.230416059494019 ], [ -78.084068298339844, -3.229104995727482 ], [ -78.084396362304688, -3.228419065475407 ], [ -78.084938049316349, -3.227648973464909 ], [ -78.086212158203125, -3.225862026214543 ], [ -78.086372375488224, -3.225631952285767 ], [ -78.088020324707031, -3.223314046859684 ], [ -78.088195800781193, -3.222898960113525 ], [ -78.088562011718693, -3.222076892852783 ], [ -78.088699340820312, -3.221766948699951 ], [ -78.088867187499943, -3.221076011657715 ], [ -78.088836669921875, -3.220325946807861 ], [ -78.088607788085938, -3.219790935516301 ], [ -78.088111877441293, -3.219012975692635 ], [ -78.087516784667912, -3.21830511093134 ], [ -78.086868286132756, -3.217844009399357 ], [ -78.085746765136719, -3.217483997344971 ], [ -78.085166931152344, -3.217499971389714 ], [ -78.084518432617188, -3.217768907546997 ], [ -78.083709716796818, -3.218364000320435 ], [ -78.082801818847656, -3.219285011291504 ], [ -78.081283569335938, -3.221036911010742 ], [ -78.077217102050724, -3.225819110870304 ], [ -78.076042175292969, -3.227197885513306 ], [ -78.074409484863281, -3.228760957717839 ], [ -78.074119567871094, -3.228969097137337 ], [ -78.073211669921818, -3.229609012603703 ], [ -78.072257995605412, -3.229955911636353 ], [ -78.071357727050781, -3.229991912841797 ], [ -78.070365905761662, -3.229836940765381 ], [ -78.067947387695312, -3.229223966598511 ], [ -78.066619873046818, -3.228883981704655 ], [ -78.065315246581974, -3.228801965713501 ], [ -78.063980102539006, -3.229032993316594 ], [ -78.063629150390625, -3.229111909866333 ], [ -78.059104919433537, -3.23012900352478 ], [ -78.058303833007812, -3.229967117309513 ], [ -78.057815551757812, -3.229684114456177 ], [ -78.057495117187443, -3.229372024536133 ], [ -78.057243347167969, -3.228993892669621 ], [ -78.057113647460881, -3.228312015533447 ], [ -78.05712890625, -3.22754693031311 ], [ -78.057411193847656, -3.222358942031747 ], [ -78.057106018066349, -3.220894098281804 ], [ -78.056594848632812, -3.219306945800781 ], [ -78.056449890136605, -3.21881103515625 ], [ -78.055496215820199, -3.216610908508187 ], [ -78.054489135742188, -3.214680910110474 ], [ -78.052825927734261, -3.211824893951416 ], [ -78.051307678222656, -3.209664106368962 ], [ -78.050590515136719, -3.209091901779118 ], [ -78.050125122070256, -3.208961963653508 ], [ -78.049514770507812, -3.208862066268921 ], [ -78.047813415527344, -3.208761930465641 ], [ -78.047134399414062, -3.20888710021967 ], [ -78.044898986816349, -3.209563970565739 ], [ -78.043540954589787, -3.209805965423584 ], [ -78.041824340820256, -3.210108995437565 ], [ -78.040908813476562, -3.210042953491154 ], [ -78.040390014648438, -3.209800958633423 ], [ -78.039764404296875, -3.209304094314575 ], [ -78.039573669433594, -3.209108114242497 ], [ -78.039260864257756, -3.208785057067871 ], [ -78.038841247558594, -3.208076000213566 ], [ -78.03826904296875, -3.206758975982666 ], [ -78.03737640380848, -3.20417594909668 ], [ -78.036880493164006, -3.20223689079279 ], [ -78.036384582519531, -3.199209928512516 ], [ -78.035827636718693, -3.194950103759766 ], [ -78.035598754882812, -3.194456100463867 ], [ -78.035247802734318, -3.19395899772644 ], [ -78.034378051757812, -3.192819118499756 ], [ -78.033264160156193, -3.191720962524357 ], [ -78.031845092773324, -3.190578937530518 ], [ -78.030601501464787, -3.189776897430306 ], [ -78.028633117675781, -3.188817024230957 ], [ -78.027137756347599, -3.188251972198429 ], [ -78.025604248046875, -3.187813997268677 ], [ -78.023483276367188, -3.187392950057983 ], [ -78.022148132324219, -3.187283039092961 ], [ -78.020843505859318, -3.187374114990178 ], [ -78.019386291503906, -3.18772101402277 ], [ -78.018150329589844, -3.188184022903442 ], [ -78.017478942871094, -3.188431978225594 ], [ -78.016281127929631, -3.189028978347721 ], [ -78.010612487792969, -3.192213058471623 ], [ -78.009765625, -3.192423105239868 ], [ -78.0089111328125, -3.192322015762215 ], [ -78.007896423339787, -3.192009925842285 ], [ -78.007171630859375, -3.191572904586792 ], [ -78.006614685058594, -3.191016912460327 ], [ -78.005989074706974, -3.190169095992985 ], [ -78.005073547363281, -3.188447952270508 ], [ -78.004562377929631, -3.187182903289738 ], [ -78.003898620605412, -3.185046911239567 ], [ -78.003326416015568, -3.182015895843506 ], [ -78.003158569335938, -3.180416107177678 ], [ -78.003234863281136, -3.179418087005558 ], [ -78.003585815429631, -3.177463054656926 ], [ -78.004058837890568, -3.176006078720093 ], [ -78.004814147949219, -3.174221992492676 ], [ -78.006362915039006, -3.170833587646484 ], [ -78.007164001464844, -3.16907811164856 ], [ -78.007232666015568, -3.168893098831177 ], [ -78.007789611816349, -3.166759967803955 ], [ -78.0079345703125, -3.165549039840641 ], [ -78.007965087890625, -3.163292884826603 ], [ -78.007720947265625, -3.161493062973022 ], [ -78.007400512695256, -3.16044902801508 ], [ -78.006874084472656, -3.159600973129272 ], [ -78.006805419921875, -3.159502983093205 ], [ -78.005859375, -3.158144950866699 ], [ -78.004959106445312, -3.156953096389714 ], [ -78.003898620605412, -3.155910968780461 ], [ -78.002716064453125, -3.154912948608342 ], [ -78.001739501953125, -3.154186010360718 ], [ -78.000419616699219, -3.153206110000554 ], [ -77.993301391601506, -3.148682117462101 ], [ -77.991172790527344, -3.147052049636841 ], [ -77.990043640136662, -3.145998954772949 ], [ -77.988807678222599, -3.144629001617375 ], [ -77.987670898437443, -3.143122911453247 ], [ -77.986640930175668, -3.141448020935059 ], [ -77.985580444335881, -3.139399051666146 ], [ -77.984848022460938, -3.137748956680241 ], [ -77.984443664550724, -3.136476993560791 ], [ -77.983993530273438, -3.134660005569458 ], [ -77.981430053710938, -3.122565031051579 ], [ -77.980506896972599, -3.119322061538696 ], [ -77.980049133300724, -3.118328094482365 ], [ -77.979499816894531, -3.1177721023559 ], [ -77.978904724121037, -3.117412090301514 ], [ -77.978225708007756, -3.117362022399846 ], [ -77.977508544921875, -3.117439031600895 ], [ -77.976821899414062, -3.117614984512272 ], [ -77.972434997558594, -3.118925094604492 ], [ -77.970817565917969, -3.11904406547535 ], [ -77.969688415527344, -3.118827104568425 ], [ -77.968887329101506, -3.118474006652718 ], [ -77.968276977539062, -3.118016004562321 ], [ -77.967735290527287, -3.117347955703679 ], [ -77.967247009277287, -3.116491079330444 ], [ -77.967094421386719, -3.115942001342773 ], [ -77.966842651367188, -3.114736080169621 ], [ -77.965248107910099, -3.107075929641667 ], [ -77.964462280273438, -3.104617118835449 ], [ -77.963905334472656, -3.103374958038273 ], [ -77.963066101074162, -3.102183103561401 ], [ -77.960784912109318, -3.09975790977478 ], [ -77.960319519042855, -3.098964929580688 ], [ -77.960052490234375, -3.098018884658813 ], [ -77.959953308105469, -3.096766948699894 ], [ -77.960014343261662, -3.094650030135995 ], [ -77.959823608398381, -3.093854904174805 ], [ -77.959609985351562, -3.093585968017578 ], [ -77.958892822265625, -3.093040943145752 ], [ -77.957733154296818, -3.092525959014779 ], [ -77.955848693847656, -3.091958045959416 ], [ -77.954399108886662, -3.091600894927922 ], [ -77.950736999511719, -3.090720891952458 ], [ -77.948532104492188, -3.089972972869873 ], [ -77.937911987304688, -3.080497026443425 ], [ -77.900001525878906, -3.0464670658111 ], [ -77.860458374023381, -3.010809898376465 ], [ -77.859909057617188, -3.010313034057617 ], [ -77.845581054687443, -2.998627901077214 ], [ -77.844284057617188, -2.99790096282959 ], [ -77.842422485351506, -2.996855020523014 ], [ -77.840225219726506, -2.995621919631958 ], [ -77.834098815917969, -2.992182016372624 ], [ -77.820091247558594, -2.986960887908936 ], [ -77.817161560058537, -2.98586893081665 ], [ -77.812911987304688, -2.984379053115845 ], [ -77.810989379882812, -2.98843598365778 ], [ -77.812431335449219, -2.988934993743896 ], [ -77.810676574706974, -2.9914870262146 ], [ -77.808174133300724, -2.994021892547607 ], [ -77.80731201171875, -2.995534896850529 ], [ -77.807548522949219, -2.998398065567017 ], [ -77.806983947753906, -3.000415086746102 ], [ -77.807846069335938, -3.003539085388184 ], [ -77.807945251464844, -3.004975080490112 ], [ -77.807144165039006, -3.011581897735596 ], [ -77.806266784667912, -3.016074895858765 ], [ -77.805183410644531, -3.019114971160889 ], [ -77.804351806640625, -3.020745038986149 ], [ -77.801048278808537, -3.0251429080962 ], [ -77.799079895019531, -3.030011892318669 ], [ -77.792694091796875, -3.048460960388184 ], [ -77.791671752929688, -3.053875923156681 ], [ -77.791717529296875, -3.056406021118107 ], [ -77.7908935546875, -3.061162948608342 ], [ -77.79052734375, -3.10093092918396 ], [ -77.789451599121094, -3.114161968231201 ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-ANC", "NAME_0": "Peru", "ID_1": 2, "NAME_1": "Ancash", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": "Ancachs" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.242080688476562, -9.894859313964787 ], [ -78.242080688476562, -9.895415306091252 ], [ -78.241806030273438, -9.895415306091252 ], [ -78.241806030273438, -9.895695686340332 ], [ -78.241249084472599, -9.895695686340332 ], [ -78.241249084472599, -9.895972251892033 ], [ -78.240974426269474, -9.895972251892033 ], [ -78.240974426269474, -9.896249771118107 ], [ -78.240692138671818, -9.896249771118107 ], [ -78.240692138671818, -9.897640228271428 ], [ -78.241249084472599, -9.897638320922852 ], [ -78.241249084472599, -9.897917747497559 ], [ -78.242637634277344, -9.897917747497559 ], [ -78.242637634277344, -9.898194313049316 ], [ -78.242919921875, -9.898194313049316 ], [ -78.242919921875, -9.898471832275334 ], [ -78.243194580078125, -9.898471832275334 ], [ -78.243194580078125, -9.898750305175781 ], [ -78.24346923828125, -9.898750305175781 ], [ -78.24346923828125, -9.899862289428654 ], [ -78.244308471679631, -9.899862289428654 ], [ -78.244308471679631, -9.899306297302189 ], [ -78.244583129882756, -9.899306297302189 ], [ -78.244583129882756, -9.898750305175781 ], [ -78.244026184081974, -9.898750305175781 ], [ -78.244026184081974, -9.897917747497559 ], [ -78.243751525878793, -9.897917747497559 ], [ -78.243751525878793, -9.897084236144963 ], [ -78.244308471679631, -9.897084236144963 ], [ -78.244308471679631, -9.896249771118107 ], [ -78.244583129882756, -9.896249771118107 ], [ -78.244583129882756, -9.895139694213867 ], [ -78.24346923828125, -9.895139694213867 ], [ -78.24346923828125, -9.896249771118107 ], [ -78.242637634277344, -9.896249771118107 ], [ -78.242637634277344, -9.894859313964787 ], [ -78.242080688476562, -9.894859313964787 ] ] ], [ [ [ -78.241806030273438, -9.878749847412053 ], [ -78.241806030273438, -9.879028320312443 ], [ -78.241531372070256, -9.879028320312443 ], [ -78.241531372070256, -9.879582405090332 ], [ -78.241249084472599, -9.879582405090332 ], [ -78.241249084472599, -9.879859924316406 ], [ -78.240974426269474, -9.879859924316406 ], [ -78.240974426269474, -9.880138397216797 ], [ -78.240692138671818, -9.880138397216797 ], [ -78.240692138671818, -9.880694389343262 ], [ -78.24041748046875, -9.880694389343262 ], [ -78.24041748046875, -9.880972862243652 ], [ -78.240135192871094, -9.880970001220703 ], [ -78.240135192871094, -9.881525993347168 ], [ -78.239860534667969, -9.881525993347168 ], [ -78.239860534667969, -9.881804466247559 ], [ -78.24041748046875, -9.881804466247559 ], [ -78.24041748046875, -9.882081985473633 ], [ -78.240692138671818, -9.882081985473633 ], [ -78.240692138671818, -9.882361412048226 ], [ -78.240974426269474, -9.882361412048226 ], [ -78.240974426269474, -9.882638931274414 ], [ -78.241249084472599, -9.882638931274414 ], [ -78.241249084472599, -9.882361412048226 ], [ -78.241531372070256, -9.882361412048226 ], [ -78.241531372070256, -9.881804466247559 ], [ -78.241806030273438, -9.881804466247559 ], [ -78.241806030273438, -9.881525993347168 ], [ -78.242080688476562, -9.881528854370117 ], [ -78.242080688476562, -9.880694389343262 ], [ -78.242362976074219, -9.880694389343262 ], [ -78.242362976074219, -9.880138397216797 ], [ -78.242637634277344, -9.880138397216797 ], [ -78.242637634277344, -9.879582405090332 ], [ -78.242362976074219, -9.879582405090332 ], [ -78.242362976074219, -9.879028320312443 ], [ -78.242080688476562, -9.879028320312443 ], [ -78.242080688476562, -9.878749847412053 ], [ -78.241806030273438, -9.878749847412053 ] ] ], [ [ [ -78.252639770507812, -9.869028091430664 ], [ -78.252639770507812, -9.869861602783146 ], [ -78.252357482910156, -9.869861602783146 ], [ -78.252357482910156, -9.8709716796875 ], [ -78.252082824707031, -9.8709716796875 ], [ -78.252082824707031, -9.871806144714355 ], [ -78.252357482910156, -9.871804237365666 ], [ -78.252357482910156, -9.872360229492131 ], [ -78.252914428710938, -9.87236213684082 ], [ -78.252914428710938, -9.87208366394043 ], [ -78.253196716308594, -9.87208366394043 ], [ -78.253196716308594, -9.871804237365666 ], [ -78.253753662109318, -9.871806144714355 ], [ -78.253753662109318, -9.871527671813965 ], [ -78.254859924316406, -9.871527671813965 ], [ -78.254859924316406, -9.8709716796875 ], [ -78.255142211914062, -9.8709716796875 ], [ -78.255142211914062, -9.869861602783146 ], [ -78.254859924316406, -9.869861602783146 ], [ -78.254859924316406, -9.869305610656738 ], [ -78.253196716308594, -9.869305610656738 ], [ -78.253196716308594, -9.869028091430664 ], [ -78.252639770507812, -9.869028091430664 ] ] ], [ [ [ -78.299026489257812, -9.719581604003849 ], [ -78.299026489257812, -9.720138549804631 ], [ -78.298751831054631, -9.720138549804631 ], [ -78.298751831054631, -9.720973014831486 ], [ -78.298469543456974, -9.720970153808594 ], [ -78.298469543456974, -9.722360610961914 ], [ -78.298751831054631, -9.722360610961914 ], [ -78.298751831054631, -9.722639083862305 ], [ -78.299308776855469, -9.722639083862305 ], [ -78.299308776855469, -9.722916603088379 ], [ -78.3004150390625, -9.722916603088379 ], [ -78.3004150390625, -9.722639083862305 ], [ -78.300697326660156, -9.722639083862305 ], [ -78.300697326660156, -9.72125053405756 ], [ -78.300971984863168, -9.72125053405756 ], [ -78.300971984863168, -9.720694541931096 ], [ -78.301246643066349, -9.720694541931096 ], [ -78.301246643066349, -9.720417022705021 ], [ -78.300971984863168, -9.720417022705021 ], [ -78.300971984863168, -9.720138549804631 ], [ -78.300697326660156, -9.720138549804631 ], [ -78.300697326660156, -9.71986007690424 ], [ -78.3004150390625, -9.71986007690424 ], [ -78.3004150390625, -9.719581604003849 ], [ -78.299026489257812, -9.719581604003849 ] ] ], [ [ [ -78.307083129882812, -9.698195457458439 ], [ -78.307083129882812, -9.69847297668457 ], [ -78.306808471679688, -9.698471069335938 ], [ -78.306808471679688, -9.698748588561955 ], [ -78.305137634277287, -9.698748588561955 ], [ -78.305137634277287, -9.699028968811035 ], [ -78.304580688476506, -9.699027061462402 ], [ -78.304580688476506, -9.700139045715275 ], [ -78.304862976074162, -9.700139045715275 ], [ -78.304862976074162, -9.700416564941349 ], [ -78.305137634277287, -9.700416564941349 ], [ -78.305137634277287, -9.70069503784174 ], [ -78.30596923828125, -9.70069503784174 ], [ -78.30596923828125, -9.700416564941349 ], [ -78.306251525878906, -9.700416564941349 ], [ -78.306251525878906, -9.700139045715275 ], [ -78.306808471679688, -9.700139045715275 ], [ -78.306808471679688, -9.699860572814885 ], [ -78.308471679687443, -9.699860572814885 ], [ -78.308471679687443, -9.69958305358881 ], [ -78.308746337890625, -9.69958305358881 ], [ -78.308746337890625, -9.699027061462402 ], [ -78.308471679687443, -9.699028968811035 ], [ -78.308471679687443, -9.698748588561955 ], [ -78.308197021484318, -9.698748588561955 ], [ -78.308197021484318, -9.698471069335938 ], [ -78.307914733886662, -9.69847297668457 ], [ -78.307914733886662, -9.698195457458439 ], [ -78.307083129882812, -9.698195457458439 ] ] ], [ [ [ -78.370140075683594, -9.608194351196289 ], [ -78.370140075683594, -9.608750343322754 ], [ -78.369857788085938, -9.608750343322754 ], [ -78.369857788085938, -9.60958194732666 ], [ -78.370140075683594, -9.60958194732666 ], [ -78.370140075683594, -9.610137939453125 ], [ -78.370697021484375, -9.610137939453125 ], [ -78.370697021484375, -9.610416412353516 ], [ -78.370414733886719, -9.610416412353516 ], [ -78.370414733886719, -9.61069393157959 ], [ -78.370697021484375, -9.61069393157959 ], [ -78.370697021484375, -9.61097240447998 ], [ -78.370414733886719, -9.61097240447998 ], [ -78.370414733886719, -9.611250877380371 ], [ -78.369857788085938, -9.611248016357365 ], [ -78.369857788085938, -9.611804008483773 ], [ -78.370140075683594, -9.611804008483773 ], [ -78.370140075683594, -9.612360000610352 ], [ -78.370414733886719, -9.612360000610352 ], [ -78.370414733886719, -9.613195419311467 ], [ -78.370697021484375, -9.613195419311467 ], [ -78.370697021484375, -9.613751411437931 ], [ -78.371528625488224, -9.613751411437931 ], [ -78.371528625488224, -9.613195419311467 ], [ -78.371803283691349, -9.613195419311467 ], [ -78.371803283691349, -9.611804008483773 ], [ -78.371528625488224, -9.611804008483773 ], [ -78.371528625488224, -9.611248016357365 ], [ -78.371803283691349, -9.611250877380371 ], [ -78.371803283691349, -9.61097240447998 ], [ -78.372085571289006, -9.61097240447998 ], [ -78.372085571289006, -9.609027862548771 ], [ -78.371803283691349, -9.609027862548771 ], [ -78.371803283691349, -9.608750343322754 ], [ -78.371246337890568, -9.608750343322754 ], [ -78.371246337890568, -9.608471870422363 ], [ -78.370971679687386, -9.608471870422363 ], [ -78.370971679687386, -9.608194351196289 ], [ -78.370140075683594, -9.608194351196289 ] ] ], [ [ [ -78.370140075683594, -9.600139617919922 ], [ -78.370140075683594, -9.60069370269764 ], [ -78.369857788085938, -9.60069370269764 ], [ -78.369857788085938, -9.602359771728459 ], [ -78.370140075683594, -9.602359771728459 ], [ -78.370140075683594, -9.604027748107853 ], [ -78.369857788085938, -9.604027748107853 ], [ -78.369857788085938, -9.604583740234375 ], [ -78.369583129882812, -9.604583740234375 ], [ -78.369583129882812, -9.605137825012207 ], [ -78.369857788085938, -9.605137825012207 ], [ -78.369857788085938, -9.60624980926508 ], [ -78.370414733886719, -9.60624980926508 ], [ -78.370414733886719, -9.606528282165471 ], [ -78.371246337890568, -9.606528282165471 ], [ -78.371246337890568, -9.60624980926508 ], [ -78.371528625488224, -9.60624980926508 ], [ -78.371528625488224, -9.605693817138615 ], [ -78.371246337890568, -9.605693817138615 ], [ -78.371246337890568, -9.604860305786133 ], [ -78.370971679687386, -9.604862213134709 ], [ -78.370971679687386, -9.604306221008244 ], [ -78.371803283691349, -9.604306221008244 ], [ -78.371803283691349, -9.603750228881779 ], [ -78.371528625488224, -9.603750228881779 ], [ -78.371528625488224, -9.602915763854924 ], [ -78.371246337890568, -9.602915763854924 ], [ -78.371246337890568, -9.602638244628849 ], [ -78.373191833496094, -9.602638244628849 ], [ -78.373191833496094, -9.602915763854924 ], [ -78.37347412109375, -9.602915763854924 ], [ -78.37347412109375, -9.603471755981388 ], [ -78.373748779296875, -9.603471755981388 ], [ -78.373748779296875, -9.603750228881779 ], [ -78.374031066894531, -9.603750228881779 ], [ -78.374031066894531, -9.604027748107853 ], [ -78.375137329101506, -9.604027748107853 ], [ -78.375137329101506, -9.603471755981388 ], [ -78.374862670898381, -9.603471755981388 ], [ -78.374862670898381, -9.602915763854924 ], [ -78.374580383300724, -9.602915763854924 ], [ -78.374580383300724, -9.602638244628849 ], [ -78.374305725097599, -9.602640151977539 ], [ -78.374305725097599, -9.602359771728459 ], [ -78.374031066894531, -9.602359771728459 ], [ -78.374031066894531, -9.602082252502441 ], [ -78.373191833496094, -9.602084159851074 ], [ -78.373191833496094, -9.601805686950684 ], [ -78.372642517089844, -9.601805686950684 ], [ -78.372642517089844, -9.601249694824219 ], [ -78.372360229492188, -9.601249694824219 ], [ -78.372360229492188, -9.60069370269764 ], [ -78.371803283691349, -9.60069370269764 ], [ -78.371803283691349, -9.600416183471623 ], [ -78.371246337890568, -9.600416183471623 ], [ -78.371246337890568, -9.600139617919922 ], [ -78.370140075683594, -9.600139617919922 ] ] ], [ [ [ -78.387359619140568, -9.542915344238281 ], [ -78.387359619140568, -9.543195724487248 ], [ -78.387084960937443, -9.543195724487248 ], [ -78.387084960937443, -9.543471336364746 ], [ -78.38680267333973, -9.543471336364746 ], [ -78.38680267333973, -9.543748855590763 ], [ -78.386528015136719, -9.543748855590763 ], [ -78.386528015136719, -9.544304847717228 ], [ -78.386253356933594, -9.544304847717228 ], [ -78.386253356933594, -9.544584274291992 ], [ -78.385139465332031, -9.544584274291992 ], [ -78.385139465332031, -9.544304847717228 ], [ -78.384864807128849, -9.544304847717228 ], [ -78.384864807128849, -9.544584274291992 ], [ -78.384582519531193, -9.544584274291992 ], [ -78.384582519531193, -9.545140266418457 ], [ -78.384307861328068, -9.545137405395508 ], [ -78.384307861328068, -9.545417785644474 ], [ -78.385139465332031, -9.545417785644474 ], [ -78.385139465332031, -9.545971870422363 ], [ -78.384864807128849, -9.545971870422363 ], [ -78.384864807128849, -9.546250343322754 ], [ -78.385696411132812, -9.546250343322754 ], [ -78.385696411132812, -9.545971870422363 ], [ -78.386253356933594, -9.545971870422363 ], [ -78.386253356933594, -9.545693397521973 ], [ -78.386528015136719, -9.545693397521973 ], [ -78.386528015136719, -9.545137405395508 ], [ -78.387084960937443, -9.545140266418457 ], [ -78.387084960937443, -9.544584274291992 ], [ -78.387359619140568, -9.544584274291992 ], [ -78.387359619140568, -9.544027328491211 ], [ -78.387641906738224, -9.544027328491211 ], [ -78.387641906738224, -9.542915344238281 ], [ -78.387359619140568, -9.542915344238281 ] ] ], [ [ [ -78.441253662109318, -9.37458324432373 ], [ -78.441253662109318, -9.375139236450138 ], [ -78.440971374511605, -9.375139236450138 ], [ -78.440971374511605, -9.375416755676213 ], [ -78.440139770507812, -9.375416755676213 ], [ -78.440139770507812, -9.377082824707031 ], [ -78.439308166503906, -9.377082824707031 ], [ -78.439308166503906, -9.377638816833496 ], [ -78.439582824707031, -9.377638816833496 ], [ -78.439582824707031, -9.377917289733887 ], [ -78.43902587890625, -9.377917289733887 ], [ -78.43902587890625, -9.378473281860352 ], [ -78.438751220703068, -9.378473281860352 ], [ -78.438751220703068, -9.379027366638184 ], [ -78.43902587890625, -9.379027366638184 ], [ -78.43902587890625, -9.379304885864258 ], [ -78.439308166503906, -9.379304885864258 ], [ -78.439308166503906, -9.379583358764648 ], [ -78.438751220703068, -9.379583358764648 ], [ -78.438751220703068, -9.381805419921875 ], [ -78.43902587890625, -9.381805419921875 ], [ -78.43902587890625, -9.38263988494873 ], [ -78.439857482910156, -9.382637023925724 ], [ -78.439857482910156, -9.384305953979435 ], [ -78.441528320312443, -9.384305953979435 ], [ -78.441528320312443, -9.384584426879826 ], [ -78.442085266113224, -9.384584426879826 ], [ -78.442085266113224, -9.385136604309025 ], [ -78.442916870117188, -9.385136604309025 ], [ -78.442916870117188, -9.385417938232365 ], [ -78.443473815917969, -9.385416030883789 ], [ -78.443473815917969, -9.386528015136719 ], [ -78.443748474121094, -9.386528015136719 ], [ -78.443748474121094, -9.386249542236271 ], [ -78.445693969726562, -9.386249542236271 ], [ -78.445693969726562, -9.385693550109863 ], [ -78.445968627929688, -9.385693550109863 ], [ -78.445968627929688, -9.385136604309025 ], [ -78.446250915527344, -9.385136604309025 ], [ -78.446250915527344, -9.384305953979435 ], [ -78.446525573730469, -9.384305953979435 ], [ -78.446525573730469, -9.383749008178654 ], [ -78.446807861328125, -9.383749008178654 ], [ -78.446807861328125, -9.383193016052189 ], [ -78.446250915527344, -9.383193016052189 ], [ -78.446250915527344, -9.382637023925724 ], [ -78.445968627929688, -9.38263988494873 ], [ -78.445968627929688, -9.380695343017578 ], [ -78.445693969726562, -9.380695343017578 ], [ -78.445693969726562, -9.380139350891113 ], [ -78.445968627929688, -9.380139350891113 ], [ -78.445968627929688, -9.379860877990723 ], [ -78.446250915527344, -9.379860877990723 ], [ -78.446250915527344, -9.379027366638184 ], [ -78.445968627929688, -9.379027366638184 ], [ -78.445968627929688, -9.378748893737793 ], [ -78.445693969726562, -9.378748893737793 ], [ -78.445693969726562, -9.378194808959904 ], [ -78.445419311523381, -9.378194808959904 ], [ -78.445419311523381, -9.377361297607422 ], [ -78.445693969726562, -9.377361297607422 ], [ -78.445693969726562, -9.376526832580566 ], [ -78.445419311523381, -9.376526832580566 ], [ -78.445419311523381, -9.376805305480957 ], [ -78.444305419921818, -9.376805305480957 ], [ -78.444305419921818, -9.376526832580566 ], [ -78.44403076171875, -9.376526832580566 ], [ -78.44403076171875, -9.375970840454102 ], [ -78.443191528320312, -9.375970840454102 ], [ -78.443191528320312, -9.375695228576603 ], [ -78.442916870117188, -9.375695228576603 ], [ -78.442916870117188, -9.375416755676213 ], [ -78.442642211914062, -9.375416755676213 ], [ -78.442642211914062, -9.375139236450138 ], [ -78.442359924316406, -9.375139236450138 ], [ -78.442359924316406, -9.374860763549748 ], [ -78.441528320312443, -9.374860763549748 ], [ -78.441528320312443, -9.37458324432373 ], [ -78.441253662109318, -9.37458324432373 ] ] ], [ [ [ -78.465415954589844, -9.339584350585938 ], [ -78.465415954589844, -9.339859962463322 ], [ -78.464302062988224, -9.339859962463322 ], [ -78.464302062988224, -9.340415954589844 ], [ -78.464027404785099, -9.340415954589844 ], [ -78.464027404785099, -9.340694427490178 ], [ -78.463470458984318, -9.340694427490178 ], [ -78.463470458984318, -9.340971946716309 ], [ -78.46319580078125, -9.340970039367676 ], [ -78.46319580078125, -9.341250419616699 ], [ -78.462913513183594, -9.341250419616699 ], [ -78.462913513183594, -9.341527938842773 ], [ -78.462364196777344, -9.341526031494084 ], [ -78.462364196777344, -9.341807365417424 ], [ -78.462081909179688, -9.341807365417424 ], [ -78.462081909179688, -9.342082023620549 ], [ -78.461807250976562, -9.342082023620549 ], [ -78.461807250976562, -9.342359542846623 ], [ -78.461524963378906, -9.342359542846623 ], [ -78.461524963378906, -9.342638015747013 ], [ -78.461250305175724, -9.342638015747013 ], [ -78.461250305175724, -9.342915534973031 ], [ -78.460975646972599, -9.342915534973031 ], [ -78.460975646972599, -9.343194961547795 ], [ -78.460693359374943, -9.343192100524902 ], [ -78.460693359374943, -9.343748092651367 ], [ -78.460418701171818, -9.343748092651367 ], [ -78.460418701171818, -9.344304084777832 ], [ -78.460136413574162, -9.344304084777832 ], [ -78.460136413574162, -9.345138549804688 ], [ -78.459861755371094, -9.345138549804688 ], [ -78.459861755371094, -9.345694541931096 ], [ -78.459587097167969, -9.345694541931096 ], [ -78.459587097167969, -9.346248626708984 ], [ -78.459861755371094, -9.346248626708984 ], [ -78.459861755371094, -9.346529006957951 ], [ -78.459587097167969, -9.346527099609375 ], [ -78.459587097167969, -9.346804618835449 ], [ -78.460136413574162, -9.346804618835449 ], [ -78.460136413574162, -9.34708309173584 ], [ -78.458747863769531, -9.34708309173584 ], [ -78.458747863769531, -9.347916603088379 ], [ -78.459587097167969, -9.347916603088379 ], [ -78.459587097167969, -9.347639083862305 ], [ -78.460693359374943, -9.347639083862305 ], [ -78.460693359374943, -9.347916603088379 ], [ -78.460975646972599, -9.347916603088379 ], [ -78.460975646972599, -9.34819507598877 ], [ -78.461250305175724, -9.34819507598877 ], [ -78.461250305175724, -9.347916603088379 ], [ -78.462364196777344, -9.347916603088379 ], [ -78.462364196777344, -9.34819507598877 ], [ -78.462638854980469, -9.34819316864008 ], [ -78.462638854980469, -9.348472595214844 ], [ -78.46319580078125, -9.348472595214844 ], [ -78.46319580078125, -9.350138664245605 ], [ -78.462913513183594, -9.350138664245605 ], [ -78.462913513183594, -9.350973129272461 ], [ -78.46319580078125, -9.350973129272461 ], [ -78.46319580078125, -9.351527214050236 ], [ -78.463752746581974, -9.351527214050236 ], [ -78.463752746581974, -9.35180473327631 ], [ -78.464302062988224, -9.35180473327631 ], [ -78.464302062988224, -9.352083206176701 ], [ -78.465141296386719, -9.352083206176701 ], [ -78.465141296386719, -9.35180473327631 ], [ -78.46624755859375, -9.35180473327631 ], [ -78.46624755859375, -9.351527214050236 ], [ -78.467086791992131, -9.351527214050236 ], [ -78.467086791992131, -9.351248741149846 ], [ -78.468475341796875, -9.351248741149846 ], [ -78.468475341796875, -9.350973129272461 ], [ -78.469581604003793, -9.350973129272461 ], [ -78.469581604003793, -9.35180473327631 ], [ -78.470138549804631, -9.35180473327631 ], [ -78.470138549804631, -9.351527214050236 ], [ -78.470413208007756, -9.351527214050236 ], [ -78.470413208007756, -9.351248741149846 ], [ -78.470695495605412, -9.351248741149846 ], [ -78.470695495605412, -9.350973129272461 ], [ -78.47125244140625, -9.350973129272461 ], [ -78.47125244140625, -9.350415229797306 ], [ -78.471527099609375, -9.350417137145996 ], [ -78.471527099609375, -9.350138664245605 ], [ -78.4718017578125, -9.350138664245605 ], [ -78.471809387207031, -9.349859237670898 ], [ -78.472084045410156, -9.349859237670898 ], [ -78.472084045410156, -9.34819316864008 ], [ -78.47125244140625, -9.34819316864008 ], [ -78.47125244140625, -9.347639083862305 ], [ -78.470970153808594, -9.347639083862305 ], [ -78.470970153808594, -9.346804618835449 ], [ -78.470695495605412, -9.346804618835449 ], [ -78.470695495605412, -9.346527099609375 ], [ -78.470413208007756, -9.346527099609375 ], [ -78.470413208007756, -9.34597110748291 ], [ -78.470138549804631, -9.345973014831543 ], [ -78.470138549804631, -9.345694541931096 ], [ -78.469863891601506, -9.345694541931096 ], [ -78.469863891601506, -9.345417022705078 ], [ -78.469024658203125, -9.345417022705078 ], [ -78.469024658203125, -9.345138549804688 ], [ -78.467918395996094, -9.345138549804688 ], [ -78.467918395996094, -9.345694541931096 ], [ -78.467636108398438, -9.345694541931096 ], [ -78.467636108398438, -9.345973014831543 ], [ -78.46624755859375, -9.34597110748291 ], [ -78.46624755859375, -9.346248626708984 ], [ -78.465972900390625, -9.346248626708984 ], [ -78.465972900390625, -9.346529006957951 ], [ -78.465141296386719, -9.346529006957951 ], [ -78.465141296386719, -9.346248626708984 ], [ -78.464859008789062, -9.346248626708984 ], [ -78.464859008789062, -9.34597110748291 ], [ -78.464584350585938, -9.345973014831543 ], [ -78.464584350585938, -9.345694541931096 ], [ -78.464859008789062, -9.345694541931096 ], [ -78.464859008789062, -9.345138549804688 ], [ -78.464584350585938, -9.345138549804688 ], [ -78.464584350585938, -9.344861030578613 ], [ -78.464302062988224, -9.344861030578613 ], [ -78.464302062988224, -9.343473434448242 ], [ -78.464584350585938, -9.343473434448242 ], [ -78.464584350585938, -9.342915534973031 ], [ -78.465141296386719, -9.342915534973031 ], [ -78.465141296386719, -9.342638015747013 ], [ -78.465415954589844, -9.342638015747013 ], [ -78.465415954589844, -9.342359542846623 ], [ -78.4656982421875, -9.342359542846623 ], [ -78.4656982421875, -9.342082023620549 ], [ -78.465972900390625, -9.342082023620549 ], [ -78.465972900390625, -9.341807365417424 ], [ -78.46624755859375, -9.341807365417424 ], [ -78.46624755859375, -9.340970039367676 ], [ -78.466529846191293, -9.340971946716309 ], [ -78.466529846191293, -9.340138435363713 ], [ -78.465972900390625, -9.340138435363713 ], [ -78.465972900390625, -9.339859962463322 ], [ -78.4656982421875, -9.339859962463322 ], [ -78.4656982421875, -9.339584350585938 ], [ -78.465415954589844, -9.339584350585938 ] ] ], [ [ [ -78.617362976074219, -9.146805763244572 ], [ -78.617362976074219, -9.14708423614502 ], [ -78.616806030273381, -9.14708423614502 ], [ -78.616806030273381, -9.147359848022461 ], [ -78.616249084472599, -9.147359848022461 ], [ -78.616249084472599, -9.147640228271428 ], [ -78.61541748046875, -9.147640228271428 ], [ -78.61541748046875, -9.147915840148926 ], [ -78.614860534667969, -9.147915840148926 ], [ -78.614860534667969, -9.148194313049316 ], [ -78.614303588867188, -9.148194313049316 ], [ -78.614303588867188, -9.148471832275391 ], [ -78.613471984863224, -9.148471832275391 ], [ -78.613471984863224, -9.148750305175781 ], [ -78.612915039062443, -9.148750305175781 ], [ -78.612915039062443, -9.149027824401855 ], [ -78.612083435058594, -9.149027824401855 ], [ -78.612083435058594, -9.149306297302246 ], [ -78.611526489257812, -9.149306297302246 ], [ -78.611526489257812, -9.149581909179574 ], [ -78.610969543457031, -9.149581909179574 ], [ -78.610969543457031, -9.149862289428711 ], [ -78.610694885253849, -9.149862289428711 ], [ -78.610694885253849, -9.150137901306152 ], [ -78.610137939453068, -9.150137901306152 ], [ -78.610137939453068, -9.150416374206429 ], [ -78.609863281249943, -9.150416374206429 ], [ -78.609863281249943, -9.150693893432617 ], [ -78.609306335449219, -9.150693893432617 ], [ -78.609306335449219, -9.150972366333008 ], [ -78.609024047851562, -9.150972366333008 ], [ -78.609024047851562, -9.151249885559082 ], [ -78.608474731445312, -9.151249885559082 ], [ -78.608474731445312, -9.152084350585938 ], [ -78.608192443847656, -9.152084350585938 ], [ -78.608192443847656, -9.153471946716309 ], [ -78.607917785644531, -9.153470039367676 ], [ -78.607917785644531, -9.154303550720158 ], [ -78.608192443847656, -9.154303550720158 ], [ -78.608192443847656, -9.155973434448242 ], [ -78.607917785644531, -9.155973434448242 ], [ -78.607917785644531, -9.156525611877441 ], [ -78.607635498046875, -9.156525611877441 ], [ -78.607635498046875, -9.157917022705078 ], [ -78.608474731445312, -9.157917022705078 ], [ -78.608474731445312, -9.158194541931152 ], [ -78.609024047851562, -9.158194541931152 ], [ -78.609024047851562, -9.155973434448242 ], [ -78.610137939453068, -9.155973434448242 ], [ -78.610137939453068, -9.15625095367426 ], [ -78.610420227050724, -9.156248092651367 ], [ -78.610420227050724, -9.156525611877441 ], [ -78.610694885253849, -9.156525611877441 ], [ -78.610694885253849, -9.156806945800724 ], [ -78.611251831054688, -9.156805038452148 ], [ -78.611251831054688, -9.156248092651367 ], [ -78.611808776855469, -9.15625095367426 ], [ -78.611808776855469, -9.155973434448242 ], [ -78.612083435058594, -9.155973434448242 ], [ -78.612083435058594, -9.155692100524902 ], [ -78.612640380859375, -9.155694961547852 ], [ -78.612640380859375, -9.155417442321777 ], [ -78.612915039062443, -9.155417442321777 ], [ -78.612915039062443, -9.155138015747013 ], [ -78.613197326660099, -9.155138015747013 ], [ -78.613197326660099, -9.154859542846623 ], [ -78.613471984863224, -9.154859542846623 ], [ -78.613471984863224, -9.154582023620549 ], [ -78.613746643066349, -9.154582023620549 ], [ -78.613746643066349, -9.154303550720158 ], [ -78.614585876464844, -9.154303550720158 ], [ -78.614585876464844, -9.154582023620549 ], [ -78.614860534667969, -9.154582023620549 ], [ -78.614860534667969, -9.154859542846623 ], [ -78.615692138671875, -9.154859542846623 ], [ -78.615692138671875, -9.155138015747013 ], [ -78.616531372070256, -9.155138015747013 ], [ -78.616531372070256, -9.154859542846623 ], [ -78.616806030273381, -9.154859542846623 ], [ -78.616806030273381, -9.154303550720158 ], [ -78.617080688476506, -9.154303550720158 ], [ -78.617080688476506, -9.153750419616642 ], [ -78.617637634277344, -9.153750419616642 ], [ -78.617637634277344, -9.153470039367676 ], [ -78.618194580078125, -9.153471946716309 ], [ -78.618194580078125, -9.153194427490178 ], [ -78.619026184082031, -9.153194427490178 ], [ -78.619026184082031, -9.152915954589787 ], [ -78.619583129882756, -9.152915954589787 ], [ -78.619583129882756, -9.152638435363713 ], [ -78.620140075683537, -9.152638435363713 ], [ -78.620140075683537, -9.152359962463322 ], [ -78.620414733886719, -9.152359962463322 ], [ -78.620414733886719, -9.152084350585938 ], [ -78.620697021484375, -9.152084350585938 ], [ -78.620697021484375, -9.151805877685547 ], [ -78.6209716796875, -9.151805877685547 ], [ -78.6209716796875, -9.151528358459473 ], [ -78.621246337890625, -9.151528358459473 ], [ -78.621246337890625, -9.150972366333008 ], [ -78.621528625488281, -9.150972366333008 ], [ -78.621528625488281, -9.149306297302246 ], [ -78.621246337890625, -9.149306297302246 ], [ -78.621246337890625, -9.149027824401855 ], [ -78.6209716796875, -9.149027824401855 ], [ -78.6209716796875, -9.148750305175781 ], [ -78.620697021484375, -9.148750305175781 ], [ -78.620697021484375, -9.148471832275391 ], [ -78.620414733886719, -9.148471832275391 ], [ -78.620414733886719, -9.148194313049316 ], [ -78.620140075683537, -9.148194313049316 ], [ -78.620140075683537, -9.147915840148926 ], [ -78.619857788085881, -9.147915840148926 ], [ -78.619857788085881, -9.147640228271428 ], [ -78.619583129882756, -9.147640228271428 ], [ -78.619583129882756, -9.147359848022461 ], [ -78.619308471679574, -9.147359848022461 ], [ -78.619308471679574, -9.14708423614502 ], [ -78.618751525878906, -9.14708423614502 ], [ -78.618751525878906, -9.146805763244572 ], [ -78.617362976074219, -9.146805763244572 ] ] ], [ [ [ -78.620414733886719, -9.137083053588867 ], [ -78.620414733886719, -9.137360572814941 ], [ -78.620140075683537, -9.137360572814941 ], [ -78.620140075683537, -9.137639045715332 ], [ -78.619857788085881, -9.137637138366586 ], [ -78.619857788085881, -9.137916564941349 ], [ -78.619583129882756, -9.137916564941349 ], [ -78.619583129882756, -9.138193130493164 ], [ -78.619308471679574, -9.138193130493164 ], [ -78.619308471679574, -9.138472557067814 ], [ -78.619026184082031, -9.138472557067814 ], [ -78.619026184082031, -9.139026641845703 ], [ -78.619308471679574, -9.139026641845703 ], [ -78.619308471679574, -9.140138626098633 ], [ -78.619583129882756, -9.140138626098633 ], [ -78.619583129882756, -9.14124870300293 ], [ -78.619857788085881, -9.14124870300293 ], [ -78.619857788085881, -9.142084121704045 ], [ -78.620140075683537, -9.142084121704045 ], [ -78.620140075683537, -9.142361640930176 ], [ -78.620414733886719, -9.142361640930176 ], [ -78.620414733886719, -9.14264011383051 ], [ -78.620697021484375, -9.14264011383051 ], [ -78.620697021484375, -9.142917633056641 ], [ -78.6209716796875, -9.142917633056641 ], [ -78.6209716796875, -9.143194198608398 ], [ -78.621246337890625, -9.143194198608398 ], [ -78.621246337890625, -9.143471717834416 ], [ -78.621803283691406, -9.143471717834416 ], [ -78.621803283691406, -9.142917633056641 ], [ -78.622085571289062, -9.142917633056641 ], [ -78.622085571289062, -9.142361640930176 ], [ -78.622360229492074, -9.142361640930176 ], [ -78.622360229492074, -9.141805648803654 ], [ -78.622642517089787, -9.141805648803654 ], [ -78.622642517089787, -9.14124870300293 ], [ -78.622917175292912, -9.14124870300293 ], [ -78.622917175292912, -9.140695571899414 ], [ -78.623191833496037, -9.140695571899414 ], [ -78.623191833496037, -9.140138626098633 ], [ -78.622917175292912, -9.140138626098633 ], [ -78.622917175292912, -9.139582633972168 ], [ -78.622642517089787, -9.139582633972168 ], [ -78.622642517089787, -9.139303207397404 ], [ -78.622360229492074, -9.139305114746094 ], [ -78.622360229492074, -9.139026641845703 ], [ -78.622085571289062, -9.139026641845703 ], [ -78.622085571289062, -9.138749122619629 ], [ -78.621803283691406, -9.138749122619629 ], [ -78.621803283691406, -9.138472557067814 ], [ -78.621528625488281, -9.138472557067814 ], [ -78.621528625488281, -9.138193130493164 ], [ -78.621246337890625, -9.138193130493164 ], [ -78.621246337890625, -9.137916564941349 ], [ -78.6209716796875, -9.137916564941349 ], [ -78.6209716796875, -9.137360572814941 ], [ -78.620697021484375, -9.137360572814941 ], [ -78.620697021484375, -9.137083053588867 ], [ -78.620414733886719, -9.137083053588867 ] ] ], [ [ [ -78.622917175292912, -9.082917213439885 ], [ -78.622917175292912, -9.083194732665959 ], [ -78.622360229492074, -9.083194732665959 ], [ -78.622360229492074, -9.083748817443848 ], [ -78.622085571289062, -9.083748817443848 ], [ -78.622085571289062, -9.084860801696777 ], [ -78.620140075683537, -9.084860801696777 ], [ -78.620140075683537, -9.085139274597168 ], [ -78.619857788085881, -9.085139274597168 ], [ -78.619857788085881, -9.085416793823185 ], [ -78.619308471679574, -9.085416793823185 ], [ -78.619308471679574, -9.085693359375 ], [ -78.618751525878906, -9.085693359375 ], [ -78.618751525878906, -9.086526870727539 ], [ -78.61846923828125, -9.086526870727539 ], [ -78.61846923828125, -9.087362289428711 ], [ -78.618194580078125, -9.087362289428711 ], [ -78.618194580078125, -9.087639808654785 ], [ -78.617637634277344, -9.087639808654785 ], [ -78.617637634277344, -9.08791542053217 ], [ -78.616531372070256, -9.08791542053217 ], [ -78.616531372070256, -9.08819580078125 ], [ -78.616249084472599, -9.08819580078125 ], [ -78.616249084472599, -9.088749885559025 ], [ -78.616806030273381, -9.088749885559025 ], [ -78.616806030273381, -9.089028358459416 ], [ -78.617362976074219, -9.089028358459416 ], [ -78.617362976074219, -9.08930587768549 ], [ -78.618194580078125, -9.08930587768549 ], [ -78.618194580078125, -9.09013843536377 ], [ -78.61846923828125, -9.090140342712346 ], [ -78.61846923828125, -9.090417861938477 ], [ -78.618751525878906, -9.090415954589844 ], [ -78.618751525878906, -9.091250419616699 ], [ -78.619026184082031, -9.091250419616699 ], [ -78.619026184082031, -9.091806411743107 ], [ -78.61846923828125, -9.091806411743107 ], [ -78.61846923828125, -9.092639923095646 ], [ -78.618194580078125, -9.09263801574707 ], [ -78.618194580078125, -9.093194007873535 ], [ -78.61846923828125, -9.093194007873535 ], [ -78.61846923828125, -9.09375 ], [ -78.618194580078125, -9.09375 ], [ -78.618194580078125, -9.094028472900391 ], [ -78.617919921875, -9.094028472900391 ], [ -78.617919921875, -9.094584465026855 ], [ -78.617637634277344, -9.094584465026855 ], [ -78.617637634277344, -9.094860076904297 ], [ -78.617362976074219, -9.094860076904297 ], [ -78.617362976074219, -9.095137596130371 ], [ -78.617637634277344, -9.095137596130371 ], [ -78.617637634277344, -9.095693588256836 ], [ -78.617919921875, -9.095693588256836 ], [ -78.617919921875, -9.095972061157227 ], [ -78.618751525878906, -9.095972061157227 ], [ -78.618751525878906, -9.096249580383301 ], [ -78.619026184082031, -9.096249580383301 ], [ -78.619026184082031, -9.096528053283691 ], [ -78.61846923828125, -9.096528053283691 ], [ -78.61846923828125, -9.096805572509766 ], [ -78.617919921875, -9.096805572509766 ], [ -78.617919921875, -9.097359657287598 ], [ -78.617637634277344, -9.097361564636174 ], [ -78.617637634277344, -9.097915649414062 ], [ -78.617362976074219, -9.097915649414062 ], [ -78.617362976074219, -9.098471641540527 ], [ -78.617080688476506, -9.098471641540527 ], [ -78.617080688476506, -9.099860191345158 ], [ -78.616806030273381, -9.099860191345158 ], [ -78.616806030273381, -9.100137710571289 ], [ -78.616531372070256, -9.100137710571289 ], [ -78.616531372070256, -9.101806640625 ], [ -78.616249084472599, -9.101806640625 ], [ -78.616249084472599, -9.102360725402832 ], [ -78.615974426269531, -9.102360725402832 ], [ -78.615974426269531, -9.102639198303223 ], [ -78.615692138671875, -9.102639198303223 ], [ -78.615692138671875, -9.104305267333984 ], [ -78.61541748046875, -9.104305267333984 ], [ -78.61541748046875, -9.104582786560059 ], [ -78.615135192871094, -9.104582786560059 ], [ -78.615135192871094, -9.104861259460449 ], [ -78.614860534667969, -9.104861259460449 ], [ -78.614860534667969, -9.105138778686523 ], [ -78.614303588867188, -9.105138778686523 ], [ -78.614303588867188, -9.105417251586914 ], [ -78.613746643066349, -9.105417251586914 ], [ -78.613746643066349, -9.10624885559082 ], [ -78.613471984863224, -9.10624885559082 ], [ -78.613471984863224, -9.106527328491211 ], [ -78.613197326660099, -9.106527328491211 ], [ -78.613197326660099, -9.106804847717285 ], [ -78.612915039062443, -9.106804847717285 ], [ -78.612915039062443, -9.108195304870605 ], [ -78.613197326660099, -9.108195304870605 ], [ -78.613197326660099, -9.109305381774846 ], [ -78.613471984863224, -9.109305381774846 ], [ -78.613471984863224, -9.109582901000977 ], [ -78.61541748046875, -9.109580993652344 ], [ -78.61541748046875, -9.109861373901254 ], [ -78.616806030273381, -9.109861373901254 ], [ -78.616806030273381, -9.110138893127441 ], [ -78.617362976074219, -9.110136985778752 ], [ -78.617362976074219, -9.110694885253906 ], [ -78.617637634277344, -9.110694885253906 ], [ -78.617637634277344, -9.110973358154297 ], [ -78.617362976074219, -9.110973358154297 ], [ -78.617362976074219, -9.111248970031681 ], [ -78.617080688476506, -9.111248970031681 ], [ -78.617080688476506, -9.112639427185002 ], [ -78.616806030273381, -9.112639427185002 ], [ -78.616806030273381, -9.112917900085392 ], [ -78.617362976074219, -9.1129150390625 ], [ -78.617362976074219, -9.113196372985783 ], [ -78.617637634277344, -9.113196372985783 ], [ -78.617637634277344, -9.113748550414982 ], [ -78.617919921875, -9.113748550414982 ], [ -78.617919921875, -9.114027023315373 ], [ -78.61846923828125, -9.114027023315373 ], [ -78.61846923828125, -9.113748550414982 ], [ -78.619308471679574, -9.113748550414982 ], [ -78.619308471679574, -9.113471031188965 ], [ -78.619857788085881, -9.113471031188965 ], [ -78.619857788085881, -9.113196372985783 ], [ -78.620697021484375, -9.113196372985783 ], [ -78.620697021484375, -9.1129150390625 ], [ -78.621246337890625, -9.112917900085392 ], [ -78.621246337890625, -9.112639427185002 ], [ -78.621528625488281, -9.112639427185002 ], [ -78.621528625488281, -9.112083435058537 ], [ -78.621803283691406, -9.112083435058537 ], [ -78.621803283691406, -9.111527442932072 ], [ -78.622085571289062, -9.111527442932072 ], [ -78.622085571289062, -9.110973358154297 ], [ -78.621803283691406, -9.110973358154297 ], [ -78.621803283691406, -9.109861373901254 ], [ -78.622085571289062, -9.109861373901254 ], [ -78.622085571289062, -9.109305381774846 ], [ -78.622360229492074, -9.109305381774846 ], [ -78.622360229492074, -9.10875129699707 ], [ -78.622917175292912, -9.10875129699707 ], [ -78.622917175292912, -9.10847091674799 ], [ -78.623191833496037, -9.10847091674799 ], [ -78.623191833496037, -9.108195304870605 ], [ -78.623748779296875, -9.108195304870605 ], [ -78.623748779296875, -9.107916831970215 ], [ -78.624031066894531, -9.107916831970215 ], [ -78.624031066894531, -9.10736083984375 ], [ -78.624305725097656, -9.10736083984375 ], [ -78.624305725097656, -9.106804847717285 ], [ -78.624580383300781, -9.106804847717285 ], [ -78.624580383300781, -9.10624885559082 ], [ -78.624862670898438, -9.10624885559082 ], [ -78.624862670898438, -9.105971336364689 ], [ -78.625137329101562, -9.105973243713379 ], [ -78.625137329101562, -9.105694770812988 ], [ -78.625419616699219, -9.105694770812988 ], [ -78.625419616699219, -9.105138778686523 ], [ -78.625694274902287, -9.105138778686523 ], [ -78.625694274902287, -9.104861259460449 ], [ -78.625968933105412, -9.104861259460449 ], [ -78.625968933105412, -9.104582786560059 ], [ -78.626251220703068, -9.104582786560059 ], [ -78.626251220703068, -9.104305267333984 ], [ -78.626525878906193, -9.104305267333984 ], [ -78.626525878906193, -9.10402870178217 ], [ -78.627082824707031, -9.10402870178217 ], [ -78.627082824707031, -9.10374927520752 ], [ -78.627357482910156, -9.103751182556096 ], [ -78.627357482910156, -9.103472709655705 ], [ -78.627639770507812, -9.103472709655705 ], [ -78.627639770507812, -9.103192329406738 ], [ -78.627357482910156, -9.103195190429688 ], [ -78.627357482910156, -9.10291671752924 ], [ -78.627082824707031, -9.10291671752924 ], [ -78.627082824707031, -9.102639198303223 ], [ -78.626808166503849, -9.102639198303223 ], [ -78.626808166503849, -9.102080345153809 ], [ -78.626525878906193, -9.102082252502385 ], [ -78.626525878906193, -9.101806640625 ], [ -78.625968933105412, -9.101806640625 ], [ -78.625968933105412, -9.101529121398869 ], [ -78.625694274902287, -9.101529121398869 ], [ -78.625694274902287, -9.101250648498478 ], [ -78.625137329101562, -9.101250648498478 ], [ -78.625137329101562, -9.100970268249512 ], [ -78.624862670898438, -9.100970268249512 ], [ -78.624862670898438, -9.100414276123047 ], [ -78.624580383300781, -9.100416183471623 ], [ -78.624580383300781, -9.099584579467773 ], [ -78.624305725097656, -9.099584579467773 ], [ -78.624305725097656, -9.098748207092228 ], [ -78.624031066894531, -9.098750114440918 ], [ -78.624031066894531, -9.097915649414062 ], [ -78.623748779296875, -9.097915649414062 ], [ -78.623748779296875, -9.097361564636174 ], [ -78.623474121093693, -9.097359657287598 ], [ -78.623474121093693, -9.096528053283691 ], [ -78.623191833496037, -9.096528053283691 ], [ -78.623191833496037, -9.095137596130371 ], [ -78.623474121093693, -9.095137596130371 ], [ -78.623474121093693, -9.094028472900391 ], [ -78.623748779296875, -9.094028472900391 ], [ -78.623748779296875, -9.092915534973145 ], [ -78.624031066894531, -9.092915534973145 ], [ -78.624031066894531, -9.092362403869572 ], [ -78.623748779296875, -9.092362403869572 ], [ -78.623748779296875, -9.092082023620605 ], [ -78.623474121093693, -9.092083930969181 ], [ -78.623474121093693, -9.089028358459416 ], [ -78.623191833496037, -9.089028358459416 ], [ -78.623191833496037, -9.08819580078125 ], [ -78.622917175292912, -9.08819580078125 ], [ -78.622917175292912, -9.087639808654785 ], [ -78.622642517089787, -9.087639808654785 ], [ -78.622642517089787, -9.085416793823185 ], [ -78.622917175292912, -9.085416793823185 ], [ -78.622917175292912, -9.084860801696777 ], [ -78.623191833496037, -9.084860801696777 ], [ -78.623191833496037, -9.084583282470703 ], [ -78.623474121093693, -9.084583282470703 ], [ -78.623474121093693, -9.084027290344238 ], [ -78.624031066894531, -9.084027290344238 ], [ -78.624031066894531, -9.083748817443848 ], [ -78.623748779296875, -9.083748817443848 ], [ -78.623748779296875, -9.083194732665959 ], [ -78.623474121093693, -9.083194732665959 ], [ -78.623474121093693, -9.082917213439885 ], [ -78.622917175292912, -9.082917213439885 ] ] ], [ [ [ -78.676803588867131, -9.017082214355412 ], [ -78.676803588867131, -9.017359733581486 ], [ -78.676246643066406, -9.017359733581486 ], [ -78.676246643066406, -9.017638206481877 ], [ -78.6754150390625, -9.017638206481877 ], [ -78.6754150390625, -9.01986026763916 ], [ -78.675697326660156, -9.01986026763916 ], [ -78.675697326660156, -9.020137786865178 ], [ -78.675971984863281, -9.020137786865178 ], [ -78.675971984863281, -9.020694732666016 ], [ -78.676246643066406, -9.020694732666016 ], [ -78.676246643066406, -9.02125072479248 ], [ -78.676528930663949, -9.02125072479248 ], [ -78.676528930663949, -9.021529197692871 ], [ -78.677085876464787, -9.021529197692871 ], [ -78.677085876464787, -9.021806716918888 ], [ -78.677360534667912, -9.021806716918888 ], [ -78.677360534667912, -9.022360801696777 ], [ -78.677085876464787, -9.022360801696777 ], [ -78.677085876464787, -9.022916793823242 ], [ -78.676803588867131, -9.022916793823242 ], [ -78.676803588867131, -9.023472785949707 ], [ -78.676528930663949, -9.023472785949707 ], [ -78.676528930663949, -9.023751258850098 ], [ -78.676246643066406, -9.023751258850098 ], [ -78.676246643066406, -9.024305343627873 ], [ -78.675971984863281, -9.024305343627873 ], [ -78.675971984863281, -9.024582862854004 ], [ -78.675697326660156, -9.024582862854004 ], [ -78.675697326660156, -9.025138854980469 ], [ -78.6754150390625, -9.025138854980469 ], [ -78.6754150390625, -9.025694847106934 ], [ -78.675140380859375, -9.025694847106934 ], [ -78.675140380859375, -9.025973320007324 ], [ -78.674858093261719, -9.025973320007324 ], [ -78.674858093261719, -9.026248931884709 ], [ -78.674308776855412, -9.026248931884709 ], [ -78.674308776855412, -9.026527404785099 ], [ -78.674026489257756, -9.026527404785099 ], [ -78.674026489257756, -9.026804924011174 ], [ -78.673751831054631, -9.026804924011174 ], [ -78.673751831054631, -9.027083396911564 ], [ -78.673469543456974, -9.027083396911564 ], [ -78.673469543456974, -9.027360916137638 ], [ -78.673194885253906, -9.027360916137638 ], [ -78.673194885253906, -9.028470993041992 ], [ -78.673469543456974, -9.028470993041992 ], [ -78.673469543456974, -9.028751373290902 ], [ -78.673751831054631, -9.028751373290902 ], [ -78.673751831054631, -9.0290269851684 ], [ -78.674026489257756, -9.0290269851684 ], [ -78.674026489257756, -9.030137062072754 ], [ -78.674308776855412, -9.030137062072754 ], [ -78.674308776855412, -9.030417442321721 ], [ -78.674583435058594, -9.030417442321721 ], [ -78.674583435058594, -9.030973434448185 ], [ -78.674308776855412, -9.030973434448185 ], [ -78.674308776855412, -9.031526565551758 ], [ -78.674026489257756, -9.031526565551758 ], [ -78.674026489257756, -9.032082557678166 ], [ -78.673751831054631, -9.032082557678166 ], [ -78.673751831054631, -9.03264045715332 ], [ -78.673469543456974, -9.03264045715332 ], [ -78.673469543456974, -9.032917976379395 ], [ -78.673194885253906, -9.032915115356445 ], [ -78.673194885253906, -9.03347110748291 ], [ -78.672920227050781, -9.03347110748291 ], [ -78.672920227050781, -9.03458118438715 ], [ -78.672637939453125, -9.03458118438715 ], [ -78.672637939453125, -9.035694122314396 ], [ -78.67236328125, -9.035694122314396 ], [ -78.67236328125, -9.037360191345215 ], [ -78.671806335449219, -9.037360191345215 ], [ -78.671806335449219, -9.037637710571232 ], [ -78.670974731445256, -9.037637710571232 ], [ -78.670974731445256, -9.03791618347168 ], [ -78.670692443847599, -9.03791618347168 ], [ -78.670692443847599, -9.038470268249512 ], [ -78.670417785644474, -9.038470268249512 ], [ -78.670417785644474, -9.038749694824162 ], [ -78.670135498046818, -9.038749694824162 ], [ -78.670135498046818, -9.039028167724553 ], [ -78.66986083984375, -9.039028167724553 ], [ -78.66986083984375, -9.039584159851017 ], [ -78.669586181640625, -9.039584159851017 ], [ -78.669586181640625, -9.039859771728516 ], [ -78.669303894042969, -9.039859771728516 ], [ -78.669303894042969, -9.04041576385498 ], [ -78.669029235839844, -9.04041576385498 ], [ -78.669029235839844, -9.041250228881836 ], [ -78.668746948242188, -9.041250228881836 ], [ -78.668746948242188, -9.042637825012207 ], [ -78.668472290039062, -9.042637825012207 ], [ -78.668472290039062, -9.043193817138672 ], [ -78.669303894042969, -9.043193817138672 ], [ -78.669303894042969, -9.042916297912598 ], [ -78.670417785644474, -9.042916297912598 ], [ -78.670417785644474, -9.042637825012207 ], [ -78.671249389648381, -9.042637825012207 ], [ -78.671249389648381, -9.042360305786133 ], [ -78.671806335449219, -9.042362213134709 ], [ -78.671806335449219, -9.042083740234318 ], [ -78.67236328125, -9.042083740234318 ], [ -78.67236328125, -9.041804313659668 ], [ -78.672920227050781, -9.041806221008244 ], [ -78.672920227050781, -9.041527748107853 ], [ -78.674308776855412, -9.041527748107853 ], [ -78.674308776855412, -9.041806221008244 ], [ -78.674583435058594, -9.041804313659668 ], [ -78.674583435058594, -9.042083740234318 ], [ -78.6754150390625, -9.042083740234318 ], [ -78.6754150390625, -9.041804313659668 ], [ -78.675697326660156, -9.041806221008244 ], [ -78.675697326660156, -9.041527748107853 ], [ -78.675971984863281, -9.041527748107853 ], [ -78.675971984863281, -9.041806221008244 ], [ -78.676803588867131, -9.041804313659668 ], [ -78.676803588867131, -9.041250228881836 ], [ -78.677085876464787, -9.041250228881836 ], [ -78.677085876464787, -9.040694236755371 ], [ -78.677360534667912, -9.040694236755371 ], [ -78.677360534667912, -9.040138244628906 ], [ -78.677635192871094, -9.040140151977482 ], [ -78.677635192871094, -9.039584159851017 ], [ -78.67791748046875, -9.039584159851017 ], [ -78.67791748046875, -9.039028167724553 ], [ -78.678192138671875, -9.039028167724553 ], [ -78.678192138671875, -9.038749694824162 ], [ -78.67791748046875, -9.038749694824162 ], [ -78.67791748046875, -9.038470268249512 ], [ -78.677360534667912, -9.038472175598088 ], [ -78.677360534667912, -9.038193702697697 ], [ -78.677085876464787, -9.038193702697697 ], [ -78.677085876464787, -9.037637710571232 ], [ -78.676803588867131, -9.037637710571232 ], [ -78.676803588867131, -9.037083625793457 ], [ -78.676528930663949, -9.037083625793457 ], [ -78.676528930663949, -9.036527633666992 ], [ -78.676246643066406, -9.036527633666992 ], [ -78.676246643066406, -9.035971641540471 ], [ -78.676528930663949, -9.035971641540471 ], [ -78.676528930663949, -9.03486156463623 ], [ -78.676803588867131, -9.03486156463623 ], [ -78.676803588867131, -9.03458118438715 ], [ -78.677085876464787, -9.034584045410156 ], [ -78.677085876464787, -9.034305572509766 ], [ -78.677360534667912, -9.034305572509766 ], [ -78.677360534667912, -9.034028053283691 ], [ -78.677635192871094, -9.034028053283691 ], [ -78.677635192871094, -9.033748626708984 ], [ -78.67791748046875, -9.033748626708984 ], [ -78.67791748046875, -9.03347110748291 ], [ -78.678749084472656, -9.03347110748291 ], [ -78.678749084472656, -9.034028053283691 ], [ -78.680419921874943, -9.034028053283691 ], [ -78.680419921874943, -9.03347110748291 ], [ -78.680694580078068, -9.03347110748291 ], [ -78.680694580078068, -9.032915115356445 ], [ -78.68096923828125, -9.032915115356445 ], [ -78.68096923828125, -9.03235912322998 ], [ -78.680694580078068, -9.03235912322998 ], [ -78.680694580078068, -9.031805038452148 ], [ -78.680419921874943, -9.031805038452148 ], [ -78.680419921874943, -9.031249046325684 ], [ -78.680137634277287, -9.031249046325684 ], [ -78.680137634277287, -9.030973434448185 ], [ -78.679862976074162, -9.030973434448185 ], [ -78.679862976074162, -9.030693054199219 ], [ -78.680137634277287, -9.030693054199219 ], [ -78.680137634277287, -9.030417442321721 ], [ -78.680419921874943, -9.030417442321721 ], [ -78.680419921874943, -9.029861450195256 ], [ -78.680694580078068, -9.029861450195256 ], [ -78.680694580078068, -9.028195381164494 ], [ -78.68096923828125, -9.028195381164494 ], [ -78.68096923828125, -9.027360916137638 ], [ -78.680694580078068, -9.027360916137638 ], [ -78.680694580078068, -9.027083396911564 ], [ -78.680419921874943, -9.027083396911564 ], [ -78.680419921874943, -9.026527404785099 ], [ -78.680137634277287, -9.026527404785099 ], [ -78.680137634277287, -9.026248931884709 ], [ -78.679862976074162, -9.026248931884709 ], [ -78.679862976074162, -9.025973320007324 ], [ -78.680137634277287, -9.025973320007324 ], [ -78.680137634277287, -9.025417327880859 ], [ -78.680419921874943, -9.025417327880859 ], [ -78.680419921874943, -9.024861335754338 ], [ -78.680694580078068, -9.024861335754338 ], [ -78.680694580078068, -9.024305343627873 ], [ -78.68096923828125, -9.024305343627873 ], [ -78.68096923828125, -9.023751258850098 ], [ -78.680694580078068, -9.023751258850098 ], [ -78.680694580078068, -9.023472785949707 ], [ -78.680419921874943, -9.023472785949707 ], [ -78.680419921874943, -9.022916793823242 ], [ -78.680137634277287, -9.022916793823242 ], [ -78.680137634277287, -9.021806716918888 ], [ -78.68096923828125, -9.021806716918888 ], [ -78.68096923828125, -9.021529197692871 ], [ -78.681251525878906, -9.021529197692871 ], [ -78.681251525878906, -9.020970344543457 ], [ -78.68096923828125, -9.020970344543457 ], [ -78.68096923828125, -9.01986026763916 ], [ -78.681251525878906, -9.01986026763916 ], [ -78.681251525878906, -9.019028663635197 ], [ -78.681526184082031, -9.019028663635197 ], [ -78.681526184082031, -9.01874828338623 ], [ -78.681251525878906, -9.01874828338623 ], [ -78.681251525878906, -9.018192291259766 ], [ -78.68096923828125, -9.018194198608342 ], [ -78.68096923828125, -9.017915725707951 ], [ -78.680419921874943, -9.017915725707951 ], [ -78.680419921874943, -9.017638206481877 ], [ -78.680137634277287, -9.017638206481877 ], [ -78.680137634277287, -9.017359733581486 ], [ -78.67791748046875, -9.017359733581486 ], [ -78.67791748046875, -9.017082214355412 ], [ -78.676803588867131, -9.017082214355412 ] ] ], [ [ [ -78.649307250976562, -9.006526947021428 ], [ -78.649307250976562, -9.006806373596135 ], [ -78.648750305175724, -9.006806373596135 ], [ -78.648750305175724, -9.007083892822209 ], [ -78.648475646972599, -9.007081031799316 ], [ -78.648475646972599, -9.007914543151799 ], [ -78.648750305175724, -9.007914543151799 ], [ -78.648750305175724, -9.008472442626953 ], [ -78.650413513183594, -9.008472442626953 ], [ -78.650413513183594, -9.008193016052189 ], [ -78.65069580078125, -9.008193016052189 ], [ -78.65069580078125, -9.007914543151799 ], [ -78.651252746581974, -9.007914543151799 ], [ -78.651252746581974, -9.007637023925781 ], [ -78.651527404785099, -9.007637023925781 ], [ -78.651527404785099, -9.007081031799316 ], [ -78.65069580078125, -9.007083892822209 ], [ -78.65069580078125, -9.006806373596135 ], [ -78.650138854980469, -9.006806373596135 ], [ -78.650138854980469, -9.006526947021428 ], [ -78.649307250976562, -9.006526947021428 ] ] ], [ [ [ -77.647125244140568, -8.050742149353027 ], [ -77.64666748046875, -8.051875114440861 ], [ -77.646568298339844, -8.053077697753906 ], [ -77.646591186523438, -8.055507659912053 ], [ -77.646934509277287, -8.056381225585881 ], [ -77.646636962890568, -8.061371803283691 ], [ -77.645896911621094, -8.063662528991699 ], [ -77.644248962402287, -8.06645679473877 ], [ -77.643035888671875, -8.067312240600586 ], [ -77.641410827636605, -8.067993164062443 ], [ -77.63912200927723, -8.068188667297363 ], [ -77.636718749999943, -8.069062232971135 ], [ -77.633232116699219, -8.069536209106445 ], [ -77.631820678710938, -8.069934844970703 ], [ -77.628410339355412, -8.071576118469238 ], [ -77.624595642089787, -8.073857307434025 ], [ -77.622650146484375, -8.074438095092717 ], [ -77.621459960937443, -8.07534122467041 ], [ -77.620590209960881, -8.076377868652287 ], [ -77.619338989257812, -8.07978343963623 ], [ -77.6185302734375, -8.081000328063965 ], [ -77.618713378906136, -8.082740783691406 ], [ -77.619117736816406, -8.083885192871094 ], [ -77.623115539550781, -8.090601921081543 ], [ -77.625007629394418, -8.09477519989008 ], [ -77.626472473144531, -8.096364021301213 ], [ -77.630081176757812, -8.098971366882267 ], [ -77.632118225097656, -8.101124763488713 ], [ -77.634841918945312, -8.104822158813477 ], [ -77.636566162109375, -8.10818958282465 ], [ -77.636466979980469, -8.109012603759709 ], [ -77.635177612304631, -8.110339164733773 ], [ -77.63301849365223, -8.112028121948185 ], [ -77.631195068359318, -8.112896919250488 ], [ -77.630622863769474, -8.114718437194767 ], [ -77.630111694335938, -8.115299224853459 ], [ -77.628616333007756, -8.115984916687012 ], [ -77.626739501953125, -8.116106033325138 ], [ -77.625503540039062, -8.11694431304926 ], [ -77.624588012695312, -8.117160797119141 ], [ -77.623825073242188, -8.117895126342773 ], [ -77.622566223144531, -8.118898391723519 ], [ -77.621101379394531, -8.12116527557373 ], [ -77.618576049804688, -8.128559112548771 ], [ -77.617790222167969, -8.129962921142578 ], [ -77.616790771484318, -8.131064414978027 ], [ -77.616119384765568, -8.131534576415902 ], [ -77.615211486816406, -8.131750106811467 ], [ -77.612113952636662, -8.132022857666016 ], [ -77.611038208007812, -8.131893157958928 ], [ -77.609855651855469, -8.132191658019963 ], [ -77.608039855957031, -8.133342742919865 ], [ -77.604515075683594, -8.134700775146484 ], [ -77.60321044921875, -8.135695457458439 ], [ -77.602279663085881, -8.136820793151799 ], [ -77.601982116699219, -8.138829231262207 ], [ -77.602424621582031, -8.140940666198674 ], [ -77.604469299316349, -8.143088340759277 ], [ -77.60540771484375, -8.144880294799805 ], [ -77.607536315917912, -8.146944999694767 ], [ -77.608131408691406, -8.148457527160645 ], [ -77.608047485351562, -8.150069236755371 ], [ -77.607086181640625, -8.151366233825684 ], [ -77.606246948242188, -8.154354095458984 ], [ -77.605163574218693, -8.156375885009766 ], [ -77.602859497070256, -8.157961845397949 ], [ -77.601402282714844, -8.158296585083008 ], [ -77.600196838378849, -8.158873558044377 ], [ -77.596450805664062, -8.16175365447998 ], [ -77.595016479492188, -8.162494659423771 ], [ -77.591728210449219, -8.163210868835449 ], [ -77.588935852050724, -8.164203643798828 ], [ -77.586929321289006, -8.164499282836914 ], [ -77.582824707031193, -8.166214942932129 ], [ -77.577545166015625, -8.167386054992619 ], [ -77.575736999511719, -8.168238639831543 ], [ -77.573516845703125, -8.170611381530648 ], [ -77.572952270507812, -8.171834945678711 ], [ -77.569358825683594, -8.176882743835392 ], [ -77.569107055664006, -8.177931785583439 ], [ -77.566444396972599, -8.183379173278752 ], [ -77.565338134765625, -8.18659496307373 ], [ -77.564735412597543, -8.187764167785645 ], [ -77.56341552734375, -8.188919067382756 ], [ -77.562492370605469, -8.189496040344238 ], [ -77.561332702636719, -8.189881324768066 ], [ -77.559837341308537, -8.190996170043832 ], [ -77.559379577636662, -8.192118644714355 ], [ -77.557334899902344, -8.194254875183049 ], [ -77.557258605957031, -8.195476531982422 ], [ -77.557723999023438, -8.196140289306641 ], [ -77.558151245117131, -8.196491241455078 ], [ -77.560203552246094, -8.197190284729004 ], [ -77.561576843261662, -8.198031425476074 ], [ -77.563621520996094, -8.200714111328125 ], [ -77.56587982177723, -8.203029632568303 ], [ -77.566490173339844, -8.204235076904297 ], [ -77.569549560546875, -8.206673622131291 ], [ -77.572532653808537, -8.211173057556152 ], [ -77.573318481445199, -8.213173866271916 ], [ -77.573417663574219, -8.214926719665471 ], [ -77.573860168456974, -8.21661472320551 ], [ -77.573463439941406, -8.21982479095459 ], [ -77.573532104492188, -8.223999977111816 ], [ -77.573982238769474, -8.22584056854248 ], [ -77.575340270996094, -8.228920936584416 ], [ -77.575332641601562, -8.230666160583439 ], [ -77.574745178222599, -8.232033729553223 ], [ -77.573959350585881, -8.232788085937443 ], [ -77.569183349609318, -8.234600067138615 ], [ -77.567131042480469, -8.236149787902775 ], [ -77.565902709960938, -8.237387657165527 ], [ -77.563583374023381, -8.238150596618652 ], [ -77.561698913574219, -8.238010406494141 ], [ -77.559150695800781, -8.238171577453556 ], [ -77.556602478027287, -8.237832069396973 ], [ -77.553009033203125, -8.236654281616154 ], [ -77.550178527832031, -8.236635208129883 ], [ -77.547676086425781, -8.237222671508732 ], [ -77.545661926269418, -8.238020896911564 ], [ -77.541519165039062, -8.240992546081429 ], [ -77.539649963378849, -8.241367340087834 ], [ -77.537490844726562, -8.241326332092171 ], [ -77.536010742187443, -8.241533279418888 ], [ -77.531501770019531, -8.243651390075627 ], [ -77.529891967773381, -8.245088577270508 ], [ -77.528915405273438, -8.246696472167969 ], [ -77.527496337890625, -8.24945068359375 ], [ -77.52679443359375, -8.252128601074219 ], [ -77.526741027832031, -8.258320808410645 ], [ -77.527366638183594, -8.261632919311467 ], [ -77.528015136718693, -8.263100624084473 ], [ -77.5284423828125, -8.265078544616699 ], [ -77.528327941894531, -8.266153335571289 ], [ -77.527839660644531, -8.267142295837402 ], [ -77.527198791503906, -8.26759147644043 ], [ -77.524787902832031, -8.268500328063965 ], [ -77.523048400878849, -8.270002365112305 ], [ -77.521881103515568, -8.270289421081543 ], [ -77.520729064941406, -8.271235466003418 ], [ -77.519546508789062, -8.271406173706055 ], [ -77.518379211425724, -8.272126197814885 ], [ -77.516120910644531, -8.271916389465275 ], [ -77.514846801757756, -8.272356033325195 ], [ -77.513351440429688, -8.272303581237793 ], [ -77.510673522949219, -8.273946762084904 ], [ -77.509689331054631, -8.274269104003849 ], [ -77.50823974609375, -8.274277687072754 ], [ -77.505241394042969, -8.273872375488281 ], [ -77.504219055175781, -8.274527549743596 ], [ -77.499725341796875, -8.27869701385498 ], [ -77.497192382812443, -8.278520584106388 ], [ -77.494773864746094, -8.278744697570801 ], [ -77.493118286132812, -8.279308319091797 ], [ -77.492172241210938, -8.280279159545898 ], [ -77.489776611328011, -8.285987854003906 ], [ -77.489173889160099, -8.287908554077148 ], [ -77.488868713378906, -8.290448188781738 ], [ -77.486343383788949, -8.296881675720215 ], [ -77.486289978027344, -8.298555374145451 ], [ -77.487312316894531, -8.301836967468148 ], [ -77.487434387207031, -8.303199768066406 ], [ -77.485473632812443, -8.305011749267578 ], [ -77.482955932617188, -8.308922767639103 ], [ -77.4825439453125, -8.310026168823242 ], [ -77.482467651367188, -8.311934471130314 ], [ -77.482200622558594, -8.313118934631291 ], [ -77.481712341308594, -8.314396858215332 ], [ -77.481109619140625, -8.315267562866211 ], [ -77.479789733886719, -8.316243171691895 ], [ -77.475822448730412, -8.31701755523676 ], [ -77.474639892578125, -8.31778621673584 ], [ -77.474151611328125, -8.318258285522461 ], [ -77.473464965820256, -8.319869041442871 ], [ -77.473197937011719, -8.32160758972168 ], [ -77.473304748535156, -8.322799682617188 ], [ -77.474533081054688, -8.323912620544434 ], [ -77.475379943847656, -8.32427978515625 ], [ -77.476806640624886, -8.323863029479924 ], [ -77.477752685546818, -8.323922157287598 ], [ -77.478263854980469, -8.324685096740723 ], [ -77.4781494140625, -8.32563304901123 ], [ -77.476325988769474, -8.327958106994629 ], [ -77.473815917968693, -8.330404281616154 ], [ -77.471420288085938, -8.33191013336176 ], [ -77.469993591308594, -8.332193374633789 ], [ -77.468688964843693, -8.331485748290959 ], [ -77.467651367187386, -8.331204414367676 ], [ -77.464645385742188, -8.330824851989689 ], [ -77.463188171386719, -8.330853462219181 ], [ -77.461639404296818, -8.331565856933594 ], [ -77.459251403808537, -8.333868026733398 ], [ -77.457977294921875, -8.33979415893549 ], [ -77.45758056640625, -8.346249580383301 ], [ -77.457855224609375, -8.349996566772461 ], [ -77.458534240722656, -8.352616310119572 ], [ -77.459182739257812, -8.354100227355957 ], [ -77.459251403808537, -8.355320930480957 ], [ -77.458717346191406, -8.356355667114201 ], [ -77.458190917968693, -8.356712341308594 ], [ -77.454658508300724, -8.355784416198674 ], [ -77.454170227050724, -8.355868339538574 ], [ -77.453620910644474, -8.356314659118652 ], [ -77.452941894531193, -8.357502937316895 ], [ -77.452896118164062, -8.359933853149414 ], [ -77.452629089355469, -8.360832214355469 ], [ -77.451972961425781, -8.36217021942133 ], [ -77.450271606445256, -8.363718032836914 ], [ -77.44964599609375, -8.366188049316406 ], [ -77.448364257812443, -8.367589950561467 ], [ -77.447326660156193, -8.368736267089844 ], [ -77.447189331054688, -8.369685173034668 ], [ -77.447357177734375, -8.370315551757756 ], [ -77.449501037597599, -8.373618125915471 ], [ -77.44991302490223, -8.375605583190918 ], [ -77.449882507324162, -8.377223968505859 ], [ -77.448326110839844, -8.381543159484863 ], [ -77.444770812988281, -8.386282920837402 ], [ -77.443107604980412, -8.390838623046761 ], [ -77.44000244140625, -8.395088195800781 ], [ -77.438728332519474, -8.397318840026855 ], [ -77.437957763671818, -8.399176597595158 ], [ -77.437019348144474, -8.40601634979248 ], [ -77.436721801757756, -8.410859107971135 ], [ -77.437294006347599, -8.414599418640137 ], [ -77.438301086425781, -8.416498184204102 ], [ -77.438911437988224, -8.419440269470215 ], [ -77.438674926757812, -8.421439170837402 ], [ -77.435356140136719, -8.425166130065918 ], [ -77.4337158203125, -8.425771713256779 ], [ -77.432785034179688, -8.426555633544922 ], [ -77.431266784667969, -8.429556846618652 ], [ -77.429496765136662, -8.431609153747502 ], [ -77.424385070800781, -8.433277130126839 ], [ -77.421737670898438, -8.434576034545898 ], [ -77.419906616210938, -8.436379432678223 ], [ -77.418716430664006, -8.438942909240723 ], [ -77.417388916015568, -8.439907073974609 ], [ -77.415008544921761, -8.440258026123047 ], [ -77.410812377929574, -8.440167427062875 ], [ -77.409507751464844, -8.440500259399414 ], [ -77.406684875488224, -8.440118789672852 ], [ -77.405799865722656, -8.440902709960881 ], [ -77.404823303222656, -8.443157196044922 ], [ -77.404777526855412, -8.447207450866699 ], [ -77.403831481933537, -8.449869155883789 ], [ -77.403785705566406, -8.45229434967041 ], [ -77.402992248535043, -8.453039169311467 ], [ -77.400009155273381, -8.457366943359375 ], [ -77.399337768554631, -8.459259033203125 ], [ -77.39910888671875, -8.462363243103027 ], [ -77.399200439453125, -8.464783668518066 ], [ -77.399871826171875, -8.466126441955566 ], [ -77.401832580566349, -8.468706130981332 ], [ -77.402290344238224, -8.470114707946777 ], [ -77.402626037597656, -8.472264289855957 ], [ -77.402374267578125, -8.473448753356934 ], [ -77.400672912597599, -8.477572441101017 ], [ -77.400405883789006, -8.481459617614746 ], [ -77.399063110351506, -8.483474731445312 ], [ -77.397041320800781, -8.485257148742619 ], [ -77.393257141113224, -8.488074302673283 ], [ -77.390495300292912, -8.491019248962346 ], [ -77.388618469238281, -8.492332458496094 ], [ -77.385124206542912, -8.493762969970703 ], [ -77.382316589355469, -8.493969917297363 ], [ -77.380317687988281, -8.494768142700195 ], [ -77.379104614257812, -8.494930267333984 ], [ -77.373405456542912, -8.497957229614201 ], [ -77.371032714843693, -8.498936653137207 ], [ -77.369987487792912, -8.498954772949162 ], [ -77.367767333984318, -8.500222206115666 ], [ -77.366600036621094, -8.501404762268066 ], [ -77.366302490234375, -8.502057075500431 ], [ -77.366073608398381, -8.50555515289301 ], [ -77.365669250488224, -8.507221221923828 ], [ -77.364044189453125, -8.509146690368596 ], [ -77.36212158203125, -8.510605812072754 ], [ -77.359611511230469, -8.511631011962891 ], [ -77.355087280273381, -8.512310981750488 ], [ -77.353622436523438, -8.513531684875488 ], [ -77.35296630859375, -8.515097618103027 ], [ -77.351455688476562, -8.51652717590332 ], [ -77.350761413574219, -8.516683578491211 ], [ -77.349433898925781, -8.516465187072754 ], [ -77.348625183105412, -8.516868591308594 ], [ -77.347785949707031, -8.518357276916447 ], [ -77.346534729003793, -8.519223213195744 ], [ -77.345062255859375, -8.520930290222168 ], [ -77.344139099121037, -8.524271011352482 ], [ -77.342926025390625, -8.525344848632812 ], [ -77.341049194335938, -8.525962829589787 ], [ -77.339935302734318, -8.526863098144531 ], [ -77.338943481445312, -8.528143882751351 ], [ -77.336975097656193, -8.532087326049805 ], [ -77.335548400878849, -8.533460617065316 ], [ -77.334777832031193, -8.53363037109375 ], [ -77.333419799804688, -8.533472061157227 ], [ -77.331626892089787, -8.532435417175179 ], [ -77.331192016601562, -8.531867980956974 ], [ -77.329856872558594, -8.530956268310547 ], [ -77.328620910644531, -8.530456542968636 ], [ -77.327705383300781, -8.529729843139592 ], [ -77.326507568359261, -8.529331207275391 ], [ -77.325157165527287, -8.529229164123478 ], [ -77.322692871093636, -8.529750823974609 ], [ -77.319664001464844, -8.529985427856445 ], [ -77.31768798828125, -8.529908180236703 ], [ -77.316909790039062, -8.529678344726506 ], [ -77.316024780273438, -8.530126571655273 ], [ -77.314140319824219, -8.530190467834416 ], [ -77.312957763671818, -8.530623435974007 ], [ -77.311714172363224, -8.531523704528809 ], [ -77.310844421386662, -8.533002853393555 ], [ -77.310615539550781, -8.535390853881836 ], [ -77.310768127441349, -8.538452148437443 ], [ -77.311370849609375, -8.539326667785588 ], [ -77.313682556152344, -8.540857315063477 ], [ -77.314575195312443, -8.542732238769474 ], [ -77.314826965332031, -8.54442119598383 ], [ -77.314643859863281, -8.546112060546875 ], [ -77.312965393066293, -8.549284934997502 ], [ -77.312217712402344, -8.549941062927246 ], [ -77.311035156249943, -8.550347328186035 ], [ -77.310157775878906, -8.551490783691406 ], [ -77.310111999511719, -8.55212211608881 ], [ -77.311172485351562, -8.553446769714355 ], [ -77.311164855957031, -8.554800033569279 ], [ -77.310928344726506, -8.555562019348031 ], [ -77.309997558593693, -8.557102203369141 ], [ -77.307807922363224, -8.55972766876215 ], [ -77.306556701660099, -8.563802719116211 ], [ -77.304924011230412, -8.565944671630859 ], [ -77.303909301757812, -8.566673278808537 ], [ -77.300643920898381, -8.567959785461312 ], [ -77.299209594726506, -8.569043159484863 ], [ -77.296379089355469, -8.570606231689339 ], [ -77.295791625976506, -8.571187019348088 ], [ -77.295562744140625, -8.573223114013672 ], [ -77.296318054199219, -8.575488090515137 ], [ -77.296585083007812, -8.577457427978459 ], [ -77.29638671875, -8.579130172729435 ], [ -77.295761108398438, -8.581301689147949 ], [ -77.295227050781136, -8.582626342773438 ], [ -77.293968200683537, -8.584720611572152 ], [ -77.292869567871094, -8.585883140563965 ], [ -77.289161682128906, -8.588770866393986 ], [ -77.288642883300724, -8.589487075805664 ], [ -77.288124084472656, -8.590920448303166 ], [ -77.287818908691406, -8.593596458435059 ], [ -77.28790283203125, -8.595656394958439 ], [ -77.288841247558594, -8.597232818603516 ], [ -77.290061950683537, -8.600064277648869 ], [ -77.2911376953125, -8.605054855346623 ], [ -77.291114807128849, -8.60882472991932 ], [ -77.290702819824219, -8.612481117248478 ], [ -77.290779113769531, -8.61561203002924 ], [ -77.291000366210881, -8.616289138793945 ], [ -77.291862487792912, -8.617543220519963 ], [ -77.2926025390625, -8.620411872863656 ], [ -77.291618347167969, -8.623220443725586 ], [ -77.291511535644531, -8.624132156372013 ], [ -77.292213439941406, -8.625014305114689 ], [ -77.293548583984375, -8.625503540039006 ], [ -77.294525146484318, -8.626908302307129 ], [ -77.294761657714844, -8.628314018249512 ], [ -77.294181823730469, -8.62963962554926 ], [ -77.294059753417912, -8.630434036254826 ], [ -77.294868469238281, -8.633161544799805 ], [ -77.294357299804631, -8.635803222656193 ], [ -77.293167114257812, -8.63801383972168 ], [ -77.289901733398438, -8.641216278076172 ], [ -77.287010192871037, -8.64342021942133 ], [ -77.283477783203068, -8.644897460937386 ], [ -77.281898498535156, -8.645240783691406 ], [ -77.277770996093693, -8.645037651061955 ], [ -77.275253295898438, -8.645197868347168 ], [ -77.273277282714787, -8.64466667175293 ], [ -77.267127990722656, -8.645563125610352 ], [ -77.262725830078125, -8.647098541259766 ], [ -77.261535644531193, -8.647775650024357 ], [ -77.260665893554688, -8.648646354675293 ], [ -77.260147094726562, -8.650095939636174 ], [ -77.259765625, -8.652483940124455 ], [ -77.258438110351562, -8.654733657836857 ], [ -77.258224487304574, -8.656056404113713 ], [ -77.258766174316349, -8.65736198425293 ], [ -77.2603759765625, -8.658473968505859 ], [ -77.260536193847656, -8.662114143371582 ], [ -77.261756896972656, -8.66480827331543 ], [ -77.261611938476562, -8.667132377624512 ], [ -77.260765075683537, -8.668821334838867 ], [ -77.258590698242131, -8.670856475830078 ], [ -77.258483886718693, -8.673957824706974 ], [ -77.257240295410099, -8.675601959228459 ], [ -77.253944396972656, -8.678513526916504 ], [ -77.253585815429688, -8.679446220397949 ], [ -77.253463745117188, -8.681488990783691 ], [ -77.253036499023438, -8.682297706603947 ], [ -77.252227783203125, -8.682799339294377 ], [ -77.252105712890568, -8.684406280517578 ], [ -77.252861022949162, -8.687079429626465 ], [ -77.252922058105469, -8.688606262207031 ], [ -77.252105712890568, -8.690689086914062 ], [ -77.251884460449219, -8.692020416259766 ], [ -77.250770568847599, -8.693843841552734 ], [ -77.250961303710881, -8.694457054138127 ], [ -77.251800537109318, -8.695616722106934 ], [ -77.251960754394531, -8.696693420410156 ], [ -77.251831054687443, -8.697481155395451 ], [ -77.251358032226449, -8.698556900024414 ], [ -77.250465393066349, -8.69979190826416 ], [ -77.249473571777344, -8.700686454772949 ], [ -77.246963500976506, -8.701910018920898 ], [ -77.246559143066349, -8.70276927947998 ], [ -77.246589660644418, -8.704667091369629 ], [ -77.248184204101506, -8.710724830627328 ], [ -77.248123168945312, -8.711619377136174 ], [ -77.247528076171818, -8.713213920593262 ], [ -77.247604370117131, -8.713745117187443 ], [ -77.247604370117131, -8.715639114379883 ], [ -77.246772766113224, -8.717720031738281 ], [ -77.2467041015625, -8.718622207641602 ], [ -77.247833251953125, -8.719901084899846 ], [ -77.249420166015568, -8.720496177673283 ], [ -77.249847412109375, -8.721261978149414 ], [ -77.249679565429688, -8.721877098083496 ], [ -77.248069763183594, -8.724679946899414 ], [ -77.248023986816406, -8.725837707519474 ], [ -77.248344421386719, -8.72706413269043 ], [ -77.247985839843693, -8.727961540222168 ], [ -77.246925354003906, -8.729069709777832 ], [ -77.244789123535156, -8.730719566345215 ], [ -77.243568420410156, -8.732155799865666 ], [ -77.241920471191406, -8.733249664306641 ], [ -77.240226745605469, -8.734849929809513 ], [ -77.239395141601562, -8.735207557678166 ], [ -77.238235473632812, -8.735151290893498 ], [ -77.237686157226506, -8.735469818115178 ], [ -77.235633850097656, -8.737363815307617 ], [ -77.233955383300781, -8.740002632141 ], [ -77.232109069824219, -8.741711616516056 ], [ -77.228591918945312, -8.742411613464299 ], [ -77.22772216796875, -8.743059158325138 ], [ -77.227203369140568, -8.743792533874512 ], [ -77.227035522460881, -8.745121955871525 ], [ -77.227310180664006, -8.747624397277775 ], [ -77.227218627929631, -8.749406814575195 ], [ -77.226661682128906, -8.75102710723877 ], [ -77.224922180175724, -8.754047393798828 ], [ -77.224334716796818, -8.757304191589299 ], [ -77.22430419921875, -8.759726524353027 ], [ -77.223480224609318, -8.763491630554142 ], [ -77.223571777343693, -8.764557838439941 ], [ -77.223953247070256, -8.765288352966252 ], [ -77.224899291992188, -8.766105651855412 ], [ -77.225944519042969, -8.766369819641113 ], [ -77.226158142089787, -8.766892433166447 ], [ -77.225791931152287, -8.767373085021859 ], [ -77.224555969238224, -8.767931938171387 ], [ -77.223892211913949, -8.768551826477051 ], [ -77.223159790039062, -8.770182609558049 ], [ -77.222831726074162, -8.771766662597656 ], [ -77.222793579101562, -8.77247238159174 ], [ -77.221900939941406, -8.773714065551758 ], [ -77.221191406249943, -8.774261474609375 ], [ -77.219665527343693, -8.774821281433105 ], [ -77.218177795410156, -8.77662181854248 ], [ -77.214164733886605, -8.777918815612793 ], [ -77.210830688476562, -8.780052185058594 ], [ -77.208053588867131, -8.781072616577148 ], [ -77.206329345703068, -8.782510757446289 ], [ -77.205673217773381, -8.783690452575684 ], [ -77.204727172851562, -8.78734111785883 ], [ -77.203445434570312, -8.790681838989258 ], [ -77.202774047851562, -8.791641235351506 ], [ -77.200973510742131, -8.79339599609375 ], [ -77.200347900390625, -8.794504165649414 ], [ -77.200187683105469, -8.795283317565918 ], [ -77.200263977050781, -8.79735279083252 ], [ -77.199661254882756, -8.801114082336369 ], [ -77.199485778808594, -8.804251670837402 ], [ -77.198348999023438, -8.807267189025879 ], [ -77.197486877441406, -8.81148624420166 ], [ -77.196846008300781, -8.813405036926213 ], [ -77.195251464843693, -8.815467834472656 ], [ -77.195106506347656, -8.81599235534668 ], [ -77.192718505859375, -8.81956768035883 ], [ -77.189987182617188, -8.822168350219727 ], [ -77.188819885253906, -8.822798728942814 ], [ -77.184478759765568, -8.827968597412053 ], [ -77.182929992675781, -8.829178810119629 ], [ -77.181045532226506, -8.82974910736084 ], [ -77.179595947265625, -8.83065128326416 ], [ -77.177009582519531, -8.831725120544434 ], [ -77.174484252929631, -8.833990097045898 ], [ -77.173980712890568, -8.835701942443848 ], [ -77.17449951171875, -8.837607383727971 ], [ -77.176689147949219, -8.839147567749023 ], [ -77.177375793457031, -8.84007453918457 ], [ -77.177459716796875, -8.841412544250488 ], [ -77.17645263671875, -8.844283103942814 ], [ -77.176628112792969, -8.845159530639648 ], [ -77.177406311035156, -8.846872329711914 ], [ -77.177429199218693, -8.849357604980412 ], [ -77.176933288574219, -8.850906372070312 ], [ -77.175140380859318, -8.853148460388127 ], [ -77.172103881835881, -8.855952262878418 ], [ -77.171035766601506, -8.857710838317814 ], [ -77.1712646484375, -8.85920238494873 ], [ -77.17279052734375, -8.860865592956486 ], [ -77.17364501953125, -8.862233161926213 ], [ -77.174354553222656, -8.865004539489746 ], [ -77.173965454101562, -8.866470336914062 ], [ -77.171539306640625, -8.869927406311035 ], [ -77.171012878417969, -8.871044158935547 ], [ -77.170928955078068, -8.872390747070312 ], [ -77.171798706054631, -8.874245643615666 ], [ -77.171424865722599, -8.876022338867188 ], [ -77.170265197753849, -8.877483367919865 ], [ -77.167167663574219, -8.879487991333008 ], [ -77.165557861328125, -8.88129806518549 ], [ -77.165374755859375, -8.883352279663029 ], [ -77.165687561035099, -8.887460708618107 ], [ -77.165313720703068, -8.889571189880314 ], [ -77.164146423339844, -8.892296791076603 ], [ -77.162986755371094, -8.893550872802734 ], [ -77.160820007324162, -8.896620750427189 ], [ -77.157127380371037, -8.900028228759766 ], [ -77.156089782714844, -8.900613784789982 ], [ -77.155143737792969, -8.9008531570434 ], [ -77.154075622558537, -8.900654792785645 ], [ -77.153228759765625, -8.900126457214355 ], [ -77.150199890136719, -8.896345138549805 ], [ -77.148956298828125, -8.896225929260254 ], [ -77.147781372070256, -8.896684646606388 ], [ -77.145828247070312, -8.898667335510197 ], [ -77.144866943359375, -8.899152755737305 ], [ -77.144027709960938, -8.899969100952148 ], [ -77.143913269042969, -8.900576591491699 ], [ -77.144180297851562, -8.90152454376215 ], [ -77.143997192382812, -8.902111053466797 ], [ -77.142311096191406, -8.904426574707031 ], [ -77.139266967773381, -8.907852172851562 ], [ -77.139144897460938, -8.909262657165527 ], [ -77.139846801757756, -8.910614967346078 ], [ -77.139495849609375, -8.911519050598145 ], [ -77.138290405273438, -8.912738800048828 ], [ -77.134757995605469, -8.915262222290039 ], [ -77.132949829101562, -8.915816307067871 ], [ -77.130783081054631, -8.917102813720703 ], [ -77.130271911621094, -8.918245315551701 ], [ -77.130195617675781, -8.919583320617676 ], [ -77.131561279296818, -8.92158222198475 ], [ -77.133247375488281, -8.923063278198242 ], [ -77.133415222167969, -8.925285339355469 ], [ -77.132293701171875, -8.928501129150334 ], [ -77.131958007812386, -8.930998802185059 ], [ -77.131538391113281, -8.931877136230469 ], [ -77.129936218261662, -8.932864189147892 ], [ -77.128646850585938, -8.932254791259766 ], [ -77.127220153808594, -8.932182312011719 ], [ -77.126220703124943, -8.932820320129338 ], [ -77.125762939453125, -8.933473587036133 ], [ -77.125022888183594, -8.938322067260742 ], [ -77.124916076660156, -8.944135665893555 ], [ -77.124496459960881, -8.944881439208984 ], [ -77.123405456542969, -8.946060180664006 ], [ -77.121978759765625, -8.946595191955566 ], [ -77.120719909667969, -8.946483612060547 ], [ -77.118743896484375, -8.945409774780273 ], [ -77.117385864257812, -8.945444107055607 ], [ -77.114578247070256, -8.946852684020996 ], [ -77.113327026367131, -8.948687553405705 ], [ -77.112571716308537, -8.949322700500431 ], [ -77.11053466796875, -8.949686050415039 ], [ -77.107681274414062, -8.949404716491699 ], [ -77.106468200683537, -8.950024604797363 ], [ -77.105926513671875, -8.951432228088265 ], [ -77.105178833007812, -8.952213287353516 ], [ -77.105003356933594, -8.95362377166748 ], [ -77.104087829589787, -8.954208374023438 ], [ -77.103324890136662, -8.955197334289551 ], [ -77.103492736816406, -8.955665588378849 ], [ -77.104652404785099, -8.956391334533578 ], [ -77.104866027831974, -8.957058906555062 ], [ -77.104629516601562, -8.95791053771967 ], [ -77.103309631347656, -8.95958232879633 ], [ -77.103019714355469, -8.961164474487248 ], [ -77.103302001953125, -8.961911201476994 ], [ -77.104057312011719, -8.962549209594727 ], [ -77.106117248535156, -8.96268367767334 ], [ -77.107223510742131, -8.963091850280705 ], [ -77.108009338378849, -8.966567039489746 ], [ -77.109130859374943, -8.967493057250977 ], [ -77.109886169433594, -8.967753410339299 ], [ -77.110549926757812, -8.969015121459961 ], [ -77.110389709472599, -8.969692230224553 ], [ -77.109832763671761, -8.97028923034668 ], [ -77.10811614990223, -8.970815658569222 ], [ -77.105918884277287, -8.971984863281193 ], [ -77.104499816894531, -8.9725341796875 ], [ -77.102455139160099, -8.97398567199707 ], [ -77.100418090820312, -8.974331855773926 ], [ -77.097465515136719, -8.975397109985352 ], [ -77.096359252929631, -8.974995613098145 ], [ -77.093673706054688, -8.971865653991642 ], [ -77.092964172363281, -8.971761703491154 ], [ -77.091957092285156, -8.971994400024414 ], [ -77.091079711914062, -8.972639083862305 ], [ -77.087104797363224, -8.977145195007324 ], [ -77.085792541503849, -8.97821140289301 ], [ -77.078765869140625, -8.981197357177734 ], [ -77.074974060058594, -8.983424186706486 ], [ -77.073860168456974, -8.984470367431584 ], [ -77.072822570800724, -8.986166000366154 ], [ -77.0697021484375, -8.989510536193848 ], [ -77.066688537597656, -8.991767883300781 ], [ -77.063262939453068, -8.992891311645508 ], [ -77.060951232910156, -8.993183135986328 ], [ -77.057968139648438, -8.993156433105412 ], [ -77.055084228515568, -8.992448806762638 ], [ -77.054313659667912, -8.993048667907658 ], [ -77.053825378417912, -8.994101524352971 ], [ -77.052474975585938, -8.9949951171875 ], [ -77.050872802734318, -8.995229721069222 ], [ -77.049530029296818, -8.994747161865234 ], [ -77.048255920410156, -8.994819641113281 ], [ -77.043930053710881, -8.99754524230957 ], [ -77.042137145996094, -8.998140335083008 ], [ -77.038772583007756, -8.998721122741699 ], [ -77.037071228027344, -8.999345779418945 ], [ -77.034080505371037, -9.002174377441406 ], [ -77.033042907714787, -9.004096031188908 ], [ -77.033866882324219, -9.008086204528809 ], [ -77.033866882324219, -9.008528709411621 ], [ -77.034553527831974, -9.010288238525391 ], [ -77.034675598144474, -9.011915206909123 ], [ -77.034400939941406, -9.013228416442871 ], [ -77.033576965332031, -9.014542579650822 ], [ -77.029121398925724, -9.01590633392334 ], [ -77.028526306152344, -9.016585350036564 ], [ -77.028045654296875, -9.017928123474064 ], [ -77.026786804199219, -9.019378662109318 ], [ -77.022659301757756, -9.019430160522404 ], [ -77.021347045898438, -9.019996643066406 ], [ -77.019798278808537, -9.021426200866699 ], [ -77.017646789550781, -9.024420738220158 ], [ -77.017333984375, -9.025163650512638 ], [ -77.01727294921875, -9.026629447936898 ], [ -77.016960144042969, -9.027290344238224 ], [ -77.012565612792969, -9.027397155761662 ], [ -77.007942199707031, -9.031126022338867 ], [ -77.007019042968693, -9.03148365020752 ], [ -77.005035400390625, -9.031604766845646 ], [ -77.004104614257812, -9.031916618347168 ], [ -77.003097534179631, -9.032544136047363 ], [ -77.002388000488281, -9.0335693359375 ], [ -77.000892639160099, -9.03458118438715 ], [ -77.000602722167912, -9.035696029663086 ], [ -77.000816345214787, -9.039030075073242 ], [ -77.000335693359318, -9.040751457214355 ], [ -76.996589660644531, -9.043429374694824 ], [ -76.996200561523438, -9.044028282165527 ], [ -76.996116638183594, -9.045184135437012 ], [ -76.995613098144531, -9.045820236206055 ], [ -76.994277954101562, -9.046594619750977 ], [ -76.991348266601562, -9.047796249389648 ], [ -76.989151000976562, -9.049526214599553 ], [ -76.987403869628906, -9.049921989440918 ], [ -76.986465454101562, -9.050894737243652 ], [ -76.985885620117188, -9.052571296691895 ], [ -76.984085083007812, -9.053340911865178 ], [ -76.982986450195256, -9.054531097412109 ], [ -76.981887817382812, -9.055134773254395 ], [ -76.980690002441349, -9.057147026061898 ], [ -76.9808349609375, -9.059859275817871 ], [ -76.980331420898438, -9.060493469238224 ], [ -76.980178833007812, -9.061461448669434 ], [ -76.979194641113281, -9.062623977661076 ], [ -76.978507995605412, -9.062835693359375 ], [ -76.977722167968693, -9.06282901763916 ], [ -76.976875305175724, -9.062519073486328 ], [ -76.974533081054688, -9.062765121459961 ], [ -76.973564147949219, -9.062652587890625 ], [ -76.971832275390568, -9.061858177185059 ], [ -76.971397399902344, -9.061400413513184 ], [ -76.971237182617131, -9.060795783996525 ], [ -76.970222473144531, -9.060202598571777 ], [ -76.965896606445256, -9.059557914733887 ], [ -76.965278625488281, -9.059968948364201 ], [ -76.964805603027344, -9.060641288757267 ], [ -76.963478088378906, -9.063701629638672 ], [ -76.962974548339844, -9.065521240234375 ], [ -76.961479187011719, -9.066949844360352 ], [ -76.960655212402287, -9.067333221435547 ], [ -76.959648132324219, -9.067347526550236 ], [ -76.957328796386662, -9.065516471862736 ], [ -76.956367492675724, -9.065285682678166 ], [ -76.955581665039062, -9.065506935119629 ], [ -76.954208374023438, -9.066534996032715 ], [ -76.950843811035099, -9.067179679870605 ], [ -76.949417114257756, -9.068299293518066 ], [ -76.948387145996094, -9.07020187377924 ], [ -76.945968627929631, -9.073478698730355 ], [ -76.945404052734318, -9.073914527893066 ], [ -76.944473266601562, -9.07421779632557 ], [ -76.942146301269474, -9.073552131652832 ], [ -76.940605163574219, -9.073525428771973 ], [ -76.939125061035043, -9.073814392089844 ], [ -76.936698913574219, -9.072415351867676 ], [ -76.933586120605412, -9.071951866149902 ], [ -76.931434631347656, -9.070808410644418 ], [ -76.929672241210881, -9.070408821105957 ], [ -76.926300048828125, -9.071412086486816 ], [ -76.923713684082031, -9.073234558105469 ], [ -76.922348022460938, -9.07393741607666 ], [ -76.919830322265568, -9.074032783508301 ], [ -76.917594909667969, -9.075210571289062 ], [ -76.916694641113224, -9.075286865234318 ], [ -76.914497375488224, -9.076528549194336 ], [ -76.91357421875, -9.077753067016602 ], [ -76.911956787109375, -9.080880165100098 ], [ -76.908409118652287, -9.084471702575684 ], [ -76.905921936035099, -9.087792396545353 ], [ -76.903060913085881, -9.088582992553654 ], [ -76.902770996093693, -9.09005069732666 ], [ -76.898429870605469, -9.094981193542424 ], [ -76.897636413574162, -9.097154617309513 ], [ -76.896591186523324, -9.098832130432129 ], [ -76.894104003906193, -9.0992431640625 ], [ -76.892333984375, -9.101360321044922 ], [ -76.890098571777287, -9.101052284240666 ], [ -76.888137817382812, -9.101724624633732 ], [ -76.886123657226562, -9.103092193603516 ], [ -76.883293151855469, -9.104471206665039 ], [ -76.882934570312443, -9.104881286621094 ], [ -76.882698059082031, -9.10581111907959 ], [ -76.881156921386719, -9.106281280517521 ], [ -76.878585815429688, -9.107939720153809 ], [ -76.877754211425781, -9.108757972717228 ], [ -76.875236511230469, -9.109738349914494 ], [ -76.873481750488224, -9.111286163330078 ], [ -76.870384216308594, -9.113487243652344 ], [ -76.868019104003906, -9.114312171935978 ], [ -76.865684509277287, -9.11468601226801 ], [ -76.863349914550781, -9.11445426940918 ], [ -76.86083984375, -9.114720344543457 ], [ -76.859825134277344, -9.115096092224064 ], [ -76.859169006347656, -9.115695953369084 ], [ -76.858619689941349, -9.115817070007324 ], [ -76.8577880859375, -9.114989280700684 ], [ -76.856887817382756, -9.114577293395996 ], [ -76.856163024902344, -9.114581108093262 ], [ -76.855392456054574, -9.115036964416504 ], [ -76.854583740234375, -9.115215301513615 ], [ -76.852294921875, -9.114148139953613 ], [ -76.850875854492131, -9.114220619201603 ], [ -76.847465515136662, -9.11540412902832 ], [ -76.845954895019531, -9.116822242736816 ], [ -76.8433837890625, -9.117612838745117 ], [ -76.842460632324219, -9.11860179901123 ], [ -76.841819763183537, -9.118931770324707 ], [ -76.839508056640625, -9.119284629821777 ], [ -76.837760925292969, -9.118572235107365 ], [ -76.836776733398381, -9.118531227111816 ], [ -76.834663391113224, -9.120846748352051 ], [ -76.831871032714844, -9.121884346008301 ], [ -76.83099365234375, -9.122475624084473 ], [ -76.830642700195312, -9.122414588928166 ], [ -76.828086853027287, -9.123275756835938 ], [ -76.824691772460938, -9.122904777526855 ], [ -76.820526123046875, -9.123696327209473 ], [ -76.81972503662098, -9.124267578125 ], [ -76.818984985351562, -9.125175476074219 ], [ -76.818672180175724, -9.126117706298771 ], [ -76.818672180175724, -9.126956939697209 ], [ -76.818679809570312, -9.1273193359375 ], [ -76.818023681640625, -9.128290176391602 ], [ -76.816833496093693, -9.12927341461176 ], [ -76.815803527831974, -9.129792213439941 ], [ -76.814170837402287, -9.129938125610352 ], [ -76.811836242675781, -9.12978458404541 ], [ -76.810340881347656, -9.130154609680176 ], [ -76.806297302246094, -9.130410194396916 ], [ -76.799980163574162, -9.131526947021428 ], [ -76.796958923339844, -9.132390022277832 ], [ -76.792274475097656, -9.134737968444824 ], [ -76.790443420410099, -9.135189056396484 ], [ -76.788185119628906, -9.136330604553166 ], [ -76.788002014160156, -9.136919021606388 ], [ -76.788032531738224, -9.138275146484375 ], [ -76.788291931152344, -9.13884258270258 ], [ -76.788917541503849, -9.139365196228027 ], [ -76.789085388183537, -9.140077590942326 ], [ -76.787139892578125, -9.14318943023676 ], [ -76.786186218261719, -9.144016265869084 ], [ -76.784774780273438, -9.144808769226074 ], [ -76.783866882324105, -9.145157814025879 ], [ -76.782615661621037, -9.145244598388672 ], [ -76.781539916992188, -9.145913124084473 ], [ -76.778511047363224, -9.148845672607422 ], [ -76.776618957519418, -9.149903297424316 ], [ -76.773704528808594, -9.152312278747502 ], [ -76.770408630371037, -9.15434455871582 ], [ -76.768333435058594, -9.156590461730957 ], [ -76.767822265624943, -9.157748222351017 ], [ -76.767692565917969, -9.159168243408203 ], [ -76.768424987792969, -9.164553642272949 ], [ -76.768180847167969, -9.165521621704045 ], [ -76.7672119140625, -9.166520118713379 ], [ -76.767227172851562, -9.168202400207406 ], [ -76.766426086425781, -9.169073104858342 ], [ -76.766273498535156, -9.169681549072209 ], [ -76.764801025390625, -9.17194938659668 ], [ -76.762603759765625, -9.174789428710938 ], [ -76.761184692382812, -9.177843093872013 ], [ -76.758621215820312, -9.180079460144043 ], [ -76.7568359375, -9.18231010437006 ], [ -76.754249572753906, -9.18406963348383 ], [ -76.750579833984318, -9.187514305114632 ], [ -76.747596740722599, -9.189689636230469 ], [ -76.745315551757756, -9.1921129226684 ], [ -76.74468994140625, -9.193111419677734 ], [ -76.74462890625, -9.193464279174748 ], [ -76.744026184082031, -9.194119453430119 ], [ -76.740707397460938, -9.196791648864746 ], [ -76.740432739257812, -9.199442863464355 ], [ -76.739662170410156, -9.201455116271916 ], [ -76.737335205078125, -9.203445434570256 ], [ -76.736724853515568, -9.206125259399414 ], [ -76.734199523925781, -9.208559036254826 ], [ -76.734031677246094, -9.21016788482666 ], [ -76.734771728515625, -9.212381362914925 ], [ -76.73419189453125, -9.213873863220215 ], [ -76.734504699707031, -9.21546459197998 ], [ -76.733184814453125, -9.217169761657658 ], [ -76.732391357421875, -9.220121383666992 ], [ -76.731246948242188, -9.222533226013184 ], [ -76.730712890624943, -9.224342346191349 ], [ -76.729835510253906, -9.229926109313908 ], [ -76.728927612304631, -9.231375694274846 ], [ -76.727912902832031, -9.234816551208382 ], [ -76.728431701660099, -9.236152648925724 ], [ -76.728446960449162, -9.237136840820312 ], [ -76.728981018066406, -9.238663673400822 ], [ -76.729400634765568, -9.243011474609318 ], [ -76.730422973632812, -9.244694709777832 ], [ -76.7305908203125, -9.246212959289437 ], [ -76.730033874511719, -9.247726440429688 ], [ -76.728378295898438, -9.249615669250431 ], [ -76.727745056152344, -9.25148868560791 ], [ -76.726341247558537, -9.253792762756348 ], [ -76.725944519042912, -9.25615215301508 ], [ -76.725990295410156, -9.257500648498535 ], [ -76.726203918457031, -9.257980346679631 ], [ -76.730438232421818, -9.262199401855412 ], [ -76.733932495117188, -9.266311645507699 ], [ -76.736724853515568, -9.269128799438477 ], [ -76.737960815429631, -9.270895957946777 ], [ -76.738800048828125, -9.272880554199162 ], [ -76.740211486816406, -9.274636268615723 ], [ -76.740318298339844, -9.275894165039062 ], [ -76.739700317382756, -9.277648925781193 ], [ -76.740066528320256, -9.279401779174748 ], [ -76.739982604980412, -9.282719612121525 ], [ -76.73974609375, -9.284231185913086 ], [ -76.739517211914006, -9.284459114074707 ], [ -76.739669799804688, -9.285072326660099 ], [ -76.741470336914062, -9.288283348083439 ], [ -76.741653442382812, -9.291597366332951 ], [ -76.742546081542912, -9.292609214782601 ], [ -76.743911743164062, -9.294796943664551 ], [ -76.744674682617188, -9.297181129455566 ], [ -76.744514465332031, -9.298338890075684 ], [ -76.743255615234375, -9.299863815307617 ], [ -76.742752075195256, -9.301782608032227 ], [ -76.743843078613281, -9.304319381713867 ], [ -76.743988037109318, -9.305916786193848 ], [ -76.74343109130848, -9.306959152221623 ], [ -76.742485046386719, -9.307931900024357 ], [ -76.741233825683537, -9.312856674194336 ], [ -76.739738464355469, -9.315203666686955 ], [ -76.739334106445312, -9.316580772399902 ], [ -76.739402770996037, -9.318110466003418 ], [ -76.739990234374943, -9.319994926452637 ], [ -76.739913940429688, -9.322149276733285 ], [ -76.740821838378849, -9.324973106384277 ], [ -76.740577697753906, -9.329222679138127 ], [ -76.740707397460938, -9.330614089965763 ], [ -76.741180419921875, -9.331699371337834 ], [ -76.741958618164062, -9.332733154296875 ], [ -76.742622375488281, -9.333310127258301 ], [ -76.744773864746094, -9.334492683410588 ], [ -76.747367858886719, -9.337941169738713 ], [ -76.747879028320256, -9.33919715881342 ], [ -76.748260498046818, -9.341499328613281 ], [ -76.749641418457031, -9.344331741333008 ], [ -76.750854492187443, -9.346586227416992 ], [ -76.751091003417969, -9.348808288574219 ], [ -76.752243041992188, -9.350540161132812 ], [ -76.752876281738281, -9.352407455444336 ], [ -76.755180358886719, -9.355297088623047 ], [ -76.755531311035099, -9.357872009277344 ], [ -76.756980895996094, -9.359700202941781 ], [ -76.757308959960938, -9.361190795898381 ], [ -76.757843017578125, -9.362236976623535 ], [ -76.758430480957031, -9.362786293029785 ], [ -76.761878967285156, -9.364368438720703 ], [ -76.763900756835881, -9.366546630859375 ], [ -76.765266418456974, -9.367378234863224 ], [ -76.766372680664062, -9.365006446838322 ], [ -76.767379760742188, -9.363744735717773 ], [ -76.770668029785156, -9.3616943359375 ], [ -76.771141052246094, -9.358869552612305 ], [ -76.772941589355469, -9.355969429016056 ], [ -76.773742675781193, -9.353216171264592 ], [ -76.774734497070312, -9.35192775726307 ], [ -76.776802062988224, -9.35084056854248 ], [ -76.777610778808594, -9.349879264831543 ], [ -76.778892517089787, -9.345494270324707 ], [ -76.779869079589844, -9.34465312957758 ], [ -76.782234191894474, -9.343185424804688 ], [ -76.783607482910156, -9.341640472412053 ], [ -76.784797668456974, -9.34123706817627 ], [ -76.786270141601562, -9.339928627014103 ], [ -76.7890625, -9.338657379150391 ], [ -76.790061950683537, -9.337260246276855 ], [ -76.794540405273381, -9.332680702209416 ], [ -76.79742431640625, -9.331455230712891 ], [ -76.799491882324162, -9.331309318542424 ], [ -76.800926208496037, -9.331473350524902 ], [ -76.801795959472543, -9.331170082092228 ], [ -76.804412841796875, -9.331329345703068 ], [ -76.805229187011605, -9.330952644348145 ], [ -76.806770324707031, -9.330837249755859 ], [ -76.808395385742188, -9.329428672790527 ], [ -76.809463500976562, -9.329259872436523 ], [ -76.810821533203068, -9.328556060790959 ], [ -76.812881469726562, -9.327254295349121 ], [ -76.814537048339844, -9.325861930847111 ], [ -76.814659118652287, -9.324622154235783 ], [ -76.814323425292969, -9.322761535644474 ], [ -76.815376281738281, -9.321255683898869 ], [ -76.815185546875, -9.320173263549805 ], [ -76.815338134765511, -9.318833351135254 ], [ -76.815010070800781, -9.317631721496525 ], [ -76.815124511718693, -9.315570831298828 ], [ -76.816123962402344, -9.314291000366211 ], [ -76.816543579101506, -9.312554359435978 ], [ -76.817810058593693, -9.31048393249506 ], [ -76.818550109863224, -9.308647155761662 ], [ -76.821174621582031, -9.306318283080941 ], [ -76.822097778320256, -9.305111885070801 ], [ -76.823921203613168, -9.300608634948674 ], [ -76.82550048828125, -9.298901557922363 ], [ -76.82574462890625, -9.297218322753906 ], [ -76.827186584472656, -9.295882225036621 ], [ -76.827247619628849, -9.294544219970703 ], [ -76.828437805175781, -9.293181419372445 ], [ -76.828628540039062, -9.292123794555664 ], [ -76.829490661621094, -9.290772438049316 ], [ -76.829483032226562, -9.29004955291748 ], [ -76.830345153808594, -9.28758430480957 ], [ -76.830413818359375, -9.284980773925724 ], [ -76.830795288085938, -9.284482002258301 ], [ -76.831619262695256, -9.284069061279297 ], [ -76.831352233886662, -9.28250789642334 ], [ -76.832328796386719, -9.281202316284123 ], [ -76.832122802734261, -9.277712821960392 ], [ -76.83349609375, -9.274820327758732 ], [ -76.833351135253849, -9.27222728729248 ], [ -76.833816528320256, -9.26994514465332 ], [ -76.833816528320256, -9.268601417541447 ], [ -76.835052490234318, -9.265512466430664 ], [ -76.835426330566349, -9.263946533203125 ], [ -76.836563110351562, -9.262113571166992 ], [ -76.838134765625, -9.261309623718205 ], [ -76.842796325683537, -9.261817932128849 ], [ -76.844047546386719, -9.26284122467041 ], [ -76.845733642578068, -9.264840126037598 ], [ -76.84625244140625, -9.266537666320801 ], [ -76.848388671875, -9.270902633666935 ], [ -76.849937438964787, -9.273327827453613 ], [ -76.851982116699219, -9.27596473693842 ], [ -76.854316711425724, -9.280517578124943 ], [ -76.854743957519531, -9.282350540161076 ], [ -76.855636596679688, -9.283811569213754 ], [ -76.856033325195256, -9.285003662109261 ], [ -76.856086730957031, -9.286458015441781 ], [ -76.855705261230469, -9.28752422332758 ], [ -76.854568481445312, -9.288220405578613 ], [ -76.854568481445312, -9.289837837219238 ], [ -76.854881286621037, -9.290042877197209 ], [ -76.855873107910156, -9.29002857208252 ], [ -76.85939788818348, -9.289234161376953 ], [ -76.861198425292912, -9.28912353515625 ], [ -76.86419677734375, -9.2897691726684 ], [ -76.86590576171875, -9.289814949035645 ], [ -76.867279052734318, -9.290512084960881 ], [ -76.867774963378849, -9.291033744812012 ], [ -76.868202209472656, -9.292496681213379 ], [ -76.868896484375, -9.293758392333928 ], [ -76.869171142578125, -9.295718193054199 ], [ -76.869720458984375, -9.297232627868652 ], [ -76.869888305663949, -9.299565315246582 ], [ -76.870323181152344, -9.300811767578068 ], [ -76.870086669921875, -9.302040100097599 ], [ -76.868934631347543, -9.303179740905705 ], [ -76.867401123046818, -9.306234359741211 ], [ -76.867286682128849, -9.307661056518555 ], [ -76.867965698242131, -9.309501647949162 ], [ -76.872947692871094, -9.31607723236084 ], [ -76.87603759765625, -9.318572998046761 ], [ -76.877532958984375, -9.320120811462402 ], [ -76.879531860351562, -9.322677612304688 ], [ -76.88076019287098, -9.324983596801701 ], [ -76.881523132324105, -9.325740814208984 ], [ -76.885986328124943, -9.327667236328125 ], [ -76.888900756835938, -9.329469680786076 ], [ -76.892181396484318, -9.330096244812012 ], [ -76.893280029296875, -9.330504417419434 ], [ -76.894889831542969, -9.332060813903752 ], [ -76.895141601562443, -9.332637786865234 ], [ -76.895294189453125, -9.334518432617188 ], [ -76.894744873046818, -9.335840225219727 ], [ -76.894584655761662, -9.337900161743164 ], [ -76.895111083984375, -9.340537071228027 ], [ -76.896522521972656, -9.343549728393555 ], [ -76.899787902832031, -9.348505020141602 ], [ -76.900550842285156, -9.350805282592773 ], [ -76.900726318359375, -9.353047370910645 ], [ -76.900207519531193, -9.355120658874512 ], [ -76.900077819824219, -9.356856346130314 ], [ -76.900260925292969, -9.357704162597656 ], [ -76.900985717773438, -9.358840942382812 ], [ -76.902275085449219, -9.360244750976506 ], [ -76.904502868652287, -9.361615180969238 ], [ -76.906829833984375, -9.362550735473576 ], [ -76.907402038574219, -9.36366081237793 ], [ -76.907180786132812, -9.365251541137638 ], [ -76.907943725585938, -9.366250038146916 ], [ -76.909736633300724, -9.366866111755314 ], [ -76.915145874023438, -9.367071151733398 ], [ -76.916236877441293, -9.367535591125488 ], [ -76.9176025390625, -9.368568420410156 ], [ -76.919631958007812, -9.370854377746525 ], [ -76.919929504394474, -9.371981620788574 ], [ -76.923767089843693, -9.378806114196721 ], [ -76.924781799316406, -9.381203651428223 ], [ -76.925209045410156, -9.385395050048771 ], [ -76.924583435058594, -9.388463020324707 ], [ -76.924621582031193, -9.389891624450684 ], [ -76.925933837890568, -9.391241073608398 ], [ -76.928054809570256, -9.391634941101074 ], [ -76.929351806640625, -9.392341613769531 ], [ -76.932929992675781, -9.396019935607853 ], [ -76.934188842773438, -9.398110389709416 ], [ -76.935028076171875, -9.400012969970646 ], [ -76.936553955078125, -9.405980110168457 ], [ -76.936019897460938, -9.410784721374512 ], [ -76.932907104492131, -9.418846130371094 ], [ -76.931564331054631, -9.421583175659123 ], [ -76.929962158203068, -9.423980712890625 ], [ -76.929779052734261, -9.426184654235783 ], [ -76.930076599121094, -9.427368164062443 ], [ -76.930122375488281, -9.431427001953125 ], [ -76.930770874023438, -9.433493614196777 ], [ -76.931182861328068, -9.43643856048584 ], [ -76.932395935058594, -9.439841270446721 ], [ -76.934089660644531, -9.44160270690918 ], [ -76.937698364257812, -9.443968772888184 ], [ -76.939903259277344, -9.446812629699707 ], [ -76.943138122558594, -9.449408531188965 ], [ -76.944625854492131, -9.451679229736271 ], [ -76.945098876953068, -9.45195484161377 ], [ -76.946342468261662, -9.452164649963379 ], [ -76.947471618652344, -9.4533433914184 ], [ -76.947708129882699, -9.453830718994141 ], [ -76.94781494140625, -9.455990791320744 ], [ -76.948112487792969, -9.457199096679688 ], [ -76.95220947265625, -9.466534614562988 ], [ -76.952087402343693, -9.467610359191895 ], [ -76.950347900390568, -9.470447540283203 ], [ -76.949394226074162, -9.473635673522949 ], [ -76.948638916015568, -9.474960327148381 ], [ -76.947288513183594, -9.479143142700195 ], [ -76.944099426269531, -9.483825683593693 ], [ -76.942573547363281, -9.485588073730469 ], [ -76.941825866699219, -9.488249778747559 ], [ -76.939125061035043, -9.491501808166504 ], [ -76.938224792480469, -9.493051528930664 ], [ -76.938064575195256, -9.494392395019531 ], [ -76.938232421874943, -9.496533393859806 ], [ -76.940261840820256, -9.499159812927189 ], [ -76.940666198730469, -9.500261306762638 ], [ -76.940391540527344, -9.50157356262207 ], [ -76.938812255859318, -9.503561019897461 ], [ -76.938514709472656, -9.50432300567627 ], [ -76.938583374023438, -9.504856109619141 ], [ -76.939750671386719, -9.506504058837891 ], [ -76.939445495605469, -9.508358955383244 ], [ -76.940223693847656, -9.510497093200627 ], [ -76.939880371093693, -9.511656761169377 ], [ -76.938194274902344, -9.51492977142334 ], [ -76.937774658203068, -9.516304016113281 ], [ -76.938179016113281, -9.518996238708439 ], [ -76.938911437988224, -9.520890235900879 ], [ -76.936874389648438, -9.523912429809513 ], [ -76.936553955078125, -9.524934768676758 ], [ -76.937377929687443, -9.52647590637207 ], [ -76.940277099609375, -9.529317855834961 ], [ -76.94134521484375, -9.532223701477051 ], [ -76.943626403808594, -9.534894943237248 ], [ -76.945060729980469, -9.53590011596674 ], [ -76.947708129882699, -9.53643608093256 ], [ -76.948951721191406, -9.536998748779297 ], [ -76.954284667968693, -9.542174339294377 ], [ -76.954444885253849, -9.542951583862305 ], [ -76.954277038574162, -9.544569969177132 ], [ -76.953742980957031, -9.546100616455021 ], [ -76.953277587890625, -9.546683311462402 ], [ -76.953407287597599, -9.54721641540516 ], [ -76.951759338378906, -9.550471305847111 ], [ -76.951583862304631, -9.551400184631348 ], [ -76.952598571777344, -9.55328464508051 ], [ -76.953659057617188, -9.558992385864258 ], [ -76.954231262207031, -9.559920310974064 ], [ -76.955192565917969, -9.560881614685059 ], [ -76.956001281738224, -9.56091403961176 ], [ -76.958457946777287, -9.559497833251953 ], [ -76.961212158203125, -9.559473037719727 ], [ -76.962501525878906, -9.559730529785099 ], [ -76.963676452636719, -9.560870170593205 ], [ -76.964286804199162, -9.561182022094727 ], [ -76.968063354492188, -9.560140609741211 ], [ -76.968879699706918, -9.560145378112793 ], [ -76.969627380371037, -9.560466766357422 ], [ -76.970901489257812, -9.561670303344727 ], [ -76.971946716308594, -9.561916351318303 ], [ -76.973503112792969, -9.561455726623535 ], [ -76.974784851074162, -9.560474395751953 ], [ -76.976066589355469, -9.560201644897461 ], [ -76.977012634277344, -9.561691284179688 ], [ -76.977409362792969, -9.563078880310059 ], [ -76.980506896972599, -9.565032005310059 ], [ -76.981277465820199, -9.565957069396916 ], [ -76.981788635253906, -9.568206787109375 ], [ -76.982376098632812, -9.574920654296761 ], [ -76.983177185058537, -9.57707500457758 ], [ -76.984390258789006, -9.577926635742188 ], [ -76.986640930175781, -9.578410148620549 ], [ -76.987907409667969, -9.578921318054199 ], [ -76.988754272460938, -9.57960033416748 ], [ -76.989273071289006, -9.580395698547363 ], [ -76.989395141601562, -9.582419395446721 ], [ -76.988151550292969, -9.589042663574219 ], [ -76.988128662109318, -9.591609001159668 ], [ -76.988479614257812, -9.593605041503849 ], [ -76.989341735839844, -9.595879554748535 ], [ -76.992630004882812, -9.598481178283635 ], [ -76.994827270507812, -9.603135108947754 ], [ -76.995887756347656, -9.603652000427246 ], [ -76.998458862304688, -9.603980064392033 ], [ -77.002159118652287, -9.605667114257812 ], [ -77.003028869628906, -9.605472564697266 ], [ -77.0042724609375, -9.605701446533146 ], [ -77.007087707519474, -9.60779953002924 ], [ -77.008758544921875, -9.60870170593256 ], [ -77.010101318359375, -9.609906196594238 ], [ -77.011817932128906, -9.610665321350098 ], [ -77.012771606445312, -9.61149883270258 ], [ -77.013229370117188, -9.612264633178711 ], [ -77.013961791992131, -9.616121292114258 ], [ -77.014633178710881, -9.616731643676701 ], [ -77.015815734863281, -9.616616249084416 ], [ -77.016815185546818, -9.615885734558049 ], [ -77.017837524414062, -9.614607810974121 ], [ -77.018959045410156, -9.612276077270508 ], [ -77.022445678710881, -9.611016273498535 ], [ -77.023620605468636, -9.610901832580566 ], [ -77.024650573730412, -9.611221313476506 ], [ -77.026222229003906, -9.612957954406738 ], [ -77.027252197265625, -9.613492965698185 ], [ -77.028205871582031, -9.614580154418945 ], [ -77.028488159179688, -9.615239143371582 ], [ -77.028633117675781, -9.617823600769043 ], [ -77.02984619140625, -9.619236946105957 ], [ -77.031944274902344, -9.620081901550236 ], [ -77.033073425292969, -9.619776725769043 ], [ -77.03497314453125, -9.619874954223576 ], [ -77.036659240722599, -9.620740890502873 ], [ -77.037971496582031, -9.622090339660645 ], [ -77.040634155273438, -9.625924110412598 ], [ -77.042213439941349, -9.627062797546273 ], [ -77.0428466796875, -9.629020690917969 ], [ -77.043258666992131, -9.632208824157658 ], [ -77.04412841796875, -9.634564399719238 ], [ -77.045738220214787, -9.635991096496582 ], [ -77.047599792480469, -9.63665771484375 ], [ -77.048912048339844, -9.638270378112793 ], [ -77.049697875976562, -9.639971733093262 ], [ -77.050186157226562, -9.64196872711176 ], [ -77.05023193359375, -9.643847465515023 ], [ -77.048873901367131, -9.649313926696777 ], [ -77.048049926757812, -9.650802612304631 ], [ -77.047439575195256, -9.652667045593262 ], [ -77.045417785644531, -9.655853271484318 ], [ -77.0428466796875, -9.658363342285099 ], [ -77.041702270507812, -9.659988403320199 ], [ -77.041267395019531, -9.661336898803654 ], [ -77.040962219238224, -9.665182113647404 ], [ -77.040603637695312, -9.666564941406193 ], [ -77.040000915527287, -9.667673110961914 ], [ -77.038970947265568, -9.668534278869629 ], [ -77.037704467773381, -9.670398712158203 ], [ -77.036964416503849, -9.672689437866154 ], [ -77.035812377929631, -9.674385070800724 ], [ -77.034263610839844, -9.677865028381348 ], [ -77.033790588378849, -9.679685592651367 ], [ -77.032951354980412, -9.681472778320312 ], [ -77.031272888183594, -9.68624305725092 ], [ -77.028961181640511, -9.69080638885498 ], [ -77.02850341796875, -9.692914009094125 ], [ -77.026412963867188, -9.695503234863281 ], [ -77.025733947753906, -9.696962356567383 ], [ -77.023292541503906, -9.700303077697754 ], [ -77.022705078125, -9.701805114746094 ], [ -77.022483825683594, -9.703235626220703 ], [ -77.022171020507756, -9.704079627990723 ], [ -77.021522521972543, -9.708330154418945 ], [ -77.019607543945256, -9.711263656616211 ], [ -77.017402648925724, -9.713253021240234 ], [ -77.01251220703125, -9.715461730956974 ], [ -77.009780883789006, -9.717447280883675 ], [ -77.004066467285099, -9.723475456237736 ], [ -77.002006530761719, -9.727419853210449 ], [ -76.998146057128849, -9.730563163757324 ], [ -76.997756958007756, -9.73155689239502 ], [ -76.997688293457031, -9.73250675201416 ], [ -76.998046874999943, -9.73309326171875 ], [ -76.998153686523381, -9.734167098999023 ], [ -76.996696472167912, -9.737368583679142 ], [ -76.995994567871094, -9.737688064575195 ], [ -76.993545532226506, -9.737790107727051 ], [ -76.991325378417969, -9.739105224609375 ], [ -76.989212036132812, -9.740774154663086 ], [ -76.986022949218693, -9.744615554809513 ], [ -76.984771728515568, -9.745083808898926 ], [ -76.983352661132756, -9.744595527648869 ], [ -76.982208251953068, -9.743453979492188 ], [ -76.981414794921875, -9.739479064941406 ], [ -76.980026245117131, -9.735539436340275 ], [ -76.980026245117131, -9.733795166015568 ], [ -76.980941772460938, -9.727660179138127 ], [ -76.980400085449162, -9.723477363586426 ], [ -76.978408813476506, -9.720271110534668 ], [ -76.973716735839787, -9.714685440063477 ], [ -76.973152160644474, -9.713333129882812 ], [ -76.972038269042969, -9.712126731872502 ], [ -76.970909118652344, -9.7114000320434 ], [ -76.968986511230469, -9.711250305175781 ], [ -76.968032836914062, -9.711626052856388 ], [ -76.966911315917969, -9.712836265563965 ], [ -76.965736389160156, -9.713148117065373 ], [ -76.964523315429688, -9.713003158569336 ], [ -76.962997436523438, -9.712116241455078 ], [ -76.962059020996094, -9.71209526062006 ], [ -76.960823059082031, -9.711514472961426 ], [ -76.956771850585938, -9.712252616882324 ], [ -76.955490112304688, -9.712274551391545 ], [ -76.954544067382756, -9.71123218536377 ], [ -76.954147338867188, -9.708576202392578 ], [ -76.953178405761719, -9.706629753112793 ], [ -76.952011108398438, -9.704984664916992 ], [ -76.950744628906193, -9.704483032226562 ], [ -76.948043823242188, -9.704345703125 ], [ -76.945449829101562, -9.703167915344238 ], [ -76.944259643554631, -9.703805923461857 ], [ -76.942985534667969, -9.704846382141113 ], [ -76.941024780273381, -9.70687198638916 ], [ -76.940887451171875, -9.708743095397949 ], [ -76.939865112304631, -9.711677551269418 ], [ -76.936019897460938, -9.718172073364258 ], [ -76.935485839843693, -9.71970272064209 ], [ -76.934890747070312, -9.720268249511719 ], [ -76.935119628906136, -9.727137565612793 ], [ -76.934669494628906, -9.728975296020451 ], [ -76.932617187499943, -9.731281280517578 ], [ -76.929931640625, -9.733772277831974 ], [ -76.927665710449162, -9.73497104644764 ], [ -76.926734924316406, -9.735761642456055 ], [ -76.924362182617188, -9.739347457885685 ], [ -76.919151306152344, -9.741607666015568 ], [ -76.917953491210824, -9.742491722106934 ], [ -76.917343139648438, -9.743226051330566 ], [ -76.914985656738224, -9.751087188720703 ], [ -76.913909912109375, -9.753263473510742 ], [ -76.912361145019531, -9.755549430847168 ], [ -76.911903381347656, -9.759296417236328 ], [ -76.911437988281193, -9.760427474975529 ], [ -76.912002563476562, -9.762576103210392 ], [ -76.911888122558594, -9.76325511932373 ], [ -76.910820007324219, -9.763704299926758 ], [ -76.908432006835938, -9.763173103332463 ], [ -76.905960083007812, -9.763087272644043 ], [ -76.904739379882812, -9.763501167297363 ], [ -76.903755187988281, -9.764655113220158 ], [ -76.902488708496037, -9.767556190490666 ], [ -76.901962280273438, -9.769602775573674 ], [ -76.902198791503849, -9.771155357360783 ], [ -76.902961730956974, -9.773520469665471 ], [ -76.903121948242188, -9.775001525878793 ], [ -76.902885437011605, -9.779305458068791 ], [ -76.903106689453125, -9.783750534057617 ], [ -76.902999877929688, -9.787785530090275 ], [ -76.902252197265625, -9.795290946960336 ], [ -76.900314331054688, -9.800753593444824 ], [ -76.89947509765625, -9.804553031921387 ], [ -76.896636962890625, -9.812849044799805 ], [ -76.895133972167912, -9.81549072265625 ], [ -76.888374328613224, -9.822661399841195 ], [ -76.883979797363224, -9.827963829040527 ], [ -76.880722045898438, -9.832919120788574 ], [ -76.879486083984318, -9.835465431213322 ], [ -76.877792358398381, -9.840300559997502 ], [ -76.876564025878793, -9.842397689819336 ], [ -76.875534057617188, -9.844745635986328 ], [ -76.871841430664062, -9.855722427368107 ], [ -76.871955871581974, -9.857475280761662 ], [ -76.873214721679631, -9.861039161682072 ], [ -76.873146057128906, -9.861841201782227 ], [ -76.872825622558537, -9.862441062927246 ], [ -76.872100830078125, -9.864325523376408 ], [ -76.869911193847656, -9.867068290710392 ], [ -76.869125366210824, -9.869495391845646 ], [ -76.86822509765625, -9.870123863220158 ], [ -76.866439819335881, -9.870314598083439 ], [ -76.865745544433594, -9.870643615722599 ], [ -76.864364624023438, -9.871945381164551 ], [ -76.862907409667912, -9.873903274536133 ], [ -76.860816955566349, -9.878140449523926 ], [ -76.859130859375, -9.882829666137695 ], [ -76.85894775390625, -9.888480186462402 ], [ -76.858757019042969, -9.889134407043457 ], [ -76.857681274413949, -9.889988899230957 ], [ -76.856224060058537, -9.890310287475586 ], [ -76.853759765624943, -9.891447067260742 ], [ -76.852676391601562, -9.892240524291935 ], [ -76.851676940917969, -9.893527984619084 ], [ -76.851219177246094, -9.894941329956055 ], [ -76.851196289062386, -9.897619247436523 ], [ -76.849472045898381, -9.900672912597599 ], [ -76.846595764160099, -9.908084869384766 ], [ -76.845123291015625, -9.910017967224007 ], [ -76.844169616699219, -9.910186767578125 ], [ -76.842872619628849, -9.909841537475586 ], [ -76.841896057128906, -9.910977363586426 ], [ -76.8411865234375, -9.913709640502873 ], [ -76.840629577636719, -9.917817115783691 ], [ -76.841400146484375, -9.919676780700684 ], [ -76.843566894531136, -9.921036720275879 ], [ -76.844062805175781, -9.921711921691895 ], [ -76.844200134277287, -9.922471046447754 ], [ -76.84375, -9.927736282348633 ], [ -76.841743469238224, -9.932726860046387 ], [ -76.840522766113281, -9.933800697326603 ], [ -76.837677001953125, -9.935371398925781 ], [ -76.831924438476506, -9.937401771545353 ], [ -76.829841613769531, -9.938677787780762 ], [ -76.828857421874943, -9.93992900848383 ], [ -76.827247619628849, -9.943220138549805 ], [ -76.824386596679631, -9.946448326110726 ], [ -76.822547912597656, -9.949745178222656 ], [ -76.81756591796875, -9.955169677734375 ], [ -76.815940856933594, -9.95781135559082 ], [ -76.814933776855412, -9.958909988403263 ], [ -76.814651489257756, -9.959662437438965 ], [ -76.814430236816406, -9.962617874145451 ], [ -76.814941406249943, -9.968393325805664 ], [ -76.815513610839787, -9.970052719116154 ], [ -76.817886352539006, -9.974299430847168 ], [ -76.818374633789006, -9.97868824005127 ], [ -76.819557189941406, -9.980022430419865 ], [ -76.821807861328068, -9.981986045837346 ], [ -76.823631286621037, -9.985893249511719 ], [ -76.825920104980412, -9.988148689269963 ], [ -76.826011657714787, -9.989231109619141 ], [ -76.825531005859318, -9.991062164306641 ], [ -76.824974060058594, -9.992574691772404 ], [ -76.823822021484318, -9.994714736938477 ], [ -76.823554992675781, -9.996034622192383 ], [ -76.823638916015625, -9.998637199401855 ], [ -76.82430267333973, -10.000939369201603 ], [ -76.824134826660156, -10.002715110778695 ], [ -76.82421875, -10.006954193115234 ], [ -76.824325561523438, -10.007756233215332 ], [ -76.824691772460938, -10.008451461791992 ], [ -76.824676513671818, -10.009796142578011 ], [ -76.828186035156193, -10.009607315063477 ], [ -76.83074951171875, -10.009819030761719 ], [ -76.83642578125, -10.010537147521973 ], [ -76.840805053710938, -10.011434555053654 ], [ -76.842590332031193, -10.012185096740666 ], [ -76.844161987304688, -10.013223648071289 ], [ -76.846183776855469, -10.016106605529728 ], [ -76.848693847656193, -10.018180847167912 ], [ -76.850257873535156, -10.018623352050781 ], [ -76.852287292480469, -10.018413543701172 ], [ -76.8548583984375, -10.018644332885742 ], [ -76.85589599609375, -10.018962860107422 ], [ -76.857093811035099, -10.019672393798828 ], [ -76.857368469238224, -10.02065372467041 ], [ -76.857406616210938, -10.022578239440918 ], [ -76.856491088867188, -10.027736663818359 ], [ -76.856582641601562, -10.034210205078011 ], [ -76.855651855468693, -10.038834571838379 ], [ -76.855400085449219, -10.042028427124023 ], [ -76.853965759277344, -10.047593116760254 ], [ -76.853561401367131, -10.053788185119629 ], [ -76.852409362792912, -10.060276985168457 ], [ -76.853080749511662, -10.061130523681641 ], [ -76.857078552246037, -10.062464714050293 ], [ -76.860191345214844, -10.063814163207951 ], [ -76.864509582519531, -10.062189102172795 ], [ -76.866622924804631, -10.061762809753418 ], [ -76.867965698242131, -10.061871528625431 ], [ -76.870208740234375, -10.062527656555119 ], [ -76.871788024902287, -10.064019203186035 ], [ -76.874946594238281, -10.07559871673584 ], [ -76.875846862792969, -10.076959609985295 ], [ -76.877670288085938, -10.078305244445801 ], [ -76.87811279296875, -10.078900337219238 ], [ -76.878250122070256, -10.079901695251465 ], [ -76.877960205078068, -10.082406997680607 ], [ -76.878158569335881, -10.083328247070312 ], [ -76.879600524902287, -10.085616111755371 ], [ -76.882308959960938, -10.087923049926701 ], [ -76.882972717285156, -10.089176177978516 ], [ -76.883216857910099, -10.091148376464844 ], [ -76.883270263671875, -10.095061302185059 ], [ -76.884666442871037, -10.097031593322754 ], [ -76.885215759277287, -10.098274230956974 ], [ -76.885185241699219, -10.103808403015137 ], [ -76.886177062988224, -10.109380722045842 ], [ -76.885673522949219, -10.114480972290039 ], [ -76.886260986328068, -10.115979194641113 ], [ -76.887260437011719, -10.116830825805607 ], [ -76.894325256347656, -10.116555213928223 ], [ -76.896598815917969, -10.117456436157227 ], [ -76.89754486083973, -10.117594718933105 ], [ -76.903106689453125, -10.115856170654297 ], [ -76.903602600097656, -10.115969657897949 ], [ -76.904281616210881, -10.115513801574707 ], [ -76.905906677246037, -10.115449905395508 ], [ -76.908386230468693, -10.115507125854435 ], [ -76.910232543945312, -10.115823745727539 ], [ -76.912292480468693, -10.117175102233887 ], [ -76.915267944335881, -10.120223045349121 ], [ -76.915466308593693, -10.12237358093256 ], [ -76.914016723632756, -10.127433776855469 ], [ -76.913681030273438, -10.129298210144043 ], [ -76.914215087890568, -10.134114265441895 ], [ -76.913215637207031, -10.137056350707951 ], [ -76.912963867187443, -10.139337539672795 ], [ -76.913558959960881, -10.14153861999506 ], [ -76.913597106933594, -10.14275932312006 ], [ -76.913192749023438, -10.143738746643066 ], [ -76.911926269531193, -10.155668258666992 ], [ -76.910964965820256, -10.159460067748967 ], [ -76.911293029785156, -10.162008285522461 ], [ -76.91131591796875, -10.164981842041016 ], [ -76.910018920898381, -10.169654846191406 ], [ -76.909164428710881, -10.176076889038086 ], [ -76.909439086914006, -10.177250862121525 ], [ -76.911369323730412, -10.18034839630127 ], [ -76.912376403808594, -10.184277534484863 ], [ -76.912940979003906, -10.185413360595703 ], [ -76.913841247558537, -10.187629699706974 ], [ -76.913932800292912, -10.188752174377441 ], [ -76.913543701171818, -10.1895494461059 ], [ -76.91204833984375, -10.191419601440316 ], [ -76.910614013671875, -10.194474220275879 ], [ -76.910301208496037, -10.196067810058594 ], [ -76.910232543945312, -10.200922012329045 ], [ -76.910705566406136, -10.203721046447754 ], [ -76.911476135253906, -10.206446647644043 ], [ -76.913482666015625, -10.210428237915039 ], [ -76.914215087890568, -10.212748527526855 ], [ -76.916091918945312, -10.220493316650391 ], [ -76.916206359863224, -10.223458290100098 ], [ -76.915321350097656, -10.22642803192133 ], [ -76.914413452148381, -10.227626800537109 ], [ -76.913932800292912, -10.229337692260742 ], [ -76.913452148437443, -10.230117797851562 ], [ -76.912025451660099, -10.231184959411564 ], [ -76.909690856933594, -10.231921195983887 ], [ -76.908744812011719, -10.232460975646973 ], [ -76.906517028808594, -10.23516845703125 ], [ -76.905662536621094, -10.237162590026855 ], [ -76.904533386230469, -10.245583534240723 ], [ -76.90338134765625, -10.249459266662541 ], [ -76.903114318847656, -10.251078605651855 ], [ -76.903594970703125, -10.252586364746037 ], [ -76.90570068359375, -10.255069732665959 ], [ -76.9066162109375, -10.256879806518555 ], [ -76.906364440917969, -10.259159088134709 ], [ -76.90692138671875, -10.26124382019043 ], [ -76.906944274902344, -10.262737274169922 ], [ -76.906417846679688, -10.264961242675724 ], [ -76.906288146972599, -10.26711463928217 ], [ -76.905570983886719, -10.269396781921387 ], [ -76.905914306640568, -10.269972801208496 ], [ -76.908615112304688, -10.272488594055176 ], [ -76.912635803222656, -10.27525615692133 ], [ -76.914710998535043, -10.277579307556152 ], [ -76.915695190429688, -10.278078079223576 ], [ -76.916763305664062, -10.277963638305664 ], [ -76.918067932128906, -10.27660083770752 ], [ -76.918754577636719, -10.276161193847656 ], [ -76.920188903808594, -10.275710105895996 ], [ -76.921401977539062, -10.275607109069824 ], [ -76.924903869628849, -10.276081085205078 ], [ -76.928314208984318, -10.277000427246037 ], [ -76.931976318359375, -10.277286529540959 ], [ -76.937080383300781, -10.278711318969727 ], [ -76.937469482421818, -10.279270172119084 ], [ -76.93792724609375, -10.283007621765137 ], [ -76.939056396484375, -10.284872055053654 ], [ -76.939880371093693, -10.285778999328556 ], [ -76.9425048828125, -10.28746318817133 ], [ -76.944984436035156, -10.288606643676758 ], [ -76.946174621581974, -10.288825988769474 ], [ -76.949211120605412, -10.288725852966309 ], [ -76.950370788574162, -10.288908004760742 ], [ -76.951171875, -10.289872169494629 ], [ -76.952201843261719, -10.292666435241699 ], [ -76.953163146972656, -10.29379940032959 ], [ -76.955535888671875, -10.294048309326115 ], [ -76.958297729492188, -10.296454429626465 ], [ -76.9593505859375, -10.296736717224121 ], [ -76.960853576660099, -10.296726226806584 ], [ -76.961418151855412, -10.297067642211857 ], [ -76.962081909179631, -10.297949790954533 ], [ -76.96221923828125, -10.299983024597168 ], [ -76.963333129882756, -10.302543640136662 ], [ -76.964714050292969, -10.304099082946777 ], [ -76.966072082519531, -10.304568290710449 ], [ -76.970672607421818, -10.304732322692814 ], [ -76.973869323730469, -10.304115295410156 ], [ -76.975860595703125, -10.302701950073185 ], [ -76.977096557617188, -10.300930976867676 ], [ -76.977890014648438, -10.298792839050236 ], [ -76.978805541992188, -10.297584533691349 ], [ -76.979705810546875, -10.29680347442627 ], [ -76.981330871582031, -10.296495437622013 ], [ -76.98443603515625, -10.296872138976937 ], [ -76.986640930175781, -10.295845985412598 ], [ -76.989761352539006, -10.295757293701172 ], [ -76.990600585937443, -10.295316696166992 ], [ -76.991523742675781, -10.294471740722656 ], [ -76.992637634277344, -10.292474746704045 ], [ -76.993309020996094, -10.291803359985352 ], [ -76.994972229003906, -10.29122161865223 ], [ -76.997138977050781, -10.291472434997502 ], [ -76.998069763183594, -10.291274070739689 ], [ -76.998970031738281, -10.290582656860295 ], [ -76.999404907226562, -10.289776802062988 ], [ -76.999496459960938, -10.284514427185002 ], [ -76.999946594238224, -10.283832550048828 ], [ -77.000968933105469, -10.283246994018498 ], [ -77.001800537109375, -10.283017158508244 ], [ -77.003273010253849, -10.283171653747502 ], [ -77.005050659179688, -10.283965110778809 ], [ -77.006088256835938, -10.284834861755371 ], [ -77.006820678710881, -10.285805702209416 ], [ -77.007293701171818, -10.287556648254395 ], [ -77.006980895996094, -10.288591384887638 ], [ -77.007255554199219, -10.292618751525879 ], [ -77.006973266601562, -10.297584533691349 ], [ -77.007392883300724, -10.300374984741211 ], [ -77.008682250976562, -10.304207801818791 ], [ -77.008399963378906, -10.30701828002924 ], [ -77.008499145507812, -10.30795860290516 ], [ -77.010223388671875, -10.308428764343205 ], [ -77.010971069335938, -10.309030532836914 ], [ -77.012779235839844, -10.315934181213322 ], [ -77.013259887695312, -10.316172599792424 ], [ -77.014160156249943, -10.315842628478947 ], [ -77.015411376953068, -10.316006660461369 ], [ -77.016044616699219, -10.316806793212891 ], [ -77.017257690429688, -10.319123268127441 ], [ -77.018142700195312, -10.320137023925781 ], [ -77.021171569824219, -10.32221508026123 ], [ -77.022232055664062, -10.322190284729004 ], [ -77.022613525390625, -10.322380065917912 ], [ -77.022979736328125, -10.325702667236328 ], [ -77.023658752441406, -10.327072143554631 ], [ -77.024505615234375, -10.327973365783691 ], [ -77.02545166015625, -10.328365325927734 ], [ -77.028984069824219, -10.328982353210449 ], [ -77.032485961914006, -10.33197021484375 ], [ -77.033905029296818, -10.332424163818246 ], [ -77.035514831542912, -10.332424163818246 ], [ -77.037071228027344, -10.333515167236328 ], [ -77.038352966308594, -10.333948135375977 ], [ -77.039276123046875, -10.334757804870549 ], [ -77.039253234863224, -10.336230278015137 ], [ -77.039596557617188, -10.336663246154785 ], [ -77.040779113769474, -10.336565017700138 ], [ -77.043334960937443, -10.335292816162109 ], [ -77.044570922851506, -10.335194587707463 ], [ -77.045333862304631, -10.335425376892033 ], [ -77.046508789062386, -10.336384773254395 ], [ -77.046531677246094, -10.338253974914494 ], [ -77.047218322753906, -10.339290618896371 ], [ -77.048065185546875, -10.339610099792424 ], [ -77.050392150878849, -10.339920043945256 ], [ -77.052230834960824, -10.340785980224553 ], [ -77.053977966308594, -10.340069770812931 ], [ -77.056884765624943, -10.337863922119141 ], [ -77.060012817382812, -10.336550712585449 ], [ -77.06085205078125, -10.335697174072266 ], [ -77.062309265136662, -10.335289001464844 ], [ -77.063125610351562, -10.335346221923771 ], [ -77.064437866210824, -10.336712837219181 ], [ -77.066154479980355, -10.337560653686523 ], [ -77.067207336425781, -10.337752342224121 ], [ -77.069244384765625, -10.337550163268929 ], [ -77.071136474609375, -10.338342666625977 ], [ -77.07149505615223, -10.339452743530273 ], [ -77.071853637695256, -10.342007637023926 ], [ -77.073822021484375, -10.347598075866699 ], [ -77.075401306152287, -10.34979343414301 ], [ -77.079345703125, -10.357160568237248 ], [ -77.080001831054688, -10.3580322265625 ], [ -77.08123779296875, -10.35881233215332 ], [ -77.084068298339787, -10.359816551208496 ], [ -77.085388183593693, -10.360944747924805 ], [ -77.086334228515625, -10.360931396484318 ], [ -77.088302612304688, -10.359750747680664 ], [ -77.088912963867131, -10.360019683837891 ], [ -77.089523315429688, -10.360964775085449 ], [ -77.089653015136719, -10.361974716186523 ], [ -77.088844299316349, -10.365398406982365 ], [ -77.088691711425781, -10.367143630981445 ], [ -77.088859558105469, -10.370385169982853 ], [ -77.089576721191406, -10.372659683227539 ], [ -77.093002319335938, -10.376153945922852 ], [ -77.096710205078125, -10.380973815917969 ], [ -77.105041503906193, -10.387246131896916 ], [ -77.108581542968693, -10.390972137451115 ], [ -77.110801696777344, -10.391972541809082 ], [ -77.111068725585881, -10.393562316894531 ], [ -77.110084533691349, -10.396342277526855 ], [ -77.11004638671875, -10.398628234863281 ], [ -77.110305786132756, -10.401286125183105 ], [ -77.11090087890625, -10.40322303771967 ], [ -77.111846923828125, -10.404997825622559 ], [ -77.113433837890568, -10.406442642211857 ], [ -77.116172790527344, -10.406678199768066 ], [ -77.117248535156193, -10.407193183898869 ], [ -77.117897033691406, -10.408077239990234 ], [ -77.118354797363281, -10.410199165344238 ], [ -77.119079589843693, -10.411332130432129 ], [ -77.124969482421818, -10.416328430175724 ], [ -77.127365112304631, -10.418908119201603 ], [ -77.127815246582031, -10.420022010803223 ], [ -77.128005981445312, -10.42149543762207 ], [ -77.12847900390625, -10.422332763671818 ], [ -77.135513305664062, -10.425195693969727 ], [ -77.138343811035099, -10.427064895629826 ], [ -77.139671325683537, -10.429859161376896 ], [ -77.141067504882812, -10.433942794799691 ], [ -77.142234802246037, -10.436222076416016 ], [ -77.144081115722656, -10.441561698913517 ], [ -77.145050048828125, -10.442884445190373 ], [ -77.146324157714787, -10.444085121154728 ], [ -77.147987365722656, -10.44503116607666 ], [ -77.150123596191406, -10.445877075195256 ], [ -77.150436401367131, -10.446605682373047 ], [ -77.150741577148381, -10.448486328124886 ], [ -77.152046203613224, -10.451296806335392 ], [ -77.152763366699219, -10.452113151550293 ], [ -77.153755187988281, -10.452810287475529 ], [ -77.159866333007756, -10.454676628112793 ], [ -77.164131164550781, -10.456493377685433 ], [ -77.169181823730469, -10.460363388061523 ], [ -77.174697875976562, -10.465368270874023 ], [ -77.175369262695312, -10.467280387878418 ], [ -77.175407409667969, -10.469700813293457 ], [ -77.176139831542969, -10.475443840026799 ], [ -77.177192687988281, -10.479902267455998 ], [ -77.17718505859375, -10.480842590332031 ], [ -77.177795410156193, -10.482418060302678 ], [ -77.176681518554631, -10.483259201049805 ], [ -77.173759460449219, -10.485223770141545 ], [ -77.172538757324219, -10.486304283142033 ], [ -77.169342041015511, -10.492827415466309 ], [ -77.169075012207031, -10.494338035583496 ], [ -77.170028686523438, -10.496086120605469 ], [ -77.169380187988281, -10.497563362121582 ], [ -77.169364929199219, -10.498772621154785 ], [ -77.168998718261719, -10.499488830566349 ], [ -77.168960571288949, -10.501749992370549 ], [ -77.168243408203125, -10.503498077392521 ], [ -77.168037414550781, -10.506943702697697 ], [ -77.168670654296818, -10.507987976074162 ], [ -77.16900634765625, -10.509975433349553 ], [ -77.170845031738224, -10.513278007507267 ], [ -77.171348571777344, -10.515659332275391 ], [ -77.172050476074219, -10.516821861267033 ], [ -77.172805786132812, -10.517594337463379 ], [ -77.174919128417969, -10.518809318542424 ], [ -77.17669677734375, -10.521344184875431 ], [ -77.179634094238224, -10.522772789001465 ], [ -77.180747985839844, -10.523604393005314 ], [ -77.181510925292969, -10.524520874023438 ], [ -77.181655883789062, -10.526408195495605 ], [ -77.181365966796875, -10.52772140502924 ], [ -77.181716918945256, -10.53052806854248 ], [ -77.18121337890625, -10.532205581665039 ], [ -77.181198120117188, -10.533425331115723 ], [ -77.182838439941406, -10.535565376281681 ], [ -77.183692932128906, -10.538100242614689 ], [ -77.184875488281193, -10.539038658142033 ], [ -77.187950134277344, -10.540770530700627 ], [ -77.18865966796875, -10.541588783264046 ], [ -77.188652038574219, -10.541995048522892 ], [ -77.189033508300781, -10.542372703552189 ], [ -77.189285278320312, -10.543292045593262 ], [ -77.188858032226506, -10.547163963317757 ], [ -77.190330505371094, -10.54875469207758 ], [ -77.191200256347656, -10.55157566070551 ], [ -77.192344665527344, -10.552337646484261 ], [ -77.196197509765625, -10.553241729736328 ], [ -77.196632385253906, -10.553526878356877 ], [ -77.197441101074162, -10.554677963256722 ], [ -77.198005676269531, -10.554989814758301 ], [ -77.199378967285099, -10.554384231567326 ], [ -77.200736999511719, -10.554238319396916 ], [ -77.205223083496094, -10.555330276489201 ], [ -77.2061767578125, -10.555277824401855 ], [ -77.207328796386719, -10.554881095886174 ], [ -77.208953857421875, -10.555176734924316 ], [ -77.210998535156193, -10.554167747497559 ], [ -77.214248657226506, -10.553900718688908 ], [ -77.215827941894531, -10.553103446960449 ], [ -77.218086242675781, -10.552591323852539 ], [ -77.220062255859318, -10.551690101623478 ], [ -77.221023559570256, -10.550735473632812 ], [ -77.222251892089787, -10.548341751098633 ], [ -77.224266052246037, -10.546737670898438 ], [ -77.225852966308594, -10.546172142028809 ], [ -77.228416442871094, -10.54584884643549 ], [ -77.232208251953125, -10.544763565063477 ], [ -77.236274719238224, -10.544654846191406 ], [ -77.238265991210881, -10.54554557800293 ], [ -77.240676879882699, -10.54728889465332 ], [ -77.24249267578125, -10.547808647155705 ], [ -77.243972778320312, -10.547526359558049 ], [ -77.249542236328068, -10.545329093933049 ], [ -77.250755310058537, -10.545140266418457 ], [ -77.253829956054631, -10.545676231384277 ], [ -77.256317138671761, -10.546409606933537 ], [ -77.259193420410156, -10.547644615173226 ], [ -77.262199401855412, -10.549233436584473 ], [ -77.265914916992131, -10.55007362365717 ], [ -77.267379760742074, -10.550785064697209 ], [ -77.268638610839844, -10.552195549011174 ], [ -77.269020080566406, -10.553629875183049 ], [ -77.269012451171875, -10.554840087890625 ], [ -77.268524169921761, -10.556660652160645 ], [ -77.268630981445312, -10.557737350463867 ], [ -77.269500732421875, -10.559711456298828 ], [ -77.269821166992188, -10.559967994689885 ], [ -77.270217895507756, -10.559892654418888 ], [ -77.271278381347599, -10.560491561889535 ], [ -77.273262023925724, -10.560033798217773 ], [ -77.274574279785156, -10.559067726135254 ], [ -77.276794433593693, -10.556701660156193 ], [ -77.277763366699162, -10.556214332580566 ], [ -77.279067993164062, -10.556071281433105 ], [ -77.283843994140568, -10.557724952697754 ], [ -77.286224365234375, -10.558224678039551 ], [ -77.287963867187443, -10.557885169982853 ], [ -77.2900390625, -10.556342124938965 ], [ -77.290992736816406, -10.556319236755257 ], [ -77.292015075683594, -10.556699752807617 ], [ -77.298828124999943, -10.561168670654297 ], [ -77.302276611328068, -10.56420707702631 ], [ -77.307220458984318, -10.566094398498421 ], [ -77.309783935546818, -10.568516731262207 ], [ -77.312255859375, -10.571735382080078 ], [ -77.313087463378906, -10.57342624664301 ], [ -77.313461303710938, -10.574572563171387 ], [ -77.313751220703125, -10.576666831970215 ], [ -77.315528869628849, -10.581189155578613 ], [ -77.317222595214787, -10.583780288696289 ], [ -77.320465087890568, -10.587796211242676 ], [ -77.3212890625, -10.588504791259766 ], [ -77.322273254394531, -10.588958740234261 ], [ -77.326095581054631, -10.592805862426701 ], [ -77.327552795410099, -10.593799591064396 ], [ -77.330116271972599, -10.594719886779785 ], [ -77.335128784179688, -10.594998359680176 ], [ -77.337059020996037, -10.595680236816406 ], [ -77.33852386474598, -10.596664428710881 ], [ -77.340171813964844, -10.598458290100098 ], [ -77.341079711914006, -10.600993156433105 ], [ -77.341934204101506, -10.602531433105469 ], [ -77.342475891113281, -10.604479789733773 ], [ -77.342720031738168, -10.607134819030705 ], [ -77.343360900878849, -10.60785007476801 ], [ -77.344741821289062, -10.60833835601801 ], [ -77.345451354980412, -10.607602119445801 ], [ -77.34735107421875, -10.606872558593693 ], [ -77.351814270019531, -10.612487792968693 ], [ -77.352951049804688, -10.614322662353459 ], [ -77.35809326171875, -10.619707107543888 ], [ -77.360237121581974, -10.622501373290959 ], [ -77.360939025878906, -10.624258041381779 ], [ -77.361991882324219, -10.629673004150334 ], [ -77.364120483398438, -10.63312816619873 ], [ -77.365127563476506, -10.636345863342228 ], [ -77.366165161132756, -10.637926101684513 ], [ -77.368133544921875, -10.639366149902344 ], [ -77.370185852050668, -10.640074729919434 ], [ -77.372238159179688, -10.639372825622502 ], [ -77.377204895019531, -10.63857460021967 ], [ -77.378463745117131, -10.63805103302002 ], [ -77.379226684570256, -10.638217926025391 ], [ -77.379913330078011, -10.638908386230412 ], [ -77.380584716796875, -10.640230178833008 ], [ -77.380897521972656, -10.642044067382756 ], [ -77.382225036621094, -10.646031379699707 ], [ -77.383285522460938, -10.648487091064453 ], [ -77.385673522949219, -10.651608467101994 ], [ -77.386764526367131, -10.654524803161564 ], [ -77.387428283691349, -10.655677795410156 ], [ -77.391853332519531, -10.658609390258732 ], [ -77.392570495605412, -10.65942478179926 ], [ -77.395248413085881, -10.665765762329045 ], [ -77.39794921875, -10.670289993286133 ], [ -77.400306701660099, -10.675288200378418 ], [ -77.403030395507812, -10.680109977722054 ], [ -77.403480529785156, -10.681805610656738 ], [ -77.403717041015625, -10.684497833251896 ], [ -77.403472900390625, -10.688375473022404 ], [ -77.401679992675781, -10.694397926330566 ], [ -77.398391723632756, -10.699638366699219 ], [ -77.396842956542969, -10.701429367065373 ], [ -77.395751953125, -10.702090263366699 ], [ -77.392166137695312, -10.702704429626408 ], [ -77.388641357421875, -10.703851699829102 ], [ -77.386558532714787, -10.704789161682129 ], [ -77.385635375976449, -10.705538749694767 ], [ -77.384361267089787, -10.707337379455453 ], [ -77.384071350097656, -10.707945823669377 ], [ -77.384201049804631, -10.708413124084473 ], [ -77.38568115234375, -10.708123207092285 ], [ -77.386619567871094, -10.708232879638615 ], [ -77.388160705566406, -10.70878887176508 ], [ -77.389343261718693, -10.709712028503418 ], [ -77.391555786132812, -10.713418006896916 ], [ -77.39404296875, -10.716957092285156 ], [ -77.395339965820256, -10.719930648803654 ], [ -77.396270751953125, -10.720927238464242 ], [ -77.401939392089787, -10.722789764404297 ], [ -77.408378601074219, -10.726320266723576 ], [ -77.412445068359375, -10.729260444641056 ], [ -77.414138793945256, -10.730133056640625 ], [ -77.416000366210938, -10.730759620666447 ], [ -77.416786193847599, -10.730752944946289 ], [ -77.420646667480469, -10.72849178314209 ], [ -77.421546936035156, -10.728167533874455 ], [ -77.423431396484375, -10.728404998779297 ], [ -77.425468444824162, -10.729178428649902 ], [ -77.427230834960938, -10.728981971740609 ], [ -77.427825927734375, -10.728670120239258 ], [ -77.430320739746094, -10.726119041442871 ], [ -77.432441711425724, -10.724892616271973 ], [ -77.434188842773438, -10.724164009094238 ], [ -77.436477661132812, -10.72383975982666 ], [ -77.437652587890625, -10.724229812622013 ], [ -77.440025329589844, -10.725836753845215 ], [ -77.441268920898438, -10.726333618164062 ], [ -77.444503784179688, -10.726922035217285 ], [ -77.447898864746037, -10.727240562438965 ], [ -77.449844360351562, -10.727801322937012 ], [ -77.452301025390625, -10.729267120361328 ], [ -77.457046508789006, -10.732671737670898 ], [ -77.458518981933594, -10.734267234802189 ], [ -77.4591064453125, -10.735634803771916 ], [ -77.459785461425781, -10.736479759216309 ], [ -77.460899353027344, -10.736886024475041 ], [ -77.462791442871094, -10.736149787902832 ], [ -77.465248107910099, -10.736284255981445 ], [ -77.466003417968693, -10.736838340759221 ], [ -77.468902587890625, -10.740236282348576 ], [ -77.469909667968693, -10.741000175476074 ], [ -77.473388671875, -10.7406005859375 ], [ -77.476112365722599, -10.740788459777775 ], [ -77.477325439453125, -10.741300582885685 ], [ -77.479965209960938, -10.743041992187443 ], [ -77.483787536621094, -10.744476318359318 ], [ -77.485771179199105, -10.744956016540414 ], [ -77.489013671874886, -10.745428085327148 ], [ -77.491317749023438, -10.745418548583984 ], [ -77.494758605957031, -10.744560241699219 ], [ -77.497421264648438, -10.743552207946777 ], [ -77.500648498535043, -10.741538047790527 ], [ -77.501640319824219, -10.7406005859375 ], [ -77.503349304199219, -10.736943244934082 ], [ -77.504188537597656, -10.73589038848877 ], [ -77.506690979003906, -10.734495162963867 ], [ -77.508232116699219, -10.733986854553223 ], [ -77.509849548339844, -10.733783721923828 ], [ -77.512176513671818, -10.733830451965275 ], [ -77.513969421386662, -10.734472274780273 ], [ -77.515182495117188, -10.734590530395508 ], [ -77.519195556640625, -10.733871459960938 ], [ -77.521247863769418, -10.733763694763127 ], [ -77.524688720703125, -10.734550476074162 ], [ -77.526313781738281, -10.73523998260498 ], [ -77.52764892578125, -10.736169815063477 ], [ -77.533683776855469, -10.742212295532227 ], [ -77.538948059082031, -10.746684074401855 ], [ -77.544006347656193, -10.7503404617309 ], [ -77.547981262207031, -10.752556800842285 ], [ -77.556541442871094, -10.754735946655217 ], [ -77.558082580566406, -10.755599975585938 ], [ -77.561019897460938, -10.757797241210938 ], [ -77.569313049316293, -10.764568328857422 ], [ -77.576911926269474, -10.771709442138672 ], [ -77.578132629394531, -10.772575378417969 ], [ -77.590568542480412, -10.787044525146484 ], [ -77.592758178710881, -10.788654327392521 ], [ -77.593658447265625, -10.788328170776254 ], [ -77.594520568847656, -10.787462234497013 ], [ -77.596366882324162, -10.782706260681096 ], [ -77.599929809570312, -10.777291297912598 ], [ -77.603019714355469, -10.773531913757267 ], [ -77.610038757324219, -10.766036033630257 ], [ -77.610992431640625, -10.764566421508732 ], [ -77.611198425292969, -10.763743400573617 ], [ -77.610733032226562, -10.763141632080078 ], [ -77.609649658203068, -10.762480735778752 ], [ -77.601173400878906, -10.760680198669377 ], [ -77.5968017578125, -10.759182929992619 ], [ -77.593589782714844, -10.757710456848145 ], [ -77.589927673339844, -10.757658004760742 ], [ -77.58917236328125, -10.75734806060791 ], [ -77.588218688964844, -10.756580352783146 ], [ -77.586265563964787, -10.754147529601994 ], [ -77.585105895996094, -10.752015113830566 ], [ -77.582794189453125, -10.742040634155217 ], [ -77.580474853515625, -10.736720085143986 ], [ -77.577667236328125, -10.731649398803654 ], [ -77.577392578124943, -10.729228019714355 ], [ -77.576339721679631, -10.726030349731388 ], [ -77.576339721679631, -10.725234985351506 ], [ -77.575881958007756, -10.722680091857853 ], [ -77.575775146484318, -10.717035293579102 ], [ -77.574600219726562, -10.711776733398381 ], [ -77.573837280273438, -10.703995704650765 ], [ -77.574058532714787, -10.694169998168888 ], [ -77.573875427246037, -10.688390731811523 ], [ -77.573440551757812, -10.683832168579102 ], [ -77.573402404785099, -10.67911434173584 ], [ -77.573806762695312, -10.67374324798584 ], [ -77.573738098144531, -10.664729118347111 ], [ -77.574089050292969, -10.662602424621525 ], [ -77.574653625488168, -10.661521911621037 ], [ -77.57476806640625, -10.66060829162592 ], [ -77.575965881347599, -10.65803241729725 ], [ -77.583137512206974, -10.649597167968693 ], [ -77.584518432617188, -10.647281646728516 ], [ -77.585647583007812, -10.644408226013127 ], [ -77.585342407226562, -10.643226623535043 ], [ -77.583496093749943, -10.63971042633051 ], [ -77.58306884765625, -10.638328552246037 ], [ -77.582984924316406, -10.635537147521973 ], [ -77.583442687988281, -10.629310607910156 ], [ -77.583412170410099, -10.627972602844181 ], [ -77.5828857421875, -10.625591278076172 ], [ -77.5823974609375, -10.624331474304199 ], [ -77.580780029296875, -10.621832847595158 ], [ -77.576408386230469, -10.619103431701603 ], [ -77.575347900390625, -10.618044853210449 ], [ -77.574287414550781, -10.616557121276799 ], [ -77.57318115234375, -10.613664627075195 ], [ -77.572174072265511, -10.607672691345215 ], [ -77.571807861328125, -10.604468345642033 ], [ -77.571807861328125, -10.601113319396973 ], [ -77.572677612304688, -10.592009544372559 ], [ -77.57373046875, -10.587564468383732 ], [ -77.575172424316406, -10.585121154785099 ], [ -77.576583862304688, -10.58348369598383 ], [ -77.577644348144531, -10.583709716796818 ], [ -77.583900451660099, -10.58360481262207 ], [ -77.585906982421761, -10.583957672119141 ], [ -77.590408325195312, -10.583975791931039 ], [ -77.592681884765625, -10.584201812744141 ], [ -77.594161987304688, -10.584919929504395 ], [ -77.595886230468693, -10.585295677185002 ], [ -77.599372863769531, -10.587117195129395 ], [ -77.603347778320256, -10.588438987731877 ], [ -77.605194091796875, -10.58929443359375 ], [ -77.606697082519418, -10.590456008911133 ], [ -77.611343383789006, -10.595185279846078 ], [ -77.615943908691349, -10.597797393798771 ], [ -77.619308471679688, -10.599260330200195 ], [ -77.625770568847543, -10.600885391235352 ], [ -77.628486633300781, -10.601015090942326 ], [ -77.633308410644531, -10.601815223693848 ], [ -77.637374877929631, -10.601854324340763 ], [ -77.637924194335938, -10.601083755493107 ], [ -77.638397216796875, -10.59666919708252 ], [ -77.638351440429631, -10.582258224487305 ], [ -77.639190673828068, -10.575031280517521 ], [ -77.639656066894531, -10.561394691467228 ], [ -77.64019775390625, -10.558229446411133 ], [ -77.641838073730469, -10.551817893981877 ], [ -77.642196655273438, -10.545040130615234 ], [ -77.644012451171875, -10.538979530334416 ], [ -77.645507812499943, -10.526560783386174 ], [ -77.646133422851562, -10.525090217590218 ], [ -77.64642333984375, -10.522722244262638 ], [ -77.648040771484375, -10.523574829101562 ], [ -77.649612426757699, -10.524836540222111 ], [ -77.649627685546875, -10.525901794433537 ], [ -77.650459289550724, -10.528046607971078 ], [ -77.651321411132756, -10.529079437255859 ], [ -77.652832031249943, -10.530257225036564 ], [ -77.653701782226506, -10.530657768249455 ], [ -77.654754638671818, -10.530811309814453 ], [ -77.659454345703125, -10.530879020690918 ], [ -77.662948608398381, -10.531987190246582 ], [ -77.663841247558594, -10.532613754272404 ], [ -77.669570922851562, -10.538556098937988 ], [ -77.670776367187443, -10.539187431335449 ], [ -77.671722412109318, -10.539315223693848 ], [ -77.673210144042969, -10.539148330688477 ], [ -77.67574310302723, -10.537113189697266 ], [ -77.677543640136662, -10.53653621673584 ], [ -77.679176330566293, -10.536424636840763 ], [ -77.682151794433594, -10.537747383117619 ], [ -77.684577941894474, -10.538112640380803 ], [ -77.686134338378849, -10.537685394287109 ], [ -77.688690185546818, -10.536147117614746 ], [ -77.690338134765625, -10.53608512878418 ], [ -77.696861267089844, -10.541360855102539 ], [ -77.702308654785156, -10.544927597045842 ], [ -77.705184936523381, -10.547595024108887 ], [ -77.707611083984375, -10.548787117004395 ], [ -77.708938598632812, -10.550506591796818 ], [ -77.709640502929688, -10.551811218261719 ], [ -77.710601806640625, -10.554623603820744 ], [ -77.710830688476506, -10.556212425231877 ], [ -77.712852478027344, -10.558724403381291 ], [ -77.714096069335938, -10.559290885925293 ], [ -77.716217041015625, -10.559779167175293 ], [ -77.721366882324219, -10.55982398986805 ], [ -77.725357055664062, -10.561850547790414 ], [ -77.732009887695199, -10.566164970397949 ], [ -77.737213134765625, -10.568009376525879 ], [ -77.737556457519531, -10.566072463989258 ], [ -77.737632751464787, -10.560279846191406 ], [ -77.737945556640625, -10.557747840881348 ], [ -77.739578247070312, -10.553315162658578 ], [ -77.741897583007756, -10.549521446227971 ], [ -77.742591857910099, -10.547913551330566 ], [ -77.743698120117188, -10.54388427734375 ], [ -77.744598388671761, -10.537626266479492 ], [ -77.745620727539006, -10.533992767333928 ], [ -77.745674133300781, -10.53130054473877 ], [ -77.744247436523438, -10.529007911682129 ], [ -77.743240356445256, -10.528012275695744 ], [ -77.742523193359375, -10.526711463928109 ], [ -77.740524291992188, -10.524163246154785 ], [ -77.734703063964844, -10.518692970275822 ], [ -77.732025146484375, -10.515826225280762 ], [ -77.728469848632756, -10.513579368591252 ], [ -77.724037170410156, -10.512930870056039 ], [ -77.72314453125, -10.512596130371094 ], [ -77.720893859863281, -10.509063720703125 ], [ -77.716361999511662, -10.503481864929142 ], [ -77.712944030761719, -10.501372337341252 ], [ -77.708709716796818, -10.499698638915902 ], [ -77.707740783691406, -10.499111175537053 ], [ -77.706886291503906, -10.498250961303711 ], [ -77.706672668457031, -10.497475624084473 ], [ -77.706802368164006, -10.495992660522404 ], [ -77.707489013671818, -10.494387626647949 ], [ -77.707847595214787, -10.492667198181152 ], [ -77.707710266113281, -10.488506317138615 ], [ -77.708305358886719, -10.486422538757324 ], [ -77.708290100097656, -10.484794616699162 ], [ -77.707740783691406, -10.48393440246582 ], [ -77.705833435058594, -10.482124328613224 ], [ -77.705215454101562, -10.481242179870549 ], [ -77.703826904296875, -10.478167533874512 ], [ -77.702430725097599, -10.473958015441838 ], [ -77.699508666992188, -10.468038558959961 ], [ -77.698348999023438, -10.464876174926758 ], [ -77.697586059570312, -10.464096069335881 ], [ -77.695304870605469, -10.463212013244629 ], [ -77.694671630859375, -10.462713241577092 ], [ -77.6932373046875, -10.459218978881836 ], [ -77.691955566406136, -10.457657814025822 ], [ -77.691375732421818, -10.454616546630859 ], [ -77.687561035156193, -10.450611114501953 ], [ -77.687385559082031, -10.449935913085938 ], [ -77.687538146972599, -10.448868751525822 ], [ -77.689971923828125, -10.444575309753418 ], [ -77.690773010253906, -10.441387176513672 ], [ -77.690505981445256, -10.439998626708871 ], [ -77.68795013427723, -10.435980796813965 ], [ -77.686820983886719, -10.433407783508244 ], [ -77.685020446777344, -10.431568145751896 ], [ -77.683616638183594, -10.431020736694336 ], [ -77.682121276855412, -10.430926322937012 ], [ -77.678375244140625, -10.431589126586914 ], [ -77.675323486328125, -10.430891990661564 ], [ -77.673347473144474, -10.430013656616154 ], [ -77.671623229980412, -10.428104400634766 ], [ -77.666961669921818, -10.426264762878418 ], [ -77.664703369140625, -10.423555374145508 ], [ -77.663475036621094, -10.419146537780705 ], [ -77.662910461425781, -10.418210029602051 ], [ -77.662132263183594, -10.41746711730957 ], [ -77.660369873046818, -10.41672420501709 ], [ -77.656303405761719, -10.416468620300293 ], [ -77.653724670410156, -10.415623664855957 ], [ -77.648269653320256, -10.412081718444824 ], [ -77.644508361816406, -10.408297538757267 ], [ -77.643959045410099, -10.408178329467717 ], [ -77.643135070800781, -10.408383369445801 ], [ -77.63800048828125, -10.411424636840763 ], [ -77.636306762695312, -10.411917686462346 ], [ -77.635154724121094, -10.411601066589355 ], [ -77.633293151855412, -10.410687446594238 ], [ -77.632522583007756, -10.409436225891113 ], [ -77.631294250488224, -10.408352851867619 ], [ -77.62799072265625, -10.407585144042969 ], [ -77.626625061035099, -10.406973838806039 ], [ -77.621871948242188, -10.403606414794922 ], [ -77.6199951171875, -10.401481628417969 ], [ -77.615005493164062, -10.398466110229379 ], [ -77.610145568847656, -10.394151687622013 ], [ -77.606391906738224, -10.391996383666992 ], [ -77.604637145996094, -10.390122413635197 ], [ -77.603378295898438, -10.388516426086369 ], [ -77.602508544921875, -10.386985778808594 ], [ -77.599632263183537, -10.383936882019043 ], [ -77.599266052246094, -10.383216857910099 ], [ -77.599052429199162, -10.382430076599064 ], [ -77.598030090332031, -10.380716323852482 ], [ -77.598472595214787, -10.372787475585938 ], [ -77.597702026367131, -10.367325782775822 ], [ -77.597801208496037, -10.365988731384277 ], [ -77.598701477050781, -10.363017082214355 ], [ -77.600265502929688, -10.35989856719965 ], [ -77.606758117675724, -10.350356101989746 ], [ -77.611106872558594, -10.342757225036564 ], [ -77.614448547363281, -10.339035987854004 ], [ -77.615135192871094, -10.337442398071289 ], [ -77.616859436035156, -10.335548400878849 ], [ -77.617172241210881, -10.334650039672795 ], [ -77.617530822753906, -10.331709861755314 ], [ -77.617950439453011, -10.330433845519963 ], [ -77.619232177734375, -10.32820987701416 ], [ -77.620147705078125, -10.327378273010197 ], [ -77.622489929199219, -10.326809883117619 ], [ -77.625442504882812, -10.325447082519474 ], [ -77.627418518066406, -10.324013710021973 ], [ -77.629310607910156, -10.322108268737793 ], [ -77.630691528320312, -10.322080612182617 ], [ -77.632781982421875, -10.322796821594181 ], [ -77.634025573730469, -10.323787689208984 ], [ -77.635978698730469, -10.326563835143986 ], [ -77.638275146484375, -10.328667640686035 ], [ -77.639488220214787, -10.33185863494873 ], [ -77.640113830566406, -10.332865715026799 ], [ -77.642082214355469, -10.334654808044377 ], [ -77.646522521972656, -10.337862014770508 ], [ -77.6470947265625, -10.338698387145996 ], [ -77.646957397460938, -10.340036392211914 ], [ -77.647140502929688, -10.340682983398381 ], [ -77.650276184081974, -10.343892097473031 ], [ -77.651535034179688, -10.344362258911076 ], [ -77.652435302734375, -10.344118118286133 ], [ -77.653755187988281, -10.342862129211426 ], [ -77.654449462890568, -10.342522621154728 ], [ -77.658058166503906, -10.342581748962346 ], [ -77.659088134765625, -10.342421531677246 ], [ -77.660049438476562, -10.341807365417424 ], [ -77.662185668945256, -10.339449882507267 ], [ -77.665534973144474, -10.338908195495605 ], [ -77.666419982910156, -10.338529586791992 ], [ -77.66815185546875, -10.336825370788574 ], [ -77.669776916503906, -10.334039688110352 ], [ -77.67340087890625, -10.331685066223031 ], [ -77.678352355957031, -10.326910972595215 ], [ -77.679679870605469, -10.326573371887207 ], [ -77.681976318359375, -10.326375007629395 ], [ -77.684028625488224, -10.325646400451603 ], [ -77.686798095703068, -10.324220657348633 ], [ -77.690086364746094, -10.321834564208871 ], [ -77.692283630371094, -10.320786476135197 ], [ -77.693367004394474, -10.320914268493652 ], [ -77.695793151855469, -10.322121620178166 ], [ -77.698371887207031, -10.322029113769418 ], [ -77.699577331542912, -10.322649002075082 ], [ -77.701438903808594, -10.324222564697152 ], [ -77.704879760742188, -10.325063705444336 ], [ -77.707992553710938, -10.325045585632267 ], [ -77.712318420410156, -10.324538230895996 ], [ -77.714263916015568, -10.32392692565918 ], [ -77.717277526855469, -10.32237529754633 ], [ -77.720382690429688, -10.322078704833984 ], [ -77.722801208496094, -10.322455406188908 ], [ -77.725105285644531, -10.323711395263615 ], [ -77.726119995117188, -10.324000358581486 ], [ -77.732215881347656, -10.323505401611328 ], [ -77.737533569335881, -10.323666572570744 ], [ -77.738807678222656, -10.324017524719181 ], [ -77.741378784179688, -10.32558631896967 ], [ -77.7437744140625, -10.326053619384766 ], [ -77.744796752929688, -10.325673103332406 ], [ -77.747291564941406, -10.323592185974064 ], [ -77.749366760253793, -10.322283744811955 ], [ -77.750747680664062, -10.321765899658203 ], [ -77.75225830078125, -10.321690559387207 ], [ -77.752815246582031, -10.322037696838322 ], [ -77.753929138183537, -10.325381278991699 ], [ -77.755607604980469, -10.327065467834473 ], [ -77.756240844726562, -10.328006744384709 ], [ -77.755767822265625, -10.32914924621582 ], [ -77.754196166992131, -10.330817222595215 ], [ -77.753822326660099, -10.333224296569767 ], [ -77.754241943359375, -10.336553573608342 ], [ -77.755119323730469, -10.340773582458439 ], [ -77.755950927734375, -10.3427734375 ], [ -77.756935119628906, -10.344099998474064 ], [ -77.757080078124943, -10.345246315002441 ], [ -77.756698608398381, -10.346722602844181 ], [ -77.755271911621037, -10.349011421203556 ], [ -77.754669189453125, -10.350930213928166 ], [ -77.754623413085938, -10.352279663085938 ], [ -77.755210876464844, -10.354205131530705 ], [ -77.755226135253906, -10.355021476745605 ], [ -77.752044677734375, -10.361397743225098 ], [ -77.752235412597656, -10.362481117248478 ], [ -77.753402709960938, -10.365633010864201 ], [ -77.753242492675724, -10.366428375244141 ], [ -77.752021789550724, -10.369140624999886 ], [ -77.751762390136719, -10.370996475219613 ], [ -77.751983642578125, -10.373017311096191 ], [ -77.753318786621094, -10.376255989074707 ], [ -77.753211975097656, -10.379340171813965 ], [ -77.753807067871094, -10.380255699157658 ], [ -77.754562377929688, -10.380819320678597 ], [ -77.755416870117188, -10.382951736450195 ], [ -77.755516052246094, -10.383881568908691 ], [ -77.754356384277344, -10.386384963989258 ], [ -77.753219604492188, -10.387795448303223 ], [ -77.7529296875, -10.38850212097168 ], [ -77.753257751464787, -10.391724586486816 ], [ -77.751861572265625, -10.395351409912053 ], [ -77.752471923828125, -10.398246765136719 ], [ -77.752342224121094, -10.400930404663029 ], [ -77.751861572265625, -10.403031349182129 ], [ -77.750656127929688, -10.40558910369873 ], [ -77.750572204589787, -10.406682968139648 ], [ -77.7510986328125, -10.407608032226562 ], [ -77.751968383789062, -10.408493995666504 ], [ -77.754035949706974, -10.409173965454102 ], [ -77.754882812499943, -10.409807205200138 ], [ -77.755950927734375, -10.411233901977482 ], [ -77.756729125976562, -10.412945747375488 ], [ -77.758338928222656, -10.414772987365723 ], [ -77.758132934570256, -10.419872283935433 ], [ -77.758689880371037, -10.421671867370605 ], [ -77.758987426757756, -10.426785469055176 ], [ -77.759826660156193, -10.428737640380803 ], [ -77.760551452636719, -10.429018020629883 ], [ -77.762680053710938, -10.428252220153809 ], [ -77.765121459960938, -10.428265571594181 ], [ -77.766685485839844, -10.42781925201416 ], [ -77.767448425292969, -10.428101539611703 ], [ -77.768257141113281, -10.428827285766602 ], [ -77.768203735351562, -10.430027961730957 ], [ -77.767555236816349, -10.43165016174305 ], [ -77.766502380371037, -10.433386802673283 ], [ -77.765106201171875, -10.434844017028809 ], [ -77.764778137207031, -10.435713768005371 ], [ -77.764625549316293, -10.43692684173584 ], [ -77.765144348144531, -10.438738822937012 ], [ -77.767173767089787, -10.440923690795898 ], [ -77.772811889648381, -10.443675041198674 ], [ -77.773857116699162, -10.444280624389648 ], [ -77.775588989257756, -10.44573783874506 ], [ -77.778724670410099, -10.449857711791935 ], [ -77.779678344726506, -10.452369689941349 ], [ -77.780769348144531, -10.453914642333928 ], [ -77.781478881835881, -10.45429611206049 ], [ -77.783248901367188, -10.454443931579533 ], [ -77.784683227539062, -10.454848289489632 ], [ -77.785964965820256, -10.455595016479492 ], [ -77.787460327148438, -10.45698070526123 ], [ -77.789505004882756, -10.459504127502441 ], [ -77.790534973144474, -10.461716651916504 ], [ -77.790634155273381, -10.462635040283203 ], [ -77.790031433105469, -10.465397834777832 ], [ -77.789962768554631, -10.466888427734261 ], [ -77.791145324707031, -10.469300270080453 ], [ -77.791961669921818, -10.472002983093205 ], [ -77.793159484863281, -10.473282814025822 ], [ -77.795867919921875, -10.474190711975098 ], [ -77.797920227050781, -10.475248336791992 ], [ -77.798645019531193, -10.475856781005746 ], [ -77.799095153808594, -10.476837158203125 ], [ -77.798812866210938, -10.477569580078011 ], [ -77.797637939453125, -10.479225158691406 ], [ -77.796028137207031, -10.483628273010254 ], [ -77.794586181640625, -10.484626770019418 ], [ -77.793487548828068, -10.484564781188965 ], [ -77.790939331054631, -10.485481262206974 ], [ -77.788108825683594, -10.487591743469181 ], [ -77.786819458007756, -10.488959312438908 ], [ -77.786254882812443, -10.490338325500431 ], [ -77.786064147949162, -10.493166923522892 ], [ -77.784408569335938, -10.494274139404297 ], [ -77.783660888671875, -10.49540901184082 ], [ -77.783363342285156, -10.499839782714844 ], [ -77.782630920410099, -10.503017425537053 ], [ -77.782516479492188, -10.504961013793888 ], [ -77.781608581542969, -10.506912231445256 ], [ -77.778923034667912, -10.509959220886174 ], [ -77.778091430664062, -10.510339736938477 ], [ -77.77685546875, -10.510519981384221 ], [ -77.773223876953125, -10.512017250060978 ], [ -77.772529602050724, -10.512664794921761 ], [ -77.771751403808537, -10.513944625854435 ], [ -77.771949768066349, -10.515939712524357 ], [ -77.77276611328125, -10.51823711395258 ], [ -77.771858215331974, -10.522443771362191 ], [ -77.771797180175781, -10.525552749633732 ], [ -77.772239685058537, -10.527374267578125 ], [ -77.774093627929688, -10.532307624816838 ], [ -77.773933410644531, -10.533097267150765 ], [ -77.772743225097656, -10.535508155822754 ], [ -77.772712707519474, -10.53765964508051 ], [ -77.773826599121094, -10.541129112243596 ], [ -77.773735046386719, -10.541931152343693 ], [ -77.773147583007812, -10.543285369873047 ], [ -77.773056030273438, -10.545173645019474 ], [ -77.773384094238224, -10.54605579376215 ], [ -77.774482727050781, -10.547580718994141 ], [ -77.774444580078068, -10.548269271850529 ], [ -77.773651123046818, -10.549684524536076 ], [ -77.773567199706974, -10.550617218017521 ], [ -77.773895263671875, -10.551922798156738 ], [ -77.7747802734375, -10.552983283996582 ], [ -77.775009155273381, -10.555120468139592 ], [ -77.774421691894474, -10.55925464630127 ], [ -77.774147033691349, -10.565444946289062 ], [ -77.77362060546875, -10.56638240814209 ], [ -77.770698547363224, -10.56879997253418 ], [ -77.77069091796875, -10.569603919982853 ], [ -77.772697448730412, -10.57141208648676 ], [ -77.776069641113168, -10.573442459106388 ], [ -77.776969909667969, -10.573759078979492 ], [ -77.780487060546875, -10.573483467102051 ], [ -77.783821105957031, -10.571974754333496 ], [ -77.784881591796875, -10.571917533874512 ], [ -77.786018371582031, -10.573075294494629 ], [ -77.787277221679688, -10.576486587524357 ], [ -77.788619995117188, -10.578831672668457 ], [ -77.789093017578125, -10.580239295959473 ], [ -77.792510986328125, -10.58394718170166 ], [ -77.793800354003849, -10.584088325500431 ], [ -77.799003601074219, -10.58382606506342 ], [ -77.8031005859375, -10.58452129364008 ], [ -77.807876586914062, -10.583493232727051 ], [ -77.810722351074219, -10.581915855407715 ], [ -77.812309265136605, -10.582262992858773 ], [ -77.81298828125, -10.582178115844727 ], [ -77.814743041992188, -10.581146240234375 ], [ -77.819915771484318, -10.579124450683537 ], [ -77.82379150390625, -10.576359748840275 ], [ -77.824806213378906, -10.575313568115178 ], [ -77.825996398925781, -10.572873115539551 ], [ -77.827911376953125, -10.570098876953125 ], [ -77.829124450683594, -10.568641662597599 ], [ -77.831069946289006, -10.567424774169922 ], [ -77.834259033203125, -10.566727638244572 ], [ -77.836967468261719, -10.566946983337402 ], [ -77.839973449707031, -10.567794799804688 ], [ -77.843238830566406, -10.569482803344727 ], [ -77.847015380859318, -10.572565078735352 ], [ -77.848991394042912, -10.573424339294434 ], [ -77.853797912597656, -10.574887275695801 ], [ -77.855903625488281, -10.576369285583496 ], [ -77.857475280761719, -10.57805347442627 ], [ -77.859207153320256, -10.580631256103459 ], [ -77.863067626953125, -10.58728981018055 ], [ -77.864677429199219, -10.590862274169865 ], [ -77.869132995605412, -10.596121788024902 ], [ -77.872558593749943, -10.600978851318246 ], [ -77.876380920410099, -10.605191230773869 ], [ -77.879852294921875, -10.60840892791748 ], [ -77.883255004882756, -10.610870361328068 ], [ -77.884910583496094, -10.611508369445801 ], [ -77.885650634765625, -10.611519813537598 ], [ -77.885971069335938, -10.611527442932129 ], [ -77.885971069335938, -10.610417366027775 ], [ -77.886253356933594, -10.610417366027775 ], [ -77.886253356933594, -10.609028816223145 ], [ -77.885971069335938, -10.609028816223145 ], [ -77.885971069335938, -10.60847282409668 ], [ -77.885696411132812, -10.60847282409668 ], [ -77.885696411132812, -10.607916831970101 ], [ -77.885971069335938, -10.607916831970101 ], [ -77.885971069335938, -10.607082366943246 ], [ -77.886253356933594, -10.607082366943246 ], [ -77.886253356933594, -10.605972290039062 ], [ -77.886528015136719, -10.605972290039062 ], [ -77.886528015136719, -10.605416297912598 ], [ -77.886802673339844, -10.605416297912598 ], [ -77.886802673339844, -10.604860305786133 ], [ -77.8870849609375, -10.604860305786133 ], [ -77.8870849609375, -10.604304313659668 ], [ -77.887359619140568, -10.604304313659668 ], [ -77.887359619140568, -10.603748321533203 ], [ -77.887641906738224, -10.603748321533203 ], [ -77.887641906738224, -10.603194236755371 ], [ -77.887916564941349, -10.603194236755371 ], [ -77.887916564941349, -10.60291576385498 ], [ -77.888191223144474, -10.60291576385498 ], [ -77.888191223144474, -10.602359771728516 ], [ -77.888473510742131, -10.602359771728516 ], [ -77.888473510742131, -10.601805686950627 ], [ -77.888748168945312, -10.601805686950627 ], [ -77.888748168945312, -10.601249694824162 ], [ -77.889030456542969, -10.601249694824162 ], [ -77.889030456542969, -10.600693702697697 ], [ -77.889305114746094, -10.600693702697697 ], [ -77.889305114746094, -10.600416183471623 ], [ -77.889579772949219, -10.600414276123047 ], [ -77.889579772949219, -10.599860191345215 ], [ -77.889862060546875, -10.599860191345215 ], [ -77.889862060546875, -10.59930419921875 ], [ -77.89013671875, -10.59930419921875 ], [ -77.89013671875, -10.598750114440861 ], [ -77.890419006347656, -10.598750114440861 ], [ -77.890419006347656, -10.598194122314396 ], [ -77.890693664550724, -10.598194122314396 ], [ -77.890693664550724, -10.597915649414006 ], [ -77.890975952148381, -10.597915649414006 ], [ -77.890975952148381, -10.59736156463623 ], [ -77.891250610351506, -10.597359657287541 ], [ -77.891250610351506, -10.597082138061467 ], [ -77.891525268554631, -10.597082138061467 ], [ -77.891525268554631, -10.596528053283691 ], [ -77.891807556152344, -10.596528053283691 ], [ -77.891807556152344, -10.596006393432617 ], [ -77.892082214355469, -10.595972061157113 ], [ -77.892082214355469, -10.595693588256836 ], [ -77.892364501953125, -10.595693588256836 ], [ -77.892364501953125, -10.595136642456055 ], [ -77.89263916015625, -10.595136642456055 ], [ -77.89263916015625, -10.59485912322998 ], [ -77.892913818359375, -10.59486198425293 ], [ -77.892913818359375, -10.594424247741699 ], [ -77.892913818359375, -10.594305992126465 ], [ -77.893196105957031, -10.594305992126465 ], [ -77.893196105957031, -10.594026565551701 ], [ -77.893470764160156, -10.594026565551701 ], [ -77.893470764160156, -10.593626022338867 ], [ -77.893470764160156, -10.593470573425293 ], [ -77.893577575683594, -10.593470573425293 ], [ -77.893753051757699, -10.593470573425293 ], [ -77.893753051757699, -10.593222618102971 ], [ -77.893753051757699, -10.592918395996094 ], [ -77.89394378662098, -10.592918395996094 ], [ -77.894027709960881, -10.592918395996094 ], [ -77.894027709960881, -10.592637062072754 ], [ -77.894302368164006, -10.59263896942133 ], [ -77.894302368164006, -10.59221076965332 ], [ -77.894302368164006, -10.592081069946289 ], [ -77.894584655761662, -10.592082977294865 ], [ -77.894584655761662, -10.591805458068848 ], [ -77.894859313964844, -10.591805458068848 ], [ -77.894859313964844, -10.591251373290902 ], [ -77.8951416015625, -10.591251373290902 ], [ -77.8951416015625, -10.590970993041992 ], [ -77.895416259765625, -10.590970993041992 ], [ -77.895416259765625, -10.590415000915527 ], [ -77.89569091796875, -10.590415000915527 ], [ -77.89569091796875, -10.589859008789062 ], [ -77.895973205566406, -10.589860916137638 ], [ -77.895973205566406, -10.589583396911564 ], [ -77.896247863769531, -10.589583396911564 ], [ -77.896247863769531, -10.589027404785099 ], [ -77.896530151367188, -10.589027404785099 ], [ -77.896530151367188, -10.588748931884709 ], [ -77.896804809570199, -10.588748931884709 ], [ -77.896804809570199, -10.588473320007324 ], [ -77.897087097167912, -10.588473320007324 ], [ -77.897087097167912, -10.588194847106934 ], [ -77.897361755371037, -10.588194847106934 ], [ -77.897361755371037, -10.587638854980469 ], [ -77.897636413574162, -10.587638854980469 ], [ -77.897636413574162, -10.587361335754281 ], [ -77.897918701171818, -10.587361335754281 ], [ -77.897918701171818, -10.587082862854004 ], [ -77.898193359375, -10.587082862854004 ], [ -77.898193359375, -10.586805343627873 ], [ -77.898475646972656, -10.586805343627873 ], [ -77.898475646972656, -10.586526870727425 ], [ -77.898750305175781, -10.586526870727425 ], [ -77.898750305175781, -10.585970878601017 ], [ -77.899024963378906, -10.585970878601017 ], [ -77.899024963378906, -10.585695266723633 ], [ -77.899307250976562, -10.585695266723633 ], [ -77.899307250976562, -10.585416793823242 ], [ -77.899581909179688, -10.585416793823242 ], [ -77.899581909179688, -10.584860801696777 ], [ -77.899864196777344, -10.584860801696777 ], [ -77.899864196777344, -10.584583282470703 ], [ -77.900138854980412, -10.584583282470703 ], [ -77.900138854980412, -10.584304809570312 ], [ -77.900413513183537, -10.584304809570312 ], [ -77.900413513183537, -10.584029197692871 ], [ -77.900695800781193, -10.584027290344125 ], [ -77.900695800781193, -10.583750724792424 ], [ -77.900970458984318, -10.583750724792424 ], [ -77.900970458984318, -10.583194732666016 ], [ -77.901252746581974, -10.583194732666016 ], [ -77.901252746581974, -10.582638740539551 ], [ -77.901527404785156, -10.582638740539551 ], [ -77.901527404785156, -10.582361221313477 ], [ -77.901802062988281, -10.582361221313477 ], [ -77.901802062988281, -10.581804275512695 ], [ -77.902084350585938, -10.581804275512695 ], [ -77.902084350585938, -10.58124828338623 ], [ -77.902359008789062, -10.581251144409123 ], [ -77.902359008789062, -10.580972671508732 ], [ -77.902641296386719, -10.580972671508732 ], [ -77.902641296386719, -10.580415725707951 ], [ -77.902915954589844, -10.580415725707951 ], [ -77.902915954589844, -10.579306602477914 ], [ -77.903190612792912, -10.579306602477914 ], [ -77.9031982421875, -10.579026222229004 ], [ -77.903472900390568, -10.579026222229004 ], [ -77.903472900390568, -10.578470230102539 ], [ -77.903747558593693, -10.578472137451058 ], [ -77.903747558593693, -10.578193664550781 ], [ -77.904029846191349, -10.578193664550781 ], [ -77.904029846191349, -10.57791614532465 ], [ -77.904304504394474, -10.57791614532465 ], [ -77.904304504394474, -10.577637672424203 ], [ -77.904029846191349, -10.577637672424203 ], [ -77.904029846191349, -10.577083587646484 ], [ -77.903747558593693, -10.577083587646484 ], [ -77.903747558593693, -10.576804161071721 ], [ -77.904029846191349, -10.576804161071721 ], [ -77.904029846191349, -10.57652759552002 ], [ -77.904304504394474, -10.57652759552002 ], [ -77.904304504394474, -10.576250076293945 ], [ -77.905136108398438, -10.576250076293945 ], [ -77.905136108398438, -10.575971603393555 ], [ -77.905418395996094, -10.575971603393555 ], [ -77.905418395996094, -10.57569408416748 ], [ -77.905693054199219, -10.57569408416748 ], [ -77.905693054199219, -10.575138092041016 ], [ -77.905975341796875, -10.575138092041016 ], [ -77.905975341796875, -10.574582099914437 ], [ -77.90625, -10.574584007263184 ], [ -77.90625, -10.574305534362793 ], [ -77.906524658203068, -10.574305534362793 ], [ -77.906524658203068, -10.573472023010254 ], [ -77.906806945800724, -10.573472023010254 ], [ -77.906806945800724, -10.573193550109863 ], [ -77.907081604003849, -10.573193550109863 ], [ -77.907081604003849, -10.572637557983398 ], [ -77.907363891601506, -10.572637557983398 ], [ -77.907363891601506, -10.572360038757324 ], [ -77.907638549804688, -10.572360038757324 ], [ -77.907638549804688, -10.571805953979435 ], [ -77.907913208007812, -10.571805953979435 ], [ -77.907913208007812, -10.571249961853027 ], [ -77.908195495605469, -10.571249961853027 ], [ -77.908195495605469, -10.570972442626953 ], [ -77.908470153808594, -10.570972442626953 ], [ -77.908470153808594, -10.570416450500488 ], [ -77.90875244140625, -10.570416450500488 ], [ -77.90875244140625, -10.569862365722599 ], [ -77.909027099609375, -10.569862365722599 ], [ -77.909027099609375, -10.569306373596135 ], [ -77.9093017578125, -10.569306373596135 ], [ -77.9093017578125, -10.568750381469727 ], [ -77.909027099609375, -10.568750381469727 ], [ -77.909027099609375, -10.567917823791504 ], [ -77.908470153808594, -10.567917823791504 ], [ -77.908470153808594, -10.567640304565373 ], [ -77.908195495605469, -10.567640304565373 ], [ -77.908195495605469, -10.567361831664925 ], [ -77.907913208007812, -10.567361831664925 ], [ -77.907913208007812, -10.567084312438908 ], [ -77.907638549804688, -10.567084312438908 ], [ -77.907638549804688, -10.56652736663807 ], [ -77.907363891601506, -10.56652736663807 ], [ -77.907363891601506, -10.565971374511662 ], [ -77.90625, -10.565971374511662 ], [ -77.90625, -10.565695762634277 ], [ -77.905975341796875, -10.565695762634277 ], [ -77.905975341796875, -10.565415382385197 ], [ -77.905418395996094, -10.565415382385197 ], [ -77.905418395996094, -10.565138816833496 ], [ -77.904586791992188, -10.565138816833496 ], [ -77.904586791992188, -10.564861297607422 ], [ -77.904029846191349, -10.564861297607422 ], [ -77.904029846191349, -10.564582824707031 ], [ -77.902915954589844, -10.564582824707031 ], [ -77.902915954589844, -10.564305305480957 ], [ -77.902641296386719, -10.564305305480957 ], [ -77.902641296386719, -10.563470840454102 ], [ -77.902359008789062, -10.563470840454102 ], [ -77.902359008789062, -10.562360763549805 ], [ -77.902641296386719, -10.562360763549805 ], [ -77.902641296386719, -10.561248779296875 ], [ -77.902915954589844, -10.561248779296875 ], [ -77.902915954589844, -10.558749198913574 ], [ -77.903190612792912, -10.558749198913574 ], [ -77.9031982421875, -10.557639122009221 ], [ -77.903472900390568, -10.557639122009221 ], [ -77.903472900390568, -10.557083129882756 ], [ -77.903747558593693, -10.557083129882756 ], [ -77.903747558593693, -10.556527137756291 ], [ -77.904029846191349, -10.55652904510498 ], [ -77.904029846191349, -10.5562486648559 ], [ -77.904304504394474, -10.5562486648559 ], [ -77.904304504394474, -10.555694580078125 ], [ -77.904586791992188, -10.555694580078125 ], [ -77.904586791992188, -10.554861068725529 ], [ -77.904861450195312, -10.554861068725529 ], [ -77.904861450195312, -10.55402946472168 ], [ -77.904304504394474, -10.55402946472168 ], [ -77.904304504394474, -10.553748130798226 ], [ -77.904586791992188, -10.553748130798226 ], [ -77.904586791992188, -10.552638053894043 ], [ -77.904861450195312, -10.552638053894043 ], [ -77.904861450195312, -10.55180644989008 ], [ -77.905136108398438, -10.55180644989008 ], [ -77.905136108398438, -10.551526069641113 ], [ -77.905418395996094, -10.551527976989689 ], [ -77.905418395996094, -10.551250457763672 ], [ -77.905693054199219, -10.551250457763672 ], [ -77.905693054199219, -10.550970077514648 ], [ -77.905975341796875, -10.550970077514648 ], [ -77.905975341796875, -10.550415992736816 ], [ -77.90625, -10.550415992736816 ], [ -77.90625, -10.550138473510742 ], [ -77.906524658203068, -10.550138473510742 ], [ -77.906524658203068, -10.549860000610352 ], [ -77.906806945800724, -10.549860000610352 ], [ -77.906806945800724, -10.549304008483887 ], [ -77.907081604003849, -10.549305915832463 ], [ -77.907081604003849, -10.548472404479924 ], [ -77.907363891601506, -10.548472404479924 ], [ -77.907363891601506, -10.547637939453068 ], [ -77.907638549804688, -10.547637939453068 ], [ -77.907638549804688, -10.546806335449105 ], [ -77.907913208007812, -10.546806335449105 ], [ -77.907913208007812, -10.546250343322697 ], [ -77.908195495605469, -10.546250343322697 ], [ -77.908195495605469, -10.54597187042225 ], [ -77.908470153808594, -10.54597187042225 ], [ -77.908470153808594, -10.545694351196232 ], [ -77.90875244140625, -10.545694351196232 ], [ -77.90875244140625, -10.545415878295842 ], [ -77.909027099609375, -10.545415878295842 ], [ -77.909027099609375, -10.545140266418457 ], [ -77.909584045410043, -10.545140266418457 ], [ -77.909584045410043, -10.544861793518066 ], [ -77.909858703613224, -10.544861793518066 ], [ -77.909858703613224, -10.544584274291992 ], [ -77.910140991210881, -10.544584274291992 ], [ -77.910140991210881, -10.544305801391602 ], [ -77.910415649414006, -10.544305801391602 ], [ -77.910415649414006, -10.544028282165527 ], [ -77.910697937011662, -10.544028282165527 ], [ -77.910697937011662, -10.543749809265137 ], [ -77.910972595214844, -10.543749809265137 ], [ -77.910972595214844, -10.543193817138672 ], [ -77.911247253417969, -10.543193817138672 ], [ -77.911247253417969, -10.542083740234375 ], [ -77.911529541015625, -10.542083740234375 ], [ -77.911529541015625, -10.54152774810791 ], [ -77.91180419921875, -10.54152774810791 ], [ -77.91180419921875, -10.541250228881836 ], [ -77.912361145019531, -10.541250228881836 ], [ -77.912361145019531, -10.540970802307129 ], [ -77.912635803222543, -10.540970802307129 ], [ -77.912635803222543, -10.540693283081055 ], [ -77.913475036621037, -10.540693283081055 ], [ -77.913475036621037, -10.540417671203556 ], [ -77.913749694824162, -10.540417671203556 ], [ -77.913749694824162, -10.539861679077092 ], [ -77.914024353027344, -10.539861679077092 ], [ -77.914024353027344, -10.539581298828125 ], [ -77.914306640625, -10.539583206176701 ], [ -77.914306640625, -10.53930473327631 ], [ -77.914581298828125, -10.53930473327631 ], [ -77.914581298828125, -10.539027214050236 ], [ -77.914863586425781, -10.539027214050236 ], [ -77.914863586425781, -10.53819561004633 ], [ -77.914581298828125, -10.53819561004633 ], [ -77.914581298828125, -10.537915229797363 ], [ -77.914306640625, -10.537917137145882 ], [ -77.914306640625, -10.537638664245605 ], [ -77.914581298828125, -10.537638664245605 ], [ -77.914581298828125, -10.537359237670898 ], [ -77.914863586425781, -10.537361145019474 ], [ -77.914863586425781, -10.537082672119027 ], [ -77.915138244628906, -10.537082672119027 ], [ -77.915138244628906, -10.536803245544434 ], [ -77.915412902832031, -10.536803245544434 ], [ -77.915412902832031, -10.536249160766545 ], [ -77.915695190429688, -10.536249160766545 ], [ -77.915695190429688, -10.535972595214844 ], [ -77.915969848632756, -10.535972595214844 ], [ -77.915969848632756, -10.53569316864008 ], [ -77.916252136230412, -10.53569316864008 ], [ -77.916252136230412, -10.535139083862305 ], [ -77.916526794433537, -10.535139083862305 ], [ -77.916526794433537, -10.534860610961914 ], [ -77.916809082031193, -10.534860610961914 ], [ -77.916809082031193, -10.53458309173584 ], [ -77.9173583984375, -10.53458309173584 ], [ -77.9173583984375, -10.534304618835449 ], [ -77.917640686035156, -10.534304618835449 ], [ -77.917640686035156, -10.534027099609261 ], [ -77.918197631835938, -10.534027099609261 ], [ -77.918197631835938, -10.533748626708984 ], [ -77.918472290039062, -10.533748626708984 ], [ -77.918472290039062, -10.533471107482853 ], [ -77.918746948242188, -10.533473014831543 ], [ -77.918746948242188, -10.533194541931152 ], [ -77.919029235839844, -10.533194541931152 ], [ -77.919029235839844, -10.532917022705078 ], [ -77.919303894042912, -10.532917022705078 ], [ -77.919303894042912, -10.532638549804688 ], [ -77.919586181640568, -10.532638549804688 ], [ -77.919586181640568, -10.532361030578613 ], [ -77.919860839843693, -10.532361030578613 ], [ -77.919860839843693, -10.532082557678223 ], [ -77.920417785644531, -10.532082557678223 ], [ -77.920417785644531, -10.531805038452148 ], [ -77.920692443847656, -10.531806945800724 ], [ -77.920692443847656, -10.531526565551758 ], [ -77.920974731445312, -10.531526565551758 ], [ -77.920974731445312, -10.531249046325684 ], [ -77.921249389648438, -10.53125095367426 ], [ -77.921249389648438, -10.530973434448242 ], [ -77.921524047851562, -10.530973434448242 ], [ -77.921524047851562, -10.530693054199105 ], [ -77.921806335449219, -10.530694961547852 ], [ -77.921806335449219, -10.530417442321777 ], [ -77.922080993652344, -10.530417442321777 ], [ -77.922080993652344, -10.530138969421387 ], [ -77.922363281249886, -10.530138969421387 ], [ -77.922363281249886, -10.529861450195312 ], [ -77.922637939453068, -10.529861450195312 ], [ -77.922637939453068, -10.529582977294922 ], [ -77.922920227050724, -10.529582977294922 ], [ -77.922920227050724, -10.529305458068848 ], [ -77.923194885253849, -10.529305458068848 ], [ -77.923194885253849, -10.529026985168457 ], [ -77.923469543457031, -10.529028892517033 ], [ -77.923469543457031, -10.528751373290959 ], [ -77.923751831054688, -10.528751373290959 ], [ -77.923751831054688, -10.528470039367676 ], [ -77.924308776855469, -10.528472900390568 ], [ -77.924308776855469, -10.528195381164551 ], [ -77.924583435058594, -10.528195381164551 ], [ -77.924583435058594, -10.527916908264103 ], [ -77.924858093261719, -10.527916908264103 ], [ -77.924858093261719, -10.527639389038086 ], [ -77.925140380859375, -10.527639389038086 ], [ -77.925140380859375, -10.527359962463322 ], [ -77.925415039062386, -10.527359962463322 ], [ -77.925415039062386, -10.527082443237248 ], [ -77.926528930664006, -10.527082443237248 ], [ -77.926528930664006, -10.52680683135975 ], [ -77.926803588867188, -10.52680683135975 ], [ -77.926803588867188, -10.52652645111084 ], [ -77.927085876464844, -10.52652645111084 ], [ -77.927085876464844, -10.526250839233342 ], [ -77.927360534667969, -10.526250839233342 ], [ -77.927360534667969, -10.525693893432617 ], [ -77.927635192871094, -10.525693893432617 ], [ -77.927635192871094, -10.525416374206486 ], [ -77.92791748046875, -10.525416374206486 ], [ -77.92791748046875, -10.525137901306039 ], [ -77.928192138671875, -10.525137901306039 ], [ -77.928192138671875, -10.524860382080021 ], [ -77.928474426269531, -10.524860382080021 ], [ -77.928474426269531, -10.524306297302246 ], [ -77.929580688476506, -10.524306297302246 ], [ -77.929580688476506, -10.523750305175781 ], [ -77.931251525878906, -10.523750305175781 ], [ -77.931251525878906, -10.523471832275391 ], [ -77.931526184082031, -10.523471832275391 ], [ -77.931526184082031, -10.522915840148926 ], [ -77.931808471679688, -10.522915840148926 ], [ -77.931808471679688, -10.522638320922852 ], [ -77.932083129882756, -10.522640228271484 ], [ -77.932083129882756, -10.52208423614502 ], [ -77.932357788085881, -10.52208423614502 ], [ -77.932357788085881, -10.521528244018555 ], [ -77.932640075683537, -10.521528244018555 ], [ -77.932640075683537, -10.5209703445434 ], [ -77.932914733886662, -10.5209703445434 ], [ -77.932914733886662, -10.520416259765625 ], [ -77.933197021484375, -10.520416259765625 ], [ -77.933197021484375, -10.519583702087346 ], [ -77.934303283691406, -10.519583702087346 ], [ -77.934303283691406, -10.518194198608398 ], [ -77.936248779296875, -10.518194198608398 ], [ -77.936248779296875, -10.517915725708008 ], [ -77.936531066894531, -10.517915725708008 ], [ -77.936531066894531, -10.517084121704045 ], [ -77.937362670898438, -10.517084121704045 ], [ -77.937362670898438, -10.516805648803654 ], [ -77.93819427490223, -10.516805648803654 ], [ -77.93819427490223, -10.51652812957758 ], [ -77.939025878906193, -10.51652812957758 ], [ -77.939025878906193, -10.516249656677189 ], [ -77.939857482910156, -10.516249656677189 ], [ -77.939857482910156, -10.515969276428223 ], [ -77.940139770507812, -10.515969276428223 ], [ -77.940139770507812, -10.515416145324707 ], [ -77.939857482910156, -10.51541805267334 ], [ -77.939857482910156, -10.515139579772949 ], [ -77.939582824707031, -10.515139579772949 ], [ -77.939582824707031, -10.514859199523869 ], [ -77.939308166503849, -10.514862060546761 ], [ -77.939308166503849, -10.514583587646484 ], [ -77.939025878906193, -10.514583587646484 ], [ -77.939025878906193, -10.514303207397404 ], [ -77.938751220703068, -10.514303207397404 ], [ -77.938751220703068, -10.512637138366642 ], [ -77.939308166503849, -10.512639999389648 ], [ -77.939308166503849, -10.512360572814941 ], [ -77.939857482910156, -10.512360572814941 ], [ -77.939857482910156, -10.512081146240178 ], [ -77.940414428710938, -10.512083053588867 ], [ -77.940414428710938, -10.511804580688477 ], [ -77.940971374511719, -10.511804580688477 ], [ -77.940971374511719, -10.511527061462402 ], [ -77.941528320312443, -10.511527061462402 ], [ -77.941528320312443, -10.511248588562012 ], [ -77.942085266113224, -10.511248588562012 ], [ -77.942085266113224, -10.510971069335938 ], [ -77.941802978515568, -10.510971069335938 ], [ -77.941802978515568, -10.510695457458496 ], [ -77.942085266113224, -10.510695457458496 ], [ -77.942085266113224, -10.510139465332031 ], [ -77.942359924316349, -10.510139465332031 ], [ -77.942359924316349, -10.509859085083008 ], [ -77.942642211914006, -10.509859085083008 ], [ -77.942642211914006, -10.509305000305176 ], [ -77.942916870117188, -10.509305000305176 ], [ -77.942916870117188, -10.509026527404785 ], [ -77.943191528320312, -10.509026527404785 ], [ -77.943191528320312, -10.508749008178711 ], [ -77.943748474121094, -10.508749008178711 ], [ -77.943748474121094, -10.508473396301213 ], [ -77.94403076171875, -10.508473396301213 ], [ -77.94403076171875, -10.508193016052246 ], [ -77.944580078124943, -10.508193016052246 ], [ -77.944580078124943, -10.507917404174748 ], [ -77.944862365722599, -10.507917404174748 ], [ -77.944862365722599, -10.507637023925781 ], [ -77.945137023925724, -10.507638931274357 ], [ -77.945137023925724, -10.507361412048283 ], [ -77.945693969726506, -10.507361412048283 ], [ -77.945693969726506, -10.507082939147892 ], [ -77.945968627929688, -10.507082939147892 ], [ -77.945968627929688, -10.506805419921875 ], [ -77.946250915527344, -10.506805419921875 ], [ -77.946250915527344, -10.506526947021428 ], [ -77.946525573730469, -10.506526947021428 ], [ -77.946525573730469, -10.506251335143929 ], [ -77.94708251953125, -10.506251335143929 ], [ -77.94708251953125, -10.50597095489502 ], [ -77.947364807128906, -10.50597095489502 ], [ -77.947364807128906, -10.505695343017521 ], [ -77.947639465332031, -10.505695343017521 ], [ -77.947639465332031, -10.505416870117074 ], [ -77.947914123535099, -10.505416870117074 ], [ -77.947914123535099, -10.505139350891056 ], [ -77.948196411132756, -10.505139350891056 ], [ -77.948196411132756, -10.504860877990666 ], [ -77.948471069335881, -10.504860877990666 ], [ -77.948471069335881, -10.504583358764592 ], [ -77.949028015136719, -10.504583358764592 ], [ -77.949028015136719, -10.504304885864201 ], [ -77.949302673339844, -10.504304885864201 ], [ -77.949302673339844, -10.504027366638127 ], [ -77.950141906738281, -10.504027366638127 ], [ -77.950141906738281, -10.504304885864201 ], [ -77.949859619140625, -10.504304885864201 ], [ -77.949859619140625, -10.504583358764592 ], [ -77.950416564941406, -10.504583358764592 ], [ -77.950416564941406, -10.504304885864201 ], [ -77.950691223144531, -10.504304885864201 ], [ -77.950691223144531, -10.504027366638127 ], [ -77.950973510742074, -10.504027366638127 ], [ -77.950973510742074, -10.503750801086426 ], [ -77.951248168945256, -10.503750801086426 ], [ -77.951248168945256, -10.503473281860352 ], [ -77.951530456542912, -10.503473281860352 ], [ -77.951530456542912, -10.502917289733773 ], [ -77.951805114746037, -10.502917289733773 ], [ -77.951805114746037, -10.502361297607365 ], [ -77.95263671875, -10.502361297607365 ], [ -77.95263671875, -10.501528739929199 ], [ -77.952919006347656, -10.501528739929199 ], [ -77.952919006347656, -10.50069522857666 ], [ -77.953193664550781, -10.50069522857666 ], [ -77.953193664550781, -10.50041675567627 ], [ -77.953475952148438, -10.50041675567627 ], [ -77.953475952148438, -10.500138282775879 ], [ -77.953750610351562, -10.500138282775879 ], [ -77.953750610351562, -10.499859809875488 ], [ -77.953193664550781, -10.499859809875488 ], [ -77.953193664550781, -10.499582290649414 ], [ -77.95263671875, -10.499582290649414 ], [ -77.95263671875, -10.499306678771916 ], [ -77.953193664550781, -10.499306678771916 ], [ -77.953193664550781, -10.499026298522949 ], [ -77.953750610351562, -10.499029159545898 ], [ -77.953750610351562, -10.498749732971135 ], [ -77.954307556152287, -10.498749732971135 ], [ -77.954307556152287, -10.498470306396484 ], [ -77.954864501953068, -10.49847221374506 ], [ -77.954864501953068, -10.49819374084467 ], [ -77.955139160156193, -10.49819374084467 ], [ -77.955139160156193, -10.497916221618652 ], [ -77.955696105957031, -10.497916221618652 ], [ -77.955696105957031, -10.497637748718205 ], [ -77.956253051757812, -10.497637748718205 ], [ -77.956253051757812, -10.497360229492188 ], [ -77.956527709960938, -10.497360229492188 ], [ -77.956527709960938, -10.49708366394043 ], [ -77.957084655761719, -10.49708366394043 ], [ -77.957084655761719, -10.496804237365723 ], [ -77.957359313964787, -10.496804237365723 ], [ -77.957359313964787, -10.496527671813851 ], [ -77.957916259765568, -10.496527671813851 ], [ -77.957916259765568, -10.496248245239258 ], [ -77.958190917968693, -10.496250152587834 ], [ -77.958190917968693, -10.495971679687443 ], [ -77.959304809570312, -10.495971679687443 ], [ -77.959304809570312, -10.495694160461369 ], [ -77.961250305175724, -10.495694160461369 ], [ -77.961250305175724, -10.494582176208439 ], [ -77.962364196777344, -10.494582176208439 ], [ -77.962364196777344, -10.494859695434513 ], [ -77.964302062988224, -10.494859695434513 ], [ -77.964302062988224, -10.494582176208439 ], [ -77.964584350585881, -10.494584083557129 ], [ -77.964584350585881, -10.494165420532227 ], [ -77.964584350585881, -10.494028091430664 ], [ -77.9647216796875, -10.494028091430664 ], [ -77.964859008789062, -10.494028091430664 ], [ -77.964859008789062, -10.493895530700684 ], [ -77.964859008789062, -10.493472099304086 ], [ -77.965141296386719, -10.493472099304086 ], [ -77.965141296386719, -10.493193626403809 ], [ -77.965576171875, -10.493193626403809 ], [ -77.965972900390625, -10.493193626403809 ], [ -77.965972900390625, -10.492360115051213 ], [ -77.96624755859375, -10.492362022399902 ], [ -77.96624755859375, -10.491527557373047 ], [ -77.965972900390625, -10.491527557373047 ], [ -77.965972900390625, -10.490971565246582 ], [ -77.9656982421875, -10.490971565246582 ], [ -77.965690612792969, -10.490694046020508 ], [ -77.965141296386719, -10.490694046020508 ], [ -77.965141296386719, -10.490415573120117 ], [ -77.964859008789062, -10.490415573120117 ], [ -77.964859008789062, -10.490138053893929 ], [ -77.964584350585881, -10.490139961242676 ], [ -77.964584350585881, -10.489862442016602 ], [ -77.964027404785099, -10.489862442016602 ], [ -77.964027404785099, -10.489582061767521 ], [ -77.963752746581918, -10.489582061767521 ], [ -77.963752746581918, -10.489027976989746 ], [ -77.963470458984375, -10.489027976989746 ], [ -77.963470458984375, -10.488194465637207 ], [ -77.96319580078125, -10.488194465637207 ], [ -77.96319580078125, -10.487636566162109 ], [ -77.963470458984375, -10.487636566162109 ], [ -77.963470458984375, -10.48680591583252 ], [ -77.96319580078125, -10.48680591583252 ], [ -77.96319580078125, -10.486527442932072 ], [ -77.962913513183594, -10.486527442932072 ], [ -77.962913513183594, -10.485971450805664 ], [ -77.962638854980469, -10.485971450805664 ], [ -77.962638854980469, -10.48486137390131 ], [ -77.962944030761719, -10.48486137390131 ], [ -77.96319580078125, -10.48486137390131 ], [ -77.96319580078125, -10.481527328491097 ], [ -77.963752746581918, -10.481527328491097 ], [ -77.963752746581918, -10.478470802307129 ], [ -77.964027404785099, -10.478470802307129 ], [ -77.964027404785099, -10.478195190429688 ], [ -77.964302062988224, -10.478195190429688 ], [ -77.964302062988224, -10.477639198303223 ], [ -77.964584350585881, -10.477639198303223 ], [ -77.964584350585881, -10.477360725402832 ], [ -77.964859008789062, -10.477360725402832 ], [ -77.964859008789062, -10.477080345153809 ], [ -77.964584350585881, -10.477083206176758 ], [ -77.964584350585881, -10.476529121398869 ], [ -77.964302062988224, -10.476529121398869 ], [ -77.964302062988224, -10.476387977600098 ], [ -77.964302062988224, -10.475971221923828 ], [ -77.964469909667969, -10.475971221923828 ], [ -77.964584350585881, -10.475973129272404 ], [ -77.964584350585881, -10.475694656372013 ], [ -77.964859008789062, -10.475694656372013 ], [ -77.964859008789062, -10.475414276123047 ], [ -77.965141296386719, -10.475417137145939 ], [ -77.965141296386719, -10.475138664245549 ], [ -77.965415954589844, -10.475138664245549 ], [ -77.965415954589844, -10.474858283996582 ], [ -77.965690612792969, -10.474861145019531 ], [ -77.965690612792969, -10.474582672119084 ], [ -77.965415954589844, -10.474582672119084 ], [ -77.965415954589844, -10.474302291870117 ], [ -77.965141296386719, -10.474304199218693 ], [ -77.965141296386719, -10.474028587341309 ], [ -77.964859008789062, -10.474028587341309 ], [ -77.964859008789062, -10.473748207092228 ], [ -77.964599609374943, -10.473748207092228 ], [ -77.964584350585881, -10.47319221496582 ], [ -77.964302062988224, -10.47319221496582 ], [ -77.964302062988224, -10.472638130187875 ], [ -77.964859008789062, -10.472638130187875 ], [ -77.964859008789062, -10.472363471984863 ], [ -77.965415954589844, -10.472359657287598 ], [ -77.965415954589844, -10.472082138061467 ], [ -77.964859008789062, -10.472082138061467 ], [ -77.964859008789062, -10.471806526184082 ], [ -77.964584350585881, -10.471806526184082 ], [ -77.964584350585881, -10.471526145935002 ], [ -77.964302062988224, -10.471529006958008 ], [ -77.964302062988224, -10.471249580383301 ], [ -77.964584350585881, -10.471249580383301 ], [ -77.964584350585881, -10.470693588256836 ], [ -77.965415954589844, -10.470693588256836 ], [ -77.965415954589844, -10.470137596130371 ], [ -77.965690612792969, -10.470137596130371 ], [ -77.9656982421875, -10.469584465026855 ], [ -77.965972900390625, -10.469584465026855 ], [ -77.965972900390625, -10.468748092651254 ], [ -77.96624755859375, -10.468748092651254 ], [ -77.96624755859375, -10.46763801574707 ], [ -77.966529846191406, -10.46763801574707 ], [ -77.966529846191406, -10.467362403869572 ], [ -77.967636108398381, -10.467362403869572 ], [ -77.967636108398381, -10.467082023620605 ], [ -77.967918395996037, -10.467082023620605 ], [ -77.967918395996037, -10.466806411743107 ], [ -77.96875, -10.466806411743107 ], [ -77.96875, -10.466527938842717 ], [ -77.969306945800781, -10.466527938842717 ], [ -77.969306945800781, -10.466250419616699 ], [ -77.969863891601562, -10.466250419616699 ], [ -77.969863891601562, -10.465971946716252 ], [ -77.970138549804631, -10.465971946716252 ], [ -77.970138549804631, -10.465694427490234 ], [ -77.970695495605412, -10.465694427490234 ], [ -77.970695495605412, -10.465415954589844 ], [ -77.970970153808537, -10.465415954589844 ], [ -77.970970153808537, -10.46513843536377 ], [ -77.971252441406193, -10.46513843536377 ], [ -77.971252441406193, -10.464584350585881 ], [ -77.970970153808537, -10.464584350585881 ], [ -77.970970153808537, -10.464028358459416 ], [ -77.970695495605412, -10.464028358459416 ], [ -77.970695495605412, -10.463472366332951 ], [ -77.970970153808537, -10.463472366332951 ], [ -77.970970153808537, -10.462916374206543 ], [ -77.971252441406193, -10.462916374206543 ], [ -77.971252441406193, -10.462362289428597 ], [ -77.971527099609375, -10.462362289428597 ], [ -77.971527099609375, -10.46208381652832 ], [ -77.9718017578125, -10.46208381652832 ], [ -77.9718017578125, -10.461806297302189 ], [ -77.972084045410156, -10.461806297302189 ], [ -77.972084045410156, -10.461527824401742 ], [ -77.972358703613281, -10.461527824401742 ], [ -77.972358703613281, -10.461250305175724 ], [ -77.973197937011719, -10.461250305175724 ], [ -77.973197937011719, -10.460971832275334 ], [ -77.973472595214787, -10.460971832275334 ], [ -77.973472595214787, -10.460693359374886 ], [ -77.973747253417912, -10.460693359374886 ], [ -77.973747253417912, -10.460417747497559 ], [ -77.974029541015568, -10.460417747497559 ], [ -77.974029541015568, -10.460140228271484 ], [ -77.974304199218693, -10.460140228271484 ], [ -77.974304199218693, -10.459861755371094 ], [ -77.974586486816406, -10.459861755371094 ], [ -77.974586486816406, -10.459581375122013 ], [ -77.974861145019531, -10.45958423614502 ], [ -77.974861145019531, -10.459304809570312 ], [ -77.975135803222656, -10.459304809570312 ], [ -77.975135803222656, -10.459027290344238 ], [ -77.975418090820312, -10.459027290344238 ], [ -77.975418090820312, -10.458471298217773 ], [ -77.975135803222656, -10.458471298217773 ], [ -77.975135803222656, -10.457361221313477 ], [ -77.975418090820312, -10.457361221313477 ], [ -77.975418090820312, -10.457082748413029 ], [ -77.975692749023438, -10.457082748413029 ], [ -77.975692749023438, -10.456526756286621 ], [ -77.976806640624943, -10.456526756286621 ], [ -77.976806640624943, -10.456249237060547 ], [ -77.977081298828068, -10.456249237060547 ], [ -77.977081298828068, -10.454860687255803 ], [ -77.977363586425724, -10.454860687255803 ], [ -77.977363586425724, -10.453748703002873 ], [ -77.977638244628906, -10.453748703002873 ], [ -77.977638244628906, -10.452638626098633 ], [ -77.977912902832031, -10.452638626098633 ], [ -77.977912902832031, -10.451526641845646 ], [ -77.978195190429688, -10.451526641845646 ], [ -77.978195190429688, -10.450693130493107 ], [ -77.978469848632812, -10.450693130493107 ], [ -77.978469848632812, -10.450139045715332 ], [ -77.978752136230469, -10.450139045715332 ], [ -77.978752136230469, -10.449860572814941 ], [ -77.979026794433594, -10.449860572814941 ], [ -77.979026794433594, -10.449583053588754 ], [ -77.97930908203125, -10.449583053588754 ], [ -77.97930908203125, -10.449304580688477 ], [ -77.979583740234261, -10.449304580688477 ], [ -77.979583740234261, -10.449027061462346 ], [ -77.980697631835881, -10.449028968811035 ], [ -77.980697631835881, -10.448751449584961 ], [ -77.979583740234261, -10.448748588561898 ], [ -77.979583740234261, -10.448470115661621 ], [ -77.97930908203125, -10.448470115661621 ], [ -77.97930908203125, -10.447916984558105 ], [ -77.979583740234261, -10.447916984558105 ], [ -77.979583740234261, -10.447360992431641 ], [ -77.979858398437443, -10.447360992431641 ], [ -77.979858398437443, -10.44597339630127 ], [ -77.980140686035099, -10.44597339630127 ], [ -77.980140686035099, -10.444581985473633 ], [ -77.980415344238224, -10.444581985473633 ], [ -77.980415344238224, -10.44264030456543 ], [ -77.980697631835881, -10.44263839721674 ], [ -77.980697631835881, -10.442084312438965 ], [ -77.980972290039062, -10.442084312438965 ], [ -77.980972290039062, -10.4415283203125 ], [ -77.981246948242188, -10.4415283203125 ], [ -77.981246948242188, -10.441249847412109 ], [ -77.981529235839844, -10.441249847412109 ], [ -77.981529235839844, -10.440693855285645 ], [ -77.981803894042969, -10.440693855285645 ], [ -77.981803894042969, -10.440416336059513 ], [ -77.982086181640625, -10.440416336059513 ], [ -77.982086181640625, -10.440137863159066 ], [ -77.98236083984375, -10.440137863159066 ], [ -77.98236083984375, -10.439860343933049 ], [ -77.982635498046761, -10.439862251281738 ], [ -77.982635498046761, -10.439583778381348 ], [ -77.982917785644474, -10.439583778381348 ], [ -77.982917785644474, -10.439306259155273 ], [ -77.983192443847599, -10.439306259155273 ], [ -77.983192443847599, -10.439027786254883 ], [ -77.983474731445256, -10.439027786254883 ], [ -77.983474731445256, -10.438750267028809 ], [ -77.984580993652344, -10.438750267028809 ], [ -77.984580993652344, -10.438471794128418 ], [ -77.98486328125, -10.438471794128418 ], [ -77.98486328125, -10.437915802001953 ], [ -77.985137939453125, -10.437915802001953 ], [ -77.985137939453125, -10.437359809875488 ], [ -77.986251831054631, -10.437359809875488 ], [ -77.986251831054631, -10.437082290649357 ], [ -77.986526489257756, -10.437084197998047 ], [ -77.986526489257756, -10.436805725097656 ], [ -77.986808776855412, -10.436805725097656 ], [ -77.986808776855412, -10.436526298522892 ], [ -77.987083435058537, -10.436528205871582 ], [ -77.987083435058537, -10.436249732971191 ], [ -77.987358093261719, -10.436249732971191 ], [ -77.987358093261719, -10.435969352722054 ], [ -77.9879150390625, -10.435972213745117 ], [ -77.9879150390625, -10.435693740844727 ], [ -77.988197326660156, -10.435693740844727 ], [ -77.988197326660156, -10.435416221618652 ], [ -77.988746643066406, -10.435416221618652 ], [ -77.988746643066406, -10.435139656066838 ], [ -77.989028930664062, -10.435139656066838 ], [ -77.989028930664062, -10.434859275817871 ], [ -77.989303588867131, -10.434862136840763 ], [ -77.989303588867131, -10.434583663940373 ], [ -77.989585876464787, -10.434583663940373 ], [ -77.989585876464787, -10.434303283691406 ], [ -77.989860534667912, -10.434306144714355 ], [ -77.989860534667912, -10.434027671813908 ], [ -77.990135192871037, -10.434027671813908 ], [ -77.990135192871037, -10.433470726013127 ], [ -77.99041748046875, -10.433470726013127 ], [ -77.99041748046875, -10.433193206787053 ], [ -77.990692138671875, -10.433193206787053 ], [ -77.990692138671875, -10.432917594909554 ], [ -77.992080688476562, -10.432917594909554 ], [ -77.992080688476562, -10.432637214660645 ], [ -77.992362976074105, -10.432640075683537 ], [ -77.992362976074105, -10.432361602783146 ], [ -77.992919921874943, -10.432361602783146 ], [ -77.992919921874943, -10.43208122253418 ], [ -77.99346923828125, -10.432084083557072 ], [ -77.99346923828125, -10.431804656982422 ], [ -77.993751525878906, -10.431804656982422 ], [ -77.993751525878906, -10.431248664855843 ], [ -77.994026184082031, -10.431248664855843 ], [ -77.994026184082031, -10.430695533752441 ], [ -77.995140075683594, -10.430695533752441 ], [ -77.995140075683594, -10.430971145629826 ], [ -77.995697021484318, -10.430971145629826 ], [ -77.995697021484318, -10.430695533752441 ], [ -77.995971679687443, -10.430695533752441 ], [ -77.995971679687443, -10.430415153503361 ], [ -77.996528625488224, -10.430415153503361 ], [ -77.996528625488224, -10.430695533752441 ], [ -77.996803283691406, -10.430695533752441 ], [ -77.996803283691406, -10.431248664855843 ], [ -77.997085571289062, -10.431248664855843 ], [ -77.997085571289062, -10.432084083557072 ], [ -77.997360229492188, -10.432084083557072 ], [ -77.997360229492188, -10.431804656982422 ], [ -77.997642517089844, -10.431804656982422 ], [ -77.997642517089844, -10.431527137756291 ], [ -77.997917175292969, -10.431527137756291 ], [ -77.997917175292969, -10.431248664855843 ], [ -77.99847412109375, -10.431248664855843 ], [ -77.99847412109375, -10.430415153503361 ], [ -77.998191833496094, -10.430417060852051 ], [ -77.998191833496094, -10.42902660369873 ], [ -77.998748779296818, -10.42902660369873 ], [ -77.998748779296818, -10.429305076599121 ], [ -77.999862670898381, -10.429305076599121 ], [ -78.000137329101562, -10.429305076599121 ], [ -78.000968933105469, -10.429305076599121 ], [ -78.000968933105469, -10.42902660369873 ], [ -78.001251220703125, -10.42902660369873 ], [ -78.001251220703125, -10.427639007568359 ], [ -78.000968933105469, -10.427639007568359 ], [ -78.000968933105469, -10.427083015441895 ], [ -78.000694274902344, -10.427083015441895 ], [ -78.000694274902344, -10.426804542541504 ], [ -78.000419616699219, -10.426804542541504 ], [ -78.000419616699219, -10.42652702331543 ], [ -78.000137329101562, -10.426471710205078 ], [ -77.999862670898381, -10.426600456237736 ], [ -77.999862670898381, -10.427083015441895 ], [ -77.999580383300724, -10.427083015441895 ], [ -77.999580383300724, -10.426804542541504 ], [ -77.999305725097599, -10.426804542541504 ], [ -77.999305725097599, -10.42652702331543 ], [ -77.999031066894474, -10.42652702331543 ], [ -77.999031066894474, -10.425695419311523 ], [ -77.999580383300724, -10.425695419311523 ], [ -77.999580383300724, -10.425416946411076 ], [ -77.999862670898381, -10.425416946411076 ], [ -77.999862670898381, -10.425704956054688 ], [ -78.000137329101562, -10.42577075958252 ], [ -78.000137329101562, -10.425695419311523 ], [ -78.000694274902344, -10.425695419311523 ], [ -78.000694274902344, -10.425971031188965 ], [ -78.000968933105469, -10.425971031188965 ], [ -78.000968933105469, -10.425695419311523 ], [ -78.001251220703125, -10.425695419311523 ], [ -78.001251220703125, -10.425139427185059 ], [ -78.00152587890625, -10.425139427185059 ], [ -78.00152587890625, -10.424583435058594 ], [ -78.001808166503906, -10.424583435058594 ], [ -78.001808166503906, -10.424304962158203 ], [ -78.002357482910099, -10.424304962158203 ], [ -78.002357482910099, -10.424027442932129 ], [ -78.002639770507756, -10.424027442932129 ], [ -78.002639770507756, -10.423748970031738 ], [ -78.003196716308594, -10.423750877380314 ], [ -78.003196716308594, -10.42347335815424 ], [ -78.003753662109375, -10.42347335815424 ], [ -78.003753662109375, -10.423194885253849 ], [ -78.004302978515625, -10.423194885253849 ], [ -78.004302978515625, -10.422917366027775 ], [ -78.004585266113281, -10.422917366027775 ], [ -78.004585266113281, -10.42208290100092 ], [ -78.005142211913949, -10.42208290100092 ], [ -78.005142211913949, -10.421805381774902 ], [ -78.005416870117131, -10.421805381774902 ], [ -78.005416870117131, -10.421528816223145 ], [ -78.005691528320256, -10.421528816223145 ], [ -78.005691528320256, -10.421251296997013 ], [ -78.006805419921875, -10.421251296997013 ], [ -78.006805419921875, -10.420972824096566 ], [ -78.007637023925781, -10.420972824096566 ], [ -78.007637023925781, -10.420416831970158 ], [ -78.007919311523438, -10.420416831970158 ], [ -78.007919311523438, -10.419582366943303 ], [ -78.008193969726449, -10.419582366943303 ], [ -78.008193969726449, -10.419026374816838 ], [ -78.008468627929631, -10.419026374816838 ], [ -78.008468627929631, -10.418473243713379 ], [ -78.008750915527287, -10.418473243713379 ], [ -78.008750915527287, -10.418193817138672 ], [ -78.009025573730412, -10.418193817138672 ], [ -78.009025573730412, -10.418473243713379 ], [ -78.009864807128906, -10.418473243713379 ], [ -78.009864807128906, -10.418750762939453 ], [ -78.010971069335938, -10.418750762939453 ], [ -78.010971069335938, -10.418193817138672 ], [ -78.011253356933594, -10.418193817138672 ], [ -78.011253356933594, -10.417360305786133 ], [ -78.010971069335938, -10.417360305786133 ], [ -78.010971069335938, -10.417084693908691 ], [ -78.010696411132812, -10.417084693908691 ], [ -78.010696411132812, -10.416804313659668 ], [ -78.009864807128906, -10.416804313659668 ], [ -78.009864807128906, -10.415694236755371 ], [ -78.010139465332031, -10.415694236755371 ], [ -78.010139465332031, -10.415138244628906 ], [ -78.010414123535156, -10.415138244628906 ], [ -78.010414123535156, -10.414859771728516 ], [ -78.010696411132812, -10.414859771728516 ], [ -78.010696411132812, -10.414584159851017 ], [ -78.010971069335938, -10.414584159851017 ], [ -78.010971069335938, -10.414305686950627 ], [ -78.011802673339787, -10.414305686950627 ], [ -78.011802673339787, -10.414028167724553 ], [ -78.012359619140568, -10.414028167724553 ], [ -78.012359619140568, -10.413749694824162 ], [ -78.013748168945312, -10.413749694824162 ], [ -78.013748168945312, -10.413193702697697 ], [ -78.014030456542969, -10.413193702697697 ], [ -78.014030456542969, -10.412637710571232 ], [ -78.014305114746094, -10.412637710571232 ], [ -78.014305114746094, -10.411527633666879 ], [ -78.014579772949162, -10.411527633666879 ], [ -78.014579772949162, -10.410694122314396 ], [ -78.015136718749943, -10.410694122314396 ], [ -78.015136718749943, -10.410415649414006 ], [ -78.015419006347599, -10.410415649414006 ], [ -78.015419006347599, -10.408749580383301 ], [ -78.015136718749943, -10.408749580383301 ], [ -78.015136718749943, -10.40847206115717 ], [ -78.014862060546818, -10.40847206115717 ], [ -78.014862060546818, -10.407636642456055 ], [ -78.014579772949162, -10.407636642456055 ], [ -78.014579772949162, -10.406528472900391 ], [ -78.014305114746094, -10.406528472900391 ], [ -78.014305114746094, -10.405970573425293 ], [ -78.014030456542969, -10.405970573425293 ], [ -78.014030456542969, -10.405418395996094 ], [ -78.013748168945312, -10.405418395996094 ], [ -78.013748168945312, -10.404862403869629 ], [ -78.013473510742188, -10.404862403869629 ], [ -78.013473510742188, -10.404305458068848 ], [ -78.013191223144531, -10.404305458068848 ], [ -78.013191223144531, -10.403195381164494 ], [ -78.012916564941406, -10.403195381164494 ], [ -78.012916564941406, -10.402359008789062 ], [ -78.012641906738224, -10.402360916137638 ], [ -78.012641906738224, -10.402083396911564 ], [ -78.012359619140568, -10.402083396911564 ], [ -78.012359619140568, -10.401804924011174 ], [ -78.007080078125, -10.401804924011174 ], [ -78.007080078125, -10.402083396911564 ], [ -78.00653076171875, -10.402083396911564 ], [ -78.00653076171875, -10.402360916137638 ], [ -78.005416870117131, -10.402360916137638 ], [ -78.005416870117131, -10.401804924011174 ], [ -78.005142211913949, -10.401804924011174 ], [ -78.005142211913949, -10.400973320007324 ], [ -78.004859924316406, -10.400973320007324 ], [ -78.004859924316406, -10.39958286285389 ], [ -78.004585266113281, -10.39958286285389 ], [ -78.004585266113281, -10.398470878601017 ], [ -78.004302978515625, -10.398470878601017 ], [ -78.004302978515625, -10.398195266723633 ], [ -78.0040283203125, -10.398195266723633 ], [ -78.0040283203125, -10.397916793823242 ], [ -78.003471374511719, -10.397916793823242 ], [ -78.003471374511719, -10.397639274597168 ], [ -78.002914428710881, -10.397639274597168 ], [ -78.002914428710881, -10.397360801696777 ], [ -78.002357482910099, -10.397360801696777 ], [ -78.002357482910099, -10.396804809570312 ], [ -78.002082824706974, -10.396804809570312 ], [ -78.002082824706974, -10.39263916015625 ], [ -78.002357482910099, -10.39263916015625 ], [ -78.002357482910099, -10.391526222229004 ], [ -78.002639770507756, -10.391529083251896 ], [ -78.002639770507756, -10.39013767242426 ], [ -78.002914428710881, -10.39013767242426 ], [ -78.002914428710881, -10.389860153198185 ], [ -78.003196716308594, -10.389860153198185 ], [ -78.003196716308594, -10.389304161071721 ], [ -78.003471374511719, -10.389304161071721 ], [ -78.003471374511719, -10.38819408416748 ], [ -78.003753662109375, -10.38819408416748 ], [ -78.003753662109375, -10.386528015136719 ], [ -78.0040283203125, -10.386528015136719 ], [ -78.0040283203125, -10.385693550109863 ], [ -78.004302978515625, -10.385693550109863 ], [ -78.004302978515625, -10.385137557983398 ], [ -78.004585266113281, -10.385137557983398 ], [ -78.004585266113281, -10.384584426879883 ], [ -78.004859924316406, -10.384584426879883 ], [ -78.004859924316406, -10.384028434753418 ], [ -78.005416870117131, -10.384028434753418 ], [ -78.005416870117131, -10.383749961853027 ], [ -78.005691528320256, -10.383749961853027 ], [ -78.005691528320256, -10.383193969726562 ], [ -78.005973815917912, -10.383193969726562 ], [ -78.005973815917912, -10.382637977600098 ], [ -78.006248474121094, -10.382639884948674 ], [ -78.006248474121094, -10.382362365722599 ], [ -78.00653076171875, -10.382362365722599 ], [ -78.00653076171875, -10.382081985473633 ], [ -78.006805419921875, -10.382081985473633 ], [ -78.006805419921875, -10.381527900695744 ], [ -78.007080078125, -10.381527900695744 ], [ -78.007080078125, -10.381250381469727 ], [ -78.007362365722656, -10.381250381469727 ], [ -78.007362365722656, -10.380971908569336 ], [ -78.007637023925781, -10.380971908569336 ], [ -78.007637023925781, -10.38041782379139 ], [ -78.007919311523438, -10.38041782379139 ], [ -78.007919311523438, -10.380140304565373 ], [ -78.008468627929631, -10.38013744354248 ], [ -78.008468627929631, -10.379861831664982 ], [ -78.008750915527287, -10.379861831664982 ], [ -78.008750915527287, -10.379584312438908 ], [ -78.010414123535156, -10.379584312438908 ], [ -78.010414123535156, -10.379028320312443 ], [ -78.010139465332031, -10.379028320312443 ], [ -78.010139465332031, -10.378471374511662 ], [ -78.010696411132812, -10.378471374511662 ], [ -78.010696411132812, -10.378195762634277 ], [ -78.010971069335938, -10.378195762634277 ], [ -78.010971069335938, -10.376805305480957 ], [ -78.011253356933594, -10.376805305480957 ], [ -78.011253356933594, -10.375693321227914 ], [ -78.011528015136662, -10.37569522857666 ], [ -78.011528015136662, -10.37541675567627 ], [ -78.011802673339787, -10.37541675567627 ], [ -78.011802673339787, -10.375139236450195 ], [ -78.012084960937443, -10.375139236450195 ], [ -78.012084960937443, -10.374860763549805 ], [ -78.012916564941406, -10.374860763549805 ], [ -78.012916564941406, -10.37458324432373 ], [ -78.013191223144531, -10.37458324432373 ], [ -78.013191223144531, -10.37430477142334 ], [ -78.013473510742188, -10.37430477142334 ], [ -78.013473510742188, -10.374027252197266 ], [ -78.013748168945312, -10.374027252197266 ], [ -78.013748168945312, -10.373748779296875 ], [ -78.014030456542969, -10.373748779296875 ], [ -78.014030456542969, -10.373471260070801 ], [ -78.014305114746094, -10.373473167419377 ], [ -78.014305114746094, -10.373194694518986 ], [ -78.014579772949162, -10.373194694518986 ], [ -78.014579772949162, -10.372915267944336 ], [ -78.014862060546818, -10.372917175292912 ], [ -78.014862060546818, -10.372638702392521 ], [ -78.015419006347599, -10.372638702392521 ], [ -78.015419006347599, -10.372359275817757 ], [ -78.015693664550724, -10.372361183166504 ], [ -78.015693664550724, -10.372082710266056 ], [ -78.015975952148438, -10.372082710266056 ], [ -78.015975952148438, -10.371803283691349 ], [ -78.016250610351562, -10.371805191040039 ], [ -78.016250610351562, -10.371526718139648 ], [ -78.016525268554688, -10.371526718139648 ], [ -78.016525268554688, -10.371249198913574 ], [ -78.016807556152344, -10.37125110626215 ], [ -78.016807556152344, -10.370972633361703 ], [ -78.017082214355469, -10.370972633361703 ], [ -78.017082214355469, -10.370695114135685 ], [ -78.017364501953125, -10.370695114135685 ], [ -78.017364501953125, -10.370416641235295 ], [ -78.01763916015625, -10.370416641235295 ], [ -78.01763916015625, -10.370139122009221 ], [ -78.017913818359318, -10.370139122009221 ], [ -78.017913818359318, -10.36986064910883 ], [ -78.018196105956974, -10.36986064910883 ], [ -78.018196105956974, -10.369583129882756 ], [ -78.018470764160099, -10.369583129882756 ], [ -78.018470764160099, -10.369304656982365 ], [ -78.019302368164062, -10.369304656982365 ], [ -78.019302368164062, -10.369027137756348 ], [ -78.019859313964844, -10.36902904510498 ], [ -78.019859313964844, -10.3687486648559 ], [ -78.020416259765625, -10.3687486648559 ], [ -78.020416259765625, -10.368471145629883 ], [ -78.02069091796875, -10.368473052978402 ], [ -78.02069091796875, -10.368194580078125 ], [ -78.020973205566293, -10.368194580078125 ], [ -78.020973205566293, -10.367917060851994 ], [ -78.021247863769474, -10.367917060851994 ], [ -78.021247863769474, -10.367638587951546 ], [ -78.021530151367131, -10.367638587951546 ], [ -78.021530151367131, -10.367361068725529 ], [ -78.021804809570256, -10.367361068725529 ], [ -78.021804809570256, -10.367082595825138 ], [ -78.022087097167912, -10.367082595825138 ], [ -78.022087097167912, -10.366804122924691 ], [ -78.022361755371094, -10.366804122924691 ], [ -78.022361755371094, -10.366525650024414 ], [ -78.022636413574219, -10.366525650024414 ], [ -78.022636413574219, -10.366248130798283 ], [ -78.022918701171875, -10.366250991821289 ], [ -78.022918701171875, -10.365973472595215 ], [ -78.023193359375, -10.365973472595215 ], [ -78.023193359375, -10.365692138671818 ], [ -78.023475646972656, -10.365694999694824 ], [ -78.023475646972656, -10.365416526794434 ], [ -78.024307250976506, -10.365416526794434 ], [ -78.024307250976506, -10.365138053894043 ], [ -78.024864196777287, -10.365138053894043 ], [ -78.024864196777287, -10.364859580993652 ], [ -78.025138854980412, -10.364859580993652 ], [ -78.025138854980412, -10.364582061767578 ], [ -78.025413513183594, -10.364582061767578 ], [ -78.025413513183594, -10.364307403564453 ], [ -78.02569580078125, -10.364307403564453 ], [ -78.02569580078125, -10.364026069641113 ], [ -78.025970458984375, -10.364026069641113 ], [ -78.025970458984375, -10.363470077514648 ], [ -78.026252746582031, -10.363471984863281 ], [ -78.026252746582031, -10.363194465637207 ], [ -78.026802062988281, -10.363194465637207 ], [ -78.026802062988281, -10.362915992736816 ], [ -78.027084350585938, -10.362915992736816 ], [ -78.027084350585938, -10.362638473510742 ], [ -78.027359008789006, -10.362638473510742 ], [ -78.027359008789006, -10.362360000610352 ], [ -78.027915954589787, -10.362360000610352 ], [ -78.027915954589787, -10.362084388732853 ], [ -78.028472900390568, -10.362084388732853 ], [ -78.028472900390568, -10.361804008483887 ], [ -78.029029846191406, -10.361805915832463 ], [ -78.029029846191406, -10.361528396606388 ], [ -78.029861450195312, -10.361528396606388 ], [ -78.029861450195312, -10.361248016357422 ], [ -78.030418395996094, -10.361249923705998 ], [ -78.030418395996094, -10.360972404479924 ], [ -78.030693054199162, -10.360972404479924 ], [ -78.030693054199162, -10.360416412353516 ], [ -78.031524658203068, -10.360416412353516 ], [ -78.031524658203068, -10.360693931579533 ], [ -78.031806945800781, -10.360693931579533 ], [ -78.031806945800781, -10.360416412353516 ], [ -78.032081604003906, -10.360416412353516 ], [ -78.032081604003906, -10.360693931579533 ], [ -78.032363891601562, -10.360693931579533 ], [ -78.032363891601562, -10.360972404479924 ], [ -78.032638549804688, -10.360972404479924 ], [ -78.032638549804688, -10.361249923705998 ], [ -78.033470153808594, -10.361249923705998 ], [ -78.033470153808594, -10.360972404479924 ], [ -78.034027099609318, -10.360972404479924 ], [ -78.034027099609318, -10.360693931579533 ], [ -78.034301757812443, -10.360693931579533 ], [ -78.034301757812443, -10.360416412353516 ], [ -78.034858703613281, -10.360416412353516 ], [ -78.034858703613281, -10.360137939453068 ], [ -78.035140991210938, -10.360137939453068 ], [ -78.035140991210938, -10.360416412353516 ], [ -78.036804199218636, -10.360416412353516 ], [ -78.036804199218636, -10.359027862548714 ], [ -78.037086486816349, -10.359027862548714 ], [ -78.037086486816349, -10.358471870422306 ], [ -78.037635803222599, -10.358471870422306 ], [ -78.037635803222599, -10.358194351196232 ], [ -78.037918090820256, -10.358194351196232 ], [ -78.037918090820256, -10.357915878295842 ], [ -78.038475036621094, -10.357915878295842 ], [ -78.038475036621094, -10.357640266418457 ], [ -78.038749694824219, -10.357640266418457 ], [ -78.038749694824219, -10.357359886169377 ], [ -78.040695190429631, -10.357359886169377 ], [ -78.040695190429631, -10.357084274291992 ], [ -78.040969848632756, -10.357084274291992 ], [ -78.040969848632756, -10.356249809265137 ], [ -78.041252136230412, -10.356249809265137 ], [ -78.041252136230412, -10.355693817138558 ], [ -78.042083740234375, -10.355693817138558 ], [ -78.042083740234375, -10.355972290039006 ], [ -78.043197631835938, -10.355972290039006 ], [ -78.043197631835938, -10.353750228881836 ], [ -78.043472290039006, -10.353750228881836 ], [ -78.043472290039006, -10.352917671203556 ], [ -78.043746948242131, -10.352917671203556 ], [ -78.043746948242131, -10.352081298828125 ], [ -78.044586181640625, -10.352084159851074 ], [ -78.044586181640625, -10.351805686950684 ], [ -78.04486083984375, -10.351805686950684 ], [ -78.04486083984375, -10.352084159851074 ], [ -78.046806335449162, -10.352084159851074 ], [ -78.046806335449162, -10.351805686950684 ], [ -78.047080993652287, -10.351805686950684 ], [ -78.047080993652287, -10.351248741149846 ], [ -78.048194885253906, -10.351248741149846 ], [ -78.048194885253906, -10.350971221923828 ], [ -78.048751831054688, -10.350971221923828 ], [ -78.048751831054688, -10.35069561004633 ], [ -78.050140380859318, -10.35069561004633 ], [ -78.050140380859318, -10.350415229797363 ], [ -78.050415039062443, -10.350415229797363 ], [ -78.050415039062443, -10.350138664245492 ], [ -78.050697326660099, -10.350138664245492 ], [ -78.050697326660099, -10.349859237670898 ], [ -78.051246643066406, -10.349861145019474 ], [ -78.051246643066406, -10.349582672119084 ], [ -78.051528930664062, -10.349582672119084 ], [ -78.051528930664062, -10.349303245544434 ], [ -78.051803588867188, -10.34930515289301 ], [ -78.051803588867188, -10.349026679992619 ], [ -78.052085876464844, -10.349026679992619 ], [ -78.052085876464844, -10.348472595214844 ], [ -78.052917480468693, -10.348472595214844 ], [ -78.052917480468693, -10.34819316864008 ], [ -78.053474426269474, -10.34819316864008 ], [ -78.053474426269474, -10.347639083862305 ], [ -78.053749084472599, -10.347639083862305 ], [ -78.053749084472599, -10.347083091735726 ], [ -78.054031372070256, -10.347083091735726 ], [ -78.054031372070256, -10.346527099609318 ], [ -78.054580688476562, -10.346527099609318 ], [ -78.054580688476562, -10.346248626708871 ], [ -78.055137634277344, -10.346248626708871 ], [ -78.055137634277344, -10.345971107482853 ], [ -78.055419921875, -10.345973014831543 ], [ -78.055419921875, -10.345694541931152 ], [ -78.055969238281193, -10.345694541931152 ], [ -78.055969238281193, -10.345417022705078 ], [ -78.056251525878849, -10.345417022705078 ], [ -78.056251525878849, -10.344861030578613 ], [ -78.055969238281193, -10.344861030578613 ], [ -78.055969238281193, -10.344305038452148 ], [ -78.055694580078125, -10.344305038452148 ], [ -78.055694580078125, -10.343473434448242 ], [ -78.055137634277344, -10.343473434448242 ], [ -78.055137634277344, -10.343193054199162 ], [ -78.054862976074219, -10.343193054199162 ], [ -78.054862976074219, -10.342638969421387 ], [ -78.055694580078125, -10.342638969421387 ], [ -78.055694580078125, -10.342361450195312 ], [ -78.055969238281193, -10.342361450195312 ], [ -78.055969238281193, -10.337360382080021 ], [ -78.056251525878849, -10.337360382080021 ], [ -78.056251525878849, -10.336250305175781 ], [ -78.056526184081974, -10.336250305175781 ], [ -78.056526184081974, -10.334859848022461 ], [ -78.056808471679631, -10.334859848022461 ], [ -78.056808471679631, -10.332916259765625 ], [ -78.057083129882756, -10.332916259765625 ], [ -78.057083129882756, -10.33236026763916 ], [ -78.057357788085938, -10.332362174987736 ], [ -78.057357788085938, -10.331527709960881 ], [ -78.057640075683594, -10.331527709960881 ], [ -78.057640075683594, -10.330971717834473 ], [ -78.057914733886719, -10.330971717834473 ], [ -78.057914733886719, -10.330694198608398 ], [ -78.059028625488281, -10.330694198608398 ], [ -78.059028625488281, -10.330971717834473 ], [ -78.060142517089787, -10.330971717834473 ], [ -78.060142517089787, -10.331250190734863 ], [ -78.062080383300781, -10.331250190734863 ], [ -78.062080383300781, -10.330415725708008 ], [ -78.061805725097656, -10.330415725708008 ], [ -78.061805725097656, -10.329584121704045 ], [ -78.061531066894531, -10.329584121704045 ], [ -78.061531066894531, -10.329305648803654 ], [ -78.06097412109375, -10.329305648803654 ], [ -78.06097412109375, -10.32902812957758 ], [ -78.060691833496094, -10.32902812957758 ], [ -78.060691833496094, -10.328749656677189 ], [ -78.060417175292969, -10.328749656677189 ], [ -78.060417175292969, -10.328469276428223 ], [ -78.059860229492131, -10.328472137451172 ], [ -78.059860229492131, -10.328193664550724 ], [ -78.058746337890625, -10.328193664550724 ], [ -78.058746337890625, -10.328472137451172 ], [ -78.0584716796875, -10.328469276428223 ], [ -78.0584716796875, -10.32902812957758 ], [ -78.057083129882756, -10.32902812957758 ], [ -78.057083129882756, -10.328749656677189 ], [ -78.055419921875, -10.328749656677189 ], [ -78.055419921875, -10.328469276428223 ], [ -78.055137634277344, -10.328472137451172 ], [ -78.055137634277344, -10.328193664550724 ], [ -78.054580688476562, -10.328193664550724 ], [ -78.054580688476562, -10.327916145324707 ], [ -78.054306030273438, -10.327916145324707 ], [ -78.054306030273438, -10.327359199523869 ], [ -78.054031372070256, -10.327359199523869 ], [ -78.054031372070256, -10.326803207397461 ], [ -78.054306030273438, -10.326803207397461 ], [ -78.054306030273438, -10.326250076293888 ], [ -78.054862976074219, -10.326250076293888 ], [ -78.054862976074219, -10.325971603393498 ], [ -78.055419921875, -10.325971603393498 ], [ -78.055419921875, -10.325137138366642 ], [ -78.054862976074219, -10.325139999389648 ], [ -78.054862976074219, -10.324861526489258 ], [ -78.054580688476562, -10.324861526489258 ], [ -78.054580688476562, -10.324581146240178 ], [ -78.054306030273438, -10.324584007263184 ], [ -78.054306030273438, -10.324304580688477 ], [ -78.054031372070256, -10.324304580688477 ], [ -78.054031372070256, -10.324027061462402 ], [ -78.054306030273438, -10.324027061462402 ], [ -78.054306030273438, -10.323471069335938 ], [ -78.054580688476562, -10.323471069335938 ], [ -78.054580688476562, -10.322639465332031 ], [ -78.054862976074219, -10.322639465332031 ], [ -78.054862976074219, -10.321805000305176 ], [ -78.055137634277344, -10.321805000305176 ], [ -78.055137634277344, -10.321249008178711 ], [ -78.055419921875, -10.321249008178711 ], [ -78.055419921875, -10.320137023925781 ], [ -78.055694580078125, -10.320137023925781 ], [ -78.055694580078125, -10.319582939147892 ], [ -78.055969238281193, -10.319582939147892 ], [ -78.055969238281193, -10.319026947021484 ], [ -78.056251525878849, -10.319026947021484 ], [ -78.056251525878849, -10.318751335143986 ], [ -78.057914733886719, -10.318751335143986 ], [ -78.057914733886719, -10.31847095489502 ], [ -78.058197021484375, -10.31847095489502 ], [ -78.058197021484375, -10.318195343017521 ], [ -78.0584716796875, -10.318195343017521 ], [ -78.0584716796875, -10.317916870117131 ], [ -78.058197021484375, -10.317916870117131 ], [ -78.058197021484375, -10.317360877990666 ], [ -78.057357788085938, -10.317360877990666 ], [ -78.057357788085938, -10.317083358764592 ], [ -78.057083129882756, -10.317083358764592 ], [ -78.057083129882756, -10.316527366638184 ], [ -78.056808471679631, -10.316527366638184 ], [ -78.056808471679631, -10.316248893737736 ], [ -78.057083129882756, -10.316248893737736 ], [ -78.057083129882756, -10.315694808959961 ], [ -78.057357788085938, -10.315694808959961 ], [ -78.057357788085938, -10.315138816833382 ], [ -78.057640075683594, -10.315138816833382 ], [ -78.057640075683594, -10.314971923828011 ], [ -78.057640075683594, -10.314861297607365 ], [ -78.057914733886719, -10.314861297607365 ], [ -78.057914733886719, -10.314999580383301 ], [ -78.057914733886719, -10.315138816833382 ], [ -78.0584716796875, -10.315138816833382 ], [ -78.0584716796875, -10.31541728973383 ], [ -78.058746337890625, -10.31541728973383 ], [ -78.058746337890625, -10.315694808959961 ], [ -78.059860229492131, -10.315694808959961 ], [ -78.059860229492131, -10.31541728973383 ], [ -78.060417175292969, -10.31541728973383 ], [ -78.060417175292969, -10.314582824706974 ], [ -78.060142517089787, -10.314582824706974 ], [ -78.060142517089787, -10.313751220703125 ], [ -78.060417175292969, -10.313751220703125 ], [ -78.060417175292969, -10.313472747802734 ], [ -78.060691833496094, -10.313472747802734 ], [ -78.060691833496094, -10.31319522857666 ], [ -78.061531066894531, -10.31319522857666 ], [ -78.061531066894531, -10.310970306396484 ], [ -78.061805725097656, -10.310973167419434 ], [ -78.061805725097656, -10.310137748718262 ], [ -78.061531066894531, -10.310137748718262 ], [ -78.061531066894531, -10.309860229492188 ], [ -78.061805725097656, -10.309860229492188 ], [ -78.061805725097656, -10.309304237365723 ], [ -78.062080383300781, -10.309304237365723 ], [ -78.062080383300781, -10.309027671813908 ], [ -78.062362670898324, -10.309027671813908 ], [ -78.062362670898324, -10.308471679687443 ], [ -78.062637329101506, -10.308471679687443 ], [ -78.062637329101506, -10.307638168334904 ], [ -78.062362670898324, -10.307638168334904 ], [ -78.062362670898324, -10.306805610656738 ], [ -78.061805725097656, -10.306805610656738 ], [ -78.061805725097656, -10.30652809143055 ], [ -78.061531066894531, -10.30652809143055 ], [ -78.061531066894531, -10.306249618530273 ], [ -78.06097412109375, -10.306249618530273 ], [ -78.06097412109375, -10.305972099304142 ], [ -78.059585571289006, -10.305972099304142 ], [ -78.059585571289006, -10.305693626403695 ], [ -78.059028625488281, -10.305693626403695 ], [ -78.059028625488281, -10.305972099304142 ], [ -78.058746337890625, -10.305972099304142 ], [ -78.058746337890625, -10.30652809143055 ], [ -78.0584716796875, -10.30652809143055 ], [ -78.0584716796875, -10.306249618530273 ], [ -78.058197021484375, -10.306249618530273 ], [ -78.058197021484375, -10.305693626403695 ], [ -78.0584716796875, -10.305693626403695 ], [ -78.0584716796875, -10.304860115051213 ], [ -78.058197021484375, -10.304860115051213 ], [ -78.058197021484375, -10.304306030273438 ], [ -78.0584716796875, -10.304304122924748 ], [ -78.0584716796875, -10.302638053893986 ], [ -78.058197021484375, -10.302639961242676 ], [ -78.058197021484375, -10.301806449890137 ], [ -78.059028625488281, -10.301806449890137 ], [ -78.059028625488281, -10.301527976989746 ], [ -78.059585571289006, -10.301527976989746 ], [ -78.059585571289006, -10.301250457763672 ], [ -78.059860229492131, -10.301250457763672 ], [ -78.059860229492131, -10.300694465637207 ], [ -78.060142517089787, -10.300694465637207 ], [ -78.060142517089787, -10.300138473510629 ], [ -78.060691833496094, -10.300138473510629 ], [ -78.060691833496094, -10.299859046936035 ], [ -78.06097412109375, -10.299861907958984 ], [ -78.06097412109375, -10.299028396606445 ], [ -78.061248779296875, -10.299028396606445 ], [ -78.061248779296875, -10.298749923706055 ], [ -78.061531066894531, -10.298749923706055 ], [ -78.061531066894531, -10.298471450805664 ], [ -78.061805725097656, -10.298471450805664 ], [ -78.061805725097656, -10.297915458679199 ], [ -78.062080383300781, -10.297915458679199 ], [ -78.062080383300781, -10.297636985778809 ], [ -78.062362670898324, -10.297639846801701 ], [ -78.062362670898324, -10.297362327575627 ], [ -78.062637329101506, -10.297362327575627 ], [ -78.062637329101506, -10.296805381774846 ], [ -78.062919616699162, -10.296805381774846 ], [ -78.062919616699162, -10.296526908874455 ], [ -78.063194274902287, -10.296526908874455 ], [ -78.063194274902287, -10.29597091674799 ], [ -78.063468933105469, -10.29597091674799 ], [ -78.063468933105469, -10.295695304870605 ], [ -78.063751220703125, -10.295695304870605 ], [ -78.063751220703125, -10.295416831970215 ], [ -78.06402587890625, -10.295416831970215 ], [ -78.06402587890625, -10.29486083984375 ], [ -78.064308166503906, -10.29486083984375 ], [ -78.064308166503906, -10.294583320617562 ], [ -78.064582824707031, -10.294583320617562 ], [ -78.064582824707031, -10.294304847717285 ], [ -78.064857482910156, -10.294304847717285 ], [ -78.064857482910156, -10.294027328491154 ], [ -78.065139770507812, -10.294027328491154 ], [ -78.065139770507812, -10.293748855590707 ], [ -78.065414428710824, -10.293748855590707 ], [ -78.065414428710824, -10.293473243713379 ], [ -78.065971374511662, -10.293473243713379 ], [ -78.065971374511662, -10.292915344238224 ], [ -78.066253662109318, -10.292917251586914 ], [ -78.066253662109318, -10.292638778686523 ], [ -78.066528320312443, -10.292638778686523 ], [ -78.066528320312443, -10.292361259460449 ], [ -78.066802978515625, -10.292361259460449 ], [ -78.066802978515625, -10.292082786560059 ], [ -78.067916870117188, -10.292082786560059 ], [ -78.067916870117188, -10.291805267333984 ], [ -78.069030761718693, -10.291805267333984 ], [ -78.069030761718693, -10.290693283080998 ], [ -78.069305419921818, -10.290695190429688 ], [ -78.069305419921818, -10.290416717529297 ], [ -78.069862365722599, -10.290416717529297 ], [ -78.069862365722599, -10.290139198303223 ], [ -78.070137023925781, -10.290139198303223 ], [ -78.070137023925781, -10.289860725402832 ], [ -78.070419311523438, -10.289860725402832 ], [ -78.070419311523438, -10.289583206176758 ], [ -78.070693969726562, -10.289583206176758 ], [ -78.070693969726562, -10.289304733276367 ], [ -78.071250915527344, -10.289304733276367 ], [ -78.071250915527344, -10.289029121398869 ], [ -78.071525573730469, -10.289029121398869 ], [ -78.071525573730469, -10.288748741149902 ], [ -78.071807861328125, -10.288748741149902 ], [ -78.071807861328125, -10.288471221923828 ], [ -78.072082519531193, -10.288473129272404 ], [ -78.072082519531193, -10.288194656372013 ], [ -78.072364807128849, -10.288194656372013 ], [ -78.072364807128849, -10.287914276123047 ], [ -78.072639465331974, -10.287917137145996 ], [ -78.072639465331974, -10.287638664245549 ], [ -78.072914123535099, -10.287638664245549 ], [ -78.072914123535099, -10.287358283996582 ], [ -78.073196411132812, -10.287361145019531 ], [ -78.073196411132812, -10.287082672119141 ], [ -78.073471069335938, -10.287082672119141 ], [ -78.073471069335938, -10.286802291870117 ], [ -78.073753356933594, -10.286805152893066 ], [ -78.073753356933594, -10.286526679992676 ], [ -78.074028015136719, -10.286526679992676 ], [ -78.074028015136719, -10.286248207092285 ], [ -78.074302673339844, -10.286251068115178 ], [ -78.074302673339844, -10.285972595214787 ], [ -78.0745849609375, -10.285972595214787 ], [ -78.0745849609375, -10.28569221496582 ], [ -78.074859619140625, -10.285695075988713 ], [ -78.074859619140625, -10.285416603088322 ], [ -78.075141906738168, -10.285416603088322 ], [ -78.075141906738168, -10.285139083862248 ], [ -78.075416564941349, -10.285139083862248 ], [ -78.075416564941349, -10.284859657287484 ], [ -78.075691223144474, -10.284859657287484 ], [ -78.075691223144474, -10.284582138061467 ], [ -78.075973510742131, -10.284582138061467 ], [ -78.075973510742131, -10.284306526184082 ], [ -78.076248168945312, -10.284306526184082 ], [ -78.076248168945312, -10.284026145935002 ], [ -78.076530456542969, -10.284029006958008 ], [ -78.076530456542969, -10.283750534057617 ], [ -78.077079772949219, -10.283750534057617 ], [ -78.077079772949219, -10.283470153808537 ], [ -78.077362060546875, -10.283472061157227 ], [ -78.077362060546875, -10.283193588256836 ], [ -78.07763671875, -10.283193588256836 ], [ -78.07763671875, -10.282916069030762 ], [ -78.077919006347656, -10.282916069030762 ], [ -78.077919006347656, -10.282637596130371 ], [ -78.078750610351506, -10.282637596130371 ], [ -78.078750610351506, -10.282360076904297 ], [ -78.081253051757812, -10.282360076904297 ], [ -78.081253051757812, -10.282637596130371 ], [ -78.082084655761662, -10.282637596130371 ], [ -78.082084655761662, -10.282360076904297 ], [ -78.082916259765625, -10.282360076904297 ], [ -78.082916259765625, -10.282084465026855 ], [ -78.083473205566406, -10.282084465026855 ], [ -78.083473205566406, -10.281804084777718 ], [ -78.083747863769531, -10.281804084777718 ], [ -78.083747863769531, -10.28124809265131 ], [ -78.083473205566406, -10.28124809265131 ], [ -78.083473205566406, -10.280692100524846 ], [ -78.083747863769531, -10.280694007873535 ], [ -78.083747863769531, -10.280415534973145 ], [ -78.084304809570312, -10.280415534973145 ], [ -78.084304809570312, -10.28013801574707 ], [ -78.084587097167969, -10.28013801574707 ], [ -78.084587097167969, -10.279862403869572 ], [ -78.085418701171818, -10.279862403869572 ], [ -78.085418701171818, -10.279306411743164 ], [ -78.085136413574162, -10.279306411743164 ], [ -78.085136413574162, -10.278750419616699 ], [ -78.085418701171818, -10.278750419616699 ], [ -78.085418701171818, -10.278471946716309 ], [ -78.085975646972656, -10.278471946716309 ], [ -78.085975646972656, -10.278194427490234 ], [ -78.086250305175781, -10.278194427490234 ], [ -78.086250305175781, -10.277915954589844 ], [ -78.086524963378906, -10.277915954589844 ], [ -78.086524963378906, -10.27763843536377 ], [ -78.087081909179688, -10.27763843536377 ], [ -78.087081909179688, -10.277359962463379 ], [ -78.087638854980469, -10.277359962463379 ], [ -78.087638854980469, -10.277084350585881 ], [ -78.087913513183537, -10.277084350585881 ], [ -78.087913513183537, -10.275139808654785 ], [ -78.087638854980469, -10.275139808654785 ], [ -78.087638854980469, -10.274027824401799 ], [ -78.087364196777344, -10.274027824401799 ], [ -78.087364196777344, -10.273750305175724 ], [ -78.087081909179688, -10.273750305175724 ], [ -78.087081909179688, -10.273471832275334 ], [ -78.086807250976562, -10.273471832275334 ], [ -78.086807250976562, -10.272917747497559 ], [ -78.086524963378906, -10.272917747497559 ], [ -78.086524963378906, -10.272361755371094 ], [ -78.086250305175781, -10.272361755371094 ], [ -78.086250305175781, -10.271528244018441 ], [ -78.086524963378906, -10.271528244018441 ], [ -78.086524963378906, -10.270695686340332 ], [ -78.086250305175781, -10.270695686340332 ], [ -78.086250305175781, -10.269582748413086 ], [ -78.086524963378906, -10.269582748413086 ], [ -78.086524963378906, -10.269305229187012 ], [ -78.086250305175781, -10.269305229187012 ], [ -78.086250305175781, -10.266248703002873 ], [ -78.085975646972656, -10.266248703002873 ], [ -78.085975646972656, -10.265971183776855 ], [ -78.085693359374943, -10.265971183776855 ], [ -78.085693359374943, -10.265417098998967 ], [ -78.085418701171818, -10.265417098998967 ], [ -78.085418701171818, -10.265138626098519 ], [ -78.086524963378906, -10.265138626098519 ], [ -78.086524963378906, -10.264861106872502 ], [ -78.087364196777344, -10.264861106872502 ], [ -78.087364196777344, -10.264582633972111 ], [ -78.087638854980469, -10.264582633972111 ], [ -78.087638854980469, -10.264305114746037 ], [ -78.087913513183537, -10.264305114746037 ], [ -78.087913513183537, -10.264026641845646 ], [ -78.088470458984318, -10.264026641845646 ], [ -78.088470458984318, -10.263749122619572 ], [ -78.088752746581974, -10.263751029968262 ], [ -78.088752746581974, -10.263472557067871 ], [ -78.089027404785156, -10.263472557067871 ], [ -78.089027404785156, -10.263193130493164 ], [ -78.088195800781193, -10.263193130493164 ], [ -78.088195800781193, -10.26208305358881 ], [ -78.087913513183537, -10.26208305358881 ], [ -78.087913513183537, -10.260139465332031 ], [ -78.088195800781193, -10.260139465332031 ], [ -78.088195800781193, -10.259025573730469 ], [ -78.087913513183537, -10.259025573730469 ], [ -78.087913513183537, -10.25847339630127 ], [ -78.087638854980469, -10.25847339630127 ], [ -78.087638854980469, -10.257637977600098 ], [ -78.087364196777344, -10.257637977600098 ], [ -78.087364196777344, -10.257360458374023 ], [ -78.087081909179688, -10.257360458374023 ], [ -78.087081909179688, -10.256804466247559 ], [ -78.086807250976562, -10.256804466247559 ], [ -78.086807250976562, -10.256525993347168 ], [ -78.086524963378906, -10.25652885437006 ], [ -78.086524963378906, -10.25625038146967 ], [ -78.086250305175781, -10.25625038146967 ], [ -78.086250305175781, -10.255970001220703 ], [ -78.085975646972656, -10.255971908569279 ], [ -78.085975646972656, -10.255415916442814 ], [ -78.085693359374943, -10.255415916442814 ], [ -78.085693359374943, -10.25513839721674 ], [ -78.085418701171818, -10.25513839721674 ], [ -78.085418701171818, -10.254859924316349 ], [ -78.084861755371037, -10.254859924316349 ], [ -78.084861755371037, -10.254584312438965 ], [ -78.084587097167969, -10.254584312438965 ], [ -78.084587097167969, -10.254305839538574 ], [ -78.084861755371037, -10.254305839538574 ], [ -78.084861755371037, -10.253749847412109 ], [ -78.085136413574162, -10.253749847412109 ], [ -78.085136413574162, -10.253193855285531 ], [ -78.084861755371037, -10.253193855285531 ], [ -78.084861755371037, -10.252637863159123 ], [ -78.084587097167969, -10.252637863159123 ], [ -78.084587097167969, -10.252083778381348 ], [ -78.084304809570312, -10.252083778381348 ], [ -78.084304809570312, -10.250971794128418 ], [ -78.084030151367188, -10.250971794128418 ], [ -78.084030151367188, -10.25069427490223 ], [ -78.083747863769531, -10.25069427490223 ], [ -78.083747863769531, -10.250415802001953 ], [ -78.083473205566406, -10.250415802001953 ], [ -78.083473205566406, -10.250138282775822 ], [ -78.082916259765625, -10.250140190124512 ], [ -78.082916259765625, -10.249859809875375 ], [ -78.082641601562443, -10.249859809875375 ], [ -78.082641601562443, -10.249305725097656 ], [ -78.082359313964787, -10.249305725097656 ], [ -78.082359313964787, -10.249028205871582 ], [ -78.082084655761662, -10.249030113220158 ], [ -78.082084655761662, -10.248469352722111 ], [ -78.081802368164006, -10.248469352722111 ], [ -78.081802368164006, -10.247360229492188 ], [ -78.082084655761662, -10.24736213684082 ], [ -78.082084655761662, -10.247083663940373 ], [ -78.082641601562443, -10.247083663940373 ], [ -78.082641601562443, -10.246803283691406 ], [ -78.083473205566406, -10.246803283691406 ], [ -78.083473205566406, -10.247083663940373 ], [ -78.084030151367188, -10.247083663940373 ], [ -78.084030151367188, -10.24736213684082 ], [ -78.084304809570312, -10.247360229492188 ], [ -78.084304809570312, -10.247916221618652 ], [ -78.084587097167969, -10.247916221618652 ], [ -78.084587097167969, -10.248469352722111 ], [ -78.084861755371037, -10.248469352722111 ], [ -78.084861755371037, -10.248749732971191 ], [ -78.085693359374943, -10.248749732971191 ], [ -78.085693359374943, -10.249028205871582 ], [ -78.087913513183537, -10.249028205871582 ], [ -78.087913513183537, -10.248749732971191 ], [ -78.088470458984318, -10.248749732971191 ], [ -78.088470458984318, -10.248469352722111 ], [ -78.088752746581974, -10.248472213745117 ], [ -78.088752746581974, -10.248193740844727 ], [ -78.089302062988281, -10.248193740844727 ], [ -78.089302062988281, -10.247637748718262 ], [ -78.089584350585938, -10.247637748718262 ], [ -78.089584350585938, -10.247083663940373 ], [ -78.090141296386719, -10.247083663940373 ], [ -78.090141296386719, -10.246803283691406 ], [ -78.090415954589844, -10.246803283691406 ], [ -78.090415954589844, -10.24458122253418 ], [ -78.090141296386719, -10.24458122253418 ], [ -78.090141296386719, -10.242915153503361 ], [ -78.089859008789062, -10.242918014526254 ], [ -78.089859008789062, -10.24263858795166 ], [ -78.089584350585938, -10.24263858795166 ], [ -78.089584350585938, -10.242359161376896 ], [ -78.089302062988281, -10.242361068725586 ], [ -78.089302062988281, -10.242082595825195 ], [ -78.090972900390511, -10.242082595825195 ], [ -78.090972900390511, -10.242361068725586 ], [ -78.091247558593693, -10.242359161376896 ], [ -78.091247558593693, -10.24263858795166 ], [ -78.091804504394474, -10.24263858795166 ], [ -78.091804504394474, -10.242918014526254 ], [ -78.092086791992131, -10.242915153503361 ], [ -78.092086791992131, -10.243471145629826 ], [ -78.092918395996094, -10.243471145629826 ], [ -78.092918395996094, -10.243195533752441 ], [ -78.093475341796875, -10.243195533752441 ], [ -78.093475341796875, -10.24263858795166 ], [ -78.09375, -10.24263858795166 ], [ -78.09375, -10.242359161376896 ], [ -78.093475341796875, -10.242359161376896 ], [ -78.093475341796875, -10.241805076599121 ], [ -78.093193054199219, -10.241805076599121 ], [ -78.093193054199219, -10.24152660369873 ], [ -78.092918395996094, -10.24152660369873 ], [ -78.092918395996094, -10.241249084472543 ], [ -78.092636108398438, -10.241249084472543 ], [ -78.092636108398438, -10.239583015441895 ], [ -78.092361450195312, -10.239583015441895 ], [ -78.092361450195312, -10.239304542541504 ], [ -78.092086791992131, -10.239304542541504 ], [ -78.092086791992131, -10.23902702331543 ], [ -78.092361450195312, -10.23902702331543 ], [ -78.092361450195312, -10.238751411437988 ], [ -78.092636108398438, -10.238748550415039 ], [ -78.092636108398438, -10.236804962158203 ], [ -78.092361450195312, -10.236804962158203 ], [ -78.092361450195312, -10.236527442932129 ], [ -78.091804504394474, -10.236527442932129 ], [ -78.091804504394474, -10.236248970031738 ], [ -78.091529846191349, -10.236250877380314 ], [ -78.091529846191349, -10.23597335815424 ], [ -78.091247558593693, -10.23597335815424 ], [ -78.091247558593693, -10.234582901000977 ], [ -78.090972900390511, -10.234582901000977 ], [ -78.090972900390511, -10.233751296997013 ], [ -78.0906982421875, -10.233751296997013 ], [ -78.090690612792969, -10.232916831970158 ], [ -78.090415954589844, -10.232916831970158 ], [ -78.090415954589844, -10.232360839843693 ], [ -78.087913513183537, -10.232360839843693 ], [ -78.087913513183537, -10.231806755065918 ], [ -78.087638854980469, -10.231806755065918 ], [ -78.087638854980469, -10.231526374816838 ], [ -78.087364196777344, -10.231526374816838 ], [ -78.087364196777344, -10.230973243713265 ], [ -78.087081909179688, -10.230973243713265 ], [ -78.087081909179688, -10.230047225952035 ], [ -78.087081909179688, -10.229860305786133 ], [ -78.088562011718693, -10.229860305786133 ], [ -78.088752746581974, -10.229860305786133 ], [ -78.088752746581974, -10.229584693908691 ], [ -78.089302062988281, -10.229584693908691 ], [ -78.089302062988281, -10.229304313659554 ], [ -78.089584350585938, -10.229304313659554 ], [ -78.089584350585938, -10.22902774810791 ], [ -78.089302062988281, -10.22902774810791 ], [ -78.089302062988281, -10.228748321533146 ], [ -78.089027404785156, -10.228748321533146 ], [ -78.089027404785156, -10.228194236755371 ], [ -78.089584350585938, -10.228194236755371 ], [ -78.089584350585938, -10.22791576385498 ], [ -78.090141296386719, -10.22791576385498 ], [ -78.090141296386719, -10.227638244628906 ], [ -78.090415954589844, -10.227638244628906 ], [ -78.090415954589844, -10.227082252502441 ], [ -78.090690612792969, -10.227082252502441 ], [ -78.0906982421875, -10.226805686950627 ], [ -78.090972900390511, -10.226805686950627 ], [ -78.090972900390511, -10.226528167724553 ], [ -78.091529846191349, -10.226528167724553 ], [ -78.091529846191349, -10.226249694824162 ], [ -78.091804504394474, -10.226249694824162 ], [ -78.091804504394474, -10.225972175598145 ], [ -78.092636108398438, -10.225972175598145 ], [ -78.092636108398438, -10.22541618347168 ], [ -78.092918395996094, -10.22541427612299 ], [ -78.092918395996094, -10.22430419921875 ], [ -78.093475341796875, -10.224306106567326 ], [ -78.093475341796875, -10.224027633666935 ], [ -78.09375, -10.224027633666935 ], [ -78.09375, -10.223471641540471 ], [ -78.094306945800724, -10.223471641540471 ], [ -78.094306945800724, -10.223194122314396 ], [ -78.094581604003849, -10.223194122314396 ], [ -78.094581604003849, -10.22236156463623 ], [ -78.094863891601506, -10.222359657287541 ], [ -78.094863891601506, -10.222197532653809 ], [ -78.094863891601506, -10.222082138061523 ], [ -78.095138549804631, -10.222084045410043 ], [ -78.095138549804631, -10.221805572509766 ], [ -78.095695495605469, -10.221805572509766 ], [ -78.095695495605469, -10.222084045410043 ], [ -78.095970153808594, -10.222082138061523 ], [ -78.095970153808594, -10.222638130187988 ], [ -78.096527099609375, -10.222640037536621 ], [ -78.096527099609375, -10.22236156463623 ], [ -78.0968017578125, -10.222359657287541 ], [ -78.0968017578125, -10.222082138061523 ], [ -78.097358703613224, -10.222084045410043 ], [ -78.097358703613224, -10.221805572509766 ], [ -78.097640991210881, -10.221805572509766 ], [ -78.097640991210881, -10.220416069030705 ], [ -78.097358703613224, -10.220417976379395 ], [ -78.097358703613224, -10.220137596130314 ], [ -78.097084045410156, -10.220137596130314 ], [ -78.097084045410156, -10.21986007690424 ], [ -78.096939086914062, -10.21986198425293 ], [ -78.0968017578125, -10.21986198425293 ], [ -78.0968017578125, -10.218154907226506 ], [ -78.0968017578125, -10.216305732727051 ], [ -78.0968017578125, -10.213396072387695 ], [ -78.0968017578125, -10.212169647216797 ], [ -78.0968017578125, -10.211805343627873 ], [ -78.097084045410156, -10.211805343627873 ], [ -78.097084045410156, -10.210650444030762 ], [ -78.097084045410156, -10.210416793823242 ], [ -78.097358703613224, -10.210416793823242 ], [ -78.097358703613224, -10.209901809692326 ], [ -78.097358703613224, -10.209583282470646 ], [ -78.09747314453125, -10.209583282470646 ], [ -78.097640991210881, -10.209583282470646 ], [ -78.097640991210881, -10.209132194519043 ], [ -78.097640991210881, -10.208748817443791 ], [ -78.0977783203125, -10.208748817443791 ], [ -78.097915649414006, -10.208748817443791 ], [ -78.097915649414006, -10.208473205566406 ], [ -78.098197937011662, -10.208473205566406 ], [ -78.098197937011662, -10.207638740539551 ], [ -78.098472595214787, -10.207638740539551 ], [ -78.098472595214787, -10.207082748413086 ], [ -78.098747253417969, -10.207082748413086 ], [ -78.098747253417969, -10.206805229187012 ], [ -78.099029541015625, -10.206805229187012 ], [ -78.099029541015625, -10.206298828125 ], [ -78.100692749023381, -10.206249237060433 ], [ -78.100692749023381, -10.205692291259766 ], [ -78.100975036621037, -10.205695152282715 ], [ -78.100975036621037, -10.20513916015625 ], [ -78.101249694824162, -10.20513916015625 ], [ -78.101249694824162, -10.204582214355469 ], [ -78.101524353027287, -10.204582214355469 ], [ -78.101524353027287, -10.204026222229004 ], [ -78.101806640625, -10.204029083251896 ], [ -78.101806640625, -10.203750610351506 ], [ -78.102081298828125, -10.203750610351506 ], [ -78.102081298828125, -10.203193664550724 ], [ -78.102363586425781, -10.203193664550724 ], [ -78.102363586425781, -10.202360153198185 ], [ -78.102638244628906, -10.202360153198185 ], [ -78.102638244628906, -10.202084541320801 ], [ -78.102912902832031, -10.202084541320801 ], [ -78.102912902832031, -10.201804161071721 ], [ -78.103195190429688, -10.201804161071721 ], [ -78.103195190429688, -10.201248168945312 ], [ -78.103469848632812, -10.201250076293945 ], [ -78.103469848632812, -10.200971603393555 ], [ -78.103752136230355, -10.200971603393555 ], [ -78.103752136230355, -10.200694084167367 ], [ -78.104583740234318, -10.200694084167367 ], [ -78.104583740234318, -10.200971603393555 ], [ -78.105140686035156, -10.200971603393555 ], [ -78.105140686035156, -10.20152759552002 ], [ -78.105697631835938, -10.20152759552002 ], [ -78.105697631835938, -10.200138092040959 ], [ -78.106803894042855, -10.200138092040959 ], [ -78.106803894042855, -10.199861526489258 ], [ -78.107086181640568, -10.199861526489258 ], [ -78.107086181640568, -10.198472023010254 ], [ -78.107360839843693, -10.198472023010254 ], [ -78.107360839843693, -10.198193550109863 ], [ -78.108474731445312, -10.198193550109863 ], [ -78.108474731445312, -10.197916030883789 ], [ -78.108749389648438, -10.197916030883789 ], [ -78.108749389648438, -10.197637557983398 ], [ -78.109306335449219, -10.197637557983398 ], [ -78.109306335449219, -10.197360038757211 ], [ -78.109580993652344, -10.197360038757211 ], [ -78.109580993652344, -10.197084426879883 ], [ -78.1129150390625, -10.197084426879883 ], [ -78.1129150390625, -10.196805953979492 ], [ -78.113471984863224, -10.196805953979492 ], [ -78.113471984863224, -10.196528434753418 ], [ -78.113746643066349, -10.196528434753418 ], [ -78.113746643066349, -10.196249961853027 ], [ -78.114860534667969, -10.196249961853027 ], [ -78.114860534667969, -10.195416450500488 ], [ -78.115135192871094, -10.195416450500488 ], [ -78.115135192871094, -10.194027900695801 ], [ -78.114860534667969, -10.194027900695801 ], [ -78.114860534667969, -10.193471908569336 ], [ -78.11541748046875, -10.193471908569336 ], [ -78.11541748046875, -10.193194389343262 ], [ -78.115692138671875, -10.193194389343262 ], [ -78.115692138671875, -10.192640304565373 ], [ -78.115974426269531, -10.192638397216797 ], [ -78.115974426269531, -10.191528320312443 ], [ -78.116249084472656, -10.191528320312443 ], [ -78.116249084472656, -10.190695762634277 ], [ -78.116531372070199, -10.190695762634277 ], [ -78.116531372070199, -10.190415382385197 ], [ -78.116806030273381, -10.190415382385197 ], [ -78.116806030273381, -10.189026832580566 ], [ -78.117080688476506, -10.189026832580566 ], [ -78.117080688476506, -10.188470840454102 ], [ -78.116806030273381, -10.188470840454102 ], [ -78.116806030273381, -10.188193321227971 ], [ -78.116531372070199, -10.188193321227971 ], [ -78.116531372070199, -10.187639236450195 ], [ -78.116806030273381, -10.187639236450195 ], [ -78.116806030273381, -10.18680477142334 ], [ -78.117080688476506, -10.18680477142334 ], [ -78.117080688476506, -10.186527252197266 ], [ -78.117362976074162, -10.186529159545842 ], [ -78.117362976074162, -10.185971260070801 ], [ -78.117637634277344, -10.185973167419377 ], [ -78.117637634277344, -10.185138702392521 ], [ -78.118194580078125, -10.185138702392521 ], [ -78.118194580078125, -10.184859275817814 ], [ -78.118751525878906, -10.184861183166504 ], [ -78.118751525878906, -10.184582710266113 ], [ -78.120140075683537, -10.184582710266113 ], [ -78.120140075683537, -10.184861183166504 ], [ -78.1209716796875, -10.184861183166504 ], [ -78.1209716796875, -10.184582710266113 ], [ -78.121246337890625, -10.184582710266113 ], [ -78.121246337890625, -10.184303283691349 ], [ -78.121528625488281, -10.184305191040039 ], [ -78.121528625488281, -10.184026718139648 ], [ -78.121246337890625, -10.184026718139648 ], [ -78.121246337890625, -10.18347263336176 ], [ -78.1209716796875, -10.18347263336176 ], [ -78.1209716796875, -10.183195114135685 ], [ -78.121246337890625, -10.183195114135685 ], [ -78.121246337890625, -10.182916641235295 ], [ -78.121528625488281, -10.182916641235295 ], [ -78.121528625488281, -10.182639122009221 ], [ -78.122085571289062, -10.182639122009221 ], [ -78.122085571289062, -10.182083129882812 ], [ -78.121803283691406, -10.182083129882812 ], [ -78.121803283691406, -10.181804656982365 ], [ -78.121246337890625, -10.181804656982365 ], [ -78.121246337890625, -10.181527137756348 ], [ -78.1209716796875, -10.181529045104867 ], [ -78.1209716796875, -10.181248664855957 ], [ -78.121109008788949, -10.181248664855957 ], [ -78.121246337890625, -10.181248664855957 ], [ -78.121246337890625, -10.180971145629883 ], [ -78.121528625488281, -10.180973052978459 ], [ -78.121528625488281, -10.180694580078011 ], [ -78.122085571289062, -10.180694580078011 ], [ -78.122085571289062, -10.180973052978459 ], [ -78.122360229492188, -10.180971145629883 ], [ -78.122360229492188, -10.181248664855957 ], [ -78.123748779296818, -10.181248664855957 ], [ -78.123748779296818, -10.180971145629883 ], [ -78.124031066894474, -10.180973052978459 ], [ -78.124031066894474, -10.180138587951603 ], [ -78.124305725097656, -10.180138587951603 ], [ -78.124305725097656, -10.178473472595158 ], [ -78.124031066894474, -10.178473472595158 ], [ -78.124031066894474, -10.177359580993652 ], [ -78.124862670898438, -10.177359580993652 ], [ -78.124862670898438, -10.177639007568303 ], [ -78.127914428710938, -10.177639007568303 ], [ -78.127914428710938, -10.177359580993652 ], [ -78.130973815917969, -10.177359580993652 ], [ -78.130973815917969, -10.177082061767578 ], [ -78.131248474121094, -10.177082061767578 ], [ -78.131248474121094, -10.176807403564453 ], [ -78.131805419921875, -10.176807403564453 ], [ -78.131805419921875, -10.176251411437988 ], [ -78.132080078125, -10.176251411437988 ], [ -78.132080078125, -10.175415992736816 ], [ -78.133193969726506, -10.175415992736816 ], [ -78.133193969726506, -10.175138473510742 ], [ -78.133468627929688, -10.175138473510742 ], [ -78.133468627929688, -10.174860000610352 ], [ -78.133750915527344, -10.174860000610352 ], [ -78.133750915527344, -10.174304008483887 ], [ -78.134025573730469, -10.174305915832463 ], [ -78.134025573730469, -10.174028396606445 ], [ -78.133750915527344, -10.174028396606445 ], [ -78.133750915527344, -10.17347240447998 ], [ -78.134025573730469, -10.17347240447998 ], [ -78.134025573730469, -10.172916412353516 ], [ -78.134307861328125, -10.172916412353516 ], [ -78.134307861328125, -10.172362327575627 ], [ -78.13458251953125, -10.172362327575627 ], [ -78.13458251953125, -10.171250343322697 ], [ -78.137916564941406, -10.171250343322697 ], [ -78.137916564941406, -10.170971870422306 ], [ -78.138473510742188, -10.170971870422306 ], [ -78.138473510742188, -10.170694351196232 ], [ -78.138748168945256, -10.170694351196232 ], [ -78.138748168945256, -10.170415878295842 ], [ -78.139305114746037, -10.170415878295842 ], [ -78.139305114746037, -10.170140266418457 ], [ -78.139579772949162, -10.170140266418457 ], [ -78.139579772949162, -10.169859886169377 ], [ -78.14013671875, -10.169859886169377 ], [ -78.14013671875, -10.169584274291879 ], [ -78.140419006347656, -10.169584274291879 ], [ -78.140419006347656, -10.169028282165471 ], [ -78.140693664550781, -10.169028282165471 ], [ -78.140693664550781, -10.168193817138615 ], [ -78.141525268554688, -10.168193817138615 ], [ -78.141525268554688, -10.167916297912541 ], [ -78.142364501953068, -10.167916297912541 ], [ -78.142364501953068, -10.16763782501215 ], [ -78.143196105957031, -10.16763782501215 ], [ -78.143196105957031, -10.167360305786076 ], [ -78.143470764160156, -10.167362213134766 ], [ -78.143470764160156, -10.167083740234375 ], [ -78.143753051757812, -10.167083740234375 ], [ -78.143753051757812, -10.16652774810791 ], [ -78.144027709960938, -10.16652774810791 ], [ -78.144027709960938, -10.166250228881836 ], [ -78.144302368164062, -10.166250228881836 ], [ -78.144302368164062, -10.165691375732365 ], [ -78.144584655761719, -10.165691375732365 ], [ -78.144584655761719, -10.16513729095459 ], [ -78.144859313964844, -10.165140151977539 ], [ -78.144859313964844, -10.164584159851074 ], [ -78.145141601562386, -10.164584159851074 ], [ -78.145141601562386, -10.164028167724609 ], [ -78.145416259765568, -10.164028167724609 ], [ -78.145416259765568, -10.163748741149902 ], [ -78.146530151367188, -10.163748741149902 ], [ -78.146530151367188, -10.163469314575138 ], [ -78.147087097167969, -10.163469314575138 ], [ -78.147087097167969, -10.163748741149902 ], [ -78.147361755371094, -10.163748741149902 ], [ -78.147361755371094, -10.164028167724609 ], [ -78.147918701171875, -10.164028167724609 ], [ -78.147918701171875, -10.164305686950684 ], [ -78.148750305175724, -10.164305686950684 ], [ -78.148750305175724, -10.164028167724609 ], [ -78.149024963378849, -10.164028167724609 ], [ -78.149024963378849, -10.162915229797363 ], [ -78.149307250976506, -10.162915229797363 ], [ -78.149307250976506, -10.161803245544434 ], [ -78.149581909179688, -10.16180515289301 ], [ -78.149581909179688, -10.161526679992619 ], [ -78.149864196777344, -10.161526679992619 ], [ -78.149864196777344, -10.161249160766602 ], [ -78.15069580078125, -10.161249160766602 ], [ -78.15069580078125, -10.160693168640137 ], [ -78.150970458984375, -10.160693168640137 ], [ -78.150970458984375, -10.159860610961914 ], [ -78.151252746582031, -10.159860610961914 ], [ -78.151252746582031, -10.159583091735783 ], [ -78.151527404785099, -10.159583091735783 ], [ -78.151527404785099, -10.159027099609318 ], [ -78.151802062988224, -10.159027099609318 ], [ -78.151802062988224, -10.158748626708928 ], [ -78.152084350585881, -10.158748626708928 ], [ -78.152084350585881, -10.158471107482853 ], [ -78.152359008789006, -10.158471107482853 ], [ -78.152359008789006, -10.157917022705078 ], [ -78.152641296386662, -10.157917022705078 ], [ -78.152641296386662, -10.157361030578613 ], [ -78.154029846191406, -10.157361030578613 ], [ -78.154029846191406, -10.157082557678223 ], [ -78.154586791992188, -10.157082557678223 ], [ -78.154586791992188, -10.156805038452035 ], [ -78.155136108398381, -10.156805038452035 ], [ -78.155136108398381, -10.156526565551758 ], [ -78.154861450195256, -10.156526565551758 ], [ -78.154861450195256, -10.155973434448242 ], [ -78.154586791992188, -10.155973434448242 ], [ -78.154586791992188, -10.155693054199162 ], [ -78.154037475585938, -10.155694961547852 ], [ -78.15374755859375, -10.155694961547852 ], [ -78.15374755859375, -10.155362129211426 ], [ -78.15374755859375, -10.154026985168457 ], [ -78.154029846191406, -10.154026985168457 ], [ -78.154029846191406, -10.154305458068848 ], [ -78.154861450195256, -10.154305458068848 ], [ -78.154861450195256, -10.154026985168457 ], [ -78.155136108398381, -10.154026985168457 ], [ -78.155136108398381, -10.153470993041992 ], [ -78.155418395996037, -10.153472900390625 ], [ -78.155418395996037, -10.153195381164551 ], [ -78.155693054199162, -10.153195381164551 ], [ -78.155693054199162, -10.15291690826416 ], [ -78.15625, -10.15291690826416 ], [ -78.15625, -10.152083396911621 ], [ -78.156806945800781, -10.152083396911621 ], [ -78.156806945800781, -10.151806831359806 ], [ -78.157081604003906, -10.151806831359806 ], [ -78.157081604003906, -10.15152645111084 ], [ -78.157638549804688, -10.15152645111084 ], [ -78.157638549804688, -10.151250839233342 ], [ -78.157913208007756, -10.151250839233342 ], [ -78.157913208007756, -10.150973320007324 ], [ -78.158470153808537, -10.150973320007324 ], [ -78.158470153808537, -10.150694847106877 ], [ -78.158752441406193, -10.150694847106877 ], [ -78.158752441406193, -10.150417327880859 ], [ -78.1593017578125, -10.150417327880859 ], [ -78.1593017578125, -10.150137901306096 ], [ -78.159584045410156, -10.150137901306096 ], [ -78.159584045410156, -10.149860382080021 ], [ -78.160140991210938, -10.149860382080021 ], [ -78.160140991210938, -10.149581909179631 ], [ -78.160415649414062, -10.149581909179631 ], [ -78.160415649414062, -10.149304389953613 ], [ -78.16097259521473, -10.149304389953613 ], [ -78.16097259521473, -10.149028778076115 ], [ -78.161529541015568, -10.149028778076115 ], [ -78.161529541015568, -10.148750305175781 ], [ -78.161804199218693, -10.148750305175781 ], [ -78.161804199218693, -10.148471832275391 ], [ -78.162361145019531, -10.148471832275391 ], [ -78.162361145019531, -10.14819431304926 ], [ -78.162918090820312, -10.14819431304926 ], [ -78.162918090820312, -10.147915840148926 ], [ -78.163475036621094, -10.147915840148926 ], [ -78.163475036621094, -10.147638320922795 ], [ -78.163749694824219, -10.147638320922795 ], [ -78.163749694824219, -10.147359848022404 ], [ -78.16402435302723, -10.147359848022404 ], [ -78.16402435302723, -10.14708232879633 ], [ -78.164306640624943, -10.14708232879633 ], [ -78.164306640624943, -10.146528244018555 ], [ -78.164581298828068, -10.146528244018555 ], [ -78.164581298828068, -10.146200180053654 ], [ -78.164581298828068, -10.14597225189209 ], [ -78.164688110351506, -10.14597225189209 ], [ -78.164863586425724, -10.14597225189209 ], [ -78.164863586425724, -10.145416259765625 ], [ -78.165138244628849, -10.145416259765625 ], [ -78.165138244628849, -10.144860267639046 ], [ -78.165412902832031, -10.144862174987793 ], [ -78.165412902832031, -10.144583702087402 ], [ -78.165695190429688, -10.144583702087402 ], [ -78.165695190429688, -10.144304275512638 ], [ -78.165969848632812, -10.144304275512638 ], [ -78.165969848632812, -10.143748283386174 ], [ -78.166252136230469, -10.143748283386174 ], [ -78.166252136230469, -10.143194198608398 ], [ -78.165969848632812, -10.143194198608398 ], [ -78.165969848632812, -10.142915725708008 ], [ -78.165695190429688, -10.142915725708008 ], [ -78.165695190429688, -10.14264011383051 ], [ -78.165138244628849, -10.14264011383051 ], [ -78.165138244628849, -10.142084121704045 ], [ -78.165695190429688, -10.142084121704045 ], [ -78.165695190429688, -10.141805648803654 ], [ -78.165969848632812, -10.141805648803654 ], [ -78.165969848632812, -10.140970230102482 ], [ -78.165695190429688, -10.140970230102482 ], [ -78.165695190429688, -10.140416145324707 ], [ -78.165412902832031, -10.140418052673283 ], [ -78.165412902832031, -10.140137672424316 ], [ -78.165695190429688, -10.140137672424316 ], [ -78.165695190429688, -10.139583587646428 ], [ -78.165969848632812, -10.139583587646428 ], [ -78.165969848632812, -10.139303207397461 ], [ -78.167083740234375, -10.139306068420353 ], [ -78.167083740234375, -10.139027595519963 ], [ -78.167358398437443, -10.139027595519963 ], [ -78.167358398437443, -10.138750076293888 ], [ -78.167915344238224, -10.138750076293888 ], [ -78.167915344238224, -10.138471603393498 ], [ -78.168197631835881, -10.138471603393498 ], [ -78.168197631835881, -10.137914657592717 ], [ -78.168472290039006, -10.137914657592717 ], [ -78.168472290039006, -10.137637138366642 ], [ -78.168746948242188, -10.137639999389648 ], [ -78.168746948242188, -10.137361526489258 ], [ -78.169029235839844, -10.137361526489258 ], [ -78.169029235839844, -10.137081146240178 ], [ -78.169303894042969, -10.137084007263127 ], [ -78.169303894042969, -10.136805534362793 ], [ -78.169586181640625, -10.136805534362793 ], [ -78.169586181640625, -10.136248588562012 ], [ -78.169303894042969, -10.136248588562012 ], [ -78.169303894042969, -10.135139465332031 ], [ -78.169586181640625, -10.135139465332031 ], [ -78.169586181640625, -10.134026527404785 ], [ -78.169303894042969, -10.134026527404785 ], [ -78.169303894042969, -10.133749008178711 ], [ -78.169029235839844, -10.133749008178711 ], [ -78.169029235839844, -10.13347339630127 ], [ -78.169303894042969, -10.13347339630127 ], [ -78.169303894042969, -10.132917404174805 ], [ -78.169586181640625, -10.132917404174805 ], [ -78.169586181640625, -10.132637023925781 ], [ -78.16986083984375, -10.132637023925781 ], [ -78.16986083984375, -10.132081031799203 ], [ -78.170135498046875, -10.132082939147949 ], [ -78.170135498046875, -10.131805419921875 ], [ -78.16986083984375, -10.131805419921875 ], [ -78.16986083984375, -10.131251335143986 ], [ -78.169586181640625, -10.131251335143986 ], [ -78.169586181640625, -10.130695343017521 ], [ -78.169303894042969, -10.130695343017521 ], [ -78.169303894042969, -10.130416870117131 ], [ -78.170135498046875, -10.130416870117131 ], [ -78.170135498046875, -10.130139350891056 ], [ -78.171249389648381, -10.130139350891056 ], [ -78.171249389648381, -10.129583358764648 ], [ -78.170974731445256, -10.129583358764648 ], [ -78.170974731445256, -10.129027366638184 ], [ -78.171524047851506, -10.129027366638184 ], [ -78.171524047851506, -10.128748893737793 ], [ -78.172080993652344, -10.128748893737793 ], [ -78.172080993652344, -10.128473281860295 ], [ -78.172637939453125, -10.128473281860295 ], [ -78.172637939453125, -10.128194808959847 ], [ -78.17236328125, -10.128194808959847 ], [ -78.17236328125, -10.127638816833439 ], [ -78.172637939453125, -10.127638816833439 ], [ -78.172637939453125, -10.125972747802734 ], [ -78.173194885253906, -10.125972747802734 ], [ -78.173194885253906, -10.12569522857666 ], [ -78.173469543457031, -10.12569522857666 ], [ -78.173469543457031, -10.124860763549805 ], [ -78.174026489257756, -10.124860763549805 ], [ -78.174026489257756, -10.124583244323674 ], [ -78.174308776855412, -10.124583244323674 ], [ -78.174308776855412, -10.124026298522949 ], [ -78.174583435058537, -10.124026298522949 ], [ -78.174583435058537, -10.123470306396428 ], [ -78.174858093261719, -10.123470306396428 ], [ -78.174858093261719, -10.122914314269963 ], [ -78.174583435058537, -10.122914314269963 ], [ -78.174583435058537, -10.122360229492188 ], [ -78.174308776855412, -10.122360229492188 ], [ -78.174308776855412, -10.122084617614689 ], [ -78.174026489257756, -10.122084617614689 ], [ -78.174026489257756, -10.121527671813908 ], [ -78.173751831054574, -10.121527671813908 ], [ -78.173751831054574, -10.121804237365723 ], [ -78.173194885253906, -10.121804237365723 ], [ -78.173194885253906, -10.121527671813908 ], [ -78.173469543457031, -10.121527671813908 ], [ -78.173469543457031, -10.121248245239258 ], [ -78.173194885253906, -10.121250152587834 ], [ -78.173194885253906, -10.120971679687443 ], [ -78.172920227050781, -10.120971679687443 ], [ -78.172920227050781, -10.120415687560978 ], [ -78.173194885253906, -10.120415687560978 ], [ -78.173194885253906, -10.119028091430607 ], [ -78.174858093261719, -10.119028091430607 ], [ -78.174858093261719, -10.118749618530217 ], [ -78.174583435058537, -10.118749618530217 ], [ -78.174583435058537, -10.118193626403752 ], [ -78.174308776855412, -10.118193626403752 ], [ -78.174308776855412, -10.117916107177678 ], [ -78.174583435058537, -10.117916107177678 ], [ -78.174583435058537, -10.117360115051213 ], [ -78.174308776855412, -10.117360115051213 ], [ -78.174308776855412, -10.117083549499512 ], [ -78.173751831054574, -10.117083549499512 ], [ -78.173751831054574, -10.116250038146859 ], [ -78.173469543457031, -10.116250038146859 ], [ -78.173469543457031, -10.115415573120004 ], [ -78.174583435058537, -10.115415573120004 ], [ -78.174583435058537, -10.115138053893986 ], [ -78.174858093261719, -10.115139961242676 ], [ -78.174858093261719, -10.114862442016602 ], [ -78.1754150390625, -10.114862442016602 ], [ -78.1754150390625, -10.114582061767521 ], [ -78.175697326660156, -10.114583969116211 ], [ -78.175697326660156, -10.114306449890137 ], [ -78.176803588867074, -10.114306449890137 ], [ -78.176803588867074, -10.114583969116211 ], [ -78.177085876464787, -10.114582061767521 ], [ -78.177085876464787, -10.114862442016602 ], [ -78.177635192871037, -10.114862442016602 ], [ -78.177635192871037, -10.115139961242676 ], [ -78.177917480468693, -10.115138053893986 ], [ -78.177917480468693, -10.115415573120004 ], [ -78.178192138671875, -10.115415573120004 ], [ -78.178192138671875, -10.115694046020451 ], [ -78.178474426269531, -10.115694046020451 ], [ -78.178474426269531, -10.116527557373047 ], [ -78.178749084472656, -10.116527557373047 ], [ -78.178749084472656, -10.117360115051213 ], [ -78.179862976074219, -10.117360115051213 ], [ -78.179862976074219, -10.116806030273438 ], [ -78.180137634277287, -10.116806030273438 ], [ -78.180137634277287, -10.116527557373047 ], [ -78.180419921874943, -10.116527557373047 ], [ -78.180419921874943, -10.116250038146859 ], [ -78.180694580078068, -10.116250038146859 ], [ -78.180694580078068, -10.115694046020451 ], [ -78.180969238281193, -10.115694046020451 ], [ -78.180969238281193, -10.112915992736816 ], [ -78.181251525878849, -10.112917900085449 ], [ -78.181251525878849, -10.112638473510685 ], [ -78.181526184082031, -10.112638473510685 ], [ -78.181526184082031, -10.110415458679199 ], [ -78.181808471679688, -10.110415458679199 ], [ -78.181808471679688, -10.110136985778809 ], [ -78.182083129882812, -10.110139846801701 ], [ -78.182083129882812, -10.109862327575684 ], [ -78.182357788085938, -10.109862327575684 ], [ -78.182357788085938, -10.109580993652344 ], [ -78.182701110839787, -10.109583854675293 ], [ -78.184303283691349, -10.109580993652344 ], [ -78.184303283691349, -10.109862327575684 ], [ -78.185691833496094, -10.109862327575684 ], [ -78.185691833496094, -10.109580993652344 ], [ -78.18597412109375, -10.109583854675293 ], [ -78.18597412109375, -10.109305381774846 ], [ -78.185691833496094, -10.109305381774846 ], [ -78.185691833496094, -10.109026908874455 ], [ -78.185417175292969, -10.109026908874455 ], [ -78.185417175292969, -10.108749389648438 ], [ -78.185691833496094, -10.108749389648438 ], [ -78.185691833496094, -10.107639312744084 ], [ -78.185417175292969, -10.107639312744084 ], [ -78.185417175292969, -10.107083320617619 ], [ -78.185142517089844, -10.107083320617619 ], [ -78.185142517089844, -10.106248855590763 ], [ -78.184860229492188, -10.106248855590763 ], [ -78.184860229492188, -10.105694770812988 ], [ -78.184028625488224, -10.105694770812988 ], [ -78.184028625488224, -10.105417251586914 ], [ -78.183746337890568, -10.105417251586914 ], [ -78.183746337890568, -10.105138778686523 ], [ -78.184028625488224, -10.105138778686523 ], [ -78.184028625488224, -10.104861259460449 ], [ -78.184303283691349, -10.104861259460449 ], [ -78.184303283691349, -10.104582786560059 ], [ -78.184585571289062, -10.104582786560059 ], [ -78.184585571289062, -10.102916717529297 ], [ -78.184303283691349, -10.102916717529297 ], [ -78.184303283691349, -10.102360725402832 ], [ -78.183746337890568, -10.102360725402832 ], [ -78.183746337890568, -10.102083206176758 ], [ -78.183471679687443, -10.102083206176758 ], [ -78.183471679687443, -10.101529121398869 ], [ -78.183197021484375, -10.101529121398869 ], [ -78.183197021484375, -10.100971221923828 ], [ -78.182914733886719, -10.100971221923828 ], [ -78.182914733886719, -10.100415229797306 ], [ -78.182640075683594, -10.100417137145996 ], [ -78.182640075683594, -10.100138664245605 ], [ -78.180969238281193, -10.100138664245605 ], [ -78.180969238281193, -10.099858283996582 ], [ -78.180694580078068, -10.099861145019531 ], [ -78.180694580078068, -10.099582672119141 ], [ -78.180137634277287, -10.099582672119141 ], [ -78.180137634277287, -10.099302291870117 ], [ -78.179862976074219, -10.099305152893066 ], [ -78.179862976074219, -10.099026679992676 ], [ -78.179580688476562, -10.099026679992676 ], [ -78.179580688476562, -10.098749160766602 ], [ -78.179306030273438, -10.098751068115178 ], [ -78.179306030273438, -10.098472595214787 ], [ -78.178474426269531, -10.098472595214787 ], [ -78.178474426269531, -10.09819221496582 ], [ -78.177917480468693, -10.098195075988713 ], [ -78.177917480468693, -10.097916603088322 ], [ -78.177360534667912, -10.097916603088322 ], [ -78.177360534667912, -10.097639083862305 ], [ -78.176528930664062, -10.097639083862305 ], [ -78.176528930664062, -10.097360610961857 ], [ -78.175971984863281, -10.097360610961857 ], [ -78.175971984863281, -10.097082138061467 ], [ -78.175140380859375, -10.097082138061467 ], [ -78.175140380859375, -10.096806526184082 ], [ -78.174308776855412, -10.096806526184082 ], [ -78.174308776855412, -10.096526145935002 ], [ -78.170974731445256, -10.096529006957951 ], [ -78.170974731445256, -10.096250534057617 ], [ -78.170135498046875, -10.096250534057617 ], [ -78.170135498046875, -10.095970153808594 ], [ -78.16986083984375, -10.095973014831486 ], [ -78.16986083984375, -10.095693588256836 ], [ -78.169586181640625, -10.095693588256836 ], [ -78.169586181640625, -10.095137596130371 ], [ -78.169303894042969, -10.095137596130371 ], [ -78.169303894042969, -10.094304084777775 ], [ -78.169029235839844, -10.094304084777775 ], [ -78.169029235839844, -10.093192100524846 ], [ -78.168746948242188, -10.093194007873535 ], [ -78.168746948242188, -10.090694427490234 ], [ -78.168472290039006, -10.090694427490234 ], [ -78.168472290039006, -10.090415954589844 ], [ -78.168197631835881, -10.090415954589844 ], [ -78.168197631835881, -10.086250305175724 ], [ -78.168472290039006, -10.086250305175724 ], [ -78.168472290039006, -10.084581375122013 ], [ -78.168746948242188, -10.084584236144963 ], [ -78.168746948242188, -10.083749771118107 ], [ -78.169029235839844, -10.083749771118107 ], [ -78.169029235839844, -10.083471298217773 ], [ -78.168746948242188, -10.083471298217773 ], [ -78.168746948242188, -10.082082748413086 ], [ -78.169029235839844, -10.082082748413086 ], [ -78.169029235839844, -10.081803321838322 ], [ -78.169303894042969, -10.081803321838322 ], [ -78.169303894042969, -10.081249237060547 ], [ -78.169586181640625, -10.081249237060547 ], [ -78.169586181640625, -10.080973625183105 ], [ -78.16986083984375, -10.080970764160156 ], [ -78.16986083984375, -10.080416679382267 ], [ -78.170135498046875, -10.080416679382267 ], [ -78.170135498046875, -10.079304695129395 ], [ -78.170417785644531, -10.079304695129395 ], [ -78.170417785644531, -10.077917098998967 ], [ -78.170692443847599, -10.077917098998967 ], [ -78.170692443847599, -10.076526641845646 ], [ -78.170974731445256, -10.076526641845646 ], [ -78.170974731445256, -10.075693130493164 ], [ -78.171249389648381, -10.075693130493164 ], [ -78.171249389648381, -10.075139045715275 ], [ -78.171524047851506, -10.075139045715275 ], [ -78.171524047851506, -10.07458305358881 ], [ -78.171806335449219, -10.07458305358881 ], [ -78.171806335449219, -10.074027061462346 ], [ -78.172080993652344, -10.074027061462346 ], [ -78.172080993652344, -10.073471069335881 ], [ -78.17236328125, -10.073471069335881 ], [ -78.17236328125, -10.072916984558105 ], [ -78.172637939453125, -10.072916984558105 ], [ -78.172637939453125, -10.072360992431641 ], [ -78.172920227050781, -10.072360992431641 ], [ -78.172920227050781, -10.071805000305119 ], [ -78.173194885253906, -10.071805000305119 ], [ -78.173194885253906, -10.071248054504395 ], [ -78.173751831054574, -10.071250915527344 ], [ -78.173751831054574, -10.07097339630127 ], [ -78.174026489257756, -10.07097339630127 ], [ -78.174026489257756, -10.070417404174805 ], [ -78.174308776855412, -10.070417404174805 ], [ -78.174308776855412, -10.070138931274414 ], [ -78.174858093261719, -10.070138931274414 ], [ -78.174858093261719, -10.069860458374023 ], [ -78.176528930664062, -10.069860458374023 ], [ -78.176528930664062, -10.067915916442814 ], [ -78.176803588867074, -10.067915916442814 ], [ -78.176803588867074, -10.068194389343262 ], [ -78.177085876464787, -10.068194389343262 ], [ -78.177085876464787, -10.068471908569279 ], [ -78.179031372070312, -10.068471908569279 ], [ -78.179031372070312, -10.068194389343262 ], [ -78.179306030273438, -10.068194389343262 ], [ -78.179306030273438, -10.067915916442814 ], [ -78.179580688476562, -10.067915916442814 ], [ -78.179580688476562, -10.067084312438908 ], [ -78.179862976074219, -10.067084312438908 ], [ -78.179862976074219, -10.066805839538574 ], [ -78.179306030273438, -10.066805839538574 ], [ -78.179306030273438, -10.066528320312443 ], [ -78.178749084472656, -10.066528320312443 ], [ -78.178749084472656, -10.066249847412053 ], [ -78.178192138671875, -10.066249847412053 ], [ -78.178192138671875, -10.065972328185978 ], [ -78.177085876464787, -10.065972328185978 ], [ -78.177085876464787, -10.066249847412053 ], [ -78.175971984863281, -10.066249847412053 ], [ -78.175971984863281, -10.065693855285588 ], [ -78.175697326660156, -10.065693855285588 ], [ -78.175697326660156, -10.065416336059513 ], [ -78.1754150390625, -10.065416336059513 ], [ -78.1754150390625, -10.064862251281738 ], [ -78.175140380859375, -10.064862251281738 ], [ -78.175140380859375, -10.064583778381348 ], [ -78.174858093261719, -10.064583778381348 ], [ -78.174858093261719, -10.064027786254883 ], [ -78.174583435058537, -10.064027786254883 ], [ -78.174583435058537, -10.063750267028695 ], [ -78.174308776855412, -10.063750267028695 ], [ -78.174308776855412, -10.063194274902287 ], [ -78.174026489257756, -10.063194274902287 ], [ -78.174026489257756, -10.062915802001839 ], [ -78.173751831054574, -10.062915802001839 ], [ -78.173751831054574, -10.062638282775822 ], [ -78.173469543457031, -10.062640190124512 ], [ -78.173469543457031, -10.062359809875431 ], [ -78.173194885253906, -10.062359809875431 ], [ -78.173194885253906, -10.062082290649357 ], [ -78.172920227050781, -10.062084197998047 ], [ -78.172920227050781, -10.060137748718262 ], [ -78.173194885253906, -10.060137748718262 ], [ -78.173194885253906, -10.059027671813965 ], [ -78.173469543457031, -10.059027671813965 ], [ -78.173469543457031, -10.058747291564941 ], [ -78.173751831054574, -10.058747291564941 ], [ -78.173751831054574, -10.057637214660645 ], [ -78.174026489257756, -10.057637214660645 ], [ -78.174026489257756, -10.05708122253418 ], [ -78.174583435058537, -10.057084083557129 ], [ -78.174583435058537, -10.056805610656681 ], [ -78.174858093261719, -10.056805610656681 ], [ -78.174858093261719, -10.056528091430664 ], [ -78.175140380859375, -10.056528091430664 ], [ -78.175140380859375, -10.0562486648559 ], [ -78.175697326660156, -10.0562486648559 ], [ -78.175697326660156, -10.055971145629826 ], [ -78.175971984863281, -10.055971145629826 ], [ -78.175971984863281, -10.055695533752441 ], [ -78.176246643066406, -10.055695533752441 ], [ -78.176246643066406, -10.05513954162592 ], [ -78.175971984863281, -10.05513954162592 ], [ -78.175971984863281, -10.053749084472599 ], [ -78.176246643066406, -10.053749084472599 ], [ -78.176246643066406, -10.053473472595215 ], [ -78.176528930664062, -10.053473472595215 ], [ -78.176528930664062, -10.053193092346135 ], [ -78.176803588867074, -10.053193092346135 ], [ -78.176803588867074, -10.05263710021967 ], [ -78.177085876464787, -10.05263710021967 ], [ -78.177085876464787, -10.052916526794434 ], [ -78.178192138671875, -10.052916526794434 ], [ -78.178192138671875, -10.05152702331543 ], [ -78.177635192871037, -10.05152702331543 ], [ -78.177635192871037, -10.051251411437988 ], [ -78.177360534667912, -10.051251411437988 ], [ -78.177360534667912, -10.050695419311523 ], [ -78.177085876464787, -10.050695419311523 ], [ -78.177085876464787, -10.049860954284668 ], [ -78.176803588867074, -10.049860954284668 ], [ -78.176803588867074, -10.048748970031738 ], [ -78.176528930664062, -10.048748970031738 ], [ -78.176528930664062, -10.048473358154297 ], [ -78.176246643066406, -10.048473358154297 ], [ -78.176246643066406, -10.047917366027832 ], [ -78.176803588867074, -10.047917366027832 ], [ -78.176803588867074, -10.046805381774902 ], [ -78.176528930664062, -10.046805381774902 ], [ -78.176528930664062, -10.043750762939453 ], [ -78.176803588867074, -10.043750762939453 ], [ -78.176803588867074, -10.043194770812931 ], [ -78.177085876464787, -10.043194770812931 ], [ -78.177085876464787, -10.042917251586857 ], [ -78.177360534667912, -10.042917251586857 ], [ -78.177360534667912, -10.042637825012207 ], [ -78.177635192871037, -10.042637825012207 ], [ -78.177635192871037, -10.042360305786076 ], [ -78.177917480468693, -10.042360305786076 ], [ -78.177917480468693, -10.042084693908691 ], [ -78.178192138671875, -10.042084693908691 ], [ -78.178192138671875, -10.041804313659611 ], [ -78.178474426269531, -10.041804313659611 ], [ -78.178474426269531, -10.041528701782227 ], [ -78.178749084472656, -10.041528701782227 ], [ -78.178749084472656, -10.040971755981445 ], [ -78.179031372070312, -10.040971755981445 ], [ -78.179031372070312, -10.040694236755371 ], [ -78.179306030273438, -10.040694236755371 ], [ -78.179306030273438, -10.04041576385498 ], [ -78.179580688476562, -10.04041576385498 ], [ -78.179580688476562, -10.040138244628906 ], [ -78.179862976074219, -10.040138244628906 ], [ -78.179862976074219, -10.039859771728516 ], [ -78.180137634277287, -10.039859771728516 ], [ -78.180137634277287, -10.039028167724609 ], [ -78.180419921874943, -10.039028167724609 ], [ -78.180419921874943, -10.038472175598145 ], [ -78.181808471679688, -10.038472175598145 ], [ -78.181808471679688, -10.0370836257934 ], [ -78.181526184082031, -10.0370836257934 ], [ -78.181526184082031, -10.036527633666935 ], [ -78.182357788085938, -10.036527633666935 ], [ -78.182357788085938, -10.036250114440861 ], [ -78.182640075683594, -10.036250114440861 ], [ -78.182640075683594, -10.03486156463623 ], [ -78.182914733886719, -10.034859657287598 ], [ -78.182914733886719, -10.033749580383244 ], [ -78.183197021484375, -10.033749580383244 ], [ -78.183197021484375, -10.033193588256779 ], [ -78.183471679687443, -10.033193588256779 ], [ -78.183471679687443, -10.032637596130314 ], [ -78.183746337890568, -10.032637596130314 ], [ -78.183746337890568, -10.032360076904297 ], [ -78.184028625488224, -10.03236198425293 ], [ -78.184028625488224, -10.032084465026799 ], [ -78.184303283691349, -10.032084465026799 ], [ -78.184303283691349, -10.031528472900334 ], [ -78.184585571289062, -10.031528472900334 ], [ -78.184585571289062, -10.03125 ], [ -78.184860229492188, -10.03125 ], [ -78.184860229492188, -10.030971527099609 ], [ -78.185142517089844, -10.030971527099609 ], [ -78.185142517089844, -10.030694007873478 ], [ -78.185417175292969, -10.030694007873478 ], [ -78.185417175292969, -10.030414581298828 ], [ -78.185691833496094, -10.030414581298828 ], [ -78.185691833496094, -10.030137062072754 ], [ -78.18597412109375, -10.030139923095703 ], [ -78.18597412109375, -10.029862403869629 ], [ -78.186248779296875, -10.029862403869629 ], [ -78.186248779296875, -10.029581069946232 ], [ -78.186531066894418, -10.029583930969238 ], [ -78.186531066894418, -10.029306411743164 ], [ -78.186805725097599, -10.029306411743164 ], [ -78.186805725097599, -10.029026985168457 ], [ -78.187080383300724, -10.029026985168457 ], [ -78.187080383300724, -10.028749465942383 ], [ -78.187362670898381, -10.028749465942383 ], [ -78.187362670898381, -10.028470993041992 ], [ -78.187637329101562, -10.028470993041992 ], [ -78.187637329101562, -10.027915000915527 ], [ -78.187919616699219, -10.027917861938477 ], [ -78.187919616699219, -10.027639389038086 ], [ -78.188194274902344, -10.027639389038086 ], [ -78.188194274902344, -10.027359008789062 ], [ -78.189582824706918, -10.027360916137638 ], [ -78.189582824706918, -10.027083396911621 ], [ -78.190139770507756, -10.027083396911621 ], [ -78.190139770507756, -10.027360916137638 ], [ -78.190414428710881, -10.027359008789062 ], [ -78.190414428710881, -10.027639389038086 ], [ -78.190696716308537, -10.027639389038086 ], [ -78.190696716308537, -10.027359008789062 ], [ -78.192085266113281, -10.027360916137638 ], [ -78.192085266113281, -10.027083396911621 ], [ -78.192359924316406, -10.027083396911621 ], [ -78.192359924316406, -10.025973320007267 ], [ -78.192642211914062, -10.025973320007267 ], [ -78.192642211914062, -10.024305343627873 ], [ -78.192085266113281, -10.024305343627873 ], [ -78.192085266113281, -10.024026870727482 ], [ -78.190971374511719, -10.024026870727482 ], [ -78.190971374511719, -10.023751258850098 ], [ -78.190696716308537, -10.023751258850098 ], [ -78.190696716308537, -10.023470878601017 ], [ -78.189857482910099, -10.023470878601017 ], [ -78.189857482910099, -10.023195266723519 ], [ -78.189582824706918, -10.023195266723519 ], [ -78.189582824706918, -10.022639274597111 ], [ -78.189308166503906, -10.022639274597111 ], [ -78.189308166503906, -10.021804809570256 ], [ -78.189582824706918, -10.021804809570256 ], [ -78.189582824706918, -10.021529197692871 ], [ -78.190139770507756, -10.021527290344181 ], [ -78.190139770507756, -10.021248817443791 ], [ -78.190414428710881, -10.021248817443791 ], [ -78.190414428710881, -10.020694732666016 ], [ -78.190696716308537, -10.020694732666016 ], [ -78.190696716308537, -10.020138740539551 ], [ -78.191253662109375, -10.020138740539551 ], [ -78.191253662109375, -10.019861221313477 ], [ -78.1915283203125, -10.019861221313477 ], [ -78.1915283203125, -10.019582748413086 ], [ -78.192619323730412, -10.019582748413086 ], [ -78.192916870117131, -10.019582748413086 ], [ -78.192916870117131, -10.020417213439941 ], [ -78.193191528320256, -10.020415306091309 ], [ -78.193191528320256, -10.021184921264592 ], [ -78.193473815917912, -10.021248817443791 ], [ -78.193473815917912, -10.021527290344181 ], [ -78.193748474121037, -10.021529197692871 ], [ -78.193748474121037, -10.021804809570256 ], [ -78.194305419921875, -10.021804809570256 ], [ -78.194305419921875, -10.021529197692871 ], [ -78.194862365722656, -10.021527290344181 ], [ -78.194862365722656, -10.020973205566406 ], [ -78.195137023925781, -10.020975112914982 ], [ -78.195137023925781, -10.020415306091309 ], [ -78.195419311523438, -10.020417213439941 ], [ -78.195419311523438, -10.020138740539551 ], [ -78.196807861328068, -10.020138740539551 ], [ -78.196807861328068, -10.019305229186955 ], [ -78.197082519531193, -10.019305229186955 ], [ -78.197082519531193, -10.019026756286621 ], [ -78.197639465332031, -10.019026756286621 ], [ -78.197639465332031, -10.01874923706049 ], [ -78.197914123535156, -10.01875114440918 ], [ -78.197914123535156, -10.018472671508789 ], [ -78.197639465332031, -10.018472671508789 ], [ -78.197639465332031, -10.018192291259766 ], [ -78.197082519531193, -10.018195152282715 ], [ -78.197082519531193, -10.017916679382324 ], [ -78.196250915527287, -10.017916679382324 ], [ -78.196250915527287, -10.018195152282715 ], [ -78.195419311523438, -10.018195152282715 ], [ -78.195419311523438, -10.017916679382324 ], [ -78.195137023925781, -10.017916679382324 ], [ -78.195137023925781, -10.017360687255859 ], [ -78.195419311523438, -10.017360687255859 ], [ -78.195419311523438, -10.017083168029785 ], [ -78.195693969726562, -10.017083168029785 ], [ -78.195693969726562, -10.016526222229004 ], [ -78.195968627929631, -10.016529083251953 ], [ -78.195968627929631, -10.015694618225098 ], [ -78.196250915527287, -10.015694618225098 ], [ -78.196250915527287, -10.01402759552002 ], [ -78.196807861328068, -10.01402759552002 ], [ -78.196807861328068, -10.013471603393555 ], [ -78.197082519531193, -10.013471603393555 ], [ -78.197082519531193, -10.013192176818848 ], [ -78.197914123535156, -10.013192176818848 ], [ -78.197914123535156, -10.012638092040959 ], [ -78.198196411132812, -10.012638092040959 ], [ -78.198196411132812, -10.012082099914494 ], [ -78.197914123535156, -10.012082099914494 ], [ -78.197914123535156, -10.011249542236328 ], [ -78.197639465332031, -10.011249542236328 ], [ -78.197639465332031, -10.010693550109863 ], [ -78.197364807128906, -10.010693550109863 ], [ -78.197364807128906, -10.010137557983398 ], [ -78.197082519531193, -10.010137557983398 ], [ -78.197082519531193, -10.009860038757267 ], [ -78.196525573730412, -10.009860038757267 ], [ -78.196525573730412, -10.009305953979492 ], [ -78.196807861328068, -10.009305953979492 ], [ -78.196807861328068, -10.008749961853027 ], [ -78.197082519531193, -10.008749961853027 ], [ -78.197082519531193, -10.008193969726562 ], [ -78.197364807128906, -10.008193969726562 ], [ -78.197364807128906, -10.007362365722656 ], [ -78.197639465332031, -10.007362365722656 ], [ -78.197639465332031, -10.006527900695801 ], [ -78.197364807128906, -10.006527900695801 ], [ -78.197364807128906, -10.006250381469727 ], [ -78.197082519531193, -10.006250381469727 ], [ -78.197082519531193, -10.005694389343262 ], [ -78.196807861328068, -10.005694389343262 ], [ -78.196807861328068, -10.004305839538517 ], [ -78.196525573730412, -10.004305839538517 ], [ -78.196525573730412, -10.003472328186035 ], [ -78.195968627929631, -10.003472328186035 ], [ -78.195968627929631, -10.002915382385254 ], [ -78.195693969726562, -10.002915382385254 ], [ -78.195693969726562, -10.002362251281681 ], [ -78.195419311523438, -10.002362251281681 ], [ -78.195419311523438, -10.002083778381291 ], [ -78.194305419921875, -10.002083778381291 ], [ -78.194305419921875, -10.000970840454045 ], [ -78.194580078125, -10.000970840454045 ], [ -78.194580078125, -10.000139236450195 ], [ -78.194580078125, -9.999860763549805 ], [ -78.194862365722656, -9.999860763549805 ], [ -78.194862365722656, -9.99958324432373 ], [ -78.195137023925781, -9.99958324432373 ], [ -78.195137023925781, -9.99930477142334 ], [ -78.195419311523438, -9.99930477142334 ], [ -78.195419311523438, -9.998748779296875 ], [ -78.195693969726562, -9.998748779296875 ], [ -78.195693969726562, -9.997638702392578 ], [ -78.196807861328068, -9.997638702392578 ], [ -78.196807861328068, -9.997359275817814 ], [ -78.197639465332031, -9.997361183166504 ], [ -78.197639465332031, -9.997082710266113 ], [ -78.197914123535156, -9.997082710266113 ], [ -78.197914123535156, -9.996803283691349 ], [ -78.198196411132812, -9.996803283691349 ], [ -78.198196411132812, -9.996249198913574 ], [ -78.197914123535156, -9.99625110626215 ], [ -78.197914123535156, -9.995416641235295 ], [ -78.197364807128906, -9.995416641235295 ], [ -78.197364807128906, -9.995139122009277 ], [ -78.197082519531193, -9.995139122009277 ], [ -78.197082519531193, -9.99486064910883 ], [ -78.197364807128906, -9.99486064910883 ], [ -78.197364807128906, -9.994583129882812 ], [ -78.197639465332031, -9.994583129882812 ], [ -78.197639465332031, -9.994027137756348 ], [ -78.198196411132812, -9.994027137756348 ], [ -78.198196411132812, -9.994304656982422 ], [ -78.200416564941406, -9.994304656982422 ], [ -78.200416564941406, -9.995139122009277 ], [ -78.200691223144531, -9.995139122009277 ], [ -78.200691223144531, -9.99486064910883 ], [ -78.201530456542969, -9.99486064910883 ], [ -78.201530456542969, -9.995416641235295 ], [ -78.202362060546761, -9.995416641235295 ], [ -78.202362060546761, -9.995695114135685 ], [ -78.202636718749943, -9.995695114135685 ], [ -78.202636718749943, -9.99486064910883 ], [ -78.202362060546761, -9.99486064910883 ], [ -78.202362060546761, -9.994304656982422 ], [ -78.202636718749943, -9.994304656982422 ], [ -78.202636718749943, -9.993748664855957 ], [ -78.202919006347599, -9.993748664855957 ], [ -78.202919006347599, -9.992917060851994 ], [ -78.202636718749943, -9.992917060851994 ], [ -78.202636718749943, -9.992638587951603 ], [ -78.201805114746094, -9.992638587951603 ], [ -78.201805114746094, -9.992361068725529 ], [ -78.201248168945312, -9.992361068725529 ], [ -78.201248168945312, -9.991805076599121 ], [ -78.201530456542969, -9.991805076599121 ], [ -78.201530456542969, -9.991249084472656 ], [ -78.201805114746094, -9.991249084472656 ], [ -78.201805114746094, -9.990692138671818 ], [ -78.201530456542969, -9.990692138671818 ], [ -78.201530456542969, -9.987915992736816 ], [ -78.201805114746094, -9.987915992736816 ], [ -78.201805114746094, -9.987638473510742 ], [ -78.202079772949219, -9.987638473510742 ], [ -78.202079772949219, -9.987360000610352 ], [ -78.202362060546761, -9.987360000610352 ], [ -78.202362060546761, -9.987085342407227 ], [ -78.202636718749943, -9.987085342407227 ], [ -78.202636718749943, -9.986804008483887 ], [ -78.202919006347599, -9.986805915832463 ], [ -78.202919006347599, -9.986528396606445 ], [ -78.203193664550724, -9.986528396606445 ], [ -78.203193664550724, -9.982915878295842 ], [ -78.201805114746094, -9.982915878295842 ], [ -78.201805114746094, -9.982640266418343 ], [ -78.201210021972599, -9.982640266418343 ], [ -78.200973510742188, -9.982640266418343 ], [ -78.200973510742188, -9.982359886169434 ], [ -78.200843811035156, -9.982359886169434 ], [ -78.200416564941406, -9.982359886169434 ], [ -78.200416564941406, -9.982084274291935 ], [ -78.2005615234375, -9.982084274291935 ], [ -78.200691223144531, -9.982084274291935 ], [ -78.200691223144531, -9.981528282165471 ], [ -78.202079772949219, -9.981528282165471 ], [ -78.202079772949219, -9.981805801391488 ], [ -78.202919006347599, -9.981805801391488 ], [ -78.202919006347599, -9.980693817138615 ], [ -78.203193664550724, -9.980693817138615 ], [ -78.203193664550724, -9.98013782501215 ], [ -78.203475952148381, -9.98013782501215 ], [ -78.203475952148381, -9.979860305786133 ], [ -78.203750610351562, -9.979862213134766 ], [ -78.203750610351562, -9.979583740234375 ], [ -78.204864501953125, -9.979583740234375 ], [ -78.204864501953125, -9.980416297912541 ], [ -78.204582214355469, -9.980416297912541 ], [ -78.204582214355469, -9.980693817138615 ], [ -78.204025268554688, -9.980693817138615 ], [ -78.204025268554688, -9.981528282165471 ], [ -78.204307556152344, -9.981528282165471 ], [ -78.204307556152344, -9.982084274291935 ], [ -78.205696105956974, -9.982084274291935 ], [ -78.205696105956974, -9.981528282165471 ], [ -78.205970764160099, -9.981528282165471 ], [ -78.205970764160099, -9.98124980926508 ], [ -78.206802368164062, -9.98124980926508 ], [ -78.206802368164062, -9.980972290039006 ], [ -78.207084655761719, -9.980972290039006 ], [ -78.207084655761719, -9.980693817138615 ], [ -78.2076416015625, -9.980693817138615 ], [ -78.2076416015625, -9.980416297912541 ], [ -78.207916259765625, -9.980416297912541 ], [ -78.207916259765625, -9.98013782501215 ], [ -78.20819091796875, -9.98013782501215 ], [ -78.20819091796875, -9.979306221008301 ], [ -78.208473205566406, -9.979306221008301 ], [ -78.208473205566406, -9.978471755981445 ], [ -78.208747863769474, -9.978471755981445 ], [ -78.208747863769474, -9.978194236755314 ], [ -78.209304809570256, -9.978194236755314 ], [ -78.209304809570256, -9.977915763854924 ], [ -78.209587097167912, -9.977915763854924 ], [ -78.209587097167912, -9.976249694824219 ], [ -78.209861755371037, -9.976249694824219 ], [ -78.209861755371037, -9.97569561004633 ], [ -78.210136413574219, -9.97569561004633 ], [ -78.210136413574219, -9.975139617919922 ], [ -78.210418701171875, -9.975139617919922 ], [ -78.210418701171875, -9.974582672119084 ], [ -78.210693359375, -9.974582672119084 ], [ -78.210693359375, -9.974303245544434 ], [ -78.210975646972656, -9.974305152893066 ], [ -78.210975646972656, -9.974026679992619 ], [ -78.211250305175781, -9.974026679992619 ], [ -78.211250305175781, -9.973473548889103 ], [ -78.211524963378906, -9.973473548889103 ], [ -78.211524963378906, -9.972916603088379 ], [ -78.211250305175781, -9.972916603088379 ], [ -78.211250305175781, -9.972637176513672 ], [ -78.210975646972656, -9.972639083862248 ], [ -78.210975646972656, -9.972360610961857 ], [ -78.210693359375, -9.972360610961857 ], [ -78.210693359375, -9.971804618835392 ], [ -78.210418701171875, -9.971804618835392 ], [ -78.210418701171875, -9.971527099609318 ], [ -78.210136413574219, -9.971527099609318 ], [ -78.210136413574219, -9.970971107482853 ], [ -78.209861755371037, -9.970971107482853 ], [ -78.209861755371037, -9.970415115356445 ], [ -78.209587097167912, -9.970417022705078 ], [ -78.209587097167912, -9.967917442321777 ], [ -78.209861755371037, -9.967917442321777 ], [ -78.209861755371037, -9.967361450195312 ], [ -78.210136413574219, -9.967361450195312 ], [ -78.210136413574219, -9.966805458068791 ], [ -78.210418701171875, -9.966805458068791 ], [ -78.210418701171875, -9.966526985168457 ], [ -78.210975646972656, -9.96652889251709 ], [ -78.210975646972656, -9.966251373291016 ], [ -78.211250305175781, -9.966251373291016 ], [ -78.211250305175781, -9.965970993041935 ], [ -78.211524963378906, -9.965972900390625 ], [ -78.211524963378906, -9.965695381164551 ], [ -78.211807250976562, -9.965695381164551 ], [ -78.211807250976562, -9.96541690826416 ], [ -78.212081909179631, -9.96541690826416 ], [ -78.212081909179631, -9.965139389038086 ], [ -78.212364196777287, -9.965139389038086 ], [ -78.212364196777287, -9.964860916137695 ], [ -78.212913513183537, -9.964860916137695 ], [ -78.212913513183537, -9.964583396911621 ], [ -78.213470458984375, -9.964583396911621 ], [ -78.213470458984375, -9.964306831359806 ], [ -78.214302062988281, -9.964306831359806 ], [ -78.214302062988281, -9.964027404785156 ], [ -78.214584350585938, -9.964027404785156 ], [ -78.214584350585938, -9.963473320007324 ], [ -78.215972900390568, -9.963473320007324 ], [ -78.215972900390568, -9.963194847106934 ], [ -78.21624755859375, -9.963194847106934 ], [ -78.21624755859375, -9.962917327880859 ], [ -78.216529846191406, -9.962917327880859 ], [ -78.216529846191406, -9.962638854980469 ], [ -78.217086791992188, -9.962638854980469 ], [ -78.217086791992188, -9.962360382080078 ], [ -78.217361450195312, -9.962360382080078 ], [ -78.217361450195312, -9.962081909179631 ], [ -78.217636108398438, -9.962081909179631 ], [ -78.217636108398438, -9.961528778076115 ], [ -78.217918395996094, -9.961528778076115 ], [ -78.217918395996094, -9.960971832275391 ], [ -78.218193054199105, -9.960971832275391 ], [ -78.218193054199105, -9.960415840148869 ], [ -78.218475341796818, -9.960415840148869 ], [ -78.218475341796818, -9.959859848022404 ], [ -78.219863891601562, -9.959859848022404 ], [ -78.219863891601562, -9.960138320922795 ], [ -78.220138549804688, -9.960138320922795 ], [ -78.220138549804688, -9.960415840148869 ], [ -78.221801757812443, -9.960415840148869 ], [ -78.221801757812443, -9.960138320922795 ], [ -78.222084045410099, -9.960138320922795 ], [ -78.222084045410099, -9.959859848022404 ], [ -78.222640991210881, -9.959859848022404 ], [ -78.222640991210881, -9.95958232879633 ], [ -78.222915649414062, -9.95958232879633 ], [ -78.222915649414062, -9.959305763244629 ], [ -78.223472595214844, -9.959305763244629 ], [ -78.223472595214844, -9.959028244018555 ], [ -78.223747253417969, -9.959028244018555 ], [ -78.223747253417969, -9.958749771118164 ], [ -78.223197937011719, -9.958749771118164 ], [ -78.223197937011719, -9.957916259765511 ], [ -78.223747253417969, -9.957916259765511 ], [ -78.223747253417969, -9.958193778991699 ], [ -78.224861145019474, -9.958193778991699 ], [ -78.224861145019474, -9.95847225189209 ], [ -78.225692749023381, -9.95847225189209 ], [ -78.225692749023381, -9.958193778991699 ], [ -78.227081298828125, -9.958193778991699 ], [ -78.227081298828125, -9.957637786865234 ], [ -78.227363586425781, -9.957637786865234 ], [ -78.227363586425781, -9.956527709960938 ], [ -78.227638244628906, -9.956527709960938 ], [ -78.227638244628906, -9.955694198608398 ], [ -78.227912902831974, -9.955694198608398 ], [ -78.227912902831974, -9.95514011383051 ], [ -78.225975036621094, -9.95514011383051 ], [ -78.225975036621094, -9.954584121704102 ], [ -78.227638244628906, -9.954584121704102 ], [ -78.227638244628906, -9.954305648803654 ], [ -78.228195190429631, -9.954305648803654 ], [ -78.228195190429631, -9.954028129577637 ], [ -78.228752136230412, -9.954028129577637 ], [ -78.228752136230412, -9.953749656677246 ], [ -78.229026794433594, -9.953749656677246 ], [ -78.229026794433594, -9.953470230102482 ], [ -78.2298583984375, -9.953470230102482 ], [ -78.2298583984375, -9.954028129577637 ], [ -78.230415344238281, -9.954028129577637 ], [ -78.230415344238281, -9.953749656677246 ], [ -78.230697631835938, -9.953749656677246 ], [ -78.230697631835938, -9.953193664550781 ], [ -78.230972290038949, -9.953193664550781 ], [ -78.230972290038949, -9.952916145324707 ], [ -78.231529235839787, -9.952918052673283 ], [ -78.231529235839787, -9.952637672424316 ], [ -78.232086181640568, -9.952637672424316 ], [ -78.232086181640568, -9.952918052673283 ], [ -78.232635498046875, -9.952918052673283 ], [ -78.232635498046875, -9.952637672424316 ], [ -78.232917785644531, -9.952637672424316 ], [ -78.232917785644531, -9.952083587646428 ], [ -78.234580993652287, -9.952083587646428 ], [ -78.234580993652287, -9.951527595519963 ], [ -78.234863281249943, -9.951527595519963 ], [ -78.234863281249943, -9.950971603393498 ], [ -78.235137939453068, -9.950971603393498 ], [ -78.235137939453068, -9.950137138366642 ], [ -78.234863281249943, -9.950137138366642 ], [ -78.234863281249943, -9.949581146240234 ], [ -78.235137939453068, -9.949584007263127 ], [ -78.235137939453068, -9.949305534362736 ], [ -78.234863281249943, -9.949305534362736 ], [ -78.234863281249943, -9.949028015136662 ], [ -78.234306335449162, -9.949028015136662 ], [ -78.234306335449162, -9.948748588562012 ], [ -78.233749389648438, -9.948748588562012 ], [ -78.233749389648438, -9.948471069335881 ], [ -78.232917785644531, -9.948471069335881 ], [ -78.232917785644531, -9.948748588562012 ], [ -78.231803894042912, -9.948748588562012 ], [ -78.231803894042912, -9.948471069335881 ], [ -78.231529235839787, -9.948471069335881 ], [ -78.231529235839787, -9.948192596435547 ], [ -78.231246948242131, -9.948192596435547 ], [ -78.231246948242131, -9.947915077209416 ], [ -78.230697631835938, -9.947917938232422 ], [ -78.230697631835938, -9.947640419006234 ], [ -78.230415344238281, -9.947640419006234 ], [ -78.230415344238281, -9.947359085082951 ], [ -78.230140686035156, -9.947360992431641 ], [ -78.230140686035156, -9.945417404174805 ], [ -78.230415344238281, -9.945417404174805 ], [ -78.230415344238281, -9.94486141204834 ], [ -78.230697631835938, -9.94486141204834 ], [ -78.230697631835938, -9.944305419921875 ], [ -78.230972290038949, -9.944305419921875 ], [ -78.230972290038949, -9.944026947021484 ], [ -78.231246948242131, -9.944026947021484 ], [ -78.231246948242131, -9.943751335143986 ], [ -78.232917785644531, -9.943751335143986 ], [ -78.232917785644531, -9.94347095489502 ], [ -78.233192443847656, -9.94347095489502 ], [ -78.233192443847656, -9.943195343017521 ], [ -78.233474731445312, -9.943195343017521 ], [ -78.233474731445312, -9.942639350891113 ], [ -78.233749389648438, -9.942639350891113 ], [ -78.233749389648438, -9.941248893737793 ], [ -78.23236083984375, -9.941248893737793 ], [ -78.23236083984375, -9.941527366638184 ], [ -78.231803894042912, -9.941527366638184 ], [ -78.231803894042912, -9.941693305969181 ], [ -78.231803894042912, -9.941804885864258 ], [ -78.231529235839787, -9.941804885864258 ], [ -78.231529235839787, -9.942083358764648 ], [ -78.23089599609375, -9.942083358764648 ], [ -78.2298583984375, -9.942083358764648 ], [ -78.2298583984375, -9.941804885864258 ], [ -78.229583740234375, -9.941804885864258 ], [ -78.229583740234375, -9.941248893737793 ], [ -78.227912902831974, -9.941248893737793 ], [ -78.227912902831974, -9.940973281860295 ], [ -78.227638244628906, -9.940973281860295 ], [ -78.227638244628906, -9.940694808959904 ], [ -78.227363586425781, -9.940694808959904 ], [ -78.227363586425781, -9.94041728973383 ], [ -78.227912902831974, -9.94041728973383 ], [ -78.227912902831974, -9.940138816833439 ], [ -78.227638244628906, -9.940138816833439 ], [ -78.227638244628906, -9.939582824706974 ], [ -78.227081298828125, -9.939582824706974 ], [ -78.227081298828125, -9.938751220703125 ], [ -78.227363586425781, -9.938751220703125 ], [ -78.227363586425781, -9.937083244323674 ], [ -78.227081298828125, -9.937083244323674 ], [ -78.227081298828125, -9.936526298522892 ], [ -78.226806640625, -9.936529159545898 ], [ -78.226806640625, -9.935694694519043 ], [ -78.226524353027344, -9.935694694519043 ], [ -78.226524353027344, -9.935137748718262 ], [ -78.226249694824219, -9.935137748718262 ], [ -78.226249694824219, -9.934304237365723 ], [ -78.225975036621094, -9.934304237365723 ], [ -78.225975036621094, -9.933748245239258 ], [ -78.226249694824219, -9.933750152587891 ], [ -78.226249694824219, -9.933194160461426 ], [ -78.226524353027344, -9.933194160461426 ], [ -78.226524353027344, -9.932638168334961 ], [ -78.226806640625, -9.932638168334961 ], [ -78.226806640625, -9.932082176208496 ], [ -78.227081298828125, -9.932082176208496 ], [ -78.227081298828125, -9.931805610656681 ], [ -78.227363586425781, -9.931805610656681 ], [ -78.227363586425781, -9.931526184082031 ], [ -78.227638244628906, -9.931528091430607 ], [ -78.227638244628906, -9.931249618530217 ], [ -78.227912902831974, -9.931249618530217 ], [ -78.227912902831974, -9.930972099304142 ], [ -78.228195190429631, -9.930972099304142 ], [ -78.228195190429631, -9.930416107177678 ], [ -78.227912902831974, -9.930416107177678 ], [ -78.227912902831974, -9.92986011505127 ], [ -78.228469848632756, -9.92986011505127 ], [ -78.228469848632756, -9.929583549499512 ], [ -78.229026794433594, -9.929583549499512 ], [ -78.229026794433594, -9.928750038146916 ], [ -78.229583740234375, -9.928750038146916 ], [ -78.229583740234375, -9.927638053893986 ], [ -78.22930908203125, -9.927639961242676 ], [ -78.22930908203125, -9.927362442016602 ], [ -78.228752136230412, -9.927362442016602 ], [ -78.228752136230412, -9.926806449890137 ], [ -78.227638244628906, -9.926806449890137 ], [ -78.227638244628906, -9.927083969116211 ], [ -78.227363586425781, -9.927082061767521 ], [ -78.227363586425781, -9.927362442016602 ], [ -78.226249694824219, -9.927362442016602 ], [ -78.226249694824219, -9.927082061767521 ], [ -78.225975036621094, -9.927082061767521 ], [ -78.225975036621094, -9.926527976989746 ], [ -78.225692749023381, -9.926527976989746 ], [ -78.225692749023381, -9.926250457763615 ], [ -78.224586486816406, -9.926250457763615 ], [ -78.224586486816406, -9.92430591583252 ], [ -78.224861145019474, -9.92430591583252 ], [ -78.224861145019474, -9.923195838928166 ], [ -78.225135803222599, -9.923195838928166 ], [ -78.225135803222599, -9.922636985778809 ], [ -78.225418090820256, -9.922639846801758 ], [ -78.225418090820256, -9.921806335449219 ], [ -78.225692749023381, -9.921806335449219 ], [ -78.225692749023381, -9.921249389648438 ], [ -78.225975036621094, -9.921249389648438 ], [ -78.225975036621094, -9.920693397521973 ], [ -78.226249694824219, -9.920693397521973 ], [ -78.226249694824219, -9.920417785644474 ], [ -78.226524353027344, -9.920417785644474 ], [ -78.226524353027344, -9.919860839843693 ], [ -78.226806640625, -9.919860839843693 ], [ -78.226806640625, -9.919304847717228 ], [ -78.227081298828125, -9.919304847717228 ], [ -78.227081298828125, -9.918748855590763 ], [ -78.227363586425781, -9.918748855590763 ], [ -78.227363586425781, -9.918194770812988 ], [ -78.227638244628906, -9.918194770812988 ], [ -78.227638244628906, -9.917917251586914 ], [ -78.227912902831974, -9.917917251586914 ], [ -78.227912902831974, -9.917638778686523 ], [ -78.229026794433594, -9.917638778686523 ], [ -78.229026794433594, -9.917917251586914 ], [ -78.22930908203125, -9.917917251586914 ], [ -78.22930908203125, -9.918194770812988 ], [ -78.2298583984375, -9.918194770812988 ], [ -78.2298583984375, -9.917917251586914 ], [ -78.230140686035156, -9.917917251586914 ], [ -78.230140686035156, -9.917638778686523 ], [ -78.230415344238281, -9.917638778686523 ], [ -78.230415344238281, -9.917082786560059 ], [ -78.231246948242131, -9.917082786560059 ], [ -78.231246948242131, -9.917638778686523 ], [ -78.231529235839787, -9.917638778686523 ], [ -78.231529235839787, -9.917917251586914 ], [ -78.231803894042912, -9.917917251586914 ], [ -78.231803894042912, -9.918194770812988 ], [ -78.232086181640568, -9.918194770812988 ], [ -78.232086181640568, -9.918471336364689 ], [ -78.23236083984375, -9.918471336364689 ], [ -78.23236083984375, -9.918748855590763 ], [ -78.232635498046875, -9.918748855590763 ], [ -78.232635498046875, -9.917638778686523 ], [ -78.23236083984375, -9.917638778686523 ], [ -78.23236083984375, -9.917082786560059 ], [ -78.232086181640568, -9.917082786560059 ], [ -78.232086181640568, -9.916805267333928 ], [ -78.231803894042912, -9.916805267333928 ], [ -78.231803894042912, -9.91652679443348 ], [ -78.231246948242131, -9.91652679443348 ], [ -78.231246948242131, -9.916249275207463 ], [ -78.230972290038949, -9.916251182556152 ], [ -78.230972290038949, -9.915972709655762 ], [ -78.230697631835938, -9.915970802307072 ], [ -78.230697631835938, -9.915693283080998 ], [ -78.230415344238281, -9.915695190429688 ], [ -78.230415344238281, -9.914860725402832 ], [ -78.230140686035156, -9.914860725402832 ], [ -78.230140686035156, -9.914304733276367 ], [ -78.2298583984375, -9.914304733276367 ], [ -78.2298583984375, -9.914029121398926 ], [ -78.229583740234375, -9.914029121398926 ], [ -78.229583740234375, -9.913471221923771 ], [ -78.22930908203125, -9.913473129272461 ], [ -78.22930908203125, -9.91319465637207 ], [ -78.230697631835938, -9.91319465637207 ], [ -78.230697631835938, -9.913473129272461 ], [ -78.231246948242131, -9.913471221923771 ], [ -78.231246948242131, -9.912915229797306 ], [ -78.231529235839787, -9.912915229797306 ], [ -78.231529235839787, -9.91180229187006 ], [ -78.231246948242131, -9.91180229187006 ], [ -78.231246948242131, -9.911249160766602 ], [ -78.231529235839787, -9.911249160766602 ], [ -78.231529235839787, -9.91069221496582 ], [ -78.230972290038949, -9.91069221496582 ], [ -78.230972290038949, -9.910972595214787 ], [ -78.230628967285156, -9.910972595214787 ], [ -78.230140686035156, -9.910972595214787 ], [ -78.230140686035156, -9.91069221496582 ], [ -78.2298583984375, -9.91069507598877 ], [ -78.2298583984375, -9.910416603088322 ], [ -78.22930908203125, -9.910416603088322 ], [ -78.22930908203125, -9.910139083862305 ], [ -78.229026794433594, -9.910139083862305 ], [ -78.229026794433594, -9.909860610961914 ], [ -78.228469848632756, -9.909860610961914 ], [ -78.228469848632756, -9.90958309173584 ], [ -78.228195190429631, -9.90958309173584 ], [ -78.228195190429631, -9.909026145935059 ], [ -78.227912902831974, -9.909026145935059 ], [ -78.227912902831974, -9.908470153808594 ], [ -78.226806640625, -9.908473014831486 ], [ -78.226806640625, -9.908194541931096 ], [ -78.226524353027344, -9.908194541931096 ], [ -78.226524353027344, -9.907637596130371 ], [ -78.226249694824219, -9.907637596130371 ], [ -78.226249694824219, -9.907085418701058 ], [ -78.226524353027344, -9.907085418701058 ], [ -78.226524353027344, -9.905415534973145 ], [ -78.226806640625, -9.905415534973145 ], [ -78.226806640625, -9.904582023620492 ], [ -78.227363586425781, -9.904582023620492 ], [ -78.227363586425781, -9.904862403869629 ], [ -78.227912902831974, -9.904862403869629 ], [ -78.227912902831974, -9.904582023620492 ], [ -78.228195190429631, -9.904582023620492 ], [ -78.228195190429631, -9.904026031494084 ], [ -78.227912902831974, -9.904026031494084 ], [ -78.227912902831974, -9.902915954589844 ], [ -78.227638244628906, -9.902915954589844 ], [ -78.227638244628906, -9.902359962463379 ], [ -78.227912902831974, -9.902359962463379 ], [ -78.227912902831974, -9.902084350585938 ], [ -78.228195190429631, -9.902084350585938 ], [ -78.228195190429631, -9.90180587768549 ], [ -78.228469848632756, -9.90180587768549 ], [ -78.228469848632756, -9.901528358459473 ], [ -78.228752136230412, -9.901528358459473 ], [ -78.228752136230412, -9.901249885559082 ], [ -78.229026794433594, -9.901249885559082 ], [ -78.229026794433594, -9.899583816528263 ], [ -78.22930908203125, -9.899583816528263 ], [ -78.22930908203125, -9.898750305175781 ], [ -78.229583740234375, -9.898750305175781 ], [ -78.229583740234375, -9.898471832275334 ], [ -78.2298583984375, -9.898471832275334 ], [ -78.2298583984375, -9.898194313049316 ], [ -78.230140686035156, -9.898194313049316 ], [ -78.230140686035156, -9.897917747497559 ], [ -78.2298583984375, -9.897917747497559 ], [ -78.2298583984375, -9.897638320922852 ], [ -78.229583740234375, -9.897640228271428 ], [ -78.229583740234375, -9.897361755371094 ], [ -78.22930908203125, -9.897361755371094 ], [ -78.22930908203125, -9.894859313964787 ], [ -78.229583740234375, -9.894862174987793 ], [ -78.229583740234375, -9.894583702087402 ], [ -78.2298583984375, -9.894583702087402 ], [ -78.2298583984375, -9.894305229187012 ], [ -78.230140686035156, -9.894305229187012 ], [ -78.230140686035156, -9.894026756286621 ], [ -78.230415344238281, -9.894026756286621 ], [ -78.230415344238281, -9.893749237060547 ], [ -78.230697631835938, -9.893749237060547 ], [ -78.230697631835938, -9.893019676208439 ], [ -78.230697631835938, -9.892916679382267 ], [ -78.230964660644474, -9.892916679382267 ], [ -78.231529235839787, -9.892916679382267 ], [ -78.231529235839787, -9.89263916015625 ], [ -78.232635498046875, -9.89263916015625 ], [ -78.232635498046875, -9.892758369445801 ], [ -78.232635498046875, -9.892916679382267 ], [ -78.232925415039062, -9.892916679382267 ], [ -78.234031677246094, -9.892916679382267 ], [ -78.234306335449162, -9.892916679382267 ], [ -78.234306335449162, -9.893193244934082 ], [ -78.235137939453068, -9.893193244934082 ], [ -78.235137939453068, -9.892916679382267 ], [ -78.235420227050724, -9.892916679382267 ], [ -78.235420227050724, -9.89263916015625 ], [ -78.235694885253906, -9.89263916015625 ], [ -78.235694885253906, -9.892360687255859 ], [ -78.235969543457031, -9.892360687255859 ], [ -78.235969543457031, -9.892083168029785 ], [ -78.237640380859318, -9.892083168029785 ], [ -78.237640380859318, -9.89124870300293 ], [ -78.237358093261662, -9.89124870300293 ], [ -78.237358093261662, -9.890694618225041 ], [ -78.237083435058594, -9.890694618225041 ], [ -78.237083435058594, -9.890138626098576 ], [ -78.236808776855469, -9.890138626098576 ], [ -78.236808776855469, -9.889861106872502 ], [ -78.236526489257812, -9.889861106872502 ], [ -78.236526489257812, -9.890138626098576 ], [ -78.235969543457031, -9.890138626098576 ], [ -78.235969543457031, -9.890417098998967 ], [ -78.235420227050724, -9.890417098998967 ], [ -78.235420227050724, -9.890138626098576 ], [ -78.235137939453068, -9.890138626098576 ], [ -78.235137939453068, -9.889582633972111 ], [ -78.234863281249943, -9.889582633972111 ], [ -78.234863281249943, -9.889026641845646 ], [ -78.234580993652287, -9.889026641845646 ], [ -78.234580993652287, -9.888472557067871 ], [ -78.234306335449162, -9.888472557067871 ], [ -78.234306335449162, -9.887776374816895 ], [ -78.234306335449162, -9.88708305358881 ], [ -78.234580993652287, -9.88708305358881 ], [ -78.234580993652287, -9.886527061462346 ], [ -78.234863281249943, -9.886528968811035 ], [ -78.234863281249943, -9.886248588561955 ], [ -78.235137939453068, -9.886248588561955 ], [ -78.235137939453068, -9.886018753051758 ], [ -78.235420227050724, -9.88597297668457 ], [ -78.235420227050724, -9.885139465331974 ], [ -78.235137939453068, -9.885139465331974 ], [ -78.235137939453068, -9.883749008178654 ], [ -78.234580993652287, -9.883750915527344 ], [ -78.234580993652287, -9.88347339630127 ], [ -78.234306335449162, -9.88347339630127 ], [ -78.234306335449162, -9.882638931274414 ], [ -78.234580993652287, -9.882638931274414 ], [ -78.234580993652287, -9.881804466247559 ], [ -78.234863281249943, -9.881804466247559 ], [ -78.234863281249943, -9.881251335144043 ], [ -78.235137939453068, -9.881251335144043 ], [ -78.235137939453068, -9.880694389343262 ], [ -78.235969543457031, -9.880694389343262 ], [ -78.235969543457031, -9.880415916442871 ], [ -78.236251831054688, -9.880415916442871 ], [ -78.236251831054688, -9.879859924316406 ], [ -78.236381530761662, -9.879859924316406 ], [ -78.237083435058594, -9.879859924316406 ], [ -78.237083435058594, -9.879582405090332 ], [ -78.237640380859318, -9.879582405090332 ], [ -78.237640380859318, -9.879305839538517 ], [ -78.237915039062443, -9.879305839538517 ], [ -78.237915039062443, -9.879028320312443 ], [ -78.238197326660099, -9.879028320312443 ], [ -78.238197326660099, -9.878913879394531 ], [ -78.238197326660099, -9.878749847412053 ], [ -78.23834228515625, -9.878749847412053 ], [ -78.238471984863224, -9.878749847412053 ], [ -78.238471984863224, -9.878602027893066 ], [ -78.238471984863224, -9.878472328185978 ], [ -78.238586425781193, -9.878472328185978 ], [ -78.239028930664062, -9.878472328185978 ], [ -78.239028930664062, -9.878193855285588 ], [ -78.239303588867188, -9.878193855285588 ], [ -78.239303588867188, -9.877916336059513 ], [ -78.239585876464844, -9.877916336059513 ], [ -78.239585876464844, -9.877637863159123 ], [ -78.239860534667969, -9.877637863159123 ], [ -78.239860534667969, -9.877362251281738 ], [ -78.24041748046875, -9.877362251281738 ], [ -78.24041748046875, -9.877083778381348 ], [ -78.240692138671818, -9.877083778381348 ], [ -78.240692138671818, -9.87680625915516 ], [ -78.241249084472599, -9.87680625915516 ], [ -78.241249084472599, -9.875971794128304 ], [ -78.241531372070256, -9.875971794128304 ], [ -78.241531372070256, -9.875694274902287 ], [ -78.241806030273438, -9.875694274902287 ], [ -78.241806030273438, -9.875415802001896 ], [ -78.242080688476562, -9.875415802001896 ], [ -78.242080688476562, -9.875138282775822 ], [ -78.242637634277344, -9.875140190124512 ], [ -78.242637634277344, -9.874859809875431 ], [ -78.242919921875, -9.874859809875431 ], [ -78.242919921875, -9.874582290649357 ], [ -78.243194580078125, -9.874584197998047 ], [ -78.243194580078125, -9.874028205871582 ], [ -78.24346923828125, -9.874028205871582 ], [ -78.24346923828125, -9.873749732971191 ], [ -78.244026184081974, -9.873749732971191 ], [ -78.244026184081974, -9.873470306396484 ], [ -78.244583129882756, -9.873470306396484 ], [ -78.244583129882756, -9.872916221618596 ], [ -78.244857788085938, -9.872916221618596 ], [ -78.244857788085938, -9.872360229492131 ], [ -78.244583129882756, -9.872360229492131 ], [ -78.244583129882756, -9.871804237365666 ], [ -78.244308471679631, -9.871806144714355 ], [ -78.244308471679631, -9.8709716796875 ], [ -78.244583129882756, -9.8709716796875 ], [ -78.244583129882756, -9.870138168334961 ], [ -78.244308471679631, -9.870138168334961 ], [ -78.244308471679631, -9.86958122253418 ], [ -78.244026184081974, -9.869584083557129 ], [ -78.244026184081974, -9.869305610656738 ], [ -78.244583129882756, -9.869305610656738 ], [ -78.244583129882756, -9.869028091430664 ], [ -78.244857788085938, -9.869028091430664 ], [ -78.244857788085938, -9.868749618530273 ], [ -78.245414733886719, -9.868749618530273 ], [ -78.245414733886719, -9.86763954162592 ], [ -78.245140075683594, -9.86763954162592 ], [ -78.245140075683594, -9.867359161376953 ], [ -78.244857788085938, -9.867362022399846 ], [ -78.244857788085938, -9.867082595825195 ], [ -78.244583129882756, -9.867082595825195 ], [ -78.244583129882756, -9.866805076599064 ], [ -78.244308471679631, -9.866805076599064 ], [ -78.244308471679631, -9.865693092346135 ], [ -78.244026184081974, -9.865693092346135 ], [ -78.244026184081974, -9.865416526794434 ], [ -78.242637634277344, -9.865416526794434 ], [ -78.242637634277344, -9.864860534667969 ], [ -78.242919921875, -9.864860534667969 ], [ -78.242919921875, -9.864027023315316 ], [ -78.243194580078125, -9.864027023315316 ], [ -78.243194580078125, -9.862915039062443 ], [ -78.24346923828125, -9.862915039062443 ], [ -78.24346923828125, -9.861804962158203 ], [ -78.243751525878793, -9.861804962158203 ], [ -78.243751525878793, -9.860973358154297 ], [ -78.24346923828125, -9.860973358154297 ], [ -78.24346923828125, -9.859582901000977 ], [ -78.243751525878793, -9.859582901000977 ], [ -78.243751525878793, -9.858751296997013 ], [ -78.24346923828125, -9.858751296997013 ], [ -78.24346923828125, -9.858472824096623 ], [ -78.243194580078125, -9.858472824096623 ], [ -78.243194580078125, -9.857916831970158 ], [ -78.24346923828125, -9.857916831970158 ], [ -78.24346923828125, -9.856527328491211 ], [ -78.243751525878793, -9.856527328491211 ], [ -78.243751525878793, -9.855973243713322 ], [ -78.24346923828125, -9.855973243713322 ], [ -78.24346923828125, -9.855417251586857 ], [ -78.242919921875, -9.855417251586857 ], [ -78.242919921875, -9.855694770812931 ], [ -78.242362976074219, -9.855694770812931 ], [ -78.242362976074219, -9.854584693908691 ], [ -78.242080688476562, -9.854584693908691 ], [ -78.242080688476562, -9.854860305786076 ], [ -78.241531372070256, -9.854860305786076 ], [ -78.241531372070256, -9.855138778686467 ], [ -78.240692138671818, -9.855138778686467 ], [ -78.240692138671818, -9.854860305786076 ], [ -78.24041748046875, -9.854860305786076 ], [ -78.24041748046875, -9.854584693908691 ], [ -78.240135192871094, -9.854584693908691 ], [ -78.240135192871094, -9.854860305786076 ], [ -78.239860534667969, -9.854860305786076 ], [ -78.239860534667969, -9.855138778686467 ], [ -78.239585876464844, -9.855138778686467 ], [ -78.239585876464844, -9.855417251586857 ], [ -78.238746643066406, -9.855417251586857 ], [ -78.238746643066406, -9.855694770812931 ], [ -78.237640380859318, -9.855694770812931 ], [ -78.237640380859318, -9.855417251586857 ], [ -78.236526489257812, -9.855417251586857 ], [ -78.236526489257812, -9.855138778686467 ], [ -78.236251831054688, -9.855138778686467 ], [ -78.236251831054688, -9.854860305786076 ], [ -78.235969543457031, -9.854860305786076 ], [ -78.235969543457031, -9.854304313659611 ], [ -78.235694885253906, -9.854304313659611 ], [ -78.235694885253906, -9.8495836257934 ], [ -78.235969543457031, -9.8495836257934 ], [ -78.235969543457031, -9.849027633666935 ], [ -78.236526489257812, -9.849027633666935 ], [ -78.236526489257812, -9.848750114440918 ], [ -78.236808776855469, -9.848750114440918 ], [ -78.236808776855469, -9.848471641540471 ], [ -78.237083435058594, -9.848471641540471 ], [ -78.237083435058594, -9.848194122314453 ], [ -78.237358093261662, -9.848194122314453 ], [ -78.237358093261662, -9.847915649414062 ], [ -78.237083435058594, -9.847915649414062 ], [ -78.237083435058594, -9.847361564636117 ], [ -78.237358093261662, -9.847359657287598 ], [ -78.237358093261662, -9.846805572509709 ], [ -78.237640380859318, -9.846805572509709 ], [ -78.237640380859318, -9.846249580383244 ], [ -78.237915039062443, -9.846249580383244 ], [ -78.237915039062443, -9.84597206115717 ], [ -78.238197326660099, -9.84597206115717 ], [ -78.238197326660099, -9.845693588256779 ], [ -78.238471984863224, -9.845693588256779 ], [ -78.238471984863224, -9.845137596130314 ], [ -78.238746643066406, -9.845137596130314 ], [ -78.238746643066406, -9.844028472900334 ], [ -78.239303588867188, -9.844028472900334 ], [ -78.239303588867188, -9.843471527099553 ], [ -78.239028930664062, -9.843471527099553 ], [ -78.239028930664062, -9.842915534973088 ], [ -78.238471984863224, -9.842915534973088 ], [ -78.238471984863224, -9.842637062072697 ], [ -78.238197326660099, -9.842639923095703 ], [ -78.238197326660099, -9.842362403869629 ], [ -78.237640380859318, -9.842362403869629 ], [ -78.237640380859318, -9.842081069946232 ], [ -78.237358093261662, -9.842083930969238 ], [ -78.237358093261662, -9.84180641174305 ], [ -78.237083435058594, -9.84180641174305 ], [ -78.237083435058594, -9.842083930969238 ], [ -78.235969543457031, -9.842083930969238 ], [ -78.235969543457031, -9.84180641174305 ], [ -78.236251831054688, -9.84180641174305 ], [ -78.236251831054688, -9.841527938842773 ], [ -78.236526489257812, -9.841527938842773 ], [ -78.236526489257812, -9.840970993041992 ], [ -78.236808776855469, -9.840970993041992 ], [ -78.236808776855469, -9.840693473815918 ], [ -78.237083435058594, -9.840693473815918 ], [ -78.237083435058594, -9.840140342712402 ], [ -78.237358093261662, -9.840140342712402 ], [ -78.237358093261662, -9.839859008789062 ], [ -78.237640380859318, -9.839860916137695 ], [ -78.237640380859318, -9.839583396911621 ], [ -78.237915039062443, -9.839583396911621 ], [ -78.237915039062443, -9.839027404785156 ], [ -78.238197326660099, -9.839027404785156 ], [ -78.238197326660099, -9.838474273681641 ], [ -78.238471984863224, -9.838474273681641 ], [ -78.238471984863224, -9.83680534362793 ], [ -78.238746643066406, -9.83680534362793 ], [ -78.238746643066406, -9.835970878601074 ], [ -78.239028930664062, -9.835970878601074 ], [ -78.239028930664062, -9.835416793823129 ], [ -78.238746643066406, -9.835416793823129 ], [ -78.238746643066406, -9.834304809570256 ], [ -78.239028930664062, -9.834304809570256 ], [ -78.239028930664062, -9.833194732666016 ], [ -78.238746643066406, -9.833194732666016 ], [ -78.238746643066406, -9.832915306091309 ], [ -78.238471984863224, -9.832917213439941 ], [ -78.238471984863224, -9.832082748413086 ], [ -78.237915039062443, -9.832082748413086 ], [ -78.237915039062443, -9.831805229186955 ], [ -78.237358093261662, -9.831805229186955 ], [ -78.237358093261662, -9.832082748413086 ], [ -78.235969543457031, -9.832082748413086 ], [ -78.235969543457031, -9.83236122131342 ], [ -78.234863281249943, -9.83236122131342 ], [ -78.234863281249943, -9.832915306091309 ], [ -78.234580993652287, -9.832915306091309 ], [ -78.234580993652287, -9.833066940307617 ], [ -78.234580993652287, -9.833194732666016 ], [ -78.234039306640625, -9.833194732666016 ], [ -78.233749389648438, -9.833194732666016 ], [ -78.233749389648438, -9.832915306091309 ], [ -78.233474731445312, -9.832917213439941 ], [ -78.233474731445312, -9.832638740539551 ], [ -78.233749389648438, -9.832638740539551 ], [ -78.233749389648438, -9.832082748413086 ], [ -78.234024047851449, -9.832082748413086 ], [ -78.234024047851449, -9.831805229186955 ], [ -78.234580993652287, -9.831805229186955 ], [ -78.234580993652287, -9.831526756286564 ], [ -78.235137939453068, -9.831526756286564 ], [ -78.235137939453068, -9.83124923706049 ], [ -78.235694885253906, -9.83125114440918 ], [ -78.235694885253906, -9.830972671508789 ], [ -78.235969543457031, -9.830970764160099 ], [ -78.235969543457031, -9.830693244934025 ], [ -78.236251831054688, -9.830695152282715 ], [ -78.236251831054688, -9.830416679382324 ], [ -78.236526489257812, -9.830416679382324 ], [ -78.236526489257812, -9.829583168029785 ], [ -78.236251831054688, -9.829583168029785 ], [ -78.236251831054688, -9.829860687255859 ], [ -78.235969543457031, -9.829860687255859 ], [ -78.235969543457031, -9.829583168029785 ], [ -78.234863281249943, -9.829583168029785 ], [ -78.234863281249943, -9.829860687255859 ], [ -78.234024047851449, -9.829860687255859 ], [ -78.234024047851449, -9.83013916015625 ], [ -78.232635498046875, -9.83013916015625 ], [ -78.232635498046875, -9.829583168029785 ], [ -78.23236083984375, -9.829583168029785 ], [ -78.23236083984375, -9.829304695129395 ], [ -78.232086181640568, -9.829304695129395 ], [ -78.232086181640568, -9.828750610351562 ], [ -78.23236083984375, -9.828750610351562 ], [ -78.23236083984375, -9.828470230102539 ], [ -78.232086181640568, -9.828473091125488 ], [ -78.232086181640568, -9.828194618225098 ], [ -78.23236083984375, -9.828194618225098 ], [ -78.23236083984375, -9.826804161071777 ], [ -78.232635498046875, -9.826804161071777 ], [ -78.232635498046875, -9.826248168945312 ], [ -78.23236083984375, -9.826250076293888 ], [ -78.23236083984375, -9.825971603393498 ], [ -78.232086181640568, -9.825971603393498 ], [ -78.232086181640568, -9.825692176818848 ], [ -78.231803894042912, -9.825694084167424 ], [ -78.231803894042912, -9.825415611267033 ], [ -78.231246948242131, -9.825415611267033 ], [ -78.231246948242131, -9.825138092040959 ], [ -78.230972290038949, -9.825138092040959 ], [ -78.230972290038949, -9.824863433837834 ], [ -78.230697631835938, -9.824863433837834 ], [ -78.230697631835938, -9.824582099914494 ], [ -78.230415344238281, -9.824582099914494 ], [ -78.230415344238281, -9.824305534362793 ], [ -78.230140686035156, -9.824305534362793 ], [ -78.230140686035156, -9.823470115661621 ], [ -78.230415344238281, -9.823470115661621 ], [ -78.230415344238281, -9.822360038757267 ], [ -78.230140686035156, -9.822360038757267 ], [ -78.230140686035156, -9.822084426879883 ], [ -78.2298583984375, -9.822084426879883 ], [ -78.2298583984375, -9.821804046630803 ], [ -78.228752136230412, -9.821804046630803 ], [ -78.228752136230412, -9.822084426879883 ], [ -78.227912902831974, -9.822084426879883 ], [ -78.227912902831974, -9.821528434753418 ], [ -78.228195190429631, -9.821528434753418 ], [ -78.228195190429631, -9.820693969726562 ], [ -78.228469848632756, -9.820693969726562 ], [ -78.228469848632756, -9.818750381469727 ], [ -78.228752136230412, -9.818750381469727 ], [ -78.228752136230412, -9.818471908569336 ], [ -78.228469848632756, -9.818471908569336 ], [ -78.228469848632756, -9.817917823791447 ], [ -78.228195190429631, -9.817917823791447 ], [ -78.228195190429631, -9.817361831664982 ], [ -78.227912902831974, -9.817361831664982 ], [ -78.227912902831974, -9.816805839538574 ], [ -78.228195190429631, -9.816805839538574 ], [ -78.228195190429631, -9.8165283203125 ], [ -78.228469848632756, -9.8165283203125 ], [ -78.228469848632756, -9.816249847412109 ], [ -78.229026794433594, -9.816249847412109 ], [ -78.229026794433594, -9.815972328186035 ], [ -78.22930908203125, -9.815972328186035 ], [ -78.22930908203125, -9.814306259155217 ], [ -78.228752136230412, -9.814306259155217 ], [ -78.228752136230412, -9.813749313354435 ], [ -78.228469848632756, -9.813749313354435 ], [ -78.228469848632756, -9.813470840454045 ], [ -78.228195190429631, -9.813470840454045 ], [ -78.228195190429631, -9.813193321227971 ], [ -78.227638244628906, -9.813193321227971 ], [ -78.227638244628906, -9.813470840454045 ], [ -78.227081298828125, -9.813470840454045 ], [ -78.227081298828125, -9.813193321227971 ], [ -78.227363586425781, -9.813193321227971 ], [ -78.227363586425781, -9.812637329101506 ], [ -78.227638244628906, -9.812637329101506 ], [ -78.227638244628906, -9.81208324432373 ], [ -78.227363586425781, -9.81208324432373 ], [ -78.227363586425781, -9.810971260070744 ], [ -78.227638244628906, -9.810973167419434 ], [ -78.227638244628906, -9.809861183166504 ], [ -78.227912902831974, -9.809861183166504 ], [ -78.227912902831974, -9.808749198913574 ], [ -78.228195190429631, -9.808749198913574 ], [ -78.228195190429631, -9.808195114135742 ], [ -78.228469848632756, -9.808195114135742 ], [ -78.228469848632756, -9.807639122009277 ], [ -78.227912902831974, -9.807639122009277 ], [ -78.227912902831974, -9.807360649108887 ], [ -78.227363586425781, -9.807360649108887 ], [ -78.227363586425781, -9.807083129882812 ], [ -78.226806640625, -9.807083129882812 ], [ -78.226806640625, -9.806804656982422 ], [ -78.226524353027344, -9.806804656982422 ], [ -78.226524353027344, -9.806248664855957 ], [ -78.226249694824219, -9.806248664855957 ], [ -78.226249694824219, -9.803473472595158 ], [ -78.226524353027344, -9.803473472595158 ], [ -78.226524353027344, -9.802916526794377 ], [ -78.226806640625, -9.802916526794377 ], [ -78.226806640625, -9.802639007568303 ], [ -78.226524353027344, -9.802639007568303 ], [ -78.226524353027344, -9.802360534667912 ], [ -78.226806640625, -9.802360534667912 ], [ -78.226806640625, -9.801803588867188 ], [ -78.227081298828125, -9.801803588867188 ], [ -78.227081298828125, -9.800695419311467 ], [ -78.227912902831974, -9.800695419311467 ], [ -78.227912902831974, -9.79847240447998 ], [ -78.226524353027344, -9.79847240447998 ], [ -78.226524353027344, -9.79708194732666 ], [ -78.226806640625, -9.79708194732666 ], [ -78.226806640625, -9.796806335449162 ], [ -78.227081298828125, -9.796806335449162 ], [ -78.227081298828125, -9.796527862548771 ], [ -78.227363586425781, -9.796527862548771 ], [ -78.227386474609375, -9.7951402664184 ], [ -78.228752136230412, -9.7951402664184 ], [ -78.228752136230412, -9.794584274291935 ], [ -78.229026794433594, -9.794584274291935 ], [ -78.229026794433594, -9.792916297912598 ], [ -78.22930908203125, -9.792916297912598 ], [ -78.22930908203125, -9.79263782501215 ], [ -78.229583740234375, -9.79263782501215 ], [ -78.229583740234375, -9.792083740234375 ], [ -78.2298583984375, -9.792083740234375 ], [ -78.2298583984375, -9.791804313659668 ], [ -78.230140686035156, -9.791806221008244 ], [ -78.230140686035156, -9.79152774810791 ], [ -78.230415344238281, -9.79152774810791 ], [ -78.230415344238281, -9.791250228881779 ], [ -78.230697631835938, -9.791250228881779 ], [ -78.230697631835938, -9.790971755981388 ], [ -78.230972290038949, -9.790971755981388 ], [ -78.230972290038949, -9.790694236755314 ], [ -78.231246948242131, -9.790694236755314 ], [ -78.231246948242131, -9.790415763854924 ], [ -78.231529235839787, -9.790415763854924 ], [ -78.231529235839787, -9.790146827697754 ], [ -78.231803894042912, -9.790140151977539 ], [ -78.231803894042912, -9.789861679077148 ], [ -78.232086181640568, -9.789861679077148 ], [ -78.232131958007812, -9.789628982543888 ], [ -78.23236083984375, -9.789584159851074 ], [ -78.23236083984375, -9.789420127868652 ], [ -78.23236083984375, -9.789305686950684 ], [ -78.232490539550724, -9.789305686950684 ], [ -78.232917785644531, -9.789305686950684 ], [ -78.232917785644531, -9.789028167724609 ], [ -78.233474731445312, -9.789028167724609 ], [ -78.233474731445312, -9.788749694824219 ], [ -78.234024047851449, -9.788749694824219 ], [ -78.234024047851449, -9.788469314575138 ], [ -78.234306335449162, -9.788472175598031 ], [ -78.234306335449162, -9.788195610046387 ], [ -78.234580993652287, -9.788195610046387 ], [ -78.234580993652287, -9.787915229797363 ], [ -78.235137939453068, -9.787915229797363 ], [ -78.235137939453068, -9.787639617919922 ], [ -78.235420227050724, -9.787639617919922 ], [ -78.235420227050724, -9.787359237670898 ], [ -78.236251831054688, -9.787359237670898 ], [ -78.236251831054688, -9.787639617919922 ], [ -78.236526489257812, -9.787639617919922 ], [ -78.236526489257812, -9.786526679992676 ], [ -78.236808776855469, -9.786526679992676 ], [ -78.236808776855469, -9.782638549804688 ], [ -78.236618041992188, -9.782638549804688 ], [ -78.236251831054688, -9.782638549804688 ], [ -78.236251831054688, -9.782361030578556 ], [ -78.236808776855469, -9.782361030578556 ], [ -78.236808776855469, -9.782082557678109 ], [ -78.236915588378906, -9.782082557678109 ], [ -78.237083435058594, -9.782082557678109 ], [ -78.237083435058594, -9.781805038452092 ], [ -78.237915039062443, -9.781805038452092 ], [ -78.237915039062443, -9.781526565551701 ], [ -78.238746643066406, -9.781526565551701 ], [ -78.238746643066406, -9.781249046325627 ], [ -78.239860534667969, -9.781249046325627 ], [ -78.239860534667969, -9.781526565551701 ], [ -78.24041748046875, -9.781526565551701 ], [ -78.24041748046875, -9.780973434448242 ], [ -78.240692138671818, -9.780973434448242 ], [ -78.240692138671818, -9.780417442321777 ], [ -78.240974426269474, -9.780417442321777 ], [ -78.240974426269474, -9.779861450195256 ], [ -78.241249084472599, -9.779861450195256 ], [ -78.241249084472599, -9.779305458068791 ], [ -78.241531372070256, -9.779305458068791 ], [ -78.241531372070256, -9.7790269851684 ], [ -78.241806030273438, -9.7790269851684 ], [ -78.241806030273438, -9.778751373291016 ], [ -78.242080688476562, -9.778751373291016 ], [ -78.242080688476562, -9.778470993041935 ], [ -78.242362976074219, -9.778472900390625 ], [ -78.242362976074219, -9.778195381164551 ], [ -78.242637634277344, -9.778195381164551 ], [ -78.242637634277344, -9.77791690826416 ], [ -78.242919921875, -9.77791690826416 ], [ -78.242919921875, -9.777639389038086 ], [ -78.243125915527344, -9.777639389038086 ], [ -78.243194580078125, -9.777360916137695 ], [ -78.244308471679631, -9.777360916137695 ], [ -78.244308471679631, -9.777639389038086 ], [ -78.244583129882756, -9.777639389038086 ], [ -78.244583129882756, -9.77791690826416 ], [ -78.244857788085938, -9.77791690826416 ], [ -78.244857788085938, -9.778195381164551 ], [ -78.245697021484375, -9.778195381164551 ], [ -78.245697021484375, -9.77791690826416 ], [ -78.2459716796875, -9.77791690826416 ], [ -78.2459716796875, -9.777360916137695 ], [ -78.246246337890625, -9.777360916137695 ], [ -78.246246337890625, -9.776806831359806 ], [ -78.246528625488281, -9.776806831359806 ], [ -78.246528625488281, -9.776250839233398 ], [ -78.246246337890625, -9.776250839233398 ], [ -78.246246337890625, -9.775973320007324 ], [ -78.2459716796875, -9.775973320007324 ], [ -78.2459716796875, -9.775694847106934 ], [ -78.245697021484375, -9.775694847106934 ], [ -78.245697021484375, -9.775417327880859 ], [ -78.245414733886719, -9.775417327880859 ], [ -78.245414733886719, -9.775138854980469 ], [ -78.245140075683594, -9.775138854980469 ], [ -78.245140075683594, -9.774861335754395 ], [ -78.244857788085938, -9.774861335754395 ], [ -78.244857788085938, -9.77458477020258 ], [ -78.244583129882756, -9.774581909179688 ], [ -78.244583129882756, -9.774028778076115 ], [ -78.244857788085938, -9.774028778076115 ], [ -78.244857788085938, -9.77347278594965 ], [ -78.245140075683594, -9.77347278594965 ], [ -78.245140075683594, -9.772684097290039 ], [ -78.245414733886719, -9.772638320922795 ], [ -78.245414733886719, -9.772321701049805 ], [ -78.245414733886719, -9.77208232879633 ], [ -78.245697021484375, -9.77208232879633 ], [ -78.245697021484375, -9.771951675415039 ], [ -78.245697021484375, -9.771806716918832 ], [ -78.245811462402344, -9.771806716918832 ], [ -78.246246337890625, -9.771806716918832 ], [ -78.246246337890625, -9.771528244018555 ], [ -78.246528625488281, -9.771526336669922 ], [ -78.246528625488281, -9.771249771118164 ], [ -78.246803283691293, -9.771249771118164 ], [ -78.246803283691293, -9.770972251891976 ], [ -78.247085571289006, -9.770972251891976 ], [ -78.247085571289006, -9.770693778991699 ], [ -78.247360229492131, -9.770693778991699 ], [ -78.247360229492131, -9.770414352416992 ], [ -78.247642517089787, -9.770416259765568 ], [ -78.247642517089787, -9.770137786865121 ], [ -78.247917175292912, -9.770137786865121 ], [ -78.247917175292912, -9.769860267639103 ], [ -78.248191833496094, -9.769860267639103 ], [ -78.248191833496094, -9.769583702087402 ], [ -78.248748779296875, -9.769583702087402 ], [ -78.248748779296875, -9.769304275512638 ], [ -78.249031066894531, -9.769306182861328 ], [ -78.249031066894531, -9.769027709960938 ], [ -78.249305725097656, -9.769027709960938 ], [ -78.249305725097656, -9.768748283386174 ], [ -78.249580383300781, -9.768750190734863 ], [ -78.249580383300781, -9.768471717834473 ], [ -78.249862670898438, -9.768471717834473 ], [ -78.249862670898438, -9.768194198608398 ], [ -78.250137329101506, -9.768194198608398 ], [ -78.250137329101506, -9.767915725708008 ], [ -78.250694274902287, -9.767915725708008 ], [ -78.250694274902287, -9.767640113830566 ], [ -78.250968933105412, -9.767640113830566 ], [ -78.250968933105412, -9.767359733581543 ], [ -78.251251220703068, -9.767359733581543 ], [ -78.251251220703068, -9.767084121704102 ], [ -78.25152587890625, -9.767084121704102 ], [ -78.25152587890625, -9.766805648803711 ], [ -78.251808166503906, -9.766805648803711 ], [ -78.251808166503906, -9.766249656677246 ], [ -78.252082824707031, -9.766249656677246 ], [ -78.252082824707031, -9.765970230102482 ], [ -78.252357482910156, -9.765972137451172 ], [ -78.252357482910156, -9.765693664550781 ], [ -78.252914428710938, -9.765693664550781 ], [ -78.252914428710938, -9.765416145324707 ], [ -78.253196716308594, -9.765418052673283 ], [ -78.253196716308594, -9.765137672424316 ], [ -78.253753662109318, -9.765137672424316 ], [ -78.253753662109318, -9.764860153198242 ], [ -78.254028320312443, -9.764862060546818 ], [ -78.254028320312443, -9.764583587646428 ], [ -78.254585266113281, -9.764583587646428 ], [ -78.254585266113281, -9.764304161071777 ], [ -78.254859924316406, -9.76430606842041 ], [ -78.254859924316406, -9.764027595519963 ], [ -78.255416870117188, -9.764027595519963 ], [ -78.255416870117188, -9.763750076293945 ], [ -78.255691528320312, -9.763750076293945 ], [ -78.255691528320312, -9.763471603393555 ], [ -78.255973815917969, -9.763471603393555 ], [ -78.255973815917969, -9.76319408416748 ], [ -78.256248474121094, -9.76319408416748 ], [ -78.256248474121094, -9.76291561126709 ], [ -78.256530761718636, -9.76291561126709 ], [ -78.256530761718636, -9.762638092041016 ], [ -78.256805419921818, -9.762639999389592 ], [ -78.256805419921818, -9.762361526489201 ], [ -78.257362365722599, -9.762361526489201 ], [ -78.257362365722599, -9.762081146240234 ], [ -78.257637023925781, -9.762084007263127 ], [ -78.257637023925781, -9.761805534362736 ], [ -78.257919311523438, -9.761805534362736 ], [ -78.257919311523438, -9.761528015136662 ], [ -78.258193969726562, -9.761528015136662 ], [ -78.258193969726562, -9.761249542236271 ], [ -78.258468627929688, -9.761249542236271 ], [ -78.258468627929688, -9.760985374450684 ], [ -78.258750915527344, -9.760971069335881 ], [ -78.258750915527344, -9.76069259643549 ], [ -78.259307861328125, -9.76069259643549 ], [ -78.259307861328125, -9.760415077209416 ], [ -78.259582519531136, -9.760417938232422 ], [ -78.259582519531136, -9.760140419006291 ], [ -78.260139465331974, -9.760140419006291 ], [ -78.260139465331974, -9.759859085082951 ], [ -78.260414123535099, -9.759861946105843 ], [ -78.260414123535099, -9.759584426879826 ], [ -78.260971069335938, -9.759584426879826 ], [ -78.260971069335938, -9.759305000305176 ], [ -78.261253356933594, -9.759305000305176 ], [ -78.261253356933594, -9.759026527404785 ], [ -78.261802673339844, -9.759026527404785 ], [ -78.261802673339844, -9.758749008178711 ], [ -78.2620849609375, -9.758749008178711 ], [ -78.2620849609375, -9.758474349975586 ], [ -78.263473510742131, -9.758474349975586 ], [ -78.263473510742131, -9.758193016052132 ], [ -78.263748168945256, -9.758193016052132 ], [ -78.263748168945256, -9.757917404174805 ], [ -78.264083862304688, -9.757917404174805 ], [ -78.264862060546875, -9.757917404174805 ], [ -78.264862060546875, -9.758474349975586 ], [ -78.26513671875, -9.758474349975586 ], [ -78.26513671875, -9.758749008178711 ], [ -78.26513671875, -9.759026527404785 ], [ -78.265342712402344, -9.759026527404785 ], [ -78.265975952148438, -9.759026527404785 ], [ -78.265975952148438, -9.759584426879826 ], [ -78.266525268554631, -9.759584426879826 ], [ -78.266525268554631, -9.759861946105843 ], [ -78.266807556152287, -9.759859085082951 ], [ -78.266807556152287, -9.760140419006291 ], [ -78.266998291015568, -9.760140419006291 ], [ -78.267913818359375, -9.760140419006291 ], [ -78.267913818359375, -9.760417938232422 ], [ -78.268196105957031, -9.760415077209416 ], [ -78.268196105957031, -9.76069259643549 ], [ -78.269027709960938, -9.76069259643549 ], [ -78.269027709960938, -9.760140419006291 ], [ -78.269302368164006, -9.760140419006291 ], [ -78.269302368164006, -9.759859085082951 ], [ -78.269027709960938, -9.759861946105843 ], [ -78.269027709960938, -9.759584426879826 ], [ -78.26763916015625, -9.759584426879826 ], [ -78.26763916015625, -9.759305000305176 ], [ -78.267364501953125, -9.759305000305176 ], [ -78.267364501953125, -9.758749008178711 ], [ -78.267913818359375, -9.758749008178711 ], [ -78.267913818359375, -9.758474349975586 ], [ -78.268470764160156, -9.758474349975586 ], [ -78.268470764160156, -9.757917404174805 ], [ -78.269027709960938, -9.757917404174805 ], [ -78.269027709960938, -9.757637023925724 ], [ -78.269584655761662, -9.757637023925724 ], [ -78.269584655761662, -9.758055686950684 ], [ -78.269584655761662, -9.758193016052132 ], [ -78.271247863769531, -9.758193016052132 ], [ -78.271247863769531, -9.757637023925724 ], [ -78.271530151367188, -9.757637023925724 ], [ -78.271530151367188, -9.75708103179926 ], [ -78.271804809570312, -9.75708103179926 ], [ -78.271804809570312, -9.756526947021484 ], [ -78.272918701171818, -9.756526947021484 ], [ -78.272918701171818, -9.756251335143986 ], [ -78.273475646972599, -9.756251335143986 ], [ -78.273475646972599, -9.754860877990723 ], [ -78.274864196777344, -9.754860877990723 ], [ -78.274864196777344, -9.754583358764648 ], [ -78.275138854980469, -9.754583358764648 ], [ -78.275138854980469, -9.754304885864258 ], [ -78.274864196777344, -9.754304885864258 ], [ -78.274864196777344, -9.753748893737793 ], [ -78.274307250976562, -9.753748893737793 ], [ -78.274307250976562, -9.753473281860295 ], [ -78.273750305175781, -9.753473281860295 ], [ -78.273750305175781, -9.753194808959904 ], [ -78.274024963378906, -9.753194808959904 ], [ -78.274024963378906, -9.75291728973383 ], [ -78.274307250976562, -9.75291728973383 ], [ -78.274307250976562, -9.752638816833439 ], [ -78.275138854980469, -9.752638816833439 ], [ -78.275138854980469, -9.752361297607422 ], [ -78.275695800781193, -9.752361297607422 ], [ -78.275695800781193, -9.751805305480957 ], [ -78.275970458984318, -9.751805305480957 ], [ -78.275970458984318, -9.750695228576603 ], [ -78.275138854980469, -9.750695228576603 ], [ -78.275138854980469, -9.750416755676213 ], [ -78.274864196777344, -9.750416755676213 ], [ -78.274864196777344, -9.750241279602051 ], [ -78.274864196777344, -9.749860763549748 ], [ -78.275032043456918, -9.749860763549748 ], [ -78.27541351318348, -9.749860763549748 ], [ -78.27541351318348, -9.749583244323674 ], [ -78.275695800781193, -9.749583244323674 ], [ -78.275695800781193, -9.749027252197209 ], [ -78.275970458984318, -9.749029159545898 ], [ -78.275970458984318, -9.748750686645508 ], [ -78.276252746581974, -9.748750686645508 ], [ -78.276252746581974, -9.748194694519043 ], [ -78.276527404785099, -9.748194694519043 ], [ -78.276527404785099, -9.747914314269963 ], [ -78.276252746581974, -9.747917175292855 ], [ -78.276252746581974, -9.747638702392578 ], [ -78.27541351318348, -9.747638702392578 ], [ -78.27541351318348, -9.746804237365723 ], [ -78.275695800781193, -9.746804237365723 ], [ -78.275695800781193, -9.744026184082031 ], [ -78.275970458984318, -9.744028091430607 ], [ -78.275970458984318, -9.743749618530217 ], [ -78.276252746581974, -9.743749618530217 ], [ -78.276252746581974, -9.743470191955566 ], [ -78.276802062988281, -9.743472099304142 ], [ -78.276802062988281, -9.743193626403752 ], [ -78.277359008789062, -9.743193626403752 ], [ -78.277359008789062, -9.742916107177734 ], [ -78.277915954589844, -9.742916107177734 ], [ -78.277915954589844, -9.742637634277287 ], [ -78.279861450195256, -9.742637634277287 ], [ -78.279861450195256, -9.742916107177734 ], [ -78.280136108398438, -9.742916107177734 ], [ -78.280136108398438, -9.743470191955566 ], [ -78.279861450195256, -9.743470191955566 ], [ -78.279861450195256, -9.744026184082031 ], [ -78.280136108398438, -9.744026184082031 ], [ -78.280136108398438, -9.744582176208496 ], [ -78.280418395996094, -9.744582176208496 ], [ -78.280418395996094, -9.74485969543457 ], [ -78.28125, -9.74485969543457 ], [ -78.28125, -9.745415687561035 ], [ -78.281806945800781, -9.745415687561035 ], [ -78.281806945800781, -9.745138168334961 ], [ -78.282081604003849, -9.745138168334961 ], [ -78.282081604003849, -9.743749618530217 ], [ -78.282363891601506, -9.743749618530217 ], [ -78.282363891601506, -9.742916107177734 ], [ -78.282081604003849, -9.742916107177734 ], [ -78.282081604003849, -9.742637634277287 ], [ -78.281806945800781, -9.742637634277287 ], [ -78.281806945800781, -9.741804122924805 ], [ -78.280418395996094, -9.741804122924805 ], [ -78.280418395996094, -9.741250038146916 ], [ -78.280693054199219, -9.741250038146916 ], [ -78.280693054199219, -9.74041557312006 ], [ -78.280975341796875, -9.74041557312006 ], [ -78.280975341796875, -9.739862442016602 ], [ -78.28125, -9.739862442016602 ], [ -78.28125, -9.739027976989746 ], [ -78.281524658203125, -9.739027976989746 ], [ -78.281524658203125, -9.738471984863224 ], [ -78.282638549804631, -9.738471984863224 ], [ -78.282638549804631, -9.73819446563715 ], [ -78.282913208007756, -9.73819446563715 ], [ -78.282913208007756, -9.737638473510685 ], [ -78.283470153808594, -9.737638473510685 ], [ -78.283470153808594, -9.73680591583252 ], [ -78.2843017578125, -9.73680591583252 ], [ -78.284309387207031, -9.73708438873291 ], [ -78.284858703613281, -9.73708438873291 ], [ -78.284858703613281, -9.737638473510685 ], [ -78.285140991210824, -9.737638473510685 ], [ -78.285140991210824, -9.737917900085449 ], [ -78.285697937011662, -9.737917900085449 ], [ -78.285697937011662, -9.737638473510685 ], [ -78.286247253417969, -9.737638473510685 ], [ -78.286247253417969, -9.737360000610295 ], [ -78.286529541015625, -9.737361907958984 ], [ -78.286529541015625, -9.73708438873291 ], [ -78.28680419921875, -9.73708438873291 ], [ -78.28680419921875, -9.73680591583252 ], [ -78.287635803222656, -9.73680591583252 ], [ -78.287635803222656, -9.73708438873291 ], [ -78.287918090820312, -9.73708438873291 ], [ -78.287918090820312, -9.737361907958984 ], [ -78.288192749023324, -9.737360000610295 ], [ -78.288192749023324, -9.737638473510685 ], [ -78.288475036621037, -9.737638473510685 ], [ -78.288475036621037, -9.737917900085449 ], [ -78.289024353027287, -9.73791599273676 ], [ -78.289024353027287, -9.737360000610295 ], [ -78.289306640624943, -9.737361907958984 ], [ -78.289306640624943, -9.73708438873291 ], [ -78.289024353027287, -9.73708438873291 ], [ -78.289024353027287, -9.736528396606445 ], [ -78.288749694824162, -9.736528396606445 ], [ -78.288749694824162, -9.735972404479867 ], [ -78.288475036621037, -9.735972404479867 ], [ -78.288475036621037, -9.735695838928223 ], [ -78.288192749023324, -9.735695838928223 ], [ -78.288192749023324, -9.735136985778809 ], [ -78.287918090820312, -9.735139846801758 ], [ -78.287918090820312, -9.733749389648438 ], [ -78.287635803222656, -9.733749389648438 ], [ -78.287635803222656, -9.733470916748047 ], [ -78.287918090820312, -9.733470916748047 ], [ -78.287918090820312, -9.732083320617619 ], [ -78.288749694824162, -9.732083320617619 ], [ -78.288749694824162, -9.73236179351801 ], [ -78.289024353027287, -9.73236179351801 ], [ -78.289024353027287, -9.731804847717228 ], [ -78.289863586425781, -9.731804847717228 ], [ -78.289863586425781, -9.73236179351801 ], [ -78.290138244628906, -9.73236179351801 ], [ -78.290138244628906, -9.732917785644474 ], [ -78.290695190429688, -9.732917785644474 ], [ -78.290695190429688, -9.731804847717228 ], [ -78.290412902832031, -9.731804847717228 ], [ -78.290412902832031, -9.731527328491154 ], [ -78.290138244628906, -9.731527328491154 ], [ -78.290138244628906, -9.731248855590763 ], [ -78.289863586425781, -9.731248855590763 ], [ -78.289863586425781, -9.730971336364746 ], [ -78.289581298828125, -9.730971336364746 ], [ -78.289581298828125, -9.730694770812988 ], [ -78.289306640624943, -9.730694770812988 ], [ -78.289306640624943, -9.729861259460392 ], [ -78.289024353027287, -9.729861259460392 ], [ -78.289024353027287, -9.729305267333928 ], [ -78.289581298828125, -9.729305267333928 ], [ -78.289581298828125, -9.729582786559945 ], [ -78.290412902832031, -9.729582786559945 ], [ -78.290412902832031, -9.729861259460392 ], [ -78.290695190429688, -9.729861259460392 ], [ -78.290695190429688, -9.7304172515868 ], [ -78.290969848632812, -9.7304172515868 ], [ -78.290969848632812, -9.730971336364746 ], [ -78.291809082031193, -9.730971336364746 ], [ -78.291809082031193, -9.730694770812988 ], [ -78.292358398437443, -9.730694770812988 ], [ -78.292358398437443, -9.7304172515868 ], [ -78.292640686035099, -9.7304172515868 ], [ -78.292640686035099, -9.729582786559945 ], [ -78.292915344238281, -9.729582786559945 ], [ -78.292915344238281, -9.729305267333928 ], [ -78.293472290039062, -9.729305267333928 ], [ -78.293472290039062, -9.728749275207463 ], [ -78.293746948242188, -9.728749275207463 ], [ -78.293746948242188, -9.728193283080998 ], [ -78.294029235839844, -9.728193283080998 ], [ -78.294029235839844, -9.727639198303223 ], [ -78.294303894042969, -9.727639198303223 ], [ -78.294303894042969, -9.727083206176758 ], [ -78.295135498046818, -9.727083206176758 ], [ -78.295135498046818, -9.727360725402832 ], [ -78.295417785644474, -9.727360725402832 ], [ -78.295417785644474, -9.727639198303223 ], [ -78.295974731445312, -9.727639198303223 ], [ -78.295974731445312, -9.727360725402832 ], [ -78.296249389648438, -9.727360725402832 ], [ -78.296249389648438, -9.727083206176758 ], [ -78.296524047851562, -9.727083206176758 ], [ -78.296524047851562, -9.726529121398926 ], [ -78.296806335449219, -9.726529121398926 ], [ -78.296806335449219, -9.725971221923771 ], [ -78.297080993652344, -9.725971221923771 ], [ -78.297080993652344, -9.725415229797306 ], [ -78.29736328125, -9.725415229797306 ], [ -78.29736328125, -9.724859237670842 ], [ -78.297637939453125, -9.724861145019531 ], [ -78.297637939453125, -9.723472595214787 ], [ -78.29736328125, -9.723472595214787 ], [ -78.29736328125, -9.722360610961914 ], [ -78.296524047851562, -9.722360610961914 ], [ -78.296524047851562, -9.721804618835449 ], [ -78.296806335449219, -9.721804618835449 ], [ -78.296806335449219, -9.721526145935059 ], [ -78.29736328125, -9.721529006957951 ], [ -78.29736328125, -9.72125053405756 ], [ -78.297637939453125, -9.72125053405756 ], [ -78.297637939453125, -9.719304084777775 ], [ -78.298469543456974, -9.719304084777775 ], [ -78.298469543456974, -9.718192100524902 ], [ -78.298194885253849, -9.718194007873535 ], [ -78.298194885253849, -9.717915534973145 ], [ -78.297637939453125, -9.717915534973145 ], [ -78.297637939453125, -9.717638015746957 ], [ -78.29736328125, -9.717638015746957 ], [ -78.29736328125, -9.717363357543945 ], [ -78.296524047851562, -9.717363357543945 ], [ -78.296524047851562, -9.717638015746957 ], [ -78.295135498046818, -9.717638015746957 ], [ -78.295135498046818, -9.717082023620549 ], [ -78.294860839843693, -9.717082023620549 ], [ -78.294860839843693, -9.716806411743164 ], [ -78.294586181640625, -9.716806411743164 ], [ -78.294586181640625, -9.717082023620549 ], [ -78.294090270996037, -9.717082023620549 ], [ -78.293746948242188, -9.717082023620549 ], [ -78.293746948242188, -9.716806411743164 ], [ -78.293472290039062, -9.716806411743164 ], [ -78.293472290039062, -9.715694427490234 ], [ -78.293746948242188, -9.715694427490234 ], [ -78.293746948242188, -9.715415954589844 ], [ -78.294029235839844, -9.715415954589844 ], [ -78.294029235839844, -9.714859962463379 ], [ -78.293746948242188, -9.714859962463379 ], [ -78.293746948242188, -9.714305877685547 ], [ -78.293472290039062, -9.714305877685547 ], [ -78.293472290039062, -9.713749885559082 ], [ -78.293197631835938, -9.713749885559082 ], [ -78.293197631835938, -9.712916374206543 ], [ -78.293571472167969, -9.712916374206543 ], [ -78.293746948242188, -9.712916374206543 ], [ -78.293746948242188, -9.713193893432617 ], [ -78.294029235839844, -9.713193893432617 ], [ -78.294029235839844, -9.713472366333008 ], [ -78.294860839843693, -9.713472366333008 ], [ -78.294860839843693, -9.712362289428654 ], [ -78.295417785644474, -9.712362289428654 ], [ -78.295417785644474, -9.712637901306152 ], [ -78.295692443847599, -9.712637901306152 ], [ -78.295692443847599, -9.712916374206543 ], [ -78.295974731445312, -9.712916374206543 ], [ -78.295974731445312, -9.712637901306152 ], [ -78.296249389648438, -9.712637901306152 ], [ -78.296249389648438, -9.712362289428654 ], [ -78.295974731445312, -9.712362289428654 ], [ -78.295974731445312, -9.712083816528263 ], [ -78.295692443847599, -9.712081909179688 ], [ -78.295692443847599, -9.709305763244572 ], [ -78.295417785644474, -9.709305763244572 ], [ -78.295417785644474, -9.709028244018498 ], [ -78.295135498046818, -9.709028244018498 ], [ -78.295135498046818, -9.708472251892033 ], [ -78.294860839843693, -9.708472251892033 ], [ -78.294860839843693, -9.708195686340332 ], [ -78.295135498046818, -9.708195686340332 ], [ -78.295135498046818, -9.708086013793888 ], [ -78.295135498046818, -9.707915306091252 ], [ -78.295692443847599, -9.707915306091252 ], [ -78.295692443847599, -9.708207130432129 ], [ -78.295692443847599, -9.708472251892033 ], [ -78.295974731445312, -9.708472251892033 ], [ -78.295974731445312, -9.708749771118107 ], [ -78.296249389648438, -9.708749771118107 ], [ -78.296249389648438, -9.709028244018498 ], [ -78.296806335449219, -9.709028244018498 ], [ -78.296806335449219, -9.709305763244572 ], [ -78.297920227050668, -9.709305763244572 ], [ -78.297920227050668, -9.709028244018498 ], [ -78.298194885253849, -9.709028244018498 ], [ -78.298194885253849, -9.708472251892033 ], [ -78.297920227050668, -9.708472251892033 ], [ -78.297920227050668, -9.707915306091252 ], [ -78.298194885253849, -9.707915306091252 ], [ -78.298194885253849, -9.707639694213867 ], [ -78.298469543456974, -9.707639694213867 ], [ -78.298469543456974, -9.707359313964787 ], [ -78.297920227050668, -9.707362174987679 ], [ -78.297920227050668, -9.707083702087402 ], [ -78.297637939453125, -9.707083702087402 ], [ -78.297637939453125, -9.706806182861271 ], [ -78.296524047851562, -9.706806182861271 ], [ -78.296524047851562, -9.707083702087402 ], [ -78.295135498046818, -9.707083702087402 ], [ -78.295135498046818, -9.706806182861271 ], [ -78.295417785644474, -9.706806182861271 ], [ -78.295417785644474, -9.705158233642521 ], [ -78.295417785644474, -9.704860687255859 ], [ -78.295974731445312, -9.704860687255859 ], [ -78.295974731445312, -9.705037117004395 ], [ -78.295974731445312, -9.705140113830566 ], [ -78.298469543456974, -9.705140113830566 ], [ -78.298469543456974, -9.704860687255859 ], [ -78.298751831054631, -9.704860687255859 ], [ -78.298751831054631, -9.704304695129395 ], [ -78.298469543456974, -9.704304695129395 ], [ -78.298469543456974, -9.70374870300293 ], [ -78.298751831054631, -9.70374870300293 ], [ -78.298751831054631, -9.703471183776855 ], [ -78.299026489257812, -9.703471183776855 ], [ -78.299026489257812, -9.701805114746094 ], [ -78.299583435058594, -9.701805114746094 ], [ -78.299583435058594, -9.701249122619629 ], [ -78.299858093261719, -9.701249122619629 ], [ -78.299858093261719, -9.700972557067757 ], [ -78.299583435058594, -9.700972557067757 ], [ -78.299583435058594, -9.700416564941349 ], [ -78.299308776855469, -9.700416564941349 ], [ -78.299308776855469, -9.69958305358881 ], [ -78.299026489257812, -9.69958305358881 ], [ -78.299026489257812, -9.699027061462402 ], [ -78.299583435058594, -9.699028968811035 ], [ -78.299583435058594, -9.698748588561955 ], [ -78.299858093261719, -9.698748588561955 ], [ -78.299858093261719, -9.698471069335938 ], [ -78.3004150390625, -9.698471069335938 ], [ -78.3004150390625, -9.697916984558049 ], [ -78.300971984863168, -9.697916984558049 ], [ -78.300971984863168, -9.697639465331974 ], [ -78.301246643066349, -9.697639465331974 ], [ -78.301246643066349, -9.697360992431584 ], [ -78.302635192871094, -9.697360992431584 ], [ -78.302635192871094, -9.697916984558049 ], [ -78.303749084472656, -9.697916984558049 ], [ -78.303749084472656, -9.697639465331974 ], [ -78.304031372070312, -9.697639465331974 ], [ -78.304031372070312, -9.697360992431584 ], [ -78.304306030273381, -9.697360992431584 ], [ -78.304306030273381, -9.696249008178654 ], [ -78.304580688476506, -9.696250915527344 ], [ -78.304580688476506, -9.695870399474984 ], [ -78.304580688476506, -9.695692062377873 ], [ -78.304862976074162, -9.695694923400879 ], [ -78.304862976074162, -9.695417404174691 ], [ -78.305694580078125, -9.695417404174691 ], [ -78.305694580078125, -9.695694923400879 ], [ -78.306808471679688, -9.695692062377873 ], [ -78.306808471679688, -9.69597339630127 ], [ -78.307357788085881, -9.69597339630127 ], [ -78.307357788085881, -9.695692062377873 ], [ -78.307640075683537, -9.695692062377873 ], [ -78.307640075683537, -9.695138931274414 ], [ -78.308471679687443, -9.695138931274414 ], [ -78.308471679687443, -9.694861412048283 ], [ -78.308197021484318, -9.694861412048283 ], [ -78.308197021484318, -9.694304466247559 ], [ -78.307914733886662, -9.694304466247559 ], [ -78.307914733886662, -9.694025993347168 ], [ -78.307640075683537, -9.694028854370117 ], [ -78.307640075683537, -9.693751335144043 ], [ -78.307357788085881, -9.693751335144043 ], [ -78.307357788085881, -9.694028854370117 ], [ -78.306808471679688, -9.694028854370117 ], [ -78.306808471679688, -9.693751335144043 ], [ -78.306526184082031, -9.693751335144043 ], [ -78.306526184082031, -9.693617820739689 ], [ -78.306526184082031, -9.693195343017578 ], [ -78.306251525878906, -9.693195343017578 ], [ -78.306251525878906, -9.692916870117188 ], [ -78.30596923828125, -9.692916870117188 ], [ -78.30596923828125, -9.692359924316406 ], [ -78.305694580078125, -9.692359924316406 ], [ -78.305694580078125, -9.691806793212834 ], [ -78.305137634277287, -9.691806793212834 ], [ -78.305137634277287, -9.691526412963867 ], [ -78.305000305175781, -9.691526412963867 ], [ -78.304862976074162, -9.691526412963867 ], [ -78.304862976074162, -9.691249847412053 ], [ -78.305015563964844, -9.691249847412053 ], [ -78.305137634277287, -9.691249847412053 ], [ -78.305137634277287, -9.690693855285588 ], [ -78.305419921874943, -9.690693855285588 ], [ -78.305419921874943, -9.688750267028752 ], [ -78.305694580078125, -9.688750267028752 ], [ -78.305694580078125, -9.688471794128361 ], [ -78.306251525878906, -9.688471794128361 ], [ -78.306251525878906, -9.688194274902287 ], [ -78.306526184082031, -9.688194274902287 ], [ -78.306526184082031, -9.687915802001896 ], [ -78.306808471679688, -9.687915802001896 ], [ -78.306808471679688, -9.687359809875431 ], [ -78.307083129882812, -9.687359809875431 ], [ -78.307083129882812, -9.687084197998047 ], [ -78.307357788085881, -9.687084197998047 ], [ -78.307357788085881, -9.686528205871582 ], [ -78.307640075683537, -9.686528205871582 ], [ -78.307640075683537, -9.686249732971191 ], [ -78.307914733886662, -9.686249732971191 ], [ -78.307914733886662, -9.685970306396484 ], [ -78.308197021484318, -9.685970306396484 ], [ -78.308197021484318, -9.685416221618596 ], [ -78.308471679687443, -9.685416221618596 ], [ -78.308471679687443, -9.685137748718205 ], [ -78.308746337890625, -9.685137748718205 ], [ -78.308746337890625, -9.68458366394043 ], [ -78.309028625488281, -9.68458366394043 ], [ -78.309028625488281, -9.684304237365666 ], [ -78.309585571289062, -9.684306144714355 ], [ -78.309585571289062, -9.684027671813965 ], [ -78.309860229492188, -9.684027671813965 ], [ -78.309860229492188, -9.683748245239201 ], [ -78.310142517089844, -9.683750152587891 ], [ -78.310142517089844, -9.6834716796875 ], [ -78.310974121093693, -9.6834716796875 ], [ -78.310974121093693, -9.683750152587891 ], [ -78.311248779296818, -9.683748245239201 ], [ -78.311248779296818, -9.684027671813965 ], [ -78.312362670898438, -9.684027671813965 ], [ -78.312362670898438, -9.684306144714355 ], [ -78.312637329101562, -9.684304237365666 ], [ -78.312637329101562, -9.684860229492131 ], [ -78.312919616699219, -9.684860229492131 ], [ -78.312919616699219, -9.685137748718205 ], [ -78.314025878906193, -9.685137748718205 ], [ -78.314025878906193, -9.684860229492131 ], [ -78.314308166503849, -9.68486213684082 ], [ -78.314308166503849, -9.68458366394043 ], [ -78.314582824706974, -9.68458366394043 ], [ -78.314582824706974, -9.684027671813965 ], [ -78.314857482910156, -9.684027671813965 ], [ -78.314857482910156, -9.683748245239201 ], [ -78.315139770507812, -9.683750152587891 ], [ -78.315139770507812, -9.6834716796875 ], [ -78.314857482910156, -9.6834716796875 ], [ -78.314857482910156, -9.683194160461426 ], [ -78.314582824706974, -9.683194160461426 ], [ -78.314582824706974, -9.682638168334847 ], [ -78.314308166503849, -9.682640075683594 ], [ -78.314308166503849, -9.681249618530273 ], [ -78.314468383789062, -9.681249618530273 ], [ -78.314857482910156, -9.681249618530273 ], [ -78.314857482910156, -9.681528091430664 ], [ -78.315139770507812, -9.681528091430664 ], [ -78.315139770507812, -9.681741714477539 ], [ -78.315368652343693, -9.681805610656738 ], [ -78.315414428710938, -9.682084083557129 ], [ -78.315696716308594, -9.68208122253418 ], [ -78.315696716308594, -9.682638168334847 ], [ -78.315963745117188, -9.682592391967773 ], [ -78.315971374511719, -9.683194160461426 ], [ -78.316253662109375, -9.683194160461426 ], [ -78.316253662109375, -9.683750152587891 ], [ -78.317916870117131, -9.683750152587891 ], [ -78.317916870117131, -9.6834716796875 ], [ -78.318191528320312, -9.6834716796875 ], [ -78.318191528320312, -9.682915687561035 ], [ -78.318473815917969, -9.682915687561035 ], [ -78.318473815917969, -9.68235969543457 ], [ -78.318748474121094, -9.68235969543457 ], [ -78.318748474121094, -9.68208122253418 ], [ -78.320137023925724, -9.682084083557129 ], [ -78.320137023925724, -9.681805610656738 ], [ -78.320968627929631, -9.681805610656738 ], [ -78.320968627929631, -9.68235969543457 ], [ -78.321250915527287, -9.68235969543457 ], [ -78.321250915527287, -9.68208122253418 ], [ -78.321525573730469, -9.68208122253418 ], [ -78.321525573730469, -9.681528091430664 ], [ -78.321250915527287, -9.681528091430664 ], [ -78.321250915527287, -9.680972099304199 ], [ -78.320968627929631, -9.680972099304199 ], [ -78.320968627929631, -9.680415153503418 ], [ -78.319862365722656, -9.68041801452631 ], [ -78.319862365722656, -9.68013954162592 ], [ -78.320137023925724, -9.68013954162592 ], [ -78.320137023925724, -9.679583549499455 ], [ -78.320419311523381, -9.679583549499455 ], [ -78.320419311523381, -9.679306030273438 ], [ -78.320968627929631, -9.679303169250488 ], [ -78.320968627929631, -9.678193092346135 ], [ -78.321250915527287, -9.678193092346135 ], [ -78.321250915527287, -9.677360534667969 ], [ -78.320968627929631, -9.677360534667969 ], [ -78.320968627929631, -9.676251411437988 ], [ -78.322364807128906, -9.676248550414925 ], [ -78.322364807128906, -9.675971031188908 ], [ -78.323471069335881, -9.675971031188908 ], [ -78.323471069335881, -9.675415039062443 ], [ -78.323753356933537, -9.675416946411133 ], [ -78.323753356933537, -9.674583435058594 ], [ -78.323471069335881, -9.674583435058594 ], [ -78.323471069335881, -9.674860954284668 ], [ -78.322639465332031, -9.674860954284668 ], [ -78.322639465332031, -9.673194885253906 ], [ -78.321807861328125, -9.673194885253906 ], [ -78.321807861328125, -9.672917366027832 ], [ -78.320693969726506, -9.672917366027832 ], [ -78.320693969726506, -9.672638893127441 ], [ -78.319862365722656, -9.672638893127441 ], [ -78.319862365722656, -9.672082901000977 ], [ -78.319305419921875, -9.672082901000977 ], [ -78.319305419921875, -9.672361373901367 ], [ -78.318748474121094, -9.672361373901367 ], [ -78.318748474121094, -9.671526908874512 ], [ -78.31903076171875, -9.671526908874512 ], [ -78.31903076171875, -9.67125129699707 ], [ -78.319305419921875, -9.67125129699707 ], [ -78.319305419921875, -9.670972824096623 ], [ -78.319580078125, -9.670972824096623 ], [ -78.319580078125, -9.670139312744141 ], [ -78.319305419921875, -9.670139312744141 ], [ -78.319305419921875, -9.66986083984375 ], [ -78.31903076171875, -9.66986083984375 ], [ -78.31903076171875, -9.669306755065861 ], [ -78.319305419921875, -9.669306755065861 ], [ -78.319305419921875, -9.668473243713322 ], [ -78.319580078125, -9.668473243713322 ], [ -78.319580078125, -9.667917251586857 ], [ -78.319862365722656, -9.667917251586857 ], [ -78.319862365722656, -9.667361259460449 ], [ -78.320137023925724, -9.667361259460449 ], [ -78.320137023925724, -9.666804313659611 ], [ -78.320693969726506, -9.666804313659611 ], [ -78.320693969726506, -9.667361259460449 ], [ -78.320968627929631, -9.667361259460449 ], [ -78.320968627929631, -9.667638778686467 ], [ -78.321250915527287, -9.667638778686467 ], [ -78.321250915527287, -9.667361259460449 ], [ -78.321525573730469, -9.667361259460449 ], [ -78.321525573730469, -9.667084693908691 ], [ -78.32208251953125, -9.667084693908691 ], [ -78.32208251953125, -9.666804313659611 ], [ -78.322914123535156, -9.666804313659611 ], [ -78.322914123535156, -9.666528701782227 ], [ -78.323196411132812, -9.666528701782227 ], [ -78.323196411132812, -9.664582252502385 ], [ -78.322914123535156, -9.664582252502385 ], [ -78.322914123535156, -9.664306640625 ], [ -78.322639465332031, -9.664306640625 ], [ -78.322639465332031, -9.664028167724609 ], [ -78.322364807128906, -9.664028167724609 ], [ -78.322364807128906, -9.663749694824219 ], [ -78.32208251953125, -9.663749694824219 ], [ -78.32208251953125, -9.663472175598145 ], [ -78.321807861328125, -9.663472175598145 ], [ -78.321807861328125, -9.663193702697754 ], [ -78.32208251953125, -9.663193702697754 ], [ -78.32208251953125, -9.662637710571289 ], [ -78.322364807128906, -9.662637710571289 ], [ -78.322364807128906, -9.662360191345215 ], [ -78.322639465332031, -9.662360191345215 ], [ -78.322639465332031, -9.6620836257934 ], [ -78.322914123535156, -9.6620836257934 ], [ -78.322914123535156, -9.66180419921875 ], [ -78.322639465332031, -9.66180419921875 ], [ -78.322639465332031, -9.661250114440918 ], [ -78.32293701171875, -9.661250114440918 ], [ -78.323471069335881, -9.661250114440918 ], [ -78.323471069335881, -9.661527633666935 ], [ -78.3245849609375, -9.661527633666935 ], [ -78.3245849609375, -9.659861564636174 ], [ -78.324859619140625, -9.659859657287598 ], [ -78.324859619140625, -9.659305572509709 ], [ -78.325416564941406, -9.659305572509709 ], [ -78.325416564941406, -9.659584045410099 ], [ -78.325691223144531, -9.659584045410099 ], [ -78.325691223144531, -9.659305572509709 ], [ -78.326248168945312, -9.659305572509709 ], [ -78.326248168945312, -9.659028053283635 ], [ -78.326530456542855, -9.659028053283635 ], [ -78.326530456542855, -9.658749580383244 ], [ -78.326805114746037, -9.658749580383244 ], [ -78.326805114746037, -9.658472061157227 ], [ -78.328193664550781, -9.658472061157227 ], [ -78.328193664550781, -9.659028053283635 ], [ -78.328475952148438, -9.659028053283635 ], [ -78.328475952148438, -9.659305572509709 ], [ -78.330139160156193, -9.659305572509709 ], [ -78.330139160156193, -9.659028053283635 ], [ -78.330413818359318, -9.659028053283635 ], [ -78.330413818359318, -9.658472061157227 ], [ -78.330696105956974, -9.658472061157227 ], [ -78.330696105956974, -9.657084465026799 ], [ -78.330413818359318, -9.657084465026799 ], [ -78.330413818359318, -9.655694007873478 ], [ -78.331802368164062, -9.655694007873478 ], [ -78.331802368164062, -9.655971527099553 ], [ -78.3326416015625, -9.655971527099553 ], [ -78.3326416015625, -9.65625 ], [ -78.333473205566349, -9.65625 ], [ -78.333473205566349, -9.656528472900334 ], [ -78.333747863769474, -9.656528472900334 ], [ -78.333747863769474, -9.656805992126408 ], [ -78.334030151367131, -9.656805992126408 ], [ -78.334030151367131, -9.657084465026799 ], [ -78.334861755371094, -9.657084465026799 ], [ -78.334861755371094, -9.65625 ], [ -78.335418701171875, -9.65625 ], [ -78.335418701171875, -9.655971527099553 ], [ -78.335693359375, -9.655971527099553 ], [ -78.335693359375, -9.655694007873478 ], [ -78.336250305175724, -9.655694007873478 ], [ -78.336250305175724, -9.655415534973088 ], [ -78.336524963378849, -9.655415534973088 ], [ -78.336524963378849, -9.654862403869515 ], [ -78.336807250976506, -9.654862403869515 ], [ -78.336807250976506, -9.653193473815804 ], [ -78.335693359375, -9.653193473815804 ], [ -78.335693359375, -9.652915000915527 ], [ -78.335418701171875, -9.652915000915527 ], [ -78.335418701171875, -9.652359008788949 ], [ -78.335693359375, -9.652361869812012 ], [ -78.335693359375, -9.652084350585938 ], [ -78.335975646972656, -9.652084350585938 ], [ -78.335975646972656, -9.651527404785156 ], [ -78.335693359375, -9.651527404785156 ], [ -78.335693359375, -9.65069580078125 ], [ -78.334861755371094, -9.65069580078125 ], [ -78.334861755371094, -9.650138854980412 ], [ -78.334587097167969, -9.650138854980412 ], [ -78.334587097167969, -9.648774147033691 ], [ -78.335418701171875, -9.648749351501465 ], [ -78.335418701171875, -9.649026870727539 ], [ -78.336524963378849, -9.649026870727539 ], [ -78.336524963378849, -9.64930534362793 ], [ -78.337638854980469, -9.64930534362793 ], [ -78.337638854980469, -9.649026870727539 ], [ -78.337913513183594, -9.649026870727539 ], [ -78.337913513183594, -9.648749351501465 ], [ -78.338470458984375, -9.648751258850041 ], [ -78.338470458984375, -9.648470878601074 ], [ -78.338752746582031, -9.648470878601074 ], [ -78.338752746582031, -9.647916793823185 ], [ -78.339027404785156, -9.647916793823185 ], [ -78.339027404785156, -9.647083282470646 ], [ -78.339302062988224, -9.647083282470646 ], [ -78.339302062988224, -9.645138740539551 ], [ -78.339584350585881, -9.645138740539551 ], [ -78.339584350585881, -9.644582748413029 ], [ -78.339859008789006, -9.644582748413029 ], [ -78.339859008789006, -9.644026756286564 ], [ -78.340141296386662, -9.644026756286564 ], [ -78.340141296386662, -9.64374923706049 ], [ -78.339859008789006, -9.64375114440918 ], [ -78.339859008789006, -9.643472671508789 ], [ -78.339584350585881, -9.643472671508789 ], [ -78.339584350585881, -9.64263916015625 ], [ -78.339027404785156, -9.64263916015625 ], [ -78.339027404785156, -9.641804695129395 ], [ -78.338752746582031, -9.641804695129395 ], [ -78.338752746582031, -9.640970230102539 ], [ -78.339027404785156, -9.640970230102539 ], [ -78.339027404785156, -9.640417098999023 ], [ -78.339302062988224, -9.640417098999023 ], [ -78.339302062988224, -9.640138626098633 ], [ -78.340415954589844, -9.640138626098633 ], [ -78.340415954589844, -9.640417098999023 ], [ -78.341804504394531, -9.640417098999023 ], [ -78.341804504394531, -9.640694618225098 ], [ -78.343193054199162, -9.640694618225098 ], [ -78.343193054199162, -9.640417098999023 ], [ -78.344581604003906, -9.640417098999023 ], [ -78.344581604003906, -9.640138626098633 ], [ -78.345138549804688, -9.640138626098633 ], [ -78.345138549804688, -9.639028549194279 ], [ -78.344863891601562, -9.639028549194279 ], [ -78.344863891601562, -9.638472557067814 ], [ -78.344306945800781, -9.638472557067814 ], [ -78.344306945800781, -9.637915611267033 ], [ -78.344581604003906, -9.637915611267033 ], [ -78.344581604003906, -9.637363433837834 ], [ -78.344306945800781, -9.637363433837834 ], [ -78.344306945800781, -9.636805534362793 ], [ -78.344024658203125, -9.636805534362793 ], [ -78.344024658203125, -9.636526107788086 ], [ -78.34375, -9.636528015136605 ], [ -78.34375, -9.636249542236328 ], [ -78.344024658203125, -9.636249542236328 ], [ -78.344024658203125, -9.63569355010975 ], [ -78.344306945800781, -9.63569355010975 ], [ -78.344306945800781, -9.634028434753418 ], [ -78.344024658203125, -9.634028434753418 ], [ -78.344024658203125, -9.633472442626896 ], [ -78.345138549804688, -9.633472442626896 ], [ -78.345138549804688, -9.633749961853027 ], [ -78.345695495605412, -9.633749961853027 ], [ -78.345695495605412, -9.634028434753418 ], [ -78.345970153808537, -9.634028434753418 ], [ -78.345970153808537, -9.634305953979492 ], [ -78.346252441406193, -9.634305953979492 ], [ -78.346252441406193, -9.634028434753418 ], [ -78.3468017578125, -9.634028434753418 ], [ -78.3468017578125, -9.633749961853027 ], [ -78.347084045410156, -9.633749961853027 ], [ -78.347084045410156, -9.633472442626896 ], [ -78.347358703613281, -9.633472442626896 ], [ -78.347358703613281, -9.632637977600041 ], [ -78.347640991210938, -9.632637977600041 ], [ -78.347640991210938, -9.631527900695801 ], [ -78.348197937011719, -9.631527900695801 ], [ -78.348197937011719, -9.633472442626896 ], [ -78.348472595214844, -9.633472442626896 ], [ -78.348472595214844, -9.633749961853027 ], [ -78.348747253417912, -9.633749961853027 ], [ -78.348747253417912, -9.634028434753418 ], [ -78.349029541015568, -9.634028434753418 ], [ -78.349029541015568, -9.634305953979492 ], [ -78.349304199218693, -9.634305953979492 ], [ -78.349304199218693, -9.634028434753418 ], [ -78.349586486816349, -9.634028434753418 ], [ -78.349586486816349, -9.632916450500431 ], [ -78.349861145019474, -9.632916450500431 ], [ -78.349861145019474, -9.632637977600041 ], [ -78.350135803222656, -9.632637977600041 ], [ -78.350135803222656, -9.632362365722656 ], [ -78.350975036621094, -9.632362365722656 ], [ -78.350975036621094, -9.632081985473576 ], [ -78.351524353027344, -9.632081985473576 ], [ -78.351524353027344, -9.631806373596191 ], [ -78.352363586425724, -9.631806373596191 ], [ -78.352363586425724, -9.631527900695801 ], [ -78.352912902831974, -9.631527900695801 ], [ -78.352912902831974, -9.631250381469727 ], [ -78.353195190429688, -9.631250381469727 ], [ -78.353195190429688, -9.630694389343262 ], [ -78.352912902831974, -9.630694389343262 ], [ -78.352912902831974, -9.63014030456543 ], [ -78.352638244628849, -9.63014030456543 ], [ -78.352638244628849, -9.629584312438965 ], [ -78.352363586425724, -9.629584312438965 ], [ -78.352363586425724, -9.629305839538574 ], [ -78.354026794433594, -9.629305839538574 ], [ -78.354026794433594, -9.6290283203125 ], [ -78.354583740234375, -9.6290283203125 ], [ -78.354583740234375, -9.628749847412109 ], [ -78.355140686035043, -9.628749847412109 ], [ -78.355140686035043, -9.62791633605957 ], [ -78.3548583984375, -9.62791633605957 ], [ -78.3548583984375, -9.627639770507756 ], [ -78.354583740234375, -9.627639770507756 ], [ -78.354583740234375, -9.627362251281681 ], [ -78.35430908203125, -9.627362251281681 ], [ -78.35430908203125, -9.626527786254826 ], [ -78.355140686035043, -9.626527786254826 ], [ -78.355140686035043, -9.626806259155273 ], [ -78.355415344238224, -9.626806259155273 ], [ -78.355415344238224, -9.627083778381291 ], [ -78.355697631835881, -9.627083778381291 ], [ -78.355697631835881, -9.626806259155273 ], [ -78.35736083984375, -9.626806259155273 ], [ -78.35736083984375, -9.626527786254826 ], [ -78.357635498046875, -9.626527786254826 ], [ -78.357635498046875, -9.626250267028809 ], [ -78.357917785644531, -9.626250267028809 ], [ -78.357917785644531, -9.625693321227971 ], [ -78.358192443847543, -9.625693321227971 ], [ -78.358192443847543, -9.625417709350472 ], [ -78.358474731445256, -9.625417709350472 ], [ -78.358474731445256, -9.625140190124455 ], [ -78.360137939453125, -9.625140190124455 ], [ -78.360137939453125, -9.624581336975098 ], [ -78.360420227050781, -9.624583244323617 ], [ -78.360420227050781, -9.624027252197209 ], [ -78.361091613769531, -9.624027252197209 ], [ -78.361251831054688, -9.624027252197209 ], [ -78.361251831054688, -9.624861717224064 ], [ -78.362358093261662, -9.624861717224064 ], [ -78.362358093261662, -9.625140190124455 ], [ -78.362640380859318, -9.625140190124455 ], [ -78.362640380859318, -9.625417709350472 ], [ -78.363197326660156, -9.625417709350472 ], [ -78.363197326660156, -9.625693321227971 ], [ -78.3629150390625, -9.625693321227971 ], [ -78.3629150390625, -9.625970840454045 ], [ -78.363197326660156, -9.625970840454045 ], [ -78.363197326660156, -9.626527786254826 ], [ -78.3629150390625, -9.626527786254826 ], [ -78.3629150390625, -9.627083778381291 ], [ -78.362640380859318, -9.627083778381291 ], [ -78.362640380859318, -9.628472328186035 ], [ -78.3629150390625, -9.628472328186035 ], [ -78.3629150390625, -9.628749847412109 ], [ -78.363197326660156, -9.628749847412109 ], [ -78.363197326660156, -9.629861831665039 ], [ -78.363471984863281, -9.629861831665039 ], [ -78.363471984863281, -9.630971908569336 ], [ -78.364799499511719, -9.630971908569336 ], [ -78.364860534667912, -9.631084442138615 ], [ -78.364860534667912, -9.631250381469727 ], [ -78.364585876464844, -9.631250381469727 ], [ -78.364585876464844, -9.631527900695801 ], [ -78.365135192871037, -9.631527900695801 ], [ -78.365135192871037, -9.631806373596191 ], [ -78.365417480468693, -9.631806373596191 ], [ -78.365417480468693, -9.632081985473576 ], [ -78.365692138671818, -9.632081985473576 ], [ -78.365692138671818, -9.631806373596191 ], [ -78.365974426269531, -9.631806373596191 ], [ -78.365974426269531, -9.631527900695801 ], [ -78.366249084472656, -9.631527900695801 ], [ -78.366249084472656, -9.631250381469727 ], [ -78.367080688476562, -9.631250381469727 ], [ -78.367080688476562, -9.630694389343262 ], [ -78.367362976074219, -9.630694389343262 ], [ -78.367362976074219, -9.629584312438965 ], [ -78.367637634277344, -9.629584312438965 ], [ -78.367637634277344, -9.629305839538574 ], [ -78.367362976074219, -9.629305839538574 ], [ -78.367362976074219, -9.628472328186035 ], [ -78.368751525878849, -9.628472328186035 ], [ -78.368751525878849, -9.628749847412109 ], [ -78.369026184082031, -9.628749847412109 ], [ -78.369026184082031, -9.628472328186035 ], [ -78.369308471679688, -9.628472328186035 ], [ -78.369308471679688, -9.62791633605957 ], [ -78.369583129882812, -9.62791633605957 ], [ -78.369583129882812, -9.627362251281681 ], [ -78.369308471679688, -9.627362251281681 ], [ -78.369308471679688, -9.626806259155273 ], [ -78.369026184082031, -9.626806259155273 ], [ -78.369026184082031, -9.626527786254826 ], [ -78.368469238281193, -9.626527786254826 ], [ -78.368469238281193, -9.625970840454045 ], [ -78.368751525878849, -9.625970840454045 ], [ -78.368751525878849, -9.624861717224064 ], [ -78.368469238281193, -9.624861717224064 ], [ -78.368469238281193, -9.624581336975098 ], [ -78.368194580078068, -9.624583244323617 ], [ -78.368194580078068, -9.62430477142334 ], [ -78.367919921874886, -9.62430477142334 ], [ -78.367919921874886, -9.624027252197209 ], [ -78.367637634277344, -9.624027252197209 ], [ -78.367637634277344, -9.623748779296761 ], [ -78.367362976074219, -9.623748779296761 ], [ -78.367362976074219, -9.623471260070744 ], [ -78.367080688476562, -9.623471260070744 ], [ -78.367080688476562, -9.623194694519043 ], [ -78.366806030273438, -9.623194694519043 ], [ -78.366806030273438, -9.622915267944279 ], [ -78.366531372070312, -9.622915267944279 ], [ -78.366531372070312, -9.623194694519043 ], [ -78.366249084472656, -9.623194694519043 ], [ -78.366249084472656, -9.623471260070744 ], [ -78.365692138671818, -9.623471260070744 ], [ -78.365692138671818, -9.623748779296761 ], [ -78.365135192871037, -9.623748779296761 ], [ -78.365135192871037, -9.623471260070744 ], [ -78.364860534667912, -9.623471260070744 ], [ -78.364860534667912, -9.623194694519043 ], [ -78.364585876464844, -9.623194694519043 ], [ -78.364585876464844, -9.622915267944279 ], [ -78.364303588867188, -9.622917175292969 ], [ -78.364303588867188, -9.622361183166504 ], [ -78.364028930664062, -9.622361183166504 ], [ -78.364028930664062, -9.621803283691406 ], [ -78.363746643066406, -9.621805191040039 ], [ -78.363746643066406, -9.621526718139648 ], [ -78.364028930664062, -9.621526718139648 ], [ -78.364028930664062, -9.621249198913574 ], [ -78.364303588867188, -9.621249198913574 ], [ -78.364303588867188, -9.62097263336176 ], [ -78.365135192871037, -9.62097263336176 ], [ -78.365135192871037, -9.620695114135742 ], [ -78.365974426269531, -9.620695114135742 ], [ -78.365974426269531, -9.620416641235352 ], [ -78.366249084472656, -9.620416641235352 ], [ -78.366249084472656, -9.620139122009277 ], [ -78.365974426269531, -9.620139122009277 ], [ -78.365974426269531, -9.619583129882812 ], [ -78.365692138671818, -9.619583129882812 ], [ -78.365692138671818, -9.619027137756348 ], [ -78.365417480468693, -9.619029045104924 ], [ -78.365417480468693, -9.618748664855957 ], [ -78.365135192871037, -9.618748664855957 ], [ -78.365135192871037, -9.618471145629883 ], [ -78.364860534667912, -9.618471145629883 ], [ -78.364860534667912, -9.617917060852051 ], [ -78.364585876464844, -9.617917060852051 ], [ -78.364585876464844, -9.617638587951603 ], [ -78.364303588867188, -9.617638587951603 ], [ -78.364303588867188, -9.616805076599121 ], [ -78.364028930664062, -9.616805076599121 ], [ -78.364028930664062, -9.616249084472656 ], [ -78.363746643066406, -9.616249084472656 ], [ -78.363746643066406, -9.615693092346191 ], [ -78.363471984863281, -9.615694999694767 ], [ -78.363471984863281, -9.615358352661133 ], [ -78.363471984863281, -9.615139007568303 ], [ -78.363197326660156, -9.615139007568303 ], [ -78.363197326660156, -9.614583015441838 ], [ -78.3629150390625, -9.614583015441838 ], [ -78.3629150390625, -9.61402702331543 ], [ -78.362640380859318, -9.61402702331543 ], [ -78.362640380859318, -9.612916946411076 ], [ -78.363197326660156, -9.612916946411076 ], [ -78.363197326660156, -9.612639427185002 ], [ -78.363471984863281, -9.612639427185002 ], [ -78.363471984863281, -9.611529350280762 ], [ -78.363746643066406, -9.611529350280762 ], [ -78.363746643066406, -9.61097240447998 ], [ -78.3629150390625, -9.61097240447998 ], [ -78.3629150390625, -9.61069393157959 ], [ -78.362358093261662, -9.61069393157959 ], [ -78.362358093261662, -9.609306335449219 ], [ -78.362083435058537, -9.609306335449219 ], [ -78.362083435058537, -9.609027862548771 ], [ -78.361808776855412, -9.609027862548771 ], [ -78.361808776855412, -9.608750343322754 ], [ -78.362358093261662, -9.608750343322754 ], [ -78.362358093261662, -9.608471870422363 ], [ -78.362640380859318, -9.608471870422363 ], [ -78.362640380859318, -9.608194351196289 ], [ -78.363471984863281, -9.608194351196289 ], [ -78.363471984863281, -9.608471870422363 ], [ -78.364028930664062, -9.608471870422363 ], [ -78.364028930664062, -9.608750343322754 ], [ -78.364585876464844, -9.608750343322754 ], [ -78.364585876464844, -9.608471870422363 ], [ -78.364860534667912, -9.608471870422363 ], [ -78.364860534667912, -9.609027862548771 ], [ -78.365135192871037, -9.609027862548771 ], [ -78.365135192871037, -9.609306335449219 ], [ -78.365692138671818, -9.609306335449219 ], [ -78.365692138671818, -9.60958194732666 ], [ -78.365974426269531, -9.60958194732666 ], [ -78.365974426269531, -9.609860420227051 ], [ -78.366249084472656, -9.609860420227051 ], [ -78.366249084472656, -9.610137939453125 ], [ -78.366531372070312, -9.610137939453125 ], [ -78.366531372070312, -9.610416412353516 ], [ -78.366806030273438, -9.610416412353516 ], [ -78.366806030273438, -9.61069393157959 ], [ -78.368194580078068, -9.61069393157959 ], [ -78.368194580078068, -9.610416412353516 ], [ -78.369026184082031, -9.610416412353516 ], [ -78.369026184082031, -9.60958194732666 ], [ -78.368751525878849, -9.60958194732666 ], [ -78.368751525878849, -9.609027862548771 ], [ -78.368469238281193, -9.609027862548771 ], [ -78.368469238281193, -9.608471870422363 ], [ -78.368194580078068, -9.608471870422363 ], [ -78.368194580078068, -9.608194351196289 ], [ -78.367362976074219, -9.608194351196289 ], [ -78.367362976074219, -9.608471870422363 ], [ -78.366531372070312, -9.608471870422363 ], [ -78.366531372070312, -9.608194351196289 ], [ -78.366249084472656, -9.608194351196289 ], [ -78.366249084472656, -9.607915878295898 ], [ -78.365692138671818, -9.607915878295898 ], [ -78.365692138671818, -9.6076402664184 ], [ -78.365417480468693, -9.6076402664184 ], [ -78.365417480468693, -9.607359886169434 ], [ -78.365135192871037, -9.607359886169434 ], [ -78.365135192871037, -9.606805801391545 ], [ -78.364860534667912, -9.606805801391545 ], [ -78.364860534667912, -9.605416297912598 ], [ -78.365135192871037, -9.605416297912598 ], [ -78.365135192871037, -9.605137825012207 ], [ -78.365417480468693, -9.605137825012207 ], [ -78.365417480468693, -9.604860305786133 ], [ -78.365692138671818, -9.604862213134709 ], [ -78.365692138671818, -9.604583740234375 ], [ -78.365417480468693, -9.604583740234375 ], [ -78.365417480468693, -9.604306221008244 ], [ -78.365135192871037, -9.604306221008244 ], [ -78.365135192871037, -9.603750228881779 ], [ -78.365417480468693, -9.603750228881779 ], [ -78.365417480468693, -9.6032457351684 ], [ -78.365417480468693, -9.602915763854924 ], [ -78.366249084472656, -9.602915763854924 ], [ -78.366249084472656, -9.603194236755314 ], [ -78.367080688476562, -9.603194236755314 ], [ -78.367080688476562, -9.604027748107853 ], [ -78.367362976074219, -9.604027748107853 ], [ -78.367362976074219, -9.604583740234375 ], [ -78.367637634277344, -9.604583740234375 ], [ -78.367637634277344, -9.604862213134709 ], [ -78.367919921874886, -9.604860305786133 ], [ -78.367919921874886, -9.605416297912598 ], [ -78.368194580078068, -9.605416297912598 ], [ -78.368194580078068, -9.605137825012207 ], [ -78.368469238281193, -9.605137825012207 ], [ -78.368469238281193, -9.604860305786133 ], [ -78.368751525878849, -9.604862213134709 ], [ -78.368751525878849, -9.604583740234375 ], [ -78.368469238281193, -9.604583740234375 ], [ -78.368469238281193, -9.604306221008244 ], [ -78.368194580078068, -9.604306221008244 ], [ -78.368194580078068, -9.603750228881779 ], [ -78.367919921874886, -9.603750228881779 ], [ -78.367919921874886, -9.601249694824219 ], [ -78.367637634277344, -9.601249694824219 ], [ -78.367637634277344, -9.600416183471623 ], [ -78.367362976074219, -9.600418090820312 ], [ -78.367362976074219, -9.599583625793457 ], [ -78.367080688476562, -9.599583625793457 ], [ -78.367080688476562, -9.599027633666992 ], [ -78.365974426269531, -9.599027633666992 ], [ -78.365974426269531, -9.598749160766602 ], [ -78.365692138671818, -9.598749160766602 ], [ -78.365692138671818, -9.598473548889103 ], [ -78.365417480468693, -9.598473548889103 ], [ -78.365417480468693, -9.598193168640137 ], [ -78.365135192871037, -9.598193168640137 ], [ -78.365135192871037, -9.597917556762638 ], [ -78.365417480468693, -9.597917556762638 ], [ -78.365417480468693, -9.597637176513672 ], [ -78.366249084472656, -9.597640037536621 ], [ -78.366249084472656, -9.596804618835392 ], [ -78.366531372070312, -9.596804618835392 ], [ -78.366531372070312, -9.596527099609375 ], [ -78.366806030273438, -9.596527099609375 ], [ -78.366806030273438, -9.595694541931152 ], [ -78.367080688476562, -9.595694541931152 ], [ -78.367080688476562, -9.595269203186035 ], [ -78.367080688476562, -9.595138549804574 ], [ -78.368049621582031, -9.595138549804574 ], [ -78.368751525878849, -9.595138549804574 ], [ -78.368751525878849, -9.595417022705021 ], [ -78.369026184082031, -9.595415115356445 ], [ -78.369026184082031, -9.595694541931152 ], [ -78.369583129882812, -9.595694541931152 ], [ -78.369583129882812, -9.595415115356445 ], [ -78.369857788085938, -9.595417022705021 ], [ -78.369857788085938, -9.594026565551701 ], [ -78.370140075683594, -9.594026565551701 ], [ -78.370140075683594, -9.593193054199219 ], [ -78.369583129882812, -9.593193054199219 ], [ -78.369583129882812, -9.592917442321721 ], [ -78.369308471679688, -9.592917442321721 ], [ -78.369308471679688, -9.592638969421387 ], [ -78.368469238281193, -9.592638969421387 ], [ -78.368469238281193, -9.592361450195256 ], [ -78.368751525878849, -9.592361450195256 ], [ -78.368751525878849, -9.591805458068791 ], [ -78.368469238281193, -9.591805458068791 ], [ -78.368469238281193, -9.590970993041935 ], [ -78.368751525878849, -9.590970993041935 ], [ -78.368751525878849, -9.59041690826416 ], [ -78.369583129882812, -9.59041690826416 ], [ -78.369583129882812, -9.590139389038086 ], [ -78.369857788085938, -9.590139389038086 ], [ -78.369857788085938, -9.589860916137695 ], [ -78.370140075683594, -9.589860916137695 ], [ -78.370140075683594, -9.589306831359863 ], [ -78.370414733886719, -9.589306831359863 ], [ -78.370414733886719, -9.588473320007324 ], [ -78.370140075683594, -9.588473320007324 ], [ -78.370140075683594, -9.587917327880859 ], [ -78.369857788085938, -9.587917327880859 ], [ -78.369857788085938, -9.587638854980469 ], [ -78.371246337890568, -9.587638854980469 ], [ -78.371246337890568, -9.587361335754395 ], [ -78.371528625488224, -9.587361335754395 ], [ -78.371528625488224, -9.587082862854004 ], [ -78.372085571289006, -9.587082862854004 ], [ -78.372085571289006, -9.58680534362793 ], [ -78.372642517089844, -9.58680534362793 ], [ -78.372642517089844, -9.586528778076115 ], [ -78.372917175292969, -9.586528778076115 ], [ -78.372917175292969, -9.586251258850098 ], [ -78.372642517089844, -9.586251258850098 ], [ -78.372642517089844, -9.58597278594965 ], [ -78.372360229492188, -9.58597278594965 ], [ -78.372360229492188, -9.585692405700684 ], [ -78.372085571289006, -9.585695266723633 ], [ -78.372085571289006, -9.585416793823242 ], [ -78.371803283691349, -9.585416793823242 ], [ -78.371803283691349, -9.584859848022404 ], [ -78.371246337890568, -9.584859848022404 ], [ -78.371246337890568, -9.584582328796387 ], [ -78.370697021484375, -9.584582328796387 ], [ -78.370697021484375, -9.584306716918888 ], [ -78.369026184082031, -9.584306716918888 ], [ -78.369026184082031, -9.584467887878418 ], [ -78.369026184082031, -9.584582328796387 ], [ -78.368774414062443, -9.584582328796387 ], [ -78.368469238281193, -9.584582328796387 ], [ -78.368469238281193, -9.584720611572209 ], [ -78.368469238281193, -9.584859848022404 ], [ -78.368194580078068, -9.584859848022404 ], [ -78.368194580078068, -9.585138320922795 ], [ -78.367080688476562, -9.585138320922795 ], [ -78.367080688476562, -9.584582328796387 ], [ -78.367362976074219, -9.584582328796387 ], [ -78.367362976074219, -9.584029197692814 ], [ -78.367637634277344, -9.584026336669922 ], [ -78.367637634277344, -9.583472251892033 ], [ -78.367362976074219, -9.583472251892033 ], [ -78.367362976074219, -9.582914352416992 ], [ -78.367080688476562, -9.582916259765568 ], [ -78.367080688476562, -9.582637786865178 ], [ -78.366531372070312, -9.582637786865178 ], [ -78.366531372070312, -9.582360267639103 ], [ -78.366249084472656, -9.582360267639103 ], [ -78.366249084472656, -9.582083702087402 ], [ -78.365974426269531, -9.582083702087402 ], [ -78.365974426269531, -9.581527709960938 ], [ -78.365692138671818, -9.581527709960938 ], [ -78.365692138671818, -9.580971717834473 ], [ -78.366249084472656, -9.580971717834473 ], [ -78.366249084472656, -9.580694198608398 ], [ -78.366531372070312, -9.580694198608398 ], [ -78.366531372070312, -9.580415725708008 ], [ -78.366806030273438, -9.580415725708008 ], [ -78.366806030273438, -9.580138206481877 ], [ -78.367080688476562, -9.580138206481877 ], [ -78.367080688476562, -9.579028129577637 ], [ -78.366806030273438, -9.579028129577637 ], [ -78.366806030273438, -9.578470230102482 ], [ -78.367080688476562, -9.578472137451172 ], [ -78.367080688476562, -9.578193664550781 ], [ -78.367362976074219, -9.578193664550781 ], [ -78.367362976074219, -9.57652759552002 ], [ -78.367637634277344, -9.57652759552002 ], [ -78.367637634277344, -9.57569408416748 ], [ -78.367919921874886, -9.57569408416748 ], [ -78.367919921874886, -9.575138092041016 ], [ -78.366531372070312, -9.575138092041016 ], [ -78.366531372070312, -9.574582099914551 ], [ -78.366806030273438, -9.574584007263127 ], [ -78.366806030273438, -9.574305534362736 ], [ -78.367080688476562, -9.574305534362736 ], [ -78.367080688476562, -9.574028015136662 ], [ -78.367919921874886, -9.574028015136662 ], [ -78.367919921874886, -9.573472023010254 ], [ -78.367637634277344, -9.573472023010254 ], [ -78.367637634277344, -9.572084426879826 ], [ -78.367362976074219, -9.572084426879826 ], [ -78.367362976074219, -9.571805953979435 ], [ -78.367080688476562, -9.571805953979435 ], [ -78.367080688476562, -9.571526527404785 ], [ -78.366806030273438, -9.571526527404785 ], [ -78.366806030273438, -9.571249008178597 ], [ -78.366531372070312, -9.571249008178597 ], [ -78.366531372070312, -9.570693016052189 ], [ -78.3671875, -9.570693016052189 ], [ -78.367362976074219, -9.570693016052189 ], [ -78.367362976074219, -9.57086181640625 ], [ -78.367362976074219, -9.57097053527832 ], [ -78.367477416992188, -9.57097053527832 ], [ -78.367637634277344, -9.57097053527832 ], [ -78.367637634277344, -9.571122169494572 ], [ -78.367637634277344, -9.571249008178597 ], [ -78.367767333984375, -9.571249008178597 ], [ -78.368469238281193, -9.571249008178597 ], [ -78.368469238281193, -9.57140922546381 ], [ -78.368469238281193, -9.5723619461059 ], [ -78.369026184082031, -9.5723619461059 ], [ -78.369026184082031, -9.572084426879826 ], [ -78.369308471679688, -9.572084426879826 ], [ -78.369308471679688, -9.571526527404785 ], [ -78.370140075683594, -9.571526527404785 ], [ -78.370140075683594, -9.570693016052189 ], [ -78.369857788085938, -9.570693016052189 ], [ -78.369857788085938, -9.570137023925724 ], [ -78.369583129882812, -9.570138931274414 ], [ -78.369583129882812, -9.56986141204834 ], [ -78.369308471679688, -9.56986141204834 ], [ -78.369308471679688, -9.56958103179926 ], [ -78.368469238281193, -9.569582939147949 ], [ -78.368469238281193, -9.569305419921875 ], [ -78.368751525878849, -9.569305419921875 ], [ -78.368751525878849, -9.568751335144043 ], [ -78.369026184082031, -9.568751335144043 ], [ -78.369026184082031, -9.56847095489502 ], [ -78.369308471679688, -9.56847095489502 ], [ -78.369308471679688, -9.567916870117188 ], [ -78.369583129882812, -9.567916870117188 ], [ -78.369583129882812, -9.567639350891113 ], [ -78.370140075683594, -9.567639350891113 ], [ -78.370140075683594, -9.567916870117188 ], [ -78.370971679687386, -9.567916870117188 ], [ -78.370971679687386, -9.567639350891113 ], [ -78.371246337890568, -9.567639350891113 ], [ -78.371246337890568, -9.567360877990723 ], [ -78.371528625488224, -9.567360877990723 ], [ -78.371528625488224, -9.565694808959904 ], [ -78.371246337890568, -9.565694808959904 ], [ -78.371246337890568, -9.565417289733887 ], [ -78.370697021484375, -9.565417289733887 ], [ -78.370697021484375, -9.565138816833439 ], [ -78.370414733886719, -9.565138816833439 ], [ -78.370414733886719, -9.564861297607422 ], [ -78.369857788085938, -9.564861297607422 ], [ -78.369857788085938, -9.564305305480957 ], [ -78.370971679687386, -9.564305305480957 ], [ -78.370971679687386, -9.563751220703068 ], [ -78.370697021484375, -9.563751220703068 ], [ -78.370697021484375, -9.563470840454102 ], [ -78.370414733886719, -9.563470840454102 ], [ -78.370414733886719, -9.563195228576603 ], [ -78.370140075683594, -9.563195228576603 ], [ -78.370140075683594, -9.562916755676213 ], [ -78.369857788085938, -9.562916755676213 ], [ -78.369857788085938, -9.562639236450138 ], [ -78.369308471679688, -9.562639236450138 ], [ -78.369308471679688, -9.562360763549748 ], [ -78.369026184082031, -9.562360763549748 ], [ -78.369026184082031, -9.562083244323674 ], [ -78.368751525878849, -9.562083244323674 ], [ -78.368751525878849, -9.561804771423283 ], [ -78.368194580078068, -9.561804771423283 ], [ -78.368194580078068, -9.560971260070801 ], [ -78.366806030273438, -9.56097316741932 ], [ -78.366806030273438, -9.560694694519043 ], [ -78.366531372070312, -9.560694694519043 ], [ -78.366531372070312, -9.559861183166447 ], [ -78.366806030273438, -9.559861183166447 ], [ -78.366806030273438, -9.559028625488281 ], [ -78.367362976074219, -9.559028625488281 ], [ -78.367362976074219, -9.558748245239201 ], [ -78.367637634277344, -9.558751106262207 ], [ -78.367637634277344, -9.558195114135742 ], [ -78.367919921874886, -9.558195114135742 ], [ -78.367919921874886, -9.556806564331055 ], [ -78.368194580078068, -9.556806564331055 ], [ -78.368194580078068, -9.556526184082031 ], [ -78.368469238281193, -9.556528091430607 ], [ -78.368469238281193, -9.556249618530217 ], [ -78.368751525878849, -9.556249618530217 ], [ -78.368751525878849, -9.555693626403752 ], [ -78.369026184082031, -9.555693626403752 ], [ -78.369026184082031, -9.555137634277344 ], [ -78.369583129882812, -9.555137634277344 ], [ -78.369583129882812, -9.55486011505127 ], [ -78.370140075683594, -9.55486011505127 ], [ -78.370140075683594, -9.554583549499398 ], [ -78.370697021484375, -9.554583549499398 ], [ -78.370697021484375, -9.554304122924805 ], [ -78.371246337890568, -9.554304122924805 ], [ -78.371246337890568, -9.55402755737299 ], [ -78.371803283691349, -9.55402755737299 ], [ -78.371803283691349, -9.553750038146916 ], [ -78.372085571289006, -9.553750038146916 ], [ -78.372085571289006, -9.553471565246525 ], [ -78.372642517089844, -9.553471565246525 ], [ -78.372642517089844, -9.553194046020451 ], [ -78.372917175292969, -9.553194046020451 ], [ -78.372917175292969, -9.552362442016545 ], [ -78.372360229492188, -9.552362442016545 ], [ -78.372360229492188, -9.551250457763615 ], [ -78.372917175292969, -9.551250457763615 ], [ -78.372917175292969, -9.55180644989008 ], [ -78.373191833496094, -9.55180644989008 ], [ -78.373191833496094, -9.552083969116211 ], [ -78.374305725097599, -9.552083969116211 ], [ -78.374305725097599, -9.55180644989008 ], [ -78.374580383300724, -9.55180644989008 ], [ -78.374580383300724, -9.551250457763615 ], [ -78.374862670898381, -9.551250457763615 ], [ -78.374862670898381, -9.55041599273676 ], [ -78.375137329101506, -9.55041599273676 ], [ -78.375137329101506, -9.549860000610295 ], [ -78.374862670898381, -9.549861907958984 ], [ -78.374862670898381, -9.54958438873291 ], [ -78.374305725097599, -9.54958438873291 ], [ -78.374305725097599, -9.549028396606332 ], [ -78.375694274902344, -9.549028396606332 ], [ -78.375694274902344, -9.548472404479924 ], [ -78.37652587890625, -9.548472404479924 ], [ -78.37652587890625, -9.549028396606332 ], [ -78.376808166503906, -9.549028396606332 ], [ -78.376808166503906, -9.548749923706055 ], [ -78.377082824707031, -9.548749923706055 ], [ -78.377082824707031, -9.548472404479924 ], [ -78.377639770507756, -9.548472404479924 ], [ -78.377639770507756, -9.548195838928223 ], [ -78.377914428710881, -9.548195838928223 ], [ -78.377914428710881, -9.547916412353459 ], [ -78.378471374511662, -9.547916412353459 ], [ -78.378471374511662, -9.547637939453068 ], [ -78.3790283203125, -9.547639846801758 ], [ -78.3790283203125, -9.547362327575684 ], [ -78.379302978515625, -9.547362327575684 ], [ -78.379302978515625, -9.547080993652344 ], [ -78.380416870117188, -9.547080993652344 ], [ -78.380416870117188, -9.547637939453068 ], [ -78.380691528320256, -9.547637939453068 ], [ -78.380691528320256, -9.547916412353459 ], [ -78.380973815917912, -9.547916412353459 ], [ -78.380973815917912, -9.547637939453068 ], [ -78.381530761718693, -9.547637939453068 ], [ -78.381530761718693, -9.547080993652344 ], [ -78.382080078125, -9.547080993652344 ], [ -78.382080078125, -9.547362327575684 ], [ -78.382362365722656, -9.547362327575684 ], [ -78.382362365722656, -9.546806335449219 ], [ -78.382637023925781, -9.546806335449219 ], [ -78.382637023925781, -9.546250343322754 ], [ -78.382919311523438, -9.546250343322754 ], [ -78.382919311523438, -9.545693397521973 ], [ -78.383193969726562, -9.545693397521973 ], [ -78.383193969726562, -9.545137405395508 ], [ -78.383468627929688, -9.545140266418457 ], [ -78.383468627929688, -9.544584274291992 ], [ -78.38375091552723, -9.544584274291992 ], [ -78.38375091552723, -9.544304847717228 ], [ -78.384025573730412, -9.544304847717228 ], [ -78.384025573730412, -9.543748855590763 ], [ -78.384307861328068, -9.543748855590763 ], [ -78.384307861328068, -9.543471336364746 ], [ -78.384582519531193, -9.543471336364746 ], [ -78.384582519531193, -9.542915344238281 ], [ -78.384025573730412, -9.542915344238281 ], [ -78.384025573730412, -9.54263877868641 ], [ -78.383468627929688, -9.54263877868641 ], [ -78.383468627929688, -9.542361259460392 ], [ -78.383193969726562, -9.542361259460392 ], [ -78.383193969726562, -9.542082786560002 ], [ -78.382919311523438, -9.542082786560002 ], [ -78.382919311523438, -9.541805267333928 ], [ -78.382362365722656, -9.541805267333928 ], [ -78.382362365722656, -9.541526794433537 ], [ -78.382080078125, -9.541526794433537 ], [ -78.382080078125, -9.541426658630371 ], [ -78.382080078125, -9.540693283081055 ], [ -78.381805419921875, -9.540695190429688 ], [ -78.381805419921875, -9.539860725402832 ], [ -78.382080078125, -9.539860725402832 ], [ -78.382080078125, -9.539029121398926 ], [ -78.382362365722656, -9.539029121398926 ], [ -78.382362365722656, -9.538748741149846 ], [ -78.382637023925781, -9.538748741149846 ], [ -78.382637023925781, -9.538473129272461 ], [ -78.383468627929688, -9.538473129272461 ], [ -78.383468627929688, -9.53819465637207 ], [ -78.384025573730412, -9.53819465637207 ], [ -78.384025573730412, -9.537915229797306 ], [ -78.384582519531193, -9.537917137145996 ], [ -78.384582519531193, -9.537638664245605 ], [ -78.384864807128849, -9.537638664245605 ], [ -78.384864807128849, -9.537359237670842 ], [ -78.385139465332031, -9.537361145019531 ], [ -78.385139465332031, -9.537082672119141 ], [ -78.385414123535156, -9.537082672119141 ], [ -78.385414123535156, -9.536803245544434 ], [ -78.385696411132812, -9.536805152893066 ], [ -78.385696411132812, -9.536526679992676 ], [ -78.387916564941349, -9.536526679992676 ], [ -78.387916564941349, -9.536249160766488 ], [ -78.388191223144531, -9.536251068115234 ], [ -78.388191223144531, -9.535972595214844 ], [ -78.388473510742188, -9.535972595214844 ], [ -78.388473510742188, -9.534860610961914 ], [ -78.388748168945312, -9.534860610961914 ], [ -78.388748168945312, -9.533748626708984 ], [ -78.388191223144531, -9.533748626708984 ], [ -78.388191223144531, -9.533470153808594 ], [ -78.387916564941349, -9.533470153808594 ], [ -78.387916564941349, -9.532917022705078 ], [ -78.387641906738224, -9.532917022705078 ], [ -78.387641906738224, -9.532638549804631 ], [ -78.387916564941349, -9.532638549804631 ], [ -78.387916564941349, -9.532361030578613 ], [ -78.388748168945312, -9.532361030578613 ], [ -78.388748168945312, -9.532638549804631 ], [ -78.389030456542969, -9.532638549804631 ], [ -78.389030456542969, -9.532917022705078 ], [ -78.389579772949219, -9.532917022705078 ], [ -78.389579772949219, -9.533194541931096 ], [ -78.389862060546875, -9.533194541931096 ], [ -78.389862060546875, -9.532917022705078 ], [ -78.390136718749943, -9.532917022705078 ], [ -78.390136718749943, -9.532638549804631 ], [ -78.390419006347599, -9.532638549804631 ], [ -78.390419006347599, -9.532361030578613 ], [ -78.390975952148381, -9.532361030578613 ], [ -78.390975952148381, -9.532081604003849 ], [ -78.391807556152344, -9.532081604003849 ], [ -78.391807556152344, -9.532361030578613 ], [ -78.392082214355469, -9.532361030578613 ], [ -78.392082214355469, -9.532638549804631 ], [ -78.39263916015625, -9.532638549804631 ], [ -78.39263916015625, -9.532361030578613 ], [ -78.393196105957031, -9.532361030578613 ], [ -78.393196105957031, -9.531804084777775 ], [ -78.392913818359375, -9.531804084777775 ], [ -78.392913818359375, -9.531248092651367 ], [ -78.391807556152344, -9.531248092651367 ], [ -78.391807556152344, -9.530692100524902 ], [ -78.392082214355469, -9.530694007873421 ], [ -78.392082214355469, -9.530415534973145 ], [ -78.391807556152344, -9.530415534973145 ], [ -78.391807556152344, -9.530138015747013 ], [ -78.391525268554688, -9.530138015747013 ], [ -78.391525268554688, -9.529863357543945 ], [ -78.390419006347599, -9.529863357543945 ], [ -78.390419006347599, -9.530138015747013 ], [ -78.389862060546875, -9.530138015747013 ], [ -78.389862060546875, -9.530013084411621 ], [ -78.389862060546875, -9.529863357543945 ], [ -78.389755249023381, -9.529863357543945 ], [ -78.389579772949219, -9.529863357543945 ], [ -78.389579772949219, -9.529582023620549 ], [ -78.389030456542969, -9.529582023620549 ], [ -78.389030456542969, -9.529863357543945 ], [ -78.387916564941349, -9.529863357543945 ], [ -78.387916564941349, -9.529112815856877 ], [ -78.387916564941349, -9.529027938842773 ], [ -78.387641906738224, -9.529027938842773 ], [ -78.387641906738224, -9.528194427490234 ], [ -78.387359619140568, -9.528194427490234 ], [ -78.387359619140568, -9.527915954589844 ], [ -78.387641906738224, -9.527915954589844 ], [ -78.387641906738224, -9.527638435363713 ], [ -78.387916564941349, -9.527638435363713 ], [ -78.387916564941349, -9.527359962463379 ], [ -78.386528015136719, -9.527359962463379 ], [ -78.386528015136719, -9.526249885559082 ], [ -78.386253356933594, -9.526249885559082 ], [ -78.386253356933594, -9.525416374206543 ], [ -78.386528015136719, -9.525416374206543 ], [ -78.386528015136719, -9.524581909179688 ], [ -78.387084960937443, -9.524581909179688 ], [ -78.387084960937443, -9.524027824401855 ], [ -78.38680267333973, -9.524027824401855 ], [ -78.38680267333973, -9.522640228271428 ], [ -78.386528015136719, -9.522640228271428 ], [ -78.386528015136719, -9.522084236144963 ], [ -78.386253356933594, -9.522084236144963 ], [ -78.386253356933594, -9.52097225189209 ], [ -78.385971069335938, -9.52097225189209 ], [ -78.385971069335938, -9.520139694213867 ], [ -78.386253356933594, -9.520139694213867 ], [ -78.386253356933594, -9.519859313964787 ], [ -78.386528015136719, -9.519862174987736 ], [ -78.386528015136719, -9.519583702087289 ], [ -78.38680267333973, -9.519583702087289 ], [ -78.38680267333973, -9.518750190734806 ], [ -78.386528015136719, -9.518750190734806 ], [ -78.386528015136719, -9.517917633056641 ], [ -78.387084960937443, -9.517917633056641 ], [ -78.387084960937443, -9.517361640930176 ], [ -78.387359619140568, -9.517361640930176 ], [ -78.387359619140568, -9.515971183776855 ], [ -78.387641906738224, -9.515971183776855 ], [ -78.387641906738224, -9.515694618225041 ], [ -78.387916564941349, -9.515694618225041 ], [ -78.387916564941349, -9.515415191650391 ], [ -78.388191223144531, -9.515417098999023 ], [ -78.388191223144531, -9.515138626098576 ], [ -78.388473510742188, -9.515138626098576 ], [ -78.388473510742188, -9.514859199523869 ], [ -78.388748168945312, -9.514859199523869 ], [ -78.388748168945312, -9.514305114746094 ], [ -78.389030456542969, -9.514305114746094 ], [ -78.389030456542969, -9.514026641845703 ], [ -78.389305114746094, -9.514026641845703 ], [ -78.389305114746094, -9.513472557067814 ], [ -78.389579772949219, -9.513472557067814 ], [ -78.389579772949219, -9.513193130493164 ], [ -78.390419006347599, -9.513193130493164 ], [ -78.390419006347599, -9.512916564941349 ], [ -78.390693664550724, -9.512916564941349 ], [ -78.390693664550724, -9.512360572814885 ], [ -78.390975952148381, -9.512360572814885 ], [ -78.390975952148381, -9.511248588562012 ], [ -78.391250610351506, -9.511248588562012 ], [ -78.391250610351506, -9.510971069335938 ], [ -78.391525268554688, -9.510971069335938 ], [ -78.391525268554688, -9.510416984558049 ], [ -78.392364501953125, -9.510416984558049 ], [ -78.392364501953125, -9.50958347320551 ], [ -78.392082214355469, -9.50958347320551 ], [ -78.392082214355469, -9.508749008178654 ], [ -78.39263916015625, -9.508750915527344 ], [ -78.39263916015625, -9.508473396301156 ], [ -78.394302368164006, -9.508473396301156 ], [ -78.394302368164006, -9.508193016052246 ], [ -78.394584655761719, -9.508193016052246 ], [ -78.394584655761719, -9.5076389312743 ], [ -78.394859313964844, -9.5076389312743 ], [ -78.394859313964844, -9.507082939147892 ], [ -78.394584655761719, -9.507082939147892 ], [ -78.394584655761719, -9.506526947021428 ], [ -78.394302368164006, -9.506528854370117 ], [ -78.394302368164006, -9.506251335144043 ], [ -78.393753051757756, -9.506251335144043 ], [ -78.393753051757756, -9.505970001220589 ], [ -78.393470764160099, -9.505972862243652 ], [ -78.393196105957031, -9.505972862243652 ], [ -78.393196105957031, -9.505810737609863 ], [ -78.393196105957031, -9.505695343017578 ], [ -78.392913818359375, -9.505695343017578 ], [ -78.392913818359375, -9.505416870117188 ], [ -78.39263916015625, -9.505416870117188 ], [ -78.39263916015625, -9.505139350891113 ], [ -78.392364501953125, -9.505139350891113 ], [ -78.392364501953125, -9.504859924316406 ], [ -78.393753051757756, -9.504859924316406 ], [ -78.393753051757756, -9.504582405090332 ], [ -78.394859313964844, -9.504582405090332 ], [ -78.394859313964844, -9.504306793212891 ], [ -78.3951416015625, -9.504306793212891 ], [ -78.3951416015625, -9.504026412963867 ], [ -78.395416259765625, -9.504026412963867 ], [ -78.395416259765625, -9.503750801086426 ], [ -78.39569091796875, -9.503750801086426 ], [ -78.39569091796875, -9.503472328186035 ], [ -78.395973205566406, -9.503472328186035 ], [ -78.395973205566406, -9.503193855285588 ], [ -78.396247863769531, -9.503193855285588 ], [ -78.396247863769531, -9.50263786315918 ], [ -78.396530151367074, -9.50263786315918 ], [ -78.396530151367074, -9.502083778381234 ], [ -78.396804809570256, -9.502083778381234 ], [ -78.396804809570256, -9.501250267028752 ], [ -78.397087097167912, -9.501250267028752 ], [ -78.397087097167912, -9.500415802001896 ], [ -78.397361755371037, -9.500415802001896 ], [ -78.397361755371037, -9.499859809875431 ], [ -78.397636413574219, -9.499859809875431 ], [ -78.397636413574219, -9.499028205871525 ], [ -78.397361755371037, -9.499028205871525 ], [ -78.397361755371037, -9.49847221374506 ], [ -78.396530151367074, -9.49847221374506 ], [ -78.396530151367074, -9.498749732971191 ], [ -78.396247863769531, -9.498749732971191 ], [ -78.396247863769531, -9.499028205871525 ], [ -78.395973205566406, -9.499028205871525 ], [ -78.395973205566406, -9.499305725097656 ], [ -78.39569091796875, -9.499305725097656 ], [ -78.39569091796875, -9.499420166015625 ], [ -78.39569091796875, -9.499584197998047 ], [ -78.395416259765625, -9.499584197998047 ], [ -78.3951416015625, -9.499584197998047 ], [ -78.3951416015625, -9.499028205871525 ], [ -78.395416259765625, -9.499028205871525 ], [ -78.395416259765625, -9.497637748718205 ], [ -78.3951416015625, -9.497637748718205 ], [ -78.3951416015625, -9.497916221618596 ], [ -78.394859313964844, -9.49791431427002 ], [ -78.394859313964844, -9.49819374084467 ], [ -78.394584655761719, -9.49819374084467 ], [ -78.394584655761719, -9.49847221374506 ], [ -78.394027709960881, -9.49847221374506 ], [ -78.394027709960881, -9.497637748718205 ], [ -78.394584655761719, -9.497637748718205 ], [ -78.394584655761719, -9.49708366394043 ], [ -78.394859313964844, -9.49708366394043 ], [ -78.394859313964844, -9.496527671813965 ], [ -78.394584655761719, -9.496527671813965 ], [ -78.394584655761719, -9.4959716796875 ], [ -78.394302368164006, -9.4959716796875 ], [ -78.394302368164006, -9.495694160461312 ], [ -78.394027709960881, -9.495694160461312 ], [ -78.394027709960881, -9.495415687561035 ], [ -78.393753051757756, -9.495415687561035 ], [ -78.393753051757756, -9.494859695434457 ], [ -78.394027709960881, -9.494859695434457 ], [ -78.394027709960881, -9.494582176208439 ], [ -78.394302368164006, -9.494584083557129 ], [ -78.394302368164006, -9.493749618530273 ], [ -78.394027709960881, -9.493749618530273 ], [ -78.394027709960881, -9.493193626403809 ], [ -78.393753051757756, -9.493193626403809 ], [ -78.393753051757756, -9.492916107177734 ], [ -78.393196105957031, -9.49291801452631 ], [ -78.393196105957031, -9.492083549499455 ], [ -78.393470764160099, -9.492083549499455 ], [ -78.393470764160099, -9.490970611572209 ], [ -78.394584655761719, -9.490970611572209 ], [ -78.394584655761719, -9.491249084472599 ], [ -78.3951416015625, -9.491249084472599 ], [ -78.3951416015625, -9.490970611572209 ], [ -78.395416259765625, -9.490970611572209 ], [ -78.395416259765625, -9.490693092346191 ], [ -78.39569091796875, -9.490693092346191 ], [ -78.39569091796875, -9.490137100219727 ], [ -78.396530151367074, -9.490137100219727 ], [ -78.396530151367074, -9.49041843414301 ], [ -78.397087097167912, -9.49041843414301 ], [ -78.397087097167912, -9.48930454254139 ], [ -78.397361755371037, -9.48930454254139 ], [ -78.397361755371037, -9.489027023315373 ], [ -78.397636413574219, -9.489027023315373 ], [ -78.397636413574219, -9.488752365112248 ], [ -78.397918701171875, -9.488748550414982 ], [ -78.397918701171875, -9.488471031188908 ], [ -78.398193359375, -9.488471031188908 ], [ -78.398193359375, -9.488195419311523 ], [ -78.398475646972656, -9.488195419311523 ], [ -78.398475646972656, -9.487915039062443 ], [ -78.398193359375, -9.487915039062443 ], [ -78.398193359375, -9.487359046936035 ], [ -78.397918701171875, -9.487359046936035 ], [ -78.397918701171875, -9.486804962158203 ], [ -78.397636413574219, -9.486804962158203 ], [ -78.397636413574219, -9.486248970031681 ], [ -78.398475646972656, -9.486248970031681 ], [ -78.398475646972656, -9.485973358154297 ], [ -78.399307250976562, -9.485973358154297 ], [ -78.399307250976562, -9.485417366027832 ], [ -78.399024963378906, -9.485417366027832 ], [ -78.399024963378906, -9.484861373901367 ], [ -78.398750305175781, -9.484861373901367 ], [ -78.398750305175781, -9.484026908874512 ], [ -78.398475646972656, -9.484026908874512 ], [ -78.398475646972656, -9.483195304870605 ], [ -78.398193359375, -9.483195304870605 ], [ -78.398193359375, -9.482916831970215 ], [ -78.397918701171875, -9.482916831970215 ], [ -78.397918701171875, -9.482639312744141 ], [ -78.397636413574219, -9.482639312744141 ], [ -78.397636413574219, -9.48236083984375 ], [ -78.397361755371037, -9.48236083984375 ], [ -78.397361755371037, -9.482639312744141 ], [ -78.396804809570256, -9.482639312744141 ], [ -78.396804809570256, -9.482083320617676 ], [ -78.396530151367074, -9.482083320617676 ], [ -78.396530151367074, -9.481529235839787 ], [ -78.395973205566406, -9.481527328491211 ], [ -78.395973205566406, -9.480971336364746 ], [ -78.397087097167912, -9.480971336364746 ], [ -78.397087097167912, -9.481250762939396 ], [ -78.397361755371037, -9.481250762939396 ], [ -78.397361755371037, -9.480417251586914 ], [ -78.397636413574219, -9.480417251586914 ], [ -78.397636413574219, -9.480138778686467 ], [ -78.397918701171875, -9.480138778686467 ], [ -78.397918701171875, -9.479305267333984 ], [ -78.397071838378849, -9.479305267333984 ], [ -78.396530151367074, -9.479305267333984 ], [ -78.396530151367074, -9.479028701782113 ], [ -78.396247863769531, -9.479028701782113 ], [ -78.396247863769531, -9.478907585144043 ], [ -78.396247863769531, -9.478748321533203 ], [ -78.395973205566406, -9.478751182556096 ], [ -78.395973205566406, -9.478472709655705 ], [ -78.395439147949219, -9.478472709655705 ], [ -78.395416259765625, -9.478192329406738 ], [ -78.395187377929631, -9.478192329406738 ], [ -78.394859313964844, -9.478195190429631 ], [ -78.394859313964844, -9.47791671752924 ], [ -78.39569091796875, -9.47791671752924 ], [ -78.39569091796875, -9.478195190429631 ], [ -78.396247863769531, -9.478195190429631 ], [ -78.396247863769531, -9.47791671752924 ], [ -78.396530151367074, -9.47791671752924 ], [ -78.396530151367074, -9.477636337280273 ], [ -78.396804809570256, -9.477638244628849 ], [ -78.396804809570256, -9.477359771728402 ], [ -78.398475646972656, -9.477359771728402 ], [ -78.398475646972656, -9.477638244628849 ], [ -78.399307250976562, -9.477636337280273 ], [ -78.399307250976562, -9.47791671752924 ], [ -78.400138854980412, -9.47791671752924 ], [ -78.400138854980412, -9.477082252502385 ], [ -78.400970458984375, -9.477082252502385 ], [ -78.400970458984375, -9.476865768432617 ], [ -78.400970458984375, -9.476529121398926 ], [ -78.401527404785156, -9.476529121398926 ], [ -78.401527404785156, -9.477638244628849 ], [ -78.401802062988281, -9.477636337280273 ], [ -78.401802062988281, -9.477952957153263 ], [ -78.401802062988281, -9.478472709655705 ], [ -78.402084350585938, -9.478472709655705 ], [ -78.402084350585938, -9.479305267333984 ], [ -78.402359008789062, -9.479305267333984 ], [ -78.402359008789062, -9.479028701782113 ], [ -78.402915954589787, -9.479028701782113 ], [ -78.402915954589787, -9.478748321533203 ], [ -78.403190612792912, -9.478751182556096 ], [ -78.403198242187443, -9.478472709655705 ], [ -78.403472900390568, -9.478472709655705 ], [ -78.403472900390568, -9.478192329406738 ], [ -78.404029846191349, -9.478195190429631 ], [ -78.404029846191349, -9.47791671752924 ], [ -78.404304504394531, -9.47791671752924 ], [ -78.404304504394531, -9.477636337280273 ], [ -78.404586791992188, -9.477636337280273 ], [ -78.404586791992188, -9.477082252502385 ], [ -78.404861450195312, -9.477082252502385 ], [ -78.404861450195312, -9.476806640625 ], [ -78.404586791992188, -9.476806640625 ], [ -78.404586791992188, -9.475972175598145 ], [ -78.404861450195312, -9.475972175598145 ], [ -78.404861450195312, -9.47541618347168 ], [ -78.405136108398438, -9.47541618347168 ], [ -78.405136108398438, -9.474860191345215 ], [ -78.404861450195312, -9.474860191345215 ], [ -78.404861450195312, -9.474027633666992 ], [ -78.404586791992188, -9.474027633666992 ], [ -78.404586791992188, -9.474304199218693 ], [ -78.404304504394531, -9.474304199218693 ], [ -78.404304504394531, -9.4745836257934 ], [ -78.403472900390568, -9.4745836257934 ], [ -78.403472900390568, -9.474105834960881 ], [ -78.403472900390568, -9.472638130187988 ], [ -78.403198242187443, -9.472638130187988 ], [ -78.403190612792912, -9.472361564636174 ], [ -78.402915954589787, -9.472361564636174 ], [ -78.402915954589787, -9.471805572509709 ], [ -78.403190612792912, -9.471805572509709 ], [ -78.403190612792912, -9.471249580383244 ], [ -78.402915954589787, -9.471249580383244 ], [ -78.402915954589787, -9.470972061157227 ], [ -78.402359008789062, -9.470972061157227 ], [ -78.402359008789062, -9.470137596130371 ], [ -78.401527404785156, -9.470137596130371 ], [ -78.401527404785156, -9.470270156860352 ], [ -78.401527404785156, -9.470416069030762 ], [ -78.400970458984375, -9.470416069030762 ], [ -78.400970458984375, -9.470693588256836 ], [ -78.400413513183537, -9.470693588256836 ], [ -78.400413513183537, -9.470972061157227 ], [ -78.399581909179574, -9.470972061157227 ], [ -78.399581909179574, -9.471249580383244 ], [ -78.398193359375, -9.471249580383244 ], [ -78.398193359375, -9.471528053283691 ], [ -78.397361755371037, -9.471528053283691 ], [ -78.397361755371037, -9.470693588256836 ], [ -78.397087097167912, -9.470693588256836 ], [ -78.397087097167912, -9.469860076904297 ], [ -78.397361755371037, -9.469860076904297 ], [ -78.397361755371037, -9.469305992126408 ], [ -78.397636413574219, -9.469305992126408 ], [ -78.397636413574219, -9.46875 ], [ -78.397918701171875, -9.46875 ], [ -78.397918701171875, -9.46763801574707 ], [ -78.397636413574219, -9.46763801574707 ], [ -78.397636413574219, -9.467082023620605 ], [ -78.397361755371037, -9.467083930969125 ], [ -78.397361755371037, -9.466806411743107 ], [ -78.398750305175781, -9.466806411743107 ], [ -78.398750305175781, -9.466527938842717 ], [ -78.399024963378906, -9.466527938842717 ], [ -78.399024963378906, -9.465971946716252 ], [ -78.399307250976562, -9.465971946716252 ], [ -78.399307250976562, -9.464859008789006 ], [ -78.399024963378906, -9.464861869812012 ], [ -78.399024963378906, -9.464305877685547 ], [ -78.398750305175781, -9.464305877685547 ], [ -78.398750305175781, -9.463748931884766 ], [ -78.397918701171875, -9.463748931884766 ], [ -78.397918701171875, -9.46319580078125 ], [ -78.397361755371037, -9.46319580078125 ], [ -78.397361755371037, -9.462915420532227 ], [ -78.396804809570256, -9.462915420532227 ], [ -78.396804809570256, -9.462638854980412 ], [ -78.395973205566406, -9.462638854980412 ], [ -78.395973205566406, -9.462361335754395 ], [ -78.395416259765625, -9.462361335754395 ], [ -78.395416259765625, -9.462082862854004 ], [ -78.39569091796875, -9.462082862854004 ], [ -78.39569091796875, -9.461526870727539 ], [ -78.394584655761719, -9.461526870727539 ], [ -78.394584655761719, -9.462082862854004 ], [ -78.394386291503906, -9.462082862854004 ], [ -78.394027709960881, -9.462082862854004 ], [ -78.394027709960881, -9.46180534362793 ], [ -78.393753051757756, -9.46180534362793 ], [ -78.393753051757756, -9.461249351501465 ], [ -78.393470764160099, -9.461249351501465 ], [ -78.393470764160099, -9.460970878601074 ], [ -78.393196105957031, -9.460970878601074 ], [ -78.393196105957031, -9.460416793823185 ], [ -78.392913818359375, -9.460416793823185 ], [ -78.392913818359375, -9.458473205566349 ], [ -78.393196105957031, -9.458473205566349 ], [ -78.393196105957031, -9.457917213439885 ], [ -78.39263916015625, -9.457917213439885 ], [ -78.39263916015625, -9.457638740539494 ], [ -78.392364501953125, -9.457638740539494 ], [ -78.392364501953125, -9.457359313964844 ], [ -78.391807556152344, -9.45736122131342 ], [ -78.391807556152344, -9.457082748413029 ], [ -78.391525268554688, -9.457082748413029 ], [ -78.391525268554688, -9.456805229186955 ], [ -78.390975952148381, -9.456805229186955 ], [ -78.390975952148381, -9.456526756286564 ], [ -78.390419006347599, -9.456526756286564 ], [ -78.390419006347599, -9.45624923706049 ], [ -78.389862060546875, -9.45625114440918 ], [ -78.389862060546875, -9.455416679382324 ], [ -78.390136718749943, -9.455416679382324 ], [ -78.390136718749943, -9.454583168029728 ], [ -78.389305114746094, -9.454583168029728 ], [ -78.389305114746094, -9.454860687255859 ], [ -78.389030456542969, -9.454860687255859 ], [ -78.389030456542969, -9.455416679382324 ], [ -78.388473510742188, -9.455416679382324 ], [ -78.388473510742188, -9.455139160156136 ], [ -78.387084960937443, -9.455139160156136 ], [ -78.387084960937443, -9.455416679382324 ], [ -78.385917663574162, -9.455416679382324 ], [ -78.385414123535156, -9.455416679382324 ], [ -78.385414123535156, -9.455139160156136 ], [ -78.385139465332031, -9.455139160156136 ], [ -78.385139465332031, -9.454860687255859 ], [ -78.384864807128849, -9.454860687255859 ], [ -78.384864807128849, -9.454583168029728 ], [ -78.384582519531193, -9.454583168029728 ], [ -78.384582519531193, -9.454304695129281 ], [ -78.384307861328068, -9.454304695129281 ], [ -78.384307861328068, -9.454027175903263 ], [ -78.384025573730412, -9.454027175903263 ], [ -78.384025573730412, -9.453471183776799 ], [ -78.384307861328068, -9.453471183776799 ], [ -78.384307861328068, -9.452917098999023 ], [ -78.384582519531193, -9.452917098999023 ], [ -78.384582519531193, -9.452361106872559 ], [ -78.384307861328068, -9.452361106872559 ], [ -78.384307861328068, -9.451804161071777 ], [ -78.384025573730412, -9.451804161071777 ], [ -78.384025573730412, -9.451528549194279 ], [ -78.38375091552723, -9.451528549194279 ], [ -78.38375091552723, -9.450972557067871 ], [ -78.383468627929688, -9.450972557067871 ], [ -78.383468627929688, -9.450415611267033 ], [ -78.38375091552723, -9.450415611267033 ], [ -78.38375091552723, -9.449863433837834 ], [ -78.384025573730412, -9.449863433837834 ], [ -78.384025573730412, -9.449307441711426 ], [ -78.384307861328068, -9.449307441711426 ], [ -78.384307861328068, -9.448470115661621 ], [ -78.384025573730412, -9.448470115661621 ], [ -78.384025573730412, -9.447916030883732 ], [ -78.384307861328068, -9.447916030883732 ], [ -78.384307861328068, -9.447637557983342 ], [ -78.384582519531193, -9.447637557983342 ], [ -78.384582519531193, -9.447360038757267 ], [ -78.384307861328068, -9.447360038757267 ], [ -78.384307861328068, -9.446528434753361 ], [ -78.384025573730412, -9.446528434753361 ], [ -78.384025573730412, -9.445693969726506 ], [ -78.384307861328068, -9.445693969726506 ], [ -78.384307861328068, -9.445137977600041 ], [ -78.384582519531193, -9.445137977600041 ], [ -78.384582519531193, -9.444581985473576 ], [ -78.384864807128849, -9.444581985473576 ], [ -78.384864807128849, -9.444027900695801 ], [ -78.385139465332031, -9.444027900695801 ], [ -78.385139465332031, -9.443471908569336 ], [ -78.385414123535156, -9.443471908569336 ], [ -78.385414123535156, -9.442915916442871 ], [ -78.385696411132812, -9.442915916442871 ], [ -78.385696411132812, -9.442084312438965 ], [ -78.385971069335938, -9.442084312438965 ], [ -78.385971069335938, -9.4415283203125 ], [ -78.386528015136719, -9.4415283203125 ], [ -78.386528015136719, -9.441805839538574 ], [ -78.38680267333973, -9.441805839538574 ], [ -78.38680267333973, -9.441249847412109 ], [ -78.387084960937443, -9.441249847412109 ], [ -78.387084960937443, -9.440693855285645 ], [ -78.387359619140568, -9.440693855285645 ], [ -78.387359619140568, -9.44041633605957 ], [ -78.387641906738224, -9.44041633605957 ], [ -78.387641906738224, -9.439862251281738 ], [ -78.387916564941349, -9.439862251281738 ], [ -78.387916564941349, -9.439583778381291 ], [ -78.387641906738224, -9.439583778381291 ], [ -78.387641906738224, -9.438750267028809 ], [ -78.387916564941349, -9.438750267028809 ], [ -78.387916564941349, -9.438193321228027 ], [ -78.388191223144531, -9.438193321228027 ], [ -78.388191223144531, -9.437917709350529 ], [ -78.388473510742188, -9.437917709350529 ], [ -78.388473510742188, -9.437361717224064 ], [ -78.388748168945312, -9.437361717224064 ], [ -78.388748168945312, -9.436804771423226 ], [ -78.389305114746094, -9.436804771423226 ], [ -78.389305114746094, -9.436527252197209 ], [ -78.389579772949219, -9.436527252197209 ], [ -78.389579772949219, -9.436248779296818 ], [ -78.389862060546875, -9.436248779296818 ], [ -78.389862060546875, -9.435971260070744 ], [ -78.390136718749943, -9.435971260070744 ], [ -78.390136718749943, -9.435695648193359 ], [ -78.390419006347599, -9.435695648193359 ], [ -78.390419006347599, -9.435138702392578 ], [ -78.390693664550724, -9.435138702392578 ], [ -78.390693664550724, -9.434859275817871 ], [ -78.390975952148381, -9.434859275817871 ], [ -78.390975952148381, -9.434303283691406 ], [ -78.391250610351506, -9.434305191040039 ], [ -78.391250610351506, -9.434026718139648 ], [ -78.391525268554688, -9.434026718139648 ], [ -78.391525268554688, -9.433472633361816 ], [ -78.391807556152344, -9.433472633361816 ], [ -78.391807556152344, -9.433193206787053 ], [ -78.39263916015625, -9.433193206787053 ], [ -78.39263916015625, -9.432916641235352 ], [ -78.393196105957031, -9.432916641235352 ], [ -78.393196105957031, -9.432639122009277 ], [ -78.393470764160099, -9.432639122009277 ], [ -78.393470764160099, -9.432360649108887 ], [ -78.394859313964844, -9.432360649108887 ], [ -78.394859313964844, -9.432083129882812 ], [ -78.395416259765625, -9.432083129882812 ], [ -78.395416259765625, -9.431527137756348 ], [ -78.39569091796875, -9.431527137756348 ], [ -78.39569091796875, -9.430694580078068 ], [ -78.396247863769531, -9.430694580078068 ], [ -78.396247863769531, -9.430973052978516 ], [ -78.396804809570256, -9.430971145629883 ], [ -78.396804809570256, -9.431248664855957 ], [ -78.398857116699219, -9.431248664855957 ], [ -78.399024963378906, -9.431248664855957 ], [ -78.399024963378906, -9.431527137756348 ], [ -78.399307250976562, -9.431527137756348 ], [ -78.399307250976562, -9.431802749633732 ], [ -78.399581909179574, -9.431804656982422 ], [ -78.399581909179574, -9.432083129882812 ], [ -78.400825500488281, -9.432083129882812 ], [ -78.400970458984375, -9.432083129882812 ], [ -78.400970458984375, -9.432639122009277 ], [ -78.401252746582031, -9.432639122009277 ], [ -78.401252746582031, -9.432916641235352 ], [ -78.401527404785156, -9.432916641235352 ], [ -78.401527404785156, -9.433193206787053 ], [ -78.401802062988281, -9.433193206787053 ], [ -78.401802062988281, -9.433472633361816 ], [ -78.402084350585938, -9.433472633361816 ], [ -78.402084350585938, -9.433749198913517 ], [ -78.402359008789062, -9.433749198913517 ], [ -78.402359008789062, -9.434026718139648 ], [ -78.402641296386719, -9.434026718139648 ], [ -78.402641296386719, -9.434305191040039 ], [ -78.402801513671818, -9.434305191040039 ], [ -78.402915954589787, -9.434303283691406 ], [ -78.402915954589787, -9.434500694274846 ], [ -78.402915954589787, -9.434582710266113 ], [ -78.403198242187443, -9.434582710266113 ], [ -78.403198242187443, -9.434861183166504 ], [ -78.404861450195312, -9.434859275817871 ], [ -78.404861450195312, -9.435971260070744 ], [ -78.40625, -9.435971260070744 ], [ -78.40625, -9.436527252197209 ], [ -78.406524658203068, -9.436527252197209 ], [ -78.406524658203068, -9.436804771423226 ], [ -78.407081604003849, -9.436804771423226 ], [ -78.407081604003849, -9.43708419799799 ], [ -78.407913208007812, -9.437081336975098 ], [ -78.407913208007812, -9.436527252197209 ], [ -78.407638549804688, -9.436527252197209 ], [ -78.407638549804688, -9.436248779296818 ], [ -78.407913208007812, -9.436248779296818 ], [ -78.407913208007812, -9.435415267944279 ], [ -78.408195495605469, -9.435417175292969 ], [ -78.408195495605469, -9.434859275817871 ], [ -78.407913208007812, -9.434859275817871 ], [ -78.407913208007812, -9.434303283691406 ], [ -78.408195495605469, -9.434305191040039 ], [ -78.408195495605469, -9.432916641235352 ], [ -78.407913208007812, -9.432916641235352 ], [ -78.407913208007812, -9.432639122009277 ], [ -78.407363891601562, -9.432639122009277 ], [ -78.407363891601562, -9.432360649108887 ], [ -78.407081604003849, -9.432360649108887 ], [ -78.407081604003849, -9.430971145629883 ], [ -78.407363891601562, -9.430973052978516 ], [ -78.407363891601562, -9.430694580078068 ], [ -78.407638549804688, -9.430694580078068 ], [ -78.407638549804688, -9.430417060852051 ], [ -78.407913208007812, -9.430417060852051 ], [ -78.407913208007812, -9.43013858795166 ], [ -78.407638549804688, -9.43013858795166 ], [ -78.407638549804688, -9.429861068725586 ], [ -78.407363891601562, -9.429861068725586 ], [ -78.407363891601562, -9.428473472595158 ], [ -78.407638549804688, -9.428473472595158 ], [ -78.407638549804688, -9.427916526794377 ], [ -78.407363891601562, -9.427916526794377 ], [ -78.407363891601562, -9.42652702331543 ], [ -78.407081604003849, -9.42652702331543 ], [ -78.407081604003849, -9.425970077514592 ], [ -78.407363891601562, -9.425970077514592 ], [ -78.407363891601562, -9.425416946411076 ], [ -78.407081604003849, -9.425416946411076 ], [ -78.407081604003849, -9.424860954284611 ], [ -78.407516479492188, -9.424860954284611 ], [ -78.408195495605469, -9.424860954284611 ], [ -78.408195495605469, -9.425139427185002 ], [ -78.408470153808594, -9.425139427185002 ], [ -78.408470153808594, -9.425695419311467 ], [ -78.40875244140625, -9.425695419311467 ], [ -78.40875244140625, -9.425972938537541 ], [ -78.409584045410099, -9.425970077514592 ], [ -78.409584045410099, -9.426248550415039 ], [ -78.409858703613224, -9.426251411437931 ], [ -78.409858703613224, -9.426528930663949 ], [ -78.410697937011719, -9.426528930663949 ], [ -78.410697937011719, -9.426251411437931 ], [ -78.410972595214844, -9.426248550415039 ], [ -78.410972595214844, -9.425970077514592 ], [ -78.41180419921875, -9.425970077514592 ], [ -78.41180419921875, -9.42430400848383 ], [ -78.412361145019418, -9.424306869506836 ], [ -78.412361145019418, -9.424025535583382 ], [ -78.412635803222599, -9.424025535583382 ], [ -78.412635803222599, -9.423748016357365 ], [ -78.412918090820256, -9.423750877380371 ], [ -78.412918090820256, -9.42347335815424 ], [ -78.413192749023381, -9.42347335815424 ], [ -78.413192749023381, -9.42319393157959 ], [ -78.413749694824219, -9.42319393157959 ], [ -78.413749694824219, -9.422857284545785 ], [ -78.413749694824219, -9.422637939453125 ], [ -78.414306640625, -9.422637939453125 ], [ -78.414306640625, -9.423378944396916 ], [ -78.414306640625, -9.423750877380371 ], [ -78.414634704589787, -9.423750877380371 ], [ -78.415138244628906, -9.423748016357365 ], [ -78.415138244628906, -9.424025535583382 ], [ -78.415412902831918, -9.424025535583382 ], [ -78.415412902831918, -9.424306869506836 ], [ -78.415969848632756, -9.42430400848383 ], [ -78.415969848632756, -9.424581527709961 ], [ -78.416252136230412, -9.424581527709961 ], [ -78.416252136230412, -9.426740646362248 ], [ -78.416252136230412, -9.427360534667912 ], [ -78.416526794433537, -9.427360534667912 ], [ -78.416526794433537, -9.427916526794377 ], [ -78.417083740234375, -9.427916526794377 ], [ -78.417083740234375, -9.427360534667912 ], [ -78.4173583984375, -9.427360534667912 ], [ -78.4173583984375, -9.426804542541447 ], [ -78.417640686035156, -9.426804542541447 ], [ -78.417640686035156, -9.42652702331543 ], [ -78.417915344238281, -9.426528930663949 ], [ -78.417915344238281, -9.425695419311467 ], [ -78.418197631835938, -9.425695419311467 ], [ -78.418197631835938, -9.425416946411076 ], [ -78.417915344238281, -9.425416946411076 ], [ -78.417915344238281, -9.424860954284611 ], [ -78.417640686035156, -9.424860954284611 ], [ -78.417640686035156, -9.42430400848383 ], [ -78.4173583984375, -9.424306869506836 ], [ -78.4173583984375, -9.42347335815424 ], [ -78.417083740234375, -9.42347335815424 ], [ -78.417083740234375, -9.42319393157959 ], [ -78.415969848632756, -9.42319393157959 ], [ -78.415969848632756, -9.420694351196289 ], [ -78.415412902831918, -9.420694351196289 ], [ -78.415412902831918, -9.419584274291935 ], [ -78.415695190429631, -9.419584274291935 ], [ -78.415695190429631, -9.418472290039062 ], [ -78.415969848632756, -9.418472290039062 ], [ -78.415969848632756, -9.417916297912598 ], [ -78.416252136230412, -9.417916297912598 ], [ -78.416252136230412, -9.417518615722656 ], [ -78.416252136230412, -9.417360305786133 ], [ -78.416427612304631, -9.417362213134709 ], [ -78.418128967285156, -9.417360305786133 ], [ -78.418197631835938, -9.417637825012207 ], [ -78.418472290039062, -9.417637825012207 ], [ -78.418472290039062, -9.418193817138672 ], [ -78.419860839843693, -9.418193817138672 ], [ -78.419860839843693, -9.41874980926508 ], [ -78.419029235839787, -9.41874980926508 ], [ -78.419029235839787, -9.420415878295898 ], [ -78.419303894042912, -9.420415878295898 ], [ -78.419303894042912, -9.421806335449219 ], [ -78.419586181640568, -9.421806335449219 ], [ -78.419586181640568, -9.42208194732666 ], [ -78.419860839843693, -9.42208194732666 ], [ -78.419860839843693, -9.422637939453125 ], [ -78.420135498046875, -9.422637939453125 ], [ -78.420135498046875, -9.422916412353516 ], [ -78.420692443847656, -9.422916412353516 ], [ -78.420692443847656, -9.422637939453125 ], [ -78.422080993652287, -9.422637939453125 ], [ -78.422080993652287, -9.422360420227051 ], [ -78.422637939453068, -9.422360420227051 ], [ -78.422637939453068, -9.421527862548828 ], [ -78.422920227050724, -9.421527862548828 ], [ -78.422920227050724, -9.420694351196289 ], [ -78.422637939453068, -9.420694351196289 ], [ -78.422637939453068, -9.420415878295898 ], [ -78.422363281249943, -9.420415878295898 ], [ -78.422363281249943, -9.419859886169434 ], [ -78.422080993652287, -9.419859886169434 ], [ -78.422080993652287, -9.419584274291935 ], [ -78.421806335449219, -9.419584274291935 ], [ -78.421806335449219, -9.419305801391545 ], [ -78.421524047851562, -9.419305801391545 ], [ -78.421524047851562, -9.419028282165527 ], [ -78.422363281249943, -9.419028282165527 ], [ -78.422363281249943, -9.41874980926508 ], [ -78.423194885253906, -9.41874980926508 ], [ -78.423194885253906, -9.418472290039062 ], [ -78.424583435058594, -9.418472290039062 ], [ -78.424583435058594, -9.418193817138672 ], [ -78.424858093261719, -9.418193817138672 ], [ -78.424858093261719, -9.417360305786133 ], [ -78.425140380859261, -9.417360305786133 ], [ -78.425140380859261, -9.416804313659668 ], [ -78.425415039062443, -9.416806221008244 ], [ -78.425415039062443, -9.416527748107853 ], [ -78.425697326660099, -9.416527748107853 ], [ -78.425697326660099, -9.416250228881779 ], [ -78.426246643066406, -9.416250228881779 ], [ -78.426246643066406, -9.415971755981388 ], [ -78.426528930664062, -9.415971755981388 ], [ -78.426528930664062, -9.415138244628906 ], [ -78.426246643066406, -9.415138244628906 ], [ -78.426246643066406, -9.415415763854924 ], [ -78.425971984863224, -9.415415763854924 ], [ -78.425971984863224, -9.415694236755314 ], [ -78.425697326660099, -9.415694236755314 ], [ -78.425697326660099, -9.415971755981388 ], [ -78.425140380859261, -9.415971755981388 ], [ -78.425140380859261, -9.416250228881779 ], [ -78.424858093261719, -9.416250228881779 ], [ -78.424858093261719, -9.416527748107853 ], [ -78.424026489257812, -9.416527748107853 ], [ -78.424026489257812, -9.416250228881779 ], [ -78.424308776855469, -9.416250228881779 ], [ -78.424308776855469, -9.415694236755314 ], [ -78.424026489257812, -9.415694236755314 ], [ -78.424026489257812, -9.414859771728459 ], [ -78.424308776855469, -9.414859771728459 ], [ -78.424308776855469, -9.414305686950684 ], [ -78.424583435058594, -9.414305686950684 ], [ -78.424583435058594, -9.414028167724553 ], [ -78.424858093261719, -9.414028167724553 ], [ -78.424858093261719, -9.413749694824105 ], [ -78.425697326660099, -9.413749694824105 ], [ -78.425697326660099, -9.414028167724553 ], [ -78.425971984863224, -9.414028167724553 ], [ -78.425971984863224, -9.413193702697697 ], [ -78.426246643066406, -9.413193702697697 ], [ -78.426246643066406, -9.412639617919922 ], [ -78.426528930664062, -9.412639617919922 ], [ -78.426528930664062, -9.412359237670842 ], [ -78.427085876464844, -9.412362098693848 ], [ -78.427085876464844, -9.412083625793457 ], [ -78.427360534667969, -9.412083625793457 ], [ -78.427360534667969, -9.411527633666992 ], [ -78.427635192871094, -9.411527633666992 ], [ -78.427635192871094, -9.411250114440918 ], [ -78.42791748046875, -9.411250114440918 ], [ -78.42791748046875, -9.410970687866211 ], [ -78.428192138671761, -9.410970687866211 ], [ -78.428192138671761, -9.410693168640137 ], [ -78.42791748046875, -9.410693168640137 ], [ -78.42791748046875, -9.410417556762695 ], [ -78.427635192871094, -9.410417556762695 ], [ -78.427635192871094, -9.40986156463623 ], [ -78.427085876464844, -9.40986156463623 ], [ -78.427085876464844, -9.410140037536621 ], [ -78.426528930664062, -9.410137176513672 ], [ -78.426528930664062, -9.410417556762695 ], [ -78.425697326660099, -9.410417556762695 ], [ -78.425697326660099, -9.40986156463623 ], [ -78.425415039062443, -9.40986156463623 ], [ -78.425415039062443, -9.409581184387207 ], [ -78.425971984863224, -9.40958309173584 ], [ -78.425971984863224, -9.409304618835392 ], [ -78.426528930664062, -9.409304618835392 ], [ -78.426528930664062, -9.409027099609375 ], [ -78.427635192871094, -9.409027099609375 ], [ -78.427635192871094, -9.408748626708984 ], [ -78.42791748046875, -9.408748626708984 ], [ -78.42791748046875, -9.40847110748291 ], [ -78.428192138671761, -9.40847110748291 ], [ -78.428192138671761, -9.407915115356445 ], [ -78.428474426269474, -9.407915115356445 ], [ -78.428474426269474, -9.40735912322998 ], [ -78.428749084472599, -9.407361030578556 ], [ -78.428749084472599, -9.407082557678166 ], [ -78.428192138671761, -9.407082557678166 ], [ -78.428192138671761, -9.406526565551701 ], [ -78.42791748046875, -9.406526565551701 ], [ -78.42791748046875, -9.405973434448185 ], [ -78.427635192871094, -9.405973434448185 ], [ -78.427635192871094, -9.405417442321721 ], [ -78.42791748046875, -9.405417442321721 ], [ -78.42791748046875, -9.405137062072754 ], [ -78.428192138671761, -9.40513896942133 ], [ -78.428192138671761, -9.404305458068791 ], [ -78.428474426269474, -9.404305458068791 ], [ -78.428474426269474, -9.4040269851684 ], [ -78.428749084472599, -9.4040269851684 ], [ -78.428749084472599, -9.403751373291016 ], [ -78.429031372070256, -9.403751373291016 ], [ -78.429031372070256, -9.403470993041935 ], [ -78.429306030273381, -9.403470993041935 ], [ -78.429306030273381, -9.40291690826416 ], [ -78.429580688476562, -9.40291690826416 ], [ -78.429580688476562, -9.401527404785099 ], [ -78.429862976074219, -9.401527404785099 ], [ -78.429862976074219, -9.401250839233398 ], [ -78.430137634277344, -9.401250839233398 ], [ -78.430137634277344, -9.400694847106934 ], [ -78.430419921875, -9.400694847106934 ], [ -78.430419921875, -9.399861335754395 ], [ -78.430694580078125, -9.399861335754395 ], [ -78.430694580078125, -9.39930534362793 ], [ -78.430137634277344, -9.39930534362793 ], [ -78.430137634277344, -9.399582862854004 ], [ -78.429862976074219, -9.39958477020258 ], [ -78.429862976074219, -9.399861335754395 ], [ -78.429580688476562, -9.399861335754395 ], [ -78.429580688476562, -9.400138854980469 ], [ -78.429031372070256, -9.400138854980469 ], [ -78.429031372070256, -9.400417327880859 ], [ -78.427612304687443, -9.400417327880859 ], [ -78.427360534667969, -9.400417327880859 ], [ -78.427360534667969, -9.400196075439396 ], [ -78.427360534667969, -9.39958477020258 ], [ -78.427085876464844, -9.399582862854004 ], [ -78.427085876464844, -9.398195266723633 ], [ -78.427360534667969, -9.398195266723633 ], [ -78.427360534667969, -9.397916793823242 ], [ -78.426803588867188, -9.397916793823242 ], [ -78.426803588867188, -9.397639274597168 ], [ -78.427085876464844, -9.397639274597168 ], [ -78.427085876464844, -9.397359848022404 ], [ -78.427360534667969, -9.397359848022404 ], [ -78.427360534667969, -9.396526336669922 ], [ -78.427085876464844, -9.396529197692814 ], [ -78.427085876464844, -9.395137786865178 ], [ -78.426803588867188, -9.395137786865178 ], [ -78.426803588867188, -9.394860267639103 ], [ -78.426246643066406, -9.394860267639103 ], [ -78.426246643066406, -9.394583702087402 ], [ -78.426528930664062, -9.394583702087402 ], [ -78.426528930664062, -9.394304275512695 ], [ -78.426803588867188, -9.394304275512695 ], [ -78.426803588867188, -9.39374828338623 ], [ -78.427085876464844, -9.39374828338623 ], [ -78.427085876464844, -9.393192291259766 ], [ -78.427360534667969, -9.393194198608342 ], [ -78.427360534667969, -9.392638206481877 ], [ -78.427635192871094, -9.392638206481877 ], [ -78.427635192871094, -9.392359733581486 ], [ -78.427360534667969, -9.392359733581486 ], [ -78.427360534667969, -9.391805648803711 ], [ -78.428474426269474, -9.391805648803711 ], [ -78.428474426269474, -9.392084121704102 ], [ -78.430137634277344, -9.392084121704102 ], [ -78.430137634277344, -9.392359733581486 ], [ -78.43096923828125, -9.392359733581486 ], [ -78.43096923828125, -9.392638206481877 ], [ -78.431251525878906, -9.392638206481877 ], [ -78.431251525878906, -9.393194198608342 ], [ -78.431526184081974, -9.393192291259766 ], [ -78.431526184081974, -9.39374828338623 ], [ -78.431808471679631, -9.39374828338623 ], [ -78.431808471679631, -9.394304275512695 ], [ -78.432640075683537, -9.394304275512695 ], [ -78.432640075683537, -9.39374828338623 ], [ -78.432357788085881, -9.393750190734863 ], [ -78.432357788085881, -9.392359733581486 ], [ -78.431808471679631, -9.392359733581486 ], [ -78.431808471679631, -9.391805648803711 ], [ -78.432083129882756, -9.391805648803711 ], [ -78.432083129882756, -9.391249656677246 ], [ -78.431808471679631, -9.391249656677246 ], [ -78.431808471679631, -9.390693664550781 ], [ -78.431526184081974, -9.390693664550781 ], [ -78.431526184081974, -9.390137672424316 ], [ -78.432418823242188, -9.390137672424316 ], [ -78.432640075683537, -9.390137672424316 ], [ -78.432640075683537, -9.390237808227482 ], [ -78.432640075683537, -9.39041805267334 ], [ -78.4334716796875, -9.390416145324707 ], [ -78.4334716796875, -9.390693664550781 ], [ -78.433746337890625, -9.390693664550781 ], [ -78.433746337890625, -9.388750076293945 ], [ -78.434303283691406, -9.388750076293945 ], [ -78.434303283691406, -9.388471603393555 ], [ -78.434585571289062, -9.388471603393555 ], [ -78.434585571289062, -9.38791561126709 ], [ -78.434860229492131, -9.38791561126709 ], [ -78.434860229492131, -9.387361526489201 ], [ -78.434303283691406, -9.387361526489201 ], [ -78.434303283691406, -9.387082099914551 ], [ -78.434028625488281, -9.387082099914551 ], [ -78.434028625488281, -9.386528015136719 ], [ -78.433746337890625, -9.386528015136719 ], [ -78.433746337890625, -9.386249542236271 ], [ -78.433197021484375, -9.386249542236271 ], [ -78.433197021484375, -9.385972023010254 ], [ -78.432914733886719, -9.385972023010254 ], [ -78.432914733886719, -9.385416030883789 ], [ -78.433197021484375, -9.385417938232365 ], [ -78.433197021484375, -9.384584426879826 ], [ -78.434028625488281, -9.384584426879826 ], [ -78.434028625488281, -9.384028434753418 ], [ -78.433746337890625, -9.384028434753418 ], [ -78.433746337890625, -9.383470535278207 ], [ -78.432640075683537, -9.383470535278207 ], [ -78.432640075683537, -9.382637023925724 ], [ -78.432357788085881, -9.38263988494873 ], [ -78.432357788085881, -9.38236141204834 ], [ -78.432640075683537, -9.38236141204834 ], [ -78.432640075683537, -9.38208103179926 ], [ -78.432914733886719, -9.38208103179926 ], [ -78.432914733886719, -9.381526947021484 ], [ -78.432640075683537, -9.381526947021484 ], [ -78.432640075683537, -9.38097095489502 ], [ -78.431251525878906, -9.38097095489502 ], [ -78.431251525878906, -9.380416870117188 ], [ -78.431526184081974, -9.380416870117188 ], [ -78.431526184081974, -9.379860877990723 ], [ -78.431808471679631, -9.379860877990723 ], [ -78.431808471679631, -9.379304885864258 ], [ -78.432083129882756, -9.379304885864258 ], [ -78.432083129882756, -9.378194808959904 ], [ -78.431808471679631, -9.378194808959904 ], [ -78.431808471679631, -9.377917289733887 ], [ -78.431251525878906, -9.377917289733887 ], [ -78.431251525878906, -9.378194808959904 ], [ -78.430137634277344, -9.378194808959904 ], [ -78.430137634277344, -9.377917289733887 ], [ -78.429306030273381, -9.377917289733887 ], [ -78.429306030273381, -9.377638816833496 ], [ -78.429580688476562, -9.377638816833496 ], [ -78.429580688476562, -9.377361297607422 ], [ -78.429862976074219, -9.377361297607422 ], [ -78.429862976074219, -9.377082824707031 ], [ -78.430137634277344, -9.377082824707031 ], [ -78.430137634277344, -9.376805305480957 ], [ -78.430419921875, -9.376805305480957 ], [ -78.430419921875, -9.376249313354492 ], [ -78.430137634277344, -9.376251220703068 ], [ -78.430137634277344, -9.375970840454102 ], [ -78.429862976074219, -9.375970840454102 ], [ -78.429862976074219, -9.376251220703068 ], [ -78.429031372070256, -9.376249313354492 ], [ -78.429031372070256, -9.37641716003418 ], [ -78.429031372070256, -9.376526832580566 ], [ -78.428703308105469, -9.376526832580566 ], [ -78.427635192871094, -9.376526832580566 ], [ -78.427635192871094, -9.375970840454102 ], [ -78.427360534667969, -9.375970840454102 ], [ -78.427360534667969, -9.375695228576603 ], [ -78.428192138671761, -9.375695228576603 ], [ -78.428192138671761, -9.375139236450138 ], [ -78.428474426269474, -9.375139236450138 ], [ -78.428474426269474, -9.374860763549748 ], [ -78.428749084472599, -9.374860763549748 ], [ -78.428749084472599, -9.37458324432373 ], [ -78.429031372070256, -9.37458324432373 ], [ -78.429031372070256, -9.374304771423283 ], [ -78.428749084472599, -9.374304771423283 ], [ -78.428749084472599, -9.373471260070801 ], [ -78.429031372070256, -9.373471260070801 ], [ -78.429031372070256, -9.37291431427002 ], [ -78.429306030273381, -9.372917175292912 ], [ -78.429306030273381, -9.372638702392521 ], [ -78.429580688476562, -9.372638702392521 ], [ -78.429580688476562, -9.372082710266056 ], [ -78.429862976074219, -9.372082710266056 ], [ -78.429862976074219, -9.371805191039982 ], [ -78.429580688476562, -9.371805191039982 ], [ -78.429580688476562, -9.371248245239201 ], [ -78.428749084472599, -9.371251106262207 ], [ -78.428749084472599, -9.370972633361816 ], [ -78.424858093261719, -9.370972633361816 ], [ -78.424858093261719, -9.370695114135742 ], [ -78.424583435058594, -9.370695114135742 ], [ -78.424583435058594, -9.370416641235352 ], [ -78.422920227050724, -9.370416641235352 ], [ -78.422920227050724, -9.36985969543457 ], [ -78.423194885253906, -9.36985969543457 ], [ -78.423194885253906, -9.369582176208496 ], [ -78.423469543457031, -9.369582176208496 ], [ -78.423469543457031, -9.369306564331055 ], [ -78.423751831054688, -9.369306564331055 ], [ -78.423751831054688, -9.369026184082031 ], [ -78.424026489257812, -9.36902904510498 ], [ -78.424026489257812, -9.368749618530217 ], [ -78.423194885253906, -9.368749618530217 ], [ -78.423194885253906, -9.36847019195551 ], [ -78.422920227050724, -9.36847019195551 ], [ -78.422920227050724, -9.368749618530217 ], [ -78.422363281249943, -9.368749618530217 ], [ -78.422363281249943, -9.36902904510498 ], [ -78.422080993652287, -9.369026184082031 ], [ -78.422080993652287, -9.369306564331055 ], [ -78.421691894531193, -9.369306564331055 ], [ -78.419029235839787, -9.369306564331055 ], [ -78.419029235839787, -9.369026184082031 ], [ -78.418472290039062, -9.36902904510498 ], [ -78.418472290039062, -9.368749618530217 ], [ -78.417915344238281, -9.368749618530217 ], [ -78.417915344238281, -9.36847019195551 ], [ -78.417640686035156, -9.368472099304199 ], [ -78.417640686035156, -9.368193626403809 ], [ -78.4173583984375, -9.368193626403809 ], [ -78.4173583984375, -9.368472099304199 ], [ -78.416809082031193, -9.36847019195551 ], [ -78.416809082031193, -9.368749618530217 ], [ -78.415412902831918, -9.368749618530217 ], [ -78.415412902831918, -9.36847019195551 ], [ -78.414863586425781, -9.368472099304199 ], [ -78.414863586425781, -9.368193626403809 ], [ -78.414306640625, -9.368193626403809 ], [ -78.414306640625, -9.368472099304199 ], [ -78.413749694824219, -9.36847019195551 ], [ -78.413749694824219, -9.36863899230957 ], [ -78.413749694824219, -9.36902904510498 ], [ -78.413284301757756, -9.369026184082031 ], [ -78.412918090820256, -9.369026184082031 ], [ -78.412918090820256, -9.369306564331055 ], [ -78.41180419921875, -9.369306564331055 ], [ -78.41180419921875, -9.369026184082031 ], [ -78.411529541015625, -9.36902904510498 ], [ -78.411529541015625, -9.368749618530217 ], [ -78.410972595214844, -9.368749618530217 ], [ -78.410972595214844, -9.36847019195551 ], [ -78.410568237304688, -9.368472099304199 ], [ -78.410415649414062, -9.368472099304199 ], [ -78.410415649414062, -9.368301391601562 ], [ -78.410415649414062, -9.368193626403809 ], [ -78.410140991210881, -9.368193626403809 ], [ -78.410140991210881, -9.367912292480469 ], [ -78.410140991210881, -9.367637634277344 ], [ -78.409858703613224, -9.367637634277344 ], [ -78.409858703613224, -9.367510795593262 ], [ -78.409858703613224, -9.367083549499455 ], [ -78.409584045410099, -9.367083549499455 ], [ -78.409584045410099, -9.36624813079834 ], [ -78.409301757812443, -9.36624813079834 ], [ -78.409301757812443, -9.365694046020508 ], [ -78.409027099609375, -9.365694046020508 ], [ -78.409027099609375, -9.36319446563715 ], [ -78.409301757812443, -9.36319446563715 ], [ -78.409301757812443, -9.362638473510742 ], [ -78.409584045410099, -9.362638473510742 ], [ -78.409584045410099, -9.362337112426758 ], [ -78.409584045410099, -9.362084388732796 ], [ -78.4100341796875, -9.362031936645508 ], [ -78.410140991210881, -9.362017631530705 ], [ -78.410140991210881, -9.36180591583252 ], [ -78.410400390625, -9.36180591583252 ], [ -78.410415649414062, -9.361249923705941 ], [ -78.411079406738281, -9.361249923705941 ], [ -78.41180419921875, -9.361249923705941 ], [ -78.41180419921875, -9.360695838928223 ], [ -78.412086486816406, -9.360695838928223 ], [ -78.412086486816406, -9.360424995422363 ], [ -78.412086486816406, -9.360137939453068 ], [ -78.412361145019418, -9.360139846801758 ], [ -78.412361145019418, -9.359862327575684 ], [ -78.412994384765568, -9.359862327575684 ], [ -78.413749694824219, -9.359862327575684 ], [ -78.413749694824219, -9.360139846801758 ], [ -78.414024353027344, -9.360139846801758 ], [ -78.414024353027344, -9.359918594360352 ], [ -78.414024353027344, -9.359581947326603 ], [ -78.414863586425781, -9.359581947326603 ], [ -78.414863586425781, -9.359862327575684 ], [ -78.415412902831918, -9.359862327575684 ], [ -78.415412902831918, -9.359971046447697 ], [ -78.415412902831918, -9.360139846801758 ], [ -78.415969848632756, -9.360137939453068 ], [ -78.415969848632756, -9.360416412353459 ], [ -78.416648864746037, -9.360416412353459 ], [ -78.416809082031193, -9.360416412353459 ], [ -78.416809082031193, -9.360695838928223 ], [ -78.417640686035156, -9.360695838928223 ], [ -78.417640686035156, -9.360972404479924 ], [ -78.419006347656193, -9.360972404479924 ], [ -78.419303894042912, -9.360972404479924 ], [ -78.419303894042912, -9.361249923705941 ], [ -78.419586181640568, -9.361249923705941 ], [ -78.419586181640568, -9.36180591583252 ], [ -78.419860839843693, -9.36180591583252 ], [ -78.419860839843693, -9.361959457397461 ], [ -78.419860839843693, -9.362084388732796 ], [ -78.420692443847656, -9.362084388732796 ], [ -78.420692443847656, -9.36180591583252 ], [ -78.421974182128849, -9.36180591583252 ], [ -78.422080993652287, -9.36180591583252 ], [ -78.422080993652287, -9.362084388732796 ], [ -78.422637939453068, -9.362084388732796 ], [ -78.422637939453068, -9.362361907958984 ], [ -78.422920227050724, -9.362360000610295 ], [ -78.422920227050724, -9.362638473510742 ], [ -78.423469543457031, -9.362638473510742 ], [ -78.423469543457031, -9.362360000610295 ], [ -78.424026489257812, -9.362361907958984 ], [ -78.424026489257812, -9.362084388732796 ], [ -78.424583435058594, -9.362084388732796 ], [ -78.424583435058594, -9.36180591583252 ], [ -78.424308776855469, -9.36180591583252 ], [ -78.424308776855469, -9.361249923705941 ], [ -78.424026489257812, -9.361249923705941 ], [ -78.424026489257812, -9.360695838928223 ], [ -78.423751831054688, -9.360695838928223 ], [ -78.423751831054688, -9.360137939453068 ], [ -78.424026489257812, -9.360139846801758 ], [ -78.424026489257812, -9.359862327575684 ], [ -78.423751831054688, -9.359862327575684 ], [ -78.423751831054688, -9.359581947326603 ], [ -78.423469543457031, -9.359583854675293 ], [ -78.423469543457031, -9.357917785644531 ], [ -78.42376708984375, -9.357917785644531 ], [ -78.424308776855469, -9.357917785644531 ], [ -78.424308776855469, -9.358717918395996 ], [ -78.424308776855469, -9.359027862548828 ], [ -78.424583435058594, -9.359027862548828 ], [ -78.424583435058594, -9.359306335449219 ], [ -78.424858093261719, -9.359306335449219 ], [ -78.424858093261719, -9.359583854675293 ], [ -78.425361633300781, -9.359631538391113 ], [ -78.425415039062443, -9.359683990478516 ], [ -78.425415039062443, -9.359862327575684 ], [ -78.42584228515625, -9.359862327575684 ], [ -78.426246643066406, -9.359862327575684 ], [ -78.426246643066406, -9.359975814819279 ], [ -78.426246643066406, -9.360695838928223 ], [ -78.426528930664062, -9.360695838928223 ], [ -78.426528930664062, -9.360972404479924 ], [ -78.427085876464844, -9.360972404479924 ], [ -78.427085876464844, -9.360695838928223 ], [ -78.427360534667969, -9.360695838928223 ], [ -78.427360534667969, -9.360416412353459 ], [ -78.427635192871094, -9.360416412353459 ], [ -78.427635192871094, -9.359862327575684 ], [ -78.42791748046875, -9.359862327575684 ], [ -78.42791748046875, -9.359306335449219 ], [ -78.427635192871094, -9.359306335449219 ], [ -78.427635192871094, -9.358471870422363 ], [ -78.42791748046875, -9.358471870422363 ], [ -78.42791748046875, -9.358194351196232 ], [ -78.427635192871094, -9.358194351196232 ], [ -78.427635192871094, -9.357640266418457 ], [ -78.427085876464844, -9.357640266418457 ], [ -78.427085876464844, -9.356805801391602 ], [ -78.426803588867188, -9.356805801391602 ], [ -78.426803588867188, -9.356527328491211 ], [ -78.426528930664062, -9.356527328491211 ], [ -78.426528930664062, -9.354582786560002 ], [ -78.427803039550724, -9.354582786560002 ], [ -78.428474426269474, -9.354582786560002 ], [ -78.428474426269474, -9.355138778686467 ], [ -78.428192138671761, -9.355138778686467 ], [ -78.428192138671761, -9.355695724487248 ], [ -78.428474426269474, -9.355695724487248 ], [ -78.428474426269474, -9.355971336364746 ], [ -78.429306030273381, -9.355971336364746 ], [ -78.429306030273381, -9.355695724487248 ], [ -78.429031372070256, -9.355695724487248 ], [ -78.429031372070256, -9.355415344238281 ], [ -78.430694580078125, -9.355415344238281 ], [ -78.430694580078125, -9.355138778686467 ], [ -78.43096923828125, -9.355138778686467 ], [ -78.43096923828125, -9.354582786560002 ], [ -78.430694580078125, -9.354582786560002 ], [ -78.430694580078125, -9.354026794433537 ], [ -78.430419921875, -9.354026794433537 ], [ -78.430419921875, -9.353193283081055 ], [ -78.429580688476562, -9.353193283081055 ], [ -78.429580688476562, -9.353470802307072 ], [ -78.428192138671761, -9.353470802307072 ], [ -78.428192138671761, -9.352916717529297 ], [ -78.428474426269474, -9.352916717529297 ], [ -78.428474426269474, -9.352083206176701 ], [ -78.428749084472599, -9.352083206176701 ], [ -78.428749084472599, -9.351527214050236 ], [ -78.428192138671761, -9.351527214050236 ], [ -78.428192138671761, -9.351248741149846 ], [ -78.42791748046875, -9.351248741149846 ], [ -78.42791748046875, -9.350973129272461 ], [ -78.428192138671761, -9.350973129272461 ], [ -78.428192138671761, -9.35069465637207 ], [ -78.428474426269474, -9.35069465637207 ], [ -78.428474426269474, -9.349303245544434 ], [ -78.428749084472599, -9.349305152892953 ], [ -78.428749084472599, -9.349026679992676 ], [ -78.429031372070256, -9.349026679992676 ], [ -78.429031372070256, -9.348472595214844 ], [ -78.428749084472599, -9.348472595214844 ], [ -78.428749084472599, -9.34819316864008 ], [ -78.428192138671761, -9.34819316864008 ], [ -78.428192138671761, -9.348472595214844 ], [ -78.427635192871094, -9.348472595214844 ], [ -78.427635192871094, -9.348751068115234 ], [ -78.427360534667969, -9.348749160766545 ], [ -78.427360534667969, -9.349026679992676 ], [ -78.427085876464844, -9.349026679992676 ], [ -78.427085876464844, -9.349305152892953 ], [ -78.426803588867188, -9.349303245544434 ], [ -78.426803588867188, -9.350138664245605 ], [ -78.426322937011719, -9.350138664245605 ], [ -78.425971984863224, -9.350138664245605 ], [ -78.425971984863224, -9.349582672119141 ], [ -78.425697326660099, -9.349582672119141 ], [ -78.425697326660099, -9.349303245544434 ], [ -78.424583435058594, -9.349303245544434 ], [ -78.424583435058594, -9.348749160766545 ], [ -78.424308776855469, -9.348751068115234 ], [ -78.424308776855469, -9.348472595214844 ], [ -78.424026489257812, -9.348472595214844 ], [ -78.424026489257812, -9.34708309173584 ], [ -78.423751831054688, -9.34708309173584 ], [ -78.423751831054688, -9.345417022705078 ], [ -78.424026489257812, -9.345417022705078 ], [ -78.424026489257812, -9.344582557678223 ], [ -78.424308776855469, -9.344582557678223 ], [ -78.424308776855469, -9.343748092651367 ], [ -78.424583435058594, -9.343748092651367 ], [ -78.424583435058594, -9.343192100524902 ], [ -78.424858093261719, -9.343192100524902 ], [ -78.424858093261719, -9.342638015747013 ], [ -78.425140380859261, -9.342638015747013 ], [ -78.425140380859261, -9.341526031494084 ], [ -78.425415039062443, -9.341527938842773 ], [ -78.425415039062443, -9.341250419616699 ], [ -78.426803588867188, -9.341250419616699 ], [ -78.426803588867188, -9.340970039367676 ], [ -78.427085876464844, -9.340970039367676 ], [ -78.427085876464844, -9.340415954589844 ], [ -78.427360534667969, -9.340415954589844 ], [ -78.427360534667969, -9.339859962463322 ], [ -78.428955078124886, -9.339859962463322 ], [ -78.429031372070256, -9.339999198913517 ], [ -78.429031372070256, -9.340415954589844 ], [ -78.430137634277344, -9.340415954589844 ], [ -78.430137634277344, -9.339859962463322 ], [ -78.430252075195312, -9.339859962463322 ], [ -78.430419921875, -9.339859962463322 ], [ -78.430419921875, -9.339584350585938 ], [ -78.431526184081974, -9.339584350585938 ], [ -78.431526184081974, -9.340138435363713 ], [ -78.431251525878906, -9.340140342712402 ], [ -78.431251525878906, -9.340694427490178 ], [ -78.43096923828125, -9.340694427490178 ], [ -78.43096923828125, -9.34197998046875 ], [ -78.43096923828125, -9.342082023620549 ], [ -78.430694580078125, -9.342082023620549 ], [ -78.430694580078125, -9.343192100524902 ], [ -78.43096923828125, -9.343194961547795 ], [ -78.43096923828125, -9.342915534973031 ], [ -78.431251525878906, -9.342915534973031 ], [ -78.431251525878906, -9.342638015747013 ], [ -78.431808471679631, -9.342638015747013 ], [ -78.431808471679631, -9.342359542846623 ], [ -78.432083129882756, -9.342359542846623 ], [ -78.432083129882756, -9.341526031494084 ], [ -78.432914733886719, -9.341527938842773 ], [ -78.432914733886719, -9.341250419616699 ], [ -78.433197021484375, -9.341250419616699 ], [ -78.433197021484375, -9.340415954589844 ], [ -78.4334716796875, -9.340415954589844 ], [ -78.4334716796875, -9.339859962463322 ], [ -78.433746337890625, -9.339859962463322 ], [ -78.433746337890625, -9.339305877685547 ], [ -78.434028625488281, -9.339305877685547 ], [ -78.434028625488281, -9.338749885559082 ], [ -78.434585571289062, -9.338749885559082 ], [ -78.434585571289062, -9.338472366333008 ], [ -78.434860229492131, -9.338472366333008 ], [ -78.434860229492131, -9.338193893432617 ], [ -78.435417175292912, -9.338193893432617 ], [ -78.435417175292912, -9.338472366333008 ], [ -78.435691833496037, -9.338472366333008 ], [ -78.435691833496037, -9.338749885559082 ], [ -78.436248779296875, -9.338749885559082 ], [ -78.436248779296875, -9.340415954589844 ], [ -78.436355590820312, -9.340415954589844 ], [ -78.436531066894531, -9.340415954589844 ], [ -78.436531066894531, -9.340694427490178 ], [ -78.436805725097656, -9.340694427490178 ], [ -78.436805725097656, -9.340971946716309 ], [ -78.437202453613281, -9.340971946716309 ], [ -78.437637329101562, -9.340971946716309 ], [ -78.437637329101562, -9.340694427490178 ], [ -78.438194274902287, -9.340694427490178 ], [ -78.438194274902287, -9.340415954589844 ], [ -78.438751220703068, -9.340415954589844 ], [ -78.438751220703068, -9.339859962463322 ], [ -78.43902587890625, -9.339859962463322 ], [ -78.43902587890625, -9.339028358459473 ], [ -78.439857482910156, -9.339028358459473 ], [ -78.439857482910156, -9.338472366333008 ], [ -78.440139770507812, -9.338472366333008 ], [ -78.440139770507812, -9.337637901306152 ], [ -78.440414428710938, -9.337637901306152 ], [ -78.440414428710938, -9.336806297302246 ], [ -78.440696716308594, -9.336806297302246 ], [ -78.440696716308594, -9.335971832275391 ], [ -78.439582824707031, -9.335971832275391 ], [ -78.439582824707031, -9.335415840148926 ], [ -78.439857482910156, -9.335415840148926 ], [ -78.439857482910156, -9.334231376647949 ], [ -78.439857482910156, -9.334026336669922 ], [ -78.439582824707031, -9.334026336669922 ], [ -78.439582824707031, -9.33347225189209 ], [ -78.440315246582031, -9.33347225189209 ], [ -78.440971374511605, -9.33347225189209 ], [ -78.440971374511605, -9.333193778991699 ], [ -78.441253662109318, -9.333193778991699 ], [ -78.441253662109318, -9.332916259765625 ], [ -78.441528320312443, -9.332916259765625 ], [ -78.441528320312443, -9.33236026763916 ], [ -78.441802978515568, -9.332362174987736 ], [ -78.441802978515568, -9.331527709960881 ], [ -78.442642211914062, -9.331527709960881 ], [ -78.442642211914062, -9.331250190734806 ], [ -78.442916870117188, -9.331250190734806 ], [ -78.442916870117188, -9.330973625183105 ], [ -78.443191528320312, -9.330971717834416 ], [ -78.443191528320312, -9.329861640930176 ], [ -78.443473815917969, -9.329861640930176 ], [ -78.443473815917969, -9.32902717590332 ], [ -78.442085266113224, -9.32902717590332 ], [ -78.442085266113224, -9.32874870300293 ], [ -78.441802978515568, -9.32874870300293 ], [ -78.441802978515568, -9.327815055847168 ], [ -78.441802978515568, -9.327082633972168 ], [ -78.442214965820312, -9.327082633972168 ], [ -78.442642211914062, -9.327082633972168 ], [ -78.442642211914062, -9.326526641845703 ], [ -78.442916870117188, -9.326526641845703 ], [ -78.442916870117188, -9.32630443572998 ], [ -78.444580078124943, -9.326249122619629 ], [ -78.444580078124943, -9.325972557067814 ], [ -78.445419311523381, -9.325972557067814 ], [ -78.445419311523381, -9.326249122619629 ], [ -78.445693969726562, -9.326249122619629 ], [ -78.445693969726562, -9.326526641845703 ], [ -78.445968627929688, -9.326526641845703 ], [ -78.445968627929688, -9.326249122619629 ], [ -78.446250915527344, -9.326249122619629 ], [ -78.446250915527344, -9.325972557067814 ], [ -78.447364807128906, -9.325972557067814 ], [ -78.447364807128906, -9.326249122619629 ], [ -78.4486083984375, -9.326249122619629 ], [ -78.449028015136719, -9.326249122619629 ], [ -78.449028015136719, -9.326805114746094 ], [ -78.448753356933594, -9.326805114746094 ], [ -78.448753356933594, -9.328195571899414 ], [ -78.448066711425781, -9.328195571899414 ], [ -78.447914123535099, -9.328195571899414 ], [ -78.447914123535099, -9.32874870300293 ], [ -78.448196411132756, -9.32874870300293 ], [ -78.448196411132756, -9.32902717590332 ], [ -78.448471069335881, -9.32902717590332 ], [ -78.448471069335881, -9.329304695129395 ], [ -78.449028015136719, -9.329304695129395 ], [ -78.449028015136719, -9.32902717590332 ], [ -78.44936370849598, -9.32902717590332 ], [ -78.4495849609375, -9.32902717590332 ], [ -78.4495849609375, -9.329156875610352 ], [ -78.4495849609375, -9.329584121704045 ], [ -78.449859619140625, -9.329584121704045 ], [ -78.449859619140625, -9.329861640930176 ], [ -78.450973510742131, -9.329861640930176 ], [ -78.450973510742131, -9.330140113830566 ], [ -78.451248168945256, -9.330140113830566 ], [ -78.451248168945256, -9.330417633056641 ], [ -78.451530456542912, -9.330417633056641 ], [ -78.451530456542912, -9.330693244934025 ], [ -78.452079772949219, -9.330693244934025 ], [ -78.452079772949219, -9.329861640930176 ], [ -78.452362060546875, -9.329861640930176 ], [ -78.452362060546875, -9.329304695129395 ], [ -78.45263671875, -9.329304695129395 ], [ -78.45263671875, -9.328195571899414 ], [ -78.452919006347656, -9.328195571899414 ], [ -78.452919006347656, -9.327915191650334 ], [ -78.453193664550781, -9.327917098999023 ], [ -78.453193664550781, -9.327638626098633 ], [ -78.453750610351449, -9.327638626098633 ], [ -78.453750610351449, -9.326805114746094 ], [ -78.454025268554631, -9.326805114746094 ], [ -78.454025268554631, -9.326652526855412 ], [ -78.454025268554631, -9.326526641845703 ], [ -78.454864501953068, -9.326526641845703 ], [ -78.454864501953068, -9.326805114746094 ], [ -78.455070495605412, -9.326805114746094 ], [ -78.455413818359375, -9.326805114746094 ], [ -78.455413818359375, -9.326944351196289 ], [ -78.455413818359375, -9.327082633972168 ], [ -78.454864501953068, -9.327082633972168 ], [ -78.454864501953068, -9.328195571899414 ], [ -78.45513916015625, -9.328195571899414 ], [ -78.45513916015625, -9.329304695129395 ], [ -78.455413818359375, -9.329304695129395 ], [ -78.455413818359375, -9.329584121704045 ], [ -78.455696105957031, -9.329584121704045 ], [ -78.455696105957031, -9.32902717590332 ], [ -78.455970764160156, -9.32902717590332 ], [ -78.455970764160156, -9.328471183776855 ], [ -78.456253051757812, -9.328471183776855 ], [ -78.456253051757812, -9.328195571899414 ], [ -78.456527709960938, -9.328195571899414 ], [ -78.456527709960938, -9.327359199523869 ], [ -78.457084655761662, -9.327359199523869 ], [ -78.457084655761662, -9.326805114746094 ], [ -78.457359313964787, -9.326805114746094 ], [ -78.457359313964787, -9.326526641845703 ], [ -78.457916259765568, -9.326526641845703 ], [ -78.457916259765568, -9.326249122619629 ], [ -78.458473205566406, -9.326249122619629 ], [ -78.458473205566406, -9.325972557067814 ], [ -78.458747863769531, -9.325972557067814 ], [ -78.458747863769531, -9.324304580688477 ], [ -78.459304809570312, -9.324304580688477 ], [ -78.459304809570312, -9.324027061462402 ], [ -78.459587097167969, -9.324027061462402 ], [ -78.459587097167969, -9.323195457458439 ], [ -78.459114074707031, -9.323195457458439 ], [ -78.458274841308594, -9.323195457458439 ], [ -78.457916259765568, -9.323195457458439 ], [ -78.457916259765568, -9.322639465331974 ], [ -78.45819091796875, -9.322639465331974 ], [ -78.45819091796875, -9.322360992431584 ], [ -78.458473205566406, -9.322360992431584 ], [ -78.458473205566406, -9.322083473205566 ], [ -78.458747863769531, -9.322083473205566 ], [ -78.458747863769531, -9.321805000305119 ], [ -78.459030151367188, -9.321805000305119 ], [ -78.459030151367188, -9.321526527404728 ], [ -78.459304809570312, -9.321526527404728 ], [ -78.459304809570312, -9.321249008178711 ], [ -78.460975646972599, -9.321250915527344 ], [ -78.460975646972599, -9.320973396301213 ], [ -78.462638854980469, -9.320973396301213 ], [ -78.462638854980469, -9.320417404174748 ], [ -78.463470458984318, -9.320417404174748 ], [ -78.463470458984318, -9.320138931274357 ], [ -78.463752746581974, -9.320138931274357 ], [ -78.463752746581974, -9.319861412048283 ], [ -78.464027404785099, -9.319861412048283 ], [ -78.464027404785099, -9.319582939147892 ], [ -78.465415954589844, -9.319582939147892 ], [ -78.465415954589844, -9.319861412048283 ], [ -78.467918395996094, -9.319861412048283 ], [ -78.467918395996094, -9.320138931274357 ], [ -78.46875, -9.320138931274357 ], [ -78.46875, -9.320417404174748 ], [ -78.469306945800781, -9.320417404174748 ], [ -78.469306945800781, -9.320694923400765 ], [ -78.469863891601506, -9.320693016052246 ], [ -78.469863891601506, -9.320973396301213 ], [ -78.470138549804631, -9.320973396301213 ], [ -78.470138549804631, -9.321250915527344 ], [ -78.470413208007756, -9.321249008178711 ], [ -78.470413208007756, -9.321526527404728 ], [ -78.470695495605412, -9.321526527404728 ], [ -78.470695495605412, -9.321805000305119 ], [ -78.470970153808594, -9.321805000305119 ], [ -78.470970153808594, -9.322083473205566 ], [ -78.47125244140625, -9.322083473205566 ], [ -78.47125244140625, -9.322360992431584 ], [ -78.471527099609375, -9.322360992431584 ], [ -78.471527099609375, -9.322639465331974 ], [ -78.4718017578125, -9.322639465331974 ], [ -78.471809387207031, -9.322916984558049 ], [ -78.472084045410156, -9.322916984558049 ], [ -78.472084045410156, -9.325416564941349 ], [ -78.471809387207031, -9.325416564941349 ], [ -78.471809387207031, -9.326249122619629 ], [ -78.472084045410156, -9.326249122619629 ], [ -78.472084045410156, -9.326805114746094 ], [ -78.472358703613281, -9.326805114746094 ], [ -78.472358703613281, -9.327359199523869 ], [ -78.472640991210938, -9.327359199523869 ], [ -78.472640991210938, -9.327638626098633 ], [ -78.47125244140625, -9.327638626098633 ], [ -78.47125244140625, -9.329304695129395 ], [ -78.472358703613281, -9.329304695129395 ], [ -78.472358703613281, -9.329584121704045 ], [ -78.472640991210938, -9.329584121704045 ], [ -78.472640991210938, -9.329861640930176 ], [ -78.473197937011662, -9.329861640930176 ], [ -78.473197937011662, -9.330140113830566 ], [ -78.473518371582031, -9.330140113830566 ], [ -78.473747253417912, -9.330140113830566 ], [ -78.473747253417912, -9.330714225769043 ], [ -78.473747253417912, -9.330971717834416 ], [ -78.474029541015568, -9.330973625183105 ], [ -78.474029541015568, -9.331527709960881 ], [ -78.47430419921875, -9.331527709960881 ], [ -78.47430419921875, -9.332083702087346 ], [ -78.474586486816406, -9.332083702087346 ], [ -78.474586486816406, -9.331803321838379 ], [ -78.475692749023438, -9.331806182861271 ], [ -78.475692749023438, -9.331527709960881 ], [ -78.475975036621094, -9.331527709960881 ], [ -78.475975036621094, -9.331250190734806 ], [ -78.477363586425781, -9.331250190734806 ], [ -78.477363586425781, -9.331527709960881 ], [ -78.477638244628906, -9.331527709960881 ], [ -78.477638244628906, -9.332362174987736 ], [ -78.477363586425781, -9.33236026763916 ], [ -78.477363586425781, -9.334584236144963 ], [ -78.477638244628906, -9.334584236144963 ], [ -78.477638244628906, -9.334859848022461 ], [ -78.477912902832031, -9.334859848022461 ], [ -78.477912902832031, -9.335140228271428 ], [ -78.478469848632812, -9.335140228271428 ], [ -78.478469848632812, -9.334859848022461 ], [ -78.478752136230469, -9.334859848022461 ], [ -78.478752136230469, -9.334584236144963 ], [ -78.479026794433594, -9.334584236144963 ], [ -78.479026794433594, -9.334305763244572 ], [ -78.479309082031136, -9.334305763244572 ], [ -78.479309082031136, -9.334026336669922 ], [ -78.479583740234318, -9.334026336669922 ], [ -78.479583740234318, -9.33347225189209 ], [ -78.480972290039062, -9.33347225189209 ], [ -78.480972290039062, -9.333749771118107 ], [ -78.481803894042969, -9.333749771118107 ], [ -78.481803894042969, -9.333193778991699 ], [ -78.482086181640625, -9.333193778991699 ], [ -78.482086181640625, -9.33236026763916 ], [ -78.481529235839844, -9.33236026763916 ], [ -78.481529235839844, -9.331250190734806 ], [ -78.481246948242188, -9.331250190734806 ], [ -78.481246948242188, -9.330691337585449 ], [ -78.480972290039062, -9.330693244934025 ], [ -78.480972290039062, -9.329861640930176 ], [ -78.480415344238281, -9.329861640930176 ], [ -78.480415344238281, -9.329584121704045 ], [ -78.480140686035099, -9.329584121704045 ], [ -78.480140686035099, -9.32902717590332 ], [ -78.479858398437443, -9.32902717590332 ], [ -78.479858398437443, -9.328471183776855 ], [ -78.479309082031136, -9.328471183776855 ], [ -78.479309082031136, -9.327638626098633 ], [ -78.479583740234318, -9.327638626098633 ], [ -78.479583740234318, -9.326805114746094 ], [ -78.479309082031136, -9.326805114746094 ], [ -78.479309082031136, -9.326249122619629 ], [ -78.479583740234318, -9.326249122619629 ], [ -78.479583740234318, -9.324304580688477 ], [ -78.479858398437443, -9.324304580688477 ], [ -78.479858398437443, -9.322639465331974 ], [ -78.480415344238281, -9.322639465331974 ], [ -78.480415344238281, -9.322916984558049 ], [ -78.480697631835938, -9.322916984558049 ], [ -78.480697631835938, -9.323195457458439 ], [ -78.482086181640625, -9.323195457458439 ], [ -78.482086181640625, -9.322916984558049 ], [ -78.482360839843636, -9.322916984558049 ], [ -78.482360839843636, -9.322639465331974 ], [ -78.482635498046818, -9.322639465331974 ], [ -78.482635498046818, -9.322360992431584 ], [ -78.482917785644474, -9.322360992431584 ], [ -78.482917785644474, -9.322083473205566 ], [ -78.483192443847599, -9.322083473205566 ], [ -78.483192443847599, -9.321805000305119 ], [ -78.484024047851562, -9.321805000305119 ], [ -78.484024047851562, -9.322083473205566 ], [ -78.484306335449219, -9.322083473205566 ], [ -78.484306335449219, -9.322360992431584 ], [ -78.48486328125, -9.322360992431584 ], [ -78.48486328125, -9.322916984558049 ], [ -78.485137939453125, -9.322916984558049 ], [ -78.485137939453125, -9.323471069335938 ], [ -78.485694885253849, -9.323471069335938 ], [ -78.485694885253849, -9.323195457458439 ], [ -78.485969543456974, -9.323195457458439 ], [ -78.485969543456974, -9.322916984558049 ], [ -78.486251831054631, -9.322916984558049 ], [ -78.486251831054631, -9.322639465331974 ], [ -78.486526489257756, -9.322639465331974 ], [ -78.486526489257756, -9.322083473205566 ], [ -78.486808776855412, -9.322083473205566 ], [ -78.486808776855412, -9.321526527404728 ], [ -78.487083435058594, -9.321526527404728 ], [ -78.487083435058594, -9.320973396301213 ], [ -78.486808776855412, -9.320973396301213 ], [ -78.486808776855412, -9.320417404174748 ], [ -78.486526489257756, -9.320417404174748 ], [ -78.486526489257756, -9.320138931274357 ], [ -78.486808776855412, -9.320138931274357 ], [ -78.486808776855412, -9.319861412048283 ], [ -78.487083435058594, -9.319861412048283 ], [ -78.487083435058594, -9.319305419921818 ], [ -78.486808776855412, -9.319305419921818 ], [ -78.486808776855412, -9.318751335144043 ], [ -78.486526489257756, -9.318751335144043 ], [ -78.486526489257756, -9.318195343017578 ], [ -78.486808776855412, -9.318195343017578 ], [ -78.486808776855412, -9.317916870117188 ], [ -78.487083435058594, -9.317916870117188 ], [ -78.487083435058594, -9.317639350891056 ], [ -78.4879150390625, -9.317639350891056 ], [ -78.4879150390625, -9.317916870117188 ], [ -78.488197326660156, -9.317916870117188 ], [ -78.488197326660156, -9.317639350891056 ], [ -78.488471984863281, -9.317639350891056 ], [ -78.488471984863281, -9.316526412963867 ], [ -78.488746643066349, -9.316526412963867 ], [ -78.488746643066349, -9.315973281860352 ], [ -78.489585876464787, -9.315973281860352 ], [ -78.489585876464787, -9.31541633605957 ], [ -78.488746643066349, -9.31541633605957 ], [ -78.488746643066349, -9.314584732055607 ], [ -78.489028930664006, -9.314584732055607 ], [ -78.489028930664006, -9.314027786254826 ], [ -78.49041748046875, -9.314027786254826 ], [ -78.49041748046875, -9.312359809875488 ], [ -78.491249084472656, -9.312359809875488 ], [ -78.491249084472656, -9.311805725097656 ], [ -78.491806030273438, -9.311805725097656 ], [ -78.491806030273438, -9.311528205871525 ], [ -78.492080688476506, -9.311528205871525 ], [ -78.492080688476506, -9.311249732971135 ], [ -78.492919921874943, -9.311249732971135 ], [ -78.492919921874943, -9.31193828582758 ], [ -78.492919921874943, -9.31208419799799 ], [ -78.492637634277287, -9.312082290649414 ], [ -78.492637634277287, -9.312915802001896 ], [ -78.492919921874943, -9.312915802001896 ], [ -78.492919921874943, -9.313194274902344 ], [ -78.493156433105469, -9.313194274902344 ], [ -78.493194580078125, -9.313471794128361 ], [ -78.49346923828125, -9.313471794128361 ], [ -78.49346923828125, -9.313750267028752 ], [ -78.49514007568348, -9.313750267028752 ], [ -78.49514007568348, -9.313471794128361 ], [ -78.495414733886662, -9.313471794128361 ], [ -78.495414733886662, -9.313194274902344 ], [ -78.495971679687443, -9.313194274902344 ], [ -78.495971679687443, -9.312915802001896 ], [ -78.496246337890625, -9.312915802001896 ], [ -78.496246337890625, -9.312638282775879 ], [ -78.49819183349598, -9.312638282775879 ], [ -78.49819183349598, -9.31097221374506 ], [ -78.498474121093693, -9.31097221374506 ], [ -78.498474121093693, -9.31041431427002 ], [ -78.49819183349598, -9.310416221618596 ], [ -78.49819183349598, -9.310137748718205 ], [ -78.497917175292969, -9.310137748718205 ], [ -78.497917175292969, -9.309860229492131 ], [ -78.497642517089844, -9.30986213684082 ], [ -78.497642517089844, -9.30958366394043 ], [ -78.497360229492188, -9.30958366394043 ], [ -78.497360229492188, -9.309304237365723 ], [ -78.496528625488281, -9.309304237365723 ], [ -78.496528625488281, -9.308748245239258 ], [ -78.496246337890625, -9.308750152587777 ], [ -78.496246337890625, -9.3084716796875 ], [ -78.495971679687443, -9.3084716796875 ], [ -78.495971679687443, -9.308750152587777 ], [ -78.49514007568348, -9.308750152587777 ], [ -78.49514007568348, -9.308194160461369 ], [ -78.495414733886662, -9.308194160461369 ], [ -78.495414733886662, -9.307915687560921 ], [ -78.495697021484318, -9.307915687560921 ], [ -78.495697021484318, -9.307359695434513 ], [ -78.495971679687443, -9.307359695434513 ], [ -78.495971679687443, -9.306528091430664 ], [ -78.495697021484318, -9.306528091430664 ], [ -78.495697021484318, -9.305972099304199 ], [ -78.495414733886662, -9.305972099304199 ], [ -78.495414733886662, -9.305693626403809 ], [ -78.49514007568348, -9.305693626403809 ], [ -78.49514007568348, -9.304583549499512 ], [ -78.495414733886662, -9.304583549499512 ], [ -78.495414733886662, -9.303750038146973 ], [ -78.496246337890625, -9.303750038146973 ], [ -78.496246337890625, -9.303193092346191 ], [ -78.49819183349598, -9.303193092346191 ], [ -78.49819183349598, -9.303750038146973 ], [ -78.498474121093693, -9.303750038146973 ], [ -78.498474121093693, -9.304027557373047 ], [ -78.498748779296818, -9.304027557373047 ], [ -78.498748779296818, -9.303750038146973 ], [ -78.499580383300781, -9.303750038146973 ], [ -78.499580383300781, -9.304027557373047 ], [ -78.499862670898438, -9.304027557373047 ], [ -78.499862670898438, -9.304306030273438 ], [ -78.500137329101562, -9.304306030273438 ], [ -78.500137329101562, -9.304027557373047 ], [ -78.500968933105469, -9.304027557373047 ], [ -78.500968933105469, -9.303750038146973 ], [ -78.501251220703125, -9.303750038146973 ], [ -78.501251220703125, -9.302918434143066 ], [ -78.500694274902344, -9.302918434143066 ], [ -78.500694274902344, -9.302637100219727 ], [ -78.499862670898438, -9.302639961242619 ], [ -78.499862670898438, -9.302362442016602 ], [ -78.499580383300781, -9.302362442016602 ], [ -78.499580383300781, -9.302081108093262 ], [ -78.499305725097599, -9.302083015441838 ], [ -78.499305725097599, -9.301248550414982 ], [ -78.499427795410099, -9.301248550414982 ], [ -78.499580383300781, -9.301248550414982 ], [ -78.499580383300781, -9.300971031188908 ], [ -78.500167846679631, -9.300971031188908 ], [ -78.500419616699219, -9.300971031188908 ], [ -78.500419616699219, -9.300695419311523 ], [ -78.501251220703125, -9.300695419311523 ], [ -78.501251220703125, -9.3004150390625 ], [ -78.501525878906193, -9.300416946411133 ], [ -78.501525878906193, -9.299583435058537 ], [ -78.500419616699219, -9.299583435058537 ], [ -78.500419616699219, -9.299304962158146 ], [ -78.500137329101562, -9.299304962158146 ], [ -78.500137329101562, -9.297917366027832 ], [ -78.500419616699219, -9.297917366027832 ], [ -78.500419616699219, -9.297361373901367 ], [ -78.500694274902344, -9.297361373901367 ], [ -78.500694274902344, -9.297082901000977 ], [ -78.500968933105469, -9.297082901000977 ], [ -78.500968933105469, -9.296526908874512 ], [ -78.500694274902344, -9.296526908874512 ], [ -78.500694274902344, -9.295695304870605 ], [ -78.499862670898438, -9.295695304870605 ], [ -78.499862670898438, -9.295970916747933 ], [ -78.499580383300781, -9.295970916747933 ], [ -78.499580383300781, -9.29625129699707 ], [ -78.499305725097599, -9.29625129699707 ], [ -78.499305725097599, -9.296526908874512 ], [ -78.49819183349598, -9.296526908874512 ], [ -78.49819183349598, -9.296805381774789 ], [ -78.497360229492188, -9.296805381774789 ], [ -78.497360229492188, -9.296526908874512 ], [ -78.497085571289062, -9.296526908874512 ], [ -78.497085571289062, -9.295970916747933 ], [ -78.496803283691406, -9.295970916747933 ], [ -78.496803283691406, -9.295416831970215 ], [ -78.496528625488281, -9.295416831970215 ], [ -78.496528625488281, -9.294583320617676 ], [ -78.496246337890625, -9.294583320617676 ], [ -78.496246337890625, -9.291805267333984 ], [ -78.496528625488281, -9.291805267333984 ], [ -78.496528625488281, -9.291248321533203 ], [ -78.496803283691406, -9.291251182556096 ], [ -78.496803283691406, -9.29041671752924 ], [ -78.497085571289062, -9.29041671752924 ], [ -78.497085571289062, -9.289859771728459 ], [ -78.497360229492188, -9.289859771728459 ], [ -78.497360229492188, -9.289306640625 ], [ -78.497917175292969, -9.289306640625 ], [ -78.497917175292969, -9.289029121398869 ], [ -78.49819183349598, -9.289029121398869 ], [ -78.49819183349598, -9.288470268249512 ], [ -78.498474121093693, -9.288470268249512 ], [ -78.498474121093693, -9.287914276123047 ], [ -78.498748779296818, -9.28791618347168 ], [ -78.498748779296818, -9.287637710571289 ], [ -78.499031066894474, -9.287637710571289 ], [ -78.499031066894474, -9.285971641540527 ], [ -78.499305725097599, -9.285971641540527 ], [ -78.499305725097599, -9.285694122314453 ], [ -78.499580383300781, -9.285694122314453 ], [ -78.499580383300781, -9.285415649414062 ], [ -78.500137329101562, -9.285415649414062 ], [ -78.500137329101562, -9.285138130187988 ], [ -78.500419616699219, -9.285138130187988 ], [ -78.500419616699219, -9.284861564636174 ], [ -78.500694274902344, -9.284859657287598 ], [ -78.500694274902344, -9.284582138061523 ], [ -78.502082824706974, -9.284582138061523 ], [ -78.502082824706974, -9.284305572509709 ], [ -78.502357482910099, -9.284305572509709 ], [ -78.502357482910099, -9.284028053283691 ], [ -78.502914428710938, -9.284028053283691 ], [ -78.502914428710938, -9.283749580383301 ], [ -78.503471374511719, -9.283749580383301 ], [ -78.503471374511719, -9.283472061157227 ], [ -78.503753662109375, -9.283472061157227 ], [ -78.503753662109375, -9.283193588256836 ], [ -78.504302978515625, -9.283193588256836 ], [ -78.504302978515625, -9.282916069030762 ], [ -78.504585266113281, -9.282916069030762 ], [ -78.504585266113281, -9.282637596130371 ], [ -78.504859924316349, -9.282637596130371 ], [ -78.504859924316349, -9.282360076904297 ], [ -78.505142211914006, -9.282360076904297 ], [ -78.505142211914006, -9.281805992126408 ], [ -78.505416870117131, -9.281805992126408 ], [ -78.505416870117131, -9.281528472900391 ], [ -78.505691528320256, -9.281528472900391 ], [ -78.505691528320256, -9.28125 ], [ -78.505973815917969, -9.28125 ], [ -78.505973815917969, -9.280971527099553 ], [ -78.506248474121094, -9.280971527099553 ], [ -78.506248474121094, -9.280694007873535 ], [ -78.50653076171875, -9.280694007873535 ], [ -78.50653076171875, -9.280415534973088 ], [ -78.506805419921875, -9.280415534973088 ], [ -78.506805419921875, -9.28013801574707 ], [ -78.507637023925781, -9.280139923095589 ], [ -78.507637023925781, -9.279862403869572 ], [ -78.508468627929631, -9.279862403869572 ], [ -78.508468627929631, -9.279582023620605 ], [ -78.508750915527287, -9.279582023620605 ], [ -78.508750915527287, -9.279027938842717 ], [ -78.510414123535156, -9.279027938842717 ], [ -78.510414123535156, -9.278750419616642 ], [ -78.510696411132812, -9.278750419616642 ], [ -78.510696411132812, -9.278471946716252 ], [ -78.510971069335824, -9.278471946716252 ], [ -78.510971069335824, -9.277915954589787 ], [ -78.511253356933537, -9.277917861938477 ], [ -78.511253356933537, -9.277636528015023 ], [ -78.511528015136662, -9.277636528015023 ], [ -78.511528015136662, -9.277359008789006 ], [ -78.511802673339787, -9.277361869812012 ], [ -78.511802673339787, -9.277084350585881 ], [ -78.513473510742188, -9.277084350585881 ], [ -78.513473510742188, -9.276805877685547 ], [ -78.514305114746037, -9.276805877685547 ], [ -78.514305114746037, -9.277361869812012 ], [ -78.514579772949162, -9.277359008789006 ], [ -78.514579772949162, -9.277636528015023 ], [ -78.515136718749943, -9.277636528015023 ], [ -78.515136718749943, -9.278750419616642 ], [ -78.515419006347599, -9.278750419616642 ], [ -78.515419006347599, -9.279027938842717 ], [ -78.517082214355469, -9.279027938842717 ], [ -78.517082214355469, -9.278750419616642 ], [ -78.517639160156193, -9.278750419616642 ], [ -78.517639160156193, -9.278471946716252 ], [ -78.517913818359318, -9.278471946716252 ], [ -78.517913818359318, -9.277915954589787 ], [ -78.518196105956974, -9.277917861938477 ], [ -78.518196105956974, -9.277636528015023 ], [ -78.519302368164062, -9.277636528015023 ], [ -78.519302368164062, -9.277359008789006 ], [ -78.519584655761719, -9.277361869812012 ], [ -78.519584655761719, -9.277084350585881 ], [ -78.519859313964844, -9.277084350585881 ], [ -78.519859313964844, -9.276805877685547 ], [ -78.520973205566349, -9.276805877685547 ], [ -78.520973205566349, -9.277084350585881 ], [ -78.521530151367131, -9.277084350585881 ], [ -78.521530151367131, -9.276805877685547 ], [ -78.522087097167969, -9.276805877685547 ], [ -78.522087097167969, -9.277361869812012 ], [ -78.522361755371094, -9.277359008789006 ], [ -78.522361755371094, -9.277636528015023 ], [ -78.523193359375, -9.277636528015023 ], [ -78.523193359375, -9.277359008789006 ], [ -78.524024963378849, -9.277361869812012 ], [ -78.524024963378849, -9.277084350585881 ], [ -78.524581909179631, -9.277084350585881 ], [ -78.524581909179631, -9.276528358459416 ], [ -78.524864196777287, -9.276528358459416 ], [ -78.524864196777287, -9.276248931884766 ], [ -78.524581909179631, -9.276248931884766 ], [ -78.524581909179631, -9.27569580078125 ], [ -78.524864196777287, -9.27569580078125 ], [ -78.524864196777287, -9.275054931640568 ], [ -78.524864196777287, -9.274861335754395 ], [ -78.525016784667969, -9.274861335754395 ], [ -78.525138854980469, -9.274861335754395 ], [ -78.525138854980469, -9.274708747863713 ], [ -78.525138854980469, -9.27430534362793 ], [ -78.525253295898381, -9.27430534362793 ], [ -78.525413513183594, -9.27430534362793 ], [ -78.525413513183594, -9.273470878601074 ], [ -78.525138854980469, -9.273470878601074 ], [ -78.525138854980469, -9.272916793823185 ], [ -78.524307250976506, -9.272916793823185 ], [ -78.524307250976506, -9.272360801696721 ], [ -78.524024963378849, -9.272360801696721 ], [ -78.524024963378849, -9.272083282470703 ], [ -78.524307250976506, -9.272083282470703 ], [ -78.524307250976506, -9.27129936218256 ], [ -78.524307250976506, -9.270417213439885 ], [ -78.524581909179631, -9.270417213439885 ], [ -78.524581909179631, -9.269859313964844 ], [ -78.524864196777287, -9.26986122131342 ], [ -78.524864196777287, -9.269582748413029 ], [ -78.525138854980469, -9.269582748413029 ], [ -78.525138854980469, -9.269305229186955 ], [ -78.525413513183594, -9.269305229186955 ], [ -78.525413513183594, -9.267083168029728 ], [ -78.524864196777287, -9.267083168029728 ], [ -78.524864196777287, -9.267360687255746 ], [ -78.524581909179631, -9.267360687255746 ], [ -78.524581909179631, -9.267639160156193 ], [ -78.524024963378849, -9.267639160156193 ], [ -78.524024963378849, -9.267916679382324 ], [ -78.523750305175668, -9.267916679382324 ], [ -78.523750305175668, -9.268195152282601 ], [ -78.523193359375, -9.268193244934082 ], [ -78.523193359375, -9.268472671508789 ], [ -78.522918701171875, -9.268472671508789 ], [ -78.522918701171875, -9.26875114440918 ], [ -78.522361755371094, -9.268749237060547 ], [ -78.522361755371094, -9.269026756286564 ], [ -78.522087097167969, -9.269026756286564 ], [ -78.522087097167969, -9.269305229186955 ], [ -78.520973205566349, -9.269305229186955 ], [ -78.520973205566349, -9.269582748413029 ], [ -78.519859313964844, -9.269582748413029 ], [ -78.519859313964844, -9.26986122131342 ], [ -78.517639160156193, -9.26986122131342 ], [ -78.517639160156193, -9.269582748413029 ], [ -78.517364501953125, -9.269582748413029 ], [ -78.517364501953125, -9.269305229186955 ], [ -78.517639160156193, -9.269305229186955 ], [ -78.517639160156193, -9.268749237060547 ], [ -78.517913818359318, -9.26875114440918 ], [ -78.517913818359318, -9.268472671508789 ], [ -78.518196105956974, -9.268470764160099 ], [ -78.518196105956974, -9.267639160156193 ], [ -78.517913818359318, -9.267639160156193 ], [ -78.517913818359318, -9.267360687255746 ], [ -78.517082214355469, -9.267360687255746 ], [ -78.517082214355469, -9.265971183776799 ], [ -78.516807556152344, -9.265973091125488 ], [ -78.516807556152344, -9.265694618225098 ], [ -78.516250610351562, -9.265694618225098 ], [ -78.516250610351562, -9.265417098999023 ], [ -78.515975952148438, -9.265417098999023 ], [ -78.515975952148438, -9.264861106872559 ], [ -78.515419006347599, -9.264861106872559 ], [ -78.515419006347599, -9.265138626098633 ], [ -78.515136718749943, -9.265138626098633 ], [ -78.515136718749943, -9.265417098999023 ], [ -78.514862060546818, -9.265417098999023 ], [ -78.514862060546818, -9.265694618225098 ], [ -78.513191223144531, -9.265694618225098 ], [ -78.513191223144531, -9.264025688171387 ], [ -78.512641906738281, -9.264025688171387 ], [ -78.512641906738281, -9.263472557067871 ], [ -78.512359619140625, -9.263472557067871 ], [ -78.512359619140625, -9.262359619140625 ], [ -78.512084960937443, -9.262359619140625 ], [ -78.512084960937443, -9.261526107788086 ], [ -78.511802673339787, -9.261526107788086 ], [ -78.511802673339787, -9.260970115661621 ], [ -78.511528015136662, -9.260972023010197 ], [ -78.511528015136662, -9.260693550109806 ], [ -78.510139465332031, -9.260693550109806 ], [ -78.510139465332031, -9.259860038757324 ], [ -78.509864807128906, -9.259860038757324 ], [ -78.509864807128906, -9.258193969726506 ], [ -78.50958251953125, -9.258193969726506 ], [ -78.50958251953125, -9.257916450500431 ], [ -78.509025573730469, -9.257916450500431 ], [ -78.509025573730469, -9.257637977600041 ], [ -78.508750915527287, -9.257637977600041 ], [ -78.508750915527287, -9.257362365722656 ], [ -78.508468627929631, -9.257362365722656 ], [ -78.508468627929631, -9.257081985473576 ], [ -78.507919311523324, -9.257081985473576 ], [ -78.507919311523324, -9.256806373596191 ], [ -78.507637023925781, -9.256806373596191 ], [ -78.507637023925781, -9.256525993347111 ], [ -78.507080078125, -9.256527900695801 ], [ -78.507080078125, -9.256250381469613 ], [ -78.505142211914006, -9.256250381469613 ], [ -78.505142211914006, -9.255971908569336 ], [ -78.504302978515625, -9.255971908569336 ], [ -78.504302978515625, -9.255694389343205 ], [ -78.502914428710938, -9.255694389343205 ], [ -78.502914428710938, -9.255971908569336 ], [ -78.502197265624886, -9.255971908569336 ], [ -78.501670837402344, -9.255971908569336 ], [ -78.501251220703125, -9.255971908569336 ], [ -78.501251220703125, -9.256189346313477 ], [ -78.501136779785099, -9.2561998367309 ], [ -78.500694274902344, -9.256250381469613 ], [ -78.500694274902344, -9.256527900695801 ], [ -78.500137329101562, -9.256525993347111 ], [ -78.500137329101562, -9.256806373596191 ], [ -78.499305725097599, -9.256806373596191 ], [ -78.499305725097599, -9.256525993347111 ], [ -78.498748779296818, -9.256527900695801 ], [ -78.498748779296818, -9.256250381469613 ], [ -78.498474121093693, -9.256250381469613 ], [ -78.498474121093693, -9.255971908569336 ], [ -78.497917175292969, -9.255971908569336 ], [ -78.497917175292969, -9.255694389343205 ], [ -78.497642517089844, -9.255694389343205 ], [ -78.497642517089844, -9.255415916442757 ], [ -78.497360229492188, -9.255415916442757 ], [ -78.497360229492188, -9.25514030456543 ], [ -78.496803283691406, -9.25514030456543 ], [ -78.496803283691406, -9.254859924316349 ], [ -78.496246337890625, -9.254859924316349 ], [ -78.496246337890625, -9.25514030456543 ], [ -78.495697021484318, -9.25514030456543 ], [ -78.495697021484318, -9.254584312438965 ], [ -78.495414733886662, -9.254584312438965 ], [ -78.495414733886662, -9.252083778381348 ], [ -78.494583129882812, -9.252083778381348 ], [ -78.494583129882812, -9.252639770507756 ], [ -78.493751525878906, -9.252639770507756 ], [ -78.493751525878906, -9.252362251281738 ], [ -78.49346923828125, -9.252362251281738 ], [ -78.49346923828125, -9.251527786254883 ], [ -78.491806030273438, -9.251527786254883 ], [ -78.491806030273438, -9.251250267028809 ], [ -78.491531372070312, -9.251250267028809 ], [ -78.491531372070312, -9.250694274902344 ], [ -78.491249084472656, -9.250694274902344 ], [ -78.491249084472656, -9.250140190124455 ], [ -78.490974426269531, -9.250140190124455 ], [ -78.490974426269531, -9.248748779296818 ], [ -78.491249084472656, -9.248748779296818 ], [ -78.491249084472656, -9.247915267944336 ], [ -78.491531372070312, -9.247915267944336 ], [ -78.491531372070312, -9.247638702392578 ], [ -78.490974426269531, -9.247638702392578 ], [ -78.490974426269531, -9.246526718139648 ], [ -78.490692138671875, -9.246526718139648 ], [ -78.490692138671875, -9.246249198913517 ], [ -78.49041748046875, -9.246249198913517 ], [ -78.49041748046875, -9.244583129882812 ], [ -78.490692138671875, -9.244583129882812 ], [ -78.490692138671875, -9.244027137756348 ], [ -78.490974426269531, -9.244027137756348 ], [ -78.490974426269531, -9.243471145629769 ], [ -78.491249084472656, -9.243471145629769 ], [ -78.491249084472656, -9.242917060852051 ], [ -78.491531372070312, -9.242917060852051 ], [ -78.491531372070312, -9.242082595825195 ], [ -78.490974426269531, -9.242082595825195 ], [ -78.490974426269531, -9.242361068725586 ], [ -78.490081787109318, -9.242361068725586 ], [ -78.489585876464787, -9.242361068725586 ], [ -78.489585876464787, -9.241854667663517 ], [ -78.489860534667912, -9.241805076599121 ], [ -78.489860534667912, -9.24152660369873 ], [ -78.490135192871094, -9.24152660369873 ], [ -78.490135192871094, -9.240973472595215 ], [ -78.49041748046875, -9.240973472595215 ], [ -78.49041748046875, -9.240693092346191 ], [ -78.489860534667912, -9.240694999694767 ], [ -78.489860534667912, -9.240416526794377 ], [ -78.490135192871094, -9.240416526794377 ], [ -78.490135192871094, -9.240139007568359 ], [ -78.49041748046875, -9.240139007568359 ], [ -78.49041748046875, -9.239583015441895 ], [ -78.490692138671875, -9.239583015441895 ], [ -78.490692138671875, -9.23902702331543 ], [ -78.49041748046875, -9.23902702331543 ], [ -78.49041748046875, -9.237360954284611 ], [ -78.490135192871094, -9.237360954284611 ], [ -78.490135192871094, -9.23597335815424 ], [ -78.488746643066349, -9.23597335815424 ], [ -78.488746643066349, -9.235694885253849 ], [ -78.488471984863281, -9.235694885253849 ], [ -78.488471984863281, -9.234860420226994 ], [ -78.488746643066349, -9.234860420226994 ], [ -78.488746643066349, -9.234304428100529 ], [ -78.488471984863281, -9.234304428100529 ], [ -78.488471984863281, -9.233750343322754 ], [ -78.489028930664006, -9.233750343322754 ], [ -78.489028930664006, -9.233194351196289 ], [ -78.488746643066349, -9.233194351196289 ], [ -78.488746643066349, -9.232915878295898 ], [ -78.488471984863281, -9.232915878295898 ], [ -78.488471984863281, -9.232638359069824 ], [ -78.488197326660156, -9.232638359069824 ], [ -78.488197326660156, -9.232359886169434 ], [ -78.4879150390625, -9.232359886169434 ], [ -78.4879150390625, -9.231528282165527 ], [ -78.488197326660156, -9.231528282165527 ], [ -78.488197326660156, -9.230972290039062 ], [ -78.4879150390625, -9.230972290039062 ], [ -78.4879150390625, -9.230416297912598 ], [ -78.487640380859375, -9.230416297912598 ], [ -78.487640380859375, -9.230137825012207 ], [ -78.487358093261719, -9.230137825012207 ], [ -78.487358093261719, -9.229860305786133 ], [ -78.487083435058594, -9.229862213134709 ], [ -78.487083435058594, -9.227359771728516 ], [ -78.487640380859375, -9.227359771728516 ], [ -78.487640380859375, -9.227084159851017 ], [ -78.487358093261719, -9.227084159851017 ], [ -78.487358093261719, -9.226249694824162 ], [ -78.487083435058594, -9.226249694824162 ], [ -78.487083435058594, -9.225969314575195 ], [ -78.486808776855412, -9.225972175598088 ], [ -78.486808776855412, -9.225693702697697 ], [ -78.486526489257756, -9.225693702697697 ], [ -78.486526489257756, -9.224860191345215 ], [ -78.486251831054631, -9.224860191345215 ], [ -78.486251831054631, -9.224303245544377 ], [ -78.486526489257756, -9.224306106567383 ], [ -78.486526489257756, -9.224027633666992 ], [ -78.486251831054631, -9.224027633666992 ], [ -78.486251831054631, -9.221248626708984 ], [ -78.485969543456974, -9.221248626708984 ], [ -78.485969543456974, -9.220415115356445 ], [ -78.486251831054631, -9.220417022705021 ], [ -78.486251831054631, -9.220138549804631 ], [ -78.48486328125, -9.220138549804631 ], [ -78.48486328125, -9.219582557678166 ], [ -78.484306335449219, -9.219582557678166 ], [ -78.484306335449219, -9.219305038452148 ], [ -78.484580993652344, -9.219305038452148 ], [ -78.484580993652344, -9.219026565551701 ], [ -78.48486328125, -9.219026565551701 ], [ -78.48486328125, -9.217361450195256 ], [ -78.484580993652344, -9.217361450195256 ], [ -78.484580993652344, -9.216251373291016 ], [ -78.48486328125, -9.216251373291016 ], [ -78.48486328125, -9.215695381164437 ], [ -78.485137939453125, -9.215695381164437 ], [ -78.485137939453125, -9.21541690826416 ], [ -78.485420227050781, -9.21541690826416 ], [ -78.485420227050781, -9.215139389038029 ], [ -78.485137939453125, -9.215139389038029 ], [ -78.485137939453125, -9.214304924011174 ], [ -78.485694885253849, -9.214304924011174 ], [ -78.485694885253849, -9.214583396911564 ], [ -78.485969543456974, -9.214583396911564 ], [ -78.485969543456974, -9.213473320007324 ], [ -78.486526489257756, -9.213473320007324 ], [ -78.486526489257756, -9.213194847106934 ], [ -78.486808776855412, -9.213194847106934 ], [ -78.486808776855412, -9.212638854980469 ], [ -78.487083435058594, -9.212638854980469 ], [ -78.487083435058594, -9.212361335754395 ], [ -78.486808776855412, -9.212361335754395 ], [ -78.486808776855412, -9.212082862854004 ], [ -78.486526489257756, -9.212082862854004 ], [ -78.486526489257756, -9.211805343627873 ], [ -78.486251831054631, -9.211805343627873 ], [ -78.486251831054631, -9.211528778076172 ], [ -78.485420227050781, -9.211528778076172 ], [ -78.485420227050781, -9.210972785949707 ], [ -78.485137939453125, -9.210972785949707 ], [ -78.485137939453125, -9.208470344543457 ], [ -78.485420227050781, -9.208473205566406 ], [ -78.485420227050781, -9.207084655761662 ], [ -78.485694885253849, -9.207084655761662 ], [ -78.485694885253849, -9.206804275512695 ], [ -78.485969543456974, -9.206804275512695 ], [ -78.485969543456974, -9.206527709960938 ], [ -78.486251831054631, -9.206527709960938 ], [ -78.486251831054631, -9.205971717834473 ], [ -78.486526489257756, -9.205971717834473 ], [ -78.486526489257756, -9.205415725707951 ], [ -78.486808776855412, -9.205415725707951 ], [ -78.486808776855412, -9.204582214355412 ], [ -78.487083435058594, -9.204582214355412 ], [ -78.487083435058594, -9.203470230102539 ], [ -78.486808776855412, -9.203470230102539 ], [ -78.486808776855412, -9.202360153198185 ], [ -78.487083435058594, -9.202362060546875 ], [ -78.487083435058594, -9.202083587646484 ], [ -78.487358093261719, -9.202083587646484 ], [ -78.487358093261719, -9.201804161071721 ], [ -78.487640380859375, -9.201804161071721 ], [ -78.487640380859375, -9.201250076293945 ], [ -78.4879150390625, -9.201250076293945 ], [ -78.4879150390625, -9.200971603393555 ], [ -78.488197326660156, -9.200971603393555 ], [ -78.488197326660156, -9.20069408416748 ], [ -78.488471984863281, -9.20069408416748 ], [ -78.488471984863281, -9.20041561126709 ], [ -78.488746643066349, -9.20041561126709 ], [ -78.488746643066349, -9.200138092041016 ], [ -78.489028930664006, -9.200139999389592 ], [ -78.489028930664006, -9.199861526489201 ], [ -78.489303588867131, -9.199861526489201 ], [ -78.489303588867131, -9.199582099914551 ], [ -78.489585876464787, -9.199584007263184 ], [ -78.489585876464787, -9.199305534362736 ], [ -78.489860534667912, -9.199305534362736 ], [ -78.489860534667912, -9.199180603027344 ], [ -78.489860534667912, -9.199028015136719 ], [ -78.490135192871094, -9.199028015136719 ], [ -78.490135192871094, -9.198749542236328 ], [ -78.49041748046875, -9.198749542236328 ], [ -78.49041748046875, -9.198472023010254 ], [ -78.490692138671875, -9.198472023010254 ], [ -78.490692138671875, -9.198193550109863 ], [ -78.490974426269531, -9.198193550109863 ], [ -78.490974426269531, -9.197916030883789 ], [ -78.491317749023381, -9.197916030883789 ], [ -78.491806030273438, -9.197917938232365 ], [ -78.491806030273438, -9.197637557983398 ], [ -78.49346923828125, -9.197637557983398 ], [ -78.49346923828125, -9.197359085083008 ], [ -78.493751525878906, -9.1973619461059 ], [ -78.493751525878906, -9.197084426879883 ], [ -78.494026184082031, -9.197084426879883 ], [ -78.494026184082031, -9.196805953979435 ], [ -78.494308471679688, -9.196805953979435 ], [ -78.494308471679688, -9.195693016052189 ], [ -78.494583129882812, -9.195693016052189 ], [ -78.494583129882812, -9.194581031799316 ], [ -78.494308471679688, -9.194581031799316 ], [ -78.494308471679688, -9.194026947021484 ], [ -78.494026184082031, -9.194026947021484 ], [ -78.494026184082031, -9.193470954894963 ], [ -78.493751525878906, -9.193470954894963 ], [ -78.493751525878906, -9.193195343017578 ], [ -78.492919921874943, -9.193195343017578 ], [ -78.492919921874943, -9.193029403686523 ], [ -78.492919921874943, -9.192639350891113 ], [ -78.493194580078125, -9.192639350891113 ], [ -78.493194580078125, -9.192083358764648 ], [ -78.49346923828125, -9.192083358764648 ], [ -78.49346923828125, -9.191804885864258 ], [ -78.493751525878906, -9.191804885864258 ], [ -78.493751525878906, -9.191527366638184 ], [ -78.494026184082031, -9.191527366638184 ], [ -78.494026184082031, -9.191248893737793 ], [ -78.494308471679688, -9.191248893737793 ], [ -78.494308471679688, -9.190973281860352 ], [ -78.494583129882812, -9.190973281860352 ], [ -78.494583129882812, -9.190694808959961 ], [ -78.494857788085938, -9.190694808959961 ], [ -78.494857788085938, -9.190502166748047 ], [ -78.494857788085938, -9.190138816833496 ], [ -78.49514007568348, -9.190138816833496 ], [ -78.49514007568348, -9.189861297607422 ], [ -78.495414733886662, -9.189861297607422 ], [ -78.495414733886662, -9.189582824707031 ], [ -78.49554443359375, -9.189582824707031 ], [ -78.495697021484318, -9.189582824707031 ], [ -78.495697021484318, -9.189305305480957 ], [ -78.495971679687443, -9.189305305480957 ], [ -78.495971679687443, -9.189026832580566 ], [ -78.496246337890625, -9.189026832580566 ], [ -78.496246337890625, -9.188749313354492 ], [ -78.496528625488281, -9.188751220703068 ], [ -78.496528625488281, -9.188470840454102 ], [ -78.497085571289062, -9.188470840454102 ], [ -78.497085571289062, -9.188195228576603 ], [ -78.497360229492188, -9.188195228576603 ], [ -78.497360229492188, -9.187916755676213 ], [ -78.497642517089844, -9.187916755676213 ], [ -78.497642517089844, -9.187639236450195 ], [ -78.497917175292969, -9.187639236450195 ], [ -78.497917175292969, -9.187360763549748 ], [ -78.498474121093693, -9.187360763549748 ], [ -78.498474121093693, -9.18708324432373 ], [ -78.499031066894474, -9.18708324432373 ], [ -78.499031066894474, -9.18680477142334 ], [ -78.499305725097599, -9.18680477142334 ], [ -78.499305725097599, -9.186529159545842 ], [ -78.499862670898438, -9.186529159545842 ], [ -78.499862670898438, -9.186248779296875 ], [ -78.500694274902344, -9.186248779296875 ], [ -78.500694274902344, -9.185971260070801 ], [ -78.501068115234375, -9.185971260070801 ], [ -78.501251220703125, -9.185973167419377 ], [ -78.501251220703125, -9.185694694518986 ], [ -78.502082824706974, -9.185694694518986 ], [ -78.502082824706974, -9.185415267944336 ], [ -78.502639770507756, -9.185417175292912 ], [ -78.502639770507756, -9.185138702392521 ], [ -78.503196716308594, -9.185138702392521 ], [ -78.503196716308594, -9.184858322143555 ], [ -78.503753662109375, -9.184861183166447 ], [ -78.503753662109375, -9.184582710266056 ], [ -78.5040283203125, -9.184582710266056 ], [ -78.5040283203125, -9.184305191040039 ], [ -78.504585266113281, -9.184305191040039 ], [ -78.504585266113281, -9.184026718139592 ], [ -78.505142211914006, -9.184026718139592 ], [ -78.505142211914006, -9.183748245239201 ], [ -78.505973815917969, -9.183748245239201 ], [ -78.505973815917969, -9.184079170227051 ], [ -78.505973815917969, -9.184305191040039 ], [ -78.506248474121094, -9.184305191040039 ], [ -78.506248474121094, -9.184582710266056 ], [ -78.507080078125, -9.184582710266056 ], [ -78.507080078125, -9.183748245239201 ], [ -78.507362365722656, -9.183748245239201 ], [ -78.507362365722656, -9.182639122009221 ], [ -78.507080078125, -9.182639122009221 ], [ -78.507080078125, -9.181806564331055 ], [ -78.507362365722656, -9.181806564331055 ], [ -78.507362365722656, -9.181526184081974 ], [ -78.507637023925781, -9.18152904510498 ], [ -78.507637023925781, -9.18125057220459 ], [ -78.507919311523324, -9.18125057220459 ], [ -78.507919311523324, -9.180693626403809 ], [ -78.508193969726506, -9.180693626403809 ], [ -78.508193969726506, -9.180334091186467 ], [ -78.508193969726506, -9.17986011505127 ], [ -78.507919311523324, -9.17986011505127 ], [ -78.507919311523324, -9.179304122924805 ], [ -78.508468627929631, -9.179304122924805 ], [ -78.508468627929631, -9.17902755737299 ], [ -78.509307861328125, -9.17902755737299 ], [ -78.509307861328125, -9.17874813079834 ], [ -78.510139465332031, -9.17874813079834 ], [ -78.510139465332031, -9.17902755737299 ], [ -78.510932922363281, -9.17902755737299 ], [ -78.511528015136662, -9.17902755737299 ], [ -78.511528015136662, -9.178834915161133 ], [ -78.511528015136662, -9.178750038146973 ], [ -78.512077331542969, -9.178750038146973 ], [ -78.512916564941406, -9.178750038146973 ], [ -78.512916564941406, -9.178620338439941 ], [ -78.512916564941406, -9.178471565246525 ], [ -78.513336181640568, -9.178471565246525 ], [ -78.514305114746037, -9.178471565246525 ], [ -78.514305114746037, -9.178194046020508 ], [ -78.515693664550781, -9.178194046020508 ], [ -78.515693664550781, -9.177915573120117 ], [ -78.516807556152344, -9.177915573120117 ], [ -78.516807556152344, -9.177638053894043 ], [ -78.518196105956974, -9.177638053894043 ], [ -78.518196105956974, -9.177362442016545 ], [ -78.519302368164062, -9.177362442016545 ], [ -78.519302368164062, -9.177082061767578 ], [ -78.520690917968693, -9.177082061767578 ], [ -78.520690917968693, -9.17680644989008 ], [ -78.521804809570312, -9.17680644989008 ], [ -78.521804809570312, -9.176527976989689 ], [ -78.52197265625, -9.176527976989689 ], [ -78.523750305175668, -9.176527976989689 ], [ -78.523750305175668, -9.176250457763615 ], [ -78.525413513183594, -9.176250457763615 ], [ -78.525413513183594, -9.175971984863224 ], [ -78.527359008789006, -9.175971984863224 ], [ -78.527359008789006, -9.175694465637207 ], [ -78.529029846191406, -9.175694465637207 ], [ -78.529029846191406, -9.17541599273676 ], [ -78.530975341796818, -9.17541599273676 ], [ -78.530975341796818, -9.175138473510742 ], [ -78.532638549804688, -9.175138473510742 ], [ -78.532638549804688, -9.174860000610352 ], [ -78.534584045410156, -9.174860000610352 ], [ -78.534584045410156, -9.174584388732853 ], [ -78.545135498046875, -9.174584388732853 ], [ -78.545135498046875, -9.174860000610352 ], [ -78.546249389648381, -9.174860000610352 ], [ -78.546249389648381, -9.175138473510742 ], [ -78.54736328125, -9.175138473510742 ], [ -78.54736328125, -9.17541599273676 ], [ -78.548469543457031, -9.17541599273676 ], [ -78.548469543457031, -9.175694465637207 ], [ -78.549583435058537, -9.175694465637207 ], [ -78.549583435058537, -9.175971984863224 ], [ -78.550140380859318, -9.175971984863224 ], [ -78.550140380859318, -9.176250457763615 ], [ -78.550971984863281, -9.176250457763615 ], [ -78.550971984863281, -9.176527976989689 ], [ -78.551528930664062, -9.176526069641113 ], [ -78.551528930664062, -9.17680644989008 ], [ -78.552085876464844, -9.17680644989008 ], [ -78.552085876464844, -9.177082061767578 ], [ -78.552917480468693, -9.177082061767578 ], [ -78.552917480468693, -9.177362442016545 ], [ -78.553474426269474, -9.177362442016545 ], [ -78.553474426269474, -9.177638053894043 ], [ -78.554306030273438, -9.177638053894043 ], [ -78.554306030273438, -9.177915573120117 ], [ -78.554862976074219, -9.177915573120117 ], [ -78.554862976074219, -9.178194046020508 ], [ -78.555419921875, -9.178194046020508 ], [ -78.555419921875, -9.178471565246525 ], [ -78.555969238281193, -9.178471565246525 ], [ -78.555969238281193, -9.178750038146973 ], [ -78.556251525878849, -9.17874813079834 ], [ -78.556251525878849, -9.17902755737299 ], [ -78.556808471679631, -9.17902755737299 ], [ -78.556808471679631, -9.179304122924805 ], [ -78.557357788085938, -9.179304122924805 ], [ -78.557357788085938, -9.179585456848145 ], [ -78.557914733886719, -9.179585456848145 ], [ -78.557914733886719, -9.17986011505127 ], [ -78.558197021484375, -9.17986011505127 ], [ -78.558197021484375, -9.180137634277344 ], [ -78.558746337890568, -9.180137634277344 ], [ -78.558746337890568, -9.180416107177734 ], [ -78.559303283691349, -9.180416107177734 ], [ -78.559303283691349, -9.180693626403809 ], [ -78.559585571289006, -9.180693626403809 ], [ -78.559585571289006, -9.180972099304199 ], [ -78.559860229492131, -9.18097019195551 ], [ -78.559860229492131, -9.18125057220459 ], [ -78.560417175292969, -9.18125057220459 ], [ -78.560417175292969, -9.18152904510498 ], [ -78.560691833496094, -9.181526184081974 ], [ -78.560691833496094, -9.181806564331055 ], [ -78.56097412109375, -9.181806564331055 ], [ -78.56097412109375, -9.182082176208496 ], [ -78.561248779296875, -9.182082176208496 ], [ -78.561248779296875, -9.18235969543457 ], [ -78.561805725097656, -9.18235969543457 ], [ -78.561805725097656, -9.182639122009221 ], [ -78.562080383300724, -9.182639122009221 ], [ -78.562080383300724, -9.182916641235352 ], [ -78.562362670898381, -9.182916641235352 ], [ -78.562362670898381, -9.183195114135685 ], [ -78.562637329101506, -9.183195114135685 ], [ -78.562637329101506, -9.183472633361816 ], [ -78.563194274902344, -9.183472633361816 ], [ -78.563194274902344, -9.183751106262207 ], [ -78.563468933105469, -9.183748245239201 ], [ -78.563468933105469, -9.184026718139592 ], [ -78.563751220703125, -9.184026718139592 ], [ -78.563751220703125, -9.184305191040039 ], [ -78.56402587890625, -9.184305191040039 ], [ -78.56402587890625, -9.184858322143555 ], [ -78.564308166503906, -9.184858322143555 ], [ -78.564308166503906, -9.185138702392521 ], [ -78.564582824707031, -9.185138702392521 ], [ -78.564582824707031, -9.185417175292912 ], [ -78.564857482910156, -9.185415267944336 ], [ -78.564857482910156, -9.185971260070801 ], [ -78.565139770507699, -9.185971260070801 ], [ -78.565139770507699, -9.186248779296875 ], [ -78.565414428710881, -9.186248779296875 ], [ -78.565414428710881, -9.186529159545842 ], [ -78.565696716308537, -9.186529159545842 ], [ -78.565696716308537, -9.18708324432373 ], [ -78.565971374511662, -9.18708324432373 ], [ -78.565971374511662, -9.187360763549748 ], [ -78.566253662109318, -9.187360763549748 ], [ -78.566253662109318, -9.187639236450195 ], [ -78.5665283203125, -9.187639236450195 ], [ -78.5665283203125, -9.187916755676213 ], [ -78.566802978515625, -9.187916755676213 ], [ -78.566802978515625, -9.188195228576603 ], [ -78.567085266113281, -9.188195228576603 ], [ -78.567085266113281, -9.188470840454102 ], [ -78.567642211914062, -9.188470840454102 ], [ -78.567642211914062, -9.188751220703068 ], [ -78.567916870117188, -9.188749313354492 ], [ -78.567916870117188, -9.189026832580566 ], [ -78.568191528320199, -9.189026832580566 ], [ -78.568191528320199, -9.189305305480957 ], [ -78.566802978515625, -9.189305305480957 ], [ -78.566802978515625, -9.189026832580566 ], [ -78.565971374511662, -9.189026832580566 ], [ -78.565971374511662, -9.188749313354492 ], [ -78.565696716308537, -9.188751220703068 ], [ -78.565696716308537, -9.188470840454102 ], [ -78.565414428710881, -9.188470840454102 ], [ -78.565414428710881, -9.188195228576603 ], [ -78.56524658203125, -9.188195228576603 ], [ -78.564308166503906, -9.188195228576603 ], [ -78.564308166503906, -9.188470840454102 ], [ -78.56402587890625, -9.188470840454102 ], [ -78.56402587890625, -9.189026832580566 ], [ -78.564308166503906, -9.189026832580566 ], [ -78.564308166503906, -9.189861297607422 ], [ -78.564582824707031, -9.189861297607422 ], [ -78.564582824707031, -9.190138816833496 ], [ -78.565139770507699, -9.190138816833496 ], [ -78.565139770507699, -9.190417289733887 ], [ -78.565666198730469, -9.190417289733887 ], [ -78.565971374511662, -9.190417289733887 ], [ -78.565971374511662, -9.190694808959961 ], [ -78.565811157226562, -9.190694808959961 ], [ -78.565696716308537, -9.190694808959961 ], [ -78.565696716308537, -9.191248893737793 ], [ -78.565414428710881, -9.191248893737793 ], [ -78.565414428710881, -9.191804885864258 ], [ -78.565696716308537, -9.191804885864258 ], [ -78.565696716308537, -9.192360877990723 ], [ -78.565971374511662, -9.192360877990723 ], [ -78.565971374511662, -9.193470954894963 ], [ -78.565696716308537, -9.193470954894963 ], [ -78.565696716308537, -9.194026947021484 ], [ -78.564857482910156, -9.194026947021484 ], [ -78.564857482910156, -9.194305419921818 ], [ -78.56402587890625, -9.194305419921818 ], [ -78.56402587890625, -9.194862365722599 ], [ -78.563751220703125, -9.194862365722599 ], [ -78.563751220703125, -9.195139884948674 ], [ -78.563468933105469, -9.195137023925724 ], [ -78.563468933105469, -9.195414543151799 ], [ -78.563194274902344, -9.195414543151799 ], [ -78.563194274902344, -9.195693016052189 ], [ -78.562362670898381, -9.195693016052189 ], [ -78.562362670898381, -9.196249961853027 ], [ -78.561805725097656, -9.196249961853027 ], [ -78.561805725097656, -9.196528434753418 ], [ -78.561531066894531, -9.196528434753418 ], [ -78.561531066894531, -9.196805953979435 ], [ -78.56097412109375, -9.196805953979435 ], [ -78.56097412109375, -9.197084426879883 ], [ -78.560417175292969, -9.197084426879883 ], [ -78.560417175292969, -9.197637557983398 ], [ -78.559303283691349, -9.197637557983398 ], [ -78.559303283691349, -9.197917938232365 ], [ -78.559028625488224, -9.197916030883789 ], [ -78.559028625488224, -9.199028015136719 ], [ -78.559303283691349, -9.199028015136719 ], [ -78.559303283691349, -9.199582099914551 ], [ -78.559028625488224, -9.199582099914551 ], [ -78.559028625488224, -9.199861526489201 ], [ -78.5584716796875, -9.199861526489201 ], [ -78.5584716796875, -9.200139999389592 ], [ -78.557640075683594, -9.200138092041016 ], [ -78.557640075683594, -9.20069408416748 ], [ -78.557914733886719, -9.20069408416748 ], [ -78.557914733886719, -9.202083587646484 ], [ -78.557357788085938, -9.202083587646484 ], [ -78.557357788085938, -9.202362060546875 ], [ -78.557083129882812, -9.202360153198185 ], [ -78.557083129882812, -9.202637672424316 ], [ -78.556526184081974, -9.202637672424316 ], [ -78.556526184081974, -9.203472137451172 ], [ -78.556808471679631, -9.203470230102539 ], [ -78.556808471679631, -9.204028129577637 ], [ -78.557083129882812, -9.204028129577637 ], [ -78.557083129882812, -9.204582214355412 ], [ -78.557357788085938, -9.204582214355412 ], [ -78.557357788085938, -9.204859733581486 ], [ -78.557640075683594, -9.204859733581486 ], [ -78.557640075683594, -9.205138206481877 ], [ -78.557914733886719, -9.205138206481877 ], [ -78.557914733886719, -9.205257415771428 ], [ -78.557914733886719, -9.205971717834473 ], [ -78.557640075683594, -9.205971717834473 ], [ -78.557640075683594, -9.206804275512695 ], [ -78.558113098144531, -9.206804275512695 ], [ -78.558197021484375, -9.206946372985783 ], [ -78.558197021484375, -9.207084655761662 ], [ -78.5584716796875, -9.207084655761662 ], [ -78.5584716796875, -9.20736026763916 ], [ -78.559028625488224, -9.20736026763916 ], [ -78.559028625488224, -9.207916259765568 ], [ -78.559303283691349, -9.207916259765568 ], [ -78.559303283691349, -9.208750724792424 ], [ -78.559585571289006, -9.208750724792424 ], [ -78.559585571289006, -9.209306716918888 ], [ -78.559303283691349, -9.209306716918888 ], [ -78.559303283691349, -9.209860801696777 ], [ -78.559028625488224, -9.209860801696777 ], [ -78.559028625488224, -9.210416793823242 ], [ -78.558746337890568, -9.210416793823242 ], [ -78.558746337890568, -9.211251258850098 ], [ -78.559028625488224, -9.211251258850098 ], [ -78.559028625488224, -9.211805343627873 ], [ -78.558746337890568, -9.211805343627873 ], [ -78.558746337890568, -9.212361335754395 ], [ -78.5584716796875, -9.212361335754395 ], [ -78.5584716796875, -9.213194847106934 ], [ -78.558197021484375, -9.213194847106934 ], [ -78.558197021484375, -9.213750839233398 ], [ -78.557914733886719, -9.213750839233398 ], [ -78.557914733886719, -9.214860916137582 ], [ -78.557640075683594, -9.214860916137582 ], [ -78.557640075683594, -9.215970993041935 ], [ -78.557357788085938, -9.215970993041935 ], [ -78.557357788085938, -9.2165269851684 ], [ -78.557083129882812, -9.2165269851684 ], [ -78.557083129882812, -9.216805458068791 ], [ -78.556808471679631, -9.216805458068791 ], [ -78.556808471679631, -9.217082977294865 ], [ -78.556526184081974, -9.217082977294865 ], [ -78.556526184081974, -9.217361450195256 ], [ -78.556251525878849, -9.217361450195256 ], [ -78.556251525878849, -9.217917442321721 ], [ -78.555969238281193, -9.217917442321721 ], [ -78.555969238281193, -9.218473434448185 ], [ -78.555694580078068, -9.218473434448185 ], [ -78.555694580078068, -9.219026565551701 ], [ -78.555419921875, -9.219026565551701 ], [ -78.555419921875, -9.220333099365178 ], [ -78.555419921875, -9.220696449279785 ], [ -78.555694580078068, -9.220696449279785 ], [ -78.555694580078068, -9.22236156463623 ], [ -78.555419921875, -9.22236156463623 ], [ -78.555419921875, -9.222723960876465 ], [ -78.555419921875, -9.222917556762695 ], [ -78.555137634277344, -9.222917556762695 ], [ -78.555137634277344, -9.223302841186523 ], [ -78.555137634277344, -9.223471641540527 ], [ -78.554862976074219, -9.223471641540527 ], [ -78.554862976074219, -9.223866462707463 ], [ -78.554862976074219, -9.224027633666992 ], [ -78.554580688476562, -9.224027633666992 ], [ -78.554580688476562, -9.224583625793457 ], [ -78.554306030273438, -9.224583625793457 ], [ -78.554306030273438, -9.224862098693848 ], [ -78.554580688476562, -9.224860191345215 ], [ -78.554580688476562, -9.225137710571232 ], [ -78.55474853515625, -9.225137710571232 ], [ -78.554862976074219, -9.225137710571232 ], [ -78.554862976074219, -9.225972175598088 ], [ -78.554695129394531, -9.225972175598088 ], [ -78.554580688476562, -9.225969314575195 ], [ -78.554580688476562, -9.226087570190373 ], [ -78.554580688476562, -9.226249694824162 ], [ -78.554420471191406, -9.226249694824162 ], [ -78.554306030273438, -9.226249694824162 ], [ -78.554306030273438, -9.226366043090763 ], [ -78.554306030273438, -9.226528167724553 ], [ -78.554145812988224, -9.226528167724553 ], [ -78.554031372070312, -9.226528167724553 ], [ -78.554031372070312, -9.226646423339844 ], [ -78.554031372070312, -9.22680568695057 ], [ -78.553871154785099, -9.22680568695057 ], [ -78.553474426269474, -9.22680568695057 ], [ -78.553474426269474, -9.227084159851017 ], [ -78.552917480468693, -9.227084159851017 ], [ -78.552917480468693, -9.227640151977425 ], [ -78.552635192871037, -9.227638244628906 ], [ -78.552635192871037, -9.228750228881779 ], [ -78.552360534667855, -9.228750228881779 ], [ -78.552360534667855, -9.229860305786133 ], [ -78.552635192871037, -9.229860305786133 ], [ -78.552635192871037, -9.230416297912598 ], [ -78.552803039550724, -9.230416297912598 ], [ -78.552917480468693, -9.230416297912598 ], [ -78.552917480468693, -9.230972290039062 ], [ -78.553192138671818, -9.230972290039062 ], [ -78.553192138671818, -9.231528282165527 ], [ -78.553474426269474, -9.231528282165527 ], [ -78.553474426269474, -9.232084274291992 ], [ -78.553749084472656, -9.232084274291992 ], [ -78.553749084472656, -9.232638359069824 ], [ -78.553474426269474, -9.232638359069824 ], [ -78.553474426269474, -9.233471870422363 ], [ -78.553192138671818, -9.233471870422363 ], [ -78.553192138671818, -9.233750343322754 ], [ -78.552917480468693, -9.233750343322754 ], [ -78.552917480468693, -9.234304428100529 ], [ -78.552635192871037, -9.234304428100529 ], [ -78.552635192871037, -9.234860420226994 ], [ -78.551246643066406, -9.234860420226994 ], [ -78.551246643066406, -9.23597335815424 ], [ -78.550971984863281, -9.23597335815424 ], [ -78.550971984863281, -9.236806869506836 ], [ -78.5504150390625, -9.23680400848383 ], [ -78.5504150390625, -9.237916946411076 ], [ -78.550140380859318, -9.237916946411076 ], [ -78.550140380859318, -9.239583015441895 ], [ -78.5504150390625, -9.239583015441895 ], [ -78.5504150390625, -9.240693092346191 ], [ -78.550140380859318, -9.240693092346191 ], [ -78.550140380859318, -9.242361068725586 ], [ -78.551246643066406, -9.242361068725586 ], [ -78.551246643066406, -9.242082595825195 ], [ -78.552085876464844, -9.242082595825195 ], [ -78.552085876464844, -9.242361068725586 ], [ -78.553192138671818, -9.242361068725586 ], [ -78.553192138671818, -9.242917060852051 ], [ -78.553474426269474, -9.242917060852051 ], [ -78.553474426269474, -9.243194580078125 ], [ -78.553192138671818, -9.243194580078125 ], [ -78.553192138671818, -9.243473052978516 ], [ -78.553474426269474, -9.243471145629769 ], [ -78.553474426269474, -9.244583129882812 ], [ -78.553192138671818, -9.244583129882812 ], [ -78.553192138671818, -9.245139122009277 ], [ -78.553474426269474, -9.245139122009277 ], [ -78.553474426269474, -9.245693206787053 ], [ -78.554031372070312, -9.245693206787053 ], [ -78.554031372070312, -9.245972633361816 ], [ -78.554306030273438, -9.245972633361816 ], [ -78.554306030273438, -9.246249198913517 ], [ -78.554862976074219, -9.246249198913517 ], [ -78.554862976074219, -9.246526718139648 ], [ -78.556251525878849, -9.246526718139648 ], [ -78.556251525878849, -9.246249198913517 ], [ -78.556526184081974, -9.246249198913517 ], [ -78.556526184081974, -9.245972633361816 ], [ -78.556808471679631, -9.245972633361816 ], [ -78.556808471679631, -9.245416641235352 ], [ -78.557083129882812, -9.245416641235352 ], [ -78.557083129882812, -9.245139122009277 ], [ -78.5584716796875, -9.245139122009277 ], [ -78.5584716796875, -9.244304656982422 ], [ -78.558746337890568, -9.244304656982422 ], [ -78.558746337890568, -9.243748664855957 ], [ -78.559303283691349, -9.243748664855957 ], [ -78.559303283691349, -9.24263858795166 ], [ -78.559860229492131, -9.24263858795166 ], [ -78.559860229492131, -9.242361068725586 ], [ -78.560142517089844, -9.242361068725586 ], [ -78.560142517089844, -9.242082595825195 ], [ -78.560417175292969, -9.242082595825195 ], [ -78.560417175292969, -9.241805076599121 ], [ -78.560691833496094, -9.241805076599121 ], [ -78.560691833496094, -9.24152660369873 ], [ -78.56097412109375, -9.24152660369873 ], [ -78.56097412109375, -9.241249084472656 ], [ -78.561248779296875, -9.241250991821232 ], [ -78.561248779296875, -9.240416526794377 ], [ -78.561531066894531, -9.240416526794377 ], [ -78.561531066894531, -9.239583015441895 ], [ -78.562080383300724, -9.239583015441895 ], [ -78.562080383300724, -9.238751411437931 ], [ -78.56097412109375, -9.238751411437931 ], [ -78.56097412109375, -9.239028930664006 ], [ -78.560691833496094, -9.23902702331543 ], [ -78.560691833496094, -9.239304542541504 ], [ -78.559303283691349, -9.239304542541504 ], [ -78.559303283691349, -9.239583015441895 ], [ -78.558746337890568, -9.239583015441895 ], [ -78.558746337890568, -9.239860534667912 ], [ -78.5584716796875, -9.239860534667912 ], [ -78.5584716796875, -9.236525535583439 ], [ -78.558197021484375, -9.236525535583439 ], [ -78.558197021484375, -9.236806869506836 ], [ -78.557914733886719, -9.236806869506836 ], [ -78.557914733886719, -9.236525535583439 ], [ -78.557357788085938, -9.236525535583439 ], [ -78.557357788085938, -9.236806869506836 ], [ -78.557083129882812, -9.23680400848383 ], [ -78.557083129882812, -9.237083435058594 ], [ -78.556251525878849, -9.237083435058594 ], [ -78.556251525878849, -9.23680400848383 ], [ -78.555694580078068, -9.236806869506836 ], [ -78.555694580078068, -9.236525535583439 ], [ -78.555419921875, -9.236525535583439 ], [ -78.555419921875, -9.236248016357365 ], [ -78.555137634277344, -9.236248016357365 ], [ -78.555137634277344, -9.235137939453125 ], [ -78.555419921875, -9.235137939453125 ], [ -78.555419921875, -9.233471870422363 ], [ -78.555969238281193, -9.233471870422363 ], [ -78.555969238281193, -9.232915878295898 ], [ -78.556526184081974, -9.232915878295898 ], [ -78.556526184081974, -9.232638359069824 ], [ -78.556808471679631, -9.232638359069824 ], [ -78.556808471679631, -9.232359886169434 ], [ -78.557640075683594, -9.232359886169434 ], [ -78.557640075683594, -9.231528282165527 ], [ -78.557914733886719, -9.231528282165527 ], [ -78.557914733886719, -9.231249809265137 ], [ -78.5584716796875, -9.231249809265137 ], [ -78.5584716796875, -9.230416297912598 ], [ -78.558746337890568, -9.230416297912598 ], [ -78.558746337890568, -9.230137825012207 ], [ -78.5584716796875, -9.230137825012207 ], [ -78.5584716796875, -9.229950904846191 ], [ -78.5584716796875, -9.229862213134709 ], [ -78.558662414550781, -9.229862213134709 ], [ -78.559303283691349, -9.229862213134709 ], [ -78.559303283691349, -9.229583740234318 ], [ -78.559524536132812, -9.229583740234318 ], [ -78.559860229492131, -9.229583740234318 ], [ -78.559860229492131, -9.229862213134709 ], [ -78.560691833496094, -9.229862213134709 ], [ -78.560691833496094, -9.229583740234318 ], [ -78.562637329101506, -9.229583740234318 ], [ -78.562637329101506, -9.229304313659668 ], [ -78.562919616699162, -9.229304313659668 ], [ -78.562919616699162, -9.229583740234318 ], [ -78.564582824707031, -9.229583740234318 ], [ -78.564582824707031, -9.229304313659668 ], [ -78.564308166503906, -9.229306221008244 ], [ -78.564308166503906, -9.229027748107853 ], [ -78.565139770507699, -9.229027748107853 ], [ -78.565139770507699, -9.228750228881779 ], [ -78.565971374511662, -9.228750228881779 ], [ -78.565971374511662, -9.228471755981388 ], [ -78.5665283203125, -9.228471755981388 ], [ -78.5665283203125, -9.227084159851017 ], [ -78.566802978515625, -9.227084159851017 ], [ -78.566802978515625, -9.22680568695057 ], [ -78.5665283203125, -9.22680568695057 ], [ -78.5665283203125, -9.226528167724553 ], [ -78.567085266113281, -9.226528167724553 ], [ -78.567085266113281, -9.226249694824162 ], [ -78.567359924316406, -9.226249694824162 ], [ -78.567359924316406, -9.226528167724553 ], [ -78.567642211914062, -9.226528167724553 ], [ -78.567642211914062, -9.22680568695057 ], [ -78.568191528320199, -9.22680568695057 ], [ -78.568191528320199, -9.226249694824162 ], [ -78.568473815917912, -9.226249694824162 ], [ -78.568473815917912, -9.225137710571232 ], [ -78.569305419921818, -9.225137710571232 ], [ -78.569305419921818, -9.224860191345215 ], [ -78.569580078125, -9.224860191345215 ], [ -78.569580078125, -9.224303245544377 ], [ -78.569862365722656, -9.224303245544377 ], [ -78.569862365722656, -9.223193168640137 ], [ -78.570137023925781, -9.223193168640137 ], [ -78.570137023925781, -9.222917556762695 ], [ -78.570419311523438, -9.222917556762695 ], [ -78.570419311523438, -9.222637176513672 ], [ -78.570137023925781, -9.222637176513672 ], [ -78.570137023925781, -9.22208118438715 ], [ -78.569862365722656, -9.222084045410156 ], [ -78.569862365722656, -9.221804618835449 ], [ -78.569694519042912, -9.221804618835449 ], [ -78.569580078125, -9.221804618835449 ], [ -78.569580078125, -9.22157096862793 ], [ -78.568473815917912, -9.221527099609375 ], [ -78.568473815917912, -9.22097110748291 ], [ -78.568748474121037, -9.22097110748291 ], [ -78.568748474121037, -9.220696449279785 ], [ -78.569030761718693, -9.220696449279785 ], [ -78.569030761718693, -9.220415115356445 ], [ -78.569305419921818, -9.220417022705021 ], [ -78.569305419921818, -9.220138549804631 ], [ -78.569030761718693, -9.220138549804631 ], [ -78.569030761718693, -9.21985912322998 ], [ -78.568748474121037, -9.219861030578556 ], [ -78.568748474121037, -9.219582557678166 ], [ -78.568473815917912, -9.219582557678166 ], [ -78.568473815917912, -9.219380378723088 ], [ -78.568473815917912, -9.218749046325684 ], [ -78.568191528320199, -9.218749046325684 ], [ -78.568191528320199, -9.218473434448185 ], [ -78.569030761718693, -9.218473434448185 ], [ -78.569030761718693, -9.217361450195256 ], [ -78.570419311523438, -9.217361450195256 ], [ -78.570419311523438, -9.21763896942133 ], [ -78.570968627929688, -9.21763896942133 ], [ -78.570968627929688, -9.217361450195256 ], [ -78.571250915527344, -9.217361450195256 ], [ -78.571250915527344, -9.217082977294865 ], [ -78.571525573730412, -9.217082977294865 ], [ -78.571525573730412, -9.216251373291016 ], [ -78.572082519531193, -9.216251373291016 ], [ -78.572082519531193, -9.2165269851684 ], [ -78.572364807128849, -9.2165269851684 ], [ -78.572364807128849, -9.217082977294865 ], [ -78.573471069335938, -9.217082977294865 ], [ -78.573471069335938, -9.2165269851684 ], [ -78.573753356933594, -9.2165269851684 ], [ -78.573753356933594, -9.216805458068791 ], [ -78.5745849609375, -9.216805458068791 ], [ -78.5745849609375, -9.2165269851684 ], [ -78.574859619140568, -9.2165269851684 ], [ -78.574859619140568, -9.216251373291016 ], [ -78.576248168945312, -9.216251373291016 ], [ -78.576248168945312, -9.215970993041935 ], [ -78.576530456542969, -9.215970993041935 ], [ -78.576530456542969, -9.21541690826416 ], [ -78.576805114746094, -9.21541690826416 ], [ -78.576805114746094, -9.215139389038029 ], [ -78.577079772949219, -9.215139389038029 ], [ -78.577079772949219, -9.214304924011174 ], [ -78.57763671875, -9.214304924011174 ], [ -78.57763671875, -9.214027404785099 ], [ -78.577919006347543, -9.214027404785099 ], [ -78.577919006347543, -9.212917327880859 ], [ -78.57763671875, -9.212917327880859 ], [ -78.57763671875, -9.212638854980469 ], [ -78.577362060546875, -9.212638854980469 ], [ -78.577362060546875, -9.212082862854004 ], [ -78.577079772949219, -9.212082862854004 ], [ -78.577079772949219, -9.211528778076172 ], [ -78.576805114746094, -9.211528778076172 ], [ -78.576805114746094, -9.210426330566293 ], [ -78.576805114746094, -9.209213256835938 ], [ -78.576805114746094, -9.208750724792424 ], [ -78.577079772949219, -9.208750724792424 ], [ -78.577079772949219, -9.208470344543457 ], [ -78.57659912109375, -9.208473205566406 ], [ -78.576248168945312, -9.208473205566406 ], [ -78.576248168945312, -9.207637786865178 ], [ -78.576530456542969, -9.207637786865178 ], [ -78.576530456542969, -9.20736026763916 ], [ -78.576248168945312, -9.20736026763916 ], [ -78.576248168945312, -9.207084655761662 ], [ -78.575973510742188, -9.207084655761662 ], [ -78.575973510742188, -9.206527709960938 ], [ -78.575607299804631, -9.206527709960938 ], [ -78.575416564941349, -9.206527709960938 ], [ -78.575416564941349, -9.205971717834473 ], [ -78.575531005859318, -9.205971717834473 ], [ -78.575973510742188, -9.205971717834473 ], [ -78.575973510742188, -9.205692291259766 ], [ -78.576805114746094, -9.205692291259766 ], [ -78.576805114746094, -9.205971717834473 ], [ -78.577079772949219, -9.205971717834473 ], [ -78.577079772949219, -9.206527709960938 ], [ -78.577362060546875, -9.206527709960938 ], [ -78.577362060546875, -9.206804275512695 ], [ -78.57763671875, -9.206804275512695 ], [ -78.57763671875, -9.20736026763916 ], [ -78.578750610351506, -9.20736026763916 ], [ -78.578750610351506, -9.207637786865178 ], [ -78.579025268554688, -9.207637786865178 ], [ -78.579025268554688, -9.207916259765568 ], [ -78.579307556152344, -9.207916259765568 ], [ -78.579307556152344, -9.207637786865178 ], [ -78.579864501953125, -9.207637786865178 ], [ -78.579864501953125, -9.20736026763916 ], [ -78.58013916015625, -9.20736026763916 ], [ -78.58013916015625, -9.206804275512695 ], [ -78.580413818359375, -9.206804275512695 ], [ -78.580413818359375, -9.206583023071289 ], [ -78.580413818359375, -9.20624828338623 ], [ -78.580894470214844, -9.206250190734806 ], [ -78.581527709960881, -9.206250190734806 ], [ -78.581527709960881, -9.205971717834473 ], [ -78.581802368164006, -9.205971717834473 ], [ -78.581802368164006, -9.205415725707951 ], [ -78.581527709960881, -9.205415725707951 ], [ -78.581527709960881, -9.205138206481877 ], [ -78.581802368164006, -9.205138206481877 ], [ -78.581802368164006, -9.204859733581486 ], [ -78.582084655761662, -9.204859733581486 ], [ -78.582084655761662, -9.204582214355412 ], [ -78.581802368164006, -9.204582214355412 ], [ -78.581802368164006, -9.203193664550781 ], [ -78.582916259765625, -9.203193664550781 ], [ -78.582916259765625, -9.203472137451172 ], [ -78.583747863769531, -9.203470230102539 ], [ -78.583747863769531, -9.203749656677246 ], [ -78.584030151367188, -9.203749656677246 ], [ -78.584030151367188, -9.204028129577637 ], [ -78.584304809570256, -9.204028129577637 ], [ -78.584304809570256, -9.204305648803711 ], [ -78.584587097167912, -9.204305648803711 ], [ -78.584587097167912, -9.203749656677246 ], [ -78.584861755371037, -9.203749656677246 ], [ -78.584861755371037, -9.203193664550781 ], [ -78.585136413574162, -9.203193664550781 ], [ -78.585136413574162, -9.202916145324593 ], [ -78.584587097167912, -9.202916145324593 ], [ -78.584587097167912, -9.202637672424316 ], [ -78.584304809570256, -9.202637672424316 ], [ -78.584304809570256, -9.202083587646484 ], [ -78.584587097167912, -9.202083587646484 ], [ -78.584587097167912, -9.20152759552002 ], [ -78.584861755371037, -9.20152759552002 ], [ -78.584861755371037, -9.200971603393555 ], [ -78.584587097167912, -9.200971603393555 ], [ -78.584587097167912, -9.20041561126709 ], [ -78.584304809570256, -9.20041561126709 ], [ -78.584304809570256, -9.200138092041016 ], [ -78.584030151367188, -9.200139999389592 ], [ -78.584030151367188, -9.199861526489201 ], [ -78.581649780273438, -9.199861526489201 ], [ -78.581527709960881, -9.199861526489201 ], [ -78.581527709960881, -9.199582099914551 ], [ -78.580970764160043, -9.199584007263184 ], [ -78.580970764160043, -9.199305534362736 ], [ -78.580413818359375, -9.199305534362736 ], [ -78.580413818359375, -9.199028015136719 ], [ -78.579864501953125, -9.199028015136719 ], [ -78.579864501953125, -9.198749542236328 ], [ -78.579696655273381, -9.198749542236328 ], [ -78.579582214355469, -9.198749542236328 ], [ -78.579582214355469, -9.198555946350098 ], [ -78.579582214355469, -9.198472023010254 ], [ -78.579307556152344, -9.198472023010254 ], [ -78.579307556152344, -9.198321342468262 ], [ -78.579307556152344, -9.198193550109863 ], [ -78.579025268554688, -9.198193550109863 ], [ -78.579025268554688, -9.197916030883789 ], [ -78.578193664550724, -9.197917938232365 ], [ -78.578193664550724, -9.197637557983398 ], [ -78.577919006347543, -9.197637557983398 ], [ -78.577919006347543, -9.197359085083008 ], [ -78.577751159667969, -9.1973619461059 ], [ -78.57763671875, -9.1973619461059 ], [ -78.57763671875, -9.197084426879883 ], [ -78.577362060546875, -9.197084426879883 ], [ -78.577362060546875, -9.196805953979435 ], [ -78.577079772949219, -9.196805953979435 ], [ -78.577079772949219, -9.196528434753418 ], [ -78.576805114746094, -9.196528434753418 ], [ -78.576805114746094, -9.195970535278263 ], [ -78.576530456542969, -9.195970535278263 ], [ -78.576530456542969, -9.195137023925724 ], [ -78.576805114746094, -9.195137023925724 ], [ -78.576805114746094, -9.194581031799316 ], [ -78.576942443847599, -9.194582939147949 ], [ -78.577079772949219, -9.194582939147949 ], [ -78.577079772949219, -9.194305419921818 ], [ -78.577919006347543, -9.194305419921818 ], [ -78.577919006347543, -9.194026947021484 ], [ -78.579307556152344, -9.194026947021484 ], [ -78.579307556152344, -9.194305419921818 ], [ -78.579864501953125, -9.194305419921818 ], [ -78.579864501953125, -9.194582939147949 ], [ -78.58013916015625, -9.194581031799316 ], [ -78.58013916015625, -9.194862365722599 ], [ -78.580696105957031, -9.194862365722599 ], [ -78.580696105957031, -9.195139884948674 ], [ -78.580413818359375, -9.195137023925724 ], [ -78.580413818359375, -9.196249961853027 ], [ -78.580696105957031, -9.196249961853027 ], [ -78.580696105957031, -9.196805953979435 ], [ -78.580970764160043, -9.196805953979435 ], [ -78.580970764160043, -9.197084426879883 ], [ -78.581253051757756, -9.197084426879883 ], [ -78.581253051757756, -9.197637557983398 ], [ -78.581802368164006, -9.197637557983398 ], [ -78.581802368164006, -9.197359085083008 ], [ -78.582359313964844, -9.197359085083008 ], [ -78.582359313964844, -9.197637557983398 ], [ -78.58319091796875, -9.197637557983398 ], [ -78.58319091796875, -9.196322441101074 ], [ -78.58319091796875, -9.196249961853027 ], [ -78.584030151367188, -9.196249961853027 ], [ -78.584030151367188, -9.195970535278263 ], [ -78.583747863769531, -9.195970535278263 ], [ -78.583747863769531, -9.195414543151799 ], [ -78.583473205566406, -9.195414543151799 ], [ -78.583473205566406, -9.194305419921818 ], [ -78.585136413574162, -9.194305419921818 ], [ -78.585136413574162, -9.194582939147949 ], [ -78.585418701171818, -9.194581031799316 ], [ -78.585418701171818, -9.195137023925724 ], [ -78.586524963378906, -9.195137023925724 ], [ -78.586524963378906, -9.195414543151799 ], [ -78.587081909179688, -9.195414543151799 ], [ -78.587081909179688, -9.195693016052189 ], [ -78.587913513183537, -9.195693016052189 ], [ -78.587913513183537, -9.195970535278263 ], [ -78.589584350585938, -9.195970535278263 ], [ -78.589584350585938, -9.195693016052189 ], [ -78.589859008789062, -9.195693016052189 ], [ -78.589859008789062, -9.195137023925724 ], [ -78.590141296386719, -9.195139884948674 ], [ -78.590141296386719, -9.194794654846135 ], [ -78.590141296386719, -9.194026947021484 ], [ -78.590415954589844, -9.194026947021484 ], [ -78.590415954589844, -9.193749427795353 ], [ -78.590789794921818, -9.193749427795353 ], [ -78.590972900390568, -9.193749427795353 ], [ -78.590972900390568, -9.193470954894963 ], [ -78.591247558593693, -9.193470954894963 ], [ -78.591247558593693, -9.193195343017578 ], [ -78.591529846191349, -9.193195343017578 ], [ -78.591529846191349, -9.192916870117188 ], [ -78.592361450195312, -9.192916870117188 ], [ -78.592361450195312, -9.192639350891113 ], [ -78.592918395996094, -9.192639350891113 ], [ -78.592918395996094, -9.192916870117188 ], [ -78.594863891601506, -9.192916870117188 ], [ -78.594863891601506, -9.191527366638184 ], [ -78.595138549804688, -9.191527366638184 ], [ -78.595138549804688, -9.190973281860352 ], [ -78.595413208007812, -9.190973281860352 ], [ -78.595413208007812, -9.190417289733887 ], [ -78.595138549804688, -9.190417289733887 ], [ -78.595138549804688, -9.190050125122013 ], [ -78.595138549804688, -9.189582824707031 ], [ -78.595413208007812, -9.189582824707031 ], [ -78.595413208007812, -9.189026832580566 ], [ -78.595695495605469, -9.189026832580566 ], [ -78.595695495605469, -9.188749313354492 ], [ -78.596130371093693, -9.188749313354492 ], [ -78.596801757812386, -9.188751220703068 ], [ -78.596801757812386, -9.188470840454102 ], [ -78.596527099609375, -9.188470840454102 ], [ -78.596527099609375, -9.187916755676213 ], [ -78.596801757812386, -9.187916755676213 ], [ -78.596801757812386, -9.187639236450195 ], [ -78.597084045410099, -9.187639236450195 ], [ -78.597084045410099, -9.187360763549748 ], [ -78.597358703613224, -9.187360763549748 ], [ -78.597358703613224, -9.18708324432373 ], [ -78.597640991210881, -9.18708324432373 ], [ -78.597640991210881, -9.18680477142334 ], [ -78.597915649414006, -9.18680477142334 ], [ -78.597915649414006, -9.186529159545842 ], [ -78.598197937011662, -9.186529159545842 ], [ -78.598197937011662, -9.186248779296875 ], [ -78.598472595214844, -9.186248779296875 ], [ -78.598472595214844, -9.185971260070801 ], [ -78.600418090820256, -9.185971260070801 ], [ -78.600418090820256, -9.186529159545842 ], [ -78.600975036621037, -9.186529159545842 ], [ -78.600975036621037, -9.186248779296875 ], [ -78.601249694824162, -9.186248779296875 ], [ -78.601249694824162, -9.185971260070801 ], [ -78.601524353027344, -9.185973167419377 ], [ -78.601524353027344, -9.185694694518986 ], [ -78.602081298828125, -9.185694694518986 ], [ -78.602081298828125, -9.185973167419377 ], [ -78.602363586425781, -9.185971260070801 ], [ -78.602363586425781, -9.186248779296875 ], [ -78.603195190429688, -9.186248779296875 ], [ -78.603195190429688, -9.185694694518986 ], [ -78.603469848632756, -9.185694694518986 ], [ -78.603469848632756, -9.185138702392521 ], [ -78.603195190429688, -9.185138702392521 ], [ -78.603195190429688, -9.184858322143555 ], [ -78.602912902832031, -9.184858322143555 ], [ -78.602912902832031, -9.184305191040039 ], [ -78.602363586425781, -9.184305191040039 ], [ -78.602363586425781, -9.184026718139592 ], [ -78.601799011230469, -9.184026718139592 ], [ -78.601524353027344, -9.184026718139592 ], [ -78.601524353027344, -9.183748245239201 ], [ -78.600975036621037, -9.183751106262207 ], [ -78.600975036621037, -9.183472633361816 ], [ -78.601081848144474, -9.183472633361816 ], [ -78.601249694824162, -9.183472633361816 ], [ -78.601249694824162, -9.183195114135685 ], [ -78.601524353027344, -9.183195114135685 ], [ -78.601524353027344, -9.182639122009221 ], [ -78.603195190429688, -9.182639122009221 ], [ -78.603195190429688, -9.18235969543457 ], [ -78.603469848632756, -9.18235969543457 ], [ -78.603469848632756, -9.181806564331055 ], [ -78.60333251953125, -9.181806564331055 ], [ -78.603195190429688, -9.181806564331055 ], [ -78.603195190429688, -9.18097019195551 ], [ -78.602912902832031, -9.180972099304199 ], [ -78.602912902832031, -9.180693626403809 ], [ -78.602363586425781, -9.180693626403809 ], [ -78.602363586425781, -9.180416107177734 ], [ -78.602081298828125, -9.180416107177734 ], [ -78.602081298828125, -9.180693626403809 ], [ -78.601524353027344, -9.180693626403809 ], [ -78.601524353027344, -9.180416107177734 ], [ -78.601249694824162, -9.180416107177734 ], [ -78.601249694824162, -9.17986011505127 ], [ -78.600975036621037, -9.17986011505127 ], [ -78.600975036621037, -9.179585456848145 ], [ -78.601219177246094, -9.179585456848145 ], [ -78.601524353027344, -9.179585456848145 ], [ -78.601524353027344, -9.179304122924805 ], [ -78.602912902832031, -9.179304122924805 ], [ -78.602912902832031, -9.17874813079834 ], [ -78.603195190429688, -9.17874813079834 ], [ -78.603195190429688, -9.178194046020508 ], [ -78.603469848632756, -9.178194046020508 ], [ -78.603469848632756, -9.177915573120117 ], [ -78.602935791015625, -9.177915573120117 ], [ -78.602912902832031, -9.177638053894043 ], [ -78.603195190429688, -9.177638053894043 ], [ -78.603195190429688, -9.177082061767578 ], [ -78.603469848632756, -9.177082061767578 ], [ -78.603469848632756, -9.17680644989008 ], [ -78.603752136230412, -9.17680644989008 ], [ -78.603752136230412, -9.176250457763615 ], [ -78.6048583984375, -9.176250457763615 ], [ -78.6048583984375, -9.176527976989689 ], [ -78.605972290039062, -9.176527976989689 ], [ -78.605972290039062, -9.176250457763615 ], [ -78.605697631835938, -9.176250457763615 ], [ -78.605697631835938, -9.175694465637207 ], [ -78.605972290039062, -9.175694465637207 ], [ -78.605972290039062, -9.175138473510742 ], [ -78.60652923583973, -9.175138473510742 ], [ -78.60652923583973, -9.17541599273676 ], [ -78.606803894042912, -9.17541599273676 ], [ -78.606803894042912, -9.175694465637207 ], [ -78.607086181640568, -9.175694465637207 ], [ -78.607086181640568, -9.175971984863224 ], [ -78.607360839843693, -9.175971984863224 ], [ -78.607360839843693, -9.176526069641113 ], [ -78.607635498046875, -9.176526069641113 ], [ -78.607635498046875, -9.17680644989008 ], [ -78.607917785644531, -9.17680644989008 ], [ -78.607917785644531, -9.177082061767578 ], [ -78.608192443847656, -9.177082061767578 ], [ -78.608192443847656, -9.177362442016545 ], [ -78.609024047851562, -9.177362442016545 ], [ -78.609024047851562, -9.177082061767578 ], [ -78.60958099365223, -9.177082061767578 ], [ -78.60958099365223, -9.17680644989008 ], [ -78.610137939453068, -9.17680644989008 ], [ -78.610137939453068, -9.176526069641113 ], [ -78.610420227050724, -9.176527976989689 ], [ -78.610420227050724, -9.176134109497013 ], [ -78.610420227050724, -9.175971984863224 ], [ -78.610572814941406, -9.175971984863224 ], [ -78.610694885253849, -9.175971984863224 ], [ -78.610694885253849, -9.17541599273676 ], [ -78.610420227050724, -9.17541599273676 ], [ -78.610420227050724, -9.175138473510742 ], [ -78.610137939453068, -9.175138473510742 ], [ -78.610137939453068, -9.174584388732853 ], [ -78.610420227050724, -9.174584388732853 ], [ -78.610420227050724, -9.174305915832406 ], [ -78.610137939453068, -9.174305915832406 ], [ -78.610137939453068, -9.174028396606388 ], [ -78.609970092773438, -9.174028396606388 ], [ -78.60958099365223, -9.174028396606388 ], [ -78.60958099365223, -9.173862457275391 ], [ -78.60958099365223, -9.173749923705998 ], [ -78.60931396484375, -9.173749923705998 ], [ -78.609024047851562, -9.173749923705998 ], [ -78.609024047851562, -9.173624992370605 ], [ -78.609024047851562, -9.173472404479924 ], [ -78.608665466308594, -9.173472404479924 ], [ -78.608474731445312, -9.173472404479924 ], [ -78.608474731445312, -9.173193931579533 ], [ -78.608314514160099, -9.173193931579533 ], [ -78.608192443847656, -9.173193931579533 ], [ -78.608192443847656, -9.172871589660588 ], [ -78.608192443847656, -9.172637939453068 ], [ -78.607917785644531, -9.172639846801758 ], [ -78.607917785644531, -9.172362327575684 ], [ -78.607635498046875, -9.172362327575684 ], [ -78.607635498046875, -9.172188758850041 ], [ -78.607635498046875, -9.172081947326603 ], [ -78.607521057128906, -9.172081947326603 ], [ -78.607086181640568, -9.172083854675293 ], [ -78.607086181640568, -9.171806335449219 ], [ -78.606803894042912, -9.171806335449219 ], [ -78.606803894042912, -9.171527862548828 ], [ -78.606246948242188, -9.171527862548828 ], [ -78.606246948242188, -9.171250343322697 ], [ -78.605972290039062, -9.171250343322697 ], [ -78.605972290039062, -9.170971870422363 ], [ -78.606277465820312, -9.170971870422363 ], [ -78.606803894042912, -9.170971870422363 ], [ -78.606803894042912, -9.170694351196232 ], [ -78.607086181640568, -9.170694351196232 ], [ -78.607086181640568, -9.170417785644531 ], [ -78.607360839843693, -9.170417785644531 ], [ -78.607360839843693, -9.170140266418457 ], [ -78.607635498046875, -9.170140266418457 ], [ -78.607635498046875, -9.169861793518066 ], [ -78.607917785644531, -9.169861793518066 ], [ -78.607917785644531, -9.169584274291992 ], [ -78.608192443847656, -9.169584274291992 ], [ -78.608192443847656, -9.16874885559082 ], [ -78.607917785644531, -9.16874885559082 ], [ -78.607917785644531, -9.167823791503906 ], [ -78.607917785644531, -9.16763973236084 ], [ -78.607360839843693, -9.16763973236084 ], [ -78.607360839843693, -9.167361259460392 ], [ -78.607086181640568, -9.167361259460392 ], [ -78.607086181640568, -9.166805267333984 ], [ -78.606803894042912, -9.166805267333984 ], [ -78.606803894042912, -9.166698455810547 ], [ -78.606803894042912, -9.16624927520752 ], [ -78.607917785644531, -9.16624927520752 ], [ -78.607917785644531, -9.165693283081055 ], [ -78.607635498046875, -9.165693283081055 ], [ -78.607635498046875, -9.165416717529297 ], [ -78.607360839843693, -9.165416717529297 ], [ -78.607360839843693, -9.164027214050236 ], [ -78.608192443847656, -9.164027214050236 ], [ -78.608192443847656, -9.163748741149846 ], [ -78.608749389648438, -9.163748741149846 ], [ -78.608749389648438, -9.163473129272461 ], [ -78.609863281249943, -9.163473129272461 ], [ -78.609863281249943, -9.16319465637207 ], [ -78.610969543457031, -9.16319465637207 ], [ -78.610969543457031, -9.161526679992562 ], [ -78.611251831054688, -9.161526679992562 ], [ -78.611251831054688, -9.160416603088379 ], [ -78.610969543457031, -9.160416603088379 ], [ -78.610969543457031, -9.16007137298584 ], [ -78.610969543457031, -9.159860610961914 ], [ -78.610733032226562, -9.159860610961914 ], [ -78.60958099365223, -9.159860610961914 ], [ -78.60958099365223, -9.160416603088379 ], [ -78.609306335449219, -9.160416603088379 ], [ -78.609306335449219, -9.16069507598877 ], [ -78.607917785644531, -9.16069507598877 ], [ -78.607917785644531, -9.160373687744141 ], [ -78.607917785644531, -9.159860610961914 ], [ -78.607360839843693, -9.159860610961914 ], [ -78.607360839843693, -9.160416603088379 ], [ -78.607086181640568, -9.160416603088379 ], [ -78.607086181640568, -9.160775184631348 ], [ -78.607086181640568, -9.160972595214844 ], [ -78.606803894042912, -9.160972595214844 ], [ -78.606803894042912, -9.161080360412598 ], [ -78.606803894042912, -9.161251068115234 ], [ -78.606643676757812, -9.161249160766545 ], [ -78.60652923583973, -9.161249160766545 ], [ -78.60652923583973, -9.161375999450627 ], [ -78.60652923583973, -9.161526679992562 ], [ -78.606391906738281, -9.161526679992562 ], [ -78.605697631835938, -9.161526679992562 ], [ -78.605697631835938, -9.16180515289301 ], [ -78.605415344238281, -9.16180515289301 ], [ -78.605415344238281, -9.162361145019418 ], [ -78.605140686035156, -9.162359237670898 ], [ -78.605140686035156, -9.162638664245605 ], [ -78.605697631835938, -9.162638664245605 ], [ -78.605697631835938, -9.162917137145996 ], [ -78.605415344238281, -9.162915229797363 ], [ -78.605415344238281, -9.163473129272461 ], [ -78.605140686035156, -9.163473129272461 ], [ -78.605140686035156, -9.163748741149846 ], [ -78.604026794433537, -9.163748741149846 ], [ -78.604026794433537, -9.164027214050236 ], [ -78.603752136230412, -9.164027214050236 ], [ -78.603752136230412, -9.164583206176701 ], [ -78.603469848632756, -9.164583206176701 ], [ -78.603469848632756, -9.164860725402775 ], [ -78.603202819824219, -9.164860725402775 ], [ -78.601806640625, -9.164860725402775 ], [ -78.601806640625, -9.164583206176701 ], [ -78.601524353027344, -9.164583206176701 ], [ -78.601524353027344, -9.164394378662109 ], [ -78.601524353027344, -9.164027214050236 ], [ -78.601249694824162, -9.164027214050236 ], [ -78.601249694824162, -9.163748741149846 ], [ -78.601142883300781, -9.163748741149846 ], [ -78.600975036621037, -9.163748741149846 ], [ -78.600975036621037, -9.163473129272461 ], [ -78.59930419921875, -9.163473129272461 ], [ -78.59930419921875, -9.162638664245605 ], [ -78.598686218261662, -9.162638664245605 ], [ -78.598472595214844, -9.162638664245605 ], [ -78.598472595214844, -9.16291332244873 ], [ -78.598472595214844, -9.16319465637207 ], [ -78.598197937011662, -9.16319465637207 ], [ -78.598197937011662, -9.164027214050236 ], [ -78.598472595214844, -9.164027214050236 ], [ -78.598472595214844, -9.164327621459961 ], [ -78.598472595214844, -9.164583206176701 ], [ -78.598747253417969, -9.164583206176701 ], [ -78.598747253417969, -9.165396690368652 ], [ -78.598747253417969, -9.165793418884277 ], [ -78.598747253417969, -9.167361259460392 ], [ -78.598472595214844, -9.167361259460392 ], [ -78.598472595214844, -9.16763973236084 ], [ -78.597915649414006, -9.16763973236084 ], [ -78.597915649414006, -9.167361259460392 ], [ -78.597358703613224, -9.167361259460392 ], [ -78.597358703613224, -9.167082786560002 ], [ -78.596527099609375, -9.167082786560002 ], [ -78.596527099609375, -9.166805267333984 ], [ -78.595695495605469, -9.166805267333984 ], [ -78.595695495605469, -9.166526794433537 ], [ -78.593193054199219, -9.166526794433537 ], [ -78.593193054199219, -9.16624927520752 ], [ -78.592086791992188, -9.16624927520752 ], [ -78.592086791992188, -9.165973663330021 ], [ -78.591247558593693, -9.165970802307129 ], [ -78.591247558593693, -9.165822982788029 ], [ -78.591247558593693, -9.165693283081055 ], [ -78.590415954589844, -9.165693283081055 ], [ -78.590415954589844, -9.16557502746582 ], [ -78.590415954589844, -9.16513729095459 ], [ -78.590690612792912, -9.165139198303166 ], [ -78.590698242187386, -9.164860725402775 ], [ -78.590972900390568, -9.164860725402775 ], [ -78.590972900390568, -9.164027214050236 ], [ -78.590614318847656, -9.164027214050236 ], [ -78.589584350585938, -9.164027214050236 ], [ -78.589584350585938, -9.163748741149846 ], [ -78.589302062988281, -9.163748741149846 ], [ -78.589302062988281, -9.163473129272461 ], [ -78.588356018066406, -9.163473129272461 ], [ -78.586807250976562, -9.163473129272461 ], [ -78.586807250976562, -9.163748741149846 ], [ -78.584976196288949, -9.163748741149846 ], [ -78.584861755371037, -9.163748741149846 ], [ -78.584861755371037, -9.16430473327631 ], [ -78.584587097167912, -9.16430473327631 ], [ -78.584587097167912, -9.164936065673714 ], [ -78.584587097167912, -9.165139198303166 ], [ -78.584419250488281, -9.165139198303166 ], [ -78.584304809570256, -9.16513729095459 ], [ -78.584304809570256, -9.165275573730469 ], [ -78.584304809570256, -9.165693283081055 ], [ -78.584030151367188, -9.165693283081055 ], [ -78.584030151367188, -9.16624927520752 ], [ -78.583747863769531, -9.16624927520752 ], [ -78.583747863769531, -9.167343139648438 ], [ -78.583747863769531, -9.168471336364746 ], [ -78.584030151367188, -9.168471336364746 ], [ -78.584030151367188, -9.169028282165527 ], [ -78.582359313964844, -9.169028282165527 ], [ -78.582359313964844, -9.169286727905273 ], [ -78.582359313964844, -9.169861793518066 ], [ -78.581527709960881, -9.169861793518066 ], [ -78.581527709960881, -9.170140266418457 ], [ -78.580970764160043, -9.170140266418457 ], [ -78.580970764160043, -9.170417785644531 ], [ -78.580375671386662, -9.170417785644531 ], [ -78.58013916015625, -9.170417785644531 ], [ -78.58013916015625, -9.170694351196232 ], [ -78.579025268554688, -9.170694351196232 ], [ -78.579025268554688, -9.170417785644531 ], [ -78.578750610351506, -9.170417785644531 ], [ -78.578750610351506, -9.169861793518066 ], [ -78.578475952148381, -9.169861793518066 ], [ -78.578475952148381, -9.169584274291992 ], [ -78.577919006347543, -9.169584274291992 ], [ -78.577919006347543, -9.169305801391602 ], [ -78.57757568359375, -9.169305801391602 ], [ -78.577362060546875, -9.169305801391602 ], [ -78.577362060546875, -9.169584274291992 ], [ -78.575691223144474, -9.169584274291992 ], [ -78.575691223144474, -9.169861793518066 ], [ -78.5745849609375, -9.169861793518066 ], [ -78.5745849609375, -9.170140266418457 ], [ -78.574302673339844, -9.170140266418457 ], [ -78.574302673339844, -9.170417785644531 ], [ -78.573753356933594, -9.170417785644531 ], [ -78.573753356933594, -9.170694351196232 ], [ -78.573471069335938, -9.170694351196232 ], [ -78.573471069335938, -9.170971870422363 ], [ -78.572914123535156, -9.170971870422363 ], [ -78.572914123535156, -9.171250343322697 ], [ -78.570419311523438, -9.171250343322697 ], [ -78.570419311523438, -9.170971870422363 ], [ -78.570137023925781, -9.170971870422363 ], [ -78.570137023925781, -9.170694351196232 ], [ -78.569580078125, -9.170694351196232 ], [ -78.569580078125, -9.170417785644531 ], [ -78.569305419921818, -9.170417785644531 ], [ -78.569305419921818, -9.170140266418457 ], [ -78.569030761718693, -9.170140266418457 ], [ -78.569030761718693, -9.169861793518066 ], [ -78.568748474121037, -9.169861793518066 ], [ -78.568748474121037, -9.169584274291992 ], [ -78.568473815917912, -9.169584274291992 ], [ -78.568473815917912, -9.169305801391602 ], [ -78.568191528320199, -9.169305801391602 ], [ -78.568191528320199, -9.169028282165527 ], [ -78.567642211914062, -9.169028282165527 ], [ -78.567642211914062, -9.16874885559082 ], [ -78.567359924316406, -9.16874885559082 ], [ -78.567359924316406, -9.168471336364746 ], [ -78.567085266113281, -9.168471336364746 ], [ -78.567085266113281, -9.168195724487248 ], [ -78.566802978515625, -9.168195724487248 ], [ -78.566802978515625, -9.16763973236084 ], [ -78.5665283203125, -9.16763973236084 ], [ -78.5665283203125, -9.166526794433537 ], [ -78.566253662109318, -9.166526794433537 ], [ -78.566253662109318, -9.165416717529297 ], [ -78.565971374511662, -9.165416717529297 ], [ -78.565971374511662, -9.164860725402775 ], [ -78.565696716308537, -9.164860725402775 ], [ -78.565696716308537, -9.16430473327631 ], [ -78.565414428710881, -9.16430473327631 ], [ -78.565414428710881, -9.163851737976017 ], [ -78.565414428710881, -9.163748741149846 ], [ -78.565139770507699, -9.163748741149846 ], [ -78.565139770507699, -9.163520812988281 ], [ -78.565139770507699, -9.16319465637207 ], [ -78.564857482910156, -9.16319465637207 ], [ -78.564857482910156, -9.162638664245605 ], [ -78.564582824707031, -9.162638664245605 ], [ -78.564582824707031, -9.162082672119141 ], [ -78.564308166503906, -9.162082672119141 ], [ -78.564308166503906, -9.161526679992562 ], [ -78.56402587890625, -9.161526679992562 ], [ -78.56402587890625, -9.16069316864008 ], [ -78.563751220703125, -9.16069316864008 ], [ -78.563751220703125, -9.160139083862305 ], [ -78.563468933105469, -9.160139083862305 ], [ -78.563468933105469, -9.15958309173584 ], [ -78.563194274902344, -9.15958309173584 ], [ -78.563194274902344, -9.158748626708984 ], [ -78.562919616699162, -9.158748626708984 ], [ -78.562919616699162, -9.158194541931152 ], [ -78.562637329101506, -9.158194541931152 ], [ -78.562637329101506, -9.157638549804688 ], [ -78.562362670898381, -9.157638549804688 ], [ -78.562362670898381, -9.157082557678223 ], [ -78.562080383300724, -9.157082557678223 ], [ -78.562080383300724, -9.156805038452148 ], [ -78.561805725097656, -9.156805038452148 ], [ -78.561805725097656, -9.156248092651367 ], [ -78.561531066894531, -9.156248092651367 ], [ -78.561531066894531, -9.155692100524902 ], [ -78.561248779296875, -9.155692100524902 ], [ -78.561248779296875, -9.154582023620549 ], [ -78.56097412109375, -9.154582023620549 ], [ -78.56097412109375, -9.153750419616642 ], [ -78.560691833496094, -9.153750419616642 ], [ -78.560691833496094, -9.152915954589787 ], [ -78.560417175292969, -9.152915954589787 ], [ -78.560417175292969, -9.152084350585938 ], [ -78.560142517089844, -9.152084350585938 ], [ -78.560142517089844, -9.151249885559082 ], [ -78.559860229492131, -9.151249885559082 ], [ -78.559860229492131, -9.150137901306152 ], [ -78.559585571289006, -9.150137901306152 ], [ -78.559585571289006, -9.149306297302246 ], [ -78.559303283691349, -9.149306297302246 ], [ -78.559303283691349, -9.148750305175781 ], [ -78.559028625488224, -9.148750305175781 ], [ -78.559028625488224, -9.148471832275391 ], [ -78.558921813964787, -9.148471832275391 ], [ -78.558746337890568, -9.148471832275391 ], [ -78.558746337890568, -9.148194313049316 ], [ -78.5584716796875, -9.148194313049316 ], [ -78.5584716796875, -9.146930694580078 ], [ -78.5584716796875, -9.146526336669865 ], [ -78.558746337890568, -9.146528244018555 ], [ -78.558746337890568, -9.145693778991699 ], [ -78.559028625488224, -9.145693778991699 ], [ -78.559028625488224, -9.143471717834416 ], [ -78.558746337890568, -9.143471717834416 ], [ -78.558746337890568, -9.142361640930176 ], [ -78.5584716796875, -9.142361640930176 ], [ -78.5584716796875, -9.141805648803654 ], [ -78.558197021484375, -9.141805648803654 ], [ -78.558197021484375, -9.14152717590332 ], [ -78.557914733886719, -9.14152717590332 ], [ -78.557914733886719, -9.140826225280762 ], [ -78.557914733886719, -9.135695457458439 ], [ -78.558197021484375, -9.135695457458439 ], [ -78.558197021484375, -9.134026527404728 ], [ -78.5584716796875, -9.134026527404728 ], [ -78.5584716796875, -9.132361412048283 ], [ -78.558746337890568, -9.132361412048283 ], [ -78.558746337890568, -9.131251335144043 ], [ -78.559028625488224, -9.131251335144043 ], [ -78.559028625488224, -9.130695343017521 ], [ -78.559303283691349, -9.130695343017521 ], [ -78.559303283691349, -9.130139350891056 ], [ -78.559585571289006, -9.130139350891056 ], [ -78.559585571289006, -9.129583358764592 ], [ -78.559860229492131, -9.129583358764592 ], [ -78.559860229492131, -9.12902641296381 ], [ -78.560142517089844, -9.12902641296381 ], [ -78.560142517089844, -9.128473281860352 ], [ -78.560417175292969, -9.128473281860352 ], [ -78.560417175292969, -9.12791633605957 ], [ -78.560142517089844, -9.12791633605957 ], [ -78.560142517089844, -9.127084732055664 ], [ -78.559860229492131, -9.127084732055664 ], [ -78.559860229492131, -9.126804351806641 ], [ -78.560142517089844, -9.126804351806641 ], [ -78.560142517089844, -9.125694274902344 ], [ -78.560417175292969, -9.125694274902344 ], [ -78.560417175292969, -9.125415802001953 ], [ -78.560691833496094, -9.125415802001953 ], [ -78.560691833496094, -9.125138282775879 ], [ -78.56097412109375, -9.125138282775879 ], [ -78.56097412109375, -9.124028205871525 ], [ -78.561248779296875, -9.124028205871525 ], [ -78.561248779296875, -9.12291431427002 ], [ -78.561531066894531, -9.12291431427002 ], [ -78.561531066894531, -9.121804237365723 ], [ -78.561805725097656, -9.121806144714242 ], [ -78.561805725097656, -9.120694160461369 ], [ -78.562080383300724, -9.120694160461369 ], [ -78.562080383300724, -9.118749618530273 ], [ -78.562362670898381, -9.118749618530273 ], [ -78.562362670898381, -9.118472099304199 ], [ -78.562637329101506, -9.118472099304199 ], [ -78.562637329101506, -9.117916107177678 ], [ -78.562919616699162, -9.117916107177678 ], [ -78.562919616699162, -9.117360115051213 ], [ -78.563194274902344, -9.117360115051213 ], [ -78.563194274902344, -9.116806030273438 ], [ -78.563468933105469, -9.116806030273438 ], [ -78.563468933105469, -9.115971565246582 ], [ -78.563751220703125, -9.115971565246582 ], [ -78.563751220703125, -9.115137100219727 ], [ -78.56402587890625, -9.115137100219727 ], [ -78.56402587890625, -9.114581108093262 ], [ -78.564308166503906, -9.114583969116211 ], [ -78.564308166503906, -9.113748550414982 ], [ -78.564582824707031, -9.113748550414982 ], [ -78.564582824707031, -9.113196372985783 ], [ -78.564857482910156, -9.113196372985783 ], [ -78.564857482910156, -9.112359046936035 ], [ -78.565139770507699, -9.112359046936035 ], [ -78.565139770507699, -9.111804962158146 ], [ -78.565414428710881, -9.111804962158146 ], [ -78.565414428710881, -9.110973358154297 ], [ -78.565696716308537, -9.110973358154297 ], [ -78.565696716308537, -9.110136985778752 ], [ -78.565971374511662, -9.110136985778752 ], [ -78.565971374511662, -9.109580993652344 ], [ -78.566253662109318, -9.109582901000977 ], [ -78.566253662109318, -9.109305381774846 ], [ -78.565971374511662, -9.109305381774846 ], [ -78.565971374511662, -9.10875129699707 ], [ -78.565696716308537, -9.10875129699707 ], [ -78.565696716308537, -9.10736083984375 ], [ -78.565971374511662, -9.10736083984375 ], [ -78.565971374511662, -9.106804847717285 ], [ -78.566253662109318, -9.106804847717285 ], [ -78.566253662109318, -9.10624885559082 ], [ -78.5665283203125, -9.10624885559082 ], [ -78.5665283203125, -9.105417251586914 ], [ -78.566802978515625, -9.105417251586914 ], [ -78.566802978515625, -9.105138778686523 ], [ -78.567085266113281, -9.105138778686523 ], [ -78.567085266113281, -9.104582786560059 ], [ -78.567359924316406, -9.104582786560059 ], [ -78.567359924316406, -9.10374927520752 ], [ -78.567642211914062, -9.10374927520752 ], [ -78.567642211914062, -9.103192329406738 ], [ -78.567916870117188, -9.103195190429688 ], [ -78.567916870117188, -9.10291671752924 ], [ -78.568191528320199, -9.10291671752924 ], [ -78.568191528320199, -9.102639198303223 ], [ -78.568473815917912, -9.102639198303223 ], [ -78.568473815917912, -9.102080345153809 ], [ -78.568748474121037, -9.102082252502385 ], [ -78.568748474121037, -9.101529121398869 ], [ -78.569305419921818, -9.101529121398869 ], [ -78.569305419921818, -9.100970268249512 ], [ -78.569580078125, -9.100970268249512 ], [ -78.569580078125, -9.100414276123047 ], [ -78.569862365722656, -9.100416183471623 ], [ -78.569862365722656, -9.100137710571289 ], [ -78.570137023925781, -9.100137710571289 ], [ -78.570137023925781, -9.099584579467773 ], [ -78.570419311523438, -9.099584579467773 ], [ -78.570419311523438, -9.099304199218693 ], [ -78.570693969726562, -9.099304199218693 ], [ -78.570693969726562, -9.099027633666992 ], [ -78.570968627929688, -9.099027633666992 ], [ -78.570968627929688, -9.098471641540527 ], [ -78.571250915527344, -9.098471641540527 ], [ -78.571250915527344, -9.097915649414062 ], [ -78.571525573730412, -9.097915649414062 ], [ -78.571525573730412, -9.097638130187988 ], [ -78.571807861328068, -9.097638130187988 ], [ -78.571807861328068, -9.09708213806141 ], [ -78.572082519531193, -9.09708213806141 ], [ -78.572082519531193, -9.096528053283691 ], [ -78.572639465331974, -9.096528053283691 ], [ -78.572639465331974, -9.096249580383301 ], [ -78.572914123535156, -9.096249580383301 ], [ -78.572914123535156, -9.095693588256836 ], [ -78.573196411132812, -9.095693588256836 ], [ -78.573196411132812, -9.095416069030762 ], [ -78.573753356933594, -9.095416069030762 ], [ -78.573753356933594, -9.095137596130371 ], [ -78.574028015136719, -9.095137596130371 ], [ -78.574028015136719, -9.094584465026855 ], [ -78.574302673339844, -9.094584465026855 ], [ -78.574302673339844, -9.094028472900391 ], [ -78.5745849609375, -9.094028472900391 ], [ -78.5745849609375, -9.093471527099553 ], [ -78.575416564941349, -9.093471527099553 ], [ -78.575416564941349, -9.09263801574707 ], [ -78.575691223144474, -9.092639923095646 ], [ -78.575691223144474, -9.091806411743107 ], [ -78.575973510742188, -9.091806411743107 ], [ -78.575973510742188, -9.091527938842717 ], [ -78.576530456542969, -9.091527938842717 ], [ -78.576530456542969, -9.091250419616699 ], [ -78.576805114746094, -9.091250419616699 ], [ -78.576805114746094, -9.090971946716252 ], [ -78.577079772949219, -9.090971946716252 ], [ -78.577079772949219, -9.090694427490234 ], [ -78.577362060546875, -9.090694427490234 ], [ -78.577362060546875, -9.090415954589844 ], [ -78.57763671875, -9.090417861938477 ], [ -78.57763671875, -9.09013843536377 ], [ -78.577919006347543, -9.09013843536377 ], [ -78.577919006347543, -9.089584350585881 ], [ -78.578193664550724, -9.089584350585881 ], [ -78.578193664550724, -9.08930587768549 ], [ -78.578475952148381, -9.08930587768549 ], [ -78.578475952148381, -9.089028358459416 ], [ -78.578750610351506, -9.089028358459416 ], [ -78.578750610351506, -9.088471412658635 ], [ -78.579025268554688, -9.088471412658635 ], [ -78.579025268554688, -9.08819580078125 ], [ -78.579307556152344, -9.08819580078125 ], [ -78.579307556152344, -9.08791542053217 ], [ -78.579582214355469, -9.08791542053217 ], [ -78.579582214355469, -9.087362289428711 ], [ -78.579864501953125, -9.087362289428711 ], [ -78.579864501953125, -9.08708381652832 ], [ -78.58013916015625, -9.08708381652832 ], [ -78.58013916015625, -9.08680534362793 ], [ -78.580413818359375, -9.08680534362793 ], [ -78.580413818359375, -9.086526870727539 ], [ -78.580696105957031, -9.086526870727539 ], [ -78.580696105957031, -9.085970878601074 ], [ -78.580970764160043, -9.085970878601074 ], [ -78.580970764160043, -9.085693359375 ], [ -78.581253051757756, -9.085693359375 ], [ -78.581253051757756, -9.085416793823185 ], [ -78.581527709960881, -9.085416793823185 ], [ -78.581527709960881, -9.085162162780705 ], [ -78.582359313964844, -9.085139274597168 ], [ -78.582359313964844, -9.084860801696777 ], [ -78.5826416015625, -9.084860801696777 ], [ -78.5826416015625, -9.084583282470703 ], [ -78.582916259765625, -9.084583282470703 ], [ -78.582916259765625, -9.084304809570312 ], [ -78.583473205566406, -9.084304809570312 ], [ -78.583473205566406, -9.084027290344238 ], [ -78.583747863769531, -9.084027290344238 ], [ -78.583747863769531, -9.083748817443848 ], [ -78.584030151367188, -9.083748817443848 ], [ -78.584030151367188, -9.083473205566349 ], [ -78.584587097167912, -9.083473205566349 ], [ -78.584587097167912, -9.083194732665959 ], [ -78.584861755371037, -9.083194732665959 ], [ -78.584861755371037, -9.082917213439885 ], [ -78.585136413574162, -9.082917213439885 ], [ -78.585136413574162, -9.08236122131342 ], [ -78.585418701171818, -9.08236122131342 ], [ -78.585418701171818, -9.082082748413029 ], [ -78.585693359375, -9.082082748413029 ], [ -78.585693359375, -9.081805229187012 ], [ -78.585800170898381, -9.081805229187012 ], [ -78.586250305175781, -9.081805229187012 ], [ -78.586250305175781, -9.081526756286564 ], [ -78.586524963378906, -9.081526756286564 ], [ -78.586524963378906, -9.081356048583984 ], [ -78.586524963378906, -9.081251144409066 ], [ -78.586624145507812, -9.081251144409066 ], [ -78.587081909179688, -9.081251144409066 ], [ -78.587081909179688, -9.080972671508789 ], [ -78.587364196777344, -9.080970764160156 ], [ -78.587364196777344, -9.080693244934082 ], [ -78.587913513183537, -9.080695152282658 ], [ -78.587913513183537, -9.080139160156193 ], [ -78.588470458984318, -9.080139160156193 ], [ -78.588470458984318, -9.079860687255803 ], [ -78.589027404785156, -9.079860687255803 ], [ -78.589027404785156, -9.079583168029728 ], [ -78.589302062988281, -9.079583168029728 ], [ -78.589302062988281, -9.079304695129338 ], [ -78.590690612792912, -9.079304695129338 ], [ -78.590698242187386, -9.079027175903263 ], [ -78.591247558593693, -9.079029083251953 ], [ -78.591247558593693, -9.078748703002873 ], [ -78.591529846191349, -9.078748703002873 ], [ -78.591529846191349, -9.078471183776855 ], [ -78.592086791992188, -9.078473091125488 ], [ -78.592086791992188, -9.078194618225098 ], [ -78.592636108398438, -9.078194618225098 ], [ -78.592636108398438, -9.077917098999023 ], [ -78.594581604003849, -9.077917098999023 ], [ -78.594581604003849, -9.077638626098633 ], [ -78.596527099609375, -9.077638626098633 ], [ -78.596527099609375, -9.077361106872502 ], [ -78.598747253417969, -9.077361106872502 ], [ -78.598747253417969, -9.077082633972168 ], [ -78.599861145019531, -9.077082633972168 ], [ -78.599861145019531, -9.076805114746037 ], [ -78.600975036621037, -9.076805114746037 ], [ -78.600975036621037, -9.076526641845646 ], [ -78.602081298828125, -9.076526641845646 ], [ -78.602081298828125, -9.076248168945312 ], [ -78.602638244628906, -9.076251029968262 ], [ -78.602638244628906, -9.075972557067871 ], [ -78.603469848632756, -9.075972557067871 ], [ -78.603469848632756, -9.075856208801213 ], [ -78.603469848632756, -9.075692176818791 ], [ -78.604080200195312, -9.075695037841797 ], [ -78.604309082031193, -9.075692176818791 ], [ -78.604309082031193, -9.075972557067871 ], [ -78.6048583984375, -9.075972557067871 ], [ -78.6048583984375, -9.075692176818791 ], [ -78.605293273925781, -9.075692176818791 ], [ -78.605415344238281, -9.075692176818791 ], [ -78.605415344238281, -9.076248168945312 ], [ -78.605972290039062, -9.076248168945312 ], [ -78.605972290039062, -9.076526641845646 ], [ -78.606246948242188, -9.076526641845646 ], [ -78.606246948242188, -9.077082633972168 ], [ -78.60652923583973, -9.077082633972168 ], [ -78.60652923583973, -9.077361106872502 ], [ -78.607086181640568, -9.077361106872502 ], [ -78.607086181640568, -9.077638626098633 ], [ -78.607360839843693, -9.077638626098633 ], [ -78.607635498046875, -9.077638626098633 ], [ -78.607635498046875, -9.077917098999023 ], [ -78.607917785644531, -9.077917098999023 ], [ -78.607917785644531, -9.078225135803223 ], [ -78.607917785644531, -9.078473091125488 ], [ -78.608154296875, -9.078471183776855 ], [ -78.608474731445312, -9.078471183776855 ], [ -78.608474731445312, -9.078748703002873 ], [ -78.608749389648438, -9.078748703002873 ], [ -78.608749389648438, -9.079096794128418 ], [ -78.608749389648438, -9.079304695129338 ], [ -78.609024047851562, -9.079304695129338 ], [ -78.609024047851562, -9.079583168029728 ], [ -78.609306335449219, -9.079583168029728 ], [ -78.609306335449219, -9.079860687255803 ], [ -78.609474182128849, -9.079860687255803 ], [ -78.610137939453068, -9.079860687255803 ], [ -78.610137939453068, -9.079583168029728 ], [ -78.610694885253849, -9.079583168029728 ], [ -78.610694885253849, -9.079304695129338 ], [ -78.611251831054688, -9.079304695129338 ], [ -78.611251831054688, -9.079027175903263 ], [ -78.611808776855469, -9.079029083251953 ], [ -78.611808776855469, -9.078748703002873 ], [ -78.611526489257812, -9.078748703002873 ], [ -78.611526489257812, -9.078331947326603 ], [ -78.611526489257812, -9.077917098999023 ], [ -78.611251831054688, -9.077917098999023 ], [ -78.611251831054688, -9.077082633972168 ], [ -78.610694885253849, -9.077082633972168 ], [ -78.610694885253849, -9.076805114746037 ], [ -78.610420227050724, -9.076805114746037 ], [ -78.610420227050724, -9.075692176818791 ], [ -78.611808776855469, -9.075692176818791 ], [ -78.611808776855469, -9.076526641845646 ], [ -78.612083435058594, -9.076526641845646 ], [ -78.612083435058594, -9.076805114746037 ], [ -78.612907409667912, -9.076805114746037 ], [ -78.614028930664006, -9.076805114746037 ], [ -78.614028930664006, -9.077082633972168 ], [ -78.614440917968693, -9.077082633972168 ], [ -78.614585876464844, -9.077082633972168 ], [ -78.614585876464844, -9.077239990234375 ], [ -78.614585876464844, -9.077638626098633 ], [ -78.614860534667969, -9.077638626098633 ], [ -78.614860534667969, -9.077917098999023 ], [ -78.615135192871094, -9.077917098999023 ], [ -78.615135192871094, -9.078471183776855 ], [ -78.61541748046875, -9.078471183776855 ], [ -78.61541748046875, -9.079027175903263 ], [ -78.615692138671875, -9.079027175903263 ], [ -78.615692138671875, -9.079521179199219 ], [ -78.615859985351506, -9.079558372497445 ], [ -78.615974426269531, -9.079583168029728 ], [ -78.615974426269531, -9.079860687255803 ], [ -78.616531372070256, -9.079860687255803 ], [ -78.616531372070256, -9.080139160156193 ], [ -78.617080688476506, -9.080139160156193 ], [ -78.617080688476506, -9.079860687255803 ], [ -78.617362976074219, -9.079860687255803 ], [ -78.617362976074219, -9.079583168029728 ], [ -78.617080688476506, -9.079583168029728 ], [ -78.617080688476506, -9.079304695129338 ], [ -78.616531372070256, -9.079304695129338 ], [ -78.616531372070256, -9.078748703002873 ], [ -78.616249084472599, -9.078748703002873 ], [ -78.616249084472599, -9.078471183776855 ], [ -78.615974426269531, -9.078473091125488 ], [ -78.615974426269531, -9.078194618225098 ], [ -78.615692138671875, -9.078194618225098 ], [ -78.615692138671875, -9.077917098999023 ], [ -78.61541748046875, -9.077917098999023 ], [ -78.61541748046875, -9.077638626098633 ], [ -78.615135192871094, -9.077638626098633 ], [ -78.615135192871094, -9.077361106872502 ], [ -78.614860534667969, -9.077361106872502 ], [ -78.614860534667969, -9.076805114746037 ], [ -78.614585876464844, -9.076805114746037 ], [ -78.614585876464844, -9.076526641845646 ], [ -78.614028930664006, -9.076526641845646 ], [ -78.614028930664006, -9.076248168945312 ], [ -78.613746643066349, -9.076251029968262 ], [ -78.613746643066349, -9.075972557067871 ], [ -78.614028930664006, -9.075972557067871 ], [ -78.614028930664006, -9.075692176818791 ], [ -78.613746643066349, -9.075695037841797 ], [ -78.613746643066349, -9.075416564941406 ], [ -78.613471984863224, -9.075416564941406 ], [ -78.613471984863224, -9.074859619140625 ], [ -78.612915039062443, -9.074859619140625 ], [ -78.612915039062443, -9.074307441711426 ], [ -78.612640380859375, -9.074307441711426 ], [ -78.612640380859375, -9.073193550109806 ], [ -78.612915039062443, -9.073193550109806 ], [ -78.612915039062443, -9.072916030883789 ], [ -78.614273071289062, -9.072916030883789 ], [ -78.614585876464844, -9.072916030883789 ], [ -78.614585876464844, -9.073115348815918 ], [ -78.614585876464844, -9.073193550109806 ], [ -78.614753723144531, -9.073193550109806 ], [ -78.614860534667969, -9.073193550109806 ], [ -78.614860534667969, -9.07347297668457 ], [ -78.615692138671875, -9.073470115661621 ], [ -78.615692138671875, -9.073751449584961 ], [ -78.6162109375, -9.073751449584961 ], [ -78.616531372070256, -9.073751449584961 ], [ -78.616531372070256, -9.074028968811035 ], [ -78.616806030273381, -9.074026107788086 ], [ -78.616806030273381, -9.074307441711426 ], [ -78.617080688476506, -9.074307441711426 ], [ -78.617080688476506, -9.074582099914551 ], [ -78.617362976074219, -9.074582099914551 ], [ -78.617362976074219, -9.074837684631234 ], [ -78.617362976074219, -9.075139045715332 ], [ -78.617805480957031, -9.075139045715332 ], [ -78.617919921875, -9.075139045715332 ], [ -78.617919921875, -9.075416564941406 ], [ -78.618194580078125, -9.075416564941406 ], [ -78.618194580078125, -9.075695037841797 ], [ -78.61846923828125, -9.075692176818791 ], [ -78.61846923828125, -9.075972557067871 ], [ -78.619026184082031, -9.075972557067871 ], [ -78.619026184082031, -9.076251029968262 ], [ -78.619583129882756, -9.076248168945312 ], [ -78.619583129882756, -9.076526641845646 ], [ -78.619857788085881, -9.076526641845646 ], [ -78.619857788085881, -9.076805114746037 ], [ -78.620414733886719, -9.076805114746037 ], [ -78.620414733886719, -9.077082633972168 ], [ -78.621528625488281, -9.077082633972168 ], [ -78.621528625488281, -9.077638626098633 ], [ -78.621803283691406, -9.077638626098633 ], [ -78.621803283691406, -9.079304695129338 ], [ -78.621528625488281, -9.079304695129338 ], [ -78.621528625488281, -9.079583168029728 ], [ -78.621803283691406, -9.079583168029728 ], [ -78.621803283691406, -9.079860687255803 ], [ -78.622169494628793, -9.079860687255803 ], [ -78.622360229492074, -9.079860687255803 ], [ -78.622360229492074, -9.080139160156193 ], [ -78.622917175292912, -9.080139160156193 ], [ -78.622917175292912, -9.080416679382211 ], [ -78.623474121093693, -9.080416679382211 ], [ -78.623474121093693, -9.080695152282658 ], [ -78.624305725097656, -9.080695152282658 ], [ -78.624305725097656, -9.080416679382211 ], [ -78.625137329101562, -9.080416679382211 ], [ -78.625137329101562, -9.080139160156193 ], [ -78.625419616699219, -9.080139160156193 ], [ -78.625419616699219, -9.079860687255803 ], [ -78.625694274902287, -9.079860687255803 ], [ -78.625694274902287, -9.079583168029728 ], [ -78.625419616699219, -9.079583168029728 ], [ -78.625419616699219, -9.078748703002873 ], [ -78.625694274902287, -9.078748703002873 ], [ -78.625694274902287, -9.078194618225098 ], [ -78.627357482910156, -9.078194618225098 ], [ -78.627357482910156, -9.077917098999023 ], [ -78.627639770507812, -9.077917098999023 ], [ -78.627639770507812, -9.077638626098633 ], [ -78.627914428710938, -9.077638626098633 ], [ -78.627914428710938, -9.077082633972168 ], [ -78.628196716308594, -9.077082633972168 ], [ -78.628196716308594, -9.076805114746037 ], [ -78.628471374511719, -9.076805114746037 ], [ -78.628471374511719, -9.076248168945312 ], [ -78.628753662109375, -9.076248168945312 ], [ -78.628753662109375, -9.075692176818791 ], [ -78.629028320312443, -9.075695037841797 ], [ -78.629028320312443, -9.075416564941406 ], [ -78.629302978515568, -9.075416564941406 ], [ -78.629302978515568, -9.075139045715332 ], [ -78.629585266113224, -9.075139045715332 ], [ -78.629585266113224, -9.074859619140625 ], [ -78.630691528320312, -9.074859619140625 ], [ -78.630691528320312, -9.074026107788086 ], [ -78.630973815917969, -9.074026107788086 ], [ -78.630973815917969, -9.072916030883789 ], [ -78.630691528320312, -9.072916030883789 ], [ -78.630691528320312, -9.072085380554142 ], [ -78.630973815917969, -9.072085380554142 ], [ -78.630973815917969, -9.071804046630859 ], [ -78.631248474121094, -9.071805953979435 ], [ -78.631248474121094, -9.071528434753361 ], [ -78.63153076171875, -9.071528434753361 ], [ -78.63153076171875, -9.071248054504395 ], [ -78.631805419921875, -9.071249961852971 ], [ -78.631805419921875, -9.070972442626896 ], [ -78.632637023925724, -9.070972442626896 ], [ -78.632637023925724, -9.07069206237793 ], [ -78.632919311523381, -9.07069206237793 ], [ -78.632919311523381, -9.070137977600041 ], [ -78.633193969726562, -9.070137977600041 ], [ -78.633193969726562, -9.069862365722656 ], [ -78.632919311523381, -9.069862365722656 ], [ -78.632919311523381, -9.069306373596078 ], [ -78.633193969726562, -9.069306373596078 ], [ -78.633193969726562, -9.069025993347168 ], [ -78.633468627929688, -9.069025993347168 ], [ -78.633468627929688, -9.068471908569222 ], [ -78.633750915527344, -9.068471908569222 ], [ -78.633750915527344, -9.068194389343205 ], [ -78.634025573730469, -9.068194389343205 ], [ -78.634025573730469, -9.067915916442814 ], [ -78.634307861328125, -9.067915916442814 ], [ -78.634307861328125, -9.067359924316349 ], [ -78.63458251953125, -9.067359924316349 ], [ -78.63458251953125, -9.066249847412109 ], [ -78.634307861328125, -9.066249847412109 ], [ -78.634307861328125, -9.063471794128418 ], [ -78.634025573730469, -9.063471794128418 ], [ -78.634025573730469, -9.062084197998047 ], [ -78.633750915527344, -9.062084197998047 ], [ -78.633750915527344, -9.061525344848633 ], [ -78.633193969726562, -9.061528205871582 ], [ -78.633193969726562, -9.061248779296818 ], [ -78.632919311523381, -9.061248779296818 ], [ -78.632919311523381, -9.060415267944336 ], [ -78.632637023925724, -9.060415267944336 ], [ -78.632637023925724, -9.057916641235352 ], [ -78.632919311523381, -9.057916641235352 ], [ -78.632919311523381, -9.057083129882812 ], [ -78.633750915527344, -9.057083129882812 ], [ -78.633750915527344, -9.056804656982422 ], [ -78.634307861328125, -9.056804656982422 ], [ -78.634307861328125, -9.056527137756234 ], [ -78.63458251953125, -9.056527137756234 ], [ -78.63458251953125, -9.055417060852051 ], [ -78.635139465331918, -9.055417060852051 ], [ -78.635139465331918, -9.05513858795166 ], [ -78.635414123535099, -9.05513858795166 ], [ -78.635414123535099, -9.054582595825195 ], [ -78.635696411132756, -9.054582595825195 ], [ -78.635696411132756, -9.053473472595215 ], [ -78.635971069335881, -9.053473472595215 ], [ -78.635971069335881, -9.052360534667969 ], [ -78.636253356933537, -9.052360534667969 ], [ -78.636253356933537, -9.05152702331543 ], [ -78.636528015136719, -9.051528930664006 ], [ -78.636528015136719, -9.051251411437931 ], [ -78.636802673339844, -9.051248550415039 ], [ -78.636802673339844, -9.050971031188965 ], [ -78.6370849609375, -9.050972938537541 ], [ -78.6370849609375, -9.050695419311523 ], [ -78.637359619140625, -9.050695419311523 ], [ -78.637359619140625, -9.050139427185059 ], [ -78.637641906738281, -9.050139427185059 ], [ -78.637641906738281, -9.049583435058594 ], [ -78.637916564941406, -9.049583435058594 ], [ -78.637916564941406, -9.049304962158203 ], [ -78.638191223144418, -9.049306869506836 ], [ -78.638191223144418, -9.049025535583439 ], [ -78.638473510742131, -9.049025535583439 ], [ -78.638473510742131, -9.048748016357365 ], [ -78.638748168945256, -9.048750877380314 ], [ -78.638748168945256, -9.048194885253849 ], [ -78.639030456542912, -9.048194885253849 ], [ -78.639030456542912, -9.047637939453125 ], [ -78.639305114746037, -9.047637939453125 ], [ -78.639305114746037, -9.047081947326603 ], [ -78.639030456542912, -9.047081947326603 ], [ -78.639030456542912, -9.046804428100529 ], [ -78.639305114746037, -9.046804428100529 ], [ -78.639305114746037, -9.046528816223145 ], [ -78.639030456542912, -9.046528816223145 ], [ -78.639030456542912, -9.045971870422363 ], [ -78.638473510742131, -9.045971870422363 ], [ -78.638473510742131, -9.045694351196289 ], [ -78.638748168945256, -9.045694351196289 ], [ -78.638748168945256, -9.045138359069824 ], [ -78.638473510742131, -9.045138359069824 ], [ -78.638473510742131, -9.044584274291992 ], [ -78.638191223144418, -9.044584274291992 ], [ -78.638191223144418, -9.043749809265137 ], [ -78.637916564941406, -9.043749809265137 ], [ -78.637916564941406, -9.043472290039062 ], [ -78.637641906738281, -9.043472290039062 ], [ -78.637641906738281, -9.042916297912598 ], [ -78.637916564941406, -9.042916297912598 ], [ -78.637916564941406, -9.042637825012207 ], [ -78.638191223144418, -9.042637825012207 ], [ -78.638191223144418, -9.042083740234318 ], [ -78.637916564941406, -9.042083740234318 ], [ -78.637916564941406, -9.041527748107853 ], [ -78.637641906738281, -9.041527748107853 ], [ -78.637641906738281, -9.040694236755371 ], [ -78.637359619140625, -9.040694236755371 ], [ -78.637359619140625, -9.04041576385498 ], [ -78.6370849609375, -9.04041576385498 ], [ -78.6370849609375, -9.040138244628906 ], [ -78.636802673339844, -9.040140151977482 ], [ -78.636802673339844, -9.039859771728516 ], [ -78.636528015136719, -9.039859771728516 ], [ -78.636528015136719, -9.039305686950627 ], [ -78.636253356933537, -9.039305686950627 ], [ -78.636253356933537, -9.037083625793457 ], [ -78.635971069335881, -9.037083625793457 ], [ -78.635971069335881, -9.036250114440861 ], [ -78.635696411132756, -9.036250114440861 ], [ -78.635696411132756, -9.03458118438715 ], [ -78.635971069335881, -9.03458118438715 ], [ -78.635971069335881, -9.034028053283691 ], [ -78.635696411132756, -9.034028053283691 ], [ -78.635696411132756, -9.033196449279785 ], [ -78.635414123535099, -9.033196449279785 ], [ -78.635414123535099, -9.03264045715332 ], [ -78.635139465331918, -9.03264045715332 ], [ -78.635139465331918, -9.032082557678166 ], [ -78.634864807128906, -9.032082557678166 ], [ -78.634864807128906, -9.031805038452148 ], [ -78.63458251953125, -9.031805038452148 ], [ -78.63458251953125, -9.031249046325684 ], [ -78.634307861328125, -9.031249046325684 ], [ -78.634307861328125, -9.030693054199219 ], [ -78.63458251953125, -9.030693054199219 ], [ -78.63458251953125, -9.029581069946289 ], [ -78.634864807128906, -9.029581069946289 ], [ -78.634864807128906, -9.028470993041992 ], [ -78.63458251953125, -9.028470993041992 ], [ -78.63458251953125, -9.028195381164494 ], [ -78.634307861328125, -9.028195381164494 ], [ -78.634307861328125, -9.027639389038029 ], [ -78.634025573730469, -9.027639389038029 ], [ -78.634025573730469, -9.027360916137638 ], [ -78.633468627929688, -9.027360916137638 ], [ -78.633468627929688, -9.027083396911564 ], [ -78.633193969726562, -9.027083396911564 ], [ -78.633193969726562, -9.026804924011174 ], [ -78.632637023925724, -9.026804924011174 ], [ -78.632637023925724, -9.026248931884709 ], [ -78.631248474121094, -9.026248931884709 ], [ -78.631248474121094, -9.025973320007324 ], [ -78.630973815917969, -9.025973320007324 ], [ -78.630973815917969, -9.025694847106934 ], [ -78.630691528320312, -9.025694847106934 ], [ -78.630691528320312, -9.025417327880859 ], [ -78.630416870117188, -9.025417327880859 ], [ -78.630416870117188, -9.024582862854004 ], [ -78.630142211914062, -9.024582862854004 ], [ -78.630142211914062, -9.024028778076172 ], [ -78.629859924316349, -9.024028778076172 ], [ -78.629859924316349, -9.023751258850098 ], [ -78.629585266113224, -9.023751258850098 ], [ -78.629585266113224, -9.023195266723633 ], [ -78.629302978515568, -9.023195266723633 ], [ -78.629302978515568, -9.022916793823242 ], [ -78.628753662109375, -9.022916793823242 ], [ -78.628753662109375, -9.023195266723633 ], [ -78.629028320312443, -9.023195266723633 ], [ -78.629028320312443, -9.023472785949707 ], [ -78.628196716308594, -9.023472785949707 ], [ -78.628196716308594, -9.023751258850098 ], [ -78.627357482910156, -9.023751258850098 ], [ -78.627357482910156, -9.024028778076172 ], [ -78.626548767089787, -9.024028778076172 ], [ -78.626251220703068, -9.024028778076172 ], [ -78.626251220703068, -9.023751258850098 ], [ -78.625968933105412, -9.023751258850098 ], [ -78.625968933105412, -9.022360801696777 ], [ -78.625694274902287, -9.022360801696777 ], [ -78.625694274902287, -9.021806716918888 ], [ -78.625419616699219, -9.021806716918888 ], [ -78.625419616699219, -9.02125072479248 ], [ -78.625137329101562, -9.02125072479248 ], [ -78.625137329101562, -9.020970344543457 ], [ -78.624862670898438, -9.020973205566406 ], [ -78.624862670898438, -9.020694732666016 ], [ -78.625137329101562, -9.020694732666016 ], [ -78.625137329101562, -9.020137786865178 ], [ -78.624305725097656, -9.020137786865178 ], [ -78.624305725097656, -9.019584655761662 ], [ -78.624031066894531, -9.019584655761662 ], [ -78.624031066894531, -9.020137786865178 ], [ -78.622917175292912, -9.020137786865178 ], [ -78.622917175292912, -9.01986026763916 ], [ -78.622642517089787, -9.01986026763916 ], [ -78.622642517089787, -9.017082214355412 ], [ -78.622917175292912, -9.017082214355412 ], [ -78.622917175292912, -9.016528129577637 ], [ -78.623191833496037, -9.016528129577637 ], [ -78.623191833496037, -9.015970230102539 ], [ -78.623474121093693, -9.015970230102539 ], [ -78.623474121093693, -9.01541614532465 ], [ -78.623748779296875, -9.01541614532465 ], [ -78.623748779296875, -9.014860153198185 ], [ -78.624031066894531, -9.014860153198185 ], [ -78.624031066894531, -9.014304161071721 ], [ -78.624305725097656, -9.014304161071721 ], [ -78.624305725097656, -9.013750076293945 ], [ -78.624580383300781, -9.013750076293945 ], [ -78.624580383300781, -9.013253211975098 ], [ -78.624862670898438, -9.01319408416748 ], [ -78.624862670898438, -9.012638092041016 ], [ -78.625137329101562, -9.012639999389648 ], [ -78.625137329101562, -9.012361526489201 ], [ -78.625419616699219, -9.012361526489201 ], [ -78.625419616699219, -9.012082099914494 ], [ -78.625694274902287, -9.012084007263184 ], [ -78.625694274902287, -9.011805534362793 ], [ -78.626251220703068, -9.011805534362793 ], [ -78.626251220703068, -9.011528015136719 ], [ -78.626525878906193, -9.011528015136719 ], [ -78.626525878906193, -9.011249542236328 ], [ -78.627082824707031, -9.011249542236328 ], [ -78.627082824707031, -9.010693550109863 ], [ -78.627357482910156, -9.010693550109863 ], [ -78.627357482910156, -9.010416030883789 ], [ -78.627914428710938, -9.010416030883789 ], [ -78.627914428710938, -9.009860038757324 ], [ -78.628471374511719, -9.0098619461059 ], [ -78.628471374511719, -9.009584426879883 ], [ -78.629028320312443, -9.009584426879883 ], [ -78.629028320312443, -9.009028434753418 ], [ -78.629585266113224, -9.009028434753418 ], [ -78.629585266113224, -9.008749961853027 ], [ -78.629859924316349, -9.008749961853027 ], [ -78.629859924316349, -9.008472442626953 ], [ -78.630142211914062, -9.008472442626953 ], [ -78.630142211914062, -9.008193016052189 ], [ -78.630416870117188, -9.008193016052189 ], [ -78.630416870117188, -9.007914543151799 ], [ -78.630691528320312, -9.007914543151799 ], [ -78.630691528320312, -9.007637023925781 ], [ -78.63153076171875, -9.007637023925781 ], [ -78.63153076171875, -9.007081031799316 ], [ -78.632080078124943, -9.007083892822209 ], [ -78.632080078124943, -9.006806373596135 ], [ -78.632637023925724, -9.006806373596135 ], [ -78.632637023925724, -9.006526947021428 ], [ -78.633193969726562, -9.006526947021428 ], [ -78.633193969726562, -9.006249427795353 ], [ -78.634307861328125, -9.006249427795353 ], [ -78.634307861328125, -9.005970954894963 ], [ -78.63458251953125, -9.005970954894963 ], [ -78.63458251953125, -9.005693435668888 ], [ -78.635414123535099, -9.005693435668888 ], [ -78.635414123535099, -9.005417823791504 ], [ -78.635971069335881, -9.005417823791504 ], [ -78.635971069335881, -9.005139350891113 ], [ -78.636253356933537, -9.005139350891113 ], [ -78.636253356933537, -9.004860877990723 ], [ -78.636802673339844, -9.004860877990723 ], [ -78.636802673339844, -9.004583358764648 ], [ -78.6370849609375, -9.004583358764648 ], [ -78.6370849609375, -9.004304885864258 ], [ -78.638191223144418, -9.004304885864258 ], [ -78.638191223144418, -9.00402736663807 ], [ -78.638748168945256, -9.00402736663807 ], [ -78.638748168945256, -9.003748893737793 ], [ -78.639305114746037, -9.003748893737793 ], [ -78.639305114746037, -9.003473281860352 ], [ -78.639862060546875, -9.003473281860352 ], [ -78.639862060546875, -9.003194808959961 ], [ -78.64013671875, -9.003194808959961 ], [ -78.64013671875, -9.002917289733887 ], [ -78.641250610351562, -9.002917289733887 ], [ -78.641250610351562, -9.002638816833496 ], [ -78.641807556152287, -9.002638816833496 ], [ -78.641807556152287, -9.002361297607422 ], [ -78.642639160156193, -9.002361297607422 ], [ -78.642639160156193, -9.002082824707031 ], [ -78.644584655761719, -9.002082824707031 ], [ -78.644584655761719, -9.002361297607422 ], [ -78.645141601562443, -9.002361297607422 ], [ -78.645141601562443, -9.002082824707031 ], [ -78.645973205566406, -9.002082824707031 ], [ -78.645973205566406, -9.001526832580566 ], [ -78.646247863769531, -9.001526832580566 ], [ -78.646247863769531, -9.001249313354492 ], [ -78.646530151367188, -9.001251220703068 ], [ -78.646530151367188, -9.000970840454102 ], [ -78.646804809570312, -9.000970840454102 ], [ -78.646804809570312, -9.00069522857666 ], [ -78.647361755371094, -9.00069522857666 ], [ -78.647361755371094, -9.000416755676213 ], [ -78.647636413574219, -9.000416755676213 ], [ -78.647636413574219, -9.000139236450195 ], [ -78.647636413574219, -8.999860763549805 ], [ -78.648193359374943, -8.999860763549805 ], [ -78.648193359374943, -8.99958324432373 ], [ -78.648750305175724, -8.99958324432373 ], [ -78.648750305175724, -8.99930477142334 ], [ -78.649024963378906, -8.99930477142334 ], [ -78.649024963378906, -8.999029159545842 ], [ -78.649581909179688, -8.999029159545842 ], [ -78.649581909179688, -8.998748779296875 ], [ -78.650138854980469, -8.998748779296875 ], [ -78.650138854980469, -8.998471260070801 ], [ -78.65069580078125, -8.998473167419377 ], [ -78.65069580078125, -8.998194694518986 ], [ -78.653190612792969, -8.998194694518986 ], [ -78.6531982421875, -8.997915267944336 ], [ -78.653472900390625, -8.997917175292912 ], [ -78.653472900390625, -8.997638702392521 ], [ -78.654029846191406, -8.997638702392521 ], [ -78.654029846191406, -8.997358322143555 ], [ -78.654304504394474, -8.997361183166504 ], [ -78.654304504394474, -8.997082710266056 ], [ -78.654586791992131, -8.997082710266056 ], [ -78.654586791992131, -8.997361183166504 ], [ -78.654861450195256, -8.997361183166504 ], [ -78.654861450195256, -8.997082710266056 ], [ -78.655975341796875, -8.997082710266056 ], [ -78.655975341796875, -8.997361183166504 ], [ -78.65625, -8.997361183166504 ], [ -78.65625, -8.997082710266056 ], [ -78.656524658203125, -8.997082710266056 ], [ -78.656524658203125, -8.997638702392521 ], [ -78.656806945800781, -8.997638702392521 ], [ -78.656806945800781, -8.997358322143555 ], [ -78.657363891601562, -8.997358322143555 ], [ -78.657363891601562, -8.996805191040039 ], [ -78.657638549804631, -8.996805191040039 ], [ -78.657638549804631, -8.996526718139648 ], [ -78.658195495605412, -8.996526718139648 ], [ -78.658195495605412, -8.995416641235295 ], [ -78.658470153808537, -8.995416641235295 ], [ -78.658470153808537, -8.994026184081974 ], [ -78.65875244140625, -8.99402904510498 ], [ -78.65875244140625, -8.992637634277344 ], [ -78.658470153808537, -8.992637634277344 ], [ -78.658470153808537, -8.992085456848145 ], [ -78.658195495605412, -8.992085456848145 ], [ -78.658195495605412, -8.991804122924805 ], [ -78.657913208007756, -8.991804122924805 ], [ -78.657913208007756, -8.990138053894043 ], [ -78.658195495605412, -8.990138053894043 ], [ -78.658195495605412, -8.989862442016545 ], [ -78.65875244140625, -8.989862442016545 ], [ -78.65875244140625, -8.98930644989008 ], [ -78.659027099609375, -8.98930644989008 ], [ -78.659027099609375, -8.988471984863224 ], [ -78.65875244140625, -8.988471984863224 ], [ -78.65875244140625, -8.987360000610352 ], [ -78.659027099609375, -8.987360000610352 ], [ -78.659027099609375, -8.986249923705998 ], [ -78.658470153808537, -8.986249923705998 ], [ -78.658470153808537, -8.986528396606388 ], [ -78.658340454101562, -8.986528396606388 ], [ -78.657363891601562, -8.986528396606388 ], [ -78.657363891601562, -8.986805915832463 ], [ -78.65625, -8.986805915832463 ], [ -78.65625, -8.987084388732853 ], [ -78.655975341796875, -8.987084388732853 ], [ -78.655975341796875, -8.987360000610352 ], [ -78.655693054199219, -8.987360000610352 ], [ -78.655693054199219, -8.987638473510742 ], [ -78.655136108398381, -8.987638473510742 ], [ -78.655136108398381, -8.987915992736816 ], [ -78.654861450195256, -8.987915992736816 ], [ -78.654861450195256, -8.988471984863224 ], [ -78.654586791992131, -8.988471984863224 ], [ -78.654586791992131, -8.988750457763672 ], [ -78.654304504394474, -8.988750457763672 ], [ -78.654304504394474, -8.989027976989689 ], [ -78.654029846191406, -8.989026069641113 ], [ -78.654029846191406, -8.989582061767578 ], [ -78.65374755859375, -8.989582061767578 ], [ -78.65374755859375, -8.989862442016545 ], [ -78.6531982421875, -8.989862442016545 ], [ -78.6531982421875, -8.990138053894043 ], [ -78.652641296386719, -8.990138053894043 ], [ -78.652641296386719, -8.990415573120117 ], [ -78.651527404785099, -8.990415573120117 ], [ -78.651527404785099, -8.990694046020508 ], [ -78.65069580078125, -8.990694046020508 ], [ -78.65069580078125, -8.990415573120117 ], [ -78.650413513183594, -8.990415573120117 ], [ -78.650413513183594, -8.990138053894043 ], [ -78.650299072265568, -8.990138053894043 ], [ -78.650138854980469, -8.990138053894043 ], [ -78.650138854980469, -8.989862442016545 ], [ -78.649864196777344, -8.989862442016545 ], [ -78.649864196777344, -8.989582061767578 ], [ -78.649581909179688, -8.989582061767578 ], [ -78.649581909179688, -8.989026069641113 ], [ -78.649307250976562, -8.989027976989689 ], [ -78.649307250976562, -8.988750457763672 ], [ -78.649024963378906, -8.988750457763672 ], [ -78.649024963378906, -8.988471984863224 ], [ -78.648750305175724, -8.988471984863224 ], [ -78.648750305175724, -8.988194465637207 ], [ -78.648475646972599, -8.988194465637207 ], [ -78.648475646972599, -8.987915992736816 ], [ -78.648193359374943, -8.987915992736816 ], [ -78.648193359374943, -8.987360000610352 ], [ -78.647918701171761, -8.987360000610352 ], [ -78.647918701171761, -8.986805915832463 ], [ -78.647636413574219, -8.986805915832463 ], [ -78.647636413574219, -8.985972404479924 ], [ -78.647361755371094, -8.985972404479924 ], [ -78.647361755371094, -8.985416412353516 ], [ -78.647087097167969, -8.985416412353516 ], [ -78.647087097167969, -8.984306335449162 ], [ -78.647361755371094, -8.984306335449162 ], [ -78.647361755371094, -8.983471870422306 ], [ -78.647087097167969, -8.983471870422306 ], [ -78.647087097167969, -8.982640266418457 ], [ -78.646804809570312, -8.982640266418457 ], [ -78.646804809570312, -8.982084274291992 ], [ -78.646530151367188, -8.982084274291992 ], [ -78.646530151367188, -8.980415344238281 ], [ -78.646247863769531, -8.980415344238281 ], [ -78.646247863769531, -8.979305267333984 ], [ -78.646530151367188, -8.979305267333984 ], [ -78.646530151367188, -8.979026794433594 ], [ -78.646804809570312, -8.979026794433594 ], [ -78.646804809570312, -8.97874927520752 ], [ -78.647087097167969, -8.97874927520752 ], [ -78.647087097167969, -8.978470802307129 ], [ -78.647361755371094, -8.978470802307129 ], [ -78.647361755371094, -8.973472595214844 ], [ -78.647636413574219, -8.973472595214844 ], [ -78.647636413574219, -8.972916603088379 ], [ -78.647918701171761, -8.972916603088379 ], [ -78.647918701171761, -8.972360610961914 ], [ -78.648193359374943, -8.972360610961914 ], [ -78.648193359374943, -8.971804618835449 ], [ -78.648475646972599, -8.971804618835449 ], [ -78.648475646972599, -8.969026565551758 ], [ -78.648193359374943, -8.96899223327631 ], [ -78.647239685058537, -8.969008445739689 ], [ -78.644996643066406, -8.969131469726506 ], [ -78.639198303222656, -8.969072341918888 ], [ -78.633262634277344, -8.969366073608342 ], [ -78.630325317382812, -8.968880653381291 ], [ -78.628158569335881, -8.96888256072998 ], [ -78.623153686523438, -8.96767520904541 ], [ -78.619163513183594, -8.966019630432072 ], [ -78.613624572753906, -8.96318531036377 ], [ -78.609283447265568, -8.959515571594181 ], [ -78.60577392578125, -8.957229614257812 ], [ -78.604774475097656, -8.95613956451416 ], [ -78.603683471679688, -8.955597877502385 ], [ -78.600532531738281, -8.952642440795898 ], [ -78.594894409179574, -8.948218345642033 ], [ -78.592460632324219, -8.945479393005371 ], [ -78.591117858886719, -8.943318367004338 ], [ -78.590431213378906, -8.941004753112793 ], [ -78.589927673339787, -8.937125205993652 ], [ -78.589851379394531, -8.930670738220158 ], [ -78.590377807617131, -8.92859935760498 ], [ -78.59014892578125, -8.926461219787598 ], [ -78.589042663574162, -8.923853874206543 ], [ -78.586860656738224, -8.921853065490666 ], [ -78.585296630859375, -8.919819831848145 ], [ -78.583023071289062, -8.912104606628418 ], [ -78.582839965820312, -8.908342361450138 ], [ -78.580566406249943, -8.906231880187988 ], [ -78.580017089843636, -8.905172348022404 ], [ -78.579536437988224, -8.903055191040039 ], [ -78.579521179199162, -8.89956092834467 ], [ -78.579048156738224, -8.898300170898438 ], [ -78.578773498535099, -8.895082473754826 ], [ -78.577026367187443, -8.890484809875431 ], [ -78.576950073242131, -8.887109756469727 ], [ -78.577247619628849, -8.884983062744141 ], [ -78.57928466796875, -8.877678871154728 ], [ -78.581382751464844, -8.871855735778809 ], [ -78.582397460937443, -8.867395401000977 ], [ -78.583518981933537, -8.864500999450627 ], [ -78.584014892578068, -8.86369419097889 ], [ -78.586257934570312, -8.861362457275334 ], [ -78.586853027343693, -8.86029052734375 ], [ -78.587135314941349, -8.858989715576115 ], [ -78.586921691894531, -8.856966018676758 ], [ -78.585952758789062, -8.855191230773869 ], [ -78.584579467773381, -8.85136604309082 ], [ -78.584449768066406, -8.850455284118596 ], [ -78.584785461425668, -8.848329544067326 ], [ -78.582466125488224, -8.846240043640137 ], [ -78.581947326660156, -8.845296859741154 ], [ -78.581542968749886, -8.83910942077631 ], [ -78.580924987792969, -8.834960937499943 ], [ -78.580284118652287, -8.832492828369141 ], [ -78.576934814453068, -8.825131416320744 ], [ -78.575851440429688, -8.820539474487305 ], [ -78.573944091796875, -8.816015243530217 ], [ -78.573951721191406, -8.815327644348088 ], [ -78.571762084960938, -8.812965393066406 ], [ -78.570907592773438, -8.811745643615723 ], [ -78.568321228027344, -8.80394172668457 ], [ -78.565124511718693, -8.798159599304199 ], [ -78.564781188964844, -8.796572685241642 ], [ -78.564666748046875, -8.793072700500488 ], [ -78.564071655273381, -8.791019439697266 ], [ -78.557830810546875, -8.783745765685978 ], [ -78.555412292480355, -8.780339241027775 ], [ -78.553016662597599, -8.776432991027718 ], [ -78.550819396972599, -8.774232864379826 ], [ -78.548370361328125, -8.772322654724121 ], [ -78.546424865722599, -8.770810127258301 ], [ -78.540870666503906, -8.767448425292969 ], [ -78.538490295410156, -8.766495704650822 ], [ -78.533004760742188, -8.764839172363224 ], [ -78.530838012695312, -8.763875007629395 ], [ -78.529678344726562, -8.762569427490178 ], [ -78.527496337890625, -8.758184432983398 ], [ -78.525871276855469, -8.756364822387695 ], [ -78.524238586425781, -8.755784034729004 ], [ -78.521438598632756, -8.754131317138672 ], [ -78.518806457519531, -8.753081321716252 ], [ -78.515701293945312, -8.752135276794377 ], [ -78.511955261230469, -8.751602172851506 ], [ -78.510673522949162, -8.751171112060547 ], [ -78.502449035644474, -8.750641822814941 ], [ -78.499877929687443, -8.750856399536133 ], [ -78.493354797363281, -8.749662399291992 ], [ -78.490921020507756, -8.749782562255803 ], [ -78.487091064453125, -8.7505846023559 ], [ -78.485191345214787, -8.750520706176758 ], [ -78.483192443847599, -8.75016975402832 ], [ -78.479629516601562, -8.748903274536133 ], [ -78.476135253906193, -8.746597290039062 ], [ -78.473175048828068, -8.745638847351074 ], [ -78.472427368164006, -8.744680404663029 ], [ -78.471176147460881, -8.743886947631836 ], [ -78.460731506347656, -8.739821434020996 ], [ -78.458564758300781, -8.73906421661377 ], [ -78.446937561035156, -8.735963821411133 ], [ -78.44232177734375, -8.733694076538086 ], [ -78.439765930175781, -8.733792304992619 ], [ -78.438972473144531, -8.733598709106445 ], [ -78.437088012695312, -8.731855392456055 ], [ -78.433532714843636, -8.729648590087834 ], [ -78.430809020996094, -8.727641105651799 ], [ -78.423484802246037, -8.720664978027344 ], [ -78.420837402343693, -8.71856498718256 ], [ -78.418334960937443, -8.716962814331055 ], [ -78.414428710937443, -8.713232040405273 ], [ -78.411346435546875, -8.711283683776855 ], [ -78.408966064453125, -8.71003246307373 ], [ -78.40206146240223, -8.707277297973633 ], [ -78.400398254394531, -8.705890655517578 ], [ -78.399337768554688, -8.704491615295353 ], [ -78.397987365722656, -8.703592300414982 ], [ -78.395523071289062, -8.702855110168457 ], [ -78.391624450683594, -8.702492713928166 ], [ -78.389801025390625, -8.701995849609318 ], [ -78.388450622558594, -8.70108509063715 ], [ -78.385971069335938, -8.69877815246582 ], [ -78.3851318359375, -8.698396682739258 ], [ -78.383613586425781, -8.69830417633051 ], [ -78.381942749023438, -8.698850631713867 ], [ -78.380592346191349, -8.698907852172795 ], [ -78.379798889160156, -8.69874382019043 ], [ -78.378074645996094, -8.697648048400822 ], [ -78.376655578613281, -8.696234703063965 ], [ -78.37530517578125, -8.694044113159123 ], [ -78.374061584472656, -8.691344261169434 ], [ -78.373222351074219, -8.688091278076115 ], [ -78.372718811035156, -8.687137603759709 ], [ -78.371513366699162, -8.685687065124455 ], [ -78.370094299316349, -8.684426307678223 ], [ -78.368705749511719, -8.683599472045898 ], [ -78.367584228515625, -8.683111190795898 ], [ -78.3651123046875, -8.682547569274902 ], [ -78.363548278808594, -8.681773185729924 ], [ -78.358322143554688, -8.677279472351017 ], [ -78.354782104492188, -8.673762321472111 ], [ -78.353584289550724, -8.673149108886719 ], [ -78.351654052734375, -8.672677040100098 ], [ -78.349227905273324, -8.67278861999506 ], [ -78.347335815429688, -8.673539161682129 ], [ -78.345481872558537, -8.675313949584961 ], [ -78.344802856445312, -8.67571830749506 ], [ -78.341423034667969, -8.676128387451172 ], [ -78.339805603027344, -8.676059722900334 ], [ -78.337608337402344, -8.675392150878849 ], [ -78.337020874023324, -8.674811363220158 ], [ -78.336090087890625, -8.671017646789494 ], [ -78.335060119628906, -8.669761657714787 ], [ -78.334678649902344, -8.667789459228516 ], [ -78.333732604980469, -8.666521072387695 ], [ -78.332618713378849, -8.666614532470646 ], [ -78.330863952636719, -8.667296409606934 ], [ -78.328018188476562, -8.66726016998291 ], [ -78.3271484375, -8.666896820068303 ], [ -78.325889587402344, -8.665327072143498 ], [ -78.324691772460881, -8.66504001617426 ], [ -78.321502685546875, -8.666115760803223 ], [ -78.318328857421761, -8.665507316589355 ], [ -78.316436767578125, -8.665436744689941 ], [ -78.314971923828068, -8.665655136108398 ], [ -78.312156677246094, -8.66661262512207 ], [ -78.310264587402344, -8.666655540466309 ], [ -78.307922363281193, -8.665987968444824 ], [ -78.306594848632756, -8.665315628051758 ], [ -78.304054260253906, -8.664937019348088 ], [ -78.301887512207031, -8.664180755615234 ], [ -78.300567626953068, -8.663244247436467 ], [ -78.297912597656193, -8.660359382629338 ], [ -78.295455932617188, -8.659116744995117 ], [ -78.293975830078068, -8.659235000610295 ], [ -78.289817810058594, -8.661746978759709 ], [ -78.288764953613168, -8.661972045898438 ], [ -78.287261962890625, -8.661943435668945 ], [ -78.28448486328125, -8.660853385925293 ], [ -78.282073974609318, -8.658923149108887 ], [ -78.280151367187443, -8.657919883727971 ], [ -78.279098510742131, -8.657693862914982 ], [ -78.276527404785099, -8.657827377319336 ], [ -78.273391723632756, -8.656614303588867 ], [ -78.270278930664062, -8.656750679016113 ], [ -78.26507568359375, -8.657570838928166 ], [ -78.261032104492188, -8.657938003540039 ], [ -78.258193969726562, -8.658036231994629 ], [ -78.2529296875, -8.657811164855957 ], [ -78.249954223632812, -8.658701896667367 ], [ -78.247642517089787, -8.658783912658691 ], [ -78.246200561523381, -8.658408164977971 ], [ -78.244903564453125, -8.657681465148869 ], [ -78.244338989257812, -8.656311035156193 ], [ -78.24310302734375, -8.655056953430176 ], [ -78.239173889160043, -8.654051780700684 ], [ -78.236587524414006, -8.652892112731934 ], [ -78.235916137695256, -8.652851104736328 ], [ -78.235687255859375, -8.652511596679631 ], [ -78.234825134277344, -8.650835990905762 ], [ -78.233711242675724, -8.650079727172795 ], [ -78.232681274414006, -8.648823738098088 ], [ -78.230537414550781, -8.647678375244141 ], [ -78.230072021484375, -8.646578788757267 ], [ -78.227348327636605, -8.643953323364258 ], [ -78.220458984374943, -8.640229225158635 ], [ -78.213706970214787, -8.63575267791748 ], [ -78.208709716796875, -8.633041381835881 ], [ -78.207221984863224, -8.631905555725098 ], [ -78.204803466796875, -8.629532814025822 ], [ -78.202110290527344, -8.625065803527775 ], [ -78.201362609863281, -8.623186111450138 ], [ -78.201309204101506, -8.619681358337346 ], [ -78.202377319335938, -8.616936683654785 ], [ -78.202400207519531, -8.61545467376709 ], [ -78.200851440429688, -8.613406181335449 ], [ -78.198570251464844, -8.60943412780756 ], [ -78.195854187011662, -8.606261253356934 ], [ -78.194839477539062, -8.604352951049805 ], [ -78.193984985351562, -8.601940155029297 ], [ -78.194450378417969, -8.598630905151367 ], [ -78.196884155273438, -8.593391418456974 ], [ -78.198394775390625, -8.586975097656193 ], [ -78.199905395507812, -8.584576606750488 ], [ -78.201316833496094, -8.583318710327092 ], [ -78.201850891113224, -8.582232475280762 ], [ -78.202163696289006, -8.580097198486328 ], [ -78.201797485351562, -8.578393936157227 ], [ -78.201728820800781, -8.576360702514592 ], [ -78.201995849609375, -8.575051307678223 ], [ -78.202613830566349, -8.573690414428654 ], [ -78.204811096191349, -8.571331024169922 ], [ -78.207099914550724, -8.567998886108398 ], [ -78.208282470703125, -8.566886901855355 ], [ -78.210556030273381, -8.566734313964844 ], [ -78.214065551757756, -8.566964149475098 ], [ -78.214935302734318, -8.566334724426213 ], [ -78.215576171875, -8.565291404724121 ], [ -78.215400695800724, -8.56181812286377 ], [ -78.215789794921818, -8.560800552368107 ], [ -78.216880798339844, -8.559112548828125 ], [ -78.216972351074219, -8.556815147399846 ], [ -78.215568542480469, -8.553930282592717 ], [ -78.214179992675724, -8.549695014953613 ], [ -78.2120361328125, -8.546769142150822 ], [ -78.211898803710824, -8.54304027557373 ], [ -78.211509704589787, -8.542474746704102 ], [ -78.209739685058594, -8.541487693786564 ], [ -78.208747863769474, -8.54056453704834 ], [ -78.207908630371094, -8.538729667663461 ], [ -78.207649230957031, -8.536464691161996 ], [ -78.206489562988281, -8.53515434265131 ], [ -78.206642150878849, -8.534206390380859 ], [ -78.203895568847656, -8.532243728637695 ], [ -78.203712463378906, -8.528767585754395 ], [ -78.202560424804688, -8.52618408203125 ], [ -78.199920654296875, -8.523099899291992 ], [ -78.196708679199162, -8.521384239196777 ], [ -78.195442199707031, -8.517555236816349 ], [ -78.194343566894474, -8.516028404235783 ], [ -78.192962646484375, -8.514945030212402 ], [ -78.190750122070312, -8.514331817626896 ], [ -78.190200805664062, -8.513931274414006 ], [ -78.189384460449162, -8.512529373168945 ], [ -78.189361572265568, -8.510517120361271 ], [ -78.188682556152344, -8.509164810180664 ], [ -78.188026428222599, -8.508764266967773 ], [ -78.187164306640568, -8.508770942687988 ], [ -78.185211181640625, -8.509951591491699 ], [ -78.183723449707031, -8.510299682617131 ], [ -78.182655334472656, -8.509819030761719 ], [ -78.180625915527344, -8.508418083190918 ], [ -78.179557800292912, -8.50829029083252 ], [ -78.177993774414062, -8.50661468505848 ], [ -78.176216125488224, -8.505401611328125 ], [ -78.173988342285156, -8.503433227539006 ], [ -78.173263549804631, -8.5025634765625 ], [ -78.172706604003906, -8.501429557800236 ], [ -78.171501159667969, -8.50022029876709 ], [ -78.170852661132812, -8.498554229736328 ], [ -78.170509338378793, -8.49688816070551 ], [ -78.1705322265625, -8.494735717773438 ], [ -78.171272277831918, -8.492445945739689 ], [ -78.171089172363281, -8.491009712219238 ], [ -78.170364379882812, -8.489373207092228 ], [ -78.169639587402287, -8.488567352294865 ], [ -78.168022155761662, -8.487982749938908 ], [ -78.167320251464844, -8.487457275390625 ], [ -78.166183471679631, -8.485930442810059 ], [ -78.165771484375, -8.484857559204102 ], [ -78.164855957031193, -8.484783172607422 ], [ -78.163864135742188, -8.485179901123047 ], [ -78.162971496581974, -8.484999656677246 ], [ -78.162193298339787, -8.484553337097111 ], [ -78.161262512207031, -8.483468055725098 ], [ -78.157829284667969, -8.478391647338867 ], [ -78.157669067382812, -8.474899291992188 ], [ -78.158111572265511, -8.473848342895451 ], [ -78.15826416015625, -8.471562385559082 ], [ -78.158103942871037, -8.47063159942627 ], [ -78.156753540039006, -8.469045639038086 ], [ -78.156387329101506, -8.467746734619141 ], [ -78.157020568847656, -8.463648796081486 ], [ -78.156867980956974, -8.462251663208008 ], [ -78.156059265136719, -8.460541725158635 ], [ -78.154800415039062, -8.458627700805664 ], [ -78.154197692871037, -8.458333969116211 ], [ -78.152381896972599, -8.458176612853947 ], [ -78.151565551757812, -8.457481384277287 ], [ -78.151016235351562, -8.453573226928711 ], [ -78.150489807128906, -8.451861381530762 ], [ -78.149772644042969, -8.450458526611328 ], [ -78.149765014648438, -8.449204444885197 ], [ -78.149246215820312, -8.447373390197754 ], [ -78.147903442382756, -8.445976257324219 ], [ -78.147315979003849, -8.44371318817133 ], [ -78.146224975585938, -8.441327095031738 ], [ -78.144989013671875, -8.440290451049805 ], [ -78.143974304199162, -8.438918113708496 ], [ -78.143119812011662, -8.436178207397404 ], [ -78.142967224121094, -8.433931350708008 ], [ -78.142715454101562, -8.433090209960938 ], [ -78.141685485839787, -8.431184768676758 ], [ -78.140327453613281, -8.429741859435978 ], [ -78.139587402343693, -8.42790508270258 ], [ -78.139358520507812, -8.423969268798828 ], [ -78.138961791992188, -8.422500610351449 ], [ -78.139099121093693, -8.419914245605412 ], [ -78.140403747558594, -8.416104316711369 ], [ -78.140533447265568, -8.414756774902287 ], [ -78.139862060546818, -8.412728309631348 ], [ -78.138336181640568, -8.410184860229492 ], [ -78.138206481933594, -8.408930778503361 ], [ -78.137359619140625, -8.406093597412053 ], [ -78.137092590332031, -8.401469230651799 ], [ -78.137176513671875, -8.398960113525391 ], [ -78.136878967285156, -8.397831916809082 ], [ -78.136909484863224, -8.396838188171387 ], [ -78.135772705078068, -8.395338058471623 ], [ -78.134452819824162, -8.394563674926758 ], [ -78.134307861328125, -8.393770217895508 ], [ -78.134506225585938, -8.393099784851017 ], [ -78.135322570800781, -8.392127037048283 ], [ -78.138580322265625, -8.39022159576416 ], [ -78.13934326171875, -8.389537811279297 ], [ -78.139656066894531, -8.388950347900391 ], [ -78.139419555663949, -8.387676239013615 ], [ -78.138420104980469, -8.385977745056152 ], [ -78.137870788574162, -8.384547233581543 ], [ -78.13763427734375, -8.383320808410588 ], [ -78.13763427734375, -8.381522178649902 ], [ -78.136520385742188, -8.377458572387695 ], [ -78.136642456054631, -8.375849723815918 ], [ -78.137657165527344, -8.372691154479924 ], [ -78.137840270996094, -8.369290351867619 ], [ -78.137405395507756, -8.368301391601506 ], [ -78.136100769042969, -8.366939544677734 ], [ -78.135307312011662, -8.366765022277832 ], [ -78.134208679199219, -8.365987777709904 ], [ -78.133041381835938, -8.365923881530648 ], [ -78.132255554199162, -8.365497589111328 ], [ -78.131355285644531, -8.364620208740234 ], [ -78.129287719726506, -8.361466407775822 ], [ -78.128562927246094, -8.360756874084473 ], [ -78.126609802246037, -8.36065673828125 ], [ -78.124496459960938, -8.361386299133244 ], [ -78.123275756835881, -8.361060142516976 ], [ -78.121871948242074, -8.359310150146484 ], [ -78.121276855468693, -8.357434272766113 ], [ -78.120918273925668, -8.356917381286621 ], [ -78.120254516601562, -8.356451988220158 ], [ -78.118698120117131, -8.356058120727482 ], [ -78.117897033691406, -8.355079650878906 ], [ -78.117652893066349, -8.353862762451172 ], [ -78.117156982421875, -8.353115081787109 ], [ -78.1165771484375, -8.352678298950195 ], [ -78.115425109863281, -8.352460861206055 ], [ -78.114852905273438, -8.35212230682373 ], [ -78.115104675292969, -8.349390983581486 ], [ -78.114814758300668, -8.3468017578125 ], [ -78.1148681640625, -8.343405723571721 ], [ -78.113807678222656, -8.342338562011719 ], [ -78.111160278320256, -8.341464042663574 ], [ -78.11016845703125, -8.340850830078068 ], [ -78.108505249023381, -8.3385972976684 ], [ -78.108146667480469, -8.33775806427002 ], [ -78.108062744140625, -8.336070060729924 ], [ -78.111686706542969, -8.33195972442627 ], [ -78.112609863281193, -8.329819679260197 ], [ -78.114067077636719, -8.327562332153207 ], [ -78.114509582519474, -8.326105117797795 ], [ -78.114540100097656, -8.323320388793945 ], [ -78.11474609375, -8.322631835937443 ], [ -78.116004943847656, -8.321638107299748 ], [ -78.11962890625, -8.320651054382324 ], [ -78.120697021484318, -8.319414138793945 ], [ -78.121284484863224, -8.318199157714844 ], [ -78.121337890625, -8.317397117614746 ], [ -78.120925903320312, -8.315908432006779 ], [ -78.120170593261719, -8.314199447631779 ], [ -78.118904113769474, -8.313034057617188 ], [ -78.117538452148438, -8.31258487701416 ], [ -78.116416931152287, -8.311825752258301 ], [ -78.116043090820256, -8.311331748962402 ], [ -78.115982055664062, -8.310520172119084 ], [ -78.114952087402344, -8.309560775756836 ], [ -78.111526489257812, -8.308809280395508 ], [ -78.108718872070312, -8.307604789733887 ], [ -78.105003356933594, -8.306938171386719 ], [ -78.101982116699219, -8.305561065673771 ], [ -78.100440979003906, -8.304047584533635 ], [ -78.099227905273438, -8.300777435302678 ], [ -78.0986328125, -8.300357818603516 ], [ -78.097343444824162, -8.299969673156681 ], [ -78.096420288085938, -8.29908370971674 ], [ -78.095489501953125, -8.296984672546387 ], [ -78.094139099121094, -8.294864654540959 ], [ -78.094139099121094, -8.294331550598088 ], [ -78.093505859375, -8.293704986572266 ], [ -78.092353820800781, -8.293910026550236 ], [ -78.091056823730412, -8.294519424438477 ], [ -78.090606689453125, -8.294421195983887 ], [ -78.089775085449219, -8.293641090393066 ], [ -78.08782958984375, -8.290526390075684 ], [ -78.086898803710938, -8.28664588928217 ], [ -78.086227416992188, -8.285269737243652 ], [ -78.084617614746094, -8.28333854675293 ], [ -78.081802368164006, -8.280968666076603 ], [ -78.080833435058537, -8.280488014221135 ], [ -78.079765319824219, -8.280305862426758 ], [ -78.075317382812443, -8.28137016296381 ], [ -78.073883056640568, -8.281427383422852 ], [ -78.072723388671818, -8.280948638915959 ], [ -78.071052551269531, -8.279722213745117 ], [ -78.067924499511719, -8.278592109680119 ], [ -78.066619873046818, -8.277100563049316 ], [ -78.066131591796875, -8.274648666381836 ], [ -78.065620422363281, -8.273298263549691 ], [ -78.064140319824162, -8.271383285522404 ], [ -78.063041687011719, -8.270318984985295 ], [ -78.058120727539062, -8.267907142639103 ], [ -78.055503845214844, -8.266329765319767 ], [ -78.052253723144418, -8.26350212097168 ], [ -78.048629760742074, -8.260844230651855 ], [ -78.045600891113281, -8.257904052734375 ], [ -78.044761657714844, -8.257594108581543 ], [ -78.042877197265568, -8.2574462890625 ], [ -78.041336059570312, -8.256521224975586 ], [ -78.039810180664062, -8.256521224975586 ], [ -78.038665771484375, -8.256252288818303 ], [ -78.034980773925724, -8.254200935363656 ], [ -78.034103393554631, -8.252772331237793 ], [ -78.03509521484375, -8.250378608703556 ], [ -78.0350341796875, -8.246973991393986 ], [ -78.032341003417969, -8.245024681091309 ], [ -78.029586791992188, -8.2423095703125 ], [ -78.027656555175781, -8.240056037902775 ], [ -78.026832580566406, -8.23869800567627 ], [ -78.026679992675724, -8.238084793090763 ], [ -78.023582458496094, -8.233196258544808 ], [ -78.022102355956974, -8.23012638092041 ], [ -78.019371032714844, -8.226226806640568 ], [ -78.01861572265625, -8.225462913513184 ], [ -78.015625, -8.223624229431096 ], [ -78.013755798339844, -8.222084999084473 ], [ -78.012931823730412, -8.221712112426758 ], [ -78.011581420898438, -8.221695899963379 ], [ -78.009338378906136, -8.221071243286133 ], [ -78.008354187011662, -8.221205711364746 ], [ -78.007431030273324, -8.221753120422306 ], [ -78.00469970703125, -8.221194267272949 ], [ -77.999961853027287, -8.220868110656738 ], [ -77.998619079589844, -8.220438003539982 ], [ -77.997512817382699, -8.219462394714355 ], [ -77.996307373046875, -8.219243049621582 ], [ -77.995376586914062, -8.218447685241699 ], [ -77.991081237792969, -8.218424797058105 ], [ -77.988235473632756, -8.21715259552002 ], [ -77.98687744140625, -8.216036796569824 ], [ -77.983268737792912, -8.21550273895258 ], [ -77.982261657714844, -8.215166091918945 ], [ -77.980690002441406, -8.214095115661564 ], [ -77.979804992675781, -8.213070869445744 ], [ -77.979438781738281, -8.210678100585881 ], [ -77.976844787597656, -8.210128784179688 ], [ -77.974288940429688, -8.209966659545842 ], [ -77.972244262695312, -8.209258079528809 ], [ -77.966194152832031, -8.20972824096674 ], [ -77.965591430664062, -8.209426879882756 ], [ -77.964202880859318, -8.208119392394963 ], [ -77.963211059570312, -8.207783699035645 ], [ -77.956581115722599, -8.207857131957951 ], [ -77.955490112304688, -8.207298278808594 ], [ -77.953918457031193, -8.20544528961176 ], [ -77.953132629394474, -8.204912185668888 ], [ -77.952194213867131, -8.204807281494141 ], [ -77.950767517089787, -8.205833435058594 ], [ -77.949836730957031, -8.205876350402832 ], [ -77.948104858398381, -8.204830169677734 ], [ -77.945510864257756, -8.20228385925293 ], [ -77.9443359375, -8.201957702636719 ], [ -77.942176818847599, -8.201783180236816 ], [ -77.941780090332031, -8.201489448547363 ], [ -77.941253662109375, -8.200597763061467 ], [ -77.939964294433594, -8.199604034423771 ], [ -77.938713073730469, -8.199146270751896 ], [ -77.936180114746037, -8.19865608215332 ], [ -77.934341430664062, -8.197504997253304 ], [ -77.933609008789006, -8.196372032165527 ], [ -77.933853149414062, -8.192081451415959 ], [ -77.933700561523381, -8.189794540405273 ], [ -77.9329833984375, -8.187911987304688 ], [ -77.932319641113281, -8.185017585754395 ], [ -77.931648254394531, -8.183855056762695 ], [ -77.931350708007812, -8.181854248046818 ], [ -77.930809020996094, -8.180465698242188 ], [ -77.930740356445256, -8.174007415771484 ], [ -77.929672241210881, -8.170390129089299 ], [ -77.929374694824219, -8.167710304260254 ], [ -77.928718566894474, -8.165096282958928 ], [ -77.92791748046875, -8.162664413452092 ], [ -77.926620483398381, -8.159845352172852 ], [ -77.926147460937443, -8.157048225402832 ], [ -77.925262451171875, -8.154949188232422 ], [ -77.923202514648381, -8.151297569274902 ], [ -77.92047119140625, -8.147962570190373 ], [ -77.920303344726562, -8.145951271057072 ], [ -77.920791625976562, -8.144700050353947 ], [ -77.920875549316406, -8.143731117248478 ], [ -77.918403625488281, -8.140895843505859 ], [ -77.9185791015625, -8.137560844421387 ], [ -77.918251037597599, -8.13611888885498 ], [ -77.918228149414006, -8.134357452392578 ], [ -77.917892456054688, -8.133789062499943 ], [ -77.916694641113281, -8.132695198059025 ], [ -77.916168212890625, -8.131534576415902 ], [ -77.916015625, -8.130623817443848 ], [ -77.916221618652344, -8.127803802490178 ], [ -77.915054321289062, -8.126006126403809 ], [ -77.914817810058537, -8.124814033508301 ], [ -77.913719177246094, -8.123620033264103 ], [ -77.913795471191406, -8.121281623840332 ], [ -77.913383483886662, -8.120966911315918 ], [ -77.911781311035156, -8.120796203613281 ], [ -77.910667419433594, -8.120012283325138 ], [ -77.910224914550724, -8.118044853210392 ], [ -77.909187316894474, -8.116470336914062 ], [ -77.908889770507756, -8.11339282989502 ], [ -77.907768249511662, -8.110942840576172 ], [ -77.90777587890625, -8.109056472778263 ], [ -77.907234191894531, -8.108445167541447 ], [ -77.906272888183594, -8.107928276061955 ], [ -77.906082153320312, -8.106900215148926 ], [ -77.904365539550781, -8.10539436340332 ], [ -77.904289245605469, -8.104317665100098 ], [ -77.905342102050781, -8.102107048034611 ], [ -77.905548095703068, -8.100939750671387 ], [ -77.905540466308594, -8.098249435424805 ], [ -77.9051513671875, -8.094745635986328 ], [ -77.904380798339844, -8.092159271240234 ], [ -77.902206420898381, -8.086933135986328 ], [ -77.901336669921875, -8.083553314208928 ], [ -77.900535583496094, -8.08199405670166 ], [ -77.899154663085881, -8.080334663391056 ], [ -77.8984375, -8.078883171081543 ], [ -77.8980712890625, -8.077241897583008 ], [ -77.897804260253906, -8.074019432067871 ], [ -77.897247314453068, -8.072747230529785 ], [ -77.896659851074219, -8.068334579467717 ], [ -77.896629333496094, -8.064423561096191 ], [ -77.896934509277344, -8.062424659729004 ], [ -77.896194458007812, -8.061310768127441 ], [ -77.895439147949162, -8.061053276062012 ], [ -77.894065856933594, -8.061000823974609 ], [ -77.890701293945199, -8.061422348022461 ], [ -77.889198303222656, -8.061964988708439 ], [ -77.885902404785099, -8.063838005065918 ], [ -77.883773803710938, -8.064244270324707 ], [ -77.88232421875, -8.063514709472599 ], [ -77.880958557128849, -8.062024116516056 ], [ -77.879493713378906, -8.061328887939396 ], [ -77.877738952636719, -8.059635162353516 ], [ -77.876838684081974, -8.059069633483887 ], [ -77.873519897460881, -8.057891845703068 ], [ -77.870292663574105, -8.057798385620117 ], [ -77.868186950683537, -8.056122779846078 ], [ -77.867263793945312, -8.055812835693246 ], [ -77.866035461425781, -8.056282997131291 ], [ -77.864822387695256, -8.057175636291504 ], [ -77.86248779296875, -8.059966087341252 ], [ -77.86163330078125, -8.062094688415527 ], [ -77.860931396484318, -8.066653251647892 ], [ -77.860130310058594, -8.068367004394474 ], [ -77.855445861816406, -8.072409629821777 ], [ -77.853881835937443, -8.075538635253849 ], [ -77.853317260742074, -8.076291084289551 ], [ -77.851173400878906, -8.07769775390625 ], [ -77.848556518554688, -8.080218315124512 ], [ -77.846572875976562, -8.081372261047306 ], [ -77.84552001953125, -8.080584526061898 ], [ -77.842895507812443, -8.077828407287598 ], [ -77.842544555664062, -8.077107429504395 ], [ -77.842414855956974, -8.07561016082758 ], [ -77.84206390380848, -8.075060844421387 ], [ -77.841056823730469, -8.074362754821721 ], [ -77.840232849121037, -8.074295043945256 ], [ -77.8380126953125, -8.07485294342041 ], [ -77.835906982421875, -8.076069831848145 ], [ -77.834518432617131, -8.077145576477051 ], [ -77.833251953125, -8.0787096023559 ], [ -77.8309326171875, -8.083124160766545 ], [ -77.830268859863281, -8.083598136901855 ], [ -77.829727172851506, -8.083578109741154 ], [ -77.827934265136662, -8.081618309020939 ], [ -77.823631286621037, -8.078150749206543 ], [ -77.814521789550781, -8.068943023681584 ], [ -77.812019348144474, -8.066901206970215 ], [ -77.810188293456974, -8.066046714782715 ], [ -77.809371948242188, -8.066142082214355 ], [ -77.808654785156193, -8.0665283203125 ], [ -77.807403564453125, -8.06844425201416 ], [ -77.8065185546875, -8.069326400756836 ], [ -77.805709838867131, -8.069782257080078 ], [ -77.801132202148381, -8.069967269897404 ], [ -77.795692443847599, -8.070925712585392 ], [ -77.792747497558537, -8.070755004882756 ], [ -77.792495727539062, -8.071381568908578 ], [ -77.792350769042912, -8.075700759887695 ], [ -77.791831970214844, -8.077494621276855 ], [ -77.790260314941349, -8.079511642455941 ], [ -77.788162231445256, -8.08076286315918 ], [ -77.78619384765625, -8.080512046813965 ], [ -77.782363891601449, -8.078786849975586 ], [ -77.777984619140625, -8.078076362609863 ], [ -77.771781921386719, -8.077547073364258 ], [ -77.766624450683537, -8.078413009643555 ], [ -77.765144348144531, -8.077692985534611 ], [ -77.764503479003849, -8.076984405517464 ], [ -77.763229370117188, -8.076225280761719 ], [ -77.761100769042969, -8.075415611267033 ], [ -77.759902954101562, -8.075687408447266 ], [ -77.755928039550724, -8.077691078186035 ], [ -77.752189636230469, -8.077130317687988 ], [ -77.749626159667912, -8.07825756072998 ], [ -77.74908447265625, -8.078298568725586 ], [ -77.748199462890568, -8.077943801879883 ], [ -77.746307373046818, -8.078045845031681 ], [ -77.745452880859318, -8.077401161193848 ], [ -77.744674682617131, -8.074957847595101 ], [ -77.742935180664062, -8.072899818420353 ], [ -77.742309570312386, -8.070708274841309 ], [ -77.741935729980469, -8.070269584655705 ], [ -77.741363525390625, -8.070425033569279 ], [ -77.739311218261719, -8.071941375732422 ], [ -77.735786437988281, -8.072875022888184 ], [ -77.733230590820256, -8.072768211364746 ], [ -77.730888366699219, -8.071754455566406 ], [ -77.729286193847656, -8.071432113647461 ], [ -77.720565795898324, -8.073734283447209 ], [ -77.717720031738281, -8.073845863342228 ], [ -77.716392517089844, -8.073675155639592 ], [ -77.715301513671818, -8.073139190673771 ], [ -77.711532592773438, -8.070244789123535 ], [ -77.709945678710881, -8.069269180297852 ], [ -77.705238342285156, -8.068044662475529 ], [ -77.700798034667912, -8.066450119018555 ], [ -77.699188232421818, -8.065484046936035 ], [ -77.697998046875, -8.064010620117131 ], [ -77.695159912109375, -8.063865661621094 ], [ -77.694259643554688, -8.062363624572754 ], [ -77.691970825195312, -8.062440872192269 ], [ -77.69036865234375, -8.060807228088379 ], [ -77.689178466796818, -8.060969352722168 ], [ -77.685386657714844, -8.06303596496582 ], [ -77.683090209960938, -8.063321113586426 ], [ -77.681480407714844, -8.063222885131836 ], [ -77.676033020019531, -8.060891151428109 ], [ -77.673339843749943, -8.060666084289494 ], [ -77.671554565429688, -8.060054779052734 ], [ -77.669258117675668, -8.060159683227539 ], [ -77.667320251464787, -8.058716773986816 ], [ -77.666397094726449, -8.058956146240178 ], [ -77.665313720703068, -8.058837890624943 ], [ -77.663749694824219, -8.057358741760197 ], [ -77.662887573242188, -8.055964469909611 ], [ -77.659622192382756, -8.055209159851017 ], [ -77.6583251953125, -8.054220199584904 ], [ -77.657562255859375, -8.053241729736328 ], [ -77.653808593749886, -8.053213119506836 ], [ -77.653106689453068, -8.052821159362736 ], [ -77.651611328124943, -8.051083564758301 ], [ -77.651206970214787, -8.051050186157227 ], [ -77.650131225585938, -8.051616668701058 ], [ -77.649177551269531, -8.051731109619141 ], [ -77.647125244140568, -8.050742149353027 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-APU", "NAME_0": "Peru", "ID_1": 3, "NAME_1": "Apurímac", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": "Apuromac" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.74700927734375, -13.174186706542969 ], [ -73.745628356933537, -13.174949645996094 ], [ -73.744041442871094, -13.17481613159174 ], [ -73.742523193359375, -13.17412090301508 ], [ -73.741981506347656, -13.174145698547363 ], [ -73.7408447265625, -13.175434112548828 ], [ -73.7381591796875, -13.176495552062875 ], [ -73.735992431640568, -13.179035186767521 ], [ -73.733833312988281, -13.180306434631234 ], [ -73.730712890625, -13.183220863342285 ], [ -73.729995727539006, -13.184727668762207 ], [ -73.729301452636719, -13.18720817565918 ], [ -73.729133605956974, -13.189225196838379 ], [ -73.7294921875, -13.190745353698674 ], [ -73.729476928710938, -13.192036628723031 ], [ -73.728866577148324, -13.193345069885197 ], [ -73.72821044921875, -13.194074630737305 ], [ -73.728240966796875, -13.195829391479492 ], [ -73.728828430175781, -13.197918891906681 ], [ -73.730262756347599, -13.19926643371582 ], [ -73.732711791992188, -13.200904846191406 ], [ -73.735305786132812, -13.205158233642521 ], [ -73.739219665527344, -13.208856582641602 ], [ -73.740081787109375, -13.209980964660645 ], [ -73.740562438964787, -13.211275100708008 ], [ -73.740394592285099, -13.21179008483881 ], [ -73.738731384277344, -13.213526725768986 ], [ -73.737831115722543, -13.216054916381836 ], [ -73.737777709960938, -13.216706275939885 ], [ -73.738845825195256, -13.217452049255257 ], [ -73.738845825195256, -13.218003273010254 ], [ -73.737899780273381, -13.219146728515625 ], [ -73.736175537109318, -13.220566749572754 ], [ -73.735305786132812, -13.222078323364201 ], [ -73.735328674316349, -13.226322174072209 ], [ -73.734832763671875, -13.228091239929199 ], [ -73.734786987304688, -13.231435775756779 ], [ -73.733833312988281, -13.233022689819336 ], [ -73.733161926269418, -13.23481559753418 ], [ -73.732696533203125, -13.239089965820256 ], [ -73.731765747070312, -13.240462303161621 ], [ -73.731307983398438, -13.241950035095158 ], [ -73.731338500976506, -13.243343353271484 ], [ -73.731910705566349, -13.244285583496094 ], [ -73.733009338378906, -13.247492790222054 ], [ -73.73431396484375, -13.249189376830941 ], [ -73.736801147460938, -13.254352569580021 ], [ -73.737113952636719, -13.255521774291992 ], [ -73.736946105956974, -13.257354736328125 ], [ -73.736717224121094, -13.257858276367188 ], [ -73.735809326171818, -13.258002281188965 ], [ -73.732429504394531, -13.257343292236214 ], [ -73.730232238769531, -13.25818920135498 ], [ -73.728858947753849, -13.258474349975586 ], [ -73.727363586425781, -13.259449005126953 ], [ -73.727195739746094, -13.260799407958984 ], [ -73.728355407714787, -13.262781143188477 ], [ -73.729072570800781, -13.264973640441838 ], [ -73.72882080078125, -13.26680946350092 ], [ -73.727828979492188, -13.26815128326416 ], [ -73.727401733398381, -13.268490791320744 ], [ -73.726867675781136, -13.26856803894043 ], [ -73.723968505859318, -13.267749786376953 ], [ -73.720504760742188, -13.267615318298226 ], [ -73.718765258789062, -13.267925262451058 ], [ -73.716903686523438, -13.267780303955078 ], [ -73.715766906738224, -13.268215179443246 ], [ -73.711654663085938, -13.268069267272892 ], [ -73.708511352539062, -13.268994331359806 ], [ -73.706817626953068, -13.269046783447209 ], [ -73.705772399902287, -13.268490791320744 ], [ -73.704498291015625, -13.266460418701115 ], [ -73.70257568359375, -13.265165328979492 ], [ -73.700180053710938, -13.264719009399357 ], [ -73.698150634765568, -13.265422821044865 ], [ -73.697372436523381, -13.266087532043457 ], [ -73.697044372558594, -13.267037391662598 ], [ -73.696998596191349, -13.271455764770508 ], [ -73.696586608886719, -13.272251129150391 ], [ -73.695472717285099, -13.273548126220646 ], [ -73.694801330566349, -13.274012565612793 ], [ -73.693572998046818, -13.273164749145508 ], [ -73.692359924316406, -13.273221969604379 ], [ -73.691497802734375, -13.273771286010685 ], [ -73.690055847167855, -13.275343894958382 ], [ -73.689376831054631, -13.275639533996525 ], [ -73.688446044921875, -13.275635719299316 ], [ -73.687660217285099, -13.276299476623535 ], [ -73.687431335449219, -13.276814460754338 ], [ -73.687370300292912, -13.278384208679142 ], [ -73.688079833984375, -13.280217170715275 ], [ -73.688125610351506, -13.280966758727914 ], [ -73.687652587890568, -13.281949043273869 ], [ -73.686691284179631, -13.282242774963322 ], [ -73.684799194335881, -13.282295227050724 ], [ -73.682708740234261, -13.280476570129395 ], [ -73.681930541992131, -13.280130386352539 ], [ -73.68099212646473, -13.280153274536076 ], [ -73.680198669433537, -13.280410766601506 ], [ -73.678657531738281, -13.281768798828125 ], [ -73.678009033203068, -13.283175468444824 ], [ -73.677299499511719, -13.284021377563477 ], [ -73.676208496093693, -13.284548759460449 ], [ -73.674720764160156, -13.284748077392578 ], [ -73.671684265136719, -13.284164428710938 ], [ -73.669090270996094, -13.282685279846191 ], [ -73.665985107421818, -13.281493186950684 ], [ -73.665077209472656, -13.281288146972656 ], [ -73.663818359374943, -13.281563758850041 ], [ -73.662467956542912, -13.283211708068734 ], [ -73.66115570068348, -13.285870552062931 ], [ -73.660926818847656, -13.286935806274357 ], [ -73.66115570068348, -13.288970947265568 ], [ -73.660949707031193, -13.28954982757557 ], [ -73.657615661621037, -13.292975425720158 ], [ -73.656791687011719, -13.293696403503418 ], [ -73.655960083007812, -13.293862342834416 ], [ -73.655105590820312, -13.293729782104492 ], [ -73.652984619140625, -13.292598724365178 ], [ -73.652458190917912, -13.292524337768555 ], [ -73.649986267089787, -13.294761657714844 ], [ -73.647583007812443, -13.296358108520451 ], [ -73.646453857421818, -13.297463417053223 ], [ -73.644630432128849, -13.298403739929142 ], [ -73.642906188964787, -13.298801422119084 ], [ -73.642387390136719, -13.299185752868539 ], [ -73.641769409179631, -13.299997329711857 ], [ -73.641571044921818, -13.301461219787598 ], [ -73.640800476074219, -13.30293083190918 ], [ -73.640045166015568, -13.303621292114201 ], [ -73.6378173828125, -13.304965972900391 ], [ -73.637016296386662, -13.305874824523869 ], [ -73.636482238769531, -13.30960559844965 ], [ -73.636077880859261, -13.310325622558594 ], [ -73.634719848632756, -13.31113338470459 ], [ -73.632453918456918, -13.313055038452092 ], [ -73.630958557128906, -13.313029289245605 ], [ -73.629890441894531, -13.313358306884766 ], [ -73.628265380859375, -13.313385009765568 ], [ -73.626441955566293, -13.315085411071721 ], [ -73.625816345214844, -13.316302299499512 ], [ -73.626457214355469, -13.318012237548828 ], [ -73.626480102539062, -13.319766998291016 ], [ -73.625320434570312, -13.321043014526367 ], [ -73.624717712402287, -13.32124137878418 ], [ -73.622802734374943, -13.320839881896973 ], [ -73.621681213378906, -13.320969581603947 ], [ -73.616950988769531, -13.323176383972168 ], [ -73.615394592285156, -13.323486328125 ], [ -73.614120483398381, -13.323224067687988 ], [ -73.612800598144474, -13.322522163391113 ], [ -73.611618041992188, -13.322832107543945 ], [ -73.610710144042855, -13.323757171630859 ], [ -73.60986328125, -13.325200080871582 ], [ -73.609214782714844, -13.330311775207463 ], [ -73.608329772949219, -13.331274032592717 ], [ -73.607254028320256, -13.331577301025391 ], [ -73.605606079101562, -13.331249237060433 ], [ -73.602195739746037, -13.327715873718262 ], [ -73.600730895996094, -13.327402114868164 ], [ -73.597305297851562, -13.328366279602051 ], [ -73.595664978027344, -13.329724311828556 ], [ -73.590293884277287, -13.337928771972543 ], [ -73.589523315429631, -13.338738441467285 ], [ -73.588455200195256, -13.339301109313908 ], [ -73.587173461914062, -13.339420318603459 ], [ -73.586112976074219, -13.33864688873291 ], [ -73.584945678710881, -13.338332176208496 ], [ -73.583320617675724, -13.337418556213379 ], [ -73.581382751464844, -13.336703300476074 ], [ -73.580635070800724, -13.336764335632324 ], [ -73.579391479492131, -13.33741569519043 ], [ -73.576324462890625, -13.337200164794922 ], [ -73.575172424316406, -13.337807655334473 ], [ -73.573745727539062, -13.338412284851074 ], [ -73.571968078613224, -13.340881347656136 ], [ -73.572082519531136, -13.342528343200684 ], [ -73.573936462402344, -13.346163749694767 ], [ -73.574081420898381, -13.348631858825684 ], [ -73.574409484863281, -13.349881172180176 ], [ -73.57440185546875, -13.351337432861271 ], [ -73.574234008789062, -13.352528572082463 ], [ -73.573066711425781, -13.355317115783691 ], [ -73.573020935058537, -13.356886863708496 ], [ -73.573280334472656, -13.358336448669434 ], [ -73.572990417480469, -13.359933853149414 ], [ -73.572341918945256, -13.361565589904728 ], [ -73.571678161621037, -13.362447738647404 ], [ -73.570777893066406, -13.362933158874512 ], [ -73.569213867187443, -13.362698554992676 ], [ -73.56793212890625, -13.363015174865666 ], [ -73.567001342773381, -13.362993240356445 ], [ -73.565109252929631, -13.363785743713322 ], [ -73.563316345214844, -13.363252639770508 ], [ -73.561363220214844, -13.363177299499398 ], [ -73.560195922851562, -13.363947868347168 ], [ -73.558731079101449, -13.365738868713379 ], [ -73.557350158691406, -13.366299629211426 ], [ -73.555595397949219, -13.365702629089355 ], [ -73.553451538085881, -13.365591049194336 ], [ -73.551025390625, -13.363551139831486 ], [ -73.549957275390511, -13.363192558288574 ], [ -73.545562744140568, -13.363241195678654 ], [ -73.543807983398438, -13.363565444946289 ], [ -73.541984558105469, -13.364665985107422 ], [ -73.541252136230412, -13.366280555725098 ], [ -73.540992736816293, -13.367544174194336 ], [ -73.540176391601562, -13.368993759155273 ], [ -73.539604187011719, -13.370646476745605 ], [ -73.537391662597656, -13.370940208435059 ], [ -73.536094665527287, -13.37200927734375 ], [ -73.534973144531193, -13.372499465942269 ], [ -73.531616210937443, -13.37267875671381 ], [ -73.529647827148324, -13.373526573181152 ], [ -73.528945922851506, -13.375231742858887 ], [ -73.528839111328125, -13.379459381103516 ], [ -73.527679443359375, -13.381458282470703 ], [ -73.527305603027344, -13.383075714111328 ], [ -73.525802612304631, -13.384965896606388 ], [ -73.524185180664006, -13.385687828063965 ], [ -73.522384643554631, -13.387286186218205 ], [ -73.521110534667969, -13.387596130371037 ], [ -73.519989013671818, -13.387434005737248 ], [ -73.517715454101506, -13.386137008666879 ], [ -73.516250610351562, -13.385008811950627 ], [ -73.51381683349598, -13.384344100952148 ], [ -73.511314392089787, -13.383090019226017 ], [ -73.511062622070312, -13.382538795471191 ], [ -73.509918212890625, -13.382612228393555 ], [ -73.506660461425668, -13.384021759033203 ], [ -73.502838134765568, -13.387407302856445 ], [ -73.502372741699105, -13.388199806213322 ], [ -73.500946044921875, -13.389455795288029 ], [ -73.4996337890625, -13.391374588012638 ], [ -73.499015808105412, -13.392978668212891 ], [ -73.498878479003906, -13.394659042358398 ], [ -73.498367309570199, -13.396159172058049 ], [ -73.496833801269474, -13.398563385009709 ], [ -73.496467590332031, -13.401588439941406 ], [ -73.495353698730469, -13.405487060546875 ], [ -73.494628906249943, -13.406677246093693 ], [ -73.492797851562443, -13.408879280090275 ], [ -73.490592956542969, -13.413666725158635 ], [ -73.490142822265568, -13.415642738342228 ], [ -73.490692138671875, -13.417860984802246 ], [ -73.490440368652287, -13.420706748962402 ], [ -73.488853454589844, -13.423925399780273 ], [ -73.486167907714844, -13.428346633911076 ], [ -73.484146118164006, -13.430438995361328 ], [ -73.483512878417969, -13.430555343627873 ], [ -73.481826782226562, -13.429994583129826 ], [ -73.480674743652344, -13.429958343505746 ], [ -73.480064392089844, -13.430327415466309 ], [ -73.478553771972656, -13.431855201721135 ], [ -73.477027893066406, -13.432277679443359 ], [ -73.475715637207031, -13.431555747985726 ], [ -73.474578857421875, -13.42934513092041 ], [ -73.474014282226506, -13.429015159606934 ], [ -73.472808837890511, -13.428889274597168 ], [ -73.471511840820312, -13.429786682128906 ], [ -73.469017028808594, -13.430594444274846 ], [ -73.467277526855355, -13.432518005371037 ], [ -73.465934753417912, -13.433330535888672 ], [ -73.464553833007812, -13.433098793029728 ], [ -73.462402343749943, -13.433182716369629 ], [ -73.461769104003906, -13.43261814117426 ], [ -73.461151123046818, -13.431178092956543 ], [ -73.460403442382756, -13.430603027343693 ], [ -73.455444335937443, -13.429460525512695 ], [ -73.453598022460938, -13.428810119628793 ], [ -73.450813293457031, -13.428882598876896 ], [ -73.449249267578011, -13.430463790893498 ], [ -73.44879150390625, -13.430459976196232 ], [ -73.447410583496037, -13.431221008300781 ], [ -73.445442199707031, -13.431270599365178 ], [ -73.443252563476562, -13.430761337280217 ], [ -73.441085815429688, -13.429509162902832 ], [ -73.438766479492188, -13.429684638976994 ], [ -73.436500549316406, -13.431524276733342 ], [ -73.434066772460881, -13.432692527770939 ], [ -73.433883666992131, -13.434436798095589 ], [ -73.434165954589787, -13.435676574706918 ], [ -73.433670043945256, -13.436342239379883 ], [ -73.432716369628849, -13.437114715576172 ], [ -73.430702209472656, -13.437498092651367 ], [ -73.429298400878849, -13.43759822845459 ], [ -73.428291320800781, -13.437355995178223 ], [ -73.426536560058537, -13.435853958129883 ], [ -73.425971984863224, -13.435751914977914 ], [ -73.425445556640625, -13.435919761657658 ], [ -73.423736572265625, -13.437226295471078 ], [ -73.422271728515625, -13.437429428100529 ], [ -73.421356201171875, -13.437241554260254 ], [ -73.420539855956974, -13.436783790588379 ], [ -73.419456481933594, -13.435412406921387 ], [ -73.418472290039062, -13.434709548950195 ], [ -73.415855407714787, -13.434883117675724 ], [ -73.415145874023438, -13.435440063476562 ], [ -73.414169311523438, -13.435712814330998 ], [ -73.413490295410043, -13.436496734619141 ], [ -73.413284301757756, -13.43690109252924 ], [ -73.413215637207031, -13.438392639160156 ], [ -73.412887573242131, -13.438923835754338 ], [ -73.410690307617131, -13.44080734252924 ], [ -73.408599853515568, -13.443144798278809 ], [ -73.407875061035156, -13.443573951721191 ], [ -73.407150268554688, -13.443688392639103 ], [ -73.405677795410156, -13.443416595458984 ], [ -73.404571533203125, -13.442703247070256 ], [ -73.404235839843636, -13.442258834838867 ], [ -73.401733398437443, -13.441230773925781 ], [ -73.400894165039006, -13.441205978393555 ], [ -73.400497436523381, -13.440969467162972 ], [ -73.39947509765625, -13.441080093383789 ], [ -73.397590637207031, -13.440381050109863 ], [ -73.397247314453068, -13.439964294433537 ], [ -73.394859313964787, -13.439433097839299 ], [ -73.393463134765511, -13.439533233642578 ], [ -73.392509460449105, -13.439192771911621 ], [ -73.389511108398438, -13.439282417297363 ], [ -73.387710571289006, -13.440056800842228 ], [ -73.386611938476562, -13.440284729003906 ], [ -73.380706787109375, -13.440155029296818 ], [ -73.37615966796875, -13.440686225891113 ], [ -73.373886108398381, -13.441160202026254 ], [ -73.372520446777344, -13.441829681396484 ], [ -73.3719482421875, -13.441862106323242 ], [ -73.371322631835881, -13.44147872924799 ], [ -73.370948791503849, -13.440906524658146 ], [ -73.370903015136719, -13.438880920410156 ], [ -73.370437622070312, -13.437288284301758 ], [ -73.369598388671818, -13.436576843261719 ], [ -73.368080139160099, -13.435788154601994 ], [ -73.365653991699219, -13.435622215270939 ], [ -73.362983703613281, -13.436100959777832 ], [ -73.360641479492131, -13.436112403869629 ], [ -73.358901977539006, -13.435729026794377 ], [ -73.356086730957031, -13.435612678527832 ], [ -73.353446960449219, -13.434664726257267 ], [ -73.351188659667912, -13.434623718261662 ], [ -73.349960327148381, -13.43525505065918 ], [ -73.348640441894418, -13.438790321350098 ], [ -73.347648620605412, -13.43976974487299 ], [ -73.345718383789062, -13.440725326538086 ], [ -73.340354919433594, -13.442234039306584 ], [ -73.339439392089844, -13.442680358886719 ], [ -73.338249206542969, -13.443902015685921 ], [ -73.337425231933594, -13.445351600646973 ], [ -73.337150573730469, -13.446606636047363 ], [ -73.338623046874886, -13.449372291564941 ], [ -73.338836669921875, -13.450343132018929 ], [ -73.338043212890568, -13.453291893005314 ], [ -73.336845397949219, -13.45551586151123 ], [ -73.334762573242188, -13.456515312194767 ], [ -73.328201293945256, -13.456743240356445 ], [ -73.32598876953125, -13.456366539001465 ], [ -73.323280334472656, -13.45530891418457 ], [ -73.321846008300781, -13.45429515838623 ], [ -73.321388244628906, -13.454184532165527 ], [ -73.320312499999886, -13.452832221984806 ], [ -73.318984985351562, -13.450192451476994 ], [ -73.318168640136719, -13.446994781494084 ], [ -73.317253112792912, -13.445958137512207 ], [ -73.316505432128906, -13.445882797241211 ], [ -73.314468383789006, -13.446988105773926 ], [ -73.311988830566349, -13.447125434875431 ], [ -73.310523986816406, -13.44749641418457 ], [ -73.309616088867131, -13.448266983032227 ], [ -73.308052062988281, -13.4505615234375 ], [ -73.306083679199162, -13.451986312866211 ], [ -73.303138732910099, -13.453166961669922 ], [ -73.299819946289062, -13.453841209411564 ], [ -73.297500610351506, -13.45585823059082 ], [ -73.296661376953011, -13.456287384033203 ], [ -73.294044494628906, -13.456332206726017 ], [ -73.291702270507699, -13.456109046935921 ], [ -73.288558959960824, -13.455228805541992 ], [ -73.286247253417912, -13.455582618713379 ], [ -73.284133911132756, -13.457240104675293 ], [ -73.281547546386719, -13.457998275756836 ], [ -73.279792785644531, -13.459650993347111 ], [ -73.278373718261719, -13.460547447204476 ], [ -73.2750244140625, -13.460849761962834 ], [ -73.273338317871094, -13.46295261383051 ], [ -73.272499084472599, -13.463668823242188 ], [ -73.267631530761719, -13.465859413146973 ], [ -73.266410827636662, -13.466846466064396 ], [ -73.26495361328125, -13.46746826171875 ], [ -73.263656616210881, -13.467719078063965 ], [ -73.262641906738281, -13.467622756958008 ], [ -73.260490417480412, -13.4666233062743 ], [ -73.258255004882812, -13.46638107299799 ], [ -73.255195617675781, -13.465211868286133 ], [ -73.253707885742188, -13.465437889099121 ], [ -73.251434326171818, -13.465357780456543 ], [ -73.250335693359375, -13.466689109802246 ], [ -73.249229431152287, -13.468843460083008 ], [ -73.246879577636605, -13.47245979309082 ], [ -73.245590209960938, -13.473542213439885 ], [ -73.244987487792969, -13.473780632018986 ], [ -73.242919921875, -13.475664138793888 ], [ -73.240753173828068, -13.476518630981388 ], [ -73.240295410156193, -13.476290702819824 ], [ -73.237113952636719, -13.476267814636174 ], [ -73.236854553222599, -13.475893974304142 ], [ -73.236320495605469, -13.475701332092285 ], [ -73.236053466796875, -13.475329399108773 ], [ -73.231239318847543, -13.471958160400391 ], [ -73.228263854980412, -13.468648910522461 ], [ -73.227531433105469, -13.468299865722656 ], [ -73.226089477538949, -13.467105865478516 ], [ -73.224197387695312, -13.464715003967285 ], [ -73.224006652832031, -13.463727951049748 ], [ -73.224067687988224, -13.462158203124943 ], [ -73.225006103515568, -13.459659576416016 ], [ -73.225402832031193, -13.456833839416504 ], [ -73.227638244628906, -13.45333290100092 ], [ -73.227981567382756, -13.450226783752441 ], [ -73.227157592773438, -13.448954582214355 ], [ -73.223556518554688, -13.445605278015137 ], [ -73.222854614257812, -13.444107055664062 ], [ -73.221923828125, -13.442834854125977 ], [ -73.220657348632699, -13.439412117004338 ], [ -73.220062255859318, -13.438359260559025 ], [ -73.216560363769531, -13.435171127319336 ], [ -73.215042114257812, -13.433279037475586 ], [ -73.214904785156193, -13.432483673095703 ], [ -73.215065002441406, -13.43035888671875 ], [ -73.214683532714844, -13.428577423095703 ], [ -73.215171813964844, -13.42381572723383 ], [ -73.215568542480412, -13.422690391540527 ], [ -73.215644836425781, -13.419282913208008 ], [ -73.214927673339787, -13.418689727783146 ], [ -73.213867187499943, -13.41706466674799 ], [ -73.211494445800724, -13.414437294006234 ], [ -73.21038818359375, -13.413586616516113 ], [ -73.209144592285156, -13.413190841674748 ], [ -73.206413269042912, -13.413297653198185 ], [ -73.202545166015625, -13.41515064239502 ], [ -73.198623657226449, -13.416069030761719 ], [ -73.193359374999943, -13.416042327880859 ], [ -73.192337036132812, -13.416641235351562 ], [ -73.191398620605469, -13.417790412902832 ], [ -73.191413879394531, -13.419155120849553 ], [ -73.193046569824219, -13.421714782714844 ], [ -73.194816589355469, -13.423328399658203 ], [ -73.195045471191406, -13.424043655395508 ], [ -73.195610046386719, -13.424789428710881 ], [ -73.195602416992188, -13.426803588867131 ], [ -73.195037841796875, -13.427847862243652 ], [ -73.193504333496094, -13.428651809692326 ], [ -73.190795898437443, -13.429643630981445 ], [ -73.189399719238281, -13.431153297424316 ], [ -73.188583374023381, -13.432429313659668 ], [ -73.188529968261719, -13.435094833374023 ], [ -73.189476013183594, -13.437588691711369 ], [ -73.189567565917855, -13.439433097839299 ], [ -73.190162658691406, -13.440674781799316 ], [ -73.190025329589787, -13.441757202148381 ], [ -73.189399719238281, -13.442307472229004 ], [ -73.186599731445256, -13.443631172180176 ], [ -73.185340881347599, -13.444589614868107 ], [ -73.183929443359318, -13.446304321289062 ], [ -73.182395935058537, -13.449052810668888 ], [ -73.180000305175724, -13.451204299926758 ], [ -73.174392700195256, -13.452165603637695 ], [ -73.172607421875, -13.452216148376408 ], [ -73.171157836913949, -13.451881408691349 ], [ -73.170082092285099, -13.450482368469125 ], [ -73.16754150390625, -13.448032379150391 ], [ -73.166580200195199, -13.446784973144531 ], [ -73.165924072265625, -13.445481300354004 ], [ -73.163955688476562, -13.443368911743164 ], [ -73.163772583007812, -13.441488265991211 ], [ -73.162887573242188, -13.438669204711857 ], [ -73.161468505859375, -13.436962127685547 ], [ -73.160476684570199, -13.436492919921875 ], [ -73.158622741699219, -13.436135292053223 ], [ -73.156883239746094, -13.436375617980957 ], [ -73.154632568359318, -13.436223983764648 ], [ -73.153755187988281, -13.435899734497013 ], [ -73.153190612792969, -13.4353990554809 ], [ -73.153121948242131, -13.433474540710449 ], [ -73.153526306152344, -13.431875228881779 ], [ -73.153579711914006, -13.430502891540414 ], [ -73.155242919921875, -13.426421165466309 ], [ -73.155006408691349, -13.424674987792912 ], [ -73.153884887695256, -13.422879219055176 ], [ -73.151603698730412, -13.421632766723633 ], [ -73.149559020996094, -13.420025825500431 ], [ -73.147689819335881, -13.420130729675293 ], [ -73.14678955078125, -13.420909881591797 ], [ -73.146102905273438, -13.422477722167969 ], [ -73.144546508789006, -13.424328804016056 ], [ -73.144523620605412, -13.42634105682373 ], [ -73.143829345703125, -13.427720069885254 ], [ -73.142936706542969, -13.428553581237793 ], [ -73.140892028808537, -13.429443359374943 ], [ -73.139007568359318, -13.430822372436523 ], [ -73.137557983398381, -13.433151245117188 ], [ -73.135704040527344, -13.435468673706055 ], [ -73.135154724121094, -13.435817718505859 ], [ -73.134040832519474, -13.436016082763672 ], [ -73.133415222167969, -13.436445236206055 ], [ -73.132736206054688, -13.438907623290959 ], [ -73.132133483886662, -13.439736366271973 ], [ -73.130722045898324, -13.44046688079834 ], [ -73.129364013671818, -13.440773010253906 ], [ -73.124328613281193, -13.439958572387695 ], [ -73.121742248535099, -13.438880920410156 ], [ -73.121223449707031, -13.438470840454045 ], [ -73.120773315429631, -13.437887191772404 ], [ -73.120338439941406, -13.43609619140625 ], [ -73.119407653808594, -13.43505859375 ], [ -73.117912292480412, -13.434659957885685 ], [ -73.114799499511605, -13.434906005859318 ], [ -73.11376953125, -13.435624122619629 ], [ -73.112297058105412, -13.437690734863281 ], [ -73.111061096191349, -13.442896842956486 ], [ -73.109619140624943, -13.445676803588867 ], [ -73.108680725097599, -13.448145866393929 ], [ -73.107429504394474, -13.448752403259277 ], [ -73.101837158203125, -13.449134826660156 ], [ -73.100097656249943, -13.448752403259277 ], [ -73.097846984863281, -13.447804450988713 ], [ -73.095123291015568, -13.445820808410645 ], [ -73.093620300292912, -13.444300651550236 ], [ -73.092315673828125, -13.443575859069824 ], [ -73.091484069824219, -13.443670272827148 ], [ -73.090187072753849, -13.444743156433105 ], [ -73.08966064453125, -13.4449205398559 ], [ -73.084815979003849, -13.444405555725098 ], [ -73.079345703125, -13.443405151367074 ], [ -73.078231811523438, -13.442818641662541 ], [ -73.075866699218693, -13.440296173095703 ], [ -73.073593139648381, -13.43940258026123 ], [ -73.071784973144418, -13.438097000122013 ], [ -73.070846557617188, -13.438026428222599 ], [ -73.068145751953068, -13.438792228698674 ], [ -73.067398071288949, -13.438749313354435 ], [ -73.064796447753849, -13.437511444091797 ], [ -73.06256103515625, -13.435161590576172 ], [ -73.061653137206974, -13.432173728942871 ], [ -73.05877685546875, -13.42918586730957 ], [ -73.056266784667969, -13.423862457275391 ], [ -73.054359436035156, -13.421839714050293 ], [ -73.053382873535043, -13.420168876647892 ], [ -73.051086425781193, -13.417620658874455 ], [ -73.050834655761719, -13.416924476623535 ], [ -73.050697326660099, -13.414445877075138 ], [ -73.048751831054688, -13.412640571594238 ], [ -73.047073364257756, -13.412628173828125 ], [ -73.044662475585938, -13.41435527801508 ], [ -73.043022155761719, -13.415034294128361 ], [ -73.041442871093693, -13.414788246154728 ], [ -73.0396728515625, -13.413982391357422 ], [ -73.038078308105469, -13.413904190063477 ], [ -73.036888122558594, -13.414140701293888 ], [ -73.036155700683594, -13.41455078125 ], [ -73.035690307617188, -13.415242195129395 ], [ -73.034156799316406, -13.416584014892521 ], [ -73.032417297363281, -13.419194221496525 ], [ -73.031028747558537, -13.420772552490178 ], [ -73.027671813964844, -13.423113822937012 ], [ -73.026542663574219, -13.42420768737793 ], [ -73.024955749511662, -13.425171852111816 ], [ -73.022468566894474, -13.426263809204045 ], [ -73.0206298828125, -13.42675590515131 ], [ -73.019371032714844, -13.426673889160156 ], [ -73.018623352050781, -13.42606258392334 ], [ -73.017822265625, -13.424310684204102 ], [ -73.016799926757812, -13.42335319519043 ], [ -73.012893676757812, -13.423105239868107 ], [ -73.011268615722656, -13.422370910644531 ], [ -73.010101318359375, -13.421449661254883 ], [ -73.009147644042969, -13.419660568237305 ], [ -73.008544921874943, -13.41622161865223 ], [ -73.007926940917969, -13.414491653442383 ], [ -73.007034301757699, -13.41297435760498 ], [ -73.005050659179688, -13.410736083984375 ], [ -73.004127502441406, -13.410186767578068 ], [ -73.00250244140625, -13.410019874572697 ], [ -73.000564575195312, -13.410592079162541 ], [ -73.000213623046875, -13.410516738891545 ], [ -72.997703552246094, -13.407777786254826 ], [ -72.996070861816406, -13.40508842468256 ], [ -72.995254516601562, -13.40418624877924 ], [ -72.994598388671818, -13.403847694396859 ], [ -72.993072509765568, -13.403855323791504 ], [ -72.992240905761662, -13.403576850891113 ], [ -72.991363525390568, -13.40234184265131 ], [ -72.991195678710881, -13.399301528930664 ], [ -72.990638732910156, -13.398233413696232 ], [ -72.98504638671875, -13.394283294677678 ], [ -72.984024047851506, -13.393325805664006 ], [ -72.98366546630848, -13.392783164978027 ], [ -72.983558654785099, -13.392059326171818 ], [ -72.983657836914006, -13.391035079956055 ], [ -72.983993530273438, -13.39047908782959 ], [ -72.983879089355469, -13.389664649963379 ], [ -72.983345031738224, -13.389137268066293 ], [ -72.981903076171875, -13.388655662536621 ], [ -72.980537414550781, -13.387278556823674 ], [ -72.979042053222656, -13.387304306030273 ], [ -72.976097106933537, -13.388519287109375 ], [ -72.97186279296875, -13.389206886291504 ], [ -72.970268249511719, -13.389193534851017 ], [ -72.968246459960938, -13.388860702514648 ], [ -72.965316772460938, -13.387210845947209 ], [ -72.964035034179688, -13.386930465698242 ], [ -72.959770202636719, -13.388521194457894 ], [ -72.957069396972656, -13.388375282287541 ], [ -72.955528259277287, -13.388778686523438 ], [ -72.954124450683594, -13.38885593414301 ], [ -72.952507019042969, -13.388427734375 ], [ -72.948631286621037, -13.386371612548714 ], [ -72.945289611816406, -13.385213851928711 ], [ -72.942878723144531, -13.384852409362793 ], [ -72.94000244140625, -13.385107040405273 ], [ -72.938446044921818, -13.384961128234806 ], [ -72.930488586425781, -13.38261604309082 ], [ -72.928352355956918, -13.382411003112736 ], [ -72.926506042480412, -13.382657051086369 ], [ -72.9224853515625, -13.384413719177189 ], [ -72.920478820800781, -13.384856224060059 ], [ -72.91805267333973, -13.384756088256836 ], [ -72.915992736816406, -13.38414287567133 ], [ -72.91500091552723, -13.383629798889046 ], [ -72.913421630859375, -13.383605003356934 ], [ -72.912666320800781, -13.384667396545353 ], [ -72.912628173828125, -13.387504577636662 ], [ -72.911590576171875, -13.388173103332463 ], [ -72.910263061523438, -13.388648986816349 ], [ -72.908233642578011, -13.388435363769474 ], [ -72.905998229980469, -13.386898994445801 ], [ -72.905387878417969, -13.386702537536564 ], [ -72.904548645019531, -13.386787414550781 ], [ -72.903343200683537, -13.387516021728402 ], [ -72.902442932128906, -13.387762069702148 ], [ -72.900764465331974, -13.387922286987248 ], [ -72.900215148925724, -13.387600898742619 ], [ -72.899559020996094, -13.387702941894474 ], [ -72.899208068847656, -13.387988090515137 ], [ -72.899055480956974, -13.388421058654785 ], [ -72.8994140625, -13.389165878295842 ], [ -72.899383544921875, -13.389824867248478 ], [ -72.897483825683594, -13.391536712646484 ], [ -72.897132873535099, -13.394478797912541 ], [ -72.896308898925668, -13.396532058715707 ], [ -72.893951416015625, -13.398888587951546 ], [ -72.893066406249886, -13.400826454162598 ], [ -72.893043518066349, -13.402017593383789 ], [ -72.893562316894531, -13.403215408325195 ], [ -72.894081115722599, -13.405370712280217 ], [ -72.894012451171818, -13.407855033874512 ], [ -72.89422607421875, -13.408750534057617 ], [ -72.894050598144531, -13.409562110900822 ], [ -72.8936767578125, -13.409975051879769 ], [ -72.892204284667912, -13.410767555236816 ], [ -72.891395568847656, -13.41154670715332 ], [ -72.890922546386719, -13.412338256835938 ], [ -72.890365600585881, -13.414105415344238 ], [ -72.889320373535099, -13.415306091308594 ], [ -72.887680053710938, -13.415752410888672 ], [ -72.886306762695312, -13.416536331176701 ], [ -72.884254455566406, -13.416547775268498 ], [ -72.881813049316293, -13.413887977600098 ], [ -72.880615234375, -13.413653373718262 ], [ -72.879791259765568, -13.41380786895752 ], [ -72.878059387206974, -13.415221214294377 ], [ -72.876754760742131, -13.415716171264648 ], [ -72.868156433105412, -13.415761947631779 ], [ -72.866081237792855, -13.416629791259766 ], [ -72.862380981445312, -13.419850349426213 ], [ -72.860275268554688, -13.420645713806096 ], [ -72.85943603515625, -13.42073917388916 ], [ -72.858795166015568, -13.421121597289982 ], [ -72.856254577636605, -13.421217918395939 ], [ -72.85455322265625, -13.421728134155273 ], [ -72.851264953613224, -13.424139976501465 ], [ -72.849678039550668, -13.424919128417969 ], [ -72.845596313476562, -13.425374984741211 ], [ -72.842422485351506, -13.426460266113281 ], [ -72.840576171875, -13.426117897033691 ], [ -72.838478088378906, -13.425312995910645 ], [ -72.835533142089787, -13.422631263732853 ], [ -72.832214355468693, -13.420622825622559 ], [ -72.831161499023381, -13.420796394348088 ], [ -72.828002929687443, -13.423390388488713 ], [ -72.826293945312443, -13.424369812011719 ], [ -72.823127746581974, -13.425153732299805 ], [ -72.819145202636662, -13.425717353820801 ], [ -72.817939758300781, -13.425506591796875 ], [ -72.816825866699219, -13.425009727478027 ], [ -72.813735961914062, -13.42218017578125 ], [ -72.810859680175668, -13.421513557434082 ], [ -72.8087158203125, -13.421334266662598 ], [ -72.806831359863224, -13.422528266906681 ], [ -72.806221008300781, -13.422695159912053 ], [ -72.802291870117188, -13.421213150024357 ], [ -72.799774169921818, -13.421219825744629 ], [ -72.798103332519531, -13.421818733215332 ], [ -72.794754028320312, -13.424899101257324 ], [ -72.794410705566406, -13.426793098449707 ], [ -72.795356750488281, -13.430742263793888 ], [ -72.800094604492188, -13.444435119628849 ], [ -72.800750732421761, -13.447504997253418 ], [ -72.800735473632756, -13.452013015747013 ], [ -72.799751281738281, -13.453993797302246 ], [ -72.798141479492131, -13.455407142639103 ], [ -72.793777465820256, -13.458250999450627 ], [ -72.791969299316349, -13.459004402160645 ], [ -72.787681579589787, -13.459154129028263 ], [ -72.785949707031193, -13.458662033081055 ], [ -72.784156799316293, -13.457338333129826 ], [ -72.78072357177723, -13.454069137573242 ], [ -72.778808593749943, -13.450484275817871 ], [ -72.777267456054631, -13.448086738586369 ], [ -72.775413513183594, -13.44600772857666 ], [ -72.768699645996037, -13.446435928344727 ], [ -72.764945983886719, -13.447181701660099 ], [ -72.762832641601562, -13.448175430297852 ], [ -72.759735107421818, -13.451120376586914 ], [ -72.757553100585824, -13.454001426696777 ], [ -72.756401062011662, -13.456312179565373 ], [ -72.754257202148438, -13.462999343871957 ], [ -72.753486633300781, -13.467435836791992 ], [ -72.753433227539006, -13.468909263610783 ], [ -72.752922058105469, -13.470195770263615 ], [ -72.752609252929688, -13.47183704376215 ], [ -72.751289367675781, -13.473788261413517 ], [ -72.747932434082031, -13.474931716918945 ], [ -72.741104125976562, -13.475062370300293 ], [ -72.738960266113281, -13.475646018981934 ], [ -72.737350463867188, -13.476600646972656 ], [ -72.735237121581918, -13.478549003601017 ], [ -72.732208251953125, -13.48181056976307 ], [ -72.730545043945256, -13.483297348022404 ], [ -72.728820800781193, -13.484401702880803 ], [ -72.727714538574219, -13.484573364257756 ], [ -72.726806640624943, -13.484411239624023 ], [ -72.725128173828011, -13.483310699462891 ], [ -72.723419189453125, -13.48161506652832 ], [ -72.722694396972656, -13.4811754226684 ], [ -72.721389770507756, -13.48112678527832 ], [ -72.718978881835938, -13.482107162475586 ], [ -72.717109680175724, -13.483779907226562 ], [ -72.713912963867188, -13.48865699768055 ], [ -72.711547851562443, -13.491265296935978 ], [ -72.709281921386662, -13.492546081542969 ], [ -72.70442962646473, -13.493892669677734 ], [ -72.702552795410156, -13.495818138122502 ], [ -72.701187133788949, -13.498108863830566 ], [ -72.700141906738168, -13.500638961791935 ], [ -72.702293395996094, -13.502159118652344 ], [ -72.70245361328125, -13.503390312194824 ], [ -72.702125549316349, -13.504135131835881 ], [ -72.700767517089844, -13.50582218170166 ], [ -72.698921203613281, -13.508698463439941 ], [ -72.695907592773381, -13.510340690612793 ], [ -72.693138122558594, -13.510984420776367 ], [ -72.690170288085938, -13.512166976928711 ], [ -72.689064025878849, -13.51280689239502 ], [ -72.687202453613281, -13.514389038085938 ], [ -72.685867309570312, -13.514992713928223 ], [ -72.684242248535156, -13.515230178832951 ], [ -72.683006286621094, -13.514892578124943 ], [ -72.681808471679631, -13.514874458312988 ], [ -72.680297851562443, -13.515156745910645 ], [ -72.678619384765625, -13.516560554504338 ], [ -72.67610931396473, -13.520087242126465 ], [ -72.673789978027287, -13.522108078002873 ], [ -72.672401428222656, -13.522250175475961 ], [ -72.671417236328068, -13.521697998046761 ], [ -72.670303344726562, -13.520259857177678 ], [ -72.669967651367131, -13.519243240356388 ], [ -72.669403076171818, -13.518437385559082 ], [ -72.669265747070312, -13.517721176147404 ], [ -72.668556213378849, -13.516855239868107 ], [ -72.662719726562443, -13.516393661498967 ], [ -72.659599304199162, -13.514874458312988 ], [ -72.657768249511662, -13.513413429260197 ], [ -72.656661987304688, -13.5134019851684 ], [ -72.655754089355469, -13.513771057128849 ], [ -72.653495788574162, -13.516707420349064 ], [ -72.651954650878849, -13.517675399780273 ], [ -72.649879455566293, -13.518351554870605 ], [ -72.648887634277344, -13.519157409667969 ], [ -72.648803710937443, -13.519941329956055 ], [ -72.649177551269474, -13.521327018737793 ], [ -72.649307250976449, -13.523208618164006 ], [ -72.649711608886719, -13.52410697937006 ], [ -72.6494140625, -13.52540397644043 ], [ -72.648704528808537, -13.526347160339242 ], [ -72.645317077636719, -13.528654098510742 ], [ -72.644073486328125, -13.52984619140625 ], [ -72.643234252929688, -13.531535148620605 ], [ -72.643119812011719, -13.535202026367188 ], [ -72.642807006835881, -13.536464691162053 ], [ -72.640678405761719, -13.539265632629338 ], [ -72.637672424316293, -13.542000770568791 ], [ -72.636253356933594, -13.542566299438477 ], [ -72.630577087402344, -13.542492866516056 ], [ -72.627616882324219, -13.543106079101562 ], [ -72.624862670898381, -13.543325424194336 ], [ -72.619659423828125, -13.545316696166992 ], [ -72.616790771484261, -13.545948028564453 ], [ -72.615318298339844, -13.546867370605412 ], [ -72.611740112304688, -13.548484802246037 ], [ -72.606483459472599, -13.55322265625 ], [ -72.601974487304631, -13.55629825592041 ], [ -72.599845886230469, -13.557135581970158 ], [ -72.598686218261719, -13.557295799255371 ], [ -72.594657897949162, -13.558512687683105 ], [ -72.592658996581918, -13.55882740020752 ], [ -72.588699340820312, -13.560272216796875 ], [ -72.586738586425724, -13.560695648193303 ], [ -72.577774047851506, -13.561421394348145 ], [ -72.572807312011662, -13.562241554260197 ], [ -72.566024780273381, -13.562273025512638 ], [ -72.56341552734375, -13.562059402465763 ], [ -72.551185607910156, -13.562562942504769 ], [ -72.548408508300668, -13.562932014465332 ], [ -72.535972595214844, -13.563758850097543 ], [ -72.532630920410156, -13.56433200836176 ], [ -72.528610229492188, -13.564635276794434 ], [ -72.526588439941406, -13.565394401550293 ], [ -72.524581909179688, -13.565614700317269 ], [ -72.523635864257812, -13.566147804260197 ], [ -72.521598815917912, -13.566679000854492 ], [ -72.520912170410099, -13.567116737365609 ], [ -72.520439147949162, -13.567787170410156 ], [ -72.520034790039062, -13.570493698120117 ], [ -72.519462585449219, -13.571400642394963 ], [ -72.514358520507756, -13.574187278747502 ], [ -72.510040283203068, -13.575001716613713 ], [ -72.505531311035156, -13.574253082275391 ], [ -72.504158020019418, -13.574320793151742 ], [ -72.503074645996037, -13.57496070861805 ], [ -72.500694274902287, -13.577347755432129 ], [ -72.499427795410156, -13.578195571899357 ], [ -72.498252868652344, -13.578490257263127 ], [ -72.496124267578068, -13.578313827514648 ], [ -72.494850158691406, -13.578869819641113 ], [ -72.492820739746094, -13.581171989440861 ], [ -72.492027282714787, -13.582427978515568 ], [ -72.491409301757812, -13.584508895874023 ], [ -72.491416931152344, -13.587754249572754 ], [ -72.491142272949219, -13.589359283447266 ], [ -72.490570068359375, -13.590409278869629 ], [ -72.489402770996094, -13.591391563415414 ], [ -72.487472534179574, -13.591788291931152 ], [ -72.486396789550724, -13.591739654541016 ], [ -72.483955383300781, -13.590007781982422 ], [ -72.480819702148438, -13.589625358581543 ], [ -72.477699279785156, -13.588247299194336 ], [ -72.473297119140625, -13.58856296539301 ], [ -72.47100830078125, -13.587611198425293 ], [ -72.47021484375, -13.587491989135742 ], [ -72.466934204101506, -13.58793926239008 ], [ -72.464454650878849, -13.587931632995549 ], [ -72.463737487792969, -13.588275909423828 ], [ -72.462554931640568, -13.589782714843693 ], [ -72.460113525390625, -13.589712142944279 ], [ -72.459724426269531, -13.590612411499023 ], [ -72.459587097167912, -13.593042373657227 ], [ -72.459091186523438, -13.594175338745117 ], [ -72.457054138183594, -13.596186637878418 ], [ -72.454925537109318, -13.597908020019531 ], [ -72.452781677246094, -13.598734855651742 ], [ -72.450531005859318, -13.600294113159123 ], [ -72.446891784667969, -13.601035118103027 ], [ -72.445335388183594, -13.601558685302734 ], [ -72.442848205566406, -13.602717399597111 ], [ -72.440521240234318, -13.604174613952637 ], [ -72.437820434570312, -13.605266571044922 ], [ -72.436080932617188, -13.605303764343205 ], [ -72.430740356445312, -13.604498863220215 ], [ -72.429702758789062, -13.604703903198185 ], [ -72.42706298828125, -13.606230735778752 ], [ -72.424972534179631, -13.605541229248047 ], [ -72.423568725585881, -13.605426788330021 ], [ -72.421943664550724, -13.605608940124512 ], [ -72.421257019042912, -13.606224060058594 ], [ -72.419296264648438, -13.609764099121094 ], [ -72.418075561523438, -13.615118026733398 ], [ -72.415573120117188, -13.616256713867188 ], [ -72.414199829101506, -13.61738109588623 ], [ -72.409751892089844, -13.620062828063908 ], [ -72.407676696777344, -13.622200965881348 ], [ -72.405586242675781, -13.623750686645508 ], [ -72.404510498046875, -13.625608444213867 ], [ -72.403724670410099, -13.628888130187931 ], [ -72.40301513671875, -13.63048076629633 ], [ -72.401039123535099, -13.631941795349121 ], [ -72.399711608886662, -13.633552551269474 ], [ -72.399818420410099, -13.636246681213322 ], [ -72.399215698242188, -13.639285087585449 ], [ -72.39984130859375, -13.64199256896967 ], [ -72.399452209472656, -13.643145561218205 ], [ -72.398345947265625, -13.644832611083984 ], [ -72.39825439453125, -13.645906448364201 ], [ -72.398536682128906, -13.647093772888184 ], [ -72.39996337890625, -13.648726463317871 ], [ -72.403884887695312, -13.651900291442871 ], [ -72.404365539550781, -13.653008460998478 ], [ -72.404464721679631, -13.654623985290527 ], [ -72.404243469238281, -13.656222343444767 ], [ -72.403472900390625, -13.658246040344238 ], [ -72.402656555175724, -13.659330368041935 ], [ -72.398330688476562, -13.661370277404785 ], [ -72.395095825195312, -13.661990165710449 ], [ -72.390998840332031, -13.663597106933537 ], [ -72.389144897460824, -13.664030075073185 ], [ -72.383346557617188, -13.663761138915959 ], [ -72.382225036621094, -13.663326263427734 ], [ -72.379669189453068, -13.661680221557617 ], [ -72.378852844238281, -13.661590576171818 ], [ -72.37420654296875, -13.66420841217041 ], [ -72.370948791503906, -13.665302276611271 ], [ -72.369422912597656, -13.666424751281738 ], [ -72.368186950683594, -13.667713165283203 ], [ -72.3662109375, -13.670402526855469 ], [ -72.363426208496094, -13.673190116882267 ], [ -72.361846923828068, -13.675710678100586 ], [ -72.361221313476562, -13.676237106323185 ], [ -72.360206604003906, -13.676660537719727 ], [ -72.354743957519531, -13.681771278381348 ], [ -72.352874755859318, -13.682247161865234 ], [ -72.351257324218693, -13.683493614196721 ], [ -72.347625732421818, -13.682650566101017 ], [ -72.346885681152287, -13.682867050170898 ], [ -72.344635009765625, -13.68425464630127 ], [ -72.341964721679688, -13.68390941619873 ], [ -72.341079711913949, -13.684026718139592 ], [ -72.340072631835938, -13.684638023376408 ], [ -72.338966369628849, -13.685727119445744 ], [ -72.337799072265625, -13.687099456787109 ], [ -72.336387634277287, -13.689413070678711 ], [ -72.335411071777344, -13.690361022949219 ], [ -72.333320617675724, -13.691023826599064 ], [ -72.329391479492188, -13.693221092224064 ], [ -72.327651977539062, -13.693693161010629 ], [ -72.324806213378906, -13.694093704223633 ], [ -72.321205139160156, -13.695772171020451 ], [ -72.316352844238224, -13.69725513458252 ], [ -72.315719604492188, -13.697989463806096 ], [ -72.315544128417969, -13.698773384094238 ], [ -72.317031860351506, -13.701950073242188 ], [ -72.317237854003793, -13.70379638671875 ], [ -72.316169738769474, -13.705321311950627 ], [ -72.314941406249943, -13.705883979797363 ], [ -72.312767028808594, -13.707919120788517 ], [ -72.310844421386662, -13.708017349243164 ], [ -72.307594299316349, -13.706582069396973 ], [ -72.304985046386719, -13.706479072570801 ], [ -72.3016357421875, -13.704357147216797 ], [ -72.299095153808537, -13.703824043273926 ], [ -72.298118591308594, -13.703300476074219 ], [ -72.297370910644474, -13.702369689941406 ], [ -72.297126770019531, -13.700316429138184 ], [ -72.297264099121094, -13.699260711669865 ], [ -72.2982177734375, -13.69747352600092 ], [ -72.297996520996094, -13.696422576904297 ], [ -72.297294616699162, -13.695755958557072 ], [ -72.295028686523438, -13.694737434387207 ], [ -72.294158935546761, -13.694114685058537 ], [ -72.292419433593693, -13.69201755523676 ], [ -72.291076660156193, -13.689944267272949 ], [ -72.290313720703068, -13.689373970031681 ], [ -72.288978576660099, -13.689250946044865 ], [ -72.287025451660156, -13.689464569091797 ], [ -72.286323547363224, -13.689890861511174 ], [ -72.284858703613281, -13.690262794494629 ], [ -72.282775878906193, -13.690447807311955 ], [ -72.281723022460938, -13.68964958190918 ], [ -72.28023529052723, -13.687845230102482 ], [ -72.279571533203011, -13.686520576476937 ], [ -72.279197692871094, -13.684798240661621 ], [ -72.278816223144531, -13.684234619140625 ], [ -72.278129577636662, -13.683767318725529 ], [ -72.275390625, -13.683501243591252 ], [ -72.271659851074219, -13.68440055847168 ], [ -72.266319274902344, -13.684936523437443 ], [ -72.265251159667912, -13.684626579284611 ], [ -72.264556884765625, -13.684178352355957 ], [ -72.263137817382756, -13.682499885559025 ], [ -72.262504577636719, -13.682066917419377 ], [ -72.260337829589844, -13.682575225830021 ], [ -72.259040832519474, -13.683411598205566 ], [ -72.258407592773438, -13.684090614318848 ], [ -72.258163452148438, -13.685686111450082 ], [ -72.258811950683594, -13.687024116516113 ], [ -72.257972717285156, -13.688214302062931 ], [ -72.252929687499943, -13.691743850708008 ], [ -72.250175476074162, -13.692960739135742 ], [ -72.248802185058594, -13.693071365356445 ], [ -72.248390197753906, -13.692154884338379 ], [ -72.248756408691349, -13.691138267517033 ], [ -72.248649597167912, -13.690605163574219 ], [ -72.247116088867131, -13.689485549926701 ], [ -72.246803283691406, -13.68817138671875 ], [ -72.246177673339787, -13.687289237976074 ], [ -72.245719909667969, -13.686976432800293 ], [ -72.24517822265625, -13.687079429626465 ], [ -72.244117736816406, -13.688331604003906 ], [ -72.243858337402344, -13.689357757568246 ], [ -72.245193481445312, -13.693311691284066 ], [ -72.245208740234318, -13.695459365844727 ], [ -72.245552062988281, -13.696484565734863 ], [ -72.245246887207031, -13.697674751281625 ], [ -72.243881225585881, -13.698771476745492 ], [ -72.241844177246094, -13.699586868286076 ], [ -72.2410888671875, -13.700183868408203 ], [ -72.238685607910156, -13.700662612915039 ], [ -72.23590087890625, -13.70305347442627 ], [ -72.232627868652287, -13.70402717590332 ], [ -72.231788635253793, -13.705101966857853 ], [ -72.231773376464787, -13.706718444824219 ], [ -72.231056213378906, -13.708753585815373 ], [ -72.230667114257812, -13.711685180664062 ], [ -72.229324340820312, -13.713638305664006 ], [ -72.229118347167855, -13.715657234191895 ], [ -72.229316711425781, -13.716283798217717 ], [ -72.230415344238281, -13.717100143432617 ], [ -72.232528686523381, -13.717692375183105 ], [ -72.233497619628849, -13.718805313110352 ], [ -72.233268737792969, -13.720003128051701 ], [ -72.231277465820256, -13.722585678100529 ], [ -72.230430603027287, -13.722674369811955 ], [ -72.228515624999943, -13.721685409545898 ], [ -72.227302551269474, -13.722330093383789 ], [ -72.225265502929688, -13.724322319030705 ], [ -72.223419189453125, -13.725213050842228 ], [ -72.2205810546875, -13.72570610046381 ], [ -72.219482421874943, -13.725566864013615 ], [ -72.21834564208973, -13.72508430480957 ], [ -72.216827392578125, -13.725068092346191 ], [ -72.215347290039062, -13.72575569152832 ], [ -72.212356567382812, -13.726211547851562 ], [ -72.209762573242074, -13.727725028991699 ], [ -72.206268310546875, -13.728464126586914 ], [ -72.204460144042969, -13.730665206909123 ], [ -72.201416015625, -13.732526779174805 ], [ -72.199066162109318, -13.734387397766056 ], [ -72.198310852050724, -13.735299110412598 ], [ -72.196777343749943, -13.73818206787098 ], [ -72.195831298828068, -13.738974571228027 ], [ -72.193405151367188, -13.740230560302734 ], [ -72.192893981933594, -13.740866661071777 ], [ -72.191329956054631, -13.744009017944336 ], [ -72.189521789550724, -13.745650291442871 ], [ -72.188369750976506, -13.745971679687443 ], [ -72.187118530273438, -13.745976448059082 ], [ -72.184944152831974, -13.745210647583008 ], [ -72.182632446289062, -13.745671272277832 ], [ -72.181838989257812, -13.745635032653809 ], [ -72.180427551269531, -13.745058059692383 ], [ -72.178985595703125, -13.743995666503849 ], [ -72.177757263183594, -13.743754386901799 ], [ -72.173545837402344, -13.745973587036133 ], [ -72.170890808105469, -13.746665000915527 ], [ -72.167861938476506, -13.746794700622559 ], [ -72.166442871093693, -13.747626304626465 ], [ -72.164085388183594, -13.750064849853516 ], [ -72.162666320800781, -13.75219821929926 ], [ -72.162261962890568, -13.753918647766056 ], [ -72.163024902343693, -13.755915641784668 ], [ -72.162643432617131, -13.757499694824219 ], [ -72.159934997558594, -13.759751319885197 ], [ -72.159645080566406, -13.760364532470703 ], [ -72.1595458984375, -13.761446952819824 ], [ -72.158920288085881, -13.762333869933968 ], [ -72.155250549316406, -13.764451026916504 ], [ -72.154235839843693, -13.765387535095215 ], [ -72.153846740722599, -13.76622200012207 ], [ -72.153709411621094, -13.767313957214299 ], [ -72.154556274414062, -13.770285606384221 ], [ -72.154457092285156, -13.771097183227482 ], [ -72.153060913085938, -13.773086547851449 ], [ -72.149131774902344, -13.776853561401254 ], [ -72.147865295410043, -13.779539108276367 ], [ -72.147384643554631, -13.779768943786621 ], [ -72.146392822265625, -13.77972412109375 ], [ -72.144714355468693, -13.77911472320551 ], [ -72.143226623535156, -13.779350280761662 ], [ -72.141334533691406, -13.780150413513184 ], [ -72.138664245605469, -13.782051086425668 ], [ -72.136016845703068, -13.782750129699707 ], [ -72.134811401367188, -13.783351898193303 ], [ -72.134246826171875, -13.783932685852051 ], [ -72.133277893066293, -13.786019325256348 ], [ -72.130165100097656, -13.7901096343993 ], [ -72.130111694335881, -13.791479110717773 ], [ -72.130981445312443, -13.793307304382324 ], [ -72.131095886230469, -13.794896125793457 ], [ -72.130516052246094, -13.795829772949219 ], [ -72.12890625, -13.797489166259709 ], [ -72.127662658691406, -13.800908088684082 ], [ -72.125816345214787, -13.804409027099609 ], [ -72.125534057617131, -13.805543899536076 ], [ -72.125968933105469, -13.807480812072754 ], [ -72.125862121582031, -13.808210372924748 ], [ -72.123184204101562, -13.810745239257756 ], [ -72.122299194335881, -13.813138008117619 ], [ -72.121856689453125, -13.814990997314453 ], [ -72.12188720703125, -13.815950393676701 ], [ -72.120124816894531, -13.817844390869141 ], [ -72.119949340820312, -13.818729400634766 ], [ -72.12005615234375, -13.82105827331543 ], [ -72.119834899902344, -13.821696281433049 ], [ -72.119316101074162, -13.82232475280756 ], [ -72.118400573730355, -13.822647094726506 ], [ -72.115386962890625, -13.821698188781738 ], [ -72.114448547363281, -13.821896553039551 ], [ -72.112838745117131, -13.823890686035099 ], [ -72.111305236816349, -13.826305389404183 ], [ -72.110389709472543, -13.828560829162598 ], [ -72.110145568847656, -13.830146789550781 ], [ -72.108360290527287, -13.832852363586426 ], [ -72.108322143554688, -13.836753845214844 ], [ -72.107215881347599, -13.839224815368596 ], [ -72.106781005859375, -13.841061592102051 ], [ -72.107101440429688, -13.845220565795842 ], [ -72.106605529785156, -13.84923267364502 ], [ -72.106094360351449, -13.850890159606934 ], [ -72.103599548339787, -13.853588104248047 ], [ -72.103767395019531, -13.854114532470646 ], [ -72.104804992675781, -13.855379104614258 ], [ -72.104934692382756, -13.856195449829045 ], [ -72.103439331054688, -13.857741355895939 ], [ -72.1024169921875, -13.860815048217773 ], [ -72.100318908691406, -13.863971710204964 ], [ -72.099006652831974, -13.867927551269531 ], [ -72.097320556640511, -13.86971473693842 ], [ -72.095947265625, -13.872653007507324 ], [ -72.093635559082031, -13.874945640563965 ], [ -72.093498229980412, -13.876028060913029 ], [ -72.093963623046818, -13.876847267150822 ], [ -72.093948364257756, -13.877659797668457 ], [ -72.093276977539062, -13.878517150878906 ], [ -72.09161376953125, -13.879879951477051 ], [ -72.091560363769531, -13.881109237670898 ], [ -72.09255218505848, -13.883612632751465 ], [ -72.0914306640625, -13.885993003845215 ], [ -72.086204528808594, -13.885867118835392 ], [ -72.085319519042969, -13.886524200439453 ], [ -72.084747314453125, -13.887763977050781 ], [ -72.082702636718693, -13.887649536132812 ], [ -72.082054138183537, -13.888174057006836 ], [ -72.081924438476562, -13.888969421386719 ], [ -72.081077575683537, -13.890176773071289 ], [ -72.081634521484375, -13.892992019653263 ], [ -72.081596374511719, -13.893895149230957 ], [ -72.080070495605469, -13.89655876159668 ], [ -72.079833984374943, -13.899374008178654 ], [ -72.080177307128906, -13.900399208068791 ], [ -72.078376770019531, -13.903873443603516 ], [ -72.078247070312386, -13.906689643859806 ], [ -72.077766418456974, -13.907279968261719 ], [ -72.07635498046875, -13.908265113830566 ], [ -72.075668334960881, -13.90972805023182 ], [ -72.073585510253906, -13.91126632690424 ], [ -72.069404602050781, -13.915694236755371 ], [ -72.066146850585938, -13.917942047119084 ], [ -72.064964294433537, -13.918278694152832 ], [ -72.063880920410156, -13.918916702270451 ], [ -72.062637329101562, -13.919977188110295 ], [ -72.06195068359375, -13.921241760253906 ], [ -72.060607910156136, -13.924793243408146 ], [ -72.058952331542912, -13.926931381225529 ], [ -72.058921813964844, -13.928132057189941 ], [ -72.058052062988281, -13.928788185119629 ], [ -72.056373596191349, -13.929409980773869 ], [ -72.055900573730412, -13.929911613464299 ], [ -72.055946350097656, -13.932051658630371 ], [ -72.056327819824219, -13.933058738708439 ], [ -72.056076049804688, -13.934447288513184 ], [ -72.056076049804688, -13.935249328613281 ], [ -72.055145263671818, -13.937199592590332 ], [ -72.055053710937443, -13.938272476196289 ], [ -72.055915832519474, -13.940532684326115 ], [ -72.056373596191349, -13.943182945251408 ], [ -72.057723999023381, -13.945990562438965 ], [ -72.057960510253906, -13.947030067443791 ], [ -72.057762145996094, -13.947951316833439 ], [ -72.056549072265625, -13.950211524963265 ], [ -72.056312561035043, -13.952249526977539 ], [ -72.056571960449162, -13.95296669006342 ], [ -72.057922363281193, -13.95452880859375 ], [ -72.057540893554631, -13.957998275756836 ], [ -72.058448791503906, -13.961804389953613 ], [ -72.058914184570312, -13.962775230407715 ], [ -72.060356140136719, -13.964246749877873 ], [ -72.060615539550781, -13.964837074279785 ], [ -72.059822082519474, -13.966852188110352 ], [ -72.058502197265568, -13.968128204345703 ], [ -72.058135986328125, -13.969279289245605 ], [ -72.057220458984375, -13.970143318176156 ], [ -72.057037353515625, -13.970601081848088 ], [ -72.057296752929688, -13.972230911254826 ], [ -72.058677673339787, -13.974072456359863 ], [ -72.059135437011719, -13.975359916687012 ], [ -72.057952880859375, -13.982921600341797 ], [ -72.058029174804574, -13.984531402587891 ], [ -72.058593749999943, -13.985767364501953 ], [ -72.058677673339787, -13.986715316772461 ], [ -72.056640625, -13.990835189819279 ], [ -72.055259704589787, -13.992535591125431 ], [ -72.054092407226506, -13.995573997497559 ], [ -72.054298400878849, -14.000679016113281 ], [ -72.053810119628849, -14.006598472595158 ], [ -72.053070068359261, -14.008809089660645 ], [ -72.052986145019531, -14.010787010192814 ], [ -72.051773071289062, -14.012118339538517 ], [ -72.051582336425781, -14.01290225982666 ], [ -72.0517578125, -14.013688087463322 ], [ -72.052955627441349, -14.014841079711914 ], [ -72.053230285644474, -14.01536846160883 ], [ -72.053131103515568, -14.016288757324219 ], [ -72.052230834960938, -14.01754188537592 ], [ -72.052040100097656, -14.018525123596191 ], [ -72.052238464355469, -14.019283294677734 ], [ -72.053390502929688, -14.021016120910645 ], [ -72.053527832031193, -14.022189140319824 ], [ -72.05291748046875, -14.024812698364144 ], [ -72.051300048828125, -14.026155471801758 ], [ -72.051124572753906, -14.02707576751709 ], [ -72.051605224609318, -14.029384613037109 ], [ -72.052734375, -14.031924247741699 ], [ -72.05355072021473, -14.03252124786377 ], [ -72.054916381835938, -14.03266716003418 ], [ -72.055946350097656, -14.033085823058968 ], [ -72.056533813476562, -14.033489227294922 ], [ -72.057113647460938, -14.034310340881291 ], [ -72.057350158691349, -14.035350799560433 ], [ -72.056976318359318, -14.037444114685059 ], [ -72.057289123535156, -14.038925170898438 ], [ -72.057998657226506, -14.040081024169865 ], [ -72.059783935546875, -14.042126655578556 ], [ -72.060310363769474, -14.043261528015137 ], [ -72.06203460693348, -14.04487133026123 ], [ -72.062866210937443, -14.046148300170842 ], [ -72.062988281249886, -14.049092292785588 ], [ -72.063819885253849, -14.051460266113224 ], [ -72.062774658203068, -14.054302215576115 ], [ -72.063117980957031, -14.055956840515137 ], [ -72.062881469726506, -14.057914733886662 ], [ -72.063285827636719, -14.058806419372559 ], [ -72.063369750976449, -14.059882164001465 ], [ -72.062950134277344, -14.061238288879395 ], [ -72.063041687011719, -14.063029289245605 ], [ -72.064018249511662, -14.066082954406625 ], [ -72.065826416015568, -14.068545341491699 ], [ -72.066078186035156, -14.069946289062443 ], [ -72.066574096679688, -14.071010589599553 ], [ -72.066757202148438, -14.073406219482422 ], [ -72.067657470703068, -14.075926780700627 ], [ -72.067222595214844, -14.077376365661564 ], [ -72.063957214355469, -14.080398559570312 ], [ -72.062522888183594, -14.081192016601506 ], [ -72.061645507812443, -14.082853317260685 ], [ -72.061622619628849, -14.084017753601074 ], [ -72.062210083007756, -14.087005615234318 ], [ -72.062759399414062, -14.088104248046875 ], [ -72.064224243164006, -14.090072631835881 ], [ -72.064491271972599, -14.090969085693359 ], [ -72.063041687011719, -14.092533111572209 ], [ -72.062576293945256, -14.093494415283146 ], [ -72.061851501464844, -14.096456527709961 ], [ -72.06085205078125, -14.098855018615666 ], [ -72.060195922851506, -14.10171985626215 ], [ -72.060066223144531, -14.103336334228459 ], [ -72.058174133300781, -14.10516357421875 ], [ -72.057716369628849, -14.106034278869572 ], [ -72.057640075683537, -14.107641220092773 ], [ -72.058601379394418, -14.108933448791504 ], [ -72.059074401855412, -14.110007286071777 ], [ -72.059547424316349, -14.110535621643066 ], [ -72.060310363769474, -14.1120347976684 ], [ -72.062232971191406, -14.112229347228947 ], [ -72.062995910644531, -14.112826347351017 ], [ -72.063873291015625, -14.11441707611084 ], [ -72.064193725585881, -14.116001129150334 ], [ -72.064102172851506, -14.117165565490666 ], [ -72.062660217285156, -14.118646621704045 ], [ -72.062194824218693, -14.119526863098145 ], [ -72.061546325683537, -14.12201976776123 ], [ -72.059837341308537, -14.123798370361328 ], [ -72.059143066406193, -14.124167442321777 ], [ -72.057525634765568, -14.124543190002328 ], [ -72.056892395019531, -14.12505054473877 ], [ -72.056755065917912, -14.125484466552734 ], [ -72.056488037109318, -14.129753112792912 ], [ -72.057243347167912, -14.130773544311523 ], [ -72.059593200683594, -14.131307601928654 ], [ -72.059928894042912, -14.132476806640625 ], [ -72.059181213378906, -14.133280754089355 ], [ -72.059082031249886, -14.133678436279297 ], [ -72.059432983398381, -14.135180473327637 ], [ -72.059974670410156, -14.135674476623478 ], [ -72.06158447265625, -14.136354446411076 ], [ -72.062141418457031, -14.13728141784668 ], [ -72.062248229980469, -14.138457298278809 ], [ -72.061164855956974, -14.140095710754395 ], [ -72.061073303222599, -14.141720771789551 ], [ -72.063446044921818, -14.143547058105469 ], [ -72.065719604492131, -14.144252777099553 ], [ -72.066406249999943, -14.14470386505127 ], [ -72.067588806152344, -14.146072387695199 ], [ -72.068206787109318, -14.148221015930176 ], [ -72.069488525390625, -14.149969100952148 ], [ -72.070388793945312, -14.15058422088623 ], [ -72.071846008300724, -14.15075778961176 ], [ -72.073272705078068, -14.151596069335881 ], [ -72.0765380859375, -14.156036376953125 ], [ -72.079551696777287, -14.15792274475092 ], [ -72.082298278808594, -14.160926818847599 ], [ -72.082977294921875, -14.16120529174799 ], [ -72.085350036621094, -14.161398887634164 ], [ -72.086959838867188, -14.162681579589844 ], [ -72.088104248046875, -14.165424346923771 ], [ -72.088485717773438, -14.168354988098145 ], [ -72.089439392089844, -14.170577049255371 ], [ -72.090820312499943, -14.172031402587891 ], [ -72.093276977539062, -14.172044754028263 ], [ -72.094154357910099, -14.174014091491699 ], [ -72.094238281249943, -14.175973892211914 ], [ -72.094017028808594, -14.178112030029183 ], [ -72.092086791992188, -14.181267738342228 ], [ -72.0914306640625, -14.184158325195312 ], [ -72.090179443359375, -14.186644554138127 ], [ -72.089836120605469, -14.189494132995605 ], [ -72.089286804199162, -14.190932273864689 ], [ -72.088302612304688, -14.192096710205021 ], [ -72.086219787597656, -14.193008422851562 ], [ -72.084877014160156, -14.194927215576172 ], [ -72.082931518554688, -14.196148872375431 ], [ -72.082168579101562, -14.197765350341797 ], [ -72.082122802734318, -14.201801300048828 ], [ -72.081756591796818, -14.202809333801213 ], [ -72.0810546875, -14.2035036087035 ], [ -72.079734802246094, -14.203866004943791 ], [ -72.078109741210938, -14.204877853393555 ], [ -72.077011108398324, -14.206084251403809 ], [ -72.076690673828068, -14.207098007202148 ], [ -72.077377319335881, -14.207668304443303 ], [ -72.079750061035099, -14.207481384277287 ], [ -72.082794189453068, -14.20814037322998 ], [ -72.084983825683537, -14.209088325500488 ], [ -72.086471557617188, -14.210280418395996 ], [ -72.087173461914062, -14.21112060546875 ], [ -72.090187072753906, -14.216241836547852 ], [ -72.094673156738281, -14.219393730163574 ], [ -72.095916748046875, -14.220682144164982 ], [ -72.097633361816406, -14.224929809570256 ], [ -72.098167419433537, -14.228658676147461 ], [ -72.099136352538949, -14.230574607849121 ], [ -72.100845336914006, -14.23220252990717 ], [ -72.104225158691406, -14.233617782592773 ], [ -72.107307434081974, -14.235903739929199 ], [ -72.10833740234375, -14.237028121948242 ], [ -72.110153198242188, -14.239849090576172 ], [ -72.115653991699219, -14.246039390563965 ], [ -72.116798400878906, -14.246620178222656 ], [ -72.118988037109375, -14.24839973449707 ], [ -72.12493896484375, -14.253872871398926 ], [ -72.126457214355469, -14.254711151123047 ], [ -72.129081726074105, -14.255511283874455 ], [ -72.131668090820312, -14.256890296935978 ], [ -72.133201599121094, -14.257872581481934 ], [ -72.134857177734375, -14.259673118591309 ], [ -72.136161804199219, -14.26050853729248 ], [ -72.137435913085881, -14.26067066192627 ], [ -72.138809204101449, -14.260471343994141 ], [ -72.141677856445312, -14.25709056854248 ], [ -72.142936706542969, -14.256519317626953 ], [ -72.148239135742131, -14.258515357971135 ], [ -72.150993347167912, -14.258710861205998 ], [ -72.152206420898438, -14.259086608886719 ], [ -72.156707763671818, -14.262626647949219 ], [ -72.162002563476562, -14.264883041381836 ], [ -72.164566040039062, -14.267938613891602 ], [ -72.165939331054688, -14.270269393920842 ], [ -72.168251037597599, -14.273503303527718 ], [ -72.168930053710881, -14.274106979370117 ], [ -72.170509338378906, -14.274984359741211 ], [ -72.171020507812443, -14.275711059570312 ], [ -72.170944213867074, -14.277381896972599 ], [ -72.170089721679574, -14.280397415161019 ], [ -72.169662475585938, -14.28917217254633 ], [ -72.170219421386719, -14.291535377502441 ], [ -72.170982360839844, -14.293007850646973 ], [ -72.171913146972656, -14.295918464660531 ], [ -72.173439025878906, -14.298545837402287 ], [ -72.175865173339844, -14.300877571105843 ], [ -72.17800140380848, -14.302276611328068 ], [ -72.178909301757812, -14.303414344787541 ], [ -72.181007385253906, -14.304036140441895 ], [ -72.18548583984375, -14.304594993591309 ], [ -72.186103820800724, -14.304993629455566 ], [ -72.186607360839844, -14.3058567047118 ], [ -72.186721801757812, -14.306733131408691 ], [ -72.186294555664006, -14.312373161315918 ], [ -72.187080383300781, -14.313701629638615 ], [ -72.188804626464844, -14.314696311950684 ], [ -72.193016052246094, -14.314937591552678 ], [ -72.197998046874943, -14.315835952758732 ], [ -72.200363159179688, -14.31738090515131 ], [ -72.204109191894474, -14.320694923400822 ], [ -72.2056884765625, -14.321490287780705 ], [ -72.206314086914006, -14.32288932800293 ], [ -72.2069091796875, -14.326877593994084 ], [ -72.206924438476562, -14.328042984008732 ], [ -72.206443786621094, -14.329663276672306 ], [ -72.206558227539062, -14.330634117126465 ], [ -72.207008361816406, -14.331422805786133 ], [ -72.207801818847656, -14.332298278808537 ], [ -72.208297729492131, -14.332548141479435 ], [ -72.211631774902287, -14.333059310913086 ], [ -72.21246337890625, -14.332977294921818 ], [ -72.214859008789062, -14.333853721618652 ], [ -72.21551513671875, -14.3343505859375 ], [ -72.215980529785156, -14.335132598876953 ], [ -72.215827941894474, -14.336819648742619 ], [ -72.216293334960938, -14.337800025939941 ], [ -72.217597961425781, -14.338638305664062 ], [ -72.220321655273381, -14.339718818664551 ], [ -72.221084594726506, -14.340368270873967 ], [ -72.221870422363168, -14.34276103973383 ], [ -72.223709106445312, -14.345970153808594 ], [ -72.223831176757812, -14.348465919494515 ], [ -72.224403381347656, -14.349574089050293 ], [ -72.225006103515568, -14.349789619445744 ], [ -72.227081298828068, -14.349081039428711 ], [ -72.229194641113224, -14.349015235900822 ], [ -72.231941223144531, -14.350094795227051 ], [ -72.233474731445256, -14.349805831909123 ], [ -72.234954833984375, -14.349118232726994 ], [ -72.238372802734261, -14.348951339721623 ], [ -72.239059448242188, -14.349120140075684 ], [ -72.239288330078068, -14.349810600280705 ], [ -72.239593505859318, -14.354205131530705 ], [ -72.239364624023438, -14.359331130981388 ], [ -72.239501953124943, -14.361084938049316 ], [ -72.240837097167912, -14.36396408081049 ], [ -72.241523742675781, -14.366845130920353 ], [ -72.242065429687443, -14.367988586425668 ], [ -72.242706298828125, -14.37050724029541 ], [ -72.244300842285156, -14.375095367431641 ], [ -72.246299743652344, -14.379924774169922 ], [ -72.247367858886719, -14.381725311279183 ], [ -72.248649597167912, -14.385651588439885 ], [ -72.248527526855469, -14.388433456420842 ], [ -72.247550964355469, -14.393271446228027 ], [ -72.247329711914006, -14.398915290832406 ], [ -72.247879028320256, -14.400909423828125 ], [ -72.248802185058594, -14.402454376220703 ], [ -72.250030517578125, -14.403400421142578 ], [ -72.252380371093693, -14.404176712036076 ], [ -72.257331848144474, -14.404520988464355 ], [ -72.260032653808594, -14.40562725067133 ], [ -72.263473510742188, -14.40630054473877 ], [ -72.267036437988281, -14.406567573547363 ], [ -72.269668579101562, -14.405750274658146 ], [ -72.271057128906193, -14.405817985534611 ], [ -72.272689819335881, -14.406652450561467 ], [ -72.275680541992188, -14.408871650695801 ], [ -72.281684875488281, -14.410199165344238 ], [ -72.285163879394474, -14.410371780395451 ], [ -72.288619995117131, -14.410845756530705 ], [ -72.292221069335881, -14.410689353942757 ], [ -72.294036865234318, -14.410898208618164 ], [ -72.294631958007756, -14.411311149597168 ], [ -72.295219421386719, -14.412341117858887 ], [ -72.295288085937443, -14.414028167724553 ], [ -72.294479370117188, -14.415745735168457 ], [ -72.293632507324219, -14.416683197021484 ], [ -72.292541503906136, -14.418956756591797 ], [ -72.290718078613224, -14.420163154601994 ], [ -72.289955139160099, -14.420942306518498 ], [ -72.289367675781193, -14.42264270782465 ], [ -72.289512634277344, -14.423844337463379 ], [ -72.291969299316293, -14.425578117370605 ], [ -72.295700073242188, -14.427339553832951 ], [ -72.298789978027344, -14.429099082946664 ], [ -72.300346374511662, -14.429298400878849 ], [ -72.303199768066349, -14.428606986999455 ], [ -72.305427551269531, -14.429220199584961 ], [ -72.306861877441406, -14.430720329284554 ], [ -72.309127807617131, -14.434311866760254 ], [ -72.310943603515511, -14.436691284179688 ], [ -72.312438964843693, -14.437565803527832 ], [ -72.314201354980469, -14.438995361328125 ], [ -72.317306518554631, -14.440520286560002 ], [ -72.320953369140568, -14.440779685974121 ], [ -72.323333740234318, -14.440118789672795 ], [ -72.325096130371094, -14.43914604187006 ], [ -72.330291748046818, -14.435320854187012 ], [ -72.333625793456974, -14.432099342346078 ], [ -72.335678100585938, -14.43064022064209 ], [ -72.339035034179688, -14.427316665649414 ], [ -72.3408203125, -14.42613410949707 ], [ -72.341629028320256, -14.426261901855355 ], [ -72.347183227538949, -14.43040752410883 ], [ -72.353256225585881, -14.433782577514648 ], [ -72.354904174804631, -14.435066223144531 ], [ -72.355987548828125, -14.436279296875 ], [ -72.357170104980412, -14.438606262207031 ], [ -72.362609863281193, -14.446182250976506 ], [ -72.363990783691406, -14.44930362701416 ], [ -72.363769531249943, -14.452084541320801 ], [ -72.36236572265625, -14.455393791198674 ], [ -72.3616943359375, -14.45820426940918 ], [ -72.36177825927723, -14.461167335510197 ], [ -72.362472534179688, -14.463758468627873 ], [ -72.363410949707031, -14.465386390685921 ], [ -72.364852905273438, -14.466656684875488 ], [ -72.366470336914062, -14.467253684997559 ], [ -72.370780944824219, -14.466905593872013 ], [ -72.374641418456974, -14.467694282531738 ], [ -72.377372741699219, -14.46686935424799 ], [ -72.380218505859375, -14.467044830322209 ], [ -72.382331848144531, -14.466744422912598 ], [ -72.383697509765568, -14.468620300292969 ], [ -72.386093139648324, -14.473217010498047 ], [ -72.38897705078125, -14.477405548095703 ], [ -72.392082214355412, -14.48035717010498 ], [ -72.3931884765625, -14.481678962707463 ], [ -72.396034240722656, -14.483357429504395 ], [ -72.401245117187443, -14.483846664428711 ], [ -72.402046203613281, -14.484443664550781 ], [ -72.404533386230469, -14.484424591064396 ], [ -72.406494140624943, -14.483966827392578 ], [ -72.413093566894531, -14.483445167541504 ], [ -72.418075561523438, -14.482233047485352 ], [ -72.421707153320312, -14.48168754577631 ], [ -72.425018310546875, -14.481613159179688 ], [ -72.430320739746037, -14.482108116149846 ], [ -72.436439514160099, -14.48094463348383 ], [ -72.440605163574219, -14.481578826904297 ], [ -72.441184997558537, -14.482604026794434 ], [ -72.441406249999886, -14.484758377075138 ], [ -72.441390991210881, -14.486465454101562 ], [ -72.440711975097599, -14.488977432250977 ], [ -72.440750122070312, -14.489790916442871 ], [ -72.44268798828125, -14.492936134338322 ], [ -72.444389343261719, -14.49632453918457 ], [ -72.448745727539006, -14.500192642211857 ], [ -72.450332641601562, -14.501258850097656 ], [ -72.453697204589787, -14.502188682556152 ], [ -72.456176757812443, -14.502252578735352 ], [ -72.458106994628906, -14.501650810241642 ], [ -72.458732604980412, -14.501765251159554 ], [ -72.459342956542969, -14.502198219299203 ], [ -72.459602355956974, -14.503011703491211 ], [ -72.46148681640625, -14.506320953369141 ], [ -72.462074279785099, -14.509093284606877 ], [ -72.462974548339844, -14.510302543640137 ], [ -72.4638671875, -14.510917663574162 ], [ -72.466461181640568, -14.511914253234806 ], [ -72.467155456542855, -14.512688636779671 ], [ -72.468513488769531, -14.514933586120605 ], [ -72.470909118652344, -14.517363548278809 ], [ -72.473480224609375, -14.519170761108342 ], [ -72.480751037597656, -14.523575782775879 ], [ -72.481376647949219, -14.524477005004883 ], [ -72.481758117675781, -14.525917053222543 ], [ -72.482437133789062, -14.526774406433105 ], [ -72.487251281738224, -14.529109954833984 ], [ -72.488945007324219, -14.530474662780648 ], [ -72.491897583007812, -14.53353214263916 ], [ -72.493545532226506, -14.537094116210938 ], [ -72.494552612304688, -14.544854164123535 ], [ -72.495025634765625, -14.546106338500977 ], [ -72.496856689453125, -14.547318458557129 ], [ -72.498626708984261, -14.549079895019474 ], [ -72.499610900878906, -14.549722671508789 ], [ -72.501281738281193, -14.549650192260742 ], [ -72.503486633300724, -14.548932075500488 ], [ -72.504020690917969, -14.549065589904785 ], [ -72.503768920898381, -14.55084228515625 ], [ -72.502372741699219, -14.553177833557129 ], [ -72.500907897949162, -14.556232452392521 ], [ -72.498634338378906, -14.558586120605469 ], [ -72.495994567871094, -14.562367439269963 ], [ -72.494796752929631, -14.563666343688965 ], [ -72.494041442871037, -14.565120697021484 ], [ -72.492057800292969, -14.566987037658691 ], [ -72.488243103027344, -14.568869590759221 ], [ -72.486373901367188, -14.570837020874023 ], [ -72.485008239746094, -14.573487281799316 ], [ -72.483932495117131, -14.5762681961059 ], [ -72.483825683593693, -14.577611923217773 ], [ -72.484313964843693, -14.579153060913029 ], [ -72.484382629394474, -14.580101013183594 ], [ -72.484222412109318, -14.58103084564209 ], [ -72.483741760253849, -14.581847190856877 ], [ -72.479843139648324, -14.583550453186035 ], [ -72.477615356445256, -14.584907531738281 ], [ -72.476676940917912, -14.585899353027287 ], [ -72.47589111328125, -14.58777999877924 ], [ -72.475013732910156, -14.588828086852971 ], [ -72.473960876464844, -14.589105606079102 ], [ -72.471588134765625, -14.588962554931641 ], [ -72.4703369140625, -14.589735031127873 ], [ -72.469535827636662, -14.590999603271484 ], [ -72.468879699707031, -14.595679283142033 ], [ -72.468887329101562, -14.598244667053223 ], [ -72.468414306640625, -14.599941253662109 ], [ -72.467033386230412, -14.601820945739746 ], [ -72.466064453125, -14.602750778198242 ], [ -72.463661193847656, -14.604098320007211 ], [ -72.462234497070312, -14.60462474822998 ], [ -72.461288452148438, -14.605282783508244 ], [ -72.461242675781136, -14.606015205383244 ], [ -72.461807250976506, -14.60870361328125 ], [ -72.461257934570312, -14.615419387817269 ], [ -72.462013244628906, -14.61656475067133 ], [ -72.46356201171875, -14.617430686950627 ], [ -72.464370727539006, -14.618407249450684 ], [ -72.464515686035156, -14.619158744811955 ], [ -72.464149475097656, -14.621583938598576 ], [ -72.465461730957031, -14.623937606811523 ], [ -72.465202331542969, -14.626093864440861 ], [ -72.465431213378849, -14.63189506530756 ], [ -72.463417053222599, -14.64097881317133 ], [ -72.465797424316349, -14.645269393920785 ], [ -72.466720581054688, -14.652071952819824 ], [ -72.467964172363281, -14.654335021972656 ], [ -72.468788146972656, -14.656901359558049 ], [ -72.470817565917969, -14.660185813903809 ], [ -72.471153259277287, -14.661182403564453 ], [ -72.475318908691406, -14.65850830078125 ], [ -72.477203369140625, -14.658032417297363 ], [ -72.477699279785156, -14.658172607421818 ], [ -72.47833251953125, -14.658738136291504 ], [ -72.478538513183594, -14.659392356872502 ], [ -72.480522155761719, -14.661806106567383 ], [ -72.481643676757756, -14.663644790649357 ], [ -72.482917785644531, -14.66469764709467 ], [ -72.484077453613281, -14.665126800537053 ], [ -72.485183715820199, -14.665163040161133 ], [ -72.489356994628849, -14.664270401000977 ], [ -72.497238159179688, -14.66428279876709 ], [ -72.500396728515625, -14.664055824279785 ], [ -72.501838684081974, -14.66358375549305 ], [ -72.504348754882699, -14.663969039916992 ], [ -72.505760192871037, -14.664508819580078 ], [ -72.506690979003906, -14.665405273437443 ], [ -72.507202148437443, -14.666304588317871 ], [ -72.507804870605469, -14.668723106384221 ], [ -72.508293151855469, -14.669377326965218 ], [ -72.509757995605412, -14.670559883117676 ], [ -72.510131835937443, -14.670574188232365 ], [ -72.511253356933594, -14.671261787414494 ], [ -72.514396667480469, -14.670882225036621 ], [ -72.519294738769474, -14.669849395751953 ], [ -72.521102905273381, -14.669000625610295 ], [ -72.523025512695256, -14.667547225952148 ], [ -72.525489807128849, -14.666952133178711 ], [ -72.528305053710938, -14.667703628540039 ], [ -72.529922485351562, -14.668399810790902 ], [ -72.532058715820312, -14.668745994567814 ], [ -72.533287048339844, -14.669195175170842 ], [ -72.537071228027344, -14.671087265014592 ], [ -72.539314270019474, -14.67271900177002 ], [ -72.543502807617188, -14.674468994140568 ], [ -72.544242858886719, -14.674596786499023 ], [ -72.548278808593693, -14.674403190612793 ], [ -72.551124572753906, -14.675029754638672 ], [ -72.551986694335938, -14.675597190856877 ], [ -72.552658081054688, -14.676600456237793 ], [ -72.554420471191293, -14.678244590759277 ], [ -72.556259155273438, -14.678634643554688 ], [ -72.559478759765625, -14.678024291992131 ], [ -72.560874938964787, -14.678203582763615 ], [ -72.562156677246094, -14.678975105285588 ], [ -72.564025878906193, -14.679619789123535 ], [ -72.565742492675724, -14.680756568908691 ], [ -72.567268371581974, -14.681233406066895 ], [ -72.567733764648381, -14.68169116973877 ], [ -72.570404052734318, -14.682558059692269 ], [ -72.577346801757812, -14.686443328857422 ], [ -72.578865051269531, -14.687697410583439 ], [ -72.579292297363224, -14.688179969787598 ], [ -72.579421997070312, -14.688896179199162 ], [ -72.580009460449219, -14.689932823181152 ], [ -72.581977844238168, -14.692282676696721 ], [ -72.582962036132812, -14.694263458251953 ], [ -72.585113525390568, -14.696969032287598 ], [ -72.586639404296818, -14.700614929199162 ], [ -72.586982727050781, -14.703095436096191 ], [ -72.585304260253849, -14.705804824829045 ], [ -72.585052490234375, -14.706924438476449 ], [ -72.585197448730412, -14.707692146301213 ], [ -72.586105346679688, -14.708541870117131 ], [ -72.587417602538949, -14.709061622619629 ], [ -72.588752746581918, -14.709932327270394 ], [ -72.592018127441406, -14.713446617126408 ], [ -72.594474792480355, -14.713499069213867 ], [ -72.595329284667855, -14.713029861450195 ], [ -72.596000671386605, -14.712151527404785 ], [ -72.596138000488281, -14.70994758605957 ], [ -72.595863342285156, -14.708699226379395 ], [ -72.596183776855412, -14.70775127410883 ], [ -72.597969055175724, -14.705857276916504 ], [ -72.599723815917969, -14.704998016357365 ], [ -72.6024169921875, -14.702404022216797 ], [ -72.601348876953125, -14.70111179351801 ], [ -72.601020812988224, -14.698371887207031 ], [ -72.599533081054688, -14.694345474243164 ], [ -72.599296569824219, -14.692056655883789 ], [ -72.599411010742131, -14.689934730529785 ], [ -72.600425720214844, -14.688878059387207 ], [ -72.60205078125, -14.68800163269043 ], [ -72.603965759277344, -14.687533378601017 ], [ -72.605186462402344, -14.686659812927189 ], [ -72.605888366699162, -14.685356140136662 ], [ -72.605911254882756, -14.683053970336914 ], [ -72.606307983398438, -14.681638717651367 ], [ -72.606872558593636, -14.681023597717285 ], [ -72.608741760253849, -14.679785728454533 ], [ -72.610748291015568, -14.67677116394043 ], [ -72.612335205078125, -14.676235198974609 ], [ -72.613555908203125, -14.676258087158203 ], [ -72.614814758300781, -14.675656318664494 ], [ -72.616325378417969, -14.675697326660156 ], [ -72.617240905761662, -14.67547416687006 ], [ -72.619483947753906, -14.675720214843693 ], [ -72.621147155761662, -14.676307678222599 ], [ -72.62322998046875, -14.67622184753418 ], [ -72.624679565429631, -14.675874710082951 ], [ -72.626708984374886, -14.674910545349121 ], [ -72.630973815917912, -14.671187400817871 ], [ -72.634140014648381, -14.669384002685547 ], [ -72.641082763671818, -14.669121742248535 ], [ -72.643554687499943, -14.668649673461914 ], [ -72.645271301269474, -14.667909622192383 ], [ -72.646751403808594, -14.667678833007812 ], [ -72.648925781249886, -14.66777324676508 ], [ -72.650451660156136, -14.668231010437012 ], [ -72.651397705078068, -14.668242454528752 ], [ -72.651947021484318, -14.66858005523676 ], [ -72.652015686035156, -14.669014930725098 ], [ -72.657546997070312, -14.673623085021973 ], [ -72.661079406738281, -14.673921585083008 ], [ -72.663993835449105, -14.676238059997559 ], [ -72.671989440917912, -14.676200866699162 ], [ -72.673034667968693, -14.67664527893055 ], [ -72.675117492675724, -14.677035331726017 ], [ -72.679573059082031, -14.678824424743652 ], [ -72.680740356445312, -14.679557800292855 ], [ -72.682701110839844, -14.681438446044865 ], [ -72.684196472167912, -14.682231903076172 ], [ -72.685989379882756, -14.683579444885197 ], [ -72.689399719238281, -14.687261581420898 ], [ -72.691139221191349, -14.688752174377441 ], [ -72.691436767578068, -14.688770294189396 ], [ -72.693565368652344, -14.686156272888184 ], [ -72.694915771484375, -14.685329437255859 ], [ -72.696037292480355, -14.684219360351506 ], [ -72.696411132812443, -14.68327522277832 ], [ -72.696594238281193, -14.681080818176213 ], [ -72.697082519531193, -14.680091857910099 ], [ -72.697998046875, -14.679298400878906 ], [ -72.699356079101506, -14.678667068481445 ], [ -72.701644897460881, -14.678301811218262 ], [ -72.705421447753906, -14.679073333740178 ], [ -72.708244323730355, -14.679091453552246 ], [ -72.709632873535156, -14.679664611816406 ], [ -72.710853576660156, -14.67968559265131 ], [ -72.711624145507812, -14.6800279617309 ], [ -72.713890075683594, -14.679995536804142 ], [ -72.716758728027344, -14.679229736328125 ], [ -72.719001770019474, -14.677417755126953 ], [ -72.72021484375, -14.676715850830078 ], [ -72.721061706542969, -14.676643371582031 ], [ -72.723190307617131, -14.677079200744572 ], [ -72.724517822265568, -14.676531791687012 ], [ -72.724800109863281, -14.675720214843693 ], [ -72.724723815917912, -14.672983169555664 ], [ -72.724945068359375, -14.670879364013558 ], [ -72.725563049316406, -14.668283462524414 ], [ -72.725570678710881, -14.667371749877873 ], [ -72.726165771484318, -14.666012763976994 ], [ -72.726242065429631, -14.664531707763672 ], [ -72.725509643554574, -14.662455558776799 ], [ -72.723320007324219, -14.658585548400822 ], [ -72.723091125488224, -14.657119750976506 ], [ -72.723823547363281, -14.655137062072697 ], [ -72.7254638671875, -14.653500556945801 ], [ -72.726173400878793, -14.652090072631836 ], [ -72.726387023925781, -14.648694038391113 ], [ -72.726097106933594, -14.644863128662109 ], [ -72.726158142089787, -14.644048690795898 ], [ -72.726402282714844, -14.643886566161996 ], [ -72.726852416992188, -14.644010543823185 ], [ -72.729499816894474, -14.646078109741211 ], [ -72.732025146484375, -14.646824836730957 ], [ -72.734252929687443, -14.64710807800293 ], [ -72.736656188964787, -14.64671611785883 ], [ -72.738128662109375, -14.646034240722656 ], [ -72.740570068359318, -14.644315719604379 ], [ -72.741432189941293, -14.644143104553223 ], [ -72.743583679199219, -14.648210525512638 ], [ -72.745552062988281, -14.650569915771484 ], [ -72.746803283691406, -14.651522636413574 ], [ -72.749565124511719, -14.652742385864258 ], [ -72.753303527832031, -14.656762123107853 ], [ -72.758384704589787, -14.660868644714355 ], [ -72.76165771484375, -14.662742614746037 ], [ -72.762680053710881, -14.662807464599609 ], [ -72.766036987304574, -14.664042472839355 ], [ -72.769134521484375, -14.664188385009709 ], [ -72.770500183105412, -14.664536476135254 ], [ -72.774101257324219, -14.663903236389103 ], [ -72.775459289550724, -14.662955284118652 ], [ -72.776527404785043, -14.662614822387638 ], [ -72.779563903808537, -14.660530090332031 ], [ -72.785186767578068, -14.655133247375431 ], [ -72.787277221679631, -14.65276908874506 ], [ -72.790199279785156, -14.650394439697266 ], [ -72.791473388671818, -14.652658462524414 ], [ -72.791839599609375, -14.65407657623291 ], [ -72.792411804199219, -14.654913902282658 ], [ -72.793617248535156, -14.655955314636174 ], [ -72.795791625976449, -14.657060623168888 ], [ -72.797859191894474, -14.658526420593205 ], [ -72.799957275390568, -14.661229133605957 ], [ -72.801551818847656, -14.664262771606445 ], [ -72.802490234375, -14.665292739868107 ], [ -72.804450988769474, -14.668988227844181 ], [ -72.804908752441406, -14.670266151428223 ], [ -72.804962158203125, -14.673139572143555 ], [ -72.805465698242188, -14.674536705017033 ], [ -72.806022644042969, -14.675390243530217 ], [ -72.809722900390625, -14.67894268035883 ], [ -72.813468933105469, -14.683078765869084 ], [ -72.814651489257756, -14.684833526611328 ], [ -72.818298339843636, -14.688309669494629 ], [ -72.820343017578125, -14.690698623657227 ], [ -72.820999145507812, -14.691705703735295 ], [ -72.821731567382699, -14.693593025207463 ], [ -72.823036193847599, -14.695049285888672 ], [ -72.824394226074162, -14.697582244872933 ], [ -72.826248168945312, -14.700013160705566 ], [ -72.829582214355469, -14.702377319335938 ], [ -72.829383850097656, -14.704135894775334 ], [ -72.828163146972656, -14.706419944763127 ], [ -72.827659606933594, -14.707905769348031 ], [ -72.827384948730469, -14.711572647094727 ], [ -72.829650878906136, -14.713769912719727 ], [ -72.831344604492131, -14.715865135192757 ], [ -72.831825256347599, -14.717262268066406 ], [ -72.832778930664006, -14.718733787536621 ], [ -72.833816528320256, -14.72154712677002 ], [ -72.833686828613281, -14.725863456726017 ], [ -72.83319091796875, -14.727331161499023 ], [ -72.83331298828125, -14.732670783996525 ], [ -72.833518981933594, -14.734136581420842 ], [ -72.834121704101506, -14.735588073730469 ], [ -72.834884643554631, -14.73901176452631 ], [ -72.835395812988281, -14.740199089050293 ], [ -72.836585998535099, -14.74150276184082 ], [ -72.838157653808594, -14.744346618652344 ], [ -72.839675903320312, -14.745840072631836 ], [ -72.840652465820312, -14.747196197509766 ], [ -72.842872619628849, -14.753660202026367 ], [ -72.845329284667969, -14.757263183593693 ], [ -72.845840454101506, -14.758440971374512 ], [ -72.846023559570256, -14.759698867797795 ], [ -72.846908569335824, -14.759645462036133 ], [ -72.84930419921875, -14.757669448852539 ], [ -72.85064697265625, -14.75526046752924 ], [ -72.852363586425781, -14.753785133361816 ], [ -72.852645874023438, -14.750670433044377 ], [ -72.852561950683594, -14.743675231933594 ], [ -72.853645324706974, -14.742419242858887 ], [ -72.855796813964844, -14.740804672241154 ], [ -72.856529235839787, -14.739639282226449 ], [ -72.856834411621094, -14.738574028015137 ], [ -72.856781005859375, -14.736368179321289 ], [ -72.855072021484375, -14.732900619506779 ], [ -72.855117797851562, -14.731340408325195 ], [ -72.855865478515568, -14.729457855224609 ], [ -72.857315063476562, -14.727672576904297 ], [ -72.859619140625, -14.725886344909668 ], [ -72.861740112304688, -14.725507736206055 ], [ -72.863487243652287, -14.725788116455021 ], [ -72.864730834960881, -14.725337028503418 ], [ -72.864006042480469, -14.723262786865234 ], [ -72.864463806152344, -14.722055435180664 ], [ -72.865234375, -14.721013069152832 ], [ -72.865829467773438, -14.718795776367188 ], [ -72.865859985351506, -14.71198558807373 ], [ -72.867004394531193, -14.709102630615178 ], [ -72.867759704589787, -14.707917213439941 ], [ -72.868324279785156, -14.707659721374455 ], [ -72.869277954101562, -14.707649230957031 ], [ -72.871833801269531, -14.708307266235238 ], [ -72.873527526855469, -14.708207130432129 ], [ -72.874893188476562, -14.708443641662541 ], [ -72.875648498535156, -14.708804130554142 ], [ -72.877273559570312, -14.708710670471191 ], [ -72.880599975585938, -14.70777416229248 ], [ -72.882293701171761, -14.706967353820801 ], [ -72.885818481445199, -14.706111907958984 ], [ -72.88820648193348, -14.704037666320801 ], [ -72.889160156249886, -14.702672958373967 ], [ -72.889389038085938, -14.701870918273869 ], [ -72.890533447265625, -14.700922966003418 ], [ -72.893409729003906, -14.700498580932617 ], [ -72.894622802734375, -14.699806213378906 ], [ -72.897071838378793, -14.699129104614201 ], [ -72.898200988769474, -14.698464393615609 ], [ -72.899978637695312, -14.698515892028809 ], [ -72.903129577636719, -14.699076652526799 ], [ -72.905166625976506, -14.698735237121525 ], [ -72.906600952148381, -14.698041915893555 ], [ -72.908760070800781, -14.698161125183105 ], [ -72.910354614257812, -14.697381019592228 ], [ -72.912597656249943, -14.696697235107365 ], [ -72.912918090820312, -14.69633674621582 ], [ -72.913063049316349, -14.694875717163086 ], [ -72.913810729980469, -14.692622184753418 ], [ -72.915306091308594, -14.690178871154785 ], [ -72.916244506835824, -14.689273834228459 ], [ -72.916488647460938, -14.687923431396428 ], [ -72.917289733886605, -14.685887336730957 ], [ -72.917770385742074, -14.685175895690918 ], [ -72.918434143066293, -14.684703826904183 ], [ -72.920417785644474, -14.684747695922795 ], [ -72.921981811523438, -14.685077667236271 ], [ -72.922927856445312, -14.685953140258789 ], [ -72.924690246582031, -14.686567306518441 ], [ -72.927787780761719, -14.688508033752385 ], [ -72.931526184082031, -14.691741943359318 ], [ -72.932052612304631, -14.692505836486816 ], [ -72.932273864746094, -14.693404197692871 ], [ -72.932868957519531, -14.693997383117676 ], [ -72.933540344238281, -14.695211410522404 ], [ -72.934249877929631, -14.694522857665959 ], [ -72.935317993163949, -14.692489624023381 ], [ -72.936729431152287, -14.691157341003361 ], [ -72.942817687988224, -14.689206123351994 ], [ -72.945007324218693, -14.687786102294922 ], [ -72.94757080078125, -14.687230110168457 ], [ -72.948623657226562, -14.68643665313715 ], [ -72.950447082519474, -14.685721397399846 ], [ -72.951774597167969, -14.684556007385254 ], [ -72.953453063964844, -14.683930397033635 ], [ -72.955398559570312, -14.682512283325195 ], [ -72.957702636718693, -14.679387092590218 ], [ -72.958808898925781, -14.677156448364258 ], [ -72.959548950195312, -14.674895286560059 ], [ -72.961723327636662, -14.671893119811955 ], [ -72.962554931640568, -14.669939994812012 ], [ -72.964225769042969, -14.668193817138615 ], [ -72.965377807617188, -14.665981292724553 ], [ -72.967620849609318, -14.663885116577148 ], [ -72.970596313476506, -14.659645080566406 ], [ -72.972251892089844, -14.657844543457031 ], [ -72.972640991210938, -14.656721115112305 ], [ -72.972633361816406, -14.655609130859318 ], [ -72.971870422363281, -14.653323173522949 ], [ -72.968414306640625, -14.64995002746582 ], [ -72.968574523925724, -14.648316383361816 ], [ -72.970046997070312, -14.647062301635685 ], [ -72.970283508300724, -14.646524429321289 ], [ -72.969436645507756, -14.641916275024357 ], [ -72.969512939453125, -14.640443801879883 ], [ -72.969955444335938, -14.639542579650879 ], [ -72.971015930175781, -14.639164924621582 ], [ -72.973197937011719, -14.639101028442383 ], [ -72.9742431640625, -14.638777732849064 ], [ -72.976325988769418, -14.637484550476074 ], [ -72.980270385742188, -14.634502410888672 ], [ -72.982238769531136, -14.633858680725098 ], [ -72.983825683593693, -14.63387298583973 ], [ -72.985847473144474, -14.635065078735238 ], [ -72.986724853515625, -14.635894775390625 ], [ -72.98846435546875, -14.638087272644043 ], [ -72.989151000976562, -14.639486312866211 ], [ -72.990760803222656, -14.641424179077092 ], [ -72.99560546875, -14.644756317138672 ], [ -72.997032165527344, -14.645236968994141 ], [ -72.998626708984318, -14.64542102813715 ], [ -73.001594543456918, -14.644571304321232 ], [ -73.002929687499886, -14.644674301147404 ], [ -73.004402160644531, -14.643917083740234 ], [ -73.005134582519531, -14.643293380737305 ], [ -73.007217407226506, -14.640950202941838 ], [ -73.008186340332031, -14.6396484375 ], [ -73.008949279785156, -14.637911796569824 ], [ -73.010536193847599, -14.635883331298828 ], [ -73.012031555175781, -14.633312225341797 ], [ -73.01385498046875, -14.631301879882699 ], [ -73.015235900878793, -14.630419731140023 ], [ -73.016571044921761, -14.630764007568359 ], [ -73.017494201660099, -14.630536079406681 ], [ -73.018463134765568, -14.6304931640625 ], [ -73.018943786621037, -14.630261421203556 ], [ -73.019393920898381, -14.629722595214844 ], [ -73.019973754882756, -14.628228187561035 ], [ -73.02081298828125, -14.627485275268555 ], [ -73.021568298339844, -14.62718391418457 ], [ -73.025581359863281, -14.626882553100586 ], [ -73.028648376464787, -14.627712249755859 ], [ -73.030456542968693, -14.627602577209359 ], [ -73.034927368164062, -14.624478340148926 ], [ -73.036941528320256, -14.623951911926213 ], [ -73.038330078125, -14.623981475830078 ], [ -73.039375305175781, -14.623600959777718 ], [ -73.042251586914062, -14.620906829833871 ], [ -73.042823791503906, -14.62073802947998 ], [ -73.042984008788949, -14.622041702270508 ], [ -73.042289733886662, -14.629147529602051 ], [ -73.042381286621037, -14.633984565734806 ], [ -73.042091369628849, -14.63624095916748 ], [ -73.042793273925668, -14.641596794128418 ], [ -73.042808532714844, -14.643184661865178 ], [ -73.041931152343693, -14.645474433898926 ], [ -73.040664672851506, -14.646701812744141 ], [ -73.039718627929631, -14.648195266723576 ], [ -73.039039611816349, -14.649687767028809 ], [ -73.039016723632812, -14.650376319885197 ], [ -73.042518615722656, -14.653602600097599 ], [ -73.042976379394474, -14.654738426208382 ], [ -73.043083190917855, -14.656411170959473 ], [ -73.044692993164006, -14.65806770324707 ], [ -73.047088623046761, -14.658728599548283 ], [ -73.049171447753849, -14.659787178039551 ], [ -73.050140380859261, -14.659766197204533 ], [ -73.051811218261719, -14.659111976623535 ], [ -73.05291748046875, -14.658941268920898 ], [ -73.055267333984318, -14.659684181213379 ], [ -73.058151245117074, -14.659987449645996 ], [ -73.058670043945312, -14.660443305969238 ], [ -73.059127807617188, -14.661722183227539 ], [ -73.060104370117188, -14.663022994995117 ], [ -73.062202453613281, -14.665190696716252 ], [ -73.063209533691406, -14.665630340576058 ], [ -73.064971923828125, -14.665395736694222 ], [ -73.066650390625, -14.664449691772461 ], [ -73.069450378417969, -14.661500930786133 ], [ -73.071662902831974, -14.660110473632812 ], [ -73.072830200195256, -14.65970516204834 ], [ -73.074539184570256, -14.658145904541016 ], [ -73.076423645019474, -14.657012939453068 ], [ -73.078277587890625, -14.655139923095589 ], [ -73.079269409179688, -14.654505729675293 ], [ -73.081077575683594, -14.65436935424799 ], [ -73.087844848632812, -14.654948234558105 ], [ -73.090347290039006, -14.653820037841797 ], [ -73.091064453125, -14.652687072753906 ], [ -73.092636108398381, -14.651589393615723 ], [ -73.093315124511662, -14.651458740234375 ], [ -73.095382690429688, -14.651583671569767 ], [ -73.097152709960824, -14.650811195373535 ], [ -73.097923278808594, -14.651006698608398 ], [ -73.09918212890625, -14.652400016784668 ], [ -73.099090576171875, -14.654940605163574 ], [ -73.099998474121037, -14.656329154968205 ], [ -73.102264404296875, -14.657252311706543 ], [ -73.103256225585824, -14.658209800720215 ], [ -73.103660583496094, -14.658918380737305 ], [ -73.103599548339844, -14.659723281860352 ], [ -73.101913452148381, -14.66187667846674 ], [ -73.101478576660156, -14.663146018981934 ], [ -73.101646423339844, -14.66461181640625 ], [ -73.102668762206974, -14.666689872741699 ], [ -73.103752136230469, -14.668253898620549 ], [ -73.105056762695256, -14.669466018676701 ], [ -73.106109619140568, -14.669673919677734 ], [ -73.108604431152344, -14.669459342956543 ], [ -73.109603881835938, -14.669936180114746 ], [ -73.109977722167969, -14.670654296874943 ], [ -73.109611511230412, -14.672357559203988 ], [ -73.107002258300781, -14.675662994384766 ], [ -73.10540771484375, -14.679093360900822 ], [ -73.105064392089787, -14.680661201477051 ], [ -73.105834960937386, -14.683534622192383 ], [ -73.105247497558537, -14.685707092285156 ], [ -73.105796813964787, -14.687945365905762 ], [ -73.107513427734318, -14.690072059631234 ], [ -73.108345031738281, -14.69078540802002 ], [ -73.110374450683537, -14.691651344299316 ], [ -73.111824035644474, -14.692881584167367 ], [ -73.113487243652344, -14.693301200866699 ], [ -73.117507934570312, -14.692232131958008 ], [ -73.119934082031193, -14.691321372985783 ], [ -73.121368408203068, -14.690067291259766 ], [ -73.120948791503906, -14.68766975402832 ], [ -73.118118286132756, -14.682125091552678 ], [ -73.118179321289062, -14.681051254272461 ], [ -73.118873596191349, -14.680216789245605 ], [ -73.120079040527344, -14.679926872253418 ], [ -73.121612548828125, -14.679957389831543 ], [ -73.123382568359261, -14.680288314819336 ], [ -73.125015258789062, -14.681015014648438 ], [ -73.126358032226562, -14.681333541870117 ], [ -73.132865905761719, -14.681730270385742 ], [ -73.135337829589844, -14.681595802307129 ], [ -73.140625, -14.680571556091252 ], [ -73.144073486328011, -14.680282592773381 ], [ -73.145942687988281, -14.679765701293888 ], [ -73.147392272949162, -14.679006576538029 ], [ -73.148811340331974, -14.677527427673226 ], [ -73.149978637695256, -14.675856590270996 ], [ -73.152351379394474, -14.674058914184513 ], [ -73.152763366699219, -14.674749374389648 ], [ -73.152557373046818, -14.677023887634221 ], [ -73.152992248535156, -14.677733421325684 ], [ -73.156272888183537, -14.679457664489746 ], [ -73.159233093261662, -14.680167198181096 ], [ -73.161804199218693, -14.682409286499023 ], [ -73.162513732910156, -14.682497978210449 ], [ -73.163330078124943, -14.682026863098088 ], [ -73.164299011230469, -14.682069778442326 ], [ -73.174865722656193, -14.685723304748535 ], [ -73.17596435546875, -14.685713768005314 ], [ -73.177474975585938, -14.68504619598383 ], [ -73.178962707519474, -14.685321807861328 ], [ -73.179374694824219, -14.686193466186523 ], [ -73.17974853515625, -14.688309669494629 ], [ -73.182662963867131, -14.692743301391545 ], [ -73.184669494628849, -14.697321891784668 ], [ -73.18731689453125, -14.701273918151742 ], [ -73.188995361328011, -14.705545425414925 ], [ -73.189888000488281, -14.706411361694336 ], [ -73.190727233886719, -14.70684909820551 ], [ -73.192672729492188, -14.707361221313477 ], [ -73.193656921386662, -14.707343101501408 ], [ -73.197433471679688, -14.705744743347111 ], [ -73.198654174804688, -14.70604419708252 ], [ -73.200134277343693, -14.706797599792424 ], [ -73.202064514160156, -14.707013130187931 ], [ -73.203697204589844, -14.706797599792424 ], [ -73.207832336425781, -14.705691337585449 ], [ -73.211143493652344, -14.705670356750488 ], [ -73.212974548339844, -14.704708099365178 ], [ -73.217330932617188, -14.701616287231388 ], [ -73.218406677246094, -14.701308250427246 ], [ -73.219154357910156, -14.701595306396484 ], [ -73.220130920410156, -14.702387809753361 ], [ -73.221885681152287, -14.704806327819711 ], [ -73.223129272460881, -14.706081390380859 ], [ -73.226364135742131, -14.708156585693303 ], [ -73.227218627929631, -14.709048271179199 ], [ -73.227920532226562, -14.709450721740723 ], [ -73.230445861816349, -14.710176467895508 ], [ -73.235702514648381, -14.710342407226506 ], [ -73.239105224609375, -14.710891723632812 ], [ -73.240531921386719, -14.711552619934082 ], [ -73.243965148925781, -14.714055061340332 ], [ -73.245002746582031, -14.7144517898559 ], [ -73.247070312499886, -14.714586257934513 ], [ -73.248161315917969, -14.714377403259277 ], [ -73.249671936035156, -14.713726997375488 ], [ -73.250503540038949, -14.712820053100586 ], [ -73.252204895019474, -14.71021461486805 ], [ -73.25299072265625, -14.709650039672852 ], [ -73.254905700683594, -14.709827423095703 ], [ -73.261215209960938, -14.711862564086914 ], [ -73.263641357421818, -14.713661193847599 ], [ -73.265441894531193, -14.715347290039062 ], [ -73.268753051757812, -14.71998119354248 ], [ -73.27398681640625, -14.724395751953125 ], [ -73.284057617187443, -14.736571311950684 ], [ -73.28570556640625, -14.737794876098633 ], [ -73.286712646484318, -14.738208770751839 ], [ -73.287712097167969, -14.738180160522461 ], [ -73.288421630859375, -14.737606048583928 ], [ -73.288963317871094, -14.736780166625977 ], [ -73.289802551269531, -14.73255729675293 ], [ -73.290138244628906, -14.732132911682129 ], [ -73.291603088378849, -14.727362632751465 ], [ -73.292633056640568, -14.725769996643066 ], [ -73.295143127441406, -14.724379539489746 ], [ -73.307136535644474, -14.718791007995549 ], [ -73.307785034179631, -14.718171119689885 ], [ -73.308120727539062, -14.716977119445801 ], [ -73.308639526367188, -14.716334342956486 ], [ -73.309944152832031, -14.715912818908578 ], [ -73.314224243164062, -14.715688705444336 ], [ -73.318618774414062, -14.71617317199707 ], [ -73.321807861328068, -14.716032981872502 ], [ -73.325622558593693, -14.717164039611816 ], [ -73.328392028808537, -14.717182159423828 ], [ -73.332702636718693, -14.714504241943359 ], [ -73.335884094238281, -14.711326599121094 ], [ -73.337776184082031, -14.71049976348877 ], [ -73.341934204101506, -14.707610130310059 ], [ -73.344612121581974, -14.706231117248535 ], [ -73.346260070800781, -14.705968856811523 ], [ -73.348846435546875, -14.704975128173828 ], [ -73.350883483886719, -14.703851699829102 ], [ -73.352012634277344, -14.70247745513916 ], [ -73.352272033691406, -14.701456069946289 ], [ -73.351913452148438, -14.69623947143549 ], [ -73.352317810058594, -14.694399833679142 ], [ -73.35479736328125, -14.691785812377873 ], [ -73.355361938476562, -14.690695762634277 ], [ -73.356430053710881, -14.686792373657227 ], [ -73.358329772949162, -14.683216094970703 ], [ -73.359161376953125, -14.682491302490178 ], [ -73.361061096191406, -14.682087898254395 ], [ -73.361839294433594, -14.681558609008789 ], [ -73.36275482177723, -14.680364608764535 ], [ -73.363388061523381, -14.678435325622559 ], [ -73.36395263671875, -14.677961349487248 ], [ -73.365608215331974, -14.682220458984318 ], [ -73.369308471679631, -14.686764717102051 ], [ -73.370193481445199, -14.68858623504633 ], [ -73.370689392089844, -14.690552711486816 ], [ -73.370628356933594, -14.695396423339844 ], [ -73.371490478515568, -14.698392868041879 ], [ -73.373672485351562, -14.700216293334961 ], [ -73.376464843749943, -14.702034950256348 ], [ -73.381423950195256, -14.704092979431152 ], [ -73.382354736328125, -14.70466136932373 ], [ -73.385330200195256, -14.708730697631836 ], [ -73.389755249023438, -14.713371276855469 ], [ -73.392372131347656, -14.717537879943734 ], [ -73.39453125, -14.724231719970703 ], [ -73.39654541015625, -14.728511810302734 ], [ -73.397903442382812, -14.734295845031681 ], [ -73.398132324218636, -14.736702919006234 ], [ -73.4007568359375, -14.743950843810921 ], [ -73.401641845703068, -14.753863334655762 ], [ -73.403244018554688, -14.761672973632812 ], [ -73.404609680175724, -14.765315055847168 ], [ -73.406875610351506, -14.768740653991699 ], [ -73.408042907714787, -14.770112991333008 ], [ -73.409179687499943, -14.771034240722656 ], [ -73.412033081054631, -14.771715164184513 ], [ -73.412979125976506, -14.771557807922363 ], [ -73.4154052734375, -14.770552635192871 ], [ -73.415946960449162, -14.770619392394963 ], [ -73.416336059570256, -14.771126747131291 ], [ -73.418449401855355, -14.772148132324162 ], [ -73.423957824706974, -14.776847839355469 ], [ -73.430656433105355, -14.780083656310978 ], [ -73.433395385742131, -14.781918525695801 ], [ -73.434951782226562, -14.783466339111328 ], [ -73.436912536621037, -14.78409290313715 ], [ -73.437995910644418, -14.784724235534554 ], [ -73.439468383789062, -14.786667823791447 ], [ -73.439857482910156, -14.788233757018986 ], [ -73.440544128417912, -14.789558410644531 ], [ -73.449516296386662, -14.799289703369141 ], [ -73.450714111328125, -14.801575660705566 ], [ -73.452178955078068, -14.803203582763672 ], [ -73.452812194824219, -14.80439281463623 ], [ -73.453483581542969, -14.806315422058105 ], [ -73.453659057617188, -14.808121681213322 ], [ -73.45489501953125, -14.811556816101074 ], [ -73.455490112304688, -14.81541728973383 ], [ -73.454658508300724, -14.818813323974609 ], [ -73.457336425781193, -14.82136058807373 ], [ -73.457954406738281, -14.822214126586914 ], [ -73.458602905273438, -14.826640129089355 ], [ -73.458969116210881, -14.827202796935978 ], [ -73.461128234863281, -14.829059600830021 ], [ -73.461555480956918, -14.832010269165039 ], [ -73.462669372558537, -14.833698272705078 ], [ -73.463119506835938, -14.837035179138184 ], [ -73.464546203613281, -14.83964729309082 ], [ -73.465141296386662, -14.840023040771428 ], [ -73.465682983398438, -14.840082168579045 ], [ -73.468193054199162, -14.838958740234375 ], [ -73.468688964843693, -14.838473320007267 ], [ -73.470901489257699, -14.838389396667424 ], [ -73.476852416992188, -14.840605735778695 ], [ -73.478347778320312, -14.840823173522949 ], [ -73.483238220214844, -14.842655181884766 ], [ -73.485176086425724, -14.842471122741699 ], [ -73.486320495605412, -14.842017173767033 ], [ -73.491798400878906, -14.837089538574162 ], [ -73.494087219238281, -14.835802078247013 ], [ -73.495857238769474, -14.832777976989689 ], [ -73.498306274414062, -14.830218315124512 ], [ -73.498733520507756, -14.829369544982853 ], [ -73.499603271484261, -14.82848072052002 ], [ -73.500511169433594, -14.828216552734318 ], [ -73.501625061035156, -14.828224182128849 ], [ -73.502220153808594, -14.828470230102425 ], [ -73.503295898437443, -14.828216552734318 ], [ -73.506843566894474, -14.826143264770508 ], [ -73.509895324706974, -14.824906349182072 ], [ -73.510734558105412, -14.824984550476074 ], [ -73.511810302734261, -14.82565975189209 ], [ -73.513031005859318, -14.825967788696232 ], [ -73.513809204101506, -14.825798988342285 ], [ -73.514656066894474, -14.825261116027832 ], [ -73.514831542968693, -14.824793815612793 ], [ -73.514106750488281, -14.823631286621037 ], [ -73.514007568359261, -14.822702407836914 ], [ -73.515045166015568, -14.820510864257699 ], [ -73.515708923339787, -14.817081451416016 ], [ -73.516693115234375, -14.816109657287541 ], [ -73.517959594726562, -14.815567970275822 ], [ -73.519142150878849, -14.814556121826172 ], [ -73.519477844238281, -14.813614845275879 ], [ -73.519210815429688, -14.811581611633301 ], [ -73.519447326660156, -14.811420440673771 ], [ -73.52069091796875, -14.811545372009277 ], [ -73.521057128906193, -14.811340332031193 ], [ -73.521209716796875, -14.809621810913086 ], [ -73.521499633789062, -14.809011459350529 ], [ -73.524200439453068, -14.806703567504826 ], [ -73.524772644042912, -14.805938720703125 ], [ -73.525009155273438, -14.805027008056584 ], [ -73.527435302734318, -14.803036689758301 ], [ -73.528388977050724, -14.80158805847168 ], [ -73.52993011474598, -14.800955772399902 ], [ -73.530830383300781, -14.80012226104725 ], [ -73.532104492187443, -14.800022125244141 ], [ -73.533615112304631, -14.799443244934025 ], [ -73.5362548828125, -14.800281524658146 ], [ -73.540473937988281, -14.80101299285883 ], [ -73.541229248046875, -14.801370620727482 ], [ -73.542388916015568, -14.802517890930176 ], [ -73.543174743652287, -14.802829742431584 ], [ -73.547447204589787, -14.80237865447998 ], [ -73.548782348632756, -14.8020982742309 ], [ -73.549537658691406, -14.801704406738224 ], [ -73.551498413085938, -14.799123764038086 ], [ -73.551795959472656, -14.798220634460449 ], [ -73.551933288574162, -14.796213150024357 ], [ -73.553619384765625, -14.794092178344727 ], [ -73.553596496582031, -14.792329788207894 ], [ -73.553237915039062, -14.79130744934082 ], [ -73.553421020507812, -14.789815902709904 ], [ -73.555763244628849, -14.788194656372013 ], [ -73.556571960449219, -14.786039352416992 ], [ -73.558204650878906, -14.78386116027832 ], [ -73.560516357421818, -14.782990455627441 ], [ -73.56231689453125, -14.780941009521484 ], [ -73.563735961914062, -14.77912712097168 ], [ -73.564826965331974, -14.776654243469181 ], [ -73.565452575683594, -14.775897026062012 ], [ -73.565109252929631, -14.775444030761719 ], [ -73.565055847167969, -14.774909973144474 ], [ -73.565582275390568, -14.773386001586914 ], [ -73.564613342285099, -14.771754264831429 ], [ -73.56439208984375, -14.77098560333252 ], [ -73.563385009765568, -14.764606475830021 ], [ -73.563400268554631, -14.762317657470646 ], [ -73.564102172851562, -14.759575843810978 ], [ -73.564201354980469, -14.758076667785645 ], [ -73.562812805175724, -14.755782127380371 ], [ -73.562461853027344, -14.754622459411621 ], [ -73.562576293945312, -14.753401756286621 ], [ -73.563934326171875, -14.750464439392033 ], [ -73.564422607421818, -14.748232841491699 ], [ -73.564132690429631, -14.746911048889046 ], [ -73.562408447265625, -14.74384593963623 ], [ -73.562324523925724, -14.742661476135254 ], [ -73.562690734863281, -14.739192008972168 ], [ -73.563148498535156, -14.737947463989201 ], [ -73.563201904296818, -14.736204147338867 ], [ -73.563568115234318, -14.735176086425781 ], [ -73.564933776855355, -14.734054565429688 ], [ -73.5672607421875, -14.733751296997013 ], [ -73.568046569824162, -14.733405113220158 ], [ -73.568489074707031, -14.729956626892033 ], [ -73.571014404296818, -14.727485656738281 ], [ -73.570762634277344, -14.726543426513615 ], [ -73.569755554199219, -14.726129531860295 ], [ -73.569236755371094, -14.725665092468205 ], [ -73.568962097167969, -14.723098754882812 ], [ -73.569038391113281, -14.720984458923283 ], [ -73.569763183593693, -14.720535278320256 ], [ -73.572738647460881, -14.720517158508301 ], [ -73.573600769042912, -14.720215797424316 ], [ -73.574501037597656, -14.719092369079533 ], [ -73.576087951660043, -14.716334342956486 ], [ -73.577041625976449, -14.713936805725098 ], [ -73.577125549316349, -14.712662696838322 ], [ -73.576881408691406, -14.712093353271484 ], [ -73.57611083984375, -14.71171665191639 ], [ -73.573562622070312, -14.711157798767033 ], [ -73.572593688964844, -14.709218978881836 ], [ -73.571411132812443, -14.708287239074593 ], [ -73.571182250976562, -14.707790374755859 ], [ -73.571266174316406, -14.706842422485295 ], [ -73.572975158691406, -14.705289840698242 ], [ -73.573066711425781, -14.703543663024846 ], [ -73.575164794921875, -14.701054573059082 ], [ -73.575042724609261, -14.699849128723145 ], [ -73.573783874511662, -14.698983192443848 ], [ -73.573577880859318, -14.698505401611271 ], [ -73.573760986328125, -14.697149276733285 ], [ -73.574882507324219, -14.696387290954533 ], [ -73.574989318847656, -14.695331573486328 ], [ -73.573532104492188, -14.694888114929086 ], [ -73.571594238281193, -14.694867134094238 ], [ -73.570564270019531, -14.693948745727539 ], [ -73.57037353515625, -14.693611145019531 ], [ -73.570533752441349, -14.692925453185978 ], [ -73.571571350097599, -14.69227123260498 ], [ -73.572082519531136, -14.691489219665527 ], [ -73.571739196777344, -14.690313339233398 ], [ -73.571624755859375, -14.687628746032658 ], [ -73.571052551269531, -14.686395645141602 ], [ -73.569007873535099, -14.68479061126709 ], [ -73.567634582519531, -14.684178352355957 ], [ -73.564598083496094, -14.683940887451058 ], [ -73.562133789062443, -14.682217597961369 ], [ -73.55950927734375, -14.681379318237248 ], [ -73.553001403808537, -14.681392669677734 ], [ -73.550720214843636, -14.680900573730469 ], [ -73.546890258789006, -14.678750991821289 ], [ -73.543869018554688, -14.676600456237793 ], [ -73.541389465332031, -14.674206733703556 ], [ -73.540351867675781, -14.673803329467773 ], [ -73.539245605468693, -14.673660278320312 ], [ -73.537590026855469, -14.674282073974553 ], [ -73.535659790039062, -14.674395561218262 ], [ -73.53365325927723, -14.675305366516113 ], [ -73.531181335449219, -14.675605773925781 ], [ -73.53033447265625, -14.676061630248967 ], [ -73.525741577148438, -14.677009582519531 ], [ -73.52490234375, -14.676994323730469 ], [ -73.523216247558594, -14.676397323608398 ], [ -73.521690368652344, -14.67617130279541 ], [ -73.520538330078125, -14.676486015319824 ], [ -73.518280029296818, -14.677837371826058 ], [ -73.517211914062443, -14.678129196166992 ], [ -73.515968322753906, -14.678068161010685 ], [ -73.515350341796875, -14.677358627319336 ], [ -73.516151428222656, -14.67279052734375 ], [ -73.516494750976562, -14.671779632568359 ], [ -73.517898559570256, -14.669649124145451 ], [ -73.518104553222543, -14.66831111907959 ], [ -73.518013000488168, -14.666963577270508 ], [ -73.517333984374943, -14.665060997009277 ], [ -73.514595031738281, -14.661192893981877 ], [ -73.514183044433537, -14.660059928893986 ], [ -73.511688232421818, -14.655878067016602 ], [ -73.51080322265625, -14.653639793395996 ], [ -73.509689331054631, -14.647567749023438 ], [ -73.509773254394474, -14.641239166259766 ], [ -73.510322570800781, -14.639571189880257 ], [ -73.511131286621037, -14.638023376464844 ], [ -73.512123107910156, -14.634260177612305 ], [ -73.514190673828068, -14.629717826843205 ], [ -73.515777587890625, -14.627216339111328 ], [ -73.518409729003906, -14.624275207519531 ], [ -73.519889831542912, -14.621556282043457 ], [ -73.522209167480355, -14.614818572998047 ], [ -73.527214050292969, -14.602611541748047 ], [ -73.527793884277344, -14.600690841674805 ], [ -73.528327941894531, -14.597114562988281 ], [ -73.529418945312443, -14.594364166259709 ], [ -73.529975891113281, -14.591738700866699 ], [ -73.532096862792912, -14.585639953613281 ], [ -73.533111572265625, -14.583649635314941 ], [ -73.533439636230412, -14.580848693847543 ], [ -73.533058166503849, -14.57957935333252 ], [ -73.531822204589787, -14.577610015869027 ], [ -73.527885437011719, -14.573826789855957 ], [ -73.525680541992188, -14.57203102111805 ], [ -73.524208068847543, -14.571283340454102 ], [ -73.522727966308594, -14.570875167846623 ], [ -73.519172668457031, -14.570499420166016 ], [ -73.515426635742131, -14.567520141601562 ], [ -73.51336669921875, -14.566811561584473 ], [ -73.512344360351562, -14.565683364868164 ], [ -73.511703491210881, -14.563492774963322 ], [ -73.511718749999886, -14.558802604675293 ], [ -73.511032104492131, -14.554683685302678 ], [ -73.510589599609375, -14.548661231994629 ], [ -73.510047912597656, -14.547284126281681 ], [ -73.508880615234375, -14.545587539672795 ], [ -73.507072448730469, -14.54413890838623 ], [ -73.508728027343693, -14.54207801818842 ], [ -73.509407043456974, -14.540754318237305 ], [ -73.513160705566406, -14.536989212036133 ], [ -73.515579223632812, -14.535688400268498 ], [ -73.516502380371094, -14.535692214965707 ], [ -73.517807006835881, -14.535231590270939 ], [ -73.519622802734318, -14.533978462219238 ], [ -73.520668029785099, -14.532932281494141 ], [ -73.521247863769474, -14.531402587890625 ], [ -73.521156311035043, -14.527642250060978 ], [ -73.522018432617074, -14.524111747741699 ], [ -73.521903991699162, -14.519006729125863 ], [ -73.521560668945312, -14.5174303054809 ], [ -73.522026062011719, -14.514512062072754 ], [ -73.524696350097656, -14.511773109436035 ], [ -73.529182434082031, -14.509721755981388 ], [ -73.533142089843693, -14.506791114807129 ], [ -73.534065246582031, -14.501909255981388 ], [ -73.534683227539006, -14.50102424621582 ], [ -73.536827087402344, -14.498913764953613 ], [ -73.5372314453125, -14.498077392578125 ], [ -73.536651611328125, -14.496137619018555 ], [ -73.534645080566406, -14.492907524108887 ], [ -73.534660339355469, -14.492375373840218 ], [ -73.535118103027344, -14.491374969482365 ], [ -73.537437438964787, -14.489474296569824 ], [ -73.538528442382812, -14.487762451171818 ], [ -73.540405273437443, -14.485786437988281 ], [ -73.542068481445312, -14.484594345092773 ], [ -73.543716430664062, -14.483925819396973 ], [ -73.544563293457031, -14.483018875122013 ], [ -73.548652648925781, -14.482438087463322 ], [ -73.551498413085938, -14.480829238891545 ], [ -73.552581787109375, -14.48060131072998 ], [ -73.553977966308594, -14.480644226074219 ], [ -73.554603576660099, -14.480106353759709 ], [ -73.554443359374886, -14.478379249572754 ], [ -73.55281829833973, -14.474960327148381 ], [ -73.551673889160043, -14.470941543578988 ], [ -73.551490783691406, -14.467169761657715 ], [ -73.551643371581974, -14.463835716247559 ], [ -73.552108764648438, -14.463521003723145 ], [ -73.553497314453125, -14.46354866027832 ], [ -73.554649353027344, -14.463104248046875 ], [ -73.55657958984375, -14.463006019592285 ], [ -73.558425903320256, -14.462458610534611 ], [ -73.561126708984375, -14.460513114929199 ], [ -73.562606811523381, -14.459772109985295 ], [ -73.563827514648438, -14.459671974182129 ], [ -73.567001342773381, -14.46007061004633 ], [ -73.567794799804574, -14.459903717040959 ], [ -73.569755554199219, -14.458035469055119 ], [ -73.571823120117188, -14.454874038696289 ], [ -73.572944641113168, -14.451853752136174 ], [ -73.573348999023438, -14.447996139526367 ], [ -73.575431823730469, -14.444068908691349 ], [ -73.57574462890625, -14.443047523498478 ], [ -73.575248718261719, -14.439320564269963 ], [ -73.57354736328125, -14.434774398803654 ], [ -73.573440551757812, -14.433860778808537 ], [ -73.574371337890511, -14.431758880615178 ], [ -73.577369689941406, -14.42864990234375 ], [ -73.578811645507812, -14.426670074462891 ], [ -73.579704284667912, -14.425022125244027 ], [ -73.581840515136719, -14.418661117553654 ], [ -73.581893920898381, -14.417054176330566 ], [ -73.581550598144531, -14.415884971618652 ], [ -73.580703735351562, -14.416295051574707 ], [ -73.579757690429688, -14.416355133056641 ], [ -73.574119567871094, -14.415884971618652 ], [ -73.571220397949162, -14.414976119995117 ], [ -73.567626953125, -14.413252830505314 ], [ -73.5625, -14.411641120910645 ], [ -73.560813903808537, -14.410488128662053 ], [ -73.558784484863281, -14.408623695373478 ], [ -73.558204650878906, -14.407707214355469 ], [ -73.556480407714844, -14.403602600097656 ], [ -73.554222106933537, -14.400895118713322 ], [ -73.553688049316406, -14.39880466461176 ], [ -73.553627014160156, -14.395947456359806 ], [ -73.554794311523381, -14.39030647277832 ], [ -73.5545654296875, -14.389398574828988 ], [ -73.554756164550781, -14.385505676269474 ], [ -73.554489135742188, -14.383660316467285 ], [ -73.553581237792855, -14.380544662475586 ], [ -73.553550720214787, -14.378537178039551 ], [ -73.552566528320312, -14.377410888671818 ], [ -73.549331665039062, -14.375600814819336 ], [ -73.548385620117188, -14.374265670776367 ], [ -73.548202514648438, -14.373343467712402 ], [ -73.548477172851562, -14.368923187255803 ], [ -73.547630310058594, -14.367202758789006 ], [ -73.544776916503849, -14.365946769714299 ], [ -73.542243957519531, -14.365324974060059 ], [ -73.540283203125, -14.364056587219238 ], [ -73.537101745605469, -14.360999107360783 ], [ -73.534614562988281, -14.357124328613281 ], [ -73.533523559570256, -14.35450553894043 ], [ -73.531318664550781, -14.345120429992619 ], [ -73.530830383300781, -14.342059135437012 ], [ -73.530479431152287, -14.336281776428223 ], [ -73.529563903808594, -14.332074165344238 ], [ -73.529685974121094, -14.328713417053166 ], [ -73.529106140136719, -14.326357841491642 ], [ -73.527503967285156, -14.322912216186467 ], [ -73.527053833007756, -14.321084022521916 ], [ -73.526123046875, -14.318973541259652 ], [ -73.524757385253849, -14.316641807556096 ], [ -73.523040771484318, -14.314497947692871 ], [ -73.52154541015625, -14.313132286071664 ], [ -73.519218444824162, -14.312240600585938 ], [ -73.518081665039006, -14.311448097228947 ], [ -73.517181396484375, -14.309806823730412 ], [ -73.516593933105469, -14.306215286254826 ], [ -73.5162353515625, -14.305326461791992 ], [ -73.51611328125, -14.302639007568303 ], [ -73.514488220214844, -14.298498153686467 ], [ -73.514564514160099, -14.297281265258789 ], [ -73.515411376953068, -14.294862747192326 ], [ -73.515449523925781, -14.293107986450195 ], [ -73.514831542968693, -14.290764808654671 ], [ -73.514846801757756, -14.288614273071289 ], [ -73.513694763183537, -14.285866737365666 ], [ -73.513046264648381, -14.282970428466797 ], [ -73.513038635253849, -14.275044441223145 ], [ -73.511489868164006, -14.26899528503418 ], [ -73.511688232421818, -14.2685546875 ], [ -73.512931823730412, -14.267921447753849 ], [ -73.513809204101506, -14.267066955566349 ], [ -73.515312194824162, -14.264671325683537 ], [ -73.517112731933594, -14.263715744018555 ], [ -73.517791748046818, -14.263023376464844 ], [ -73.517906188964787, -14.261434555053711 ], [ -73.517349243164062, -14.260202407836914 ], [ -73.51727294921875, -14.259523391723633 ], [ -73.517776489257812, -14.258902549743652 ], [ -73.5189208984375, -14.258456230163517 ], [ -73.519332885742131, -14.257918357849121 ], [ -73.519447326660156, -14.25684928894043 ], [ -73.518997192382812, -14.253776550292969 ], [ -73.519317626953068, -14.252928733825627 ], [ -73.520484924316349, -14.251182556152344 ], [ -73.520706176757812, -14.250178337097111 ], [ -73.520278930664006, -14.249002456664982 ], [ -73.518821716308594, -14.247374534606934 ], [ -73.518600463867188, -14.246108055114746 ], [ -73.519721984863224, -14.244876861572266 ], [ -73.518760681152287, -14.243081092834359 ], [ -73.518524169921875, -14.241587638854924 ], [ -73.518997192382812, -14.240370750427246 ], [ -73.520568847656193, -14.238130569457951 ], [ -73.520545959472656, -14.236656188964787 ], [ -73.521232604980412, -14.235649108886719 ], [ -73.521636962890511, -14.233950614929142 ], [ -73.522949218749943, -14.231436729431152 ], [ -73.523223876953068, -14.228762626647949 ], [ -73.523887634277287, -14.228253364562988 ], [ -73.525337219238224, -14.227791786193791 ], [ -73.526298522949162, -14.227707862853947 ], [ -73.527809143066349, -14.227960586547852 ], [ -73.528289794921818, -14.227728843688965 ], [ -73.528724670410156, -14.226585388183594 ], [ -73.529006958007812, -14.224822998046818 ], [ -73.528945922851506, -14.224055290222054 ], [ -73.528152465820312, -14.222612380981445 ], [ -73.528228759765625, -14.221925735473576 ], [ -73.528594970703011, -14.221367835998535 ], [ -73.529777526855469, -14.220425605773926 ], [ -73.533103942871094, -14.219142913818359 ], [ -73.533531188964787, -14.218432426452523 ], [ -73.533988952636719, -14.216879844665471 ], [ -73.535331726074162, -14.215703964233342 ], [ -73.536338806152344, -14.215312004089355 ], [ -73.537864685058594, -14.215558052062988 ], [ -73.538200378417912, -14.215415000915527 ], [ -73.538841247558594, -14.214487075805607 ], [ -73.539009094238281, -14.212498664855957 ], [ -73.540290832519474, -14.211965560913086 ], [ -73.541450500488224, -14.210625648498478 ], [ -73.543273925781193, -14.209424972534123 ], [ -73.543464660644474, -14.208785057067814 ], [ -73.543144226074219, -14.205953598022461 ], [ -73.544822692871094, -14.204038619995117 ], [ -73.544822692871094, -14.203216552734375 ], [ -73.545585632324219, -14.201042175292969 ], [ -73.545333862304688, -14.197037696838379 ], [ -73.5462646484375, -14.196210861206055 ], [ -73.547760009765568, -14.196680068969727 ], [ -73.548362731933594, -14.19660472869873 ], [ -73.550018310546818, -14.194246292114201 ], [ -73.551521301269531, -14.193313598632812 ], [ -73.552642822265625, -14.192280769348145 ], [ -73.553352355957031, -14.18751335144043 ], [ -73.554550170898438, -14.185529708862305 ], [ -73.555564880371037, -14.184635162353516 ], [ -73.555923461914062, -14.183759689330998 ], [ -73.556251525878793, -14.1817626953125 ], [ -73.556198120117188, -14.178953170776367 ], [ -73.557121276855469, -14.177925109863168 ], [ -73.558242797851506, -14.175608634948617 ], [ -73.558723449706974, -14.175395011901799 ], [ -73.559837341308594, -14.175440788269043 ], [ -73.560356140136605, -14.174991607666016 ], [ -73.56097412109375, -14.173349380493164 ], [ -73.561424255371094, -14.170721054077035 ], [ -73.563743591308594, -14.169514656066895 ], [ -73.564613342285099, -14.168796539306641 ], [ -73.564834594726449, -14.165065765380859 ], [ -73.566123962402344, -14.163491249084473 ], [ -73.566871643066406, -14.16104602813715 ], [ -73.568626403808537, -14.15847015380848 ], [ -73.569244384765625, -14.156539916992131 ], [ -73.56927490234375, -14.15520191192627 ], [ -73.572448730468693, -14.150477409362793 ], [ -73.572761535644531, -14.148624420165959 ], [ -73.573348999023438, -14.148319244384766 ], [ -73.57452392578125, -14.148706436157227 ], [ -73.575584411621037, -14.148109436035156 ], [ -73.576843261718693, -14.147030830383244 ], [ -73.577522277831918, -14.145128250122013 ], [ -73.577468872070312, -14.14470195770258 ], [ -73.578590393066406, -14.142557144164982 ], [ -73.577392578124943, -14.140589714050236 ], [ -73.577285766601562, -14.139939308166504 ], [ -73.579078674316406, -14.138619422912541 ], [ -73.580001831054574, -14.137458801269474 ], [ -73.580116271972656, -14.136248588562012 ], [ -73.580551147460881, -14.135556221008301 ], [ -73.580657958984318, -14.134885787963867 ], [ -73.580070495605412, -14.133264541625977 ], [ -73.581230163574162, -14.131971359252873 ], [ -73.581634521484375, -14.13111400604248 ], [ -73.581832885742188, -14.12532901763916 ], [ -73.582916259765625, -14.122859001159611 ], [ -73.582588195800781, -14.119638442993164 ], [ -73.583213806152287, -14.118756294250488 ], [ -73.584144592285156, -14.116086959838867 ], [ -73.586158752441406, -14.113692283630314 ], [ -73.586318969726562, -14.112675666809082 ], [ -73.586181640624943, -14.110604286193791 ], [ -73.586868286132699, -14.10997486114502 ], [ -73.589584350585938, -14.108653068542424 ], [ -73.59014892578125, -14.108663558959961 ], [ -73.59063720703125, -14.109137535095101 ], [ -73.591171264648438, -14.109176635742188 ], [ -73.592025756835938, -14.10905647277832 ], [ -73.59271240234375, -14.108653068542424 ], [ -73.593978881835938, -14.107196807861328 ], [ -73.594459533691349, -14.10594272613514 ], [ -73.595748901367188, -14.104711532592717 ], [ -73.596481323242131, -14.102400779724121 ], [ -73.597732543945256, -14.10134124755848 ], [ -73.5982666015625, -14.099981307983398 ], [ -73.600624084472656, -14.097708702087402 ], [ -73.603706359863281, -14.093251228332463 ], [ -73.604263305664062, -14.092863082885742 ], [ -73.604942321777344, -14.09272384643549 ], [ -73.605911254882756, -14.092748641967773 ], [ -73.6068115234375, -14.093107223510742 ], [ -73.607734680175724, -14.092877388000375 ], [ -73.609153747558537, -14.091808319091683 ], [ -73.609146118164006, -14.091121673583928 ], [ -73.608657836914062, -14.090324401855469 ], [ -73.608879089355412, -14.089762687683049 ], [ -73.609214782714844, -14.089674949645939 ], [ -73.610443115234375, -14.090035438537598 ], [ -73.611251831054631, -14.089822769164982 ], [ -73.611297607421875, -14.088747024536133 ], [ -73.609291076660156, -14.086016654968262 ], [ -73.609176635742131, -14.085209846496582 ], [ -73.609619140625, -14.084534645080566 ], [ -73.610580444335881, -14.084413528442269 ], [ -73.611808776855469, -14.083345413207951 ], [ -73.612236022949105, -14.082064628601074 ], [ -73.612442016601562, -14.079352378845158 ], [ -73.614303588867131, -14.077383041381836 ], [ -73.6146240234375, -14.07663631439209 ], [ -73.614402770996037, -14.075027465820312 ], [ -73.613304138183594, -14.073987007141056 ], [ -73.613151550292912, -14.073337554931641 ], [ -73.615150451660156, -14.070293426513672 ], [ -73.615386962890625, -14.06895732879633 ], [ -73.616363525390625, -14.067742347717285 ], [ -73.617095947265511, -14.066000938415471 ], [ -73.618240356445199, -14.060041427612305 ], [ -73.618812561035043, -14.058129310607853 ], [ -73.623779296875, -14.052363395690861 ], [ -73.625137329101562, -14.05048942565918 ], [ -73.625595092773438, -14.049226760864144 ], [ -73.625686645507812, -14.047601699828988 ], [ -73.624359130859375, -14.046462059020939 ], [ -73.623298645019418, -14.042723655700684 ], [ -73.622428894042912, -14.041678428649846 ], [ -73.620933532714844, -14.041037559509221 ], [ -73.620376586914062, -14.040283203124943 ], [ -73.620536804199219, -14.039210319518986 ], [ -73.621116638183594, -14.037993431091195 ], [ -73.62115478515625, -14.03437614440918 ], [ -73.622093200683594, -14.032728195190316 ], [ -73.622169494628906, -14.029997825622559 ], [ -73.621910095214844, -14.028876304626465 ], [ -73.621124267578125, -14.027841567993107 ], [ -73.618865966796875, -14.025929450988656 ], [ -73.618217468261662, -14.025140762329102 ], [ -73.618515014648381, -14.024338722229004 ], [ -73.618576049804688, -14.021254539489746 ], [ -73.619033813476562, -14.020931243896428 ], [ -73.619979858398438, -14.021036148071289 ], [ -73.620285034179688, -14.020560264587402 ], [ -73.620201110839844, -14.01882266998291 ], [ -73.619499206542969, -14.016930580139103 ], [ -73.619918823242188, -14.016571044921875 ], [ -73.620872497558594, -14.01643180847168 ], [ -73.621582031249886, -14.015767097473145 ], [ -73.621780395507812, -14.01391410827631 ], [ -73.622810363769474, -14.012638092040959 ], [ -73.622367858886719, -14.010826110839787 ], [ -73.622970581054688, -14.009919166564941 ], [ -73.623146057128906, -14.008571624755859 ], [ -73.625991821289062, -14.006073951721135 ], [ -73.626693725585881, -14.005093574523926 ], [ -73.6260986328125, -14.003473281860352 ], [ -73.627235412597656, -14.001200675964355 ], [ -73.627365112304631, -14.000487327575627 ], [ -73.626022338867188, -13.996681213378906 ], [ -73.626312255859318, -13.994541168212891 ], [ -73.630630493164006, -13.991467475891056 ], [ -73.630729675292912, -13.990518569946289 ], [ -73.6304931640625, -13.990208625793457 ], [ -73.630432128906193, -13.988734245300293 ], [ -73.63287353515625, -13.986189842224064 ], [ -73.635269165039062, -13.984169006347656 ], [ -73.641273498535156, -13.980134963989258 ], [ -73.642562866210824, -13.97874927520752 ], [ -73.642745971679631, -13.977422714233398 ], [ -73.642303466796875, -13.974916458129826 ], [ -73.642295837402344, -13.966165542602539 ], [ -73.642593383789062, -13.963302612304688 ], [ -73.643203735351506, -13.961950302123967 ], [ -73.64337158203125, -13.960739135742131 ], [ -73.644172668456974, -13.958890914916935 ], [ -73.647613525390511, -13.953331947326603 ], [ -73.648483276367188, -13.9515380859375 ], [ -73.648788452148438, -13.948033332824707 ], [ -73.649246215820312, -13.946328163146973 ], [ -73.651390075683594, -13.944079399108887 ], [ -73.655220031738224, -13.941441535949707 ], [ -73.6556396484375, -13.94078540802002 ], [ -73.656181335449162, -13.939071655273438 ], [ -73.656967163085938, -13.937610626220703 ], [ -73.657119750976506, -13.933030128478947 ], [ -73.657516479492131, -13.931049346923828 ], [ -73.6588134765625, -13.928373336791935 ], [ -73.660652160644474, -13.92552661895752 ], [ -73.661834716796875, -13.924385070800781 ], [ -73.663078308105469, -13.923550605773926 ], [ -73.667411804199219, -13.921838760375977 ], [ -73.6695556640625, -13.92132568359375 ], [ -73.671134948730412, -13.920348167419434 ], [ -73.675247192382756, -13.918816566467228 ], [ -73.676826477050781, -13.918011665344238 ], [ -73.680274963378906, -13.915120124816895 ], [ -73.682167053222656, -13.9128160476684 ], [ -73.683708190917969, -13.91026592254633 ], [ -73.684761047363281, -13.907630920410099 ], [ -73.685310363769531, -13.905681610107422 ], [ -73.685554504394474, -13.903403282165471 ], [ -73.686248779296875, -13.900246620178223 ], [ -73.688278198242188, -13.894815444946232 ], [ -73.688323974609318, -13.894145011901799 ], [ -73.690681457519531, -13.890035629272404 ], [ -73.693763732910099, -13.886419296264592 ], [ -73.694244384765568, -13.885988235473633 ], [ -73.69464111328125, -13.885130882263184 ], [ -73.694862365722656, -13.882988929748535 ], [ -73.693962097167855, -13.877126693725586 ], [ -73.693817138671875, -13.87214469909668 ], [ -73.692962646484375, -13.869591712951603 ], [ -73.693077087402287, -13.869066238403263 ], [ -73.693641662597599, -13.868473052978516 ], [ -73.69354248046875, -13.864440917968693 ], [ -73.694808959960881, -13.861465454101506 ], [ -73.695854187011662, -13.860341072082463 ], [ -73.696228027343693, -13.859518051147404 ], [ -73.696151733398381, -13.858010292053223 ], [ -73.695503234863281, -13.856380462646484 ], [ -73.695449829101562, -13.855710029602051 ], [ -73.695701599121094, -13.854372024536076 ], [ -73.696357727050781, -13.853202819824219 ], [ -73.696762084960938, -13.849993705749455 ], [ -73.697059631347656, -13.849383354187012 ], [ -73.697700500488281, -13.84773063659668 ], [ -73.699447631835938, -13.845661163329964 ], [ -73.701484680175724, -13.844270706176701 ], [ -73.704948425292969, -13.842335700988713 ], [ -73.70684814453125, -13.840800285339355 ], [ -73.709648132324219, -13.83801174163807 ], [ -73.712600708007812, -13.836300849914551 ], [ -73.713973999023381, -13.835169792175293 ], [ -73.718933105468693, -13.828390121459961 ], [ -73.7197265625, -13.827840805053654 ], [ -73.721542358398438, -13.827216148376408 ], [ -73.722541809081974, -13.826473236083928 ], [ -73.723831176757812, -13.82265567779541 ], [ -73.725135803222599, -13.821089744567871 ], [ -73.725830078125, -13.819546699523869 ], [ -73.727645874023438, -13.817703247070256 ], [ -73.728858947753849, -13.81544017791748 ], [ -73.731391906738281, -13.809471130371094 ], [ -73.731903076171818, -13.806967735290527 ], [ -73.733131408691349, -13.803385734558049 ], [ -73.734893798828125, -13.799586296081543 ], [ -73.737289428710938, -13.795975685119572 ], [ -73.740661621093693, -13.792628288269043 ], [ -73.742881774902287, -13.789224624633732 ], [ -73.743751525878906, -13.786390304565316 ], [ -73.743621826171818, -13.783163070678711 ], [ -73.743255615234318, -13.781579017639103 ], [ -73.741630554199162, -13.778614044189396 ], [ -73.741500854492188, -13.777692794799748 ], [ -73.742256164550781, -13.776102066040039 ], [ -73.743019104003906, -13.7706298828125 ], [ -73.744125366210824, -13.767434120178223 ], [ -73.744987487792855, -13.765912055969238 ], [ -73.746139526367188, -13.764543533325138 ], [ -73.746871948242131, -13.763970375061035 ], [ -73.748405456542912, -13.763316154479924 ], [ -73.743133544921875, -13.759475708007812 ], [ -73.742141723632812, -13.758357048034611 ], [ -73.741371154785156, -13.756781578063965 ], [ -73.739776611328125, -13.755722045898381 ], [ -73.736434936523438, -13.754920005798283 ], [ -73.735321044921818, -13.754183769225961 ], [ -73.734489440917912, -13.754367828369084 ], [ -73.733261108398438, -13.75563812255848 ], [ -73.731613159179631, -13.756315231323185 ], [ -73.729583740234375, -13.755943298339844 ], [ -73.728103637695199, -13.756107330322209 ], [ -73.726799011230469, -13.75567626953125 ], [ -73.726249694824219, -13.755256652831918 ], [ -73.722953796386605, -13.754589080810433 ], [ -73.718818664550724, -13.751240730285588 ], [ -73.717056274414062, -13.750181198120117 ], [ -73.715774536132756, -13.749679565429688 ], [ -73.713554382324219, -13.749576568603516 ], [ -73.711921691894531, -13.749748229980469 ], [ -73.709594726562443, -13.751138687133789 ], [ -73.70770263671875, -13.751480102539062 ], [ -73.705223083496094, -13.750707626342717 ], [ -73.704254150390568, -13.750812530517578 ], [ -73.701126098632812, -13.750361442565861 ], [ -73.699180603027287, -13.749691009521428 ], [ -73.694236755371037, -13.749529838562012 ], [ -73.692970275878906, -13.748998641967717 ], [ -73.691383361816349, -13.747499465942383 ], [ -73.687980651855469, -13.746974945068359 ], [ -73.686714172363168, -13.745909690856934 ], [ -73.68646240234375, -13.744789123535156 ], [ -73.686836242675781, -13.74262809753418 ], [ -73.688362121582031, -13.740233421325627 ], [ -73.688346862792969, -13.73941707611084 ], [ -73.688049316406136, -13.738965988159123 ], [ -73.686981201171818, -13.738352775573617 ], [ -73.685340881347656, -13.738226890563908 ], [ -73.684379577636719, -13.73875617980957 ], [ -73.683021545410156, -13.74005126953125 ], [ -73.681442260742131, -13.739525794982853 ], [ -73.679794311523438, -13.739382743835392 ], [ -73.6787109375, -13.738807678222656 ], [ -73.677635192871037, -13.73854923248291 ], [ -73.674758911132756, -13.738487243652344 ], [ -73.673667907714844, -13.737903594970703 ], [ -73.67169189453125, -13.738434791564941 ], [ -73.670600891113168, -13.738213539123535 ], [ -73.670082092285156, -13.737639427185059 ], [ -73.670333862304688, -13.736719131469727 ], [ -73.670295715331974, -13.734161376953068 ], [ -73.670608520507812, -13.733429908752385 ], [ -73.671813964843693, -13.7321262359618 ], [ -73.673103332519531, -13.732060432434082 ], [ -73.673728942871037, -13.731747627258301 ], [ -73.673988342285156, -13.731295585632211 ], [ -73.674125671386605, -13.729940414428711 ], [ -73.674652099609375, -13.728995323181096 ], [ -73.675888061523438, -13.727926254272404 ], [ -73.677017211914062, -13.727415084838867 ], [ -73.680335998535156, -13.723836898803711 ], [ -73.682487487792912, -13.723350524902344 ], [ -73.685440063476506, -13.722254753112793 ], [ -73.687461853027287, -13.721109390258789 ], [ -73.689552307128849, -13.719573020935059 ], [ -73.693641662597599, -13.715591430664062 ], [ -73.698684692382812, -13.708691596984863 ], [ -73.7000732421875, -13.707387924194336 ], [ -73.701011657714787, -13.705442428588867 ], [ -73.701408386230469, -13.705063819885254 ], [ -73.703193664550724, -13.70509147644043 ], [ -73.704216003417969, -13.705892562866154 ], [ -73.705123901367074, -13.706267356872559 ], [ -73.706535339355412, -13.705822944641113 ], [ -73.707656860351562, -13.705810546875 ], [ -73.709617614746094, -13.707277297973633 ], [ -73.711463928222656, -13.70777416229248 ], [ -73.712593078613281, -13.707338333129883 ], [ -73.714332580566406, -13.705754280090275 ], [ -73.715591430664006, -13.704342842101994 ], [ -73.716049194335938, -13.703366279601994 ], [ -73.716255187988224, -13.700530052185059 ], [ -73.715782165527287, -13.697745323181152 ], [ -73.71456146240223, -13.696100234985352 ], [ -73.713752746582031, -13.694524765014592 ], [ -73.71356201171875, -13.692770004272461 ], [ -73.713783264160099, -13.691450119018555 ], [ -73.715042114257699, -13.689187049865609 ], [ -73.718070983886662, -13.686464309692383 ], [ -73.719329833984261, -13.684219360351562 ], [ -73.720092773437386, -13.683265686035156 ], [ -73.721611022949162, -13.68189811706543 ], [ -73.723220825195256, -13.681139945983887 ], [ -73.724189758300724, -13.681884765624943 ], [ -73.725685119628849, -13.683991432189941 ], [ -73.726844787597599, -13.684375762939396 ], [ -73.727745056152344, -13.684065818786564 ], [ -73.728843688964787, -13.68323898315424 ], [ -73.730461120605412, -13.680895805358887 ], [ -73.730712890625, -13.678492546081543 ], [ -73.730178833007756, -13.674620628356877 ], [ -73.728111267089844, -13.669638633728027 ], [ -73.728309631347656, -13.668572425842228 ], [ -73.728843688964787, -13.667778968811035 ], [ -73.729232788085881, -13.667629241943359 ], [ -73.731666564941406, -13.667832374572754 ], [ -73.73287200927723, -13.667467117309457 ], [ -73.733810424804631, -13.666919708251896 ], [ -73.734878540038949, -13.665678024291992 ], [ -73.737312316894531, -13.661775588989258 ], [ -73.739273071289062, -13.659343719482422 ], [ -73.740264892578125, -13.65841007232666 ], [ -73.741279602050781, -13.65801811218256 ], [ -73.743377685546875, -13.655875205993652 ], [ -73.744270324707031, -13.65556526184082 ], [ -73.745414733886719, -13.655596733093262 ], [ -73.747695922851562, -13.656476974487248 ], [ -73.749084472656136, -13.655904769897404 ], [ -73.750312805175724, -13.655912399291935 ], [ -73.752685546874943, -13.654837608337402 ], [ -73.7537841796875, -13.654671669006348 ], [ -73.755699157714844, -13.652947425842171 ], [ -73.756889343261662, -13.65037631988514 ], [ -73.75732421875, -13.650052070617619 ], [ -73.757705688476562, -13.650127410888615 ], [ -73.758003234863281, -13.649838447570801 ], [ -73.75933837890625, -13.649600982666016 ], [ -73.760513305664006, -13.648449897766056 ], [ -73.761398315429688, -13.648074150085449 ], [ -73.762619018554631, -13.648233413696289 ], [ -73.764900207519474, -13.649223327636719 ], [ -73.766098022460938, -13.649209022521916 ], [ -73.767189025878849, -13.648346900939885 ], [ -73.767341613769531, -13.647397041320744 ], [ -73.767814636230469, -13.646750450134277 ], [ -73.768470764160156, -13.64622974395752 ], [ -73.769233703613281, -13.645978927612248 ], [ -73.771438598632812, -13.64615345001215 ], [ -73.774681091308594, -13.645655632018929 ], [ -73.776473999023438, -13.64636039733881 ], [ -73.777496337890568, -13.647060394287109 ], [ -73.778884887695312, -13.647138595580998 ], [ -73.780120849609375, -13.64634895324707 ], [ -73.781715393066406, -13.644811630249023 ], [ -73.783401489257756, -13.640842437744141 ], [ -73.783859252929631, -13.640329360961914 ], [ -73.78460693359375, -13.639989852905217 ], [ -73.786262512206974, -13.640032768249512 ], [ -73.788169860839787, -13.64134407043457 ], [ -73.7896728515625, -13.641405105590763 ], [ -73.790908813476562, -13.642244338989258 ], [ -73.793235778808537, -13.642365455627328 ], [ -73.793983459472599, -13.641772270202637 ], [ -73.794227600097656, -13.641121864318734 ], [ -73.794532775878906, -13.637246131896973 ], [ -73.796684265136719, -13.633955001831055 ], [ -73.797058105468636, -13.632249832153263 ], [ -73.797767639160156, -13.630777359008789 ], [ -73.797988891601506, -13.626069068908691 ], [ -73.798233032226562, -13.625239372253361 ], [ -73.799362182617188, -13.62370777130127 ], [ -73.80377197265625, -13.619859695434513 ], [ -73.804893493652344, -13.617241859436035 ], [ -73.8074951171875, -13.614460945129395 ], [ -73.808090209960881, -13.613262176513672 ], [ -73.808021545410043, -13.612565040588379 ], [ -73.807434082031193, -13.611848831176701 ], [ -73.803314208984318, -13.608040809631348 ], [ -73.801521301269474, -13.606776237487793 ], [ -73.799209594726562, -13.605941772460938 ], [ -73.797348022460938, -13.604098320007324 ], [ -73.796653747558537, -13.602983474731388 ], [ -73.796394348144531, -13.601227760314885 ], [ -73.796676635742074, -13.598418235778752 ], [ -73.797698974609318, -13.597146987914982 ], [ -73.798660278320256, -13.595209121704102 ], [ -73.799125671386662, -13.591060638427734 ], [ -73.803009033203125, -13.584246635437012 ], [ -73.802986145019531, -13.583024978637695 ], [ -73.801834106445312, -13.581508636474609 ], [ -73.801589965820312, -13.580568313598576 ], [ -73.805198669433594, -13.576887130737305 ], [ -73.806098937988224, -13.575535774230957 ], [ -73.806533813476562, -13.574263572692871 ], [ -73.806320190429688, -13.573764801025334 ], [ -73.806358337402344, -13.572826385498047 ], [ -73.807296752929688, -13.570134162902775 ], [ -73.807472229003906, -13.568815231323242 ], [ -73.807281494140625, -13.561943054199105 ], [ -73.806571960449162, -13.560340881347656 ], [ -73.804069519042969, -13.558241844177246 ], [ -73.80340576171875, -13.556756019592285 ], [ -73.804176330566349, -13.555557250976449 ], [ -73.804397583007699, -13.554102897643929 ], [ -73.805068969726449, -13.553084373474121 ], [ -73.805839538574219, -13.551207542419377 ], [ -73.806282043456974, -13.546526908874512 ], [ -73.808952331542912, -13.542607307433968 ], [ -73.809776306152344, -13.540738105773926 ], [ -73.810173034667969, -13.536591529846135 ], [ -73.809829711914006, -13.535015106201115 ], [ -73.809791564941406, -13.533244132995605 ], [ -73.812179565429688, -13.528717994689941 ], [ -73.812171936035156, -13.527227401733398 ], [ -73.812911987304688, -13.52595329284668 ], [ -73.813079833984261, -13.522726058959961 ], [ -73.81374359130848, -13.521553993225098 ], [ -73.816009521484318, -13.519207000732365 ], [ -73.8165283203125, -13.518096923828125 ], [ -73.816581726074162, -13.516352653503418 ], [ -73.815071105956974, -13.513623237609863 ], [ -73.814201354980412, -13.51009464263916 ], [ -73.815185546875, -13.507865905761662 ], [ -73.817634582519474, -13.505366325378304 ], [ -73.817474365234375, -13.504007339477425 ], [ -73.817146301269474, -13.50318527221674 ], [ -73.816818237304688, -13.503018379211369 ], [ -73.817924499511662, -13.500140190124512 ], [ -73.818603515624943, -13.499836921691895 ], [ -73.819244384765568, -13.499161720275879 ], [ -73.821357727050724, -13.495155334472599 ], [ -73.821640014648381, -13.493992805480957 ], [ -73.821670532226562, -13.490857124328613 ], [ -73.822395324706974, -13.489368438720589 ], [ -73.822723388671875, -13.48689079284668 ], [ -73.826972961425724, -13.479009628295842 ], [ -73.827377319335881, -13.477763175964355 ], [ -73.829826354980412, -13.475372314453125 ], [ -73.831344604492188, -13.473298072814941 ], [ -73.833015441894531, -13.471796035766602 ], [ -73.833641052246037, -13.471728324890137 ], [ -73.835014343261605, -13.470903396606388 ], [ -73.835678100585824, -13.468716621398926 ], [ -73.834632873535043, -13.461645126342717 ], [ -73.836555480957031, -13.459129333496037 ], [ -73.838813781738224, -13.457522392272949 ], [ -73.839294433593693, -13.456738471984863 ], [ -73.839393615722599, -13.455823898315373 ], [ -73.838813781738224, -13.453498840331974 ], [ -73.836517333984318, -13.450694084167424 ], [ -73.83428955078125, -13.448859214782715 ], [ -73.831214904785156, -13.447279930114689 ], [ -73.829292297363168, -13.444903373718148 ], [ -73.829086303710881, -13.444195747375488 ], [ -73.829147338867188, -13.442541122436523 ], [ -73.829360961914006, -13.441827774047738 ], [ -73.830009460449219, -13.44092845916748 ], [ -73.830062866210938, -13.440296173095703 ], [ -73.827919006347599, -13.436814308166447 ], [ -73.827552795410099, -13.435273170471191 ], [ -73.827629089355469, -13.434054374694824 ], [ -73.828125, -13.433143615722656 ], [ -73.829368591308537, -13.431947708129883 ], [ -73.830268859863281, -13.429924011230412 ], [ -73.831756591796818, -13.428522109985352 ], [ -73.832298278808594, -13.427051544189453 ], [ -73.833114624023438, -13.425826072692814 ], [ -73.833915710449219, -13.42534065246582 ], [ -73.836059570312386, -13.425227165222111 ], [ -73.836677551269531, -13.424784660339242 ], [ -73.837921142578125, -13.421318054199219 ], [ -73.83935546875, -13.419734001159668 ], [ -73.839637756347656, -13.418496131896973 ], [ -73.838981628417912, -13.417643547058105 ], [ -73.837684631347543, -13.417167663574162 ], [ -73.837211608886719, -13.416278839111328 ], [ -73.838027954101506, -13.414945602416992 ], [ -73.838783264160156, -13.412878036499023 ], [ -73.839920043945312, -13.411518096923771 ], [ -73.841384887695256, -13.410231590270996 ], [ -73.84246826171875, -13.408194541931152 ], [ -73.8436279296875, -13.406636238098145 ], [ -73.843666076660099, -13.40599536895752 ], [ -73.842330932617131, -13.404678344726506 ], [ -73.842292785644531, -13.404135704040527 ], [ -73.842826843261662, -13.403476715087891 ], [ -73.843544006347656, -13.403027534484863 ], [ -73.845222473144531, -13.403153419494572 ], [ -73.8465576171875, -13.402745246887207 ], [ -73.847518920898438, -13.401871681213379 ], [ -73.847793579101449, -13.400424957275391 ], [ -73.847755432128849, -13.398681640625 ], [ -73.847122192382699, -13.39626407623291 ], [ -73.845726013183594, -13.394086837768555 ], [ -73.84478759765625, -13.391868591308537 ], [ -73.842987060546818, -13.389500617980957 ], [ -73.840927124023324, -13.388099670410156 ], [ -73.839073181152344, -13.386274337768555 ], [ -73.838340759277287, -13.38463306427002 ], [ -73.838462829589844, -13.383810043334904 ], [ -73.838356018066406, -13.382942199706918 ], [ -73.838836669921875, -13.38106632232666 ], [ -73.83892822265625, -13.379690170288086 ], [ -73.838439941406193, -13.37725830078125 ], [ -73.838325500488224, -13.372744560241699 ], [ -73.837860107421818, -13.371740341186523 ], [ -73.836318969726506, -13.370359420776367 ], [ -73.835655212402287, -13.36946964263916 ], [ -73.834861755371094, -13.367414474487248 ], [ -73.834968566894531, -13.36509895324707 ], [ -73.835823059082031, -13.363149642944222 ], [ -73.835861206054631, -13.362229347229004 ], [ -73.835205078124886, -13.360896110534668 ], [ -73.833297729492074, -13.359902381896973 ], [ -73.832656860351562, -13.359102249145508 ], [ -73.832496643066349, -13.357836723327523 ], [ -73.831710815429688, -13.355873107910156 ], [ -73.831848144531193, -13.351642608642521 ], [ -73.830253601074219, -13.349707603454533 ], [ -73.829620361328125, -13.348484039306584 ], [ -73.828994750976506, -13.345896720886174 ], [ -73.829116821289062, -13.343961715698185 ], [ -73.830001831054688, -13.34213924407959 ], [ -73.830314636230412, -13.340314865112305 ], [ -73.828567504882812, -13.337279319763184 ], [ -73.828483581542969, -13.335814476013184 ], [ -73.829902648925781, -13.333884239196721 ], [ -73.830368041992188, -13.331998825073242 ], [ -73.832405090331974, -13.330381393432617 ], [ -73.832290649414062, -13.329558372497559 ], [ -73.831520080566406, -13.328639030456486 ], [ -73.828491210937443, -13.326013565063477 ], [ -73.827507019042969, -13.325711250305119 ], [ -73.825836181640568, -13.3259019851684 ], [ -73.824035644531193, -13.324908256530705 ], [ -73.823486328125, -13.324055671691895 ], [ -73.822929382324219, -13.320363998413086 ], [ -73.822288513183594, -13.319132804870605 ], [ -73.821166992187443, -13.318024635314941 ], [ -73.819435119628849, -13.317330360412541 ], [ -73.817192077636719, -13.317255020141545 ], [ -73.816131591796761, -13.316887855529785 ], [ -73.813606262207031, -13.314427375793457 ], [ -73.81288909912098, -13.313980102539006 ], [ -73.811195373535156, -13.314016342163029 ], [ -73.809410095214844, -13.315020561218262 ], [ -73.808670043945256, -13.315026283264103 ], [ -73.80718994140625, -13.313891410827637 ], [ -73.806190490722599, -13.312529563903752 ], [ -73.80645751953125, -13.311284065246582 ], [ -73.807968139648438, -13.31006908416748 ], [ -73.808486938476506, -13.308589935302734 ], [ -73.808563232421818, -13.30749607086176 ], [ -73.807876586914062, -13.305585861206055 ], [ -73.808105468749943, -13.304040908813477 ], [ -73.810119628906136, -13.30197811126709 ], [ -73.813682556152344, -13.299283981323242 ], [ -73.814201354980412, -13.29742431640625 ], [ -73.815292358398438, -13.295928955078068 ], [ -73.816261291503906, -13.293573379516602 ], [ -73.820068359375, -13.289658546447697 ], [ -73.821044921875, -13.289120674133187 ], [ -73.821739196777287, -13.286268234252873 ], [ -73.823585510253906, -13.284351348876953 ], [ -73.823768615722656, -13.283635139465332 ], [ -73.823318481445312, -13.281755447387695 ], [ -73.822380065917969, -13.279740333557072 ], [ -73.821022033691406, -13.277646064758244 ], [ -73.820930480957031, -13.276554107666016 ], [ -73.821174621581974, -13.274701118469181 ], [ -73.821624755859318, -13.273195266723576 ], [ -73.822204589843693, -13.272255897521973 ], [ -73.822998046874886, -13.271744728088322 ], [ -73.825820922851506, -13.270827293395939 ], [ -73.826675415039062, -13.269835472106934 ], [ -73.826782226562443, -13.268923759460392 ], [ -73.826629638671875, -13.267548561096135 ], [ -73.825912475585938, -13.264968872070199 ], [ -73.825912475585938, -13.263126373290959 ], [ -73.825469970703068, -13.261331558227539 ], [ -73.823410034179688, -13.257933616638184 ], [ -73.823074340820256, -13.256792068481388 ], [ -73.823257446289006, -13.253484725952148 ], [ -73.8236083984375, -13.252942085266056 ], [ -73.8236083984375, -13.252292633056641 ], [ -73.824455261230469, -13.250180244445744 ], [ -73.824630737304688, -13.248345375061035 ], [ -73.823295593261719, -13.246930122375488 ], [ -73.821556091308537, -13.24601840972889 ], [ -73.818489074706974, -13.243750572204533 ], [ -73.816581726074162, -13.24296665191639 ], [ -73.8148193359375, -13.242704391479379 ], [ -73.814002990722599, -13.242338180541992 ], [ -73.813468933105469, -13.241810798644963 ], [ -73.813385009765625, -13.240815162658691 ], [ -73.814918518066406, -13.239459037780705 ], [ -73.815040588378906, -13.239114761352539 ], [ -73.814567565917912, -13.238679885864201 ], [ -73.813369750976562, -13.238501548767033 ], [ -73.812332153320312, -13.237565040588379 ], [ -73.811439514160099, -13.236061096191349 ], [ -73.810493469238224, -13.233842849731445 ], [ -73.809822082519474, -13.231532096862736 ], [ -73.809524536132756, -13.228152275085449 ], [ -73.809562683105469, -13.226225852966195 ], [ -73.810089111328068, -13.225052833557129 ], [ -73.808998107910156, -13.223121643066406 ], [ -73.808967590331974, -13.222409248352051 ], [ -73.808395385742131, -13.221791267394906 ], [ -73.808189392089787, -13.221073150634709 ], [ -73.808586120605412, -13.220371246337891 ], [ -73.808616638183594, -13.218625068664494 ], [ -73.809371948242188, -13.216064453125 ], [ -73.809257507324162, -13.215149879455566 ], [ -73.808746337890625, -13.214495658874398 ], [ -73.807800292968693, -13.213905334472656 ], [ -73.807136535644474, -13.21389198303217 ], [ -73.804954528808537, -13.214433670043945 ], [ -73.802360534667912, -13.215496063232422 ], [ -73.801429748535099, -13.215383529663086 ], [ -73.800483703613224, -13.214782714843693 ], [ -73.800117492675781, -13.213171005249023 ], [ -73.799476623535156, -13.211829185485726 ], [ -73.799369812011719, -13.209533691406193 ], [ -73.798881530761719, -13.208447456359863 ], [ -73.798988342285156, -13.205853462219181 ], [ -73.799354553222656, -13.204471588134709 ], [ -73.799224853515568, -13.202437400817871 ], [ -73.796615600585938, -13.200344085693359 ], [ -73.794784545898438, -13.199423789977971 ], [ -73.793937683105469, -13.198694229125977 ], [ -73.792388916015625, -13.198028564453125 ], [ -73.791793823242131, -13.197439193725586 ], [ -73.791854858398438, -13.196669578552246 ], [ -73.793540954589844, -13.194473266601506 ], [ -73.793495178222599, -13.193667411804199 ], [ -73.792663574218693, -13.193528175353947 ], [ -73.791305541992131, -13.192707061767578 ], [ -73.788398742675781, -13.192774772644043 ], [ -73.787300109863224, -13.192524909973145 ], [ -73.785552978515625, -13.191459655761719 ], [ -73.783546447753906, -13.189797401428223 ], [ -73.780128479003906, -13.187708854675293 ], [ -73.77783203125, -13.186477661132756 ], [ -73.774856567382812, -13.185359001159668 ], [ -73.773628234863281, -13.184351921081486 ], [ -73.772491455078125, -13.182527542114144 ], [ -73.772140502929631, -13.18101692199707 ], [ -73.772422790527287, -13.17872238159174 ], [ -73.774002075195312, -13.175998687744141 ], [ -73.773857116699162, -13.175483703613224 ], [ -73.772911071777287, -13.174565315246525 ], [ -73.770820617675724, -13.174068450927678 ], [ -73.768730163574105, -13.174391746520996 ], [ -73.76644134521473, -13.17373085021967 ], [ -73.762641906738281, -13.17194938659668 ], [ -73.761146545410156, -13.171744346618596 ], [ -73.758491516113224, -13.170870780944824 ], [ -73.755302429199219, -13.170656204223633 ], [ -73.754295349121037, -13.170777320861816 ], [ -73.750869750976506, -13.171982765197697 ], [ -73.747611999511719, -13.173611640930119 ], [ -73.74700927734375, -13.174186706542969 ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-ARE", "NAME_0": "Peru", "ID_1": 4, "NAME_1": "Arequipa", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.234306335449219, -16.416250228881836 ], [ -73.234306335449219, -16.416528701782113 ], [ -73.233474731445312, -16.416528701782113 ], [ -73.233474731445312, -16.417638778686467 ], [ -73.233749389648438, -16.417638778686467 ], [ -73.233749389648438, -16.417917251586914 ], [ -73.234024047851562, -16.417917251586914 ], [ -73.234024047851562, -16.418195724487305 ], [ -73.234306335449219, -16.418195724487305 ], [ -73.234306335449219, -16.418472290039006 ], [ -73.23458099365223, -16.418472290039006 ], [ -73.23458099365223, -16.418750762939396 ], [ -73.235420227050724, -16.418750762939396 ], [ -73.235420227050724, -16.416528701782113 ], [ -73.235969543457031, -16.416528701782113 ], [ -73.235969543457031, -16.416250228881836 ], [ -73.234306335449219, -16.416250228881836 ] ] ], [ [ [ -73.262641906738281, -16.409027099609318 ], [ -73.262641906738281, -16.409305572509709 ], [ -73.2620849609375, -16.409305572509709 ], [ -73.2620849609375, -16.409584045410099 ], [ -73.261802673339844, -16.409584045410099 ], [ -73.261802673339844, -16.409860610961914 ], [ -73.261528015136719, -16.409860610961914 ], [ -73.261528015136719, -16.411249160766545 ], [ -73.2620849609375, -16.411249160766545 ], [ -73.2620849609375, -16.410972595214844 ], [ -73.262641906738281, -16.410972595214844 ], [ -73.262641906738281, -16.410694122314453 ], [ -73.262916564941406, -16.410694122314453 ], [ -73.262916564941406, -16.410417556762638 ], [ -73.263191223144418, -16.410417556762638 ], [ -73.263191223144418, -16.409305572509709 ], [ -73.262916564941406, -16.409305572509709 ], [ -73.262916564941406, -16.409027099609318 ], [ -73.262641906738281, -16.409027099609318 ] ] ], [ [ [ -71.984489440917912, -14.635924339294377 ], [ -71.979156494140568, -14.644450187683105 ], [ -71.978614807128906, -14.644863128662109 ], [ -71.977394104003906, -14.645133972167969 ], [ -71.97650146484375, -14.645601272583008 ], [ -71.976737976074219, -14.651373863220158 ], [ -71.976554870605412, -14.652970314025765 ], [ -71.975517272949162, -14.655630111694279 ], [ -71.974777221679574, -14.656235694885254 ], [ -71.974441528320312, -14.656978607177734 ], [ -71.973686218261719, -14.657819747924805 ], [ -71.969375610351562, -14.661591529846191 ], [ -71.965530395507812, -14.663057327270508 ], [ -71.964355468749943, -14.663782119750977 ], [ -71.962882995605469, -14.666047096252441 ], [ -71.960968017578125, -14.668163299560547 ], [ -71.959877014160099, -14.670108795165959 ], [ -71.958816528320256, -14.67117786407465 ], [ -71.95574951171875, -14.672394752502385 ], [ -71.952033996582031, -14.67239856719965 ], [ -71.951240539550781, -14.672677040100041 ], [ -71.95064544677723, -14.673411369323674 ], [ -71.950050354003849, -14.674918174743596 ], [ -71.95001220703125, -14.677727699279785 ], [ -71.947708129882812, -14.679656028747559 ], [ -71.943664550781193, -14.683686256408691 ], [ -71.941024780273438, -14.685401916503906 ], [ -71.936775207519531, -14.687648773193303 ], [ -71.934158325195312, -14.688499450683537 ], [ -71.931831359863224, -14.688855171203613 ], [ -71.931297302246094, -14.68928337097168 ], [ -71.931434631347656, -14.690067291259766 ], [ -71.931938171386662, -14.690716743469181 ], [ -71.935775756835938, -14.692564964294377 ], [ -71.939376831054631, -14.695700645446777 ], [ -71.941497802734375, -14.696244239807072 ], [ -71.943733215332031, -14.698269844055062 ], [ -71.947769165039006, -14.700598716735783 ], [ -71.950492858886719, -14.703822135925236 ], [ -71.951187133789006, -14.703804016113281 ], [ -71.9520263671875, -14.70428466796875 ], [ -71.952018737792969, -14.70469856262207 ], [ -71.951484680175724, -14.705324172973576 ], [ -71.949775695800724, -14.705752372741642 ], [ -71.949188232421818, -14.706323623657227 ], [ -71.948715209960881, -14.707357406616097 ], [ -71.946769714355469, -14.709814071655217 ], [ -71.946311950683594, -14.71086215972889 ], [ -71.946266174316406, -14.71158504486084 ], [ -71.947654724121037, -14.713129997253418 ], [ -71.947883605956918, -14.714433670043945 ], [ -71.948936462402344, -14.71568489074707 ], [ -71.949539184570312, -14.71789646148676 ], [ -71.9520263671875, -14.719338417053166 ], [ -71.953056335449219, -14.721083641052189 ], [ -71.954475402832031, -14.722357749938965 ], [ -71.955047607421875, -14.723431587219181 ], [ -71.955558776855469, -14.723880767822209 ], [ -71.956245422363224, -14.723978996276855 ], [ -71.957611083984261, -14.725507736206055 ], [ -71.958290100097656, -14.727121353149414 ], [ -71.958869934082031, -14.729487419128361 ], [ -71.95867919921875, -14.730125427246094 ], [ -71.957893371581918, -14.730666160583496 ], [ -71.957862854003849, -14.731088638305607 ], [ -71.958702087402344, -14.731978416442814 ], [ -71.958839416503849, -14.73248386383051 ], [ -71.957885742187443, -14.733456611633244 ], [ -71.954734802246037, -14.734416961669922 ], [ -71.953720092773438, -14.735297203063908 ], [ -71.953804016113281, -14.735705375671273 ], [ -71.954757690429688, -14.7364501953125 ], [ -71.954498291015625, -14.737521171569824 ], [ -71.954010009765625, -14.737983703613224 ], [ -71.952781677246094, -14.738121032714844 ], [ -71.952468872070312, -14.739390373229924 ], [ -71.950851440429688, -14.740644454956055 ], [ -71.950225830078125, -14.741853713989201 ], [ -71.950164794921818, -14.74318885803217 ], [ -71.949661254882756, -14.744049072265625 ], [ -71.949104309081974, -14.744303703308105 ], [ -71.947166442871094, -14.744080543518066 ], [ -71.943107604980412, -14.745813369750977 ], [ -71.942840576171875, -14.746115684509277 ], [ -71.942840576171875, -14.7471923828125 ], [ -71.9422607421875, -14.74851131439209 ], [ -71.940505981445256, -14.749814987182617 ], [ -71.939033508300781, -14.750184059143066 ], [ -71.938598632812443, -14.750494003295898 ], [ -71.937591552734375, -14.751782417297363 ], [ -71.936935424804688, -14.754247665405217 ], [ -71.935997009277344, -14.755057334899846 ], [ -71.934646606445312, -14.755365371704102 ], [ -71.93386077880848, -14.755913734436035 ], [ -71.932601928710881, -14.75732231140131 ], [ -71.931854248046818, -14.75936222076416 ], [ -71.930740356445312, -14.760739326476937 ], [ -71.930976867675724, -14.76206111907959 ], [ -71.930892944335881, -14.763811111450082 ], [ -71.928756713867188, -14.771177291870117 ], [ -71.928871154785099, -14.772794723510742 ], [ -71.929740905761662, -14.775913238525391 ], [ -71.930114746093693, -14.779414176940918 ], [ -71.930007934570312, -14.78046703338623 ], [ -71.929222106933594, -14.781739234924316 ], [ -71.929565429687443, -14.783450126647892 ], [ -71.929420471191406, -14.784550666809025 ], [ -71.928810119628793, -14.78571605682373 ], [ -71.926216125488224, -14.787525177001953 ], [ -71.925804138183594, -14.788059234619084 ], [ -71.925697326660156, -14.788728713989258 ], [ -71.925209045410156, -14.789189338684082 ], [ -71.923759460449219, -14.790238380432129 ], [ -71.921745300292912, -14.791183471679688 ], [ -71.920562744140625, -14.79149341583252 ], [ -71.918220520019418, -14.791264533996582 ], [ -71.916366577148438, -14.792169570922852 ], [ -71.915206909179688, -14.792280197143555 ], [ -71.911651611328125, -14.791229248046761 ], [ -71.911155700683537, -14.789625167846623 ], [ -71.910491943359318, -14.789046287536621 ], [ -71.909507751464787, -14.789143562316838 ], [ -71.908599853515625, -14.789538383483887 ], [ -71.908309936523438, -14.790581703185978 ], [ -71.907829284667855, -14.791069030761719 ], [ -71.905914306640568, -14.7912340164184 ], [ -71.903938293457031, -14.791939735412598 ], [ -71.903106689453125, -14.791611671447697 ], [ -71.902153015136719, -14.790722846984863 ], [ -71.901123046874943, -14.788669586181641 ], [ -71.900733947753849, -14.788284301757812 ], [ -71.8988037109375, -14.788104057312012 ], [ -71.895637512207031, -14.789046287536621 ], [ -71.894065856933537, -14.788871765136719 ], [ -71.893539428710938, -14.788359642028809 ], [ -71.893051147460938, -14.788822174072209 ], [ -71.891418457031193, -14.789179801940861 ], [ -71.890739440917912, -14.789604187011662 ], [ -71.889076232910156, -14.792705535888672 ], [ -71.886840820312443, -14.795084953308049 ], [ -71.883987426757699, -14.797631263732853 ], [ -71.882133483886719, -14.798542976379395 ], [ -71.879676818847599, -14.799097061157113 ], [ -71.878852844238281, -14.799492835998535 ], [ -71.878082275390625, -14.800801277160645 ], [ -71.877220153808594, -14.803487777709847 ], [ -71.874359130859375, -14.80604076385498 ], [ -71.873870849609318, -14.808103561401367 ], [ -71.873558044433537, -14.811068534851074 ], [ -71.873756408691349, -14.817248344421387 ], [ -71.8731689453125, -14.818910598754826 ], [ -71.872589111328125, -14.82425594329834 ], [ -71.871772766113224, -14.825933456420898 ], [ -71.870018005371094, -14.827645301818848 ], [ -71.868942260742188, -14.82983303070057 ], [ -71.868713378906193, -14.831020355224609 ], [ -71.868942260742188, -14.834909439086914 ], [ -71.868766784667969, -14.835562705993652 ], [ -71.865516662597656, -14.84134483337391 ], [ -71.864883422851506, -14.843402862548828 ], [ -71.86492919921875, -14.844071388244572 ], [ -71.864410400390568, -14.845337867736816 ], [ -71.857437133789006, -14.851239204406625 ], [ -71.8551025390625, -14.854401588439941 ], [ -71.854797363281193, -14.857485771179086 ], [ -71.855422973632812, -14.859814643859806 ], [ -71.856391906738224, -14.862057685852051 ], [ -71.859558105468693, -14.86805152893055 ], [ -71.862281799316406, -14.871060371398869 ], [ -71.863548278808537, -14.873182296752873 ], [ -71.863571166992131, -14.875204086303597 ], [ -71.862663269042969, -14.878452301025391 ], [ -71.861366271972599, -14.881269454955998 ], [ -71.859733581542912, -14.883440971374512 ], [ -71.858795166015568, -14.884230613708496 ], [ -71.854614257812386, -14.886321067810059 ], [ -71.852218627929631, -14.887914657592773 ], [ -71.849830627441349, -14.888568878173771 ], [ -71.847213745117188, -14.888578414916992 ], [ -71.843353271484318, -14.887503623962346 ], [ -71.841285705566406, -14.887312889099064 ], [ -71.839767456054688, -14.887383460998421 ], [ -71.837059020996037, -14.887914657592773 ], [ -71.830398559570312, -14.887731552124023 ], [ -71.829048156738224, -14.887803077697754 ], [ -71.828559875488224, -14.888039588928166 ], [ -71.82708740234375, -14.889707565307617 ], [ -71.826698303222656, -14.891299247741699 ], [ -71.827621459960824, -14.892721176147404 ], [ -71.830207824707031, -14.89559268951416 ], [ -71.830932617187443, -14.897601127624455 ], [ -71.830947875976506, -14.89900016784668 ], [ -71.829612731933537, -14.90169620513916 ], [ -71.82924652099598, -14.904221534729004 ], [ -71.828369140624943, -14.905021667480469 ], [ -71.826538085937443, -14.906069755554199 ], [ -71.824020385742188, -14.907181739807129 ], [ -71.821388244628849, -14.90728855133051 ], [ -71.8193359375, -14.907089233398381 ], [ -71.814117431640625, -14.905753135681152 ], [ -71.811401367187443, -14.904766082763672 ], [ -71.809379577636662, -14.903593063354435 ], [ -71.807136535644531, -14.901801109313908 ], [ -71.803947448730412, -14.900174140930176 ], [ -71.800460815429688, -14.897527694702148 ], [ -71.79827880859375, -14.896384239196721 ], [ -71.797340393066406, -14.896113395690804 ], [ -71.793876647949219, -14.897055625915471 ], [ -71.792915344238281, -14.897808074951172 ], [ -71.791328430175781, -14.899872779846135 ], [ -71.790611267089787, -14.903834342956429 ], [ -71.789833068847599, -14.906135559081974 ], [ -71.788619995117074, -14.908548355102482 ], [ -71.785934448242131, -14.911626815795842 ], [ -71.77584075927723, -14.919977188110352 ], [ -71.76788330078125, -14.927830696105957 ], [ -71.765914916992131, -14.928840637206974 ], [ -71.763763427734375, -14.929306030273381 ], [ -71.76116943359375, -14.930570602416992 ], [ -71.754417419433594, -14.932956695556641 ], [ -71.7528076171875, -14.933730125427246 ], [ -71.751579284667912, -14.934604644775391 ], [ -71.750030517578125, -14.936352729797363 ], [ -71.749839782714844, -14.939555168151855 ], [ -71.749320983886662, -14.940801620483342 ], [ -71.748382568359375, -14.94514083862299 ], [ -71.748435974121037, -14.946488380432072 ], [ -71.748771667480469, -14.94752311706543 ], [ -71.750839233398381, -14.950222015380859 ], [ -71.754753112792912, -14.952498435974121 ], [ -71.756568908691349, -14.953987121581974 ], [ -71.757728576660156, -14.955294609069824 ], [ -71.758468627929631, -14.957337379455566 ], [ -71.75958251953125, -14.964115142822209 ], [ -71.760406494140625, -14.966266632080078 ], [ -71.763641357421875, -14.97093677520752 ], [ -71.766532897949219, -14.97346019744873 ], [ -71.767997741699162, -14.975230216979924 ], [ -71.769523620605412, -14.97780799865717 ], [ -71.770210266113168, -14.979578971862793 ], [ -71.770423889160156, -14.981838226318303 ], [ -71.769973754882812, -14.984641075134277 ], [ -71.766639709472656, -14.989089965820256 ], [ -71.764724731445312, -14.992799758911133 ], [ -71.764823913574219, -14.994831085205021 ], [ -71.766212463378906, -14.998356819152775 ], [ -71.765892028808537, -14.999788284301758 ], [ -71.763847351074219, -15.003640174865609 ], [ -71.764358520507756, -15.006110191345215 ], [ -71.765251159667855, -15.007766723632812 ], [ -71.766456604003849, -15.00892257690424 ], [ -71.767402648925781, -15.009443283080998 ], [ -71.770675659179631, -15.010003089904728 ], [ -71.778060913085938, -15.012301445007324 ], [ -71.781211853027344, -15.012761116027775 ], [ -71.788291931152344, -15.01461219787592 ], [ -71.789405822753906, -15.014602661132812 ], [ -71.790313720703068, -15.015192985534611 ], [ -71.792808532714787, -15.015363693237248 ], [ -71.799957275390568, -15.019473075866699 ], [ -71.804679870605469, -15.02053260803217 ], [ -71.808319091796875, -15.021847724914494 ], [ -71.810005187988281, -15.022746086120549 ], [ -71.811683654785099, -15.023962974548283 ], [ -71.820373535156136, -15.031721115112305 ], [ -71.823593139648381, -15.03403377532959 ], [ -71.83489990234375, -15.038798332214355 ], [ -71.8385009765625, -15.041753768920898 ], [ -71.840065002441406, -15.042625427246094 ], [ -71.841430664062443, -15.042842864990234 ], [ -71.847099304199219, -15.04254245758051 ], [ -71.848526000976562, -15.043058395385742 ], [ -71.849365234374886, -15.043965339660588 ], [ -71.849647521972599, -15.044726371765137 ], [ -71.849716186523381, -15.047698020935059 ], [ -71.849403381347656, -15.050528526306152 ], [ -71.84893798828125, -15.052210807800236 ], [ -71.847717285156193, -15.054450988769531 ], [ -71.845825195312443, -15.057132720947266 ], [ -71.844734191894531, -15.058536529540959 ], [ -71.842926025390625, -15.060190200805607 ], [ -71.842086791992131, -15.062191009521484 ], [ -71.840286254882756, -15.065217971801758 ], [ -71.839347839355412, -15.068761825561467 ], [ -71.83880615234375, -15.072910308837834 ], [ -71.837760925292969, -15.074662208557072 ], [ -71.836715698242188, -15.075516700744572 ], [ -71.834541320800781, -15.076433181762695 ], [ -71.8306884765625, -15.076749801635742 ], [ -71.821952819824219, -15.076725006103459 ], [ -71.820182800292855, -15.077018737792912 ], [ -71.817558288574219, -15.077884674072209 ], [ -71.816436767578068, -15.07789421081543 ], [ -71.815399169921818, -15.077510833740178 ], [ -71.814636230468693, -15.076749801635742 ], [ -71.814422607421875, -15.075808525085449 ], [ -71.814552307128849, -15.074465751647949 ], [ -71.81353759765625, -15.072853088378793 ], [ -71.80963134765625, -15.071137428283635 ], [ -71.806144714355412, -15.068260192871037 ], [ -71.804855346679688, -15.067476272583008 ], [ -71.803428649902344, -15.066959381103516 ], [ -71.802047729492131, -15.066920280456543 ], [ -71.799285888671818, -15.067279815673828 ], [ -71.795524597167969, -15.069257736205998 ], [ -71.793128967285156, -15.069937705993596 ], [ -71.790916442871094, -15.069914817810059 ], [ -71.788230895996037, -15.069299697875977 ], [ -71.786430358886719, -15.06937217712391 ], [ -71.783859252929688, -15.071492195129395 ], [ -71.781623840331974, -15.075048446655273 ], [ -71.779762268066406, -15.077223777770996 ], [ -71.777244567871037, -15.079724311828556 ], [ -71.775505065917969, -15.080837249755803 ], [ -71.772987365722656, -15.08195781707758 ], [ -71.771743774414062, -15.081893920898381 ], [ -71.769515991210881, -15.080545425415039 ], [ -71.768699645996094, -15.079819679260197 ], [ -71.767745971679688, -15.078315734863281 ], [ -71.766822814941406, -15.078095436096135 ], [ -71.764678955078011, -15.079583168029785 ], [ -71.759696960449162, -15.08448314666748 ], [ -71.758285522460881, -15.085474967956486 ], [ -71.756584167480469, -15.085540771484375 ], [ -71.755638122558594, -15.085283279418888 ], [ -71.753227233886662, -15.083705902099553 ], [ -71.748077392578068, -15.081385612487736 ], [ -71.7457275390625, -15.081185340881348 ], [ -71.74298095703125, -15.080237388610783 ], [ -71.741210937499943, -15.079950332641545 ], [ -71.736747741699219, -15.08162689208973 ], [ -71.727478027343693, -15.082449913024846 ], [ -71.722991943359318, -15.083153724670353 ], [ -71.719902038574219, -15.084696769714355 ], [ -71.715011596679688, -15.088833808898926 ], [ -71.712806701660156, -15.08965873718256 ], [ -71.711997985839844, -15.089693069458008 ], [ -71.710128784179574, -15.08913516998291 ], [ -71.706390380859318, -15.089240074157715 ], [ -71.704292297363224, -15.088236808776855 ], [ -71.702369689941349, -15.088072776794377 ], [ -71.699745178222656, -15.088376045227051 ], [ -71.693527221679631, -15.090668678283691 ], [ -71.691215515136662, -15.090996742248421 ], [ -71.684730529785099, -15.090340614318848 ], [ -71.679321289062443, -15.088312149047795 ], [ -71.675704956054574, -15.088420867919922 ], [ -71.673843383789062, -15.088872909545898 ], [ -71.67022705078125, -15.090606689453125 ], [ -71.668319702148438, -15.092744827270508 ], [ -71.667480468749943, -15.096417427062931 ], [ -71.664916992187443, -15.100603103637695 ], [ -71.663406372070312, -15.106107711791992 ], [ -71.662734985351449, -15.107559204101506 ], [ -71.661666870117131, -15.109095573425293 ], [ -71.65771484375, -15.113480567932072 ], [ -71.656669616699219, -15.11522388458252 ], [ -71.647102355957031, -15.12320613861084 ], [ -71.645034790039062, -15.125369071960392 ], [ -71.644409179687443, -15.126868247985783 ], [ -71.644493103027287, -15.130769729614201 ], [ -71.644004821777287, -15.131727218627873 ], [ -71.642677307128849, -15.133316040038949 ], [ -71.635185241699219, -15.138854026794434 ], [ -71.633285522460938, -15.139656066894531 ], [ -71.629905700683537, -15.141764640808049 ], [ -71.626045227050781, -15.143594741821289 ], [ -71.619804382324162, -15.145703315734806 ], [ -71.618743896484318, -15.145812034606934 ], [ -71.616989135742188, -15.145398139953613 ], [ -71.612091064453011, -15.143175125122013 ], [ -71.609565734863281, -15.142461776733398 ], [ -71.608566284179574, -15.141751289367676 ], [ -71.605232238769531, -15.140382766723576 ], [ -71.604057312011662, -15.139273643493596 ], [ -71.602890014648438, -15.137557029724064 ], [ -71.601364135742188, -15.133625984191781 ], [ -71.600639343261662, -15.132632255554199 ], [ -71.599105834960881, -15.132228851318303 ], [ -71.595451354980469, -15.13192081451416 ], [ -71.593399047851449, -15.13152885437006 ], [ -71.592018127441406, -15.130931854247933 ], [ -71.589622497558594, -15.129423141479435 ], [ -71.588470458984375, -15.127644538879395 ], [ -71.587760925292912, -15.125323295593262 ], [ -71.587417602539062, -15.12089729309082 ], [ -71.587158203125, -15.120423316955566 ], [ -71.587165832519474, -15.117191314697209 ], [ -71.585899353027344, -15.111745834350586 ], [ -71.585754394531193, -15.108395576477051 ], [ -71.584671020507812, -15.105778694152718 ], [ -71.584625244140511, -15.103170394897461 ], [ -71.584121704101506, -15.100391387939396 ], [ -71.584640502929688, -15.097888946533203 ], [ -71.584480285644531, -15.096280097961426 ], [ -71.582717895507699, -15.093392372131348 ], [ -71.579841613769474, -15.090694427490234 ], [ -71.578521728515511, -15.088651657104492 ], [ -71.577560424804631, -15.085991859436035 ], [ -71.576980590820256, -15.081333160400334 ], [ -71.576293945312443, -15.079158782958984 ], [ -71.573928833007756, -15.074165344238224 ], [ -71.571929931640568, -15.070967674255371 ], [ -71.570632934570312, -15.06813907623291 ], [ -71.569717407226506, -15.066987991332894 ], [ -71.568153381347656, -15.065646171569767 ], [ -71.565765380859375, -15.064599990844613 ], [ -71.563957214355469, -15.064565658569279 ], [ -71.562042236328125, -15.064816474914551 ], [ -71.559219360351562, -15.065936088561955 ], [ -71.557708740234318, -15.066149711608773 ], [ -71.548988342285156, -15.071006774902287 ], [ -71.546226501464844, -15.07227611541748 ], [ -71.540565490722543, -15.073604583740178 ], [ -71.536216735839844, -15.074377059936523 ], [ -71.533309936523381, -15.07414531707758 ], [ -71.530540466308537, -15.074416160583439 ], [ -71.529624938964844, -15.074673652648869 ], [ -71.528022766113281, -15.075752258300781 ], [ -71.526611328124943, -15.0763063430785 ], [ -71.519966125488168, -15.076384544372559 ], [ -71.518424987792912, -15.077012062072754 ], [ -71.514114379882756, -15.079727172851562 ], [ -71.5130615234375, -15.079963684082031 ], [ -71.512138366699162, -15.079361915588265 ], [ -71.511611938476562, -15.077269554138184 ], [ -71.510200500488281, -15.075467109680176 ], [ -71.506774902343693, -15.072300910949593 ], [ -71.502342224121094, -15.069001197814941 ], [ -71.501235961914062, -15.067576408386174 ], [ -71.499916076660099, -15.067212104797306 ], [ -71.495758056640625, -15.067076683044377 ], [ -71.494087219238224, -15.066399574279785 ], [ -71.490219116210938, -15.062170028686523 ], [ -71.487609863281193, -15.060190200805607 ], [ -71.484977722167969, -15.056710243225098 ], [ -71.482826232910156, -15.052189826965332 ], [ -71.482353210449219, -15.050494194030705 ], [ -71.48223876953125, -15.048606872558537 ], [ -71.482353210449219, -15.04753398895258 ], [ -71.483177185058594, -15.045389175415039 ], [ -71.483650207519531, -15.042057037353516 ], [ -71.484748840331974, -15.039151191711426 ], [ -71.486526489257812, -15.036911010742188 ], [ -71.490821838378906, -15.033908843994084 ], [ -71.492546081542969, -15.033098220825138 ], [ -71.497360229492131, -15.032250404357796 ], [ -71.498619079589844, -15.031538963317871 ], [ -71.5015869140625, -15.028434753417969 ], [ -71.503585815429688, -15.02694034576416 ], [ -71.504478454589844, -15.02595043182373 ], [ -71.505119323730469, -15.024156570434513 ], [ -71.505302429199219, -15.022686958312931 ], [ -71.505104064941406, -15.018387794494572 ], [ -71.505233764648438, -15.017043113708496 ], [ -71.505699157714844, -15.016068458557129 ], [ -71.507781982421875, -15.013627052307072 ], [ -71.508758544921875, -15.011844635009766 ], [ -71.509368896484318, -15.009914398193359 ], [ -71.509513854980469, -15.008571624755746 ], [ -71.510452270507812, -15.006328582763672 ], [ -71.51033782958973, -15.004719734191895 ], [ -71.509757995605412, -15.003683090209961 ], [ -71.509727478027287, -15.002472877502385 ], [ -71.508499145507756, -14.997915267944279 ], [ -71.508209228515568, -14.995652198791504 ], [ -71.508010864257756, -14.984618186950684 ], [ -71.508338928222656, -14.979119300842228 ], [ -71.507728576660099, -14.976905822753849 ], [ -71.506736755371094, -14.975635528564396 ], [ -71.506149291992188, -14.975645065307617 ], [ -71.504783630371037, -14.976283073425236 ], [ -71.502922058105469, -14.977455139160099 ], [ -71.501594543457031, -14.978805541992131 ], [ -71.500648498535156, -14.979144096374455 ], [ -71.498199462890568, -14.979269027709961 ], [ -71.495277404785156, -14.978222846984863 ], [ -71.49273681640625, -14.977970123291016 ], [ -71.486442565917969, -14.980162620544434 ], [ -71.482185363769474, -14.981315612792969 ], [ -71.478996276855469, -14.981707572937012 ], [ -71.475776672363224, -14.981694221496525 ], [ -71.47137451171875, -14.982043266296387 ], [ -71.468948364257699, -14.98248291015625 ], [ -71.467300415039006, -14.983124732971135 ], [ -71.465896606445199, -14.982932090759277 ], [ -71.459815979003906, -14.978396415710392 ], [ -71.458244323730412, -14.977551460266113 ], [ -71.456626892089787, -14.977055549621582 ], [ -71.454841613769531, -14.977209091186467 ], [ -71.451271057128849, -14.978670120239201 ], [ -71.449485778808537, -14.97882175445551 ], [ -71.448356628417969, -14.979273796081429 ], [ -71.447784423828125, -14.980013847351017 ], [ -71.447547912597599, -14.982112884521484 ], [ -71.446456909179688, -14.984649658203125 ], [ -71.446479797363281, -14.986492156982422 ], [ -71.446128845214787, -14.988112449645939 ], [ -71.445869445800668, -14.992980003356877 ], [ -71.445571899414006, -14.993743896484375 ], [ -71.444801330566349, -14.994698524475098 ], [ -71.443290710449105, -14.995585441589355 ], [ -71.440528869628793, -14.996554374694824 ], [ -71.435836791992131, -14.997564315795898 ], [ -71.434516906738168, -14.997207641601506 ], [ -71.43255615234375, -14.997882843017521 ], [ -71.430519104003906, -14.998274803161621 ], [ -71.428779602050724, -14.999382019042912 ], [ -71.427192687988281, -15.001408576965275 ], [ -71.426856994628849, -15.002441406249943 ], [ -71.426872253417912, -15.003812789916992 ], [ -71.427291870117188, -15.004549026489258 ], [ -71.428504943847599, -15.005146026611328 ], [ -71.429809570312443, -15.006728172302189 ], [ -71.430046081542969, -15.0077610015868 ], [ -71.42987060546875, -15.009373664855957 ], [ -71.429443359374943, -15.010071754455566 ], [ -71.428482055664006, -15.010860443115121 ], [ -71.422462463378906, -15.011849403381348 ], [ -71.421493530273438, -15.012375831603947 ], [ -71.421577453613281, -15.016021728515625 ], [ -71.42120361328125, -15.016811370849609 ], [ -71.419181823730469, -15.018736839294377 ], [ -71.419052124023381, -15.022247314453125 ], [ -71.417572021484375, -15.027439117431584 ], [ -71.417556762695312, -15.031222343444767 ], [ -71.417205810546875, -15.032263755798283 ], [ -71.416389465331974, -15.03350639343256 ], [ -71.414772033691349, -15.034561157226562 ], [ -71.413124084472599, -15.034825325012093 ], [ -71.411827087402344, -15.035320281982422 ], [ -71.403999328613168, -15.040610313415527 ], [ -71.402595520019531, -15.041184425353947 ], [ -71.399879455566349, -15.041753768920898 ], [ -71.398651123046818, -15.04263782501215 ], [ -71.395721435546875, -15.048465728759766 ], [ -71.392623901367131, -15.050954818725529 ], [ -71.392402648925781, -15.051752090454102 ], [ -71.392379760742188, -15.053367614746037 ], [ -71.390663146972656, -15.055669784545898 ], [ -71.389289855956974, -15.058462142944279 ], [ -71.387413024902344, -15.060067176818791 ], [ -71.384902954101506, -15.060885429382267 ], [ -71.382102966308594, -15.062418937683049 ], [ -71.380668640136719, -15.063481330871582 ], [ -71.3798828125, -15.064367294311523 ], [ -71.378593444824219, -15.067056655883732 ], [ -71.376853942871094, -15.069483757018986 ], [ -71.376091003417969, -15.071213722229004 ], [ -71.374252319335938, -15.073747634887638 ], [ -71.371978759765625, -15.079378128051701 ], [ -71.371269226074162, -15.080385208129883 ], [ -71.370712280273381, -15.080765724182072 ], [ -71.369338989257812, -15.080960273742619 ], [ -71.36470794677723, -15.07916355133051 ], [ -71.363159179687443, -15.07885837554926 ], [ -71.36199951171875, -15.078965187072697 ], [ -71.360679626464787, -15.080209732055607 ], [ -71.360237121582031, -15.081203460693359 ], [ -71.358436584472656, -15.083430290222168 ], [ -71.355789184570312, -15.090366363525334 ], [ -71.355247497558537, -15.091301918029785 ], [ -71.354125976562386, -15.09229564666748 ], [ -71.348464965820256, -15.092159271240234 ], [ -71.346542358398438, -15.092444419860783 ], [ -71.342422485351562, -15.093967437744141 ], [ -71.339675903320312, -15.096286773681584 ], [ -71.338035583496094, -15.097205162048283 ], [ -71.334953308105355, -15.097969055175781 ], [ -71.330528259277344, -15.098420143127385 ], [ -71.329322814941349, -15.099051475524789 ], [ -71.328628540039006, -15.100655555725098 ], [ -71.328170776367131, -15.106431007385197 ], [ -71.327667236328125, -15.109205245971623 ], [ -71.325767517089787, -15.11513710021967 ], [ -71.325111389160099, -15.116592407226506 ], [ -71.324127197265625, -15.11756706237793 ], [ -71.322593688964844, -15.118498802185002 ], [ -71.320777893066406, -15.119182586669865 ], [ -71.316986083984375, -15.119959831237793 ], [ -71.315711975097656, -15.119931221008301 ], [ -71.313270568847599, -15.119465827941895 ], [ -71.310539245605355, -15.118490219116211 ], [ -71.309959411621037, -15.117742538452148 ], [ -71.308692932128849, -15.114462852478027 ], [ -71.307029724121094, -15.112152099609375 ], [ -71.305641174316349, -15.111029624938965 ], [ -71.304771423339844, -15.110617637634277 ], [ -71.29949951171875, -15.109420776367188 ], [ -71.297714233398438, -15.108434677123967 ], [ -71.296310424804631, -15.106932640075627 ], [ -71.29366302490223, -15.103306770324707 ], [ -71.289413452148438, -15.098689079284668 ], [ -71.287429809570256, -15.097014427185002 ], [ -71.283248901367131, -15.094607353210449 ], [ -71.281433105468693, -15.092781066894418 ], [ -71.277763366699219, -15.088371276855412 ], [ -71.273307800292969, -15.084715843200627 ], [ -71.272209167480469, -15.083361625671387 ], [ -71.271057128906136, -15.081239700317383 ], [ -71.268638610839787, -15.07863712310791 ], [ -71.266883850097656, -15.077869415283146 ], [ -71.263572692871094, -15.077650070190373 ], [ -71.262702941894531, -15.077213287353459 ], [ -71.261947631835938, -15.076234817504769 ], [ -71.261680603027287, -15.075029373168945 ], [ -71.264579772949219, -15.072280883788949 ], [ -71.265296936035156, -15.071346282958984 ], [ -71.265548706054688, -15.070337295532227 ], [ -71.265632629394531, -15.067856788635254 ], [ -71.267074584960938, -15.065726280212402 ], [ -71.267105102539062, -15.064921379089355 ], [ -71.266769409179574, -15.063877105712834 ], [ -71.265693664550724, -15.062822341918945 ], [ -71.264190673828011, -15.062129020690861 ], [ -71.261993408203068, -15.061887741088867 ], [ -71.259918212890625, -15.061979293823242 ], [ -71.258110046386719, -15.062400817871094 ], [ -71.257354736328125, -15.062324523925724 ], [ -71.256385803222656, -15.061559677124023 ], [ -71.254676818847656, -15.059418678283635 ], [ -71.253120422363224, -15.058068275451603 ], [ -71.248542785644474, -15.057042121887093 ], [ -71.245857238769474, -15.056159973144418 ], [ -71.243927001953125, -15.056064605712777 ], [ -71.243186950683537, -15.056459426879826 ], [ -71.242317199706974, -15.057338714599609 ], [ -71.241531372070312, -15.060303688049316 ], [ -71.239845275878849, -15.061936378479004 ], [ -71.235107421874886, -15.0628404617309 ], [ -71.233085632324162, -15.063717842101937 ], [ -71.229812622070312, -15.066605567932129 ], [ -71.228881835937443, -15.068096160888672 ], [ -71.228096008300781, -15.068942070007324 ], [ -71.226707458496037, -15.069867134094238 ], [ -71.226020812988224, -15.069087982177734 ], [ -71.225059509277287, -15.0662841796875 ], [ -71.224258422851562, -15.064862251281625 ], [ -71.224258422851562, -15.0628404617309 ], [ -71.223907470703125, -15.060976028442269 ], [ -71.221992492675781, -15.05819129943842 ], [ -71.219177246093636, -15.050166130065918 ], [ -71.218215942382756, -15.049393653869572 ], [ -71.215545654296818, -15.048707962036133 ], [ -71.21405029296875, -15.04892635345459 ], [ -71.211875915527344, -15.049819946289062 ], [ -71.207740783691406, -15.050166130065918 ], [ -71.207305908203125, -15.05047416687006 ], [ -71.207260131835824, -15.051151275634766 ], [ -71.208274841308537, -15.052060127258244 ], [ -71.208877563476449, -15.053127288818359 ], [ -71.20977783203125, -15.05678653717041 ], [ -71.209579467773438, -15.05933666229248 ], [ -71.208175659179631, -15.061146736144906 ], [ -71.207572937011719, -15.063356399536076 ], [ -71.207595825195312, -15.06443977355957 ], [ -71.208488464355412, -15.067548751830998 ], [ -71.208251953125, -15.068873405456543 ], [ -71.206993103027344, -15.071710586547852 ], [ -71.205497741699219, -15.07330226898182 ], [ -71.203254699706918, -15.076702117919922 ], [ -71.199226379394474, -15.085603713989258 ], [ -71.197311401367131, -15.088269233703613 ], [ -71.195510864257756, -15.090296745300293 ], [ -71.194046020507812, -15.090641021728516 ], [ -71.192527770996094, -15.09041786193842 ], [ -71.191497802734318, -15.090042114257812 ], [ -71.189834594726562, -15.088838577270508 ], [ -71.188316345214844, -15.088661193847599 ], [ -71.186653137206974, -15.088000297546387 ], [ -71.185119628906193, -15.087965965270939 ], [ -71.183410644531193, -15.088838577270508 ], [ -71.180938720703011, -15.091558456420842 ], [ -71.180160522460881, -15.092123031616211 ], [ -71.176185607910156, -15.093292236328125 ], [ -71.173049926757812, -15.093725204467773 ], [ -71.170120239257812, -15.094550132751408 ], [ -71.166549682617188, -15.09631443023676 ], [ -71.164947509765625, -15.097485542297363 ], [ -71.164154052734261, -15.098672866821289 ], [ -71.163970947265625, -15.102595329284668 ], [ -71.163604736328125, -15.104582786559945 ], [ -71.162803649902287, -15.107295036315918 ], [ -71.161514282226562, -15.109519004821721 ], [ -71.156639099121094, -15.114246368408203 ], [ -71.155563354492131, -15.114887237548771 ], [ -71.154640197753906, -15.1150865554809 ], [ -71.152130126953068, -15.115018844604435 ], [ -71.150840759277344, -15.115509033203125 ], [ -71.147994995117188, -15.118800163269043 ], [ -71.144920349121094, -15.121699333190918 ], [ -71.143989562988281, -15.123649597167912 ], [ -71.143997192382756, -15.126745223998967 ], [ -71.144683837890568, -15.128649711608887 ], [ -71.146713256835938, -15.131699562072697 ], [ -71.150070190429688, -15.13789176940918 ], [ -71.150726318359375, -15.138392448425293 ], [ -71.153549194335881, -15.139494895935059 ], [ -71.155525207519531, -15.140990257263127 ], [ -71.157173156738224, -15.142986297607422 ], [ -71.158615112304631, -15.146033287048283 ], [ -71.159538269042912, -15.14686107635498 ], [ -71.160057067871094, -15.147049903869572 ], [ -71.163093566894474, -15.147127151489258 ], [ -71.165565490722599, -15.14836311340332 ], [ -71.167762756347599, -15.14809417724598 ], [ -71.168670654296875, -15.148324012756348 ], [ -71.170364379882812, -15.150121688842717 ], [ -71.171020507812386, -15.15113639831543 ], [ -71.171943664550724, -15.154110908508244 ], [ -71.172584533691406, -15.157215118408146 ], [ -71.173454284667969, -15.159045219421387 ], [ -71.1793212890625, -15.161480903625488 ], [ -71.180816650390568, -15.162400245666447 ], [ -71.183090209960938, -15.164975166320744 ], [ -71.184951782226562, -15.169066429138184 ], [ -71.185195922851506, -15.169945716857853 ], [ -71.184844970703011, -15.170407295226994 ], [ -71.181808471679688, -15.170429229736328 ], [ -71.179458618164062, -15.170803070068359 ], [ -71.177978515624886, -15.171521186828613 ], [ -71.176918029785099, -15.172421455383244 ], [ -71.175582885742131, -15.17458438873291 ], [ -71.173965454101506, -15.178190231323242 ], [ -71.172866821289062, -15.181799888610783 ], [ -71.171440124511719, -15.184564590454045 ], [ -71.171218872070312, -15.186120986938477 ], [ -71.170654296875, -15.1875 ], [ -71.169235229492188, -15.189687728881779 ], [ -71.168006896972656, -15.191183090209961 ], [ -71.166862487792969, -15.192083358764592 ], [ -71.163055419921875, -15.192958831787109 ], [ -71.161819458007812, -15.193541526794377 ], [ -71.160453796386719, -15.194519996643066 ], [ -71.158920288085938, -15.196559906005859 ], [ -71.157493591308594, -15.200090408325138 ], [ -71.157356262206974, -15.201712608337402 ], [ -71.157829284667912, -15.203677177429199 ], [ -71.163276672363224, -15.210629463195801 ], [ -71.165924072265625, -15.212794303893986 ], [ -71.171226501464844, -15.215433120727539 ], [ -71.172279357910156, -15.216512680053654 ], [ -71.172508239746037, -15.217512130737305 ], [ -71.172805786132756, -15.218263626098633 ], [ -71.172782897949219, -15.219742774963265 ], [ -71.173019409179574, -15.220378875732365 ], [ -71.175178527831974, -15.222653388977051 ], [ -71.178642272949162, -15.228009223937931 ], [ -71.181587219238224, -15.230864524841309 ], [ -71.183616638183594, -15.233427047729492 ], [ -71.184600830078125, -15.233940124511719 ], [ -71.186264038085881, -15.234112739562931 ], [ -71.187614440917855, -15.233882904052734 ], [ -71.191024780273381, -15.232741355895939 ], [ -71.192611694335938, -15.233174324035588 ], [ -71.1937255859375, -15.233976364135629 ], [ -71.19448089599598, -15.235417366027832 ], [ -71.195899963378849, -15.23669528961176 ], [ -71.197486877441406, -15.239537239074707 ], [ -71.199325561523381, -15.24189567565918 ], [ -71.200866699218636, -15.243256568908691 ], [ -71.201667785644531, -15.243477821350041 ], [ -71.202972412109375, -15.244402885437012 ], [ -71.203117370605469, -15.245542526245117 ], [ -71.20296478271473, -15.24601936340332 ], [ -71.197563171386719, -15.250727653503418 ], [ -71.196357727050724, -15.252077102661076 ], [ -71.196731567382756, -15.253310203552246 ], [ -71.1973876953125, -15.254497528076115 ], [ -71.200424194335938, -15.258003234863281 ], [ -71.200775146484261, -15.259579658508244 ], [ -71.200325012207031, -15.261540412902832 ], [ -71.19927978515625, -15.264327049255257 ], [ -71.196464538574162, -15.269413948059025 ], [ -71.193634033203125, -15.271991729736328 ], [ -71.190315246582031, -15.274209976196232 ], [ -71.187957763671818, -15.274954795837402 ], [ -71.182373046875, -15.276177406310978 ], [ -71.180198669433594, -15.276924133300724 ], [ -71.17828369140625, -15.278914451599007 ], [ -71.174957275390625, -15.28083324432373 ], [ -71.172660827636719, -15.282617568969727 ], [ -71.164398193359375, -15.290748596191349 ], [ -71.164131164550724, -15.293145179748478 ], [ -71.16485595703125, -15.297117233276367 ], [ -71.165031433105469, -15.300747871398926 ], [ -71.164665222167969, -15.302871704101506 ], [ -71.163459777831974, -15.307010650634766 ], [ -71.162612915039006, -15.312743186950627 ], [ -71.163795471191406, -15.321127891540471 ], [ -71.164093017578125, -15.328280448913517 ], [ -71.163940429687443, -15.329883575439453 ], [ -71.162879943847599, -15.33206844329834 ], [ -71.161491394042969, -15.333577156066838 ], [ -71.156471252441406, -15.336685180664062 ], [ -71.154884338378849, -15.338000297546387 ], [ -71.153884887695312, -15.339275360107365 ], [ -71.153388977050781, -15.341052055358887 ], [ -71.153465270996037, -15.349129676818791 ], [ -71.152877807617131, -15.351069450378418 ], [ -71.151351928710881, -15.354236602783203 ], [ -71.151580810546875, -15.355971336364632 ], [ -71.151222229003906, -15.35768985748291 ], [ -71.151298522949219, -15.358900070190373 ], [ -71.152023315429631, -15.360492706298828 ], [ -71.152702331542912, -15.363652229308968 ], [ -71.153823852539006, -15.365513801574707 ], [ -71.155448913574162, -15.367184638977051 ], [ -71.156585693359318, -15.367935180664062 ], [ -71.159706115722656, -15.369414329528752 ], [ -71.163475036621037, -15.370760917663574 ], [ -71.165153503417969, -15.372178077697754 ], [ -71.166625976562443, -15.373791694641113 ], [ -71.167335510253906, -15.375104904174748 ], [ -71.168197631835938, -15.377942085266056 ], [ -71.170997619628849, -15.384832382202092 ], [ -71.171951293945256, -15.388066291808968 ], [ -71.172431945800724, -15.39100170135498 ], [ -71.172348022460881, -15.393145561218205 ], [ -71.171958923339787, -15.394304275512695 ], [ -71.170310974121094, -15.396467208862248 ], [ -71.169891357421875, -15.39763355255127 ], [ -71.173446655273438, -15.406755447387638 ], [ -71.174919128417912, -15.411941528320256 ], [ -71.174926757812386, -15.414369583129883 ], [ -71.174362182617188, -15.417824745178223 ], [ -71.174705505371037, -15.423309326171818 ], [ -71.174430847167912, -15.424538612365723 ], [ -71.173385620117131, -15.426054954528752 ], [ -71.170700073242131, -15.428155899047852 ], [ -71.167343139648438, -15.429459571838379 ], [ -71.163833618164006, -15.432296752929688 ], [ -71.158905029296761, -15.435297012328988 ], [ -71.157875061035156, -15.436577796935978 ], [ -71.157020568847656, -15.43913459777832 ], [ -71.156234741210824, -15.439905166625977 ], [ -71.154678344726506, -15.440475463867131 ], [ -71.152191162109375, -15.440621376037598 ], [ -71.148200988769474, -15.440623283386174 ], [ -71.145881652832031, -15.439718246459961 ], [ -71.142051696777344, -15.439064025878793 ], [ -71.13887786865223, -15.437701225280648 ], [ -71.135704040527287, -15.43529224395752 ], [ -71.134574890136662, -15.433944702148438 ], [ -71.131332397460881, -15.4290771484375 ], [ -71.129585266113281, -15.42799186706543 ], [ -71.126564025878849, -15.426937103271428 ], [ -71.124801635742188, -15.426592826843262 ], [ -71.122016906738281, -15.426569938659668 ], [ -71.120246887206974, -15.426916122436523 ], [ -71.119415283203068, -15.427390098571721 ], [ -71.117378234863281, -15.429385185241642 ], [ -71.111724853515625, -15.436594009399357 ], [ -71.110366821288949, -15.43951320648182 ], [ -71.108612060546818, -15.447910308837834 ], [ -71.103996276855469, -15.453087806701603 ], [ -71.101959228515568, -15.45464038848877 ], [ -71.096199035644531, -15.456965446472054 ], [ -71.093254089355469, -15.457716941833439 ], [ -71.089302062988281, -15.458368301391545 ], [ -71.086341857910156, -15.458477973937988 ], [ -71.084732055664062, -15.457728385925179 ], [ -71.081802368164062, -15.456882476806584 ], [ -71.081031799316406, -15.456319808959961 ], [ -71.079841613769474, -15.454817771911621 ], [ -71.078422546386719, -15.453502655029297 ], [ -71.074096679687443, -15.45210075378418 ], [ -71.072822570800781, -15.451264381408635 ], [ -71.072212219238224, -15.450542449951172 ], [ -71.071914672851506, -15.449090003967228 ], [ -71.072166442871094, -15.447904586791992 ], [ -71.074089050292912, -15.445466041564885 ], [ -71.075599670410156, -15.442461967468205 ], [ -71.075981140136719, -15.439806938171387 ], [ -71.075942993164062, -15.438877105712891 ], [ -71.075614929199162, -15.438114166259766 ], [ -71.074234008789062, -15.437225341796818 ], [ -71.066772460937443, -15.435629844665527 ], [ -71.06329345703125, -15.434268951415959 ], [ -71.061477661132812, -15.433017730712834 ], [ -71.059127807617131, -15.430909156799316 ], [ -71.057472229003906, -15.428265571594238 ], [ -71.053207397460881, -15.426348686218205 ], [ -71.048980712890625, -15.422248840331974 ], [ -71.04647064208973, -15.42033672332758 ], [ -71.044242858886662, -15.417934417724609 ], [ -71.040657043457031, -15.411994934082031 ], [ -71.039894104003906, -15.409754753112736 ], [ -71.039772033691349, -15.406242370605412 ], [ -71.039131164550781, -15.404984474182129 ], [ -71.038833618164006, -15.406967163085938 ], [ -71.038009643554688, -15.408196449279785 ], [ -71.036705017089787, -15.411707878112793 ], [ -71.032630920410099, -15.418386459350529 ], [ -71.030158996581918, -15.421442031860295 ], [ -71.029251098632812, -15.42323112487793 ], [ -71.027816772460938, -15.426869392394963 ], [ -71.027900695800781, -15.431427001953068 ], [ -71.027595520019531, -15.432161331176758 ], [ -71.025421142578125, -15.433801651000977 ], [ -71.019752502441349, -15.435565948486328 ], [ -71.015899658203125, -15.436100959777775 ], [ -71.013290405273438, -15.436983108520451 ], [ -71.009620666503849, -15.438865661621037 ], [ -71.004302978515568, -15.442279815673771 ], [ -71.00384521484375, -15.443119049072266 ], [ -71.003303527832031, -15.445454597473088 ], [ -71.000495910644474, -15.446615219116154 ], [ -70.998947143554631, -15.447768211364746 ], [ -70.997962951660156, -15.450122833251839 ], [ -70.995071411132812, -15.453922271728459 ], [ -70.993782043457031, -15.456623077392578 ], [ -70.993087768554688, -15.458676338195801 ], [ -70.992805480957031, -15.461900711059457 ], [ -70.993431091308537, -15.46644115447998 ], [ -70.994384765624943, -15.469833374023381 ], [ -70.995635986328011, -15.472390174865723 ], [ -70.997039794921818, -15.473851203918457 ], [ -71.002967834472599, -15.479010581970215 ], [ -71.003890991210938, -15.480027198791504 ], [ -71.004196166992131, -15.481071472167969 ], [ -71.005157470703068, -15.482413291931096 ], [ -71.008628845214844, -15.483733177185002 ], [ -71.011222839355469, -15.485763549804631 ], [ -71.013137817382812, -15.486862182617188 ], [ -71.015052795410156, -15.488603591918832 ], [ -71.016410827636662, -15.490638732910099 ], [ -71.016494750976506, -15.494267463684025 ], [ -71.018531799316406, -15.499833106994515 ], [ -71.018310546874943, -15.501858711242676 ], [ -71.017890930175781, -15.502691268920842 ], [ -71.015289306640625, -15.50509071350092 ], [ -71.013328552246094, -15.50798511505127 ], [ -71.010414123535099, -15.511128425598145 ], [ -71.009941101074105, -15.512516021728516 ], [ -71.010162353515625, -15.513603210449162 ], [ -71.010086059570312, -15.51499080657959 ], [ -71.008720397949219, -15.517402648925781 ], [ -71.008201599121037, -15.519053459167367 ], [ -71.009422302246094, -15.520301818847599 ], [ -71.011650085449162, -15.521108627319279 ], [ -71.013046264648438, -15.521079063415527 ], [ -71.014373779296875, -15.521825790405273 ], [ -71.015739440917912, -15.524242401123047 ], [ -71.016334533691293, -15.524829864501953 ], [ -71.018112182617131, -15.52765941619873 ], [ -71.018516540527287, -15.529190063476562 ], [ -71.018020629882756, -15.530345916748047 ], [ -71.017257690429631, -15.531036376953125 ], [ -71.016677856445256, -15.531133651733342 ], [ -71.015937805175724, -15.53168773651123 ], [ -71.014724731445312, -15.533543586730957 ], [ -71.014259338378906, -15.535428047180176 ], [ -71.014259338378906, -15.539370536804199 ], [ -71.013366699218693, -15.540229797363224 ], [ -71.011199951171875, -15.540227890014648 ], [ -71.010795593261662, -15.540465354919434 ], [ -71.009552001953068, -15.540531158447152 ], [ -71.008316040039006, -15.541500091552734 ], [ -71.007362365722599, -15.542764663696232 ], [ -71.007087707519531, -15.544401168823242 ], [ -71.007278442382812, -15.547697067260685 ], [ -71.005065917968693, -15.551140785217171 ], [ -71.004837036132812, -15.552318572998047 ], [ -71.004920959472656, -15.553331375122013 ], [ -71.005439758300724, -15.554909706115723 ], [ -71.006225585937386, -15.556385040283203 ], [ -71.008033752441293, -15.558618545532227 ], [ -71.008605957031136, -15.560758590698242 ], [ -71.008338928222656, -15.563784599304199 ], [ -71.006355285644531, -15.568854331970215 ], [ -71.003334045410099, -15.573096275329533 ], [ -71.002731323242188, -15.574346542358398 ], [ -71.001594543457031, -15.575653076171875 ], [ -70.999771118164062, -15.576619148254395 ], [ -70.997238159179631, -15.578695297241154 ], [ -70.994842529296818, -15.58000373840332 ], [ -70.993980407714787, -15.580718994140625 ], [ -70.9932861328125, -15.581815719604492 ], [ -70.993080139160156, -15.583544731140137 ], [ -70.992584228515511, -15.585034370422363 ], [ -70.990135192871094, -15.587894439697209 ], [ -70.985511779785099, -15.592220306396371 ], [ -70.984375, -15.594022750854492 ], [ -70.983192443847656, -15.596853256225586 ], [ -70.982528686523438, -15.597858428955078 ], [ -70.981613159179631, -15.598509788513184 ], [ -70.978958129882812, -15.599435806274414 ], [ -70.976387023925781, -15.602266311645451 ], [ -70.974845886230355, -15.602671623229924 ], [ -70.973342895507812, -15.603789329528809 ], [ -70.972145080566349, -15.604363441467285 ], [ -70.971229553222656, -15.604581832885742 ], [ -70.970680236816406, -15.60448169708252 ], [ -70.969070434570312, -15.604928016662484 ], [ -70.966644287109261, -15.606526374816838 ], [ -70.965904235839844, -15.606485366821289 ], [ -70.963722229003906, -15.605802536010685 ], [ -70.961448669433594, -15.606024742126351 ], [ -70.958633422851449, -15.608471870422363 ], [ -70.955238342285156, -15.61097335815424 ], [ -70.954437255859261, -15.611270904540959 ], [ -70.953285217285099, -15.611260414123535 ], [ -70.95208740234375, -15.611544609069767 ], [ -70.949264526367131, -15.613033294677734 ], [ -70.947601318359375, -15.61453723907465 ], [ -70.945480346679688, -15.61700534820551 ], [ -70.942169189453125, -15.61684608459467 ], [ -70.939323425292969, -15.617839813232365 ], [ -70.93902587890625, -15.618310928344727 ], [ -70.938621520996094, -15.622570991516 ], [ -70.938186645507812, -15.623871803283635 ], [ -70.937065124511662, -15.624553680419808 ], [ -70.934913635253906, -15.624768257141 ], [ -70.933891296386719, -15.62524223327631 ], [ -70.933273315429688, -15.625937461852971 ], [ -70.932685852050724, -15.627684593200684 ], [ -70.931594848632812, -15.628702163696175 ], [ -70.930061340332031, -15.629178047180176 ], [ -70.927970886230469, -15.629276275634766 ], [ -70.92681884765625, -15.629866600036507 ], [ -70.926162719726562, -15.630865097045842 ], [ -70.924163818359375, -15.632814407348633 ], [ -70.92376708984375, -15.633951187133789 ], [ -70.923774719238281, -15.634599685668888 ], [ -70.923072814941406, -15.636202812194824 ], [ -70.921600341796818, -15.638413429260254 ], [ -70.920890808105469, -15.640113830566406 ], [ -70.918769836425668, -15.642580032348633 ], [ -70.918144226074219, -15.64361667633051 ], [ -70.917518615722599, -15.646212577819824 ], [ -70.917495727539006, -15.649330139160099 ], [ -70.916511535644531, -15.652010917663574 ], [ -70.916732788085881, -15.656617164611703 ], [ -70.916358947753849, -15.658041000366154 ], [ -70.916343688964844, -15.661904335021973 ], [ -70.916030883789062, -15.663700103759766 ], [ -70.916542053222599, -15.667246818542424 ], [ -70.917816162109261, -15.672043800353947 ], [ -70.918701171875, -15.67407035827631 ], [ -70.918960571288949, -15.675239562988281 ], [ -70.918876647949219, -15.676798820495605 ], [ -70.918342590332031, -15.679199218749886 ], [ -70.917953491210938, -15.68736457824707 ], [ -70.916351318359318, -15.690924644470215 ], [ -70.914779663085938, -15.692877769470158 ], [ -70.914207458496094, -15.695214271545353 ], [ -70.912887573242188, -15.698128700256348 ], [ -70.911941528320312, -15.699275016784611 ], [ -70.910575866699219, -15.700071334838867 ], [ -70.909927368164062, -15.700871467590218 ], [ -70.910003662109375, -15.703541755676156 ], [ -70.909767150878906, -15.704304695129281 ], [ -70.908218383789062, -15.705925941467171 ], [ -70.906143188476562, -15.707042694091683 ], [ -70.905044555664062, -15.707364082336426 ], [ -70.904304504394531, -15.707918167114201 ], [ -70.900299072265625, -15.711956977844238 ], [ -70.899864196777287, -15.713085174560547 ], [ -70.899772644042912, -15.714094161987305 ], [ -70.899833679199219, -15.714825630187988 ], [ -70.900184631347656, -15.715481758117676 ], [ -70.900222778320312, -15.718342781066895 ], [ -70.903488159179631, -15.726837158203125 ], [ -70.904266357421818, -15.729972839355469 ], [ -70.904312133789062, -15.734934806823674 ], [ -70.905235290527344, -15.736838340759221 ], [ -70.907257080078125, -15.739048957824707 ], [ -70.909248352050781, -15.740224838256836 ], [ -70.910476684570199, -15.740690231323242 ], [ -70.912651062011662, -15.740920066833496 ], [ -70.917022705078068, -15.742417335510197 ], [ -70.92120361328125, -15.74460506439209 ], [ -70.922660827636662, -15.745772361755371 ], [ -70.924339294433594, -15.747894287109375 ], [ -70.926216125488281, -15.752205848693848 ], [ -70.926551818847656, -15.754007339477482 ], [ -70.926010131835881, -15.75754356384266 ], [ -70.926277160644474, -15.759170532226562 ], [ -70.927131652831974, -15.760601997375488 ], [ -70.929878234863281, -15.763261795043832 ], [ -70.930892944335938, -15.765237808227482 ], [ -70.931556701660156, -15.767536163330078 ], [ -70.932258605957031, -15.76873874664301 ], [ -70.933601379394531, -15.77052116394043 ], [ -70.936088562011719, -15.772021293640137 ], [ -70.937614440917969, -15.772562980651855 ], [ -70.939765930175781, -15.772415161132812 ], [ -70.940040588378793, -15.772643089294434 ], [ -70.94118499755848, -15.772756576538086 ], [ -70.942306518554631, -15.77398777008051 ], [ -70.942436218261719, -15.774738311767521 ], [ -70.940437316894531, -15.779074668884277 ], [ -70.937736511230412, -15.782262802124023 ], [ -70.936309814453068, -15.784653663635254 ], [ -70.933219909667969, -15.787491798400879 ], [ -70.932456970214844, -15.78856086730957 ], [ -70.929801940917912, -15.79118824005127 ], [ -70.928321838378906, -15.792325973510685 ], [ -70.927009582519531, -15.792859077453613 ], [ -70.923698425292912, -15.795758247375375 ], [ -70.922279357910099, -15.79759693145752 ], [ -70.919990539550724, -15.79979228973383 ], [ -70.920013427734261, -15.805394172668343 ], [ -70.919525146484318, -15.806970596313477 ], [ -70.918853759765568, -15.808195114135742 ], [ -70.916877746582031, -15.810647964477482 ], [ -70.916404724121094, -15.81253528594965 ], [ -70.916587829589844, -15.812845230102482 ], [ -70.916419982910156, -15.813553810119629 ], [ -70.914299011230469, -15.818880081176758 ], [ -70.911102294921875, -15.821742057800236 ], [ -70.909202575683537, -15.824575424194279 ], [ -70.907173156738281, -15.828830718994027 ], [ -70.906875610351562, -15.832128524780273 ], [ -70.906410217285156, -15.833128929138184 ], [ -70.902214050292969, -15.836874008178654 ], [ -70.900962829589844, -15.838240623474064 ], [ -70.898193359375, -15.844059944152832 ], [ -70.896141052246037, -15.846817970275879 ], [ -70.892707824706974, -15.849702835083008 ], [ -70.890899658203068, -15.850703239440861 ], [ -70.890037536621037, -15.850958824157715 ], [ -70.891311645507812, -15.852560997009277 ], [ -70.894851684570312, -15.856166839599553 ], [ -70.895561218261662, -15.85756778717041 ], [ -70.895652770996094, -15.859498977661133 ], [ -70.894439697265568, -15.861875534057504 ], [ -70.893516540527344, -15.866485595703068 ], [ -70.894714355468693, -15.869656562805119 ], [ -70.894210815429688, -15.873300552368107 ], [ -70.896224975585938, -15.875614166259766 ], [ -70.896728515624943, -15.876804351806641 ], [ -70.896392822265625, -15.877755165100041 ], [ -70.894348144531193, -15.880945205688363 ], [ -70.893775939941349, -15.882773399352971 ], [ -70.891899108886719, -15.885948181152287 ], [ -70.891143798828125, -15.887737274169865 ], [ -70.888908386230412, -15.891077995300179 ], [ -70.888031005859318, -15.892045021057072 ], [ -70.886299133300781, -15.893157005310002 ], [ -70.8856201171875, -15.893109321594181 ], [ -70.884925842285156, -15.893376350402832 ], [ -70.882057189941293, -15.892473220825138 ], [ -70.878852844238281, -15.890707015991211 ], [ -70.876991271972599, -15.889416694641113 ], [ -70.875183105468693, -15.887561798095646 ], [ -70.874420166015568, -15.887527465820312 ], [ -70.87322998046875, -15.88807201385498 ], [ -70.869377136230469, -15.888675689697266 ], [ -70.867340087890568, -15.889348030090332 ], [ -70.866249084472656, -15.890520095825195 ], [ -70.864456176757812, -15.893967628478947 ], [ -70.862541198730469, -15.896817207336369 ], [ -70.861824035644474, -15.899300575256291 ], [ -70.861763000488281, -15.90122127532959 ], [ -70.861282348632812, -15.9024400711059 ], [ -70.859237670898381, -15.904060363769474 ], [ -70.857833862304574, -15.904609680175724 ], [ -70.856697082519531, -15.905437469482422 ], [ -70.855247497558537, -15.905949592590332 ], [ -70.854637145996094, -15.906533241271973 ], [ -70.853927612304688, -15.909749031066895 ], [ -70.852951049804631, -15.910877227783203 ], [ -70.851951599121094, -15.911540031433105 ], [ -70.850807189941406, -15.914460182189885 ], [ -70.849090576171875, -15.91663742065424 ], [ -70.849121093749943, -15.917657852172795 ], [ -70.850074768066349, -15.919343948364201 ], [ -70.849822998046761, -15.92080116271967 ], [ -70.84881591796875, -15.921880722045898 ], [ -70.847122192382756, -15.921623229980355 ], [ -70.846054077148438, -15.921900749206543 ], [ -70.84527587890625, -15.921785354614258 ], [ -70.844795227050781, -15.921985626220646 ], [ -70.843772888183594, -15.92310905456543 ], [ -70.843223571777287, -15.924073219299316 ], [ -70.843254089355469, -15.924724578857422 ], [ -70.843963623046875, -15.925918579101562 ], [ -70.843986511230412, -15.927129745483398 ], [ -70.843254089355469, -15.928610801696777 ], [ -70.841377258300781, -15.930666923522949 ], [ -70.840324401855469, -15.932938575744629 ], [ -70.840171813964787, -15.934955596923771 ], [ -70.840789794921875, -15.937062263488713 ], [ -70.839912414550781, -15.938154220580998 ], [ -70.838066101074162, -15.939082145690918 ], [ -70.837165832519531, -15.940130233764648 ], [ -70.83734130859375, -15.941143989562988 ], [ -70.839042663574105, -15.943585395812988 ], [ -70.839302062988224, -15.944464683532658 ], [ -70.839210510253849, -15.944923400878906 ], [ -70.838333129882812, -15.945871353149357 ], [ -70.836524963378906, -15.945781707763672 ], [ -70.835647583007812, -15.946107864379883 ], [ -70.833839416503906, -15.948336601257324 ], [ -70.833297729492131, -15.950004577636662 ], [ -70.833465576171875, -15.951379776000977 ], [ -70.834480285644531, -15.953239440917969 ], [ -70.837730407714844, -15.955636978149414 ], [ -70.840629577636662, -15.956468582153263 ], [ -70.841964721679631, -15.957801818847656 ], [ -70.842048645019531, -15.958895683288574 ], [ -70.841140747070199, -15.961294174194336 ], [ -70.841613769531193, -15.962983131408691 ], [ -70.842536926269474, -15.964595794677678 ], [ -70.842864990234375, -15.96564865112299 ], [ -70.842948913574162, -15.968320846557617 ], [ -70.842666625976449, -15.96975040435791 ], [ -70.84100341796875, -15.972215652465707 ], [ -70.839447021484375, -15.97355842590332 ], [ -70.837699890136662, -15.97428035736084 ], [ -70.834861755371094, -15.974287033080998 ], [ -70.833496093749943, -15.974685668945312 ], [ -70.830642700195256, -15.97722053527832 ], [ -70.829261779785156, -15.978032112121582 ], [ -70.827301025390568, -15.978356361389103 ], [ -70.822479248046875, -15.977970123290959 ], [ -70.821266174316406, -15.978181838989258 ], [ -70.821006774902287, -15.978412628173828 ], [ -70.82391357421875, -15.982130050659066 ], [ -70.824684143066406, -15.983615875244141 ], [ -70.825561523437443, -15.986149787902832 ], [ -70.827705383300781, -15.988960266113281 ], [ -70.828422546386662, -15.990867614746094 ], [ -70.829269409179688, -15.995295524597111 ], [ -70.829139709472656, -15.998451232910099 ], [ -70.828254699706974, -15.999957084655705 ], [ -70.827621459960938, -16.000396728515511 ], [ -70.820030212402287, -16.000690460205078 ], [ -70.817932128906193, -16.001461029052734 ], [ -70.816726684570199, -16.002565383911133 ], [ -70.814193725585938, -16.00958061218256 ], [ -70.813957214355412, -16.012811660766545 ], [ -70.814163208007812, -16.014808654785156 ], [ -70.815109252929574, -16.017623901367131 ], [ -70.816246032714787, -16.01994514465332 ], [ -70.819076538085881, -16.023077011108398 ], [ -70.819877624511605, -16.025789260864201 ], [ -70.821136474609375, -16.028484344482422 ], [ -70.821121215820312, -16.029556274414006 ], [ -70.820297241210938, -16.031425476074219 ], [ -70.81878662109375, -16.033172607421818 ], [ -70.815635681152344, -16.035392761230355 ], [ -70.813461303710881, -16.036251068115121 ], [ -70.810035705566349, -16.03830528259266 ], [ -70.807533264160156, -16.040637969970589 ], [ -70.806816101074219, -16.042102813720703 ], [ -70.805198669433594, -16.050296783447266 ], [ -70.804290771484375, -16.052850723266602 ], [ -70.804252624511719, -16.053634643554688 ], [ -70.804687499999943, -16.054941177368164 ], [ -70.805328369140625, -16.055440902709904 ], [ -70.806724548339844, -16.055397033691349 ], [ -70.810394287109375, -16.053869247436523 ], [ -70.812316894531193, -16.053548812866154 ], [ -70.820945739746094, -16.053609848022461 ], [ -70.826217651367188, -16.053298950195256 ], [ -70.830207824707031, -16.053888320922852 ], [ -70.833129882812386, -16.053909301757812 ], [ -70.834754943847543, -16.054285049438477 ], [ -70.837394714355412, -16.054389953613281 ], [ -70.840202331542969, -16.05517578125 ], [ -70.841995239257756, -16.055418014526367 ], [ -70.844772338867188, -16.055488586425724 ], [ -70.847648620605469, -16.054969787597656 ], [ -70.850425720214844, -16.054977416992188 ], [ -70.851478576660156, -16.055322647094727 ], [ -70.856712341308594, -16.05602836608881 ], [ -70.857528686523381, -16.05656623840332 ], [ -70.858558654785099, -16.057830810546875 ], [ -70.859718322753849, -16.059675216674805 ], [ -70.860496520996037, -16.061550140380859 ], [ -70.8646240234375, -16.067129135131836 ], [ -70.865715026855412, -16.069471359252873 ], [ -70.866111755371037, -16.071977615356445 ], [ -70.866104125976506, -16.074811935424748 ], [ -70.865730285644474, -16.078012466430664 ], [ -70.865951538085938, -16.078657150268555 ], [ -70.867507934570312, -16.079986572265625 ], [ -70.870254516601562, -16.080968856811523 ], [ -70.873435974121037, -16.081283569335938 ], [ -70.877998352050781, -16.081226348876953 ], [ -70.878189086914062, -16.082061767578125 ], [ -70.877891540527344, -16.083253860473633 ], [ -70.876106262206974, -16.087476730346623 ], [ -70.87490081787098, -16.091621398925781 ], [ -70.874855041503906, -16.093235015869141 ], [ -70.875228881835938, -16.094388961791992 ], [ -70.87677001953125, -16.095537185668945 ], [ -70.880043029785099, -16.097034454345703 ], [ -70.882904052734318, -16.099596023559513 ], [ -70.884979248046818, -16.100711822509709 ], [ -70.885658264160099, -16.10072135925293 ], [ -70.886917114257699, -16.099412918090763 ], [ -70.887466430664006, -16.099109649658203 ], [ -70.891159057617188, -16.100433349609261 ], [ -70.892723083496037, -16.101554870605412 ], [ -70.894729614257756, -16.103441238403207 ], [ -70.895584106445256, -16.104837417602482 ], [ -70.896003723144531, -16.106370925903263 ], [ -70.895713806152344, -16.106851577758732 ], [ -70.890464782714844, -16.110620498657227 ], [ -70.889610290527344, -16.1121826171875 ], [ -70.888343811035099, -16.115604400634766 ], [ -70.886245727539006, -16.117927551269531 ], [ -70.877616882324219, -16.123632431030217 ], [ -70.87530517578125, -16.124887466430607 ], [ -70.870750427246094, -16.126106262207031 ], [ -70.868972778320256, -16.126106262207031 ], [ -70.867866516113281, -16.127124786376896 ], [ -70.867759704589844, -16.128593444824219 ], [ -70.868637084960938, -16.130422592163029 ], [ -70.871726989746037, -16.134035110473576 ], [ -70.8717041015625, -16.137798309326115 ], [ -70.872688293456974, -16.141721725463867 ], [ -70.872322082519474, -16.143148422241211 ], [ -70.867919921874943, -16.146518707275391 ], [ -70.867729187011662, -16.146993637084904 ], [ -70.867645263671818, -16.148704528808594 ], [ -70.86794281005848, -16.151292800903263 ], [ -70.86865234375, -16.153190612792969 ], [ -70.869880676269531, -16.154657363891602 ], [ -70.871459960937443, -16.157682418823185 ], [ -70.872291564941349, -16.158735275268498 ], [ -70.876487731933537, -16.162298202514648 ], [ -70.878097534179688, -16.163955688476562 ], [ -70.878662109375, -16.165216445922795 ], [ -70.878761291503906, -16.166421890258789 ], [ -70.878211975097599, -16.167800903320312 ], [ -70.877090454101506, -16.168994903564396 ], [ -70.874481201171875, -16.17083740234375 ], [ -70.873558044433537, -16.171127319335938 ], [ -70.870758056640625, -16.17119026184082 ], [ -70.868125915527287, -16.171571731567383 ], [ -70.86627197265625, -16.172086715698185 ], [ -70.865272521972543, -16.172605514526367 ], [ -70.86183929443348, -16.176113128662109 ], [ -70.85870361328125, -16.179912567138672 ], [ -70.857505798339844, -16.181892395019531 ], [ -70.856552124023438, -16.184263229370117 ], [ -70.854988098144531, -16.189437866210938 ], [ -70.854301452636605, -16.192607879638672 ], [ -70.85406494140625, -16.196491241455078 ], [ -70.85406494140625, -16.202291488647461 ], [ -70.854598999023438, -16.205060958862305 ], [ -70.855422973632756, -16.206466674804631 ], [ -70.857803344726506, -16.208488464355355 ], [ -70.858352661132812, -16.209571838378906 ], [ -70.858612060546875, -16.211027145385742 ], [ -70.862678527831974, -16.214302062988168 ], [ -70.866424560546875, -16.218280792236271 ], [ -70.867034912109375, -16.220359802246094 ], [ -70.867172241210881, -16.224655151367188 ], [ -70.866615295410156, -16.225275039672852 ], [ -70.865036010742188, -16.225822448730412 ], [ -70.854911804199219, -16.226625442504826 ], [ -70.852195739746037, -16.227212905883732 ], [ -70.849624633789006, -16.228254318237248 ], [ -70.847557067871094, -16.229864120483342 ], [ -70.84576416015625, -16.231723785400334 ], [ -70.844619750976562, -16.234054565429688 ], [ -70.844642639160099, -16.235687255859375 ], [ -70.845527648925668, -16.23684120178217 ], [ -70.84832763671875, -16.239162445068303 ], [ -70.854057312011719, -16.241590499877873 ], [ -70.855682373046875, -16.242668151855469 ], [ -70.856918334960938, -16.243938446044865 ], [ -70.859924316406193, -16.248947143554688 ], [ -70.861381530761719, -16.252296447753906 ], [ -70.864356994628906, -16.256349563598633 ], [ -70.868263244628906, -16.264102935791016 ], [ -70.872695922851506, -16.268365859985352 ], [ -70.873535156249943, -16.269447326660156 ], [ -70.874435424804688, -16.272270202636662 ], [ -70.874641418457031, -16.27589035034174 ], [ -70.875770568847656, -16.278961181640511 ], [ -70.876708984374943, -16.280755996704102 ], [ -70.877944946289006, -16.282169342040959 ], [ -70.881263732910099, -16.284454345703125 ], [ -70.882301330566406, -16.28486251831049 ], [ -70.88372802734375, -16.285060882568303 ], [ -70.886932373046875, -16.284700393676701 ], [ -70.888153076171818, -16.284107208251896 ], [ -70.891479492187443, -16.281621932983398 ], [ -70.893592834472543, -16.280330657958984 ], [ -70.897994995117188, -16.278654098510742 ], [ -70.9027099609375, -16.277383804321232 ], [ -70.904029846191406, -16.277761459350529 ], [ -70.908866882324219, -16.280443191528207 ], [ -70.912139892578125, -16.281129837036133 ], [ -70.912734985351506, -16.281484603881779 ], [ -70.914131164550781, -16.281564712524357 ], [ -70.915740966796875, -16.282020568847656 ], [ -70.919754028320312, -16.285129547119084 ], [ -70.921394348144531, -16.286964416503849 ], [ -70.928230285644531, -16.291120529174691 ], [ -70.930366516113281, -16.292856216430664 ], [ -70.932601928710824, -16.293937683105355 ], [ -70.937072753906193, -16.297225952148438 ], [ -70.939109802246094, -16.299005508422795 ], [ -70.939384460449219, -16.299749374389648 ], [ -70.939407348632812, -16.302537918090763 ], [ -70.940101623535099, -16.30528450012207 ], [ -70.940177917480469, -16.307432174682504 ], [ -70.940620422363281, -16.309408187866154 ], [ -70.942337036132812, -16.313095092773381 ], [ -70.942893981933537, -16.313692092895451 ], [ -70.943931579589787, -16.314208984375 ], [ -70.944725036621094, -16.314277648925781 ], [ -70.945945739746037, -16.313850402831974 ], [ -70.951042175292969, -16.309465408325195 ], [ -70.952026367187443, -16.308942794799748 ], [ -70.953094482421818, -16.308692932128849 ], [ -70.954780578613281, -16.30860710144043 ], [ -70.956008911132812, -16.308837890625 ], [ -70.960151672363224, -16.308313369750977 ], [ -70.964187622070312, -16.308246612548828 ], [ -70.973480224609318, -16.309074401855412 ], [ -70.9759521484375, -16.307878494262638 ], [ -70.978790283203125, -16.309282302856445 ], [ -70.980163574218693, -16.309198379516602 ], [ -70.984275817871037, -16.308412551879883 ], [ -70.985595703124943, -16.308826446533203 ], [ -70.986518859863281, -16.309637069702148 ], [ -70.986640930175724, -16.310451507568359 ], [ -70.985496520996037, -16.312297821044922 ], [ -70.985061645507812, -16.314273834228516 ], [ -70.985260009765625, -16.318778991699219 ], [ -70.986190795898381, -16.32145881652832 ], [ -70.986183166503849, -16.322126388549805 ], [ -70.984451293945256, -16.324888229370117 ], [ -70.982330322265625, -16.326833724975586 ], [ -70.980659484863224, -16.329929351806641 ], [ -70.979057312011719, -16.333671569824162 ], [ -70.979095458984375, -16.335027694702148 ], [ -70.979446411132812, -16.336187362670898 ], [ -70.979194641113281, -16.338321685791016 ], [ -70.979423522949105, -16.34222221374506 ], [ -70.979042053222543, -16.344686508178654 ], [ -70.978401184082031, -16.346469879150334 ], [ -70.976745605468693, -16.349128723144474 ], [ -70.973915100097656, -16.35177040100092 ], [ -70.9732666015625, -16.352741241455021 ], [ -70.973533630371094, -16.354234695434513 ], [ -70.975563049316406, -16.358396530151367 ], [ -70.975852966308594, -16.36046028137207 ], [ -70.973701477050668, -16.363763809204045 ], [ -70.970413208007812, -16.36793136596674 ], [ -70.969520568847656, -16.370052337646484 ], [ -70.969551086425781, -16.372198104858398 ], [ -70.972679138183594, -16.377004623413086 ], [ -70.973617553710938, -16.381235122680607 ], [ -70.975059509277344, -16.38548469543457 ], [ -70.975189208984375, -16.38776969909668 ], [ -70.974884033203125, -16.389921188354379 ], [ -70.973907470703125, -16.392454147338867 ], [ -70.973052978515625, -16.393514633178654 ], [ -70.969131469726562, -16.395818710327092 ], [ -70.965080261230469, -16.397274017333984 ], [ -70.964706420898381, -16.397672653198242 ], [ -70.964698791503906, -16.398485183715763 ], [ -70.964103698730469, -16.399402618408146 ], [ -70.964775085449219, -16.401760101318303 ], [ -70.96551513671875, -16.403362274169922 ], [ -70.966865539550781, -16.405597686767521 ], [ -70.968246459960881, -16.407293319702148 ], [ -70.97017669677723, -16.408655166625977 ], [ -70.974205017089844, -16.409780502319336 ], [ -70.975212097167912, -16.410331726074219 ], [ -70.975738525390625, -16.414049148559457 ], [ -70.975715637207031, -16.418388366699105 ], [ -70.974441528320256, -16.422262191772461 ], [ -70.974311828613281, -16.424018859863168 ], [ -70.971855163574162, -16.428707122802734 ], [ -70.969665527343693, -16.431137084960881 ], [ -70.966041564941349, -16.432861328124943 ], [ -70.965385437011662, -16.433559417724609 ], [ -70.964813232421818, -16.434658050537109 ], [ -70.964736938476449, -16.43587684631342 ], [ -70.966194152832031, -16.441091537475586 ], [ -70.966094970703125, -16.442026138305664 ], [ -70.965499877929574, -16.443397521972656 ], [ -70.965255737304688, -16.446317672729492 ], [ -70.963722229003906, -16.449199676513672 ], [ -70.962776184082031, -16.450515747070256 ], [ -70.961311340332031, -16.45176887512207 ], [ -70.95796966552723, -16.453716278076172 ], [ -70.95635986328125, -16.455923080444336 ], [ -70.955223083496094, -16.456901550292912 ], [ -70.953948974609318, -16.459781646728402 ], [ -70.953590393066406, -16.461751937866211 ], [ -70.953720092773438, -16.464721679687443 ], [ -70.954093933105469, -16.467136383056641 ], [ -70.954765319824219, -16.468772888183594 ], [ -70.956840515136719, -16.47197151184082 ], [ -70.957595825195312, -16.472572326660156 ], [ -70.959152221679688, -16.47316932678217 ], [ -70.961669921874943, -16.476726531982365 ], [ -70.965568542480412, -16.479843139648438 ], [ -70.967262268066406, -16.480344772338867 ], [ -70.969802856445312, -16.480520248412972 ], [ -70.971611022949219, -16.480438232421818 ], [ -70.974319458007812, -16.479812622070312 ], [ -70.9775390625, -16.479850769042969 ], [ -70.979026794433537, -16.480184555053711 ], [ -70.980140686035156, -16.481016159057617 ], [ -70.980560302734318, -16.480995178222656 ], [ -70.983283996582031, -16.483297348022461 ], [ -70.984054565429688, -16.484737396240178 ], [ -70.985816955566293, -16.486457824706974 ], [ -70.985816955566293, -16.487403869628849 ], [ -70.986434936523438, -16.488758087158146 ], [ -70.98907470703125, -16.491716384887695 ], [ -70.991134643554631, -16.494615554809513 ], [ -70.991493225097656, -16.495000839233342 ], [ -70.992561340331974, -16.495346069335881 ], [ -70.994171142578068, -16.496639251708984 ], [ -70.995941162109375, -16.496946334838867 ], [ -70.996826171875, -16.497367858886719 ], [ -70.999191284179688, -16.497621536254883 ], [ -71.001365661621094, -16.498167037963754 ], [ -71.001968383789062, -16.499235153198242 ], [ -71.003402709960938, -16.498233795166016 ], [ -71.004615783691406, -16.49677658081049 ], [ -71.006500244140568, -16.49598312377924 ], [ -71.008148193359375, -16.495698928833008 ], [ -71.009635925292912, -16.497024536132812 ], [ -71.011688232421875, -16.49827766418457 ], [ -71.012725830078125, -16.499170303344727 ], [ -71.013458251953068, -16.499301910400391 ], [ -71.013984680175781, -16.498823165893498 ], [ -71.014701843261662, -16.496601104736328 ], [ -71.015426635742188, -16.495559692382812 ], [ -71.015571594238168, -16.494758605956974 ], [ -71.016830444335938, -16.49359130859375 ], [ -71.017135620117188, -16.492181777954102 ], [ -71.017234802246094, -16.489675521850472 ], [ -71.019096374511605, -16.486677169799805 ], [ -71.020103454589844, -16.48632621765131 ], [ -71.021621704101562, -16.48623085021967 ], [ -71.024032592773381, -16.486881256103516 ], [ -71.025627136230469, -16.486921310424805 ], [ -71.026145935058537, -16.486797332763672 ], [ -71.027687072753906, -16.485778808593693 ], [ -71.029617309570312, -16.485145568847543 ], [ -71.031974792480355, -16.485101699828988 ], [ -71.034927368163949, -16.484725952148438 ], [ -71.036750793457031, -16.485355377197266 ], [ -71.037216186523324, -16.485355377197266 ], [ -71.0377197265625, -16.485067367553654 ], [ -71.037422180175781, -16.483697891235352 ], [ -71.037322998046875, -16.481361389160156 ], [ -71.037841796875, -16.479927062988281 ], [ -71.039009094238224, -16.478559494018555 ], [ -71.0411376953125, -16.478464126586914 ], [ -71.042533874511662, -16.477714538574219 ], [ -71.043510437011605, -16.47363090515131 ], [ -71.045188903808594, -16.470636367797852 ], [ -71.045097351074162, -16.469743728637582 ], [ -71.044761657714844, -16.46900558471674 ], [ -71.044143676757756, -16.468452453613224 ], [ -71.042076110839787, -16.467601776122933 ], [ -71.041801452636719, -16.4671630859375 ], [ -71.041786193847599, -16.466352462768555 ], [ -71.042358398437443, -16.464738845825195 ], [ -71.043754577636719, -16.463058471679688 ], [ -71.044853210449219, -16.462404251098519 ], [ -71.047019958496037, -16.461578369140568 ], [ -71.048141479492188, -16.460472106933594 ], [ -71.048263549804631, -16.459707260131779 ], [ -71.048065185546818, -16.458612442016602 ], [ -71.046981811523438, -16.456445693969727 ], [ -71.0469970703125, -16.455451965331974 ], [ -71.047988891601506, -16.45527267456049 ], [ -71.049224853515568, -16.456071853637638 ], [ -71.054115295410156, -16.461126327514592 ], [ -71.055244445800668, -16.461933135986328 ], [ -71.056709289550781, -16.462076187133789 ], [ -71.057983398437443, -16.461540222167969 ], [ -71.060806274414062, -16.46097373962391 ], [ -71.063209533691406, -16.461038589477482 ], [ -71.064376831054631, -16.461339950561467 ], [ -71.066146850585938, -16.46249961853016 ], [ -71.0699462890625, -16.464176177978516 ], [ -71.072731018066406, -16.465688705444336 ], [ -71.074028015136605, -16.46565055847168 ], [ -71.075401306152344, -16.464702606201115 ], [ -71.076179504394531, -16.462614059448242 ], [ -71.077064514160099, -16.461702346801701 ], [ -71.078468322753906, -16.45867919921875 ], [ -71.080329895019531, -16.457143783569279 ], [ -71.081451416015568, -16.456588745117188 ], [ -71.082572937011719, -16.456752777099609 ], [ -71.084358215332031, -16.458032608032227 ], [ -71.085823059081974, -16.458320617675724 ], [ -71.086921691894531, -16.458124160766602 ], [ -71.089752197265568, -16.456779479980469 ], [ -71.091697692871094, -16.456789016723633 ], [ -71.092208862304631, -16.457294464111271 ], [ -71.093803405761719, -16.459951400756836 ], [ -71.094406127929631, -16.461954116821289 ], [ -71.095085144042912, -16.462572097778263 ], [ -71.097305297851562, -16.463226318359375 ], [ -71.098716735839787, -16.463947296142521 ], [ -71.100265502929688, -16.464048385620117 ], [ -71.103919982910156, -16.463388442993164 ], [ -71.104438781738224, -16.462738037109261 ], [ -71.1048583984375, -16.461463928222599 ], [ -71.105285644531193, -16.46112060546875 ], [ -71.105667114257756, -16.46110725402832 ], [ -71.106155395507756, -16.461515426635685 ], [ -71.106941223144531, -16.463335037231388 ], [ -71.108001708984375, -16.464706420898381 ], [ -71.109161376953125, -16.465604782104492 ], [ -71.110343933105412, -16.465978622436523 ], [ -71.11126708984375, -16.465688705444336 ], [ -71.114112854003906, -16.464107513427734 ], [ -71.118896484375, -16.462644577026367 ], [ -71.121688842773381, -16.461458206176758 ], [ -71.123794555664006, -16.46102142333973 ], [ -71.125274658203125, -16.461040496826172 ], [ -71.126220703125, -16.461427688598576 ], [ -71.128639221191349, -16.463520050048828 ], [ -71.130020141601562, -16.464258193969727 ], [ -71.131607055664006, -16.466245651245117 ], [ -71.133338928222599, -16.467613220214844 ], [ -71.134201049804631, -16.467937469482422 ], [ -71.136520385742188, -16.468240737915039 ], [ -71.137168884277344, -16.468542098999023 ], [ -71.137596130371094, -16.469614028930607 ], [ -71.137176513671875, -16.471645355224609 ], [ -71.137382507324219, -16.47304725646967 ], [ -71.138648986816406, -16.474361419677678 ], [ -71.139579772949219, -16.474758148193359 ], [ -71.140327453613281, -16.474807739257812 ], [ -71.142311096191293, -16.474365234374943 ], [ -71.146926879882812, -16.473934173583984 ], [ -71.148200988769474, -16.47340011596674 ], [ -71.153648376464787, -16.472850799560547 ], [ -71.154121398925724, -16.472553253173771 ], [ -71.155769348144531, -16.472202301025391 ], [ -71.158241271972543, -16.470941543579102 ], [ -71.159553527831974, -16.470495223998967 ], [ -71.162567138671875, -16.471029281616211 ], [ -71.1654052734375, -16.470586776733342 ], [ -71.169898986816406, -16.472005844116154 ], [ -71.175682067871037, -16.471170425414982 ], [ -71.1793212890625, -16.471851348876953 ], [ -71.184707641601562, -16.472166061401367 ], [ -71.186996459960938, -16.472515106201172 ], [ -71.191459655761719, -16.47169303894043 ], [ -71.195915222167969, -16.471639633178654 ], [ -71.198028564453125, -16.470756530761719 ], [ -71.20058441162098, -16.468404769897404 ], [ -71.201812744140568, -16.467775344848633 ], [ -71.204345703125, -16.465549468994141 ], [ -71.208831787109375, -16.46336555480957 ], [ -71.210243225097656, -16.462957382202092 ], [ -71.21282958984375, -16.462707519531193 ], [ -71.214591979980412, -16.461971282958871 ], [ -71.222511291503849, -16.460058212280273 ], [ -71.225288391113281, -16.459817886352482 ], [ -71.228500366210881, -16.460273742675781 ], [ -71.229194641113168, -16.460720062255803 ], [ -71.231346130371094, -16.463537216186467 ], [ -71.23262786865223, -16.464822769165039 ], [ -71.233261108398381, -16.464998245239258 ], [ -71.235397338867188, -16.464944839477482 ], [ -71.236976623535099, -16.465442657470703 ], [ -71.239280700683537, -16.464763641357422 ], [ -71.242805480956974, -16.462486267089844 ], [ -71.245437622070312, -16.465385437011662 ], [ -71.246658325195312, -16.46771049499506 ], [ -71.246490478515625, -16.46859169006342 ], [ -71.244384765625, -16.472164154052678 ], [ -71.244461059570312, -16.47370719909668 ], [ -71.244865417480469, -16.47536659240717 ], [ -71.246231079101506, -16.477909088134766 ], [ -71.249153137207031, -16.481353759765625 ], [ -71.249496459960881, -16.482162475585881 ], [ -71.2491455078125, -16.48472785949707 ], [ -71.247192382812443, -16.487110137939453 ], [ -71.246627807617131, -16.488346099853516 ], [ -71.243515014648438, -16.491880416870117 ], [ -71.2413330078125, -16.49682426452631 ], [ -71.239082336425724, -16.499778747558594 ], [ -71.237747192382756, -16.502607345581055 ], [ -71.238136291503849, -16.50455284118641 ], [ -71.239730834960938, -16.507234573364258 ], [ -71.239944458007756, -16.508420944213867 ], [ -71.240417480468693, -16.509105682373047 ], [ -71.242088317871094, -16.519739151000977 ], [ -71.243659973144474, -16.523187637329102 ], [ -71.244064331054631, -16.52461051940918 ], [ -71.244697570800781, -16.53148078918457 ], [ -71.244895935058537, -16.537645339965707 ], [ -71.246292114257812, -16.544368743896371 ], [ -71.246658325195312, -16.5482177734375 ], [ -71.246902465820256, -16.548610687255859 ], [ -71.247032165527344, -16.550355911254883 ], [ -71.247650146484375, -16.55323600769043 ], [ -71.248199462890625, -16.560644149780273 ], [ -71.249259948730469, -16.563901901245117 ], [ -71.251998901367188, -16.566947937011662 ], [ -71.253608703613168, -16.571298599243107 ], [ -71.254043579101562, -16.571884155273438 ], [ -71.25592041015625, -16.573326110839787 ], [ -71.257278442382812, -16.57563591003418 ], [ -71.259490966796818, -16.577198028564453 ], [ -71.26009368896473, -16.578653335571175 ], [ -71.260826110839787, -16.582365036010685 ], [ -71.262992858886719, -16.584714889526367 ], [ -71.262992858886719, -16.585535049438477 ], [ -71.261955261230469, -16.586742401123047 ], [ -71.261703491210881, -16.587821960449162 ], [ -71.260719299316406, -16.588680267333928 ], [ -71.260414123535156, -16.589559555053711 ], [ -71.260437011718693, -16.598583221435547 ], [ -71.26009368896473, -16.60224723815918 ], [ -71.260589599609375, -16.605047225952092 ], [ -71.26165771484375, -16.606464385986328 ], [ -71.263969421386662, -16.607534408569279 ], [ -71.270599365234375, -16.606426239013615 ], [ -71.273330688476506, -16.606817245483398 ], [ -71.274330139160156, -16.607315063476449 ], [ -71.275238037109318, -16.608142852783146 ], [ -71.277671813964844, -16.611164093017578 ], [ -71.278480529785099, -16.614391326904297 ], [ -71.279312133789062, -16.61562538146967 ], [ -71.279808044433537, -16.624250411987305 ], [ -71.280838012695312, -16.630054473876953 ], [ -71.280677795410099, -16.632162094116211 ], [ -71.279731750488224, -16.635736465454102 ], [ -71.279609680175724, -16.638025283813477 ], [ -71.279777526855469, -16.642913818359375 ], [ -71.280158996582031, -16.645273208618164 ], [ -71.280136108398438, -16.648494720458928 ], [ -71.281013488769531, -16.652074813842717 ], [ -71.280799865722656, -16.656583786010742 ], [ -71.28118896484375, -16.6579074859618 ], [ -71.282455444335938, -16.659753799438477 ], [ -71.283905029296818, -16.662693023681584 ], [ -71.284889221191293, -16.666809082031193 ], [ -71.285224914550781, -16.674890518188477 ], [ -71.285125732421875, -16.677099227905273 ], [ -71.284561157226562, -16.680364608764648 ], [ -71.284599304199105, -16.681837081909123 ], [ -71.286941528320312, -16.685831069946232 ], [ -71.288787841796818, -16.687110900878849 ], [ -71.292953491210938, -16.688997268676644 ], [ -71.296188354492188, -16.691986083984318 ], [ -71.296455383300781, -16.69257926940918 ], [ -71.298400878906193, -16.69483566284174 ], [ -71.298965454101506, -16.696315765380859 ], [ -71.298980712890568, -16.696596145629826 ], [ -71.297798156738281, -16.698486328124886 ], [ -71.297508239746094, -16.700305938720703 ], [ -71.297904968261719, -16.701719284057617 ], [ -71.298995971679631, -16.703769683837891 ], [ -71.29913330078125, -16.704692840576172 ], [ -71.298034667968693, -16.706821441650391 ], [ -71.297828674316349, -16.708007812499943 ], [ -71.297096252441293, -16.709701538085881 ], [ -71.296173095703125, -16.71063232421875 ], [ -71.293197631835938, -16.712236404418888 ], [ -71.28912353515625, -16.712636947631779 ], [ -71.287948608398438, -16.713396072387638 ], [ -71.286727905273438, -16.713529586791992 ], [ -71.286338806152344, -16.713922500610352 ], [ -71.286460876464844, -16.715204238891545 ], [ -71.288177490234375, -16.717058181762695 ], [ -71.289245605468693, -16.71966552734375 ], [ -71.289428710937443, -16.722511291503849 ], [ -71.288955688476506, -16.723901748657113 ], [ -71.288986206054574, -16.725381851196289 ], [ -71.289245605468693, -16.726253509521484 ], [ -71.290252685546875, -16.727497100830078 ], [ -71.291717529296818, -16.728672027587891 ], [ -71.294082641601562, -16.730058670043945 ], [ -71.296119689941349, -16.731990814208984 ], [ -71.296943664550781, -16.732257843017578 ], [ -71.298370361328125, -16.732238769531193 ], [ -71.299217224121094, -16.732578277587891 ], [ -71.301101684570199, -16.734397888183594 ], [ -71.302330017089787, -16.735105514526367 ], [ -71.304138183593693, -16.73567962646473 ], [ -71.305557250976506, -16.735635757446289 ], [ -71.309127807617188, -16.737739562988224 ], [ -71.31036376953125, -16.737741470336914 ], [ -71.311882019042969, -16.738311767578068 ], [ -71.313034057617188, -16.739765167236271 ], [ -71.313316345214844, -16.74232292175293 ], [ -71.314079284667969, -16.743898391723576 ], [ -71.315101623535099, -16.74473762512207 ], [ -71.317031860351562, -16.745260238647347 ], [ -71.318016052246094, -16.745828628539982 ], [ -71.321105957031193, -16.749204635620117 ], [ -71.324188232421875, -16.751811981201172 ], [ -71.324905395507756, -16.752079010009652 ], [ -71.326049804687443, -16.752080917358398 ], [ -71.327056884765625, -16.752414703369141 ], [ -71.327781677246037, -16.752174377441293 ], [ -71.330528259277344, -16.749019622802678 ], [ -71.330932617187443, -16.748298645019531 ], [ -71.332740783691349, -16.74681282043457 ], [ -71.33624267578125, -16.74639701843256 ], [ -71.337493896484318, -16.745941162109318 ], [ -71.340812683105469, -16.745620727539062 ], [ -71.344169616699162, -16.743965148925724 ], [ -71.345115661621094, -16.742925643920898 ], [ -71.346122741699219, -16.742212295532113 ], [ -71.346771240234318, -16.741113662719727 ], [ -71.348670959472599, -16.735706329345703 ], [ -71.348869323730412, -16.73406791687006 ], [ -71.349952697753906, -16.7325439453125 ], [ -71.350418090820312, -16.73105430603016 ], [ -71.351074218749886, -16.729927062988224 ], [ -71.351318359375, -16.727243423461914 ], [ -71.351768493652344, -16.726097106933594 ], [ -71.353355407714787, -16.725023269653263 ], [ -71.356094360351506, -16.724260330200138 ], [ -71.358345031738281, -16.722873687744084 ], [ -71.358818054199219, -16.722873687744084 ], [ -71.36187744140625, -16.721382141113281 ], [ -71.363487243652344, -16.7208251953125 ], [ -71.365486145019531, -16.719581604003906 ], [ -71.367538452148381, -16.71916389465332 ], [ -71.369911193847656, -16.719142913818303 ], [ -71.370712280273381, -16.719364166259709 ], [ -71.372589111328068, -16.720308303833008 ], [ -71.373886108398438, -16.721254348754883 ], [ -71.376640319824219, -16.722528457641545 ], [ -71.379295349121037, -16.724758148193359 ], [ -71.381729125976562, -16.725812911987305 ], [ -71.383247375488281, -16.726776123046818 ], [ -71.388534545898381, -16.727943420410099 ], [ -71.392181396484375, -16.72974967956543 ], [ -71.393981933593693, -16.730358123779297 ], [ -71.397331237792969, -16.731021881103516 ], [ -71.398391723632812, -16.730922698974609 ], [ -71.399642944335938, -16.730474472045842 ], [ -71.403083801269531, -16.728956222534066 ], [ -71.404792785644531, -16.72894096374506 ], [ -71.406372070312443, -16.729293823242188 ], [ -71.410171508789006, -16.731218338012638 ], [ -71.412406921386719, -16.732629776000977 ], [ -71.41473388671875, -16.734682083129883 ], [ -71.417747497558594, -16.737874984741211 ], [ -71.418693542480469, -16.73809814453125 ], [ -71.420928955078125, -16.737703323364201 ], [ -71.423210144042969, -16.738241195678711 ], [ -71.424247741699219, -16.739051818847656 ], [ -71.424751281738281, -16.739925384521484 ], [ -71.425590515136719, -16.740726470947209 ], [ -71.426055908203125, -16.742414474487305 ], [ -71.42726898193348, -16.744060516357365 ], [ -71.427566528320312, -16.746709823608398 ], [ -71.429237365722599, -16.749319076538086 ], [ -71.429840087890568, -16.751043319702092 ], [ -71.429595947265625, -16.754539489746037 ], [ -71.43032073974598, -16.758335113525391 ], [ -71.430313110351506, -16.759716033935547 ], [ -71.428497314453068, -16.763755798339844 ], [ -71.427780151367188, -16.766033172607422 ], [ -71.428001403808537, -16.767492294311523 ], [ -71.428718566894531, -16.768976211547795 ], [ -71.428718566894531, -16.770265579223633 ], [ -71.428482055664006, -16.770965576171761 ], [ -71.428741455078125, -16.772974014282227 ], [ -71.429191589355469, -16.774002075195256 ], [ -71.431152343749943, -16.77601242065424 ], [ -71.431739807128849, -16.776943206787053 ], [ -71.433547973632756, -16.780721664428654 ], [ -71.433662414550668, -16.78257942199707 ], [ -71.433311462402344, -16.783720016479492 ], [ -71.432960510253849, -16.784166336059513 ], [ -71.433082580566349, -16.786367416381722 ], [ -71.433662414550668, -16.787111282348576 ], [ -71.433685302734375, -16.788202285766602 ], [ -71.434425354003793, -16.788927078247013 ], [ -71.434654235839844, -16.789817810058537 ], [ -71.435111999511719, -16.79015922546381 ], [ -71.435592651367188, -16.790149688720703 ], [ -71.436943054199219, -16.791923522949162 ], [ -71.437080383300724, -16.793306350707951 ], [ -71.436683654785099, -16.794527053833008 ], [ -71.436714172363168, -16.795347213745117 ], [ -71.437469482421818, -16.796300888061523 ], [ -71.441490173339844, -16.799962997436523 ], [ -71.441955566406136, -16.801477432250977 ], [ -71.443069458007756, -16.803617477416935 ], [ -71.443450927734318, -16.805610656738281 ], [ -71.444129943847599, -16.806613922119084 ], [ -71.444328308105412, -16.809362411499023 ], [ -71.443984985351562, -16.815158843994141 ], [ -71.443702697753906, -16.817165374755859 ], [ -71.443138122558594, -16.818899154663086 ], [ -71.443145751953125, -16.824512481689453 ], [ -71.442535400390625, -16.82758903503418 ], [ -71.442031860351506, -16.828681945800781 ], [ -71.441169738769474, -16.829685211181584 ], [ -71.439369201660099, -16.829599380493164 ], [ -71.4388427734375, -16.829833984375 ], [ -71.438499450683537, -16.832067489624023 ], [ -71.437835693359318, -16.832622528076172 ], [ -71.436470031738281, -16.833240509033089 ], [ -71.435401916503906, -16.834739685058537 ], [ -71.435554504394474, -16.83556938171381 ], [ -71.436103820800724, -16.836341857910156 ], [ -71.437065124511662, -16.83723068237299 ], [ -71.438011169433537, -16.837671279907113 ], [ -71.438552856445312, -16.838754653930664 ], [ -71.440788269042912, -16.840473175048771 ], [ -71.441375732421818, -16.841899871826115 ], [ -71.441490173339844, -16.844032287597656 ], [ -71.441268920898381, -16.846878051757699 ], [ -71.441513061523438, -16.848140716552734 ], [ -71.441276550292912, -16.848937988281193 ], [ -71.441162109374943, -16.853078842163086 ], [ -71.440711975097599, -16.855840682983398 ], [ -71.440864562988281, -16.860067367553654 ], [ -71.440513610839787, -16.862533569335938 ], [ -71.439933776855412, -16.863994598388672 ], [ -71.438934326171875, -16.867902755737191 ], [ -71.437576293945312, -16.870117187499943 ], [ -71.436897277831974, -16.872703552246037 ], [ -71.436180114746094, -16.874107360839844 ], [ -71.4361572265625, -16.874650955200138 ], [ -71.434455871582031, -16.879087448120117 ], [ -71.433860778808594, -16.881885528564453 ], [ -71.432632446289062, -16.883506774902344 ], [ -71.431983947753906, -16.885616302490234 ], [ -71.428810119628906, -16.888908386230412 ], [ -71.427131652832031, -16.889970779418945 ], [ -71.425437927246037, -16.890609741210938 ], [ -71.42388916015625, -16.892232894897461 ], [ -71.423301696777344, -16.892520904540959 ], [ -71.422454833984375, -16.894329071044922 ], [ -71.422340393066406, -16.895889282226506 ], [ -71.422576904296818, -16.897645950317326 ], [ -71.423057556152287, -16.898544311523381 ], [ -71.423095703125, -16.899087905883675 ], [ -71.424430847167969, -16.901321411132756 ], [ -71.424751281738281, -16.902673721313477 ], [ -71.424652099609375, -16.904972076416016 ], [ -71.425025939941406, -16.905790328979492 ], [ -71.424911499023438, -16.908559799194336 ], [ -71.425491333007812, -16.909599304199162 ], [ -71.425399780273438, -16.913459777832031 ], [ -71.424949645996037, -16.914588928222543 ], [ -71.424842834472656, -16.917438507080021 ], [ -71.425308227539062, -16.918350219726562 ], [ -71.425430297851506, -16.919631958007756 ], [ -71.425758361816406, -16.920398712158146 ], [ -71.428199768066349, -16.922731399536076 ], [ -71.429351806640568, -16.924312591552621 ], [ -71.431243896484318, -16.925872802734375 ], [ -71.435287475585938, -16.927513122558594 ], [ -71.440536499023438, -16.927423477172852 ], [ -71.441680908203125, -16.927841186523324 ], [ -71.442070007324219, -16.928361892700138 ], [ -71.44171142578125, -16.929979324340763 ], [ -71.441741943359318, -16.931171417236271 ], [ -71.441963195800781, -16.931789398193359 ], [ -71.442550659179688, -16.9322509765625 ], [ -71.443283081054631, -16.932487487792912 ], [ -71.445350646972656, -16.932487487792912 ], [ -71.446067810058594, -16.932735443115234 ], [ -71.448226928710881, -16.931781768798828 ], [ -71.449356079101562, -16.931961059570312 ], [ -71.450164794921875, -16.932453155517578 ], [ -71.450805664062443, -16.932575225830021 ], [ -71.452804565429631, -16.932582855224553 ], [ -71.454551696777344, -16.932270050048828 ], [ -71.456092834472656, -16.933010101318359 ], [ -71.459159851074219, -16.936004638671875 ], [ -71.459297180175724, -16.936721801757812 ], [ -71.459907531738281, -16.937553405761662 ], [ -71.46002197265625, -16.938558578491154 ], [ -71.460426330566349, -16.939086914062443 ], [ -71.460556030273324, -16.939704895019531 ], [ -71.460136413574162, -16.941165924072209 ], [ -71.460433959960881, -16.943075180053711 ], [ -71.464645385742131, -16.947221755981388 ], [ -71.465057373046875, -16.948156356811523 ], [ -71.466194152832031, -16.949510574340763 ], [ -71.466407775878906, -16.950227737426758 ], [ -71.465812683105469, -16.951055526733342 ], [ -71.465675354003849, -16.953535079955998 ], [ -71.463989257812386, -16.955646514892578 ], [ -71.463706970214844, -16.957265853881722 ], [ -71.463027954101506, -16.958274841308594 ], [ -71.462600708007812, -16.958356857299805 ], [ -71.461402893066349, -16.959394454956055 ], [ -71.456947326660156, -16.960399627685547 ], [ -71.4544677734375, -16.960489273071232 ], [ -71.453155517578125, -16.959978103637695 ], [ -71.450408935546818, -16.959751129150391 ], [ -71.448509216308537, -16.958896636962834 ], [ -71.446937561035156, -16.957155227661076 ], [ -71.446411132812443, -16.956993103027287 ], [ -71.445739746093693, -16.956329345703068 ], [ -71.442726135253906, -16.955781936645508 ], [ -71.441810607910156, -16.955919265747013 ], [ -71.44036865234375, -16.956661224365234 ], [ -71.439323425292969, -16.956705093383789 ], [ -71.43817138671875, -16.957155227661076 ], [ -71.437583923339844, -16.957616806030217 ], [ -71.436592102050724, -16.959085464477539 ], [ -71.435989379882812, -16.959545135498047 ], [ -71.433433532714787, -16.959798812866211 ], [ -71.431472778320312, -16.960250854492131 ], [ -71.429977416992188, -16.95980262756342 ], [ -71.427711486816349, -16.958442687988224 ], [ -71.426422119140625, -16.957084655761662 ], [ -71.424324035644531, -16.95648193359375 ], [ -71.421546936035043, -16.954689025878906 ], [ -71.419845581054688, -16.954442977905273 ], [ -71.418319702148438, -16.9539279937743 ], [ -71.416946411132756, -16.954435348510742 ], [ -71.414955139160099, -16.954671859741154 ], [ -71.412284851074162, -16.953985214233342 ], [ -71.410369873046818, -16.953851699829102 ], [ -71.409263610839844, -16.954824447631836 ], [ -71.406173706054631, -16.955438613891545 ], [ -71.403907775878793, -16.956598281860238 ], [ -71.402778625488281, -16.957582473754883 ], [ -71.402191162109261, -16.958646774291992 ], [ -71.402030944824219, -16.960302352905217 ], [ -71.402130126953125, -16.962957382202092 ], [ -71.402847290039006, -16.964176177978402 ], [ -71.403213500976506, -16.96581840515131 ], [ -71.403121948242131, -16.966520309448242 ], [ -71.402191162109261, -16.968126296997013 ], [ -71.401565551757812, -16.968828201293945 ], [ -71.398681640625, -16.970596313476562 ], [ -71.397697448730412, -16.971588134765568 ], [ -71.394462585449105, -16.97352409362793 ], [ -71.39337158203125, -16.974676132202148 ], [ -71.392082214355355, -16.976615905761719 ], [ -71.391921997070312, -16.979597091674805 ], [ -71.393013000488224, -16.981222152709961 ], [ -71.393417358398324, -16.982828140258789 ], [ -71.395271301269531, -16.98480033874506 ], [ -71.395599365234318, -16.985673904418888 ], [ -71.395584106445256, -16.986684799194336 ], [ -71.394561767578011, -16.989543914794808 ], [ -71.394844055175668, -16.991083145141545 ], [ -71.394859313964844, -16.992925643920842 ], [ -71.394386291503906, -16.994792938232308 ], [ -71.392860412597656, -16.997663497924748 ], [ -71.389259338378906, -17.001895904541016 ], [ -71.388847351074219, -17.003683090209904 ], [ -71.388809204101506, -17.006696701049805 ], [ -71.387474060058537, -17.010248184204102 ], [ -71.387550354003906, -17.012161254882812 ], [ -71.387855529785099, -17.013410568237248 ], [ -71.387863159179631, -17.015253067016602 ], [ -71.386825561523381, -17.016788482665959 ], [ -71.38665771484375, -17.018615722656193 ], [ -71.386009216308594, -17.019941329956055 ], [ -71.385055541992188, -17.020673751830998 ], [ -71.383621215820312, -17.020772933959904 ], [ -71.376251220703011, -17.019180297851506 ], [ -71.373481750488168, -17.018011093139535 ], [ -71.371971130371094, -17.016738891601562 ], [ -71.370079040527344, -17.015668869018555 ], [ -71.3682861328125, -17.01429176330555 ], [ -71.365997314453125, -17.013628005981332 ], [ -71.36541748046875, -17.014204025268555 ], [ -71.364875793456974, -17.017938613891602 ], [ -71.363510131835938, -17.020469665527344 ], [ -71.361473083496094, -17.02227592468256 ], [ -71.357948303222656, -17.023916244506779 ], [ -71.356719970703125, -17.024063110351506 ], [ -71.353515624999943, -17.024955749511719 ], [ -71.351707458496037, -17.02484130859375 ], [ -71.347198486328125, -17.023630142211857 ], [ -71.34576416015625, -17.022739410400391 ], [ -71.344146728515625, -17.022161483764648 ], [ -71.342819213867188, -17.021297454833928 ], [ -71.341613769531193, -17.020978927612305 ], [ -71.340744018554631, -17.021043777465763 ], [ -71.340179443359318, -17.02165412902832 ], [ -71.338272094726506, -17.025167465209847 ], [ -71.336669921874886, -17.027566909790039 ], [ -71.331375122070312, -17.033084869384766 ], [ -71.326438903808537, -17.036378860473633 ], [ -71.320533752441349, -17.03980827331543 ], [ -71.319198608398381, -17.041246414184513 ], [ -71.3189697265625, -17.042623519897461 ], [ -71.319129943847656, -17.04400634765625 ], [ -71.324470520019531, -17.052078247070256 ], [ -71.324462890624886, -17.052730560302734 ], [ -71.325973510742131, -17.056186676025334 ], [ -71.325431823730469, -17.058134078979435 ], [ -71.323989868163949, -17.060220718383789 ], [ -71.323226928710824, -17.060749053955021 ], [ -71.321434020996094, -17.061004638671875 ], [ -71.319389343261662, -17.061779022216797 ], [ -71.318237304687443, -17.063680648803654 ], [ -71.316307067871094, -17.066072463989201 ], [ -71.315811157226562, -17.067850112915039 ], [ -71.315155029296875, -17.068857192993164 ], [ -71.314979553222656, -17.069856643676701 ], [ -71.315269470214844, -17.07099723815918 ], [ -71.315223693847656, -17.074769973754883 ], [ -71.315925598144531, -17.076570510864144 ], [ -71.315719604492188, -17.078018188476506 ], [ -71.315216064453011, -17.079128265380859 ], [ -71.314559936523438, -17.079900741577092 ], [ -71.311721801757812, -17.081150054931641 ], [ -71.310699462890568, -17.082817077636605 ], [ -71.309562683105412, -17.084051132202148 ], [ -71.309013366699105, -17.085521697998047 ], [ -71.308883666992131, -17.088542938232422 ], [ -71.307540893554688, -17.09088134765625 ], [ -71.307189941406193, -17.091939926147461 ], [ -71.305427551269531, -17.094236373901367 ], [ -71.305084228515568, -17.095178604125977 ], [ -71.305061340332031, -17.098218917846566 ], [ -71.305427551269531, -17.099460601806641 ], [ -71.305450439453068, -17.100381851196232 ], [ -71.306396484375, -17.102890014648438 ], [ -71.308372497558594, -17.105714797973576 ], [ -71.312782287597656, -17.110063552856445 ], [ -71.314132690429631, -17.112171173095646 ], [ -71.31640625, -17.114650726318303 ], [ -71.316612243652287, -17.115365982055607 ], [ -71.316520690917912, -17.116004943847543 ], [ -71.3150634765625, -17.118253707885742 ], [ -71.314613342285099, -17.119670867919922 ], [ -71.316062927246037, -17.123044967651367 ], [ -71.317108154296818, -17.124002456665039 ], [ -71.320045471191349, -17.124805450439453 ], [ -71.321929931640625, -17.126363754272461 ], [ -71.323173522949219, -17.128398895263558 ], [ -71.323883056640568, -17.129034042358398 ], [ -71.325736999511719, -17.134138107299748 ], [ -71.32659912109375, -17.135238647460881 ], [ -71.328872680664062, -17.137083053588867 ], [ -71.332107543945312, -17.13904953002924 ], [ -71.337318420410099, -17.140783309936523 ], [ -71.340927124023381, -17.142871856689396 ], [ -71.344383239746037, -17.144401550292912 ], [ -71.348602294921875, -17.145572662353516 ], [ -71.350189208984318, -17.146430969238281 ], [ -71.351730346679631, -17.14781379699707 ], [ -71.35555267333973, -17.152538299560547 ], [ -71.356872558593693, -17.154882431030273 ], [ -71.359039306640625, -17.157926559448242 ], [ -71.362655639648438, -17.162305831909066 ], [ -71.371223449707031, -17.173765182495117 ], [ -71.374954223632812, -17.178218841552734 ], [ -71.380409240722599, -17.183767318725586 ], [ -71.387870788574162, -17.189867019653207 ], [ -71.390457153320199, -17.192314147949219 ], [ -71.391601562499886, -17.19375038146967 ], [ -71.393280029296875, -17.197298049926701 ], [ -71.394180297851449, -17.198490142822209 ], [ -71.398078918456974, -17.20161056518549 ], [ -71.399765014648438, -17.202434539794922 ], [ -71.402282714843636, -17.204103469848633 ], [ -71.405563354492188, -17.207590103149357 ], [ -71.407272338867188, -17.210020065307617 ], [ -71.411590576171875, -17.214332580566406 ], [ -71.414642333984375, -17.219440460205021 ], [ -71.417198181152344, -17.225992202758732 ], [ -71.418663024902287, -17.228473663330078 ], [ -71.420547485351562, -17.232404708862305 ], [ -71.423652648925781, -17.236368179321232 ], [ -71.425895690917969, -17.238348007202148 ], [ -71.433692932128906, -17.241302490234318 ], [ -71.434814453125, -17.241962432861271 ], [ -71.436813354492188, -17.243831634521484 ], [ -71.43798828125, -17.246450424194336 ], [ -71.43902587890625, -17.248102188110295 ], [ -71.442398071289006, -17.250732421874943 ], [ -71.444633483886719, -17.251142501831055 ], [ -71.447227478027344, -17.252300262451172 ], [ -71.448806762695256, -17.252670288085938 ], [ -71.452346801757756, -17.252878189086857 ], [ -71.456039428710881, -17.252473831176758 ], [ -71.457832336425781, -17.252777099609375 ], [ -71.46051025390625, -17.252851486206055 ], [ -71.464057922363224, -17.253896713256836 ], [ -71.468475341796875, -17.256645202636662 ], [ -71.469947814941406, -17.258106231689453 ], [ -71.470069885253849, -17.260284423828068 ], [ -71.471313476562443, -17.262561798095646 ], [ -71.471847534179688, -17.264421463012638 ], [ -71.474464416503849, -17.266290664672852 ], [ -71.477165222167969, -17.267448425292855 ], [ -71.480110168457031, -17.270063400268498 ], [ -71.482025146484375, -17.27336311340332 ], [ -71.482696533203125, -17.275749206542969 ], [ -71.483909606933537, -17.277296066284123 ], [ -71.484519958496094, -17.278829574584904 ], [ -71.487197875976562, -17.281732559204102 ], [ -71.48919677734375, -17.282766342163086 ], [ -71.490928649902344, -17.284494400024414 ], [ -71.491744995117188, -17.285366058349553 ], [ -71.492156982421875, -17.285877227783203 ], [ -71.492057800292969, -17.285972595214844 ], [ -71.492080688476562, -17.286249160766545 ], [ -71.49346923828125, -17.286249160766545 ], [ -71.49346923828125, -17.285972595214844 ], [ -71.494026184081918, -17.285972595214844 ], [ -71.494026184081918, -17.285694122314453 ], [ -71.494583129882756, -17.285694122314453 ], [ -71.494583129882756, -17.285417556762638 ], [ -71.495414733886719, -17.285417556762638 ], [ -71.495414733886719, -17.285139083862191 ], [ -71.495697021484375, -17.285139083862191 ], [ -71.495697021484375, -17.284860610961914 ], [ -71.496246337890625, -17.284860610961914 ], [ -71.496246337890625, -17.284305572509709 ], [ -71.496803283691406, -17.284305572509709 ], [ -71.496803283691406, -17.283590316772404 ], [ -71.496803283691406, -17.283472061157227 ], [ -71.496948242187443, -17.283472061157227 ], [ -71.497360229492131, -17.283472061157227 ], [ -71.497360229492131, -17.283193588256779 ], [ -71.497642517089787, -17.283193588256779 ], [ -71.497642517089787, -17.282917022705078 ], [ -71.498191833496037, -17.282917022705078 ], [ -71.498191833496037, -17.282638549804688 ], [ -71.499580383300781, -17.282638549804688 ], [ -71.499580383300781, -17.282363891601562 ], [ -71.500137329101562, -17.282363891601562 ], [ -71.500137329101562, -17.282083511352425 ], [ -71.500968933105412, -17.282083511352425 ], [ -71.500968933105412, -17.281805038452148 ], [ -71.501808166503906, -17.281805038452148 ], [ -71.501808166503906, -17.281528472900334 ], [ -71.502357482910156, -17.281528472900334 ], [ -71.502357482910156, -17.281251907348633 ], [ -71.502639770507812, -17.281251907348633 ], [ -71.502639770507812, -17.280969619750977 ], [ -71.503196716308594, -17.280969619750977 ], [ -71.503196716308594, -17.280694961547852 ], [ -71.503753662109261, -17.280694961547852 ], [ -71.503753662109261, -17.277915954589787 ], [ -71.503471374511605, -17.277915954589787 ], [ -71.503471374511605, -17.277360916137695 ], [ -71.503753662109261, -17.277360916137695 ], [ -71.503753662109261, -17.277082443237305 ], [ -71.504028320312443, -17.277082443237305 ], [ -71.504028320312443, -17.276527404785156 ], [ -71.505416870117188, -17.276527404785156 ], [ -71.505416870117188, -17.275138854980412 ], [ -71.505691528320312, -17.275138854980412 ], [ -71.505691528320312, -17.273471832275391 ], [ -71.505973815917969, -17.273471832275391 ], [ -71.505973815917969, -17.272916793823185 ], [ -71.505691528320312, -17.272916793823185 ], [ -71.505691528320312, -17.272638320922795 ], [ -71.505973815917969, -17.272638320922795 ], [ -71.505973815917969, -17.271528244018555 ], [ -71.506248474121094, -17.271528244018555 ], [ -71.506248474121094, -17.270694732666016 ], [ -71.507362365722599, -17.270694732666016 ], [ -71.507362365722599, -17.270416259765625 ], [ -71.507637023925724, -17.270416259765625 ], [ -71.507637023925724, -17.26986122131342 ], [ -71.507919311523381, -17.26986122131342 ], [ -71.507919311523381, -17.269306182861328 ], [ -71.508193969726562, -17.269306182861328 ], [ -71.508193969726562, -17.269027709960938 ], [ -71.508468627929688, -17.269027709960938 ], [ -71.508468627929688, -17.26874923706049 ], [ -71.509025573730469, -17.26874923706049 ], [ -71.509025573730469, -17.268472671508789 ], [ -71.50958251953125, -17.268472671508789 ], [ -71.50958251953125, -17.268194198608398 ], [ -71.509864807128906, -17.268194198608398 ], [ -71.509864807128906, -17.267915725708008 ], [ -71.510696411132756, -17.267915725708008 ], [ -71.510696411132756, -17.267639160156136 ], [ -71.511802673339844, -17.267639160156136 ], [ -71.511802673339844, -17.267362594604435 ], [ -71.512260437011719, -17.267362594604435 ], [ -71.512641906738281, -17.267362594604435 ], [ -71.512641906738281, -17.267084121704045 ], [ -71.513191223144474, -17.267084121704045 ], [ -71.513191223144474, -17.266805648803654 ], [ -71.514030456542912, -17.266805648803654 ], [ -71.514030456542912, -17.266527175903263 ], [ -71.515419006347656, -17.266527175903263 ], [ -71.515419006347656, -17.266250610351562 ], [ -71.515975952148438, -17.266250610351562 ], [ -71.515975952148438, -17.265970230102425 ], [ -71.517082214355412, -17.265970230102425 ], [ -71.517082214355412, -17.265693664550724 ], [ -71.519859313964787, -17.265693664550724 ], [ -71.519859313964787, -17.265970230102425 ], [ -71.520233154296818, -17.265970230102425 ], [ -71.522087097167969, -17.265970230102425 ], [ -71.522087097167969, -17.265417098999023 ], [ -71.522361755371094, -17.265417098999023 ], [ -71.522361755371094, -17.265140533447209 ], [ -71.522918701171818, -17.265140533447209 ], [ -71.522918701171818, -17.264862060546818 ], [ -71.523750305175724, -17.264862060546818 ], [ -71.523750305175724, -17.265237808227539 ], [ -71.523750305175724, -17.265417098999023 ], [ -71.524024963378906, -17.265417098999023 ], [ -71.524024963378906, -17.266527175903263 ], [ -71.524307250976562, -17.266527175903263 ], [ -71.524307250976562, -17.267915725708008 ], [ -71.524024963378906, -17.267917633056584 ], [ -71.524024963378906, -17.268194198608398 ], [ -71.523475646972599, -17.268194198608398 ], [ -71.523475646972599, -17.269027709960938 ], [ -71.524024963378906, -17.269027709960938 ], [ -71.524024963378906, -17.269306182861328 ], [ -71.523750305175724, -17.269306182861328 ], [ -71.523750305175724, -17.269582748413029 ], [ -71.525138854980469, -17.269582748413029 ], [ -71.525138854980469, -17.26986122131342 ], [ -71.525413513183594, -17.26986122131342 ], [ -71.525413513183594, -17.269582748413029 ], [ -71.525970458984318, -17.269582748413029 ], [ -71.525970458984318, -17.269693374633789 ], [ -71.525970458984318, -17.26986122131342 ], [ -71.526519775390568, -17.26986122131342 ], [ -71.526802062988224, -17.26986122131342 ], [ -71.526802062988224, -17.27013969421381 ], [ -71.527641296386719, -17.27013969421381 ], [ -71.527641296386719, -17.269582748413029 ], [ -71.528472900390625, -17.269582748413029 ], [ -71.528472900390625, -17.26986122131342 ], [ -71.528839111328011, -17.26986122131342 ], [ -71.529029846191293, -17.26986122131342 ], [ -71.529029846191293, -17.270416259765625 ], [ -71.529586791992131, -17.270416259765625 ], [ -71.529586791992131, -17.270694732666016 ], [ -71.529861450195256, -17.270694732666016 ], [ -71.529861450195256, -17.271249771118164 ], [ -71.530136108398381, -17.271249771118164 ], [ -71.530136108398381, -17.271528244018555 ], [ -71.530693054199219, -17.271528244018555 ], [ -71.530693054199219, -17.271249771118164 ], [ -71.530975341796875, -17.271249771118164 ], [ -71.530975341796875, -17.270971298217773 ], [ -71.531806945800781, -17.270971298217773 ], [ -71.531806945800781, -17.270416259765625 ], [ -71.531524658203125, -17.270416259765625 ], [ -71.531524658203125, -17.26986122131342 ], [ -71.530975341796875, -17.26986122131342 ], [ -71.530975341796875, -17.269582748413029 ], [ -71.530418395996094, -17.269582748413029 ], [ -71.530418395996094, -17.269306182861328 ], [ -71.530136108398381, -17.269306182861328 ], [ -71.530136108398381, -17.267084121704045 ], [ -71.529861450195256, -17.267084121704045 ], [ -71.529861450195256, -17.266527175903263 ], [ -71.529586791992131, -17.266527175903263 ], [ -71.529586791992131, -17.266250610351562 ], [ -71.529304504394474, -17.266250610351562 ], [ -71.529304504394474, -17.264862060546818 ], [ -71.529586791992131, -17.264858245849553 ], [ -71.529586791992131, -17.264633178710938 ], [ -71.529586791992131, -17.264305114746094 ], [ -71.530136108398381, -17.264305114746094 ], [ -71.530136108398381, -17.264030456542969 ], [ -71.530975341796875, -17.264030456542969 ], [ -71.530975341796875, -17.263748168945312 ], [ -71.531524658203125, -17.263748168945312 ], [ -71.531524658203125, -17.263471603393498 ], [ -71.53125, -17.263471603393498 ], [ -71.53125, -17.262083053588867 ], [ -71.530975341796875, -17.262083053588867 ], [ -71.530975341796875, -17.260414123535156 ], [ -71.530693054199219, -17.260414123535156 ], [ -71.530693054199219, -17.260139465332031 ], [ -71.530975341796875, -17.260139465332031 ], [ -71.530975341796875, -17.259786605834961 ], [ -71.530975341796875, -17.25958251953125 ], [ -71.53125, -17.25958251953125 ], [ -71.53125, -17.259304046630803 ], [ -71.531806945800781, -17.259304046630803 ], [ -71.531806945800781, -17.259027481079102 ], [ -71.532363891601449, -17.259027481079102 ], [ -71.532363891601449, -17.259189605712891 ], [ -71.532363891601449, -17.259304046630803 ], [ -71.532913208007756, -17.259304046630803 ], [ -71.532913208007756, -17.25958251953125 ], [ -71.533195495605412, -17.25958251953125 ], [ -71.533195495605412, -17.259860992431641 ], [ -71.533470153808594, -17.259860992431641 ], [ -71.533470153808594, -17.259304046630803 ], [ -71.53375244140625, -17.259304046630803 ], [ -71.53375244140625, -17.25958251953125 ], [ -71.534027099609375, -17.25958251953125 ], [ -71.534027099609375, -17.259304046630803 ], [ -71.5343017578125, -17.259304046630803 ], [ -71.5343017578125, -17.257360458373967 ], [ -71.534027099609375, -17.257360458373967 ], [ -71.534027099609375, -17.256805419921875 ], [ -71.53375244140625, -17.256805419921875 ], [ -71.53375244140625, -17.255973815917912 ], [ -71.534027099609375, -17.255973815917912 ], [ -71.534027099609375, -17.255327224731445 ], [ -71.534027099609375, -17.25513839721674 ], [ -71.534584045410156, -17.25513839721674 ], [ -71.534584045410156, -17.254861831665039 ], [ -71.535972595214787, -17.254861831665039 ], [ -71.535972595214787, -17.25513839721674 ], [ -71.536186218261719, -17.25513839721674 ], [ -71.53680419921875, -17.25513839721674 ], [ -71.53680419921875, -17.255416870117131 ], [ -71.537635803222656, -17.255416870117131 ], [ -71.537635803222656, -17.254861831665039 ], [ -71.537918090820312, -17.254861831665039 ], [ -71.537918090820312, -17.2540283203125 ], [ -71.538192749023438, -17.2540283203125 ], [ -71.538192749023438, -17.253704071044865 ], [ -71.538192749023438, -17.253469467163029 ], [ -71.539306640624943, -17.253469467163029 ], [ -71.539306640624943, -17.253599166870117 ], [ -71.539306640624943, -17.253751754760685 ], [ -71.539581298828068, -17.253751754760685 ], [ -71.539581298828068, -17.254583358764592 ], [ -71.539863586425724, -17.254583358764592 ], [ -71.539863586425724, -17.254861831665039 ], [ -71.540138244628906, -17.254861831665039 ], [ -71.540138244628906, -17.25513839721674 ], [ -71.539863586425724, -17.25513839721674 ], [ -71.539863586425724, -17.255416870117131 ], [ -71.540695190429688, -17.255416870117131 ], [ -71.540695190429688, -17.255695343017521 ], [ -71.541526794433594, -17.255695343017521 ], [ -71.541526794433594, -17.255973815917912 ], [ -71.542358398437443, -17.255973815917912 ], [ -71.542358398437443, -17.256250381469727 ], [ -71.542915344238224, -17.256250381469727 ], [ -71.542915344238224, -17.256526947021484 ], [ -71.543197631835938, -17.256526947021484 ], [ -71.543197631835938, -17.256805419921875 ], [ -71.543746948242188, -17.256805419921875 ], [ -71.543746948242188, -17.257083892822266 ], [ -71.544029235839844, -17.257083892822266 ], [ -71.544029235839844, -17.257360458373967 ], [ -71.544143676757812, -17.257360458373967 ], [ -71.544303894042969, -17.257360458373967 ], [ -71.544303894042969, -17.258195877075195 ], [ -71.545417785644474, -17.258195877075195 ], [ -71.545417785644474, -17.258750915527287 ], [ -71.545692443847599, -17.258750915527287 ], [ -71.546806335449219, -17.258750915527287 ], [ -71.546806335449219, -17.259027481079102 ], [ -71.54736328125, -17.259027481079102 ], [ -71.54736328125, -17.25958251953125 ], [ -71.548194885253793, -17.25958251953125 ], [ -71.548194885253793, -17.259860992431641 ], [ -71.548751831054631, -17.259860992431641 ], [ -71.548751831054631, -17.260139465332031 ], [ -71.549026489257756, -17.260139465332031 ], [ -71.549026489257756, -17.260694503784123 ], [ -71.549583435058594, -17.260694503784123 ], [ -71.549583435058594, -17.260414123535156 ], [ -71.550140380859375, -17.260414123535156 ], [ -71.550140380859375, -17.260694503784123 ], [ -71.5504150390625, -17.260694503784123 ], [ -71.5504150390625, -17.260414123535156 ], [ -71.550697326660156, -17.260414123535156 ], [ -71.550697326660156, -17.260139465332031 ], [ -71.551246643066293, -17.260139465332031 ], [ -71.551246643066293, -17.259860992431641 ], [ -71.551528930664006, -17.259860992431641 ], [ -71.551528930664006, -17.259515762329102 ], [ -71.551528930664006, -17.259304046630803 ], [ -71.551803588867131, -17.259304046630803 ], [ -71.551803588867131, -17.259027481079102 ], [ -71.552085876464787, -17.259027481079102 ], [ -71.552085876464787, -17.258750915527287 ], [ -71.552360534667912, -17.258750915527287 ], [ -71.552360534667912, -17.258472442626896 ], [ -71.552635192871094, -17.258472442626896 ], [ -71.552635192871094, -17.258195877075195 ], [ -71.55291748046875, -17.258195877075195 ], [ -71.55291748046875, -17.257638931274357 ], [ -71.553192138671875, -17.257638931274357 ], [ -71.553192138671875, -17.257360458373967 ], [ -71.553474426269531, -17.257360458373967 ], [ -71.553474426269531, -17.257083892822266 ], [ -71.554306030273438, -17.257083892822266 ], [ -71.554306030273438, -17.256805419921875 ], [ -71.554580688476506, -17.256805419921875 ], [ -71.554580688476506, -17.256250381469727 ], [ -71.556526184082031, -17.256250381469727 ], [ -71.556808471679688, -17.256250381469727 ], [ -71.556808471679688, -17.256805419921875 ], [ -71.556526184082031, -17.256805419921875 ], [ -71.556526184082031, -17.257917404174805 ], [ -71.556251525878906, -17.257917404174805 ], [ -71.556251525878906, -17.258195877075195 ], [ -71.55596923828125, -17.258195877075195 ], [ -71.55596923828125, -17.258472442626896 ], [ -71.558471679687443, -17.258472442626896 ], [ -71.558471679687443, -17.258750915527287 ], [ -71.559028625488281, -17.258750915527287 ], [ -71.559028625488281, -17.259027481079102 ], [ -71.559585571289062, -17.259027481079102 ], [ -71.559585571289062, -17.25958251953125 ], [ -71.559860229492188, -17.25958251953125 ], [ -71.559860229492188, -17.259860992431641 ], [ -71.560073852539062, -17.259860992431641 ], [ -71.560974121093636, -17.259860992431641 ], [ -71.560974121093636, -17.260002136230412 ], [ -71.560974121093636, -17.260139465332031 ], [ -71.561805725097599, -17.260139465332031 ], [ -71.561805725097599, -17.260694503784123 ], [ -71.562637329101562, -17.260694503784123 ], [ -71.562637329101562, -17.260972976684513 ], [ -71.563194274902344, -17.260972976684513 ], [ -71.563194274902344, -17.261144638061523 ], [ -71.563194274902344, -17.261249542236214 ], [ -71.563468933105469, -17.261249542236214 ], [ -71.563468933105469, -17.260972976684513 ], [ -71.564025878906136, -17.260972976684513 ], [ -71.564025878906136, -17.260694503784123 ], [ -71.564308166503849, -17.260694503784123 ], [ -71.564308166503849, -17.260972976684513 ], [ -71.564582824706974, -17.260972976684513 ], [ -71.564582824706974, -17.260694503784123 ], [ -71.564926147460938, -17.260694503784123 ], [ -71.565139770507756, -17.260694503784123 ], [ -71.565139770507756, -17.260517120361328 ], [ -71.565139770507756, -17.260414123535156 ], [ -71.565338134765568, -17.260414123535156 ], [ -71.565696716308594, -17.260414123535156 ], [ -71.565696716308594, -17.260139465332031 ], [ -71.565971374511719, -17.260139465332031 ], [ -71.565971374511719, -17.259860992431641 ], [ -71.5665283203125, -17.259860992431641 ], [ -71.5665283203125, -17.25958251953125 ], [ -71.566802978515625, -17.25958251953125 ], [ -71.566802978515625, -17.259304046630803 ], [ -71.567298889160156, -17.259304046630803 ], [ -71.567916870117131, -17.259304046630803 ], [ -71.567916870117131, -17.259027481079102 ], [ -71.568191528320256, -17.259027481079102 ], [ -71.568191528320256, -17.258472442626896 ], [ -71.568473815917912, -17.258472442626896 ], [ -71.568473815917912, -17.257638931274357 ], [ -71.568748474121094, -17.257638931274357 ], [ -71.568748474121094, -17.257375717163029 ], [ -71.568748474121094, -17.256805419921875 ], [ -71.56903076171875, -17.256805419921875 ], [ -71.56903076171875, -17.256250381469727 ], [ -71.569305419921875, -17.256250381469727 ], [ -71.569305419921875, -17.256044387817326 ], [ -71.569305419921875, -17.255695343017521 ], [ -71.569580078125, -17.255695343017521 ], [ -71.569580078125, -17.255416870117131 ], [ -71.569862365722656, -17.255416870117131 ], [ -71.569862365722656, -17.254861831665039 ], [ -71.570137023925781, -17.254861831665039 ], [ -71.570137023925781, -17.254583358764592 ], [ -71.571250915527287, -17.254583358764592 ], [ -71.571250915527287, -17.254304885864201 ], [ -71.571525573730412, -17.254304885864201 ], [ -71.571525573730412, -17.2540283203125 ], [ -71.571708679199219, -17.2540283203125 ], [ -71.57208251953125, -17.2540283203125 ], [ -71.57208251953125, -17.254304885864201 ], [ -71.572914123535156, -17.254304885864201 ], [ -71.572914123535156, -17.254583358764592 ], [ -71.57375335693348, -17.254583358764592 ], [ -71.57375335693348, -17.254861831665039 ], [ -71.575691223144531, -17.254861831665039 ], [ -71.575691223144531, -17.254583358764592 ], [ -71.576530456542969, -17.254583358764592 ], [ -71.576530456542969, -17.254304885864201 ], [ -71.57680511474598, -17.254304885864201 ], [ -71.57680511474598, -17.2540283203125 ], [ -71.577362060546818, -17.2540283203125 ], [ -71.577362060546818, -17.253751754760685 ], [ -71.579307556152344, -17.253751754760685 ], [ -71.579307556152344, -17.253194808959961 ], [ -71.579582214355469, -17.253194808959961 ], [ -71.579582214355469, -17.25291633605957 ], [ -71.579864501953125, -17.25291633605957 ], [ -71.579864501953125, -17.252359390258789 ], [ -71.580139160156193, -17.252359390258789 ], [ -71.580139160156193, -17.252082824706974 ], [ -71.580329895019474, -17.252082824706974 ], [ -71.580696105956974, -17.252082824706974 ], [ -71.580696105956974, -17.251939773559513 ], [ -71.580696105956974, -17.251806259155273 ], [ -71.581039428710938, -17.251806259155273 ], [ -71.581527709960938, -17.251806259155273 ], [ -71.581527709960938, -17.251529693603516 ], [ -71.581802368164062, -17.251529693603516 ], [ -71.581802368164062, -17.251247406005859 ], [ -71.582481384277344, -17.251247406005859 ], [ -71.582916259765625, -17.251247406005859 ], [ -71.582916259765625, -17.251079559326172 ], [ -71.582916259765625, -17.250972747802734 ], [ -71.584663391113281, -17.250972747802734 ], [ -71.584861755371094, -17.250972747802734 ], [ -71.584861755371094, -17.251247406005859 ], [ -71.585136413574219, -17.251247406005859 ], [ -71.585136413574219, -17.251529693603516 ], [ -71.585693359375, -17.251529693603516 ], [ -71.585693359375, -17.251806259155273 ], [ -71.586250305175668, -17.251806259155273 ], [ -71.586250305175668, -17.251529693603516 ], [ -71.586807250976506, -17.251529693603516 ], [ -71.586807250976506, -17.250972747802734 ], [ -71.587081909179631, -17.250972747802734 ], [ -71.587081909179631, -17.250694274902344 ], [ -71.587638854980469, -17.250694274902344 ], [ -71.587638854980469, -17.250415802001953 ], [ -71.589027404785156, -17.250415802001953 ], [ -71.589027404785156, -17.250137329101562 ], [ -71.589584350585824, -17.250137329101562 ], [ -71.589584350585824, -17.249860763549805 ], [ -71.589859008789006, -17.249860763549805 ], [ -71.589859008789006, -17.24958419799799 ], [ -71.590415954589787, -17.24958419799799 ], [ -71.590415954589787, -17.249305725097599 ], [ -71.591804504394531, -17.249305725097599 ], [ -71.591804504394531, -17.248750686645508 ], [ -71.593475341796818, -17.248750686645508 ], [ -71.593475341796818, -17.249025344848633 ], [ -71.594306945800781, -17.249025344848633 ], [ -71.594306945800781, -17.249305725097599 ], [ -71.594581604003906, -17.249305725097599 ], [ -71.594581604003906, -17.24958419799799 ], [ -71.595970153808537, -17.24958419799799 ], [ -71.595970153808537, -17.249305725097599 ], [ -71.596527099609318, -17.249305725097599 ], [ -71.596527099609318, -17.248109817504826 ], [ -71.596527099609318, -17.247915267944279 ], [ -71.596801757812443, -17.247915267944279 ], [ -71.596801757812443, -17.247638702392578 ], [ -71.597084045410099, -17.247638702392578 ], [ -71.597084045410099, -17.247360229492188 ], [ -71.597640991210938, -17.247360229492188 ], [ -71.597640991210938, -17.247083663940316 ], [ -71.597915649414062, -17.247083663940316 ], [ -71.597915649414062, -17.246805191040039 ], [ -71.598472595214844, -17.246805191040039 ], [ -71.598472595214844, -17.246528625488224 ], [ -71.600418090820312, -17.246528625488224 ], [ -71.600418090820312, -17.246250152587834 ], [ -71.600975036621094, -17.246250152587834 ], [ -71.600975036621094, -17.245971679687443 ], [ -71.601524353027344, -17.245971679687443 ], [ -71.601524353027344, -17.245693206787053 ], [ -71.602363586425668, -17.245693206787053 ], [ -71.602363586425668, -17.245416641235352 ], [ -71.603195190429631, -17.245416641235352 ], [ -71.603195190429631, -17.245138168334961 ], [ -71.603752136230469, -17.245138168334961 ], [ -71.603752136230469, -17.244861602783203 ], [ -71.60430908203125, -17.244861602783203 ], [ -71.60430908203125, -17.244583129882812 ], [ -71.6048583984375, -17.244583129882812 ], [ -71.6048583984375, -17.244304656982422 ], [ -71.605415344238168, -17.244304656982422 ], [ -71.605415344238168, -17.244028091430607 ], [ -71.606246948242131, -17.244028091430607 ], [ -71.606246948242131, -17.24374961853016 ], [ -71.606529235839787, -17.24374961853016 ], [ -71.606529235839787, -17.243473052978459 ], [ -71.606803894042969, -17.243473052978459 ], [ -71.606803894042969, -17.243194580078068 ], [ -71.608474731445312, -17.243194580078068 ], [ -71.608474731445312, -17.242916107177678 ], [ -71.609024047851506, -17.242916107177678 ], [ -71.609024047851506, -17.242639541625977 ], [ -71.609863281249943, -17.242639541625977 ], [ -71.609863281249943, -17.242082595825195 ], [ -71.610137939453125, -17.242082595825195 ], [ -71.610137939453125, -17.241806030273438 ], [ -71.610694885253906, -17.241806030273438 ], [ -71.610694885253906, -17.241527557373047 ], [ -71.611808776855355, -17.241527557373047 ], [ -71.611808776855355, -17.241249084472656 ], [ -71.612083435058537, -17.241249084472656 ], [ -71.612083435058537, -17.240972518920842 ], [ -71.612640380859318, -17.240972518920842 ], [ -71.612640380859318, -17.240694046020394 ], [ -71.613197326660156, -17.240694046020394 ], [ -71.613197326660156, -17.24041748046875 ], [ -71.616249084472656, -17.24041748046875 ], [ -71.616249084472656, -17.240140914916992 ], [ -71.616806030273438, -17.240140914916992 ], [ -71.616806030273438, -17.239858627319336 ], [ -71.617637634277344, -17.239858627319336 ], [ -71.617637634277344, -17.239583969116211 ], [ -71.618194580078011, -17.239583969116211 ], [ -71.618194580078011, -17.23930549621582 ], [ -71.619026184081974, -17.23930549621582 ], [ -71.619026184081974, -17.239028930663949 ], [ -71.619583129882812, -17.239028930663949 ], [ -71.619583129882812, -17.238748550415039 ], [ -71.620140075683594, -17.238748550415039 ], [ -71.620140075683594, -17.238470077514592 ], [ -71.6209716796875, -17.238470077514592 ], [ -71.6209716796875, -17.238193511962891 ], [ -71.621528625488224, -17.238193511962891 ], [ -71.621528625488224, -17.237918853759766 ], [ -71.622085571289006, -17.237918853759766 ], [ -71.622085571289006, -17.237640380859375 ], [ -71.622642517089787, -17.237640380859375 ], [ -71.622642517089787, -17.237361907958984 ], [ -71.62347412109375, -17.237361907958984 ], [ -71.62347412109375, -17.237083435058537 ], [ -71.624031066894531, -17.237083435058537 ], [ -71.624031066894531, -17.236804962158146 ], [ -71.624580383300724, -17.236804962158146 ], [ -71.624580383300724, -17.236526489257756 ], [ -71.625137329101506, -17.236526489257756 ], [ -71.625137329101506, -17.236249923706055 ], [ -71.625419616699162, -17.236249923706055 ], [ -71.625419616699162, -17.235971450805664 ], [ -71.626251220703125, -17.235971450805664 ], [ -71.626251220703125, -17.235694885253906 ], [ -71.627082824707031, -17.235694885253906 ], [ -71.627082824707031, -17.235416412353516 ], [ -71.627639770507699, -17.235416412353516 ], [ -71.627639770507699, -17.235137939453125 ], [ -71.628196716308537, -17.235137939453125 ], [ -71.628196716308537, -17.23486137390131 ], [ -71.6290283203125, -17.23486137390131 ], [ -71.6290283203125, -17.23458290100092 ], [ -71.629585266113281, -17.23458290100092 ], [ -71.629585266113281, -17.23486137390131 ], [ -71.629859924316406, -17.23486137390131 ], [ -71.629859924316406, -17.235137939453125 ], [ -71.631530761718693, -17.235137939453125 ], [ -71.631530761718693, -17.23486137390131 ], [ -71.631805419921818, -17.23486137390131 ], [ -71.631805419921818, -17.234027862548828 ], [ -71.632080078125, -17.234027862548828 ], [ -71.632080078125, -17.233749389648381 ], [ -71.632362365722656, -17.233749389648381 ], [ -71.632362365722656, -17.233194351196289 ], [ -71.633468627929688, -17.233194351196289 ], [ -71.633468627929688, -17.232639312744027 ], [ -71.633750915527344, -17.232639312744027 ], [ -71.633750915527344, -17.23236083984375 ], [ -71.635139465331974, -17.23236083984375 ], [ -71.635139465331974, -17.232084274291935 ], [ -71.636802673339844, -17.232082366943359 ], [ -71.636802673339844, -17.231805801391545 ], [ -71.6370849609375, -17.231805801391545 ], [ -71.6370849609375, -17.231250762939453 ], [ -71.637359619140568, -17.231250762939453 ], [ -71.637359619140568, -17.230972290039062 ], [ -71.638191223144474, -17.230972290039062 ], [ -71.638191223144474, -17.231250762939453 ], [ -71.638473510742131, -17.231250762939453 ], [ -71.638473510742131, -17.231527328491154 ], [ -71.639579772949219, -17.231527328491154 ], [ -71.639579772949219, -17.231250762939453 ], [ -71.639862060546875, -17.231250762939453 ], [ -71.639862060546875, -17.230972290039062 ], [ -71.64013671875, -17.230972290039062 ], [ -71.64013671875, -17.230417251586914 ], [ -71.639862060546875, -17.230417251586914 ], [ -71.639862060546875, -17.230138778686523 ], [ -71.64013671875, -17.230138778686523 ], [ -71.64013671875, -17.229860305786133 ], [ -71.640419006347543, -17.229860305786133 ], [ -71.640419006347543, -17.229305267333984 ], [ -71.640693664550724, -17.229305267333984 ], [ -71.640693664550724, -17.22902870178217 ], [ -71.640975952148381, -17.22902870178217 ], [ -71.640975952148381, -17.228750228881779 ], [ -71.641639709472599, -17.228750228881779 ], [ -71.643196105957031, -17.228750228881779 ], [ -71.643196105957031, -17.228473663330078 ], [ -71.643753051757699, -17.228473663330078 ], [ -71.643753051757699, -17.228195190429688 ], [ -71.644584655761662, -17.228195190429688 ], [ -71.644584655761662, -17.227916717529297 ], [ -71.6451416015625, -17.227916717529297 ], [ -71.6451416015625, -17.227638244628906 ], [ -71.64569091796875, -17.227638244628906 ], [ -71.64569091796875, -17.227361679077148 ], [ -71.646247863769531, -17.227361679077148 ], [ -71.646247863769531, -17.227083206176758 ], [ -71.646804809570199, -17.227083206176758 ], [ -71.646804809570199, -17.226804733276367 ], [ -71.647636413574162, -17.226804733276367 ], [ -71.647636413574162, -17.226528167724553 ], [ -71.648475646972656, -17.226528167724553 ], [ -71.648475646972656, -17.226251602172852 ], [ -71.649307250976562, -17.226251602172852 ], [ -71.649307250976562, -17.225973129272404 ], [ -71.650138854980412, -17.225973129272404 ], [ -71.650138854980412, -17.225694656372013 ], [ -71.650970458984318, -17.225694656372013 ], [ -71.650970458984318, -17.225416183471623 ], [ -71.651527404785156, -17.225416183471623 ], [ -71.651527404785156, -17.225137710571232 ], [ -71.651802062988281, -17.225137710571232 ], [ -71.651802062988281, -17.224859237670842 ], [ -71.65191650390625, -17.224859237670842 ], [ -71.654861450195312, -17.224859237670842 ], [ -71.654861450195312, -17.224582672119141 ], [ -71.655418395996094, -17.224582672119141 ], [ -71.655418395996094, -17.224306106567383 ], [ -71.656249999999886, -17.224306106567383 ], [ -71.656249999999886, -17.224029541015568 ], [ -71.656806945800724, -17.224029541015568 ], [ -71.656806945800724, -17.223354339599553 ], [ -71.656806945800724, -17.223194122314339 ], [ -71.657081604003849, -17.223194122314339 ], [ -71.657081604003849, -17.222919464111328 ], [ -71.657638549804688, -17.222919464111328 ], [ -71.657638549804688, -17.223194122314339 ], [ -71.657913208007812, -17.223194122314339 ], [ -71.657913208007812, -17.223472595214787 ], [ -71.659027099609375, -17.223472595214787 ], [ -71.659027099609375, -17.223194122314339 ], [ -71.659584045410043, -17.223194122314339 ], [ -71.659584045410043, -17.222919464111328 ], [ -71.660140991210881, -17.222919464111328 ], [ -71.660140991210881, -17.222637176513672 ], [ -71.661529541015625, -17.222637176513672 ], [ -71.661529541015625, -17.222360610961857 ], [ -71.66180419921875, -17.222360610961857 ], [ -71.66180419921875, -17.222084045410156 ], [ -71.662361145019531, -17.222084045410156 ], [ -71.662361145019531, -17.221805572509766 ], [ -71.662918090820256, -17.221805572509766 ], [ -71.662918090820256, -17.221525192260629 ], [ -71.663192749023381, -17.221525192260629 ], [ -71.663192749023381, -17.221250534057617 ], [ -71.663749694824162, -17.221250534057617 ], [ -71.663749694824162, -17.220972061157227 ], [ -71.664024353027344, -17.220972061157227 ], [ -71.664024353027344, -17.220693588256836 ], [ -71.664581298828125, -17.220693588256836 ], [ -71.664581298828125, -17.220415115356445 ], [ -71.664863586425781, -17.220415115356445 ], [ -71.664863586425781, -17.220138549804631 ], [ -71.665451049804688, -17.220138549804631 ], [ -71.665695190429688, -17.220138549804631 ], [ -71.665695190429688, -17.220037460327148 ], [ -71.665695190429688, -17.21986198425293 ], [ -71.666114807128906, -17.21986198425293 ], [ -71.666252136230412, -17.21986198425293 ], [ -71.666252136230412, -17.219583511352482 ], [ -71.666778564453125, -17.219583511352482 ], [ -71.667083740234318, -17.219583511352482 ], [ -71.667083740234318, -17.219457626342773 ], [ -71.667083740234318, -17.219303131103516 ], [ -71.667449951171875, -17.219303131103516 ], [ -71.668197631835938, -17.219303131103516 ], [ -71.668197631835938, -17.219028472900391 ], [ -71.668502807617188, -17.219028472900391 ], [ -71.66902923583973, -17.219028472900391 ], [ -71.66902923583973, -17.21875 ], [ -71.669464111328125, -17.21875 ], [ -71.669860839843693, -17.21875 ], [ -71.669860839843693, -17.218471527099609 ], [ -71.671524047851562, -17.218471527099609 ], [ -71.671524047851562, -17.218193054199219 ], [ -71.67208099365223, -17.218193054199219 ], [ -71.67208099365223, -17.217802047729435 ], [ -71.67208099365223, -17.21763801574707 ], [ -71.672470092773438, -17.21763801574707 ], [ -71.673469543457031, -17.21763801574707 ], [ -71.673469543457031, -17.217361450195256 ], [ -71.674583435058594, -17.217361450195256 ], [ -71.674583435058594, -17.217084884643555 ], [ -71.675415039062386, -17.217084884643555 ], [ -71.675415039062386, -17.216806411743164 ], [ -71.677085876464844, -17.216806411743164 ], [ -71.677085876464844, -17.216527938842773 ], [ -71.678192138671875, -17.216527938842773 ], [ -71.678192138671875, -17.216249465942326 ], [ -71.679031372070256, -17.216249465942326 ], [ -71.679031372070256, -17.215972900390625 ], [ -71.680137634277344, -17.215972900390625 ], [ -71.680137634277344, -17.215694427490234 ], [ -71.68096923828125, -17.215694427490234 ], [ -71.68096923828125, -17.215415954589844 ], [ -71.682083129882756, -17.215415954589844 ], [ -71.682083129882756, -17.215139389037972 ], [ -71.683197021484375, -17.215139389037972 ], [ -71.683197021484375, -17.214862823486271 ], [ -71.684028625488281, -17.214862823486271 ], [ -71.684028625488281, -17.214582443237305 ], [ -71.684860229492074, -17.214582443237305 ], [ -71.684860229492074, -17.21430587768549 ], [ -71.686248779296875, -17.21430587768549 ], [ -71.686248779296875, -17.214027404785099 ], [ -71.686805725097656, -17.214027404785099 ], [ -71.686805725097656, -17.213752746581918 ], [ -71.687080383300781, -17.213752746581918 ], [ -71.687080383300781, -17.213472366333008 ], [ -71.687362670898438, -17.213472366333008 ], [ -71.687362670898438, -17.21319389343256 ], [ -71.688468933105412, -17.21319389343256 ], [ -71.688468933105412, -17.212917327880859 ], [ -71.689308166503849, -17.212917327880859 ], [ -71.689308166503849, -17.212640762329045 ], [ -71.690139770507812, -17.212640762329045 ], [ -71.690139770507812, -17.212358474731388 ], [ -71.691802978515568, -17.212358474731388 ], [ -71.691802978515568, -17.212083816528207 ], [ -71.692916870117188, -17.212083816528207 ], [ -71.692916870117188, -17.21180534362793 ], [ -71.69403076171875, -17.21180534362793 ], [ -71.69403076171875, -17.211528778076115 ], [ -71.695137023925724, -17.211528778076115 ], [ -71.695137023925724, -17.211248397827148 ], [ -71.695968627929688, -17.211248397827148 ], [ -71.695968627929688, -17.210971832275334 ], [ -71.696807861328125, -17.210971832275334 ], [ -71.696807861328125, -17.210695266723633 ], [ -71.698196411132756, -17.210695266723633 ], [ -71.698196411132756, -17.210418701171761 ], [ -71.699302673339844, -17.210418701171761 ], [ -71.699302673339844, -17.210136413574219 ], [ -71.701805114746037, -17.210136413574219 ], [ -71.701805114746037, -17.209861755371094 ], [ -71.702079772949219, -17.209861755371094 ], [ -71.702079772949219, -17.209583282470703 ], [ -71.70263671875, -17.209583282470703 ], [ -71.70263671875, -17.209304809570312 ], [ -71.703193664550781, -17.209304809570312 ], [ -71.703193664550781, -17.209026336669922 ], [ -71.703475952148438, -17.209026336669922 ], [ -71.703475952148438, -17.20874977111805 ], [ -71.704025268554574, -17.20874977111805 ], [ -71.704025268554574, -17.208471298217773 ], [ -71.705413818359375, -17.208471298217773 ], [ -71.705413818359375, -17.208194732665959 ], [ -71.706527709960938, -17.208194732665959 ], [ -71.706527709960938, -17.207916259765568 ], [ -71.709304809570312, -17.207916259765568 ], [ -71.709304809570312, -17.207639694213867 ], [ -71.711250305175724, -17.207639694213867 ], [ -71.711250305175724, -17.207361221313477 ], [ -71.711807250976562, -17.207361221313477 ], [ -71.711807250976562, -17.207082748413086 ], [ -71.712081909179688, -17.207082748413086 ], [ -71.712081909179688, -17.206804275512638 ], [ -71.714584350585881, -17.206804275512638 ], [ -71.714584350585881, -17.206527709960938 ], [ -71.715141296386719, -17.206527709960938 ], [ -71.715141296386719, -17.206249237060547 ], [ -71.718193054199219, -17.206249237060547 ], [ -71.718193054199219, -17.205972671508732 ], [ -71.71875, -17.205972671508732 ], [ -71.71875, -17.205694198608285 ], [ -71.719306945800781, -17.205694198608285 ], [ -71.719306945800781, -17.205415725708008 ], [ -71.719863891601562, -17.205415725708008 ], [ -71.719863891601562, -17.205139160156193 ], [ -71.720695495605412, -17.205139160156193 ], [ -71.720695495605412, -17.205415725708008 ], [ -71.720970153808537, -17.205415725708008 ], [ -71.720970153808537, -17.205972671508732 ], [ -71.721527099609375, -17.205972671508732 ], [ -71.721527099609375, -17.206249237060547 ], [ -71.7218017578125, -17.206249237060547 ], [ -71.7218017578125, -17.205972671508732 ], [ -71.722915649414062, -17.205972671508732 ], [ -71.722915649414062, -17.205694198608285 ], [ -71.723747253417912, -17.205694198608285 ], [ -71.723747253417912, -17.205415725708008 ], [ -71.724029541015568, -17.205415725708008 ], [ -71.724029541015568, -17.205139160156193 ], [ -71.725975036621094, -17.205139160156193 ], [ -71.725975036621094, -17.204860687255803 ], [ -71.726524353027287, -17.204860687255803 ], [ -71.726524353027287, -17.204584121704102 ], [ -71.727081298828068, -17.204584121704102 ], [ -71.727081298828068, -17.204305648803711 ], [ -71.727363586425724, -17.204305648803711 ], [ -71.727363586425724, -17.20402717590332 ], [ -71.727912902832031, -17.20402717590332 ], [ -71.727912902832031, -17.203750610351562 ], [ -71.729026794433594, -17.203750610351562 ], [ -71.729026794433594, -17.203472137451172 ], [ -71.729858398437443, -17.203472137451172 ], [ -71.729858398437443, -17.203193664550781 ], [ -71.732086181640625, -17.203193664550781 ], [ -71.732086181640625, -17.202917098998967 ], [ -71.733192443847599, -17.202917098998967 ], [ -71.733192443847599, -17.202638626098576 ], [ -71.735969543456974, -17.202638626098576 ], [ -71.735969543456974, -17.202362060546875 ], [ -71.736808776855412, -17.202360153198129 ], [ -71.736808776855412, -17.202083587646428 ], [ -71.738197326660156, -17.202083587646428 ], [ -71.738197326660156, -17.201805114746037 ], [ -71.740692138671875, -17.201805114746037 ], [ -71.740692138671875, -17.201528549194336 ], [ -71.742362976074105, -17.201528549194336 ], [ -71.742362976074105, -17.201250076293945 ], [ -71.743194580078068, -17.201250076293945 ], [ -71.743194580078068, -17.200971603393555 ], [ -71.744026184082031, -17.200971603393555 ], [ -71.744026184082031, -17.200695037841797 ], [ -71.745414733886605, -17.200695037841797 ], [ -71.745414733886605, -17.200416564941406 ], [ -71.746528625488224, -17.200416564941406 ], [ -71.746528625488224, -17.200138092041016 ], [ -71.748748779296818, -17.200138092041016 ], [ -71.748748779296818, -17.199861526489201 ], [ -71.750968933105469, -17.199861526489201 ], [ -71.750968933105469, -17.19958305358881 ], [ -71.751808166503793, -17.19958305358881 ], [ -71.751808166503793, -17.199306488037109 ], [ -71.752639770507756, -17.199304580688363 ], [ -71.752639770507756, -17.199029922485352 ], [ -71.753471374511719, -17.199029922485352 ], [ -71.753471374511719, -17.198751449584961 ], [ -71.754585266113281, -17.198751449584961 ], [ -71.754585266113281, -17.199304580688363 ], [ -71.754859924316293, -17.199306488037109 ], [ -71.754859924316293, -17.19958305358881 ], [ -71.75653076171875, -17.19958305358881 ], [ -71.75653076171875, -17.199306488037109 ], [ -71.758750915527287, -17.199304580688363 ], [ -71.758750915527287, -17.199029922485352 ], [ -71.759307861328068, -17.199029922485352 ], [ -71.759307861328068, -17.198751449584961 ], [ -71.759864807128906, -17.198751449584961 ], [ -71.759864807128906, -17.19847297668457 ], [ -71.760139465332031, -17.19847297668457 ], [ -71.760139465332031, -17.19819450378418 ], [ -71.760696411132812, -17.19819450378418 ], [ -71.760696411132812, -17.197917938232365 ], [ -71.760971069335938, -17.197917938232365 ], [ -71.760971069335938, -17.197637557983398 ], [ -71.766250610351562, -17.197637557983398 ], [ -71.766250610351562, -17.197359085083008 ], [ -71.768753051757756, -17.197359085083008 ], [ -71.768753051757756, -17.197637557983398 ], [ -71.769859313964844, -17.197637557983398 ], [ -71.769859313964844, -17.197359085083008 ], [ -71.770416259765625, -17.197359085083008 ], [ -71.770416259765625, -17.19708251953125 ], [ -71.770690917968636, -17.19708251953125 ], [ -71.770690917968636, -17.196807861328125 ], [ -71.771247863769474, -17.196807861328125 ], [ -71.771247863769474, -17.196529388427734 ], [ -71.774307250976506, -17.196529388427734 ], [ -71.774307250976506, -17.196250915527344 ], [ -71.775138854980412, -17.196250915527344 ], [ -71.775138854980412, -17.195972442626953 ], [ -71.77569580078125, -17.195972442626953 ], [ -71.77569580078125, -17.195693969726506 ], [ -71.776527404785156, -17.195693969726506 ], [ -71.776527404785156, -17.195415496826115 ], [ -71.777359008789006, -17.195415496826115 ], [ -71.777359008789006, -17.195138931274414 ], [ -71.778190612792912, -17.195138931274414 ], [ -71.778198242187443, -17.194860458374023 ], [ -71.779029846191406, -17.194860458374023 ], [ -71.779029846191406, -17.194583892822152 ], [ -71.781806945800781, -17.194583892822152 ], [ -71.781806945800781, -17.194305419921875 ], [ -71.784027099609318, -17.194305419921875 ], [ -71.784027099609318, -17.194583892822152 ], [ -71.785972595214844, -17.194583892822152 ], [ -71.785972595214844, -17.194305419921875 ], [ -71.786804199218636, -17.194305419921875 ], [ -71.786804199218636, -17.194026947021484 ], [ -71.787635803222599, -17.194026947021484 ], [ -71.787635803222599, -17.19375038146967 ], [ -71.788192749023438, -17.19375038146967 ], [ -71.788192749023438, -17.193471908569279 ], [ -71.789024353027344, -17.193471908569279 ], [ -71.789024353027344, -17.193195343017578 ], [ -71.789863586425781, -17.193195343017578 ], [ -71.789863586425781, -17.192916870117188 ], [ -71.790412902831974, -17.192916870117188 ], [ -71.790412902831974, -17.192638397216797 ], [ -71.790695190429631, -17.192638397216797 ], [ -71.790695190429631, -17.192361831665039 ], [ -71.791252136230412, -17.192361831665039 ], [ -71.791252136230412, -17.192083358764648 ], [ -71.791526794433594, -17.192083358764648 ], [ -71.791526794433594, -17.191804885864258 ], [ -71.792083740234375, -17.191804885864258 ], [ -71.792083740234375, -17.191528320312443 ], [ -71.795417785644531, -17.191528320312443 ], [ -71.795417785644531, -17.191249847411996 ], [ -71.797363281249943, -17.191249847411996 ], [ -71.797363281249943, -17.190971374511719 ], [ -71.797637939453125, -17.190971374511719 ], [ -71.797637939453125, -17.190694808959904 ], [ -71.797920227050781, -17.190694808959904 ], [ -71.797920227050781, -17.190416336059513 ], [ -71.798194885253906, -17.190416336059513 ], [ -71.798194885253906, -17.190139770507812 ], [ -71.801803588867188, -17.190139770507812 ], [ -71.801803588867188, -17.189861297607422 ], [ -71.802917480468693, -17.189861297607422 ], [ -71.802917480468693, -17.189582824707031 ], [ -71.803749084472599, -17.189582824707031 ], [ -71.803749084472599, -17.189306259155273 ], [ -71.804862976074219, -17.189306259155273 ], [ -71.804862976074219, -17.189027786254883 ], [ -71.805419921875, -17.189027786254883 ], [ -71.805419921875, -17.188749313354492 ], [ -71.806251525878849, -17.188749313354492 ], [ -71.806251525878849, -17.188472747802678 ], [ -71.806808471679631, -17.188472747802678 ], [ -71.806808471679631, -17.18819427490223 ], [ -71.807357788085938, -17.18819427490223 ], [ -71.807357788085938, -17.187915802001953 ], [ -71.807914733886719, -17.187915802001953 ], [ -71.807914733886719, -17.187639236450138 ], [ -71.808746337890625, -17.187639236450138 ], [ -71.808746337890625, -17.187362670898438 ], [ -71.809303283691349, -17.187362670898438 ], [ -71.809303283691349, -17.187084197998047 ], [ -71.809860229492131, -17.187084197998047 ], [ -71.809860229492131, -17.186805725097656 ], [ -71.810417175292969, -17.186805725097656 ], [ -71.810417175292969, -17.186527252197266 ], [ -71.81097412109375, -17.186527252197266 ], [ -71.81097412109375, -17.186250686645508 ], [ -71.811531066894531, -17.186250686645508 ], [ -71.811531066894531, -17.185972213745117 ], [ -71.812080383300668, -17.185972213745117 ], [ -71.812080383300668, -17.185693740844727 ], [ -71.812362670898324, -17.185693740844727 ], [ -71.812362670898324, -17.185417175292912 ], [ -71.812919616699162, -17.185417175292912 ], [ -71.812919616699162, -17.185140609741211 ], [ -71.813468933105469, -17.185140609741211 ], [ -71.813468933105469, -17.184858322143555 ], [ -71.81402587890625, -17.184858322143555 ], [ -71.81402587890625, -17.184583663940373 ], [ -71.815414428710824, -17.184583663940373 ], [ -71.815414428710824, -17.184305191039982 ], [ -71.816802978515625, -17.184305191039982 ], [ -71.816802978515625, -17.184030532836857 ], [ -71.817359924316406, -17.184030532836857 ], [ -71.817359924316406, -17.183748245239201 ], [ -71.817642211914062, -17.183748245239201 ], [ -71.817642211914062, -17.1834716796875 ], [ -71.818191528320312, -17.1834716796875 ], [ -71.818191528320312, -17.183195114135742 ], [ -71.818748474121037, -17.183195114135742 ], [ -71.818748474121037, -17.182918548583928 ], [ -71.819030761718693, -17.182918548583928 ], [ -71.819030761718693, -17.182636260986271 ], [ -71.819580078124943, -17.182636260986271 ], [ -71.819580078124943, -17.182361602783146 ], [ -71.819862365722599, -17.182361602783146 ], [ -71.819862365722599, -17.182083129882756 ], [ -71.820419311523438, -17.182083129882756 ], [ -71.820419311523438, -17.181804656982308 ], [ -71.820968627929688, -17.181804656982308 ], [ -71.820968627929688, -17.181526184082031 ], [ -71.821807861328011, -17.181526184082031 ], [ -71.821807861328011, -17.181249618530217 ], [ -71.822364807128849, -17.181249618530217 ], [ -71.822364807128849, -17.180973052978516 ], [ -71.822914123535099, -17.180973052978516 ], [ -71.822914123535099, -17.180694580078125 ], [ -71.824302673339844, -17.180694580078125 ], [ -71.824302673339844, -17.180414199829045 ], [ -71.825416564941349, -17.180414199829045 ], [ -71.825416564941349, -17.180139541625863 ], [ -71.826248168945312, -17.180139541625863 ], [ -71.826248168945312, -17.179861068725586 ], [ -71.82763671875, -17.179861068725586 ], [ -71.82763671875, -17.179582595825195 ], [ -71.827919006347656, -17.179582595825195 ], [ -71.827919006347656, -17.179304122924805 ], [ -71.828193664550668, -17.179304122924805 ], [ -71.828193664550668, -17.178749084472599 ], [ -71.828475952148381, -17.178749084472599 ], [ -71.828475952148381, -17.178472518920898 ], [ -71.828750610351506, -17.178472518920898 ], [ -71.828750610351506, -17.178195953369141 ], [ -71.829582214355469, -17.178195953369141 ], [ -71.829582214355469, -17.178472518920898 ], [ -71.830970764160156, -17.178472518920898 ], [ -71.830970764160156, -17.178195953369141 ], [ -71.831802368164006, -17.178195953369141 ], [ -71.831802368164006, -17.17791748046875 ], [ -71.832359313964787, -17.17791748046875 ], [ -71.832359313964787, -17.177639007568359 ], [ -71.832916259765625, -17.177639007568359 ], [ -71.832916259765625, -17.177360534667969 ], [ -71.833747863769531, -17.177360534667969 ], [ -71.833747863769531, -17.177082061767578 ], [ -71.834587097167855, -17.177082061767578 ], [ -71.834587097167855, -17.17680549621582 ], [ -71.835418701171818, -17.17680549621582 ], [ -71.835418701171818, -17.17652702331543 ], [ -71.836250305175781, -17.17652702331543 ], [ -71.836250305175781, -17.176250457763615 ], [ -71.837364196777344, -17.176250457763615 ], [ -71.837364196777344, -17.175973892211914 ], [ -71.837638854980355, -17.175973892211914 ], [ -71.837638854980355, -17.175693511962834 ], [ -71.838195800781193, -17.175693511962834 ], [ -71.838195800781193, -17.175973892211914 ], [ -71.838752746581974, -17.175973892211914 ], [ -71.838752746581974, -17.175693511962834 ], [ -71.839584350585938, -17.175693511962834 ], [ -71.839584350585938, -17.175416946411133 ], [ -71.840415954589844, -17.175416946411133 ], [ -71.840415954589844, -17.175138473510742 ], [ -71.840972900390511, -17.175138473510742 ], [ -71.840972900390511, -17.17486381530756 ], [ -71.841247558593693, -17.17486381530756 ], [ -71.841247558593693, -17.174304962158203 ], [ -71.841529846191349, -17.174304962158203 ], [ -71.841529846191349, -17.173751831054688 ], [ -71.841804504394474, -17.173751831054688 ], [ -71.841804504394474, -17.173194885253849 ], [ -71.842086791992131, -17.173194885253849 ], [ -71.842102050781193, -17.172639846801758 ], [ -71.842361450195312, -17.172639846801758 ], [ -71.842361450195312, -17.172082901000977 ], [ -71.842636108398438, -17.172082901000977 ], [ -71.842636108398438, -17.171529769897404 ], [ -71.842918395996094, -17.171529769897404 ], [ -71.842918395996094, -17.171247482299748 ], [ -71.844024658203011, -17.171247482299748 ], [ -71.844024658203011, -17.170972824096623 ], [ -71.844863891601506, -17.170972824096623 ], [ -71.844863891601506, -17.170694351196175 ], [ -71.845413208007812, -17.170694351196175 ], [ -71.845413208007812, -17.170415878295898 ], [ -71.84625244140625, -17.170415878295898 ], [ -71.84625244140625, -17.170137405395508 ], [ -71.8468017578125, -17.170137405395508 ], [ -71.8468017578125, -17.169860839843693 ], [ -71.847640991210881, -17.169860839843693 ], [ -71.847640991210881, -17.169584274291992 ], [ -71.848197937011662, -17.169582366943303 ], [ -71.848197937011662, -17.169307708740178 ], [ -71.848472595214787, -17.169307708740178 ], [ -71.848472595214787, -17.168750762939453 ], [ -71.848747253417969, -17.168750762939453 ], [ -71.848747253417969, -17.168472290039062 ], [ -71.849029541015625, -17.168472290039062 ], [ -71.849029541015625, -17.168193817138672 ], [ -71.84930419921875, -17.168193817138672 ], [ -71.84930419921875, -17.167638778686467 ], [ -71.849586486816406, -17.167638778686467 ], [ -71.849586486816406, -17.167360305786019 ], [ -71.849861145019531, -17.167360305786019 ], [ -71.849861145019531, -17.166805267333928 ], [ -71.850135803222656, -17.166805267333928 ], [ -71.850135803222656, -17.166528701782227 ], [ -71.850418090820199, -17.166528701782227 ], [ -71.850418090820199, -17.166250228881836 ], [ -71.850692749023381, -17.166250228881836 ], [ -71.850692749023381, -17.165971755981445 ], [ -71.850975036621037, -17.165971755981445 ], [ -71.850975036621037, -17.165693283081055 ], [ -71.851249694824162, -17.165693283081055 ], [ -71.851249694824162, -17.165138244628906 ], [ -71.851524353027287, -17.165138244628906 ], [ -71.851524353027287, -17.164861679077092 ], [ -71.851806640625, -17.164861679077092 ], [ -71.851806640625, -17.164583206176701 ], [ -71.852081298828125, -17.164583206176701 ], [ -71.852081298828125, -17.164304733276254 ], [ -71.853752136230355, -17.164304733276254 ], [ -71.853752136230355, -17.164028167724609 ], [ -71.854026794433537, -17.164028167724609 ], [ -71.854026794433537, -17.163749694824162 ], [ -71.854309082031193, -17.163749694824162 ], [ -71.854309082031193, -17.16319465637207 ], [ -71.854583740234318, -17.16319465637207 ], [ -71.854583740234318, -17.16291618347168 ], [ -71.8548583984375, -17.16291618347168 ], [ -71.8548583984375, -17.162639617919808 ], [ -71.855415344238281, -17.162639617919808 ], [ -71.855415344238281, -17.162361145019531 ], [ -71.855697631835938, -17.162361145019531 ], [ -71.855697631835938, -17.162082672119141 ], [ -71.856246948242188, -17.162082672119141 ], [ -71.856246948242188, -17.161806106567326 ], [ -71.856529235839844, -17.161806106567326 ], [ -71.856529235839844, -17.161527633666935 ], [ -71.856803894042855, -17.161527633666935 ], [ -71.856803894042855, -17.161249160766545 ], [ -71.857360839843693, -17.161249160766545 ], [ -71.857360839843693, -17.160972595214844 ], [ -71.857635498046818, -17.160972595214844 ], [ -71.857635498046818, -17.160694122314396 ], [ -71.857917785644474, -17.160694122314396 ], [ -71.857917785644474, -17.160417556762695 ], [ -71.858192443847656, -17.160417556762695 ], [ -71.858192443847656, -17.160139083862305 ], [ -71.858749389648438, -17.160139083862305 ], [ -71.858749389648438, -17.159858703613224 ], [ -71.859024047851562, -17.159858703613224 ], [ -71.859024047851562, -17.159584045410043 ], [ -71.859580993652344, -17.159584045410043 ], [ -71.859580993652344, -17.159305572509766 ], [ -71.85986328125, -17.159305572509766 ], [ -71.85986328125, -17.159027099609375 ], [ -71.860420227050724, -17.159027099609375 ], [ -71.860420227050724, -17.15875053405756 ], [ -71.860694885253849, -17.15875053405756 ], [ -71.860694885253849, -17.15847206115717 ], [ -71.861251831054631, -17.15847206115717 ], [ -71.861251831054631, -17.158193588256779 ], [ -71.862083435058594, -17.158193588256779 ], [ -71.862083435058594, -17.15764045715332 ], [ -71.8629150390625, -17.15764045715332 ], [ -71.8629150390625, -17.157083511352539 ], [ -71.863197326660043, -17.157083511352539 ], [ -71.863197326660043, -17.156248092651367 ], [ -71.863471984863224, -17.156248092651367 ], [ -71.863471984863224, -17.155971527099609 ], [ -71.863746643066349, -17.155971527099609 ], [ -71.863746643066349, -17.155696868896484 ], [ -71.864028930664006, -17.155696868896484 ], [ -71.864028930664006, -17.155416488647404 ], [ -71.864303588867131, -17.155416488647404 ], [ -71.864303588867131, -17.155136108398438 ], [ -71.864585876464844, -17.155136108398438 ], [ -71.864585876464844, -17.154861450195312 ], [ -71.864860534667969, -17.154861450195312 ], [ -71.864860534667969, -17.15430831909174 ], [ -71.865974426269531, -17.15430831909174 ], [ -71.865974426269531, -17.153749465942383 ], [ -71.866249084472543, -17.153749465942383 ], [ -71.866249084472543, -17.153472900390568 ], [ -71.866531372070199, -17.153472900390568 ], [ -71.866531372070199, -17.153194427490121 ], [ -71.867080688476506, -17.153194427490121 ], [ -71.867080688476506, -17.152914047241211 ], [ -71.867637634277344, -17.152914047241211 ], [ -71.867637634277344, -17.152360916137638 ], [ -71.868194580078125, -17.152360916137638 ], [ -71.868194580078125, -17.151805877685547 ], [ -71.868751525878906, -17.151805877685547 ], [ -71.868751525878906, -17.151527404785156 ], [ -71.869026184082031, -17.151527404785156 ], [ -71.869026184082031, -17.150972366333008 ], [ -71.869308471679688, -17.150972366333008 ], [ -71.869308471679688, -17.150693893432617 ], [ -71.869583129882699, -17.150693893432617 ], [ -71.869583129882699, -17.150138854980412 ], [ -71.869857788085881, -17.150138854980412 ], [ -71.869857788085881, -17.149583816528263 ], [ -71.870140075683537, -17.149583816528263 ], [ -71.870140075683537, -17.149305343627873 ], [ -71.870414733886662, -17.149305343627873 ], [ -71.870414733886662, -17.149026870727482 ], [ -71.870697021484318, -17.149026870727482 ], [ -71.870697021484318, -17.148750305175781 ], [ -71.8709716796875, -17.148750305175781 ], [ -71.8709716796875, -17.14847373962391 ], [ -71.871528625488281, -17.14847373962391 ], [ -71.871528625488281, -17.148195266723633 ], [ -71.871803283691406, -17.148195266723633 ], [ -71.871803283691406, -17.147916793823242 ], [ -71.872085571289062, -17.147916793823242 ], [ -71.872085571289062, -17.147638320922852 ], [ -71.872360229492188, -17.147638320922852 ], [ -71.872360229492188, -17.147361755371037 ], [ -71.872642517089844, -17.147361755371037 ], [ -71.872642517089844, -17.147083282470646 ], [ -71.873191833496037, -17.147083282470646 ], [ -71.873191833496037, -17.146804809570199 ], [ -71.873474121093693, -17.146804809570199 ], [ -71.873474121093693, -17.146528244018555 ], [ -71.874031066894474, -17.146528244018555 ], [ -71.874031066894474, -17.146251678466797 ], [ -71.874305725097656, -17.146251678466797 ], [ -71.874305725097656, -17.145969390869141 ], [ -71.875137329101562, -17.145969390869141 ], [ -71.875137329101562, -17.145694732666016 ], [ -71.875694274902344, -17.145694732666016 ], [ -71.875694274902344, -17.145416259765625 ], [ -71.875968933105412, -17.145416259765625 ], [ -71.875968933105412, -17.145139694213754 ], [ -71.876251220703068, -17.145139694213754 ], [ -71.876251220703068, -17.144582748413086 ], [ -71.876525878906193, -17.144582748413086 ], [ -71.876525878906193, -17.144306182861271 ], [ -71.876808166503849, -17.144306182861271 ], [ -71.876808166503849, -17.14402961730957 ], [ -71.877082824706974, -17.14402961730957 ], [ -71.877082824706974, -17.143747329711914 ], [ -71.877357482910156, -17.143747329711914 ], [ -71.877357482910156, -17.143194198608342 ], [ -71.877639770507812, -17.143194198608342 ], [ -71.877639770507812, -17.142915725707951 ], [ -71.877914428710938, -17.142915725707951 ], [ -71.877914428710938, -17.14263725280756 ], [ -71.878196716308594, -17.14263725280756 ], [ -71.878196716308594, -17.142084121703988 ], [ -71.878471374511719, -17.142084121703988 ], [ -71.878471374511719, -17.141805648803711 ], [ -71.878753662109375, -17.141805648803711 ], [ -71.878753662109375, -17.141250610351506 ], [ -71.879028320312386, -17.141250610351506 ], [ -71.879028320312386, -17.140972137451115 ], [ -71.879302978515568, -17.140972137451115 ], [ -71.879302978515568, -17.140693664550724 ], [ -71.879585266113224, -17.140693664550724 ], [ -71.879585266113224, -17.140415191650277 ], [ -71.879859924316349, -17.140415191650277 ], [ -71.879859924316349, -17.140138626098633 ], [ -71.880142211914006, -17.140138626098633 ], [ -71.880142211914006, -17.139862060546875 ], [ -71.880691528320312, -17.139860153198185 ], [ -71.880691528320312, -17.139028549194279 ], [ -71.881248474121094, -17.139028549194279 ], [ -71.881248474121094, -17.138750076293832 ], [ -71.881805419921875, -17.138750076293832 ], [ -71.881805419921875, -17.138471603393555 ], [ -71.882362365722543, -17.138471603393555 ], [ -71.882362365722543, -17.138193130493164 ], [ -71.882637023925724, -17.138193130493164 ], [ -71.882637023925724, -17.137361526489258 ], [ -71.882919311523381, -17.137361526489258 ], [ -71.882919311523381, -17.136806488037109 ], [ -71.883193969726506, -17.13680458068842 ], [ -71.883193969726506, -17.136528015136719 ], [ -71.883468627929688, -17.136528015136719 ], [ -71.883468627929688, -17.135971069335938 ], [ -71.884025573730469, -17.135971069335938 ], [ -71.884025573730469, -17.135694503784066 ], [ -71.884307861328125, -17.135694503784066 ], [ -71.884307861328125, -17.135416030883789 ], [ -71.88458251953125, -17.135416030883789 ], [ -71.88458251953125, -17.135139465331974 ], [ -71.884864807128906, -17.135139465331974 ], [ -71.884864807128906, -17.134582519531193 ], [ -71.885139465332031, -17.134582519531193 ], [ -71.885139465332031, -17.134305953979492 ], [ -71.885414123535043, -17.134305953979492 ], [ -71.885414123535043, -17.13375282287592 ], [ -71.885696411132756, -17.13375282287592 ], [ -71.885696411132756, -17.133193969726562 ], [ -71.885971069335881, -17.133193969726562 ], [ -71.885971069335881, -17.132917404174748 ], [ -71.886253356933537, -17.132917404174748 ], [ -71.886253356933537, -17.132358551025391 ], [ -71.886528015136662, -17.132358551025391 ], [ -71.886528015136662, -17.132083892822209 ], [ -71.886802673339844, -17.132083892822209 ], [ -71.886802673339844, -17.131805419921818 ], [ -71.8870849609375, -17.131805419921818 ], [ -71.8870849609375, -17.131528854370117 ], [ -71.887359619140625, -17.131528854370117 ], [ -71.887359619140625, -17.131250381469727 ], [ -71.887641906738281, -17.131250381469727 ], [ -71.887641906738281, -17.130695343017578 ], [ -71.887916564941406, -17.130695343017578 ], [ -71.887916564941406, -17.130418777465763 ], [ -71.888191223144531, -17.130418777465763 ], [ -71.888191223144531, -17.130136489868107 ], [ -71.888473510742188, -17.130136489868107 ], [ -71.888473510742188, -17.129861831664982 ], [ -71.890419006347656, -17.129861831664982 ], [ -71.890419006347656, -17.129583358764592 ], [ -71.890693664550781, -17.129583358764592 ], [ -71.890693664550781, -17.128749847412053 ], [ -71.890975952148438, -17.128749847412053 ], [ -71.890975952148438, -17.128194808959961 ], [ -71.891250610351562, -17.128194808959961 ], [ -71.891250610351562, -17.12791633605957 ], [ -71.891525268554688, -17.12791633605957 ], [ -71.891525268554688, -17.127082824707031 ], [ -71.89180755615223, -17.127082824707031 ], [ -71.89180755615223, -17.126527786254826 ], [ -71.892082214355412, -17.126527786254826 ], [ -71.892082214355412, -17.125972747802734 ], [ -71.892639160156193, -17.125972747802734 ], [ -71.892639160156193, -17.125694274902287 ], [ -71.892913818359318, -17.125694274902287 ], [ -71.892913818359318, -17.125415802001896 ], [ -71.893470764160156, -17.125415802001896 ], [ -71.893470764160156, -17.125139236450195 ], [ -71.893753051757812, -17.125139236450195 ], [ -71.893753051757812, -17.124860763549805 ], [ -71.894271850585881, -17.124860763549805 ], [ -71.894302368164062, -17.124305725097656 ], [ -71.89485931396473, -17.124305725097656 ], [ -71.89485931396473, -17.124027252197266 ], [ -71.895141601562386, -17.124027252197266 ], [ -71.895141601562386, -17.12347221374506 ], [ -71.895416259765568, -17.12347221374506 ], [ -71.895416259765568, -17.12319374084467 ], [ -71.895973205566349, -17.12319374084467 ], [ -71.895973205566349, -17.122917175292969 ], [ -71.896247863769531, -17.122917175292969 ], [ -71.896247863769531, -17.12208366394043 ], [ -71.896804809570312, -17.12208366394043 ], [ -71.896804809570312, -17.121528625488224 ], [ -71.897087097167969, -17.121528625488224 ], [ -71.897087097167969, -17.121250152587777 ], [ -71.897361755371094, -17.121250152587777 ], [ -71.897361755371094, -17.1209716796875 ], [ -71.897636413574219, -17.1209716796875 ], [ -71.897636413574219, -17.120416641235295 ], [ -71.897918701171875, -17.120416641235295 ], [ -71.897918701171875, -17.120138168334904 ], [ -71.898193359374886, -17.120138168334904 ], [ -71.898193359374886, -17.119583129882812 ], [ -71.898475646972599, -17.119583129882812 ], [ -71.898475646972599, -17.119304656982365 ], [ -71.898750305175724, -17.119304656982365 ], [ -71.898750305175724, -17.118751525878849 ], [ -71.899024963378849, -17.118751525878849 ], [ -71.899024963378849, -17.118194580078011 ], [ -71.899307250976506, -17.118194580078011 ], [ -71.899307250976506, -17.117916107177734 ], [ -71.899581909179688, -17.117916107177734 ], [ -71.899581909179688, -17.11763954162592 ], [ -71.899864196777344, -17.11763954162592 ], [ -71.899864196777344, -17.117082595825138 ], [ -71.900138854980469, -17.117082595825138 ], [ -71.900138854980469, -17.116807937622013 ], [ -71.900413513183594, -17.116807937622013 ], [ -71.900413513183594, -17.116529464721566 ], [ -71.90069580078125, -17.116529464721566 ], [ -71.90069580078125, -17.116247177124023 ], [ -71.900970458984375, -17.116247177124023 ], [ -71.900970458984375, -17.115694046020508 ], [ -71.901252746582031, -17.115694046020508 ], [ -71.901252746582031, -17.115415573120117 ], [ -71.901527404785099, -17.115415573120117 ], [ -71.901527404785099, -17.115137100219727 ], [ -71.901802062988224, -17.115137100219727 ], [ -71.901802062988224, -17.114583969116154 ], [ -71.902084350585881, -17.114583969116154 ], [ -71.902084350585881, -17.114305496215763 ], [ -71.902359008789006, -17.114305496215763 ], [ -71.902359008789006, -17.114025115966797 ], [ -71.902641296386662, -17.114025115966797 ], [ -71.902641296386662, -17.113471984863281 ], [ -71.902915954589844, -17.113471984863281 ], [ -71.902915954589844, -17.113193511962891 ], [ -71.903190612792969, -17.113193511962891 ], [ -71.9031982421875, -17.112638473510742 ], [ -71.903472900390625, -17.112638473510742 ], [ -71.903472900390625, -17.112361907958928 ], [ -71.90374755859375, -17.112361907958928 ], [ -71.90374755859375, -17.112083435058537 ], [ -71.904029846191406, -17.112083435058537 ], [ -71.904029846191406, -17.111528396606445 ], [ -71.904304504394531, -17.111528396606445 ], [ -71.904304504394531, -17.111249923705998 ], [ -71.904586791992074, -17.111249923705998 ], [ -71.904586791992074, -17.110694885253906 ], [ -71.904861450195256, -17.110694885253906 ], [ -71.904861450195256, -17.110416412353516 ], [ -71.905136108398381, -17.110416412353516 ], [ -71.905136108398381, -17.110137939453125 ], [ -71.905418395996037, -17.110137939453125 ], [ -71.905418395996037, -17.109861373901367 ], [ -71.905693054199162, -17.109861373901367 ], [ -71.905693054199162, -17.109306335449162 ], [ -71.905975341796875, -17.109306335449162 ], [ -71.905975341796875, -17.109027862548771 ], [ -71.90625, -17.109027862548771 ], [ -71.90625, -17.108749389648381 ], [ -71.906524658203125, -17.108749389648381 ], [ -71.906524658203125, -17.10847282409668 ], [ -71.906806945800781, -17.10847282409668 ], [ -71.906806945800781, -17.107915878295842 ], [ -71.907081604003906, -17.107915878295842 ], [ -71.907081604003906, -17.107362747192326 ], [ -71.907363891601562, -17.107362747192326 ], [ -71.907363891601562, -17.107084274291879 ], [ -71.907913208007756, -17.107082366943359 ], [ -71.907913208007756, -17.106805801391602 ], [ -71.908470153808537, -17.106805801391602 ], [ -71.908470153808537, -17.106527328491211 ], [ -71.908752441406193, -17.106527328491211 ], [ -71.908752441406193, -17.106250762939396 ], [ -71.9093017578125, -17.106250762939396 ], [ -71.9093017578125, -17.105972290039006 ], [ -71.909858703613281, -17.105972290039006 ], [ -71.909858703613281, -17.105417251586914 ], [ -71.910140991210938, -17.105417251586914 ], [ -71.910140991210938, -17.104583740234375 ], [ -71.910415649414062, -17.104583740234375 ], [ -71.910415649414062, -17.103471755981445 ], [ -71.910697937011719, -17.103471755981445 ], [ -71.910697937011719, -17.103195190429631 ], [ -71.911247253417912, -17.103195190429631 ], [ -71.911247253417912, -17.102636337280273 ], [ -71.911529541015568, -17.102636337280273 ], [ -71.911529541015568, -17.102083206176758 ], [ -71.911804199218693, -17.102083206176758 ], [ -71.911804199218693, -17.10180473327631 ], [ -71.912086486816349, -17.10180473327631 ], [ -71.912086486816349, -17.10152626037592 ], [ -71.912361145019531, -17.10152626037592 ], [ -71.912361145019531, -17.100973129272404 ], [ -71.912635803222656, -17.100973129272404 ], [ -71.912635803222656, -17.100694656371957 ], [ -71.912918090820312, -17.100694656371957 ], [ -71.912918090820312, -17.100414276123047 ], [ -71.913192749023438, -17.100414276123047 ], [ -71.913192749023438, -17.100139617919865 ], [ -71.913749694824219, -17.100139617919865 ], [ -71.913749694824219, -17.099861145019474 ], [ -71.91402435302723, -17.099861145019474 ], [ -71.91402435302723, -17.099582672119084 ], [ -71.914306640624943, -17.099582672119084 ], [ -71.914306640624943, -17.099304199218693 ], [ -71.914863586425724, -17.099304199218693 ], [ -71.914863586425724, -17.099027633666992 ], [ -71.915138244628849, -17.099027633666992 ], [ -71.915138244628849, -17.098749160766602 ], [ -71.915412902832031, -17.098749160766602 ], [ -71.915412902832031, -17.098472595214844 ], [ -71.915695190429688, -17.098472595214844 ], [ -71.915695190429688, -17.097917556762638 ], [ -71.915969848632812, -17.097917556762638 ], [ -71.915969848632812, -17.097639083862248 ], [ -71.916252136230469, -17.097639083862248 ], [ -71.916252136230469, -17.0973606109618 ], [ -71.916526794433594, -17.0973606109618 ], [ -71.916526794433594, -17.097082138061523 ], [ -71.91680908203125, -17.097082138061523 ], [ -71.91680908203125, -17.096805572509709 ], [ -71.917083740234375, -17.096805572509709 ], [ -71.917083740234375, -17.096250534057617 ], [ -71.917358398437443, -17.096250534057617 ], [ -71.917358398437443, -17.095972061157227 ], [ -71.917640686035099, -17.095972061157227 ], [ -71.917640686035099, -17.095693588256836 ], [ -71.917915344238224, -17.095693588256836 ], [ -71.917915344238224, -17.095417022705078 ], [ -71.918197631835881, -17.095417022705078 ], [ -71.918197631835881, -17.094863891601562 ], [ -71.918472290039006, -17.094863891601562 ], [ -71.918472290039006, -17.094583511352482 ], [ -71.918746948242188, -17.094583511352482 ], [ -71.918746948242188, -17.094305038452035 ], [ -71.919029235839844, -17.094305038452035 ], [ -71.919029235839844, -17.093751907348633 ], [ -71.919303894042969, -17.093751907348633 ], [ -71.919303894042969, -17.093471527099553 ], [ -71.919586181640625, -17.093471527099553 ], [ -71.919586181640625, -17.093194961547852 ], [ -71.91986083984375, -17.093194961547852 ], [ -71.91986083984375, -17.092639923095589 ], [ -71.920135498046875, -17.092639923095589 ], [ -71.920135498046875, -17.092361450195312 ], [ -71.920417785644418, -17.092361450195312 ], [ -71.920417785644418, -17.092082977294922 ], [ -71.920692443847599, -17.092082977294922 ], [ -71.920692443847599, -17.091806411743107 ], [ -71.920974731445256, -17.091806411743107 ], [ -71.920974731445256, -17.091529846191406 ], [ -71.921249389648381, -17.091529846191406 ], [ -71.921249389648381, -17.09124755859375 ], [ -71.921524047851506, -17.09124755859375 ], [ -71.921524047851506, -17.090972900390625 ], [ -71.922080993652344, -17.090972900390625 ], [ -71.922080993652344, -17.090694427490178 ], [ -71.92236328125, -17.090694427490178 ], [ -71.92236328125, -17.090137481689396 ], [ -71.922637939453125, -17.090137481689396 ], [ -71.922637939453125, -17.089860916137695 ], [ -71.922920227050781, -17.089860916137695 ], [ -71.922920227050781, -17.089582443237305 ], [ -71.923194885253906, -17.089582443237305 ], [ -71.923194885253906, -17.08930778503418 ], [ -71.923751831054574, -17.08930778503418 ], [ -71.923751831054574, -17.089029312133732 ], [ -71.924026489257756, -17.089029312133732 ], [ -71.924026489257756, -17.088750839233342 ], [ -71.924308776855412, -17.088750839233342 ], [ -71.924308776855412, -17.088472366332951 ], [ -71.924583435058537, -17.088472366332951 ], [ -71.924583435058537, -17.08819389343256 ], [ -71.924858093261719, -17.08819389343256 ], [ -71.924858093261719, -17.087915420532113 ], [ -71.925140380859375, -17.087915420532113 ], [ -71.925140380859375, -17.087638854980469 ], [ -71.9254150390625, -17.087638854980469 ], [ -71.9254150390625, -17.08708381652832 ], [ -71.925697326660156, -17.08708381652832 ], [ -71.925697326660156, -17.086526870727539 ], [ -71.925971984863281, -17.086526870727539 ], [ -71.925971984863281, -17.086250305175668 ], [ -71.926246643066406, -17.086250305175668 ], [ -71.926246643066406, -17.085971832275391 ], [ -71.926528930664062, -17.085971832275391 ], [ -71.926528930664062, -17.085693359375 ], [ -71.926803588867074, -17.085693359375 ], [ -71.926803588867074, -17.085416793823185 ], [ -71.927085876464787, -17.085416793823185 ], [ -71.927085876464787, -17.085138320922795 ], [ -71.927360534667912, -17.085138320922795 ], [ -71.927360534667912, -17.084861755371094 ], [ -71.927917480468693, -17.084861755371094 ], [ -71.927917480468693, -17.084583282470703 ], [ -71.928474426269531, -17.084583282470703 ], [ -71.928474426269531, -17.084304809570256 ], [ -71.928749084472656, -17.084304809570256 ], [ -71.928749084472656, -17.084028244018555 ], [ -71.929031372070312, -17.084028244018555 ], [ -71.929031372070312, -17.083471298217773 ], [ -71.929306030273438, -17.083471298217773 ], [ -71.929306030273438, -17.083194732665902 ], [ -71.930419921874943, -17.083194732665902 ], [ -71.930419921874943, -17.08263969421381 ], [ -71.930694580078068, -17.08263969421381 ], [ -71.930694580078068, -17.081806182861328 ], [ -71.931251525878849, -17.081806182861328 ], [ -71.931251525878849, -17.081527709960938 ], [ -71.932083129882812, -17.081527709960938 ], [ -71.932083129882812, -17.081249237060547 ], [ -71.932357788085938, -17.081249237060547 ], [ -71.932357788085938, -17.080972671508789 ], [ -71.932914733886719, -17.080972671508789 ], [ -71.932914733886719, -17.080694198608398 ], [ -71.933197021484261, -17.080694198608398 ], [ -71.933197021484261, -17.080415725708008 ], [ -71.933471679687443, -17.080415725708008 ], [ -71.933471679687443, -17.080139160156193 ], [ -71.933746337890568, -17.080139160156193 ], [ -71.933746337890568, -17.079860687255746 ], [ -71.934028625488224, -17.079860687255746 ], [ -71.934028625488224, -17.079305648803654 ], [ -71.934303283691349, -17.079305648803654 ], [ -71.934303283691349, -17.079027175903263 ], [ -71.935142517089844, -17.079027175903263 ], [ -71.935142517089844, -17.078750610351562 ], [ -71.935417175292969, -17.078750610351562 ], [ -71.935417175292969, -17.078472137451172 ], [ -71.935691833496094, -17.078472137451172 ], [ -71.935691833496094, -17.078193664550781 ], [ -71.93597412109375, -17.078193664550781 ], [ -71.93597412109375, -17.077917098999023 ], [ -71.936248779296761, -17.077917098999023 ], [ -71.936248779296761, -17.077640533447209 ], [ -71.936805725097599, -17.077640533447209 ], [ -71.936805725097599, -17.077362060546818 ], [ -71.937080383300724, -17.077358245849553 ], [ -71.937080383300724, -17.077083587646428 ], [ -71.937362670898381, -17.077083587646428 ], [ -71.937362670898381, -17.07680511474598 ], [ -71.937637329101562, -17.07680511474598 ], [ -71.937637329101562, -17.076526641845703 ], [ -71.937919616699219, -17.076526641845703 ], [ -71.937919616699219, -17.076248168945312 ], [ -71.938194274902344, -17.076248168945312 ], [ -71.938194274902344, -17.075971603393498 ], [ -71.938468933105469, -17.075971603393498 ], [ -71.938468933105469, -17.075696945190373 ], [ -71.938751220703125, -17.075696945190373 ], [ -71.938751220703125, -17.075418472289982 ], [ -71.939308166503906, -17.075418472289982 ], [ -71.939308166503906, -17.075136184692269 ], [ -71.939857482910099, -17.075136184692269 ], [ -71.939857482910099, -17.074861526489258 ], [ -71.940139770507756, -17.074861526489258 ], [ -71.940139770507756, -17.074583053588867 ], [ -71.940696716308537, -17.074583053588867 ], [ -71.940696716308537, -17.074308395385742 ], [ -71.941253662109375, -17.074304580688477 ], [ -71.941253662109375, -17.074026107788086 ], [ -71.9415283203125, -17.074026107788086 ], [ -71.9415283203125, -17.073749542236271 ], [ -71.942085266113281, -17.073749542236271 ], [ -71.942085266113281, -17.07347297668457 ], [ -71.942359924316406, -17.07347297668457 ], [ -71.942359924316406, -17.073194503784123 ], [ -71.942642211914062, -17.073194503784123 ], [ -71.942642211914062, -17.072914123535156 ], [ -71.942916870117131, -17.072914123535156 ], [ -71.942916870117131, -17.072639465332031 ], [ -71.943191528320256, -17.072639465332031 ], [ -71.943191528320256, -17.072360992431641 ], [ -71.943473815917912, -17.072360992431641 ], [ -71.943473815917912, -17.07208251953125 ], [ -71.943748474121037, -17.07208251953125 ], [ -71.943748474121037, -17.071804046630859 ], [ -71.944030761718693, -17.071804046630859 ], [ -71.944030761718693, -17.071527481079102 ], [ -71.944305419921875, -17.071527481079102 ], [ -71.944305419921875, -17.071250915527287 ], [ -71.944862365722656, -17.071250915527287 ], [ -71.944862365722656, -17.070972442626896 ], [ -71.945137023925781, -17.070972442626896 ], [ -71.945137023925781, -17.07069206237793 ], [ -71.945693969726562, -17.07069206237793 ], [ -71.945693969726562, -17.070417404174805 ], [ -71.946807861328068, -17.070417404174805 ], [ -71.946807861328068, -17.070138931274414 ], [ -71.947082519531193, -17.070138931274414 ], [ -71.947082519531193, -17.069860458373967 ], [ -71.947364807128906, -17.069860458373967 ], [ -71.947364807128906, -17.069583892822266 ], [ -71.947914123535156, -17.069583892822266 ], [ -71.947914123535156, -17.069305419921875 ], [ -71.948196411132812, -17.069305419921875 ], [ -71.948196411132812, -17.069026947021484 ], [ -71.948471069335938, -17.069026947021484 ], [ -71.948471069335938, -17.068473815917912 ], [ -71.949302673339787, -17.068473815917912 ], [ -71.949302673339787, -17.068195343017521 ], [ -71.949821472167969, -17.068195343017521 ], [ -71.949859619140568, -17.067916870117131 ], [ -71.950416564941406, -17.067916870117131 ], [ -71.950416564941406, -17.06763839721674 ], [ -71.950691223144531, -17.06763839721674 ], [ -71.950691223144531, -17.067361831665039 ], [ -71.951248168945312, -17.067361831665039 ], [ -71.951248168945312, -17.067083358764648 ], [ -71.951530456542969, -17.067083358764648 ], [ -71.951530456542969, -17.066804885864201 ], [ -71.952636718749943, -17.066804885864201 ], [ -71.952636718749943, -17.0665283203125 ], [ -71.952919006347599, -17.0665283203125 ], [ -71.952919006347599, -17.065971374511719 ], [ -71.953193664550724, -17.065971374511719 ], [ -71.953193664550724, -17.065694808959847 ], [ -71.953750610351562, -17.065694808959847 ], [ -71.953750610351562, -17.06541633605957 ], [ -71.954307556152344, -17.06541633605957 ], [ -71.954307556152344, -17.065141677856445 ], [ -71.954864501953125, -17.065141677856445 ], [ -71.954864501953125, -17.064861297607365 ], [ -71.955413818359261, -17.064861297607365 ], [ -71.955413818359261, -17.064582824706974 ], [ -71.955970764160099, -17.064582824706974 ], [ -71.955970764160099, -17.064306259155273 ], [ -71.956527709960881, -17.064306259155273 ], [ -71.956527709960881, -17.064029693603402 ], [ -71.956802368164062, -17.064029693603402 ], [ -71.956802368164062, -17.063747406005859 ], [ -71.957359313964844, -17.063747406005859 ], [ -71.957359313964844, -17.063472747802734 ], [ -71.9576416015625, -17.063472747802734 ], [ -71.9576416015625, -17.063194274902344 ], [ -71.957916259765625, -17.063194274902344 ], [ -71.957916259765625, -17.062915802001953 ], [ -71.958473205566406, -17.062915802001953 ], [ -71.958473205566406, -17.062637329101562 ], [ -71.959030151367131, -17.062637329101562 ], [ -71.959030151367131, -17.062360763549691 ], [ -71.959304809570256, -17.062360763549691 ], [ -71.959304809570256, -17.06208419799799 ], [ -71.959587097167912, -17.06208419799799 ], [ -71.959587097167912, -17.061807632446289 ], [ -71.960136413574219, -17.061807632446289 ], [ -71.960136413574219, -17.061250686645508 ], [ -71.960418701171875, -17.061250686645508 ], [ -71.960418701171875, -17.060972213745117 ], [ -71.960693359375, -17.060972213745117 ], [ -71.960693359375, -17.060693740844727 ], [ -71.961524963378906, -17.060693740844727 ], [ -71.961524963378906, -17.060415267944279 ], [ -71.962081909179631, -17.060415267944279 ], [ -71.962081909179631, -17.060138702392578 ], [ -71.962638854980412, -17.060138702392578 ], [ -71.962638854980412, -17.059860229492188 ], [ -71.96319580078125, -17.059860229492188 ], [ -71.96319580078125, -17.059583663940373 ], [ -71.963752746582031, -17.059583663940373 ], [ -71.963752746582031, -17.059305191039925 ], [ -71.964302062988281, -17.059305191039925 ], [ -71.964302062988281, -17.059028625488281 ], [ -71.964859008788949, -17.059028625488281 ], [ -71.964859008788949, -17.058750152587834 ], [ -71.965415954589787, -17.058750152587834 ], [ -71.965415954589787, -17.058471679687443 ], [ -71.965972900390568, -17.058471679687443 ], [ -71.965972900390568, -17.058193206787053 ], [ -71.966529846191406, -17.058193206787053 ], [ -71.966529846191406, -17.057916641235352 ], [ -71.967086791992188, -17.057916641235352 ], [ -71.967086791992188, -17.057638168334961 ], [ -71.967636108398438, -17.057638168334961 ], [ -71.967636108398438, -17.057361602783203 ], [ -71.968193054199105, -17.057361602783203 ], [ -71.968193054199105, -17.057083129882812 ], [ -71.96875, -17.057083129882812 ], [ -71.96875, -17.056804656982422 ], [ -71.969306945800724, -17.056804656982422 ], [ -71.969306945800724, -17.056528091430607 ], [ -71.969581604003906, -17.056528091430607 ], [ -71.969581604003906, -17.056249618530217 ], [ -71.970138549804688, -17.056249618530217 ], [ -71.970138549804688, -17.055971145629769 ], [ -71.970695495605469, -17.055971145629769 ], [ -71.970695495605469, -17.055694580078068 ], [ -71.970970153808594, -17.055694580078068 ], [ -71.970970153808594, -17.055416107177678 ], [ -71.971527099609318, -17.055416107177678 ], [ -71.971527099609318, -17.055139541625977 ], [ -71.971801757812443, -17.055139541625977 ], [ -71.971801757812443, -17.054861068725586 ], [ -71.972358703613224, -17.054861068725586 ], [ -71.972358703613224, -17.054582595825195 ], [ -71.972640991210881, -17.054582595825195 ], [ -71.972640991210881, -17.054306030273438 ], [ -71.972915649414062, -17.054306030273438 ], [ -71.972915649414062, -17.054027557373047 ], [ -71.973197937011719, -17.054027557373047 ], [ -71.973197937011719, -17.053749084472656 ], [ -71.973747253417969, -17.053749084472656 ], [ -71.973747253417969, -17.053472518920842 ], [ -71.974029541015625, -17.053472518920842 ], [ -71.974029541015625, -17.053194046020451 ], [ -71.974586486816293, -17.053194046020451 ], [ -71.974586486816293, -17.05291748046875 ], [ -71.975135803222599, -17.05291748046875 ], [ -71.975135803222599, -17.052640914916992 ], [ -71.975692749023381, -17.052640914916992 ], [ -71.975692749023381, -17.052360534667912 ], [ -71.976249694824219, -17.052360534667912 ], [ -71.976249694824219, -17.052083969116211 ], [ -71.976806640625, -17.052083969116211 ], [ -71.976806640625, -17.05180549621582 ], [ -71.977081298828125, -17.05180549621582 ], [ -71.977081298828125, -17.051528930664006 ], [ -71.977638244628793, -17.051528930664006 ], [ -71.977638244628793, -17.051250457763558 ], [ -71.978195190429631, -17.051250457763558 ], [ -71.978195190429631, -17.050971984863281 ], [ -71.978469848632756, -17.050971984863281 ], [ -71.978469848632756, -17.050693511962891 ], [ -71.979026794433594, -17.050693511962891 ], [ -71.979026794433594, -17.050418853759766 ], [ -71.9798583984375, -17.050418853759766 ], [ -71.9798583984375, -17.050136566162109 ], [ -71.980697631835938, -17.050136566162109 ], [ -71.980697631835938, -17.049861907958984 ], [ -71.981246948242131, -17.049861907958984 ], [ -71.981246948242131, -17.049583435058594 ], [ -71.981803894042912, -17.049583435058594 ], [ -71.981803894042912, -17.049304962158146 ], [ -71.982086181640568, -17.049304962158146 ], [ -71.982086181640568, -17.049026489257756 ], [ -71.982635498046875, -17.049026489257756 ], [ -71.982635498046875, -17.048749923706055 ], [ -71.983192443847656, -17.048749923706055 ], [ -71.983192443847656, -17.048471450805664 ], [ -71.983749389648438, -17.048471450805664 ], [ -71.983749389648438, -17.048196792602539 ], [ -71.984024047851449, -17.048196792602539 ], [ -71.984024047851449, -17.047916412353516 ], [ -71.984580993652287, -17.047916412353516 ], [ -71.984580993652287, -17.047637939453125 ], [ -71.985137939453068, -17.047637939453125 ], [ -71.985137939453068, -17.04736137390131 ], [ -71.985694885253906, -17.04736137390131 ], [ -71.985694885253906, -17.04708290100092 ], [ -71.985969543457031, -17.04708290100092 ], [ -71.985969543457031, -17.046804428100529 ], [ -71.986526489257812, -17.046804428100529 ], [ -71.986526489257812, -17.046527862548828 ], [ -71.987083435058594, -17.046527862548828 ], [ -71.987083435058594, -17.046249389648438 ], [ -71.987640380859318, -17.046249389648438 ], [ -71.987640380859318, -17.04597282409668 ], [ -71.988197326660099, -17.04597282409668 ], [ -71.988197326660099, -17.045694351196289 ], [ -71.988746643066406, -17.045694351196289 ], [ -71.988746643066406, -17.045415878295898 ], [ -71.989028930664062, -17.045415878295898 ], [ -71.989028930664062, -17.045139312744084 ], [ -71.989585876464844, -17.045139312744084 ], [ -71.989585876464844, -17.044860839843636 ], [ -71.990135192871094, -17.044860839843636 ], [ -71.990135192871094, -17.044584274291935 ], [ -71.990974426269474, -17.044582366943359 ], [ -71.990974426269474, -17.044305801391545 ], [ -71.991806030273438, -17.044305801391545 ], [ -71.991806030273438, -17.044027328491154 ], [ -71.992362976074219, -17.044027328491154 ], [ -71.992362976074219, -17.043750762939453 ], [ -71.993194580078125, -17.043750762939453 ], [ -71.993194580078125, -17.043472290039062 ], [ -71.993469238281136, -17.043472290039062 ], [ -71.993469238281136, -17.043193817138672 ], [ -71.994026184081974, -17.043193817138672 ], [ -71.994026184081974, -17.042917251586914 ], [ -71.994308471679631, -17.042917251586914 ], [ -71.994308471679631, -17.042638778686523 ], [ -71.994857788085938, -17.042638778686523 ], [ -71.994857788085938, -17.042360305786133 ], [ -71.995414733886719, -17.042360305786133 ], [ -71.995414733886719, -17.042083740234318 ], [ -71.9959716796875, -17.042083740234318 ], [ -71.9959716796875, -17.041805267333871 ], [ -71.996528625488281, -17.041805267333871 ], [ -71.996528625488281, -17.041528701782227 ], [ -71.997085571289006, -17.041528701782227 ], [ -71.997085571289006, -17.041250228881779 ], [ -71.997642517089787, -17.041250228881779 ], [ -71.997642517089787, -17.040971755981388 ], [ -71.998191833496094, -17.040971755981388 ], [ -71.998191833496094, -17.040695190429688 ], [ -71.998748779296875, -17.040695190429688 ], [ -71.998748779296875, -17.040416717529297 ], [ -71.999305725097656, -17.040416717529297 ], [ -71.999305725097656, -17.040138244628906 ], [ -71.999862670898438, -17.040138244628906 ], [ -71.999862670898438, -17.039861679077148 ], [ -72.000137329101506, -17.039861679077148 ], [ -72.000419616699162, -17.039861679077148 ], [ -72.000419616699162, -17.039583206176758 ], [ -72.000968933105412, -17.039583206176758 ], [ -72.000968933105412, -17.039304733276367 ], [ -72.001808166503906, -17.039304733276367 ], [ -72.001808166503906, -17.039028167724553 ], [ -72.002082824707031, -17.039028167724553 ], [ -72.002082824707031, -17.038751602172852 ], [ -72.002639770507812, -17.038751602172852 ], [ -72.002639770507812, -17.038473129272461 ], [ -72.002914428710938, -17.038473129272461 ], [ -72.002914428710938, -17.038194656372013 ], [ -72.003471374511662, -17.038194656372013 ], [ -72.003471374511662, -17.037916183471623 ], [ -72.003753662109318, -17.037916183471623 ], [ -72.003753662109318, -17.037639617919922 ], [ -72.004859924316406, -17.037639617919922 ], [ -72.004859924316406, -17.037361145019531 ], [ -72.00624847412098, -17.037361145019531 ], [ -72.00624847412098, -17.036806106567383 ], [ -72.007637023925781, -17.036806106567383 ], [ -72.007637023925781, -17.036529541015568 ], [ -72.007919311523438, -17.036529541015568 ], [ -72.007919311523438, -17.036247253417912 ], [ -72.008193969726562, -17.036247253417912 ], [ -72.008193969726562, -17.035972595214787 ], [ -72.008750915527344, -17.035972595214787 ], [ -72.008750915527344, -17.035694122314396 ], [ -72.009582519531136, -17.035694122314396 ], [ -72.009582519531136, -17.035419464111214 ], [ -72.009864807128849, -17.035419464111214 ], [ -72.009864807128849, -17.035137176513672 ], [ -72.010139465331974, -17.035137176513672 ], [ -72.010139465331974, -17.034860610961857 ], [ -72.010971069335938, -17.034860610961857 ], [ -72.010971069335938, -17.034585952758732 ], [ -72.011802673339844, -17.034585952758732 ], [ -72.011802673339844, -17.034305572509766 ], [ -72.0120849609375, -17.034305572509766 ], [ -72.0120849609375, -17.034025192260685 ], [ -72.012359619140625, -17.034025192260685 ], [ -72.012359619140625, -17.033750534057504 ], [ -72.014305114746094, -17.033750534057504 ], [ -72.014305114746094, -17.034025192260685 ], [ -72.01513671875, -17.034025192260685 ], [ -72.01513671875, -17.034305572509766 ], [ -72.016250610351506, -17.034305572509766 ], [ -72.016250610351506, -17.034025192260685 ], [ -72.016807556152287, -17.034025192260685 ], [ -72.016807556152287, -17.033750534057504 ], [ -72.017082214355412, -17.033750534057504 ], [ -72.017082214355412, -17.033472061157227 ], [ -72.017364501953125, -17.033472061157227 ], [ -72.017364501953125, -17.033193588256836 ], [ -72.01763916015625, -17.033193588256836 ], [ -72.01763916015625, -17.031803131103516 ], [ -72.017913818359375, -17.031803131103516 ], [ -72.017913818359375, -17.030971527099609 ], [ -72.018196105957031, -17.030971527099609 ], [ -72.018196105957031, -17.030693054199219 ], [ -72.018470764160156, -17.030693054199219 ], [ -72.018470764160156, -17.030416488647461 ], [ -72.018753051757812, -17.030416488647461 ], [ -72.018753051757812, -17.03013801574707 ], [ -72.019027709960824, -17.03013801574707 ], [ -72.019027709960824, -17.029861450195256 ], [ -72.019302368164006, -17.029861450195256 ], [ -72.019302368164006, -17.029027938842773 ], [ -72.019584655761662, -17.029027938842773 ], [ -72.019584655761662, -17.028749465942383 ], [ -72.019859313964787, -17.028749465942383 ], [ -72.019859313964787, -17.028472900390625 ], [ -72.020141601562443, -17.028472900390625 ], [ -72.020141601562443, -17.028194427490234 ], [ -72.020416259765625, -17.028194427490234 ], [ -72.020416259765625, -17.027915954589844 ], [ -72.022087097167969, -17.027915954589844 ], [ -72.022087097167969, -17.028194427490234 ], [ -72.022918701171818, -17.028194427490234 ], [ -72.022918701171818, -17.027915954589844 ], [ -72.023475646972599, -17.027915954589844 ], [ -72.023475646972599, -17.027362823486328 ], [ -72.023193359374943, -17.027362823486328 ], [ -72.023193359374943, -17.026527404785099 ], [ -72.022918701171818, -17.026527404785099 ], [ -72.022918701171818, -17.025140762329045 ], [ -72.023193359374943, -17.025140762329045 ], [ -72.023193359374943, -17.024583816528263 ], [ -72.023475646972599, -17.024583816528263 ], [ -72.023475646972599, -17.024028778076172 ], [ -72.024581909179688, -17.024028778076172 ], [ -72.024581909179688, -17.023750305175724 ], [ -72.024864196777344, -17.023750305175724 ], [ -72.024864196777344, -17.022918701171818 ], [ -72.02541351318348, -17.022918701171818 ], [ -72.02541351318348, -17.023195266723633 ], [ -72.025970458984318, -17.023195266723633 ], [ -72.025970458984318, -17.023471832275334 ], [ -72.026802062988281, -17.023471832275334 ], [ -72.026802062988281, -17.023750305175724 ], [ -72.027084350585938, -17.023750305175724 ], [ -72.027084350585938, -17.024028778076172 ], [ -72.027359008789062, -17.024028778076172 ], [ -72.027359008789062, -17.024305343627816 ], [ -72.028747558593693, -17.024305343627816 ], [ -72.028747558593693, -17.024028778076172 ], [ -72.029304504394474, -17.024028778076172 ], [ -72.029304504394474, -17.023750305175724 ], [ -72.030418395996094, -17.023750305175724 ], [ -72.030418395996094, -17.023471832275334 ], [ -72.030975341796875, -17.023471832275334 ], [ -72.030975341796875, -17.023195266723633 ], [ -72.031806945800668, -17.023195266723633 ], [ -72.031806945800668, -17.022918701171818 ], [ -72.032638549804631, -17.022918701171818 ], [ -72.032638549804631, -17.023195266723633 ], [ -72.032913208007756, -17.023195266723633 ], [ -72.032913208007756, -17.023471832275334 ], [ -72.033470153808594, -17.023471832275334 ], [ -72.033470153808594, -17.023750305175724 ], [ -72.034027099609375, -17.023750305175724 ], [ -72.034027099609375, -17.022083282470703 ], [ -72.034858703613168, -17.022083282470703 ], [ -72.034858703613168, -17.021804809570312 ], [ -72.036529541015625, -17.021804809570312 ], [ -72.036529541015625, -17.021526336669922 ], [ -72.036247253417969, -17.021526336669922 ], [ -72.036247253417969, -17.02097129821766 ], [ -72.035972595214787, -17.02097129821766 ], [ -72.035972595214787, -17.020414352416992 ], [ -72.036529541015625, -17.020414352416992 ], [ -72.036529541015625, -17.020694732665959 ], [ -72.037086486816406, -17.020694732665959 ], [ -72.037086486816406, -17.020414352416992 ], [ -72.037635803222656, -17.020414352416992 ], [ -72.037635803222656, -17.020139694213867 ], [ -72.039581298828125, -17.020139694213867 ], [ -72.039581298828125, -17.019306182861328 ], [ -72.039581298828125, -17.019199371337834 ], [ -72.039581298828125, -17.019027709960938 ], [ -72.039863586425781, -17.019027709960938 ], [ -72.039863586425781, -17.017915725707894 ], [ -72.041252136230469, -17.017915725707894 ], [ -72.041252136230469, -17.019304275512695 ], [ -72.041526794433537, -17.019304275512695 ], [ -72.041526794433537, -17.020139694213867 ], [ -72.041809082031193, -17.020139694213867 ], [ -72.041809082031193, -17.019861221313477 ], [ -72.042083740234318, -17.019861221313477 ], [ -72.042083740234318, -17.019582748413086 ], [ -72.042640686035099, -17.019582748413086 ], [ -72.042640686035099, -17.019861221313477 ], [ -72.043746948242188, -17.019861221313477 ], [ -72.043746948242188, -17.020139694213867 ], [ -72.044303894042969, -17.020139694213867 ], [ -72.044303894042969, -17.019861221313477 ], [ -72.044586181640511, -17.019861221313477 ], [ -72.044586181640511, -17.019304275512695 ], [ -72.045692443847599, -17.019304275512695 ], [ -72.045692443847599, -17.019027709960938 ], [ -72.046249389648438, -17.019027709960938 ], [ -72.046272277831974, -17.018749237060547 ], [ -72.04736328125, -17.018749237060547 ], [ -72.04736328125, -17.019027709960938 ], [ -72.047637939453011, -17.019027709960938 ], [ -72.047637939453011, -17.020414352416992 ], [ -72.04736328125, -17.020414352416992 ], [ -72.04736328125, -17.02097129821766 ], [ -72.047080993652344, -17.02097129821766 ], [ -72.047080993652344, -17.021249771118107 ], [ -72.047920227050668, -17.021249771118107 ], [ -72.047920227050668, -17.021526336669922 ], [ -72.048469543456974, -17.021526336669922 ], [ -72.048469543456974, -17.02097129821766 ], [ -72.049858093261719, -17.02097129821766 ], [ -72.049858093261719, -17.020694732665959 ], [ -72.0504150390625, -17.020694732665959 ], [ -72.0504150390625, -17.020139694213867 ], [ -72.050971984863168, -17.020139694213867 ], [ -72.050971984863168, -17.019861221313477 ], [ -72.051803588867131, -17.019861221313477 ], [ -72.051803588867131, -17.019582748413086 ], [ -72.052085876464787, -17.019582748413086 ], [ -72.052085876464787, -17.019304275512695 ], [ -72.053825378417912, -17.019304275512695 ], [ -72.054031372070312, -17.019304275512695 ], [ -72.054031372070312, -17.019466400146428 ], [ -72.054031372070312, -17.019582748413086 ], [ -72.054267883300781, -17.019582748413086 ], [ -72.054382324218693, -17.019582748413086 ], [ -72.055419921874943, -17.019582748413086 ], [ -72.055419921874943, -17.019861221313477 ], [ -72.056526184082031, -17.019861221313477 ], [ -72.056526184082031, -17.020139694213867 ], [ -72.057914733886662, -17.020139694213867 ], [ -72.057914733886662, -17.020414352416992 ], [ -72.059028625488281, -17.020414352416992 ], [ -72.059028625488281, -17.020694732665959 ], [ -72.059585571289062, -17.020694732665959 ], [ -72.059585571289062, -17.020414352416992 ], [ -72.059860229492188, -17.020414352416992 ], [ -72.059860229492188, -17.020139694213867 ], [ -72.060142517089844, -17.020139694213867 ], [ -72.060142517089844, -17.019304275512695 ], [ -72.060691833496037, -17.019304275512695 ], [ -72.060691833496037, -17.020139694213867 ], [ -72.060974121093693, -17.020139694213867 ], [ -72.060974121093693, -17.020694732665959 ], [ -72.061248779296818, -17.020694732665959 ], [ -72.061248779296818, -17.02097129821766 ], [ -72.061531066894474, -17.02097129821766 ], [ -72.061531066894474, -17.021249771118107 ], [ -72.061805725097656, -17.021249771118107 ], [ -72.061805725097656, -17.021526336669922 ], [ -72.062080383300781, -17.021526336669922 ], [ -72.062080383300781, -17.021804809570312 ], [ -72.063194274902344, -17.021804809570312 ], [ -72.063194274902344, -17.022083282470703 ], [ -72.063468933105355, -17.022083282470703 ], [ -72.063468933105355, -17.022361755371094 ], [ -72.063751220703011, -17.022361755371094 ], [ -72.063751220703011, -17.024028778076172 ], [ -72.064025878906193, -17.024028778076172 ], [ -72.064025878906193, -17.024305343627816 ], [ -72.064582824706974, -17.024305343627816 ], [ -72.064582824706974, -17.024583816528263 ], [ -72.065414428710938, -17.024583816528263 ], [ -72.065414428710938, -17.024305343627816 ], [ -72.065971374511719, -17.024305343627816 ], [ -72.065971374511719, -17.024028778076172 ], [ -72.066253662109375, -17.024028778076172 ], [ -72.066253662109375, -17.023750305175724 ], [ -72.0665283203125, -17.023750305175724 ], [ -72.0665283203125, -17.023471832275334 ], [ -72.066802978515511, -17.023471832275334 ], [ -72.066802978515511, -17.022918701171818 ], [ -72.0665283203125, -17.022918701171818 ], [ -72.0665283203125, -17.022636413574105 ], [ -72.066802978515511, -17.022636413574105 ], [ -72.066802978515511, -17.022361755371094 ], [ -72.067085266113224, -17.022361755371094 ], [ -72.067085266113224, -17.022083282470703 ], [ -72.067642211914006, -17.022083282470703 ], [ -72.067642211914006, -17.021804809570312 ], [ -72.068748474121094, -17.021804809570312 ], [ -72.068748474121094, -17.021526336669922 ], [ -72.069305419921875, -17.021526336669922 ], [ -72.069305419921875, -17.021249771118107 ], [ -72.070137023925724, -17.021249771118107 ], [ -72.070137023925724, -17.02097129821766 ], [ -72.070968627929631, -17.02097129821766 ], [ -72.070968627929631, -17.021249771118107 ], [ -72.071525573730469, -17.021249771118107 ], [ -72.071525573730469, -17.021526336669922 ], [ -72.071807861328125, -17.021526336669922 ], [ -72.071807861328125, -17.021804809570312 ], [ -72.072364807128906, -17.021804809570312 ], [ -72.072364807128906, -17.022083282470703 ], [ -72.072914123535156, -17.022083282470703 ], [ -72.072914123535156, -17.022361755371094 ], [ -72.073196411132699, -17.022361755371094 ], [ -72.073196411132699, -17.022636413574105 ], [ -72.0745849609375, -17.022636413574105 ], [ -72.0745849609375, -17.022083282470703 ], [ -72.074859619140625, -17.022083282470703 ], [ -72.074859619140625, -17.021804809570312 ], [ -72.075416564941406, -17.021804809570312 ], [ -72.075416564941406, -17.021526336669922 ], [ -72.075691223144531, -17.021526336669922 ], [ -72.075691223144531, -17.021249771118107 ], [ -72.075973510742188, -17.021249771118107 ], [ -72.075973510742188, -17.020694732665959 ], [ -72.076248168945199, -17.020694732665959 ], [ -72.076248168945199, -17.020591735839844 ], [ -72.076248168945199, -17.020139694213867 ], [ -72.076683044433594, -17.020139694213867 ], [ -72.077362060546818, -17.020139694213867 ], [ -72.077362060546818, -17.019861221313477 ], [ -72.078193664550781, -17.019861221313477 ], [ -72.078193664550781, -17.019582748413086 ], [ -72.078475952148438, -17.019582748413086 ], [ -72.078475952148438, -17.019027709960938 ], [ -72.078750610351562, -17.019027709960938 ], [ -72.078750610351562, -17.018749237060547 ], [ -72.079025268554688, -17.018749237060547 ], [ -72.079025268554688, -17.018472671508732 ], [ -72.079582214355355, -17.018472671508732 ], [ -72.079582214355355, -17.018749237060547 ], [ -72.080139160156193, -17.018749237060547 ], [ -72.080139160156193, -17.019027709960938 ], [ -72.080413818359318, -17.019027709960938 ], [ -72.080413818359318, -17.018749237060547 ], [ -72.080696105956974, -17.018749237060547 ], [ -72.080696105956974, -17.018472671508732 ], [ -72.080970764160156, -17.018472671508732 ], [ -72.080970764160156, -17.017082214355412 ], [ -72.081802368164062, -17.017082214355412 ], [ -72.081802368164062, -17.01763916015625 ], [ -72.082084655761719, -17.01763916015625 ], [ -72.082084655761719, -17.017915725707894 ], [ -72.082916259765568, -17.017915725707894 ], [ -72.082916259765568, -17.018194198608342 ], [ -72.083190917968693, -17.018194198608342 ], [ -72.083190917968693, -17.019304275512695 ], [ -72.084304809570312, -17.019304275512695 ], [ -72.084304809570312, -17.019861221313477 ], [ -72.084587097167969, -17.019861221313477 ], [ -72.084587097167969, -17.019582748413086 ], [ -72.084861755371094, -17.019582748413086 ], [ -72.084861755371094, -17.019027709960938 ], [ -72.085136413574219, -17.019027709960938 ], [ -72.085136413574219, -17.018472671508732 ], [ -72.085418701171875, -17.018472671508732 ], [ -72.085418701171875, -17.017915725707894 ], [ -72.085693359375, -17.017915725707894 ], [ -72.085693359375, -17.017360687255803 ], [ -72.085975646972543, -17.017360687255803 ], [ -72.085975646972543, -17.01652717590332 ], [ -72.086250305175724, -17.01652717590332 ], [ -72.086250305175724, -17.016250610351449 ], [ -72.086807250976506, -17.016250610351449 ], [ -72.086807250976506, -17.015972137451172 ], [ -72.087638854980469, -17.015972137451172 ], [ -72.087638854980469, -17.015693664550781 ], [ -72.08819580078125, -17.015693664550781 ], [ -72.08819580078125, -17.015417098998967 ], [ -72.089027404785043, -17.015417098998967 ], [ -72.089027404785043, -17.014583587646484 ], [ -72.089584350585881, -17.014583587646484 ], [ -72.089584350585881, -17.014028549194336 ], [ -72.090141296386662, -17.014028549194336 ], [ -72.090141296386662, -17.013750076293945 ], [ -72.090415954589844, -17.013750076293945 ], [ -72.090415954589844, -17.013471603393555 ], [ -72.090690612792969, -17.013471603393555 ], [ -72.0906982421875, -17.013195037841683 ], [ -72.092086791992188, -17.013195037841683 ], [ -72.092086791992188, -17.013471603393555 ], [ -72.092636108398381, -17.013471603393555 ], [ -72.092636108398381, -17.014028549194336 ], [ -72.09375, -17.014028549194336 ], [ -72.09375, -17.013750076293945 ], [ -72.094306945800781, -17.013750076293945 ], [ -72.094306945800781, -17.013471603393555 ], [ -72.095138549804688, -17.013471603393555 ], [ -72.095138549804688, -17.013750076293945 ], [ -72.095413208007699, -17.013750076293945 ], [ -72.095413208007699, -17.014028549194336 ], [ -72.095970153808537, -17.014028549194336 ], [ -72.095970153808537, -17.013750076293945 ], [ -72.097084045410156, -17.013750076293945 ], [ -72.097084045410156, -17.014028549194336 ], [ -72.097358703613281, -17.014028549194336 ], [ -72.097358703613281, -17.014305114746037 ], [ -72.097915649414062, -17.014305114746037 ], [ -72.097915649414062, -17.014583587646484 ], [ -72.098197937011719, -17.014583587646484 ], [ -72.098197937011719, -17.015138626098576 ], [ -72.098747253417912, -17.015138626098576 ], [ -72.098747253417912, -17.016250610351449 ], [ -72.099304199218693, -17.016250610351449 ], [ -72.099304199218693, -17.01652717590332 ], [ -72.099586486816349, -17.01652717590332 ], [ -72.099586486816349, -17.016250610351449 ], [ -72.100135803222656, -17.016250610351449 ], [ -72.100135803222656, -17.01652717590332 ], [ -72.100975036621094, -17.01652717590332 ], [ -72.100975036621094, -17.015972137451172 ], [ -72.101249694824219, -17.015972137451172 ], [ -72.101249694824219, -17.015138626098576 ], [ -72.102363586425724, -17.015138626098576 ], [ -72.102363586425724, -17.015417098998967 ], [ -72.103195190429688, -17.015417098998967 ], [ -72.103195190429688, -17.016250610351449 ], [ -72.103469848632812, -17.016250610351449 ], [ -72.103469848632812, -17.01652717590332 ], [ -72.103752136230469, -17.01652717590332 ], [ -72.103752136230469, -17.017082214355412 ], [ -72.105140686035043, -17.017082214355412 ], [ -72.105140686035043, -17.016805648803711 ], [ -72.105415344238224, -17.016805648803711 ], [ -72.105415344238224, -17.01652717590332 ], [ -72.105972290039006, -17.01652717590332 ], [ -72.105972290039006, -17.016250610351449 ], [ -72.107086181640625, -17.016250610351449 ], [ -72.107086181640625, -17.015972137451172 ], [ -72.107635498046875, -17.015972137451172 ], [ -72.107635498046875, -17.015138626098576 ], [ -72.109024047851506, -17.015138626098576 ], [ -72.109024047851506, -17.01652717590332 ], [ -72.109306335449162, -17.01652717590332 ], [ -72.109306335449162, -17.016805648803711 ], [ -72.109580993652344, -17.016805648803711 ], [ -72.109580993652344, -17.017082214355412 ], [ -72.109306335449162, -17.017082214355412 ], [ -72.109306335449162, -17.017360687255803 ], [ -72.109024047851506, -17.017360687255803 ], [ -72.109024047851506, -17.01763916015625 ], [ -72.108474731445256, -17.01763916015625 ], [ -72.108474731445256, -17.017915725707894 ], [ -72.108192443847543, -17.017917633056641 ], [ -72.108192443847543, -17.018194198608342 ], [ -72.107917785644531, -17.018194198608342 ], [ -72.107917785644531, -17.019027709960938 ], [ -72.107635498046875, -17.019027709960938 ], [ -72.107635498046875, -17.019582748413086 ], [ -72.10736083984375, -17.019582748413086 ], [ -72.10736083984375, -17.020694732665959 ], [ -72.107917785644531, -17.020694732665959 ], [ -72.107917785644531, -17.02097129821766 ], [ -72.108749389648381, -17.02097129821766 ], [ -72.108749389648381, -17.020694732665959 ], [ -72.109024047851506, -17.020694732665959 ], [ -72.109024047851506, -17.020414352416992 ], [ -72.109306335449162, -17.020414352416992 ], [ -72.109306335449162, -17.020139694213867 ], [ -72.109580993652344, -17.020139694213867 ], [ -72.109580993652344, -17.019582748413086 ], [ -72.10986328125, -17.019582748413086 ], [ -72.10986328125, -17.019027709960938 ], [ -72.110137939453125, -17.019027709960938 ], [ -72.110137939453125, -17.018749237060547 ], [ -72.111808776855412, -17.018749237060547 ], [ -72.111808776855412, -17.018194198608342 ], [ -72.112083435058537, -17.018194198608342 ], [ -72.112083435058537, -17.01763916015625 ], [ -72.113197326660156, -17.01763916015625 ], [ -72.113197326660156, -17.017360687255803 ], [ -72.113471984863281, -17.017360687255803 ], [ -72.113471984863281, -17.016805648803711 ], [ -72.113197326660156, -17.016805648803711 ], [ -72.113197326660156, -17.01652717590332 ], [ -72.112640380859318, -17.01652717590332 ], [ -72.112640380859318, -17.015972137451172 ], [ -72.114028930664062, -17.015972137451172 ], [ -72.114028930664062, -17.01652717590332 ], [ -72.11458587646473, -17.01652717590332 ], [ -72.11458587646473, -17.015693664550781 ], [ -72.114303588867188, -17.015693664550781 ], [ -72.114303588867188, -17.015417098998967 ], [ -72.114028930664062, -17.015417098998967 ], [ -72.114028930664062, -17.014862060546875 ], [ -72.113197326660156, -17.014862060546875 ], [ -72.113197326660156, -17.014305114746037 ], [ -72.1129150390625, -17.014305114746037 ], [ -72.1129150390625, -17.014028549194336 ], [ -72.113197326660156, -17.014028549194336 ], [ -72.113197326660156, -17.013750076293945 ], [ -72.113471984863281, -17.013750076293945 ], [ -72.113471984863281, -17.013471603393555 ], [ -72.113746643066406, -17.013471603393555 ], [ -72.113746643066406, -17.012361526489201 ], [ -72.113197326660156, -17.012361526489201 ], [ -72.113197326660156, -17.01208305358881 ], [ -72.112358093261662, -17.01208305358881 ], [ -72.112358093261662, -17.01097297668457 ], [ -72.112083435058537, -17.01097297668457 ], [ -72.112083435058537, -17.01069450378418 ], [ -72.112358093261662, -17.01069450378418 ], [ -72.112358093261662, -17.010417938232365 ], [ -72.112640380859318, -17.010417938232365 ], [ -72.112640380859318, -17.010139465331974 ], [ -72.1129150390625, -17.010139465331974 ], [ -72.1129150390625, -17.009307861328125 ], [ -72.113197326660156, -17.009307861328125 ], [ -72.113197326660156, -17.008472442626953 ], [ -72.1129150390625, -17.008472442626953 ], [ -72.1129150390625, -17.007360458374023 ], [ -72.112640380859318, -17.007360458374023 ], [ -72.112640380859318, -17.00625038146967 ], [ -72.1129150390625, -17.00625038146967 ], [ -72.1129150390625, -17.005971908569279 ], [ -72.113197326660156, -17.005971908569279 ], [ -72.113197326660156, -17.005695343017578 ], [ -72.113471984863281, -17.005695343017578 ], [ -72.113471984863281, -17.005138397216797 ], [ -72.113197326660156, -17.005138397216797 ], [ -72.113197326660156, -17.005416870117188 ], [ -72.112945556640568, -17.005416870117188 ], [ -72.112358093261662, -17.005416870117188 ], [ -72.112358093261662, -17.005138397216797 ], [ -72.112083435058537, -17.005138397216797 ], [ -72.112083435058537, -17.004968643188477 ], [ -72.112083435058537, -17.004861831665039 ], [ -72.111717224121037, -17.004861831665039 ], [ -72.111305236816349, -17.004861831665039 ], [ -72.109580993652344, -17.004861831665039 ], [ -72.109580993652344, -17.004304885864258 ], [ -72.10986328125, -17.004304885864258 ], [ -72.10986328125, -17.004028320312443 ], [ -72.110137939453125, -17.004028320312443 ], [ -72.110137939453125, -17.002639770507812 ], [ -72.10986328125, -17.002639770507812 ], [ -72.10986328125, -17.002082824707031 ], [ -72.110137939453125, -17.002082824707031 ], [ -72.110137939453125, -17.001249313354492 ], [ -72.110420227050781, -17.001249313354492 ], [ -72.110420227050781, -17.000415802001839 ], [ -72.110137939453125, -17.000415802001839 ], [ -72.110137939453125, -17.000139236450195 ], [ -72.109977722167912, -17.000139236450195 ], [ -72.10986328125, -17.000139236450195 ], [ -72.10986328125, -16.999862670898438 ], [ -72.10986328125, -16.999584197998047 ], [ -72.109024047851506, -16.999584197998047 ], [ -72.109024047851506, -16.999305725097656 ], [ -72.107917785644531, -16.999305725097656 ], [ -72.107917785644531, -16.999027252197266 ], [ -72.107635498046875, -16.999027252197266 ], [ -72.107635498046875, -16.998750686645394 ], [ -72.10736083984375, -16.998750686645394 ], [ -72.10736083984375, -16.998472213745117 ], [ -72.107086181640625, -16.998472213745117 ], [ -72.107086181640625, -16.998193740844727 ], [ -72.106529235839844, -16.998193740844727 ], [ -72.106529235839844, -16.997917175292912 ], [ -72.105697631835881, -16.997917175292912 ], [ -72.105697631835881, -16.997640609741211 ], [ -72.105415344238224, -16.997640609741211 ], [ -72.105415344238224, -16.997358322143555 ], [ -72.105140686035043, -16.997358322143555 ], [ -72.105140686035043, -16.996528625488281 ], [ -72.105415344238224, -16.996528625488281 ], [ -72.105415344238224, -16.996248245239201 ], [ -72.105972290039006, -16.996248245239201 ], [ -72.105972290039006, -16.994863510131836 ], [ -72.105972290039006, -16.994365692138672 ], [ -72.105972290039006, -16.994026184081918 ], [ -72.106246948242188, -16.994026184081918 ], [ -72.106246948242188, -16.993749618530273 ], [ -72.106529235839844, -16.993749618530273 ], [ -72.106529235839844, -16.993473052978516 ], [ -72.106803894042969, -16.993473052978516 ], [ -72.106803894042969, -16.993305206298828 ], [ -72.106803894042969, -16.993194580078125 ], [ -72.107635498046875, -16.993194580078125 ], [ -72.107635498046875, -16.992914199829045 ], [ -72.109580993652344, -16.992914199829045 ], [ -72.109580993652344, -16.99263954162592 ], [ -72.10986328125, -16.99263954162592 ], [ -72.10986328125, -16.992082595825195 ], [ -72.109580993652344, -16.992082595825195 ], [ -72.109580993652344, -16.991962432861328 ], [ -72.109580993652344, -16.991741180419808 ], [ -72.109580993652344, -16.99152755737299 ], [ -72.109375, -16.99152755737299 ], [ -72.109306335449162, -16.990972518920898 ], [ -72.109580993652344, -16.990972518920898 ], [ -72.109580993652344, -16.990692138671761 ], [ -72.110137939453125, -16.990692138671761 ], [ -72.110137939453125, -16.989582061767578 ], [ -72.110420227050781, -16.989582061767578 ], [ -72.110420227050781, -16.988750457763615 ], [ -72.110694885253906, -16.988750457763615 ], [ -72.110694885253906, -16.988473892211914 ], [ -72.110969543457031, -16.988473892211914 ], [ -72.110969543457031, -16.988750457763615 ], [ -72.111251831054688, -16.988750457763615 ], [ -72.111251831054688, -16.98902702331543 ], [ -72.111526489257756, -16.98902702331543 ], [ -72.111526489257756, -16.989582061767578 ], [ -72.111808776855412, -16.989582061767578 ], [ -72.111808776855412, -16.989860534667969 ], [ -72.112083435058537, -16.989860534667969 ], [ -72.112083435058537, -16.990139007568359 ], [ -72.112358093261662, -16.990139007568359 ], [ -72.112358093261662, -16.99041748046875 ], [ -72.113197326660156, -16.99041748046875 ], [ -72.113197326660156, -16.990139007568359 ], [ -72.114028930664062, -16.990139007568359 ], [ -72.114028930664062, -16.989313125610352 ], [ -72.114028930664062, -16.988473892211914 ], [ -72.114303588867188, -16.988473892211914 ], [ -72.114303588867188, -16.988193511962834 ], [ -72.114418029785156, -16.988193511962834 ], [ -72.11458587646473, -16.988193511962834 ], [ -72.11458587646473, -16.987916946411133 ], [ -72.115417480468693, -16.987916946411133 ], [ -72.115417480468693, -16.987638473510742 ], [ -72.115974426269531, -16.987638473510742 ], [ -72.115974426269531, -16.986804962158203 ], [ -72.116249084472656, -16.986804962158203 ], [ -72.116249084472656, -16.984029769897404 ], [ -72.115974426269531, -16.984029769897404 ], [ -72.115974426269531, -16.983783721923828 ], [ -72.115974426269531, -16.983472824096623 ], [ -72.116249084472656, -16.983472824096623 ], [ -72.116249084472656, -16.983194351196232 ], [ -72.116531372070312, -16.983194351196232 ], [ -72.116531372070312, -16.982917785644531 ], [ -72.11763763427723, -16.982917785644531 ], [ -72.11763763427723, -16.983194351196232 ], [ -72.118469238281193, -16.983194351196232 ], [ -72.118469238281193, -16.982917785644531 ], [ -72.119026184082031, -16.982917785644531 ], [ -72.119026184082031, -16.982637405395508 ], [ -72.119308471679688, -16.982637405395508 ], [ -72.119308471679688, -16.982360839843693 ], [ -72.119583129882812, -16.982360839843693 ], [ -72.119583129882812, -16.982084274291992 ], [ -72.120140075683594, -16.982082366943303 ], [ -72.120140075683594, -16.981807708740178 ], [ -72.120414733886719, -16.981807708740178 ], [ -72.120414733886719, -16.981525421142521 ], [ -72.120697021484375, -16.981525421142521 ], [ -72.120697021484375, -16.981250762939339 ], [ -72.120971679687386, -16.981250762939339 ], [ -72.120971679687386, -16.980972290039062 ], [ -72.121246337890568, -16.980972290039062 ], [ -72.121246337890568, -16.980415344238281 ], [ -72.121528625488224, -16.980415344238281 ], [ -72.121528625488224, -16.979860305786076 ], [ -72.121803283691349, -16.979860305786076 ], [ -72.121803283691349, -16.979305267333928 ], [ -72.122085571289006, -16.979305267333928 ], [ -72.122085571289006, -16.979028701782227 ], [ -72.122360229492188, -16.979028701782227 ], [ -72.122360229492188, -16.978471755981445 ], [ -72.122642517089844, -16.978471755981445 ], [ -72.122642517089844, -16.978193283081055 ], [ -72.122917175292969, -16.978193283081055 ], [ -72.122917175292969, -16.977916717529297 ], [ -72.122642517089844, -16.977916717529297 ], [ -72.122642517089844, -16.977361679077092 ], [ -72.122360229492188, -16.977361679077092 ], [ -72.122360229492188, -16.977083206176701 ], [ -72.122642517089844, -16.977083206176701 ], [ -72.122642517089844, -16.97680473327631 ], [ -72.123191833496094, -16.97680473327631 ], [ -72.123191833496094, -16.976528167724609 ], [ -72.123748779296875, -16.976528167724609 ], [ -72.123748779296875, -16.97541618347168 ], [ -72.124031066894531, -16.97541618347168 ], [ -72.124031066894531, -16.974582672119141 ], [ -72.12347412109375, -16.974582672119141 ], [ -72.12347412109375, -16.974306106567326 ], [ -72.123191833496094, -16.974306106567326 ], [ -72.123191833496094, -16.974027633666935 ], [ -72.123077392578125, -16.974027633666935 ], [ -72.122642517089844, -16.974027633666935 ], [ -72.122642517089844, -16.973749160766545 ], [ -72.122360229492188, -16.973749160766545 ], [ -72.122360229492188, -16.973472595214844 ], [ -72.121803283691349, -16.973472595214844 ], [ -72.121803283691349, -16.973194122314453 ], [ -72.121528625488224, -16.973194122314453 ], [ -72.121528625488224, -16.972639083862305 ], [ -72.121246337890568, -16.972639083862305 ], [ -72.121246337890568, -16.972352981567383 ], [ -72.121246337890568, -16.972084045410099 ], [ -72.120971679687386, -16.972084045410099 ], [ -72.120971679687386, -16.971847534179688 ], [ -72.120971679687386, -16.971527099609375 ], [ -72.120834350585938, -16.971527099609375 ], [ -72.120697021484375, -16.971527099609375 ], [ -72.120697021484375, -16.97125053405756 ], [ -72.120414733886719, -16.97125053405756 ], [ -72.120414733886719, -16.97097206115717 ], [ -72.120140075683594, -16.97097206115717 ], [ -72.120140075683594, -16.970693588256779 ], [ -72.119857788085938, -16.970693588256779 ], [ -72.119857788085938, -16.970418930053654 ], [ -72.120140075683594, -16.970418930053654 ], [ -72.120140075683594, -16.970140457153207 ], [ -72.120697021484375, -16.970140457153207 ], [ -72.120697021484375, -16.970418930053654 ], [ -72.122642517089844, -16.970418930053654 ], [ -72.122642517089844, -16.970693588256779 ], [ -72.123748779296875, -16.970693588256779 ], [ -72.123748779296875, -16.970140457153207 ], [ -72.124031066894531, -16.970140457153207 ], [ -72.124031066894531, -16.969583511352539 ], [ -72.124305725097599, -16.969583511352539 ], [ -72.124305725097599, -16.969306945800724 ], [ -72.124580383300724, -16.969306945800724 ], [ -72.124580383300724, -16.969583511352539 ], [ -72.124862670898381, -16.969583511352539 ], [ -72.124862670898381, -16.96986198425293 ], [ -72.125419616699162, -16.96986198425293 ], [ -72.125419616699162, -16.969583511352539 ], [ -72.125694274902344, -16.969583511352539 ], [ -72.125694274902344, -16.969026565551758 ], [ -72.125968933105469, -16.969026565551758 ], [ -72.125968933105469, -16.968748092651367 ], [ -72.126251220703125, -16.968748092651367 ], [ -72.126251220703125, -16.968471527099496 ], [ -72.12652587890625, -16.968471527099496 ], [ -72.12652587890625, -16.967798233032227 ], [ -72.12652587890625, -16.967636108398438 ], [ -72.126808166503906, -16.967636108398438 ], [ -72.126808166503906, -16.967361450195312 ], [ -72.127357482910099, -16.967361450195312 ], [ -72.127357482910099, -16.967636108398438 ], [ -72.127639770507756, -16.967636108398438 ], [ -72.127639770507756, -16.968196868896484 ], [ -72.127357482910099, -16.968196868896484 ], [ -72.127357482910099, -16.969306945800724 ], [ -72.127639770507756, -16.969306945800724 ], [ -72.127639770507756, -16.969026565551758 ], [ -72.127914428710881, -16.969026565551758 ], [ -72.127914428710881, -16.968748092651367 ], [ -72.128471374511662, -16.968748092651367 ], [ -72.128471374511662, -16.968471527099496 ], [ -72.130142211914062, -16.968471527099496 ], [ -72.130142211914062, -16.968748092651367 ], [ -72.130416870117074, -16.968748092651367 ], [ -72.130416870117074, -16.969306945800724 ], [ -72.130691528320256, -16.969306945800724 ], [ -72.130691528320256, -16.970418930053654 ], [ -72.131805419921875, -16.970418930053654 ], [ -72.131805419921875, -16.970693588256779 ], [ -72.132080078125, -16.970693588256779 ], [ -72.132080078125, -16.97097206115717 ], [ -72.131805419921875, -16.97097206115717 ], [ -72.131805419921875, -16.971527099609375 ], [ -72.132080078125, -16.971527099609375 ], [ -72.132080078125, -16.971805572509652 ], [ -72.132362365722656, -16.971805572509652 ], [ -72.132362365722656, -16.972084045410099 ], [ -72.132919311523438, -16.972084045410099 ], [ -72.132919311523438, -16.971805572509652 ], [ -72.13375091552723, -16.971805572509652 ], [ -72.13375091552723, -16.971527099609375 ], [ -72.134582519531193, -16.971527099609375 ], [ -72.134582519531193, -16.97125053405756 ], [ -72.135414123535156, -16.97125053405756 ], [ -72.135414123535156, -16.97097206115717 ], [ -72.135696411132812, -16.97097206115717 ], [ -72.135696411132812, -16.970693588256779 ], [ -72.135971069335938, -16.970693588256779 ], [ -72.135971069335938, -16.970140457153207 ], [ -72.136253356933594, -16.970140457153207 ], [ -72.136253356933594, -16.969583511352539 ], [ -72.136528015136719, -16.969583511352539 ], [ -72.136528015136719, -16.969026565551758 ], [ -72.13680267333973, -16.969026565551758 ], [ -72.13680267333973, -16.968196868896484 ], [ -72.137084960937443, -16.968196868896484 ], [ -72.137084960937443, -16.967082977294922 ], [ -72.13680267333973, -16.967082977294922 ], [ -72.13680267333973, -16.966527938842773 ], [ -72.136528015136719, -16.966527938842773 ], [ -72.136528015136719, -16.966152191162053 ], [ -72.136528015136719, -16.965972900390568 ], [ -72.136253356933594, -16.965972900390568 ], [ -72.136253356933594, -16.965414047241211 ], [ -72.136528015136719, -16.965414047241211 ], [ -72.136528015136719, -16.965139389038086 ], [ -72.13680267333973, -16.965139389038086 ], [ -72.13680267333973, -16.965414047241211 ], [ -72.137084960937443, -16.965414047241211 ], [ -72.137084960937443, -16.965694427490178 ], [ -72.137916564941349, -16.965694427490178 ], [ -72.137916564941349, -16.965414047241211 ], [ -72.138748168945312, -16.965414047241211 ], [ -72.138748168945312, -16.965139389038086 ], [ -72.139579772949219, -16.965139389038086 ], [ -72.139579772949219, -16.965414047241211 ], [ -72.139862060546875, -16.965414047241211 ], [ -72.139862060546875, -16.965972900390568 ], [ -72.140136718749943, -16.965972900390568 ], [ -72.140136718749943, -16.966804504394531 ], [ -72.140419006347599, -16.966804504394531 ], [ -72.140419006347599, -16.967082977294922 ], [ -72.141525268554688, -16.967082977294922 ], [ -72.141525268554688, -16.967361450195312 ], [ -72.142364501953125, -16.967361450195312 ], [ -72.142364501953125, -16.967082977294922 ], [ -72.143753051757756, -16.967082977294922 ], [ -72.143753051757756, -16.966804504394531 ], [ -72.144302368164006, -16.966804504394531 ], [ -72.144302368164006, -16.966527938842773 ], [ -72.144027709960881, -16.966527938842773 ], [ -72.144027709960881, -16.965694427490178 ], [ -72.144302368164006, -16.965694427490178 ], [ -72.144302368164006, -16.965414047241211 ], [ -72.1451416015625, -16.965414047241211 ], [ -72.1451416015625, -16.965694427490178 ], [ -72.14569091796875, -16.965694427490178 ], [ -72.14569091796875, -16.965414047241211 ], [ -72.145973205566406, -16.965414047241211 ], [ -72.145973205566406, -16.965139389038086 ], [ -72.146247863769418, -16.965139389038086 ], [ -72.146247863769418, -16.964860916137638 ], [ -72.146530151367074, -16.964860916137638 ], [ -72.146530151367074, -16.964582443237248 ], [ -72.146804809570256, -16.964582443237248 ], [ -72.146804809570256, -16.964305877685547 ], [ -72.146247863769418, -16.964305877685547 ], [ -72.146247863769418, -16.964027404785156 ], [ -72.145973205566406, -16.964027404785156 ], [ -72.145973205566406, -16.963750839233285 ], [ -72.146247863769418, -16.963750839233285 ], [ -72.146247863769418, -16.963472366333008 ], [ -72.147361755371037, -16.963472366333008 ], [ -72.147361755371037, -16.963750839233285 ], [ -72.147636413574219, -16.963750839233285 ], [ -72.147636413574219, -16.963472366333008 ], [ -72.147918701171875, -16.963472366333008 ], [ -72.147918701171875, -16.963193893432617 ], [ -72.148475646972656, -16.963193893432617 ], [ -72.148475646972656, -16.962917327880803 ], [ -72.148750305175781, -16.962917327880803 ], [ -72.148750305175781, -16.962638854980412 ], [ -72.149024963378906, -16.962638854980412 ], [ -72.149024963378906, -16.962360382080021 ], [ -72.149307250976562, -16.962360382080021 ], [ -72.149307250976562, -16.96208381652832 ], [ -72.149024963378906, -16.96208381652832 ], [ -72.149024963378906, -16.961477279663086 ], [ -72.149024963378906, -16.960695266723519 ], [ -72.148750305175781, -16.960695266723519 ], [ -72.148750305175781, -16.960416793823242 ], [ -72.148475646972656, -16.960416793823242 ], [ -72.148475646972656, -16.960138320922852 ], [ -72.148193359375, -16.960138320922852 ], [ -72.148193359375, -16.959861755371037 ], [ -72.147918701171875, -16.959861755371037 ], [ -72.147918701171875, -16.959583282470646 ], [ -72.147636413574219, -16.959583282470646 ], [ -72.147636413574219, -16.959304809570256 ], [ -72.147361755371037, -16.959304809570256 ], [ -72.147361755371037, -16.958751678466797 ], [ -72.147087097167912, -16.958751678466797 ], [ -72.147087097167912, -16.958471298217717 ], [ -72.146804809570256, -16.958471298217717 ], [ -72.146804809570256, -16.958316802978516 ], [ -72.146804809570256, -16.957916259765625 ], [ -72.146530151367074, -16.957916259765625 ], [ -72.146530151367074, -16.95763969421381 ], [ -72.146247863769418, -16.95763969421381 ], [ -72.146247863769418, -16.957361221313363 ], [ -72.145973205566406, -16.957361221313363 ], [ -72.145973205566406, -16.957082748413086 ], [ -72.14569091796875, -16.957082748413086 ], [ -72.14569091796875, -16.956806182861271 ], [ -72.145416259765625, -16.956806182861271 ], [ -72.145416259765625, -16.95652961730957 ], [ -72.14569091796875, -16.95652961730957 ], [ -72.14569091796875, -16.956247329711914 ], [ -72.146804809570256, -16.956247329711914 ], [ -72.146804809570256, -16.95652961730957 ], [ -72.147087097167912, -16.95652961730957 ], [ -72.147087097167912, -16.956806182861271 ], [ -72.147636413574219, -16.956806182861271 ], [ -72.147636413574219, -16.957082748413086 ], [ -72.148475646972656, -16.957082748413086 ], [ -72.148475646972656, -16.957361221313363 ], [ -72.148750305175781, -16.957361221313363 ], [ -72.148750305175781, -16.95763969421381 ], [ -72.149024963378906, -16.95763969421381 ], [ -72.149024963378906, -16.958194732666016 ], [ -72.149307250976562, -16.958194732666016 ], [ -72.149307250976562, -16.958751678466797 ], [ -72.150413513183537, -16.958751678466797 ], [ -72.150413513183537, -16.958471298217717 ], [ -72.150970458984375, -16.958471298217717 ], [ -72.150970458984375, -16.958194732666016 ], [ -72.151527404785156, -16.958194732666016 ], [ -72.151527404785156, -16.957916259765625 ], [ -72.152084350585938, -16.957916259765625 ], [ -72.152084350585938, -16.95763969421381 ], [ -72.154304504394531, -16.95763969421381 ], [ -72.154304504394531, -16.957361221313363 ], [ -72.154861450195312, -16.957361221313363 ], [ -72.154861450195312, -16.95652961730957 ], [ -72.154586791992188, -16.95652961730957 ], [ -72.154586791992188, -16.956060409545898 ], [ -72.154586791992188, -16.955812454223576 ], [ -72.154586791992188, -16.954307556152344 ], [ -72.154861450195312, -16.954307556152344 ], [ -72.154861450195312, -16.954025268554688 ], [ -72.155136108398438, -16.954025268554688 ], [ -72.155136108398438, -16.953750610351506 ], [ -72.155418395996094, -16.953750610351506 ], [ -72.155418395996094, -16.953472137451115 ], [ -72.155975341796761, -16.953472137451115 ], [ -72.155975341796761, -16.953193664550724 ], [ -72.156524658203068, -16.953193664550724 ], [ -72.156524658203068, -16.952915191650334 ], [ -72.157081604003849, -16.952915191650334 ], [ -72.157081604003849, -16.953193664550724 ], [ -72.157913208007812, -16.953193664550724 ], [ -72.157913208007812, -16.952915191650334 ], [ -72.158195495605469, -16.952915191650334 ], [ -72.158195495605469, -16.952362060546875 ], [ -72.158470153808594, -16.952360153198242 ], [ -72.158470153808594, -16.952083587646484 ], [ -72.15875244140625, -16.952083587646484 ], [ -72.15875244140625, -16.951803207397404 ], [ -72.159858703613224, -16.951803207397404 ], [ -72.159858703613224, -16.952083587646484 ], [ -72.160697937011719, -16.952083587646484 ], [ -72.160697937011719, -16.952360153198242 ], [ -72.161247253417969, -16.952360153198242 ], [ -72.161247253417969, -16.952083587646484 ], [ -72.16180419921875, -16.952083587646484 ], [ -72.16180419921875, -16.951803207397404 ], [ -72.162086486816406, -16.951803207397404 ], [ -72.162086486816406, -16.951528549194279 ], [ -72.162361145019418, -16.951528549194279 ], [ -72.162361145019418, -16.9508762359618 ], [ -72.162361145019418, -16.950416564941349 ], [ -72.162635803222599, -16.950416564941349 ], [ -72.162635803222599, -16.949861526489258 ], [ -72.162918090820256, -16.949861526489258 ], [ -72.162918090820256, -16.949583053588867 ], [ -72.163475036621037, -16.949583053588867 ], [ -72.163475036621037, -16.949306488037109 ], [ -72.164024353027344, -16.949304580688477 ], [ -72.164024353027344, -16.949028015136719 ], [ -72.164306640625, -16.949028015136719 ], [ -72.164306640625, -16.948749542236328 ], [ -72.164863586425781, -16.948749542236328 ], [ -72.164863586425781, -16.948471069335938 ], [ -72.165138244628906, -16.948471069335938 ], [ -72.165138244628906, -16.947916030883675 ], [ -72.165412902831918, -16.947916030883675 ], [ -72.165412902831918, -16.947639465332031 ], [ -72.165695190429631, -16.947639465332031 ], [ -72.165695190429631, -16.947082519531193 ], [ -72.165969848632756, -16.947082519531193 ], [ -72.165969848632756, -16.946527481079102 ], [ -72.166252136230412, -16.946527481079102 ], [ -72.166252136230412, -16.945417404174748 ], [ -72.166526794433537, -16.945417404174748 ], [ -72.166526794433537, -16.943195343017464 ], [ -72.166252136230412, -16.943195343017464 ], [ -72.166252136230412, -16.942361831664982 ], [ -72.165695190429631, -16.942361831664982 ], [ -72.165695190429631, -16.942083358764592 ], [ -72.164863586425781, -16.942083358764592 ], [ -72.164863586425781, -16.941804885864201 ], [ -72.164581298828125, -16.941804885864201 ], [ -72.164581298828125, -16.941249847412109 ], [ -72.164306640625, -16.941249847412109 ], [ -72.164306640625, -16.940971374511662 ], [ -72.164024353027344, -16.940971374511662 ], [ -72.164024353027344, -16.940414428710881 ], [ -72.163749694824219, -16.940414428710881 ], [ -72.163749694824219, -16.940139770507756 ], [ -72.164024353027344, -16.940139770507756 ], [ -72.164024353027344, -16.939861297607308 ], [ -72.164306640625, -16.939861297607308 ], [ -72.164306640625, -16.939582824707031 ], [ -72.164581298828125, -16.939582824707031 ], [ -72.164581298828125, -16.939304351806641 ], [ -72.165138244628906, -16.939304351806641 ], [ -72.165138244628906, -16.939027786254826 ], [ -72.165695190429631, -16.939027786254826 ], [ -72.165695190429631, -16.938749313354435 ], [ -72.167083740234375, -16.938749313354435 ], [ -72.167083740234375, -16.938472747802734 ], [ -72.168197631835938, -16.938472747802734 ], [ -72.168197631835938, -16.938749313354435 ], [ -72.168746948242131, -16.938749313354435 ], [ -72.168746948242131, -16.939027786254826 ], [ -72.169303894042912, -16.939027786254826 ], [ -72.169303894042912, -16.939304351806641 ], [ -72.169860839843693, -16.939304351806641 ], [ -72.169860839843693, -16.939582824707031 ], [ -72.170417785644531, -16.939582824707031 ], [ -72.170417785644531, -16.939861297607308 ], [ -72.170974731445312, -16.939861297607308 ], [ -72.170974731445312, -16.940139770507756 ], [ -72.171524047851562, -16.940139770507756 ], [ -72.171524047851562, -16.940414428710881 ], [ -72.172080993652287, -16.940414428710881 ], [ -72.172080993652287, -16.940696716308537 ], [ -72.172637939453068, -16.940696716308537 ], [ -72.172637939453068, -16.940971374511662 ], [ -72.173469543457031, -16.940971374511662 ], [ -72.173469543457031, -16.940696716308537 ], [ -72.174308776855469, -16.940696716308537 ], [ -72.174308776855469, -16.940414428710881 ], [ -72.174858093261605, -16.940414428710881 ], [ -72.174858093261605, -16.940139770507756 ], [ -72.175140380859261, -16.940139770507756 ], [ -72.175140380859261, -16.939861297607308 ], [ -72.175415039062443, -16.939861297607308 ], [ -72.175415039062443, -16.939582824707031 ], [ -72.175971984863224, -16.939582824707031 ], [ -72.175971984863224, -16.939304351806641 ], [ -72.176246643066406, -16.939304351806641 ], [ -72.176246643066406, -16.939027786254826 ], [ -72.176528930664062, -16.939027786254826 ], [ -72.176528930664062, -16.938472747802734 ], [ -72.176803588867188, -16.938472747802734 ], [ -72.176803588867188, -16.938194274902344 ], [ -72.177085876464844, -16.938194274902344 ], [ -72.177085876464844, -16.937639236450195 ], [ -72.176803588867188, -16.937639236450195 ], [ -72.176803588867188, -16.936805725097543 ], [ -72.177085876464844, -16.936805725097543 ], [ -72.177085876464844, -16.936527252197266 ], [ -72.17791748046875, -16.936527252197266 ], [ -72.17791748046875, -16.936250686645451 ], [ -72.178749084472599, -16.936250686645451 ], [ -72.178749084472599, -16.93597221374506 ], [ -72.179306030273381, -16.93597221374506 ], [ -72.179306030273381, -16.93569374084467 ], [ -72.179862976074219, -16.93569374084467 ], [ -72.179862976074219, -16.935417175292969 ], [ -72.180137634277344, -16.935417175292969 ], [ -72.180137634277344, -16.934860229492188 ], [ -72.180419921875, -16.934860229492188 ], [ -72.180419921875, -16.934305191040039 ], [ -72.180694580078125, -16.934305191040039 ], [ -72.180694580078125, -16.934028625488224 ], [ -72.181526184081974, -16.934028625488224 ], [ -72.181526184081974, -16.934305191040039 ], [ -72.181808471679631, -16.934305191040039 ], [ -72.181808471679631, -16.936527252197266 ], [ -72.182357788085881, -16.936527252197266 ], [ -72.182357788085881, -16.936805725097543 ], [ -72.186248779296875, -16.936805725097543 ], [ -72.186248779296875, -16.935138702392578 ], [ -72.18597412109375, -16.935138702392578 ], [ -72.18597412109375, -16.934860229492188 ], [ -72.185691833496037, -16.934860229492188 ], [ -72.185691833496037, -16.93458366394043 ], [ -72.185417175292912, -16.93458366394043 ], [ -72.185417175292912, -16.934028625488224 ], [ -72.185142517089787, -16.934028625488224 ], [ -72.185142517089787, -16.933750152587834 ], [ -72.184860229492131, -16.933750152587834 ], [ -72.184860229492131, -16.932638168334904 ], [ -72.185142517089787, -16.932638168334904 ], [ -72.185142517089787, -16.932361602783203 ], [ -72.186805725097656, -16.932361602783203 ], [ -72.186805725097656, -16.932083129882812 ], [ -72.187080383300781, -16.932083129882812 ], [ -72.187080383300781, -16.930694580078068 ], [ -72.186805725097656, -16.930694580078068 ], [ -72.186805725097656, -16.929861068725529 ], [ -72.187080383300781, -16.929861068725529 ], [ -72.187080383300781, -16.929582595825138 ], [ -72.186805725097656, -16.929582595825138 ], [ -72.186805725097656, -16.929307937622013 ], [ -72.186531066894531, -16.929307937622013 ], [ -72.186531066894531, -16.929029464721623 ], [ -72.186683654785043, -16.929029464721623 ], [ -72.186805725097656, -16.929029464721623 ], [ -72.186805725097656, -16.928194046020508 ], [ -72.186531066894531, -16.928194046020508 ], [ -72.186531066894531, -16.926805496215763 ], [ -72.186248779296875, -16.926805496215763 ], [ -72.186248779296875, -16.926525115966797 ], [ -72.185417175292912, -16.926525115966797 ], [ -72.185417175292912, -16.926250457763672 ], [ -72.185142517089787, -16.926250457763672 ], [ -72.185142517089787, -16.925416946411133 ], [ -72.185386657714844, -16.925416946411133 ], [ -72.185417175292912, -16.925138473510742 ], [ -72.185691833496037, -16.925138473510742 ], [ -72.185691833496037, -16.925416946411133 ], [ -72.18597412109375, -16.925416946411133 ], [ -72.18597412109375, -16.925693511962891 ], [ -72.186248779296875, -16.925693511962891 ], [ -72.186248779296875, -16.925971984863281 ], [ -72.186805725097656, -16.925971984863281 ], [ -72.186805725097656, -16.926250457763672 ], [ -72.187080383300781, -16.926250457763672 ], [ -72.187080383300781, -16.926805496215763 ], [ -72.187362670898438, -16.926805496215763 ], [ -72.187362670898438, -16.927360534667912 ], [ -72.187637329101449, -16.927360534667912 ], [ -72.187637329101449, -16.927637100219727 ], [ -72.188194274902287, -16.927637100219727 ], [ -72.188194274902287, -16.927360534667912 ], [ -72.18902587890625, -16.927360534667912 ], [ -72.18902587890625, -16.927085876464844 ], [ -72.189857482910156, -16.927085876464844 ], [ -72.189857482910156, -16.926805496215763 ], [ -72.191253662109318, -16.926805496215763 ], [ -72.191253662109318, -16.927085876464844 ], [ -72.192359924316406, -16.927085876464844 ], [ -72.192359924316406, -16.927360534667912 ], [ -72.192642211914062, -16.927360534667912 ], [ -72.192642211914062, -16.927637100219727 ], [ -72.193748474121094, -16.927637100219727 ], [ -72.193748474121094, -16.927915573120117 ], [ -72.194580078124943, -16.927915573120117 ], [ -72.194580078124943, -16.928194046020508 ], [ -72.195419311523381, -16.928194046020508 ], [ -72.195419311523381, -16.928472518920898 ], [ -72.196807861328125, -16.928472518920898 ], [ -72.196807861328125, -16.927637100219727 ], [ -72.19708251953125, -16.927637100219727 ], [ -72.19708251953125, -16.927360534667912 ], [ -72.197364807128793, -16.927360534667912 ], [ -72.197364807128793, -16.926805496215763 ], [ -72.197639465331974, -16.926805496215763 ], [ -72.197639465331974, -16.926525115966797 ], [ -72.197914123535099, -16.926525115966797 ], [ -72.197914123535099, -16.926250457763672 ], [ -72.198471069335881, -16.926250457763672 ], [ -72.198471069335881, -16.925971984863281 ], [ -72.198196411132756, -16.925971984863281 ], [ -72.198196411132756, -16.925138473510742 ], [ -72.197914123535099, -16.925138473510742 ], [ -72.197914123535099, -16.924861907958928 ], [ -72.197639465331974, -16.924861907958928 ], [ -72.197639465331974, -16.924583435058537 ], [ -72.196250915527344, -16.924583435058537 ], [ -72.196250915527344, -16.924861907958928 ], [ -72.195693969726562, -16.924861907958928 ], [ -72.195693969726562, -16.924583435058537 ], [ -72.195518493652287, -16.924583435058537 ], [ -72.195137023925724, -16.924583435058537 ], [ -72.195137023925724, -16.92430305480957 ], [ -72.194580078124943, -16.92430305480957 ], [ -72.194580078124943, -16.924028396606445 ], [ -72.194305419921818, -16.924028396606445 ], [ -72.194305419921818, -16.923749923706055 ], [ -72.194580078124943, -16.923749923706055 ], [ -72.194580078124943, -16.923471450805607 ], [ -72.195968627929688, -16.923471450805607 ], [ -72.195968627929688, -16.923194885253906 ], [ -72.196250915527344, -16.923194885253906 ], [ -72.196250915527344, -16.922639846801701 ], [ -72.195968627929688, -16.922637939453125 ], [ -72.195968627929688, -16.922361373901254 ], [ -72.196250915527344, -16.922361373901254 ], [ -72.196250915527344, -16.921806335449162 ], [ -72.196525573730469, -16.921806335449162 ], [ -72.196525573730469, -16.921527862548771 ], [ -72.196807861328125, -16.921527862548771 ], [ -72.196807861328125, -16.921249389648381 ], [ -72.19708251953125, -16.921249389648381 ], [ -72.19708251953125, -16.92097282409668 ], [ -72.197364807128793, -16.92097282409668 ], [ -72.197364807128793, -16.920694351196289 ], [ -72.197914123535099, -16.920694351196289 ], [ -72.197914123535099, -16.920415878295842 ], [ -72.199859619140625, -16.920415878295842 ], [ -72.199859619140625, -16.920139312744141 ], [ -72.200141906738281, -16.920139312744141 ], [ -72.200141906738281, -16.919862747192326 ], [ -72.200691223144474, -16.919862747192326 ], [ -72.200691223144474, -16.919584274291935 ], [ -72.201248168945256, -16.919582366943359 ], [ -72.201248168945256, -16.918472290039006 ], [ -72.201530456542912, -16.918472290039006 ], [ -72.201530456542912, -16.917640686035043 ], [ -72.201248168945256, -16.917640686035043 ], [ -72.201248168945256, -16.916486740112305 ], [ -72.201248168945256, -16.916250228881779 ], [ -72.200973510742131, -16.916250228881779 ], [ -72.200973510742131, -16.915920257568246 ], [ -72.200973510742131, -16.915695190429631 ], [ -72.200691223144474, -16.915695190429631 ], [ -72.200691223144474, -16.91541862487793 ], [ -72.200973510742131, -16.91541862487793 ], [ -72.200973510742131, -16.915136337280273 ], [ -72.201805114746094, -16.915136337280273 ], [ -72.201805114746094, -16.91541862487793 ], [ -72.202079772949219, -16.91541862487793 ], [ -72.202079772949219, -16.915695190429631 ], [ -72.202362060546875, -16.915695190429631 ], [ -72.202362060546875, -16.915971755981332 ], [ -72.20263671875, -16.915971755981332 ], [ -72.20263671875, -16.916250228881779 ], [ -72.203193664550781, -16.916250228881779 ], [ -72.203193664550781, -16.915971755981332 ], [ -72.204582214355412, -16.915971755981332 ], [ -72.204582214355412, -16.915695190429631 ], [ -72.205413818359375, -16.915695190429631 ], [ -72.205413818359375, -16.91541862487793 ], [ -72.205696105957031, -16.91541862487793 ], [ -72.205696105957031, -16.914583206176758 ], [ -72.205413818359375, -16.914583206176758 ], [ -72.205413818359375, -16.91402626037592 ], [ -72.20513916015625, -16.91402626037592 ], [ -72.20513916015625, -16.913473129272404 ], [ -72.205413818359375, -16.913473129272404 ], [ -72.205413818359375, -16.913194656372013 ], [ -72.205696105957031, -16.913194656372013 ], [ -72.205696105957031, -16.912914276123047 ], [ -72.206253051757812, -16.912914276123047 ], [ -72.206253051757812, -16.912639617919922 ], [ -72.206527709960938, -16.912639617919922 ], [ -72.206527709960938, -16.912361145019474 ], [ -72.206802368163949, -16.912361145019474 ], [ -72.206802368163949, -16.910139083862248 ], [ -72.205970764160156, -16.910139083862248 ], [ -72.205970764160156, -16.910417556762638 ], [ -72.205696105957031, -16.910417556762638 ], [ -72.205696105957031, -16.910139083862248 ], [ -72.205413818359375, -16.910139083862248 ], [ -72.205413818359375, -16.909860610961857 ], [ -72.205696105957031, -16.909860610961857 ], [ -72.205696105957031, -16.90958213806141 ], [ -72.205970764160156, -16.90958213806141 ], [ -72.205970764160156, -16.908750534057617 ], [ -72.206253051757812, -16.908750534057617 ], [ -72.206253051757812, -16.908472061157227 ], [ -72.206527709960938, -16.908472061157227 ], [ -72.206527709960938, -16.908193588256836 ], [ -72.207084655761662, -16.908193588256836 ], [ -72.207084655761662, -16.907917022705078 ], [ -72.20819091796875, -16.907917022705078 ], [ -72.20819091796875, -16.907638549804688 ], [ -72.208473205566406, -16.907638549804688 ], [ -72.208473205566406, -16.907360076904297 ], [ -72.208747863769531, -16.907360076904297 ], [ -72.208747863769531, -16.907083511352482 ], [ -72.209030151367188, -16.907083511352482 ], [ -72.209030151367188, -16.906805038452092 ], [ -72.209304809570312, -16.906805038452092 ], [ -72.209304809570312, -16.906528472900391 ], [ -72.209861755371094, -16.906528472900391 ], [ -72.209861755371094, -16.906251907348633 ], [ -72.210136413574162, -16.906251907348633 ], [ -72.210136413574162, -16.905971527099553 ], [ -72.210418701171818, -16.905971527099553 ], [ -72.210418701171818, -16.905139923095646 ], [ -72.210693359374943, -16.905139923095646 ], [ -72.210693359374943, -16.904582977294922 ], [ -72.210975646972599, -16.904582977294922 ], [ -72.210975646972599, -16.904029846191406 ], [ -72.211250305175724, -16.904029846191406 ], [ -72.211250305175724, -16.90374755859375 ], [ -72.212081909179688, -16.90374755859375 ], [ -72.212081909179688, -16.903472900390625 ], [ -72.212913513183594, -16.903472900390625 ], [ -72.212913513183594, -16.903194427490234 ], [ -72.215415954589844, -16.903194427490234 ], [ -72.215415954589844, -16.902917861938477 ], [ -72.216247558593636, -16.902917861938477 ], [ -72.216247558593636, -16.902639389038086 ], [ -72.217361450195256, -16.902639389038086 ], [ -72.217361450195256, -16.902360916137695 ], [ -72.218193054199219, -16.902360916137695 ], [ -72.218193054199219, -16.902082443237305 ], [ -72.219024658203125, -16.902082443237305 ], [ -72.219024658203125, -16.90180778503418 ], [ -72.219581604003793, -16.90180778503418 ], [ -72.219581604003793, -16.901525497436523 ], [ -72.219863891601506, -16.901525497436523 ], [ -72.219863891601506, -16.901250839233342 ], [ -72.22125244140625, -16.901250839233342 ], [ -72.22125244140625, -16.900972366332951 ], [ -72.2218017578125, -16.900972366332951 ], [ -72.2218017578125, -16.90069389343256 ], [ -72.222358703613281, -16.90069389343256 ], [ -72.222358703613281, -16.90041542053217 ], [ -72.222640991210938, -16.90041542053217 ], [ -72.222640991210938, -16.900138854980469 ], [ -72.222915649414006, -16.900138854980469 ], [ -72.222915649414006, -16.90041542053217 ], [ -72.223197937011662, -16.90041542053217 ], [ -72.223197937011662, -16.90069389343256 ], [ -72.224861145019531, -16.90069389343256 ], [ -72.224861145019531, -16.90041542053217 ], [ -72.225135803222656, -16.90041542053217 ], [ -72.225135803222656, -16.899860382080078 ], [ -72.225418090820312, -16.899860382080078 ], [ -72.225418090820312, -16.89958381652832 ], [ -72.225692749023438, -16.89958381652832 ], [ -72.225692749023438, -16.899026870727539 ], [ -72.22597503662098, -16.899026870727539 ], [ -72.22597503662098, -16.898471832275277 ], [ -72.226249694824162, -16.898471832275277 ], [ -72.226249694824162, -16.898193359375 ], [ -72.226524353027287, -16.898193359375 ], [ -72.226524353027287, -16.897638320922795 ], [ -72.226806640624943, -16.897638320922795 ], [ -72.226806640624943, -16.897083282470703 ], [ -72.227081298828068, -16.897083282470703 ], [ -72.227081298828068, -16.897361755371094 ], [ -72.227638244628906, -16.897361755371094 ], [ -72.227638244628906, -16.897638320922795 ], [ -72.227912902832031, -16.897638320922795 ], [ -72.227912902832031, -16.897916793823185 ], [ -72.228195190429688, -16.897916793823185 ], [ -72.228195190429688, -16.898193359375 ], [ -72.228469848632812, -16.898193359375 ], [ -72.228469848632812, -16.899026870727539 ], [ -72.228752136230469, -16.899026870727539 ], [ -72.228752136230469, -16.89930534362793 ], [ -72.22902679443348, -16.89930534362793 ], [ -72.22902679443348, -16.89958381652832 ], [ -72.229583740234318, -16.89958381652832 ], [ -72.229583740234318, -16.899860382080078 ], [ -72.229858398437443, -16.899860382080078 ], [ -72.229858398437443, -16.900138854980469 ], [ -72.230140686035099, -16.900138854980469 ], [ -72.230140686035099, -16.90041542053217 ], [ -72.230972290039062, -16.90041542053217 ], [ -72.230972290039062, -16.90069389343256 ], [ -72.231246948242188, -16.90069389343256 ], [ -72.231246948242188, -16.901525497436523 ], [ -72.232360839843636, -16.901525497436523 ], [ -72.232360839843636, -16.901250839233342 ], [ -72.234306335449219, -16.901250839233342 ], [ -72.234306335449219, -16.900138854980469 ], [ -72.234580993652344, -16.900138854980469 ], [ -72.234580993652344, -16.899860382080078 ], [ -72.235420227050781, -16.899860382080078 ], [ -72.235420227050781, -16.89958381652832 ], [ -72.235694885253849, -16.89958381652832 ], [ -72.235694885253849, -16.89930534362793 ], [ -72.236251831054631, -16.89930534362793 ], [ -72.236251831054631, -16.899026870727539 ], [ -72.236526489257756, -16.899026870727539 ], [ -72.236526489257756, -16.898471832275277 ], [ -72.236808776855412, -16.898471832275277 ], [ -72.236808776855412, -16.898193359375 ], [ -72.237083435058594, -16.898193359375 ], [ -72.237083435058594, -16.897916793823185 ], [ -72.237358093261719, -16.897916793823185 ], [ -72.237358093261719, -16.897638320922795 ], [ -72.237640380859375, -16.897638320922795 ], [ -72.237640380859375, -16.897361755371094 ], [ -72.2379150390625, -16.897361755371094 ], [ -72.2379150390625, -16.897083282470703 ], [ -72.238197326660156, -16.897083282470703 ], [ -72.238197326660156, -16.896804809570312 ], [ -72.238471984863281, -16.896804809570312 ], [ -72.238471984863281, -16.895971298217773 ], [ -72.238746643066349, -16.895971298217773 ], [ -72.238746643066349, -16.895694732665959 ], [ -72.239303588867131, -16.895694732665959 ], [ -72.239303588867131, -16.895971298217773 ], [ -72.24041748046875, -16.895971298217773 ], [ -72.24041748046875, -16.895694732665959 ], [ -72.240974426269531, -16.895694732665959 ], [ -72.240974426269531, -16.895416259765511 ], [ -72.241249084472656, -16.895416259765511 ], [ -72.241249084472656, -16.89486122131342 ], [ -72.241531372070312, -16.89486122131342 ], [ -72.241531372070312, -16.894306182861328 ], [ -72.241806030273324, -16.894306182861328 ], [ -72.241806030273324, -16.893194198608398 ], [ -72.242080688476506, -16.893194198608398 ], [ -72.242080688476506, -16.891250610351562 ], [ -72.242362976074162, -16.891250610351562 ], [ -72.242362976074162, -16.890972137451172 ], [ -72.242637634277287, -16.890972137451172 ], [ -72.242637634277287, -16.891250610351562 ], [ -72.243194580078125, -16.891250610351562 ], [ -72.243194580078125, -16.890972137451172 ], [ -72.24346923828125, -16.890972137451172 ], [ -72.24346923828125, -16.890693664550781 ], [ -72.243751525878906, -16.890693664550781 ], [ -72.243751525878906, -16.890417098999023 ], [ -72.244026184082031, -16.890417098999023 ], [ -72.244026184082031, -16.890140533447209 ], [ -72.244308471679688, -16.890140533447209 ], [ -72.244308471679688, -16.889862060546818 ], [ -72.244583129882812, -16.889858245849553 ], [ -72.244583129882812, -16.889583587646428 ], [ -72.244857788085824, -16.889583587646428 ], [ -72.244857788085824, -16.889305114746037 ], [ -72.24514007568348, -16.889305114746037 ], [ -72.24514007568348, -16.889028549194336 ], [ -72.245697021484318, -16.889028549194336 ], [ -72.245697021484318, -16.888748168945312 ], [ -72.246246337890625, -16.888748168945312 ], [ -72.246246337890625, -16.888471603393498 ], [ -72.246528625488281, -16.888471603393498 ], [ -72.246528625488281, -16.888196945190373 ], [ -72.246803283691406, -16.888196945190373 ], [ -72.246803283691406, -16.887636184692326 ], [ -72.247085571289062, -16.887636184692326 ], [ -72.247085571289062, -16.887361526489144 ], [ -72.247642517089844, -16.887361526489144 ], [ -72.247642517089844, -16.886804580688477 ], [ -72.247917175292969, -16.886804580688477 ], [ -72.247917175292969, -16.886526107788086 ], [ -72.248474121093693, -16.886526107788086 ], [ -72.248474121093693, -16.886804580688477 ], [ -72.249305725097599, -16.886804580688477 ], [ -72.249305725097599, -16.886526107788086 ], [ -72.249580383300781, -16.886526107788086 ], [ -72.249580383300781, -16.886249542236271 ], [ -72.250137329101562, -16.886249542236271 ], [ -72.250137329101562, -16.88597297668457 ], [ -72.250694274902344, -16.88597297668457 ], [ -72.250694274902344, -16.88569450378418 ], [ -72.250968933105469, -16.88569450378418 ], [ -72.250968933105469, -16.885414123535156 ], [ -72.251251220703125, -16.885414123535156 ], [ -72.251251220703125, -16.88569450378418 ], [ -72.252082824706974, -16.88569450378418 ], [ -72.252082824706974, -16.88597297668457 ], [ -72.252639770507756, -16.88597297668457 ], [ -72.252639770507756, -16.886249542236271 ], [ -72.253196716308594, -16.886249542236271 ], [ -72.253196716308594, -16.886526107788086 ], [ -72.253471374511719, -16.886526107788086 ], [ -72.253471374511719, -16.887083053588867 ], [ -72.254585266113168, -16.887083053588867 ], [ -72.254585266113168, -16.887361526489144 ], [ -72.254859924316349, -16.887361526489144 ], [ -72.254859924316349, -16.887636184692326 ], [ -72.255142211914006, -16.887636184692326 ], [ -72.255142211914006, -16.887918472289982 ], [ -72.255691528320256, -16.887918472289982 ], [ -72.255691528320256, -16.888196945190373 ], [ -72.255973815917969, -16.888196945190373 ], [ -72.255973815917969, -16.887636184692326 ], [ -72.256248474121094, -16.887636184692326 ], [ -72.256248474121094, -16.887083053588867 ], [ -72.25653076171875, -16.887083053588867 ], [ -72.25653076171875, -16.886804580688477 ], [ -72.257080078125, -16.886804580688477 ], [ -72.257080078125, -16.886526107788086 ], [ -72.257362365722656, -16.886526107788086 ], [ -72.257362365722656, -16.886249542236271 ], [ -72.257637023925668, -16.886249542236271 ], [ -72.257637023925668, -16.88597297668457 ], [ -72.257919311523324, -16.88597297668457 ], [ -72.257919311523324, -16.88569450378418 ], [ -72.258193969726506, -16.88569450378418 ], [ -72.258193969726506, -16.885414123535156 ], [ -72.259025573730469, -16.885414123535156 ], [ -72.259025573730469, -16.88569450378418 ], [ -72.259307861328125, -16.88569450378418 ], [ -72.259307861328125, -16.88597297668457 ], [ -72.259864807128906, -16.88597297668457 ], [ -72.259864807128906, -16.886249542236271 ], [ -72.263748168945312, -16.886249542236271 ], [ -72.263748168945312, -16.88597297668457 ], [ -72.264030456542969, -16.88597297668457 ], [ -72.264030456542969, -16.88569450378418 ], [ -72.264305114746037, -16.88569450378418 ], [ -72.264305114746037, -16.885414123535156 ], [ -72.264579772949162, -16.885414123535156 ], [ -72.264579772949162, -16.885139465332031 ], [ -72.264862060546818, -16.885139465332031 ], [ -72.264862060546818, -16.884860992431641 ], [ -72.265419006347599, -16.884860992431641 ], [ -72.265419006347599, -16.88458251953125 ], [ -72.266525268554688, -16.88458251953125 ], [ -72.266525268554688, -16.884027481079102 ], [ -72.266807556152344, -16.884027481079102 ], [ -72.266807556152344, -16.883472442626896 ], [ -72.267913818359318, -16.883472442626896 ], [ -72.267913818359318, -16.88319206237793 ], [ -72.268470764160099, -16.88319206237793 ], [ -72.268470764160099, -16.882917404174805 ], [ -72.268753051757812, -16.882917404174805 ], [ -72.268753051757812, -16.882638931274414 ], [ -72.269027709960938, -16.882638931274414 ], [ -72.269027709960938, -16.882360458374023 ], [ -72.269302368164062, -16.882360458374023 ], [ -72.269302368164062, -16.881805419921875 ], [ -72.269584655761719, -16.881805419921875 ], [ -72.269584655761719, -16.881526947021484 ], [ -72.269859313964844, -16.881526947021484 ], [ -72.269859313964844, -16.88125038146967 ], [ -72.270416259765511, -16.88125038146967 ], [ -72.270416259765511, -16.880971908569222 ], [ -72.270690917968693, -16.880971908569222 ], [ -72.270690917968693, -16.880695343017521 ], [ -72.271247863769474, -16.880695343017521 ], [ -72.271247863769474, -16.879861831665039 ], [ -72.271530151367131, -16.879861831665039 ], [ -72.271530151367131, -16.879304885864258 ], [ -72.271804809570312, -16.879304885864258 ], [ -72.271804809570312, -16.8790283203125 ], [ -72.272087097167969, -16.8790283203125 ], [ -72.272087097167969, -16.878471374511719 ], [ -72.272361755371094, -16.878471374511719 ], [ -72.272361755371094, -16.878194808959904 ], [ -72.272636413574219, -16.878194808959904 ], [ -72.272636413574219, -16.877639770507812 ], [ -72.272918701171875, -16.877639770507812 ], [ -72.272918701171875, -16.877361297607365 ], [ -72.273193359375, -16.877361297607365 ], [ -72.273193359375, -16.876806259155273 ], [ -72.273475646972656, -16.876806259155273 ], [ -72.273475646972656, -16.875972747802734 ], [ -72.273750305175668, -16.875972747802734 ], [ -72.273750305175668, -16.875694274902344 ], [ -72.274024963378849, -16.875694274902344 ], [ -72.274024963378849, -16.875972747802734 ], [ -72.274307250976506, -16.875972747802734 ], [ -72.274307250976506, -16.876529693603459 ], [ -72.274581909179631, -16.876529693603459 ], [ -72.274581909179631, -16.876806259155273 ], [ -72.274864196777287, -16.876806259155273 ], [ -72.274864196777287, -16.877082824706974 ], [ -72.275138854980469, -16.877082824706974 ], [ -72.275138854980469, -16.876806259155273 ], [ -72.275970458984375, -16.876806259155273 ], [ -72.275970458984375, -16.876529693603459 ], [ -72.276252746582031, -16.876529693603459 ], [ -72.276252746582031, -16.876247406005746 ], [ -72.276527404785156, -16.876247406005746 ], [ -72.276527404785156, -16.875972747802734 ], [ -72.277084350585881, -16.875972747802734 ], [ -72.277084350585881, -16.874307632446289 ], [ -72.277359008789006, -16.874307632446289 ], [ -72.277359008789006, -16.874025344848633 ], [ -72.277641296386662, -16.874025344848633 ], [ -72.277641296386662, -16.874307632446289 ], [ -72.277915954589787, -16.874307632446289 ], [ -72.277915954589787, -16.874860763549748 ], [ -72.278198242187443, -16.874860763549748 ], [ -72.278198242187443, -16.875417709350529 ], [ -72.278472900390625, -16.875417709350529 ], [ -72.278472900390625, -16.875694274902344 ], [ -72.279861450195312, -16.875694274902344 ], [ -72.279861450195312, -16.875417709350529 ], [ -72.280136108398381, -16.875417709350529 ], [ -72.280136108398381, -16.875137329101562 ], [ -72.280418395996037, -16.875137329101562 ], [ -72.280418395996037, -16.874860763549748 ], [ -72.28125, -16.874860763549748 ], [ -72.28125, -16.874584197998047 ], [ -72.282081604003906, -16.874584197998047 ], [ -72.282081604003906, -16.874860763549748 ], [ -72.282638549804688, -16.874860763549748 ], [ -72.282638549804688, -16.875137329101562 ], [ -72.283752441406193, -16.875137329101562 ], [ -72.283752441406193, -16.875417709350529 ], [ -72.284027099609318, -16.875417709350529 ], [ -72.284027099609318, -16.877361297607365 ], [ -72.283752441406193, -16.877361297607365 ], [ -72.283752441406193, -16.878751754760685 ], [ -72.283470153808537, -16.878751754760685 ], [ -72.283470153808537, -16.8790283203125 ], [ -72.283195495605355, -16.8790283203125 ], [ -72.283195495605355, -16.879304885864258 ], [ -72.283752441406193, -16.879304885864258 ], [ -72.283752441406193, -16.88013839721674 ], [ -72.284027099609318, -16.88013839721674 ], [ -72.284027099609318, -16.880416870117131 ], [ -72.284301757812443, -16.880416870117131 ], [ -72.284309387206974, -16.880971908569222 ], [ -72.284858703613281, -16.880971908569222 ], [ -72.284858703613281, -16.88125038146967 ], [ -72.285415649414062, -16.88125038146967 ], [ -72.285415649414062, -16.881526947021484 ], [ -72.285697937011719, -16.881526947021484 ], [ -72.285697937011719, -16.881805419921875 ], [ -72.285972595214844, -16.881805419921875 ], [ -72.285972595214844, -16.882083892822266 ], [ -72.286529541015511, -16.882083892822266 ], [ -72.286529541015511, -16.882360458374023 ], [ -72.286804199218693, -16.882360458374023 ], [ -72.286804199218693, -16.882638931274414 ], [ -72.287361145019474, -16.882638931274414 ], [ -72.287361145019474, -16.882360458374023 ], [ -72.288192749023438, -16.882360458374023 ], [ -72.288192749023438, -16.882083892822266 ], [ -72.288475036621094, -16.882083892822266 ], [ -72.288475036621094, -16.881805419921875 ], [ -72.289024353027344, -16.881805419921875 ], [ -72.289024353027344, -16.881526947021484 ], [ -72.289306640625, -16.881526947021484 ], [ -72.289306640625, -16.88125038146967 ], [ -72.289863586425724, -16.88125038146967 ], [ -72.289863586425724, -16.880971908569222 ], [ -72.290138244628849, -16.880971908569222 ], [ -72.290138244628849, -16.880695343017521 ], [ -72.290412902831974, -16.880695343017521 ], [ -72.290412902831974, -16.880416870117131 ], [ -72.290695190429631, -16.880416870117131 ], [ -72.290695190429631, -16.879861831665039 ], [ -72.290969848632812, -16.879861831665039 ], [ -72.290969848632812, -16.878751754760685 ], [ -72.290695190429631, -16.878751754760685 ], [ -72.290695190429631, -16.878471374511719 ], [ -72.290412902831974, -16.878471374511719 ], [ -72.290412902831974, -16.876529693603459 ], [ -72.289863586425724, -16.876529693603459 ], [ -72.289863586425724, -16.876247406005746 ], [ -72.289306640625, -16.876247406005746 ], [ -72.289306640625, -16.875972747802734 ], [ -72.289024353027344, -16.875972747802734 ], [ -72.289024353027344, -16.875417709350529 ], [ -72.289306640625, -16.875417709350529 ], [ -72.289306640625, -16.874860763549748 ], [ -72.289863586425724, -16.874860763549748 ], [ -72.289863586425724, -16.872638702392578 ], [ -72.290138244628849, -16.872638702392578 ], [ -72.290138244628849, -16.872360229492188 ], [ -72.290412902831974, -16.872360229492188 ], [ -72.290412902831974, -16.871250152587891 ], [ -72.290138244628849, -16.871250152587891 ], [ -72.290138244628849, -16.870693206787053 ], [ -72.290412902831974, -16.870693206787053 ], [ -72.290412902831974, -16.870416641235352 ], [ -72.291252136230469, -16.870416641235352 ], [ -72.291252136230469, -16.870138168334961 ], [ -72.291526794433594, -16.870138168334961 ], [ -72.291526794433594, -16.869304656982422 ], [ -72.29180908203125, -16.869304656982422 ], [ -72.29180908203125, -16.868194580078125 ], [ -72.291526794433594, -16.868194580078125 ], [ -72.291526794433594, -16.867361068725586 ], [ -72.291374206542912, -16.867361068725586 ], [ -72.291252136230469, -16.867361068725586 ], [ -72.291252136230469, -16.867099761962891 ], [ -72.291252136230469, -16.866527557373047 ], [ -72.290969848632812, -16.866527557373047 ], [ -72.290969848632812, -16.866249084472656 ], [ -72.291252136230469, -16.866249084472656 ], [ -72.291252136230469, -16.865972518920842 ], [ -72.292083740234375, -16.865972518920842 ], [ -72.292083740234375, -16.865694046020451 ], [ -72.2923583984375, -16.865694046020451 ], [ -72.2923583984375, -16.865140914916879 ], [ -72.292640686035156, -16.865140914916879 ], [ -72.292640686035156, -16.864860534667969 ], [ -72.2923583984375, -16.864860534667969 ], [ -72.2923583984375, -16.863471984863168 ], [ -72.291854858398381, -16.863471984863168 ], [ -72.291526794433594, -16.863471984863168 ], [ -72.291526794433594, -16.863195419311467 ], [ -72.291252136230469, -16.863193511962891 ], [ -72.291252136230469, -16.862918853759766 ], [ -72.291526794433594, -16.862918853759766 ], [ -72.291526794433594, -16.862636566162109 ], [ -72.292640686035156, -16.862636566162109 ], [ -72.292640686035156, -16.862361907958984 ], [ -72.293197631835881, -16.862361907958984 ], [ -72.293197631835881, -16.861526489257756 ], [ -72.293472290039006, -16.861526489257756 ], [ -72.293472290039006, -16.85847282409668 ], [ -72.293197631835881, -16.85847282409668 ], [ -72.293197631835881, -16.858749389648438 ], [ -72.292640686035156, -16.858749389648438 ], [ -72.292640686035156, -16.859027862548828 ], [ -72.29180908203125, -16.859027862548828 ], [ -72.29180908203125, -16.859304428100529 ], [ -72.291526794433594, -16.859304428100529 ], [ -72.291526794433594, -16.85958290100092 ], [ -72.290969848632812, -16.85958290100092 ], [ -72.290969848632812, -16.85986137390131 ], [ -72.290138244628849, -16.85986137390131 ], [ -72.290138244628849, -16.860137939453125 ], [ -72.289863586425724, -16.860139846801758 ], [ -72.289863586425724, -16.860418319702148 ], [ -72.289581298828011, -16.860418319702148 ], [ -72.289581298828011, -16.860139846801758 ], [ -72.289306640625, -16.860137939453125 ], [ -72.289306640625, -16.85958290100092 ], [ -72.289581298828011, -16.85958290100092 ], [ -72.289581298828011, -16.859304428100529 ], [ -72.290138244628849, -16.859304428100529 ], [ -72.290138244628849, -16.859027862548828 ], [ -72.290969848632812, -16.859027862548828 ], [ -72.290969848632812, -16.858749389648438 ], [ -72.291526794433594, -16.858749389648438 ], [ -72.291526794433594, -16.85847282409668 ], [ -72.29180908203125, -16.85847282409668 ], [ -72.29180908203125, -16.858194351196289 ], [ -72.292640686035156, -16.858194351196289 ], [ -72.292640686035156, -16.857915878295898 ], [ -72.292915344238224, -16.857915878295898 ], [ -72.292915344238224, -16.857639312744084 ], [ -72.293746948242131, -16.857639312744084 ], [ -72.293746948242131, -16.856805801391545 ], [ -72.294029235839787, -16.856805801391545 ], [ -72.294029235839787, -16.856525421142578 ], [ -72.294029235839787, -16.855928421020508 ], [ -72.294029235839787, -16.855760574340763 ], [ -72.294029235839787, -16.855138778686523 ], [ -72.294303894042969, -16.855138778686523 ], [ -72.294303894042969, -16.854860305786133 ], [ -72.294586181640625, -16.854860305786133 ], [ -72.294586181640625, -16.854305267333928 ], [ -72.29486083984375, -16.854305267333928 ], [ -72.29486083984375, -16.853471755981388 ], [ -72.295135498046875, -16.853471755981388 ], [ -72.295135498046875, -16.851804733276367 ], [ -72.295417785644531, -16.851804733276367 ], [ -72.295417785644531, -16.851528167724553 ], [ -72.295692443847656, -16.851528167724553 ], [ -72.295692443847656, -16.850973129272461 ], [ -72.295974731445199, -16.850973129272461 ], [ -72.295974731445199, -16.85069465637207 ], [ -72.297080993652287, -16.85069465637207 ], [ -72.297080993652287, -16.850416183471623 ], [ -72.29736328125, -16.850416183471623 ], [ -72.29736328125, -16.849861145019531 ], [ -72.297637939453125, -16.849861145019531 ], [ -72.297637939453125, -16.847637176513558 ], [ -72.29736328125, -16.847637176513558 ], [ -72.29736328125, -16.846807479858342 ], [ -72.297080993652287, -16.846807479858342 ], [ -72.297080993652287, -16.845972061157113 ], [ -72.296806335449162, -16.845972061157113 ], [ -72.296806335449162, -16.845006942748967 ], [ -72.296806335449162, -16.84375 ], [ -72.296524047851506, -16.84375 ], [ -72.296524047851506, -16.84263801574707 ], [ -72.296249389648381, -16.84263801574707 ], [ -72.296249389648381, -16.842361450195256 ], [ -72.295974731445199, -16.842361450195256 ], [ -72.295974731445199, -16.842081069946289 ], [ -72.295143127441406, -16.842081069946289 ], [ -72.294586181640625, -16.842081069946289 ], [ -72.294586181640625, -16.841934204101562 ], [ -72.294586181640625, -16.841806411743164 ], [ -72.294303894042969, -16.841806411743164 ], [ -72.294303894042969, -16.841249465942383 ], [ -72.294029235839787, -16.841249465942383 ], [ -72.294029235839787, -16.840415954589844 ], [ -72.293746948242131, -16.840415954589844 ], [ -72.293746948242131, -16.840139389038029 ], [ -72.294029235839787, -16.840139389038029 ], [ -72.294029235839787, -16.839582443237191 ], [ -72.294303894042969, -16.839582443237191 ], [ -72.294303894042969, -16.83930587768549 ], [ -72.294586181640625, -16.83930587768549 ], [ -72.294586181640625, -16.838193893432617 ], [ -72.29486083984375, -16.838193893432617 ], [ -72.29486083984375, -16.837640762329045 ], [ -72.294303894042969, -16.837640762329045 ], [ -72.294303894042969, -16.837360382080078 ], [ -72.294029235839787, -16.837360382080078 ], [ -72.294029235839787, -16.837083816528263 ], [ -72.294303894042969, -16.837083816528263 ], [ -72.294303894042969, -16.836805343627873 ], [ -72.294586181640625, -16.836805343627873 ], [ -72.294586181640625, -16.836528778076172 ], [ -72.29486083984375, -16.836528778076172 ], [ -72.29486083984375, -16.835136413574162 ], [ -72.295135498046875, -16.835136413574162 ], [ -72.295135498046875, -16.834304809570312 ], [ -72.295417785644531, -16.834304809570312 ], [ -72.295417785644531, -16.833471298217717 ], [ -72.295135498046875, -16.833471298217717 ], [ -72.295135498046875, -16.832361221313477 ], [ -72.295417785644531, -16.832361221313477 ], [ -72.295417785644531, -16.831804275512695 ], [ -72.295692443847656, -16.831804275512695 ], [ -72.295692443847656, -16.831527709960938 ], [ -72.295974731445199, -16.831527709960938 ], [ -72.295974731445199, -16.831249237060547 ], [ -72.296249389648381, -16.831249237060547 ], [ -72.296249389648381, -16.830972671508732 ], [ -72.296524047851506, -16.830972671508732 ], [ -72.296524047851506, -16.830694198608342 ], [ -72.296806335449162, -16.830694198608342 ], [ -72.296806335449162, -16.83013916015625 ], [ -72.297080993652287, -16.83013916015625 ], [ -72.297080993652287, -16.829582214355412 ], [ -72.29736328125, -16.829582214355412 ], [ -72.29736328125, -16.82902717590332 ], [ -72.297080993652287, -16.82902717590332 ], [ -72.297080993652287, -16.828750610351506 ], [ -72.296806335449162, -16.828750610351506 ], [ -72.296806335449162, -16.828472137451058 ], [ -72.295692443847656, -16.828472137451058 ], [ -72.295692443847656, -16.828193664550781 ], [ -72.295417785644531, -16.828193664550781 ], [ -72.295417785644531, -16.827917098998967 ], [ -72.295692443847656, -16.827917098998967 ], [ -72.295692443847656, -16.827638626098576 ], [ -72.295974731445199, -16.827638626098576 ], [ -72.295974731445199, -16.826816558837834 ], [ -72.295974731445199, -16.82569503784174 ], [ -72.296249389648381, -16.82569503784174 ], [ -72.296249389648381, -16.825416564941293 ], [ -72.296806335449162, -16.825416564941293 ], [ -72.296806335449162, -16.825138092041016 ], [ -72.29736328125, -16.825138092041016 ], [ -72.29736328125, -16.825416564941293 ], [ -72.297637939453125, -16.825416564941293 ], [ -72.297637939453125, -16.825548171997013 ], [ -72.297637939453125, -16.82628059387207 ], [ -72.297637939453125, -16.827083587646484 ], [ -72.297920227050781, -16.827083587646484 ], [ -72.297920227050781, -16.827360153198185 ], [ -72.299583435058537, -16.827360153198185 ], [ -72.299583435058537, -16.827083587646484 ], [ -72.299858093261662, -16.827083587646484 ], [ -72.299858093261662, -16.826805114746094 ], [ -72.300140380859318, -16.826805114746094 ], [ -72.300140380859318, -16.826528549194336 ], [ -72.3004150390625, -16.826528549194336 ], [ -72.3004150390625, -16.825971603393555 ], [ -72.300697326660156, -16.825971603393555 ], [ -72.300697326660156, -16.82569503784174 ], [ -72.300971984863281, -16.82569503784174 ], [ -72.300971984863281, -16.825416564941293 ], [ -72.301246643066406, -16.825416564941293 ], [ -72.301246643066406, -16.825138092041016 ], [ -72.301528930664062, -16.825138092041016 ], [ -72.301528930664062, -16.824861526489201 ], [ -72.301803588867188, -16.824861526489201 ], [ -72.301803588867188, -16.82458305358881 ], [ -72.302360534667855, -16.82458305358881 ], [ -72.302360534667855, -16.824029922485295 ], [ -72.302635192871037, -16.824029922485295 ], [ -72.302635192871037, -16.823749542236328 ], [ -72.302917480468693, -16.823749542236328 ], [ -72.302917480468693, -16.82347297668457 ], [ -72.303192138671818, -16.82347297668457 ], [ -72.303192138671818, -16.82319450378418 ], [ -72.303474426269474, -16.82319450378418 ], [ -72.303474426269474, -16.822917938232365 ], [ -72.304031372070312, -16.822917938232365 ], [ -72.304031372070312, -16.822639465331974 ], [ -72.304306030273438, -16.822639465331974 ], [ -72.304306030273438, -16.822360992431584 ], [ -72.304580688476562, -16.822360992431584 ], [ -72.304580688476562, -16.822082519531136 ], [ -72.304862976074219, -16.822082519531136 ], [ -72.304862976074219, -16.821807861328125 ], [ -72.305137634277344, -16.821807861328125 ], [ -72.305137634277344, -16.822082519531136 ], [ -72.305419921875, -16.822082519531136 ], [ -72.305419921875, -16.821525573730469 ], [ -72.305694580078068, -16.821525573730469 ], [ -72.305694580078068, -16.821250915527344 ], [ -72.306251525878849, -16.821250915527344 ], [ -72.306251525878849, -16.820972442626953 ], [ -72.305969238281193, -16.820972442626953 ], [ -72.305969238281193, -16.820138931274414 ], [ -72.305694580078068, -16.820138931274414 ], [ -72.305694580078068, -16.819860458374023 ], [ -72.305419921875, -16.819860458374023 ], [ -72.305419921875, -16.819585800170898 ], [ -72.305694580078068, -16.819585800170898 ], [ -72.305694580078068, -16.819305419921818 ], [ -72.306526184081974, -16.819305419921818 ], [ -72.306526184081974, -16.819585800170898 ], [ -72.306808471679631, -16.819585800170898 ], [ -72.306808471679631, -16.819305419921818 ], [ -72.307083129882812, -16.819305419921818 ], [ -72.307083129882812, -16.819026947021371 ], [ -72.307640075683594, -16.819026947021371 ], [ -72.307640075683594, -16.818750381469727 ], [ -72.307914733886719, -16.818750381469727 ], [ -72.307914733886719, -16.818471908569279 ], [ -72.3084716796875, -16.818471908569279 ], [ -72.3084716796875, -16.817361831664925 ], [ -72.308746337890568, -16.817361831664925 ], [ -72.308746337890568, -16.816528320312443 ], [ -72.309028625488224, -16.816528320312443 ], [ -72.309028625488224, -16.816249847412053 ], [ -72.31097412109375, -16.816249847412053 ], [ -72.31097412109375, -16.816528320312443 ], [ -72.311248779296875, -16.816528320312443 ], [ -72.311248779296875, -16.816249847412053 ], [ -72.311805725097543, -16.816249847412053 ], [ -72.311805725097543, -16.815694808959961 ], [ -72.311531066894531, -16.815694808959961 ], [ -72.311531066894531, -16.815416336059513 ], [ -72.311805725097543, -16.815416336059513 ], [ -72.311805725097543, -16.815139770507812 ], [ -72.312080383300724, -16.815139770507812 ], [ -72.312080383300724, -16.814861297607422 ], [ -72.312362670898381, -16.814861297607422 ], [ -72.312362670898381, -16.814582824707031 ], [ -72.312919616699162, -16.814582824707031 ], [ -72.312919616699162, -16.814027786254883 ], [ -72.313194274902344, -16.814027786254883 ], [ -72.313194274902344, -16.811527252197266 ], [ -72.312919616699162, -16.811527252197266 ], [ -72.312919616699162, -16.810972213745004 ], [ -72.312362670898381, -16.810972213745004 ], [ -72.312362670898381, -16.810417175292912 ], [ -72.311805725097543, -16.810417175292912 ], [ -72.311805725097543, -16.810274124145451 ], [ -72.311805725097543, -16.809858322143555 ], [ -72.311531066894531, -16.809858322143555 ], [ -72.311531066894531, -16.80958366394043 ], [ -72.311805725097543, -16.80958366394043 ], [ -72.311805725097543, -16.809305191040039 ], [ -72.312080383300724, -16.809305191040039 ], [ -72.312080383300724, -16.809028625488281 ], [ -72.312362670898381, -16.809028625488281 ], [ -72.312362670898381, -16.808750152587891 ], [ -72.312080383300724, -16.808750152587891 ], [ -72.312080383300724, -16.808195114135685 ], [ -72.312362670898381, -16.808195114135685 ], [ -72.312362670898381, -16.807918548583984 ], [ -72.312080383300724, -16.807918548583984 ], [ -72.312080383300724, -16.807636260986328 ], [ -72.312362670898381, -16.807636260986328 ], [ -72.312362670898381, -16.807361602783146 ], [ -72.312919616699162, -16.807361602783146 ], [ -72.312919616699162, -16.807083129882756 ], [ -72.313194274902344, -16.807083129882756 ], [ -72.313194274902344, -16.806804656982365 ], [ -72.313468933105469, -16.806804656982365 ], [ -72.313468933105469, -16.806526184081974 ], [ -72.313751220703125, -16.806526184081974 ], [ -72.313751220703125, -16.806249618530273 ], [ -72.31402587890625, -16.806249618530273 ], [ -72.31402587890625, -16.805694580078125 ], [ -72.314308166503906, -16.805694580078125 ], [ -72.314308166503906, -16.805414199829045 ], [ -72.314582824707031, -16.805414199829045 ], [ -72.314582824707031, -16.804861068725529 ], [ -72.314857482910043, -16.804861068725529 ], [ -72.314857482910043, -16.804304122924805 ], [ -72.315139770507699, -16.804304122924805 ], [ -72.315139770507699, -16.80402755737299 ], [ -72.315414428710881, -16.80402755737299 ], [ -72.315414428710881, -16.804304122924805 ], [ -72.315696716308537, -16.804304122924805 ], [ -72.315696716308537, -16.804582595825082 ], [ -72.316253662109318, -16.804582595825082 ], [ -72.316253662109318, -16.804861068725529 ], [ -72.317916870117188, -16.804861068725529 ], [ -72.317916870117188, -16.804582595825082 ], [ -72.318191528320199, -16.804582595825082 ], [ -72.318191528320199, -16.804304122924805 ], [ -72.318473815917912, -16.804304122924805 ], [ -72.318473815917912, -16.80402755737299 ], [ -72.318748474121037, -16.80402755737299 ], [ -72.318748474121037, -16.803749084472599 ], [ -72.319030761718693, -16.803749084472599 ], [ -72.319030761718693, -16.803472518920898 ], [ -72.319305419921818, -16.803472518920898 ], [ -72.319305419921818, -16.803192138671818 ], [ -72.319862365722656, -16.803192138671818 ], [ -72.319862365722656, -16.803472518920898 ], [ -72.320419311523438, -16.803472518920898 ], [ -72.320419311523438, -16.803749084472599 ], [ -72.320693969726562, -16.803749084472599 ], [ -72.320693969726562, -16.804582595825082 ], [ -72.320419311523438, -16.804582595825082 ], [ -72.320419311523438, -16.80513954162592 ], [ -72.320968627929688, -16.80513954162592 ], [ -72.320968627929688, -16.805414199829045 ], [ -72.321250915527344, -16.805414199829045 ], [ -72.321250915527344, -16.80513954162592 ], [ -72.321525573730412, -16.80513954162592 ], [ -72.321525573730412, -16.804304122924805 ], [ -72.321807861328068, -16.804304122924805 ], [ -72.321807861328068, -16.80402755737299 ], [ -72.322914123535156, -16.80402755737299 ], [ -72.322914123535156, -16.803192138671818 ], [ -72.323196411132812, -16.803192138671818 ], [ -72.323196411132812, -16.80291748046875 ], [ -72.323471069335938, -16.80291748046875 ], [ -72.323471069335938, -16.802639007568359 ], [ -72.324028015136719, -16.802639007568359 ], [ -72.324028015136719, -16.80291748046875 ], [ -72.324302673339844, -16.80291748046875 ], [ -72.324302673339844, -16.803472518920898 ], [ -72.324028015136719, -16.803472518920898 ], [ -72.324028015136719, -16.80402755737299 ], [ -72.323753356933594, -16.80402755737299 ], [ -72.323753356933594, -16.804304122924805 ], [ -72.323471069335938, -16.804304122924805 ], [ -72.323471069335938, -16.804582595825082 ], [ -72.323196411132812, -16.804582595825082 ], [ -72.323196411132812, -16.80513954162592 ], [ -72.323471069335938, -16.80513954162592 ], [ -72.323471069335938, -16.805414199829045 ], [ -72.323753356933594, -16.805414199829045 ], [ -72.323753356933594, -16.805694580078125 ], [ -72.325141906738224, -16.805694580078125 ], [ -72.325141906738224, -16.805414199829045 ], [ -72.325691223144474, -16.805414199829045 ], [ -72.325691223144474, -16.80513954162592 ], [ -72.326248168945312, -16.80513954162592 ], [ -72.326248168945312, -16.804861068725529 ], [ -72.326530456542969, -16.804861068725529 ], [ -72.326530456542969, -16.80513954162592 ], [ -72.327362060546875, -16.80513954162592 ], [ -72.327362060546875, -16.804304122924805 ], [ -72.327636718749886, -16.804304122924805 ], [ -72.327636718749886, -16.80402755737299 ], [ -72.327919006347543, -16.80402755737299 ], [ -72.327919006347543, -16.803749084472599 ], [ -72.328193664550724, -16.803749084472599 ], [ -72.328193664550724, -16.803192138671818 ], [ -72.328475952148381, -16.803192138671818 ], [ -72.328475952148381, -16.802360534667969 ], [ -72.328750610351506, -16.802360534667969 ], [ -72.328750610351506, -16.801805496215763 ], [ -72.328475952148381, -16.801805496215763 ], [ -72.328475952148381, -16.800973892211914 ], [ -72.328750610351506, -16.800973892211914 ], [ -72.328750610351506, -16.800693511962834 ], [ -72.329582214355469, -16.800693511962834 ], [ -72.329582214355469, -16.800416946411133 ], [ -72.329864501953125, -16.800416946411133 ], [ -72.329864501953125, -16.799861907958871 ], [ -72.33013916015625, -16.799861907958871 ], [ -72.33013916015625, -16.799583435058594 ], [ -72.330413818359375, -16.799583435058594 ], [ -72.330413818359375, -16.798751831054688 ], [ -72.330696105957031, -16.798751831054688 ], [ -72.330696105957031, -16.796806335449105 ], [ -72.330970764160043, -16.796806335449105 ], [ -72.330970764160043, -16.796529769897461 ], [ -72.331527709960881, -16.796529769897461 ], [ -72.331527709960881, -16.795972824096623 ], [ -72.331802368164006, -16.795972824096623 ], [ -72.331802368164006, -16.795694351196232 ], [ -72.332916259765625, -16.795694351196232 ], [ -72.332916259765625, -16.795417785644531 ], [ -72.33319091796875, -16.795417785644531 ], [ -72.33319091796875, -16.79486083984375 ], [ -72.333473205566406, -16.79486083984375 ], [ -72.333473205566406, -16.794307708740178 ], [ -72.333747863769531, -16.794307708740178 ], [ -72.333747863769531, -16.794025421142521 ], [ -72.334030151367188, -16.794025421142521 ], [ -72.334030151367188, -16.793472290038949 ], [ -72.334304809570256, -16.793472290038949 ], [ -72.334304809570256, -16.793193817138672 ], [ -72.334030151367188, -16.793193817138672 ], [ -72.334030151367188, -16.792638778686467 ], [ -72.3326416015625, -16.792638778686467 ], [ -72.3326416015625, -16.792360305786076 ], [ -72.332359313964844, -16.792360305786076 ], [ -72.332359313964844, -16.791803359985238 ], [ -72.3326416015625, -16.791803359985238 ], [ -72.3326416015625, -16.791528701782227 ], [ -72.331802368164006, -16.791528701782227 ], [ -72.331802368164006, -16.791250228881836 ], [ -72.331527709960881, -16.791250228881836 ], [ -72.331527709960881, -16.790693283081055 ], [ -72.331802368164006, -16.790693283081055 ], [ -72.331802368164006, -16.790416717529183 ], [ -72.333473205566406, -16.790416717529183 ], [ -72.333473205566406, -16.790138244628906 ], [ -72.334304809570256, -16.790138244628906 ], [ -72.334304809570256, -16.789861679077092 ], [ -72.334587097167912, -16.789861679077092 ], [ -72.334587097167912, -16.789583206176701 ], [ -72.334861755371037, -16.789583206176701 ], [ -72.334861755371037, -16.78930473327631 ], [ -72.335136413574162, -16.78930473327631 ], [ -72.335136413574162, -16.789028167724609 ], [ -72.335418701171818, -16.789028167724609 ], [ -72.335418701171818, -16.788749694824219 ], [ -72.335693359375, -16.788749694824219 ], [ -72.335693359375, -16.788471221923828 ], [ -72.335975646972656, -16.788471221923828 ], [ -72.335975646972656, -16.787639617919865 ], [ -72.335693359375, -16.787639617919865 ], [ -72.335693359375, -16.786806106567326 ], [ -72.335975646972656, -16.786806106567326 ], [ -72.335975646972656, -16.786527633666935 ], [ -72.336250305175781, -16.786527633666935 ], [ -72.336250305175781, -16.786249160766545 ], [ -72.336524963378906, -16.786249160766545 ], [ -72.336524963378906, -16.785972595214844 ], [ -72.337081909179688, -16.785972595214844 ], [ -72.337081909179688, -16.786249160766545 ], [ -72.338470458984318, -16.786249160766545 ], [ -72.338470458984318, -16.785972595214844 ], [ -72.339027404785156, -16.785972595214844 ], [ -72.339027404785156, -16.785694122314453 ], [ -72.339584350585938, -16.785694122314453 ], [ -72.339584350585938, -16.785417556762695 ], [ -72.339859008789062, -16.785417556762695 ], [ -72.339859008789062, -16.785139083862305 ], [ -72.340141296386719, -16.785139083862305 ], [ -72.340141296386719, -16.784584045410099 ], [ -72.34041595458973, -16.784584045410099 ], [ -72.34041595458973, -16.784305572509709 ], [ -72.342086791992188, -16.784305572509709 ], [ -72.342086791992188, -16.784027099609261 ], [ -72.343475341796875, -16.784027099609261 ], [ -72.343475341796875, -16.783193588256779 ], [ -72.343749999999886, -16.783193588256779 ], [ -72.343749999999886, -16.782361984252816 ], [ -72.344024658203068, -16.782361984252816 ], [ -72.344024658203068, -16.781806945800724 ], [ -72.343749999999886, -16.781806945800724 ], [ -72.343749999999886, -16.781528472900334 ], [ -72.343475341796875, -16.781528472900334 ], [ -72.343475341796875, -16.781248092651367 ], [ -72.343749999999886, -16.781248092651367 ], [ -72.343749999999886, -16.780971527099553 ], [ -72.344306945800724, -16.780971527099553 ], [ -72.344306945800724, -16.780696868896484 ], [ -72.344863891601506, -16.780696868896484 ], [ -72.344863891601506, -16.780418395996094 ], [ -72.345138549804688, -16.780418395996094 ], [ -72.345138549804688, -16.780136108398438 ], [ -72.34625244140625, -16.780136108398438 ], [ -72.34625244140625, -16.779861450195312 ], [ -72.347084045410099, -16.779861450195312 ], [ -72.347084045410099, -16.779027938842773 ], [ -72.346801757812386, -16.779027938842773 ], [ -72.346801757812386, -16.778472900390568 ], [ -72.347084045410099, -16.778472900390568 ], [ -72.347084045410099, -16.777914047241211 ], [ -72.347358703613224, -16.777914047241211 ], [ -72.347358703613224, -16.777639389038086 ], [ -72.347640991210881, -16.777639389038086 ], [ -72.347640991210881, -16.777360916137695 ], [ -72.347915649414006, -16.777360916137695 ], [ -72.347915649414006, -16.777082443237248 ], [ -72.348197937011662, -16.777082443237248 ], [ -72.348197937011662, -16.776250839233342 ], [ -72.348472595214844, -16.776250839233342 ], [ -72.348472595214844, -16.775972366332894 ], [ -72.348197937011662, -16.775972366332894 ], [ -72.348197937011662, -16.775693893432617 ], [ -72.347915649414006, -16.775693893432617 ], [ -72.347915649414006, -16.775417327880803 ], [ -72.347640991210881, -16.775417327880803 ], [ -72.347640991210881, -16.775138854980412 ], [ -72.347358703613224, -16.775138854980412 ], [ -72.347358703613224, -16.77458381652832 ], [ -72.347084045410099, -16.77458381652832 ], [ -72.347084045410099, -16.774208068847543 ], [ -72.347084045410099, -16.773750305175781 ], [ -72.347358703613224, -16.773750305175781 ], [ -72.347358703613224, -16.773471832275391 ], [ -72.347915649414006, -16.773471832275391 ], [ -72.347915649414006, -16.773195266723576 ], [ -72.350135803222599, -16.773195266723576 ], [ -72.350135803222599, -16.773471832275391 ], [ -72.351524353027344, -16.773471832275391 ], [ -72.351524353027344, -16.772361755371037 ], [ -72.351806640625, -16.772361755371037 ], [ -72.351806640625, -16.772083282470646 ], [ -72.352363586425781, -16.772083282470646 ], [ -72.352363586425781, -16.771804809570256 ], [ -72.352638244628906, -16.771804809570256 ], [ -72.352638244628906, -16.771528244018555 ], [ -72.352912902832031, -16.771528244018555 ], [ -72.352912902832031, -16.771249771118164 ], [ -72.353195190429574, -16.771249771118164 ], [ -72.353195190429574, -16.770971298217773 ], [ -72.353469848632756, -16.770971298217773 ], [ -72.353469848632756, -16.770694732666016 ], [ -72.354309082031193, -16.770694732666016 ], [ -72.354309082031193, -16.769582748412972 ], [ -72.354583740234375, -16.769582748412972 ], [ -72.354583740234375, -16.769306182861271 ], [ -72.3548583984375, -16.769306182861271 ], [ -72.3548583984375, -16.76902961730957 ], [ -72.355140686035156, -16.76902961730957 ], [ -72.355140686035156, -16.768472671508789 ], [ -72.355415344238281, -16.768472671508789 ], [ -72.355415344238281, -16.768194198608398 ], [ -72.35652923583973, -16.768194198608398 ], [ -72.35652923583973, -16.768472671508789 ], [ -72.357086181640568, -16.768472671508789 ], [ -72.357086181640568, -16.768194198608398 ], [ -72.357635498046875, -16.768194198608398 ], [ -72.357635498046875, -16.767917633056641 ], [ -72.357917785644531, -16.767917633056641 ], [ -72.357917785644531, -16.767084121704045 ], [ -72.358192443847656, -16.767084121704045 ], [ -72.358192443847656, -16.766525268554688 ], [ -72.358749389648438, -16.766525268554688 ], [ -72.358749389648438, -16.766250610351562 ], [ -72.359024047851562, -16.766250610351562 ], [ -72.359024047851562, -16.765693664550724 ], [ -72.35958099365223, -16.765693664550724 ], [ -72.35958099365223, -16.765415191650334 ], [ -72.359863281249943, -16.765415191650334 ], [ -72.359863281249943, -16.765138626098633 ], [ -72.360420227050724, -16.765138626098633 ], [ -72.360420227050724, -16.764862060546761 ], [ -72.360969543457031, -16.764860153198242 ], [ -72.360969543457031, -16.764583587646484 ], [ -72.361251831054688, -16.764583587646484 ], [ -72.361251831054688, -16.764303207397404 ], [ -72.361808776855469, -16.764303207397404 ], [ -72.361808776855469, -16.764028549194279 ], [ -72.362083435058594, -16.764028549194279 ], [ -72.362083435058594, -16.763471603393498 ], [ -72.362640380859375, -16.763471603393498 ], [ -72.362640380859375, -16.76319313049305 ], [ -72.363197326660099, -16.76319313049305 ], [ -72.363197326660099, -16.762916564941349 ], [ -72.363471984863224, -16.762916564941349 ], [ -72.363471984863224, -16.762361526489258 ], [ -72.364028930664006, -16.762361526489258 ], [ -72.364028930664006, -16.761806488036996 ], [ -72.364303588867188, -16.761804580688477 ], [ -72.364303588867188, -16.761528015136719 ], [ -72.364585876464844, -16.761528015136719 ], [ -72.364585876464844, -16.760139465332031 ], [ -72.364303588867188, -16.760139465332031 ], [ -72.364303588867188, -16.759998321533089 ], [ -72.364303588867188, -16.759582519531193 ], [ -72.364860534667969, -16.759582519531193 ], [ -72.364860534667969, -16.759305953979492 ], [ -72.365135192871094, -16.759305953979492 ], [ -72.365135192871094, -16.759027481079102 ], [ -72.36541748046875, -16.759027481079102 ], [ -72.36541748046875, -16.759305953979492 ], [ -72.365974426269418, -16.759305953979492 ], [ -72.365974426269418, -16.759582519531193 ], [ -72.366249084472599, -16.759582519531193 ], [ -72.366249084472599, -16.759862899780273 ], [ -72.366531372070256, -16.759862899780273 ], [ -72.366531372070256, -16.760694503784123 ], [ -72.366806030273381, -16.760694503784123 ], [ -72.366806030273381, -16.760971069335938 ], [ -72.367080688476506, -16.760971069335938 ], [ -72.367080688476506, -16.761249542236328 ], [ -72.367362976074219, -16.761249542236328 ], [ -72.367362976074219, -16.761528015136719 ], [ -72.367637634277344, -16.761528015136719 ], [ -72.367637634277344, -16.761804580688477 ], [ -72.367919921875, -16.761806488036996 ], [ -72.367919921875, -16.762081146240178 ], [ -72.368194580078125, -16.762081146240178 ], [ -72.368194580078125, -16.762361526489258 ], [ -72.36846923828125, -16.762361526489258 ], [ -72.36846923828125, -16.762638092040959 ], [ -72.370697021484375, -16.762638092040959 ], [ -72.370697021484375, -16.762916564941349 ], [ -72.371246337890625, -16.762916564941349 ], [ -72.371246337890625, -16.76319313049305 ], [ -72.372085571289062, -16.76319313049305 ], [ -72.372085571289062, -16.762916564941349 ], [ -72.372360229492074, -16.762916564941349 ], [ -72.372360229492074, -16.762638092040959 ], [ -72.372917175292912, -16.762638092040959 ], [ -72.372917175292912, -16.762361526489258 ], [ -72.373191833496037, -16.762361526489258 ], [ -72.373191833496037, -16.762081146240178 ], [ -72.373474121093693, -16.762081146240178 ], [ -72.373474121093693, -16.761806488036996 ], [ -72.374031066894531, -16.761804580688477 ], [ -72.374031066894531, -16.761528015136719 ], [ -72.374580383300781, -16.761528015136719 ], [ -72.374580383300781, -16.761249542236328 ], [ -72.374862670898438, -16.761249542236328 ], [ -72.374862670898438, -16.760971069335938 ], [ -72.375137329101562, -16.760971069335938 ], [ -72.375137329101562, -16.760416030883732 ], [ -72.375419616699219, -16.760416030883732 ], [ -72.375419616699219, -16.759027481079102 ], [ -72.375137329101562, -16.759027481079102 ], [ -72.375137329101562, -16.758750915527287 ], [ -72.375419616699219, -16.758750915527287 ], [ -72.375419616699219, -16.758472442626839 ], [ -72.375137329101562, -16.758472442626839 ], [ -72.375137329101562, -16.757640838623047 ], [ -72.374862670898438, -16.757640838623047 ], [ -72.374862670898438, -16.757385253906193 ], [ -72.374862670898438, -16.757083892822266 ], [ -72.374755859375, -16.757083892822266 ], [ -72.374580383300781, -16.757083892822266 ], [ -72.374580383300781, -16.756805419921875 ], [ -72.374305725097656, -16.756805419921875 ], [ -72.374305725097656, -16.756578445434513 ], [ -72.374305725097656, -16.756250381469727 ], [ -72.374031066894531, -16.756250381469727 ], [ -72.374031066894531, -16.75541877746582 ], [ -72.373748779296875, -16.75541877746582 ], [ -72.373748779296875, -16.755058288574219 ], [ -72.373748779296875, -16.753749847412109 ], [ -72.374031066894531, -16.753749847412109 ], [ -72.374031066894531, -16.752639770507756 ], [ -72.374305725097656, -16.752639770507756 ], [ -72.374305725097656, -16.751861572265568 ], [ -72.374305725097656, -16.751527786254826 ], [ -72.374580383300781, -16.751527786254826 ], [ -72.374580383300781, -16.751249313354435 ], [ -72.374862670898438, -16.751249313354435 ], [ -72.374862670898438, -16.750972747802734 ], [ -72.375137329101562, -16.750972747802734 ], [ -72.375137329101562, -16.750694274902344 ], [ -72.375694274902287, -16.750694274902344 ], [ -72.375694274902287, -16.751752853393555 ], [ -72.375694274902287, -16.752906799316349 ], [ -72.375694274902287, -16.753471374511719 ], [ -72.375968933105412, -16.753471374511719 ], [ -72.375968933105412, -16.75402641296381 ], [ -72.376251220703068, -16.75402641296381 ], [ -72.376251220703068, -16.754306793212891 ], [ -72.376525878906193, -16.754306793212891 ], [ -72.376525878906193, -16.754583358764592 ], [ -72.377082824707031, -16.754583358764592 ], [ -72.377082824707031, -16.754861831664982 ], [ -72.377639770507812, -16.754861831664982 ], [ -72.377639770507812, -16.755136489868164 ], [ -72.377914428710938, -16.755136489868164 ], [ -72.377914428710938, -16.75541877746582 ], [ -72.378471374511719, -16.75541877746582 ], [ -72.378471374511719, -16.755695343017521 ], [ -72.379585266113224, -16.755695343017521 ], [ -72.379585266113224, -16.755971908569336 ], [ -72.380416870117188, -16.755971908569336 ], [ -72.380416870117188, -16.756250381469727 ], [ -72.381248474121094, -16.756250381469727 ], [ -72.381248474121094, -16.755971908569336 ], [ -72.381805419921761, -16.755971908569336 ], [ -72.381805419921761, -16.756250381469727 ], [ -72.382637023925724, -16.756250381469727 ], [ -72.382637023925724, -16.755971908569336 ], [ -72.384307861328125, -16.755971908569336 ], [ -72.384307861328125, -16.755695343017521 ], [ -72.384864807128906, -16.755695343017521 ], [ -72.384864807128906, -16.75541877746582 ], [ -72.385139465331918, -16.75541877746582 ], [ -72.385139465331918, -16.755136489868164 ], [ -72.385414123535099, -16.755136489868164 ], [ -72.385414123535099, -16.754861831664982 ], [ -72.385139465331918, -16.754861831664982 ], [ -72.385139465331918, -16.753471374511719 ], [ -72.385414123535099, -16.753471374511719 ], [ -72.385414123535099, -16.752639770507756 ], [ -72.385696411132756, -16.752639770507756 ], [ -72.385696411132756, -16.752361297607365 ], [ -72.385971069335881, -16.752361297607365 ], [ -72.385971069335881, -16.752082824706918 ], [ -72.3870849609375, -16.752082824706918 ], [ -72.3870849609375, -16.751249313354435 ], [ -72.387359619140625, -16.751249313354435 ], [ -72.387359619140625, -16.750415802001953 ], [ -72.388748168945256, -16.750415802001953 ], [ -72.388748168945256, -16.750694274902344 ], [ -72.389305114746037, -16.750694274902344 ], [ -72.389305114746037, -16.750972747802734 ], [ -72.390693664550781, -16.750972747802734 ], [ -72.390693664550781, -16.751249313354435 ], [ -72.391525268554631, -16.751249313354435 ], [ -72.391525268554631, -16.751527786254826 ], [ -72.392913818359375, -16.751527786254826 ], [ -72.392913818359375, -16.752082824706918 ], [ -72.394584655761605, -16.752082824706918 ], [ -72.394584655761605, -16.753196716308537 ], [ -72.394859313964787, -16.753196716308537 ], [ -72.394859313964787, -16.753471374511719 ], [ -72.395416259765568, -16.753471374511719 ], [ -72.395416259765568, -16.753749847412109 ], [ -72.395690917968693, -16.753749847412109 ], [ -72.395690917968693, -16.753471374511719 ], [ -72.396530151367188, -16.753471374511719 ], [ -72.396530151367188, -16.753196716308537 ], [ -72.396804809570312, -16.753196716308537 ], [ -72.396804809570312, -16.753471374511719 ], [ -72.397087097167969, -16.753471374511719 ], [ -72.397087097167969, -16.753196716308537 ], [ -72.398750305175724, -16.753196716308537 ], [ -72.398750305175724, -16.752914428710881 ], [ -72.399307250976562, -16.752914428710881 ], [ -72.399307250976562, -16.752639770507756 ], [ -72.399864196777344, -16.752639770507756 ], [ -72.399864196777344, -16.752361297607365 ], [ -72.400138854980469, -16.752361297607365 ], [ -72.400138854980469, -16.752082824706918 ], [ -72.400413513183594, -16.752082824706918 ], [ -72.400413513183594, -16.751804351806641 ], [ -72.400970458984261, -16.751804351806641 ], [ -72.400970458984261, -16.751527786254826 ], [ -72.401252746581974, -16.751527786254826 ], [ -72.401252746581974, -16.751249313354435 ], [ -72.401527404785099, -16.751249313354435 ], [ -72.401527404785099, -16.750694274902344 ], [ -72.401802062988224, -16.750694274902344 ], [ -72.401802062988224, -16.749582290649414 ], [ -72.402084350585881, -16.749582290649414 ], [ -72.402084350585881, -16.749305725097599 ], [ -72.402359008789062, -16.749305725097599 ], [ -72.402359008789062, -16.749027252197152 ], [ -72.402641296386719, -16.749027252197152 ], [ -72.402641296386719, -16.748039245605412 ], [ -72.402641296386719, -16.747638702392578 ], [ -72.402915954589844, -16.747638702392578 ], [ -72.402915954589844, -16.747360229492188 ], [ -72.403472900390625, -16.747360229492188 ], [ -72.403472900390625, -16.74708366394043 ], [ -72.40374755859375, -16.74708366394043 ], [ -72.40374755859375, -16.746528625488224 ], [ -72.404029846191406, -16.746528625488224 ], [ -72.404029846191406, -16.746250152587834 ], [ -72.404304504394474, -16.746250152587834 ], [ -72.404304504394474, -16.745971679687443 ], [ -72.404861450195256, -16.745971679687443 ], [ -72.404861450195256, -16.745695114135742 ], [ -72.405136108398381, -16.745695114135742 ], [ -72.405136108398381, -16.744304656982422 ], [ -72.404861450195256, -16.744304656982422 ], [ -72.404861450195256, -16.742361068725586 ], [ -72.404586791992131, -16.742361068725586 ], [ -72.404586791992131, -16.741807937622013 ], [ -72.404861450195256, -16.741807937622013 ], [ -72.404861450195256, -16.740695953369084 ], [ -72.405136108398381, -16.740695953369084 ], [ -72.405136108398381, -16.740415573120117 ], [ -72.405418395996037, -16.740415573120117 ], [ -72.405418395996037, -16.740137100219727 ], [ -72.405975341796875, -16.740137100219727 ], [ -72.405975341796875, -16.739860534667912 ], [ -72.40625, -16.739860534667912 ], [ -72.40625, -16.73958587646473 ], [ -72.406806945800781, -16.73958587646473 ], [ -72.406806945800781, -16.739307403564453 ], [ -72.407081604003906, -16.739307403564453 ], [ -72.407081604003906, -16.739025115966797 ], [ -72.407913208007756, -16.739025115966797 ], [ -72.407913208007756, -16.738750457763672 ], [ -72.408470153808537, -16.738750457763672 ], [ -72.408470153808537, -16.738471984863281 ], [ -72.40875244140625, -16.738471984863281 ], [ -72.40875244140625, -16.738193511962891 ], [ -72.409027099609375, -16.738193511962891 ], [ -72.409027099609375, -16.737916946411019 ], [ -72.409858703613281, -16.737916946411019 ], [ -72.409858703613281, -16.737638473510742 ], [ -72.410140991210938, -16.737638473510742 ], [ -72.410140991210938, -16.737361907958928 ], [ -72.410972595214787, -16.737361907958928 ], [ -72.410972595214787, -16.737083435058537 ], [ -72.41180419921875, -16.737083435058537 ], [ -72.41180419921875, -16.73680305480957 ], [ -72.413192749023438, -16.73680305480957 ], [ -72.413192749023438, -16.737361907958928 ], [ -72.414581298828068, -16.737361907958928 ], [ -72.414581298828068, -16.737638473510742 ], [ -72.415969848632812, -16.737638473510742 ], [ -72.415969848632812, -16.737361907958928 ], [ -72.416526794433594, -16.737361907958928 ], [ -72.416526794433594, -16.737083435058537 ], [ -72.41680908203125, -16.737083435058537 ], [ -72.41680908203125, -16.73680305480957 ], [ -72.417358398437443, -16.73680305480957 ], [ -72.417358398437443, -16.736528396606445 ], [ -72.417640686035099, -16.736528396606445 ], [ -72.417640686035099, -16.735416412353516 ], [ -72.417358398437443, -16.735416412353516 ], [ -72.417358398437443, -16.734582901000863 ], [ -72.417640686035099, -16.734582901000863 ], [ -72.417640686035099, -16.734306335449162 ], [ -72.417915344238224, -16.734306335449162 ], [ -72.417915344238224, -16.734027862548771 ], [ -72.418197631835881, -16.734027862548771 ], [ -72.418197631835881, -16.733749389648381 ], [ -72.418746948242188, -16.733749389648381 ], [ -72.418746948242188, -16.73347282409668 ], [ -72.419029235839844, -16.73347282409668 ], [ -72.419029235839844, -16.733194351196289 ], [ -72.419303894042969, -16.733194351196289 ], [ -72.419303894042969, -16.732915878295898 ], [ -72.419586181640625, -16.732915878295898 ], [ -72.419586181640625, -16.732639312744141 ], [ -72.41986083984375, -16.732639312744141 ], [ -72.41986083984375, -16.730140686035099 ], [ -72.420135498046818, -16.730140686035099 ], [ -72.420135498046818, -16.729860305786133 ], [ -72.41986083984375, -16.729860305786133 ], [ -72.41986083984375, -16.72902870178217 ], [ -72.419586181640625, -16.72902870178217 ], [ -72.419586181640625, -16.728750228881779 ], [ -72.41986083984375, -16.728750228881779 ], [ -72.41986083984375, -16.728195190429688 ], [ -72.420135498046818, -16.728195190429688 ], [ -72.420135498046818, -16.72791862487793 ], [ -72.420417785644474, -16.72791862487793 ], [ -72.420417785644474, -16.727636337280273 ], [ -72.420692443847599, -16.727636337280273 ], [ -72.420692443847599, -16.726804733276367 ], [ -72.420974731445256, -16.726804733276367 ], [ -72.420974731445256, -16.726526260375977 ], [ -72.421249389648381, -16.726526260375977 ], [ -72.421249389648381, -16.726158142089844 ], [ -72.421249389648381, -16.725973129272404 ], [ -72.420974731445256, -16.725973129272404 ], [ -72.420974731445256, -16.725696563720703 ], [ -72.420692443847599, -16.725696563720703 ], [ -72.420692443847599, -16.725414276123047 ], [ -72.420417785644474, -16.725414276123047 ], [ -72.420417785644474, -16.725139617919922 ], [ -72.420135498046818, -16.725139617919922 ], [ -72.420135498046818, -16.724861145019531 ], [ -72.420417785644474, -16.724861145019531 ], [ -72.420417785644474, -16.724582672119084 ], [ -72.420692443847599, -16.724582672119084 ], [ -72.420692443847599, -16.724304199218693 ], [ -72.421524047851562, -16.724304199218693 ], [ -72.421524047851562, -16.724582672119084 ], [ -72.421806335449219, -16.724582672119084 ], [ -72.421806335449219, -16.724861145019531 ], [ -72.422790527343693, -16.724861145019531 ], [ -72.423194885253793, -16.724861145019531 ], [ -72.423194885253793, -16.724582672119084 ], [ -72.424308776855412, -16.724582672119084 ], [ -72.424308776855412, -16.724304199218693 ], [ -72.424583435058594, -16.724304199218693 ], [ -72.424583435058594, -16.724027633666992 ], [ -72.424858093261719, -16.724027633666992 ], [ -72.424858093261719, -16.723749160766602 ], [ -72.425140380859375, -16.723749160766602 ], [ -72.425140380859375, -16.72347259521473 ], [ -72.4254150390625, -16.72347259521473 ], [ -72.4254150390625, -16.72319221496582 ], [ -72.425971984863281, -16.72319221496582 ], [ -72.425971984863281, -16.722917556762638 ], [ -72.426528930663949, -16.722917556762638 ], [ -72.426528930663949, -16.722639083862248 ], [ -72.426803588867131, -16.722639083862248 ], [ -72.426803588867131, -16.722360610961857 ], [ -72.427360534667912, -16.722360610961857 ], [ -72.427360534667912, -16.722082138061467 ], [ -72.427635192871094, -16.722082138061467 ], [ -72.427635192871094, -16.721805572509766 ], [ -72.42791748046875, -16.721805572509766 ], [ -72.42791748046875, -16.721527099609318 ], [ -72.428474426269531, -16.721527099609318 ], [ -72.428474426269531, -16.721250534057617 ], [ -72.428749084472656, -16.721250534057617 ], [ -72.428749084472656, -16.720972061157227 ], [ -72.429031372070312, -16.720972061157227 ], [ -72.429031372070312, -16.720693588256836 ], [ -72.430419921874943, -16.720693588256836 ], [ -72.430419921874943, -16.720972061157227 ], [ -72.430694580078068, -16.720972061157227 ], [ -72.430694580078068, -16.720693588256836 ], [ -72.431251525878906, -16.720693588256836 ], [ -72.431251525878906, -16.720972061157227 ], [ -72.431526184082031, -16.720972061157227 ], [ -72.431526184082031, -16.720693588256836 ], [ -72.432357788085938, -16.720693588256836 ], [ -72.432357788085938, -16.720138549804688 ], [ -72.432640075683594, -16.720138549804688 ], [ -72.432640075683594, -16.719860076904297 ], [ -72.432914733886662, -16.719860076904297 ], [ -72.432914733886662, -16.719583511352482 ], [ -72.434028625488224, -16.719583511352482 ], [ -72.434028625488224, -16.719305038452092 ], [ -72.434303283691406, -16.719305038452092 ], [ -72.434303283691406, -16.719028472900391 ], [ -72.434585571289062, -16.719028472900391 ], [ -72.434585571289062, -16.718471527099609 ], [ -72.434303283691406, -16.718471527099609 ], [ -72.434303283691406, -16.717937469482308 ], [ -72.434303283691406, -16.717082977294808 ], [ -72.434585571289062, -16.717082977294808 ], [ -72.434585571289062, -16.716806411743107 ], [ -72.434860229492188, -16.716806411743107 ], [ -72.434860229492188, -16.717082977294808 ], [ -72.435142517089844, -16.717082977294808 ], [ -72.435142517089844, -16.717639923095646 ], [ -72.435417175292969, -16.717639923095646 ], [ -72.435417175292969, -16.718471527099609 ], [ -72.435691833496094, -16.718471527099609 ], [ -72.435691833496094, -16.718751907348519 ], [ -72.436248779296818, -16.718751907348519 ], [ -72.436248779296818, -16.719028472900391 ], [ -72.436531066894474, -16.719028472900391 ], [ -72.436531066894474, -16.719305038452092 ], [ -72.437080383300724, -16.719305038452092 ], [ -72.437080383300724, -16.719028472900391 ], [ -72.437362670898438, -16.719028472900391 ], [ -72.437362670898438, -16.718751907348519 ], [ -72.437919616699219, -16.718751907348519 ], [ -72.437919616699219, -16.718471527099609 ], [ -72.438194274902344, -16.718471527099609 ], [ -72.438194274902344, -16.714860916137695 ], [ -72.437919616699219, -16.714860916137695 ], [ -72.437919616699219, -16.714582443237305 ], [ -72.438194274902344, -16.714582443237305 ], [ -72.438194274902344, -16.71430778503418 ], [ -72.439025878906136, -16.71430778503418 ], [ -72.439025878906136, -16.714025497436523 ], [ -72.439308166503793, -16.714025497436523 ], [ -72.439308166503793, -16.713750839233398 ], [ -72.439857482910099, -16.713750839233398 ], [ -72.439857482910099, -16.713472366332951 ], [ -72.440414428710938, -16.713472366332951 ], [ -72.440414428710938, -16.71319389343256 ], [ -72.440971374511719, -16.71319389343256 ], [ -72.440971374511719, -16.71291542053217 ], [ -72.441253662109375, -16.71291542053217 ], [ -72.441253662109375, -16.712638854980469 ], [ -72.4415283203125, -16.712638854980469 ], [ -72.4415283203125, -16.712360382080078 ], [ -72.442085266113281, -16.712360382080078 ], [ -72.442085266113281, -16.712085723876896 ], [ -72.442642211914006, -16.712085723876896 ], [ -72.442642211914006, -16.71180343627924 ], [ -72.443191528320256, -16.71180343627924 ], [ -72.443191528320256, -16.711526870727539 ], [ -72.443473815917912, -16.711526870727539 ], [ -72.443473815917912, -16.711250305175724 ], [ -72.443748474121094, -16.711250305175724 ], [ -72.443748474121094, -16.710971832275334 ], [ -72.44403076171875, -16.710971832275334 ], [ -72.44403076171875, -16.710693359374886 ], [ -72.444862365722656, -16.710693359374886 ], [ -72.444862365722656, -16.710416793823185 ], [ -72.445137023925781, -16.710416793823185 ], [ -72.445137023925781, -16.710138320922795 ], [ -72.445419311523438, -16.710138320922795 ], [ -72.445419311523438, -16.709861755371094 ], [ -72.445968627929631, -16.709861755371094 ], [ -72.445968627929631, -16.709304809570312 ], [ -72.446250915527287, -16.709304809570312 ], [ -72.446250915527287, -16.709028244018555 ], [ -72.446525573730412, -16.709028244018555 ], [ -72.446525573730412, -16.708749771118164 ], [ -72.446807861328068, -16.708749771118164 ], [ -72.446807861328068, -16.708471298217773 ], [ -72.44708251953125, -16.708471298217773 ], [ -72.44708251953125, -16.706806182861328 ], [ -72.446807861328068, -16.706806182861328 ], [ -72.446807861328068, -16.705139160156193 ], [ -72.44708251953125, -16.705139160156193 ], [ -72.44708251953125, -16.704860687255803 ], [ -72.447364807128906, -16.704860687255803 ], [ -72.447364807128906, -16.704584121704102 ], [ -72.447639465332031, -16.704584121704102 ], [ -72.447639465332031, -16.704860687255803 ], [ -72.447914123535156, -16.704860687255803 ], [ -72.447914123535156, -16.705694198608398 ], [ -72.44875335693348, -16.705694198608398 ], [ -72.44875335693348, -16.705415725708008 ], [ -72.449028015136662, -16.705415725708008 ], [ -72.449028015136662, -16.705139160156193 ], [ -72.449302673339787, -16.705139160156193 ], [ -72.449302673339787, -16.704860687255803 ], [ -72.450141906738281, -16.704860687255803 ], [ -72.450141906738281, -16.704584121704102 ], [ -72.450416564941406, -16.704584121704102 ], [ -72.450416564941406, -16.704305648803711 ], [ -72.450973510742188, -16.704305648803711 ], [ -72.450973510742188, -16.704027175903263 ], [ -72.453475952148438, -16.704027175903263 ], [ -72.453475952148438, -16.703750610351562 ], [ -72.455139160156136, -16.703750610351562 ], [ -72.455139160156136, -16.703472137451172 ], [ -72.455970764160099, -16.703472137451172 ], [ -72.455970764160099, -16.703193664550781 ], [ -72.456253051757756, -16.703193664550781 ], [ -72.456253051757756, -16.701528549194336 ], [ -72.456527709960938, -16.701528549194336 ], [ -72.456527709960938, -16.700418472289982 ], [ -72.456802368164062, -16.700418472289982 ], [ -72.456802368164062, -16.700136184692326 ], [ -72.4576416015625, -16.700136184692326 ], [ -72.4576416015625, -16.700418472289982 ], [ -72.459587097167912, -16.700418472289982 ], [ -72.459587097167912, -16.700696945190373 ], [ -72.462081909179631, -16.700696945190373 ], [ -72.462081909179631, -16.700971603393555 ], [ -72.46319580078125, -16.700971603393555 ], [ -72.46319580078125, -16.700696945190373 ], [ -72.464027404785156, -16.700696945190373 ], [ -72.464027404785156, -16.700418472289982 ], [ -72.464584350585824, -16.700418472289982 ], [ -72.464584350585824, -16.700136184692326 ], [ -72.465972900390625, -16.700136184692326 ], [ -72.465972900390625, -16.699861526489201 ], [ -72.46875, -16.699861526489201 ], [ -72.46875, -16.699583053588754 ], [ -72.470138549804688, -16.699583053588754 ], [ -72.470138549804688, -16.699304580688477 ], [ -72.473197937011719, -16.699304580688477 ], [ -72.473197937011719, -16.699026107788086 ], [ -72.474586486816349, -16.699026107788086 ], [ -72.474586486816349, -16.698749542236271 ], [ -72.475418090820256, -16.698749542236271 ], [ -72.475418090820256, -16.698474884033146 ], [ -72.476249694824219, -16.698474884033146 ], [ -72.476249694824219, -16.69819450378418 ], [ -72.477081298828125, -16.69819450378418 ], [ -72.477081298828125, -16.697914123535043 ], [ -72.477912902831974, -16.697914123535043 ], [ -72.477912902831974, -16.697639465332031 ], [ -72.478195190429631, -16.697639465332031 ], [ -72.478195190429631, -16.697914123535043 ], [ -72.4798583984375, -16.697914123535043 ], [ -72.4798583984375, -16.697639465332031 ], [ -72.480415344238168, -16.697639465332031 ], [ -72.480415344238168, -16.697360992431641 ], [ -72.480972290039006, -16.697360992431641 ], [ -72.480972290039006, -16.69708251953125 ], [ -72.482086181640625, -16.69708251953125 ], [ -72.482086181640625, -16.696804046630859 ], [ -72.482917785644531, -16.696804046630859 ], [ -72.482917785644531, -16.696527481078988 ], [ -72.483192443847656, -16.696527481078988 ], [ -72.483192443847656, -16.696250915527344 ], [ -72.483749389648324, -16.696250915527344 ], [ -72.483749389648324, -16.695972442626896 ], [ -72.484306335449162, -16.695972442626896 ], [ -72.484306335449162, -16.69569206237793 ], [ -72.485969543457031, -16.69569206237793 ], [ -72.485969543457031, -16.695417404174805 ], [ -72.487640380859318, -16.695417404174805 ], [ -72.487640380859318, -16.695138931274414 ], [ -72.488471984863281, -16.695138931274414 ], [ -72.488471984863281, -16.694860458374023 ], [ -72.489028930664062, -16.694860458374023 ], [ -72.489028930664062, -16.694583892822266 ], [ -72.490417480468693, -16.694583892822266 ], [ -72.490417480468693, -16.694305419921875 ], [ -72.490974426269474, -16.694305419921875 ], [ -72.490974426269474, -16.694026947021484 ], [ -72.491531372070312, -16.694026947021484 ], [ -72.491531372070312, -16.69375038146967 ], [ -72.492919921875, -16.69375038146967 ], [ -72.492919921875, -16.693471908569279 ], [ -72.493751525878849, -16.693471908569279 ], [ -72.493751525878849, -16.693195343017578 ], [ -72.494583129882812, -16.693195343017578 ], [ -72.494583129882812, -16.692916870117131 ], [ -72.495414733886719, -16.692916870117131 ], [ -72.495414733886719, -16.69263839721674 ], [ -72.496246337890511, -16.69263839721674 ], [ -72.496246337890511, -16.692361831665039 ], [ -72.497360229492131, -16.692361831665039 ], [ -72.497360229492131, -16.692083358764648 ], [ -72.497917175292969, -16.692083358764648 ], [ -72.497917175292969, -16.691804885864258 ], [ -72.498748779296875, -16.691804885864258 ], [ -72.498748779296875, -16.6915283203125 ], [ -72.499305725097656, -16.6915283203125 ], [ -72.499305725097656, -16.691251754760685 ], [ -72.499580383300668, -16.691251754760685 ], [ -72.499580383300668, -16.6915283203125 ], [ -72.50152587890625, -16.6915283203125 ], [ -72.50152587890625, -16.691251754760685 ], [ -72.502082824707031, -16.691251754760685 ], [ -72.502082824707031, -16.690971374511719 ], [ -72.502914428710881, -16.690971374511719 ], [ -72.502914428710881, -16.690694808959904 ], [ -72.503471374511662, -16.690694808959904 ], [ -72.503471374511662, -16.690416336059513 ], [ -72.504302978515625, -16.690416336059513 ], [ -72.504302978515625, -16.690139770507812 ], [ -72.504859924316406, -16.690139770507812 ], [ -72.504859924316406, -16.689861297607422 ], [ -72.506530761718693, -16.689861297607422 ], [ -72.506530761718693, -16.689582824706974 ], [ -72.507362365722656, -16.689582824706974 ], [ -72.507362365722656, -16.689306259155273 ], [ -72.508468627929688, -16.689306259155273 ], [ -72.508468627929688, -16.689029693603459 ], [ -72.509864807128849, -16.689029693603459 ], [ -72.509864807128849, -16.688747406005803 ], [ -72.510414123535156, -16.688747406005803 ], [ -72.510414123535156, -16.688472747802621 ], [ -72.512359619140511, -16.688472747802621 ], [ -72.512359619140511, -16.688194274902344 ], [ -72.513473510742131, -16.688194274902344 ], [ -72.513473510742131, -16.687917709350529 ], [ -72.515975952148381, -16.687917709350529 ], [ -72.515975952148381, -16.687639236450138 ], [ -72.516807556152287, -16.687639236450138 ], [ -72.516807556152287, -16.687360763549748 ], [ -72.51763916015625, -16.687360763549748 ], [ -72.51763916015625, -16.687084197998047 ], [ -72.518196105957031, -16.687084197998047 ], [ -72.518196105957031, -16.686807632446289 ], [ -72.518470764160156, -16.686807632446289 ], [ -72.518470764160156, -16.686525344848633 ], [ -72.518753051757699, -16.686525344848633 ], [ -72.518753051757699, -16.686250686645508 ], [ -72.520416259765625, -16.686250686645508 ], [ -72.520416259765625, -16.685972213745117 ], [ -72.521530151367188, -16.685972213745117 ], [ -72.521530151367188, -16.685693740844727 ], [ -72.523193359375, -16.685693740844727 ], [ -72.523193359375, -16.685415267944336 ], [ -72.524024963378906, -16.685415267944336 ], [ -72.524024963378906, -16.685138702392578 ], [ -72.524864196777344, -16.685138702392578 ], [ -72.524864196777344, -16.684860229492188 ], [ -72.525695800781193, -16.684860229492188 ], [ -72.525695800781193, -16.684583663940373 ], [ -72.526252746581974, -16.684583663940373 ], [ -72.526252746581974, -16.684303283691406 ], [ -72.527359008789062, -16.684303283691406 ], [ -72.527359008789062, -16.684028625488281 ], [ -72.527915954589844, -16.684028625488281 ], [ -72.527915954589844, -16.683750152587891 ], [ -72.529304504394474, -16.683750152587891 ], [ -72.529304504394474, -16.6834716796875 ], [ -72.530693054199219, -16.6834716796875 ], [ -72.530693054199219, -16.683193206787053 ], [ -72.53125, -16.683193206787053 ], [ -72.53125, -16.682916641235352 ], [ -72.532081604003849, -16.682916641235352 ], [ -72.532081604003849, -16.682638168334961 ], [ -72.533195495605469, -16.682638168334961 ], [ -72.533195495605469, -16.682361602783146 ], [ -72.533470153808594, -16.682361602783146 ], [ -72.533470153808594, -16.68208122253418 ], [ -72.534027099609375, -16.68208122253418 ], [ -72.534027099609375, -16.681804656982422 ], [ -72.535415649414006, -16.681804656982422 ], [ -72.535415649414006, -16.68208122253418 ], [ -72.536529541015625, -16.68208122253418 ], [ -72.536529541015625, -16.681804656982422 ], [ -72.538475036621037, -16.681804656982422 ], [ -72.538475036621037, -16.681528091430607 ], [ -72.538749694824162, -16.681528091430607 ], [ -72.538749694824162, -16.681249618530217 ], [ -72.539306640625, -16.681249618530217 ], [ -72.539306640625, -16.680971145629826 ], [ -72.539581298828125, -16.680971145629826 ], [ -72.539581298828125, -16.680694580078125 ], [ -72.539863586425781, -16.680694580078125 ], [ -72.539863586425781, -16.680416107177734 ], [ -72.541526794433537, -16.680416107177734 ], [ -72.541526794433537, -16.680139541625977 ], [ -72.542915344238281, -16.680139541625977 ], [ -72.542915344238281, -16.679861068725586 ], [ -72.543746948242188, -16.679861068725586 ], [ -72.543746948242188, -16.679582595825195 ], [ -72.545135498046818, -16.679582595825195 ], [ -72.545135498046818, -16.679306030273381 ], [ -72.546806335449219, -16.679306030273381 ], [ -72.546806335449219, -16.679027557372933 ], [ -72.548194885253849, -16.679027557372933 ], [ -72.548194885253849, -16.678749084472656 ], [ -72.550140380859375, -16.678749084472656 ], [ -72.550140380859375, -16.678472518920842 ], [ -72.551803588867188, -16.678472518920842 ], [ -72.551803588867188, -16.678194046020451 ], [ -72.552635192871094, -16.678194046020451 ], [ -72.552635192871094, -16.67791748046875 ], [ -72.553192138671875, -16.67791748046875 ], [ -72.553192138671875, -16.677640914916935 ], [ -72.554580688476506, -16.677640914916935 ], [ -72.554580688476506, -16.677360534667969 ], [ -72.555694580078125, -16.677360534667969 ], [ -72.555694580078125, -16.677083969116211 ], [ -72.556526184082031, -16.677083969116211 ], [ -72.556526184082031, -16.67680549621582 ], [ -72.558746337890625, -16.67680549621582 ], [ -72.558746337890625, -16.676528930664006 ], [ -72.559860229492188, -16.676528930664006 ], [ -72.559860229492188, -16.676250457763615 ], [ -72.560691833496037, -16.676250457763615 ], [ -72.560691833496037, -16.675971984863224 ], [ -72.562080383300781, -16.675971984863224 ], [ -72.562080383300781, -16.675693511962777 ], [ -72.56319427490223, -16.675693511962777 ], [ -72.56319427490223, -16.675971984863224 ], [ -72.563468933105412, -16.675971984863224 ], [ -72.563468933105412, -16.676250457763615 ], [ -72.564308166503849, -16.676250457763615 ], [ -72.564308166503849, -16.675971984863224 ], [ -72.564582824707031, -16.675971984863224 ], [ -72.564582824707031, -16.675693511962777 ], [ -72.564857482910156, -16.675693511962777 ], [ -72.564857482910156, -16.675418853759766 ], [ -72.565414428710938, -16.675418853759766 ], [ -72.565414428710938, -16.675136566162109 ], [ -72.566528320312386, -16.675136566162109 ], [ -72.566528320312386, -16.674861907958984 ], [ -72.566802978515568, -16.674861907958984 ], [ -72.566802978515568, -16.674583435058594 ], [ -72.567642211914006, -16.674583435058594 ], [ -72.567642211914006, -16.674306869506722 ], [ -72.567916870117188, -16.674306869506722 ], [ -72.567916870117188, -16.674028396606445 ], [ -72.56903076171875, -16.674028396606445 ], [ -72.56903076171875, -16.673749923706055 ], [ -72.570419311523381, -16.673749923706055 ], [ -72.570419311523381, -16.673471450805664 ], [ -72.571250915527344, -16.673471450805664 ], [ -72.571250915527344, -16.673749923706055 ], [ -72.571525573730469, -16.673749923706055 ], [ -72.571525573730469, -16.674028396606445 ], [ -72.571807861328125, -16.674028396606445 ], [ -72.571807861328125, -16.674306869506722 ], [ -72.574028015136662, -16.674306869506722 ], [ -72.574028015136662, -16.674028396606445 ], [ -72.575141906738281, -16.674028396606445 ], [ -72.575141906738281, -16.673749923706055 ], [ -72.575691223144531, -16.673749923706055 ], [ -72.575691223144531, -16.673471450805664 ], [ -72.576530456542912, -16.673471450805664 ], [ -72.576530456542912, -16.673196792602539 ], [ -72.576805114746037, -16.673196792602539 ], [ -72.576805114746037, -16.672914505004883 ], [ -72.577362060546875, -16.672914505004883 ], [ -72.577362060546875, -16.672637939453011 ], [ -72.57763671875, -16.672637939453011 ], [ -72.57763671875, -16.672361373901367 ], [ -72.578193664550781, -16.672361373901367 ], [ -72.578193664550781, -16.67208290100092 ], [ -72.578750610351562, -16.67208290100092 ], [ -72.578750610351562, -16.671804428100529 ], [ -72.579582214355412, -16.671804428100529 ], [ -72.579582214355412, -16.671527862548828 ], [ -72.580413818359375, -16.671527862548828 ], [ -72.580413818359375, -16.671249389648438 ], [ -72.58235931396473, -16.671249389648438 ], [ -72.58235931396473, -16.670974731445312 ], [ -72.586524963378849, -16.670974731445312 ], [ -72.586524963378849, -16.670694351196289 ], [ -72.587913513183594, -16.670694351196289 ], [ -72.587913513183594, -16.670415878295898 ], [ -72.58819580078125, -16.670415878295898 ], [ -72.58819580078125, -16.670139312744084 ], [ -72.588752746581918, -16.670139312744084 ], [ -72.588752746581918, -16.669860839843693 ], [ -72.589584350585881, -16.669860839843693 ], [ -72.589584350585881, -16.669582366943303 ], [ -72.590141296386719, -16.669582366943303 ], [ -72.590141296386719, -16.669305801391602 ], [ -72.592086791992074, -16.669305801391602 ], [ -72.592086791992074, -16.669027328491154 ], [ -72.594306945800781, -16.669027328491154 ], [ -72.594306945800781, -16.668750762939453 ], [ -72.595970153808537, -16.668750762939453 ], [ -72.595970153808537, -16.668472290039062 ], [ -72.597084045410156, -16.668472290039062 ], [ -72.597084045410156, -16.668193817138672 ], [ -72.597915649414062, -16.668193817138672 ], [ -72.597915649414062, -16.6679172515868 ], [ -72.599029541015568, -16.6679172515868 ], [ -72.599029541015568, -16.667638778686523 ], [ -72.599861145019531, -16.667638778686523 ], [ -72.599861145019531, -16.667360305786133 ], [ -72.600135803222656, -16.667360305786133 ], [ -72.600135803222656, -16.667083740234318 ], [ -72.600692749023438, -16.667083740234318 ], [ -72.600692749023438, -16.666805267333928 ], [ -72.601524353027287, -16.666805267333928 ], [ -72.601524353027287, -16.666528701782227 ], [ -72.602363586425724, -16.666528701782227 ], [ -72.602363586425724, -16.666250228881836 ], [ -72.603195190429688, -16.666250228881836 ], [ -72.603195190429688, -16.665971755981445 ], [ -72.604583740234261, -16.665971755981445 ], [ -72.604583740234261, -16.665695190429688 ], [ -72.606246948242188, -16.665695190429688 ], [ -72.606246948242188, -16.665416717529297 ], [ -72.60736083984375, -16.665416717529297 ], [ -72.60736083984375, -16.665138244628906 ], [ -72.612640380859375, -16.665138244628906 ], [ -72.612640380859375, -16.664861679077092 ], [ -72.612922668457031, -16.664861679077092 ], [ -72.613746643066406, -16.664861679077092 ], [ -72.613746643066406, -16.664583206176644 ], [ -72.616249084472656, -16.664583206176644 ], [ -72.616249084472656, -16.664304733276367 ], [ -72.617362976074105, -16.664304733276367 ], [ -72.617362976074105, -16.664028167724553 ], [ -72.618194580078068, -16.664028167724553 ], [ -72.618194580078068, -16.663749694824162 ], [ -72.619308471679688, -16.663749694824162 ], [ -72.619308471679688, -16.663473129272461 ], [ -72.622917175292969, -16.663473129272461 ], [ -72.622917175292969, -16.66319465637207 ], [ -72.626251220703125, -16.66319465637207 ], [ -72.626251220703125, -16.66291618347168 ], [ -72.627357482910099, -16.66291618347168 ], [ -72.627357482910099, -16.662639617919922 ], [ -72.6290283203125, -16.662639617919922 ], [ -72.6290283203125, -16.662361145019531 ], [ -72.630416870117131, -16.662361145019531 ], [ -72.630416870117131, -16.662082672119141 ], [ -72.632080078125, -16.662082672119141 ], [ -72.632080078125, -16.661806106567326 ], [ -72.632919311523438, -16.661806106567326 ], [ -72.632919311523438, -16.661529541015625 ], [ -72.634864807128906, -16.661529541015625 ], [ -72.634864807128906, -16.661247253417969 ], [ -72.635414123535156, -16.661247253417969 ], [ -72.635414123535156, -16.660972595214787 ], [ -72.635971069335938, -16.660972595214787 ], [ -72.635971069335938, -16.660818099975586 ], [ -72.635971069335938, -16.660694122314396 ], [ -72.637641906738224, -16.660694122314396 ], [ -72.637641906738224, -16.660417556762695 ], [ -72.641525268554688, -16.660417556762695 ], [ -72.641525268554688, -16.660137176513615 ], [ -72.643363952636662, -16.660137176513615 ], [ -72.644859313964844, -16.660137176513615 ], [ -72.644859313964844, -16.659860610961914 ], [ -72.646247863769474, -16.659860610961914 ], [ -72.646247863769474, -16.659759521484318 ], [ -72.646247863769474, -16.659585952758732 ], [ -72.648193359375, -16.659585952758732 ], [ -72.648193359375, -16.659307479858342 ], [ -72.649993896484375, -16.659307479858342 ], [ -72.650413513183594, -16.659307479858342 ], [ -72.650413513183594, -16.659025192260685 ], [ -72.651679992675724, -16.659025192260685 ], [ -72.652359008788949, -16.659025192260685 ], [ -72.652359008788949, -16.658914566040039 ], [ -72.652359008788949, -16.65875053405756 ], [ -72.657157897949219, -16.65875053405756 ], [ -72.657363891601562, -16.65875053405756 ], [ -72.657363891601562, -16.65847206115717 ], [ -72.660972595214844, -16.65847206115717 ], [ -72.660972595214844, -16.658193588256722 ], [ -72.662918090820256, -16.658193588256722 ], [ -72.662918090820256, -16.657915115356445 ], [ -72.666252136230412, -16.657915115356445 ], [ -72.666252136230412, -16.657638549804631 ], [ -72.670417785644531, -16.657638549804631 ], [ -72.670417785644531, -16.657363891601506 ], [ -72.671806335449162, -16.657363891601506 ], [ -72.671806335449162, -16.657083511352539 ], [ -72.673469543457031, -16.657083511352539 ], [ -72.673469543457031, -16.656803131103459 ], [ -72.674858093261662, -16.656803131103459 ], [ -72.674858093261662, -16.656528472900391 ], [ -72.676803588867188, -16.656528472900391 ], [ -72.676803588867188, -16.65625 ], [ -72.679031372070256, -16.65625 ], [ -72.679031372070256, -16.655971527099609 ], [ -72.680969238281136, -16.655971527099609 ], [ -72.680969238281136, -16.655693054199219 ], [ -72.682640075683594, -16.655693054199219 ], [ -72.682640075683594, -16.655416488647404 ], [ -72.684028625488281, -16.655416488647404 ], [ -72.684028625488281, -16.655138015746957 ], [ -72.687080383300781, -16.655138015746957 ], [ -72.687080383300781, -16.654861450195312 ], [ -72.689308166503906, -16.654861450195312 ], [ -72.689308166503906, -16.654581069946289 ], [ -72.690490722656193, -16.654581069946289 ], [ -72.691253662109318, -16.654581069946289 ], [ -72.691253662109318, -16.654415130615178 ], [ -72.691253662109318, -16.654306411743164 ], [ -72.691757202148438, -16.654306411743164 ], [ -72.692916870117188, -16.654306411743164 ], [ -72.692916870117188, -16.6541748046875 ], [ -72.692916870117188, -16.654027938842773 ], [ -72.694580078124943, -16.654027938842773 ], [ -72.694580078124943, -16.653749465942383 ], [ -72.695693969726562, -16.653749465942383 ], [ -72.695693969726562, -16.653472900390511 ], [ -72.699920654296818, -16.653472900390511 ], [ -72.702079772949219, -16.653472900390511 ], [ -72.702079772949219, -16.653194427490234 ], [ -72.703193664550668, -16.653194427490234 ], [ -72.703193664550668, -16.652915954589844 ], [ -72.704864501953125, -16.652915954589844 ], [ -72.704864501953125, -16.652639389038029 ], [ -72.705245971679688, -16.652639389038029 ], [ -72.706802368164006, -16.652639389038029 ], [ -72.706802368164006, -16.652360916137638 ], [ -72.70819091796875, -16.652360916137638 ], [ -72.70819091796875, -16.652082443237248 ], [ -72.709587097167969, -16.652082443237248 ], [ -72.709587097167969, -16.651805877685547 ], [ -72.711006164550724, -16.651805877685547 ], [ -72.711250305175781, -16.651805877685547 ], [ -72.711250305175781, -16.651527404785099 ], [ -72.71173095703125, -16.651527404785099 ], [ -72.712638854980469, -16.651527404785099 ], [ -72.712638854980469, -16.651250839233398 ], [ -72.715415954589844, -16.651250839233398 ], [ -72.715415954589844, -16.650972366333008 ], [ -72.717361450195312, -16.650972366333008 ], [ -72.717361450195312, -16.650693893432617 ], [ -72.718193054199219, -16.650693893432617 ], [ -72.718193054199219, -16.650417327880746 ], [ -72.719306945800668, -16.650417327880746 ], [ -72.719306945800668, -16.650140762329102 ], [ -72.720138549804631, -16.650140762329102 ], [ -72.720138549804631, -16.649860382080078 ], [ -72.720970153808594, -16.649860382080078 ], [ -72.720970153808594, -16.649583816528263 ], [ -72.721527099609375, -16.649583816528263 ], [ -72.721527099609375, -16.649305343627873 ], [ -72.722358703613168, -16.649305343627873 ], [ -72.722358703613168, -16.649028778076172 ], [ -72.722640991210881, -16.649028778076172 ], [ -72.722640991210881, -16.648750305175781 ], [ -72.724029541015625, -16.648750305175781 ], [ -72.724029541015625, -16.648471832275391 ], [ -72.724586486816406, -16.648471832275391 ], [ -72.724586486816406, -16.648195266723633 ], [ -72.725135803222656, -16.648195266723633 ], [ -72.725135803222656, -16.647918701171818 ], [ -72.725692749023381, -16.647918701171818 ], [ -72.725692749023381, -16.647636413574162 ], [ -72.726249694824162, -16.647636413574162 ], [ -72.726249694824162, -16.647354125976506 ], [ -72.726806640624943, -16.647361755371037 ], [ -72.726806640624943, -16.647216796875 ], [ -72.726806640624943, -16.647083282470589 ], [ -72.727256774902344, -16.647083282470589 ], [ -72.727638244628906, -16.647083282470589 ], [ -72.727638244628906, -16.646940231323129 ], [ -72.727638244628906, -16.646806716918888 ], [ -72.727996826171875, -16.646806716918888 ], [ -72.728752136230355, -16.646806716918888 ], [ -72.728752136230355, -16.646526336669922 ], [ -72.729858398437443, -16.646526336669922 ], [ -72.729858398437443, -16.646249771118107 ], [ -72.730415344238281, -16.646249771118107 ], [ -72.730415344238281, -16.645971298217717 ], [ -72.731246948242188, -16.645971298217717 ], [ -72.731246948242188, -16.645696640014535 ], [ -72.732360839843693, -16.645696640014535 ], [ -72.732360839843693, -16.645414352416879 ], [ -72.733192443847656, -16.645414352416879 ], [ -72.733192443847656, -16.645139694213867 ], [ -72.733474731445312, -16.645139694213867 ], [ -72.733474731445312, -16.644861221313477 ], [ -72.733581542968693, -16.644861221313477 ], [ -72.734580993652344, -16.644861221313477 ], [ -72.734580993652344, -16.644582748413086 ], [ -72.735420227050724, -16.644582748413086 ], [ -72.735420227050724, -16.644304275512695 ], [ -72.735694885253849, -16.644304275512695 ], [ -72.735694885253849, -16.644027709960824 ], [ -72.736526489257812, -16.644027709960824 ], [ -72.736526489257812, -16.643749237060547 ], [ -72.737640380859375, -16.643749237060547 ], [ -72.737640380859375, -16.643472671508732 ], [ -72.7379150390625, -16.643472671508732 ], [ -72.7379150390625, -16.643192291259766 ], [ -72.738471984863224, -16.643192291259766 ], [ -72.738471984863224, -16.642915725707951 ], [ -72.739028930664006, -16.642915725707951 ], [ -72.739028930664006, -16.64263916015625 ], [ -72.739860534667969, -16.64263916015625 ], [ -72.739860534667969, -16.642360687255859 ], [ -72.740692138671875, -16.642360687255859 ], [ -72.740692138671875, -16.642082214355469 ], [ -72.742080688476506, -16.642082214355469 ], [ -72.742080688476506, -16.641805648803711 ], [ -72.742637634277287, -16.641805648803711 ], [ -72.742637634277287, -16.64152717590332 ], [ -72.743194580078125, -16.64152717590332 ], [ -72.743194580078125, -16.641250610351506 ], [ -72.743751525878906, -16.641250610351506 ], [ -72.743751525878906, -16.640972137451115 ], [ -72.744583129882699, -16.640972137451115 ], [ -72.744583129882699, -16.640693664550668 ], [ -72.745140075683537, -16.640693664550668 ], [ -72.745140075683537, -16.640417098998967 ], [ -72.7459716796875, -16.640417098998967 ], [ -72.7459716796875, -16.640138626098576 ], [ -72.747085571289062, -16.640138626098576 ], [ -72.747085571289062, -16.639860153198185 ], [ -72.748474121093693, -16.639860153198185 ], [ -72.748474121093693, -16.639583587646484 ], [ -72.749031066894474, -16.639583587646484 ], [ -72.749031066894474, -16.639305114746094 ], [ -72.749580383300781, -16.639305114746094 ], [ -72.749580383300781, -16.639028549194336 ], [ -72.750137329101562, -16.639028549194336 ], [ -72.750137329101562, -16.638750076293945 ], [ -72.750694274902344, -16.638750076293945 ], [ -72.750694274902344, -16.638471603393555 ], [ -72.751251220703068, -16.638471603393555 ], [ -72.751251220703068, -16.63819503784174 ], [ -72.751808166503849, -16.63819503784174 ], [ -72.751808166503849, -16.637916564941349 ], [ -72.752357482910156, -16.637916564941349 ], [ -72.752357482910156, -16.637638092040902 ], [ -72.752639770507812, -16.637638092040902 ], [ -72.752639770507812, -16.637361526489258 ], [ -72.753196716308594, -16.637361526489258 ], [ -72.753196716308594, -16.63708305358881 ], [ -72.753753662109375, -16.63708305358881 ], [ -72.753753662109375, -16.636806488037109 ], [ -72.754302978515568, -16.63680458068842 ], [ -72.754302978515568, -16.636529922485295 ], [ -72.754859924316349, -16.636529922485295 ], [ -72.754859924316349, -16.636249542236328 ], [ -72.755416870117131, -16.636249542236328 ], [ -72.755416870117131, -16.635972976684457 ], [ -72.756362915039062, -16.635972976684457 ], [ -72.75653076171875, -16.635972976684457 ], [ -72.75653076171875, -16.63569450378418 ], [ -72.757179260253906, -16.63569450378418 ], [ -72.757362365722543, -16.63569450378418 ], [ -72.757362365722543, -16.635417938232365 ], [ -72.757637023925724, -16.635417938232365 ], [ -72.757637023925724, -16.635139465331974 ], [ -72.758193969726506, -16.635139465331974 ], [ -72.758193969726506, -16.634860992431584 ], [ -72.758468627929631, -16.634860992431584 ], [ -72.758468627929631, -16.634582519531193 ], [ -72.759307861328125, -16.634582519531193 ], [ -72.759307861328125, -16.634307861328125 ], [ -72.760414123535043, -16.634307861328125 ], [ -72.760414123535043, -16.634025573730469 ], [ -72.761528015136662, -16.634025573730469 ], [ -72.761528015136662, -16.633750915527344 ], [ -72.7620849609375, -16.633750915527344 ], [ -72.7620849609375, -16.633472442626953 ], [ -72.762519836425781, -16.633472442626953 ], [ -72.763191223144531, -16.633472442626953 ], [ -72.763191223144531, -16.633195877075138 ], [ -72.764305114746037, -16.633195877075138 ], [ -72.764305114746037, -16.632915496826172 ], [ -72.764579772949162, -16.632915496826172 ], [ -72.764579772949162, -16.632638931274414 ], [ -72.76513671875, -16.632638931274414 ], [ -72.76513671875, -16.632360458374023 ], [ -72.765419006347656, -16.632360458374023 ], [ -72.765419006347656, -16.632085800170898 ], [ -72.765975952148438, -16.632085800170898 ], [ -72.765975952148438, -16.631807327270508 ], [ -72.766525268554688, -16.631807327270508 ], [ -72.766525268554688, -16.631526947021428 ], [ -72.767082214355412, -16.631526947021428 ], [ -72.767082214355412, -16.631250381469727 ], [ -72.767639160156193, -16.631250381469727 ], [ -72.767639160156193, -16.630971908569336 ], [ -72.767913818359318, -16.630971908569336 ], [ -72.767913818359318, -16.630693435668888 ], [ -72.768196105956974, -16.630693435668888 ], [ -72.768196105956974, -16.630416870117188 ], [ -72.768470764160156, -16.630416870117188 ], [ -72.768470764160156, -16.630138397216797 ], [ -72.768753051757812, -16.630138397216797 ], [ -72.768753051757812, -16.629861831664982 ], [ -72.769302368164062, -16.629861831664982 ], [ -72.769302368164062, -16.629583358764535 ], [ -72.769859313964844, -16.629583358764535 ], [ -72.769859313964844, -16.629304885864258 ], [ -72.770141601562386, -16.629304885864258 ], [ -72.770141601562386, -16.629028320312443 ], [ -72.770416259765568, -16.629028320312443 ], [ -72.770416259765568, -16.628749847412053 ], [ -72.770973205566349, -16.628749847412053 ], [ -72.770973205566349, -16.628471374511662 ], [ -72.771530151367188, -16.628471374511662 ], [ -72.771530151367188, -16.628194808959961 ], [ -72.772087097167969, -16.628194808959961 ], [ -72.772087097167969, -16.62791633605957 ], [ -72.772361755371094, -16.62791633605957 ], [ -72.772361755371094, -16.627639770507812 ], [ -72.772636413574219, -16.627639770507812 ], [ -72.772636413574219, -16.627361297607422 ], [ -72.773193359374886, -16.627361297607422 ], [ -72.773193359374886, -16.627082824707031 ], [ -72.773475646972543, -16.627082824707031 ], [ -72.773475646972543, -16.626806259155217 ], [ -72.774307250976506, -16.626806259155217 ], [ -72.774307250976506, -16.626527786254769 ], [ -72.774864196777344, -16.626527786254769 ], [ -72.774864196777344, -16.626249313354492 ], [ -72.775138854980469, -16.626249313354492 ], [ -72.775138854980469, -16.625972747802678 ], [ -72.77569580078125, -16.625972747802678 ], [ -72.77569580078125, -16.625694274902287 ], [ -72.775970458984375, -16.625694274902287 ], [ -72.775970458984375, -16.625415802001896 ], [ -72.776252746582031, -16.625415802001896 ], [ -72.776252746582031, -16.625139236450195 ], [ -72.776802062988224, -16.625139236450195 ], [ -72.776802062988224, -16.624584197998047 ], [ -72.777084350585881, -16.624584197998047 ], [ -72.777084350585881, -16.624305725097656 ], [ -72.777359008789006, -16.624305725097656 ], [ -72.777359008789006, -16.624027252197266 ], [ -72.777641296386662, -16.624027252197266 ], [ -72.777641296386662, -16.623750686645451 ], [ -72.778190612792969, -16.623750686645451 ], [ -72.7781982421875, -16.62347221374506 ], [ -72.77874755859375, -16.62347221374506 ], [ -72.77874755859375, -16.623193740844613 ], [ -72.779029846191406, -16.623193740844613 ], [ -72.779029846191406, -16.622917175292912 ], [ -72.779304504394531, -16.622917175292912 ], [ -72.779304504394531, -16.622638702392521 ], [ -72.779861450195256, -16.622638702392521 ], [ -72.779861450195256, -16.622360229492131 ], [ -72.780136108398381, -16.622360229492131 ], [ -72.780136108398381, -16.62208366394043 ], [ -72.780418395996037, -16.62208366394043 ], [ -72.780418395996037, -16.621805191040039 ], [ -72.780693054199162, -16.621805191040039 ], [ -72.780693054199162, -16.621528625488281 ], [ -72.78125, -16.621528625488281 ], [ -72.78125, -16.621250152587891 ], [ -72.781806945800781, -16.621250152587891 ], [ -72.781806945800781, -16.6209716796875 ], [ -72.782363891601562, -16.6209716796875 ], [ -72.782363891601562, -16.620695114135685 ], [ -72.782638549804688, -16.620695114135685 ], [ -72.782638549804688, -16.620418548583984 ], [ -72.783195495605412, -16.620418548583984 ], [ -72.783195495605412, -16.620136260986328 ], [ -72.783470153808537, -16.620136260986328 ], [ -72.783470153808537, -16.619861602783203 ], [ -72.783752441406193, -16.619861602783203 ], [ -72.783752441406193, -16.619583129882756 ], [ -72.784027099609318, -16.619583129882756 ], [ -72.784027099609318, -16.619304656982365 ], [ -72.784584045410156, -16.619304656982365 ], [ -72.784584045410156, -16.619026184081974 ], [ -72.785140991210938, -16.619026184081974 ], [ -72.785140991210938, -16.618749618530273 ], [ -72.785415649414062, -16.618749618530273 ], [ -72.785415649414062, -16.618473052978402 ], [ -72.78597259521473, -16.618473052978402 ], [ -72.78597259521473, -16.618196487426701 ], [ -72.786285400390625, -16.618196487426701 ], [ -72.786529541015568, -16.618196487426701 ], [ -72.786529541015568, -16.617914199829045 ], [ -72.786804199218693, -16.617914199829045 ], [ -72.786804199218693, -16.617765426635742 ], [ -72.786804199218693, -16.61763954162592 ], [ -72.786987304687443, -16.61763954162592 ], [ -72.787361145019531, -16.61763954162592 ], [ -72.787361145019531, -16.617361068725529 ], [ -72.787635803222656, -16.617361068725529 ], [ -72.787635803222656, -16.617189407348633 ], [ -72.787635803222656, -16.617082595825138 ], [ -72.787788391113281, -16.617082595825138 ], [ -72.787918090820312, -16.617082595825138 ], [ -72.787918090820312, -16.616804122924691 ], [ -72.788192749023438, -16.616804122924691 ], [ -72.788192749023438, -16.61652755737299 ], [ -72.788475036621094, -16.61652755737299 ], [ -72.788475036621094, -16.616249084472599 ], [ -72.788993835449162, -16.616249084472599 ], [ -72.789306640624886, -16.616249084472599 ], [ -72.789306640624886, -16.615972518920898 ], [ -72.789581298828068, -16.615972518920898 ], [ -72.789581298828068, -16.61584281921381 ], [ -72.789581298828068, -16.615692138671818 ], [ -72.789863586425724, -16.615692138671818 ], [ -72.789863586425724, -16.615417480468636 ], [ -72.790199279785156, -16.615417480468636 ], [ -72.790412902832031, -16.615417480468636 ], [ -72.790412902832031, -16.615268707275391 ], [ -72.790412902832031, -16.615139007568359 ], [ -72.790695190429688, -16.615139007568359 ], [ -72.790695190429688, -16.614860534667969 ], [ -72.790969848632812, -16.614860534667969 ], [ -72.790969848632812, -16.614582061767578 ], [ -72.79140472412098, -16.614582061767578 ], [ -72.791526794433594, -16.614582061767578 ], [ -72.791526794433594, -16.614305496215763 ], [ -72.79180908203125, -16.614305496215763 ], [ -72.79180908203125, -16.614027023315373 ], [ -72.792083740234375, -16.614027023315373 ], [ -72.792083740234375, -16.613750457763672 ], [ -72.792640686035099, -16.613750457763672 ], [ -72.792640686035099, -16.613470077514648 ], [ -72.792915344238224, -16.613470077514648 ], [ -72.792915344238224, -16.613193511962834 ], [ -72.793472290039006, -16.613193511962834 ], [ -72.793472290039006, -16.612916946411133 ], [ -72.793746948242188, -16.612916946411133 ], [ -72.793746948242188, -16.612638473510742 ], [ -72.794303894042969, -16.612638473510742 ], [ -72.794303894042969, -16.612361907958928 ], [ -72.794586181640625, -16.612361907958928 ], [ -72.794586181640625, -16.61208343505848 ], [ -72.79486083984375, -16.61208343505848 ], [ -72.79486083984375, -16.611804962158203 ], [ -72.795204162597599, -16.611804962158203 ], [ -72.795417785644531, -16.611804962158203 ], [ -72.795417785644531, -16.611528396606388 ], [ -72.795692443847599, -16.611528396606388 ], [ -72.795692443847599, -16.611356735229435 ], [ -72.795692443847599, -16.611251831054688 ], [ -72.795806884765625, -16.611251831054688 ], [ -72.795974731445256, -16.611251831054688 ], [ -72.795974731445256, -16.611093521118164 ], [ -72.795974731445256, -16.610971450805607 ], [ -72.796104431152344, -16.610971450805607 ], [ -72.796249389648381, -16.610971450805607 ], [ -72.796249389648381, -16.610841751098633 ], [ -72.796249389648381, -16.610694885253906 ], [ -72.796409606933594, -16.610694885253906 ], [ -72.796524047851506, -16.610694885253906 ], [ -72.796524047851506, -16.610586166381779 ], [ -72.796524047851506, -16.610139846801758 ], [ -72.796806335449162, -16.610139846801758 ], [ -72.796806335449162, -16.609861373901367 ], [ -72.79736328125, -16.609861373901367 ], [ -72.79736328125, -16.609306335449162 ], [ -72.797637939453125, -16.609306335449162 ], [ -72.797637939453125, -16.609029769897461 ], [ -72.797920227050781, -16.609029769897461 ], [ -72.797920227050781, -16.608749389648438 ], [ -72.798469543457031, -16.608749389648438 ], [ -72.798469543457031, -16.608472824096623 ], [ -72.798751831054574, -16.608472824096623 ], [ -72.798751831054574, -16.607917785644531 ], [ -72.799026489257756, -16.607917785644531 ], [ -72.799026489257756, -16.607639312744141 ], [ -72.799308776855412, -16.607639312744141 ], [ -72.799308776855412, -16.60736083984375 ], [ -72.799583435058537, -16.60736083984375 ], [ -72.799583435058537, -16.607084274291992 ], [ -72.799858093261662, -16.607082366943359 ], [ -72.799858093261662, -16.606807708740178 ], [ -72.8004150390625, -16.606807708740178 ], [ -72.8004150390625, -16.606250762939396 ], [ -72.800697326660156, -16.606250762939396 ], [ -72.800697326660156, -16.605972290039006 ], [ -72.800971984863281, -16.605972290039006 ], [ -72.800971984863281, -16.605693817138558 ], [ -72.801246643066406, -16.605693817138558 ], [ -72.801246643066406, -16.605415344238281 ], [ -72.801803588867074, -16.605415344238281 ], [ -72.801803588867074, -16.605138778686467 ], [ -72.80208587646473, -16.605138778686467 ], [ -72.80208587646473, -16.604585647582951 ], [ -72.802360534667912, -16.604585647582951 ], [ -72.802360534667912, -16.604303359985295 ], [ -72.802635192871037, -16.604303359985295 ], [ -72.802635192871037, -16.604028701782227 ], [ -72.802917480468693, -16.604028701782227 ], [ -72.802917480468693, -16.603750228881836 ], [ -72.803192138671875, -16.603750228881836 ], [ -72.803192138671875, -16.603471755981445 ], [ -72.803749084472656, -16.603471755981445 ], [ -72.803749084472656, -16.60291671752924 ], [ -72.804031372070312, -16.60291671752924 ], [ -72.804031372070312, -16.602638244628793 ], [ -72.804306030273438, -16.602638244628793 ], [ -72.804306030273438, -16.602361679077148 ], [ -72.804580688476562, -16.602361679077148 ], [ -72.804580688476562, -16.602081298828125 ], [ -72.80513763427723, -16.602081298828125 ], [ -72.80513763427723, -16.60180473327631 ], [ -72.805419921874943, -16.60180473327631 ], [ -72.805419921874943, -16.601528167724609 ], [ -72.805969238281193, -16.601528167724609 ], [ -72.805969238281193, -16.601249694824219 ], [ -72.806526184082031, -16.601249694824219 ], [ -72.806526184082031, -16.600971221923828 ], [ -72.806808471679688, -16.600971221923828 ], [ -72.806808471679688, -16.60069465637207 ], [ -72.807357788085938, -16.60069465637207 ], [ -72.807357788085938, -16.60041618347168 ], [ -72.807640075683594, -16.60041618347168 ], [ -72.807640075683594, -16.600139617919865 ], [ -72.807914733886719, -16.600139617919865 ], [ -72.807914733886719, -16.599861145019474 ], [ -72.808197021484375, -16.599861145019474 ], [ -72.808197021484375, -16.599582672119084 ], [ -72.808471679687443, -16.599582672119084 ], [ -72.808471679687443, -16.599306106567383 ], [ -72.809028625488224, -16.599306106567383 ], [ -72.809028625488224, -16.598749160766545 ], [ -72.809303283691349, -16.598749160766545 ], [ -72.809303283691349, -16.598472595214844 ], [ -72.809860229492188, -16.598472595214844 ], [ -72.809860229492188, -16.598194122314453 ], [ -72.810142517089844, -16.598194122314453 ], [ -72.810142517089844, -16.597917556762582 ], [ -72.810417175292969, -16.597917556762582 ], [ -72.810417175292969, -16.597360610961914 ], [ -72.810691833496094, -16.597360610961914 ], [ -72.810691833496094, -16.597084045410099 ], [ -72.81097412109375, -16.597084045410099 ], [ -72.81097412109375, -16.596805572509709 ], [ -72.811248779296875, -16.596805572509709 ], [ -72.811248779296875, -16.596527099609318 ], [ -72.811531066894418, -16.596527099609318 ], [ -72.811531066894418, -16.596250534057617 ], [ -72.811805725097599, -16.596250534057617 ], [ -72.811805725097599, -16.595972061157227 ], [ -72.812362670898381, -16.595972061157227 ], [ -72.812362670898381, -16.595693588256779 ], [ -72.812637329101506, -16.595693588256779 ], [ -72.812637329101506, -16.595418930053654 ], [ -72.812919616699219, -16.595418930053654 ], [ -72.812919616699219, -16.595138549804688 ], [ -72.813468933105469, -16.595138549804688 ], [ -72.813468933105469, -16.594583511352425 ], [ -72.813751220703125, -16.594583511352425 ], [ -72.813751220703125, -16.594306945800724 ], [ -72.81402587890625, -16.594306945800724 ], [ -72.81402587890625, -16.594028472900334 ], [ -72.814308166503906, -16.594028472900334 ], [ -72.814308166503906, -16.59375 ], [ -72.814582824706918, -16.59375 ], [ -72.814582824706918, -16.593471527099553 ], [ -72.814857482910099, -16.593471527099553 ], [ -72.814857482910099, -16.593196868896371 ], [ -72.815139770507756, -16.593196868896371 ], [ -72.815139770507756, -16.592914581298714 ], [ -72.815696716308537, -16.592914581298714 ], [ -72.815696716308537, -16.592636108398438 ], [ -72.815971374511719, -16.592636108398438 ], [ -72.815971374511719, -16.592361450195312 ], [ -72.816253662109375, -16.592361450195312 ], [ -72.816253662109375, -16.592084884643498 ], [ -72.8165283203125, -16.592084884643498 ], [ -72.8165283203125, -16.591804504394531 ], [ -72.816802978515625, -16.591804504394531 ], [ -72.816802978515625, -16.59152793884266 ], [ -72.817359924316406, -16.59152793884266 ], [ -72.817359924316406, -16.591249465942383 ], [ -72.817642211914062, -16.591249465942383 ], [ -72.817642211914062, -16.590974807739258 ], [ -72.817916870117074, -16.590974807739258 ], [ -72.817916870117074, -16.590696334838867 ], [ -72.818191528320256, -16.590696334838867 ], [ -72.818191528320256, -16.590414047241211 ], [ -72.818473815917912, -16.590414047241211 ], [ -72.818473815917912, -16.590139389038086 ], [ -72.818748474121037, -16.590139389038086 ], [ -72.818748474121037, -16.589860916137695 ], [ -72.819030761718693, -16.589860916137695 ], [ -72.819030761718693, -16.589582443237305 ], [ -72.819305419921875, -16.589582443237305 ], [ -72.819305419921875, -16.589305877685547 ], [ -72.819580078125, -16.589305877685547 ], [ -72.819580078125, -16.589027404785156 ], [ -72.820137023925781, -16.589027404785156 ], [ -72.820137023925781, -16.588750839233342 ], [ -72.820419311523438, -16.588750839233342 ], [ -72.820419311523438, -16.588472366332951 ], [ -72.820693969726562, -16.588472366332951 ], [ -72.820693969726562, -16.588193893432504 ], [ -72.820968627929574, -16.588193893432504 ], [ -72.820968627929574, -16.587917327880803 ], [ -72.821250915527287, -16.587917327880803 ], [ -72.821250915527287, -16.587638854980412 ], [ -72.821807861328068, -16.587638854980412 ], [ -72.821807861328068, -16.587360382080021 ], [ -72.822082519531193, -16.587360382080021 ], [ -72.822082519531193, -16.58680534362793 ], [ -72.822364807128849, -16.58680534362793 ], [ -72.822364807128849, -16.586526870727539 ], [ -72.822639465332031, -16.586526870727539 ], [ -72.822639465332031, -16.586250305175781 ], [ -72.822914123535156, -16.586250305175781 ], [ -72.822914123535156, -16.585971832275391 ], [ -72.823196411132812, -16.585971832275391 ], [ -72.823196411132812, -16.585695266723576 ], [ -72.823753356933594, -16.585695266723576 ], [ -72.823753356933594, -16.585416793823185 ], [ -72.824028015136719, -16.585416793823185 ], [ -72.824028015136719, -16.585138320922738 ], [ -72.824302673339787, -16.585138320922738 ], [ -72.824302673339787, -16.584861755371094 ], [ -72.824584960937443, -16.584861755371094 ], [ -72.824584960937443, -16.584583282470646 ], [ -72.824859619140568, -16.584583282470646 ], [ -72.824859619140568, -16.584304809570256 ], [ -72.825416564941349, -16.584304809570256 ], [ -72.825416564941349, -16.584028244018555 ], [ -72.825691223144531, -16.584028244018555 ], [ -72.825691223144531, -16.583749771118164 ], [ -72.825973510742188, -16.583749771118164 ], [ -72.825973510742188, -16.583471298217773 ], [ -72.826248168945312, -16.583471298217773 ], [ -72.826248168945312, -16.583194732666016 ], [ -72.826530456542969, -16.583194732666016 ], [ -72.826530456542969, -16.582916259765625 ], [ -72.826805114746094, -16.582916259765625 ], [ -72.826805114746094, -16.58263969421381 ], [ -72.827079772949219, -16.58263969421381 ], [ -72.827079772949219, -16.58236122131342 ], [ -72.827636718749943, -16.58236122131342 ], [ -72.827636718749943, -16.582082748413029 ], [ -72.827919006347599, -16.582082748413029 ], [ -72.827919006347599, -16.581806182861328 ], [ -72.828193664550724, -16.581806182861328 ], [ -72.828193664550724, -16.58152961730957 ], [ -72.829025268554688, -16.58152961730957 ], [ -72.829025268554688, -16.581247329711914 ], [ -72.829307556152344, -16.581247329711914 ], [ -72.829307556152344, -16.580694198608398 ], [ -72.829582214355469, -16.580694198608398 ], [ -72.829582214355469, -16.580417633056527 ], [ -72.829864501953125, -16.580417633056527 ], [ -72.829864501953125, -16.58013916015625 ], [ -72.83013916015625, -16.58013916015625 ], [ -72.83013916015625, -16.579860687255859 ], [ -72.830413818359261, -16.579860687255859 ], [ -72.830413818359261, -16.579584121704045 ], [ -72.830696105956918, -16.579584121704045 ], [ -72.830696105956918, -16.579307556152344 ], [ -72.830970764160099, -16.579307556152344 ], [ -72.830970764160099, -16.579025268554688 ], [ -72.831527709960881, -16.579025268554688 ], [ -72.831527709960881, -16.578750610351562 ], [ -72.831802368164062, -16.578750610351562 ], [ -72.831802368164062, -16.578472137451172 ], [ -72.832084655761719, -16.578472137451172 ], [ -72.832084655761719, -16.578193664550724 ], [ -72.832511901855355, -16.578193664550724 ], [ -72.8326416015625, -16.578193664550724 ], [ -72.8326416015625, -16.577991485595703 ], [ -72.8326416015625, -16.577638626098633 ], [ -72.832916259765625, -16.577638626098633 ], [ -72.832916259765625, -16.577362060546818 ], [ -72.833045959472599, -16.577362060546818 ], [ -72.83319091796875, -16.577360153198242 ], [ -72.83319091796875, -16.577085494995117 ], [ -72.833473205566406, -16.577085494995117 ], [ -72.833473205566406, -16.576803207397461 ], [ -72.833747863769418, -16.576803207397461 ], [ -72.833747863769418, -16.576528549194279 ], [ -72.834030151367131, -16.576528549194279 ], [ -72.834030151367131, -16.576250076293888 ], [ -72.834587097167912, -16.576250076293888 ], [ -72.834587097167912, -16.575971603393498 ], [ -72.834861755371037, -16.575971603393498 ], [ -72.834861755371037, -16.575693130493107 ], [ -72.835136413574219, -16.575693130493107 ], [ -72.835136413574219, -16.575416564941406 ], [ -72.835418701171875, -16.575416564941406 ], [ -72.835418701171875, -16.575138092040959 ], [ -72.835693359375, -16.575138092040959 ], [ -72.835693359375, -16.574861526489258 ], [ -72.835975646972656, -16.574861526489258 ], [ -72.835975646972656, -16.574581146240178 ], [ -72.836250305175781, -16.574581146240178 ], [ -72.836250305175781, -16.574306488037053 ], [ -72.836807250976562, -16.574304580688477 ], [ -72.836807250976562, -16.574028015136605 ], [ -72.837081909179631, -16.574028015136605 ], [ -72.837081909179631, -16.573749542236328 ], [ -72.837364196777287, -16.573749542236328 ], [ -72.837364196777287, -16.573471069335938 ], [ -72.837638854980412, -16.573471069335938 ], [ -72.837638854980412, -16.573194503784123 ], [ -72.837913513183537, -16.573194503784123 ], [ -72.837913513183537, -16.572916030883732 ], [ -72.838470458984375, -16.572916030883732 ], [ -72.838470458984375, -16.572359085082894 ], [ -72.838752746582031, -16.572359085082894 ], [ -72.838752746582031, -16.57208251953125 ], [ -72.839302062988281, -16.57208251953125 ], [ -72.839302062988281, -16.571805953979492 ], [ -72.839584350585938, -16.571805953979492 ], [ -72.839584350585938, -16.571527481079102 ], [ -72.839859008789062, -16.571527481079102 ], [ -72.839859008789062, -16.571250915527287 ], [ -72.840415954589787, -16.571250915527287 ], [ -72.840415954589787, -16.570972442626896 ], [ -72.840690612792912, -16.570972442626896 ], [ -72.840698242187443, -16.570693969726449 ], [ -72.840972900390568, -16.570693969726449 ], [ -72.840972900390568, -16.570417404174748 ], [ -72.841529846191406, -16.570417404174748 ], [ -72.841529846191406, -16.570140838623047 ], [ -72.841804504394531, -16.570140838623047 ], [ -72.841804504394531, -16.569860458373967 ], [ -72.842086791992188, -16.569860458373967 ], [ -72.842086791992188, -16.569583892822266 ], [ -72.842636108398438, -16.569583892822266 ], [ -72.842636108398438, -16.569305419921875 ], [ -72.842918395996094, -16.569305419921875 ], [ -72.842918395996094, -16.569028854370117 ], [ -72.843475341796761, -16.569028854370117 ], [ -72.843475341796761, -16.568750381469727 ], [ -72.844024658203068, -16.568750381469727 ], [ -72.844024658203068, -16.568471908569336 ], [ -72.844306945800724, -16.568471908569336 ], [ -72.844306945800724, -16.568195343017521 ], [ -72.844581604003906, -16.568195343017521 ], [ -72.844581604003906, -16.56791877746582 ], [ -72.844863891601562, -16.56791877746582 ], [ -72.844863891601562, -16.567361831665039 ], [ -72.845138549804688, -16.567361831665039 ], [ -72.845138549804688, -16.567083358764592 ], [ -72.845413208007812, -16.567083358764592 ], [ -72.845413208007812, -16.566806793212891 ], [ -72.845695495605469, -16.566806793212891 ], [ -72.845695495605469, -16.5665283203125 ], [ -72.845970153808594, -16.5665283203125 ], [ -72.845970153808594, -16.566249847412109 ], [ -72.84625244140625, -16.566249847412109 ], [ -72.84625244140625, -16.565971374511719 ], [ -72.846527099609261, -16.565971374511719 ], [ -72.846527099609261, -16.565696716308537 ], [ -72.847358703613224, -16.565696716308537 ], [ -72.847358703613224, -16.565414428710881 ], [ -72.847640991210881, -16.565414428710881 ], [ -72.847640991210881, -16.565139770507756 ], [ -72.847915649414062, -16.565139770507756 ], [ -72.847915649414062, -16.564861297607365 ], [ -72.848472595214844, -16.564861297607365 ], [ -72.848472595214844, -16.564582824706974 ], [ -72.848747253417969, -16.564582824706974 ], [ -72.848747253417969, -16.564304351806527 ], [ -72.84930419921875, -16.564304351806527 ], [ -72.84930419921875, -16.564027786254826 ], [ -72.849571228027287, -16.564027786254826 ], [ -72.849861145019474, -16.564027786254826 ], [ -72.849861145019474, -16.563749313354435 ], [ -72.850418090820256, -16.563749313354435 ], [ -72.850418090820256, -16.56347465515131 ], [ -72.850692749023381, -16.56347465515131 ], [ -72.850692749023381, -16.563192367553654 ], [ -72.850975036621037, -16.563192367553654 ], [ -72.850975036621037, -16.563077926635685 ], [ -72.850975036621037, -16.562915802001953 ], [ -72.851249694824219, -16.562915802001953 ], [ -72.851249694824219, -16.562639236450195 ], [ -72.851524353027344, -16.562639236450195 ], [ -72.851524353027344, -16.562360763549805 ], [ -72.852081298828125, -16.562360763549805 ], [ -72.852081298828125, -16.562082290649414 ], [ -72.852363586425781, -16.562082290649414 ], [ -72.852363586425781, -16.561805725097599 ], [ -72.852638244628906, -16.561805725097599 ], [ -72.852638244628906, -16.561527252197209 ], [ -72.852912902831974, -16.561527252197209 ], [ -72.852912902831974, -16.561250686645508 ], [ -72.853195190429631, -16.561250686645508 ], [ -72.853195190429631, -16.560972213745117 ], [ -72.853752136230412, -16.560972213745117 ], [ -72.853752136230412, -16.56069374084467 ], [ -72.854026794433537, -16.56069374084467 ], [ -72.854026794433537, -16.560417175292969 ], [ -72.85430908203125, -16.560417175292969 ], [ -72.85430908203125, -16.560138702392578 ], [ -72.854583740234375, -16.560138702392578 ], [ -72.854583740234375, -16.559860229492188 ], [ -72.855140686035156, -16.559860229492188 ], [ -72.855140686035156, -16.559583663940316 ], [ -72.855697631835938, -16.559583663940316 ], [ -72.855697631835938, -16.559305191040039 ], [ -72.856246948242131, -16.559305191040039 ], [ -72.856246948242131, -16.559028625488224 ], [ -72.856803894042912, -16.559028625488224 ], [ -72.856803894042912, -16.558750152587834 ], [ -72.857086181640568, -16.558750152587834 ], [ -72.857086181640568, -16.558471679687443 ], [ -72.85736083984375, -16.558471679687443 ], [ -72.85736083984375, -16.558195114135742 ], [ -72.857917785644531, -16.558195114135742 ], [ -72.857917785644531, -16.557916641235352 ], [ -72.858192443847656, -16.557916641235352 ], [ -72.858192443847656, -16.557638168334904 ], [ -72.858749389648438, -16.557638168334904 ], [ -72.858749389648438, -16.557361602783203 ], [ -72.859024047851449, -16.557361602783203 ], [ -72.859024047851449, -16.557083129882812 ], [ -72.859580993652287, -16.557083129882812 ], [ -72.859580993652287, -16.556804656982422 ], [ -72.859863281249943, -16.556804656982422 ], [ -72.859863281249943, -16.55652809143055 ], [ -72.860137939453068, -16.55652809143055 ], [ -72.860137939453068, -16.556249618530273 ], [ -72.860694885253906, -16.556249618530273 ], [ -72.860694885253906, -16.555973052978459 ], [ -72.860969543457031, -16.555973052978459 ], [ -72.860969543457031, -16.555694580078068 ], [ -72.861526489257812, -16.555694580078068 ], [ -72.861526489257812, -16.555416107177678 ], [ -72.862083435058594, -16.555416107177678 ], [ -72.862083435058594, -16.555139541625977 ], [ -72.862640380859318, -16.555139541625977 ], [ -72.862640380859318, -16.554861068725586 ], [ -72.863128662109375, -16.554861068725586 ], [ -72.863471984863224, -16.554861068725586 ], [ -72.863471984863224, -16.554582595825195 ], [ -72.863746643066406, -16.554582595825195 ], [ -72.863746643066406, -16.554409027099609 ], [ -72.863746643066406, -16.554307937622013 ], [ -72.8638916015625, -16.554307937622013 ], [ -72.864028930664062, -16.554307937622013 ], [ -72.864028930664062, -16.554201126098633 ], [ -72.864028930664062, -16.554025650024357 ], [ -72.864273071289062, -16.554025650024357 ], [ -72.864585876464844, -16.554025650024357 ], [ -72.864585876464844, -16.553747177123967 ], [ -72.86541748046875, -16.553747177123967 ], [ -72.86541748046875, -16.553472518920842 ], [ -72.865692138671818, -16.553472518920842 ], [ -72.865692138671818, -16.553195953369141 ], [ -72.865974426269474, -16.553195953369141 ], [ -72.865974426269474, -16.552917480468693 ], [ -72.866249084472599, -16.552917480468693 ], [ -72.866249084472599, -16.552637100219727 ], [ -72.866531372070256, -16.552637100219727 ], [ -72.866531372070256, -16.552360534667912 ], [ -72.866806030273381, -16.552360534667912 ], [ -72.866806030273381, -16.552085876464787 ], [ -72.866928100585881, -16.552085876464787 ], [ -72.867080688476562, -16.552085876464787 ], [ -72.867080688476562, -16.551975250244084 ], [ -72.867080688476562, -16.551807403564339 ], [ -72.867362976074219, -16.551807403564339 ], [ -72.867362976074219, -16.551525115966683 ], [ -72.867637634277344, -16.551525115966683 ], [ -72.867637634277344, -16.551250457763672 ], [ -72.867919921875, -16.551250457763672 ], [ -72.867919921875, -16.550971984863281 ], [ -72.868194580078125, -16.550971984863281 ], [ -72.868194580078125, -16.550693511962891 ], [ -72.86846923828125, -16.550693511962891 ], [ -72.86846923828125, -16.550416946411076 ], [ -72.869026184081974, -16.550416946411076 ], [ -72.869026184081974, -16.550138473510629 ], [ -72.869583129882756, -16.550138473510629 ], [ -72.869583129882756, -16.549863815307617 ], [ -72.869857788085881, -16.549863815307617 ], [ -72.869857788085881, -16.549583435058537 ], [ -72.870414733886719, -16.549583435058537 ], [ -72.870414733886719, -16.54930305480957 ], [ -72.871246337890625, -16.54930305480957 ], [ -72.871246337890625, -16.549028396606445 ], [ -72.871528625488281, -16.549028396606445 ], [ -72.871528625488281, -16.548749923706055 ], [ -72.871803283691293, -16.548749923706055 ], [ -72.871803283691293, -16.548471450805664 ], [ -72.872085571288949, -16.548471450805664 ], [ -72.872085571288949, -16.548194885253906 ], [ -72.872360229492131, -16.548194885253906 ], [ -72.872360229492131, -16.547916412353516 ], [ -72.872917175292912, -16.547916412353516 ], [ -72.872917175292912, -16.547637939453125 ], [ -72.873191833496094, -16.547637939453125 ], [ -72.873191833496094, -16.54736137390131 ], [ -72.87347412109375, -16.54736137390131 ], [ -72.87347412109375, -16.54708290100092 ], [ -72.873748779296875, -16.54708290100092 ], [ -72.873748779296875, -16.546806335449219 ], [ -72.874031066894531, -16.546806335449219 ], [ -72.874031066894531, -16.546527862548771 ], [ -72.874580383300781, -16.546527862548771 ], [ -72.874580383300781, -16.546249389648381 ], [ -72.874862670898438, -16.546249389648381 ], [ -72.874862670898438, -16.54597282409668 ], [ -72.875419616699162, -16.54597282409668 ], [ -72.875419616699162, -16.545694351196289 ], [ -72.875968933105412, -16.545694351196289 ], [ -72.875968933105412, -16.545415878295898 ], [ -72.876327514648438, -16.545415878295898 ], [ -72.87652587890625, -16.545415878295898 ], [ -72.87652587890625, -16.545139312744141 ], [ -72.876808166503906, -16.545139312744141 ], [ -72.876808166503906, -16.54486083984375 ], [ -72.877082824707031, -16.54486083984375 ], [ -72.877082824707031, -16.544744491577148 ], [ -72.877082824707031, -16.544584274291935 ], [ -72.877334594726449, -16.544584274291935 ], [ -72.877914428710938, -16.544582366943359 ], [ -72.877914428710938, -16.544305801391545 ], [ -72.878471374511662, -16.544305801391545 ], [ -72.878471374511662, -16.544027328491154 ], [ -72.878753662109318, -16.544027328491154 ], [ -72.878753662109318, -16.543750762939453 ], [ -72.879302978515568, -16.543750762939453 ], [ -72.879302978515568, -16.543472290039062 ], [ -72.879585266113224, -16.543472290039062 ], [ -72.879585266113224, -16.543193817138615 ], [ -72.879859924316406, -16.543193817138615 ], [ -72.879859924316406, -16.542917251586914 ], [ -72.880416870117188, -16.542917251586914 ], [ -72.880416870117188, -16.542638778686523 ], [ -72.880973815917969, -16.542638778686523 ], [ -72.880973815917969, -16.542360305786133 ], [ -72.881530761718636, -16.542360305786133 ], [ -72.881530761718636, -16.542083740234261 ], [ -72.881805419921818, -16.542083740234261 ], [ -72.881805419921818, -16.541805267333984 ], [ -72.882362365722599, -16.541805267333984 ], [ -72.882362365722599, -16.54152870178217 ], [ -72.882637023925724, -16.54152870178217 ], [ -72.882637023925724, -16.541250228881779 ], [ -72.883193969726562, -16.541250228881779 ], [ -72.883193969726562, -16.540971755981388 ], [ -72.883750915527344, -16.540971755981388 ], [ -72.883750915527344, -16.540695190429688 ], [ -72.884025573730469, -16.540695190429688 ], [ -72.884025573730469, -16.54041862487793 ], [ -72.884307861328125, -16.54041862487793 ], [ -72.884307861328125, -16.540136337280273 ], [ -72.884582519531136, -16.540136337280273 ], [ -72.884582519531136, -16.539861679077148 ], [ -72.884864807128793, -16.539861679077148 ], [ -72.884864807128793, -16.539583206176758 ], [ -72.885139465331974, -16.539583206176758 ], [ -72.885139465331974, -16.539306640624943 ], [ -72.885261535644531, -16.539306640624943 ], [ -72.885696411132756, -16.539306640624943 ], [ -72.885696411132756, -16.539028167724496 ], [ -72.886253356933594, -16.539028167724496 ], [ -72.886253356933594, -16.538749694824219 ], [ -72.886802673339844, -16.538749694824219 ], [ -72.886802673339844, -16.538473129272404 ], [ -72.887359619140625, -16.538473129272404 ], [ -72.887359619140625, -16.538196563720703 ], [ -72.887641906738281, -16.538196563720703 ], [ -72.887641906738281, -16.537914276123047 ], [ -72.888191223144474, -16.537914276123047 ], [ -72.888191223144474, -16.537639617919922 ], [ -72.888748168945256, -16.537639617919922 ], [ -72.888748168945256, -16.537361145019531 ], [ -72.889030456542912, -16.537361145019531 ], [ -72.889030456542912, -16.537082672119141 ], [ -72.889579772949219, -16.537082672119141 ], [ -72.889579772949219, -16.536804199218693 ], [ -72.89013671875, -16.536804199218693 ], [ -72.89013671875, -16.536527633666992 ], [ -72.890419006347656, -16.536527633666992 ], [ -72.890419006347656, -16.536249160766602 ], [ -72.890693664550781, -16.536249160766602 ], [ -72.890693664550781, -16.536077499389648 ], [ -72.890693664550781, -16.535972595214787 ], [ -72.890975952148438, -16.535972595214787 ], [ -72.890975952148438, -16.53569221496582 ], [ -72.891250610351506, -16.53569221496582 ], [ -72.891250610351506, -16.535417556762638 ], [ -72.891807556152287, -16.535417556762638 ], [ -72.891807556152287, -16.535139083862248 ], [ -72.892211914062386, -16.535139083862248 ], [ -72.892364501953068, -16.535139083862248 ], [ -72.892364501953068, -16.535039901733342 ], [ -72.892364501953068, -16.534860610961857 ], [ -72.892631530761719, -16.534860610961857 ], [ -72.892913818359375, -16.534860610961857 ], [ -72.892913818359375, -16.534582138061467 ], [ -72.893196105957031, -16.534582138061467 ], [ -72.893196105957031, -16.534305572509766 ], [ -72.893470764160156, -16.534305572509766 ], [ -72.893470764160156, -16.534027099609375 ], [ -72.893753051757812, -16.534027099609375 ], [ -72.893753051757812, -16.533750534057617 ], [ -72.894584655761662, -16.533750534057617 ], [ -72.894584655761662, -16.533470153808537 ], [ -72.895416259765568, -16.533470153808537 ], [ -72.895416259765568, -16.533193588256836 ], [ -72.895973205566406, -16.533193588256836 ], [ -72.895973205566406, -16.532917022705021 ], [ -72.896247863769531, -16.532917022705021 ], [ -72.896247863769531, -16.532638549804574 ], [ -72.896804809570312, -16.532638549804574 ], [ -72.896804809570312, -16.532360076904297 ], [ -72.89736175537098, -16.532360076904297 ], [ -72.89736175537098, -16.532083511352482 ], [ -72.897636413574162, -16.532083511352482 ], [ -72.897636413574162, -16.531917572021484 ], [ -72.897636413574162, -16.531805038452092 ], [ -72.898033142089844, -16.531805038452092 ], [ -72.898475646972599, -16.531805038452092 ], [ -72.898475646972599, -16.531528472900391 ], [ -72.898750305175781, -16.531528472900391 ], [ -72.898750305175781, -16.531251907348576 ], [ -72.899307250976562, -16.531251907348576 ], [ -72.899307250976562, -16.530971527099609 ], [ -72.899581909179688, -16.530971527099609 ], [ -72.899581909179688, -16.53066444396967 ], [ -72.899581909179688, -16.530416488647461 ], [ -72.899864196777344, -16.530416488647461 ], [ -72.899864196777344, -16.530139923095646 ], [ -72.900138854980469, -16.530139923095646 ], [ -72.900138854980469, -16.529861450195256 ], [ -72.900695800781136, -16.529861450195256 ], [ -72.900695800781136, -16.529582977294865 ], [ -72.901054382324162, -16.529582977294865 ], [ -72.901527404785099, -16.529582977294865 ], [ -72.901527404785099, -16.529306411743164 ], [ -72.902084350585938, -16.529306411743164 ], [ -72.902084350585938, -16.529029846191406 ], [ -72.902641296386719, -16.529029846191406 ], [ -72.902641296386719, -16.528749465942326 ], [ -72.902915954589844, -16.528749465942326 ], [ -72.902915954589844, -16.528472900390625 ], [ -72.903472900390625, -16.528472900390625 ], [ -72.903472900390625, -16.528194427490234 ], [ -72.903640747070256, -16.528194427490234 ], [ -72.904586791992131, -16.528194427490234 ], [ -72.904586791992131, -16.527917861938363 ], [ -72.905418395996094, -16.527917861938363 ], [ -72.905418395996094, -16.527639389038086 ], [ -72.90625, -16.527639389038086 ], [ -72.90625, -16.527360916137695 ], [ -72.906806945800781, -16.527360916137695 ], [ -72.906806945800781, -16.527082443237305 ], [ -72.907081604003849, -16.527082443237305 ], [ -72.907081604003849, -16.52680778503418 ], [ -72.907363891601506, -16.52680778503418 ], [ -72.907363891601506, -16.526525497436523 ], [ -72.907638549804631, -16.526525497436523 ], [ -72.907638549804631, -16.526250839233398 ], [ -72.907913208007756, -16.526250839233398 ], [ -72.907913208007756, -16.525972366333008 ], [ -72.908195495605412, -16.525972366333008 ], [ -72.908195495605412, -16.52569580078125 ], [ -72.908470153808594, -16.52569580078125 ], [ -72.908470153808594, -16.525417327880859 ], [ -72.90875244140625, -16.525417327880859 ], [ -72.90875244140625, -16.525138854980469 ], [ -72.908874511718693, -16.525138854980469 ], [ -72.909027099609375, -16.525138854980469 ], [ -72.909027099609375, -16.524860382080078 ], [ -72.909355163574162, -16.524860382080078 ], [ -72.909584045410156, -16.524860382080078 ], [ -72.909584045410156, -16.524702072143555 ], [ -72.909584045410156, -16.524585723876953 ], [ -72.909759521484261, -16.524585723876953 ], [ -72.910140991210824, -16.524585723876953 ], [ -72.910140991210824, -16.524303436279297 ], [ -72.910415649414006, -16.524303436279297 ], [ -72.910415649414006, -16.524139404296818 ], [ -72.910415649414006, -16.523750305175724 ], [ -72.910697937011662, -16.523750305175724 ], [ -72.910697937011662, -16.523471832275334 ], [ -72.911399841308594, -16.523471832275334 ], [ -72.911529541015625, -16.523471832275334 ], [ -72.911529541015625, -16.523193359374943 ], [ -72.91180419921875, -16.523193359374943 ], [ -72.91180419921875, -16.522916793823242 ], [ -72.912216186523381, -16.522916793823242 ], [ -72.912361145019531, -16.522916793823242 ], [ -72.912361145019531, -16.522638320922795 ], [ -72.912628173828125, -16.522638320922795 ], [ -72.913192749023324, -16.522638320922795 ], [ -72.913192749023324, -16.522361755371094 ], [ -72.913749694824162, -16.522361755371094 ], [ -72.913749694824162, -16.522083282470703 ], [ -72.914047241210824, -16.522083282470703 ], [ -72.914581298828125, -16.522083282470703 ], [ -72.914581298828125, -16.521947860717773 ], [ -72.914581298828125, -16.521804809570312 ], [ -72.915138244628906, -16.521804809570312 ], [ -72.915138244628906, -16.521528244018441 ], [ -72.915412902832031, -16.521528244018441 ], [ -72.915412902832031, -16.521249771118164 ], [ -72.915649414062443, -16.521249771118164 ], [ -72.915969848632812, -16.521249771118164 ], [ -72.915969848632812, -16.520971298217773 ], [ -72.916252136230469, -16.520971298217773 ], [ -72.916252136230469, -16.520694732665959 ], [ -72.91652679443348, -16.520694732665959 ], [ -72.91652679443348, -16.520416259765568 ], [ -72.917358398437443, -16.520416259765568 ], [ -72.917358398437443, -16.520139694213867 ], [ -72.917640686035099, -16.520139694213867 ], [ -72.917640686035099, -16.519861221313477 ], [ -72.918197631835938, -16.519861221313477 ], [ -72.918197631835938, -16.519582748413086 ], [ -72.918472290039062, -16.519582748413086 ], [ -72.918472290039062, -16.519306182861328 ], [ -72.918746948242188, -16.519306182861328 ], [ -72.918746948242188, -16.519027709960938 ], [ -72.919029235839844, -16.519027709960938 ], [ -72.919029235839844, -16.518749237060547 ], [ -72.919303894042969, -16.518749237060547 ], [ -72.919303894042969, -16.519027709960938 ], [ -72.919586181640625, -16.519027709960938 ], [ -72.919586181640625, -16.518856048583984 ], [ -72.919586181640625, -16.518749237060547 ], [ -72.919715881347656, -16.518749237060547 ], [ -72.921524047851562, -16.518749237060547 ], [ -72.921524047851562, -16.519027709960938 ], [ -72.921806335449219, -16.519027709960938 ], [ -72.921806335449219, -16.518749237060547 ], [ -72.92236328125, -16.518749237060547 ], [ -72.92236328125, -16.519027709960938 ], [ -72.922637939453125, -16.519027709960938 ], [ -72.922637939453125, -16.519306182861328 ], [ -72.922920227050668, -16.519306182861328 ], [ -72.922920227050668, -16.519582748413086 ], [ -72.923469543456974, -16.519582748413086 ], [ -72.923469543456974, -16.519861221313477 ], [ -72.924026489257756, -16.519861221313477 ], [ -72.924026489257756, -16.519582748413086 ], [ -72.924308776855469, -16.519582748413086 ], [ -72.924308776855469, -16.519306182861328 ], [ -72.925140380859375, -16.519306182861328 ], [ -72.925140380859375, -16.519582748413086 ], [ -72.927360534667969, -16.519582748413086 ], [ -72.927360534667969, -16.519290924072152 ], [ -72.927360534667969, -16.519027709960938 ], [ -72.927635192871094, -16.519027709960938 ], [ -72.927635192871094, -16.518749237060547 ], [ -72.92791748046875, -16.518749237060547 ], [ -72.92791748046875, -16.519027709960938 ], [ -72.928192138671875, -16.519027709960938 ], [ -72.928192138671875, -16.519306182861328 ], [ -72.928474426269531, -16.519306182861328 ], [ -72.928474426269531, -16.519582748413086 ], [ -72.929031372070312, -16.519582748413086 ], [ -72.929031372070312, -16.519861221313477 ], [ -72.929862976074162, -16.519861221313477 ], [ -72.929862976074162, -16.520139694213867 ], [ -72.930419921874943, -16.520139694213867 ], [ -72.930419921874943, -16.519861221313477 ], [ -72.930694580078125, -16.519861221313477 ], [ -72.930694580078125, -16.519582748413086 ], [ -72.93096923828125, -16.519582748413086 ], [ -72.93096923828125, -16.519418716430607 ], [ -72.93096923828125, -16.519027709960938 ], [ -72.931251525878906, -16.519027709960938 ], [ -72.931251525878906, -16.518749237060547 ], [ -72.931526184082031, -16.518749237060547 ], [ -72.931526184082031, -16.519027709960938 ], [ -72.931808471679688, -16.519027709960938 ], [ -72.931808471679688, -16.518749237060547 ], [ -72.932357788085824, -16.518749237060547 ], [ -72.932357788085824, -16.518472671508732 ], [ -72.932914733886662, -16.518472671508732 ], [ -72.932914733886662, -16.518194198608285 ], [ -72.933471679687443, -16.518194198608285 ], [ -72.933471679687443, -16.517915725708008 ], [ -72.934028625488281, -16.517915725708008 ], [ -72.934028625488281, -16.518194198608285 ], [ -72.934303283691406, -16.518194198608285 ], [ -72.934303283691406, -16.518749237060547 ], [ -72.934585571289062, -16.518749237060547 ], [ -72.934585571289062, -16.519027709960938 ], [ -72.935142517089844, -16.519027709960938 ], [ -72.935142517089844, -16.519306182861328 ], [ -72.935417175292969, -16.519306182861328 ], [ -72.935417175292969, -16.519027709960938 ], [ -72.935691833496037, -16.519027709960938 ], [ -72.935691833496037, -16.518749237060547 ], [ -72.935974121093693, -16.518749237060547 ], [ -72.935974121093693, -16.519027709960938 ], [ -72.936248779296818, -16.519027709960938 ], [ -72.936248779296818, -16.519306182861328 ], [ -72.936531066894474, -16.519306182861328 ], [ -72.936531066894474, -16.519027709960938 ], [ -72.937362670898438, -16.519027709960938 ], [ -72.937362670898438, -16.518749237060547 ], [ -72.937637329101562, -16.518749237060547 ], [ -72.937637329101562, -16.518472671508732 ], [ -72.937919616699219, -16.518472671508732 ], [ -72.937919616699219, -16.517915725708008 ], [ -72.938468933105469, -16.517915725708008 ], [ -72.938468933105469, -16.517639160156193 ], [ -72.940414428710938, -16.517639160156193 ], [ -72.940414428710938, -16.517360687255803 ], [ -72.940696716308594, -16.517360687255803 ], [ -72.940696716308594, -16.517084121704102 ], [ -72.941253662109375, -16.517084121704102 ], [ -72.941253662109375, -16.516805648803711 ], [ -72.942085266113168, -16.516805648803711 ], [ -72.942085266113168, -16.51652717590332 ], [ -72.942359924316349, -16.51652717590332 ], [ -72.942359924316349, -16.516134262084961 ], [ -72.942359924316349, -16.515972137451172 ], [ -72.942527770996037, -16.515972137451172 ], [ -72.942642211914006, -16.515972137451172 ], [ -72.942642211914006, -16.51586723327631 ], [ -72.942642211914006, -16.515693664550781 ], [ -72.942825317382756, -16.515693664550781 ], [ -72.943473815917969, -16.515693664550781 ], [ -72.943473815917969, -16.515972137451172 ], [ -72.94403076171875, -16.515972137451172 ], [ -72.94403076171875, -16.516250610351562 ], [ -72.944305419921875, -16.516250610351562 ], [ -72.944305419921875, -16.51652717590332 ], [ -72.944580078125, -16.51652717590332 ], [ -72.944580078125, -16.516805648803711 ], [ -72.945137023925668, -16.516805648803711 ], [ -72.945137023925668, -16.517084121704102 ], [ -72.945419311523381, -16.517084121704102 ], [ -72.945419311523381, -16.517360687255803 ], [ -72.945693969726506, -16.517360687255803 ], [ -72.945693969726506, -16.517639160156193 ], [ -72.946250915527287, -16.517639160156193 ], [ -72.946250915527287, -16.517360687255803 ], [ -72.946525573730469, -16.517360687255803 ], [ -72.946525573730469, -16.517084121704102 ], [ -72.94708251953125, -16.517084121704102 ], [ -72.94708251953125, -16.516805648803711 ], [ -72.947639465332031, -16.516805648803711 ], [ -72.947639465332031, -16.517084121704102 ], [ -72.948196411132812, -16.517084121704102 ], [ -72.948196411132812, -16.516805648803711 ], [ -72.948753356933537, -16.516805648803711 ], [ -72.948753356933537, -16.51652717590332 ], [ -72.949028015136662, -16.51652717590332 ], [ -72.949028015136662, -16.516250610351562 ], [ -72.949150085449219, -16.516250610351562 ], [ -72.949302673339787, -16.516250610351562 ], [ -72.949302673339787, -16.515972137451172 ], [ -72.949859619140625, -16.515972137451172 ], [ -72.949859619140625, -16.515693664550781 ], [ -72.950416564941406, -16.515693664550781 ], [ -72.950416564941406, -16.515417098998967 ], [ -72.950691223144531, -16.515417098998967 ], [ -72.950691223144531, -16.515693664550781 ], [ -72.951805114746037, -16.515693664550781 ], [ -72.951805114746037, -16.515827178955021 ], [ -72.951805114746037, -16.515972137451172 ], [ -72.952079772949162, -16.515972137451172 ], [ -72.952079772949162, -16.516250610351562 ], [ -72.952362060546818, -16.516250610351562 ], [ -72.952362060546818, -16.51652717590332 ], [ -72.952484130859261, -16.51652717590332 ], [ -72.952636718749943, -16.51652717590332 ], [ -72.952636718749943, -16.516805648803711 ], [ -72.952919006347656, -16.516805648803711 ], [ -72.952919006347656, -16.517084121704102 ], [ -72.953193664550781, -16.517084121704102 ], [ -72.953193664550781, -16.517360687255803 ], [ -72.953475952148438, -16.517360687255803 ], [ -72.953475952148438, -16.517084121704102 ], [ -72.954307556152344, -16.517084121704102 ], [ -72.954307556152344, -16.516805648803711 ], [ -72.954582214355355, -16.516805648803711 ], [ -72.954582214355355, -16.51652717590332 ], [ -72.954864501953011, -16.51652717590332 ], [ -72.954864501953011, -16.516250610351562 ], [ -72.955139160156193, -16.516250610351562 ], [ -72.955139160156193, -16.515972137451172 ], [ -72.955413818359318, -16.515972137451172 ], [ -72.955413818359318, -16.515693664550781 ], [ -72.955696105956974, -16.515693664550781 ], [ -72.955696105956974, -16.515417098998967 ], [ -72.955970764160156, -16.515417098998967 ], [ -72.955970764160156, -16.515138626098519 ], [ -72.956253051757812, -16.515138626098519 ], [ -72.956253051757812, -16.514862060546875 ], [ -72.956527709960938, -16.514862060546875 ], [ -72.956527709960938, -16.515138626098519 ], [ -72.956802368164062, -16.515138626098519 ], [ -72.956802368164062, -16.515693664550781 ], [ -72.957839965820312, -16.515693664550781 ], [ -72.958473205566349, -16.515693664550781 ], [ -72.958473205566349, -16.515417098998967 ], [ -72.959030151367131, -16.515417098998967 ], [ -72.959030151367131, -16.515693664550781 ], [ -72.959304809570312, -16.515693664550781 ], [ -72.959304809570312, -16.515972137451172 ], [ -72.959587097167969, -16.515972137451172 ], [ -72.959587097167969, -16.516250610351562 ], [ -72.960418701171875, -16.516250610351562 ], [ -72.960418701171875, -16.51652717590332 ], [ -72.960693359375, -16.51652717590332 ], [ -72.960693359375, -16.517915725708008 ], [ -72.960975646972656, -16.517915725708008 ], [ -72.960975646972656, -16.518194198608285 ], [ -72.960693359375, -16.518194198608285 ], [ -72.960693359375, -16.518472671508732 ], [ -72.960975646972656, -16.518472671508732 ], [ -72.960975646972656, -16.518749237060547 ], [ -72.961807250976506, -16.518749237060547 ], [ -72.961807250976506, -16.518472671508732 ], [ -72.962913513183594, -16.518472671508732 ], [ -72.962913513183594, -16.518194198608285 ], [ -72.96319580078125, -16.518194198608285 ], [ -72.96319580078125, -16.517639160156193 ], [ -72.963470458984375, -16.517639160156193 ], [ -72.963470458984375, -16.517360687255803 ], [ -72.964027404785156, -16.517360687255803 ], [ -72.964027404785156, -16.517639160156193 ], [ -72.964302062988224, -16.517639160156193 ], [ -72.964302062988224, -16.517915725708008 ], [ -72.965415954589787, -16.517915725708008 ], [ -72.965415954589787, -16.517360687255803 ], [ -72.965690612792969, -16.517360687255803 ], [ -72.9656982421875, -16.517084121704102 ], [ -72.965972900390625, -16.517084121704102 ], [ -72.965972900390625, -16.516805648803711 ], [ -72.96624755859375, -16.516805648803711 ], [ -72.96624755859375, -16.51652717590332 ], [ -72.966529846191406, -16.51652717590332 ], [ -72.966529846191406, -16.516250610351562 ], [ -72.966804504394531, -16.516250610351562 ], [ -72.966804504394531, -16.515972137451172 ], [ -72.967086791992188, -16.515972137451172 ], [ -72.967086791992188, -16.515693664550781 ], [ -72.967636108398381, -16.515693664550781 ], [ -72.967636108398381, -16.515972137451172 ], [ -72.967918395996037, -16.515972137451172 ], [ -72.967918395996037, -16.517084121704102 ], [ -72.96875, -16.517084121704102 ], [ -72.96875, -16.517360687255803 ], [ -72.969024658203125, -16.517360687255803 ], [ -72.969024658203125, -16.517639160156193 ], [ -72.969863891601562, -16.517639160156193 ], [ -72.969863891601562, -16.517360687255803 ], [ -72.970138549804688, -16.517360687255803 ], [ -72.970138549804688, -16.517084121704102 ], [ -72.970413208007699, -16.517084121704102 ], [ -72.970413208007699, -16.516805648803711 ], [ -72.970695495605355, -16.516805648803711 ], [ -72.970695495605355, -16.51652717590332 ], [ -72.971252441406193, -16.51652717590332 ], [ -72.971252441406193, -16.516250610351562 ], [ -72.9718017578125, -16.516250610351562 ], [ -72.9718017578125, -16.515417098998967 ], [ -72.972084045410156, -16.515417098998967 ], [ -72.972084045410156, -16.515138626098519 ], [ -72.9718017578125, -16.515138626098519 ], [ -72.9718017578125, -16.514583587646428 ], [ -72.971527099609318, -16.514583587646428 ], [ -72.971527099609318, -16.514028549194336 ], [ -72.9718017578125, -16.514028549194336 ], [ -72.9718017578125, -16.513750076293945 ], [ -72.972640991210938, -16.513750076293945 ], [ -72.972640991210938, -16.514028549194336 ], [ -72.973197937011719, -16.514028549194336 ], [ -72.973197937011719, -16.514305114746037 ], [ -72.973472595214844, -16.514305114746037 ], [ -72.973472595214844, -16.514028549194336 ], [ -72.974586486816349, -16.514028549194336 ], [ -72.974586486816349, -16.513750076293945 ], [ -72.975135803222656, -16.513750076293945 ], [ -72.975135803222656, -16.513471603393555 ], [ -72.975418090820312, -16.513471603393555 ], [ -72.975418090820312, -16.513750076293945 ], [ -72.975692749023438, -16.513750076293945 ], [ -72.975692749023438, -16.514028549194336 ], [ -72.975975036621094, -16.514028549194336 ], [ -72.975975036621094, -16.51441764831543 ], [ -72.975975036621094, -16.514583587646428 ], [ -72.975692749023438, -16.514583587646428 ], [ -72.975692749023438, -16.514862060546875 ], [ -72.975418090820312, -16.514862060546875 ], [ -72.975418090820312, -16.515138626098519 ], [ -72.975135803222656, -16.515138626098519 ], [ -72.975135803222656, -16.515693664550781 ], [ -72.975418090820312, -16.515693664550781 ], [ -72.975418090820312, -16.51652717590332 ], [ -72.976806640625, -16.51652717590332 ], [ -72.976806640625, -16.516250610351562 ], [ -72.977363586425724, -16.516250610351562 ], [ -72.977363586425724, -16.515972137451172 ], [ -72.977638244628849, -16.515972137451172 ], [ -72.977638244628849, -16.516250610351562 ], [ -72.977912902831974, -16.516250610351562 ], [ -72.977912902831974, -16.51652717590332 ], [ -72.978195190429631, -16.51652717590332 ], [ -72.978195190429631, -16.516805648803711 ], [ -72.979026794433594, -16.516805648803711 ], [ -72.979026794433594, -16.517084121704102 ], [ -72.97930908203125, -16.517084121704102 ], [ -72.97930908203125, -16.516805648803711 ], [ -72.979583740234375, -16.516805648803711 ], [ -72.979583740234375, -16.517084121704102 ], [ -72.9798583984375, -16.517084121704102 ], [ -72.9798583984375, -16.516805648803711 ], [ -72.980972290039006, -16.516805648803711 ], [ -72.980972290039006, -16.51652717590332 ], [ -72.981361389160099, -16.51652717590332 ], [ -72.981529235839844, -16.51652717590332 ], [ -72.981529235839844, -16.516250610351562 ], [ -72.984024047851506, -16.516250610351562 ], [ -72.984024047851506, -16.51652717590332 ], [ -72.984580993652344, -16.51652717590332 ], [ -72.984580993652344, -16.516250610351562 ], [ -72.98486328125, -16.516250610351562 ], [ -72.98486328125, -16.515972137451172 ], [ -72.985420227050781, -16.515972137451172 ], [ -72.985420227050781, -16.515693664550781 ], [ -72.985969543457031, -16.515693664550781 ], [ -72.985969543457031, -16.515972137451172 ], [ -72.986526489257699, -16.515972137451172 ], [ -72.986526489257699, -16.515693664550781 ], [ -72.987083435058537, -16.515693664550781 ], [ -72.987083435058537, -16.515417098998967 ], [ -72.987358093261662, -16.515417098998967 ], [ -72.987358093261662, -16.515138626098519 ], [ -72.987640380859318, -16.515138626098519 ], [ -72.987640380859318, -16.514862060546875 ], [ -72.9879150390625, -16.514860153198242 ], [ -72.9879150390625, -16.514305114746037 ], [ -72.988197326660156, -16.514305114746037 ], [ -72.988197326660156, -16.514028549194336 ], [ -72.988471984863281, -16.514028549194336 ], [ -72.988471984863281, -16.513471603393555 ], [ -72.988746643066406, -16.513471603393555 ], [ -72.988746643066406, -16.512914657592717 ], [ -72.989028930664062, -16.512914657592717 ], [ -72.989028930664062, -16.512361526489201 ], [ -72.989303588867188, -16.512361526489201 ], [ -72.989303588867188, -16.51208305358881 ], [ -72.989585876464844, -16.51208305358881 ], [ -72.989585876464844, -16.510696411132756 ], [ -72.989860534667912, -16.510696411132756 ], [ -72.989860534667912, -16.510414123535099 ], [ -72.990417480468693, -16.510414123535099 ], [ -72.990417480468693, -16.510696411132756 ], [ -72.990692138671818, -16.510696411132756 ], [ -72.990692138671818, -16.510974884033146 ], [ -72.993469238281193, -16.510974884033146 ], [ -72.993469238281193, -16.510696411132756 ], [ -72.994308471679688, -16.510696411132756 ], [ -72.994308471679688, -16.510974884033146 ], [ -72.995697021484375, -16.510974884033146 ], [ -72.995697021484375, -16.510696411132756 ], [ -72.995971679687386, -16.510696411132756 ], [ -72.995971679687386, -16.510414123535099 ], [ -72.996528625488224, -16.510414123535099 ], [ -72.996528625488224, -16.510139465332031 ], [ -72.997085571289006, -16.510139465332031 ], [ -72.997085571289006, -16.509860992431641 ], [ -72.997360229492188, -16.509860992431641 ], [ -72.997360229492188, -16.50958251953125 ], [ -72.997642517089844, -16.50958251953125 ], [ -72.997642517089844, -16.509304046630859 ], [ -72.997917175292969, -16.509304046630859 ], [ -72.997917175292969, -16.509027481079045 ], [ -72.998191833496094, -16.509027481079045 ], [ -72.998191833496094, -16.508750915527344 ], [ -72.99847412109375, -16.508750915527344 ], [ -72.99847412109375, -16.508472442626953 ], [ -72.998748779296875, -16.508472442626953 ], [ -72.998748779296875, -16.50819206237793 ], [ -72.999862670898381, -16.50819206237793 ], [ -73.000137329101506, -16.50819206237793 ], [ -73.001251220703125, -16.50819206237793 ], [ -73.001251220703125, -16.507917404174805 ], [ -73.001808166503906, -16.507917404174805 ], [ -73.001808166503906, -16.507638931274414 ], [ -73.002357482910043, -16.507638931274414 ], [ -73.002357482910043, -16.507360458374023 ], [ -73.002914428710881, -16.507360458374023 ], [ -73.002914428710881, -16.507083892822152 ], [ -73.003334045410156, -16.507083892822152 ], [ -73.003753662109318, -16.507083892822152 ], [ -73.003753662109318, -16.506805419921875 ], [ -73.0040283203125, -16.506805419921875 ], [ -73.0040283203125, -16.507360458374023 ], [ -73.005973815917912, -16.507360458374023 ], [ -73.005973815917912, -16.508750915527344 ], [ -73.006248474121037, -16.508750915527344 ], [ -73.006248474121037, -16.509027481079045 ], [ -73.006530761718693, -16.509027481079045 ], [ -73.006530761718693, -16.509304046630859 ], [ -73.006805419921818, -16.509304046630859 ], [ -73.006805419921818, -16.50958251953125 ], [ -73.007080078125, -16.50958251953125 ], [ -73.007080078125, -16.509860992431641 ], [ -73.00875091552723, -16.509860992431641 ], [ -73.00875091552723, -16.510139465332031 ], [ -73.009307861328068, -16.510139465332031 ], [ -73.009307861328068, -16.510414123535099 ], [ -73.009811401367188, -16.510414123535099 ], [ -73.010139465332031, -16.510414123535099 ], [ -73.010139465332031, -16.510696411132756 ], [ -73.010414123535156, -16.510696411132756 ], [ -73.010414123535156, -16.510974884033146 ], [ -73.010696411132812, -16.510974884033146 ], [ -73.010696411132812, -16.511077880859318 ], [ -73.010696411132812, -16.511249542236271 ], [ -73.011253356933594, -16.511249542236271 ], [ -73.011253356933594, -16.510974884033146 ], [ -73.012306213378906, -16.510974884033146 ], [ -73.012641906738224, -16.510974884033146 ], [ -73.012641906738224, -16.510696411132756 ], [ -73.012916564941349, -16.510696411132756 ], [ -73.012916564941349, -16.510414123535099 ], [ -73.013191223144531, -16.510414123535099 ], [ -73.013191223144531, -16.510139465332031 ], [ -73.013748168945312, -16.510139465332031 ], [ -73.013748168945312, -16.509860992431641 ], [ -73.014030456542969, -16.509860992431641 ], [ -73.014030456542969, -16.50958251953125 ], [ -73.014442443847599, -16.50958251953125 ], [ -73.014579772949219, -16.50958251953125 ], [ -73.014579772949219, -16.509304046630859 ], [ -73.015136718749886, -16.509304046630859 ], [ -73.015136718749886, -16.509027481079045 ], [ -73.015975952148381, -16.509027481079045 ], [ -73.015975952148381, -16.508750915527344 ], [ -73.016525268554688, -16.508750915527344 ], [ -73.016525268554688, -16.508472442626953 ], [ -73.017364501953125, -16.508472442626953 ], [ -73.017364501953125, -16.50819206237793 ], [ -73.017913818359375, -16.50819206237793 ], [ -73.017913818359375, -16.507917404174805 ], [ -73.018196105957031, -16.507917404174805 ], [ -73.018196105957031, -16.507808685302678 ], [ -73.018196105957031, -16.507638931274414 ], [ -73.018470764160099, -16.507638931274414 ], [ -73.018470764160099, -16.507360458374023 ], [ -73.018859863281136, -16.507360458374023 ], [ -73.019027709960881, -16.507360458374023 ], [ -73.019027709960881, -16.507207870483342 ], [ -73.019027709960881, -16.507083892822152 ], [ -73.0191650390625, -16.507083892822152 ], [ -73.019584655761662, -16.507083892822152 ], [ -73.019584655761662, -16.506805419921875 ], [ -73.019859313964844, -16.506805419921875 ], [ -73.019859313964844, -16.506475448608398 ], [ -73.019859313964844, -16.50625038146967 ], [ -73.0201416015625, -16.50625038146967 ], [ -73.0201416015625, -16.505971908569279 ], [ -73.020416259765625, -16.505971908569279 ], [ -73.020416259765625, -16.505416870117188 ], [ -73.02069091796875, -16.505416870117188 ], [ -73.02069091796875, -16.50513839721674 ], [ -73.020973205566406, -16.50513839721674 ], [ -73.020973205566406, -16.504583358764648 ], [ -73.022087097167912, -16.504583358764648 ], [ -73.022087097167912, -16.504304885864258 ], [ -73.023193359375, -16.504304885864258 ], [ -73.023193359375, -16.504028320312386 ], [ -73.023475646972656, -16.504028320312386 ], [ -73.023475646972656, -16.503749847412109 ], [ -73.024307250976562, -16.503749847412109 ], [ -73.024307250976562, -16.503471374511719 ], [ -73.024581909179574, -16.503471374511719 ], [ -73.024581909179574, -16.503194808959904 ], [ -73.025138854980412, -16.503194808959904 ], [ -73.025138854980412, -16.502916336059513 ], [ -73.025413513183537, -16.502916336059513 ], [ -73.025413513183537, -16.502639770507812 ], [ -73.025764465332031, -16.502639770507812 ], [ -73.025970458984375, -16.502639770507812 ], [ -73.025970458984375, -16.502361297607422 ], [ -73.026527404785156, -16.502361297607422 ], [ -73.026527404785156, -16.502082824707031 ], [ -73.027084350585938, -16.502082824707031 ], [ -73.027084350585938, -16.501806259155273 ], [ -73.027641296386719, -16.501806259155273 ], [ -73.027641296386719, -16.502082824707031 ], [ -73.028472900390568, -16.502082824707031 ], [ -73.028472900390568, -16.501806259155273 ], [ -73.028701782226562, -16.501806259155273 ], [ -73.029029846191349, -16.501806259155273 ], [ -73.029029846191349, -16.501993179321289 ], [ -73.029029846191349, -16.502361297607422 ], [ -73.032638549804688, -16.502361297607422 ], [ -73.032638549804688, -16.501251220703068 ], [ -73.032638549804688, -16.500417709350529 ], [ -73.033195495605469, -16.500417709350529 ], [ -73.033195495605469, -16.50069427490223 ], [ -73.033470153808594, -16.50069427490223 ], [ -73.033470153808594, -16.500972747802678 ], [ -73.03375244140625, -16.500972747802678 ], [ -73.03375244140625, -16.501249313354492 ], [ -73.034027099609375, -16.501249313354492 ], [ -73.034027099609375, -16.500972747802678 ], [ -73.034301757812443, -16.500972747802678 ], [ -73.034301757812443, -16.500139236450138 ], [ -73.034584045410099, -16.500139236450138 ], [ -73.034584045410099, -16.499584197998047 ], [ -73.034858703613224, -16.499584197998047 ], [ -73.034858703613224, -16.499307632446175 ], [ -73.035415649414006, -16.499307632446175 ], [ -73.035415649414006, -16.499584197998047 ], [ -73.039306640625, -16.499584197998047 ], [ -73.039306640625, -16.499860763549748 ], [ -73.039863586425781, -16.499860763549748 ], [ -73.039863586425781, -16.499584197998047 ], [ -73.040412902831918, -16.499584197998047 ], [ -73.040412902831918, -16.49943733215332 ], [ -73.040412902831918, -16.499307632446175 ], [ -73.040863037109318, -16.499307632446175 ], [ -73.040969848632756, -16.499307632446175 ], [ -73.040969848632756, -16.499025344848519 ], [ -73.04119873046875, -16.499025344848519 ], [ -73.041809082031193, -16.499025344848519 ], [ -73.041809082031193, -16.499307632446175 ], [ -73.042640686035156, -16.499307632446175 ], [ -73.042640686035156, -16.499860763549748 ], [ -73.044586181640568, -16.499860763549748 ], [ -73.044586181640568, -16.499307632446175 ], [ -73.044860839843693, -16.499307632446175 ], [ -73.044860839843693, -16.499025344848519 ], [ -73.045692443847656, -16.499025344848519 ], [ -73.045692443847656, -16.499307632446175 ], [ -73.046524047851562, -16.499307632446175 ], [ -73.046524047851562, -16.499584197998047 ], [ -73.047920227050724, -16.499584197998047 ], [ -73.047920227050724, -16.499860763549748 ], [ -73.048194885253849, -16.499860763549748 ], [ -73.048194885253849, -16.499584197998047 ], [ -73.048469543457031, -16.499584197998047 ], [ -73.048469543457031, -16.499307632446175 ], [ -73.048751831054688, -16.499307632446175 ], [ -73.048751831054688, -16.499025344848519 ], [ -73.049026489257812, -16.499025344848519 ], [ -73.049026489257812, -16.498750686645508 ], [ -73.049308776855469, -16.498750686645508 ], [ -73.049308776855469, -16.498472213745117 ], [ -73.049858093261719, -16.498472213745117 ], [ -73.049858093261719, -16.498195648193303 ], [ -73.050140380859261, -16.498195648193303 ], [ -73.050140380859261, -16.497915267944336 ], [ -73.050849914550781, -16.497915267944336 ], [ -73.052360534667969, -16.497915267944336 ], [ -73.052360534667969, -16.497638702392464 ], [ -73.05291748046875, -16.497638702392464 ], [ -73.05291748046875, -16.497360229492188 ], [ -73.053192138671761, -16.497360229492188 ], [ -73.053192138671761, -16.496931076049805 ], [ -73.053192138671761, -16.496646881103516 ], [ -73.053192138671761, -16.496334075927734 ], [ -73.053192138671761, -16.4959716796875 ], [ -73.053474426269418, -16.4959716796875 ], [ -73.053474426269418, -16.493749618530217 ], [ -73.053192138671761, -16.493749618530217 ], [ -73.053192138671761, -16.492639541625977 ], [ -73.05291748046875, -16.492639541625977 ], [ -73.05291748046875, -16.49152755737299 ], [ -73.052635192871094, -16.49152755737299 ], [ -73.052635192871094, -16.490694046020451 ], [ -73.05291748046875, -16.490694046020451 ], [ -73.05291748046875, -16.490140914916935 ], [ -73.053192138671761, -16.490140914916935 ], [ -73.053192138671761, -16.489860534667969 ], [ -73.053474426269418, -16.489860534667969 ], [ -73.053474426269418, -16.489583969116097 ], [ -73.053749084472599, -16.489583969116097 ], [ -73.053749084472599, -16.489028930664006 ], [ -73.054031372070256, -16.489028930664006 ], [ -73.054031372070256, -16.488750457763615 ], [ -73.054306030273381, -16.488750457763615 ], [ -73.054306030273381, -16.489028930664006 ], [ -73.054580688476562, -16.489028930664006 ], [ -73.054580688476562, -16.488750457763615 ], [ -73.05596923828125, -16.488750457763615 ], [ -73.05596923828125, -16.489028930664006 ], [ -73.056808471679631, -16.489028930664006 ], [ -73.056808471679631, -16.488750457763615 ], [ -73.057083129882756, -16.488750457763615 ], [ -73.057083129882756, -16.488193511962834 ], [ -73.057357788085881, -16.488193511962834 ], [ -73.057357788085881, -16.487361907958984 ], [ -73.057914733886719, -16.487361907958984 ], [ -73.057914733886719, -16.485971450805664 ], [ -73.058197021484375, -16.485971450805664 ], [ -73.058197021484375, -16.485696792602539 ], [ -73.0584716796875, -16.485696792602539 ], [ -73.0584716796875, -16.485414505004883 ], [ -73.059028625488281, -16.485414505004883 ], [ -73.059028625488281, -16.485137939453068 ], [ -73.059303283691406, -16.485137939453068 ], [ -73.059303283691406, -16.485414505004883 ], [ -73.060691833496037, -16.485414505004883 ], [ -73.060691833496037, -16.484584808349609 ], [ -73.060974121093693, -16.484584808349609 ], [ -73.060974121093693, -16.484304428100529 ], [ -73.062637329101562, -16.484304428100529 ], [ -73.062637329101562, -16.484027862548828 ], [ -73.063468933105412, -16.484027862548828 ], [ -73.063468933105412, -16.483474731445312 ], [ -73.063751220703068, -16.483474731445312 ], [ -73.063751220703068, -16.483192443847656 ], [ -73.063468933105412, -16.483192443847656 ], [ -73.063468933105412, -16.482360839843693 ], [ -73.064025878906193, -16.482360839843693 ], [ -73.064025878906193, -16.482639312744084 ], [ -73.064857482910156, -16.482639312744084 ], [ -73.064857482910156, -16.482915878295898 ], [ -73.065414428710938, -16.482915878295898 ], [ -73.065414428710938, -16.482360839843693 ], [ -73.066253662109261, -16.482360839843693 ], [ -73.066253662109261, -16.482639312744084 ], [ -73.066528320312443, -16.482639312744084 ], [ -73.066528320312443, -16.482360839843693 ], [ -73.068191528320312, -16.482360839843693 ], [ -73.068191528320312, -16.482639312744084 ], [ -73.068473815917969, -16.482639312744084 ], [ -73.068473815917969, -16.482360839843693 ], [ -73.068748474121094, -16.482360839843693 ], [ -73.068748474121094, -16.482082366943303 ], [ -73.06903076171875, -16.482082366943303 ], [ -73.06903076171875, -16.481805801391602 ], [ -73.069305419921761, -16.481805801391602 ], [ -73.069305419921761, -16.481527328491211 ], [ -73.069580078124943, -16.481527328491211 ], [ -73.069580078124943, -16.480693817138672 ], [ -73.070419311523381, -16.480693817138672 ], [ -73.070419311523381, -16.480417251586857 ], [ -73.070968627929688, -16.480417251586857 ], [ -73.070968627929688, -16.479860305786133 ], [ -73.071250915527344, -16.479860305786133 ], [ -73.071250915527344, -16.479583740234318 ], [ -73.071525573730469, -16.479583740234318 ], [ -73.071525573730469, -16.479028701782227 ], [ -73.071807861328125, -16.479028701782227 ], [ -73.071807861328125, -16.477916717529297 ], [ -73.07208251953125, -16.477916717529297 ], [ -73.07208251953125, -16.477361679077092 ], [ -73.074302673339844, -16.477361679077092 ], [ -73.074302673339844, -16.477083206176701 ], [ -73.0745849609375, -16.477083206176701 ], [ -73.0745849609375, -16.476528167724553 ], [ -73.074859619140625, -16.476528167724553 ], [ -73.074859619140625, -16.475973129272461 ], [ -73.075416564941406, -16.475973129272461 ], [ -73.075416564941406, -16.47569465637207 ], [ -73.076248168945256, -16.47569465637207 ], [ -73.076248168945256, -16.47541618347168 ], [ -73.077362060546875, -16.47541618347168 ], [ -73.077362060546875, -16.475139617919922 ], [ -73.07763671875, -16.475139617919922 ], [ -73.07763671875, -16.474861145019531 ], [ -73.077919006347656, -16.474861145019531 ], [ -73.077919006347656, -16.475139617919922 ], [ -73.078475952148438, -16.475139617919922 ], [ -73.078475952148438, -16.474861145019531 ], [ -73.078750610351449, -16.474861145019531 ], [ -73.078750610351449, -16.475139617919922 ], [ -73.079307556152287, -16.475139617919922 ], [ -73.079307556152287, -16.474861145019531 ], [ -73.079864501953068, -16.474861145019531 ], [ -73.079864501953068, -16.474582672119141 ], [ -73.08013916015625, -16.474582672119141 ], [ -73.08013916015625, -16.474306106567326 ], [ -73.080413818359375, -16.474306106567326 ], [ -73.080413818359375, -16.473472595214844 ], [ -73.080696105957031, -16.473472595214844 ], [ -73.080696105957031, -16.472639083862305 ], [ -73.080970764160156, -16.472639083862305 ], [ -73.080970764160156, -16.472360610961914 ], [ -73.081527709960938, -16.472360610961914 ], [ -73.081527709960938, -16.472085952758789 ], [ -73.081802368163949, -16.472085952758789 ], [ -73.081802368163949, -16.471807479858342 ], [ -73.082084655761605, -16.471807479858342 ], [ -73.082084655761605, -16.471525192260685 ], [ -73.082641601562443, -16.471525192260685 ], [ -73.082641601562443, -16.47125053405756 ], [ -73.082916259765568, -16.47125053405756 ], [ -73.082916259765568, -16.47097206115717 ], [ -73.08319091796875, -16.47097206115717 ], [ -73.08319091796875, -16.470693588256779 ], [ -73.083473205566406, -16.470693588256779 ], [ -73.083473205566406, -16.470525741577148 ], [ -73.083473205566406, -16.470415115356332 ], [ -73.083641052246094, -16.470415115356332 ], [ -73.084030151367188, -16.470415115356332 ], [ -73.084030151367188, -16.470138549804631 ], [ -73.084587097167969, -16.470138549804631 ], [ -73.084587097167969, -16.469863891601506 ], [ -73.085136413574105, -16.469863891601506 ], [ -73.085136413574105, -16.469442367553654 ], [ -73.085136413574105, -16.469303131103459 ], [ -73.085350036621094, -16.469303131103459 ], [ -73.085693359374943, -16.469303131103459 ], [ -73.085693359374943, -16.469028472900277 ], [ -73.086250305175724, -16.469028472900277 ], [ -73.086250305175724, -16.46875 ], [ -73.086524963378906, -16.46875 ], [ -73.086524963378906, -16.468471527099609 ], [ -73.086631774902287, -16.468471527099609 ], [ -73.086807250976562, -16.468471527099609 ], [ -73.086807250976562, -16.468357086181584 ], [ -73.086807250976562, -16.468193054199219 ], [ -73.087059020996094, -16.468193054199219 ], [ -73.087364196777344, -16.468193054199219 ], [ -73.087364196777344, -16.467916488647404 ], [ -73.087486267089787, -16.467916488647404 ], [ -73.087913513183594, -16.467916488647404 ], [ -73.087913513183594, -16.467638015747013 ], [ -73.08819580078125, -16.467638015747013 ], [ -73.08819580078125, -16.467361450195312 ], [ -73.088470458984318, -16.467361450195312 ], [ -73.088470458984318, -16.467081069946289 ], [ -73.089027404785099, -16.467081069946289 ], [ -73.089027404785099, -16.466806411743164 ], [ -73.089302062988224, -16.466806411743164 ], [ -73.089302062988224, -16.466438293456974 ], [ -73.089302062988224, -16.466249465942383 ], [ -73.089523315429574, -16.466249465942383 ], [ -73.089859008789062, -16.466249465942383 ], [ -73.089859008789062, -16.465972900390568 ], [ -73.090415954589844, -16.465972900390568 ], [ -73.090415954589844, -16.465694427490121 ], [ -73.090690612792969, -16.465694427490121 ], [ -73.0906982421875, -16.46523475646967 ], [ -73.0906982421875, -16.464860916137638 ], [ -73.090972900390625, -16.464860916137638 ], [ -73.090972900390625, -16.464582443237248 ], [ -73.091529846191293, -16.464582443237248 ], [ -73.091529846191293, -16.464305877685547 ], [ -73.091804504394474, -16.464305877685547 ], [ -73.091804504394474, -16.464027404785156 ], [ -73.092086791992131, -16.464027404785156 ], [ -73.092361450195256, -16.464027404785156 ], [ -73.092361450195256, -16.463750839233398 ], [ -73.092918395996094, -16.463750839233398 ], [ -73.092918395996094, -16.463310241699105 ], [ -73.092918395996094, -16.463193893432617 ], [ -73.093055725097543, -16.463193893432617 ], [ -73.093193054199219, -16.463193893432617 ], [ -73.093193054199219, -16.463071823120004 ], [ -73.093193054199219, -16.462917327880803 ], [ -73.093376159667969, -16.462917327880803 ], [ -73.09375, -16.462917327880803 ], [ -73.09375, -16.462591171264535 ], [ -73.09375, -16.462360382080078 ], [ -73.094024658203125, -16.462360382080078 ], [ -73.094024658203125, -16.462083816528263 ], [ -73.094306945800781, -16.462083816528263 ], [ -73.094306945800781, -16.461805343627873 ], [ -73.094657897949162, -16.461805343627873 ], [ -73.094863891601449, -16.461805343627873 ], [ -73.094863891601449, -16.461627960205078 ], [ -73.094863891601449, -16.461528778076172 ], [ -73.094978332519531, -16.461528778076172 ], [ -73.095138549804631, -16.461528778076172 ], [ -73.095138549804631, -16.461389541625977 ], [ -73.095138549804631, -16.460971832275391 ], [ -73.095413208007756, -16.460971832275391 ], [ -73.095413208007756, -16.460695266723633 ], [ -73.095970153808594, -16.460695266723633 ], [ -73.095970153808594, -16.460418701171818 ], [ -73.09625244140625, -16.460418701171818 ], [ -73.09625244140625, -16.460136413574162 ], [ -73.096458435058537, -16.460136413574162 ], [ -73.0968017578125, -16.460136413574162 ], [ -73.0968017578125, -16.459861755371037 ], [ -73.097358703613281, -16.459861755371037 ], [ -73.097358703613281, -16.459583282470646 ], [ -73.097640991210938, -16.459583282470646 ], [ -73.097640991210938, -16.459016799926758 ], [ -73.097640991210938, -16.458749771118107 ], [ -73.097923278808594, -16.458749771118107 ], [ -73.098197937011662, -16.458749771118107 ], [ -73.098197937011662, -16.458490371703988 ], [ -73.098197937011662, -16.458196640014592 ], [ -73.098472595214787, -16.458196640014592 ], [ -73.098472595214787, -16.457914352416935 ], [ -73.098808288574219, -16.457914352416935 ], [ -73.09930419921875, -16.457914352416935 ], [ -73.09930419921875, -16.457361221313477 ], [ -73.099861145019531, -16.457361221313477 ], [ -73.099861145019531, -16.457082748413086 ], [ -73.100135803222656, -16.457082748413086 ], [ -73.100135803222656, -16.456804275512695 ], [ -73.100692749023438, -16.456804275512695 ], [ -73.100692749023438, -16.456527709960881 ], [ -73.101249694824162, -16.456527709960881 ], [ -73.101249694824162, -16.455974578857422 ], [ -73.101112365722656, -16.455974578857422 ], [ -73.100975036621094, -16.455974578857422 ], [ -73.100975036621094, -16.455692291259766 ], [ -73.101493835449219, -16.455692291259766 ], [ -73.101806640624943, -16.455692291259766 ], [ -73.101806640624943, -16.455415725707951 ], [ -73.102081298828068, -16.455415725707951 ], [ -73.102081298828068, -16.45513916015625 ], [ -73.102516174316406, -16.45513916015625 ], [ -73.102638244628906, -16.45513916015625 ], [ -73.102638244628906, -16.454860687255859 ], [ -73.102912902832031, -16.454860687255859 ], [ -73.102912902832031, -16.454582214355469 ], [ -73.103569030761719, -16.454582214355469 ], [ -73.103752136230469, -16.454582214355469 ], [ -73.103752136230469, -16.454460144042969 ], [ -73.103752136230469, -16.45402717590332 ], [ -73.104385375976506, -16.45402717590332 ], [ -73.105140686035099, -16.45402717590332 ], [ -73.105140686035099, -16.453750610351506 ], [ -73.106529235839844, -16.453750610351506 ], [ -73.106529235839844, -16.453470230102539 ], [ -73.107086181640625, -16.453470230102539 ], [ -73.107086181640625, -16.453193664550724 ], [ -73.107917785644474, -16.453193664550724 ], [ -73.107917785644474, -16.452917098999023 ], [ -73.108749389648438, -16.452917098999023 ], [ -73.108749389648438, -16.453193664550724 ], [ -73.109306335449219, -16.453193664550724 ], [ -73.109306335449219, -16.453470230102539 ], [ -73.109580993652344, -16.453470230102539 ], [ -73.109580993652344, -16.453750610351506 ], [ -73.10986328125, -16.453750610351506 ], [ -73.10986328125, -16.45402717590332 ], [ -73.110137939453125, -16.45402717590332 ], [ -73.110137939453125, -16.454305648803711 ], [ -73.110420227050781, -16.454305648803711 ], [ -73.110420227050781, -16.454582214355469 ], [ -73.113471984863281, -16.454582214355469 ], [ -73.113471984863281, -16.454305648803711 ], [ -73.113746643066293, -16.454305648803711 ], [ -73.113746643066293, -16.45402717590332 ], [ -73.114303588867131, -16.45402717590332 ], [ -73.114303588867131, -16.454305648803711 ], [ -73.114585876464787, -16.454305648803711 ], [ -73.114585876464787, -16.454582214355469 ], [ -73.115692138671875, -16.454582214355469 ], [ -73.115692138671875, -16.454305648803711 ], [ -73.116531372070312, -16.454305648803711 ], [ -73.116531372070312, -16.45402717590332 ], [ -73.117919921874943, -16.45402717590332 ], [ -73.117919921874943, -16.454305648803711 ], [ -73.118194580078068, -16.454305648803711 ], [ -73.118194580078068, -16.45402717590332 ], [ -73.119026184082031, -16.45402717590332 ], [ -73.119026184082031, -16.453750610351506 ], [ -73.120414733886662, -16.453750610351506 ], [ -73.120414733886662, -16.453193664550724 ], [ -73.120697021484318, -16.453193664550724 ], [ -73.120697021484318, -16.452917098999023 ], [ -73.120971679687443, -16.452917098999023 ], [ -73.120971679687443, -16.452360153198185 ], [ -73.121528625488281, -16.452360153198185 ], [ -73.121528625488281, -16.452083587646484 ], [ -73.122360229492188, -16.452083587646484 ], [ -73.122360229492188, -16.452638626098576 ], [ -73.122917175292969, -16.452638626098576 ], [ -73.122917175292969, -16.452360153198185 ], [ -73.122642517089844, -16.452360153198185 ], [ -73.122642517089844, -16.452083587646484 ], [ -73.122917175292969, -16.452083587646484 ], [ -73.122917175292969, -16.451805114746094 ], [ -73.12319183349598, -16.451805114746094 ], [ -73.12319183349598, -16.451528549194222 ], [ -73.123474121093636, -16.451528549194222 ], [ -73.123474121093636, -16.451805114746094 ], [ -73.124031066894474, -16.451805114746094 ], [ -73.124031066894474, -16.450971603393555 ], [ -73.124305725097599, -16.450971603393555 ], [ -73.124305725097599, -16.451250076293945 ], [ -73.124580383300781, -16.451250076293945 ], [ -73.124580383300781, -16.451805114746094 ], [ -73.124862670898438, -16.451805114746094 ], [ -73.124862670898438, -16.451250076293945 ], [ -73.125137329101562, -16.451250076293945 ], [ -73.125137329101562, -16.451528549194222 ], [ -73.125968933105469, -16.451528549194222 ], [ -73.125968933105469, -16.451805114746094 ], [ -73.126525878906136, -16.451805114746094 ], [ -73.126525878906136, -16.451250076293945 ], [ -73.126808166503849, -16.451250076293945 ], [ -73.126808166503849, -16.451805114746094 ], [ -73.127082824706974, -16.451805114746094 ], [ -73.127082824706974, -16.452083587646484 ], [ -73.127357482910099, -16.452083587646484 ], [ -73.127357482910099, -16.451805114746094 ], [ -73.127639770507756, -16.451805114746094 ], [ -73.127639770507756, -16.451528549194222 ], [ -73.127914428710938, -16.451528549194222 ], [ -73.127914428710938, -16.452083587646484 ], [ -73.127639770507756, -16.452083587646484 ], [ -73.127639770507756, -16.452360153198185 ], [ -73.128471374511719, -16.452360153198185 ], [ -73.128471374511719, -16.452083587646484 ], [ -73.129302978515625, -16.452083587646484 ], [ -73.129302978515625, -16.451528549194222 ], [ -73.1290283203125, -16.451528549194222 ], [ -73.1290283203125, -16.450971603393555 ], [ -73.128753662109375, -16.450971603393555 ], [ -73.128753662109375, -16.45069503784174 ], [ -73.128471374511719, -16.45069503784174 ], [ -73.128471374511719, -16.450416564941349 ], [ -73.128753662109375, -16.450416564941349 ], [ -73.128753662109375, -16.450138092040959 ], [ -73.1290283203125, -16.450138092040959 ], [ -73.1290283203125, -16.45069503784174 ], [ -73.129302978515625, -16.45069503784174 ], [ -73.129302978515625, -16.451250076293945 ], [ -73.129585266113281, -16.451250076293945 ], [ -73.129585266113281, -16.451528549194222 ], [ -73.130973815917912, -16.451528549194222 ], [ -73.130973815917912, -16.451250076293945 ], [ -73.13153076171875, -16.451250076293945 ], [ -73.13153076171875, -16.45069503784174 ], [ -73.131805419921875, -16.45069503784174 ], [ -73.131805419921875, -16.450138092040959 ], [ -73.132080078125, -16.450138092040959 ], [ -73.132080078125, -16.449583053588867 ], [ -73.132362365722656, -16.449583053588867 ], [ -73.132362365722656, -16.449306488037109 ], [ -73.132919311523324, -16.44930458068842 ], [ -73.132919311523324, -16.449029922485295 ], [ -73.133193969726506, -16.449029922485295 ], [ -73.133193969726506, -16.448413848876896 ], [ -73.133193969726506, -16.447639465331974 ], [ -73.133468627929631, -16.447639465331974 ], [ -73.133468627929631, -16.446527481079102 ], [ -73.133750915527287, -16.446527481079102 ], [ -73.133750915527287, -16.446250915527344 ], [ -73.134025573730412, -16.446250915527344 ], [ -73.134025573730412, -16.445972442626953 ], [ -73.134864807128906, -16.445972442626953 ], [ -73.134864807128906, -16.446144104003793 ], [ -73.134864807128906, -16.446250915527344 ], [ -73.135139465332031, -16.446250915527344 ], [ -73.135139465332031, -16.446527481079102 ], [ -73.135696411132812, -16.446527481079102 ], [ -73.135696411132812, -16.446250915527344 ], [ -73.135971069335824, -16.446250915527344 ], [ -73.135971069335824, -16.445972442626953 ], [ -73.136528015136662, -16.445972442626953 ], [ -73.136528015136662, -16.445695877075138 ], [ -73.136802673339787, -16.445695877075138 ], [ -73.136802673339787, -16.445442199706974 ], [ -73.136802673339787, -16.4451389312743 ], [ -73.137084960937443, -16.4451389312743 ], [ -73.137084960937443, -16.445257186889648 ], [ -73.137084960937443, -16.445417404174748 ], [ -73.137359619140625, -16.445417404174748 ], [ -73.137359619140625, -16.445695877075138 ], [ -73.137641906738281, -16.445695877075138 ], [ -73.137641906738281, -16.445417404174748 ], [ -73.137916564941406, -16.445417404174748 ], [ -73.137916564941406, -16.445695877075138 ], [ -73.138191223144531, -16.445695877075138 ], [ -73.138191223144531, -16.445417404174748 ], [ -73.138748168945312, -16.445417404174748 ], [ -73.138748168945312, -16.445695877075138 ], [ -73.13930511474598, -16.445695877075138 ], [ -73.13930511474598, -16.445417404174748 ], [ -73.139862060546818, -16.445417404174748 ], [ -73.139862060546818, -16.4451389312743 ], [ -73.140136718749943, -16.4451389312743 ], [ -73.140136718749943, -16.444860458374023 ], [ -73.140419006347599, -16.444860458374023 ], [ -73.140419006347599, -16.443750381469727 ], [ -73.140693664550781, -16.443750381469727 ], [ -73.140693664550781, -16.443471908569336 ], [ -73.140975952148438, -16.443471908569336 ], [ -73.140975952148438, -16.443193435668945 ], [ -73.141250610351562, -16.443193435668945 ], [ -73.141250610351562, -16.442970275878849 ], [ -73.141250610351562, -16.442638397216797 ], [ -73.141525268554688, -16.442638397216797 ], [ -73.141525268554688, -16.442363739013672 ], [ -73.142082214355469, -16.442363739013672 ], [ -73.142082214355469, -16.442083358764592 ], [ -73.142234802246037, -16.442083358764592 ], [ -73.142364501953125, -16.442083358764592 ], [ -73.142364501953125, -16.441804885864144 ], [ -73.142639160156193, -16.441804885864144 ], [ -73.142639160156193, -16.441249847412053 ], [ -73.143196105956974, -16.441249847412053 ], [ -73.143196105956974, -16.440971374511662 ], [ -73.143753051757756, -16.440971374511662 ], [ -73.143753051757756, -16.440694808959961 ], [ -73.144302368164062, -16.440694808959961 ], [ -73.144302368164062, -16.44041633605957 ], [ -73.144859313964844, -16.44041633605957 ], [ -73.144859313964844, -16.440139770507812 ], [ -73.1451416015625, -16.440139770507812 ], [ -73.1451416015625, -16.439582824707031 ], [ -73.145416259765625, -16.439582824707031 ], [ -73.145416259765625, -16.439306259155217 ], [ -73.146247863769474, -16.439306259155217 ], [ -73.146247863769474, -16.439027786254826 ], [ -73.147361755371094, -16.439027786254826 ], [ -73.147361755371094, -16.439306259155217 ], [ -73.148750305175668, -16.439306259155217 ], [ -73.148750305175668, -16.439027786254826 ], [ -73.149024963378849, -16.439027786254826 ], [ -73.149024963378849, -16.438472747802734 ], [ -73.149581909179631, -16.438472747802734 ], [ -73.149581909179631, -16.437639236450195 ], [ -73.149307250976506, -16.437639236450195 ], [ -73.149307250976506, -16.437448501586914 ], [ -73.149307250976506, -16.437084197997933 ], [ -73.149024963378849, -16.437084197997933 ], [ -73.149024963378849, -16.436805725097656 ], [ -73.148750305175668, -16.436805725097656 ], [ -73.148750305175668, -16.436250686645451 ], [ -73.148475646972656, -16.436250686645451 ], [ -73.148475646972656, -16.43597221374506 ], [ -73.148750305175668, -16.43597221374506 ], [ -73.148750305175668, -16.43569374084467 ], [ -73.149024963378849, -16.43569374084467 ], [ -73.149024963378849, -16.435138702392521 ], [ -73.149307250976506, -16.435138702392521 ], [ -73.149307250976506, -16.434860229492131 ], [ -73.149749755859375, -16.434860229492131 ], [ -73.150970458984375, -16.434860229492131 ], [ -73.150970458984375, -16.43458366394043 ], [ -73.151252746582031, -16.43458366394043 ], [ -73.151252746582031, -16.434028625488168 ], [ -73.151527404785156, -16.434028625488168 ], [ -73.151527404785156, -16.4334716796875 ], [ -73.151802062988168, -16.4334716796875 ], [ -73.151802062988168, -16.432916641235295 ], [ -73.152084350585824, -16.432916641235295 ], [ -73.152084350585824, -16.432636260986328 ], [ -73.151802062988168, -16.432636260986328 ], [ -73.151802062988168, -16.432361602783203 ], [ -73.151252746582031, -16.432361602783203 ], [ -73.151252746582031, -16.432083129882812 ], [ -73.150970458984375, -16.432083129882812 ], [ -73.150970458984375, -16.431528091430664 ], [ -73.151527404785156, -16.431528091430664 ], [ -73.151527404785156, -16.430973052978459 ], [ -73.151802062988168, -16.430973052978459 ], [ -73.151802062988168, -16.430696487426758 ], [ -73.151527404785156, -16.430696487426758 ], [ -73.151527404785156, -16.43013954162592 ], [ -73.151802062988168, -16.43013954162592 ], [ -73.151802062988168, -16.429861068725529 ], [ -73.152084350585824, -16.429861068725529 ], [ -73.152084350585824, -16.429582595825138 ], [ -73.152641296386662, -16.429582595825138 ], [ -73.152641296386662, -16.429304122924748 ], [ -73.153472900390625, -16.429304122924748 ], [ -73.153472900390625, -16.429027557373047 ], [ -73.15374755859375, -16.429027557373047 ], [ -73.15374755859375, -16.428749084472599 ], [ -73.152915954589787, -16.428749084472599 ], [ -73.152915954589787, -16.428472518920898 ], [ -73.152641296386662, -16.428472518920898 ], [ -73.152641296386662, -16.427917480468693 ], [ -73.152915954589787, -16.427917480468693 ], [ -73.152915954589787, -16.427814483642521 ], [ -73.152915954589787, -16.427639007568246 ], [ -73.153190612792969, -16.427639007568246 ], [ -73.153198242187443, -16.427360534667969 ], [ -73.15374755859375, -16.427360534667969 ], [ -73.15374755859375, -16.427082061767578 ], [ -73.154304504394531, -16.427082061767578 ], [ -73.154304504394531, -16.426527023315373 ], [ -73.154861450195312, -16.426527023315373 ], [ -73.154861450195312, -16.425970077514535 ], [ -73.155136108398324, -16.425970077514535 ], [ -73.155136108398324, -16.425573348998967 ], [ -73.155136108398324, -16.424583435058537 ], [ -73.155418395996037, -16.424583435058537 ], [ -73.155418395996037, -16.424304962158089 ], [ -73.155693054199162, -16.424304962158089 ], [ -73.155693054199162, -16.423471450805607 ], [ -73.155975341796818, -16.423471450805607 ], [ -73.155975341796818, -16.423194885253906 ], [ -73.15625, -16.423194885253906 ], [ -73.15625, -16.422361373901367 ], [ -73.156524658203125, -16.422361373901367 ], [ -73.156524658203125, -16.422082901000977 ], [ -73.15667724609375, -16.422082901000977 ], [ -73.156806945800781, -16.422082901000977 ], [ -73.156806945800781, -16.421955108642578 ], [ -73.156806945800781, -16.421806335449162 ], [ -73.156959533691406, -16.421806335449162 ], [ -73.157638549804688, -16.421806335449162 ], [ -73.157638549804688, -16.421529769897461 ], [ -73.158195495605469, -16.421529769897461 ], [ -73.158195495605469, -16.421249389648324 ], [ -73.158470153808537, -16.421249389648324 ], [ -73.158470153808537, -16.421529769897461 ], [ -73.158752441406193, -16.421529769897461 ], [ -73.158752441406193, -16.421249389648324 ], [ -73.159027099609318, -16.421249389648324 ], [ -73.159027099609318, -16.42097282409668 ], [ -73.159858703613281, -16.42097282409668 ], [ -73.159858703613281, -16.420694351196232 ], [ -73.160415649414062, -16.420694351196232 ], [ -73.160415649414062, -16.420417785644531 ], [ -73.161529541015511, -16.420417785644531 ], [ -73.161529541015511, -16.420139312744141 ], [ -73.161804199218693, -16.420139312744141 ], [ -73.161804199218693, -16.420417785644531 ], [ -73.162361145019474, -16.420417785644531 ], [ -73.162361145019474, -16.420139312744141 ], [ -73.162635803222599, -16.420139312744141 ], [ -73.162635803222599, -16.41986083984375 ], [ -73.165138244628849, -16.41986083984375 ], [ -73.165138244628849, -16.419307708740178 ], [ -73.165969848632812, -16.419307708740178 ], [ -73.165969848632812, -16.419582366943359 ], [ -73.16680908203125, -16.419582366943359 ], [ -73.16680908203125, -16.419307708740178 ], [ -73.167640686035156, -16.419307708740178 ], [ -73.167640686035156, -16.419025421142521 ], [ -73.169303894042969, -16.419025421142521 ], [ -73.169303894042969, -16.419307708740178 ], [ -73.169586181640625, -16.419307708740178 ], [ -73.169586181640625, -16.419582366943359 ], [ -73.16986083984375, -16.419584274291879 ], [ -73.16986083984375, -16.420694351196232 ], [ -73.170417785644531, -16.420694351196232 ], [ -73.170417785644531, -16.421249389648324 ], [ -73.170692443847656, -16.421249389648324 ], [ -73.170692443847656, -16.421806335449162 ], [ -73.171249389648381, -16.421806335449162 ], [ -73.171249389648381, -16.421249389648324 ], [ -73.171524047851506, -16.421249389648324 ], [ -73.171524047851506, -16.421806335449162 ], [ -73.171806335449162, -16.421806335449162 ], [ -73.171806335449162, -16.421529769897461 ], [ -73.172080993652287, -16.421529769897461 ], [ -73.172080993652287, -16.421806335449162 ], [ -73.172637939453125, -16.421806335449162 ], [ -73.172637939453125, -16.422082901000977 ], [ -73.172920227050781, -16.422082901000977 ], [ -73.172920227050781, -16.421249389648324 ], [ -73.173194885253906, -16.421249389648324 ], [ -73.173194885253906, -16.421529769897461 ], [ -73.173469543457031, -16.421529769897461 ], [ -73.173469543457031, -16.421249389648324 ], [ -73.173751831054688, -16.421249389648324 ], [ -73.173751831054688, -16.421529769897461 ], [ -73.174026489257812, -16.421529769897461 ], [ -73.174026489257812, -16.421249389648324 ], [ -73.174308776855355, -16.421249389648324 ], [ -73.174308776855355, -16.421529769897461 ], [ -73.174583435058537, -16.421529769897461 ], [ -73.174583435058537, -16.421249389648324 ], [ -73.174858093261662, -16.421249389648324 ], [ -73.174858093261662, -16.420694351196232 ], [ -73.175140380859318, -16.420694351196232 ], [ -73.175140380859318, -16.420417785644531 ], [ -73.175697326660156, -16.420417785644531 ], [ -73.175697326660156, -16.41986083984375 ], [ -73.175971984863281, -16.41986083984375 ], [ -73.175971984863281, -16.419307708740178 ], [ -73.176246643066406, -16.419307708740178 ], [ -73.176246643066406, -16.418346405029297 ], [ -73.176246643066406, -16.418195724487305 ], [ -73.176528930664062, -16.418195724487305 ], [ -73.176528930664062, -16.417638778686467 ], [ -73.176803588867188, -16.417638778686467 ], [ -73.176803588867188, -16.417360305786076 ], [ -73.177085876464844, -16.417360305786076 ], [ -73.177085876464844, -16.416528701782113 ], [ -73.178749084472656, -16.416528701782113 ], [ -73.178749084472656, -16.416803359985295 ], [ -73.179306030273438, -16.416803359985295 ], [ -73.179306030273438, -16.417085647582951 ], [ -73.179862976074219, -16.417085647582951 ], [ -73.179862976074219, -16.416803359985295 ], [ -73.180137634277344, -16.416803359985295 ], [ -73.180137634277344, -16.416528701782113 ], [ -73.180419921875, -16.416528701782113 ], [ -73.180419921875, -16.415971755981445 ], [ -73.180809020996094, -16.415971755981445 ], [ -73.180969238281193, -16.415971755981445 ], [ -73.180969238281193, -16.41541671752924 ], [ -73.181526184081974, -16.41541671752924 ], [ -73.181526184081974, -16.414861679077148 ], [ -73.181808471679631, -16.414861679077148 ], [ -73.181808471679631, -16.41444206237793 ], [ -73.181808471679631, -16.41430473327631 ], [ -73.181961059570312, -16.41430473327631 ], [ -73.182357788085938, -16.41430473327631 ], [ -73.182357788085938, -16.414028167724609 ], [ -73.184028625488224, -16.414028167724609 ], [ -73.184028625488224, -16.414581298828125 ], [ -73.184303283691349, -16.414581298828125 ], [ -73.184303283691349, -16.414861679077148 ], [ -73.184585571289006, -16.414861679077148 ], [ -73.184585571289006, -16.415138244628849 ], [ -73.184860229492131, -16.415138244628849 ], [ -73.184860229492131, -16.41541671752924 ], [ -73.185142517089787, -16.41541671752924 ], [ -73.185142517089787, -16.415693283081055 ], [ -73.186531066894531, -16.415693283081055 ], [ -73.186531066894531, -16.415971755981445 ], [ -73.18902587890625, -16.415971755981445 ], [ -73.18902587890625, -16.416250228881836 ], [ -73.189582824707031, -16.416250228881836 ], [ -73.189582824707031, -16.415065765380859 ], [ -73.189582824707031, -16.414581298828125 ], [ -73.189910888671818, -16.414581298828125 ], [ -73.190139770507699, -16.414581298828125 ], [ -73.190139770507699, -16.41430473327631 ], [ -73.190971374511662, -16.41430473327631 ], [ -73.190971374511662, -16.414028167724609 ], [ -73.1915283203125, -16.414028167724609 ], [ -73.1915283203125, -16.41430473327631 ], [ -73.191802978515625, -16.41430473327631 ], [ -73.191802978515625, -16.413749694824219 ], [ -73.192085266113281, -16.413749694824219 ], [ -73.192085266113281, -16.413194656371957 ], [ -73.192359924316406, -16.413194656371957 ], [ -73.192359924316406, -16.412639617919865 ], [ -73.193748474121037, -16.412639617919865 ], [ -73.193748474121037, -16.412361145019474 ], [ -73.194305419921818, -16.412361145019474 ], [ -73.194305419921818, -16.412639617919865 ], [ -73.194862365722656, -16.412639617919865 ], [ -73.194862365722656, -16.41291618347168 ], [ -73.195693969726562, -16.41291618347168 ], [ -73.195693969726562, -16.412361145019474 ], [ -73.196525573730355, -16.412361145019474 ], [ -73.196525573730355, -16.411806106567383 ], [ -73.196807861328068, -16.411806106567383 ], [ -73.196807861328068, -16.411527633666992 ], [ -73.196525573730355, -16.411527633666992 ], [ -73.196525573730355, -16.411249160766545 ], [ -73.196807861328068, -16.411249160766545 ], [ -73.196807861328068, -16.410972595214844 ], [ -73.197364807128849, -16.410972595214844 ], [ -73.197364807128849, -16.410417556762638 ], [ -73.197639465331974, -16.410417556762638 ], [ -73.197639465331974, -16.410139083862191 ], [ -73.197364807128849, -16.410139083862191 ], [ -73.197364807128849, -16.409305572509709 ], [ -73.197639465331974, -16.409305572509709 ], [ -73.197639465331974, -16.409187316894531 ], [ -73.197639465331974, -16.408193588256836 ], [ -73.197914123535156, -16.408193588256836 ], [ -73.197914123535156, -16.407833099365234 ], [ -73.197914123535156, -16.407638549804688 ], [ -73.198066711425781, -16.407638549804688 ], [ -73.198471069335938, -16.407638549804688 ], [ -73.198471069335938, -16.407361984252873 ], [ -73.198753356933594, -16.407361984252873 ], [ -73.198753356933594, -16.407638549804688 ], [ -73.199028015136719, -16.407638549804688 ], [ -73.199028015136719, -16.407361984252873 ], [ -73.199302673339844, -16.407361984252873 ], [ -73.199302673339844, -16.407638549804688 ], [ -73.200141906738224, -16.407638549804688 ], [ -73.200141906738224, -16.407361984252873 ], [ -73.200416564941349, -16.407361984252873 ], [ -73.200416564941349, -16.406806945800781 ], [ -73.200973510742131, -16.406806945800781 ], [ -73.200973510742131, -16.406528472900334 ], [ -73.201248168945312, -16.406528472900334 ], [ -73.201248168945312, -16.405414581298771 ], [ -73.201530456542969, -16.405414581298771 ], [ -73.201530456542969, -16.405136108398324 ], [ -73.201805114746094, -16.405136108398324 ], [ -73.201805114746094, -16.404584884643498 ], [ -73.202362060546875, -16.404584884643498 ], [ -73.202362060546875, -16.404306411743107 ], [ -73.202919006347543, -16.404306411743107 ], [ -73.202919006347543, -16.403749465942269 ], [ -73.203193664550724, -16.403749465942269 ], [ -73.203193664550724, -16.403474807739258 ], [ -73.203750610351506, -16.403474807739258 ], [ -73.203750610351506, -16.403192520141602 ], [ -73.204025268554631, -16.403192520141602 ], [ -73.204025268554631, -16.402914047241211 ], [ -73.204307556152344, -16.402914047241211 ], [ -73.204307556152344, -16.402639389038086 ], [ -73.204582214355469, -16.402639389038086 ], [ -73.204582214355469, -16.402360916137695 ], [ -73.204864501953125, -16.402360916137695 ], [ -73.204864501953125, -16.402082443237305 ], [ -73.205413818359375, -16.402082443237305 ], [ -73.205413818359375, -16.401805877685547 ], [ -73.205970764160043, -16.401805877685547 ], [ -73.205970764160043, -16.401527404785156 ], [ -73.206253051757699, -16.401527404785156 ], [ -73.206253051757699, -16.401250839233342 ], [ -73.207359313964844, -16.401250839233342 ], [ -73.207359313964844, -16.400972366332951 ], [ -73.209587097167912, -16.400972366332951 ], [ -73.209587097167912, -16.401250839233342 ], [ -73.211807250976562, -16.401250839233342 ], [ -73.211807250976562, -16.400972366332951 ], [ -73.212081909179688, -16.400972366332951 ], [ -73.212081909179688, -16.40069389343256 ], [ -73.213752746581974, -16.40069389343256 ], [ -73.213752746581974, -16.400972366332951 ], [ -73.214584350585938, -16.400972366332951 ], [ -73.214584350585938, -16.40069389343256 ], [ -73.215415954589844, -16.40069389343256 ], [ -73.215415954589844, -16.400417327880859 ], [ -73.215972900390568, -16.400417327880859 ], [ -73.215972900390568, -16.40069389343256 ], [ -73.216804504394474, -16.40069389343256 ], [ -73.216804504394474, -16.400972366332951 ], [ -73.217361450195312, -16.400972366332951 ], [ -73.217361450195312, -16.401250839233342 ], [ -73.217918395996094, -16.401250839233342 ], [ -73.217918395996094, -16.401527404785156 ], [ -73.218193054199219, -16.401527404785156 ], [ -73.218193054199219, -16.401805877685547 ], [ -73.218749999999886, -16.401805877685547 ], [ -73.218749999999886, -16.402360916137695 ], [ -73.219024658203068, -16.402360916137695 ], [ -73.219024658203068, -16.402914047241211 ], [ -73.219306945800724, -16.402914047241211 ], [ -73.219306945800724, -16.403192520141602 ], [ -73.219024658203068, -16.403192520141602 ], [ -73.219024658203068, -16.404584884643498 ], [ -73.218749999999886, -16.404584884643498 ], [ -73.218749999999886, -16.404861450195312 ], [ -73.218475341796875, -16.404861450195312 ], [ -73.218475341796875, -16.405136108398324 ], [ -73.218193054199219, -16.405136108398324 ], [ -73.218193054199219, -16.405414581298771 ], [ -73.217918395996094, -16.405414581298771 ], [ -73.217918395996094, -16.405696868896428 ], [ -73.217361450195312, -16.405696868896428 ], [ -73.217361450195312, -16.405971527099553 ], [ -73.216804504394474, -16.405971527099553 ], [ -73.216804504394474, -16.40625 ], [ -73.216529846191349, -16.40625 ], [ -73.216529846191349, -16.406806945800781 ], [ -73.216247558593693, -16.406806945800781 ], [ -73.216247558593693, -16.407083511352482 ], [ -73.215972900390568, -16.407083511352482 ], [ -73.215972900390568, -16.407361984252873 ], [ -73.216247558593693, -16.407361984252873 ], [ -73.216247558593693, -16.407638549804688 ], [ -73.215972900390568, -16.407638549804688 ], [ -73.215972900390568, -16.407918930053654 ], [ -73.216247558593693, -16.407918930053654 ], [ -73.216247558593693, -16.409305572509709 ], [ -73.216529846191349, -16.409305572509709 ], [ -73.216529846191349, -16.409860610961914 ], [ -73.216804504394474, -16.409860610961914 ], [ -73.216804504394474, -16.409584045410099 ], [ -73.217086791992188, -16.409584045410099 ], [ -73.217086791992188, -16.409305572509709 ], [ -73.217361450195312, -16.409305572509709 ], [ -73.217361450195312, -16.409027099609318 ], [ -73.217918395996094, -16.409027099609318 ], [ -73.217918395996094, -16.408750534057617 ], [ -73.218193054199219, -16.408750534057617 ], [ -73.218193054199219, -16.408472061157227 ], [ -73.219581604003849, -16.408472061157227 ], [ -73.219581604003849, -16.408750534057617 ], [ -73.220413208007812, -16.408750534057617 ], [ -73.220413208007812, -16.409305572509709 ], [ -73.220695495605469, -16.409305572509709 ], [ -73.220695495605469, -16.409584045410099 ], [ -73.220970153808594, -16.409584045410099 ], [ -73.220970153808594, -16.409860610961914 ], [ -73.221527099609375, -16.409860610961914 ], [ -73.221527099609375, -16.410694122314453 ], [ -73.222084045410043, -16.410694122314453 ], [ -73.222084045410043, -16.410972595214844 ], [ -73.223197937011662, -16.410972595214844 ], [ -73.223197937011662, -16.411249160766545 ], [ -73.223472595214844, -16.411249160766545 ], [ -73.223472595214844, -16.411806106567383 ], [ -73.223747253417969, -16.411806106567383 ], [ -73.223747253417969, -16.412639617919865 ], [ -73.223472595214844, -16.412639617919865 ], [ -73.223472595214844, -16.413471221923828 ], [ -73.223747253417969, -16.413471221923828 ], [ -73.223747253417969, -16.413749694824219 ], [ -73.224861145019531, -16.413749694824219 ], [ -73.224861145019531, -16.413471221923828 ], [ -73.226524353027344, -16.413471221923828 ], [ -73.226524353027344, -16.413749694824219 ], [ -73.226806640625, -16.413749694824219 ], [ -73.226806640625, -16.414028167724609 ], [ -73.227081298828125, -16.414028167724609 ], [ -73.227081298828125, -16.413471221923828 ], [ -73.227363586425781, -16.413471221923828 ], [ -73.227363586425781, -16.413194656371957 ], [ -73.229583740234318, -16.413194656371957 ], [ -73.229583740234318, -16.413471221923828 ], [ -73.2298583984375, -16.413471221923828 ], [ -73.2298583984375, -16.414861679077148 ], [ -73.230697631835938, -16.414861679077148 ], [ -73.230697631835938, -16.414581298828125 ], [ -73.232917785644531, -16.414581298828125 ], [ -73.232917785644531, -16.414861679077148 ], [ -73.234024047851562, -16.414861679077148 ], [ -73.234024047851562, -16.415138244628849 ], [ -73.235969543457031, -16.415138244628849 ], [ -73.235969543457031, -16.414861679077148 ], [ -73.235694885253849, -16.414861679077148 ], [ -73.235694885253849, -16.414548873901367 ], [ -73.235694885253849, -16.413749694824219 ], [ -73.235969543457031, -16.413749694824219 ], [ -73.235969543457031, -16.413471221923828 ], [ -73.235694885253849, -16.413471221923828 ], [ -73.235694885253849, -16.41291618347168 ], [ -73.235420227050724, -16.41291618347168 ], [ -73.235420227050724, -16.412561416625977 ], [ -73.235420227050724, -16.412361145019474 ], [ -73.235252380371094, -16.412361145019474 ], [ -73.235137939453068, -16.412361145019474 ], [ -73.235137939453068, -16.412082672119084 ], [ -73.234863281249886, -16.412082672119084 ], [ -73.234863281249886, -16.411447525024357 ], [ -73.234863281249886, -16.411249160766545 ], [ -73.234977722167969, -16.411249160766545 ], [ -73.235694885253849, -16.411249160766545 ], [ -73.235694885253849, -16.410972595214844 ], [ -73.236251831054688, -16.410972595214844 ], [ -73.236251831054688, -16.410694122314453 ], [ -73.236808776855469, -16.410694122314453 ], [ -73.236808776855469, -16.410417556762638 ], [ -73.237358093261719, -16.410417556762638 ], [ -73.237358093261719, -16.410139083862191 ], [ -73.237640380859375, -16.410139083862191 ], [ -73.237640380859375, -16.409860610961914 ], [ -73.238471984863224, -16.409860610961914 ], [ -73.238471984863224, -16.409584045410099 ], [ -73.239028930664006, -16.409584045410099 ], [ -73.239028930664006, -16.409305572509709 ], [ -73.239303588867188, -16.409305572509709 ], [ -73.239303588867188, -16.409027099609318 ], [ -73.239585876464844, -16.409027099609318 ], [ -73.239585876464844, -16.408750534057617 ], [ -73.240135192871094, -16.408750534057617 ], [ -73.240135192871094, -16.408472061157227 ], [ -73.240692138671875, -16.408472061157227 ], [ -73.240692138671875, -16.408193588256836 ], [ -73.241806030273381, -16.408193588256836 ], [ -73.241806030273381, -16.407918930053654 ], [ -73.242637634277344, -16.407918930053654 ], [ -73.242637634277344, -16.407638549804688 ], [ -73.242919921875, -16.407638549804688 ], [ -73.242919921875, -16.407083511352482 ], [ -73.243194580078125, -16.407083511352482 ], [ -73.243194580078125, -16.406806945800781 ], [ -73.243751525878906, -16.406806945800781 ], [ -73.243751525878906, -16.407638549804688 ], [ -73.244026184082031, -16.407638549804688 ], [ -73.244026184082031, -16.407361984252873 ], [ -73.2459716796875, -16.407361984252873 ], [ -73.2459716796875, -16.407638549804688 ], [ -73.246528625488281, -16.407638549804688 ], [ -73.246528625488281, -16.407918930053654 ], [ -73.24764251708973, -16.407918930053654 ], [ -73.24764251708973, -16.408472061157227 ], [ -73.247360229492074, -16.408472061157227 ], [ -73.247360229492074, -16.409584045410099 ], [ -73.24764251708973, -16.409584045410099 ], [ -73.24764251708973, -16.409860610961914 ], [ -73.247917175292912, -16.409860610961914 ], [ -73.247917175292912, -16.410139083862191 ], [ -73.248191833496037, -16.410139083862191 ], [ -73.248191833496037, -16.410417556762638 ], [ -73.248474121093693, -16.410417556762638 ], [ -73.248474121093693, -16.410694122314453 ], [ -73.249862670898438, -16.410694122314453 ], [ -73.249862670898438, -16.410417556762638 ], [ -73.251251220703068, -16.410417556762638 ], [ -73.251251220703068, -16.410139083862191 ], [ -73.251808166503849, -16.410139083862191 ], [ -73.251808166503849, -16.409027099609318 ], [ -73.252639770507812, -16.409027099609318 ], [ -73.252639770507812, -16.408750534057617 ], [ -73.253196716308594, -16.408750534057617 ], [ -73.253196716308594, -16.408472061157227 ], [ -73.253471374511719, -16.408472061157227 ], [ -73.253471374511719, -16.408193588256836 ], [ -73.253753662109375, -16.408193588256836 ], [ -73.253753662109375, -16.407918930053654 ], [ -73.254302978515568, -16.407918930053654 ], [ -73.254302978515568, -16.408472061157227 ], [ -73.254585266113224, -16.408472061157227 ], [ -73.254585266113224, -16.409027099609318 ], [ -73.254859924316349, -16.409027099609318 ], [ -73.254859924316349, -16.409305572509709 ], [ -73.255142211914006, -16.409305572509709 ], [ -73.255142211914006, -16.409860610961914 ], [ -73.255416870117188, -16.409860610961914 ], [ -73.255416870117188, -16.410139083862191 ], [ -73.255691528320312, -16.410139083862191 ], [ -73.255691528320312, -16.410972595214844 ], [ -73.255973815917969, -16.410972595214844 ], [ -73.255973815917969, -16.412361145019474 ], [ -73.25653076171875, -16.412361145019474 ], [ -73.25653076171875, -16.411806106567383 ], [ -73.257080078124943, -16.411806106567383 ], [ -73.257080078124943, -16.411249160766545 ], [ -73.257362365722599, -16.411249160766545 ], [ -73.257362365722599, -16.410972595214844 ], [ -73.257637023925724, -16.410972595214844 ], [ -73.257637023925724, -16.410417556762638 ], [ -73.257919311523381, -16.410417556762638 ], [ -73.257919311523381, -16.410139083862191 ], [ -73.257637023925724, -16.410139083862191 ], [ -73.257637023925724, -16.409305572509709 ], [ -73.257919311523381, -16.409305572509709 ], [ -73.257919311523381, -16.409027099609318 ], [ -73.25958251953125, -16.409027099609318 ], [ -73.25958251953125, -16.409305572509709 ], [ -73.259864807128906, -16.409305572509709 ], [ -73.259864807128906, -16.409584045410099 ], [ -73.260414123535099, -16.409584045410099 ], [ -73.260414123535099, -16.409305572509709 ], [ -73.260696411132756, -16.409305572509709 ], [ -73.260696411132756, -16.409027099609318 ], [ -73.260971069335881, -16.409027099609318 ], [ -73.260971069335881, -16.408750534057617 ], [ -73.261253356933537, -16.408750534057617 ], [ -73.261253356933537, -16.408472061157227 ], [ -73.261528015136719, -16.408472061157227 ], [ -73.261528015136719, -16.407083511352482 ], [ -73.261253356933537, -16.407083511352482 ], [ -73.261253356933537, -16.405971527099553 ], [ -73.260971069335881, -16.405971527099553 ], [ -73.260971069335881, -16.404584884643498 ], [ -73.260696411132756, -16.404584884643498 ], [ -73.260696411132756, -16.404861450195312 ], [ -73.260414123535099, -16.404861450195312 ], [ -73.260414123535099, -16.404584884643498 ], [ -73.260139465331918, -16.404584884643498 ], [ -73.260139465331918, -16.404306411743107 ], [ -73.260414123535099, -16.404306411743107 ], [ -73.260414123535099, -16.404027938842717 ], [ -73.260696411132756, -16.404027938842717 ], [ -73.260696411132756, -16.403749465942269 ], [ -73.260139465331918, -16.403749465942269 ], [ -73.260139465331918, -16.403192520141602 ], [ -73.260414123535099, -16.403192520141602 ], [ -73.260414123535099, -16.402914047241211 ], [ -73.260696411132756, -16.402914047241211 ], [ -73.260696411132756, -16.402639389038086 ], [ -73.260971069335881, -16.402639389038086 ], [ -73.260971069335881, -16.402360916137695 ], [ -73.263473510742074, -16.402360916137695 ], [ -73.263473510742074, -16.402082443237305 ], [ -73.264030456542912, -16.402082443237305 ], [ -73.264030456542912, -16.401805877685547 ], [ -73.264305114746037, -16.401805877685547 ], [ -73.264305114746037, -16.401527404785156 ], [ -73.264030456542912, -16.401527404785156 ], [ -73.264030456542912, -16.401250839233342 ], [ -73.264862060546875, -16.401250839233342 ], [ -73.264862060546875, -16.401527404785156 ], [ -73.26513671875, -16.401527404785156 ], [ -73.26513671875, -16.400972366332951 ], [ -73.265693664550781, -16.400972366332951 ], [ -73.265693664550781, -16.40069389343256 ], [ -73.266250610351562, -16.40069389343256 ], [ -73.266250610351562, -16.400972366332951 ], [ -73.266807556152287, -16.400972366332951 ], [ -73.266807556152287, -16.401250839233342 ], [ -73.267639160156193, -16.401250839233342 ], [ -73.267639160156193, -16.401805877685547 ], [ -73.268753051757812, -16.401805877685547 ], [ -73.268753051757812, -16.402082443237305 ], [ -73.269027709960938, -16.402082443237305 ], [ -73.269027709960938, -16.402360916137695 ], [ -73.269302368164062, -16.402360916137695 ], [ -73.269302368164062, -16.402639389038086 ], [ -73.270141601562443, -16.402639389038086 ], [ -73.270141601562443, -16.402360916137695 ], [ -73.270416259765568, -16.402360916137695 ], [ -73.270416259765568, -16.402082443237305 ], [ -73.270973205566349, -16.402082443237305 ], [ -73.270973205566349, -16.401805877685547 ], [ -73.271530151367188, -16.401805877685547 ], [ -73.271530151367188, -16.40069389343256 ], [ -73.271247863769531, -16.40069389343256 ], [ -73.271247863769531, -16.399860382080021 ], [ -73.271530151367188, -16.399860382080021 ], [ -73.271530151367188, -16.398754119873047 ], [ -73.271530151367188, -16.398471832275391 ], [ -73.271850585937443, -16.398471832275391 ], [ -73.272087097167969, -16.398471832275391 ], [ -73.272087097167969, -16.398260116577148 ], [ -73.272087097167969, -16.397916793823185 ], [ -73.272476196289062, -16.397916793823185 ], [ -73.272918701171761, -16.397916793823185 ], [ -73.272918701171761, -16.398195266723576 ], [ -73.273750305175724, -16.398195266723576 ], [ -73.273750305175724, -16.398471832275391 ], [ -73.274307250976562, -16.398471832275391 ], [ -73.274307250976562, -16.398750305175781 ], [ -73.274581909179688, -16.398750305175781 ], [ -73.274581909179688, -16.39930534362793 ], [ -73.274864196777344, -16.39930534362793 ], [ -73.274864196777344, -16.39958381652832 ], [ -73.275138854980469, -16.39958381652832 ], [ -73.275138854980469, -16.399860382080021 ], [ -73.275413513183594, -16.399860382080021 ], [ -73.275413513183594, -16.400138854980412 ], [ -73.275970458984261, -16.400138854980412 ], [ -73.275970458984261, -16.400417327880859 ], [ -73.276252746581918, -16.400417327880859 ], [ -73.276252746581918, -16.40069389343256 ], [ -73.276527404785099, -16.40069389343256 ], [ -73.276527404785099, -16.400138854980412 ], [ -73.276802062988224, -16.400138854980412 ], [ -73.276802062988224, -16.399860382080021 ], [ -73.277084350585881, -16.399860382080021 ], [ -73.277084350585881, -16.39958381652832 ], [ -73.277641296386719, -16.39958381652832 ], [ -73.277641296386719, -16.399860382080021 ], [ -73.2781982421875, -16.399860382080021 ], [ -73.2781982421875, -16.400138854980412 ], [ -73.27874755859375, -16.400138854980412 ], [ -73.27874755859375, -16.400417327880859 ], [ -73.279029846191406, -16.400417327880859 ], [ -73.279029846191406, -16.40069389343256 ], [ -73.279586791992131, -16.40069389343256 ], [ -73.279586791992131, -16.400972366332951 ], [ -73.280693054199219, -16.400972366332951 ], [ -73.280693054199219, -16.401250839233342 ], [ -73.283195495605412, -16.401250839233342 ], [ -73.283195495605412, -16.400972366332951 ], [ -73.283752441406193, -16.400972366332951 ], [ -73.283752441406193, -16.401250839233342 ], [ -73.2843017578125, -16.401250839233342 ], [ -73.284309387207031, -16.401805877685547 ], [ -73.284584045410156, -16.401805877685547 ], [ -73.284584045410156, -16.402082443237305 ], [ -73.284858703613281, -16.402082443237305 ], [ -73.284858703613281, -16.402914047241211 ], [ -73.284584045410156, -16.402914047241211 ], [ -73.284584045410156, -16.403474807739258 ], [ -73.285972595214787, -16.403474807739258 ], [ -73.285972595214787, -16.403192520141602 ], [ -73.287086486816406, -16.403192520141602 ], [ -73.287086486816406, -16.403749465942269 ], [ -73.287361145019531, -16.403749465942269 ], [ -73.287361145019531, -16.404306411743107 ], [ -73.287635803222656, -16.404306411743107 ], [ -73.287635803222656, -16.404584884643498 ], [ -73.287918090820312, -16.404584884643498 ], [ -73.287918090820312, -16.404861450195312 ], [ -73.288192749023438, -16.404861450195312 ], [ -73.288192749023438, -16.405971527099553 ], [ -73.289024353027287, -16.405971527099553 ], [ -73.289024353027287, -16.405696868896428 ], [ -73.290695190429688, -16.405696868896428 ], [ -73.290695190429688, -16.405971527099553 ], [ -73.291252136230469, -16.405971527099553 ], [ -73.291252136230469, -16.40625 ], [ -73.292358398437443, -16.40625 ], [ -73.292358398437443, -16.405414581298771 ], [ -73.292083740234261, -16.405414581298771 ], [ -73.292083740234261, -16.404306411743107 ], [ -73.29180908203125, -16.404306411743107 ], [ -73.29180908203125, -16.403749465942269 ], [ -73.291679382324162, -16.403749465942269 ], [ -73.291526794433594, -16.403749465942269 ], [ -73.291526794433594, -16.402914047241211 ], [ -73.292640686035099, -16.402914047241211 ], [ -73.292640686035099, -16.402082443237305 ], [ -73.292358398437443, -16.402082443237305 ], [ -73.292358398437443, -16.401527404785156 ], [ -73.292083740234261, -16.401527404785156 ], [ -73.292083740234261, -16.400972366332951 ], [ -73.292358398437443, -16.400972366332951 ], [ -73.292358398437443, -16.400138854980412 ], [ -73.292915344238224, -16.400138854980412 ], [ -73.292915344238224, -16.399860382080021 ], [ -73.292640686035099, -16.399860382080021 ], [ -73.292640686035099, -16.398195266723576 ], [ -73.295135498046761, -16.398195266723576 ], [ -73.295135498046761, -16.398471832275391 ], [ -73.295417785644474, -16.398471832275391 ], [ -73.295417785644474, -16.397916793823185 ], [ -73.295135498046761, -16.397916793823185 ], [ -73.295135498046761, -16.397638320922795 ], [ -73.29486083984375, -16.397638320922795 ], [ -73.29486083984375, -16.396804809570256 ], [ -73.294586181640625, -16.396804809570256 ], [ -73.294586181640625, -16.396528244018555 ], [ -73.294303894042969, -16.396528244018555 ], [ -73.294303894042969, -16.396249771118164 ], [ -73.294029235839844, -16.396249771118164 ], [ -73.294029235839844, -16.39513969421381 ], [ -73.29486083984375, -16.39513969421381 ], [ -73.29486083984375, -16.395416259765625 ], [ -73.295417785644474, -16.395416259765625 ], [ -73.295417785644474, -16.395694732665902 ], [ -73.296806335449219, -16.395694732665902 ], [ -73.296806335449219, -16.394306182861328 ], [ -73.296524047851562, -16.394306182861328 ], [ -73.296524047851562, -16.39374923706049 ], [ -73.296806335449219, -16.39374923706049 ], [ -73.296806335449219, -16.393472671508789 ], [ -73.296249389648381, -16.393472671508789 ], [ -73.296249389648381, -16.392917633056584 ], [ -73.296524047851562, -16.392917633056584 ], [ -73.296524047851562, -16.391807556152344 ], [ -73.296676635742188, -16.391807556152344 ], [ -73.296806335449219, -16.391807556152344 ], [ -73.296806335449219, -16.391250610351562 ], [ -73.296524047851562, -16.391250610351562 ], [ -73.296524047851562, -16.390972137451172 ], [ -73.296806335449219, -16.390972137451172 ], [ -73.296806335449219, -16.390695571899414 ], [ -73.297080993652344, -16.390695571899414 ], [ -73.297080993652344, -16.390415191650334 ], [ -73.29736328125, -16.390415191650334 ], [ -73.29736328125, -16.390138626098633 ], [ -73.297637939453125, -16.390138626098633 ], [ -73.297637939453125, -16.389862060546818 ], [ -73.297920227050781, -16.389860153198242 ], [ -73.297920227050781, -16.389585494995117 ], [ -73.298194885253906, -16.389585494995117 ], [ -73.298194885253906, -16.389303207397461 ], [ -73.298469543456974, -16.389303207397461 ], [ -73.298469543456974, -16.389028549194279 ], [ -73.298751831054631, -16.389028549194279 ], [ -73.298751831054631, -16.388471603393498 ], [ -73.299026489257756, -16.388471603393498 ], [ -73.299026489257756, -16.388193130493107 ], [ -73.298751831054631, -16.388193130493107 ], [ -73.298751831054631, -16.387916564941406 ], [ -73.297080993652344, -16.387916564941406 ], [ -73.297080993652344, -16.387638092041016 ], [ -73.296806335449219, -16.387638092041016 ], [ -73.296806335449219, -16.387081146240178 ], [ -73.29736328125, -16.387081146240178 ], [ -73.29736328125, -16.386249542236214 ], [ -73.297637939453125, -16.386249542236214 ], [ -73.297637939453125, -16.385971069335938 ], [ -73.298118591308594, -16.385971069335938 ], [ -73.298751831054631, -16.385971069335938 ], [ -73.298751831054631, -16.38458251953125 ], [ -73.299308776855412, -16.38458251953125 ], [ -73.299308776855412, -16.384305953979492 ], [ -73.299583435058537, -16.384305953979492 ], [ -73.299583435058537, -16.384027481079102 ], [ -73.299858093261719, -16.384027481079102 ], [ -73.299858093261719, -16.383750915527287 ], [ -73.3004150390625, -16.383750915527287 ], [ -73.3004150390625, -16.383472442626896 ], [ -73.300697326660156, -16.383472442626896 ], [ -73.300697326660156, -16.382917404174805 ], [ -73.301803588867131, -16.382917404174805 ], [ -73.301803588867131, -16.382640838623047 ], [ -73.302360534667912, -16.382640838623047 ], [ -73.302360534667912, -16.382360458373967 ], [ -73.30291748046875, -16.382360458373967 ], [ -73.30291748046875, -16.382083892822266 ], [ -73.303192138671875, -16.382083892822266 ], [ -73.303192138671875, -16.381805419921875 ], [ -73.303474426269531, -16.381805419921875 ], [ -73.303474426269531, -16.381250381469727 ], [ -73.303749084472656, -16.381250381469727 ], [ -73.303749084472656, -16.381528854370004 ], [ -73.304306030273438, -16.381528854370004 ], [ -73.304306030273438, -16.380695343017521 ], [ -73.304031372070312, -16.380695343017521 ], [ -73.304031372070312, -16.38041877746582 ], [ -73.304580688476449, -16.38041877746582 ], [ -73.304580688476449, -16.38013839721674 ], [ -73.304862976074105, -16.38013839721674 ], [ -73.304862976074105, -16.379716873168832 ], [ -73.304862976074105, -16.379583358764648 ], [ -73.305007934570312, -16.379583358764648 ], [ -73.305137634277287, -16.379583358764648 ], [ -73.305137634277287, -16.379341125488281 ], [ -73.305137634277287, -16.378471374511719 ], [ -73.305252075195312, -16.378471374511719 ], [ -73.305419921874943, -16.378471374511719 ], [ -73.305419921874943, -16.378196716308594 ], [ -73.305694580078068, -16.378196716308594 ], [ -73.305694580078068, -16.377914428710938 ], [ -73.30596923828125, -16.377914428710938 ], [ -73.30596923828125, -16.376249313354435 ], [ -73.306251525878906, -16.376249313354435 ], [ -73.306251525878906, -16.375415802001953 ], [ -73.30596923828125, -16.375415802001953 ], [ -73.30596923828125, -16.374860763549805 ], [ -73.305694580078068, -16.374860763549805 ], [ -73.305694580078068, -16.374582290649414 ], [ -73.305419921874943, -16.374582290649414 ], [ -73.305419921874943, -16.374286651611328 ], [ -73.305419921874943, -16.373193740844727 ], [ -73.305137634277287, -16.373193740844727 ], [ -73.305137634277287, -16.372638702392578 ], [ -73.304862976074105, -16.372638702392578 ], [ -73.304862976074105, -16.372360229492188 ], [ -73.304306030273438, -16.372360229492188 ], [ -73.304306030273438, -16.372083663940373 ], [ -73.303192138671875, -16.372083663940373 ], [ -73.303192138671875, -16.371805191039925 ], [ -73.30291748046875, -16.371805191039925 ], [ -73.30291748046875, -16.371528625488224 ], [ -73.302635192871037, -16.371528625488224 ], [ -73.302635192871037, -16.370971679687443 ], [ -73.302360534667912, -16.370971679687443 ], [ -73.302360534667912, -16.370416641235352 ], [ -73.302635192871037, -16.370416641235352 ], [ -73.302635192871037, -16.370138168334961 ], [ -73.30291748046875, -16.370138168334961 ], [ -73.30291748046875, -16.369583129882812 ], [ -73.302635192871037, -16.369583129882812 ], [ -73.302635192871037, -16.369861602783203 ], [ -73.302360534667912, -16.369861602783203 ], [ -73.302360534667912, -16.369304656982422 ], [ -73.302635192871037, -16.369304656982422 ], [ -73.302635192871037, -16.36874961853016 ], [ -73.303474426269531, -16.36874961853016 ], [ -73.303474426269531, -16.368473052978516 ], [ -73.303749084472656, -16.368473052978516 ], [ -73.303749084472656, -16.367082595825195 ], [ -73.304306030273438, -16.367082595825195 ], [ -73.304306030273438, -16.36695480346674 ], [ -73.304306030273438, -16.366249084472656 ], [ -73.304679870605469, -16.366249084472656 ], [ -73.304862976074105, -16.366249084472656 ], [ -73.304862976074105, -16.366527557373047 ], [ -73.305694580078068, -16.366527557373047 ], [ -73.305694580078068, -16.366249084472656 ], [ -73.30596923828125, -16.366249084472656 ], [ -73.30596923828125, -16.365695953369141 ], [ -73.305137634277287, -16.365695953369141 ], [ -73.305137634277287, -16.36541748046875 ], [ -73.306808471679688, -16.36541748046875 ], [ -73.306808471679688, -16.364860534667912 ], [ -73.307357788085938, -16.364860534667912 ], [ -73.307357788085938, -16.364662170410099 ], [ -73.307357788085938, -16.364349365234375 ], [ -73.307357788085938, -16.362916946411076 ], [ -73.307083129882812, -16.362916946411076 ], [ -73.307083129882812, -16.362638473510685 ], [ -73.306526184082031, -16.362638473510685 ], [ -73.306526184082031, -16.36180305480957 ], [ -73.306251525878906, -16.36180305480957 ], [ -73.306251525878906, -16.361528396606445 ], [ -73.30596923828125, -16.361528396606445 ], [ -73.30596923828125, -16.360971450805664 ], [ -73.305694580078068, -16.360971450805664 ], [ -73.305694580078068, -16.360694885253793 ], [ -73.305473327636719, -16.360694885253793 ], [ -73.305137634277287, -16.360694885253793 ], [ -73.305137634277287, -16.360416412353516 ], [ -73.304306030273438, -16.360416412353516 ], [ -73.304306030273438, -16.35986137390131 ], [ -73.304031372070312, -16.35986137390131 ], [ -73.304031372070312, -16.35958290100092 ], [ -73.303192138671875, -16.35958290100092 ], [ -73.303192138671875, -16.359306335449219 ], [ -73.302604675292969, -16.359306335449219 ], [ -73.302360534667912, -16.359306335449219 ], [ -73.302360534667912, -16.359027862548828 ], [ -73.302238464355469, -16.359027862548828 ], [ -73.302085876464787, -16.359027862548828 ], [ -73.302085876464787, -16.35891151428217 ], [ -73.302085876464787, -16.358749389648381 ], [ -73.301879882812443, -16.358749389648381 ], [ -73.301803588867131, -16.358749389648381 ], [ -73.301803588867131, -16.35847282409668 ], [ -73.301643371582031, -16.35847282409668 ], [ -73.301528930663949, -16.35847282409668 ], [ -73.301528930663949, -16.358333587646484 ], [ -73.301528930663949, -16.358194351196289 ], [ -73.301414489746037, -16.358194351196289 ], [ -73.301246643066406, -16.358194351196289 ], [ -73.301246643066406, -16.357915878295898 ], [ -73.300971984863281, -16.357915878295898 ], [ -73.300971984863281, -16.35736083984375 ], [ -73.300697326660156, -16.35736083984375 ], [ -73.300697326660156, -16.356805801391545 ], [ -73.300804138183594, -16.356805801391545 ], [ -73.300971984863281, -16.356805801391545 ], [ -73.300971984863281, -16.356250762939453 ], [ -73.301246643066406, -16.356250762939453 ], [ -73.301246643066406, -16.354421615600529 ], [ -73.301246643066406, -16.354305267333871 ], [ -73.301528930663949, -16.354305267333871 ], [ -73.301528930663949, -16.35316276550293 ], [ -73.301528930663949, -16.352901458740234 ], [ -73.301528930663949, -16.352361679077148 ], [ -73.301246643066406, -16.352361679077148 ], [ -73.301246643066406, -16.351528167724553 ], [ -73.301528930663949, -16.351528167724553 ], [ -73.301528930663949, -16.351100921630859 ], [ -73.301528930663949, -16.350973129272461 ], [ -73.301803588867131, -16.350973129272461 ], [ -73.301803588867131, -16.350732803344727 ], [ -73.301803588867131, -16.350414276123047 ], [ -73.302085876464787, -16.350414276123047 ], [ -73.302085876464787, -16.35024452209467 ], [ -73.302085876464787, -16.350139617919922 ], [ -73.302360534667912, -16.350139617919922 ], [ -73.302360534667912, -16.349861145019531 ], [ -73.302635192871037, -16.349861145019531 ], [ -73.302635192871037, -16.34930419921875 ], [ -73.30291748046875, -16.34930419921875 ], [ -73.30291748046875, -16.348928451538086 ], [ -73.30291748046875, -16.348749160766602 ], [ -73.303192138671875, -16.348749160766602 ], [ -73.303192138671875, -16.348474502563477 ], [ -73.303474426269531, -16.348474502563477 ], [ -73.303474426269531, -16.347639083862248 ], [ -73.305419921874943, -16.347639083862248 ], [ -73.305419921874943, -16.347917556762695 ], [ -73.30584716796875, -16.347917556762695 ], [ -73.306251525878906, -16.347917556762695 ], [ -73.306251525878906, -16.34819221496582 ], [ -73.306526184082031, -16.34819221496582 ], [ -73.306526184082031, -16.348474502563477 ], [ -73.306808471679688, -16.348474502563477 ], [ -73.306808471679688, -16.34819221496582 ], [ -73.307083129882812, -16.34819221496582 ], [ -73.307083129882812, -16.347360610961857 ], [ -73.307357788085938, -16.347360610961857 ], [ -73.307357788085938, -16.347082138061467 ], [ -73.308471679687443, -16.347082138061467 ], [ -73.308471679687443, -16.346805572509766 ], [ -73.310417175292969, -16.346805572509766 ], [ -73.310417175292969, -16.346527099609375 ], [ -73.31097412109375, -16.346527099609375 ], [ -73.31097412109375, -16.346250534057617 ], [ -73.311248779296818, -16.346250534057617 ], [ -73.311248779296818, -16.345693588256836 ], [ -73.31097412109375, -16.345693588256836 ], [ -73.31097412109375, -16.344583511352539 ], [ -73.311248779296818, -16.344583511352539 ], [ -73.311248779296818, -16.344305038452092 ], [ -73.31097412109375, -16.344305038452092 ], [ -73.31097412109375, -16.344028472900391 ], [ -73.311248779296818, -16.344028472900391 ], [ -73.311248779296818, -16.343471527099609 ], [ -73.311531066894474, -16.343471527099609 ], [ -73.311531066894474, -16.343194961547738 ], [ -73.311805725097599, -16.343194961547738 ], [ -73.311805725097599, -16.342639923095646 ], [ -73.312080383300724, -16.342639923095646 ], [ -73.312080383300724, -16.341806411743164 ], [ -73.312362670898381, -16.341806411743164 ], [ -73.312362670898381, -16.341249465942326 ], [ -73.312637329101562, -16.341249465942326 ], [ -73.312637329101562, -16.340972900390625 ], [ -73.312919616699219, -16.340972900390625 ], [ -73.312919616699219, -16.340694427490234 ], [ -73.313194274902344, -16.340694427490234 ], [ -73.313194274902344, -16.34041786193842 ], [ -73.313751220703125, -16.34041786193842 ], [ -73.313751220703125, -16.340139389037972 ], [ -73.31402587890625, -16.340139389037972 ], [ -73.31402587890625, -16.339860916137695 ], [ -73.314582824706974, -16.339860916137695 ], [ -73.314582824706974, -16.339582443237305 ], [ -73.315414428710881, -16.339582443237305 ], [ -73.315414428710881, -16.33930778503418 ], [ -73.315696716308594, -16.33930778503418 ], [ -73.315696716308594, -16.339027404785099 ], [ -73.316253662109375, -16.339027404785099 ], [ -73.316253662109375, -16.338750839233398 ], [ -73.317085266113281, -16.338750839233398 ], [ -73.317085266113281, -16.338472366333008 ], [ -73.318473815917912, -16.338472366333008 ], [ -73.318473815917912, -16.33819580078125 ], [ -73.31903076171875, -16.33819580078125 ], [ -73.31903076171875, -16.337917327880859 ], [ -73.319305419921875, -16.337917327880859 ], [ -73.319305419921875, -16.337638854980469 ], [ -73.319580078125, -16.337638854980469 ], [ -73.319580078125, -16.337360382080078 ], [ -73.319305419921875, -16.337360382080078 ], [ -73.319305419921875, -16.336803436279297 ], [ -73.321250915527287, -16.336803436279297 ], [ -73.321250915527287, -16.336526870727539 ], [ -73.321525573730412, -16.336526870727539 ], [ -73.321525573730412, -16.336803436279297 ], [ -73.321807861328068, -16.336803436279297 ], [ -73.321807861328068, -16.336526870727539 ], [ -73.32208251953125, -16.336526870727539 ], [ -73.32208251953125, -16.336250305175724 ], [ -73.322639465332031, -16.336250305175724 ], [ -73.322639465332031, -16.335971832275334 ], [ -73.322914123535156, -16.335971832275334 ], [ -73.322914123535156, -16.335693359374943 ], [ -73.323196411132812, -16.335693359374943 ], [ -73.323196411132812, -16.335416793823242 ], [ -73.323471069335938, -16.335416793823242 ], [ -73.323471069335938, -16.335138320922852 ], [ -73.325141906738224, -16.335138320922852 ], [ -73.325141906738224, -16.33486366271967 ], [ -73.325416564941406, -16.33486366271967 ], [ -73.325416564941406, -16.334581375122013 ], [ -73.325973510742188, -16.334581375122013 ], [ -73.325973510742188, -16.334304809570312 ], [ -73.326248168945312, -16.334304809570312 ], [ -73.326248168945312, -16.334028244018498 ], [ -73.326530456542969, -16.334028244018498 ], [ -73.326530456542969, -16.33374977111805 ], [ -73.327079772949162, -16.33374977111805 ], [ -73.327079772949162, -16.333471298217773 ], [ -73.327362060546818, -16.333471298217773 ], [ -73.327362060546818, -16.333194732665959 ], [ -73.327636718749943, -16.333194732665959 ], [ -73.327636718749943, -16.332639694213867 ], [ -73.327919006347599, -16.332639694213867 ], [ -73.327919006347599, -16.332361221313477 ], [ -73.328475952148438, -16.332361221313477 ], [ -73.328475952148438, -16.332082748413086 ], [ -73.328750610351562, -16.332082748413086 ], [ -73.328750610351562, -16.331806182861328 ], [ -73.329307556152344, -16.331806182861328 ], [ -73.329307556152344, -16.331527709960938 ], [ -73.329864501953125, -16.331527709960938 ], [ -73.329864501953125, -16.331249237060547 ], [ -73.330139160156136, -16.331249237060547 ], [ -73.330139160156136, -16.330972671508732 ], [ -73.330413818359318, -16.330972671508732 ], [ -73.330413818359318, -16.330694198608342 ], [ -73.330696105956974, -16.330694198608342 ], [ -73.330696105956974, -16.330415725707894 ], [ -73.330970764160099, -16.330415725707894 ], [ -73.330970764160099, -16.330139160156193 ], [ -73.331527709960938, -16.330139160156193 ], [ -73.331527709960938, -16.329860687255803 ], [ -73.332916259765625, -16.329860687255803 ], [ -73.332916259765625, -16.329584121704102 ], [ -73.333473205566293, -16.329584121704102 ], [ -73.333473205566293, -16.329305648803711 ], [ -73.334587097167912, -16.329305648803711 ], [ -73.334587097167912, -16.32902717590332 ], [ -73.334861755371094, -16.32902717590332 ], [ -73.334861755371094, -16.328472137451172 ], [ -73.335136413574219, -16.328472137451172 ], [ -73.335136413574219, -16.328193664550781 ], [ -73.335418701171875, -16.328193664550781 ], [ -73.335418701171875, -16.327917098998967 ], [ -73.336524963378793, -16.327917098998967 ], [ -73.336524963378793, -16.327638626098576 ], [ -73.337081909179631, -16.327638626098576 ], [ -73.337081909179631, -16.327362060546875 ], [ -73.337364196777287, -16.327360153198129 ], [ -73.337364196777287, -16.326805114746037 ], [ -73.337913513183594, -16.326805114746037 ], [ -73.337913513183594, -16.327083587646484 ], [ -73.338470458984375, -16.327083587646484 ], [ -73.338470458984375, -16.326805114746037 ], [ -73.339027404785156, -16.326805114746037 ], [ -73.339027404785156, -16.326528549194336 ], [ -73.339859008789006, -16.326528549194336 ], [ -73.339859008789006, -16.326250076293945 ], [ -73.340415954589787, -16.326250076293945 ], [ -73.340415954589787, -16.325971603393555 ], [ -73.340690612792912, -16.325971603393555 ], [ -73.340698242187443, -16.32569694519043 ], [ -73.340972900390568, -16.32569694519043 ], [ -73.340972900390568, -16.325416564941406 ], [ -73.34124755859375, -16.325416564941406 ], [ -73.34124755859375, -16.325136184692326 ], [ -73.342086791992188, -16.325136184692326 ], [ -73.342086791992188, -16.324861526489201 ], [ -73.342636108398438, -16.324861526489201 ], [ -73.342636108398438, -16.32458305358881 ], [ -73.34375, -16.32458305358881 ], [ -73.34375, -16.324306488037109 ], [ -73.344306945800781, -16.324306488037109 ], [ -73.344306945800781, -16.324028015136719 ], [ -73.34597015380848, -16.324028015136719 ], [ -73.34597015380848, -16.323749542236271 ], [ -73.346527099609318, -16.323749542236271 ], [ -73.346527099609318, -16.323474884033146 ], [ -73.346801757812443, -16.323474884033146 ], [ -73.346801757812443, -16.323196411132756 ], [ -73.347084045410099, -16.323196411132756 ], [ -73.347084045410099, -16.322914123535099 ], [ -73.347640991210938, -16.322914123535099 ], [ -73.347640991210938, -16.322639465331918 ], [ -73.348197937011719, -16.322639465331918 ], [ -73.348197937011719, -16.322360992431641 ], [ -73.348472595214844, -16.322360992431641 ], [ -73.348472595214844, -16.32208251953125 ], [ -73.349304199218636, -16.32208251953125 ], [ -73.349304199218636, -16.321804046630859 ], [ -73.350135803222599, -16.321804046630859 ], [ -73.350135803222599, -16.32208251953125 ], [ -73.350975036621094, -16.32208251953125 ], [ -73.350975036621094, -16.321804046630859 ], [ -73.352363586425781, -16.321804046630859 ], [ -73.352363586425781, -16.321527481079045 ], [ -73.352912902831974, -16.321527481079045 ], [ -73.352912902831974, -16.32125282287592 ], [ -73.353195190429631, -16.32125282287592 ], [ -73.353195190429631, -16.320972442626953 ], [ -73.354339599609318, -16.320972442626953 ], [ -73.354583740234375, -16.320972442626953 ], [ -73.354583740234375, -16.32125282287592 ], [ -73.355415344238281, -16.32125282287592 ], [ -73.355415344238281, -16.320972442626953 ], [ -73.355972290039006, -16.320972442626953 ], [ -73.355972290039006, -16.32069206237793 ], [ -73.356246948242131, -16.32069206237793 ], [ -73.356246948242131, -16.320417404174805 ], [ -73.356529235839787, -16.320417404174805 ], [ -73.356529235839787, -16.320138931274414 ], [ -73.356803894042912, -16.320138931274414 ], [ -73.356803894042912, -16.319860458374023 ], [ -73.35736083984375, -16.319860458374023 ], [ -73.35736083984375, -16.319583892822209 ], [ -73.358192443847656, -16.319583892822209 ], [ -73.358192443847656, -16.319305419921761 ], [ -73.358299255371094, -16.319305419921761 ], [ -73.358749389648324, -16.319305419921761 ], [ -73.358749389648324, -16.319026947021484 ], [ -73.358917236328068, -16.319026947021484 ], [ -73.359024047851506, -16.319026947021484 ], [ -73.359024047851506, -16.31875038146967 ], [ -73.359580993652287, -16.31875038146967 ], [ -73.359580993652287, -16.318471908569279 ], [ -73.360137939453125, -16.318471908569279 ], [ -73.360420227050781, -16.318471908569279 ], [ -73.360420227050781, -16.318342208862305 ], [ -73.360420227050781, -16.318195343017578 ], [ -73.360694885253906, -16.318195343017578 ], [ -73.360694885253906, -16.317916870117188 ], [ -73.361831665039062, -16.317916870117188 ], [ -73.36208343505848, -16.317916870117188 ], [ -73.36208343505848, -16.317638397216797 ], [ -73.362358093261662, -16.317638397216797 ], [ -73.362358093261662, -16.317361831665039 ], [ -73.363418579101449, -16.317361831665039 ], [ -73.363746643066406, -16.317361831665039 ], [ -73.363746643066406, -16.317083358764648 ], [ -73.363906860351562, -16.317083358764648 ], [ -73.364303588867188, -16.317083358764648 ], [ -73.364303588867188, -16.316804885864258 ], [ -73.364585876464844, -16.316804885864258 ], [ -73.364585876464844, -16.316696166992131 ], [ -73.364585876464844, -16.316528320312443 ], [ -73.364860534667969, -16.316528320312443 ], [ -73.364860534667969, -16.316249847411996 ], [ -73.365417480468693, -16.316249847411996 ], [ -73.365417480468693, -16.316804885864258 ], [ -73.365692138671818, -16.316804885864258 ], [ -73.365692138671818, -16.316528320312443 ], [ -73.365974426269474, -16.316528320312443 ], [ -73.365974426269474, -16.316804885864258 ], [ -73.367080688476562, -16.316804885864258 ], [ -73.367080688476562, -16.316528320312443 ], [ -73.367637634277344, -16.316528320312443 ], [ -73.367637634277344, -16.316249847411996 ], [ -73.367919921875, -16.316249847411996 ], [ -73.367919921875, -16.315971374511719 ], [ -73.368469238281193, -16.315971374511719 ], [ -73.368469238281193, -16.315694808959904 ], [ -73.368751525878849, -16.315694808959904 ], [ -73.368751525878849, -16.314413070678711 ], [ -73.368751525878849, -16.313749313354492 ], [ -73.369209289550724, -16.313749313354492 ], [ -73.369583129882756, -16.313749313354492 ], [ -73.369583129882756, -16.314027786254883 ], [ -73.370140075683594, -16.314027786254883 ], [ -73.370140075683594, -16.313749313354492 ], [ -73.370414733886719, -16.313749313354492 ], [ -73.370414733886719, -16.313472747802678 ], [ -73.370697021484375, -16.313472747802678 ], [ -73.370697021484375, -16.312360763549748 ], [ -73.372360229492131, -16.312360763549748 ], [ -73.372360229492131, -16.312639236450138 ], [ -73.372642517089787, -16.312639236450138 ], [ -73.372642517089787, -16.312917709350586 ], [ -73.373191833496094, -16.312917709350586 ], [ -73.373191833496094, -16.313194274902287 ], [ -73.374862670898324, -16.313194274902287 ], [ -73.374862670898324, -16.312917709350586 ], [ -73.376251220703125, -16.312917709350586 ], [ -73.376251220703125, -16.313194274902287 ], [ -73.376808166503906, -16.313194274902287 ], [ -73.376808166503906, -16.312917709350586 ], [ -73.377639770507812, -16.312917709350586 ], [ -73.377639770507812, -16.312639236450138 ], [ -73.378753662109318, -16.312639236450138 ], [ -73.378753662109318, -16.312360763549748 ], [ -73.379081726074219, -16.312360763549748 ], [ -73.379585266113281, -16.312360763549748 ], [ -73.379585266113281, -16.312084197998047 ], [ -73.380050659179688, -16.312084197998047 ], [ -73.380416870117188, -16.312084197998047 ], [ -73.380416870117188, -16.311807632446232 ], [ -73.380973815917969, -16.311807632446232 ], [ -73.380973815917969, -16.311525344848576 ], [ -73.381111145019531, -16.311525344848576 ], [ -73.381530761718693, -16.311525344848576 ], [ -73.381530761718693, -16.311807632446232 ], [ -73.381805419921818, -16.311807632446232 ], [ -73.381805419921818, -16.311525344848576 ], [ -73.382362365722599, -16.311525344848576 ], [ -73.382362365722599, -16.311807632446232 ], [ -73.382637023925781, -16.311807632446232 ], [ -73.382637023925781, -16.311250686645508 ], [ -73.382919311523438, -16.311250686645508 ], [ -73.382919311523438, -16.310972213745117 ], [ -73.383193969726562, -16.310972213745117 ], [ -73.383193969726562, -16.310695648193303 ], [ -73.383750915527344, -16.310695648193303 ], [ -73.383750915527344, -16.310417175292912 ], [ -73.385971069335938, -16.310417175292912 ], [ -73.385971069335938, -16.310138702392521 ], [ -73.387641906738168, -16.310138702392521 ], [ -73.387641906738168, -16.309860229492074 ], [ -73.387916564941349, -16.309860229492074 ], [ -73.387916564941349, -16.309585571289062 ], [ -73.388191223144474, -16.309585571289062 ], [ -73.388191223144474, -16.309303283691406 ], [ -73.389305114746094, -16.309303283691406 ], [ -73.389305114746094, -16.309585571289062 ], [ -73.389579772949219, -16.309585571289062 ], [ -73.389579772949219, -16.309303283691406 ], [ -73.39013671875, -16.309303283691406 ], [ -73.39013671875, -16.309585571289062 ], [ -73.391250610351506, -16.309585571289062 ], [ -73.391250610351506, -16.309303283691406 ], [ -73.391807556152287, -16.309303283691406 ], [ -73.391807556152287, -16.309028625488281 ], [ -73.392082214355469, -16.309028625488281 ], [ -73.392082214355469, -16.308750152587891 ], [ -73.39263916015625, -16.308750152587891 ], [ -73.39263916015625, -16.308193206787109 ], [ -73.392364501953125, -16.308193206787109 ], [ -73.392364501953125, -16.307994842529297 ], [ -73.392364501953125, -16.307361602783146 ], [ -73.39263916015625, -16.307361602783146 ], [ -73.39263916015625, -16.306804656982365 ], [ -73.392829895019531, -16.306804656982365 ], [ -73.393196105957031, -16.306804656982365 ], [ -73.393196105957031, -16.306528091430664 ], [ -73.394027709960881, -16.306528091430664 ], [ -73.394027709960881, -16.306249618530217 ], [ -73.39569091796875, -16.306249618530217 ], [ -73.39569091796875, -16.305971145629826 ], [ -73.395973205566406, -16.305971145629826 ], [ -73.395973205566406, -16.305694580078125 ], [ -73.396247863769531, -16.305694580078125 ], [ -73.396247863769531, -16.305416107177734 ], [ -73.396804809570312, -16.305416107177734 ], [ -73.396804809570312, -16.305139541625863 ], [ -73.398475646972656, -16.305139541625863 ], [ -73.398475646972656, -16.304859161376953 ], [ -73.398750305175781, -16.304859161376953 ], [ -73.398750305175781, -16.304306030273381 ], [ -73.399024963378906, -16.304306030273381 ], [ -73.399024963378906, -16.303749084472599 ], [ -73.399307250976562, -16.303749084472599 ], [ -73.399307250976562, -16.303472518920898 ], [ -73.399581909179688, -16.303472518920898 ], [ -73.399581909179688, -16.303194046020508 ], [ -73.399864196777344, -16.303194046020508 ], [ -73.399864196777344, -16.30291748046875 ], [ -73.400138854980355, -16.30291748046875 ], [ -73.400138854980355, -16.302640914916935 ], [ -73.400695800781193, -16.302640914916935 ], [ -73.400695800781193, -16.30291748046875 ], [ -73.400970458984318, -16.30291748046875 ], [ -73.400970458984318, -16.302640914916935 ], [ -73.401252746581974, -16.302640914916935 ], [ -73.401252746581974, -16.302360534667969 ], [ -73.401527404785156, -16.302360534667969 ], [ -73.401527404785156, -16.302083969116154 ], [ -73.401802062988281, -16.302083969116154 ], [ -73.401802062988281, -16.301805496215707 ], [ -73.402084350585938, -16.301805496215707 ], [ -73.402084350585938, -16.301528930664006 ], [ -73.402359008789062, -16.301528930664006 ], [ -73.402359008789062, -16.301250457763615 ], [ -73.403747558593693, -16.301250457763615 ], [ -73.403747558593693, -16.300971984863224 ], [ -73.404029846191349, -16.300971984863224 ], [ -73.404029846191349, -16.300693511962834 ], [ -73.404304504394474, -16.300693511962834 ], [ -73.404304504394474, -16.300418853759652 ], [ -73.404586791992131, -16.300418853759652 ], [ -73.404586791992131, -16.300138473510742 ], [ -73.405136108398438, -16.300138473510742 ], [ -73.405136108398438, -16.299861907958984 ], [ -73.405418395996094, -16.299861907958984 ], [ -73.405418395996094, -16.299583435058594 ], [ -73.407363891601506, -16.299583435058594 ], [ -73.407363891601506, -16.299306869506779 ], [ -73.408195495605469, -16.299306869506779 ], [ -73.408195495605469, -16.299028396606388 ], [ -73.4093017578125, -16.299028396606388 ], [ -73.4093017578125, -16.298749923705941 ], [ -73.410415649414006, -16.298749923705941 ], [ -73.410415649414006, -16.298471450805664 ], [ -73.41180419921875, -16.298471450805664 ], [ -73.41180419921875, -16.298196792602539 ], [ -73.412635803222656, -16.298196792602539 ], [ -73.412635803222656, -16.297914505004883 ], [ -73.412918090820199, -16.297914505004883 ], [ -73.412918090820199, -16.297637939453068 ], [ -73.413475036621037, -16.297637939453068 ], [ -73.413475036621037, -16.297361373901367 ], [ -73.413749694824162, -16.297361373901367 ], [ -73.413749694824162, -16.297084808349496 ], [ -73.414024353027287, -16.297084808349496 ], [ -73.414024353027287, -16.296527862548828 ], [ -73.414306640625, -16.296527862548828 ], [ -73.414306640625, -16.296249389648438 ], [ -73.414863586425781, -16.296249389648438 ], [ -73.414863586425781, -16.295974731445312 ], [ -73.415138244628906, -16.295974731445312 ], [ -73.415138244628906, -16.295692443847656 ], [ -73.415412902832031, -16.295692443847656 ], [ -73.415412902832031, -16.295415878295785 ], [ -73.416526794433537, -16.295415878295785 ], [ -73.416526794433537, -16.295139312744084 ], [ -73.417640686035156, -16.295139312744084 ], [ -73.417640686035156, -16.294860839843693 ], [ -73.418472290039062, -16.294860839843693 ], [ -73.418472290039062, -16.294582366943303 ], [ -73.418746948242188, -16.294582366943303 ], [ -73.418746948242188, -16.294305801391602 ], [ -73.419303894042855, -16.294305801391602 ], [ -73.419303894042855, -16.294027328491211 ], [ -73.419860839843693, -16.294027328491211 ], [ -73.419860839843693, -16.293750762939453 ], [ -73.420417785644474, -16.293750762939453 ], [ -73.420417785644474, -16.293472290039062 ], [ -73.420974731445312, -16.293472290039062 ], [ -73.420974731445312, -16.293193817138672 ], [ -73.421806335449219, -16.293193817138672 ], [ -73.421806335449219, -16.292917251586857 ], [ -73.423469543456974, -16.292917251586857 ], [ -73.423469543456974, -16.292638778686467 ], [ -73.423751831054631, -16.292638778686467 ], [ -73.423751831054631, -16.292360305786019 ], [ -73.424308776855469, -16.292360305786019 ], [ -73.424308776855469, -16.292083740234375 ], [ -73.424858093261719, -16.292083740234375 ], [ -73.424858093261719, -16.291805267333928 ], [ -73.425697326660043, -16.291805267333928 ], [ -73.425697326660043, -16.292083740234375 ], [ -73.426246643066349, -16.292083740234375 ], [ -73.426246643066349, -16.291805267333928 ], [ -73.426803588867131, -16.291805267333928 ], [ -73.426803588867131, -16.291528701782227 ], [ -73.427085876464844, -16.291528701782227 ], [ -73.427085876464844, -16.291250228881836 ], [ -73.427635192871094, -16.291250228881836 ], [ -73.427635192871094, -16.290971755981445 ], [ -73.428192138671875, -16.290971755981445 ], [ -73.428192138671875, -16.290695190429574 ], [ -73.428474426269531, -16.290695190429574 ], [ -73.428474426269531, -16.290416717529297 ], [ -73.429580688476506, -16.290416717529297 ], [ -73.429580688476506, -16.290138244628906 ], [ -73.429862976074162, -16.290138244628906 ], [ -73.429862976074162, -16.289861679077092 ], [ -73.430137634277344, -16.289861679077092 ], [ -73.430137634277344, -16.289583206176701 ], [ -73.43096923828125, -16.289583206176701 ], [ -73.43096923828125, -16.28930473327631 ], [ -73.431808471679688, -16.28930473327631 ], [ -73.431808471679688, -16.289028167724609 ], [ -73.432083129882699, -16.289028167724609 ], [ -73.432083129882699, -16.28930473327631 ], [ -73.4334716796875, -16.28930473327631 ], [ -73.4334716796875, -16.289028167724609 ], [ -73.433746337890625, -16.289028167724609 ], [ -73.433746337890625, -16.288749694824162 ], [ -73.434585571289062, -16.288749694824162 ], [ -73.434585571289062, -16.288473129272461 ], [ -73.435691833496037, -16.288473129272461 ], [ -73.435691833496037, -16.28819465637207 ], [ -73.436805725097656, -16.28819465637207 ], [ -73.436805725097656, -16.28791618347168 ], [ -73.437080383300781, -16.28791618347168 ], [ -73.437080383300781, -16.287639617919808 ], [ -73.437637329101562, -16.287639617919808 ], [ -73.437637329101562, -16.287361145019531 ], [ -73.438751220703068, -16.287361145019531 ], [ -73.438751220703068, -16.287082672119141 ], [ -73.439025878906193, -16.287082672119141 ], [ -73.439025878906193, -16.286806106567326 ], [ -73.439582824706974, -16.286806106567326 ], [ -73.439582824706974, -16.286527633666935 ], [ -73.440414428710938, -16.286527633666935 ], [ -73.440414428710938, -16.286249160766545 ], [ -73.441528320312386, -16.286249160766545 ], [ -73.441528320312386, -16.285972595214844 ], [ -73.441802978515568, -16.285972595214844 ], [ -73.441802978515568, -16.285694122314453 ], [ -73.442359924316349, -16.285694122314453 ], [ -73.442359924316349, -16.285972595214844 ], [ -73.44403076171875, -16.285972595214844 ], [ -73.44403076171875, -16.285694122314453 ], [ -73.444305419921875, -16.285694122314453 ], [ -73.444305419921875, -16.285139083862305 ], [ -73.444580078124886, -16.285139083862305 ], [ -73.444580078124886, -16.284860610961914 ], [ -73.445137023925724, -16.284860610961914 ], [ -73.445137023925724, -16.284585952758789 ], [ -73.445419311523381, -16.284585952758789 ], [ -73.445419311523381, -16.284860610961914 ], [ -73.445693969726506, -16.284860610961914 ], [ -73.445693969726506, -16.284585952758789 ], [ -73.446807861328125, -16.284585952758789 ], [ -73.446807861328125, -16.284025192260742 ], [ -73.44708251953125, -16.284025192260742 ], [ -73.44708251953125, -16.28375053405756 ], [ -73.447639465332031, -16.28375053405756 ], [ -73.447639465332031, -16.28347206115717 ], [ -73.447914123535043, -16.28347206115717 ], [ -73.447914123535043, -16.283195495605469 ], [ -73.448196411132756, -16.283195495605469 ], [ -73.448196411132756, -16.28347206115717 ], [ -73.448471069335881, -16.28347206115717 ], [ -73.448471069335881, -16.283195495605469 ], [ -73.449302673339844, -16.283195495605469 ], [ -73.449302673339844, -16.282363891601506 ], [ -73.450141906738281, -16.282363891601506 ], [ -73.450141906738281, -16.282085418701115 ], [ -73.450416564941406, -16.282085418701115 ], [ -73.450416564941406, -16.281803131103459 ], [ -73.451248168945256, -16.281803131103459 ], [ -73.451248168945256, -16.281528472900334 ], [ -73.451530456542912, -16.281528472900334 ], [ -73.451530456542912, -16.281249999999886 ], [ -73.452919006347656, -16.281249999999886 ], [ -73.452919006347656, -16.280971527099609 ], [ -73.456253051757812, -16.280971527099609 ], [ -73.456253051757812, -16.280693054199219 ], [ -73.456527709960938, -16.280693054199219 ], [ -73.456527709960938, -16.280416488647404 ], [ -73.457641601562386, -16.280416488647404 ], [ -73.457641601562386, -16.280138015747013 ], [ -73.458473205566349, -16.280138015747013 ], [ -73.458473205566349, -16.279861450195312 ], [ -73.458747863769531, -16.279861450195312 ], [ -73.458747863769531, -16.279581069946175 ], [ -73.459030151367188, -16.279581069946175 ], [ -73.459030151367188, -16.279306411743164 ], [ -73.459304809570312, -16.279306411743164 ], [ -73.459304809570312, -16.279027938842773 ], [ -73.459861755371094, -16.279027938842773 ], [ -73.459861755371094, -16.278749465942383 ], [ -73.460693359374886, -16.278749465942383 ], [ -73.460693359374886, -16.279027938842773 ], [ -73.461807250976506, -16.279027938842773 ], [ -73.461807250976506, -16.279581069946175 ], [ -73.462638854980469, -16.279581069946175 ], [ -73.462638854980469, -16.279861450195312 ], [ -73.46319580078125, -16.279861450195312 ], [ -73.46319580078125, -16.279581069946175 ], [ -73.464302062988224, -16.279581069946175 ], [ -73.464302062988224, -16.279861450195312 ], [ -73.464859008789006, -16.279861450195312 ], [ -73.464859008789006, -16.279581069946175 ], [ -73.4656982421875, -16.279581069946175 ], [ -73.4656982421875, -16.280138015747013 ], [ -73.46624755859375, -16.280138015747013 ], [ -73.46624755859375, -16.280416488647404 ], [ -73.467918395996037, -16.280416488647404 ], [ -73.467918395996037, -16.280693054199219 ], [ -73.468475341796875, -16.280693054199219 ], [ -73.468475341796875, -16.280971527099609 ], [ -73.469306945800781, -16.280971527099609 ], [ -73.469306945800781, -16.281803131103459 ], [ -73.469581604003906, -16.281803131103459 ], [ -73.469581604003906, -16.282085418701115 ], [ -73.470695495605412, -16.282085418701115 ], [ -73.470695495605412, -16.282363891601506 ], [ -73.471252441406193, -16.282363891601506 ], [ -73.471252441406193, -16.281866073608342 ], [ -73.471252441406193, -16.281528472900334 ], [ -73.471527099609375, -16.281528472900334 ], [ -73.471527099609375, -16.280693054199219 ], [ -73.4718017578125, -16.280693054199219 ], [ -73.4718017578125, -16.280416488647404 ], [ -73.472007751464787, -16.280416488647404 ], [ -73.472640991210938, -16.280416488647404 ], [ -73.472640991210938, -16.279861450195312 ], [ -73.472915649414062, -16.279861450195312 ], [ -73.472915649414062, -16.279581069946175 ], [ -73.474861145019531, -16.279581069946175 ], [ -73.474861145019531, -16.279861450195312 ], [ -73.475135803222656, -16.279861450195312 ], [ -73.475135803222656, -16.280138015747013 ], [ -73.476249694824219, -16.280138015747013 ], [ -73.476249694824219, -16.280416488647404 ], [ -73.47652435302723, -16.280416488647404 ], [ -73.47652435302723, -16.280693054199219 ], [ -73.477081298828068, -16.280693054199219 ], [ -73.477081298828068, -16.280971527099609 ], [ -73.477638244628849, -16.280971527099609 ], [ -73.477638244628849, -16.281249999999886 ], [ -73.477912902832031, -16.281249999999886 ], [ -73.477912902832031, -16.281528472900334 ], [ -73.478469848632812, -16.281528472900334 ], [ -73.478469848632812, -16.281803131103459 ], [ -73.478752136230469, -16.281803131103459 ], [ -73.478752136230469, -16.282638549804688 ], [ -73.47930908203125, -16.282638549804688 ], [ -73.47930908203125, -16.282915115356388 ], [ -73.479583740234375, -16.282915115356388 ], [ -73.479583740234375, -16.283195495605469 ], [ -73.479858398437443, -16.283195495605469 ], [ -73.479858398437443, -16.28347206115717 ], [ -73.480415344238224, -16.28347206115717 ], [ -73.480415344238224, -16.284025192260742 ], [ -73.480697631835881, -16.284025192260742 ], [ -73.480697631835881, -16.284860610961914 ], [ -73.481529235839844, -16.284860610961914 ], [ -73.481529235839844, -16.284585952758789 ], [ -73.481803894042969, -16.284585952758789 ], [ -73.481803894042969, -16.284303665161133 ], [ -73.482086181640625, -16.284303665161133 ], [ -73.482086181640625, -16.284025192260742 ], [ -73.48236083984375, -16.284025192260742 ], [ -73.48236083984375, -16.28375053405756 ], [ -73.483749389648381, -16.28375053405756 ], [ -73.483749389648381, -16.284025192260742 ], [ -73.484306335449219, -16.284025192260742 ], [ -73.484306335449219, -16.28375053405756 ], [ -73.484580993652344, -16.28375053405756 ], [ -73.484580993652344, -16.283195495605469 ], [ -73.48486328125, -16.283195495605469 ], [ -73.48486328125, -16.282915115356388 ], [ -73.485137939453125, -16.282915115356388 ], [ -73.485137939453125, -16.282085418701115 ], [ -73.485420227050781, -16.282085418701115 ], [ -73.485420227050781, -16.281528472900334 ], [ -73.485969543456918, -16.281528472900334 ], [ -73.485969543456918, -16.281249999999886 ], [ -73.486251831054574, -16.281249999999886 ], [ -73.486251831054574, -16.280971527099609 ], [ -73.486808776855412, -16.280971527099609 ], [ -73.486808776855412, -16.280416488647404 ], [ -73.488471984863281, -16.280416488647404 ], [ -73.488471984863281, -16.280138015747013 ], [ -73.489028930664062, -16.280138015747013 ], [ -73.489028930664062, -16.279861450195312 ], [ -73.489303588867074, -16.279861450195312 ], [ -73.489303588867074, -16.279581069946175 ], [ -73.490417480468693, -16.279581069946175 ], [ -73.490417480468693, -16.279861450195312 ], [ -73.490692138671875, -16.279861450195312 ], [ -73.490692138671875, -16.279581069946175 ], [ -73.491249084472656, -16.279581069946175 ], [ -73.491249084472656, -16.279306411743164 ], [ -73.491531372070312, -16.279306411743164 ], [ -73.491531372070312, -16.278749465942383 ], [ -73.491806030273438, -16.278749465942383 ], [ -73.491806030273438, -16.277360916137638 ], [ -73.492637634277287, -16.277360916137638 ], [ -73.492637634277287, -16.277082443237248 ], [ -73.493469238281193, -16.277082443237248 ], [ -73.493469238281193, -16.276805877685547 ], [ -73.494026184082031, -16.276805877685547 ], [ -73.494026184082031, -16.276527404785156 ], [ -73.494308471679688, -16.276527404785156 ], [ -73.494308471679688, -16.275972366333008 ], [ -73.494583129882812, -16.275972366333008 ], [ -73.494583129882812, -16.274860382079964 ], [ -73.494857788085938, -16.274860382079964 ], [ -73.494857788085938, -16.27458381652832 ], [ -73.495697021484261, -16.27458381652832 ], [ -73.495697021484261, -16.274305343627873 ], [ -73.496246337890568, -16.274305343627873 ], [ -73.496246337890568, -16.274028778076172 ], [ -73.497085571289062, -16.274028778076172 ], [ -73.497085571289062, -16.274305343627873 ], [ -73.498748779296761, -16.274305343627873 ], [ -73.498748779296761, -16.274028778076172 ], [ -73.499031066894418, -16.274028778076172 ], [ -73.499031066894418, -16.273750305175781 ], [ -73.500137329101562, -16.273750305175781 ], [ -73.500137329101562, -16.273471832275391 ], [ -73.500694274902344, -16.273471832275391 ], [ -73.500694274902344, -16.273195266723519 ], [ -73.501251220703125, -16.273195266723519 ], [ -73.501251220703125, -16.272918701171818 ], [ -73.502357482910099, -16.272918701171818 ], [ -73.502357482910099, -16.272361755371037 ], [ -73.502914428710881, -16.272361755371037 ], [ -73.502914428710881, -16.272083282470646 ], [ -73.503753662109375, -16.272083282470646 ], [ -73.503753662109375, -16.271806716918945 ], [ -73.5040283203125, -16.271806716918945 ], [ -73.5040283203125, -16.271528244018555 ], [ -73.504302978515625, -16.271528244018555 ], [ -73.504302978515625, -16.271249771118107 ], [ -73.504859924316406, -16.271249771118107 ], [ -73.504859924316406, -16.270971298217717 ], [ -73.505142211914062, -16.270971298217717 ], [ -73.505142211914062, -16.270696640014592 ], [ -73.505416870117131, -16.270696640014592 ], [ -73.505416870117131, -16.270414352416935 ], [ -73.505973815917912, -16.270414352416935 ], [ -73.505973815917912, -16.270139694213754 ], [ -73.506805419921875, -16.270139694213754 ], [ -73.506805419921875, -16.269861221313477 ], [ -73.507637023925781, -16.269861221313477 ], [ -73.507637023925781, -16.269584655761662 ], [ -73.508750915527287, -16.269584655761662 ], [ -73.508750915527287, -16.269304275512695 ], [ -73.509307861328068, -16.269304275512695 ], [ -73.509307861328068, -16.269027709960881 ], [ -73.510139465332031, -16.269027709960881 ], [ -73.510139465332031, -16.269304275512695 ], [ -73.510414123535156, -16.269304275512695 ], [ -73.510414123535156, -16.269027709960881 ], [ -73.510696411132812, -16.269027709960881 ], [ -73.510696411132812, -16.26874923706049 ], [ -73.511253356933594, -16.26874923706049 ], [ -73.511253356933594, -16.268474578857308 ], [ -73.512084960937443, -16.268474578857308 ], [ -73.512084960937443, -16.267915725707951 ], [ -73.512641906738224, -16.267915725707951 ], [ -73.512641906738224, -16.267360687255859 ], [ -73.512916564941406, -16.267360687255859 ], [ -73.512916564941406, -16.267082214355469 ], [ -73.513191223144531, -16.267082214355469 ], [ -73.513191223144531, -16.26652717590332 ], [ -73.513473510742188, -16.26652717590332 ], [ -73.513473510742188, -16.266250610351506 ], [ -73.514862060546761, -16.266250610351506 ], [ -73.514862060546761, -16.26652717590332 ], [ -73.515136718749943, -16.26652717590332 ], [ -73.515136718749943, -16.266250610351506 ], [ -73.516250610351562, -16.266250610351506 ], [ -73.516250610351562, -16.265970230102539 ], [ -73.516807556152344, -16.265970230102539 ], [ -73.516807556152344, -16.265693664550724 ], [ -73.517082214355469, -16.265693664550724 ], [ -73.517082214355469, -16.265417098999023 ], [ -73.51763916015625, -16.265417098999023 ], [ -73.51763916015625, -16.265138626098633 ], [ -73.517913818359261, -16.265138626098633 ], [ -73.517913818359261, -16.264860153198185 ], [ -73.518196105956974, -16.264860153198185 ], [ -73.518196105956974, -16.264583587646484 ], [ -73.518470764160099, -16.264583587646484 ], [ -73.518470764160099, -16.264305114746094 ], [ -73.518753051757756, -16.264305114746094 ], [ -73.518753051757756, -16.264028549194279 ], [ -73.519027709960881, -16.264028549194279 ], [ -73.519027709960881, -16.263748168945312 ], [ -73.521247863769474, -16.263748168945312 ], [ -73.521247863769474, -16.263471603393555 ], [ -73.522918701171875, -16.263471603393555 ], [ -73.522918701171875, -16.26319503784174 ], [ -73.524024963378906, -16.26319503784174 ], [ -73.524024963378906, -16.262916564941349 ], [ -73.524307250976449, -16.262916564941349 ], [ -73.524307250976449, -16.262638092040959 ], [ -73.525138854980412, -16.262638092040959 ], [ -73.525138854980412, -16.262916564941349 ], [ -73.525413513183537, -16.262916564941349 ], [ -73.525413513183537, -16.262638092040959 ], [ -73.526527404785156, -16.262638092040959 ], [ -73.526527404785156, -16.262916564941349 ], [ -73.527915954589787, -16.262916564941349 ], [ -73.527915954589787, -16.262638092040959 ], [ -73.528190612792912, -16.262638092040959 ], [ -73.528198242187443, -16.262361526489258 ], [ -73.529304504394531, -16.262361526489258 ], [ -73.529304504394531, -16.262083053588867 ], [ -73.529586791992188, -16.262083053588867 ], [ -73.529586791992188, -16.261529922485295 ], [ -73.529861450195312, -16.261529922485295 ], [ -73.529861450195312, -16.261249542236328 ], [ -73.530693054199105, -16.261249542236328 ], [ -73.530693054199105, -16.260972976684513 ], [ -73.530975341796818, -16.260972976684513 ], [ -73.530975341796818, -16.259582519531193 ], [ -73.53125, -16.259582519531193 ], [ -73.53125, -16.259027481079102 ], [ -73.531524658203068, -16.259027481079102 ], [ -73.531524658203068, -16.258750915527344 ], [ -73.53125, -16.258750915527344 ], [ -73.53125, -16.257917404174748 ], [ -73.531524658203068, -16.257917404174748 ], [ -73.531524658203068, -16.257638931274357 ], [ -73.532363891601562, -16.257638931274357 ], [ -73.532363891601562, -16.25736045837391 ], [ -73.532638549804688, -16.25736045837391 ], [ -73.532638549804688, -16.257085800170898 ], [ -73.533195495605469, -16.257085800170898 ], [ -73.533195495605469, -16.256803512573242 ], [ -73.533470153808594, -16.256803512573242 ], [ -73.533470153808594, -16.256526947021428 ], [ -73.534027099609318, -16.256526947021428 ], [ -73.534027099609318, -16.256250381469727 ], [ -73.534584045410099, -16.256250381469727 ], [ -73.534584045410099, -16.256526947021428 ], [ -73.534858703613224, -16.256526947021428 ], [ -73.534858703613224, -16.256250381469727 ], [ -73.535697937011719, -16.256250381469727 ], [ -73.535697937011719, -16.255973815917912 ], [ -73.536247253417969, -16.255973815917912 ], [ -73.536247253417969, -16.255693435668945 ], [ -73.538192749023381, -16.255693435668945 ], [ -73.538192749023381, -16.255416870117188 ], [ -73.538749694824219, -16.255416870117188 ], [ -73.538749694824219, -16.255693435668945 ], [ -73.539581298828125, -16.255693435668945 ], [ -73.539581298828125, -16.255416870117188 ], [ -73.539863586425781, -16.255416870117188 ], [ -73.539863586425781, -16.255138397216797 ], [ -73.541252136230412, -16.255138397216797 ], [ -73.541252136230412, -16.254863739013672 ], [ -73.541526794433594, -16.254863739013672 ], [ -73.541526794433594, -16.254304885864201 ], [ -73.5423583984375, -16.254304885864201 ], [ -73.5423583984375, -16.254581451416016 ], [ -73.543746948242131, -16.254581451416016 ], [ -73.543746948242131, -16.254304885864201 ], [ -73.544029235839787, -16.254304885864201 ], [ -73.544029235839787, -16.2540283203125 ], [ -73.54486083984375, -16.2540283203125 ], [ -73.54486083984375, -16.253749847412053 ], [ -73.545974731445312, -16.253749847412053 ], [ -73.545974731445312, -16.253471374511662 ], [ -73.547080993652287, -16.253471374511662 ], [ -73.547080993652287, -16.253194808959961 ], [ -73.547920227050724, -16.253194808959961 ], [ -73.547920227050724, -16.25291633605957 ], [ -73.548751831054688, -16.25291633605957 ], [ -73.548751831054688, -16.252639770507699 ], [ -73.549308776855469, -16.252639770507699 ], [ -73.549308776855469, -16.252361297607422 ], [ -73.549583435058594, -16.252361297607422 ], [ -73.549583435058594, -16.252082824707031 ], [ -73.549858093261662, -16.252082824707031 ], [ -73.549858093261662, -16.251806259155217 ], [ -73.550415039062443, -16.251806259155217 ], [ -73.550415039062443, -16.251527786254826 ], [ -73.551803588867188, -16.251527786254826 ], [ -73.551803588867188, -16.251249313354435 ], [ -73.552360534667969, -16.251249313354435 ], [ -73.552360534667969, -16.250972747802734 ], [ -73.552917480468636, -16.250972747802734 ], [ -73.552917480468636, -16.250694274902344 ], [ -73.553474426269474, -16.250694274902344 ], [ -73.553474426269474, -16.250415802001896 ], [ -73.554306030273438, -16.250415802001896 ], [ -73.554306030273438, -16.250139236450195 ], [ -73.555137634277344, -16.250139236450195 ], [ -73.555137634277344, -16.249860763549805 ], [ -73.555694580078125, -16.249860763549805 ], [ -73.555694580078125, -16.249305725097543 ], [ -73.555969238281136, -16.249305725097543 ], [ -73.555969238281136, -16.249027252197266 ], [ -73.556251525878793, -16.249027252197266 ], [ -73.556251525878793, -16.24847221374506 ], [ -73.557083129882756, -16.24847221374506 ], [ -73.557083129882756, -16.24819374084467 ], [ -73.557357788085938, -16.24819374084467 ], [ -73.557357788085938, -16.247917175292969 ], [ -73.557640075683594, -16.247917175292969 ], [ -73.557640075683594, -16.247638702392578 ], [ -73.557914733886719, -16.247638702392578 ], [ -73.557914733886719, -16.247360229492131 ], [ -73.558197021484375, -16.247360229492131 ], [ -73.558197021484375, -16.246250152587777 ], [ -73.5584716796875, -16.246250152587777 ], [ -73.5584716796875, -16.245695114135685 ], [ -73.558746337890625, -16.245695114135685 ], [ -73.558746337890625, -16.245416641235295 ], [ -73.559585571289006, -16.245416641235295 ], [ -73.559585571289006, -16.245138168334904 ], [ -73.559860229492131, -16.245138168334904 ], [ -73.559860229492131, -16.244861602783203 ], [ -73.560142517089787, -16.244861602783203 ], [ -73.560142517089787, -16.244306564331055 ], [ -73.560417175292912, -16.244306564331055 ], [ -73.560417175292912, -16.244028091430664 ], [ -73.561531066894531, -16.244028091430664 ], [ -73.561531066894531, -16.244583129882812 ], [ -73.561805725097656, -16.244583129882812 ], [ -73.561805725097656, -16.244861602783203 ], [ -73.562080383300781, -16.244861602783203 ], [ -73.562080383300781, -16.24506950378418 ], [ -73.562080383300781, -16.245695114135685 ], [ -73.562362670898438, -16.245695114135685 ], [ -73.562362670898438, -16.24958419799799 ], [ -73.562637329101506, -16.24958419799799 ], [ -73.562637329101506, -16.249860763549805 ], [ -73.563468933105412, -16.249860763549805 ], [ -73.563468933105412, -16.24958419799799 ], [ -73.56402587890625, -16.24958419799799 ], [ -73.56402587890625, -16.249305725097543 ], [ -73.564857482910156, -16.249305725097543 ], [ -73.564857482910156, -16.249027252197266 ], [ -73.565414428710938, -16.249027252197266 ], [ -73.565414428710938, -16.249305725097543 ], [ -73.566253662109318, -16.249305725097543 ], [ -73.566253662109318, -16.249860763549805 ], [ -73.566528320312443, -16.249860763549805 ], [ -73.566528320312443, -16.250139236450195 ], [ -73.566802978515568, -16.250139236450195 ], [ -73.566802978515568, -16.250415802001896 ], [ -73.567085266113281, -16.250415802001896 ], [ -73.567085266113281, -16.250694274902344 ], [ -73.567359924316406, -16.250694274902344 ], [ -73.567359924316406, -16.250972747802734 ], [ -73.56874847412098, -16.250972747802734 ], [ -73.56874847412098, -16.250694274902344 ], [ -73.569030761718636, -16.250694274902344 ], [ -73.569030761718636, -16.250415802001896 ], [ -73.569305419921818, -16.250415802001896 ], [ -73.569305419921818, -16.250139236450195 ], [ -73.569580078124943, -16.250139236450195 ], [ -73.569580078124943, -16.249860763549805 ], [ -73.569862365722599, -16.249860763549805 ], [ -73.569862365722599, -16.24958419799799 ], [ -73.570137023925781, -16.24958419799799 ], [ -73.570137023925781, -16.249305725097543 ], [ -73.570419311523438, -16.249305725097543 ], [ -73.570419311523438, -16.249027252197266 ], [ -73.570693969726562, -16.249027252197266 ], [ -73.570693969726562, -16.248750686645451 ], [ -73.571807861328125, -16.248750686645451 ], [ -73.571807861328125, -16.24847221374506 ], [ -73.572364807128849, -16.24847221374506 ], [ -73.572364807128849, -16.24819374084467 ], [ -73.572914123535099, -16.24819374084467 ], [ -73.572914123535099, -16.247917175292969 ], [ -73.573471069335938, -16.247917175292969 ], [ -73.573471069335938, -16.247638702392578 ], [ -73.573753356933594, -16.247638702392578 ], [ -73.573753356933594, -16.247917175292969 ], [ -73.574028015136719, -16.247917175292969 ], [ -73.574028015136719, -16.247638702392578 ], [ -73.5745849609375, -16.247638702392578 ], [ -73.5745849609375, -16.247360229492131 ], [ -73.575973510742131, -16.247360229492131 ], [ -73.575973510742131, -16.24708366394043 ], [ -73.576530456542912, -16.24708366394043 ], [ -73.576530456542912, -16.246805191040039 ], [ -73.577362060546875, -16.246805191040039 ], [ -73.577362060546875, -16.246528625488224 ], [ -73.577919006347656, -16.246528625488224 ], [ -73.577919006347656, -16.246250152587777 ], [ -73.578750610351506, -16.246250152587777 ], [ -73.578750610351506, -16.2459716796875 ], [ -73.579025268554631, -16.2459716796875 ], [ -73.579025268554631, -16.245695114135685 ], [ -73.579307556152287, -16.245695114135685 ], [ -73.579307556152287, -16.245416641235295 ], [ -73.58013916015625, -16.245416641235295 ], [ -73.58013916015625, -16.245138168334904 ], [ -73.580696105957031, -16.245138168334904 ], [ -73.580696105957031, -16.244861602783203 ], [ -73.580970764160156, -16.244861602783203 ], [ -73.580970764160156, -16.244583129882812 ], [ -73.581527709960824, -16.244583129882812 ], [ -73.581527709960824, -16.244306564331055 ], [ -73.582084655761662, -16.244306564331055 ], [ -73.582084655761662, -16.244028091430664 ], [ -73.58319091796875, -16.244028091430664 ], [ -73.58319091796875, -16.243749618530273 ], [ -73.583473205566406, -16.243749618530273 ], [ -73.583473205566406, -16.243473052978459 ], [ -73.583747863769531, -16.243473052978459 ], [ -73.583747863769531, -16.242914199829102 ], [ -73.58486175537098, -16.242914199829102 ], [ -73.58486175537098, -16.243196487426758 ], [ -73.585418701171818, -16.243196487426758 ], [ -73.585418701171818, -16.243473052978459 ], [ -73.586250305175781, -16.243473052978459 ], [ -73.586250305175781, -16.243196487426758 ], [ -73.586524963378906, -16.243196487426758 ], [ -73.586524963378906, -16.242914199829102 ], [ -73.586807250976562, -16.242914199829102 ], [ -73.586807250976562, -16.24263954162592 ], [ -73.58791351318348, -16.24263954162592 ], [ -73.58791351318348, -16.242361068725529 ], [ -73.588195800781193, -16.242361068725529 ], [ -73.588195800781193, -16.242082595825138 ], [ -73.588470458984318, -16.242082595825138 ], [ -73.588470458984318, -16.241804122924748 ], [ -73.588752746581974, -16.241804122924748 ], [ -73.588752746581974, -16.241527557373047 ], [ -73.589302062988281, -16.241527557373047 ], [ -73.589302062988281, -16.241804122924748 ], [ -73.590972900390625, -16.241804122924748 ], [ -73.590972900390625, -16.242082595825138 ], [ -73.591247558593693, -16.242082595825138 ], [ -73.591247558593693, -16.241804122924748 ], [ -73.592918395996094, -16.241804122924748 ], [ -73.592918395996094, -16.242082595825138 ], [ -73.593475341796875, -16.242082595825138 ], [ -73.593475341796875, -16.242361068725529 ], [ -73.59375, -16.242361068725529 ], [ -73.59375, -16.24263954162592 ], [ -73.594581604003849, -16.24263954162592 ], [ -73.594581604003849, -16.242914199829102 ], [ -73.595695495605469, -16.242914199829102 ], [ -73.595695495605469, -16.243196487426758 ], [ -73.597084045410156, -16.243196487426758 ], [ -73.597084045410156, -16.242914199829102 ], [ -73.598197937011662, -16.242914199829102 ], [ -73.598197937011662, -16.24263954162592 ], [ -73.598472595214787, -16.24263954162592 ], [ -73.598472595214787, -16.242361068725529 ], [ -73.600975036621037, -16.242361068725529 ], [ -73.600975036621037, -16.241804122924748 ], [ -73.601249694824162, -16.241804122924748 ], [ -73.601249694824162, -16.241249084472656 ], [ -73.601524353027287, -16.241249084472656 ], [ -73.601524353027287, -16.240974426269474 ], [ -73.602363586425781, -16.240974426269474 ], [ -73.602363586425781, -16.240692138671818 ], [ -73.603469848632812, -16.240692138671818 ], [ -73.603469848632812, -16.240974426269474 ], [ -73.604026794433537, -16.240974426269474 ], [ -73.604026794433537, -16.241249084472656 ], [ -73.605140686035099, -16.241249084472656 ], [ -73.605140686035099, -16.240974426269474 ], [ -73.605415344238281, -16.240974426269474 ], [ -73.605415344238281, -16.240692138671818 ], [ -73.605697631835938, -16.240692138671818 ], [ -73.605697631835938, -16.240417480468693 ], [ -73.605972290039062, -16.240417480468693 ], [ -73.605972290039062, -16.239582061767578 ], [ -73.606529235839844, -16.239582061767578 ], [ -73.606529235839844, -16.239027023315373 ], [ -73.606246948242188, -16.239027023315373 ], [ -73.606246948242188, -16.238470077514592 ], [ -73.605972290039062, -16.238470077514592 ], [ -73.605972290039062, -16.237916946411133 ], [ -73.606246948242188, -16.237916946411133 ], [ -73.606246948242188, -16.237361907958928 ], [ -73.606529235839844, -16.237361907958928 ], [ -73.606529235839844, -16.237083435058537 ], [ -73.607635498046818, -16.237083435058537 ], [ -73.607635498046818, -16.236804962158146 ], [ -73.608192443847599, -16.236804962158146 ], [ -73.608192443847599, -16.236528396606445 ], [ -73.608474731445312, -16.236528396606445 ], [ -73.608474731445312, -16.236249923705998 ], [ -73.609024047851562, -16.236249923705998 ], [ -73.609024047851562, -16.235694885253906 ], [ -73.609306335449219, -16.235694885253906 ], [ -73.609306335449219, -16.235416412353516 ], [ -73.610137939453011, -16.235416412353516 ], [ -73.610137939453011, -16.235139846801644 ], [ -73.610420227050668, -16.235139846801644 ], [ -73.610420227050668, -16.234861373901367 ], [ -73.610969543456974, -16.234861373901367 ], [ -73.610969543456974, -16.234582901000977 ], [ -73.612358093261719, -16.234582901000977 ], [ -73.612358093261719, -16.234306335449162 ], [ -73.612640380859375, -16.234306335449162 ], [ -73.612640380859375, -16.233749389648381 ], [ -73.613197326660156, -16.233749389648381 ], [ -73.613197326660156, -16.23347282409668 ], [ -73.613471984863168, -16.23347282409668 ], [ -73.613471984863168, -16.233194351196289 ], [ -73.614028930664006, -16.233194351196289 ], [ -73.614028930664006, -16.232917785644531 ], [ -73.61541748046875, -16.232917785644531 ], [ -73.61541748046875, -16.232639312744141 ], [ -73.615692138671875, -16.232639312744141 ], [ -73.615692138671875, -16.23236083984375 ], [ -73.615974426269531, -16.23236083984375 ], [ -73.615974426269531, -16.232084274291935 ], [ -73.618194580078125, -16.232082366943359 ], [ -73.618194580078125, -16.231807708740234 ], [ -73.618751525878906, -16.231807708740234 ], [ -73.618751525878906, -16.23236083984375 ], [ -73.619308471679688, -16.23236083984375 ], [ -73.619308471679688, -16.232639312744141 ], [ -73.619857788085881, -16.232639312744141 ], [ -73.619857788085881, -16.23236083984375 ], [ -73.620697021484318, -16.23236083984375 ], [ -73.620697021484318, -16.232084274291935 ], [ -73.620971679687443, -16.232082366943359 ], [ -73.620971679687443, -16.231527328491211 ], [ -73.622085571289062, -16.231527328491211 ], [ -73.622085571289062, -16.231807708740234 ], [ -73.622360229492188, -16.231807708740234 ], [ -73.622360229492188, -16.231527328491211 ], [ -73.622917175292855, -16.231527328491211 ], [ -73.622917175292855, -16.230972290039006 ], [ -73.623474121093693, -16.230972290039006 ], [ -73.623474121093693, -16.230695724487305 ], [ -73.624862670898438, -16.230695724487305 ], [ -73.624862670898438, -16.230417251586914 ], [ -73.625968933105355, -16.230417251586914 ], [ -73.625968933105355, -16.230695724487305 ], [ -73.626251220703011, -16.230695724487305 ], [ -73.626251220703011, -16.230417251586914 ], [ -73.627914428710938, -16.230417251586914 ], [ -73.627914428710938, -16.230695724487305 ], [ -73.628471374511719, -16.230695724487305 ], [ -73.628471374511719, -16.230972290039006 ], [ -73.628753662109375, -16.230972290039006 ], [ -73.628753662109375, -16.231250762939396 ], [ -73.629859924316349, -16.231250762939396 ], [ -73.629859924316349, -16.230972290039006 ], [ -73.630691528320312, -16.230972290039006 ], [ -73.630691528320312, -16.230695724487305 ], [ -73.630973815917969, -16.230695724487305 ], [ -73.630973815917969, -16.230417251586914 ], [ -73.631805419921875, -16.230417251586914 ], [ -73.631805419921875, -16.230138778686523 ], [ -73.633468627929631, -16.230138778686523 ], [ -73.633468627929631, -16.229860305786076 ], [ -73.635139465332031, -16.229860305786076 ], [ -73.635139465332031, -16.230138778686523 ], [ -73.635971069335881, -16.230138778686523 ], [ -73.635971069335881, -16.230417251586914 ], [ -73.6370849609375, -16.230417251586914 ], [ -73.6370849609375, -16.230695724487305 ], [ -73.637359619140625, -16.230695724487305 ], [ -73.637359619140625, -16.231250762939396 ], [ -73.637641906738281, -16.231250762939396 ], [ -73.637641906738281, -16.231527328491211 ], [ -73.638191223144531, -16.231527328491211 ], [ -73.638191223144531, -16.231807708740234 ], [ -73.638748168945199, -16.231807708740234 ], [ -73.638748168945199, -16.232082366943359 ], [ -73.639030456542855, -16.232084274291935 ], [ -73.639030456542855, -16.232917785644531 ], [ -73.639305114746037, -16.232917785644531 ], [ -73.639305114746037, -16.234306335449162 ], [ -73.639579772949162, -16.234306335449162 ], [ -73.639579772949162, -16.234027862548771 ], [ -73.640975952148438, -16.234027862548771 ], [ -73.640975952148438, -16.233749389648381 ], [ -73.641525268554688, -16.233749389648381 ], [ -73.641525268554688, -16.23347282409668 ], [ -73.642082214355355, -16.23347282409668 ], [ -73.642082214355355, -16.233194351196289 ], [ -73.642364501953068, -16.233194351196289 ], [ -73.642364501953068, -16.232917785644531 ], [ -73.642639160156193, -16.232917785644531 ], [ -73.642639160156193, -16.232639312744141 ], [ -73.642913818359318, -16.232639312744141 ], [ -73.642913818359318, -16.232084274291935 ], [ -73.643196105956974, -16.232082366943359 ], [ -73.643196105956974, -16.231250762939396 ], [ -73.643470764160156, -16.231250762939396 ], [ -73.643470764160156, -16.230417251586914 ], [ -73.643753051757812, -16.230417251586914 ], [ -73.643753051757812, -16.229860305786076 ], [ -73.644027709960938, -16.229860305786076 ], [ -73.644027709960938, -16.229585647582951 ], [ -73.644302368164062, -16.229585647582951 ], [ -73.644302368164062, -16.229303359985295 ], [ -73.646530151367131, -16.229303359985295 ], [ -73.646530151367131, -16.229436874389648 ], [ -73.646530151367131, -16.229860305786076 ], [ -73.646804809570312, -16.229860305786076 ], [ -73.646804809570312, -16.230972290039006 ], [ -73.647087097167969, -16.230972290039006 ], [ -73.647087097167969, -16.231527328491211 ], [ -73.647361755371094, -16.231527328491211 ], [ -73.647361755371094, -16.231807708740234 ], [ -73.647636413574219, -16.231807708740234 ], [ -73.647636413574219, -16.23236083984375 ], [ -73.647918701171875, -16.23236083984375 ], [ -73.647918701171875, -16.232917785644531 ], [ -73.648475646972543, -16.232917785644531 ], [ -73.648475646972543, -16.233194351196289 ], [ -73.648750305175724, -16.233194351196289 ], [ -73.648750305175724, -16.23347282409668 ], [ -73.649024963378849, -16.23347282409668 ], [ -73.649024963378849, -16.234861373901367 ], [ -73.649307250976506, -16.234861373901367 ], [ -73.649307250976506, -16.234582901000977 ], [ -73.650970458984375, -16.234582901000977 ], [ -73.650970458984375, -16.234306335449162 ], [ -73.651527404785043, -16.234306335449162 ], [ -73.651527404785043, -16.23347282409668 ], [ -73.651802062988224, -16.23347282409668 ], [ -73.651802062988224, -16.233194351196289 ], [ -73.652084350585881, -16.233194351196289 ], [ -73.652084350585881, -16.232917785644531 ], [ -73.652359008789006, -16.232917785644531 ], [ -73.652359008789006, -16.23236083984375 ], [ -73.652915954589844, -16.23236083984375 ], [ -73.652915954589844, -16.232084274291935 ], [ -73.653472900390625, -16.232082366943359 ], [ -73.653472900390625, -16.231807708740234 ], [ -73.654029846191406, -16.231807708740234 ], [ -73.654029846191406, -16.232082366943359 ], [ -73.654304504394531, -16.232082366943359 ], [ -73.654304504394531, -16.231807708740234 ], [ -73.654861450195199, -16.231807708740234 ], [ -73.654861450195199, -16.231527328491211 ], [ -73.655693054199162, -16.231527328491211 ], [ -73.655693054199162, -16.231250762939396 ], [ -73.655975341796818, -16.231250762939396 ], [ -73.655975341796818, -16.230972290039006 ], [ -73.657638549804688, -16.230972290039006 ], [ -73.657638549804688, -16.231250762939396 ], [ -73.658752441406193, -16.231250762939396 ], [ -73.658752441406193, -16.230972290039006 ], [ -73.659027099609318, -16.230972290039006 ], [ -73.659027099609318, -16.230695724487305 ], [ -73.6593017578125, -16.230695724487305 ], [ -73.6593017578125, -16.230138778686523 ], [ -73.659584045410156, -16.230138778686523 ], [ -73.659584045410156, -16.229303359985295 ], [ -73.659858703613281, -16.229303359985295 ], [ -73.659858703613281, -16.22902870178217 ], [ -73.662086486816349, -16.22902870178217 ], [ -73.662086486816349, -16.229303359985295 ], [ -73.662635803222656, -16.229303359985295 ], [ -73.662635803222656, -16.230138778686523 ], [ -73.662918090820312, -16.230138778686523 ], [ -73.662918090820312, -16.230417251586914 ], [ -73.663482666015625, -16.230417251586914 ], [ -73.664024353027344, -16.230417251586914 ], [ -73.664024353027344, -16.230695724487305 ], [ -73.664863586425724, -16.230695724487305 ], [ -73.664863586425724, -16.230972290039006 ], [ -73.666252136230469, -16.230972290039006 ], [ -73.666252136230469, -16.230695724487305 ], [ -73.666526794433594, -16.230695724487305 ], [ -73.666526794433594, -16.230417251586914 ], [ -73.667083740234375, -16.230417251586914 ], [ -73.667083740234375, -16.230138778686523 ], [ -73.667640686035043, -16.230138778686523 ], [ -73.667640686035043, -16.228750228881722 ], [ -73.667915344238224, -16.228750228881722 ], [ -73.667915344238224, -16.22791671752924 ], [ -73.668197631835881, -16.22791671752924 ], [ -73.668197631835881, -16.227363586425724 ], [ -73.669303894042969, -16.227363586425724 ], [ -73.669303894042969, -16.227081298828011 ], [ -73.670974731445256, -16.227081298828011 ], [ -73.670974731445256, -16.226804733276367 ], [ -73.671806335449162, -16.226804733276367 ], [ -73.671806335449162, -16.226528167724609 ], [ -73.672080993652344, -16.226528167724609 ], [ -73.672080993652344, -16.225416183471566 ], [ -73.671806335449162, -16.225416183471566 ], [ -73.671806335449162, -16.225139617919865 ], [ -73.671524047851506, -16.225139617919865 ], [ -73.671524047851506, -16.224409103393555 ], [ -73.671524047851506, -16.224306106567383 ], [ -73.671936035156136, -16.224306106567383 ], [ -73.674026489257756, -16.224306106567383 ], [ -73.674026489257756, -16.224582672119084 ], [ -73.674583435058537, -16.224582672119084 ], [ -73.674583435058537, -16.224306106567383 ], [ -73.675140380859318, -16.224306106567383 ], [ -73.675140380859318, -16.224027633666992 ], [ -73.675956726074219, -16.224027633666992 ], [ -73.676246643066406, -16.224027633666992 ], [ -73.676246643066406, -16.223749160766602 ], [ -73.676528930664062, -16.223749160766602 ], [ -73.676528930664062, -16.223472595214844 ], [ -73.676803588867188, -16.223472595214844 ], [ -73.676803588867188, -16.222917556762638 ], [ -73.677635192871037, -16.222917556762638 ], [ -73.677635192871037, -16.224306106567383 ], [ -73.677360534667912, -16.224306106567383 ], [ -73.677360534667912, -16.226724624633732 ], [ -73.677360534667912, -16.227638244628849 ], [ -73.67708587646473, -16.227638244628849 ], [ -73.67708587646473, -16.228193283081055 ], [ -73.677360534667912, -16.228193283081055 ], [ -73.677360534667912, -16.228471755981445 ], [ -73.677635192871037, -16.228471755981445 ], [ -73.677635192871037, -16.228193283081055 ], [ -73.678192138671818, -16.228193283081055 ], [ -73.678192138671818, -16.227363586425724 ], [ -73.678474426269531, -16.227363586425724 ], [ -73.678474426269531, -16.226804733276367 ], [ -73.679306030273438, -16.226804733276367 ], [ -73.679306030273438, -16.225971221923828 ], [ -73.679580688476562, -16.225971221923828 ], [ -73.679580688476562, -16.225694656372013 ], [ -73.679862976074219, -16.225694656372013 ], [ -73.679862976074219, -16.2255859375 ], [ -73.679862976074219, -16.225416183471566 ], [ -73.680969238281193, -16.225416183471566 ], [ -73.680969238281193, -16.225971221923828 ], [ -73.681526184082031, -16.225971221923828 ], [ -73.681526184082031, -16.226329803466797 ], [ -73.681526184082031, -16.226528167724609 ], [ -73.681953430175781, -16.226528167724609 ], [ -73.682083129882812, -16.226528167724609 ], [ -73.682083129882812, -16.227363586425724 ], [ -73.684280395507812, -16.227363586425724 ], [ -73.684585571289006, -16.227363586425724 ], [ -73.684585571289006, -16.227588653564453 ], [ -73.684585571289006, -16.228471755981445 ], [ -73.686264038085938, -16.228471755981445 ], [ -73.686531066894531, -16.228471755981445 ], [ -73.686531066894531, -16.228614807128906 ], [ -73.686531066894531, -16.229585647582951 ], [ -73.686805725097599, -16.229585647582951 ], [ -73.686805725097599, -16.230972290039006 ], [ -73.687362670898381, -16.230972290039006 ], [ -73.687362670898381, -16.231250762939396 ], [ -73.687919616699162, -16.231250762939396 ], [ -73.687919616699162, -16.230417251586914 ], [ -73.688751220703125, -16.230417251586914 ], [ -73.688751220703125, -16.230138778686523 ], [ -73.689308166503906, -16.230138778686523 ], [ -73.689308166503906, -16.230417251586914 ], [ -73.690414428710881, -16.230417251586914 ], [ -73.690414428710881, -16.231250762939396 ], [ -73.690696716308537, -16.231250762939396 ], [ -73.690696716308537, -16.232917785644531 ], [ -73.690971374511662, -16.232917785644531 ], [ -73.690971374511662, -16.233194351196289 ], [ -73.691253662109375, -16.233194351196289 ], [ -73.691253662109375, -16.233749389648381 ], [ -73.6915283203125, -16.233749389648381 ], [ -73.6915283203125, -16.234306335449162 ], [ -73.692085266113281, -16.234306335449162 ], [ -73.692085266113281, -16.234582901000977 ], [ -73.692642211914062, -16.234582901000977 ], [ -73.692642211914062, -16.234306335449162 ], [ -73.692916870117074, -16.234306335449162 ], [ -73.692916870117074, -16.234027862548771 ], [ -73.693473815917912, -16.234027862548771 ], [ -73.693473815917912, -16.234306335449162 ], [ -73.693748474121037, -16.234306335449162 ], [ -73.693748474121037, -16.235139846801644 ], [ -73.694030761718693, -16.235139846801644 ], [ -73.694030761718693, -16.235694885253906 ], [ -73.694305419921875, -16.235694885253906 ], [ -73.694305419921875, -16.236804962158146 ], [ -73.694580078125, -16.236804962158146 ], [ -73.694580078125, -16.237361907958928 ], [ -73.694862365722656, -16.237361907958928 ], [ -73.694862365722656, -16.238193511962891 ], [ -73.695419311523438, -16.238193511962891 ], [ -73.695419311523438, -16.238470077514592 ], [ -73.69625091552723, -16.238470077514592 ], [ -73.69625091552723, -16.238750457763672 ], [ -73.696525573730412, -16.238750457763672 ], [ -73.696525573730412, -16.239027023315373 ], [ -73.696807861328068, -16.239027023315373 ], [ -73.696807861328068, -16.239305496215763 ], [ -73.697082519531193, -16.239305496215763 ], [ -73.697082519531193, -16.239582061767578 ], [ -73.697364807128849, -16.239582061767578 ], [ -73.697364807128849, -16.239860534667855 ], [ -73.697639465332031, -16.239860534667855 ], [ -73.697639465332031, -16.240081787109375 ], [ -73.697639465332031, -16.240417480468693 ], [ -73.697914123535156, -16.240417480468693 ], [ -73.697914123535156, -16.240692138671818 ], [ -73.698196411132812, -16.240692138671818 ], [ -73.698196411132812, -16.240974426269474 ], [ -73.698753356933594, -16.240974426269474 ], [ -73.698753356933594, -16.241804122924748 ], [ -73.699028015136719, -16.241804122924748 ], [ -73.699028015136719, -16.242361068725529 ], [ -73.69930267333973, -16.242361068725529 ], [ -73.69930267333973, -16.242914199829102 ], [ -73.699584960937443, -16.242914199829102 ], [ -73.699584960937443, -16.243196487426758 ], [ -73.700141906738224, -16.243196487426758 ], [ -73.700141906738224, -16.243473052978459 ], [ -73.700416564941349, -16.243473052978459 ], [ -73.700416564941349, -16.244028091430664 ], [ -73.700691223144531, -16.244028091430664 ], [ -73.700691223144531, -16.244306564331055 ], [ -73.700973510742188, -16.244306564331055 ], [ -73.700973510742188, -16.244583129882812 ], [ -73.701530456542969, -16.244583129882812 ], [ -73.701530456542969, -16.244861602783203 ], [ -73.702362060546875, -16.244861602783203 ], [ -73.702362060546875, -16.245138168334904 ], [ -73.702636718749943, -16.245138168334904 ], [ -73.702636718749943, -16.244861602783203 ], [ -73.702919006347599, -16.244861602783203 ], [ -73.702919006347599, -16.244583129882812 ], [ -73.703193664550724, -16.244583129882812 ], [ -73.703193664550724, -16.244028091430664 ], [ -73.703475952148381, -16.244028091430664 ], [ -73.703475952148381, -16.243749618530273 ], [ -73.703750610351506, -16.243749618530273 ], [ -73.703750610351506, -16.243473052978459 ], [ -73.703475952148381, -16.243473052978459 ], [ -73.703475952148381, -16.241804122924748 ], [ -73.703193664550724, -16.241804122924748 ], [ -73.703193664550724, -16.240139007568303 ], [ -73.702919006347599, -16.240139007568303 ], [ -73.702919006347599, -16.239582061767578 ], [ -73.702636718749943, -16.239582061767578 ], [ -73.702636718749943, -16.238470077514592 ], [ -73.702362060546875, -16.238470077514592 ], [ -73.702362060546875, -16.236804962158146 ], [ -73.702636718749943, -16.236804962158146 ], [ -73.702636718749943, -16.236528396606445 ], [ -73.702919006347599, -16.236528396606445 ], [ -73.702919006347599, -16.235694885253906 ], [ -73.702636718749943, -16.235694885253906 ], [ -73.702636718749943, -16.235416412353516 ], [ -73.702079772949219, -16.235416412353516 ], [ -73.702079772949219, -16.235139846801644 ], [ -73.701805114746094, -16.235139846801644 ], [ -73.701805114746094, -16.234582901000977 ], [ -73.701530456542969, -16.234582901000977 ], [ -73.701530456542969, -16.23236083984375 ], [ -73.700973510742188, -16.23236083984375 ], [ -73.700973510742188, -16.231807708740234 ], [ -73.701530456542969, -16.231807708740234 ], [ -73.701530456542969, -16.230972290039006 ], [ -73.701805114746094, -16.230972290039006 ], [ -73.701805114746094, -16.230417251586914 ], [ -73.702362060546875, -16.230417251586914 ], [ -73.702362060546875, -16.230138778686523 ], [ -73.703193664550724, -16.230138778686523 ], [ -73.703193664550724, -16.229585647582951 ], [ -73.703750610351506, -16.229585647582951 ], [ -73.703750610351506, -16.229303359985295 ], [ -73.704582214355469, -16.229303359985295 ], [ -73.704582214355469, -16.228750228881722 ], [ -73.704864501953125, -16.228750228881722 ], [ -73.704864501953125, -16.228193283081055 ], [ -73.704582214355469, -16.228193283081055 ], [ -73.704582214355469, -16.227638244628849 ], [ -73.704864501953125, -16.227638244628849 ], [ -73.704864501953125, -16.226804733276367 ], [ -73.704307556152344, -16.226804733276367 ], [ -73.704307556152344, -16.227081298828011 ], [ -73.703750610351506, -16.227081298828011 ], [ -73.703750610351506, -16.227363586425724 ], [ -73.703475952148381, -16.227363586425724 ], [ -73.703475952148381, -16.22791671752924 ], [ -73.702636718749943, -16.22791671752924 ], [ -73.702636718749943, -16.227363586425724 ], [ -73.701530456542969, -16.227363586425724 ], [ -73.701530456542969, -16.227638244628849 ], [ -73.701248168945312, -16.227638244628849 ], [ -73.701248168945312, -16.22791671752924 ], [ -73.700973510742188, -16.22791671752924 ], [ -73.700973510742188, -16.228193283081055 ], [ -73.700691223144531, -16.228193283081055 ], [ -73.700691223144531, -16.228471755981445 ], [ -73.699859619140568, -16.228471755981445 ], [ -73.699859619140568, -16.228193283081055 ], [ -73.699584960937443, -16.228193283081055 ], [ -73.699584960937443, -16.227638244628849 ], [ -73.699859619140568, -16.227638244628849 ], [ -73.699859619140568, -16.225139617919865 ], [ -73.700141906738224, -16.225139617919865 ], [ -73.700141906738224, -16.224859237670898 ], [ -73.700691223144531, -16.224859237670898 ], [ -73.700691223144531, -16.224306106567383 ], [ -73.700416564941349, -16.224306106567383 ], [ -73.700416564941349, -16.223749160766602 ], [ -73.700141906738224, -16.223749160766602 ], [ -73.700141906738224, -16.220172882080078 ], [ -73.700141906738224, -16.21875 ], [ -73.700416564941349, -16.21875 ], [ -73.700416564941349, -16.218471527099553 ], [ -73.700691223144531, -16.218471527099553 ], [ -73.700691223144531, -16.218196868896428 ], [ -73.700973510742188, -16.218196868896428 ], [ -73.700973510742188, -16.217916488647461 ], [ -73.701248168945312, -16.217916488647461 ], [ -73.701248168945312, -16.217636108398381 ], [ -73.702362060546875, -16.217636108398381 ], [ -73.702362060546875, -16.217361450195312 ], [ -73.702636718749943, -16.217361450195312 ], [ -73.702636718749943, -16.217084884643498 ], [ -73.702919006347599, -16.217084884643498 ], [ -73.702919006347599, -16.216806411743107 ], [ -73.703475952148381, -16.216806411743107 ], [ -73.703475952148381, -16.216527938842717 ], [ -73.703750610351506, -16.216527938842717 ], [ -73.703750610351506, -16.216249465942326 ], [ -73.704025268554688, -16.216249465942326 ], [ -73.704025268554688, -16.215974807739144 ], [ -73.704864501953125, -16.215974807739144 ], [ -73.704864501953125, -16.215692520141602 ], [ -73.705413818359375, -16.215692520141602 ], [ -73.705413818359375, -16.215414047241211 ], [ -73.705696105956918, -16.215414047241211 ], [ -73.705696105956918, -16.215139389038086 ], [ -73.706253051757756, -16.215139389038086 ], [ -73.706253051757756, -16.214860916137695 ], [ -73.706802368164006, -16.214860916137695 ], [ -73.706802368164006, -16.214582443237305 ], [ -73.707084655761719, -16.214582443237305 ], [ -73.707084655761719, -16.214305877685433 ], [ -73.707359313964844, -16.214305877685433 ], [ -73.707359313964844, -16.213752746582031 ], [ -73.7076416015625, -16.213752746582031 ], [ -73.7076416015625, -16.213472366332951 ], [ -73.707916259765625, -16.213472366332951 ], [ -73.707916259765625, -16.21319389343256 ], [ -73.708473205566406, -16.21319389343256 ], [ -73.708473205566406, -16.212917327880859 ], [ -73.709304809570256, -16.212917327880859 ], [ -73.709304809570256, -16.212638854980469 ], [ -73.709861755371037, -16.212638854980469 ], [ -73.709861755371037, -16.212360382080021 ], [ -73.710700988769531, -16.212360382080021 ], [ -73.711807250976562, -16.212360382080021 ], [ -73.711807250976562, -16.21208381652832 ], [ -73.713752746582031, -16.21208381652832 ], [ -73.713752746582031, -16.21180534362793 ], [ -73.714027404785156, -16.21180534362793 ], [ -73.714027404785156, -16.211526870727539 ], [ -73.714302062988281, -16.211526870727539 ], [ -73.714302062988281, -16.211250305175668 ], [ -73.714584350585938, -16.211250305175668 ], [ -73.714584350585938, -16.210971832275391 ], [ -73.714859008789062, -16.210971832275391 ], [ -73.714859008789062, -16.210695266723576 ], [ -73.715141296386719, -16.210695266723576 ], [ -73.715141296386719, -16.210432052612248 ], [ -73.715141296386719, -16.209861755371094 ], [ -73.71685791015625, -16.209861755371094 ], [ -73.717086791992188, -16.209861755371094 ], [ -73.717086791992188, -16.209758758544922 ], [ -73.717086791992188, -16.209583282470703 ], [ -73.717483520507756, -16.209583282470703 ], [ -73.71875, -16.209583282470703 ], [ -73.71875, -16.209304809570312 ], [ -73.719024658203068, -16.209304809570312 ], [ -73.719024658203068, -16.209028244018555 ], [ -73.719581604003849, -16.209028244018555 ], [ -73.719581604003849, -16.208749771118164 ], [ -73.719863891601562, -16.208749771118164 ], [ -73.719863891601562, -16.208471298217773 ], [ -73.720138549804688, -16.208471298217773 ], [ -73.720138549804688, -16.208194732665959 ], [ -73.720413208007812, -16.208194732665959 ], [ -73.720413208007812, -16.207916259765511 ], [ -73.720970153808594, -16.207916259765511 ], [ -73.720970153808594, -16.20763969421381 ], [ -73.72125244140625, -16.20763969421381 ], [ -73.72125244140625, -16.20736122131342 ], [ -73.721527099609261, -16.20736122131342 ], [ -73.721527099609261, -16.207082748413029 ], [ -73.721801757812443, -16.207082748413029 ], [ -73.721801757812443, -16.206806182861328 ], [ -73.722084045410099, -16.206806182861328 ], [ -73.722084045410099, -16.206527709960938 ], [ -73.722358703613224, -16.206527709960938 ], [ -73.722358703613224, -16.205694198608398 ], [ -73.722640991210881, -16.205694198608398 ], [ -73.722640991210881, -16.204584121704102 ], [ -73.722358703613224, -16.204584121704102 ], [ -73.722358703613224, -16.204025268554688 ], [ -73.722084045410099, -16.204025268554688 ], [ -73.722084045410099, -16.203472137451172 ], [ -73.722465515136662, -16.203472137451172 ], [ -73.722640991210881, -16.203472137451172 ], [ -73.722640991210881, -16.2031955718993 ], [ -73.722915649414062, -16.2031955718993 ], [ -73.722915649414062, -16.202917098999023 ], [ -73.723747253417969, -16.202917098999023 ], [ -73.723747253417969, -16.202362060546818 ], [ -73.724029541015625, -16.202360153198242 ], [ -73.724029541015625, -16.201803207397461 ], [ -73.724586486816406, -16.201803207397461 ], [ -73.724586486816406, -16.201528549194336 ], [ -73.724861145019418, -16.201528549194336 ], [ -73.724861145019418, -16.201250076293888 ], [ -73.725418090820256, -16.201250076293888 ], [ -73.725418090820256, -16.200693130493107 ], [ -73.726806640625, -16.200693130493107 ], [ -73.726806640625, -16.201528549194336 ], [ -73.727081298828125, -16.201528549194336 ], [ -73.727081298828125, -16.202360153198242 ], [ -73.727363586425781, -16.202362060546818 ], [ -73.727363586425781, -16.202638626098633 ], [ -73.728752136230412, -16.202638626098633 ], [ -73.728752136230412, -16.201250076293888 ], [ -73.728195190429631, -16.201250076293888 ], [ -73.728195190429631, -16.200138092041016 ], [ -73.727912902831918, -16.200138092041016 ], [ -73.727912902831918, -16.198471069335824 ], [ -73.727363586425781, -16.198471069335824 ], [ -73.727363586425781, -16.197916030883732 ], [ -73.727638244628906, -16.197916030883732 ], [ -73.727638244628906, -16.19708251953125 ], [ -73.727912902831918, -16.19708251953125 ], [ -73.727912902831918, -16.196805953979379 ], [ -73.728195190429631, -16.196805953979379 ], [ -73.728195190429631, -16.196527481079102 ], [ -73.728469848632756, -16.196527481079102 ], [ -73.728469848632756, -16.195417404174805 ], [ -73.729026794433537, -16.195417404174805 ], [ -73.729026794433537, -16.195693969726506 ], [ -73.729309082031193, -16.195693969726506 ], [ -73.729309082031193, -16.195138931274414 ], [ -73.730140686035156, -16.195138931274414 ], [ -73.730140686035156, -16.194860458373967 ], [ -73.731246948242131, -16.194860458373967 ], [ -73.731246948242131, -16.194583892822266 ], [ -73.731529235839787, -16.194583892822266 ], [ -73.731529235839787, -16.194305419921875 ], [ -73.731803894042912, -16.194305419921875 ], [ -73.731803894042912, -16.19402885437006 ], [ -73.732086181640568, -16.19402885437006 ], [ -73.732086181640568, -16.193750381469613 ], [ -73.734580993652287, -16.193750381469613 ], [ -73.734580993652287, -16.193471908569336 ], [ -73.736251831054688, -16.193471908569336 ], [ -73.736251831054688, -16.193195343017521 ], [ -73.737358093261605, -16.193195343017521 ], [ -73.737358093261605, -16.19263839721674 ], [ -73.737640380859261, -16.19263839721674 ], [ -73.737640380859261, -16.192361831665039 ], [ -73.738197326660099, -16.192361831665039 ], [ -73.738197326660099, -16.192083358764648 ], [ -73.739585876464844, -16.192083358764648 ], [ -73.739585876464844, -16.191806793212891 ], [ -73.739860534667969, -16.191806793212891 ], [ -73.739860534667969, -16.1915283203125 ], [ -73.740135192871094, -16.1915283203125 ], [ -73.740135192871094, -16.191249847412109 ], [ -73.74041748046875, -16.191249847412109 ], [ -73.74041748046875, -16.190971374511719 ], [ -73.740974426269474, -16.190971374511719 ], [ -73.740974426269474, -16.190696716308594 ], [ -73.741531372070256, -16.190696716308594 ], [ -73.741531372070256, -16.190414428710938 ], [ -73.742637634277344, -16.190414428710938 ], [ -73.742637634277344, -16.190139770507756 ], [ -73.742919921875, -16.190139770507756 ], [ -73.742919921875, -16.189861297607365 ], [ -73.74346923828125, -16.189861297607365 ], [ -73.74346923828125, -16.189584732055664 ], [ -73.743751525878906, -16.189584732055664 ], [ -73.743751525878906, -16.189306259155273 ], [ -73.743865966796875, -16.189306259155273 ], [ -73.744583129882756, -16.189306259155273 ], [ -73.744583129882756, -16.189027786254883 ], [ -73.744857788085881, -16.189027786254883 ], [ -73.744857788085881, -16.188749313354492 ], [ -73.745414733886719, -16.188749313354492 ], [ -73.745414733886719, -16.18847465515131 ], [ -73.7459716796875, -16.18847465515131 ], [ -73.7459716796875, -16.188192367553654 ], [ -73.746803283691406, -16.188192367553654 ], [ -73.746803283691406, -16.18847465515131 ], [ -73.747360229492131, -16.18847465515131 ], [ -73.747360229492131, -16.188749313354492 ], [ -73.748191833496037, -16.188749313354492 ], [ -73.748191833496037, -16.189027786254883 ], [ -73.748748779296875, -16.189027786254883 ], [ -73.748748779296875, -16.188749313354492 ], [ -73.749305725097656, -16.188749313354492 ], [ -73.749305725097656, -16.18847465515131 ], [ -73.749580383300781, -16.18847465515131 ], [ -73.749580383300781, -16.187639236450138 ], [ -73.749862670898438, -16.187639236450138 ], [ -73.749862670898438, -16.187082290649414 ], [ -73.750137329101449, -16.187082290649414 ], [ -73.750137329101449, -16.186805725097599 ], [ -73.751251220703068, -16.186805725097599 ], [ -73.751251220703068, -16.187082290649414 ], [ -73.75152587890625, -16.187082290649414 ], [ -73.75152587890625, -16.187360763549691 ], [ -73.752639770507812, -16.187360763549691 ], [ -73.752639770507812, -16.187639236450138 ], [ -73.752914428710938, -16.187639236450138 ], [ -73.752914428710938, -16.187915802001953 ], [ -73.753196716308594, -16.187915802001953 ], [ -73.753196716308594, -16.187639236450138 ], [ -73.753471374511605, -16.187639236450138 ], [ -73.753471374511605, -16.186805725097599 ], [ -73.753753662109318, -16.186805725097599 ], [ -73.753753662109318, -16.186250686645508 ], [ -73.754028320312443, -16.186250686645508 ], [ -73.754028320312443, -16.185970306396428 ], [ -73.754302978515568, -16.185970306396428 ], [ -73.754302978515568, -16.185693740844727 ], [ -73.754585266113224, -16.185693740844727 ], [ -73.754585266113224, -16.185417175292969 ], [ -73.754859924316406, -16.185417175292969 ], [ -73.754859924316406, -16.184583663940373 ], [ -73.755416870117188, -16.184583663940373 ], [ -73.755416870117188, -16.184305191039982 ], [ -73.757080078124943, -16.184305191039982 ], [ -73.757080078124943, -16.184028625488281 ], [ -73.757362365722599, -16.184028625488281 ], [ -73.757362365722599, -16.183750152587834 ], [ -73.758193969726562, -16.183750152587834 ], [ -73.758193969726562, -16.184028625488281 ], [ -73.75958251953125, -16.184028625488281 ], [ -73.75958251953125, -16.183750152587834 ], [ -73.759864807128793, -16.183750152587834 ], [ -73.759864807128793, -16.183195114135742 ], [ -73.760139465331974, -16.183195114135742 ], [ -73.760139465331974, -16.182638168334961 ], [ -73.760414123535099, -16.182638168334961 ], [ -73.760414123535099, -16.182083129882812 ], [ -73.760696411132756, -16.182083129882812 ], [ -73.760696411132756, -16.181804656982422 ], [ -73.760971069335881, -16.181804656982422 ], [ -73.760971069335881, -16.181249618530217 ], [ -73.761116027832031, -16.181249618530217 ], [ -73.761802673339844, -16.181249618530217 ], [ -73.761802673339844, -16.180973052978516 ], [ -73.7620849609375, -16.180973052978516 ], [ -73.7620849609375, -16.180694580078125 ], [ -73.762359619140625, -16.180694580078125 ], [ -73.762359619140625, -16.180534362792912 ], [ -73.762359619140625, -16.180416107177678 ], [ -73.76253509521473, -16.180416107177678 ], [ -73.762641906738281, -16.180416107177678 ], [ -73.762641906738281, -16.180139541625977 ], [ -73.762947082519531, -16.180139541625977 ], [ -73.763130187988281, -16.180139541625977 ], [ -73.764030456542912, -16.180139541625977 ], [ -73.764030456542912, -16.179582595825195 ], [ -73.764724731445199, -16.179582595825195 ], [ -73.764862060546875, -16.179582595825195 ], [ -73.764862060546875, -16.179435729980469 ], [ -73.764862060546875, -16.17930793762207 ], [ -73.764984130859318, -16.17930793762207 ], [ -73.765975952148438, -16.17930793762207 ], [ -73.765975952148438, -16.179027557373047 ], [ -73.766250610351449, -16.179027557373047 ], [ -73.766250610351449, -16.178749084472656 ], [ -73.766525268554631, -16.178749084472656 ], [ -73.766525268554631, -16.178365707397404 ], [ -73.766525268554631, -16.178195953369141 ], [ -73.766769409179688, -16.178195953369141 ], [ -73.767082214355412, -16.178195953369141 ], [ -73.767082214355412, -16.17791748046875 ], [ -73.76763916015625, -16.17791748046875 ], [ -73.76763916015625, -16.177639007568359 ], [ -73.768753051757812, -16.177639007568359 ], [ -73.768753051757812, -16.178195953369141 ], [ -73.769027709960938, -16.178195953369141 ], [ -73.769027709960938, -16.177639007568359 ], [ -73.769584655761662, -16.177639007568359 ], [ -73.769584655761662, -16.177360534667912 ], [ -73.769859313964787, -16.177360534667912 ], [ -73.769859313964787, -16.177085876464787 ], [ -73.770416259765568, -16.177085876464787 ], [ -73.770416259765568, -16.176803588867131 ], [ -73.770973205566406, -16.176803588867131 ], [ -73.770973205566406, -16.17652511596674 ], [ -73.771247863769531, -16.17652511596674 ], [ -73.771247863769531, -16.176250457763558 ], [ -73.772087097167969, -16.176250457763558 ], [ -73.772087097167969, -16.175695419311467 ], [ -73.772361755371094, -16.175695419311467 ], [ -73.772361755371094, -16.175138473510685 ], [ -73.772636413574162, -16.175138473510685 ], [ -73.772636413574162, -16.17486381530756 ], [ -73.773193359374943, -16.17486381530756 ], [ -73.773193359374943, -16.174581527709847 ], [ -73.774864196777344, -16.174581527709847 ], [ -73.774864196777344, -16.17486381530756 ], [ -73.775138854980469, -16.17486381530756 ], [ -73.775138854980469, -16.175138473510685 ], [ -73.775413513183594, -16.175138473510685 ], [ -73.775413513183594, -16.17486381530756 ], [ -73.776252746581974, -16.17486381530756 ], [ -73.776252746581974, -16.174581527709847 ], [ -73.777084350585938, -16.174581527709847 ], [ -73.777084350585938, -16.17430305480957 ], [ -73.777511596679688, -16.17430305480957 ], [ -73.778747558593636, -16.17430305480957 ], [ -73.778747558593636, -16.174028396606445 ], [ -73.779304504394474, -16.174028396606445 ], [ -73.779304504394474, -16.173749923706055 ], [ -73.779861450195256, -16.173749923706055 ], [ -73.779861450195256, -16.173341751098519 ], [ -73.779861450195256, -16.173194885253849 ], [ -73.780136108398438, -16.173194885253849 ], [ -73.780136108398438, -16.172916412353402 ], [ -73.781341552734375, -16.172916412353402 ], [ -73.782638549804631, -16.172916412353402 ], [ -73.782638549804631, -16.172637939453125 ], [ -73.783683776855412, -16.172637939453125 ], [ -73.785972595214787, -16.172637939453125 ], [ -73.785972595214787, -16.172916412353402 ], [ -73.78680419921875, -16.172916412353402 ], [ -73.78680419921875, -16.17208290100092 ], [ -73.787361145019531, -16.17208290100092 ], [ -73.787361145019531, -16.17236137390131 ], [ -73.787635803222656, -16.17236137390131 ], [ -73.787635803222656, -16.17208290100092 ], [ -73.788192749023438, -16.17208290100092 ], [ -73.788192749023438, -16.171806335449219 ], [ -73.78847503662098, -16.171806335449219 ], [ -73.78847503662098, -16.171699523925781 ], [ -73.78847503662098, -16.171527862548828 ], [ -73.788871765136719, -16.171527862548828 ], [ -73.789306640624943, -16.171527862548828 ], [ -73.789306640624943, -16.171249389648438 ], [ -73.791252136230469, -16.171249389648438 ], [ -73.791252136230469, -16.17091178894043 ], [ -73.791252136230469, -16.170694351196289 ], [ -73.791809082031136, -16.170694351196289 ], [ -73.791809082031136, -16.170415878295898 ], [ -73.792083740234318, -16.170415878295898 ], [ -73.792083740234318, -16.170139312744084 ], [ -73.792640686035099, -16.170139312744084 ], [ -73.792640686035099, -16.169860839843636 ], [ -73.792915344238281, -16.169860839843636 ], [ -73.792915344238281, -16.169584274291992 ], [ -73.793746948242188, -16.169582366943359 ], [ -73.793746948242188, -16.169305801391545 ], [ -73.794303894042969, -16.169305801391545 ], [ -73.794303894042969, -16.169027328491154 ], [ -73.796806335449219, -16.169027328491154 ], [ -73.796806335449219, -16.16912841796875 ], [ -73.796806335449219, -16.169305801391545 ], [ -73.801246643066349, -16.169305801391545 ], [ -73.801246643066349, -16.169027328491154 ], [ -73.801803588867131, -16.169027328491154 ], [ -73.801803588867131, -16.168750762939453 ], [ -73.802085876464787, -16.168750762939453 ], [ -73.802085876464787, -16.168472290039062 ], [ -73.802360534667912, -16.168472290039062 ], [ -73.802360534667912, -16.167917251586914 ], [ -73.802635192871094, -16.167917251586914 ], [ -73.802635192871094, -16.167360305786133 ], [ -73.803192138671875, -16.167360305786133 ], [ -73.803192138671875, -16.167083740234318 ], [ -73.803749084472656, -16.167083740234318 ], [ -73.803749084472656, -16.166805267333928 ], [ -73.804580688476506, -16.166805267333928 ], [ -73.804580688476506, -16.166528701782227 ], [ -73.805137634277287, -16.166528701782227 ], [ -73.805137634277287, -16.166250228881779 ], [ -73.80596923828125, -16.166250228881779 ], [ -73.80596923828125, -16.165971755981388 ], [ -73.806808471679688, -16.165971755981388 ], [ -73.806808471679688, -16.166250228881779 ], [ -73.807083129882812, -16.166250228881779 ], [ -73.807083129882812, -16.166528701782227 ], [ -73.808197021484318, -16.166528701782227 ], [ -73.808197021484318, -16.166250228881779 ], [ -73.808471679687443, -16.166250228881779 ], [ -73.808471679687443, -16.165971755981388 ], [ -73.809028625488281, -16.165971755981388 ], [ -73.809028625488281, -16.165695190429688 ], [ -73.809303283691406, -16.165695190429688 ], [ -73.809303283691406, -16.165138244628906 ], [ -73.809585571289062, -16.165138244628906 ], [ -73.809585571289062, -16.164583206176758 ], [ -73.809860229492188, -16.164583206176758 ], [ -73.809860229492188, -16.164028167724553 ], [ -73.810142517089844, -16.164028167724553 ], [ -73.810142517089844, -16.163801193237248 ], [ -73.810142517089844, -16.163473129272461 ], [ -73.810523986816406, -16.163473129272461 ], [ -73.811248779296818, -16.163473129272461 ], [ -73.811248779296818, -16.163196563720703 ], [ -73.812080383300781, -16.163196563720703 ], [ -73.812080383300781, -16.162914276123047 ], [ -73.813751220703125, -16.162914276123047 ], [ -73.813751220703125, -16.162639617919922 ], [ -73.815414428710938, -16.162639617919922 ], [ -73.815414428710938, -16.162361145019531 ], [ -73.816253662109375, -16.162361145019531 ], [ -73.816253662109375, -16.162084579467717 ], [ -73.818748474121094, -16.162084579467717 ], [ -73.818748474121094, -16.16180419921875 ], [ -73.819862365722656, -16.16180419921875 ], [ -73.819862365722656, -16.162084579467717 ], [ -73.820137023925668, -16.162084579467717 ], [ -73.820137023925668, -16.161527633666992 ], [ -73.820419311523324, -16.161527633666992 ], [ -73.820419311523324, -16.160974502563477 ], [ -73.821525573730469, -16.160974502563477 ], [ -73.821525573730469, -16.16069221496582 ], [ -73.821807861328125, -16.16069221496582 ], [ -73.821807861328125, -16.160139083862305 ], [ -73.82208251953125, -16.160139083862305 ], [ -73.82208251953125, -16.159860610961857 ], [ -73.822914123535156, -16.159860610961857 ], [ -73.822914123535156, -16.159582138061467 ], [ -73.823753356933537, -16.159582138061467 ], [ -73.823753356933537, -16.159305572509766 ], [ -73.824302673339787, -16.159305572509766 ], [ -73.824302673339787, -16.159027099609375 ], [ -73.825141906738281, -16.159027099609375 ], [ -73.825141906738281, -16.158750534057504 ], [ -73.826248168945312, -16.158750534057504 ], [ -73.826248168945312, -16.159027099609375 ], [ -73.826530456542969, -16.159027099609375 ], [ -73.826530456542969, -16.159305572509766 ], [ -73.827079772949162, -16.159305572509766 ], [ -73.827079772949162, -16.159582138061467 ], [ -73.827362060546818, -16.159582138061467 ], [ -73.827362060546818, -16.159860610961857 ], [ -73.827919006347599, -16.159860610961857 ], [ -73.827919006347599, -16.161249160766602 ], [ -73.828475952148438, -16.161249160766602 ], [ -73.828475952148438, -16.16069221496582 ], [ -73.828750610351562, -16.16069221496582 ], [ -73.828750610351562, -16.160417556762695 ], [ -73.829025268554688, -16.160417556762695 ], [ -73.829025268554688, -16.159860610961857 ], [ -73.829307556152344, -16.159860610961857 ], [ -73.829307556152344, -16.159582138061467 ], [ -73.829025268554688, -16.159582138061467 ], [ -73.829025268554688, -16.159305572509766 ], [ -73.828475952148438, -16.159305572509766 ], [ -73.828475952148438, -16.159027099609375 ], [ -73.828193664550781, -16.159027099609375 ], [ -73.828193664550781, -16.158750534057504 ], [ -73.827636718749943, -16.158750534057504 ], [ -73.827636718749943, -16.158470153808594 ], [ -73.827362060546818, -16.158470153808594 ], [ -73.827362060546818, -16.158193588256836 ], [ -73.827636718749943, -16.158193588256836 ], [ -73.827636718749943, -16.157917022705021 ], [ -73.827919006347599, -16.157917022705021 ], [ -73.827919006347599, -16.157638549804631 ], [ -73.828193664550781, -16.157638549804631 ], [ -73.828193664550781, -16.15736007690424 ], [ -73.828475952148438, -16.15736007690424 ], [ -73.828475952148438, -16.157083511352539 ], [ -73.829025268554688, -16.157083511352539 ], [ -73.829025268554688, -16.156805038452148 ], [ -73.829307556152344, -16.156805038452148 ], [ -73.829307556152344, -16.156528472900391 ], [ -73.829864501953011, -16.156528472900391 ], [ -73.829864501953011, -16.15624809265131 ], [ -73.831253051757812, -16.15624809265131 ], [ -73.831253051757812, -16.156528472900391 ], [ -73.831527709960938, -16.156528472900391 ], [ -73.831527709960938, -16.156805038452148 ], [ -73.832084655761719, -16.156805038452148 ], [ -73.832084655761719, -16.156528472900391 ], [ -73.832359313964844, -16.156528472900391 ], [ -73.832359313964844, -16.15624809265131 ], [ -73.8326416015625, -16.15624809265131 ], [ -73.8326416015625, -16.155694961547795 ], [ -73.832916259765511, -16.155694961547795 ], [ -73.832916259765511, -16.155416488647347 ], [ -73.833747863769474, -16.155416488647347 ], [ -73.833747863769474, -16.155694961547795 ], [ -73.834861755371094, -16.155694961547795 ], [ -73.834861755371094, -16.155416488647347 ], [ -73.835136413574219, -16.155416488647347 ], [ -73.835136413574219, -16.154354095458984 ], [ -73.835136413574219, -16.153749465942383 ], [ -73.835418701171875, -16.153749465942383 ], [ -73.835418701171875, -16.153446197509709 ], [ -73.835418701171875, -16.153194427490234 ], [ -73.835693359375, -16.153194427490234 ], [ -73.835693359375, -16.15294075012207 ], [ -73.835693359375, -16.152639389038029 ], [ -73.835975646972656, -16.152639389038029 ], [ -73.835975646972656, -16.152360916137582 ], [ -73.836250305175668, -16.152360916137582 ], [ -73.836807250976506, -16.152360916137582 ], [ -73.836807250976506, -16.152082443237305 ], [ -73.837364196777287, -16.152082443237305 ], [ -73.837364196777287, -16.15180778503418 ], [ -73.837913513183594, -16.15180778503418 ], [ -73.837913513183594, -16.152082443237305 ], [ -73.838470458984375, -16.152082443237305 ], [ -73.838470458984375, -16.15180778503418 ], [ -73.839027404785156, -16.15180778503418 ], [ -73.839027404785156, -16.151527404785099 ], [ -73.839584350585881, -16.151527404785099 ], [ -73.839584350585881, -16.151250839233398 ], [ -73.839859008789006, -16.151250839233398 ], [ -73.839859008789006, -16.150972366333008 ], [ -73.840415954589787, -16.150972366333008 ], [ -73.840415954589787, -16.150695800781136 ], [ -73.840690612792969, -16.150695800781136 ], [ -73.840698242187443, -16.150417327880859 ], [ -73.84124755859375, -16.150417327880859 ], [ -73.84124755859375, -16.150138854980469 ], [ -73.841529846191406, -16.150138854980469 ], [ -73.841529846191406, -16.149585723876953 ], [ -73.841659545898381, -16.149585723876953 ], [ -73.841804504394531, -16.149585723876953 ], [ -73.841804504394531, -16.14947509765625 ], [ -73.841804504394531, -16.149303436279297 ], [ -73.842086791992188, -16.149303436279297 ], [ -73.842086791992188, -16.149026870727425 ], [ -73.842414855956974, -16.149026870727425 ], [ -73.842636108398381, -16.149026870727425 ], [ -73.842636108398381, -16.148860931396428 ], [ -73.842636108398381, -16.148750305175724 ], [ -73.842788696289062, -16.148750305175724 ], [ -73.842918395996037, -16.148750305175724 ], [ -73.842918395996037, -16.148473739624023 ], [ -73.843162536621094, -16.148473739624023 ], [ -73.843475341796818, -16.148473739624023 ], [ -73.843475341796818, -16.148193359374943 ], [ -73.84375, -16.148193359374943 ], [ -73.84375, -16.148038864135685 ], [ -73.84375, -16.147916793823242 ], [ -73.843917846679688, -16.147916793823242 ], [ -73.844306945800781, -16.147916793823242 ], [ -73.844306945800781, -16.147638320922852 ], [ -73.844581604003906, -16.147638320922852 ], [ -73.844581604003906, -16.147363662719727 ], [ -73.846252441406193, -16.147363662719727 ], [ -73.846252441406193, -16.147081375122013 ], [ -73.846801757812443, -16.147081375122013 ], [ -73.846801757812443, -16.146804809570312 ], [ -73.847358703613281, -16.146804809570312 ], [ -73.847358703613281, -16.147363662719727 ], [ -73.847640991210938, -16.147363662719727 ], [ -73.847640991210938, -16.14619255065918 ], [ -73.847640991210938, -16.14597129821766 ], [ -73.848197937011719, -16.14597129821766 ], [ -73.848197937011719, -16.145694732666016 ], [ -73.848503112792969, -16.145694732666016 ], [ -73.848747253417855, -16.145694732666016 ], [ -73.848747253417855, -16.145416259765568 ], [ -73.849304199218693, -16.145416259765568 ], [ -73.849304199218693, -16.145139694213867 ], [ -73.849586486816349, -16.145139694213867 ], [ -73.849586486816349, -16.144859313964787 ], [ -73.850135803222656, -16.144859313964787 ], [ -73.850135803222656, -16.144582748413086 ], [ -73.850418090820312, -16.144582748413086 ], [ -73.850418090820312, -16.144306182861214 ], [ -73.850692749023438, -16.144306182861214 ], [ -73.850692749023438, -16.144027709960938 ], [ -73.850990295410156, -16.144027709960938 ], [ -73.851249694824219, -16.144027709960938 ], [ -73.851249694824219, -16.143749237060547 ], [ -73.851806640625, -16.143749237060547 ], [ -73.851806640625, -16.143472671508732 ], [ -73.852363586425724, -16.143472671508732 ], [ -73.852363586425724, -16.143194198608342 ], [ -73.852638244628849, -16.143194198608342 ], [ -73.852638244628849, -16.14263916015625 ], [ -73.853469848632812, -16.14263916015625 ], [ -73.853469848632812, -16.142360687255803 ], [ -73.8548583984375, -16.142360687255803 ], [ -73.8548583984375, -16.142084121704102 ], [ -73.856803894042969, -16.142084121704102 ], [ -73.856803894042969, -16.141805648803711 ], [ -73.85736083984375, -16.141805648803711 ], [ -73.85736083984375, -16.14152717590332 ], [ -73.857917785644531, -16.14152717590332 ], [ -73.857917785644531, -16.141250610351449 ], [ -73.858192443847656, -16.141250610351449 ], [ -73.858192443847656, -16.140972137451172 ], [ -73.858474731445199, -16.140972137451172 ], [ -73.858474731445199, -16.140693664550781 ], [ -73.858749389648381, -16.140693664550781 ], [ -73.858749389648381, -16.140417098998967 ], [ -73.859024047851506, -16.140417098998967 ], [ -73.859024047851506, -16.140279769897461 ], [ -73.859024047851506, -16.140138626098576 ], [ -73.859306335449162, -16.140138626098576 ], [ -73.859306335449162, -16.139862060546875 ], [ -73.85992431640625, -16.139860153198185 ], [ -73.860137939453125, -16.139860153198185 ], [ -73.860137939453125, -16.139583587646484 ], [ -73.860694885253906, -16.139583587646484 ], [ -73.860694885253906, -16.139305114746094 ], [ -73.861526489257699, -16.139305114746094 ], [ -73.861526489257699, -16.139028549194336 ], [ -73.861907958984261, -16.139028549194336 ], [ -73.862358093261662, -16.139028549194336 ], [ -73.862358093261662, -16.13892745971674 ], [ -73.862358093261662, -16.138750076293945 ], [ -73.863143920898324, -16.138750076293945 ], [ -73.863471984863281, -16.138750076293945 ], [ -73.863471984863281, -16.138645172119084 ], [ -73.863471984863281, -16.138471603393555 ], [ -73.863861083984375, -16.138471603393555 ], [ -73.864303588867188, -16.138471603393555 ], [ -73.864303588867188, -16.13819694519043 ], [ -73.864471435546818, -16.13819694519043 ], [ -73.865135192871037, -16.13819694519043 ], [ -73.865135192871037, -16.137916564941293 ], [ -73.867919921875, -16.137916564941293 ], [ -73.867919921875, -16.137638092041016 ], [ -73.868469238281193, -16.137638092041016 ], [ -73.868469238281193, -16.137361526489201 ], [ -73.868751525878849, -16.137361526489201 ], [ -73.868751525878849, -16.136806488037109 ], [ -73.869026184081974, -16.136806488037109 ], [ -73.869026184081974, -16.136539459228516 ], [ -73.869026184081974, -16.136249542236328 ], [ -73.869438171386605, -16.136249542236328 ], [ -73.869583129882812, -16.136249542236328 ], [ -73.869583129882812, -16.136104583740121 ], [ -73.869583129882812, -16.135974884033146 ], [ -73.869689941406193, -16.135974884033146 ], [ -73.869857788085938, -16.135974884033146 ], [ -73.869857788085938, -16.13569259643549 ], [ -73.870414733886719, -16.13569259643549 ], [ -73.870414733886719, -16.135414123535099 ], [ -73.870697021484375, -16.135414123535099 ], [ -73.870697021484375, -16.134862899780273 ], [ -73.8709716796875, -16.134862899780273 ], [ -73.8709716796875, -16.134481430053711 ], [ -73.8709716796875, -16.134027481079045 ], [ -73.871246337890568, -16.134027481079045 ], [ -73.871246337890568, -16.133474349975529 ], [ -73.871681213378906, -16.133474349975529 ], [ -73.872085571289006, -16.133474349975529 ], [ -73.872085571289006, -16.133192062377816 ], [ -73.872360229492131, -16.133192062377816 ], [ -73.872360229492131, -16.132638931274414 ], [ -73.872642517089844, -16.132638931274414 ], [ -73.872642517089844, -16.132041931152344 ], [ -73.872642517089844, -16.131805419921818 ], [ -73.872917175292969, -16.131805419921818 ], [ -73.872917175292969, -16.131254196166935 ], [ -73.872917175292969, -16.130695343017578 ], [ -73.873191833496094, -16.130695343017578 ], [ -73.873191833496094, -16.130464553833008 ], [ -73.873191833496094, -16.129861831665039 ], [ -73.87347412109375, -16.129861831665039 ], [ -73.87347412109375, -16.129583358764648 ], [ -73.873748779296875, -16.129583358764648 ], [ -73.873748779296875, -16.129028320312443 ], [ -73.874031066894531, -16.129028320312443 ], [ -73.874031066894531, -16.128749847412053 ], [ -73.874305725097543, -16.128749847412053 ], [ -73.874305725097543, -16.128471374511605 ], [ -73.874580383300724, -16.128471374511605 ], [ -73.874580383300724, -16.128194808959961 ], [ -73.874938964843693, -16.128194808959961 ], [ -73.875137329101506, -16.128194808959961 ], [ -73.875137329101506, -16.127916336059513 ], [ -73.875419616699162, -16.127916336059513 ], [ -73.875419616699162, -16.127639770507812 ], [ -73.875694274902344, -16.127639770507812 ], [ -73.875694274902344, -16.127361297607422 ], [ -73.87652587890625, -16.127361297607422 ], [ -73.87652587890625, -16.127082824707031 ], [ -73.876808166503906, -16.127082824707031 ], [ -73.876808166503906, -16.12680625915516 ], [ -73.877357482910043, -16.12680625915516 ], [ -73.877357482910043, -16.126527786254883 ], [ -73.877639770507699, -16.126527786254883 ], [ -73.877639770507699, -16.125417709350586 ], [ -73.877914428710881, -16.125417709350586 ], [ -73.877914428710881, -16.124584197998047 ], [ -73.878753662109318, -16.124584197998047 ], [ -73.878753662109318, -16.124307632446232 ], [ -73.879302978515625, -16.124307632446232 ], [ -73.879302978515625, -16.124584197998047 ], [ -73.879585266113281, -16.124584197998047 ], [ -73.879585266113281, -16.125139236450195 ], [ -73.879859924316406, -16.125139236450195 ], [ -73.879859924316406, -16.125694274902287 ], [ -73.880142211914062, -16.125694274902287 ], [ -73.880142211914062, -16.125972747802678 ], [ -73.880973815917912, -16.125972747802678 ], [ -73.880973815917912, -16.126249313354492 ], [ -73.881530761718693, -16.126249313354492 ], [ -73.881530761718693, -16.124027252197266 ], [ -73.880973815917912, -16.124027252197266 ], [ -73.880973815917912, -16.123750686645394 ], [ -73.880416870117188, -16.123750686645394 ], [ -73.880416870117188, -16.123472213745117 ], [ -73.879859924316406, -16.123472213745117 ], [ -73.879859924316406, -16.122917175292912 ], [ -73.879302978515625, -16.122917175292912 ], [ -73.879302978515625, -16.122360229492131 ], [ -73.879585266113281, -16.122360229492131 ], [ -73.879585266113281, -16.122085571288949 ], [ -73.879302978515625, -16.122085571288949 ], [ -73.879302978515625, -16.119863510131836 ], [ -73.879585266113281, -16.119863510131836 ], [ -73.879585266113281, -16.119304656982365 ], [ -73.879859924316406, -16.119304656982365 ], [ -73.879859924316406, -16.118686676025391 ], [ -73.879859924316406, -16.117916107177734 ], [ -73.880142211914062, -16.117916107177734 ], [ -73.880142211914062, -16.11763954162592 ], [ -73.880416870117188, -16.11763954162592 ], [ -73.880416870117188, -16.117359161376953 ], [ -73.880722045898438, -16.117359161376953 ], [ -73.880973815917912, -16.117359161376953 ], [ -73.880973815917912, -16.117082595825195 ], [ -73.881248474121037, -16.117082595825195 ], [ -73.881248474121037, -16.116806030273381 ], [ -73.881530761718693, -16.116806030273381 ], [ -73.881530761718693, -16.116508483886719 ], [ -73.881530761718693, -16.116249084472599 ], [ -73.881805419921818, -16.116249084472599 ], [ -73.881805419921818, -16.115694046020508 ], [ -73.882255554199219, -16.115694046020508 ], [ -73.882919311523438, -16.115694046020508 ], [ -73.882919311523438, -16.11513710021967 ], [ -73.883193969726562, -16.11513710021967 ], [ -73.883193969726562, -16.114860534667969 ], [ -73.883468627929688, -16.114860534667969 ], [ -73.883468627929688, -16.114028930664062 ], [ -73.883750915527344, -16.114028930664062 ], [ -73.883750915527344, -16.113920211791935 ], [ -73.883750915527344, -16.113750457763615 ], [ -73.884025573730412, -16.113750457763615 ], [ -73.884025573730412, -16.113471984863224 ], [ -73.884407043456974, -16.113471984863224 ], [ -73.884582519531193, -16.113471984863224 ], [ -73.884582519531193, -16.113311767578011 ], [ -73.884582519531193, -16.113193511962834 ], [ -73.884712219238281, -16.113193511962834 ], [ -73.885139465331974, -16.113193511962834 ], [ -73.885139465331974, -16.112918853759709 ], [ -73.885696411132812, -16.112918853759709 ], [ -73.885696411132812, -16.112638473510742 ], [ -73.885971069335938, -16.112638473510742 ], [ -73.885971069335938, -16.112361907958984 ], [ -73.886253356933594, -16.112361907958984 ], [ -73.886253356933594, -16.112083435058594 ], [ -73.886802673339844, -16.112083435058594 ], [ -73.886802673339844, -16.111528396606388 ], [ -73.887084960937386, -16.111528396606388 ], [ -73.887084960937386, -16.11097145080555 ], [ -73.887641906738224, -16.11097145080555 ], [ -73.887641906738224, -16.110696792602539 ], [ -73.887916564941349, -16.110696792602539 ], [ -73.887916564941349, -16.110416412353459 ], [ -73.888191223144474, -16.110416412353459 ], [ -73.888191223144474, -16.110315322875977 ], [ -73.888191223144474, -16.110137939453068 ], [ -73.888847351074219, -16.110137939453068 ], [ -73.889579772949219, -16.110137939453068 ], [ -73.889579772949219, -16.109861373901367 ], [ -73.890975952148381, -16.109861373901367 ], [ -73.890975952148381, -16.109584808349553 ], [ -73.892082214355469, -16.109584808349553 ], [ -73.892082214355469, -16.109306335449105 ], [ -73.893196105957031, -16.109306335449105 ], [ -73.893196105957031, -16.109027862548828 ], [ -73.894027709960881, -16.109027862548828 ], [ -73.894027709960881, -16.108749389648438 ], [ -73.894302368164006, -16.108749389648438 ], [ -73.894302368164006, -16.108423233032227 ], [ -73.894302368164006, -16.108192443847656 ], [ -73.894584655761662, -16.108192443847656 ], [ -73.894584655761662, -16.107915878295842 ], [ -73.894767761230469, -16.107915878295842 ], [ -73.8951416015625, -16.107915878295842 ], [ -73.8951416015625, -16.107639312744141 ], [ -73.89569091796875, -16.107639312744141 ], [ -73.89569091796875, -16.107360839843693 ], [ -73.895973205566406, -16.107360839843693 ], [ -73.895973205566406, -16.107082366943303 ], [ -73.896247863769531, -16.107082366943303 ], [ -73.896247863769531, -16.106805801391602 ], [ -73.896530151367188, -16.106805801391602 ], [ -73.896530151367188, -16.10597038269043 ], [ -73.896804809570256, -16.10597038269043 ], [ -73.896804809570256, -16.105693817138672 ], [ -73.897918701171818, -16.105693817138672 ], [ -73.897918701171818, -16.105417251586857 ], [ -73.899307250976562, -16.105417251586857 ], [ -73.899307250976562, -16.105138778686467 ], [ -73.900970458984318, -16.105138778686467 ], [ -73.900970458984318, -16.105417251586857 ], [ -73.901252746582031, -16.105417251586857 ], [ -73.901252746582031, -16.105693817138672 ], [ -73.901527404785156, -16.105739593505803 ], [ -73.901527404785156, -16.106805801391602 ], [ -73.901802062988281, -16.106805801391602 ], [ -73.901802062988281, -16.107360839843693 ], [ -73.902359008789062, -16.107360839843693 ], [ -73.902359008789062, -16.107082366943303 ], [ -73.90291595458973, -16.107082366943303 ], [ -73.90291595458973, -16.106527328491211 ], [ -73.903190612792912, -16.106527328491211 ], [ -73.903190612792912, -16.106252670288086 ], [ -73.90291595458973, -16.106252670288086 ], [ -73.90291595458973, -16.104583740234375 ], [ -73.902641296386719, -16.104583740234375 ], [ -73.902641296386719, -16.103471755981445 ], [ -73.90291595458973, -16.103471755981445 ], [ -73.90291595458973, -16.103195190429631 ], [ -73.903190612792912, -16.103195190429631 ], [ -73.903198242187386, -16.102916717529183 ], [ -73.903472900390568, -16.102916717529183 ], [ -73.903472900390568, -16.102638244628906 ], [ -73.903747558593693, -16.102638244628906 ], [ -73.903747558593693, -16.102361679077092 ], [ -73.904029846191349, -16.102361679077092 ], [ -73.904029846191349, -16.101528167724609 ], [ -73.904136657714787, -16.101528167724609 ], [ -73.904861450195312, -16.101528167724609 ], [ -73.904861450195312, -16.101249694824219 ], [ -73.905693054199219, -16.101249694824219 ], [ -73.905693054199219, -16.10069465637207 ], [ -73.905975341796875, -16.10069465637207 ], [ -73.905975341796875, -16.10041618347168 ], [ -73.906120300292912, -16.10041618347168 ], [ -73.906806945800724, -16.10041618347168 ], [ -73.906806945800724, -16.100139617919865 ], [ -73.907363891601506, -16.100139617919865 ], [ -73.907363891601506, -16.100019454956055 ], [ -73.907363891601506, -16.099861145019418 ], [ -73.908042907714787, -16.099861145019418 ], [ -73.909027099609375, -16.099861145019418 ], [ -73.909027099609375, -16.099582672119141 ], [ -73.909584045410099, -16.099582672119141 ], [ -73.909584045410099, -16.099306106567326 ], [ -73.910140991210881, -16.099306106567326 ], [ -73.910140991210881, -16.099027633666935 ], [ -73.910415649414006, -16.099027633666935 ], [ -73.910415649414006, -16.098749160766545 ], [ -73.910972595214844, -16.098749160766545 ], [ -73.910972595214844, -16.099027633666935 ], [ -73.911247253417969, -16.099027633666935 ], [ -73.911247253417969, -16.098749160766545 ], [ -73.911529541015625, -16.098749160766545 ], [ -73.911529541015625, -16.098472595214844 ], [ -73.912086486816406, -16.098472595214844 ], [ -73.912086486816406, -16.098194122314453 ], [ -73.912635803222599, -16.098194122314453 ], [ -73.912635803222599, -16.097917556762695 ], [ -73.913475036621037, -16.097917556762695 ], [ -73.913475036621037, -16.097639083862305 ], [ -73.913749694824162, -16.097639083862305 ], [ -73.913749694824162, -16.097360610961914 ], [ -73.914863586425781, -16.097360610961914 ], [ -73.914863586425781, -16.097085952758789 ], [ -73.915412902832031, -16.097085952758789 ], [ -73.915412902832031, -16.096805572509709 ], [ -73.915695190429574, -16.096805572509709 ], [ -73.915695190429574, -16.096525192260742 ], [ -73.916252136230412, -16.096525192260742 ], [ -73.916252136230412, -16.09625053405756 ], [ -73.917083740234375, -16.09625053405756 ], [ -73.917083740234375, -16.096525192260742 ], [ -73.9173583984375, -16.096525192260742 ], [ -73.9173583984375, -16.09597206115717 ], [ -73.917915344238281, -16.09597206115717 ], [ -73.917915344238281, -16.095695495605469 ], [ -73.918472290039062, -16.095695495605469 ], [ -73.918472290039062, -16.095417022705078 ], [ -73.91902923583973, -16.095417022705078 ], [ -73.91902923583973, -16.095138549804688 ], [ -73.919860839843693, -16.095138549804688 ], [ -73.919860839843693, -16.094863891601562 ], [ -73.920417785644531, -16.094863891601562 ], [ -73.920417785644531, -16.094581604003849 ], [ -73.921249389648438, -16.094581604003849 ], [ -73.921249389648438, -16.094303131103459 ], [ -73.921524047851562, -16.094303131103459 ], [ -73.921524047851562, -16.094028472900334 ], [ -73.921806335449219, -16.094028472900334 ], [ -73.921806335449219, -16.09375 ], [ -73.922363281249943, -16.09375 ], [ -73.922363281249943, -16.093471527099496 ], [ -73.922637939453068, -16.093471527099496 ], [ -73.922637939453068, -16.093193054199219 ], [ -73.923194885253849, -16.093193054199219 ], [ -73.923194885253849, -16.093471527099496 ], [ -73.923469543457031, -16.093471527099496 ], [ -73.923469543457031, -16.092916488647404 ], [ -73.924026489257812, -16.092916488647404 ], [ -73.924026489257812, -16.092638015747013 ], [ -73.924583435058594, -16.092638015747013 ], [ -73.924583435058594, -16.092361450195312 ], [ -73.924858093261719, -16.092361450195312 ], [ -73.924858093261719, -16.092081069946232 ], [ -73.925140380859375, -16.092081069946232 ], [ -73.925140380859375, -16.09180641174305 ], [ -73.925971984863224, -16.09180641174305 ], [ -73.925971984863224, -16.091527938842773 ], [ -73.926246643066349, -16.091527938842773 ], [ -73.926246643066349, -16.090972900390568 ], [ -73.926528930664006, -16.090972900390568 ], [ -73.926528930664006, -16.090694427490178 ], [ -73.926803588867188, -16.090694427490178 ], [ -73.926803588867188, -16.090415954589787 ], [ -73.927085876464844, -16.090415954589787 ], [ -73.927085876464844, -16.090139389038086 ], [ -73.927360534667969, -16.090139389038086 ], [ -73.927360534667969, -16.089860916137638 ], [ -73.927635192871094, -16.089860916137638 ], [ -73.927635192871094, -16.089582443237248 ], [ -73.928192138671875, -16.089582443237248 ], [ -73.928192138671875, -16.089305877685547 ], [ -73.928474426269418, -16.089305877685547 ], [ -73.928474426269418, -16.089027404785156 ], [ -73.929031372070256, -16.089027404785156 ], [ -73.929031372070256, -16.088750839233285 ], [ -73.929580688476506, -16.088750839233285 ], [ -73.929580688476506, -16.088472366333008 ], [ -73.930137634277344, -16.088472366333008 ], [ -73.930137634277344, -16.088193893432617 ], [ -73.930694580078125, -16.088193893432617 ], [ -73.930694580078125, -16.087917327880803 ], [ -73.931251525878906, -16.087917327880803 ], [ -73.931251525878906, -16.087638854980412 ], [ -73.931526184081918, -16.087638854980412 ], [ -73.931526184081918, -16.086250305175781 ], [ -73.931251525878906, -16.086250305175781 ], [ -73.931251525878906, -16.085269927978402 ], [ -73.931251525878906, -16.085138320922852 ], [ -73.932914733886719, -16.085138320922852 ], [ -73.932914733886719, -16.085416793823129 ], [ -73.933197021484375, -16.085416793823129 ], [ -73.933197021484375, -16.085695266723576 ], [ -73.933746337890625, -16.085695266723576 ], [ -73.933746337890625, -16.086250305175781 ], [ -73.934303283691406, -16.086250305175781 ], [ -73.934303283691406, -16.085971832275391 ], [ -73.934860229492074, -16.085971832275391 ], [ -73.934860229492074, -16.085695266723576 ], [ -73.935142517089787, -16.085695266723576 ], [ -73.935142517089787, -16.085416793823129 ], [ -73.935691833496037, -16.085416793823129 ], [ -73.935691833496037, -16.085138320922852 ], [ -73.936248779296875, -16.085138320922852 ], [ -73.936248779296875, -16.084861755371037 ], [ -73.936805725097656, -16.084861755371037 ], [ -73.936805725097656, -16.084583282470646 ], [ -73.937362670898438, -16.084583282470646 ], [ -73.937362670898438, -16.084306716918945 ], [ -73.937637329101562, -16.084306716918945 ], [ -73.937637329101562, -16.084028244018555 ], [ -73.937919616699219, -16.084028244018555 ], [ -73.937919616699219, -16.083749771118164 ], [ -73.938468933105412, -16.083749771118164 ], [ -73.938468933105412, -16.083471298217717 ], [ -73.939025878906193, -16.083471298217717 ], [ -73.939025878906193, -16.083196640014592 ], [ -73.939582824707031, -16.083196640014592 ], [ -73.939582824707031, -16.082914352416935 ], [ -73.939857482910156, -16.082914352416935 ], [ -73.939857482910156, -16.08263969421381 ], [ -73.940696716308594, -16.08263969421381 ], [ -73.940696716308594, -16.082361221313363 ], [ -73.941253662109261, -16.082361221313363 ], [ -73.941253662109261, -16.081806182861271 ], [ -73.941528320312443, -16.081806182861271 ], [ -73.941528320312443, -16.081527709960881 ], [ -73.941802978515568, -16.081527709960881 ], [ -73.941802978515568, -16.08124923706049 ], [ -73.942642211914062, -16.08124923706049 ], [ -73.942642211914062, -16.080974578857365 ], [ -73.942916870117188, -16.080974578857365 ], [ -73.942916870117188, -16.080692291259652 ], [ -73.943748474121094, -16.080692291259652 ], [ -73.943748474121094, -16.080415725708008 ], [ -73.94403076171875, -16.080415725708008 ], [ -73.94403076171875, -16.08013916015625 ], [ -73.944580078124943, -16.08013916015625 ], [ -73.944580078124943, -16.079305648803654 ], [ -73.945693969726562, -16.079305648803654 ], [ -73.945693969726562, -16.079027175903207 ], [ -73.945968627929688, -16.079027175903207 ], [ -73.945968627929688, -16.078750610351506 ], [ -73.946807861328125, -16.078750610351506 ], [ -73.946807861328125, -16.078193664550724 ], [ -73.94708251953125, -16.078193664550724 ], [ -73.94708251953125, -16.077917098999023 ], [ -73.947364807128906, -16.077917098999023 ], [ -73.947364807128906, -16.077638626098633 ], [ -73.947639465331918, -16.077638626098633 ], [ -73.947639465331918, -16.077360153198242 ], [ -73.947914123535099, -16.077360153198242 ], [ -73.947914123535099, -16.077083587646484 ], [ -73.948196411132756, -16.077083587646484 ], [ -73.948196411132756, -16.076528549194279 ], [ -73.948753356933537, -16.076528549194279 ], [ -73.948753356933537, -16.076248168945312 ], [ -73.949028015136719, -16.076248168945312 ], [ -73.949028015136719, -16.075971603393441 ], [ -73.949302673339844, -16.075971603393441 ], [ -73.949302673339844, -16.075695037841797 ], [ -73.9495849609375, -16.075695037841797 ], [ -73.9495849609375, -16.075416564941349 ], [ -73.950416564941406, -16.075416564941349 ], [ -73.950416564941406, -16.075138092040959 ], [ -73.951805114746037, -16.075138092040959 ], [ -73.951805114746037, -16.075416564941349 ], [ -73.953193664550781, -16.075416564941349 ], [ -73.953193664550781, -16.075695037841797 ], [ -73.954307556152287, -16.075695037841797 ], [ -73.954307556152287, -16.074583053588867 ], [ -73.954582214355412, -16.074583053588867 ], [ -73.954582214355412, -16.074029922485295 ], [ -73.954307556152287, -16.074029922485295 ], [ -73.954307556152287, -16.07125091552723 ], [ -73.954582214355412, -16.07125091552723 ], [ -73.954582214355412, -16.070695877075138 ], [ -73.955139160156193, -16.070695877075138 ], [ -73.955139160156193, -16.069860458373967 ], [ -73.955413818359375, -16.069860458373967 ], [ -73.955413818359375, -16.069585800170785 ], [ -73.955696105957031, -16.069585800170785 ], [ -73.955696105957031, -16.068946838378849 ], [ -73.955696105957031, -16.068750381469727 ], [ -73.955970764160156, -16.068750381469727 ], [ -73.955970764160156, -16.067916870117074 ], [ -73.956253051757812, -16.067916870117074 ], [ -73.956253051757812, -16.067638397216797 ], [ -73.956527709960938, -16.067638397216797 ], [ -73.956527709960938, -16.067363739013672 ], [ -73.957084655761605, -16.067363739013672 ], [ -73.957084655761605, -16.066804885864201 ], [ -73.957359313964787, -16.066804885864201 ], [ -73.957359313964787, -16.065971374511662 ], [ -73.957641601562443, -16.065971374511662 ], [ -73.957641601562443, -16.065694808959961 ], [ -73.957916259765568, -16.065694808959961 ], [ -73.957916259765568, -16.065139770507756 ], [ -73.958473205566406, -16.065139770507756 ], [ -73.958473205566406, -16.064859390258789 ], [ -73.958747863769531, -16.064859390258789 ], [ -73.958747863769531, -16.064027786254826 ], [ -73.959030151367188, -16.064027786254826 ], [ -73.959030151367188, -16.062639236450195 ], [ -73.959304809570312, -16.062639236450195 ], [ -73.959304809570312, -16.062360763549805 ], [ -73.959587097167969, -16.062360763549805 ], [ -73.959587097167969, -16.061805725097599 ], [ -73.960418701171761, -16.061805725097599 ], [ -73.960418701171761, -16.061527252197152 ], [ -73.960975646972599, -16.061527252197152 ], [ -73.960975646972599, -16.061250686645451 ], [ -73.961250305175724, -16.061250686645451 ], [ -73.961250305175724, -16.06097221374506 ], [ -73.961524963378906, -16.06097221374506 ], [ -73.961524963378906, -16.060417175292969 ], [ -73.962364196777344, -16.060417175292969 ], [ -73.962364196777344, -16.059860229492188 ], [ -73.962638854980469, -16.059860229492188 ], [ -73.962638854980469, -16.05958366394043 ], [ -73.963752746581974, -16.05958366394043 ], [ -73.963752746581974, -16.059305191040039 ], [ -73.964584350585881, -16.059305191040039 ], [ -73.964584350585881, -16.058750152587834 ], [ -73.965690612792969, -16.058750152587834 ], [ -73.9656982421875, -16.058471679687386 ], [ -73.96624755859375, -16.058471679687386 ], [ -73.96624755859375, -16.057916641235295 ], [ -73.967086791992131, -16.057916641235295 ], [ -73.967086791992131, -16.057638168334904 ], [ -73.967361450195256, -16.057638168334904 ], [ -73.967361450195256, -16.057361602783203 ], [ -73.96875, -16.057361602783203 ], [ -73.96875, -16.057083129882812 ], [ -73.969024658203125, -16.057083129882812 ], [ -73.969024658203125, -16.056528091430664 ], [ -73.969581604003906, -16.056528091430664 ], [ -73.969581604003906, -16.056249618530273 ], [ -73.969863891601449, -16.056249618530273 ], [ -73.969863891601449, -16.055973052978459 ], [ -73.970138549804631, -16.055973052978459 ], [ -73.970138549804631, -16.055692672729492 ], [ -73.970970153808537, -16.055692672729492 ], [ -73.970970153808537, -16.055414199829102 ], [ -73.971527099609375, -16.055414199829102 ], [ -73.971527099609375, -16.055139541625977 ], [ -73.973197937011605, -16.055139541625977 ], [ -73.973197937011605, -16.055414199829102 ], [ -73.97430419921875, -16.055414199829102 ], [ -73.97430419921875, -16.055139541625977 ], [ -73.975135803222656, -16.055139541625977 ], [ -73.975135803222656, -16.053749084472656 ], [ -73.975692749023438, -16.053749084472656 ], [ -73.975692749023438, -16.054027557373047 ], [ -73.977363586425724, -16.054027557373047 ], [ -73.977363586425724, -16.054584503173828 ], [ -73.977638244628906, -16.054584503173828 ], [ -73.977638244628906, -16.054861068725529 ], [ -73.977912902832031, -16.054861068725529 ], [ -73.977912902832031, -16.055139541625977 ], [ -73.978469848632812, -16.055139541625977 ], [ -73.978469848632812, -16.055414199829102 ], [ -73.978752136230469, -16.055414199829102 ], [ -73.978752136230469, -16.055139541625977 ], [ -73.979026794433594, -16.055139541625977 ], [ -73.979026794433594, -16.054861068725529 ], [ -73.97930908203125, -16.054861068725529 ], [ -73.97930908203125, -16.054584503173828 ], [ -73.979583740234318, -16.054584503173828 ], [ -73.979583740234318, -16.053192138671818 ], [ -73.979858398437443, -16.053192138671818 ], [ -73.979858398437443, -16.052917480468693 ], [ -73.980140686035099, -16.052917480468693 ], [ -73.980140686035099, -16.050695419311467 ], [ -73.979858398437443, -16.050693511962891 ], [ -73.979858398437443, -16.050416946411019 ], [ -73.980140686035099, -16.050416946411019 ], [ -73.980140686035099, -16.049304962158146 ], [ -73.980415344238224, -16.049304962158146 ], [ -73.980415344238224, -16.048471450805607 ], [ -73.980697631835881, -16.048471450805607 ], [ -73.980697631835881, -16.047916412353516 ], [ -73.981246948242188, -16.047916412353516 ], [ -73.981246948242188, -16.047639846801701 ], [ -73.981529235839844, -16.047639846801701 ], [ -73.981529235839844, -16.047361373901254 ], [ -73.981803894042969, -16.047361373901254 ], [ -73.981803894042969, -16.047082901000977 ], [ -73.982086181640625, -16.047082901000977 ], [ -73.982086181640625, -16.046527862548771 ], [ -73.98236083984375, -16.046527862548771 ], [ -73.98236083984375, -16.046249389648381 ], [ -73.982635498046818, -16.046249389648381 ], [ -73.982635498046818, -16.04597282409668 ], [ -73.983192443847599, -16.04597282409668 ], [ -73.983192443847599, -16.045139312744141 ], [ -73.983474731445256, -16.045139312744141 ], [ -73.983474731445256, -16.04486083984375 ], [ -73.983749389648381, -16.04486083984375 ], [ -73.983749389648381, -16.044584274291935 ], [ -73.984024047851562, -16.044582366943359 ], [ -73.984024047851562, -16.044307708740234 ], [ -73.986251831054631, -16.044307708740234 ], [ -73.986251831054631, -16.044027328491097 ], [ -73.986526489257756, -16.044027328491097 ], [ -73.986526489257756, -16.043472290039006 ], [ -73.986808776855412, -16.043472290039006 ], [ -73.986808776855412, -16.042085647582951 ], [ -73.9879150390625, -16.042085647582951 ], [ -73.9879150390625, -16.041803359985295 ], [ -73.988197326660156, -16.041803359985295 ], [ -73.988197326660156, -16.04152870178217 ], [ -73.988471984863281, -16.04152870178217 ], [ -73.988471984863281, -16.041250228881779 ], [ -73.989028930663949, -16.041250228881779 ], [ -73.989028930663949, -16.040693283081055 ], [ -73.989303588867131, -16.040693283081055 ], [ -73.989303588867131, -16.04041671752924 ], [ -73.989585876464787, -16.04041671752924 ], [ -73.989585876464787, -16.040138244628849 ], [ -73.990974426269531, -16.040138244628849 ], [ -73.990974426269531, -16.04041671752924 ], [ -73.991249084472656, -16.04041671752924 ], [ -73.991249084472656, -16.040138244628849 ], [ -73.991531372070312, -16.040138244628849 ], [ -73.991531372070312, -16.039581298828068 ], [ -73.992362976074162, -16.039581298828068 ], [ -73.992362976074162, -16.039863586425724 ], [ -73.993194580078068, -16.039863586425724 ], [ -73.993194580078068, -16.040138244628849 ], [ -73.994308471679688, -16.040138244628849 ], [ -73.994308471679688, -16.04041671752924 ], [ -73.995414733886662, -16.04041671752924 ], [ -73.995414733886662, -16.040693283081055 ], [ -73.995971679687443, -16.040693283081055 ], [ -73.995971679687443, -16.040973663330078 ], [ -73.996528625488224, -16.040973663330078 ], [ -73.996528625488224, -16.04152870178217 ], [ -73.996940612792912, -16.04152870178217 ], [ -73.997085571289062, -16.04152870178217 ], [ -73.997085571289062, -16.041852951049805 ], [ -73.997085571289062, -16.042360305786133 ], [ -73.997642517089844, -16.042360305786133 ], [ -73.997642517089844, -16.042638778686523 ], [ -73.997917175292969, -16.042638778686523 ], [ -73.997917175292969, -16.043472290039006 ], [ -73.997642517089844, -16.043472290039006 ], [ -73.997642517089844, -16.044027328491097 ], [ -73.997917175292969, -16.044027328491097 ], [ -73.997917175292969, -16.044307708740234 ], [ -73.998191833496094, -16.044307708740234 ], [ -73.998191833496094, -16.044582366943359 ], [ -73.999580383300724, -16.044582366943359 ], [ -73.999580383300724, -16.044307708740234 ], [ -73.999862670898438, -16.044307708740234 ], [ -74.000137329101562, -16.044307708740234 ], [ -74.000419616699219, -16.044307708740234 ], [ -74.000419616699219, -16.04041671752924 ], [ -74.000137329101562, -16.04041671752924 ], [ -74.000137329101562, -16.039863586425724 ], [ -74.000137329101562, -16.038471221923828 ], [ -74.000137329101562, -16.038194656372013 ], [ -74.000419616699219, -16.038194656372013 ], [ -74.000419616699219, -16.037916183471623 ], [ -74.000694274902344, -16.037916183471623 ], [ -74.000694274902344, -16.037639617919922 ], [ -74.003196716308594, -16.037639617919922 ], [ -74.003196716308594, -16.037359237670898 ], [ -74.003471374511719, -16.037359237670898 ], [ -74.003471374511719, -16.036527633666992 ], [ -74.003753662109375, -16.036527633666992 ], [ -74.003753662109375, -16.035417556762638 ], [ -74.0040283203125, -16.035417556762638 ], [ -74.0040283203125, -16.035137176513672 ], [ -74.004302978515625, -16.035137176513672 ], [ -74.004302978515625, -16.034584045410156 ], [ -74.004585266113281, -16.034584045410156 ], [ -74.004585266113281, -16.034305572509766 ], [ -74.004859924316293, -16.034305572509766 ], [ -74.004859924316293, -16.034027099609318 ], [ -74.005142211914006, -16.034027099609318 ], [ -74.005142211914006, -16.033750534057617 ], [ -74.005416870117131, -16.033750534057617 ], [ -74.005416870117131, -16.033472061157227 ], [ -74.005691528320256, -16.033472061157227 ], [ -74.005691528320256, -16.033193588256836 ], [ -74.005973815917912, -16.033193588256836 ], [ -74.005973815917912, -16.032918930053711 ], [ -74.006248474121094, -16.032918930053711 ], [ -74.006248474121094, -16.032638549804688 ], [ -74.00653076171875, -16.032638549804688 ], [ -74.00653076171875, -16.032361984252873 ], [ -74.007362365722656, -16.032361984252873 ], [ -74.007362365722656, -16.032083511352482 ], [ -74.007919311523438, -16.032083511352482 ], [ -74.007919311523438, -16.031806945800781 ], [ -74.008468627929631, -16.031806945800781 ], [ -74.008468627929631, -16.031528472900391 ], [ -74.008750915527287, -16.031528472900391 ], [ -74.008750915527287, -16.03125 ], [ -74.010696411132812, -16.03125 ], [ -74.010696411132812, -16.031528472900391 ], [ -74.010971069335938, -16.031528472900391 ], [ -74.010971069335938, -16.031806945800781 ], [ -74.011528015136662, -16.031806945800781 ], [ -74.011528015136662, -16.032083511352482 ], [ -74.012641906738281, -16.032083511352482 ], [ -74.012641906738281, -16.032361984252873 ], [ -74.012916564941406, -16.032361984252873 ], [ -74.012916564941406, -16.032638549804688 ], [ -74.013748168945312, -16.032638549804688 ], [ -74.013748168945312, -16.032918930053711 ], [ -74.014030456542969, -16.032918930053711 ], [ -74.014030456542969, -16.033193588256836 ], [ -74.01430511474598, -16.033193588256836 ], [ -74.01430511474598, -16.033472061157227 ], [ -74.014579772949162, -16.033472061157227 ], [ -74.014579772949162, -16.033750534057617 ], [ -74.014862060546818, -16.033750534057617 ], [ -74.014862060546818, -16.034027099609318 ], [ -74.015136718749943, -16.034027099609318 ], [ -74.015136718749943, -16.034305572509766 ], [ -74.015693664550781, -16.034305572509766 ], [ -74.015693664550781, -16.034584045410156 ], [ -74.015975952148438, -16.034584045410156 ], [ -74.015975952148438, -16.034860610961857 ], [ -74.017364501953125, -16.034860610961857 ], [ -74.017364501953125, -16.035137176513672 ], [ -74.017913818359318, -16.035137176513672 ], [ -74.017913818359318, -16.035417556762638 ], [ -74.018470764160099, -16.035417556762638 ], [ -74.018470764160099, -16.035137176513672 ], [ -74.018753051757756, -16.035137176513672 ], [ -74.018753051757756, -16.034860610961857 ], [ -74.019027709960938, -16.034860610961857 ], [ -74.019027709960938, -16.034305572509766 ], [ -74.018753051757756, -16.034305572509766 ], [ -74.018753051757756, -16.034027099609318 ], [ -74.018470764160099, -16.034027099609318 ], [ -74.018470764160099, -16.031742095947209 ], [ -74.018470764160099, -16.03125 ], [ -74.018196105956974, -16.03125 ], [ -74.018196105956974, -16.030971527099553 ], [ -74.017913818359318, -16.030971527099553 ], [ -74.017913818359318, -16.027639389038086 ], [ -74.018196105956974, -16.027639389038086 ], [ -74.018196105956974, -16.02680587768549 ], [ -74.018470764160099, -16.02680587768549 ], [ -74.018470764160099, -16.026252746582031 ], [ -74.018646240234375, -16.026252746582031 ], [ -74.018753051757756, -16.026252746582031 ], [ -74.018753051757756, -16.025819778442383 ], [ -74.018753051757756, -16.025138854980469 ], [ -74.019027709960938, -16.025138854980469 ], [ -74.019027709960938, -16.024860382080078 ], [ -74.019302368164062, -16.024860382080078 ], [ -74.019302368164062, -16.02458381652832 ], [ -74.019584655761719, -16.02458381652832 ], [ -74.019584655761719, -16.02430534362793 ], [ -74.019859313964844, -16.02430534362793 ], [ -74.019859313964844, -16.024026870727539 ], [ -74.0201416015625, -16.024026870727539 ], [ -74.0201416015625, -16.023750305175724 ], [ -74.020416259765625, -16.023750305175724 ], [ -74.020416259765625, -16.023471832275277 ], [ -74.020690917968636, -16.023471832275277 ], [ -74.020690917968636, -16.023195266723633 ], [ -74.021247863769474, -16.023195266723633 ], [ -74.021247863769474, -16.022916793823185 ], [ -74.022087097167912, -16.022916793823185 ], [ -74.022087097167912, -16.022638320922795 ], [ -74.022636413574219, -16.022638320922795 ], [ -74.022636413574219, -16.022916793823185 ], [ -74.022918701171875, -16.022916793823185 ], [ -74.022918701171875, -16.023195266723633 ], [ -74.023193359375, -16.023195266723633 ], [ -74.023193359375, -16.023471832275277 ], [ -74.023475646972656, -16.023471832275277 ], [ -74.023475646972656, -16.023750305175724 ], [ -74.024581909179631, -16.023750305175724 ], [ -74.024581909179631, -16.023471832275277 ], [ -74.024864196777287, -16.023471832275277 ], [ -74.024864196777287, -16.023195266723633 ], [ -74.025138854980412, -16.023195266723633 ], [ -74.025138854980412, -16.022638320922795 ], [ -74.025413513183594, -16.022638320922795 ], [ -74.025413513183594, -16.022361755371094 ], [ -74.02569580078125, -16.022361755371094 ], [ -74.02569580078125, -16.021804809570312 ], [ -74.025413513183594, -16.021804809570312 ], [ -74.025413513183594, -16.021528244018555 ], [ -74.025138854980412, -16.021528244018555 ], [ -74.025138854980412, -16.020971298217773 ], [ -74.025413513183594, -16.020971298217773 ], [ -74.025413513183594, -16.020694732665959 ], [ -74.02569580078125, -16.020694732665959 ], [ -74.02569580078125, -16.020416259765568 ], [ -74.025970458984375, -16.020416259765568 ], [ -74.025970458984375, -16.020139694213867 ], [ -74.026252746582031, -16.020139694213867 ], [ -74.026252746582031, -16.01986122131342 ], [ -74.026527404785156, -16.01986122131342 ], [ -74.026527404785156, -16.019582748413029 ], [ -74.026802062988281, -16.019582748413029 ], [ -74.026802062988281, -16.018472671508789 ], [ -74.027084350585824, -16.018472671508789 ], [ -74.027084350585824, -16.018194198608398 ], [ -74.027359008789006, -16.018194198608398 ], [ -74.027359008789006, -16.017917633056584 ], [ -74.027641296386662, -16.017917633056584 ], [ -74.027641296386662, -16.017639160156193 ], [ -74.027915954589787, -16.017639160156193 ], [ -74.027915954589787, -16.017360687255803 ], [ -74.028190612792912, -16.017360687255803 ], [ -74.028198242187443, -16.017084121704102 ], [ -74.029304504394531, -16.017084121704102 ], [ -74.029304504394531, -16.016805648803711 ], [ -74.03041839599598, -16.016805648803711 ], [ -74.03041839599598, -16.016527175903263 ], [ -74.030693054199162, -16.016527175903263 ], [ -74.030693054199162, -16.016250610351562 ], [ -74.030975341796818, -16.016250610351562 ], [ -74.030975341796818, -16.015972137451172 ], [ -74.03108978271473, -16.015972137451172 ], [ -74.031806945800781, -16.015972137451172 ], [ -74.031806945800781, -16.016250610351562 ], [ -74.032081604003906, -16.016250610351562 ], [ -74.032081604003906, -16.016527175903263 ], [ -74.032638549804688, -16.016527175903263 ], [ -74.032638549804688, -16.016250610351562 ], [ -74.032913208007812, -16.016250610351562 ], [ -74.032913208007812, -16.013750076293945 ], [ -74.033195495605469, -16.013750076293945 ], [ -74.033195495605469, -16.013471603393498 ], [ -74.03347015380848, -16.013471603393498 ], [ -74.03347015380848, -16.011528015136662 ], [ -74.033195495605469, -16.011528015136662 ], [ -74.033195495605469, -16.011249542236271 ], [ -74.032913208007812, -16.011249542236271 ], [ -74.032913208007812, -16.01069450378418 ], [ -74.032638549804688, -16.01069450378418 ], [ -74.032638549804688, -16.010416030883789 ], [ -74.032516479492074, -16.010416030883789 ], [ -74.032363891601562, -16.010416030883789 ], [ -74.032363891601562, -16.010139465332031 ], [ -74.032081604003906, -16.010139465332031 ], [ -74.032081604003906, -16.009859085082951 ], [ -74.031806945800781, -16.009859085082951 ], [ -74.031806945800781, -16.009424209594727 ], [ -74.031806945800781, -16.007917404174805 ], [ -74.032081604003906, -16.007917404174805 ], [ -74.032081604003906, -16.007360458374023 ], [ -74.032363891601562, -16.007360458374023 ], [ -74.032363891601562, -16.00625038146967 ], [ -74.032081604003906, -16.00625038146967 ], [ -74.032081604003906, -16.005416870117131 ], [ -74.031806945800781, -16.005416870117131 ], [ -74.031806945800781, -16.00513839721674 ], [ -74.031524658203125, -16.00513839721674 ], [ -74.031524658203125, -16.004306793212777 ], [ -74.03125, -16.004306793212777 ], [ -74.03125, -16.0040283203125 ], [ -74.030975341796818, -16.0040283203125 ], [ -74.030975341796818, -16.003749847412109 ], [ -74.030693054199162, -16.003749847412109 ], [ -74.030693054199162, -16.003471374511719 ], [ -74.03041839599598, -16.003471374511719 ], [ -74.03041839599598, -16.002916336059513 ], [ -74.030136108398324, -16.002916336059513 ], [ -74.030136108398324, -16.002639770507812 ], [ -74.029861450195312, -16.002639770507812 ], [ -74.029861450195312, -16.002361297607365 ], [ -74.029586791992188, -16.002361297607365 ], [ -74.029586791992188, -16.002084732055664 ], [ -74.029304504394531, -16.002084732055664 ], [ -74.029304504394531, -16.001806259155273 ], [ -74.029029846191406, -16.001806259155273 ], [ -74.029029846191406, -16.001249313354492 ], [ -74.02874755859375, -16.001249313354492 ], [ -74.02874755859375, -16.000974655151367 ], [ -74.028472900390625, -16.000974655151367 ], [ -74.028472900390625, -16.000692367553654 ], [ -74.028198242187443, -16.000692367553654 ], [ -74.028190612792912, -16.000415802001953 ], [ -74.027915954589787, -16.000415802001953 ], [ -74.027915954589787, -16.000139236450138 ], [ -74.027641296386662, -16.000139236450138 ], [ -74.027641296386662, -15.999860763549748 ], [ -74.027359008789006, -15.999860763549748 ], [ -74.027359008789006, -15.999581336975098 ], [ -74.026802062988281, -15.999583244323674 ], [ -74.026802062988281, -15.998471260070801 ], [ -74.027084350585824, -15.998474121093693 ], [ -74.027084350585824, -15.997359275817871 ], [ -74.026802062988281, -15.997361183166447 ], [ -74.026802062988281, -15.997082710266 ], [ -74.026527404785156, -15.997082710266 ], [ -74.026527404785156, -15.996249198913517 ], [ -74.026252746582031, -15.996249198913517 ], [ -74.026252746582031, -15.995416641235352 ], [ -74.025970458984375, -15.995416641235352 ], [ -74.025970458984375, -15.995139122009277 ], [ -74.02569580078125, -15.995139122009277 ], [ -74.02569580078125, -15.994860649108887 ], [ -74.025413513183594, -15.994860649108887 ], [ -74.025413513183594, -15.994027137756234 ], [ -74.025138854980412, -15.994027137756234 ], [ -74.025138854980412, -15.992361068725586 ], [ -74.025413513183594, -15.992361068725586 ], [ -74.025413513183594, -15.99152660369873 ], [ -74.02569580078125, -15.99152660369873 ], [ -74.02569580078125, -15.991249084472656 ], [ -74.025970458984375, -15.991249084472656 ], [ -74.025970458984375, -15.990693092346078 ], [ -74.026252746582031, -15.990693092346078 ], [ -74.026252746582031, -15.990139007568359 ], [ -74.026527404785156, -15.990139007568359 ], [ -74.026527404785156, -15.989583015441895 ], [ -74.026802062988281, -15.989583015441895 ], [ -74.026802062988281, -15.989304542541504 ], [ -74.027084350585824, -15.989304542541504 ], [ -74.027084350585824, -15.988751411437931 ], [ -74.027359008789006, -15.988747596740666 ], [ -74.027359008789006, -15.987916946411076 ], [ -74.027641296386662, -15.987916946411076 ], [ -74.027641296386662, -15.987638473510685 ], [ -74.027915954589787, -15.987638473510685 ], [ -74.027915954589787, -15.98680400848383 ], [ -74.028190612792912, -15.986806869506722 ], [ -74.028198242187443, -15.986529350280705 ], [ -74.028472900390625, -15.986529350280705 ], [ -74.028472900390625, -15.98569393157959 ], [ -74.02874755859375, -15.98569393157959 ], [ -74.02874755859375, -15.985137939453011 ], [ -74.029029846191406, -15.985137939453011 ], [ -74.029029846191406, -15.98486328125 ], [ -74.029304504394531, -15.98486328125 ], [ -74.029304504394531, -15.984581947326603 ], [ -74.029586791992188, -15.984581947326603 ], [ -74.029586791992188, -15.984027862548828 ], [ -74.029861450195312, -15.984027862548828 ], [ -74.029861450195312, -15.983750343322754 ], [ -74.030136108398324, -15.983750343322754 ], [ -74.030136108398324, -15.983471870422363 ], [ -74.03041839599598, -15.983471870422363 ], [ -74.03041839599598, -15.983194351196289 ], [ -74.030693054199162, -15.983194351196289 ], [ -74.030693054199162, -15.982915878295898 ], [ -74.030975341796818, -15.982915878295898 ], [ -74.030975341796818, -15.982359886169434 ], [ -74.03125, -15.982359886169434 ], [ -74.03125, -15.981805801391602 ], [ -74.031524658203125, -15.981805801391602 ], [ -74.031524658203125, -15.981249809265137 ], [ -74.031806945800781, -15.981249809265137 ], [ -74.031806945800781, -15.980972290039062 ], [ -74.032081604003906, -15.980972290039062 ], [ -74.032081604003906, -15.980416297912598 ], [ -74.032363891601562, -15.980416297912598 ], [ -74.032363891601562, -15.980137825012207 ], [ -74.032081604003906, -15.980137825012207 ], [ -74.032081604003906, -15.979583740234318 ], [ -74.032363891601562, -15.979583740234318 ], [ -74.032363891601562, -15.979306221008244 ], [ -74.032638549804688, -15.979306221008244 ], [ -74.032638549804688, -15.979027748107853 ], [ -74.032913208007812, -15.979027748107853 ], [ -74.032913208007812, -15.978471755981388 ], [ -74.033195495605469, -15.978471755981388 ], [ -74.033195495605469, -15.978191375732422 ], [ -74.03347015380848, -15.978191375732422 ], [ -74.03347015380848, -15.977638244628906 ], [ -74.033752441406193, -15.977638244628906 ], [ -74.033752441406193, -15.977082252502441 ], [ -74.034027099609318, -15.977084159851017 ], [ -74.034027099609318, -15.976528167724553 ], [ -74.034301757812443, -15.976528167724553 ], [ -74.034301757812443, -15.975972175598088 ], [ -74.034584045410099, -15.975972175598088 ], [ -74.034584045410099, -15.974026679992676 ], [ -74.034858703613281, -15.974026679992676 ], [ -74.034858703613281, -15.973749160766602 ], [ -74.035415649414062, -15.973749160766602 ], [ -74.035415649414062, -15.97208118438715 ], [ -74.035697937011719, -15.97208309173584 ], [ -74.035697937011719, -15.971248626708984 ], [ -74.035972595214844, -15.971248626708984 ], [ -74.035972595214844, -15.97097110748291 ], [ -74.036247253417969, -15.97097110748291 ], [ -74.036247253417969, -15.970694541931096 ], [ -74.036529541015625, -15.970694541931096 ], [ -74.036529541015625, -15.970415115356445 ], [ -74.036804199218693, -15.970417022705021 ], [ -74.036804199218693, -15.970138549804631 ], [ -74.037635803222599, -15.970138549804631 ], [ -74.037635803222599, -15.96985912322998 ], [ -74.037918090820256, -15.969861030578613 ], [ -74.037918090820256, -15.969582557678166 ], [ -74.038749694824219, -15.969582557678166 ], [ -74.038749694824219, -15.969026565551758 ], [ -74.039024353027344, -15.969026565551758 ], [ -74.039024353027344, -15.968749046325684 ], [ -74.039306640625, -15.968749046325684 ], [ -74.039306640625, -15.968473434448185 ], [ -74.039581298828125, -15.968473434448185 ], [ -74.039581298828125, -15.968193054199219 ], [ -74.041252136230469, -15.968193054199219 ], [ -74.041252136230469, -15.968473434448185 ], [ -74.0423583984375, -15.968473434448185 ], [ -74.0423583984375, -15.968193054199219 ], [ -74.042640686035156, -15.968193054199219 ], [ -74.042640686035156, -15.967361450195256 ], [ -74.042915344238168, -15.967361450195256 ], [ -74.042915344238168, -15.966251373290902 ], [ -74.042640686035156, -15.966251373290902 ], [ -74.042640686035156, -15.965970993041992 ], [ -74.0423583984375, -15.965970993041992 ], [ -74.0423583984375, -15.965416908264046 ], [ -74.04180908203125, -15.965416908264046 ], [ -74.04180908203125, -15.965139389038029 ], [ -74.041526794433594, -15.965139389038029 ], [ -74.041526794433594, -15.963194847106934 ], [ -74.04180908203125, -15.963194847106934 ], [ -74.04180908203125, -15.962917327880746 ], [ -74.042083740234375, -15.962917327880746 ], [ -74.042083740234375, -15.962638854980469 ], [ -74.0423583984375, -15.962638854980469 ], [ -74.0423583984375, -15.962361335754338 ], [ -74.042640686035156, -15.962361335754338 ], [ -74.042640686035156, -15.96208286285389 ], [ -74.042915344238168, -15.96208286285389 ], [ -74.042915344238168, -15.961804389953613 ], [ -74.043746948242131, -15.961804389953613 ], [ -74.043746948242131, -15.961528778076172 ], [ -74.044586181640625, -15.961528778076172 ], [ -74.044586181640625, -15.961251258850098 ], [ -74.04486083984375, -15.961251258850098 ], [ -74.04486083984375, -15.960972785949707 ], [ -74.045135498046875, -15.960972785949707 ], [ -74.045135498046875, -15.960695266723633 ], [ -74.045974731445312, -15.960695266723633 ], [ -74.045974731445312, -15.960138320922852 ], [ -74.046249389648324, -15.960138320922852 ], [ -74.046249389648324, -15.959582328796387 ], [ -74.046524047851506, -15.959582328796387 ], [ -74.046524047851506, -15.959029197692871 ], [ -74.046806335449162, -15.959026336669922 ], [ -74.046806335449162, -15.958472251892033 ], [ -74.047080993652287, -15.958472251892033 ], [ -74.047080993652287, -15.958193778991642 ], [ -74.047363281249943, -15.958193778991642 ], [ -74.047363281249943, -15.957916259765625 ], [ -74.047637939453125, -15.957916259765625 ], [ -74.047637939453125, -15.957637786865178 ], [ -74.048194885253906, -15.957637786865178 ], [ -74.048194885253906, -15.95736026763916 ], [ -74.048469543457031, -15.95736026763916 ], [ -74.048469543457031, -15.957083702087402 ], [ -74.048751831054688, -15.957083702087402 ], [ -74.048751831054688, -15.956804275512695 ], [ -74.049026489257812, -15.956806182861271 ], [ -74.049026489257812, -15.956527709960824 ], [ -74.049308776855469, -15.956527709960824 ], [ -74.049308776855469, -15.95624828338623 ], [ -74.049583435058537, -15.956250190734806 ], [ -74.049583435058537, -15.955971717834416 ], [ -74.050140380859318, -15.955971717834416 ], [ -74.050140380859318, -15.955694198608342 ], [ -74.050415039062443, -15.955694198608342 ], [ -74.050415039062443, -15.955415725707951 ], [ -74.050697326660099, -15.955415725707951 ], [ -74.050697326660099, -15.955138206481877 ], [ -74.050971984863281, -15.955140113830566 ], [ -74.050971984863281, -15.954859733581486 ], [ -74.051246643066406, -15.954859733581486 ], [ -74.051246643066406, -15.954584121704102 ], [ -74.051528930664062, -15.954584121704102 ], [ -74.051528930664062, -15.954305648803711 ], [ -74.051803588867188, -15.954305648803711 ], [ -74.051803588867188, -15.954028129577637 ], [ -74.052360534667969, -15.954028129577637 ], [ -74.052360534667969, -15.953749656677246 ], [ -74.052635192871037, -15.953749656677246 ], [ -74.052635192871037, -15.953470230102539 ], [ -74.052917480468693, -15.953472137451058 ], [ -74.052917480468693, -15.953193664550781 ], [ -74.053192138671818, -15.953193664550781 ], [ -74.053192138671818, -15.95291614532465 ], [ -74.053749084472599, -15.95291805267334 ], [ -74.053749084472599, -15.952637672424203 ], [ -74.054306030273438, -15.952637672424203 ], [ -74.054306030273438, -15.952360153198185 ], [ -74.054862976074219, -15.952362060546875 ], [ -74.054862976074219, -15.952083587646484 ], [ -74.055419921875, -15.952083587646484 ], [ -74.055419921875, -15.951804161071721 ], [ -74.055969238281193, -15.95180606842041 ], [ -74.055969238281193, -15.95152759552002 ], [ -74.056526184081974, -15.95152759552002 ], [ -74.056526184081974, -15.951250076293945 ], [ -74.057083129882812, -15.951250076293945 ], [ -74.057083129882812, -15.950971603393555 ], [ -74.057640075683594, -15.950971603393555 ], [ -74.057640075683594, -15.95069408416748 ], [ -74.058197021484375, -15.95069408416748 ], [ -74.058197021484375, -15.95041561126709 ], [ -74.058746337890511, -15.95041561126709 ], [ -74.058746337890511, -15.950138092040902 ], [ -74.059303283691349, -15.950139999389648 ], [ -74.059303283691349, -15.949861526489201 ], [ -74.059860229492131, -15.949861526489201 ], [ -74.059860229492131, -15.949581146240234 ], [ -74.060417175292969, -15.949584007263184 ], [ -74.060417175292969, -15.949305534362793 ], [ -74.06097412109375, -15.949305534362793 ], [ -74.06097412109375, -15.949028015136719 ], [ -74.061531066894531, -15.949028015136719 ], [ -74.061531066894531, -15.948749542236328 ], [ -74.062080383300668, -15.948749542236328 ], [ -74.062080383300668, -15.948472023010254 ], [ -74.062362670898381, -15.948472023010254 ], [ -74.062362670898381, -15.94819259643549 ], [ -74.062919616699162, -15.94819259643549 ], [ -74.062919616699162, -15.947915077209473 ], [ -74.063468933105469, -15.947917938232365 ], [ -74.063468933105469, -15.947636604309082 ], [ -74.06402587890625, -15.947636604309082 ], [ -74.06402587890625, -15.947359085083008 ], [ -74.064582824707031, -15.9473619461059 ], [ -74.064582824707031, -15.947084426879883 ], [ -74.065139770507812, -15.947084426879883 ], [ -74.065139770507812, -15.946805000305119 ], [ -74.065696716308537, -15.946805000305119 ], [ -74.065696716308537, -15.946526527404728 ], [ -74.066253662109318, -15.946526527404728 ], [ -74.066253662109318, -15.946249008178654 ], [ -74.066802978515625, -15.946249008178654 ], [ -74.066802978515625, -15.945970535278263 ], [ -74.067359924316406, -15.945970535278263 ], [ -74.067359924316406, -15.945693016052189 ], [ -74.067520141601449, -15.945693016052189 ], [ -74.067916870117188, -15.945693016052189 ], [ -74.067916870117188, -15.945527076721191 ], [ -74.067916870117188, -15.945418357849064 ], [ -74.068191528320312, -15.945418357849064 ], [ -74.068748474121037, -15.945418357849064 ], [ -74.068748474121037, -15.945138931274414 ], [ -74.068862915039062, -15.945138931274414 ], [ -74.069580078124943, -15.945138931274414 ], [ -74.069580078124943, -15.944861412048283 ], [ -74.070419311523438, -15.944861412048283 ], [ -74.070419311523438, -15.944581031799316 ], [ -74.070968627929688, -15.944582939147836 ], [ -74.070968627929688, -15.944305419921818 ], [ -74.071807861328011, -15.944305419921818 ], [ -74.071807861328011, -15.944026947021428 ], [ -74.072639465331974, -15.944026947021428 ], [ -74.072639465331974, -15.943751335144043 ], [ -74.073471069335938, -15.943751335144043 ], [ -74.073471069335938, -15.943470954894963 ], [ -74.074028015136719, -15.943470954894963 ], [ -74.074028015136719, -15.943195343017578 ], [ -74.0745849609375, -15.943195343017578 ], [ -74.0745849609375, -15.942916870117188 ], [ -74.075141906738224, -15.942916870117188 ], [ -74.075141906738224, -15.942639350891113 ], [ -74.075691223144474, -15.942639350891113 ], [ -74.075691223144474, -15.942360877990723 ], [ -74.075973510742131, -15.942360877990723 ], [ -74.075973510742131, -15.942083358764648 ], [ -74.076530456542969, -15.942083358764648 ], [ -74.076530456542969, -15.941804885864258 ], [ -74.077079772949219, -15.941804885864258 ], [ -74.077079772949219, -15.94152736663807 ], [ -74.07763671875, -15.94152736663807 ], [ -74.07763671875, -15.941248893737793 ], [ -74.078193664550724, -15.941248893737793 ], [ -74.078193664550724, -15.940973281860352 ], [ -74.078475952148381, -15.940973281860352 ], [ -74.078475952148381, -15.940694808959961 ], [ -74.079025268554631, -15.940694808959961 ], [ -74.079025268554631, -15.940417289733887 ], [ -74.079582214355469, -15.940417289733887 ], [ -74.079582214355469, -15.940138816833496 ], [ -74.08013916015625, -15.940138816833496 ], [ -74.08013916015625, -15.939861297607422 ], [ -74.080696105957031, -15.939861297607422 ], [ -74.080696105957031, -15.939582824707031 ], [ -74.081253051757699, -15.939582824707031 ], [ -74.081253051757699, -15.939305305480957 ], [ -74.081802368164006, -15.939305305480957 ], [ -74.081802368164006, -15.939026832580566 ], [ -74.082359313964787, -15.939026832580566 ], [ -74.082359313964787, -15.938749313354492 ], [ -74.082916259765625, -15.938751220703068 ], [ -74.082916259765625, -15.938470840454102 ], [ -74.083473205566406, -15.938470840454102 ], [ -74.083473205566406, -15.93819522857666 ], [ -74.084030151367188, -15.93819522857666 ], [ -74.084030151367188, -15.937916755676213 ], [ -74.084587097167855, -15.937916755676213 ], [ -74.084587097167855, -15.937637329101506 ], [ -74.085136413574162, -15.937639236450195 ], [ -74.085136413574162, -15.937360763549805 ], [ -74.085693359375, -15.937360763549805 ], [ -74.085693359375, -15.93708324432373 ], [ -74.086250305175781, -15.93708324432373 ], [ -74.086250305175781, -15.93680477142334 ], [ -74.086807250976562, -15.93680477142334 ], [ -74.086807250976562, -15.936527252197266 ], [ -74.087364196777344, -15.936529159545842 ], [ -74.087364196777344, -15.936250686645451 ], [ -74.087913513183537, -15.936250686645451 ], [ -74.087913513183537, -15.935973167419377 ], [ -74.088470458984318, -15.935973167419377 ], [ -74.088470458984318, -15.935694694518986 ], [ -74.089027404785156, -15.935694694518986 ], [ -74.089027404785156, -15.93541431427002 ], [ -74.089584350585938, -15.935417175292912 ], [ -74.089584350585938, -15.935138702392521 ], [ -74.090141296386719, -15.935138702392521 ], [ -74.090141296386719, -15.934861183166504 ], [ -74.090690612792855, -15.934861183166504 ], [ -74.0906982421875, -15.934584617614746 ], [ -74.091247558593693, -15.934584617614746 ], [ -74.091247558593693, -15.934304237365666 ], [ -74.092086791992131, -15.934304237365666 ], [ -74.092086791992131, -15.934028625488281 ], [ -74.092636108398438, -15.934028625488281 ], [ -74.092636108398438, -15.933748245239201 ], [ -74.093475341796875, -15.93375110626215 ], [ -74.093475341796875, -15.933472633361703 ], [ -74.094024658203068, -15.933472633361703 ], [ -74.094024658203068, -15.933194160461426 ], [ -74.094581604003849, -15.933194160461426 ], [ -74.094581604003849, -15.932915687561035 ], [ -74.095413208007812, -15.932915687561035 ], [ -74.095413208007812, -15.932638168334847 ], [ -74.095970153808594, -15.932638168334847 ], [ -74.095970153808594, -15.93235969543457 ], [ -74.0968017578125, -15.93235969543457 ], [ -74.0968017578125, -15.932082176208439 ], [ -74.097358703613224, -15.932082176208439 ], [ -74.097358703613224, -15.931806564331055 ], [ -74.098197937011662, -15.931806564331055 ], [ -74.098197937011662, -15.931526184081974 ], [ -74.098747253417969, -15.931528091430664 ], [ -74.098747253417969, -15.931249618530273 ], [ -74.09930419921875, -15.931249618530273 ], [ -74.09930419921875, -15.93097019195551 ], [ -74.100135803222543, -15.930972099304199 ], [ -74.100135803222543, -15.930693626403809 ], [ -74.100692749023381, -15.930693626403809 ], [ -74.100692749023381, -15.930416107177734 ], [ -74.101524353027344, -15.930416107177734 ], [ -74.101524353027344, -15.930137634277344 ], [ -74.102081298828125, -15.930137634277344 ], [ -74.102081298828125, -15.92986011505127 ], [ -74.102638244628906, -15.92986011505127 ], [ -74.102638244628906, -15.929583549499455 ], [ -74.103469848632699, -15.929583549499455 ], [ -74.103469848632699, -15.929304122924805 ], [ -74.104026794433537, -15.929304122924805 ], [ -74.104026794433537, -15.92902755737299 ], [ -74.1048583984375, -15.92902755737299 ], [ -74.1048583984375, -15.928750038146973 ], [ -74.105415344238281, -15.928750038146973 ], [ -74.105415344238281, -15.928471565246582 ], [ -74.105972290039062, -15.928471565246582 ], [ -74.105972290039062, -15.928194046020508 ], [ -74.106529235839844, -15.928194046020508 ], [ -74.106529235839844, -15.927915573120117 ], [ -74.107086181640568, -15.927915573120117 ], [ -74.107086181640568, -15.927638053894043 ], [ -74.107635498046818, -15.927638053894043 ], [ -74.107635498046818, -15.927362442016545 ], [ -74.108192443847656, -15.927362442016545 ], [ -74.108192443847656, -15.927082061767578 ], [ -74.108749389648438, -15.927083969116154 ], [ -74.108749389648438, -15.92680644989008 ], [ -74.109580993652344, -15.92680644989008 ], [ -74.109580993652344, -15.926527976989689 ], [ -74.110137939453068, -15.926527976989689 ], [ -74.110137939453068, -15.926250457763672 ], [ -74.110694885253849, -15.926250457763672 ], [ -74.110694885253849, -15.925971984863224 ], [ -74.111251831054688, -15.925971984863224 ], [ -74.111251831054688, -15.925694465637207 ], [ -74.111808776855469, -15.925694465637207 ], [ -74.111808776855469, -15.925415992736816 ], [ -74.112358093261719, -15.925415992736816 ], [ -74.112358093261719, -15.925138473510742 ], [ -74.112915039062386, -15.925138473510742 ], [ -74.112915039062386, -15.924861907958871 ], [ -74.113182067871037, -15.924861907958871 ], [ -74.113471984863224, -15.924861907958871 ], [ -74.113471984863224, -15.924584388732853 ], [ -74.114097595214844, -15.924584388732853 ], [ -74.114303588867188, -15.924584388732853 ], [ -74.114303588867188, -15.924305915832463 ], [ -74.114860534667969, -15.924305915832463 ], [ -74.114860534667969, -15.924028396606388 ], [ -74.11541748046875, -15.924028396606388 ], [ -74.11541748046875, -15.923749923705998 ], [ -74.115974426269531, -15.923749923705998 ], [ -74.115974426269531, -15.923472404479924 ], [ -74.116531372070256, -15.923472404479924 ], [ -74.116531372070256, -15.923195838928223 ], [ -74.117080688476506, -15.923195838928223 ], [ -74.117080688476506, -15.922916412353516 ], [ -74.117637634277344, -15.922916412353516 ], [ -74.117637634277344, -15.922639846801758 ], [ -74.118255615234261, -15.922639846801758 ], [ -74.11846923828125, -15.922639846801758 ], [ -74.11846923828125, -15.922516822814941 ], [ -74.11846923828125, -15.92236232757557 ], [ -74.118743896484375, -15.92236232757557 ], [ -74.119026184082031, -15.92236232757557 ], [ -74.119026184082031, -15.922202110290527 ], [ -74.119026184082031, -15.922080993652287 ], [ -74.119583129882756, -15.922083854675293 ], [ -74.119583129882756, -15.921806335449162 ], [ -74.120140075683537, -15.921806335449162 ], [ -74.120140075683537, -15.921527862548714 ], [ -74.120697021484318, -15.921527862548714 ], [ -74.120697021484318, -15.921250343322697 ], [ -74.121246337890625, -15.921250343322697 ], [ -74.121246337890625, -15.920970916748047 ], [ -74.121803283691406, -15.920970916748047 ], [ -74.121803283691406, -15.920693397521859 ], [ -74.122360229492188, -15.920693397521859 ], [ -74.122360229492188, -15.920417785644531 ], [ -74.123191833496037, -15.920417785644531 ], [ -74.123191833496037, -15.920140266418457 ], [ -74.123748779296818, -15.920140266418457 ], [ -74.123748779296818, -15.919861793518066 ], [ -74.124305725097656, -15.919861793518066 ], [ -74.124305725097656, -15.919583320617676 ], [ -74.124565124511719, -15.919583320617676 ], [ -74.124862670898438, -15.919583320617676 ], [ -74.124862670898438, -15.919304847717285 ], [ -74.124977111816406, -15.919304847717285 ], [ -74.125419616699219, -15.919304847717285 ], [ -74.125419616699219, -15.919027328491211 ], [ -74.125625610351562, -15.919027328491211 ], [ -74.125968933105412, -15.919027328491211 ], [ -74.125968933105412, -15.91888236999506 ], [ -74.125968933105412, -15.91874885559082 ], [ -74.126274108886719, -15.91874885559082 ], [ -74.126525878906193, -15.91874885559082 ], [ -74.126525878906193, -15.918574333190918 ], [ -74.126525878906193, -15.918471336364746 ], [ -74.126655578613281, -15.918471336364746 ], [ -74.127082824707031, -15.918471336364746 ], [ -74.127082824707031, -15.918195724487305 ], [ -74.127914428710938, -15.918195724487305 ], [ -74.127914428710938, -15.917915344238281 ], [ -74.128471374511719, -15.917915344238281 ], [ -74.128471374511719, -15.917638778686467 ], [ -74.129028320312386, -15.917638778686467 ], [ -74.129028320312386, -15.917361259460449 ], [ -74.129585266113224, -15.917361259460449 ], [ -74.129585266113224, -15.917082786560002 ], [ -74.130142211914006, -15.917082786560002 ], [ -74.130142211914006, -15.916805267333984 ], [ -74.130691528320312, -15.916805267333984 ], [ -74.130691528320312, -15.916526794433594 ], [ -74.131248474121094, -15.916526794433594 ], [ -74.131248474121094, -15.91624927520752 ], [ -74.131805419921875, -15.91624927520752 ], [ -74.131805419921875, -15.915970802307129 ], [ -74.132362365722599, -15.915970802307129 ], [ -74.132362365722599, -15.915693283081055 ], [ -74.132919311523381, -15.915695190429631 ], [ -74.132919311523381, -15.91541671752924 ], [ -74.133468627929688, -15.91541671752924 ], [ -74.133468627929688, -15.915139198303166 ], [ -74.134025573730469, -15.915139198303166 ], [ -74.134025573730469, -15.915016174316349 ], [ -74.134025573730469, -15.914860725402775 ], [ -74.13458251953125, -15.914860725402775 ], [ -74.13458251953125, -15.914583206176701 ], [ -74.135139465332031, -15.914583206176701 ], [ -74.135139465332031, -15.91430473327631 ], [ -74.135696411132756, -15.91430473327631 ], [ -74.135696411132756, -15.914029121398926 ], [ -74.136253356933537, -15.914029121398926 ], [ -74.136253356933537, -15.913748741149846 ], [ -74.136802673339844, -15.913748741149846 ], [ -74.136802673339844, -15.913473129272461 ], [ -74.137252807617188, -15.913473129272461 ], [ -74.137359619140625, -15.913473129272461 ], [ -74.137359619140625, -15.91319465637207 ], [ -74.137916564941406, -15.91319465637207 ], [ -74.137916564941406, -15.912915229797363 ], [ -74.138473510742074, -15.912917137145882 ], [ -74.138473510742074, -15.912638664245605 ], [ -74.139030456542912, -15.912638664245605 ], [ -74.139030456542912, -15.912359237670898 ], [ -74.139579772949162, -15.912361145019474 ], [ -74.139579772949162, -15.912082672119027 ], [ -74.14013671875, -15.912082672119027 ], [ -74.14013671875, -15.911803245544434 ], [ -74.140693664550781, -15.91180515289301 ], [ -74.140693664550781, -15.911526679992619 ], [ -74.141250610351562, -15.911526679992619 ], [ -74.141250610351562, -15.911249160766545 ], [ -74.14180755615223, -15.911251068115234 ], [ -74.14180755615223, -15.910972595214844 ], [ -74.142364501953068, -15.910972595214844 ], [ -74.142364501953068, -15.91069316864008 ], [ -74.142913818359375, -15.91069507598877 ], [ -74.142913818359375, -15.910416603088379 ], [ -74.143470764160156, -15.910416603088379 ], [ -74.143470764160156, -15.910139083862305 ], [ -74.144027709960938, -15.910139083862305 ], [ -74.144027709960938, -15.909860610961914 ], [ -74.144584655761719, -15.909860610961914 ], [ -74.144584655761719, -15.909583091735726 ], [ -74.145141601562443, -15.909583091735726 ], [ -74.145141601562443, -15.909304618835449 ], [ -74.145690917968693, -15.909304618835449 ], [ -74.145690917968693, -15.909027099609318 ], [ -74.146247863769531, -15.909029006958008 ], [ -74.146247863769531, -15.908747673034668 ], [ -74.147087097167969, -15.908747673034668 ], [ -74.147087097167969, -15.908470153808594 ], [ -74.147636413574219, -15.908473014831543 ], [ -74.147636413574219, -15.908194541931152 ], [ -74.148193359374943, -15.908194541931152 ], [ -74.148193359374943, -15.907917022705078 ], [ -74.148750305175724, -15.907917022705078 ], [ -74.148750305175724, -15.907638549804688 ], [ -74.149307250976506, -15.907638549804688 ], [ -74.149307250976506, -15.907360076904297 ], [ -74.149864196777344, -15.907360076904297 ], [ -74.149864196777344, -15.907081604003906 ], [ -74.150413513183594, -15.907081604003906 ], [ -74.150413513183594, -15.906804084777832 ], [ -74.150970458984375, -15.906806945800724 ], [ -74.150970458984375, -15.906529426574707 ], [ -74.151527404785099, -15.906529426574707 ], [ -74.151527404785099, -15.906248092651367 ], [ -74.152084350585881, -15.906250953674316 ], [ -74.152084350585881, -15.905973434448242 ], [ -74.152641296386719, -15.905973434448242 ], [ -74.152641296386719, -15.905692100524902 ], [ -74.153190612792969, -15.905694007873478 ], [ -74.1531982421875, -15.905415534973088 ], [ -74.15374755859375, -15.905415534973088 ], [ -74.15374755859375, -15.905138015747013 ], [ -74.154304504394418, -15.905138015747013 ], [ -74.154304504394418, -15.904863357543888 ], [ -74.154861450195256, -15.904863357543888 ], [ -74.154861450195256, -15.904582023620605 ], [ -74.155418395996037, -15.904582023620605 ], [ -74.155418395996037, -15.904306411743107 ], [ -74.15625, -15.904306411743107 ], [ -74.15625, -15.904026031494141 ], [ -74.156806945800781, -15.90402793884266 ], [ -74.156806945800781, -15.903750419616642 ], [ -74.157363891601562, -15.903750419616642 ], [ -74.157363891601562, -15.903470039367676 ], [ -74.157913208007756, -15.903471946716252 ], [ -74.157913208007756, -15.903194427490178 ], [ -74.158470153808537, -15.903194427490178 ], [ -74.158470153808537, -15.902915954589787 ], [ -74.159027099609375, -15.902915954589787 ], [ -74.159027099609375, -15.902638435363713 ], [ -74.159584045410156, -15.902638435363713 ], [ -74.159584045410156, -15.902359962463322 ], [ -74.160140991210938, -15.902359962463322 ], [ -74.160140991210938, -15.902084350585938 ], [ -74.160697937011719, -15.902084350585938 ], [ -74.160697937011719, -15.901805877685547 ], [ -74.161247253417912, -15.901805877685547 ], [ -74.161247253417912, -15.901528358459473 ], [ -74.161804199218693, -15.901528358459473 ], [ -74.161804199218693, -15.901249885559082 ], [ -74.162361145019531, -15.901249885559082 ], [ -74.162361145019531, -15.900972366332894 ], [ -74.162918090820312, -15.900972366332894 ], [ -74.162918090820312, -15.900693893432617 ], [ -74.163475036621094, -15.900693893432617 ], [ -74.163475036621094, -15.900416374206486 ], [ -74.164024353027287, -15.900416374206486 ], [ -74.164024353027287, -15.900137901306039 ], [ -74.164581298828068, -15.900137901306039 ], [ -74.164581298828068, -15.899862289428711 ], [ -74.165138244628849, -15.899862289428711 ], [ -74.165138244628849, -15.899581909179631 ], [ -74.165695190429688, -15.899581909179631 ], [ -74.165695190429688, -15.899306297302246 ], [ -74.166526794433594, -15.899306297302246 ], [ -74.166526794433594, -15.899027824401855 ], [ -74.167083740234261, -15.899027824401855 ], [ -74.167083740234261, -15.898750305175781 ], [ -74.167640686035099, -15.898750305175781 ], [ -74.167640686035099, -15.898471832275391 ], [ -74.168197631835881, -15.898471832275391 ], [ -74.168197631835881, -15.898194313049316 ], [ -74.168746948242188, -15.898194313049316 ], [ -74.168746948242188, -15.897915840148926 ], [ -74.169303894042969, -15.897915840148926 ], [ -74.169303894042969, -15.897640228271484 ], [ -74.16986083984375, -15.897640228271484 ], [ -74.16986083984375, -15.897361755371037 ], [ -74.170417785644418, -15.897361755371037 ], [ -74.170417785644418, -15.89708232879633 ], [ -74.170974731445256, -15.89708423614502 ], [ -74.170974731445256, -15.896805763244629 ], [ -74.171524047851562, -15.896805763244629 ], [ -74.171524047851562, -15.896528244018555 ], [ -74.172080993652344, -15.896528244018555 ], [ -74.172080993652344, -15.896249771118164 ], [ -74.172637939453125, -15.896249771118164 ], [ -74.172637939453125, -15.89597225189209 ], [ -74.173194885253906, -15.89597225189209 ], [ -74.173194885253906, -15.895693778991699 ], [ -74.173751831054631, -15.895693778991699 ], [ -74.173751831054631, -15.895416259765625 ], [ -74.174308776855412, -15.895416259765625 ], [ -74.174308776855412, -15.89513969421381 ], [ -74.174858093261719, -15.89513969421381 ], [ -74.174858093261719, -15.894859313964844 ], [ -74.1754150390625, -15.894862174987736 ], [ -74.1754150390625, -15.894583702087346 ], [ -74.175971984863281, -15.894583702087346 ], [ -74.175971984863281, -15.894303321838379 ], [ -74.176803588867131, -15.894306182861328 ], [ -74.176803588867131, -15.894027709960881 ], [ -74.177635192871037, -15.894027709960881 ], [ -74.177635192871037, -15.89374923706049 ], [ -74.178474426269531, -15.89374923706049 ], [ -74.178474426269531, -15.893473625183105 ], [ -74.179306030273438, -15.893470764160099 ], [ -74.179306030273438, -15.893193244934025 ], [ -74.180137634277287, -15.893193244934025 ], [ -74.180137634277287, -15.892917633056527 ], [ -74.180694580078068, -15.892917633056527 ], [ -74.180694580078068, -15.892637252807617 ], [ -74.181526184082031, -15.89264011383051 ], [ -74.181526184082031, -15.892361640930119 ], [ -74.182357788085938, -15.892361640930119 ], [ -74.182357788085938, -15.892083168029671 ], [ -74.183197021484261, -15.892083168029671 ], [ -74.183197021484261, -15.891804695129395 ], [ -74.184028625488224, -15.891804695129395 ], [ -74.184028625488224, -15.891527175903263 ], [ -74.184585571289062, -15.891527175903263 ], [ -74.184585571289062, -15.891804695129395 ], [ -74.184814453124943, -15.891804695129395 ], [ -74.186019897460938, -15.891804695129395 ], [ -74.186248779296761, -15.891804695129395 ], [ -74.186248779296761, -15.891527175903263 ], [ -74.187362670898381, -15.891527175903263 ], [ -74.187362670898381, -15.891248703002816 ], [ -74.187789916992188, -15.891248703002816 ], [ -74.188751220703125, -15.891248703002816 ], [ -74.188751220703125, -15.891119003295842 ], [ -74.188751220703125, -15.890971183776799 ], [ -74.190139770507756, -15.890971183776799 ], [ -74.190139770507756, -15.890694618225098 ], [ -74.192527770996037, -15.890694618225098 ], [ -74.193473815917912, -15.890694618225098 ], [ -74.193473815917912, -15.890415191650334 ], [ -74.19403076171875, -15.890415191650334 ], [ -74.19403076171875, -15.890971183776799 ], [ -74.197364807128906, -15.890971183776799 ], [ -74.197364807128906, -15.890694618225098 ], [ -74.198471069335938, -15.890694618225098 ], [ -74.198471069335938, -15.890415191650334 ], [ -74.199798583984375, -15.890417098999023 ], [ -74.200218200683594, -15.890417098999023 ], [ -74.202079772949105, -15.890417098999023 ], [ -74.202079772949105, -15.890138626098633 ], [ -74.202362060546818, -15.890138626098633 ], [ -74.202362060546818, -15.889861106872559 ], [ -74.202919006347599, -15.889861106872559 ], [ -74.202919006347599, -15.889582633972168 ], [ -74.205696105956974, -15.889582633972168 ], [ -74.205696105956974, -15.889861106872559 ], [ -74.207359313964844, -15.889861106872559 ], [ -74.207359313964844, -15.889582633972168 ], [ -74.207916259765625, -15.889582633972168 ], [ -74.207916259765625, -15.889305114746094 ], [ -74.20819091796875, -15.889305114746094 ], [ -74.20819091796875, -15.889026641845703 ], [ -74.208473205566406, -15.889026641845703 ], [ -74.208473205566406, -15.887639045715332 ], [ -74.208747863769474, -15.887639045715332 ], [ -74.208747863769474, -15.887360572814941 ], [ -74.209640502929688, -15.887360572814941 ], [ -74.209861755371094, -15.887360572814941 ], [ -74.209861755371094, -15.887639045715332 ], [ -74.210418701171875, -15.887639045715332 ], [ -74.210418701171875, -15.887916564941406 ], [ -74.210693359375, -15.887916564941406 ], [ -74.210693359375, -15.888749122619629 ], [ -74.211250305175781, -15.888749122619629 ], [ -74.211250305175781, -15.889026641845703 ], [ -74.212081909179631, -15.889026641845703 ], [ -74.212081909179631, -15.888472557067814 ], [ -74.212364196777287, -15.888472557067814 ], [ -74.212364196777287, -15.887916564941406 ], [ -74.212638854980412, -15.887916564941406 ], [ -74.212638854980412, -15.886804580688477 ], [ -74.212364196777287, -15.886804580688477 ], [ -74.212364196777287, -15.885695457458496 ], [ -74.212638854980412, -15.885695457458496 ], [ -74.212638854980412, -15.884860992431641 ], [ -74.212913513183594, -15.884860992431641 ], [ -74.212913513183594, -15.884583473205566 ], [ -74.21319580078125, -15.884583473205566 ], [ -74.21319580078125, -15.884305000305176 ], [ -74.213752746582031, -15.884306907653695 ], [ -74.213752746582031, -15.884026527404785 ], [ -74.214584350585938, -15.884026527404785 ], [ -74.214584350585938, -15.884306907653695 ], [ -74.215415954589787, -15.884305000305176 ], [ -74.215415954589787, -15.884583473205566 ], [ -74.217086791992188, -15.884583473205566 ], [ -74.217086791992188, -15.884305000305176 ], [ -74.218475341796818, -15.884306907653695 ], [ -74.218475341796818, -15.884026527404785 ], [ -74.220970153808594, -15.884026527404785 ], [ -74.220970153808594, -15.883749008178711 ], [ -74.22125244140625, -15.883750915527287 ], [ -74.22125244140625, -15.883473396301213 ], [ -74.222084045410099, -15.883473396301213 ], [ -74.222084045410099, -15.883193016052246 ], [ -74.223472595214844, -15.883194923400822 ], [ -74.223472595214844, -15.882917404174748 ], [ -74.223747253417969, -15.882917404174748 ], [ -74.223747253417969, -15.882638931274357 ], [ -74.224029541015625, -15.882638931274357 ], [ -74.224029541015625, -15.88236141204834 ], [ -74.224586486816293, -15.88236141204834 ], [ -74.224586486816293, -15.882082939147892 ], [ -74.224861145019474, -15.882082939147892 ], [ -74.224861145019474, -15.881805419921875 ], [ -74.225418090820256, -15.881805419921875 ], [ -74.225418090820256, -15.881525993347111 ], [ -74.227081298828125, -15.881528854370117 ], [ -74.227081298828125, -15.881251335143986 ], [ -74.227363586425781, -15.881251335143986 ], [ -74.227363586425781, -15.880970001220646 ], [ -74.227912902831974, -15.880972862243539 ], [ -74.227912902831974, -15.880695343017521 ], [ -74.228469848632756, -15.880695343017521 ], [ -74.228469848632756, -15.880416870117131 ], [ -74.229026794433594, -15.880416870117131 ], [ -74.229026794433594, -15.880138397216683 ], [ -74.2298583984375, -15.880138397216683 ], [ -74.2298583984375, -15.879859924316406 ], [ -74.230415344238281, -15.879859924316406 ], [ -74.230415344238281, -15.879582405090275 ], [ -74.230972290039006, -15.879582405090275 ], [ -74.230972290039006, -15.879306793212891 ], [ -74.231246948242131, -15.879306793212891 ], [ -74.231246948242131, -15.87902641296381 ], [ -74.232086181640568, -15.87902641296381 ], [ -74.232086181640568, -15.879306793212891 ], [ -74.232635498046875, -15.879306793212891 ], [ -74.232635498046875, -15.879582405090275 ], [ -74.232917785644531, -15.879582405090275 ], [ -74.232917785644531, -15.879306793212891 ], [ -74.234306335449162, -15.879306793212891 ], [ -74.234306335449162, -15.879582405090275 ], [ -74.235969543457031, -15.879582405090275 ], [ -74.235969543457031, -15.879306793212891 ], [ -74.236526489257812, -15.879306793212891 ], [ -74.236526489257812, -15.87902641296381 ], [ -74.237358093261662, -15.87902641296381 ], [ -74.237358093261662, -15.878750801086426 ], [ -74.237915039062443, -15.878750801086426 ], [ -74.237915039062443, -15.878472328186035 ], [ -74.238471984863281, -15.878472328186035 ], [ -74.238471984863281, -15.878193855285645 ], [ -74.239028930664062, -15.878193855285645 ], [ -74.239028930664062, -15.87791633605957 ], [ -74.239585876464844, -15.87791633605957 ], [ -74.239585876464844, -15.87763786315918 ], [ -74.240417480468636, -15.87763786315918 ], [ -74.240417480468636, -15.87791633605957 ], [ -74.240692138671818, -15.87791633605957 ], [ -74.240692138671818, -15.878193855285645 ], [ -74.242080688476562, -15.878193855285645 ], [ -74.242080688476562, -15.87791633605957 ], [ -74.242362976074219, -15.87791633605957 ], [ -74.242362976074219, -15.87763786315918 ], [ -74.242637634277344, -15.87763786315918 ], [ -74.242637634277344, -15.877360343933105 ], [ -74.243194580078125, -15.877360343933105 ], [ -74.243194580078125, -15.877083778381291 ], [ -74.243469238281136, -15.877083778381291 ], [ -74.243469238281136, -15.876806259155273 ], [ -74.243751525878849, -15.876806259155273 ], [ -74.243751525878849, -15.876527786254826 ], [ -74.244026184081974, -15.876527786254826 ], [ -74.244026184081974, -15.875971794128418 ], [ -74.244308471679631, -15.875971794128418 ], [ -74.244308471679631, -15.875694274902344 ], [ -74.244583129882756, -15.875694274902344 ], [ -74.244583129882756, -15.875415802001953 ], [ -74.244857788085938, -15.875415802001953 ], [ -74.244857788085938, -15.875694274902344 ], [ -74.245140075683594, -15.875694274902344 ], [ -74.245140075683594, -15.875971794128418 ], [ -74.2459716796875, -15.875971794128418 ], [ -74.2459716796875, -15.875694274902344 ], [ -74.246246337890625, -15.875694274902344 ], [ -74.246246337890625, -15.875138282775879 ], [ -74.246528625488281, -15.875140190124455 ], [ -74.246528625488281, -15.874859809875488 ], [ -74.246803283691349, -15.874859809875488 ], [ -74.246803283691349, -15.87458419799799 ], [ -74.247085571289006, -15.87458419799799 ], [ -74.247085571289006, -15.874305725097599 ], [ -74.247360229492131, -15.874305725097599 ], [ -74.247360229492131, -15.874028205871525 ], [ -74.247642517089787, -15.874028205871525 ], [ -74.247642517089787, -15.873749732971135 ], [ -74.247917175292912, -15.873749732971135 ], [ -74.247917175292912, -15.87319374084467 ], [ -74.248191833496094, -15.87319374084467 ], [ -74.248191833496094, -15.872637748718205 ], [ -74.24847412109375, -15.872637748718205 ], [ -74.24847412109375, -15.872360229492188 ], [ -74.248748779296875, -15.872360229492188 ], [ -74.248748779296875, -15.871804237365723 ], [ -74.249031066894531, -15.871806144714299 ], [ -74.249031066894531, -15.871527671813851 ], [ -74.249580383300781, -15.871527671813851 ], [ -74.249580383300781, -15.871248245239258 ], [ -74.249862670898438, -15.871250152587834 ], [ -74.249862670898438, -15.870694160461369 ], [ -74.250137329101506, -15.870694160461369 ], [ -74.250137329101506, -15.869859695434513 ], [ -74.250419616699162, -15.869859695434513 ], [ -74.250419616699162, -15.869582176208496 ], [ -74.250694274902287, -15.869584083557129 ], [ -74.250694274902287, -15.869305610656738 ], [ -74.250968933105412, -15.869305610656738 ], [ -74.250968933105412, -15.868472099304142 ], [ -74.250419616699162, -15.868472099304142 ], [ -74.250419616699162, -15.868193626403695 ], [ -74.250267028808594, -15.868193626403695 ], [ -74.249862670898438, -15.868193626403695 ], [ -74.249862670898438, -15.867915153503418 ], [ -74.249580383300781, -15.867915153503418 ], [ -74.249580383300781, -15.867359161376839 ], [ -74.249305725097656, -15.867362022399902 ], [ -74.249305725097656, -15.866867065429631 ], [ -74.249305725097656, -15.866249084472656 ], [ -74.249580383300781, -15.866249084472656 ], [ -74.249580383300781, -15.865970611572266 ], [ -74.250137329101506, -15.865970611572266 ], [ -74.250137329101506, -15.865418434143066 ], [ -74.249862670898438, -15.865418434143066 ], [ -74.249862670898438, -15.865137100219727 ], [ -74.249305725097656, -15.865139961242676 ], [ -74.249305725097656, -15.864860534667912 ], [ -74.249031066894531, -15.864860534667912 ], [ -74.249031066894531, -15.865139961242676 ], [ -74.248832702636719, -15.865137100219727 ], [ -74.248748779296875, -15.865139961242676 ], [ -74.248748779296875, -15.865418434143066 ], [ -74.248191833496094, -15.865418434143066 ], [ -74.248191833496094, -15.864304542541447 ], [ -74.24847412109375, -15.864304542541447 ], [ -74.24847412109375, -15.864025115966797 ], [ -74.24847412109375, -15.863471031188965 ], [ -74.248748779296875, -15.863471031188965 ], [ -74.248748779296875, -15.861804962158146 ], [ -74.248191833496094, -15.861804962158146 ], [ -74.248191833496094, -15.861527442932072 ], [ -74.247917175292912, -15.861527442932072 ], [ -74.247917175292912, -15.861248970031681 ], [ -74.247642517089787, -15.861248970031681 ], [ -74.247642517089787, -15.860694885253906 ], [ -74.247360229492131, -15.860694885253906 ], [ -74.247360229492131, -15.85986137390131 ], [ -74.247642517089787, -15.85986137390131 ], [ -74.247642517089787, -15.859582901000863 ], [ -74.247917175292912, -15.859582901000863 ], [ -74.247917175292912, -15.859026908874455 ], [ -74.247642517089787, -15.859026908874455 ], [ -74.247642517089787, -15.85875129699707 ], [ -74.247917175292912, -15.85875129699707 ], [ -74.247917175292912, -15.85847091674799 ], [ -74.248191833496094, -15.85847091674799 ], [ -74.248191833496094, -15.857916831970215 ], [ -74.24847412109375, -15.857916831970215 ], [ -74.24847412109375, -15.857639312744141 ], [ -74.248748779296875, -15.857639312744141 ], [ -74.248748779296875, -15.857083320617562 ], [ -74.249031066894531, -15.857083320617562 ], [ -74.249031066894531, -15.856804847717285 ], [ -74.249305725097656, -15.856804847717285 ], [ -74.249305725097656, -15.856250762939453 ], [ -74.249580383300781, -15.856250762939453 ], [ -74.249580383300781, -15.855694770812988 ], [ -74.249862670898438, -15.855694770812988 ], [ -74.249862670898438, -15.855138778686523 ], [ -74.250137329101506, -15.855138778686523 ], [ -74.250137329101506, -15.854861259460449 ], [ -74.250419616699162, -15.854861259460449 ], [ -74.250419616699162, -15.854584693908635 ], [ -74.250694274902287, -15.854584693908635 ], [ -74.250694274902287, -15.854304313659668 ], [ -74.250968933105412, -15.854304313659668 ], [ -74.250968933105412, -15.853751182556152 ], [ -74.251251220703125, -15.853751182556152 ], [ -74.251251220703125, -15.853472709655705 ], [ -74.251808166503906, -15.853472709655705 ], [ -74.251808166503906, -15.853192329406738 ], [ -74.252204895019531, -15.853195190429688 ], [ -74.252357482910156, -15.853195190429688 ], [ -74.252357482910156, -15.853090286254826 ], [ -74.252357482910156, -15.852636337280273 ], [ -74.252639770507812, -15.852638244628849 ], [ -74.252639770507812, -15.852359771728459 ], [ -74.252914428710938, -15.852359771728459 ], [ -74.252914428710938, -15.852082252502441 ], [ -74.253471374511662, -15.852082252502441 ], [ -74.253471374511662, -15.851806640624943 ], [ -74.253753662109318, -15.851806640624943 ], [ -74.253753662109318, -15.851529121398869 ], [ -74.254028320312443, -15.851529121398869 ], [ -74.254028320312443, -15.851249694824219 ], [ -74.254302978515625, -15.851249694824219 ], [ -74.254302978515625, -15.850972175598088 ], [ -74.254859924316406, -15.850972175598088 ], [ -74.254859924316406, -15.85069370269764 ], [ -74.255142211914062, -15.85069370269764 ], [ -74.255142211914062, -15.850416183471623 ], [ -74.255973815917969, -15.850416183471623 ], [ -74.255973815917969, -15.850137710571232 ], [ -74.25624847412098, -15.850137710571232 ], [ -74.25624847412098, -15.849860191345158 ], [ -74.256950378417969, -15.849860191345158 ], [ -74.257080078124943, -15.849860191345158 ], [ -74.257080078124943, -15.849583625793457 ], [ -74.257347106933594, -15.849583625793457 ], [ -74.257637023925781, -15.849583625793457 ], [ -74.257659912109318, -15.849368095397892 ], [ -74.2578125, -15.849304199218693 ], [ -74.258193969726562, -15.849304199218693 ], [ -74.258193969726562, -15.84915828704834 ], [ -74.258193969726562, -15.849027633666992 ], [ -74.258537292480355, -15.849027633666992 ], [ -74.258750915527344, -15.849027633666992 ], [ -74.258750915527344, -15.848750114440918 ], [ -74.259307861328125, -15.848750114440918 ], [ -74.259307861328125, -15.848471641540527 ], [ -74.259986877441406, -15.848471641540527 ], [ -74.260696411132756, -15.848471641540527 ], [ -74.260696411132756, -15.848200798034668 ], [ -74.261253356933594, -15.848194122314453 ], [ -74.261253356933594, -15.848471641540527 ], [ -74.261528015136719, -15.848471641540527 ], [ -74.261528015136719, -15.848194122314453 ], [ -74.262359619140625, -15.848194122314453 ], [ -74.262359619140625, -15.847915649414062 ], [ -74.264030456542969, -15.847915649414062 ], [ -74.264030456542969, -15.847638130187875 ], [ -74.264305114746094, -15.847638130187875 ], [ -74.264305114746094, -15.846249580383301 ], [ -74.264579772949219, -15.846249580383301 ], [ -74.264579772949219, -15.845972061157227 ], [ -74.264862060546875, -15.845972061157227 ], [ -74.264862060546875, -15.845693588256836 ], [ -74.264968872070312, -15.845693588256836 ], [ -74.26513671875, -15.845693588256836 ], [ -74.26513671875, -15.84559440612793 ], [ -74.26513671875, -15.845416069030762 ], [ -74.265419006347656, -15.845417976379338 ], [ -74.265419006347656, -15.845137596130371 ], [ -74.265693664550781, -15.845137596130371 ], [ -74.265693664550781, -15.844860076904297 ], [ -74.266250610351506, -15.844861984252873 ], [ -74.266250610351506, -15.844584465026855 ], [ -74.266860961914062, -15.844584465026855 ], [ -74.267082214355469, -15.844584465026855 ], [ -74.267082214355469, -15.844451904296818 ], [ -74.267082214355469, -15.844305992126465 ], [ -74.267333984375, -15.844305992126465 ], [ -74.267913818359375, -15.844305992126465 ], [ -74.267913818359375, -15.844028472900391 ], [ -74.268196105957031, -15.844028472900391 ], [ -74.268196105957031, -15.843799591064339 ], [ -74.268196105957031, -15.843471527099609 ], [ -74.267913818359375, -15.843471527099609 ], [ -74.267913818359375, -15.842915534973145 ], [ -74.268470764160156, -15.842915534973145 ], [ -74.268470764160156, -15.84263801574707 ], [ -74.269027709960824, -15.842639923095646 ], [ -74.269027709960824, -15.842362403869572 ], [ -74.269302368164006, -15.842362403869572 ], [ -74.269302368164006, -15.842081069946289 ], [ -74.270973205566406, -15.842083930969181 ], [ -74.270973205566406, -15.841806411743164 ], [ -74.271316528320199, -15.841806411743164 ], [ -74.271530151367188, -15.841806411743164 ], [ -74.271530151367188, -15.841657638549691 ], [ -74.271530151367188, -15.841527938842717 ], [ -74.271720886230469, -15.841527938842717 ], [ -74.272087097167969, -15.841527938842717 ], [ -74.272087097167969, -15.841250419616699 ], [ -74.272361755371037, -15.841250419616699 ], [ -74.272361755371037, -15.841086387634221 ], [ -74.272361755371037, -15.840971946716309 ], [ -74.272529602050724, -15.840971946716309 ], [ -74.272918701171818, -15.840971946716309 ], [ -74.272918701171818, -15.840703010559082 ], [ -74.272918701171818, -15.840415000915471 ], [ -74.273193359374943, -15.840417861938363 ], [ -74.273193359374943, -15.839584350585881 ], [ -74.273475646972599, -15.839584350585881 ], [ -74.273475646972599, -15.839027404785099 ], [ -74.274024963378906, -15.839027404785099 ], [ -74.274024963378906, -15.838748931884652 ], [ -74.274581909179688, -15.838748931884652 ], [ -74.274581909179688, -15.838471412658635 ], [ -74.274864196777344, -15.838471412658635 ], [ -74.274864196777344, -15.83819580078125 ], [ -74.275413513183537, -15.83819580078125 ], [ -74.275413513183537, -15.837918281555176 ], [ -74.275970458984318, -15.837918281555176 ], [ -74.275970458984318, -15.83819580078125 ], [ -74.276527404785099, -15.83819580078125 ], [ -74.276527404785099, -15.837918281555176 ], [ -74.277359008789062, -15.837918281555176 ], [ -74.277359008789062, -15.837638854980469 ], [ -74.277915954589844, -15.837638854980469 ], [ -74.277915954589844, -15.837361335754395 ], [ -74.279029846191349, -15.837361335754395 ], [ -74.279029846191349, -15.837082862854004 ], [ -74.279861450195312, -15.837082862854004 ], [ -74.279861450195312, -15.83680534362793 ], [ -74.280418395996094, -15.83680534362793 ], [ -74.280418395996094, -15.836526870727539 ], [ -74.28125, -15.836526870727539 ], [ -74.28125, -15.836249351501465 ], [ -74.281524658203125, -15.836249351501465 ], [ -74.281524658203125, -15.836526870727539 ], [ -74.281806945800668, -15.836526870727539 ], [ -74.281806945800668, -15.836249351501465 ], [ -74.282913208007812, -15.836249351501465 ], [ -74.282913208007812, -15.835970878601074 ], [ -74.284584045410156, -15.835970878601074 ], [ -74.284584045410156, -15.836249351501465 ], [ -74.284858703613168, -15.836249351501465 ], [ -74.284858703613168, -15.835970878601074 ], [ -74.28680419921875, -15.835970878601074 ], [ -74.28680419921875, -15.836249351501465 ], [ -74.287635803222656, -15.836249351501465 ], [ -74.287635803222656, -15.836526870727539 ], [ -74.290138244628906, -15.836526870727539 ], [ -74.290138244628906, -15.83680534362793 ], [ -74.290412902832031, -15.83680534362793 ], [ -74.290412902832031, -15.837082862854004 ], [ -74.290763854980412, -15.837082862854004 ], [ -74.290969848632812, -15.837082862854004 ], [ -74.290969848632812, -15.837361335754395 ], [ -74.291252136230469, -15.837361335754395 ], [ -74.291252136230469, -15.837082862854004 ], [ -74.291526794433537, -15.837082862854004 ], [ -74.291526794433537, -15.83680534362793 ], [ -74.292358398437443, -15.83680534362793 ], [ -74.292358398437443, -15.837082862854004 ], [ -74.292915344238281, -15.837082862854004 ], [ -74.292915344238281, -15.839861869811955 ], [ -74.293197631835938, -15.839859008789006 ], [ -74.293197631835938, -15.840415000915471 ], [ -74.293472290039062, -15.840415000915471 ], [ -74.293472290039062, -15.840971946716309 ], [ -74.294029235839844, -15.840971946716309 ], [ -74.294029235839844, -15.841250419616699 ], [ -74.294303894042969, -15.841250419616699 ], [ -74.294303894042969, -15.841527938842717 ], [ -74.295692443847656, -15.841527938842717 ], [ -74.295692443847656, -15.841806411743164 ], [ -74.295974731445312, -15.841806411743164 ], [ -74.295974731445312, -15.842639923095646 ], [ -74.295692443847656, -15.84263801574707 ], [ -74.295692443847656, -15.843471527099609 ], [ -74.295417785644474, -15.843471527099609 ], [ -74.295417785644474, -15.84375 ], [ -74.295692443847656, -15.84375 ], [ -74.295692443847656, -15.844028472900391 ], [ -74.297080993652344, -15.844028472900391 ], [ -74.297080993652344, -15.84375 ], [ -74.29736328125, -15.84375 ], [ -74.29736328125, -15.843471527099609 ], [ -74.297637939453011, -15.843471527099609 ], [ -74.297637939453011, -15.843194007873535 ], [ -74.297920227050724, -15.843194007873535 ], [ -74.297920227050724, -15.84263801574707 ], [ -74.298194885253849, -15.842639923095646 ], [ -74.298194885253849, -15.841806411743164 ], [ -74.298469543456974, -15.841806411743164 ], [ -74.298469543456974, -15.841527938842717 ], [ -74.299858093261719, -15.841527938842717 ], [ -74.299858093261719, -15.842081069946289 ], [ -74.300140380859375, -15.842081069946289 ], [ -74.300140380859375, -15.84263801574707 ], [ -74.301246643066349, -15.84263801574707 ], [ -74.301246643066349, -15.842915534973145 ], [ -74.301803588867131, -15.842915534973145 ], [ -74.301803588867131, -15.843194007873535 ], [ -74.302085876464787, -15.843194007873535 ], [ -74.302085876464787, -15.843471527099609 ], [ -74.302360534667969, -15.843471527099609 ], [ -74.302360534667969, -15.845417976379338 ], [ -74.302635192871094, -15.845416069030762 ], [ -74.302635192871094, -15.845693588256836 ], [ -74.30291748046875, -15.845693588256836 ], [ -74.30291748046875, -15.845972061157227 ], [ -74.303192138671875, -15.845972061157227 ], [ -74.303192138671875, -15.846249580383301 ], [ -74.303749084472656, -15.846249580383301 ], [ -74.303749084472656, -15.846528053283691 ], [ -74.304031372070312, -15.846528053283691 ], [ -74.304031372070312, -15.848194122314453 ], [ -74.304862976074162, -15.848194122314453 ], [ -74.304862976074162, -15.847638130187875 ], [ -74.305137634277287, -15.847638130187875 ], [ -74.305137634277287, -15.84736156463623 ], [ -74.305419921875, -15.847359657287598 ], [ -74.305419921875, -15.847082138061467 ], [ -74.305694580078125, -15.847084045410156 ], [ -74.305694580078125, -15.846249580383301 ], [ -74.305419921875, -15.846249580383301 ], [ -74.305419921875, -15.845137596130371 ], [ -74.306251525878906, -15.845137596130371 ], [ -74.306251525878906, -15.844860076904297 ], [ -74.307357788085881, -15.844860076904297 ], [ -74.307357788085881, -15.845137596130371 ], [ -74.307640075683537, -15.845137596130371 ], [ -74.307640075683537, -15.845417976379338 ], [ -74.308197021484318, -15.845416069030762 ], [ -74.308197021484318, -15.845693588256836 ], [ -74.309303283691406, -15.845693588256836 ], [ -74.309303283691406, -15.845972061157227 ], [ -74.309585571289062, -15.845972061157227 ], [ -74.309585571289062, -15.846249580383301 ], [ -74.310974121093693, -15.846249580383301 ], [ -74.310974121093693, -15.845972061157227 ], [ -74.311248779296818, -15.845972061157227 ], [ -74.311248779296818, -15.846249580383301 ], [ -74.312362670898438, -15.846249580383301 ], [ -74.312362670898438, -15.845972061157227 ], [ -74.312637329101562, -15.845972061157227 ], [ -74.312637329101562, -15.845693588256836 ], [ -74.312919616699219, -15.845693588256836 ], [ -74.312919616699219, -15.844584465026855 ], [ -74.312362670898438, -15.844584465026855 ], [ -74.312362670898438, -15.844305992126465 ], [ -74.312080383300781, -15.844305992126465 ], [ -74.312080383300781, -15.844028472900391 ], [ -74.311805725097656, -15.844028472900391 ], [ -74.311805725097656, -15.842362403869572 ], [ -74.311531066894474, -15.842362403869572 ], [ -74.311531066894474, -15.841527938842717 ], [ -74.311248779296818, -15.841527938842717 ], [ -74.311248779296818, -15.840693473815861 ], [ -74.311531066894474, -15.840693473815861 ], [ -74.311531066894474, -15.84013652801508 ], [ -74.311805725097656, -15.84013652801508 ], [ -74.311805725097656, -15.839584350585881 ], [ -74.312080383300781, -15.839584350585881 ], [ -74.312080383300781, -15.83930587768549 ], [ -74.312362670898438, -15.83930587768549 ], [ -74.312362670898438, -15.839584350585881 ], [ -74.312919616699219, -15.839584350585881 ], [ -74.312919616699219, -15.839861869811955 ], [ -74.313468933105355, -15.839859008789006 ], [ -74.313468933105355, -15.84013652801508 ], [ -74.313751220703068, -15.84013652801508 ], [ -74.313751220703068, -15.840417861938363 ], [ -74.313468933105355, -15.840415000915471 ], [ -74.313468933105355, -15.840693473815861 ], [ -74.313751220703068, -15.840693473815861 ], [ -74.313751220703068, -15.840971946716309 ], [ -74.314025878906193, -15.840971946716309 ], [ -74.314025878906193, -15.841250419616699 ], [ -74.314308166503849, -15.841250419616699 ], [ -74.314308166503849, -15.841806411743164 ], [ -74.314582824706974, -15.841806411743164 ], [ -74.314582824706974, -15.842362403869572 ], [ -74.314857482910156, -15.842362403869572 ], [ -74.314857482910156, -15.842639923095646 ], [ -74.316184997558594, -15.84263801574707 ], [ -74.316215515136662, -15.842879295349121 ], [ -74.316253662109375, -15.843194007873535 ], [ -74.315971374511719, -15.843194007873535 ], [ -74.315971374511719, -15.844584465026855 ], [ -74.316253662109375, -15.844584465026855 ], [ -74.316253662109375, -15.845137596130371 ], [ -74.3165283203125, -15.845137596130371 ], [ -74.3165283203125, -15.845693588256836 ], [ -74.316802978515568, -15.845693588256836 ], [ -74.316802978515568, -15.845972061157227 ], [ -74.317085266113224, -15.845972061157227 ], [ -74.317085266113224, -15.846249580383301 ], [ -74.317359924316349, -15.846249580383301 ], [ -74.317359924316349, -15.846528053283691 ], [ -74.317642211914006, -15.846528053283691 ], [ -74.317642211914006, -15.847082138061467 ], [ -74.318191528320312, -15.847082138061467 ], [ -74.318191528320312, -15.847359657287598 ], [ -74.318473815917969, -15.84736156463623 ], [ -74.318473815917969, -15.847638130187875 ], [ -74.318748474121094, -15.847638130187875 ], [ -74.318748474121094, -15.847915649414062 ], [ -74.318916320800781, -15.847915649414062 ], [ -74.31903076171875, -15.847915649414062 ], [ -74.31903076171875, -15.848471641540527 ], [ -74.319305419921875, -15.848471641540527 ], [ -74.319305419921875, -15.848750114440918 ], [ -74.319580078125, -15.848750114440918 ], [ -74.319580078125, -15.849027633666992 ], [ -74.319862365722656, -15.849027633666992 ], [ -74.319862365722656, -15.849583625793457 ], [ -74.320137023925724, -15.849583625793457 ], [ -74.320137023925724, -15.850137710571232 ], [ -74.320968627929631, -15.850137710571232 ], [ -74.320968627929631, -15.849860191345158 ], [ -74.321250915527344, -15.849860191345158 ], [ -74.321250915527344, -15.849583625793457 ], [ -74.321525573730469, -15.849583625793457 ], [ -74.321525573730469, -15.849304199218693 ], [ -74.321807861328125, -15.849304199218693 ], [ -74.321807861328125, -15.849583625793457 ], [ -74.325416564941406, -15.849583625793457 ], [ -74.325416564941406, -15.849860191345158 ], [ -74.326248168945199, -15.849860191345158 ], [ -74.326248168945199, -15.849583625793457 ], [ -74.328193664550781, -15.849583625793457 ], [ -74.328193664550781, -15.849027633666992 ], [ -74.328750610351562, -15.849027633666992 ], [ -74.328750610351562, -15.847915649414062 ], [ -74.328475952148438, -15.847915649414062 ], [ -74.328475952148438, -15.84736156463623 ], [ -74.328193664550781, -15.84736156463623 ], [ -74.328193664550781, -15.847082138061467 ], [ -74.327919006347656, -15.847084045410156 ], [ -74.327919006347656, -15.846249580383301 ], [ -74.32763671875, -15.846249580383301 ], [ -74.32763671875, -15.845972061157227 ], [ -74.327362060546818, -15.845972061157227 ], [ -74.327362060546818, -15.845416069030762 ], [ -74.327079772949162, -15.845417976379338 ], [ -74.327079772949162, -15.844584465026855 ], [ -74.326805114746037, -15.844584465026855 ], [ -74.326805114746037, -15.844028472900391 ], [ -74.326530456542912, -15.844028472900391 ], [ -74.326530456542912, -15.84375 ], [ -74.326248168945199, -15.84375 ], [ -74.326248168945199, -15.843194007873535 ], [ -74.325973510742188, -15.843194007873535 ], [ -74.325973510742188, -15.84263801574707 ], [ -74.326248168945199, -15.842639923095646 ], [ -74.326248168945199, -15.842362403869572 ], [ -74.326530456542912, -15.842362403869572 ], [ -74.326530456542912, -15.842081069946289 ], [ -74.32763671875, -15.842081069946289 ], [ -74.32763671875, -15.842362403869572 ], [ -74.327919006347656, -15.842362403869572 ], [ -74.327919006347656, -15.842639923095646 ], [ -74.328475952148438, -15.84263801574707 ], [ -74.328475952148438, -15.842915534973145 ], [ -74.329025268554688, -15.842915534973145 ], [ -74.329025268554688, -15.843194007873535 ], [ -74.330413818359318, -15.843194007873535 ], [ -74.330413818359318, -15.842915534973145 ], [ -74.330970764160156, -15.842915534973145 ], [ -74.330970764160156, -15.84263801574707 ], [ -74.331802368164062, -15.84263801574707 ], [ -74.331802368164062, -15.843194007873535 ], [ -74.332084655761719, -15.843194007873535 ], [ -74.332084655761719, -15.843805313110352 ], [ -74.332084655761719, -15.844584465026855 ], [ -74.332359313964844, -15.844584465026855 ], [ -74.332359313964844, -15.845417976379338 ], [ -74.333747863769474, -15.845417976379338 ], [ -74.333747863769474, -15.845137596130371 ], [ -74.334030151367188, -15.845137596130371 ], [ -74.334030151367188, -15.844860076904297 ], [ -74.334861755371094, -15.844860076904297 ], [ -74.334861755371094, -15.845137596130371 ], [ -74.335418701171875, -15.845137596130371 ], [ -74.335418701171875, -15.845417976379338 ], [ -74.336250305175724, -15.845417976379338 ], [ -74.336250305175724, -15.845137596130371 ], [ -74.336807250976506, -15.845137596130371 ], [ -74.336807250976506, -15.844860076904297 ], [ -74.337081909179688, -15.844861984252873 ], [ -74.337081909179688, -15.844028472900391 ], [ -74.337364196777344, -15.844028472900391 ], [ -74.337364196777344, -15.84263801574707 ], [ -74.33819580078125, -15.84263801574707 ], [ -74.33819580078125, -15.842915534973145 ], [ -74.338752746582031, -15.842915534973145 ], [ -74.338752746582031, -15.843194007873535 ], [ -74.339027404785043, -15.843194007873535 ], [ -74.339027404785043, -15.84375 ], [ -74.339584350585881, -15.84375 ], [ -74.339584350585881, -15.844028472900391 ], [ -74.340415954589844, -15.844028472900391 ], [ -74.340415954589844, -15.84375 ], [ -74.340972900390625, -15.84375 ], [ -74.340972900390625, -15.844028472900391 ], [ -74.34124755859375, -15.844028472900391 ], [ -74.34124755859375, -15.844305992126465 ], [ -74.341804504394531, -15.844305992126465 ], [ -74.341804504394531, -15.844028472900391 ], [ -74.342086791992188, -15.844028472900391 ], [ -74.342086791992188, -15.84375 ], [ -74.342361450195256, -15.84375 ], [ -74.342361450195256, -15.84263801574707 ], [ -74.342086791992188, -15.842639923095646 ], [ -74.342086791992188, -15.841806411743164 ], [ -74.342361450195256, -15.841806411743164 ], [ -74.342361450195256, -15.841527938842717 ], [ -74.342918395996037, -15.841527938842717 ], [ -74.342918395996037, -15.841806411743164 ], [ -74.343475341796818, -15.841806411743164 ], [ -74.343475341796818, -15.842083930969181 ], [ -74.34375, -15.842081069946289 ], [ -74.34375, -15.84263801574707 ], [ -74.344024658203125, -15.84263801574707 ], [ -74.344024658203125, -15.843194007873535 ], [ -74.344306945800781, -15.843194007873535 ], [ -74.344306945800781, -15.843471527099609 ], [ -74.344581604003906, -15.843471527099609 ], [ -74.344581604003906, -15.84375 ], [ -74.344863891601562, -15.84375 ], [ -74.344863891601562, -15.844028472900391 ], [ -74.3468017578125, -15.844028472900391 ], [ -74.3468017578125, -15.84375 ], [ -74.347640991210938, -15.84375 ], [ -74.347640991210938, -15.843471527099609 ], [ -74.348197937011719, -15.843471527099609 ], [ -74.348197937011719, -15.842915534973145 ], [ -74.348472595214844, -15.842915534973145 ], [ -74.348472595214844, -15.84263801574707 ], [ -74.349029541015568, -15.84263801574707 ], [ -74.349029541015568, -15.842915534973145 ], [ -74.349304199218693, -15.842915534973145 ], [ -74.349304199218693, -15.843194007873535 ], [ -74.349586486816349, -15.843194007873535 ], [ -74.349586486816349, -15.843471527099609 ], [ -74.349861145019531, -15.843471527099609 ], [ -74.349861145019531, -15.84375 ], [ -74.350135803222656, -15.84375 ], [ -74.350135803222656, -15.843471527099609 ], [ -74.350692749023438, -15.843471527099609 ], [ -74.350692749023438, -15.843194007873535 ], [ -74.351249694824219, -15.843194007873535 ], [ -74.351249694824219, -15.842915534973145 ], [ -74.351524353027344, -15.842915534973145 ], [ -74.351524353027344, -15.84263801574707 ], [ -74.351806640624886, -15.84263801574707 ], [ -74.351806640624886, -15.842081069946289 ], [ -74.352081298828068, -15.842083930969181 ], [ -74.352081298828068, -15.840693473815861 ], [ -74.352363586425724, -15.840693473815861 ], [ -74.352363586425724, -15.840415000915471 ], [ -74.353195190429688, -15.840417861938363 ], [ -74.353195190429688, -15.84013652801508 ], [ -74.353752136230469, -15.84013652801508 ], [ -74.353752136230469, -15.840417861938363 ], [ -74.354026794433594, -15.840415000915471 ], [ -74.354026794433594, -15.841250419616699 ], [ -74.35430908203125, -15.841250419616699 ], [ -74.35430908203125, -15.841527938842717 ], [ -74.354583740234375, -15.841527938842717 ], [ -74.354583740234375, -15.841806411743164 ], [ -74.355415344238224, -15.841806411743164 ], [ -74.355415344238224, -15.841527938842717 ], [ -74.355697631835881, -15.841527938842717 ], [ -74.355697631835881, -15.841250419616699 ], [ -74.355972290039006, -15.841250419616699 ], [ -74.355972290039006, -15.838748931884652 ], [ -74.356246948242188, -15.838748931884652 ], [ -74.356246948242188, -15.838471412658635 ], [ -74.356529235839844, -15.838471412658635 ], [ -74.356529235839844, -15.83819580078125 ], [ -74.357086181640625, -15.83819580078125 ], [ -74.357086181640625, -15.838471412658635 ], [ -74.35736083984375, -15.838471412658635 ], [ -74.35736083984375, -15.838748931884652 ], [ -74.357635498046875, -15.838748931884652 ], [ -74.357635498046875, -15.839027404785099 ], [ -74.357917785644531, -15.839027404785099 ], [ -74.357917785644531, -15.83930587768549 ], [ -74.358192443847599, -15.83930587768549 ], [ -74.358192443847599, -15.839584350585881 ], [ -74.359024047851506, -15.839584350585881 ], [ -74.359024047851506, -15.83930587768549 ], [ -74.360969543457031, -15.83930587768549 ], [ -74.360969543457031, -15.839027404785099 ], [ -74.361526489257756, -15.839027404785099 ], [ -74.361526489257756, -15.838748931884652 ], [ -74.361808776855412, -15.838748931884652 ], [ -74.361808776855412, -15.838471412658635 ], [ -74.362358093261662, -15.838471412658635 ], [ -74.362358093261662, -15.837918281555176 ], [ -74.362640380859375, -15.837918281555176 ], [ -74.362640380859375, -15.837082862854004 ], [ -74.362358093261662, -15.837082862854004 ], [ -74.362358093261662, -15.836249351501465 ], [ -74.3629150390625, -15.836249351501465 ], [ -74.3629150390625, -15.835970878601074 ], [ -74.363197326660156, -15.835970878601074 ], [ -74.363197326660156, -15.835139274597168 ], [ -74.363471984863281, -15.835139274597168 ], [ -74.363471984863281, -15.834860801696777 ], [ -74.363197326660156, -15.834860801696777 ], [ -74.363197326660156, -15.834027290344238 ], [ -74.3629150390625, -15.834027290344238 ], [ -74.3629150390625, -15.833471298217773 ], [ -74.362640380859375, -15.833473205566349 ], [ -74.362640380859375, -15.832638740539494 ], [ -74.363197326660156, -15.832638740539494 ], [ -74.363197326660156, -15.832361221313477 ], [ -74.364028930664062, -15.832361221313477 ], [ -74.364028930664062, -15.832082748413029 ], [ -74.365974426269531, -15.832082748413029 ], [ -74.365974426269531, -15.831805229187012 ], [ -74.367362976074219, -15.831805229187012 ], [ -74.367362976074219, -15.832082748413029 ], [ -74.36763763427723, -15.832082748413029 ], [ -74.36763763427723, -15.832361221313477 ], [ -74.369308471679688, -15.832361221313477 ], [ -74.369308471679688, -15.832638740539494 ], [ -74.369583129882812, -15.832638740539494 ], [ -74.369583129882812, -15.832917213439885 ], [ -74.369857788085938, -15.832915306091309 ], [ -74.369857788085938, -15.833194732665959 ], [ -74.370140075683594, -15.833194732665959 ], [ -74.370140075683594, -15.833473205566349 ], [ -74.370414733886719, -15.833471298217773 ], [ -74.370414733886719, -15.834027290344238 ], [ -74.370697021484375, -15.834027290344238 ], [ -74.370697021484375, -15.834304809570312 ], [ -74.370971679687443, -15.834304809570312 ], [ -74.370971679687443, -15.834583282470703 ], [ -74.371803283691349, -15.834583282470703 ], [ -74.371803283691349, -15.834860801696777 ], [ -74.372085571289006, -15.834860801696777 ], [ -74.372085571289006, -15.835139274597168 ], [ -74.372360229492188, -15.835139274597168 ], [ -74.372360229492188, -15.835416793823242 ], [ -74.372917175292969, -15.835416793823242 ], [ -74.372917175292969, -15.835695266723633 ], [ -74.374305725097599, -15.835695266723633 ], [ -74.374305725097599, -15.835970878601074 ], [ -74.375137329101506, -15.835970878601074 ], [ -74.375137329101506, -15.835695266723633 ], [ -74.375694274902344, -15.835695266723633 ], [ -74.375694274902344, -15.835416793823242 ], [ -74.375968933105469, -15.835416793823242 ], [ -74.375968933105469, -15.835139274597168 ], [ -74.376251220703125, -15.835139274597168 ], [ -74.376251220703125, -15.834860801696777 ], [ -74.37652587890625, -15.834860801696777 ], [ -74.37652587890625, -15.834304809570312 ], [ -74.377357482910099, -15.834304809570312 ], [ -74.377357482910099, -15.834583282470703 ], [ -74.377639770507756, -15.834583282470703 ], [ -74.377639770507756, -15.834860801696777 ], [ -74.377914428710881, -15.834860801696777 ], [ -74.377914428710881, -15.835416793823242 ], [ -74.378753662109375, -15.835416793823242 ], [ -74.378753662109375, -15.835139274597168 ], [ -74.3790283203125, -15.835139274597168 ], [ -74.3790283203125, -15.834583282470703 ], [ -74.379302978515625, -15.834583282470703 ], [ -74.379302978515625, -15.833748817443848 ], [ -74.379585266113281, -15.833748817443848 ], [ -74.379585266113281, -15.833471298217773 ], [ -74.379859924316406, -15.833473205566349 ], [ -74.379859924316406, -15.833194732665959 ], [ -74.380416870117074, -15.833194732665959 ], [ -74.380416870117074, -15.833473205566349 ], [ -74.380691528320256, -15.833471298217773 ], [ -74.380691528320256, -15.833748817443848 ], [ -74.380973815917912, -15.833748817443848 ], [ -74.380973815917912, -15.834027290344238 ], [ -74.381248474121037, -15.834027290344238 ], [ -74.381248474121037, -15.834304809570312 ], [ -74.381530761718693, -15.834304809570312 ], [ -74.381530761718693, -15.834029197692814 ], [ -74.382637023925781, -15.834027290344238 ], [ -74.382637023925781, -15.833748817443848 ], [ -74.383193969726562, -15.833748817443848 ], [ -74.383193969726562, -15.833471298217773 ], [ -74.383468627929574, -15.833471298217773 ], [ -74.383468627929574, -15.832915306091309 ], [ -74.383750915527287, -15.832915306091309 ], [ -74.383750915527287, -15.831249237060547 ], [ -74.384025573730412, -15.831251144409123 ], [ -74.384025573730412, -15.830972671508675 ], [ -74.384307861328068, -15.830970764160156 ], [ -74.384307861328068, -15.830693244934082 ], [ -74.384582519531193, -15.830695152282658 ], [ -74.384582519531193, -15.830416679382267 ], [ -74.384864807128849, -15.830416679382267 ], [ -74.384864807128849, -15.830139160156193 ], [ -74.385139465332031, -15.830139160156193 ], [ -74.385139465332031, -15.829860687255803 ], [ -74.385971069335938, -15.829860687255803 ], [ -74.385971069335938, -15.829583168029728 ], [ -74.386253356933594, -15.829583168029728 ], [ -74.386253356933594, -15.829304695129338 ], [ -74.386528015136719, -15.829304695129338 ], [ -74.386528015136719, -15.82902717590332 ], [ -74.387641906738224, -15.82902717590332 ], [ -74.387641906738224, -15.829304695129338 ], [ -74.388191223144531, -15.829304695129338 ], [ -74.388191223144531, -15.829583168029728 ], [ -74.388473510742188, -15.829583168029728 ], [ -74.388473510742188, -15.829860687255803 ], [ -74.388748168945312, -15.829860687255803 ], [ -74.388748168945312, -15.830139160156193 ], [ -74.389305114746094, -15.830139160156193 ], [ -74.389305114746094, -15.830416679382267 ], [ -74.389579772949219, -15.830416679382267 ], [ -74.389579772949219, -15.830695152282658 ], [ -74.389862060546875, -15.830693244934082 ], [ -74.389862060546875, -15.830970764160156 ], [ -74.390419006347599, -15.830972671508675 ], [ -74.390419006347599, -15.831251144409123 ], [ -74.390693664550724, -15.831251144409123 ], [ -74.390693664550724, -15.830972671508675 ], [ -74.391250610351562, -15.830970764160156 ], [ -74.391250610351562, -15.830693244934082 ], [ -74.391525268554688, -15.830695152282658 ], [ -74.391525268554688, -15.829860687255803 ], [ -74.391807556152344, -15.829860687255803 ], [ -74.391807556152344, -15.829304695129338 ], [ -74.392082214355469, -15.829304695129338 ], [ -74.392082214355469, -15.82902717590332 ], [ -74.39263916015625, -15.82902717590332 ], [ -74.39263916015625, -15.829304695129338 ], [ -74.392913818359375, -15.829304695129338 ], [ -74.392913818359375, -15.829583168029728 ], [ -74.393470764160099, -15.829583168029728 ], [ -74.393470764160099, -15.829860687255803 ], [ -74.394584655761719, -15.829860687255803 ], [ -74.394584655761719, -15.830139160156193 ], [ -74.394859313964844, -15.830139160156193 ], [ -74.394859313964844, -15.830416679382267 ], [ -74.395973205566406, -15.830416679382267 ], [ -74.395973205566406, -15.830139160156193 ], [ -74.396247863769418, -15.830139160156193 ], [ -74.396247863769418, -15.82902717590332 ], [ -74.395973205566406, -15.829029083251953 ], [ -74.395973205566406, -15.828194618225098 ], [ -74.396247863769418, -15.828194618225098 ], [ -74.396247863769418, -15.827917098998967 ], [ -74.396804809570256, -15.827917098998967 ], [ -74.396804809570256, -15.827361106872502 ], [ -74.397087097167912, -15.827361106872502 ], [ -74.397087097167912, -15.827081680297852 ], [ -74.397361755371037, -15.827081680297852 ], [ -74.397361755371037, -15.826804161071664 ], [ -74.397636413574219, -15.826804161071664 ], [ -74.397636413574219, -15.826528549194336 ], [ -74.397918701171875, -15.826528549194336 ], [ -74.397918701171875, -15.826248168945256 ], [ -74.398193359375, -15.826251029968262 ], [ -74.398193359375, -15.825972557067871 ], [ -74.400138854980412, -15.825972557067871 ], [ -74.400138854980412, -15.825692176818791 ], [ -74.400695800781193, -15.825695037841797 ], [ -74.400695800781193, -15.823193550109806 ], [ -74.400970458984375, -15.823193550109806 ], [ -74.400970458984375, -15.822916030883789 ], [ -74.401802062988281, -15.822916030883789 ], [ -74.401802062988281, -15.823193550109806 ], [ -74.402359008789062, -15.823193550109806 ], [ -74.402359008789062, -15.823472023010254 ], [ -74.403190612792912, -15.823472023010254 ], [ -74.403198242187443, -15.823193550109806 ], [ -74.403747558593693, -15.823193550109806 ], [ -74.403747558593693, -15.822916030883789 ], [ -74.404304504394531, -15.822916030883789 ], [ -74.404304504394531, -15.822637557983398 ], [ -74.405136108398438, -15.822637557983398 ], [ -74.405136108398438, -15.822360038757324 ], [ -74.405693054199219, -15.822360038757324 ], [ -74.405693054199219, -15.822084426879826 ], [ -74.405975341796761, -15.822084426879826 ], [ -74.405975341796761, -15.821804046630859 ], [ -74.40625, -15.821805953979435 ], [ -74.40625, -15.821528434753361 ], [ -74.406524658203068, -15.821528434753361 ], [ -74.406524658203068, -15.821248054504395 ], [ -74.407081604003906, -15.821249961852971 ], [ -74.407081604003906, -15.820972442626896 ], [ -74.407363891601562, -15.820972442626896 ], [ -74.407363891601562, -15.820693969726506 ], [ -74.407913208007812, -15.820693969726506 ], [ -74.407913208007812, -15.820416450500488 ], [ -74.408195495605469, -15.820416450500488 ], [ -74.408195495605469, -15.819862365722543 ], [ -74.408470153808594, -15.819862365722543 ], [ -74.408470153808594, -15.819306373596135 ], [ -74.40875244140625, -15.819306373596135 ], [ -74.40875244140625, -15.81875038146967 ], [ -74.409301757812443, -15.81875038146967 ], [ -74.409301757812443, -15.818471908569279 ], [ -74.409858703613224, -15.818471908569279 ], [ -74.409858703613224, -15.818194389343205 ], [ -74.410415649414062, -15.818194389343205 ], [ -74.410415649414062, -15.81764030456543 ], [ -74.410697937011719, -15.81763839721674 ], [ -74.410697937011719, -15.817084312438965 ], [ -74.410972595214844, -15.817084312438965 ], [ -74.410972595214844, -15.816805839538574 ], [ -74.411247253417969, -15.816805839538574 ], [ -74.411247253417969, -15.816528320312386 ], [ -74.411529541015625, -15.816528320312386 ], [ -74.411529541015625, -15.816249847412109 ], [ -74.41180419921875, -15.816249847412109 ], [ -74.41180419921875, -15.815972328185978 ], [ -74.412635803222599, -15.815972328185978 ], [ -74.412635803222599, -15.815695762634277 ], [ -74.412918090820256, -15.815695762634277 ], [ -74.412918090820256, -15.815416336059513 ], [ -74.413192749023381, -15.815416336059513 ], [ -74.413192749023381, -15.815139770507812 ], [ -74.413475036621037, -15.815139770507812 ], [ -74.413475036621037, -15.814862251281738 ], [ -74.413749694824219, -15.814862251281738 ], [ -74.413749694824219, -15.814583778381348 ], [ -74.415412902831974, -15.814583778381348 ], [ -74.415412902831974, -15.814306259155273 ], [ -74.416526794433537, -15.814306259155273 ], [ -74.416526794433537, -15.814027786254883 ], [ -74.4173583984375, -15.814027786254883 ], [ -74.4173583984375, -15.813750267028809 ], [ -74.419029235839787, -15.813750267028809 ], [ -74.419029235839787, -15.813471794128418 ], [ -74.419586181640568, -15.813471794128418 ], [ -74.419586181640568, -15.813193321228027 ], [ -74.420974731445312, -15.813193321228027 ], [ -74.420974731445312, -15.812917709350529 ], [ -74.421249389648438, -15.812917709350529 ], [ -74.421249389648438, -15.812637329101562 ], [ -74.421524047851562, -15.812640190124512 ], [ -74.421524047851562, -15.812361717224121 ], [ -74.421806335449105, -15.812361717224121 ], [ -74.421806335449105, -15.812081336975098 ], [ -74.422080993652287, -15.812084197998047 ], [ -74.422080993652287, -15.811804771423283 ], [ -74.422920227050724, -15.811804771423283 ], [ -74.422920227050724, -15.811527252197266 ], [ -74.423194885253906, -15.811527252197266 ], [ -74.423194885253906, -15.810971260070801 ], [ -74.423469543457031, -15.810974121093693 ], [ -74.423469543457031, -15.809303283691406 ], [ -74.423194885253906, -15.809305191039982 ], [ -74.423194885253906, -15.809026718139592 ], [ -74.423469543457031, -15.809026718139592 ], [ -74.423469543457031, -15.808193206787053 ], [ -74.423751831054688, -15.808193206787053 ], [ -74.423751831054688, -15.807083129882699 ], [ -74.424026489257812, -15.807083129882699 ], [ -74.424026489257812, -15.806248664855843 ], [ -74.424308776855469, -15.806248664855843 ], [ -74.424308776855469, -15.805971145629826 ], [ -74.425140380859318, -15.805973052978516 ], [ -74.425140380859318, -15.805694580078125 ], [ -74.425697326660099, -15.805694580078125 ], [ -74.425697326660099, -15.805973052978516 ], [ -74.426246643066406, -15.805973052978516 ], [ -74.426246643066406, -15.805694580078125 ], [ -74.426803588867188, -15.805694580078125 ], [ -74.426803588867188, -15.806248664855843 ], [ -74.427360534667969, -15.806248664855843 ], [ -74.427360534667969, -15.806527137756291 ], [ -74.428192138671818, -15.806527137756291 ], [ -74.428192138671818, -15.806248664855843 ], [ -74.428474426269474, -15.806248664855843 ], [ -74.428474426269474, -15.805971145629826 ], [ -74.428749084472599, -15.805973052978516 ], [ -74.428749084472599, -15.805694580078125 ], [ -74.429031372070256, -15.805694580078125 ], [ -74.429031372070256, -15.805417060852051 ], [ -74.429306030273381, -15.805417060852051 ], [ -74.429306030273381, -15.80513858795166 ], [ -74.429580688476562, -15.80513858795166 ], [ -74.429580688476562, -15.804861068725586 ], [ -74.429862976074219, -15.804861068725586 ], [ -74.429862976074219, -15.804305076599121 ], [ -74.430137634277344, -15.804305076599121 ], [ -74.430137634277344, -15.80402660369873 ], [ -74.430694580078125, -15.80402660369873 ], [ -74.430694580078125, -15.803749084472543 ], [ -74.43096923828125, -15.803749084472543 ], [ -74.43096923828125, -15.803193092346135 ], [ -74.431251525878906, -15.803193092346135 ], [ -74.431251525878906, -15.802639007568359 ], [ -74.431526184081974, -15.802639007568359 ], [ -74.431526184081974, -15.802083015441895 ], [ -74.431808471679631, -15.802083015441895 ], [ -74.431808471679631, -15.801804542541504 ], [ -74.432640075683594, -15.801804542541504 ], [ -74.432640075683594, -15.801251411437988 ], [ -74.432914733886719, -15.801247596740723 ], [ -74.432914733886719, -15.800695419311523 ], [ -74.433197021484375, -15.800695419311523 ], [ -74.433197021484375, -15.800416946411133 ], [ -74.4334716796875, -15.800416946411133 ], [ -74.4334716796875, -15.800139427185059 ], [ -74.433746337890625, -15.800139427185059 ], [ -74.433746337890625, -15.799860954284668 ], [ -74.434860229492131, -15.799860954284668 ], [ -74.434860229492131, -15.799581527709904 ], [ -74.435142517089787, -15.799581527709904 ], [ -74.435142517089787, -15.79930400848383 ], [ -74.435691833496094, -15.79930400848383 ], [ -74.435691833496094, -15.798748016357422 ], [ -74.43597412109375, -15.798750877380314 ], [ -74.43597412109375, -15.79847335815424 ], [ -74.436805725097656, -15.79847335815424 ], [ -74.436805725097656, -15.798193931579476 ], [ -74.437080383300781, -15.798193931579476 ], [ -74.437080383300781, -15.797916412353459 ], [ -74.437362670898438, -15.797916412353459 ], [ -74.437362670898438, -15.797637939453068 ], [ -74.437637329101449, -15.797637939453068 ], [ -74.437637329101449, -15.797360420226994 ], [ -74.437919616699162, -15.797360420226994 ], [ -74.437919616699162, -15.797081947326603 ], [ -74.438194274902287, -15.797081947326603 ], [ -74.438194274902287, -15.796527862548828 ], [ -74.438468933105412, -15.796527862548828 ], [ -74.438468933105412, -15.796250343322754 ], [ -74.438751220703068, -15.796250343322754 ], [ -74.438751220703068, -15.795971870422363 ], [ -74.439308166503906, -15.795971870422363 ], [ -74.439308166503906, -15.795694351196289 ], [ -74.439582824707031, -15.795694351196289 ], [ -74.439582824707031, -15.795415878295898 ], [ -74.439857482910156, -15.795415878295898 ], [ -74.439857482910156, -15.795140266418457 ], [ -74.440414428710938, -15.795140266418457 ], [ -74.440414428710938, -15.794584274291992 ], [ -74.440696716308594, -15.794584274291992 ], [ -74.440696716308594, -15.794028282165527 ], [ -74.440414428710938, -15.794028282165527 ], [ -74.440414428710938, -15.792083740234318 ], [ -74.440696716308594, -15.792083740234318 ], [ -74.440696716308594, -15.791250228881836 ], [ -74.440971374511662, -15.791250228881836 ], [ -74.440971374511662, -15.790694236755371 ], [ -74.441253662109318, -15.790694236755371 ], [ -74.441253662109318, -15.790138244628906 ], [ -74.441528320312443, -15.790140151977482 ], [ -74.441528320312443, -15.787083625793343 ], [ -74.441802978515568, -15.787083625793343 ], [ -74.441802978515568, -15.786250114440861 ], [ -74.442085266113224, -15.786250114440861 ], [ -74.442085266113224, -15.78597354888916 ], [ -74.442359924316406, -15.78597354888916 ], [ -74.442359924316406, -15.78569316864008 ], [ -74.442642211914062, -15.78569316864008 ], [ -74.442642211914062, -15.785137176513615 ], [ -74.442916870117188, -15.785140037536621 ], [ -74.442916870117188, -15.78486156463623 ], [ -74.443191528320312, -15.78486156463623 ], [ -74.443191528320312, -15.78458118438715 ], [ -74.443473815917969, -15.78458309173584 ], [ -74.443473815917969, -15.784304618835449 ], [ -74.443748474121094, -15.784304618835449 ], [ -74.443748474121094, -15.784027099609375 ], [ -74.44403076171875, -15.784027099609375 ], [ -74.44403076171875, -15.78347110748291 ], [ -74.444305419921818, -15.78347110748291 ], [ -74.444305419921818, -15.783194541931096 ], [ -74.444580078124943, -15.783194541931096 ], [ -74.444580078124943, -15.782638549804631 ], [ -74.444862365722599, -15.782638549804631 ], [ -74.444862365722599, -15.782359123229867 ], [ -74.445137023925724, -15.782361030578613 ], [ -74.445137023925724, -15.778751373290959 ], [ -74.445419311523438, -15.778751373290959 ], [ -74.445419311523438, -15.778195381164494 ], [ -74.445693969726562, -15.778195381164494 ], [ -74.445693969726562, -15.777639389038029 ], [ -74.445968627929688, -15.777639389038029 ], [ -74.445968627929688, -15.777083396911564 ], [ -74.446250915527344, -15.777083396911564 ], [ -74.446250915527344, -15.776527404785156 ], [ -74.446525573730469, -15.776527404785156 ], [ -74.446525573730469, -15.775973320007211 ], [ -74.446807861328125, -15.775973320007211 ], [ -74.446807861328125, -15.775417327880803 ], [ -74.44708251953125, -15.775417327880803 ], [ -74.44708251953125, -15.775138854980355 ], [ -74.447364807128793, -15.775138854980355 ], [ -74.447364807128793, -15.774582862853947 ], [ -74.447639465331974, -15.774582862853947 ], [ -74.447639465331974, -15.774028778076172 ], [ -74.447914123535099, -15.774028778076172 ], [ -74.447914123535099, -15.773751258850098 ], [ -74.448471069335938, -15.773751258850098 ], [ -74.448471069335938, -15.773192405700627 ], [ -74.448753356933594, -15.773195266723633 ], [ -74.448753356933594, -15.772916793823242 ], [ -74.449028015136719, -15.772916793823242 ], [ -74.449028015136719, -15.772639274597168 ], [ -74.449859619140625, -15.772639274597168 ], [ -74.449859619140625, -15.772916793823242 ], [ -74.450973510742131, -15.772916793823242 ], [ -74.450973510742131, -15.772639274597168 ], [ -74.451248168945256, -15.772639274597168 ], [ -74.451248168945256, -15.772359848022461 ], [ -74.451530456542912, -15.772359848022461 ], [ -74.451530456542912, -15.772082328796387 ], [ -74.451805114746094, -15.772082328796387 ], [ -74.451805114746094, -15.771806716918945 ], [ -74.452079772949219, -15.771806716918945 ], [ -74.452079772949219, -15.77125072479248 ], [ -74.452362060546875, -15.77125072479248 ], [ -74.452362060546875, -15.770416259765625 ], [ -74.452079772949219, -15.770416259765625 ], [ -74.452079772949219, -15.770137786865234 ], [ -74.452362060546875, -15.770137786865234 ], [ -74.452362060546875, -15.769583702087289 ], [ -74.45263671875, -15.769583702087289 ], [ -74.45263671875, -15.769304275512695 ], [ -74.452919006347656, -15.769304275512695 ], [ -74.452919006347656, -15.769027709960881 ], [ -74.453193664550781, -15.769027709960881 ], [ -74.453193664550781, -15.768471717834416 ], [ -74.453475952148438, -15.768471717834416 ], [ -74.453475952148438, -15.767638206481877 ], [ -74.453750610351506, -15.767638206481877 ], [ -74.453811645507812, -15.767084121704102 ], [ -74.454025268554631, -15.767084121704102 ], [ -74.454025268554631, -15.766805648803711 ], [ -74.454307556152287, -15.766805648803711 ], [ -74.454307556152287, -15.766528129577523 ], [ -74.454582214355412, -15.766528129577523 ], [ -74.454582214355412, -15.766249656677246 ], [ -74.454864501953068, -15.766249656677246 ], [ -74.454864501953068, -15.765970230102539 ], [ -74.45513916015625, -15.765970230102539 ], [ -74.45513916015625, -15.76541614532465 ], [ -74.455413818359375, -15.76541614532465 ], [ -74.455413818359375, -15.764860153198185 ], [ -74.455696105957031, -15.764860153198185 ], [ -74.455696105957031, -15.762638092040959 ], [ -74.455413818359375, -15.762638092040959 ], [ -74.455413818359375, -15.762082099914494 ], [ -74.455696105957031, -15.762084007263184 ], [ -74.455696105957031, -15.761249542236328 ], [ -74.455970764160156, -15.761249542236328 ], [ -74.455970764160156, -15.760972023010254 ], [ -74.457916259765568, -15.760972023010254 ], [ -74.457916259765568, -15.761249542236328 ], [ -74.458747863769531, -15.761249542236328 ], [ -74.458747863769531, -15.760972023010254 ], [ -74.459030151367188, -15.760972023010254 ], [ -74.459030151367188, -15.760693550109863 ], [ -74.459304809570312, -15.760693550109863 ], [ -74.459304809570312, -15.760416030883789 ], [ -74.459587097167969, -15.760416030883789 ], [ -74.459587097167969, -15.759859085083008 ], [ -74.459861755371094, -15.759859085083008 ], [ -74.459861755371094, -15.759305953979492 ], [ -74.459587097167969, -15.759305953979492 ], [ -74.459587097167969, -15.759028434753418 ], [ -74.459304809570312, -15.759028434753418 ], [ -74.459304809570312, -15.758470535278263 ], [ -74.459587097167969, -15.758470535278263 ], [ -74.459587097167969, -15.757637023925781 ], [ -74.459861755371094, -15.757639884948674 ], [ -74.459861755371094, -15.757361412048283 ], [ -74.460136413574162, -15.757361412048283 ], [ -74.460136413574162, -15.756805419921818 ], [ -74.460418701171818, -15.756805419921818 ], [ -74.460418701171818, -15.756526947021428 ], [ -74.460693359374943, -15.756526947021428 ], [ -74.460693359374943, -15.756249427795353 ], [ -74.461250305175781, -15.756249427795353 ], [ -74.461250305175781, -15.755970954894963 ], [ -74.462364196777344, -15.755970954894963 ], [ -74.462364196777344, -15.755695343017578 ], [ -74.462638854980469, -15.755695343017578 ], [ -74.462638854980469, -15.753473281860352 ], [ -74.462364196777344, -15.753473281860352 ], [ -74.462364196777344, -15.752638816833496 ], [ -74.462081909179688, -15.752638816833496 ], [ -74.462081909179688, -15.752082824707031 ], [ -74.461807250976562, -15.752082824707031 ], [ -74.461807250976562, -15.751805305480957 ], [ -74.461250305175781, -15.751805305480957 ], [ -74.461250305175781, -15.751526832580566 ], [ -74.460975646972599, -15.751526832580566 ], [ -74.460975646972599, -15.750693321227971 ], [ -74.460693359374943, -15.750693321227971 ], [ -74.460693359374943, -15.750139236450195 ], [ -74.460975646972599, -15.750139236450195 ], [ -74.460975646972599, -15.749580383300668 ], [ -74.460693359374943, -15.74958324432373 ], [ -74.460693359374943, -15.748748779296875 ], [ -74.460418701171818, -15.748748779296875 ], [ -74.460418701171818, -15.748473167419377 ], [ -74.460693359374943, -15.748473167419377 ], [ -74.460693359374943, -15.748194694518986 ], [ -74.460418701171818, -15.748194694518986 ], [ -74.460418701171818, -15.74791431427002 ], [ -74.460136413574162, -15.74791431427002 ], [ -74.460136413574162, -15.744582176208439 ], [ -74.459861755371094, -15.744582176208439 ], [ -74.459861755371094, -15.743749618530273 ], [ -74.459587097167969, -15.743749618530273 ], [ -74.459587097167969, -15.740388870239258 ], [ -74.459587097167969, -15.740138053894043 ], [ -74.459747314453068, -15.740138053894043 ], [ -74.459861755371094, -15.740138053894043 ], [ -74.459861755371094, -15.739862442016545 ], [ -74.460693359374943, -15.739862442016545 ], [ -74.460693359374943, -15.740138053894043 ], [ -74.460975646972599, -15.740138053894043 ], [ -74.460975646972599, -15.740415573120117 ], [ -74.461524963378906, -15.740415573120117 ], [ -74.461524963378906, -15.740694046020508 ], [ -74.461807250976562, -15.740694046020508 ], [ -74.461807250976562, -15.740971565246582 ], [ -74.462081909179688, -15.740971565246582 ], [ -74.462081909179688, -15.741527557373047 ], [ -74.462364196777344, -15.741527557373047 ], [ -74.462364196777344, -15.741804122924691 ], [ -74.463470458984318, -15.741804122924691 ], [ -74.463470458984318, -15.740138053894043 ], [ -74.463195800781136, -15.740138053894043 ], [ -74.463195800781136, -15.738471984863281 ], [ -74.462913513183594, -15.738471984863281 ], [ -74.462913513183594, -15.737084388732853 ], [ -74.462638854980469, -15.737084388732853 ], [ -74.462638854980469, -15.73597240447998 ], [ -74.462364196777344, -15.73597240447998 ], [ -74.462364196777344, -15.735710144042969 ], [ -74.462364196777344, -15.735416412353516 ], [ -74.462638854980469, -15.735416412353516 ], [ -74.462638854980469, -15.735139846801758 ], [ -74.462364196777344, -15.735139846801758 ], [ -74.462364196777344, -15.733750343322697 ], [ -74.462638854980469, -15.733750343322697 ], [ -74.462638854980469, -15.732917785644531 ], [ -74.462364196777344, -15.732917785644531 ], [ -74.462364196777344, -15.731805801391602 ], [ -74.462516784667912, -15.731805801391602 ], [ -74.462638854980469, -15.731805801391602 ], [ -74.462638854980469, -15.730415344238281 ], [ -74.462509155273381, -15.730415344238281 ], [ -74.462364196777344, -15.730415344238281 ], [ -74.462364196777344, -15.730138778686467 ], [ -74.462486267089844, -15.730138778686467 ], [ -74.462638854980469, -15.730138778686467 ], [ -74.462638854980469, -15.729484558105469 ], [ -74.462638854980469, -15.729305267333984 ], [ -74.462753295898438, -15.729305267333984 ], [ -74.462913513183594, -15.729305267333984 ], [ -74.462913513183594, -15.729026794433594 ], [ -74.463195800781136, -15.729026794433594 ], [ -74.463195800781136, -15.728618621826172 ], [ -74.463195800781136, -15.728193283081055 ], [ -74.463470458984318, -15.728195190429631 ], [ -74.463470458984318, -15.72791671752924 ], [ -74.463195800781136, -15.72791671752924 ], [ -74.463195800781136, -15.727360725402775 ], [ -74.462913513183594, -15.727360725402775 ], [ -74.462913513183594, -15.727083206176701 ], [ -74.462638854980469, -15.727083206176701 ], [ -74.462638854980469, -15.725973129272347 ], [ -74.462364196777344, -15.725973129272347 ], [ -74.462364196777344, -15.72569465637207 ], [ -74.462638854980469, -15.72569465637207 ], [ -74.462638854980469, -15.725415229797363 ], [ -74.462913513183594, -15.725417137145939 ], [ -74.462913513183594, -15.725138664245492 ], [ -74.463470458984318, -15.725138664245492 ], [ -74.463470458984318, -15.724859237670898 ], [ -74.463752746581974, -15.724861145019474 ], [ -74.463752746581974, -15.724582672119084 ], [ -74.464027404785099, -15.724582672119084 ], [ -74.464027404785099, -15.724303245544434 ], [ -74.464302062988281, -15.72430515289301 ], [ -74.464302062988281, -15.724026679992619 ], [ -74.464584350585938, -15.724026679992619 ], [ -74.464584350585938, -15.723749160766545 ], [ -74.465141296386719, -15.723751068115234 ], [ -74.465141296386719, -15.723472595214844 ], [ -74.465415954589844, -15.723472595214844 ], [ -74.465415954589844, -15.723193168640137 ], [ -74.465690612792969, -15.72319507598877 ], [ -74.4656982421875, -15.722916603088379 ], [ -74.465972900390625, -15.722916603088379 ], [ -74.465972900390625, -15.722639083862191 ], [ -74.466247558593636, -15.722639083862191 ], [ -74.466247558593636, -15.722360610961914 ], [ -74.466804504394474, -15.722360610961914 ], [ -74.466804504394474, -15.722083091735783 ], [ -74.467086791992131, -15.722083091735783 ], [ -74.467086791992131, -15.721804618835336 ], [ -74.467361450195256, -15.721804618835336 ], [ -74.467361450195256, -15.721527099609318 ], [ -74.467918395996094, -15.721529006958008 ], [ -74.467918395996094, -15.721248626708928 ], [ -74.468475341796875, -15.721248626708928 ], [ -74.468475341796875, -15.720971107482853 ], [ -74.469024658203125, -15.720973014831543 ], [ -74.469024658203125, -15.720694541931152 ], [ -74.469581604003849, -15.720694541931152 ], [ -74.469581604003849, -15.720417022705078 ], [ -74.470138549804631, -15.720417022705078 ], [ -74.470138549804631, -15.720138549804688 ], [ -74.470695495605412, -15.720138549804688 ], [ -74.470695495605412, -15.719861030578613 ], [ -74.470970153808594, -15.719861030578613 ], [ -74.470970153808594, -15.719582557678223 ], [ -74.471527099609375, -15.719582557678223 ], [ -74.471527099609375, -15.719304084777832 ], [ -74.472084045410156, -15.719306945800781 ], [ -74.472084045410156, -15.719025611877441 ], [ -74.472640991210938, -15.719025611877441 ], [ -74.472640991210938, -15.718748092651367 ], [ -74.473197937011662, -15.718750953674316 ], [ -74.473197937011662, -15.718473434448242 ], [ -74.473747253417912, -15.718473434448242 ], [ -74.473747253417912, -15.718192100524902 ], [ -74.47430419921875, -15.718194961547852 ], [ -74.47430419921875, -15.717915534973088 ], [ -74.474861145019531, -15.717915534973088 ], [ -74.474861145019531, -15.71763801574707 ], [ -74.475418090820312, -15.71763801574707 ], [ -74.475418090820312, -15.717359542846623 ], [ -74.47597503662098, -15.717359542846623 ], [ -74.47597503662098, -15.717082023620605 ], [ -74.476524353027287, -15.717082023620605 ], [ -74.476524353027287, -15.716807365417424 ], [ -74.477081298828125, -15.716807365417424 ], [ -74.477081298828125, -15.716526031494141 ], [ -74.477638244628906, -15.716527938842717 ], [ -74.477638244628906, -15.716250419616642 ], [ -74.478195190429688, -15.716250419616642 ], [ -74.478195190429688, -15.715970039367676 ], [ -74.47902679443348, -15.715971946716252 ], [ -74.47902679443348, -15.715694427490178 ], [ -74.479583740234318, -15.715694427490178 ], [ -74.479583740234318, -15.715415954589787 ], [ -74.480140686035099, -15.715415954589787 ], [ -74.480140686035099, -15.715138435363713 ], [ -74.480697631835938, -15.715138435363713 ], [ -74.480697631835938, -15.714859962463322 ], [ -74.481246948242188, -15.714859962463322 ], [ -74.481246948242188, -15.714584350585938 ], [ -74.481803894042969, -15.714584350585938 ], [ -74.481803894042969, -15.714305877685547 ], [ -74.482360839843693, -15.714305877685547 ], [ -74.482360839843693, -15.714028358459359 ], [ -74.483192443847599, -15.714028358459359 ], [ -74.483192443847599, -15.713749885559082 ], [ -74.483749389648438, -15.713749885559082 ], [ -74.483749389648438, -15.713472366332951 ], [ -74.484580993652344, -15.713472366332951 ], [ -74.484580993652344, -15.713193893432504 ], [ -74.485137939453125, -15.713193893432504 ], [ -74.485137939453125, -15.712916374206486 ], [ -74.485969543456974, -15.712916374206486 ], [ -74.485969543456974, -15.712637901306096 ], [ -74.486808776855469, -15.712637901306096 ], [ -74.486808776855469, -15.712362289428711 ], [ -74.487358093261719, -15.712362289428711 ], [ -74.487358093261719, -15.712081909179631 ], [ -74.488197326660156, -15.712081909179631 ], [ -74.488197326660156, -15.711806297302246 ], [ -74.488746643066349, -15.711806297302246 ], [ -74.488746643066349, -15.711527824401855 ], [ -74.489585876464787, -15.711527824401855 ], [ -74.489585876464787, -15.711250305175781 ], [ -74.490135192871094, -15.711250305175781 ], [ -74.490135192871094, -15.710971832275391 ], [ -74.490974426269531, -15.710971832275391 ], [ -74.490974426269531, -15.710694313049203 ], [ -74.492080688476506, -15.710694313049203 ], [ -74.492080688476506, -15.710415840148926 ], [ -74.492919921874943, -15.710415840148926 ], [ -74.492919921874943, -15.710140228271484 ], [ -74.493751525878906, -15.710140228271484 ], [ -74.493751525878906, -15.709859848022347 ], [ -74.494857788085824, -15.709859848022347 ], [ -74.494857788085824, -15.70958423614502 ], [ -74.495697021484318, -15.70958423614502 ], [ -74.495697021484318, -15.709305763244629 ], [ -74.496803283691406, -15.709305763244629 ], [ -74.496803283691406, -15.709028244018555 ], [ -74.497917175292969, -15.709028244018555 ], [ -74.497917175292969, -15.708749771118164 ], [ -74.498985290527344, -15.708749771118164 ], [ -74.499031066894474, -15.70847225189209 ], [ -74.499877929687443, -15.70847225189209 ], [ -74.500137329101562, -15.70847225189209 ], [ -74.500137329101562, -15.708333015441895 ], [ -74.500137329101562, -15.708193778991699 ], [ -74.500396728515625, -15.708193778991699 ], [ -74.501251220703125, -15.708193778991699 ], [ -74.501251220703125, -15.707916259765625 ], [ -74.501541137695312, -15.707916259765625 ], [ -74.502357482910099, -15.707916259765625 ], [ -74.502357482910099, -15.70763969421381 ], [ -74.503196716308594, -15.70763969421381 ], [ -74.503196716308594, -15.70736026763916 ], [ -74.504302978515625, -15.707362174987793 ], [ -74.504302978515625, -15.707083702087346 ], [ -74.505142211914006, -15.707083702087346 ], [ -74.505142211914006, -15.706803321838379 ], [ -74.506248474121094, -15.706806182861328 ], [ -74.506248474121094, -15.706527709960938 ], [ -74.507080078125, -15.706527709960938 ], [ -74.507080078125, -15.706250190734863 ], [ -74.508193969726506, -15.706250190734863 ], [ -74.508193969726506, -15.705973625182992 ], [ -74.509307861328125, -15.705971717834473 ], [ -74.509307861328125, -15.705691337585449 ], [ -74.510414123535156, -15.705693244934082 ], [ -74.510414123535156, -15.705417633056584 ], [ -74.511528015136662, -15.705417633056584 ], [ -74.511528015136662, -15.70514011383051 ], [ -74.512641906738281, -15.70514011383051 ], [ -74.512641906738281, -15.704861640930119 ], [ -74.513748168945312, -15.704861640930119 ], [ -74.513748168945312, -15.704584121704045 ], [ -74.514862060546818, -15.704584121704045 ], [ -74.514862060546818, -15.704304695129281 ], [ -74.515975952148438, -15.704304695129281 ], [ -74.515975952148438, -15.704027175903263 ], [ -74.517082214355469, -15.704027175903263 ], [ -74.517082214355469, -15.703748703002873 ], [ -74.518196105956974, -15.703748703002873 ], [ -74.518196105956974, -15.703471183776799 ], [ -74.519302368164062, -15.703471183776799 ], [ -74.519302368164062, -15.703195571899414 ], [ -74.520690917968693, -15.703195571899414 ], [ -74.520690917968693, -15.702917098999023 ], [ -74.521697998046875, -15.702917098999023 ], [ -74.522087097167969, -15.702917098999023 ], [ -74.522087097167969, -15.702638626098633 ], [ -74.522796630859318, -15.702638626098633 ], [ -74.523475646972656, -15.702638626098633 ], [ -74.523475646972656, -15.702359199523869 ], [ -74.524864196777287, -15.702361106872559 ], [ -74.524864196777287, -15.702082633972168 ], [ -74.525970458984375, -15.702082633972168 ], [ -74.525970458984375, -15.701811790466309 ], [ -74.527084350585881, -15.701805114746094 ], [ -74.527084350585881, -15.701526641845703 ], [ -74.528472900390625, -15.701526641845703 ], [ -74.528472900390625, -15.701249122619515 ], [ -74.529586791992188, -15.701249122619515 ], [ -74.529586791992188, -15.700972557067871 ], [ -74.530693054199162, -15.700972557067871 ], [ -74.530693054199162, -15.700693130493107 ], [ -74.532043457031193, -15.700693130493107 ], [ -74.532913208007812, -15.700693130493107 ], [ -74.532913208007812, -15.700972557067871 ], [ -74.533195495605355, -15.700972557067871 ], [ -74.533195495605355, -15.701249122619515 ], [ -74.534027099609318, -15.701249122619515 ], [ -74.534027099609318, -15.700972557067871 ], [ -74.535140991210938, -15.700972557067871 ], [ -74.535140991210938, -15.700693130493107 ], [ -74.535972595214844, -15.700693130493107 ], [ -74.535972595214844, -15.700416564941406 ], [ -74.537086486816349, -15.700416564941406 ], [ -74.537086486816349, -15.700139045715332 ], [ -74.538192749023438, -15.700139045715332 ], [ -74.538192749023438, -15.699860572814941 ], [ -74.538749694824219, -15.699860572814941 ], [ -74.538749694824219, -15.699583053588867 ], [ -74.539306640625, -15.699583053588867 ], [ -74.539306640625, -15.699304580688477 ], [ -74.539863586425724, -15.699304580688477 ], [ -74.539863586425724, -15.699027061462402 ], [ -74.540695190429631, -15.699027061462402 ], [ -74.540695190429631, -15.698748588562012 ], [ -74.541252136230469, -15.698748588562012 ], [ -74.541252136230469, -15.698471069335938 ], [ -74.54180908203125, -15.698472976684513 ], [ -74.54180908203125, -15.698195457458496 ], [ -74.542640686035156, -15.698195457458496 ], [ -74.542640686035156, -15.697916984558105 ], [ -74.543197631835881, -15.697916984558105 ], [ -74.543197631835881, -15.697639465332031 ], [ -74.543746948242131, -15.697639465332031 ], [ -74.543746948242131, -15.697360992431641 ], [ -74.544303894042969, -15.697360992431641 ], [ -74.544303894042969, -15.697083473205566 ], [ -74.545692443847656, -15.697083473205566 ], [ -74.545692443847656, -15.696805000305176 ], [ -74.546806335449162, -15.696805000305176 ], [ -74.546806335449162, -15.696526527404785 ], [ -74.548194885253906, -15.696526527404785 ], [ -74.548194885253906, -15.696249008178711 ], [ -74.548469543457031, -15.696250915527287 ], [ -74.548469543457031, -15.695973396301213 ], [ -74.549026489257699, -15.695973396301213 ], [ -74.549026489257699, -15.695693016052246 ], [ -74.549583435058537, -15.695694923400822 ], [ -74.549583435058537, -15.695417404174805 ], [ -74.5504150390625, -15.695417404174805 ], [ -74.5504150390625, -15.695138931274357 ], [ -74.550971984863281, -15.695138931274357 ], [ -74.550971984863281, -15.69486141204834 ], [ -74.551528930664062, -15.69486141204834 ], [ -74.551528930664062, -15.694582939147949 ], [ -74.552360534667912, -15.694582939147949 ], [ -74.552360534667912, -15.694305419921875 ], [ -74.552917480468693, -15.694305419921875 ], [ -74.552917480468693, -15.694026947021484 ], [ -74.553749084472656, -15.694028854370004 ], [ -74.553749084472656, -15.693751335143986 ], [ -74.554306030273438, -15.693751335143986 ], [ -74.554306030273438, -15.693470001220646 ], [ -74.554862976074219, -15.693472862243596 ], [ -74.554862976074219, -15.693195343017521 ], [ -74.555694580078068, -15.693195343017521 ], [ -74.555694580078068, -15.692916870117131 ], [ -74.556251525878849, -15.692916870117131 ], [ -74.556251525878849, -15.692639350891056 ], [ -74.557083129882812, -15.692639350891056 ], [ -74.557083129882812, -15.692360877990666 ], [ -74.557640075683594, -15.692360877990666 ], [ -74.557640075683594, -15.692082405090275 ], [ -74.558197021484375, -15.692082405090275 ], [ -74.558197021484375, -15.691806793212891 ], [ -74.559028625488224, -15.691806793212891 ], [ -74.559028625488224, -15.69152641296381 ], [ -74.559585571289006, -15.69152641296381 ], [ -74.559585571289006, -15.691250801086426 ], [ -74.560417175292969, -15.691250801086426 ], [ -74.560417175292969, -15.690973281860238 ], [ -74.561248779296875, -15.690973281860238 ], [ -74.561248779296875, -15.690693855285645 ], [ -74.561805725097543, -15.690693855285645 ], [ -74.561805725097543, -15.69041633605957 ], [ -74.562637329101506, -15.69041633605957 ], [ -74.562637329101506, -15.69013786315918 ], [ -74.563194274902344, -15.69013786315918 ], [ -74.563194274902344, -15.689860343933105 ], [ -74.56402587890625, -15.689860343933105 ], [ -74.56402587890625, -15.689584732055664 ], [ -74.564582824707031, -15.689584732055664 ], [ -74.564582824707031, -15.689304351806527 ], [ -74.565414428710881, -15.689304351806527 ], [ -74.565414428710881, -15.689027786254883 ], [ -74.566253662109318, -15.689027786254883 ], [ -74.566253662109318, -15.688750267028809 ], [ -74.566802978515625, -15.688750267028809 ], [ -74.566802978515625, -15.688471794128418 ], [ -74.567642211914062, -15.688471794128418 ], [ -74.567642211914062, -15.688194274902344 ], [ -74.568191528320256, -15.688194274902344 ], [ -74.568191528320256, -15.687915802001953 ], [ -74.569030761718693, -15.687915802001953 ], [ -74.569030761718693, -15.687638282775879 ], [ -74.569580078125, -15.687638282775879 ], [ -74.569580078125, -15.687359809875488 ], [ -74.570419311523438, -15.687359809875488 ], [ -74.570419311523438, -15.68708419799799 ], [ -74.571250915527344, -15.68708419799799 ], [ -74.571250915527344, -15.686805725097599 ], [ -74.571807861328068, -15.686805725097599 ], [ -74.571807861328068, -15.686528205871525 ], [ -74.572639465332031, -15.686528205871525 ], [ -74.572639465332031, -15.686249732971135 ], [ -74.573196411132812, -15.686249732971135 ], [ -74.573196411132812, -15.685970306396371 ], [ -74.573753356933594, -15.685972213745117 ], [ -74.573753356933594, -15.68569374084467 ], [ -74.574584960937386, -15.68569374084467 ], [ -74.574584960937386, -15.685416221618652 ], [ -74.575141906738224, -15.685416221618652 ], [ -74.575141906738224, -15.685137748718262 ], [ -74.575691223144531, -15.685137748718262 ], [ -74.575691223144531, -15.684860229492188 ], [ -74.576530456542969, -15.684862136840763 ], [ -74.576530456542969, -15.684583663940316 ], [ -74.577079772949219, -15.684583663940316 ], [ -74.577079772949219, -15.684304237365723 ], [ -74.577636718749886, -15.684306144714299 ], [ -74.577636718749886, -15.684027671813908 ], [ -74.578475952148381, -15.684027671813908 ], [ -74.578475952148381, -15.683748245239258 ], [ -74.579025268554688, -15.683750152587834 ], [ -74.579025268554688, -15.683471679687443 ], [ -74.579582214355469, -15.683471679687443 ], [ -74.579582214355469, -15.683194160461369 ], [ -74.580413818359375, -15.683194160461369 ], [ -74.580413818359375, -15.682915687560978 ], [ -74.580970764160099, -15.682915687560978 ], [ -74.580970764160099, -15.682638168334961 ], [ -74.581527709960881, -15.682640075683594 ], [ -74.581527709960881, -15.682359695434513 ], [ -74.582359313964844, -15.682359695434513 ], [ -74.582359313964844, -15.682082176208496 ], [ -74.582916259765625, -15.682084083557015 ], [ -74.582916259765625, -15.681805610656738 ], [ -74.583747863769531, -15.681805610656738 ], [ -74.583747863769531, -15.681528091430607 ], [ -74.584304809570256, -15.681528091430607 ], [ -74.584304809570256, -15.68124961853016 ], [ -74.584861755371037, -15.68124961853016 ], [ -74.584861755371037, -15.680972099304142 ], [ -74.585693359375, -15.680972099304142 ], [ -74.585693359375, -15.680693626403752 ], [ -74.586250305175781, -15.680693626403752 ], [ -74.586250305175781, -15.680416107177678 ], [ -74.587081909179688, -15.680418014526367 ], [ -74.587081909179688, -15.680137634277287 ], [ -74.587638854980412, -15.680137634277287 ], [ -74.587638854980412, -15.679859161376896 ], [ -74.588195800781193, -15.679862022399902 ], [ -74.588195800781193, -15.679583549499512 ], [ -74.589027404785156, -15.679583549499512 ], [ -74.589027404785156, -15.679306030273438 ], [ -74.589584350585938, -15.679306030273438 ], [ -74.589584350585938, -15.679027557373047 ], [ -74.59041595458973, -15.679027557373047 ], [ -74.59041595458973, -15.678750038146973 ], [ -74.590972900390568, -15.678750038146973 ], [ -74.590972900390568, -15.678470611572266 ], [ -74.591529846191349, -15.678470611572266 ], [ -74.591529846191349, -15.678193092346191 ], [ -74.592361450195312, -15.678193092346191 ], [ -74.592361450195312, -15.677918434143066 ], [ -74.592918395996094, -15.677918434143066 ], [ -74.592918395996094, -15.677637100219727 ], [ -74.59375, -15.677639961242676 ], [ -74.59375, -15.677362442016602 ], [ -74.594306945800724, -15.677362442016602 ], [ -74.594306945800724, -15.677081108093262 ], [ -74.595138549804688, -15.677083015441895 ], [ -74.595138549804688, -15.676804542541447 ], [ -74.595695495605469, -15.676804542541447 ], [ -74.595695495605469, -15.67652702331543 ], [ -74.596527099609375, -15.67652702331543 ], [ -74.596527099609375, -15.676252365112248 ], [ -74.597358703613224, -15.676248550415039 ], [ -74.597358703613224, -15.675971031188965 ], [ -74.597915649414006, -15.675971031188965 ], [ -74.597915649414006, -15.675695419311467 ], [ -74.598747253417969, -15.675695419311467 ], [ -74.598747253417969, -15.6754150390625 ], [ -74.59930419921875, -15.675416946411076 ], [ -74.59930419921875, -15.675139427185002 ], [ -74.600135803222599, -15.675139427185002 ], [ -74.600135803222599, -15.674859046936035 ], [ -74.600692749023381, -15.674860954284611 ], [ -74.600692749023381, -15.674583435058537 ], [ -74.601524353027344, -15.674583435058537 ], [ -74.601524353027344, -15.674304962158146 ], [ -74.602363586425781, -15.674304962158146 ], [ -74.602363586425781, -15.674027442932129 ], [ -74.602912902832031, -15.674027442932129 ], [ -74.602912902832031, -15.673748970031681 ], [ -74.603752136230412, -15.673748970031681 ], [ -74.603752136230412, -15.673473358154183 ], [ -74.604583740234375, -15.673473358154183 ], [ -74.604583740234375, -15.673194885253906 ], [ -74.605140686035156, -15.673194885253906 ], [ -74.605140686035156, -15.672917366027775 ], [ -74.605972290039062, -15.672917366027775 ], [ -74.605972290039062, -15.672638893127328 ], [ -74.606803894042912, -15.672638893127328 ], [ -74.606803894042912, -15.67236137390131 ], [ -74.607360839843693, -15.67236137390131 ], [ -74.607360839843693, -15.67208290100092 ], [ -74.608192443847656, -15.67208290100092 ], [ -74.608192443847656, -15.671805381774846 ], [ -74.609024047851562, -15.671805381774846 ], [ -74.609024047851562, -15.671526908874455 ], [ -74.609580993652287, -15.671526908874455 ], [ -74.609580993652287, -15.67125129699707 ], [ -74.610420227050724, -15.67125129699707 ], [ -74.610420227050724, -15.67097091674799 ], [ -74.611251831054688, -15.67097091674799 ], [ -74.611251831054688, -15.670695304870605 ], [ -74.611808776855469, -15.670695304870605 ], [ -74.611808776855469, -15.670416831970215 ], [ -74.612640380859375, -15.670416831970215 ], [ -74.612640380859375, -15.670139312744027 ], [ -74.613471984863224, -15.670139312744027 ], [ -74.613471984863224, -15.66986083984375 ], [ -74.614028930664062, -15.66986083984375 ], [ -74.614028930664062, -15.669583320617619 ], [ -74.614860534667969, -15.669583320617619 ], [ -74.614860534667969, -15.669304847717171 ], [ -74.615692138671875, -15.669304847717171 ], [ -74.615692138671875, -15.669027328491154 ], [ -74.616249084472599, -15.669027328491154 ], [ -74.616249084472599, -15.668750762939453 ], [ -74.617080688476562, -15.668750762939453 ], [ -74.617080688476562, -15.668473243713379 ], [ -74.617919921875, -15.668473243713379 ], [ -74.617919921875, -15.668194770812988 ], [ -74.61846923828125, -15.668194770812988 ], [ -74.61846923828125, -15.667917251586914 ], [ -74.619308471679631, -15.667917251586914 ], [ -74.619308471679631, -15.667638778686523 ], [ -74.620140075683537, -15.667638778686523 ], [ -74.620140075683537, -15.667361259460449 ], [ -74.620697021484375, -15.667361259460449 ], [ -74.620697021484375, -15.667082786560059 ], [ -74.621528625488281, -15.667082786560059 ], [ -74.621528625488281, -15.666802406310978 ], [ -74.622360229492131, -15.666805267333984 ], [ -74.622360229492131, -15.66652870178217 ], [ -74.623191833496037, -15.66652870178217 ], [ -74.623191833496037, -15.666248321533203 ], [ -74.624031066894531, -15.666251182556152 ], [ -74.624031066894531, -15.665972709655762 ], [ -74.624862670898438, -15.665972709655762 ], [ -74.624862670898438, -15.665695190429688 ], [ -74.625968933105412, -15.665695190429688 ], [ -74.625968933105412, -15.665416717529297 ], [ -74.626808166503906, -15.665416717529297 ], [ -74.626808166503906, -15.665136337280273 ], [ -74.627639770507812, -15.665139198303223 ], [ -74.627639770507812, -15.664859771728459 ], [ -74.628471374511719, -15.664859771728459 ], [ -74.628471374511719, -15.664582252502441 ], [ -74.629302978515568, -15.664582252502441 ], [ -74.629302978515568, -15.664306640624943 ], [ -74.630142211914062, -15.664306640624943 ], [ -74.630142211914062, -15.664029121398869 ], [ -74.630973815917969, -15.664029121398869 ], [ -74.630973815917969, -15.663750648498478 ], [ -74.631805419921761, -15.663750648498478 ], [ -74.631805419921761, -15.663472175598088 ], [ -74.632637023925724, -15.663472175598088 ], [ -74.632637023925724, -15.663193702697697 ], [ -74.633468627929688, -15.663193702697697 ], [ -74.633468627929688, -15.662916183471623 ], [ -74.634307861328125, -15.662916183471623 ], [ -74.634307861328125, -15.662637710571232 ], [ -74.634864807128906, -15.662637710571232 ], [ -74.634864807128906, -15.662360191345158 ], [ -74.635696411132756, -15.662360191345158 ], [ -74.635696411132756, -15.662083625793457 ], [ -74.636528015136719, -15.662083625793457 ], [ -74.636528015136719, -15.661804199218693 ], [ -74.637359619140625, -15.661804199218693 ], [ -74.637359619140625, -15.661527633666992 ], [ -74.642082214355412, -15.661527633666992 ], [ -74.642082214355412, -15.661804199218693 ], [ -74.645141601562443, -15.661804199218693 ], [ -74.645141601562443, -15.661527633666992 ], [ -74.645973205566406, -15.661527633666992 ], [ -74.645973205566406, -15.661248207092285 ], [ -74.646530151367188, -15.661250114440918 ], [ -74.646530151367188, -15.660971641540527 ], [ -74.646804809570312, -15.660971641540527 ], [ -74.646804809570312, -15.660694122314339 ], [ -74.647361755371094, -15.660694122314339 ], [ -74.647361755371094, -15.660415649414062 ], [ -74.647636413574105, -15.660415649414062 ], [ -74.647636413574105, -15.660138130187931 ], [ -74.648193359374943, -15.660138130187931 ], [ -74.648193359374943, -15.65986156463623 ], [ -74.648475646972599, -15.659859657287484 ], [ -74.648475646972599, -15.659582138061467 ], [ -74.649024963378906, -15.659582138061467 ], [ -74.649024963378906, -15.659305572509766 ], [ -74.649307250976562, -15.659305572509766 ], [ -74.649307250976562, -15.659028053283691 ], [ -74.649581909179688, -15.659028053283691 ], [ -74.649581909179688, -15.658749580383301 ], [ -74.650138854980469, -15.658749580383301 ], [ -74.650138854980469, -15.658472061157227 ], [ -74.650413513183594, -15.658472061157227 ], [ -74.650413513183594, -15.658193588256836 ], [ -74.650970458984318, -15.658193588256836 ], [ -74.650970458984318, -15.657916069030762 ], [ -74.651527404785099, -15.657916069030762 ], [ -74.651527404785099, -15.657637596130371 ], [ -74.652084350585881, -15.657637596130371 ], [ -74.652084350585881, -15.657360076904183 ], [ -74.652641296386719, -15.657355308532715 ], [ -74.652641296386719, -15.657084465026855 ], [ -74.653419494628849, -15.657084465026855 ], [ -74.653472900390625, -15.656805992126465 ], [ -74.654029846191406, -15.656805992126465 ], [ -74.654029846191406, -15.656528472900391 ], [ -74.654586791992131, -15.656528472900391 ], [ -74.654586791992131, -15.65625 ], [ -74.655418395996094, -15.65625 ], [ -74.655418395996094, -15.655971527099609 ], [ -74.655975341796875, -15.655971527099609 ], [ -74.655975341796875, -15.655694007873535 ], [ -74.656524658203125, -15.655694007873535 ], [ -74.656524658203125, -15.655415534973145 ], [ -74.657081604003906, -15.655415534973145 ], [ -74.657081604003906, -15.65513801574707 ], [ -74.657913208007756, -15.655139923095646 ], [ -74.657913208007756, -15.654862403869629 ], [ -74.658470153808594, -15.654862403869629 ], [ -74.658470153808594, -15.654582023620605 ], [ -74.659027099609375, -15.654583930969181 ], [ -74.659027099609375, -15.654306411743164 ], [ -74.659584045410156, -15.654306411743164 ], [ -74.659584045410156, -15.654027938842773 ], [ -74.660140991210938, -15.654027938842773 ], [ -74.660140991210938, -15.653750419616699 ], [ -74.660415649413949, -15.653750419616699 ], [ -74.660415649413949, -15.653471946716309 ], [ -74.660972595214787, -15.653471946716309 ], [ -74.660972595214787, -15.653194427490234 ], [ -74.661529541015568, -15.653194427490234 ], [ -74.661529541015568, -15.652915954589844 ], [ -74.66180419921875, -15.65291786193842 ], [ -74.66180419921875, -15.65263652801508 ], [ -74.662361145019531, -15.65263652801508 ], [ -74.662361145019531, -15.652445793151799 ], [ -74.662361145019531, -15.652361869811955 ], [ -74.662590026855412, -15.652361869811955 ], [ -74.662918090820312, -15.652361869811955 ], [ -74.662918090820312, -15.652238845825138 ], [ -74.662918090820312, -15.652084350585881 ], [ -74.663337707519474, -15.652084350585881 ], [ -74.663475036621094, -15.652084350585881 ], [ -74.663475036621094, -15.65180587768549 ], [ -74.664024353027287, -15.65180587768549 ], [ -74.664024353027287, -15.651528358459416 ], [ -74.664581298828068, -15.651528358459416 ], [ -74.664581298828068, -15.651248931884709 ], [ -74.665138244628906, -15.651248931884709 ], [ -74.665138244628906, -15.650971412658635 ], [ -74.665657043456974, -15.650971412658635 ], [ -74.665969848632812, -15.650971412658635 ], [ -74.665969848632812, -15.65080738067627 ], [ -74.665969848632812, -15.65069580078125 ], [ -74.666183471679688, -15.65069580078125 ], [ -74.666526794433594, -15.65069580078125 ], [ -74.666526794433594, -15.65041542053217 ], [ -74.666702270507756, -15.65041542053217 ], [ -74.667083740234318, -15.65041542053217 ], [ -74.667083740234318, -15.650139808654785 ], [ -74.667228698730469, -15.650139808654785 ], [ -74.667640686035099, -15.650139808654785 ], [ -74.667640686035099, -15.649861335754395 ], [ -74.667747497558537, -15.649861335754395 ], [ -74.668197631835938, -15.649861335754395 ], [ -74.668197631835938, -15.649582862854004 ], [ -74.668746948242188, -15.649582862854004 ], [ -74.668746948242188, -15.64930534362793 ], [ -74.669586181640625, -15.64930534362793 ], [ -74.669586181640625, -15.649026870727539 ], [ -74.670135498046818, -15.649026870727539 ], [ -74.670135498046818, -15.648749351501351 ], [ -74.670692443847599, -15.648749351501351 ], [ -74.670692443847599, -15.648470878601074 ], [ -74.671249389648438, -15.648470878601074 ], [ -74.671249389648438, -15.648311614990234 ], [ -74.671249389648438, -15.648195266723633 ], [ -74.671607971191406, -15.648195266723633 ], [ -74.671806335449219, -15.648195266723633 ], [ -74.671806335449219, -15.647916793823242 ], [ -74.67236328125, -15.647916793823242 ], [ -74.67236328125, -15.647639274597168 ], [ -74.672920227050781, -15.647639274597168 ], [ -74.672920227050781, -15.647360801696777 ], [ -74.673469543456974, -15.647360801696777 ], [ -74.673469543456974, -15.647083282470703 ], [ -74.674026489257756, -15.647083282470703 ], [ -74.674026489257756, -15.646804809570312 ], [ -74.674583435058594, -15.646804809570312 ], [ -74.674583435058594, -15.646529197692814 ], [ -74.675140380859375, -15.646527290344238 ], [ -74.675140380859375, -15.646248817443848 ], [ -74.675697326660156, -15.646248817443848 ], [ -74.675697326660156, -15.645971298217773 ], [ -74.676246643066293, -15.645973205566349 ], [ -74.676246643066293, -15.645694732665959 ], [ -74.676803588867131, -15.645694732665959 ], [ -74.676803588867131, -15.645415306091195 ], [ -74.677360534667912, -15.645415306091195 ], [ -74.677360534667912, -15.645694732665959 ], [ -74.677635192871094, -15.645694732665959 ], [ -74.677635192871094, -15.645973205566349 ], [ -74.67791748046875, -15.645971298217773 ], [ -74.67791748046875, -15.646527290344238 ], [ -74.678192138671875, -15.646527290344238 ], [ -74.678192138671875, -15.646804809570312 ], [ -74.679862976074162, -15.646804809570312 ], [ -74.679862976074162, -15.646529197692814 ], [ -74.680419921874943, -15.646527290344238 ], [ -74.680419921874943, -15.646248817443848 ], [ -74.680694580078068, -15.646248817443848 ], [ -74.680694580078068, -15.645971298217773 ], [ -74.68096923828125, -15.645973205566349 ], [ -74.68096923828125, -15.645694732665959 ], [ -74.681251525878906, -15.645694732665959 ], [ -74.681251525878906, -15.645415306091195 ], [ -74.681808471679688, -15.645417213439941 ], [ -74.681808471679688, -15.645138740539494 ], [ -74.682083129882812, -15.645138740539494 ], [ -74.682083129882812, -15.644861221313477 ], [ -74.681808471679688, -15.644861221313477 ], [ -74.681808471679688, -15.644305229187012 ], [ -74.681526184082031, -15.644305229187012 ], [ -74.681526184082031, -15.644026756286621 ], [ -74.681808471679688, -15.644026756286621 ], [ -74.681808471679688, -15.643751144409123 ], [ -74.681915283203125, -15.643751144409123 ], [ -74.682083129882812, -15.643751144409123 ], [ -74.682083129882812, -15.643621444702148 ], [ -74.682083129882812, -15.643472671508732 ], [ -74.682281494140625, -15.643472671508732 ], [ -74.682640075683594, -15.643470764160156 ], [ -74.682640075683594, -15.643197059631348 ], [ -74.683471679687443, -15.643195152282658 ], [ -74.683471679687443, -15.643021583557129 ], [ -74.683471679687443, -15.642916679382267 ], [ -74.684028625488281, -15.642916679382267 ], [ -74.684028625488281, -15.642639160156193 ], [ -74.684303283691406, -15.642639160156193 ], [ -74.684303283691406, -15.642916679382267 ], [ -74.684860229492188, -15.642916679382267 ], [ -74.684860229492188, -15.642639160156193 ], [ -74.685417175292969, -15.642639160156193 ], [ -74.685417175292969, -15.642360687255803 ], [ -74.685844421386662, -15.642360687255803 ], [ -74.685974121093636, -15.642360687255803 ], [ -74.685974121093636, -15.642639160156193 ], [ -74.686248779296818, -15.642639160156193 ], [ -74.686248779296818, -15.641804695129338 ], [ -74.686531066894474, -15.641804695129338 ], [ -74.686531066894474, -15.640694618224984 ], [ -74.686294555664062, -15.640694618224984 ], [ -74.686248779296818, -15.640417098998967 ], [ -74.686531066894474, -15.640417098998967 ], [ -74.686531066894474, -15.639582633972111 ], [ -74.687080383300781, -15.639582633972111 ], [ -74.687080383300781, -15.639025688171273 ], [ -74.687362670898438, -15.639025688171273 ], [ -74.687362670898438, -15.638472557067871 ], [ -74.687637329101562, -15.638472557067871 ], [ -74.687637329101562, -15.638192176818791 ], [ -74.687919616699219, -15.638195037841797 ], [ -74.687919616699219, -15.637916564941406 ], [ -74.688468933105469, -15.637916564941406 ], [ -74.688468933105469, -15.637638092041016 ], [ -74.689025878906136, -15.637638092041016 ], [ -74.689025878906136, -15.637359619140625 ], [ -74.689308166503849, -15.637359619140625 ], [ -74.689308166503849, -15.637082099914551 ], [ -74.689857482910099, -15.637082099914551 ], [ -74.689857482910099, -15.636807441711426 ], [ -74.690139770507756, -15.636807441711426 ], [ -74.690139770507756, -15.636526107788086 ], [ -74.690414428710938, -15.636528968811035 ], [ -74.690414428710938, -15.636249542236271 ], [ -74.690971374511719, -15.636249542236271 ], [ -74.690971374511719, -15.635970115661507 ], [ -74.691253662109375, -15.635972023010254 ], [ -74.691253662109375, -15.635693550109863 ], [ -74.691802978515625, -15.635693550109863 ], [ -74.691802978515625, -15.635416030883789 ], [ -74.692085266113281, -15.635416030883789 ], [ -74.692085266113281, -15.635137557983398 ], [ -74.692642211914006, -15.635137557983398 ], [ -74.692642211914006, -15.634860038757324 ], [ -74.692916870117131, -15.634860038757324 ], [ -74.692916870117131, -15.634584426879826 ], [ -74.693191528320256, -15.634584426879826 ], [ -74.693191528320256, -15.634304046630859 ], [ -74.693748474121094, -15.634305953979435 ], [ -74.693748474121094, -15.634028434753361 ], [ -74.69403076171875, -15.634028434753361 ], [ -74.69403076171875, -15.633748054504395 ], [ -74.694580078125, -15.633749961852971 ], [ -74.694580078125, -15.633472442626953 ], [ -74.694862365722656, -15.633472442626953 ], [ -74.694862365722656, -15.633193969726506 ], [ -74.695419311523438, -15.633193969726506 ], [ -74.695419311523438, -15.632916450500488 ], [ -74.695693969726506, -15.632916450500488 ], [ -74.695693969726506, -15.632637977600098 ], [ -74.695968627929631, -15.632637977600098 ], [ -74.695968627929631, -15.632362365722599 ], [ -74.696525573730412, -15.632362365722599 ], [ -74.696525573730412, -15.632081985473633 ], [ -74.696807861328125, -15.632081985473633 ], [ -74.696807861328125, -15.631806373596135 ], [ -74.697364807128906, -15.631806373596135 ], [ -74.697364807128906, -15.631525993347168 ], [ -74.697639465332031, -15.631527900695744 ], [ -74.697639465332031, -15.63125038146967 ], [ -74.698196411132812, -15.63125038146967 ], [ -74.698196411132812, -15.630971908569279 ], [ -74.69875335693348, -15.630971908569279 ], [ -74.69875335693348, -15.630694389343205 ], [ -74.699302673339787, -15.630694389343205 ], [ -74.699302673339787, -15.630415916442814 ], [ -74.699859619140625, -15.630415916442814 ], [ -74.699859619140625, -15.63014030456543 ], [ -74.700416564941406, -15.630138397216797 ], [ -74.700416564941406, -15.629859924316349 ], [ -74.700691223144531, -15.629859924316349 ], [ -74.700691223144531, -15.629584312438851 ], [ -74.701248168945312, -15.629584312438851 ], [ -74.701248168945312, -15.629305839538574 ], [ -74.70180511474598, -15.629305839538574 ], [ -74.70180511474598, -15.629028320312443 ], [ -74.702362060546818, -15.629028320312443 ], [ -74.702362060546818, -15.628749847411996 ], [ -74.702636718749943, -15.628749847411996 ], [ -74.702636718749943, -15.628472328185978 ], [ -74.703193664550781, -15.628472328185978 ], [ -74.703193664550781, -15.628193855285588 ], [ -74.703750610351562, -15.628193855285588 ], [ -74.703750610351562, -15.627916336059513 ], [ -74.704307556152344, -15.627916336059513 ], [ -74.704307556152344, -15.627639770507812 ], [ -74.704864501953125, -15.627639770507812 ], [ -74.704864501953125, -15.627362251281738 ], [ -74.705413818359318, -15.627362251281738 ], [ -74.705413818359318, -15.627083778381348 ], [ -74.705696105956974, -15.627083778381348 ], [ -74.705696105956974, -15.626806259155273 ], [ -74.706253051757756, -15.626806259155273 ], [ -74.706253051757756, -15.626527786254883 ], [ -74.706802368164062, -15.626527786254883 ], [ -74.706802368164062, -15.626250267028809 ], [ -74.707359313964844, -15.626250267028809 ], [ -74.707359313964844, -15.625971794128418 ], [ -74.707916259765625, -15.625971794128418 ], [ -74.707916259765625, -15.62569427490223 ], [ -74.708473205566349, -15.62569427490223 ], [ -74.708473205566349, -15.625417709350586 ], [ -74.709030151367131, -15.625417709350586 ], [ -74.709030151367131, -15.625137329101562 ], [ -74.709587097167969, -15.625140190124512 ], [ -74.709587097167969, -15.624861717224121 ], [ -74.710136413574219, -15.624861717224121 ], [ -74.710136413574219, -15.624581336975098 ], [ -74.710693359375, -15.624584197998047 ], [ -74.710693359375, -15.624305725097656 ], [ -74.710975646972656, -15.624305725097656 ], [ -74.710975646972656, -15.624027252197266 ], [ -74.711524963378849, -15.624027252197266 ], [ -74.711524963378849, -15.623748779296875 ], [ -74.711807250976506, -15.623748779296875 ], [ -74.711807250976506, -15.623471260070801 ], [ -74.712364196777287, -15.623471260070801 ], [ -74.712364196777287, -15.623195648193303 ], [ -74.712638854980469, -15.623195648193303 ], [ -74.712638854980469, -15.622915267944336 ], [ -74.71319580078125, -15.622915267944336 ], [ -74.71319580078125, -15.622638702392521 ], [ -74.713470458984375, -15.622638702392521 ], [ -74.713470458984375, -15.622359275817871 ], [ -74.714027404785156, -15.622361183166447 ], [ -74.714027404785156, -15.622082710266056 ], [ -74.714584350585824, -15.622082710266056 ], [ -74.714584350585824, -15.621803283691406 ], [ -74.714859008789006, -15.621805191039982 ], [ -74.714859008789006, -15.621526718139592 ], [ -74.715141296386662, -15.621526718139592 ], [ -74.715141296386662, -15.621249198913517 ], [ -74.715690612792969, -15.621249198913517 ], [ -74.715698242187443, -15.620972633361816 ], [ -74.715972900390625, -15.620972633361816 ], [ -74.715972900390625, -15.620693206787109 ], [ -74.716529846191406, -15.620693206787109 ], [ -74.716529846191406, -15.620416641235352 ], [ -74.716804504394531, -15.620416641235352 ], [ -74.716804504394531, -15.620139122009164 ], [ -74.717361450195312, -15.620139122009164 ], [ -74.717361450195312, -15.619860649108887 ], [ -74.717636108398324, -15.619860649108887 ], [ -74.717636108398324, -15.619583129882756 ], [ -74.718193054199162, -15.619583129882756 ], [ -74.718193054199162, -15.619304656982308 ], [ -74.718475341796818, -15.619304656982308 ], [ -74.718475341796818, -15.619027137756291 ], [ -74.719024658203125, -15.619027137756291 ], [ -74.719024658203125, -15.6187486648559 ], [ -74.720138549804688, -15.6187486648559 ], [ -74.720138549804688, -15.618471145629826 ], [ -74.720413208007812, -15.618471145629826 ], [ -74.720413208007812, -15.617917060852051 ], [ -74.720970153808537, -15.617917060852051 ], [ -74.720970153808537, -15.61763858795166 ], [ -74.721527099609318, -15.61763858795166 ], [ -74.721527099609318, -15.617361068725586 ], [ -74.721801757812443, -15.617361068725586 ], [ -74.721801757812443, -15.617082595825195 ], [ -74.722358703613281, -15.617082595825195 ], [ -74.722358703613281, -15.616805076599007 ], [ -74.722640991210938, -15.616805076599007 ], [ -74.722640991210938, -15.61652660369873 ], [ -74.723197937011719, -15.61652660369873 ], [ -74.723197937011719, -15.616249084472599 ], [ -74.723472595214844, -15.616250991821289 ], [ -74.723472595214844, -15.615973472595215 ], [ -74.724304199218693, -15.615973472595215 ], [ -74.724304199218693, -15.615693092346135 ], [ -74.724586486816349, -15.615694999694824 ], [ -74.724586486816349, -15.615416526794434 ], [ -74.725975036621094, -15.615416526794434 ], [ -74.725975036621094, -15.615139007568359 ], [ -74.726249694824219, -15.615139007568359 ], [ -74.726249694824219, -15.614860534667969 ], [ -74.726524353027344, -15.614860534667969 ], [ -74.726524353027344, -15.614583015441895 ], [ -74.727363586425668, -15.614583015441895 ], [ -74.727363586425668, -15.614304542541504 ], [ -74.727912902831974, -15.614304542541504 ], [ -74.727912902831974, -15.613751411437988 ], [ -74.728752136230469, -15.613748550415039 ], [ -74.728752136230469, -15.613471031188965 ], [ -74.729026794433594, -15.613472938537598 ], [ -74.729026794433594, -15.613195419311523 ], [ -74.72930908203125, -15.613195419311523 ], [ -74.72930908203125, -15.612916946411133 ], [ -74.7298583984375, -15.612916946411133 ], [ -74.7298583984375, -15.612639427185059 ], [ -74.730697631835881, -15.612639427185059 ], [ -74.730697631835881, -15.612360954284668 ], [ -74.730972290039006, -15.612360954284668 ], [ -74.730972290039006, -15.612083435058594 ], [ -74.732086181640625, -15.612083435058594 ], [ -74.732086181640625, -15.611525535583439 ], [ -74.732635498046875, -15.611525535583439 ], [ -74.732635498046875, -15.611248016357422 ], [ -74.733192443847656, -15.611250877380314 ], [ -74.733192443847656, -15.61097335815424 ], [ -74.733749389648381, -15.61097335815424 ], [ -74.733749389648381, -15.610694885253849 ], [ -74.734024047851506, -15.610694885253849 ], [ -74.734024047851506, -15.610416412353459 ], [ -74.734580993652287, -15.610416412353459 ], [ -74.734580993652287, -15.610137939453068 ], [ -74.735137939453125, -15.610137939453068 ], [ -74.735137939453125, -15.609860420226994 ], [ -74.735694885253906, -15.609860420226994 ], [ -74.735694885253906, -15.609581947326603 ], [ -74.736251831054688, -15.609581947326603 ], [ -74.736251831054688, -15.609304428100529 ], [ -74.736808776855469, -15.609304428100529 ], [ -74.736808776855469, -15.609027862548828 ], [ -74.737358093261662, -15.609027862548828 ], [ -74.737358093261662, -15.608750343322754 ], [ -74.737915039062443, -15.608750343322754 ], [ -74.737915039062443, -15.608471870422363 ], [ -74.738471984863281, -15.608471870422363 ], [ -74.738471984863281, -15.608194351196175 ], [ -74.739028930664062, -15.608194351196175 ], [ -74.739028930664062, -15.607915878295898 ], [ -74.739585876464844, -15.607915878295898 ], [ -74.739585876464844, -15.607638359069767 ], [ -74.740135192871037, -15.607638359069767 ], [ -74.740135192871037, -15.60735988616932 ], [ -74.740417480468693, -15.60735988616932 ], [ -74.740417480468693, -15.607084274291992 ], [ -74.741249084472656, -15.607084274291992 ], [ -74.741249084472656, -15.606805801391602 ], [ -74.741531372070312, -15.606805801391602 ], [ -74.741531372070312, -15.606528282165527 ], [ -74.742080688476562, -15.606528282165527 ], [ -74.742080688476562, -15.606249809265137 ], [ -74.742637634277344, -15.606249809265137 ], [ -74.742637634277344, -15.605972290039062 ], [ -74.743194580078011, -15.605972290039062 ], [ -74.743194580078011, -15.605693817138672 ], [ -74.743751525878849, -15.605693817138672 ], [ -74.743751525878849, -15.605416297912598 ], [ -74.744308471679631, -15.605416297912598 ], [ -74.744308471679631, -15.605137825012207 ], [ -74.745697021484375, -15.605137825012207 ], [ -74.745697021484375, -15.604860305786019 ], [ -74.746246337890511, -15.604862213134766 ], [ -74.746246337890511, -15.604583740234318 ], [ -74.746803283691349, -15.604583740234318 ], [ -74.746803283691349, -15.604306221008301 ], [ -74.747360229492131, -15.604306221008301 ], [ -74.747360229492131, -15.60402774810791 ], [ -74.747642517089787, -15.60402774810791 ], [ -74.747642517089787, -15.603471755981445 ], [ -74.747917175292969, -15.603471755981445 ], [ -74.747917175292969, -15.603194236755371 ], [ -74.74847412109375, -15.603194236755371 ], [ -74.74847412109375, -15.60291576385498 ], [ -74.749031066894531, -15.60291576385498 ], [ -74.749031066894531, -15.602638244628906 ], [ -74.749580383300724, -15.602640151977482 ], [ -74.749580383300724, -15.602359771728516 ], [ -74.750137329101506, -15.602359771728516 ], [ -74.750137329101506, -15.602082252502441 ], [ -74.750694274902287, -15.602084159851017 ], [ -74.750694274902287, -15.601805686950627 ], [ -74.751251220703125, -15.601805686950627 ], [ -74.751251220703125, -15.601528167724609 ], [ -74.751808166503906, -15.601528167724609 ], [ -74.751808166503906, -15.601249694824162 ], [ -74.752357482910156, -15.601249694824162 ], [ -74.752357482910156, -15.600972175598145 ], [ -74.752914428710881, -15.600972175598145 ], [ -74.752914428710881, -15.600693702697754 ], [ -74.753471374511662, -15.600693702697754 ], [ -74.753471374511662, -15.60041618347168 ], [ -74.7540283203125, -15.60041618347168 ], [ -74.7540283203125, -15.600137710571289 ], [ -74.754585266113281, -15.600137710571289 ], [ -74.754585266113281, -15.599860191345215 ], [ -74.755142211914062, -15.599862098693791 ], [ -74.755142211914062, -15.5995836257934 ], [ -74.755691528320312, -15.5995836257934 ], [ -74.755691528320312, -15.599303245544434 ], [ -74.756248474121037, -15.599306106567326 ], [ -74.756248474121037, -15.599027633666935 ], [ -74.756805419921818, -15.599027633666935 ], [ -74.756805419921818, -15.598750114440861 ], [ -74.757362365722656, -15.598750114440861 ], [ -74.757362365722656, -15.598471641540471 ], [ -74.757919311523438, -15.598471641540471 ], [ -74.757919311523438, -15.59819316864008 ], [ -74.758468627929688, -15.59819316864008 ], [ -74.758468627929688, -15.597917556762695 ], [ -74.760139465331974, -15.597917556762695 ], [ -74.760139465331974, -15.597637176513615 ], [ -74.760414123535156, -15.597637176513615 ], [ -74.760414123535156, -15.59708118438715 ], [ -74.760696411132812, -15.597084045410043 ], [ -74.760696411132812, -15.596804618835449 ], [ -74.761253356933594, -15.596804618835449 ], [ -74.761253356933594, -15.596527099609375 ], [ -74.761802673339844, -15.596527099609375 ], [ -74.761802673339844, -15.596248626708984 ], [ -74.762359619140568, -15.596248626708984 ], [ -74.762359619140568, -15.59597110748291 ], [ -74.762916564941349, -15.59597110748291 ], [ -74.762916564941349, -15.595696449279785 ], [ -74.763473510742131, -15.595696449279785 ], [ -74.763473510742131, -15.595415115356332 ], [ -74.764030456542969, -15.595417022705078 ], [ -74.764030456542969, -15.595138549804688 ], [ -74.764579772949219, -15.595138549804688 ], [ -74.764579772949219, -15.594859123229924 ], [ -74.765419006347656, -15.594861030578613 ], [ -74.765419006347656, -15.594582557678223 ], [ -74.765693664550724, -15.594582557678223 ], [ -74.765693664550724, -15.594305038452148 ], [ -74.766525268554631, -15.594305038452148 ], [ -74.766525268554631, -15.594026565551758 ], [ -74.767082214355469, -15.594026565551758 ], [ -74.767082214355469, -15.593749046325684 ], [ -74.76763916015625, -15.593749046325684 ], [ -74.76763916015625, -15.593473434448185 ], [ -74.768196105957031, -15.593473434448185 ], [ -74.768196105957031, -15.593193054199219 ], [ -74.768753051757699, -15.593193054199219 ], [ -74.768753051757699, -15.592917442321777 ], [ -74.769584655761662, -15.592917442321777 ], [ -74.769584655761662, -15.592637062072754 ], [ -74.7701416015625, -15.59263896942133 ], [ -74.7701416015625, -15.592361450195312 ], [ -74.77069091796875, -15.592361450195312 ], [ -74.77069091796875, -15.592082977294922 ], [ -74.771247863769531, -15.592082977294922 ], [ -74.771247863769531, -15.591805458068848 ], [ -74.771804809570199, -15.591805458068848 ], [ -74.771804809570199, -15.591526985168457 ], [ -74.772361755371037, -15.591526985168457 ], [ -74.772361755371037, -15.591251373290959 ], [ -74.772918701171818, -15.591251373290959 ], [ -74.772918701171818, -15.590970993041992 ], [ -74.773475646972656, -15.590970993041992 ], [ -74.773475646972656, -15.590695381164494 ], [ -74.774024963378906, -15.590695381164494 ], [ -74.774024963378906, -15.590416908264103 ], [ -74.774581909179688, -15.590416908264103 ], [ -74.774581909179688, -15.590139389038029 ], [ -74.775138854980412, -15.590139389038029 ], [ -74.775138854980412, -15.589860916137638 ], [ -74.775695800781193, -15.589860916137638 ], [ -74.775695800781193, -15.589583396911621 ], [ -74.776527404785156, -15.589583396911621 ], [ -74.776527404785156, -15.589304924011174 ], [ -74.777084350585938, -15.589304924011174 ], [ -74.777084350585938, -15.589027404785156 ], [ -74.777641296386719, -15.589027404785156 ], [ -74.777641296386719, -15.588750839233398 ], [ -74.778190612792912, -15.588750839233398 ], [ -74.7781982421875, -15.588473320007267 ], [ -74.778747558593693, -15.588473320007267 ], [ -74.778747558593693, -15.58819484710682 ], [ -74.779304504394474, -15.58819484710682 ], [ -74.779304504394474, -15.587917327880803 ], [ -74.780418395996094, -15.587917327880803 ], [ -74.780418395996094, -15.587638854980412 ], [ -74.780975341796875, -15.587638854980412 ], [ -74.780975341796875, -15.587361335754338 ], [ -74.78125, -15.587361335754338 ], [ -74.78125, -15.587082862853947 ], [ -74.781806945800724, -15.587082862853947 ], [ -74.781806945800724, -15.587361335754338 ], [ -74.782081604003849, -15.587361335754338 ], [ -74.782081604003849, -15.586805343627873 ], [ -74.782638549804688, -15.586805343627873 ], [ -74.782638549804688, -15.586528778076172 ], [ -74.782913208007812, -15.586528778076172 ], [ -74.782913208007812, -15.586251258850098 ], [ -74.784027099609375, -15.586251258850098 ], [ -74.784027099609375, -15.585972785949707 ], [ -74.784858703613224, -15.585972785949707 ], [ -74.784858703613224, -15.585692405700627 ], [ -74.785140991210881, -15.585695266723633 ], [ -74.785140991210881, -15.585416793823242 ], [ -74.785415649414006, -15.585416793823242 ], [ -74.785415649414006, -15.585139274597054 ], [ -74.786247253417969, -15.585139274597054 ], [ -74.786247253417969, -15.584860801696777 ], [ -74.78680419921875, -15.584860801696777 ], [ -74.78680419921875, -15.584582328796387 ], [ -74.787361145019531, -15.584582328796387 ], [ -74.787361145019531, -15.584306716918945 ], [ -74.788192749023381, -15.584306716918945 ], [ -74.788192749023381, -15.584029197692871 ], [ -74.788749694824162, -15.584026336669922 ], [ -74.788749694824162, -15.58375072479248 ], [ -74.789581298828125, -15.58375072479248 ], [ -74.789581298828125, -15.583473205566406 ], [ -74.790412902832031, -15.583473205566406 ], [ -74.790412902832031, -15.583193778991699 ], [ -74.790695190429688, -15.583193778991699 ], [ -74.790695190429688, -15.582916259765625 ], [ -74.791526794433537, -15.582916259765625 ], [ -74.791526794433537, -15.582637786865234 ], [ -74.791809082031193, -15.582637786865234 ], [ -74.791809082031193, -15.58236026763916 ], [ -74.792640686035156, -15.58236026763916 ], [ -74.792640686035156, -15.582084655761662 ], [ -74.793197631835938, -15.582084655761662 ], [ -74.793197631835938, -15.581804275512695 ], [ -74.794303894042912, -15.581804275512695 ], [ -74.794303894042912, -15.581527709960881 ], [ -74.794586181640568, -15.581527709960881 ], [ -74.794586181640568, -15.58124828338623 ], [ -74.795135498046818, -15.581250190734806 ], [ -74.795135498046818, -15.580971717834416 ], [ -74.795974731445312, -15.580971717834416 ], [ -74.795974731445312, -15.580694198608342 ], [ -74.796806335449219, -15.580694198608342 ], [ -74.796806335449219, -15.580415725707951 ], [ -74.797363281249886, -15.580415725707951 ], [ -74.797363281249886, -15.580138206481934 ], [ -74.798194885253849, -15.580138206481934 ], [ -74.798194885253849, -15.579859733581486 ], [ -74.798751831054688, -15.579859733581486 ], [ -74.798751831054688, -15.579582214355469 ], [ -74.799583435058594, -15.579582214355469 ], [ -74.799583435058594, -15.579305648803711 ], [ -74.800140380859375, -15.579305648803711 ], [ -74.800140380859375, -15.57902812957758 ], [ -74.800415039062386, -15.57902812957758 ], [ -74.800415039062386, -15.578749656677132 ], [ -74.800697326660099, -15.578749656677132 ], [ -74.800697326660099, -15.578470230102539 ], [ -74.802360534667969, -15.578472137451115 ], [ -74.802360534667969, -15.578193664550724 ], [ -74.80291748046875, -15.578193664550724 ], [ -74.80291748046875, -15.57791614532465 ], [ -74.803749084472599, -15.57791614532465 ], [ -74.803749084472599, -15.57763767242426 ], [ -74.804862976074162, -15.57763767242426 ], [ -74.804862976074162, -15.577360153198185 ], [ -74.805419921875, -15.577362060546875 ], [ -74.805419921875, -15.577083587646484 ], [ -74.80596923828125, -15.577083587646484 ], [ -74.80596923828125, -15.576804161071777 ], [ -74.806808471679688, -15.57680606842041 ], [ -74.806808471679688, -15.57652759552002 ], [ -74.807357788085881, -15.57652759552002 ], [ -74.807357788085881, -15.576250076293832 ], [ -74.808197021484375, -15.576250076293832 ], [ -74.808197021484375, -15.575971603393555 ], [ -74.809028625488281, -15.575971603393555 ], [ -74.809028625488281, -15.575694084167424 ], [ -74.809585571289062, -15.575694084167424 ], [ -74.809585571289062, -15.575415611266976 ], [ -74.810417175292912, -15.575415611266976 ], [ -74.810417175292912, -15.575138092040959 ], [ -74.811248779296875, -15.575139999389648 ], [ -74.811248779296875, -15.574861526489258 ], [ -74.812080383300781, -15.574861526489258 ], [ -74.812080383300781, -15.574582099914494 ], [ -74.812919616699219, -15.574584007263184 ], [ -74.812919616699219, -15.574305534362793 ], [ -74.813751220703068, -15.574305534362793 ], [ -74.813751220703068, -15.574028015136719 ], [ -74.815139770507812, -15.574028015136719 ], [ -74.815139770507812, -15.573749542236328 ], [ -74.815696716308594, -15.573749542236328 ], [ -74.815696716308594, -15.573472023010254 ], [ -74.816528320312443, -15.573472023010254 ], [ -74.816528320312443, -15.573193550109863 ], [ -74.816802978515568, -15.573193550109863 ], [ -74.816802978515568, -15.572916030883789 ], [ -74.817916870117188, -15.572917938232422 ], [ -74.817916870117188, -15.572637557983398 ], [ -74.818473815917969, -15.572637557983398 ], [ -74.818473815917969, -15.572359085083008 ], [ -74.81903076171875, -15.572361946105957 ], [ -74.81903076171875, -15.572084426879883 ], [ -74.819862365722599, -15.572084426879883 ], [ -74.819862365722599, -15.571528434753418 ], [ -74.820419311523381, -15.571528434753418 ], [ -74.820419311523381, -15.571249961853027 ], [ -74.821525573730469, -15.571249961853027 ], [ -74.821525573730469, -15.570970535278263 ], [ -74.822914123535099, -15.570970535278263 ], [ -74.822914123535099, -15.570693016052246 ], [ -74.8245849609375, -15.570693016052246 ], [ -74.8245849609375, -15.570414543151855 ], [ -74.825416564941406, -15.570414543151855 ], [ -74.825416564941406, -15.570137023925781 ], [ -74.825973510742074, -15.570139884948674 ], [ -74.825973510742074, -15.569862365722656 ], [ -74.826530456542912, -15.569862365722656 ], [ -74.826530456542912, -15.569581031799316 ], [ -74.827079772949219, -15.569582939147892 ], [ -74.827079772949219, -15.569305419921818 ], [ -74.827919006347656, -15.569305419921818 ], [ -74.827919006347656, -15.569026947021428 ], [ -74.828475952148438, -15.569026947021428 ], [ -74.828475952148438, -15.568749427795353 ], [ -74.828750610351562, -15.568749427795353 ], [ -74.828750610351562, -15.568470954894963 ], [ -74.830139160156193, -15.568470954894963 ], [ -74.830139160156193, -15.568195343017578 ], [ -74.830413818359375, -15.568195343017578 ], [ -74.830413818359375, -15.567916870117188 ], [ -74.830696105957031, -15.567916870117188 ], [ -74.831253051757812, -15.567916870117188 ], [ -74.831253051757812, -15.567639350891 ], [ -74.831527709960938, -15.567639350891 ], [ -74.831527709960938, -15.567916870117188 ], [ -74.832084655761719, -15.567916870117188 ], [ -74.832084655761719, -15.567639350891 ], [ -74.832359313964787, -15.567639350891 ], [ -74.832359313964787, -15.567083358764592 ], [ -74.833473205566349, -15.567083358764592 ], [ -74.833473205566349, -15.567360877990723 ], [ -74.834030151367188, -15.567360877990723 ], [ -74.834030151367188, -15.567083358764592 ], [ -74.835693359374943, -15.567083358764592 ], [ -74.835693359374943, -15.566527366638127 ], [ -74.836807250976562, -15.566527366638127 ], [ -74.836807250976562, -15.566248893737736 ], [ -74.837081909179688, -15.566248893737736 ], [ -74.837081909179688, -15.566527366638127 ], [ -74.837364196777344, -15.566527366638127 ], [ -74.837364196777344, -15.566248893737736 ], [ -74.839302062988224, -15.566248893737736 ], [ -74.839302062988224, -15.565973281860352 ], [ -74.839859008789062, -15.565973281860352 ], [ -74.839859008789062, -15.565694808959961 ], [ -74.840415954589844, -15.565694808959961 ], [ -74.840415954589844, -15.565973281860352 ], [ -74.840690612792969, -15.565973281860352 ], [ -74.8406982421875, -15.565694808959961 ], [ -74.842636108398381, -15.565694808959961 ], [ -74.842636108398381, -15.565417289733887 ], [ -74.842918395996037, -15.565417289733887 ], [ -74.842918395996037, -15.565694808959961 ], [ -74.844154357910099, -15.565694808959961 ], [ -74.844306945800781, -15.565694808959961 ], [ -74.844306945800781, -15.565973281860352 ], [ -74.844581604003906, -15.565973281860352 ], [ -74.844581604003906, -15.566248893737736 ], [ -74.845214843749943, -15.566248893737736 ], [ -74.845413208007756, -15.566248893737736 ], [ -74.845413208007756, -15.566349029540959 ], [ -74.845413208007756, -15.567083358764592 ], [ -74.845664978027344, -15.567083358764592 ], [ -74.845970153808537, -15.567083358764592 ], [ -74.845970153808537, -15.567360877990723 ], [ -74.846527099609375, -15.567360877990723 ], [ -74.846527099609375, -15.568470954894963 ], [ -74.8468017578125, -15.568470954894963 ], [ -74.846809387207031, -15.569026947021428 ], [ -74.847084045410156, -15.569026947021428 ], [ -74.847084045410156, -15.568749427795353 ], [ -74.847358703613281, -15.568749427795353 ], [ -74.847358703613281, -15.569582939147892 ], [ -74.847457885742188, -15.569582939147892 ], [ -74.847640991210938, -15.569581031799316 ], [ -74.847640991210938, -15.570137023925781 ], [ -74.847915649414062, -15.570137023925781 ], [ -74.847915649414062, -15.570414543151855 ], [ -74.847717285156136, -15.570414543151855 ], [ -74.847358703613281, -15.570414543151855 ], [ -74.847358703613281, -15.572637557983398 ], [ -74.847640991210938, -15.572637557983398 ], [ -74.847640991210938, -15.572917938232422 ], [ -74.849029541015568, -15.572916030883789 ], [ -74.849029541015568, -15.573193550109863 ], [ -74.849586486816406, -15.573193550109863 ], [ -74.849586486816406, -15.573472023010254 ], [ -74.849861145019531, -15.573472023010254 ], [ -74.849861145019531, -15.573749542236328 ], [ -74.850135803222656, -15.573749542236328 ], [ -74.850135803222656, -15.574028015136719 ], [ -74.850418090820312, -15.574028015136719 ], [ -74.850418090820312, -15.574305534362793 ], [ -74.850975036621094, -15.574305534362793 ], [ -74.850975036621094, -15.574584007263184 ], [ -74.852638244628906, -15.574584007263184 ], [ -74.852638244628906, -15.574305534362793 ], [ -74.852912902832031, -15.574305534362793 ], [ -74.852912902832031, -15.574584007263184 ], [ -74.853752136230469, -15.574582099914494 ], [ -74.853752136230469, -15.574861526489258 ], [ -74.854583740234261, -15.574861526489258 ], [ -74.854583740234261, -15.574582099914494 ], [ -74.854858398437443, -15.574584007263184 ], [ -74.854858398437443, -15.574305534362793 ], [ -74.855140686035099, -15.574305534362793 ], [ -74.855140686035099, -15.573749542236328 ], [ -74.855415344238224, -15.573749542236328 ], [ -74.855415344238224, -15.570693016052246 ], [ -74.855697631835881, -15.570693016052246 ], [ -74.855697631835881, -15.569862365722656 ], [ -74.854240417480469, -15.569862365722656 ], [ -74.853752136230469, -15.569862365722656 ], [ -74.853752136230469, -15.569581031799316 ], [ -74.853195190429688, -15.569582939147892 ], [ -74.853195190429688, -15.569305419921818 ], [ -74.852912902832031, -15.569305419921818 ], [ -74.852912902832031, -15.569182395935002 ], [ -74.852912902832031, -15.569026947021428 ], [ -74.852638244628906, -15.569026947021428 ], [ -74.852638244628906, -15.568596839904671 ], [ -74.852638244628906, -15.567639350891 ], [ -74.852912902832031, -15.567639350891 ], [ -74.852912902832031, -15.567360877990723 ], [ -74.852638244628906, -15.567360877990723 ], [ -74.852638244628906, -15.567083358764592 ], [ -74.852363586425724, -15.567083358764592 ], [ -74.852363586425724, -15.566804885864144 ], [ -74.852081298828068, -15.566804885864144 ], [ -74.852081298828068, -15.566248893737736 ], [ -74.851806640624943, -15.566248893737736 ], [ -74.851806640624943, -15.565694808959961 ], [ -74.851249694824219, -15.565694808959961 ], [ -74.851249694824219, -15.565417289733887 ], [ -74.850692749023438, -15.565417289733887 ], [ -74.850692749023438, -15.565138816833496 ], [ -74.850975036621094, -15.565138816833496 ], [ -74.850975036621094, -15.564861297607422 ], [ -74.851249694824219, -15.564861297607422 ], [ -74.851249694824219, -15.564305305480843 ], [ -74.851524353027287, -15.564305305480843 ], [ -74.851524353027287, -15.563749313354435 ], [ -74.850135803222656, -15.563749313354435 ], [ -74.850135803222656, -15.564026832580566 ], [ -74.848129272460938, -15.564026832580566 ], [ -74.847358703613281, -15.564026832580566 ], [ -74.847358703613281, -15.563751220703125 ], [ -74.8468017578125, -15.563751220703125 ], [ -74.8468017578125, -15.56319522857666 ], [ -74.846527099609375, -15.56319522857666 ], [ -74.846527099609375, -15.562739372253418 ], [ -74.846527099609375, -15.561527252197266 ], [ -74.8468017578125, -15.561529159545842 ], [ -74.8468017578125, -15.561248779296875 ], [ -74.846252441406193, -15.561248779296875 ], [ -74.846252441406193, -15.560971260070801 ], [ -74.845970153808537, -15.560973167419434 ], [ -74.845970153808537, -15.558794021606332 ], [ -74.845970153808537, -15.55847263336176 ], [ -74.845695495605412, -15.55847263336176 ], [ -74.845695495605412, -15.557359695434513 ], [ -74.845970153808537, -15.557359695434513 ], [ -74.845970153808537, -15.557082176208439 ], [ -74.846252441406193, -15.557082176208439 ], [ -74.846252441406193, -15.556526184081974 ], [ -74.846527099609375, -15.556529045104867 ], [ -74.846527099609375, -15.55625057220459 ], [ -74.8468017578125, -15.55625057220459 ], [ -74.8468017578125, -15.55597019195551 ], [ -74.847229003906193, -15.555972099304199 ], [ -74.847358703613281, -15.555972099304199 ], [ -74.847358703613281, -15.555691719055119 ], [ -74.847358703613281, -15.555416107177734 ], [ -74.847480773925781, -15.555416107177734 ], [ -74.847640991210938, -15.555416107177734 ], [ -74.847640991210938, -15.555137634277344 ], [ -74.847915649414062, -15.555137634277344 ], [ -74.847915649414062, -15.554860115051156 ], [ -74.848197937011719, -15.554860115051156 ], [ -74.848197937011719, -15.554583549499512 ], [ -74.848472595214787, -15.554583549499512 ], [ -74.848472595214787, -15.554027557373047 ], [ -74.848747253417912, -15.554027557373047 ], [ -74.848747253417912, -15.553748130798283 ], [ -74.849029541015568, -15.553750038146973 ], [ -74.849029541015568, -15.553471565246582 ], [ -74.849304199218693, -15.553471565246582 ], [ -74.849304199218693, -15.553194046020508 ], [ -74.849586486816406, -15.553194046020508 ], [ -74.849586486816406, -15.552915573120117 ], [ -74.849861145019531, -15.552915573120117 ], [ -74.849861145019531, -15.552638053894043 ], [ -74.850135803222656, -15.552638053894043 ], [ -74.850135803222656, -15.552082061767578 ], [ -74.850418090820312, -15.552082061767578 ], [ -74.850418090820312, -15.551544189453125 ], [ -74.850418090820312, -15.551250457763672 ], [ -74.850692749023438, -15.551250457763672 ], [ -74.850692749023438, -15.550971984863281 ], [ -74.850975036621094, -15.550971984863281 ], [ -74.850975036621094, -15.550694465637207 ], [ -74.851234436035099, -15.550694465637207 ], [ -74.851249694824219, -15.550415992736816 ], [ -74.851524353027287, -15.550415992736816 ], [ -74.851524353027287, -15.550307273864689 ], [ -74.851524353027287, -15.550138473510742 ], [ -74.851654052734375, -15.550138473510742 ], [ -74.851806640624943, -15.550138473510742 ], [ -74.851806640624943, -15.549929618835392 ], [ -74.852081298828068, -15.549860000610352 ], [ -74.852081298828068, -15.549584388732853 ], [ -74.852363586425724, -15.549584388732853 ], [ -74.852363586425724, -15.549305915832463 ], [ -74.852638244628906, -15.549305915832463 ], [ -74.852638244628906, -15.549028396606445 ], [ -74.853195190429688, -15.549028396606445 ], [ -74.853195190429688, -15.548749923705998 ], [ -74.853469848632812, -15.548749923705998 ], [ -74.853469848632812, -15.54847240447998 ], [ -74.853752136230469, -15.54847240447998 ], [ -74.853752136230469, -15.54819393157959 ], [ -74.854026794433594, -15.54819393157959 ], [ -74.854026794433594, -15.547916412353516 ], [ -74.85430908203125, -15.547916412353516 ], [ -74.85430908203125, -15.547639846801644 ], [ -74.854583740234261, -15.547639846801644 ], [ -74.854583740234261, -15.547362327575627 ], [ -74.854858398437443, -15.547362327575627 ], [ -74.854858398437443, -15.54708194732666 ], [ -74.855140686035099, -15.547083854675236 ], [ -74.855140686035099, -15.546806335449162 ], [ -74.855415344238224, -15.546806335449162 ], [ -74.855415344238224, -15.546527862548771 ], [ -74.855972290039062, -15.546527862548771 ], [ -74.855972290039062, -15.546250343322697 ], [ -74.856246948242188, -15.546250343322697 ], [ -74.856246948242188, -15.545971870422306 ], [ -74.856803894042969, -15.545971870422306 ], [ -74.856803894042969, -15.545694351196232 ], [ -74.857086181640625, -15.545694351196232 ], [ -74.857086181640625, -15.545417785644531 ], [ -74.857635498046761, -15.545417785644531 ], [ -74.857635498046761, -15.545137405395451 ], [ -74.857917785644474, -15.545140266418457 ], [ -74.857917785644474, -15.544861793518066 ], [ -74.858192443847599, -15.544861793518066 ], [ -74.858192443847599, -15.544584274291879 ], [ -74.858749389648381, -15.544584274291879 ], [ -74.858749389648381, -15.544305801391602 ], [ -74.859024047851562, -15.544305801391602 ], [ -74.859024047851562, -15.544028282165471 ], [ -74.859580993652344, -15.544028282165471 ], [ -74.859580993652344, -15.543471336364746 ], [ -74.85986328125, -15.543471336364746 ], [ -74.85986328125, -15.542915344238168 ], [ -74.860137939453125, -15.542915344238168 ], [ -74.860137939453125, -15.54263973236084 ], [ -74.860420227050781, -15.54263973236084 ], [ -74.860420227050781, -15.542361259460449 ], [ -74.860969543456974, -15.542361259460449 ], [ -74.860969543456974, -15.542082786560059 ], [ -74.861251831054631, -15.542082786560059 ], [ -74.861251831054631, -15.541805267333984 ], [ -74.861526489257756, -15.541805267333984 ], [ -74.861526489257756, -15.541526794433594 ], [ -74.862083435058537, -15.541526794433594 ], [ -74.862083435058537, -15.54124927520752 ], [ -74.862358093261719, -15.54124927520752 ], [ -74.862358093261719, -15.540970802307129 ], [ -74.862640380859375, -15.540970802307129 ], [ -74.862640380859375, -15.540693283081055 ], [ -74.863197326660156, -15.540693283081055 ], [ -74.863197326660156, -15.54041671752924 ], [ -74.863471984863281, -15.54041671752924 ], [ -74.863471984863281, -15.540139198303166 ], [ -74.863746643066406, -15.540139198303166 ], [ -74.863746643066406, -15.539860725402775 ], [ -74.864303588867131, -15.539860725402775 ], [ -74.864303588867131, -15.539583206176758 ], [ -74.864585876464787, -15.539583206176758 ], [ -74.864585876464787, -15.53930473327631 ], [ -74.864860534667912, -15.53930473327631 ], [ -74.864860534667912, -15.539027214050293 ], [ -74.86541748046875, -15.539027214050293 ], [ -74.86541748046875, -15.538748741149902 ], [ -74.865692138671875, -15.538748741149902 ], [ -74.865692138671875, -15.538473129272404 ], [ -74.865974426269531, -15.538473129272404 ], [ -74.865974426269531, -15.538194656371957 ], [ -74.866531372070312, -15.538194656371957 ], [ -74.866531372070312, -15.537915229797363 ], [ -74.866806030273438, -15.537917137145939 ], [ -74.866806030273438, -15.537638664245549 ], [ -74.867080688476562, -15.537638664245549 ], [ -74.867080688476562, -15.537359237670898 ], [ -74.867637634277287, -15.537361145019474 ], [ -74.867637634277287, -15.537082672119084 ], [ -74.867919921874943, -15.537082672119084 ], [ -74.867919921874943, -15.536803245544434 ], [ -74.868194580078068, -15.53680515289301 ], [ -74.868194580078068, -15.536526679992619 ], [ -74.868751525878906, -15.536526679992619 ], [ -74.868751525878906, -15.536249160766602 ], [ -74.869026184082031, -15.536251068115234 ], [ -74.869026184082031, -15.535972595214844 ], [ -74.869583129882812, -15.535972595214844 ], [ -74.869583129882812, -15.535693168640137 ], [ -74.869857788085938, -15.535695075988656 ], [ -74.869857788085938, -15.535416603088379 ], [ -74.870140075683594, -15.535416603088379 ], [ -74.870140075683594, -15.535139083862248 ], [ -74.870697021484318, -15.535139083862248 ], [ -74.870697021484318, -15.5348606109618 ], [ -74.870971679687443, -15.5348606109618 ], [ -74.870971679687443, -15.534583091735783 ], [ -74.871528625488224, -15.534583091735783 ], [ -74.871528625488224, -15.534304618835392 ], [ -74.871803283691406, -15.534304618835392 ], [ -74.871803283691406, -15.534027099609318 ], [ -74.872085571289062, -15.534029006958008 ], [ -74.872085571289062, -15.533748626708928 ], [ -74.872642517089844, -15.533748626708928 ], [ -74.872642517089844, -15.533471107482853 ], [ -74.872917175292969, -15.533473014831543 ], [ -74.872917175292969, -15.533194541931152 ], [ -74.87347412109375, -15.533194541931152 ], [ -74.87347412109375, -15.532917022705078 ], [ -74.873748779296818, -15.532917022705078 ], [ -74.873748779296818, -15.532638549804688 ], [ -74.874305725097599, -15.532638549804688 ], [ -74.874305725097599, -15.532361030578613 ], [ -74.874580383300724, -15.532361030578613 ], [ -74.874580383300724, -15.532082557678223 ], [ -74.875137329101562, -15.532082557678223 ], [ -74.875137329101562, -15.531805038452035 ], [ -74.875419616699219, -15.531806945800781 ], [ -74.875419616699219, -15.531525611877441 ], [ -74.875968933105469, -15.531525611877441 ], [ -74.875968933105469, -15.531248092651367 ], [ -74.876251220703125, -15.531250953674316 ], [ -74.876251220703125, -15.530973434448242 ], [ -74.87652587890625, -15.530973434448242 ], [ -74.87652587890625, -15.530813217163086 ], [ -74.87652587890625, -15.530692100524902 ], [ -74.876716613769531, -15.530694961547852 ], [ -74.877082824706974, -15.530694961547852 ], [ -74.877082824706974, -15.530417442321777 ], [ -74.877357482910099, -15.530417442321777 ], [ -74.877357482910099, -15.530288696289062 ], [ -74.877357482910099, -15.53013801574707 ], [ -74.877593994140625, -15.53013801574707 ], [ -74.877914428710881, -15.53013801574707 ], [ -74.877914428710881, -15.52985954284668 ], [ -74.878036499023381, -15.52985954284668 ], [ -74.878196716308594, -15.52985954284668 ], [ -74.878196716308594, -15.529760360717773 ], [ -74.878196716308594, -15.529582023620605 ], [ -74.87847900390625, -15.529582023620605 ], [ -74.878753662109375, -15.529582023620605 ], [ -74.878753662109375, -15.529411315917969 ], [ -74.878753662109375, -15.52930736541748 ], [ -74.878921508789062, -15.52930736541748 ], [ -74.8790283203125, -15.52930736541748 ], [ -74.8790283203125, -15.529026031494141 ], [ -74.879364013671818, -15.529028892517033 ], [ -74.879585266113281, -15.529028892517033 ], [ -74.879585266113281, -15.528886795043945 ], [ -74.879585266113281, -15.528750419616642 ], [ -74.879798889160156, -15.528750419616642 ], [ -74.880142211913949, -15.528750419616642 ], [ -74.880142211913949, -15.528471946716252 ], [ -74.8802490234375, -15.528471946716252 ], [ -74.880691528320256, -15.528471946716252 ], [ -74.880691528320256, -15.528194427490178 ], [ -74.881248474121094, -15.528194427490178 ], [ -74.881248474121094, -15.527915954589787 ], [ -74.88153076171875, -15.527915954589787 ], [ -74.88153076171875, -15.527741432189885 ], [ -74.88153076171875, -15.52763843536377 ], [ -74.881736755371037, -15.52763843536377 ], [ -74.882080078125, -15.52763843536377 ], [ -74.882080078125, -15.527471542358398 ], [ -74.882080078125, -15.527359962463322 ], [ -74.882308959960881, -15.527359962463322 ], [ -74.882637023925781, -15.527359962463322 ], [ -74.882637023925781, -15.527200698852482 ], [ -74.882637023925781, -15.527084350585824 ], [ -74.882873535156193, -15.527084350585824 ], [ -74.883193969726449, -15.527084350585824 ], [ -74.883193969726449, -15.52692699432373 ], [ -74.883193969726449, -15.526805877685547 ], [ -74.883438110351562, -15.526805877685547 ], [ -74.883750915527287, -15.526805877685547 ], [ -74.883750915527287, -15.526654243469238 ], [ -74.883750915527287, -15.526528358459416 ], [ -74.884025573730412, -15.526528358459416 ], [ -74.884025573730412, -15.526249885558968 ], [ -74.88458251953125, -15.526249885558968 ], [ -74.88458251953125, -15.525972366332951 ], [ -74.884864807128906, -15.525972366332951 ], [ -74.884864807128906, -15.52569389343256 ], [ -74.885139465332031, -15.52569389343256 ], [ -74.885139465332031, -15.525416374206486 ], [ -74.885696411132812, -15.525416374206486 ], [ -74.885696411132812, -15.525137901306096 ], [ -74.885971069335938, -15.525137901306096 ], [ -74.885971069335938, -15.524862289428711 ], [ -74.886528015136662, -15.524862289428711 ], [ -74.886528015136662, -15.524581909179631 ], [ -74.886802673339787, -15.524581909179631 ], [ -74.886802673339787, -15.524306297302246 ], [ -74.887084960937443, -15.524306297302246 ], [ -74.887084960937443, -15.524027824401855 ], [ -74.887641906738224, -15.524027824401855 ], [ -74.887641906738224, -15.523750305175668 ], [ -74.887916564941406, -15.523750305175668 ], [ -74.887916564941406, -15.523471832275391 ], [ -74.888191223144531, -15.523471832275391 ], [ -74.888191223144531, -15.52319431304926 ], [ -74.888748168945312, -15.52319431304926 ], [ -74.888748168945312, -15.522915840148812 ], [ -74.889579772949162, -15.522915840148812 ], [ -74.889579772949162, -15.522640228271484 ], [ -74.890136718749943, -15.522640228271484 ], [ -74.890136718749943, -15.522359848022404 ], [ -74.890419006347599, -15.522359848022404 ], [ -74.890419006347599, -15.52208423614502 ], [ -74.891250610351562, -15.52208423614502 ], [ -74.891250610351562, -15.521805763244629 ], [ -74.892005920410156, -15.521805763244629 ], [ -74.892364501953125, -15.521805763244629 ], [ -74.892364501953125, -15.521573066711369 ], [ -74.893196105956974, -15.521528244018555 ], [ -74.893196105956974, -15.521249771118164 ], [ -74.893470764160099, -15.521249771118164 ], [ -74.893470764160099, -15.52097225189209 ], [ -74.893753051757756, -15.52097225189209 ], [ -74.893753051757756, -15.520693778991699 ], [ -74.893859863281193, -15.520693778991699 ], [ -74.894027709960938, -15.520693778991699 ], [ -74.894027709960938, -15.520416259765625 ], [ -74.894302368164062, -15.520416259765625 ], [ -74.894302368164062, -15.520137786865234 ], [ -74.894584655761719, -15.520137786865234 ], [ -74.894584655761719, -15.519860267639046 ], [ -74.894859313964844, -15.519862174987793 ], [ -74.894859313964844, -15.519583702087402 ], [ -74.8951416015625, -15.519583702087402 ], [ -74.8951416015625, -15.519303321838379 ], [ -74.896247863769474, -15.519306182861328 ], [ -74.896247863769474, -15.519027709960938 ], [ -74.896804809570256, -15.519027709960938 ], [ -74.896804809570256, -15.518750190734863 ], [ -74.897361755371094, -15.518750190734863 ], [ -74.897361755371094, -15.518471717834473 ], [ -74.897636413574219, -15.518471717834473 ], [ -74.897636413574219, -15.518191337585336 ], [ -74.898193359375, -15.518194198608398 ], [ -74.898193359375, -15.517917633056584 ], [ -74.898475646972656, -15.517917633056584 ], [ -74.898475646972656, -15.51764011383051 ], [ -74.899024963378793, -15.51764011383051 ], [ -74.899024963378793, -15.517361640930119 ], [ -74.899581909179631, -15.517361640930119 ], [ -74.899581909179631, -15.517084121704045 ], [ -74.899864196777287, -15.517084121704045 ], [ -74.899864196777287, -15.516805648803654 ], [ -74.900413513183594, -15.516805648803654 ], [ -74.900413513183594, -15.516527175903263 ], [ -74.900970458984375, -15.516527175903263 ], [ -74.900970458984375, -15.516248703002873 ], [ -74.901527404785156, -15.516248703002873 ], [ -74.901527404785156, -15.515971183776799 ], [ -74.902084350585938, -15.515971183776799 ], [ -74.902084350585938, -15.515695571899414 ], [ -74.902832031249943, -15.515695571899414 ], [ -74.902915954589787, -15.515695571899414 ], [ -74.902915954589787, -15.515415191650334 ], [ -74.903335571289062, -15.515418052673283 ], [ -74.903472900390568, -15.515418052673283 ], [ -74.903472900390568, -15.515138626098633 ], [ -74.903831481933594, -15.515138626098633 ], [ -74.904304504394531, -15.515138626098633 ], [ -74.904304504394531, -15.514875411987305 ], [ -74.904861450195312, -15.514861106872559 ], [ -74.904861450195312, -15.514582633972168 ], [ -74.905693054199162, -15.514582633972168 ], [ -74.905693054199162, -15.514303207397461 ], [ -74.90625, -15.51430511474598 ], [ -74.90625, -15.514026641845703 ], [ -74.907081604003906, -15.514026641845703 ], [ -74.907081604003906, -15.513749122619572 ], [ -74.907638549804688, -15.513749122619572 ], [ -74.907638549804688, -15.513472557067871 ], [ -74.908195495605469, -15.513472557067871 ], [ -74.908195495605469, -15.513193130493107 ], [ -74.908752441406136, -15.513193130493107 ], [ -74.908752441406136, -15.512916564941406 ], [ -74.909301757812443, -15.512916564941406 ], [ -74.909301757812443, -15.512637138366642 ], [ -74.909858703613281, -15.512639045715332 ], [ -74.909858703613281, -15.512360572814941 ], [ -74.910415649414062, -15.512360572814941 ], [ -74.910415649414062, -15.512083053588867 ], [ -74.910972595214844, -15.512083053588867 ], [ -74.910972595214844, -15.511930465698242 ], [ -74.910972595214844, -15.511804580688477 ], [ -74.911460876464844, -15.511804580688477 ], [ -74.911804199218636, -15.511804580688477 ], [ -74.911804199218636, -15.511527061462402 ], [ -74.912361145019474, -15.511527061462402 ], [ -74.912361145019474, -15.511248588562012 ], [ -74.912635803222599, -15.511248588562012 ], [ -74.912635803222599, -15.510695457458496 ], [ -74.912918090820256, -15.510695457458496 ], [ -74.912918090820256, -15.510416984558105 ], [ -74.913192749023438, -15.510416984558105 ], [ -74.913192749023438, -15.510139465332031 ], [ -74.913749694824219, -15.510139465332031 ], [ -74.913749694824219, -15.509860992431641 ], [ -74.914306640625, -15.509860992431641 ], [ -74.914306640625, -15.509583473205566 ], [ -74.915695190429631, -15.509583473205566 ], [ -74.915695190429631, -15.509860992431641 ], [ -74.91595458984375, -15.509860992431641 ], [ -74.916526794433594, -15.509860992431641 ], [ -74.916526794433594, -15.509583473205566 ], [ -74.917083740234375, -15.509583473205566 ], [ -74.917083740234375, -15.509334564208928 ], [ -74.917640686035156, -15.509305000305176 ], [ -74.917640686035156, -15.509026527404785 ], [ -74.917747497558594, -15.509026527404785 ], [ -74.918197631835938, -15.509026527404785 ], [ -74.918197631835938, -15.508750915527287 ], [ -74.9183349609375, -15.508750915527287 ], [ -74.918746948242131, -15.508750915527287 ], [ -74.918746948242131, -15.50847339630127 ], [ -74.918930053710881, -15.50847339630127 ], [ -74.919303894042912, -15.50847339630127 ], [ -74.919303894042912, -15.508299827575684 ], [ -74.919303894042912, -15.508193016052246 ], [ -74.919532775878906, -15.508194923400822 ], [ -74.91986083984375, -15.508194923400822 ], [ -74.91986083984375, -15.508040428161621 ], [ -74.91986083984375, -15.507917404174805 ], [ -74.920127868652344, -15.507917404174805 ], [ -74.920417785644531, -15.507917404174805 ], [ -74.920417785644531, -15.507780075073242 ], [ -74.920417785644531, -15.507638931274414 ], [ -74.920722961425781, -15.507638931274414 ], [ -74.920974731445312, -15.507638931274414 ], [ -74.920974731445312, -15.507519721984863 ], [ -74.920974731445312, -15.50736141204834 ], [ -74.921249389648438, -15.50736141204834 ], [ -74.921249389648438, -15.507082939147949 ], [ -74.921806335449162, -15.507082939147949 ], [ -74.921806335449162, -15.506805419921875 ], [ -74.922363281249943, -15.506805419921875 ], [ -74.922363281249943, -15.506526947021484 ], [ -74.922920227050781, -15.50652885437006 ], [ -74.922920227050781, -15.506251335143986 ], [ -74.923469543457031, -15.506251335143986 ], [ -74.923469543457031, -15.50597095489502 ], [ -74.924026489257812, -15.505972862243596 ], [ -74.924026489257812, -15.505695343017521 ], [ -74.92458343505848, -15.505695343017521 ], [ -74.92458343505848, -15.505416870117131 ], [ -74.925140380859318, -15.505416870117131 ], [ -74.925140380859318, -15.505139350891056 ], [ -74.925697326660099, -15.505139350891056 ], [ -74.925697326660099, -15.504860877990666 ], [ -74.926528930664062, -15.504860877990666 ], [ -74.926528930664062, -15.504583358764648 ], [ -74.927085876464844, -15.504583358764648 ], [ -74.927085876464844, -15.504306793212891 ], [ -74.927917480468693, -15.504306793212891 ], [ -74.927917480468693, -15.50402641296381 ], [ -74.928749084472599, -15.50402641296381 ], [ -74.928749084472599, -15.503750801086426 ], [ -74.929306030273438, -15.503750801086426 ], [ -74.929306030273438, -15.503473281860295 ], [ -74.930137634277344, -15.503473281860295 ], [ -74.930137634277344, -15.503194808959847 ], [ -74.930694580078125, -15.503194808959847 ], [ -74.930694580078125, -15.50291633605957 ], [ -74.931526184081974, -15.50291633605957 ], [ -74.931526184081974, -15.50263786315918 ], [ -74.932357788085938, -15.50263786315918 ], [ -74.932357788085938, -15.502360343932992 ], [ -74.932914733886719, -15.502360343932992 ], [ -74.932914733886719, -15.502084732055664 ], [ -74.933746337890625, -15.502084732055664 ], [ -74.933746337890625, -15.501804351806584 ], [ -74.934585571289006, -15.501804351806584 ], [ -74.934585571289006, -15.501527786254883 ], [ -74.935417175292969, -15.501527786254883 ], [ -74.935417175292969, -15.501250267028809 ], [ -74.936248779296875, -15.501250267028809 ], [ -74.936248779296875, -15.500971794128418 ], [ -74.936805725097656, -15.500971794128418 ], [ -74.936805725097656, -15.500694274902344 ], [ -74.937637329101506, -15.500694274902344 ], [ -74.937637329101506, -15.500415802001953 ], [ -74.938194274902287, -15.500415802001953 ], [ -74.938194274902287, -15.500138282775879 ], [ -74.940414428710824, -15.500138282775879 ], [ -74.940414428710824, -15.499859809875488 ], [ -74.941230773925781, -15.499859809875488 ], [ -74.942085266113281, -15.499859809875488 ], [ -74.942085266113281, -15.500138282775879 ], [ -74.942359924316406, -15.500138282775879 ], [ -74.942359924316406, -15.500694274902344 ], [ -74.942085266113281, -15.500694274902344 ], [ -74.942085266113281, -15.500971794128418 ], [ -74.942642211914062, -15.500971794128418 ], [ -74.942642211914062, -15.501250267028809 ], [ -74.943191528320312, -15.501250267028809 ], [ -74.943191528320312, -15.500971794128418 ], [ -74.944030761718693, -15.500971794128418 ], [ -74.944030761718693, -15.501250267028809 ], [ -74.944305419921818, -15.501250267028809 ], [ -74.944305419921818, -15.501527786254883 ], [ -74.944580078124943, -15.501527786254883 ], [ -74.944580078124943, -15.501804351806584 ], [ -74.945137023925781, -15.501804351806584 ], [ -74.945137023925781, -15.502084732055664 ], [ -74.945693969726562, -15.502084732055664 ], [ -74.945693969726562, -15.502360343932992 ], [ -74.946250915527344, -15.502360343932992 ], [ -74.946250915527344, -15.502084732055664 ], [ -74.947082519531193, -15.502084732055664 ], [ -74.947082519531193, -15.501804351806584 ], [ -74.948753356933594, -15.501804351806584 ], [ -74.948753356933594, -15.501250267028809 ], [ -74.949028015136719, -15.501250267028809 ], [ -74.949028015136719, -15.500971794128418 ], [ -74.948196411132812, -15.500971794128418 ], [ -74.948196411132812, -15.500694274902344 ], [ -74.947914123535099, -15.500694274902344 ], [ -74.947914123535099, -15.500138282775879 ], [ -74.948196411132812, -15.500138282775879 ], [ -74.948196411132812, -15.499859809875488 ], [ -74.948471069335938, -15.499859809875488 ], [ -74.948471069335938, -15.49958419799799 ], [ -74.948753356933594, -15.49958419799799 ], [ -74.948753356933594, -15.499859809875488 ], [ -74.949302673339844, -15.499859809875488 ], [ -74.949302673339844, -15.500138282775879 ], [ -74.9495849609375, -15.500138282775879 ], [ -74.9495849609375, -15.500415802001953 ], [ -74.950141906738168, -15.500415802001953 ], [ -74.950141906738168, -15.500694274902344 ], [ -74.950691223144474, -15.500694274902344 ], [ -74.950691223144474, -15.500971794128418 ], [ -74.951248168945312, -15.500971794128418 ], [ -74.951248168945312, -15.501250267028809 ], [ -74.951805114746094, -15.501250267028809 ], [ -74.951805114746094, -15.501527786254883 ], [ -74.952079772949219, -15.501527786254883 ], [ -74.952079772949219, -15.501804351806584 ], [ -74.95263671875, -15.501804351806584 ], [ -74.95263671875, -15.501527786254883 ], [ -74.952919006347656, -15.501527786254883 ], [ -74.952919006347656, -15.501250267028809 ], [ -74.953193664550668, -15.501250267028809 ], [ -74.953193664550668, -15.500971794128418 ], [ -74.955413818359375, -15.500971794128418 ], [ -74.955413818359375, -15.500694274902344 ], [ -74.955970764160156, -15.500694274902344 ], [ -74.955970764160156, -15.500415802001953 ], [ -74.956253051757812, -15.500415802001953 ], [ -74.956253051757812, -15.500138282775879 ], [ -74.956527709960881, -15.500138282775879 ], [ -74.956527709960881, -15.498470306396428 ], [ -74.956802368164006, -15.498472213745117 ], [ -74.956802368164006, -15.498193740844727 ], [ -74.957084655761662, -15.498193740844727 ], [ -74.957084655761662, -15.497914314269963 ], [ -74.957359313964787, -15.497916221618652 ], [ -74.957359313964787, -15.497637748718262 ], [ -74.957641601562443, -15.497637748718262 ], [ -74.957641601562443, -15.497360229492188 ], [ -74.957916259765625, -15.497360229492188 ], [ -74.957916259765625, -15.496804237365723 ], [ -74.95819091796875, -15.496806144714299 ], [ -74.95819091796875, -15.496527671813908 ], [ -74.958473205566406, -15.496527671813908 ], [ -74.958473205566406, -15.497362136840763 ], [ -74.958747863769531, -15.497360229492188 ], [ -74.958747863769531, -15.497637748718262 ], [ -74.959030151367188, -15.497637748718262 ], [ -74.959030151367188, -15.497916221618652 ], [ -74.959861755371037, -15.497914314269963 ], [ -74.959861755371037, -15.498193740844727 ], [ -74.960418701171818, -15.498193740844727 ], [ -74.960418701171818, -15.498472213745117 ], [ -74.960693359374943, -15.498470306396428 ], [ -74.960693359374943, -15.498749732971135 ], [ -74.960975646972656, -15.498749732971135 ], [ -74.960975646972656, -15.499028205871582 ], [ -74.961524963378906, -15.499028205871582 ], [ -74.961524963378906, -15.498749732971135 ], [ -74.961807250976562, -15.498749732971135 ], [ -74.961807250976562, -15.498470306396428 ], [ -74.962081909179688, -15.498472213745117 ], [ -74.962081909179688, -15.498193740844727 ], [ -74.962638854980469, -15.498193740844727 ], [ -74.962638854980469, -15.497637748718262 ], [ -74.962913513183537, -15.497637748718262 ], [ -74.962913513183537, -15.496527671813908 ], [ -74.962638854980469, -15.496527671813908 ], [ -74.962638854980469, -15.495971679687443 ], [ -74.962913513183537, -15.495971679687443 ], [ -74.962913513183537, -15.495415687560978 ], [ -74.963470458984318, -15.495415687560978 ], [ -74.963470458984318, -15.495138168334961 ], [ -74.963752746581974, -15.49514007568348 ], [ -74.963752746581974, -15.49485969543457 ], [ -74.964027404785156, -15.49485969543457 ], [ -74.964027404785156, -15.494582176208496 ], [ -74.964302062988281, -15.494584083557072 ], [ -74.964302062988281, -15.494305610656625 ], [ -74.964859008789062, -15.494305610656625 ], [ -74.964859008789062, -15.493749618530217 ], [ -74.965415954589844, -15.493749618530217 ], [ -74.965415954589844, -15.493472099304142 ], [ -74.965972900390511, -15.493472099304142 ], [ -74.965972900390511, -15.493193626403752 ], [ -74.966529846191349, -15.493193626403752 ], [ -74.966529846191349, -15.492916107177678 ], [ -74.967636108398438, -15.492918014526367 ], [ -74.967636108398438, -15.492637634277287 ], [ -74.967918395996094, -15.492637634277287 ], [ -74.967918395996094, -15.492360115051213 ], [ -74.968193054199219, -15.492362022399902 ], [ -74.968193054199219, -15.492083549499512 ], [ -74.96875, -15.492083549499512 ], [ -74.96875, -15.491806030273438 ], [ -74.969024658203011, -15.491806030273438 ], [ -74.969024658203011, -15.491527557373047 ], [ -74.970138549804631, -15.491527557373047 ], [ -74.970138549804631, -15.491806030273438 ], [ -74.970695495605469, -15.491806030273438 ], [ -74.970695495605469, -15.492083549499512 ], [ -74.971527099609375, -15.492083549499512 ], [ -74.971527099609375, -15.492362022399902 ], [ -74.972358703613224, -15.492360115051213 ], [ -74.972358703613224, -15.492637634277287 ], [ -74.973472595214787, -15.492637634277287 ], [ -74.973472595214787, -15.492360115051213 ], [ -74.973747253417969, -15.492362022399902 ], [ -74.973747253417969, -15.492083549499512 ], [ -74.974586486816406, -15.492083549499512 ], [ -74.974586486816406, -15.492362022399902 ], [ -74.975692749023381, -15.492362022399902 ], [ -74.975692749023381, -15.492083549499512 ], [ -74.975975036621037, -15.492083549499512 ], [ -74.975975036621037, -15.491806030273438 ], [ -74.976249694824162, -15.491803169250431 ], [ -74.976249694824162, -15.491250038146859 ], [ -74.976524353027287, -15.491250038146859 ], [ -74.976524353027287, -15.490971565246582 ], [ -74.976806640625, -15.490971565246582 ], [ -74.976806640625, -15.490693092346191 ], [ -74.977638244628906, -15.490693092346191 ], [ -74.977638244628906, -15.490414619445801 ], [ -74.977912902832031, -15.490414619445801 ], [ -74.977912902832031, -15.490137100219727 ], [ -74.978469848632812, -15.490137100219727 ], [ -74.978469848632812, -15.489581108093148 ], [ -74.978752136230355, -15.489583969116211 ], [ -74.978752136230355, -15.489304542541504 ], [ -74.978469848632812, -15.489304542541504 ], [ -74.978469848632812, -15.48902702331543 ], [ -74.978195190429688, -15.48902702331543 ], [ -74.978195190429688, -15.48819637298584 ], [ -74.978469848632812, -15.48819637298584 ], [ -74.978469848632812, -15.4879150390625 ], [ -74.978752136230355, -15.487916946411076 ], [ -74.978752136230355, -15.487639427185002 ], [ -74.978469848632812, -15.487639427185002 ], [ -74.978469848632812, -15.487359046936035 ], [ -74.978195190429688, -15.487359046936035 ], [ -74.978195190429688, -15.486804962158146 ], [ -74.978469848632812, -15.486804962158146 ], [ -74.978469848632812, -15.486527442932129 ], [ -74.979583740234318, -15.486527442932129 ], [ -74.979583740234318, -15.486248970031738 ], [ -74.980140686035156, -15.486248970031738 ], [ -74.980140686035156, -15.48597335815424 ], [ -74.980415344238281, -15.48597335815424 ], [ -74.980415344238281, -15.485694885253793 ], [ -74.981246948242188, -15.485694885253793 ], [ -74.981246948242188, -15.485417366027775 ], [ -74.981529235839844, -15.485417366027775 ], [ -74.981529235839844, -15.484580993652344 ], [ -74.981803894042855, -15.48458290100092 ], [ -74.981803894042855, -15.484026908874455 ], [ -74.982086181640568, -15.484026908874455 ], [ -74.982086181640568, -15.48347091674799 ], [ -74.982360839843693, -15.48347091674799 ], [ -74.982360839843693, -15.482360839843636 ], [ -74.982635498046818, -15.482360839843636 ], [ -74.982635498046818, -15.482083320617619 ], [ -74.982917785644474, -15.482083320617619 ], [ -74.982917785644474, -15.481804847717228 ], [ -74.983474731445312, -15.481804847717228 ], [ -74.983474731445312, -15.481527328491154 ], [ -74.983749389648438, -15.481527328491154 ], [ -74.983749389648438, -15.481248855590763 ], [ -74.984580993652344, -15.481248855590763 ], [ -74.984580993652344, -15.480971336364689 ], [ -74.985137939453068, -15.480973243713379 ], [ -74.985137939453068, -15.480694770812988 ], [ -74.985694885253849, -15.480694770812988 ], [ -74.985694885253849, -15.480417251586914 ], [ -74.986251831054631, -15.480417251586914 ], [ -74.986251831054631, -15.480138778686523 ], [ -74.986808776855469, -15.480138778686523 ], [ -74.986808776855469, -15.479582786560059 ], [ -74.987083435058594, -15.479582786560059 ], [ -74.987083435058594, -15.479028701782227 ], [ -74.986808776855469, -15.479028701782227 ], [ -74.986808776855469, -15.478749275207463 ], [ -74.986251831054631, -15.478751182556152 ], [ -74.986251831054631, -15.478472709655762 ], [ -74.98486328125, -15.478472709655762 ], [ -74.98486328125, -15.478751182556152 ], [ -74.984306335449219, -15.478751182556152 ], [ -74.984306335449219, -15.478472709655762 ], [ -74.983749389648438, -15.478472709655762 ], [ -74.983749389648438, -15.478751182556152 ], [ -74.983192443847656, -15.478751182556152 ], [ -74.983192443847656, -15.478472709655762 ], [ -74.983039855956974, -15.478472709655762 ], [ -74.982917785644474, -15.478472709655762 ], [ -74.982917785644474, -15.476806640624943 ], [ -74.983192443847656, -15.476806640624943 ], [ -74.983192443847656, -15.476529121398869 ], [ -74.983474731445312, -15.476529121398869 ], [ -74.983474731445312, -15.476250648498478 ], [ -74.983749389648438, -15.476250648498478 ], [ -74.984306335449219, -15.476250648498478 ], [ -74.984306335449219, -15.475973129272461 ], [ -74.984580993652344, -15.475973129272461 ], [ -74.984580993652344, -15.475693702697697 ], [ -74.98486328125, -15.475693702697697 ], [ -74.98486328125, -15.475414276123047 ], [ -74.985694885253849, -15.475414276123047 ], [ -74.985694885253849, -15.474860191345158 ], [ -74.985969543456974, -15.474860191345158 ], [ -74.985969543456974, -15.47458457946766 ], [ -74.986251831054631, -15.47458457946766 ], [ -74.986251831054631, -15.47430419921875 ], [ -74.986526489257812, -15.47430419921875 ], [ -74.986526489257812, -15.474027633666992 ], [ -74.987083435058594, -15.474027633666992 ], [ -74.987083435058594, -15.473748207092285 ], [ -74.987640380859375, -15.473750114440804 ], [ -74.987640380859375, -15.473471641540527 ], [ -74.9879150390625, -15.473471641540527 ], [ -74.9879150390625, -15.473194122314396 ], [ -74.987640380859375, -15.473194122314396 ], [ -74.987640380859375, -15.472638130187931 ], [ -74.9879150390625, -15.472638130187931 ], [ -74.9879150390625, -15.47236156463623 ], [ -74.988746643066349, -15.472359657287541 ], [ -74.988746643066349, -15.472082138061467 ], [ -74.989585876464844, -15.472082138061467 ], [ -74.989585876464844, -15.471805572509766 ], [ -74.99041748046875, -15.471805572509766 ], [ -74.99041748046875, -15.471528053283691 ], [ -74.990692138671875, -15.471528053283691 ], [ -74.990692138671875, -15.471249580383301 ], [ -74.991531372070199, -15.471249580383301 ], [ -74.991531372070199, -15.470972061157227 ], [ -74.991806030273381, -15.470972061157227 ], [ -74.991806030273381, -15.470693588256836 ], [ -74.992080688476506, -15.470693588256836 ], [ -74.992080688476506, -15.46986007690424 ], [ -74.992362976074162, -15.46986007690424 ], [ -74.992362976074162, -15.469305992126465 ], [ -74.992637634277344, -15.469305992126465 ], [ -74.992637634277344, -15.469028472900391 ], [ -74.99346923828125, -15.469028472900391 ], [ -74.99346923828125, -15.46875 ], [ -74.994026184082031, -15.46875 ], [ -74.994026184082031, -15.468471527099609 ], [ -74.995140075683537, -15.468471527099609 ], [ -74.995140075683537, -15.468194007873535 ], [ -74.996246337890625, -15.468194007873535 ], [ -74.996246337890625, -15.467915534973145 ], [ -74.997360229492188, -15.467915534973145 ], [ -74.997360229492188, -15.46763801574707 ], [ -74.997642517089844, -15.467639923095646 ], [ -74.997642517089844, -15.467362403869629 ], [ -74.998191833496037, -15.467362403869629 ], [ -74.998191833496037, -15.467639923095646 ], [ -74.998474121093693, -15.467639923095646 ], [ -74.998474121093693, -15.467362403869629 ], [ -74.999580383300781, -15.467362403869629 ], [ -74.999580383300781, -15.466806411743164 ], [ -74.999862670898438, -15.466806411743164 ], [ -75.000137329101562, -15.466806411743164 ], [ -75.000419616699219, -15.466806411743164 ], [ -75.000419616699219, -15.466527938842773 ], [ -75.001251220703068, -15.466527938842773 ], [ -75.001251220703068, -15.466250419616699 ], [ -75.002082824706974, -15.466250419616699 ], [ -75.002082824706974, -15.465971946716309 ], [ -75.002914428710938, -15.465971946716309 ], [ -75.002914428710938, -15.465694427490234 ], [ -75.003753662109375, -15.465694427490234 ], [ -75.003753662109375, -15.465415954589844 ], [ -75.0040283203125, -15.465415954589844 ], [ -75.0040283203125, -15.465694427490234 ], [ -75.004302978515568, -15.465694427490234 ], [ -75.004302978515568, -15.465415954589844 ], [ -75.004859924316349, -15.46541786193842 ], [ -75.004859924316349, -15.46513843536377 ], [ -75.005416870117188, -15.46513843536377 ], [ -75.005416870117188, -15.464859008789062 ], [ -75.005973815917969, -15.464861869811955 ], [ -75.005973815917969, -15.464584350585881 ], [ -75.006248474121094, -15.464584350585881 ], [ -75.006248474121094, -15.46430587768549 ], [ -75.00653076171875, -15.46430587768549 ], [ -75.00653076171875, -15.464028358459473 ], [ -75.007080078125, -15.464028358459473 ], [ -75.007080078125, -15.463749885559025 ], [ -75.007362365722543, -15.463749885559025 ], [ -75.007362365722543, -15.463471412658635 ], [ -75.008193969726506, -15.463471412658635 ], [ -75.008193969726506, -15.46319580078125 ], [ -75.008468627929688, -15.46319580078125 ], [ -75.008468627929688, -15.46291542053217 ], [ -75.008750915527344, -15.46291542053217 ], [ -75.008750915527344, -15.462639808654671 ], [ -75.009025573730469, -15.462639808654671 ], [ -75.009025573730469, -15.462362289428654 ], [ -75.009864807128906, -15.462362289428654 ], [ -75.009864807128906, -15.462082862854004 ], [ -75.011253356933537, -15.462082862854004 ], [ -75.011253356933537, -15.462362289428654 ], [ -75.011528015136662, -15.462362289428654 ], [ -75.011528015136662, -15.462082862854004 ], [ -75.011802673339844, -15.462082862854004 ], [ -75.011802673339844, -15.461805343627816 ], [ -75.012359619140625, -15.461805343627816 ], [ -75.012359619140625, -15.461526870727539 ], [ -75.015419006347656, -15.461526870727539 ], [ -75.015419006347656, -15.461249351501408 ], [ -75.016807556152344, -15.461249351501408 ], [ -75.016807556152344, -15.460970878600961 ], [ -75.018470764160156, -15.460970878600961 ], [ -75.018470764160156, -15.460693359374943 ], [ -75.020141601562386, -15.460693359374943 ], [ -75.020141601562386, -15.460970878600961 ], [ -75.024024963378849, -15.460970878600961 ], [ -75.024024963378849, -15.460693359374943 ], [ -75.024307250976506, -15.460693359374943 ], [ -75.024307250976506, -15.460416793823242 ], [ -75.025138854980469, -15.460416793823242 ], [ -75.025138854980469, -15.460139274597168 ], [ -75.025413513183594, -15.460139274597168 ], [ -75.025413513183594, -15.459860801696777 ], [ -75.027359008789006, -15.459860801696777 ], [ -75.027359008789006, -15.460139274597168 ], [ -75.027915954589844, -15.460139274597168 ], [ -75.027915954589844, -15.460416793823242 ], [ -75.0281982421875, -15.460416793823242 ], [ -75.0281982421875, -15.460693359374943 ], [ -75.028472900390625, -15.460693359374943 ], [ -75.028472900390625, -15.460970878600961 ], [ -75.02874755859375, -15.460970878600961 ], [ -75.02874755859375, -15.461249351501408 ], [ -75.029029846191406, -15.461249351501408 ], [ -75.029029846191406, -15.461526870727539 ], [ -75.029304504394531, -15.461526870727539 ], [ -75.029304504394531, -15.461805343627816 ], [ -75.029861450195256, -15.461805343627816 ], [ -75.029861450195256, -15.462082862854004 ], [ -75.030136108398381, -15.462082862854004 ], [ -75.030136108398381, -15.462362289428654 ], [ -75.030975341796875, -15.462362289428654 ], [ -75.030975341796875, -15.462639808654671 ], [ -75.03125, -15.462639808654671 ], [ -75.03125, -15.46291542053217 ], [ -75.032363891601562, -15.46291542053217 ], [ -75.032363891601562, -15.462639808654671 ], [ -75.032638549804688, -15.462639808654671 ], [ -75.032638549804688, -15.462362289428654 ], [ -75.0343017578125, -15.462362289428654 ], [ -75.0343017578125, -15.462082862854004 ], [ -75.03597259521473, -15.462082862854004 ], [ -75.03597259521473, -15.461805343627816 ], [ -75.037086486816349, -15.461805343627816 ], [ -75.037086486816349, -15.461526870727539 ], [ -75.037918090820312, -15.461526870727539 ], [ -75.037918090820312, -15.461249351501408 ], [ -75.038192749023438, -15.461249351501408 ], [ -75.038192749023438, -15.460970878600961 ], [ -75.038475036621094, -15.460970878600961 ], [ -75.038475036621094, -15.460693359374943 ], [ -75.03902435302723, -15.460693359374943 ], [ -75.03902435302723, -15.460416793823242 ], [ -75.039581298828068, -15.460416793823242 ], [ -75.039581298828068, -15.460139274597168 ], [ -75.039863586425724, -15.460139274597168 ], [ -75.039863586425724, -15.459860801696777 ], [ -75.041252136230469, -15.459860801696777 ], [ -75.041252136230469, -15.459583282470703 ], [ -75.04180908203125, -15.459583282470703 ], [ -75.04180908203125, -15.459860801696777 ], [ -75.042083740234375, -15.459860801696777 ], [ -75.042083740234375, -15.459583282470703 ], [ -75.042358398437443, -15.459583282470703 ], [ -75.042358398437443, -15.459304809570312 ], [ -75.042640686035099, -15.459304809570312 ], [ -75.042640686035099, -15.459583282470703 ], [ -75.042915344238224, -15.459583282470703 ], [ -75.042915344238224, -15.459860801696777 ], [ -75.043197631835881, -15.459860801696777 ], [ -75.043197631835881, -15.460416793823242 ], [ -75.043472290039006, -15.460416793823242 ], [ -75.043472290039006, -15.460139274597168 ], [ -75.044029235839844, -15.460139274597168 ], [ -75.044029235839844, -15.459860801696777 ], [ -75.044586181640625, -15.459860801696777 ], [ -75.044586181640625, -15.459583282470703 ], [ -75.045135498046875, -15.459583282470703 ], [ -75.045135498046875, -15.459304809570312 ], [ -75.045417785644531, -15.459304809570312 ], [ -75.045417785644531, -15.459027290344238 ], [ -75.045692443847599, -15.459027290344238 ], [ -75.045692443847599, -15.458748817443848 ], [ -75.045974731445256, -15.458748817443848 ], [ -75.045974731445256, -15.458194732665959 ], [ -75.046249389648381, -15.458194732665959 ], [ -75.046249389648381, -15.457915306091252 ], [ -75.046524047851506, -15.457917213439941 ], [ -75.046524047851506, -15.457638740539551 ], [ -75.046806335449219, -15.457638740539551 ], [ -75.046806335449219, -15.457359313964787 ], [ -75.047080993652344, -15.457361221313477 ], [ -75.047080993652344, -15.457082748413086 ], [ -75.051528930664062, -15.457082748413086 ], [ -75.051528930664062, -15.456805229187012 ], [ -75.051803588867074, -15.456805229187012 ], [ -75.051803588867074, -15.456526756286621 ], [ -75.052085876464787, -15.456526756286621 ], [ -75.052085876464787, -15.456805229187012 ], [ -75.052917480468693, -15.456805229187012 ], [ -75.052917480468693, -15.456526756286621 ], [ -75.053192138671875, -15.456526756286621 ], [ -75.053192138671875, -15.456249237060547 ], [ -75.055694580078068, -15.456251144409123 ], [ -75.055694580078068, -15.455972671508732 ], [ -75.055969238281193, -15.455970764160156 ], [ -75.055969238281193, -15.455693244934082 ], [ -75.056251525878849, -15.455695152282658 ], [ -75.056251525878849, -15.455416679382267 ], [ -75.056526184082031, -15.455416679382267 ], [ -75.056526184082031, -15.45513916015625 ], [ -75.057083129882812, -15.45513916015625 ], [ -75.057083129882812, -15.454860687255803 ], [ -75.057357788085938, -15.454860687255803 ], [ -75.057357788085938, -15.454583168029785 ], [ -75.057640075683594, -15.454583168029785 ], [ -75.057640075683594, -15.454304695129395 ], [ -75.058471679687443, -15.454304695129395 ], [ -75.058471679687443, -15.45402717590332 ], [ -75.058746337890568, -15.454029083251896 ], [ -75.058746337890568, -15.45374870300293 ], [ -75.059303283691349, -15.45374870300293 ], [ -75.059303283691349, -15.453471183776855 ], [ -75.060142517089844, -15.453473091125431 ], [ -75.060142517089844, -15.453194618225041 ], [ -75.060691833496094, -15.453194618225041 ], [ -75.060691833496094, -15.452917098998967 ], [ -75.06097412109375, -15.452917098998967 ], [ -75.06097412109375, -15.452638626098576 ], [ -75.062080383300724, -15.452638626098576 ], [ -75.062080383300724, -15.452082633972111 ], [ -75.062362670898381, -15.452082633972111 ], [ -75.062362670898381, -15.451248168945256 ], [ -75.062637329101562, -15.451248168945256 ], [ -75.062637329101562, -15.450692176818791 ], [ -75.063468933105469, -15.450692176818791 ], [ -75.063468933105469, -15.450972557067871 ], [ -75.063751220703125, -15.450972557067871 ], [ -75.063751220703125, -15.451251029968262 ], [ -75.06402587890625, -15.451251029968262 ], [ -75.06402587890625, -15.450972557067871 ], [ -75.064308166503906, -15.450972557067871 ], [ -75.064308166503906, -15.450692176818791 ], [ -75.064582824706918, -15.450695037841683 ], [ -75.064582824706918, -15.450416564941406 ], [ -75.064857482910099, -15.450416564941406 ], [ -75.064857482910099, -15.450139045715275 ], [ -75.065139770507756, -15.450139045715275 ], [ -75.065139770507756, -15.449859619140625 ], [ -75.065414428710881, -15.449859619140625 ], [ -75.065414428710881, -15.449582099914551 ], [ -75.065971374511719, -15.449582099914551 ], [ -75.065971374511719, -15.449307441711426 ], [ -75.0665283203125, -15.449307441711426 ], [ -75.0665283203125, -15.449026107787972 ], [ -75.066886901855469, -15.449028968811035 ], [ -75.067085266113281, -15.449028968811035 ], [ -75.067085266113281, -15.448751449584961 ], [ -75.067642211914062, -15.448751449584961 ], [ -75.067642211914062, -15.448470115661564 ], [ -75.067916870117131, -15.448472023010254 ], [ -75.067916870117131, -15.448193550109863 ], [ -75.068191528320256, -15.448193550109863 ], [ -75.068191528320256, -15.447916030883789 ], [ -75.068473815917912, -15.447916030883789 ], [ -75.068473815917912, -15.447331428527832 ], [ -75.068473815917912, -15.447084426879826 ], [ -75.068748474121037, -15.447084426879826 ], [ -75.068748474121037, -15.446982383728027 ], [ -75.068748474121037, -15.446248054504395 ], [ -75.069030761718693, -15.446248054504395 ], [ -75.069030761718693, -15.445137977600098 ], [ -75.068748474121037, -15.445137977600098 ], [ -75.068748474121037, -15.444581985473633 ], [ -75.069030761718693, -15.444581985473633 ], [ -75.069030761718693, -15.444306373596135 ], [ -75.069694519042969, -15.444306373596135 ], [ -75.070968627929631, -15.444306373596135 ], [ -75.070968627929631, -15.444581985473633 ], [ -75.072082519531193, -15.444581985473633 ], [ -75.072082519531193, -15.444306373596135 ], [ -75.072364807128906, -15.444306373596135 ], [ -75.072364807128906, -15.44375038146967 ], [ -75.072639465332031, -15.44375038146967 ], [ -75.072639465332031, -15.443151473999023 ], [ -75.072639465332031, -15.442915916442814 ], [ -75.072364807128906, -15.442915916442814 ], [ -75.072364807128906, -15.442640304565316 ], [ -75.072082519531193, -15.442640304565316 ], [ -75.072082519531193, -15.442359924316406 ], [ -75.071525573730412, -15.442359924316406 ], [ -75.071525573730412, -15.442084312438908 ], [ -75.071250915527287, -15.442084312438908 ], [ -75.071250915527287, -15.441805839538461 ], [ -75.070968627929631, -15.441805839538461 ], [ -75.070968627929631, -15.441269874572697 ], [ -75.066413879394531, -15.438405990600529 ], [ -75.060478210449162, -15.435461044311467 ], [ -75.056686401367188, -15.434613227844238 ], [ -75.051292419433537, -15.434667587280273 ], [ -75.049652099609375, -15.434316635131779 ], [ -75.047866821289006, -15.432842254638615 ], [ -75.045547485351562, -15.430148124694767 ], [ -75.037193298339787, -15.416227340698242 ], [ -75.028915405273324, -15.404094696044922 ], [ -75.026046752929631, -15.398275375366154 ], [ -75.022117614746037, -15.389343261718693 ], [ -75.019439697265568, -15.384461402893066 ], [ -75.018478393554688, -15.382226943969727 ], [ -75.016952514648438, -15.377046585083008 ], [ -75.016319274902287, -15.371694564819336 ], [ -75.016342163085938, -15.364262580871582 ], [ -75.016754150390625, -15.361495971679631 ], [ -75.017753601074162, -15.358576774597168 ], [ -75.017860412597656, -15.357230186462402 ], [ -75.017562866210881, -15.353631019592228 ], [ -75.016555786132812, -15.350910186767521 ], [ -75.0145263671875, -15.348334312438908 ], [ -75.010711669921875, -15.344444274902287 ], [ -75.009101867675781, -15.341499328613168 ], [ -75.007034301757812, -15.338823318481445 ], [ -75.003013610839844, -15.331073760986271 ], [ -75.002388000488224, -15.328705787658691 ], [ -75.000343322753906, -15.326616287231445 ], [ -74.994979858398438, -15.322331428527775 ], [ -74.991668701171875, -15.320740699768066 ], [ -74.986122131347656, -15.31903076171875 ], [ -74.982414245605469, -15.316644668579045 ], [ -74.976333618164006, -15.309819221496582 ], [ -74.974143981933537, -15.307033538818359 ], [ -74.970680236816406, -15.301987648010254 ], [ -74.96820068359375, -15.299239158630371 ], [ -74.967102050781193, -15.296933174133301 ], [ -74.966171264648438, -15.294086456298771 ], [ -74.965248107910156, -15.290143013000488 ], [ -74.964431762695256, -15.284818649291992 ], [ -74.964363098144531, -15.279431343078556 ], [ -74.964805603027287, -15.273653984069767 ], [ -74.964073181152344, -15.266348838806152 ], [ -74.964134216308537, -15.258239746093693 ], [ -74.963638305664062, -15.253718376159611 ], [ -74.962562561035156, -15.251393318176213 ], [ -74.959030151367188, -15.245868682861328 ], [ -74.955581665039062, -15.241819381713867 ], [ -74.953872680664062, -15.239369392394963 ], [ -74.948982238769474, -15.235173225402775 ], [ -74.946784973144474, -15.231890678405705 ], [ -74.945228576660156, -15.228292465209961 ], [ -74.943885803222656, -15.224040985107422 ], [ -74.943138122558594, -15.220054626464844 ], [ -74.94171142578125, -15.214911460876408 ], [ -74.941253662109318, -15.210480690002385 ], [ -74.940757751464844, -15.20811939239502 ], [ -74.939865112304688, -15.205833435058594 ], [ -74.938629150390625, -15.203898429870605 ], [ -74.934539794921875, -15.199284553527832 ], [ -74.933769226074219, -15.197710990905762 ], [ -74.931106567382812, -15.194782257080078 ], [ -74.929306030273438, -15.192221641540471 ], [ -74.927871704101562, -15.191156387328988 ], [ -74.923477172851562, -15.189129829406625 ], [ -74.922180175781193, -15.18813419342041 ], [ -74.920661926269474, -15.186199188232422 ], [ -74.919342041015625, -15.182222366333008 ], [ -74.918342590332031, -15.180935859680176 ], [ -74.916580200195312, -15.18013763427723 ], [ -74.910980224609375, -15.178590774536133 ], [ -74.902717590331974, -15.176806449890137 ], [ -74.900428771972599, -15.175793647766113 ], [ -74.897315979003906, -15.173323631286564 ], [ -74.894180297851562, -15.170466423034611 ], [ -74.89324951171875, -15.169116973876953 ], [ -74.890335083007756, -15.163610458374023 ], [ -74.888526916503849, -15.161050796508789 ], [ -74.887138366699219, -15.159548759460449 ], [ -74.884727478027344, -15.157949447631779 ], [ -74.881332397460938, -15.157087326049748 ], [ -74.880104064941406, -15.15654468536377 ], [ -74.877357482910099, -15.153494834899846 ], [ -74.875205993652344, -15.151767730712891 ], [ -74.873069763183537, -15.150844573974553 ], [ -74.8702392578125, -15.150129318237248 ], [ -74.866775512695256, -15.149918556213322 ], [ -74.861785888671875, -15.151063919067326 ], [ -74.855743408203125, -15.153402328491211 ], [ -74.847259521484375, -15.148612976074219 ], [ -74.8446044921875, -15.147456169128418 ], [ -74.839714050292969, -15.145941734313908 ], [ -74.832595825195312, -15.144798278808594 ], [ -74.828300476074219, -15.14373588562006 ], [ -74.821762084960881, -15.141098976135254 ], [ -74.812591552734318, -15.136636734008789 ], [ -74.801452636718693, -15.129536628723145 ], [ -74.792915344238281, -15.122865676879826 ], [ -74.790321350097656, -15.121896743774357 ], [ -74.788612365722656, -15.120753288269043 ], [ -74.788032531738281, -15.12015247344965 ], [ -74.787193298339844, -15.117165565490723 ], [ -74.785491943359375, -15.113746643066349 ], [ -74.78411865234375, -15.11190128326416 ], [ -74.780998229980469, -15.109230041503906 ], [ -74.777824401855469, -15.107030868530217 ], [ -74.772163391113224, -15.105704307556096 ], [ -74.766853332519531, -15.103059768676758 ], [ -74.765457153320312, -15.101963996887093 ], [ -74.76275634765625, -15.09887790679926 ], [ -74.761764526367131, -15.100956916809082 ], [ -74.759498596191349, -15.10434627532959 ], [ -74.756164550781136, -15.107939720153809 ], [ -74.753608703613281, -15.111283302307072 ], [ -74.751617431640625, -15.112726211547795 ], [ -74.747856140136662, -15.114448547363281 ], [ -74.746200561523438, -15.115433692932129 ], [ -74.738662719726562, -15.122360229492188 ], [ -74.736465454101562, -15.122688293457031 ], [ -74.733970642089844, -15.121720314025879 ], [ -74.731491088867188, -15.121492385864258 ], [ -74.730751037597656, -15.121127128601074 ], [ -74.729225158691406, -15.121109008788949 ], [ -74.725189208984375, -15.122124671936035 ], [ -74.723007202148438, -15.122963905334473 ], [ -74.721832275390511, -15.123702049255371 ], [ -74.7203369140625, -15.125112533569336 ], [ -74.719764709472656, -15.126333236694336 ], [ -74.718399047851449, -15.133083343505859 ], [ -74.717964172363281, -15.13421440124506 ], [ -74.715553283691406, -15.136822700500488 ], [ -74.714241027832031, -15.137824058532715 ], [ -74.713356018066406, -15.138175010681152 ], [ -74.712394714355469, -15.13807487487793 ], [ -74.711105346679688, -15.137054443359375 ], [ -74.710403442382812, -15.136972427368107 ], [ -74.706665039062443, -15.138710975646973 ], [ -74.704696655273438, -15.139042854309025 ], [ -74.7030029296875, -15.138443946838379 ], [ -74.700920104980412, -15.136469841003418 ], [ -74.699882507324162, -15.136096000671387 ], [ -74.699043273925781, -15.136051177978459 ], [ -74.695182800292969, -15.136490821838379 ], [ -74.693878173828068, -15.136912345886117 ], [ -74.691276550292969, -15.138248443603459 ], [ -74.689529418945312, -15.138499259948674 ], [ -74.687431335449219, -15.137762069702148 ], [ -74.685630798339844, -15.13673019409174 ], [ -74.6815185546875, -15.133289337158146 ], [ -74.680007934570312, -15.132317543029785 ], [ -74.679000854492131, -15.131937026977539 ], [ -74.677902221679688, -15.132187843322697 ], [ -74.676254272460938, -15.133831024169922 ], [ -74.674942016601562, -15.134608268737736 ], [ -74.666503906249943, -15.135103225708008 ], [ -74.664665222167969, -15.135622024536076 ], [ -74.66015625, -15.137432098388672 ], [ -74.657722473144474, -15.137916564941406 ], [ -74.652587890624943, -15.13813591003418 ], [ -74.6505126953125, -15.137988090515137 ], [ -74.647994995117131, -15.137251853942871 ], [ -74.64501953125, -15.135213851928711 ], [ -74.63934326171875, -15.132681846618596 ], [ -74.636444091796818, -15.130615234374943 ], [ -74.629966735839787, -15.125307083129883 ], [ -74.629325866699105, -15.125026702880859 ], [ -74.628196716308594, -15.12491512298584 ], [ -74.627273559570312, -15.125456809997502 ], [ -74.626167297363224, -15.126503944396973 ], [ -74.623664855956974, -15.130061149597168 ], [ -74.621826171875, -15.132076263427621 ], [ -74.617393493652287, -15.135287284851017 ], [ -74.6103515625, -15.14177417755127 ], [ -74.608627319335881, -15.143678665161133 ], [ -74.606857299804688, -15.146895408630314 ], [ -74.605758666992131, -15.147913932800293 ], [ -74.604988098144474, -15.148248672485352 ], [ -74.603073120117131, -15.148578643798828 ], [ -74.601127624511719, -15.148648262023926 ], [ -74.594161987304688, -15.146871566772404 ], [ -74.591506958007812, -15.146651268005371 ], [ -74.58673095703125, -15.148457527160645 ], [ -74.58441162109375, -15.148824691772461 ], [ -74.582939147949219, -15.148079872131348 ], [ -74.5794677734375, -15.144794464111328 ], [ -74.57820892333973, -15.144201278686467 ], [ -74.576423645019531, -15.143855094909611 ], [ -74.573463439941406, -15.141037940978947 ], [ -74.571296691894531, -15.140130043029785 ], [ -74.566604614257812, -15.139613151550293 ], [ -74.560554504394474, -15.140308380126953 ], [ -74.553329467773438, -15.140095710754338 ], [ -74.549690246581974, -15.140830039978027 ], [ -74.543403625488281, -15.14276123046875 ], [ -74.538825988769531, -15.143411636352539 ], [ -74.536590576171875, -15.144002914428711 ], [ -74.535697937011719, -15.144562721252385 ], [ -74.533821105957031, -15.146430015563908 ], [ -74.532562255859375, -15.146986007690373 ], [ -74.531318664550781, -15.146903991699219 ], [ -74.529632568359318, -15.146295547485295 ], [ -74.528373718261719, -15.14626407623291 ], [ -74.522102355956974, -15.147328376769963 ], [ -74.517402648925781, -15.147579193115234 ], [ -74.512825012207031, -15.148653984069824 ], [ -74.509628295898381, -15.151042938232365 ], [ -74.507400512695312, -15.153406143188477 ], [ -74.504631042480469, -15.15792083740223 ], [ -74.50347900390625, -15.161085128784123 ], [ -74.50177001953125, -15.159831047058105 ], [ -74.501510620117131, -15.16040134429926 ], [ -74.500808715820312, -15.161005020141545 ], [ -74.498878479003906, -15.161941528320312 ], [ -74.492225646972656, -15.162144660949707 ], [ -74.490997314453125, -15.162256240844613 ], [ -74.4892578125, -15.162769317626896 ], [ -74.482315063476562, -15.166424751281681 ], [ -74.476303100585938, -15.168121337890511 ], [ -74.474250793456974, -15.168917655944824 ], [ -74.470886230468693, -15.170801162719727 ], [ -74.466773986816406, -15.173520088195801 ], [ -74.464988708496037, -15.173823356628304 ], [ -74.460289001464844, -15.173869132995605 ], [ -74.457923889160099, -15.174666404724064 ], [ -74.4549560546875, -15.176068305969238 ], [ -74.452957153320256, -15.176109313964787 ], [ -74.451904296875, -15.175771713256779 ], [ -74.448944091796875, -15.173333168029785 ], [ -74.446372985839844, -15.170507431030273 ], [ -74.444526672363281, -15.168864250182992 ], [ -74.442672729492131, -15.167631149291992 ], [ -74.441261291503793, -15.167156219482365 ], [ -74.438774108886662, -15.166808128356934 ], [ -74.436271667480412, -15.166810035705453 ], [ -74.427116394042912, -15.16828727722168 ], [ -74.423011779785099, -15.16766166687006 ], [ -74.418350219726506, -15.168853759765568 ], [ -74.415382385253849, -15.170581817626896 ], [ -74.412849426269531, -15.172674179077148 ], [ -74.406730651855412, -15.175225257873535 ], [ -74.403785705566406, -15.176716804504338 ], [ -74.401573181152287, -15.178338050842228 ], [ -74.399604797363281, -15.180250167846623 ], [ -74.398956298828125, -15.181097984313965 ], [ -74.398468017578125, -15.182234764099121 ], [ -74.397682189941406, -15.186338424682617 ], [ -74.396217346191349, -15.19053840637207 ], [ -74.394058227539062, -15.195502281188965 ], [ -74.392799377441349, -15.197245597839299 ], [ -74.391479492187386, -15.200786590576172 ], [ -74.389945983886662, -15.203486442565918 ], [ -74.389671325683594, -15.205220222473088 ], [ -74.389923095703068, -15.206956863403263 ], [ -74.390739440917969, -15.208522796630803 ], [ -74.393013000488281, -15.211756706237736 ], [ -74.399452209472656, -15.21806812286377 ], [ -74.400016784667969, -15.219034194946289 ], [ -74.400329589843693, -15.220191955566293 ], [ -74.40008544921875, -15.220688819885197 ], [ -74.399620056152344, -15.221012115478516 ], [ -74.396995544433537, -15.221892356872559 ], [ -74.394416809081974, -15.223478317260685 ], [ -74.392204284667969, -15.22421932220459 ], [ -74.391395568847656, -15.225141525268555 ], [ -74.391342163085938, -15.226099014282227 ], [ -74.393356323242131, -15.228327751159668 ], [ -74.394050598144474, -15.229930877685547 ], [ -74.394439697265625, -15.232335090637207 ], [ -74.393997192382812, -15.237054824829102 ], [ -74.3941650390625, -15.237668037414437 ], [ -74.395164489746037, -15.238801002502385 ], [ -74.395416259765625, -15.240150451660156 ], [ -74.394844055175781, -15.241803169250488 ], [ -74.393737792968693, -15.243354797363224 ], [ -74.392288208007812, -15.244617462158203 ], [ -74.391105651855469, -15.245012283325138 ], [ -74.390098571777344, -15.24575042724598 ], [ -74.389793395996094, -15.246463775634766 ], [ -74.389602661132812, -15.248043060302621 ], [ -74.388122558593693, -15.249984741210938 ], [ -74.387901306152344, -15.251593589782715 ], [ -74.389274597167912, -15.254074096679688 ], [ -74.391632080078125, -15.257588386535588 ], [ -74.396423339843693, -15.26166820526123 ], [ -74.399078369140568, -15.264651298522949 ], [ -74.39971923828125, -15.265684127807617 ], [ -74.399993896484375, -15.26741981506342 ], [ -74.399765014648381, -15.268893241882267 ], [ -74.398277282714844, -15.270840644836369 ], [ -74.397445678710938, -15.273270606994629 ], [ -74.397453308105412, -15.275430679321232 ], [ -74.398231506347599, -15.277866363525334 ], [ -74.400428771972599, -15.279924392700138 ], [ -74.405632019042969, -15.285885810852051 ], [ -74.412094116210938, -15.292194366454964 ], [ -74.414871215820312, -15.295232772827148 ], [ -74.415321350097543, -15.29730224609375 ], [ -74.415122985839787, -15.29946327209467 ], [ -74.414413452148438, -15.300475120544434 ], [ -74.413101196289006, -15.301734924316293 ], [ -74.410331726074162, -15.304262161254769 ], [ -74.409103393554631, -15.305647850036621 ], [ -74.409286499023381, -15.306997299194279 ], [ -74.410140991210881, -15.3082275390625 ], [ -74.410102844238281, -15.308771133422852 ], [ -74.409721374511719, -15.309355735778809 ], [ -74.404678344726562, -15.310780525207463 ], [ -74.401710510253906, -15.312236785888672 ], [ -74.400367736816406, -15.313192367553654 ], [ -74.397911071777344, -15.315790176391545 ], [ -74.396865844726562, -15.316609382629338 ], [ -74.395057678222656, -15.316841125488281 ], [ -74.390609741210881, -15.316918373107796 ], [ -74.389289855957031, -15.317337989807129 ], [ -74.38616943359375, -15.320194244384766 ], [ -74.383628845214787, -15.322882652282601 ], [ -74.382316589355412, -15.324597358703613 ], [ -74.379684448242188, -15.329046249389592 ], [ -74.37831878662098, -15.330607414245492 ], [ -74.377037048339844, -15.331607818603516 ], [ -74.375442504882756, -15.332009315490723 ], [ -74.370704650878906, -15.332085609435921 ], [ -74.366752624511662, -15.333954811096135 ], [ -74.361892700195256, -15.332631111144963 ], [ -74.359695434570256, -15.332805633544865 ], [ -74.357612609863224, -15.334589004516488 ], [ -74.35565185546875, -15.336681365966797 ], [ -74.355384826660156, -15.337430953979435 ], [ -74.355522155761662, -15.338777542114201 ], [ -74.355232238769474, -15.339264869689941 ], [ -74.354026794433594, -15.338971138000488 ], [ -74.353019714355412, -15.337541580200082 ], [ -74.351280212402344, -15.336189270019531 ], [ -74.349342346191406, -15.336174964904728 ], [ -74.347816467285156, -15.335771560668945 ], [ -74.346786499023438, -15.335778236389103 ], [ -74.345741271972656, -15.336480140686035 ], [ -74.344810485839787, -15.337672233581543 ], [ -74.344024658203125, -15.341509819030762 ], [ -74.343124389648381, -15.343153953552246 ], [ -74.340568542480469, -15.345632553100529 ], [ -74.337333679199219, -15.347937583923283 ], [ -74.335418701171875, -15.350066184997559 ], [ -74.333885192871094, -15.352301597595215 ], [ -74.332099914550781, -15.35379695892334 ], [ -74.3302001953125, -15.354597091674748 ], [ -74.328269958496094, -15.354843139648381 ], [ -74.323577880859261, -15.354513168334904 ], [ -74.320533752441406, -15.354802131652832 ], [ -74.319770812988281, -15.355126380920353 ], [ -74.318008422851562, -15.35692024230957 ], [ -74.317115783691406, -15.35749626159668 ], [ -74.315681457519531, -15.357824325561467 ], [ -74.31121826171875, -15.358272552490178 ], [ -74.309547424316349, -15.359088897705078 ], [ -74.308837890625, -15.359910011291447 ], [ -74.308982849121037, -15.360662460327148 ], [ -74.310356140136719, -15.361830711364746 ], [ -74.315971374511719, -15.364460945129395 ], [ -74.317489624023438, -15.365839958190918 ], [ -74.318252563476562, -15.371593475341797 ], [ -74.319076538085881, -15.373998641967773 ], [ -74.320793151855412, -15.377359390258789 ], [ -74.326080322265625, -15.385429382324162 ], [ -74.328353881835938, -15.390199661254883 ], [ -74.329467773437443, -15.391757965087777 ], [ -74.329833984375, -15.393340110778752 ], [ -74.329635620117188, -15.394659996032658 ], [ -74.328407287597599, -15.398100852966252 ], [ -74.326629638671761, -15.406276702880859 ], [ -74.325088500976506, -15.410025596618596 ], [ -74.324478149414062, -15.412815093994084 ], [ -74.324256896972656, -15.416548728942871 ], [ -74.325492858886719, -15.418378829955998 ], [ -74.325538635253906, -15.419039726257324 ], [ -74.324790954589787, -15.421064376830998 ], [ -74.321762084960881, -15.427181243896484 ], [ -74.321166992187443, -15.42981052398676 ], [ -74.321052551269531, -15.433037757873535 ], [ -74.320236206054631, -15.435042381286621 ], [ -74.320137023925724, -15.436948776245117 ], [ -74.319679260253906, -15.438321113586312 ], [ -74.31695556640625, -15.442392349243164 ], [ -74.312278747558594, -15.445542335510197 ], [ -74.309043884277344, -15.448486328124943 ], [ -74.305282592773438, -15.45050144195551 ], [ -74.304512023925781, -15.45129203796381 ], [ -74.303985595703125, -15.452223777770996 ], [ -74.304023742675724, -15.453181266784668 ], [ -74.304527282714844, -15.454132080078011 ], [ -74.304504394531136, -15.455488204955998 ], [ -74.305160522460881, -15.456818580627385 ], [ -74.306365966796875, -15.457942008972168 ], [ -74.308639526367188, -15.458963394165039 ], [ -74.309623718261662, -15.459699630737248 ], [ -74.311378479003906, -15.461621284484863 ], [ -74.311752319335824, -15.463184356689396 ], [ -74.311645507812443, -15.464125633239746 ], [ -74.311012268066406, -15.465914726257267 ], [ -74.309295654296875, -15.469443321227971 ], [ -74.305824279785099, -15.47434139251709 ], [ -74.304359436035156, -15.47596263885498 ], [ -74.302406311035043, -15.477675437927246 ], [ -74.301330566406193, -15.47832012176508 ], [ -74.300430297851562, -15.478589057922363 ], [ -74.299156188964787, -15.478577613830566 ], [ -74.297821044921818, -15.478231430053711 ], [ -74.292823791503906, -15.478069305419808 ], [ -74.291305541992188, -15.478144645690918 ], [ -74.288467407226506, -15.478796005249023 ], [ -74.280632019042912, -15.477759361266976 ], [ -74.275772094726506, -15.477860450744629 ], [ -74.273773193359318, -15.477626800537109 ], [ -74.272468566894531, -15.47716236114502 ], [ -74.267791748046875, -15.474261283874512 ], [ -74.266426086425724, -15.473941802978459 ], [ -74.264892578124943, -15.473955154418945 ], [ -74.263153076171875, -15.474807739257756 ], [ -74.258834838867188, -15.478987693786564 ], [ -74.256393432617188, -15.480281829833984 ], [ -74.254234313964787, -15.480727195739746 ], [ -74.250625610351562, -15.480986595153752 ], [ -74.245262145996037, -15.480353355407715 ], [ -74.243522644042969, -15.480827331542912 ], [ -74.241836547851506, -15.481596946716309 ], [ -74.241363525390568, -15.482508659362736 ], [ -74.240821838378906, -15.482551574706918 ], [ -74.232978820800668, -15.487127304077148 ], [ -74.232284545898381, -15.486988067626953 ], [ -74.231559753417969, -15.486183166503906 ], [ -74.230499267578011, -15.485527038574219 ], [ -74.227264404296875, -15.484774589538574 ], [ -74.224624633789062, -15.484890937805176 ], [ -74.222610473632812, -15.485374450683537 ], [ -74.213996887206974, -15.485540390014592 ], [ -74.209312438964787, -15.486645698547306 ], [ -74.199897766113281, -15.490299224853516 ], [ -74.196258544921818, -15.49117374420166 ], [ -74.194519042968693, -15.491274833679142 ], [ -74.194206237792969, -15.490822792053223 ], [ -74.191986083984375, -15.490714073181096 ], [ -74.189346313476562, -15.489510536193791 ], [ -74.187545776367188, -15.488040924072266 ], [ -74.185768127441349, -15.48597335815424 ], [ -74.185050964355469, -15.485545158386174 ], [ -74.183113098144531, -15.485393524169865 ], [ -74.181632995605469, -15.485740661621094 ], [ -74.178993225097599, -15.48587512969965 ], [ -74.177116394042969, -15.485036849975586 ], [ -74.17523193359375, -15.484551429748478 ], [ -74.166503906249943, -15.483769416809082 ], [ -74.164932250976562, -15.483011245727539 ], [ -74.163528442382756, -15.481650352477971 ], [ -74.162727355957031, -15.480399131774846 ], [ -74.161766052246094, -15.477150917053223 ], [ -74.160469055175724, -15.474525451660099 ], [ -74.159545898437386, -15.470073699951172 ], [ -74.158699035644531, -15.467485427856445 ], [ -74.157943725585938, -15.466388702392578 ], [ -74.155448913574105, -15.464009284973145 ], [ -74.154815673828125, -15.462959289550781 ], [ -74.1549072265625, -15.458112716674805 ], [ -74.154670715331974, -15.456520080566406 ], [ -74.155166625976562, -15.451966285705566 ], [ -74.155036926269474, -15.449001312255859 ], [ -74.154800415039062, -15.448232650756779 ], [ -74.154922485351562, -15.445548057556152 ], [ -74.154327392578125, -15.442770004272461 ], [ -74.154098510742131, -15.439009666442814 ], [ -74.153625488281193, -15.435807228088322 ], [ -74.152381896972599, -15.430279731750431 ], [ -74.151863098144531, -15.429019927978459 ], [ -74.149833679199219, -15.42702579498291 ], [ -74.148994445800781, -15.426533699035645 ], [ -74.146987915039062, -15.426028251647949 ], [ -74.142127990722656, -15.425991058349553 ], [ -74.139053344726562, -15.426774978637638 ], [ -74.137580871581974, -15.426381111144963 ], [ -74.136909484863224, -15.425517082214355 ], [ -74.135993957519418, -15.421709060668945 ], [ -74.134963989257812, -15.418778419494629 ], [ -74.133255004882812, -15.415850639343205 ], [ -74.131660461425781, -15.413972854614258 ], [ -74.130249023437443, -15.413133621215763 ], [ -74.128555297851449, -15.412468910217228 ], [ -74.123680114746037, -15.411411285400391 ], [ -74.119667053222599, -15.411293029785099 ], [ -74.116020202636719, -15.411912918090763 ], [ -74.115173339843693, -15.411855697631836 ], [ -74.114814758300724, -15.411286354064941 ], [ -74.113616943359375, -15.407628059387207 ], [ -74.109924316406193, -15.403238296508732 ], [ -74.108070373535156, -15.401622772216797 ], [ -74.104095458984375, -15.399145126342717 ], [ -74.097084045410043, -15.39277267456049 ], [ -74.09576416015625, -15.392024993896428 ], [ -74.092872619628849, -15.392230033874512 ], [ -74.091918945312443, -15.392045974731445 ], [ -74.088104248046818, -15.390447616577092 ], [ -74.086997985839844, -15.390598297119084 ], [ -74.085983276367131, -15.391298294067326 ], [ -74.083152770996037, -15.394957542419377 ], [ -74.080116271972656, -15.398098945617676 ], [ -74.078674316406136, -15.39871883392334 ], [ -74.075294494628906, -15.398928642272949 ], [ -74.073822021484375, -15.399943351745605 ], [ -74.072929382324162, -15.400979995727539 ], [ -74.072677612304688, -15.402705192565804 ], [ -74.071945190429688, -15.403887748718262 ], [ -74.070060729980412, -15.403779029846135 ], [ -74.067466735839844, -15.402738571166935 ], [ -74.065521240234375, -15.402457237243652 ], [ -74.064735412597599, -15.402915000915527 ], [ -74.062835693359318, -15.404925346374512 ], [ -74.062026977539062, -15.406321525573674 ], [ -74.060058593749943, -15.407281875610352 ], [ -74.058815002441349, -15.408161163329964 ], [ -74.057289123535099, -15.412314414977971 ], [ -74.0537109375, -15.417504310607853 ], [ -74.05316162109375, -15.419149398803654 ], [ -74.052703857421818, -15.421804428100586 ], [ -74.050285339355469, -15.426727294921818 ], [ -74.047576904296818, -15.436858177185059 ], [ -74.046997070312443, -15.440752983093148 ], [ -74.046546936035156, -15.442279815673771 ], [ -74.044624328613224, -15.445823669433537 ], [ -74.041740417480412, -15.450132369995117 ], [ -74.040542602539062, -15.451764106750431 ], [ -74.038230895996037, -15.453904151916504 ], [ -74.037628173828125, -15.454806327819824 ], [ -74.037635803222599, -15.455746650695744 ], [ -74.038124084472599, -15.457158088684082 ], [ -74.042015075683594, -15.462879180908146 ], [ -74.042350769042969, -15.464048385620117 ], [ -74.042594909667912, -15.466072082519531 ], [ -74.042419433593693, -15.46849536895752 ], [ -74.041389465331918, -15.473679542541447 ], [ -74.039237976074219, -15.479510307312012 ], [ -74.038948059082031, -15.480673789978027 ], [ -74.038963317871094, -15.481893539428654 ], [ -74.039230346679688, -15.483224868774414 ], [ -74.039733886718693, -15.484348297119084 ], [ -74.042137145996037, -15.487124443054199 ], [ -74.042739868164062, -15.490851402282715 ], [ -74.043075561523381, -15.49161243438715 ], [ -74.043853759765568, -15.492382049560547 ], [ -74.045166015624943, -15.492741584777775 ], [ -74.049629211425781, -15.492877006530762 ], [ -74.051269531249943, -15.493203163146973 ], [ -74.056663513183594, -15.496264457702637 ], [ -74.060241699218693, -15.499449729919434 ], [ -74.061447143554688, -15.500124931335449 ], [ -74.064552307128849, -15.500842094421387 ], [ -74.066490173339844, -15.500723838806096 ], [ -74.068679809570312, -15.501076698303109 ], [ -74.071449279785156, -15.500844955444336 ], [ -74.072929382324162, -15.501564979553223 ], [ -74.074386596679574, -15.502999305725098 ], [ -74.074554443359318, -15.505792617797852 ], [ -74.073692321777287, -15.507804870605412 ], [ -74.073791503906193, -15.509659767150765 ], [ -74.074295043945312, -15.510421752929688 ], [ -74.076126098632812, -15.511576652526799 ], [ -74.077697753906193, -15.513652801513672 ], [ -74.077888488769474, -15.514839172363281 ], [ -74.077690124511662, -15.516484260559082 ], [ -74.076377868652287, -15.519224166870117 ], [ -74.075431823730355, -15.522973060607853 ], [ -74.073753356933594, -15.525531768798771 ], [ -74.073318481445256, -15.526551246643066 ], [ -74.071182250976562, -15.529580116271916 ], [ -74.070915222167912, -15.532797813415527 ], [ -74.070503234863281, -15.534304618835392 ], [ -74.069648742675781, -15.535278320312443 ], [ -74.066879272460938, -15.53750038146967 ], [ -74.066619873046875, -15.539214134216309 ], [ -74.06689453125, -15.540291786193848 ], [ -74.067489624023381, -15.541235923767033 ], [ -74.070747375488224, -15.544547080993652 ], [ -74.072303771972656, -15.547284126281738 ], [ -74.075347900390625, -15.550696372985783 ], [ -74.075698852539006, -15.551360130310002 ], [ -74.075950622558594, -15.554479598998967 ], [ -74.074150085449219, -15.558917045593148 ], [ -74.073554992675781, -15.561798095703011 ], [ -74.07354736328125, -15.56345272064209 ], [ -74.076667785644474, -15.566540718078613 ], [ -74.076881408691406, -15.570301055908203 ], [ -74.077438354492074, -15.57215690612793 ], [ -74.077552795410156, -15.573719978332463 ], [ -74.078086853027287, -15.576055526733285 ], [ -74.077980041503849, -15.579264640808105 ], [ -74.078727722167969, -15.580559730529785 ], [ -74.079689025878849, -15.581168174743652 ], [ -74.080978393554688, -15.582693099975586 ], [ -74.081550598144531, -15.583950996398812 ], [ -74.081649780273438, -15.585516929626408 ], [ -74.082000732421818, -15.586666107177678 ], [ -74.084465026855412, -15.59202766418457 ], [ -74.083877563476562, -15.595280647277775 ], [ -74.082878112792969, -15.5972642898559 ], [ -74.082397460937386, -15.59885215759266 ], [ -74.082382202148381, -15.600055694580078 ], [ -74.083084106445312, -15.601025581359863 ], [ -74.083305358886719, -15.602492332458439 ], [ -74.082687377929688, -15.604132652282715 ], [ -74.082534790039062, -15.60587024688715 ], [ -74.081611633300724, -15.607889175414982 ], [ -74.080795288085938, -15.611014366149902 ], [ -74.080642700195256, -15.614130973815804 ], [ -74.080894470214844, -15.615219116210938 ], [ -74.081336975097599, -15.615906715393066 ], [ -74.084083557128849, -15.618023872375488 ], [ -74.084220886230469, -15.618694305419922 ], [ -74.084068298339844, -15.619107246398869 ], [ -74.082710266113281, -15.620141983032227 ], [ -74.079391479492188, -15.621891975402775 ], [ -74.077362060546875, -15.622669219970703 ], [ -74.074325561523438, -15.624520301818848 ], [ -74.071357727050781, -15.627580642700195 ], [ -74.069129943847599, -15.628790855407658 ], [ -74.065994262695199, -15.629520416259766 ], [ -74.063941955566406, -15.629149436950684 ], [ -74.061233520507812, -15.628323554992676 ], [ -74.057533264160156, -15.626254081726074 ], [ -74.054100036621094, -15.623656272888127 ], [ -74.051155090332031, -15.622646331786996 ], [ -74.050148010253849, -15.621803283691406 ], [ -74.04940032958973, -15.620506286621094 ], [ -74.048660278320312, -15.617584228515568 ], [ -74.047073364257756, -15.616004943847656 ], [ -74.045272827148381, -15.614966392517033 ], [ -74.043579101562386, -15.614373207092171 ], [ -74.040550231933594, -15.612659454345703 ], [ -74.038162231445312, -15.612044334411621 ], [ -74.03570556640625, -15.611082077026367 ], [ -74.033676147460938, -15.609563827514648 ], [ -74.031066894531193, -15.608096122741642 ], [ -74.029708862304688, -15.606951713561955 ], [ -74.027603149414062, -15.605777740478516 ], [ -74.025703430175781, -15.604394912719727 ], [ -74.024375915527287, -15.603079795837402 ], [ -74.023437499999943, -15.601265907287598 ], [ -74.022773742675724, -15.60044956207264 ], [ -74.022010803222599, -15.600173950195312 ], [ -74.019721984863224, -15.5999755859375 ], [ -74.019020080566406, -15.599501609802246 ], [ -74.018661499023381, -15.598642349243107 ], [ -74.018569946289006, -15.596987724304199 ], [ -74.018791198730469, -15.593020439147892 ], [ -74.019149780273381, -15.591791152953988 ], [ -74.018653869628849, -15.591346740722599 ], [ -74.016883850097656, -15.591075897216683 ], [ -74.016029357910156, -15.590203285217285 ], [ -74.015457153320312, -15.584716796875 ], [ -74.014198303222599, -15.58193397521967 ], [ -74.014320373535156, -15.581212043762207 ], [ -74.013771057128906, -15.578408241271916 ], [ -74.013816833496037, -15.575831413269043 ], [ -74.01287841796875, -15.571325302124023 ], [ -74.012260437011719, -15.570092201232853 ], [ -74.011344909667855, -15.569285392761174 ], [ -74.010726928710938, -15.56901836395258 ], [ -74.00909423828125, -15.567094802856332 ], [ -74.00972747802723, -15.565274238586426 ], [ -74.011283874511719, -15.563111305236816 ], [ -74.011062622070199, -15.561745643615723 ], [ -74.010040283203125, -15.559453010559082 ], [ -74.009490966796875, -15.558962821960449 ], [ -74.00689697265625, -15.558461189269963 ], [ -74.004241943359375, -15.557050704955998 ], [ -74.003578186035156, -15.557055473327637 ], [ -74.002716064453125, -15.556680679321232 ], [ -74.001945495605469, -15.555999755859375 ], [ -74.001937866210938, -15.55562782287592 ], [ -74.000808715820312, -15.554150581359863 ], [ -73.999801635742131, -15.553440093994141 ], [ -73.99755859375, -15.553395271301213 ], [ -73.997138977050668, -15.553175926208439 ], [ -73.99532318115223, -15.551160812377873 ], [ -73.994537353515568, -15.549295425415039 ], [ -73.9910888671875, -15.545263290405273 ], [ -73.98992919921875, -15.542384147643986 ], [ -73.989776611328068, -15.541108131408635 ], [ -73.989402770996037, -15.540575027465763 ], [ -73.988204956054688, -15.540353775024357 ], [ -73.985664367675724, -15.541044235229435 ], [ -73.982864379882812, -15.540716171264648 ], [ -73.981407165527344, -15.539696693420296 ], [ -73.980690002441406, -15.539450645446721 ], [ -73.978080749511719, -15.537178993225098 ], [ -73.97701263427723, -15.536848068237248 ], [ -73.976356506347656, -15.536175727844238 ], [ -73.973266601562443, -15.534037590026855 ], [ -73.972381591796875, -15.533714294433594 ], [ -73.970542907714844, -15.533491134643498 ], [ -73.969711303710938, -15.533035278320312 ], [ -73.969284057617131, -15.529960632324219 ], [ -73.968132019042912, -15.528156280517578 ], [ -73.967239379882812, -15.527337074279785 ], [ -73.96588134765625, -15.526672363281193 ], [ -73.964584350585881, -15.525455474853459 ], [ -73.962745666503906, -15.524506568908635 ], [ -73.961349487304631, -15.523368835449105 ], [ -73.96089935302723, -15.522689819335881 ], [ -73.960350036621094, -15.521015167236328 ], [ -73.959739685058537, -15.52008056640625 ], [ -73.955528259277287, -15.515957832336426 ], [ -73.954460144042969, -15.514668464660645 ], [ -73.953216552734375, -15.513660430908203 ], [ -73.953201293945312, -15.513197898864689 ], [ -73.954574584960881, -15.511958122253361 ], [ -73.95489501953125, -15.511225700378361 ], [ -73.95489501953125, -15.509943008422795 ], [ -73.954078674316406, -15.508094787597599 ], [ -73.953063964843693, -15.506535530090332 ], [ -73.950393676757756, -15.503711700439396 ], [ -73.950500488281136, -15.501532554626465 ], [ -73.950149536132812, -15.501097679138127 ], [ -73.950057983398438, -15.500454902648926 ], [ -73.946853637695256, -15.495784759521428 ], [ -73.945869445800781, -15.492608070373535 ], [ -73.945381164550781, -15.489702224731445 ], [ -73.944664001464787, -15.488300323486328 ], [ -73.9404296875, -15.483995437622013 ], [ -73.93707275390625, -15.481925964355469 ], [ -73.93536376953125, -15.480462074279728 ], [ -73.931686401367131, -15.47651290893549 ], [ -73.929267883300781, -15.473102569580021 ], [ -73.925537109375, -15.470606803893929 ], [ -73.920608520507812, -15.464173316955566 ], [ -73.91278076171875, -15.456415176391602 ], [ -73.908622741699162, -15.453766822814885 ], [ -73.906425476074162, -15.453202247619515 ], [ -73.903915405273438, -15.452123641967773 ], [ -73.897308349609375, -15.450510025024414 ], [ -73.895454406738224, -15.449560165405273 ], [ -73.894012451171818, -15.448099136352539 ], [ -73.892631530761719, -15.446123123168945 ], [ -73.891708374023438, -15.444101333618164 ], [ -73.891456604003849, -15.443022727966252 ], [ -73.89111328125, -15.44257926940918 ], [ -73.890769958496037, -15.441239356994629 ], [ -73.889457702636662, -15.439224243164006 ], [ -73.888504028320256, -15.438608169555607 ], [ -73.886627197265625, -15.43799972534174 ], [ -73.883026123046875, -15.437820434570199 ], [ -73.880859374999943, -15.43795204162592 ], [ -73.877510070800724, -15.438567161560059 ], [ -73.877006530761719, -15.438314437866154 ], [ -73.876205444335881, -15.437404632568303 ], [ -73.875350952148324, -15.435764312744141 ], [ -73.873672485351562, -15.433417320251465 ], [ -73.871070861816406, -15.428718566894531 ], [ -73.870323181152344, -15.426627159118596 ], [ -73.869789123535099, -15.423921585082951 ], [ -73.868972778320312, -15.421271324157658 ], [ -73.868949890136662, -15.418965339660531 ], [ -73.869247436523324, -15.417711257934513 ], [ -73.870002746581974, -15.41622257232666 ], [ -73.870697021484375, -15.415240287780762 ], [ -73.872871398925668, -15.413064002990723 ], [ -73.873710632324162, -15.411225318908635 ], [ -73.871536254882699, -15.405662536621037 ], [ -73.870452880859318, -15.400586128234863 ], [ -73.870552062988224, -15.398841857910156 ], [ -73.871894836425724, -15.396001815795785 ], [ -73.875701904296818, -15.391439437866211 ], [ -73.876579284667912, -15.389896392822266 ], [ -73.876937866210881, -15.388768196105957 ], [ -73.876502990722656, -15.387454986572209 ], [ -73.8720703125, -15.381711959838867 ], [ -73.871528625488224, -15.37974739074707 ], [ -73.871795654296818, -15.378691673278809 ], [ -73.87384033203125, -15.374435424804688 ], [ -73.874839782714787, -15.370887756347656 ], [ -73.874931335449219, -15.366648674011174 ], [ -73.87451171875, -15.363184928893986 ], [ -73.874626159667969, -15.360979080200138 ], [ -73.874420166015625, -15.357145309448242 ], [ -73.875404357910156, -15.354962348937931 ], [ -73.877212524414062, -15.352169990539494 ], [ -73.877769470214844, -15.350312232971191 ], [ -73.878028869628906, -15.345999717712402 ], [ -73.879074096679574, -15.343147277832031 ], [ -73.880729675292969, -15.340571403503418 ], [ -73.884010314941349, -15.33767032623291 ], [ -73.884078979492188, -15.337381362915039 ], [ -73.883384704589844, -15.337186813354492 ], [ -73.882560729980469, -15.337408065795898 ], [ -73.880867004394474, -15.337455749511719 ], [ -73.877983093261719, -15.336952209472656 ], [ -73.876502990722656, -15.336320877075195 ], [ -73.873748779296875, -15.334525108337402 ], [ -73.868705749511719, -15.329807281494141 ], [ -73.866836547851506, -15.326065063476562 ], [ -73.866508483886719, -15.324817657470703 ], [ -73.866531372070312, -15.323895454406738 ], [ -73.866241455078125, -15.323495864868107 ], [ -73.860847473144474, -15.325151443481445 ], [ -73.858489990234375, -15.325328826904297 ], [ -73.855438232421875, -15.325898170471191 ], [ -73.853065490722656, -15.325898170471191 ], [ -73.847549438476562, -15.326663970947266 ], [ -73.838478088378906, -15.326967239379883 ], [ -73.827056884765625, -15.325996398925781 ], [ -73.816383361816349, -15.325714111328125 ], [ -73.812332153320312, -15.325340270996094 ], [ -73.808807373046875, -15.324310302734318 ], [ -73.80682373046875, -15.324335098266602 ], [ -73.804939270019474, -15.32515811920166 ], [ -73.802650451660099, -15.327357292175236 ], [ -73.801307678222656, -15.329556465148926 ], [ -73.799064636230469, -15.334830284118652 ], [ -73.793388366699219, -15.339682579040527 ], [ -73.792900085449219, -15.339743614196721 ], [ -73.792434692382812, -15.339461326599064 ], [ -73.791717529296761, -15.338579177856388 ], [ -73.79152679443348, -15.337955474853459 ], [ -73.790199279785156, -15.337080001831055 ], [ -73.787200927734318, -15.336919784545898 ], [ -73.785476684570312, -15.336450576782227 ], [ -73.782768249511719, -15.336796760559082 ], [ -73.780464172363168, -15.338203430175781 ], [ -73.776504516601562, -15.338397026061955 ], [ -73.77532958984375, -15.338736534118652 ], [ -73.775115966796818, -15.339103698730412 ], [ -73.776054382324162, -15.339570999145508 ], [ -73.779342651367188, -15.343141555786076 ], [ -73.779853820800724, -15.344425201415959 ], [ -73.779670715331974, -15.346161842346135 ], [ -73.779060363769531, -15.347199440002441 ], [ -73.771888732910156, -15.354146003723145 ], [ -73.771102905273381, -15.35516166687006 ], [ -73.77016448974598, -15.358537673950195 ], [ -73.767143249511719, -15.363340377807617 ], [ -73.765937805175724, -15.365718841552678 ], [ -73.764839172363281, -15.369057655334416 ], [ -73.763572692871037, -15.375377655029297 ], [ -73.762687683105412, -15.377805709838867 ], [ -73.759773254394531, -15.382959365844727 ], [ -73.758964538574219, -15.385050773620549 ], [ -73.758255004882812, -15.386195182800236 ], [ -73.756240844726449, -15.387746810913086 ], [ -73.753875732421875, -15.389242172241211 ], [ -73.752662658691406, -15.389760017394963 ], [ -73.748390197753849, -15.393100738525391 ], [ -73.744422912597656, -15.395472526550293 ], [ -73.739364624023438, -15.40003585815424 ], [ -73.736984252929688, -15.40168571472168 ], [ -73.731689453125, -15.406267166137638 ], [ -73.7281494140625, -15.408875465393066 ], [ -73.724617004394531, -15.410825729370117 ], [ -73.723190307617188, -15.411288261413461 ], [ -73.720420837402344, -15.412690162658691 ], [ -73.719146728515625, -15.413026809692383 ], [ -73.717445373535156, -15.414018630981388 ], [ -73.714218139648438, -15.415419578552246 ], [ -73.707382202148381, -15.419681549072209 ], [ -73.704711914062443, -15.422153472900334 ], [ -73.701148986816406, -15.427680015563908 ], [ -73.698791503906193, -15.430316925048828 ], [ -73.696990966796818, -15.433134078979492 ], [ -73.696128845214787, -15.434096336364746 ], [ -73.693962097167855, -15.435584068298283 ], [ -73.692054748535043, -15.436587333679199 ], [ -73.688796997070256, -15.437471389770451 ], [ -73.688369750976562, -15.437243461608887 ], [ -73.688133239746037, -15.437473297119141 ], [ -73.687377929687443, -15.437507629394474 ], [ -73.685562133789006, -15.436963081359806 ], [ -73.680442810058594, -15.434590339660588 ], [ -73.677215576171875, -15.43249320983881 ], [ -73.676033020019418, -15.432153701782227 ], [ -73.673919677734318, -15.431118965148926 ], [ -73.67236328125, -15.430702209472656 ], [ -73.669906616210881, -15.429159164428654 ], [ -73.663917541503849, -15.426863670349121 ], [ -73.661216735839787, -15.42498588562006 ], [ -73.658782958984375, -15.422945976257324 ], [ -73.657409667968693, -15.421412467956543 ], [ -73.655479431152344, -15.418680191039982 ], [ -73.653884887695256, -15.417440414428654 ], [ -73.652488708496094, -15.417241096496525 ], [ -73.649925231933594, -15.417288780212346 ], [ -73.645423889160043, -15.417896270751953 ], [ -73.644699096679688, -15.417808532714844 ], [ -73.643814086914062, -15.417252540588379 ], [ -73.642868041992188, -15.417145729064885 ], [ -73.641891479492074, -15.417485237121582 ], [ -73.639015197753849, -15.419246673583984 ], [ -73.637397766113224, -15.419753074645939 ], [ -73.634025573730469, -15.420174598693791 ], [ -73.631881713867074, -15.419792175292912 ], [ -73.629989624023438, -15.419815063476562 ], [ -73.626663208007812, -15.42047119140625 ], [ -73.624488830566406, -15.420522689819336 ], [ -73.623573303222599, -15.42092227935791 ], [ -73.623306274414062, -15.420687675476074 ], [ -73.620857238769531, -15.420463562011605 ], [ -73.612922668457031, -15.419039726257324 ], [ -73.610572814941406, -15.418050765991211 ], [ -73.606193542480412, -15.414116859436035 ], [ -73.602645874023438, -15.410174369812012 ], [ -73.600006103515568, -15.407652854919377 ], [ -73.596885681152344, -15.405527114868107 ], [ -73.594184875488224, -15.404236793518066 ], [ -73.592117309570312, -15.404131889343148 ], [ -73.589241027831974, -15.40485668182373 ], [ -73.581596374511662, -15.405040740966797 ], [ -73.574684143066406, -15.406778335571175 ], [ -73.571311950683537, -15.40701961517334 ], [ -73.568153381347599, -15.407583236694336 ], [ -73.567497253417912, -15.407472610473633 ], [ -73.56610107421875, -15.407698631286621 ], [ -73.562133789062443, -15.407816886901799 ], [ -73.55999755859375, -15.40819263458252 ], [ -73.558769226074219, -15.408165931701603 ], [ -73.556556701660156, -15.407339096069279 ], [ -73.554618835449162, -15.406901359557992 ], [ -73.550056457519418, -15.404664993286076 ], [ -73.548042297363224, -15.403298377990666 ], [ -73.544624328613281, -15.401711463928223 ], [ -73.537750244140511, -15.397290229797306 ], [ -73.532913208007812, -15.39351844787592 ], [ -73.529838562011605, -15.391708374023438 ], [ -73.528526306152344, -15.391518592834473 ], [ -73.522712707519531, -15.389581680297795 ], [ -73.516563415527287, -15.387208938598576 ], [ -73.5130615234375, -15.386425018310547 ], [ -73.505577087402287, -15.383314132690373 ], [ -73.503555297851562, -15.383027076721191 ], [ -73.497917175292969, -15.383423805236816 ], [ -73.494323730468693, -15.383199691772404 ], [ -73.488189697265625, -15.381523132324162 ], [ -73.484962463378906, -15.379855155944824 ], [ -73.483551025390568, -15.379396438598576 ], [ -73.479232788085938, -15.379555702209416 ], [ -73.4779052734375, -15.379311561584473 ], [ -73.471397399902344, -15.374204635620117 ], [ -73.467559814453011, -15.372469902038461 ], [ -73.464431762695312, -15.370462417602539 ], [ -73.457809448242131, -15.364514350891113 ], [ -73.456832885742188, -15.364065170288086 ], [ -73.453018188476562, -15.363133430480957 ], [ -73.451721191406193, -15.36218357086176 ], [ -73.448905944824219, -15.359326362609806 ], [ -73.447097778320312, -15.357831001281625 ], [ -73.441169738769531, -15.35557746887207 ], [ -73.440856933593636, -15.355818748474121 ], [ -73.437980651855412, -15.35624980926508 ], [ -73.434860229492188, -15.3587131500243 ], [ -73.432083129882699, -15.359536170959416 ], [ -73.429779052734318, -15.360495567321777 ], [ -73.428123474121094, -15.361694335937443 ], [ -73.427124023437386, -15.36316013336176 ], [ -73.426864624023438, -15.364631652832031 ], [ -73.427047729492188, -15.365807533264103 ], [ -73.428306579589844, -15.367768287658691 ], [ -73.430686950683594, -15.370749473571721 ], [ -73.431594848632756, -15.372582435607853 ], [ -73.431632995605469, -15.374444007873535 ], [ -73.431297302246037, -15.377144813537598 ], [ -73.430931091308537, -15.378586769103947 ], [ -73.430595397949219, -15.37901782989502 ], [ -73.429786682128849, -15.379022598266545 ], [ -73.428443908691349, -15.378328323364201 ], [ -73.427192687988224, -15.378297805786133 ], [ -73.424530029296818, -15.379056930541992 ], [ -73.422508239746094, -15.380037307739258 ], [ -73.421249389648438, -15.380072593688908 ], [ -73.418182373046875, -15.3785142898559 ], [ -73.417762756347599, -15.377987861633301 ], [ -73.417449951171875, -15.376251220703125 ], [ -73.416915893554631, -15.376067161560002 ], [ -73.414978027343693, -15.37916183471674 ], [ -73.408447265625, -15.384781837463379 ], [ -73.407287597656136, -15.38611984252924 ], [ -73.405303955078125, -15.389041900634766 ], [ -73.403274536132756, -15.39125919342041 ], [ -73.401252746581974, -15.392656326293888 ], [ -73.395637512206974, -15.395316123962402 ], [ -73.393875122070312, -15.396832466125431 ], [ -73.392677307128849, -15.398694038391113 ], [ -73.392021179199162, -15.399276733398381 ], [ -73.391212463378906, -15.399271011352539 ], [ -73.389976501464844, -15.398203849792424 ], [ -73.386093139648381, -15.397210121154728 ], [ -73.382743835449162, -15.393976211547795 ], [ -73.382148742675781, -15.393638610839787 ], [ -73.377166748046875, -15.39157772064209 ], [ -73.372161865234318, -15.38997840881342 ], [ -73.36859130859375, -15.387918472290039 ], [ -73.366165161132756, -15.387393951416016 ], [ -73.362014770507812, -15.387672424316406 ], [ -73.358795166015625, -15.388522148132324 ], [ -73.355583190917912, -15.390081405639592 ], [ -73.353515625, -15.391881942748967 ], [ -73.352127075195312, -15.392784118652287 ], [ -73.346725463867131, -15.394957542419377 ], [ -73.345062255859375, -15.396311759948617 ], [ -73.343177795410099, -15.398295402526799 ], [ -73.340370178222656, -15.40167331695551 ], [ -73.338905334472599, -15.403956413269043 ], [ -73.337821960449219, -15.40458965301508 ], [ -73.337028503417969, -15.404738426208496 ], [ -73.336219787597599, -15.404597282409611 ], [ -73.334274291992188, -15.403559684753304 ], [ -73.332183837890625, -15.402857780456486 ], [ -73.328407287597599, -15.402947425842285 ], [ -73.326385498046818, -15.402662277221623 ], [ -73.321098327636719, -15.400604248046818 ], [ -73.316101074218693, -15.400575637817326 ], [ -73.312713623046875, -15.399863243103027 ], [ -73.31060791015625, -15.398827552795353 ], [ -73.308326721191406, -15.396478652953988 ], [ -73.306663513183537, -15.395255088806096 ], [ -73.301300048828068, -15.393415451049748 ], [ -73.296226501464844, -15.39203929901123 ], [ -73.293312072753849, -15.392088890075627 ], [ -73.291580200195256, -15.392580986022892 ], [ -73.290054321289006, -15.393527030944767 ], [ -73.287208557128849, -15.395936012268066 ], [ -73.286170959472543, -15.396480560302734 ], [ -73.282676696777344, -15.39546012878418 ], [ -73.278541564941293, -15.395074844360352 ], [ -73.275230407714844, -15.393051147460938 ], [ -73.276443481445199, -15.391885757446232 ], [ -73.279571533203068, -15.39014720916748 ], [ -73.280502319335938, -15.38913536071766 ], [ -73.281936645507812, -15.385637283325195 ], [ -73.282066345214787, -15.383218765258732 ], [ -73.283782958984318, -15.381305694580078 ], [ -73.283882141113168, -15.379165649414006 ], [ -73.284217834472656, -15.377739906310978 ], [ -73.284942626953125, -15.376436233520451 ], [ -73.291030883789006, -15.370879173278809 ], [ -73.291290283203068, -15.369344711303711 ], [ -73.291488647460881, -15.363527297973633 ], [ -73.292488098144531, -15.361292839050236 ], [ -73.293861389160099, -15.359585762023926 ], [ -73.294036865234375, -15.358567237853947 ], [ -73.293701171874943, -15.354344367980957 ], [ -73.293579101562443, -15.353836059570312 ], [ -73.292861938476562, -15.353009223937988 ], [ -73.292831420898381, -15.350315093994141 ], [ -73.292526245117131, -15.3497056961059 ], [ -73.29103851318348, -15.348493576049748 ], [ -73.291366577148438, -15.346110343933105 ], [ -73.290122985839844, -15.344500541686955 ], [ -73.290206909179688, -15.343959808349553 ], [ -73.291610717773324, -15.342288017272949 ], [ -73.291877746581974, -15.341524124145451 ], [ -73.291778564453068, -15.340446472167912 ], [ -73.290687561035156, -15.339271545410099 ], [ -73.291069030761719, -15.336997985839787 ], [ -73.290969848632812, -15.334438323974553 ], [ -73.289985656738168, -15.33302116394043 ], [ -73.288543701171818, -15.332196235656738 ], [ -73.286956787109375, -15.330702781677132 ], [ -73.286628723144474, -15.330094337463379 ], [ -73.286621093749943, -15.329154968261719 ], [ -73.286300659179688, -15.328123092651367 ], [ -73.284843444824219, -15.326504707336426 ], [ -73.284172058105355, -15.324889183044434 ], [ -73.282073974609261, -15.32237720489502 ], [ -73.281105041503849, -15.31957817077631 ], [ -73.280220031738281, -15.31871223449707 ], [ -73.278694152832031, -15.317779541015625 ], [ -73.278007507324219, -15.316773414611816 ], [ -73.278282165527344, -15.31572437286377 ], [ -73.279151916503906, -15.314186096191406 ], [ -73.281967163085881, -15.311849594116211 ], [ -73.282630920410099, -15.310970306396428 ], [ -73.282005310058594, -15.308994293212891 ], [ -73.282913208007756, -15.307781219482422 ], [ -73.282615661621037, -15.305539131164494 ], [ -73.283866882324162, -15.302988052368107 ], [ -73.283218383788949, -15.301359176635742 ], [ -73.284660339355469, -15.299344062805119 ], [ -73.284919738769474, -15.29863262176508 ], [ -73.284423828124943, -15.296360969543457 ], [ -73.284561157226562, -15.294345855712891 ], [ -73.283401489257756, -15.29389476776123 ], [ -73.278938293457031, -15.290065765380803 ], [ -73.276618957519474, -15.288852691650334 ], [ -73.274826049804574, -15.288649559020996 ], [ -73.271682739257812, -15.28911304473877 ], [ -73.2689208984375, -15.288937568664551 ], [ -73.265724182128906, -15.288037300109863 ], [ -73.262779235839787, -15.286225318908691 ], [ -73.261749267578068, -15.285938262939453 ], [ -73.259368896484318, -15.286125183105469 ], [ -73.254234313964844, -15.287207603454533 ], [ -73.250923156738281, -15.286820411682129 ], [ -73.248298645019474, -15.28605937957758 ], [ -73.245773315429688, -15.286807060241642 ], [ -73.241592407226562, -15.289673805236816 ], [ -73.239395141601562, -15.290487289428711 ], [ -73.237129211425724, -15.292043685913029 ], [ -73.234359741210881, -15.293358802795353 ], [ -73.231895446777287, -15.29426193237299 ], [ -73.226531982421818, -15.295619964599553 ], [ -73.222709655761719, -15.297215461730957 ], [ -73.221206665039006, -15.297419548034554 ], [ -73.219963073730412, -15.297238349914494 ], [ -73.212440490722599, -15.293204307556096 ], [ -73.211349487304688, -15.293058395385742 ], [ -73.209396362304631, -15.293260574340763 ], [ -73.206657409667969, -15.294196128845215 ], [ -73.205421447753906, -15.295034408569336 ], [ -73.197891235351562, -15.298788070678654 ], [ -73.192619323730355, -15.300841331481877 ], [ -73.188179016113281, -15.304050445556641 ], [ -73.185562133788949, -15.305286407470703 ], [ -73.182899475097656, -15.305896759033146 ], [ -73.180961608886662, -15.305898666381836 ], [ -73.177955627441406, -15.305422782897892 ], [ -73.17462158203125, -15.306425094604435 ], [ -73.172210693359261, -15.305890083312988 ], [ -73.16973876953125, -15.304018974304199 ], [ -73.168937683105412, -15.302756309509164 ], [ -73.167816162109318, -15.29985523223877 ], [ -73.163581848144531, -15.295590400695801 ], [ -73.163322448730412, -15.294829368591252 ], [ -73.162895202636719, -15.290677070617619 ], [ -73.16204833984375, -15.289127349853459 ], [ -73.160675048828125, -15.287397384643555 ], [ -73.159706115722599, -15.285292625427189 ], [ -73.158729553222599, -15.284832954406738 ], [ -73.154106140136719, -15.283927917480469 ], [ -73.153518676757699, -15.283560752868596 ], [ -73.153022766113224, -15.282879829406738 ], [ -73.152099609375, -15.279916763305607 ], [ -73.151992797851449, -15.278170585632324 ], [ -73.150070190429631, -15.274695396423283 ], [ -73.149612426757812, -15.273470878601017 ], [ -73.150001525878906, -15.271739006042424 ], [ -73.150352478027287, -15.266607284545898 ], [ -73.150382995605469, -15.260445594787541 ], [ -73.149971008300724, -15.259566307067871 ], [ -73.149238586425781, -15.258746147155762 ], [ -73.147026062011662, -15.257590293884277 ], [ -73.141937255859375, -15.25672435760498 ], [ -73.13970947265625, -15.255647659301758 ], [ -73.138404846191406, -15.252828598022404 ], [ -73.137626647949219, -15.24913501739502 ], [ -73.137649536132756, -15.24792385101307 ], [ -73.136238098144474, -15.24398231506342 ], [ -73.135429382324219, -15.242728233337402 ], [ -73.133071899414006, -15.240637779235783 ], [ -73.129562377929631, -15.239976882934513 ], [ -73.126533508300781, -15.235468864440918 ], [ -73.121162414550724, -15.231439590454102 ], [ -73.12066650390625, -15.230629920959473 ], [ -73.120094299316406, -15.228799819946232 ], [ -73.119667053222656, -15.224919319152832 ], [ -73.116897583007699, -15.221582412719727 ], [ -73.116203308105412, -15.218268394470215 ], [ -73.115516662597656, -15.216941833496037 ], [ -73.115509033203125, -15.215739250183105 ], [ -73.114013671874943, -15.211399078369084 ], [ -73.113395690917969, -15.20862960815424 ], [ -73.112380981445256, -15.206876754760685 ], [ -73.112274169921875, -15.204022407531738 ], [ -73.112632751464844, -15.203301429748478 ], [ -73.112670898437443, -15.202350616455021 ], [ -73.112113952636662, -15.200684547424316 ], [ -73.111328124999943, -15.199575424194336 ], [ -73.111038208007812, -15.198687553405705 ], [ -73.11098480224598, -15.197195053100586 ], [ -73.112129211425668, -15.193319320678654 ], [ -73.112480163574162, -15.190384864807129 ], [ -73.112167358398438, -15.187563896179199 ], [ -73.111869812011719, -15.186808586120605 ], [ -73.111175537109261, -15.185946464538574 ], [ -73.110382080078068, -15.185435295104924 ], [ -73.109405517578125, -15.185407638549748 ], [ -73.108955383300724, -15.185745239257756 ], [ -73.105659484863281, -15.186117172241211 ], [ -73.102485656738224, -15.187075614929086 ], [ -73.101470947265625, -15.187129020690918 ], [ -73.100723266601562, -15.186898231506291 ], [ -73.100212097167969, -15.185763359069824 ], [ -73.099807739257756, -15.183238029479924 ], [ -73.099037170410099, -15.181506156921387 ], [ -73.098083496093693, -15.180350303649902 ], [ -73.095870971679688, -15.178516387939339 ], [ -73.094703674316406, -15.177186965942383 ], [ -73.090927124023381, -15.171696662902832 ], [ -73.089866638183594, -15.169502258300781 ], [ -73.08251953125, -15.163385391235295 ], [ -73.079582214355412, -15.162599563598633 ], [ -73.076942443847656, -15.162910461425781 ], [ -73.075645446777344, -15.163379669189453 ], [ -73.074508666992188, -15.162862777709961 ], [ -73.073707580566406, -15.161304473876953 ], [ -73.073669433593693, -15.158735275268555 ], [ -73.073417663574219, -15.157559394836312 ], [ -73.071960449218693, -15.154211044311467 ], [ -73.070762634277344, -15.153261184692326 ], [ -73.070114135742188, -15.153012275695801 ], [ -73.066986083984318, -15.153773307800236 ], [ -73.06610107421875, -15.153755187988281 ], [ -73.065864562988224, -15.151106834411564 ], [ -73.065223693847656, -15.149186134338379 ], [ -73.063064575195312, -15.14658260345459 ], [ -73.059837341308537, -15.143389701843205 ], [ -73.058631896972656, -15.142728805541992 ], [ -73.054084777832031, -15.142320632934513 ], [ -73.050888061523381, -15.141407012939396 ], [ -73.048126220703068, -15.141328811645508 ], [ -73.047477722167969, -15.14106273651123 ], [ -73.046836853027344, -15.14019870758051 ], [ -73.046615600585938, -15.138314247131348 ], [ -73.048042297363168, -15.134678840637207 ], [ -73.047492980957031, -15.133588790893555 ], [ -73.046707153320199, -15.133083343505859 ], [ -73.044258117675781, -15.132583618164062 ], [ -73.042747497558594, -15.132788658142033 ], [ -73.039894104003906, -15.133785247802678 ], [ -73.036033630371094, -15.133516311645451 ], [ -73.033203125, -15.132324218749943 ], [ -73.028648376464787, -15.129511833190918 ], [ -73.022216796875, -15.128750801086369 ], [ -73.020851135253849, -15.127581596374512 ], [ -73.020301818847656, -15.126655578613281 ], [ -73.019607543945256, -15.124326705932617 ], [ -73.019401550292912, -15.122590065002441 ], [ -73.019561767578125, -15.116266250610295 ], [ -73.020179748535099, -15.111737251281738 ], [ -73.020065307617131, -15.110260009765625 ], [ -73.021339416503793, -15.107293128967228 ], [ -73.022506713867188, -15.103406906127873 ], [ -73.022766113281136, -15.101691246032658 ], [ -73.022720336914062, -15.097526550292912 ], [ -73.023262023925781, -15.095163345336914 ], [ -73.024291992187386, -15.092379570007211 ], [ -73.024314880371094, -15.091150283813477 ], [ -73.021873474121037, -15.0872545242309 ], [ -73.018875122070312, -15.084081649780273 ], [ -73.018455505371037, -15.082839965820256 ], [ -73.017929077148438, -15.079339027404728 ], [ -73.016349792480412, -15.076497077941781 ], [ -73.014976501464844, -15.075175285339299 ], [ -73.011032104492131, -15.072925567626896 ], [ -73.008285522460938, -15.070669174194279 ], [ -73.006271362304574, -15.068114280700684 ], [ -73.004325866699162, -15.063947677612305 ], [ -73.004104614257812, -15.060087203979435 ], [ -73.004463195800781, -15.057686805725041 ], [ -73.006149291992131, -15.054603576660099 ], [ -73.007926940917969, -15.052737236022949 ], [ -73.008193969726562, -15.051547050476017 ], [ -73.007835388183594, -15.050118446350098 ], [ -73.005386352539006, -15.044981002807617 ], [ -73.00494384765625, -15.043288230895996 ], [ -73.004867553710938, -15.039393424987793 ], [ -73.005104064941349, -15.035082817077637 ], [ -73.006011962890625, -15.030736923217717 ], [ -73.005241394042969, -15.024999618530217 ], [ -73.005760192871037, -15.023062705993652 ], [ -73.005805969238281, -15.019963264465332 ], [ -73.0048828125, -15.013836860656681 ], [ -73.005424499511719, -15.009135246276855 ], [ -73.005195617675724, -15.007569313049316 ], [ -73.003555297851562, -15.003297805786133 ], [ -73.003128051757812, -15.001360893249455 ], [ -73.00274658203125, -15.000978469848576 ], [ -73.001533508300781, -15.000759124755859 ], [ -73.000617980956974, -14.999189376831055 ], [ -72.999977111816293, -14.996374130249023 ], [ -72.998931884765625, -14.993534088134766 ], [ -72.997734069824219, -14.991662979125977 ], [ -72.995864868164006, -14.989711761474609 ], [ -72.992759704589844, -14.987462997436523 ], [ -72.99066162109375, -14.987002372741699 ], [ -72.988601684570256, -14.986828804016056 ], [ -72.985061645507756, -14.985334396362248 ], [ -72.983039855957031, -14.983524322509766 ], [ -72.982826232910156, -14.982179641723576 ], [ -72.982841491699219, -14.980607032775879 ], [ -72.983238220214844, -14.979301452636719 ], [ -72.982925415039062, -14.976179122924748 ], [ -72.982971191406193, -14.974898338317871 ], [ -72.983207702636719, -14.97429370880127 ], [ -72.983070373535099, -14.971896171569767 ], [ -72.984176635742188, -14.968104362487736 ], [ -72.984428405761605, -14.96518611907959 ], [ -72.985015869140625, -14.963483810424748 ], [ -72.985687255859375, -14.959921836853027 ], [ -72.986198425292969, -14.958579063415414 ], [ -72.986732482910156, -14.955925941467228 ], [ -72.987670898437386, -14.955212593078613 ], [ -72.989944458007756, -14.954446792602482 ], [ -72.991188049316349, -14.953364372253418 ], [ -72.991806030273438, -14.952257156371957 ], [ -72.992477416992188, -14.949722290039006 ], [ -72.993415832519531, -14.948267936706486 ], [ -72.995506286621094, -14.942864418029728 ], [ -72.998016357421875, -14.940329551696721 ], [ -73.000221252441406, -14.938722610473633 ], [ -73.001312255859261, -14.937277793884221 ], [ -73.001861572265568, -14.936914443969727 ], [ -73.006591796875, -14.930980682373047 ], [ -73.008644104003849, -14.927635192871094 ], [ -73.012794494628906, -14.924094200134277 ], [ -73.015419006347599, -14.920989036560002 ], [ -73.022323608398438, -14.914226531982365 ], [ -73.025123596191349, -14.910582542419377 ], [ -73.027328491210881, -14.907329559326172 ], [ -73.029098510742188, -14.904144287109261 ], [ -73.030693054199219, -14.902135848999023 ], [ -73.031539916992074, -14.899877548217717 ], [ -73.031929016113281, -14.896940231323185 ], [ -73.031616210937443, -14.895502090454045 ], [ -73.026565551757756, -14.890895843505859 ], [ -73.025390625, -14.889069557189885 ], [ -73.025253295898438, -14.887614250183049 ], [ -73.025955200195312, -14.885018348693848 ], [ -73.026214599609375, -14.882978439331055 ], [ -73.026084899902287, -14.881114006042424 ], [ -73.02508544921875, -14.879094123840332 ], [ -73.022003173828011, -14.874246597289925 ], [ -73.020233154296875, -14.870002746581918 ], [ -73.017715454101449, -14.865209579467773 ], [ -73.017623901367188, -14.864143371582031 ], [ -73.018386840820312, -14.862133026123047 ], [ -73.018478393554574, -14.860409736633301 ], [ -73.017539978027344, -14.858901023864689 ], [ -73.015327453613168, -14.856857299804688 ], [ -73.014984130859375, -14.85513782501215 ], [ -73.013130187988224, -14.853476524352971 ], [ -73.008041381835938, -14.846421241760254 ], [ -73.004852294921875, -14.841477394103947 ], [ -73.00390625, -14.839409828185978 ], [ -73.003585815429631, -14.837182998657227 ], [ -73.003662109374943, -14.834329605102539 ], [ -73.003868103027287, -14.832315444946289 ], [ -73.00469970703125, -14.829746246337834 ], [ -73.004898071289006, -14.827200889587402 ], [ -73.004440307617131, -14.82454776763916 ], [ -73.002944946289062, -14.821799278259221 ], [ -73.002601623535156, -14.820646286010685 ], [ -73.002571105957031, -14.81889533996582 ], [ -73.003158569335938, -14.816287994384709 ], [ -73.00286865234375, -14.814810752868652 ], [ -72.99896240234375, -14.812609672546387 ], [ -72.996963500976562, -14.811137199401742 ], [ -72.995353698730469, -14.808539390563908 ], [ -72.993934631347599, -14.804784774780217 ], [ -72.993209838867188, -14.803703308105412 ], [ -72.990669250488281, -14.803826332092228 ], [ -72.988929748535156, -14.804497718810978 ], [ -72.985885620117188, -14.805059432983398 ], [ -72.985694885253906, -14.805273056030217 ], [ -72.982002258300781, -14.806317329406681 ], [ -72.980499267578068, -14.80628490447998 ], [ -72.97967529296875, -14.806053161621094 ], [ -72.977592468261719, -14.804325103759766 ], [ -72.974411010742131, -14.799644470214844 ], [ -72.972244262695312, -14.797582626342773 ], [ -72.970954895019474, -14.796648979187012 ], [ -72.969352722167912, -14.794974327087402 ], [ -72.968345642089844, -14.794467926025334 ], [ -72.967315673828125, -14.794348716735783 ], [ -72.963150024414006, -14.79299259185791 ], [ -72.962257385253906, -14.791900634765511 ], [ -72.96014404296875, -14.788149833679142 ], [ -72.958267211914006, -14.78267765045166 ], [ -72.95574951171875, -14.779110908508244 ], [ -72.954887390136719, -14.777288436889648 ], [ -72.953399658203068, -14.775864601135197 ], [ -72.952758789062443, -14.774955749511719 ], [ -72.950462341308537, -14.773707389831543 ], [ -72.947425842285043, -14.770552635192871 ], [ -72.946075439453068, -14.769981384277344 ], [ -72.945175170898438, -14.76785945892334 ], [ -72.944099426269531, -14.76642990112299 ], [ -72.94281005859375, -14.765233039855957 ], [ -72.94000244140625, -14.764268875122013 ], [ -72.938049316406193, -14.763132095336857 ], [ -72.936126708984375, -14.762725830078125 ], [ -72.934600830078125, -14.761981010437012 ], [ -72.932662963867188, -14.760382652282658 ], [ -72.931343078613281, -14.758832931518498 ], [ -72.92999267578125, -14.758163452148438 ], [ -72.926979064941406, -14.758227348327637 ], [ -72.925384521484318, -14.757948875427246 ], [ -72.920890808105412, -14.75818824768055 ], [ -72.920173645019531, -14.758435249328556 ], [ -72.918495178222599, -14.759929656982365 ], [ -72.916717529296761, -14.763248443603516 ], [ -72.914268493652344, -14.765095710754338 ], [ -72.912712097167855, -14.767494201660156 ], [ -72.910438537597656, -14.769271850585881 ], [ -72.906196594238224, -14.770344734191838 ], [ -72.904586791992131, -14.769914627075082 ], [ -72.900627136230469, -14.769842147827148 ], [ -72.89727783203125, -14.770480155944767 ], [ -72.894020080566293, -14.771690368652344 ], [ -72.888481140136662, -14.771347999572754 ], [ -72.886573791503849, -14.772146224975586 ], [ -72.883689880371037, -14.771674156188965 ], [ -72.882621765136719, -14.771106719970589 ], [ -72.881881713867131, -14.77039527893055 ], [ -72.880844116210881, -14.768450736999512 ], [ -72.880836486816349, -14.766716957092228 ], [ -72.880409240722656, -14.76612663269043 ], [ -72.878929138183537, -14.76509857177723 ], [ -72.876960754394531, -14.765190124511662 ], [ -72.876060485839787, -14.764919281005859 ], [ -72.873573303222656, -14.762627601623478 ], [ -72.872726440429631, -14.762133598327637 ], [ -72.870155334472599, -14.762118339538461 ], [ -72.867042541503906, -14.762820243835449 ], [ -72.862243652343693, -14.762820243835449 ], [ -72.859535217285156, -14.76350116729725 ], [ -72.85760498046875, -14.762771606445312 ], [ -72.853454589843693, -14.762812614440918 ], [ -72.851890563964844, -14.762592315673771 ], [ -72.848976135253849, -14.76125431060791 ], [ -72.846908569335824, -14.759645462036133 ], [ -72.846023559570256, -14.759698867797795 ], [ -72.845840454101506, -14.758440971374512 ], [ -72.845329284667969, -14.757263183593693 ], [ -72.842872619628849, -14.753660202026367 ], [ -72.840652465820312, -14.747196197509766 ], [ -72.839675903320312, -14.745840072631836 ], [ -72.838157653808594, -14.744346618652344 ], [ -72.836585998535099, -14.74150276184082 ], [ -72.835395812988281, -14.740199089050293 ], [ -72.834884643554631, -14.73901176452631 ], [ -72.834121704101506, -14.735588073730469 ], [ -72.833518981933594, -14.734136581420842 ], [ -72.83331298828125, -14.732670783996525 ], [ -72.83319091796875, -14.727331161499023 ], [ -72.833686828613281, -14.725863456726017 ], [ -72.833816528320256, -14.72154712677002 ], [ -72.832778930664006, -14.718733787536621 ], [ -72.831825256347599, -14.717262268066406 ], [ -72.831344604492131, -14.715865135192757 ], [ -72.829650878906136, -14.713769912719727 ], [ -72.827384948730469, -14.711572647094727 ], [ -72.827659606933594, -14.707905769348031 ], [ -72.828163146972656, -14.706419944763127 ], [ -72.829383850097656, -14.704135894775334 ], [ -72.829582214355469, -14.702377319335938 ], [ -72.826248168945312, -14.700013160705566 ], [ -72.824394226074162, -14.697582244872933 ], [ -72.823036193847599, -14.695049285888672 ], [ -72.821731567382699, -14.693593025207463 ], [ -72.820999145507812, -14.691705703735295 ], [ -72.820343017578125, -14.690698623657227 ], [ -72.818298339843636, -14.688309669494629 ], [ -72.814651489257756, -14.684833526611328 ], [ -72.813468933105469, -14.683078765869084 ], [ -72.809722900390625, -14.67894268035883 ], [ -72.806022644042969, -14.675390243530217 ], [ -72.805465698242188, -14.674536705017033 ], [ -72.804962158203125, -14.673139572143555 ], [ -72.804908752441406, -14.670266151428223 ], [ -72.804450988769474, -14.668988227844181 ], [ -72.802490234375, -14.665292739868107 ], [ -72.801551818847656, -14.664262771606445 ], [ -72.799957275390568, -14.661229133605957 ], [ -72.797859191894474, -14.658526420593205 ], [ -72.795791625976449, -14.657060623168888 ], [ -72.793617248535156, -14.655955314636174 ], [ -72.792411804199219, -14.654913902282658 ], [ -72.791839599609375, -14.65407657623291 ], [ -72.791473388671818, -14.652658462524414 ], [ -72.790199279785156, -14.650394439697266 ], [ -72.787277221679631, -14.65276908874506 ], [ -72.785186767578068, -14.655133247375431 ], [ -72.779563903808537, -14.660530090332031 ], [ -72.776527404785043, -14.662614822387638 ], [ -72.775459289550724, -14.662955284118652 ], [ -72.774101257324219, -14.663903236389103 ], [ -72.770500183105412, -14.664536476135254 ], [ -72.769134521484375, -14.664188385009709 ], [ -72.766036987304574, -14.664042472839355 ], [ -72.762680053710881, -14.662807464599609 ], [ -72.76165771484375, -14.662742614746037 ], [ -72.758384704589787, -14.660868644714355 ], [ -72.753303527832031, -14.656762123107853 ], [ -72.749565124511719, -14.652742385864258 ], [ -72.746803283691406, -14.651522636413574 ], [ -72.745552062988281, -14.650569915771484 ], [ -72.743583679199219, -14.648210525512638 ], [ -72.741432189941293, -14.644143104553223 ], [ -72.740570068359318, -14.644315719604379 ], [ -72.738128662109375, -14.646034240722656 ], [ -72.736656188964787, -14.64671611785883 ], [ -72.734252929687443, -14.64710807800293 ], [ -72.732025146484375, -14.646824836730957 ], [ -72.729499816894474, -14.646078109741211 ], [ -72.726852416992188, -14.644010543823185 ], [ -72.726402282714844, -14.643886566161996 ], [ -72.726158142089787, -14.644048690795898 ], [ -72.726097106933594, -14.644863128662109 ], [ -72.726387023925781, -14.648694038391113 ], [ -72.726173400878793, -14.652090072631836 ], [ -72.7254638671875, -14.653500556945801 ], [ -72.723823547363281, -14.655137062072697 ], [ -72.723091125488224, -14.657119750976506 ], [ -72.723320007324219, -14.658585548400822 ], [ -72.725509643554574, -14.662455558776799 ], [ -72.726242065429631, -14.664531707763672 ], [ -72.726165771484318, -14.666012763976994 ], [ -72.725570678710881, -14.667371749877873 ], [ -72.725563049316406, -14.668283462524414 ], [ -72.724945068359375, -14.670879364013558 ], [ -72.724723815917912, -14.672983169555664 ], [ -72.724800109863281, -14.675720214843693 ], [ -72.724517822265568, -14.676531791687012 ], [ -72.723190307617131, -14.677079200744572 ], [ -72.721061706542969, -14.676643371582031 ], [ -72.72021484375, -14.676715850830078 ], [ -72.719001770019474, -14.677417755126953 ], [ -72.716758728027344, -14.679229736328125 ], [ -72.713890075683594, -14.679995536804142 ], [ -72.711624145507812, -14.6800279617309 ], [ -72.710853576660156, -14.67968559265131 ], [ -72.709632873535156, -14.679664611816406 ], [ -72.708244323730355, -14.679091453552246 ], [ -72.705421447753906, -14.679073333740178 ], [ -72.701644897460881, -14.678301811218262 ], [ -72.699356079101506, -14.678667068481445 ], [ -72.697998046875, -14.679298400878906 ], [ -72.697082519531193, -14.680091857910099 ], [ -72.696594238281193, -14.681080818176213 ], [ -72.696411132812443, -14.68327522277832 ], [ -72.696037292480355, -14.684219360351506 ], [ -72.694915771484375, -14.685329437255859 ], [ -72.693565368652344, -14.686156272888184 ], [ -72.691436767578068, -14.688770294189396 ], [ -72.691139221191349, -14.688752174377441 ], [ -72.689399719238281, -14.687261581420898 ], [ -72.685989379882756, -14.683579444885197 ], [ -72.684196472167912, -14.682231903076172 ], [ -72.682701110839844, -14.681438446044865 ], [ -72.680740356445312, -14.679557800292855 ], [ -72.679573059082031, -14.678824424743652 ], [ -72.675117492675724, -14.677035331726017 ], [ -72.673034667968693, -14.67664527893055 ], [ -72.671989440917912, -14.676200866699162 ], [ -72.663993835449105, -14.676238059997559 ], [ -72.661079406738281, -14.673921585083008 ], [ -72.657546997070312, -14.673623085021973 ], [ -72.652015686035156, -14.669014930725098 ], [ -72.651947021484318, -14.66858005523676 ], [ -72.651397705078068, -14.668242454528752 ], [ -72.650451660156136, -14.668231010437012 ], [ -72.648925781249886, -14.66777324676508 ], [ -72.646751403808594, -14.667678833007812 ], [ -72.645271301269474, -14.667909622192383 ], [ -72.643554687499943, -14.668649673461914 ], [ -72.641082763671818, -14.669121742248535 ], [ -72.634140014648381, -14.669384002685547 ], [ -72.630973815917912, -14.671187400817871 ], [ -72.626708984374886, -14.674910545349121 ], [ -72.624679565429631, -14.675874710082951 ], [ -72.62322998046875, -14.67622184753418 ], [ -72.621147155761662, -14.676307678222599 ], [ -72.619483947753906, -14.675720214843693 ], [ -72.617240905761662, -14.67547416687006 ], [ -72.616325378417969, -14.675697326660156 ], [ -72.614814758300781, -14.675656318664494 ], [ -72.613555908203125, -14.676258087158203 ], [ -72.612335205078125, -14.676235198974609 ], [ -72.610748291015568, -14.67677116394043 ], [ -72.608741760253849, -14.679785728454533 ], [ -72.606872558593636, -14.681023597717285 ], [ -72.606307983398438, -14.681638717651367 ], [ -72.605911254882756, -14.683053970336914 ], [ -72.605888366699162, -14.685356140136662 ], [ -72.605186462402344, -14.686659812927189 ], [ -72.603965759277344, -14.687533378601017 ], [ -72.60205078125, -14.68800163269043 ], [ -72.600425720214844, -14.688878059387207 ], [ -72.599411010742131, -14.689934730529785 ], [ -72.599296569824219, -14.692056655883789 ], [ -72.599533081054688, -14.694345474243164 ], [ -72.601020812988224, -14.698371887207031 ], [ -72.601348876953125, -14.70111179351801 ], [ -72.6024169921875, -14.702404022216797 ], [ -72.599723815917969, -14.704998016357365 ], [ -72.597969055175724, -14.705857276916504 ], [ -72.596183776855412, -14.70775127410883 ], [ -72.595863342285156, -14.708699226379395 ], [ -72.596138000488281, -14.70994758605957 ], [ -72.596000671386605, -14.712151527404785 ], [ -72.595329284667855, -14.713029861450195 ], [ -72.594474792480355, -14.713499069213867 ], [ -72.592018127441406, -14.713446617126408 ], [ -72.588752746581918, -14.709932327270394 ], [ -72.587417602538949, -14.709061622619629 ], [ -72.586105346679688, -14.708541870117131 ], [ -72.585197448730412, -14.707692146301213 ], [ -72.585052490234375, -14.706924438476449 ], [ -72.585304260253849, -14.705804824829045 ], [ -72.586982727050781, -14.703095436096191 ], [ -72.586639404296818, -14.700614929199162 ], [ -72.585113525390568, -14.696969032287598 ], [ -72.582962036132812, -14.694263458251953 ], [ -72.581977844238168, -14.692282676696721 ], [ -72.580009460449219, -14.689932823181152 ], [ -72.579421997070312, -14.688896179199162 ], [ -72.579292297363224, -14.688179969787598 ], [ -72.578865051269531, -14.687697410583439 ], [ -72.577346801757812, -14.686443328857422 ], [ -72.570404052734318, -14.682558059692269 ], [ -72.567733764648381, -14.68169116973877 ], [ -72.567268371581974, -14.681233406066895 ], [ -72.565742492675724, -14.680756568908691 ], [ -72.564025878906193, -14.679619789123535 ], [ -72.562156677246094, -14.678975105285588 ], [ -72.560874938964787, -14.678203582763615 ], [ -72.559478759765625, -14.678024291992131 ], [ -72.556259155273438, -14.678634643554688 ], [ -72.554420471191293, -14.678244590759277 ], [ -72.552658081054688, -14.676600456237793 ], [ -72.551986694335938, -14.675597190856877 ], [ -72.551124572753906, -14.675029754638672 ], [ -72.548278808593693, -14.674403190612793 ], [ -72.544242858886719, -14.674596786499023 ], [ -72.543502807617188, -14.674468994140568 ], [ -72.539314270019474, -14.67271900177002 ], [ -72.537071228027344, -14.671087265014592 ], [ -72.533287048339844, -14.669195175170842 ], [ -72.532058715820312, -14.668745994567814 ], [ -72.529922485351562, -14.668399810790902 ], [ -72.528305053710938, -14.667703628540039 ], [ -72.525489807128849, -14.666952133178711 ], [ -72.523025512695256, -14.667547225952148 ], [ -72.521102905273381, -14.669000625610295 ], [ -72.519294738769474, -14.669849395751953 ], [ -72.514396667480469, -14.670882225036621 ], [ -72.511253356933594, -14.671261787414494 ], [ -72.510131835937443, -14.670574188232365 ], [ -72.509757995605412, -14.670559883117676 ], [ -72.508293151855469, -14.669377326965218 ], [ -72.507804870605469, -14.668723106384221 ], [ -72.507202148437443, -14.666304588317871 ], [ -72.506690979003906, -14.665405273437443 ], [ -72.505760192871037, -14.664508819580078 ], [ -72.504348754882699, -14.663969039916992 ], [ -72.501838684081974, -14.66358375549305 ], [ -72.500396728515625, -14.664055824279785 ], [ -72.497238159179688, -14.66428279876709 ], [ -72.489356994628849, -14.664270401000977 ], [ -72.485183715820199, -14.665163040161133 ], [ -72.484077453613281, -14.665126800537053 ], [ -72.482917785644531, -14.66469764709467 ], [ -72.481643676757756, -14.663644790649357 ], [ -72.480522155761719, -14.661806106567383 ], [ -72.478538513183594, -14.659392356872502 ], [ -72.47833251953125, -14.658738136291504 ], [ -72.477699279785156, -14.658172607421818 ], [ -72.477203369140625, -14.658032417297363 ], [ -72.475318908691406, -14.65850830078125 ], [ -72.471153259277287, -14.661182403564453 ], [ -72.471038818359318, -14.661840438842717 ], [ -72.470603942871094, -14.662549018859863 ], [ -72.467750549316406, -14.663519859313965 ], [ -72.465293884277344, -14.665010452270394 ], [ -72.463920593261719, -14.666533470153752 ], [ -72.462692260742188, -14.668477058410645 ], [ -72.461311340331974, -14.671271324157715 ], [ -72.460929870605412, -14.67283916473383 ], [ -72.460739135742131, -14.676071166992188 ], [ -72.461135864257756, -14.678749084472656 ], [ -72.461624145507699, -14.680429458618107 ], [ -72.462463378906193, -14.682135581970215 ], [ -72.464836120605412, -14.684761047363281 ], [ -72.466239929199219, -14.689403533935547 ], [ -72.468566894531193, -14.692925453185978 ], [ -72.469055175781193, -14.698142051696777 ], [ -72.471397399902344, -14.701764106750431 ], [ -72.4713134765625, -14.703136444091797 ], [ -72.470764160156193, -14.704575538635254 ], [ -72.4708251953125, -14.705155372619629 ], [ -72.474182128906193, -14.706862449645996 ], [ -72.478141784667969, -14.707825660705566 ], [ -72.483734130859318, -14.710460662841797 ], [ -72.486160278320312, -14.71246433258051 ], [ -72.487014770507812, -14.714030265808049 ], [ -72.4873046875, -14.715991973876953 ], [ -72.486831665039062, -14.719620704650822 ], [ -72.487434387206974, -14.722109794616699 ], [ -72.487358093261662, -14.72344779968256 ], [ -72.4869384765625, -14.724156379699707 ], [ -72.48541259765625, -14.725519180297852 ], [ -72.485214233398438, -14.727298736572209 ], [ -72.484939575195312, -14.727873802185002 ], [ -72.482032775878793, -14.730540275573674 ], [ -72.484817504882812, -14.735668182373047 ], [ -72.485252380371037, -14.737090110778809 ], [ -72.486961364746037, -14.73940372467041 ], [ -72.487236022949219, -14.740274429321289 ], [ -72.486946105957031, -14.741192817687988 ], [ -72.485603332519531, -14.742914199829045 ], [ -72.484619140625, -14.745431900024414 ], [ -72.481628417968693, -14.7480211257934 ], [ -72.479812622070256, -14.750410079956055 ], [ -72.479598999023438, -14.751187324523869 ], [ -72.480056762695312, -14.75427055358881 ], [ -72.479866027832031, -14.755026817321721 ], [ -72.477973937988281, -14.756171226501408 ], [ -72.474174499511719, -14.75663852691639 ], [ -72.473136901855412, -14.757033348083439 ], [ -72.472061157226562, -14.757850646972543 ], [ -72.470672607421818, -14.759352684020882 ], [ -72.469940185546875, -14.75969028472889 ], [ -72.469017028808594, -14.761033058166504 ], [ -72.46875, -14.762350082397404 ], [ -72.468742370605412, -14.763840675354004 ], [ -72.470176696777287, -14.770432472228947 ], [ -72.470611572265625, -14.774619102478027 ], [ -72.470222473144531, -14.776972770690861 ], [ -72.468132019042969, -14.782416343688908 ], [ -72.468124389648438, -14.784312248229924 ], [ -72.468742370605412, -14.786245346069336 ], [ -72.468528747558594, -14.78714466094965 ], [ -72.467292785644531, -14.787772178649789 ], [ -72.465911865234318, -14.787641525268498 ], [ -72.465492248535156, -14.787300109863224 ], [ -72.465194702148438, -14.786539077758789 ], [ -72.465087890625, -14.784540176391602 ], [ -72.464118957519531, -14.783402442932072 ], [ -72.461997985839787, -14.782764434814453 ], [ -72.459663391113281, -14.782574653625375 ], [ -72.456771850585938, -14.78282356262207 ], [ -72.453819274902344, -14.783559799194336 ], [ -72.451499938964787, -14.783559799194336 ], [ -72.450439453124943, -14.784414291381722 ], [ -72.449691772460881, -14.786306381225529 ], [ -72.448204040527344, -14.788077354431152 ], [ -72.446327209472656, -14.7898912429809 ], [ -72.444816589355412, -14.790604591369629 ], [ -72.439712524414062, -14.790872573852482 ], [ -72.438346862792912, -14.790739059448242 ], [ -72.435485839843693, -14.78973388671875 ], [ -72.434677124023438, -14.789959907531738 ], [ -72.434036254882756, -14.790973663330078 ], [ -72.43353271484375, -14.796070098876896 ], [ -72.43304443359375, -14.797619819641056 ], [ -72.432449340820312, -14.798515319824219 ], [ -72.430519104003849, -14.799812316894418 ], [ -72.426948547363281, -14.800876617431641 ], [ -72.423179626464787, -14.802568435668945 ], [ -72.420967102050724, -14.804230690002441 ], [ -72.419708251953125, -14.806143760681096 ], [ -72.418731689453125, -14.808406829833984 ], [ -72.418220520019474, -14.810487747192383 ], [ -72.418304443359318, -14.812775611877385 ], [ -72.418716430664062, -14.815200805664062 ], [ -72.418952941894531, -14.815502166748047 ], [ -72.419029235839844, -14.818077087402344 ], [ -72.418739318847656, -14.820069313049316 ], [ -72.417861938476562, -14.821758270263672 ], [ -72.416824340820312, -14.822661399841252 ], [ -72.414558410644531, -14.823239326477051 ], [ -72.410469055175781, -14.825495719909668 ], [ -72.406585693359318, -14.826904296875 ], [ -72.4049072265625, -14.826997756958008 ], [ -72.402069091796875, -14.826412200927678 ], [ -72.399497985839844, -14.825400352478027 ], [ -72.395782470703125, -14.824834823608342 ], [ -72.393295288085938, -14.824734687805176 ], [ -72.391151428222543, -14.825060844421273 ], [ -72.385589599609318, -14.826804161071777 ], [ -72.383956909179688, -14.826822280883732 ], [ -72.378730773925724, -14.826131820678711 ], [ -72.375411987304574, -14.827456474304199 ], [ -72.371421813964844, -14.827247619628849 ], [ -72.366722106933537, -14.827376365661621 ], [ -72.362609863281193, -14.828611373901367 ], [ -72.359848022460881, -14.828595161437988 ], [ -72.352882385253849, -14.827542304992676 ], [ -72.350250244140625, -14.827610969543457 ], [ -72.341430664062443, -14.829234123229924 ], [ -72.337287902832031, -14.829429626464844 ], [ -72.328872680663949, -14.832484245300236 ], [ -72.320823669433594, -14.833762168884277 ], [ -72.318344116210938, -14.834585189819336 ], [ -72.316825866699162, -14.83455753326416 ], [ -72.315483093261719, -14.834216117858773 ], [ -72.313270568847656, -14.832394599914551 ], [ -72.310020446777344, -14.830610275268555 ], [ -72.307907104492188, -14.828291893005314 ], [ -72.304901123046818, -14.82591724395752 ], [ -72.300170898437386, -14.823488235473576 ], [ -72.295097351074162, -14.819497108459473 ], [ -72.292976379394531, -14.818219184875431 ], [ -72.292251586913949, -14.818208694458008 ], [ -72.290679931640625, -14.819111824035645 ], [ -72.289756774902287, -14.819172859191838 ], [ -72.288619995117131, -14.818600654601994 ], [ -72.285087585449162, -14.815208435058594 ], [ -72.283828735351506, -14.815120697021484 ], [ -72.280982971191349, -14.815746307373047 ], [ -72.279739379882756, -14.815740585327148 ], [ -72.277801513671875, -14.815023422241097 ], [ -72.276306152343693, -14.81403636932373 ], [ -72.27301025390625, -14.813872337341252 ], [ -72.269767761230469, -14.812352180480957 ], [ -72.265769958496094, -14.811301231384221 ], [ -72.264053344726562, -14.809935569763184 ], [ -72.256011962890511, -14.805459976196232 ], [ -72.253723144531136, -14.803139686584416 ], [ -72.252998352050781, -14.803092002868596 ], [ -72.252510070800781, -14.803315162658691 ], [ -72.250274658203068, -14.804912567138672 ], [ -72.246589660644531, -14.809799194335881 ], [ -72.244781494140625, -14.811630249023381 ], [ -72.244026184082031, -14.811983108520508 ], [ -72.241691589355412, -14.812315940856934 ], [ -72.239219665527287, -14.81206035614008 ], [ -72.237907409667969, -14.811648368835449 ], [ -72.235725402832031, -14.810446739196721 ], [ -72.231834411621094, -14.809062957763558 ], [ -72.227157592773438, -14.806469917297363 ], [ -72.22503662109375, -14.805841445922795 ], [ -72.223869323730412, -14.804885864257812 ], [ -72.22292327880848, -14.803707122802678 ], [ -72.221824645996094, -14.80066013336176 ], [ -72.221267700195256, -14.800048828125 ], [ -72.219215393066406, -14.800332069396973 ], [ -72.214279174804688, -14.803062438964844 ], [ -72.213539123535099, -14.803387641906738 ], [ -72.212692260742131, -14.803270339965763 ], [ -72.210205078124943, -14.801350593566838 ], [ -72.207122802734375, -14.800012588500977 ], [ -72.203323364257812, -14.797800064086914 ], [ -72.203094482421875, -14.797373771667424 ], [ -72.203170776367131, -14.796298027038574 ], [ -72.204582214355412, -14.793831825256234 ], [ -72.203094482421875, -14.791575431823674 ], [ -72.203216552734375, -14.788523674011174 ], [ -72.198776245117131, -14.784856796264592 ], [ -72.197891235351562, -14.784494400024357 ], [ -72.195770263671875, -14.7841796875 ], [ -72.195075988769418, -14.783844947814941 ], [ -72.194244384765625, -14.782997131347599 ], [ -72.192184448242131, -14.780050277709961 ], [ -72.190689086913949, -14.778661727905217 ], [ -72.189437866210881, -14.778058052062931 ], [ -72.188499450683594, -14.778164863586369 ], [ -72.186592102050781, -14.780101776123047 ], [ -72.186172485351506, -14.780193328857422 ], [ -72.183952331542969, -14.779445648193359 ], [ -72.180984497070312, -14.776798248290959 ], [ -72.180038452148438, -14.776318550109863 ], [ -72.178398132324219, -14.776613235473633 ], [ -72.176383972167855, -14.778314590454102 ], [ -72.175437927246094, -14.778763771057015 ], [ -72.170753479003793, -14.778470039367619 ], [ -72.169769287109318, -14.779001235961914 ], [ -72.168159484863224, -14.780473709106388 ], [ -72.165367126464844, -14.780364036560059 ], [ -72.163825988769531, -14.781142234802246 ], [ -72.162681579589844, -14.782356262206974 ], [ -72.162139892578068, -14.783891677856445 ], [ -72.159790039062386, -14.786167144775334 ], [ -72.158142089843693, -14.786064147949162 ], [ -72.157691955566293, -14.785770416259709 ], [ -72.157798767089844, -14.784029006957894 ], [ -72.157211303710824, -14.782098770141545 ], [ -72.157325744628906, -14.779678344726506 ], [ -72.156791687011719, -14.778579711914062 ], [ -72.156204223632812, -14.777994155883732 ], [ -72.154121398925781, -14.776956558227482 ], [ -72.149398803710938, -14.777910232543888 ], [ -72.145866394042855, -14.777243614196777 ], [ -72.144813537597543, -14.777538299560547 ], [ -72.141441345214787, -14.780929565429574 ], [ -72.138442993164062, -14.781285285949707 ], [ -72.135238647460938, -14.783144950866699 ], [ -72.133583068847656, -14.782943725585938 ], [ -72.130798339843636, -14.781455993652344 ], [ -72.129821777343693, -14.781523704528809 ], [ -72.121139526367131, -14.786782264709473 ], [ -72.120681762695256, -14.78790378570551 ], [ -72.120567321777287, -14.788976669311467 ], [ -72.12078857421875, -14.789902687072697 ], [ -72.12188720703125, -14.791432380676213 ], [ -72.122375488281193, -14.79476165771473 ], [ -72.123146057128849, -14.79535007476801 ], [ -72.125, -14.795906066894418 ], [ -72.126045227050781, -14.796614646911564 ], [ -72.127220153808594, -14.800475120544434 ], [ -72.128524780273438, -14.801793098449707 ], [ -72.128395080566349, -14.80313777923584 ], [ -72.129486083984375, -14.806319236755371 ], [ -72.129219055175781, -14.807518005371037 ], [ -72.127571105957031, -14.810479164123535 ], [ -72.127349853515568, -14.812344551086426 ], [ -72.127433776855412, -14.814106941223088 ], [ -72.127899169921818, -14.814779281616211 ], [ -72.128074645996094, -14.81600284576416 ], [ -72.126808166503906, -14.817901611328068 ], [ -72.12646484375, -14.820028305053711 ], [ -72.124801635742188, -14.82164192199707 ], [ -72.124801635742188, -14.822455406188908 ], [ -72.123313903808594, -14.823437690734863 ], [ -72.119606018066349, -14.827247619628849 ], [ -72.117599487304631, -14.828696250915527 ], [ -72.116363525390568, -14.831100463867188 ], [ -72.115936279296875, -14.832937240600529 ], [ -72.115890502929631, -14.834562301635685 ], [ -72.115982055664006, -14.836585998535156 ], [ -72.116386413574162, -14.838722229003793 ], [ -72.116737365722656, -14.839286804199162 ], [ -72.118598937988281, -14.84075736999506 ], [ -72.118797302246094, -14.841426849365234 ], [ -72.118103027343693, -14.841951370239258 ], [ -72.116844177246037, -14.84208774566639 ], [ -72.113449096679688, -14.840575218200627 ], [ -72.112358093261662, -14.840667724609375 ], [ -72.111473083496094, -14.841326713562012 ], [ -72.111106872558594, -14.843020439147949 ], [ -72.109634399414062, -14.844237327575684 ], [ -72.108146667480469, -14.846702575683537 ], [ -72.107185363769531, -14.847087860107365 ], [ -72.104942321777287, -14.84716796875 ], [ -72.102928161621037, -14.848868370056096 ], [ -72.101791381835881, -14.84954833984375 ], [ -72.098480224609375, -14.849667549133301 ], [ -72.096755981445312, -14.851760864257756 ], [ -72.095565795898438, -14.852451324462834 ], [ -72.092277526855469, -14.855523109435978 ], [ -72.090469360351562, -14.856557846069336 ], [ -72.088905334472599, -14.859065055847168 ], [ -72.087623596191406, -14.861931800842285 ], [ -72.086967468261719, -14.865760803222656 ], [ -72.084800720214787, -14.870862007141056 ], [ -72.082710266113224, -14.873039245605412 ], [ -72.080116271972656, -14.873323440551758 ], [ -72.079376220703068, -14.873720169067383 ], [ -72.078903198242131, -14.874256134033203 ], [ -72.078620910644474, -14.87580490112299 ], [ -72.078292846679688, -14.880949020385742 ], [ -72.077232360839844, -14.883139610290414 ], [ -72.076240539550724, -14.884111404418945 ], [ -72.073677062988281, -14.884566307067814 ], [ -72.065849304199105, -14.887175559997559 ], [ -72.062866210937443, -14.887716293334961 ], [ -72.059402465820312, -14.884610176086369 ], [ -72.055992126464787, -14.883444786071777 ], [ -72.054351806640625, -14.883360862731934 ], [ -72.051933288574219, -14.883943557739201 ], [ -72.050086975097599, -14.884858131408691 ], [ -72.049400329589844, -14.885519027709961 ], [ -72.049049377441349, -14.886399269103947 ], [ -72.047691345214844, -14.887050628662053 ], [ -72.046882629394531, -14.886553764343205 ], [ -72.044029235839844, -14.882542610168457 ], [ -72.042770385742074, -14.880330085754281 ], [ -72.042984008789062, -14.879277229308968 ], [ -72.046730041503906, -14.877229690551758 ], [ -72.04730224609375, -14.875575065612736 ], [ -72.046463012695256, -14.872314453125 ], [ -72.0447998046875, -14.868915557861328 ], [ -72.044822692871094, -14.867974281311035 ], [ -72.045509338378849, -14.865927696228027 ], [ -72.045448303222656, -14.865383148193359 ], [ -72.044807434082031, -14.864689826965218 ], [ -72.043098449707031, -14.864170074462834 ], [ -72.042533874511719, -14.862951278686523 ], [ -72.042465209960881, -14.860793113708439 ], [ -72.042839050292912, -14.858666419982853 ], [ -72.042839050292912, -14.854801177978516 ], [ -72.043556213378906, -14.852203369140625 ], [ -72.042915344238281, -14.851208686828556 ], [ -72.041313171386662, -14.850808143615723 ], [ -72.040382385253849, -14.849640846252441 ], [ -72.040626525878906, -14.848722457885742 ], [ -72.0413818359375, -14.847929000854379 ], [ -72.041542053222656, -14.847407341003418 ], [ -72.041191101074219, -14.846870422363281 ], [ -72.039657592773438, -14.845649719238224 ], [ -72.039291381835938, -14.844968795776254 ], [ -72.039390563964844, -14.844001770019531 ], [ -72.040473937988224, -14.841641426086426 ], [ -72.040695190429688, -14.840749740600529 ], [ -72.040634155273438, -14.839926719665471 ], [ -72.040084838867131, -14.838547706603947 ], [ -72.039245605468636, -14.837464332580566 ], [ -72.037933349609375, -14.836461067199593 ], [ -72.036445617675724, -14.83666801452631 ], [ -72.035537719726562, -14.836321830749512 ], [ -72.035263061523438, -14.83601188659668 ], [ -72.034858703613168, -14.83447074890131 ], [ -72.032859802246094, -14.83260440826416 ], [ -72.029968261718693, -14.831706047058049 ], [ -72.027030944824162, -14.831569671630746 ], [ -72.026336669921818, -14.831253051757756 ], [ -72.0257568359375, -14.830615043640137 ], [ -72.025321960449105, -14.829615592956486 ], [ -72.025238037109375, -14.827998161315861 ], [ -72.025520324707031, -14.825167655944824 ], [ -72.024932861328068, -14.823814392089787 ], [ -72.025390624999943, -14.822392463684082 ], [ -72.026229858398438, -14.821338653564396 ], [ -72.029777526855412, -14.817931175231934 ], [ -72.031486511230412, -14.817006111144906 ], [ -72.032844543456974, -14.812237739562875 ], [ -72.033866882324162, -14.811917304992619 ], [ -72.034126281738281, -14.811650276184025 ], [ -72.034942626953068, -14.81157016754139 ], [ -72.038406372070312, -14.812527656555176 ], [ -72.039566040039062, -14.811784744262582 ], [ -72.040267944335881, -14.81075382232666 ], [ -72.040084838867131, -14.808131217956543 ], [ -72.039421081542912, -14.805587768554688 ], [ -72.038887023925781, -14.804477691650334 ], [ -72.037635803222656, -14.803413391113224 ], [ -72.035552978515625, -14.803629875183105 ], [ -72.035079956054688, -14.803516387939396 ], [ -72.034355163574162, -14.802324295043888 ], [ -72.035049438476449, -14.79629993438715 ], [ -72.034591674804688, -14.793098449707031 ], [ -72.03497314453125, -14.790693283080998 ], [ -72.035614013671818, -14.789345741271859 ], [ -72.036254882812443, -14.788838386535588 ], [ -72.038505554199219, -14.788161277770996 ], [ -72.03914642333973, -14.787620544433594 ], [ -72.039093017578125, -14.783320426940918 ], [ -72.040161132812443, -14.781915664672795 ], [ -72.041053771972543, -14.779202461242619 ], [ -72.040855407714787, -14.777464866638127 ], [ -72.03973388671875, -14.775751113891602 ], [ -72.0391845703125, -14.77297306060791 ], [ -72.037025451660099, -14.769062042236328 ], [ -72.036613464355469, -14.7671861648559 ], [ -72.036888122558594, -14.76647758483881 ], [ -72.038223266601562, -14.765048980712891 ], [ -72.038589477539062, -14.764350891113281 ], [ -72.038703918457031, -14.762717247009277 ], [ -72.038246154785156, -14.761728286743164 ], [ -72.038177490234318, -14.761049270629769 ], [ -72.039199829101562, -14.759155273437443 ], [ -72.039443969726562, -14.757532119750977 ], [ -72.040298461914062, -14.756525039672852 ], [ -72.042808532714844, -14.754343032836857 ], [ -72.044029235839844, -14.752453804016113 ], [ -72.047126770019474, -14.742145538330078 ], [ -72.047744750976562, -14.738286972045898 ], [ -72.047676086425781, -14.736942291259709 ], [ -72.046806335449219, -14.734238624572754 ], [ -72.043647766113281, -14.727947235107422 ], [ -72.042991638183594, -14.72506141662592 ], [ -72.041732788085938, -14.723073959350529 ], [ -72.041511535644474, -14.722068786621037 ], [ -72.041633605957031, -14.720806121826172 ], [ -72.04205322265625, -14.719673156738224 ], [ -72.044059753417969, -14.718489646911621 ], [ -72.044845581054631, -14.716773986816406 ], [ -72.044898986816406, -14.715547561645451 ], [ -72.044670104980412, -14.714496612548828 ], [ -72.042587280273438, -14.711652755737305 ], [ -72.041900634765568, -14.709476470947209 ], [ -72.042236328125, -14.707756042480412 ], [ -72.044448852539062, -14.704993247985726 ], [ -72.044631958007812, -14.703804016113281 ], [ -72.044479370117131, -14.702700614929142 ], [ -72.043037414550724, -14.699935913085881 ], [ -72.042121887207031, -14.694488525390625 ], [ -72.040382385253849, -14.692253112792969 ], [ -72.040618896484375, -14.689222335815373 ], [ -72.040382385253849, -14.687874794006234 ], [ -72.038719177246094, -14.686579704284611 ], [ -72.038162231445256, -14.684775352477914 ], [ -72.036369323730412, -14.682991027831918 ], [ -72.036155700683537, -14.681543350219727 ], [ -72.035369873046875, -14.680974006652775 ], [ -72.034065246581974, -14.681174278259277 ], [ -72.03363037109375, -14.681023597717285 ], [ -72.032768249511719, -14.679006576538029 ], [ -72.029785156249943, -14.675593376159611 ], [ -72.028572082519531, -14.674790382385197 ], [ -72.025344848632812, -14.67390060424799 ], [ -72.024436950683537, -14.673255920410099 ], [ -72.024246215820256, -14.671540260314885 ], [ -72.024917602539006, -14.669226646423283 ], [ -72.024734497070256, -14.667868614196721 ], [ -72.024253845214787, -14.66676139831543 ], [ -72.021751403808594, -14.663911819458008 ], [ -72.020545959472599, -14.662795066833496 ], [ -72.018623352050724, -14.661478042602482 ], [ -72.018302917480469, -14.659649848937875 ], [ -72.016136169433537, -14.658693313598576 ], [ -72.015914916992188, -14.657614707946777 ], [ -72.016021728515625, -14.65494441986084 ], [ -72.015449523925781, -14.652037620544377 ], [ -72.015296936035099, -14.648956298828125 ], [ -72.014900207519474, -14.648246765136662 ], [ -72.013717651367188, -14.647109985351506 ], [ -72.013252258300781, -14.645840644836426 ], [ -72.011383056640568, -14.644697189330941 ], [ -72.010421752929631, -14.642624855041504 ], [ -72.009780883789062, -14.642111778259221 ], [ -72.008964538574219, -14.641982078552246 ], [ -72.007698059082031, -14.640396118164062 ], [ -72.007133483886719, -14.640406608581486 ], [ -72.006729125976562, -14.640753746032715 ], [ -72.003273010253849, -14.64077186584467 ], [ -72.002624511718636, -14.640970230102482 ], [ -72.002105712890625, -14.641488075256348 ], [ -72.001312255859375, -14.641713142394963 ], [ -72.000228881835881, -14.640732765197697 ], [ -71.998977661132756, -14.640147209167367 ], [ -71.99556732177723, -14.637631416320801 ], [ -71.993690490722656, -14.636790275573674 ], [ -71.990257263183594, -14.632938385009766 ], [ -71.988769531249943, -14.632631301879883 ], [ -71.987243652343693, -14.633277893066349 ], [ -71.984489440917912, -14.635924339294377 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-AYA", "NAME_0": "Peru", "ID_1": 5, "NAME_1": "Ayacucho", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.347114562988224, -12.174593925476017 ], [ -74.351554870605469, -12.176251411437931 ], [ -74.352210998535156, -12.176912307739258 ], [ -74.352226257324219, -12.177473068237305 ], [ -74.350105285644531, -12.180606842040959 ], [ -74.348754882812386, -12.184230804443303 ], [ -74.346588134765625, -12.188301086425781 ], [ -74.34478759765625, -12.190621376037598 ], [ -74.344696044921875, -12.191633224487248 ], [ -74.345016479492131, -12.194022178649902 ], [ -74.344711303710938, -12.195242881774902 ], [ -74.343818664550781, -12.195729255676213 ], [ -74.341766357421818, -12.195480346679688 ], [ -74.339996337890625, -12.194463729858398 ], [ -74.338554382324219, -12.192994117736816 ], [ -74.337638854980469, -12.192413330078125 ], [ -74.336212158203125, -12.192770004272404 ], [ -74.334739685058594, -12.193896293640137 ], [ -74.333297729492131, -12.196841239929199 ], [ -74.3331298828125, -12.199691772460881 ], [ -74.332649230957031, -12.201370239257812 ], [ -74.332565307617188, -12.202935218811035 ], [ -74.332984924316349, -12.206401824951172 ], [ -74.33258056640625, -12.207131385803223 ], [ -74.330627441406193, -12.209350585937386 ], [ -74.330245971679631, -12.210298538208008 ], [ -74.330192565917969, -12.211131095886174 ], [ -74.33056640625, -12.211872100830078 ], [ -74.331138610839844, -12.212175369262695 ], [ -74.333686828613168, -12.212613105773812 ], [ -74.335357666015625, -12.212409973144531 ], [ -74.335968017578068, -12.212592124938965 ], [ -74.336402893066406, -12.213082313537541 ], [ -74.336647033691406, -12.213877677917424 ], [ -74.336631774902287, -12.21565055847168 ], [ -74.335716247558594, -12.216860771179086 ], [ -74.331443786621094, -12.220601081848088 ], [ -74.330543518066406, -12.222000122070256 ], [ -74.3292236328125, -12.223426818847599 ], [ -74.325180053710881, -12.226519584655762 ], [ -74.322761535644531, -12.229515075683594 ], [ -74.321090698242131, -12.230504035949707 ], [ -74.317298889160156, -12.231365203857365 ], [ -74.315742492675724, -12.231324195861816 ], [ -74.314926147460938, -12.230961799621582 ], [ -74.314643859863281, -12.23055362701416 ], [ -74.314407348632756, -12.228336334228516 ], [ -74.313690185546875, -12.225207328796387 ], [ -74.312454223632812, -12.223720550537053 ], [ -74.311592102050781, -12.22337532043457 ], [ -74.309463500976449, -12.223623275756836 ], [ -74.304237365722656, -12.226004600524846 ], [ -74.301727294921818, -12.226188659667969 ], [ -74.298851013183537, -12.22593879699707 ], [ -74.297424316406193, -12.225499153137207 ], [ -74.296241760253906, -12.224953651428223 ], [ -74.294342041015625, -12.223331451415959 ], [ -74.292739868164006, -12.222595214843693 ], [ -74.291809082031193, -12.222529411315918 ], [ -74.290679931640625, -12.222977638244572 ], [ -74.290351867675781, -12.223593711852971 ], [ -74.290451049804631, -12.225266456603947 ], [ -74.292060852050781, -12.228580474853459 ], [ -74.292243957519531, -12.22984504699707 ], [ -74.28985595703125, -12.233528137207031 ], [ -74.286598205566406, -12.237298011779728 ], [ -74.284164428710881, -12.240928649902344 ], [ -74.283523559570199, -12.241188049316349 ], [ -74.282844543456974, -12.241151809692269 ], [ -74.280067443847599, -12.24007606506342 ], [ -74.278388977050781, -12.240072250366154 ], [ -74.27667236328125, -12.239680290222168 ], [ -74.273597717285099, -12.239508628845215 ], [ -74.271705627441406, -12.238998413085881 ], [ -74.270523071289006, -12.239210128784123 ], [ -74.269607543945312, -12.239850997924805 ], [ -74.268112182617188, -12.241728782653752 ], [ -74.264518737792912, -12.244943618774357 ], [ -74.263160705566406, -12.246435165405273 ], [ -74.261955261230412, -12.248727798461914 ], [ -74.261642456054688, -12.25025463104248 ], [ -74.260673522949219, -12.252449989318791 ], [ -74.259231567382812, -12.254913330078068 ], [ -74.257850646972599, -12.256646156310978 ], [ -74.256492614746094, -12.257249832153263 ], [ -74.253662109374943, -12.257811546325684 ], [ -74.249046325683594, -12.257417678833008 ], [ -74.247848510742131, -12.258482933044434 ], [ -74.247573852539062, -12.261502265930119 ], [ -74.247940063476506, -12.264595031738281 ], [ -74.24786376953125, -12.266159057617131 ], [ -74.247360229492131, -12.26793003082264 ], [ -74.246719360351562, -12.269048690795898 ], [ -74.242889404296818, -12.270449638366642 ], [ -74.24139404296875, -12.270662307739258 ], [ -74.240020751953068, -12.270586967468262 ], [ -74.237419128417969, -12.269854545593205 ], [ -74.234085083007812, -12.267332077026367 ], [ -74.232788085937386, -12.267392158508301 ], [ -74.231521606445256, -12.26796817779541 ], [ -74.228584289550724, -12.270363807678223 ], [ -74.227142333984318, -12.272774696350041 ], [ -74.226325988769531, -12.275322914123535 ], [ -74.225471496582031, -12.276305198669434 ], [ -74.224525451660156, -12.276855468749943 ], [ -74.222221374511719, -12.276431083679142 ], [ -74.221229553222599, -12.276508331298828 ], [ -74.219474792480469, -12.277411460876408 ], [ -74.218864440917855, -12.277976036071721 ], [ -74.218421936035156, -12.278581619262695 ], [ -74.218505859375, -12.279307365417424 ], [ -74.220314025878906, -12.282402038574105 ], [ -74.221176147460938, -12.284920692443848 ], [ -74.221267700195312, -12.286196708679199 ], [ -74.220878601074219, -12.287142753600961 ], [ -74.220207214355469, -12.288026809692383 ], [ -74.219589233398438, -12.288433074951172 ], [ -74.217445373535156, -12.289095878601074 ], [ -74.216552734374943, -12.28977108001709 ], [ -74.216011047363281, -12.290591239929199 ], [ -74.216110229492188, -12.291342735290414 ], [ -74.2166748046875, -12.292293548583928 ], [ -74.220954895019474, -12.294549942016545 ], [ -74.222457885742131, -12.296181678771973 ], [ -74.222343444824219, -12.297826766967773 ], [ -74.221603393554631, -12.299343109130803 ], [ -74.2198486328125, -12.301120758056641 ], [ -74.217338562011605, -12.302811622619572 ], [ -74.214927673339787, -12.303547859191895 ], [ -74.214096069335824, -12.303562164306584 ], [ -74.213058471679688, -12.303162574768066 ], [ -74.211662292480469, -12.302226066589355 ], [ -74.209327697753793, -12.298918724060059 ], [ -74.208343505859318, -12.298392295837346 ], [ -74.207321166992131, -12.298333168029728 ], [ -74.204452514648381, -12.299374580383244 ], [ -74.202476501464844, -12.301448822021428 ], [ -74.200881958007812, -12.302214622497445 ], [ -74.198554992675781, -12.30229663848877 ], [ -74.193878173828011, -12.3014879226684 ], [ -74.189788818359375, -12.302207946777287 ], [ -74.187278747558537, -12.303432464599609 ], [ -74.186561584472656, -12.304134368896428 ], [ -74.186592102050781, -12.304956436157113 ], [ -74.188041687011662, -12.306435585021916 ], [ -74.187835693359318, -12.311092376708928 ], [ -74.188621520996037, -12.312539100646916 ], [ -74.188591003417969, -12.31301116943348 ], [ -74.187484741210881, -12.314236640930176 ], [ -74.183883666992188, -12.316522598266602 ], [ -74.182128906249943, -12.3171129226684 ], [ -74.179565429687443, -12.317096710205021 ], [ -74.17919921875, -12.316661834716797 ], [ -74.178680419921818, -12.315013885497933 ], [ -74.17596435546875, -12.313224792480469 ], [ -74.170700073242131, -12.312740325927734 ], [ -74.167762756347656, -12.311843872070256 ], [ -74.166740417480469, -12.311850547790527 ], [ -74.165924072265568, -12.312452316284123 ], [ -74.1632080078125, -12.315320014953556 ], [ -74.162223815917969, -12.317099571228027 ], [ -74.161514282226506, -12.319185256958008 ], [ -74.159637451171818, -12.321215629577637 ], [ -74.153457641601562, -12.322442054748478 ], [ -74.147048950195256, -12.324645996093636 ], [ -74.145759582519531, -12.324362754821777 ], [ -74.144729614257756, -12.323419570922795 ], [ -74.145072937011719, -12.32099723815918 ], [ -74.144828796386662, -12.319259643554688 ], [ -74.143470764160156, -12.317627906799316 ], [ -74.141281127929688, -12.315902709960938 ], [ -74.140640258789006, -12.31554126739502 ], [ -74.139709472656136, -12.315446853637582 ], [ -74.136894226074219, -12.316007614135685 ], [ -74.135131835937386, -12.315415382385197 ], [ -74.132453918456974, -12.314129829406738 ], [ -74.131362915039062, -12.314119338989258 ], [ -74.130249023437443, -12.315372467040959 ], [ -74.130035400390625, -12.316924095153809 ], [ -74.130210876464844, -12.318381309509277 ], [ -74.131591796874943, -12.321297645568791 ], [ -74.131767272949162, -12.323043823242188 ], [ -74.13165283203125, -12.327276229858398 ], [ -74.131423950195312, -12.328632354736271 ], [ -74.130760192871094, -12.330354690551758 ], [ -74.129325866699219, -12.33227634429926 ], [ -74.127014160156193, -12.33344554901123 ], [ -74.124870300292969, -12.33404541015625 ], [ -74.121696472167969, -12.333545684814453 ], [ -74.120536804199162, -12.332855224609375 ], [ -74.119400024413949, -12.331376075744629 ], [ -74.116981506347599, -12.325592041015568 ], [ -74.114356994628906, -12.322138786315861 ], [ -74.113540649414062, -12.320074081420898 ], [ -74.112579345703125, -12.318613052368164 ], [ -74.111404418945312, -12.317699432373047 ], [ -74.106185913085938, -12.314813613891602 ], [ -74.105323791503906, -12.314133644104004 ], [ -74.104446411132812, -12.312908172607365 ], [ -74.104080200195312, -12.311689376830998 ], [ -74.104232788085824, -12.307827949523926 ], [ -74.103805541992188, -12.30689811706543 ], [ -74.101882934570312, -12.304428100585824 ], [ -74.101020812988281, -12.297941207885742 ], [ -74.099388122558594, -12.291707992553711 ], [ -74.098800659179574, -12.285494804382267 ], [ -74.098014831542912, -12.284115791320744 ], [ -74.097282409667969, -12.283598899841252 ], [ -74.0938720703125, -12.28260326385498 ], [ -74.088752746581974, -12.28248405456543 ], [ -74.082809448242188, -12.280957221984806 ], [ -74.076515197753906, -12.281613349914551 ], [ -74.072563171386662, -12.277982711791992 ], [ -74.070632934570256, -12.276882171630859 ], [ -74.068794250488281, -12.276900291442871 ], [ -74.066902160644531, -12.277674674987736 ], [ -74.065910339355469, -12.278359413146973 ], [ -74.06536865234375, -12.278454780578613 ], [ -74.064483642578125, -12.278154373168832 ], [ -74.063560485839844, -12.277247428894043 ], [ -74.062896728515625, -12.276900291442871 ], [ -74.05975341796875, -12.276672363281193 ], [ -74.058677673339844, -12.276100158691349 ], [ -74.057609558105469, -12.27483081817627 ], [ -74.056282043457031, -12.270810127258301 ], [ -74.055335998535156, -12.269560813903752 ], [ -74.049850463867131, -12.267036437988224 ], [ -74.045890808105469, -12.266470909118652 ], [ -74.044647216796875, -12.26605224609375 ], [ -74.043266296386662, -12.264824867248535 ], [ -74.042579650878906, -12.263113975524789 ], [ -74.042060852050781, -12.262596130371094 ], [ -74.041007995605355, -12.261999130249023 ], [ -74.039710998535156, -12.26180267333973 ], [ -74.038375854492188, -12.26213359832758 ], [ -74.036552429199219, -12.263825416564828 ], [ -74.034172058105469, -12.26740837097168 ], [ -74.032974243164006, -12.268812179565316 ], [ -74.030540466308594, -12.270504951476937 ], [ -74.028083801269531, -12.271590232849064 ], [ -74.02642822265625, -12.272622108459473 ], [ -74.024398803710881, -12.274514198303223 ], [ -74.021339416503849, -12.277949333190918 ], [ -74.020233154296875, -12.278162956237736 ], [ -74.012207031249886, -12.278123855590763 ], [ -74.008995056152344, -12.278655052184945 ], [ -74.007171630859375, -12.28007698059082 ], [ -74.004402160644531, -12.28317928314209 ], [ -74.003517150878849, -12.283656120300293 ], [ -74.002586364746094, -12.283803939819336 ], [ -73.998977661132812, -12.282732963561955 ], [ -73.995651245117188, -12.280477523803711 ], [ -73.994758605957031, -12.279435157775822 ], [ -73.993194580078068, -12.278507232666016 ], [ -73.992073059081974, -12.277438163757324 ], [ -73.990890502929688, -12.275932312011719 ], [ -73.9901123046875, -12.274192810058537 ], [ -73.988204956054688, -12.272241592407113 ], [ -73.98760986328125, -12.271118164062443 ], [ -73.986686706542969, -12.268276214599553 ], [ -73.985443115234375, -12.266162872314396 ], [ -73.984367370605469, -12.261349678039437 ], [ -73.984039306640568, -12.258845329284668 ], [ -73.984283447265625, -12.255788803100586 ], [ -73.985908508300781, -12.250884056091252 ], [ -73.986862182617188, -12.248944282531681 ], [ -73.987716674804688, -12.245231628417969 ], [ -73.989547729492188, -12.243339538574219 ], [ -73.991622924804688, -12.238798141479492 ], [ -73.99371337890625, -12.236030578613224 ], [ -73.995277404785156, -12.233134269714299 ], [ -73.992500305175781, -12.234490394592285 ], [ -73.990921020507756, -12.236356735229435 ], [ -73.988395690917969, -12.238742828369141 ], [ -73.987266540527344, -12.239505767822266 ], [ -73.984992980956974, -12.24245643615717 ], [ -73.982391357421875, -12.244605064392033 ], [ -73.980995178222599, -12.246166229248047 ], [ -73.976402282714844, -12.252919197082463 ], [ -73.974624633789006, -12.25718975067133 ], [ -73.972709655761662, -12.263594627380371 ], [ -73.971977233886719, -12.267326354980412 ], [ -73.971908569335938, -12.269296646118164 ], [ -73.971305847167969, -12.273053169250431 ], [ -73.971534729003906, -12.274655342102051 ], [ -73.971099853515511, -12.277159690856934 ], [ -73.970832824707031, -12.281932830810547 ], [ -73.971061706542969, -12.283623695373535 ], [ -73.96942138671875, -12.290488243103027 ], [ -73.969291687011605, -12.297892570495549 ], [ -73.969642639160099, -12.300399780273381 ], [ -73.969497680664062, -12.301836013793945 ], [ -73.969917297363281, -12.304694175720101 ], [ -73.969818115234375, -12.307680130004883 ], [ -73.970039367675724, -12.311017036437931 ], [ -73.969627380371094, -12.310897827148381 ], [ -73.969024658203125, -12.318227767944336 ], [ -73.969940185546818, -12.320962905883732 ], [ -73.970306396484318, -12.325665473937988 ], [ -73.970100402832031, -12.326523780822754 ], [ -73.968948364257812, -12.328372001647949 ], [ -73.968536376953125, -12.330036163330078 ], [ -73.968948364257812, -12.333173751830998 ], [ -73.969680786132812, -12.335691452026367 ], [ -73.969841003417912, -12.337771415710392 ], [ -73.970619201660099, -12.339165687560921 ], [ -73.97090911865223, -12.341156005859375 ], [ -73.970863342285156, -12.342058181762695 ], [ -73.970230102539006, -12.343558311462402 ], [ -73.970008850097656, -12.344834327697754 ], [ -73.969177246093693, -12.345742225646916 ], [ -73.961944580078011, -12.350680351257324 ], [ -73.959083557128793, -12.352131843566838 ], [ -73.957923889160099, -12.352289199829102 ], [ -73.954017639160099, -12.351616859436035 ], [ -73.949714660644474, -12.351200103759766 ], [ -73.947769165039062, -12.351385116577092 ], [ -73.946907043457031, -12.351824760437012 ], [ -73.944488525390568, -12.355043411254883 ], [ -73.943115234375, -12.360770225524789 ], [ -73.941307067871094, -12.363792419433594 ], [ -73.940528869628906, -12.366193771362305 ], [ -73.937675476074219, -12.370730400085449 ], [ -73.936096191406193, -12.372721672058105 ], [ -73.933547973632812, -12.377016067504826 ], [ -73.92962646484375, -12.382550239562931 ], [ -73.926773071289062, -12.384185791015625 ], [ -73.925712585449219, -12.385195732116699 ], [ -73.924385070800781, -12.386935234069824 ], [ -73.922554016113224, -12.388121604919377 ], [ -73.917320251464844, -12.388018608093205 ], [ -73.913276672363224, -12.388890266418457 ], [ -73.911216735839844, -12.389721870422363 ], [ -73.909896850585938, -12.392065048217773 ], [ -73.907257080078125, -12.395212173461914 ], [ -73.905578613281193, -12.396607398986816 ], [ -73.903938293456974, -12.39923095703125 ], [ -73.899330139160156, -12.404801368713379 ], [ -73.895256042480412, -12.406863212585449 ], [ -73.89227294921875, -12.409816741943359 ], [ -73.8892822265625, -12.411405563354492 ], [ -73.884513854980469, -12.417043685913086 ], [ -73.882797241210938, -12.418375015258789 ], [ -73.882614135742188, -12.419460296630859 ], [ -73.88214111328125, -12.420531272888127 ], [ -73.882385253906193, -12.421592712402344 ], [ -73.882400512695256, -12.424576759338379 ], [ -73.881996154785099, -12.427169799804574 ], [ -73.880950927734318, -12.430736541748047 ], [ -73.879501342773438, -12.43405818939209 ], [ -73.879508972167969, -12.435585021972656 ], [ -73.878715515136719, -12.43701171875 ], [ -73.878761291503849, -12.438367843627873 ], [ -73.876884460449219, -12.441226005554142 ], [ -73.876258850097656, -12.443121910095215 ], [ -73.876029968261719, -12.444640159606934 ], [ -73.876174926757756, -12.447443008422852 ], [ -73.87554931640625, -12.450260162353516 ], [ -73.873947143554688, -12.45311164855957 ], [ -73.870765686035099, -12.457972526550293 ], [ -73.870170593261662, -12.459498405456543 ], [ -73.870033264160156, -12.461478233337289 ], [ -73.869064331054688, -12.464113235473576 ], [ -73.867126464843693, -12.467803001403809 ], [ -73.865676879882812, -12.469434738159123 ], [ -73.864112854003906, -12.472610473632812 ], [ -73.862716674804688, -12.47416877746582 ], [ -73.858802795410156, -12.480010032653809 ], [ -73.858306884765625, -12.482115745544434 ], [ -73.85723876953125, -12.48400974273676 ], [ -73.856605529785156, -12.485616683959961 ], [ -73.856086730956918, -12.488642692565861 ], [ -73.853080749511719, -12.49471473693842 ], [ -73.853256225585938, -12.496341705322266 ], [ -73.85247802734375, -12.499711036682129 ], [ -73.854484558105469, -12.506149291992188 ], [ -73.855018615722599, -12.509043693542424 ], [ -73.855621337890625, -12.510590553283691 ], [ -73.856056213378849, -12.512574195861816 ], [ -73.855987548828068, -12.519473075866699 ], [ -73.855125427246037, -12.525850296020508 ], [ -73.85614013671875, -12.529282569885254 ], [ -73.85614013671875, -12.531309127807617 ], [ -73.854560852050668, -12.534149169921818 ], [ -73.851730346679688, -12.53732967376709 ], [ -73.849533081054688, -12.5390367507934 ], [ -73.847755432128849, -12.539444923400879 ], [ -73.845108032226506, -12.538901329040471 ], [ -73.842521667480412, -12.537434577941781 ], [ -73.8402099609375, -12.535162925720158 ], [ -73.837318420410156, -12.531778335571289 ], [ -73.835685729980469, -12.530405998229924 ], [ -73.835090637206974, -12.530241966247559 ], [ -73.833557128906193, -12.530305862426644 ], [ -73.832389831542969, -12.530843734741154 ], [ -73.831573486328068, -12.530796051025334 ], [ -73.829429626464844, -12.531691551208496 ], [ -73.826286315917969, -12.533982276916447 ], [ -73.825263977050724, -12.536245346069336 ], [ -73.823997497558594, -12.542262077331543 ], [ -73.820404052734318, -12.552302360534668 ], [ -73.817543029785099, -12.55715179443348 ], [ -73.815330505371037, -12.561881065368596 ], [ -73.814872741699162, -12.562455177307129 ], [ -73.814598083496037, -12.563332557678223 ], [ -73.811599731445312, -12.568923950195312 ], [ -73.809074401855355, -12.5717515945434 ], [ -73.805252075195256, -12.574357032775879 ], [ -73.804122924804688, -12.576142311096135 ], [ -73.803787231445312, -12.57757663726801 ], [ -73.803665161132812, -12.579694747924748 ], [ -73.80426025390625, -12.582470893859863 ], [ -73.8052978515625, -12.584112167358398 ], [ -73.807128906249943, -12.58538818359375 ], [ -73.808815002441406, -12.587113380432072 ], [ -73.8092041015625, -12.587846755981445 ], [ -73.809333801269474, -12.588950157165471 ], [ -73.809028625488281, -12.590186119079533 ], [ -73.807739257812386, -12.59285926818842 ], [ -73.803756713867188, -12.598744392394963 ], [ -73.803207397460938, -12.600314140319767 ], [ -73.802413940429688, -12.605300903320256 ], [ -73.802688598632812, -12.607348442077637 ], [ -73.803474426269531, -12.608903884887695 ], [ -73.803642272949219, -12.610369682312012 ], [ -73.803421020507756, -12.611725807189828 ], [ -73.802452087402344, -12.614019393920842 ], [ -73.801284790039062, -12.615784645080566 ], [ -73.798713684082031, -12.618041038513127 ], [ -73.79620361328125, -12.619467735290471 ], [ -73.790756225585881, -12.621568679809513 ], [ -73.7890625, -12.622845649719238 ], [ -73.786636352539006, -12.625264167785588 ], [ -73.784553527831974, -12.627732276916447 ], [ -73.782600402832031, -12.630880355834961 ], [ -73.778236389160099, -12.636954307556039 ], [ -73.777587890624943, -12.63847827911377 ], [ -73.776420593261662, -12.642740249633732 ], [ -73.774703979492131, -12.645906448364258 ], [ -73.772666931152344, -12.648320198059025 ], [ -73.770774841308594, -12.65008354187006 ], [ -73.767341613769531, -12.651730537414551 ], [ -73.766403198242188, -12.652430534362793 ], [ -73.763862609863224, -12.653568267822152 ], [ -73.760635375976562, -12.654048919677621 ], [ -73.753997802734375, -12.655891418457031 ], [ -73.752792358398381, -12.655847549438477 ], [ -73.750823974609375, -12.655268669128418 ], [ -73.747528076171818, -12.652859687805176 ], [ -73.746124267578068, -12.652380943298283 ], [ -73.744003295898381, -12.652118682861271 ], [ -73.742507934570199, -12.650872230529785 ], [ -73.741783142089844, -12.649394989013672 ], [ -73.741142272949162, -12.645949363708496 ], [ -73.739990234374943, -12.641828536987305 ], [ -73.739036560058537, -12.640583992004395 ], [ -73.737030029296875, -12.639617919921818 ], [ -73.733932495117188, -12.638607978820744 ], [ -73.731697082519474, -12.638452529907113 ], [ -73.730735778808594, -12.638837814330941 ], [ -73.728828430175781, -12.640962600708008 ], [ -73.725616455078068, -12.646669387817383 ], [ -73.723785400390568, -12.649337768554631 ], [ -73.720489501953125, -12.657233238220158 ], [ -73.7188720703125, -12.660243988036996 ], [ -73.716484069824219, -12.663948059081974 ], [ -73.712509155273438, -12.667672157287541 ], [ -73.709808349609375, -12.668435096740666 ], [ -73.704063415527287, -12.669537544250488 ], [ -73.702812194824162, -12.670228958129883 ], [ -73.700241088867131, -12.672765731811467 ], [ -73.699790954589844, -12.67387580871582 ], [ -73.699760437011662, -12.674707412719727 ], [ -73.700653076171875, -12.677811622619572 ], [ -73.700759887695312, -12.680658340454102 ], [ -73.699897766113281, -12.683367729186955 ], [ -73.698959350585938, -12.684638023376351 ], [ -73.696365356445312, -12.687003135681096 ], [ -73.694633483886605, -12.688090324401855 ], [ -73.691520690917969, -12.688398361205998 ], [ -73.689460754394474, -12.687828063964844 ], [ -73.687217712402344, -12.686740875244084 ], [ -73.686225891113224, -12.687026023864746 ], [ -73.68471527099598, -12.688265800476074 ], [ -73.683601379394531, -12.690584182739201 ], [ -73.683204650878906, -12.692831039428711 ], [ -73.68251800537098, -12.694836616516113 ], [ -73.680435180664062, -12.698749542236271 ], [ -73.676742553710938, -12.702647209167424 ], [ -73.672927856445312, -12.70573616027832 ], [ -73.667419433593693, -12.711116790771484 ], [ -73.666122436523438, -12.712881088256836 ], [ -73.663864135742188, -12.717343330383301 ], [ -73.659103393554688, -12.723251342773381 ], [ -73.658912658691406, -12.724037170410099 ], [ -73.659042358398381, -12.725419998168888 ], [ -73.65966796875, -12.726733207702637 ], [ -73.660797119140625, -12.728178024291935 ], [ -73.661544799804688, -12.729855537414494 ], [ -73.661552429199219, -12.731608390808105 ], [ -73.660789489746094, -12.733974456787109 ], [ -73.659553527832031, -12.736027717590332 ], [ -73.658447265625, -12.737016677856445 ], [ -73.652557373046818, -12.740875244140625 ], [ -73.646003723144531, -12.746337890624943 ], [ -73.63751220703125, -12.75669002532959 ], [ -73.629531860351562, -12.762985229492188 ], [ -73.6287841796875, -12.763687133789006 ], [ -73.627876281738168, -12.765039443969727 ], [ -73.626899719238224, -12.767645835876465 ], [ -73.626815795898381, -12.770305633544922 ], [ -73.627571105956974, -12.772966384887695 ], [ -73.629158020019531, -12.776399612426758 ], [ -73.630264282226562, -12.779542922973633 ], [ -73.630462646484375, -12.781912803649789 ], [ -73.630126953124943, -12.784839630126953 ], [ -73.629104614257756, -12.788269996643066 ], [ -73.625541687011719, -12.792789459228459 ], [ -73.620910644531136, -12.799463272094727 ], [ -73.619987487792969, -12.802262306213322 ], [ -73.619110107421875, -12.80668830871582 ], [ -73.617599487304688, -12.808171272277775 ], [ -73.615074157714787, -12.809370040893555 ], [ -73.613777160644531, -12.809489250183105 ], [ -73.610244750976562, -12.809226989746094 ], [ -73.607177734374886, -12.810004234313965 ], [ -73.606338500976562, -12.810588836669922 ], [ -73.605064392089787, -12.811070442199707 ], [ -73.598716735839844, -12.816109657287598 ], [ -73.595588684082031, -12.819799423217773 ], [ -73.592803955078125, -12.824131965637207 ], [ -73.590774536132699, -12.829771041870117 ], [ -73.5908203125, -12.831525802612305 ], [ -73.590805053710938, -12.833070755004826 ], [ -73.593421936035099, -12.838462829589787 ], [ -73.593635559081918, -12.842080116271973 ], [ -73.593513488769474, -12.844167709350586 ], [ -73.592460632324162, -12.845800399780273 ], [ -73.591896057128849, -12.847261428833008 ], [ -73.588623046875, -12.853245735168457 ], [ -73.587570190429688, -12.854759216308537 ], [ -73.586105346679574, -12.857932090759277 ], [ -73.585433959960824, -12.858824729919434 ], [ -73.584342956542969, -12.859686851501465 ], [ -73.581039428710881, -12.860960960388127 ], [ -73.575637817382812, -12.861231803893986 ], [ -73.573631286621094, -12.861662864685059 ], [ -73.571830749511719, -12.862438201904297 ], [ -73.569107055664006, -12.864032745361271 ], [ -73.565559387207031, -12.867015838623047 ], [ -73.557815551757812, -12.872108459472656 ], [ -73.555229187011719, -12.874062538146916 ], [ -73.550704956054631, -12.878189086914062 ], [ -73.548042297363224, -12.881393432617131 ], [ -73.545127868652344, -12.884366989135742 ], [ -73.540351867675781, -12.888038635253906 ], [ -73.538810729980469, -12.889458656311035 ], [ -73.532882690429631, -12.893609046935978 ], [ -73.527542114257756, -12.898823738098145 ], [ -73.525291442871094, -12.901388168334961 ], [ -73.524345397949219, -12.90407657623291 ], [ -73.524085998535099, -12.905258178710938 ], [ -73.524192810058537, -12.905876159667912 ], [ -73.526771545410099, -12.909036636352539 ], [ -73.533897399902344, -12.915438652038574 ], [ -73.534820556640625, -12.916881561279183 ], [ -73.535659790039062, -12.920131683349609 ], [ -73.535774230957031, -12.923260688781681 ], [ -73.535568237304688, -12.925818443298226 ], [ -73.532455444335938, -12.93156623840332 ], [ -73.529724121093693, -12.93551063537592 ], [ -73.527732849121037, -12.937318801879826 ], [ -73.525787353515625, -12.938598632812443 ], [ -73.524452209472656, -12.939214706420842 ], [ -73.523445129394418, -12.939337730407658 ], [ -73.522064208984375, -12.939093589782715 ], [ -73.520484924316349, -12.938278198242188 ], [ -73.514869689941406, -12.934026718139648 ], [ -73.511207580566349, -12.932621002197266 ], [ -73.507186889648438, -12.931385993957463 ], [ -73.504074096679631, -12.930882453918457 ], [ -73.499877929687443, -12.931344985961914 ], [ -73.4991455078125, -12.931912422180176 ], [ -73.498580932617188, -12.932847023010254 ], [ -73.497795104980355, -12.934931755065918 ], [ -73.497795104980355, -12.938150405883789 ], [ -73.498985290527344, -12.939324378967285 ], [ -73.499778747558537, -12.941081047057992 ], [ -73.502151489257756, -12.943950653076115 ], [ -73.503181457519531, -12.94670581817627 ], [ -73.503944396972656, -12.947397232055664 ], [ -73.505119323730412, -12.947963714599553 ], [ -73.508346557617131, -12.948445320129338 ], [ -73.511093139648438, -12.94929122924799 ], [ -73.512298583984375, -12.95057201385498 ], [ -73.513465881347656, -12.952884674072266 ], [ -73.513748168945312, -12.955434799194279 ], [ -73.512809753417969, -12.961108207702523 ], [ -73.512283325195256, -12.962325096130314 ], [ -73.510299682617188, -12.964056968688908 ], [ -73.509490966796818, -12.966006278991699 ], [ -73.509300231933537, -12.968825340270939 ], [ -73.510902404785156, -12.971682548522892 ], [ -73.513557434082031, -12.97453498840332 ], [ -73.514991760253906, -12.975720405578556 ], [ -73.517745971679688, -12.976855278015137 ], [ -73.519813537597599, -12.978115081787109 ], [ -73.524520874023438, -12.979289054870549 ], [ -73.52687835693348, -12.980161666870117 ], [ -73.529869079589844, -12.982048988342285 ], [ -73.531715393066349, -12.983741760253906 ], [ -73.53216552734375, -12.984439849853516 ], [ -73.532264709472656, -12.985274314880371 ], [ -73.531410217285156, -12.98635196685791 ], [ -73.525382995605469, -12.989474296569824 ], [ -73.524101257324162, -12.990695953369027 ], [ -73.523643493652344, -12.991994857788086 ], [ -73.522842407226506, -12.992749214172363 ], [ -73.52252197265625, -12.993777275085449 ], [ -73.522514343261719, -12.998109817504883 ], [ -73.523231506347599, -12.999910354614258 ], [ -73.524543762207031, -13.001456260681152 ], [ -73.525169372558594, -13.003347396850586 ], [ -73.524185180664006, -13.006153106689453 ], [ -73.523216247558594, -13.007732391357365 ], [ -73.52215576171875, -13.008773803710938 ], [ -73.521194458007812, -13.0091552734375 ], [ -73.517547607421875, -13.008972167968693 ], [ -73.51544189453125, -13.009432792663517 ], [ -73.511810302734261, -13.011650085449162 ], [ -73.507369995117188, -13.01335334777832 ], [ -73.505973815917912, -13.013163566589299 ], [ -73.505256652832031, -13.012725830078011 ], [ -73.503662109375, -13.011162757873535 ], [ -73.503097534179631, -13.010210037231445 ], [ -73.501708984375, -13.009017944335938 ], [ -73.499443054199219, -13.008570671081486 ], [ -73.498100280761719, -13.007796287536621 ], [ -73.496910095214787, -13.005554199218693 ], [ -73.495346069335938, -13.003891944885254 ], [ -73.492622375488224, -13.002591133117676 ], [ -73.491622924804688, -13.000075340270939 ], [ -73.490798950195256, -12.998928070068359 ], [ -73.490165710449105, -12.998573303222599 ], [ -73.488685607910156, -12.998285293579102 ], [ -73.486007690429688, -12.998774528503304 ], [ -73.484718322753849, -12.999293327331543 ], [ -73.483993530273438, -13.000200271606445 ], [ -73.4822998046875, -13.000126838684025 ], [ -73.481300354003906, -13.000311851501465 ], [ -73.479904174804688, -13.001505851745549 ], [ -73.479652404785099, -13.003067016601506 ], [ -73.479743957519474, -13.004269599914551 ], [ -73.482391357421875, -13.009024620056152 ], [ -73.483161926269531, -13.011767387390137 ], [ -73.483383178710881, -13.01786994934082 ], [ -73.483268737792912, -13.021341323852482 ], [ -73.482009887695312, -13.024309158325082 ], [ -73.481933593749943, -13.025788307189885 ], [ -73.482192993164062, -13.026459693908635 ], [ -73.482246398925668, -13.028312683105469 ], [ -73.481491088867188, -13.030768394470215 ], [ -73.481300354003906, -13.032789230346623 ], [ -73.481361389160099, -13.03416633605957 ], [ -73.481719970703125, -13.035506248474121 ], [ -73.482742309570312, -13.037400245666504 ], [ -73.486228942871037, -13.041387557983398 ], [ -73.487701416015625, -13.042780876159668 ], [ -73.488975524902344, -13.043105125427189 ], [ -73.491607666015625, -13.042487144470215 ], [ -73.493003845214787, -13.042731285095158 ], [ -73.49383544921875, -13.043115615844727 ], [ -73.494659423828125, -13.044133186340332 ], [ -73.495269775390625, -13.045971870422363 ], [ -73.496475219726562, -13.047902107238713 ], [ -73.49636077880848, -13.049187660217285 ], [ -73.494178771972656, -13.051577568054142 ], [ -73.494155883789006, -13.051950454711857 ], [ -73.493507385253906, -13.052956581115666 ], [ -73.492614746093693, -13.056811332702637 ], [ -73.492691040039062, -13.059479713439828 ], [ -73.49398040771473, -13.063429832458439 ], [ -73.493881225585824, -13.066745758056641 ], [ -73.492965698242188, -13.067934036254883 ], [ -73.491592407226449, -13.068214416503849 ], [ -73.488372802734375, -13.067580223083496 ], [ -73.486732482910043, -13.066505432128849 ], [ -73.485733032226562, -13.064357757568359 ], [ -73.484954833984375, -13.061685562133732 ], [ -73.4853515625, -13.059797286987305 ], [ -73.485221862792969, -13.058062553405705 ], [ -73.484237670898381, -13.056391716003418 ], [ -73.4835205078125, -13.055964469909611 ], [ -73.482772827148438, -13.055976867675781 ], [ -73.481163024902287, -13.056744575500488 ], [ -73.479995727539062, -13.057659149169922 ], [ -73.478858947753906, -13.058882713317871 ], [ -73.478111267089787, -13.060054779052734 ], [ -73.474098205566406, -13.063521385192814 ], [ -73.472373962402344, -13.066122055053711 ], [ -73.47100830078125, -13.06691932678217 ], [ -73.469818115234318, -13.067092895507812 ], [ -73.468887329101506, -13.067765235900822 ], [ -73.468688964843693, -13.069119453430176 ], [ -73.469505310058594, -13.07147312164301 ], [ -73.4696044921875, -13.073246002197209 ], [ -73.4691162109375, -13.074202537536564 ], [ -73.467376708984375, -13.076414108276367 ], [ -73.466102600097599, -13.079264640807992 ], [ -73.465095520019531, -13.080154418945312 ], [ -73.463722229003849, -13.080571174621582 ], [ -73.459190368652344, -13.080858230590763 ], [ -73.456558227539006, -13.080192565917969 ], [ -73.455062866210881, -13.079036712646484 ], [ -73.454200744628849, -13.078823089599609 ], [ -73.453163146972543, -13.079090118408146 ], [ -73.452507019042969, -13.079734802246037 ], [ -73.452095031738224, -13.080772399902344 ], [ -73.452178955078068, -13.08170223236084 ], [ -73.453025817871094, -13.083723068237191 ], [ -73.453880310058594, -13.085159301757812 ], [ -73.455009460449219, -13.086112022399846 ], [ -73.458023071288949, -13.087388038635197 ], [ -73.458648681640625, -13.088161468505746 ], [ -73.459167480468636, -13.089754104614258 ], [ -73.458946228027287, -13.09352970123291 ], [ -73.457237243652287, -13.098320960998535 ], [ -73.456314086914062, -13.099708557128906 ], [ -73.454559326171818, -13.100762367248478 ], [ -73.4512939453125, -13.100996971130314 ], [ -73.449417114257756, -13.101826667785645 ], [ -73.447479248046875, -13.103568077087346 ], [ -73.447006225585938, -13.10527324676508 ], [ -73.447509765624943, -13.106108665466309 ], [ -73.448471069335881, -13.106865882873478 ], [ -73.449409484863224, -13.106925010681039 ], [ -73.450492858886605, -13.106200218200684 ], [ -73.450920104980469, -13.106339454650879 ], [ -73.452308654785156, -13.108172416687012 ], [ -73.452545166015625, -13.109908103942871 ], [ -73.451950073242188, -13.112038612365723 ], [ -73.451873779296875, -13.113238334655762 ], [ -73.451988220214787, -13.115075111389046 ], [ -73.452606201171875, -13.116526603698674 ], [ -73.45330810546875, -13.117498397827148 ], [ -73.454322814941406, -13.118179321289006 ], [ -73.457992553710881, -13.118838310241642 ], [ -73.458900451660156, -13.120125770568791 ], [ -73.458908081054688, -13.121500015258789 ], [ -73.457115173339844, -13.123061180114746 ], [ -73.454154968261719, -13.124182701110726 ], [ -73.453254699706918, -13.124848365783691 ], [ -73.452720642089844, -13.124853134155273 ], [ -73.451774597167969, -13.125460624694824 ], [ -73.449295043945312, -13.125917434692383 ], [ -73.447326660156193, -13.127170562744141 ], [ -73.444068908691349, -13.128316879272461 ], [ -73.441543579101562, -13.130181312561035 ], [ -73.440017700195312, -13.132802009582463 ], [ -73.438972473144531, -13.138790130615178 ], [ -73.438591003417969, -13.139636993408146 ], [ -73.437919616699219, -13.140284538268986 ], [ -73.435691833496037, -13.140008926391602 ], [ -73.434432983398381, -13.139477729797306 ], [ -73.431472778320312, -13.135761260986328 ], [ -73.431030273437443, -13.13444805145258 ], [ -73.430824279785099, -13.132266998291016 ], [ -73.429901123046875, -13.130932807922363 ], [ -73.429145812988281, -13.130647659301644 ], [ -73.427947998046818, -13.131111145019531 ], [ -73.425125122070199, -13.13405799865717 ], [ -73.424339294433537, -13.135753631591797 ], [ -73.421134948730469, -13.140398979186898 ], [ -73.420211791992188, -13.142409324645996 ], [ -73.418525695800724, -13.147180557250977 ], [ -73.418571472167969, -13.147921562194767 ], [ -73.419021606445199, -13.148719787597543 ], [ -73.418899536132756, -13.150553703308105 ], [ -73.419853210449162, -13.152332305908146 ], [ -73.419876098632699, -13.152993202209473 ], [ -73.418548583984375, -13.154393196105957 ], [ -73.417144775390625, -13.155133247375375 ], [ -73.416206359863281, -13.156161308288574 ], [ -73.413185119628849, -13.158484458923283 ], [ -73.412422180175724, -13.160223007202148 ], [ -73.411727905273438, -13.162982940673828 ], [ -73.411743164062443, -13.164901733398381 ], [ -73.412429809570256, -13.166007041931152 ], [ -73.412895202636662, -13.167502403259277 ], [ -73.412857055664062, -13.171272277832031 ], [ -73.413131713867188, -13.173170089721623 ], [ -73.412971496582031, -13.174354553222599 ], [ -73.411636352539062, -13.176018714904671 ], [ -73.409614562988281, -13.177153587341309 ], [ -73.407424926757812, -13.179155349731388 ], [ -73.407325744628906, -13.179706573486271 ], [ -73.4068603515625, -13.180391311645451 ], [ -73.406967163085881, -13.180844306945744 ], [ -73.406257629394531, -13.182781219482422 ], [ -73.406242370605355, -13.185350418090763 ], [ -73.406707763671818, -13.186824798583984 ], [ -73.407058715820312, -13.187100410461426 ], [ -73.40771484375, -13.189750671386719 ], [ -73.408340454101449, -13.190423011779785 ], [ -73.410026550292912, -13.192001342773381 ], [ -73.411140441894531, -13.192483901977539 ], [ -73.413642883300724, -13.192898750305062 ], [ -73.416885375976506, -13.193125724792424 ], [ -73.417968749999886, -13.194153785705566 ], [ -73.4185791015625, -13.195496559143066 ], [ -73.418632507324162, -13.196608543395996 ], [ -73.418350219726449, -13.19768238067627 ], [ -73.415214538574219, -13.201693534851017 ], [ -73.413970947265625, -13.203982353210392 ], [ -73.413589477539062, -13.206322669982853 ], [ -73.413368225097599, -13.212221145629883 ], [ -73.412651062011719, -13.213067054748535 ], [ -73.411590576171875, -13.213288307189885 ], [ -73.410499572753849, -13.212765693664551 ], [ -73.409515380859375, -13.211421012878361 ], [ -73.409225463867188, -13.210651397705078 ], [ -73.408317565917912, -13.210013389587289 ], [ -73.406097412109375, -13.209746360778809 ], [ -73.404396057128849, -13.210294723510742 ], [ -73.402389526367131, -13.21143913269043 ], [ -73.398094177246094, -13.215399742126465 ], [ -73.397743225097599, -13.215389251708984 ], [ -73.395706176757812, -13.216668128967285 ], [ -73.39398193359375, -13.218482017517033 ], [ -73.392959594726506, -13.219136238098145 ], [ -73.391044616699162, -13.221248626708984 ], [ -73.386802673339844, -13.224775314330941 ], [ -73.385749816894531, -13.226730346679574 ], [ -73.385704040527287, -13.228464126586857 ], [ -73.384834289550781, -13.230194091796875 ], [ -73.384605407714844, -13.23145866394043 ], [ -73.384735107421875, -13.232552528381291 ], [ -73.38641357421875, -13.236243247985726 ], [ -73.386383056640568, -13.238457679748478 ], [ -73.384124755859375, -13.241108894348145 ], [ -73.383644104003906, -13.241241455078125 ], [ -73.382965087890568, -13.240856170654297 ], [ -73.381217956542912, -13.24072170257557 ], [ -73.380218505859375, -13.241049766540527 ], [ -73.378143310546875, -13.243179321289062 ], [ -73.376701354980469, -13.244316101074219 ], [ -73.375297546386719, -13.245906829833984 ], [ -73.37496185302723, -13.247061729431152 ], [ -73.375045776367131, -13.252043724060002 ], [ -73.374588012695312, -13.25271034240717 ], [ -73.373710632324162, -13.256246566772347 ], [ -73.373794555664006, -13.256972312927246 ], [ -73.374465942382756, -13.25828742980957 ], [ -73.374450683593693, -13.259488105773926 ], [ -73.374084472656193, -13.259757041931152 ], [ -73.373886108398381, -13.260372161865178 ], [ -73.372016906738281, -13.263339996337834 ], [ -73.369506835937443, -13.266072273254395 ], [ -73.369102478027344, -13.268781661987305 ], [ -73.367767333984375, -13.270058631896973 ], [ -73.366264343261662, -13.270570755004883 ], [ -73.364761352539062, -13.270599365234261 ], [ -73.364509582519531, -13.270316123962402 ], [ -73.363761901855469, -13.270378112792912 ], [ -73.36260986328125, -13.269969940185547 ], [ -73.361389160156193, -13.269916534423771 ], [ -73.360366821288949, -13.270027160644418 ], [ -73.359169006347656, -13.270581245422363 ], [ -73.357185363769474, -13.27043247222889 ], [ -73.356391906738281, -13.270607948303166 ], [ -73.355201721191349, -13.271801948547363 ], [ -73.354896545410099, -13.272649765014535 ], [ -73.352577209472656, -13.275056838989258 ], [ -73.351730346679688, -13.276698112487793 ], [ -73.350082397460938, -13.278323173522949 ], [ -73.350120544433594, -13.279623985290471 ], [ -73.350540161132756, -13.28022384643549 ], [ -73.3505859375, -13.282158851623421 ], [ -73.350959777832031, -13.282975196838379 ], [ -73.350921630859318, -13.284456253051701 ], [ -73.350425720214787, -13.285556793212834 ], [ -73.350898742675724, -13.286635398864746 ], [ -73.351692199706918, -13.287690162658578 ], [ -73.352371215820312, -13.288162231445312 ], [ -73.355438232421875, -13.287783622741699 ], [ -73.356109619140625, -13.288096427917424 ], [ -73.356407165527344, -13.28862190246582 ], [ -73.356491088867188, -13.291921615600586 ], [ -73.354721069335881, -13.292941093444824 ], [ -73.353446960449219, -13.293203353881836 ], [ -73.352897644042912, -13.293057441711426 ], [ -73.350776672363281, -13.291468620300293 ], [ -73.349365234374943, -13.291460037231445 ], [ -73.347473144531193, -13.29191780090332 ], [ -73.346397399902344, -13.291603088378906 ], [ -73.345413208007812, -13.29088306427002 ], [ -73.344924926757812, -13.291213989257812 ], [ -73.344673156738281, -13.292206764221191 ], [ -73.3448486328125, -13.292816162109261 ], [ -73.347602844238281, -13.29571533203125 ], [ -73.350196838378906, -13.297755241393929 ], [ -73.35260009765625, -13.297736167907658 ], [ -73.352821350097599, -13.298062324523869 ], [ -73.352882385253906, -13.298995018005257 ], [ -73.352783203125, -13.301858901977539 ], [ -73.352485656738281, -13.302798271179142 ], [ -73.35054779052723, -13.303931236267033 ], [ -73.349311828613281, -13.305036544799748 ], [ -73.3475341796875, -13.305612564086857 ], [ -73.346855163574219, -13.306385993957406 ], [ -73.346511840820256, -13.307332038879338 ], [ -73.346298217773438, -13.30988883972168 ], [ -73.345832824707031, -13.311676025390568 ], [ -73.345436096191406, -13.312197685241699 ], [ -73.345001220703068, -13.312519073486328 ], [ -73.344520568847599, -13.31249809265131 ], [ -73.343727111816406, -13.312005996704045 ], [ -73.340881347656193, -13.311053276062012 ], [ -73.339324951171875, -13.309344291687012 ], [ -73.338233947753849, -13.308831214904728 ], [ -73.335044860839844, -13.308829307556152 ], [ -73.333946228027287, -13.309067726135254 ], [ -73.331809997558594, -13.310844421386605 ], [ -73.331344604492131, -13.311753273010254 ], [ -73.328781127929631, -13.314916610717773 ], [ -73.327941894531136, -13.316567420959416 ], [ -73.327751159667855, -13.318119049072266 ], [ -73.327247619628849, -13.319417953491211 ], [ -73.325469970703125, -13.321658134460392 ], [ -73.324066162109375, -13.322894096374455 ], [ -73.323150634765568, -13.323386192321721 ], [ -73.320549011230469, -13.323306083679142 ], [ -73.318893432617188, -13.323519706726074 ], [ -73.3175048828125, -13.324748992919865 ], [ -73.316947937011662, -13.325777053833008 ], [ -73.315147399902287, -13.327635765075684 ], [ -73.314826965332031, -13.331121444702148 ], [ -73.314872741699162, -13.333599090576115 ], [ -73.315437316894474, -13.334868431091309 ], [ -73.316284179687443, -13.335967063903752 ], [ -73.316360473632812, -13.337251663208008 ], [ -73.315940856933594, -13.337971687316895 ], [ -73.314552307128906, -13.339209556579533 ], [ -73.311279296875, -13.339323997497502 ], [ -73.309883117675724, -13.339884757995549 ], [ -73.308723449707031, -13.341106414794922 ], [ -73.308670043945256, -13.341593742370549 ], [ -73.309341430664006, -13.342259407043457 ], [ -73.309219360351506, -13.34307956695551 ], [ -73.306610107421875, -13.345311164855957 ], [ -73.306228637695312, -13.346259117126408 ], [ -73.306724548339844, -13.347121238708439 ], [ -73.307472229003906, -13.347505569457951 ], [ -73.3082275390625, -13.347601890563908 ], [ -73.309104919433594, -13.348356246948185 ], [ -73.309165954589844, -13.349389076232853 ], [ -73.308761596679631, -13.350071907043457 ], [ -73.3052978515625, -13.35277080535883 ], [ -73.301307678222599, -13.354941368102971 ], [ -73.298591613769531, -13.354947090148926 ], [ -73.294433593749943, -13.353816986083928 ], [ -73.293983459472599, -13.353897094726562 ], [ -73.293380737304688, -13.354361534118652 ], [ -73.293235778808594, -13.355807304382267 ], [ -73.293716430664062, -13.35738372802723 ], [ -73.293426513671875, -13.359748840331974 ], [ -73.293548583984375, -13.361955642700195 ], [ -73.292587280273438, -13.364444732666016 ], [ -73.292556762695256, -13.368311882018986 ], [ -73.291519165039062, -13.370166778564453 ], [ -73.291290283203068, -13.37161922454834 ], [ -73.290863037109375, -13.37221622467041 ], [ -73.289962768554631, -13.372914314269963 ], [ -73.286880493164062, -13.373027801513672 ], [ -73.285804748535156, -13.372134208679142 ], [ -73.285133361816406, -13.371038436889592 ], [ -73.284568786621094, -13.370879173278752 ], [ -73.284011840820312, -13.371002197265568 ], [ -73.282463073730469, -13.372050285339355 ], [ -73.280426025390568, -13.373969078063965 ], [ -73.278350830078011, -13.377931594848519 ], [ -73.276206970214844, -13.379987716674805 ], [ -73.272476196289062, -13.381173133850098 ], [ -73.270439147949105, -13.382045745849553 ], [ -73.267784118652344, -13.38271427154541 ], [ -73.266792297363224, -13.383231163024902 ], [ -73.265327453613281, -13.384651184081974 ], [ -73.264259338378906, -13.385220527648869 ], [ -73.263526916503906, -13.386074066162053 ], [ -73.263313293457031, -13.38666820526123 ], [ -73.263648986816349, -13.388858795166016 ], [ -73.263664245605355, -13.390885353088379 ], [ -73.263282775878793, -13.391812324523869 ], [ -73.262962341308537, -13.394285202026367 ], [ -73.262557983398438, -13.394888877868652 ], [ -73.262062072753906, -13.395174026489201 ], [ -73.260604858398381, -13.395372390747013 ], [ -73.258377075195312, -13.393532752990666 ], [ -73.256423950195312, -13.392245292663517 ], [ -73.255706787109375, -13.392043113708439 ], [ -73.255126953125, -13.392342567443848 ], [ -73.255050659179631, -13.393526077270508 ], [ -73.256011962890568, -13.395921707153263 ], [ -73.256195068359318, -13.397394180297852 ], [ -73.255966186523438, -13.398161888122502 ], [ -73.255172729492131, -13.399429321289006 ], [ -73.254783630371037, -13.401315689086914 ], [ -73.253829956054631, -13.402573585510197 ], [ -73.251754760742188, -13.404127120971623 ], [ -73.250335693359375, -13.405723571777287 ], [ -73.249229431152287, -13.406492233276367 ], [ -73.246871948242131, -13.40739917755127 ], [ -73.244956970214787, -13.409022331237736 ], [ -73.242607116699219, -13.409927368163949 ], [ -73.241683959960938, -13.41071605682373 ], [ -73.240676879882756, -13.411198616027832 ], [ -73.239364624023438, -13.411206245422363 ], [ -73.235588073730469, -13.410114288330021 ], [ -73.233444213867188, -13.410368919372502 ], [ -73.231964111328125, -13.411154747009277 ], [ -73.223838806152344, -13.417234420776367 ], [ -73.219703674316293, -13.418968200683537 ], [ -73.215644836425781, -13.419282913208008 ], [ -73.215568542480412, -13.422690391540527 ], [ -73.215171813964844, -13.42381572723383 ], [ -73.214683532714844, -13.428577423095703 ], [ -73.215065002441406, -13.43035888671875 ], [ -73.214904785156193, -13.432483673095703 ], [ -73.215042114257812, -13.433279037475586 ], [ -73.216560363769531, -13.435171127319336 ], [ -73.220062255859318, -13.438359260559025 ], [ -73.220657348632699, -13.439412117004338 ], [ -73.221923828125, -13.442834854125977 ], [ -73.222854614257812, -13.444107055664062 ], [ -73.223556518554688, -13.445605278015137 ], [ -73.227157592773438, -13.448954582214355 ], [ -73.227981567382756, -13.450226783752441 ], [ -73.227638244628906, -13.45333290100092 ], [ -73.225402832031193, -13.456833839416504 ], [ -73.225006103515568, -13.459659576416016 ], [ -73.224067687988224, -13.462158203124943 ], [ -73.224006652832031, -13.463727951049748 ], [ -73.224197387695312, -13.464715003967285 ], [ -73.226089477538949, -13.467105865478516 ], [ -73.227531433105469, -13.468299865722656 ], [ -73.228263854980412, -13.468648910522461 ], [ -73.231239318847543, -13.471958160400391 ], [ -73.236053466796875, -13.475329399108773 ], [ -73.236320495605469, -13.475701332092285 ], [ -73.236854553222599, -13.475893974304142 ], [ -73.237113952636719, -13.476267814636174 ], [ -73.240295410156193, -13.476290702819824 ], [ -73.240753173828068, -13.476518630981388 ], [ -73.242919921875, -13.475664138793888 ], [ -73.244987487792969, -13.473780632018986 ], [ -73.245590209960938, -13.473542213439885 ], [ -73.246879577636605, -13.47245979309082 ], [ -73.249229431152287, -13.468843460083008 ], [ -73.250335693359375, -13.466689109802246 ], [ -73.251434326171818, -13.465357780456543 ], [ -73.253707885742188, -13.465437889099121 ], [ -73.255195617675781, -13.465211868286133 ], [ -73.258255004882812, -13.46638107299799 ], [ -73.260490417480412, -13.4666233062743 ], [ -73.262641906738281, -13.467622756958008 ], [ -73.263656616210881, -13.467719078063965 ], [ -73.26495361328125, -13.46746826171875 ], [ -73.266410827636662, -13.466846466064396 ], [ -73.267631530761719, -13.465859413146973 ], [ -73.272499084472599, -13.463668823242188 ], [ -73.273338317871094, -13.46295261383051 ], [ -73.2750244140625, -13.460849761962834 ], [ -73.278373718261719, -13.460547447204476 ], [ -73.279792785644531, -13.459650993347111 ], [ -73.281547546386719, -13.457998275756836 ], [ -73.284133911132756, -13.457240104675293 ], [ -73.286247253417912, -13.455582618713379 ], [ -73.288558959960824, -13.455228805541992 ], [ -73.291702270507699, -13.456109046935921 ], [ -73.294044494628906, -13.456332206726017 ], [ -73.296661376953011, -13.456287384033203 ], [ -73.297500610351506, -13.45585823059082 ], [ -73.299819946289062, -13.453841209411564 ], [ -73.303138732910099, -13.453166961669922 ], [ -73.306083679199162, -13.451986312866211 ], [ -73.308052062988281, -13.4505615234375 ], [ -73.309616088867131, -13.448266983032227 ], [ -73.310523986816406, -13.44749641418457 ], [ -73.311988830566349, -13.447125434875431 ], [ -73.314468383789006, -13.446988105773926 ], [ -73.316505432128906, -13.445882797241211 ], [ -73.317253112792912, -13.445958137512207 ], [ -73.318168640136719, -13.446994781494084 ], [ -73.318984985351562, -13.450192451476994 ], [ -73.320312499999886, -13.452832221984806 ], [ -73.321388244628906, -13.454184532165527 ], [ -73.321846008300781, -13.45429515838623 ], [ -73.323280334472656, -13.45530891418457 ], [ -73.32598876953125, -13.456366539001465 ], [ -73.328201293945256, -13.456743240356445 ], [ -73.334762573242188, -13.456515312194767 ], [ -73.336845397949219, -13.45551586151123 ], [ -73.338043212890568, -13.453291893005314 ], [ -73.338836669921875, -13.450343132018929 ], [ -73.338623046874886, -13.449372291564941 ], [ -73.337150573730469, -13.446606636047363 ], [ -73.337425231933594, -13.445351600646973 ], [ -73.338249206542969, -13.443902015685921 ], [ -73.339439392089844, -13.442680358886719 ], [ -73.340354919433594, -13.442234039306584 ], [ -73.345718383789062, -13.440725326538086 ], [ -73.347648620605412, -13.43976974487299 ], [ -73.348640441894418, -13.438790321350098 ], [ -73.349960327148381, -13.43525505065918 ], [ -73.351188659667912, -13.434623718261662 ], [ -73.353446960449219, -13.434664726257267 ], [ -73.356086730957031, -13.435612678527832 ], [ -73.358901977539006, -13.435729026794377 ], [ -73.360641479492131, -13.436112403869629 ], [ -73.362983703613281, -13.436100959777832 ], [ -73.365653991699219, -13.435622215270939 ], [ -73.368080139160099, -13.435788154601994 ], [ -73.369598388671818, -13.436576843261719 ], [ -73.370437622070312, -13.437288284301758 ], [ -73.370903015136719, -13.438880920410156 ], [ -73.370948791503849, -13.440906524658146 ], [ -73.371322631835881, -13.44147872924799 ], [ -73.3719482421875, -13.441862106323242 ], [ -73.372520446777344, -13.441829681396484 ], [ -73.373886108398381, -13.441160202026254 ], [ -73.37615966796875, -13.440686225891113 ], [ -73.380706787109375, -13.440155029296818 ], [ -73.386611938476562, -13.440284729003906 ], [ -73.387710571289006, -13.440056800842228 ], [ -73.389511108398438, -13.439282417297363 ], [ -73.392509460449105, -13.439192771911621 ], [ -73.393463134765511, -13.439533233642578 ], [ -73.394859313964787, -13.439433097839299 ], [ -73.397247314453068, -13.439964294433537 ], [ -73.397590637207031, -13.440381050109863 ], [ -73.39947509765625, -13.441080093383789 ], [ -73.400497436523381, -13.440969467162972 ], [ -73.400894165039006, -13.441205978393555 ], [ -73.401733398437443, -13.441230773925781 ], [ -73.404235839843636, -13.442258834838867 ], [ -73.404571533203125, -13.442703247070256 ], [ -73.405677795410156, -13.443416595458984 ], [ -73.407150268554688, -13.443688392639103 ], [ -73.407875061035156, -13.443573951721191 ], [ -73.408599853515568, -13.443144798278809 ], [ -73.410690307617131, -13.44080734252924 ], [ -73.412887573242131, -13.438923835754338 ], [ -73.413215637207031, -13.438392639160156 ], [ -73.413284301757756, -13.43690109252924 ], [ -73.413490295410043, -13.436496734619141 ], [ -73.414169311523438, -13.435712814330998 ], [ -73.415145874023438, -13.435440063476562 ], [ -73.415855407714787, -13.434883117675724 ], [ -73.418472290039062, -13.434709548950195 ], [ -73.419456481933594, -13.435412406921387 ], [ -73.420539855956974, -13.436783790588379 ], [ -73.421356201171875, -13.437241554260254 ], [ -73.422271728515625, -13.437429428100529 ], [ -73.423736572265625, -13.437226295471078 ], [ -73.425445556640625, -13.435919761657658 ], [ -73.425971984863224, -13.435751914977914 ], [ -73.426536560058537, -13.435853958129883 ], [ -73.428291320800781, -13.437355995178223 ], [ -73.429298400878849, -13.43759822845459 ], [ -73.430702209472656, -13.437498092651367 ], [ -73.432716369628849, -13.437114715576172 ], [ -73.433670043945256, -13.436342239379883 ], [ -73.434165954589787, -13.435676574706918 ], [ -73.433883666992131, -13.434436798095589 ], [ -73.434066772460881, -13.432692527770939 ], [ -73.436500549316406, -13.431524276733342 ], [ -73.438766479492188, -13.429684638976994 ], [ -73.441085815429688, -13.429509162902832 ], [ -73.443252563476562, -13.430761337280217 ], [ -73.445442199707031, -13.431270599365178 ], [ -73.447410583496037, -13.431221008300781 ], [ -73.44879150390625, -13.430459976196232 ], [ -73.449249267578011, -13.430463790893498 ], [ -73.450813293457031, -13.428882598876896 ], [ -73.453598022460938, -13.428810119628793 ], [ -73.455444335937443, -13.429460525512695 ], [ -73.460403442382756, -13.430603027343693 ], [ -73.461151123046818, -13.431178092956543 ], [ -73.461769104003906, -13.43261814117426 ], [ -73.462402343749943, -13.433182716369629 ], [ -73.464553833007812, -13.433098793029728 ], [ -73.465934753417912, -13.433330535888672 ], [ -73.467277526855355, -13.432518005371037 ], [ -73.469017028808594, -13.430594444274846 ], [ -73.471511840820312, -13.429786682128906 ], [ -73.472808837890511, -13.428889274597168 ], [ -73.474014282226506, -13.429015159606934 ], [ -73.474578857421875, -13.42934513092041 ], [ -73.475715637207031, -13.431555747985726 ], [ -73.477027893066406, -13.432277679443359 ], [ -73.478553771972656, -13.431855201721135 ], [ -73.480064392089844, -13.430327415466309 ], [ -73.480674743652344, -13.429958343505746 ], [ -73.481826782226562, -13.429994583129826 ], [ -73.483512878417969, -13.430555343627873 ], [ -73.484146118164006, -13.430438995361328 ], [ -73.486167907714844, -13.428346633911076 ], [ -73.488853454589844, -13.423925399780273 ], [ -73.490440368652287, -13.420706748962402 ], [ -73.490692138671875, -13.417860984802246 ], [ -73.490142822265568, -13.415642738342228 ], [ -73.490592956542969, -13.413666725158635 ], [ -73.492797851562443, -13.408879280090275 ], [ -73.494628906249943, -13.406677246093693 ], [ -73.495353698730469, -13.405487060546875 ], [ -73.496467590332031, -13.401588439941406 ], [ -73.496833801269474, -13.398563385009709 ], [ -73.498367309570199, -13.396159172058049 ], [ -73.498878479003906, -13.394659042358398 ], [ -73.499015808105412, -13.392978668212891 ], [ -73.4996337890625, -13.391374588012638 ], [ -73.500946044921875, -13.389455795288029 ], [ -73.502372741699105, -13.388199806213322 ], [ -73.502838134765568, -13.387407302856445 ], [ -73.506660461425668, -13.384021759033203 ], [ -73.509918212890625, -13.382612228393555 ], [ -73.511062622070312, -13.382538795471191 ], [ -73.511314392089787, -13.383090019226017 ], [ -73.51381683349598, -13.384344100952148 ], [ -73.516250610351562, -13.385008811950627 ], [ -73.517715454101506, -13.386137008666879 ], [ -73.519989013671818, -13.387434005737248 ], [ -73.521110534667969, -13.387596130371037 ], [ -73.522384643554631, -13.387286186218205 ], [ -73.524185180664006, -13.385687828063965 ], [ -73.525802612304631, -13.384965896606388 ], [ -73.527305603027344, -13.383075714111328 ], [ -73.527679443359375, -13.381458282470703 ], [ -73.528839111328125, -13.379459381103516 ], [ -73.528945922851506, -13.375231742858887 ], [ -73.529647827148324, -13.373526573181152 ], [ -73.531616210937443, -13.37267875671381 ], [ -73.534973144531193, -13.372499465942269 ], [ -73.536094665527287, -13.37200927734375 ], [ -73.537391662597656, -13.370940208435059 ], [ -73.539604187011719, -13.370646476745605 ], [ -73.540176391601562, -13.368993759155273 ], [ -73.540992736816293, -13.367544174194336 ], [ -73.541252136230412, -13.366280555725098 ], [ -73.541984558105469, -13.364665985107422 ], [ -73.543807983398438, -13.363565444946289 ], [ -73.545562744140568, -13.363241195678654 ], [ -73.549957275390511, -13.363192558288574 ], [ -73.551025390625, -13.363551139831486 ], [ -73.553451538085881, -13.365591049194336 ], [ -73.555595397949219, -13.365702629089355 ], [ -73.557350158691406, -13.366299629211426 ], [ -73.558731079101449, -13.365738868713379 ], [ -73.560195922851562, -13.363947868347168 ], [ -73.561363220214844, -13.363177299499398 ], [ -73.563316345214844, -13.363252639770508 ], [ -73.565109252929631, -13.363785743713322 ], [ -73.567001342773381, -13.362993240356445 ], [ -73.56793212890625, -13.363015174865666 ], [ -73.569213867187443, -13.362698554992676 ], [ -73.570777893066406, -13.362933158874512 ], [ -73.571678161621037, -13.362447738647404 ], [ -73.572341918945256, -13.361565589904728 ], [ -73.572990417480469, -13.359933853149414 ], [ -73.573280334472656, -13.358336448669434 ], [ -73.573020935058537, -13.356886863708496 ], [ -73.573066711425781, -13.355317115783691 ], [ -73.574234008789062, -13.352528572082463 ], [ -73.57440185546875, -13.351337432861271 ], [ -73.574409484863281, -13.349881172180176 ], [ -73.574081420898381, -13.348631858825684 ], [ -73.573936462402344, -13.346163749694767 ], [ -73.572082519531136, -13.342528343200684 ], [ -73.571968078613224, -13.340881347656136 ], [ -73.573745727539062, -13.338412284851074 ], [ -73.575172424316406, -13.337807655334473 ], [ -73.576324462890625, -13.337200164794922 ], [ -73.579391479492131, -13.33741569519043 ], [ -73.580635070800724, -13.336764335632324 ], [ -73.581382751464844, -13.336703300476074 ], [ -73.583320617675724, -13.337418556213379 ], [ -73.584945678710881, -13.338332176208496 ], [ -73.586112976074219, -13.33864688873291 ], [ -73.587173461914062, -13.339420318603459 ], [ -73.588455200195256, -13.339301109313908 ], [ -73.589523315429631, -13.338738441467285 ], [ -73.590293884277287, -13.337928771972543 ], [ -73.595664978027344, -13.329724311828556 ], [ -73.597305297851562, -13.328366279602051 ], [ -73.600730895996094, -13.327402114868164 ], [ -73.602195739746037, -13.327715873718262 ], [ -73.605606079101562, -13.331249237060433 ], [ -73.607254028320256, -13.331577301025391 ], [ -73.608329772949219, -13.331274032592717 ], [ -73.609214782714844, -13.330311775207463 ], [ -73.60986328125, -13.325200080871582 ], [ -73.610710144042855, -13.323757171630859 ], [ -73.611618041992188, -13.322832107543945 ], [ -73.612800598144474, -13.322522163391113 ], [ -73.614120483398381, -13.323224067687988 ], [ -73.615394592285156, -13.323486328125 ], [ -73.616950988769531, -13.323176383972168 ], [ -73.621681213378906, -13.320969581603947 ], [ -73.622802734374943, -13.320839881896973 ], [ -73.624717712402287, -13.32124137878418 ], [ -73.625320434570312, -13.321043014526367 ], [ -73.626480102539062, -13.319766998291016 ], [ -73.626457214355469, -13.318012237548828 ], [ -73.625816345214844, -13.316302299499512 ], [ -73.626441955566293, -13.315085411071721 ], [ -73.628265380859375, -13.313385009765568 ], [ -73.629890441894531, -13.313358306884766 ], [ -73.630958557128906, -13.313029289245605 ], [ -73.632453918456918, -13.313055038452092 ], [ -73.634719848632756, -13.31113338470459 ], [ -73.636077880859261, -13.310325622558594 ], [ -73.636482238769531, -13.30960559844965 ], [ -73.637016296386662, -13.305874824523869 ], [ -73.6378173828125, -13.304965972900391 ], [ -73.640045166015568, -13.303621292114201 ], [ -73.640800476074219, -13.30293083190918 ], [ -73.641571044921818, -13.301461219787598 ], [ -73.641769409179631, -13.299997329711857 ], [ -73.642387390136719, -13.299185752868539 ], [ -73.642906188964787, -13.298801422119084 ], [ -73.644630432128849, -13.298403739929142 ], [ -73.646453857421818, -13.297463417053223 ], [ -73.647583007812443, -13.296358108520451 ], [ -73.649986267089787, -13.294761657714844 ], [ -73.652458190917912, -13.292524337768555 ], [ -73.652984619140625, -13.292598724365178 ], [ -73.655105590820312, -13.293729782104492 ], [ -73.655960083007812, -13.293862342834416 ], [ -73.656791687011719, -13.293696403503418 ], [ -73.657615661621037, -13.292975425720158 ], [ -73.660949707031193, -13.28954982757557 ], [ -73.66115570068348, -13.288970947265568 ], [ -73.660926818847656, -13.286935806274357 ], [ -73.66115570068348, -13.285870552062931 ], [ -73.662467956542912, -13.283211708068734 ], [ -73.663818359374943, -13.281563758850041 ], [ -73.665077209472656, -13.281288146972656 ], [ -73.665985107421818, -13.281493186950684 ], [ -73.669090270996094, -13.282685279846191 ], [ -73.671684265136719, -13.284164428710938 ], [ -73.674720764160156, -13.284748077392578 ], [ -73.676208496093693, -13.284548759460449 ], [ -73.677299499511719, -13.284021377563477 ], [ -73.678009033203068, -13.283175468444824 ], [ -73.678657531738281, -13.281768798828125 ], [ -73.680198669433537, -13.280410766601506 ], [ -73.68099212646473, -13.280153274536076 ], [ -73.681930541992131, -13.280130386352539 ], [ -73.682708740234261, -13.280476570129395 ], [ -73.684799194335881, -13.282295227050724 ], [ -73.686691284179631, -13.282242774963322 ], [ -73.687652587890568, -13.281949043273869 ], [ -73.688125610351506, -13.280966758727914 ], [ -73.688079833984375, -13.280217170715275 ], [ -73.687370300292912, -13.278384208679142 ], [ -73.687431335449219, -13.276814460754338 ], [ -73.687660217285099, -13.276299476623535 ], [ -73.688446044921875, -13.275635719299316 ], [ -73.689376831054631, -13.275639533996525 ], [ -73.690055847167855, -13.275343894958382 ], [ -73.691497802734375, -13.273771286010685 ], [ -73.692359924316406, -13.273221969604379 ], [ -73.693572998046818, -13.273164749145508 ], [ -73.694801330566349, -13.274012565612793 ], [ -73.695472717285099, -13.273548126220646 ], [ -73.696586608886719, -13.272251129150391 ], [ -73.696998596191349, -13.271455764770508 ], [ -73.697044372558594, -13.267037391662598 ], [ -73.697372436523381, -13.266087532043457 ], [ -73.698150634765568, -13.265422821044865 ], [ -73.700180053710938, -13.264719009399357 ], [ -73.70257568359375, -13.265165328979492 ], [ -73.704498291015625, -13.266460418701115 ], [ -73.705772399902287, -13.268490791320744 ], [ -73.706817626953068, -13.269046783447209 ], [ -73.708511352539062, -13.268994331359806 ], [ -73.711654663085938, -13.268069267272892 ], [ -73.715766906738224, -13.268215179443246 ], [ -73.716903686523438, -13.267780303955078 ], [ -73.718765258789062, -13.267925262451058 ], [ -73.720504760742188, -13.267615318298226 ], [ -73.723968505859318, -13.267749786376953 ], [ -73.726867675781136, -13.26856803894043 ], [ -73.727401733398381, -13.268490791320744 ], [ -73.727828979492188, -13.26815128326416 ], [ -73.72882080078125, -13.26680946350092 ], [ -73.729072570800781, -13.264973640441838 ], [ -73.728355407714787, -13.262781143188477 ], [ -73.727195739746094, -13.260799407958984 ], [ -73.727363586425781, -13.259449005126953 ], [ -73.728858947753849, -13.258474349975586 ], [ -73.730232238769531, -13.25818920135498 ], [ -73.732429504394531, -13.257343292236214 ], [ -73.735809326171818, -13.258002281188965 ], [ -73.736717224121094, -13.257858276367188 ], [ -73.736946105956974, -13.257354736328125 ], [ -73.737113952636719, -13.255521774291992 ], [ -73.736801147460938, -13.254352569580021 ], [ -73.73431396484375, -13.249189376830941 ], [ -73.733009338378906, -13.247492790222054 ], [ -73.731910705566349, -13.244285583496094 ], [ -73.731338500976506, -13.243343353271484 ], [ -73.731307983398438, -13.241950035095158 ], [ -73.731765747070312, -13.240462303161621 ], [ -73.732696533203125, -13.239089965820256 ], [ -73.733161926269418, -13.23481559753418 ], [ -73.733833312988281, -13.233022689819336 ], [ -73.734786987304688, -13.231435775756779 ], [ -73.734832763671875, -13.228091239929199 ], [ -73.735328674316349, -13.226322174072209 ], [ -73.735305786132812, -13.222078323364201 ], [ -73.736175537109318, -13.220566749572754 ], [ -73.737899780273381, -13.219146728515625 ], [ -73.738845825195256, -13.218003273010254 ], [ -73.738845825195256, -13.217452049255257 ], [ -73.737777709960938, -13.216706275939885 ], [ -73.737831115722543, -13.216054916381836 ], [ -73.738731384277344, -13.213526725768986 ], [ -73.740394592285099, -13.21179008483881 ], [ -73.740562438964787, -13.211275100708008 ], [ -73.740081787109375, -13.209980964660645 ], [ -73.739219665527344, -13.208856582641602 ], [ -73.735305786132812, -13.205158233642521 ], [ -73.732711791992188, -13.200904846191406 ], [ -73.730262756347599, -13.19926643371582 ], [ -73.728828430175781, -13.197918891906681 ], [ -73.728240966796875, -13.195829391479492 ], [ -73.72821044921875, -13.194074630737305 ], [ -73.728866577148324, -13.193345069885197 ], [ -73.729476928710938, -13.192036628723031 ], [ -73.7294921875, -13.190745353698674 ], [ -73.729133605956974, -13.189225196838379 ], [ -73.729301452636719, -13.18720817565918 ], [ -73.729995727539006, -13.184727668762207 ], [ -73.730712890625, -13.183220863342285 ], [ -73.733833312988281, -13.180306434631234 ], [ -73.735992431640568, -13.179035186767521 ], [ -73.7381591796875, -13.176495552062875 ], [ -73.7408447265625, -13.175434112548828 ], [ -73.741981506347656, -13.174145698547363 ], [ -73.742523193359375, -13.17412090301508 ], [ -73.744041442871094, -13.17481613159174 ], [ -73.745628356933537, -13.174949645996094 ], [ -73.74700927734375, -13.174186706542969 ], [ -73.747611999511719, -13.173611640930119 ], [ -73.750869750976506, -13.171982765197697 ], [ -73.754295349121037, -13.170777320861816 ], [ -73.755302429199219, -13.170656204223633 ], [ -73.758491516113224, -13.170870780944824 ], [ -73.761146545410156, -13.171744346618596 ], [ -73.762641906738281, -13.17194938659668 ], [ -73.76644134521473, -13.17373085021967 ], [ -73.768730163574105, -13.174391746520996 ], [ -73.770820617675724, -13.174068450927678 ], [ -73.772911071777287, -13.174565315246525 ], [ -73.773857116699162, -13.175483703613224 ], [ -73.774002075195312, -13.175998687744141 ], [ -73.772422790527287, -13.17872238159174 ], [ -73.772140502929631, -13.18101692199707 ], [ -73.772491455078125, -13.182527542114144 ], [ -73.773628234863281, -13.184351921081486 ], [ -73.774856567382812, -13.185359001159668 ], [ -73.77783203125, -13.186477661132756 ], [ -73.780128479003906, -13.187708854675293 ], [ -73.783546447753906, -13.189797401428223 ], [ -73.785552978515625, -13.191459655761719 ], [ -73.787300109863224, -13.192524909973145 ], [ -73.788398742675781, -13.192774772644043 ], [ -73.791305541992131, -13.192707061767578 ], [ -73.792663574218693, -13.193528175353947 ], [ -73.793495178222599, -13.193667411804199 ], [ -73.793540954589844, -13.194473266601506 ], [ -73.791854858398438, -13.196669578552246 ], [ -73.791793823242131, -13.197439193725586 ], [ -73.792388916015625, -13.198028564453125 ], [ -73.793937683105469, -13.198694229125977 ], [ -73.794784545898438, -13.199423789977971 ], [ -73.796615600585938, -13.200344085693359 ], [ -73.799224853515568, -13.202437400817871 ], [ -73.799354553222656, -13.204471588134709 ], [ -73.798988342285156, -13.205853462219181 ], [ -73.798881530761719, -13.208447456359863 ], [ -73.799369812011719, -13.209533691406193 ], [ -73.799476623535156, -13.211829185485726 ], [ -73.800117492675781, -13.213171005249023 ], [ -73.800483703613224, -13.214782714843693 ], [ -73.801429748535099, -13.215383529663086 ], [ -73.802360534667912, -13.215496063232422 ], [ -73.804954528808537, -13.214433670043945 ], [ -73.807136535644474, -13.21389198303217 ], [ -73.807800292968693, -13.213905334472656 ], [ -73.808746337890625, -13.214495658874398 ], [ -73.809257507324162, -13.215149879455566 ], [ -73.809371948242188, -13.216064453125 ], [ -73.808616638183594, -13.218625068664494 ], [ -73.808586120605412, -13.220371246337891 ], [ -73.808189392089787, -13.221073150634709 ], [ -73.808395385742131, -13.221791267394906 ], [ -73.808967590331974, -13.222409248352051 ], [ -73.808998107910156, -13.223121643066406 ], [ -73.810089111328068, -13.225052833557129 ], [ -73.809562683105469, -13.226225852966195 ], [ -73.809524536132756, -13.228152275085449 ], [ -73.809822082519474, -13.231532096862736 ], [ -73.810493469238224, -13.233842849731445 ], [ -73.811439514160099, -13.236061096191349 ], [ -73.812332153320312, -13.237565040588379 ], [ -73.813369750976562, -13.238501548767033 ], [ -73.814567565917912, -13.238679885864201 ], [ -73.815040588378906, -13.239114761352539 ], [ -73.814918518066406, -13.239459037780705 ], [ -73.813385009765625, -13.240815162658691 ], [ -73.813468933105469, -13.241810798644963 ], [ -73.814002990722599, -13.242338180541992 ], [ -73.8148193359375, -13.242704391479379 ], [ -73.816581726074162, -13.24296665191639 ], [ -73.818489074706974, -13.243750572204533 ], [ -73.821556091308537, -13.24601840972889 ], [ -73.823295593261719, -13.246930122375488 ], [ -73.824630737304688, -13.248345375061035 ], [ -73.824455261230469, -13.250180244445744 ], [ -73.8236083984375, -13.252292633056641 ], [ -73.8236083984375, -13.252942085266056 ], [ -73.823257446289006, -13.253484725952148 ], [ -73.823074340820256, -13.256792068481388 ], [ -73.823410034179688, -13.257933616638184 ], [ -73.825469970703068, -13.261331558227539 ], [ -73.825912475585938, -13.263126373290959 ], [ -73.825912475585938, -13.264968872070199 ], [ -73.826629638671875, -13.267548561096135 ], [ -73.826782226562443, -13.268923759460392 ], [ -73.826675415039062, -13.269835472106934 ], [ -73.825820922851506, -13.270827293395939 ], [ -73.822998046874886, -13.271744728088322 ], [ -73.822204589843693, -13.272255897521973 ], [ -73.821624755859318, -13.273195266723576 ], [ -73.821174621581974, -13.274701118469181 ], [ -73.820930480957031, -13.276554107666016 ], [ -73.821022033691406, -13.277646064758244 ], [ -73.822380065917969, -13.279740333557072 ], [ -73.823318481445312, -13.281755447387695 ], [ -73.823768615722656, -13.283635139465332 ], [ -73.823585510253906, -13.284351348876953 ], [ -73.821739196777287, -13.286268234252873 ], [ -73.821044921875, -13.289120674133187 ], [ -73.820068359375, -13.289658546447697 ], [ -73.816261291503906, -13.293573379516602 ], [ -73.815292358398438, -13.295928955078068 ], [ -73.814201354980412, -13.29742431640625 ], [ -73.813682556152344, -13.299283981323242 ], [ -73.810119628906136, -13.30197811126709 ], [ -73.808105468749943, -13.304040908813477 ], [ -73.807876586914062, -13.305585861206055 ], [ -73.808563232421818, -13.30749607086176 ], [ -73.808486938476506, -13.308589935302734 ], [ -73.807968139648438, -13.31006908416748 ], [ -73.80645751953125, -13.311284065246582 ], [ -73.806190490722599, -13.312529563903752 ], [ -73.80718994140625, -13.313891410827637 ], [ -73.808670043945256, -13.315026283264103 ], [ -73.809410095214844, -13.315020561218262 ], [ -73.811195373535156, -13.314016342163029 ], [ -73.81288909912098, -13.313980102539006 ], [ -73.813606262207031, -13.314427375793457 ], [ -73.816131591796761, -13.316887855529785 ], [ -73.817192077636719, -13.317255020141545 ], [ -73.819435119628849, -13.317330360412541 ], [ -73.821166992187443, -13.318024635314941 ], [ -73.822288513183594, -13.319132804870605 ], [ -73.822929382324219, -13.320363998413086 ], [ -73.823486328125, -13.324055671691895 ], [ -73.824035644531193, -13.324908256530705 ], [ -73.825836181640568, -13.3259019851684 ], [ -73.827507019042969, -13.325711250305119 ], [ -73.828491210937443, -13.326013565063477 ], [ -73.831520080566406, -13.328639030456486 ], [ -73.832290649414062, -13.329558372497559 ], [ -73.832405090331974, -13.330381393432617 ], [ -73.830368041992188, -13.331998825073242 ], [ -73.829902648925781, -13.333884239196721 ], [ -73.828483581542969, -13.335814476013184 ], [ -73.828567504882812, -13.337279319763184 ], [ -73.830314636230412, -13.340314865112305 ], [ -73.830001831054688, -13.34213924407959 ], [ -73.829116821289062, -13.343961715698185 ], [ -73.828994750976506, -13.345896720886174 ], [ -73.829620361328125, -13.348484039306584 ], [ -73.830253601074219, -13.349707603454533 ], [ -73.831848144531193, -13.351642608642521 ], [ -73.831710815429688, -13.355873107910156 ], [ -73.832496643066349, -13.357836723327523 ], [ -73.832656860351562, -13.359102249145508 ], [ -73.833297729492074, -13.359902381896973 ], [ -73.835205078124886, -13.360896110534668 ], [ -73.835861206054631, -13.362229347229004 ], [ -73.835823059082031, -13.363149642944222 ], [ -73.834968566894531, -13.36509895324707 ], [ -73.834861755371094, -13.367414474487248 ], [ -73.835655212402287, -13.36946964263916 ], [ -73.836318969726506, -13.370359420776367 ], [ -73.837860107421818, -13.371740341186523 ], [ -73.838325500488224, -13.372744560241699 ], [ -73.838439941406193, -13.37725830078125 ], [ -73.83892822265625, -13.379690170288086 ], [ -73.838836669921875, -13.38106632232666 ], [ -73.838356018066406, -13.382942199706918 ], [ -73.838462829589844, -13.383810043334904 ], [ -73.838340759277287, -13.38463306427002 ], [ -73.839073181152344, -13.386274337768555 ], [ -73.840927124023324, -13.388099670410156 ], [ -73.842987060546818, -13.389500617980957 ], [ -73.84478759765625, -13.391868591308537 ], [ -73.845726013183594, -13.394086837768555 ], [ -73.847122192382699, -13.39626407623291 ], [ -73.847755432128849, -13.398681640625 ], [ -73.847793579101449, -13.400424957275391 ], [ -73.847518920898438, -13.401871681213379 ], [ -73.8465576171875, -13.402745246887207 ], [ -73.845222473144531, -13.403153419494572 ], [ -73.843544006347656, -13.403027534484863 ], [ -73.842826843261662, -13.403476715087891 ], [ -73.842292785644531, -13.404135704040527 ], [ -73.842330932617131, -13.404678344726506 ], [ -73.843666076660099, -13.40599536895752 ], [ -73.8436279296875, -13.406636238098145 ], [ -73.84246826171875, -13.408194541931152 ], [ -73.841384887695256, -13.410231590270996 ], [ -73.839920043945312, -13.411518096923771 ], [ -73.838783264160156, -13.412878036499023 ], [ -73.838027954101506, -13.414945602416992 ], [ -73.837211608886719, -13.416278839111328 ], [ -73.837684631347543, -13.417167663574162 ], [ -73.838981628417912, -13.417643547058105 ], [ -73.839637756347656, -13.418496131896973 ], [ -73.83935546875, -13.419734001159668 ], [ -73.837921142578125, -13.421318054199219 ], [ -73.836677551269531, -13.424784660339242 ], [ -73.836059570312386, -13.425227165222111 ], [ -73.833915710449219, -13.42534065246582 ], [ -73.833114624023438, -13.425826072692814 ], [ -73.832298278808594, -13.427051544189453 ], [ -73.831756591796818, -13.428522109985352 ], [ -73.830268859863281, -13.429924011230412 ], [ -73.829368591308537, -13.431947708129883 ], [ -73.828125, -13.433143615722656 ], [ -73.827629089355469, -13.434054374694824 ], [ -73.827552795410099, -13.435273170471191 ], [ -73.827919006347599, -13.436814308166447 ], [ -73.830062866210938, -13.440296173095703 ], [ -73.830009460449219, -13.44092845916748 ], [ -73.829360961914006, -13.441827774047738 ], [ -73.829147338867188, -13.442541122436523 ], [ -73.829086303710881, -13.444195747375488 ], [ -73.829292297363168, -13.444903373718148 ], [ -73.831214904785156, -13.447279930114689 ], [ -73.83428955078125, -13.448859214782715 ], [ -73.836517333984318, -13.450694084167424 ], [ -73.838813781738224, -13.453498840331974 ], [ -73.839393615722599, -13.455823898315373 ], [ -73.839294433593693, -13.456738471984863 ], [ -73.838813781738224, -13.457522392272949 ], [ -73.836555480957031, -13.459129333496037 ], [ -73.834632873535043, -13.461645126342717 ], [ -73.835678100585824, -13.468716621398926 ], [ -73.835014343261605, -13.470903396606388 ], [ -73.833641052246037, -13.471728324890137 ], [ -73.833015441894531, -13.471796035766602 ], [ -73.831344604492188, -13.473298072814941 ], [ -73.829826354980412, -13.475372314453125 ], [ -73.827377319335881, -13.477763175964355 ], [ -73.826972961425724, -13.479009628295842 ], [ -73.822723388671875, -13.48689079284668 ], [ -73.822395324706974, -13.489368438720589 ], [ -73.821670532226562, -13.490857124328613 ], [ -73.821640014648381, -13.493992805480957 ], [ -73.821357727050724, -13.495155334472599 ], [ -73.819244384765568, -13.499161720275879 ], [ -73.818603515624943, -13.499836921691895 ], [ -73.817924499511662, -13.500140190124512 ], [ -73.816818237304688, -13.503018379211369 ], [ -73.817146301269474, -13.50318527221674 ], [ -73.817474365234375, -13.504007339477425 ], [ -73.817634582519474, -13.505366325378304 ], [ -73.815185546875, -13.507865905761662 ], [ -73.814201354980412, -13.51009464263916 ], [ -73.815071105956974, -13.513623237609863 ], [ -73.816581726074162, -13.516352653503418 ], [ -73.8165283203125, -13.518096923828125 ], [ -73.816009521484318, -13.519207000732365 ], [ -73.81374359130848, -13.521553993225098 ], [ -73.813079833984261, -13.522726058959961 ], [ -73.812911987304688, -13.52595329284668 ], [ -73.812171936035156, -13.527227401733398 ], [ -73.812179565429688, -13.528717994689941 ], [ -73.809791564941406, -13.533244132995605 ], [ -73.809829711914006, -13.535015106201115 ], [ -73.810173034667969, -13.536591529846135 ], [ -73.809776306152344, -13.540738105773926 ], [ -73.808952331542912, -13.542607307433968 ], [ -73.806282043456974, -13.546526908874512 ], [ -73.805839538574219, -13.551207542419377 ], [ -73.805068969726449, -13.553084373474121 ], [ -73.804397583007699, -13.554102897643929 ], [ -73.804176330566349, -13.555557250976449 ], [ -73.80340576171875, -13.556756019592285 ], [ -73.804069519042969, -13.558241844177246 ], [ -73.806571960449162, -13.560340881347656 ], [ -73.807281494140625, -13.561943054199105 ], [ -73.807472229003906, -13.568815231323242 ], [ -73.807296752929688, -13.570134162902775 ], [ -73.806358337402344, -13.572826385498047 ], [ -73.806320190429688, -13.573764801025334 ], [ -73.806533813476562, -13.574263572692871 ], [ -73.806098937988224, -13.575535774230957 ], [ -73.805198669433594, -13.576887130737305 ], [ -73.801589965820312, -13.580568313598576 ], [ -73.801834106445312, -13.581508636474609 ], [ -73.802986145019531, -13.583024978637695 ], [ -73.803009033203125, -13.584246635437012 ], [ -73.799125671386662, -13.591060638427734 ], [ -73.798660278320256, -13.595209121704102 ], [ -73.797698974609318, -13.597146987914982 ], [ -73.796676635742074, -13.598418235778752 ], [ -73.796394348144531, -13.601227760314885 ], [ -73.796653747558537, -13.602983474731388 ], [ -73.797348022460938, -13.604098320007324 ], [ -73.799209594726562, -13.605941772460938 ], [ -73.801521301269474, -13.606776237487793 ], [ -73.803314208984318, -13.608040809631348 ], [ -73.807434082031193, -13.611848831176701 ], [ -73.808021545410043, -13.612565040588379 ], [ -73.808090209960881, -13.613262176513672 ], [ -73.8074951171875, -13.614460945129395 ], [ -73.804893493652344, -13.617241859436035 ], [ -73.80377197265625, -13.619859695434513 ], [ -73.799362182617188, -13.62370777130127 ], [ -73.798233032226562, -13.625239372253361 ], [ -73.797988891601506, -13.626069068908691 ], [ -73.797767639160156, -13.630777359008789 ], [ -73.797058105468636, -13.632249832153263 ], [ -73.796684265136719, -13.633955001831055 ], [ -73.794532775878906, -13.637246131896973 ], [ -73.794227600097656, -13.641121864318734 ], [ -73.793983459472599, -13.641772270202637 ], [ -73.793235778808537, -13.642365455627328 ], [ -73.790908813476562, -13.642244338989258 ], [ -73.7896728515625, -13.641405105590763 ], [ -73.788169860839787, -13.64134407043457 ], [ -73.786262512206974, -13.640032768249512 ], [ -73.78460693359375, -13.639989852905217 ], [ -73.783859252929631, -13.640329360961914 ], [ -73.783401489257756, -13.640842437744141 ], [ -73.781715393066406, -13.644811630249023 ], [ -73.780120849609375, -13.64634895324707 ], [ -73.778884887695312, -13.647138595580998 ], [ -73.777496337890568, -13.647060394287109 ], [ -73.776473999023438, -13.64636039733881 ], [ -73.774681091308594, -13.645655632018929 ], [ -73.771438598632812, -13.64615345001215 ], [ -73.769233703613281, -13.645978927612248 ], [ -73.768470764160156, -13.64622974395752 ], [ -73.767814636230469, -13.646750450134277 ], [ -73.767341613769531, -13.647397041320744 ], [ -73.767189025878849, -13.648346900939885 ], [ -73.766098022460938, -13.649209022521916 ], [ -73.764900207519474, -13.649223327636719 ], [ -73.762619018554631, -13.648233413696289 ], [ -73.761398315429688, -13.648074150085449 ], [ -73.760513305664006, -13.648449897766056 ], [ -73.75933837890625, -13.649600982666016 ], [ -73.758003234863281, -13.649838447570801 ], [ -73.757705688476562, -13.650127410888615 ], [ -73.75732421875, -13.650052070617619 ], [ -73.756889343261662, -13.65037631988514 ], [ -73.755699157714844, -13.652947425842171 ], [ -73.7537841796875, -13.654671669006348 ], [ -73.752685546874943, -13.654837608337402 ], [ -73.750312805175724, -13.655912399291935 ], [ -73.749084472656136, -13.655904769897404 ], [ -73.747695922851562, -13.656476974487248 ], [ -73.745414733886719, -13.655596733093262 ], [ -73.744270324707031, -13.65556526184082 ], [ -73.743377685546875, -13.655875205993652 ], [ -73.741279602050781, -13.65801811218256 ], [ -73.740264892578125, -13.65841007232666 ], [ -73.739273071289062, -13.659343719482422 ], [ -73.737312316894531, -13.661775588989258 ], [ -73.734878540038949, -13.665678024291992 ], [ -73.733810424804631, -13.666919708251896 ], [ -73.73287200927723, -13.667467117309457 ], [ -73.731666564941406, -13.667832374572754 ], [ -73.729232788085881, -13.667629241943359 ], [ -73.728843688964787, -13.667778968811035 ], [ -73.728309631347656, -13.668572425842228 ], [ -73.728111267089844, -13.669638633728027 ], [ -73.730178833007756, -13.674620628356877 ], [ -73.730712890625, -13.678492546081543 ], [ -73.730461120605412, -13.680895805358887 ], [ -73.728843688964787, -13.68323898315424 ], [ -73.727745056152344, -13.684065818786564 ], [ -73.726844787597599, -13.684375762939396 ], [ -73.725685119628849, -13.683991432189941 ], [ -73.724189758300724, -13.681884765624943 ], [ -73.723220825195256, -13.681139945983887 ], [ -73.721611022949162, -13.68189811706543 ], [ -73.720092773437386, -13.683265686035156 ], [ -73.719329833984261, -13.684219360351562 ], [ -73.718070983886662, -13.686464309692383 ], [ -73.715042114257699, -13.689187049865609 ], [ -73.713783264160099, -13.691450119018555 ], [ -73.71356201171875, -13.692770004272461 ], [ -73.713752746582031, -13.694524765014592 ], [ -73.71456146240223, -13.696100234985352 ], [ -73.715782165527287, -13.697745323181152 ], [ -73.716255187988224, -13.700530052185059 ], [ -73.716049194335938, -13.703366279601994 ], [ -73.715591430664006, -13.704342842101994 ], [ -73.714332580566406, -13.705754280090275 ], [ -73.712593078613281, -13.707338333129883 ], [ -73.711463928222656, -13.70777416229248 ], [ -73.709617614746094, -13.707277297973633 ], [ -73.707656860351562, -13.705810546875 ], [ -73.706535339355412, -13.705822944641113 ], [ -73.705123901367074, -13.706267356872559 ], [ -73.704216003417969, -13.705892562866154 ], [ -73.703193664550724, -13.70509147644043 ], [ -73.701408386230469, -13.705063819885254 ], [ -73.701011657714787, -13.705442428588867 ], [ -73.7000732421875, -13.707387924194336 ], [ -73.698684692382812, -13.708691596984863 ], [ -73.693641662597599, -13.715591430664062 ], [ -73.689552307128849, -13.719573020935059 ], [ -73.687461853027287, -13.721109390258789 ], [ -73.685440063476506, -13.722254753112793 ], [ -73.682487487792912, -13.723350524902344 ], [ -73.680335998535156, -13.723836898803711 ], [ -73.677017211914062, -13.727415084838867 ], [ -73.675888061523438, -13.727926254272404 ], [ -73.674652099609375, -13.728995323181096 ], [ -73.674125671386605, -13.729940414428711 ], [ -73.673988342285156, -13.731295585632211 ], [ -73.673728942871037, -13.731747627258301 ], [ -73.673103332519531, -13.732060432434082 ], [ -73.671813964843693, -13.7321262359618 ], [ -73.670608520507812, -13.733429908752385 ], [ -73.670295715331974, -13.734161376953068 ], [ -73.670333862304688, -13.736719131469727 ], [ -73.670082092285156, -13.737639427185059 ], [ -73.670600891113168, -13.738213539123535 ], [ -73.67169189453125, -13.738434791564941 ], [ -73.673667907714844, -13.737903594970703 ], [ -73.674758911132756, -13.738487243652344 ], [ -73.677635192871037, -13.73854923248291 ], [ -73.6787109375, -13.738807678222656 ], [ -73.679794311523438, -13.739382743835392 ], [ -73.681442260742131, -13.739525794982853 ], [ -73.683021545410156, -13.74005126953125 ], [ -73.684379577636719, -13.73875617980957 ], [ -73.685340881347656, -13.738226890563908 ], [ -73.686981201171818, -13.738352775573617 ], [ -73.688049316406136, -13.738965988159123 ], [ -73.688346862792969, -13.73941707611084 ], [ -73.688362121582031, -13.740233421325627 ], [ -73.686836242675781, -13.74262809753418 ], [ -73.68646240234375, -13.744789123535156 ], [ -73.686714172363168, -13.745909690856934 ], [ -73.687980651855469, -13.746974945068359 ], [ -73.691383361816349, -13.747499465942383 ], [ -73.692970275878906, -13.748998641967717 ], [ -73.694236755371037, -13.749529838562012 ], [ -73.699180603027287, -13.749691009521428 ], [ -73.701126098632812, -13.750361442565861 ], [ -73.704254150390568, -13.750812530517578 ], [ -73.705223083496094, -13.750707626342717 ], [ -73.70770263671875, -13.751480102539062 ], [ -73.709594726562443, -13.751138687133789 ], [ -73.711921691894531, -13.749748229980469 ], [ -73.713554382324219, -13.749576568603516 ], [ -73.715774536132756, -13.749679565429688 ], [ -73.717056274414062, -13.750181198120117 ], [ -73.718818664550724, -13.751240730285588 ], [ -73.722953796386605, -13.754589080810433 ], [ -73.726249694824219, -13.755256652831918 ], [ -73.726799011230469, -13.75567626953125 ], [ -73.728103637695199, -13.756107330322209 ], [ -73.729583740234375, -13.755943298339844 ], [ -73.731613159179631, -13.756315231323185 ], [ -73.733261108398438, -13.75563812255848 ], [ -73.734489440917912, -13.754367828369084 ], [ -73.735321044921818, -13.754183769225961 ], [ -73.736434936523438, -13.754920005798283 ], [ -73.739776611328125, -13.755722045898381 ], [ -73.741371154785156, -13.756781578063965 ], [ -73.742141723632812, -13.758357048034611 ], [ -73.743133544921875, -13.759475708007812 ], [ -73.748405456542912, -13.763316154479924 ], [ -73.746871948242131, -13.763970375061035 ], [ -73.746139526367188, -13.764543533325138 ], [ -73.744987487792855, -13.765912055969238 ], [ -73.744125366210824, -13.767434120178223 ], [ -73.743019104003906, -13.7706298828125 ], [ -73.742256164550781, -13.776102066040039 ], [ -73.741500854492188, -13.777692794799748 ], [ -73.741630554199162, -13.778614044189396 ], [ -73.743255615234318, -13.781579017639103 ], [ -73.743621826171818, -13.783163070678711 ], [ -73.743751525878906, -13.786390304565316 ], [ -73.742881774902287, -13.789224624633732 ], [ -73.740661621093693, -13.792628288269043 ], [ -73.737289428710938, -13.795975685119572 ], [ -73.734893798828125, -13.799586296081543 ], [ -73.733131408691349, -13.803385734558049 ], [ -73.731903076171818, -13.806967735290527 ], [ -73.731391906738281, -13.809471130371094 ], [ -73.728858947753849, -13.81544017791748 ], [ -73.727645874023438, -13.817703247070256 ], [ -73.725830078125, -13.819546699523869 ], [ -73.725135803222599, -13.821089744567871 ], [ -73.723831176757812, -13.82265567779541 ], [ -73.722541809081974, -13.826473236083928 ], [ -73.721542358398438, -13.827216148376408 ], [ -73.7197265625, -13.827840805053654 ], [ -73.718933105468693, -13.828390121459961 ], [ -73.713973999023381, -13.835169792175293 ], [ -73.712600708007812, -13.836300849914551 ], [ -73.709648132324219, -13.83801174163807 ], [ -73.70684814453125, -13.840800285339355 ], [ -73.704948425292969, -13.842335700988713 ], [ -73.701484680175724, -13.844270706176701 ], [ -73.699447631835938, -13.845661163329964 ], [ -73.697700500488281, -13.84773063659668 ], [ -73.697059631347656, -13.849383354187012 ], [ -73.696762084960938, -13.849993705749455 ], [ -73.696357727050781, -13.853202819824219 ], [ -73.695701599121094, -13.854372024536076 ], [ -73.695449829101562, -13.855710029602051 ], [ -73.695503234863281, -13.856380462646484 ], [ -73.696151733398381, -13.858010292053223 ], [ -73.696228027343693, -13.859518051147404 ], [ -73.695854187011662, -13.860341072082463 ], [ -73.694808959960881, -13.861465454101506 ], [ -73.69354248046875, -13.864440917968693 ], [ -73.693641662597599, -13.868473052978516 ], [ -73.693077087402287, -13.869066238403263 ], [ -73.692962646484375, -13.869591712951603 ], [ -73.693817138671875, -13.87214469909668 ], [ -73.693962097167855, -13.877126693725586 ], [ -73.694862365722656, -13.882988929748535 ], [ -73.69464111328125, -13.885130882263184 ], [ -73.694244384765568, -13.885988235473633 ], [ -73.693763732910099, -13.886419296264592 ], [ -73.690681457519531, -13.890035629272404 ], [ -73.688323974609318, -13.894145011901799 ], [ -73.688278198242188, -13.894815444946232 ], [ -73.686248779296875, -13.900246620178223 ], [ -73.685554504394474, -13.903403282165471 ], [ -73.685310363769531, -13.905681610107422 ], [ -73.684761047363281, -13.907630920410099 ], [ -73.683708190917969, -13.91026592254633 ], [ -73.682167053222656, -13.9128160476684 ], [ -73.680274963378906, -13.915120124816895 ], [ -73.676826477050781, -13.918011665344238 ], [ -73.675247192382756, -13.918816566467228 ], [ -73.671134948730412, -13.920348167419434 ], [ -73.6695556640625, -13.92132568359375 ], [ -73.667411804199219, -13.921838760375977 ], [ -73.663078308105469, -13.923550605773926 ], [ -73.661834716796875, -13.924385070800781 ], [ -73.660652160644474, -13.92552661895752 ], [ -73.6588134765625, -13.928373336791935 ], [ -73.657516479492131, -13.931049346923828 ], [ -73.657119750976506, -13.933030128478947 ], [ -73.656967163085938, -13.937610626220703 ], [ -73.656181335449162, -13.939071655273438 ], [ -73.6556396484375, -13.94078540802002 ], [ -73.655220031738224, -13.941441535949707 ], [ -73.651390075683594, -13.944079399108887 ], [ -73.649246215820312, -13.946328163146973 ], [ -73.648788452148438, -13.948033332824707 ], [ -73.648483276367188, -13.9515380859375 ], [ -73.647613525390511, -13.953331947326603 ], [ -73.644172668456974, -13.958890914916935 ], [ -73.64337158203125, -13.960739135742131 ], [ -73.643203735351506, -13.961950302123967 ], [ -73.642593383789062, -13.963302612304688 ], [ -73.642295837402344, -13.966165542602539 ], [ -73.642303466796875, -13.974916458129826 ], [ -73.642745971679631, -13.977422714233398 ], [ -73.642562866210824, -13.97874927520752 ], [ -73.641273498535156, -13.980134963989258 ], [ -73.635269165039062, -13.984169006347656 ], [ -73.63287353515625, -13.986189842224064 ], [ -73.630432128906193, -13.988734245300293 ], [ -73.6304931640625, -13.990208625793457 ], [ -73.630729675292912, -13.990518569946289 ], [ -73.630630493164006, -13.991467475891056 ], [ -73.626312255859318, -13.994541168212891 ], [ -73.626022338867188, -13.996681213378906 ], [ -73.627365112304631, -14.000487327575627 ], [ -73.627235412597656, -14.001200675964355 ], [ -73.6260986328125, -14.003473281860352 ], [ -73.626693725585881, -14.005093574523926 ], [ -73.625991821289062, -14.006073951721135 ], [ -73.623146057128906, -14.008571624755859 ], [ -73.622970581054688, -14.009919166564941 ], [ -73.622367858886719, -14.010826110839787 ], [ -73.622810363769474, -14.012638092040959 ], [ -73.621780395507812, -14.01391410827631 ], [ -73.621582031249886, -14.015767097473145 ], [ -73.620872497558594, -14.01643180847168 ], [ -73.619918823242188, -14.016571044921875 ], [ -73.619499206542969, -14.016930580139103 ], [ -73.620201110839844, -14.01882266998291 ], [ -73.620285034179688, -14.020560264587402 ], [ -73.619979858398438, -14.021036148071289 ], [ -73.619033813476562, -14.020931243896428 ], [ -73.618576049804688, -14.021254539489746 ], [ -73.618515014648381, -14.024338722229004 ], [ -73.618217468261662, -14.025140762329102 ], [ -73.618865966796875, -14.025929450988656 ], [ -73.621124267578125, -14.027841567993107 ], [ -73.621910095214844, -14.028876304626465 ], [ -73.622169494628906, -14.029997825622559 ], [ -73.622093200683594, -14.032728195190316 ], [ -73.62115478515625, -14.03437614440918 ], [ -73.621116638183594, -14.037993431091195 ], [ -73.620536804199219, -14.039210319518986 ], [ -73.620376586914062, -14.040283203124943 ], [ -73.620933532714844, -14.041037559509221 ], [ -73.622428894042912, -14.041678428649846 ], [ -73.623298645019418, -14.042723655700684 ], [ -73.624359130859375, -14.046462059020939 ], [ -73.625686645507812, -14.047601699828988 ], [ -73.625595092773438, -14.049226760864144 ], [ -73.625137329101562, -14.05048942565918 ], [ -73.623779296875, -14.052363395690861 ], [ -73.618812561035043, -14.058129310607853 ], [ -73.618240356445199, -14.060041427612305 ], [ -73.617095947265511, -14.066000938415471 ], [ -73.616363525390625, -14.067742347717285 ], [ -73.615386962890625, -14.06895732879633 ], [ -73.615150451660156, -14.070293426513672 ], [ -73.613151550292912, -14.073337554931641 ], [ -73.613304138183594, -14.073987007141056 ], [ -73.614402770996037, -14.075027465820312 ], [ -73.6146240234375, -14.07663631439209 ], [ -73.614303588867131, -14.077383041381836 ], [ -73.612442016601562, -14.079352378845158 ], [ -73.612236022949105, -14.082064628601074 ], [ -73.611808776855469, -14.083345413207951 ], [ -73.610580444335881, -14.084413528442269 ], [ -73.609619140625, -14.084534645080566 ], [ -73.609176635742131, -14.085209846496582 ], [ -73.609291076660156, -14.086016654968262 ], [ -73.611297607421875, -14.088747024536133 ], [ -73.611251831054631, -14.089822769164982 ], [ -73.610443115234375, -14.090035438537598 ], [ -73.609214782714844, -14.089674949645939 ], [ -73.608879089355412, -14.089762687683049 ], [ -73.608657836914062, -14.090324401855469 ], [ -73.609146118164006, -14.091121673583928 ], [ -73.609153747558537, -14.091808319091683 ], [ -73.607734680175724, -14.092877388000375 ], [ -73.6068115234375, -14.093107223510742 ], [ -73.605911254882756, -14.092748641967773 ], [ -73.604942321777344, -14.09272384643549 ], [ -73.604263305664062, -14.092863082885742 ], [ -73.603706359863281, -14.093251228332463 ], [ -73.600624084472656, -14.097708702087402 ], [ -73.5982666015625, -14.099981307983398 ], [ -73.597732543945256, -14.10134124755848 ], [ -73.596481323242131, -14.102400779724121 ], [ -73.595748901367188, -14.104711532592717 ], [ -73.594459533691349, -14.10594272613514 ], [ -73.593978881835938, -14.107196807861328 ], [ -73.59271240234375, -14.108653068542424 ], [ -73.592025756835938, -14.10905647277832 ], [ -73.591171264648438, -14.109176635742188 ], [ -73.59063720703125, -14.109137535095101 ], [ -73.59014892578125, -14.108663558959961 ], [ -73.589584350585938, -14.108653068542424 ], [ -73.586868286132699, -14.10997486114502 ], [ -73.586181640624943, -14.110604286193791 ], [ -73.586318969726562, -14.112675666809082 ], [ -73.586158752441406, -14.113692283630314 ], [ -73.584144592285156, -14.116086959838867 ], [ -73.583213806152287, -14.118756294250488 ], [ -73.582588195800781, -14.119638442993164 ], [ -73.582916259765625, -14.122859001159611 ], [ -73.581832885742188, -14.12532901763916 ], [ -73.581634521484375, -14.13111400604248 ], [ -73.581230163574162, -14.131971359252873 ], [ -73.580070495605412, -14.133264541625977 ], [ -73.580657958984318, -14.134885787963867 ], [ -73.580551147460881, -14.135556221008301 ], [ -73.580116271972656, -14.136248588562012 ], [ -73.580001831054574, -14.137458801269474 ], [ -73.579078674316406, -14.138619422912541 ], [ -73.577285766601562, -14.139939308166504 ], [ -73.577392578124943, -14.140589714050236 ], [ -73.578590393066406, -14.142557144164982 ], [ -73.577468872070312, -14.14470195770258 ], [ -73.577522277831918, -14.145128250122013 ], [ -73.576843261718693, -14.147030830383244 ], [ -73.575584411621037, -14.148109436035156 ], [ -73.57452392578125, -14.148706436157227 ], [ -73.573348999023438, -14.148319244384766 ], [ -73.572761535644531, -14.148624420165959 ], [ -73.572448730468693, -14.150477409362793 ], [ -73.56927490234375, -14.15520191192627 ], [ -73.569244384765625, -14.156539916992131 ], [ -73.568626403808537, -14.15847015380848 ], [ -73.566871643066406, -14.16104602813715 ], [ -73.566123962402344, -14.163491249084473 ], [ -73.564834594726449, -14.165065765380859 ], [ -73.564613342285099, -14.168796539306641 ], [ -73.563743591308594, -14.169514656066895 ], [ -73.561424255371094, -14.170721054077035 ], [ -73.56097412109375, -14.173349380493164 ], [ -73.560356140136605, -14.174991607666016 ], [ -73.559837341308594, -14.175440788269043 ], [ -73.558723449706974, -14.175395011901799 ], [ -73.558242797851506, -14.175608634948617 ], [ -73.557121276855469, -14.177925109863168 ], [ -73.556198120117188, -14.178953170776367 ], [ -73.556251525878793, -14.1817626953125 ], [ -73.555923461914062, -14.183759689330998 ], [ -73.555564880371037, -14.184635162353516 ], [ -73.554550170898438, -14.185529708862305 ], [ -73.553352355957031, -14.18751335144043 ], [ -73.552642822265625, -14.192280769348145 ], [ -73.551521301269531, -14.193313598632812 ], [ -73.550018310546818, -14.194246292114201 ], [ -73.548362731933594, -14.19660472869873 ], [ -73.547760009765568, -14.196680068969727 ], [ -73.5462646484375, -14.196210861206055 ], [ -73.545333862304688, -14.197037696838379 ], [ -73.545585632324219, -14.201042175292969 ], [ -73.544822692871094, -14.203216552734375 ], [ -73.544822692871094, -14.204038619995117 ], [ -73.543144226074219, -14.205953598022461 ], [ -73.543464660644474, -14.208785057067814 ], [ -73.543273925781193, -14.209424972534123 ], [ -73.541450500488224, -14.210625648498478 ], [ -73.540290832519474, -14.211965560913086 ], [ -73.539009094238281, -14.212498664855957 ], [ -73.538841247558594, -14.214487075805607 ], [ -73.538200378417912, -14.215415000915527 ], [ -73.537864685058594, -14.215558052062988 ], [ -73.536338806152344, -14.215312004089355 ], [ -73.535331726074162, -14.215703964233342 ], [ -73.533988952636719, -14.216879844665471 ], [ -73.533531188964787, -14.218432426452523 ], [ -73.533103942871094, -14.219142913818359 ], [ -73.529777526855469, -14.220425605773926 ], [ -73.528594970703011, -14.221367835998535 ], [ -73.528228759765625, -14.221925735473576 ], [ -73.528152465820312, -14.222612380981445 ], [ -73.528945922851506, -14.224055290222054 ], [ -73.529006958007812, -14.224822998046818 ], [ -73.528724670410156, -14.226585388183594 ], [ -73.528289794921818, -14.227728843688965 ], [ -73.527809143066349, -14.227960586547852 ], [ -73.526298522949162, -14.227707862853947 ], [ -73.525337219238224, -14.227791786193791 ], [ -73.523887634277287, -14.228253364562988 ], [ -73.523223876953068, -14.228762626647949 ], [ -73.522949218749943, -14.231436729431152 ], [ -73.521636962890511, -14.233950614929142 ], [ -73.521232604980412, -14.235649108886719 ], [ -73.520545959472656, -14.236656188964787 ], [ -73.520568847656193, -14.238130569457951 ], [ -73.518997192382812, -14.240370750427246 ], [ -73.518524169921875, -14.241587638854924 ], [ -73.518760681152287, -14.243081092834359 ], [ -73.519721984863224, -14.244876861572266 ], [ -73.518600463867188, -14.246108055114746 ], [ -73.518821716308594, -14.247374534606934 ], [ -73.520278930664006, -14.249002456664982 ], [ -73.520706176757812, -14.250178337097111 ], [ -73.520484924316349, -14.251182556152344 ], [ -73.519317626953068, -14.252928733825627 ], [ -73.518997192382812, -14.253776550292969 ], [ -73.519447326660156, -14.25684928894043 ], [ -73.519332885742131, -14.257918357849121 ], [ -73.5189208984375, -14.258456230163517 ], [ -73.517776489257812, -14.258902549743652 ], [ -73.51727294921875, -14.259523391723633 ], [ -73.517349243164062, -14.260202407836914 ], [ -73.517906188964787, -14.261434555053711 ], [ -73.517791748046818, -14.263023376464844 ], [ -73.517112731933594, -14.263715744018555 ], [ -73.515312194824162, -14.264671325683537 ], [ -73.513809204101506, -14.267066955566349 ], [ -73.512931823730412, -14.267921447753849 ], [ -73.511688232421818, -14.2685546875 ], [ -73.511489868164006, -14.26899528503418 ], [ -73.513038635253849, -14.275044441223145 ], [ -73.513046264648381, -14.282970428466797 ], [ -73.513694763183537, -14.285866737365666 ], [ -73.514846801757756, -14.288614273071289 ], [ -73.514831542968693, -14.290764808654671 ], [ -73.515449523925781, -14.293107986450195 ], [ -73.515411376953068, -14.294862747192326 ], [ -73.514564514160099, -14.297281265258789 ], [ -73.514488220214844, -14.298498153686467 ], [ -73.51611328125, -14.302639007568303 ], [ -73.5162353515625, -14.305326461791992 ], [ -73.516593933105469, -14.306215286254826 ], [ -73.517181396484375, -14.309806823730412 ], [ -73.518081665039006, -14.311448097228947 ], [ -73.519218444824162, -14.312240600585938 ], [ -73.52154541015625, -14.313132286071664 ], [ -73.523040771484318, -14.314497947692871 ], [ -73.524757385253849, -14.316641807556096 ], [ -73.526123046875, -14.318973541259652 ], [ -73.527053833007756, -14.321084022521916 ], [ -73.527503967285156, -14.322912216186467 ], [ -73.529106140136719, -14.326357841491642 ], [ -73.529685974121094, -14.328713417053166 ], [ -73.529563903808594, -14.332074165344238 ], [ -73.530479431152287, -14.336281776428223 ], [ -73.530830383300781, -14.342059135437012 ], [ -73.531318664550781, -14.345120429992619 ], [ -73.533523559570256, -14.35450553894043 ], [ -73.534614562988281, -14.357124328613281 ], [ -73.537101745605469, -14.360999107360783 ], [ -73.540283203125, -14.364056587219238 ], [ -73.542243957519531, -14.365324974060059 ], [ -73.544776916503849, -14.365946769714299 ], [ -73.547630310058594, -14.367202758789006 ], [ -73.548477172851562, -14.368923187255803 ], [ -73.548202514648438, -14.373343467712402 ], [ -73.548385620117188, -14.374265670776367 ], [ -73.549331665039062, -14.375600814819336 ], [ -73.552566528320312, -14.377410888671818 ], [ -73.553550720214787, -14.378537178039551 ], [ -73.553581237792855, -14.380544662475586 ], [ -73.554489135742188, -14.383660316467285 ], [ -73.554756164550781, -14.385505676269474 ], [ -73.5545654296875, -14.389398574828988 ], [ -73.554794311523381, -14.39030647277832 ], [ -73.553627014160156, -14.395947456359806 ], [ -73.553688049316406, -14.39880466461176 ], [ -73.554222106933537, -14.400895118713322 ], [ -73.556480407714844, -14.403602600097656 ], [ -73.558204650878906, -14.407707214355469 ], [ -73.558784484863281, -14.408623695373478 ], [ -73.560813903808537, -14.410488128662053 ], [ -73.5625, -14.411641120910645 ], [ -73.567626953125, -14.413252830505314 ], [ -73.571220397949162, -14.414976119995117 ], [ -73.574119567871094, -14.415884971618652 ], [ -73.579757690429688, -14.416355133056641 ], [ -73.580703735351562, -14.416295051574707 ], [ -73.581550598144531, -14.415884971618652 ], [ -73.581893920898381, -14.417054176330566 ], [ -73.581840515136719, -14.418661117553654 ], [ -73.579704284667912, -14.425022125244027 ], [ -73.578811645507812, -14.426670074462891 ], [ -73.577369689941406, -14.42864990234375 ], [ -73.574371337890511, -14.431758880615178 ], [ -73.573440551757812, -14.433860778808537 ], [ -73.57354736328125, -14.434774398803654 ], [ -73.575248718261719, -14.439320564269963 ], [ -73.57574462890625, -14.443047523498478 ], [ -73.575431823730469, -14.444068908691349 ], [ -73.573348999023438, -14.447996139526367 ], [ -73.572944641113168, -14.451853752136174 ], [ -73.571823120117188, -14.454874038696289 ], [ -73.569755554199219, -14.458035469055119 ], [ -73.567794799804574, -14.459903717040959 ], [ -73.567001342773381, -14.46007061004633 ], [ -73.563827514648438, -14.459671974182129 ], [ -73.562606811523381, -14.459772109985295 ], [ -73.561126708984375, -14.460513114929199 ], [ -73.558425903320256, -14.462458610534611 ], [ -73.55657958984375, -14.463006019592285 ], [ -73.554649353027344, -14.463104248046875 ], [ -73.553497314453125, -14.46354866027832 ], [ -73.552108764648438, -14.463521003723145 ], [ -73.551643371581974, -14.463835716247559 ], [ -73.551490783691406, -14.467169761657715 ], [ -73.551673889160043, -14.470941543578988 ], [ -73.55281829833973, -14.474960327148381 ], [ -73.554443359374886, -14.478379249572754 ], [ -73.554603576660099, -14.480106353759709 ], [ -73.553977966308594, -14.480644226074219 ], [ -73.552581787109375, -14.48060131072998 ], [ -73.551498413085938, -14.480829238891545 ], [ -73.548652648925781, -14.482438087463322 ], [ -73.544563293457031, -14.483018875122013 ], [ -73.543716430664062, -14.483925819396973 ], [ -73.542068481445312, -14.484594345092773 ], [ -73.540405273437443, -14.485786437988281 ], [ -73.538528442382812, -14.487762451171818 ], [ -73.537437438964787, -14.489474296569824 ], [ -73.535118103027344, -14.491374969482365 ], [ -73.534660339355469, -14.492375373840218 ], [ -73.534645080566406, -14.492907524108887 ], [ -73.536651611328125, -14.496137619018555 ], [ -73.5372314453125, -14.498077392578125 ], [ -73.536827087402344, -14.498913764953613 ], [ -73.534683227539006, -14.50102424621582 ], [ -73.534065246582031, -14.501909255981388 ], [ -73.533142089843693, -14.506791114807129 ], [ -73.529182434082031, -14.509721755981388 ], [ -73.524696350097656, -14.511773109436035 ], [ -73.522026062011719, -14.514512062072754 ], [ -73.521560668945312, -14.5174303054809 ], [ -73.521903991699162, -14.519006729125863 ], [ -73.522018432617074, -14.524111747741699 ], [ -73.521156311035043, -14.527642250060978 ], [ -73.521247863769474, -14.531402587890625 ], [ -73.520668029785099, -14.532932281494141 ], [ -73.519622802734318, -14.533978462219238 ], [ -73.517807006835881, -14.535231590270939 ], [ -73.516502380371094, -14.535692214965707 ], [ -73.515579223632812, -14.535688400268498 ], [ -73.513160705566406, -14.536989212036133 ], [ -73.509407043456974, -14.540754318237305 ], [ -73.508728027343693, -14.54207801818842 ], [ -73.507072448730469, -14.54413890838623 ], [ -73.508880615234375, -14.545587539672795 ], [ -73.510047912597656, -14.547284126281681 ], [ -73.510589599609375, -14.548661231994629 ], [ -73.511032104492131, -14.554683685302678 ], [ -73.511718749999886, -14.558802604675293 ], [ -73.511703491210881, -14.563492774963322 ], [ -73.512344360351562, -14.565683364868164 ], [ -73.51336669921875, -14.566811561584473 ], [ -73.515426635742131, -14.567520141601562 ], [ -73.519172668457031, -14.570499420166016 ], [ -73.522727966308594, -14.570875167846623 ], [ -73.524208068847543, -14.571283340454102 ], [ -73.525680541992188, -14.57203102111805 ], [ -73.527885437011719, -14.573826789855957 ], [ -73.531822204589787, -14.577610015869027 ], [ -73.533058166503849, -14.57957935333252 ], [ -73.533439636230412, -14.580848693847543 ], [ -73.533111572265625, -14.583649635314941 ], [ -73.532096862792912, -14.585639953613281 ], [ -73.529975891113281, -14.591738700866699 ], [ -73.529418945312443, -14.594364166259709 ], [ -73.528327941894531, -14.597114562988281 ], [ -73.527793884277344, -14.600690841674805 ], [ -73.527214050292969, -14.602611541748047 ], [ -73.522209167480355, -14.614818572998047 ], [ -73.519889831542912, -14.621556282043457 ], [ -73.518409729003906, -14.624275207519531 ], [ -73.515777587890625, -14.627216339111328 ], [ -73.514190673828068, -14.629717826843205 ], [ -73.512123107910156, -14.634260177612305 ], [ -73.511131286621037, -14.638023376464844 ], [ -73.510322570800781, -14.639571189880257 ], [ -73.509773254394474, -14.641239166259766 ], [ -73.509689331054631, -14.647567749023438 ], [ -73.51080322265625, -14.653639793395996 ], [ -73.511688232421818, -14.655878067016602 ], [ -73.514183044433537, -14.660059928893986 ], [ -73.514595031738281, -14.661192893981877 ], [ -73.517333984374943, -14.665060997009277 ], [ -73.518013000488168, -14.666963577270508 ], [ -73.518104553222543, -14.66831111907959 ], [ -73.517898559570256, -14.669649124145451 ], [ -73.516494750976562, -14.671779632568359 ], [ -73.516151428222656, -14.67279052734375 ], [ -73.515350341796875, -14.677358627319336 ], [ -73.515968322753906, -14.678068161010685 ], [ -73.517211914062443, -14.678129196166992 ], [ -73.518280029296818, -14.677837371826058 ], [ -73.520538330078125, -14.676486015319824 ], [ -73.521690368652344, -14.67617130279541 ], [ -73.523216247558594, -14.676397323608398 ], [ -73.52490234375, -14.676994323730469 ], [ -73.525741577148438, -14.677009582519531 ], [ -73.53033447265625, -14.676061630248967 ], [ -73.531181335449219, -14.675605773925781 ], [ -73.53365325927723, -14.675305366516113 ], [ -73.535659790039062, -14.674395561218262 ], [ -73.537590026855469, -14.674282073974553 ], [ -73.539245605468693, -14.673660278320312 ], [ -73.540351867675781, -14.673803329467773 ], [ -73.541389465332031, -14.674206733703556 ], [ -73.543869018554688, -14.676600456237793 ], [ -73.546890258789006, -14.678750991821289 ], [ -73.550720214843636, -14.680900573730469 ], [ -73.553001403808537, -14.681392669677734 ], [ -73.55950927734375, -14.681379318237248 ], [ -73.562133789062443, -14.682217597961369 ], [ -73.564598083496094, -14.683940887451058 ], [ -73.567634582519531, -14.684178352355957 ], [ -73.569007873535099, -14.68479061126709 ], [ -73.571052551269531, -14.686395645141602 ], [ -73.571624755859375, -14.687628746032658 ], [ -73.571739196777344, -14.690313339233398 ], [ -73.572082519531136, -14.691489219665527 ], [ -73.571571350097599, -14.69227123260498 ], [ -73.570533752441349, -14.692925453185978 ], [ -73.57037353515625, -14.693611145019531 ], [ -73.570564270019531, -14.693948745727539 ], [ -73.571594238281193, -14.694867134094238 ], [ -73.573532104492188, -14.694888114929086 ], [ -73.574989318847656, -14.695331573486328 ], [ -73.574882507324219, -14.696387290954533 ], [ -73.573760986328125, -14.697149276733285 ], [ -73.573577880859318, -14.698505401611271 ], [ -73.573783874511662, -14.698983192443848 ], [ -73.575042724609261, -14.699849128723145 ], [ -73.575164794921875, -14.701054573059082 ], [ -73.573066711425781, -14.703543663024846 ], [ -73.572975158691406, -14.705289840698242 ], [ -73.571266174316406, -14.706842422485295 ], [ -73.571182250976562, -14.707790374755859 ], [ -73.571411132812443, -14.708287239074593 ], [ -73.572593688964844, -14.709218978881836 ], [ -73.573562622070312, -14.711157798767033 ], [ -73.57611083984375, -14.71171665191639 ], [ -73.576881408691406, -14.712093353271484 ], [ -73.577125549316349, -14.712662696838322 ], [ -73.577041625976449, -14.713936805725098 ], [ -73.576087951660043, -14.716334342956486 ], [ -73.574501037597656, -14.719092369079533 ], [ -73.573600769042912, -14.720215797424316 ], [ -73.572738647460881, -14.720517158508301 ], [ -73.569763183593693, -14.720535278320256 ], [ -73.569038391113281, -14.720984458923283 ], [ -73.568962097167969, -14.723098754882812 ], [ -73.569236755371094, -14.725665092468205 ], [ -73.569755554199219, -14.726129531860295 ], [ -73.570762634277344, -14.726543426513615 ], [ -73.571014404296818, -14.727485656738281 ], [ -73.568489074707031, -14.729956626892033 ], [ -73.568046569824162, -14.733405113220158 ], [ -73.5672607421875, -14.733751296997013 ], [ -73.564933776855355, -14.734054565429688 ], [ -73.563568115234318, -14.735176086425781 ], [ -73.563201904296818, -14.736204147338867 ], [ -73.563148498535156, -14.737947463989201 ], [ -73.562690734863281, -14.739192008972168 ], [ -73.562324523925724, -14.742661476135254 ], [ -73.562408447265625, -14.74384593963623 ], [ -73.564132690429631, -14.746911048889046 ], [ -73.564422607421818, -14.748232841491699 ], [ -73.563934326171875, -14.750464439392033 ], [ -73.562576293945312, -14.753401756286621 ], [ -73.562461853027344, -14.754622459411621 ], [ -73.562812805175724, -14.755782127380371 ], [ -73.564201354980469, -14.758076667785645 ], [ -73.564102172851562, -14.759575843810978 ], [ -73.563400268554631, -14.762317657470646 ], [ -73.563385009765568, -14.764606475830021 ], [ -73.56439208984375, -14.77098560333252 ], [ -73.564613342285099, -14.771754264831429 ], [ -73.565582275390568, -14.773386001586914 ], [ -73.565055847167969, -14.774909973144474 ], [ -73.565109252929631, -14.775444030761719 ], [ -73.565452575683594, -14.775897026062012 ], [ -73.564826965331974, -14.776654243469181 ], [ -73.563735961914062, -14.77912712097168 ], [ -73.56231689453125, -14.780941009521484 ], [ -73.560516357421818, -14.782990455627441 ], [ -73.558204650878906, -14.78386116027832 ], [ -73.556571960449219, -14.786039352416992 ], [ -73.555763244628849, -14.788194656372013 ], [ -73.553421020507812, -14.789815902709904 ], [ -73.553237915039062, -14.79130744934082 ], [ -73.553596496582031, -14.792329788207894 ], [ -73.553619384765625, -14.794092178344727 ], [ -73.551933288574162, -14.796213150024357 ], [ -73.551795959472656, -14.798220634460449 ], [ -73.551498413085938, -14.799123764038086 ], [ -73.549537658691406, -14.801704406738224 ], [ -73.548782348632756, -14.8020982742309 ], [ -73.547447204589787, -14.80237865447998 ], [ -73.543174743652287, -14.802829742431584 ], [ -73.542388916015568, -14.802517890930176 ], [ -73.541229248046875, -14.801370620727482 ], [ -73.540473937988281, -14.80101299285883 ], [ -73.5362548828125, -14.800281524658146 ], [ -73.533615112304631, -14.799443244934025 ], [ -73.532104492187443, -14.800022125244141 ], [ -73.530830383300781, -14.80012226104725 ], [ -73.52993011474598, -14.800955772399902 ], [ -73.528388977050724, -14.80158805847168 ], [ -73.527435302734318, -14.803036689758301 ], [ -73.525009155273438, -14.805027008056584 ], [ -73.524772644042912, -14.805938720703125 ], [ -73.524200439453068, -14.806703567504826 ], [ -73.521499633789062, -14.809011459350529 ], [ -73.521209716796875, -14.809621810913086 ], [ -73.521057128906193, -14.811340332031193 ], [ -73.52069091796875, -14.811545372009277 ], [ -73.519447326660156, -14.811420440673771 ], [ -73.519210815429688, -14.811581611633301 ], [ -73.519477844238281, -14.813614845275879 ], [ -73.519142150878849, -14.814556121826172 ], [ -73.517959594726562, -14.815567970275822 ], [ -73.516693115234375, -14.816109657287541 ], [ -73.515708923339787, -14.817081451416016 ], [ -73.515045166015568, -14.820510864257699 ], [ -73.514007568359261, -14.822702407836914 ], [ -73.514106750488281, -14.823631286621037 ], [ -73.514831542968693, -14.824793815612793 ], [ -73.514656066894474, -14.825261116027832 ], [ -73.513809204101506, -14.825798988342285 ], [ -73.513031005859318, -14.825967788696232 ], [ -73.511810302734261, -14.82565975189209 ], [ -73.510734558105412, -14.824984550476074 ], [ -73.509895324706974, -14.824906349182072 ], [ -73.506843566894474, -14.826143264770508 ], [ -73.503295898437443, -14.828216552734318 ], [ -73.502220153808594, -14.828470230102425 ], [ -73.501625061035156, -14.828224182128849 ], [ -73.500511169433594, -14.828216552734318 ], [ -73.499603271484261, -14.82848072052002 ], [ -73.498733520507756, -14.829369544982853 ], [ -73.498306274414062, -14.830218315124512 ], [ -73.495857238769474, -14.832777976989689 ], [ -73.494087219238281, -14.835802078247013 ], [ -73.491798400878906, -14.837089538574162 ], [ -73.486320495605412, -14.842017173767033 ], [ -73.485176086425724, -14.842471122741699 ], [ -73.483238220214844, -14.842655181884766 ], [ -73.478347778320312, -14.840823173522949 ], [ -73.476852416992188, -14.840605735778695 ], [ -73.470901489257699, -14.838389396667424 ], [ -73.468688964843693, -14.838473320007267 ], [ -73.468193054199162, -14.838958740234375 ], [ -73.465682983398438, -14.840082168579045 ], [ -73.465141296386662, -14.840023040771428 ], [ -73.464546203613281, -14.83964729309082 ], [ -73.463119506835938, -14.837035179138184 ], [ -73.462669372558537, -14.833698272705078 ], [ -73.461555480956918, -14.832010269165039 ], [ -73.461128234863281, -14.829059600830021 ], [ -73.458969116210881, -14.827202796935978 ], [ -73.458602905273438, -14.826640129089355 ], [ -73.457954406738281, -14.822214126586914 ], [ -73.457336425781193, -14.82136058807373 ], [ -73.454658508300724, -14.818813323974609 ], [ -73.455490112304688, -14.81541728973383 ], [ -73.45489501953125, -14.811556816101074 ], [ -73.453659057617188, -14.808121681213322 ], [ -73.453483581542969, -14.806315422058105 ], [ -73.452812194824219, -14.80439281463623 ], [ -73.452178955078068, -14.803203582763672 ], [ -73.450714111328125, -14.801575660705566 ], [ -73.449516296386662, -14.799289703369141 ], [ -73.440544128417912, -14.789558410644531 ], [ -73.439857482910156, -14.788233757018986 ], [ -73.439468383789062, -14.786667823791447 ], [ -73.437995910644418, -14.784724235534554 ], [ -73.436912536621037, -14.78409290313715 ], [ -73.434951782226562, -14.783466339111328 ], [ -73.433395385742131, -14.781918525695801 ], [ -73.430656433105355, -14.780083656310978 ], [ -73.423957824706974, -14.776847839355469 ], [ -73.418449401855355, -14.772148132324162 ], [ -73.416336059570256, -14.771126747131291 ], [ -73.415946960449162, -14.770619392394963 ], [ -73.4154052734375, -14.770552635192871 ], [ -73.412979125976506, -14.771557807922363 ], [ -73.412033081054631, -14.771715164184513 ], [ -73.409179687499943, -14.771034240722656 ], [ -73.408042907714787, -14.770112991333008 ], [ -73.406875610351506, -14.768740653991699 ], [ -73.404609680175724, -14.765315055847168 ], [ -73.403244018554688, -14.761672973632812 ], [ -73.401641845703068, -14.753863334655762 ], [ -73.4007568359375, -14.743950843810921 ], [ -73.398132324218636, -14.736702919006234 ], [ -73.397903442382812, -14.734295845031681 ], [ -73.39654541015625, -14.728511810302734 ], [ -73.39453125, -14.724231719970703 ], [ -73.392372131347656, -14.717537879943734 ], [ -73.389755249023438, -14.713371276855469 ], [ -73.385330200195256, -14.708730697631836 ], [ -73.382354736328125, -14.70466136932373 ], [ -73.381423950195256, -14.704092979431152 ], [ -73.376464843749943, -14.702034950256348 ], [ -73.373672485351562, -14.700216293334961 ], [ -73.371490478515568, -14.698392868041879 ], [ -73.370628356933594, -14.695396423339844 ], [ -73.370689392089844, -14.690552711486816 ], [ -73.370193481445199, -14.68858623504633 ], [ -73.369308471679631, -14.686764717102051 ], [ -73.365608215331974, -14.682220458984318 ], [ -73.36395263671875, -14.677961349487248 ], [ -73.363388061523381, -14.678435325622559 ], [ -73.36275482177723, -14.680364608764535 ], [ -73.361839294433594, -14.681558609008789 ], [ -73.361061096191406, -14.682087898254395 ], [ -73.359161376953125, -14.682491302490178 ], [ -73.358329772949162, -14.683216094970703 ], [ -73.356430053710881, -14.686792373657227 ], [ -73.355361938476562, -14.690695762634277 ], [ -73.35479736328125, -14.691785812377873 ], [ -73.352317810058594, -14.694399833679142 ], [ -73.351913452148438, -14.69623947143549 ], [ -73.352272033691406, -14.701456069946289 ], [ -73.352012634277344, -14.70247745513916 ], [ -73.350883483886719, -14.703851699829102 ], [ -73.348846435546875, -14.704975128173828 ], [ -73.346260070800781, -14.705968856811523 ], [ -73.344612121581974, -14.706231117248535 ], [ -73.341934204101506, -14.707610130310059 ], [ -73.337776184082031, -14.71049976348877 ], [ -73.335884094238281, -14.711326599121094 ], [ -73.332702636718693, -14.714504241943359 ], [ -73.328392028808537, -14.717182159423828 ], [ -73.325622558593693, -14.717164039611816 ], [ -73.321807861328068, -14.716032981872502 ], [ -73.318618774414062, -14.71617317199707 ], [ -73.314224243164062, -14.715688705444336 ], [ -73.309944152832031, -14.715912818908578 ], [ -73.308639526367188, -14.716334342956486 ], [ -73.308120727539062, -14.716977119445801 ], [ -73.307785034179631, -14.718171119689885 ], [ -73.307136535644474, -14.718791007995549 ], [ -73.295143127441406, -14.724379539489746 ], [ -73.292633056640568, -14.725769996643066 ], [ -73.291603088378849, -14.727362632751465 ], [ -73.290138244628906, -14.732132911682129 ], [ -73.289802551269531, -14.73255729675293 ], [ -73.288963317871094, -14.736780166625977 ], [ -73.288421630859375, -14.737606048583928 ], [ -73.287712097167969, -14.738180160522461 ], [ -73.286712646484318, -14.738208770751839 ], [ -73.28570556640625, -14.737794876098633 ], [ -73.284057617187443, -14.736571311950684 ], [ -73.27398681640625, -14.724395751953125 ], [ -73.268753051757812, -14.71998119354248 ], [ -73.265441894531193, -14.715347290039062 ], [ -73.263641357421818, -14.713661193847599 ], [ -73.261215209960938, -14.711862564086914 ], [ -73.254905700683594, -14.709827423095703 ], [ -73.25299072265625, -14.709650039672852 ], [ -73.252204895019474, -14.71021461486805 ], [ -73.250503540038949, -14.712820053100586 ], [ -73.249671936035156, -14.713726997375488 ], [ -73.248161315917969, -14.714377403259277 ], [ -73.247070312499886, -14.714586257934513 ], [ -73.245002746582031, -14.7144517898559 ], [ -73.243965148925781, -14.714055061340332 ], [ -73.240531921386719, -14.711552619934082 ], [ -73.239105224609375, -14.710891723632812 ], [ -73.235702514648381, -14.710342407226506 ], [ -73.230445861816349, -14.710176467895508 ], [ -73.227920532226562, -14.709450721740723 ], [ -73.227218627929631, -14.709048271179199 ], [ -73.226364135742131, -14.708156585693303 ], [ -73.223129272460881, -14.706081390380859 ], [ -73.221885681152287, -14.704806327819711 ], [ -73.220130920410156, -14.702387809753361 ], [ -73.219154357910156, -14.701595306396484 ], [ -73.218406677246094, -14.701308250427246 ], [ -73.217330932617188, -14.701616287231388 ], [ -73.212974548339844, -14.704708099365178 ], [ -73.211143493652344, -14.705670356750488 ], [ -73.207832336425781, -14.705691337585449 ], [ -73.203697204589844, -14.706797599792424 ], [ -73.202064514160156, -14.707013130187931 ], [ -73.200134277343693, -14.706797599792424 ], [ -73.198654174804688, -14.70604419708252 ], [ -73.197433471679688, -14.705744743347111 ], [ -73.193656921386662, -14.707343101501408 ], [ -73.192672729492188, -14.707361221313477 ], [ -73.190727233886719, -14.70684909820551 ], [ -73.189888000488281, -14.706411361694336 ], [ -73.188995361328011, -14.705545425414925 ], [ -73.18731689453125, -14.701273918151742 ], [ -73.184669494628849, -14.697321891784668 ], [ -73.182662963867131, -14.692743301391545 ], [ -73.17974853515625, -14.688309669494629 ], [ -73.179374694824219, -14.686193466186523 ], [ -73.178962707519474, -14.685321807861328 ], [ -73.177474975585938, -14.68504619598383 ], [ -73.17596435546875, -14.685713768005314 ], [ -73.174865722656193, -14.685723304748535 ], [ -73.164299011230469, -14.682069778442326 ], [ -73.163330078124943, -14.682026863098088 ], [ -73.162513732910156, -14.682497978210449 ], [ -73.161804199218693, -14.682409286499023 ], [ -73.159233093261662, -14.680167198181096 ], [ -73.156272888183537, -14.679457664489746 ], [ -73.152992248535156, -14.677733421325684 ], [ -73.152557373046818, -14.677023887634221 ], [ -73.152763366699219, -14.674749374389648 ], [ -73.152351379394474, -14.674058914184513 ], [ -73.149978637695256, -14.675856590270996 ], [ -73.148811340331974, -14.677527427673226 ], [ -73.147392272949162, -14.679006576538029 ], [ -73.145942687988281, -14.679765701293888 ], [ -73.144073486328011, -14.680282592773381 ], [ -73.140625, -14.680571556091252 ], [ -73.135337829589844, -14.681595802307129 ], [ -73.132865905761719, -14.681730270385742 ], [ -73.126358032226562, -14.681333541870117 ], [ -73.125015258789062, -14.681015014648438 ], [ -73.123382568359261, -14.680288314819336 ], [ -73.121612548828125, -14.679957389831543 ], [ -73.120079040527344, -14.679926872253418 ], [ -73.118873596191349, -14.680216789245605 ], [ -73.118179321289062, -14.681051254272461 ], [ -73.118118286132756, -14.682125091552678 ], [ -73.120948791503906, -14.68766975402832 ], [ -73.121368408203068, -14.690067291259766 ], [ -73.119934082031193, -14.691321372985783 ], [ -73.117507934570312, -14.692232131958008 ], [ -73.113487243652344, -14.693301200866699 ], [ -73.111824035644474, -14.692881584167367 ], [ -73.110374450683537, -14.691651344299316 ], [ -73.108345031738281, -14.69078540802002 ], [ -73.107513427734318, -14.690072059631234 ], [ -73.105796813964787, -14.687945365905762 ], [ -73.105247497558537, -14.685707092285156 ], [ -73.105834960937386, -14.683534622192383 ], [ -73.105064392089787, -14.680661201477051 ], [ -73.10540771484375, -14.679093360900822 ], [ -73.107002258300781, -14.675662994384766 ], [ -73.109611511230412, -14.672357559203988 ], [ -73.109977722167969, -14.670654296874943 ], [ -73.109603881835938, -14.669936180114746 ], [ -73.108604431152344, -14.669459342956543 ], [ -73.106109619140568, -14.669673919677734 ], [ -73.105056762695256, -14.669466018676701 ], [ -73.103752136230469, -14.668253898620549 ], [ -73.102668762206974, -14.666689872741699 ], [ -73.101646423339844, -14.66461181640625 ], [ -73.101478576660156, -14.663146018981934 ], [ -73.101913452148381, -14.66187667846674 ], [ -73.103599548339844, -14.659723281860352 ], [ -73.103660583496094, -14.658918380737305 ], [ -73.103256225585824, -14.658209800720215 ], [ -73.102264404296875, -14.657252311706543 ], [ -73.099998474121037, -14.656329154968205 ], [ -73.099090576171875, -14.654940605163574 ], [ -73.09918212890625, -14.652400016784668 ], [ -73.097923278808594, -14.651006698608398 ], [ -73.097152709960824, -14.650811195373535 ], [ -73.095382690429688, -14.651583671569767 ], [ -73.093315124511662, -14.651458740234375 ], [ -73.092636108398381, -14.651589393615723 ], [ -73.091064453125, -14.652687072753906 ], [ -73.090347290039006, -14.653820037841797 ], [ -73.087844848632812, -14.654948234558105 ], [ -73.081077575683594, -14.65436935424799 ], [ -73.079269409179688, -14.654505729675293 ], [ -73.078277587890625, -14.655139923095589 ], [ -73.076423645019474, -14.657012939453068 ], [ -73.074539184570256, -14.658145904541016 ], [ -73.072830200195256, -14.65970516204834 ], [ -73.071662902831974, -14.660110473632812 ], [ -73.069450378417969, -14.661500930786133 ], [ -73.066650390625, -14.664449691772461 ], [ -73.064971923828125, -14.665395736694222 ], [ -73.063209533691406, -14.665630340576058 ], [ -73.062202453613281, -14.665190696716252 ], [ -73.060104370117188, -14.663022994995117 ], [ -73.059127807617188, -14.661722183227539 ], [ -73.058670043945312, -14.660443305969238 ], [ -73.058151245117074, -14.659987449645996 ], [ -73.055267333984318, -14.659684181213379 ], [ -73.05291748046875, -14.658941268920898 ], [ -73.051811218261719, -14.659111976623535 ], [ -73.050140380859261, -14.659766197204533 ], [ -73.049171447753849, -14.659787178039551 ], [ -73.047088623046761, -14.658728599548283 ], [ -73.044692993164006, -14.65806770324707 ], [ -73.043083190917855, -14.656411170959473 ], [ -73.042976379394474, -14.654738426208382 ], [ -73.042518615722656, -14.653602600097599 ], [ -73.039016723632812, -14.650376319885197 ], [ -73.039039611816349, -14.649687767028809 ], [ -73.039718627929631, -14.648195266723576 ], [ -73.040664672851506, -14.646701812744141 ], [ -73.041931152343693, -14.645474433898926 ], [ -73.042808532714844, -14.643184661865178 ], [ -73.042793273925668, -14.641596794128418 ], [ -73.042091369628849, -14.63624095916748 ], [ -73.042381286621037, -14.633984565734806 ], [ -73.042289733886662, -14.629147529602051 ], [ -73.042984008788949, -14.622041702270508 ], [ -73.042823791503906, -14.62073802947998 ], [ -73.042251586914062, -14.620906829833871 ], [ -73.039375305175781, -14.623600959777718 ], [ -73.038330078125, -14.623981475830078 ], [ -73.036941528320256, -14.623951911926213 ], [ -73.034927368164062, -14.624478340148926 ], [ -73.030456542968693, -14.627602577209359 ], [ -73.028648376464787, -14.627712249755859 ], [ -73.025581359863281, -14.626882553100586 ], [ -73.021568298339844, -14.62718391418457 ], [ -73.02081298828125, -14.627485275268555 ], [ -73.019973754882756, -14.628228187561035 ], [ -73.019393920898381, -14.629722595214844 ], [ -73.018943786621037, -14.630261421203556 ], [ -73.018463134765568, -14.6304931640625 ], [ -73.017494201660099, -14.630536079406681 ], [ -73.016571044921761, -14.630764007568359 ], [ -73.015235900878793, -14.630419731140023 ], [ -73.01385498046875, -14.631301879882699 ], [ -73.012031555175781, -14.633312225341797 ], [ -73.010536193847599, -14.635883331298828 ], [ -73.008949279785156, -14.637911796569824 ], [ -73.008186340332031, -14.6396484375 ], [ -73.007217407226506, -14.640950202941838 ], [ -73.005134582519531, -14.643293380737305 ], [ -73.004402160644531, -14.643917083740234 ], [ -73.002929687499886, -14.644674301147404 ], [ -73.001594543456918, -14.644571304321232 ], [ -72.998626708984318, -14.64542102813715 ], [ -72.997032165527344, -14.645236968994141 ], [ -72.99560546875, -14.644756317138672 ], [ -72.990760803222656, -14.641424179077092 ], [ -72.989151000976562, -14.639486312866211 ], [ -72.98846435546875, -14.638087272644043 ], [ -72.986724853515625, -14.635894775390625 ], [ -72.985847473144474, -14.635065078735238 ], [ -72.983825683593693, -14.63387298583973 ], [ -72.982238769531136, -14.633858680725098 ], [ -72.980270385742188, -14.634502410888672 ], [ -72.976325988769418, -14.637484550476074 ], [ -72.9742431640625, -14.638777732849064 ], [ -72.973197937011719, -14.639101028442383 ], [ -72.971015930175781, -14.639164924621582 ], [ -72.969955444335938, -14.639542579650879 ], [ -72.969512939453125, -14.640443801879883 ], [ -72.969436645507756, -14.641916275024357 ], [ -72.970283508300724, -14.646524429321289 ], [ -72.970046997070312, -14.647062301635685 ], [ -72.968574523925724, -14.648316383361816 ], [ -72.968414306640625, -14.64995002746582 ], [ -72.971870422363281, -14.653323173522949 ], [ -72.972633361816406, -14.655609130859318 ], [ -72.972640991210938, -14.656721115112305 ], [ -72.972251892089844, -14.657844543457031 ], [ -72.970596313476506, -14.659645080566406 ], [ -72.967620849609318, -14.663885116577148 ], [ -72.965377807617188, -14.665981292724553 ], [ -72.964225769042969, -14.668193817138615 ], [ -72.962554931640568, -14.669939994812012 ], [ -72.961723327636662, -14.671893119811955 ], [ -72.959548950195312, -14.674895286560059 ], [ -72.958808898925781, -14.677156448364258 ], [ -72.957702636718693, -14.679387092590218 ], [ -72.955398559570312, -14.682512283325195 ], [ -72.953453063964844, -14.683930397033635 ], [ -72.951774597167969, -14.684556007385254 ], [ -72.950447082519474, -14.685721397399846 ], [ -72.948623657226562, -14.68643665313715 ], [ -72.94757080078125, -14.687230110168457 ], [ -72.945007324218693, -14.687786102294922 ], [ -72.942817687988224, -14.689206123351994 ], [ -72.936729431152287, -14.691157341003361 ], [ -72.935317993163949, -14.692489624023381 ], [ -72.934249877929631, -14.694522857665959 ], [ -72.933540344238281, -14.695211410522404 ], [ -72.932868957519531, -14.693997383117676 ], [ -72.932273864746094, -14.693404197692871 ], [ -72.932052612304631, -14.692505836486816 ], [ -72.931526184082031, -14.691741943359318 ], [ -72.927787780761719, -14.688508033752385 ], [ -72.924690246582031, -14.686567306518441 ], [ -72.922927856445312, -14.685953140258789 ], [ -72.921981811523438, -14.685077667236271 ], [ -72.920417785644474, -14.684747695922795 ], [ -72.918434143066293, -14.684703826904183 ], [ -72.917770385742074, -14.685175895690918 ], [ -72.917289733886605, -14.685887336730957 ], [ -72.916488647460938, -14.687923431396428 ], [ -72.916244506835824, -14.689273834228459 ], [ -72.915306091308594, -14.690178871154785 ], [ -72.913810729980469, -14.692622184753418 ], [ -72.913063049316349, -14.694875717163086 ], [ -72.912918090820312, -14.69633674621582 ], [ -72.912597656249943, -14.696697235107365 ], [ -72.910354614257812, -14.697381019592228 ], [ -72.908760070800781, -14.698161125183105 ], [ -72.906600952148381, -14.698041915893555 ], [ -72.905166625976506, -14.698735237121525 ], [ -72.903129577636719, -14.699076652526799 ], [ -72.899978637695312, -14.698515892028809 ], [ -72.898200988769474, -14.698464393615609 ], [ -72.897071838378793, -14.699129104614201 ], [ -72.894622802734375, -14.699806213378906 ], [ -72.893409729003906, -14.700498580932617 ], [ -72.890533447265625, -14.700922966003418 ], [ -72.889389038085938, -14.701870918273869 ], [ -72.889160156249886, -14.702672958373967 ], [ -72.88820648193348, -14.704037666320801 ], [ -72.885818481445199, -14.706111907958984 ], [ -72.882293701171761, -14.706967353820801 ], [ -72.880599975585938, -14.70777416229248 ], [ -72.877273559570312, -14.708710670471191 ], [ -72.875648498535156, -14.708804130554142 ], [ -72.874893188476562, -14.708443641662541 ], [ -72.873527526855469, -14.708207130432129 ], [ -72.871833801269531, -14.708307266235238 ], [ -72.869277954101562, -14.707649230957031 ], [ -72.868324279785156, -14.707659721374455 ], [ -72.867759704589787, -14.707917213439941 ], [ -72.867004394531193, -14.709102630615178 ], [ -72.865859985351506, -14.71198558807373 ], [ -72.865829467773438, -14.718795776367188 ], [ -72.865234375, -14.721013069152832 ], [ -72.864463806152344, -14.722055435180664 ], [ -72.864006042480469, -14.723262786865234 ], [ -72.864730834960881, -14.725337028503418 ], [ -72.863487243652287, -14.725788116455021 ], [ -72.861740112304688, -14.725507736206055 ], [ -72.859619140625, -14.725886344909668 ], [ -72.857315063476562, -14.727672576904297 ], [ -72.855865478515568, -14.729457855224609 ], [ -72.855117797851562, -14.731340408325195 ], [ -72.855072021484375, -14.732900619506779 ], [ -72.856781005859375, -14.736368179321289 ], [ -72.856834411621094, -14.738574028015137 ], [ -72.856529235839787, -14.739639282226449 ], [ -72.855796813964844, -14.740804672241154 ], [ -72.853645324706974, -14.742419242858887 ], [ -72.852561950683594, -14.743675231933594 ], [ -72.852645874023438, -14.750670433044377 ], [ -72.852363586425781, -14.753785133361816 ], [ -72.85064697265625, -14.75526046752924 ], [ -72.84930419921875, -14.757669448852539 ], [ -72.846908569335824, -14.759645462036133 ], [ -72.848976135253849, -14.76125431060791 ], [ -72.851890563964844, -14.762592315673771 ], [ -72.853454589843693, -14.762812614440918 ], [ -72.85760498046875, -14.762771606445312 ], [ -72.859535217285156, -14.76350116729725 ], [ -72.862243652343693, -14.762820243835449 ], [ -72.867042541503906, -14.762820243835449 ], [ -72.870155334472599, -14.762118339538461 ], [ -72.872726440429631, -14.762133598327637 ], [ -72.873573303222656, -14.762627601623478 ], [ -72.876060485839787, -14.764919281005859 ], [ -72.876960754394531, -14.765190124511662 ], [ -72.878929138183537, -14.76509857177723 ], [ -72.880409240722656, -14.76612663269043 ], [ -72.880836486816349, -14.766716957092228 ], [ -72.880844116210881, -14.768450736999512 ], [ -72.881881713867131, -14.77039527893055 ], [ -72.882621765136719, -14.771106719970589 ], [ -72.883689880371037, -14.771674156188965 ], [ -72.886573791503849, -14.772146224975586 ], [ -72.888481140136662, -14.771347999572754 ], [ -72.894020080566293, -14.771690368652344 ], [ -72.89727783203125, -14.770480155944767 ], [ -72.900627136230469, -14.769842147827148 ], [ -72.904586791992131, -14.769914627075082 ], [ -72.906196594238224, -14.770344734191838 ], [ -72.910438537597656, -14.769271850585881 ], [ -72.912712097167855, -14.767494201660156 ], [ -72.914268493652344, -14.765095710754338 ], [ -72.916717529296761, -14.763248443603516 ], [ -72.918495178222599, -14.759929656982365 ], [ -72.920173645019531, -14.758435249328556 ], [ -72.920890808105412, -14.75818824768055 ], [ -72.925384521484318, -14.757948875427246 ], [ -72.926979064941406, -14.758227348327637 ], [ -72.92999267578125, -14.758163452148438 ], [ -72.931343078613281, -14.758832931518498 ], [ -72.932662963867188, -14.760382652282658 ], [ -72.934600830078125, -14.761981010437012 ], [ -72.936126708984375, -14.762725830078125 ], [ -72.938049316406193, -14.763132095336857 ], [ -72.94000244140625, -14.764268875122013 ], [ -72.94281005859375, -14.765233039855957 ], [ -72.944099426269531, -14.76642990112299 ], [ -72.945175170898438, -14.76785945892334 ], [ -72.946075439453068, -14.769981384277344 ], [ -72.947425842285043, -14.770552635192871 ], [ -72.950462341308537, -14.773707389831543 ], [ -72.952758789062443, -14.774955749511719 ], [ -72.953399658203068, -14.775864601135197 ], [ -72.954887390136719, -14.777288436889648 ], [ -72.95574951171875, -14.779110908508244 ], [ -72.958267211914006, -14.78267765045166 ], [ -72.96014404296875, -14.788149833679142 ], [ -72.962257385253906, -14.791900634765511 ], [ -72.963150024414006, -14.79299259185791 ], [ -72.967315673828125, -14.794348716735783 ], [ -72.968345642089844, -14.794467926025334 ], [ -72.969352722167912, -14.794974327087402 ], [ -72.970954895019474, -14.796648979187012 ], [ -72.972244262695312, -14.797582626342773 ], [ -72.974411010742131, -14.799644470214844 ], [ -72.977592468261719, -14.804325103759766 ], [ -72.97967529296875, -14.806053161621094 ], [ -72.980499267578068, -14.80628490447998 ], [ -72.982002258300781, -14.806317329406681 ], [ -72.985694885253906, -14.805273056030217 ], [ -72.985885620117188, -14.805059432983398 ], [ -72.988929748535156, -14.804497718810978 ], [ -72.990669250488281, -14.803826332092228 ], [ -72.993209838867188, -14.803703308105412 ], [ -72.993934631347599, -14.804784774780217 ], [ -72.995353698730469, -14.808539390563908 ], [ -72.996963500976562, -14.811137199401742 ], [ -72.99896240234375, -14.812609672546387 ], [ -73.00286865234375, -14.814810752868652 ], [ -73.003158569335938, -14.816287994384709 ], [ -73.002571105957031, -14.81889533996582 ], [ -73.002601623535156, -14.820646286010685 ], [ -73.002944946289062, -14.821799278259221 ], [ -73.004440307617131, -14.82454776763916 ], [ -73.004898071289006, -14.827200889587402 ], [ -73.00469970703125, -14.829746246337834 ], [ -73.003868103027287, -14.832315444946289 ], [ -73.003662109374943, -14.834329605102539 ], [ -73.003585815429631, -14.837182998657227 ], [ -73.00390625, -14.839409828185978 ], [ -73.004852294921875, -14.841477394103947 ], [ -73.008041381835938, -14.846421241760254 ], [ -73.013130187988224, -14.853476524352971 ], [ -73.014984130859375, -14.85513782501215 ], [ -73.015327453613168, -14.856857299804688 ], [ -73.017539978027344, -14.858901023864689 ], [ -73.018478393554574, -14.860409736633301 ], [ -73.018386840820312, -14.862133026123047 ], [ -73.017623901367188, -14.864143371582031 ], [ -73.017715454101449, -14.865209579467773 ], [ -73.020233154296875, -14.870002746581918 ], [ -73.022003173828011, -14.874246597289925 ], [ -73.02508544921875, -14.879094123840332 ], [ -73.026084899902287, -14.881114006042424 ], [ -73.026214599609375, -14.882978439331055 ], [ -73.025955200195312, -14.885018348693848 ], [ -73.025253295898438, -14.887614250183049 ], [ -73.025390625, -14.889069557189885 ], [ -73.026565551757756, -14.890895843505859 ], [ -73.031616210937443, -14.895502090454045 ], [ -73.031929016113281, -14.896940231323185 ], [ -73.031539916992074, -14.899877548217717 ], [ -73.030693054199219, -14.902135848999023 ], [ -73.029098510742188, -14.904144287109261 ], [ -73.027328491210881, -14.907329559326172 ], [ -73.025123596191349, -14.910582542419377 ], [ -73.022323608398438, -14.914226531982365 ], [ -73.015419006347599, -14.920989036560002 ], [ -73.012794494628906, -14.924094200134277 ], [ -73.008644104003849, -14.927635192871094 ], [ -73.006591796875, -14.930980682373047 ], [ -73.001861572265568, -14.936914443969727 ], [ -73.001312255859261, -14.937277793884221 ], [ -73.000221252441406, -14.938722610473633 ], [ -72.998016357421875, -14.940329551696721 ], [ -72.995506286621094, -14.942864418029728 ], [ -72.993415832519531, -14.948267936706486 ], [ -72.992477416992188, -14.949722290039006 ], [ -72.991806030273438, -14.952257156371957 ], [ -72.991188049316349, -14.953364372253418 ], [ -72.989944458007756, -14.954446792602482 ], [ -72.987670898437386, -14.955212593078613 ], [ -72.986732482910156, -14.955925941467228 ], [ -72.986198425292969, -14.958579063415414 ], [ -72.985687255859375, -14.959921836853027 ], [ -72.985015869140625, -14.963483810424748 ], [ -72.984428405761605, -14.96518611907959 ], [ -72.984176635742188, -14.968104362487736 ], [ -72.983070373535099, -14.971896171569767 ], [ -72.983207702636719, -14.97429370880127 ], [ -72.982971191406193, -14.974898338317871 ], [ -72.982925415039062, -14.976179122924748 ], [ -72.983238220214844, -14.979301452636719 ], [ -72.982841491699219, -14.980607032775879 ], [ -72.982826232910156, -14.982179641723576 ], [ -72.983039855957031, -14.983524322509766 ], [ -72.985061645507756, -14.985334396362248 ], [ -72.988601684570256, -14.986828804016056 ], [ -72.99066162109375, -14.987002372741699 ], [ -72.992759704589844, -14.987462997436523 ], [ -72.995864868164006, -14.989711761474609 ], [ -72.997734069824219, -14.991662979125977 ], [ -72.998931884765625, -14.993534088134766 ], [ -72.999977111816293, -14.996374130249023 ], [ -73.000617980956974, -14.999189376831055 ], [ -73.001533508300781, -15.000759124755859 ], [ -73.00274658203125, -15.000978469848576 ], [ -73.003128051757812, -15.001360893249455 ], [ -73.003555297851562, -15.003297805786133 ], [ -73.005195617675724, -15.007569313049316 ], [ -73.005424499511719, -15.009135246276855 ], [ -73.0048828125, -15.013836860656681 ], [ -73.005805969238281, -15.019963264465332 ], [ -73.005760192871037, -15.023062705993652 ], [ -73.005241394042969, -15.024999618530217 ], [ -73.006011962890625, -15.030736923217717 ], [ -73.005104064941349, -15.035082817077637 ], [ -73.004867553710938, -15.039393424987793 ], [ -73.00494384765625, -15.043288230895996 ], [ -73.005386352539006, -15.044981002807617 ], [ -73.007835388183594, -15.050118446350098 ], [ -73.008193969726562, -15.051547050476017 ], [ -73.007926940917969, -15.052737236022949 ], [ -73.006149291992131, -15.054603576660099 ], [ -73.004463195800781, -15.057686805725041 ], [ -73.004104614257812, -15.060087203979435 ], [ -73.004325866699162, -15.063947677612305 ], [ -73.006271362304574, -15.068114280700684 ], [ -73.008285522460938, -15.070669174194279 ], [ -73.011032104492131, -15.072925567626896 ], [ -73.014976501464844, -15.075175285339299 ], [ -73.016349792480412, -15.076497077941781 ], [ -73.017929077148438, -15.079339027404728 ], [ -73.018455505371037, -15.082839965820256 ], [ -73.018875122070312, -15.084081649780273 ], [ -73.021873474121037, -15.0872545242309 ], [ -73.024314880371094, -15.091150283813477 ], [ -73.024291992187386, -15.092379570007211 ], [ -73.023262023925781, -15.095163345336914 ], [ -73.022720336914062, -15.097526550292912 ], [ -73.022766113281136, -15.101691246032658 ], [ -73.022506713867188, -15.103406906127873 ], [ -73.021339416503793, -15.107293128967228 ], [ -73.020065307617131, -15.110260009765625 ], [ -73.020179748535099, -15.111737251281738 ], [ -73.019561767578125, -15.116266250610295 ], [ -73.019401550292912, -15.122590065002441 ], [ -73.019607543945256, -15.124326705932617 ], [ -73.020301818847656, -15.126655578613281 ], [ -73.020851135253849, -15.127581596374512 ], [ -73.022216796875, -15.128750801086369 ], [ -73.028648376464787, -15.129511833190918 ], [ -73.033203125, -15.132324218749943 ], [ -73.036033630371094, -15.133516311645451 ], [ -73.039894104003906, -15.133785247802678 ], [ -73.042747497558594, -15.132788658142033 ], [ -73.044258117675781, -15.132583618164062 ], [ -73.046707153320199, -15.133083343505859 ], [ -73.047492980957031, -15.133588790893555 ], [ -73.048042297363168, -15.134678840637207 ], [ -73.046615600585938, -15.138314247131348 ], [ -73.046836853027344, -15.14019870758051 ], [ -73.047477722167969, -15.14106273651123 ], [ -73.048126220703068, -15.141328811645508 ], [ -73.050888061523381, -15.141407012939396 ], [ -73.054084777832031, -15.142320632934513 ], [ -73.058631896972656, -15.142728805541992 ], [ -73.059837341308537, -15.143389701843205 ], [ -73.063064575195312, -15.14658260345459 ], [ -73.065223693847656, -15.149186134338379 ], [ -73.065864562988224, -15.151106834411564 ], [ -73.06610107421875, -15.153755187988281 ], [ -73.066986083984318, -15.153773307800236 ], [ -73.070114135742188, -15.153012275695801 ], [ -73.070762634277344, -15.153261184692326 ], [ -73.071960449218693, -15.154211044311467 ], [ -73.073417663574219, -15.157559394836312 ], [ -73.073669433593693, -15.158735275268555 ], [ -73.073707580566406, -15.161304473876953 ], [ -73.074508666992188, -15.162862777709961 ], [ -73.075645446777344, -15.163379669189453 ], [ -73.076942443847656, -15.162910461425781 ], [ -73.079582214355412, -15.162599563598633 ], [ -73.08251953125, -15.163385391235295 ], [ -73.089866638183594, -15.169502258300781 ], [ -73.090927124023381, -15.171696662902832 ], [ -73.094703674316406, -15.177186965942383 ], [ -73.095870971679688, -15.178516387939339 ], [ -73.098083496093693, -15.180350303649902 ], [ -73.099037170410099, -15.181506156921387 ], [ -73.099807739257756, -15.183238029479924 ], [ -73.100212097167969, -15.185763359069824 ], [ -73.100723266601562, -15.186898231506291 ], [ -73.101470947265625, -15.187129020690918 ], [ -73.102485656738224, -15.187075614929086 ], [ -73.105659484863281, -15.186117172241211 ], [ -73.108955383300724, -15.185745239257756 ], [ -73.109405517578125, -15.185407638549748 ], [ -73.110382080078068, -15.185435295104924 ], [ -73.111175537109261, -15.185946464538574 ], [ -73.111869812011719, -15.186808586120605 ], [ -73.112167358398438, -15.187563896179199 ], [ -73.112480163574162, -15.190384864807129 ], [ -73.112129211425668, -15.193319320678654 ], [ -73.11098480224598, -15.197195053100586 ], [ -73.111038208007812, -15.198687553405705 ], [ -73.111328124999943, -15.199575424194336 ], [ -73.112113952636662, -15.200684547424316 ], [ -73.112670898437443, -15.202350616455021 ], [ -73.112632751464844, -15.203301429748478 ], [ -73.112274169921875, -15.204022407531738 ], [ -73.112380981445256, -15.206876754760685 ], [ -73.113395690917969, -15.20862960815424 ], [ -73.114013671874943, -15.211399078369084 ], [ -73.115509033203125, -15.215739250183105 ], [ -73.115516662597656, -15.216941833496037 ], [ -73.116203308105412, -15.218268394470215 ], [ -73.116897583007699, -15.221582412719727 ], [ -73.119667053222656, -15.224919319152832 ], [ -73.120094299316406, -15.228799819946232 ], [ -73.12066650390625, -15.230629920959473 ], [ -73.121162414550724, -15.231439590454102 ], [ -73.126533508300781, -15.235468864440918 ], [ -73.129562377929631, -15.239976882934513 ], [ -73.133071899414006, -15.240637779235783 ], [ -73.135429382324219, -15.242728233337402 ], [ -73.136238098144474, -15.24398231506342 ], [ -73.137649536132756, -15.24792385101307 ], [ -73.137626647949219, -15.24913501739502 ], [ -73.138404846191406, -15.252828598022404 ], [ -73.13970947265625, -15.255647659301758 ], [ -73.141937255859375, -15.25672435760498 ], [ -73.147026062011662, -15.257590293884277 ], [ -73.149238586425781, -15.258746147155762 ], [ -73.149971008300724, -15.259566307067871 ], [ -73.150382995605469, -15.260445594787541 ], [ -73.150352478027287, -15.266607284545898 ], [ -73.150001525878906, -15.271739006042424 ], [ -73.149612426757812, -15.273470878601017 ], [ -73.150070190429631, -15.274695396423283 ], [ -73.151992797851449, -15.278170585632324 ], [ -73.152099609375, -15.279916763305607 ], [ -73.153022766113224, -15.282879829406738 ], [ -73.153518676757699, -15.283560752868596 ], [ -73.154106140136719, -15.283927917480469 ], [ -73.158729553222599, -15.284832954406738 ], [ -73.159706115722599, -15.285292625427189 ], [ -73.160675048828125, -15.287397384643555 ], [ -73.16204833984375, -15.289127349853459 ], [ -73.162895202636719, -15.290677070617619 ], [ -73.163322448730412, -15.294829368591252 ], [ -73.163581848144531, -15.295590400695801 ], [ -73.167816162109318, -15.29985523223877 ], [ -73.168937683105412, -15.302756309509164 ], [ -73.16973876953125, -15.304018974304199 ], [ -73.172210693359261, -15.305890083312988 ], [ -73.17462158203125, -15.306425094604435 ], [ -73.177955627441406, -15.305422782897892 ], [ -73.180961608886662, -15.305898666381836 ], [ -73.182899475097656, -15.305896759033146 ], [ -73.185562133788949, -15.305286407470703 ], [ -73.188179016113281, -15.304050445556641 ], [ -73.192619323730355, -15.300841331481877 ], [ -73.197891235351562, -15.298788070678654 ], [ -73.205421447753906, -15.295034408569336 ], [ -73.206657409667969, -15.294196128845215 ], [ -73.209396362304631, -15.293260574340763 ], [ -73.211349487304688, -15.293058395385742 ], [ -73.212440490722599, -15.293204307556096 ], [ -73.219963073730412, -15.297238349914494 ], [ -73.221206665039006, -15.297419548034554 ], [ -73.222709655761719, -15.297215461730957 ], [ -73.226531982421818, -15.295619964599553 ], [ -73.231895446777287, -15.29426193237299 ], [ -73.234359741210881, -15.293358802795353 ], [ -73.237129211425724, -15.292043685913029 ], [ -73.239395141601562, -15.290487289428711 ], [ -73.241592407226562, -15.289673805236816 ], [ -73.245773315429688, -15.286807060241642 ], [ -73.248298645019474, -15.28605937957758 ], [ -73.250923156738281, -15.286820411682129 ], [ -73.254234313964844, -15.287207603454533 ], [ -73.259368896484318, -15.286125183105469 ], [ -73.261749267578068, -15.285938262939453 ], [ -73.262779235839787, -15.286225318908691 ], [ -73.265724182128906, -15.288037300109863 ], [ -73.2689208984375, -15.288937568664551 ], [ -73.271682739257812, -15.28911304473877 ], [ -73.274826049804574, -15.288649559020996 ], [ -73.276618957519474, -15.288852691650334 ], [ -73.278938293457031, -15.290065765380803 ], [ -73.283401489257756, -15.29389476776123 ], [ -73.284561157226562, -15.294345855712891 ], [ -73.284423828124943, -15.296360969543457 ], [ -73.284919738769474, -15.29863262176508 ], [ -73.284660339355469, -15.299344062805119 ], [ -73.283218383788949, -15.301359176635742 ], [ -73.283866882324162, -15.302988052368107 ], [ -73.282615661621037, -15.305539131164494 ], [ -73.282913208007756, -15.307781219482422 ], [ -73.282005310058594, -15.308994293212891 ], [ -73.282630920410099, -15.310970306396428 ], [ -73.281967163085881, -15.311849594116211 ], [ -73.279151916503906, -15.314186096191406 ], [ -73.278282165527344, -15.31572437286377 ], [ -73.278007507324219, -15.316773414611816 ], [ -73.278694152832031, -15.317779541015625 ], [ -73.280220031738281, -15.31871223449707 ], [ -73.281105041503849, -15.31957817077631 ], [ -73.282073974609261, -15.32237720489502 ], [ -73.284172058105355, -15.324889183044434 ], [ -73.284843444824219, -15.326504707336426 ], [ -73.286300659179688, -15.328123092651367 ], [ -73.286621093749943, -15.329154968261719 ], [ -73.286628723144474, -15.330094337463379 ], [ -73.286956787109375, -15.330702781677132 ], [ -73.288543701171818, -15.332196235656738 ], [ -73.289985656738168, -15.33302116394043 ], [ -73.290969848632812, -15.334438323974553 ], [ -73.291069030761719, -15.336997985839787 ], [ -73.290687561035156, -15.339271545410099 ], [ -73.291778564453068, -15.340446472167912 ], [ -73.291877746581974, -15.341524124145451 ], [ -73.291610717773324, -15.342288017272949 ], [ -73.290206909179688, -15.343959808349553 ], [ -73.290122985839844, -15.344500541686955 ], [ -73.291366577148438, -15.346110343933105 ], [ -73.29103851318348, -15.348493576049748 ], [ -73.292526245117131, -15.3497056961059 ], [ -73.292831420898381, -15.350315093994141 ], [ -73.292861938476562, -15.353009223937988 ], [ -73.293579101562443, -15.353836059570312 ], [ -73.293701171874943, -15.354344367980957 ], [ -73.294036865234375, -15.358567237853947 ], [ -73.293861389160099, -15.359585762023926 ], [ -73.292488098144531, -15.361292839050236 ], [ -73.291488647460881, -15.363527297973633 ], [ -73.291290283203068, -15.369344711303711 ], [ -73.291030883789006, -15.370879173278809 ], [ -73.284942626953125, -15.376436233520451 ], [ -73.284217834472656, -15.377739906310978 ], [ -73.283882141113168, -15.379165649414006 ], [ -73.283782958984318, -15.381305694580078 ], [ -73.282066345214787, -15.383218765258732 ], [ -73.281936645507812, -15.385637283325195 ], [ -73.280502319335938, -15.38913536071766 ], [ -73.279571533203068, -15.39014720916748 ], [ -73.276443481445199, -15.391885757446232 ], [ -73.275230407714844, -15.393051147460938 ], [ -73.278541564941293, -15.395074844360352 ], [ -73.282676696777344, -15.39546012878418 ], [ -73.286170959472543, -15.396480560302734 ], [ -73.287208557128849, -15.395936012268066 ], [ -73.290054321289006, -15.393527030944767 ], [ -73.291580200195256, -15.392580986022892 ], [ -73.293312072753849, -15.392088890075627 ], [ -73.296226501464844, -15.39203929901123 ], [ -73.301300048828068, -15.393415451049748 ], [ -73.306663513183537, -15.395255088806096 ], [ -73.308326721191406, -15.396478652953988 ], [ -73.31060791015625, -15.398827552795353 ], [ -73.312713623046875, -15.399863243103027 ], [ -73.316101074218693, -15.400575637817326 ], [ -73.321098327636719, -15.400604248046818 ], [ -73.326385498046818, -15.402662277221623 ], [ -73.328407287597599, -15.402947425842285 ], [ -73.332183837890625, -15.402857780456486 ], [ -73.334274291992188, -15.403559684753304 ], [ -73.336219787597599, -15.404597282409611 ], [ -73.337028503417969, -15.404738426208496 ], [ -73.337821960449219, -15.40458965301508 ], [ -73.338905334472599, -15.403956413269043 ], [ -73.340370178222656, -15.40167331695551 ], [ -73.343177795410099, -15.398295402526799 ], [ -73.345062255859375, -15.396311759948617 ], [ -73.346725463867131, -15.394957542419377 ], [ -73.352127075195312, -15.392784118652287 ], [ -73.353515625, -15.391881942748967 ], [ -73.355583190917912, -15.390081405639592 ], [ -73.358795166015625, -15.388522148132324 ], [ -73.362014770507812, -15.387672424316406 ], [ -73.366165161132756, -15.387393951416016 ], [ -73.36859130859375, -15.387918472290039 ], [ -73.372161865234318, -15.38997840881342 ], [ -73.377166748046875, -15.39157772064209 ], [ -73.382148742675781, -15.393638610839787 ], [ -73.382743835449162, -15.393976211547795 ], [ -73.386093139648381, -15.397210121154728 ], [ -73.389976501464844, -15.398203849792424 ], [ -73.391212463378906, -15.399271011352539 ], [ -73.392021179199162, -15.399276733398381 ], [ -73.392677307128849, -15.398694038391113 ], [ -73.393875122070312, -15.396832466125431 ], [ -73.395637512206974, -15.395316123962402 ], [ -73.401252746581974, -15.392656326293888 ], [ -73.403274536132756, -15.39125919342041 ], [ -73.405303955078125, -15.389041900634766 ], [ -73.407287597656136, -15.38611984252924 ], [ -73.408447265625, -15.384781837463379 ], [ -73.414978027343693, -15.37916183471674 ], [ -73.416915893554631, -15.376067161560002 ], [ -73.417449951171875, -15.376251220703125 ], [ -73.417762756347599, -15.377987861633301 ], [ -73.418182373046875, -15.3785142898559 ], [ -73.421249389648438, -15.380072593688908 ], [ -73.422508239746094, -15.380037307739258 ], [ -73.424530029296818, -15.379056930541992 ], [ -73.427192687988224, -15.378297805786133 ], [ -73.428443908691349, -15.378328323364201 ], [ -73.429786682128849, -15.379022598266545 ], [ -73.430595397949219, -15.37901782989502 ], [ -73.430931091308537, -15.378586769103947 ], [ -73.431297302246037, -15.377144813537598 ], [ -73.431632995605469, -15.374444007873535 ], [ -73.431594848632756, -15.372582435607853 ], [ -73.430686950683594, -15.370749473571721 ], [ -73.428306579589844, -15.367768287658691 ], [ -73.427047729492188, -15.365807533264103 ], [ -73.426864624023438, -15.364631652832031 ], [ -73.427124023437386, -15.36316013336176 ], [ -73.428123474121094, -15.361694335937443 ], [ -73.429779052734318, -15.360495567321777 ], [ -73.432083129882699, -15.359536170959416 ], [ -73.434860229492188, -15.3587131500243 ], [ -73.437980651855412, -15.35624980926508 ], [ -73.440856933593636, -15.355818748474121 ], [ -73.441169738769531, -15.35557746887207 ], [ -73.447097778320312, -15.357831001281625 ], [ -73.448905944824219, -15.359326362609806 ], [ -73.451721191406193, -15.36218357086176 ], [ -73.453018188476562, -15.363133430480957 ], [ -73.456832885742188, -15.364065170288086 ], [ -73.457809448242131, -15.364514350891113 ], [ -73.464431762695312, -15.370462417602539 ], [ -73.467559814453011, -15.372469902038461 ], [ -73.471397399902344, -15.374204635620117 ], [ -73.4779052734375, -15.379311561584473 ], [ -73.479232788085938, -15.379555702209416 ], [ -73.483551025390568, -15.379396438598576 ], [ -73.484962463378906, -15.379855155944824 ], [ -73.488189697265625, -15.381523132324162 ], [ -73.494323730468693, -15.383199691772404 ], [ -73.497917175292969, -15.383423805236816 ], [ -73.503555297851562, -15.383027076721191 ], [ -73.505577087402287, -15.383314132690373 ], [ -73.5130615234375, -15.386425018310547 ], [ -73.516563415527287, -15.387208938598576 ], [ -73.522712707519531, -15.389581680297795 ], [ -73.528526306152344, -15.391518592834473 ], [ -73.529838562011605, -15.391708374023438 ], [ -73.532913208007812, -15.39351844787592 ], [ -73.537750244140511, -15.397290229797306 ], [ -73.544624328613281, -15.401711463928223 ], [ -73.548042297363224, -15.403298377990666 ], [ -73.550056457519418, -15.404664993286076 ], [ -73.554618835449162, -15.406901359557992 ], [ -73.556556701660156, -15.407339096069279 ], [ -73.558769226074219, -15.408165931701603 ], [ -73.55999755859375, -15.40819263458252 ], [ -73.562133789062443, -15.407816886901799 ], [ -73.56610107421875, -15.407698631286621 ], [ -73.567497253417912, -15.407472610473633 ], [ -73.568153381347599, -15.407583236694336 ], [ -73.571311950683537, -15.40701961517334 ], [ -73.574684143066406, -15.406778335571175 ], [ -73.581596374511662, -15.405040740966797 ], [ -73.589241027831974, -15.40485668182373 ], [ -73.592117309570312, -15.404131889343148 ], [ -73.594184875488224, -15.404236793518066 ], [ -73.596885681152344, -15.405527114868107 ], [ -73.600006103515568, -15.407652854919377 ], [ -73.602645874023438, -15.410174369812012 ], [ -73.606193542480412, -15.414116859436035 ], [ -73.610572814941406, -15.418050765991211 ], [ -73.612922668457031, -15.419039726257324 ], [ -73.620857238769531, -15.420463562011605 ], [ -73.623306274414062, -15.420687675476074 ], [ -73.623573303222599, -15.42092227935791 ], [ -73.624488830566406, -15.420522689819336 ], [ -73.626663208007812, -15.42047119140625 ], [ -73.629989624023438, -15.419815063476562 ], [ -73.631881713867074, -15.419792175292912 ], [ -73.634025573730469, -15.420174598693791 ], [ -73.637397766113224, -15.419753074645939 ], [ -73.639015197753849, -15.419246673583984 ], [ -73.641891479492074, -15.417485237121582 ], [ -73.642868041992188, -15.417145729064885 ], [ -73.643814086914062, -15.417252540588379 ], [ -73.644699096679688, -15.417808532714844 ], [ -73.645423889160043, -15.417896270751953 ], [ -73.649925231933594, -15.417288780212346 ], [ -73.652488708496094, -15.417241096496525 ], [ -73.653884887695256, -15.417440414428654 ], [ -73.655479431152344, -15.418680191039982 ], [ -73.657409667968693, -15.421412467956543 ], [ -73.658782958984375, -15.422945976257324 ], [ -73.661216735839787, -15.42498588562006 ], [ -73.663917541503849, -15.426863670349121 ], [ -73.669906616210881, -15.429159164428654 ], [ -73.67236328125, -15.430702209472656 ], [ -73.673919677734318, -15.431118965148926 ], [ -73.676033020019418, -15.432153701782227 ], [ -73.677215576171875, -15.43249320983881 ], [ -73.680442810058594, -15.434590339660588 ], [ -73.685562133789006, -15.436963081359806 ], [ -73.687377929687443, -15.437507629394474 ], [ -73.688133239746037, -15.437473297119141 ], [ -73.688369750976562, -15.437243461608887 ], [ -73.688796997070256, -15.437471389770451 ], [ -73.692054748535043, -15.436587333679199 ], [ -73.693962097167855, -15.435584068298283 ], [ -73.696128845214787, -15.434096336364746 ], [ -73.696990966796818, -15.433134078979492 ], [ -73.698791503906193, -15.430316925048828 ], [ -73.701148986816406, -15.427680015563908 ], [ -73.704711914062443, -15.422153472900334 ], [ -73.707382202148381, -15.419681549072209 ], [ -73.714218139648438, -15.415419578552246 ], [ -73.717445373535156, -15.414018630981388 ], [ -73.719146728515625, -15.413026809692383 ], [ -73.720420837402344, -15.412690162658691 ], [ -73.723190307617188, -15.411288261413461 ], [ -73.724617004394531, -15.410825729370117 ], [ -73.7281494140625, -15.408875465393066 ], [ -73.731689453125, -15.406267166137638 ], [ -73.736984252929688, -15.40168571472168 ], [ -73.739364624023438, -15.40003585815424 ], [ -73.744422912597656, -15.395472526550293 ], [ -73.748390197753849, -15.393100738525391 ], [ -73.752662658691406, -15.389760017394963 ], [ -73.753875732421875, -15.389242172241211 ], [ -73.756240844726449, -15.387746810913086 ], [ -73.758255004882812, -15.386195182800236 ], [ -73.758964538574219, -15.385050773620549 ], [ -73.759773254394531, -15.382959365844727 ], [ -73.762687683105412, -15.377805709838867 ], [ -73.763572692871037, -15.375377655029297 ], [ -73.764839172363281, -15.369057655334416 ], [ -73.765937805175724, -15.365718841552678 ], [ -73.767143249511719, -15.363340377807617 ], [ -73.77016448974598, -15.358537673950195 ], [ -73.771102905273381, -15.35516166687006 ], [ -73.771888732910156, -15.354146003723145 ], [ -73.779060363769531, -15.347199440002441 ], [ -73.779670715331974, -15.346161842346135 ], [ -73.779853820800724, -15.344425201415959 ], [ -73.779342651367188, -15.343141555786076 ], [ -73.776054382324162, -15.339570999145508 ], [ -73.775115966796818, -15.339103698730412 ], [ -73.77532958984375, -15.338736534118652 ], [ -73.776504516601562, -15.338397026061955 ], [ -73.780464172363168, -15.338203430175781 ], [ -73.782768249511719, -15.336796760559082 ], [ -73.785476684570312, -15.336450576782227 ], [ -73.787200927734318, -15.336919784545898 ], [ -73.790199279785156, -15.337080001831055 ], [ -73.79152679443348, -15.337955474853459 ], [ -73.791717529296761, -15.338579177856388 ], [ -73.792434692382812, -15.339461326599064 ], [ -73.792900085449219, -15.339743614196721 ], [ -73.793388366699219, -15.339682579040527 ], [ -73.799064636230469, -15.334830284118652 ], [ -73.801307678222656, -15.329556465148926 ], [ -73.802650451660099, -15.327357292175236 ], [ -73.804939270019474, -15.32515811920166 ], [ -73.80682373046875, -15.324335098266602 ], [ -73.808807373046875, -15.324310302734318 ], [ -73.812332153320312, -15.325340270996094 ], [ -73.816383361816349, -15.325714111328125 ], [ -73.827056884765625, -15.325996398925781 ], [ -73.838478088378906, -15.326967239379883 ], [ -73.847549438476562, -15.326663970947266 ], [ -73.853065490722656, -15.325898170471191 ], [ -73.855438232421875, -15.325898170471191 ], [ -73.858489990234375, -15.325328826904297 ], [ -73.860847473144474, -15.325151443481445 ], [ -73.866241455078125, -15.323495864868107 ], [ -73.866531372070312, -15.323895454406738 ], [ -73.866508483886719, -15.324817657470703 ], [ -73.866836547851506, -15.326065063476562 ], [ -73.868705749511719, -15.329807281494141 ], [ -73.873748779296875, -15.334525108337402 ], [ -73.876502990722656, -15.336320877075195 ], [ -73.877983093261719, -15.336952209472656 ], [ -73.880867004394474, -15.337455749511719 ], [ -73.882560729980469, -15.337408065795898 ], [ -73.883384704589844, -15.337186813354492 ], [ -73.884078979492188, -15.337381362915039 ], [ -73.884010314941349, -15.33767032623291 ], [ -73.880729675292969, -15.340571403503418 ], [ -73.879074096679574, -15.343147277832031 ], [ -73.878028869628906, -15.345999717712402 ], [ -73.877769470214844, -15.350312232971191 ], [ -73.877212524414062, -15.352169990539494 ], [ -73.875404357910156, -15.354962348937931 ], [ -73.874420166015625, -15.357145309448242 ], [ -73.874626159667969, -15.360979080200138 ], [ -73.87451171875, -15.363184928893986 ], [ -73.874931335449219, -15.366648674011174 ], [ -73.874839782714787, -15.370887756347656 ], [ -73.87384033203125, -15.374435424804688 ], [ -73.871795654296818, -15.378691673278809 ], [ -73.871528625488224, -15.37974739074707 ], [ -73.8720703125, -15.381711959838867 ], [ -73.876502990722656, -15.387454986572209 ], [ -73.876937866210881, -15.388768196105957 ], [ -73.876579284667912, -15.389896392822266 ], [ -73.875701904296818, -15.391439437866211 ], [ -73.871894836425724, -15.396001815795785 ], [ -73.870552062988224, -15.398841857910156 ], [ -73.870452880859318, -15.400586128234863 ], [ -73.871536254882699, -15.405662536621037 ], [ -73.873710632324162, -15.411225318908635 ], [ -73.872871398925668, -15.413064002990723 ], [ -73.870697021484375, -15.415240287780762 ], [ -73.870002746581974, -15.41622257232666 ], [ -73.869247436523324, -15.417711257934513 ], [ -73.868949890136662, -15.418965339660531 ], [ -73.868972778320312, -15.421271324157658 ], [ -73.869789123535099, -15.423921585082951 ], [ -73.870323181152344, -15.426627159118596 ], [ -73.871070861816406, -15.428718566894531 ], [ -73.873672485351562, -15.433417320251465 ], [ -73.875350952148324, -15.435764312744141 ], [ -73.876205444335881, -15.437404632568303 ], [ -73.877006530761719, -15.438314437866154 ], [ -73.877510070800724, -15.438567161560059 ], [ -73.880859374999943, -15.43795204162592 ], [ -73.883026123046875, -15.437820434570199 ], [ -73.886627197265625, -15.43799972534174 ], [ -73.888504028320256, -15.438608169555607 ], [ -73.889457702636662, -15.439224243164006 ], [ -73.890769958496037, -15.441239356994629 ], [ -73.89111328125, -15.44257926940918 ], [ -73.891456604003849, -15.443022727966252 ], [ -73.891708374023438, -15.444101333618164 ], [ -73.892631530761719, -15.446123123168945 ], [ -73.894012451171818, -15.448099136352539 ], [ -73.895454406738224, -15.449560165405273 ], [ -73.897308349609375, -15.450510025024414 ], [ -73.903915405273438, -15.452123641967773 ], [ -73.906425476074162, -15.453202247619515 ], [ -73.908622741699162, -15.453766822814885 ], [ -73.91278076171875, -15.456415176391602 ], [ -73.920608520507812, -15.464173316955566 ], [ -73.925537109375, -15.470606803893929 ], [ -73.929267883300781, -15.473102569580021 ], [ -73.931686401367131, -15.47651290893549 ], [ -73.93536376953125, -15.480462074279728 ], [ -73.93707275390625, -15.481925964355469 ], [ -73.9404296875, -15.483995437622013 ], [ -73.944664001464787, -15.488300323486328 ], [ -73.945381164550781, -15.489702224731445 ], [ -73.945869445800781, -15.492608070373535 ], [ -73.946853637695256, -15.495784759521428 ], [ -73.950057983398438, -15.500454902648926 ], [ -73.950149536132812, -15.501097679138127 ], [ -73.950500488281136, -15.501532554626465 ], [ -73.950393676757756, -15.503711700439396 ], [ -73.953063964843693, -15.506535530090332 ], [ -73.954078674316406, -15.508094787597599 ], [ -73.95489501953125, -15.509943008422795 ], [ -73.95489501953125, -15.511225700378361 ], [ -73.954574584960881, -15.511958122253361 ], [ -73.953201293945312, -15.513197898864689 ], [ -73.953216552734375, -15.513660430908203 ], [ -73.954460144042969, -15.514668464660645 ], [ -73.955528259277287, -15.515957832336426 ], [ -73.959739685058537, -15.52008056640625 ], [ -73.960350036621094, -15.521015167236328 ], [ -73.96089935302723, -15.522689819335881 ], [ -73.961349487304631, -15.523368835449105 ], [ -73.962745666503906, -15.524506568908635 ], [ -73.964584350585881, -15.525455474853459 ], [ -73.96588134765625, -15.526672363281193 ], [ -73.967239379882812, -15.527337074279785 ], [ -73.968132019042912, -15.528156280517578 ], [ -73.969284057617131, -15.529960632324219 ], [ -73.969711303710938, -15.533035278320312 ], [ -73.970542907714844, -15.533491134643498 ], [ -73.972381591796875, -15.533714294433594 ], [ -73.973266601562443, -15.534037590026855 ], [ -73.976356506347656, -15.536175727844238 ], [ -73.97701263427723, -15.536848068237248 ], [ -73.978080749511719, -15.537178993225098 ], [ -73.980690002441406, -15.539450645446721 ], [ -73.981407165527344, -15.539696693420296 ], [ -73.982864379882812, -15.540716171264648 ], [ -73.985664367675724, -15.541044235229435 ], [ -73.988204956054688, -15.540353775024357 ], [ -73.989402770996037, -15.540575027465763 ], [ -73.989776611328068, -15.541108131408635 ], [ -73.98992919921875, -15.542384147643986 ], [ -73.9910888671875, -15.545263290405273 ], [ -73.994537353515568, -15.549295425415039 ], [ -73.99532318115223, -15.551160812377873 ], [ -73.997138977050668, -15.553175926208439 ], [ -73.99755859375, -15.553395271301213 ], [ -73.999801635742131, -15.553440093994141 ], [ -74.000808715820312, -15.554150581359863 ], [ -74.001937866210938, -15.55562782287592 ], [ -74.001945495605469, -15.555999755859375 ], [ -74.002716064453125, -15.556680679321232 ], [ -74.003578186035156, -15.557055473327637 ], [ -74.004241943359375, -15.557050704955998 ], [ -74.00689697265625, -15.558461189269963 ], [ -74.009490966796875, -15.558962821960449 ], [ -74.010040283203125, -15.559453010559082 ], [ -74.011062622070199, -15.561745643615723 ], [ -74.011283874511719, -15.563111305236816 ], [ -74.00972747802723, -15.565274238586426 ], [ -74.00909423828125, -15.567094802856332 ], [ -74.010726928710938, -15.56901836395258 ], [ -74.011344909667855, -15.569285392761174 ], [ -74.012260437011719, -15.570092201232853 ], [ -74.01287841796875, -15.571325302124023 ], [ -74.013816833496037, -15.575831413269043 ], [ -74.013771057128906, -15.578408241271916 ], [ -74.014320373535156, -15.581212043762207 ], [ -74.014198303222599, -15.58193397521967 ], [ -74.015457153320312, -15.584716796875 ], [ -74.016029357910156, -15.590203285217285 ], [ -74.016883850097656, -15.591075897216683 ], [ -74.018653869628849, -15.591346740722599 ], [ -74.019149780273381, -15.591791152953988 ], [ -74.018791198730469, -15.593020439147892 ], [ -74.018569946289006, -15.596987724304199 ], [ -74.018661499023381, -15.598642349243107 ], [ -74.019020080566406, -15.599501609802246 ], [ -74.019721984863224, -15.5999755859375 ], [ -74.022010803222599, -15.600173950195312 ], [ -74.022773742675724, -15.60044956207264 ], [ -74.023437499999943, -15.601265907287598 ], [ -74.024375915527287, -15.603079795837402 ], [ -74.025703430175781, -15.604394912719727 ], [ -74.027603149414062, -15.605777740478516 ], [ -74.029708862304688, -15.606951713561955 ], [ -74.031066894531193, -15.608096122741642 ], [ -74.033676147460938, -15.609563827514648 ], [ -74.03570556640625, -15.611082077026367 ], [ -74.038162231445312, -15.612044334411621 ], [ -74.040550231933594, -15.612659454345703 ], [ -74.043579101562386, -15.614373207092171 ], [ -74.045272827148381, -15.614966392517033 ], [ -74.047073364257756, -15.616004943847656 ], [ -74.048660278320312, -15.617584228515568 ], [ -74.04940032958973, -15.620506286621094 ], [ -74.050148010253849, -15.621803283691406 ], [ -74.051155090332031, -15.622646331786996 ], [ -74.054100036621094, -15.623656272888127 ], [ -74.057533264160156, -15.626254081726074 ], [ -74.061233520507812, -15.628323554992676 ], [ -74.063941955566406, -15.629149436950684 ], [ -74.065994262695199, -15.629520416259766 ], [ -74.069129943847599, -15.628790855407658 ], [ -74.071357727050781, -15.627580642700195 ], [ -74.074325561523438, -15.624520301818848 ], [ -74.077362060546875, -15.622669219970703 ], [ -74.079391479492188, -15.621891975402775 ], [ -74.082710266113281, -15.620141983032227 ], [ -74.084068298339844, -15.619107246398869 ], [ -74.084220886230469, -15.618694305419922 ], [ -74.084083557128849, -15.618023872375488 ], [ -74.081336975097599, -15.615906715393066 ], [ -74.080894470214844, -15.615219116210938 ], [ -74.080642700195256, -15.614130973815804 ], [ -74.080795288085938, -15.611014366149902 ], [ -74.081611633300724, -15.607889175414982 ], [ -74.082534790039062, -15.60587024688715 ], [ -74.082687377929688, -15.604132652282715 ], [ -74.083305358886719, -15.602492332458439 ], [ -74.083084106445312, -15.601025581359863 ], [ -74.082382202148381, -15.600055694580078 ], [ -74.082397460937386, -15.59885215759266 ], [ -74.082878112792969, -15.5972642898559 ], [ -74.083877563476562, -15.595280647277775 ], [ -74.084465026855412, -15.59202766418457 ], [ -74.082000732421818, -15.586666107177678 ], [ -74.081649780273438, -15.585516929626408 ], [ -74.081550598144531, -15.583950996398812 ], [ -74.080978393554688, -15.582693099975586 ], [ -74.079689025878849, -15.581168174743652 ], [ -74.078727722167969, -15.580559730529785 ], [ -74.077980041503849, -15.579264640808105 ], [ -74.078086853027287, -15.576055526733285 ], [ -74.077552795410156, -15.573719978332463 ], [ -74.077438354492074, -15.57215690612793 ], [ -74.076881408691406, -15.570301055908203 ], [ -74.076667785644474, -15.566540718078613 ], [ -74.07354736328125, -15.56345272064209 ], [ -74.073554992675781, -15.561798095703011 ], [ -74.074150085449219, -15.558917045593148 ], [ -74.075950622558594, -15.554479598998967 ], [ -74.075698852539006, -15.551360130310002 ], [ -74.075347900390625, -15.550696372985783 ], [ -74.072303771972656, -15.547284126281738 ], [ -74.070747375488224, -15.544547080993652 ], [ -74.067489624023381, -15.541235923767033 ], [ -74.06689453125, -15.540291786193848 ], [ -74.066619873046875, -15.539214134216309 ], [ -74.066879272460938, -15.53750038146967 ], [ -74.069648742675781, -15.535278320312443 ], [ -74.070503234863281, -15.534304618835392 ], [ -74.070915222167912, -15.532797813415527 ], [ -74.071182250976562, -15.529580116271916 ], [ -74.073318481445256, -15.526551246643066 ], [ -74.073753356933594, -15.525531768798771 ], [ -74.075431823730355, -15.522973060607853 ], [ -74.076377868652287, -15.519224166870117 ], [ -74.077690124511662, -15.516484260559082 ], [ -74.077888488769474, -15.514839172363281 ], [ -74.077697753906193, -15.513652801513672 ], [ -74.076126098632812, -15.511576652526799 ], [ -74.074295043945312, -15.510421752929688 ], [ -74.073791503906193, -15.509659767150765 ], [ -74.073692321777287, -15.507804870605412 ], [ -74.074554443359318, -15.505792617797852 ], [ -74.074386596679574, -15.502999305725098 ], [ -74.072929382324162, -15.501564979553223 ], [ -74.071449279785156, -15.500844955444336 ], [ -74.068679809570312, -15.501076698303109 ], [ -74.066490173339844, -15.500723838806096 ], [ -74.064552307128849, -15.500842094421387 ], [ -74.061447143554688, -15.500124931335449 ], [ -74.060241699218693, -15.499449729919434 ], [ -74.056663513183594, -15.496264457702637 ], [ -74.051269531249943, -15.493203163146973 ], [ -74.049629211425781, -15.492877006530762 ], [ -74.045166015624943, -15.492741584777775 ], [ -74.043853759765568, -15.492382049560547 ], [ -74.043075561523381, -15.49161243438715 ], [ -74.042739868164062, -15.490851402282715 ], [ -74.042137145996037, -15.487124443054199 ], [ -74.039733886718693, -15.484348297119084 ], [ -74.039230346679688, -15.483224868774414 ], [ -74.038963317871094, -15.481893539428654 ], [ -74.038948059082031, -15.480673789978027 ], [ -74.039237976074219, -15.479510307312012 ], [ -74.041389465331918, -15.473679542541447 ], [ -74.042419433593693, -15.46849536895752 ], [ -74.042594909667912, -15.466072082519531 ], [ -74.042350769042969, -15.464048385620117 ], [ -74.042015075683594, -15.462879180908146 ], [ -74.038124084472599, -15.457158088684082 ], [ -74.037635803222599, -15.455746650695744 ], [ -74.037628173828125, -15.454806327819824 ], [ -74.038230895996037, -15.453904151916504 ], [ -74.040542602539062, -15.451764106750431 ], [ -74.041740417480412, -15.450132369995117 ], [ -74.044624328613224, -15.445823669433537 ], [ -74.046546936035156, -15.442279815673771 ], [ -74.046997070312443, -15.440752983093148 ], [ -74.047576904296818, -15.436858177185059 ], [ -74.050285339355469, -15.426727294921818 ], [ -74.052703857421818, -15.421804428100586 ], [ -74.05316162109375, -15.419149398803654 ], [ -74.0537109375, -15.417504310607853 ], [ -74.057289123535099, -15.412314414977971 ], [ -74.058815002441349, -15.408161163329964 ], [ -74.060058593749943, -15.407281875610352 ], [ -74.062026977539062, -15.406321525573674 ], [ -74.062835693359318, -15.404925346374512 ], [ -74.064735412597599, -15.402915000915527 ], [ -74.065521240234375, -15.402457237243652 ], [ -74.067466735839844, -15.402738571166935 ], [ -74.070060729980412, -15.403779029846135 ], [ -74.071945190429688, -15.403887748718262 ], [ -74.072677612304688, -15.402705192565804 ], [ -74.072929382324162, -15.400979995727539 ], [ -74.073822021484375, -15.399943351745605 ], [ -74.075294494628906, -15.398928642272949 ], [ -74.078674316406136, -15.39871883392334 ], [ -74.080116271972656, -15.398098945617676 ], [ -74.083152770996037, -15.394957542419377 ], [ -74.085983276367131, -15.391298294067326 ], [ -74.086997985839844, -15.390598297119084 ], [ -74.088104248046818, -15.390447616577092 ], [ -74.091918945312443, -15.392045974731445 ], [ -74.092872619628849, -15.392230033874512 ], [ -74.09576416015625, -15.392024993896428 ], [ -74.097084045410043, -15.39277267456049 ], [ -74.104095458984375, -15.399145126342717 ], [ -74.108070373535156, -15.401622772216797 ], [ -74.109924316406193, -15.403238296508732 ], [ -74.113616943359375, -15.407628059387207 ], [ -74.114814758300724, -15.411286354064941 ], [ -74.115173339843693, -15.411855697631836 ], [ -74.116020202636719, -15.411912918090763 ], [ -74.119667053222599, -15.411293029785099 ], [ -74.123680114746037, -15.411411285400391 ], [ -74.128555297851449, -15.412468910217228 ], [ -74.130249023437443, -15.413133621215763 ], [ -74.131660461425781, -15.413972854614258 ], [ -74.133255004882812, -15.415850639343205 ], [ -74.134963989257812, -15.418778419494629 ], [ -74.135993957519418, -15.421709060668945 ], [ -74.136909484863224, -15.425517082214355 ], [ -74.137580871581974, -15.426381111144963 ], [ -74.139053344726562, -15.426774978637638 ], [ -74.142127990722656, -15.425991058349553 ], [ -74.146987915039062, -15.426028251647949 ], [ -74.148994445800781, -15.426533699035645 ], [ -74.149833679199219, -15.42702579498291 ], [ -74.151863098144531, -15.429019927978459 ], [ -74.152381896972599, -15.430279731750431 ], [ -74.153625488281193, -15.435807228088322 ], [ -74.154098510742131, -15.439009666442814 ], [ -74.154327392578125, -15.442770004272461 ], [ -74.154922485351562, -15.445548057556152 ], [ -74.154800415039062, -15.448232650756779 ], [ -74.155036926269474, -15.449001312255859 ], [ -74.155166625976562, -15.451966285705566 ], [ -74.154670715331974, -15.456520080566406 ], [ -74.1549072265625, -15.458112716674805 ], [ -74.154815673828125, -15.462959289550781 ], [ -74.155448913574105, -15.464009284973145 ], [ -74.157943725585938, -15.466388702392578 ], [ -74.158699035644531, -15.467485427856445 ], [ -74.159545898437386, -15.470073699951172 ], [ -74.160469055175724, -15.474525451660099 ], [ -74.161766052246094, -15.477150917053223 ], [ -74.162727355957031, -15.480399131774846 ], [ -74.163528442382756, -15.481650352477971 ], [ -74.164932250976562, -15.483011245727539 ], [ -74.166503906249943, -15.483769416809082 ], [ -74.17523193359375, -15.484551429748478 ], [ -74.177116394042969, -15.485036849975586 ], [ -74.178993225097599, -15.48587512969965 ], [ -74.181632995605469, -15.485740661621094 ], [ -74.183113098144531, -15.485393524169865 ], [ -74.185050964355469, -15.485545158386174 ], [ -74.185768127441349, -15.48597335815424 ], [ -74.187545776367188, -15.488040924072266 ], [ -74.189346313476562, -15.489510536193791 ], [ -74.191986083984375, -15.490714073181096 ], [ -74.194206237792969, -15.490822792053223 ], [ -74.194519042968693, -15.491274833679142 ], [ -74.196258544921818, -15.49117374420166 ], [ -74.199897766113281, -15.490299224853516 ], [ -74.209312438964787, -15.486645698547306 ], [ -74.213996887206974, -15.485540390014592 ], [ -74.222610473632812, -15.485374450683537 ], [ -74.224624633789062, -15.484890937805176 ], [ -74.227264404296875, -15.484774589538574 ], [ -74.230499267578011, -15.485527038574219 ], [ -74.231559753417969, -15.486183166503906 ], [ -74.232284545898381, -15.486988067626953 ], [ -74.232978820800668, -15.487127304077148 ], [ -74.240821838378906, -15.482551574706918 ], [ -74.241363525390568, -15.482508659362736 ], [ -74.241836547851506, -15.481596946716309 ], [ -74.243522644042969, -15.480827331542912 ], [ -74.245262145996037, -15.480353355407715 ], [ -74.250625610351562, -15.480986595153752 ], [ -74.254234313964787, -15.480727195739746 ], [ -74.256393432617188, -15.480281829833984 ], [ -74.258834838867188, -15.478987693786564 ], [ -74.263153076171875, -15.474807739257756 ], [ -74.264892578124943, -15.473955154418945 ], [ -74.266426086425724, -15.473941802978459 ], [ -74.267791748046875, -15.474261283874512 ], [ -74.272468566894531, -15.47716236114502 ], [ -74.273773193359318, -15.477626800537109 ], [ -74.275772094726506, -15.477860450744629 ], [ -74.280632019042912, -15.477759361266976 ], [ -74.288467407226506, -15.478796005249023 ], [ -74.291305541992188, -15.478144645690918 ], [ -74.292823791503906, -15.478069305419808 ], [ -74.297821044921818, -15.478231430053711 ], [ -74.299156188964787, -15.478577613830566 ], [ -74.300430297851562, -15.478589057922363 ], [ -74.301330566406193, -15.47832012176508 ], [ -74.302406311035043, -15.477675437927246 ], [ -74.304359436035156, -15.47596263885498 ], [ -74.305824279785099, -15.47434139251709 ], [ -74.309295654296875, -15.469443321227971 ], [ -74.311012268066406, -15.465914726257267 ], [ -74.311645507812443, -15.464125633239746 ], [ -74.311752319335824, -15.463184356689396 ], [ -74.311378479003906, -15.461621284484863 ], [ -74.309623718261662, -15.459699630737248 ], [ -74.308639526367188, -15.458963394165039 ], [ -74.306365966796875, -15.457942008972168 ], [ -74.305160522460881, -15.456818580627385 ], [ -74.304504394531136, -15.455488204955998 ], [ -74.304527282714844, -15.454132080078011 ], [ -74.304023742675724, -15.453181266784668 ], [ -74.303985595703125, -15.452223777770996 ], [ -74.304512023925781, -15.45129203796381 ], [ -74.305282592773438, -15.45050144195551 ], [ -74.309043884277344, -15.448486328124943 ], [ -74.312278747558594, -15.445542335510197 ], [ -74.31695556640625, -15.442392349243164 ], [ -74.319679260253906, -15.438321113586312 ], [ -74.320137023925724, -15.436948776245117 ], [ -74.320236206054631, -15.435042381286621 ], [ -74.321052551269531, -15.433037757873535 ], [ -74.321166992187443, -15.42981052398676 ], [ -74.321762084960881, -15.427181243896484 ], [ -74.324790954589787, -15.421064376830998 ], [ -74.325538635253906, -15.419039726257324 ], [ -74.325492858886719, -15.418378829955998 ], [ -74.324256896972656, -15.416548728942871 ], [ -74.324478149414062, -15.412815093994084 ], [ -74.325088500976506, -15.410025596618596 ], [ -74.326629638671761, -15.406276702880859 ], [ -74.328407287597599, -15.398100852966252 ], [ -74.329635620117188, -15.394659996032658 ], [ -74.329833984375, -15.393340110778752 ], [ -74.329467773437443, -15.391757965087777 ], [ -74.328353881835938, -15.390199661254883 ], [ -74.326080322265625, -15.385429382324162 ], [ -74.320793151855412, -15.377359390258789 ], [ -74.319076538085881, -15.373998641967773 ], [ -74.318252563476562, -15.371593475341797 ], [ -74.317489624023438, -15.365839958190918 ], [ -74.315971374511719, -15.364460945129395 ], [ -74.310356140136719, -15.361830711364746 ], [ -74.308982849121037, -15.360662460327148 ], [ -74.308837890625, -15.359910011291447 ], [ -74.309547424316349, -15.359088897705078 ], [ -74.31121826171875, -15.358272552490178 ], [ -74.315681457519531, -15.357824325561467 ], [ -74.317115783691406, -15.35749626159668 ], [ -74.318008422851562, -15.35692024230957 ], [ -74.319770812988281, -15.355126380920353 ], [ -74.320533752441406, -15.354802131652832 ], [ -74.323577880859261, -15.354513168334904 ], [ -74.328269958496094, -15.354843139648381 ], [ -74.3302001953125, -15.354597091674748 ], [ -74.332099914550781, -15.35379695892334 ], [ -74.333885192871094, -15.352301597595215 ], [ -74.335418701171875, -15.350066184997559 ], [ -74.337333679199219, -15.347937583923283 ], [ -74.340568542480469, -15.345632553100529 ], [ -74.343124389648381, -15.343153953552246 ], [ -74.344024658203125, -15.341509819030762 ], [ -74.344810485839787, -15.337672233581543 ], [ -74.345741271972656, -15.336480140686035 ], [ -74.346786499023438, -15.335778236389103 ], [ -74.347816467285156, -15.335771560668945 ], [ -74.349342346191406, -15.336174964904728 ], [ -74.351280212402344, -15.336189270019531 ], [ -74.353019714355412, -15.337541580200082 ], [ -74.354026794433594, -15.338971138000488 ], [ -74.355232238769474, -15.339264869689941 ], [ -74.355522155761662, -15.338777542114201 ], [ -74.355384826660156, -15.337430953979435 ], [ -74.35565185546875, -15.336681365966797 ], [ -74.357612609863224, -15.334589004516488 ], [ -74.359695434570256, -15.332805633544865 ], [ -74.361892700195256, -15.332631111144963 ], [ -74.366752624511662, -15.333954811096135 ], [ -74.370704650878906, -15.332085609435921 ], [ -74.375442504882756, -15.332009315490723 ], [ -74.377037048339844, -15.331607818603516 ], [ -74.37831878662098, -15.330607414245492 ], [ -74.379684448242188, -15.329046249389592 ], [ -74.382316589355412, -15.324597358703613 ], [ -74.383628845214787, -15.322882652282601 ], [ -74.38616943359375, -15.320194244384766 ], [ -74.389289855957031, -15.317337989807129 ], [ -74.390609741210881, -15.316918373107796 ], [ -74.395057678222656, -15.316841125488281 ], [ -74.396865844726562, -15.316609382629338 ], [ -74.397911071777344, -15.315790176391545 ], [ -74.400367736816406, -15.313192367553654 ], [ -74.401710510253906, -15.312236785888672 ], [ -74.404678344726562, -15.310780525207463 ], [ -74.409721374511719, -15.309355735778809 ], [ -74.410102844238281, -15.308771133422852 ], [ -74.410140991210881, -15.3082275390625 ], [ -74.409286499023381, -15.306997299194279 ], [ -74.409103393554631, -15.305647850036621 ], [ -74.410331726074162, -15.304262161254769 ], [ -74.413101196289006, -15.301734924316293 ], [ -74.414413452148438, -15.300475120544434 ], [ -74.415122985839787, -15.29946327209467 ], [ -74.415321350097543, -15.29730224609375 ], [ -74.414871215820312, -15.295232772827148 ], [ -74.412094116210938, -15.292194366454964 ], [ -74.405632019042969, -15.285885810852051 ], [ -74.400428771972599, -15.279924392700138 ], [ -74.398231506347599, -15.277866363525334 ], [ -74.397453308105412, -15.275430679321232 ], [ -74.397445678710938, -15.273270606994629 ], [ -74.398277282714844, -15.270840644836369 ], [ -74.399765014648381, -15.268893241882267 ], [ -74.399993896484375, -15.26741981506342 ], [ -74.39971923828125, -15.265684127807617 ], [ -74.399078369140568, -15.264651298522949 ], [ -74.396423339843693, -15.26166820526123 ], [ -74.391632080078125, -15.257588386535588 ], [ -74.389274597167912, -15.254074096679688 ], [ -74.387901306152344, -15.251593589782715 ], [ -74.388122558593693, -15.249984741210938 ], [ -74.389602661132812, -15.248043060302621 ], [ -74.389793395996094, -15.246463775634766 ], [ -74.390098571777344, -15.24575042724598 ], [ -74.391105651855469, -15.245012283325138 ], [ -74.392288208007812, -15.244617462158203 ], [ -74.393737792968693, -15.243354797363224 ], [ -74.394844055175781, -15.241803169250488 ], [ -74.395416259765625, -15.240150451660156 ], [ -74.395164489746037, -15.238801002502385 ], [ -74.3941650390625, -15.237668037414437 ], [ -74.393997192382812, -15.237054824829102 ], [ -74.394439697265625, -15.232335090637207 ], [ -74.394050598144474, -15.229930877685547 ], [ -74.393356323242131, -15.228327751159668 ], [ -74.391342163085938, -15.226099014282227 ], [ -74.391395568847656, -15.225141525268555 ], [ -74.392204284667969, -15.22421932220459 ], [ -74.394416809081974, -15.223478317260685 ], [ -74.396995544433537, -15.221892356872559 ], [ -74.399620056152344, -15.221012115478516 ], [ -74.40008544921875, -15.220688819885197 ], [ -74.400329589843693, -15.220191955566293 ], [ -74.400016784667969, -15.219034194946289 ], [ -74.399452209472656, -15.21806812286377 ], [ -74.393013000488281, -15.211756706237736 ], [ -74.390739440917969, -15.208522796630803 ], [ -74.389923095703068, -15.206956863403263 ], [ -74.389671325683594, -15.205220222473088 ], [ -74.389945983886662, -15.203486442565918 ], [ -74.391479492187386, -15.200786590576172 ], [ -74.392799377441349, -15.197245597839299 ], [ -74.394058227539062, -15.195502281188965 ], [ -74.396217346191349, -15.19053840637207 ], [ -74.397682189941406, -15.186338424682617 ], [ -74.398468017578125, -15.182234764099121 ], [ -74.398956298828125, -15.181097984313965 ], [ -74.399604797363281, -15.180250167846623 ], [ -74.401573181152287, -15.178338050842228 ], [ -74.403785705566406, -15.176716804504338 ], [ -74.406730651855412, -15.175225257873535 ], [ -74.412849426269531, -15.172674179077148 ], [ -74.415382385253849, -15.170581817626896 ], [ -74.418350219726506, -15.168853759765568 ], [ -74.423011779785099, -15.16766166687006 ], [ -74.427116394042912, -15.16828727722168 ], [ -74.436271667480412, -15.166810035705453 ], [ -74.438774108886662, -15.166808128356934 ], [ -74.441261291503793, -15.167156219482365 ], [ -74.442672729492131, -15.167631149291992 ], [ -74.444526672363281, -15.168864250182992 ], [ -74.446372985839844, -15.170507431030273 ], [ -74.448944091796875, -15.173333168029785 ], [ -74.451904296875, -15.175771713256779 ], [ -74.452957153320256, -15.176109313964787 ], [ -74.4549560546875, -15.176068305969238 ], [ -74.457923889160099, -15.174666404724064 ], [ -74.460289001464844, -15.173869132995605 ], [ -74.464988708496037, -15.173823356628304 ], [ -74.466773986816406, -15.173520088195801 ], [ -74.470886230468693, -15.170801162719727 ], [ -74.474250793456974, -15.168917655944824 ], [ -74.476303100585938, -15.168121337890511 ], [ -74.482315063476562, -15.166424751281681 ], [ -74.4892578125, -15.162769317626896 ], [ -74.490997314453125, -15.162256240844613 ], [ -74.492225646972656, -15.162144660949707 ], [ -74.498878479003906, -15.161941528320312 ], [ -74.500808715820312, -15.161005020141545 ], [ -74.501510620117131, -15.16040134429926 ], [ -74.50177001953125, -15.159831047058105 ], [ -74.50347900390625, -15.161085128784123 ], [ -74.504631042480469, -15.15792083740223 ], [ -74.507400512695312, -15.153406143188477 ], [ -74.509628295898381, -15.151042938232365 ], [ -74.512825012207031, -15.148653984069824 ], [ -74.517402648925781, -15.147579193115234 ], [ -74.522102355956974, -15.147328376769963 ], [ -74.528373718261719, -15.14626407623291 ], [ -74.529632568359318, -15.146295547485295 ], [ -74.531318664550781, -15.146903991699219 ], [ -74.532562255859375, -15.146986007690373 ], [ -74.533821105957031, -15.146430015563908 ], [ -74.535697937011719, -15.144562721252385 ], [ -74.536590576171875, -15.144002914428711 ], [ -74.538825988769531, -15.143411636352539 ], [ -74.543403625488281, -15.14276123046875 ], [ -74.549690246581974, -15.140830039978027 ], [ -74.553329467773438, -15.140095710754338 ], [ -74.560554504394474, -15.140308380126953 ], [ -74.566604614257812, -15.139613151550293 ], [ -74.571296691894531, -15.140130043029785 ], [ -74.573463439941406, -15.141037940978947 ], [ -74.576423645019531, -15.143855094909611 ], [ -74.57820892333973, -15.144201278686467 ], [ -74.5794677734375, -15.144794464111328 ], [ -74.582939147949219, -15.148079872131348 ], [ -74.58441162109375, -15.148824691772461 ], [ -74.58673095703125, -15.148457527160645 ], [ -74.591506958007812, -15.146651268005371 ], [ -74.594161987304688, -15.146871566772404 ], [ -74.601127624511719, -15.148648262023926 ], [ -74.603073120117131, -15.148578643798828 ], [ -74.604988098144474, -15.148248672485352 ], [ -74.605758666992131, -15.147913932800293 ], [ -74.606857299804688, -15.146895408630314 ], [ -74.608627319335881, -15.143678665161133 ], [ -74.6103515625, -15.14177417755127 ], [ -74.617393493652287, -15.135287284851017 ], [ -74.621826171875, -15.132076263427621 ], [ -74.623664855956974, -15.130061149597168 ], [ -74.626167297363224, -15.126503944396973 ], [ -74.627273559570312, -15.125456809997502 ], [ -74.628196716308594, -15.12491512298584 ], [ -74.629325866699105, -15.125026702880859 ], [ -74.629966735839787, -15.125307083129883 ], [ -74.636444091796818, -15.130615234374943 ], [ -74.63934326171875, -15.132681846618596 ], [ -74.64501953125, -15.135213851928711 ], [ -74.647994995117131, -15.137251853942871 ], [ -74.6505126953125, -15.137988090515137 ], [ -74.652587890624943, -15.13813591003418 ], [ -74.657722473144474, -15.137916564941406 ], [ -74.66015625, -15.137432098388672 ], [ -74.664665222167969, -15.135622024536076 ], [ -74.666503906249943, -15.135103225708008 ], [ -74.674942016601562, -15.134608268737736 ], [ -74.676254272460938, -15.133831024169922 ], [ -74.677902221679688, -15.132187843322697 ], [ -74.679000854492131, -15.131937026977539 ], [ -74.680007934570312, -15.132317543029785 ], [ -74.6815185546875, -15.133289337158146 ], [ -74.685630798339844, -15.13673019409174 ], [ -74.687431335449219, -15.137762069702148 ], [ -74.689529418945312, -15.138499259948674 ], [ -74.691276550292969, -15.138248443603459 ], [ -74.693878173828068, -15.136912345886117 ], [ -74.695182800292969, -15.136490821838379 ], [ -74.699043273925781, -15.136051177978459 ], [ -74.699882507324162, -15.136096000671387 ], [ -74.700920104980412, -15.136469841003418 ], [ -74.7030029296875, -15.138443946838379 ], [ -74.704696655273438, -15.139042854309025 ], [ -74.706665039062443, -15.138710975646973 ], [ -74.710403442382812, -15.136972427368107 ], [ -74.711105346679688, -15.137054443359375 ], [ -74.712394714355469, -15.13807487487793 ], [ -74.713356018066406, -15.138175010681152 ], [ -74.714241027832031, -15.137824058532715 ], [ -74.715553283691406, -15.136822700500488 ], [ -74.717964172363281, -15.13421440124506 ], [ -74.718399047851449, -15.133083343505859 ], [ -74.719764709472656, -15.126333236694336 ], [ -74.7203369140625, -15.125112533569336 ], [ -74.721832275390511, -15.123702049255371 ], [ -74.723007202148438, -15.122963905334473 ], [ -74.725189208984375, -15.122124671936035 ], [ -74.729225158691406, -15.121109008788949 ], [ -74.730751037597656, -15.121127128601074 ], [ -74.731491088867188, -15.121492385864258 ], [ -74.733970642089844, -15.121720314025879 ], [ -74.736465454101562, -15.122688293457031 ], [ -74.738662719726562, -15.122360229492188 ], [ -74.746200561523438, -15.115433692932129 ], [ -74.747856140136662, -15.114448547363281 ], [ -74.751617431640625, -15.112726211547795 ], [ -74.753608703613281, -15.111283302307072 ], [ -74.756164550781136, -15.107939720153809 ], [ -74.759498596191349, -15.10434627532959 ], [ -74.761764526367131, -15.100956916809082 ], [ -74.76275634765625, -15.09887790679926 ], [ -74.759635925292969, -15.09423828125 ], [ -74.756828308105412, -15.092028617858887 ], [ -74.755371093749943, -15.091546058654728 ], [ -74.752349853515511, -15.091211318969613 ], [ -74.74910736083973, -15.090473175048771 ], [ -74.737861633300781, -15.085062026977539 ], [ -74.736076354980469, -15.084827423095703 ], [ -74.731781005859375, -15.08533763885498 ], [ -74.729866027832031, -15.085144042968693 ], [ -74.727989196777344, -15.084102630615121 ], [ -74.723686218261719, -15.081050872802621 ], [ -74.716812133789062, -15.078167915344238 ], [ -74.710647583007756, -15.075077056884766 ], [ -74.708000183105412, -15.073345184326172 ], [ -74.704116821289062, -15.070285797119141 ], [ -74.702354431152287, -15.068394660949593 ], [ -74.699638366699219, -15.064004898071232 ], [ -74.698524475097656, -15.062989234924316 ], [ -74.69722747802723, -15.062202453613281 ], [ -74.694526672363224, -15.061179161071721 ], [ -74.693275451660156, -15.061249732971191 ], [ -74.690986633300781, -15.061786651611214 ], [ -74.687797546386719, -15.061503410339355 ], [ -74.684402465820312, -15.060321807861271 ], [ -74.680160522460938, -15.058319091796818 ], [ -74.677238464355469, -15.058341026306152 ], [ -74.675071716308537, -15.057875633239746 ], [ -74.672042846679631, -15.056535720825195 ], [ -74.669364929199162, -15.054849624633732 ], [ -74.667846679687443, -15.051836967468205 ], [ -74.665565490722543, -15.04913139343256 ], [ -74.665359497070256, -15.048063278198242 ], [ -74.664215087890568, -15.045927047729492 ], [ -74.663017272949219, -15.042209625244084 ], [ -74.663642883300724, -15.038082122802734 ], [ -74.665466308593693, -15.034302711486816 ], [ -74.666236877441406, -15.031448364257756 ], [ -74.666358947753906, -15.025444030761662 ], [ -74.666000366210938, -15.022487640380803 ], [ -74.666236877441406, -15.020616531372013 ], [ -74.666152954101562, -15.015373229980469 ], [ -74.6650390625, -15.009276390075627 ], [ -74.664802551269418, -15.005390167236271 ], [ -74.665336608886719, -15.000453948974553 ], [ -74.666046142578125, -14.99925327301014 ], [ -74.666412353515568, -14.998094558715763 ], [ -74.665794372558594, -14.997543334960938 ], [ -74.66168212890625, -14.995555877685547 ], [ -74.660011291503849, -14.994377136230469 ], [ -74.65602874755848, -14.990421295165959 ], [ -74.655563354492188, -14.989434242248535 ], [ -74.65484619140625, -14.988622665405273 ], [ -74.651176452636719, -14.985541343688908 ], [ -74.6505126953125, -14.984203338623047 ], [ -74.648880004882812, -14.98238468170166 ], [ -74.647735595703125, -14.977553367614632 ], [ -74.647018432617188, -14.97625827789301 ], [ -74.647315979003849, -14.975797653198185 ], [ -74.649040222167912, -14.975269317626896 ], [ -74.652175903320312, -14.975310325622559 ], [ -74.654609680175781, -14.974373817443848 ], [ -74.655319213867188, -14.974346160888672 ], [ -74.6583251953125, -14.971855163574105 ], [ -74.659431457519474, -14.971676826476994 ], [ -74.661209106445312, -14.971896171569767 ], [ -74.662727355957031, -14.971256256103459 ], [ -74.662956237792912, -14.970343589782715 ], [ -74.661857604980469, -14.968452453613281 ], [ -74.661544799804631, -14.967121124267578 ], [ -74.662429809570312, -14.965477943420353 ], [ -74.664939880371094, -14.962570190429631 ], [ -74.66552734375, -14.961515426635742 ], [ -74.665992736816406, -14.959808349609318 ], [ -74.6658935546875, -14.957653999328556 ], [ -74.666397094726506, -14.955423355102539 ], [ -74.667259216308537, -14.954545021057129 ], [ -74.669120788574219, -14.953644752502385 ], [ -74.67120361328125, -14.951296806335392 ], [ -74.672737121582031, -14.950386047363224 ], [ -74.674263000488281, -14.948967933654728 ], [ -74.674667358398438, -14.948157310485783 ], [ -74.674911499023324, -14.945852279663029 ], [ -74.676109313964844, -14.943421363830566 ], [ -74.676162719726562, -14.942326545715332 ], [ -74.678520202636662, -14.93991756439209 ], [ -74.678352355957031, -14.93841552734375 ], [ -74.678482055664062, -14.937882423400879 ], [ -74.681694030761719, -14.935326576232853 ], [ -74.682693481445312, -14.933249473571777 ], [ -74.685440063476562, -14.930586814880371 ], [ -74.686538696289006, -14.928715705871582 ], [ -74.686317443847656, -14.927584648132211 ], [ -74.684928894042969, -14.925703048706055 ], [ -74.684471130371094, -14.92551326751709 ], [ -74.68316650390625, -14.925610542297306 ], [ -74.682373046875, -14.925383567810002 ], [ -74.680587768554688, -14.923328399658203 ], [ -74.675880432128906, -14.921044349670353 ], [ -74.674392700195312, -14.919450759887582 ], [ -74.672576904296875, -14.918190956115609 ], [ -74.671806335449219, -14.917240142822266 ], [ -74.671836853027287, -14.916154861450195 ], [ -74.671577453613281, -14.915531158447266 ], [ -74.668952941894531, -14.912227630615178 ], [ -74.6683349609375, -14.91169261932373 ], [ -74.665771484375, -14.910387039184513 ], [ -74.664375305175781, -14.909055709838754 ], [ -74.663612365722656, -14.90761756896967 ], [ -74.663497924804688, -14.906008720397892 ], [ -74.663970947265625, -14.904046058654728 ], [ -74.663307189941406, -14.898811340332031 ], [ -74.663597106933594, -14.896579742431584 ], [ -74.665443420410099, -14.891463279724121 ], [ -74.666206359863224, -14.889892578125 ], [ -74.667732238769474, -14.888139724731388 ], [ -74.670486450195312, -14.886345863342285 ], [ -74.671638488769474, -14.885182380676213 ], [ -74.671859741210824, -14.883834838867074 ], [ -74.671379089355412, -14.882431030273438 ], [ -74.671401977539062, -14.880947113037053 ], [ -74.6719970703125, -14.879592895507812 ], [ -74.673110961914062, -14.8783922195434 ], [ -74.675048828125, -14.878351211547738 ], [ -74.677047729492188, -14.877756118774357 ], [ -74.679077148437443, -14.876131057739201 ], [ -74.680686950683594, -14.874299049377385 ], [ -74.681343078613281, -14.872797012329045 ], [ -74.681159973144531, -14.869850158691406 ], [ -74.680168151855469, -14.86822319030756 ], [ -74.676712036132756, -14.864720344543457 ], [ -74.676490783691406, -14.863099098205566 ], [ -74.676689147949162, -14.861519813537541 ], [ -74.677368164062443, -14.860514640808049 ], [ -74.680313110351506, -14.857618331909123 ], [ -74.681022644042969, -14.854871749877873 ], [ -74.681472778320256, -14.854058265686035 ], [ -74.682754516601562, -14.853002548217773 ], [ -74.68511962890625, -14.851602554321289 ], [ -74.687339782714844, -14.849453926086426 ], [ -74.690773010253906, -14.843735694885254 ], [ -74.692146301269474, -14.842081069946232 ], [ -74.693534851074219, -14.841887474060059 ], [ -74.695068359375, -14.841272354125977 ], [ -74.704696655273438, -14.834675788879395 ], [ -74.70638275146473, -14.833765029907227 ], [ -74.707626342773438, -14.833559036254883 ], [ -74.709121704101506, -14.833814620971566 ], [ -74.710266113281193, -14.834332466125431 ], [ -74.712791442871094, -14.836358070373478 ], [ -74.713668823242188, -14.836840629577637 ], [ -74.714767456054631, -14.836182594299316 ], [ -74.715446472167969, -14.836082458496094 ], [ -74.718505859375, -14.836945533752441 ], [ -74.721946716308594, -14.837304115295353 ], [ -74.725753784179688, -14.839982032775822 ], [ -74.727302551269531, -14.840608596801758 ], [ -74.728843688964844, -14.842680931091252 ], [ -74.731109619140625, -14.840044021606445 ], [ -74.731986999511719, -14.839655876159554 ], [ -74.736831665039062, -14.839678764343262 ], [ -74.739273071289006, -14.840152740478402 ], [ -74.743431091308594, -14.839939117431584 ], [ -74.744697570800724, -14.840700149536133 ], [ -74.746627807617074, -14.841010093688965 ], [ -74.747535705566406, -14.840423583984318 ], [ -74.748214721679631, -14.840378761291504 ], [ -74.750389099121094, -14.83870792388916 ], [ -74.753593444824219, -14.837102890014648 ], [ -74.754341125488224, -14.836471557617188 ], [ -74.754791259765625, -14.835810661315861 ], [ -74.754829406738168, -14.835268974304086 ], [ -74.754669189453125, -14.834726333618164 ], [ -74.753814697265625, -14.833857536315918 ], [ -74.752769470214844, -14.832102775573674 ], [ -74.752082824707031, -14.828278541564941 ], [ -74.750335693359318, -14.827442169189396 ], [ -74.748413085937443, -14.827460289001465 ], [ -74.743911743164062, -14.826687812805176 ], [ -74.742774963378906, -14.826186180114689 ], [ -74.741401672363281, -14.825056076049805 ], [ -74.740097045898438, -14.824565887451172 ], [ -74.738166809082031, -14.824590682983398 ], [ -74.736198425292912, -14.825213432312012 ], [ -74.735519409179688, -14.825057983398381 ], [ -74.734756469726562, -14.82473182678217 ], [ -74.733345031738224, -14.823465347290039 ], [ -74.732162475585938, -14.823083877563477 ], [ -74.731056213378849, -14.823119163513127 ], [ -74.729507446289062, -14.823722839355412 ], [ -74.728416442871094, -14.823865890502873 ], [ -74.726470947265568, -14.823826789855957 ], [ -74.724967956542912, -14.823519706726017 ], [ -74.723869323730469, -14.822973251342773 ], [ -74.722267150878906, -14.821461677551213 ], [ -74.719551086425781, -14.820989608764648 ], [ -74.714965820312386, -14.819074630737305 ], [ -74.714607238769531, -14.818668365478459 ], [ -74.714897155761719, -14.817917823791504 ], [ -74.7154541015625, -14.817511558532658 ], [ -74.717712402343693, -14.816837310791016 ], [ -74.718513488769531, -14.816312789916992 ], [ -74.719497680664062, -14.815176010131836 ], [ -74.720321655273438, -14.813023567199707 ], [ -74.720954895019474, -14.812475204467773 ], [ -74.72174072265625, -14.812167167663517 ], [ -74.725578308105469, -14.812631607055607 ], [ -74.728210449218693, -14.81264591217041 ], [ -74.72967529296875, -14.812980651855469 ], [ -74.73199462890625, -14.812541007995549 ], [ -74.734329223632812, -14.811668395996094 ], [ -74.736404418945256, -14.811435699462834 ], [ -74.738891601562443, -14.812186241149789 ], [ -74.743995666503906, -14.814318656921387 ], [ -74.745994567871094, -14.814211845397949 ], [ -74.747291564941349, -14.813726425170898 ], [ -74.749046325683594, -14.812038421630859 ], [ -74.7518310546875, -14.807680130004769 ], [ -74.753135681152344, -14.803994178771973 ], [ -74.754539489746037, -14.801066398620605 ], [ -74.755485534667912, -14.797088623046875 ], [ -74.756248474121037, -14.795561790466252 ], [ -74.757865905761662, -14.794461250305119 ], [ -74.760589599609375, -14.793938636779785 ], [ -74.762107849121094, -14.793316841125431 ], [ -74.764747619628793, -14.79181003570551 ], [ -74.765342712402344, -14.791231155395508 ], [ -74.765487670898381, -14.790724754333439 ], [ -74.761627197265625, -14.785976409912053 ], [ -74.760200500488281, -14.785422325134277 ], [ -74.758155822753849, -14.785120964050293 ], [ -74.75665283203125, -14.784143447875977 ], [ -74.756103515625, -14.783366203308049 ], [ -74.756172180175781, -14.779332160949593 ], [ -74.755348205566406, -14.77747917175293 ], [ -74.756225585937443, -14.771810531616154 ], [ -74.756172180175781, -14.769721031188908 ], [ -74.755378723144474, -14.767615318298283 ], [ -74.753059387207031, -14.763832092285099 ], [ -74.751808166503906, -14.762783050537053 ], [ -74.748435974121037, -14.760897636413574 ], [ -74.744712829589787, -14.759547233581429 ], [ -74.743118286132812, -14.758730888366699 ], [ -74.741706848144531, -14.757653236389103 ], [ -74.741020202636719, -14.757546424865723 ], [ -74.738410949706974, -14.755334854125977 ], [ -74.736808776855469, -14.754890441894474 ], [ -74.734954833984375, -14.752058029174748 ], [ -74.732749938964844, -14.750223159790039 ], [ -74.731758117675781, -14.749062538146973 ], [ -74.731597900390625, -14.74843788146967 ], [ -74.731864929199219, -14.747643470764103 ], [ -74.734359741210938, -14.74511528015131 ], [ -74.736610412597599, -14.742142677307015 ], [ -74.737174987792912, -14.740689277648869 ], [ -74.737197875976562, -14.739485740661564 ], [ -74.7357177734375, -14.738306999206543 ], [ -74.736167907714844, -14.734808921813908 ], [ -74.735816955566349, -14.73211479187006 ], [ -74.734825134277344, -14.730712890625 ], [ -74.731666564941406, -14.72745418548584 ], [ -74.727653503417969, -14.720053672790471 ], [ -74.721786499023438, -14.716501235961857 ], [ -74.719245910644474, -14.714022636413517 ], [ -74.716712951660156, -14.712382316589355 ], [ -74.716278076171818, -14.711703300476074 ], [ -74.716148376464844, -14.710257530212402 ], [ -74.716506958007812, -14.710014343261719 ], [ -74.717330932617131, -14.70995044708252 ], [ -74.720710754394531, -14.71053409576416 ], [ -74.725242614746037, -14.712546348571777 ], [ -74.727142333984318, -14.712910652160645 ], [ -74.729171752929631, -14.713788986206055 ], [ -74.731521606445312, -14.713838577270394 ], [ -74.732170104980469, -14.714028358459473 ], [ -74.735092163085938, -14.716312408447266 ], [ -74.738578796386719, -14.720662117004338 ], [ -74.740791320800724, -14.722808837890625 ], [ -74.747291564941349, -14.727606773376465 ], [ -74.749946594238224, -14.728541374206486 ], [ -74.751541137695312, -14.728741645812988 ], [ -74.753166198730469, -14.727667808532658 ], [ -74.754798889160099, -14.727390289306641 ], [ -74.755630493164062, -14.727409362792912 ], [ -74.756538391113224, -14.727752685546875 ], [ -74.759857177734318, -14.727663993835392 ], [ -74.763236999511719, -14.728384017944336 ], [ -74.765029907226506, -14.728556632995605 ], [ -74.767234802246094, -14.728452682495117 ], [ -74.771728515625, -14.727641105651855 ], [ -74.7740478515625, -14.72790622711176 ], [ -74.777946472167969, -14.730712890625 ], [ -74.783287048339844, -14.733277320861816 ], [ -74.785865783691406, -14.734851837158146 ], [ -74.788543701171875, -14.737214088439941 ], [ -74.790397644042912, -14.739214897155705 ], [ -74.7913818359375, -14.741594314575082 ], [ -74.792045593261719, -14.742417335510197 ], [ -74.794563293456974, -14.744354248046875 ], [ -74.796836853027344, -14.745384216308594 ], [ -74.798774719238224, -14.746915817260685 ], [ -74.800224304199105, -14.748536109924316 ], [ -74.800567626953125, -14.749410629272347 ], [ -74.800598144531193, -14.750370979309082 ], [ -74.801048278808537, -14.751041412353516 ], [ -74.801887512207031, -14.751766204833984 ], [ -74.802841186523438, -14.751946449279728 ], [ -74.804588317871037, -14.751540184020996 ], [ -74.8067626953125, -14.750646591186467 ], [ -74.811172485351506, -14.747640609741211 ], [ -74.812408447265568, -14.74585056304926 ], [ -74.814018249511662, -14.741838455200195 ], [ -74.815040588378906, -14.740564346313477 ], [ -74.816497802734318, -14.739290237426701 ], [ -74.818359375, -14.738424301147404 ], [ -74.824546813964844, -14.736945152282601 ], [ -74.825942993164006, -14.73607158660883 ], [ -74.827346801757812, -14.734579086303711 ], [ -74.828018188476562, -14.73290824890131 ], [ -74.828445434570256, -14.730510711669922 ], [ -74.828536987304631, -14.729038238525334 ], [ -74.82830810546875, -14.726352691650334 ], [ -74.829956054687443, -14.722936630249023 ], [ -74.830528259277287, -14.719345092773438 ], [ -74.831840515136719, -14.717954635620117 ], [ -74.833816528320312, -14.716737747192383 ], [ -74.836074829101506, -14.714937210083008 ], [ -74.838737487792912, -14.711496353149414 ], [ -74.843246459960938, -14.710296630859375 ], [ -74.844383239746094, -14.709520339965763 ], [ -74.845230102539006, -14.708625793456974 ], [ -74.845710754394474, -14.707813262939453 ], [ -74.845680236816349, -14.706590652465707 ], [ -74.843849182128906, -14.702938079833984 ], [ -74.842346191406193, -14.702248573303166 ], [ -74.840522766113281, -14.702184677123967 ], [ -74.839942932128906, -14.701930046081486 ], [ -74.839523315429688, -14.701044082641545 ], [ -74.839035034179631, -14.698665618896484 ], [ -74.838241577148381, -14.697102546691838 ], [ -74.836845397949105, -14.695255279540959 ], [ -74.838623046874943, -14.694317817687988 ], [ -74.840827941894474, -14.694001197814941 ], [ -74.842025756835938, -14.693363189697209 ], [ -74.845016479492131, -14.690714836120605 ], [ -74.84661865234375, -14.688553810119629 ], [ -74.84710693359375, -14.685479164123478 ], [ -74.846343994140625, -14.681510925292969 ], [ -74.846992492675781, -14.680191993713379 ], [ -74.84735107421875, -14.678601264953556 ], [ -74.846916198730469, -14.676059722900391 ], [ -74.847160339355469, -14.67547416687006 ], [ -74.848228454589844, -14.674370765686035 ], [ -74.848487854003906, -14.673340797424316 ], [ -74.848381042480412, -14.672388076782227 ], [ -74.847625732421875, -14.670364379882756 ], [ -74.846908569335938, -14.666765213012695 ], [ -74.846412658691406, -14.665690422058049 ], [ -74.845428466796761, -14.664531707763672 ], [ -74.844146728515625, -14.663490295410156 ], [ -74.84307861328125, -14.663173675537109 ], [ -74.841293334960881, -14.663173675537109 ], [ -74.838142395019531, -14.662130355834904 ], [ -74.832427978515568, -14.657649040222168 ], [ -74.829849243164006, -14.656691551208496 ], [ -74.828948974609375, -14.656094551086369 ], [ -74.826751708984375, -14.653684616088867 ], [ -74.826332092285099, -14.653009414672852 ], [ -74.82611083984375, -14.651667594909611 ], [ -74.825607299804688, -14.650711059570312 ], [ -74.822128295898381, -14.647390365600586 ], [ -74.820945739746094, -14.645934104919377 ], [ -74.818313598632756, -14.640135765075627 ], [ -74.816436767578011, -14.637792587280273 ], [ -74.814537048339844, -14.634835243225041 ], [ -74.812110900878849, -14.633033752441406 ], [ -74.804473876953125, -14.628669738769531 ], [ -74.801765441894531, -14.626360893249512 ], [ -74.796905517578125, -14.624089241027832 ], [ -74.793533325195256, -14.621971130371094 ], [ -74.792739868164062, -14.62175178527832 ], [ -74.790977478027344, -14.619671821594181 ], [ -74.789566040039062, -14.619117736816406 ], [ -74.788314819335938, -14.618058204650822 ], [ -74.78778076171875, -14.616964340209961 ], [ -74.788032531738281, -14.615634918212834 ], [ -74.788833618164062, -14.615401268005371 ], [ -74.789398193359375, -14.615762710571289 ], [ -74.790504455566406, -14.615790367126408 ], [ -74.793769836425781, -14.615188598632812 ], [ -74.795349121093693, -14.616464614868107 ], [ -74.796844482421875, -14.616808891296387 ], [ -74.798088073730469, -14.61684608459467 ], [ -74.80108642578125, -14.616387367248535 ], [ -74.807723999023381, -14.616185188293457 ], [ -74.810707092285099, -14.6156005859375 ], [ -74.815673828124886, -14.615323066711426 ], [ -74.824928283691406, -14.613686561584473 ], [ -74.831306457519474, -14.613466262817383 ], [ -74.832054138183537, -14.613265037536621 ], [ -74.832931518554631, -14.612154960632324 ], [ -74.833679199218693, -14.611783981323185 ], [ -74.836051940917912, -14.61251068115223 ], [ -74.839920043945312, -14.612729072570687 ], [ -74.843772888183537, -14.612387657165471 ], [ -74.847450256347656, -14.611740112304631 ], [ -74.851593017578068, -14.611742973327637 ], [ -74.853233337402287, -14.611407279968205 ], [ -74.85744476318348, -14.609313011169377 ], [ -74.858917236328125, -14.60833740234375 ], [ -74.862266540527344, -14.605502128601017 ], [ -74.865249633789006, -14.602311134338322 ], [ -74.869850158691406, -14.594799041748047 ], [ -74.871780395507812, -14.593254089355469 ], [ -74.875350952148381, -14.590943336486816 ], [ -74.877075195312443, -14.58938026428217 ], [ -74.878105163574162, -14.587471961975098 ], [ -74.880752563476562, -14.579672813415471 ], [ -74.883232116699219, -14.57611083984375 ], [ -74.883209228515625, -14.575422286987305 ], [ -74.881980895996094, -14.572854042053166 ], [ -74.881118774414062, -14.569699287414494 ], [ -74.878860473632812, -14.563467979431039 ], [ -74.877937316894474, -14.55883884429926 ], [ -74.876113891601506, -14.556612968444824 ], [ -74.875785827636719, -14.555192947387695 ], [ -74.876304626464787, -14.553666114807072 ], [ -74.884101867675781, -14.545406341552734 ], [ -74.885467529296818, -14.545613288879395 ], [ -74.887733459472656, -14.546980857849121 ], [ -74.889045715332031, -14.547218322753906 ], [ -74.892227172851506, -14.546730041503906 ], [ -74.895751953124943, -14.545139312744141 ], [ -74.897064208984375, -14.544778823852539 ], [ -74.899955749511662, -14.545195579528809 ], [ -74.902420043945312, -14.546100616455021 ], [ -74.903419494628906, -14.547033309936467 ], [ -74.904800415039062, -14.551710128784123 ], [ -74.907501220703068, -14.555291175842228 ], [ -74.908622741699162, -14.558338165283146 ], [ -74.912254333496037, -14.562408447265568 ], [ -74.91290283203125, -14.564188003539982 ], [ -74.914016723632812, -14.565717697143498 ], [ -74.915130615234318, -14.566278457641545 ], [ -74.918327331542969, -14.56714916229248 ], [ -74.920516967773438, -14.568285942077637 ], [ -74.924697875976562, -14.568259239196777 ], [ -74.928207397460824, -14.571706771850529 ], [ -74.929733276367074, -14.572628021240178 ], [ -74.932937622070312, -14.576337814331055 ], [ -74.933914184570256, -14.57684421539301 ], [ -74.935813903808537, -14.577234268188477 ], [ -74.938560485839844, -14.57905101776123 ], [ -74.939888000488281, -14.579358100891113 ], [ -74.943908691406193, -14.579333305358887 ], [ -74.946037292480412, -14.579984664916992 ], [ -74.946914672851562, -14.581314086914006 ], [ -74.947364807128849, -14.582896232604924 ], [ -74.947753906249943, -14.585842132568359 ], [ -74.947608947753906, -14.588139533996582 ], [ -74.948211669921818, -14.589035034179631 ], [ -74.948501586914006, -14.590638160705566 ], [ -74.952102661132812, -14.595745086669922 ], [ -74.952697753906193, -14.597255706786996 ], [ -74.95510101318348, -14.601043701171818 ], [ -74.956832885742188, -14.60486888885498 ], [ -74.958129882812443, -14.605864524841309 ], [ -74.959358215331974, -14.606415748596135 ], [ -74.960617065429631, -14.60639762878418 ], [ -74.963874816894418, -14.605313301086426 ], [ -74.964393615722656, -14.60543155670166 ], [ -74.964958190917969, -14.606044769287109 ], [ -74.965377807617131, -14.606136322021484 ], [ -74.967758178710881, -14.60389328002924 ], [ -74.969383239746037, -14.603560447692871 ], [ -74.971015930175724, -14.602311134338322 ], [ -74.971588134765568, -14.602204322814885 ], [ -74.971939086914062, -14.602368354797363 ], [ -74.972564697265625, -14.60341739654541 ], [ -74.9737548828125, -14.603803634643555 ], [ -74.975662231445312, -14.603478431701546 ], [ -74.978126525878906, -14.60260105133051 ], [ -74.980438232421818, -14.602999687194824 ], [ -74.983467102050781, -14.605116844177189 ], [ -74.98443603515625, -14.605190277099609 ], [ -74.987831115722656, -14.606707572937012 ], [ -74.988754272460881, -14.607522010803223 ], [ -74.990150451660156, -14.609358787536621 ], [ -74.990806579589844, -14.609593391418457 ], [ -74.992866516113168, -14.609612464904785 ], [ -74.994186401367131, -14.610577583312988 ], [ -74.994667053222599, -14.611400604248047 ], [ -74.995796203613224, -14.611907005310002 ], [ -74.99688720703125, -14.61170768737793 ], [ -74.998985290527344, -14.609936714172306 ], [ -75.0, -14.609437942504883 ], [ -75.008232116699219, -14.607107162475529 ], [ -75.011405944824219, -14.607412338256722 ], [ -75.014320373535099, -14.60944652557373 ], [ -75.017013549804688, -14.610098838806096 ], [ -75.020706176757756, -14.609764099121094 ], [ -75.030525207519474, -14.609716415405273 ], [ -75.034088134765625, -14.611515045166016 ], [ -75.036270141601562, -14.613160133361816 ], [ -75.038642883300668, -14.614272117614689 ], [ -75.040344238281193, -14.615421295166016 ], [ -75.043266296386719, -14.618097305297852 ], [ -75.044532775878849, -14.620022773742676 ], [ -75.047187805175781, -14.623140335082951 ], [ -75.050674438476562, -14.625800132751465 ], [ -75.052085876464787, -14.62664794921875 ], [ -75.053153991699219, -14.627025604248047 ], [ -75.054077148437443, -14.626935005187875 ], [ -75.055366516113281, -14.626375198364201 ], [ -75.057807922363224, -14.624396324157658 ], [ -75.058128356933594, -14.6237535476684 ], [ -75.058250427246094, -14.621870994567871 ], [ -75.057945251464844, -14.618120193481445 ], [ -75.058067321777287, -14.616900444030762 ], [ -75.059059143066406, -14.615815162658691 ], [ -75.06298828125, -14.612602233886662 ], [ -75.063507080078068, -14.61164665222168 ], [ -75.062507629394531, -14.602822303771973 ], [ -75.061347961425781, -14.599504470825195 ], [ -75.061233520507756, -14.597922325134277 ], [ -75.061660766601562, -14.595651626586857 ], [ -75.062698364257812, -14.592732429504395 ], [ -75.062065124511719, -14.589556694030762 ], [ -75.063285827636719, -14.585723876953125 ], [ -75.063224792480412, -14.583834648132324 ], [ -75.062881469726562, -14.58267688751215 ], [ -75.062942504882756, -14.580343246459961 ], [ -75.063461303710938, -14.579159736633187 ], [ -75.06500244140625, -14.577567100524846 ], [ -75.065505981445256, -14.573869705200195 ], [ -75.068153381347656, -14.571880340576115 ], [ -75.070693969726562, -14.570504188537598 ], [ -75.076210021972599, -14.569307327270508 ], [ -75.077598571777344, -14.568758010864201 ], [ -75.078308105468693, -14.567962646484318 ], [ -75.078727722167969, -14.566306114196721 ], [ -75.078338623046875, -14.563919067382812 ], [ -75.078155517578125, -14.559760093688965 ], [ -75.078521728515625, -14.551587104797306 ], [ -75.078414916992188, -14.549420356750488 ], [ -75.078033447265625, -14.549102783203125 ], [ -75.075897216796818, -14.548587799072209 ], [ -75.075332641601506, -14.548197746276799 ], [ -75.073593139648438, -14.545287132263184 ], [ -75.072578430175724, -14.542502403259277 ], [ -75.071853637695312, -14.541192054748478 ], [ -75.070846557617131, -14.540280342102051 ], [ -75.068435668945312, -14.538978576660099 ], [ -75.0677490234375, -14.538120269775334 ], [ -75.066619873046875, -14.53508186340332 ], [ -75.066299438476449, -14.531935691833496 ], [ -75.066566467285099, -14.528453826904297 ], [ -75.067337036132756, -14.527015686035156 ], [ -75.068382263183537, -14.526664733886662 ], [ -75.069076538085938, -14.526707649230843 ], [ -75.077308654785156, -14.530548095703125 ], [ -75.080764770507756, -14.531523704528695 ], [ -75.083778381347656, -14.53188419342041 ], [ -75.084686279296818, -14.531539916992131 ], [ -75.085563659667855, -14.530890464782715 ], [ -75.087013244628906, -14.529081344604435 ], [ -75.087760925292969, -14.527353286743164 ], [ -75.088249206542969, -14.527099609375 ], [ -75.088180541992188, -14.525644302368107 ], [ -75.089591979980469, -14.524152755737191 ], [ -75.090560913085938, -14.522650718688851 ], [ -75.091423034667969, -14.521087646484375 ], [ -75.091857910156136, -14.519720077514648 ], [ -75.091270446777287, -14.517217636108398 ], [ -75.090476989746094, -14.510507583618107 ], [ -75.090576171875, -14.50879859924305 ], [ -75.091690063476562, -14.506302833557129 ], [ -75.091918945312443, -14.505126953124886 ], [ -75.091941833496037, -14.503636360168457 ], [ -75.091171264648381, -14.49969577789301 ], [ -75.091140747070312, -14.49711799621582 ], [ -75.091361999511662, -14.495256423950082 ], [ -75.091690063476562, -14.494415283203068 ], [ -75.092880249023381, -14.492885589599553 ], [ -75.093933105468693, -14.490694999694767 ], [ -75.096343994140625, -14.488118171691895 ], [ -75.096519470214787, -14.487477302551213 ], [ -75.097892761230469, -14.486065864562931 ], [ -75.098075866699219, -14.485152244567814 ], [ -75.096611022949162, -14.481093406677246 ], [ -75.095054626464844, -14.479023933410531 ], [ -75.091438293457031, -14.476311683654785 ], [ -75.086738586425781, -14.47401046752924 ], [ -75.0830078125, -14.471687316894531 ], [ -75.080497741699162, -14.469365119934025 ], [ -75.078231811523438, -14.466814994812012 ], [ -75.076126098632812, -14.466192245483398 ], [ -75.075416564941406, -14.465778350830078 ], [ -75.072021484374886, -14.461526870727539 ], [ -75.068763732910099, -14.45879936218256 ], [ -75.06842041015625, -14.458138465881234 ], [ -75.068275451660099, -14.456936836242676 ], [ -75.069122314453125, -14.454396247863713 ], [ -75.069145202636662, -14.453058242797852 ], [ -75.069839477539062, -14.45087718963623 ], [ -75.069900512695256, -14.44951057434082 ], [ -75.069625854492131, -14.448644638061523 ], [ -75.068321228027344, -14.447415351867676 ], [ -75.064987182617188, -14.445771217346191 ], [ -75.061576843261719, -14.44261455535883 ], [ -75.060440063476562, -14.440935134887695 ], [ -75.059608459472599, -14.438376426696777 ], [ -75.054000854492188, -14.432429313659611 ], [ -75.052986145019531, -14.430981636047363 ], [ -75.054168701171818, -14.429697036743164 ], [ -75.055732727050781, -14.42913627624506 ], [ -75.057487487792969, -14.428069114685059 ], [ -75.060295104980469, -14.427380561828613 ], [ -75.064033508300781, -14.427433013916016 ], [ -75.066452026367188, -14.428447723388615 ], [ -75.067642211914062, -14.428707122802678 ], [ -75.072456359863281, -14.428182601928654 ], [ -75.076072692871094, -14.426499366760254 ], [ -75.0782470703125, -14.426054954528809 ], [ -75.080116271972599, -14.427158355712891 ], [ -75.087448120117131, -14.426450729370117 ], [ -75.088508605956974, -14.426583290100098 ], [ -75.090408325195256, -14.427289962768555 ], [ -75.094467163085938, -14.429503440856934 ], [ -75.0970458984375, -14.430361747741699 ], [ -75.099960327148381, -14.432204246520996 ], [ -75.101837158203068, -14.433053970336857 ], [ -75.104949951171875, -14.433964729309082 ], [ -75.106948852539062, -14.434190750122013 ], [ -75.107589721679631, -14.433954238891602 ], [ -75.108818054199162, -14.432988166809082 ], [ -75.113403320312443, -14.428319931030273 ], [ -75.114044189453068, -14.427921295166016 ], [ -75.120651245117131, -14.427275657653752 ], [ -75.121887207031193, -14.426651954650822 ], [ -75.122055053710881, -14.42600154876709 ], [ -75.121833801269531, -14.425512313842717 ], [ -75.12042236328125, -14.424402236938363 ], [ -75.119552612304688, -14.424010276794377 ], [ -75.118515014648438, -14.422746658325138 ], [ -75.118560791015511, -14.421942710876351 ], [ -75.119819641113281, -14.420676231384221 ], [ -75.124015808105469, -14.41933631896967 ], [ -75.130149841308594, -14.416521072387695 ], [ -75.131385803222656, -14.416393280029297 ], [ -75.135116577148438, -14.416625976562386 ], [ -75.138603210449219, -14.415720939636174 ], [ -75.134986877441406, -14.41038799285883 ], [ -75.133636474609375, -14.407584190368652 ], [ -75.13330078125, -14.406139373779183 ], [ -75.13299560546875, -14.405850410461369 ], [ -75.132461547851506, -14.405814170837346 ], [ -75.131713867187443, -14.405001640319824 ], [ -75.131538391113281, -14.403673171997013 ], [ -75.132041931152344, -14.401293754577637 ], [ -75.131942749023438, -14.399557113647461 ], [ -75.130104064941406, -14.397200584411621 ], [ -75.12957763671875, -14.395960807800293 ], [ -75.128799438476562, -14.395009994506779 ], [ -75.1270751953125, -14.390608787536621 ], [ -75.125579833984375, -14.389019012451172 ], [ -75.123039245605412, -14.38715934753418 ], [ -75.121170043945312, -14.384998321533203 ], [ -75.120307922363281, -14.383307456970158 ], [ -75.119323730468636, -14.379521369934025 ], [ -75.117912292480469, -14.376456260681039 ], [ -75.116615295410156, -14.374874114990234 ], [ -75.113143920898438, -14.37159538269043 ], [ -75.110786437988281, -14.365582466125488 ], [ -75.1075439453125, -14.361920356750488 ], [ -75.106170654296875, -14.359589576721135 ], [ -75.105461120605412, -14.356704711914006 ], [ -75.105499267578125, -14.354816436767521 ], [ -75.1082763671875, -14.347782135009766 ], [ -75.108375549316406, -14.346444129943791 ], [ -75.107826232910156, -14.345664978027287 ], [ -75.106636047363224, -14.344969749450627 ], [ -75.105857849121037, -14.344181060791016 ], [ -75.105705261230469, -14.341913223266602 ], [ -75.104629516601506, -14.339878082275391 ], [ -75.100975036621094, -14.336373329162598 ], [ -75.099952697753849, -14.334943771362191 ], [ -75.099662780761662, -14.332838058471623 ], [ -75.100074768066406, -14.32799243927002 ], [ -75.099662780761662, -14.326157569885254 ], [ -75.096473693847656, -14.319286346435547 ], [ -75.093597412109375, -14.314684867858887 ], [ -75.092269897460938, -14.311294555664062 ], [ -75.091529846191406, -14.310482025146371 ], [ -75.090278625488281, -14.309611320495605 ], [ -75.0875244140625, -14.309560775756779 ], [ -75.086791992187443, -14.309199333190861 ], [ -75.085166931152287, -14.306694030761719 ], [ -75.083992004394531, -14.303811073303166 ], [ -75.08233642578125, -14.302192687988281 ], [ -75.081680297851562, -14.29998874664301 ], [ -75.080635070800781, -14.298586845397949 ], [ -75.078987121582031, -14.298453330993652 ], [ -75.075416564941406, -14.298867225646916 ], [ -75.073127746582031, -14.299403190612793 ], [ -75.071327209472599, -14.299321174621525 ], [ -75.069618225097599, -14.297568321227971 ], [ -75.067039489746037, -14.297107696533146 ], [ -75.065742492675781, -14.296241760253849 ], [ -75.063545227050781, -14.295446395873967 ], [ -75.059219360351506, -14.293032646179199 ], [ -75.0582275390625, -14.291133880615234 ], [ -75.056800842285156, -14.290067672729492 ], [ -75.055740356445312, -14.288339614868164 ], [ -75.05438232421875, -14.28718376159668 ], [ -75.052581787109375, -14.286504745483398 ], [ -75.0499267578125, -14.286668777465763 ], [ -75.049026489257756, -14.286514282226506 ], [ -75.046302795410156, -14.283449172973519 ], [ -75.040626525878849, -14.280287742614689 ], [ -75.039817810058594, -14.279574394226074 ], [ -75.039413452148438, -14.278479576110783 ], [ -75.039108276367131, -14.272647857666016 ], [ -75.038703918456974, -14.271073341369629 ], [ -75.037139892578125, -14.269574165344181 ], [ -75.034492492675781, -14.268110275268555 ], [ -75.031425476074219, -14.264636993408203 ], [ -75.031784057617188, -14.26202487945551 ], [ -75.033287048339787, -14.259283065795842 ], [ -75.034500122070312, -14.257828712463322 ], [ -75.036918640136662, -14.25560474395752 ], [ -75.039390563964787, -14.254137039184513 ], [ -75.042015075683594, -14.25410270690918 ], [ -75.047134399414062, -14.255711555480957 ], [ -75.051307678222599, -14.25479602813715 ], [ -75.055122375488224, -14.25541973114008 ], [ -75.056228637695312, -14.255393028259277 ], [ -75.057853698730469, -14.255058288574162 ], [ -75.059585571289062, -14.254196166992131 ], [ -75.064399719238281, -14.252985954284668 ], [ -75.065834045410156, -14.252449989318848 ], [ -75.066619873046875, -14.251916885375977 ], [ -75.067489624023438, -14.250862121581974 ], [ -75.067665100097656, -14.249122619628906 ], [ -75.067970275878906, -14.248517036437875 ], [ -75.069526672363224, -14.247187614440918 ], [ -75.070732116699219, -14.246526718139592 ], [ -75.071434020996037, -14.246538162231332 ], [ -75.072395324706974, -14.245578765869141 ], [ -75.072250366210938, -14.244783401489258 ], [ -75.071670532226562, -14.244205474853402 ], [ -75.071640014648324, -14.243128776550179 ], [ -75.072921752929688, -14.237315177917367 ], [ -75.073387145996094, -14.235784530639648 ], [ -75.07379150390625, -14.235234260559025 ], [ -75.075172424316406, -14.234319686889592 ], [ -75.077239990234318, -14.233586311340332 ], [ -75.077644348144474, -14.233235359191838 ], [ -75.080200195312443, -14.23289966583252 ], [ -75.083099365234375, -14.232907295227051 ], [ -75.084999084472656, -14.23250770568842 ], [ -75.086952209472656, -14.23149585723877 ], [ -75.08819580078125, -14.230229377746582 ], [ -75.088668823242188, -14.228411674499455 ], [ -75.0887451171875, -14.225590705871582 ], [ -75.089431762695312, -14.222561836242619 ], [ -75.089561462402287, -14.218121528625488 ], [ -75.090194702148438, -14.216214179992676 ], [ -75.09014892578125, -14.214992523193303 ], [ -75.089805603027344, -14.214115142822266 ], [ -75.08685302734375, -14.212334632873535 ], [ -75.086074829101562, -14.211558341979924 ], [ -75.08538818359375, -14.207036018371468 ], [ -75.084320068359318, -14.203837394714242 ], [ -75.083908081054631, -14.201313018798828 ], [ -75.0833740234375, -14.200220108032227 ], [ -75.081489562988281, -14.197562217712402 ], [ -75.080307006835881, -14.193269729614258 ], [ -75.07904052734375, -14.189997673034611 ], [ -75.078826904296875, -14.18812370300293 ], [ -75.077972412109375, -14.18541240692133 ], [ -75.077705383300781, -14.183559417724609 ], [ -75.077537536621037, -14.179653167724609 ], [ -75.077751159667969, -14.17374134063715 ], [ -75.077217102050781, -14.170819282531738 ], [ -75.077156066894474, -14.168783187866154 ], [ -75.076400756835881, -14.166333198547363 ], [ -75.075767517089844, -14.165295600891113 ], [ -75.075180053710938, -14.163350105285588 ], [ -75.071495056152344, -14.157502174377385 ], [ -75.06988525390625, -14.154221534729004 ], [ -75.067489624023438, -14.151092529296818 ], [ -75.066688537597656, -14.149682044982853 ], [ -75.065994262695256, -14.146390914916935 ], [ -75.064796447753906, -14.143526077270451 ], [ -75.064010620117074, -14.137117385864201 ], [ -75.062461853027287, -14.135053634643441 ], [ -75.061523437499943, -14.13310432434082 ], [ -75.060127258300781, -14.131729125976506 ], [ -75.059501647949162, -14.130092620849609 ], [ -75.057098388671875, -14.129641532897836 ], [ -75.056625366210938, -14.129123687744141 ], [ -75.056343078613281, -14.128382682800236 ], [ -75.055068969726562, -14.127387046813965 ], [ -75.054985046386719, -14.125372886657715 ], [ -75.054107666015625, -14.123111724853516 ], [ -75.054168701171818, -14.122577667236271 ], [ -75.054832458496037, -14.121883392333984 ], [ -75.054962158203125, -14.121232032775879 ], [ -75.054847717285099, -14.120560646057129 ], [ -75.054275512695256, -14.119802474975586 ], [ -75.054061889648381, -14.119025230407658 ], [ -75.054168701171818, -14.116873741149902 ], [ -75.054542541503849, -14.116358757018986 ], [ -75.054191589355469, -14.114244461059513 ], [ -75.053665161132812, -14.113807678222599 ], [ -75.051506042480412, -14.112966537475586 ], [ -75.050857543945312, -14.112090110778752 ], [ -75.050529479980412, -14.110799789428654 ], [ -75.048873901367188, -14.110138893127328 ], [ -75.048439025878849, -14.109443664550724 ], [ -75.048171997070256, -14.108277320861816 ], [ -75.046173095703068, -14.107046127319336 ], [ -75.045364379882812, -14.104379653930664 ], [ -75.043174743652344, -14.101134300231934 ], [ -75.039955139160099, -14.099643707275391 ], [ -75.036727905273381, -14.09893703460682 ], [ -75.035896301269531, -14.098031997680607 ], [ -75.035774230956974, -14.097528457641602 ], [ -75.0360107421875, -14.09673976898182 ], [ -75.035423278808594, -14.095539093017578 ], [ -75.035331726074219, -14.093665122985783 ], [ -75.034240722656193, -14.09266471862793 ], [ -75.033561706542912, -14.090068817138615 ], [ -75.031600952148438, -14.086387634277344 ], [ -75.030418395996037, -14.082681655883732 ], [ -75.029495239257812, -14.080882072448674 ], [ -75.029533386230469, -14.080085754394531 ], [ -75.030059814453011, -14.079137802123967 ], [ -75.030372619628906, -14.075918197631779 ], [ -75.0299072265625, -14.074418067932129 ], [ -75.028450012207031, -14.071795463562012 ], [ -75.027763366699162, -14.071333885192871 ], [ -75.026512145996037, -14.071254730224609 ], [ -75.025863647460824, -14.071426391601562 ], [ -75.024826049804688, -14.072120666503906 ], [ -75.024131774902287, -14.072166442871094 ], [ -75.022354125976562, -14.071443557739144 ], [ -75.019485473632812, -14.071108818054199 ], [ -75.016929626464844, -14.07007884979248 ], [ -75.015716552734375, -14.069185256958008 ], [ -75.014503479003849, -14.068984985351506 ], [ -75.009712219238224, -14.069690704345703 ], [ -75.005538940429631, -14.071075439453068 ], [ -75.004013061523381, -14.071138381957951 ], [ -75.001457214355469, -14.071904182434082 ], [ -74.996276855468693, -14.071933746337834 ], [ -74.993492126464844, -14.073107719421387 ], [ -74.991615295410099, -14.073570251464787 ], [ -74.989013671875, -14.074816703796387 ], [ -74.988464355468693, -14.074734687805119 ], [ -74.987136840820256, -14.073749542236271 ], [ -74.986473083496037, -14.073588371276855 ], [ -74.985649108886719, -14.073722839355469 ], [ -74.983787536621037, -14.074625015258789 ], [ -74.982704162597656, -14.074880599975472 ], [ -74.977310180664006, -14.073857307434082 ], [ -74.975112915039006, -14.074118614196721 ], [ -74.974136352539062, -14.074625015258789 ], [ -74.972366333007812, -14.076343536376896 ], [ -74.970809936523381, -14.077456474304142 ], [ -74.964454650878906, -14.081018447875977 ], [ -74.962966918945312, -14.082960128784123 ], [ -74.960670471191406, -14.083883285522461 ], [ -74.957954406738224, -14.085970878601074 ], [ -74.956077575683594, -14.086377143859806 ], [ -74.953376770019474, -14.085923194885254 ], [ -74.95172119140625, -14.086005210876465 ], [ -74.950637817382812, -14.086223602294922 ], [ -74.948921203613281, -14.087107658386117 ], [ -74.945899963378906, -14.090101242065373 ], [ -74.945106506347656, -14.093392372131348 ], [ -74.944412231445256, -14.094285011291447 ], [ -74.943603515625, -14.094757080078068 ], [ -74.942359924316406, -14.094522476196175 ], [ -74.940414428710824, -14.093002319335938 ], [ -74.938713073730469, -14.092097282409668 ], [ -74.936256408691406, -14.091716766357422 ], [ -74.933509826660156, -14.091716766357422 ], [ -74.932624816894531, -14.092159271240178 ], [ -74.929840087890625, -14.095514297485352 ], [ -74.926483154296818, -14.098530769348145 ], [ -74.925155639648324, -14.09925365447998 ], [ -74.924201965331918, -14.099308967590332 ], [ -74.922164916992131, -14.098477363586369 ], [ -74.919601440429631, -14.096014976501465 ], [ -74.917999267578068, -14.094958305358887 ], [ -74.914695739746094, -14.094160079956055 ], [ -74.911468505859375, -14.092097282409668 ], [ -74.910110473632812, -14.091835021972656 ], [ -74.90789794921875, -14.091987609863224 ], [ -74.907058715820312, -14.092423439025879 ], [ -74.904838562011662, -14.094256401061955 ], [ -74.901893615722656, -14.095982551574707 ], [ -74.901008605956974, -14.097031593322754 ], [ -74.900199890136719, -14.100621223449707 ], [ -74.899604797363281, -14.10193920135498 ], [ -74.897605895996094, -14.103630065917855 ], [ -74.896209716796875, -14.103736877441406 ], [ -74.895362854003906, -14.103012084960938 ], [ -74.892860412597656, -14.097759246826172 ], [ -74.888847351074219, -14.091293334960881 ], [ -74.887130737304688, -14.087764739990178 ], [ -74.88568115234375, -14.085459709167424 ], [ -74.883377075195256, -14.082935333251839 ], [ -74.882377624511719, -14.08223819732666 ], [ -74.880241394042969, -14.081290245056039 ], [ -74.878890991210881, -14.079742431640625 ], [ -74.878692626953068, -14.077436447143498 ], [ -74.878120422363224, -14.076088905334416 ], [ -74.877365112304631, -14.075579643249512 ], [ -74.876121520996037, -14.075201988220215 ], [ -74.871444702148381, -14.074639320373478 ], [ -74.869384765625, -14.073886871337891 ], [ -74.866973876953068, -14.072320938110352 ], [ -74.862709045410156, -14.068385124206486 ], [ -74.860794067382812, -14.06702709197998 ], [ -74.859802246093693, -14.067309379577637 ], [ -74.858741760253906, -14.068816184997559 ], [ -74.857902526855412, -14.072225570678711 ], [ -74.857101440429688, -14.074069023132324 ], [ -74.855613708496037, -14.07506275177002 ], [ -74.852752685546818, -14.07603931427002 ], [ -74.851364135742188, -14.076010704040471 ], [ -74.848449707031193, -14.074777603149357 ], [ -74.846710205078125, -14.074416160583439 ], [ -74.843666076660156, -14.072794914245549 ], [ -74.843025207519474, -14.072307586669922 ], [ -74.842163085937443, -14.071067810058594 ], [ -74.841766357421875, -14.071141242980957 ], [ -74.841484069824162, -14.071600914001465 ], [ -74.841384887695312, -14.073237419128418 ], [ -74.840454101562443, -14.07469367980957 ], [ -74.838645935058537, -14.076581001281738 ], [ -74.836021423339844, -14.078296661376953 ], [ -74.833091735839787, -14.081540107727051 ], [ -74.830970764160156, -14.084350585937443 ], [ -74.82830810546875, -14.089982032775822 ], [ -74.826950073242188, -14.09132003784174 ], [ -74.825202941894474, -14.092116355895996 ], [ -74.822723388671818, -14.092321395873967 ], [ -74.822006225585938, -14.091956138610783 ], [ -74.819145202636719, -14.091566085815316 ], [ -74.817626953125, -14.09090518951416 ], [ -74.816734313964844, -14.090055465698242 ], [ -74.815292358398324, -14.08925819396967 ], [ -74.810073852539062, -14.086823463439941 ], [ -74.808860778808594, -14.087111473083382 ], [ -74.806472778320312, -14.08891773223877 ], [ -74.800926208496094, -14.086841583251896 ], [ -74.798995971679688, -14.086516380310002 ], [ -74.794456481933594, -14.088644027709961 ], [ -74.792068481445312, -14.089184761047363 ], [ -74.791320800781193, -14.088876724243107 ], [ -74.790145874023438, -14.087195396423283 ], [ -74.789421081542912, -14.086543083190918 ], [ -74.788558959960881, -14.086134910583439 ], [ -74.787574768066406, -14.086044311523438 ], [ -74.784622192382812, -14.087144851684513 ], [ -74.781227111816349, -14.089463233947754 ], [ -74.780105590820312, -14.090006828308105 ], [ -74.779022216796818, -14.090023040771484 ], [ -74.77657318115223, -14.089109420776367 ], [ -74.775192260742188, -14.088970184326172 ], [ -74.773574829101562, -14.089303016662598 ], [ -74.772964477539062, -14.089619636535588 ], [ -74.772537231445256, -14.090152740478459 ], [ -74.771560668945312, -14.090152740478459 ], [ -74.770301818847656, -14.089627265930119 ], [ -74.765335083007812, -14.08641338348383 ], [ -74.7630615234375, -14.084267616271916 ], [ -74.759841918945312, -14.080728530883789 ], [ -74.759033203125, -14.079613685607853 ], [ -74.758720397949162, -14.07842922210682 ], [ -74.759735107421875, -14.077174186706486 ], [ -74.762260437011662, -14.076121330261174 ], [ -74.763572692871037, -14.075118064880371 ], [ -74.764648437499943, -14.073716163635254 ], [ -74.765693664550724, -14.071664810180664 ], [ -74.766059875488224, -14.067768096923771 ], [ -74.765525817871094, -14.065543174743596 ], [ -74.765472412109375, -14.064052581786996 ], [ -74.767082214355469, -14.057497978210449 ], [ -74.767395019531193, -14.055092811584416 ], [ -74.767890930175724, -14.046468734741211 ], [ -74.7674560546875, -14.044687271118164 ], [ -74.767791748046818, -14.044405937194824 ], [ -74.76861572265625, -14.044416427612305 ], [ -74.770973205566406, -14.045161247253418 ], [ -74.771919250488281, -14.044599533081055 ], [ -74.773422241210881, -14.044864654540959 ], [ -74.774002075195312, -14.044492721557617 ], [ -74.77490234375, -14.041383743286076 ], [ -74.776618957519531, -14.038617134094125 ], [ -74.777526855468636, -14.036368370056096 ], [ -74.778022766113281, -14.033982276916504 ], [ -74.778068542480412, -14.031285285949707 ], [ -74.778381347656193, -14.029414176940804 ], [ -74.781280517578125, -14.024065017700195 ], [ -74.782546997070256, -14.020496368408203 ], [ -74.783576965332031, -14.019050598144531 ], [ -74.783889770507756, -14.016780853271484 ], [ -74.782737731933537, -14.01254940032959 ], [ -74.781326293945256, -14.010078430175668 ], [ -74.780754089355412, -14.008268356323242 ], [ -74.777267456054688, -14.003430366516113 ], [ -74.779312133789006, -14.002228736877441 ], [ -74.780792236328125, -14.000411987304631 ], [ -74.780982971191406, -13.99932670593256 ], [ -74.780471801757756, -13.997048377990723 ], [ -74.780868530273438, -13.995023727416935 ], [ -74.781425476074162, -13.994190216064453 ], [ -74.782623291015625, -13.993080139160099 ], [ -74.785758972167969, -13.990915298461914 ], [ -74.786201477050724, -13.98991870880127 ], [ -74.786529541015625, -13.988309860229492 ], [ -74.786445617675781, -13.986274719238281 ], [ -74.785530090331974, -13.984692573547363 ], [ -74.784637451171875, -13.983778953552246 ], [ -74.782325744628906, -13.982147216796875 ], [ -74.779922485351562, -13.981007575988713 ], [ -74.778648376464787, -13.981078147888184 ], [ -74.776443481445256, -13.983001708984375 ], [ -74.775627136230469, -13.983345985412598 ], [ -74.771934509277344, -13.983234405517578 ], [ -74.770545959472599, -13.982753753662109 ], [ -74.76947021484375, -13.981893539428597 ], [ -74.76898193359375, -13.980943679809457 ], [ -74.768508911132812, -13.979098320007324 ], [ -74.768508911132812, -13.977924346923771 ], [ -74.768791198730469, -13.976412773132324 ], [ -74.769943237304688, -13.973475456237793 ], [ -74.7723388671875, -13.969339370727539 ], [ -74.773056030273438, -13.967683792114144 ], [ -74.774154663085881, -13.964527130126953 ], [ -74.774833679199162, -13.961357116699219 ], [ -74.7764892578125, -13.956493377685547 ], [ -74.778152465820312, -13.949658393859863 ], [ -74.779396057128906, -13.946375846862793 ], [ -74.782554626464787, -13.939470291137695 ], [ -74.784774780273324, -13.935539245605469 ], [ -74.787155151367131, -13.933292388915959 ], [ -74.789985656738224, -13.931818962097111 ], [ -74.791572570800781, -13.930438041687012 ], [ -74.792510986328125, -13.928999900817871 ], [ -74.792633056640625, -13.928033828735352 ], [ -74.792327880859375, -13.92717456817627 ], [ -74.791511535644474, -13.926090240478516 ], [ -74.788169860839844, -13.923851966857853 ], [ -74.786811828613281, -13.922511100769043 ], [ -74.785194396972656, -13.920441627502385 ], [ -74.782455444335881, -13.915031433105469 ], [ -74.778762817382756, -13.908698081970215 ], [ -74.777679443359375, -13.905351638793945 ], [ -74.777633666992188, -13.900586128234806 ], [ -74.777084350585938, -13.898688316345215 ], [ -74.777015686035099, -13.897340774536133 ], [ -74.777633666992188, -13.896734237670785 ], [ -74.782058715820312, -13.89494800567627 ], [ -74.783447265625, -13.894100189208928 ], [ -74.785217285156193, -13.891789436340332 ], [ -74.7861328125, -13.88984203338623 ], [ -74.785957336425781, -13.887583732604924 ], [ -74.783859252929688, -13.881624221801758 ], [ -74.78326416015625, -13.878628730773926 ], [ -74.782287597656193, -13.877797126769963 ], [ -74.780006408691293, -13.877116203308105 ], [ -74.778846740722599, -13.87653732299799 ], [ -74.773963928222599, -13.871766090393066 ], [ -74.768554687499943, -13.8678102493285 ], [ -74.767395019531193, -13.866426467895508 ], [ -74.7664794921875, -13.86340427398676 ], [ -74.765419006347656, -13.857661247253418 ], [ -74.762855529785156, -13.852751731872559 ], [ -74.762290954589844, -13.851238250732422 ], [ -74.761596679687443, -13.844077110290471 ], [ -74.75970458984375, -13.837114334106388 ], [ -74.759216308593636, -13.831642150878793 ], [ -74.759239196777344, -13.830204010009709 ], [ -74.759765624999943, -13.828677177429199 ], [ -74.761611938476562, -13.825661659240609 ], [ -74.763458251953125, -13.823672294616642 ], [ -74.764251708984318, -13.822352409362736 ], [ -74.767005920410099, -13.814590454101562 ], [ -74.768829345703068, -13.810548782348633 ], [ -74.770538330078068, -13.80822563171381 ], [ -74.77508544921875, -13.80363941192627 ], [ -74.776138305664062, -13.801630973815918 ], [ -74.776336669921875, -13.800122261047363 ], [ -74.778251647949219, -13.794489860534611 ], [ -74.778732299804631, -13.791098594665527 ], [ -74.778923034667912, -13.784445762634277 ], [ -74.778450012206974, -13.783468246459961 ], [ -74.777603149414006, -13.782645225524902 ], [ -74.775985717773381, -13.783609390258732 ], [ -74.773155212402344, -13.783932685852051 ], [ -74.769149780273438, -13.784942626953125 ], [ -74.767211914062443, -13.784968376159611 ], [ -74.765357971191406, -13.784440994262695 ], [ -74.763816833496094, -13.783632278442383 ], [ -74.763351440429688, -13.783074378967285 ], [ -74.763359069824219, -13.782623291015511 ], [ -74.762321472167969, -13.781743049621582 ], [ -74.762336730956974, -13.780386924743596 ], [ -74.764350891113224, -13.777975082397404 ], [ -74.766082763671761, -13.77490329742426 ], [ -74.766799926757812, -13.772669792175236 ], [ -74.766799926757812, -13.772324562072697 ], [ -74.766532897949162, -13.772074699401799 ], [ -74.766433715820256, -13.770734786987248 ], [ -74.765861511230412, -13.768924713134766 ], [ -74.764755249023438, -13.762386322021428 ], [ -74.764160156249943, -13.761364936828556 ], [ -74.762939453125, -13.76007080078125 ], [ -74.76055908203125, -13.758231163024902 ], [ -74.759948730468693, -13.757435798644963 ], [ -74.759712219238281, -13.755120277404785 ], [ -74.759750366210938, -13.752580642700195 ], [ -74.760551452636605, -13.750204086303711 ], [ -74.760543823242131, -13.749110221862736 ], [ -74.758010864257812, -13.745353698730469 ], [ -74.754783630371094, -13.739708900451603 ], [ -74.754150390624943, -13.738236427307129 ], [ -74.753898620605469, -13.736817359924316 ], [ -74.754287719726562, -13.735442161560059 ], [ -74.755401611328011, -13.733462333679142 ], [ -74.764396667480469, -13.722946166992188 ], [ -74.766242980956974, -13.72161865234375 ], [ -74.768783569335938, -13.720598220825195 ], [ -74.771018981933537, -13.718873023986816 ], [ -74.77374267578125, -13.717874526977539 ], [ -74.774742126464787, -13.716344833374023 ], [ -74.775321960449162, -13.713986396789437 ], [ -74.775482177734375, -13.710841178894043 ], [ -74.774269104003849, -13.704084396362248 ], [ -74.77423095703125, -13.695620536804142 ], [ -74.773666381835938, -13.694491386413574 ], [ -74.772232055664062, -13.692843437194767 ], [ -74.772079467773381, -13.691315650939941 ], [ -74.772216796875, -13.689531326293945 ], [ -74.772834777831974, -13.686983108520451 ], [ -74.773399353027287, -13.680257797241211 ], [ -74.774314880371094, -13.675205230712834 ], [ -74.773933410644531, -13.672726631164551 ], [ -74.773986816406193, -13.671468734741154 ], [ -74.77471923828125, -13.669823646545353 ], [ -74.776420593261719, -13.66818904876709 ], [ -74.777633666992188, -13.664664268493652 ], [ -74.777854919433594, -13.662965774536076 ], [ -74.777877807617131, -13.657203674316349 ], [ -74.778129577636719, -13.655486106872559 ], [ -74.779808044433537, -13.653138160705453 ], [ -74.7825927734375, -13.650019645690861 ], [ -74.783134460449162, -13.648609161376896 ], [ -74.782241821289062, -13.64634895324707 ], [ -74.779716491699162, -13.642802238464355 ], [ -74.777671813964844, -13.640727996826172 ], [ -74.774856567382699, -13.638592720031738 ], [ -74.774856567382699, -13.636983871459961 ], [ -74.776008605957031, -13.63338661193842 ], [ -74.777992248535099, -13.629842758178711 ], [ -74.778221130371094, -13.627248764038086 ], [ -74.777496337890568, -13.625213623046875 ], [ -74.774856567382699, -13.622578620910645 ], [ -74.773338317871094, -13.62037277221674 ], [ -74.772605895996094, -13.616753578186035 ], [ -74.771957397460938, -13.615874290466252 ], [ -74.771522521972656, -13.614500045776367 ], [ -74.771476745605469, -13.610995292663574 ], [ -74.771827697753906, -13.607855796813908 ], [ -74.772270202636662, -13.606020927429199 ], [ -74.775077819824219, -13.598990440368596 ], [ -74.775276184082031, -13.596114158630371 ], [ -74.775733947753906, -13.593465805053597 ], [ -74.776687622070312, -13.590643882751465 ], [ -74.776962280273438, -13.588511466979924 ], [ -74.779922485351562, -13.582003593444824 ], [ -74.782066345214844, -13.578767776489201 ], [ -74.783721923828068, -13.576996803283691 ], [ -74.783920288085938, -13.576491355895939 ], [ -74.7864990234375, -13.573228836059513 ], [ -74.787445068359261, -13.570895195007324 ], [ -74.789649963378906, -13.568005561828613 ], [ -74.791038513183537, -13.565690040588265 ], [ -74.791778564453125, -13.563089370727539 ], [ -74.791160583496037, -13.560293197631836 ], [ -74.791839599609375, -13.557951927185059 ], [ -74.794158935546875, -13.555068969726506 ], [ -74.796493530273381, -13.551508903503361 ], [ -74.798820495605469, -13.549493789672795 ], [ -74.799102783203125, -13.548254966735783 ], [ -74.799629211425724, -13.547507286071721 ], [ -74.800148010253906, -13.547144889831543 ], [ -74.801567077636719, -13.546756744384709 ], [ -74.802749633789062, -13.545907020568848 ], [ -74.805351257324162, -13.544770240783635 ], [ -74.806159973144531, -13.544211387634277 ], [ -74.810379028320312, -13.540270805358773 ], [ -74.810722351074219, -13.539547920226994 ], [ -74.812202453613281, -13.537722587585449 ], [ -74.813362121581974, -13.537207603454533 ], [ -74.814842224121094, -13.536033630371094 ], [ -74.816841125488281, -13.535989761352539 ], [ -74.818351745605469, -13.536408424377328 ], [ -74.819450378417969, -13.536453247070256 ], [ -74.819747924804631, -13.536761283874512 ], [ -74.820251464843636, -13.536525726318359 ], [ -74.823371887206974, -13.536367416381836 ], [ -74.826286315917969, -13.535326957702637 ], [ -74.828842163085938, -13.534976005554199 ], [ -74.830902099609318, -13.533070564269906 ], [ -74.831634521484375, -13.532683372497559 ], [ -74.832000732421875, -13.53140926361084 ], [ -74.832145690917912, -13.529780387878304 ], [ -74.832908630371037, -13.52722263336176 ], [ -74.833534240722656, -13.526832580566349 ], [ -74.834831237792912, -13.52656364440918 ], [ -74.835662841796875, -13.526002883911076 ], [ -74.836723327636662, -13.524882316589299 ], [ -74.837867736816349, -13.522775650024357 ], [ -74.839973449706974, -13.520907402038517 ], [ -74.840171813964787, -13.519939422607422 ], [ -74.840087890624886, -13.51876258850092 ], [ -74.838737487792912, -13.516529083251896 ], [ -74.839202880859318, -13.514674186706543 ], [ -74.839118957519474, -13.51414966583252 ], [ -74.838668823242188, -13.513570785522461 ], [ -74.838745117187443, -13.512749671935978 ], [ -74.841842651367188, -13.509558677673283 ], [ -74.844558715820256, -13.507724761962891 ], [ -74.846305847167969, -13.506134033203068 ], [ -74.847923278808594, -13.502836227416935 ], [ -74.848213195800781, -13.499861717224121 ], [ -74.849159240722656, -13.498515129089355 ], [ -74.850120544433594, -13.497880935668888 ], [ -74.853668212890625, -13.496627807617188 ], [ -74.855888366699162, -13.49462890625 ], [ -74.85591888427723, -13.491583824157715 ], [ -74.8568115234375, -13.48912525177002 ], [ -74.85888671875, -13.486166000366154 ], [ -74.8616943359375, -13.483076095581055 ], [ -74.862953186035099, -13.482056617736816 ], [ -74.865837097167855, -13.480657577514648 ], [ -74.867065429687443, -13.479735374450684 ], [ -74.869720458984318, -13.478496551513558 ], [ -74.872230529785156, -13.476003646850586 ], [ -74.873657226562386, -13.475668907165527 ], [ -74.874481201171818, -13.475750923156681 ], [ -74.87750244140625, -13.475019454955941 ], [ -74.881950378417912, -13.474767684936523 ], [ -74.88330078125, -13.474470138549805 ], [ -74.885040283203125, -13.474634170532113 ], [ -74.885955810546818, -13.474047660827637 ], [ -74.886192321777344, -13.473269462585449 ], [ -74.886878967285099, -13.472528457641545 ], [ -74.889579772949162, -13.471443176269418 ], [ -74.88983154296875, -13.47098255157465 ], [ -74.889816284179688, -13.470080375671273 ], [ -74.890083312988281, -13.469818115234261 ], [ -74.893844604492131, -13.469664573669377 ], [ -74.896194458007812, -13.468915939330941 ], [ -74.899276733398381, -13.468537330627441 ], [ -74.901138305664062, -13.46793079376215 ], [ -74.901954650878849, -13.466937065124398 ], [ -74.903350830078125, -13.46360969543457 ], [ -74.903472900390568, -13.460463523864746 ], [ -74.903861999511662, -13.459649085998535 ], [ -74.9039306640625, -13.458124160766545 ], [ -74.903762817382756, -13.457325935363713 ], [ -74.901336669921875, -13.453816413879338 ], [ -74.900871276855469, -13.452089309692383 ], [ -74.901458740234375, -13.449357986450138 ], [ -74.902198791503906, -13.447724342346191 ], [ -74.902343749999943, -13.445118904113713 ], [ -74.903297424316349, -13.443390846252385 ], [ -74.903038024902344, -13.442234039306584 ], [ -74.902328491210881, -13.44129467010498 ], [ -74.902328491210881, -13.440389633178654 ], [ -74.90289306640625, -13.439367294311523 ], [ -74.904434204101506, -13.438236236572209 ], [ -74.904891967773438, -13.437470436096191 ], [ -74.905181884765625, -13.436429023742619 ], [ -74.905258178710938, -13.434719085693303 ], [ -74.904815673828068, -13.432524681091309 ], [ -74.904815673828068, -13.429909706115723 ], [ -74.904594421386719, -13.429423332214299 ], [ -74.903785705566349, -13.428543090820312 ], [ -74.901512145996094, -13.427205085754338 ], [ -74.896842956542969, -13.422898292541447 ], [ -74.896507263183594, -13.421968460082951 ], [ -74.896057128906193, -13.417167663574162 ], [ -74.895576477050724, -13.416495323181152 ], [ -74.89373779296875, -13.414870262145996 ], [ -74.893211364746094, -13.413820266723633 ], [ -74.893096923828068, -13.411759376525822 ], [ -74.893806457519531, -13.40925216674799 ], [ -74.893966674804631, -13.406387329101506 ], [ -74.894676208496094, -13.403601646423283 ], [ -74.894828796386605, -13.402084350585881 ], [ -74.895195007324162, -13.400665283203068 ], [ -74.896614074706974, -13.398457527160645 ], [ -74.897499084472543, -13.39639759063715 ], [ -74.897544860839844, -13.39415454864502 ], [ -74.897109985351506, -13.39277172088623 ], [ -74.893730163574219, -13.389631271362248 ], [ -74.888046264648381, -13.380100250244141 ], [ -74.88568115234375, -13.378416061401367 ], [ -74.882293701171875, -13.377020835876465 ], [ -74.880828857421875, -13.375310897827148 ], [ -74.879707336425781, -13.37452507019043 ], [ -74.878868103027287, -13.37302303314209 ], [ -74.876502990722599, -13.370002746582031 ], [ -74.876091003417969, -13.368365287780762 ], [ -74.870353698730469, -13.36157321929926 ], [ -74.868827819824219, -13.360321998596191 ], [ -74.867576599121094, -13.35978794097889 ], [ -74.86260986328125, -13.358421325683537 ], [ -74.860420227050781, -13.355770111083984 ], [ -74.858558654785099, -13.354612350463867 ], [ -74.85699462890625, -13.354159355163574 ], [ -74.854476928710881, -13.354582786560002 ], [ -74.849960327148438, -13.353033065795842 ], [ -74.848609924316406, -13.352752685546875 ], [ -74.843650817871094, -13.353618621826172 ], [ -74.841094970703125, -13.353607177734375 ], [ -74.839462280273438, -13.353839874267521 ], [ -74.836860656738281, -13.353702545166016 ], [ -74.835807800292969, -13.35406303405756 ], [ -74.833961486816349, -13.355681419372559 ], [ -74.8331298828125, -13.355989456176701 ], [ -74.830741882324105, -13.355815887451172 ], [ -74.828041076660099, -13.356291770935002 ], [ -74.825103759765568, -13.35626220703125 ], [ -74.823928833007812, -13.356109619140568 ], [ -74.821403503417969, -13.355294227600041 ], [ -74.818824768066406, -13.355300903320312 ], [ -74.816978454589787, -13.356039047241211 ], [ -74.815902709960938, -13.356219291687012 ], [ -74.813980102539062, -13.357268333435059 ], [ -74.813156127929688, -13.357377052307072 ], [ -74.810577392578125, -13.356732368469181 ], [ -74.809303283691406, -13.356884956359863 ], [ -74.807403564453125, -13.355635643005314 ], [ -74.805038452148438, -13.355361938476506 ], [ -74.803161621093693, -13.353940010070744 ], [ -74.798294067382756, -13.351642608642521 ], [ -74.796371459960938, -13.351594924926701 ], [ -74.794921875, -13.35181808471674 ], [ -74.79376220703125, -13.351592063903809 ], [ -74.791709899902287, -13.349953651428166 ], [ -74.787673950195312, -13.348026275634709 ], [ -74.786476135253849, -13.348093986511174 ], [ -74.782623291015625, -13.348908424377385 ], [ -74.778182983398381, -13.349210739135685 ], [ -74.776809692382812, -13.348459243774357 ], [ -74.775100708007812, -13.347127914428597 ], [ -74.772727966308537, -13.346458435058594 ], [ -74.771064758300781, -13.3464097976684 ], [ -74.770095825195312, -13.346175193786564 ], [ -74.766609191894531, -13.343259811401367 ], [ -74.765289306640568, -13.342623710632324 ], [ -74.764152526855412, -13.341673851013184 ], [ -74.763877868652287, -13.341238021850586 ], [ -74.763862609863224, -13.340427398681641 ], [ -74.76495361328125, -13.334504127502385 ], [ -74.764213562011719, -13.329981803893986 ], [ -74.763214111328068, -13.327919006347656 ], [ -74.762329101562443, -13.326788902282715 ], [ -74.760116577148438, -13.324752807617131 ], [ -74.759437561035156, -13.324488639831543 ], [ -74.758056640624943, -13.324316024780217 ], [ -74.756301879882812, -13.324404716491699 ], [ -74.754875183105469, -13.32548713684082 ], [ -74.751464843749943, -13.329833984375 ], [ -74.749916076660156, -13.33277416229248 ], [ -74.747810363769531, -13.335472106933594 ], [ -74.746963500976562, -13.337659835815373 ], [ -74.746330261230412, -13.338412284851074 ], [ -74.745010375976562, -13.339024543762207 ], [ -74.743064880371037, -13.33956336975092 ], [ -74.741600036621094, -13.339527130126896 ], [ -74.739852905273381, -13.338983535766602 ], [ -74.739334106445312, -13.339081764221135 ], [ -74.739044189453125, -13.339417457580566 ], [ -74.738525390625, -13.340744018554688 ], [ -74.738136291503849, -13.342816352844125 ], [ -74.737747192382756, -13.343320846557617 ], [ -74.737510681152344, -13.346195220947209 ], [ -74.738037109374943, -13.347318649291879 ], [ -74.739593505859375, -13.348641395568848 ], [ -74.739921569824162, -13.350293159484863 ], [ -74.739593505859375, -13.35214900970459 ], [ -74.738670349121094, -13.355068206787053 ], [ -74.737869262695312, -13.35636043548584 ], [ -74.736412048339787, -13.357280731201115 ], [ -74.735626220703068, -13.357516288757267 ], [ -74.734214782714787, -13.356906890869027 ], [ -74.733657836913949, -13.356870651245117 ], [ -74.729377746582031, -13.359804153442326 ], [ -74.727828979492131, -13.359794616699219 ], [ -74.723281860351562, -13.361481666564885 ], [ -74.721649169921875, -13.361452102661133 ], [ -74.719924926757699, -13.36231803894043 ], [ -74.718772888183537, -13.363385200500431 ], [ -74.717674255371094, -13.363590240478516 ], [ -74.7164306640625, -13.363382339477539 ], [ -74.715187072753906, -13.362773895263672 ], [ -74.713020324707031, -13.362373352050781 ], [ -74.712310791015625, -13.362516403198242 ], [ -74.71096038818348, -13.363375663757324 ], [ -74.709594726562443, -13.363842964172363 ], [ -74.702545166015568, -13.36363506317133 ], [ -74.70147705078125, -13.363389015197697 ], [ -74.699745178222656, -13.362385749816895 ], [ -74.697303771972599, -13.36158561706543 ], [ -74.695960998535099, -13.360653877258301 ], [ -74.694831848144474, -13.359476089477539 ], [ -74.693550109863281, -13.35732364654541 ], [ -74.690826416015568, -13.355187416076603 ], [ -74.690414428710938, -13.354182243347111 ], [ -74.689163208007812, -13.352885246276855 ], [ -74.68807220458973, -13.352415084838867 ], [ -74.685333251953125, -13.352546691894531 ], [ -74.68408203125, -13.351949691772461 ], [ -74.683113098144418, -13.351116180419922 ], [ -74.681388854980412, -13.351250648498535 ], [ -74.678405761718693, -13.350350379943734 ], [ -74.677490234375, -13.35041427612299 ], [ -74.676300048828125, -13.350863456726017 ], [ -74.673469543456974, -13.350714683532715 ], [ -74.671096801757699, -13.35201358795166 ], [ -74.667861938476562, -13.352572441101017 ], [ -74.664558410644531, -13.353677749633732 ], [ -74.662834167480469, -13.354516983032227 ], [ -74.661750793456918, -13.354651451110783 ], [ -74.660148620605469, -13.353989601135254 ], [ -74.659545898437443, -13.352269172668457 ], [ -74.657493591308594, -13.35107517242426 ], [ -74.656349182128906, -13.350755691528207 ], [ -74.65460205078125, -13.350644111633301 ], [ -74.649444580078068, -13.351432800292912 ], [ -74.648155212402344, -13.351350784301758 ], [ -74.647071838378906, -13.35053539276123 ], [ -74.644859313964787, -13.349961280822697 ], [ -74.642791748046875, -13.348974227905273 ], [ -74.641815185546818, -13.348321914672852 ], [ -74.64013671875, -13.346665382385254 ], [ -74.637725830078125, -13.346091270446721 ], [ -74.636642456054631, -13.34514045715332 ], [ -74.634536743164006, -13.344983100891056 ], [ -74.633697509765568, -13.344150543212891 ], [ -74.635261535644531, -13.342389106750488 ], [ -74.638809204101562, -13.340668678283691 ], [ -74.644866943359318, -13.336334228515625 ], [ -74.648628234863281, -13.335618019104004 ], [ -74.651161193847599, -13.333596229553223 ], [ -74.652008056640568, -13.333705902099553 ], [ -74.653831481933537, -13.334737777709961 ], [ -74.655845642089844, -13.334532737731877 ], [ -74.659217834472656, -13.332558631896973 ], [ -74.661125183105469, -13.332333564758301 ], [ -74.661964416503906, -13.331990242004395 ], [ -74.667427062988281, -13.32762336730957 ], [ -74.667991638183594, -13.326899528503361 ], [ -74.66815185546875, -13.326312065124512 ], [ -74.667984008789062, -13.323710441589355 ], [ -74.667587280273438, -13.321771621704102 ], [ -74.667808532714844, -13.319675445556584 ], [ -74.668571472167969, -13.318365097045898 ], [ -74.670852661132812, -13.317048072814885 ], [ -74.671669006347543, -13.315638542175293 ], [ -74.671806335449219, -13.314661026000977 ], [ -74.671646118164006, -13.310087203979492 ], [ -74.671897888183594, -13.308124542236328 ], [ -74.672233581542912, -13.307493209838867 ], [ -74.673904418945312, -13.305966377258244 ], [ -74.674674987792969, -13.304736137390137 ], [ -74.67523193359375, -13.302187919616699 ], [ -74.676437377929574, -13.299187660217285 ], [ -74.677085876464787, -13.295028686523438 ], [ -74.677925109863281, -13.293519973754826 ], [ -74.678436279296818, -13.293023109435978 ], [ -74.680816650390568, -13.291496276855469 ], [ -74.685745239257812, -13.287626266479492 ], [ -74.686714172363224, -13.28711986541748 ], [ -74.687408447265625, -13.28627872467041 ], [ -74.682907104492131, -13.284645080566406 ], [ -74.681732177734375, -13.283767700195312 ], [ -74.677703857421875, -13.281475067138672 ], [ -74.676361083984375, -13.280253410339355 ], [ -74.673866271972656, -13.27680492401123 ], [ -74.671943664550724, -13.27476692199707 ], [ -74.669387817382812, -13.274067878723145 ], [ -74.66351318359375, -13.271329879760742 ], [ -74.659454345703068, -13.271732330322209 ], [ -74.657669067382812, -13.27134895324707 ], [ -74.655525207519474, -13.270550727844238 ], [ -74.653511047363281, -13.27042102813715 ], [ -74.652404785156136, -13.271034240722656 ], [ -74.649543762206918, -13.273805618286133 ], [ -74.647354125976562, -13.274428367614746 ], [ -74.646255493164062, -13.274453163146973 ], [ -74.644668579101506, -13.273981094360238 ], [ -74.643798828124943, -13.27315616607666 ], [ -74.6419677734375, -13.269942283630371 ], [ -74.638946533203068, -13.266567230224553 ], [ -74.6375732421875, -13.263435363769474 ], [ -74.633407592773381, -13.261160850524902 ], [ -74.632225036621094, -13.260183334350586 ], [ -74.628944396972543, -13.255086898803654 ], [ -74.625946044921875, -13.249622344970703 ], [ -74.623863220214787, -13.246831893920898 ], [ -74.622207641601562, -13.243827819824219 ], [ -74.620742797851449, -13.242225646972656 ], [ -74.618743896484375, -13.240639686584416 ], [ -74.616378784179688, -13.238367080688477 ], [ -74.615509033203125, -13.237224578857422 ], [ -74.613822937011719, -13.234230995178223 ], [ -74.611869812011662, -13.231850624084473 ], [ -74.608840942382812, -13.228860855102482 ], [ -74.606040954589787, -13.227573394775334 ], [ -74.603164672851506, -13.227042198181152 ], [ -74.601974487304688, -13.226599693298283 ], [ -74.601112365722656, -13.224808692932072 ], [ -74.601020812988281, -13.221217155456543 ], [ -74.600540161132812, -13.21930027008051 ], [ -74.599395751953125, -13.217462539672852 ], [ -74.595649719238224, -13.212695121765137 ], [ -74.594627380371094, -13.211921691894474 ], [ -74.593132019042969, -13.211222648620549 ], [ -74.587005615234375, -13.211150169372502 ], [ -74.585968017578125, -13.210604667663574 ], [ -74.585449218749943, -13.209166526794434 ], [ -74.585235595703068, -13.204771041870117 ], [ -74.584823608398438, -13.202936172485238 ], [ -74.583518981933537, -13.202065467834473 ], [ -74.580963134765568, -13.201951026916447 ], [ -74.579711914062443, -13.201536178588867 ], [ -74.579444885253849, -13.201189994812012 ], [ -74.579559326171875, -13.197600364685002 ], [ -74.580352783203125, -13.194373130798226 ], [ -74.580108642578068, -13.192854881286621 ], [ -74.579208374023438, -13.191960334777832 ], [ -74.575927734375, -13.190596580505371 ], [ -74.574432373046875, -13.189411163330021 ], [ -74.573204040527344, -13.187000274658203 ], [ -74.572570800781193, -13.184123992919922 ], [ -74.571327209472599, -13.183871269226017 ], [ -74.569412231445256, -13.184082984924316 ], [ -74.567962646484375, -13.184659004211369 ], [ -74.565841674804688, -13.185888290405273 ], [ -74.563629150390625, -13.186487197875977 ], [ -74.56219482421875, -13.186234474182129 ], [ -74.560218811035156, -13.185297966003361 ], [ -74.559211730956974, -13.185234069824162 ], [ -74.556465148925668, -13.185949325561467 ], [ -74.553916931152344, -13.187349319458008 ], [ -74.553565979003906, -13.187294006347656 ], [ -74.552360534667912, -13.189038276672363 ], [ -74.551322937011719, -13.191034317016602 ], [ -74.549064636230469, -13.193144798278809 ], [ -74.54840087890625, -13.19410228729248 ], [ -74.546249389648381, -13.196314811706543 ], [ -74.544486999511719, -13.199240684509164 ], [ -74.543533325195312, -13.200089454650879 ], [ -74.542228698730412, -13.200348854064941 ], [ -74.53875732421875, -13.19664478302002 ], [ -74.537963867187386, -13.19618034362793 ], [ -74.536636352539062, -13.195863723754826 ], [ -74.532409667968693, -13.195693016052189 ], [ -74.530731201171875, -13.195364952087402 ], [ -74.529373168945256, -13.194149971008301 ], [ -74.528976440429631, -13.193144798278809 ], [ -74.528945922851562, -13.192333221435547 ], [ -74.528427124023324, -13.191390037536564 ], [ -74.52691650390625, -13.189930915832463 ], [ -74.525634765624943, -13.189440727233887 ], [ -74.524276733398438, -13.189520835876465 ], [ -74.523124694824219, -13.190060615539551 ], [ -74.521720886230412, -13.191478729248047 ], [ -74.519905090331974, -13.194484710693303 ], [ -74.518508911132699, -13.195939064025822 ], [ -74.517051696777287, -13.196975708007699 ], [ -74.516578674316349, -13.196882247924805 ], [ -74.513504028320312, -13.194192886352539 ], [ -74.511932373046875, -13.193448066711369 ], [ -74.508926391601562, -13.192946434020882 ], [ -74.504249572753906, -13.193316459655705 ], [ -74.502357482910099, -13.192797660827637 ], [ -74.501617431640568, -13.192026138305607 ], [ -74.500564575195256, -13.189058303833008 ], [ -74.499542236328125, -13.187782287597599 ], [ -74.498954772949162, -13.187464714050293 ], [ -74.4962158203125, -13.187277793884277 ], [ -74.494186401367131, -13.186442375183049 ], [ -74.493492126464787, -13.186467170715332 ], [ -74.491966247558537, -13.18707084655756 ], [ -74.486305236816406, -13.190630912780705 ], [ -74.483184814453125, -13.192046165466309 ], [ -74.482009887695312, -13.192366600036564 ], [ -74.477561950683537, -13.191916465759277 ], [ -74.475982666015625, -13.191523551940918 ], [ -74.472724914550724, -13.189292907714844 ], [ -74.471374511718693, -13.188982963562012 ], [ -74.467971801757812, -13.187564849853516 ], [ -74.466636657714844, -13.18787765502924 ], [ -74.462158203125, -13.190357208251896 ], [ -74.460556030273438, -13.190831184387207 ], [ -74.458686828613224, -13.189824104309025 ], [ -74.456573486328125, -13.18717098236084 ], [ -74.454055786132812, -13.184868812560978 ], [ -74.45156097412098, -13.180839538574162 ], [ -74.449302673339844, -13.178483009338322 ], [ -74.442306518554631, -13.174463272094727 ], [ -74.439323425292912, -13.171292304992676 ], [ -74.437812805175724, -13.170492172241154 ], [ -74.434944152831974, -13.169727325439453 ], [ -74.433898925781193, -13.169173240661564 ], [ -74.432815551757812, -13.16785812377924 ], [ -74.430847167968693, -13.164355278015137 ], [ -74.429817199706918, -13.163331031799203 ], [ -74.422645568847599, -13.160113334655705 ], [ -74.420455932617131, -13.159385681152287 ], [ -74.418251037597599, -13.159381866455021 ], [ -74.415000915527287, -13.159926414489689 ], [ -74.410331726074162, -13.160121917724609 ], [ -74.409271240234375, -13.160400390625 ], [ -74.407760620117131, -13.161346435546875 ], [ -74.405029296875, -13.164359092712402 ], [ -74.403007507324162, -13.166183471679688 ], [ -74.400032043456974, -13.167558670043945 ], [ -74.397857666015568, -13.168972015380859 ], [ -74.396652221679688, -13.169249534606934 ], [ -74.396598815917912, -13.167784690856934 ], [ -74.397422790527344, -13.166095733642578 ], [ -74.397171020507756, -13.163944244384709 ], [ -74.398384094238281, -13.161849975585881 ], [ -74.398193359375, -13.160799026489258 ], [ -74.397270202636662, -13.15928840637207 ], [ -74.395225524902344, -13.157294273376465 ], [ -74.394218444824162, -13.155835151672363 ], [ -74.390716552734261, -13.153937339782601 ], [ -74.389015197753906, -13.152630805969181 ], [ -74.389083862304631, -13.152207374572754 ], [ -74.390045166015568, -13.151532173156738 ], [ -74.389686584472656, -13.150336265563965 ], [ -74.390022277831974, -13.147806167602482 ], [ -74.389678955078125, -13.146222114562988 ], [ -74.390502929687443, -13.144387245178223 ], [ -74.390014648437443, -13.14283275604248 ], [ -74.389892578125, -13.140544891357422 ], [ -74.388816833496094, -13.137068748474121 ], [ -74.389015197753906, -13.135730743408146 ], [ -74.389907836914062, -13.132903099060059 ], [ -74.389724731445312, -13.129441261291447 ], [ -74.390190124511719, -13.12832069396967 ], [ -74.391914367675781, -13.127095222473031 ], [ -74.3934326171875, -13.126447677612191 ], [ -74.395751953124943, -13.126020431518555 ], [ -74.397796630859375, -13.124612808227482 ], [ -74.400428771972599, -13.12384128570551 ], [ -74.40228271484375, -13.122706413269043 ], [ -74.409820556640625, -13.120644569396973 ], [ -74.410812377929631, -13.11993217468256 ], [ -74.411476135253849, -13.118892669677734 ], [ -74.411201477050724, -13.117067337036076 ], [ -74.411422729492188, -13.114246368408203 ], [ -74.411193847656193, -13.112237930297738 ], [ -74.410591125488281, -13.111324310302678 ], [ -74.409080505371094, -13.110417366027832 ], [ -74.408561706542969, -13.10948371887207 ], [ -74.408821105956974, -13.108724594116211 ], [ -74.411026000976506, -13.106892585754395 ], [ -74.411308288574162, -13.106451034545898 ], [ -74.41107177734375, -13.103358268737736 ], [ -74.411300659179631, -13.099515914916992 ], [ -74.410835266113224, -13.098105430603027 ], [ -74.410781860351562, -13.096882820129395 ], [ -74.411422729492188, -13.095111846923771 ], [ -74.412559509277344, -13.094112396240234 ], [ -74.412635803222599, -13.093361854553223 ], [ -74.412246704101506, -13.091317176818791 ], [ -74.410957336425781, -13.089242935180607 ], [ -74.410827636718693, -13.088176727294922 ], [ -74.409851074218693, -13.087550163268986 ], [ -74.409683227539006, -13.086282730102482 ], [ -74.410018920898438, -13.082468032836857 ], [ -74.410835266113224, -13.080915451049805 ], [ -74.410560607910156, -13.077949523925724 ], [ -74.409645080566406, -13.075398445129338 ], [ -74.407218933105469, -13.071819305419865 ], [ -74.407363891601562, -13.070861816406193 ], [ -74.408241271972599, -13.069027900695801 ], [ -74.408172607421875, -13.067670822143498 ], [ -74.405227661132812, -13.063605308532658 ], [ -74.403129577636719, -13.058028221130371 ], [ -74.401885986328125, -13.056606292724609 ], [ -74.400886535644474, -13.054525375366154 ], [ -74.396636962890625, -13.050311088562012 ], [ -74.393707275390625, -13.045593261718693 ], [ -74.390327453613224, -13.04329776763916 ], [ -74.389831542968693, -13.042175292968693 ], [ -74.389961242675781, -13.04123592376709 ], [ -74.389595031738281, -13.034806251525879 ], [ -74.388214111328068, -13.032008171081543 ], [ -74.386856079101562, -13.030142784118596 ], [ -74.385482788085938, -13.028827667236271 ], [ -74.384376525878906, -13.028273582458496 ], [ -74.382202148437443, -13.027743339538517 ], [ -74.381538391113224, -13.02734375 ], [ -74.379898071289062, -13.024673461914062 ], [ -74.378181457519531, -13.025156021118107 ], [ -74.375732421874943, -13.024834632873478 ], [ -74.374847412109375, -13.024497985839844 ], [ -74.372856140136662, -13.023065567016545 ], [ -74.370010375976506, -13.021710395812875 ], [ -74.368545532226562, -13.021372795104924 ], [ -74.366607666015625, -13.021267890930176 ], [ -74.364341735839844, -13.021779060363713 ], [ -74.362846374511662, -13.022489547729435 ], [ -74.360084533691349, -13.025103569030762 ], [ -74.358467102050724, -13.025831222534123 ], [ -74.357353210449219, -13.025895118713322 ], [ -74.356765747070199, -13.025547981262207 ], [ -74.352699279785156, -13.024760246276855 ], [ -74.351661682128906, -13.024830818176213 ], [ -74.349922180175781, -13.025665283203068 ], [ -74.347564697265625, -13.024929046630746 ], [ -74.341934204101562, -13.026685714721623 ], [ -74.339912414550781, -13.028932571411133 ], [ -74.33599853515625, -13.030567169189453 ], [ -74.334861755371094, -13.03157901763916 ], [ -74.333213806152344, -13.035724639892578 ], [ -74.333320617675781, -13.038978576660156 ], [ -74.333137512207031, -13.040010452270451 ], [ -74.3323974609375, -13.041619300842228 ], [ -74.331352233886719, -13.043051719665527 ], [ -74.329292297363224, -13.044395446777344 ], [ -74.325531005859375, -13.048310279846135 ], [ -74.320777893066349, -13.052176475524846 ], [ -74.316413879394474, -13.054677963256836 ], [ -74.314254760742188, -13.057304382324219 ], [ -74.311981201171875, -13.060661315917912 ], [ -74.311309814453125, -13.060829162597656 ], [ -74.308708190917969, -13.060587882995605 ], [ -74.305618286132756, -13.061221122741642 ], [ -74.303787231445312, -13.061814308166504 ], [ -74.301902770996037, -13.06291294097889 ], [ -74.300689697265511, -13.063115119934082 ], [ -74.299880981445312, -13.064028739929199 ], [ -74.298309326171875, -13.063690185546875 ], [ -74.295417785644474, -13.063790321350098 ], [ -74.293975830078125, -13.064192771911564 ], [ -74.290702819824219, -13.065604209899846 ], [ -74.288932800292912, -13.065825462341309 ], [ -74.286773681640625, -13.067890167236328 ], [ -74.283798217773381, -13.072257041931152 ], [ -74.28192138671875, -13.073836326599121 ], [ -74.280929565429631, -13.074311256408691 ], [ -74.278892517089844, -13.074062347412109 ], [ -74.276206970214844, -13.072688102722054 ], [ -74.274528503417912, -13.071317672729435 ], [ -74.272338867187443, -13.068572044372502 ], [ -74.27191162109375, -13.06859016418457 ], [ -74.270744323730355, -13.066750526428223 ], [ -74.270500183105469, -13.065176010131836 ], [ -74.271583557128849, -13.062557220458984 ], [ -74.271553039550781, -13.060259819030705 ], [ -74.273208618164006, -13.057642936706543 ], [ -74.272972106933594, -13.05333137512207 ], [ -74.273155212402344, -13.047408103942814 ], [ -74.272789001464844, -13.043121337890568 ], [ -74.271903991699219, -13.040010452270451 ], [ -74.271797180175781, -13.034891128539982 ], [ -74.271331787109375, -13.03046703338623 ], [ -74.269645690917969, -13.026375770568791 ], [ -74.269790649413949, -13.025029182434025 ], [ -74.270378112792969, -13.023809432983342 ], [ -74.271003723144474, -13.023096084594727 ], [ -74.273796081542855, -13.021359443664551 ], [ -74.274658203125, -13.020485877990723 ], [ -74.274803161621094, -13.019987106323185 ], [ -74.274574279785156, -13.019173622131348 ], [ -74.272918701171818, -13.017389297485352 ], [ -74.273155212402344, -13.015770912170353 ], [ -74.273750305175781, -13.014883995056096 ], [ -74.276367187499943, -13.012904167175293 ], [ -74.278366088867131, -13.010152816772461 ], [ -74.278419494628906, -13.006524085998478 ], [ -74.27923583984375, -13.004158973693791 ], [ -74.281639099121094, -13.001932144165039 ], [ -74.283012390136662, -13.000317573547306 ], [ -74.290000915527287, -12.990633964538517 ], [ -74.291191101074219, -12.987708091735783 ], [ -74.292076110839787, -12.983633041381836 ], [ -74.292770385742131, -12.982650756835881 ], [ -74.292808532714844, -12.978753089904785 ], [ -74.294013977050668, -12.974740028381348 ], [ -74.296844482421818, -12.970788002014046 ], [ -74.297966003417969, -12.96804141998291 ], [ -74.298164367675781, -12.96240043640131 ], [ -74.298553466796875, -12.959871292114258 ], [ -74.29888916015625, -12.959130287170353 ], [ -74.299140930175724, -12.954835891723633 ], [ -74.299949645996094, -12.949919700622502 ], [ -74.300094604492131, -12.946221351623535 ], [ -74.299713134765568, -12.944014549255314 ], [ -74.299049377441349, -12.942891120910645 ], [ -74.296699523925781, -12.940170288085938 ], [ -74.295997619628849, -12.937989234924316 ], [ -74.295417785644474, -12.937074661254883 ], [ -74.296211242675781, -12.936300277709961 ], [ -74.297752380371094, -12.933601379394531 ], [ -74.298591613769418, -12.932527542114258 ], [ -74.301887512207031, -12.931217193603516 ], [ -74.30426025390625, -12.929613113403207 ], [ -74.306953430175724, -12.929231643676644 ], [ -74.310821533203125, -12.929239273071289 ], [ -74.313400268554688, -12.929664611816406 ], [ -74.316360473632812, -12.930684089660645 ], [ -74.317558288574162, -12.929972648620605 ], [ -74.318374633789062, -12.92906379699707 ], [ -74.319290161132812, -12.928767204284611 ], [ -74.321754455566349, -12.928601264953556 ], [ -74.324348449707031, -12.929467201232853 ], [ -74.325172424316349, -12.929424285888672 ], [ -74.325897216796875, -12.929026603698674 ], [ -74.326652526855469, -12.928252220153809 ], [ -74.327774047851449, -12.926553726196232 ], [ -74.329940795898381, -12.920034408569336 ], [ -74.330253601074105, -12.918324470519963 ], [ -74.330307006835938, -12.915764808654785 ], [ -74.329833984375, -12.914362907409611 ], [ -74.327438354492188, -12.911771774291935 ], [ -74.326797485351506, -12.910023689269963 ], [ -74.325561523437443, -12.905012130737305 ], [ -74.325195312499943, -12.904449462890568 ], [ -74.323532104492188, -12.903042793273869 ], [ -74.321556091308537, -12.898018836974984 ], [ -74.3209228515625, -12.896995544433594 ], [ -74.320884704589787, -12.891344070434513 ], [ -74.320983886718693, -12.890151977539006 ], [ -74.321205139160156, -12.889971733093262 ], [ -74.321334838867188, -12.887123107910043 ], [ -74.320838928222656, -12.8855943679809 ], [ -74.320755004882812, -12.883179664611816 ], [ -74.320991516113224, -12.882259368896371 ], [ -74.321922302246037, -12.880768775939941 ], [ -74.321983337402344, -12.87887001037592 ], [ -74.324920654296875, -12.875180244445801 ], [ -74.328231811523381, -12.869915008544922 ], [ -74.328742980957031, -12.867945671081543 ], [ -74.329063415527344, -12.865134239196721 ], [ -74.331550598144531, -12.858732223510685 ], [ -74.332534790039006, -12.855631828307992 ], [ -74.33306884765625, -12.851771354675293 ], [ -74.332756042480469, -12.848424911498967 ], [ -74.330917358398381, -12.84307861328125 ], [ -74.331085205078068, -12.840781211853027 ], [ -74.331863403320256, -12.838485717773324 ], [ -74.331771850585881, -12.837681770324707 ], [ -74.331268310546818, -12.836566925048771 ], [ -74.330101013183594, -12.835235595703068 ], [ -74.327377319335881, -12.834342956542969 ], [ -74.324783325195256, -12.833972930908146 ], [ -74.3223876953125, -12.834510803222656 ], [ -74.321907043457031, -12.834925651550236 ], [ -74.320938110351562, -12.834905624389592 ], [ -74.320053100585938, -12.835253715515137 ], [ -74.318817138671875, -12.835132598876896 ], [ -74.318237304687386, -12.835477828979435 ], [ -74.315513610839844, -12.835124015807992 ], [ -74.312515258788949, -12.835089683532658 ], [ -74.311393737792969, -12.833877563476506 ], [ -74.308952331542912, -12.829040527343693 ], [ -74.308181762695312, -12.828297615051213 ], [ -74.307144165039006, -12.827897071838322 ], [ -74.305053710937443, -12.827718734741211 ], [ -74.3035888671875, -12.827897071838322 ], [ -74.3009033203125, -12.8302125930785 ], [ -74.2996826171875, -12.830807685852051 ], [ -74.2982177734375, -12.831191062927189 ], [ -74.296310424804688, -12.831032752990723 ], [ -74.294273376464787, -12.829607009887695 ], [ -74.294143676757812, -12.829264640808105 ], [ -74.294532775878906, -12.828042984008675 ], [ -74.294471740722599, -12.827554702758732 ], [ -74.292335510253906, -12.825092315673828 ], [ -74.294235229492188, -12.823358535766545 ], [ -74.294952392578068, -12.822203636169434 ], [ -74.29559326171875, -12.820432662963867 ], [ -74.295585632324219, -12.819338798522949 ], [ -74.295326232910099, -12.818425178527832 ], [ -74.293807983398381, -12.816349029540959 ], [ -74.293922424316406, -12.814325332641602 ], [ -74.294639587402344, -12.81257152557373 ], [ -74.296874999999886, -12.810209274291879 ], [ -74.298995971679688, -12.807305335998478 ], [ -74.299308776855469, -12.806546211242619 ], [ -74.299362182617188, -12.805596351623478 ], [ -74.298400878906136, -12.804471969604435 ], [ -74.297195434570312, -12.801170349121037 ], [ -74.295806884765568, -12.799375534057617 ], [ -74.295227050781193, -12.799255371093693 ], [ -74.294456481933537, -12.799498558044434 ], [ -74.290847778320256, -12.801467895507756 ], [ -74.287719726562386, -12.801948547363224 ], [ -74.287055969238281, -12.8018922805785 ], [ -74.286445617675724, -12.801539421081486 ], [ -74.285209655761662, -12.800360679626465 ], [ -74.284744262695256, -12.799580574035588 ], [ -74.284950256347599, -12.798295974731445 ], [ -74.285987854003849, -12.796536445617619 ], [ -74.286430358886719, -12.79400634765625 ], [ -74.285507202148381, -12.790088653564453 ], [ -74.285446166992188, -12.786849975585938 ], [ -74.286705017089844, -12.78330135345459 ], [ -74.288398742675781, -12.780394554138184 ], [ -74.287979125976506, -12.779390335082951 ], [ -74.286323547363281, -12.777776718139592 ], [ -74.285659790039062, -12.776300430297852 ], [ -74.285713195800724, -12.774825096130314 ], [ -74.286819458007812, -12.773436546325684 ], [ -74.289405822753849, -12.772286415100098 ], [ -74.290420532226562, -12.771609306335336 ], [ -74.293190002441406, -12.767468452453613 ], [ -74.293174743652344, -12.766517639160156 ], [ -74.292594909667969, -12.764979362487793 ], [ -74.289649963378906, -12.762404441833496 ], [ -74.288932800292912, -12.761081695556641 ], [ -74.288673400878793, -12.759769439697266 ], [ -74.288993835449219, -12.758196830749512 ], [ -74.291481018066406, -12.753828048705998 ], [ -74.292984008789062, -12.751599311828556 ], [ -74.294784545898438, -12.750128746032658 ], [ -74.300254821777344, -12.747639656066895 ], [ -74.302001953124943, -12.746568679809513 ], [ -74.3056640625, -12.74332332611084 ], [ -74.308280944824219, -12.740045547485352 ], [ -74.310234069824219, -12.738559722900391 ], [ -74.311943054199105, -12.738066673278809 ], [ -74.315368652343693, -12.738095283508301 ], [ -74.316558837890625, -12.737752914428711 ], [ -74.31695556640625, -12.738097190856934 ], [ -74.317352294921818, -12.738136291503849 ], [ -74.318748474121094, -12.73943901062006 ], [ -74.319984436035156, -12.741967201232853 ], [ -74.323478698730412, -12.743828773498535 ], [ -74.324783325195256, -12.744846343994141 ], [ -74.326393127441406, -12.744676589965763 ], [ -74.330673217773438, -12.742527961730957 ], [ -74.331489562988224, -12.742024421691895 ], [ -74.332160949706918, -12.74117374420166 ], [ -74.332015991210938, -12.740506172180176 ], [ -74.331031799316406, -12.739499092101994 ], [ -74.330833435058594, -12.738922119140511 ], [ -74.330955505371094, -12.738095283508301 ], [ -74.331474304199162, -12.73712158203125 ], [ -74.332275390625, -12.736344337463322 ], [ -74.333351135253906, -12.735778808593636 ], [ -74.335296630859318, -12.735857009887695 ], [ -74.336471557617188, -12.73552417755127 ], [ -74.340499877929688, -12.733002662658635 ], [ -74.341224670410156, -12.732019424438477 ], [ -74.341522216796875, -12.730862617492676 ], [ -74.340400695800781, -12.728256225585938 ], [ -74.340415954589844, -12.727569580078068 ], [ -74.340728759765568, -12.72699069976801 ], [ -74.34295654296875, -12.724076271057129 ], [ -74.347450256347656, -12.720760345458984 ], [ -74.349044799804688, -12.718576431274414 ], [ -74.349266052246094, -12.71656608581543 ], [ -74.348037719726562, -12.710488319396973 ], [ -74.345268249511719, -12.704334259033203 ], [ -74.343338012695312, -12.699301719665471 ], [ -74.342247009277287, -12.695968627929688 ], [ -74.341545104980469, -12.6925048828125 ], [ -74.340965270996094, -12.690750122070256 ], [ -74.340217590332031, -12.689952850341797 ], [ -74.338272094726562, -12.688862800598088 ], [ -74.337059020996094, -12.688849449157715 ], [ -74.334022521972656, -12.689402580261117 ], [ -74.332756042480469, -12.68924617767334 ], [ -74.330757141113281, -12.687315940856934 ], [ -74.330345153808537, -12.68660926818842 ], [ -74.330398559570312, -12.686211585998421 ], [ -74.328201293945312, -12.682298660278263 ], [ -74.327522277832031, -12.679856300354004 ], [ -74.327453613281193, -12.671229362487793 ], [ -74.327621459960938, -12.66611289978016 ], [ -74.327903747558594, -12.663843154907227 ], [ -74.328895568847599, -12.661052703857422 ], [ -74.330970764160156, -12.658370971679688 ], [ -74.331932067871094, -12.656293869018555 ], [ -74.332023620605469, -12.653599739074707 ], [ -74.331558227539006, -12.651492118835449 ], [ -74.331382751464787, -12.648525238037109 ], [ -74.331459045410099, -12.646518707275391 ], [ -74.331787109375, -12.645334243774414 ], [ -74.333419799804688, -12.643032073974609 ], [ -74.337455749511719, -12.639777183532658 ], [ -74.339004516601506, -12.637910842895508 ], [ -74.340293884277344, -12.635672569274902 ], [ -74.341308593749943, -12.633304595947266 ], [ -74.341789245605412, -12.631777763366642 ], [ -74.341743469238281, -12.630421638488656 ], [ -74.342216491699219, -12.626879692077637 ], [ -74.342048645019474, -12.623785018920898 ], [ -74.341178894042969, -12.622580528259277 ], [ -74.339569091796818, -12.621817588806152 ], [ -74.339134216308594, -12.621336936950684 ], [ -74.338813781738224, -12.620285987853947 ], [ -74.338829040527287, -12.617862701416016 ], [ -74.33856201171875, -12.617230415344181 ], [ -74.336860656738281, -12.615872383117676 ], [ -74.335571289062443, -12.615397453307992 ], [ -74.3306884765625, -12.616106033325138 ], [ -74.329185485839787, -12.61600399017334 ], [ -74.328216552734318, -12.615541458129826 ], [ -74.326179504394531, -12.613918304443359 ], [ -74.324111938476562, -12.611758232116642 ], [ -74.323364257812443, -12.609887123107853 ], [ -74.323570251464787, -12.60827732086176 ], [ -74.324249267578125, -12.606088638305607 ], [ -74.324493408203125, -12.604110717773438 ], [ -74.325531005859375, -12.603029251098633 ], [ -74.326484680175781, -12.602903366088867 ], [ -74.327087402343693, -12.603249549865723 ], [ -74.328315734863224, -12.605033874511719 ], [ -74.328987121581974, -12.605532646179199 ], [ -74.330322265624943, -12.605563163757267 ], [ -74.331680297851506, -12.605233192443791 ], [ -74.333473205566349, -12.60425853729248 ], [ -74.340690612792969, -12.601873397827148 ], [ -74.344467163085938, -12.599684715270996 ], [ -74.347099304199162, -12.598525047302246 ], [ -74.350837707519474, -12.597718238830566 ], [ -74.353736877441406, -12.59649658203125 ], [ -74.357048034667912, -12.596649169921875 ], [ -74.35821533203125, -12.596499443054142 ], [ -74.359428405761662, -12.59557056427002 ], [ -74.361305236816406, -12.594761848449707 ], [ -74.362518310546875, -12.593667984008789 ], [ -74.363113403320312, -12.592757225036621 ], [ -74.364479064941349, -12.592147827148381 ], [ -74.365524291992131, -12.591291427612305 ], [ -74.367607116699162, -12.58812141418457 ], [ -74.367843627929688, -12.586519241333008 ], [ -74.368515014648438, -12.584904670715275 ], [ -74.368659973144474, -12.583954811096135 ], [ -74.368309020996094, -12.582679748535099 ], [ -74.366035461425781, -12.578532218933105 ], [ -74.366226196289062, -12.576370239257812 ], [ -74.366798400878906, -12.575432777404785 ], [ -74.371009826660156, -12.57429313659668 ], [ -74.372383117675724, -12.573419570922852 ], [ -74.378479003906193, -12.57139873504633 ], [ -74.381202697753906, -12.571541786193791 ], [ -74.382873535156193, -12.571139335632267 ], [ -74.384590148925724, -12.569857597351074 ], [ -74.386878967285099, -12.567241668701115 ], [ -74.387107849121094, -12.564286231994629 ], [ -74.38702392578125, -12.562948226928711 ], [ -74.386688232421818, -12.562519073486328 ], [ -74.386695861816349, -12.561833381652775 ], [ -74.385437011718693, -12.561044692993164 ], [ -74.384574890136719, -12.560165405273438 ], [ -74.3837890625, -12.558581352233887 ], [ -74.383460998535099, -12.55715179443348 ], [ -74.383529663085881, -12.554844856262207 ], [ -74.383880615234375, -12.5538330078125 ], [ -74.383956909179688, -12.549249649047795 ], [ -74.384971618652287, -12.544224739074707 ], [ -74.385810852050781, -12.542048454284611 ], [ -74.386749267578125, -12.540584564208984 ], [ -74.389022827148438, -12.539051055908203 ], [ -74.389495849609375, -12.537788391113224 ], [ -74.390235900878849, -12.53697681427002 ], [ -74.392539978027344, -12.535786628723088 ], [ -74.393661499023381, -12.534805297851506 ], [ -74.394554138183594, -12.533123016357308 ], [ -74.394538879394531, -12.531766891479492 ], [ -74.394889831542912, -12.530746459960938 ], [ -74.396247863769418, -12.529402732849121 ], [ -74.398468017578125, -12.528042793273926 ], [ -74.39935302734375, -12.525647163391113 ], [ -74.400497436523438, -12.524303436279297 ], [ -74.399955749511662, -12.52276420593256 ], [ -74.397994995117188, -12.520181655883732 ], [ -74.397239685058594, -12.51844310760498 ], [ -74.397171020507756, -12.515460014343262 ], [ -74.397476196289006, -12.512929916381779 ], [ -74.398773193359375, -12.51099681854248 ], [ -74.398986816406193, -12.510247230529728 ], [ -74.398841857910156, -12.508476257324219 ], [ -74.398101806640625, -12.504775047302132 ], [ -74.398292541503906, -12.503607749938908 ], [ -74.399253845214844, -12.501549720764103 ], [ -74.402336120605412, -12.496844291686955 ], [ -74.404693603515625, -12.495746612548828 ], [ -74.406097412109375, -12.495695114135742 ], [ -74.408393859863281, -12.497256278991699 ], [ -74.409881591796818, -12.497431755065804 ], [ -74.411148071289062, -12.497215270996094 ], [ -74.412353515624943, -12.496323585510197 ], [ -74.41326904296875, -12.495167732238713 ], [ -74.414367675781136, -12.493245124816838 ], [ -74.414817810058537, -12.491644859313965 ], [ -74.414482116699219, -12.48946571350092 ], [ -74.412811279296818, -12.486910820007267 ], [ -74.411796569824219, -12.484331130981388 ], [ -74.411735534667969, -12.48121261596674 ], [ -74.411293029785099, -12.479811668395996 ], [ -74.409187316894474, -12.478360176086426 ], [ -74.405166625976562, -12.476687431335449 ], [ -74.402664184570312, -12.474203109741154 ], [ -74.402343749999943, -12.47324275970459 ], [ -74.402618408203068, -12.471235275268555 ], [ -74.401298522949162, -12.467706680297852 ], [ -74.401496887207031, -12.46569919586176 ], [ -74.405578613281193, -12.461667060852051 ], [ -74.406066894531193, -12.459244728088379 ], [ -74.407783508300724, -12.455876350402775 ], [ -74.408805847167912, -12.452142715454102 ], [ -74.410293579101562, -12.45075511932373 ], [ -74.412345886230412, -12.449918746948242 ], [ -74.415779113769474, -12.449989318847656 ], [ -74.416603088378906, -12.449809074401799 ], [ -74.417213439941349, -12.449423789977971 ], [ -74.419471740722656, -12.446860313415471 ], [ -74.420829772949162, -12.44605827331543 ], [ -74.421867370605412, -12.445128440856934 ], [ -74.422576904296875, -12.444911003112793 ], [ -74.423324584960881, -12.445013999938965 ], [ -74.425521850585881, -12.446002960205078 ], [ -74.427795410156193, -12.445528984069767 ], [ -74.42901611328125, -12.445494651794434 ], [ -74.431289672851562, -12.446928024291935 ], [ -74.432632446289062, -12.447295188903809 ], [ -74.43477630615223, -12.44727897644043 ], [ -74.437416076660099, -12.446411132812443 ], [ -74.441802978515568, -12.447639465331974 ], [ -74.445617675781193, -12.447898864746094 ], [ -74.447151184081974, -12.447541236877441 ], [ -74.448661804199219, -12.446821212768555 ], [ -74.451744079589787, -12.44432258605957 ], [ -74.454193115234375, -12.443731307983398 ], [ -74.455581665039062, -12.443940162658635 ], [ -74.458786010742131, -12.445837020874023 ], [ -74.459922790527287, -12.446091651916504 ], [ -74.462776184082031, -12.445645332336426 ], [ -74.466751098632812, -12.444379806518441 ], [ -74.468231201171818, -12.444307327270508 ], [ -74.471588134765511, -12.443694114685059 ], [ -74.474105834960938, -12.443696022033691 ], [ -74.47808837890625, -12.444620132446289 ], [ -74.483673095703068, -12.444531440734806 ], [ -74.486145019531193, -12.445602416992188 ], [ -74.488716125488281, -12.446103096008301 ], [ -74.492713928222656, -12.446329116821289 ], [ -74.495208740234318, -12.446114540100098 ], [ -74.497528076171761, -12.446247100830078 ], [ -74.498840332031193, -12.446709632873478 ], [ -74.501052856445256, -12.449056625366097 ], [ -74.501541137695312, -12.449292182922306 ], [ -74.503433227539006, -12.449448585510254 ], [ -74.505508422851506, -12.448169708251953 ], [ -74.506759643554631, -12.447908401489144 ], [ -74.507186889648438, -12.448062896728516 ], [ -74.508216857910156, -12.446593284606877 ], [ -74.510475158691349, -12.444632530212402 ], [ -74.516532897949219, -12.441143989562988 ], [ -74.520858764648381, -12.436785697937012 ], [ -74.521476745605469, -12.435573577880859 ], [ -74.521369934081918, -12.434885025024414 ], [ -74.520668029785099, -12.433818817138615 ], [ -74.520072937011719, -12.43341064453125 ], [ -74.518753051757812, -12.433064460754395 ], [ -74.517875671386719, -12.432031631469727 ], [ -74.517127990722656, -12.430303573608398 ], [ -74.516899108886719, -12.4287109375 ], [ -74.517799377441406, -12.41874885559082 ], [ -74.519462585449105, -12.414891242980843 ], [ -74.519836425781193, -12.412404060363713 ], [ -74.519912719726506, -12.40980052947998 ], [ -74.520172119140625, -12.408862113952637 ], [ -74.520889282226506, -12.408164978027287 ], [ -74.521598815917969, -12.407965660095158 ], [ -74.523193359375, -12.408312797546387 ], [ -74.525985717773438, -12.409465789794922 ], [ -74.528503417968693, -12.41125297546381 ], [ -74.529716491699219, -12.411697387695256 ], [ -74.530731201171875, -12.411636352539062 ], [ -74.532859802246094, -12.410419464111328 ], [ -74.534194946289062, -12.410113334655762 ], [ -74.534996032714787, -12.409373283386174 ], [ -74.535255432128906, -12.408821105956974 ], [ -74.5350341796875, -12.406787872314453 ], [ -74.535270690917912, -12.405195236206055 ], [ -74.536994934081974, -12.403237342834416 ], [ -74.537605285644531, -12.401653289794922 ], [ -74.539009094238224, -12.400039672851562 ], [ -74.539039611816406, -12.398518562316895 ], [ -74.53853607177723, -12.395075798034611 ], [ -74.538742065429688, -12.392660140991154 ], [ -74.541152954101562, -12.390394210815373 ], [ -74.541717529296875, -12.389065742492676 ], [ -74.541893005371094, -12.387901306152344 ], [ -74.542266845703125, -12.387421607971078 ], [ -74.543212890625, -12.386845588684025 ], [ -74.54534912109375, -12.386404037475586 ], [ -74.546699523925781, -12.385330200195312 ], [ -74.547767639160099, -12.383984565734806 ], [ -74.548019409179688, -12.381967544555664 ], [ -74.547973632812443, -12.380079269409123 ], [ -74.547630310058594, -12.378649711608887 ], [ -74.548187255859375, -12.377067565917912 ], [ -74.547721862792969, -12.37554836273182 ], [ -74.548377990722656, -12.374184608459473 ], [ -74.549766540527287, -12.373346328735352 ], [ -74.552719116210881, -12.3724365234375 ], [ -74.554977416992188, -12.370099067687988 ], [ -74.55670166015625, -12.369305610656625 ], [ -74.557304382324162, -12.368202209472599 ], [ -74.55755615234375, -12.367164611816349 ], [ -74.558151245117131, -12.366370201110783 ], [ -74.560913085937443, -12.36462211608881 ], [ -74.563323974609318, -12.361575126647949 ], [ -74.564208984375, -12.360926628112736 ], [ -74.564826965331974, -12.360766410827523 ], [ -74.56610107421875, -12.361236572265568 ], [ -74.567031860351506, -12.362124443054199 ], [ -74.567825317382812, -12.364205360412598 ], [ -74.568840026855412, -12.365806579589844 ], [ -74.569175720214844, -12.367019653320312 ], [ -74.570426940917969, -12.368795394897461 ], [ -74.571083068847656, -12.370930671691895 ], [ -74.5726318359375, -12.37281322479248 ], [ -74.573371887207031, -12.373174667358398 ], [ -74.573890686035099, -12.373149871826172 ], [ -74.574607849121094, -12.371900558471566 ], [ -74.574790954589844, -12.367769241332951 ], [ -74.57489013671875, -12.360409736633244 ], [ -74.5743408203125, -12.354647636413517 ], [ -74.574455261230412, -12.351241111755371 ], [ -74.577415466308537, -12.339758872985783 ], [ -74.578872680664006, -12.33687782287592 ], [ -74.578933715820312, -12.335357666015625 ], [ -74.580551147460938, -12.332537651061898 ], [ -74.581047058105412, -12.33110332489008 ], [ -74.581008911132812, -12.329482078552189 ], [ -74.580116271972543, -12.324618339538517 ], [ -74.57973480224598, -12.323431015014592 ], [ -74.578704833984375, -12.321730613708439 ], [ -74.576606750488281, -12.320631980895996 ], [ -74.575210571289062, -12.31910324096674 ], [ -74.574882507324219, -12.318079948425293 ], [ -74.574714660644531, -12.315574645996037 ], [ -74.573822021484261, -12.313204765319824 ], [ -74.572120666503906, -12.310887336730957 ], [ -74.566383361816293, -12.304727554321232 ], [ -74.565986633300724, -12.303716659545785 ], [ -74.565841674804688, -12.301834106445256 ], [ -74.565559387207031, -12.300974845886117 ], [ -74.564010620117188, -12.300030708312931 ], [ -74.56201171875, -12.299812316894531 ], [ -74.561187744140625, -12.29913330078125 ], [ -74.560386657714844, -12.298000335693359 ], [ -74.559425354003906, -12.295873641967717 ], [ -74.559059143066406, -12.292934417724609 ], [ -74.557868957519474, -12.291014671325684 ], [ -74.556961059570312, -12.289963722229004 ], [ -74.556152343749943, -12.289409637451172 ], [ -74.553451538085938, -12.288972854614258 ], [ -74.551307678222599, -12.288190841674805 ], [ -74.548973083496094, -12.290133476257324 ], [ -74.542259216308594, -12.294135093688965 ], [ -74.541099548339787, -12.294369697570801 ], [ -74.537635803222656, -12.294246673583984 ], [ -74.534690856933537, -12.294728279113656 ], [ -74.533515930175781, -12.295142173767033 ], [ -74.532478332519531, -12.295955657958984 ], [ -74.531394958496094, -12.297327995300236 ], [ -74.530487060546875, -12.298700332641602 ], [ -74.529937744140568, -12.300327301025277 ], [ -74.529243469238281, -12.301150321960392 ], [ -74.528068542480469, -12.301635742187443 ], [ -74.526542663574219, -12.301885604858342 ], [ -74.525321960449219, -12.302835464477482 ], [ -74.52294921875, -12.304177284240723 ], [ -74.522193908691349, -12.304257392883244 ], [ -74.520980834960881, -12.303929328918457 ], [ -74.519126892089844, -12.30433177947998 ], [ -74.518394470214787, -12.305027008056641 ], [ -74.516441345214844, -12.308062553405762 ], [ -74.516242980957031, -12.310195922851562 ], [ -74.516059875488281, -12.31080245971674 ], [ -74.515434265136662, -12.311443328857422 ], [ -74.514778137206974, -12.311784744262638 ], [ -74.5115966796875, -12.311724662780705 ], [ -74.509811401367131, -12.312129020690804 ], [ -74.508071899414062, -12.312198638916016 ], [ -74.507087707519531, -12.311978340148869 ], [ -74.506019592285156, -12.310909271240178 ], [ -74.505279541015625, -12.309562683105412 ], [ -74.50311279296875, -12.303362846374512 ], [ -74.499877929687443, -12.29753303527832 ], [ -74.493408203124943, -12.292901992797795 ], [ -74.492706298828125, -12.29207706451416 ], [ -74.492294311523438, -12.290691375732365 ], [ -74.492530822753906, -12.287810325622445 ], [ -74.492156982421818, -12.283204078674316 ], [ -74.491851806640625, -12.282264709472656 ], [ -74.490707397460938, -12.281113624572754 ], [ -74.488494873046875, -12.279988288879395 ], [ -74.486503601074219, -12.279786109924316 ], [ -74.482742309570256, -12.278304100036621 ], [ -74.478073120117074, -12.275591850280705 ], [ -74.474143981933537, -12.274065017700195 ], [ -74.471244812011719, -12.273553848266545 ], [ -74.465202331542969, -12.27380466461176 ], [ -74.463180541992131, -12.273699760436898 ], [ -74.460258483886719, -12.272638320922852 ], [ -74.456321716308537, -12.269988059997559 ], [ -74.452560424804688, -12.269593238830566 ], [ -74.451850891113281, -12.269680023193303 ], [ -74.450233459472656, -12.270564079284668 ], [ -74.448387145996037, -12.272702217102051 ], [ -74.448715209960938, -12.279911041259709 ], [ -74.447807312011662, -12.287098884582406 ], [ -74.448478698730412, -12.290934562683049 ], [ -74.448585510253849, -12.292715072631779 ], [ -74.448226928710938, -12.294443130493107 ], [ -74.447532653808537, -12.296024322509709 ], [ -74.446083068847656, -12.297531127929631 ], [ -74.444831848144531, -12.299950599670353 ], [ -74.443283081054688, -12.301737785339242 ], [ -74.440620422363281, -12.303677558898869 ], [ -74.439689636230469, -12.304056167602539 ], [ -74.438766479492131, -12.304089546203613 ], [ -74.435325622558537, -12.302835464477482 ], [ -74.433769226074219, -12.302667617797738 ], [ -74.426010131835938, -12.305203437805119 ], [ -74.424926757812443, -12.305379867553711 ], [ -74.423728942871094, -12.305359840393066 ], [ -74.422271728515568, -12.304805755615178 ], [ -74.4208984375, -12.304639816284123 ], [ -74.419723510742188, -12.304130554199162 ], [ -74.417282104492188, -12.304397583007756 ], [ -74.416038513183594, -12.304052352905273 ], [ -74.415168762207031, -12.303018569946232 ], [ -74.414093017578125, -12.302726745605469 ], [ -74.413291931152287, -12.301196098327637 ], [ -74.411933898925781, -12.300325393676758 ], [ -74.410285949707031, -12.297718048095646 ], [ -74.409774780273381, -12.296550750732422 ], [ -74.409370422363281, -12.294597625732365 ], [ -74.408348083496037, -12.292270660400391 ], [ -74.405242919921875, -12.288464546203613 ], [ -74.4033203125, -12.28708553314209 ], [ -74.401107788085881, -12.28623104095459 ], [ -74.399810791015625, -12.285199165344238 ], [ -74.398101806640625, -12.282843589782658 ], [ -74.396461486816406, -12.281897544860726 ], [ -74.395004272460881, -12.279678344726562 ], [ -74.391387939453125, -12.275250434875431 ], [ -74.387123107910156, -12.274255752563477 ], [ -74.385887145996094, -12.272343635559082 ], [ -74.385078430175724, -12.270418167114201 ], [ -74.384307861328068, -12.269755363464299 ], [ -74.385047912597656, -12.268391609191838 ], [ -74.386383056640625, -12.267336845397949 ], [ -74.387077331542912, -12.265836715698185 ], [ -74.389762878417855, -12.264242172241211 ], [ -74.390647888183594, -12.262672424316406 ], [ -74.392234802246037, -12.261722564697266 ], [ -74.392593383789006, -12.261082649230957 ], [ -74.393867492675781, -12.258058547973633 ], [ -74.393875122070312, -12.252540588378849 ], [ -74.393203735351562, -12.251335144042969 ], [ -74.39205169677723, -12.251017570495605 ], [ -74.391021728515625, -12.250075340270996 ], [ -74.389572143554574, -12.247404098510742 ], [ -74.388160705566406, -12.245811462402344 ], [ -74.387542724609318, -12.24408054351801 ], [ -74.385551452636662, -12.241769790649414 ], [ -74.385566711425668, -12.239303588867188 ], [ -74.382675170898381, -12.236825942993107 ], [ -74.381866455078125, -12.235605239868107 ], [ -74.380783081054631, -12.234733581542969 ], [ -74.380241394042969, -12.233267784118652 ], [ -74.3795166015625, -12.232299804687443 ], [ -74.378219604492131, -12.231807708740234 ], [ -74.376853942871037, -12.230510711669865 ], [ -74.37615966796875, -12.229451179504395 ], [ -74.376106262206974, -12.228918075561467 ], [ -74.37799072265625, -12.223587036132812 ], [ -74.377929687499943, -12.222572326660099 ], [ -74.377372741699219, -12.220637321472111 ], [ -74.377197265625, -12.216296195983887 ], [ -74.377403259277344, -12.214389801025334 ], [ -74.378288269042912, -12.211380004882812 ], [ -74.378875732421818, -12.210333824157715 ], [ -74.379974365234375, -12.209701538085881 ], [ -74.380653381347656, -12.208707809448185 ], [ -74.380691528320256, -12.207784652709961 ], [ -74.380310058593693, -12.206582069396916 ], [ -74.380508422851506, -12.205316543579102 ], [ -74.381439208984318, -12.204277992248535 ], [ -74.382827758789062, -12.203559875488281 ], [ -74.38360595703125, -12.202765464782715 ], [ -74.38427734375, -12.201148986816293 ], [ -74.384574890136719, -12.198860168456918 ], [ -74.386230468749943, -12.197851181030217 ], [ -74.387100219726562, -12.197011947631836 ], [ -74.387428283691406, -12.196254730224553 ], [ -74.387367248535099, -12.194155693054142 ], [ -74.389060974121037, -12.192994117736816 ], [ -74.389015197753906, -12.191547393798828 ], [ -74.387657165527287, -12.189788818359318 ], [ -74.387535095214787, -12.187599182128849 ], [ -74.385879516601562, -12.186115264892578 ], [ -74.384513854980412, -12.185514450073242 ], [ -74.383308410644531, -12.185338020324593 ], [ -74.381889343261719, -12.186323165893555 ], [ -74.381347656249943, -12.186185836791935 ], [ -74.380958557128849, -12.18577766418457 ], [ -74.380325317382812, -12.184139251708928 ], [ -74.380294799804631, -12.182656288146916 ], [ -74.382171630859375, -12.179713249206543 ], [ -74.382415771484318, -12.17856502532959 ], [ -74.381843566894474, -12.178084373474121 ], [ -74.380531311035156, -12.177637100219613 ], [ -74.378829956054688, -12.175825119018441 ], [ -74.377929687499943, -12.175741195678711 ], [ -74.376335144042969, -12.176128387451115 ], [ -74.371894836425724, -12.178006172180176 ], [ -74.369293212890625, -12.177801132202092 ], [ -74.367996215820256, -12.177066802978516 ], [ -74.366447448730469, -12.175264358520508 ], [ -74.365615844726506, -12.175090789794865 ], [ -74.362724304199219, -12.175209999084416 ], [ -74.35919189453125, -12.172560691833496 ], [ -74.355636596679688, -12.171487808227539 ], [ -74.352577209472656, -12.168395042419377 ], [ -74.350677490234375, -12.167658805847168 ], [ -74.348579406738281, -12.16783428192133 ], [ -74.348228454589844, -12.168493270874023 ], [ -74.348052978515568, -12.169751167297363 ], [ -74.345840454101562, -12.170904159545898 ], [ -74.345649719238281, -12.17262077331543 ], [ -74.345283508300781, -12.173053741455078 ], [ -74.345809936523438, -12.1737060546875 ], [ -74.347114562988224, -12.174593925476017 ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-CAJ", "NAME_0": "Peru", "ID_1": 6, "NAME_1": "Cajamarca", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": "Caxamarca" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.714187622070256, -4.62458419799799 ], [ -78.711402893066349, -4.624711036682129 ], [ -78.709930419921875, -4.624618053436279 ], [ -78.708183288574162, -4.624454021453801 ], [ -78.707649230957031, -4.624349117279053 ], [ -78.705986022949162, -4.624028205871525 ], [ -78.704376220703011, -4.623424053192082 ], [ -78.702339172363224, -4.626445770263672 ], [ -78.700813293456974, -4.629971981048584 ], [ -78.700332641601562, -4.63108587265009 ], [ -78.693809509277344, -4.639416217803955 ], [ -78.691650390625, -4.642643928527832 ], [ -78.690299987792969, -4.645531177520752 ], [ -78.687324523925781, -4.654266834259033 ], [ -78.684722900390568, -4.6593980789184 ], [ -78.682617187499943, -4.662668228149357 ], [ -78.679595947265625, -4.665482997894287 ], [ -78.677825927734375, -4.665926933288517 ], [ -78.675743103027287, -4.665747165679875 ], [ -78.674888610839787, -4.665408134460449 ], [ -78.667633056640568, -4.656210899352971 ], [ -78.666229248046761, -4.654712200164681 ], [ -78.662078857421875, -4.651834964752197 ], [ -78.660568237304631, -4.651247024536133 ], [ -78.658279418945256, -4.651113033294621 ], [ -78.655548095703011, -4.651418209075871 ], [ -78.653526306152287, -4.652430057525635 ], [ -78.651214599609375, -4.65435600280756 ], [ -78.648880004882812, -4.657184123992863 ], [ -78.647956848144531, -4.659023761749211 ], [ -78.647354125976562, -4.661245822906437 ], [ -78.646224975585938, -4.663247108459473 ], [ -78.645614624023381, -4.665932178497314 ], [ -78.645095825195312, -4.666403770446721 ], [ -78.644798278808594, -4.668446063995304 ], [ -78.643966674804688, -4.669822216033936 ], [ -78.643432617187443, -4.672056198120117 ], [ -78.642532348632812, -4.676809787750187 ], [ -78.6419677734375, -4.682065963745117 ], [ -78.641998291015568, -4.691970825195312 ], [ -78.640419006347656, -4.698697090148869 ], [ -78.64009857177723, -4.702345848083496 ], [ -78.639999389648381, -4.718245029449463 ], [ -78.640106201171875, -4.720077037811279 ], [ -78.640617370605469, -4.722098827362061 ], [ -78.640678405761719, -4.724859237670842 ], [ -78.640296936035156, -4.73197698593134 ], [ -78.639617919921818, -4.734661102294922 ], [ -78.638084411621037, -4.73900318145752 ], [ -78.636871337890625, -4.741735935211125 ], [ -78.635231018066349, -4.744497776031437 ], [ -78.631057739257812, -4.758368968963566 ], [ -78.629783630371037, -4.760796070098877 ], [ -78.628311157226562, -4.768027782440186 ], [ -78.627899169921875, -4.772831916809082 ], [ -78.628204345703125, -4.774647235870361 ], [ -78.629318237304631, -4.777925968170166 ], [ -78.631622314453125, -4.783565044403076 ], [ -78.637794494628849, -4.790676116943359 ], [ -78.640869140625, -4.795263767242432 ], [ -78.642623901367188, -4.799513816833496 ], [ -78.643844604492188, -4.804183959960938 ], [ -78.6439208984375, -4.807415962219181 ], [ -78.643531799316293, -4.809929847717285 ], [ -78.638832092285099, -4.819443225860596 ], [ -78.637435913085938, -4.823513984680119 ], [ -78.637138366699162, -4.826006889343262 ], [ -78.636886596679688, -4.832274913787785 ], [ -78.636032104492188, -4.836565971374398 ], [ -78.6358642578125, -4.842788219451904 ], [ -78.636070251464787, -4.84830379486084 ], [ -78.636550903320256, -4.849843978881836 ], [ -78.637321472167912, -4.85126876831049 ], [ -78.644599914550781, -4.858920097351074 ], [ -78.645233154296818, -4.860126018524113 ], [ -78.645896911621037, -4.862605094909668 ], [ -78.646064758300781, -4.866740226745605 ], [ -78.645828247070312, -4.888020038604736 ], [ -78.646682739257812, -4.891130924224854 ], [ -78.647911071777287, -4.903972148895207 ], [ -78.648338317871094, -4.90646314620966 ], [ -78.650108337402287, -4.911705017089787 ], [ -78.651588439941406, -4.919624805450439 ], [ -78.653617858886662, -4.927033901214486 ], [ -78.654464721679631, -4.934577941894531 ], [ -78.655143737792912, -4.937490940093994 ], [ -78.656295776367131, -4.940742969512826 ], [ -78.657371520996094, -4.947102069854679 ], [ -78.657806396484318, -4.964371204376164 ], [ -78.657684326171875, -4.970809936523438 ], [ -78.656593322753849, -4.975987911224365 ], [ -78.654579162597599, -4.981859207153263 ], [ -78.654273986816349, -4.985065937042179 ], [ -78.654335021972656, -4.989218235015812 ], [ -78.655082702636719, -4.990377902984562 ], [ -78.661064147949162, -4.99619722366333 ], [ -78.661972045898438, -5.000370025634766 ], [ -78.662696838378849, -5.006840229034424 ], [ -78.662445068359375, -5.008104801177922 ], [ -78.6619873046875, -5.008918762206918 ], [ -78.661071777343693, -5.009675979614258 ], [ -78.659500122070312, -5.010450839996338 ], [ -78.657730102539006, -5.011002063751164 ], [ -78.654792785644531, -5.011146068572998 ], [ -78.650650024414006, -5.01085376739502 ], [ -78.647262573242188, -5.010309219360352 ], [ -78.637413024902287, -5.008326053619385 ], [ -78.634788513183594, -5.008132934570256 ], [ -78.631546020507812, -5.008278846740723 ], [ -78.630538940429631, -5.008600234985352 ], [ -78.629470825195312, -5.009253978729191 ], [ -78.627151489257812, -5.011416912078857 ], [ -78.625373840332031, -5.012526988983097 ], [ -78.623947143554631, -5.0138258934021 ], [ -78.622520446777287, -5.016271114349308 ], [ -78.62178802490223, -5.018686771392765 ], [ -78.621932983398438, -5.020257949829102 ], [ -78.622726440429631, -5.021481990814209 ], [ -78.624519348144474, -5.025299072265568 ], [ -78.625038146972656, -5.027434825897217 ], [ -78.625343322753906, -5.030080795288086 ], [ -78.625778198242131, -5.031188011169377 ], [ -78.627761840820256, -5.033839225769043 ], [ -78.629974365234318, -5.036139011383 ], [ -78.632308959960938, -5.037840843200684 ], [ -78.638870239257812, -5.041676998138428 ], [ -78.642936706542912, -5.042703151702824 ], [ -78.645454406738281, -5.043725967407227 ], [ -78.64910888671875, -5.045808792114258 ], [ -78.653083801269531, -5.047694206237736 ], [ -78.660186767578068, -5.052391052246037 ], [ -78.662971496581974, -5.054643154144287 ], [ -78.664321899413949, -5.056005954742432 ], [ -78.668518066406136, -5.061174869537354 ], [ -78.671363830566349, -5.063893795013428 ], [ -78.674072265625, -5.067119121551514 ], [ -78.678535461425781, -5.073629856109562 ], [ -78.681945800781193, -5.077962875366211 ], [ -78.689041137695312, -5.08473014831543 ], [ -78.692703247070312, -5.08871603012085 ], [ -78.694747924804688, -5.092028141021672 ], [ -78.695823669433594, -5.094367980956918 ], [ -78.695983886718636, -5.098762035369873 ], [ -78.696388244628906, -5.1000781059264 ], [ -78.697685241699162, -5.102509021759033 ], [ -78.700393676757812, -5.105877876281738 ], [ -78.701934814453125, -5.108280181884709 ], [ -78.702392578125, -5.109478950500488 ], [ -78.702911376953068, -5.111902236938477 ], [ -78.703147888183594, -5.117228031158447 ], [ -78.703651428222656, -5.11918401718134 ], [ -78.704818725585881, -5.12178897857666 ], [ -78.705543518066406, -5.127056121826115 ], [ -78.70428466796875, -5.134943962097111 ], [ -78.7042236328125, -5.140369892120361 ], [ -78.703941345214844, -5.143847942352238 ], [ -78.704063415527287, -5.145688056945744 ], [ -78.70526123046875, -5.152099132537842 ], [ -78.704727172851506, -5.158322811126709 ], [ -78.705337524414062, -5.162500858306828 ], [ -78.704925537109318, -5.164938926696777 ], [ -78.704948425292855, -5.171973228454476 ], [ -78.704574584960938, -5.174139976501408 ], [ -78.703109741210881, -5.179549217224121 ], [ -78.703109741210881, -5.180377960205021 ], [ -78.703483581542912, -5.181594848632756 ], [ -78.702285766601562, -5.184165954589844 ], [ -78.701828002929688, -5.186244964599609 ], [ -78.702102661132812, -5.187379837036076 ], [ -78.703796386718693, -5.190865039825383 ], [ -78.704261779785099, -5.192730903625488 ], [ -78.703262329101562, -5.197584152221623 ], [ -78.703178405761719, -5.202911853790283 ], [ -78.702781677246094, -5.206281185150146 ], [ -78.701492309570256, -5.209311962127686 ], [ -78.698799133300781, -5.21391582489008 ], [ -78.69879150390625, -5.217896938323918 ], [ -78.698532104492131, -5.219875812530461 ], [ -78.697860717773381, -5.221576213836556 ], [ -78.695999145507812, -5.22496318817133 ], [ -78.695396423339787, -5.22661113739008 ], [ -78.694755554199219, -5.231768131256104 ], [ -78.695091247558537, -5.235342025756779 ], [ -78.695419311523438, -5.236476898193359 ], [ -78.695350646972656, -5.238311767578125 ], [ -78.694824218749943, -5.239377975463867 ], [ -78.692436218261662, -5.24243688583374 ], [ -78.691169738769531, -5.24466419219965 ], [ -78.689880371093636, -5.251036167144775 ], [ -78.687667846679631, -5.255041122436523 ], [ -78.686431884765568, -5.257801055908146 ], [ -78.6849365234375, -5.262294769287053 ], [ -78.684761047363281, -5.264852046966553 ], [ -78.684310913085938, -5.266352176666203 ], [ -78.683479309081974, -5.267666816711369 ], [ -78.680564880371094, -5.270699977874756 ], [ -78.678962707519531, -5.271377086639404 ], [ -78.677146911621094, -5.271568775176945 ], [ -78.668426513671875, -5.27062797546381 ], [ -78.666007995605412, -5.270134925842228 ], [ -78.662071228027344, -5.269862174987793 ], [ -78.660125732421761, -5.270205974578801 ], [ -78.658332824707031, -5.271155834197941 ], [ -78.655403137207031, -5.273503780364877 ], [ -78.652717590332031, -5.276255130767822 ], [ -78.647994995117131, -5.286925792694092 ], [ -78.646469116210881, -5.289425849914551 ], [ -78.643989562988224, -5.29237508773798 ], [ -78.641380310058594, -5.29507398605341 ], [ -78.640190124511662, -5.295918941497803 ], [ -78.636840820312443, -5.297616958618107 ], [ -78.634201049804688, -5.298283100128174 ], [ -78.63238525390625, -5.298277854919434 ], [ -78.629974365234318, -5.297586917877197 ], [ -78.628814697265568, -5.296854019164982 ], [ -78.627449035644531, -5.295487880706787 ], [ -78.625953674316349, -5.293175220489502 ], [ -78.621871948242131, -5.284840106964111 ], [ -78.61688232421875, -5.277132034301701 ], [ -78.615318298339844, -5.276372909545842 ], [ -78.612350463867188, -5.27548885345459 ], [ -78.610771179199219, -5.275389194488525 ], [ -78.608642578125, -5.275897026061955 ], [ -78.607559204101506, -5.276372909545842 ], [ -78.605369567871037, -5.277874946594181 ], [ -78.603752136230412, -5.279483795166016 ], [ -78.600837707519531, -5.283816814422551 ], [ -78.598518371581918, -5.288696765899658 ], [ -78.595718383789006, -5.292938232421875 ], [ -78.593475341796875, -5.297150135040283 ], [ -78.592208862304631, -5.298717975616398 ], [ -78.587814331054631, -5.303239822387638 ], [ -78.586830139160156, -5.304681777954045 ], [ -78.585716247558537, -5.306982040405217 ], [ -78.584304809570256, -5.308417797088623 ], [ -78.582771301269474, -5.309400081634521 ], [ -78.581138610839787, -5.310999870300236 ], [ -78.579025268554688, -5.314533233642578 ], [ -78.576187133789006, -5.316968917846623 ], [ -78.575317382812443, -5.318373203277588 ], [ -78.573417663574162, -5.320351123809814 ], [ -78.573348999023438, -5.320641040802002 ], [ -78.571739196777344, -5.321988105773926 ], [ -78.568183898925724, -5.325703144073486 ], [ -78.567146301269531, -5.327070236206055 ], [ -78.566001892089844, -5.329678058624268 ], [ -78.565116882324162, -5.330478191375676 ], [ -78.563964843749943, -5.331045150756836 ], [ -78.562774658203125, -5.332180023193303 ], [ -78.561607360839787, -5.33370304107666 ], [ -78.56075286865223, -5.335505008697453 ], [ -78.558662414550781, -5.336970806121712 ], [ -78.557708740234375, -5.33817720413208 ], [ -78.554985046386719, -5.340750217437687 ], [ -78.554611206054688, -5.341481208801213 ], [ -78.554328918456974, -5.342928886413574 ], [ -78.552986145019531, -5.34594202041626 ], [ -78.552658081054688, -5.347822189331055 ], [ -78.550636291503849, -5.350065231323185 ], [ -78.549270629882812, -5.353170871734619 ], [ -78.548873901367188, -5.353668212890568 ], [ -78.547721862792969, -5.354379177093506 ], [ -78.545471191406193, -5.354788780212346 ], [ -78.543632507324219, -5.35612678527832 ], [ -78.538520812988224, -5.356021881103459 ], [ -78.536941528320312, -5.356482982635498 ], [ -78.535507202148438, -5.35762882232666 ], [ -78.533401489257812, -5.361487865447998 ], [ -78.532218933105412, -5.365711212158203 ], [ -78.529541015624943, -5.368706226348877 ], [ -78.528144836425781, -5.370745182037354 ], [ -78.526885986328068, -5.373858928680363 ], [ -78.525390625, -5.37668514251709 ], [ -78.524887084960881, -5.378818035125676 ], [ -78.524459838867188, -5.379732131957951 ], [ -78.519760131835938, -5.384943962097168 ], [ -78.517829895019474, -5.389190196990967 ], [ -78.516716003417969, -5.390531063079834 ], [ -78.515594482421875, -5.391135215759277 ], [ -78.514358520507812, -5.392361164093018 ], [ -78.511886596679688, -5.396852970123291 ], [ -78.511222839355412, -5.397707939147836 ], [ -78.508781433105469, -5.399787902832031 ], [ -78.5084228515625, -5.400827884674015 ], [ -78.5074462890625, -5.402152061462402 ], [ -78.505027770996037, -5.403926849365178 ], [ -78.502540588378906, -5.407074928283635 ], [ -78.500320434570312, -5.4091281890868 ], [ -78.499176025390625, -5.409694194793701 ], [ -78.498092651367131, -5.410651206970158 ], [ -78.497055053710938, -5.41212797164917 ], [ -78.495941162109375, -5.416107177734318 ], [ -78.495033264160099, -5.421449184417725 ], [ -78.495201110839787, -5.426034927368164 ], [ -78.496231079101562, -5.431807994842529 ], [ -78.497116088867131, -5.434168815612793 ], [ -78.50146484375, -5.436021804809457 ], [ -78.504547119140568, -5.438893795013428 ], [ -78.506797790527344, -5.440190792083683 ], [ -78.507766723632812, -5.441628932952824 ], [ -78.508186340331974, -5.441742897033691 ], [ -78.508964538574162, -5.44274997711176 ], [ -78.51025390625, -5.444800853729191 ], [ -78.511352539062386, -5.445724010467529 ], [ -78.513175964355469, -5.448532104492131 ], [ -78.516563415527287, -5.451889038085881 ], [ -78.519149780273381, -5.455367088317871 ], [ -78.519966125488281, -5.455942153930607 ], [ -78.523597717285156, -5.457508087158146 ], [ -78.526306152343693, -5.459624767303467 ], [ -78.528083801269531, -5.461428165435791 ], [ -78.529296875, -5.462215900421143 ], [ -78.532699584960881, -5.463342189788818 ], [ -78.534492492675724, -5.463494777679443 ], [ -78.535995483398438, -5.464488983154183 ], [ -78.537628173828125, -5.466536998748779 ], [ -78.542747497558594, -5.470517158508244 ], [ -78.544143676757756, -5.472177982330209 ], [ -78.545326232910156, -5.473010063171387 ], [ -78.546554565429688, -5.474329948425293 ], [ -78.547920227050781, -5.475197792053223 ], [ -78.551277160644474, -5.478854179382267 ], [ -78.552841186523438, -5.480063915252686 ], [ -78.558395385742188, -5.487053871154785 ], [ -78.559715270996094, -5.489729881286564 ], [ -78.560050964355412, -5.491496086120605 ], [ -78.562080383300724, -5.493604183196965 ], [ -78.562576293945312, -5.494379043579045 ], [ -78.563095092773438, -5.496383190155029 ], [ -78.561988830566349, -5.498212814331055 ], [ -78.561431884765625, -5.499904155731201 ], [ -78.561195373535099, -5.503092765808105 ], [ -78.560585021972656, -5.505461215972787 ], [ -78.559494018554631, -5.506793975830078 ], [ -78.557456970214844, -5.508712768554631 ], [ -78.555290222167912, -5.50980901718134 ], [ -78.552749633789062, -5.512251853942871 ], [ -78.551742553710938, -5.512529850006104 ], [ -78.550987243652344, -5.513824939727783 ], [ -78.550048828124943, -5.517983913421631 ], [ -78.550285339355469, -5.51885986328125 ], [ -78.550422668456974, -5.521467208862248 ], [ -78.550788879394531, -5.522576808929387 ], [ -78.551002502441349, -5.524470806121826 ], [ -78.551475524902287, -5.525208950042725 ], [ -78.552375793457031, -5.528961181640625 ], [ -78.551322937011719, -5.531475067138672 ], [ -78.551017761230412, -5.531747817993107 ], [ -78.550468444824219, -5.531417846679631 ], [ -78.550125122070312, -5.531554222106934 ], [ -78.549560546874943, -5.532090187072754 ], [ -78.549491882324162, -5.53265285491932 ], [ -78.549865722656193, -5.533659934997559 ], [ -78.551528930664062, -5.535591125488281 ], [ -78.55218505859375, -5.536914825439453 ], [ -78.554153442382756, -5.538565158843994 ], [ -78.555740356445312, -5.538852214813176 ], [ -78.557525634765625, -5.538272857665959 ], [ -78.560623168945256, -5.538099765777588 ], [ -78.563835144042969, -5.538694858551025 ], [ -78.565597534179631, -5.539317131042424 ], [ -78.566833496093693, -5.540257930755615 ], [ -78.567840576171875, -5.541903972625676 ], [ -78.568489074707031, -5.543679237365723 ], [ -78.5694580078125, -5.544818878173828 ], [ -78.5706787109375, -5.545281887054387 ], [ -78.574653625488224, -5.546106815338135 ], [ -78.577720642089787, -5.54713678359974 ], [ -78.580383300781193, -5.548933029174748 ], [ -78.582168579101562, -5.550746917724609 ], [ -78.584327697753906, -5.554146766662541 ], [ -78.585037231445256, -5.555695056915283 ], [ -78.585357666015511, -5.561029911041203 ], [ -78.586128234863281, -5.564013957977238 ], [ -78.587203979492188, -5.565144062042236 ], [ -78.589355468749943, -5.566711902618351 ], [ -78.590362548828125, -5.567797183990422 ], [ -78.590835571289062, -5.568751811981201 ], [ -78.591522216796818, -5.570932865142822 ], [ -78.593032836914062, -5.577607154846135 ], [ -78.593833923339787, -5.57971286773676 ], [ -78.595504760742188, -5.581833839416504 ], [ -78.598106384277287, -5.583955764770508 ], [ -78.599754333496037, -5.587368011474609 ], [ -78.600433349609375, -5.58834791183466 ], [ -78.602134704589787, -5.589829921722355 ], [ -78.606323242187443, -5.592726230621338 ], [ -78.607315063476562, -5.593832015991154 ], [ -78.608230590820256, -5.595324993133545 ], [ -78.608924865722656, -5.59836483001709 ], [ -78.608886718749943, -5.599420070648193 ], [ -78.607704162597656, -5.601458072662354 ], [ -78.606376647949219, -5.604979038238525 ], [ -78.604850769042969, -5.607020854949894 ], [ -78.604690551757756, -5.607977867126408 ], [ -78.604835510253906, -5.608761787414551 ], [ -78.605941772460881, -5.610129833221436 ], [ -78.607376098632756, -5.611112117767334 ], [ -78.608406066894474, -5.613443851470947 ], [ -78.610382080078125, -5.615664005279541 ], [ -78.612297058105469, -5.616887092590275 ], [ -78.614570617675781, -5.618822097778263 ], [ -78.617057800292969, -5.621607780456486 ], [ -78.6182861328125, -5.625617027282658 ], [ -78.619705200195312, -5.62851619720459 ], [ -78.620491027832031, -5.631787776946965 ], [ -78.622138977050724, -5.635471820831242 ], [ -78.622436523437443, -5.638566970825138 ], [ -78.622810363769474, -5.639548778533879 ], [ -78.624580383300781, -5.64141321182251 ], [ -78.628440856933537, -5.643854141235352 ], [ -78.631690979003849, -5.644739151000977 ], [ -78.637054443359375, -5.645606994628906 ], [ -78.6383056640625, -5.646401882171631 ], [ -78.641418457031193, -5.651600837707463 ], [ -78.646537780761719, -5.657239913940373 ], [ -78.648139953613281, -5.659459114074707 ], [ -78.648277282714787, -5.66063117980957 ], [ -78.647529602050724, -5.666494846343994 ], [ -78.647483825683594, -5.668336868286019 ], [ -78.648353576660156, -5.669875144958439 ], [ -78.650146484375, -5.674521923065186 ], [ -78.650703430175781, -5.675303936004582 ], [ -78.656501770019418, -5.678400993347168 ], [ -78.660194396972599, -5.681104183196908 ], [ -78.661933898925724, -5.681300163268986 ], [ -78.664146423339844, -5.682271003723145 ], [ -78.667434692382756, -5.68300819396967 ], [ -78.668228149414006, -5.683670997619629 ], [ -78.670272827148438, -5.68605899810791 ], [ -78.681266784667912, -5.692896842956543 ], [ -78.683097839355412, -5.694265842437687 ], [ -78.685226440429688, -5.696508884429932 ], [ -78.685935974121037, -5.698544025421143 ], [ -78.685951232910099, -5.701089859008789 ], [ -78.685096740722599, -5.704769134521484 ], [ -78.683876037597656, -5.706540107726994 ], [ -78.682624816894474, -5.70728683471674 ], [ -78.68115234375, -5.707386970519963 ], [ -78.680305480957031, -5.707807064056283 ], [ -78.67425537109375, -5.713922023773193 ], [ -78.672035217285099, -5.715407848358154 ], [ -78.667984008789062, -5.717564105987549 ], [ -78.663894653320312, -5.718340873718262 ], [ -78.657730102539006, -5.718208789825439 ], [ -78.655746459960938, -5.718618869781494 ], [ -78.653991699218693, -5.719295978546086 ], [ -78.652259826660156, -5.721004962921086 ], [ -78.651344299316349, -5.722970008850098 ], [ -78.650939941406193, -5.725193977355957 ], [ -78.651031494140568, -5.727628231048527 ], [ -78.651580810546875, -5.730685234069824 ], [ -78.652244567871094, -5.732301235198918 ], [ -78.653846740722656, -5.734628200531006 ], [ -78.655632019042912, -5.736059188842773 ], [ -78.658119201660099, -5.73710107803339 ], [ -78.663459777831974, -5.738420009612923 ], [ -78.668449401855469, -5.740437030792236 ], [ -78.669975280761719, -5.741293907165471 ], [ -78.674499511718693, -5.741916179656982 ], [ -78.679168701171818, -5.743185997009277 ], [ -78.680511474609318, -5.743176937103215 ], [ -78.68426513671875, -5.744659900665226 ], [ -78.686729431152287, -5.746044158935547 ], [ -78.689407348632812, -5.748311996459961 ], [ -78.690673828125, -5.750028133392277 ], [ -78.691696166992188, -5.753107070922795 ], [ -78.69197845458973, -5.754415035247746 ], [ -78.691871643066349, -5.755127906799316 ], [ -78.691986083984375, -5.756600856780949 ], [ -78.691444396972656, -5.758822917938232 ], [ -78.691352844238281, -5.760169982910156 ], [ -78.692657470703125, -5.765937805175724 ], [ -78.692420959472599, -5.771617889404297 ], [ -78.692810058593693, -5.77396297454834 ], [ -78.693794250488281, -5.776502132415771 ], [ -78.69525146484375, -5.77909421920765 ], [ -78.698730468749943, -5.782662868499699 ], [ -78.700622558593693, -5.78559398651123 ], [ -78.700820922851506, -5.786513805389347 ], [ -78.702140808105469, -5.78901481628418 ], [ -78.703659057617188, -5.794602870941162 ], [ -78.703987121581974, -5.796994209289551 ], [ -78.703987121581974, -5.801308155059758 ], [ -78.704345703124943, -5.802605152130127 ], [ -78.704505920410156, -5.805438041687012 ], [ -78.707695007324162, -5.81165599822998 ], [ -78.709815979003906, -5.816770076751709 ], [ -78.710693359375, -5.820690155029297 ], [ -78.711174011230469, -5.826475143432617 ], [ -78.710472106933537, -5.828527927398682 ], [ -78.709663391113281, -5.829770088195687 ], [ -78.709045410156193, -5.830235004424935 ], [ -78.706687927246094, -5.831278800964355 ], [ -78.704467773437443, -5.833415031433049 ], [ -78.702178955078068, -5.837232112884521 ], [ -78.700561523437386, -5.839200973510685 ], [ -78.698822021484318, -5.843005180358887 ], [ -78.698364257812443, -5.84552621841425 ], [ -78.698661804199219, -5.849441051483097 ], [ -78.698577880859375, -5.850897789001465 ], [ -78.696823120117131, -5.855701923370361 ], [ -78.696502685546875, -5.857138156890869 ], [ -78.696548461914006, -5.859034061431885 ], [ -78.697113037109318, -5.862217903137207 ], [ -78.696990966796875, -5.864772796630859 ], [ -78.695953369140568, -5.867541790008545 ], [ -78.694023132324219, -5.869784832000676 ], [ -78.693298339843693, -5.870917797088566 ], [ -78.6925048828125, -5.874175071716309 ], [ -78.692733764648381, -5.875914096832275 ], [ -78.694770812988281, -5.879087924957219 ], [ -78.695762634277287, -5.881879806518555 ], [ -78.696388244628906, -5.885460853576603 ], [ -78.696220397949219, -5.888278007507211 ], [ -78.695724487304688, -5.889218807220459 ], [ -78.690422058105412, -5.894174098968506 ], [ -78.688613891601506, -5.896173000335693 ], [ -78.686508178710881, -5.899292945861703 ], [ -78.685455322265625, -5.901891231536865 ], [ -78.684806823730412, -5.903944969177246 ], [ -78.684394836425781, -5.906879901885929 ], [ -78.683151245117188, -5.909426212310734 ], [ -78.681076049804631, -5.911308765411377 ], [ -78.674392700195312, -5.915839195251351 ], [ -78.672927856445312, -5.917411804199219 ], [ -78.671966552734375, -5.919033050537109 ], [ -78.67120361328125, -5.92133188247675 ], [ -78.670181274414062, -5.926890850067082 ], [ -78.668678283691349, -5.931062221526986 ], [ -78.666465759277344, -5.934083938598633 ], [ -78.664237976074219, -5.938685894012451 ], [ -78.663726806640568, -5.940221786498967 ], [ -78.6622314453125, -5.942290782928467 ], [ -78.660911560058594, -5.945089817047062 ], [ -78.660438537597656, -5.947061061859074 ], [ -78.6602783203125, -5.948804855346623 ], [ -78.660850524902344, -5.953648090362549 ], [ -78.658935546875, -5.957787036895752 ], [ -78.656959533691349, -5.960175037384033 ], [ -78.654052734375, -5.962569236755257 ], [ -78.652664184570256, -5.963075160980168 ], [ -78.649429321289006, -5.963726043701115 ], [ -78.64501953125, -5.966301918029728 ], [ -78.643608093261662, -5.967928886413574 ], [ -78.64300537109375, -5.9689621925354 ], [ -78.640617370605469, -5.971145153045597 ], [ -78.639915466308594, -5.972845077514535 ], [ -78.637931823730469, -5.983856201171818 ], [ -78.636985778808594, -5.987726211547852 ], [ -78.636466979980412, -5.988405227661133 ], [ -78.635772705078068, -5.988825798034668 ], [ -78.63031005859375, -5.989467144012394 ], [ -78.628944396972656, -5.990316867828369 ], [ -78.628334045410099, -5.991349220275879 ], [ -78.627723693847656, -5.99353981018055 ], [ -78.62774658203125, -5.994884014129582 ], [ -78.628135681152344, -5.996379852294922 ], [ -78.627944946289062, -5.99852180480957 ], [ -78.626716613769474, -6.00257396697998 ], [ -78.624298095703125, -6.00680685043335 ], [ -78.622001647949219, -6.010017871856689 ], [ -78.620063781738224, -6.011817932128906 ], [ -78.615005493164006, -6.014091014862061 ], [ -78.613380432128849, -6.015048027038574 ], [ -78.611961364746037, -6.016294956207275 ], [ -78.611259460449219, -6.018043041229248 ], [ -78.611137390136719, -6.020599842071533 ], [ -78.610458374023438, -6.0240159034729 ], [ -78.610336303710881, -6.027247905731201 ], [ -78.610687255859375, -6.028546810150146 ], [ -78.610862731933594, -6.034747123718205 ], [ -78.610610961914006, -6.036176204681396 ], [ -78.609405517578125, -6.039053916931039 ], [ -78.609138488769531, -6.041468143463135 ], [ -78.609207153320312, -6.043750762939339 ], [ -78.609779357910156, -6.046521186828556 ], [ -78.609542846679688, -6.048532962799072 ], [ -78.609596252441406, -6.055259227752629 ], [ -78.609107971191406, -6.056364059448185 ], [ -78.608291625976562, -6.057065963745117 ], [ -78.607177734374943, -6.057560920715332 ], [ -78.60491943359375, -6.057899951934814 ], [ -78.603195190429688, -6.059193134307804 ], [ -78.602561950683594, -6.060389041900578 ], [ -78.602439880371094, -6.06294584274292 ], [ -78.602081298828125, -6.06333589553833 ], [ -78.602104187011719, -6.064283847808781 ], [ -78.601577758789062, -6.06553316116333 ], [ -78.598060607910156, -6.067498207092228 ], [ -78.589363098144418, -6.076132774352971 ], [ -78.586723327636719, -6.077983856201115 ], [ -78.583572387695312, -6.079151153564453 ], [ -78.580093383789006, -6.07882022857666 ], [ -78.575798034667912, -6.078958988189697 ], [ -78.572212219238281, -6.078378200530949 ], [ -78.569808959960881, -6.07859277725214 ], [ -78.566909790039062, -6.077925205230656 ], [ -78.56280517578125, -6.076598167419377 ], [ -78.5616455078125, -6.075729846954346 ], [ -78.558601379394531, -6.072652816772461 ], [ -78.557022094726506, -6.071903228759766 ], [ -78.555198669433537, -6.071428775787354 ], [ -78.550224304199219, -6.071525096893311 ], [ -78.546531677246037, -6.072796821594238 ], [ -78.544387817382812, -6.072926998138428 ], [ -78.540336608886662, -6.07386589050293 ], [ -78.535545349121037, -6.073129177093449 ], [ -78.531791687011719, -6.071627140045109 ], [ -78.530632019042969, -6.071364879608097 ], [ -78.529014587402344, -6.071545124053955 ], [ -78.527801513671875, -6.07213306427002 ], [ -78.527259826660099, -6.072120189666748 ], [ -78.525688171386719, -6.073592185974121 ], [ -78.524932861328125, -6.073859214782658 ], [ -78.52398681640625, -6.073838233947754 ], [ -78.520713806152344, -6.072819232940617 ], [ -78.518302917480412, -6.071988105773869 ], [ -78.515892028808594, -6.071965217590332 ], [ -78.510887145996094, -6.076675891876221 ], [ -78.509658813476562, -6.078129768371582 ], [ -78.509826660156136, -6.08024883270258 ], [ -78.509231567382756, -6.083161830902043 ], [ -78.508514404296875, -6.085322856903076 ], [ -78.507415771484318, -6.086478233337402 ], [ -78.501205444335938, -6.088802814483643 ], [ -78.499359130859375, -6.090151786804142 ], [ -78.498023986816406, -6.091847896575871 ], [ -78.497421264648381, -6.094019889831543 ], [ -78.497329711914006, -6.098659992217961 ], [ -78.497627258300781, -6.099923133850041 ], [ -78.498588562011719, -6.101677894592285 ], [ -78.498321533203125, -6.102573871612492 ], [ -78.497665405273438, -6.103453159332275 ], [ -78.496696472167969, -6.104162216186467 ], [ -78.495460510253906, -6.104452133178597 ], [ -78.493003845214844, -6.104774951934758 ], [ -78.491523742675781, -6.104603767394963 ], [ -78.490844726562443, -6.104724884033203 ], [ -78.489448547363281, -6.105801105499268 ], [ -78.487289428710881, -6.107917785644474 ], [ -78.485008239746037, -6.108828067779484 ], [ -78.482017517089844, -6.109199047088623 ], [ -78.481010437011662, -6.109990119934082 ], [ -78.479743957519531, -6.111561775207463 ], [ -78.478134155273381, -6.114127159118652 ], [ -78.47735595703125, -6.116758823394719 ], [ -78.478141784667912, -6.121568202972412 ], [ -78.479072570800781, -6.124731063842717 ], [ -78.479103088378849, -6.127944946289006 ], [ -78.478675842285156, -6.129349231719971 ], [ -78.477394104003849, -6.131793975830078 ], [ -78.476135253906193, -6.133247852325439 ], [ -78.474960327148438, -6.134140014648381 ], [ -78.473739624023438, -6.135247230529785 ], [ -78.472785949707031, -6.135571002960148 ], [ -78.469863891601506, -6.135698795318604 ], [ -78.468048095703068, -6.135069847106877 ], [ -78.467201232910156, -6.135354042053223 ], [ -78.466575622558594, -6.136270999908447 ], [ -78.465957641601449, -6.138297080993596 ], [ -78.465721130371094, -6.143338203430062 ], [ -78.465187072753849, -6.144406795501709 ], [ -78.464004516601562, -6.145806789398137 ], [ -78.460983276367131, -6.148742198944092 ], [ -78.459434509277344, -6.149717807769775 ], [ -78.457695007324219, -6.150270938873291 ], [ -78.456581115722599, -6.15090894699091 ], [ -78.452720642089844, -6.154827117919865 ], [ -78.451324462890625, -6.155858039855957 ], [ -78.448013305664006, -6.159154891967773 ], [ -78.442512512207031, -6.162017822265625 ], [ -78.440498352050781, -6.163610935211182 ], [ -78.438339233398438, -6.165728092193604 ], [ -78.437652587890625, -6.16821718215931 ], [ -78.437339782714787, -6.173176765441838 ], [ -78.436965942382699, -6.174108982086182 ], [ -78.435737609863281, -6.175064086914006 ], [ -78.433044433593693, -6.175560951232853 ], [ -78.431938171386719, -6.176191806793213 ], [ -78.430023193359375, -6.178641796112061 ], [ -78.428009033203125, -6.179900169372502 ], [ -78.426765441894531, -6.181001186370793 ], [ -78.425422668456974, -6.184414863586369 ], [ -78.424835205078068, -6.185321807861328 ], [ -78.42047119140625, -6.188185214996281 ], [ -78.419380187988281, -6.189077854156494 ], [ -78.417251586914062, -6.191475868225041 ], [ -78.416610717773438, -6.195470809936523 ], [ -78.416725158691349, -6.200336933135929 ], [ -78.417510986328011, -6.202698230743408 ], [ -78.418907165527287, -6.204024791717472 ], [ -78.418968200683594, -6.205397129058838 ], [ -78.418624877929631, -6.206548213958683 ], [ -78.416763305664062, -6.209495067596436 ], [ -78.416122436523438, -6.211801052093449 ], [ -78.415489196777287, -6.212915897369385 ], [ -78.413444519042969, -6.214753150939885 ], [ -78.411628723144531, -6.214663982391357 ], [ -78.409439086914062, -6.214009761810246 ], [ -78.40771484375, -6.214255809783822 ], [ -78.405540466308594, -6.21592378616333 ], [ -78.404441833496037, -6.217267036437988 ], [ -78.404075622558594, -6.217296123504582 ], [ -78.403594970703125, -6.21772480010975 ], [ -78.402137756347599, -6.219946861267033 ], [ -78.401641845703125, -6.225800037383976 ], [ -78.400817871093693, -6.227647781372013 ], [ -78.399574279785099, -6.228886127471924 ], [ -78.398239135742131, -6.229135990142822 ], [ -78.396697998046818, -6.228343009948674 ], [ -78.393798828125, -6.227867126464844 ], [ -78.392318725585881, -6.228236198425236 ], [ -78.387397766113281, -6.230716228485107 ], [ -78.384986877441349, -6.231579780578613 ], [ -78.382980346679631, -6.231681823730469 ], [ -78.381546020507756, -6.231104850768986 ], [ -78.380630493164062, -6.231183052062988 ], [ -78.379539489746037, -6.23201322555542 ], [ -78.377822875976506, -6.234741210937443 ], [ -78.375259399414006, -6.23734807968134 ], [ -78.374076843261719, -6.238051891326904 ], [ -78.371467590332031, -6.238889217376652 ], [ -78.370292663574162, -6.23994588851923 ], [ -78.370040893554688, -6.240897178649902 ], [ -78.370094299316349, -6.241652965545654 ], [ -78.370735168457031, -6.243483066558781 ], [ -78.370849609374943, -6.244685173034668 ], [ -78.370681762695256, -6.245668888091984 ], [ -78.369941711425781, -6.247055053710881 ], [ -78.369895935058537, -6.247969150543156 ], [ -78.3701171875, -6.248859882354736 ], [ -78.371299743652344, -6.250730991363469 ], [ -78.371421813964787, -6.252744197845459 ], [ -78.370964050292912, -6.255366802215576 ], [ -78.368942260742131, -6.260292053222656 ], [ -78.368728637695312, -6.267291069030762 ], [ -78.368942260742131, -6.267489910125732 ], [ -78.368988037109375, -6.268021106719971 ], [ -78.368782043457031, -6.270135879516602 ], [ -78.367408752441349, -6.273738861083984 ], [ -78.366195678710881, -6.278748035430795 ], [ -78.365531921386662, -6.280155181884709 ], [ -78.364715576171875, -6.280900001525879 ], [ -78.363983154296818, -6.281060218811035 ], [ -78.361526489257756, -6.279636859893799 ], [ -78.360183715820256, -6.2793931961059 ], [ -78.359329223632756, -6.27993106842041 ], [ -78.358711242675781, -6.280948162078857 ], [ -78.358108520507812, -6.28298282623291 ], [ -78.357978820800724, -6.285359859466553 ], [ -78.358131408691406, -6.287841796875 ], [ -78.358795166015625, -6.291088104248047 ], [ -78.358848571777287, -6.292388916015625 ], [ -78.357147216796875, -6.295812129974308 ], [ -78.356056213378906, -6.296641826629582 ], [ -78.354690551757812, -6.29716587066639 ], [ -78.351043701171875, -6.297115802764893 ], [ -78.349708557128906, -6.297677040100098 ], [ -78.348922729492131, -6.298313140869141 ], [ -78.348075866699162, -6.300440788268986 ], [ -78.347763061523381, -6.304108142852726 ], [ -78.345550537109375, -6.306562900543213 ], [ -78.343246459960938, -6.308348178863469 ], [ -78.3426513671875, -6.310174942016602 ], [ -78.342430114746037, -6.312360763549805 ], [ -78.341178894042969, -6.314717769622746 ], [ -78.340499877929688, -6.315590858459473 ], [ -78.339820861816406, -6.316028118133545 ], [ -78.33868408203125, -6.31640720367426 ], [ -78.337600708007812, -6.316292762756348 ], [ -78.336982727050781, -6.316749095916691 ], [ -78.336608886718693, -6.322803974151554 ], [ -78.336174011230469, -6.32523584365839 ], [ -78.335365295410099, -6.327002048492432 ], [ -78.332733154296875, -6.330855846404972 ], [ -78.332038879394474, -6.332460880279484 ], [ -78.331771850585881, -6.334096908569222 ], [ -78.331977844238281, -6.33611011505127 ], [ -78.332366943359375, -6.337252140045109 ], [ -78.334571838378906, -6.340282917022705 ], [ -78.334793090820256, -6.340976238250676 ], [ -78.334091186523438, -6.343256950378361 ], [ -78.332519531249943, -6.346563816070557 ], [ -78.332565307617188, -6.348604202270508 ], [ -78.333007812499943, -6.350389003753605 ], [ -78.332824707031136, -6.351284027099553 ], [ -78.332138061523381, -6.351894855499154 ], [ -78.329811096191406, -6.352722167968693 ], [ -78.325286865234318, -6.35752010345459 ], [ -78.324577331542969, -6.35810995101923 ], [ -78.323295593261719, -6.358091831207275 ], [ -78.322647094726562, -6.357755184173584 ], [ -78.321044921875, -6.355992794036808 ], [ -78.319145202636719, -6.356186866760197 ], [ -78.317962646484375, -6.356880187988281 ], [ -78.316001892089844, -6.358671188354435 ], [ -78.314140319824219, -6.359839916229248 ], [ -78.311439514160099, -6.362178802490178 ], [ -78.307685852050781, -6.364459991455021 ], [ -78.3060302734375, -6.365907192230168 ], [ -78.305229187011662, -6.366337776184082 ], [ -78.304534912109375, -6.367198944091797 ], [ -78.304214477538949, -6.36815881729126 ], [ -78.303291320800781, -6.373032093048039 ], [ -78.302589416503849, -6.374192237853947 ], [ -78.301605224609318, -6.375146865844727 ], [ -78.300949096679631, -6.375476837158203 ], [ -78.299705505371037, -6.375763893127441 ], [ -78.298721313476562, -6.375473022460938 ], [ -78.29681396484375, -6.373380184173584 ], [ -78.294425964355469, -6.371832847595215 ], [ -78.293052673339787, -6.371875762939396 ], [ -78.291099548339844, -6.37268495559681 ], [ -78.289688110351506, -6.374112129211369 ], [ -78.2882080078125, -6.377779006958008 ], [ -78.287643432617188, -6.37872314453125 ], [ -78.287010192871094, -6.379251956939697 ], [ -78.284751892089787, -6.380257129669189 ], [ -78.283302307128849, -6.381505966186523 ], [ -78.282485961914062, -6.382839202880859 ], [ -78.281379699707031, -6.386105060577336 ], [ -78.279037475585824, -6.388269901275578 ], [ -78.278892517089844, -6.388866901397648 ], [ -78.278556823730412, -6.389193058013916 ], [ -78.278579711914062, -6.390305042266789 ], [ -78.28057861328125, -6.392929077148438 ], [ -78.280838012695256, -6.393892765045109 ], [ -78.280876159667969, -6.395382881164494 ], [ -78.280258178710881, -6.39683294296259 ], [ -78.279464721679688, -6.397830963134709 ], [ -78.278472900390625, -6.398642063140812 ], [ -78.277030944824162, -6.39923715591425 ], [ -78.275856018066349, -6.399416923522892 ], [ -78.274673461914062, -6.399287223815918 ], [ -78.273529052734375, -6.398942947387638 ], [ -78.272804260253849, -6.398388862609863 ], [ -78.272415161132812, -6.397443771362305 ], [ -78.272453308105412, -6.393675804138184 ], [ -78.272262573242131, -6.392682075500488 ], [ -78.271575927734318, -6.391180992126465 ], [ -78.270530700683537, -6.390419006347656 ], [ -78.2698974609375, -6.390350818634033 ], [ -78.267837524414062, -6.390789031982365 ], [ -78.263671874999943, -6.393280029296875 ], [ -78.262161254882812, -6.393930912017822 ], [ -78.258682250976562, -6.394720077514592 ], [ -78.255668640136662, -6.39488410949707 ], [ -78.254150390625, -6.395183086395264 ], [ -78.253334045410156, -6.395595073699951 ], [ -78.252044677734318, -6.396931171417236 ], [ -78.251159667968693, -6.398950099945068 ], [ -78.250686645507756, -6.399539947509709 ], [ -78.246398925781193, -6.399702072143498 ], [ -78.244720458984375, -6.400616168975773 ], [ -78.243598937988281, -6.402050018310547 ], [ -78.242752075195312, -6.404973983764648 ], [ -78.242477416992131, -6.407621860504094 ], [ -78.241981506347656, -6.409170150756836 ], [ -78.240554809570312, -6.410469055175781 ], [ -78.23846435546875, -6.411793231964111 ], [ -78.236717224121094, -6.413411140441838 ], [ -78.235702514648438, -6.414826869964543 ], [ -78.234596252441293, -6.417644023895207 ], [ -78.233291625976562, -6.41917705535883 ], [ -78.230545043945312, -6.421452045440674 ], [ -78.228370666503849, -6.423932075500488 ], [ -78.225364685058594, -6.426895141601562 ], [ -78.222198486328011, -6.429183006286564 ], [ -78.221412658691349, -6.430062770843506 ], [ -78.221061706542969, -6.431203842163086 ], [ -78.220817565917969, -6.43405103683466 ], [ -78.219375610351562, -6.436713218688908 ], [ -78.218780517578125, -6.438262939453068 ], [ -78.218536376953125, -6.44377422332758 ], [ -78.217758178710938, -6.446217060089111 ], [ -78.216659545898381, -6.447165012359619 ], [ -78.212364196777287, -6.447336196899414 ], [ -78.211578369140568, -6.447566032409668 ], [ -78.210746765136662, -6.44829607009882 ], [ -78.210174560546818, -6.449111938476562 ], [ -78.209907531738281, -6.450386047363224 ], [ -78.210853576660156, -6.454209804534912 ], [ -78.210533142089787, -6.456569194793644 ], [ -78.209556579589844, -6.457913875579834 ], [ -78.208580017089844, -6.458568096160832 ], [ -78.207069396972656, -6.458930015563908 ], [ -78.206153869628849, -6.458855152130127 ], [ -78.205856323242131, -6.458631992340031 ], [ -78.204780578613281, -6.458592891693115 ], [ -78.203308105468693, -6.457599163055363 ], [ -78.203033447265625, -6.457077026367188 ], [ -78.203010559081974, -6.455567836761418 ], [ -78.202323913574219, -6.454742908477783 ], [ -78.201087951660099, -6.455138206481877 ], [ -78.19818115234375, -6.458436012268066 ], [ -78.197082519531193, -6.458893775939885 ], [ -78.195137023925781, -6.458518028259277 ], [ -78.194404602050781, -6.457833766937256 ], [ -78.192131042480412, -6.456459999084473 ], [ -78.190864562988281, -6.456521034240666 ], [ -78.189544677734375, -6.457784175872803 ], [ -78.188308715820256, -6.459924221038818 ], [ -78.188217163085881, -6.461777210235596 ], [ -78.188552856445312, -6.462587833404541 ], [ -78.188552856445312, -6.464800834655762 ], [ -78.187957763671818, -6.467304229736328 ], [ -78.187278747558537, -6.468700885772648 ], [ -78.186050415039006, -6.470064163207951 ], [ -78.184577941894531, -6.471158027648926 ], [ -78.181442260742131, -6.472669124603271 ], [ -78.178131103515568, -6.473708152770939 ], [ -78.177322387695312, -6.474300861358643 ], [ -78.176994323730355, -6.475089073181152 ], [ -78.176872253417912, -6.475901126861515 ], [ -78.177383422851562, -6.476882934570256 ], [ -78.177490234375, -6.477604866027832 ], [ -78.177062988281193, -6.479388236999512 ], [ -78.177024841308594, -6.482874870300236 ], [ -78.174446105957031, -6.485953807830754 ], [ -78.174446105957031, -6.491108894348088 ], [ -78.174194335937443, -6.49170017242426 ], [ -78.172500610351506, -6.493216991424561 ], [ -78.170761108398381, -6.493635177612248 ], [ -78.169654846191406, -6.493587017059212 ], [ -78.167579650878906, -6.492922782897949 ], [ -78.165245056152287, -6.490715026855412 ], [ -78.1636962890625, -6.49076318740839 ], [ -78.1614990234375, -6.492068767547607 ], [ -78.158340454101562, -6.494553089141789 ], [ -78.157608032226506, -6.495713233947697 ], [ -78.157341003417912, -6.497159957885685 ], [ -78.156906127929688, -6.497641086578312 ], [ -78.156051635742188, -6.497938156127816 ], [ -78.153305053710938, -6.498061180114746 ], [ -78.15252685546875, -6.498535156249943 ], [ -78.151824951171875, -6.499742984771672 ], [ -78.151832580566406, -6.50048303604126 ], [ -78.153053283691349, -6.504881858825684 ], [ -78.151954650878906, -6.507583141326847 ], [ -78.152503967285156, -6.50941085815424 ], [ -78.15240478515625, -6.510324954986515 ], [ -78.151885986328068, -6.51161003112793 ], [ -78.151290893554688, -6.512203216552734 ], [ -78.15069580078125, -6.51238489151001 ], [ -78.148727416992188, -6.511611938476506 ], [ -78.147544860839844, -6.51151180267334 ], [ -78.146392822265625, -6.512440204620361 ], [ -78.145172119140625, -6.514317989349308 ], [ -78.145851135253906, -6.515504837036133 ], [ -78.145980834960881, -6.516318798065186 ], [ -78.145751953125, -6.517682075500488 ], [ -78.144836425781193, -6.519676208496094 ], [ -78.143913269042969, -6.520829200744629 ], [ -78.142272949218693, -6.522167205810547 ], [ -78.137855529785156, -6.524895191192627 ], [ -78.136421203613281, -6.526702880859375 ], [ -78.136238098144474, -6.527306079864502 ], [ -78.136573791503906, -6.530404090881291 ], [ -78.136245727539006, -6.531742095947209 ], [ -78.135284423828068, -6.533718109130803 ], [ -78.135314941406193, -6.535281181335449 ], [ -78.136161804199162, -6.536584854125977 ], [ -78.138359069824162, -6.536543846130371 ], [ -78.138839721679631, -6.536812782287541 ], [ -78.139083862304688, -6.537306785583496 ], [ -78.138809204101562, -6.538943767547607 ], [ -78.137374877929688, -6.541607856750488 ], [ -78.136787414550781, -6.543835163116398 ], [ -78.136978149414062, -6.545477867126465 ], [ -78.13800048828125, -6.547430992126408 ], [ -78.13808441162098, -6.548440933227539 ], [ -78.137802124023438, -6.549119949340763 ], [ -78.137245178222656, -6.549575805664006 ], [ -78.134986877441406, -6.549625873565674 ], [ -78.133941650390625, -6.549950122833195 ], [ -78.132919311523381, -6.55089616775507 ], [ -78.132667541503906, -6.551657199859619 ], [ -78.133628845214844, -6.55373477935791 ], [ -78.136840820312443, -6.557400226592961 ], [ -78.137207031249943, -6.558998107910099 ], [ -78.13800048828125, -6.56013107299799 ], [ -78.137886047363224, -6.561594009399414 ], [ -78.138153076171818, -6.56273078918457 ], [ -78.138008117675781, -6.563536167144719 ], [ -78.137077331542969, -6.564554214477539 ], [ -78.134719848632756, -6.566301822662297 ], [ -78.130607604980469, -6.568108081817627 ], [ -78.126892089843693, -6.570950031280461 ], [ -78.122085571289062, -6.573371887207031 ], [ -78.120079040527344, -6.575119972229004 ], [ -78.118766784667969, -6.575932025909424 ], [ -78.117340087890625, -6.577809810638371 ], [ -78.117141723632812, -6.580007076263371 ], [ -78.11824798583973, -6.581453800201416 ], [ -78.118461608886719, -6.582347869873047 ], [ -78.119049072265625, -6.583055973052979 ], [ -78.119232177734375, -6.58367919921875 ], [ -78.121780395507812, -6.586808204650879 ], [ -78.122108459472656, -6.588519096374512 ], [ -78.122566223144531, -6.589206218719426 ], [ -78.122634887695199, -6.590766906738224 ], [ -78.121841430664006, -6.595567226409855 ], [ -78.120704650878849, -6.599070072174072 ], [ -78.119598388671875, -6.600396156311035 ], [ -78.117004394531193, -6.601956844329777 ], [ -78.116355895996094, -6.603116989135685 ], [ -78.115341186523438, -6.604650974273625 ], [ -78.115188598632756, -6.606476783752441 ], [ -78.114509582519474, -6.60757303237915 ], [ -78.114509582519474, -6.609597206115723 ], [ -78.114273071289062, -6.610385894775391 ], [ -78.114387512207031, -6.611485958099308 ], [ -78.111755371093693, -6.614654064178467 ], [ -78.107429504394531, -6.618765830993596 ], [ -78.106460571289062, -6.620739936828556 ], [ -78.105964660644531, -6.621274948120117 ], [ -78.104888916015568, -6.623894214630127 ], [ -78.104888916015568, -6.625545978546143 ], [ -78.105819702148381, -6.627742767333984 ], [ -78.105911254882756, -6.628654956817627 ], [ -78.105468749999886, -6.630248069763184 ], [ -78.104194641113224, -6.632576942443848 ], [ -78.104026794433537, -6.634857177734375 ], [ -78.104698181152287, -6.636159896850586 ], [ -78.105560302734318, -6.636463165283203 ], [ -78.106704711914006, -6.637234210967904 ], [ -78.10791015625, -6.639165878295842 ], [ -78.108581542968693, -6.641664028167725 ], [ -78.108207702636662, -6.642977237701359 ], [ -78.107345581054631, -6.644174098968506 ], [ -78.106292724609318, -6.645328998565617 ], [ -78.104911804199219, -6.646383762359619 ], [ -78.0994873046875, -6.648866176605168 ], [ -78.098388671874943, -6.64971399307251 ], [ -78.096961975097599, -6.65255880355835 ], [ -78.095695495605469, -6.656208038330078 ], [ -78.094886779785156, -6.657052993774414 ], [ -78.093955993652344, -6.657084941864014 ], [ -78.090187072753849, -6.65628719329834 ], [ -78.088996887207031, -6.656267166137695 ], [ -78.086700439453125, -6.655597209930363 ], [ -78.084320068359375, -6.655465126037598 ], [ -78.082748413085881, -6.654897212982121 ], [ -78.081947326660156, -6.654938220977726 ], [ -78.080902099609375, -6.655360221862793 ], [ -78.0777587890625, -6.658442974090519 ], [ -78.076568603515568, -6.658919811248722 ], [ -78.075965881347599, -6.659717082977181 ], [ -78.076072692871037, -6.660936832427979 ], [ -78.078208923339844, -6.663337230682316 ], [ -78.078987121582031, -6.664604187011719 ], [ -78.079376220703125, -6.665722846984863 ], [ -78.079223632812443, -6.66773796081543 ], [ -78.077842712402344, -6.66944503784174 ], [ -78.075607299804631, -6.67166185379017 ], [ -78.07354736328125, -6.673301219940186 ], [ -78.069282531738281, -6.674447059631348 ], [ -78.067520141601562, -6.675759792327824 ], [ -78.065895080566406, -6.6766099929809 ], [ -78.063064575195312, -6.676826953887939 ], [ -78.059272766113281, -6.675901889800969 ], [ -78.05828857421875, -6.676024913787728 ], [ -78.056884765625, -6.677326202392578 ], [ -78.056488037109375, -6.679388999938965 ], [ -78.052108764648438, -6.683306217193604 ], [ -78.050430297851506, -6.685856819152775 ], [ -78.046440124511719, -6.690543174743652 ], [ -78.046150207519418, -6.691204071044922 ], [ -78.046180725097656, -6.692314147949162 ], [ -78.045608520507812, -6.69425106048584 ], [ -78.045547485351506, -6.695436000823975 ], [ -78.046005249023438, -6.698250770568791 ], [ -78.046607971191349, -6.700279235839844 ], [ -78.046722412109261, -6.702754020690918 ], [ -78.046363830566406, -6.7049241065979 ], [ -78.045219421386719, -6.70831823348999 ], [ -78.044982910156193, -6.712169170379525 ], [ -78.043716430664062, -6.713946819305363 ], [ -78.042678833007812, -6.714297771453857 ], [ -78.041305541992188, -6.714170932769775 ], [ -78.040214538574162, -6.714853763580322 ], [ -78.039764404296875, -6.715651988983154 ], [ -78.039573669433594, -6.716450214385929 ], [ -78.040481567382812, -6.718148231506348 ], [ -78.040458679199219, -6.719604015350285 ], [ -78.040107727050724, -6.721514225006104 ], [ -78.038742065429688, -6.724013805389404 ], [ -78.038391113281193, -6.725814819335881 ], [ -78.039756774902287, -6.729482173919678 ], [ -78.039703369140625, -6.731768131256047 ], [ -78.0377197265625, -6.735485076904297 ], [ -78.034904479980469, -6.738907814025765 ], [ -78.034149169921875, -6.740114212036133 ], [ -78.034393310546818, -6.741493225097656 ], [ -78.037101745605469, -6.743772029876652 ], [ -78.038139343261605, -6.744136810302734 ], [ -78.038017272949162, -6.746059894561768 ], [ -78.037117004394531, -6.747873783111515 ], [ -78.035438537597599, -6.750041961669808 ], [ -78.034896850585824, -6.751372814178467 ], [ -78.034217834472599, -6.754322052001896 ], [ -78.032806396484375, -6.755895137786752 ], [ -78.030319213867074, -6.757438182830754 ], [ -78.029396057128906, -6.758697986602726 ], [ -78.029449462890568, -6.759518146514893 ], [ -78.031448364257756, -6.761676788329964 ], [ -78.031791687011719, -6.762532234191838 ], [ -78.031646728515568, -6.763976097106934 ], [ -78.030708312988281, -6.76627779006958 ], [ -78.029022216796875, -6.768564224243107 ], [ -78.028076171875, -6.769302845001164 ], [ -78.027458190917855, -6.769505977630558 ], [ -78.024848937988224, -6.767354011535645 ], [ -78.023689270019531, -6.76718807220459 ], [ -78.023025512695312, -6.768070220947266 ], [ -78.022346496582031, -6.769781112670898 ], [ -78.022354125976562, -6.770973205566406 ], [ -78.022720336914062, -6.771910190582219 ], [ -78.023239135742131, -6.772294998168888 ], [ -78.025413513183594, -6.772543907165527 ], [ -78.02669525146473, -6.773403167724553 ], [ -78.026870727539006, -6.77417087554926 ], [ -78.026626586914062, -6.774965763091984 ], [ -78.026069641113281, -6.77558422088623 ], [ -78.022468566894474, -6.776936054229679 ], [ -78.021881103515625, -6.77761697769165 ], [ -78.021980285644531, -6.778717994689941 ], [ -78.023818969726506, -6.781578063964787 ], [ -78.024078369140625, -6.783493041992131 ], [ -78.023414611816406, -6.786342144012394 ], [ -78.022148132324219, -6.789284229278564 ], [ -78.021156311035099, -6.792137145996094 ], [ -78.021095275878906, -6.792878150939885 ], [ -78.021568298339844, -6.794067859649658 ], [ -78.022705078125, -6.794847011566162 ], [ -78.023834228515511, -6.796041965484562 ], [ -78.0240478515625, -6.797502994537354 ], [ -78.023811340331974, -6.798571109771729 ], [ -78.022979736328125, -6.800211906433105 ], [ -78.021873474121094, -6.801781177520752 ], [ -78.020164489746094, -6.803446769714355 ], [ -78.019226074218693, -6.80469799041748 ], [ -78.018455505371094, -6.805949211120605 ], [ -78.017898559570256, -6.807506084442082 ], [ -78.017890930175724, -6.809133052825928 ], [ -78.018592834472656, -6.811511993408203 ], [ -78.020370483398381, -6.813607215881348 ], [ -78.0205078125, -6.815530776977539 ], [ -78.021125793457031, -6.817151069641113 ], [ -78.0211181640625, -6.818451881408691 ], [ -78.020385742187443, -6.819496154785156 ], [ -78.0191650390625, -6.820298194885254 ], [ -78.0184326171875, -6.820384979248047 ], [ -78.016548156738281, -6.820017814636117 ], [ -78.015350341796875, -6.820439815521183 ], [ -78.014419555664062, -6.821692943572998 ], [ -78.014183044433537, -6.823068141937256 ], [ -78.014541625976562, -6.824456214904785 ], [ -78.016189575195256, -6.827046871185303 ], [ -78.016685485839844, -6.828208923339787 ], [ -78.016593933105469, -6.82951116561884 ], [ -78.015495300292969, -6.831200122833195 ], [ -78.015792846679631, -6.832136154174805 ], [ -78.016525268554688, -6.832862854003906 ], [ -78.019630432128849, -6.834171772003174 ], [ -78.023872375488281, -6.838057994842529 ], [ -78.024223327636719, -6.838597774505615 ], [ -78.023994445800724, -6.840611934661865 ], [ -78.024314880371094, -6.841261863708439 ], [ -78.024948120117131, -6.841627120971623 ], [ -78.026947021484318, -6.842030048370361 ], [ -78.028709411621094, -6.843049049377328 ], [ -78.030364990234375, -6.844655990600586 ], [ -78.030975341796818, -6.84587907791132 ], [ -78.031097412109375, -6.848073959350586 ], [ -78.030372619628906, -6.849236965179387 ], [ -78.027763366699219, -6.850578784942627 ], [ -78.024383544921818, -6.850827217102051 ], [ -78.021255493164006, -6.851875782012883 ], [ -78.019874572753906, -6.85195779800415 ], [ -78.017662048339844, -6.852550983428898 ], [ -78.013999938964787, -6.852807998657227 ], [ -78.011627197265511, -6.853544235229435 ], [ -78.009483337402344, -6.855401992797852 ], [ -78.008155822753906, -6.857279777526799 ], [ -78.00653076171875, -6.858898162841797 ], [ -78.004966735839844, -6.860921859741211 ], [ -78.004470825195256, -6.863236904144287 ], [ -77.999526977539062, -6.867984771728459 ], [ -77.999542236328125, -6.869600772857666 ], [ -77.999931335449219, -6.870213985443058 ], [ -78.005325317382756, -6.875554084777775 ], [ -78.006584167480469, -6.877326965331974 ], [ -78.007041931152287, -6.878696918487492 ], [ -78.006629943847656, -6.879549026489258 ], [ -78.001953125, -6.881538867950383 ], [ -77.999832153320312, -6.883303165435734 ], [ -77.999923706054688, -6.88441276550293 ], [ -78.000999450683594, -6.884913921356201 ], [ -78.004867553710938, -6.888845920562687 ], [ -78.005882263183537, -6.890655040740967 ], [ -78.006011962890625, -6.891450881958008 ], [ -78.005775451660099, -6.893990039825439 ], [ -78.005210876464787, -6.894986152648926 ], [ -78.004226684570312, -6.895796775817871 ], [ -77.998565673828125, -6.898985862731934 ], [ -77.997642517089844, -6.899977207183838 ], [ -77.996650695800724, -6.901481151580811 ], [ -77.995903015136719, -6.903229236602783 ], [ -77.995780944824162, -6.90448522567749 ], [ -77.995841979980469, -6.906744003295842 ], [ -77.996665954589844, -6.910281181335449 ], [ -77.997444152832031, -6.911233901977482 ], [ -77.999916076660156, -6.913088798522892 ], [ -78.002021789550781, -6.912957191467285 ], [ -78.003013610839787, -6.913258075714111 ], [ -78.003829956054688, -6.913642883300781 ], [ -78.004554748535099, -6.914476871490479 ], [ -78.005027770996037, -6.915476799011174 ], [ -78.004997253417969, -6.916767120361328 ], [ -78.005439758300781, -6.917986869812012 ], [ -78.005569458007812, -6.920269966125431 ], [ -78.00592041015625, -6.921505928039494 ], [ -78.007034301757756, -6.922737121581974 ], [ -78.008308410644531, -6.92362117767334 ], [ -78.008857727050724, -6.924675941467228 ], [ -78.010337829589844, -6.926047801971379 ], [ -78.010841369628849, -6.927030086517334 ], [ -78.013084411621094, -6.928814888000488 ], [ -78.013809204101506, -6.929721832275391 ], [ -78.014183044433537, -6.931633949279728 ], [ -78.013450622558594, -6.934095859527588 ], [ -78.013557434082031, -6.934483051299992 ], [ -78.012466430664006, -6.936071872711182 ], [ -78.011314392089787, -6.936954021453857 ], [ -78.009681701660156, -6.937218189239502 ], [ -78.005844116210938, -6.936782836914062 ], [ -78.004432678222656, -6.937078952789307 ], [ -78.002182006835881, -6.939036846160832 ], [ -78.000480651855469, -6.940945148467961 ], [ -77.999855041503906, -6.941671848297062 ], [ -77.998794555664062, -6.943746089935246 ], [ -77.999038696288949, -6.944612026214543 ], [ -77.999900817871094, -6.945184230804387 ], [ -77.999900817871094, -6.945563793182373 ], [ -78.000312805175781, -6.946638107299748 ], [ -77.999855041503906, -6.948256015777531 ], [ -77.997222900390568, -6.952294826507568 ], [ -77.996688842773438, -6.953859806060791 ], [ -77.997062683105469, -6.954995155334416 ], [ -77.998802185058594, -6.956149101257324 ], [ -77.999900817871094, -6.9578599929809 ], [ -77.999893188476506, -6.958916187286377 ], [ -78.000572204589844, -6.959489822387638 ], [ -78.001022338867131, -6.960274219512939 ], [ -78.001350402832031, -6.962323188781681 ], [ -78.001167297363281, -6.963478088378906 ], [ -77.999862670898381, -6.964834213256779 ], [ -77.999298095703068, -6.966010093688908 ], [ -77.999282836914062, -6.968695163726807 ], [ -77.999275207519531, -6.969615936279297 ], [ -77.998527526855412, -6.970244884490967 ], [ -77.995666503906193, -6.969330787658691 ], [ -77.994102478027344, -6.969351768493596 ], [ -77.993583679199162, -6.969552040100098 ], [ -77.992385864257812, -6.970815181732178 ], [ -77.991241455078125, -6.97280216217041 ], [ -77.989151000976562, -6.975487232208195 ], [ -77.988777160644531, -6.976105213165283 ], [ -77.988677978515625, -6.976766109466439 ], [ -77.988861083984375, -6.97736120223999 ], [ -77.989631652832031, -6.977700233459416 ], [ -77.992088317871094, -6.977468013763428 ], [ -77.993507385253793, -6.977729797363281 ], [ -77.994094848632812, -6.978557109832764 ], [ -77.994293212890625, -6.981221199035588 ], [ -77.994758605957031, -6.98232889175415 ], [ -77.996681213378906, -6.983735084533691 ], [ -77.998046875, -6.983644008636475 ], [ -77.999366760253906, -6.984457969665527 ], [ -77.999885559081974, -6.985547065734863 ], [ -77.999877929687443, -6.988510131835938 ], [ -77.999290466308537, -6.989725112914982 ], [ -77.998390197753906, -6.990643024444523 ], [ -77.996940612792855, -6.991438865661621 ], [ -77.995285034179631, -6.991944789886475 ], [ -77.993858337402287, -6.992938041687012 ], [ -77.990242004394474, -6.997045040130558 ], [ -77.986854553222656, -6.999046802520695 ], [ -77.983169555664062, -7.000533103942814 ], [ -77.982955932617188, -7.001400947570801 ], [ -77.983367919921818, -7.002682209014779 ], [ -77.985748291015568, -7.004725933074894 ], [ -77.987808227539062, -7.007196903228703 ], [ -77.988082885742188, -7.00932788848877 ], [ -77.987472534179631, -7.011390209197998 ], [ -77.986572265625, -7.012553215026799 ], [ -77.985153198242188, -7.013583183288517 ], [ -77.982437133789006, -7.014369010925236 ], [ -77.980545043945312, -7.014443874359131 ], [ -77.979148864746094, -7.01530122756958 ], [ -77.978340148925724, -7.016173839569035 ], [ -77.978446960449219, -7.017394065856877 ], [ -77.979164123535156, -7.019004821777344 ], [ -77.979301452636719, -7.020611763000431 ], [ -77.979187011718693, -7.023439884185791 ], [ -77.978752136230469, -7.024112224578801 ], [ -77.977760314941349, -7.024516105651855 ], [ -77.976676940917969, -7.024575233459473 ], [ -77.974533081054688, -7.023697853088379 ], [ -77.973648071289006, -7.023693084716797 ], [ -77.972480773925781, -7.024440765380859 ], [ -77.971466064453068, -7.025540828704834 ], [ -77.970809936523324, -7.026701927185059 ], [ -77.969749450683537, -7.029914855956974 ], [ -77.966346740722656, -7.034083843231201 ], [ -77.965194702148438, -7.037830829620361 ], [ -77.964897155761605, -7.041164875030518 ], [ -77.965446472167912, -7.049374103546143 ], [ -77.965286254882812, -7.050982952117863 ], [ -77.964935302734375, -7.051998138427734 ], [ -77.96405029296875, -7.052791118621769 ], [ -77.959220886230469, -7.053317070007324 ], [ -77.957641601562443, -7.054049015045166 ], [ -77.956657409667969, -7.055338859558105 ], [ -77.952308654785043, -7.062492847442627 ], [ -77.950454711914062, -7.064582824707031 ], [ -77.949951171875, -7.064740180969238 ], [ -77.948257446289062, -7.066295146942139 ], [ -77.947494506835938, -7.067267894744873 ], [ -77.947189331054688, -7.068144798278752 ], [ -77.94734954833973, -7.069907188415527 ], [ -77.948318481445312, -7.071671009063721 ], [ -77.949188232421875, -7.074790954589844 ], [ -77.949157714843693, -7.076418876647949 ], [ -77.948516845703125, -7.078056812286377 ], [ -77.947555541992188, -7.079526901245117 ], [ -77.941848754882812, -7.084901809692326 ], [ -77.940544128417912, -7.086798191070557 ], [ -77.9400634765625, -7.088753223419189 ], [ -77.93994140625, -7.093883991241455 ], [ -77.938323974609375, -7.097754001617432 ], [ -77.937187194824219, -7.099087238311711 ], [ -77.935653686523438, -7.100424766540527 ], [ -77.932968139648438, -7.101978778839111 ], [ -77.930732727050724, -7.103726863861084 ], [ -77.929290771484318, -7.106366157531738 ], [ -77.928108215332031, -7.11433219909668 ], [ -77.927986145019474, -7.12010478973383 ], [ -77.927505493164006, -7.123703956603947 ], [ -77.927398681640568, -7.127200126647949 ], [ -77.925430297851562, -7.138181209564209 ], [ -77.925376892089844, -7.142618179321232 ], [ -77.925605773925668, -7.144079208374023 ], [ -77.925468444824219, -7.149717807769775 ], [ -77.925697326660099, -7.151995182037354 ], [ -77.925476074218693, -7.153476238250732 ], [ -77.9248046875, -7.15462684631342 ], [ -77.923759460449162, -7.155484199523926 ], [ -77.917678833007756, -7.158675193786621 ], [ -77.91552734375, -7.159457206726074 ], [ -77.9129638671875, -7.161631107330322 ], [ -77.909812927246094, -7.163142204284611 ], [ -77.908248901367074, -7.164635181427002 ], [ -77.906669616699219, -7.165348052978459 ], [ -77.903373718261662, -7.166092872619629 ], [ -77.899360656738224, -7.165764808654728 ], [ -77.89862060546875, -7.16611385345459 ], [ -77.897933959960881, -7.166768074035645 ], [ -77.897354125976506, -7.168966770172119 ], [ -77.897956848144531, -7.171304225921574 ], [ -77.897956848144531, -7.173590183258057 ], [ -77.898368835449219, -7.176784992218018 ], [ -77.898384094238281, -7.179604053497314 ], [ -77.898017883300724, -7.181042194366455 ], [ -77.897354125976506, -7.181894779205265 ], [ -77.895515441894531, -7.183054924011174 ], [ -77.89394378662098, -7.183282852172852 ], [ -77.888404846191349, -7.18346118927002 ], [ -77.887832641601506, -7.183770179748478 ], [ -77.887107849121094, -7.184634208679199 ], [ -77.886787414550724, -7.185512065887451 ], [ -77.887008666992188, -7.188068866729679 ], [ -77.886787414550724, -7.18896484375 ], [ -77.885414123535156, -7.190454959869385 ], [ -77.883811950683537, -7.191124916076603 ], [ -77.882286071777287, -7.192234992980957 ], [ -77.881080627441406, -7.19350004196167 ], [ -77.88055419921875, -7.194444179534912 ], [ -77.880638122558594, -7.195526123046875 ], [ -77.882194519042912, -7.197368144988957 ], [ -77.882949829101506, -7.199098110198975 ], [ -77.882614135742188, -7.201495170593262 ], [ -77.881790161132812, -7.202809810638428 ], [ -77.881332397460881, -7.204492092132512 ], [ -77.880912780761719, -7.210142135620004 ], [ -77.881156921386662, -7.211975097656193 ], [ -77.882476806640568, -7.21622991561884 ], [ -77.882583618164006, -7.218289852142334 ], [ -77.882415771484375, -7.219454765319824 ], [ -77.882133483886719, -7.219892024993896 ], [ -77.88055419921875, -7.220995903015137 ], [ -77.877975463867188, -7.222139835357609 ], [ -77.875442504882699, -7.223682880401611 ], [ -77.871704101562443, -7.225197792053223 ], [ -77.871261596679688, -7.225716114044133 ], [ -77.870826721191406, -7.227126121520939 ], [ -77.870185852050724, -7.227838039398137 ], [ -77.868171691894474, -7.227794170379582 ], [ -77.864906311035156, -7.226515769958496 ], [ -77.863525390625, -7.226406097412109 ], [ -77.862648010253849, -7.226943969726506 ], [ -77.8602294921875, -7.229526042938176 ], [ -77.859039306640511, -7.230373859405518 ], [ -77.857078552246094, -7.23092794418335 ], [ -77.854644775390568, -7.230752944946289 ], [ -77.853881835937443, -7.230948925018254 ], [ -77.850906372070256, -7.233288764953556 ], [ -77.849723815917969, -7.234597206115666 ], [ -77.849166870117188, -7.235657215118351 ], [ -77.849258422851562, -7.237273216247559 ], [ -77.849815368652344, -7.238508224487305 ], [ -77.854110717773438, -7.241787910461426 ], [ -77.856353759765568, -7.244112968444767 ], [ -77.857650756835938, -7.24748420715332 ], [ -77.859207153320256, -7.253771781921387 ], [ -77.859542846679688, -7.259137153625375 ], [ -77.859367370605469, -7.265724182128906 ], [ -77.858680725097656, -7.26702976226801 ], [ -77.857810974121094, -7.268027782440186 ], [ -77.856094360351562, -7.268815994262695 ], [ -77.854965209960938, -7.269780158996582 ], [ -77.854431152343693, -7.270715236663818 ], [ -77.85418701171875, -7.271766185760441 ], [ -77.854331970214787, -7.273091793060303 ], [ -77.85650634765625, -7.279177188873234 ], [ -77.856773376464844, -7.280900001525879 ], [ -77.856712341308594, -7.282102108001652 ], [ -77.856300354003906, -7.283109188079834 ], [ -77.855300903320256, -7.284397125244141 ], [ -77.853698730468636, -7.285781860351506 ], [ -77.852195739746094, -7.285834789276123 ], [ -77.849334716796875, -7.28494119644165 ], [ -77.846717834472599, -7.285393238067627 ], [ -77.843597412109375, -7.28672981262207 ], [ -77.840377807617188, -7.289388179779053 ], [ -77.838806152343693, -7.291069984435978 ], [ -77.838462829589844, -7.292778968810978 ], [ -77.838279724121094, -7.296677112579289 ], [ -77.837638854980469, -7.298882961273137 ], [ -77.836601257324162, -7.300426006317139 ], [ -77.833335876464844, -7.303448200225773 ], [ -77.832450866699219, -7.305113792419434 ], [ -77.831893920898438, -7.306626796722355 ], [ -77.831756591796818, -7.309309959411621 ], [ -77.831520080566406, -7.309791088104248 ], [ -77.831710815429688, -7.314208030700627 ], [ -77.832267761230469, -7.316137790679932 ], [ -77.835113525390625, -7.320584774017334 ], [ -77.835105895996094, -7.321188926696777 ], [ -77.83443450927723, -7.322539806365967 ], [ -77.834449768066406, -7.323623180389404 ], [ -77.835136413574219, -7.324440956115666 ], [ -77.836570739746094, -7.32518196105957 ], [ -77.836982727050724, -7.325748920440674 ], [ -77.836135864257756, -7.329115867614746 ], [ -77.836090087890625, -7.332602977752629 ], [ -77.836517333984318, -7.3345689773559 ], [ -77.838050842285099, -7.33830022811884 ], [ -77.838508605956974, -7.340148925781193 ], [ -77.838096618652344, -7.340812206268254 ], [ -77.837295532226449, -7.341322898864746 ], [ -77.835548400878849, -7.34150505065918 ], [ -77.834243774413949, -7.341143131256104 ], [ -77.832374572753906, -7.341824054718018 ], [ -77.829826354980412, -7.343122959136963 ], [ -77.829132080078125, -7.344708919525146 ], [ -77.829460144042912, -7.347425937652588 ], [ -77.828117370605412, -7.350650787353459 ], [ -77.826927185058594, -7.352437973022461 ], [ -77.825859069824219, -7.354613780975342 ], [ -77.823898315429688, -7.361728191375732 ], [ -77.821342468261662, -7.368076801300049 ], [ -77.821800231933594, -7.369356155395508 ], [ -77.822708129882812, -7.369938850402775 ], [ -77.824172973632812, -7.371338844299316 ], [ -77.824760437011719, -7.372075080871582 ], [ -77.825439453124943, -7.373545169830322 ], [ -77.825492858886719, -7.376100063323975 ], [ -77.8248291015625, -7.37815618515009 ], [ -77.818565368652344, -7.384627819061279 ], [ -77.815910339355412, -7.388999938964787 ], [ -77.814315795898438, -7.390998840331974 ], [ -77.811172485351562, -7.393187046051025 ], [ -77.80706787109375, -7.394548892974854 ], [ -77.805290222167969, -7.395427227020264 ], [ -77.803398132324219, -7.398067951202336 ], [ -77.802345275878906, -7.400977134704533 ], [ -77.801589965820312, -7.401928901672363 ], [ -77.799972534179631, -7.402888774871769 ], [ -77.791633605957031, -7.405045032501221 ], [ -77.789108276367131, -7.406588077545109 ], [ -77.788078308105412, -7.406920909881478 ], [ -77.786094665527344, -7.408530235290414 ], [ -77.782119750976562, -7.409749031066895 ], [ -77.78125, -7.410415172576847 ], [ -77.780326843261662, -7.411577224731445 ], [ -77.778961181640625, -7.414665222167969 ], [ -77.778083801269531, -7.41602611541748 ], [ -77.776023864746094, -7.4170241355896 ], [ -77.772758483886719, -7.417840003967285 ], [ -77.771636962890625, -7.418569087982121 ], [ -77.771316528320312, -7.419149875640869 ], [ -77.771392822265568, -7.420107841491699 ], [ -77.771697998046875, -7.420855045318604 ], [ -77.77276611328125, -7.422077178955021 ], [ -77.77410888671875, -7.424609184265137 ], [ -77.774360656738281, -7.425765037536564 ], [ -77.774246215820256, -7.426867961883545 ], [ -77.773284912109318, -7.4292311668396 ], [ -77.772117614746094, -7.431215763091927 ], [ -77.770233154296818, -7.433323860168457 ], [ -77.768882751464787, -7.435338973999023 ], [ -77.768653869628906, -7.436116218566838 ], [ -77.768753051757812, -7.438139915466309 ], [ -77.768241882324162, -7.438739776611328 ], [ -77.768287658691406, -7.439272880554199 ], [ -77.767494201660156, -7.440200805664006 ], [ -77.76568603515625, -7.440662860870361 ], [ -77.762329101562443, -7.440548896789551 ], [ -77.758964538574162, -7.439612865447941 ], [ -77.757217407226562, -7.439793109893799 ], [ -77.755409240722656, -7.440944194793644 ], [ -77.753662109375, -7.443347930908146 ], [ -77.751388549804688, -7.449119091033936 ], [ -77.748275756835938, -7.454930782318058 ], [ -77.747543334960881, -7.45710277557373 ], [ -77.747093200683594, -7.459356784820557 ], [ -77.745918273925724, -7.462371826171875 ], [ -77.744590759277287, -7.464231967926025 ], [ -77.742286682128849, -7.466071128845215 ], [ -77.741622924804631, -7.467693805694466 ], [ -77.741638183593693, -7.4689040184021 ], [ -77.743087768554688, -7.472391128539982 ], [ -77.744125366210938, -7.474291801452637 ], [ -77.745750427246094, -7.476097106933594 ], [ -77.746620178222656, -7.478603839874268 ], [ -77.747283935546875, -7.479613780975342 ], [ -77.748382568359318, -7.480120182037297 ], [ -77.748924255371094, -7.480034828186035 ], [ -77.750450134277344, -7.479194164276066 ], [ -77.752166748046875, -7.478831768035889 ], [ -77.754974365234318, -7.479194164276066 ], [ -77.763053894042969, -7.479053020477295 ], [ -77.764366149902344, -7.479388236999398 ], [ -77.766860961914062, -7.481234073638916 ], [ -77.768798828124943, -7.481818199157715 ], [ -77.773361206054688, -7.484445095062256 ], [ -77.775131225585938, -7.486711025238037 ], [ -77.778419494628849, -7.489074230194092 ], [ -77.780387878417969, -7.491105079650879 ], [ -77.78408050537098, -7.493828773498478 ], [ -77.788253784179631, -7.498050212860107 ], [ -77.792091369628793, -7.499703884124756 ], [ -77.793518066406193, -7.500716209411564 ], [ -77.795318603515568, -7.501293182373047 ], [ -77.798683166503906, -7.501476764678955 ], [ -77.803077697753906, -7.502771854400635 ], [ -77.806289672851506, -7.502460002899113 ], [ -77.811134338378849, -7.504290103912354 ], [ -77.814407348632699, -7.504648208618164 ], [ -77.817710876464787, -7.507003784179688 ], [ -77.821235656738281, -7.508681774139404 ], [ -77.823371887206918, -7.508974075317383 ], [ -77.826324462890568, -7.50878381729126 ], [ -77.827980041503906, -7.509377002716064 ], [ -77.829299926757812, -7.510724067687988 ], [ -77.830116271972599, -7.510727882385254 ], [ -77.830810546874886, -7.511166095733586 ], [ -77.833595275878906, -7.5107421875 ], [ -77.835098266601506, -7.510750770568848 ], [ -77.835853576660099, -7.510972023010197 ], [ -77.836837768554688, -7.511688232421875 ], [ -77.838706970214787, -7.512009143829289 ], [ -77.839859008789006, -7.512707233428841 ], [ -77.841606140136719, -7.512832164764404 ], [ -77.843193054199162, -7.513860225677433 ], [ -77.844276428222656, -7.514041900634766 ], [ -77.847053527832031, -7.517818927764893 ], [ -77.848594665527344, -7.518367767333984 ], [ -77.849754333496037, -7.519292831420842 ], [ -77.852233886718693, -7.51990890502924 ], [ -77.853462219238281, -7.520975112915039 ], [ -77.854972839355469, -7.521535873413086 ], [ -77.857162475585938, -7.523537158966064 ], [ -77.857803344726562, -7.523649215698242 ], [ -77.858421325683594, -7.525144100189209 ], [ -77.858329772949219, -7.527295112609806 ], [ -77.858680725097656, -7.528268814086857 ], [ -77.860847473144474, -7.530098915100098 ], [ -77.861312866210881, -7.532190799713078 ], [ -77.862731933593693, -7.53410816192627 ], [ -77.862716674804688, -7.535741806030273 ], [ -77.862098693847656, -7.537372112274113 ], [ -77.862091064453011, -7.538990020751896 ], [ -77.861572265625, -7.542181015014592 ], [ -77.861625671386719, -7.543121814727726 ], [ -77.862075805664006, -7.544248104095459 ], [ -77.861961364746037, -7.546127796173096 ], [ -77.8623046875, -7.546856880187931 ], [ -77.862205505371094, -7.552737236022949 ], [ -77.862449645996037, -7.553505897521916 ], [ -77.863563537597656, -7.555188179016113 ], [ -77.8636474609375, -7.557075023651123 ], [ -77.865020751953068, -7.558565139770508 ], [ -77.865692138671818, -7.560612201690674 ], [ -77.866287231445199, -7.561340808868351 ], [ -77.866386413574219, -7.564167022705021 ], [ -77.866737365722599, -7.564880847930908 ], [ -77.86647796630848, -7.568367958068848 ], [ -77.867919921875, -7.570796966552734 ], [ -77.86773681640625, -7.574015140533447 ], [ -77.868331909179688, -7.575187206268311 ], [ -77.868080139160099, -7.576253890991154 ], [ -77.86737060546875, -7.577695846557617 ], [ -77.867141723632756, -7.580108165740853 ], [ -77.867950439453125, -7.581179141998291 ], [ -77.868072509765568, -7.582921981811467 ], [ -77.869850158691406, -7.584581851959229 ], [ -77.869895935058537, -7.585321903228703 ], [ -77.870635986328125, -7.585661888122559 ], [ -77.872932434081974, -7.585844039916992 ], [ -77.873725891113168, -7.585766792297306 ], [ -77.875053405761662, -7.585099220275822 ], [ -77.876396179199105, -7.585233211517334 ], [ -77.877349853515511, -7.585725784301758 ], [ -77.878158569335938, -7.58742618560791 ], [ -77.878814697265625, -7.587900161743164 ], [ -77.880142211914062, -7.588134765625 ], [ -77.881507873535156, -7.588714122772217 ], [ -77.883659362792969, -7.588746070861816 ], [ -77.8853759765625, -7.589554786682072 ], [ -77.886054992675781, -7.589451789855957 ], [ -77.887260437011662, -7.588432788848877 ], [ -77.889007568359375, -7.58853816986084 ], [ -77.891273498535043, -7.589454174041634 ], [ -77.892425537109375, -7.590376853942814 ], [ -77.89361572265625, -7.590169906616154 ], [ -77.894187927246094, -7.590734958648625 ], [ -77.894981384277287, -7.590494155883789 ], [ -77.895759582519531, -7.59120512008667 ], [ -77.896720886230469, -7.591179847717228 ], [ -77.899246215820312, -7.593175888061523 ], [ -77.901962280273438, -7.593989849090576 ], [ -77.903511047363281, -7.595045089721566 ], [ -77.9053955078125, -7.595267772674504 ], [ -77.906196594238281, -7.596176147460938 ], [ -77.907241821289062, -7.596808910369873 ], [ -77.909111022949219, -7.596896171569824 ], [ -77.910720825195256, -7.597589015960637 ], [ -77.91302490234375, -7.597367763519287 ], [ -77.915557861328068, -7.598866939544678 ], [ -77.918647766113281, -7.599252223968506 ], [ -77.920669555664062, -7.599141120910645 ], [ -77.921890258789062, -7.5999817848205 ], [ -77.923149108886719, -7.600450992584229 ], [ -77.923332214355469, -7.600874900817814 ], [ -77.922348022460881, -7.601603984832764 ], [ -77.922042846679631, -7.602628231048527 ], [ -77.920867919921875, -7.604442119598389 ], [ -77.919166564941406, -7.606017112731877 ], [ -77.918716430664006, -7.607150077819767 ], [ -77.917221069335938, -7.60833215713501 ], [ -77.916770935058594, -7.609114170074463 ], [ -77.916633605956974, -7.610486030578613 ], [ -77.917068481445312, -7.611324787139893 ], [ -77.917457580566406, -7.613048076629639 ], [ -77.916259765624886, -7.615115165710449 ], [ -77.916267395019531, -7.617806911468449 ], [ -77.915290832519474, -7.618745803833008 ], [ -77.915008544921818, -7.619369983673096 ], [ -77.915382385253849, -7.620911121368408 ], [ -77.915107727050724, -7.621620178222656 ], [ -77.915321350097656, -7.623486042022705 ], [ -77.91485595703125, -7.624591827392578 ], [ -77.9150390625, -7.626488208770752 ], [ -77.915473937988224, -7.627126216888428 ], [ -77.916709899902287, -7.628030776977482 ], [ -77.918983459472656, -7.628160953521729 ], [ -77.9207763671875, -7.629384994506836 ], [ -77.9234619140625, -7.63370418548584 ], [ -77.925300598144474, -7.635869026184082 ], [ -77.926567077636719, -7.636880874633732 ], [ -77.92822265625, -7.637456893920842 ], [ -77.930778503417969, -7.637701034545898 ], [ -77.932151794433537, -7.638785839080811 ], [ -77.934761047363168, -7.639888763427678 ], [ -77.938522338867188, -7.63993501663208 ], [ -77.939666748046875, -7.640738964080754 ], [ -77.940017700195312, -7.642183780670166 ], [ -77.939331054687443, -7.643000125884953 ], [ -77.9390869140625, -7.643771171569767 ], [ -77.939529418945199, -7.647109985351562 ], [ -77.939453125, -7.647922992706242 ], [ -77.938163757324162, -7.648636817932129 ], [ -77.936454772949162, -7.650527954101562 ], [ -77.932075500488224, -7.652907848358154 ], [ -77.931564331054688, -7.653797149658203 ], [ -77.931854248046875, -7.653873920440674 ], [ -77.932968139648438, -7.653416156768799 ], [ -77.934173583984318, -7.653577804565373 ], [ -77.934852600097599, -7.654252052307129 ], [ -77.935432434082031, -7.655756950378418 ], [ -77.936088562011662, -7.656627178192139 ], [ -77.939727783203125, -7.658726215362549 ], [ -77.940101623535043, -7.658723831176701 ], [ -77.940422058105469, -7.657827854156494 ], [ -77.941032409667912, -7.657471179962101 ], [ -77.942611694335938, -7.658489227294865 ], [ -77.944618225097656, -7.658439159393311 ], [ -77.946205139160043, -7.659458160400334 ], [ -77.948402404785156, -7.660102844238224 ], [ -77.951454162597656, -7.659531116485596 ], [ -77.955680847167969, -7.656882762908936 ], [ -77.957267761230355, -7.656182765960693 ], [ -77.958740234375, -7.656445026397705 ], [ -77.960899353027344, -7.657553195953369 ], [ -77.961509704589844, -7.658117771148682 ], [ -77.961776733398438, -7.658700942993164 ], [ -77.961097717285156, -7.66074800491333 ], [ -77.961700439453125, -7.661609172821045 ], [ -77.96197509765625, -7.663641929626465 ], [ -77.962646484375, -7.664586067199707 ], [ -77.964347839355469, -7.665974140167236 ], [ -77.964706420898324, -7.666820049285889 ], [ -77.964813232421875, -7.668056964874211 ], [ -77.964088439941406, -7.669335842132568 ], [ -77.964195251464787, -7.670945167541504 ], [ -77.963409423828125, -7.67168998718256 ], [ -77.963020324707031, -7.672543048858529 ], [ -77.962112426757756, -7.673360824584961 ], [ -77.962791442871037, -7.674468040466309 ], [ -77.963607788085938, -7.675195217132568 ], [ -77.965263366699162, -7.675778865814152 ], [ -77.96722412109375, -7.675268173217773 ], [ -77.970596313476506, -7.672807216644287 ], [ -77.972137451171818, -7.67232608795166 ], [ -77.973968505859375, -7.670380115509033 ], [ -77.975433349609375, -7.66968202590931 ], [ -77.976493835449219, -7.669486045837402 ], [ -77.978614807128849, -7.671115875244141 ], [ -77.981529235839844, -7.671665191650334 ], [ -77.985603332519531, -7.673479080200195 ], [ -77.986946105957031, -7.674373149871826 ], [ -77.990020751953125, -7.676998138427678 ], [ -77.9913330078125, -7.677361011505127 ], [ -77.992973327636719, -7.67823410034174 ], [ -77.994186401367188, -7.678116798400879 ], [ -77.996566772460938, -7.679852008819523 ], [ -77.999778747558537, -7.679846763610783 ], [ -78.001518249511605, -7.679293155670166 ], [ -78.004074096679631, -7.679790019989014 ], [ -78.008216857910156, -7.67975378036499 ], [ -78.012603759765625, -7.680066108703556 ], [ -78.019180297851562, -7.681501865386963 ], [ -78.022132873535156, -7.681732177734375 ], [ -78.02593994140625, -7.683125019073429 ], [ -78.027542114257756, -7.683356761932316 ], [ -78.029106140136719, -7.682975769042969 ], [ -78.031585693359375, -7.681711196899357 ], [ -78.037445068359318, -7.680342197418213 ], [ -78.0435791015625, -7.67933177947998 ], [ -78.045288085937443, -7.679238796234074 ], [ -78.047843933105412, -7.679780960083008 ], [ -78.049491882324219, -7.679255008697453 ], [ -78.051681518554574, -7.68029594421381 ], [ -78.056083679199219, -7.683842182159424 ], [ -78.059677124023381, -7.686046123504582 ], [ -78.063629150390625, -7.689586162567082 ], [ -78.064323425292969, -7.689788818359318 ], [ -78.066749572753793, -7.689870834350586 ], [ -78.068283081054688, -7.69061803817749 ], [ -78.069961547851506, -7.690978050231877 ], [ -78.074256896972599, -7.693412780761662 ], [ -78.077613830566349, -7.694067001342773 ], [ -78.079185485839844, -7.69520187377924 ], [ -78.080909729003906, -7.696093082427979 ], [ -78.083282470703125, -7.693745136260986 ], [ -78.085014343261719, -7.690807819366455 ], [ -78.087814331054631, -7.688418865203801 ], [ -78.089645385742188, -7.686085224151498 ], [ -78.090499877929688, -7.684100151062012 ], [ -78.091850280761719, -7.679077148437443 ], [ -78.092994689941406, -7.676539897918701 ], [ -78.094314575195312, -7.67531776428217 ], [ -78.099525451660099, -7.671480178833008 ], [ -78.102760314941406, -7.668439865112305 ], [ -78.103668212890625, -7.667847156524601 ], [ -78.106903076171875, -7.664118766784668 ], [ -78.109344482421818, -7.662438869476262 ], [ -78.111099243164062, -7.660638809204045 ], [ -78.11358642578125, -7.65903902053833 ], [ -78.114860534667969, -7.657523155212346 ], [ -78.115806579589844, -7.655799865722656 ], [ -78.117103576660043, -7.654994964599609 ], [ -78.118194580078125, -7.653929233551025 ], [ -78.119033813476562, -7.653616905212346 ], [ -78.119949340820256, -7.653963088989201 ], [ -78.123092651367131, -7.653451919555664 ], [ -78.126167297363281, -7.653474807739201 ], [ -78.127563476562443, -7.653799057006836 ], [ -78.129165649414062, -7.655086994171086 ], [ -78.130401611328125, -7.658211231231633 ], [ -78.131889343261719, -7.659774780273438 ], [ -78.132804870605412, -7.660154819488525 ], [ -78.13629150390625, -7.66035604476923 ], [ -78.139076232910156, -7.662367820739689 ], [ -78.141403198242131, -7.663544178008976 ], [ -78.143013000488224, -7.664698123931885 ], [ -78.14385986328125, -7.665767192840576 ], [ -78.144149780273438, -7.666513919830322 ], [ -78.144165039062443, -7.668501853942757 ], [ -78.142532348632756, -7.674013137817383 ], [ -78.142219543457031, -7.676355838775635 ], [ -78.141120910644474, -7.679586887359619 ], [ -78.140571594238281, -7.680521965026855 ], [ -78.138786315917969, -7.681717872619629 ], [ -78.138236999511719, -7.68242692947382 ], [ -78.138160705566349, -7.684150218963566 ], [ -78.138427734375, -7.684891223907471 ], [ -78.139251708984375, -7.685581207275334 ], [ -78.140434265136662, -7.685616016387939 ], [ -78.142250061035099, -7.686181068420353 ], [ -78.147003173828125, -7.690301895141545 ], [ -78.151603698730412, -7.693294048309269 ], [ -78.157112121582031, -7.694624900817814 ], [ -78.160247802734375, -7.695949077606144 ], [ -78.162376403808537, -7.69838094711298 ], [ -78.165351867675724, -7.704419136047363 ], [ -78.166801452636719, -7.706430912017765 ], [ -78.167472839355469, -7.707880973815861 ], [ -78.169235229492131, -7.709802150726318 ], [ -78.169876098632812, -7.710834026336613 ], [ -78.172805786132812, -7.713631153106633 ], [ -78.174041748046875, -7.714190959930363 ], [ -78.175041198730469, -7.714210033416748 ], [ -78.177505493164062, -7.712756156921387 ], [ -78.179489135742188, -7.71265983581543 ], [ -78.181045532226562, -7.713325023651066 ], [ -78.18597412109375, -7.716333866119328 ], [ -78.187965393066406, -7.716887950897217 ], [ -78.190811157226506, -7.7182297706604 ], [ -78.191825866699219, -7.719503879547062 ], [ -78.191673278808537, -7.722548961639404 ], [ -78.191993713378906, -7.723955154418888 ], [ -78.192802429199162, -7.725765228271484 ], [ -78.193656921386662, -7.726698875427246 ], [ -78.195556640624943, -7.727542877197209 ], [ -78.197525024414062, -7.729415893554688 ], [ -78.199081420898438, -7.730027198791447 ], [ -78.201263427734375, -7.730299949645882 ], [ -78.203781127929631, -7.729143142700195 ], [ -78.205848693847656, -7.729116916656437 ], [ -78.206787109375, -7.72882080078125 ], [ -78.208206176757812, -7.729063034057617 ], [ -78.208824157714787, -7.728950977325439 ], [ -78.2105712890625, -7.728007793426457 ], [ -78.212463378906193, -7.726359844207764 ], [ -78.214012145996094, -7.725433826446533 ], [ -78.215660095214844, -7.724040031433105 ], [ -78.217109680175724, -7.723505973815861 ], [ -78.217964172363281, -7.723616123199463 ], [ -78.219711303710881, -7.72459602355957 ], [ -78.22015380859375, -7.725577831268311 ], [ -78.220390319824219, -7.726812839508057 ], [ -78.220275878906193, -7.728340148925781 ], [ -78.219741821289062, -7.729772090911808 ], [ -78.218765258788949, -7.731479167938232 ], [ -78.217254638671875, -7.732444763183594 ], [ -78.216705322265625, -7.735177993774414 ], [ -78.216232299804688, -7.7359299659729 ], [ -78.214073181152287, -7.737971782684326 ], [ -78.213386535644531, -7.738961219787598 ], [ -78.212661743163949, -7.741557121276855 ], [ -78.212837219238224, -7.743072986602783 ], [ -78.213661193847656, -7.744458198547306 ], [ -78.217033386230412, -7.747819900512638 ], [ -78.217514038085881, -7.749080181121769 ], [ -78.217697143554631, -7.750788211822453 ], [ -78.217453002929688, -7.752665996551514 ], [ -78.216651916503849, -7.754578113555908 ], [ -78.21258544921875, -7.758872032165527 ], [ -78.212554931640568, -7.759675979614258 ], [ -78.212860107421875, -7.760142803192082 ], [ -78.2137451171875, -7.760108947753906 ], [ -78.216156005859318, -7.758728027343693 ], [ -78.218307495117188, -7.758504867553597 ], [ -78.219383239746094, -7.758650779724121 ], [ -78.220718383789062, -7.75941610336298 ], [ -78.221588134765625, -7.760980129241943 ], [ -78.2227783203125, -7.762362957000732 ], [ -78.223541259765625, -7.763088226318359 ], [ -78.224105834960824, -7.763202190399113 ], [ -78.226577758789006, -7.761004924774113 ], [ -78.229789733886719, -7.759355068206787 ], [ -78.2315673828125, -7.758755207061654 ], [ -78.234451293945312, -7.758571147918701 ], [ -78.237533569335881, -7.75712776184082 ], [ -78.243896484375, -7.756595134735107 ], [ -78.247932434081974, -7.75680685043335 ], [ -78.253044128417969, -7.755096912383976 ], [ -78.256187438964844, -7.755242824554387 ], [ -78.258369445800781, -7.754703044891301 ], [ -78.258926391601562, -7.754753112792969 ], [ -78.259750366210881, -7.754447937011662 ], [ -78.262374877929688, -7.754337787628117 ], [ -78.263420104980469, -7.75452804565424 ], [ -78.266006469726562, -7.755593776702881 ], [ -78.268600463867188, -7.755301952362061 ], [ -78.271652221679688, -7.75425910949707 ], [ -78.273773193359318, -7.753111839294434 ], [ -78.274803161621094, -7.752383232116699 ], [ -78.276214599609375, -7.75052976608265 ], [ -78.277938842773438, -7.749080181121769 ], [ -78.279380798339844, -7.748355865478516 ], [ -78.28155517578125, -7.747752189636117 ], [ -78.282638549804631, -7.746821880340576 ], [ -78.282463073730412, -7.74417781829834 ], [ -78.283233642578011, -7.742464065551701 ], [ -78.283836364746094, -7.739514827728158 ], [ -78.283447265625, -7.736203193664551 ], [ -78.282058715820256, -7.73221492767334 ], [ -78.281898498535043, -7.728648185729924 ], [ -78.281547546386719, -7.72661018371582 ], [ -78.281265258789062, -7.726060867309513 ], [ -78.280059814453068, -7.725103855133 ], [ -78.278602600097656, -7.724213123321476 ], [ -78.2777099609375, -7.724037170410156 ], [ -78.277015686035099, -7.723483085632324 ], [ -78.276168823242131, -7.722533226013184 ], [ -78.276062011718693, -7.721548080444336 ], [ -78.276824951171818, -7.71973705291748 ], [ -78.277824401855469, -7.718708992004338 ], [ -78.279968261718693, -7.718033790588322 ], [ -78.281455993652344, -7.717191219329777 ], [ -78.283737182617188, -7.716650962829533 ], [ -78.284637451171818, -7.716163158416691 ], [ -78.284957885742188, -7.715376853942871 ], [ -78.285690307617131, -7.711567878723145 ], [ -78.286857604980355, -7.709852218627873 ], [ -78.288604736328125, -7.707878112792912 ], [ -78.290138244628906, -7.707055091857853 ], [ -78.292480468749943, -7.706658840179443 ], [ -78.293792724609318, -7.706936836242676 ], [ -78.294731140136719, -7.707451820373478 ], [ -78.296012878417855, -7.707261085510197 ], [ -78.297142028808537, -7.706242084503174 ], [ -78.29840087890625, -7.704489231109619 ], [ -78.299911499023381, -7.701424121856633 ], [ -78.301521301269474, -7.698729991912785 ], [ -78.302658081054631, -7.697701930999756 ], [ -78.303703308105412, -7.697196006774846 ], [ -78.305229187011662, -7.697086811065674 ], [ -78.305961608886719, -7.697422027587777 ], [ -78.306785583496037, -7.698490142822266 ], [ -78.307548522949162, -7.700074195861816 ], [ -78.309463500976562, -7.701965808868408 ], [ -78.312294006347599, -7.703135013580322 ], [ -78.3153076171875, -7.704051971435547 ], [ -78.316184997558594, -7.703883171081429 ], [ -78.317314147949219, -7.702980041503906 ], [ -78.3173828125, -7.701011180877629 ], [ -78.317634582519474, -7.699961185455209 ], [ -78.318153381347656, -7.69912576675415 ], [ -78.319007873535156, -7.69847917556757 ], [ -78.320800781249943, -7.698418140411377 ], [ -78.324386596679688, -7.699618816375732 ], [ -78.326431274414006, -7.699929237365723 ], [ -78.327423095703125, -7.699703216552678 ], [ -78.328483581542969, -7.699028015136662 ], [ -78.329353332519531, -7.698766231536808 ], [ -78.332656860351562, -7.695725917816105 ], [ -78.3345947265625, -7.693128108978271 ], [ -78.336021423339844, -7.690741062164307 ], [ -78.336921691894474, -7.689723014831543 ], [ -78.338043212890568, -7.689164161682129 ], [ -78.339462280273438, -7.688963890075684 ], [ -78.340507507324219, -7.688494205474797 ], [ -78.342056274414006, -7.687416076660156 ], [ -78.344551086425724, -7.685093879699707 ], [ -78.345169067382812, -7.684097766876221 ], [ -78.347465515136719, -7.681451797485352 ], [ -78.349609374999886, -7.680025100708008 ], [ -78.350692749023438, -7.678597927093506 ], [ -78.350898742675781, -7.677812099456673 ], [ -78.351211547851506, -7.677493095397949 ], [ -78.351402282714787, -7.675983905792236 ], [ -78.351966857910099, -7.675166130065861 ], [ -78.353752136230469, -7.674557209014893 ], [ -78.355812072753906, -7.67469406127924 ], [ -78.356857299804574, -7.674431800842228 ], [ -78.357749938964844, -7.674056053161621 ], [ -78.358909606933594, -7.673052787780705 ], [ -78.359550476074219, -7.67208194732666 ], [ -78.359939575195312, -7.670977115631104 ], [ -78.359703063964787, -7.668741226196232 ], [ -78.359230041503849, -7.66700887680048 ], [ -78.358192443847543, -7.664515018463135 ], [ -78.357032775878849, -7.66279220581049 ], [ -78.356857299804574, -7.662115097045898 ], [ -78.357467651367188, -7.660123825073242 ], [ -78.359779357910099, -7.657145023345947 ], [ -78.360527038574219, -7.655213832855225 ], [ -78.360671997070199, -7.653433799743539 ], [ -78.360252380371094, -7.647089004516545 ], [ -78.360557556152287, -7.64580583572382 ], [ -78.362274169921818, -7.643984794616642 ], [ -78.363922119140625, -7.643566131591797 ], [ -78.366127014160156, -7.6440172195434 ], [ -78.368553161621037, -7.64422416687006 ], [ -78.369720458984318, -7.645109176635685 ], [ -78.371894836425724, -7.645226955413818 ], [ -78.372406005859375, -7.644880771636963 ], [ -78.374572753906193, -7.64146900177002 ], [ -78.375717163085881, -7.6408371925354 ], [ -78.376518249511719, -7.638833999633789 ], [ -78.38140869140625, -7.633938789367676 ], [ -78.38226318359375, -7.631772994995117 ], [ -78.382202148437443, -7.630065917968693 ], [ -78.381553649902287, -7.62800407409668 ], [ -78.380592346191349, -7.626602172851562 ], [ -78.379844665527344, -7.624966144561768 ], [ -78.377967834472656, -7.622199058532715 ], [ -78.377845764160156, -7.620999813079834 ], [ -78.378173828125, -7.618629932403508 ], [ -78.377426147460881, -7.617173194885254 ], [ -78.377044677734318, -7.615729808807373 ], [ -78.377723693847599, -7.61021709442133 ], [ -78.379562377929688, -7.603277206420898 ], [ -78.379180908203125, -7.596995830535889 ], [ -78.378219604492074, -7.594970226287785 ], [ -78.376419067382812, -7.593142032623234 ], [ -78.372703552246094, -7.592041015624886 ], [ -78.367500305175781, -7.591378211975041 ], [ -78.365036010742131, -7.589085102081242 ], [ -78.361640930175781, -7.584976196289006 ], [ -78.360679626464844, -7.58235502243042 ], [ -78.360427856445312, -7.579494953155518 ], [ -78.359901428222599, -7.577033042907658 ], [ -78.359184265136719, -7.575366973876953 ], [ -78.358009338378906, -7.574049949645996 ], [ -78.357467651367188, -7.572988033294621 ], [ -78.357925415039062, -7.567854881286564 ], [ -78.359306335449162, -7.563029766082707 ], [ -78.359107971191406, -7.560603141784668 ], [ -78.358482360839844, -7.55836009979248 ], [ -78.358787536621094, -7.554871082305908 ], [ -78.359481811523438, -7.553024768829289 ], [ -78.362342834472656, -7.548118114471436 ], [ -78.364051818847656, -7.544058799743652 ], [ -78.363990783691349, -7.542712211608773 ], [ -78.363487243652344, -7.541561126708928 ], [ -78.362861633300724, -7.538937091827393 ], [ -78.361984252929631, -7.537788867950326 ], [ -78.360595703125, -7.537474155426025 ], [ -78.359527587890511, -7.536489963531437 ], [ -78.358619689941406, -7.533850193023682 ], [ -78.358390808105469, -7.530889987945557 ], [ -78.357818603515625, -7.528897762298584 ], [ -78.355384826660156, -7.525232791900578 ], [ -78.355117797851506, -7.52354621887207 ], [ -78.354568481445199, -7.522313117980957 ], [ -78.352775573730469, -7.520177841186467 ], [ -78.352081298828068, -7.517282962799072 ], [ -78.350288391113281, -7.514607906341496 ], [ -78.349655151367188, -7.511919975280762 ], [ -78.349075317382812, -7.511354923248291 ], [ -78.34712982177723, -7.510412216186523 ], [ -78.346092224121094, -7.507458209991398 ], [ -78.345596313476506, -7.506813049316406 ], [ -78.344642639160099, -7.506313800811711 ], [ -78.343826293945312, -7.50633716583252 ], [ -78.341499328613224, -7.507303237914982 ], [ -78.3397216796875, -7.507587909698486 ], [ -78.334602355956974, -7.509568214416447 ], [ -78.333633422851562, -7.509712219238224 ], [ -78.331733703613281, -7.509572982788029 ], [ -78.328865051269531, -7.508815765380859 ], [ -78.326614379882756, -7.508807182312012 ], [ -78.325569152831974, -7.508553981781006 ], [ -78.323127746582031, -7.506585121154728 ], [ -78.321708679199219, -7.504717826843262 ], [ -78.321128845214844, -7.503366947174072 ], [ -78.325599670410156, -7.500877857208195 ], [ -78.326492309570312, -7.499091148376465 ], [ -78.3270263671875, -7.49858283996582 ], [ -78.330490112304688, -7.497382164001408 ], [ -78.335075378417969, -7.494656085967961 ], [ -78.337348937988281, -7.494357109069767 ], [ -78.33856201171875, -7.494973182678166 ], [ -78.339286804199162, -7.494885921478215 ], [ -78.340705871581974, -7.49492883682251 ], [ -78.344490051269531, -7.493799209594727 ], [ -78.345970153808537, -7.493851184844971 ], [ -78.346336364746037, -7.494126796722355 ], [ -78.346908569335881, -7.495171070098877 ], [ -78.347778320312443, -7.495497226715088 ], [ -78.348785400390625, -7.496275901794434 ], [ -78.350250244140568, -7.496826171875 ], [ -78.35170745849598, -7.49696683883667 ], [ -78.353797912597599, -7.497927188873291 ], [ -78.355796813964787, -7.498181819915771 ], [ -78.359970092773381, -7.500092029571476 ], [ -78.362442016601562, -7.500362873077393 ], [ -78.365310668945256, -7.499382972717285 ], [ -78.367080688476562, -7.499884128570557 ], [ -78.367904663085881, -7.499867916107178 ], [ -78.370758056640568, -7.499223232269287 ], [ -78.372230529785156, -7.498110771179199 ], [ -78.373733520507756, -7.497673988342285 ], [ -78.374961853027287, -7.496725082397461 ], [ -78.378532409667969, -7.496843814849854 ], [ -78.37939453125, -7.496501922607422 ], [ -78.380058288574219, -7.495954990386906 ], [ -78.381393432617188, -7.493977069854736 ], [ -78.382164001464844, -7.493465900421143 ], [ -78.383415222167969, -7.49315881729126 ], [ -78.384353637695312, -7.491858959197941 ], [ -78.384780883789006, -7.491592884063721 ], [ -78.386642456054688, -7.491588115692082 ], [ -78.390800476074162, -7.492342948913517 ], [ -78.391937255859318, -7.491574764251709 ], [ -78.393524169921875, -7.491185188293457 ], [ -78.394706726074162, -7.490297794342041 ], [ -78.395355224609318, -7.48848915100092 ], [ -78.396369934082031, -7.487061977386418 ], [ -78.398933410644531, -7.486048221588078 ], [ -78.400390625, -7.48493480682373 ], [ -78.401618957519531, -7.48432016372675 ], [ -78.403541564941406, -7.484132766723519 ], [ -78.405044555664062, -7.484539031982365 ], [ -78.407440185546875, -7.484554767608586 ], [ -78.409523010253906, -7.485496044158879 ], [ -78.411727905273438, -7.485462188720703 ], [ -78.412330627441349, -7.485708236694336 ], [ -78.414237976074162, -7.485044956207275 ], [ -78.415153503417969, -7.484947204589844 ], [ -78.415611267089844, -7.485395908355713 ], [ -78.415855407714787, -7.487216949462834 ], [ -78.417961120605412, -7.489349842071533 ], [ -78.418891906738281, -7.489730834960938 ], [ -78.422286987304688, -7.489580154418945 ], [ -78.422630310058537, -7.489902019500732 ], [ -78.423965454101506, -7.490233898162842 ], [ -78.425697326660099, -7.491738796234074 ], [ -78.426864624023438, -7.492016792297306 ], [ -78.428062438964787, -7.492721080779972 ], [ -78.429206848144474, -7.494367122650146 ], [ -78.430862426757699, -7.49583196640009 ], [ -78.432945251464787, -7.496106147766056 ], [ -78.434471130371037, -7.496960163116398 ], [ -78.43621826171875, -7.499413013458252 ], [ -78.437088012695312, -7.501246929168701 ], [ -78.437904357910099, -7.502127170562744 ], [ -78.440689086914062, -7.503857135772705 ], [ -78.44146728515625, -7.505049228668213 ], [ -78.444068908691406, -7.507124900817814 ], [ -78.446380615234318, -7.50950908660883 ], [ -78.448394775390568, -7.510865211486816 ], [ -78.449386596679688, -7.511787891387939 ], [ -78.449905395507756, -7.511901855468693 ], [ -78.451866149902344, -7.513178825378418 ], [ -78.452781677246037, -7.514605045318604 ], [ -78.453117370605469, -7.517456054687443 ], [ -78.454673767089787, -7.519764900207463 ], [ -78.454750061035156, -7.520658969879094 ], [ -78.455741882324162, -7.523069858551025 ], [ -78.460670471191406, -7.530363082885685 ], [ -78.462844848632812, -7.532386779785156 ], [ -78.465034484863281, -7.534890174865723 ], [ -78.465995788574219, -7.535630226135254 ], [ -78.470245361328068, -7.536806106567383 ], [ -78.472755432128906, -7.538202762603703 ], [ -78.474502563476562, -7.540258884429932 ], [ -78.477516174316406, -7.542953014373779 ], [ -78.478126525878906, -7.544058799743652 ], [ -78.478248596191349, -7.54520320892334 ], [ -78.47857666015625, -7.545742988586426 ], [ -78.479560852050724, -7.54653787612915 ], [ -78.481147766113281, -7.546824932098275 ], [ -78.483139038085938, -7.54786491394043 ], [ -78.483833312988281, -7.54930305480957 ], [ -78.485565185546875, -7.550273895263672 ], [ -78.486160278320256, -7.550820827484131 ], [ -78.486679077148438, -7.551663875579834 ], [ -78.487037658691406, -7.553042888641357 ], [ -78.487892150878793, -7.553803920745793 ], [ -78.490173339843693, -7.55466985702509 ], [ -78.491683959960881, -7.554918766021729 ], [ -78.498474121093693, -7.554134845733643 ], [ -78.500724792480469, -7.554152965545597 ], [ -78.513092041015625, -7.55779314041132 ], [ -78.515762329101562, -7.557336807250977 ], [ -78.517341613769474, -7.556610107421875 ], [ -78.519981384277344, -7.554503917694092 ], [ -78.5228271484375, -7.551084995269719 ], [ -78.523880004882812, -7.55044507980341 ], [ -78.525047302246094, -7.550172805786133 ], [ -78.528839111328125, -7.550044059753361 ], [ -78.532691955566349, -7.550779819488469 ], [ -78.534324645996037, -7.550271034240666 ], [ -78.53643798828125, -7.550723075866586 ], [ -78.537101745605355, -7.550536155700684 ], [ -78.538017272949219, -7.549743175506592 ], [ -78.538932800292969, -7.54942083358759 ], [ -78.541587829589844, -7.550644874572697 ], [ -78.543479919433537, -7.549933910369873 ], [ -78.54534912109375, -7.549666881561222 ], [ -78.546524047851506, -7.550008773803654 ], [ -78.549064636230469, -7.551577091217041 ], [ -78.550186157226562, -7.551982879638615 ], [ -78.55181884765625, -7.551906108856201 ], [ -78.553428649902344, -7.550909996032658 ], [ -78.555160522460938, -7.551590919494629 ], [ -78.556457519531193, -7.550857067108154 ], [ -78.557113647460881, -7.550779819488469 ], [ -78.560676574707031, -7.552719116210881 ], [ -78.562141418457031, -7.552933216094914 ], [ -78.565773010253849, -7.551900863647461 ], [ -78.567672729492188, -7.551915168762093 ], [ -78.571701049804631, -7.55003023147583 ], [ -78.575485229492188, -7.549907207489014 ], [ -78.581108093261719, -7.54729700088501 ], [ -78.582435607910156, -7.547556877136174 ], [ -78.583961486816406, -7.549114227294865 ], [ -78.584739685058594, -7.549588203430176 ], [ -78.586761474609318, -7.549898147583008 ], [ -78.588310241699162, -7.549874782562256 ], [ -78.589492797851562, -7.550551891326904 ], [ -78.591079711913949, -7.550176143646183 ], [ -78.59279632568348, -7.547959804534912 ], [ -78.593749999999886, -7.547457218170109 ], [ -78.594940185546875, -7.547173976898193 ], [ -78.597343444824162, -7.548013210296574 ], [ -78.600433349609375, -7.547825813293457 ], [ -78.601371765136662, -7.548387050628605 ], [ -78.602401733398381, -7.549487113952637 ], [ -78.602867126464844, -7.549655914306641 ], [ -78.606918334960938, -7.548484802246094 ], [ -78.608268737792969, -7.548428058624268 ], [ -78.609603881835938, -7.548651218414307 ], [ -78.611167907714787, -7.547843933105469 ], [ -78.616020202636719, -7.547922134399357 ], [ -78.618370056152344, -7.54631519317627 ], [ -78.6195068359375, -7.545879840850773 ], [ -78.6209716796875, -7.546075820922852 ], [ -78.622962951660156, -7.547224044799805 ], [ -78.625473022460881, -7.545621871948185 ], [ -78.627220153808537, -7.545726776123047 ], [ -78.628547668456974, -7.545472145080566 ], [ -78.630851745605469, -7.544347763061523 ], [ -78.632820129394474, -7.543925762176514 ], [ -78.635185241699219, -7.54261589050293 ], [ -78.637237548828011, -7.540867805480957 ], [ -78.638069152831974, -7.539803028106689 ], [ -78.641593933105412, -7.537308216094914 ], [ -78.645912170410099, -7.532858848571721 ], [ -78.649002075195312, -7.530458927154484 ], [ -78.650230407714844, -7.529158115386849 ], [ -78.651054382324162, -7.527823925018254 ], [ -78.650749206542912, -7.527030944824219 ], [ -78.648490905761605, -7.524024963378849 ], [ -78.646995544433594, -7.519272804260197 ], [ -78.646286010742131, -7.517671108245793 ], [ -78.641914367675781, -7.512036800384465 ], [ -78.639961242675781, -7.507765769958496 ], [ -78.637313842773381, -7.505268096923828 ], [ -78.635986328124943, -7.502888202667236 ], [ -78.635604858398381, -7.501869201660156 ], [ -78.635581970214787, -7.50104904174799 ], [ -78.636741638183537, -7.498781204223633 ], [ -78.636695861816406, -7.497817039489746 ], [ -78.635391235351506, -7.496899127960205 ], [ -78.633720397949219, -7.494781017303467 ], [ -78.632698059082031, -7.49304723739624 ], [ -78.631477355957031, -7.490196228027344 ], [ -78.631370544433594, -7.488814830779972 ], [ -78.632492065429688, -7.486080169677678 ], [ -78.632568359375, -7.485274791717529 ], [ -78.630920410156193, -7.482344150543213 ], [ -78.630325317382812, -7.481808185577279 ], [ -78.629570007324219, -7.481489181518555 ], [ -78.628639221191349, -7.480512142181396 ], [ -78.627593994140568, -7.478157043456974 ], [ -78.627540588378906, -7.4740052223205 ], [ -78.627998352050781, -7.470272064208984 ], [ -78.629364013671875, -7.467652797698975 ], [ -78.629798889160043, -7.465688228607121 ], [ -78.628616333007812, -7.460319042205754 ], [ -78.628028869628906, -7.455383777618351 ], [ -78.628250122070256, -7.452845096588078 ], [ -78.629219055175724, -7.45033597946167 ], [ -78.629699707031193, -7.446063041687012 ], [ -78.630584716796875, -7.444728851318359 ], [ -78.631515502929574, -7.443961143493652 ], [ -78.632987976074219, -7.443299770355168 ], [ -78.634422302246094, -7.44169092178339 ], [ -78.635513305664006, -7.439839839935246 ], [ -78.636764526367188, -7.436137199401855 ], [ -78.637466430664062, -7.434696197509766 ], [ -78.639686584472599, -7.431642055511418 ], [ -78.641273498535156, -7.430185794830322 ], [ -78.645401000976562, -7.428338050842285 ], [ -78.647384643554688, -7.427961826324406 ], [ -78.652755737304631, -7.427483081817627 ], [ -78.653640747070199, -7.427141189575195 ], [ -78.654685974121037, -7.426301956176758 ], [ -78.655265808105469, -7.42538595199585 ], [ -78.655418395996037, -7.42283821105957 ], [ -78.655860900878906, -7.421570777893066 ], [ -78.660385131835881, -7.416065216064396 ], [ -78.662765502929631, -7.412314891815186 ], [ -78.662818908691406, -7.410971164703312 ], [ -78.661865234375, -7.408702850341797 ], [ -78.661697387695312, -7.407812118530217 ], [ -78.661926269531193, -7.406480789184513 ], [ -78.662834167480469, -7.404660224914494 ], [ -78.663917541503849, -7.404098987579346 ], [ -78.667015075683594, -7.403830051422062 ], [ -78.668083190917969, -7.404001235961857 ], [ -78.671516418457031, -7.405220031738281 ], [ -78.672554016113281, -7.40495777130127 ], [ -78.673675537109375, -7.403619766235295 ], [ -78.67529296875, -7.396676063537598 ], [ -78.675926208496037, -7.395198822021428 ], [ -78.678009033203125, -7.393006801605225 ], [ -78.679397583007812, -7.392011165618896 ], [ -78.680267333984375, -7.391823768615723 ], [ -78.682220458984318, -7.391996860504094 ], [ -78.682533264160099, -7.392274856567326 ], [ -78.682304382324219, -7.394261837005558 ], [ -78.681106567382699, -7.396481990814209 ], [ -78.68129730224598, -7.397274971008301 ], [ -78.681907653808594, -7.398325920104867 ], [ -78.68438720703125, -7.40016508102417 ], [ -78.6846923828125, -7.401483058929443 ], [ -78.6854248046875, -7.402622222900334 ], [ -78.687950134277287, -7.403863906860352 ], [ -78.690811157226506, -7.407443046569824 ], [ -78.692062377929631, -7.408245086669865 ], [ -78.697372436523438, -7.413608074188232 ], [ -78.69866943359375, -7.414553165435791 ], [ -78.699203491210881, -7.414468765258789 ], [ -78.700126647949219, -7.413512229919434 ], [ -78.704154968261662, -7.413180828094426 ], [ -78.705192565917969, -7.412314891815186 ], [ -78.705986022949162, -7.412262916564885 ], [ -78.706695556640625, -7.411624908447266 ], [ -78.710601806640625, -7.411529064178467 ], [ -78.713119506835881, -7.409334182739201 ], [ -78.714195251464787, -7.409495830535775 ], [ -78.715881347656193, -7.410637855529785 ], [ -78.716545104980469, -7.410604000091553 ], [ -78.7176513671875, -7.409267902374268 ], [ -78.718620300292969, -7.405216217040902 ], [ -78.71966552734375, -7.403483867645207 ], [ -78.721473693847656, -7.401141166687012 ], [ -78.722801208496094, -7.397616863250732 ], [ -78.723617553710881, -7.396706104278508 ], [ -78.724411010742188, -7.396582126617375 ], [ -78.725875854492188, -7.397247791290283 ], [ -78.727447509765568, -7.398743152618295 ], [ -78.729804992675724, -7.402496814727783 ], [ -78.731765747070312, -7.403354167938232 ], [ -78.732513427734375, -7.404141902923584 ], [ -78.735054016113224, -7.404446125030461 ], [ -78.738777160644474, -7.403837203979492 ], [ -78.740341186523438, -7.404085159301701 ], [ -78.741218566894531, -7.405134201049748 ], [ -78.743507385253906, -7.406776905059814 ], [ -78.743965148925781, -7.407909870147705 ], [ -78.744422912597599, -7.410560131072998 ], [ -78.747016906738281, -7.412714004516602 ], [ -78.748931884765625, -7.414972782134953 ], [ -78.752624511718693, -7.417209148406926 ], [ -78.756683349609375, -7.417959213256836 ], [ -78.7596435546875, -7.417753219604435 ], [ -78.763648986816406, -7.416164875030461 ], [ -78.767951965331974, -7.416518211364689 ], [ -78.769256591796875, -7.416225910186768 ], [ -78.770439147949162, -7.41556787490839 ], [ -78.771514892578011, -7.414546966552678 ], [ -78.772354125976506, -7.413320064544678 ], [ -78.774269104003849, -7.408456802368164 ], [ -78.778213500976562, -7.406140804290771 ], [ -78.780960083007812, -7.403769016265869 ], [ -78.784561157226506, -7.399586200714054 ], [ -78.786064147949219, -7.39632511138916 ], [ -78.787353515625, -7.395105838775635 ], [ -78.788261413574219, -7.394590854644719 ], [ -78.789619445800724, -7.394534111022949 ], [ -78.793167114257812, -7.396480083465576 ], [ -78.79583740234375, -7.399139881134033 ], [ -78.798629760742188, -7.401065826416016 ], [ -78.799797058105469, -7.402147769927979 ], [ -78.800453186035156, -7.403919219970703 ], [ -78.800498962402287, -7.406085968017578 ], [ -78.800979614257756, -7.409420967101994 ], [ -78.802299499511662, -7.41294002532959 ], [ -78.802635192871094, -7.416285991668701 ], [ -78.803497314453125, -7.418552875518742 ], [ -78.804084777832031, -7.419448852539062 ], [ -78.805007934570312, -7.420247077941895 ], [ -78.807807922363281, -7.420627117156926 ], [ -78.809753417968693, -7.42166709899891 ], [ -78.810684204101506, -7.423301219940129 ], [ -78.813262939453068, -7.425455093383732 ], [ -78.815383911132699, -7.425878047943115 ], [ -78.818565368652344, -7.425329208374023 ], [ -78.821098327636662, -7.425677776336613 ], [ -78.823715209960938, -7.427567005157471 ], [ -78.825912475585938, -7.428576946258545 ], [ -78.832794189453125, -7.433769226074219 ], [ -78.834754943847656, -7.434295177459717 ], [ -78.837120056152287, -7.435583114623967 ], [ -78.840522766113281, -7.436303138732853 ], [ -78.84173583984375, -7.438106060027962 ], [ -78.841575622558537, -7.441403865814209 ], [ -78.84185791015625, -7.442502975463867 ], [ -78.842926025390568, -7.443874835968018 ], [ -78.844497680664062, -7.445240020751896 ], [ -78.846435546875, -7.446180820465031 ], [ -78.847434997558594, -7.447073936462402 ], [ -78.847808837890511, -7.448100090026799 ], [ -78.847869873046818, -7.449173927307072 ], [ -78.847793579101506, -7.449977874755859 ], [ -78.847450256347656, -7.450586795806885 ], [ -78.847999572753793, -7.451485157012939 ], [ -78.853759765625, -7.454798221588135 ], [ -78.856101989746037, -7.456394195556584 ], [ -78.865142822265568, -7.463753223419133 ], [ -78.869041442871037, -7.46662521362299 ], [ -78.871612548828125, -7.468090057373047 ], [ -78.877563476562386, -7.47076416015625 ], [ -78.879859924316406, -7.472134113311768 ], [ -78.881240844726562, -7.473433017730656 ], [ -78.883049011230469, -7.475646018981877 ], [ -78.883865356445312, -7.477496147155762 ], [ -78.885482788085938, -7.478737831115666 ], [ -78.885993957519531, -7.481375217437687 ], [ -78.887519836425781, -7.483764171600285 ], [ -78.887580871582031, -7.484703063964844 ], [ -78.887268066406193, -7.485128879547119 ], [ -78.883819580078125, -7.486711025238037 ], [ -78.882270812988281, -7.488196849822998 ], [ -78.880813598632812, -7.488903045654297 ], [ -78.879371643066349, -7.489252090454045 ], [ -78.874008178710881, -7.489785194396973 ], [ -78.871681213378906, -7.490482807159367 ], [ -78.8695068359375, -7.491460800170842 ], [ -78.865501403808594, -7.493678092956486 ], [ -78.86309814453125, -7.495631217956543 ], [ -78.860191345214787, -7.498427867889404 ], [ -78.859451293945312, -7.499715805053711 ], [ -78.857894897460881, -7.503503799438477 ], [ -78.858024597167969, -7.505874156951904 ], [ -78.858963012695256, -7.507337093353271 ], [ -78.858718872070312, -7.508125782012883 ], [ -78.858947753906193, -7.509586811065674 ], [ -78.858604431152344, -7.510022163391056 ], [ -78.858001708984318, -7.512653827667236 ], [ -78.857521057128849, -7.513623237609863 ], [ -78.856117248535156, -7.515449047088509 ], [ -78.852363586425724, -7.519337177276611 ], [ -78.852020263671875, -7.520341873168888 ], [ -78.852127075195312, -7.521423816680908 ], [ -78.852981567382812, -7.52264404296875 ], [ -78.854637145996094, -7.523162841796818 ], [ -78.856697082519531, -7.524181842803955 ], [ -78.858306884765625, -7.525396823883057 ], [ -78.859962463378906, -7.527015209197998 ], [ -78.860404968261719, -7.527831077575627 ], [ -78.860755920410099, -7.531412124633732 ], [ -78.86102294921875, -7.532123088836613 ], [ -78.86138916015625, -7.532408237457275 ], [ -78.862693786621094, -7.532413959503117 ], [ -78.869529724121037, -7.531587123870793 ], [ -78.874389648437443, -7.531833171844426 ], [ -78.877227783203125, -7.532664775848389 ], [ -78.88330078125, -7.535644054412785 ], [ -78.883819580078125, -7.535513877868652 ], [ -78.885040283203125, -7.534237861633244 ], [ -78.886032104492131, -7.533789157867432 ], [ -78.887092590331974, -7.533724784851017 ], [ -78.888832092285156, -7.534257888793945 ], [ -78.896949768066406, -7.53823804855341 ], [ -78.898551940917969, -7.539217948913574 ], [ -78.901115417480412, -7.541415214538574 ], [ -78.903450012207031, -7.542503833770752 ], [ -78.907684326171818, -7.547196865081787 ], [ -78.910339355468693, -7.548543930053711 ], [ -78.912208557128906, -7.550096035003605 ], [ -78.913070678710938, -7.552210807800293 ], [ -78.913169860839844, -7.554511070251408 ], [ -78.913528442382812, -7.55523777008051 ], [ -78.913848876953125, -7.55778980255127 ], [ -78.915359497070312, -7.560502052307129 ], [ -78.916984558105469, -7.562489986419621 ], [ -78.918640136718693, -7.564081192016602 ], [ -78.921394348144531, -7.565781116485596 ], [ -78.924766540527287, -7.568892002105656 ], [ -78.926002502441349, -7.569438934326058 ], [ -78.9278564453125, -7.572084903717041 ], [ -78.930557250976506, -7.574335098266545 ], [ -78.931419372558537, -7.5765380859375 ], [ -78.934768676757756, -7.581138134002629 ], [ -78.935005187988281, -7.581767082214355 ], [ -78.935165405273324, -7.587704181671143 ], [ -78.935951232910156, -7.590856075286865 ], [ -78.937492370605469, -7.594903945922852 ], [ -78.938400268554631, -7.595897197723389 ], [ -78.940544128417969, -7.597557067871037 ], [ -78.941291809082031, -7.597838878631535 ], [ -78.943038940429688, -7.597859859466496 ], [ -78.944107055664006, -7.598678112029972 ], [ -78.943916320800724, -7.59987211227417 ], [ -78.942291259765568, -7.603289127349854 ], [ -78.942306518554631, -7.605319023132324 ], [ -78.941635131835881, -7.608493804931641 ], [ -78.941429138183537, -7.611464023590088 ], [ -78.94069671630848, -7.61419677734375 ], [ -78.940910339355469, -7.61566686630249 ], [ -78.942840576171875, -7.620991230010986 ], [ -78.942672729492131, -7.622480869293213 ], [ -78.942016601562443, -7.624652862548771 ], [ -78.942115783691349, -7.627080917358342 ], [ -78.943046569824162, -7.628867149353027 ], [ -78.943305969238281, -7.63072490692133 ], [ -78.945152282714787, -7.633387088775578 ], [ -78.946556091308594, -7.636534214019719 ], [ -78.949638366699162, -7.639916896820012 ], [ -78.95172119140625, -7.643724918365479 ], [ -78.95196533203125, -7.644758224487305 ], [ -78.951484680175781, -7.646587848663273 ], [ -78.951515197753906, -7.647932052612305 ], [ -78.952476501464844, -7.64867115020752 ], [ -78.953742980956974, -7.651196002960205 ], [ -78.955825805664006, -7.652918815612793 ], [ -78.957130432128906, -7.653575897216797 ], [ -78.957901000976562, -7.654523849487248 ], [ -78.958435058593636, -7.655720233917236 ], [ -78.959060668945312, -7.655722141265869 ], [ -78.962287902832031, -7.657452106475773 ], [ -78.963294982910099, -7.658129215240479 ], [ -78.963737487792969, -7.658811092376652 ], [ -78.970703124999943, -7.660460948944092 ], [ -78.979743957519531, -7.660919189453125 ], [ -78.986938476562443, -7.659833908081055 ], [ -78.988792419433594, -7.66025781631464 ], [ -78.990707397460938, -7.661232948303223 ], [ -78.992828369140568, -7.660807132720947 ], [ -78.99700927734375, -7.656941890716553 ], [ -78.997390747070312, -7.656405925750732 ], [ -78.997787475585881, -7.654825210571232 ], [ -78.998374938964787, -7.653601169586125 ], [ -79.002052307128906, -7.650541782379094 ], [ -79.002548217773438, -7.649854183196965 ], [ -79.003204345703125, -7.647716045379582 ], [ -79.004478454589787, -7.645665168762207 ], [ -79.006385803222599, -7.639076232910156 ], [ -79.006851196289006, -7.638802051544189 ], [ -79.008430480957031, -7.638545036315861 ], [ -79.009872436523438, -7.636707782745361 ], [ -79.012428283691406, -7.635258197784424 ], [ -79.018699645996037, -7.629246234893685 ], [ -79.020172119140625, -7.628886222839355 ], [ -79.021659851074162, -7.627881050109863 ], [ -79.022865295410156, -7.627500057220459 ], [ -79.024818420410156, -7.625288963317814 ], [ -79.026428222656193, -7.62431812286377 ], [ -79.02777099609375, -7.623004913330021 ], [ -79.02886962890625, -7.621055126190186 ], [ -79.029106140136719, -7.620006084442139 ], [ -79.028808593749943, -7.618528842926025 ], [ -79.028358459472656, -7.617866039276066 ], [ -79.028427124023381, -7.616537094116211 ], [ -79.029258728027287, -7.616169929504338 ], [ -79.030364990234375, -7.61477088928217 ], [ -79.031822204589844, -7.613862037658691 ], [ -79.032058715820199, -7.613499164581242 ], [ -79.032180786132812, -7.612514972686768 ], [ -79.033302307128906, -7.611618995666504 ], [ -79.033172607421818, -7.609319210052433 ], [ -79.033943176269474, -7.606659889221191 ], [ -79.033729553222656, -7.604270935058594 ], [ -79.034202575683594, -7.603157043457031 ], [ -79.034919738769418, -7.603061199188176 ], [ -79.036285400390625, -7.603415966033936 ], [ -79.037918090820312, -7.603192806243896 ], [ -79.039344787597656, -7.601059913635254 ], [ -79.040702819824162, -7.600027084350586 ], [ -79.040351867675724, -7.592894077301025 ], [ -79.040809631347599, -7.591914176940861 ], [ -79.042427062988224, -7.590122222900334 ], [ -79.043121337890511, -7.588462829589844 ], [ -79.043182373046818, -7.587578773498478 ], [ -79.042945861816406, -7.586523056030217 ], [ -79.041862487792912, -7.584577083587646 ], [ -79.039848327636662, -7.582321166992188 ], [ -79.039413452148438, -7.580511093139648 ], [ -79.0389404296875, -7.575444221496525 ], [ -79.038658142089844, -7.574129104614201 ], [ -79.038368225097656, -7.573691844940129 ], [ -79.038528442382756, -7.569221973419189 ], [ -79.038139343261662, -7.564227104187012 ], [ -79.038337707519474, -7.561832904815674 ], [ -79.041610717773438, -7.560325145721436 ], [ -79.043075561523438, -7.559010028839111 ], [ -79.044952392578125, -7.558173179626465 ], [ -79.051788330078068, -7.551071166992188 ], [ -79.052505493164062, -7.550702095031738 ], [ -79.054420471191406, -7.550278186798039 ], [ -79.058761596679574, -7.547504901885929 ], [ -79.059692382812443, -7.546555995941105 ], [ -79.060699462890625, -7.542939186096135 ], [ -79.060455322265568, -7.541460037231445 ], [ -79.060462951660099, -7.538508892059269 ], [ -79.059028625488224, -7.533625125884953 ], [ -79.058204650878906, -7.531936168670597 ], [ -79.056709289550781, -7.529710769653263 ], [ -79.056777954101562, -7.528446197509766 ], [ -79.057495117187443, -7.527527809143066 ], [ -79.060157775878849, -7.525718212127629 ], [ -79.061477661132812, -7.523900032043457 ], [ -79.062271118164006, -7.523532867431584 ], [ -79.063453674316406, -7.52215576171875 ], [ -79.063819885253906, -7.521965026855469 ], [ -79.064750671386662, -7.521965026855469 ], [ -79.0655517578125, -7.521237850189209 ], [ -79.065773010253906, -7.520016193389836 ], [ -79.065315246581974, -7.51855993270874 ], [ -79.065322875976506, -7.516500949859619 ], [ -79.064933776855412, -7.514392852783146 ], [ -79.065208435058594, -7.512985229492188 ], [ -79.06573486328125, -7.512047767639103 ], [ -79.067306518554688, -7.510201930999756 ], [ -79.067672729492188, -7.509089946746826 ], [ -79.068977355957031, -7.508318901062012 ], [ -79.069366455078125, -7.507710933685303 ], [ -79.069549560546875, -7.506861209869385 ], [ -79.07110595703125, -7.505807876586914 ], [ -79.071701049804631, -7.505027770996094 ], [ -79.072082519531193, -7.504012107849121 ], [ -79.071411132812443, -7.502385139465275 ], [ -79.071121215820312, -7.500791072845402 ], [ -79.071540832519418, -7.497727870941105 ], [ -79.071510314941349, -7.494770050048828 ], [ -79.070388793945256, -7.491603851318303 ], [ -79.070388793945256, -7.486893177032471 ], [ -79.07012939453125, -7.48587703704834 ], [ -79.068992614746094, -7.483404159545898 ], [ -79.06890869140625, -7.47966194152832 ], [ -79.067886352539006, -7.476737022399902 ], [ -79.065475463867188, -7.47268104553217 ], [ -79.108032226562443, -7.441733837127686 ], [ -79.111213684081918, -7.439619064331055 ], [ -79.111564636230412, -7.439527988433838 ], [ -79.112754821777344, -7.440056800842285 ], [ -79.113571166992131, -7.440123081207275 ], [ -79.115325927734375, -7.439500808715707 ], [ -79.116828918456974, -7.43947792053217 ], [ -79.119438171386719, -7.440834045410156 ], [ -79.121627807617188, -7.441554069519043 ], [ -79.122840881347599, -7.441677093505859 ], [ -79.129150390625, -7.439418792724553 ], [ -79.135002136230469, -7.43833398818964 ], [ -79.1375732421875, -7.437589168548584 ], [ -79.138381958007756, -7.436868190765381 ], [ -79.13995361328125, -7.434515953063965 ], [ -79.140899658203125, -7.433742046356201 ], [ -79.143501281738281, -7.432633876800537 ], [ -79.145515441894474, -7.432597160339355 ], [ -79.146797180175781, -7.431872844695988 ], [ -79.148040771484375, -7.432635784149113 ], [ -79.1492919921875, -7.434726238250732 ], [ -79.150177001953125, -7.435522079467773 ], [ -79.152122497558537, -7.436107158660889 ], [ -79.1531982421875, -7.435945034027043 ], [ -79.153930664062443, -7.435585021972656 ], [ -79.155731201171818, -7.433241844177246 ], [ -79.156303405761662, -7.431594848632812 ], [ -79.156455993652344, -7.429056167602539 ], [ -79.159454345703068, -7.425411224365178 ], [ -79.16119384765625, -7.421480178833008 ], [ -79.162528991699219, -7.419978141784668 ], [ -79.162925720214844, -7.418403148651123 ], [ -79.165557861328068, -7.415151119232121 ], [ -79.165977478027344, -7.414820194244385 ], [ -79.167572021484318, -7.414535045623722 ], [ -79.168022155761662, -7.414249897003174 ], [ -79.169502258300781, -7.410933971405029 ], [ -79.170303344726562, -7.409987926483154 ], [ -79.171371459960881, -7.409601211547852 ], [ -79.174949645996094, -7.409097194671631 ], [ -79.176513671874943, -7.407592773437443 ], [ -79.178527832031193, -7.406888961791992 ], [ -79.179740905761719, -7.405623912811279 ], [ -79.180534362792912, -7.404056072235051 ], [ -79.181686401367131, -7.400327205657959 ], [ -79.183631896972656, -7.397747039794865 ], [ -79.18408203125, -7.394955158233643 ], [ -79.186454772949162, -7.391042232513314 ], [ -79.187026977539006, -7.388682842254582 ], [ -79.186531066894474, -7.386189937591553 ], [ -79.186454772949162, -7.383907794952393 ], [ -79.186645507812443, -7.383155822753849 ], [ -79.187637329101562, -7.381360054016113 ], [ -79.187797546386719, -7.380546092987061 ], [ -79.186393737792969, -7.377204895019531 ], [ -79.188819885253849, -7.377335071563721 ], [ -79.189689636230412, -7.377697944641113 ], [ -79.190765380859375, -7.377579212188721 ], [ -79.192924499511662, -7.376467227935734 ], [ -79.195381164550781, -7.373609066009521 ], [ -79.196304321289062, -7.373528957366943 ], [ -79.197410583496037, -7.374032974243164 ], [ -79.200363159179631, -7.37698221206665 ], [ -79.203437805175781, -7.378369808197021 ], [ -79.207481384277344, -7.381300926208496 ], [ -79.211067199707031, -7.38285493850708 ], [ -79.213462829589844, -7.384411811828613 ], [ -79.215385437011719, -7.384879112243539 ], [ -79.218551635742188, -7.385093212127686 ], [ -79.2235107421875, -7.387546062469426 ], [ -79.226585388183537, -7.388059139251652 ], [ -79.229598999023438, -7.389824867248535 ], [ -79.232315063476506, -7.390591144561768 ], [ -79.23366546630848, -7.390427112579289 ], [ -79.235687255859375, -7.389667987823429 ], [ -79.241172790527287, -7.386493206024113 ], [ -79.242233276367131, -7.386275768280029 ], [ -79.243667602539006, -7.386650085449219 ], [ -79.245552062988224, -7.386603832244816 ], [ -79.246543884277344, -7.386161804199219 ], [ -79.248664855957031, -7.384726047515869 ], [ -79.250808715820256, -7.384489059448242 ], [ -79.252616882324162, -7.383595943450871 ], [ -79.253425598144531, -7.38351583480835 ], [ -79.256080627441406, -7.382509231567383 ], [ -79.259117126464787, -7.381062030792236 ], [ -79.26171875, -7.378952980041504 ], [ -79.262336730956974, -7.376710891723633 ], [ -79.263328552246094, -7.375428199768066 ], [ -79.263984680175724, -7.373501777648926 ], [ -79.264724731445256, -7.372582912445068 ], [ -79.268508911132812, -7.369298934936467 ], [ -79.269706726074162, -7.368692874908447 ], [ -79.273620605468693, -7.36732101440424 ], [ -79.274505615234375, -7.36630916595459 ], [ -79.275619506835881, -7.364458084106445 ], [ -79.277427673339787, -7.362646102905273 ], [ -79.278450012207031, -7.361230850219727 ], [ -79.279739379882812, -7.3590149879455 ], [ -79.280517578125, -7.356438159942627 ], [ -79.280471801757756, -7.35508394241333 ], [ -79.279937744140625, -7.353809833526554 ], [ -79.279953002929688, -7.353185176849365 ], [ -79.280921936035156, -7.351383209228516 ], [ -79.282203674316349, -7.349816799163762 ], [ -79.284194946289006, -7.349599838256836 ], [ -79.290557861328125, -7.347815990447998 ], [ -79.293251037597599, -7.34792518615717 ], [ -79.294982910156193, -7.348965167999268 ], [ -79.297447204589787, -7.35146522521967 ], [ -79.298545837402344, -7.352260112762394 ], [ -79.303161621093693, -7.353162765502873 ], [ -79.304580688476562, -7.354619026184082 ], [ -79.305335998535156, -7.354901790618896 ], [ -79.30682373046875, -7.356059074401799 ], [ -79.308769226074219, -7.356626987457219 ], [ -79.310249328613281, -7.356522083282471 ], [ -79.312713623046818, -7.358168125152588 ], [ -79.315277099609318, -7.359060764312744 ], [ -79.317169189453125, -7.358917236328125 ], [ -79.318695068359375, -7.358379840850773 ], [ -79.320259094238168, -7.356695175170842 ], [ -79.321617126464844, -7.356266975402832 ], [ -79.322616577148381, -7.354751110076847 ], [ -79.323249816894531, -7.354447841644287 ], [ -79.325180053710938, -7.354798793792668 ], [ -79.326797485351562, -7.355469226837158 ], [ -79.328414916992188, -7.355372905731201 ], [ -79.329994201660156, -7.35571813583374 ], [ -79.331489562988224, -7.355585098266602 ], [ -79.332588195800781, -7.355124950408879 ], [ -79.333213806152287, -7.354585170745793 ], [ -79.336555480956974, -7.349366188049316 ], [ -79.338478088378906, -7.3467698097229 ], [ -79.343345642089844, -7.340829849243164 ], [ -79.345916748046875, -7.338253021240178 ], [ -79.347015380859375, -7.33747482299799 ], [ -79.348365783691349, -7.336875915527344 ], [ -79.349319458007756, -7.336903095245361 ], [ -79.351112365722656, -7.336336135864258 ], [ -79.35260009765625, -7.336483955383301 ], [ -79.353523254394474, -7.336339950561523 ], [ -79.356346130371094, -7.335410118103027 ], [ -79.358276367187443, -7.334444046020508 ], [ -79.36041259765625, -7.33406400680542 ], [ -79.363174438476449, -7.332159996032715 ], [ -79.365264892578068, -7.331634044647217 ], [ -79.366363525390625, -7.331107139587402 ], [ -79.367172241210881, -7.330414772033691 ], [ -79.367546081542912, -7.328174114227295 ], [ -79.36932373046875, -7.325795173644963 ], [ -79.369300842285156, -7.32524585723877 ], [ -79.368942260742188, -7.324851036071777 ], [ -79.367637634277287, -7.324610233306885 ], [ -79.36541748046875, -7.325174808502197 ], [ -79.361381530761719, -7.324923992156982 ], [ -79.360214233398381, -7.325261116027832 ], [ -79.358741760253906, -7.324978828430176 ], [ -79.356468200683537, -7.322953224182129 ], [ -79.354629516601562, -7.322437763214054 ], [ -79.350906372070312, -7.321831226348877 ], [ -79.349288940429688, -7.320602893829289 ], [ -79.344406127929688, -7.318315029144287 ], [ -79.341705322265568, -7.316292762756348 ], [ -79.339035034179631, -7.313170909881535 ], [ -79.337821960449219, -7.312191009521484 ], [ -79.336830139160099, -7.311849117279053 ], [ -79.333709716796875, -7.311326980590707 ], [ -79.331642150878906, -7.310057163238525 ], [ -79.328193664550781, -7.308884143829289 ], [ -79.326927185058537, -7.307378768920898 ], [ -79.32440185546875, -7.306050777435246 ], [ -79.323570251464787, -7.305389881134033 ], [ -79.320648193359375, -7.301846027374211 ], [ -79.318428039550724, -7.299685001373234 ], [ -79.318138122558537, -7.299227237701302 ], [ -79.318000793457031, -7.298317909240666 ], [ -79.317245483398438, -7.297189235687199 ], [ -79.316825866699105, -7.296858787536621 ], [ -79.315773010253849, -7.296606063842717 ], [ -79.314926147460938, -7.295910835266113 ], [ -79.314582824707031, -7.294768810272103 ], [ -79.314926147460938, -7.292915821075439 ], [ -79.314796447753849, -7.292394161224365 ], [ -79.312713623046818, -7.290277004241943 ], [ -79.309547424316349, -7.285427093505803 ], [ -79.307510375976562, -7.283462047576904 ], [ -79.304229736328068, -7.28274393081665 ], [ -79.301422119140625, -7.281118869781494 ], [ -79.300407409667912, -7.280758857726994 ], [ -79.299461364746037, -7.280687808990479 ], [ -79.297409057617188, -7.281311035156193 ], [ -79.295928955078068, -7.281135082244873 ], [ -79.292121887206974, -7.278366088867131 ], [ -79.291091918945312, -7.278241157531738 ], [ -79.289016723632812, -7.279189109802189 ], [ -79.287734985351506, -7.278209209442139 ], [ -79.286109924316349, -7.276233196258488 ], [ -79.2847900390625, -7.275548934936467 ], [ -79.283226013183537, -7.275140762329102 ], [ -79.281883239746094, -7.275325775146371 ], [ -79.280418395996094, -7.276022911071777 ], [ -79.278266906738224, -7.278235912322941 ], [ -79.277290344238281, -7.278696060180607 ], [ -79.273765563964844, -7.279045104980355 ], [ -79.271369934082031, -7.279043197631836 ], [ -79.270271301269474, -7.278229236602783 ], [ -79.269905090331918, -7.277233123779183 ], [ -79.269721984863281, -7.274942874908447 ], [ -79.268844604492131, -7.272398948669434 ], [ -79.268768310546875, -7.27105712890625 ], [ -79.269477844238281, -7.267763137817383 ], [ -79.271347045898438, -7.265554904937687 ], [ -79.271736145019531, -7.264757156372013 ], [ -79.271827697753906, -7.263574123382568 ], [ -79.271514892578068, -7.260663986205998 ], [ -79.271644592285156, -7.259506225585938 ], [ -79.272163391113224, -7.258619785308838 ], [ -79.273918151855469, -7.256833076476994 ], [ -79.274093627929631, -7.255920886993408 ], [ -79.274642944335881, -7.254986763000488 ], [ -79.276222229003906, -7.253519058227482 ], [ -79.278106689453011, -7.251048088073674 ], [ -79.279006958007812, -7.249559879302979 ], [ -79.279563903808594, -7.247478961944523 ], [ -79.279411315917912, -7.245739936828613 ], [ -79.276771545410043, -7.243032932281437 ], [ -79.276123046875, -7.240791797637883 ], [ -79.274314880371094, -7.238471984863281 ], [ -79.274017333984375, -7.234018802642822 ], [ -79.273597717285099, -7.232624053955078 ], [ -79.271507263183537, -7.229278087615967 ], [ -79.271095275878906, -7.228983879089355 ], [ -79.269866943359375, -7.228769779205322 ], [ -79.269607543945256, -7.228456974029484 ], [ -79.269996643066349, -7.227931022644043 ], [ -79.272262573242131, -7.226772785186711 ], [ -79.273872375488281, -7.224771976470947 ], [ -79.274238586425781, -7.223622798919678 ], [ -79.274124145507812, -7.221198081970158 ], [ -79.274322509765625, -7.219861030578613 ], [ -79.274894714355469, -7.218646049499455 ], [ -79.276039123535156, -7.217309951782227 ], [ -79.276336669921875, -7.215871810913086 ], [ -79.275848388671875, -7.215257167816105 ], [ -79.272216796875, -7.215569019317627 ], [ -79.271316528320256, -7.215352058410588 ], [ -79.267738342285156, -7.211307048797551 ], [ -79.265701293945256, -7.210278987884521 ], [ -79.264137268066406, -7.208959102630558 ], [ -79.263633728027344, -7.208043098449707 ], [ -79.263046264648438, -7.205532073974609 ], [ -79.261764526367131, -7.203957080841064 ], [ -79.260566711425781, -7.203363895416203 ], [ -79.258712768554631, -7.203524112701416 ], [ -79.257781982421818, -7.202523231506348 ], [ -79.256454467773381, -7.201859951019287 ], [ -79.255455017089844, -7.20095682144165 ], [ -79.252098083496094, -7.199572086334229 ], [ -79.251930236816406, -7.198896884918156 ], [ -79.252159118652287, -7.198588848114014 ], [ -79.253761291503849, -7.198618888854924 ], [ -79.255485534667912, -7.198215961456299 ], [ -79.257499694824162, -7.196463108062744 ], [ -79.2586669921875, -7.19577693939209 ], [ -79.259735107421875, -7.195884227752686 ], [ -79.263038635253793, -7.194733142852726 ], [ -79.265220642089787, -7.194614887237549 ], [ -79.266349792480412, -7.193919181823674 ], [ -79.267349243164062, -7.192953109741154 ], [ -79.268257141113224, -7.191329956054688 ], [ -79.269462585449219, -7.187430858612061 ], [ -79.270126342773438, -7.185980796813965 ], [ -79.271598815917912, -7.184775829315129 ], [ -79.273796081542912, -7.183754920959473 ], [ -79.274772644042969, -7.182778835296631 ], [ -79.275489807128906, -7.178551197052002 ], [ -79.276039123535156, -7.176751136779785 ], [ -79.278045654296875, -7.174051761627197 ], [ -79.278602600097656, -7.172821998596135 ], [ -79.280036926269531, -7.17120981216425 ], [ -79.280792236328125, -7.169787883758545 ], [ -79.281181335449219, -7.168212890624943 ], [ -79.2801513671875, -7.165010929107609 ], [ -79.279563903808594, -7.16134595870966 ], [ -79.279937744140625, -7.159078121185246 ], [ -79.2806396484375, -7.157636165618896 ], [ -79.282310485839844, -7.156494140624943 ], [ -79.284210205078011, -7.155800819396973 ], [ -79.285675048828125, -7.155533790588322 ], [ -79.288841247558594, -7.153754234313965 ], [ -79.289634704589787, -7.153592109680176 ], [ -79.295234680175781, -7.149858951568547 ], [ -79.302635192871094, -7.149846076965218 ], [ -79.303283691406136, -7.149631023406982 ], [ -79.304504394531193, -7.1487717628479 ], [ -79.306442260742188, -7.14652490615839 ], [ -79.306877136230412, -7.144257068634033 ], [ -79.306167602539062, -7.141837120056152 ], [ -79.305023193359375, -7.139674186706486 ], [ -79.303955078125, -7.138637065887394 ], [ -79.304016113281193, -7.138239860534611 ], [ -79.303619384765625, -7.137963771820068 ], [ -79.303131103515625, -7.136281967163086 ], [ -79.302032470703068, -7.135093212127629 ], [ -79.301010131835938, -7.133043766021729 ], [ -79.300300598144474, -7.132419109344426 ], [ -79.298622131347656, -7.131902217864933 ], [ -79.297599792480469, -7.13123607635498 ], [ -79.29595947265625, -7.128148078918457 ], [ -79.297050476074162, -7.124979972839299 ], [ -79.299697875976562, -7.121582031249943 ], [ -79.302558898925781, -7.119121074676514 ], [ -79.30419921875, -7.118193149566594 ], [ -79.306114196777287, -7.116290092468205 ], [ -79.310615539550724, -7.113334178924561 ], [ -79.311302185058594, -7.112500190734863 ], [ -79.31207275390625, -7.110328197479134 ], [ -79.3123779296875, -7.108609199523926 ], [ -79.312149047851506, -7.096893787383976 ], [ -79.314010620117188, -7.091417789459172 ], [ -79.315155029296875, -7.089142799377441 ], [ -79.316421508789006, -7.087933063507023 ], [ -79.316825866699105, -7.086772918701115 ], [ -79.31744384765625, -7.085893154144287 ], [ -79.318405151367188, -7.085164070129338 ], [ -79.319618225097656, -7.085042953491211 ], [ -79.320617675781193, -7.085457801818791 ], [ -79.3223876953125, -7.085460186004639 ], [ -79.324501037597656, -7.083824157714787 ], [ -79.32708740234375, -7.083150863647461 ], [ -79.328948974609375, -7.080832958221379 ], [ -79.330581665039062, -7.077155113220215 ], [ -79.330604553222656, -7.076479911804199 ], [ -79.330284118652344, -7.075589179992676 ], [ -79.328445434570256, -7.073089122772217 ], [ -79.328330993652287, -7.072035789489746 ], [ -79.330177307128793, -7.064573764801025 ], [ -79.331443786621094, -7.061749935150146 ], [ -79.331863403320256, -7.058534145355225 ], [ -79.331672668456974, -7.054782867431641 ], [ -79.329833984375, -7.048713207244816 ], [ -79.327705383300781, -7.043616771697998 ], [ -79.327423095703125, -7.040119171142521 ], [ -79.326530456542912, -7.037150859832707 ], [ -79.326301574707031, -7.03433895111084 ], [ -79.325050354003906, -7.028547763824406 ], [ -79.324546813964787, -7.027589797973576 ], [ -79.322891235351562, -7.025819778442383 ], [ -79.322013854980469, -7.024844169616642 ], [ -79.320465087890625, -7.02170991897583 ], [ -79.319496154785043, -7.020401954650822 ], [ -79.315811157226562, -7.018442153930607 ], [ -79.314460754394531, -7.017336845397949 ], [ -79.313804626464844, -7.017151832580566 ], [ -79.312187194824219, -7.017274856567326 ], [ -79.311614990234375, -7.016929149627629 ], [ -79.310874938964844, -7.015337944030762 ], [ -79.30963134765625, -7.010515213012638 ], [ -79.307937622070256, -7.008076190948486 ], [ -79.305061340331974, -7.006343841552734 ], [ -79.299545288085881, -7.004608154296875 ], [ -79.297187805175781, -7.002690792083683 ], [ -79.296531677246094, -7.001218795776367 ], [ -79.296524047851562, -6.999749183654785 ], [ -79.296722412109375, -6.999321937560978 ], [ -79.299125671386719, -6.997161865234375 ], [ -79.29949951171875, -6.996455192565918 ], [ -79.301094055175781, -6.994806766509953 ], [ -79.302230834960881, -6.992505073547363 ], [ -79.302314758300724, -6.991188049316406 ], [ -79.300788879394474, -6.989298820495605 ], [ -79.300666809082031, -6.988361835479679 ], [ -79.301437377929631, -6.986196994781437 ], [ -79.302894592285099, -6.984099864959717 ], [ -79.303672790527344, -6.980964183807373 ], [ -79.305130004882812, -6.978089809417668 ], [ -79.305992126464844, -6.971679210662842 ], [ -79.306816101074219, -6.969263076782227 ], [ -79.306808471679631, -6.967232227325439 ], [ -79.307106018066406, -6.966184139251709 ], [ -79.30438232421875, -6.963212013244515 ], [ -79.303848266601506, -6.96226978302002 ], [ -79.303848266601506, -6.960666179656926 ], [ -79.304618835449105, -6.959718227386475 ], [ -79.305320739746094, -6.957962989807072 ], [ -79.305313110351562, -6.955680847167969 ], [ -79.305000305175668, -6.953256130218506 ], [ -79.303977966308594, -6.950613021850529 ], [ -79.300994873046761, -6.946951866149789 ], [ -79.300064086914062, -6.945462226867619 ], [ -79.299652099609318, -6.943490028381348 ], [ -79.299613952636719, -6.940116882324219 ], [ -79.300178527832031, -6.937414169311523 ], [ -79.301109313964844, -6.93578195571888 ], [ -79.301483154296875, -6.934352874755803 ], [ -79.304054260253906, -6.931238174438477 ], [ -79.307571411132756, -6.927903175353947 ], [ -79.308891296386662, -6.926023006439152 ], [ -79.309593200683594, -6.924563884735107 ], [ -79.310348510742188, -6.920182228088322 ], [ -79.310340881347543, -6.91722297668457 ], [ -79.310691833496037, -6.91481876373291 ], [ -79.310592651367131, -6.908759117126465 ], [ -79.311447143554688, -6.902890205383301 ], [ -79.311080932617131, -6.901034832000732 ], [ -79.310241699218693, -6.899815082550049 ], [ -79.30690765380848, -6.897500038146916 ], [ -79.303672790527344, -6.895833969116211 ], [ -79.301643371581974, -6.893847942352295 ], [ -79.300888061523381, -6.892556190490723 ], [ -79.300521850585938, -6.891396045684814 ], [ -79.300559997558594, -6.8866868019104 ], [ -79.299781799316406, -6.88558387756342 ], [ -79.298103332519474, -6.88472318649292 ], [ -79.289787292480469, -6.882904052734375 ], [ -79.279075622558594, -6.879211902618408 ], [ -79.276084899902287, -6.8776597976684 ], [ -79.274002075195256, -6.876152992248535 ], [ -79.272911071777344, -6.874783039092961 ], [ -79.272270202636662, -6.873244762420541 ], [ -79.272430419921875, -6.868625164031982 ], [ -79.272346496582031, -6.867698192596379 ], [ -79.272048950195312, -6.86706018447876 ], [ -79.271224975585881, -6.866401195526123 ], [ -79.268287658691406, -6.864981174468994 ], [ -79.264465332031193, -6.861172199249268 ], [ -79.262435913085881, -6.859846115112248 ], [ -79.260276794433594, -6.859738826751652 ], [ -79.254348754882756, -6.861550807952824 ], [ -79.253166198730469, -6.861345767974854 ], [ -79.249969482421818, -6.859893798828068 ], [ -79.247314453125, -6.859439849853516 ], [ -79.244216918945256, -6.859665870666504 ], [ -79.242256164550781, -6.860154151916504 ], [ -79.240768432617188, -6.860795974731388 ], [ -79.238754272460938, -6.860949039459229 ], [ -79.234275817871094, -6.859990119934025 ], [ -79.22967529296875, -6.86002779006958 ], [ -79.227958679199219, -6.859837055206299 ], [ -79.225685119628906, -6.858936786651554 ], [ -79.223121643066406, -6.857182025909424 ], [ -79.221855163574219, -6.856715202331486 ], [ -79.221527099609318, -6.85491418838501 ], [ -79.219917297363224, -6.851201057434082 ], [ -79.219909667968693, -6.850253105163574 ], [ -79.218894958496094, -6.847321987152043 ], [ -79.218803405761719, -6.845842838287297 ], [ -79.218521118164062, -6.84495210647583 ], [ -79.217353820800724, -6.842660903930607 ], [ -79.214294433593693, -6.838891983032227 ], [ -79.210609436035156, -6.833239078521672 ], [ -79.209846496582031, -6.831513881683293 ], [ -79.209396362304688, -6.829812049865723 ], [ -79.207359313964844, -6.826014995574894 ], [ -79.20623779296875, -6.822125911712646 ], [ -79.205970764160156, -6.82149696350092 ], [ -79.205223083496037, -6.82119607925415 ], [ -79.202751159667912, -6.8214430809021 ], [ -79.202018737792969, -6.821297168731689 ], [ -79.1998291015625, -6.819259166717472 ], [ -79.197433471679688, -6.818910121917668 ], [ -79.196586608886719, -6.817356109619084 ], [ -79.195526123046875, -6.81732177734375 ], [ -79.194267272949162, -6.816086769104004 ], [ -79.193679809570256, -6.815785884857064 ], [ -79.191032409667912, -6.815223217010498 ], [ -79.188743591308537, -6.815167903900146 ], [ -79.187187194824162, -6.814721107482853 ], [ -79.1868896484375, -6.814266204833984 ], [ -79.18695068359375, -6.812540054321232 ], [ -79.186195373535156, -6.811736106872559 ], [ -79.185874938964787, -6.810853958129883 ], [ -79.184783935546875, -6.809844017028809 ], [ -79.184242248535099, -6.808756828308049 ], [ -79.182090759277344, -6.806701183319092 ], [ -79.18017578125, -6.805211067199707 ], [ -79.177101135253849, -6.803884029388428 ], [ -79.17620849609375, -6.802348136901799 ], [ -79.176025390625, -6.801420211791992 ], [ -79.175437927246094, -6.800848007202148 ], [ -79.174781799316406, -6.800844192504883 ], [ -79.172943115234375, -6.801962852477971 ], [ -79.170867919921875, -6.80258321762085 ], [ -79.170234680175724, -6.802427768707219 ], [ -79.168853759765625, -6.801327228546086 ], [ -79.168212890624943, -6.801109790802002 ], [ -79.166595458984318, -6.801104068756047 ], [ -79.164596557617131, -6.801734924316406 ], [ -79.163726806640568, -6.801762104034424 ], [ -79.161674499511719, -6.800217151641732 ], [ -79.160995483398324, -6.800305843353215 ], [ -79.159431457519531, -6.801084995269775 ], [ -79.158775329589787, -6.801072120666447 ], [ -79.158096313476562, -6.800411224365234 ], [ -79.157142639160156, -6.798038005828857 ], [ -79.155555725097599, -6.796560764312744 ], [ -79.155273437499886, -6.795944213867188 ], [ -79.148880004882756, -6.790565013885498 ], [ -79.145606994628849, -6.788959980010929 ], [ -79.141532897949162, -6.787534236907902 ], [ -79.136505126953125, -6.786547183990479 ], [ -79.132217407226562, -6.786601066589355 ], [ -79.126441955566349, -6.784342765808049 ], [ -79.123588562011662, -6.781667232513428 ], [ -79.122238159179688, -6.779650211334172 ], [ -79.121826171875, -6.77726221084589 ], [ -79.122177124023381, -6.773767948150635 ], [ -79.122840881347599, -6.771172046661377 ], [ -79.125518798828011, -6.767964839935303 ], [ -79.127136230468693, -6.76508903503418 ], [ -79.129409790039006, -6.757337093353271 ], [ -79.130241394042969, -6.751474857330322 ], [ -79.130783081054688, -6.749379158019963 ], [ -79.133926391601562, -6.744359970092717 ], [ -79.135101318359375, -6.742898941040039 ], [ -79.137763977050781, -6.74041223526001 ], [ -79.138946533203068, -6.738290786743164 ], [ -79.138908386230469, -6.736414909362793 ], [ -79.137649536132812, -6.733880043029785 ], [ -79.136428833007812, -6.730579853057804 ], [ -79.1361083984375, -6.729148864746037 ], [ -79.136077880859318, -6.72737979888916 ], [ -79.136436462402344, -6.725119113922119 ], [ -79.137428283691349, -6.723056793212891 ], [ -79.139152526855412, -6.721154212951603 ], [ -79.140480041503849, -6.720269203186035 ], [ -79.142463684081974, -6.719376087188721 ], [ -79.143066406249886, -6.718846797943115 ], [ -79.143280029296875, -6.718331813812256 ], [ -79.143051147460881, -6.715112209320068 ], [ -79.142524719238281, -6.713159084320012 ], [ -79.14251708984375, -6.711850166320801 ], [ -79.141075134277344, -6.703056812286377 ], [ -79.141151428222599, -6.701179027557316 ], [ -79.142036437988281, -6.699819087982064 ], [ -79.142791748046875, -6.699550151824894 ], [ -79.144004821777287, -6.699693202972355 ], [ -79.148933410644531, -6.702457904815617 ], [ -79.151054382324162, -6.702890872955265 ], [ -79.153976440429688, -6.703914165496826 ], [ -79.159423828125, -6.704822063445988 ], [ -79.162124633789006, -6.704700946807861 ], [ -79.168121337890568, -6.70228719711298 ], [ -79.169692993164062, -6.701920032501221 ], [ -79.1707763671875, -6.701957225799504 ], [ -79.171661376953068, -6.702589988708439 ], [ -79.172134399414006, -6.703993797302246 ], [ -79.173576354980412, -6.705586910247803 ], [ -79.175003051757756, -6.708036899566594 ], [ -79.177909851074219, -6.710656166076603 ], [ -79.180549621582031, -6.712014198303109 ], [ -79.183959960937443, -6.714177131652775 ], [ -79.185150146484375, -6.714438915252629 ], [ -79.186904907226506, -6.714450836181584 ], [ -79.189376831054688, -6.715366840362549 ], [ -79.190460205078068, -6.715394020080566 ], [ -79.191520690917969, -6.71478080749506 ], [ -79.192291259765625, -6.713700771331787 ], [ -79.194084167480412, -6.709037780761719 ], [ -79.1947021484375, -6.704233169555664 ], [ -79.195968627929631, -6.698988914489689 ], [ -79.196067810058537, -6.696436882019043 ], [ -79.195846557617188, -6.6944260597229 ], [ -79.196434020996094, -6.693346023559457 ], [ -79.196968078613281, -6.692963123321533 ], [ -79.198448181152287, -6.692861080169678 ], [ -79.200759887695256, -6.691748142242432 ], [ -79.205490112304688, -6.691834926605225 ], [ -79.206817626953125, -6.69200420379633 ], [ -79.207908630371037, -6.692805767059269 ], [ -79.21240234375, -6.694969177246094 ], [ -79.213478088378906, -6.695158004760629 ], [ -79.214118957519531, -6.695044040679875 ], [ -79.216712951660156, -6.692667007446232 ], [ -79.221290588378906, -6.689606189727783 ], [ -79.223297119140625, -6.686729907989388 ], [ -79.223846435546875, -6.684352874755859 ], [ -79.224121093749943, -6.681950092315617 ], [ -79.223426818847599, -6.680051803588867 ], [ -79.22332763671875, -6.678304195404053 ], [ -79.222976684570256, -6.677908897399846 ], [ -79.222877502441349, -6.675347805023193 ], [ -79.222389221191349, -6.673953056335449 ], [ -79.22265625, -6.672786235809326 ], [ -79.223342895507756, -6.672122955322209 ], [ -79.224296569824162, -6.671617031097412 ], [ -79.226043701171875, -6.671738147735539 ], [ -79.227371215820199, -6.671510219573975 ], [ -79.228790283203068, -6.671922206878662 ], [ -79.231201171875, -6.672200202941895 ], [ -79.233932495117131, -6.673005104064885 ], [ -79.235252380371037, -6.673184871673527 ], [ -79.237533569335938, -6.672911167144775 ], [ -79.241012573242188, -6.671881198883 ], [ -79.243309020996094, -6.672004222869816 ], [ -79.247322082519531, -6.673151016235352 ], [ -79.250984191894531, -6.675889968872013 ], [ -79.252052307128849, -6.676087856292725 ], [ -79.252784729003906, -6.676667213439941 ], [ -79.253860473632756, -6.676694869995117 ], [ -79.256866455078125, -6.678283214569035 ], [ -79.263694763183537, -6.67907190322876 ], [ -79.268943786621037, -6.679234027862549 ], [ -79.270378112792912, -6.679591178894043 ], [ -79.272804260253906, -6.679534912109318 ], [ -79.280792236328125, -6.677625179290771 ], [ -79.283622741699162, -6.677690982818547 ], [ -79.284675598144474, -6.677925109863224 ], [ -79.289131164550781, -6.677780151367188 ], [ -79.294204711914006, -6.676011085510254 ], [ -79.294998168945312, -6.676012992858773 ], [ -79.297477722167969, -6.675288200378418 ], [ -79.298118591308537, -6.674598217010498 ], [ -79.298606872558537, -6.673617839813176 ], [ -79.298683166503849, -6.672130107879639 ], [ -79.298225402831974, -6.668920993804875 ], [ -79.29901123046875, -6.66735315322876 ], [ -79.299079895019474, -6.666831016540471 ], [ -79.298927307128906, -6.665341854095459 ], [ -79.298233032226562, -6.664185047149658 ], [ -79.298126220703068, -6.662677764892521 ], [ -79.298500061035099, -6.661703109741211 ], [ -79.300178527832031, -6.659071922302246 ], [ -79.300735473632812, -6.654674053192139 ], [ -79.301597595214844, -6.653131008148193 ], [ -79.302543640136719, -6.652403831481934 ], [ -79.305877685546875, -6.650947093963623 ], [ -79.310585021972656, -6.649779796600285 ], [ -79.315155029296875, -6.648159980773926 ], [ -79.319297790527287, -6.64762020111084 ], [ -79.321250915527344, -6.647086143493596 ], [ -79.322113037109375, -6.646448135375977 ], [ -79.3228759765625, -6.645493030548096 ], [ -79.323753356933537, -6.643088817596379 ], [ -79.323966979980412, -6.641481876373291 ], [ -79.325378417968693, -6.640044212341252 ], [ -79.326850891113281, -6.640264987945557 ], [ -79.328956604003906, -6.642735958099365 ], [ -79.330368041992074, -6.642742156982365 ], [ -79.331016540527287, -6.643937110900879 ], [ -79.332199096679688, -6.644566059112492 ], [ -79.3350830078125, -6.645243167877197 ], [ -79.337905883789062, -6.64548921585083 ], [ -79.3427734375, -6.647069931030217 ], [ -79.343986511230412, -6.647006988525391 ], [ -79.344924926757756, -6.646457195281926 ], [ -79.345718383789006, -6.646358966827336 ], [ -79.347206115722656, -6.646472930908089 ], [ -79.348342895507812, -6.646903991699219 ], [ -79.349693298339787, -6.646776199340763 ], [ -79.350540161132812, -6.646352767944336 ], [ -79.351203918457031, -6.645670890808049 ], [ -79.352737426757812, -6.641931056976205 ], [ -79.353469848632812, -6.640960216522217 ], [ -79.35479736328125, -6.640326976776066 ], [ -79.358245849609375, -6.639727115631047 ], [ -79.359375, -6.639283180236816 ], [ -79.361335754394474, -6.637643814086857 ], [ -79.36273193359375, -6.635495185851994 ], [ -79.362876892089787, -6.634437084197941 ], [ -79.362724304199219, -6.633228778838998 ], [ -79.361068725585881, -6.631855010986271 ], [ -79.357856750488281, -6.627363204956055 ], [ -79.355529785156193, -6.625120162963867 ], [ -79.354904174804688, -6.623771190643311 ], [ -79.354759216308537, -6.62214994430542 ], [ -79.354408264160156, -6.621142864227295 ], [ -79.353485107421875, -6.619482040405273 ], [ -79.351943969726562, -6.617609977722168 ], [ -79.351600646972599, -6.616584777832031 ], [ -79.350357055664062, -6.615550041198617 ], [ -79.348709106445312, -6.614986896514836 ], [ -79.347595214843693, -6.613949775695744 ], [ -79.347282409667969, -6.612960815429688 ], [ -79.346946716308537, -6.609842777252197 ], [ -79.346138000488281, -6.608461856841984 ], [ -79.345130920410099, -6.607559204101506 ], [ -79.343757629394531, -6.606983184814396 ], [ -79.342689514160156, -6.606162071228027 ], [ -79.341529846191406, -6.60580396652216 ], [ -79.339141845703011, -6.604272842407113 ], [ -79.33599853515625, -6.603534221649113 ], [ -79.336090087890511, -6.60166597366333 ], [ -79.336410522460938, -6.600642204284611 ], [ -79.33966064453125, -6.595211029052734 ], [ -79.341041564941349, -6.591994762420597 ], [ -79.342636108398381, -6.590331077575684 ], [ -79.342765808105355, -6.589591026306096 ], [ -79.342567443847599, -6.587653160095215 ], [ -79.342796325683594, -6.586884975433293 ], [ -79.343765258789062, -6.585586071014347 ], [ -79.346443176269531, -6.583578109741097 ], [ -79.345916748046875, -6.577523231506291 ], [ -79.346359252929631, -6.575821876525822 ], [ -79.347358703613281, -6.573612213134652 ], [ -79.349143981933537, -6.571774959564209 ], [ -79.351448059082031, -6.570104122161808 ], [ -79.352821350097656, -6.56964111328125 ], [ -79.356712341308594, -6.569138050079289 ], [ -79.358161926269531, -6.567934036254826 ], [ -79.358970642089787, -6.56786584854126 ], [ -79.360054016113281, -6.568395137786808 ], [ -79.36065673828125, -6.567850112915039 ], [ -79.357749938964844, -6.565286159515381 ], [ -79.357650756835938, -6.564745903015137 ], [ -79.358222961425781, -6.563838958740234 ], [ -79.357551574707031, -6.562980175018254 ], [ -79.357658386230469, -6.562174797058105 ], [ -79.360603332519531, -6.559416770935059 ], [ -79.364227294921875, -6.555424213409424 ], [ -79.365821838378849, -6.553308963775635 ], [ -79.366569519042969, -6.551578998565617 ], [ -79.366661071777344, -6.549956798553467 ], [ -79.366004943847599, -6.546642780303955 ], [ -79.365867614746094, -6.544476985931396 ], [ -79.366043090820312, -6.542599201202336 ], [ -79.367202758789062, -6.538153171539307 ], [ -79.36712646484375, -6.536664962768555 ], [ -79.366676330566349, -6.534692764282227 ], [ -79.366653442382812, -6.532113075256348 ], [ -79.367233276367188, -6.530035018920898 ], [ -79.369140625, -6.526625156402531 ], [ -79.36946868896473, -6.524061203002873 ], [ -79.369361877441349, -6.521770000457764 ], [ -79.369705200195312, -6.52118015289301 ], [ -79.370918273925781, -6.521171092987061 ], [ -79.374267578125, -6.522205829620304 ], [ -79.37709808349598, -6.522199153900146 ], [ -79.377998352050781, -6.522453784942627 ], [ -79.37982177734375, -6.523246765136662 ], [ -79.382034301757756, -6.524789810180664 ], [ -79.38625335693348, -6.529154777526855 ], [ -79.389587402343693, -6.531723022460881 ], [ -79.390541076660099, -6.53208589553833 ], [ -79.392059326171818, -6.531882762908936 ], [ -79.393669128417912, -6.532049179077092 ], [ -79.397109985351506, -6.532901763916016 ], [ -79.398582458496094, -6.533513069152832 ], [ -79.400032043457031, -6.5346999168396 ], [ -79.401321411132699, -6.536283969879094 ], [ -79.402496337890625, -6.539754867553711 ], [ -79.403770446777287, -6.540709972381592 ], [ -79.405067443847656, -6.541202068328857 ], [ -79.40667724609375, -6.541405200958252 ], [ -79.408004760742188, -6.541213989257812 ], [ -79.409378051757812, -6.540327072143555 ], [ -79.410682678222656, -6.539133071899357 ], [ -79.412200927734375, -6.538265228271484 ], [ -79.415618896484318, -6.536996841430664 ], [ -79.416297912597656, -6.537063121795597 ], [ -79.416893005371094, -6.537392139434814 ], [ -79.418113708496094, -6.537237167358398 ], [ -79.4188232421875, -6.536870002746582 ], [ -79.420173645019474, -6.535531997680664 ], [ -79.420616149902344, -6.534690856933537 ], [ -79.420478820800724, -6.528999805450439 ], [ -79.420295715331974, -6.528090000152588 ], [ -79.419326782226506, -6.526133060455322 ], [ -79.419143676757756, -6.52508020401001 ], [ -79.4188232421875, -6.519948959350529 ], [ -79.418472290039006, -6.518842220306396 ], [ -79.418380737304631, -6.517085075378418 ], [ -79.417900085449162, -6.516133785247746 ], [ -79.417579650878906, -6.509119033813477 ], [ -79.416267395019474, -6.50588321685791 ], [ -79.416656494140568, -6.505032062530461 ], [ -79.418663024902287, -6.502597808837891 ], [ -79.420478820800724, -6.499831199645996 ], [ -79.421958923339844, -6.498438835143929 ], [ -79.422302246093636, -6.497180938720703 ], [ -79.422653198242131, -6.494047164916992 ], [ -79.423133850097599, -6.492672920227051 ], [ -79.425544738769418, -6.488925933837777 ], [ -79.427688598632812, -6.48670578002924 ], [ -79.428741455078125, -6.483936786651611 ], [ -79.4300537109375, -6.482601165771428 ], [ -79.433212280273438, -6.48029899597168 ], [ -79.431259155273381, -6.479018211364746 ], [ -79.429962158203125, -6.477127075195312 ], [ -79.427421569824162, -6.474695205688477 ], [ -79.426231384277344, -6.472423076629639 ], [ -79.424476623535099, -6.470032215118351 ], [ -79.423324584960881, -6.467433929443303 ], [ -79.422370910644474, -6.46376180648798 ], [ -79.422203063964787, -6.461607933044377 ], [ -79.422332763671875, -6.459163188934326 ], [ -79.422760009765568, -6.457345962524414 ], [ -79.42376708984375, -6.454974174499512 ], [ -79.423988342285099, -6.452960968017521 ], [ -79.424880981445312, -6.44956111907959 ], [ -79.427688598632812, -6.443295001983643 ], [ -79.428077697753906, -6.437492847442627 ], [ -79.430633544921875, -6.434412956237736 ], [ -79.430793762207031, -6.431561946868896 ], [ -79.431228637695312, -6.429699897766056 ], [ -79.431716918945256, -6.4285950660705 ], [ -79.434432983398438, -6.425621032714844 ], [ -79.43646240234375, -6.420761108398438 ], [ -79.438636779785156, -6.418153762817383 ], [ -79.43965911865223, -6.417494773864746 ], [ -79.441734313964787, -6.416953086853027 ], [ -79.442741394042969, -6.416286945343018 ], [ -79.445251464843693, -6.415335178375187 ], [ -79.446861267089844, -6.414284229278564 ], [ -79.447380065917912, -6.413406848907357 ], [ -79.447853088378849, -6.411263942718506 ], [ -79.448890686035099, -6.409523010253906 ], [ -79.450164794921875, -6.406688213348332 ], [ -79.450408935546818, -6.405098915100041 ], [ -79.450119018554631, -6.400763988494816 ], [ -79.448089599609375, -6.395397186279297 ], [ -79.4476318359375, -6.393470764160156 ], [ -79.447731018066349, -6.392154216766357 ], [ -79.448448181152344, -6.389206886291504 ], [ -79.448478698730469, -6.387707233428955 ], [ -79.448257446289062, -6.386946201324463 ], [ -79.447128295898438, -6.385076999664307 ], [ -79.447097778320199, -6.382660865783691 ], [ -79.446304321289006, -6.380801200866699 ], [ -79.446540832519531, -6.378652095794678 ], [ -79.446098327636719, -6.373823165893555 ], [ -79.447479248046761, -6.370076179504395 ], [ -79.447769165039062, -6.369792938232365 ], [ -79.44781494140625, -6.369287014007568 ], [ -79.449317932128906, -6.367561817169189 ], [ -79.449180603027287, -6.366344928741455 ], [ -79.447906494140625, -6.364956855773869 ], [ -79.445869445800781, -6.364262104034367 ], [ -79.444297790527287, -6.363383769988957 ], [ -79.444084167480469, -6.362834930419865 ], [ -79.444175720214844, -6.360895156860238 ], [ -79.442901611328011, -6.359004020690861 ], [ -79.442962646484318, -6.358345031738224 ], [ -79.443588256835938, -6.356815814971924 ], [ -79.445159912109318, -6.355618953704777 ], [ -79.445037841796875, -6.354529857635441 ], [ -79.444183349609375, -6.353310108184758 ], [ -79.442466735839844, -6.351801872253418 ], [ -79.441505432128906, -6.350030899047852 ], [ -79.439384460449219, -6.34836483001709 ], [ -79.43902587890625, -6.347067832946721 ], [ -79.437660217285156, -6.345231056213265 ], [ -79.436836242675781, -6.34324312210083 ], [ -79.434898376464844, -6.340493202209473 ], [ -79.430023193359318, -6.332272052764893 ], [ -79.427200317382812, -6.328228950500431 ], [ -79.426467895507756, -6.326793193817139 ], [ -79.426078796386719, -6.325224876403752 ], [ -79.426086425781193, -6.324132919311523 ], [ -79.427314758300781, -6.318756103515568 ], [ -79.427284240722656, -6.316872119903508 ], [ -79.427040100097599, -6.316394805908146 ], [ -79.424995422363281, -6.314436912536621 ], [ -79.424263000488281, -6.311837196350041 ], [ -79.423667907714844, -6.31096887588501 ], [ -79.421875, -6.309999942779541 ], [ -79.418716430664062, -6.308835029602051 ], [ -79.415229797363224, -6.308549880981445 ], [ -79.413375854492188, -6.308907985687142 ], [ -79.411605834960881, -6.309536933898869 ], [ -79.410278320312443, -6.310458183288517 ], [ -79.409103393554688, -6.311758995056152 ], [ -79.408515930175781, -6.312063217163029 ], [ -79.407356262207031, -6.312458992004395 ], [ -79.406196594238281, -6.312153816223145 ], [ -79.404396057128906, -6.310959815978947 ], [ -79.402816772460881, -6.310622215270996 ], [ -79.400497436523438, -6.309261798858586 ], [ -79.399200439453068, -6.308081150054932 ], [ -79.398574829101562, -6.30675220489502 ], [ -79.397422790527344, -6.305084228515625 ], [ -79.392616271972599, -6.301401138305664 ], [ -79.388862609863281, -6.299033164978027 ], [ -79.385749816894474, -6.298119068145752 ], [ -79.3837890625, -6.29857683181757 ], [ -79.381248474121094, -6.300610065460205 ], [ -79.380386352539062, -6.300996780395451 ], [ -79.379386901855355, -6.30080604553217 ], [ -79.375961303710938, -6.29945707321167 ], [ -79.374092102050781, -6.299156188964844 ], [ -79.3720703125, -6.299190044403076 ], [ -79.369743347167912, -6.299824237823373 ], [ -79.367828369140568, -6.301328182220459 ], [ -79.366554260253906, -6.301744937896672 ], [ -79.36566162109375, -6.302563190460148 ], [ -79.364311218261662, -6.303163051605168 ], [ -79.361503601074219, -6.303446769714355 ], [ -79.35931396484375, -6.304241180419922 ], [ -79.356674194335881, -6.303658962249699 ], [ -79.353851318359375, -6.303754806518498 ], [ -79.353332519531193, -6.3035888671875 ], [ -79.352806091308594, -6.302987098693848 ], [ -79.352157592773438, -6.301351070403996 ], [ -79.351638793945312, -6.297908782958984 ], [ -79.349441528320199, -6.295536994934025 ], [ -79.349159240722656, -6.294493198394775 ], [ -79.347549438476562, -6.292160987854004 ], [ -79.346603393554688, -6.289931774139404 ], [ -79.345252990722656, -6.289050102233887 ], [ -79.344291687011605, -6.287759780883789 ], [ -79.344337463378906, -6.287209033966008 ], [ -79.345779418945312, -6.284805774688721 ], [ -79.345741271972656, -6.283174991607609 ], [ -79.345382690429688, -6.281859874725285 ], [ -79.341911315917969, -6.278289794921875 ], [ -79.341682434081974, -6.276496887207031 ], [ -79.338417053222656, -6.275667190551758 ], [ -79.335433959960938, -6.274130821227971 ], [ -79.334236145019531, -6.272336959838867 ], [ -79.332489013671875, -6.268976211547852 ], [ -79.332389831542969, -6.268065929412842 ], [ -79.331703186035043, -6.267216205596924 ], [ -79.329238891601562, -6.2658371925354 ], [ -79.327407836914006, -6.264986991882324 ], [ -79.326225280761719, -6.264736175537109 ], [ -79.325286865234318, -6.2641921043396 ], [ -79.321647644042969, -6.263150215148926 ], [ -79.318878173828125, -6.262764930725098 ], [ -79.315826416015625, -6.263376235961914 ], [ -79.313842773437443, -6.264233112335148 ], [ -79.312004089355469, -6.265798091888371 ], [ -79.311256408691406, -6.266067028045654 ], [ -79.309181213378849, -6.268358230590763 ], [ -79.307716369628906, -6.269336223602295 ], [ -79.306655883789062, -6.269443035125676 ], [ -79.303901672363281, -6.268788814544678 ], [ -79.301605224609375, -6.266715049743652 ], [ -79.297378540039062, -6.264610767364445 ], [ -79.292205810546818, -6.259323120117188 ], [ -79.285224914550724, -6.254751205444222 ], [ -79.284111022949162, -6.253589153289795 ], [ -79.283721923828068, -6.252878189086914 ], [ -79.282859802246037, -6.249213218688908 ], [ -79.281654357910156, -6.2464280128479 ], [ -79.2801513671875, -6.244192123413086 ], [ -79.279335021972599, -6.243496894836426 ], [ -79.278663635253849, -6.241444110870304 ], [ -79.276329040527344, -6.239415168762207 ], [ -79.275871276855469, -6.238447189331055 ], [ -79.275886535644474, -6.237497806549015 ], [ -79.276473999023381, -6.236148834228516 ], [ -79.27630615234375, -6.232269763946476 ], [ -79.279380798339844, -6.230179786682129 ], [ -79.278381347656193, -6.228997230529785 ], [ -79.276802062988281, -6.22795581817627 ], [ -79.273674011230469, -6.226717948913517 ], [ -79.272453308105412, -6.225879192352238 ], [ -79.270027160644531, -6.225042819976807 ], [ -79.267906188964844, -6.224743843078613 ], [ -79.264129638671875, -6.224612236022892 ], [ -79.260505676269531, -6.224820137023926 ], [ -79.257484436035099, -6.225514888763428 ], [ -79.254829406738224, -6.226807117462158 ], [ -79.252952575683594, -6.226912021636906 ], [ -79.251983642578125, -6.226432800292969 ], [ -79.251182556152287, -6.225708007812443 ], [ -79.250137329101506, -6.225409984588566 ], [ -79.2496337890625, -6.224971771240234 ], [ -79.249359130859375, -6.224081039428711 ], [ -79.249214172363281, -6.221780776977539 ], [ -79.251136779785156, -6.220314025878906 ], [ -79.252914428710881, -6.217305183410645 ], [ -79.254646301269418, -6.215414047241211 ], [ -79.255607604980469, -6.213503837585449 ], [ -79.257164001464844, -6.209187030792236 ], [ -79.258575439453125, -6.20441198348999 ], [ -79.25960540771473, -6.198178768157902 ], [ -79.261886596679631, -6.195373058318978 ], [ -79.263175964355469, -6.192699909210148 ], [ -79.263412475585881, -6.188683986663818 ], [ -79.264732360839787, -6.186715126037541 ], [ -79.265129089355412, -6.185748100280762 ], [ -79.265312194824162, -6.180225849151554 ], [ -79.26556396484375, -6.178925037384033 ], [ -79.268516540527344, -6.174903869628906 ], [ -79.26910400390625, -6.172688961028996 ], [ -79.269889831542912, -6.170968055725041 ], [ -79.272224426269531, -6.16895580291748 ], [ -79.273315429687443, -6.167242050170898 ], [ -79.273544311523438, -6.166075229644775 ], [ -79.273574829101562, -6.163235187530461 ], [ -79.274032592773438, -6.161832809448185 ], [ -79.273902893066349, -6.159811973571777 ], [ -79.274787902832031, -6.157703876495304 ], [ -79.274490356445312, -6.156007766723633 ], [ -79.2734375, -6.153680801391602 ], [ -79.273147583007699, -6.150328159332219 ], [ -79.272682189941406, -6.149213790893555 ], [ -79.272651672363224, -6.146408081054688 ], [ -79.272171020507756, -6.145943164825439 ], [ -79.271041870117131, -6.145410060882568 ], [ -79.269691467285099, -6.145329952239933 ], [ -79.268814086914062, -6.145671844482365 ], [ -79.267883300781193, -6.145688056945744 ], [ -79.265686035156193, -6.145092964172363 ], [ -79.262351989746037, -6.143314838409367 ], [ -79.260108947753906, -6.141178131103516 ], [ -79.259239196777344, -6.139513969421387 ], [ -79.25807952880848, -6.13096284866333 ], [ -79.257469177246094, -6.128719806671086 ], [ -79.256782531738281, -6.127308845519963 ], [ -79.253822326660156, -6.124735832214355 ], [ -79.252670288085938, -6.122317790985051 ], [ -79.250564575195312, -6.120223045349121 ], [ -79.249122619628906, -6.116896152496338 ], [ -79.246414184570256, -6.113039016723633 ], [ -79.244918823242074, -6.109333992004395 ], [ -79.243537902832031, -6.107332229614258 ], [ -79.241722106933594, -6.105731964111271 ], [ -79.238296508789062, -6.10457706451416 ], [ -79.236297607421875, -6.1025710105896 ], [ -79.2352294921875, -6.099802017211914 ], [ -79.234703063964787, -6.097307205200195 ], [ -79.234977722167912, -6.095292091369629 ], [ -79.236129760742131, -6.093316078186035 ], [ -79.236122131347599, -6.092874050140324 ], [ -79.233062744140568, -6.092810153961125 ], [ -79.229942321777287, -6.091217041015568 ], [ -79.2286376953125, -6.090886116027718 ], [ -79.226219177246037, -6.090787887573185 ], [ -79.223678588867188, -6.091151237487793 ], [ -79.220817565917969, -6.092616081237736 ], [ -79.218116760253849, -6.094829082488957 ], [ -79.215065002441349, -6.096803188323918 ], [ -79.212287902831974, -6.099720001220646 ], [ -79.211288452148438, -6.099007129669189 ], [ -79.210792541503906, -6.098902225494328 ], [ -79.204788208007812, -6.099724769592228 ], [ -79.2015380859375, -6.09980392456049 ], [ -79.200210571289062, -6.099615097045898 ], [ -79.198783874511719, -6.098916053771973 ], [ -79.197235107421761, -6.09778976440424 ], [ -79.196426391601562, -6.09708309173584 ], [ -79.195472717285156, -6.09576416015625 ], [ -79.194351196289006, -6.095014095306396 ], [ -79.192642211914006, -6.094685077667179 ], [ -79.190284729003906, -6.095128059387207 ], [ -79.188507080078125, -6.094446182250977 ], [ -79.185142517089844, -6.091351032256966 ], [ -79.182044982910099, -6.089724063873291 ], [ -79.181312561035156, -6.088746070861816 ], [ -79.180915832519474, -6.087034225463867 ], [ -79.181037902832031, -6.085717201232853 ], [ -79.182052612304631, -6.08364295959467 ], [ -79.184135437011662, -6.081361770629826 ], [ -79.184829711914006, -6.079905033111572 ], [ -79.184806823730412, -6.078569889068604 ], [ -79.184486389160156, -6.077102184295597 ], [ -79.182609558105412, -6.072793960571289 ], [ -79.182846069335938, -6.070916175842285 ], [ -79.1837158203125, -6.067940235137939 ], [ -79.183769226074162, -6.066739082336369 ], [ -79.184761047363281, -6.063645839691162 ], [ -79.185676574706974, -6.061880111694336 ], [ -79.187866210937443, -6.059868812560978 ], [ -79.189338684082031, -6.0589280128479 ], [ -79.189743041992188, -6.058176040649357 ], [ -79.186454772949162, -6.053619861602783 ], [ -79.185287475585881, -6.051497936248779 ], [ -79.184341430664006, -6.049114227294922 ], [ -79.183464050292969, -6.047767162322998 ], [ -79.179885864257812, -6.043918132781926 ], [ -79.176361083984375, -6.041597843170109 ], [ -79.175918579101562, -6.04088020324707 ], [ -79.175872802734261, -6.039779186248779 ], [ -79.176101684570312, -6.037818908691349 ], [ -79.176490783691406, -6.036986827850342 ], [ -79.177536010742188, -6.036129951476994 ], [ -79.177947998046818, -6.036152839660645 ], [ -79.178657531738281, -6.035760879516545 ], [ -79.180809020996037, -6.033541202545166 ], [ -79.182327270507756, -6.032700061797982 ], [ -79.182937622070312, -6.031981945037785 ], [ -79.18341064453125, -6.030742168426457 ], [ -79.184234619140568, -6.030664920806885 ], [ -79.185440063476562, -6.03125 ], [ -79.185867309570256, -6.031166076660156 ], [ -79.185691833496037, -6.028354167938176 ], [ -79.186172485351449, -6.027592182159424 ], [ -79.187553405761719, -6.026264190673771 ], [ -79.188865661621094, -6.025578022003174 ], [ -79.189796447753793, -6.025534152984619 ], [ -79.191162109375, -6.024963855743351 ], [ -79.197105407714787, -6.023825168609619 ], [ -79.200599670410156, -6.023860931396484 ], [ -79.201904296874943, -6.023508071899414 ], [ -79.20306396484375, -6.023816108703556 ], [ -79.204383850097599, -6.024510860443058 ], [ -79.205856323242188, -6.026609897613469 ], [ -79.206512451171875, -6.029490947723389 ], [ -79.207183837890625, -6.030955791473332 ], [ -79.208251953125, -6.032166957855225 ], [ -79.209648132324219, -6.032993793487549 ], [ -79.210128784179688, -6.033784866332894 ], [ -79.210594177246094, -6.036036968231201 ], [ -79.210502624511719, -6.0400710105896 ], [ -79.211189270019531, -6.041679859161377 ], [ -79.21185302734375, -6.042360782623234 ], [ -79.212631225585938, -6.042317867279053 ], [ -79.214027404785156, -6.042820930480843 ], [ -79.2154541015625, -6.044047832489014 ], [ -79.216972351074162, -6.04578685760498 ], [ -79.217552185058594, -6.047269821166992 ], [ -79.217414855957031, -6.048066139221078 ], [ -79.216896057128906, -6.049160003662053 ], [ -79.216888427734375, -6.049837112426758 ], [ -79.2177734375, -6.051661968231201 ], [ -79.219528198242131, -6.053777217864933 ], [ -79.220680236816349, -6.054615974426213 ], [ -79.222312927246037, -6.054440975189152 ], [ -79.223182678222656, -6.054912090301514 ], [ -79.224250793457031, -6.05472278594965 ], [ -79.225120544433594, -6.053895950317326 ], [ -79.225654602050668, -6.053802013397217 ], [ -79.226486206054631, -6.053110122680607 ], [ -79.227149963378849, -6.051253795623722 ], [ -79.228797912597599, -6.050663948059082 ], [ -79.231056213378849, -6.048967838287354 ], [ -79.233940124511662, -6.046521186828556 ], [ -79.235740661621037, -6.044556140899658 ], [ -79.237258911132756, -6.041531085968018 ], [ -79.238105773925781, -6.038962841033879 ], [ -79.238388061523438, -6.032265186309814 ], [ -79.238937377929688, -6.031332015991211 ], [ -79.240768432617188, -6.029541015624886 ], [ -79.241958618164006, -6.027943134307861 ], [ -79.243309020996094, -6.027879238128662 ], [ -79.244674682617188, -6.028725147247314 ], [ -79.245986938476562, -6.028985023498478 ], [ -79.247108459472599, -6.029744148254338 ], [ -79.247886657714844, -6.02984619140625 ], [ -79.249382019042912, -6.029779911041203 ], [ -79.251670837402287, -6.028986930847168 ], [ -79.253555297851562, -6.028983116149902 ], [ -79.256355285644474, -6.028309822082463 ], [ -79.257667541503849, -6.028271198272705 ], [ -79.258247375488224, -6.028494834899902 ], [ -79.259727478027344, -6.029942035675049 ], [ -79.26068115234375, -6.030124187469482 ], [ -79.261955261230412, -6.029438018798771 ], [ -79.262969970703125, -6.028511047363281 ], [ -79.265403747558537, -6.025297164916879 ], [ -79.266670227050781, -6.024086952209473 ], [ -79.266807556152344, -6.023040771484318 ], [ -79.266517639160156, -6.021436214446965 ], [ -79.263793945312443, -6.015748023986816 ], [ -79.264114379882812, -6.01387882232666 ], [ -79.26605224609375, -6.011993885040226 ], [ -79.266357421874943, -6.010982036590576 ], [ -79.266151428222599, -6.010063171386662 ], [ -79.265251159667969, -6.008240222930908 ], [ -79.265159606933594, -6.007030010223389 ], [ -79.263488769531193, -6.005122184753418 ], [ -79.26385498046875, -6.001780986785889 ], [ -79.266258239746037, -6.001463890075627 ], [ -79.266891479492188, -6.001126766204777 ], [ -79.268417358398438, -6.001051902770996 ], [ -79.270759582519474, -5.999273777007943 ], [ -79.273101806640625, -5.998805046081486 ], [ -79.278091430664006, -5.996490955352783 ], [ -79.279235839843693, -5.996231079101506 ], [ -79.281692504882812, -5.994027137756348 ], [ -79.284065246582031, -5.993061065673828 ], [ -79.284973144531136, -5.992143154144287 ], [ -79.288589477539006, -5.991168975830021 ], [ -79.290885925292855, -5.989833831787053 ], [ -79.292549133300781, -5.988530158996525 ], [ -79.293037414550781, -5.987687110900822 ], [ -79.294548034667969, -5.986159801483154 ], [ -79.295463562011605, -5.985991001129094 ], [ -79.297523498535156, -5.986308097839299 ], [ -79.302528381347656, -5.984772205352783 ], [ -79.30572509765625, -5.984628200530949 ], [ -79.306816101074219, -5.985729217529297 ], [ -79.308135986328068, -5.988047122955322 ], [ -79.310897827148381, -5.990344047546387 ], [ -79.312469482421875, -5.990863800048828 ], [ -79.315948486328068, -5.990781784057617 ], [ -79.31683349609375, -5.991055011749268 ], [ -79.32000732421875, -5.996026039123535 ], [ -79.321395874023381, -5.996692180633488 ], [ -79.322296142578125, -5.997965812683105 ], [ -79.322349548339787, -6.000148773193303 ], [ -79.321922302246094, -6.001777172088509 ], [ -79.3214111328125, -6.002620220184269 ], [ -79.321655273437443, -6.011260032653809 ], [ -79.321365356445312, -6.014861106872559 ], [ -79.320388793945312, -6.016483783721867 ], [ -79.319000244140568, -6.02027416229248 ], [ -79.315940856933537, -6.024528980255127 ], [ -79.315635681152344, -6.029492855072021 ], [ -79.315422058105469, -6.030127048492432 ], [ -79.314216613769474, -6.031904220581055 ], [ -79.312942504882812, -6.032285213470459 ], [ -79.311904907226562, -6.032978057861328 ], [ -79.311424255371094, -6.034153938293457 ], [ -79.311447143554688, -6.036734104156437 ], [ -79.312736511230469, -6.039583206176701 ], [ -79.314598083496037, -6.04055118560791 ], [ -79.318817138671818, -6.042088031768799 ], [ -79.31964111328125, -6.041983127593937 ], [ -79.320617675781193, -6.041324138641301 ], [ -79.321281433105412, -6.040472030639648 ], [ -79.321914672851562, -6.039132118225098 ], [ -79.322273254394531, -6.037279129028263 ], [ -79.326179504394531, -6.032485961914006 ], [ -79.327186584472599, -6.030584812164307 ], [ -79.328498840332031, -6.028878211975041 ], [ -79.332122802734375, -6.021577835082894 ], [ -79.333778381347599, -6.018966197967529 ], [ -79.334884643554688, -6.016522884368896 ], [ -79.335830688476562, -6.01555776596058 ], [ -79.337265014648438, -6.014814853668156 ], [ -79.34100341796875, -6.010383129119873 ], [ -79.345306396484318, -6.006507873535156 ], [ -79.346435546875, -6.004665851593018 ], [ -79.346656799316349, -6.003428936004639 ], [ -79.346244812011719, -6.000573158264046 ], [ -79.346466064453068, -5.999967098236084 ], [ -79.346389770507699, -5.996746063232422 ], [ -79.347282409667969, -5.995152950286865 ], [ -79.347732543945312, -5.991495132446289 ], [ -79.348876953125, -5.987804889678955 ], [ -79.348648071289006, -5.984002113342285 ], [ -79.349014282226562, -5.982203006744271 ], [ -79.351387023925781, -5.979775905609074 ], [ -79.352157592773438, -5.979266166687012 ], [ -79.355484008789062, -5.978662014007568 ], [ -79.359062194824162, -5.977008819580078 ], [ -79.361724853515568, -5.976943016052189 ], [ -79.364311218261662, -5.976291179656926 ], [ -79.365867614746094, -5.976271152496281 ], [ -79.367324829101562, -5.976519107818604 ], [ -79.368743896484375, -5.977193832397461 ], [ -79.371009826660156, -5.977571964263916 ], [ -79.374595642089787, -5.977678775787354 ], [ -79.375831604003849, -5.977956771850586 ], [ -79.378021240234318, -5.977706909179688 ], [ -79.380043029785099, -5.977788925170842 ], [ -79.383003234863224, -5.978765964508 ], [ -79.384010314941406, -5.978885173797551 ], [ -79.385963439941349, -5.97969913482666 ], [ -79.388275146484375, -5.979365825652962 ], [ -79.390846252441406, -5.979497909545842 ], [ -79.393684387206974, -5.978456020355168 ], [ -79.395225524902344, -5.978217124938965 ], [ -79.39727783203125, -5.978689193725586 ], [ -79.401405334472599, -5.98248815536499 ], [ -79.402748107910099, -5.983893871307373 ], [ -79.403823852539062, -5.985462188720646 ], [ -79.40478515625, -5.988377094268799 ], [ -79.404891967773438, -5.991326808929387 ], [ -79.40533447265625, -5.992540836334229 ], [ -79.405670166015625, -5.994722843170166 ], [ -79.407318115234318, -5.99850416183466 ], [ -79.408378601074105, -6.000047206878662 ], [ -79.409149169921875, -6.00074577331543 ], [ -79.411552429199219, -6.001987934112492 ], [ -79.414108276367188, -6.002510070800781 ], [ -79.416511535644531, -6.004456996917725 ], [ -79.417640686035156, -6.002850055694466 ], [ -79.417655944824219, -6.000047206878662 ], [ -79.417465209960938, -5.999135017394963 ], [ -79.415763854980469, -5.996724128723088 ], [ -79.415596008300724, -5.993865966796818 ], [ -79.415725708007812, -5.992962837219238 ], [ -79.416343688964844, -5.991622924804688 ], [ -79.416748046874943, -5.99001407623291 ], [ -79.416931152343693, -5.985692977905217 ], [ -79.417503356933537, -5.983557224273682 ], [ -79.418190002441349, -5.978816986083984 ], [ -79.418899536132812, -5.977530956268254 ], [ -79.420143127441406, -5.976177215576172 ], [ -79.420585632324105, -5.974874019622803 ], [ -79.420585632324105, -5.97322416305542 ], [ -79.419784545898438, -5.972123146057072 ], [ -79.419685363769531, -5.971110820770264 ], [ -79.416282653808537, -5.968344211578312 ], [ -79.412437438964844, -5.964377880096379 ], [ -79.410392761230469, -5.962806224822998 ], [ -79.407623291015625, -5.959708213806039 ], [ -79.404998779296875, -5.956274032592773 ], [ -79.398292541503906, -5.950382232665959 ], [ -79.394142150878849, -5.948169231414738 ], [ -79.391326904296875, -5.947012901306096 ], [ -79.38372802734375, -5.942238807678223 ], [ -79.380905151367131, -5.940914154052678 ], [ -79.3782958984375, -5.94009876251215 ], [ -79.372451782226562, -5.939568042755127 ], [ -79.368438720703125, -5.938218116760254 ], [ -79.364723205566406, -5.934910774230957 ], [ -79.364532470703125, -5.933740139007568 ], [ -79.364189147949162, -5.933172225952035 ], [ -79.36187744140625, -5.932713985443115 ], [ -79.361534118652287, -5.932075977325383 ], [ -79.361869812011719, -5.931497097015381 ], [ -79.361915588378849, -5.93056678771967 ], [ -79.360885620117074, -5.928734779357853 ], [ -79.360984802246094, -5.928192138671875 ], [ -79.361808776855412, -5.927093982696476 ], [ -79.361793518066406, -5.925795078277588 ], [ -79.361305236816406, -5.925134181976262 ], [ -79.359939575195312, -5.924332141876164 ], [ -79.359214782714844, -5.924147129058838 ], [ -79.358665466308537, -5.923395156860352 ], [ -79.359474182128906, -5.921185970306396 ], [ -79.359809875488224, -5.920868873596191 ], [ -79.359817504882756, -5.920309066772461 ], [ -79.359451293945256, -5.920051097869873 ], [ -79.357902526855412, -5.919909954071045 ], [ -79.357055664062443, -5.919346809387207 ], [ -79.356941223144474, -5.918898105621338 ], [ -79.357276916503906, -5.918344020843449 ], [ -79.357307434082031, -5.917695045471135 ], [ -79.356819152832031, -5.917040824890137 ], [ -79.35577392578125, -5.916677951812687 ], [ -79.354827880859375, -5.915558815002441 ], [ -79.354774475097599, -5.91490983963007 ], [ -79.354995727539062, -5.914293766021672 ], [ -79.3546142578125, -5.913070201873722 ], [ -79.352798461914062, -5.911361217498722 ], [ -79.352531433105469, -5.910678863525334 ], [ -79.35186767578125, -5.909906864166203 ], [ -79.349678039550781, -5.908743858337402 ], [ -79.348556518554631, -5.906469821929875 ], [ -79.347633361816406, -5.905817985534611 ], [ -79.34625244140625, -5.905316829681396 ], [ -79.345069885253906, -5.90460300445551 ], [ -79.3436279296875, -5.902692794799805 ], [ -79.341926574707031, -5.901434898376408 ], [ -79.341316223144474, -5.900193214416504 ], [ -79.339179992675781, -5.899119853973389 ], [ -79.334579467773438, -5.894590854644775 ], [ -79.335090637207031, -5.894233226776123 ], [ -79.336433410644531, -5.893909931182804 ], [ -79.337692260742131, -5.892989158630371 ], [ -79.33868408203125, -5.892790794372559 ], [ -79.339599609374943, -5.892008781433105 ], [ -79.340141296386719, -5.891174793243295 ], [ -79.340454101562443, -5.889819145202637 ], [ -79.340263366699162, -5.887979030609131 ], [ -79.339096069335938, -5.883422851562443 ], [ -79.339141845703011, -5.882468223571777 ], [ -79.339431762695312, -5.881851196289062 ], [ -79.341011047363281, -5.88069295883173 ], [ -79.342124938964844, -5.880261898040771 ], [ -79.344810485839844, -5.877380847930908 ], [ -79.346504211425781, -5.877033233642521 ], [ -79.347549438476562, -5.875419139862061 ], [ -79.349418640136662, -5.873801231384277 ], [ -79.350677490234318, -5.873249053955078 ], [ -79.352043151855469, -5.87334680557251 ], [ -79.352966308593693, -5.872346878051758 ], [ -79.353332519531193, -5.869691848754883 ], [ -79.352012634277287, -5.867276191711426 ], [ -79.352005004882756, -5.865750789642334 ], [ -79.352195739746037, -5.864846229553166 ], [ -79.354583740234318, -5.860833168029728 ], [ -79.354515075683594, -5.859164237976017 ], [ -79.353866577148438, -5.857844829559269 ], [ -79.351966857910156, -5.857541084289551 ], [ -79.350067138671875, -5.856602191925049 ], [ -79.349685668945312, -5.855891227722168 ], [ -79.349861145019531, -5.854878902435303 ], [ -79.350463867187443, -5.854164123535156 ], [ -79.352592468261719, -5.853640079498234 ], [ -79.354118347167969, -5.853005886077881 ], [ -79.355850219726562, -5.851667881011963 ], [ -79.356300354003849, -5.850760936737061 ], [ -79.35565185546875, -5.849685192108154 ], [ -79.355812072753849, -5.848880767822209 ], [ -79.356330871582031, -5.848506927490178 ], [ -79.358078002929688, -5.848420143127441 ], [ -79.358665466308537, -5.847603797912484 ], [ -79.358673095703068, -5.846594810485783 ], [ -79.358070373535156, -5.844460964202824 ], [ -79.358139038085938, -5.843702793121281 ], [ -79.358398437499943, -5.843358039855957 ], [ -79.359443664550724, -5.842744827270451 ], [ -79.361076354980355, -5.843011856079102 ], [ -79.361686706542969, -5.842845916748047 ], [ -79.363716125488224, -5.840727806091309 ], [ -79.365676879882812, -5.839449882507211 ], [ -79.367218017578125, -5.836325168609619 ], [ -79.368972778320256, -5.83558177947998 ], [ -79.369461059570256, -5.835172176361084 ], [ -79.370613098144418, -5.833286762237435 ], [ -79.371345520019474, -5.831404209136906 ], [ -79.371505737304688, -5.830303192138615 ], [ -79.372474670410156, -5.828751087188721 ], [ -79.3724365234375, -5.826560974121094 ], [ -79.373748779296818, -5.825792789459172 ], [ -79.374931335449219, -5.823925971984806 ], [ -79.375183105468693, -5.823049068450928 ], [ -79.374923706054688, -5.821237087249756 ], [ -79.374977111816349, -5.819028854370117 ], [ -79.377105712890625, -5.815383911132812 ], [ -79.377716064453125, -5.813322067260742 ], [ -79.377487182617188, -5.811963081359863 ], [ -79.375801086425781, -5.811507225036507 ], [ -79.375495910644531, -5.811058044433594 ], [ -79.375511169433594, -5.810409069061279 ], [ -79.376152038574219, -5.809175968170109 ], [ -79.37628173828125, -5.808463096618652 ], [ -79.376190185546875, -5.807535171508789 ], [ -79.375762939453011, -5.806509017944279 ], [ -79.375518798828125, -5.804499149322453 ], [ -79.376091003417969, -5.801176071166935 ], [ -79.376754760742188, -5.80041313171381 ], [ -79.377349853515568, -5.79918193817133 ], [ -79.378280639648438, -5.798788070678654 ], [ -79.379188537597599, -5.798762798309326 ], [ -79.380332946777287, -5.797714233398438 ], [ -79.381698608398438, -5.796929836273193 ], [ -79.382392883300781, -5.796707153320312 ], [ -79.384483337402344, -5.796944141387883 ], [ -79.384925842285156, -5.796798229217472 ], [ -79.386047363281193, -5.795722007751465 ], [ -79.386421203613224, -5.794880867004395 ], [ -79.388664245605469, -5.792852878570557 ], [ -79.390083312988281, -5.790297985076904 ], [ -79.390678405761719, -5.787605762481576 ], [ -79.391761779785099, -5.786118030548096 ], [ -79.392250061035099, -5.784924030303898 ], [ -79.392372131347656, -5.781341075897217 ], [ -79.392738342285043, -5.779479026794434 ], [ -79.395973205566349, -5.775612831115723 ], [ -79.39715576171875, -5.774954795837346 ], [ -79.397781372070256, -5.774164199829045 ], [ -79.397979736328068, -5.772881031036377 ], [ -79.398551940917912, -5.771839141845646 ], [ -79.398788452148438, -5.770747184753418 ], [ -79.398757934570312, -5.769936084747258 ], [ -79.398338317871037, -5.768801212310791 ], [ -79.398216247558594, -5.765835762023926 ], [ -79.399291992187443, -5.764474868774414 ], [ -79.399627685546875, -5.76322603225708 ], [ -79.399589538574162, -5.761847019195557 ], [ -79.399093627929631, -5.759488105773926 ], [ -79.400070190429631, -5.75842380523676 ], [ -79.400169372558537, -5.757413864135742 ], [ -79.400871276855469, -5.755514144897461 ], [ -79.400962829589844, -5.753482818603516 ], [ -79.400405883789062, -5.752127170562744 ], [ -79.400321960449219, -5.751278877258244 ], [ -79.400436401367131, -5.750763893127441 ], [ -79.401138305664062, -5.74993705749506 ], [ -79.400863647460938, -5.749352931976262 ], [ -79.399734497070312, -5.748298168182373 ], [ -79.399589538574162, -5.745169162750244 ], [ -79.399139404296875, -5.744053840637207 ], [ -79.399139404296875, -5.741112232208252 ], [ -79.398796081542969, -5.73939323425293 ], [ -79.399116516113224, -5.738433837890625 ], [ -79.400093078613281, -5.736776828765869 ], [ -79.399291992187443, -5.734033107757455 ], [ -79.399391174316349, -5.733509063720646 ], [ -79.399925231933594, -5.733126163482666 ], [ -79.40008544921875, -5.732583045959416 ], [ -79.399253845214844, -5.731163024902344 ], [ -79.399238586425781, -5.728494167327824 ], [ -79.3985595703125, -5.726993083953801 ], [ -79.398567199707031, -5.726425170898438 ], [ -79.397300720214787, -5.723773956298771 ], [ -79.397041320800781, -5.720745086669922 ], [ -79.398094177246094, -5.716082096099854 ], [ -79.399124145507756, -5.714242935180664 ], [ -79.399787902831974, -5.712225914001408 ], [ -79.399742126464844, -5.711044788360596 ], [ -79.39886474609375, -5.708120822906494 ], [ -79.399604797363168, -5.705290794372559 ], [ -79.399040222167969, -5.703437805175781 ], [ -79.397880554199162, -5.701227188110295 ], [ -79.398002624511719, -5.699522018432504 ], [ -79.395950317382756, -5.697391033172607 ], [ -79.394119262695312, -5.696008205413818 ], [ -79.393646240234375, -5.69500017166132 ], [ -79.393539428710938, -5.694008827209473 ], [ -79.392509460449219, -5.692041873931885 ], [ -79.391777038574162, -5.691705226898193 ], [ -79.390533447265568, -5.690216064453068 ], [ -79.389747619628849, -5.689933776855412 ], [ -79.388931274414062, -5.688830852508545 ], [ -79.387451171875, -5.687606811523438 ], [ -79.387443542480469, -5.686315059661808 ], [ -79.386863708496094, -5.684769153594914 ], [ -79.386978149414062, -5.683297157287598 ], [ -79.386444091796761, -5.682310104370117 ], [ -79.386360168457031, -5.68140983581543 ], [ -79.386512756347599, -5.67835807800293 ], [ -79.387115478515625, -5.677135944366398 ], [ -79.386962890625, -5.674928188323975 ], [ -79.385711669921875, -5.672900199890137 ], [ -79.385406494140625, -5.671267986297607 ], [ -79.385101318359318, -5.671062946319523 ], [ -79.384002685546875, -5.670952796935978 ], [ -79.383514404296875, -5.670299053192139 ], [ -79.383644104003849, -5.669668197631779 ], [ -79.384796142578068, -5.668394088745117 ], [ -79.384895324706974, -5.667284011840763 ], [ -79.384483337402344, -5.666069030761662 ], [ -79.383491516113281, -5.664401054382324 ], [ -79.383323669433594, -5.663040161132756 ], [ -79.383773803710824, -5.662062168121338 ], [ -79.383842468261662, -5.66051006317133 ], [ -79.384376525878906, -5.659873962402287 ], [ -79.385124206542969, -5.659534931182861 ], [ -79.385421752929688, -5.658775806427002 ], [ -79.383682250976562, -5.65709114074707 ], [ -79.382949829101562, -5.655996799468994 ], [ -79.382835388183594, -5.655212879180851 ], [ -79.383079528808537, -5.653091907501221 ], [ -79.382888793945256, -5.652462959289494 ], [ -79.381469726562443, -5.651020050048771 ], [ -79.380935668945312, -5.649680137634277 ], [ -79.378890991210881, -5.647829055786076 ], [ -79.378364562988281, -5.646749019622746 ], [ -79.378265380859375, -5.642971992492676 ], [ -79.377922058105412, -5.642035007476807 ], [ -79.380195617675781, -5.639540195465031 ], [ -79.380889892578068, -5.636474132537842 ], [ -79.381011962890625, -5.634823799133244 ], [ -79.380783081054631, -5.630983829498291 ], [ -79.380058288574219, -5.629182815551758 ], [ -79.379379272460881, -5.628430843353215 ], [ -79.378486633300781, -5.626824855804387 ], [ -79.37921142578125, -5.624877929687443 ], [ -79.378372192382812, -5.623342037200928 ], [ -79.378410339355412, -5.621601104736328 ], [ -79.377830505371037, -5.620776176452637 ], [ -79.377586364746094, -5.61960411071766 ], [ -79.376602172851506, -5.617734909057617 ], [ -79.376541137695312, -5.61588716506958 ], [ -79.37677001953125, -5.614713191986027 ], [ -79.376037597656193, -5.612527847289982 ], [ -79.376571655273438, -5.610601902008057 ], [ -79.37628173828125, -5.60805082321167 ], [ -79.375328063964844, -5.606371879577523 ], [ -79.373001098632812, -5.604611873626652 ], [ -79.372322082519474, -5.60032320022583 ], [ -79.372459411621094, -5.599248886108398 ], [ -79.372871398925724, -5.598622798919678 ], [ -79.373443603515568, -5.598168849945068 ], [ -79.375213623046875, -5.597630977630558 ], [ -79.375823974609318, -5.597239017486572 ], [ -79.377220153808594, -5.594268798828068 ], [ -79.378936767578125, -5.592732906341553 ], [ -79.380325317382756, -5.591846942901611 ], [ -79.381301879882812, -5.590630054473877 ], [ -79.381515502929688, -5.588681221008187 ], [ -79.381431579589844, -5.587338924407902 ], [ -79.380790710449162, -5.586647987365666 ], [ -79.3795166015625, -5.585935115814209 ], [ -79.379020690917969, -5.58502721786499 ], [ -79.378860473632812, -5.584117889404297 ], [ -79.3790283203125, -5.583414077758789 ], [ -79.380180358886719, -5.581204891204834 ], [ -79.380226135253849, -5.577153205871582 ], [ -79.382583618164062, -5.569540977477971 ], [ -79.382675170898438, -5.567618846893311 ], [ -79.384506225585881, -5.564358234405518 ], [ -79.384872436523438, -5.562867164611816 ], [ -79.385475158691349, -5.561861991882324 ], [ -79.38592529296875, -5.561407089233342 ], [ -79.3883056640625, -5.560072898864746 ], [ -79.389633178710938, -5.557048797607422 ], [ -79.392127990722656, -5.554450988769531 ], [ -79.392448425292912, -5.553790092468205 ], [ -79.393821716308594, -5.552329063415527 ], [ -79.394042968749943, -5.550965785980225 ], [ -79.393363952636719, -5.549643993377686 ], [ -79.393379211425724, -5.548902988433838 ], [ -79.394424438476506, -5.547634124755803 ], [ -79.395980834960824, -5.546682834625244 ], [ -79.396881103515625, -5.545740127563477 ], [ -79.396911621093693, -5.54335784912098 ], [ -79.398040771484375, -5.542022228240967 ], [ -79.397987365722656, -5.539823055267334 ], [ -79.398773193359375, -5.539031982421818 ], [ -79.398910522460881, -5.538623809814453 ], [ -79.398925781249943, -5.53584623336792 ], [ -79.398635864257756, -5.535505771636963 ], [ -79.398178100585938, -5.535050868988037 ], [ -79.39727783203125, -5.533333778381291 ], [ -79.395118713378849, -5.530814170837346 ], [ -79.393180847167912, -5.527907848358154 ], [ -79.390853881835938, -5.525966167449894 ], [ -79.389122009277344, -5.523824214935246 ], [ -79.388031005859318, -5.523147106170654 ], [ -79.386932373046875, -5.523117065429631 ], [ -79.38625335693348, -5.52335882186884 ], [ -79.381385803222599, -5.523240089416447 ], [ -79.378387451171875, -5.524578094482422 ], [ -79.376571655273438, -5.524359226226807 ], [ -79.375724792480469, -5.524915218353271 ], [ -79.374191284179688, -5.525160789489746 ], [ -79.372650146484375, -5.5261549949646 ], [ -79.370689392089787, -5.526909828186035 ], [ -79.367958068847656, -5.529201984405518 ], [ -79.366752624511719, -5.529644012451172 ], [ -79.365287780761719, -5.52971076965332 ], [ -79.364715576171875, -5.529362201690674 ], [ -79.363983154296875, -5.529341220855713 ], [ -79.362403869628849, -5.528838157653695 ], [ -79.359489440917969, -5.528507232666016 ], [ -79.359214782714844, -5.528275012969914 ], [ -79.3580322265625, -5.528112888336182 ], [ -79.355552673339844, -5.528717041015625 ], [ -79.353874206542969, -5.527997016906681 ], [ -79.353240966796818, -5.527939796447754 ], [ -79.351974487304688, -5.528155803680363 ], [ -79.350601196289062, -5.528879165649357 ], [ -79.347770690917969, -5.529116153717041 ], [ -79.346527099609375, -5.530433177947998 ], [ -79.343681335449219, -5.530562877654972 ], [ -79.340423583984375, -5.531083106994629 ], [ -79.339286804199219, -5.530820846557617 ], [ -79.336708068847656, -5.530848026275635 ], [ -79.335861206054688, -5.531170845031681 ], [ -79.335151672363281, -5.531797885894775 ], [ -79.334465026855412, -5.53367900848383 ], [ -79.333747863769531, -5.534514904022217 ], [ -79.332420349121094, -5.535500049591064 ], [ -79.331024169921818, -5.535960197448674 ], [ -79.32745361328125, -5.535201072692814 ], [ -79.324546813964787, -5.533428192138615 ], [ -79.322227478027287, -5.532587051391602 ], [ -79.320259094238168, -5.531077861785889 ], [ -79.317298889160099, -5.529403209686222 ], [ -79.315528869628906, -5.527403831481877 ], [ -79.315330505371094, -5.525772094726562 ], [ -79.314964294433594, -5.5252428054809 ], [ -79.314765930175781, -5.524151802062988 ], [ -79.312988281249943, -5.522857189178467 ], [ -79.312393188476562, -5.521156787872314 ], [ -79.311164855956974, -5.520497798919621 ], [ -79.309501647949219, -5.5204758644104 ], [ -79.307350158691349, -5.522331237792969 ], [ -79.305274963378849, -5.52326488494873 ], [ -79.301803588867188, -5.523498058319035 ], [ -79.300048828125, -5.523124217987004 ], [ -79.296157836914062, -5.524169921874943 ], [ -79.293724060058537, -5.525433063507023 ], [ -79.291709899902287, -5.525634765625 ], [ -79.290313720703011, -5.526078224182129 ], [ -79.288574218749943, -5.525966167449894 ], [ -79.286140441894531, -5.526397228240967 ], [ -79.284584045410099, -5.526391983032227 ], [ -79.282829284667969, -5.525854110717717 ], [ -79.279289245605469, -5.523805141448975 ], [ -79.275955200195312, -5.52053689956665 ], [ -79.272872924804688, -5.518917083740178 ], [ -79.271934509277344, -5.517776966094914 ], [ -79.271659851074219, -5.516903877258301 ], [ -79.273246765136719, -5.515296936035099 ], [ -79.274284362792912, -5.513565063476562 ], [ -79.274375915527287, -5.509253025054875 ], [ -79.275199890136719, -5.508388996124268 ], [ -79.276313781738281, -5.507750988006535 ], [ -79.277671813964844, -5.506504058837891 ], [ -79.278701782226562, -5.505351066589299 ], [ -79.279029846191349, -5.50458288192749 ], [ -79.279197692871094, -5.503507137298527 ], [ -79.277984619140568, -5.501028060913029 ], [ -79.27801513671875, -5.499438762664795 ], [ -79.2796630859375, -5.494853019714299 ], [ -79.281501770019531, -5.492393970489502 ], [ -79.282203674316349, -5.490522861480713 ], [ -79.282081604003849, -5.489440917968693 ], [ -79.280540466308594, -5.486447811126652 ], [ -79.280456542968693, -5.485499858856201 ], [ -79.282745361328068, -5.482876777648926 ], [ -79.28436279296875, -5.481910228729191 ], [ -79.285705566406193, -5.480599880218506 ], [ -79.287490844726562, -5.479948043823242 ], [ -79.288200378417912, -5.478517055511418 ], [ -79.288681030273381, -5.476546764373779 ], [ -79.290946960449162, -5.472271919250488 ], [ -79.291053771972599, -5.470856189727726 ], [ -79.291435241699162, -5.46956205368042 ], [ -79.295494079589844, -5.46473503112793 ], [ -79.296836853027344, -5.462234020233154 ], [ -79.297950744628906, -5.459493160247803 ], [ -79.297805786132812, -5.458168029785099 ], [ -79.296508789062443, -5.455634117126465 ], [ -79.296104431152287, -5.454373836517334 ], [ -79.296073913574219, -5.450195789337045 ], [ -79.29461669921875, -5.439400196075383 ], [ -79.295364379882756, -5.437239170074406 ], [ -79.298515319824105, -5.433047771453857 ], [ -79.300987243652287, -5.430585861205941 ], [ -79.303848266601506, -5.429096221923771 ], [ -79.30426025390625, -5.428568840026855 ], [ -79.304534912109375, -5.42753887176508 ], [ -79.304946899414062, -5.424728870391789 ], [ -79.304862976074219, -5.41450023651123 ], [ -79.305503845214844, -5.411888122558594 ], [ -79.305130004882812, -5.409770965576172 ], [ -79.304679870605412, -5.408358097076359 ], [ -79.303550720214787, -5.406210899353027 ], [ -79.30340576171875, -5.405156135559082 ], [ -79.303672790527344, -5.40327787399292 ], [ -79.305206298828125, -5.397556781768799 ], [ -79.305152893066406, -5.396481037139836 ], [ -79.304702758789006, -5.395358085632324 ], [ -79.3045654296875, -5.39347314834589 ], [ -79.304878234863224, -5.387940883636418 ], [ -79.305358886718693, -5.384492874145451 ], [ -79.306205749511662, -5.382240772247314 ], [ -79.308860778808594, -5.377847194671631 ], [ -79.309661865234318, -5.376008033752385 ], [ -79.309829711914006, -5.373573780059814 ], [ -79.309654235839787, -5.371302127838135 ], [ -79.308113098144474, -5.367163181304875 ], [ -79.308784484863224, -5.365965843200684 ], [ -79.310913085937386, -5.364815235137883 ], [ -79.31219482421875, -5.364452838897648 ], [ -79.314750671386719, -5.364517211914006 ], [ -79.317466735839787, -5.363369941711426 ], [ -79.3192138671875, -5.361705780029297 ], [ -79.321083068847599, -5.358410835266113 ], [ -79.322326660156193, -5.352772235870361 ], [ -79.325202941894474, -5.346814155578556 ], [ -79.325340270996094, -5.345497131347656 ], [ -79.325004577636662, -5.342775821685791 ], [ -79.32525634765625, -5.341493129730168 ], [ -79.329170227050781, -5.333364963531494 ], [ -79.330184936523438, -5.328575134277287 ], [ -79.330413818359375, -5.326417922973576 ], [ -79.330284118652344, -5.324850082397461 ], [ -79.329826354980469, -5.323481082916203 ], [ -79.327545166015625, -5.318997859954834 ], [ -79.327499389648381, -5.317778110504037 ], [ -79.327827453613281, -5.316467761993351 ], [ -79.330749511718636, -5.312949180603027 ], [ -79.333877563476506, -5.309975147247258 ], [ -79.334739685058537, -5.309708118438664 ], [ -79.337181091308594, -5.309536933898869 ], [ -79.339508056640568, -5.308502197265625 ], [ -79.342979431152344, -5.308189868926945 ], [ -79.344093322753849, -5.307720184326172 ], [ -79.344520568847656, -5.306690216064453 ], [ -79.344734191894474, -5.302114009857064 ], [ -79.345703124999943, -5.300042152404785 ], [ -79.349937438964844, -5.296737194061279 ], [ -79.351043701171818, -5.294744968414307 ], [ -79.3524169921875, -5.293257236480656 ], [ -79.353477478027344, -5.292446136474496 ], [ -79.356002807617131, -5.29091215133667 ], [ -79.357101440429688, -5.289904117584172 ], [ -79.359123229980469, -5.289205074310246 ], [ -79.361930847167912, -5.289059162139893 ], [ -79.362197875976506, -5.288361072540283 ], [ -79.361312866210938, -5.287519931793156 ], [ -79.358375549316349, -5.28565597534174 ], [ -79.357749938964844, -5.284749031066895 ], [ -79.357376098632812, -5.283605098724308 ], [ -79.357582092285156, -5.281989097595215 ], [ -79.359161376953068, -5.279983043670654 ], [ -79.359992980956974, -5.277994155883732 ], [ -79.36041259765625, -5.275880813598576 ], [ -79.360275268554688, -5.274256229400578 ], [ -79.357658386230469, -5.271389007568359 ], [ -79.353431701660099, -5.267856121063232 ], [ -79.352554321289006, -5.266176223754883 ], [ -79.35205078125, -5.264212131500244 ], [ -79.3497314453125, -5.262189865112305 ], [ -79.347900390624943, -5.25953292846674 ], [ -79.347297668457031, -5.259043216705322 ], [ -79.346565246581974, -5.257133007049504 ], [ -79.346214294433594, -5.254203796386605 ], [ -79.346511840820312, -5.251667022705078 ], [ -79.348159790039062, -5.24783182144165 ], [ -79.348617553710938, -5.245591163635254 ], [ -79.348541259765625, -5.242090225219727 ], [ -79.347610473632756, -5.237345218658447 ], [ -79.347885131835881, -5.234799861907959 ], [ -79.349121093749943, -5.233039855957031 ], [ -79.349571228027344, -5.231910228729248 ], [ -79.353538513183537, -5.22735404968256 ], [ -79.354248046875, -5.225461959838867 ], [ -79.355010986328125, -5.224175930023137 ], [ -79.360488891601506, -5.220341205596867 ], [ -79.362205505371037, -5.218624114990178 ], [ -79.363311767578125, -5.216947078704777 ], [ -79.3656005859375, -5.215542793273926 ], [ -79.367156982421818, -5.214260101318359 ], [ -79.368850708007812, -5.212532043457031 ], [ -79.369941711425724, -5.21098518371582 ], [ -79.370620727539062, -5.208669185638428 ], [ -79.370933532714844, -5.20411300659174 ], [ -79.372100830078125, -5.200965881347599 ], [ -79.372055053710938, -5.198684215545597 ], [ -79.3729248046875, -5.197494983673096 ], [ -79.373741149902287, -5.195224761962891 ], [ -79.376678466796875, -5.192120075225773 ], [ -79.377647399902287, -5.189741134643555 ], [ -79.377372741699162, -5.18842601776123 ], [ -79.376449584960938, -5.186934947967472 ], [ -79.375762939453011, -5.186299800872803 ], [ -79.374374389648438, -5.185813903808537 ], [ -79.373168945312443, -5.184360027313176 ], [ -79.372406005859318, -5.183500766754037 ], [ -79.372177124023438, -5.182581901550293 ], [ -79.371368408203068, -5.181512832641602 ], [ -79.370483398437443, -5.17925500869751 ], [ -79.369781494140625, -5.178114891052246 ], [ -79.3681640625, -5.17631196975708 ], [ -79.365905761718693, -5.174397945403996 ], [ -79.365150451660099, -5.174115180969181 ], [ -79.3619384765625, -5.174153804779053 ], [ -79.359977722167969, -5.172526836395207 ], [ -79.357475280761719, -5.169540882110596 ], [ -79.355934143066406, -5.168448925018254 ], [ -79.354415893554688, -5.167930126190186 ], [ -79.349472045898438, -5.167437076568604 ], [ -79.34698486328125, -5.1668701171875 ], [ -79.342353820800724, -5.164429187774658 ], [ -79.341278076171875, -5.163065910339355 ], [ -79.341880798339787, -5.16200590133667 ], [ -79.341995239257756, -5.160418033599797 ], [ -79.341590881347599, -5.156116962432861 ], [ -79.341224670410099, -5.140504837036133 ], [ -79.340896606445312, -5.139903068542424 ], [ -79.337493896484318, -5.13646221160883 ], [ -79.335601806640568, -5.134184837341252 ], [ -79.332435607910099, -5.127358913421631 ], [ -79.328544616699162, -5.121710777282658 ], [ -79.325630187988281, -5.119331836700383 ], [ -79.319526672363281, -5.116233825683594 ], [ -79.315040588378906, -5.11540699005127 ], [ -79.314224243164006, -5.114933013915959 ], [ -79.311111450195312, -5.114096164703369 ], [ -79.303627014160156, -5.113543033599854 ], [ -79.3006591796875, -5.112714767455998 ], [ -79.299057006835881, -5.112544059753361 ], [ -79.297904968261719, -5.112174987792912 ], [ -79.294532775878906, -5.110447883605957 ], [ -79.293693542480469, -5.109811782836914 ], [ -79.292381286621037, -5.108295917510929 ], [ -79.290672302246037, -5.105528831481934 ], [ -79.288894653320312, -5.10205078125 ], [ -79.285552978515625, -5.096685886383 ], [ -79.280815124511719, -5.086325168609619 ], [ -79.276679992675781, -5.072819232940617 ], [ -79.276725769042969, -5.070403099060002 ], [ -79.277198791503906, -5.068296909332162 ], [ -79.277717590331974, -5.067203044891357 ], [ -79.279212951660156, -5.065486907958984 ], [ -79.278816223144531, -5.06324386596674 ], [ -79.2783203125, -5.062289237976017 ], [ -79.276779174804688, -5.056735038757267 ], [ -79.277473449707031, -5.052210807800293 ], [ -79.279144287109318, -5.047661781310921 ], [ -79.279029846191349, -5.044432163238469 ], [ -79.278755187988224, -5.043830871582031 ], [ -79.274604797363281, -5.03961706161499 ], [ -79.273475646972656, -5.037027835845947 ], [ -79.272850036621037, -5.036868095397949 ], [ -79.272048950195312, -5.037071228027344 ], [ -79.270523071289062, -5.039275169372559 ], [ -79.269210815429631, -5.040211200713998 ], [ -79.264686584472656, -5.040764808654728 ], [ -79.261344909667969, -5.04051685333252 ], [ -79.260055541992131, -5.0412278175354 ], [ -79.258293151855469, -5.042882919311467 ], [ -79.2569580078125, -5.044559955596924 ], [ -79.254463195800781, -5.048870086669865 ], [ -79.253273010253906, -5.050357818603516 ], [ -79.251274108886662, -5.054312229156494 ], [ -79.250358581542969, -5.055115222930908 ], [ -79.249557495117131, -5.0552721023559 ], [ -79.248794555664006, -5.055078029632512 ], [ -79.248023986816406, -5.054444789886361 ], [ -79.247665405273381, -5.052532196044922 ], [ -79.247611999511719, -5.048312187194824 ], [ -79.247047424316406, -5.047088146209717 ], [ -79.247520446777344, -5.040381908416748 ], [ -79.247001647949162, -5.034881114959717 ], [ -79.245658874511662, -5.031371116638127 ], [ -79.245307922363281, -5.02897310256958 ], [ -79.242309570312443, -5.022181034088135 ], [ -79.240432739257756, -5.015717983245793 ], [ -79.237617492675781, -5.005034923553467 ], [ -79.237075805664006, -5.001601219177246 ], [ -79.237037658691406, -4.999914169311523 ], [ -79.236747741699219, -4.999032020568848 ], [ -79.234901428222599, -4.996860027313176 ], [ -79.232215881347599, -4.995479106903076 ], [ -79.229293823242188, -4.993404865264893 ], [ -79.226005554199162, -4.991586208343449 ], [ -79.220756530761662, -4.989599227905217 ], [ -79.219711303710881, -4.988729953765812 ], [ -79.219024658203125, -4.986252784729004 ], [ -79.217597961425781, -4.984745979309082 ], [ -79.216743469238281, -4.98422908782959 ], [ -79.215614318847599, -4.982891082763672 ], [ -79.214981079101562, -4.981768131256047 ], [ -79.214408874511719, -4.980040073394775 ], [ -79.211662292480469, -4.975770950317326 ], [ -79.210418701171875, -4.96955585479725 ], [ -79.210441589355469, -4.968182086944523 ], [ -79.213447570800668, -4.962173938751164 ], [ -79.212593078613281, -4.962465763092041 ], [ -79.211463928222656, -4.962585926055908 ], [ -79.210792541503906, -4.962409019470215 ], [ -79.210197448730412, -4.962137222289982 ], [ -79.209373474121094, -4.961242198944092 ], [ -79.209068298339844, -4.960671901702824 ], [ -79.209518432617131, -4.960184097290039 ], [ -79.209320068359318, -4.960138797759953 ], [ -79.209381103515625, -4.959828853607121 ], [ -79.20947265625, -4.95936107635498 ], [ -79.209007263183594, -4.958674907684326 ], [ -79.208595275878906, -4.958522796630859 ], [ -79.208473205566349, -4.958443164825439 ], [ -79.207969665527344, -4.958434104919377 ], [ -79.207855224609375, -4.958446979522648 ], [ -79.2073974609375, -4.958495140075684 ], [ -79.205513000488224, -4.95883321762085 ], [ -79.204986572265625, -4.959156036376953 ], [ -79.201942443847656, -4.959678173065129 ], [ -79.200820922851562, -4.959581851959229 ], [ -79.198112487792969, -4.95942497253418 ], [ -79.196990966796875, -4.959249973297119 ], [ -79.195091247558594, -4.958818912506104 ], [ -79.191619873046875, -4.958030223846436 ], [ -79.190719604492131, -4.957421779632512 ], [ -79.190452575683537, -4.956991195678597 ], [ -79.189353942871094, -4.956877231597844 ], [ -79.186042785644474, -4.956490039825439 ], [ -79.184967041015625, -4.956010818481388 ], [ -79.182914733886662, -4.95514011383051 ], [ -79.181846618652287, -4.954967021942139 ], [ -79.178802490234318, -4.955284118652344 ], [ -79.177864074706974, -4.955588817596379 ], [ -79.176979064941406, -4.956204891204777 ], [ -79.176315307617131, -4.956771850585938 ], [ -79.174873352050781, -4.957699775695744 ], [ -79.174224853515568, -4.95777702331543 ], [ -79.173667907714787, -4.957665920257568 ], [ -79.173278808593693, -4.957663059234562 ], [ -79.172958374023438, -4.957661151885986 ], [ -79.172378540039062, -4.957861900329533 ], [ -79.171821594238281, -4.958062171936035 ], [ -79.171600341796875, -4.958144187927189 ], [ -79.170333862304631, -4.958292961120605 ], [ -79.168952941894531, -4.958456993103027 ], [ -79.1688232421875, -4.958637237548771 ], [ -79.168289184570312, -4.959479808807316 ], [ -79.167533874511719, -4.960000038146916 ], [ -79.167282104492131, -4.960525989532471 ], [ -79.166732788085938, -4.96076488494873 ], [ -79.166549682617188, -4.96076488494873 ], [ -79.165969848632812, -4.960762977600041 ], [ -79.163505554199219, -4.959854125976562 ], [ -79.163368225097599, -4.959798812866211 ], [ -79.162406921386662, -4.959673881530705 ], [ -79.160705566406193, -4.959897041320744 ], [ -79.160247802734375, -4.959959030151367 ], [ -79.157501220703125, -4.959869861602783 ], [ -79.155662536621094, -4.959216117858887 ], [ -79.154396057128849, -4.958358764648381 ], [ -79.15423583984375, -4.957670211791992 ], [ -79.153434753417912, -4.957688808441162 ], [ -79.151451110839787, -4.958014011383057 ], [ -79.150169372558594, -4.958215236663762 ], [ -79.149070739746037, -4.95796012878418 ], [ -79.147857666015625, -4.958053112029972 ], [ -79.146675109863224, -4.958477020263672 ], [ -79.144989013671875, -4.959270000457764 ], [ -79.144187927246037, -4.960293769836369 ], [ -79.143165588378906, -4.960849761962834 ], [ -79.142974853515625, -4.960887908935547 ], [ -79.142532348632812, -4.960975170135498 ], [ -79.1419677734375, -4.961410045623722 ], [ -79.141395568847656, -4.961533069610482 ], [ -79.139854431152344, -4.961912155151367 ], [ -79.139572143554688, -4.961985111236572 ], [ -79.137100219726562, -4.962395191192627 ], [ -79.136886596679688, -4.962474822997933 ], [ -79.135910034179631, -4.963007926940861 ], [ -79.134941101074162, -4.963806152343693 ], [ -79.133979797363224, -4.964715003967285 ], [ -79.132514953613281, -4.965424060821476 ], [ -79.13232421875, -4.965517044067383 ], [ -79.130554199218693, -4.966320037841797 ], [ -79.127593994140568, -4.967743873596078 ], [ -79.126335144042969, -4.968124866485596 ], [ -79.123252868652344, -4.969130039215088 ], [ -79.122283935546875, -4.969795227050724 ], [ -79.121192932128849, -4.970114231109619 ], [ -79.120742797851506, -4.970533847808781 ], [ -79.120635986328068, -4.971242904663086 ], [ -79.120010375976562, -4.971552848815918 ], [ -79.119506835937443, -4.972620964050236 ], [ -79.118927001953068, -4.972962856292725 ], [ -79.118484497070312, -4.973229885101318 ], [ -79.116653442382812, -4.974268913268986 ], [ -79.113899230957031, -4.974739074707031 ], [ -79.111434936523438, -4.974850177764836 ], [ -79.110076904296875, -4.974880218505859 ], [ -79.107414245605469, -4.974938869476318 ], [ -79.106979370117188, -4.974947929382324 ], [ -79.106224060058537, -4.974791049957275 ], [ -79.104934692382812, -4.974125862121525 ], [ -79.104156494140511, -4.973721981048584 ], [ -79.102928161621094, -4.973768234252873 ], [ -79.102523803710881, -4.973141193389836 ], [ -79.102317810058537, -4.97282695770258 ], [ -79.102188110351562, -4.972533226013127 ], [ -79.102027893066349, -4.972192764282227 ], [ -79.101463317871037, -4.972087860107365 ], [ -79.100830078125, -4.972158908843937 ], [ -79.100257873535156, -4.972292900085449 ], [ -79.099861145019474, -4.972712993621826 ], [ -79.099700927734375, -4.973298072814941 ], [ -79.099472045898381, -4.974545001983643 ], [ -79.098846435546875, -4.974736213684082 ], [ -79.098762512207031, -4.974669933318978 ], [ -79.097869873046875, -4.973996162414551 ], [ -79.097755432128849, -4.973404884338379 ], [ -79.097343444824219, -4.972356796264648 ], [ -79.096946716308594, -4.9719557762146 ], [ -79.095321655273438, -4.970670223236084 ], [ -79.09417724609375, -4.969751834869328 ], [ -79.092407226562443, -4.969072818756104 ], [ -79.092117309570256, -4.968987941741887 ], [ -79.091194152832031, -4.968723773956299 ], [ -79.090003967285156, -4.968630790710392 ], [ -79.086227416992074, -4.968682765960637 ], [ -79.084564208984375, -4.968404769897404 ], [ -79.081306457519531, -4.968029022216797 ], [ -79.080154418945312, -4.967685222625676 ], [ -79.077346801757756, -4.966153144836426 ], [ -79.076202392578068, -4.965989112854004 ], [ -79.074951171874943, -4.966127872466984 ], [ -79.074440002441406, -4.966317176818848 ], [ -79.072891235351562, -4.967385768890381 ], [ -79.072204589843693, -4.968260765075627 ], [ -79.071228027343693, -4.969661235809326 ], [ -79.070999145507812, -4.970331192016545 ], [ -79.070678710937443, -4.97160005569458 ], [ -79.069953918457031, -4.972763061523381 ], [ -79.069557189941406, -4.97318696975708 ], [ -79.069190979003906, -4.976273059844971 ], [ -79.069152832031193, -4.976799011230469 ], [ -79.069084167480469, -4.977790832519531 ], [ -79.069160461425781, -4.978995800018311 ], [ -79.069351196289062, -4.98009014129633 ], [ -79.069450378417969, -4.980670928955021 ], [ -79.069847106933594, -4.981913089752197 ], [ -79.070030212402344, -4.984405040740967 ], [ -79.069175720214844, -4.986311912536621 ], [ -79.068260192871094, -4.987394809722844 ], [ -79.067634582519531, -4.987996101379395 ], [ -79.067008972167969, -4.988135814666748 ], [ -79.065979003906193, -4.988158226013184 ], [ -79.065757751464844, -4.988162994384766 ], [ -79.064620971679688, -4.987789154052734 ], [ -79.06353759765625, -4.98686408996582 ], [ -79.063201904296875, -4.986578941345101 ], [ -79.063117980956974, -4.986489772796631 ], [ -79.062126159667969, -4.985415935516301 ], [ -79.060920715331974, -4.984671115875244 ], [ -79.060302734375, -4.984560012817383 ], [ -79.059738159179688, -4.984593868255615 ], [ -79.058990478515625, -4.984642028808594 ], [ -79.057800292968693, -4.985137939453068 ], [ -79.056747436523381, -4.985822200775146 ], [ -79.056549072265568, -4.985949993133545 ], [ -79.055694580078068, -4.985966205596924 ], [ -79.054672241210938, -4.986526012420654 ], [ -79.054435729980412, -4.986664772033691 ], [ -79.052566528320312, -4.987763881683293 ], [ -79.0504150390625, -4.988580226898193 ], [ -79.049957275390568, -4.989133834838867 ], [ -79.049217224121037, -4.990480899810791 ], [ -79.048530578613224, -4.992777824401742 ], [ -79.048469543457031, -4.993439197540283 ], [ -79.048049926757756, -4.996718883514404 ], [ -79.048004150390625, -4.997979164123535 ], [ -79.047981262206974, -4.998537063598576 ], [ -79.047477722167912, -4.99931001663208 ], [ -79.047233581542969, -4.999681949615479 ], [ -79.045402526855412, -5.001275062561035 ], [ -79.044029235839844, -5.002185821533203 ], [ -79.04345703125, -5.002562046050969 ], [ -79.043060302734375, -5.002824783325195 ], [ -79.041801452636719, -5.003456115722599 ], [ -79.041007995605412, -5.003489971160889 ], [ -79.040878295898438, -5.0033922195434 ], [ -79.040557861328125, -5.003159999847412 ], [ -79.039527893066406, -5.004077911376953 ], [ -79.039016723632756, -5.004507064819336 ], [ -79.036018371582031, -5.007900238037109 ], [ -79.034675598144531, -5.009987831115666 ], [ -79.034576416015625, -5.010093212127686 ], [ -79.033355712890625, -5.011377811431885 ], [ -79.032264709472656, -5.012121200561523 ], [ -79.031639099121094, -5.012381076812687 ], [ -79.030387878417969, -5.012619972229004 ], [ -79.027763366699162, -5.01316499710083 ], [ -79.024795532226506, -5.014358997344914 ], [ -79.024177551269531, -5.014387130737248 ], [ -79.023551940917912, -5.0143141746521 ], [ -79.021286010742188, -5.014601230621281 ], [ -79.020263671875, -5.014732837676945 ], [ -79.019248962402287, -5.01420879364008 ], [ -79.017265319824162, -5.014073848724308 ], [ -79.016632080078125, -5.0142822265625 ], [ -79.01617431640625, -5.014838218688965 ], [ -79.015762329101562, -5.015450954437256 ], [ -79.014915466308594, -5.015956878662053 ], [ -79.014793395996037, -5.016027927398625 ], [ -79.014389038085881, -5.016497135162297 ], [ -79.014152526855469, -5.017001152038461 ], [ -79.013633728027287, -5.017374992370549 ], [ -79.013008117675781, -5.015514850616455 ], [ -79.012435913085938, -5.015432834625187 ], [ -79.011833190917912, -5.014357089996338 ], [ -79.011619567871037, -5.013432025909424 ], [ -79.012054443359375, -5.013488769531193 ], [ -79.012466430664062, -5.013026237487793 ], [ -79.011688232421875, -5.012689113616943 ], [ -79.01129150390625, -5.012019157409611 ], [ -79.010841369628906, -5.010488986968937 ], [ -79.010795593261719, -5.009741783142033 ], [ -79.010108947753849, -5.008084774017277 ], [ -79.0098876953125, -5.006471157073918 ], [ -79.009529113769474, -5.005742073059082 ], [ -79.008758544921818, -5.005297183990479 ], [ -79.008483886718693, -5.004794120788461 ], [ -79.008354187011719, -5.00390005111683 ], [ -79.009529113769474, -5.002853870391846 ], [ -79.009391784667969, -5.001592159271183 ], [ -79.006988525390625, -4.998908996582031 ], [ -79.0059814453125, -4.997046947479191 ], [ -79.006019592285099, -4.996216773986816 ], [ -79.007209777832031, -4.993231773376408 ], [ -79.007530212402287, -4.991415023803654 ], [ -79.008293151855412, -4.990515232086182 ], [ -79.008834838867188, -4.989448070526066 ], [ -79.008941650390625, -4.988635063171387 ], [ -79.008712768554688, -4.98689603805542 ], [ -79.007034301757812, -4.983928203582764 ], [ -79.00630950927723, -4.980600833892822 ], [ -79.0048828125, -4.976819992065373 ], [ -79.0032958984375, -4.975170135498047 ], [ -78.999954223632812, -4.972997188568058 ], [ -78.99755859375, -4.971080780029297 ], [ -78.995307922363224, -4.968197822570744 ], [ -78.994438171386719, -4.966577053070012 ], [ -78.993721008300668, -4.963911056518555 ], [ -78.993492126464844, -4.959283828735352 ], [ -78.993194580078125, -4.957479000091553 ], [ -78.991310119628849, -4.953440189361515 ], [ -78.990470886230412, -4.951631069183293 ], [ -78.990234375, -4.950530052184945 ], [ -78.990409851074219, -4.94818210601801 ], [ -78.990280151367131, -4.947288990020695 ], [ -78.988311767578125, -4.943124771118164 ], [ -78.986526489257812, -4.935507774353027 ], [ -78.986038208007812, -4.93455982208252 ], [ -78.984619140625, -4.931819915771484 ], [ -78.984512329101562, -4.925384044647217 ], [ -78.982536315917912, -4.921226978302002 ], [ -78.982269287109318, -4.918467044830265 ], [ -78.981384277343693, -4.916351795196533 ], [ -78.980308532714844, -4.911159992217961 ], [ -78.976791381835938, -4.901425838470459 ], [ -78.975624084472656, -4.899463176727295 ], [ -78.975540161132812, -4.8991441726684 ], [ -78.975280761718693, -4.898486137390137 ], [ -78.97515869140625, -4.898167133331299 ], [ -78.975067138671875, -4.897933959960938 ], [ -78.973220825195312, -4.89326620101923 ], [ -78.972709655761662, -4.892380237579289 ], [ -78.972618103027287, -4.892227172851562 ], [ -78.972534179687443, -4.892096996307373 ], [ -78.972129821777344, -4.891401767730713 ], [ -78.970359802246094, -4.88957405090332 ], [ -78.967597961425781, -4.887012958526611 ], [ -78.965354919433594, -4.888665199279728 ], [ -78.964439392089787, -4.888583183288574 ], [ -78.961235046386719, -4.888510227203312 ], [ -78.960548400878906, -4.888600826263314 ], [ -78.959808349609375, -4.888583183288574 ], [ -78.959228515625, -4.888632774352971 ], [ -78.958541870117188, -4.888615131378174 ], [ -78.957916259765625, -4.888483047485295 ], [ -78.957168579101506, -4.888462066650334 ], [ -78.95654296875, -4.888156890869084 ], [ -78.956092834472656, -4.887837886810189 ], [ -78.953170776367131, -4.888460159301758 ], [ -78.95294189453125, -4.888495922088623 ], [ -78.952644348144531, -4.888545989990178 ], [ -78.949935913085881, -4.888981819152832 ], [ -78.9482421875, -4.889438152313232 ], [ -78.947509765625, -4.889522075653076 ], [ -78.946159362792969, -4.889880180358887 ], [ -78.945281982421875, -4.890638828277588 ], [ -78.944839477539062, -4.890962123870793 ], [ -78.944343566894531, -4.891231060028076 ], [ -78.943672180175781, -4.891320228576603 ], [ -78.943107604980469, -4.891470909118596 ], [ -78.942146301269531, -4.890974044799748 ], [ -78.941459655761605, -4.890541076660099 ], [ -78.940727233886719, -4.890395164489746 ], [ -78.940101623535099, -4.890143871307316 ], [ -78.938293457031193, -4.889548778533936 ], [ -78.935829162597599, -4.888978958129826 ], [ -78.934318542480469, -4.888566970825195 ], [ -78.933753967285156, -4.888199806213322 ], [ -78.933235168456974, -4.887945175170785 ], [ -78.932518005371094, -4.887736797332764 ], [ -78.931526184081974, -4.887570858001709 ], [ -78.930747985839787, -4.887359142303467 ], [ -78.926048278808594, -4.886344909667912 ], [ -78.925514221191349, -4.886311054229736 ], [ -78.924377441406193, -4.886174201965275 ], [ -78.923629760742188, -4.886124134063721 ], [ -78.921852111816406, -4.885887145996037 ], [ -78.920944213867131, -4.885822772979736 ], [ -78.918441772460881, -4.885685920715332 ], [ -78.917915344238281, -4.885749816894531 ], [ -78.917221069335881, -4.885581016540471 ], [ -78.916717529296875, -4.885210037231445 ], [ -78.916030883789062, -4.885316848754883 ], [ -78.915214538574162, -4.885293960571289 ], [ -78.914634704589787, -4.885184764862004 ], [ -78.913902282714844, -4.885172843933049 ], [ -78.912773132324219, -4.885517120361328 ], [ -78.912384033203125, -4.885928153991699 ], [ -78.912109375, -4.886396884918156 ], [ -78.911605834960881, -4.886680126190186 ], [ -78.911338806152344, -4.887148857116699 ], [ -78.910827636718693, -4.88726615905756 ], [ -78.910377502441406, -4.887553215026799 ], [ -78.909751892089844, -4.887544155120793 ], [ -78.908645629882756, -4.88726615905756 ], [ -78.908340454101506, -4.88673019409174 ], [ -78.908195495605469, -4.886168956756478 ], [ -78.907943725585938, -4.885650157928467 ], [ -78.907447814941406, -4.885319232940617 ], [ -78.906333923339787, -4.884926795959473 ], [ -78.905403137206974, -4.885532855987549 ], [ -78.905128479003906, -4.885941028594971 ], [ -78.904693603515625, -4.886221885681096 ], [ -78.904136657714787, -4.886320114135685 ], [ -78.903640747070312, -4.886476993560791 ], [ -78.902481079101562, -4.886613845825195 ], [ -78.900749206542969, -4.886663913726807 ], [ -78.900299072265625, -4.886768817901611 ], [ -78.899620056152344, -4.886631965637207 ], [ -78.897911071777344, -4.886301040649357 ], [ -78.895393371581974, -4.885754108428955 ], [ -78.894828796386719, -4.885738849639893 ], [ -78.894599914550724, -4.885732173919621 ], [ -78.894172668457031, -4.885650157928467 ], [ -78.893623352050781, -4.884403228759766 ], [ -78.893669128417912, -4.883691787719727 ], [ -78.893547058105469, -4.883556842803955 ], [ -78.893447875976562, -4.881248950958252 ], [ -78.893890380859375, -4.88078594207758 ], [ -78.893661499023381, -4.878684997558594 ], [ -78.893592834472656, -4.878061771392822 ], [ -78.892799377441349, -4.873857021331787 ], [ -78.891319274902344, -4.871181964874268 ], [ -78.891227722167969, -4.870750904083252 ], [ -78.894493103027344, -4.869804859161377 ], [ -78.897361755371094, -4.867893218994141 ], [ -78.898216247558594, -4.867653846740723 ], [ -78.901649475097656, -4.867418766021672 ], [ -78.90362548828125, -4.866718769073429 ], [ -78.904960632324219, -4.865890026092529 ], [ -78.906738281249943, -4.863471031188965 ], [ -78.908142089843693, -4.860321998596191 ], [ -78.912353515624943, -4.856101036071721 ], [ -78.913032531738224, -4.855184078216553 ], [ -78.913360595703125, -4.853141784667969 ], [ -78.913101196289006, -4.84899187088007 ], [ -78.912429809570312, -4.846550941467285 ], [ -78.911842346191406, -4.845560073852539 ], [ -78.910842895507756, -4.844582080841008 ], [ -78.909278869628906, -4.8437180519104 ], [ -78.909294128417912, -4.841954231262093 ], [ -78.908477783203125, -4.839120864868164 ], [ -78.908218383789062, -4.838799953460637 ], [ -78.906929016113224, -4.837217807769719 ], [ -78.901939392089844, -4.835408210754395 ], [ -78.899703979492188, -4.834371089935303 ], [ -78.898300170898438, -4.832496166229248 ], [ -78.896888732910099, -4.829150199890137 ], [ -78.898063659667912, -4.827823162078857 ], [ -78.898216247558594, -4.826433181762582 ], [ -78.894088745117188, -4.820066928863525 ], [ -78.893722534179688, -4.818535804748535 ], [ -78.893333435058594, -4.814375877380371 ], [ -78.891769409179631, -4.812343120574894 ], [ -78.890876770019531, -4.811655044555664 ], [ -78.890083312988281, -4.811439037322998 ], [ -78.889930725097599, -4.810998916625977 ], [ -78.889472961425724, -4.809593200683537 ], [ -78.886138916015568, -4.807503223419133 ], [ -78.885009765625, -4.806025981903019 ], [ -78.885009765625, -4.805517196655217 ], [ -78.885009765625, -4.805172920227051 ], [ -78.886329650878849, -4.803650856018066 ], [ -78.895935058593693, -4.796395778656006 ], [ -78.896369934082031, -4.796061038970947 ], [ -78.89654541015625, -4.795962810516357 ], [ -78.898124694824219, -4.794242858886662 ], [ -78.901191711425724, -4.791019916534424 ], [ -78.90191650390625, -4.79064416885376 ], [ -78.903633117675781, -4.789733886718693 ], [ -78.904998779296818, -4.789230823516846 ], [ -78.90618896484375, -4.788788795471191 ], [ -78.906951904296875, -4.788504123687744 ], [ -78.909172058105469, -4.786905765533447 ], [ -78.910461425781193, -4.78539514541626 ], [ -78.910972595214844, -4.784790992736816 ], [ -78.912368774414006, -4.782154083251953 ], [ -78.913070678710938, -4.779582977294922 ], [ -78.912826538085881, -4.779017925262451 ], [ -78.912223815917969, -4.777552127838135 ], [ -78.911109924316349, -4.776733875274658 ], [ -78.910461425781193, -4.776250839233342 ], [ -78.905738830566406, -4.773309230804443 ], [ -78.904800415039062, -4.772483825683537 ], [ -78.90374755859375, -4.771537780761662 ], [ -78.903099060058537, -4.770960807800293 ], [ -78.902458190917969, -4.770384788513184 ], [ -78.898063659667912, -4.770267963409424 ], [ -78.897193908691349, -4.769971847534123 ], [ -78.896675109863281, -4.769242763519287 ], [ -78.896171569824219, -4.767704010009709 ], [ -78.895805358886719, -4.764694213867188 ], [ -78.895469665527287, -4.763899803161621 ], [ -78.894515991210881, -4.763201236724797 ], [ -78.891151428222656, -4.761693954467773 ], [ -78.889839172363224, -4.760807991027832 ], [ -78.889373779296818, -4.760244846343937 ], [ -78.889610290527344, -4.758025169372559 ], [ -78.890068054199219, -4.75645923614502 ], [ -78.890785217285099, -4.754030227661076 ], [ -78.89178466796875, -4.745557785034123 ], [ -78.892005920410156, -4.742732048034668 ], [ -78.891525268554688, -4.734967231750488 ], [ -78.890983581542912, -4.732557773590088 ], [ -78.891036987304688, -4.731925964355469 ], [ -78.891296386718636, -4.728998184204102 ], [ -78.891441345214844, -4.725296020507699 ], [ -78.891517639160156, -4.724339008331242 ], [ -78.891632080078125, -4.722786903381348 ], [ -78.891738891601506, -4.72130823135376 ], [ -78.892265319824219, -4.718646049499512 ], [ -78.892349243164062, -4.718170166015625 ], [ -78.892280578613281, -4.716179847717285 ], [ -78.891311645507812, -4.713916778564396 ], [ -78.890335083007756, -4.713272094726506 ], [ -78.888877868652287, -4.712307929992676 ], [ -78.888572692871094, -4.712104797363224 ], [ -78.885871887207031, -4.711287021636963 ], [ -78.88543701171875, -4.711153984069767 ], [ -78.885200500488281, -4.710982799530029 ], [ -78.883735656738224, -4.709973812103215 ], [ -78.883621215820312, -4.709900856018066 ], [ -78.882354736328125, -4.70783615112299 ], [ -78.881858825683594, -4.707101821899357 ], [ -78.878028869628849, -4.70354700088501 ], [ -78.877456665039006, -4.703015804290658 ], [ -78.872222900390511, -4.699382781982422 ], [ -78.870292663574162, -4.698056221008301 ], [ -78.868492126464787, -4.69439792633051 ], [ -78.866630554199219, -4.691247940063477 ], [ -78.864395141601506, -4.688372135162354 ], [ -78.861785888671875, -4.685715198516789 ], [ -78.861328124999943, -4.684883117675781 ], [ -78.861312866210938, -4.684772968292179 ], [ -78.860237121582031, -4.679492950439396 ], [ -78.857383728027344, -4.674409866332951 ], [ -78.8558349609375, -4.672441005706787 ], [ -78.855033874511662, -4.670914173126164 ], [ -78.854850769042912, -4.669511795043945 ], [ -78.854743957519474, -4.668707847595158 ], [ -78.854675292968636, -4.668127059936523 ], [ -78.85443115234375, -4.667214870452881 ], [ -78.85430908203125, -4.666804790496769 ], [ -78.854148864746094, -4.666312217712346 ], [ -78.853866577148438, -4.665960788726807 ], [ -78.853179931640625, -4.665361881256047 ], [ -78.852897644042969, -4.665120124816838 ], [ -78.851554870605469, -4.664225101470834 ], [ -78.850433349609375, -4.663795948028451 ], [ -78.849304199218693, -4.663355827331486 ], [ -78.847778320312443, -4.662765979766846 ], [ -78.847640991210938, -4.662714004516602 ], [ -78.846740722656193, -4.662044048309269 ], [ -78.846199035644531, -4.661529064178467 ], [ -78.846038818359375, -4.661371231079102 ], [ -78.845802307128849, -4.661149978637638 ], [ -78.845687866210881, -4.661036014556885 ], [ -78.844581604003906, -4.659477233886662 ], [ -78.842414855957031, -4.656181812286377 ], [ -78.841056823730469, -4.65472507476801 ], [ -78.839103698730412, -4.652925014495793 ], [ -78.837844848632812, -4.652115821838379 ], [ -78.836082458496094, -4.651406764984074 ], [ -78.834953308105469, -4.651075839996338 ], [ -78.83245849609375, -4.650461196899357 ], [ -78.831558227539062, -4.650010108947754 ], [ -78.829093933105412, -4.648295879363957 ], [ -78.828277587890625, -4.648002147674504 ], [ -78.827835083007812, -4.648008823394719 ], [ -78.827178955078068, -4.647990226745549 ], [ -78.825469970703068, -4.647937774658146 ], [ -78.824295043945312, -4.647490978240967 ], [ -78.822677612304688, -4.646586894988957 ], [ -78.82086181640625, -4.645421981811467 ], [ -78.817794799804688, -4.643701076507568 ], [ -78.813491821289062, -4.641910076141301 ], [ -78.812110900878849, -4.641574859619141 ], [ -78.811904907226562, -4.641536235809269 ], [ -78.810409545898381, -4.641266822814885 ], [ -78.808685302734318, -4.640956878662053 ], [ -78.805099487304688, -4.640493869781494 ], [ -78.803863525390625, -4.640092849731445 ], [ -78.803413391113281, -4.639712810516301 ], [ -78.800262451171875, -4.637133121490422 ], [ -78.799774169921875, -4.637022972106877 ], [ -78.798812866210938, -4.636940956115723 ], [ -78.798004150390568, -4.637054920196533 ], [ -78.796852111816349, -4.637347221374512 ], [ -78.795127868652344, -4.638040065765324 ], [ -78.793670654296875, -4.63883113861084 ], [ -78.791839599609375, -4.639430046081486 ], [ -78.7904052734375, -4.639626026153564 ], [ -78.788871765136605, -4.639706134796143 ], [ -78.784881591796875, -4.639378070831242 ], [ -78.784347534179688, -4.63933420181263 ], [ -78.783309936523381, -4.639010906219482 ], [ -78.780426025390625, -4.637554168701115 ], [ -78.7796630859375, -4.637458801269474 ], [ -78.778167724609318, -4.637965202331543 ], [ -78.777053833007812, -4.638780117034912 ], [ -78.774818420410099, -4.641061782836914 ], [ -78.77437591552723, -4.64119911193842 ], [ -78.772804260253906, -4.64155912399292 ], [ -78.772689819335938, -4.641565799713135 ], [ -78.770965576171875, -4.641688823699951 ], [ -78.768539428710881, -4.641643047332707 ], [ -78.767219543456974, -4.641328811645508 ], [ -78.766044616699162, -4.640973091125488 ], [ -78.765274047851562, -4.64058780670166 ], [ -78.764640808105412, -4.64008903503418 ], [ -78.763916015625, -4.639156818389836 ], [ -78.763328552246094, -4.638166904449406 ], [ -78.763023376464787, -4.637581825256234 ], [ -78.762306213378906, -4.636216163635197 ], [ -78.762039184570256, -4.635719776153564 ], [ -78.760986328125, -4.632763862609863 ], [ -78.759773254394474, -4.630886077880859 ], [ -78.758857727050781, -4.630025863647461 ], [ -78.758079528808594, -4.629577159881592 ], [ -78.75750732421875, -4.629364967346135 ], [ -78.756866455078125, -4.629126071929875 ], [ -78.755538940429688, -4.628975868225041 ], [ -78.753189086914006, -4.628945827484131 ], [ -78.751907348632812, -4.62910795211792 ], [ -78.748176574707031, -4.630025863647461 ], [ -78.747093200683537, -4.630453109741097 ], [ -78.744621276855355, -4.631296157836857 ], [ -78.744316101074162, -4.631401062011719 ], [ -78.743728637695256, -4.631393909454346 ], [ -78.743438720703125, -4.631392002105656 ], [ -78.741569519042855, -4.630953788757211 ], [ -78.740524291992188, -4.630520820617619 ], [ -78.739181518554631, -4.629788875579834 ], [ -78.738182067871094, -4.629493236541748 ], [ -78.73626708984375, -4.629100799560547 ], [ -78.735832214355412, -4.629012107849064 ], [ -78.734199523925724, -4.628430843353215 ], [ -78.733024597167969, -4.62781810760498 ], [ -78.731811523437443, -4.62689018249506 ], [ -78.731277465820312, -4.626463890075627 ], [ -78.730064392089844, -4.625483989715576 ], [ -78.729202270507812, -4.624789237976074 ], [ -78.728416442871094, -4.624405860900822 ], [ -78.727546691894474, -4.624282836914006 ], [ -78.725517272949162, -4.624142169952393 ], [ -78.723091125488281, -4.623668193817139 ], [ -78.720474243164006, -4.623403072357178 ], [ -78.719329833984318, -4.623595237731877 ], [ -78.714187622070256, -4.62458419799799 ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-CAL", "NAME_0": "Peru", "ID_1": 7, "NAME_1": "Callao", "TYPE_1": "Provincia", "ENGTYPE_1": "Province", "NL_NAME_1": null, "VARNAME_1": "El Callao" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.232360839843693, -12.128195762634277 ], [ -77.232360839843693, -12.129584312438908 ], [ -77.232635498046818, -12.129584312438908 ], [ -77.232635498046818, -12.129028320312443 ], [ -77.233192443847656, -12.129028320312443 ], [ -77.233192443847656, -12.128749847412053 ], [ -77.233474731445312, -12.128749847412053 ], [ -77.233474731445312, -12.129028320312443 ], [ -77.233749389648438, -12.129028320312443 ], [ -77.233749389648438, -12.128749847412053 ], [ -77.234306335449219, -12.128749847412053 ], [ -77.234306335449219, -12.129028320312443 ], [ -77.234580993652344, -12.129028320312443 ], [ -77.234580993652344, -12.129305839538517 ], [ -77.235137939453068, -12.129305839538517 ], [ -77.235137939453068, -12.128472328185978 ], [ -77.232917785644474, -12.128472328185978 ], [ -77.232917785644474, -12.128195762634277 ], [ -77.232360839843693, -12.128195762634277 ] ] ], [ [ [ -77.20819091796875, -12.114303588867188 ], [ -77.20819091796875, -12.114860534667969 ], [ -77.207916259765625, -12.114860534667969 ], [ -77.207916259765625, -12.115139007568359 ], [ -77.2076416015625, -12.115139007568359 ], [ -77.2076416015625, -12.116249084472599 ], [ -77.207916259765625, -12.116249084472599 ], [ -77.207916259765625, -12.116805076599064 ], [ -77.20819091796875, -12.116805076599064 ], [ -77.20819091796875, -12.117082595825082 ], [ -77.210136413574162, -12.117082595825082 ], [ -77.210136413574162, -12.116805076599064 ], [ -77.209861755371037, -12.116805076599064 ], [ -77.209861755371037, -12.115416526794434 ], [ -77.210136413574162, -12.115416526794434 ], [ -77.210136413574162, -12.114860534667969 ], [ -77.209587097167855, -12.114860534667969 ], [ -77.209587097167855, -12.114303588867188 ], [ -77.20819091796875, -12.114303588867188 ] ] ], [ [ [ -77.181526184081974, -12.110972404479924 ], [ -77.181526184081974, -12.111249923705998 ], [ -77.181251525878849, -12.111248016357422 ], [ -77.181251525878849, -12.111528396606388 ], [ -77.181526184081974, -12.111528396606388 ], [ -77.181526184081974, -12.111805915832463 ], [ -77.181251525878849, -12.111804008483887 ], [ -77.181251525878849, -12.112360000610352 ], [ -77.180969238281193, -12.112360000610352 ], [ -77.180969238281193, -12.112915992736816 ], [ -77.180419921875, -12.112915992736816 ], [ -77.180419921875, -12.113194465637207 ], [ -77.180137634277344, -12.113194465637207 ], [ -77.180137634277344, -12.114028930664062 ], [ -77.180419921875, -12.114026069641113 ], [ -77.180419921875, -12.114303588867188 ], [ -77.180137634277344, -12.114303588867188 ], [ -77.180137634277344, -12.114860534667969 ], [ -77.179306030273438, -12.114860534667969 ], [ -77.179306030273438, -12.115694999694824 ], [ -77.179031372070312, -12.115692138671818 ], [ -77.179031372070312, -12.115973472595215 ], [ -77.178749084472599, -12.115973472595215 ], [ -77.178749084472599, -12.116526603698674 ], [ -77.178474426269474, -12.116526603698674 ], [ -77.178474426269474, -12.117082595825082 ], [ -77.177917480468693, -12.117082595825082 ], [ -77.177917480468693, -12.117361068725529 ], [ -77.177360534667969, -12.117361068725529 ], [ -77.177360534667969, -12.11763858795166 ], [ -77.177085876464844, -12.11763858795166 ], [ -77.177085876464844, -12.117917060851937 ], [ -77.176803588867188, -12.117917060851937 ], [ -77.176803588867188, -12.118194580078125 ], [ -77.176528930664062, -12.118194580078125 ], [ -77.176528930664062, -12.119304656982365 ], [ -77.176803588867188, -12.119304656982365 ], [ -77.176803588867188, -12.119583129882756 ], [ -77.177360534667969, -12.119583129882756 ], [ -77.177360534667969, -12.11986064910883 ], [ -77.178192138671818, -12.11986064910883 ], [ -77.178192138671818, -12.119583129882756 ], [ -77.179031372070312, -12.119583129882756 ], [ -77.179031372070312, -12.120416641235238 ], [ -77.179862976074219, -12.120416641235238 ], [ -77.179862976074219, -12.11986064910883 ], [ -77.179580688476562, -12.11986064910883 ], [ -77.179580688476562, -12.119304656982365 ], [ -77.181251525878849, -12.119304656982365 ], [ -77.181251525878849, -12.119583129882756 ], [ -77.181526184081974, -12.119583129882756 ], [ -77.181526184081974, -12.119304656982365 ], [ -77.181808471679631, -12.119304656982365 ], [ -77.181808471679631, -12.119027137756291 ], [ -77.182083129882812, -12.11902904510498 ], [ -77.182083129882812, -12.1187486648559 ], [ -77.181808471679631, -12.1187486648559 ], [ -77.181808471679631, -12.118471145629883 ], [ -77.182083129882812, -12.118471145629883 ], [ -77.182083129882812, -12.117917060851937 ], [ -77.182357788085938, -12.117917060851937 ], [ -77.182357788085938, -12.1187486648559 ], [ -77.182640075683594, -12.1187486648559 ], [ -77.182640075683594, -12.11902904510498 ], [ -77.183197021484375, -12.119027137756291 ], [ -77.183197021484375, -12.119583129882756 ], [ -77.183746337890625, -12.119583129882756 ], [ -77.183746337890625, -12.11986064910883 ], [ -77.184028625488168, -12.11986064910883 ], [ -77.184028625488168, -12.119583129882756 ], [ -77.184303283691349, -12.119583129882756 ], [ -77.184303283691349, -12.117917060851937 ], [ -77.184028625488168, -12.117917060851937 ], [ -77.184028625488168, -12.11763858795166 ], [ -77.183746337890625, -12.11763858795166 ], [ -77.183746337890625, -12.114860534667969 ], [ -77.184303283691349, -12.114860534667969 ], [ -77.184303283691349, -12.114582061767578 ], [ -77.184585571289006, -12.114582061767578 ], [ -77.184585571289006, -12.114303588867188 ], [ -77.184860229492131, -12.114303588867188 ], [ -77.184860229492131, -12.114026069641113 ], [ -77.184585571289006, -12.114028930664062 ], [ -77.184585571289006, -12.113194465637207 ], [ -77.184303283691349, -12.113194465637207 ], [ -77.184303283691349, -12.112915992736816 ], [ -77.184028625488168, -12.112915992736816 ], [ -77.184028625488168, -12.112638473510742 ], [ -77.183746337890625, -12.112638473510742 ], [ -77.183746337890625, -12.111804008483887 ], [ -77.1834716796875, -12.111805915832463 ], [ -77.1834716796875, -12.111528396606388 ], [ -77.182357788085938, -12.111528396606388 ], [ -77.182357788085938, -12.111248016357422 ], [ -77.182083129882812, -12.111249923705998 ], [ -77.182083129882812, -12.110972404479924 ], [ -77.181526184081974, -12.110972404479924 ] ] ], [ [ [ -77.110092163085881, -12.080366134643441 ], [ -77.1097412109375, -12.080760002136174 ], [ -77.110137939453125, -12.080694198608398 ], [ -77.110092163085881, -12.080366134643441 ] ] ], [ [ [ -77.244857788085881, -12.058748245239258 ], [ -77.244857788085881, -12.059028625488224 ], [ -77.242637634277344, -12.059028625488224 ], [ -77.242637634277344, -12.059304237365723 ], [ -77.240692138671875, -12.059304237365723 ], [ -77.240692138671875, -12.059584617614689 ], [ -77.24041748046875, -12.059584617614689 ], [ -77.24041748046875, -12.060417175292969 ], [ -77.240135192871094, -12.06041431427002 ], [ -77.240135192871094, -12.060694694519043 ], [ -77.239860534667969, -12.060694694519043 ], [ -77.239860534667969, -12.061250686645508 ], [ -77.239585876464844, -12.061250686645508 ], [ -77.239585876464844, -12.061806678771916 ], [ -77.239303588867188, -12.061806678771916 ], [ -77.239303588867188, -12.06208324432373 ], [ -77.239028930664006, -12.06208324432373 ], [ -77.239028930664006, -12.062360763549805 ], [ -77.238746643066349, -12.062360763549805 ], [ -77.238746643066349, -12.062639236450195 ], [ -77.238471984863224, -12.062636375427189 ], [ -77.238471984863224, -12.06291675567627 ], [ -77.238197326660043, -12.06291675567627 ], [ -77.238197326660043, -12.063472747802734 ], [ -77.238471984863224, -12.063472747802734 ], [ -77.238471984863224, -12.063751220703125 ], [ -77.237640380859375, -12.063751220703125 ], [ -77.237640380859375, -12.06402683258051 ], [ -77.237083435058594, -12.06402683258051 ], [ -77.237083435058594, -12.064582824706918 ], [ -77.235420227050724, -12.064582824706918 ], [ -77.235420227050724, -12.065138816833496 ], [ -77.23486328125, -12.065138816833496 ], [ -77.23486328125, -12.064861297607365 ], [ -77.233474731445312, -12.064861297607365 ], [ -77.233474731445312, -12.065138816833496 ], [ -77.233192443847656, -12.065138816833496 ], [ -77.233192443847656, -12.064861297607365 ], [ -77.232635498046818, -12.064861297607365 ], [ -77.232635498046818, -12.064582824706918 ], [ -77.232360839843693, -12.064582824706918 ], [ -77.232360839843693, -12.064861297607365 ], [ -77.231529235839844, -12.064861297607365 ], [ -77.231529235839844, -12.065138816833496 ], [ -77.230140686035156, -12.065138816833496 ], [ -77.230140686035156, -12.065417289733773 ], [ -77.2298583984375, -12.065417289733773 ], [ -77.2298583984375, -12.065694808959961 ], [ -77.229583740234318, -12.065694808959961 ], [ -77.229583740234318, -12.065973281860352 ], [ -77.229026794433537, -12.065973281860352 ], [ -77.229026794433537, -12.066804885864201 ], [ -77.228752136230412, -12.066804885864201 ], [ -77.228752136230412, -12.067360877990666 ], [ -77.228469848632699, -12.067360877990666 ], [ -77.228469848632699, -12.067639350891056 ], [ -77.227912902832031, -12.067639350891056 ], [ -77.227912902832031, -12.067916870117074 ], [ -77.226249694824162, -12.067916870117074 ], [ -77.226249694824162, -12.068195343017521 ], [ -77.225975036621037, -12.068195343017521 ], [ -77.225975036621037, -12.068751335143929 ], [ -77.225418090820199, -12.068751335143929 ], [ -77.225418090820199, -12.069026947021428 ], [ -77.224861145019531, -12.069026947021428 ], [ -77.224861145019531, -12.068751335143929 ], [ -77.224029541015625, -12.068751335143929 ], [ -77.224029541015625, -12.069026947021428 ], [ -77.223747253417969, -12.069026947021428 ], [ -77.223747253417969, -12.069305419921875 ], [ -77.222358703613224, -12.069305419921875 ], [ -77.222358703613224, -12.069582939147892 ], [ -77.222084045410156, -12.069581031799316 ], [ -77.222084045410156, -12.069861412048283 ], [ -77.22125244140625, -12.069861412048283 ], [ -77.22125244140625, -12.069581031799316 ], [ -77.220970153808594, -12.069581031799316 ], [ -77.220970153808594, -12.069861412048283 ], [ -77.220413208007812, -12.069861412048283 ], [ -77.220413208007812, -12.070417404174748 ], [ -77.220138549804631, -12.070417404174748 ], [ -77.220138549804631, -12.070973396301213 ], [ -77.219863891601506, -12.070973396301213 ], [ -77.219863891601506, -12.071249008178711 ], [ -77.219581604003849, -12.071249008178711 ], [ -77.219581604003849, -12.071526527404785 ], [ -77.219306945800724, -12.071526527404785 ], [ -77.219306945800724, -12.072360992431641 ], [ -77.219581604003849, -12.072359085083008 ], [ -77.219581604003849, -12.072640419006348 ], [ -77.219863891601506, -12.072640419006348 ], [ -77.219863891601506, -12.073192596435547 ], [ -77.219581604003849, -12.073192596435547 ], [ -77.219581604003849, -12.073471069335938 ], [ -77.219306945800724, -12.073471069335938 ], [ -77.219306945800724, -12.073748588562012 ], [ -77.219024658203068, -12.073748588562012 ], [ -77.219024658203068, -12.074028015136719 ], [ -77.21875, -12.074028015136719 ], [ -77.21875, -12.074305534362793 ], [ -77.218475341796875, -12.074305534362793 ], [ -77.218475341796875, -12.074584007263184 ], [ -77.21875, -12.074581146240178 ], [ -77.21875, -12.074861526489258 ], [ -77.218475341796875, -12.074861526489258 ], [ -77.218475341796875, -12.075139999389648 ], [ -77.218193054199219, -12.075137138366642 ], [ -77.218193054199219, -12.075415611267033 ], [ -77.216804504394474, -12.075415611267033 ], [ -77.216804504394474, -12.075971603393498 ], [ -77.2156982421875, -12.075971603393498 ], [ -77.2156982421875, -12.075694084167424 ], [ -77.215141296386719, -12.075694084167424 ], [ -77.215141296386719, -12.075971603393498 ], [ -77.214302062988281, -12.075971603393498 ], [ -77.214302062988281, -12.076250076293888 ], [ -77.214027404785156, -12.076250076293888 ], [ -77.214027404785156, -12.076804161071777 ], [ -77.214302062988281, -12.076804161071777 ], [ -77.214302062988281, -12.077083587646484 ], [ -77.214027404785156, -12.077083587646484 ], [ -77.214027404785156, -12.07763767242426 ], [ -77.213752746581974, -12.07763767242426 ], [ -77.213752746581974, -12.07791805267334 ], [ -77.213195800781193, -12.077916145324707 ], [ -77.213195800781193, -12.078193664550724 ], [ -77.212081909179688, -12.078193664550724 ], [ -77.212081909179688, -12.077916145324707 ], [ -77.211524963378906, -12.077916145324707 ], [ -77.211524963378906, -12.078749656677189 ], [ -77.211250305175781, -12.078749656677189 ], [ -77.211250305175781, -12.079305648803654 ], [ -77.209587097167855, -12.079305648803654 ], [ -77.209587097167855, -12.07902812957758 ], [ -77.209304809570312, -12.07902812957758 ], [ -77.209304809570312, -12.079584121704045 ], [ -77.209030151367188, -12.079584121704045 ], [ -77.209030151367188, -12.080971717834416 ], [ -77.209587097167855, -12.080971717834416 ], [ -77.209587097167855, -12.082362174987736 ], [ -77.209304809570312, -12.08236026763916 ], [ -77.209304809570312, -12.082918167114201 ], [ -77.209030151367188, -12.082916259765625 ], [ -77.209030151367188, -12.08347225189209 ], [ -77.208747863769531, -12.08347225189209 ], [ -77.208747863769531, -12.083749771118164 ], [ -77.208473205566406, -12.083749771118164 ], [ -77.208473205566406, -12.084028244018555 ], [ -77.20819091796875, -12.084028244018555 ], [ -77.20819091796875, -12.084305763244629 ], [ -77.207916259765625, -12.084305763244629 ], [ -77.207916259765625, -12.084582328796273 ], [ -77.2076416015625, -12.084582328796273 ], [ -77.2076416015625, -12.084859848022461 ], [ -77.207359313964787, -12.084859848022461 ], [ -77.207359313964787, -12.085138320922852 ], [ -77.207084655761662, -12.085138320922852 ], [ -77.207084655761662, -12.085415840148926 ], [ -77.206527709960881, -12.085415840148926 ], [ -77.206527709960881, -12.085971832275391 ], [ -77.206253051757812, -12.085971832275391 ], [ -77.206253051757812, -12.086804389953556 ], [ -77.205970764160156, -12.086804389953556 ], [ -77.205970764160156, -12.087360382080021 ], [ -77.205413818359375, -12.087360382080021 ], [ -77.205413818359375, -12.087638854980412 ], [ -77.20513916015625, -12.087638854980412 ], [ -77.20513916015625, -12.087917327880803 ], [ -77.204582214355469, -12.087917327880803 ], [ -77.204582214355469, -12.088194847106877 ], [ -77.204307556152287, -12.088194847106877 ], [ -77.204307556152287, -12.089027404785156 ], [ -77.204025268554631, -12.089027404785156 ], [ -77.204025268554631, -12.089583396911621 ], [ -77.203475952148381, -12.089583396911621 ], [ -77.203475952148381, -12.089860916137695 ], [ -77.203193664550724, -12.089860916137695 ], [ -77.203193664550724, -12.090139389038086 ], [ -77.20263671875, -12.090139389038086 ], [ -77.20263671875, -12.090416908264103 ], [ -77.202362060546875, -12.090416908264103 ], [ -77.202362060546875, -12.090695381164551 ], [ -77.201530456542969, -12.090695381164551 ], [ -77.201530456542969, -12.090972900390568 ], [ -77.200691223144474, -12.090970993041992 ], [ -77.200691223144474, -12.091251373290959 ], [ -77.200416564941349, -12.091251373290959 ], [ -77.200416564941349, -12.091528892517033 ], [ -77.200141906738224, -12.091526985168457 ], [ -77.200141906738224, -12.091805458068848 ], [ -77.199859619140511, -12.091805458068848 ], [ -77.199859619140511, -12.092638969421387 ], [ -77.1995849609375, -12.092638969421387 ], [ -77.1995849609375, -12.093193054199105 ], [ -77.199859619140511, -12.093193054199105 ], [ -77.199859619140511, -12.095138549804688 ], [ -77.1995849609375, -12.095138549804688 ], [ -77.1995849609375, -12.095417022705078 ], [ -77.199302673339844, -12.095415115356388 ], [ -77.199302673339844, -12.095694541931152 ], [ -77.199028015136719, -12.095694541931152 ], [ -77.199028015136719, -12.096248626708984 ], [ -77.198471069335938, -12.096248626708984 ], [ -77.198471069335938, -12.095971107482853 ], [ -77.198196411132812, -12.095971107482853 ], [ -77.198196411132812, -12.096248626708984 ], [ -77.197639465331974, -12.096248626708984 ], [ -77.197639465331974, -12.095971107482853 ], [ -77.197082519531193, -12.095971107482853 ], [ -77.197082519531193, -12.096248626708984 ], [ -77.196525573730469, -12.096248626708984 ], [ -77.196525573730469, -12.096527099609261 ], [ -77.196250915527344, -12.096527099609261 ], [ -77.196250915527344, -12.096804618835449 ], [ -77.195968627929688, -12.096804618835449 ], [ -77.195968627929688, -12.097639083862305 ], [ -77.195693969726562, -12.097637176513615 ], [ -77.195693969726562, -12.097916603088379 ], [ -77.195419311523438, -12.097916603088379 ], [ -77.195419311523438, -12.09819316864008 ], [ -77.194580078124943, -12.09819316864008 ], [ -77.194580078124943, -12.09847354888916 ], [ -77.194305419921818, -12.09847354888916 ], [ -77.194305419921818, -12.098749160766545 ], [ -77.194030761718693, -12.098749160766545 ], [ -77.194030761718693, -12.099582672119027 ], [ -77.193748474121037, -12.099582672119027 ], [ -77.193748474121037, -12.099862098693791 ], [ -77.193473815917969, -12.099859237670898 ], [ -77.193473815917969, -12.100415229797363 ], [ -77.193191528320312, -12.100415229797363 ], [ -77.193191528320312, -12.10069561004633 ], [ -77.192642211914062, -12.10069561004633 ], [ -77.192642211914062, -12.100971221923828 ], [ -77.192085266113281, -12.100971221923828 ], [ -77.192085266113281, -12.101249694824219 ], [ -77.191802978515625, -12.101249694824219 ], [ -77.191802978515625, -12.101805686950684 ], [ -77.190414428710881, -12.101805686950684 ], [ -77.190414428710881, -12.102084159851074 ], [ -77.189857482910156, -12.102081298828125 ], [ -77.189857482910156, -12.102638244628906 ], [ -77.189308166503906, -12.102638244628906 ], [ -77.189308166503906, -12.102917671203556 ], [ -77.18902587890625, -12.102917671203556 ], [ -77.18902587890625, -12.103471755981445 ], [ -77.188751220703125, -12.103471755981445 ], [ -77.188751220703125, -12.10402774810791 ], [ -77.188468933105469, -12.10402774810791 ], [ -77.188468933105469, -12.104862213134766 ], [ -77.188194274902287, -12.104860305786076 ], [ -77.188194274902287, -12.105416297912541 ], [ -77.188468933105469, -12.105416297912541 ], [ -77.188468933105469, -12.106528282165527 ], [ -77.188751220703125, -12.106528282165527 ], [ -77.188751220703125, -12.106805801391602 ], [ -77.189308166503906, -12.106805801391602 ], [ -77.189308166503906, -12.107084274291992 ], [ -77.189857482910156, -12.107084274291992 ], [ -77.189857482910156, -12.108750343322697 ], [ -77.190696716308537, -12.108750343322697 ], [ -77.190696716308537, -12.109027862548828 ], [ -77.191528320312443, -12.109027862548828 ], [ -77.191528320312443, -12.107640266418457 ], [ -77.191802978515625, -12.107640266418457 ], [ -77.191802978515625, -12.108194351196232 ], [ -77.192085266113281, -12.108194351196232 ], [ -77.192085266113281, -12.10847187042225 ], [ -77.192359924316406, -12.10847187042225 ], [ -77.192359924316406, -12.107915878295842 ], [ -77.192642211914062, -12.107915878295842 ], [ -77.192642211914062, -12.10847187042225 ], [ -77.193191528320312, -12.10847187042225 ], [ -77.193191528320312, -12.108194351196232 ], [ -77.193473815917969, -12.108194351196232 ], [ -77.193473815917969, -12.10847187042225 ], [ -77.193748474121037, -12.10847187042225 ], [ -77.193748474121037, -12.108750343322697 ], [ -77.194030761718693, -12.108750343322697 ], [ -77.194030761718693, -12.10847187042225 ], [ -77.194580078124943, -12.10847187042225 ], [ -77.194580078124943, -12.108750343322697 ], [ -77.194862365722656, -12.108750343322697 ], [ -77.194862365722656, -12.109306335449105 ], [ -77.195419311523438, -12.109306335449105 ], [ -77.195419311523438, -12.109581947326603 ], [ -77.196525573730469, -12.109581947326603 ], [ -77.196525573730469, -12.109306335449105 ], [ -77.196807861328011, -12.109306335449105 ], [ -77.196807861328011, -12.110137939453068 ], [ -77.197082519531193, -12.110137939453068 ], [ -77.197082519531193, -12.109862327575684 ], [ -77.197364807128849, -12.109862327575684 ], [ -77.197364807128849, -12.109306335449105 ], [ -77.197639465331974, -12.109306335449105 ], [ -77.197639465331974, -12.108750343322697 ], [ -77.198196411132812, -12.108750343322697 ], [ -77.198196411132812, -12.109306335449105 ], [ -77.198753356933594, -12.109306335449105 ], [ -77.198753356933594, -12.109581947326603 ], [ -77.199028015136719, -12.109581947326603 ], [ -77.199028015136719, -12.109862327575684 ], [ -77.1995849609375, -12.109862327575684 ], [ -77.1995849609375, -12.109581947326603 ], [ -77.199859619140511, -12.109581947326603 ], [ -77.199859619140511, -12.109862327575684 ], [ -77.200141906738224, -12.109862327575684 ], [ -77.200141906738224, -12.109581947326603 ], [ -77.200691223144474, -12.109581947326603 ], [ -77.200691223144474, -12.109862327575684 ], [ -77.201248168945312, -12.109862327575684 ], [ -77.201248168945312, -12.111249923705998 ], [ -77.201530456542969, -12.111248016357422 ], [ -77.201530456542969, -12.111528396606388 ], [ -77.201805114746094, -12.111528396606388 ], [ -77.201805114746094, -12.111805915832463 ], [ -77.202079772949219, -12.111804008483887 ], [ -77.202079772949219, -12.11208534240717 ], [ -77.201805114746094, -12.11208534240717 ], [ -77.201805114746094, -12.112360000610352 ], [ -77.201530456542969, -12.112360000610352 ], [ -77.201530456542969, -12.112915992736816 ], [ -77.202079772949219, -12.112915992736816 ], [ -77.202079772949219, -12.112360000610352 ], [ -77.202362060546875, -12.112360000610352 ], [ -77.202362060546875, -12.112638473510742 ], [ -77.20263671875, -12.112638473510742 ], [ -77.20263671875, -12.112915992736816 ], [ -77.203193664550724, -12.112915992736816 ], [ -77.203193664550724, -12.111804008483887 ], [ -77.203475952148381, -12.111805915832463 ], [ -77.203475952148381, -12.111528396606388 ], [ -77.204025268554631, -12.111528396606388 ], [ -77.204025268554631, -12.111248016357422 ], [ -77.204307556152287, -12.111248016357422 ], [ -77.204307556152287, -12.111528396606388 ], [ -77.204582214355469, -12.111528396606388 ], [ -77.204582214355469, -12.110972404479924 ], [ -77.206253051757812, -12.110972404479924 ], [ -77.206253051757812, -12.110693931579533 ], [ -77.206527709960881, -12.110693931579533 ], [ -77.206527709960881, -12.110416412353459 ], [ -77.207084655761662, -12.110416412353459 ], [ -77.207084655761662, -12.110137939453068 ], [ -77.2076416015625, -12.110137939453068 ], [ -77.2076416015625, -12.109862327575684 ], [ -77.207916259765625, -12.109862327575684 ], [ -77.207916259765625, -12.109306335449105 ], [ -77.208473205566406, -12.109306335449105 ], [ -77.208473205566406, -12.109027862548828 ], [ -77.208747863769531, -12.109027862548828 ], [ -77.208747863769531, -12.10847187042225 ], [ -77.209304809570312, -12.10847187042225 ], [ -77.209304809570312, -12.108194351196232 ], [ -77.209861755371037, -12.108194351196232 ], [ -77.209861755371037, -12.107915878295842 ], [ -77.210418701171818, -12.107915878295842 ], [ -77.210418701171818, -12.107640266418457 ], [ -77.210975646972656, -12.107640266418457 ], [ -77.210975646972656, -12.107359886169377 ], [ -77.211250305175781, -12.107359886169377 ], [ -77.211250305175781, -12.107084274291992 ], [ -77.211524963378906, -12.107084274291992 ], [ -77.211524963378906, -12.106805801391602 ], [ -77.211807250976562, -12.106805801391602 ], [ -77.211807250976562, -12.106249809265137 ], [ -77.212364196777344, -12.106249809265137 ], [ -77.212364196777344, -12.105972290038949 ], [ -77.212638854980355, -12.105972290038949 ], [ -77.212638854980355, -12.105693817138672 ], [ -77.212913513183537, -12.105693817138672 ], [ -77.212913513183537, -12.105416297912541 ], [ -77.214027404785156, -12.105416297912541 ], [ -77.214027404785156, -12.105693817138672 ], [ -77.214584350585938, -12.105693817138672 ], [ -77.214584350585938, -12.10402774810791 ], [ -77.215141296386719, -12.10402774810791 ], [ -77.215141296386719, -12.103471755981445 ], [ -77.215415954589844, -12.103471755981445 ], [ -77.215415954589844, -12.103191375732365 ], [ -77.215972900390568, -12.103194236755371 ], [ -77.215972900390568, -12.102917671203556 ], [ -77.216247558593693, -12.102917671203556 ], [ -77.216247558593693, -12.102638244628906 ], [ -77.216529846191349, -12.102640151977539 ], [ -77.216529846191349, -12.102361679077092 ], [ -77.216804504394474, -12.102361679077092 ], [ -77.216804504394474, -12.102081298828125 ], [ -77.217086791992131, -12.102084159851074 ], [ -77.217086791992131, -12.101528167724609 ], [ -77.217636108398438, -12.101528167724609 ], [ -77.217636108398438, -12.101249694824219 ], [ -77.217918395996094, -12.101249694824219 ], [ -77.217918395996094, -12.100971221923828 ], [ -77.218193054199219, -12.100971221923828 ], [ -77.218193054199219, -12.10069561004633 ], [ -77.218475341796875, -12.10069561004633 ], [ -77.218475341796875, -12.100415229797363 ], [ -77.21875, -12.100415229797363 ], [ -77.21875, -12.099859237670898 ], [ -77.219024658203068, -12.099862098693791 ], [ -77.219024658203068, -12.099582672119027 ], [ -77.219306945800724, -12.099582672119027 ], [ -77.219306945800724, -12.099303245544434 ], [ -77.219581604003849, -12.09930515289301 ], [ -77.219581604003849, -12.099026679992619 ], [ -77.219863891601506, -12.099026679992619 ], [ -77.219863891601506, -12.098749160766545 ], [ -77.220138549804631, -12.098749160766545 ], [ -77.220138549804631, -12.09847354888916 ], [ -77.220413208007812, -12.09847354888916 ], [ -77.220413208007812, -12.097916603088379 ], [ -77.220970153808594, -12.097916603088379 ], [ -77.220970153808594, -12.097637176513615 ], [ -77.22125244140625, -12.097639083862305 ], [ -77.22125244140625, -12.097360610961914 ], [ -77.2218017578125, -12.097360610961914 ], [ -77.221809387207031, -12.09708309173584 ], [ -77.222084045410156, -12.09708309173584 ], [ -77.222084045410156, -12.096804618835449 ], [ -77.222358703613224, -12.096804618835449 ], [ -77.222358703613224, -12.095971107482853 ], [ -77.222915649414006, -12.095971107482853 ], [ -77.222915649414006, -12.095694541931152 ], [ -77.223472595214844, -12.095694541931152 ], [ -77.223472595214844, -12.095415115356388 ], [ -77.224029541015625, -12.095415115356388 ], [ -77.224029541015625, -12.094861030578613 ], [ -77.22430419921875, -12.094861030578613 ], [ -77.22430419921875, -12.094582557678223 ], [ -77.224861145019531, -12.094582557678223 ], [ -77.224861145019531, -12.094305038452148 ], [ -77.225418090820199, -12.094305038452148 ], [ -77.225418090820199, -12.094026565551758 ], [ -77.225975036621037, -12.094026565551758 ], [ -77.225975036621037, -12.093749046325684 ], [ -77.226249694824162, -12.093749046325684 ], [ -77.226249694824162, -12.093473434448242 ], [ -77.227081298828125, -12.093473434448242 ], [ -77.227081298828125, -12.093749046325684 ], [ -77.227363586425781, -12.093749046325684 ], [ -77.227363586425781, -12.094026565551758 ], [ -77.227638244628906, -12.094026565551758 ], [ -77.227638244628906, -12.094305038452148 ], [ -77.227912902832031, -12.094305038452148 ], [ -77.227912902832031, -12.094026565551758 ], [ -77.228195190429688, -12.094026565551758 ], [ -77.228195190429688, -12.093749046325684 ], [ -77.227912902832031, -12.093749046325684 ], [ -77.227912902832031, -12.093473434448242 ], [ -77.228195190429688, -12.093473434448242 ], [ -77.228195190429688, -12.092917442321777 ], [ -77.228469848632699, -12.092917442321777 ], [ -77.228469848632699, -12.092638969421387 ], [ -77.229026794433537, -12.092638969421387 ], [ -77.229026794433537, -12.092361450195312 ], [ -77.228469848632699, -12.092361450195312 ], [ -77.228469848632699, -12.091805458068848 ], [ -77.229583740234318, -12.091805458068848 ], [ -77.229583740234318, -12.091526985168457 ], [ -77.2298583984375, -12.091528892517033 ], [ -77.2298583984375, -12.091251373290959 ], [ -77.230140686035156, -12.091251373290959 ], [ -77.230140686035156, -12.090970993041992 ], [ -77.230972290039062, -12.090972900390568 ], [ -77.230972290039062, -12.090695381164551 ], [ -77.231529235839844, -12.090695381164551 ], [ -77.231529235839844, -12.090139389038086 ], [ -77.233474731445312, -12.090139389038086 ], [ -77.233474731445312, -12.089860916137695 ], [ -77.234580993652344, -12.089860916137695 ], [ -77.234580993652344, -12.090139389038086 ], [ -77.235694885253849, -12.090139389038086 ], [ -77.235694885253849, -12.091528892517033 ], [ -77.236251831054688, -12.091526985168457 ], [ -77.236251831054688, -12.092917442321777 ], [ -77.236808776855469, -12.092917442321777 ], [ -77.236808776855469, -12.093194961547852 ], [ -77.237358093261719, -12.093193054199105 ], [ -77.237358093261719, -12.093473434448242 ], [ -77.237083435058594, -12.093473434448242 ], [ -77.237083435058594, -12.093749046325684 ], [ -77.237358093261719, -12.093749046325684 ], [ -77.237358093261719, -12.094026565551758 ], [ -77.237640380859375, -12.094026565551758 ], [ -77.237640380859375, -12.093473434448242 ], [ -77.238197326660043, -12.093473434448242 ], [ -77.238197326660043, -12.092638969421387 ], [ -77.2379150390625, -12.092638969421387 ], [ -77.2379150390625, -12.092917442321777 ], [ -77.237640380859375, -12.092917442321777 ], [ -77.237640380859375, -12.092638969421387 ], [ -77.237358093261719, -12.092638969421387 ], [ -77.237358093261719, -12.091526985168457 ], [ -77.237640380859375, -12.091528892517033 ], [ -77.237640380859375, -12.091251373290959 ], [ -77.2379150390625, -12.091251373290959 ], [ -77.2379150390625, -12.090970993041992 ], [ -77.238746643066349, -12.090972900390568 ], [ -77.238746643066349, -12.090695381164551 ], [ -77.239028930664006, -12.090695381164551 ], [ -77.239028930664006, -12.090416908264103 ], [ -77.238471984863224, -12.090416908264103 ], [ -77.238471984863224, -12.090139389038086 ], [ -77.238197326660043, -12.090139389038086 ], [ -77.238197326660043, -12.089860916137695 ], [ -77.2379150390625, -12.089860916137695 ], [ -77.2379150390625, -12.089027404785156 ], [ -77.237640380859375, -12.089027404785156 ], [ -77.237640380859375, -12.087917327880803 ], [ -77.237358093261719, -12.087917327880803 ], [ -77.237358093261719, -12.087360382080021 ], [ -77.238471984863224, -12.087360382080021 ], [ -77.238471984863224, -12.087084770202637 ], [ -77.238746643066349, -12.087084770202637 ], [ -77.238746643066349, -12.087360382080021 ], [ -77.239028930664006, -12.087360382080021 ], [ -77.239028930664006, -12.086528778076172 ], [ -77.239860534667969, -12.086528778076172 ], [ -77.239860534667969, -12.085971832275391 ], [ -77.240135192871094, -12.085971832275391 ], [ -77.240135192871094, -12.085415840148926 ], [ -77.239860534667969, -12.085415840148926 ], [ -77.239860534667969, -12.084859848022461 ], [ -77.240135192871094, -12.084859848022461 ], [ -77.240135192871094, -12.084582328796273 ], [ -77.24041748046875, -12.084582328796273 ], [ -77.24041748046875, -12.084859848022461 ], [ -77.240692138671875, -12.084859848022461 ], [ -77.240692138671875, -12.084582328796273 ], [ -77.241531372070256, -12.084582328796273 ], [ -77.241531372070256, -12.084305763244629 ], [ -77.241806030273381, -12.084305763244629 ], [ -77.241806030273381, -12.084028244018555 ], [ -77.241531372070256, -12.084028244018555 ], [ -77.241531372070256, -12.083193778991699 ], [ -77.242080688476506, -12.083193778991699 ], [ -77.242080688476506, -12.082916259765625 ], [ -77.242637634277344, -12.082918167114201 ], [ -77.242637634277344, -12.081804275512695 ], [ -77.242919921875, -12.081804275512695 ], [ -77.242919921875, -12.081248283386117 ], [ -77.243194580078125, -12.081250190734863 ], [ -77.243194580078125, -12.080971717834416 ], [ -77.24346923828125, -12.080971717834416 ], [ -77.24346923828125, -12.080694198608398 ], [ -77.243751525878906, -12.080694198608398 ], [ -77.243751525878906, -12.080415725708008 ], [ -77.244308471679688, -12.080415725708008 ], [ -77.244308471679688, -12.08014011383051 ], [ -77.244583129882756, -12.08014011383051 ], [ -77.244583129882756, -12.080415725708008 ], [ -77.244857788085881, -12.080415725708008 ], [ -77.244857788085881, -12.080694198608398 ], [ -77.245140075683537, -12.080694198608398 ], [ -77.245140075683537, -12.080971717834416 ], [ -77.245414733886662, -12.080971717834416 ], [ -77.245414733886662, -12.081250190734863 ], [ -77.245697021484318, -12.081250190734863 ], [ -77.245697021484318, -12.080971717834416 ], [ -77.2459716796875, -12.080971717834416 ], [ -77.2459716796875, -12.080694198608398 ], [ -77.245697021484318, -12.080694198608398 ], [ -77.245697021484318, -12.080415725708008 ], [ -77.2459716796875, -12.080415725708008 ], [ -77.2459716796875, -12.079859733581543 ], [ -77.246246337890625, -12.079859733581543 ], [ -77.246246337890625, -12.079584121704045 ], [ -77.245697021484318, -12.079584121704045 ], [ -77.245697021484318, -12.078749656677189 ], [ -77.246246337890625, -12.078749656677189 ], [ -77.246246337890625, -12.078470230102539 ], [ -77.246528625488281, -12.078470230102539 ], [ -77.246528625488281, -12.078749656677189 ], [ -77.247642517089844, -12.078749656677189 ], [ -77.247642517089844, -12.07763767242426 ], [ -77.247917175292912, -12.07763767242426 ], [ -77.247917175292912, -12.07791805267334 ], [ -77.248474121093693, -12.07791805267334 ], [ -77.248474121093693, -12.07763767242426 ], [ -77.248191833496037, -12.07763767242426 ], [ -77.248191833496037, -12.077360153198242 ], [ -77.247642517089844, -12.077362060546761 ], [ -77.247642517089844, -12.075971603393498 ], [ -77.247085571289062, -12.075971603393498 ], [ -77.247085571289062, -12.075694084167424 ], [ -77.247360229492188, -12.075694084167424 ], [ -77.247360229492188, -12.075415611267033 ], [ -77.247085571289062, -12.075415611267033 ], [ -77.247085571289062, -12.074305534362793 ], [ -77.246803283691406, -12.074305534362793 ], [ -77.246803283691406, -12.074028015136719 ], [ -77.246246337890625, -12.074028015136719 ], [ -77.246246337890625, -12.073748588562012 ], [ -77.246528625488281, -12.073748588562012 ], [ -77.246528625488281, -12.072915077209473 ], [ -77.246246337890625, -12.072917938232422 ], [ -77.246246337890625, -12.072640419006348 ], [ -77.246528625488281, -12.072640419006348 ], [ -77.246528625488281, -12.072359085083008 ], [ -77.246246337890625, -12.072359085083008 ], [ -77.246246337890625, -12.071805000305176 ], [ -77.2459716796875, -12.071805000305176 ], [ -77.2459716796875, -12.071526527404785 ], [ -77.246246337890625, -12.071526527404785 ], [ -77.246246337890625, -12.070973396301213 ], [ -77.246528625488281, -12.070973396301213 ], [ -77.246528625488281, -12.071249008178711 ], [ -77.247085571289062, -12.071249008178711 ], [ -77.247085571289062, -12.071526527404785 ], [ -77.247642517089844, -12.071526527404785 ], [ -77.247642517089844, -12.070973396301213 ], [ -77.247917175292912, -12.070973396301213 ], [ -77.247917175292912, -12.070693016052246 ], [ -77.248474121093693, -12.070693016052246 ], [ -77.248474121093693, -12.070137023925781 ], [ -77.248748779296818, -12.070137023925781 ], [ -77.248748779296818, -12.069581031799316 ], [ -77.249031066894531, -12.069581031799316 ], [ -77.249031066894531, -12.069026947021428 ], [ -77.249305725097656, -12.069026947021428 ], [ -77.249305725097656, -12.069581031799316 ], [ -77.249580383300781, -12.069581031799316 ], [ -77.249580383300781, -12.069026947021428 ], [ -77.249862670898438, -12.069026947021428 ], [ -77.249862670898438, -12.06847095489502 ], [ -77.249580383300781, -12.06847095489502 ], [ -77.249580383300781, -12.067916870117074 ], [ -77.249305725097656, -12.067916870117074 ], [ -77.249305725097656, -12.067639350891056 ], [ -77.249580383300781, -12.067639350891056 ], [ -77.249580383300781, -12.067360877990666 ], [ -77.250419616699219, -12.067360877990666 ], [ -77.250419616699219, -12.067083358764592 ], [ -77.250137329101562, -12.067083358764592 ], [ -77.250137329101562, -12.066248893737736 ], [ -77.250419616699219, -12.066248893737736 ], [ -77.250419616699219, -12.065973281860352 ], [ -77.250694274902344, -12.065973281860352 ], [ -77.250694274902344, -12.065417289733773 ], [ -77.250968933105412, -12.065417289733773 ], [ -77.250968933105412, -12.065138816833496 ], [ -77.251251220703068, -12.065138816833496 ], [ -77.251251220703068, -12.064861297607365 ], [ -77.250968933105412, -12.064861297607365 ], [ -77.250968933105412, -12.064582824706918 ], [ -77.250694274902344, -12.064582824706918 ], [ -77.250694274902344, -12.06402683258051 ], [ -77.250419616699219, -12.06402683258051 ], [ -77.250419616699219, -12.063472747802734 ], [ -77.250137329101562, -12.063472747802734 ], [ -77.250137329101562, -12.062636375427189 ], [ -77.249862670898438, -12.062639236450195 ], [ -77.249862670898438, -12.062360763549805 ], [ -77.249580383300781, -12.062360763549805 ], [ -77.249580383300781, -12.061250686645508 ], [ -77.249305725097656, -12.061250686645508 ], [ -77.249305725097656, -12.060973167419434 ], [ -77.248474121093693, -12.060973167419434 ], [ -77.248474121093693, -12.060694694519043 ], [ -77.248191833496037, -12.060694694519043 ], [ -77.248191833496037, -12.06041431427002 ], [ -77.247917175292912, -12.060417175292969 ], [ -77.247917175292912, -12.060137748718205 ], [ -77.247642517089844, -12.060137748718205 ], [ -77.247642517089844, -12.059860229492188 ], [ -77.247360229492188, -12.059860229492188 ], [ -77.247360229492188, -12.059584617614689 ], [ -77.246246337890625, -12.059584617614689 ], [ -77.246246337890625, -12.059304237365723 ], [ -77.2459716796875, -12.059304237365723 ], [ -77.2459716796875, -12.059028625488224 ], [ -77.245140075683537, -12.059028625488224 ], [ -77.245140075683537, -12.058748245239258 ], [ -77.244857788085881, -12.058748245239258 ] ] ], [ [ [ -77.110092163085881, -12.080366134643441 ], [ -77.110969543456974, -12.080415725708008 ], [ -77.110969543456974, -12.08014011383051 ], [ -77.111526489257756, -12.08014011383051 ], [ -77.111526489257756, -12.079859733581543 ], [ -77.112083435058594, -12.079859733581543 ], [ -77.112083435058594, -12.079584121704045 ], [ -77.112640380859375, -12.079584121704045 ], [ -77.112640380859375, -12.079305648803654 ], [ -77.113471984863281, -12.079305648803654 ], [ -77.113471984863281, -12.07902812957758 ], [ -77.114028930663949, -12.07902812957758 ], [ -77.114028930663949, -12.078749656677189 ], [ -77.114585876464787, -12.078749656677189 ], [ -77.114585876464787, -12.078470230102539 ], [ -77.11541748046875, -12.078472137451115 ], [ -77.11541748046875, -12.078193664550724 ], [ -77.115974426269531, -12.078193664550724 ], [ -77.115974426269531, -12.077916145324707 ], [ -77.116531372070312, -12.07791805267334 ], [ -77.116531372070312, -12.07763767242426 ], [ -77.117080688476449, -12.07763767242426 ], [ -77.117080688476449, -12.077360153198242 ], [ -77.117919921874943, -12.077362060546761 ], [ -77.117919921874943, -12.077083587646484 ], [ -77.11846923828125, -12.077083587646484 ], [ -77.11846923828125, -12.076804161071777 ], [ -77.119026184082031, -12.076806068420353 ], [ -77.119026184082031, -12.076527595519906 ], [ -77.119857788085938, -12.076527595519906 ], [ -77.119857788085938, -12.076250076293888 ], [ -77.120414733886662, -12.076250076293888 ], [ -77.120414733886662, -12.075971603393498 ], [ -77.120971679687443, -12.075971603393498 ], [ -77.120971679687443, -12.075694084167424 ], [ -77.121246337890568, -12.075694084167424 ], [ -77.121246337890568, -12.075415611267033 ], [ -77.121528625488224, -12.075415611267033 ], [ -77.121528625488224, -12.075694084167424 ], [ -77.121803283691406, -12.075694084167424 ], [ -77.121803283691406, -12.075415611267033 ], [ -77.122642517089844, -12.075415611267033 ], [ -77.122642517089844, -12.075137138366642 ], [ -77.123191833496094, -12.075139999389648 ], [ -77.123191833496094, -12.074861526489258 ], [ -77.123748779296818, -12.074861526489258 ], [ -77.123748779296818, -12.074581146240178 ], [ -77.124580383300724, -12.074584007263184 ], [ -77.124580383300724, -12.074305534362793 ], [ -77.125137329101562, -12.074305534362793 ], [ -77.125137329101562, -12.074028015136719 ], [ -77.125968933105469, -12.074028015136719 ], [ -77.125968933105469, -12.073748588562012 ], [ -77.12652587890625, -12.073748588562012 ], [ -77.12652587890625, -12.073471069335938 ], [ -77.127357482910099, -12.073471069335938 ], [ -77.127357482910099, -12.073192596435547 ], [ -77.127639770507756, -12.073192596435547 ], [ -77.127639770507756, -12.072915077209473 ], [ -77.128471374511719, -12.072917938232422 ], [ -77.128471374511719, -12.072640419006348 ], [ -77.129302978515625, -12.072640419006348 ], [ -77.129302978515625, -12.072359085083008 ], [ -77.129859924316293, -12.072360992431641 ], [ -77.129859924316293, -12.072083473205566 ], [ -77.130416870117131, -12.072083473205566 ], [ -77.130416870117131, -12.071805000305176 ], [ -77.130973815917912, -12.071805000305176 ], [ -77.130973815917912, -12.071526527404785 ], [ -77.131805419921875, -12.071526527404785 ], [ -77.131805419921875, -12.071249008178711 ], [ -77.132362365722656, -12.071249008178711 ], [ -77.132362365722656, -12.070973396301213 ], [ -77.133193969726506, -12.070973396301213 ], [ -77.133193969726506, -12.070693016052246 ], [ -77.134307861328068, -12.070693016052246 ], [ -77.134307861328068, -12.070417404174748 ], [ -77.135139465332031, -12.070417404174748 ], [ -77.135139465332031, -12.070137023925781 ], [ -77.135696411132812, -12.070138931274357 ], [ -77.135696411132812, -12.070018768310433 ], [ -77.135696411132812, -12.069861412048283 ], [ -77.136123657226506, -12.069861412048283 ], [ -77.136802673339787, -12.069861412048283 ], [ -77.136802673339787, -12.069613456725961 ], [ -77.138191223144531, -12.069582939147892 ], [ -77.138191223144531, -12.069305419921875 ], [ -77.139579772949162, -12.069305419921875 ], [ -77.139579772949162, -12.069026947021428 ], [ -77.140693664550781, -12.069026947021428 ], [ -77.140693664550781, -12.068751335143929 ], [ -77.142639160156136, -12.068751335143929 ], [ -77.142639160156136, -12.06847095489502 ], [ -77.144584655761719, -12.06847095489502 ], [ -77.144584655761719, -12.068195343017521 ], [ -77.146530151367131, -12.068195343017521 ], [ -77.146530151367131, -12.067916870117074 ], [ -77.148475646972656, -12.067916870117074 ], [ -77.148475646972656, -12.067639350891056 ], [ -77.149215698242131, -12.067639350891056 ], [ -77.150054931640568, -12.067639350891056 ], [ -77.154304504394531, -12.067639350891056 ], [ -77.154304504394531, -12.067916870117074 ], [ -77.156730651855412, -12.067916870117074 ], [ -77.157081604003906, -12.067916870117074 ], [ -77.157081604003906, -12.068195343017521 ], [ -77.157363891601562, -12.068195343017521 ], [ -77.157363891601562, -12.068346023559457 ], [ -77.157363891601562, -12.068751335143929 ], [ -77.157638549804688, -12.068751335143929 ], [ -77.157638549804688, -12.069026947021428 ], [ -77.157913208007812, -12.069026947021428 ], [ -77.157913208007812, -12.069581031799316 ], [ -77.158195495605469, -12.069581031799316 ], [ -77.158195495605469, -12.069861412048283 ], [ -77.15847015380848, -12.069861412048283 ], [ -77.15847015380848, -12.070138931274357 ], [ -77.158752441406193, -12.070137023925781 ], [ -77.158752441406193, -12.070693016052246 ], [ -77.159027099609318, -12.070693016052246 ], [ -77.159027099609318, -12.070973396301213 ], [ -77.159301757812443, -12.070973396301213 ], [ -77.159309387206974, -12.071249008178711 ], [ -77.159584045410099, -12.071249008178711 ], [ -77.159584045410099, -12.071526527404785 ], [ -77.159858703613281, -12.071526527404785 ], [ -77.159858703613281, -12.071805000305176 ], [ -77.160140991210938, -12.071805000305176 ], [ -77.160140991210938, -12.072083473205566 ], [ -77.160415649414062, -12.072083473205566 ], [ -77.160415649414062, -12.072360992431641 ], [ -77.160697937011719, -12.072359085083008 ], [ -77.160697937011719, -12.072915077209473 ], [ -77.160972595214844, -12.072915077209473 ], [ -77.160972595214844, -12.073471069335938 ], [ -77.161247253417969, -12.073471069335938 ], [ -77.161247253417969, -12.073748588562012 ], [ -77.161804199218693, -12.073748588562012 ], [ -77.161804199218693, -12.074028015136719 ], [ -77.162361145019474, -12.074028015136719 ], [ -77.162361145019474, -12.074305534362793 ], [ -77.162635803222599, -12.074305534362793 ], [ -77.162635803222599, -12.074584007263184 ], [ -77.163192749023438, -12.074581146240178 ], [ -77.163192749023438, -12.074861526489258 ], [ -77.164863586425781, -12.074861526489258 ], [ -77.164863586425781, -12.074581146240178 ], [ -77.166252136230469, -12.074584007263184 ], [ -77.166252136230469, -12.074305534362793 ], [ -77.167915344238281, -12.074305534362793 ], [ -77.167915344238281, -12.074584007263184 ], [ -77.168472290039006, -12.074581146240178 ], [ -77.168472290039006, -12.074861526489258 ], [ -77.169303894042969, -12.074861526489258 ], [ -77.169303894042969, -12.074581146240178 ], [ -77.169586181640625, -12.074584007263184 ], [ -77.169586181640625, -12.074305534362793 ], [ -77.16986083984375, -12.074305534362793 ], [ -77.16986083984375, -12.074028015136719 ], [ -77.170135498046875, -12.074028015136719 ], [ -77.170135498046875, -12.073748588562012 ], [ -77.170417785644531, -12.073748588562012 ], [ -77.170417785644531, -12.073471069335938 ], [ -77.170692443847656, -12.073471069335938 ], [ -77.170692443847656, -12.073288917541504 ], [ -77.170692443847656, -12.072915077209473 ], [ -77.170417785644531, -12.072917938232422 ], [ -77.170417785644531, -12.072511672973576 ], [ -77.170417785644531, -12.072359085083008 ], [ -77.170288085937443, -12.072360992431641 ], [ -77.16986083984375, -12.072360992431641 ], [ -77.16986083984375, -12.072083473205566 ], [ -77.169586181640625, -12.072083473205566 ], [ -77.169586181640625, -12.071805000305176 ], [ -77.169212341308537, -12.071805000305176 ], [ -77.168746948242131, -12.071805000305176 ], [ -77.168746948242131, -12.071526527404785 ], [ -77.168640136718693, -12.071526527404785 ], [ -77.168197631835824, -12.071526527404785 ], [ -77.168197631835824, -12.071249008178711 ], [ -77.168067932128849, -12.071249008178711 ], [ -77.167640686035156, -12.071249008178711 ], [ -77.167640686035156, -12.070973396301213 ], [ -77.167495727539006, -12.070973396301213 ], [ -77.167083740234375, -12.070973396301213 ], [ -77.167053222656136, -12.070756912231445 ], [ -77.166923522949162, -12.070693016052246 ], [ -77.16680908203125, -12.070693016052246 ], [ -77.16680908203125, -12.070417404174748 ], [ -77.166358947753849, -12.070417404174748 ], [ -77.166252136230469, -12.070417404174748 ], [ -77.166252136230469, -12.070137023925781 ], [ -77.165969848632756, -12.070138931274357 ], [ -77.165969848632756, -12.069861412048283 ], [ -77.164688110351562, -12.069861412048283 ], [ -77.164306640625, -12.069861412048283 ], [ -77.164306640625, -12.069745063781681 ], [ -77.164306640625, -12.069581031799316 ], [ -77.163841247558594, -12.069582939147892 ], [ -77.163475036621094, -12.069582939147892 ], [ -77.163475036621094, -12.069416999816895 ], [ -77.163475036621094, -12.069305419921875 ], [ -77.163223266601506, -12.069305419921875 ], [ -77.162918090820256, -12.069305419921875 ], [ -77.162918090820256, -12.069168090820312 ], [ -77.162918090820256, -12.069026947021428 ], [ -77.162605285644531, -12.069026947021428 ], [ -77.162361145019474, -12.069026947021428 ], [ -77.162361145019474, -12.0689182281493 ], [ -77.162361145019474, -12.068751335143929 ], [ -77.161979675292912, -12.068751335143929 ], [ -77.161804199218693, -12.068751335143929 ], [ -77.161804199218693, -12.06847095489502 ], [ -77.161361694335938, -12.06847095489502 ], [ -77.161247253417969, -12.06847095489502 ], [ -77.161247253417969, -12.068195343017521 ], [ -77.160888671875, -12.068195343017521 ], [ -77.160697937011719, -12.068195343017521 ], [ -77.160697937011719, -12.068049430847111 ], [ -77.160697937011719, -12.067916870117074 ], [ -77.1605224609375, -12.067916870117074 ], [ -77.160140991210938, -12.067916870117074 ], [ -77.160140991210938, -12.067639350891056 ], [ -77.159584045410099, -12.067639350891056 ], [ -77.159584045410099, -12.067360877990666 ], [ -77.159301757812443, -12.067360877990666 ], [ -77.159301757812443, -12.067083358764592 ], [ -77.159027099609318, -12.067083358764592 ], [ -77.159027099609318, -12.066794395446777 ], [ -77.159027099609318, -12.066527366638127 ], [ -77.158752441406193, -12.066527366638127 ], [ -77.158752441406193, -12.066248893737736 ], [ -77.15847015380848, -12.066248893737736 ], [ -77.15847015380848, -12.065973281860352 ], [ -77.157913208007812, -12.065973281860352 ], [ -77.157913208007812, -12.065694808959961 ], [ -77.157638549804688, -12.065694808959961 ], [ -77.157638549804688, -12.065417289733773 ], [ -77.157196044921818, -12.065417289733773 ], [ -77.157081604003906, -12.065417289733773 ], [ -77.157081604003906, -12.065138816833496 ], [ -77.156806945800781, -12.065138816833496 ], [ -77.156806945800781, -12.064861297607365 ], [ -77.156524658203125, -12.064861297607365 ], [ -77.156524658203125, -12.064582824706918 ], [ -77.15625, -12.064582824706918 ], [ -77.15625, -12.0643053054809 ], [ -77.155975341796818, -12.0643053054809 ], [ -77.155975341796818, -12.06402683258051 ], [ -77.155693054199162, -12.06402683258051 ], [ -77.155693054199162, -12.063751220703125 ], [ -77.15541839599598, -12.063751220703125 ], [ -77.15541839599598, -12.06319522857666 ], [ -77.155136108398438, -12.06319522857666 ], [ -77.155136108398438, -12.06291675567627 ], [ -77.154861450195312, -12.06291675567627 ], [ -77.154861450195312, -12.062636375427189 ], [ -77.153167724609375, -12.062639236450195 ], [ -77.152915954589787, -12.062639236450195 ], [ -77.152915954589787, -12.062467575073242 ], [ -77.152915954589787, -12.062360763549805 ], [ -77.152763366699219, -12.062360763549805 ], [ -77.152641296386662, -12.062360763549805 ], [ -77.152641296386662, -12.061806678771916 ], [ -77.152359008789006, -12.061806678771916 ], [ -77.152359008789006, -12.061250686645508 ], [ -77.152084350585938, -12.061250686645508 ], [ -77.152084350585938, -12.060694694519043 ], [ -77.152359008789006, -12.060694694519043 ], [ -77.152359008789006, -12.059860229492188 ], [ -77.152084350585938, -12.059860229492188 ], [ -77.152084350585938, -12.059304237365723 ], [ -77.151252746582031, -12.059304237365723 ], [ -77.151252746582031, -12.059028625488224 ], [ -77.150169372558537, -12.059028625488224 ], [ -77.149581909179631, -12.059028625488224 ], [ -77.149581909179631, -12.058859825134277 ], [ -77.149581909179631, -12.058471679687443 ], [ -77.149307250976506, -12.058471679687443 ], [ -77.149307250976506, -12.057915687560978 ], [ -77.149154663085938, -12.057915687560978 ], [ -77.149024963378849, -12.057915687560978 ], [ -77.149024963378849, -12.057359695434513 ], [ -77.149307250976506, -12.057359695434513 ], [ -77.149307250976506, -12.057082176208439 ], [ -77.149581909179631, -12.057082176208439 ], [ -77.149581909179631, -12.056805610656738 ], [ -77.149864196777287, -12.056805610656738 ], [ -77.149864196777287, -12.055750846862736 ], [ -77.149864196777287, -12.055416107177678 ], [ -77.150138854980412, -12.055416107177678 ], [ -77.150138854980412, -12.054583549499512 ], [ -77.149024963378849, -12.054583549499512 ], [ -77.149024963378849, -12.055972099304086 ], [ -77.148193359375, -12.055972099304086 ], [ -77.148193359375, -12.055693626403809 ], [ -77.147636413574219, -12.055693626403809 ], [ -77.147636413574219, -12.05546855926508 ], [ -77.147636413574219, -12.05513763427723 ], [ -77.147361755371094, -12.05513763427723 ], [ -77.147361755371094, -12.054997444152832 ], [ -77.147361755371094, -12.054306030273438 ], [ -77.147087097167912, -12.054306030273438 ], [ -77.147087097167912, -12.054027557373047 ], [ -77.146804809570256, -12.054027557373047 ], [ -77.146804809570256, -12.053750038146973 ], [ -77.146530151367131, -12.053750038146973 ], [ -77.146530151367131, -12.053471565246582 ], [ -77.146247863769474, -12.053471565246582 ], [ -77.146247863769474, -12.053194046020508 ], [ -77.145690917968636, -12.053194046020508 ], [ -77.145690917968636, -12.052915573120117 ], [ -77.145416259765625, -12.052915573120117 ], [ -77.145416259765625, -12.052638053893929 ], [ -77.1451416015625, -12.052639961242676 ], [ -77.1451416015625, -12.052362442016602 ], [ -77.145690917968636, -12.052362442016602 ], [ -77.145690917968636, -12.052082061767521 ], [ -77.146247863769474, -12.052083969116211 ], [ -77.146247863769474, -12.050138473510742 ], [ -77.146018981933594, -12.050138473510742 ], [ -77.144584655761719, -12.050138473510742 ], [ -77.144584655761719, -12.04930591583252 ], [ -77.145416259765625, -12.04930591583252 ], [ -77.145416259765625, -12.049028396606445 ], [ -77.145889282226562, -12.049028396606445 ], [ -77.146247863769474, -12.049028396606445 ], [ -77.146247863769474, -12.04847240447998 ], [ -77.145973205566349, -12.04847240447998 ], [ -77.145973205566349, -12.047636985778809 ], [ -77.145690917968636, -12.047639846801701 ], [ -77.145690917968636, -12.047362327575627 ], [ -77.145416259765625, -12.047362327575627 ], [ -77.145416259765625, -12.047080993652344 ], [ -77.1451416015625, -12.047083854675236 ], [ -77.1451416015625, -12.046966552734375 ], [ -77.1451416015625, -12.046806335449162 ], [ -77.144859313964844, -12.046806335449162 ], [ -77.144859313964844, -12.046249389648381 ], [ -77.1451416015625, -12.046249389648381 ], [ -77.1451416015625, -12.04597091674799 ], [ -77.145416259765625, -12.04597091674799 ], [ -77.145416259765625, -12.045693397521916 ], [ -77.145690917968636, -12.045693397521916 ], [ -77.145690917968636, -12.045417785644531 ], [ -77.145973205566349, -12.045417785644531 ], [ -77.145973205566349, -12.045139312744141 ], [ -77.146247863769474, -12.045139312744141 ], [ -77.146247863769474, -12.044304847717285 ], [ -77.145973205566349, -12.044304847717285 ], [ -77.145973205566349, -12.044027328491097 ], [ -77.145690917968636, -12.044027328491097 ], [ -77.145690917968636, -12.043471336364689 ], [ -77.145416259765625, -12.043471336364689 ], [ -77.145416259765625, -12.043194770812988 ], [ -77.1451416015625, -12.043194770812988 ], [ -77.1451416015625, -12.042917251586914 ], [ -77.144859313964844, -12.042917251586914 ], [ -77.144859313964844, -12.042361259460449 ], [ -77.144584655761719, -12.042361259460449 ], [ -77.144584655761719, -12.042917251586914 ], [ -77.144302368164062, -12.042917251586914 ], [ -77.144302368164062, -12.043194770812988 ], [ -77.144027709960938, -12.043194770812988 ], [ -77.144027709960938, -12.04374885559082 ], [ -77.143753051757756, -12.04374885559082 ], [ -77.143753051757756, -12.044027328491097 ], [ -77.143470764160099, -12.044027328491097 ], [ -77.143470764160099, -12.044304847717285 ], [ -77.143196105956974, -12.044304847717285 ], [ -77.143196105956974, -12.04486083984375 ], [ -77.142913818359318, -12.04486083984375 ], [ -77.142913818359318, -12.045139312744141 ], [ -77.142639160156136, -12.045139312744141 ], [ -77.142639160156136, -12.045417785644531 ], [ -77.141807556152344, -12.045417785644531 ], [ -77.141807556152344, -12.045139312744141 ], [ -77.141525268554688, -12.045139312744141 ], [ -77.141525268554688, -12.04486083984375 ], [ -77.141807556152344, -12.04486083984375 ], [ -77.141807556152344, -12.044304847717285 ], [ -77.141525268554688, -12.044304847717285 ], [ -77.141525268554688, -12.044027328491097 ], [ -77.141250610351562, -12.044027328491097 ], [ -77.141250610351562, -12.043194770812988 ], [ -77.140975952148438, -12.043194770812988 ], [ -77.140975952148438, -12.042638778686523 ], [ -77.141250610351562, -12.042638778686523 ], [ -77.141250610351562, -12.042082786560059 ], [ -77.141525268554688, -12.042082786560059 ], [ -77.141525268554688, -12.041526794433594 ], [ -77.141807556152344, -12.041526794433594 ], [ -77.141807556152344, -12.040970802307129 ], [ -77.142082214355469, -12.040970802307129 ], [ -77.142082214355469, -12.040693283080941 ], [ -77.142364501953125, -12.040693283080941 ], [ -77.142364501953125, -12.040139198303223 ], [ -77.142639160156136, -12.040139198303223 ], [ -77.142639160156136, -12.039583206176758 ], [ -77.142913818359318, -12.039583206176758 ], [ -77.142913818359318, -12.039304733276367 ], [ -77.143196105956974, -12.039304733276367 ], [ -77.143196105956974, -12.039029121398869 ], [ -77.143470764160099, -12.039029121398869 ], [ -77.143470764160099, -12.038748741149902 ], [ -77.144859313964844, -12.038748741149902 ], [ -77.144859313964844, -12.039029121398869 ], [ -77.145416259765625, -12.039029121398869 ], [ -77.145416259765625, -12.039304733276367 ], [ -77.145973205566349, -12.039304733276367 ], [ -77.145973205566349, -12.039583206176758 ], [ -77.146530151367131, -12.039583206176758 ], [ -77.146530151367131, -12.039860725402832 ], [ -77.146804809570256, -12.039860725402832 ], [ -77.146804809570256, -12.04041671752924 ], [ -77.147087097167912, -12.04041671752924 ], [ -77.147087097167912, -12.040695190429688 ], [ -77.148750305175781, -12.040695190429688 ], [ -77.148750305175781, -12.04041671752924 ], [ -77.149024963378849, -12.04041671752924 ], [ -77.149024963378849, -12.040139198303223 ], [ -77.149307250976506, -12.040139198303223 ], [ -77.149307250976506, -12.038748741149902 ], [ -77.149024963378849, -12.038748741149902 ], [ -77.149024963378849, -12.037915229797363 ], [ -77.148750305175781, -12.037917137145939 ], [ -77.148750305175781, -12.036526679992676 ], [ -77.148475646972656, -12.036526679992676 ], [ -77.148475646972656, -12.03569221496582 ], [ -77.147918701171875, -12.03569221496582 ], [ -77.147918701171875, -12.035139083862248 ], [ -77.148193359375, -12.035139083862248 ], [ -77.148193359375, -12.034860610961857 ], [ -77.147918701171875, -12.034860610961857 ], [ -77.147918701171875, -12.034583091735783 ], [ -77.148193359375, -12.034583091735783 ], [ -77.148193359375, -12.033470153808537 ], [ -77.148475646972656, -12.033473014831543 ], [ -77.148475646972656, -12.033194541931152 ], [ -77.148750305175781, -12.033194541931152 ], [ -77.148750305175781, -12.031528472900391 ], [ -77.149024963378849, -12.031528472900391 ], [ -77.149024963378849, -12.030971527099609 ], [ -77.148475646972656, -12.030971527099609 ], [ -77.148475646972656, -12.030415534973145 ], [ -77.148193359375, -12.030415534973145 ], [ -77.148193359375, -12.029862403869572 ], [ -77.147918701171875, -12.029862403869572 ], [ -77.147918701171875, -12.029306411743107 ], [ -77.147636413574219, -12.029306411743107 ], [ -77.147636413574219, -12.029026031494141 ], [ -77.147514343261719, -12.029026031494141 ], [ -77.147361755371094, -12.029027938842717 ], [ -77.147361755371094, -12.028555870056152 ], [ -77.147361755371094, -12.028194427490234 ], [ -77.147636413574219, -12.028194427490234 ], [ -77.147636413574219, -12.027084350585881 ], [ -77.147361755371094, -12.027084350585881 ], [ -77.147361755371094, -12.026528358459416 ], [ -77.146804809570256, -12.026528358459416 ], [ -77.146804809570256, -12.02569389343256 ], [ -77.146530151367131, -12.02569389343256 ], [ -77.146530151367131, -12.024862289428597 ], [ -77.146247863769474, -12.024862289428597 ], [ -77.146247863769474, -12.024306297302189 ], [ -77.145973205566349, -12.024306297302189 ], [ -77.145973205566349, -12.023750305175724 ], [ -77.145416259765625, -12.023750305175724 ], [ -77.145416259765625, -12.023471832275334 ], [ -77.1451416015625, -12.023471832275334 ], [ -77.1451416015625, -12.022640228271484 ], [ -77.144859313964844, -12.022640228271484 ], [ -77.144859313964844, -12.022081375122013 ], [ -77.144302368164062, -12.022081375122013 ], [ -77.144302368164062, -12.021528244018555 ], [ -77.144027709960938, -12.021528244018555 ], [ -77.144027709960938, -12.020972251891976 ], [ -77.143753051757756, -12.020972251891976 ], [ -77.143753051757756, -12.020695686340332 ], [ -77.143470764160099, -12.020695686340332 ], [ -77.143470764160099, -12.020139694213867 ], [ -77.143196105956974, -12.020139694213867 ], [ -77.143196105956974, -12.019859313964844 ], [ -77.142913818359318, -12.019859313964844 ], [ -77.142913818359318, -12.019303321838265 ], [ -77.142639160156136, -12.019305229187012 ], [ -77.142639160156136, -12.019026756286621 ], [ -77.142364501953125, -12.019026756286621 ], [ -77.142364501953125, -12.018473625183049 ], [ -77.142082214355469, -12.018473625183049 ], [ -77.142082214355469, -12.018193244934082 ], [ -77.141807556152344, -12.018193244934082 ], [ -77.141807556152344, -12.017916679382267 ], [ -77.141525268554688, -12.017916679382267 ], [ -77.141525268554688, -12.017639160156193 ], [ -77.141250610351562, -12.017639160156193 ], [ -77.141250610351562, -12.017083168029728 ], [ -77.140975952148438, -12.017083168029728 ], [ -77.140975952148438, -12.016804695129338 ], [ -77.140693664550781, -12.016804695129338 ], [ -77.140693664550781, -12.015138626098633 ], [ -77.140975952148438, -12.015138626098633 ], [ -77.140975952148438, -12.014305114746037 ], [ -77.140693664550781, -12.014305114746037 ], [ -77.140693664550781, -12.013749122619572 ], [ -77.140419006347599, -12.013749122619572 ], [ -77.140419006347599, -12.013193130493107 ], [ -77.140136718749943, -12.013193130493107 ], [ -77.140136718749943, -12.012639045715332 ], [ -77.139862060546818, -12.012639045715332 ], [ -77.139862060546818, -12.012083053588754 ], [ -77.139579772949162, -12.012083053588754 ], [ -77.139579772949162, -12.011527061462346 ], [ -77.139305114746094, -12.011527061462346 ], [ -77.139305114746094, -12.010416984558105 ], [ -77.139030456542969, -12.010416984558105 ], [ -77.139030456542969, -12.009583473205566 ], [ -77.138748168945312, -12.009583473205566 ], [ -77.138748168945312, -12.008749008178711 ], [ -77.138473510742188, -12.008749008178711 ], [ -77.138473510742188, -12.007638931274414 ], [ -77.138191223144531, -12.007638931274414 ], [ -77.138191223144531, -12.006804466247559 ], [ -77.137916564941406, -12.006804466247559 ], [ -77.137916564941406, -12.005970001220703 ], [ -77.137641906738281, -12.005972862243596 ], [ -77.137641906738281, -12.004582405090275 ], [ -77.137359619140568, -12.004582405090275 ], [ -77.137359619140568, -12.002916336059513 ], [ -77.137084960937443, -12.002916336059513 ], [ -77.137084960937443, -12.001250267028809 ], [ -77.137359619140568, -12.001250267028809 ], [ -77.137359619140568, -12.000971794128418 ], [ -77.137084960937443, -12.000971794128418 ], [ -77.137084960937443, -12.000694274902344 ], [ -77.136802673339787, -12.000694274902344 ], [ -77.136802673339787, -12.000138282775765 ], [ -77.136528015136662, -12.000140190124512 ], [ -77.136528015136662, -11.999859809875488 ], [ -77.136528015136662, -11.999582290649357 ], [ -77.136253356933594, -11.999584197998047 ], [ -77.136253356933594, -11.999028205871582 ], [ -77.135971069335938, -11.999028205871582 ], [ -77.135971069335938, -11.998193740844727 ], [ -77.135696411132812, -11.998193740844727 ], [ -77.135696411132812, -11.995694160461426 ], [ -77.135414123535156, -11.995694160461426 ], [ -77.135414123535156, -11.992639541625977 ], [ -77.135139465332031, -11.992639541625977 ], [ -77.135139465332031, -11.991249084472656 ], [ -77.134864807128906, -11.991249084472656 ], [ -77.134864807128906, -11.989581108093205 ], [ -77.13458251953125, -11.989583015441895 ], [ -77.13458251953125, -11.988195419311523 ], [ -77.134307861328068, -11.988195419311523 ], [ -77.134307861328068, -11.986804962158203 ], [ -77.134025573730412, -11.986804962158203 ], [ -77.134025573730412, -11.985138893127385 ], [ -77.133750915527287, -11.985138893127385 ], [ -77.133750915527287, -11.983472824096566 ], [ -77.133468627929631, -11.983472824096566 ], [ -77.133468627929631, -11.981250762939453 ], [ -77.133193969726506, -11.981250762939453 ], [ -77.133193969726506, -11.979028701782227 ], [ -77.132919311523438, -11.979028701782227 ], [ -77.132919311523438, -11.976805686950627 ], [ -77.133193969726506, -11.976805686950627 ], [ -77.133193969726506, -11.972638130187931 ], [ -77.133468627929631, -11.972638130187931 ], [ -77.133468627929631, -11.968194007873535 ], [ -77.133750915527287, -11.968194007873535 ], [ -77.133750915527287, -11.965970993041992 ], [ -77.134025573730412, -11.965970993041992 ], [ -77.134025573730412, -11.963748931884709 ], [ -77.133750915527287, -11.963748931884709 ], [ -77.133750915527287, -11.962751388549748 ], [ -77.133750915527287, -11.962361335754338 ], [ -77.134025573730412, -11.962361335754338 ], [ -77.134025573730412, -11.96208286285389 ], [ -77.134307861328068, -11.96208286285389 ], [ -77.134307861328068, -11.961526870727482 ], [ -77.13458251953125, -11.961526870727482 ], [ -77.13458251953125, -11.961251258850098 ], [ -77.134864807128906, -11.961251258850098 ], [ -77.134864807128906, -11.958473205566406 ], [ -77.135139465332031, -11.958473205566406 ], [ -77.135139465332031, -11.956805229187012 ], [ -77.135414123535156, -11.956805229187012 ], [ -77.135414123535156, -11.955416679382324 ], [ -77.135696411132812, -11.955416679382324 ], [ -77.135696411132812, -11.953750610351506 ], [ -77.135971069335938, -11.953750610351506 ], [ -77.135971069335938, -11.95142555236805 ], [ -77.135971069335938, -11.950971603393555 ], [ -77.136253356933594, -11.950971603393555 ], [ -77.136253356933594, -11.949237823486328 ], [ -77.136253356933594, -11.948470115661564 ], [ -77.136528015136662, -11.948470115661564 ], [ -77.136528015136662, -11.947916030883789 ], [ -77.136802673339787, -11.947916030883789 ], [ -77.136802673339787, -11.947084426879883 ], [ -77.137084960937443, -11.947084426879883 ], [ -77.137084960937443, -11.945972442626953 ], [ -77.137359619140568, -11.945972442626953 ], [ -77.137359619140568, -11.944862365722599 ], [ -77.137641906738281, -11.944862365722599 ], [ -77.137641906738281, -11.943750381469727 ], [ -77.137916564941406, -11.943750381469727 ], [ -77.137916564941406, -11.942640304565373 ], [ -77.138191223144531, -11.942638397216797 ], [ -77.138191223144531, -11.941528320312443 ], [ -77.138473510742188, -11.941528320312443 ], [ -77.138473510742188, -11.940415382385197 ], [ -77.138748168945312, -11.940415382385197 ], [ -77.138748168945312, -11.939306259155217 ], [ -77.139030456542969, -11.939306259155217 ], [ -77.139030456542969, -11.93708324432373 ], [ -77.139305114746094, -11.93708324432373 ], [ -77.139305114746094, -11.934303283691349 ], [ -77.139579772949162, -11.934305191040039 ], [ -77.139579772949162, -11.932511329650822 ], [ -77.139579772949162, -11.931527137756348 ], [ -77.139862060546818, -11.931527137756348 ], [ -77.139862060546818, -11.929305076599064 ], [ -77.140136718749943, -11.929305076599064 ], [ -77.140136718749943, -11.928473472595215 ], [ -77.140419006347599, -11.928473472595215 ], [ -77.140419006347599, -11.927639007568359 ], [ -77.140693664550781, -11.927639007568359 ], [ -77.140693664550781, -11.926526069641113 ], [ -77.140975952148438, -11.926528930664062 ], [ -77.140975952148438, -11.925695419311523 ], [ -77.141250610351562, -11.925695419311523 ], [ -77.141250610351562, -11.924581527709961 ], [ -77.141525268554688, -11.924581527709961 ], [ -77.141525268554688, -11.923748016357422 ], [ -77.141807556152344, -11.923749923705998 ], [ -77.141807556152344, -11.922916412353516 ], [ -77.142082214355469, -11.922916412353516 ], [ -77.142082214355469, -11.922336578369141 ], [ -77.142082214355469, -11.921806335449162 ], [ -77.142364501953125, -11.921806335449162 ], [ -77.142364501953125, -11.920971870422306 ], [ -77.142639160156136, -11.920971870422306 ], [ -77.142639160156136, -11.919859886169377 ], [ -77.142913818359318, -11.919859886169377 ], [ -77.142913818359318, -11.919028282165414 ], [ -77.143196105956974, -11.919028282165414 ], [ -77.143196105956974, -11.918472290039006 ], [ -77.143470764160099, -11.918472290039006 ], [ -77.143470764160099, -11.91763782501215 ], [ -77.143753051757756, -11.91763782501215 ], [ -77.143753051757756, -11.917083740234375 ], [ -77.144027709960938, -11.917083740234375 ], [ -77.144027709960938, -11.916250228881836 ], [ -77.144302368164062, -11.916250228881836 ], [ -77.144302368164062, -11.915694236755371 ], [ -77.144584655761719, -11.915694236755371 ], [ -77.144584655761719, -11.914861679077148 ], [ -77.144859313964844, -11.914861679077148 ], [ -77.144859313964844, -11.914305686950684 ], [ -77.1451416015625, -11.914305686950684 ], [ -77.1451416015625, -11.913472175598145 ], [ -77.145416259765625, -11.913472175598145 ], [ -77.145416259765625, -11.912915229797363 ], [ -77.145690917968636, -11.912915229797363 ], [ -77.145690917968636, -11.9120836257934 ], [ -77.145973205566349, -11.9120836257934 ], [ -77.145973205566349, -11.911249160766545 ], [ -77.146247863769474, -11.911249160766545 ], [ -77.146247863769474, -11.910416603088379 ], [ -77.146530151367131, -11.910416603088379 ], [ -77.146530151367131, -11.909860610961914 ], [ -77.146804809570256, -11.909860610961914 ], [ -77.146804809570256, -11.909618377685547 ], [ -77.146804809570256, -11.909027099609318 ], [ -77.147087097167912, -11.909027099609318 ], [ -77.147087097167912, -11.908194541931152 ], [ -77.147361755371094, -11.908194541931152 ], [ -77.147361755371094, -11.907361030578613 ], [ -77.147636413574219, -11.907361030578613 ], [ -77.147636413574219, -11.905693054199162 ], [ -77.147918701171875, -11.905693054199162 ], [ -77.147918701171875, -11.904026985168457 ], [ -77.148193359375, -11.904026985168457 ], [ -77.148193359375, -11.903195381164551 ], [ -77.148475646972656, -11.903195381164551 ], [ -77.148475646972656, -11.902360916137695 ], [ -77.148750305175781, -11.902360916137695 ], [ -77.148750305175781, -11.901806831359806 ], [ -77.149024963378849, -11.901806831359806 ], [ -77.149024963378849, -11.900973320007267 ], [ -77.149307250976506, -11.900973320007267 ], [ -77.149307250976506, -11.900138854980412 ], [ -77.149581909179631, -11.900138854980412 ], [ -77.149581909179631, -11.899304389953556 ], [ -77.149864196777287, -11.899304389953556 ], [ -77.149864196777287, -11.898751258850041 ], [ -77.150138854980412, -11.898751258850041 ], [ -77.150138854980412, -11.898194313049316 ], [ -77.150413513183594, -11.898194313049316 ], [ -77.150413513183594, -11.897359848022461 ], [ -77.15069580078125, -11.897359848022461 ], [ -77.15069580078125, -11.896805763244629 ], [ -77.150970458984375, -11.896805763244629 ], [ -77.150970458984375, -11.896249771118164 ], [ -77.151252746582031, -11.896249771118164 ], [ -77.151252746582031, -11.895693778991699 ], [ -77.151527404785156, -11.895693778991699 ], [ -77.151527404785156, -11.89486026763916 ], [ -77.151802062988281, -11.89486026763916 ], [ -77.151802062988281, -11.894304275512582 ], [ -77.152084350585938, -11.894304275512582 ], [ -77.152084350585938, -11.893748283386174 ], [ -77.152359008789006, -11.893750190734863 ], [ -77.152359008789006, -11.893471717834473 ], [ -77.152641296386662, -11.893471717834473 ], [ -77.152641296386662, -11.893194198608398 ], [ -77.152915954589787, -11.893194198608398 ], [ -77.152915954589787, -11.89264011383051 ], [ -77.153190612792912, -11.89264011383051 ], [ -77.153198242187443, -11.892084121704045 ], [ -77.153472900390625, -11.892084121704045 ], [ -77.153472900390625, -11.891249656677189 ], [ -77.15374755859375, -11.891249656677189 ], [ -77.15374755859375, -11.890693664550724 ], [ -77.154029846191406, -11.890693664550724 ], [ -77.154029846191406, -11.889860153198242 ], [ -77.154304504394531, -11.889860153198242 ], [ -77.154304504394531, -11.888750076293888 ], [ -77.154586791992188, -11.888750076293888 ], [ -77.154586791992188, -11.887638092040959 ], [ -77.154861450195312, -11.887638092040959 ], [ -77.154861450195312, -11.886528015136605 ], [ -77.155136108398438, -11.886528015136605 ], [ -77.155136108398438, -11.884305000305176 ], [ -77.15541839599598, -11.884305000305176 ], [ -77.15541839599598, -11.882081031799316 ], [ -77.155693054199162, -11.882082939147892 ], [ -77.155693054199162, -11.881805419921875 ], [ -77.155975341796818, -11.881805419921875 ], [ -77.155975341796818, -11.880416870117131 ], [ -77.15625, -11.880416870117131 ], [ -77.15625, -11.879860877990666 ], [ -77.156524658203125, -11.879860877990666 ], [ -77.156524658203125, -11.879304885864201 ], [ -77.156806945800781, -11.879304885864201 ], [ -77.156806945800781, -11.878748893737736 ], [ -77.157081604003906, -11.878748893737736 ], [ -77.157081604003906, -11.877638816833382 ], [ -77.157363891601562, -11.877638816833382 ], [ -77.157363891601562, -11.8768053054809 ], [ -77.157638549804688, -11.8768053054809 ], [ -77.157638549804688, -11.876251220703125 ], [ -77.157913208007812, -11.876251220703125 ], [ -77.157913208007812, -11.87541675567627 ], [ -77.158195495605469, -11.87541675567627 ], [ -77.158195495605469, -11.874860763549805 ], [ -77.15847015380848, -11.874860763549805 ], [ -77.15847015380848, -11.874027252197209 ], [ -77.158752441406193, -11.874029159545898 ], [ -77.158752441406193, -11.873194694519043 ], [ -77.159027099609318, -11.873194694519043 ], [ -77.159027099609318, -11.872638702392578 ], [ -77.159301757812443, -11.872638702392578 ], [ -77.159301757812443, -11.871804237365723 ], [ -77.159584045410099, -11.871804237365723 ], [ -77.159584045410099, -11.871248245239258 ], [ -77.159858703613281, -11.871251106262207 ], [ -77.159858703613281, -11.870694160461369 ], [ -77.160140991210938, -11.870694160461369 ], [ -77.160140991210938, -11.870138168334904 ], [ -77.160415649414062, -11.870138168334904 ], [ -77.160415649414062, -11.869582176208496 ], [ -77.160697937011719, -11.869582176208496 ], [ -77.160697937011719, -11.869026184082031 ], [ -77.160972595214844, -11.869026184082031 ], [ -77.160972595214844, -11.868470191955566 ], [ -77.161247253417969, -11.868470191955566 ], [ -77.161247253417969, -11.867916107177678 ], [ -77.161529541015625, -11.867916107177678 ], [ -77.161529541015625, -11.867360115051213 ], [ -77.161804199218693, -11.867360115051213 ], [ -77.161804199218693, -11.866527557373047 ], [ -77.162086486816349, -11.866527557373047 ], [ -77.162086486816349, -11.866250038146973 ], [ -77.162361145019474, -11.866250038146973 ], [ -77.162361145019474, -11.865694046020394 ], [ -77.162635803222599, -11.865694046020394 ], [ -77.162635803222599, -11.865138053893986 ], [ -77.162918090820256, -11.865138053893986 ], [ -77.162918090820256, -11.864582061767521 ], [ -77.163192749023438, -11.864582061767521 ], [ -77.163192749023438, -11.864027976989746 ], [ -77.163475036621094, -11.864027976989746 ], [ -77.163475036621094, -11.863471984863281 ], [ -77.163749694824219, -11.863471984863281 ], [ -77.163749694824219, -11.863194465637207 ], [ -77.164024353027344, -11.863194465637207 ], [ -77.164024353027344, -11.862638473510629 ], [ -77.164306640625, -11.862638473510629 ], [ -77.164306640625, -11.86208438873291 ], [ -77.164581298828125, -11.86208438873291 ], [ -77.164581298828125, -11.86180591583252 ], [ -77.164863586425781, -11.86180591583252 ], [ -77.164863586425781, -11.861249923706055 ], [ -77.165138244628849, -11.861249923706055 ], [ -77.165138244628849, -11.86097240447998 ], [ -77.165412902831974, -11.86097240447998 ], [ -77.165412902831974, -11.860416412353516 ], [ -77.165695190429631, -11.860416412353516 ], [ -77.165695190429631, -11.859862327575627 ], [ -77.165969848632756, -11.859862327575627 ], [ -77.165969848632756, -11.859580993652344 ], [ -77.166252136230469, -11.859583854675236 ], [ -77.166252136230469, -11.859027862548771 ], [ -77.166526794433594, -11.859027862548771 ], [ -77.166526794433594, -11.85847091674799 ], [ -77.16680908203125, -11.85847091674799 ], [ -77.16680908203125, -11.858193397521916 ], [ -77.167083740234375, -11.858193397521916 ], [ -77.167083740234375, -11.857917785644418 ], [ -77.1673583984375, -11.857917785644418 ], [ -77.1673583984375, -11.857083320617562 ], [ -77.167640686035156, -11.857083320617562 ], [ -77.167640686035156, -11.856804847717285 ], [ -77.167915344238281, -11.856804847717285 ], [ -77.167915344238281, -11.856248855590707 ], [ -77.168197631835824, -11.856248855590707 ], [ -77.168197631835824, -11.855971336364689 ], [ -77.168472290039006, -11.855971336364689 ], [ -77.168472290039006, -11.855417251586914 ], [ -77.168746948242131, -11.855417251586914 ], [ -77.168746948242131, -11.854861259460449 ], [ -77.169029235839787, -11.854861259460449 ], [ -77.169029235839787, -11.854582786560059 ], [ -77.169303894042969, -11.854582786560059 ], [ -77.169303894042969, -11.854026794433594 ], [ -77.169586181640625, -11.854026794433594 ], [ -77.169586181640625, -11.853470802307129 ], [ -77.16986083984375, -11.853470802307129 ], [ -77.16986083984375, -11.853193283080998 ], [ -77.170135498046875, -11.853193283080998 ], [ -77.170135498046875, -11.852639198303223 ], [ -77.170417785644531, -11.852639198303223 ], [ -77.170417785644531, -11.852083206176758 ], [ -77.170692443847656, -11.852083206176758 ], [ -77.170692443847656, -11.851804733276367 ], [ -77.170974731445312, -11.851804733276367 ], [ -77.170974731445312, -11.851248741149902 ], [ -77.171249389648324, -11.851248741149902 ], [ -77.171249389648324, -11.850973129272404 ], [ -77.171524047851506, -11.850973129272404 ], [ -77.171524047851506, -11.850415229797363 ], [ -77.171806335449162, -11.850415229797363 ], [ -77.171806335449162, -11.849859237670785 ], [ -77.172080993652287, -11.849861145019531 ], [ -77.172080993652287, -11.849582672119141 ], [ -77.172363281249943, -11.849582672119141 ], [ -77.172363281249943, -11.849026679992676 ], [ -77.172637939453125, -11.849026679992676 ], [ -77.172637939453125, -11.848472595214787 ], [ -77.172920227050781, -11.848472595214787 ], [ -77.172920227050781, -11.848193168640137 ], [ -77.173469543457031, -11.848195075988713 ], [ -77.173469543457031, -11.847916603088322 ], [ -77.173751831054688, -11.847916603088322 ], [ -77.173751831054688, -11.847639083862248 ], [ -77.174026489257812, -11.847639083862248 ], [ -77.174026489257812, -11.847083091735783 ], [ -77.174583435058537, -11.847083091735783 ], [ -77.174583435058537, -11.846526145935002 ], [ -77.175140380859318, -11.846529006958008 ], [ -77.175140380859318, -11.846250534057617 ], [ -77.175415039062443, -11.846250534057617 ], [ -77.175415039062443, -11.845970153808537 ], [ -77.175971984863281, -11.845973014831429 ], [ -77.175971984863281, -11.845694541931152 ], [ -77.178192138671818, -11.845694541931152 ], [ -77.178192138671818, -11.845417022705021 ], [ -77.180137634277344, -11.845417022705021 ], [ -77.180137634277344, -11.845694541931152 ], [ -77.181526184081974, -11.845694541931152 ], [ -77.181526184081974, -11.845973014831429 ], [ -77.182083129882812, -11.845970153808537 ], [ -77.182083129882812, -11.846250534057617 ], [ -77.182357788085938, -11.846250534057617 ], [ -77.182357788085938, -11.846529006958008 ], [ -77.182640075683594, -11.846526145935002 ], [ -77.182640075683594, -11.846804618835392 ], [ -77.182914733886719, -11.846804618835392 ], [ -77.182914733886719, -11.847083091735783 ], [ -77.183197021484375, -11.847083091735783 ], [ -77.183197021484375, -11.847360610961857 ], [ -77.183746337890625, -11.847360610961857 ], [ -77.183746337890625, -11.847639083862248 ], [ -77.184028625488168, -11.847639083862248 ], [ -77.184028625488168, -11.847916603088322 ], [ -77.184860229492131, -11.847916603088322 ], [ -77.184860229492131, -11.847360610961857 ], [ -77.185142517089787, -11.847360610961857 ], [ -77.185142517089787, -11.845970153808537 ], [ -77.185417175292969, -11.845970153808537 ], [ -77.185417175292969, -11.845417022705021 ], [ -77.185142517089787, -11.845417022705021 ], [ -77.185142517089787, -11.844860076904297 ], [ -77.184860229492131, -11.844860076904297 ], [ -77.184860229492131, -11.84374809265131 ], [ -77.184585571289006, -11.84374809265131 ], [ -77.184585571289006, -11.843192100524846 ], [ -77.184303283691349, -11.843192100524846 ], [ -77.184303283691349, -11.84263801574707 ], [ -77.184028625488168, -11.84263801574707 ], [ -77.184028625488168, -11.842082023620605 ], [ -77.183746337890625, -11.842082023620605 ], [ -77.183746337890625, -11.841526031494141 ], [ -77.184028625488168, -11.841526031494141 ], [ -77.184028625488168, -11.840970039367562 ], [ -77.184303283691349, -11.840971946716309 ], [ -77.184303283691349, -11.840694427490234 ], [ -77.186805725097656, -11.840694427490234 ], [ -77.186805725097656, -11.839584350585881 ], [ -77.187080383300668, -11.839584350585881 ], [ -77.187080383300668, -11.838749885559025 ], [ -77.186805725097656, -11.838749885559025 ], [ -77.186805725097656, -11.83819389343256 ], [ -77.186531066894531, -11.83819389343256 ], [ -77.186531066894531, -11.837637901306152 ], [ -77.186248779296875, -11.837637901306152 ], [ -77.186248779296875, -11.837083816528207 ], [ -77.18597412109375, -11.837081909179688 ], [ -77.18597412109375, -11.836527824401799 ], [ -77.185691833496094, -11.836527824401799 ], [ -77.185691833496094, -11.836250305175724 ], [ -77.185417175292969, -11.836250305175724 ], [ -77.185417175292969, -11.83569431304926 ], [ -77.185691833496094, -11.83569431304926 ], [ -77.185691833496094, -11.835140228271484 ], [ -77.18597412109375, -11.835140228271484 ], [ -77.18597412109375, -11.834861755371094 ], [ -77.186248779296875, -11.834861755371094 ], [ -77.186248779296875, -11.833472251892033 ], [ -77.186531066894531, -11.833472251892033 ], [ -77.186531066894531, -11.833195686340332 ], [ -77.186805725097656, -11.833195686340332 ], [ -77.186805725097656, -11.832083702087402 ], [ -77.187080383300668, -11.832083702087402 ], [ -77.187080383300668, -11.831526756286621 ], [ -77.187362670898381, -11.831526756286621 ], [ -77.187362670898381, -11.831249237060547 ], [ -77.187637329101506, -11.831249237060547 ], [ -77.187637329101506, -11.830693244934082 ], [ -77.188194274902287, -11.830693244934082 ], [ -77.188194274902287, -11.830417633056584 ], [ -77.188468933105469, -11.830417633056584 ], [ -77.188468933105469, -11.830140113830566 ], [ -77.188751220703125, -11.830140113830566 ], [ -77.188751220703125, -11.829860687255803 ], [ -77.189132690429688, -11.829860687255803 ], [ -77.187622070312443, -11.828149795532227 ], [ -77.185409545898438, -11.826540946960449 ], [ -77.181694030761719, -11.82738208770752 ], [ -77.180328369140625, -11.827439308166504 ], [ -77.177917480468693, -11.826967239379826 ], [ -77.173545837402344, -11.825447082519531 ], [ -77.171905517578068, -11.825652122497502 ], [ -77.167312622070256, -11.826959609985295 ], [ -77.164024353027344, -11.826823234558105 ], [ -77.162750244140568, -11.82634162902832 ], [ -77.157630920410156, -11.823481559753418 ], [ -77.148635864257756, -11.820667266845703 ], [ -77.143081665039006, -11.820284843444767 ], [ -77.140922546386605, -11.820629119872933 ], [ -77.138282775878906, -11.821351051330566 ], [ -77.134185791015625, -11.821597099304199 ], [ -77.132835388183594, -11.82148265838623 ], [ -77.130455017089844, -11.820821762084961 ], [ -77.1285400390625, -11.820729255676213 ], [ -77.12652587890625, -11.819894790649357 ], [ -77.126029968261662, -11.820111274719238 ], [ -77.1221923828125, -11.826001167297363 ], [ -77.117088317871094, -11.831098556518555 ], [ -77.116142272949219, -11.832398414611816 ], [ -77.115066528320256, -11.836708068847656 ], [ -77.114242553710938, -11.838413238525391 ], [ -77.113746643066406, -11.84050464630127 ], [ -77.112518310546875, -11.843641281127873 ], [ -77.112655639648438, -11.845391273498535 ], [ -77.113327026367131, -11.847450256347656 ], [ -77.1134033203125, -11.848985671997013 ], [ -77.113189697265625, -11.849728584289494 ], [ -77.110809326171875, -11.85193920135498 ], [ -77.110145568847656, -11.854549407958928 ], [ -77.109542846679631, -11.854886054992619 ], [ -77.108314514160156, -11.854977607726994 ], [ -77.107597351074219, -11.855372428894043 ], [ -77.106483459472599, -11.85655498504633 ], [ -77.106040954589844, -11.857824325561523 ], [ -77.105545043945312, -11.858298301696777 ], [ -77.104675292968693, -11.85870170593256 ], [ -77.10357666015625, -11.858772277831974 ], [ -77.101028442382756, -11.857835769653263 ], [ -77.100250244140625, -11.85805702209467 ], [ -77.099822998046875, -11.860861778259277 ], [ -77.099777221679688, -11.862743377685547 ], [ -77.100746154785099, -11.865131378173771 ], [ -77.100791931152344, -11.866305351257324 ], [ -77.100570678710881, -11.867255210876465 ], [ -77.099647521972656, -11.86904239654541 ], [ -77.098320007324219, -11.870941162109375 ], [ -77.095748901367188, -11.87354564666748 ], [ -77.094123840332031, -11.874775886535645 ], [ -77.093650817871094, -11.875446319580021 ], [ -77.093589782714787, -11.879343986511174 ], [ -77.092178344726506, -11.885239601135254 ], [ -77.092247009277344, -11.887126922607422 ], [ -77.092720031738281, -11.888950347900391 ], [ -77.092628479003906, -11.890974044799805 ], [ -77.092391967773438, -11.891744613647461 ], [ -77.090721130371094, -11.89467811584467 ], [ -77.090652465820256, -11.896964073181096 ], [ -77.089874267578068, -11.899951934814396 ], [ -77.089950561523438, -11.901045799255371 ], [ -77.092018127441406, -11.90587329864502 ], [ -77.092391967773438, -11.912078857421818 ], [ -77.092887878417969, -11.91462516784668 ], [ -77.093872070312443, -11.916416168212891 ], [ -77.096237182617188, -11.918848037719727 ], [ -77.096290588378793, -11.922127723693734 ], [ -77.096839904785099, -11.923686981201115 ], [ -77.098541259765625, -11.925148010253849 ], [ -77.101112365722656, -11.926401138305664 ], [ -77.102088928222599, -11.927524566650334 ], [ -77.102851867675724, -11.929220199584961 ], [ -77.102836608886662, -11.931235313415414 ], [ -77.102401733398438, -11.933053970336914 ], [ -77.102508544921875, -11.933849334716797 ], [ -77.103034973144474, -11.934946060180664 ], [ -77.102928161621094, -11.935895919799805 ], [ -77.10235595703125, -11.936794281005859 ], [ -77.099365234375, -11.938670158386117 ], [ -77.098281860351506, -11.939864158630371 ], [ -77.097724914550781, -11.941376686096135 ], [ -77.097702026367131, -11.943120956420842 ], [ -77.097023010253849, -11.945059776306039 ], [ -77.095611572265568, -11.947140693664551 ], [ -77.095390319824219, -11.949664115905762 ], [ -77.096443176269531, -11.950739860534668 ], [ -77.097496032714787, -11.951020240783578 ], [ -77.099281311035156, -11.950347900390625 ], [ -77.102523803710938, -11.949844360351506 ], [ -77.103996276855412, -11.948685646057129 ], [ -77.104515075683594, -11.948501586914006 ], [ -77.106842041015568, -11.948591232299805 ], [ -77.108398437499943, -11.9490966796875 ], [ -77.109611511230412, -11.948904991149902 ], [ -77.110801696777344, -11.948255538940373 ], [ -77.113151550292912, -11.946202278137207 ], [ -77.116416931152344, -11.946063041687012 ], [ -77.117996215820312, -11.945256233215332 ], [ -77.120361328125, -11.944577217102051 ], [ -77.122108459472599, -11.943788528442326 ], [ -77.123802185058594, -11.942337036132812 ], [ -77.12530517578125, -11.939613342285099 ], [ -77.126174926757812, -11.938559532165471 ], [ -77.127265930175724, -11.938044548034668 ], [ -77.128768920898438, -11.937935829162541 ], [ -77.128662109375, -11.939146041870117 ], [ -77.127372741699162, -11.942273139953613 ], [ -77.126365661621094, -11.943519592285156 ], [ -77.123947143554574, -11.945825576782227 ], [ -77.123207092285156, -11.947113990783578 ], [ -77.121040344238281, -11.949570655822697 ], [ -77.120597839355412, -11.950507164001465 ], [ -77.120223999023381, -11.953173637390137 ], [ -77.119338989257756, -11.95438194274891 ], [ -77.117843627929574, -11.955795288085938 ], [ -77.117630004882756, -11.957322120666504 ], [ -77.117744445800724, -11.961280822753849 ], [ -77.117065429687443, -11.966607093811035 ], [ -77.11614990234375, -11.969256401061955 ], [ -77.114036560058594, -11.97284984588623 ], [ -77.112876892089787, -11.976293563842717 ], [ -77.112655639648438, -11.97950267791748 ], [ -77.11309814453125, -11.98200511932373 ], [ -77.114517211914062, -11.984622001647892 ], [ -77.117385864257812, -11.986696243286076 ], [ -77.118270874023438, -11.987549781799203 ], [ -77.119468688964844, -11.989382743835392 ], [ -77.119834899902287, -11.991052627563477 ], [ -77.119232177734375, -11.992721557617188 ], [ -77.118553161621094, -11.993539810180664 ], [ -77.115692138671875, -11.995855331420842 ], [ -77.108978271484375, -11.999159812927246 ], [ -77.104522705078125, -12.000830650329533 ], [ -77.103294372558594, -12.001688003539925 ], [ -77.101623535156193, -12.00219821929926 ], [ -77.096206665039062, -12.004876136779728 ], [ -77.092361450195256, -12.009011268615723 ], [ -77.090858459472656, -12.009934425353947 ], [ -77.089004516601562, -12.011619567871037 ], [ -77.088294982910156, -12.01247501373291 ], [ -77.087936401367188, -12.013427734374943 ], [ -77.088356018066349, -12.015971183776855 ], [ -77.089752197265625, -12.018157005310059 ], [ -77.091613769531193, -12.02198314666748 ], [ -77.093132019042912, -12.025966644287109 ], [ -77.093765258789062, -12.029324531555176 ], [ -77.095458984375, -12.032204627990723 ], [ -77.095390319824219, -12.032565116882324 ], [ -77.094276428222599, -12.033552169799805 ], [ -77.093742370605469, -12.034539222717228 ], [ -77.093757629394531, -12.038145065307617 ], [ -77.093482971191406, -12.038210868835392 ], [ -77.092391967773438, -12.037523269653263 ], [ -77.090248107910099, -12.037538528442326 ], [ -77.088577270507812, -12.036946296691781 ], [ -77.085128784179631, -12.036808967590332 ], [ -77.082206726074219, -12.035881996154728 ], [ -77.081321716308594, -12.03592491149891 ], [ -77.081138610839844, -12.039115905761605 ], [ -77.082717895507756, -12.039267539977971 ], [ -77.082977294921875, -12.039519309997559 ], [ -77.082534790039006, -12.043740272521973 ], [ -77.081962585449162, -12.046547889709416 ], [ -77.08135986328125, -12.046779632568359 ], [ -77.078590393066406, -12.046483993530217 ], [ -77.078254699706974, -12.047543525695801 ], [ -77.078094482421875, -12.050003051757812 ], [ -77.087509155273381, -12.051359176635685 ], [ -77.087821960449219, -12.0516099929809 ], [ -77.088073730468693, -12.061650276183968 ], [ -77.108184814453068, -12.063433647155762 ], [ -77.108100891113224, -12.065448760986328 ], [ -77.108299255371037, -12.066388130187931 ], [ -77.108833312988281, -12.067069053649902 ], [ -77.110832214355469, -12.068564414977914 ], [ -77.11116790771473, -12.069043159484863 ], [ -77.108909606933594, -12.069879531860352 ], [ -77.107086181640625, -12.070843696594238 ], [ -77.106796264648438, -12.073040962219238 ], [ -77.107147216796818, -12.073590278625488 ], [ -77.108657836914006, -12.073615074157601 ], [ -77.109069824218636, -12.073820114135742 ], [ -77.109207153320312, -12.074604034423828 ], [ -77.108970642089787, -12.077047348022461 ], [ -77.110862731933537, -12.077403068542424 ], [ -77.11083984375, -12.078624725341797 ], [ -77.111083984375, -12.079451560974121 ], [ -77.110092163085881, -12.080366134643441 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-CUS", "NAME_0": "Peru", "ID_1": 8, "NAME_1": "Cusco", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": "Cuzco|Qosqo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.964225769042969, -11.269016265869084 ], [ -72.963027954101562, -11.269088745117131 ], [ -72.962875366210824, -11.268988609313908 ], [ -72.962272644042912, -11.268596649169922 ], [ -72.962081909179631, -11.267245292663574 ], [ -72.961845397949219, -11.265610694885197 ], [ -72.961006164550781, -11.264178276062012 ], [ -72.959770202636719, -11.263339042663517 ], [ -72.959327697753849, -11.263201713562012 ], [ -72.958717346191406, -11.263009071350041 ], [ -72.957412719726506, -11.262998580932617 ], [ -72.955917358398324, -11.26349925994873 ], [ -72.955780029296875, -11.263644218444767 ], [ -72.955528259277287, -11.263909339904785 ], [ -72.955528259277287, -11.264055252075195 ], [ -72.955513000488224, -11.264551162719727 ], [ -72.957519531249943, -11.269308090209961 ], [ -72.957443237304574, -11.271149635314828 ], [ -72.956886291503906, -11.272410392761174 ], [ -72.955619812011662, -11.273678779602051 ], [ -72.954742431640568, -11.274148941040039 ], [ -72.953750610351562, -11.274678230285531 ], [ -72.951492309570256, -11.275019645690918 ], [ -72.94915771484375, -11.275370597839299 ], [ -72.947311401367131, -11.27519512176508 ], [ -72.946380615234261, -11.275108337402287 ], [ -72.945892333984318, -11.275367736816406 ], [ -72.945396423339787, -11.275628089904671 ], [ -72.945289611816406, -11.275919914245605 ], [ -72.945137023925668, -11.276359558105412 ], [ -72.945266723632812, -11.277789115905762 ], [ -72.945365905761719, -11.278847694396916 ], [ -72.943077087402344, -11.280249595642033 ], [ -72.942970275878906, -11.280263900756836 ], [ -72.941169738769531, -11.280528068542424 ], [ -72.940353393554631, -11.281182289123535 ], [ -72.939796447753793, -11.281628608703556 ], [ -72.939651489257812, -11.282228469848576 ], [ -72.939521789550781, -11.282779693603516 ], [ -72.939598083496037, -11.283304214477539 ], [ -72.939796447753793, -11.284589767455998 ], [ -72.939628601074219, -11.285770416259766 ], [ -72.938407897949219, -11.28760910034174 ], [ -72.938087463378906, -11.287933349609375 ], [ -72.936271667480355, -11.289778709411564 ], [ -72.936080932617074, -11.290137290954533 ], [ -72.935966491699162, -11.290349006652832 ], [ -72.936058044433537, -11.291719436645508 ], [ -72.936264038085881, -11.291869163513127 ], [ -72.936492919921875, -11.292039871215763 ], [ -72.939872741699162, -11.293069839477482 ], [ -72.941886901855412, -11.294520378112793 ], [ -72.942489624023438, -11.294740676879883 ], [ -72.943031311035099, -11.294939041137695 ], [ -72.945106506347599, -11.295060157775822 ], [ -72.945808410644418, -11.295101165771484 ], [ -72.946868896484375, -11.294740676879883 ], [ -72.948516845703125, -11.294178009033146 ], [ -72.951034545898381, -11.292985916137638 ], [ -72.952163696289006, -11.292949676513615 ], [ -72.952560424804631, -11.293057441711369 ], [ -72.952949523925724, -11.293161392211914 ], [ -72.953399658203068, -11.293759346008301 ], [ -72.953414916992131, -11.293907165527287 ], [ -72.953460693359375, -11.294489860534668 ], [ -72.951751708984375, -11.298159599304142 ], [ -72.951683044433537, -11.298979759216309 ], [ -72.952186584472599, -11.299945831298828 ], [ -72.952400207519531, -11.300350189208984 ], [ -72.954689025878906, -11.302083969116211 ], [ -72.955207824707031, -11.302480697631836 ], [ -72.955886840820256, -11.303992271423283 ], [ -72.955841064453125, -11.304292678833008 ], [ -72.955726623535043, -11.30497932434082 ], [ -72.9552001953125, -11.30525016784668 ], [ -72.954948425292912, -11.305375099182072 ], [ -72.953430175781193, -11.304915428161621 ], [ -72.949432373046761, -11.304786682128793 ], [ -72.94891357421875, -11.304830551147404 ], [ -72.947410583496037, -11.304948806762695 ], [ -72.945022583007756, -11.305502891540471 ], [ -72.943786621093693, -11.305788040161019 ], [ -72.941551208496094, -11.305909156799316 ], [ -72.940834045410099, -11.30589485168457 ], [ -72.938766479492188, -11.305851936340275 ], [ -72.938262939453068, -11.305697441101017 ], [ -72.937866210937443, -11.305576324462891 ], [ -72.9368896484375, -11.304737091064453 ], [ -72.935615539550781, -11.304094314575195 ], [ -72.935165405273438, -11.303867340087891 ], [ -72.934158325195256, -11.304220199584961 ], [ -72.933563232421818, -11.304430007934513 ], [ -72.932991027831974, -11.30502891540516 ], [ -72.932586669921875, -11.309309005737248 ], [ -72.932777404785156, -11.310669898986816 ], [ -72.933410644531136, -11.311957359313965 ], [ -72.933509826660156, -11.312159538269043 ], [ -72.934646606445199, -11.313359260559025 ], [ -72.936180114746094, -11.31402683258051 ], [ -72.936782836914062, -11.314289093017521 ], [ -72.937370300292969, -11.314886093139648 ], [ -72.93756103515625, -11.315079689025822 ], [ -72.937545776367188, -11.315535545349064 ], [ -72.937507629394418, -11.316450119018498 ], [ -72.93695068359375, -11.3178453445434 ], [ -72.936790466308594, -11.318241119384766 ], [ -72.936798095703125, -11.318969726562443 ], [ -72.936798095703125, -11.31970024108881 ], [ -72.937408447265568, -11.320929527282715 ], [ -72.938758850097656, -11.32205867767334 ], [ -72.94061279296875, -11.322640419006291 ], [ -72.941635131835938, -11.322585105895939 ], [ -72.942276000976449, -11.322279930114689 ], [ -72.944129943847656, -11.320079803466797 ], [ -72.94622802734375, -11.315692901611328 ], [ -72.94618988037098, -11.31505012512207 ], [ -72.946029663085938, -11.314863204956055 ], [ -72.945709228515511, -11.314487457275334 ], [ -72.943679809570256, -11.313895225524846 ], [ -72.943191528320312, -11.313523292541504 ], [ -72.942306518554688, -11.312854766845703 ], [ -72.942405700683594, -11.311996459960938 ], [ -72.942710876464844, -11.311334609985352 ], [ -72.942832946777287, -11.311079978942871 ], [ -72.943809509277344, -11.310091018676758 ], [ -72.943931579589844, -11.310037612915039 ], [ -72.944488525390625, -11.309805870056096 ], [ -72.945877075195256, -11.309805870056096 ], [ -72.947074890136719, -11.310164451599064 ], [ -72.948112487792969, -11.310471534729004 ], [ -72.950546264648381, -11.311619758605957 ], [ -72.952369689941349, -11.312881469726506 ], [ -72.954467773437443, -11.313639640808105 ], [ -72.955093383789062, -11.313654899597168 ], [ -72.955207824707031, -11.313657760620117 ], [ -72.955917358398324, -11.313334465026799 ], [ -72.956146240234375, -11.313228607177734 ], [ -72.956962585449105, -11.313158988952523 ], [ -72.958831787109375, -11.313329696655273 ], [ -72.959411621093693, -11.313628196716252 ], [ -72.960289001464787, -11.314459800720158 ], [ -72.960861206054631, -11.315510749816895 ], [ -72.961067199706918, -11.316688537597599 ], [ -72.961006164550781, -11.317886352539062 ], [ -72.96099853515625, -11.318070411682015 ], [ -72.960540771484375, -11.31895923614502 ], [ -72.959747314453125, -11.31974983215332 ], [ -72.958900451660156, -11.320110321044865 ], [ -72.957931518554688, -11.320089340209904 ], [ -72.956352233886719, -11.319595336914062 ], [ -72.955535888671761, -11.319339752197266 ], [ -72.95489501953125, -11.31926441192627 ], [ -72.954505920410156, -11.319218635559082 ], [ -72.953727722167969, -11.319464683532715 ], [ -72.952919006347656, -11.319720268249455 ], [ -72.952400207519531, -11.320135116577148 ], [ -72.951911926269418, -11.320528984069824 ], [ -72.951499938964787, -11.321629524230957 ], [ -72.951255798339844, -11.324489593505859 ], [ -72.951362609863281, -11.325210571289062 ], [ -72.951446533203125, -11.325749397277832 ], [ -72.951858520507812, -11.326960563659611 ], [ -72.952133178710938, -11.327758789062443 ], [ -72.952705383300781, -11.328236579894963 ], [ -72.953247070312386, -11.328378677368107 ], [ -72.954055786132812, -11.327776908874512 ], [ -72.95452880859375, -11.32761287689209 ], [ -72.954849243164006, -11.327503204345703 ], [ -72.957191467285156, -11.32740306854248 ], [ -72.957824707031136, -11.327378273010197 ], [ -72.963340759277287, -11.328700065612679 ], [ -72.964469909667912, -11.329106330871525 ], [ -72.9652099609375, -11.329816818237248 ], [ -72.965278625488281, -11.330269813537541 ], [ -72.965408325195312, -11.331100463867131 ], [ -72.965156555175724, -11.33185863494873 ], [ -72.963821411132756, -11.333306312560978 ], [ -72.963088989257812, -11.334098815917969 ], [ -72.961860656738281, -11.334772109985295 ], [ -72.961471557617188, -11.334813117980957 ], [ -72.960937499999943, -11.334864616393986 ], [ -72.959861755371094, -11.334595680236816 ], [ -72.958282470703068, -11.333865165710449 ], [ -72.957069396972656, -11.333301544189339 ], [ -72.951515197753849, -11.330284118652344 ], [ -72.951080322265625, -11.330236434936523 ], [ -72.950302124023438, -11.330156326293945 ], [ -72.949661254882812, -11.330302238464299 ], [ -72.949485778808594, -11.330339431762695 ], [ -72.948677062988281, -11.331000328063965 ], [ -72.948547363281193, -11.331958770751896 ], [ -72.948722839355469, -11.332798004150334 ], [ -72.949668884277344, -11.334698677062988 ], [ -72.949737548828125, -11.337355613708439 ], [ -72.949501037597599, -11.338014602661076 ], [ -72.949310302734318, -11.338549613952637 ], [ -72.9481201171875, -11.339419364929199 ], [ -72.944633483886662, -11.339770317077637 ], [ -72.940734863281193, -11.33892917633051 ], [ -72.940467834472543, -11.338736534118652 ], [ -72.940345764160099, -11.338650703430119 ], [ -72.938392639160156, -11.335721969604435 ], [ -72.938262939453068, -11.335315704345703 ], [ -72.938179016113168, -11.335041046142578 ], [ -72.938247680664006, -11.333288192749023 ], [ -72.937705993652344, -11.332535743713322 ], [ -72.9364013671875, -11.331822395324707 ], [ -72.935218811035043, -11.33146858215332 ], [ -72.934997558593693, -11.331437110900879 ], [ -72.931182861328068, -11.33090877532959 ], [ -72.930206298828125, -11.33028602600092 ], [ -72.929771423339787, -11.330013275146484 ], [ -72.928054809570256, -11.328544616699219 ], [ -72.926689147949219, -11.327378273010197 ], [ -72.92559814453125, -11.327045440673828 ], [ -72.924873352050781, -11.327086448669434 ], [ -72.924491882324219, -11.327327728271484 ], [ -72.922607421874943, -11.328529357910099 ], [ -72.921241760253906, -11.330810546874943 ], [ -72.920890808105412, -11.332430839538574 ], [ -72.921081542968693, -11.334149360656681 ], [ -72.921882629394531, -11.335928916931096 ], [ -72.923271179199162, -11.337099075317383 ], [ -72.924209594726562, -11.337889671325684 ], [ -72.929176330566349, -11.340490341186467 ], [ -72.93316650390625, -11.343020439147949 ], [ -72.93398284912098, -11.34390926361084 ], [ -72.934722900390568, -11.346090316772461 ], [ -72.93475341796875, -11.346794128417969 ], [ -72.934776306152344, -11.347469329833984 ], [ -72.934471130371094, -11.348286628723088 ], [ -72.934196472167969, -11.349008560180664 ], [ -72.932708740234318, -11.35037708282465 ], [ -72.929779052734318, -11.350836753845215 ], [ -72.92864990234375, -11.351218223571777 ], [ -72.927650451660099, -11.35176944732666 ], [ -72.926277160644531, -11.352527618408203 ], [ -72.924301147460938, -11.353951454162598 ], [ -72.923812866210938, -11.354298591613713 ], [ -72.922286987304688, -11.354998588561955 ], [ -72.921257019042969, -11.355188369750863 ], [ -72.920684814453125, -11.354955673217773 ], [ -72.920402526855412, -11.354570388793945 ], [ -72.920135498046818, -11.354204177856388 ], [ -72.920158386230469, -11.353853225707894 ], [ -72.920196533203125, -11.353368759155217 ], [ -72.921432495117188, -11.352377891540527 ], [ -72.924110412597656, -11.350896835327035 ], [ -72.924957275390625, -11.350190162658635 ], [ -72.925926208496094, -11.348947525024414 ], [ -72.926277160644531, -11.347530364990234 ], [ -72.925933837890568, -11.346648216247559 ], [ -72.925514221191406, -11.345562934875488 ], [ -72.925308227539062, -11.345329284667969 ], [ -72.924285888671875, -11.34416389465332 ], [ -72.9232177734375, -11.343501091003418 ], [ -72.9229736328125, -11.343350410461426 ], [ -72.922424316406193, -11.343345642089844 ], [ -72.921279907226506, -11.343337059020996 ], [ -72.919181823730412, -11.343790054321289 ], [ -72.918731689453125, -11.343888282775822 ], [ -72.915435791015625, -11.345583915710336 ], [ -72.913467407226506, -11.347530364990234 ], [ -72.911819458007756, -11.350391387939453 ], [ -72.910713195800668, -11.351380348205566 ], [ -72.909378051757699, -11.351749420166016 ], [ -72.907211303710938, -11.351690292358398 ], [ -72.904914855957031, -11.351628303527775 ], [ -72.903053283691349, -11.352199554443359 ], [ -72.901710510253849, -11.353009223937988 ], [ -72.900909423828125, -11.35405254364008 ], [ -72.900077819824219, -11.35513973236084 ], [ -72.898025512695199, -11.356939315795898 ], [ -72.897659301757812, -11.357259750366154 ], [ -72.896331787109375, -11.358110427856388 ], [ -72.895423889160099, -11.35821342468256 ], [ -72.893966674804688, -11.357423782348633 ], [ -72.892936706542912, -11.356360435485726 ], [ -72.892333984375, -11.35540676116932 ], [ -72.892036437988281, -11.354940414428711 ], [ -72.891761779785156, -11.354083061218262 ], [ -72.891906738281193, -11.3536376953125 ], [ -72.892135620117188, -11.352938652038574 ], [ -72.893920898437443, -11.350637435913086 ], [ -72.894561767578068, -11.349808692932072 ], [ -72.895584106445312, -11.347953796386662 ], [ -72.895759582519531, -11.347466468811035 ], [ -72.895797729492131, -11.347350120544434 ], [ -72.895698547363281, -11.345606803894043 ], [ -72.894950866699162, -11.344126701354924 ], [ -72.894569396972599, -11.343839645385629 ], [ -72.894058227539062, -11.343453407287598 ], [ -72.892822265625, -11.343071937561035 ], [ -72.891853332519531, -11.342983245849609 ], [ -72.890876770019418, -11.342897415161133 ], [ -72.890014648437386, -11.343215942382756 ], [ -72.88909912109375, -11.343999862670842 ], [ -72.888755798339787, -11.345600128173771 ], [ -72.889137268066349, -11.347289085388127 ], [ -72.889602661132756, -11.348079681396428 ], [ -72.8905029296875, -11.349599838256836 ], [ -72.890747070312443, -11.350832939147949 ], [ -72.890769958496037, -11.350959777832031 ], [ -72.890686035156136, -11.352248191833439 ], [ -72.888702392578125, -11.355328559875431 ], [ -72.888481140136662, -11.355531692504883 ], [ -72.887283325195312, -11.35663986206049 ], [ -72.886672973632756, -11.357036590576115 ], [ -72.886177062988224, -11.357359886169434 ], [ -72.885009765625, -11.357589721679631 ], [ -72.883506774902287, -11.357448577880859 ], [ -72.882339477539062, -11.356928825378304 ], [ -72.881607055664006, -11.356079101562443 ], [ -72.881935119628906, -11.354757308959961 ], [ -72.882362365722599, -11.352999687194767 ], [ -72.882080078124943, -11.352449417114258 ], [ -72.8814697265625, -11.352246284484863 ], [ -72.880714416503906, -11.352351188659554 ], [ -72.880355834960881, -11.352400779724121 ], [ -72.879325866699162, -11.352868080139103 ], [ -72.877601623535099, -11.35407829284668 ], [ -72.877372741699219, -11.354240417480469 ], [ -72.87652587890625, -11.355229377746525 ], [ -72.876647949218693, -11.358248710632267 ], [ -72.877037048339787, -11.359235763549805 ], [ -72.877189636230469, -11.359619140624943 ], [ -72.877433776855469, -11.359965324401799 ], [ -72.878143310546875, -11.360979080200138 ], [ -72.87823486328125, -11.362021446228027 ], [ -72.878250122070256, -11.362180709838867 ], [ -72.87811279296875, -11.363017082214299 ], [ -72.878028869628906, -11.363520622253418 ], [ -72.876602172851562, -11.364849090576115 ], [ -72.874755859374886, -11.36498832702631 ], [ -72.873573303222656, -11.363979339599553 ], [ -72.872833251953068, -11.362705230712891 ], [ -72.872726440429631, -11.362092018127385 ], [ -72.872657775878793, -11.361700057983398 ], [ -72.872283935546875, -11.361111640930176 ], [ -72.872169494628849, -11.360928535461426 ], [ -72.871162414550781, -11.357889175415039 ], [ -72.869712829589844, -11.356471061706543 ], [ -72.869186401367188, -11.356241226196175 ], [ -72.868515014648438, -11.355949401855469 ], [ -72.865501403808537, -11.355377197265625 ], [ -72.863502502441293, -11.354762077331543 ], [ -72.863365173339844, -11.354719161987305 ], [ -72.862640380859318, -11.354716300964299 ], [ -72.861152648925781, -11.354709625244141 ], [ -72.859901428222656, -11.355111122131348 ], [ -72.858917236328068, -11.355895042419434 ], [ -72.857307434081918, -11.357179641723576 ], [ -72.856185913085938, -11.359578132629395 ], [ -72.85601806640625, -11.359929084777775 ], [ -72.855117797851562, -11.363210678100586 ], [ -72.854217529296818, -11.364238739013672 ], [ -72.853370666503849, -11.365209579467773 ], [ -72.852890014648381, -11.365257263183594 ], [ -72.852638244628906, -11.365278244018498 ], [ -72.85243988037098, -11.365212440490723 ], [ -72.851486206054574, -11.36487865447998 ], [ -72.848167419433594, -11.362348556518555 ], [ -72.846878051757756, -11.362089157104492 ], [ -72.84588623046875, -11.362218856811467 ], [ -72.845077514648381, -11.362990379333496 ], [ -72.844467163085938, -11.365109443664551 ], [ -72.844474792480469, -11.365406036376896 ], [ -72.844482421875, -11.365839004516545 ], [ -72.84481048583973, -11.367469787597656 ], [ -72.845230102539062, -11.368594169616699 ], [ -72.846138000488224, -11.371009826660156 ], [ -72.846115112304631, -11.371557235717717 ], [ -72.845573425292855, -11.372690200805664 ], [ -72.845359802246037, -11.373128890991211 ], [ -72.845069885253849, -11.373277664184513 ], [ -72.84481048583973, -11.373412132263127 ], [ -72.843666076660043, -11.373184204101562 ], [ -72.842262268066406, -11.371641159057617 ], [ -72.841667175292855, -11.370988845825138 ], [ -72.841484069824219, -11.370894432067871 ], [ -72.840599060058537, -11.370439529418888 ], [ -72.838645935058594, -11.370478630065918 ], [ -72.837165832519474, -11.37122917175293 ], [ -72.836105346679631, -11.372101783752441 ], [ -72.835586547851562, -11.372529983520451 ], [ -72.834411621093693, -11.374629020690918 ], [ -72.833816528320256, -11.376449584960938 ], [ -72.833816528320256, -11.377091407775822 ], [ -72.833816528320256, -11.377479553222656 ], [ -72.83404541015625, -11.378653526306096 ], [ -72.834609985351449, -11.379404067993107 ], [ -72.834831237792969, -11.37969970703125 ], [ -72.836120605468693, -11.380368232727051 ], [ -72.838485717773381, -11.380284309387207 ], [ -72.841316223144531, -11.380179405212346 ], [ -72.841468811035099, -11.380255699157715 ], [ -72.842323303222599, -11.380688667297306 ], [ -72.843276977539006, -11.381678581237793 ], [ -72.843467712402287, -11.382022857665959 ], [ -72.844245910644531, -11.383448600769043 ], [ -72.844383239746094, -11.38444995880127 ], [ -72.844306945800724, -11.385358810424805 ], [ -72.843452453613224, -11.386548995971623 ], [ -72.842056274414062, -11.387290000915527 ], [ -72.8394775390625, -11.387649536132756 ], [ -72.836410522460881, -11.386343955993652 ], [ -72.835624694824162, -11.386280059814453 ], [ -72.8348388671875, -11.386216163635254 ], [ -72.833953857421875, -11.386499404907227 ], [ -72.833602905273438, -11.38660812377924 ], [ -72.831275939941406, -11.38811016082758 ], [ -72.828506469726449, -11.388155937194824 ], [ -72.826446533203125, -11.388190269470158 ], [ -72.824851989746037, -11.388697624206543 ], [ -72.823143005371037, -11.389616966247502 ], [ -72.822853088378849, -11.389645576477051 ], [ -72.822410583496094, -11.389694213867188 ], [ -72.821411132812443, -11.389233589172363 ], [ -72.821098327636719, -11.388954162597656 ], [ -72.820571899414006, -11.388479232788086 ], [ -72.8203125, -11.386980056762695 ], [ -72.820640563964844, -11.386280059814453 ], [ -72.823341369628849, -11.384140014648438 ], [ -72.8238525390625, -11.383485794067326 ], [ -72.824028015136719, -11.383259773254395 ], [ -72.824142456054688, -11.382911682128906 ], [ -72.824371337890568, -11.382223129272461 ], [ -72.82379150390625, -11.380458831787109 ], [ -72.822761535644474, -11.378829956054688 ], [ -72.820976257324219, -11.377210617065373 ], [ -72.819923400878793, -11.376814842224121 ], [ -72.817550659179688, -11.375343322753849 ], [ -72.816459655761662, -11.375178337097168 ], [ -72.815483093261719, -11.375443458557072 ], [ -72.814651489257756, -11.376188278198242 ], [ -72.814552307128849, -11.376886367797852 ], [ -72.814437866210938, -11.377639770507756 ], [ -72.814987182617188, -11.379289627075138 ], [ -72.814781188964844, -11.379789352416935 ], [ -72.814613342285156, -11.379876136779785 ], [ -72.81429290771473, -11.38004207611084 ], [ -72.813026428222599, -11.379763603210449 ], [ -72.810928344726506, -11.378339767455998 ], [ -72.810104370117188, -11.377779006957951 ], [ -72.808395385742188, -11.376837730407658 ], [ -72.807746887207031, -11.37647819519043 ], [ -72.806861877441406, -11.376198768615723 ], [ -72.806549072265568, -11.376270294189453 ], [ -72.806060791015568, -11.376379966735783 ], [ -72.805908203125, -11.376580238342285 ], [ -72.805496215820256, -11.377128601074219 ], [ -72.805145263671875, -11.378520011901855 ], [ -72.804916381835881, -11.379449844360352 ], [ -72.8046875, -11.38079929351801 ], [ -72.804695129394531, -11.381546020507756 ], [ -72.804702758789062, -11.382649421691895 ], [ -72.804527282714844, -11.383269309997559 ], [ -72.804306030273438, -11.384069442748967 ], [ -72.804092407226449, -11.384285926818848 ], [ -72.802825927734318, -11.38556003570551 ], [ -72.801643371582031, -11.386099815368596 ], [ -72.801048278808594, -11.385976791381779 ], [ -72.800529479980412, -11.385871887207031 ], [ -72.799819946289062, -11.385212898254395 ], [ -72.799278259277344, -11.38404369354248 ], [ -72.799087524414062, -11.382785797119084 ], [ -72.798683166503906, -11.380142211914062 ], [ -72.797836303710938, -11.377772331237793 ], [ -72.797378540039006, -11.37650012969965 ], [ -72.797286987304631, -11.374668121337834 ], [ -72.796836853027287, -11.373172760009766 ], [ -72.796829223632756, -11.372456550598145 ], [ -72.796813964843693, -11.37150859832758 ], [ -72.796913146972599, -11.371081352233887 ], [ -72.797035217285043, -11.370524406433105 ], [ -72.798477172851562, -11.369097709655762 ], [ -72.798896789550781, -11.368789672851562 ], [ -72.799896240234261, -11.368048667907715 ], [ -72.800323486328125, -11.367349624633789 ], [ -72.800254821777287, -11.366626739501953 ], [ -72.799659729003906, -11.365662574768066 ], [ -72.799568176269531, -11.365518569946289 ], [ -72.799423217773438, -11.36543083190918 ], [ -72.798072814941349, -11.364596366882324 ], [ -72.795265197753906, -11.363994598388615 ], [ -72.793991088867188, -11.364094734191838 ], [ -72.793792724609261, -11.364109039306527 ], [ -72.793228149414062, -11.364276885986271 ], [ -72.792007446289062, -11.364640235900879 ], [ -72.790496826171875, -11.36613941192627 ], [ -72.789817810058594, -11.368013381958008 ], [ -72.789749145507756, -11.368210792541447 ], [ -72.789863586425724, -11.370219230651855 ], [ -72.79046630859375, -11.371547698974496 ], [ -72.790626525878849, -11.371895790100098 ], [ -72.792984008789062, -11.375166893005371 ], [ -72.795928955078125, -11.378108978271428 ], [ -72.797332763671875, -11.38079929351801 ], [ -72.797401428222599, -11.381642341613713 ], [ -72.797492980956974, -11.382829666137638 ], [ -72.797195434570256, -11.383502006530705 ], [ -72.796379089355469, -11.384420394897461 ], [ -72.795280456542912, -11.384448051452637 ], [ -72.794876098632812, -11.384220123290959 ], [ -72.793998718261719, -11.383725166320801 ], [ -72.788032531738224, -11.378182411193848 ], [ -72.787887573242188, -11.37804985046381 ], [ -72.784294128417969, -11.375589370727482 ], [ -72.781898498535156, -11.375283241271916 ], [ -72.777397155761719, -11.375965118408203 ], [ -72.775627136230469, -11.375930786132699 ], [ -72.771049499511719, -11.374694824218636 ], [ -72.764595031738224, -11.372033119201603 ], [ -72.76348876953125, -11.371185302734375 ], [ -72.762611389160156, -11.370112419128418 ], [ -72.761146545410099, -11.36832141876215 ], [ -72.75994873046875, -11.365694999694767 ], [ -72.759658813476562, -11.365055084228459 ], [ -72.758041381835938, -11.362936973571664 ], [ -72.756103515624943, -11.361667633056641 ], [ -72.752082824706974, -11.360226631164551 ], [ -72.750434875488281, -11.359091758727971 ], [ -72.749031066894474, -11.358123779296875 ], [ -72.746200561523324, -11.355213165283146 ], [ -72.745742797851562, -11.354916572570801 ], [ -72.744422912597656, -11.354066848754883 ], [ -72.739570617675781, -11.348237037658691 ], [ -72.738990783691406, -11.34792518615717 ], [ -72.73867034912098, -11.347750663757267 ], [ -72.73834228515625, -11.347743988037109 ], [ -72.737846374511719, -11.347735404968262 ], [ -72.737686157226506, -11.347842216491642 ], [ -72.737541198730469, -11.347940444946175 ], [ -72.735771179199162, -11.351388931274414 ], [ -72.734725952148381, -11.352139472961426 ], [ -72.733520507812386, -11.352100372314453 ], [ -72.731697082519474, -11.351200103759709 ], [ -72.730758666992188, -11.351413726806584 ], [ -72.730552673339787, -11.351458549499455 ], [ -72.729347229003906, -11.351407051086426 ], [ -72.728897094726562, -11.351388931274414 ], [ -72.728370666503793, -11.350826263427678 ], [ -72.727638244628906, -11.350040435791016 ], [ -72.727027893066349, -11.349818229675293 ], [ -72.724967956542969, -11.350370407104492 ], [ -72.723716735839844, -11.350969314575138 ], [ -72.723518371582031, -11.351228713989258 ], [ -72.722816467285099, -11.352129936218205 ], [ -72.722480773925781, -11.353850364685002 ], [ -72.72265625, -11.356049537658691 ], [ -72.723480224609318, -11.358089447021428 ], [ -72.723236083984375, -11.359873771667424 ], [ -72.723159790039062, -11.360450744628849 ], [ -72.722465515136719, -11.361308097839299 ], [ -72.721595764160043, -11.361738204955998 ], [ -72.721305847167912, -11.361880302429142 ], [ -72.721206665039006, -11.361911773681527 ], [ -72.719627380371094, -11.362428665161076 ], [ -72.7188720703125, -11.362387657165527 ], [ -72.718246459960881, -11.362351417541504 ], [ -72.717666625976506, -11.361877441406193 ], [ -72.717185974121037, -11.360988616943359 ], [ -72.716766357421875, -11.357125282287598 ], [ -72.716850280761719, -11.356682777404728 ], [ -72.716957092285156, -11.356079101562443 ], [ -72.717849731445256, -11.35454082489008 ], [ -72.717918395996094, -11.354345321655273 ], [ -72.71856689453125, -11.352458000183105 ], [ -72.718780517578125, -11.352154731750488 ], [ -72.71893310546875, -11.351938247680607 ], [ -72.718963623046875, -11.349931716918888 ], [ -72.718284606933594, -11.349117279052678 ], [ -72.718193054199219, -11.349004745483398 ], [ -72.716285705566406, -11.348011016845703 ], [ -72.715324401855469, -11.347869873046818 ], [ -72.714363098144531, -11.347725868224984 ], [ -72.712677001953125, -11.347776412963867 ], [ -72.711387634277287, -11.348345756530648 ], [ -72.708580017089844, -11.350257873535099 ], [ -72.708213806152287, -11.350873947143498 ], [ -72.707832336425724, -11.351518630981445 ], [ -72.707656860351506, -11.352564811706543 ], [ -72.707588195800781, -11.352979660034123 ], [ -72.707656860351506, -11.353296279907227 ], [ -72.707977294921875, -11.354768753051758 ], [ -72.709075927734318, -11.355870246887207 ], [ -72.710517883300724, -11.356758117675724 ], [ -72.714447021484261, -11.358219146728516 ], [ -72.714988708496037, -11.358681678771916 ], [ -72.715103149414006, -11.358779907226562 ], [ -72.715209960937386, -11.35914230346674 ], [ -72.71533203125, -11.359560012817326 ], [ -72.715202331542912, -11.361092567443848 ], [ -72.715057373046875, -11.362859725952148 ], [ -72.714340209960881, -11.364258766174316 ], [ -72.71380615234375, -11.366390228271428 ], [ -72.712692260742131, -11.368489265441838 ], [ -72.712432861328068, -11.369460105895996 ], [ -72.710952758789062, -11.371768951416016 ], [ -72.710716247558537, -11.373200416564941 ], [ -72.710731506347656, -11.377708435058537 ], [ -72.710281372070312, -11.379190444946232 ], [ -72.709327697753906, -11.380235671997013 ], [ -72.708992004394474, -11.380610466003418 ], [ -72.707725524902344, -11.380947113037109 ], [ -72.707183837890568, -11.381091117858887 ], [ -72.705429077148438, -11.381099700927734 ], [ -72.7039794921875, -11.380458831787109 ], [ -72.702323913574162, -11.380165100097656 ], [ -72.700843811035156, -11.380109786987305 ], [ -72.699783325195312, -11.380438804626465 ], [ -72.698257446289062, -11.381909370422363 ], [ -72.697586059570312, -11.383329391479492 ], [ -72.697059631347599, -11.384069442748967 ], [ -72.696517944335824, -11.384840011596623 ], [ -72.694908142089844, -11.386383056640625 ], [ -72.692871093749943, -11.388338088989258 ], [ -72.692626953125, -11.389799118041935 ], [ -72.693107604980469, -11.391420364379826 ], [ -72.693199157714844, -11.391740798950195 ], [ -72.693283081054688, -11.393300056457463 ], [ -72.693237304687443, -11.394303321838379 ], [ -72.693206787109375, -11.395038604736328 ], [ -72.693138122558594, -11.395161628723145 ], [ -72.692787170410099, -11.395758628845215 ], [ -72.691688537597656, -11.396384239196721 ], [ -72.691261291503849, -11.396630287170353 ], [ -72.690650939941406, -11.39673900604248 ], [ -72.690086364746094, -11.396842002868652 ], [ -72.687828063964787, -11.396273612976074 ], [ -72.686958312988224, -11.395707130432129 ], [ -72.686470031738224, -11.395387649536133 ], [ -72.68511962890625, -11.394186019897404 ], [ -72.683525085449162, -11.392768859863281 ], [ -72.683120727539062, -11.391473770141602 ], [ -72.682518005371094, -11.390694618225098 ], [ -72.68221282958973, -11.390300750732365 ], [ -72.679580688476562, -11.388582229614258 ], [ -72.678413391113281, -11.388178825378361 ], [ -72.676940917968693, -11.3876695632934 ], [ -72.674919128417969, -11.387370109558105 ], [ -72.673843383789062, -11.387640953063851 ], [ -72.672546386718693, -11.388798713684025 ], [ -72.671424865722599, -11.388798713684025 ], [ -72.670692443847656, -11.38843822479248 ], [ -72.669921875, -11.387168884277287 ], [ -72.669456481933594, -11.386768341064396 ], [ -72.668663024902287, -11.386079788207951 ], [ -72.667549133300781, -11.385898590087891 ], [ -72.666587829589844, -11.386173248291016 ], [ -72.666397094726562, -11.386230468749886 ], [ -72.666168212890568, -11.386391639709473 ], [ -72.665573120117188, -11.386809349060059 ], [ -72.664878845214844, -11.387788772582951 ], [ -72.6646728515625, -11.390946388244629 ], [ -72.664619445800781, -11.391818046569767 ], [ -72.66475677490223, -11.392251014709416 ], [ -72.665206909179631, -11.393718719482422 ], [ -72.664993286132812, -11.39421367645258 ], [ -72.664916992187443, -11.394400596618596 ], [ -72.664100646972656, -11.395159721374455 ], [ -72.66259765625, -11.395786285400391 ], [ -72.661880493164006, -11.396089553832951 ], [ -72.65936279296875, -11.396679878234863 ], [ -72.658515930175781, -11.396624565124512 ], [ -72.657966613769474, -11.396589279174805 ], [ -72.6578369140625, -11.396552085876465 ], [ -72.655372619628906, -11.395852088928166 ], [ -72.654281616210938, -11.395852088928166 ], [ -72.653472900390568, -11.396119117736816 ], [ -72.651588439941349, -11.397885322570744 ], [ -72.651527404785156, -11.398054122924805 ], [ -72.6512451171875, -11.398819923400822 ], [ -72.652297973632812, -11.400215148925724 ], [ -72.653472900390568, -11.40176868438715 ], [ -72.653495788574162, -11.403129577636719 ], [ -72.652603149414062, -11.404068946838322 ], [ -72.651298522949162, -11.404442787170353 ], [ -72.650360107421761, -11.404708862304631 ], [ -72.649436950683594, -11.405359268188477 ], [ -72.649147033691406, -11.406097412109375 ], [ -72.649040222167969, -11.407512664794922 ], [ -72.648971557617188, -11.408398628234863 ], [ -72.647132873535156, -11.409709930419922 ], [ -72.646911621093693, -11.41022872924799 ], [ -72.646820068359318, -11.411769866943303 ], [ -72.646408081054688, -11.412253379821777 ], [ -72.645683288574105, -11.41310977935791 ], [ -72.645118713378906, -11.413191795349064 ], [ -72.644577026367188, -11.413269996643066 ], [ -72.644226074218693, -11.413093566894474 ], [ -72.643829345703125, -11.412896156311035 ], [ -72.643547058105469, -11.412089347839355 ], [ -72.642868041992188, -11.410113334655705 ], [ -72.642127990722599, -11.408527374267521 ], [ -72.641822814941406, -11.407870292663574 ], [ -72.640708923339787, -11.406607627868596 ], [ -72.640434265136662, -11.406469345092717 ], [ -72.639495849609375, -11.405991554260197 ], [ -72.638214111328068, -11.405685424804574 ], [ -72.637397766113281, -11.405488967895508 ], [ -72.636245727538949, -11.40546989440918 ], [ -72.634323120117131, -11.405439376830998 ], [ -72.633865356445312, -11.405584335327148 ], [ -72.633621215820312, -11.405659675598145 ], [ -72.632537841796875, -11.406678199768066 ], [ -72.632095336914062, -11.407955169677678 ], [ -72.631919860839787, -11.408449172973633 ], [ -72.632049560546761, -11.409255981445312 ], [ -72.632400512695256, -11.411449432373047 ], [ -72.633491516113281, -11.413458824157658 ], [ -72.633682250976562, -11.414380073547306 ], [ -72.633583068847656, -11.414898872375488 ], [ -72.632637023925781, -11.415799140930119 ], [ -72.630828857421875, -11.416610717773438 ], [ -72.630607604980412, -11.416708946227971 ], [ -72.628768920898381, -11.416702270507812 ], [ -72.627235412597656, -11.415654182434082 ], [ -72.625587463378906, -11.413854598999023 ], [ -72.624916076660156, -11.413130760192871 ], [ -72.623863220214844, -11.412850379943791 ], [ -72.622306823730412, -11.41365909576416 ], [ -72.621856689453125, -11.414139747619629 ], [ -72.620872497558537, -11.415990829467773 ], [ -72.619873046875, -11.416938781738168 ], [ -72.619384765625, -11.417092323303223 ], [ -72.617668151855469, -11.417630195617562 ], [ -72.617599487304688, -11.41772270202631 ], [ -72.61745452880848, -11.417933464050236 ], [ -72.61745452880848, -11.418672561645451 ], [ -72.618179321289062, -11.419509887695256 ], [ -72.619514465332031, -11.420280456542855 ], [ -72.622093200683537, -11.420590400695687 ], [ -72.624069213867188, -11.421789169311523 ], [ -72.625198364257812, -11.423368453979435 ], [ -72.625274658203011, -11.423933982849121 ], [ -72.625411987304688, -11.424929618835336 ], [ -72.624687194824162, -11.426090240478459 ], [ -72.624252319335938, -11.42633056640625 ], [ -72.623573303222656, -11.426710128784123 ], [ -72.621871948242188, -11.426980972289982 ], [ -72.620437622070312, -11.42720890045166 ], [ -72.618988037109375, -11.427651405334473 ], [ -72.616386413574162, -11.428440093994141 ], [ -72.611541748046761, -11.428468704223633 ], [ -72.60888671875, -11.429039001464787 ], [ -72.608489990234261, -11.429301261901799 ], [ -72.608200073242131, -11.429490089416504 ], [ -72.608039855957031, -11.429909706115666 ], [ -72.608169555664006, -11.43052959442133 ], [ -72.610137939453125, -11.432351112365723 ], [ -72.610656738281193, -11.433218955993596 ], [ -72.610649108886662, -11.435049057006836 ], [ -72.611297607421875, -11.436690330505371 ], [ -72.611595153808594, -11.438594818115234 ], [ -72.611259460449105, -11.439217567443848 ], [ -72.611198425292969, -11.439329147338867 ], [ -72.610855102539006, -11.439565658569279 ], [ -72.610527038574219, -11.439789772033691 ], [ -72.608421325683594, -11.440209388732853 ], [ -72.607429504394474, -11.439709663391113 ], [ -72.606834411621037, -11.438892364501953 ], [ -72.606544494628906, -11.436965942382699 ], [ -72.606437683105469, -11.436267852783146 ], [ -72.606132507324219, -11.435855865478516 ], [ -72.604141235351562, -11.433159828185978 ], [ -72.603820800781136, -11.432090759277287 ], [ -72.603843688964844, -11.430890083312875 ], [ -72.603858947753906, -11.429788589477539 ], [ -72.604637145996094, -11.425938606262207 ], [ -72.604759216308537, -11.425620079040527 ], [ -72.605262756347656, -11.424321174621582 ], [ -72.605232238769474, -11.42238807678217 ], [ -72.604774475097543, -11.421372413635254 ], [ -72.604103088378793, -11.420566558837777 ], [ -72.603759765625, -11.420162200927678 ], [ -72.601966857910156, -11.418430328369084 ], [ -72.601615905761662, -11.418345451354867 ], [ -72.596931457519474, -11.419995307922306 ], [ -72.596809387207031, -11.420106887817326 ], [ -72.596321105957031, -11.420549392700195 ], [ -72.595726013183594, -11.421859741210938 ], [ -72.595596313476506, -11.422140121459847 ], [ -72.595527648925781, -11.423445701599121 ], [ -72.595436096191406, -11.425359725952092 ], [ -72.595100402832031, -11.426874160766545 ], [ -72.594856262206918, -11.427949905395451 ], [ -72.594078063964787, -11.429098129272347 ], [ -72.59185791015625, -11.431189537048283 ], [ -72.591705322265511, -11.431466102600098 ], [ -72.591590881347599, -11.431669235229435 ], [ -72.591590881347599, -11.431885719299316 ], [ -72.591583251953068, -11.43267917633051 ], [ -72.591903686523438, -11.433309555053711 ], [ -72.592002868652344, -11.433499336242676 ], [ -72.592384338378906, -11.43370246887207 ], [ -72.594223022460938, -11.434679985046387 ], [ -72.594856262206918, -11.434696197509766 ], [ -72.595680236816349, -11.434719085693359 ], [ -72.597229003906193, -11.436448097229004 ], [ -72.597587585449162, -11.437690734863281 ], [ -72.597557067871094, -11.438869476318303 ], [ -72.597213745117131, -11.439680099487248 ], [ -72.597091674804688, -11.439978599548283 ], [ -72.596992492675781, -11.440080642700195 ], [ -72.596321105957031, -11.440778732299805 ], [ -72.594917297363224, -11.441118240356332 ], [ -72.594291687011719, -11.441052436828613 ], [ -72.594078063964787, -11.44102668762207 ], [ -72.592559814453068, -11.440327644348031 ], [ -72.592002868652344, -11.439834594726562 ], [ -72.591506958007756, -11.43853569030756 ], [ -72.591217041015568, -11.437779426574707 ], [ -72.591445922851562, -11.435049057006836 ], [ -72.591232299804574, -11.434460639953613 ], [ -72.591072082519531, -11.434006690978947 ], [ -72.590614318847656, -11.433425903320256 ], [ -72.588851928710938, -11.432599067687931 ], [ -72.587020874023381, -11.432486534118652 ], [ -72.585876464843693, -11.432418823242188 ], [ -72.58428955078125, -11.43163871765131 ], [ -72.581550598144531, -11.430797576904297 ], [ -72.580429077148381, -11.430788993835449 ], [ -72.580001831054688, -11.431010246276799 ], [ -72.579696655273438, -11.431170463562012 ], [ -72.578987121581974, -11.432248115539551 ], [ -72.578918457031193, -11.433438301086369 ], [ -72.578956604003906, -11.433551788330078 ], [ -72.579216003417855, -11.434308052062931 ], [ -72.580062866210881, -11.435429573059025 ], [ -72.581443786621094, -11.436124801635685 ], [ -72.582206726074219, -11.436510086059513 ], [ -72.583297729492131, -11.437649726867619 ], [ -72.583480834960881, -11.438164710998535 ], [ -72.583549499511719, -11.438348770141488 ], [ -72.583190917968693, -11.438630104064941 ], [ -72.582412719726562, -11.439240455627441 ], [ -72.579429626464844, -11.43853759765625 ], [ -72.577919006347656, -11.438919067382812 ], [ -72.577110290527287, -11.438896179199219 ], [ -72.576789855957031, -11.438886642455998 ], [ -72.574867248535156, -11.437700271606445 ], [ -72.573066711425781, -11.436590194702148 ], [ -72.572158813476449, -11.435849189758187 ], [ -72.571632385253906, -11.435418128967285 ], [ -72.569114685058594, -11.434250831604004 ], [ -72.568840026855469, -11.433978080749455 ], [ -72.568397521972656, -11.433532714843636 ], [ -72.567901611328125, -11.432630538940316 ], [ -72.567642211914006, -11.432161331176758 ], [ -72.567283630371037, -11.431983947753849 ], [ -72.566566467285156, -11.431628227233887 ], [ -72.566017150878849, -11.431659698486328 ], [ -72.565032958984375, -11.432168006896973 ], [ -72.562950134277344, -11.434123992919922 ], [ -72.562339782714844, -11.434698104858342 ], [ -72.560569763183594, -11.435488700866642 ], [ -72.56024169921875, -11.435424804687443 ], [ -72.559455871581974, -11.435270309448185 ], [ -72.558486938476506, -11.43471622467041 ], [ -72.557456970214787, -11.433097839355469 ], [ -72.556541442871094, -11.43231201171875 ], [ -72.555839538574162, -11.432161331176758 ], [ -72.554901123046875, -11.431956291198674 ], [ -72.554283142089844, -11.432026863098088 ], [ -72.553436279296818, -11.432123184204045 ], [ -72.55224609375, -11.433159828185978 ], [ -72.551933288574162, -11.434399604797306 ], [ -72.551956176757812, -11.437813758850041 ], [ -72.551971435546875, -11.439538955688477 ], [ -72.552642822265625, -11.442543029785156 ], [ -72.552719116210938, -11.442869186401367 ], [ -72.551376342773438, -11.44423866271967 ], [ -72.549880981445312, -11.447270393371525 ], [ -72.548507690429574, -11.448389053344727 ], [ -72.547729492187443, -11.44842529296875 ], [ -72.547416687011719, -11.448438644409123 ], [ -72.547325134277287, -11.448361396789551 ], [ -72.546836853027344, -11.447949409484806 ], [ -72.546600341796761, -11.447369575500431 ], [ -72.546112060546818, -11.443800926208439 ], [ -72.546257019042969, -11.443558692932072 ], [ -72.546516418457031, -11.443115234375 ], [ -72.548278808593693, -11.441605567932129 ], [ -72.548370361328125, -11.441254615783635 ], [ -72.548614501953125, -11.440359115600586 ], [ -72.548614501953125, -11.43897819519043 ], [ -72.549224853515625, -11.437644958496094 ], [ -72.549217224121094, -11.437252998351994 ], [ -72.549217224121094, -11.437095642089844 ], [ -72.54833984375, -11.436126708984375 ], [ -72.54803466796875, -11.435791969299316 ], [ -72.547058105468693, -11.433510780334473 ], [ -72.546752929687443, -11.433302879333439 ], [ -72.546066284179688, -11.432838439941349 ], [ -72.543830871581918, -11.432789802551213 ], [ -72.53955078125, -11.434142112731877 ], [ -72.537117004394531, -11.434909820556641 ], [ -72.536338806152344, -11.434739112854004 ], [ -72.536277770996037, -11.43383884429926 ], [ -72.536956787109318, -11.432266235351506 ], [ -72.537391662597656, -11.431269645690918 ], [ -72.537124633789006, -11.427425384521428 ], [ -72.536071777343693, -11.425788879394474 ], [ -72.535682678222656, -11.425472259521484 ], [ -72.5352783203125, -11.425142288208008 ], [ -72.533515930175724, -11.424908638000488 ], [ -72.533309936523381, -11.424980163574219 ], [ -72.532768249511605, -11.42516899108881 ], [ -72.532073974609318, -11.426005363464355 ], [ -72.531982421874943, -11.426118850707951 ], [ -72.531448364257812, -11.427589416503849 ], [ -72.531417846679631, -11.42786979675293 ], [ -72.531341552734261, -11.428679466247559 ], [ -72.531501770019474, -11.429760932922363 ], [ -72.531745910644531, -11.431349754333496 ], [ -72.532127380371094, -11.432451248168945 ], [ -72.532829284667912, -11.433319091796818 ], [ -72.534339904785156, -11.434281349182129 ], [ -72.534622192382812, -11.434458732604924 ], [ -72.534904479980469, -11.434823036193848 ], [ -72.535186767578125, -11.435188293457031 ], [ -72.535285949707031, -11.436101913452148 ], [ -72.534988403320312, -11.437015533447266 ], [ -72.534545898437443, -11.438369750976506 ], [ -72.533897399902287, -11.439002990722656 ], [ -72.532814025878906, -11.439504623413086 ], [ -72.5318603515625, -11.439107894897404 ], [ -72.531219482421818, -11.438059806823674 ], [ -72.531051635742074, -11.437782287597656 ], [ -72.530654907226506, -11.437623977661133 ], [ -72.530311584472656, -11.43748760223383 ], [ -72.52984619140625, -11.437733650207463 ], [ -72.527381896972656, -11.439040184020882 ], [ -72.526176452636662, -11.439438819885197 ], [ -72.525726318359375, -11.43926811218256 ], [ -72.52504730224598, -11.439005851745549 ], [ -72.525009155273381, -11.438379287719727 ], [ -72.524932861328068, -11.437279701232796 ], [ -72.526443481445256, -11.434273719787598 ], [ -72.526206970214844, -11.43377685546875 ], [ -72.525596618652287, -11.43250560760498 ], [ -72.52490234375, -11.431743621826172 ], [ -72.524658203124943, -11.431474685668888 ], [ -72.523956298828125, -11.43101692199707 ], [ -72.523551940917969, -11.43096923828125 ], [ -72.523216247558537, -11.430931091308537 ], [ -72.520637512206974, -11.432430267333984 ], [ -72.519996643066406, -11.43251895904541 ], [ -72.518913269042912, -11.432674407958871 ], [ -72.517082214355469, -11.432332038879395 ], [ -72.516029357910156, -11.431060791015625 ], [ -72.516197204589844, -11.429150581359806 ], [ -72.517410278320256, -11.42618274688715 ], [ -72.518562316894418, -11.424298286437931 ], [ -72.519302368164006, -11.421834945678654 ], [ -72.519073486328125, -11.419275283813363 ], [ -72.518516540527344, -11.418389320373478 ], [ -72.518096923828125, -11.41772270202631 ], [ -72.517547607421875, -11.417365074157658 ], [ -72.517181396484375, -11.417130470275822 ], [ -72.516593933105469, -11.417084693908691 ], [ -72.515228271484375, -11.41697978973383 ], [ -72.513572692871037, -11.418140411376953 ], [ -72.513191223144474, -11.41886043548584 ], [ -72.512916564941349, -11.419380187988281 ], [ -72.512519836425724, -11.421036720275822 ], [ -72.513313293456918, -11.42377853393549 ], [ -72.513000488281193, -11.424440383911133 ], [ -72.51287841796875, -11.424539566040039 ], [ -72.512359619140511, -11.424970626830998 ], [ -72.511428833007812, -11.425039291381836 ], [ -72.51104736328125, -11.424896240234375 ], [ -72.510475158691406, -11.424688339233342 ], [ -72.510299682617188, -11.424496650695687 ], [ -72.509635925292969, -11.423789978027287 ], [ -72.509040832519531, -11.422542572021428 ], [ -72.508506774902344, -11.422060012817383 ], [ -72.507270812988224, -11.420948028564339 ], [ -72.507049560546875, -11.420256614684945 ], [ -72.507072448730469, -11.420137405395394 ], [ -72.507232666015625, -11.419158935546875 ], [ -72.509033203125, -11.416179656982308 ], [ -72.508979797363281, -11.41544246673584 ], [ -72.508384704589844, -11.414205551147404 ], [ -72.51019287109375, -11.412647247314339 ], [ -72.510040283203068, -11.411566734313908 ], [ -72.510009765625, -11.411373138427678 ], [ -72.508895874023381, -11.410138130187988 ], [ -72.508209228515625, -11.409785270690918 ], [ -72.507156372070312, -11.409239768981934 ], [ -72.506698608398381, -11.40878868103016 ], [ -72.506599426269531, -11.408437728881836 ], [ -72.506568908691406, -11.408334732055664 ], [ -72.507209777831918, -11.407230377197266 ], [ -72.506851196289062, -11.406484603881779 ], [ -72.506027221679688, -11.406578063964844 ], [ -72.504615783691349, -11.408068656921387 ], [ -72.503486633300724, -11.409260749816895 ], [ -72.501640319824219, -11.409178733825627 ], [ -72.501510620117188, -11.408747673034668 ], [ -72.501106262206918, -11.407440185546875 ], [ -72.499046325683594, -11.405108451843262 ], [ -72.498634338378906, -11.404643058776855 ], [ -72.497673034667855, -11.403227806091309 ], [ -72.497673034667855, -11.403044700622559 ], [ -72.497665405273381, -11.402802467346191 ], [ -72.498207092285156, -11.40264701843256 ], [ -72.498825073242188, -11.402468681335449 ], [ -72.501129150390625, -11.400518417358398 ], [ -72.50360107421875, -11.400674819946232 ], [ -72.503715515136719, -11.400379180908203 ], [ -72.503829956054688, -11.400100708007812 ], [ -72.502922058105355, -11.398698806762695 ], [ -72.499244689941406, -11.394900321960449 ], [ -72.498527526855412, -11.394795417785645 ], [ -72.498176574707031, -11.395218849182015 ], [ -72.498069763183594, -11.39534854888916 ], [ -72.497909545898438, -11.396527290344181 ], [ -72.497383117675724, -11.397808074951172 ], [ -72.496520996093693, -11.398760795593205 ], [ -72.496139526367131, -11.398795127868539 ], [ -72.49560546875, -11.398844718933105 ], [ -72.495323181152344, -11.398744583129826 ], [ -72.495086669921818, -11.398659706115723 ], [ -72.494735717773438, -11.397847175598145 ], [ -72.494590759277287, -11.397508621215763 ], [ -72.494125366210881, -11.397475242614746 ], [ -72.493728637695256, -11.397885322570744 ], [ -72.493606567382812, -11.398009300231877 ], [ -72.493560791015568, -11.399236679077092 ], [ -72.493537902831974, -11.399718284606877 ], [ -72.4942626953125, -11.40054988861084 ], [ -72.494812011718636, -11.401179313659554 ], [ -72.494956970214844, -11.401698112487793 ], [ -72.494369506835938, -11.402729034423714 ], [ -72.494171142578125, -11.402924537658635 ], [ -72.493347167968693, -11.403731346130314 ], [ -72.493034362792969, -11.403603553771916 ], [ -72.492851257324219, -11.401678085327148 ], [ -72.492614746093693, -11.401058197021484 ], [ -72.492202758789006, -11.399958610534668 ], [ -72.491851806640568, -11.399649620056096 ], [ -72.490547180175781, -11.399180412292367 ], [ -72.490058898925781, -11.399230003356934 ], [ -72.489433288574219, -11.399759292602539 ], [ -72.489143371582031, -11.400980949401799 ], [ -72.488822937011719, -11.402350425720215 ], [ -72.488250732421875, -11.402507781982365 ], [ -72.488128662109318, -11.402542114257699 ], [ -72.487739562988224, -11.402283668518066 ], [ -72.487655639648381, -11.401930809020939 ], [ -72.487686157226562, -11.400448799133244 ], [ -72.487968444824219, -11.399582862853947 ], [ -72.487716674804688, -11.398921966552734 ], [ -72.485496520996094, -11.398251533508244 ], [ -72.482810974121094, -11.398113250732422 ], [ -72.482307434081974, -11.397611618041935 ], [ -72.482429504394531, -11.397416114807015 ], [ -72.482597351074162, -11.39714527130127 ], [ -72.484710693359375, -11.396018981933537 ], [ -72.485221862792969, -11.395745277404785 ], [ -72.486366271972656, -11.394818305969181 ], [ -72.486877441406193, -11.394195556640625 ], [ -72.487419128417969, -11.39352989196766 ], [ -72.487472534179574, -11.393074035644474 ], [ -72.487243652343693, -11.392844200134277 ], [ -72.485466003417855, -11.392967224121037 ], [ -72.485076904296818, -11.392612457275334 ], [ -72.485015869140625, -11.391957283019963 ], [ -72.486236572265625, -11.39058780670166 ], [ -72.486007690429631, -11.389727592468205 ], [ -72.485488891601562, -11.38951587677002 ], [ -72.484794616699162, -11.389553070068303 ], [ -72.484100341796818, -11.389589309692326 ], [ -72.482696533203068, -11.389079093933105 ], [ -72.480369567871094, -11.387019157409668 ], [ -72.479728698730412, -11.387219429016113 ], [ -72.479080200195199, -11.388239860534668 ], [ -72.478134155273438, -11.389054298400879 ], [ -72.477188110351562, -11.389869689941406 ], [ -72.476356506347656, -11.391289710998478 ], [ -72.475723266601506, -11.391781806945744 ], [ -72.475189208984375, -11.39219856262207 ], [ -72.474769592285099, -11.392224311828613 ], [ -72.474349975585938, -11.39224720001215 ], [ -72.472793579101562, -11.391945838928166 ], [ -72.471237182617131, -11.390850067138672 ], [ -72.470909118652344, -11.389858245849496 ], [ -72.470695495605469, -11.386786460876465 ], [ -72.470542907714844, -11.386478424072266 ], [ -72.47015380859375, -11.385714530944767 ], [ -72.469612121581974, -11.385256767272836 ], [ -72.469505310058537, -11.385168075561523 ], [ -72.469070434570312, -11.38519287109375 ], [ -72.468116760253906, -11.385250091552678 ], [ -72.466743469238224, -11.386109352111816 ], [ -72.466468811035099, -11.386280059814453 ], [ -72.466491699218636, -11.386526107788086 ], [ -72.466552734374943, -11.387180328369084 ], [ -72.467407226562443, -11.38839054107666 ], [ -72.466232299804688, -11.389719009399414 ], [ -72.465187072753906, -11.390410423278809 ], [ -72.464881896972656, -11.390355110168343 ], [ -72.46453857421875, -11.390291213989258 ], [ -72.464172363281193, -11.389858245849496 ], [ -72.46392822265625, -11.38956356048584 ], [ -72.464126586914062, -11.387741088867131 ], [ -72.463966369628906, -11.38748836517334 ], [ -72.463882446289006, -11.387349128723145 ], [ -72.462532043457031, -11.387509346008301 ], [ -72.461509704589787, -11.387628555297852 ], [ -72.461326599121037, -11.388339996337891 ], [ -72.461837768554688, -11.389005661010742 ], [ -72.462165832519474, -11.389438629150334 ], [ -72.461746215820312, -11.389928817749023 ], [ -72.461334228515568, -11.390018463134709 ], [ -72.461151123046761, -11.390056610107422 ], [ -72.460357666015568, -11.389653205871525 ], [ -72.460159301757756, -11.389551162719727 ], [ -72.458915710449219, -11.387595176696777 ], [ -72.458839416503849, -11.386309623718262 ], [ -72.45880126953125, -11.385668754577637 ], [ -72.458511352539062, -11.384692192077637 ], [ -72.45831298828125, -11.384361267089844 ], [ -72.458137512207031, -11.384066581726074 ], [ -72.457427978515511, -11.383625030517521 ], [ -72.456123352050781, -11.383695602416935 ], [ -72.454154968261662, -11.385396003723031 ], [ -72.451576232910099, -11.385174751281681 ], [ -72.450294494628906, -11.385517120361328 ], [ -72.449111938476506, -11.38528919219965 ], [ -72.448348999023381, -11.384757995605469 ], [ -72.447669982910099, -11.383889198303223 ], [ -72.447769165039006, -11.37929725646967 ], [ -72.447906494140625, -11.378936767578125 ], [ -72.448387145996094, -11.378531455993652 ], [ -72.448890686035156, -11.378105163574162 ], [ -72.450942993163949, -11.377498626708984 ], [ -72.451469421386719, -11.376970291137695 ], [ -72.451301574706974, -11.375978469848519 ], [ -72.450881958007812, -11.375148773193303 ], [ -72.449790954589787, -11.374565124511662 ], [ -72.44964599609375, -11.37448787689209 ], [ -72.448928833007756, -11.373847007751465 ], [ -72.449798583984261, -11.37205791473383 ], [ -72.449745178222656, -11.37153434753418 ], [ -72.449729919433594, -11.371405601501408 ], [ -72.449234008789062, -11.370527267455998 ], [ -72.449134826660043, -11.370565414428711 ], [ -72.448722839355412, -11.370718002319279 ], [ -72.448448181152287, -11.371467590332031 ], [ -72.448287963867188, -11.371910095214787 ], [ -72.448043823242188, -11.372136116027775 ], [ -72.447410583496037, -11.372728347778263 ], [ -72.447067260742188, -11.37280368804926 ], [ -72.446861267089844, -11.372846603393555 ], [ -72.445228576660156, -11.372488975524902 ], [ -72.444160461425724, -11.373689651489144 ], [ -72.443885803222543, -11.373999595641976 ], [ -72.443389892578068, -11.373950004577637 ], [ -72.442855834960938, -11.373900413513127 ], [ -72.44232177734375, -11.374327659606934 ], [ -72.442008972167969, -11.374579429626465 ], [ -72.441680908203068, -11.37464332580555 ], [ -72.441543579101562, -11.374670028686523 ], [ -72.440933227538949, -11.374476432800179 ], [ -72.439888000488281, -11.37360954284668 ], [ -72.439430236816406, -11.373233795165959 ], [ -72.438491821289062, -11.373154640197697 ], [ -72.437744140625, -11.372792243957463 ], [ -72.436126708984318, -11.372728347778263 ], [ -72.434982299804631, -11.371352195739746 ], [ -72.434585571289062, -11.370570182800179 ], [ -72.434379577636719, -11.370168685913086 ], [ -72.434371948242188, -11.369692802429142 ], [ -72.434715270996037, -11.369084358215275 ], [ -72.434776306152344, -11.368969917297306 ], [ -72.436859130859375, -11.367031097412053 ], [ -72.436828613281136, -11.366839408874455 ], [ -72.436729431152287, -11.366216659545842 ], [ -72.436271667480469, -11.365888595581055 ], [ -72.434524536132756, -11.366105079650822 ], [ -72.433883666992188, -11.36639499664301 ], [ -72.432159423828011, -11.367170333862248 ], [ -72.430946350097656, -11.36674976348877 ], [ -72.430519104003849, -11.36674785614008 ], [ -72.4302978515625, -11.36674785614008 ], [ -72.429046630859375, -11.367354393005371 ], [ -72.426971435546818, -11.368358612060547 ], [ -72.425682067871094, -11.36841869354248 ], [ -72.425514221191406, -11.368302345275822 ], [ -72.425056457519531, -11.367979049682617 ], [ -72.424934387207031, -11.367549896240234 ], [ -72.425834655761662, -11.365996360778809 ], [ -72.426040649414006, -11.36563587188715 ], [ -72.426475524902344, -11.364219665527344 ], [ -72.426315307617131, -11.358806610107422 ], [ -72.425827026367131, -11.357510566711426 ], [ -72.425392150878906, -11.357077598571777 ], [ -72.425041198730469, -11.356726646423283 ], [ -72.424728393554688, -11.356167793273926 ], [ -72.424407958984318, -11.35560131072998 ], [ -72.423461914062443, -11.354834556579476 ], [ -72.422492980956974, -11.354591369628906 ], [ -72.421653747558537, -11.354673385620117 ], [ -72.419342041015568, -11.356233596801701 ], [ -72.417808532714844, -11.356662750244084 ], [ -72.415817260742131, -11.354940414428711 ], [ -72.415130615234375, -11.353916168212891 ], [ -72.413856506347656, -11.352020263671875 ], [ -72.413169860839787, -11.351728439330998 ], [ -72.412055969238281, -11.35165977478016 ], [ -72.410881042480412, -11.3519287109375 ], [ -72.409873962402344, -11.352630615234318 ], [ -72.409362792968636, -11.352989196777344 ], [ -72.409278869628906, -11.35312557220459 ], [ -72.408676147460881, -11.354119300842171 ], [ -72.408447265625, -11.355480194091797 ], [ -72.40728759765625, -11.356662750244084 ], [ -72.40576171875, -11.357343673706055 ], [ -72.404571533203068, -11.357333183288574 ], [ -72.403480529785156, -11.356631278991642 ], [ -72.403244018554631, -11.356479644775277 ], [ -72.402938842773381, -11.356134414672795 ], [ -72.402755737304631, -11.355927467346078 ], [ -72.402717590332031, -11.355755805969238 ], [ -72.402656555175724, -11.355459213256779 ], [ -72.404594421386605, -11.35377311706543 ], [ -72.404647827148438, -11.353025436401367 ], [ -72.404685974121037, -11.352492332458496 ], [ -72.404342651367188, -11.351684570312443 ], [ -72.404113769531193, -11.351140022277775 ], [ -72.403175354003906, -11.349790573120117 ], [ -72.403106689453125, -11.349695205688477 ], [ -72.402908325195312, -11.34906005859375 ], [ -72.402809143066406, -11.348727226257211 ], [ -72.402046203613281, -11.347908973693791 ], [ -72.401290893554688, -11.347099304199162 ], [ -72.401214599609375, -11.346536636352539 ], [ -72.400978088378906, -11.34484958648676 ], [ -72.400177001953068, -11.343398094177246 ], [ -72.399391174316406, -11.343088150024414 ], [ -72.398506164550781, -11.343299865722599 ], [ -72.398422241210938, -11.343962669372445 ], [ -72.398376464843693, -11.344298362731934 ], [ -72.399116516113281, -11.345698356628418 ], [ -72.399398803710938, -11.346919059753304 ], [ -72.399368286132812, -11.347071647643986 ], [ -72.399276733398438, -11.347518920898438 ], [ -72.396957397460881, -11.349637985229435 ], [ -72.395660400390625, -11.349609374999886 ], [ -72.39501953125, -11.349278450012207 ], [ -72.394996643066406, -11.347707748413086 ], [ -72.394653320312443, -11.346685409545842 ], [ -72.39453125, -11.346308708190861 ], [ -72.39467620849598, -11.344750404357853 ], [ -72.395111083984375, -11.344149589538461 ], [ -72.396316528320312, -11.343671798706055 ], [ -72.396377563476506, -11.343425750732422 ], [ -72.396430969238281, -11.343193054199162 ], [ -72.395919799804574, -11.342817306518555 ], [ -72.395477294921875, -11.342489242553654 ], [ -72.394432067871094, -11.342212677001953 ], [ -72.393241882324162, -11.341900825500431 ], [ -72.388847351074162, -11.343368530273438 ], [ -72.388496398925781, -11.343660354614258 ], [ -72.388359069824162, -11.344099998474121 ], [ -72.388526916503906, -11.344418525695801 ], [ -72.389976501464787, -11.345029830932617 ], [ -72.390541076660099, -11.345528602600041 ], [ -72.390693664550781, -11.346076011657715 ], [ -72.390739440917912, -11.346248626708928 ], [ -72.390457153320256, -11.346707344055176 ], [ -72.390243530273438, -11.346794128417969 ], [ -72.390037536621094, -11.346876144409123 ], [ -72.388854980468693, -11.346666336059513 ], [ -72.387260437011719, -11.347602844238224 ], [ -72.386581420898438, -11.347343444824219 ], [ -72.386245727539062, -11.346707344055176 ], [ -72.386528015136719, -11.345636367797795 ], [ -72.386474609374886, -11.344758987426701 ], [ -72.386383056640511, -11.343340873718262 ], [ -72.3858642578125, -11.342487335205078 ], [ -72.385047912597543, -11.341133117675781 ], [ -72.384880065917969, -11.340285301208496 ], [ -72.384712219238281, -11.339429855346623 ], [ -72.382087707519418, -11.337937355041504 ], [ -72.381538391113281, -11.33809852600092 ], [ -72.380691528320312, -11.3393297195434 ], [ -72.380554199218693, -11.33923435211176 ], [ -72.380043029785156, -11.338878631591797 ], [ -72.380043029785156, -11.338313102722111 ], [ -72.381813049316406, -11.336840629577637 ], [ -72.382125854492188, -11.336581230163517 ], [ -72.382537841796818, -11.335518836974984 ], [ -72.382484436035156, -11.33521842956543 ], [ -72.382362365722599, -11.334585189819279 ], [ -72.381950378417969, -11.334057807922306 ], [ -72.381568908691406, -11.333857536315918 ], [ -72.381462097167969, -11.33380126953125 ], [ -72.381088256835938, -11.333783149719181 ], [ -72.380271911621037, -11.333745956420898 ], [ -72.379394531249943, -11.332327842712289 ], [ -72.378120422363281, -11.33211612701416 ], [ -72.376449584960881, -11.332627296447697 ], [ -72.375686645507756, -11.333819389343205 ], [ -72.374710083007756, -11.335338592529297 ], [ -72.373863220214787, -11.335890769958496 ], [ -72.373466491699219, -11.335779190063477 ], [ -72.373382568359318, -11.335282325744629 ], [ -72.373497009277287, -11.334556579589844 ], [ -72.373519897460938, -11.33442497253418 ], [ -72.373886108398324, -11.333993911743107 ], [ -72.374122619628906, -11.333719253539982 ], [ -72.374183654785156, -11.332896232604867 ], [ -72.374031066894531, -11.33216381072998 ], [ -72.373916625976562, -11.331591606140137 ], [ -72.373336791992188, -11.331176757812443 ], [ -72.37322998046875, -11.331097602844181 ], [ -72.373130798339844, -11.331184387206974 ], [ -72.372482299804688, -11.331740379333439 ], [ -72.372451782226506, -11.332420349121037 ], [ -72.372406005859375, -11.333290100097599 ], [ -72.372077941894418, -11.333750724792424 ], [ -72.371871948242131, -11.334039688110352 ], [ -72.371604919433594, -11.33411979675293 ], [ -72.370635986328068, -11.333415985107422 ], [ -72.369773864746037, -11.333450317382812 ], [ -72.369560241699162, -11.33345890045166 ], [ -72.369476318359318, -11.335528373718262 ], [ -72.369308471679574, -11.335679054260197 ], [ -72.369003295898381, -11.335949897766113 ], [ -72.368492126464844, -11.335744857788086 ], [ -72.367721557617188, -11.334733009338322 ], [ -72.367591857910043, -11.334564208984375 ], [ -72.365844726562443, -11.334765434265137 ], [ -72.363929748535156, -11.333842277526799 ], [ -72.361808776855469, -11.333780288696289 ], [ -72.361198425292912, -11.333308219909668 ], [ -72.360626220703068, -11.332865715026799 ], [ -72.359474182128849, -11.332576751708984 ], [ -72.359062194824219, -11.332322120666504 ], [ -72.358818054199105, -11.332173347473088 ], [ -72.358718872070256, -11.330192565917969 ], [ -72.358604431152287, -11.330003738403263 ], [ -72.358474731445312, -11.329792022705078 ], [ -72.358322143554631, -11.329746246337834 ], [ -72.357864379882699, -11.329607009887638 ], [ -72.357437133789062, -11.329728126525879 ], [ -72.3560791015625, -11.330108642578125 ], [ -72.355537414550781, -11.329990386962891 ], [ -72.354072570800781, -11.329065322875977 ], [ -72.351661682128849, -11.326950073242188 ], [ -72.351264953613224, -11.326455116271916 ], [ -72.350486755371037, -11.325489044189453 ], [ -72.350349426269531, -11.32335090637207 ], [ -72.35028076171875, -11.323264122009164 ], [ -72.349876403808594, -11.322760581970158 ], [ -72.349182128906193, -11.322681427001896 ], [ -72.347770690917969, -11.322519302368164 ], [ -72.346061706542969, -11.3236083984375 ], [ -72.345657348632699, -11.323555946350098 ], [ -72.34432220458973, -11.32337760925293 ], [ -72.343986511230469, -11.323708534240723 ], [ -72.343849182128793, -11.324769020080566 ], [ -72.342308044433537, -11.323506355285531 ], [ -72.342193603515568, -11.323411941528263 ], [ -72.341346740722599, -11.323360443115178 ], [ -72.340499877929631, -11.323713302612248 ], [ -72.339591979980469, -11.323524475097656 ], [ -72.339355468749943, -11.323057174682617 ], [ -72.337272644042969, -11.31889533996582 ], [ -72.337432861328068, -11.318405151367131 ], [ -72.337509155273438, -11.318165779113656 ], [ -72.338851928710881, -11.317539215087834 ], [ -72.339042663574162, -11.317449569702148 ], [ -72.338722229003906, -11.31704044342041 ], [ -72.338546752929688, -11.317006111144963 ], [ -72.337440490722599, -11.316780090331974 ], [ -72.335395812988281, -11.316798210144043 ], [ -72.335144042968693, -11.316622734069824 ], [ -72.334953308105412, -11.31649112701416 ], [ -72.334602355957031, -11.315846443176213 ], [ -72.333824157714787, -11.316394805908146 ], [ -72.333168029785043, -11.316858291625977 ], [ -72.330940246581974, -11.316850662231332 ], [ -72.329872131347656, -11.31719970703125 ], [ -72.329559326171875, -11.317006111144963 ], [ -72.329231262206974, -11.316801071166992 ], [ -72.328941345214787, -11.316616058349496 ], [ -72.327339172363224, -11.317496299743652 ], [ -72.325294494628906, -11.317396163940373 ], [ -72.323532104492074, -11.316864013671818 ], [ -72.323448181152344, -11.317165374755803 ], [ -72.323348999023438, -11.3175048828125 ], [ -72.323905944824162, -11.318169593811035 ], [ -72.324470520019474, -11.318838119506779 ], [ -72.324760437011662, -11.321699142455998 ], [ -72.323997497558537, -11.322529792785588 ], [ -72.324081420898381, -11.32280158996582 ], [ -72.324172973632756, -11.323080062866211 ], [ -72.324623107910156, -11.323519706726017 ], [ -72.32470703125, -11.323598861694279 ], [ -72.324729919433594, -11.324149131774902 ], [ -72.323989868164006, -11.324666023254395 ], [ -72.323242187499943, -11.324397087097111 ], [ -72.322807312011719, -11.324239730834961 ], [ -72.321968078613281, -11.322813034057617 ], [ -72.320297241210938, -11.321499824523812 ], [ -72.319702148437443, -11.321460723876896 ], [ -72.318359374999943, -11.321378707885742 ], [ -72.317398071289006, -11.321099281310978 ], [ -72.317123413085881, -11.321247100830078 ], [ -72.316268920898381, -11.321709632873535 ], [ -72.315773010253849, -11.321670532226449 ], [ -72.315269470214844, -11.321632385253849 ], [ -72.314605712890625, -11.320859909057504 ], [ -72.314636230468693, -11.320531845092773 ], [ -72.314674377441406, -11.320128440856934 ], [ -72.315040588378849, -11.319944381713867 ], [ -72.315414428710881, -11.319753646850586 ], [ -72.317253112792969, -11.319989204406738 ], [ -72.317535400390625, -11.31981372833252 ], [ -72.317741394042969, -11.319685935974121 ], [ -72.317771911621094, -11.319326400756779 ], [ -72.31719970703125, -11.318859100341797 ], [ -72.31707763671875, -11.318629264831543 ], [ -72.316810607910156, -11.318134307861271 ], [ -72.316085815429631, -11.317839622497559 ], [ -72.315963745117131, -11.317790031433105 ], [ -72.315925598144531, -11.317190170288086 ], [ -72.315895080566349, -11.316616058349496 ], [ -72.315742492675781, -11.316484451293945 ], [ -72.314987182617188, -11.315830230712834 ], [ -72.314979553222656, -11.315089225769043 ], [ -72.315231323242131, -11.314609527587777 ], [ -72.315124511718693, -11.313780784606934 ], [ -72.314949035644418, -11.313700675964299 ], [ -72.314285278320199, -11.313402175903263 ], [ -72.313743591308594, -11.31268215179432 ], [ -72.313682556152287, -11.312602043151855 ], [ -72.313133239746037, -11.313078880310059 ], [ -72.312911987304631, -11.313085556030273 ], [ -72.312759399413949, -11.313090324401855 ], [ -72.312240600585938, -11.312458992004395 ], [ -72.312171936035099, -11.31200122833252 ], [ -72.312423706054688, -11.311545372009277 ], [ -72.312690734863281, -11.311055183410645 ], [ -72.312515258789062, -11.310450553893986 ], [ -72.309387207031193, -11.308480262756348 ], [ -72.309013366699162, -11.30765247344965 ], [ -72.308753967285043, -11.307064056396428 ], [ -72.308052062988224, -11.306477546691895 ], [ -72.307846069335938, -11.306307792663574 ], [ -72.3077392578125, -11.305789947509766 ], [ -72.307464599609375, -11.30450534820551 ], [ -72.306282043457031, -11.303639411926213 ], [ -72.306152343749943, -11.302180290222111 ], [ -72.306381225585938, -11.301947593688965 ], [ -72.306556701660043, -11.301767349243107 ], [ -72.307586669921818, -11.301388740539551 ], [ -72.307823181152344, -11.300530433654785 ], [ -72.304939270019418, -11.300250053405705 ], [ -72.304359436035099, -11.300479888915959 ], [ -72.3038330078125, -11.300688743591309 ], [ -72.302764892578125, -11.301429748535099 ], [ -72.30230712890625, -11.301749229431152 ], [ -72.300247192382756, -11.302248001098576 ], [ -72.299560546874943, -11.302267074584961 ], [ -72.298858642578125, -11.302285194396973 ], [ -72.294631958007756, -11.301667213439828 ], [ -72.292121887206974, -11.301536560058537 ], [ -72.291763305664006, -11.301624298095646 ], [ -72.291397094726449, -11.30170822143549 ], [ -72.291183471679631, -11.301836013793945 ], [ -72.290756225585938, -11.302088737487736 ], [ -72.290367126464844, -11.302906990051156 ], [ -72.290290832519531, -11.303069114685059 ], [ -72.289131164550781, -11.303984642028752 ], [ -72.288772583007812, -11.304840087890625 ], [ -72.288223266601506, -11.305451393127385 ], [ -72.28607177734375, -11.306709289550781 ], [ -72.28448486328125, -11.306911468505859 ], [ -72.282775878906193, -11.307129859924316 ], [ -72.278678894042912, -11.309309005737248 ], [ -72.275596618652344, -11.310950279235783 ], [ -72.273445129394474, -11.311276435851994 ], [ -72.271171569824162, -11.311619758605957 ], [ -72.270843505859375, -11.311962127685547 ], [ -72.268196105956974, -11.314740180969238 ], [ -72.267532348632756, -11.315071105956974 ], [ -72.267196655273438, -11.315238952636719 ], [ -72.266944885253849, -11.315309524536076 ], [ -72.266113281249943, -11.315540313720646 ], [ -72.261085510253906, -11.315743446350041 ], [ -72.260932922363281, -11.315750122070256 ], [ -72.260215759277344, -11.315988540649357 ], [ -72.259361267089844, -11.316616058349496 ], [ -72.258499145507812, -11.31725025177002 ], [ -72.258193969726506, -11.318106651306096 ], [ -72.257667541503906, -11.319589614868107 ], [ -72.257148742675724, -11.320564270019531 ], [ -72.256759643554631, -11.321288108825684 ], [ -72.254287719726506, -11.323451042175236 ], [ -72.253417968749943, -11.324210166931096 ], [ -72.252983093261719, -11.324069023132324 ], [ -72.25191497802723, -11.323030471801701 ], [ -72.250267028808537, -11.321978569030762 ], [ -72.249137878417912, -11.321704864501953 ], [ -72.247673034667969, -11.321350097656193 ], [ -72.247077941894531, -11.321550369262695 ], [ -72.246810913085938, -11.321639060974064 ], [ -72.246078491210881, -11.322252273559513 ], [ -72.244400024414062, -11.323658943176213 ], [ -72.243675231933537, -11.324093818664551 ], [ -72.242927551269474, -11.324538230895996 ], [ -72.240531921386662, -11.326997756958008 ], [ -72.240409851074219, -11.328370094299203 ], [ -72.239944458007812, -11.329954147338867 ], [ -72.239860534667912, -11.333632469177189 ], [ -72.238174438476506, -11.339062690734863 ], [ -72.23822021484375, -11.341746330261174 ], [ -72.238372802734261, -11.342606544494629 ], [ -72.238449096679631, -11.343012809753418 ], [ -72.240173339843693, -11.347678184509164 ], [ -72.240287780761719, -11.351197242736816 ], [ -72.240310668945312, -11.35200023651123 ], [ -72.240585327148438, -11.353886604309082 ], [ -72.240798950195312, -11.355380058288517 ], [ -72.243148803710938, -11.363031387329102 ], [ -72.243133544921818, -11.363245010375977 ], [ -72.243026733398381, -11.364589691162109 ], [ -72.241889953613224, -11.36695480346674 ], [ -72.241317749023381, -11.368138313293343 ], [ -72.241188049316406, -11.369084358215275 ], [ -72.242195129394531, -11.371124267578125 ], [ -72.242652893066349, -11.372049331664982 ], [ -72.244171142578068, -11.373279571533203 ], [ -72.245872497558537, -11.373989105224553 ], [ -72.246284484863168, -11.374505996704102 ], [ -72.246391296386719, -11.374641418457031 ], [ -72.246429443359375, -11.374932289123535 ], [ -72.246513366699219, -11.375650405883789 ], [ -72.246070861816349, -11.37742805480957 ], [ -72.245872497558537, -11.378230094909668 ], [ -72.246208190917969, -11.379379272460938 ], [ -72.247398376464787, -11.381248474121037 ], [ -72.247291564941406, -11.382519721984806 ], [ -72.247131347656193, -11.384420394897461 ], [ -72.247756958007812, -11.38501071929926 ], [ -72.248970031738281, -11.385451316833496 ], [ -72.249343872070312, -11.386109352111816 ], [ -72.250137329101562, -11.387519836425781 ], [ -72.252792358398438, -11.388057708740234 ], [ -72.253486633300781, -11.388198852539006 ], [ -72.256195068359318, -11.390995979309025 ], [ -72.257240295410099, -11.391779899597168 ], [ -72.257507324218693, -11.3919801712035 ], [ -72.260643005371094, -11.392969131469727 ], [ -72.263862609863281, -11.392680168151799 ], [ -72.264678955078068, -11.393139839172363 ], [ -72.264961242675724, -11.393300056457463 ], [ -72.265266418456918, -11.393703460693359 ], [ -72.265525817871037, -11.394049644470215 ], [ -72.26708984375, -11.397980690002385 ], [ -72.267547607421818, -11.398678779602051 ], [ -72.271797180175781, -11.402630805969181 ], [ -72.272735595703125, -11.403926849365234 ], [ -72.273796081542969, -11.405400276184025 ], [ -72.275741577148381, -11.407632827758732 ], [ -72.276527404785156, -11.408539772033635 ], [ -72.278373718261719, -11.41120719909668 ], [ -72.279212951660156, -11.412420272827148 ], [ -72.279701232910156, -11.413329124450684 ], [ -72.280479431152344, -11.414769172668343 ], [ -72.281417846679688, -11.419271469116154 ], [ -72.281959533691406, -11.420349121093693 ], [ -72.282722473144531, -11.421026229858398 ], [ -72.283210754394531, -11.421459197998047 ], [ -72.284835815429688, -11.422094345092773 ], [ -72.286231994628849, -11.422638893127441 ], [ -72.287811279296875, -11.423919677734375 ], [ -72.288352966308594, -11.427471160888672 ], [ -72.288810729980412, -11.428768157958871 ], [ -72.289405822753906, -11.430450439453068 ], [ -72.292137145996037, -11.433189392089844 ], [ -72.292655944824219, -11.434178352355957 ], [ -72.292739868164062, -11.434870719909668 ], [ -72.292770385742188, -11.435090065002441 ], [ -72.292343139648381, -11.436758041381836 ], [ -72.293342590332031, -11.439019203186035 ], [ -72.292411804199162, -11.44038200378418 ], [ -72.292457580566406, -11.442105293273869 ], [ -72.291618347167969, -11.442987442016545 ], [ -72.291175842285099, -11.443449974060059 ], [ -72.29091644287098, -11.444420814514103 ], [ -72.291122436523438, -11.445693016052189 ], [ -72.291168212890568, -11.445970535278263 ], [ -72.29248046875, -11.44951152801508 ], [ -72.292633056640511, -11.450519561767578 ], [ -72.29144287109375, -11.453400611877441 ], [ -72.29095458984375, -11.455286026000977 ], [ -72.290908813476506, -11.455450057983398 ], [ -72.290863037109375, -11.455825805664006 ], [ -72.290573120117188, -11.458008766174316 ], [ -72.290382385253906, -11.462578773498535 ], [ -72.289993286132812, -11.463718414306641 ], [ -72.288902282714787, -11.465279579162541 ], [ -72.288223266601506, -11.466799736022949 ], [ -72.288307189941349, -11.471120834350529 ], [ -72.288803100585881, -11.473152160644531 ], [ -72.288978576660099, -11.473890304565373 ], [ -72.289176940917912, -11.476458549499512 ], [ -72.289665222167912, -11.478144645690804 ], [ -72.289833068847599, -11.480239868164006 ], [ -72.291076660156193, -11.484860420226994 ], [ -72.292053222656193, -11.486858367919922 ], [ -72.29400634765625, -11.489068984985295 ], [ -72.298225402831974, -11.491558074951172 ], [ -72.299667358398381, -11.492409706115723 ], [ -72.300636291503849, -11.493203163146973 ], [ -72.302757263183594, -11.494939804077148 ], [ -72.305335998535156, -11.499188423156738 ], [ -72.306999206542912, -11.502552032470646 ], [ -72.307456970214844, -11.503968238830566 ], [ -72.308715820312443, -11.505306243896484 ], [ -72.309051513671875, -11.51137733459467 ], [ -72.309150695800781, -11.513200759887638 ], [ -72.309020996093693, -11.514843940734863 ], [ -72.30889892578125, -11.516489028930664 ], [ -72.308853149414062, -11.519148826599007 ], [ -72.308761596679688, -11.524678230285645 ], [ -72.307991027831918, -11.52910041809082 ], [ -72.307907104492188, -11.530652046203613 ], [ -72.307838439941406, -11.531949043273869 ], [ -72.305229187011719, -11.539215087890625 ], [ -72.305007934570256, -11.541373252868539 ], [ -72.305465698242188, -11.543008804321289 ], [ -72.305702209472543, -11.543848037719727 ], [ -72.306159973144474, -11.547408103942871 ], [ -72.307350158691406, -11.551475524902287 ], [ -72.307723999023438, -11.552201271057129 ], [ -72.30828857421875, -11.553283691406193 ], [ -72.309440612792969, -11.554842948913574 ], [ -72.311256408691406, -11.557288169860783 ], [ -72.311653137207031, -11.558090209960938 ], [ -72.311866760253849, -11.558529853820801 ], [ -72.312126159667969, -11.560916900634709 ], [ -72.311775207519474, -11.561843872070312 ], [ -72.311546325683594, -11.563559532165471 ], [ -72.3116455078125, -11.565849304199219 ], [ -72.311752319335938, -11.56813907623291 ], [ -72.312393188476562, -11.571208953857365 ], [ -72.313629150390625, -11.575019836425781 ], [ -72.31414794921875, -11.576620101928654 ], [ -72.314529418945312, -11.579065322875977 ], [ -72.315193176269531, -11.583309173583984 ], [ -72.315643310546875, -11.584606170654297 ], [ -72.315757751464844, -11.58495044708252 ], [ -72.316345214843693, -11.592738151550236 ], [ -72.31658935546875, -11.593938827514648 ], [ -72.3167724609375, -11.594819068908635 ], [ -72.317222595214787, -11.595534324645939 ], [ -72.317306518554631, -11.595668792724609 ], [ -72.318840026855412, -11.597275733947697 ], [ -72.32421875, -11.602918624877873 ], [ -72.326187133789006, -11.604299545288086 ], [ -72.326812744140625, -11.604610443115178 ], [ -72.327781677246094, -11.60508918762207 ], [ -72.328697204589844, -11.605827331542912 ], [ -72.329658508300781, -11.606599807739258 ], [ -72.334991455078125, -11.61354923248291 ], [ -72.336799621582031, -11.614659309387093 ], [ -72.338417053222656, -11.615363121032658 ], [ -72.339530944824162, -11.615851402282601 ], [ -72.340568542480412, -11.616530418395996 ], [ -72.342247009277344, -11.617628097534123 ], [ -72.343193054199219, -11.619528770446777 ], [ -72.346572875976562, -11.623570442199707 ], [ -72.3492431640625, -11.625040054321289 ], [ -72.351295471191406, -11.625405311584416 ], [ -72.353446960449162, -11.625789642333928 ], [ -72.354476928710938, -11.625789642333928 ], [ -72.356117248535099, -11.62637805938715 ], [ -72.357467651367131, -11.627660751342773 ], [ -72.358535766601449, -11.628680229187012 ], [ -72.359046936035156, -11.629866600036564 ], [ -72.359275817871037, -11.632063865661507 ], [ -72.359199523925668, -11.633801460266056 ], [ -72.359161376953125, -11.634719848632812 ], [ -72.359962463378793, -11.637269973754826 ], [ -72.359779357910156, -11.639683723449707 ], [ -72.359718322753906, -11.640499114990234 ], [ -72.359786987304688, -11.641215324401799 ], [ -72.359840393066349, -11.641759872436467 ], [ -72.360260009765625, -11.642527580261174 ], [ -72.360771179199219, -11.643468856811467 ], [ -72.362342834472599, -11.644268989562988 ], [ -72.362548828125, -11.644508361816406 ], [ -72.363082885742131, -11.645110130310002 ], [ -72.363365173339787, -11.646074295043945 ], [ -72.363471984863224, -11.646438598632812 ], [ -72.3634033203125, -11.647820472717228 ], [ -72.362792968749943, -11.649304389953613 ], [ -72.362426757812443, -11.650198936462402 ], [ -72.362251281738168, -11.65113639831543 ], [ -72.362121582031193, -11.651828765869027 ], [ -72.361686706542969, -11.652482986450195 ], [ -72.361198425292912, -11.653209686279297 ], [ -72.361061096191406, -11.653640747070199 ], [ -72.360687255859375, -11.654781341552678 ], [ -72.360015869140625, -11.655770301818848 ], [ -72.359275817871037, -11.658048629760685 ], [ -72.356101989746094, -11.663228988647347 ], [ -72.353805541992188, -11.665855407714844 ], [ -72.351669311523324, -11.668299674987736 ], [ -72.351257324218693, -11.669169425964355 ], [ -72.350921630859375, -11.669879913330078 ], [ -72.350822448730469, -11.671439170837346 ], [ -72.351058959960881, -11.672259330749512 ], [ -72.351432800292969, -11.673558235168457 ], [ -72.352462768554688, -11.675530433654785 ], [ -72.355636596679631, -11.678998947143555 ], [ -72.356437683105355, -11.680129051208382 ], [ -72.357414245605469, -11.681044578552246 ], [ -72.35845947265625, -11.682029724121037 ], [ -72.359001159667912, -11.682998657226506 ], [ -72.359260559081974, -11.683979034423828 ], [ -72.359069824218693, -11.687458992004395 ], [ -72.360260009765625, -11.693565368652287 ], [ -72.361427307128906, -11.696860313415527 ], [ -72.36297607421875, -11.699458122253361 ], [ -72.363792419433594, -11.700295448303166 ], [ -72.364402770996094, -11.700919151306039 ], [ -72.369132995605469, -11.704352378845101 ], [ -72.372947692871094, -11.706819534301758 ], [ -72.379432678222656, -11.710221290588265 ], [ -72.380790710449219, -11.711087226867676 ], [ -72.382797241210938, -11.712369918823242 ], [ -72.38552093505848, -11.715010643005314 ], [ -72.386581420898438, -11.716038703918343 ], [ -72.388687133789062, -11.718976974487305 ], [ -72.389816284179574, -11.720964431762695 ], [ -72.390335083007812, -11.722489356994572 ], [ -72.390480041503793, -11.72392463684082 ], [ -72.390571594238224, -11.724780082702637 ], [ -72.389999389648381, -11.729339599609318 ], [ -72.390007019042855, -11.729507446289062 ], [ -72.390121459960938, -11.731820106506348 ], [ -72.389656066894531, -11.733968734741154 ], [ -72.389595031738224, -11.735897064208984 ], [ -72.389556884765625, -11.737290382385197 ], [ -72.38924407958973, -11.73973274230957 ], [ -72.389091491699219, -11.740929603576546 ], [ -72.389205932617131, -11.745619773864689 ], [ -72.389816284179574, -11.750513076782227 ], [ -72.389938354492188, -11.751459121704102 ], [ -72.389945983886719, -11.754955291748047 ], [ -72.39129638671875, -11.75757884979248 ], [ -72.391685485839787, -11.758809089660645 ], [ -72.392356872558537, -11.759884834289494 ], [ -72.393196105957031, -11.761239051818734 ], [ -72.393470764160156, -11.763800621032715 ], [ -72.393798828124943, -11.764507293701172 ], [ -72.394248962402344, -11.765478134155273 ], [ -72.394424438476562, -11.7666015625 ], [ -72.394561767578068, -11.767478942871037 ], [ -72.394760131835881, -11.768051147460881 ], [ -72.395408630371037, -11.769920349121094 ], [ -72.395507812499943, -11.770930290222168 ], [ -72.397842407226562, -11.774394035339355 ], [ -72.398536682128906, -11.775428771972543 ], [ -72.399070739746094, -11.776909828186035 ], [ -72.399566650390625, -11.778298377990666 ], [ -72.400337219238281, -11.779767990112191 ], [ -72.401519775390568, -11.781200408935547 ], [ -72.403099060058594, -11.781963348388672 ], [ -72.403617858886662, -11.782509803771859 ], [ -72.403930664062386, -11.782840728759709 ], [ -72.403968811035156, -11.783359527587891 ], [ -72.404037475585938, -11.784390449523869 ], [ -72.403839111328125, -11.785010337829533 ], [ -72.401878356933594, -11.787877082824707 ], [ -72.4019775390625, -11.788629531860295 ], [ -72.402214050292855, -11.789034843444767 ], [ -72.40252685546875, -11.789580345153752 ], [ -72.402961730956974, -11.791199684143066 ], [ -72.402946472167912, -11.791756629943734 ], [ -72.402915954589844, -11.792929649352971 ], [ -72.402175903320256, -11.794187545776367 ], [ -72.400772094726506, -11.795763015747013 ], [ -72.399971008300781, -11.796659469604492 ], [ -72.398590087890511, -11.801239967346191 ], [ -72.396415710449219, -11.803189277648869 ], [ -72.393615722656193, -11.804806709289494 ], [ -72.392944335937443, -11.805385589599609 ], [ -72.392707824707031, -11.80558872222889 ], [ -72.392372131347599, -11.80635929107666 ], [ -72.392303466796875, -11.807115554809513 ], [ -72.392257690429631, -11.807640075683537 ], [ -72.391548156738281, -11.808865547180176 ], [ -72.390739440917912, -11.810270309448185 ], [ -72.389251708984375, -11.811908721923828 ], [ -72.386322021484375, -11.81442928314209 ], [ -72.384796142578125, -11.816149711608887 ], [ -72.381889343261662, -11.820189476013127 ], [ -72.375633239746094, -11.830279350280762 ], [ -72.374099731445312, -11.831992149353027 ], [ -72.37298583984375, -11.833238601684513 ], [ -72.370925903320256, -11.836381912231388 ], [ -72.37017822265625, -11.837252616882324 ], [ -72.369300842285099, -11.838280677795353 ], [ -72.368698120117188, -11.838907241821289 ], [ -72.368476867675781, -11.839139938354492 ], [ -72.366691589355469, -11.840268135070744 ], [ -72.360466003417969, -11.846188545226994 ], [ -72.359176635742131, -11.84783744812006 ], [ -72.356826782226562, -11.850850105285588 ], [ -72.355583190917969, -11.853836059570312 ], [ -72.355308532714844, -11.85450267791748 ], [ -72.354354858398438, -11.858695030212402 ], [ -72.354240417480355, -11.860628128051701 ], [ -72.353935241699162, -11.861992835998535 ], [ -72.35247802734375, -11.868427276611328 ], [ -72.351829528808537, -11.869650840759277 ], [ -72.350349426269531, -11.874188423156738 ], [ -72.346168518066406, -11.881348609924316 ], [ -72.346115112304631, -11.881928443908691 ], [ -72.34588623046875, -11.884268760681152 ], [ -72.345924377441349, -11.886228561401367 ], [ -72.345947265624886, -11.887208938598576 ], [ -72.346282958984375, -11.888648986816406 ], [ -72.346046447753906, -11.892868041992188 ], [ -72.345466613769418, -11.895342826843205 ], [ -72.345291137695312, -11.896088600158578 ], [ -72.344535827636719, -11.897766113281193 ], [ -72.343109130859375, -11.902984619140625 ], [ -72.343093872070312, -11.903282165527287 ], [ -72.342697143554631, -11.909499168395996 ], [ -72.342987060546761, -11.912160873413086 ], [ -72.343048095703068, -11.912690162658691 ], [ -72.343734741210881, -11.914789199829045 ], [ -72.344451904296875, -11.916978836059513 ], [ -72.345985412597656, -11.919599533081055 ], [ -72.346458435058594, -11.922209739685059 ], [ -72.346168518066406, -11.924769401550293 ], [ -72.344596862792912, -11.929676055908203 ], [ -72.344490051269474, -11.931520462036133 ], [ -72.344032287597599, -11.933568954467717 ], [ -72.343582153320312, -11.934800148010197 ], [ -72.342903137207031, -11.93666934967041 ], [ -72.342887878417912, -11.940490722656193 ], [ -72.342880249023381, -11.941450119018555 ], [ -72.342781066894474, -11.941731452941895 ], [ -72.342536926269531, -11.942398071289006 ], [ -72.342536926269531, -11.942708015441838 ], [ -72.342536926269531, -11.943229675292969 ], [ -72.339500427246094, -11.949319839477482 ], [ -72.338432312011719, -11.952738761901855 ], [ -72.338516235351562, -11.954646110534668 ], [ -72.338623046875, -11.957148551940861 ], [ -72.339912414550724, -11.961935043334961 ], [ -72.340301513671818, -11.963369369506836 ], [ -72.340065002441406, -11.964795112609863 ], [ -72.340019226074162, -11.965080261230412 ], [ -72.339653015136605, -11.965542793273926 ], [ -72.338867187499943, -11.966529846191349 ], [ -72.337509155273438, -11.967789649963322 ], [ -72.334777832031193, -11.969268798828125 ], [ -72.328857421874943, -11.971150398254395 ], [ -72.32415771484375, -11.972260475158635 ], [ -72.320259094238224, -11.972418785095158 ], [ -72.31842041015625, -11.972170829772949 ], [ -72.315826416015625, -11.972279548644963 ], [ -72.310913085937443, -11.971890449523869 ], [ -72.307304382324162, -11.972077369689885 ], [ -72.299461364746094, -11.972490310668888 ], [ -72.296905517578068, -11.97245979309082 ], [ -72.294998168945256, -11.972439765930176 ], [ -72.291656494140568, -11.972779273986816 ], [ -72.28973388671875, -11.973413467407227 ], [ -72.289016723632812, -11.973649978637582 ], [ -72.288772583007812, -11.973805427551213 ], [ -72.287933349609318, -11.974340438842773 ], [ -72.287124633789062, -11.975147247314453 ], [ -72.286422729492131, -11.975849151611328 ], [ -72.283920288085881, -11.980458259582463 ], [ -72.283157348632756, -11.982898712158203 ], [ -72.283271789550724, -11.985569953918457 ], [ -72.281410217285156, -11.98907470703125 ], [ -72.280899047851506, -11.99003887176508 ], [ -72.280410766601506, -11.991906166076603 ], [ -72.279052734375, -11.9970703125 ], [ -72.278785705566349, -11.997567176818848 ], [ -72.278236389160043, -11.998600006103516 ], [ -72.277198791503906, -11.999863624572754 ], [ -72.276702880859318, -12.000471115112305 ], [ -72.2760009765625, -12.001189231872559 ], [ -72.275230407714844, -12.002791404724121 ], [ -72.27471923828125, -12.003848075866699 ], [ -72.274406433105412, -12.004776000976506 ], [ -72.274009704589787, -12.005937576293945 ], [ -72.273948669433594, -12.006497383117619 ], [ -72.273818969726506, -12.007767677307015 ], [ -72.273895263671875, -12.008315086364746 ], [ -72.274192810058537, -12.010490417480412 ], [ -72.276481628417912, -12.01471996307373 ], [ -72.276611328124886, -12.015159606933537 ], [ -72.276992797851449, -12.016500473022461 ], [ -72.276939392089844, -12.01714038848877 ], [ -72.276336669921875, -12.01848030090332 ], [ -72.275108337402344, -12.019977569580078 ], [ -72.274291992187443, -12.020980834960881 ], [ -72.273857116699219, -12.02216815948475 ], [ -72.274200439453068, -12.023520469665471 ], [ -72.276283264160156, -12.027020454406681 ], [ -72.276321411132756, -12.027778625488281 ], [ -72.27632904052723, -12.027938842773381 ], [ -72.276023864746037, -12.02865028381342 ], [ -72.275672912597656, -12.029458999633789 ], [ -72.274520874023438, -12.030780792236328 ], [ -72.269691467285156, -12.033329010009766 ], [ -72.268890380859261, -12.033952713012695 ], [ -72.268417358398438, -12.034624099731445 ], [ -72.268257141113281, -12.03484916687006 ], [ -72.268127441406136, -12.035758972167912 ], [ -72.268287658691349, -12.036948204040527 ], [ -72.269050598144474, -12.038286209106388 ], [ -72.270301818847599, -12.04047870635975 ], [ -72.271171569824162, -12.042628288269043 ], [ -72.271392822265625, -12.046190261840763 ], [ -72.271202087402344, -12.048027038574219 ], [ -72.2711181640625, -12.048850059509277 ], [ -72.270339965820312, -12.051724433898869 ], [ -72.270011901855412, -12.052939414978027 ], [ -72.269302368164062, -12.053684234619084 ], [ -72.268486022949162, -12.054538726806584 ], [ -72.267356872558537, -12.055330276489258 ], [ -72.263847351074219, -12.056539535522461 ], [ -72.257865905761719, -12.059288024902344 ], [ -72.254829406738281, -12.060409545898438 ], [ -72.251342773437386, -12.060989379882812 ], [ -72.249519348144474, -12.061898231506291 ], [ -72.246513366699219, -12.062928199768066 ], [ -72.241806030273324, -12.063517570495605 ], [ -72.237739562988281, -12.062844276428223 ], [ -72.23431396484375, -12.062275886535645 ], [ -72.232872009277344, -12.062677383422852 ], [ -72.231018066406193, -12.063190460205078 ], [ -72.2275390625, -12.06265926361084 ], [ -72.223831176757812, -12.063488960266113 ], [ -72.222824096679574, -12.063525199890137 ], [ -72.220939636230469, -12.063597679138127 ], [ -72.212654113769531, -12.061916351318359 ], [ -72.20919036865223, -12.061965942382812 ], [ -72.208282470703125, -12.061978340148926 ], [ -72.207221984863281, -12.061627388000431 ], [ -72.205673217773438, -12.061777114868164 ], [ -72.20379638671875, -12.0619602203368 ], [ -72.202133178710824, -12.061553955078125 ], [ -72.199645996093693, -12.06095027923584 ], [ -72.197738647460881, -12.060850143432617 ], [ -72.197135925292912, -12.060819625854492 ], [ -72.192008972167912, -12.059869766235352 ], [ -72.190078735351506, -12.060088157653809 ], [ -72.189506530761662, -12.060148239135629 ], [ -72.186897277832031, -12.061709403991699 ], [ -72.186386108398381, -12.06182956695551 ], [ -72.185356140136719, -12.062068939208928 ], [ -72.182327270507812, -12.06190013885498 ], [ -72.18072509765625, -12.061811447143555 ], [ -72.179985046386662, -12.061644554138184 ], [ -72.178733825683537, -12.06136512756342 ], [ -72.176834106445256, -12.060529708862191 ], [ -72.176651000976506, -12.060450553893986 ], [ -72.174339294433594, -12.060363769531193 ], [ -72.173049926757812, -12.060901641845703 ], [ -72.171791076660099, -12.061818122863713 ], [ -72.170051574706974, -12.062162399291992 ], [ -72.16876220703125, -12.062159538268986 ], [ -72.168182373046761, -12.062355995178223 ], [ -72.165336608886719, -12.063326835632324 ], [ -72.161949157714787, -12.06557559967041 ], [ -72.159828186035156, -12.066470146179199 ], [ -72.157936096191406, -12.067270278930607 ], [ -72.152023315429688, -12.068419456481934 ], [ -72.148208618164062, -12.069599151611271 ], [ -72.148040771484318, -12.069630622863713 ], [ -72.145652770996037, -12.070059776306096 ], [ -72.143302917480469, -12.070919036865234 ], [ -72.140426635742074, -12.071089744567871 ], [ -72.137863159179688, -12.070758819580021 ], [ -72.13747406005848, -12.070709228515625 ], [ -72.135643005371037, -12.07096004486084 ], [ -72.134979248046818, -12.071294784545842 ], [ -72.134033203124943, -12.071768760681096 ], [ -72.131492614746094, -12.072634696960392 ], [ -72.127677917480469, -12.074718475341797 ], [ -72.126251220703125, -12.075886726379395 ], [ -72.120529174804688, -12.078537940979004 ], [ -72.118194580078068, -12.079048156738224 ], [ -72.116905212402344, -12.079331398010254 ], [ -72.112541198730469, -12.079321861267033 ], [ -72.110366821289006, -12.079857826232853 ], [ -72.109298706054688, -12.080117225646916 ], [ -72.108467102050724, -12.080243110656625 ], [ -72.106170654296818, -12.080589294433537 ], [ -72.101997375488168, -12.082089424133301 ], [ -72.098968505859375, -12.084178924560547 ], [ -72.098617553710938, -12.084549903869629 ], [ -72.098258972167912, -12.084929466247502 ], [ -72.097137451171875, -12.086930274963379 ], [ -72.096794128417969, -12.088438987731934 ], [ -72.095947265625, -12.092209815979004 ], [ -72.095207214355412, -12.103814125061035 ], [ -72.095169067382812, -12.104411125183049 ], [ -72.095062255859375, -12.105164527893066 ], [ -72.094711303710881, -12.107589721679574 ], [ -72.094177246093636, -12.120808601379395 ], [ -72.093696594238168, -12.124819755554142 ], [ -72.093582153320256, -12.127762794494629 ], [ -72.093482971191349, -12.130179405212402 ], [ -72.092155456542912, -12.134468078613224 ], [ -72.088752746582031, -12.141709327697754 ], [ -72.088455200195199, -12.143069267272949 ], [ -72.088226318359318, -12.144138336181641 ], [ -72.088401794433594, -12.145107269287109 ], [ -72.088439941406193, -12.145310401916504 ], [ -72.088821411132756, -12.146381378173771 ], [ -72.089401245117131, -12.148008346557617 ], [ -72.091400146484318, -12.151858329772949 ], [ -72.094642639160099, -12.156110763549805 ], [ -72.095176696777344, -12.157179832458496 ], [ -72.095718383789062, -12.158260345458984 ], [ -72.098182678222543, -12.162266731262207 ], [ -72.098861694335938, -12.163370132446289 ], [ -72.100028991699219, -12.165877342224121 ], [ -72.100173950195256, -12.166630744934025 ], [ -72.100502014160156, -12.168399810790959 ], [ -72.10076904296875, -12.173069953918457 ], [ -72.100799560546875, -12.173650741577148 ], [ -72.100280761718636, -12.174770355224609 ], [ -72.099868774414006, -12.175649642944336 ], [ -72.099845886230469, -12.175874710083008 ], [ -72.099746704101562, -12.176931381225586 ], [ -72.097862243652287, -12.180228233337346 ], [ -72.097328186035156, -12.181158065795842 ], [ -72.095138549804688, -12.18623161315918 ], [ -72.095016479492131, -12.188869476318359 ], [ -72.095909118652344, -12.193289756774846 ], [ -72.097023010253849, -12.196628570556584 ], [ -72.097640991210938, -12.19759464263916 ], [ -72.098503112792969, -12.198940277099553 ], [ -72.103126525878849, -12.203858375549316 ], [ -72.104339599609375, -12.207039833068848 ], [ -72.104537963867131, -12.209686279296875 ], [ -72.104438781738224, -12.21051120758051 ], [ -72.104263305664006, -12.211970329284611 ], [ -72.102638244628849, -12.218838691711426 ], [ -72.10247802734375, -12.219226837158203 ], [ -72.102066040039006, -12.220199584960881 ], [ -72.10170745849598, -12.222158432006779 ], [ -72.101531982421875, -12.223090171813965 ], [ -72.100242614746037, -12.226240158080998 ], [ -72.099388122558537, -12.227641105651855 ], [ -72.098953247070312, -12.228359222412109 ], [ -72.097808837890625, -12.231429100036564 ], [ -72.097198486328068, -12.232227325439396 ], [ -72.096725463867131, -12.232619285583496 ], [ -72.095771789550724, -12.233409881591797 ], [ -72.094139099121037, -12.234148025512695 ], [ -72.0931396484375, -12.234599113464242 ], [ -72.088226318359318, -12.234587669372502 ], [ -72.084953308105469, -12.234579086303711 ], [ -72.083320617675781, -12.234800338745117 ], [ -72.08172607421875, -12.235600471496468 ], [ -72.080802917480412, -12.236399650573674 ], [ -72.080406188964787, -12.237043380737248 ], [ -72.080177307128906, -12.237419128417969 ], [ -72.079299926757699, -12.239736557006836 ], [ -72.078689575195256, -12.241350173950195 ], [ -72.077430725097656, -12.242430686950684 ], [ -72.076469421386719, -12.242807388305664 ], [ -72.075088500976506, -12.243349075317269 ], [ -72.074256896972656, -12.243905067443848 ], [ -72.073532104492188, -12.244865417480469 ], [ -72.07271575927723, -12.246474266052246 ], [ -72.072280883789062, -12.247340202331486 ], [ -72.072052001953011, -12.247615814208984 ], [ -72.071342468261719, -12.248478889465332 ], [ -72.067451477050724, -12.250808715820256 ], [ -72.066429138183594, -12.251419067382812 ], [ -72.063140869140625, -12.253116607665959 ], [ -72.059501647949219, -12.255626678466797 ], [ -72.059036254882812, -12.255800247192383 ], [ -72.058113098144474, -12.256149291992131 ], [ -72.056678771972599, -12.256269454956055 ], [ -72.056434631347656, -12.25628757476801 ], [ -72.053092956542969, -12.254897117614689 ], [ -72.050094604492131, -12.254270553588867 ], [ -72.044212341308594, -12.2543687820434 ], [ -72.039863586425781, -12.25474739074707 ], [ -72.031227111816349, -12.254345893859863 ], [ -72.029586791992131, -12.254708290100098 ], [ -72.028335571289006, -12.255203247070256 ], [ -72.027946472167969, -12.255359649658203 ], [ -72.025321960449105, -12.256771087646484 ], [ -72.022331237792912, -12.258379936218262 ], [ -72.021705627441406, -12.258989334106332 ], [ -72.018173217773438, -12.26243877410883 ], [ -72.01666259765625, -12.264178276062012 ], [ -72.013862609863224, -12.268289566040039 ], [ -72.012557983398438, -12.269421577453556 ], [ -72.011917114257812, -12.269977569580021 ], [ -72.009353637695312, -12.271487236022892 ], [ -72.008888244628849, -12.271759033203125 ], [ -72.008575439453125, -12.271900177001896 ], [ -72.006362915039062, -12.272899627685547 ], [ -72.000205993652287, -12.27464580535883 ], [ -71.996551513671875, -12.276086807250977 ], [ -71.991012573242188, -12.278725624084473 ], [ -71.984237670898438, -12.283138275146428 ], [ -71.980209350585824, -12.284648895263672 ], [ -71.976341247558594, -12.285788536071721 ], [ -71.974685668945312, -12.286114692687931 ], [ -71.970848083496037, -12.286869049072209 ], [ -71.968269348144474, -12.286949157714787 ], [ -71.965400695800724, -12.286725997924748 ], [ -71.964157104492131, -12.286306381225586 ], [ -71.963348388671875, -12.285506248474064 ], [ -71.962966918945312, -12.285127639770508 ], [ -71.959884643554631, -12.283161163329964 ], [ -71.95660400390625, -12.28176212310791 ], [ -71.956314086914062, -12.281731605529728 ], [ -71.954780578613281, -12.28157901763916 ], [ -71.953437805175781, -12.281203269958439 ], [ -71.952919006347599, -12.281060218810978 ], [ -71.950630187988224, -12.281252861022949 ], [ -71.947273254394474, -12.281538009643555 ], [ -71.944038391113224, -12.282034873962402 ], [ -71.937690734863281, -12.283011436462346 ], [ -71.936576843261719, -12.28328895568842 ], [ -71.9349365234375, -12.283699035644474 ], [ -71.933586120605469, -12.284195899963379 ], [ -71.932601928710881, -12.284560203552189 ], [ -71.931137084960938, -12.285609245300236 ], [ -71.930427551269418, -12.286508560180664 ], [ -71.928482055664062, -12.288968086242619 ], [ -71.927833557128849, -12.289998054504395 ], [ -71.927177429199162, -12.291040420532227 ], [ -71.928886413574162, -12.293045997619629 ], [ -71.93080902099598, -12.29612922668457 ], [ -71.932632446289062, -12.298397064208928 ], [ -71.935333251953125, -12.300715446472168 ], [ -71.938064575195312, -12.302334785461369 ], [ -71.941993713378906, -12.306397438049316 ], [ -71.943283081054631, -12.309192657470646 ], [ -71.944427490234318, -12.310622215270996 ], [ -71.944694519042969, -12.311367988586426 ], [ -71.945075988769531, -12.314615249633789 ], [ -71.944221496581974, -12.320692062377816 ], [ -71.944328308105412, -12.321758270263615 ], [ -71.945075988769531, -12.323129653930664 ], [ -71.949729919433594, -12.326913833618164 ], [ -71.951469421386662, -12.329008102416992 ], [ -71.953598022460881, -12.334757804870605 ], [ -71.955177307128906, -12.336139678955078 ], [ -71.957801818847543, -12.339167594909668 ], [ -71.960807800292969, -12.340907096862736 ], [ -71.961944580078125, -12.341805458068791 ], [ -71.96795654296875, -12.348276138305664 ], [ -71.969322204589787, -12.350422859191781 ], [ -71.971244812011605, -12.354707717895451 ], [ -71.974761962890568, -12.358316421508789 ], [ -71.976219177246094, -12.362213134765568 ], [ -71.977630615234318, -12.364433288574219 ], [ -71.979660034179688, -12.368692398071289 ], [ -71.983383178710938, -12.37326717376709 ], [ -71.986534118652344, -12.379279136657715 ], [ -71.988182067871094, -12.380861282348576 ], [ -71.989669799804688, -12.383044242858887 ], [ -71.991950988769531, -12.385517120361328 ], [ -71.993545532226506, -12.38658428192133 ], [ -71.995025634765625, -12.387086868286133 ], [ -72.000228881835881, -12.387893676757812 ], [ -72.001281738281193, -12.388277053832951 ], [ -72.004135131835881, -12.39063835144043 ], [ -72.005287170410099, -12.391960144042912 ], [ -72.007026672363281, -12.394580841064453 ], [ -72.008735656738281, -12.399739265441895 ], [ -72.010078430175781, -12.402462005615178 ], [ -72.012001037597656, -12.405076980590763 ], [ -72.013923645019531, -12.406508445739689 ], [ -72.015419006347656, -12.407009124755803 ], [ -72.017181396484318, -12.40709400177002 ], [ -72.020011901855469, -12.406512260436955 ], [ -72.023880004882756, -12.405179023742676 ], [ -72.026924133300724, -12.404844284057617 ], [ -72.029792785644474, -12.404026031494141 ], [ -72.031715393066406, -12.4037570953368 ], [ -72.034797668457031, -12.404180526733398 ], [ -72.038261413574162, -12.406664848327637 ], [ -72.04193115234375, -12.41285514831543 ], [ -72.045043945312443, -12.4200439453125 ], [ -72.047439575195256, -12.42441463470459 ], [ -72.049217224121094, -12.42689037322998 ], [ -72.054382324218693, -12.432456016540471 ], [ -72.055335998535099, -12.434138298034668 ], [ -72.056945800781193, -12.438174247741642 ], [ -72.057411193847656, -12.438864707946721 ], [ -72.057891845703125, -12.441082000732365 ], [ -72.058578491210881, -12.442988395690918 ], [ -72.058876037597599, -12.444806098937931 ], [ -72.05965423583973, -12.447162628173771 ], [ -72.060806274414062, -12.449667930603027 ], [ -72.061523437499943, -12.452811241149902 ], [ -72.061599731445312, -12.458132743835392 ], [ -72.060043334960938, -12.464653015136719 ], [ -72.060089111328125, -12.4658203125 ], [ -72.060501098632756, -12.467386245727539 ], [ -72.06256103515625, -12.471219062805119 ], [ -72.066650390625, -12.47786808013916 ], [ -72.068382263183594, -12.479972839355412 ], [ -72.070022583007756, -12.481561660766545 ], [ -72.072120666503849, -12.482794761657715 ], [ -72.075111389160156, -12.485601425170898 ], [ -72.075866699218636, -12.486935615539551 ], [ -72.076179504394531, -12.488601684570312 ], [ -72.075782775878906, -12.489221572875977 ], [ -72.075515747070312, -12.490374565124398 ], [ -72.074272155761719, -12.49232006072998 ], [ -72.072593688964787, -12.4937486648559 ], [ -72.0704345703125, -12.495186805724984 ], [ -72.06880950927723, -12.496829986572266 ], [ -72.068153381347656, -12.497718811035099 ], [ -72.067481994628906, -12.499663352966309 ], [ -72.065582275390625, -12.501285552978516 ], [ -72.064338684082031, -12.503458023071289 ], [ -72.063636779785099, -12.504289627075195 ], [ -72.061241149902287, -12.505889892578125 ], [ -72.057823181152287, -12.50756931304926 ], [ -72.05499267578125, -12.508369445800781 ], [ -72.048904418945312, -12.50886154174799 ], [ -72.047927856445312, -12.509420394897347 ], [ -72.046554565429631, -12.510660171508675 ], [ -72.044517517089844, -12.511277198791447 ], [ -72.041915893554574, -12.511088371276855 ], [ -72.0391845703125, -12.510534286498967 ], [ -72.035003662109375, -12.51020622253418 ], [ -72.033058166503906, -12.510258674621468 ], [ -72.029281616210938, -12.510803222656136 ], [ -72.027252197265625, -12.510672569274846 ], [ -72.024650573730355, -12.51085376739502 ], [ -72.023521423339844, -12.511281967163086 ], [ -72.020050048828068, -12.511776924133244 ], [ -72.018821716308537, -12.512223243713322 ], [ -72.016365051269531, -12.512685775756836 ], [ -72.014846801757812, -12.513731956481877 ], [ -72.011886596679688, -12.516787528991586 ], [ -72.010498046875, -12.519781112670842 ], [ -72.009918212890625, -12.522953033447266 ], [ -72.009948730468693, -12.525337219238281 ], [ -72.010612487792912, -12.527739524841252 ], [ -72.011451721191406, -12.53300666809082 ], [ -72.011466979980412, -12.536229133605957 ], [ -72.010299682617188, -12.538490295410156 ], [ -72.0030517578125, -12.545617103576603 ], [ -72.002227783203068, -12.546955108642578 ], [ -72.001441955566349, -12.548924446105957 ], [ -72.00103759765625, -12.550905227661019 ], [ -72.000930786132812, -12.554121017455998 ], [ -72.001914978027344, -12.563173294067326 ], [ -72.001426696777344, -12.565505027770939 ], [ -72.000015258789006, -12.568814277648812 ], [ -71.999404907226562, -12.569467544555607 ], [ -71.998580932617131, -12.569873809814453 ], [ -71.994216918945256, -12.571667671203556 ], [ -71.989028930664062, -12.573415756225472 ], [ -71.986259460449219, -12.575116157531738 ], [ -71.983612060546818, -12.57756233215332 ], [ -71.981735229492074, -12.579960823059025 ], [ -71.978446960449219, -12.585721015930176 ], [ -71.976264953613224, -12.588597297668457 ], [ -71.974601745605469, -12.593255996704102 ], [ -71.972297668456918, -12.596147537231445 ], [ -71.970916748046875, -12.598424911499023 ], [ -71.968605041503906, -12.601543426513672 ], [ -71.961891174316349, -12.608031272888127 ], [ -71.960365295410099, -12.610660552978516 ], [ -71.958724975585881, -12.612548828124943 ], [ -71.9580078125, -12.613832473754826 ], [ -71.957183837890625, -12.61806583404541 ], [ -71.957183837890625, -12.619627952575684 ], [ -71.956909179687443, -12.621168136596623 ], [ -71.956954956054688, -12.62830638885498 ], [ -71.954490661621094, -12.642094612121582 ], [ -71.954399108886719, -12.646321296691838 ], [ -71.955474853515568, -12.649060249328613 ], [ -71.957534790039062, -12.65235424041748 ], [ -71.958351135253849, -12.654305458068848 ], [ -71.959617614746094, -12.656016349792424 ], [ -71.961174011230469, -12.658842086791935 ], [ -71.962181091308537, -12.660055160522461 ], [ -71.963691711425724, -12.66279220581049 ], [ -71.96441650390625, -12.665055274963379 ], [ -71.964981079101562, -12.668574333190918 ], [ -71.964942932128849, -12.67225265502924 ], [ -71.964469909667912, -12.674595832824707 ], [ -71.963455200195312, -12.67735576629633 ], [ -71.962669372558594, -12.680745124816838 ], [ -71.960693359375, -12.682680130004826 ], [ -71.958808898925781, -12.683851242065316 ], [ -71.955192565917912, -12.68660926818842 ], [ -71.951812744140625, -12.688538551330566 ], [ -71.948287963867188, -12.689689636230412 ], [ -71.944633483886662, -12.691302299499455 ], [ -71.939262390136662, -12.691889762878418 ], [ -71.936347961425781, -12.693083763122559 ], [ -71.933624267578125, -12.69370174407959 ], [ -71.928878784179631, -12.695707321166992 ], [ -71.924293518066349, -12.698517799377441 ], [ -71.922615051269531, -12.699816703796387 ], [ -71.920272827148438, -12.702424049377328 ], [ -71.919448852539006, -12.705430030822754 ], [ -71.919662475585938, -12.708099365234318 ], [ -71.92120361328125, -12.713779449462891 ], [ -71.921562194824105, -12.716239929199219 ], [ -71.921348571777287, -12.718640327453613 ], [ -71.921028137207031, -12.719672203063965 ], [ -71.920425415039062, -12.720479011535645 ], [ -71.918693542480412, -12.721921920776367 ], [ -71.915481567382812, -12.72243690490717 ], [ -71.913528442382756, -12.722990989685059 ], [ -71.909576416015625, -12.725030899047795 ], [ -71.908721923828125, -12.725878715515137 ], [ -71.90826416015625, -12.727121353149357 ], [ -71.90814208984375, -12.729647636413461 ], [ -71.900321960449219, -12.727551460266113 ], [ -71.899772644042969, -12.727562904357853 ], [ -71.899101257324219, -12.727220535278263 ], [ -71.897430419921761, -12.727092742919865 ], [ -71.894851684570256, -12.726277351379395 ], [ -71.889808654785156, -12.725358963012695 ], [ -71.883445739746094, -12.723235130310002 ], [ -71.879501342773324, -12.722556114196721 ], [ -71.876251220703068, -12.72142505645752 ], [ -71.871170043945256, -12.720237731933594 ], [ -71.867454528808537, -12.719867706298828 ], [ -71.863296508789062, -12.719050407409611 ], [ -71.856643676757812, -12.71821212768549 ], [ -71.852378845214844, -12.717233657836914 ], [ -71.847541809081974, -12.716931343078613 ], [ -71.846725463867188, -12.717164993286133 ], [ -71.844306945800724, -12.717235565185547 ], [ -71.841606140136662, -12.717863082885685 ], [ -71.837646484375, -12.716805458068791 ], [ -71.834861755371037, -12.716543197631779 ], [ -71.833412170410099, -12.716192245483398 ], [ -71.828125, -12.716707229614258 ], [ -71.825317382812443, -12.71733379364008 ], [ -71.821243286132812, -12.719026565551701 ], [ -71.814155578613224, -12.723592758178654 ], [ -71.809532165527344, -12.725921630859318 ], [ -71.807136535644531, -12.727950096130371 ], [ -71.806549072265511, -12.729109764099121 ], [ -71.805412292480469, -12.730439186096135 ], [ -71.804695129394531, -12.732526779174805 ], [ -71.804252624511662, -12.733236312866154 ], [ -71.804191589355469, -12.733866691589355 ], [ -71.804374694824219, -12.735060691833439 ], [ -71.805404663085824, -12.737520217895451 ], [ -71.804039001464787, -12.740545272827148 ], [ -71.803779602050668, -12.741969108581543 ], [ -71.804222106933537, -12.743202209472599 ], [ -71.805267333984375, -12.744715690612679 ], [ -71.805618286132812, -12.7479248046875 ], [ -71.80706787109375, -12.750263214111271 ], [ -71.807266235351562, -12.751640319824219 ], [ -71.807075500488281, -12.752429962158146 ], [ -71.805152893066406, -12.755684852600098 ], [ -71.804405212402344, -12.757662773132267 ], [ -71.803230285644531, -12.759554862976074 ], [ -71.802970886230469, -12.762639045715332 ], [ -71.801689147949219, -12.764113426208496 ], [ -71.800872802734375, -12.764554977416992 ], [ -71.797813415527344, -12.764336585998535 ], [ -71.793998718261719, -12.765835762023869 ], [ -71.793106079101562, -12.765581130981332 ], [ -71.790122985839787, -12.763837814330998 ], [ -71.789329528808594, -12.76361179351801 ], [ -71.786766052246094, -12.764067649841252 ], [ -71.784286499023438, -12.764885902404671 ], [ -71.782096862792912, -12.765203475952148 ], [ -71.77874755859375, -12.765000343322754 ], [ -71.777679443359375, -12.7645006179809 ], [ -71.776718139648438, -12.762655258178711 ], [ -71.776359558105469, -12.761122703552132 ], [ -71.776260375976562, -12.759380340576172 ], [ -71.775932312011605, -12.758518218994141 ], [ -71.774574279785099, -12.757001876831055 ], [ -71.773475646972656, -12.756998062133675 ], [ -71.772689819335824, -12.757637977599984 ], [ -71.772079467773438, -12.758777618408203 ], [ -71.771469116210938, -12.761471748352051 ], [ -71.771507263183594, -12.763854026794377 ], [ -71.770385742187443, -12.766369819641113 ], [ -71.769424438476506, -12.76708984375 ], [ -71.767501831054688, -12.766757011413574 ], [ -71.766845703124943, -12.767752647399902 ], [ -71.766532897949219, -12.77288818359375 ], [ -71.76519775390625, -12.774531364440861 ], [ -71.764579772949162, -12.776069641113281 ], [ -71.763778686523438, -12.776835441589299 ], [ -71.763999938964787, -12.779764175414982 ], [ -71.763786315917912, -12.780851364135742 ], [ -71.7633056640625, -12.781640052795353 ], [ -71.763420104980412, -12.784867286682129 ], [ -71.762588500976562, -12.786184310913086 ], [ -71.762252807617188, -12.788347244262638 ], [ -71.760406494140625, -12.790032386779728 ], [ -71.760169982910099, -12.790724754333496 ], [ -71.759674072265625, -12.791287422180119 ], [ -71.758247375488281, -12.79191875457758 ], [ -71.756782531738281, -12.79344367980957 ], [ -71.755699157714787, -12.793719291686955 ], [ -71.754020690917969, -12.793609619140625 ], [ -71.75067138671875, -12.794425964355355 ], [ -71.749755859375, -12.794350624084416 ], [ -71.748199462890625, -12.793048858642578 ], [ -71.745613098144531, -12.792810440063477 ], [ -71.744155883789006, -12.791428565979004 ], [ -71.741775512695256, -12.791571617126465 ], [ -71.740615844726506, -12.790192604064941 ], [ -71.739418029785156, -12.790674209594727 ], [ -71.738456726074105, -12.790616989135742 ], [ -71.73626708984375, -12.788370132446175 ], [ -71.733848571777287, -12.786659240722656 ], [ -71.732612609863224, -12.786562919616642 ], [ -71.731346130371094, -12.787397384643498 ], [ -71.731086730956974, -12.788196563720646 ], [ -71.731307983398438, -12.790339469909668 ], [ -71.729843139648381, -12.793742179870605 ], [ -71.729843139648381, -12.797417640686035 ], [ -71.729492187499886, -12.798679351806641 ], [ -71.729492187499886, -12.799878120422306 ], [ -71.729827880859375, -12.801960945129338 ], [ -71.729484558105412, -12.802822113036996 ], [ -71.728553771972656, -12.803722381591797 ], [ -71.728790283203068, -12.805549621581974 ], [ -71.728431701660099, -12.807539939880314 ], [ -71.728096008300781, -12.807861328124943 ], [ -71.726325988769474, -12.808389663696232 ], [ -71.724784851074162, -12.809599876403809 ], [ -71.724090576171875, -12.81044769287098 ], [ -71.723854064941349, -12.811736106872502 ], [ -71.723953247070256, -12.812072753906136 ], [ -71.725463867187443, -12.813697814941406 ], [ -71.725975036621094, -12.815068244934082 ], [ -71.726943969726562, -12.816180229187012 ], [ -71.727142333984375, -12.817846298217773 ], [ -71.727851867675724, -12.819353103637638 ], [ -71.727851867675724, -12.819812774658203 ], [ -71.726654052734375, -12.821216583251896 ], [ -71.723800659179688, -12.823574066162053 ], [ -71.722267150878906, -12.825297355651799 ], [ -71.7208251953125, -12.826470375060978 ], [ -71.719429016113281, -12.828628540039006 ], [ -71.716178894042969, -12.83011531829834 ], [ -71.715446472167912, -12.830819129943848 ], [ -71.714393615722599, -12.832865715026855 ], [ -71.713928222656193, -12.834728240966797 ], [ -71.712348937988281, -12.836758613586369 ], [ -71.710464477539062, -12.83751106262207 ], [ -71.706626892089844, -12.836858749389648 ], [ -71.704467773437443, -12.837398529052734 ], [ -71.698951721191349, -12.84083366394043 ], [ -71.692146301269531, -12.846235275268498 ], [ -71.687637329101562, -12.849332809448242 ], [ -71.683891296386662, -12.850710868835449 ], [ -71.681083679199219, -12.850900650024357 ], [ -71.677825927734375, -12.850082397460938 ], [ -71.674270629882699, -12.848258972167969 ], [ -71.670494079589844, -12.847640991210824 ], [ -71.669967651367131, -12.847273826599121 ], [ -71.667884826660043, -12.846753120422363 ], [ -71.664405822753906, -12.844963073730412 ], [ -71.662055969238224, -12.84345531463623 ], [ -71.660339355468693, -12.842773437499943 ], [ -71.655738830566349, -12.839780807495117 ], [ -71.653930664062443, -12.837923049926758 ], [ -71.650840759277344, -12.833767890930176 ], [ -71.648422241210881, -12.827706336975041 ], [ -71.643936157226506, -12.821575164794865 ], [ -71.639167785644474, -12.816519737243596 ], [ -71.638008117675724, -12.81591606140131 ], [ -71.636505126953011, -12.814678192138672 ], [ -71.635253906249943, -12.814292907714844 ], [ -71.633293151855469, -12.814358711242619 ], [ -71.631683349609375, -12.814789772033691 ], [ -71.629783630371094, -12.81575870513916 ], [ -71.627220153808537, -12.816617965698242 ], [ -71.624710083007812, -12.816793441772347 ], [ -71.622863769531193, -12.816562652587891 ], [ -71.619895935058537, -12.815009117126465 ], [ -71.617050170898324, -12.812893867492676 ], [ -71.616180419921818, -12.811717987060547 ], [ -71.614845275878849, -12.808666229248047 ], [ -71.614219665527344, -12.807738304138127 ], [ -71.612380981445199, -12.80684852600092 ], [ -71.610031127929688, -12.806249618530273 ], [ -71.603317260742074, -12.805828094482422 ], [ -71.601837158203125, -12.805919647216797 ], [ -71.599235534667969, -12.80665111541748 ], [ -71.5980224609375, -12.806772232055607 ], [ -71.596145629882756, -12.807576179504338 ], [ -71.588020324707031, -12.809901237487793 ], [ -71.58465576171875, -12.811491966247559 ], [ -71.581611633300781, -12.8119020462035 ], [ -71.579483032226562, -12.811750411987305 ], [ -71.576911926269531, -12.810434341430664 ], [ -71.574966430664006, -12.809153556823674 ], [ -71.573493957519531, -12.808547019958496 ], [ -71.5704345703125, -12.808707237243539 ], [ -71.56768798828125, -12.807849884033146 ], [ -71.566688537597599, -12.808323860168457 ], [ -71.566543579101562, -12.808943748474121 ], [ -71.565948486328125, -12.809524536132812 ], [ -71.564643859863281, -12.809415817260685 ], [ -71.562530517578125, -12.808451652526855 ], [ -71.560859680175724, -12.808381080627441 ], [ -71.560127258300781, -12.808978080749455 ], [ -71.56002044677723, -12.80958175659174 ], [ -71.559654235839844, -12.810020446777344 ], [ -71.557350158691293, -12.809953689575195 ], [ -71.555984497070256, -12.810747146606388 ], [ -71.554679870605355, -12.812185287475529 ], [ -71.554519653320312, -12.813166618347111 ], [ -71.554122924804688, -12.813566207885742 ], [ -71.553329467773381, -12.813828468322754 ], [ -71.552085876464787, -12.813467979431096 ], [ -71.550682067871094, -12.813584327697697 ], [ -71.549552917480469, -12.814518928527832 ], [ -71.548133850097656, -12.816324234008789 ], [ -71.547073364257812, -12.816670417785531 ], [ -71.543785095214787, -12.818386077880859 ], [ -71.541221618652287, -12.81892204284668 ], [ -71.539268493652344, -12.820990562438908 ], [ -71.537727355957031, -12.821349143981934 ], [ -71.53668212890625, -12.822256088256836 ], [ -71.535400390624943, -12.82282829284668 ], [ -71.534400939941406, -12.823049545288029 ], [ -71.532447814941349, -12.82292366027832 ], [ -71.531723022460938, -12.823120117187443 ], [ -71.528419494628849, -12.825939178466797 ], [ -71.524871826171875, -12.82994556427002 ], [ -71.5242919921875, -12.830238342285156 ], [ -71.522476196289062, -12.830230712890625 ], [ -71.521713256835938, -12.830427169799691 ], [ -71.520896911621037, -12.8311767578125 ], [ -71.519752502441349, -12.832768440246525 ], [ -71.518920898437386, -12.832893371582031 ], [ -71.517776489257699, -12.832514762878361 ], [ -71.516838073730469, -12.832600593566781 ], [ -71.516151428222543, -12.832865715026855 ], [ -71.514877319335881, -12.834200859069824 ], [ -71.514030456542912, -12.834586143493652 ], [ -71.511909484863281, -12.834584236144963 ], [ -71.510734558105469, -12.834841728210336 ], [ -71.510101318359375, -12.835391044616642 ], [ -71.510200500488281, -12.837594985961914 ], [ -71.509757995605412, -12.838303565978947 ], [ -71.509033203125, -12.838203430175668 ], [ -71.508239746093636, -12.837173461914062 ], [ -71.50732421875, -12.837223052978459 ], [ -71.504219055175724, -12.839113235473633 ], [ -71.50238037109375, -12.839776039123535 ], [ -71.500190734863224, -12.841743469238281 ], [ -71.498634338378906, -12.840305328369141 ], [ -71.497970581054688, -12.84025859832758 ], [ -71.496391296386662, -12.841799736022836 ], [ -71.494483947753849, -12.842009544372559 ], [ -71.494186401367131, -12.842501640319824 ], [ -71.494209289550724, -12.843242645263615 ], [ -71.493835449218636, -12.844132423400822 ], [ -71.492042541503906, -12.844161033630314 ], [ -71.489257812499886, -12.847355842590275 ], [ -71.487068176269418, -12.8477783203125 ], [ -71.48592376708973, -12.848893165588322 ], [ -71.479598999023381, -12.849159240722599 ], [ -71.476661682128849, -12.849697113037109 ], [ -71.475059509277344, -12.850433349609375 ], [ -71.472579956054688, -12.85239315032959 ], [ -71.471534729003906, -12.852894783019963 ], [ -71.470603942871094, -12.85264873504633 ], [ -71.467636108398438, -12.849728584289494 ], [ -71.466934204101506, -12.849943161010685 ], [ -71.464973449707031, -12.851489067077637 ], [ -71.463768005371037, -12.851338386535645 ], [ -71.463432312011719, -12.851097106933594 ], [ -71.462448120117131, -12.848819732666016 ], [ -71.461410522460824, -12.848217964172306 ], [ -71.460693359375, -12.848388671874943 ], [ -71.458778381347656, -12.850638389587346 ], [ -71.457870483398381, -12.850707054138184 ], [ -71.457695007324105, -12.849701881408691 ], [ -71.45855712890625, -12.847376823425293 ], [ -71.458366394042969, -12.845911979675293 ], [ -71.457862854003849, -12.84550762176508 ], [ -71.456802368164006, -12.845141410827523 ], [ -71.455886840820312, -12.845271110534668 ], [ -71.455467224121037, -12.845656394958496 ], [ -71.455322265625, -12.846169471740723 ], [ -71.455718994140625, -12.847319602966252 ], [ -71.455253601074219, -12.847809791564941 ], [ -71.453170776367188, -12.848593711853027 ], [ -71.451759338378849, -12.849929809570199 ], [ -71.451095581054631, -12.85094165802002 ], [ -71.451110839843636, -12.852529525756779 ], [ -71.451408386230469, -12.853590011596623 ], [ -71.453498840331918, -12.855559349060059 ], [ -71.45391845703125, -12.856358528137207 ], [ -71.4537353515625, -12.858009338378849 ], [ -71.453025817871094, -12.860390663146973 ], [ -71.451530456542969, -12.863250732421818 ], [ -71.450401306152344, -12.863866806030217 ], [ -71.448104858398438, -12.864529609680119 ], [ -71.444931030273438, -12.867087364196777 ], [ -71.444229125976506, -12.868586540222111 ], [ -71.443870544433594, -12.872153282165527 ], [ -71.443260192871037, -12.87309455871582 ], [ -71.442558288574219, -12.873499870300293 ], [ -71.439949035644474, -12.873527526855469 ], [ -71.438499450683537, -12.872884750366211 ], [ -71.436790466308537, -12.871767997741699 ], [ -71.434463500976562, -12.872712135314885 ], [ -71.433349609374943, -12.872835159301701 ], [ -71.432533264160156, -12.87264442443842 ], [ -71.430152893066406, -12.871164321899414 ], [ -71.429534912109318, -12.871129989623967 ], [ -71.428756713867188, -12.871507644653263 ], [ -71.428375244140625, -12.872035026550179 ], [ -71.428314208984318, -12.872773170471191 ], [ -71.429405212402344, -12.875605583190918 ], [ -71.429550170898381, -12.877079010009709 ], [ -71.429420471191406, -12.878079414367619 ], [ -71.4276123046875, -12.881908416748047 ], [ -71.426651000976562, -12.882464408874512 ], [ -71.425483703613281, -12.882492065429688 ], [ -71.421379089355469, -12.880721092224121 ], [ -71.418937683105412, -12.880165100097543 ], [ -71.416893005371094, -12.880326271057129 ], [ -71.4149169921875, -12.881987571716309 ], [ -71.413665771484375, -12.884145736694336 ], [ -71.412269592285099, -12.885616302490234 ], [ -71.410583496093636, -12.886611938476506 ], [ -71.408264160156193, -12.8873033523559 ], [ -71.407295227050781, -12.888030052185002 ], [ -71.405548095703125, -12.891462326049691 ], [ -71.404510498046875, -12.89264965057373 ], [ -71.403732299804688, -12.893151283264103 ], [ -71.401756286621094, -12.893125534057617 ], [ -71.400421142578125, -12.892818450927678 ], [ -71.396217346191406, -12.889881134033146 ], [ -71.393768310546818, -12.888836860656681 ], [ -71.393165588378906, -12.888809204101506 ], [ -71.391784667968693, -12.889956474304142 ], [ -71.388526916503849, -12.895642280578613 ], [ -71.387191772460881, -12.897169113159123 ], [ -71.384902954101506, -12.898876190185547 ], [ -71.383552551269531, -12.899291038513127 ], [ -71.381774902343693, -12.899420738220215 ], [ -71.380683898925781, -12.89927959442133 ], [ -71.378448486328125, -12.898146629333439 ], [ -71.376182556152344, -12.896383285522461 ], [ -71.371536254882812, -12.894684791564828 ], [ -71.367622375488281, -12.892111778259277 ], [ -71.366012573242131, -12.890509605407658 ], [ -71.364372253417969, -12.886165618896428 ], [ -71.363090515136605, -12.88483715057373 ], [ -71.361946105956918, -12.884443283081055 ], [ -71.359596252441406, -12.884435653686523 ], [ -71.358619689941406, -12.884656906127873 ], [ -71.357139587402287, -12.885450363159123 ], [ -71.355804443359318, -12.886487007141113 ], [ -71.353561401367188, -12.890398025512638 ], [ -71.352157592773438, -12.891996383666992 ], [ -71.344696044921875, -12.896521568298283 ], [ -71.341156005859261, -12.899081230163517 ], [ -71.339828491210938, -12.900362014770508 ], [ -71.336784362792969, -12.904544830322209 ], [ -71.336166381835881, -12.905906677246037 ], [ -71.335105895996094, -12.909720420837402 ], [ -71.333580017089844, -12.912875175476074 ], [ -71.332237243652344, -12.914859771728459 ], [ -71.329856872558594, -12.917463302612248 ], [ -71.329093933105469, -12.91798210144043 ], [ -71.327056884765625, -12.918631553649846 ], [ -71.325569152832031, -12.918700218200684 ], [ -71.324607849121094, -12.919256210327148 ], [ -71.324050903320256, -12.920295715331974 ], [ -71.324394226074219, -12.922086715698242 ], [ -71.323600769042912, -12.923130989074707 ], [ -71.321945190429688, -12.923398017883301 ], [ -71.320854187011719, -12.922932624816895 ], [ -71.320259094238224, -12.923274993896484 ], [ -71.319465637207031, -12.927704811096191 ], [ -71.318496704101562, -12.929496765136719 ], [ -71.318046569824162, -12.92979717254633 ], [ -71.317466735839787, -12.929841041564885 ], [ -71.315010070800724, -12.928166389465332 ], [ -71.314262390136605, -12.928127288818303 ], [ -71.313011169433537, -12.929075241088867 ], [ -71.312744140625, -12.931256294250488 ], [ -71.311515808105469, -12.932863235473633 ], [ -71.310836791992188, -12.933168411254883 ], [ -71.310195922851562, -12.933152198791504 ], [ -71.309257507324219, -12.932711601257324 ], [ -71.308410644531193, -12.932655334472656 ], [ -71.307403564453125, -12.933040618896484 ], [ -71.306365966796875, -12.934478759765625 ], [ -71.303871154785156, -12.94073295593256 ], [ -71.302925109863281, -12.942090988159123 ], [ -71.301567077636662, -12.943481445312443 ], [ -71.299827575683537, -12.94387054443348 ], [ -71.29791259765625, -12.943166732788086 ], [ -71.296783447265568, -12.943205833435059 ], [ -71.294914245605469, -12.945111274719181 ], [ -71.293685913085938, -12.944973945617676 ], [ -71.293296813964844, -12.94520378112793 ], [ -71.292472839355469, -12.94764518737793 ], [ -71.291481018066406, -12.948634147644043 ], [ -71.289726257324162, -12.949232101440373 ], [ -71.286834716796875, -12.949355125427189 ], [ -71.283988952636719, -12.949919700622502 ], [ -71.283729553222599, -12.950293540954533 ], [ -71.283920288085881, -12.951839447021484 ], [ -71.283172607421761, -12.952784538268986 ], [ -71.28271484375, -12.952814102172852 ], [ -71.281929016113168, -12.952028274536133 ], [ -71.281364440917969, -12.951964378356934 ], [ -71.280738830566406, -12.952507019042969 ], [ -71.279876708984375, -12.954227447509709 ], [ -71.279335021972599, -12.954299926757812 ], [ -71.278602600097656, -12.953830718994141 ], [ -71.277938842773438, -12.953694343566838 ], [ -71.277359008789062, -12.95389461517334 ], [ -71.276710510253906, -12.955022811889648 ], [ -71.275711059570256, -12.957815170288029 ], [ -71.274871826171761, -12.959027290344181 ], [ -71.273849487304688, -12.95965576171875 ], [ -71.271903991699162, -12.959943771362305 ], [ -71.270118713378906, -12.961406707763615 ], [ -71.268173217773381, -12.961685180664006 ], [ -71.266563415527287, -12.961249351501465 ], [ -71.265541076660156, -12.961196899414006 ], [ -71.263053894042969, -12.962434768676758 ], [ -71.260459899902287, -12.962992668151799 ], [ -71.259963989257756, -12.962833404540959 ], [ -71.258903503417969, -12.961634635925293 ], [ -71.258499145507812, -12.961465835571175 ], [ -71.254783630371094, -12.963948249816895 ], [ -71.247108459472599, -12.967718124389648 ], [ -71.246185302734375, -12.967831611633187 ], [ -71.244796752929631, -12.968380928039494 ], [ -71.2418212890625, -12.968625068664551 ], [ -71.240318298339787, -12.969100952148438 ], [ -71.236885070800724, -12.969502449035645 ], [ -71.2335205078125, -12.970256805419865 ], [ -71.231384277343636, -12.970919609069767 ], [ -71.229019165039062, -12.972000122070199 ], [ -71.225799560546875, -12.972526550292969 ], [ -71.224212646484318, -12.973307609558049 ], [ -71.221183776855355, -12.974220275878906 ], [ -71.21875, -12.975402832031193 ], [ -71.214042663574219, -12.977140426635742 ], [ -71.2103271484375, -12.977050781249943 ], [ -71.207069396972543, -12.979356765747013 ], [ -71.205673217773438, -12.979317665100098 ], [ -71.204216003417969, -12.978710174560547 ], [ -71.20318603515625, -12.978812217712346 ], [ -71.193733215332031, -12.983801841735726 ], [ -71.191398620605412, -12.984443664550781 ], [ -71.188385009765625, -12.985689163207894 ], [ -71.182991027832031, -12.988803863525391 ], [ -71.180046081542912, -12.989961624145451 ], [ -71.177223205566406, -12.991580009460449 ], [ -71.171867370605412, -12.994182586669922 ], [ -71.166839599609375, -12.997781753539982 ], [ -71.164642333984375, -12.999833106994629 ], [ -71.162017822265568, -13.000587463378849 ], [ -71.158668518066406, -13.002278327941895 ], [ -71.152725219726562, -13.003896713256779 ], [ -71.149757385253906, -13.005244255065861 ], [ -71.147567749023438, -13.006653785705566 ], [ -71.144409179687386, -13.009387016296387 ], [ -71.142211914062443, -13.010589599609318 ], [ -71.140754699706974, -13.011894226074219 ], [ -71.134757995605412, -13.01423263549799 ], [ -71.132438659667969, -13.015723228454533 ], [ -71.12957763671875, -13.018261909484806 ], [ -71.125541687011719, -13.01976203918457 ], [ -71.122642517089787, -13.022203445434513 ], [ -71.119606018066349, -13.025195121765023 ], [ -71.11773681640625, -13.029437065124512 ], [ -71.1171875, -13.029637336730957 ], [ -71.115562438964844, -13.029486656188851 ], [ -71.114402770996094, -13.030134201049805 ], [ -71.114692687988281, -13.03228759765625 ], [ -71.11446380615223, -13.032789230346623 ], [ -71.113906860351562, -13.032689094543457 ], [ -71.111488342285099, -13.030977249145451 ], [ -71.108985900878906, -13.030234336852971 ], [ -71.108207702636719, -13.030747413635197 ], [ -71.10736083984375, -13.032484054565373 ], [ -71.10675048828125, -13.033204078674316 ], [ -71.1060791015625, -13.033420562744027 ], [ -71.104637145996037, -13.033436775207463 ], [ -71.103950500488224, -13.033163070678654 ], [ -71.102935791015625, -13.032218933105469 ], [ -71.1026611328125, -13.031449317932129 ], [ -71.102836608886719, -13.028778076171875 ], [ -71.103340148925781, -13.026079177856445 ], [ -71.103073120117188, -13.024552345275822 ], [ -71.102378845214844, -13.023666381835881 ], [ -71.101814270019531, -13.023376464843693 ], [ -71.101234436035156, -13.023386001586914 ], [ -71.100601196289006, -13.023755073547363 ], [ -71.100204467773438, -13.024786949157658 ], [ -71.099693298339844, -13.025321006774902 ], [ -71.098724365234318, -13.025595664978027 ], [ -71.098152160644474, -13.025162696838379 ], [ -71.097824096679688, -13.02381420135498 ], [ -71.096992492675724, -13.022961616516113 ], [ -71.096519470214787, -13.021565437316895 ], [ -71.095809936523438, -13.020966529846191 ], [ -71.095848083496037, -13.020606994628849 ], [ -71.096549987792969, -13.019759178161507 ], [ -71.096412658691349, -13.018955230712891 ], [ -71.096023559570256, -13.018678665161076 ], [ -71.094535827636605, -13.01848316192627 ], [ -71.093894958496094, -13.018132209777832 ], [ -71.093170166015568, -13.017156600952035 ], [ -71.093177795410099, -13.015711784362793 ], [ -71.092475891113281, -13.015116691589355 ], [ -71.091026306152344, -13.014740943908635 ], [ -71.090370178222656, -13.013954162597599 ], [ -71.090492248535099, -13.013255119323674 ], [ -71.091835021972599, -13.012128829956055 ], [ -71.091880798339844, -13.011469841003418 ], [ -71.091667175292912, -13.011157989501953 ], [ -71.090797424316349, -13.010893821716309 ], [ -71.090011596679688, -13.011343002319222 ], [ -71.089340209960938, -13.012450218200684 ], [ -71.088722229003906, -13.014291763305607 ], [ -71.087051391601562, -13.016144752502385 ], [ -71.086463928222656, -13.01644134521473 ], [ -71.084854125976562, -13.016418457031193 ], [ -71.084098815917969, -13.015946388244629 ], [ -71.082939147949219, -13.014348983764648 ], [ -71.082496643066349, -13.012473106384221 ], [ -71.082435607910156, -13.010362625122013 ], [ -71.081779479980469, -13.009042739868107 ], [ -71.081588745117188, -13.007958412170353 ], [ -71.080696105956974, -13.007474899291992 ], [ -71.07940673828125, -13.007535934448242 ], [ -71.076370239257812, -13.009503364562875 ], [ -71.074974060058537, -13.009383201599121 ], [ -71.073814392089787, -13.008769035339299 ], [ -71.072990417480469, -13.00859355926508 ], [ -71.072242736816406, -13.008662223815861 ], [ -71.071701049804688, -13.008988380432129 ], [ -71.071205139160156, -13.00956916809082 ], [ -71.070999145507812, -13.010388374328613 ], [ -71.071014404296875, -13.010918617248478 ], [ -71.071350097656193, -13.011240005493107 ], [ -71.071273803710938, -13.011771202087402 ], [ -71.070701599121094, -13.01226806640625 ], [ -71.069023132324219, -13.013063430786133 ], [ -71.067810058593693, -13.014326095581055 ], [ -71.067817687988224, -13.015346527099609 ], [ -71.067588806152344, -13.015857696533146 ], [ -71.06783294677723, -13.016782760620117 ], [ -71.067718505859318, -13.017067909240723 ], [ -71.067001342773438, -13.017391204833928 ], [ -71.064956665039006, -13.01710033416748 ], [ -71.063713073730412, -13.017305374145508 ], [ -71.063331604003849, -13.019014358520508 ], [ -71.063629150390568, -13.02098560333252 ], [ -71.063484191894531, -13.023463249206486 ], [ -71.062370300292912, -13.025693893432617 ], [ -71.060882568359375, -13.02768611907959 ], [ -71.060035705566406, -13.028402328491154 ], [ -71.058914184570312, -13.028330802917424 ], [ -71.057907104492131, -13.02772045135498 ], [ -71.057983398437443, -13.026954650878906 ], [ -71.058692932128906, -13.025774002075195 ], [ -71.058670043945256, -13.024575233459359 ], [ -71.057449340820312, -13.022950172424203 ], [ -71.055961608886719, -13.02223014831543 ], [ -71.054580688476562, -13.021903991699219 ], [ -71.052902221679688, -13.021815299987793 ], [ -71.051216125488224, -13.021103858947697 ], [ -71.050430297851562, -13.020334243774414 ], [ -71.046218872070312, -13.019150733947754 ], [ -71.043228149413949, -13.019103050231934 ], [ -71.041770935058537, -13.018875122070312 ], [ -71.039009094238224, -13.019401550292855 ], [ -71.036254882812443, -13.020242691040039 ], [ -71.032882690429688, -13.022212028503361 ], [ -71.0299072265625, -13.022363662719727 ], [ -71.025871276855355, -13.023250579833984 ], [ -71.021781921386719, -13.025065422058049 ], [ -71.020416259765568, -13.026172637939339 ], [ -71.018943786621094, -13.026980400085392 ], [ -71.010856628417969, -13.030068397521916 ], [ -71.005241394042912, -13.031062126159668 ], [ -71.001113891601562, -13.032415390014535 ], [ -70.998855590820256, -13.03247165679926 ], [ -70.996299743652287, -13.03334999084467 ], [ -70.994056701660156, -13.033199310302678 ], [ -70.990203857421761, -13.033961296081486 ], [ -70.9888916015625, -13.033958435058537 ], [ -70.987266540527344, -13.033255577087402 ], [ -70.985336303710824, -13.032994270324707 ], [ -70.984542846679631, -13.031950950622502 ], [ -70.982589721679688, -13.030368804931527 ], [ -70.980499267578125, -13.027774810790959 ], [ -70.979537963867188, -13.027380943298283 ], [ -70.978256225585881, -13.028571128845215 ], [ -70.976852416992074, -13.031769752502441 ], [ -70.975494384765568, -13.03374195098877 ], [ -70.972541809081974, -13.036419868469238 ], [ -70.969329833984375, -13.038933753967285 ], [ -70.967803955078125, -13.039558410644531 ], [ -70.965179443359318, -13.039437294006291 ], [ -70.964302062988281, -13.039676666259709 ], [ -70.96038818359375, -13.039435386657715 ], [ -70.958976745605469, -13.039934158325138 ], [ -70.955436706542969, -13.042001724243164 ], [ -70.951507568359375, -13.041949272155705 ], [ -70.948081970214844, -13.042372703552246 ], [ -70.947196960449219, -13.042655944824162 ], [ -70.945167541503849, -13.043796539306584 ], [ -70.942993164062386, -13.044376373290959 ], [ -70.941818237304631, -13.044937133789006 ], [ -70.939041137695312, -13.045351982116699 ], [ -70.936630249023438, -13.046072006225586 ], [ -70.931678771972656, -13.046416282653809 ], [ -70.926742553710938, -13.049228668212834 ], [ -70.923942565917969, -13.050241470336857 ], [ -70.922714233398438, -13.051382064819279 ], [ -70.921813964843693, -13.053333282470646 ], [ -70.921119689941349, -13.054092407226506 ], [ -70.918563842773381, -13.05460071563715 ], [ -70.914085388183537, -13.056471824645882 ], [ -70.909889221191349, -13.056748390197754 ], [ -70.908721923828068, -13.05753231048584 ], [ -70.907752990722656, -13.058525085449219 ], [ -70.905364990234375, -13.059336662292367 ], [ -70.903533935546875, -13.060453414916879 ], [ -70.899925231933594, -13.06096363067627 ], [ -70.898246765136662, -13.061543464660588 ], [ -70.897140502929688, -13.062662124633789 ], [ -70.896430969238224, -13.063949584960938 ], [ -70.893760681152287, -13.066650390625 ], [ -70.893203735351506, -13.069446563720646 ], [ -70.892593383789062, -13.070420265197697 ], [ -70.892036437988224, -13.07044506072998 ], [ -70.890113830566406, -13.069795608520451 ], [ -70.888244628906193, -13.069564819335824 ], [ -70.887336730957031, -13.069795608520451 ], [ -70.885772705078011, -13.07061767578125 ], [ -70.884391784667969, -13.070504188537541 ], [ -70.883209228515625, -13.070802688598633 ], [ -70.87939453125, -13.073900222778207 ], [ -70.875251770019474, -13.075357437133789 ], [ -70.873947143554574, -13.076391220092773 ], [ -70.871688842773438, -13.077691078185921 ], [ -70.869194030761719, -13.078950881957951 ], [ -70.867416381835938, -13.079543113708439 ], [ -70.864730834960938, -13.079915046691895 ], [ -70.862052917480469, -13.079539299011174 ], [ -70.857093811035156, -13.079584121704102 ], [ -70.856681823730412, -13.079362869262695 ], [ -70.852867126464787, -13.079003334045353 ], [ -70.85201263427723, -13.07816028594965 ], [ -70.850936889648381, -13.076094627380314 ], [ -70.850105285644418, -13.071491241455078 ], [ -70.844314575195312, -13.067293167114201 ], [ -70.843193054199219, -13.066796302795353 ], [ -70.841171264648438, -13.067124366760254 ], [ -70.8389892578125, -13.06815242767334 ], [ -70.837409973144474, -13.067882537841797 ], [ -70.832450866699162, -13.067814826965332 ], [ -70.829956054687443, -13.067465782165527 ], [ -70.828865051269531, -13.067747116088867 ], [ -70.826583862304688, -13.06879997253418 ], [ -70.823707580566406, -13.069160461425724 ], [ -70.821846008300724, -13.070022583007756 ], [ -70.820648193359375, -13.069761276245117 ], [ -70.818885803222599, -13.069848060607853 ], [ -70.818130493164006, -13.069657325744572 ], [ -70.814056396484261, -13.072548866271973 ], [ -70.814018249511719, -13.073939323425293 ], [ -70.812179565429688, -13.077752113342228 ], [ -70.810867309570312, -13.079055786132812 ], [ -70.806556701660156, -13.081800460815373 ], [ -70.804374694824219, -13.083811759948674 ], [ -70.802665710449219, -13.085884094238281 ], [ -70.801147460937443, -13.089035987853947 ], [ -70.800529479980469, -13.089838027954102 ], [ -70.797294616699219, -13.091282844543457 ], [ -70.792427062988281, -13.092122077941895 ], [ -70.790008544921818, -13.093517303466797 ], [ -70.784111022949105, -13.097571372985783 ], [ -70.779579162597656, -13.099734306335392 ], [ -70.776634216308594, -13.102246284484863 ], [ -70.773696899414006, -13.103176116943359 ], [ -70.7691650390625, -13.105552673339844 ], [ -70.766090393066293, -13.106674194335938 ], [ -70.761024475097599, -13.107085227966252 ], [ -70.758010864257812, -13.105855941772461 ], [ -70.755203247070256, -13.105640411376953 ], [ -70.751983642578125, -13.105035781860352 ], [ -70.747177124023381, -13.103522300720215 ], [ -70.744285583496094, -13.10338306427002 ], [ -70.734474182128906, -13.104780197143498 ], [ -70.7296142578125, -13.105035781860352 ], [ -70.727142333984318, -13.105525970458984 ], [ -70.723594665527344, -13.10573768615717 ], [ -70.722808837890625, -13.106049537658691 ], [ -70.721748352050781, -13.106951713562012 ], [ -70.712020874023438, -13.109169960021973 ], [ -70.710311889648438, -13.108584403991699 ], [ -70.70745849609375, -13.105810165405273 ], [ -70.704864501953011, -13.104540824890023 ], [ -70.701690673828068, -13.104317665100098 ], [ -70.698196411132812, -13.105332374572697 ], [ -70.696800231933594, -13.10551643371582 ], [ -70.693382263183537, -13.105008125305176 ], [ -70.689125061035043, -13.103873252868539 ], [ -70.687461853027344, -13.10304069519043 ], [ -70.686515808105412, -13.102149963378849 ], [ -70.684745788574219, -13.100001335144043 ], [ -70.683723449707031, -13.098360061645508 ], [ -70.682144165039006, -13.096917152404785 ], [ -70.680381774902344, -13.096213340759221 ], [ -70.678321838378849, -13.096096992492562 ], [ -70.676956176757812, -13.095759391784611 ], [ -70.675292968749943, -13.094016075134221 ], [ -70.673530578613281, -13.093437194824219 ], [ -70.671928405761662, -13.091633796691895 ], [ -70.669898986816406, -13.090328216552678 ], [ -70.667991638183594, -13.089836120605469 ], [ -70.663261413574162, -13.089188575744629 ], [ -70.661613464355469, -13.088004112243596 ], [ -70.660041809081918, -13.088286399841309 ], [ -70.658020019531193, -13.09068584442133 ], [ -70.657379150390625, -13.090864181518498 ], [ -70.655143737792912, -13.092666625976562 ], [ -70.652580261230412, -13.093544006347656 ], [ -70.649246215820256, -13.093209266662541 ], [ -70.646484374999943, -13.091843605041504 ], [ -70.643920898437386, -13.091313362121525 ], [ -70.642013549804574, -13.090505599975586 ], [ -70.639823913574105, -13.090903282165414 ], [ -70.637229919433537, -13.090624809265137 ], [ -70.63470458984375, -13.091320037841797 ], [ -70.63079833984375, -13.091695785522461 ], [ -70.625480651855412, -13.093140602111703 ], [ -70.621620178222656, -13.095895767211857 ], [ -70.618453979492131, -13.096626281738224 ], [ -70.616493225097656, -13.098614692687988 ], [ -70.615791320800668, -13.099070549011174 ], [ -70.611045837402344, -13.099494934081974 ], [ -70.608589172363281, -13.100941658019963 ], [ -70.607391357421818, -13.101181983947754 ], [ -70.604125976562443, -13.101108551025334 ], [ -70.601470947265568, -13.100223541259766 ], [ -70.599952697753849, -13.099027633666992 ], [ -70.597999572753906, -13.099884986877385 ], [ -70.595970153808594, -13.100231170654297 ], [ -70.594490051269474, -13.100798606872502 ], [ -70.593742370605412, -13.100777626037598 ], [ -70.590995788574105, -13.101380348205566 ], [ -70.584312438964787, -13.104458808898869 ], [ -70.581184387207031, -13.105016708374023 ], [ -70.577072143554574, -13.104937553405762 ], [ -70.575386047363281, -13.105170249938908 ], [ -70.573104858398438, -13.106005668640137 ], [ -70.570953369140568, -13.107302665710336 ], [ -70.563636779785156, -13.109251976013184 ], [ -70.561294555664062, -13.110122680664062 ], [ -70.555801391601449, -13.110639572143555 ], [ -70.554244995117131, -13.110983848571777 ], [ -70.546768188476562, -13.111439704894963 ], [ -70.543083190917912, -13.11324310302723 ], [ -70.535408020019531, -13.114416122436467 ], [ -70.532554626464844, -13.115286827087346 ], [ -70.530776977539062, -13.115229606628418 ], [ -70.528411865234318, -13.114701271057129 ], [ -70.525337219238281, -13.114640235900879 ], [ -70.523033142089844, -13.114986419677734 ], [ -70.519317626953125, -13.115949630737248 ], [ -70.518104553222599, -13.11599063873291 ], [ -70.516944885253906, -13.115260124206543 ], [ -70.516632080078125, -13.113813400268555 ], [ -70.515426635742131, -13.111239433288574 ], [ -70.512359619140625, -13.109861373901367 ], [ -70.509674072265625, -13.109560012817326 ], [ -70.508323669433594, -13.10867977142334 ], [ -70.507499694824219, -13.107575416564941 ], [ -70.506431579589844, -13.10451602935791 ], [ -70.505599975585938, -13.103653907775879 ], [ -70.505462646484375, -13.103032112121525 ], [ -70.504203796386662, -13.102287292480469 ], [ -70.502342224121094, -13.100260734558105 ], [ -70.500572204589787, -13.099499702453556 ], [ -70.49688720703125, -13.099191665649414 ], [ -70.4954833984375, -13.09857177734375 ], [ -70.493057250976562, -13.09696102142334 ], [ -70.491516113281193, -13.094724655151367 ], [ -70.490119934082031, -13.091371536254883 ], [ -70.489944458007812, -13.09016227722168 ], [ -70.490036010742188, -13.089612960815373 ], [ -70.490493774414062, -13.088970184326172 ], [ -70.493087768554688, -13.086556434631291 ], [ -70.493568420410156, -13.084587097167969 ], [ -70.493408203124943, -13.083025932312012 ], [ -70.492668151855355, -13.081246376037598 ], [ -70.491508483886662, -13.079249382018986 ], [ -70.489547729492188, -13.076674461364689 ], [ -70.487159729003906, -13.07420635223383 ], [ -70.484664916992188, -13.072439193725529 ], [ -70.480583190917969, -13.070187568664551 ], [ -70.475746154785156, -13.069462776184025 ], [ -70.470603942871037, -13.069579124450684 ], [ -70.468841552734375, -13.069421768188363 ], [ -70.466598510742131, -13.068767547607365 ], [ -70.463386535644474, -13.068222999572697 ], [ -70.460212707519474, -13.06669807434082 ], [ -70.456939697265625, -13.065902709960881 ], [ -70.447708129882812, -13.067244529724064 ], [ -70.446380615234318, -13.06794261932373 ], [ -70.445198059082031, -13.068985939025822 ], [ -70.443756103515625, -13.069836616516056 ], [ -70.438301086425724, -13.071704864501953 ], [ -70.434303283691293, -13.072004318237305 ], [ -70.433578491210938, -13.071783065795842 ], [ -70.430778503417855, -13.071670532226562 ], [ -70.423568725585938, -13.070820808410588 ], [ -70.420852661132756, -13.07089900970459 ], [ -70.419258117675781, -13.071401596069279 ], [ -70.415275573730469, -13.074434280395508 ], [ -70.40716552734375, -13.081774711608887 ], [ -70.403518676757812, -13.085946083068848 ], [ -70.401908874511719, -13.088632583618164 ], [ -70.401443481445312, -13.090316772460881 ], [ -70.4012451171875, -13.094182014465275 ], [ -70.401847839355412, -13.096213340759221 ], [ -70.401603698730469, -13.096705436706486 ], [ -70.40179443359375, -13.097161293029785 ], [ -70.402236938476506, -13.098212242126408 ], [ -70.40228271484375, -13.099040985107422 ], [ -70.402366638183594, -13.100408554077092 ], [ -70.402236938476506, -13.102510452270394 ], [ -70.401489257812443, -13.107218742370605 ], [ -70.401496887206918, -13.10752010345459 ], [ -70.40155029296875, -13.110074996948242 ], [ -70.402008056640625, -13.11318302154541 ], [ -70.401512145996094, -13.118286132812443 ], [ -70.402061462402287, -13.121452331542969 ], [ -70.403762817382756, -13.122564315795898 ], [ -70.404983520507812, -13.122632980346566 ], [ -70.407135009765625, -13.123229980468693 ], [ -70.409942626953125, -13.123398780822754 ], [ -70.411933898925781, -13.124153137207031 ], [ -70.413932800292969, -13.125351905822697 ], [ -70.415565490722656, -13.126752853393555 ], [ -70.416168212890568, -13.127555847167969 ], [ -70.416511535644531, -13.129330635070801 ], [ -70.416275024414006, -13.130017280578556 ], [ -70.413818359375, -13.132258415222111 ], [ -70.411064147949219, -13.133426666259709 ], [ -70.4090576171875, -13.13374137878418 ], [ -70.407096862792912, -13.133524894714299 ], [ -70.404693603515625, -13.132500648498478 ], [ -70.401405334472543, -13.130448341369629 ], [ -70.396652221679688, -13.126728057861328 ], [ -70.395011901855355, -13.125798225402832 ], [ -70.393547058105412, -13.125248908996525 ], [ -70.392044067382756, -13.125404357910156 ], [ -70.390785217285099, -13.126191139221191 ], [ -70.390228271484318, -13.126291275024414 ], [ -70.388191223144531, -13.128039360046387 ], [ -70.387832641601506, -13.128679275512695 ], [ -70.387741088867131, -13.130050659179688 ], [ -70.388504028320256, -13.131532669067383 ], [ -70.391716003417969, -13.134979248046818 ], [ -70.392799377441349, -13.13669490814209 ], [ -70.395133972167969, -13.139440536499023 ], [ -70.396186828613281, -13.14128303527832 ], [ -70.397529602050781, -13.14268684387207 ], [ -70.398803710937443, -13.144935607910156 ], [ -70.399330139160156, -13.146306037902832 ], [ -70.399978637695312, -13.147102355957031 ], [ -70.400199890136719, -13.148286819457894 ], [ -70.399833679199219, -13.149398803710938 ], [ -70.398971557617188, -13.150871276855469 ], [ -70.397941589355412, -13.151807785034123 ], [ -70.394744873046875, -13.153709411621094 ], [ -70.391220092773438, -13.15542030334467 ], [ -70.387557983398381, -13.157770156860352 ], [ -70.386367797851562, -13.159293174743652 ], [ -70.385490417480469, -13.16141223907465 ], [ -70.385391235351562, -13.163618087768498 ], [ -70.386009216308594, -13.166679382324219 ], [ -70.386024475097599, -13.169329643249512 ], [ -70.385421752929688, -13.170870780944824 ], [ -70.3839111328125, -13.172817230224553 ], [ -70.383460998535099, -13.173783302307129 ], [ -70.38323974609375, -13.176293373107853 ], [ -70.383476257324105, -13.181031227111816 ], [ -70.383674621582031, -13.181936264038029 ], [ -70.38433837890625, -13.183148384094181 ], [ -70.387527465820312, -13.186756134033146 ], [ -70.387786865234375, -13.187367439269906 ], [ -70.387237548828125, -13.190204620361214 ], [ -70.385841369628849, -13.192146301269531 ], [ -70.385353088378849, -13.193815231323242 ], [ -70.385368347167912, -13.195645332336369 ], [ -70.385932922363224, -13.197492599487248 ], [ -70.385925292968693, -13.198134422302246 ], [ -70.386688232421818, -13.20029354095459 ], [ -70.386611938476506, -13.201491355895939 ], [ -70.386054992675781, -13.203147888183537 ], [ -70.386062622070312, -13.204066276550236 ], [ -70.386573791503906, -13.205737113952637 ], [ -70.389236450195312, -13.209149360656738 ], [ -70.390403747558537, -13.212945938110238 ], [ -70.390838623046875, -13.215315818786621 ], [ -70.390472412109375, -13.216509819030762 ], [ -70.388130187988224, -13.218641281127873 ], [ -70.387809753417969, -13.219905853271484 ], [ -70.388710021972599, -13.222988128662053 ], [ -70.390357971191406, -13.226876258850098 ], [ -70.39119720458973, -13.227990150451546 ], [ -70.391845703124943, -13.228489875793457 ], [ -70.392509460449162, -13.228683471679688 ], [ -70.394348144531136, -13.22834587097168 ], [ -70.398551940917969, -13.228232383727914 ], [ -70.399711608886719, -13.227873802185059 ], [ -70.402427673339787, -13.227724075317326 ], [ -70.404945373535156, -13.227796554565373 ], [ -70.406425476074162, -13.228357315063477 ], [ -70.407539367675781, -13.229611396789437 ], [ -70.407485961914006, -13.232441902160588 ], [ -70.407890319824105, -13.233268737792969 ], [ -70.408706665039062, -13.233871459960881 ], [ -70.410614013671875, -13.234624862670898 ], [ -70.411735534667969, -13.235447883605957 ], [ -70.415420532226449, -13.236479759216309 ], [ -70.417335510253906, -13.237604141235352 ], [ -70.4183349609375, -13.239055633544922 ], [ -70.418609619140625, -13.239934921264535 ], [ -70.418670654296875, -13.241414070129338 ], [ -70.419403076171818, -13.242563247680664 ], [ -70.420547485351506, -13.243794441223088 ], [ -70.420921325683537, -13.24380970001215 ], [ -70.421379089355469, -13.244258880615178 ], [ -70.422676086425781, -13.244490623474121 ], [ -70.423538208007812, -13.244929313659668 ], [ -70.42376708984375, -13.245854377746582 ], [ -70.423706054687443, -13.247736930847168 ], [ -70.422080993652287, -13.251946449279785 ], [ -70.421325683593693, -13.252897262573185 ], [ -70.420349121093693, -13.253574371337891 ], [ -70.417610168456974, -13.254776954650822 ], [ -70.415397644042912, -13.255080223083496 ], [ -70.411964416503849, -13.256549835205021 ], [ -70.409263610839844, -13.256689071655217 ], [ -70.407783508300724, -13.25724983215332 ], [ -70.407402038574162, -13.258468627929631 ], [ -70.407485961914006, -13.262041091918888 ], [ -70.406631469726506, -13.263025283813477 ], [ -70.404724121093693, -13.263786315917969 ], [ -70.402885437011719, -13.26411247253418 ], [ -70.401344299316406, -13.265032768249455 ], [ -70.400657653808594, -13.265217781066895 ], [ -70.398208618164062, -13.265047073364258 ], [ -70.396942138671875, -13.264710426330453 ], [ -70.393486022949105, -13.264538764953613 ], [ -70.389755249023381, -13.264488220214787 ], [ -70.389137268066406, -13.264720916748047 ], [ -70.386589050292912, -13.264944076538086 ], [ -70.383453369140568, -13.266087532043457 ], [ -70.381530761718693, -13.266448974609375 ], [ -70.380363464355469, -13.267023086547738 ], [ -70.375999450683537, -13.26843070983881 ], [ -70.374710083007812, -13.268966674804631 ], [ -70.372589111328068, -13.270298004150334 ], [ -70.370346069335938, -13.272269248962346 ], [ -70.367988586425724, -13.276004791259709 ], [ -70.366577148437443, -13.277475357055607 ], [ -70.365211486816406, -13.278269767761174 ], [ -70.361686706542969, -13.279179573059025 ], [ -70.359252929687386, -13.280875205993539 ], [ -70.357986450195256, -13.282347679138184 ], [ -70.356063842773438, -13.285829544067383 ], [ -70.355041503906193, -13.287136077880859 ], [ -70.353309631347599, -13.288022994995117 ], [ -70.351066589355469, -13.288125038146973 ], [ -70.349494934081974, -13.288451194763184 ], [ -70.347679138183537, -13.289525032043457 ], [ -70.347686767578068, -13.291174888610726 ], [ -70.34869384765625, -13.293339729309082 ], [ -70.348731994628849, -13.296070098876953 ], [ -70.348266601562443, -13.297470092773381 ], [ -70.34814453125, -13.298839569091797 ], [ -70.347564697265625, -13.299990653991699 ], [ -70.346923828124943, -13.302675247192326 ], [ -70.345878601074162, -13.305018424987793 ], [ -70.346649169921818, -13.307266235351562 ], [ -70.347076416015625, -13.307637214660645 ], [ -70.348052978515625, -13.307978630065918 ], [ -70.348777770996094, -13.307910919189453 ], [ -70.350921630859318, -13.30695629119873 ], [ -70.352401733398438, -13.305685997009277 ], [ -70.353515624999943, -13.30558967590332 ], [ -70.354232788085938, -13.305171012878361 ], [ -70.355438232421761, -13.305121421813965 ], [ -70.359916687011605, -13.303498268127385 ], [ -70.363456726074219, -13.30317497253418 ], [ -70.366752624511662, -13.302144050598145 ], [ -70.369255065917912, -13.301937103271428 ], [ -70.370140075683594, -13.302593231201172 ], [ -70.370346069335938, -13.305511474609375 ], [ -70.371185302734375, -13.306642532348633 ], [ -70.371963500976562, -13.307126998901367 ], [ -70.372726440429688, -13.307069778442326 ], [ -70.373634338378849, -13.3062744140625 ], [ -70.37408447265625, -13.306156158447209 ], [ -70.375015258789062, -13.306254386901855 ], [ -70.376937866210938, -13.306974411010685 ], [ -70.378807067871094, -13.306953430175781 ], [ -70.380752563476562, -13.306053161621037 ], [ -70.383354187011662, -13.304249763488713 ], [ -70.384651184082031, -13.304021835327035 ], [ -70.385375976562443, -13.304141044616586 ], [ -70.386383056640625, -13.304674148559513 ], [ -70.387527465820312, -13.30599403381342 ], [ -70.38881683349598, -13.306909561157227 ], [ -70.392097473144531, -13.308421134948674 ], [ -70.393836975097599, -13.308778762817326 ], [ -70.394447326660156, -13.309211730956974 ], [ -70.394569396972656, -13.310567855834904 ], [ -70.393882751464844, -13.31208610534668 ], [ -70.393714904785156, -13.31353759765625 ], [ -70.392738342285156, -13.315826416015625 ], [ -70.392425537109318, -13.317950248718205 ], [ -70.393074035644474, -13.319411277770996 ], [ -70.395202636718636, -13.322707176208439 ], [ -70.396102905273438, -13.324929237365723 ], [ -70.397254943847656, -13.32612323760975 ], [ -70.397682189941293, -13.32808780670166 ], [ -70.397468566894474, -13.328885078430119 ], [ -70.396659851074219, -13.329783439636174 ], [ -70.395126342773438, -13.33039379119873 ], [ -70.394523620605412, -13.331087112426701 ], [ -70.394142150878849, -13.334829330444222 ], [ -70.3934326171875, -13.338523864746094 ], [ -70.3934326171875, -13.339822769165039 ], [ -70.393928527831974, -13.341769218444824 ], [ -70.395919799804688, -13.345520973205566 ], [ -70.396354675292969, -13.346836090087891 ], [ -70.397727966308594, -13.348690986633244 ], [ -70.398391723632812, -13.35277080535883 ], [ -70.399406433105469, -13.354528427124023 ], [ -70.400093078613281, -13.356234550476074 ], [ -70.400604248046818, -13.359307289123478 ], [ -70.400375366210938, -13.362796783447209 ], [ -70.400497436523438, -13.367070198059082 ], [ -70.400947570800781, -13.366963386535645 ], [ -70.404312133789062, -13.364797592163086 ], [ -70.407974243164006, -13.361788749694824 ], [ -70.409400939941349, -13.361137390136719 ], [ -70.411308288574162, -13.359244346618596 ], [ -70.413703918456918, -13.358456611633187 ], [ -70.415641784667969, -13.357329368591252 ], [ -70.416664123535043, -13.356245994567871 ], [ -70.417442321777344, -13.354999542236214 ], [ -70.417327880859261, -13.353618621826172 ], [ -70.417472839355469, -13.352636337280217 ], [ -70.418487548828125, -13.351952552795353 ], [ -70.422111511230469, -13.352251052856388 ], [ -70.426994323730469, -13.35344123840332 ], [ -70.430526733398438, -13.351216316223145 ], [ -70.43243408203125, -13.350763320922852 ], [ -70.433303833007812, -13.351598739623967 ], [ -70.434341430664062, -13.354637145996094 ], [ -70.435676574707031, -13.355337142944336 ], [ -70.443801879882812, -13.357621192932129 ], [ -70.446792602539006, -13.357757568359318 ], [ -70.450805664062386, -13.357559204101506 ], [ -70.452194213867188, -13.358142852783089 ], [ -70.453437805175724, -13.359139442443848 ], [ -70.453941345214787, -13.360094070434513 ], [ -70.45361328125, -13.361909866332894 ], [ -70.452377319335938, -13.364583969116097 ], [ -70.450431823730469, -13.367163658142033 ], [ -70.449295043945312, -13.369974136352539 ], [ -70.447937011718693, -13.372493743896484 ], [ -70.447525024414006, -13.379546165466252 ], [ -70.445198059082031, -13.384021759033203 ], [ -70.444412231445199, -13.388019561767578 ], [ -70.44482421875, -13.388675689697266 ], [ -70.445640563964787, -13.389340400695744 ], [ -70.449615478515625, -13.391025543212834 ], [ -70.450691223144474, -13.391974449157601 ], [ -70.451522827148438, -13.393448829650822 ], [ -70.451812744140625, -13.394708633422795 ], [ -70.452186584472656, -13.40240573883051 ], [ -70.452354431152344, -13.403402328491211 ], [ -70.452735900878906, -13.403921127319336 ], [ -70.453224182128906, -13.405696868896428 ], [ -70.455528259277344, -13.408101081848145 ], [ -70.457611083984375, -13.409473419189453 ], [ -70.458656311035156, -13.410537719726562 ], [ -70.45900726318348, -13.411464691162109 ], [ -70.459037780761719, -13.414261817932129 ], [ -70.459365844726506, -13.41553783416748 ], [ -70.460914611816293, -13.416910171508732 ], [ -70.463310241699219, -13.418387413024846 ], [ -70.464286804199219, -13.419379234313965 ], [ -70.467300415038949, -13.424240112304688 ], [ -70.472259521484261, -13.430917739868164 ], [ -70.472938537597656, -13.432121276855412 ], [ -70.473159790039062, -13.433387756347543 ], [ -70.47296142578125, -13.434836387634277 ], [ -70.472412109375, -13.435620307922363 ], [ -70.460716247558537, -13.43729305267334 ], [ -70.4571533203125, -13.438597679138127 ], [ -70.454727172851562, -13.440187454223576 ], [ -70.454612731933537, -13.440688133239689 ], [ -70.454978942871037, -13.44155216217041 ], [ -70.457206726074219, -13.443567276000977 ], [ -70.45806884765625, -13.444774627685547 ], [ -70.458740234375, -13.447248458862248 ], [ -70.458496093749943, -13.448801994323674 ], [ -70.459098815917855, -13.450238227844238 ], [ -70.460342407226449, -13.451857566833439 ], [ -70.462112426757812, -13.45363807678217 ], [ -70.463447570800781, -13.454482078552246 ], [ -70.464378356933594, -13.455392837524414 ], [ -70.465476989746037, -13.45590877532959 ], [ -70.466606140136662, -13.457137107849121 ], [ -70.468811035156193, -13.460954666137695 ], [ -70.470901489257756, -13.466151237487736 ], [ -70.472541809081974, -13.46827316284174 ], [ -70.473159790039062, -13.468831062316895 ], [ -70.475837707519531, -13.470169067382756 ], [ -70.476783752441406, -13.470889091491699 ], [ -70.481422424316406, -13.476753234863224 ], [ -70.483818054199219, -13.478996276855469 ], [ -70.487594604492131, -13.484998703002873 ], [ -70.491493225097599, -13.493130683898926 ], [ -70.493194580078125, -13.495506286621094 ], [ -70.494865417480355, -13.497302055358887 ], [ -70.49800872802723, -13.499850273132324 ], [ -70.5001220703125, -13.501186370849553 ], [ -70.501686096191406, -13.501511573791504 ], [ -70.506385803222599, -13.501767158508244 ], [ -70.511886596679688, -13.503353118896428 ], [ -70.514129638671761, -13.506008148193359 ], [ -70.515693664550781, -13.508415222167912 ], [ -70.521003723144531, -13.51448917388916 ], [ -70.524024963378849, -13.516537666320744 ], [ -70.526519775390568, -13.518800735473633 ], [ -70.529655456542912, -13.520066261291447 ], [ -70.53387451171875, -13.522746086120605 ], [ -70.534584045410156, -13.523319244384652 ], [ -70.536056518554631, -13.525381088256836 ], [ -70.537895202636719, -13.528383255004883 ], [ -70.538925170898324, -13.530971527099609 ], [ -70.541114807128793, -13.535185813903752 ], [ -70.542823791503849, -13.539544105529728 ], [ -70.544517517089787, -13.542929649352971 ], [ -70.545455932617188, -13.544252395629769 ], [ -70.546417236328125, -13.547823905944824 ], [ -70.546173095703011, -13.54893779754633 ], [ -70.544830322265568, -13.551600456237736 ], [ -70.544212341308594, -13.553845405578556 ], [ -70.542137145996037, -13.557115554809513 ], [ -70.541213989257699, -13.561138153076172 ], [ -70.541206359863224, -13.563656806945744 ], [ -70.542251586914006, -13.568012237548771 ], [ -70.541481018066349, -13.570865631103516 ], [ -70.541542053222656, -13.573625564575082 ], [ -70.5421142578125, -13.577359199523926 ], [ -70.542572021484375, -13.578487396240234 ], [ -70.543426513671875, -13.579214096069336 ], [ -70.544151306152287, -13.57921028137207 ], [ -70.548507690429688, -13.576231002807617 ], [ -70.549430847167969, -13.576185226440373 ], [ -70.550582885742188, -13.576465606689453 ], [ -70.551399230956974, -13.576877593994141 ], [ -70.552040100097656, -13.577521324157715 ], [ -70.553482055664006, -13.58071231842041 ], [ -70.554718017578068, -13.582393646240234 ], [ -70.555534362792969, -13.582965850830078 ], [ -70.556968688964844, -13.582667350769043 ], [ -70.557975769042912, -13.583090782165414 ], [ -70.558471679687386, -13.583603858947697 ], [ -70.558868408203125, -13.58458423614502 ], [ -70.559738159179688, -13.584746360778809 ], [ -70.559768676757812, -13.585729598998967 ], [ -70.560150146484375, -13.586338996887207 ], [ -70.561271667480469, -13.586729049682617 ], [ -70.562736511230412, -13.586847305297795 ], [ -70.565032958984318, -13.586726188659668 ], [ -70.568443298339844, -13.586047172546273 ], [ -70.571701049804631, -13.586509704589844 ], [ -70.572532653808594, -13.587029457092228 ], [ -70.572807312011719, -13.588179588317871 ], [ -70.573585510253906, -13.589878082275334 ], [ -70.574356079101562, -13.590415954589844 ], [ -70.575538635253849, -13.590671539306641 ], [ -70.577651977539062, -13.589835166931096 ], [ -70.579086303710938, -13.589525222778263 ], [ -70.581275939941406, -13.589252471923828 ], [ -70.582420349121094, -13.589541435241642 ], [ -70.58331298828125, -13.590151786804086 ], [ -70.584335327148438, -13.591317176818791 ], [ -70.585029602050781, -13.593169212341252 ], [ -70.585502624511719, -13.595997810363713 ], [ -70.586196899414006, -13.597058296203556 ], [ -70.58721923828125, -13.597967147827148 ], [ -70.588722229003906, -13.598426818847656 ], [ -70.592758178710938, -13.598997116088754 ], [ -70.594673156738281, -13.598874092101937 ], [ -70.59808349609375, -13.598170280456543 ], [ -70.599082946777287, -13.598252296447754 ], [ -70.600662231445312, -13.598757743835449 ], [ -70.60247802734375, -13.599961280822754 ], [ -70.605010986328011, -13.602684974670353 ], [ -70.606964111328125, -13.604316711425781 ], [ -70.611076354980469, -13.609023094177189 ], [ -70.612113952636719, -13.609086990356388 ], [ -70.612648010253906, -13.608744621276742 ], [ -70.6143798828125, -13.608378410339355 ], [ -70.615242004394531, -13.608572006225586 ], [ -70.616523742675724, -13.609326362609863 ], [ -70.618339538574162, -13.611108779907113 ], [ -70.620704650878906, -13.614405632019043 ], [ -70.622352600097599, -13.620856285095101 ], [ -70.623321533203011, -13.622894287109375 ], [ -70.625015258789006, -13.625457763671761 ], [ -70.626045227050781, -13.626233100891056 ], [ -70.6300048828125, -13.628125190734806 ], [ -70.633316040039006, -13.630544662475529 ], [ -70.63519287109375, -13.631633758544865 ], [ -70.638504028320312, -13.634606361389103 ], [ -70.639175415039062, -13.635869026184025 ], [ -70.642295837402287, -13.63994026184082 ], [ -70.645881652832031, -13.643556594848633 ], [ -70.648590087890568, -13.646841049194279 ], [ -70.654327392578125, -13.651739120483398 ], [ -70.655349731445256, -13.652336120605412 ], [ -70.657089233398438, -13.652887344360352 ], [ -70.658126831054631, -13.653628349304142 ], [ -70.659423828125, -13.655155181884766 ], [ -70.660881042480412, -13.657445907592717 ], [ -70.66387939453125, -13.660573005676213 ], [ -70.667526245117188, -13.661440849304199 ], [ -70.672386169433594, -13.6612291336059 ], [ -70.675552368164006, -13.66053390502924 ], [ -70.677528381347656, -13.659567832946721 ], [ -70.681686401367074, -13.658161163330021 ], [ -70.684585571289062, -13.655424118041935 ], [ -70.685585021972599, -13.65498161315918 ], [ -70.688316345214844, -13.653092384338379 ], [ -70.689292907714787, -13.652810096740723 ], [ -70.690849304199219, -13.652738571166992 ], [ -70.693344116210938, -13.653313636779728 ], [ -70.695579528808537, -13.654361724853516 ], [ -70.696754455566293, -13.655233383178654 ], [ -70.699188232421875, -13.657808303832951 ], [ -70.701011657714787, -13.658838272094727 ], [ -70.703140258789006, -13.659399032592773 ], [ -70.707168579101562, -13.659749984741211 ], [ -70.71163177490223, -13.660819053649789 ], [ -70.715644836425781, -13.662655830383244 ], [ -70.716506958007812, -13.664528846740723 ], [ -70.716468811035099, -13.668622970581055 ], [ -70.715911865234318, -13.670030593872013 ], [ -70.715423583984318, -13.673953056335392 ], [ -70.715034484863224, -13.6751451492309 ], [ -70.715042114257756, -13.677573204040471 ], [ -70.715873718261719, -13.679165840148869 ], [ -70.719551086425668, -13.681837081909123 ], [ -70.720870971679631, -13.683870315551644 ], [ -70.721252441406193, -13.686636924743596 ], [ -70.721076965331918, -13.692199707031193 ], [ -70.721298217773438, -13.696956634521428 ], [ -70.72113037109375, -13.698299407958928 ], [ -70.721611022949162, -13.700099945068303 ], [ -70.723251342773381, -13.701663017272949 ], [ -70.725601196289062, -13.702686309814396 ], [ -70.727783203125, -13.703986167907658 ], [ -70.731597900390625, -13.706805229187012 ], [ -70.734107971191349, -13.709309577941781 ], [ -70.735931396484318, -13.711885452270451 ], [ -70.735977172851562, -13.712696075439396 ], [ -70.735656738281193, -13.713747024536133 ], [ -70.735160827636662, -13.714387893676644 ], [ -70.733467102050724, -13.715604782104435 ], [ -70.732673645019474, -13.717492103576603 ], [ -70.732711791992074, -13.724774360656738 ], [ -70.733192443847656, -13.727333068847656 ], [ -70.733016967773438, -13.728402137756348 ], [ -70.734420776367131, -13.732965469360295 ], [ -70.734580993652287, -13.734230041503906 ], [ -70.734802246093693, -13.734720230102539 ], [ -70.734832763671875, -13.735893249511605 ], [ -70.734184265136719, -13.739041328430119 ], [ -70.73199462890625, -13.742464065551758 ], [ -70.727996826171875, -13.746040344238281 ], [ -70.726791381835881, -13.747508049011117 ], [ -70.725723266601506, -13.751115798950195 ], [ -70.723846435546875, -13.754310607910156 ], [ -70.7213134765625, -13.760453224182129 ], [ -70.719154357910099, -13.76468372344965 ], [ -70.719055175781193, -13.765864372253418 ], [ -70.71929931640625, -13.766615867614746 ], [ -70.72198486328125, -13.769585609435921 ], [ -70.722183227539006, -13.770726203918343 ], [ -70.721710205078068, -13.771023750305176 ], [ -70.720344543457031, -13.771161079406738 ], [ -70.718788146972543, -13.771702766418457 ], [ -70.717231750488224, -13.771819114685002 ], [ -70.714492797851449, -13.772882461547852 ], [ -70.712905883789062, -13.774080276489201 ], [ -70.711074829101562, -13.776448249816781 ], [ -70.7081298828125, -13.781628608703613 ], [ -70.706184387206974, -13.786374092102051 ], [ -70.705863952636719, -13.788425445556584 ], [ -70.705833435058594, -13.794171333312931 ], [ -70.705619812011662, -13.795140266418343 ], [ -70.704421997070312, -13.79682445526123 ], [ -70.7025146484375, -13.798376083373967 ], [ -70.702217102050781, -13.799130439758244 ], [ -70.700431823730469, -13.801183700561523 ], [ -70.699897766113224, -13.80241680145258 ], [ -70.699775695800724, -13.803389549255257 ], [ -70.700279235839787, -13.806717872619629 ], [ -70.701675415039062, -13.810043334960938 ], [ -70.702163696289006, -13.812424659729004 ], [ -70.702278137206974, -13.814933776855412 ], [ -70.701797485351506, -13.816575050353947 ], [ -70.701690673828068, -13.817844390869141 ], [ -70.701858520507812, -13.81961536407465 ], [ -70.702560424804631, -13.820666313171387 ], [ -70.70489501953125, -13.822564125061035 ], [ -70.706504821777344, -13.824534416198674 ], [ -70.707412719726506, -13.826289176940918 ], [ -70.708473205566349, -13.829561233520451 ], [ -70.709373474121094, -13.833692550659066 ], [ -70.709754943847656, -13.836819648742562 ], [ -70.709724426269418, -13.838163375854435 ], [ -70.70925140380848, -13.840254783630371 ], [ -70.708549499511662, -13.841604232788029 ], [ -70.708831787109318, -13.842358589172363 ], [ -70.709266662597656, -13.842819213867188 ], [ -70.709854125976562, -13.842612266540527 ], [ -70.710655212402287, -13.841732025146428 ], [ -70.711402893066406, -13.839068412780762 ], [ -70.715080261230469, -13.834585189819336 ], [ -70.717445373535099, -13.833237648010254 ], [ -70.718978881835824, -13.832091331481877 ], [ -70.719497680664062, -13.831587791442814 ], [ -70.720420837402344, -13.829951286315918 ], [ -70.721153259277287, -13.829290390014592 ], [ -70.723442077636662, -13.828139305114746 ], [ -70.725685119628906, -13.827645301818791 ], [ -70.727249145507756, -13.826896667480469 ], [ -70.728080749511719, -13.826063156127816 ], [ -70.728240966796875, -13.824912071227971 ], [ -70.728645324707031, -13.824530601501408 ], [ -70.731788635253906, -13.823295593261719 ], [ -70.73388671875, -13.823529243469181 ], [ -70.735206604003906, -13.82315731048584 ], [ -70.737228393554688, -13.823163986206055 ], [ -70.738304138183537, -13.82219123840332 ], [ -70.740478515625, -13.821011543273926 ], [ -70.746284484863281, -13.818541526794377 ], [ -70.749000549316349, -13.817732810974121 ], [ -70.752410888671875, -13.816150665283203 ], [ -70.757514953613281, -13.816427230834904 ], [ -70.758537292480412, -13.81627368927002 ], [ -70.760437011718693, -13.815079689025879 ], [ -70.764930725097599, -13.814915657043457 ], [ -70.768287658691406, -13.813673973083439 ], [ -70.768814086914062, -13.813654899597111 ], [ -70.770195007324219, -13.814174652099553 ], [ -70.771751403808594, -13.814202308654728 ], [ -70.773323059081974, -13.81517505645752 ], [ -70.777618408203068, -13.814907073974609 ], [ -70.779876708984375, -13.815658569335938 ], [ -70.786705017089844, -13.817110061645508 ], [ -70.788078308105469, -13.817153930664062 ], [ -70.790870666503849, -13.816560745239258 ], [ -70.792526245117188, -13.817088127136174 ], [ -70.793876647949219, -13.817071914672795 ], [ -70.795639038085881, -13.820190429687443 ], [ -70.79595947265625, -13.821963310241642 ], [ -70.796958923339787, -13.82286262512207 ], [ -70.798171997070312, -13.822911262512207 ], [ -70.799026489257812, -13.822636604309082 ], [ -70.801231384277344, -13.821509361266976 ], [ -70.802940368652344, -13.820294380187931 ], [ -70.804008483886662, -13.819997787475586 ], [ -70.804634094238281, -13.820089340209961 ], [ -70.806404113769474, -13.821212768554631 ], [ -70.808937072753906, -13.821686744689941 ], [ -70.811042785644531, -13.821553230285588 ], [ -70.814102172851562, -13.82091045379633 ], [ -70.816574096679688, -13.820871353149414 ], [ -70.818237304687443, -13.822270393371582 ], [ -70.820587158203125, -13.823690414428711 ], [ -70.824066162109318, -13.824795722961369 ], [ -70.825172424316406, -13.825743675231934 ], [ -70.826347351074162, -13.827216148376408 ], [ -70.827095031738224, -13.827563285827637 ], [ -70.828208923339844, -13.82752799987793 ], [ -70.828620910644474, -13.827345848083496 ], [ -70.828918457031193, -13.826231956481934 ], [ -70.829246520996094, -13.825905799865723 ], [ -70.8323974609375, -13.82528114318842 ], [ -70.834312438964844, -13.82430267333973 ], [ -70.838211059570312, -13.820391654968262 ], [ -70.842323303222656, -13.818413734435921 ], [ -70.843811035156136, -13.8173570632934 ], [ -70.848297119140511, -13.81584644317627 ], [ -70.849662780761719, -13.814767837524414 ], [ -70.850028991699219, -13.813862800598145 ], [ -70.850242614746094, -13.812251091003361 ], [ -70.850326538085938, -13.810269355773869 ], [ -70.850021362304688, -13.808792114257812 ], [ -70.85174560546875, -13.805114746093693 ], [ -70.851676940917969, -13.800169944763184 ], [ -70.852447509765625, -13.799164772033691 ], [ -70.85357666015625, -13.798615455627441 ], [ -70.85540771484375, -13.798364639282227 ], [ -70.860527038574219, -13.799732208251953 ], [ -70.862075805664062, -13.799966812133789 ], [ -70.862823486328125, -13.79985332489008 ], [ -70.866958618164006, -13.803936958312988 ], [ -70.875694274902344, -13.811102867126408 ], [ -70.877609252929688, -13.813164710998421 ], [ -70.879249572753906, -13.815653800964355 ], [ -70.879913330078125, -13.817803382873478 ], [ -70.880203247070312, -13.819856643676701 ], [ -70.879798889160156, -13.821696281433049 ], [ -70.878875732421818, -13.823847770690918 ], [ -70.878799438476506, -13.824649810790959 ], [ -70.879158020019474, -13.827660560607796 ], [ -70.879692077636719, -13.829383850097656 ], [ -70.879791259765625, -13.830718994140625 ], [ -70.880325317382756, -13.83288669586176 ], [ -70.880073547363281, -13.833747863769531 ], [ -70.879135131835938, -13.835184097289982 ], [ -70.878181457519531, -13.835879325866642 ], [ -70.874992370605412, -13.839239120483398 ], [ -70.872680664062443, -13.840866088867131 ], [ -70.870925903320312, -13.841648101806584 ], [ -70.86920166015625, -13.842017173766976 ], [ -70.864181518554688, -13.84172534942627 ], [ -70.862442016601562, -13.842768669128361 ], [ -70.860939025878906, -13.844900131225586 ], [ -70.85784912109375, -13.848337173461914 ], [ -70.856529235839844, -13.8502902984618 ], [ -70.854003906249943, -13.852628707885742 ], [ -70.851600646972599, -13.853202819824219 ], [ -70.849494934082031, -13.852994918823242 ], [ -70.845680236816406, -13.851992607116642 ], [ -70.838256835937443, -13.852496147155705 ], [ -70.837593078613224, -13.852810859680119 ], [ -70.832008361816406, -13.857181549072209 ], [ -70.831489562988224, -13.857830047607422 ], [ -70.831344604492188, -13.858522415161133 ], [ -70.831733703613281, -13.862994194030648 ], [ -70.830551147460881, -13.868325233459473 ], [ -70.829666137695256, -13.870401382446232 ], [ -70.82763671875, -13.872829437255803 ], [ -70.826873779296875, -13.874061584472599 ], [ -70.826194763183594, -13.87543773651123 ], [ -70.825866699218693, -13.876742362976074 ], [ -70.826034545898438, -13.87888240814209 ], [ -70.829551696777344, -13.88813304901123 ], [ -70.829833984375, -13.889725685119572 ], [ -70.830215454101562, -13.890543937683049 ], [ -70.830635070800724, -13.893989562988224 ], [ -70.830520629882756, -13.894943237304631 ], [ -70.829437255859375, -13.895979881286564 ], [ -70.826858520507812, -13.897116661071721 ], [ -70.821365356445256, -13.897529602050724 ], [ -70.816894531249943, -13.898839950561523 ], [ -70.815193176269474, -13.899741172790527 ], [ -70.814277648925781, -13.900617599487248 ], [ -70.8125, -13.903132438659611 ], [ -70.810974121093693, -13.906107902526855 ], [ -70.8101806640625, -13.90839672088623 ], [ -70.809883117675781, -13.91089916229248 ], [ -70.810081481933594, -13.913860321044922 ], [ -70.811393737792969, -13.916632652282715 ], [ -70.811538696289062, -13.917430877685547 ], [ -70.812934875488281, -13.919647216796818 ], [ -70.814521789550724, -13.921856880187931 ], [ -70.819297790527287, -13.926818847656136 ], [ -70.820205688476562, -13.927348136901799 ], [ -70.82171630859375, -13.928915977478027 ], [ -70.822441101074162, -13.92930793762207 ], [ -70.824005126953125, -13.930698394775334 ], [ -70.828208923339844, -13.933394432067871 ], [ -70.828887939453125, -13.934121131896973 ], [ -70.829765319824162, -13.934611320495549 ], [ -70.831962585449162, -13.936787605285645 ], [ -70.833015441894474, -13.938481330871468 ], [ -70.834251403808537, -13.93992900848383 ], [ -70.835350036621094, -13.941995620727482 ], [ -70.835914611816406, -13.943800926208496 ], [ -70.836761474609375, -13.945296287536507 ], [ -70.837013244628849, -13.947607040405273 ], [ -70.839744567871094, -13.954266548156738 ], [ -70.842262268066349, -13.95769214630127 ], [ -70.845184326171875, -13.960801124572754 ], [ -70.847122192382756, -13.964461326599064 ], [ -70.847465515136719, -13.96684741973877 ], [ -70.847297668457031, -13.96954441070551 ], [ -70.846328735351562, -13.971770286560059 ], [ -70.844596862792969, -13.973088264465275 ], [ -70.844085693359318, -13.973726272583008 ], [ -70.843811035156136, -13.975589752197266 ], [ -70.845787048339787, -13.98226261138916 ], [ -70.846603393554688, -13.983982086181641 ], [ -70.847091674804688, -13.984848022460938 ], [ -70.847984313964787, -13.985630035400334 ], [ -70.848464965820256, -13.986386299133301 ], [ -70.850234985351562, -13.99025917053217 ], [ -70.851463317871094, -13.991822242736816 ], [ -70.852210998535156, -13.993170738220101 ], [ -70.853065490722543, -13.996018409729004 ], [ -70.853027343749943, -13.997461318969727 ], [ -70.852569580078068, -13.999673843383789 ], [ -70.851211547851562, -14.001362800598145 ], [ -70.849822998046761, -14.002059936523381 ], [ -70.848464965820256, -14.002307891845703 ], [ -70.847915649413949, -14.002769470214844 ], [ -70.846527099609375, -14.002950668334904 ], [ -70.842727661132756, -14.005638122558594 ], [ -70.840988159179688, -14.006441116333008 ], [ -70.839973449706974, -14.007727622985783 ], [ -70.839958190917969, -14.009045600891056 ], [ -70.840576171875, -14.010046005249023 ], [ -70.842071533203068, -14.011055946349984 ], [ -70.84326171875, -14.011238098144531 ], [ -70.846595764160156, -14.010177612304688 ], [ -70.848129272460938, -14.01006031036377 ], [ -70.850090026855412, -14.010573387145996 ], [ -70.852676391601506, -14.012295722961312 ], [ -70.854377746581974, -14.01380443572998 ], [ -70.856521606445312, -14.016934394836369 ], [ -70.858665466308537, -14.019269943237248 ], [ -70.859870910644531, -14.020960807800293 ], [ -70.860542297363281, -14.022441864013615 ], [ -70.860603332519531, -14.023164749145451 ], [ -70.861289978027344, -14.024222373962402 ], [ -70.861450195312443, -14.02538013458252 ], [ -70.86183929443348, -14.026191711425668 ], [ -70.861541748046818, -14.029314041137695 ], [ -70.860038757324219, -14.032293319702148 ], [ -70.856147766113281, -14.035989761352539 ], [ -70.854568481445256, -14.037972450256348 ], [ -70.852462768554631, -14.039866447448674 ], [ -70.851486206054688, -14.041032791137695 ], [ -70.850898742675781, -14.043123245239144 ], [ -70.850883483886719, -14.047687530517578 ], [ -70.849205017089844, -14.053190231323242 ], [ -70.848152160644531, -14.055184364318791 ], [ -70.847160339355469, -14.056356430053654 ], [ -70.845870971679688, -14.057216644287109 ], [ -70.8441162109375, -14.058000564575082 ], [ -70.840934753417912, -14.058856010436955 ], [ -70.83831787109375, -14.059966087341309 ], [ -70.837089538574219, -14.060746192932129 ], [ -70.83522796630848, -14.062393188476562 ], [ -70.832244873046818, -14.06417274475092 ], [ -70.831405639648381, -14.064907073974553 ], [ -70.830978393554688, -14.065467834472599 ], [ -70.830924987792912, -14.066007614135629 ], [ -70.832221984863281, -14.068773269653207 ], [ -70.832138061523438, -14.069944381713867 ], [ -70.831672668456974, -14.070936203002873 ], [ -70.830978393554688, -14.071773529052678 ], [ -70.830360412597599, -14.072979927062988 ], [ -70.829917907714844, -14.075723648071232 ], [ -70.829269409179688, -14.076207160949707 ], [ -70.826873779296875, -14.075310707092228 ], [ -70.824066162109318, -14.073583602905273 ], [ -70.823509216308594, -14.072879791259766 ], [ -70.821868896484318, -14.071590423583871 ], [ -70.8201904296875, -14.068826675415039 ], [ -70.819137573242188, -14.067814826965332 ], [ -70.818634033203011, -14.067607879638672 ], [ -70.816795349121037, -14.067675590515137 ], [ -70.815460205078068, -14.068283081054688 ], [ -70.812568664550781, -14.069108009338322 ], [ -70.809089660644474, -14.069058418273926 ], [ -70.805534362792912, -14.06999683380127 ], [ -70.801170349121037, -14.070562362670842 ], [ -70.797607421875, -14.071500778198242 ], [ -70.796699523925668, -14.071917533874455 ], [ -70.792076110839844, -14.076535224914494 ], [ -70.79132080078125, -14.077658653259221 ], [ -70.789787292480469, -14.078653335571289 ], [ -70.789222717285156, -14.07945537567133 ], [ -70.79510498046875, -14.088343620300236 ], [ -70.7979736328125, -14.090583801269531 ], [ -70.801307678222656, -14.094168663024789 ], [ -70.804557800292969, -14.09709453582758 ], [ -70.805572509765511, -14.098258018493596 ], [ -70.806312561035099, -14.099515914916992 ], [ -70.806503295898381, -14.100908279418888 ], [ -70.805770874023438, -14.104430198669377 ], [ -70.805908203125, -14.111603736877441 ], [ -70.805198669433594, -14.116165161132812 ], [ -70.806083679199219, -14.118328094482422 ], [ -70.806465148925781, -14.119994163513127 ], [ -70.807456970214787, -14.122111320495492 ], [ -70.809013366699219, -14.123872756957951 ], [ -70.814201354980469, -14.126742362976074 ], [ -70.818824768066293, -14.131240844726562 ], [ -70.821441650390625, -14.133488655090275 ], [ -70.821701049804688, -14.134441375732422 ], [ -70.821624755859375, -14.135964393615666 ], [ -70.821319580078125, -14.137555122375488 ], [ -70.820442199706974, -14.140011787414551 ], [ -70.820587158203125, -14.140862464904785 ], [ -70.821472167968693, -14.141363143920898 ], [ -70.825424194335938, -14.141261100768986 ], [ -70.830375671386719, -14.142258644103947 ], [ -70.833389282226506, -14.142417907714787 ], [ -70.834419250488281, -14.142806053161507 ], [ -70.839996337890511, -14.147053718566895 ], [ -70.841728210449219, -14.148083686828556 ], [ -70.842430114746094, -14.148260116577148 ], [ -70.844810485839844, -14.148038864135742 ], [ -70.845794677734318, -14.14829158782959 ], [ -70.847579956054688, -14.149557113647461 ], [ -70.850082397460881, -14.151926994323674 ], [ -70.8524169921875, -14.156326293945312 ], [ -70.853492736816406, -14.157417297363168 ], [ -70.854080200195256, -14.158825874328613 ], [ -70.854530334472656, -14.159293174743596 ], [ -70.855873107910156, -14.15942478179926 ], [ -70.857650756835938, -14.158489227294922 ], [ -70.859100341796875, -14.158317565917969 ], [ -70.861343383789006, -14.15885066986084 ], [ -70.862831115722656, -14.159906387329102 ], [ -70.863418579101562, -14.160808563232422 ], [ -70.864517211914062, -14.163571357727051 ], [ -70.865036010742188, -14.164201736450138 ], [ -70.866119384765568, -14.167431831359806 ], [ -70.867584228515625, -14.169631004333496 ], [ -70.868659973144531, -14.169694900512695 ], [ -70.87091064453125, -14.16923713684082 ], [ -70.873245239257756, -14.171180725097656 ], [ -70.874336242675781, -14.17136287689209 ], [ -70.874954223632812, -14.171237945556584 ], [ -70.876235961913949, -14.17051982879633 ], [ -70.879890441894531, -14.16962718963623 ], [ -70.881782531738281, -14.168369293212834 ], [ -70.882423400878849, -14.168343544006348 ], [ -70.884864807128906, -14.169947624206486 ], [ -70.886276245117188, -14.171467781066895 ], [ -70.887039184570312, -14.172908782958984 ], [ -70.887275695800724, -14.17495059967041 ], [ -70.8878173828125, -14.176168441772461 ], [ -70.8878173828125, -14.17716121673584 ], [ -70.88848876953125, -14.180960655212402 ], [ -70.889778137206918, -14.184883117675668 ], [ -70.889755249023381, -14.186855316162053 ], [ -70.888511657714787, -14.189053535461426 ], [ -70.887351989746094, -14.189582824707031 ], [ -70.885284423828068, -14.191739082336369 ], [ -70.884536743163949, -14.19207763671875 ], [ -70.882804870605412, -14.19417762756342 ], [ -70.882522583007756, -14.196140289306527 ], [ -70.882583618164062, -14.197728157043457 ], [ -70.8834228515625, -14.198916435241699 ], [ -70.885902404785156, -14.203621864318848 ], [ -70.887275695800724, -14.205315589904671 ], [ -70.888908386230412, -14.20647144317627 ], [ -70.891464233398381, -14.206668853759766 ], [ -70.892585754394531, -14.207083702087289 ], [ -70.893417358398438, -14.207647323608398 ], [ -70.894317626953125, -14.208657264709359 ], [ -70.895606994628906, -14.211774826049805 ], [ -70.896156311035099, -14.214776039123535 ], [ -70.897583007812443, -14.220070838928166 ], [ -70.897514343261719, -14.221053123474121 ], [ -70.896781921386719, -14.223439216613656 ], [ -70.89678955078125, -14.224539756774902 ], [ -70.898971557617188, -14.228916168212834 ], [ -70.89971923828125, -14.232080459594727 ], [ -70.898590087890625, -14.234403610229435 ], [ -70.897071838378906, -14.236208915710449 ], [ -70.895492553710881, -14.237112045288086 ], [ -70.892959594726562, -14.237914085388184 ], [ -70.892021179199219, -14.238504409789982 ], [ -70.891815185546875, -14.239447593688965 ], [ -70.892234802246037, -14.240790367126465 ], [ -70.891853332519474, -14.242371559143066 ], [ -70.891067504882812, -14.244099617004338 ], [ -70.887672424316349, -14.247712135314941 ], [ -70.884132385253849, -14.250926017761174 ], [ -70.882431030273381, -14.253269195556641 ], [ -70.882324218749943, -14.254584312438965 ], [ -70.882827758789062, -14.25584602355957 ], [ -70.881355285644474, -14.257428169250488 ], [ -70.88092041015625, -14.260260581970158 ], [ -70.881736755371037, -14.264296531677189 ], [ -70.881568908691349, -14.267427444457894 ], [ -70.881301879882812, -14.268385887145939 ], [ -70.880340576171761, -14.269577980041447 ], [ -70.880203247070312, -14.270209312438908 ], [ -70.880706787109318, -14.270694732665959 ], [ -70.882896423339787, -14.270563125610295 ], [ -70.886695861816349, -14.271248817443848 ], [ -70.888626098632756, -14.271209716796875 ], [ -70.889823913574219, -14.271681785583496 ], [ -70.891189575195256, -14.272616386413574 ], [ -70.891952514648381, -14.273605346679688 ], [ -70.892265319824219, -14.274827003478947 ], [ -70.891799926757812, -14.280591011047363 ], [ -70.891853332519474, -14.283823013305607 ], [ -70.892265319824219, -14.286204338073674 ], [ -70.892982482910156, -14.287460327148438 ], [ -70.896385192871094, -14.290477752685547 ], [ -70.900177001953011, -14.293160438537598 ], [ -70.903091430664062, -14.295890808105355 ], [ -70.908287048339844, -14.298396110534668 ], [ -70.910598754882812, -14.29987907409668 ], [ -70.912422180175781, -14.301374435424691 ], [ -70.913581848144531, -14.303109169006348 ], [ -70.913894653320256, -14.307028770446664 ], [ -70.913894653320256, -14.310436248779297 ], [ -70.913658142089844, -14.31277942657465 ], [ -70.914543151855412, -14.315608024597054 ], [ -70.914688110351562, -14.317850112914982 ], [ -70.91412353515625, -14.323378562927246 ], [ -70.913673400878906, -14.325301170349064 ], [ -70.912773132324219, -14.327260971069336 ], [ -70.910827636718693, -14.329989433288517 ], [ -70.9088134765625, -14.331937789916992 ], [ -70.908195495605469, -14.333326339721566 ], [ -70.908317565917969, -14.334220886230412 ], [ -70.908714294433594, -14.334932327270451 ], [ -70.910949707031136, -14.336511611938477 ], [ -70.911453247070312, -14.337116241455078 ], [ -70.912536621093693, -14.340112686157227 ], [ -70.912506103515625, -14.341618537902832 ], [ -70.913818359375, -14.34289646148676 ], [ -70.915023803710881, -14.343717575073129 ], [ -70.916603088378906, -14.344169616699219 ], [ -70.918441772460938, -14.344363212585449 ], [ -70.919326782226506, -14.344117164611816 ], [ -70.9208984375, -14.343180656433105 ], [ -70.922782897949219, -14.341353416442814 ], [ -70.924530029296875, -14.340543746948185 ], [ -70.926712036132812, -14.340066909789982 ], [ -70.929550170898324, -14.340676307678223 ], [ -70.934234619140625, -14.343362808227539 ], [ -70.937057495117131, -14.345927238464299 ], [ -70.937408447265625, -14.346042633056584 ], [ -70.941421508789062, -14.350361824035588 ], [ -70.943008422851562, -14.351722717285156 ], [ -70.943702697753906, -14.35195255279541 ], [ -70.947105407714844, -14.35210132598877 ], [ -70.948158264160156, -14.352442741394043 ], [ -70.95599365234375, -14.357808113098031 ], [ -70.957992553710938, -14.358890533447266 ], [ -70.960884094238281, -14.360048294067383 ], [ -70.962593078613281, -14.361181259155273 ], [ -70.963615417480469, -14.362486839294434 ], [ -70.965042114257812, -14.367608070373478 ], [ -70.96685791015625, -14.370940208435059 ], [ -70.968971252441406, -14.373675346374455 ], [ -70.96990966796875, -14.376505851745605 ], [ -70.970443725585881, -14.377363204955998 ], [ -70.973197937011662, -14.378067016601506 ], [ -70.975875854492131, -14.378222465515137 ], [ -70.977111816406193, -14.377205848693848 ], [ -70.977760314941406, -14.377164840698185 ], [ -70.97821044921875, -14.377468109130859 ], [ -70.978317260742188, -14.378635406494084 ], [ -70.978851318359261, -14.37900352478016 ], [ -70.982070922851506, -14.379111289977971 ], [ -70.984245300292969, -14.379464149475098 ], [ -70.985717773437386, -14.379211425781193 ], [ -70.985893249511662, -14.379782676696721 ], [ -70.98431396484375, -14.381405830383301 ], [ -70.983436584472656, -14.383296012878361 ], [ -70.981376647949219, -14.384929656982365 ], [ -70.980445861816349, -14.386256217956486 ], [ -70.979927062988281, -14.38847827911377 ], [ -70.980400085449219, -14.390108108520508 ], [ -70.980415344238281, -14.391101837158203 ], [ -70.980072021484318, -14.392404556274414 ], [ -70.97918701171875, -14.393663406372013 ], [ -70.979042053222543, -14.395183563232422 ], [ -70.97943115234375, -14.396561622619629 ], [ -70.980331420898438, -14.398048400878906 ], [ -70.985496520996037, -14.403322219848519 ], [ -70.985786437988224, -14.403985977172795 ], [ -70.985877990722599, -14.405250549316349 ], [ -70.985397338867131, -14.406524658203125 ], [ -70.983528137206918, -14.409515380859375 ], [ -70.982673645019531, -14.411411285400391 ], [ -70.981353759765625, -14.412905693054199 ], [ -70.980461120605412, -14.414976119995117 ], [ -70.978897094726562, -14.41697883605957 ], [ -70.977546691894531, -14.417477607726994 ], [ -70.975250244140625, -14.41749382019043 ], [ -70.974555969238224, -14.417708396911621 ], [ -70.974128723144531, -14.418070793151855 ], [ -70.973716735839844, -14.419631958007812 ], [ -70.973403930664006, -14.420015335082894 ], [ -70.973548889160156, -14.420440673828011 ], [ -70.973220825195256, -14.422762870788574 ], [ -70.973243713378906, -14.425650596618596 ], [ -70.974136352539062, -14.428039550781193 ], [ -70.974205017089844, -14.428887367248535 ], [ -70.973518371582031, -14.429526329040527 ], [ -70.969802856445312, -14.431834220886174 ], [ -70.967269897460938, -14.434444427490178 ], [ -70.966468811035156, -14.435756683349609 ], [ -70.966423034667912, -14.439264297485295 ], [ -70.966171264648324, -14.440676689147949 ], [ -70.964599609375, -14.442193031310978 ], [ -70.962821960449162, -14.442911148071289 ], [ -70.962478637695312, -14.44373607635498 ], [ -70.963157653808594, -14.444452285766602 ], [ -70.964248657226506, -14.444649696350098 ], [ -70.966728210449162, -14.446028709411621 ], [ -70.969581604003849, -14.447052001953011 ], [ -70.973800659179574, -14.447150230407715 ], [ -70.976844787597599, -14.447817802429199 ], [ -70.982879638671875, -14.449750900268498 ], [ -70.984848022460881, -14.451236724853459 ], [ -70.988143920898438, -14.455100059509221 ], [ -70.988563537597599, -14.456667900085449 ], [ -70.988739013671818, -14.458935737609863 ], [ -70.988563537597599, -14.460800170898438 ], [ -70.988021850585938, -14.462027549743652 ], [ -70.987022399902287, -14.463455200195199 ], [ -70.985382080078125, -14.464750289916992 ], [ -70.984825134277287, -14.46901798248291 ], [ -70.98358154296875, -14.472490310668945 ], [ -70.983215332031193, -14.474568367004395 ], [ -70.983390808105469, -14.475931167602539 ], [ -70.984588623046875, -14.477458000183105 ], [ -70.985099792480469, -14.478515624999943 ], [ -70.985618591308537, -14.481239318847656 ], [ -70.986480712890511, -14.483363151550179 ], [ -70.987503051757756, -14.484745025634766 ], [ -70.988395690917969, -14.485537528991642 ], [ -70.989250183105355, -14.487003326415959 ], [ -70.9893798828125, -14.488430023193303 ], [ -70.988967895507812, -14.489804267883301 ], [ -70.988807678222656, -14.491406440734806 ], [ -70.988571166992131, -14.491791725158635 ], [ -70.988334655761719, -14.493933677673283 ], [ -70.986793518066406, -14.496452331542855 ], [ -70.986976623535156, -14.498088836669922 ], [ -70.987533569335824, -14.498982429504395 ], [ -70.98870849609375, -14.499713897705078 ], [ -70.992721557617188, -14.500714302062988 ], [ -70.997383117675781, -14.501127243041992 ], [ -70.999160766601506, -14.501888275146371 ], [ -70.999923706054631, -14.502900123596191 ], [ -70.999740600585824, -14.503376007080021 ], [ -70.998260498046875, -14.504047393798771 ], [ -70.997283935546875, -14.505166053771973 ], [ -70.995567321777344, -14.509044647216797 ], [ -70.994400024413949, -14.512516021728516 ], [ -70.993415832519474, -14.513851165771484 ], [ -70.990066528320312, -14.52095794677723 ], [ -70.989158630371094, -14.522457122802678 ], [ -70.987998962402287, -14.5262451171875 ], [ -70.98651123046875, -14.528483390808105 ], [ -70.983131408691349, -14.532559394836426 ], [ -70.981643676757812, -14.536025047302246 ], [ -70.979080200195312, -14.538732528686467 ], [ -70.978858947753906, -14.539883613586426 ], [ -70.979087829589844, -14.541998863220158 ], [ -70.979606628417912, -14.542386054992676 ], [ -70.981887817382756, -14.543065071105957 ], [ -70.982498168945312, -14.543519020080566 ], [ -70.982612609863281, -14.545351028442383 ], [ -70.982246398925781, -14.545759201049805 ], [ -70.981880187988224, -14.547187805175668 ], [ -70.976539611816349, -14.552085876464844 ], [ -70.975189208984375, -14.553082466125488 ], [ -70.973510742187386, -14.553928375244084 ], [ -70.972671508789062, -14.554788589477539 ], [ -70.971733093261719, -14.556277275085449 ], [ -70.970260620117131, -14.560258865356445 ], [ -70.969024658203068, -14.562105178832951 ], [ -70.967086791992131, -14.56646537780756 ], [ -70.966293334960938, -14.567588806152287 ], [ -70.966590881347656, -14.568657875060978 ], [ -70.968238830566349, -14.569336891174203 ], [ -70.969268798828125, -14.570138931274414 ], [ -70.970512390136719, -14.56980037689209 ], [ -70.971893310546761, -14.569796562194824 ], [ -70.973312377929631, -14.570219039916879 ], [ -70.973487854003849, -14.571196556091195 ], [ -70.973251342773438, -14.572086334228516 ], [ -70.973289489746037, -14.573736190795842 ], [ -70.974174499511662, -14.575377464294377 ], [ -70.974464416503793, -14.578113555908203 ], [ -70.975540161132812, -14.580171585083008 ], [ -70.975929260253906, -14.581783294677678 ], [ -70.976478576660156, -14.582506179809513 ], [ -70.978111267089844, -14.582932472229004 ], [ -70.979904174804574, -14.582951545715275 ], [ -70.98175048828125, -14.581542015075684 ], [ -70.983444213867188, -14.580614089965707 ], [ -70.986114501953125, -14.58006477355957 ], [ -70.987144470214787, -14.579598426818791 ], [ -70.988731384277344, -14.579397201538086 ], [ -70.990318298339844, -14.578792572021484 ], [ -70.992034912109375, -14.577252388000375 ], [ -70.992782592773438, -14.575586318969727 ], [ -70.992973327636719, -14.574507713317814 ], [ -70.993911743164006, -14.573352813720703 ], [ -70.996139526367188, -14.573623657226562 ], [ -70.998542785644531, -14.572575569152718 ], [ -71.000892639160156, -14.572480201721078 ], [ -71.002067565917969, -14.572111129760685 ], [ -71.004280090331974, -14.572908401489258 ], [ -71.006561279296875, -14.574200630187875 ], [ -71.009269714355412, -14.574969291687012 ], [ -71.012199401855412, -14.57662296295166 ], [ -71.014862060546875, -14.577834129333439 ], [ -71.017272949218693, -14.579743385314941 ], [ -71.019371032714787, -14.582096099853516 ], [ -71.020225524902287, -14.583852767944222 ], [ -71.02056884765625, -14.585103988647461 ], [ -71.020431518554574, -14.585832595825138 ], [ -71.019721984863281, -14.586064338684082 ], [ -71.015815734863281, -14.588614463806096 ], [ -71.013221740722656, -14.59086799621582 ], [ -71.010665893554688, -14.594733238220158 ], [ -71.009880065917969, -14.596775054931527 ], [ -71.010284423828125, -14.597476959228516 ], [ -71.011657714843636, -14.5977783203125 ], [ -71.014640808105469, -14.596976280212402 ], [ -71.016433715820312, -14.596158027648926 ], [ -71.018196105957031, -14.594518661498967 ], [ -71.021392822265625, -14.593147277831974 ], [ -71.024078369140625, -14.592741012573242 ], [ -71.02520751953125, -14.591877937316895 ], [ -71.027481079101506, -14.591691017150879 ], [ -71.029434204101562, -14.592209815978947 ], [ -71.032958984375, -14.594733238220158 ], [ -71.037429809570312, -14.596668243408146 ], [ -71.041244506835938, -14.599521636962834 ], [ -71.043617248535156, -14.601763725280762 ], [ -71.049537658691406, -14.608442306518498 ], [ -71.050056457519474, -14.609721183776742 ], [ -71.050636291503849, -14.610519409179688 ], [ -71.051856994628906, -14.613802909851017 ], [ -71.053375244140625, -14.61556243896473 ], [ -71.057594299316349, -14.618474960327035 ], [ -71.060630798339844, -14.619934082031193 ], [ -71.065101623535156, -14.623430252075082 ], [ -71.066024780273438, -14.623653411865178 ], [ -71.067909240722599, -14.624630928039494 ], [ -71.069343566894474, -14.625683784484806 ], [ -71.070442199707031, -14.626795768737679 ], [ -71.070991516113281, -14.628166198730469 ], [ -71.07196044921875, -14.628714561462402 ], [ -71.073715209960881, -14.6311998367309 ], [ -71.075386047363281, -14.631769180297852 ], [ -71.077461242675668, -14.63157844543457 ], [ -71.080863952636662, -14.629793167114201 ], [ -71.082412719726506, -14.629496574401855 ], [ -71.088294982910156, -14.630370140075684 ], [ -71.095146179199219, -14.632834434509277 ], [ -71.096420288085881, -14.632918357849121 ], [ -71.097946166992131, -14.632464408874512 ], [ -71.100685119628906, -14.632321357727051 ], [ -71.105079650878906, -14.633369445800724 ], [ -71.108085632324219, -14.633520126342717 ], [ -71.109458923339844, -14.633874893188477 ], [ -71.109916687011719, -14.634181022644043 ], [ -71.110343933105412, -14.636813163757324 ], [ -71.112007141113281, -14.640225410461426 ], [ -71.112091064453125, -14.642049789428711 ], [ -71.112327575683594, -14.642846107482853 ], [ -71.113136291503906, -14.643753051757812 ], [ -71.116508483886719, -14.64573955535883 ], [ -71.117607116699162, -14.647139549255371 ], [ -71.118331909179688, -14.648712158203125 ], [ -71.117645263671875, -14.650027275085392 ], [ -71.116683959960938, -14.654244422912598 ], [ -71.115570068359375, -14.65727519989008 ], [ -71.115097045898381, -14.662212371826172 ], [ -71.113540649414062, -14.667311668395939 ], [ -71.111686706542912, -14.669854164123421 ], [ -71.110794067382812, -14.672371864318848 ], [ -71.109619140625, -14.67436408996582 ], [ -71.108383178710938, -14.675626754760742 ], [ -71.107017517089787, -14.676397323608398 ], [ -71.105087280273381, -14.678771972656193 ], [ -71.104164123535043, -14.680889129638558 ], [ -71.103805541992188, -14.683435440063477 ], [ -71.103393554687443, -14.684455871582031 ], [ -71.102691650390625, -14.684913635253906 ], [ -71.096878051757812, -14.686095237731877 ], [ -71.092292785644531, -14.689916610717773 ], [ -71.088203430175724, -14.695526123046875 ], [ -71.087677001953125, -14.697194099426213 ], [ -71.088287353515625, -14.698330879211369 ], [ -71.088043212890568, -14.699788093566838 ], [ -71.089118957519531, -14.704355239868164 ], [ -71.089584350585938, -14.709487915039006 ], [ -71.089454650878849, -14.710864067077637 ], [ -71.088851928710938, -14.712505340576172 ], [ -71.088790893554631, -14.713715553283635 ], [ -71.087745666503849, -14.714871406555176 ], [ -71.084831237792969, -14.716732978820801 ], [ -71.082489013671818, -14.718598365783691 ], [ -71.079498291015625, -14.722426414489689 ], [ -71.073730468749943, -14.727499961852914 ], [ -71.071281433105469, -14.729207038879395 ], [ -71.06988525390625, -14.730563163757324 ], [ -71.064170837402287, -14.735194206237736 ], [ -71.063232421874943, -14.736803054809513 ], [ -71.062934875488224, -14.73917102813715 ], [ -71.06020355224598, -14.745062828063965 ], [ -71.058929443359318, -14.748117446899414 ], [ -71.058891296386719, -14.748647689819222 ], [ -71.058059692382812, -14.749880790710392 ], [ -71.055809020996037, -14.752358436584473 ], [ -71.052238464355469, -14.754398345947209 ], [ -71.049789428710881, -14.754546165466309 ], [ -71.047653198242188, -14.753399848937988 ], [ -71.042564392089844, -14.753594398498535 ], [ -71.040512084960938, -14.752899169921875 ], [ -71.038726806640568, -14.752804756164494 ], [ -71.037223815917969, -14.751858711242619 ], [ -71.036170959472543, -14.75183200836176 ], [ -71.035072326660156, -14.752796173095589 ], [ -71.034339904785099, -14.756202697753849 ], [ -71.032165527343636, -14.758865356445256 ], [ -71.030776977539062, -14.759508132934513 ], [ -71.029067993164062, -14.759713172912598 ], [ -71.027595520019531, -14.75960636138916 ], [ -71.025321960449219, -14.758078575134221 ], [ -71.024375915527344, -14.756175994873047 ], [ -71.022964477539062, -14.754220008850041 ], [ -71.021881103515625, -14.751386642455998 ], [ -71.021514892578125, -14.748286247253361 ], [ -71.020637512207031, -14.746458053588754 ], [ -71.015861511230469, -14.740666389465332 ], [ -71.014884948730412, -14.739944458007812 ], [ -71.013397216796875, -14.73967456817627 ], [ -71.011314392089844, -14.74041557312006 ], [ -71.0098876953125, -14.741753578185978 ], [ -71.006721496582031, -14.743160247802678 ], [ -71.005134582519531, -14.744159698486328 ], [ -71.003517150878849, -14.744656562805176 ], [ -71.000587463378849, -14.74491024017334 ], [ -70.999549865722543, -14.745335578918457 ], [ -70.998405456542855, -14.746138572692871 ], [ -70.997352600097543, -14.747662544250431 ], [ -70.996437072753906, -14.748468399047852 ], [ -70.990837097167912, -14.75005912780756 ], [ -70.987190246582031, -14.753114700317326 ], [ -70.981986999511662, -14.755297660827637 ], [ -70.9810791015625, -14.755913734436035 ], [ -70.978706359863281, -14.759906768798828 ], [ -70.975532531738281, -14.764360427856388 ], [ -70.975090026855469, -14.765957832336369 ], [ -70.975173950195312, -14.766682624816895 ], [ -70.97560882568348, -14.767176628112679 ], [ -70.976028442382812, -14.768301010131836 ], [ -70.976554870605412, -14.770900726318303 ], [ -70.977706909179574, -14.771879196166992 ], [ -70.979965209960881, -14.772540092468262 ], [ -70.98040771484375, -14.773223876953125 ], [ -70.981216430664006, -14.779742240905705 ], [ -70.983383178710938, -14.783715248107853 ], [ -70.983688354492131, -14.785352706909123 ], [ -70.983642578125, -14.78629016876215 ], [ -70.983215332031193, -14.787482261657658 ], [ -70.980468749999943, -14.792621612548828 ], [ -70.980430603027344, -14.794469833374023 ], [ -70.980941772460881, -14.796890258789062 ], [ -70.980880737304688, -14.799287796020394 ], [ -70.978500366210938, -14.80302619934082 ], [ -70.97772216796875, -14.805673599243107 ], [ -70.977706909179574, -14.808072090148926 ], [ -70.978294372558594, -14.80878734588623 ], [ -70.979400634765568, -14.811720848083496 ], [ -70.979286193847656, -14.812161445617676 ], [ -70.978515625, -14.812960624694824 ], [ -70.977775573730412, -14.814730644226017 ], [ -70.977752685546875, -14.81749439239502 ], [ -70.978836059570256, -14.818801879882812 ], [ -70.979019165039006, -14.819572448730469 ], [ -70.978355407714787, -14.823882102966252 ], [ -70.979705810546818, -14.825148582458439 ], [ -70.981956481933594, -14.825821876525879 ], [ -70.984268188476506, -14.826863288879395 ], [ -70.992790222167969, -14.828466415405217 ], [ -70.994949340820256, -14.829757690429574 ], [ -70.995735168456918, -14.830680847167912 ], [ -70.996040344238281, -14.831462860107365 ], [ -70.995948791503906, -14.833481788635197 ], [ -70.994842529296818, -14.837187767028809 ], [ -70.992286682128849, -14.840474128723145 ], [ -70.992858886718693, -14.841059684753361 ], [ -70.995834350585938, -14.841958045959416 ], [ -70.996803283691406, -14.842969894409066 ], [ -70.996772766113224, -14.846792221069336 ], [ -70.996223449707031, -14.848752021789494 ], [ -70.995452880859375, -14.850414276123047 ], [ -70.993888854980412, -14.85231876373291 ], [ -70.993324279785099, -14.853346824645996 ], [ -70.993110656738281, -14.857657432556096 ], [ -70.991447448730469, -14.861445426940918 ], [ -70.991973876953125, -14.863310813903809 ], [ -70.993133544921818, -14.865450859069824 ], [ -70.993370056152344, -14.866304397582951 ], [ -70.992996215820312, -14.869706153869572 ], [ -70.993041992187443, -14.874851226806584 ], [ -70.992790222167969, -14.87769699096674 ], [ -70.99310302734375, -14.878008842468262 ], [ -70.99544525146473, -14.878267288208008 ], [ -70.996093749999943, -14.879143714904785 ], [ -70.996063232421875, -14.87978458404541 ], [ -70.995460510253906, -14.881035804748535 ], [ -70.995330810546818, -14.882234573364201 ], [ -70.996276855468693, -14.884215354919434 ], [ -70.996894836425781, -14.886816024780217 ], [ -70.996002197265568, -14.890066146850529 ], [ -70.996109008789006, -14.891701698303223 ], [ -70.996337890625, -14.892301559448242 ], [ -70.996315002441406, -14.89393424987793 ], [ -70.994827270507812, -14.896366119384766 ], [ -70.994857788085881, -14.899105072021484 ], [ -70.994033813476562, -14.900443077087402 ], [ -70.993255615234261, -14.904128074645996 ], [ -70.991836547851562, -14.90609073638916 ], [ -70.989036560058537, -14.90831470489502 ], [ -70.988685607910156, -14.909173965454102 ], [ -70.988685607910156, -14.910826683044434 ], [ -70.988456726074162, -14.911813735961857 ], [ -70.986869812011719, -14.91473484039301 ], [ -70.986579895019418, -14.915831565856877 ], [ -70.987594604492131, -14.917445182800236 ], [ -70.990303039550781, -14.920183181762638 ], [ -70.990386962890568, -14.921646118164062 ], [ -70.989830017089844, -14.923097610473633 ], [ -70.991333007812443, -14.925765991210881 ], [ -70.991554260253906, -14.927395820617676 ], [ -70.991203308105469, -14.929304122924805 ], [ -70.990127563476562, -14.932061195373535 ], [ -70.987266540527344, -14.936693191528263 ], [ -70.987205505371094, -14.937612533569336 ], [ -70.987525939941349, -14.939584732055664 ], [ -70.986000061035099, -14.941506385803223 ], [ -70.985443115234375, -14.942625045776254 ], [ -70.985366821289062, -14.945583343505859 ], [ -70.985984802246037, -14.946839332580566 ], [ -70.987091064453125, -14.947831153869572 ], [ -70.991104125976562, -14.95042896270752 ], [ -70.994567871093693, -14.952103614807072 ], [ -70.996879577636605, -14.953741073608398 ], [ -70.997619628906193, -14.956767082214242 ], [ -70.997848510742188, -14.959713935852051 ], [ -70.997489929199219, -14.961519241333008 ], [ -70.997131347656193, -14.962262153625488 ], [ -70.996437072753906, -14.962900161743164 ], [ -70.996391296386662, -14.96347713470459 ], [ -70.998001098632756, -14.965145111083928 ], [ -70.999702453613224, -14.965970039367562 ], [ -71.000762939453068, -14.966855049133301 ], [ -71.00222015380848, -14.968377113342285 ], [ -71.004104614257756, -14.971137046813908 ], [ -71.004669189453068, -14.97392463684082 ], [ -71.004920959472656, -14.978286743164062 ], [ -71.004570007324162, -14.979434967041016 ], [ -71.003051757812443, -14.980853080749512 ], [ -71.002815246582031, -14.982976913452148 ], [ -71.002998352050781, -14.984598159790039 ], [ -71.004150390625, -14.986807823181039 ], [ -71.003631591796818, -14.988954544067326 ], [ -71.00374603271473, -14.990419387817383 ], [ -71.003501892089844, -14.991876602172852 ], [ -71.004425048828125, -14.997016906738224 ], [ -71.004447937011719, -14.999581336975098 ], [ -71.004028320312386, -15.000925064086914 ], [ -71.002754211425724, -15.002589225769043 ], [ -71.002334594726562, -15.006272315978947 ], [ -71.002151489257812, -15.006585121154728 ], [ -71.001472473144531, -15.006890296936035 ], [ -71.000587463378849, -15.008425712585392 ], [ -71.000160217285156, -15.009978294372445 ], [ -70.997421264648381, -15.016029357910156 ], [ -70.996459960937443, -15.018684387206918 ], [ -70.996223449707031, -15.022052764892578 ], [ -70.996696472167969, -15.024840354919377 ], [ -70.996757507324162, -15.029154777526855 ], [ -70.996322631835938, -15.030435562133732 ], [ -70.994003295898381, -15.034579277038517 ], [ -70.993324279785099, -15.036625862121525 ], [ -70.993782043457031, -15.03746223449707 ], [ -70.993515014648381, -15.04463005065918 ], [ -70.99383544921875, -15.046360015869141 ], [ -70.994781494140511, -15.04918384552002 ], [ -70.997360229492188, -15.054108619689941 ], [ -70.998123168945312, -15.057263374328613 ], [ -70.997802734374943, -15.058988571166992 ], [ -70.99566650390625, -15.064002990722656 ], [ -70.995056152343693, -15.066329956054631 ], [ -70.994789123535156, -15.069157600402718 ], [ -70.99481201171875, -15.073101043701115 ], [ -70.995582580566406, -15.081315040588379 ], [ -70.994644165039062, -15.08358097076416 ], [ -70.993820190429631, -15.084494590759277 ], [ -70.992927551269531, -15.087347984313965 ], [ -70.993431091308537, -15.089161872863713 ], [ -70.993698120117131, -15.092136383056641 ], [ -70.993766784667969, -15.094435691833496 ], [ -70.993400573730469, -15.095746994018555 ], [ -70.992835998535099, -15.096335411071777 ], [ -70.991043090820256, -15.09705924987793 ], [ -70.985183715820312, -15.102647781372013 ], [ -70.980934143066349, -15.105232238769531 ], [ -70.980293273925781, -15.105942726135197 ], [ -70.979988098144474, -15.106839179992676 ], [ -70.979423522949105, -15.112098693847656 ], [ -70.978454589843693, -15.116340637206918 ], [ -70.978652954101506, -15.124751091003418 ], [ -70.977226257324162, -15.127092361450195 ], [ -70.976608276367188, -15.129306793212777 ], [ -70.976638793945256, -15.130669593810921 ], [ -70.977333068847656, -15.13228797912592 ], [ -70.976951599121094, -15.140139579772892 ], [ -70.977584838867131, -15.143210411071664 ], [ -70.978248596191349, -15.144827842712289 ], [ -70.979339599609375, -15.146056175231877 ], [ -70.980972290039062, -15.147059440612793 ], [ -70.98175048828125, -15.14793872833252 ], [ -70.981651306152344, -15.149153709411621 ], [ -70.980064392089787, -15.152474403381291 ], [ -70.979278564453125, -15.154921531677189 ], [ -70.975929260253906, -15.160346031188908 ], [ -70.975830078125, -15.162078857421818 ], [ -70.976821899414006, -15.168880462646428 ], [ -70.976089477538949, -15.17203426361084 ], [ -70.976287841796875, -15.175258636474553 ], [ -70.975898742675668, -15.175809860229492 ], [ -70.972068786621037, -15.179161071777287 ], [ -70.971336364746094, -15.180293083190861 ], [ -70.971511840820199, -15.181732177734318 ], [ -70.97314453125, -15.18648624420166 ], [ -70.972145080566349, -15.1927490234375 ], [ -70.972236633300724, -15.194093704223576 ], [ -70.972839355468693, -15.196025848388672 ], [ -70.9727783203125, -15.196828842163086 ], [ -70.972503662109375, -15.197455406188908 ], [ -70.971672058105412, -15.19835090637207 ], [ -70.967956542968693, -15.201182365417424 ], [ -70.967201232910099, -15.202458381652775 ], [ -70.966888427734375, -15.203804969787541 ], [ -70.966949462890625, -15.204600334167424 ], [ -70.969062805175781, -15.207607269286996 ], [ -70.969192504882756, -15.208329200744629 ], [ -70.968971252441406, -15.208832740783635 ], [ -70.962661743164062, -15.214870452880859 ], [ -70.961906433105469, -15.216461181640568 ], [ -70.962028503417969, -15.216861724853516 ], [ -70.96429443359375, -15.218400955200138 ], [ -70.964935302734375, -15.219278335571232 ], [ -70.965446472167969, -15.220821380615234 ], [ -70.965499877929574, -15.223799705505371 ], [ -70.965744018554688, -15.224967002868652 ], [ -70.966705322265568, -15.22646427154541 ], [ -70.969947814941349, -15.22978687286377 ], [ -70.970298767089844, -15.232707023620605 ], [ -70.971771240234318, -15.233710289001351 ], [ -70.973381042480412, -15.234034538269043 ], [ -70.975189208984375, -15.236070632934457 ], [ -70.976127624511719, -15.238181114196721 ], [ -70.976745605468693, -15.241121292114201 ], [ -70.977188110351562, -15.242195129394474 ], [ -70.978439331054631, -15.242831230163517 ], [ -70.980216979980469, -15.242810249328556 ], [ -70.983383178710938, -15.24451732635498 ], [ -70.985496520996037, -15.247000694274902 ], [ -70.985771179199219, -15.248738288879395 ], [ -70.984794616699219, -15.252797126769963 ], [ -70.983589172363224, -15.256094932556096 ], [ -70.981956481933594, -15.257882118225041 ], [ -70.978279113769418, -15.259700775146484 ], [ -70.976875305175781, -15.26154899597168 ], [ -70.976577758789062, -15.26270866394043 ], [ -70.976570129394531, -15.267301559448242 ], [ -70.9759521484375, -15.269816398620605 ], [ -70.974914550781193, -15.271845817565861 ], [ -70.971092224121037, -15.275781631469727 ], [ -70.969474792480412, -15.277033805847168 ], [ -70.965896606445312, -15.278829574584961 ], [ -70.963111877441349, -15.279643058776799 ], [ -70.960815429687443, -15.281163215637207 ], [ -70.959053039550781, -15.282684326171875 ], [ -70.958572387695312, -15.283944129943848 ], [ -70.955711364746094, -15.28692531585682 ], [ -70.9541015625, -15.288963317871094 ], [ -70.952362060546875, -15.291708946228027 ], [ -70.950851440429688, -15.294739723205566 ], [ -70.949897766113281, -15.297698974609318 ], [ -70.949760437011662, -15.301767349243107 ], [ -70.950134277343693, -15.303729057312012 ], [ -70.95159912109375, -15.308105468749943 ], [ -70.953437805175781, -15.311882019042969 ], [ -70.955825805664062, -15.315037727355957 ], [ -70.958587646484375, -15.317676544189453 ], [ -70.961235046386719, -15.318987846374512 ], [ -70.969963073730412, -15.318901062011605 ], [ -70.974502563476562, -15.319399833679199 ], [ -70.977546691894531, -15.319284439086914 ], [ -70.978614807128906, -15.319012641906681 ], [ -70.983711242675724, -15.316560745239144 ], [ -70.98468017578125, -15.316387176513615 ], [ -70.985771179199219, -15.316516876220589 ], [ -70.98696136474598, -15.317241668701115 ], [ -70.990036010742188, -15.320717811584416 ], [ -70.995796203613224, -15.325358390807992 ], [ -71.000198364257756, -15.329740524291992 ], [ -71.001930236816293, -15.330737113952637 ], [ -71.006660461425781, -15.335468292236271 ], [ -71.009361267089787, -15.338871002197266 ], [ -71.011665344238281, -15.342424392700195 ], [ -71.011825561523381, -15.343463897705078 ], [ -71.011466979980355, -15.347481727600098 ], [ -71.011871337890625, -15.350013732910156 ], [ -71.012603759765568, -15.351433753967228 ], [ -71.015258789062443, -15.354911804199162 ], [ -71.019683837890625, -15.365509986877441 ], [ -71.021545410156193, -15.36768913269043 ], [ -71.023880004882812, -15.369139671325684 ], [ -71.025268554687443, -15.370644569396973 ], [ -71.025924682617188, -15.372269630432129 ], [ -71.025863647460881, -15.374417304992619 ], [ -71.026084899902344, -15.375457763671875 ], [ -71.027557373046818, -15.379373550414982 ], [ -71.029167175292969, -15.381559371948242 ], [ -71.032264709472656, -15.384652137756348 ], [ -71.033363342285156, -15.387118339538574 ], [ -71.035995483398438, -15.390901565551758 ], [ -71.036926269531193, -15.393713951110783 ], [ -71.037574768066349, -15.398488998413086 ], [ -71.039131164550781, -15.404984474182129 ], [ -71.039772033691349, -15.406242370605412 ], [ -71.039894104003906, -15.409754753112736 ], [ -71.040657043457031, -15.411994934082031 ], [ -71.044242858886662, -15.417934417724609 ], [ -71.04647064208973, -15.42033672332758 ], [ -71.048980712890625, -15.422248840331974 ], [ -71.053207397460881, -15.426348686218205 ], [ -71.057472229003906, -15.428265571594238 ], [ -71.059127807617131, -15.430909156799316 ], [ -71.061477661132812, -15.433017730712834 ], [ -71.06329345703125, -15.434268951415959 ], [ -71.066772460937443, -15.435629844665527 ], [ -71.074234008789062, -15.437225341796818 ], [ -71.075614929199162, -15.438114166259766 ], [ -71.075942993164062, -15.438877105712891 ], [ -71.075981140136719, -15.439806938171387 ], [ -71.075599670410156, -15.442461967468205 ], [ -71.074089050292912, -15.445466041564885 ], [ -71.072166442871094, -15.447904586791992 ], [ -71.071914672851506, -15.449090003967228 ], [ -71.072212219238224, -15.450542449951172 ], [ -71.072822570800781, -15.451264381408635 ], [ -71.074096679687443, -15.45210075378418 ], [ -71.078422546386719, -15.453502655029297 ], [ -71.079841613769474, -15.454817771911621 ], [ -71.081031799316406, -15.456319808959961 ], [ -71.081802368164062, -15.456882476806584 ], [ -71.084732055664062, -15.457728385925179 ], [ -71.086341857910156, -15.458477973937988 ], [ -71.089302062988281, -15.458368301391545 ], [ -71.093254089355469, -15.457716941833439 ], [ -71.096199035644531, -15.456965446472054 ], [ -71.101959228515568, -15.45464038848877 ], [ -71.103996276855469, -15.453087806701603 ], [ -71.108612060546818, -15.447910308837834 ], [ -71.110366821288949, -15.43951320648182 ], [ -71.111724853515625, -15.436594009399357 ], [ -71.117378234863281, -15.429385185241642 ], [ -71.119415283203068, -15.427390098571721 ], [ -71.120246887206974, -15.426916122436523 ], [ -71.122016906738281, -15.426569938659668 ], [ -71.124801635742188, -15.426592826843262 ], [ -71.126564025878849, -15.426937103271428 ], [ -71.129585266113281, -15.42799186706543 ], [ -71.131332397460881, -15.4290771484375 ], [ -71.134574890136662, -15.433944702148438 ], [ -71.135704040527287, -15.43529224395752 ], [ -71.13887786865223, -15.437701225280648 ], [ -71.142051696777344, -15.439064025878793 ], [ -71.145881652832031, -15.439718246459961 ], [ -71.148200988769474, -15.440623283386174 ], [ -71.152191162109375, -15.440621376037598 ], [ -71.154678344726506, -15.440475463867131 ], [ -71.156234741210824, -15.439905166625977 ], [ -71.157020568847656, -15.43913459777832 ], [ -71.157875061035156, -15.436577796935978 ], [ -71.158905029296761, -15.435297012328988 ], [ -71.163833618164006, -15.432296752929688 ], [ -71.167343139648438, -15.429459571838379 ], [ -71.170700073242131, -15.428155899047852 ], [ -71.173385620117131, -15.426054954528752 ], [ -71.174430847167912, -15.424538612365723 ], [ -71.174705505371037, -15.423309326171818 ], [ -71.174362182617188, -15.417824745178223 ], [ -71.174926757812386, -15.414369583129883 ], [ -71.174919128417912, -15.411941528320256 ], [ -71.173446655273438, -15.406755447387638 ], [ -71.169891357421875, -15.39763355255127 ], [ -71.170310974121094, -15.396467208862248 ], [ -71.171958923339787, -15.394304275512695 ], [ -71.172348022460881, -15.393145561218205 ], [ -71.172431945800724, -15.39100170135498 ], [ -71.171951293945256, -15.388066291808968 ], [ -71.170997619628849, -15.384832382202092 ], [ -71.168197631835938, -15.377942085266056 ], [ -71.167335510253906, -15.375104904174748 ], [ -71.166625976562443, -15.373791694641113 ], [ -71.165153503417969, -15.372178077697754 ], [ -71.163475036621037, -15.370760917663574 ], [ -71.159706115722656, -15.369414329528752 ], [ -71.156585693359318, -15.367935180664062 ], [ -71.155448913574162, -15.367184638977051 ], [ -71.153823852539006, -15.365513801574707 ], [ -71.152702331542912, -15.363652229308968 ], [ -71.152023315429631, -15.360492706298828 ], [ -71.151298522949219, -15.358900070190373 ], [ -71.151222229003906, -15.35768985748291 ], [ -71.151580810546875, -15.355971336364632 ], [ -71.151351928710881, -15.354236602783203 ], [ -71.152877807617131, -15.351069450378418 ], [ -71.153465270996037, -15.349129676818791 ], [ -71.153388977050781, -15.341052055358887 ], [ -71.153884887695312, -15.339275360107365 ], [ -71.154884338378849, -15.338000297546387 ], [ -71.156471252441406, -15.336685180664062 ], [ -71.161491394042969, -15.333577156066838 ], [ -71.162879943847599, -15.33206844329834 ], [ -71.163940429687443, -15.329883575439453 ], [ -71.164093017578125, -15.328280448913517 ], [ -71.163795471191406, -15.321127891540471 ], [ -71.162612915039006, -15.312743186950627 ], [ -71.163459777831974, -15.307010650634766 ], [ -71.164665222167969, -15.302871704101506 ], [ -71.165031433105469, -15.300747871398926 ], [ -71.16485595703125, -15.297117233276367 ], [ -71.164131164550724, -15.293145179748478 ], [ -71.164398193359375, -15.290748596191349 ], [ -71.172660827636719, -15.282617568969727 ], [ -71.174957275390625, -15.28083324432373 ], [ -71.17828369140625, -15.278914451599007 ], [ -71.180198669433594, -15.276924133300724 ], [ -71.182373046875, -15.276177406310978 ], [ -71.187957763671818, -15.274954795837402 ], [ -71.190315246582031, -15.274209976196232 ], [ -71.193634033203125, -15.271991729736328 ], [ -71.196464538574162, -15.269413948059025 ], [ -71.19927978515625, -15.264327049255257 ], [ -71.200325012207031, -15.261540412902832 ], [ -71.200775146484261, -15.259579658508244 ], [ -71.200424194335938, -15.258003234863281 ], [ -71.1973876953125, -15.254497528076115 ], [ -71.196731567382756, -15.253310203552246 ], [ -71.196357727050724, -15.252077102661076 ], [ -71.197563171386719, -15.250727653503418 ], [ -71.20296478271473, -15.24601936340332 ], [ -71.203117370605469, -15.245542526245117 ], [ -71.202972412109375, -15.244402885437012 ], [ -71.201667785644531, -15.243477821350041 ], [ -71.200866699218636, -15.243256568908691 ], [ -71.199325561523381, -15.24189567565918 ], [ -71.197486877441406, -15.239537239074707 ], [ -71.195899963378849, -15.23669528961176 ], [ -71.19448089599598, -15.235417366027832 ], [ -71.1937255859375, -15.233976364135629 ], [ -71.192611694335938, -15.233174324035588 ], [ -71.191024780273381, -15.232741355895939 ], [ -71.187614440917855, -15.233882904052734 ], [ -71.186264038085881, -15.234112739562931 ], [ -71.184600830078125, -15.233940124511719 ], [ -71.183616638183594, -15.233427047729492 ], [ -71.181587219238224, -15.230864524841309 ], [ -71.178642272949162, -15.228009223937931 ], [ -71.175178527831974, -15.222653388977051 ], [ -71.173019409179574, -15.220378875732365 ], [ -71.172782897949219, -15.219742774963265 ], [ -71.172805786132756, -15.218263626098633 ], [ -71.172508239746037, -15.217512130737305 ], [ -71.172279357910156, -15.216512680053654 ], [ -71.171226501464844, -15.215433120727539 ], [ -71.165924072265625, -15.212794303893986 ], [ -71.163276672363224, -15.210629463195801 ], [ -71.157829284667912, -15.203677177429199 ], [ -71.157356262206974, -15.201712608337402 ], [ -71.157493591308594, -15.200090408325138 ], [ -71.158920288085938, -15.196559906005859 ], [ -71.160453796386719, -15.194519996643066 ], [ -71.161819458007812, -15.193541526794377 ], [ -71.163055419921875, -15.192958831787109 ], [ -71.166862487792969, -15.192083358764592 ], [ -71.168006896972656, -15.191183090209961 ], [ -71.169235229492188, -15.189687728881779 ], [ -71.170654296875, -15.1875 ], [ -71.171218872070312, -15.186120986938477 ], [ -71.171440124511719, -15.184564590454045 ], [ -71.172866821289062, -15.181799888610783 ], [ -71.173965454101506, -15.178190231323242 ], [ -71.175582885742131, -15.17458438873291 ], [ -71.176918029785099, -15.172421455383244 ], [ -71.177978515624886, -15.171521186828613 ], [ -71.179458618164062, -15.170803070068359 ], [ -71.181808471679688, -15.170429229736328 ], [ -71.184844970703011, -15.170407295226994 ], [ -71.185195922851506, -15.169945716857853 ], [ -71.184951782226562, -15.169066429138184 ], [ -71.183090209960938, -15.164975166320744 ], [ -71.180816650390568, -15.162400245666447 ], [ -71.1793212890625, -15.161480903625488 ], [ -71.173454284667969, -15.159045219421387 ], [ -71.172584533691406, -15.157215118408146 ], [ -71.171943664550724, -15.154110908508244 ], [ -71.171020507812386, -15.15113639831543 ], [ -71.170364379882812, -15.150121688842717 ], [ -71.168670654296875, -15.148324012756348 ], [ -71.167762756347599, -15.14809417724598 ], [ -71.165565490722599, -15.14836311340332 ], [ -71.163093566894474, -15.147127151489258 ], [ -71.160057067871094, -15.147049903869572 ], [ -71.159538269042912, -15.14686107635498 ], [ -71.158615112304631, -15.146033287048283 ], [ -71.157173156738224, -15.142986297607422 ], [ -71.155525207519531, -15.140990257263127 ], [ -71.153549194335881, -15.139494895935059 ], [ -71.150726318359375, -15.138392448425293 ], [ -71.150070190429688, -15.13789176940918 ], [ -71.146713256835938, -15.131699562072697 ], [ -71.144683837890568, -15.128649711608887 ], [ -71.143997192382756, -15.126745223998967 ], [ -71.143989562988281, -15.123649597167912 ], [ -71.144920349121094, -15.121699333190918 ], [ -71.147994995117188, -15.118800163269043 ], [ -71.150840759277344, -15.115509033203125 ], [ -71.152130126953068, -15.115018844604435 ], [ -71.154640197753906, -15.1150865554809 ], [ -71.155563354492131, -15.114887237548771 ], [ -71.156639099121094, -15.114246368408203 ], [ -71.161514282226562, -15.109519004821721 ], [ -71.162803649902287, -15.107295036315918 ], [ -71.163604736328125, -15.104582786559945 ], [ -71.163970947265625, -15.102595329284668 ], [ -71.164154052734261, -15.098672866821289 ], [ -71.164947509765625, -15.097485542297363 ], [ -71.166549682617188, -15.09631443023676 ], [ -71.170120239257812, -15.094550132751408 ], [ -71.173049926757812, -15.093725204467773 ], [ -71.176185607910156, -15.093292236328125 ], [ -71.180160522460881, -15.092123031616211 ], [ -71.180938720703011, -15.091558456420842 ], [ -71.183410644531193, -15.088838577270508 ], [ -71.185119628906193, -15.087965965270939 ], [ -71.186653137206974, -15.088000297546387 ], [ -71.188316345214844, -15.088661193847599 ], [ -71.189834594726562, -15.088838577270508 ], [ -71.191497802734318, -15.090042114257812 ], [ -71.192527770996094, -15.09041786193842 ], [ -71.194046020507812, -15.090641021728516 ], [ -71.195510864257756, -15.090296745300293 ], [ -71.197311401367131, -15.088269233703613 ], [ -71.199226379394474, -15.085603713989258 ], [ -71.203254699706918, -15.076702117919922 ], [ -71.205497741699219, -15.07330226898182 ], [ -71.206993103027344, -15.071710586547852 ], [ -71.208251953125, -15.068873405456543 ], [ -71.208488464355412, -15.067548751830998 ], [ -71.207595825195312, -15.06443977355957 ], [ -71.207572937011719, -15.063356399536076 ], [ -71.208175659179631, -15.061146736144906 ], [ -71.209579467773438, -15.05933666229248 ], [ -71.20977783203125, -15.05678653717041 ], [ -71.208877563476449, -15.053127288818359 ], [ -71.208274841308537, -15.052060127258244 ], [ -71.207260131835824, -15.051151275634766 ], [ -71.207305908203125, -15.05047416687006 ], [ -71.207740783691406, -15.050166130065918 ], [ -71.211875915527344, -15.049819946289062 ], [ -71.21405029296875, -15.04892635345459 ], [ -71.215545654296818, -15.048707962036133 ], [ -71.218215942382756, -15.049393653869572 ], [ -71.219177246093636, -15.050166130065918 ], [ -71.221992492675781, -15.05819129943842 ], [ -71.223907470703125, -15.060976028442269 ], [ -71.224258422851562, -15.0628404617309 ], [ -71.224258422851562, -15.064862251281625 ], [ -71.225059509277287, -15.0662841796875 ], [ -71.226020812988224, -15.069087982177734 ], [ -71.226707458496037, -15.069867134094238 ], [ -71.228096008300781, -15.068942070007324 ], [ -71.228881835937443, -15.068096160888672 ], [ -71.229812622070312, -15.066605567932129 ], [ -71.233085632324162, -15.063717842101937 ], [ -71.235107421874886, -15.0628404617309 ], [ -71.239845275878849, -15.061936378479004 ], [ -71.241531372070312, -15.060303688049316 ], [ -71.242317199706974, -15.057338714599609 ], [ -71.243186950683537, -15.056459426879826 ], [ -71.243927001953125, -15.056064605712777 ], [ -71.245857238769474, -15.056159973144418 ], [ -71.248542785644474, -15.057042121887093 ], [ -71.253120422363224, -15.058068275451603 ], [ -71.254676818847656, -15.059418678283635 ], [ -71.256385803222656, -15.061559677124023 ], [ -71.257354736328125, -15.062324523925724 ], [ -71.258110046386719, -15.062400817871094 ], [ -71.259918212890625, -15.061979293823242 ], [ -71.261993408203068, -15.061887741088867 ], [ -71.264190673828011, -15.062129020690861 ], [ -71.265693664550724, -15.062822341918945 ], [ -71.266769409179574, -15.063877105712834 ], [ -71.267105102539062, -15.064921379089355 ], [ -71.267074584960938, -15.065726280212402 ], [ -71.265632629394531, -15.067856788635254 ], [ -71.265548706054688, -15.070337295532227 ], [ -71.265296936035156, -15.071346282958984 ], [ -71.264579772949219, -15.072280883788949 ], [ -71.261680603027287, -15.075029373168945 ], [ -71.261947631835938, -15.076234817504769 ], [ -71.262702941894531, -15.077213287353459 ], [ -71.263572692871094, -15.077650070190373 ], [ -71.266883850097656, -15.077869415283146 ], [ -71.268638610839787, -15.07863712310791 ], [ -71.271057128906136, -15.081239700317383 ], [ -71.272209167480469, -15.083361625671387 ], [ -71.273307800292969, -15.084715843200627 ], [ -71.277763366699219, -15.088371276855412 ], [ -71.281433105468693, -15.092781066894418 ], [ -71.283248901367131, -15.094607353210449 ], [ -71.287429809570256, -15.097014427185002 ], [ -71.289413452148438, -15.098689079284668 ], [ -71.29366302490223, -15.103306770324707 ], [ -71.296310424804631, -15.106932640075627 ], [ -71.297714233398438, -15.108434677123967 ], [ -71.29949951171875, -15.109420776367188 ], [ -71.304771423339844, -15.110617637634277 ], [ -71.305641174316349, -15.111029624938965 ], [ -71.307029724121094, -15.112152099609375 ], [ -71.308692932128849, -15.114462852478027 ], [ -71.309959411621037, -15.117742538452148 ], [ -71.310539245605355, -15.118490219116211 ], [ -71.313270568847599, -15.119465827941895 ], [ -71.315711975097656, -15.119931221008301 ], [ -71.316986083984375, -15.119959831237793 ], [ -71.320777893066406, -15.119182586669865 ], [ -71.322593688964844, -15.118498802185002 ], [ -71.324127197265625, -15.11756706237793 ], [ -71.325111389160099, -15.116592407226506 ], [ -71.325767517089787, -15.11513710021967 ], [ -71.327667236328125, -15.109205245971623 ], [ -71.328170776367131, -15.106431007385197 ], [ -71.328628540039006, -15.100655555725098 ], [ -71.329322814941349, -15.099051475524789 ], [ -71.330528259277344, -15.098420143127385 ], [ -71.334953308105355, -15.097969055175781 ], [ -71.338035583496094, -15.097205162048283 ], [ -71.339675903320312, -15.096286773681584 ], [ -71.342422485351562, -15.093967437744141 ], [ -71.346542358398438, -15.092444419860783 ], [ -71.348464965820256, -15.092159271240234 ], [ -71.354125976562386, -15.09229564666748 ], [ -71.355247497558537, -15.091301918029785 ], [ -71.355789184570312, -15.090366363525334 ], [ -71.358436584472656, -15.083430290222168 ], [ -71.360237121582031, -15.081203460693359 ], [ -71.360679626464787, -15.080209732055607 ], [ -71.36199951171875, -15.078965187072697 ], [ -71.363159179687443, -15.07885837554926 ], [ -71.36470794677723, -15.07916355133051 ], [ -71.369338989257812, -15.080960273742619 ], [ -71.370712280273381, -15.080765724182072 ], [ -71.371269226074162, -15.080385208129883 ], [ -71.371978759765625, -15.079378128051701 ], [ -71.374252319335938, -15.073747634887638 ], [ -71.376091003417969, -15.071213722229004 ], [ -71.376853942871094, -15.069483757018986 ], [ -71.378593444824219, -15.067056655883732 ], [ -71.3798828125, -15.064367294311523 ], [ -71.380668640136719, -15.063481330871582 ], [ -71.382102966308594, -15.062418937683049 ], [ -71.384902954101506, -15.060885429382267 ], [ -71.387413024902344, -15.060067176818791 ], [ -71.389289855956974, -15.058462142944279 ], [ -71.390663146972656, -15.055669784545898 ], [ -71.392379760742188, -15.053367614746037 ], [ -71.392402648925781, -15.051752090454102 ], [ -71.392623901367131, -15.050954818725529 ], [ -71.395721435546875, -15.048465728759766 ], [ -71.398651123046818, -15.04263782501215 ], [ -71.399879455566349, -15.041753768920898 ], [ -71.402595520019531, -15.041184425353947 ], [ -71.403999328613168, -15.040610313415527 ], [ -71.411827087402344, -15.035320281982422 ], [ -71.413124084472599, -15.034825325012093 ], [ -71.414772033691349, -15.034561157226562 ], [ -71.416389465331974, -15.03350639343256 ], [ -71.417205810546875, -15.032263755798283 ], [ -71.417556762695312, -15.031222343444767 ], [ -71.417572021484375, -15.027439117431584 ], [ -71.419052124023381, -15.022247314453125 ], [ -71.419181823730469, -15.018736839294377 ], [ -71.42120361328125, -15.016811370849609 ], [ -71.421577453613281, -15.016021728515625 ], [ -71.421493530273438, -15.012375831603947 ], [ -71.422462463378906, -15.011849403381348 ], [ -71.428482055664006, -15.010860443115121 ], [ -71.429443359374943, -15.010071754455566 ], [ -71.42987060546875, -15.009373664855957 ], [ -71.430046081542969, -15.0077610015868 ], [ -71.429809570312443, -15.006728172302189 ], [ -71.428504943847599, -15.005146026611328 ], [ -71.427291870117188, -15.004549026489258 ], [ -71.426872253417912, -15.003812789916992 ], [ -71.426856994628849, -15.002441406249943 ], [ -71.427192687988281, -15.001408576965275 ], [ -71.428779602050724, -14.999382019042912 ], [ -71.430519104003906, -14.998274803161621 ], [ -71.43255615234375, -14.997882843017521 ], [ -71.434516906738168, -14.997207641601506 ], [ -71.435836791992131, -14.997564315795898 ], [ -71.440528869628793, -14.996554374694824 ], [ -71.443290710449105, -14.995585441589355 ], [ -71.444801330566349, -14.994698524475098 ], [ -71.445571899414006, -14.993743896484375 ], [ -71.445869445800668, -14.992980003356877 ], [ -71.446128845214787, -14.988112449645939 ], [ -71.446479797363281, -14.986492156982422 ], [ -71.446456909179688, -14.984649658203125 ], [ -71.447547912597599, -14.982112884521484 ], [ -71.447784423828125, -14.980013847351017 ], [ -71.448356628417969, -14.979273796081429 ], [ -71.449485778808537, -14.97882175445551 ], [ -71.451271057128849, -14.978670120239201 ], [ -71.454841613769531, -14.977209091186467 ], [ -71.456626892089787, -14.977055549621582 ], [ -71.458244323730412, -14.977551460266113 ], [ -71.459815979003906, -14.978396415710392 ], [ -71.465896606445199, -14.982932090759277 ], [ -71.467300415039006, -14.983124732971135 ], [ -71.468948364257699, -14.98248291015625 ], [ -71.47137451171875, -14.982043266296387 ], [ -71.475776672363224, -14.981694221496525 ], [ -71.478996276855469, -14.981707572937012 ], [ -71.482185363769474, -14.981315612792969 ], [ -71.486442565917969, -14.980162620544434 ], [ -71.49273681640625, -14.977970123291016 ], [ -71.495277404785156, -14.978222846984863 ], [ -71.498199462890568, -14.979269027709961 ], [ -71.500648498535156, -14.979144096374455 ], [ -71.501594543457031, -14.978805541992131 ], [ -71.502922058105469, -14.977455139160099 ], [ -71.504783630371037, -14.976283073425236 ], [ -71.506149291992188, -14.975645065307617 ], [ -71.506736755371094, -14.975635528564396 ], [ -71.507728576660099, -14.976905822753849 ], [ -71.508338928222656, -14.979119300842228 ], [ -71.508010864257756, -14.984618186950684 ], [ -71.508209228515568, -14.995652198791504 ], [ -71.508499145507756, -14.997915267944279 ], [ -71.509727478027287, -15.002472877502385 ], [ -71.509757995605412, -15.003683090209961 ], [ -71.51033782958973, -15.004719734191895 ], [ -71.510452270507812, -15.006328582763672 ], [ -71.509513854980469, -15.008571624755746 ], [ -71.509368896484318, -15.009914398193359 ], [ -71.508758544921875, -15.011844635009766 ], [ -71.507781982421875, -15.013627052307072 ], [ -71.505699157714844, -15.016068458557129 ], [ -71.505233764648438, -15.017043113708496 ], [ -71.505104064941406, -15.018387794494572 ], [ -71.505302429199219, -15.022686958312931 ], [ -71.505119323730469, -15.024156570434513 ], [ -71.504478454589844, -15.02595043182373 ], [ -71.503585815429688, -15.02694034576416 ], [ -71.5015869140625, -15.028434753417969 ], [ -71.498619079589844, -15.031538963317871 ], [ -71.497360229492131, -15.032250404357796 ], [ -71.492546081542969, -15.033098220825138 ], [ -71.490821838378906, -15.033908843994084 ], [ -71.486526489257812, -15.036911010742188 ], [ -71.484748840331974, -15.039151191711426 ], [ -71.483650207519531, -15.042057037353516 ], [ -71.483177185058594, -15.045389175415039 ], [ -71.482353210449219, -15.04753398895258 ], [ -71.48223876953125, -15.048606872558537 ], [ -71.482353210449219, -15.050494194030705 ], [ -71.482826232910156, -15.052189826965332 ], [ -71.484977722167969, -15.056710243225098 ], [ -71.487609863281193, -15.060190200805607 ], [ -71.490219116210938, -15.062170028686523 ], [ -71.494087219238224, -15.066399574279785 ], [ -71.495758056640625, -15.067076683044377 ], [ -71.499916076660099, -15.067212104797306 ], [ -71.501235961914062, -15.067576408386174 ], [ -71.502342224121094, -15.069001197814941 ], [ -71.506774902343693, -15.072300910949593 ], [ -71.510200500488281, -15.075467109680176 ], [ -71.511611938476562, -15.077269554138184 ], [ -71.512138366699162, -15.079361915588265 ], [ -71.5130615234375, -15.079963684082031 ], [ -71.514114379882756, -15.079727172851562 ], [ -71.518424987792912, -15.077012062072754 ], [ -71.519966125488168, -15.076384544372559 ], [ -71.526611328124943, -15.0763063430785 ], [ -71.528022766113281, -15.075752258300781 ], [ -71.529624938964844, -15.074673652648869 ], [ -71.530540466308537, -15.074416160583439 ], [ -71.533309936523381, -15.07414531707758 ], [ -71.536216735839844, -15.074377059936523 ], [ -71.540565490722543, -15.073604583740178 ], [ -71.546226501464844, -15.07227611541748 ], [ -71.548988342285156, -15.071006774902287 ], [ -71.557708740234318, -15.066149711608773 ], [ -71.559219360351562, -15.065936088561955 ], [ -71.562042236328125, -15.064816474914551 ], [ -71.563957214355469, -15.064565658569279 ], [ -71.565765380859375, -15.064599990844613 ], [ -71.568153381347656, -15.065646171569767 ], [ -71.569717407226506, -15.066987991332894 ], [ -71.570632934570312, -15.06813907623291 ], [ -71.571929931640568, -15.070967674255371 ], [ -71.573928833007756, -15.074165344238224 ], [ -71.576293945312443, -15.079158782958984 ], [ -71.576980590820256, -15.081333160400334 ], [ -71.577560424804631, -15.085991859436035 ], [ -71.578521728515511, -15.088651657104492 ], [ -71.579841613769474, -15.090694427490234 ], [ -71.582717895507699, -15.093392372131348 ], [ -71.584480285644531, -15.096280097961426 ], [ -71.584640502929688, -15.097888946533203 ], [ -71.584121704101506, -15.100391387939396 ], [ -71.584625244140511, -15.103170394897461 ], [ -71.584671020507812, -15.105778694152718 ], [ -71.585754394531193, -15.108395576477051 ], [ -71.585899353027344, -15.111745834350586 ], [ -71.587165832519474, -15.117191314697209 ], [ -71.587158203125, -15.120423316955566 ], [ -71.587417602539062, -15.12089729309082 ], [ -71.587760925292912, -15.125323295593262 ], [ -71.588470458984375, -15.127644538879395 ], [ -71.589622497558594, -15.129423141479435 ], [ -71.592018127441406, -15.130931854247933 ], [ -71.593399047851449, -15.13152885437006 ], [ -71.595451354980469, -15.13192081451416 ], [ -71.599105834960881, -15.132228851318303 ], [ -71.600639343261662, -15.132632255554199 ], [ -71.601364135742188, -15.133625984191781 ], [ -71.602890014648438, -15.137557029724064 ], [ -71.604057312011662, -15.139273643493596 ], [ -71.605232238769531, -15.140382766723576 ], [ -71.608566284179574, -15.141751289367676 ], [ -71.609565734863281, -15.142461776733398 ], [ -71.612091064453011, -15.143175125122013 ], [ -71.616989135742188, -15.145398139953613 ], [ -71.618743896484318, -15.145812034606934 ], [ -71.619804382324162, -15.145703315734806 ], [ -71.626045227050781, -15.143594741821289 ], [ -71.629905700683537, -15.141764640808049 ], [ -71.633285522460938, -15.139656066894531 ], [ -71.635185241699219, -15.138854026794434 ], [ -71.642677307128849, -15.133316040038949 ], [ -71.644004821777287, -15.131727218627873 ], [ -71.644493103027287, -15.130769729614201 ], [ -71.644409179687443, -15.126868247985783 ], [ -71.645034790039062, -15.125369071960392 ], [ -71.647102355957031, -15.12320613861084 ], [ -71.656669616699219, -15.11522388458252 ], [ -71.65771484375, -15.113480567932072 ], [ -71.661666870117131, -15.109095573425293 ], [ -71.662734985351449, -15.107559204101506 ], [ -71.663406372070312, -15.106107711791992 ], [ -71.664916992187443, -15.100603103637695 ], [ -71.667480468749943, -15.096417427062931 ], [ -71.668319702148438, -15.092744827270508 ], [ -71.67022705078125, -15.090606689453125 ], [ -71.673843383789062, -15.088872909545898 ], [ -71.675704956054574, -15.088420867919922 ], [ -71.679321289062443, -15.088312149047795 ], [ -71.684730529785099, -15.090340614318848 ], [ -71.691215515136662, -15.090996742248421 ], [ -71.693527221679631, -15.090668678283691 ], [ -71.699745178222656, -15.088376045227051 ], [ -71.702369689941349, -15.088072776794377 ], [ -71.704292297363224, -15.088236808776855 ], [ -71.706390380859318, -15.089240074157715 ], [ -71.710128784179574, -15.08913516998291 ], [ -71.711997985839844, -15.089693069458008 ], [ -71.712806701660156, -15.08965873718256 ], [ -71.715011596679688, -15.088833808898926 ], [ -71.719902038574219, -15.084696769714355 ], [ -71.722991943359318, -15.083153724670353 ], [ -71.727478027343693, -15.082449913024846 ], [ -71.736747741699219, -15.08162689208973 ], [ -71.741210937499943, -15.079950332641545 ], [ -71.74298095703125, -15.080237388610783 ], [ -71.7457275390625, -15.081185340881348 ], [ -71.748077392578068, -15.081385612487736 ], [ -71.753227233886662, -15.083705902099553 ], [ -71.755638122558594, -15.085283279418888 ], [ -71.756584167480469, -15.085540771484375 ], [ -71.758285522460881, -15.085474967956486 ], [ -71.759696960449162, -15.08448314666748 ], [ -71.764678955078011, -15.079583168029785 ], [ -71.766822814941406, -15.078095436096135 ], [ -71.767745971679688, -15.078315734863281 ], [ -71.768699645996094, -15.079819679260197 ], [ -71.769515991210881, -15.080545425415039 ], [ -71.771743774414062, -15.081893920898381 ], [ -71.772987365722656, -15.08195781707758 ], [ -71.775505065917969, -15.080837249755803 ], [ -71.777244567871037, -15.079724311828556 ], [ -71.779762268066406, -15.077223777770996 ], [ -71.781623840331974, -15.075048446655273 ], [ -71.783859252929688, -15.071492195129395 ], [ -71.786430358886719, -15.06937217712391 ], [ -71.788230895996037, -15.069299697875977 ], [ -71.790916442871094, -15.069914817810059 ], [ -71.793128967285156, -15.069937705993596 ], [ -71.795524597167969, -15.069257736205998 ], [ -71.799285888671818, -15.067279815673828 ], [ -71.802047729492131, -15.066920280456543 ], [ -71.803428649902344, -15.066959381103516 ], [ -71.804855346679688, -15.067476272583008 ], [ -71.806144714355412, -15.068260192871037 ], [ -71.80963134765625, -15.071137428283635 ], [ -71.81353759765625, -15.072853088378793 ], [ -71.814552307128849, -15.074465751647949 ], [ -71.814422607421875, -15.075808525085449 ], [ -71.814636230468693, -15.076749801635742 ], [ -71.815399169921818, -15.077510833740178 ], [ -71.816436767578068, -15.07789421081543 ], [ -71.817558288574219, -15.077884674072209 ], [ -71.820182800292855, -15.077018737792912 ], [ -71.821952819824219, -15.076725006103459 ], [ -71.8306884765625, -15.076749801635742 ], [ -71.834541320800781, -15.076433181762695 ], [ -71.836715698242188, -15.075516700744572 ], [ -71.837760925292969, -15.074662208557072 ], [ -71.83880615234375, -15.072910308837834 ], [ -71.839347839355412, -15.068761825561467 ], [ -71.840286254882756, -15.065217971801758 ], [ -71.842086791992131, -15.062191009521484 ], [ -71.842926025390625, -15.060190200805607 ], [ -71.844734191894531, -15.058536529540959 ], [ -71.845825195312443, -15.057132720947266 ], [ -71.847717285156193, -15.054450988769531 ], [ -71.84893798828125, -15.052210807800236 ], [ -71.849403381347656, -15.050528526306152 ], [ -71.849716186523381, -15.047698020935059 ], [ -71.849647521972599, -15.044726371765137 ], [ -71.849365234374886, -15.043965339660588 ], [ -71.848526000976562, -15.043058395385742 ], [ -71.847099304199219, -15.04254245758051 ], [ -71.841430664062443, -15.042842864990234 ], [ -71.840065002441406, -15.042625427246094 ], [ -71.8385009765625, -15.041753768920898 ], [ -71.83489990234375, -15.038798332214355 ], [ -71.823593139648381, -15.03403377532959 ], [ -71.820373535156136, -15.031721115112305 ], [ -71.811683654785099, -15.023962974548283 ], [ -71.810005187988281, -15.022746086120549 ], [ -71.808319091796875, -15.021847724914494 ], [ -71.804679870605469, -15.02053260803217 ], [ -71.799957275390568, -15.019473075866699 ], [ -71.792808532714787, -15.015363693237248 ], [ -71.790313720703068, -15.015192985534611 ], [ -71.789405822753906, -15.014602661132812 ], [ -71.788291931152344, -15.01461219787592 ], [ -71.781211853027344, -15.012761116027775 ], [ -71.778060913085938, -15.012301445007324 ], [ -71.770675659179631, -15.010003089904728 ], [ -71.767402648925781, -15.009443283080998 ], [ -71.766456604003849, -15.00892257690424 ], [ -71.765251159667855, -15.007766723632812 ], [ -71.764358520507756, -15.006110191345215 ], [ -71.763847351074219, -15.003640174865609 ], [ -71.765892028808537, -14.999788284301758 ], [ -71.766212463378906, -14.998356819152775 ], [ -71.764823913574219, -14.994831085205021 ], [ -71.764724731445312, -14.992799758911133 ], [ -71.766639709472656, -14.989089965820256 ], [ -71.769973754882812, -14.984641075134277 ], [ -71.770423889160156, -14.981838226318303 ], [ -71.770210266113168, -14.979578971862793 ], [ -71.769523620605412, -14.97780799865717 ], [ -71.767997741699162, -14.975230216979924 ], [ -71.766532897949219, -14.97346019744873 ], [ -71.763641357421875, -14.97093677520752 ], [ -71.760406494140625, -14.966266632080078 ], [ -71.75958251953125, -14.964115142822209 ], [ -71.758468627929631, -14.957337379455566 ], [ -71.757728576660156, -14.955294609069824 ], [ -71.756568908691349, -14.953987121581974 ], [ -71.754753112792912, -14.952498435974121 ], [ -71.750839233398381, -14.950222015380859 ], [ -71.748771667480469, -14.94752311706543 ], [ -71.748435974121037, -14.946488380432072 ], [ -71.748382568359375, -14.94514083862299 ], [ -71.749320983886662, -14.940801620483342 ], [ -71.749839782714844, -14.939555168151855 ], [ -71.750030517578125, -14.936352729797363 ], [ -71.751579284667912, -14.934604644775391 ], [ -71.7528076171875, -14.933730125427246 ], [ -71.754417419433594, -14.932956695556641 ], [ -71.76116943359375, -14.930570602416992 ], [ -71.763763427734375, -14.929306030273381 ], [ -71.765914916992131, -14.928840637206974 ], [ -71.76788330078125, -14.927830696105957 ], [ -71.77584075927723, -14.919977188110352 ], [ -71.785934448242131, -14.911626815795842 ], [ -71.788619995117074, -14.908548355102482 ], [ -71.789833068847599, -14.906135559081974 ], [ -71.790611267089787, -14.903834342956429 ], [ -71.791328430175781, -14.899872779846135 ], [ -71.792915344238281, -14.897808074951172 ], [ -71.793876647949219, -14.897055625915471 ], [ -71.797340393066406, -14.896113395690804 ], [ -71.79827880859375, -14.896384239196721 ], [ -71.800460815429688, -14.897527694702148 ], [ -71.803947448730412, -14.900174140930176 ], [ -71.807136535644531, -14.901801109313908 ], [ -71.809379577636662, -14.903593063354435 ], [ -71.811401367187443, -14.904766082763672 ], [ -71.814117431640625, -14.905753135681152 ], [ -71.8193359375, -14.907089233398381 ], [ -71.821388244628849, -14.90728855133051 ], [ -71.824020385742188, -14.907181739807129 ], [ -71.826538085937443, -14.906069755554199 ], [ -71.828369140624943, -14.905021667480469 ], [ -71.82924652099598, -14.904221534729004 ], [ -71.829612731933537, -14.90169620513916 ], [ -71.830947875976506, -14.89900016784668 ], [ -71.830932617187443, -14.897601127624455 ], [ -71.830207824707031, -14.89559268951416 ], [ -71.827621459960824, -14.892721176147404 ], [ -71.826698303222656, -14.891299247741699 ], [ -71.82708740234375, -14.889707565307617 ], [ -71.828559875488224, -14.888039588928166 ], [ -71.829048156738224, -14.887803077697754 ], [ -71.830398559570312, -14.887731552124023 ], [ -71.837059020996037, -14.887914657592773 ], [ -71.839767456054688, -14.887383460998421 ], [ -71.841285705566406, -14.887312889099064 ], [ -71.843353271484318, -14.887503623962346 ], [ -71.847213745117188, -14.888578414916992 ], [ -71.849830627441349, -14.888568878173771 ], [ -71.852218627929631, -14.887914657592773 ], [ -71.854614257812386, -14.886321067810059 ], [ -71.858795166015568, -14.884230613708496 ], [ -71.859733581542912, -14.883440971374512 ], [ -71.861366271972599, -14.881269454955998 ], [ -71.862663269042969, -14.878452301025391 ], [ -71.863571166992131, -14.875204086303597 ], [ -71.863548278808537, -14.873182296752873 ], [ -71.862281799316406, -14.871060371398869 ], [ -71.859558105468693, -14.86805152893055 ], [ -71.856391906738224, -14.862057685852051 ], [ -71.855422973632812, -14.859814643859806 ], [ -71.854797363281193, -14.857485771179086 ], [ -71.8551025390625, -14.854401588439941 ], [ -71.857437133789006, -14.851239204406625 ], [ -71.864410400390568, -14.845337867736816 ], [ -71.86492919921875, -14.844071388244572 ], [ -71.864883422851506, -14.843402862548828 ], [ -71.865516662597656, -14.84134483337391 ], [ -71.868766784667969, -14.835562705993652 ], [ -71.868942260742188, -14.834909439086914 ], [ -71.868713378906193, -14.831020355224609 ], [ -71.868942260742188, -14.82983303070057 ], [ -71.870018005371094, -14.827645301818848 ], [ -71.871772766113224, -14.825933456420898 ], [ -71.872589111328125, -14.82425594329834 ], [ -71.8731689453125, -14.818910598754826 ], [ -71.873756408691349, -14.817248344421387 ], [ -71.873558044433537, -14.811068534851074 ], [ -71.873870849609318, -14.808103561401367 ], [ -71.874359130859375, -14.80604076385498 ], [ -71.877220153808594, -14.803487777709847 ], [ -71.878082275390625, -14.800801277160645 ], [ -71.878852844238281, -14.799492835998535 ], [ -71.879676818847599, -14.799097061157113 ], [ -71.882133483886719, -14.798542976379395 ], [ -71.883987426757699, -14.797631263732853 ], [ -71.886840820312443, -14.795084953308049 ], [ -71.889076232910156, -14.792705535888672 ], [ -71.890739440917912, -14.789604187011662 ], [ -71.891418457031193, -14.789179801940861 ], [ -71.893051147460938, -14.788822174072209 ], [ -71.893539428710938, -14.788359642028809 ], [ -71.894065856933537, -14.788871765136719 ], [ -71.895637512207031, -14.789046287536621 ], [ -71.8988037109375, -14.788104057312012 ], [ -71.900733947753849, -14.788284301757812 ], [ -71.901123046874943, -14.788669586181641 ], [ -71.902153015136719, -14.790722846984863 ], [ -71.903106689453125, -14.791611671447697 ], [ -71.903938293457031, -14.791939735412598 ], [ -71.905914306640568, -14.7912340164184 ], [ -71.907829284667855, -14.791069030761719 ], [ -71.908309936523438, -14.790581703185978 ], [ -71.908599853515625, -14.789538383483887 ], [ -71.909507751464787, -14.789143562316838 ], [ -71.910491943359318, -14.789046287536621 ], [ -71.911155700683537, -14.789625167846623 ], [ -71.911651611328125, -14.791229248046761 ], [ -71.915206909179688, -14.792280197143555 ], [ -71.916366577148438, -14.792169570922852 ], [ -71.918220520019418, -14.791264533996582 ], [ -71.920562744140625, -14.79149341583252 ], [ -71.921745300292912, -14.791183471679688 ], [ -71.923759460449219, -14.790238380432129 ], [ -71.925209045410156, -14.789189338684082 ], [ -71.925697326660156, -14.788728713989258 ], [ -71.925804138183594, -14.788059234619084 ], [ -71.926216125488224, -14.787525177001953 ], [ -71.928810119628793, -14.78571605682373 ], [ -71.929420471191406, -14.784550666809025 ], [ -71.929565429687443, -14.783450126647892 ], [ -71.929222106933594, -14.781739234924316 ], [ -71.930007934570312, -14.78046703338623 ], [ -71.930114746093693, -14.779414176940918 ], [ -71.929740905761662, -14.775913238525391 ], [ -71.928871154785099, -14.772794723510742 ], [ -71.928756713867188, -14.771177291870117 ], [ -71.930892944335881, -14.763811111450082 ], [ -71.930976867675724, -14.76206111907959 ], [ -71.930740356445312, -14.760739326476937 ], [ -71.931854248046818, -14.75936222076416 ], [ -71.932601928710881, -14.75732231140131 ], [ -71.93386077880848, -14.755913734436035 ], [ -71.934646606445312, -14.755365371704102 ], [ -71.935997009277344, -14.755057334899846 ], [ -71.936935424804688, -14.754247665405217 ], [ -71.937591552734375, -14.751782417297363 ], [ -71.938598632812443, -14.750494003295898 ], [ -71.939033508300781, -14.750184059143066 ], [ -71.940505981445256, -14.749814987182617 ], [ -71.9422607421875, -14.74851131439209 ], [ -71.942840576171875, -14.7471923828125 ], [ -71.942840576171875, -14.746115684509277 ], [ -71.943107604980412, -14.745813369750977 ], [ -71.947166442871094, -14.744080543518066 ], [ -71.949104309081974, -14.744303703308105 ], [ -71.949661254882756, -14.744049072265625 ], [ -71.950164794921818, -14.74318885803217 ], [ -71.950225830078125, -14.741853713989201 ], [ -71.950851440429688, -14.740644454956055 ], [ -71.952468872070312, -14.739390373229924 ], [ -71.952781677246094, -14.738121032714844 ], [ -71.954010009765625, -14.737983703613224 ], [ -71.954498291015625, -14.737521171569824 ], [ -71.954757690429688, -14.7364501953125 ], [ -71.953804016113281, -14.735705375671273 ], [ -71.953720092773438, -14.735297203063908 ], [ -71.954734802246037, -14.734416961669922 ], [ -71.957885742187443, -14.733456611633244 ], [ -71.958839416503849, -14.73248386383051 ], [ -71.958702087402344, -14.731978416442814 ], [ -71.957862854003849, -14.731088638305607 ], [ -71.957893371581918, -14.730666160583496 ], [ -71.95867919921875, -14.730125427246094 ], [ -71.958869934082031, -14.729487419128361 ], [ -71.958290100097656, -14.727121353149414 ], [ -71.957611083984261, -14.725507736206055 ], [ -71.956245422363224, -14.723978996276855 ], [ -71.955558776855469, -14.723880767822209 ], [ -71.955047607421875, -14.723431587219181 ], [ -71.954475402832031, -14.722357749938965 ], [ -71.953056335449219, -14.721083641052189 ], [ -71.9520263671875, -14.719338417053166 ], [ -71.949539184570312, -14.71789646148676 ], [ -71.948936462402344, -14.71568489074707 ], [ -71.947883605956918, -14.714433670043945 ], [ -71.947654724121037, -14.713129997253418 ], [ -71.946266174316406, -14.71158504486084 ], [ -71.946311950683594, -14.71086215972889 ], [ -71.946769714355469, -14.709814071655217 ], [ -71.948715209960881, -14.707357406616097 ], [ -71.949188232421818, -14.706323623657227 ], [ -71.949775695800724, -14.705752372741642 ], [ -71.951484680175724, -14.705324172973576 ], [ -71.952018737792969, -14.70469856262207 ], [ -71.9520263671875, -14.70428466796875 ], [ -71.951187133789006, -14.703804016113281 ], [ -71.950492858886719, -14.703822135925236 ], [ -71.947769165039006, -14.700598716735783 ], [ -71.943733215332031, -14.698269844055062 ], [ -71.941497802734375, -14.696244239807072 ], [ -71.939376831054631, -14.695700645446777 ], [ -71.935775756835938, -14.692564964294377 ], [ -71.931938171386662, -14.690716743469181 ], [ -71.931434631347656, -14.690067291259766 ], [ -71.931297302246094, -14.68928337097168 ], [ -71.931831359863224, -14.688855171203613 ], [ -71.934158325195312, -14.688499450683537 ], [ -71.936775207519531, -14.687648773193303 ], [ -71.941024780273438, -14.685401916503906 ], [ -71.943664550781193, -14.683686256408691 ], [ -71.947708129882812, -14.679656028747559 ], [ -71.95001220703125, -14.677727699279785 ], [ -71.950050354003849, -14.674918174743596 ], [ -71.95064544677723, -14.673411369323674 ], [ -71.951240539550781, -14.672677040100041 ], [ -71.952033996582031, -14.67239856719965 ], [ -71.95574951171875, -14.672394752502385 ], [ -71.958816528320256, -14.67117786407465 ], [ -71.959877014160099, -14.670108795165959 ], [ -71.960968017578125, -14.668163299560547 ], [ -71.962882995605469, -14.666047096252441 ], [ -71.964355468749943, -14.663782119750977 ], [ -71.965530395507812, -14.663057327270508 ], [ -71.969375610351562, -14.661591529846191 ], [ -71.973686218261719, -14.657819747924805 ], [ -71.974441528320312, -14.656978607177734 ], [ -71.974777221679574, -14.656235694885254 ], [ -71.975517272949162, -14.655630111694279 ], [ -71.976554870605412, -14.652970314025765 ], [ -71.976737976074219, -14.651373863220158 ], [ -71.97650146484375, -14.645601272583008 ], [ -71.977394104003906, -14.645133972167969 ], [ -71.978614807128906, -14.644863128662109 ], [ -71.979156494140568, -14.644450187683105 ], [ -71.984489440917912, -14.635924339294377 ], [ -71.987243652343693, -14.633277893066349 ], [ -71.988769531249943, -14.632631301879883 ], [ -71.990257263183594, -14.632938385009766 ], [ -71.993690490722656, -14.636790275573674 ], [ -71.99556732177723, -14.637631416320801 ], [ -71.998977661132756, -14.640147209167367 ], [ -72.000228881835881, -14.640732765197697 ], [ -72.001312255859375, -14.641713142394963 ], [ -72.002105712890625, -14.641488075256348 ], [ -72.002624511718636, -14.640970230102482 ], [ -72.003273010253849, -14.64077186584467 ], [ -72.006729125976562, -14.640753746032715 ], [ -72.007133483886719, -14.640406608581486 ], [ -72.007698059082031, -14.640396118164062 ], [ -72.008964538574219, -14.641982078552246 ], [ -72.009780883789062, -14.642111778259221 ], [ -72.010421752929631, -14.642624855041504 ], [ -72.011383056640568, -14.644697189330941 ], [ -72.013252258300781, -14.645840644836426 ], [ -72.013717651367188, -14.647109985351506 ], [ -72.014900207519474, -14.648246765136662 ], [ -72.015296936035099, -14.648956298828125 ], [ -72.015449523925781, -14.652037620544377 ], [ -72.016021728515625, -14.65494441986084 ], [ -72.015914916992188, -14.657614707946777 ], [ -72.016136169433537, -14.658693313598576 ], [ -72.018302917480469, -14.659649848937875 ], [ -72.018623352050724, -14.661478042602482 ], [ -72.020545959472599, -14.662795066833496 ], [ -72.021751403808594, -14.663911819458008 ], [ -72.024253845214787, -14.66676139831543 ], [ -72.024734497070256, -14.667868614196721 ], [ -72.024917602539006, -14.669226646423283 ], [ -72.024246215820256, -14.671540260314885 ], [ -72.024436950683537, -14.673255920410099 ], [ -72.025344848632812, -14.67390060424799 ], [ -72.028572082519531, -14.674790382385197 ], [ -72.029785156249943, -14.675593376159611 ], [ -72.032768249511719, -14.679006576538029 ], [ -72.03363037109375, -14.681023597717285 ], [ -72.034065246581974, -14.681174278259277 ], [ -72.035369873046875, -14.680974006652775 ], [ -72.036155700683537, -14.681543350219727 ], [ -72.036369323730412, -14.682991027831918 ], [ -72.038162231445256, -14.684775352477914 ], [ -72.038719177246094, -14.686579704284611 ], [ -72.040382385253849, -14.687874794006234 ], [ -72.040618896484375, -14.689222335815373 ], [ -72.040382385253849, -14.692253112792969 ], [ -72.042121887207031, -14.694488525390625 ], [ -72.043037414550724, -14.699935913085881 ], [ -72.044479370117131, -14.702700614929142 ], [ -72.044631958007812, -14.703804016113281 ], [ -72.044448852539062, -14.704993247985726 ], [ -72.042236328125, -14.707756042480412 ], [ -72.041900634765568, -14.709476470947209 ], [ -72.042587280273438, -14.711652755737305 ], [ -72.044670104980412, -14.714496612548828 ], [ -72.044898986816406, -14.715547561645451 ], [ -72.044845581054631, -14.716773986816406 ], [ -72.044059753417969, -14.718489646911621 ], [ -72.04205322265625, -14.719673156738224 ], [ -72.041633605957031, -14.720806121826172 ], [ -72.041511535644474, -14.722068786621037 ], [ -72.041732788085938, -14.723073959350529 ], [ -72.042991638183594, -14.72506141662592 ], [ -72.043647766113281, -14.727947235107422 ], [ -72.046806335449219, -14.734238624572754 ], [ -72.047676086425781, -14.736942291259709 ], [ -72.047744750976562, -14.738286972045898 ], [ -72.047126770019474, -14.742145538330078 ], [ -72.044029235839844, -14.752453804016113 ], [ -72.042808532714844, -14.754343032836857 ], [ -72.040298461914062, -14.756525039672852 ], [ -72.039443969726562, -14.757532119750977 ], [ -72.039199829101562, -14.759155273437443 ], [ -72.038177490234318, -14.761049270629769 ], [ -72.038246154785156, -14.761728286743164 ], [ -72.038703918457031, -14.762717247009277 ], [ -72.038589477539062, -14.764350891113281 ], [ -72.038223266601562, -14.765048980712891 ], [ -72.036888122558594, -14.76647758483881 ], [ -72.036613464355469, -14.7671861648559 ], [ -72.037025451660099, -14.769062042236328 ], [ -72.0391845703125, -14.77297306060791 ], [ -72.03973388671875, -14.775751113891602 ], [ -72.040855407714787, -14.777464866638127 ], [ -72.041053771972543, -14.779202461242619 ], [ -72.040161132812443, -14.781915664672795 ], [ -72.039093017578125, -14.783320426940918 ], [ -72.03914642333973, -14.787620544433594 ], [ -72.038505554199219, -14.788161277770996 ], [ -72.036254882812443, -14.788838386535588 ], [ -72.035614013671818, -14.789345741271859 ], [ -72.03497314453125, -14.790693283080998 ], [ -72.034591674804688, -14.793098449707031 ], [ -72.035049438476449, -14.79629993438715 ], [ -72.034355163574162, -14.802324295043888 ], [ -72.035079956054688, -14.803516387939396 ], [ -72.035552978515625, -14.803629875183105 ], [ -72.037635803222656, -14.803413391113224 ], [ -72.038887023925781, -14.804477691650334 ], [ -72.039421081542912, -14.805587768554688 ], [ -72.040084838867131, -14.808131217956543 ], [ -72.040267944335881, -14.81075382232666 ], [ -72.039566040039062, -14.811784744262582 ], [ -72.038406372070312, -14.812527656555176 ], [ -72.034942626953068, -14.81157016754139 ], [ -72.034126281738281, -14.811650276184025 ], [ -72.033866882324162, -14.811917304992619 ], [ -72.032844543456974, -14.812237739562875 ], [ -72.031486511230412, -14.817006111144906 ], [ -72.029777526855412, -14.817931175231934 ], [ -72.026229858398438, -14.821338653564396 ], [ -72.025390624999943, -14.822392463684082 ], [ -72.024932861328068, -14.823814392089787 ], [ -72.025520324707031, -14.825167655944824 ], [ -72.025238037109375, -14.827998161315861 ], [ -72.025321960449105, -14.829615592956486 ], [ -72.0257568359375, -14.830615043640137 ], [ -72.026336669921818, -14.831253051757756 ], [ -72.027030944824162, -14.831569671630746 ], [ -72.029968261718693, -14.831706047058049 ], [ -72.032859802246094, -14.83260440826416 ], [ -72.034858703613168, -14.83447074890131 ], [ -72.035263061523438, -14.83601188659668 ], [ -72.035537719726562, -14.836321830749512 ], [ -72.036445617675724, -14.83666801452631 ], [ -72.037933349609375, -14.836461067199593 ], [ -72.039245605468636, -14.837464332580566 ], [ -72.040084838867131, -14.838547706603947 ], [ -72.040634155273438, -14.839926719665471 ], [ -72.040695190429688, -14.840749740600529 ], [ -72.040473937988224, -14.841641426086426 ], [ -72.039390563964844, -14.844001770019531 ], [ -72.039291381835938, -14.844968795776254 ], [ -72.039657592773438, -14.845649719238224 ], [ -72.041191101074219, -14.846870422363281 ], [ -72.041542053222656, -14.847407341003418 ], [ -72.0413818359375, -14.847929000854379 ], [ -72.040626525878906, -14.848722457885742 ], [ -72.040382385253849, -14.849640846252441 ], [ -72.041313171386662, -14.850808143615723 ], [ -72.042915344238281, -14.851208686828556 ], [ -72.043556213378906, -14.852203369140625 ], [ -72.042839050292912, -14.854801177978516 ], [ -72.042839050292912, -14.858666419982853 ], [ -72.042465209960881, -14.860793113708439 ], [ -72.042533874511719, -14.862951278686523 ], [ -72.043098449707031, -14.864170074462834 ], [ -72.044807434082031, -14.864689826965218 ], [ -72.045448303222656, -14.865383148193359 ], [ -72.045509338378849, -14.865927696228027 ], [ -72.044822692871094, -14.867974281311035 ], [ -72.0447998046875, -14.868915557861328 ], [ -72.046463012695256, -14.872314453125 ], [ -72.04730224609375, -14.875575065612736 ], [ -72.046730041503906, -14.877229690551758 ], [ -72.042984008789062, -14.879277229308968 ], [ -72.042770385742074, -14.880330085754281 ], [ -72.044029235839844, -14.882542610168457 ], [ -72.046882629394531, -14.886553764343205 ], [ -72.047691345214844, -14.887050628662053 ], [ -72.049049377441349, -14.886399269103947 ], [ -72.049400329589844, -14.885519027709961 ], [ -72.050086975097599, -14.884858131408691 ], [ -72.051933288574219, -14.883943557739201 ], [ -72.054351806640625, -14.883360862731934 ], [ -72.055992126464787, -14.883444786071777 ], [ -72.059402465820312, -14.884610176086369 ], [ -72.062866210937443, -14.887716293334961 ], [ -72.065849304199105, -14.887175559997559 ], [ -72.073677062988281, -14.884566307067814 ], [ -72.076240539550724, -14.884111404418945 ], [ -72.077232360839844, -14.883139610290414 ], [ -72.078292846679688, -14.880949020385742 ], [ -72.078620910644474, -14.87580490112299 ], [ -72.078903198242131, -14.874256134033203 ], [ -72.079376220703068, -14.873720169067383 ], [ -72.080116271972656, -14.873323440551758 ], [ -72.082710266113224, -14.873039245605412 ], [ -72.084800720214787, -14.870862007141056 ], [ -72.086967468261719, -14.865760803222656 ], [ -72.087623596191406, -14.861931800842285 ], [ -72.088905334472599, -14.859065055847168 ], [ -72.090469360351562, -14.856557846069336 ], [ -72.092277526855469, -14.855523109435978 ], [ -72.095565795898438, -14.852451324462834 ], [ -72.096755981445312, -14.851760864257756 ], [ -72.098480224609375, -14.849667549133301 ], [ -72.101791381835881, -14.84954833984375 ], [ -72.102928161621037, -14.848868370056096 ], [ -72.104942321777287, -14.84716796875 ], [ -72.107185363769531, -14.847087860107365 ], [ -72.108146667480469, -14.846702575683537 ], [ -72.109634399414062, -14.844237327575684 ], [ -72.111106872558594, -14.843020439147949 ], [ -72.111473083496094, -14.841326713562012 ], [ -72.112358093261662, -14.840667724609375 ], [ -72.113449096679688, -14.840575218200627 ], [ -72.116844177246037, -14.84208774566639 ], [ -72.118103027343693, -14.841951370239258 ], [ -72.118797302246094, -14.841426849365234 ], [ -72.118598937988281, -14.84075736999506 ], [ -72.116737365722656, -14.839286804199162 ], [ -72.116386413574162, -14.838722229003793 ], [ -72.115982055664006, -14.836585998535156 ], [ -72.115890502929631, -14.834562301635685 ], [ -72.115936279296875, -14.832937240600529 ], [ -72.116363525390568, -14.831100463867188 ], [ -72.117599487304631, -14.828696250915527 ], [ -72.119606018066349, -14.827247619628849 ], [ -72.123313903808594, -14.823437690734863 ], [ -72.124801635742188, -14.822455406188908 ], [ -72.124801635742188, -14.82164192199707 ], [ -72.12646484375, -14.820028305053711 ], [ -72.126808166503906, -14.817901611328068 ], [ -72.128074645996094, -14.81600284576416 ], [ -72.127899169921818, -14.814779281616211 ], [ -72.127433776855412, -14.814106941223088 ], [ -72.127349853515568, -14.812344551086426 ], [ -72.127571105957031, -14.810479164123535 ], [ -72.129219055175781, -14.807518005371037 ], [ -72.129486083984375, -14.806319236755371 ], [ -72.128395080566349, -14.80313777923584 ], [ -72.128524780273438, -14.801793098449707 ], [ -72.127220153808594, -14.800475120544434 ], [ -72.126045227050781, -14.796614646911564 ], [ -72.125, -14.795906066894418 ], [ -72.123146057128849, -14.79535007476801 ], [ -72.122375488281193, -14.79476165771473 ], [ -72.12188720703125, -14.791432380676213 ], [ -72.12078857421875, -14.789902687072697 ], [ -72.120567321777287, -14.788976669311467 ], [ -72.120681762695256, -14.78790378570551 ], [ -72.121139526367131, -14.786782264709473 ], [ -72.129821777343693, -14.781523704528809 ], [ -72.130798339843636, -14.781455993652344 ], [ -72.133583068847656, -14.782943725585938 ], [ -72.135238647460938, -14.783144950866699 ], [ -72.138442993164062, -14.781285285949707 ], [ -72.141441345214787, -14.780929565429574 ], [ -72.144813537597543, -14.777538299560547 ], [ -72.145866394042855, -14.777243614196777 ], [ -72.149398803710938, -14.777910232543888 ], [ -72.154121398925781, -14.776956558227482 ], [ -72.156204223632812, -14.777994155883732 ], [ -72.156791687011719, -14.778579711914062 ], [ -72.157325744628906, -14.779678344726506 ], [ -72.157211303710824, -14.782098770141545 ], [ -72.157798767089844, -14.784029006957894 ], [ -72.157691955566293, -14.785770416259709 ], [ -72.158142089843693, -14.786064147949162 ], [ -72.159790039062386, -14.786167144775334 ], [ -72.162139892578068, -14.783891677856445 ], [ -72.162681579589844, -14.782356262206974 ], [ -72.163825988769531, -14.781142234802246 ], [ -72.165367126464844, -14.780364036560059 ], [ -72.168159484863224, -14.780473709106388 ], [ -72.169769287109318, -14.779001235961914 ], [ -72.170753479003793, -14.778470039367619 ], [ -72.175437927246094, -14.778763771057015 ], [ -72.176383972167855, -14.778314590454102 ], [ -72.178398132324219, -14.776613235473633 ], [ -72.180038452148438, -14.776318550109863 ], [ -72.180984497070312, -14.776798248290959 ], [ -72.183952331542969, -14.779445648193359 ], [ -72.186172485351506, -14.780193328857422 ], [ -72.186592102050781, -14.780101776123047 ], [ -72.188499450683594, -14.778164863586369 ], [ -72.189437866210881, -14.778058052062931 ], [ -72.190689086913949, -14.778661727905217 ], [ -72.192184448242131, -14.780050277709961 ], [ -72.194244384765625, -14.782997131347599 ], [ -72.195075988769418, -14.783844947814941 ], [ -72.195770263671875, -14.7841796875 ], [ -72.197891235351562, -14.784494400024357 ], [ -72.198776245117131, -14.784856796264592 ], [ -72.203216552734375, -14.788523674011174 ], [ -72.203094482421875, -14.791575431823674 ], [ -72.204582214355412, -14.793831825256234 ], [ -72.203170776367131, -14.796298027038574 ], [ -72.203094482421875, -14.797373771667424 ], [ -72.203323364257812, -14.797800064086914 ], [ -72.207122802734375, -14.800012588500977 ], [ -72.210205078124943, -14.801350593566838 ], [ -72.212692260742131, -14.803270339965763 ], [ -72.213539123535099, -14.803387641906738 ], [ -72.214279174804688, -14.803062438964844 ], [ -72.219215393066406, -14.800332069396973 ], [ -72.221267700195256, -14.800048828125 ], [ -72.221824645996094, -14.80066013336176 ], [ -72.22292327880848, -14.803707122802678 ], [ -72.223869323730412, -14.804885864257812 ], [ -72.22503662109375, -14.805841445922795 ], [ -72.227157592773438, -14.806469917297363 ], [ -72.231834411621094, -14.809062957763558 ], [ -72.235725402832031, -14.810446739196721 ], [ -72.237907409667969, -14.811648368835449 ], [ -72.239219665527287, -14.81206035614008 ], [ -72.241691589355412, -14.812315940856934 ], [ -72.244026184082031, -14.811983108520508 ], [ -72.244781494140625, -14.811630249023381 ], [ -72.246589660644531, -14.809799194335881 ], [ -72.250274658203068, -14.804912567138672 ], [ -72.252510070800781, -14.803315162658691 ], [ -72.252998352050781, -14.803092002868596 ], [ -72.253723144531136, -14.803139686584416 ], [ -72.256011962890511, -14.805459976196232 ], [ -72.264053344726562, -14.809935569763184 ], [ -72.265769958496094, -14.811301231384221 ], [ -72.269767761230469, -14.812352180480957 ], [ -72.27301025390625, -14.813872337341252 ], [ -72.276306152343693, -14.81403636932373 ], [ -72.277801513671875, -14.815023422241097 ], [ -72.279739379882756, -14.815740585327148 ], [ -72.280982971191349, -14.815746307373047 ], [ -72.283828735351506, -14.815120697021484 ], [ -72.285087585449162, -14.815208435058594 ], [ -72.288619995117131, -14.818600654601994 ], [ -72.289756774902287, -14.819172859191838 ], [ -72.290679931640625, -14.819111824035645 ], [ -72.292251586913949, -14.818208694458008 ], [ -72.292976379394531, -14.818219184875431 ], [ -72.295097351074162, -14.819497108459473 ], [ -72.300170898437386, -14.823488235473576 ], [ -72.304901123046818, -14.82591724395752 ], [ -72.307907104492188, -14.828291893005314 ], [ -72.310020446777344, -14.830610275268555 ], [ -72.313270568847656, -14.832394599914551 ], [ -72.315483093261719, -14.834216117858773 ], [ -72.316825866699162, -14.83455753326416 ], [ -72.318344116210938, -14.834585189819336 ], [ -72.320823669433594, -14.833762168884277 ], [ -72.328872680663949, -14.832484245300236 ], [ -72.337287902832031, -14.829429626464844 ], [ -72.341430664062443, -14.829234123229924 ], [ -72.350250244140625, -14.827610969543457 ], [ -72.352882385253849, -14.827542304992676 ], [ -72.359848022460881, -14.828595161437988 ], [ -72.362609863281193, -14.828611373901367 ], [ -72.366722106933537, -14.827376365661621 ], [ -72.371421813964844, -14.827247619628849 ], [ -72.375411987304574, -14.827456474304199 ], [ -72.378730773925724, -14.826131820678711 ], [ -72.383956909179688, -14.826822280883732 ], [ -72.385589599609318, -14.826804161071777 ], [ -72.391151428222543, -14.825060844421273 ], [ -72.393295288085938, -14.824734687805176 ], [ -72.395782470703125, -14.824834823608342 ], [ -72.399497985839844, -14.825400352478027 ], [ -72.402069091796875, -14.826412200927678 ], [ -72.4049072265625, -14.826997756958008 ], [ -72.406585693359318, -14.826904296875 ], [ -72.410469055175781, -14.825495719909668 ], [ -72.414558410644531, -14.823239326477051 ], [ -72.416824340820312, -14.822661399841252 ], [ -72.417861938476562, -14.821758270263672 ], [ -72.418739318847656, -14.820069313049316 ], [ -72.419029235839844, -14.818077087402344 ], [ -72.418952941894531, -14.815502166748047 ], [ -72.418716430664062, -14.815200805664062 ], [ -72.418304443359318, -14.812775611877385 ], [ -72.418220520019474, -14.810487747192383 ], [ -72.418731689453125, -14.808406829833984 ], [ -72.419708251953125, -14.806143760681096 ], [ -72.420967102050724, -14.804230690002441 ], [ -72.423179626464787, -14.802568435668945 ], [ -72.426948547363281, -14.800876617431641 ], [ -72.430519104003849, -14.799812316894418 ], [ -72.432449340820312, -14.798515319824219 ], [ -72.43304443359375, -14.797619819641056 ], [ -72.43353271484375, -14.796070098876896 ], [ -72.434036254882756, -14.790973663330078 ], [ -72.434677124023438, -14.789959907531738 ], [ -72.435485839843693, -14.78973388671875 ], [ -72.438346862792912, -14.790739059448242 ], [ -72.439712524414062, -14.790872573852482 ], [ -72.444816589355412, -14.790604591369629 ], [ -72.446327209472656, -14.7898912429809 ], [ -72.448204040527344, -14.788077354431152 ], [ -72.449691772460881, -14.786306381225529 ], [ -72.450439453124943, -14.784414291381722 ], [ -72.451499938964787, -14.783559799194336 ], [ -72.453819274902344, -14.783559799194336 ], [ -72.456771850585938, -14.78282356262207 ], [ -72.459663391113281, -14.782574653625375 ], [ -72.461997985839787, -14.782764434814453 ], [ -72.464118957519531, -14.783402442932072 ], [ -72.465087890625, -14.784540176391602 ], [ -72.465194702148438, -14.786539077758789 ], [ -72.465492248535156, -14.787300109863224 ], [ -72.465911865234318, -14.787641525268498 ], [ -72.467292785644531, -14.787772178649789 ], [ -72.468528747558594, -14.78714466094965 ], [ -72.468742370605412, -14.786245346069336 ], [ -72.468124389648438, -14.784312248229924 ], [ -72.468132019042969, -14.782416343688908 ], [ -72.470222473144531, -14.776972770690861 ], [ -72.470611572265625, -14.774619102478027 ], [ -72.470176696777287, -14.770432472228947 ], [ -72.468742370605412, -14.763840675354004 ], [ -72.46875, -14.762350082397404 ], [ -72.469017028808594, -14.761033058166504 ], [ -72.469940185546875, -14.75969028472889 ], [ -72.470672607421818, -14.759352684020882 ], [ -72.472061157226562, -14.757850646972543 ], [ -72.473136901855412, -14.757033348083439 ], [ -72.474174499511719, -14.75663852691639 ], [ -72.477973937988281, -14.756171226501408 ], [ -72.479866027832031, -14.755026817321721 ], [ -72.480056762695312, -14.75427055358881 ], [ -72.479598999023438, -14.751187324523869 ], [ -72.479812622070256, -14.750410079956055 ], [ -72.481628417968693, -14.7480211257934 ], [ -72.484619140625, -14.745431900024414 ], [ -72.485603332519531, -14.742914199829045 ], [ -72.486946105957031, -14.741192817687988 ], [ -72.487236022949219, -14.740274429321289 ], [ -72.486961364746037, -14.73940372467041 ], [ -72.485252380371037, -14.737090110778809 ], [ -72.484817504882812, -14.735668182373047 ], [ -72.482032775878793, -14.730540275573674 ], [ -72.484939575195312, -14.727873802185002 ], [ -72.485214233398438, -14.727298736572209 ], [ -72.48541259765625, -14.725519180297852 ], [ -72.4869384765625, -14.724156379699707 ], [ -72.487358093261662, -14.72344779968256 ], [ -72.487434387206974, -14.722109794616699 ], [ -72.486831665039062, -14.719620704650822 ], [ -72.4873046875, -14.715991973876953 ], [ -72.487014770507812, -14.714030265808049 ], [ -72.486160278320312, -14.71246433258051 ], [ -72.483734130859318, -14.710460662841797 ], [ -72.478141784667969, -14.707825660705566 ], [ -72.474182128906193, -14.706862449645996 ], [ -72.4708251953125, -14.705155372619629 ], [ -72.470764160156193, -14.704575538635254 ], [ -72.4713134765625, -14.703136444091797 ], [ -72.471397399902344, -14.701764106750431 ], [ -72.469055175781193, -14.698142051696777 ], [ -72.468566894531193, -14.692925453185978 ], [ -72.466239929199219, -14.689403533935547 ], [ -72.464836120605412, -14.684761047363281 ], [ -72.462463378906193, -14.682135581970215 ], [ -72.461624145507699, -14.680429458618107 ], [ -72.461135864257756, -14.678749084472656 ], [ -72.460739135742131, -14.676071166992188 ], [ -72.460929870605412, -14.67283916473383 ], [ -72.461311340331974, -14.671271324157715 ], [ -72.462692260742188, -14.668477058410645 ], [ -72.463920593261719, -14.666533470153752 ], [ -72.465293884277344, -14.665010452270394 ], [ -72.467750549316406, -14.663519859313965 ], [ -72.470603942871094, -14.662549018859863 ], [ -72.471038818359318, -14.661840438842717 ], [ -72.471153259277287, -14.661182403564453 ], [ -72.470817565917969, -14.660185813903809 ], [ -72.468788146972656, -14.656901359558049 ], [ -72.467964172363281, -14.654335021972656 ], [ -72.466720581054688, -14.652071952819824 ], [ -72.465797424316349, -14.645269393920785 ], [ -72.463417053222599, -14.64097881317133 ], [ -72.465431213378849, -14.63189506530756 ], [ -72.465202331542969, -14.626093864440861 ], [ -72.465461730957031, -14.623937606811523 ], [ -72.464149475097656, -14.621583938598576 ], [ -72.464515686035156, -14.619158744811955 ], [ -72.464370727539006, -14.618407249450684 ], [ -72.46356201171875, -14.617430686950627 ], [ -72.462013244628906, -14.61656475067133 ], [ -72.461257934570312, -14.615419387817269 ], [ -72.461807250976506, -14.60870361328125 ], [ -72.461242675781136, -14.606015205383244 ], [ -72.461288452148438, -14.605282783508244 ], [ -72.462234497070312, -14.60462474822998 ], [ -72.463661193847656, -14.604098320007211 ], [ -72.466064453125, -14.602750778198242 ], [ -72.467033386230412, -14.601820945739746 ], [ -72.468414306640625, -14.599941253662109 ], [ -72.468887329101562, -14.598244667053223 ], [ -72.468879699707031, -14.595679283142033 ], [ -72.469535827636662, -14.590999603271484 ], [ -72.4703369140625, -14.589735031127873 ], [ -72.471588134765625, -14.588962554931641 ], [ -72.473960876464844, -14.589105606079102 ], [ -72.475013732910156, -14.588828086852971 ], [ -72.47589111328125, -14.58777999877924 ], [ -72.476676940917912, -14.585899353027287 ], [ -72.477615356445256, -14.584907531738281 ], [ -72.479843139648324, -14.583550453186035 ], [ -72.483741760253849, -14.581847190856877 ], [ -72.484222412109318, -14.58103084564209 ], [ -72.484382629394474, -14.580101013183594 ], [ -72.484313964843693, -14.579153060913029 ], [ -72.483825683593693, -14.577611923217773 ], [ -72.483932495117131, -14.5762681961059 ], [ -72.485008239746094, -14.573487281799316 ], [ -72.486373901367188, -14.570837020874023 ], [ -72.488243103027344, -14.568869590759221 ], [ -72.492057800292969, -14.566987037658691 ], [ -72.494041442871037, -14.565120697021484 ], [ -72.494796752929631, -14.563666343688965 ], [ -72.495994567871094, -14.562367439269963 ], [ -72.498634338378906, -14.558586120605469 ], [ -72.500907897949162, -14.556232452392521 ], [ -72.502372741699219, -14.553177833557129 ], [ -72.503768920898381, -14.55084228515625 ], [ -72.504020690917969, -14.549065589904785 ], [ -72.503486633300724, -14.548932075500488 ], [ -72.501281738281193, -14.549650192260742 ], [ -72.499610900878906, -14.549722671508789 ], [ -72.498626708984261, -14.549079895019474 ], [ -72.496856689453125, -14.547318458557129 ], [ -72.495025634765625, -14.546106338500977 ], [ -72.494552612304688, -14.544854164123535 ], [ -72.493545532226506, -14.537094116210938 ], [ -72.491897583007812, -14.53353214263916 ], [ -72.488945007324219, -14.530474662780648 ], [ -72.487251281738224, -14.529109954833984 ], [ -72.482437133789062, -14.526774406433105 ], [ -72.481758117675781, -14.525917053222543 ], [ -72.481376647949219, -14.524477005004883 ], [ -72.480751037597656, -14.523575782775879 ], [ -72.473480224609375, -14.519170761108342 ], [ -72.470909118652344, -14.517363548278809 ], [ -72.468513488769531, -14.514933586120605 ], [ -72.467155456542855, -14.512688636779671 ], [ -72.466461181640568, -14.511914253234806 ], [ -72.4638671875, -14.510917663574162 ], [ -72.462974548339844, -14.510302543640137 ], [ -72.462074279785099, -14.509093284606877 ], [ -72.46148681640625, -14.506320953369141 ], [ -72.459602355956974, -14.503011703491211 ], [ -72.459342956542969, -14.502198219299203 ], [ -72.458732604980412, -14.501765251159554 ], [ -72.458106994628906, -14.501650810241642 ], [ -72.456176757812443, -14.502252578735352 ], [ -72.453697204589787, -14.502188682556152 ], [ -72.450332641601562, -14.501258850097656 ], [ -72.448745727539006, -14.500192642211857 ], [ -72.444389343261719, -14.49632453918457 ], [ -72.44268798828125, -14.492936134338322 ], [ -72.440750122070312, -14.489790916442871 ], [ -72.440711975097599, -14.488977432250977 ], [ -72.441390991210881, -14.486465454101562 ], [ -72.441406249999886, -14.484758377075138 ], [ -72.441184997558537, -14.482604026794434 ], [ -72.440605163574219, -14.481578826904297 ], [ -72.436439514160099, -14.48094463348383 ], [ -72.430320739746037, -14.482108116149846 ], [ -72.425018310546875, -14.481613159179688 ], [ -72.421707153320312, -14.48168754577631 ], [ -72.418075561523438, -14.482233047485352 ], [ -72.413093566894531, -14.483445167541504 ], [ -72.406494140624943, -14.483966827392578 ], [ -72.404533386230469, -14.484424591064396 ], [ -72.402046203613281, -14.484443664550781 ], [ -72.401245117187443, -14.483846664428711 ], [ -72.396034240722656, -14.483357429504395 ], [ -72.3931884765625, -14.481678962707463 ], [ -72.392082214355412, -14.48035717010498 ], [ -72.38897705078125, -14.477405548095703 ], [ -72.386093139648324, -14.473217010498047 ], [ -72.383697509765568, -14.468620300292969 ], [ -72.382331848144531, -14.466744422912598 ], [ -72.380218505859375, -14.467044830322209 ], [ -72.377372741699219, -14.46686935424799 ], [ -72.374641418456974, -14.467694282531738 ], [ -72.370780944824219, -14.466905593872013 ], [ -72.366470336914062, -14.467253684997559 ], [ -72.364852905273438, -14.466656684875488 ], [ -72.363410949707031, -14.465386390685921 ], [ -72.362472534179688, -14.463758468627873 ], [ -72.36177825927723, -14.461167335510197 ], [ -72.3616943359375, -14.45820426940918 ], [ -72.36236572265625, -14.455393791198674 ], [ -72.363769531249943, -14.452084541320801 ], [ -72.363990783691406, -14.44930362701416 ], [ -72.362609863281193, -14.446182250976506 ], [ -72.357170104980412, -14.438606262207031 ], [ -72.355987548828125, -14.436279296875 ], [ -72.354904174804631, -14.435066223144531 ], [ -72.353256225585881, -14.433782577514648 ], [ -72.347183227538949, -14.43040752410883 ], [ -72.341629028320256, -14.426261901855355 ], [ -72.3408203125, -14.42613410949707 ], [ -72.339035034179688, -14.427316665649414 ], [ -72.335678100585938, -14.43064022064209 ], [ -72.333625793456974, -14.432099342346078 ], [ -72.330291748046818, -14.435320854187012 ], [ -72.325096130371094, -14.43914604187006 ], [ -72.323333740234318, -14.440118789672795 ], [ -72.320953369140568, -14.440779685974121 ], [ -72.317306518554631, -14.440520286560002 ], [ -72.314201354980469, -14.438995361328125 ], [ -72.312438964843693, -14.437565803527832 ], [ -72.310943603515511, -14.436691284179688 ], [ -72.309127807617131, -14.434311866760254 ], [ -72.306861877441406, -14.430720329284554 ], [ -72.305427551269531, -14.429220199584961 ], [ -72.303199768066349, -14.428606986999455 ], [ -72.300346374511662, -14.429298400878849 ], [ -72.298789978027344, -14.429099082946664 ], [ -72.295700073242188, -14.427339553832951 ], [ -72.291969299316293, -14.425578117370605 ], [ -72.289512634277344, -14.423844337463379 ], [ -72.289367675781193, -14.42264270782465 ], [ -72.289955139160099, -14.420942306518498 ], [ -72.290718078613224, -14.420163154601994 ], [ -72.292541503906136, -14.418956756591797 ], [ -72.293632507324219, -14.416683197021484 ], [ -72.294479370117188, -14.415745735168457 ], [ -72.295288085937443, -14.414028167724553 ], [ -72.295219421386719, -14.412341117858887 ], [ -72.294631958007756, -14.411311149597168 ], [ -72.294036865234318, -14.410898208618164 ], [ -72.292221069335881, -14.410689353942757 ], [ -72.288619995117131, -14.410845756530705 ], [ -72.285163879394474, -14.410371780395451 ], [ -72.281684875488281, -14.410199165344238 ], [ -72.275680541992188, -14.408871650695801 ], [ -72.272689819335881, -14.406652450561467 ], [ -72.271057128906193, -14.405817985534611 ], [ -72.269668579101562, -14.405750274658146 ], [ -72.267036437988281, -14.406567573547363 ], [ -72.263473510742188, -14.40630054473877 ], [ -72.260032653808594, -14.40562725067133 ], [ -72.257331848144474, -14.404520988464355 ], [ -72.252380371093693, -14.404176712036076 ], [ -72.250030517578125, -14.403400421142578 ], [ -72.248802185058594, -14.402454376220703 ], [ -72.247879028320256, -14.400909423828125 ], [ -72.247329711914006, -14.398915290832406 ], [ -72.247550964355469, -14.393271446228027 ], [ -72.248527526855469, -14.388433456420842 ], [ -72.248649597167912, -14.385651588439885 ], [ -72.247367858886719, -14.381725311279183 ], [ -72.246299743652344, -14.379924774169922 ], [ -72.244300842285156, -14.375095367431641 ], [ -72.242706298828125, -14.37050724029541 ], [ -72.242065429687443, -14.367988586425668 ], [ -72.241523742675781, -14.366845130920353 ], [ -72.240837097167912, -14.36396408081049 ], [ -72.239501953124943, -14.361084938049316 ], [ -72.239364624023438, -14.359331130981388 ], [ -72.239593505859318, -14.354205131530705 ], [ -72.239288330078068, -14.349810600280705 ], [ -72.239059448242188, -14.349120140075684 ], [ -72.238372802734261, -14.348951339721623 ], [ -72.234954833984375, -14.349118232726994 ], [ -72.233474731445256, -14.349805831909123 ], [ -72.231941223144531, -14.350094795227051 ], [ -72.229194641113224, -14.349015235900822 ], [ -72.227081298828068, -14.349081039428711 ], [ -72.225006103515568, -14.349789619445744 ], [ -72.224403381347656, -14.349574089050293 ], [ -72.223831176757812, -14.348465919494515 ], [ -72.223709106445312, -14.345970153808594 ], [ -72.221870422363168, -14.34276103973383 ], [ -72.221084594726506, -14.340368270873967 ], [ -72.220321655273381, -14.339718818664551 ], [ -72.217597961425781, -14.338638305664062 ], [ -72.216293334960938, -14.337800025939941 ], [ -72.215827941894474, -14.336819648742619 ], [ -72.215980529785156, -14.335132598876953 ], [ -72.21551513671875, -14.3343505859375 ], [ -72.214859008789062, -14.333853721618652 ], [ -72.21246337890625, -14.332977294921818 ], [ -72.211631774902287, -14.333059310913086 ], [ -72.208297729492131, -14.332548141479435 ], [ -72.207801818847656, -14.332298278808537 ], [ -72.207008361816406, -14.331422805786133 ], [ -72.206558227539062, -14.330634117126465 ], [ -72.206443786621094, -14.329663276672306 ], [ -72.206924438476562, -14.328042984008732 ], [ -72.2069091796875, -14.326877593994084 ], [ -72.206314086914006, -14.32288932800293 ], [ -72.2056884765625, -14.321490287780705 ], [ -72.204109191894474, -14.320694923400822 ], [ -72.200363159179688, -14.31738090515131 ], [ -72.197998046874943, -14.315835952758732 ], [ -72.193016052246094, -14.314937591552678 ], [ -72.188804626464844, -14.314696311950684 ], [ -72.187080383300781, -14.313701629638615 ], [ -72.186294555664006, -14.312373161315918 ], [ -72.186721801757812, -14.306733131408691 ], [ -72.186607360839844, -14.3058567047118 ], [ -72.186103820800724, -14.304993629455566 ], [ -72.18548583984375, -14.304594993591309 ], [ -72.181007385253906, -14.304036140441895 ], [ -72.178909301757812, -14.303414344787541 ], [ -72.17800140380848, -14.302276611328068 ], [ -72.175865173339844, -14.300877571105843 ], [ -72.173439025878906, -14.298545837402287 ], [ -72.171913146972656, -14.295918464660531 ], [ -72.170982360839844, -14.293007850646973 ], [ -72.170219421386719, -14.291535377502441 ], [ -72.169662475585938, -14.28917217254633 ], [ -72.170089721679574, -14.280397415161019 ], [ -72.170944213867074, -14.277381896972599 ], [ -72.171020507812443, -14.275711059570312 ], [ -72.170509338378906, -14.274984359741211 ], [ -72.168930053710881, -14.274106979370117 ], [ -72.168251037597599, -14.273503303527718 ], [ -72.165939331054688, -14.270269393920842 ], [ -72.164566040039062, -14.267938613891602 ], [ -72.162002563476562, -14.264883041381836 ], [ -72.156707763671818, -14.262626647949219 ], [ -72.152206420898438, -14.259086608886719 ], [ -72.150993347167912, -14.258710861205998 ], [ -72.148239135742131, -14.258515357971135 ], [ -72.142936706542969, -14.256519317626953 ], [ -72.141677856445312, -14.25709056854248 ], [ -72.138809204101449, -14.260471343994141 ], [ -72.137435913085881, -14.26067066192627 ], [ -72.136161804199219, -14.26050853729248 ], [ -72.134857177734375, -14.259673118591309 ], [ -72.133201599121094, -14.257872581481934 ], [ -72.131668090820312, -14.256890296935978 ], [ -72.129081726074105, -14.255511283874455 ], [ -72.126457214355469, -14.254711151123047 ], [ -72.12493896484375, -14.253872871398926 ], [ -72.118988037109375, -14.24839973449707 ], [ -72.116798400878906, -14.246620178222656 ], [ -72.115653991699219, -14.246039390563965 ], [ -72.110153198242188, -14.239849090576172 ], [ -72.10833740234375, -14.237028121948242 ], [ -72.107307434081974, -14.235903739929199 ], [ -72.104225158691406, -14.233617782592773 ], [ -72.100845336914006, -14.23220252990717 ], [ -72.099136352538949, -14.230574607849121 ], [ -72.098167419433537, -14.228658676147461 ], [ -72.097633361816406, -14.224929809570256 ], [ -72.095916748046875, -14.220682144164982 ], [ -72.094673156738281, -14.219393730163574 ], [ -72.090187072753906, -14.216241836547852 ], [ -72.087173461914062, -14.21112060546875 ], [ -72.086471557617188, -14.210280418395996 ], [ -72.084983825683537, -14.209088325500488 ], [ -72.082794189453068, -14.20814037322998 ], [ -72.079750061035099, -14.207481384277287 ], [ -72.077377319335881, -14.207668304443303 ], [ -72.076690673828068, -14.207098007202148 ], [ -72.077011108398324, -14.206084251403809 ], [ -72.078109741210938, -14.204877853393555 ], [ -72.079734802246094, -14.203866004943791 ], [ -72.0810546875, -14.2035036087035 ], [ -72.081756591796818, -14.202809333801213 ], [ -72.082122802734318, -14.201801300048828 ], [ -72.082168579101562, -14.197765350341797 ], [ -72.082931518554688, -14.196148872375431 ], [ -72.084877014160156, -14.194927215576172 ], [ -72.086219787597656, -14.193008422851562 ], [ -72.088302612304688, -14.192096710205021 ], [ -72.089286804199162, -14.190932273864689 ], [ -72.089836120605469, -14.189494132995605 ], [ -72.090179443359375, -14.186644554138127 ], [ -72.0914306640625, -14.184158325195312 ], [ -72.092086791992188, -14.181267738342228 ], [ -72.094017028808594, -14.178112030029183 ], [ -72.094238281249943, -14.175973892211914 ], [ -72.094154357910099, -14.174014091491699 ], [ -72.093276977539062, -14.172044754028263 ], [ -72.090820312499943, -14.172031402587891 ], [ -72.089439392089844, -14.170577049255371 ], [ -72.088485717773438, -14.168354988098145 ], [ -72.088104248046875, -14.165424346923771 ], [ -72.086959838867188, -14.162681579589844 ], [ -72.085350036621094, -14.161398887634164 ], [ -72.082977294921875, -14.16120529174799 ], [ -72.082298278808594, -14.160926818847599 ], [ -72.079551696777287, -14.15792274475092 ], [ -72.0765380859375, -14.156036376953125 ], [ -72.073272705078068, -14.151596069335881 ], [ -72.071846008300724, -14.15075778961176 ], [ -72.070388793945312, -14.15058422088623 ], [ -72.069488525390625, -14.149969100952148 ], [ -72.068206787109318, -14.148221015930176 ], [ -72.067588806152344, -14.146072387695199 ], [ -72.066406249999943, -14.14470386505127 ], [ -72.065719604492131, -14.144252777099553 ], [ -72.063446044921818, -14.143547058105469 ], [ -72.061073303222599, -14.141720771789551 ], [ -72.061164855956974, -14.140095710754395 ], [ -72.062248229980469, -14.138457298278809 ], [ -72.062141418457031, -14.13728141784668 ], [ -72.06158447265625, -14.136354446411076 ], [ -72.059974670410156, -14.135674476623478 ], [ -72.059432983398381, -14.135180473327637 ], [ -72.059082031249886, -14.133678436279297 ], [ -72.059181213378906, -14.133280754089355 ], [ -72.059928894042912, -14.132476806640625 ], [ -72.059593200683594, -14.131307601928654 ], [ -72.057243347167912, -14.130773544311523 ], [ -72.056488037109318, -14.129753112792912 ], [ -72.056755065917912, -14.125484466552734 ], [ -72.056892395019531, -14.12505054473877 ], [ -72.057525634765568, -14.124543190002328 ], [ -72.059143066406193, -14.124167442321777 ], [ -72.059837341308537, -14.123798370361328 ], [ -72.061546325683537, -14.12201976776123 ], [ -72.062194824218693, -14.119526863098145 ], [ -72.062660217285156, -14.118646621704045 ], [ -72.064102172851506, -14.117165565490666 ], [ -72.064193725585881, -14.116001129150334 ], [ -72.063873291015625, -14.11441707611084 ], [ -72.062995910644531, -14.112826347351017 ], [ -72.062232971191406, -14.112229347228947 ], [ -72.060310363769474, -14.1120347976684 ], [ -72.059547424316349, -14.110535621643066 ], [ -72.059074401855412, -14.110007286071777 ], [ -72.058601379394418, -14.108933448791504 ], [ -72.057640075683537, -14.107641220092773 ], [ -72.057716369628849, -14.106034278869572 ], [ -72.058174133300781, -14.10516357421875 ], [ -72.060066223144531, -14.103336334228459 ], [ -72.060195922851506, -14.10171985626215 ], [ -72.06085205078125, -14.098855018615666 ], [ -72.061851501464844, -14.096456527709961 ], [ -72.062576293945256, -14.093494415283146 ], [ -72.063041687011719, -14.092533111572209 ], [ -72.064491271972599, -14.090969085693359 ], [ -72.064224243164006, -14.090072631835881 ], [ -72.062759399414062, -14.088104248046875 ], [ -72.062210083007756, -14.087005615234318 ], [ -72.061622619628849, -14.084017753601074 ], [ -72.061645507812443, -14.082853317260685 ], [ -72.062522888183594, -14.081192016601506 ], [ -72.063957214355469, -14.080398559570312 ], [ -72.067222595214844, -14.077376365661564 ], [ -72.067657470703068, -14.075926780700627 ], [ -72.066757202148438, -14.073406219482422 ], [ -72.066574096679688, -14.071010589599553 ], [ -72.066078186035156, -14.069946289062443 ], [ -72.065826416015568, -14.068545341491699 ], [ -72.064018249511662, -14.066082954406625 ], [ -72.063041687011719, -14.063029289245605 ], [ -72.062950134277344, -14.061238288879395 ], [ -72.063369750976449, -14.059882164001465 ], [ -72.063285827636719, -14.058806419372559 ], [ -72.062881469726506, -14.057914733886662 ], [ -72.063117980957031, -14.055956840515137 ], [ -72.062774658203068, -14.054302215576115 ], [ -72.063819885253849, -14.051460266113224 ], [ -72.062988281249886, -14.049092292785588 ], [ -72.062866210937443, -14.046148300170842 ], [ -72.06203460693348, -14.04487133026123 ], [ -72.060310363769474, -14.043261528015137 ], [ -72.059783935546875, -14.042126655578556 ], [ -72.057998657226506, -14.040081024169865 ], [ -72.057289123535156, -14.038925170898438 ], [ -72.056976318359318, -14.037444114685059 ], [ -72.057350158691349, -14.035350799560433 ], [ -72.057113647460938, -14.034310340881291 ], [ -72.056533813476562, -14.033489227294922 ], [ -72.055946350097656, -14.033085823058968 ], [ -72.054916381835938, -14.03266716003418 ], [ -72.05355072021473, -14.03252124786377 ], [ -72.052734375, -14.031924247741699 ], [ -72.051605224609318, -14.029384613037109 ], [ -72.051124572753906, -14.02707576751709 ], [ -72.051300048828125, -14.026155471801758 ], [ -72.05291748046875, -14.024812698364144 ], [ -72.053527832031193, -14.022189140319824 ], [ -72.053390502929688, -14.021016120910645 ], [ -72.052238464355469, -14.019283294677734 ], [ -72.052040100097656, -14.018525123596191 ], [ -72.052230834960938, -14.01754188537592 ], [ -72.053131103515568, -14.016288757324219 ], [ -72.053230285644474, -14.01536846160883 ], [ -72.052955627441349, -14.014841079711914 ], [ -72.0517578125, -14.013688087463322 ], [ -72.051582336425781, -14.01290225982666 ], [ -72.051773071289062, -14.012118339538517 ], [ -72.052986145019531, -14.010787010192814 ], [ -72.053070068359261, -14.008809089660645 ], [ -72.053810119628849, -14.006598472595158 ], [ -72.054298400878849, -14.000679016113281 ], [ -72.054092407226506, -13.995573997497559 ], [ -72.055259704589787, -13.992535591125431 ], [ -72.056640625, -13.990835189819279 ], [ -72.058677673339787, -13.986715316772461 ], [ -72.058593749999943, -13.985767364501953 ], [ -72.058029174804574, -13.984531402587891 ], [ -72.057952880859375, -13.982921600341797 ], [ -72.059135437011719, -13.975359916687012 ], [ -72.058677673339787, -13.974072456359863 ], [ -72.057296752929688, -13.972230911254826 ], [ -72.057037353515625, -13.970601081848088 ], [ -72.057220458984375, -13.970143318176156 ], [ -72.058135986328125, -13.969279289245605 ], [ -72.058502197265568, -13.968128204345703 ], [ -72.059822082519474, -13.966852188110352 ], [ -72.060615539550781, -13.964837074279785 ], [ -72.060356140136719, -13.964246749877873 ], [ -72.058914184570312, -13.962775230407715 ], [ -72.058448791503906, -13.961804389953613 ], [ -72.057540893554631, -13.957998275756836 ], [ -72.057922363281193, -13.95452880859375 ], [ -72.056571960449162, -13.95296669006342 ], [ -72.056312561035043, -13.952249526977539 ], [ -72.056549072265625, -13.950211524963265 ], [ -72.057762145996094, -13.947951316833439 ], [ -72.057960510253906, -13.947030067443791 ], [ -72.057723999023381, -13.945990562438965 ], [ -72.056373596191349, -13.943182945251408 ], [ -72.055915832519474, -13.940532684326115 ], [ -72.055053710937443, -13.938272476196289 ], [ -72.055145263671818, -13.937199592590332 ], [ -72.056076049804688, -13.935249328613281 ], [ -72.056076049804688, -13.934447288513184 ], [ -72.056327819824219, -13.933058738708439 ], [ -72.055946350097656, -13.932051658630371 ], [ -72.055900573730412, -13.929911613464299 ], [ -72.056373596191349, -13.929409980773869 ], [ -72.058052062988281, -13.928788185119629 ], [ -72.058921813964844, -13.928132057189941 ], [ -72.058952331542912, -13.926931381225529 ], [ -72.060607910156136, -13.924793243408146 ], [ -72.06195068359375, -13.921241760253906 ], [ -72.062637329101562, -13.919977188110295 ], [ -72.063880920410156, -13.918916702270451 ], [ -72.064964294433537, -13.918278694152832 ], [ -72.066146850585938, -13.917942047119084 ], [ -72.069404602050781, -13.915694236755371 ], [ -72.073585510253906, -13.91126632690424 ], [ -72.075668334960881, -13.90972805023182 ], [ -72.07635498046875, -13.908265113830566 ], [ -72.077766418456974, -13.907279968261719 ], [ -72.078247070312386, -13.906689643859806 ], [ -72.078376770019531, -13.903873443603516 ], [ -72.080177307128906, -13.900399208068791 ], [ -72.079833984374943, -13.899374008178654 ], [ -72.080070495605469, -13.89655876159668 ], [ -72.081596374511719, -13.893895149230957 ], [ -72.081634521484375, -13.892992019653263 ], [ -72.081077575683537, -13.890176773071289 ], [ -72.081924438476562, -13.888969421386719 ], [ -72.082054138183537, -13.888174057006836 ], [ -72.082702636718693, -13.887649536132812 ], [ -72.084747314453125, -13.887763977050781 ], [ -72.085319519042969, -13.886524200439453 ], [ -72.086204528808594, -13.885867118835392 ], [ -72.0914306640625, -13.885993003845215 ], [ -72.09255218505848, -13.883612632751465 ], [ -72.091560363769531, -13.881109237670898 ], [ -72.09161376953125, -13.879879951477051 ], [ -72.093276977539062, -13.878517150878906 ], [ -72.093948364257756, -13.877659797668457 ], [ -72.093963623046818, -13.876847267150822 ], [ -72.093498229980412, -13.876028060913029 ], [ -72.093635559082031, -13.874945640563965 ], [ -72.095947265625, -13.872653007507324 ], [ -72.097320556640511, -13.86971473693842 ], [ -72.099006652831974, -13.867927551269531 ], [ -72.100318908691406, -13.863971710204964 ], [ -72.1024169921875, -13.860815048217773 ], [ -72.103439331054688, -13.857741355895939 ], [ -72.104934692382756, -13.856195449829045 ], [ -72.104804992675781, -13.855379104614258 ], [ -72.103767395019531, -13.854114532470646 ], [ -72.103599548339787, -13.853588104248047 ], [ -72.106094360351449, -13.850890159606934 ], [ -72.106605529785156, -13.84923267364502 ], [ -72.107101440429688, -13.845220565795842 ], [ -72.106781005859375, -13.841061592102051 ], [ -72.107215881347599, -13.839224815368596 ], [ -72.108322143554688, -13.836753845214844 ], [ -72.108360290527287, -13.832852363586426 ], [ -72.110145568847656, -13.830146789550781 ], [ -72.110389709472543, -13.828560829162598 ], [ -72.111305236816349, -13.826305389404183 ], [ -72.112838745117131, -13.823890686035099 ], [ -72.114448547363281, -13.821896553039551 ], [ -72.115386962890625, -13.821698188781738 ], [ -72.118400573730355, -13.822647094726506 ], [ -72.119316101074162, -13.82232475280756 ], [ -72.119834899902344, -13.821696281433049 ], [ -72.12005615234375, -13.82105827331543 ], [ -72.119949340820312, -13.818729400634766 ], [ -72.120124816894531, -13.817844390869141 ], [ -72.12188720703125, -13.815950393676701 ], [ -72.121856689453125, -13.814990997314453 ], [ -72.122299194335881, -13.813138008117619 ], [ -72.123184204101562, -13.810745239257756 ], [ -72.125862121582031, -13.808210372924748 ], [ -72.125968933105469, -13.807480812072754 ], [ -72.125534057617131, -13.805543899536076 ], [ -72.125816345214787, -13.804409027099609 ], [ -72.127662658691406, -13.800908088684082 ], [ -72.12890625, -13.797489166259709 ], [ -72.130516052246094, -13.795829772949219 ], [ -72.131095886230469, -13.794896125793457 ], [ -72.130981445312443, -13.793307304382324 ], [ -72.130111694335881, -13.791479110717773 ], [ -72.130165100097656, -13.7901096343993 ], [ -72.133277893066293, -13.786019325256348 ], [ -72.134246826171875, -13.783932685852051 ], [ -72.134811401367188, -13.783351898193303 ], [ -72.136016845703068, -13.782750129699707 ], [ -72.138664245605469, -13.782051086425668 ], [ -72.141334533691406, -13.780150413513184 ], [ -72.143226623535156, -13.779350280761662 ], [ -72.144714355468693, -13.77911472320551 ], [ -72.146392822265625, -13.77972412109375 ], [ -72.147384643554631, -13.779768943786621 ], [ -72.147865295410043, -13.779539108276367 ], [ -72.149131774902344, -13.776853561401254 ], [ -72.153060913085938, -13.773086547851449 ], [ -72.154457092285156, -13.771097183227482 ], [ -72.154556274414062, -13.770285606384221 ], [ -72.153709411621094, -13.767313957214299 ], [ -72.153846740722599, -13.76622200012207 ], [ -72.154235839843693, -13.765387535095215 ], [ -72.155250549316406, -13.764451026916504 ], [ -72.158920288085881, -13.762333869933968 ], [ -72.1595458984375, -13.761446952819824 ], [ -72.159645080566406, -13.760364532470703 ], [ -72.159934997558594, -13.759751319885197 ], [ -72.162643432617131, -13.757499694824219 ], [ -72.163024902343693, -13.755915641784668 ], [ -72.162261962890568, -13.753918647766056 ], [ -72.162666320800781, -13.75219821929926 ], [ -72.164085388183594, -13.750064849853516 ], [ -72.166442871093693, -13.747626304626465 ], [ -72.167861938476506, -13.746794700622559 ], [ -72.170890808105469, -13.746665000915527 ], [ -72.173545837402344, -13.745973587036133 ], [ -72.177757263183594, -13.743754386901799 ], [ -72.178985595703125, -13.743995666503849 ], [ -72.180427551269531, -13.745058059692383 ], [ -72.181838989257812, -13.745635032653809 ], [ -72.182632446289062, -13.745671272277832 ], [ -72.184944152831974, -13.745210647583008 ], [ -72.187118530273438, -13.745976448059082 ], [ -72.188369750976506, -13.745971679687443 ], [ -72.189521789550724, -13.745650291442871 ], [ -72.191329956054631, -13.744009017944336 ], [ -72.192893981933594, -13.740866661071777 ], [ -72.193405151367188, -13.740230560302734 ], [ -72.195831298828068, -13.738974571228027 ], [ -72.196777343749943, -13.73818206787098 ], [ -72.198310852050724, -13.735299110412598 ], [ -72.199066162109318, -13.734387397766056 ], [ -72.201416015625, -13.732526779174805 ], [ -72.204460144042969, -13.730665206909123 ], [ -72.206268310546875, -13.728464126586914 ], [ -72.209762573242074, -13.727725028991699 ], [ -72.212356567382812, -13.726211547851562 ], [ -72.215347290039062, -13.72575569152832 ], [ -72.216827392578125, -13.725068092346191 ], [ -72.21834564208973, -13.72508430480957 ], [ -72.219482421874943, -13.725566864013615 ], [ -72.2205810546875, -13.72570610046381 ], [ -72.223419189453125, -13.725213050842228 ], [ -72.225265502929688, -13.724322319030705 ], [ -72.227302551269474, -13.722330093383789 ], [ -72.228515624999943, -13.721685409545898 ], [ -72.230430603027287, -13.722674369811955 ], [ -72.231277465820256, -13.722585678100529 ], [ -72.233268737792969, -13.720003128051701 ], [ -72.233497619628849, -13.718805313110352 ], [ -72.232528686523381, -13.717692375183105 ], [ -72.230415344238281, -13.717100143432617 ], [ -72.229316711425781, -13.716283798217717 ], [ -72.229118347167855, -13.715657234191895 ], [ -72.229324340820312, -13.713638305664006 ], [ -72.230667114257812, -13.711685180664062 ], [ -72.231056213378906, -13.708753585815373 ], [ -72.231773376464787, -13.706718444824219 ], [ -72.231788635253793, -13.705101966857853 ], [ -72.232627868652287, -13.70402717590332 ], [ -72.23590087890625, -13.70305347442627 ], [ -72.238685607910156, -13.700662612915039 ], [ -72.2410888671875, -13.700183868408203 ], [ -72.241844177246094, -13.699586868286076 ], [ -72.243881225585881, -13.698771476745492 ], [ -72.245246887207031, -13.697674751281625 ], [ -72.245552062988281, -13.696484565734863 ], [ -72.245208740234318, -13.695459365844727 ], [ -72.245193481445312, -13.693311691284066 ], [ -72.243858337402344, -13.689357757568246 ], [ -72.244117736816406, -13.688331604003906 ], [ -72.24517822265625, -13.687079429626465 ], [ -72.245719909667969, -13.686976432800293 ], [ -72.246177673339787, -13.687289237976074 ], [ -72.246803283691406, -13.68817138671875 ], [ -72.247116088867131, -13.689485549926701 ], [ -72.248649597167912, -13.690605163574219 ], [ -72.248756408691349, -13.691138267517033 ], [ -72.248390197753906, -13.692154884338379 ], [ -72.248802185058594, -13.693071365356445 ], [ -72.250175476074162, -13.692960739135742 ], [ -72.252929687499943, -13.691743850708008 ], [ -72.257972717285156, -13.688214302062931 ], [ -72.258811950683594, -13.687024116516113 ], [ -72.258163452148438, -13.685686111450082 ], [ -72.258407592773438, -13.684090614318848 ], [ -72.259040832519474, -13.683411598205566 ], [ -72.260337829589844, -13.682575225830021 ], [ -72.262504577636719, -13.682066917419377 ], [ -72.263137817382756, -13.682499885559025 ], [ -72.264556884765625, -13.684178352355957 ], [ -72.265251159667912, -13.684626579284611 ], [ -72.266319274902344, -13.684936523437443 ], [ -72.271659851074219, -13.68440055847168 ], [ -72.275390625, -13.683501243591252 ], [ -72.278129577636662, -13.683767318725529 ], [ -72.278816223144531, -13.684234619140625 ], [ -72.279197692871094, -13.684798240661621 ], [ -72.279571533203011, -13.686520576476937 ], [ -72.28023529052723, -13.687845230102482 ], [ -72.281723022460938, -13.68964958190918 ], [ -72.282775878906193, -13.690447807311955 ], [ -72.284858703613281, -13.690262794494629 ], [ -72.286323547363224, -13.689890861511174 ], [ -72.287025451660156, -13.689464569091797 ], [ -72.288978576660099, -13.689250946044865 ], [ -72.290313720703068, -13.689373970031681 ], [ -72.291076660156193, -13.689944267272949 ], [ -72.292419433593693, -13.69201755523676 ], [ -72.294158935546761, -13.694114685058537 ], [ -72.295028686523438, -13.694737434387207 ], [ -72.297294616699162, -13.695755958557072 ], [ -72.297996520996094, -13.696422576904297 ], [ -72.2982177734375, -13.69747352600092 ], [ -72.297264099121094, -13.699260711669865 ], [ -72.297126770019531, -13.700316429138184 ], [ -72.297370910644474, -13.702369689941406 ], [ -72.298118591308594, -13.703300476074219 ], [ -72.299095153808537, -13.703824043273926 ], [ -72.3016357421875, -13.704357147216797 ], [ -72.304985046386719, -13.706479072570801 ], [ -72.307594299316349, -13.706582069396973 ], [ -72.310844421386662, -13.708017349243164 ], [ -72.312767028808594, -13.707919120788517 ], [ -72.314941406249943, -13.705883979797363 ], [ -72.316169738769474, -13.705321311950627 ], [ -72.317237854003793, -13.70379638671875 ], [ -72.317031860351506, -13.701950073242188 ], [ -72.315544128417969, -13.698773384094238 ], [ -72.315719604492188, -13.697989463806096 ], [ -72.316352844238224, -13.69725513458252 ], [ -72.321205139160156, -13.695772171020451 ], [ -72.324806213378906, -13.694093704223633 ], [ -72.327651977539062, -13.693693161010629 ], [ -72.329391479492188, -13.693221092224064 ], [ -72.333320617675724, -13.691023826599064 ], [ -72.335411071777344, -13.690361022949219 ], [ -72.336387634277287, -13.689413070678711 ], [ -72.337799072265625, -13.687099456787109 ], [ -72.338966369628849, -13.685727119445744 ], [ -72.340072631835938, -13.684638023376408 ], [ -72.341079711913949, -13.684026718139592 ], [ -72.341964721679688, -13.68390941619873 ], [ -72.344635009765625, -13.68425464630127 ], [ -72.346885681152287, -13.682867050170898 ], [ -72.347625732421818, -13.682650566101017 ], [ -72.351257324218693, -13.683493614196721 ], [ -72.352874755859318, -13.682247161865234 ], [ -72.354743957519531, -13.681771278381348 ], [ -72.360206604003906, -13.676660537719727 ], [ -72.361221313476562, -13.676237106323185 ], [ -72.361846923828068, -13.675710678100586 ], [ -72.363426208496094, -13.673190116882267 ], [ -72.3662109375, -13.670402526855469 ], [ -72.368186950683594, -13.667713165283203 ], [ -72.369422912597656, -13.666424751281738 ], [ -72.370948791503906, -13.665302276611271 ], [ -72.37420654296875, -13.66420841217041 ], [ -72.378852844238281, -13.661590576171818 ], [ -72.379669189453068, -13.661680221557617 ], [ -72.382225036621094, -13.663326263427734 ], [ -72.383346557617188, -13.663761138915959 ], [ -72.389144897460824, -13.664030075073185 ], [ -72.390998840332031, -13.663597106933537 ], [ -72.395095825195312, -13.661990165710449 ], [ -72.398330688476562, -13.661370277404785 ], [ -72.402656555175724, -13.659330368041935 ], [ -72.403472900390625, -13.658246040344238 ], [ -72.404243469238281, -13.656222343444767 ], [ -72.404464721679631, -13.654623985290527 ], [ -72.404365539550781, -13.653008460998478 ], [ -72.403884887695312, -13.651900291442871 ], [ -72.39996337890625, -13.648726463317871 ], [ -72.398536682128906, -13.647093772888184 ], [ -72.39825439453125, -13.645906448364201 ], [ -72.398345947265625, -13.644832611083984 ], [ -72.399452209472656, -13.643145561218205 ], [ -72.39984130859375, -13.64199256896967 ], [ -72.399215698242188, -13.639285087585449 ], [ -72.399818420410099, -13.636246681213322 ], [ -72.399711608886662, -13.633552551269474 ], [ -72.401039123535099, -13.631941795349121 ], [ -72.40301513671875, -13.63048076629633 ], [ -72.403724670410099, -13.628888130187931 ], [ -72.404510498046875, -13.625608444213867 ], [ -72.405586242675781, -13.623750686645508 ], [ -72.407676696777344, -13.622200965881348 ], [ -72.409751892089844, -13.620062828063908 ], [ -72.414199829101506, -13.61738109588623 ], [ -72.415573120117188, -13.616256713867188 ], [ -72.418075561523438, -13.615118026733398 ], [ -72.419296264648438, -13.609764099121094 ], [ -72.421257019042912, -13.606224060058594 ], [ -72.421943664550724, -13.605608940124512 ], [ -72.423568725585881, -13.605426788330021 ], [ -72.424972534179631, -13.605541229248047 ], [ -72.42706298828125, -13.606230735778752 ], [ -72.429702758789062, -13.604703903198185 ], [ -72.430740356445312, -13.604498863220215 ], [ -72.436080932617188, -13.605303764343205 ], [ -72.437820434570312, -13.605266571044922 ], [ -72.440521240234318, -13.604174613952637 ], [ -72.442848205566406, -13.602717399597111 ], [ -72.445335388183594, -13.601558685302734 ], [ -72.446891784667969, -13.601035118103027 ], [ -72.450531005859318, -13.600294113159123 ], [ -72.452781677246094, -13.598734855651742 ], [ -72.454925537109318, -13.597908020019531 ], [ -72.457054138183594, -13.596186637878418 ], [ -72.459091186523438, -13.594175338745117 ], [ -72.459587097167912, -13.593042373657227 ], [ -72.459724426269531, -13.590612411499023 ], [ -72.460113525390625, -13.589712142944279 ], [ -72.462554931640568, -13.589782714843693 ], [ -72.463737487792969, -13.588275909423828 ], [ -72.464454650878849, -13.587931632995549 ], [ -72.466934204101506, -13.58793926239008 ], [ -72.47021484375, -13.587491989135742 ], [ -72.47100830078125, -13.587611198425293 ], [ -72.473297119140625, -13.58856296539301 ], [ -72.477699279785156, -13.588247299194336 ], [ -72.480819702148438, -13.589625358581543 ], [ -72.483955383300781, -13.590007781982422 ], [ -72.486396789550724, -13.591739654541016 ], [ -72.487472534179574, -13.591788291931152 ], [ -72.489402770996094, -13.591391563415414 ], [ -72.490570068359375, -13.590409278869629 ], [ -72.491142272949219, -13.589359283447266 ], [ -72.491416931152344, -13.587754249572754 ], [ -72.491409301757812, -13.584508895874023 ], [ -72.492027282714787, -13.582427978515568 ], [ -72.492820739746094, -13.581171989440861 ], [ -72.494850158691406, -13.578869819641113 ], [ -72.496124267578068, -13.578313827514648 ], [ -72.498252868652344, -13.578490257263127 ], [ -72.499427795410156, -13.578195571899357 ], [ -72.500694274902287, -13.577347755432129 ], [ -72.503074645996037, -13.57496070861805 ], [ -72.504158020019418, -13.574320793151742 ], [ -72.505531311035156, -13.574253082275391 ], [ -72.510040283203068, -13.575001716613713 ], [ -72.514358520507756, -13.574187278747502 ], [ -72.519462585449219, -13.571400642394963 ], [ -72.520034790039062, -13.570493698120117 ], [ -72.520439147949162, -13.567787170410156 ], [ -72.520912170410099, -13.567116737365609 ], [ -72.521598815917912, -13.566679000854492 ], [ -72.523635864257812, -13.566147804260197 ], [ -72.524581909179688, -13.565614700317269 ], [ -72.526588439941406, -13.565394401550293 ], [ -72.528610229492188, -13.564635276794434 ], [ -72.532630920410156, -13.56433200836176 ], [ -72.535972595214844, -13.563758850097543 ], [ -72.548408508300668, -13.562932014465332 ], [ -72.551185607910156, -13.562562942504769 ], [ -72.56341552734375, -13.562059402465763 ], [ -72.566024780273381, -13.562273025512638 ], [ -72.572807312011662, -13.562241554260197 ], [ -72.577774047851506, -13.561421394348145 ], [ -72.586738586425724, -13.560695648193303 ], [ -72.588699340820312, -13.560272216796875 ], [ -72.592658996581918, -13.55882740020752 ], [ -72.594657897949162, -13.558512687683105 ], [ -72.598686218261719, -13.557295799255371 ], [ -72.599845886230469, -13.557135581970158 ], [ -72.601974487304631, -13.55629825592041 ], [ -72.606483459472599, -13.55322265625 ], [ -72.611740112304688, -13.548484802246037 ], [ -72.615318298339844, -13.546867370605412 ], [ -72.616790771484261, -13.545948028564453 ], [ -72.619659423828125, -13.545316696166992 ], [ -72.624862670898381, -13.543325424194336 ], [ -72.627616882324219, -13.543106079101562 ], [ -72.630577087402344, -13.542492866516056 ], [ -72.636253356933594, -13.542566299438477 ], [ -72.637672424316293, -13.542000770568791 ], [ -72.640678405761719, -13.539265632629338 ], [ -72.642807006835881, -13.536464691162053 ], [ -72.643119812011719, -13.535202026367188 ], [ -72.643234252929688, -13.531535148620605 ], [ -72.644073486328125, -13.52984619140625 ], [ -72.645317077636719, -13.528654098510742 ], [ -72.648704528808537, -13.526347160339242 ], [ -72.6494140625, -13.52540397644043 ], [ -72.649711608886719, -13.52410697937006 ], [ -72.649307250976449, -13.523208618164006 ], [ -72.649177551269474, -13.521327018737793 ], [ -72.648803710937443, -13.519941329956055 ], [ -72.648887634277344, -13.519157409667969 ], [ -72.649879455566293, -13.518351554870605 ], [ -72.651954650878849, -13.517675399780273 ], [ -72.653495788574162, -13.516707420349064 ], [ -72.655754089355469, -13.513771057128849 ], [ -72.656661987304688, -13.5134019851684 ], [ -72.657768249511662, -13.513413429260197 ], [ -72.659599304199162, -13.514874458312988 ], [ -72.662719726562443, -13.516393661498967 ], [ -72.668556213378849, -13.516855239868107 ], [ -72.669265747070312, -13.517721176147404 ], [ -72.669403076171818, -13.518437385559082 ], [ -72.669967651367131, -13.519243240356388 ], [ -72.670303344726562, -13.520259857177678 ], [ -72.671417236328068, -13.521697998046761 ], [ -72.672401428222656, -13.522250175475961 ], [ -72.673789978027287, -13.522108078002873 ], [ -72.67610931396473, -13.520087242126465 ], [ -72.678619384765625, -13.516560554504338 ], [ -72.680297851562443, -13.515156745910645 ], [ -72.681808471679631, -13.514874458312988 ], [ -72.683006286621094, -13.514892578124943 ], [ -72.684242248535156, -13.515230178832951 ], [ -72.685867309570312, -13.514992713928223 ], [ -72.687202453613281, -13.514389038085938 ], [ -72.689064025878849, -13.51280689239502 ], [ -72.690170288085938, -13.512166976928711 ], [ -72.693138122558594, -13.510984420776367 ], [ -72.695907592773381, -13.510340690612793 ], [ -72.698921203613281, -13.508698463439941 ], [ -72.700767517089844, -13.50582218170166 ], [ -72.702125549316349, -13.504135131835881 ], [ -72.70245361328125, -13.503390312194824 ], [ -72.702293395996094, -13.502159118652344 ], [ -72.700141906738168, -13.500638961791935 ], [ -72.701187133788949, -13.498108863830566 ], [ -72.702552795410156, -13.495818138122502 ], [ -72.70442962646473, -13.493892669677734 ], [ -72.709281921386662, -13.492546081542969 ], [ -72.711547851562443, -13.491265296935978 ], [ -72.713912963867188, -13.48865699768055 ], [ -72.717109680175724, -13.483779907226562 ], [ -72.718978881835938, -13.482107162475586 ], [ -72.721389770507756, -13.48112678527832 ], [ -72.722694396972656, -13.4811754226684 ], [ -72.723419189453125, -13.48161506652832 ], [ -72.725128173828011, -13.483310699462891 ], [ -72.726806640624943, -13.484411239624023 ], [ -72.727714538574219, -13.484573364257756 ], [ -72.728820800781193, -13.484401702880803 ], [ -72.730545043945256, -13.483297348022404 ], [ -72.732208251953125, -13.48181056976307 ], [ -72.735237121581918, -13.478549003601017 ], [ -72.737350463867188, -13.476600646972656 ], [ -72.738960266113281, -13.475646018981934 ], [ -72.741104125976562, -13.475062370300293 ], [ -72.747932434082031, -13.474931716918945 ], [ -72.751289367675781, -13.473788261413517 ], [ -72.752609252929688, -13.47183704376215 ], [ -72.752922058105469, -13.470195770263615 ], [ -72.753433227539006, -13.468909263610783 ], [ -72.753486633300781, -13.467435836791992 ], [ -72.754257202148438, -13.462999343871957 ], [ -72.756401062011662, -13.456312179565373 ], [ -72.757553100585824, -13.454001426696777 ], [ -72.759735107421818, -13.451120376586914 ], [ -72.762832641601562, -13.448175430297852 ], [ -72.764945983886719, -13.447181701660099 ], [ -72.768699645996037, -13.446435928344727 ], [ -72.775413513183594, -13.44600772857666 ], [ -72.777267456054631, -13.448086738586369 ], [ -72.778808593749943, -13.450484275817871 ], [ -72.78072357177723, -13.454069137573242 ], [ -72.784156799316293, -13.457338333129826 ], [ -72.785949707031193, -13.458662033081055 ], [ -72.787681579589787, -13.459154129028263 ], [ -72.791969299316349, -13.459004402160645 ], [ -72.793777465820256, -13.458250999450627 ], [ -72.798141479492131, -13.455407142639103 ], [ -72.799751281738281, -13.453993797302246 ], [ -72.800735473632756, -13.452013015747013 ], [ -72.800750732421761, -13.447504997253418 ], [ -72.800094604492188, -13.444435119628849 ], [ -72.795356750488281, -13.430742263793888 ], [ -72.794410705566406, -13.426793098449707 ], [ -72.794754028320312, -13.424899101257324 ], [ -72.798103332519531, -13.421818733215332 ], [ -72.799774169921818, -13.421219825744629 ], [ -72.802291870117188, -13.421213150024357 ], [ -72.806221008300781, -13.422695159912053 ], [ -72.806831359863224, -13.422528266906681 ], [ -72.8087158203125, -13.421334266662598 ], [ -72.810859680175668, -13.421513557434082 ], [ -72.813735961914062, -13.42218017578125 ], [ -72.816825866699219, -13.425009727478027 ], [ -72.817939758300781, -13.425506591796875 ], [ -72.819145202636662, -13.425717353820801 ], [ -72.823127746581974, -13.425153732299805 ], [ -72.826293945312443, -13.424369812011719 ], [ -72.828002929687443, -13.423390388488713 ], [ -72.831161499023381, -13.420796394348088 ], [ -72.832214355468693, -13.420622825622559 ], [ -72.835533142089787, -13.422631263732853 ], [ -72.838478088378906, -13.425312995910645 ], [ -72.840576171875, -13.426117897033691 ], [ -72.842422485351506, -13.426460266113281 ], [ -72.845596313476562, -13.425374984741211 ], [ -72.849678039550668, -13.424919128417969 ], [ -72.851264953613224, -13.424139976501465 ], [ -72.85455322265625, -13.421728134155273 ], [ -72.856254577636605, -13.421217918395939 ], [ -72.858795166015568, -13.421121597289982 ], [ -72.85943603515625, -13.42073917388916 ], [ -72.860275268554688, -13.420645713806096 ], [ -72.862380981445312, -13.419850349426213 ], [ -72.866081237792855, -13.416629791259766 ], [ -72.868156433105412, -13.415761947631779 ], [ -72.876754760742131, -13.415716171264648 ], [ -72.878059387206974, -13.415221214294377 ], [ -72.879791259765568, -13.41380786895752 ], [ -72.880615234375, -13.413653373718262 ], [ -72.881813049316293, -13.413887977600098 ], [ -72.884254455566406, -13.416547775268498 ], [ -72.886306762695312, -13.416536331176701 ], [ -72.887680053710938, -13.415752410888672 ], [ -72.889320373535099, -13.415306091308594 ], [ -72.890365600585881, -13.414105415344238 ], [ -72.890922546386719, -13.412338256835938 ], [ -72.891395568847656, -13.41154670715332 ], [ -72.892204284667912, -13.410767555236816 ], [ -72.8936767578125, -13.409975051879769 ], [ -72.894050598144531, -13.409562110900822 ], [ -72.89422607421875, -13.408750534057617 ], [ -72.894012451171818, -13.407855033874512 ], [ -72.894081115722599, -13.405370712280217 ], [ -72.893562316894531, -13.403215408325195 ], [ -72.893043518066349, -13.402017593383789 ], [ -72.893066406249886, -13.400826454162598 ], [ -72.893951416015625, -13.398888587951546 ], [ -72.896308898925668, -13.396532058715707 ], [ -72.897132873535099, -13.394478797912541 ], [ -72.897483825683594, -13.391536712646484 ], [ -72.899383544921875, -13.389824867248478 ], [ -72.8994140625, -13.389165878295842 ], [ -72.899055480956974, -13.388421058654785 ], [ -72.899208068847656, -13.387988090515137 ], [ -72.899559020996094, -13.387702941894474 ], [ -72.900215148925724, -13.387600898742619 ], [ -72.900764465331974, -13.387922286987248 ], [ -72.902442932128906, -13.387762069702148 ], [ -72.903343200683537, -13.387516021728402 ], [ -72.904548645019531, -13.386787414550781 ], [ -72.905387878417969, -13.386702537536564 ], [ -72.905998229980469, -13.386898994445801 ], [ -72.908233642578011, -13.388435363769474 ], [ -72.910263061523438, -13.388648986816349 ], [ -72.911590576171875, -13.388173103332463 ], [ -72.912628173828125, -13.387504577636662 ], [ -72.912666320800781, -13.384667396545353 ], [ -72.913421630859375, -13.383605003356934 ], [ -72.91500091552723, -13.383629798889046 ], [ -72.915992736816406, -13.38414287567133 ], [ -72.91805267333973, -13.384756088256836 ], [ -72.920478820800781, -13.384856224060059 ], [ -72.9224853515625, -13.384413719177189 ], [ -72.926506042480412, -13.382657051086369 ], [ -72.928352355956918, -13.382411003112736 ], [ -72.930488586425781, -13.38261604309082 ], [ -72.938446044921818, -13.384961128234806 ], [ -72.94000244140625, -13.385107040405273 ], [ -72.942878723144531, -13.384852409362793 ], [ -72.945289611816406, -13.385213851928711 ], [ -72.948631286621037, -13.386371612548714 ], [ -72.952507019042969, -13.388427734375 ], [ -72.954124450683594, -13.38885593414301 ], [ -72.955528259277287, -13.388778686523438 ], [ -72.957069396972656, -13.388375282287541 ], [ -72.959770202636719, -13.388521194457894 ], [ -72.964035034179688, -13.386930465698242 ], [ -72.965316772460938, -13.387210845947209 ], [ -72.968246459960938, -13.388860702514648 ], [ -72.970268249511719, -13.389193534851017 ], [ -72.97186279296875, -13.389206886291504 ], [ -72.976097106933537, -13.388519287109375 ], [ -72.979042053222656, -13.387304306030273 ], [ -72.980537414550781, -13.387278556823674 ], [ -72.981903076171875, -13.388655662536621 ], [ -72.983345031738224, -13.389137268066293 ], [ -72.983879089355469, -13.389664649963379 ], [ -72.983993530273438, -13.39047908782959 ], [ -72.983657836914006, -13.391035079956055 ], [ -72.983558654785099, -13.392059326171818 ], [ -72.98366546630848, -13.392783164978027 ], [ -72.984024047851506, -13.393325805664006 ], [ -72.98504638671875, -13.394283294677678 ], [ -72.990638732910156, -13.398233413696232 ], [ -72.991195678710881, -13.399301528930664 ], [ -72.991363525390568, -13.40234184265131 ], [ -72.992240905761662, -13.403576850891113 ], [ -72.993072509765568, -13.403855323791504 ], [ -72.994598388671818, -13.403847694396859 ], [ -72.995254516601562, -13.40418624877924 ], [ -72.996070861816406, -13.40508842468256 ], [ -72.997703552246094, -13.407777786254826 ], [ -73.000213623046875, -13.410516738891545 ], [ -73.000564575195312, -13.410592079162541 ], [ -73.00250244140625, -13.410019874572697 ], [ -73.004127502441406, -13.410186767578068 ], [ -73.005050659179688, -13.410736083984375 ], [ -73.007034301757699, -13.41297435760498 ], [ -73.007926940917969, -13.414491653442383 ], [ -73.008544921874943, -13.41622161865223 ], [ -73.009147644042969, -13.419660568237305 ], [ -73.010101318359375, -13.421449661254883 ], [ -73.011268615722656, -13.422370910644531 ], [ -73.012893676757812, -13.423105239868107 ], [ -73.016799926757812, -13.42335319519043 ], [ -73.017822265625, -13.424310684204102 ], [ -73.018623352050781, -13.42606258392334 ], [ -73.019371032714844, -13.426673889160156 ], [ -73.0206298828125, -13.42675590515131 ], [ -73.022468566894474, -13.426263809204045 ], [ -73.024955749511662, -13.425171852111816 ], [ -73.026542663574219, -13.42420768737793 ], [ -73.027671813964844, -13.423113822937012 ], [ -73.031028747558537, -13.420772552490178 ], [ -73.032417297363281, -13.419194221496525 ], [ -73.034156799316406, -13.416584014892521 ], [ -73.035690307617188, -13.415242195129395 ], [ -73.036155700683594, -13.41455078125 ], [ -73.036888122558594, -13.414140701293888 ], [ -73.038078308105469, -13.413904190063477 ], [ -73.0396728515625, -13.413982391357422 ], [ -73.041442871093693, -13.414788246154728 ], [ -73.043022155761719, -13.415034294128361 ], [ -73.044662475585938, -13.41435527801508 ], [ -73.047073364257756, -13.412628173828125 ], [ -73.048751831054688, -13.412640571594238 ], [ -73.050697326660099, -13.414445877075138 ], [ -73.050834655761719, -13.416924476623535 ], [ -73.051086425781193, -13.417620658874455 ], [ -73.053382873535043, -13.420168876647892 ], [ -73.054359436035156, -13.421839714050293 ], [ -73.056266784667969, -13.423862457275391 ], [ -73.05877685546875, -13.42918586730957 ], [ -73.061653137206974, -13.432173728942871 ], [ -73.06256103515625, -13.435161590576172 ], [ -73.064796447753849, -13.437511444091797 ], [ -73.067398071288949, -13.438749313354435 ], [ -73.068145751953068, -13.438792228698674 ], [ -73.070846557617188, -13.438026428222599 ], [ -73.071784973144418, -13.438097000122013 ], [ -73.073593139648381, -13.43940258026123 ], [ -73.075866699218693, -13.440296173095703 ], [ -73.078231811523438, -13.442818641662541 ], [ -73.079345703125, -13.443405151367074 ], [ -73.084815979003849, -13.444405555725098 ], [ -73.08966064453125, -13.4449205398559 ], [ -73.090187072753849, -13.444743156433105 ], [ -73.091484069824219, -13.443670272827148 ], [ -73.092315673828125, -13.443575859069824 ], [ -73.093620300292912, -13.444300651550236 ], [ -73.095123291015568, -13.445820808410645 ], [ -73.097846984863281, -13.447804450988713 ], [ -73.100097656249943, -13.448752403259277 ], [ -73.101837158203125, -13.449134826660156 ], [ -73.107429504394474, -13.448752403259277 ], [ -73.108680725097599, -13.448145866393929 ], [ -73.109619140624943, -13.445676803588867 ], [ -73.111061096191349, -13.442896842956486 ], [ -73.112297058105412, -13.437690734863281 ], [ -73.11376953125, -13.435624122619629 ], [ -73.114799499511605, -13.434906005859318 ], [ -73.117912292480412, -13.434659957885685 ], [ -73.119407653808594, -13.43505859375 ], [ -73.120338439941406, -13.43609619140625 ], [ -73.120773315429631, -13.437887191772404 ], [ -73.121223449707031, -13.438470840454045 ], [ -73.121742248535099, -13.438880920410156 ], [ -73.124328613281193, -13.439958572387695 ], [ -73.129364013671818, -13.440773010253906 ], [ -73.130722045898324, -13.44046688079834 ], [ -73.132133483886662, -13.439736366271973 ], [ -73.132736206054688, -13.438907623290959 ], [ -73.133415222167969, -13.436445236206055 ], [ -73.134040832519474, -13.436016082763672 ], [ -73.135154724121094, -13.435817718505859 ], [ -73.135704040527344, -13.435468673706055 ], [ -73.137557983398381, -13.433151245117188 ], [ -73.139007568359318, -13.430822372436523 ], [ -73.140892028808537, -13.429443359374943 ], [ -73.142936706542969, -13.428553581237793 ], [ -73.143829345703125, -13.427720069885254 ], [ -73.144523620605412, -13.42634105682373 ], [ -73.144546508789006, -13.424328804016056 ], [ -73.146102905273438, -13.422477722167969 ], [ -73.14678955078125, -13.420909881591797 ], [ -73.147689819335881, -13.420130729675293 ], [ -73.149559020996094, -13.420025825500431 ], [ -73.151603698730412, -13.421632766723633 ], [ -73.153884887695256, -13.422879219055176 ], [ -73.155006408691349, -13.424674987792912 ], [ -73.155242919921875, -13.426421165466309 ], [ -73.153579711914006, -13.430502891540414 ], [ -73.153526306152344, -13.431875228881779 ], [ -73.153121948242131, -13.433474540710449 ], [ -73.153190612792969, -13.4353990554809 ], [ -73.153755187988281, -13.435899734497013 ], [ -73.154632568359318, -13.436223983764648 ], [ -73.156883239746094, -13.436375617980957 ], [ -73.158622741699219, -13.436135292053223 ], [ -73.160476684570199, -13.436492919921875 ], [ -73.161468505859375, -13.436962127685547 ], [ -73.162887573242188, -13.438669204711857 ], [ -73.163772583007812, -13.441488265991211 ], [ -73.163955688476562, -13.443368911743164 ], [ -73.165924072265625, -13.445481300354004 ], [ -73.166580200195199, -13.446784973144531 ], [ -73.16754150390625, -13.448032379150391 ], [ -73.170082092285099, -13.450482368469125 ], [ -73.171157836913949, -13.451881408691349 ], [ -73.172607421875, -13.452216148376408 ], [ -73.174392700195256, -13.452165603637695 ], [ -73.180000305175724, -13.451204299926758 ], [ -73.182395935058537, -13.449052810668888 ], [ -73.183929443359318, -13.446304321289062 ], [ -73.185340881347599, -13.444589614868107 ], [ -73.186599731445256, -13.443631172180176 ], [ -73.189399719238281, -13.442307472229004 ], [ -73.190025329589787, -13.441757202148381 ], [ -73.190162658691406, -13.440674781799316 ], [ -73.189567565917855, -13.439433097839299 ], [ -73.189476013183594, -13.437588691711369 ], [ -73.188529968261719, -13.435094833374023 ], [ -73.188583374023381, -13.432429313659668 ], [ -73.189399719238281, -13.431153297424316 ], [ -73.190795898437443, -13.429643630981445 ], [ -73.193504333496094, -13.428651809692326 ], [ -73.195037841796875, -13.427847862243652 ], [ -73.195602416992188, -13.426803588867131 ], [ -73.195610046386719, -13.424789428710881 ], [ -73.195045471191406, -13.424043655395508 ], [ -73.194816589355469, -13.423328399658203 ], [ -73.193046569824219, -13.421714782714844 ], [ -73.191413879394531, -13.419155120849553 ], [ -73.191398620605469, -13.417790412902832 ], [ -73.192337036132812, -13.416641235351562 ], [ -73.193359374999943, -13.416042327880859 ], [ -73.198623657226449, -13.416069030761719 ], [ -73.202545166015625, -13.41515064239502 ], [ -73.206413269042912, -13.413297653198185 ], [ -73.209144592285156, -13.413190841674748 ], [ -73.21038818359375, -13.413586616516113 ], [ -73.211494445800724, -13.414437294006234 ], [ -73.213867187499943, -13.41706466674799 ], [ -73.214927673339787, -13.418689727783146 ], [ -73.215644836425781, -13.419282913208008 ], [ -73.219703674316293, -13.418968200683537 ], [ -73.223838806152344, -13.417234420776367 ], [ -73.231964111328125, -13.411154747009277 ], [ -73.233444213867188, -13.410368919372502 ], [ -73.235588073730469, -13.410114288330021 ], [ -73.239364624023438, -13.411206245422363 ], [ -73.240676879882756, -13.411198616027832 ], [ -73.241683959960938, -13.41071605682373 ], [ -73.242607116699219, -13.409927368163949 ], [ -73.244956970214787, -13.409022331237736 ], [ -73.246871948242131, -13.40739917755127 ], [ -73.249229431152287, -13.406492233276367 ], [ -73.250335693359375, -13.405723571777287 ], [ -73.251754760742188, -13.404127120971623 ], [ -73.253829956054631, -13.402573585510197 ], [ -73.254783630371037, -13.401315689086914 ], [ -73.255172729492131, -13.399429321289006 ], [ -73.255966186523438, -13.398161888122502 ], [ -73.256195068359318, -13.397394180297852 ], [ -73.256011962890568, -13.395921707153263 ], [ -73.255050659179631, -13.393526077270508 ], [ -73.255126953125, -13.392342567443848 ], [ -73.255706787109375, -13.392043113708439 ], [ -73.256423950195312, -13.392245292663517 ], [ -73.258377075195312, -13.393532752990666 ], [ -73.260604858398381, -13.395372390747013 ], [ -73.262062072753906, -13.395174026489201 ], [ -73.262557983398438, -13.394888877868652 ], [ -73.262962341308537, -13.394285202026367 ], [ -73.263282775878793, -13.391812324523869 ], [ -73.263664245605355, -13.390885353088379 ], [ -73.263648986816349, -13.388858795166016 ], [ -73.263313293457031, -13.38666820526123 ], [ -73.263526916503906, -13.386074066162053 ], [ -73.264259338378906, -13.385220527648869 ], [ -73.265327453613281, -13.384651184081974 ], [ -73.266792297363224, -13.383231163024902 ], [ -73.267784118652344, -13.38271427154541 ], [ -73.270439147949105, -13.382045745849553 ], [ -73.272476196289062, -13.381173133850098 ], [ -73.276206970214844, -13.379987716674805 ], [ -73.278350830078011, -13.377931594848519 ], [ -73.280426025390568, -13.373969078063965 ], [ -73.282463073730469, -13.372050285339355 ], [ -73.284011840820312, -13.371002197265568 ], [ -73.284568786621094, -13.370879173278752 ], [ -73.285133361816406, -13.371038436889592 ], [ -73.285804748535156, -13.372134208679142 ], [ -73.286880493164062, -13.373027801513672 ], [ -73.289962768554631, -13.372914314269963 ], [ -73.290863037109375, -13.37221622467041 ], [ -73.291290283203068, -13.37161922454834 ], [ -73.291519165039062, -13.370166778564453 ], [ -73.292556762695256, -13.368311882018986 ], [ -73.292587280273438, -13.364444732666016 ], [ -73.293548583984375, -13.361955642700195 ], [ -73.293426513671875, -13.359748840331974 ], [ -73.293716430664062, -13.35738372802723 ], [ -73.293235778808594, -13.355807304382267 ], [ -73.293380737304688, -13.354361534118652 ], [ -73.293983459472599, -13.353897094726562 ], [ -73.294433593749943, -13.353816986083928 ], [ -73.298591613769531, -13.354947090148926 ], [ -73.301307678222599, -13.354941368102971 ], [ -73.3052978515625, -13.35277080535883 ], [ -73.308761596679631, -13.350071907043457 ], [ -73.309165954589844, -13.349389076232853 ], [ -73.309104919433594, -13.348356246948185 ], [ -73.3082275390625, -13.347601890563908 ], [ -73.307472229003906, -13.347505569457951 ], [ -73.306724548339844, -13.347121238708439 ], [ -73.306228637695312, -13.346259117126408 ], [ -73.306610107421875, -13.345311164855957 ], [ -73.309219360351506, -13.34307956695551 ], [ -73.309341430664006, -13.342259407043457 ], [ -73.308670043945256, -13.341593742370549 ], [ -73.308723449707031, -13.341106414794922 ], [ -73.309883117675724, -13.339884757995549 ], [ -73.311279296875, -13.339323997497502 ], [ -73.314552307128906, -13.339209556579533 ], [ -73.315940856933594, -13.337971687316895 ], [ -73.316360473632812, -13.337251663208008 ], [ -73.316284179687443, -13.335967063903752 ], [ -73.315437316894474, -13.334868431091309 ], [ -73.314872741699162, -13.333599090576115 ], [ -73.314826965332031, -13.331121444702148 ], [ -73.315147399902287, -13.327635765075684 ], [ -73.316947937011662, -13.325777053833008 ], [ -73.3175048828125, -13.324748992919865 ], [ -73.318893432617188, -13.323519706726074 ], [ -73.320549011230469, -13.323306083679142 ], [ -73.323150634765568, -13.323386192321721 ], [ -73.324066162109375, -13.322894096374455 ], [ -73.325469970703125, -13.321658134460392 ], [ -73.327247619628849, -13.319417953491211 ], [ -73.327751159667855, -13.318119049072266 ], [ -73.327941894531136, -13.316567420959416 ], [ -73.328781127929631, -13.314916610717773 ], [ -73.331344604492131, -13.311753273010254 ], [ -73.331809997558594, -13.310844421386605 ], [ -73.333946228027287, -13.309067726135254 ], [ -73.335044860839844, -13.308829307556152 ], [ -73.338233947753849, -13.308831214904728 ], [ -73.339324951171875, -13.309344291687012 ], [ -73.340881347656193, -13.311053276062012 ], [ -73.343727111816406, -13.312005996704045 ], [ -73.344520568847599, -13.31249809265131 ], [ -73.345001220703068, -13.312519073486328 ], [ -73.345436096191406, -13.312197685241699 ], [ -73.345832824707031, -13.311676025390568 ], [ -73.346298217773438, -13.30988883972168 ], [ -73.346511840820256, -13.307332038879338 ], [ -73.346855163574219, -13.306385993957406 ], [ -73.3475341796875, -13.305612564086857 ], [ -73.349311828613281, -13.305036544799748 ], [ -73.35054779052723, -13.303931236267033 ], [ -73.352485656738281, -13.302798271179142 ], [ -73.352783203125, -13.301858901977539 ], [ -73.352882385253906, -13.298995018005257 ], [ -73.352821350097599, -13.298062324523869 ], [ -73.35260009765625, -13.297736167907658 ], [ -73.350196838378906, -13.297755241393929 ], [ -73.347602844238281, -13.29571533203125 ], [ -73.3448486328125, -13.292816162109261 ], [ -73.344673156738281, -13.292206764221191 ], [ -73.344924926757812, -13.291213989257812 ], [ -73.345413208007812, -13.29088306427002 ], [ -73.346397399902344, -13.291603088378906 ], [ -73.347473144531193, -13.29191780090332 ], [ -73.349365234374943, -13.291460037231445 ], [ -73.350776672363281, -13.291468620300293 ], [ -73.352897644042912, -13.293057441711426 ], [ -73.353446960449219, -13.293203353881836 ], [ -73.354721069335881, -13.292941093444824 ], [ -73.356491088867188, -13.291921615600586 ], [ -73.356407165527344, -13.28862190246582 ], [ -73.356109619140625, -13.288096427917424 ], [ -73.355438232421875, -13.287783622741699 ], [ -73.352371215820312, -13.288162231445312 ], [ -73.351692199706918, -13.287690162658578 ], [ -73.350898742675724, -13.286635398864746 ], [ -73.350425720214787, -13.285556793212834 ], [ -73.350921630859318, -13.284456253051701 ], [ -73.350959777832031, -13.282975196838379 ], [ -73.3505859375, -13.282158851623421 ], [ -73.350540161132756, -13.28022384643549 ], [ -73.350120544433594, -13.279623985290471 ], [ -73.350082397460938, -13.278323173522949 ], [ -73.351730346679688, -13.276698112487793 ], [ -73.352577209472656, -13.275056838989258 ], [ -73.354896545410099, -13.272649765014535 ], [ -73.355201721191349, -13.271801948547363 ], [ -73.356391906738281, -13.270607948303166 ], [ -73.357185363769474, -13.27043247222889 ], [ -73.359169006347656, -13.270581245422363 ], [ -73.360366821288949, -13.270027160644418 ], [ -73.361389160156193, -13.269916534423771 ], [ -73.36260986328125, -13.269969940185547 ], [ -73.363761901855469, -13.270378112792912 ], [ -73.364509582519531, -13.270316123962402 ], [ -73.364761352539062, -13.270599365234261 ], [ -73.366264343261662, -13.270570755004883 ], [ -73.367767333984375, -13.270058631896973 ], [ -73.369102478027344, -13.268781661987305 ], [ -73.369506835937443, -13.266072273254395 ], [ -73.372016906738281, -13.263339996337834 ], [ -73.373886108398381, -13.260372161865178 ], [ -73.374084472656193, -13.259757041931152 ], [ -73.374450683593693, -13.259488105773926 ], [ -73.374465942382756, -13.25828742980957 ], [ -73.373794555664006, -13.256972312927246 ], [ -73.373710632324162, -13.256246566772347 ], [ -73.374588012695312, -13.25271034240717 ], [ -73.375045776367131, -13.252043724060002 ], [ -73.37496185302723, -13.247061729431152 ], [ -73.375297546386719, -13.245906829833984 ], [ -73.376701354980469, -13.244316101074219 ], [ -73.378143310546875, -13.243179321289062 ], [ -73.380218505859375, -13.241049766540527 ], [ -73.381217956542912, -13.24072170257557 ], [ -73.382965087890568, -13.240856170654297 ], [ -73.383644104003906, -13.241241455078125 ], [ -73.384124755859375, -13.241108894348145 ], [ -73.386383056640568, -13.238457679748478 ], [ -73.38641357421875, -13.236243247985726 ], [ -73.384735107421875, -13.232552528381291 ], [ -73.384605407714844, -13.23145866394043 ], [ -73.384834289550781, -13.230194091796875 ], [ -73.385704040527287, -13.228464126586857 ], [ -73.385749816894531, -13.226730346679574 ], [ -73.386802673339844, -13.224775314330941 ], [ -73.391044616699162, -13.221248626708984 ], [ -73.392959594726506, -13.219136238098145 ], [ -73.39398193359375, -13.218482017517033 ], [ -73.395706176757812, -13.216668128967285 ], [ -73.397743225097599, -13.215389251708984 ], [ -73.398094177246094, -13.215399742126465 ], [ -73.402389526367131, -13.21143913269043 ], [ -73.404396057128849, -13.210294723510742 ], [ -73.406097412109375, -13.209746360778809 ], [ -73.408317565917912, -13.210013389587289 ], [ -73.409225463867188, -13.210651397705078 ], [ -73.409515380859375, -13.211421012878361 ], [ -73.410499572753849, -13.212765693664551 ], [ -73.411590576171875, -13.213288307189885 ], [ -73.412651062011719, -13.213067054748535 ], [ -73.413368225097599, -13.212221145629883 ], [ -73.413589477539062, -13.206322669982853 ], [ -73.413970947265625, -13.203982353210392 ], [ -73.415214538574219, -13.201693534851017 ], [ -73.418350219726449, -13.19768238067627 ], [ -73.418632507324162, -13.196608543395996 ], [ -73.4185791015625, -13.195496559143066 ], [ -73.417968749999886, -13.194153785705566 ], [ -73.416885375976506, -13.193125724792424 ], [ -73.413642883300724, -13.192898750305062 ], [ -73.411140441894531, -13.192483901977539 ], [ -73.410026550292912, -13.192001342773381 ], [ -73.408340454101449, -13.190423011779785 ], [ -73.40771484375, -13.189750671386719 ], [ -73.407058715820312, -13.187100410461426 ], [ -73.406707763671818, -13.186824798583984 ], [ -73.406242370605355, -13.185350418090763 ], [ -73.406257629394531, -13.182781219482422 ], [ -73.406967163085881, -13.180844306945744 ], [ -73.4068603515625, -13.180391311645451 ], [ -73.407325744628906, -13.179706573486271 ], [ -73.407424926757812, -13.179155349731388 ], [ -73.409614562988281, -13.177153587341309 ], [ -73.411636352539062, -13.176018714904671 ], [ -73.412971496582031, -13.174354553222599 ], [ -73.413131713867188, -13.173170089721623 ], [ -73.412857055664062, -13.171272277832031 ], [ -73.412895202636662, -13.167502403259277 ], [ -73.412429809570256, -13.166007041931152 ], [ -73.411743164062443, -13.164901733398381 ], [ -73.411727905273438, -13.162982940673828 ], [ -73.412422180175724, -13.160223007202148 ], [ -73.413185119628849, -13.158484458923283 ], [ -73.416206359863281, -13.156161308288574 ], [ -73.417144775390625, -13.155133247375375 ], [ -73.418548583984375, -13.154393196105957 ], [ -73.419876098632699, -13.152993202209473 ], [ -73.419853210449162, -13.152332305908146 ], [ -73.418899536132756, -13.150553703308105 ], [ -73.419021606445199, -13.148719787597543 ], [ -73.418571472167969, -13.147921562194767 ], [ -73.418525695800724, -13.147180557250977 ], [ -73.420211791992188, -13.142409324645996 ], [ -73.421134948730469, -13.140398979186898 ], [ -73.424339294433537, -13.135753631591797 ], [ -73.425125122070199, -13.13405799865717 ], [ -73.427947998046818, -13.131111145019531 ], [ -73.429145812988281, -13.130647659301644 ], [ -73.429901123046875, -13.130932807922363 ], [ -73.430824279785099, -13.132266998291016 ], [ -73.431030273437443, -13.13444805145258 ], [ -73.431472778320312, -13.135761260986328 ], [ -73.434432983398381, -13.139477729797306 ], [ -73.435691833496037, -13.140008926391602 ], [ -73.437919616699219, -13.140284538268986 ], [ -73.438591003417969, -13.139636993408146 ], [ -73.438972473144531, -13.138790130615178 ], [ -73.440017700195312, -13.132802009582463 ], [ -73.441543579101562, -13.130181312561035 ], [ -73.444068908691349, -13.128316879272461 ], [ -73.447326660156193, -13.127170562744141 ], [ -73.449295043945312, -13.125917434692383 ], [ -73.451774597167969, -13.125460624694824 ], [ -73.452720642089844, -13.124853134155273 ], [ -73.453254699706918, -13.124848365783691 ], [ -73.454154968261719, -13.124182701110726 ], [ -73.457115173339844, -13.123061180114746 ], [ -73.458908081054688, -13.121500015258789 ], [ -73.458900451660156, -13.120125770568791 ], [ -73.457992553710881, -13.118838310241642 ], [ -73.454322814941406, -13.118179321289006 ], [ -73.45330810546875, -13.117498397827148 ], [ -73.452606201171875, -13.116526603698674 ], [ -73.451988220214787, -13.115075111389046 ], [ -73.451873779296875, -13.113238334655762 ], [ -73.451950073242188, -13.112038612365723 ], [ -73.452545166015625, -13.109908103942871 ], [ -73.452308654785156, -13.108172416687012 ], [ -73.450920104980469, -13.106339454650879 ], [ -73.450492858886605, -13.106200218200684 ], [ -73.449409484863224, -13.106925010681039 ], [ -73.448471069335881, -13.106865882873478 ], [ -73.447509765624943, -13.106108665466309 ], [ -73.447006225585938, -13.10527324676508 ], [ -73.447479248046875, -13.103568077087346 ], [ -73.449417114257756, -13.101826667785645 ], [ -73.4512939453125, -13.100996971130314 ], [ -73.454559326171818, -13.100762367248478 ], [ -73.456314086914062, -13.099708557128906 ], [ -73.457237243652287, -13.098320960998535 ], [ -73.458946228027287, -13.09352970123291 ], [ -73.459167480468636, -13.089754104614258 ], [ -73.458648681640625, -13.088161468505746 ], [ -73.458023071288949, -13.087388038635197 ], [ -73.455009460449219, -13.086112022399846 ], [ -73.453880310058594, -13.085159301757812 ], [ -73.453025817871094, -13.083723068237191 ], [ -73.452178955078068, -13.08170223236084 ], [ -73.452095031738224, -13.080772399902344 ], [ -73.452507019042969, -13.079734802246037 ], [ -73.453163146972543, -13.079090118408146 ], [ -73.454200744628849, -13.078823089599609 ], [ -73.455062866210881, -13.079036712646484 ], [ -73.456558227539006, -13.080192565917969 ], [ -73.459190368652344, -13.080858230590763 ], [ -73.463722229003849, -13.080571174621582 ], [ -73.465095520019531, -13.080154418945312 ], [ -73.466102600097599, -13.079264640807992 ], [ -73.467376708984375, -13.076414108276367 ], [ -73.4691162109375, -13.074202537536564 ], [ -73.4696044921875, -13.073246002197209 ], [ -73.469505310058594, -13.07147312164301 ], [ -73.468688964843693, -13.069119453430176 ], [ -73.468887329101506, -13.067765235900822 ], [ -73.469818115234318, -13.067092895507812 ], [ -73.47100830078125, -13.06691932678217 ], [ -73.472373962402344, -13.066122055053711 ], [ -73.474098205566406, -13.063521385192814 ], [ -73.478111267089787, -13.060054779052734 ], [ -73.478858947753906, -13.058882713317871 ], [ -73.479995727539062, -13.057659149169922 ], [ -73.481163024902287, -13.056744575500488 ], [ -73.482772827148438, -13.055976867675781 ], [ -73.4835205078125, -13.055964469909611 ], [ -73.484237670898381, -13.056391716003418 ], [ -73.485221862792969, -13.058062553405705 ], [ -73.4853515625, -13.059797286987305 ], [ -73.484954833984375, -13.061685562133732 ], [ -73.485733032226562, -13.064357757568359 ], [ -73.486732482910043, -13.066505432128849 ], [ -73.488372802734375, -13.067580223083496 ], [ -73.491592407226449, -13.068214416503849 ], [ -73.492965698242188, -13.067934036254883 ], [ -73.493881225585824, -13.066745758056641 ], [ -73.49398040771473, -13.063429832458439 ], [ -73.492691040039062, -13.059479713439828 ], [ -73.492614746093693, -13.056811332702637 ], [ -73.493507385253906, -13.052956581115666 ], [ -73.494155883789006, -13.051950454711857 ], [ -73.494178771972656, -13.051577568054142 ], [ -73.49636077880848, -13.049187660217285 ], [ -73.496475219726562, -13.047902107238713 ], [ -73.495269775390625, -13.045971870422363 ], [ -73.494659423828125, -13.044133186340332 ], [ -73.49383544921875, -13.043115615844727 ], [ -73.493003845214787, -13.042731285095158 ], [ -73.491607666015625, -13.042487144470215 ], [ -73.488975524902344, -13.043105125427189 ], [ -73.487701416015625, -13.042780876159668 ], [ -73.486228942871037, -13.041387557983398 ], [ -73.482742309570312, -13.037400245666504 ], [ -73.481719970703125, -13.035506248474121 ], [ -73.481361389160099, -13.03416633605957 ], [ -73.481300354003906, -13.032789230346623 ], [ -73.481491088867188, -13.030768394470215 ], [ -73.482246398925668, -13.028312683105469 ], [ -73.482192993164062, -13.026459693908635 ], [ -73.481933593749943, -13.025788307189885 ], [ -73.482009887695312, -13.024309158325082 ], [ -73.483268737792912, -13.021341323852482 ], [ -73.483383178710881, -13.01786994934082 ], [ -73.483161926269531, -13.011767387390137 ], [ -73.482391357421875, -13.009024620056152 ], [ -73.479743957519474, -13.004269599914551 ], [ -73.479652404785099, -13.003067016601506 ], [ -73.479904174804688, -13.001505851745549 ], [ -73.481300354003906, -13.000311851501465 ], [ -73.4822998046875, -13.000126838684025 ], [ -73.483993530273438, -13.000200271606445 ], [ -73.484718322753849, -12.999293327331543 ], [ -73.486007690429688, -12.998774528503304 ], [ -73.488685607910156, -12.998285293579102 ], [ -73.490165710449105, -12.998573303222599 ], [ -73.490798950195256, -12.998928070068359 ], [ -73.491622924804688, -13.000075340270939 ], [ -73.492622375488224, -13.002591133117676 ], [ -73.495346069335938, -13.003891944885254 ], [ -73.496910095214787, -13.005554199218693 ], [ -73.498100280761719, -13.007796287536621 ], [ -73.499443054199219, -13.008570671081486 ], [ -73.501708984375, -13.009017944335938 ], [ -73.503097534179631, -13.010210037231445 ], [ -73.503662109375, -13.011162757873535 ], [ -73.505256652832031, -13.012725830078011 ], [ -73.505973815917912, -13.013163566589299 ], [ -73.507369995117188, -13.01335334777832 ], [ -73.511810302734261, -13.011650085449162 ], [ -73.51544189453125, -13.009432792663517 ], [ -73.517547607421875, -13.008972167968693 ], [ -73.521194458007812, -13.0091552734375 ], [ -73.52215576171875, -13.008773803710938 ], [ -73.523216247558594, -13.007732391357365 ], [ -73.524185180664006, -13.006153106689453 ], [ -73.525169372558594, -13.003347396850586 ], [ -73.524543762207031, -13.001456260681152 ], [ -73.523231506347599, -12.999910354614258 ], [ -73.522514343261719, -12.998109817504883 ], [ -73.52252197265625, -12.993777275085449 ], [ -73.522842407226506, -12.992749214172363 ], [ -73.523643493652344, -12.991994857788086 ], [ -73.524101257324162, -12.990695953369027 ], [ -73.525382995605469, -12.989474296569824 ], [ -73.531410217285156, -12.98635196685791 ], [ -73.532264709472656, -12.985274314880371 ], [ -73.53216552734375, -12.984439849853516 ], [ -73.531715393066349, -12.983741760253906 ], [ -73.529869079589844, -12.982048988342285 ], [ -73.52687835693348, -12.980161666870117 ], [ -73.524520874023438, -12.979289054870549 ], [ -73.519813537597599, -12.978115081787109 ], [ -73.517745971679688, -12.976855278015137 ], [ -73.514991760253906, -12.975720405578556 ], [ -73.513557434082031, -12.97453498840332 ], [ -73.510902404785156, -12.971682548522892 ], [ -73.509300231933537, -12.968825340270939 ], [ -73.509490966796818, -12.966006278991699 ], [ -73.510299682617188, -12.964056968688908 ], [ -73.512283325195256, -12.962325096130314 ], [ -73.512809753417969, -12.961108207702523 ], [ -73.513748168945312, -12.955434799194279 ], [ -73.513465881347656, -12.952884674072266 ], [ -73.512298583984375, -12.95057201385498 ], [ -73.511093139648438, -12.94929122924799 ], [ -73.508346557617131, -12.948445320129338 ], [ -73.505119323730412, -12.947963714599553 ], [ -73.503944396972656, -12.947397232055664 ], [ -73.503181457519531, -12.94670581817627 ], [ -73.502151489257756, -12.943950653076115 ], [ -73.499778747558537, -12.941081047057992 ], [ -73.498985290527344, -12.939324378967285 ], [ -73.497795104980355, -12.938150405883789 ], [ -73.497795104980355, -12.934931755065918 ], [ -73.498580932617188, -12.932847023010254 ], [ -73.4991455078125, -12.931912422180176 ], [ -73.499877929687443, -12.931344985961914 ], [ -73.504074096679631, -12.930882453918457 ], [ -73.507186889648438, -12.931385993957463 ], [ -73.511207580566349, -12.932621002197266 ], [ -73.514869689941406, -12.934026718139648 ], [ -73.520484924316349, -12.938278198242188 ], [ -73.522064208984375, -12.939093589782715 ], [ -73.523445129394418, -12.939337730407658 ], [ -73.524452209472656, -12.939214706420842 ], [ -73.525787353515625, -12.938598632812443 ], [ -73.527732849121037, -12.937318801879826 ], [ -73.529724121093693, -12.93551063537592 ], [ -73.532455444335938, -12.93156623840332 ], [ -73.535568237304688, -12.925818443298226 ], [ -73.535774230957031, -12.923260688781681 ], [ -73.535659790039062, -12.920131683349609 ], [ -73.534820556640625, -12.916881561279183 ], [ -73.533897399902344, -12.915438652038574 ], [ -73.526771545410099, -12.909036636352539 ], [ -73.524192810058537, -12.905876159667912 ], [ -73.524085998535099, -12.905258178710938 ], [ -73.524345397949219, -12.90407657623291 ], [ -73.525291442871094, -12.901388168334961 ], [ -73.527542114257756, -12.898823738098145 ], [ -73.532882690429631, -12.893609046935978 ], [ -73.538810729980469, -12.889458656311035 ], [ -73.540351867675781, -12.888038635253906 ], [ -73.545127868652344, -12.884366989135742 ], [ -73.548042297363224, -12.881393432617131 ], [ -73.550704956054631, -12.878189086914062 ], [ -73.555229187011719, -12.874062538146916 ], [ -73.557815551757812, -12.872108459472656 ], [ -73.565559387207031, -12.867015838623047 ], [ -73.569107055664006, -12.864032745361271 ], [ -73.571830749511719, -12.862438201904297 ], [ -73.573631286621094, -12.861662864685059 ], [ -73.575637817382812, -12.861231803893986 ], [ -73.581039428710881, -12.860960960388127 ], [ -73.584342956542969, -12.859686851501465 ], [ -73.585433959960824, -12.858824729919434 ], [ -73.586105346679574, -12.857932090759277 ], [ -73.587570190429688, -12.854759216308537 ], [ -73.588623046875, -12.853245735168457 ], [ -73.591896057128849, -12.847261428833008 ], [ -73.592460632324162, -12.845800399780273 ], [ -73.593513488769474, -12.844167709350586 ], [ -73.593635559081918, -12.842080116271973 ], [ -73.593421936035099, -12.838462829589787 ], [ -73.590805053710938, -12.833070755004826 ], [ -73.5908203125, -12.831525802612305 ], [ -73.590774536132699, -12.829771041870117 ], [ -73.592803955078125, -12.824131965637207 ], [ -73.595588684082031, -12.819799423217773 ], [ -73.598716735839844, -12.816109657287598 ], [ -73.605064392089787, -12.811070442199707 ], [ -73.606338500976562, -12.810588836669922 ], [ -73.607177734374886, -12.810004234313965 ], [ -73.610244750976562, -12.809226989746094 ], [ -73.613777160644531, -12.809489250183105 ], [ -73.615074157714787, -12.809370040893555 ], [ -73.617599487304688, -12.808171272277775 ], [ -73.619110107421875, -12.80668830871582 ], [ -73.619987487792969, -12.802262306213322 ], [ -73.620910644531136, -12.799463272094727 ], [ -73.625541687011719, -12.792789459228459 ], [ -73.629104614257756, -12.788269996643066 ], [ -73.630126953124943, -12.784839630126953 ], [ -73.630462646484375, -12.781912803649789 ], [ -73.630264282226562, -12.779542922973633 ], [ -73.629158020019531, -12.776399612426758 ], [ -73.627571105956974, -12.772966384887695 ], [ -73.626815795898381, -12.770305633544922 ], [ -73.626899719238224, -12.767645835876465 ], [ -73.627876281738168, -12.765039443969727 ], [ -73.6287841796875, -12.763687133789006 ], [ -73.629531860351562, -12.762985229492188 ], [ -73.63751220703125, -12.75669002532959 ], [ -73.646003723144531, -12.746337890624943 ], [ -73.652557373046818, -12.740875244140625 ], [ -73.658447265625, -12.737016677856445 ], [ -73.659553527832031, -12.736027717590332 ], [ -73.660789489746094, -12.733974456787109 ], [ -73.661552429199219, -12.731608390808105 ], [ -73.661544799804688, -12.729855537414494 ], [ -73.660797119140625, -12.728178024291935 ], [ -73.65966796875, -12.726733207702637 ], [ -73.659042358398381, -12.725419998168888 ], [ -73.658912658691406, -12.724037170410099 ], [ -73.659103393554688, -12.723251342773381 ], [ -73.663864135742188, -12.717343330383301 ], [ -73.666122436523438, -12.712881088256836 ], [ -73.667419433593693, -12.711116790771484 ], [ -73.672927856445312, -12.70573616027832 ], [ -73.676742553710938, -12.702647209167424 ], [ -73.680435180664062, -12.698749542236271 ], [ -73.68251800537098, -12.694836616516113 ], [ -73.683204650878906, -12.692831039428711 ], [ -73.683601379394531, -12.690584182739201 ], [ -73.68471527099598, -12.688265800476074 ], [ -73.686225891113224, -12.687026023864746 ], [ -73.687217712402344, -12.686740875244084 ], [ -73.689460754394474, -12.687828063964844 ], [ -73.691520690917969, -12.688398361205998 ], [ -73.694633483886605, -12.688090324401855 ], [ -73.696365356445312, -12.687003135681096 ], [ -73.698959350585938, -12.684638023376351 ], [ -73.699897766113281, -12.683367729186955 ], [ -73.700759887695312, -12.680658340454102 ], [ -73.700653076171875, -12.677811622619572 ], [ -73.699760437011662, -12.674707412719727 ], [ -73.699790954589844, -12.67387580871582 ], [ -73.700241088867131, -12.672765731811467 ], [ -73.702812194824162, -12.670228958129883 ], [ -73.704063415527287, -12.669537544250488 ], [ -73.709808349609375, -12.668435096740666 ], [ -73.712509155273438, -12.667672157287541 ], [ -73.716484069824219, -12.663948059081974 ], [ -73.7188720703125, -12.660243988036996 ], [ -73.720489501953125, -12.657233238220158 ], [ -73.723785400390568, -12.649337768554631 ], [ -73.725616455078068, -12.646669387817383 ], [ -73.728828430175781, -12.640962600708008 ], [ -73.730735778808594, -12.638837814330941 ], [ -73.731697082519474, -12.638452529907113 ], [ -73.733932495117188, -12.638607978820744 ], [ -73.737030029296875, -12.639617919921818 ], [ -73.739036560058537, -12.640583992004395 ], [ -73.739990234374943, -12.641828536987305 ], [ -73.741142272949162, -12.645949363708496 ], [ -73.741783142089844, -12.649394989013672 ], [ -73.742507934570199, -12.650872230529785 ], [ -73.744003295898381, -12.652118682861271 ], [ -73.746124267578068, -12.652380943298283 ], [ -73.747528076171818, -12.652859687805176 ], [ -73.750823974609375, -12.655268669128418 ], [ -73.752792358398381, -12.655847549438477 ], [ -73.753997802734375, -12.655891418457031 ], [ -73.760635375976562, -12.654048919677621 ], [ -73.763862609863224, -12.653568267822152 ], [ -73.766403198242188, -12.652430534362793 ], [ -73.767341613769531, -12.651730537414551 ], [ -73.770774841308594, -12.65008354187006 ], [ -73.772666931152344, -12.648320198059025 ], [ -73.774703979492131, -12.645906448364258 ], [ -73.776420593261662, -12.642740249633732 ], [ -73.777587890624943, -12.63847827911377 ], [ -73.778236389160099, -12.636954307556039 ], [ -73.782600402832031, -12.630880355834961 ], [ -73.784553527831974, -12.627732276916447 ], [ -73.786636352539006, -12.625264167785588 ], [ -73.7890625, -12.622845649719238 ], [ -73.790756225585881, -12.621568679809513 ], [ -73.79620361328125, -12.619467735290471 ], [ -73.798713684082031, -12.618041038513127 ], [ -73.801284790039062, -12.615784645080566 ], [ -73.802452087402344, -12.614019393920842 ], [ -73.803421020507756, -12.611725807189828 ], [ -73.803642272949219, -12.610369682312012 ], [ -73.803474426269531, -12.608903884887695 ], [ -73.802688598632812, -12.607348442077637 ], [ -73.802413940429688, -12.605300903320256 ], [ -73.803207397460938, -12.600314140319767 ], [ -73.803756713867188, -12.598744392394963 ], [ -73.807739257812386, -12.59285926818842 ], [ -73.809028625488281, -12.590186119079533 ], [ -73.809333801269474, -12.588950157165471 ], [ -73.8092041015625, -12.587846755981445 ], [ -73.808815002441406, -12.587113380432072 ], [ -73.807128906249943, -12.58538818359375 ], [ -73.8052978515625, -12.584112167358398 ], [ -73.80426025390625, -12.582470893859863 ], [ -73.803665161132812, -12.579694747924748 ], [ -73.803787231445312, -12.57757663726801 ], [ -73.804122924804688, -12.576142311096135 ], [ -73.805252075195256, -12.574357032775879 ], [ -73.809074401855355, -12.5717515945434 ], [ -73.811599731445312, -12.568923950195312 ], [ -73.814598083496037, -12.563332557678223 ], [ -73.814872741699162, -12.562455177307129 ], [ -73.815330505371037, -12.561881065368596 ], [ -73.817543029785099, -12.55715179443348 ], [ -73.820404052734318, -12.552302360534668 ], [ -73.823997497558594, -12.542262077331543 ], [ -73.825263977050724, -12.536245346069336 ], [ -73.826286315917969, -12.533982276916447 ], [ -73.829429626464844, -12.531691551208496 ], [ -73.831573486328068, -12.530796051025334 ], [ -73.832389831542969, -12.530843734741154 ], [ -73.833557128906193, -12.530305862426644 ], [ -73.835090637206974, -12.530241966247559 ], [ -73.835685729980469, -12.530405998229924 ], [ -73.837318420410156, -12.531778335571289 ], [ -73.8402099609375, -12.535162925720158 ], [ -73.842521667480412, -12.537434577941781 ], [ -73.845108032226506, -12.538901329040471 ], [ -73.847755432128849, -12.539444923400879 ], [ -73.849533081054688, -12.5390367507934 ], [ -73.851730346679688, -12.53732967376709 ], [ -73.854560852050668, -12.534149169921818 ], [ -73.85614013671875, -12.531309127807617 ], [ -73.85614013671875, -12.529282569885254 ], [ -73.855125427246037, -12.525850296020508 ], [ -73.855987548828068, -12.519473075866699 ], [ -73.856056213378849, -12.512574195861816 ], [ -73.855621337890625, -12.510590553283691 ], [ -73.855018615722599, -12.509043693542424 ], [ -73.854484558105469, -12.506149291992188 ], [ -73.85247802734375, -12.499711036682129 ], [ -73.853256225585938, -12.496341705322266 ], [ -73.853080749511719, -12.49471473693842 ], [ -73.856086730956918, -12.488642692565861 ], [ -73.856605529785156, -12.485616683959961 ], [ -73.85723876953125, -12.48400974273676 ], [ -73.858306884765625, -12.482115745544434 ], [ -73.858802795410156, -12.480010032653809 ], [ -73.862716674804688, -12.47416877746582 ], [ -73.864112854003906, -12.472610473632812 ], [ -73.865676879882812, -12.469434738159123 ], [ -73.867126464843693, -12.467803001403809 ], [ -73.869064331054688, -12.464113235473576 ], [ -73.870033264160156, -12.461478233337289 ], [ -73.870170593261662, -12.459498405456543 ], [ -73.870765686035099, -12.457972526550293 ], [ -73.873947143554688, -12.45311164855957 ], [ -73.87554931640625, -12.450260162353516 ], [ -73.876174926757756, -12.447443008422852 ], [ -73.876029968261719, -12.444640159606934 ], [ -73.876258850097656, -12.443121910095215 ], [ -73.876884460449219, -12.441226005554142 ], [ -73.878761291503849, -12.438367843627873 ], [ -73.878715515136719, -12.43701171875 ], [ -73.879508972167969, -12.435585021972656 ], [ -73.879501342773438, -12.43405818939209 ], [ -73.880950927734318, -12.430736541748047 ], [ -73.881996154785099, -12.427169799804574 ], [ -73.882400512695256, -12.424576759338379 ], [ -73.882385253906193, -12.421592712402344 ], [ -73.88214111328125, -12.420531272888127 ], [ -73.882614135742188, -12.419460296630859 ], [ -73.882797241210938, -12.418375015258789 ], [ -73.884513854980469, -12.417043685913086 ], [ -73.8892822265625, -12.411405563354492 ], [ -73.89227294921875, -12.409816741943359 ], [ -73.895256042480412, -12.406863212585449 ], [ -73.899330139160156, -12.404801368713379 ], [ -73.903938293456974, -12.39923095703125 ], [ -73.905578613281193, -12.396607398986816 ], [ -73.907257080078125, -12.395212173461914 ], [ -73.909896850585938, -12.392065048217773 ], [ -73.911216735839844, -12.389721870422363 ], [ -73.913276672363224, -12.388890266418457 ], [ -73.917320251464844, -12.388018608093205 ], [ -73.922554016113224, -12.388121604919377 ], [ -73.924385070800781, -12.386935234069824 ], [ -73.925712585449219, -12.385195732116699 ], [ -73.926773071289062, -12.384185791015625 ], [ -73.92962646484375, -12.382550239562931 ], [ -73.933547973632812, -12.377016067504826 ], [ -73.936096191406193, -12.372721672058105 ], [ -73.937675476074219, -12.370730400085449 ], [ -73.940528869628906, -12.366193771362305 ], [ -73.941307067871094, -12.363792419433594 ], [ -73.943115234375, -12.360770225524789 ], [ -73.944488525390568, -12.355043411254883 ], [ -73.946907043457031, -12.351824760437012 ], [ -73.947769165039062, -12.351385116577092 ], [ -73.949714660644474, -12.351200103759766 ], [ -73.954017639160099, -12.351616859436035 ], [ -73.957923889160099, -12.352289199829102 ], [ -73.959083557128793, -12.352131843566838 ], [ -73.961944580078011, -12.350680351257324 ], [ -73.969177246093693, -12.345742225646916 ], [ -73.970008850097656, -12.344834327697754 ], [ -73.970230102539006, -12.343558311462402 ], [ -73.970863342285156, -12.342058181762695 ], [ -73.97090911865223, -12.341156005859375 ], [ -73.970619201660099, -12.339165687560921 ], [ -73.969841003417912, -12.337771415710392 ], [ -73.969680786132812, -12.335691452026367 ], [ -73.968948364257812, -12.333173751830998 ], [ -73.968536376953125, -12.330036163330078 ], [ -73.968948364257812, -12.328372001647949 ], [ -73.970100402832031, -12.326523780822754 ], [ -73.970306396484318, -12.325665473937988 ], [ -73.969940185546818, -12.320962905883732 ], [ -73.969024658203125, -12.318227767944336 ], [ -73.969627380371094, -12.310897827148381 ], [ -73.970039367675724, -12.311017036437931 ], [ -73.969818115234375, -12.307680130004883 ], [ -73.969917297363281, -12.304694175720101 ], [ -73.969497680664062, -12.301836013793945 ], [ -73.969642639160099, -12.300399780273381 ], [ -73.969291687011605, -12.297892570495549 ], [ -73.96942138671875, -12.290488243103027 ], [ -73.971061706542969, -12.283623695373535 ], [ -73.970832824707031, -12.281932830810547 ], [ -73.971099853515511, -12.277159690856934 ], [ -73.971534729003906, -12.274655342102051 ], [ -73.971305847167969, -12.273053169250431 ], [ -73.971908569335938, -12.269296646118164 ], [ -73.971977233886719, -12.267326354980412 ], [ -73.972709655761662, -12.263594627380371 ], [ -73.974624633789006, -12.25718975067133 ], [ -73.976402282714844, -12.252919197082463 ], [ -73.980995178222599, -12.246166229248047 ], [ -73.982391357421875, -12.244605064392033 ], [ -73.984992980956974, -12.24245643615717 ], [ -73.987266540527344, -12.239505767822266 ], [ -73.988395690917969, -12.238742828369141 ], [ -73.990921020507756, -12.236356735229435 ], [ -73.992500305175781, -12.234490394592285 ], [ -73.995277404785156, -12.233134269714299 ], [ -73.995857238769531, -12.232855796813908 ], [ -73.994415283203125, -12.232406616210881 ], [ -73.993003845214787, -12.231534004211426 ], [ -73.989356994628906, -12.228544235229435 ], [ -73.986518859863224, -12.227134704589844 ], [ -73.9844970703125, -12.226412773132324 ], [ -73.98284912109375, -12.226161956787109 ], [ -73.980888366699162, -12.226192474365178 ], [ -73.975067138671875, -12.2273912429809 ], [ -73.973396301269531, -12.227239608764648 ], [ -73.971748352050724, -12.226591110229492 ], [ -73.970977783203068, -12.225920677184945 ], [ -73.970214843749943, -12.224541664123535 ], [ -73.969718933105469, -12.221268653869572 ], [ -73.968757629394531, -12.219182968139592 ], [ -73.962471008300781, -12.212631225585938 ], [ -73.961196899414062, -12.211867332458439 ], [ -73.959999084472656, -12.211673736572266 ], [ -73.959297180175781, -12.212268829345646 ], [ -73.958793640136662, -12.214199066162053 ], [ -73.956954956054631, -12.215315818786564 ], [ -73.953681945800781, -12.216334342956543 ], [ -73.952812194824219, -12.217280387878418 ], [ -73.951591491699219, -12.219345092773381 ], [ -73.950180053710881, -12.220396041870117 ], [ -73.942672729492131, -12.223116874694767 ], [ -73.937774658203125, -12.223660469055119 ], [ -73.933403015136662, -12.225250244140568 ], [ -73.928260803222599, -12.226478576660099 ], [ -73.927101135253849, -12.227070808410645 ], [ -73.925331115722656, -12.228836059570312 ], [ -73.923446655273438, -12.230331420898324 ], [ -73.922103881835938, -12.230758666992188 ], [ -73.919624328613281, -12.231037139892578 ], [ -73.917892456054688, -12.232839584350529 ], [ -73.91619873046875, -12.233793258666935 ], [ -73.915359497070312, -12.235307693481388 ], [ -73.914009094238281, -12.236840248107796 ], [ -73.911094665527287, -12.2389621734618 ], [ -73.906959533691406, -12.245074272155705 ], [ -73.905715942382812, -12.249788284301758 ], [ -73.904182434082031, -12.258201599121094 ], [ -73.903663635253849, -12.259791374206543 ], [ -73.902816772460824, -12.260971069335938 ], [ -73.899818420410156, -12.26433277130127 ], [ -73.891685485839844, -12.272608757019043 ], [ -73.885536193847599, -12.2779283523559 ], [ -73.880424499511719, -12.28527641296381 ], [ -73.878746032714844, -12.287238121032601 ], [ -73.875221252441349, -12.290507316589355 ], [ -73.873748779296875, -12.29217529296875 ], [ -73.870986938476562, -12.292849540710392 ], [ -73.869857788085938, -12.294426918029728 ], [ -73.868217468261719, -12.296058654785156 ], [ -73.867233276367131, -12.29833984375 ], [ -73.866485595703011, -12.299160957336426 ], [ -73.862640380859318, -12.302265167236328 ], [ -73.858383178710938, -12.305110931396484 ], [ -73.856834411621037, -12.306570053100529 ], [ -73.856544494628849, -12.307201385498047 ], [ -73.856697082519531, -12.308810234069824 ], [ -73.858718872070312, -12.311217308044434 ], [ -73.859077453613281, -12.312935829162541 ], [ -73.858673095703125, -12.313928604125977 ], [ -73.856475830078125, -12.316558837890625 ], [ -73.856170654296818, -12.319034576416016 ], [ -73.855773925781193, -12.320262908935433 ], [ -73.85400390625, -12.322117805480957 ], [ -73.850456237792912, -12.322881698608285 ], [ -73.848533630371037, -12.323993682861328 ], [ -73.847763061523381, -12.325039863586369 ], [ -73.846199035644531, -12.329172134399357 ], [ -73.844955444335938, -12.331402778625488 ], [ -73.843551635742188, -12.33299732208252 ], [ -73.840576171875, -12.335026741027832 ], [ -73.839782714843636, -12.33580207824707 ], [ -73.837562561035099, -12.340249061584473 ], [ -73.836959838867188, -12.342571258544865 ], [ -73.836654663085938, -12.34540939331049 ], [ -73.835983276367188, -12.347213745117131 ], [ -73.834320068359318, -12.350199699401855 ], [ -73.830429077148381, -12.355581283569279 ], [ -73.829208374023438, -12.358359336852971 ], [ -73.82781982421875, -12.360542297363281 ], [ -73.8270263671875, -12.36365795135498 ], [ -73.826118469238224, -12.365243911743164 ], [ -73.824661254882812, -12.366214752197209 ], [ -73.818046569824219, -12.367669105529728 ], [ -73.816123962402287, -12.367308616638184 ], [ -73.813301086425781, -12.366111755371037 ], [ -73.811576843261719, -12.364856719970646 ], [ -73.808799743652344, -12.362121582031193 ], [ -73.80645751953125, -12.36097335815424 ], [ -73.804244995117188, -12.361037254333439 ], [ -73.802001953124943, -12.362354278564453 ], [ -73.798118591308594, -12.366442680358887 ], [ -73.797233581542912, -12.368264198303223 ], [ -73.797576904296875, -12.370246887207031 ], [ -73.800865173339787, -12.375125885009766 ], [ -73.801467895507812, -12.376564979553223 ], [ -73.801353454589844, -12.380327224731445 ], [ -73.800186157226506, -12.382308006286564 ], [ -73.798042297363281, -12.38432502746582 ], [ -73.794036865234375, -12.386670112609863 ], [ -73.792083740234318, -12.387265205383301 ], [ -73.788871765136719, -12.38779354095459 ], [ -73.785247802734375, -12.387585639953556 ], [ -73.781578063964787, -12.3893527984618 ], [ -73.777442932128906, -12.390435218811035 ], [ -73.775367736816406, -12.391837120056096 ], [ -73.771636962890625, -12.395561218261719 ], [ -73.7694091796875, -12.39738941192627 ], [ -73.767585754394418, -12.400905609130803 ], [ -73.766326904296818, -12.402491569519043 ], [ -73.765022277832031, -12.403527259826603 ], [ -73.762039184570256, -12.40503978729248 ], [ -73.760452270507812, -12.406841278076115 ], [ -73.759651184081974, -12.409757614135685 ], [ -73.759635925292912, -12.413255691528263 ], [ -73.760009765625, -12.415519714355412 ], [ -73.760009765625, -12.417632102966309 ], [ -73.758865356445312, -12.420342445373535 ], [ -73.757575988769418, -12.421672821044922 ], [ -73.752067565917969, -12.425588607788029 ], [ -73.746673583984318, -12.42829418182373 ], [ -73.745460510253793, -12.428442001342717 ], [ -73.744476318359318, -12.427912712097168 ], [ -73.743583679199219, -12.427103996276855 ], [ -73.741790771484375, -12.42430305480957 ], [ -73.741775512695312, -12.419178009033203 ], [ -73.740730285644531, -12.417201995849609 ], [ -73.739173889160156, -12.415260314941406 ], [ -73.738914489746094, -12.413992881774902 ], [ -73.738914489746094, -12.412328720092717 ], [ -73.737762451171875, -12.409721374511719 ], [ -73.737968444824219, -12.408076286315918 ], [ -73.73919677734375, -12.404808044433594 ], [ -73.739837646484261, -12.4008531570434 ], [ -73.739761352539062, -12.398083686828556 ], [ -73.738929748535156, -12.395171165466252 ], [ -73.737617492675724, -12.392830848693791 ], [ -73.736373901367131, -12.391223907470703 ], [ -73.732231140136719, -12.388557434082031 ], [ -73.726791381835938, -12.385945320129395 ], [ -73.72564697265625, -12.384718894958496 ], [ -73.725372314453125, -12.384138107299805 ], [ -73.725257873535156, -12.3823947906493 ], [ -73.725624084472543, -12.378542900085449 ], [ -73.726303100585938, -12.37692928314209 ], [ -73.727607727050724, -12.374918937683105 ], [ -73.728050231933594, -12.373593330383187 ], [ -73.728363037109318, -12.372154235839844 ], [ -73.728340148925781, -12.369951248168945 ], [ -73.727424621581974, -12.367751121520996 ], [ -73.722831726074162, -12.361716270446721 ], [ -73.721618652343636, -12.358761787414551 ], [ -73.72066497802723, -12.355402946472111 ], [ -73.718994140625, -12.353533744812012 ], [ -73.717948913574219, -12.352911949157658 ], [ -73.71661376953125, -12.352492332458496 ], [ -73.712554931640568, -12.351965904235783 ], [ -73.711486816406193, -12.351616859436035 ], [ -73.707214355468693, -12.351596832275391 ], [ -73.706298828125, -12.350960731506291 ], [ -73.705429077148438, -12.349435806274414 ], [ -73.703163146972656, -12.346630096435547 ], [ -73.702186584472656, -12.345957756042424 ], [ -73.700180053710938, -12.345169067382812 ], [ -73.697334289550781, -12.34471416473383 ], [ -73.6959228515625, -12.344256401061955 ], [ -73.693862915039006, -12.344084739685059 ], [ -73.690162658691406, -12.345276832580566 ], [ -73.68768310546875, -12.34572601318348 ], [ -73.685264587402287, -12.34584903717041 ], [ -73.680816650390625, -12.345559120178109 ], [ -73.679229736328125, -12.346117973327637 ], [ -73.677505493164062, -12.347213745117131 ], [ -73.676208496093693, -12.347344398498478 ], [ -73.675384521484375, -12.34716606140131 ], [ -73.674568176269474, -12.346548080444336 ], [ -73.673103332519531, -12.344416618347168 ], [ -73.672439575195312, -12.343788146972599 ], [ -73.669090270996094, -12.342144966125488 ], [ -73.658767700195256, -12.342138290405217 ], [ -73.658058166503906, -12.342364311218148 ], [ -73.657341003417855, -12.343291282653752 ], [ -73.657318115234318, -12.344584465026855 ], [ -73.658264160156193, -12.346269607543945 ], [ -73.658859252929631, -12.346851348876896 ], [ -73.659896850585881, -12.348910331726017 ], [ -73.66015625, -12.350680351257324 ], [ -73.659690856933537, -12.351783752441406 ], [ -73.656585693359375, -12.354957580566349 ], [ -73.655426025390568, -12.356627464294434 ], [ -73.654647827148381, -12.358792304992619 ], [ -73.654304504394531, -12.36242485046381 ], [ -73.653480529785156, -12.363559722900277 ], [ -73.651802062988224, -12.365032196044922 ], [ -73.650505065917969, -12.365596771240234 ], [ -73.650177001953068, -12.365740776062012 ], [ -73.648979187011719, -12.365777015685921 ], [ -73.644859313964844, -12.363436698913461 ], [ -73.643096923828068, -12.36348915100092 ], [ -73.641395568847599, -12.364755630493164 ], [ -73.640403747558594, -12.366089820861816 ], [ -73.639991760253906, -12.369820594787598 ], [ -73.638771057128906, -12.371063232421818 ], [ -73.638175964355355, -12.371311187744141 ], [ -73.635322570800781, -12.371206283569279 ], [ -73.634346008300724, -12.371417999267578 ], [ -73.63018798828125, -12.37414646148676 ], [ -73.628379821777344, -12.37488937377924 ], [ -73.622459411621094, -12.375473022460881 ], [ -73.620368957519531, -12.375967025756779 ], [ -73.614639282226562, -12.378072738647404 ], [ -73.610870361328068, -12.37988090515131 ], [ -73.608200073242131, -12.38201904296875 ], [ -73.606498718261662, -12.38404464721674 ], [ -73.604873657226506, -12.38714408874506 ], [ -73.604858398437443, -12.387507438659668 ], [ -73.604515075683594, -12.387829780578613 ], [ -73.604003906249943, -12.389592170715275 ], [ -73.602684020996037, -12.392124176025391 ], [ -73.600212097167912, -12.394488334655762 ], [ -73.598060607910156, -12.395752906799316 ], [ -73.594718933105469, -12.39550876617426 ], [ -73.591217041015568, -12.393610000610295 ], [ -73.589309692382756, -12.392120361328125 ], [ -73.588226318359375, -12.390973091125488 ], [ -73.587173461914062, -12.388155937194824 ], [ -73.587974548339787, -12.387021064758244 ], [ -73.588325500488281, -12.385884284973088 ], [ -73.589416503906193, -12.384172439575138 ], [ -73.589706420898381, -12.383296966552621 ], [ -73.589622497558537, -12.379067420959473 ], [ -73.588218688964844, -12.371762275695744 ], [ -73.588111877441406, -12.368461608886719 ], [ -73.58880615234375, -12.366070747375488 ], [ -73.590827941894531, -12.362654685974064 ], [ -73.591018676757812, -12.361677169799748 ], [ -73.59088134765625, -12.357349395751896 ], [ -73.589836120605469, -12.352540016174316 ], [ -73.589584350585938, -12.349522590637207 ], [ -73.589813232421818, -12.346493721008244 ], [ -73.590866088867131, -12.34051322937006 ], [ -73.590667724609318, -12.334998130798283 ], [ -73.590415954589844, -12.332527160644474 ], [ -73.58758544921875, -12.315771102905273 ], [ -73.58746337890625, -12.310897827148381 ], [ -73.587570190429688, -12.310230255126896 ], [ -73.589530944824162, -12.306578636169377 ], [ -73.5906982421875, -12.303475379943791 ], [ -73.590797424316406, -12.300445556640625 ], [ -73.590454101562443, -12.299322128295842 ], [ -73.588668823242131, -12.297705650329533 ], [ -73.587188720703125, -12.297127723693848 ], [ -73.582733154296818, -12.297186851501465 ], [ -73.581886291503849, -12.296765327453613 ], [ -73.5811767578125, -12.296047210693359 ], [ -73.580390930175781, -12.294578552246037 ], [ -73.580108642578125, -12.292580604553223 ], [ -73.579460144042969, -12.290363311767578 ], [ -73.579513549804631, -12.287252426147461 ], [ -73.5780029296875, -12.284497261047306 ], [ -73.578079223632756, -12.281285285949707 ], [ -73.577392578124943, -12.279765129089299 ], [ -73.575996398925668, -12.27803993225092 ], [ -73.574821472167912, -12.277300834655705 ], [ -73.572662353515625, -12.276738166809082 ], [ -73.570198059082031, -12.276736259460392 ], [ -73.568580627441406, -12.277169227600041 ], [ -73.566795349121094, -12.277358055114746 ], [ -73.566192626953125, -12.277237892150822 ], [ -73.564842224121094, -12.27638053894043 ], [ -73.561302185058537, -12.276272773742676 ], [ -73.559989929199219, -12.275850296020451 ], [ -73.559387207031193, -12.275039672851506 ], [ -73.559463500976506, -12.270258903503361 ], [ -73.558998107910099, -12.268104553222656 ], [ -73.557647705078068, -12.266589164733887 ], [ -73.553375244140568, -12.263330459594727 ], [ -73.551704406738281, -12.262336730956974 ], [ -73.550415039062443, -12.262102127075138 ], [ -73.547996520996094, -12.262163162231445 ], [ -73.544525146484261, -12.260895729064941 ], [ -73.542655944824219, -12.261006355285645 ], [ -73.540985107421818, -12.261825561523438 ], [ -73.539894104003906, -12.261831283569279 ], [ -73.538093566894531, -12.260364532470646 ], [ -73.536231994628906, -12.259939193725472 ], [ -73.535133361816406, -12.259237289428654 ], [ -73.532257080078125, -12.254829406738224 ], [ -73.531013488769531, -12.253591537475586 ], [ -73.529380798339844, -12.252915382385254 ], [ -73.526718139648438, -12.25250244140625 ], [ -73.524436950683594, -12.250482559204045 ], [ -73.523437499999943, -12.249990463256779 ], [ -73.521591186523438, -12.249318122863713 ], [ -73.518058776855469, -12.249421119689885 ], [ -73.516609191894531, -12.249762535095101 ], [ -73.513969421386662, -12.250898361206055 ], [ -73.509330749511605, -12.254856109619141 ], [ -73.507957458496094, -12.255023002624512 ], [ -73.505630493164062, -12.254801750183049 ], [ -73.502288818359375, -12.254846572875977 ], [ -73.501113891601506, -12.254316329955941 ], [ -73.499610900878906, -12.252907752990723 ], [ -73.490196228027344, -12.248516082763615 ], [ -73.485687255859375, -12.246076583862248 ], [ -73.473236083984375, -12.238524436950684 ], [ -73.47265625, -12.238014221191406 ], [ -73.472724914550781, -12.236963272094727 ], [ -73.472343444824219, -12.235668182372933 ], [ -73.472633361816406, -12.234062194824219 ], [ -73.472572326660156, -12.231891632080078 ], [ -73.473007202148438, -12.229217529296875 ], [ -73.472831726074219, -12.226180076599064 ], [ -73.472236633300668, -12.225038528442269 ], [ -73.469978332519531, -12.223244667053223 ], [ -73.469360351562443, -12.222501754760742 ], [ -73.469062805175724, -12.220870018005371 ], [ -73.46771240234375, -12.217032432556096 ], [ -73.467361450195256, -12.213431358337402 ], [ -73.466529846191406, -12.210678100585881 ], [ -73.465255737304631, -12.204097747802678 ], [ -73.463180541992188, -12.199276924133301 ], [ -73.460105895996037, -12.191124916076603 ], [ -73.459114074707031, -12.189201354980412 ], [ -73.455322265624943, -12.183647155761719 ], [ -73.453590393066406, -12.179962158203068 ], [ -73.449592590332031, -12.173192977905273 ], [ -73.439437866210938, -12.163509368896484 ], [ -73.437538146972656, -12.162085533142033 ], [ -73.431617736816406, -12.15899753570551 ], [ -73.421791076660156, -12.152831077575627 ], [ -73.41616058349598, -12.150141716003418 ], [ -73.408050537109261, -12.14739990234375 ], [ -73.395744323730412, -12.145304679870549 ], [ -73.390327453613281, -12.145029067993164 ], [ -73.384277343749943, -12.143989562988224 ], [ -73.380844116210881, -12.142985343933105 ], [ -73.377532958984261, -12.141040802001896 ], [ -73.376014709472656, -12.140389442443791 ], [ -73.370742797851506, -12.139174461364746 ], [ -73.366813659667969, -12.139169692993107 ], [ -73.361564636230469, -12.140104293823242 ], [ -73.354698181152344, -12.142921447753906 ], [ -73.353797912597656, -12.143088340759277 ], [ -73.352386474609375, -12.142790794372559 ], [ -73.351181030273381, -12.141924858093262 ], [ -73.349838256835938, -12.139989852905273 ], [ -73.349601745605469, -12.139402389526367 ], [ -73.349571228027287, -12.137232780456543 ], [ -73.350822448730412, -12.134716033935547 ], [ -73.351768493652287, -12.133610725402832 ], [ -73.353088378906193, -12.132805824279785 ], [ -73.355476379394474, -12.13029670715332 ], [ -73.358230590820312, -12.125919342041016 ], [ -73.35817718505848, -12.123941421508732 ], [ -73.356666564941406, -12.12025260925293 ], [ -73.355392456054631, -12.115934371948129 ], [ -73.355247497558594, -12.113355636596623 ], [ -73.356422424316349, -12.110696792602539 ], [ -73.358390808105469, -12.109766960144043 ], [ -73.359771728515568, -12.109657287597599 ], [ -73.362953186035156, -12.110769271850529 ], [ -73.365226745605412, -12.111018180847168 ], [ -73.366867065429688, -12.110413551330566 ], [ -73.368385314941406, -12.109419822692871 ], [ -73.369453430175781, -12.109514236450138 ], [ -73.370414733886719, -12.108960151672363 ], [ -73.371231079101506, -12.107646942138672 ], [ -73.372184753417912, -12.106828689575195 ], [ -73.372787475585938, -12.106590270996094 ], [ -73.374153137207031, -12.106516838073617 ], [ -73.374557495117131, -12.105793952941838 ], [ -73.375473022460938, -12.104887008666992 ], [ -73.376953124999943, -12.104734420776367 ], [ -73.379150390624943, -12.103280067443848 ], [ -73.380775451660043, -12.102984428405705 ], [ -73.38344573974598, -12.103631019592285 ], [ -73.384895324707031, -12.103629112243596 ], [ -73.386024475097543, -12.102435111999512 ], [ -73.387329101562443, -12.102018356323242 ], [ -73.388435363769531, -12.101238250732422 ], [ -73.391036987304688, -12.100284576416016 ], [ -73.391914367675724, -12.099685668945312 ], [ -73.395095825195312, -12.095915794372502 ], [ -73.395912170410099, -12.094202041625977 ], [ -73.396949768066406, -12.093611717224064 ], [ -73.400444030761719, -12.09053993225092 ], [ -73.401382446289062, -12.087901115417424 ], [ -73.401763916015625, -12.086127281188965 ], [ -73.402671813964844, -12.08014011383051 ], [ -73.40228271484375, -12.075545310974121 ], [ -73.402130126953068, -12.069848060607796 ], [ -73.401473999023324, -12.065378189086857 ], [ -73.401412963867188, -12.061861991882267 ], [ -73.401664733886605, -12.060363769531193 ], [ -73.402946472167969, -12.057080268859863 ], [ -73.402587890624943, -12.055666923522892 ], [ -73.402420043945256, -12.053686141967773 ], [ -73.401596069335938, -12.051767349243164 ], [ -73.400405883789006, -12.04576587677002 ], [ -73.399993896484375, -12.037636756896973 ], [ -73.399139404296875, -12.031636238098145 ], [ -73.398948669433594, -12.025859832763558 ], [ -73.399124145507812, -12.024341583251953 ], [ -73.398757934570312, -12.022586822509709 ], [ -73.398773193359318, -12.021222114562988 ], [ -73.399322509765625, -12.019137382507267 ], [ -73.400070190429688, -12.017106056213322 ], [ -73.401344299316349, -12.015802383422738 ], [ -73.403450012206974, -12.015200614929199 ], [ -73.405906677246094, -12.014013290405273 ], [ -73.407241821289062, -12.013051986694336 ], [ -73.40785980224598, -12.011727333068848 ], [ -73.40875244140625, -12.011107444763184 ], [ -73.410873413085938, -12.011114120483342 ], [ -73.412773132324219, -12.011791229248047 ], [ -73.4150390625, -12.012140274047795 ], [ -73.417839050292912, -12.012985229492074 ], [ -73.420303344726562, -12.014157295226937 ], [ -73.422332763671818, -12.014268875122013 ], [ -73.423408508300668, -12.013796806335392 ], [ -73.425079345703125, -12.011861801147404 ], [ -73.426254272460881, -12.009308815002441 ], [ -73.426361083984261, -12.006885528564339 ], [ -73.426712036132756, -12.004835128784066 ], [ -73.426773071289062, -12.001394271850529 ], [ -73.427383422851506, -12.000048637390137 ], [ -73.429496765136662, -11.999917030334416 ], [ -73.430274963378793, -11.999595642089844 ], [ -73.433410644531193, -11.999126434326115 ], [ -73.434783935546875, -11.998554229736271 ], [ -73.435867309570256, -11.997811317443791 ], [ -73.436935424804631, -11.996650695800724 ], [ -73.437774658203068, -11.995107650756722 ], [ -73.438171386718693, -11.993790626525879 ], [ -73.43837738037098, -11.992037773132324 ], [ -73.438034057617188, -11.990715980529785 ], [ -73.436531066894474, -11.988971710205078 ], [ -73.433425903320312, -11.986488342285156 ], [ -73.431388854980412, -11.984469413757324 ], [ -73.431098937988224, -11.983517646789494 ], [ -73.431137084960938, -11.981583595275879 ], [ -73.431816101074219, -11.979571342468205 ], [ -73.432792663574219, -11.97811222076416 ], [ -73.433769226074162, -11.97725772857666 ], [ -73.436500549316406, -11.975654602050781 ], [ -73.439559936523438, -11.972182273864746 ], [ -73.443496704101506, -11.964945793151855 ], [ -73.44482421875, -11.960831642150822 ], [ -73.445289611816406, -11.95691013336176 ], [ -73.444892883300781, -11.951211929321232 ], [ -73.444999694824219, -11.949395179748478 ], [ -73.446159362792969, -11.945208549499512 ], [ -73.4478759765625, -11.941338539123535 ], [ -73.448509216308594, -11.93826866149891 ], [ -73.449470520019531, -11.935688972473145 ], [ -73.449600219726506, -11.934215545654183 ], [ -73.449432373046818, -11.931927680969181 ], [ -73.446945190429631, -11.926327705383301 ], [ -73.445289611816406, -11.920143127441406 ], [ -73.444816589355469, -11.917346000671387 ], [ -73.444953918456974, -11.9146728515625 ], [ -73.445388793945312, -11.912893295288029 ], [ -73.446281433105412, -11.910755157470589 ], [ -73.448837280273381, -11.906819343566895 ], [ -73.453041076660099, -11.897087097167912 ], [ -73.454559326171818, -11.890180587768498 ], [ -73.456535339355469, -11.884432792663574 ], [ -73.45660400390625, -11.882335662841683 ], [ -73.455101013183594, -11.875139236450195 ], [ -73.455314636230469, -11.871100425720215 ], [ -73.455718994140568, -11.869582176208496 ], [ -73.456832885742188, -11.868370056152344 ], [ -73.458969116210881, -11.867042541503849 ], [ -73.463935852050668, -11.865189552307015 ], [ -73.465339660644474, -11.864446640014592 ], [ -73.467559814453011, -11.862768173217773 ], [ -73.469909667968693, -11.860404014587402 ], [ -73.475158691406193, -11.853887557983398 ], [ -73.477394104003906, -11.850489616394043 ], [ -73.480674743652344, -11.846366882324162 ], [ -73.481369018554631, -11.844564437866211 ], [ -73.481750488281193, -11.842116355895996 ], [ -73.482826232910156, -11.837826728820801 ], [ -73.483489990234261, -11.836501121520939 ], [ -73.48406982421875, -11.835917472839355 ], [ -73.485237121582031, -11.835653305053597 ], [ -73.489761352539006, -11.836770057678109 ], [ -73.491958618164006, -11.837541580200138 ], [ -73.494125366210938, -11.838754653930664 ], [ -73.496826171874943, -11.839356422424316 ], [ -73.501289367675724, -11.839228630065918 ], [ -73.506835937499943, -11.83963680267334 ], [ -73.511314392089787, -11.839323997497559 ], [ -73.513977050781193, -11.838895797729379 ], [ -73.516372680664006, -11.83814811706543 ], [ -73.525291442871094, -11.833792686462402 ], [ -73.526573181152287, -11.832598686218205 ], [ -73.529594421386719, -11.83061408996582 ], [ -73.531845092773438, -11.828692436218205 ], [ -73.534210205078068, -11.826362609863281 ], [ -73.542282104492188, -11.81748104095459 ], [ -73.545783996582031, -11.812843322753906 ], [ -73.549110412597656, -11.807869911193791 ], [ -73.550765991210938, -11.80478572845459 ], [ -73.553047180175781, -11.801787376403752 ], [ -73.555168151855412, -11.800126075744572 ], [ -73.561225891113281, -11.796351432800236 ], [ -73.564468383789062, -11.794739723205566 ], [ -73.567176818847656, -11.793758392333984 ], [ -73.5716552734375, -11.791330337524414 ], [ -73.574874877929688, -11.788544654846191 ], [ -73.577438354492188, -11.785646438598576 ], [ -73.578437805175724, -11.783373832702637 ], [ -73.578483581542969, -11.782278060913086 ], [ -73.579719543457031, -11.777094841003361 ], [ -73.579856872558594, -11.774997711181641 ], [ -73.579574584960938, -11.771697998046818 ], [ -73.579032897949162, -11.76881027221674 ], [ -73.578506469726562, -11.767534255981388 ], [ -73.577674865722599, -11.766660690307617 ], [ -73.574279785156136, -11.764926910400334 ], [ -73.572868347167969, -11.763816833496094 ], [ -73.571044921875, -11.760625839233398 ], [ -73.57000732421875, -11.758070945739746 ], [ -73.569557189941406, -11.755444526672363 ], [ -73.569381713867131, -11.749758720397949 ], [ -73.570152282714787, -11.739798545837346 ], [ -73.570953369140625, -11.737643241882324 ], [ -73.572479248046875, -11.734918594360295 ], [ -73.578079223632756, -11.726359367370549 ], [ -73.580360412597599, -11.72334098815918 ], [ -73.583663940429688, -11.717706680297852 ], [ -73.588562011718693, -11.71182727813715 ], [ -73.591728210449105, -11.706012725830078 ], [ -73.596939086914006, -11.700025558471623 ], [ -73.599334716796818, -11.695453643798828 ], [ -73.601585388183594, -11.691973686218262 ], [ -73.604537963867188, -11.686465263366699 ], [ -73.608734130859375, -11.68040943145752 ], [ -73.609405517578125, -11.678405761718693 ], [ -73.609832763671818, -11.674945831298828 ], [ -73.611610412597656, -11.67021656036377 ], [ -73.612152099609375, -11.666213035583496 ], [ -73.613372802734318, -11.663641929626465 ], [ -73.615135192871094, -11.658778190612793 ], [ -73.615341186523438, -11.655941009521484 ], [ -73.615264892578068, -11.654014587402287 ], [ -73.614715576171761, -11.652076721191406 ], [ -73.614547729492188, -11.649788856506348 ], [ -73.613494873046875, -11.647232055664006 ], [ -73.610443115234375, -11.643765449523926 ], [ -73.605865478515625, -11.639586448669377 ], [ -73.604354858398438, -11.637489318847599 ], [ -73.603431701660099, -11.635685920715332 ], [ -73.603179931640625, -11.634608268737736 ], [ -73.603218078613281, -11.631210327148381 ], [ -73.603950500488281, -11.627902984619141 ], [ -73.604393005371037, -11.623702049255371 ], [ -73.604202270507756, -11.621785163879338 ], [ -73.603721618652287, -11.620325088500977 ], [ -73.601692199707031, -11.617560386657658 ], [ -73.596557617187443, -11.613918304443359 ], [ -73.59454345703125, -11.612001419067326 ], [ -73.593009948730469, -11.610038757324162 ], [ -73.5882568359375, -11.602821350097656 ], [ -73.586112976074219, -11.596741676330566 ], [ -73.584617614746094, -11.594123840331974 ], [ -73.575683593749943, -11.585515022277832 ], [ -73.571586608886662, -11.582033157348576 ], [ -73.566734313964787, -11.576107025146371 ], [ -73.562973022460938, -11.572669982910099 ], [ -73.55914306640625, -11.570290565490666 ], [ -73.550186157226562, -11.566405296325684 ], [ -73.548027038574162, -11.565128326415959 ], [ -73.545982360839844, -11.563526153564453 ], [ -73.544845581054688, -11.562073707580566 ], [ -73.544410705566349, -11.56066989898676 ], [ -73.543510437011719, -11.55894660949707 ], [ -73.538520812988281, -11.553373336791992 ], [ -73.536186218261719, -11.550161361694336 ], [ -73.530281066894474, -11.544823646545353 ], [ -73.52490234375, -11.539362907409611 ], [ -73.520362854003849, -11.532195091247502 ], [ -73.513504028320256, -11.524450302123967 ], [ -73.511306762695256, -11.521050453186035 ], [ -73.510490417480469, -11.520437240600529 ], [ -73.509582519531193, -11.520170211791935 ], [ -73.506614685058594, -11.520076751708984 ], [ -73.50466156005848, -11.520263671875 ], [ -73.502929687499943, -11.519893646240234 ], [ -73.502326965332031, -11.51920223236084 ], [ -73.502082824706918, -11.518036842346135 ], [ -73.501449584960938, -11.516803741455078 ], [ -73.500900268554688, -11.51618576049799 ], [ -73.5001220703125, -11.515803337097111 ], [ -73.495643615722656, -11.516023635864258 ], [ -73.494323730468693, -11.515707969665471 ], [ -73.49322509765625, -11.515785217285156 ], [ -73.485633850097656, -11.51783370971674 ], [ -73.482780456542969, -11.518451690673828 ], [ -73.480590820312443, -11.518512725830078 ], [ -73.478439331054688, -11.519042015075627 ], [ -73.474136352539006, -11.518336296081543 ], [ -73.472503662109318, -11.517349243164006 ], [ -73.469879150390625, -11.514035224914494 ], [ -73.469184875488168, -11.511890411376896 ], [ -73.468002319335881, -11.509957313537598 ], [ -73.467521667480469, -11.508681297302246 ], [ -73.46575927734375, -11.506057739257812 ], [ -73.463165283203068, -11.5045166015625 ], [ -73.460121154785043, -11.503514289855957 ], [ -73.456413269042969, -11.502969741821289 ], [ -73.455680847167969, -11.502461433410645 ], [ -73.455238342285099, -11.501489639282227 ], [ -73.455810546874943, -11.496874809265137 ], [ -73.459533691406193, -11.492645263671818 ], [ -73.461601257324219, -11.487232208251953 ], [ -73.464271545410156, -11.484180450439453 ], [ -73.467262268066349, -11.478690147399846 ], [ -73.468658447265625, -11.47746753692627 ], [ -73.473152160644474, -11.474887847900334 ], [ -73.473937988281193, -11.474095344543457 ], [ -73.476387023925781, -11.469987869262638 ], [ -73.477157592773381, -11.468028068542424 ], [ -73.477531433105469, -11.466711044311523 ], [ -73.477493286132812, -11.465418815612793 ], [ -73.475860595703011, -11.462001800537109 ], [ -73.473823547363224, -11.459259986877441 ], [ -73.473098754882812, -11.45744800567627 ], [ -73.474555969238281, -11.455829620361271 ], [ -73.474472045898438, -11.454545021057129 ], [ -73.473091125488168, -11.451932907104492 ], [ -73.471214294433594, -11.449870109558105 ], [ -73.469642639160099, -11.44759559631342 ], [ -73.468055725097656, -11.44603157043457 ], [ -73.467826843261662, -11.445560455322266 ], [ -73.467697143554688, -11.44299411773676 ], [ -73.465919494628849, -11.440624237060547 ], [ -73.464920043945312, -11.439822196960449 ], [ -73.462348937988281, -11.438507080078125 ], [ -73.459815979003849, -11.436313629150391 ], [ -73.456962585449162, -11.436226844787484 ], [ -73.455490112304688, -11.434593200683594 ], [ -73.45404052734375, -11.431193351745549 ], [ -73.451820373535099, -11.429553985595703 ], [ -73.451560974121094, -11.42886829376215 ], [ -73.452880859375, -11.427589416503849 ], [ -73.453277587890625, -11.426551818847599 ], [ -73.453140258789006, -11.425296783447209 ], [ -73.451698303222599, -11.423480033874455 ], [ -73.450775146484261, -11.421369552612248 ], [ -73.447593688964787, -11.419877052307129 ], [ -73.445793151855412, -11.418024063110295 ], [ -73.443794250488224, -11.414287567138672 ], [ -73.443710327148381, -11.411449432373047 ], [ -73.443290710449219, -11.410138130187988 ], [ -73.442031860351562, -11.408404350280705 ], [ -73.440704345703125, -11.407591819763184 ], [ -73.439788818359318, -11.406537055969181 ], [ -73.437950134277344, -11.403029441833496 ], [ -73.434860229492188, -11.401548385620117 ], [ -73.433845520019531, -11.400465011596623 ], [ -73.432807922363281, -11.398516654968262 ], [ -73.431365966796875, -11.398103713989144 ], [ -73.429046630859375, -11.39675331115717 ], [ -73.426864624023438, -11.395320892333984 ], [ -73.425094604492131, -11.393675804138184 ], [ -73.423858642578068, -11.391842842102051 ], [ -73.423233032226562, -11.388205528259221 ], [ -73.422103881835938, -11.385379791259766 ], [ -73.420829772949105, -11.3837890625 ], [ -73.416946411132812, -11.381093025207463 ], [ -73.415168762206974, -11.381443977355957 ], [ -73.412742614746094, -11.383124351501408 ], [ -73.410675048828125, -11.383200645446777 ], [ -73.410125732421818, -11.382824897766 ], [ -73.408699035644474, -11.381852149963322 ], [ -73.405860900878793, -11.381529808044377 ], [ -73.404769897460938, -11.379707336425781 ], [ -73.404747009277344, -11.379578590392953 ], [ -73.404495239257756, -11.378357887268066 ], [ -73.402252197265625, -11.376582145690918 ], [ -73.401611328125, -11.376347541809082 ], [ -73.400932312011719, -11.376096725463867 ], [ -73.399810791015625, -11.375891685485783 ], [ -73.399101257324219, -11.375761985778809 ], [ -73.394638061523438, -11.375801086425724 ], [ -73.39312744140625, -11.375527381896973 ], [ -73.392532348632812, -11.375419616699162 ], [ -73.391311645507812, -11.375004768371468 ], [ -73.389945983886719, -11.374102592468262 ], [ -73.389518737792912, -11.373820304870605 ], [ -73.388000488281193, -11.372149467468262 ], [ -73.385543823242074, -11.369440078735352 ], [ -73.383193969726562, -11.365934371948185 ], [ -73.381538391113168, -11.363460540771484 ], [ -73.380455017089787, -11.360936164855957 ], [ -73.379791259765568, -11.359401702880803 ], [ -73.378639221191406, -11.35551643371582 ], [ -73.37811279296875, -11.354331016540471 ], [ -73.377967834472656, -11.353996276855355 ], [ -73.377540588378906, -11.351571083068848 ], [ -73.377090454101562, -11.349016189575195 ], [ -73.374374389648381, -11.344619750976506 ], [ -73.372268676757756, -11.343106269836426 ], [ -73.370368957519474, -11.342327117919865 ], [ -73.369476318359375, -11.342158317565918 ], [ -73.368453979492131, -11.341964721679631 ], [ -73.365295410156193, -11.342091560363713 ], [ -73.364151000976506, -11.341894149780273 ], [ -73.362556457519474, -11.341361045837346 ], [ -73.361457824707031, -11.340667724609375 ], [ -73.350852966308594, -11.329941749572754 ], [ -73.34979248046875, -11.328045845031681 ], [ -73.346946716308594, -11.322950363159123 ], [ -73.3458251953125, -11.321842193603459 ], [ -73.343788146972656, -11.320404052734318 ], [ -73.343406677246094, -11.320135116577148 ], [ -73.343147277832031, -11.319817543029785 ], [ -73.340003967285156, -11.315986633300781 ], [ -73.335632324218693, -11.311629295349007 ], [ -73.33502197265625, -11.31102275848383 ], [ -73.333869934082031, -11.310102462768555 ], [ -73.332183837890625, -11.309174537658635 ], [ -73.330947875976562, -11.308494567871037 ], [ -73.325042724609375, -11.30657863616932 ], [ -73.324401855468693, -11.306370735168457 ], [ -73.323204040527344, -11.306120872497559 ], [ -73.321952819824219, -11.305858612060547 ], [ -73.318786621093636, -11.305868148803654 ], [ -73.316085815429631, -11.305158615112305 ], [ -73.314582824706974, -11.304269790649414 ], [ -73.313987731933537, -11.302839279174805 ], [ -73.313453674316406, -11.302426338195687 ], [ -73.31325531005848, -11.302275657653752 ], [ -73.312019348144418, -11.302566528320256 ], [ -73.311248779296818, -11.303844451904297 ], [ -73.31072998046875, -11.30469799041748 ], [ -73.310356140136719, -11.305069923400822 ], [ -73.309608459472599, -11.305808067321721 ], [ -73.308128356933594, -11.306537628173828 ], [ -73.307289123535156, -11.306953430175724 ], [ -73.305587768554688, -11.307419776916504 ], [ -73.304458618164006, -11.30742359161377 ], [ -73.303016662597599, -11.307060241699162 ], [ -73.298080444335881, -11.304501533508244 ], [ -73.296043395996094, -11.304407119750977 ], [ -73.295204162597599, -11.304368019104004 ], [ -73.294563293456918, -11.304448127746582 ], [ -73.293571472167969, -11.304956436157227 ], [ -73.291397094726506, -11.306678771972599 ], [ -73.290817260742131, -11.307029724121094 ], [ -73.289489746093693, -11.307829856872559 ], [ -73.287300109863224, -11.308568000793457 ], [ -73.285652160644531, -11.308839797973519 ], [ -73.282119750976562, -11.308839797973519 ], [ -73.280570983886719, -11.308226585388184 ], [ -73.278724670410099, -11.307129859924316 ], [ -73.277915954589844, -11.306918144226074 ], [ -73.277076721191349, -11.306911468505859 ], [ -73.276802062988224, -11.306908607482796 ], [ -73.274658203125, -11.307499885559082 ], [ -73.273536682128906, -11.307449340820256 ], [ -73.272476196289062, -11.307109832763672 ], [ -73.270118713378849, -11.305820465087834 ], [ -73.268623352050668, -11.305829048156681 ], [ -73.267662048339787, -11.305644035339355 ], [ -73.266799926757756, -11.305478096008187 ], [ -73.266090393066406, -11.30555534362793 ], [ -73.264862060546875, -11.305689811706486 ], [ -73.263740539550724, -11.306239128112793 ], [ -73.263031005859375, -11.30659008026123 ], [ -73.261444091796818, -11.307000160217228 ], [ -73.259437561035099, -11.307519912719727 ], [ -73.255989074707031, -11.307478904724121 ], [ -73.254386901855412, -11.307249069213867 ], [ -73.249176025390625, -11.307298660278263 ], [ -73.248542785644531, -11.307173728942871 ], [ -73.245819091796818, -11.306637763977051 ], [ -73.244117736816293, -11.305906295776367 ], [ -73.242401123046761, -11.304076194763127 ], [ -73.241722106933537, -11.30284595489502 ], [ -73.240936279296818, -11.301421165466252 ], [ -73.23870849609375, -11.298710823058968 ], [ -73.237815856933537, -11.297629356384277 ], [ -73.236495971679688, -11.296627998352051 ], [ -73.236015319824219, -11.296449661254883 ], [ -73.235359191894531, -11.296206474304199 ], [ -73.233505249023381, -11.296096801757756 ], [ -73.231407165527287, -11.296426773071232 ], [ -73.229019165039006, -11.296804428100529 ], [ -73.224456787109318, -11.296882629394531 ], [ -73.222625732421818, -11.296601295471135 ], [ -73.221664428710938, -11.296165466308594 ], [ -73.220344543456974, -11.295565605163574 ], [ -73.218177795410043, -11.294966697692871 ], [ -73.213211059570256, -11.2952880859375 ], [ -73.212074279785043, -11.29449462890625 ], [ -73.207595825195312, -11.289692878723145 ], [ -73.206138610839787, -11.288130760192871 ], [ -73.205085754394474, -11.28737735748291 ], [ -73.204635620117074, -11.287055969238281 ], [ -73.204025268554631, -11.286887168884277 ], [ -73.202919006347543, -11.286583900451603 ], [ -73.202011108398438, -11.286565780639648 ], [ -73.201454162597599, -11.286554336547852 ], [ -73.199508666992188, -11.287205696105957 ], [ -73.195816040039062, -11.290008544921761 ], [ -73.195457458496037, -11.290278434753418 ], [ -73.194427490234261, -11.290678977966309 ], [ -73.193901062011719, -11.290670394897461 ], [ -73.193412780761719, -11.290658950805664 ], [ -73.191566467285043, -11.289978027343693 ], [ -73.189796447753906, -11.288619041442814 ], [ -73.187774658203125, -11.286088943481445 ], [ -73.18575286865223, -11.28355884552002 ], [ -73.183303833007812, -11.282479286193791 ], [ -73.182655334472656, -11.282446861266976 ], [ -73.180641174316406, -11.283084869384766 ], [ -73.17812347412098, -11.285375595092717 ], [ -73.177513122558537, -11.285613059997559 ], [ -73.177009582519531, -11.285811424255371 ], [ -73.174972534179574, -11.285601615905762 ], [ -73.1712646484375, -11.28367805480957 ], [ -73.170440673828125, -11.283548355102482 ], [ -73.169532775878849, -11.283766746520939 ], [ -73.168128967285156, -11.284950256347543 ], [ -73.166313171386719, -11.289058685302734 ], [ -73.165473937988281, -11.290016174316406 ], [ -73.163177490234375, -11.288653373718262 ], [ -73.160881042480469, -11.288395881652775 ], [ -73.158843994140568, -11.288559913635254 ], [ -73.156700134277344, -11.288728713989258 ], [ -73.153793334960881, -11.28964900970459 ], [ -73.148567199707031, -11.29058837890625 ], [ -73.143188476562443, -11.290860176086369 ], [ -73.140121459960938, -11.290691375732422 ], [ -73.136001586914062, -11.290465354919434 ], [ -73.131942749023381, -11.289437294006291 ], [ -73.125495910644531, -11.288719177246094 ], [ -73.122886657714787, -11.288432121276799 ], [ -73.120895385742131, -11.287972450256348 ], [ -73.120620727539062, -11.287910461425668 ], [ -73.120285034179688, -11.287787437438851 ], [ -73.118095397949219, -11.286979675292969 ], [ -73.114570617675724, -11.285139083862305 ], [ -73.114402770996037, -11.285030364990178 ], [ -73.111503601074219, -11.283097267150879 ], [ -73.110382080078068, -11.28265476226801 ], [ -73.108230590820312, -11.280879020690918 ], [ -73.1063232421875, -11.279916763305607 ], [ -73.097190856933594, -11.273947715759221 ], [ -73.093536376953125, -11.272587776184082 ], [ -73.091438293457031, -11.272184371948185 ], [ -73.089332580566293, -11.271782875060978 ], [ -73.085609436035099, -11.271748542785645 ], [ -73.08270263671875, -11.272348403930664 ], [ -73.080894470214844, -11.273171424865723 ], [ -73.080261230468693, -11.273457527160645 ], [ -73.074676513671875, -11.277259826660156 ], [ -73.069412231445312, -11.280129432678223 ], [ -73.06744384765625, -11.280983924865723 ], [ -73.066856384277344, -11.281238555908203 ], [ -73.065971374511605, -11.281328201293945 ], [ -73.065017700195199, -11.281421661376839 ], [ -73.063270568847599, -11.280949592590275 ], [ -73.061454772949162, -11.280170440673771 ], [ -73.059196472167855, -11.279196739196721 ], [ -73.049743652343693, -11.273857116699162 ], [ -73.047943115234261, -11.273365020751953 ], [ -73.044998168945312, -11.273048400878906 ], [ -73.042831420898438, -11.27236175537098 ], [ -73.040740966796875, -11.271700859069824 ], [ -73.037971496582031, -11.269534111022949 ], [ -73.034751892089787, -11.267873764038086 ], [ -73.030021667480469, -11.264742851257324 ], [ -73.025924682617188, -11.262030601501408 ], [ -73.024642944335881, -11.260839462280217 ], [ -73.022384643554574, -11.257985115051156 ], [ -73.021995544433537, -11.256146430969181 ], [ -73.02154541015625, -11.25400352478016 ], [ -73.020919799804631, -11.252798080444336 ], [ -73.020462036132756, -11.25191593170166 ], [ -73.020309448242188, -11.25133037567133 ], [ -73.020126342773438, -11.250602722167912 ], [ -73.019897460937443, -11.246921539306641 ], [ -73.019210815429631, -11.246204376220646 ], [ -73.017524719238168, -11.245162963867131 ], [ -73.017471313476562, -11.242286682128849 ], [ -73.01641845703125, -11.239505767822266 ], [ -73.014739990234318, -11.237978935241642 ], [ -73.012901306152344, -11.236780166625977 ], [ -73.009689331054631, -11.235248565673771 ], [ -73.007621765136719, -11.234519004821777 ], [ -73.006698608398438, -11.233944892883244 ], [ -73.005653381347656, -11.233592033386174 ], [ -73.004623413085881, -11.233242988586426 ], [ -73.001441955566406, -11.231451988220215 ], [ -72.9951171875, -11.226699829101562 ], [ -72.994499206542969, -11.226108551025277 ], [ -72.993614196777344, -11.225260734558105 ], [ -72.992446899414062, -11.223736763000431 ], [ -72.992179870605469, -11.223389625549316 ], [ -72.991714477539062, -11.220368385314941 ], [ -72.990791320800724, -11.218784332275391 ], [ -72.989906311035156, -11.217272758483887 ], [ -72.989189147949162, -11.216334342956486 ], [ -72.988784790039006, -11.215801239013615 ], [ -72.988105773925781, -11.215147018432617 ], [ -72.986457824707031, -11.213554382324219 ], [ -72.984031677246037, -11.212241172790471 ], [ -72.982620239257699, -11.211477279663086 ], [ -72.981727600097599, -11.211387634277287 ], [ -72.981346130371037, -11.21135044097889 ], [ -72.979911804199162, -11.211449623107796 ], [ -72.977897644042969, -11.211588859557992 ], [ -72.977516174316406, -11.211810111999512 ], [ -72.977088928222543, -11.212058067321721 ], [ -72.975570678710938, -11.213540077209416 ], [ -72.974533081054688, -11.214147567749023 ], [ -72.972076416015625, -11.21479320526123 ], [ -72.968437194824219, -11.215750694274846 ], [ -72.966941833496037, -11.216468811035099 ], [ -72.966201782226506, -11.217518806457463 ], [ -72.966194152831974, -11.217676162719727 ], [ -72.966186523437443, -11.21790885925293 ], [ -72.966255187988281, -11.218007087707463 ], [ -72.966476440429631, -11.218318939208984 ], [ -72.967391967773438, -11.218667984008789 ], [ -72.967811584472599, -11.218830108642521 ], [ -72.969917297363224, -11.219119071960392 ], [ -72.971206665039062, -11.21929931640625 ], [ -72.973052978515568, -11.220188140869084 ], [ -72.973403930664062, -11.22044563293457 ], [ -72.973937988281136, -11.220840454101506 ], [ -72.974533081054688, -11.221653938293343 ], [ -72.974922180175781, -11.222188949584961 ], [ -72.975723266601506, -11.225028991699162 ], [ -72.975540161132756, -11.227780342102051 ], [ -72.975379943847656, -11.228726387023926 ], [ -72.974906921386719, -11.231588363647404 ], [ -72.974822998046875, -11.235204696655217 ], [ -72.974761962890568, -11.237739562988224 ], [ -72.974517822265625, -11.239433288574162 ], [ -72.974418640136605, -11.24009895324707 ], [ -72.974472045898438, -11.24146842956543 ], [ -72.974632263183594, -11.245710372924691 ], [ -72.974502563476506, -11.250389099121094 ], [ -72.973716735839787, -11.251300811767578 ], [ -72.973075866699162, -11.251648902893066 ], [ -72.970451354980469, -11.251930236816349 ], [ -72.970008850097599, -11.25207328796381 ], [ -72.969398498535156, -11.25226879119873 ], [ -72.968650817871094, -11.252958297729379 ], [ -72.968566894531193, -11.253114700317326 ], [ -72.968116760253849, -11.253928184509221 ], [ -72.967910766601506, -11.254849433898926 ], [ -72.967613220214787, -11.256169319152775 ], [ -72.967491149902344, -11.257901191711426 ], [ -72.967437744140568, -11.258650779724121 ], [ -72.968505859374886, -11.263308525085449 ], [ -72.968467712402287, -11.265149116516113 ], [ -72.968215942382699, -11.26551342010498 ], [ -72.967750549316406, -11.266189575195312 ], [ -72.9659423828125, -11.267847061157227 ], [ -72.9652099609375, -11.268519401550236 ], [ -72.964225769042969, -11.269016265869084 ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-HUC", "NAME_0": "Peru", "ID_1": 9, "NAME_1": "Huánuco", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": "Huknuco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.983810424804631, -8.331949234008675 ], [ -75.982345581054688, -8.334001541137695 ], [ -75.982261657714844, -8.334120750427246 ], [ -75.982086181640568, -8.334286689758244 ], [ -75.980796813964844, -8.335519790649414 ], [ -75.978286743164006, -8.336619377136174 ], [ -75.978118896484375, -8.336765289306527 ], [ -75.977447509765625, -8.337339401245117 ], [ -75.976455688476506, -8.339301109313908 ], [ -75.975959777832031, -8.340288162231445 ], [ -75.974411010742188, -8.342660903930664 ], [ -75.973999023437443, -8.343290328979435 ], [ -75.973464965820312, -8.344456672668457 ], [ -75.972312927246094, -8.346970558166447 ], [ -75.971916198730469, -8.348520278930607 ], [ -75.971717834472543, -8.349279403686467 ], [ -75.971641540527344, -8.350325584411621 ], [ -75.971397399902287, -8.353480339050293 ], [ -75.970664978027287, -8.355372428894043 ], [ -75.970237731933594, -8.356478691101017 ], [ -75.969497680664006, -8.3572998046875 ], [ -75.967681884765568, -8.358349800109863 ], [ -75.965965270996037, -8.360627174377385 ], [ -75.963493347167912, -8.365469932556152 ], [ -75.961830139160156, -8.368729591369572 ], [ -75.961601257324162, -8.370036125183105 ], [ -75.961418151855355, -8.371068000793457 ], [ -75.960189819335938, -8.372904777526855 ], [ -75.958610534667969, -8.375259399414006 ], [ -75.957092285156193, -8.376989364624023 ], [ -75.955841064453125, -8.380139350891113 ], [ -75.952667236328125, -8.384551048278809 ], [ -75.95208740234375, -8.385359764099064 ], [ -75.951919555664062, -8.385690689086914 ], [ -75.950836181640625, -8.387828826904297 ], [ -75.949996948242188, -8.390169143676758 ], [ -75.949195861816349, -8.391657829284611 ], [ -75.949028015136719, -8.391969680786133 ], [ -75.948463439941406, -8.394429206848145 ], [ -75.948020935058594, -8.396360397338867 ], [ -75.947784423828125, -8.397072792053223 ], [ -75.946823120117131, -8.399929046630859 ], [ -75.946617126464787, -8.401359558105469 ], [ -75.946502685546875, -8.402118682861328 ], [ -75.946464538574219, -8.404726028442383 ], [ -75.946426391601506, -8.40735912322998 ], [ -75.945579528808537, -8.412718772888127 ], [ -75.945571899414006, -8.412899017333984 ], [ -75.9453125, -8.421349525451603 ], [ -75.944671630859375, -8.42332935333252 ], [ -75.944259643554688, -8.424599647521916 ], [ -75.944061279296761, -8.424874305725041 ], [ -75.943656921386662, -8.425420761108398 ], [ -75.943565368652287, -8.425775527954045 ], [ -75.943496704101562, -8.426019668579102 ], [ -75.943679809570199, -8.42720985412592 ], [ -75.944671630859375, -8.428298950195256 ], [ -75.945289611816349, -8.428590774536133 ], [ -75.94692230224598, -8.429359436035099 ], [ -75.948356628417969, -8.429690361022892 ], [ -75.950225830078068, -8.431009292602482 ], [ -75.950576782226562, -8.431797981262207 ], [ -75.95086669921875, -8.432450294494629 ], [ -75.951171875, -8.432768821716252 ], [ -75.952186584472656, -8.433839797973633 ], [ -75.954132080078125, -8.438321113586369 ], [ -75.954734802246037, -8.438849449157658 ], [ -75.955986022949219, -8.439948081970215 ], [ -75.956344604492131, -8.440432548522949 ], [ -75.956703186035156, -8.44091892242426 ], [ -75.957466125488281, -8.443660736083928 ], [ -75.957588195800724, -8.444098472595158 ], [ -75.958808898925724, -8.446484565734863 ], [ -75.960456848144474, -8.448198318481388 ], [ -75.960594177246094, -8.448291778564453 ], [ -75.9632568359375, -8.450119972229004 ], [ -75.963851928710938, -8.450323104858398 ], [ -75.963958740234318, -8.450359344482422 ], [ -75.964653015136662, -8.451100349426213 ], [ -75.965003967285156, -8.452230453491211 ], [ -75.965476989746094, -8.453739166259766 ], [ -75.9659423828125, -8.458678245544434 ], [ -75.967239379882812, -8.460188865661621 ], [ -75.967201232910099, -8.460289001464844 ], [ -75.967002868652344, -8.46077919006342 ], [ -75.966583251953125, -8.461015701293945 ], [ -75.965316772460881, -8.461730003356934 ], [ -75.964698791503906, -8.462423324584961 ], [ -75.964569091796875, -8.462568283080998 ], [ -75.963935852050781, -8.467551231384221 ], [ -75.962379455566406, -8.472929000854492 ], [ -75.9598388671875, -8.477084159851074 ], [ -75.957557678222656, -8.479460716247559 ], [ -75.956939697265625, -8.481198310852051 ], [ -75.956626892089787, -8.482930183410645 ], [ -75.955612182617188, -8.484207153320312 ], [ -75.955680847167912, -8.484857559204102 ], [ -75.956512451171875, -8.486160278320312 ], [ -75.956451416015568, -8.486818313598576 ], [ -75.956367492675781, -8.486991882324219 ], [ -75.956016540527344, -8.487730026245117 ], [ -75.955955505371037, -8.488546371459961 ], [ -75.955940246582031, -8.488739967346191 ], [ -75.9561767578125, -8.491029739379883 ], [ -75.956642150878849, -8.492751121520939 ], [ -75.956680297851562, -8.492880821228027 ], [ -75.955772399902287, -8.49668025970459 ], [ -75.955612182617188, -8.498353004455566 ], [ -75.955436706542969, -8.500258445739746 ], [ -75.955780029296818, -8.501441001891976 ], [ -75.956031799316406, -8.502319335937443 ], [ -75.956260681152287, -8.50267219543457 ], [ -75.956489562988281, -8.503019332885685 ], [ -75.959327697753906, -8.503362655639648 ], [ -75.960037231445312, -8.503449440002441 ], [ -75.960578918457031, -8.503339767456055 ], [ -75.960823059081974, -8.5033922195434 ], [ -75.961921691894531, -8.503634452819711 ], [ -75.964607238769531, -8.504609107971135 ], [ -75.965263366699219, -8.505051612854004 ], [ -75.966445922851506, -8.505848884582463 ], [ -75.968696594238281, -8.507870674133244 ], [ -75.969116210937443, -8.508249282836857 ], [ -75.969306945800724, -8.508575439453125 ], [ -75.969917297363281, -8.509589195251465 ], [ -75.970359802246037, -8.510841369628906 ], [ -75.970596313476562, -8.511507987976074 ], [ -75.970466613769474, -8.513154029846191 ], [ -75.9703369140625, -8.513541221618596 ], [ -75.969886779785099, -8.514890670776367 ], [ -75.9703369140625, -8.517161369323674 ], [ -75.969161987304688, -8.519328117370605 ], [ -75.969261169433594, -8.520559310913029 ], [ -75.969512939453068, -8.52354907989502 ], [ -75.968765258789062, -8.526869773864689 ], [ -75.96868896484375, -8.52803897857666 ], [ -75.968597412109375, -8.529438018798828 ], [ -75.968154907226506, -8.531084060668945 ], [ -75.967796325683537, -8.53239917755127 ], [ -75.967514038085881, -8.534242630004883 ], [ -75.967117309570256, -8.536858558654728 ], [ -75.966392517089844, -8.538516044616642 ], [ -75.966239929199219, -8.538868904113713 ], [ -75.966133117675781, -8.539381980895939 ], [ -75.9658203125, -8.540929794311523 ], [ -75.963821411132812, -8.543219566345215 ], [ -75.963600158691349, -8.543830871582031 ], [ -75.963386535644474, -8.544419288635254 ], [ -75.963668823242188, -8.54576587677002 ], [ -75.965263366699219, -8.547677993774414 ], [ -75.965797424316349, -8.548640251159611 ], [ -75.965950012207031, -8.549830436706543 ], [ -75.965560913085938, -8.551049232482853 ], [ -75.965621948242188, -8.55223560333252 ], [ -75.966522216796875, -8.553640365600586 ], [ -75.96795654296875, -8.555873870849609 ], [ -75.968299865722656, -8.557779312133675 ], [ -75.968215942382812, -8.560088157653752 ], [ -75.968841552734318, -8.561029434204102 ], [ -75.969581604003906, -8.562148094177246 ], [ -75.969329833984318, -8.563310623168832 ], [ -75.967407226562443, -8.564935684204102 ], [ -75.966873168945312, -8.565388679504395 ], [ -75.966659545898381, -8.565737724304199 ], [ -75.966392517089844, -8.566178321838379 ], [ -75.966369628906193, -8.567378997802734 ], [ -75.966560363769474, -8.568251609802246 ], [ -75.966720581054688, -8.568989753723088 ], [ -75.966712951660156, -8.569882392883301 ], [ -75.966697692871094, -8.571670532226562 ], [ -75.967056274414062, -8.573902130126953 ], [ -75.966262817382756, -8.577580451965275 ], [ -75.9664306640625, -8.579392433166447 ], [ -75.966667175292969, -8.581870079040527 ], [ -75.965881347656193, -8.58478927612299 ], [ -75.965835571289062, -8.586578369140625 ], [ -75.965797424316349, -8.588198661804142 ], [ -75.965995788574105, -8.588828086853027 ], [ -75.966117858886719, -8.588973999023438 ], [ -75.966506958007812, -8.589449882507267 ], [ -75.970718383789062, -8.592850685119515 ], [ -75.972251892089844, -8.594618797302246 ], [ -75.972259521484318, -8.595540046691895 ], [ -75.971916198730469, -8.596712112426758 ], [ -75.971855163574219, -8.601591110229492 ], [ -75.972023010253906, -8.602199554443359 ], [ -75.972091674804631, -8.602450370788574 ], [ -75.973098754882812, -8.604349136352539 ], [ -75.973396301269531, -8.60588264465332 ], [ -75.972496032714844, -8.608957290649357 ], [ -75.972526550292969, -8.611259460449219 ], [ -75.973747253417969, -8.614375114440918 ], [ -75.974647521972599, -8.615688323974553 ], [ -75.975357055664062, -8.616728782653752 ], [ -75.975807189941349, -8.618071556091252 ], [ -75.976036071777344, -8.618739128112736 ], [ -75.975837707519531, -8.619473457336426 ], [ -75.975517272949162, -8.620678901672306 ], [ -75.974128723144531, -8.623379707336426 ], [ -75.974128723144531, -8.623551368713322 ], [ -75.974136352539062, -8.624209403991699 ], [ -75.975006103515625, -8.625408172607365 ], [ -75.976036071777344, -8.625749588012638 ], [ -75.976806640625, -8.626910209655705 ], [ -75.978096008300724, -8.633089065551701 ], [ -75.977951049804688, -8.633907318115178 ], [ -75.977851867675781, -8.634449005126953 ], [ -75.976509094238281, -8.637598991393986 ], [ -75.975875854492188, -8.639689445495549 ], [ -75.976119995117188, -8.643389701843262 ], [ -75.976249694824219, -8.64400577545166 ], [ -75.976600646972656, -8.64564037322998 ], [ -75.976905822753906, -8.646050453185978 ], [ -75.977859497070312, -8.647339820861816 ], [ -75.978004455566349, -8.647643089294434 ], [ -75.978378295898381, -8.648418426513615 ], [ -75.978797912597656, -8.65077018737793 ], [ -75.978569030761662, -8.65214729309082 ], [ -75.978469848632756, -8.652759552001953 ], [ -75.97711181640625, -8.654248237609806 ], [ -75.976661682128849, -8.65526008605957 ], [ -75.976272583007756, -8.659290313720646 ], [ -75.975967407226562, -8.660449981689453 ], [ -75.974777221679688, -8.662409782409611 ], [ -75.972984313964844, -8.664559364318791 ], [ -75.972908020019531, -8.664648056030273 ], [ -75.972610473632812, -8.665257453918457 ], [ -75.971153259277344, -8.668201446533203 ], [ -75.968605041503906, -8.671101570129395 ], [ -75.968223571777344, -8.674384117126465 ], [ -75.966743469238224, -8.677427291870117 ], [ -75.967041015624943, -8.679159164428654 ], [ -75.967170715332031, -8.679391860961914 ], [ -75.967712402343636, -8.68036937713623 ], [ -75.968711853027344, -8.683319091796818 ], [ -75.969284057617188, -8.683952331542969 ], [ -75.970367431640568, -8.685149192810059 ], [ -75.970657348632756, -8.68572998046875 ], [ -75.970664978027287, -8.686064720153752 ], [ -75.970672607421875, -8.686559677124023 ], [ -75.969917297363281, -8.688109397888184 ], [ -75.969711303710881, -8.691048622131291 ], [ -75.970329284667969, -8.692382812499943 ], [ -75.971298217773438, -8.694479942321777 ], [ -75.971321105956974, -8.694645881652832 ], [ -75.971397399902287, -8.695109367370549 ], [ -75.971229553222599, -8.695819854736271 ], [ -75.970451354980412, -8.696738243102971 ], [ -75.969200134277344, -8.697518348693848 ], [ -75.96661376953125, -8.698166847229004 ], [ -75.965499877929631, -8.698968887329102 ], [ -75.961357116699219, -8.70098876953125 ], [ -75.960746765136662, -8.70103931427002 ], [ -75.960624694824162, -8.701047897338867 ], [ -75.95916748046875, -8.700713157653809 ], [ -75.958282470703125, -8.700510025024357 ], [ -75.956161499023381, -8.700380325317383 ], [ -75.955589294433537, -8.700175285339299 ], [ -75.954513549804688, -8.699788093566895 ], [ -75.953849792480412, -8.699898719787598 ], [ -75.953201293945256, -8.701121330261174 ], [ -75.952499389648438, -8.703510284423828 ], [ -75.952079772949219, -8.70716476440424 ], [ -75.952346801757756, -8.708974838256836 ], [ -75.953727722167969, -8.712497711181584 ], [ -75.954803466796818, -8.716472625732422 ], [ -75.955062866210938, -8.720785140991211 ], [ -75.954498291015625, -8.723013877868652 ], [ -75.953315734863281, -8.725205421447697 ], [ -75.951171875, -8.72747898101801 ], [ -75.948081970214844, -8.729640007018986 ], [ -75.945968627929574, -8.731562614440804 ], [ -75.943641662597656, -8.732067108154297 ], [ -75.942283630371094, -8.733157157897892 ], [ -75.941947937011662, -8.734113693237191 ], [ -75.941688537597656, -8.73717021942133 ], [ -75.941116333007812, -8.739497184753418 ], [ -75.939903259277344, -8.742476463317871 ], [ -75.939033508300781, -8.745482444763127 ], [ -75.937187194824162, -8.749283790588379 ], [ -75.936676025390625, -8.752178192138615 ], [ -75.935890197753906, -8.754351615905705 ], [ -75.935256958007756, -8.755357742309513 ], [ -75.931816101074219, -8.758947372436523 ], [ -75.931068420410099, -8.760216712951603 ], [ -75.9306640625, -8.76153564453125 ], [ -75.930953979492188, -8.764086723327637 ], [ -75.929496765136719, -8.766331672668457 ], [ -75.928382873535156, -8.769644737243652 ], [ -75.927650451660099, -8.770480155944824 ], [ -75.926322937011605, -8.771295547485295 ], [ -75.925323486328125, -8.772256851196232 ], [ -75.923492431640625, -8.775329589843693 ], [ -75.922904968261719, -8.77934455871582 ], [ -75.922195434570256, -8.782013893127441 ], [ -75.921936035156136, -8.787223815917969 ], [ -75.922248840332031, -8.788471221923828 ], [ -75.9227294921875, -8.78925704956049 ], [ -75.922927856445312, -8.791272163391113 ], [ -75.924911499023438, -8.795112609863281 ], [ -75.925193786621094, -8.796937942504826 ], [ -75.925163269042912, -8.798846244812012 ], [ -75.926879882812443, -8.802106857299748 ], [ -75.927001953125, -8.803200721740666 ], [ -75.92779541015625, -8.805170059204102 ], [ -75.927886962890625, -8.806273460388184 ], [ -75.928543090820312, -8.807601928710938 ], [ -75.928588867187443, -8.808416366577148 ], [ -75.928153991699219, -8.815407752990666 ], [ -75.928825378417969, -8.817124366760197 ], [ -75.9287109375, -8.819421768188477 ], [ -75.929023742675781, -8.819992065429574 ], [ -75.929092407226562, -8.820812225341797 ], [ -75.928688049316349, -8.822127342224064 ], [ -75.929039001464844, -8.824885368347168 ], [ -75.928848266601562, -8.825753211975098 ], [ -75.927848815917855, -8.827953338623047 ], [ -75.927925109863224, -8.830801963806152 ], [ -75.926437377929688, -8.836105346679631 ], [ -75.926521301269531, -8.837860107421875 ], [ -75.927299499511719, -8.84201717376709 ], [ -75.9271240234375, -8.845337867736816 ], [ -75.926795959472599, -8.84666919708252 ], [ -75.925384521484375, -8.849566459655762 ], [ -75.924499511718693, -8.852090835571289 ], [ -75.923370361328125, -8.853876113891545 ], [ -75.922622680664062, -8.855849266052246 ], [ -75.921653747558594, -8.863809585571232 ], [ -75.920906066894531, -8.867518424987793 ], [ -75.920425415039062, -8.868904113769474 ], [ -75.919067382812443, -8.870986938476506 ], [ -75.917770385742188, -8.873630523681641 ], [ -75.916877746581974, -8.874799728393555 ], [ -75.915245056152287, -8.876550674438477 ], [ -75.913833618164062, -8.877421379089355 ], [ -75.911094665527344, -8.879753112792912 ], [ -75.90997314453125, -8.881068229675236 ], [ -75.909934997558594, -8.883011817932129 ], [ -75.910346984863281, -8.884285926818791 ], [ -75.910171508789006, -8.888978958129826 ], [ -75.909698486328068, -8.889974594116211 ], [ -75.908416748046875, -8.891299247741642 ], [ -75.907981872558537, -8.892891883850098 ], [ -75.907897949218693, -8.894095420837402 ], [ -75.908920288085938, -8.898134231567326 ], [ -75.910087585449162, -8.900636672973633 ], [ -75.910812377929688, -8.903214454650879 ], [ -75.910873413085824, -8.904949188232365 ], [ -75.911308288574219, -8.906440734863281 ], [ -75.910980224609375, -8.908242225646973 ], [ -75.908172607421818, -8.912869453430119 ], [ -75.905807495117131, -8.915805816650334 ], [ -75.904876708984375, -8.917281150817871 ], [ -75.902763366699162, -8.919936180114746 ], [ -75.897842407226562, -8.925167083740178 ], [ -75.896141052246094, -8.927343368530273 ], [ -75.895256042480469, -8.929061889648381 ], [ -75.894546508789006, -8.93144416809082 ], [ -75.894020080566406, -8.932293891906738 ], [ -75.893463134765625, -8.934050559997559 ], [ -75.892509460449219, -8.935463905334473 ], [ -75.891921997070312, -8.937182426452637 ], [ -75.891372680664062, -8.940999984741211 ], [ -75.890480041503906, -8.944194793701172 ], [ -75.890258789062443, -8.946021080017033 ], [ -75.889221191406193, -8.948684692382812 ], [ -75.88897705078125, -8.949843406677189 ], [ -75.888900756835938, -8.953802108764648 ], [ -75.889442443847656, -8.956607818603516 ], [ -75.889488220214787, -8.958359718322697 ], [ -75.888137817382812, -8.962260246276855 ], [ -75.886260986328068, -8.966680526733342 ], [ -75.885902404785156, -8.968391418457031 ], [ -75.88588714599598, -8.969682693481445 ], [ -75.885421752929688, -8.971458435058594 ], [ -75.885147094726562, -8.975961685180607 ], [ -75.885231018066406, -8.979913711547852 ], [ -75.884979248046875, -8.982104301452637 ], [ -75.885101318359318, -8.985420227050724 ], [ -75.883811950683594, -8.988445281982422 ], [ -75.883750915527344, -8.991845130920353 ], [ -75.882766723632812, -8.994814872741699 ], [ -75.882316589355469, -8.999483108520508 ], [ -75.88250732421875, -9.000638008117619 ], [ -75.882049560546818, -9.002115249633789 ], [ -75.881469726562443, -9.008148193359318 ], [ -75.880096435546875, -9.014538764953556 ], [ -75.878860473632812, -9.018012046813908 ], [ -75.876670837402344, -9.022366523742619 ], [ -75.874290466308594, -9.024933815002385 ], [ -75.872756958007812, -9.027215003967228 ], [ -75.869338989257812, -9.031222343444824 ], [ -75.866645812988281, -9.033718109130859 ], [ -75.862373352050781, -9.035833358764592 ], [ -75.859931945800724, -9.038713455200138 ], [ -75.858474731445312, -9.041068077087402 ], [ -75.857086181640511, -9.042537689208984 ], [ -75.854087829589844, -9.045141220092773 ], [ -75.850334167480469, -9.047112464904785 ], [ -75.847984313964844, -9.048734664916992 ], [ -75.845710754394474, -9.050892829894963 ], [ -75.843391418457031, -9.053882598876953 ], [ -75.842529296875, -9.055287361144906 ], [ -75.841476440429688, -9.057748794555664 ], [ -75.839805603027287, -9.062827110290527 ], [ -75.838943481445256, -9.066302299499398 ], [ -75.838409423828125, -9.070862770080566 ], [ -75.838432312011719, -9.075382232665959 ], [ -75.838867187499943, -9.076966285705566 ], [ -75.838630676269531, -9.077761650085449 ], [ -75.838363647460881, -9.081623077392578 ], [ -75.837509155273381, -9.083861351013184 ], [ -75.835922241210938, -9.08599853515625 ], [ -75.834671020507756, -9.088143348693848 ], [ -75.830398559570312, -9.093581199645996 ], [ -75.827064514160156, -9.096716880798283 ], [ -75.825172424316406, -9.097880363464355 ], [ -75.822967529296875, -9.099033355712834 ], [ -75.819892883300668, -9.100022315979004 ], [ -75.818122863769531, -9.101034164428711 ], [ -75.816352844238224, -9.102784156799316 ], [ -75.814376831054688, -9.105770111083984 ], [ -75.811431884765625, -9.113972663879395 ], [ -75.809745788574219, -9.11979961395258 ], [ -75.808815002441349, -9.126558303833008 ], [ -75.809211730956918, -9.130211830139103 ], [ -75.809112548828068, -9.134352684020996 ], [ -75.808341979980412, -9.138145446777344 ], [ -75.80621337890625, -9.144716262817383 ], [ -75.803741455078068, -9.149957656860352 ], [ -75.801994323730469, -9.151986122131291 ], [ -75.800415039062443, -9.158322334289551 ], [ -75.797035217285156, -9.164975166320801 ], [ -75.796440124511719, -9.16710186004633 ], [ -75.795166015624943, -9.170062065124398 ], [ -75.794494628906193, -9.170813560485783 ], [ -75.792839050292969, -9.171995162963867 ], [ -75.788154602050781, -9.174084663391056 ], [ -75.787429809570312, -9.174800872802734 ], [ -75.786758422851562, -9.175896644592228 ], [ -75.785385131835938, -9.179417610168457 ], [ -75.783226013183594, -9.189217567443848 ], [ -75.781227111816406, -9.195063591003418 ], [ -75.779830932617131, -9.197860717773438 ], [ -75.778068542480469, -9.19976615905756 ], [ -75.773818969726506, -9.199692726135254 ], [ -75.771385192871094, -9.200261116027832 ], [ -75.766624450683594, -9.200802803039494 ], [ -75.763465881347656, -9.201847076416016 ], [ -75.759284973144531, -9.203603744506779 ], [ -75.755401611328068, -9.205510139465332 ], [ -75.751747131347656, -9.208179473876953 ], [ -75.747459411621094, -9.213114738464355 ], [ -75.746650695800668, -9.213535308837891 ], [ -75.745315551757699, -9.214928627014103 ], [ -75.742729187011662, -9.217764854431152 ], [ -75.738670349121094, -9.223517417907715 ], [ -75.737991333007812, -9.225326538085938 ], [ -75.737617492675781, -9.225726127624455 ], [ -75.733695983886719, -9.233330726623478 ], [ -75.731689453125, -9.239917755126953 ], [ -75.731437683105469, -9.242948532104492 ], [ -75.732284545898438, -9.249504089355412 ], [ -75.7322998046875, -9.251629829406681 ], [ -75.732040405273381, -9.254190444946289 ], [ -75.731369018554631, -9.256008148193303 ], [ -75.730316162109318, -9.257403373718205 ], [ -75.729942321777287, -9.258247375488281 ], [ -75.729232788085938, -9.258961677551213 ], [ -75.728271484375, -9.260701179504338 ], [ -75.721809387207031, -9.266609191894531 ], [ -75.717208862304688, -9.270154953002873 ], [ -75.714828491210938, -9.272601127624512 ], [ -75.71368408203125, -9.274051666259766 ], [ -75.711181640625, -9.278670310974064 ], [ -75.709747314453125, -9.280579566955566 ], [ -75.708854675292912, -9.282709121704102 ], [ -75.707595825195312, -9.284746170043888 ], [ -75.701461791992188, -9.296758651733342 ], [ -75.698883056640625, -9.30362606048584 ], [ -75.698509216308594, -9.30551815032959 ], [ -75.697036743164006, -9.309094429016113 ], [ -75.695938110351562, -9.313825607299748 ], [ -75.695228576660099, -9.315519332885742 ], [ -75.693878173828068, -9.317934989929199 ], [ -75.690505981445312, -9.322428703308049 ], [ -75.687576293945312, -9.328268051147461 ], [ -75.685546875, -9.330488204956055 ], [ -75.684127807617188, -9.332534790039062 ], [ -75.681694030761662, -9.338698387145996 ], [ -75.678787231445312, -9.34444618225092 ], [ -75.678634643554631, -9.346565246582031 ], [ -75.677627563476562, -9.348736763000488 ], [ -75.676414489746094, -9.350358009338379 ], [ -75.674308776855469, -9.352422714233398 ], [ -75.672325134277287, -9.354090690612736 ], [ -75.669670104980412, -9.355914115905705 ], [ -75.667427062988281, -9.357970237731934 ], [ -75.665321350097656, -9.361104011535588 ], [ -75.663963317871037, -9.36462497711176 ], [ -75.663719177246094, -9.366264343261719 ], [ -75.663162231445312, -9.367238998413029 ], [ -75.661430358886719, -9.374860763549748 ], [ -75.658859252929688, -9.383717536926213 ], [ -75.656669616699219, -9.388887405395451 ], [ -75.653129577636719, -9.394499778747559 ], [ -75.648483276367131, -9.399229049682617 ], [ -75.645614624023438, -9.401388168334904 ], [ -75.643318176269531, -9.403546333312931 ], [ -75.6380615234375, -9.407144546508789 ], [ -75.634544372558594, -9.408980369567871 ], [ -75.630218505859375, -9.410314559936523 ], [ -75.625572204589844, -9.41112041473383 ], [ -75.619598388671818, -9.411808013915959 ], [ -75.612762451171875, -9.412054061889592 ], [ -75.612075805664006, -9.41228199005127 ], [ -75.608375549316406, -9.412035942077637 ], [ -75.60665130615223, -9.411684989929199 ], [ -75.605545043945312, -9.411796569824219 ], [ -75.603073120117188, -9.411438941955566 ], [ -75.599098205566349, -9.411309242248535 ], [ -75.595893859863281, -9.410837173461857 ], [ -75.592895507812443, -9.410868644714355 ], [ -75.589164733886662, -9.410150527954045 ], [ -75.586952209472656, -9.410002708435002 ], [ -75.58380126953125, -9.409294128417969 ], [ -75.582382202148438, -9.408596992492619 ], [ -75.579635620117131, -9.407790184020939 ], [ -75.578369140625, -9.407201766967717 ], [ -75.575073242187443, -9.406739234924316 ], [ -75.571685791015625, -9.405793190002441 ], [ -75.568954467773381, -9.405327796936035 ], [ -75.566970825195256, -9.404373168945256 ], [ -75.563774108886719, -9.403220176696721 ], [ -75.560928344726562, -9.401685714721566 ], [ -75.554214477539062, -9.39996147155756 ], [ -75.550544738769474, -9.39842700958252 ], [ -75.547462463378906, -9.397854804992676 ], [ -75.544326782226562, -9.396729469299316 ], [ -75.538108825683594, -9.39366436004633 ], [ -75.536575317382812, -9.393358230590763 ], [ -75.534034729003906, -9.391842842102051 ], [ -75.529495239257756, -9.390258789062443 ], [ -75.527557373046818, -9.38915824890131 ], [ -75.524772644042969, -9.388166427612305 ], [ -75.517837524414006, -9.384857177734375 ], [ -75.516212463378849, -9.384219169616699 ], [ -75.512313842773381, -9.383400917053223 ], [ -75.500465393066406, -9.379058837890625 ], [ -75.496772766113224, -9.377228736877385 ], [ -75.490455627441406, -9.374622344970646 ], [ -75.488296508789006, -9.373376846313477 ], [ -75.483863830566406, -9.368435859680176 ], [ -75.481956481933594, -9.365544319152832 ], [ -75.47918701171875, -9.358908653259277 ], [ -75.478614807128906, -9.356876373290959 ], [ -75.4761962890625, -9.351605415344238 ], [ -75.474281311035043, -9.349001884460449 ], [ -75.470550537109318, -9.344766616821289 ], [ -75.46783447265625, -9.340933799743596 ], [ -75.46474456787098, -9.337637901306152 ], [ -75.461753845214787, -9.33277416229248 ], [ -75.458961486816406, -9.32884502410883 ], [ -75.455894470214844, -9.325157165527344 ], [ -75.456085205078125, -9.319730758666935 ], [ -75.455795288085938, -9.315507888793945 ], [ -75.455970764160043, -9.314050674438477 ], [ -75.456565856933594, -9.312810897827148 ], [ -75.456573486328125, -9.310968399047795 ], [ -75.455924987792969, -9.309148788452092 ], [ -75.454124450683537, -9.306915283203068 ], [ -75.453399658203125, -9.305551528930607 ], [ -75.453437805175781, -9.30443096160883 ], [ -75.454048156738224, -9.303091049194336 ], [ -75.4541015625, -9.302268028259277 ], [ -75.453880310058594, -9.301375389099064 ], [ -75.452400207519531, -9.299153327941895 ], [ -75.452339172363224, -9.298084259033203 ], [ -75.452621459960881, -9.295839309692383 ], [ -75.452232360839787, -9.295551300048828 ], [ -75.450485229492188, -9.295516967773438 ], [ -75.44720458984375, -9.294608116149846 ], [ -75.44610595703125, -9.294790267944336 ], [ -75.445091247558537, -9.295977592468262 ], [ -75.444480895996094, -9.296184539794922 ], [ -75.442817687988281, -9.296194076538029 ], [ -75.441841125488224, -9.295936584472599 ], [ -75.439483642578125, -9.29636287689209 ], [ -75.437149047851506, -9.295923233032113 ], [ -75.435638427734318, -9.296276092529297 ], [ -75.433967590332031, -9.29631519317627 ], [ -75.43117523193348, -9.29539680480957 ], [ -75.426773071289006, -9.294913291931152 ], [ -75.422668457031193, -9.293524742126465 ], [ -75.418746948242131, -9.292950630187988 ], [ -75.416641235351562, -9.293178558349553 ], [ -75.412025451660156, -9.294795036315861 ], [ -75.408752441406193, -9.295324325561467 ], [ -75.405380249023438, -9.295336723327637 ], [ -75.403030395507756, -9.294877052307129 ], [ -75.401100158691349, -9.294798851013127 ], [ -75.392807006835881, -9.29521369934082 ], [ -75.390754699707031, -9.296030044555664 ], [ -75.385429382324219, -9.301995277404728 ], [ -75.380859375, -9.305575370788517 ], [ -75.376762390136719, -9.307676315307617 ], [ -75.374137878417912, -9.308559417724496 ], [ -75.372329711914006, -9.30887508392334 ], [ -75.37103271484375, -9.30888652801508 ], [ -75.3695068359375, -9.308535575866586 ], [ -75.367530822753849, -9.307812690734806 ], [ -75.36556243896473, -9.306612014770508 ], [ -75.364067077636719, -9.306126594543457 ], [ -75.362686157226506, -9.306172370910588 ], [ -75.358009338378849, -9.307243347167969 ], [ -75.356903076171875, -9.3072252273559 ], [ -75.353660583496094, -9.306144714355412 ], [ -75.350936889648381, -9.30471134185791 ], [ -75.346931457519474, -9.304080009460449 ], [ -75.344688415527344, -9.302933692932072 ], [ -75.343734741210938, -9.302709579467773 ], [ -75.339302062988224, -9.303056716918888 ], [ -75.338333129882812, -9.303347587585449 ], [ -75.33657073974598, -9.304381370544434 ], [ -75.335105895996037, -9.304498672485295 ], [ -75.332778930664062, -9.303378105163517 ], [ -75.331840515136719, -9.302620887756348 ], [ -75.331207275390568, -9.301726341247559 ], [ -75.331420898437386, -9.29841423034668 ], [ -75.331192016601562, -9.298035621643066 ], [ -75.330169677734318, -9.297566413879395 ], [ -75.328437805175724, -9.297343254089299 ], [ -75.32318115234375, -9.297517776489201 ], [ -75.318992614746037, -9.298634529113713 ], [ -75.315475463867131, -9.300021171569767 ], [ -75.311195373535099, -9.301344871520996 ], [ -75.309303283691406, -9.302297592163029 ], [ -75.306785583496037, -9.304153442382756 ], [ -75.304588317871037, -9.30451774597168 ], [ -75.302978515624943, -9.306138038635254 ], [ -75.300857543945312, -9.306329727172852 ], [ -75.297073364257756, -9.309399604797363 ], [ -75.295402526855469, -9.310188293457031 ], [ -75.290931701660156, -9.311647415161076 ], [ -75.288734436035156, -9.312579154968262 ], [ -75.286712646484375, -9.312435150146428 ], [ -75.283477783203125, -9.310667037963867 ], [ -75.281616210937443, -9.309014320373535 ], [ -75.2808837890625, -9.307223320007324 ], [ -75.280395507812443, -9.306626319885254 ], [ -75.278861999511662, -9.307161331176701 ], [ -75.277755737304688, -9.307135581970215 ], [ -75.276481628417912, -9.305551528930607 ], [ -75.275581359863281, -9.304775238037109 ], [ -75.271881103515568, -9.304109573364201 ], [ -75.270339965820312, -9.303070068359375 ], [ -75.268730163574162, -9.301551818847656 ], [ -75.267379760742188, -9.30003547668457 ], [ -75.266868591308594, -9.298940658569279 ], [ -75.265266418457031, -9.296923637390137 ], [ -75.264381408691406, -9.295308113098088 ], [ -75.259796142578068, -9.290379524230957 ], [ -75.258155822753849, -9.286979675292912 ], [ -75.257820129394531, -9.286654472351074 ], [ -75.257949829101562, -9.284547805786076 ], [ -75.259658813476562, -9.281489372253418 ], [ -75.259857177734375, -9.280041694641056 ], [ -75.259239196777344, -9.278303146362305 ], [ -75.257873535156193, -9.27708625793457 ], [ -75.256950378417969, -9.275810241699219 ], [ -75.256668090820312, -9.274082183837891 ], [ -75.257072448730469, -9.272888183593693 ], [ -75.259017944335881, -9.269016265869141 ], [ -75.259117126464787, -9.268254280090332 ], [ -75.258773803710938, -9.26764965057373 ], [ -75.255805969238281, -9.266350746154785 ], [ -75.251144409179688, -9.265213966369629 ], [ -75.246795654296818, -9.263816833496037 ], [ -75.243721008300781, -9.262134552001953 ], [ -75.241943359374943, -9.260399818420353 ], [ -75.238937377929688, -9.254802703857422 ], [ -75.236824035644531, -9.252362251281738 ], [ -75.235076904296818, -9.250862121581918 ], [ -75.227043151855469, -9.244807243347111 ], [ -75.225753784179574, -9.243495941162053 ], [ -75.223777770996094, -9.241977691650334 ], [ -75.218666076660099, -9.239032745361271 ], [ -75.212921142578125, -9.23703670501709 ], [ -75.211326599121037, -9.236295700073185 ], [ -75.208206176757699, -9.23432731628418 ], [ -75.207420349121037, -9.233315467834416 ], [ -75.206550598144474, -9.231172561645508 ], [ -75.205940246582031, -9.22493934631342 ], [ -75.204772949218636, -9.220109939575195 ], [ -75.204086303710881, -9.215923309326115 ], [ -75.203880310058537, -9.21290111541748 ], [ -75.203971862792969, -9.208208084106445 ], [ -75.204666137695256, -9.201250076293945 ], [ -75.205528259277287, -9.196637153625488 ], [ -75.208206176757699, -9.188803672790527 ], [ -75.209297180175781, -9.184200286865121 ], [ -75.209388732910156, -9.180248260498047 ], [ -75.209060668945256, -9.176673889160156 ], [ -75.209548950195312, -9.172013282775822 ], [ -75.209297180175781, -9.169916152954045 ], [ -75.206336975097656, -9.166880607604924 ], [ -75.206130981445312, -9.165152549743652 ], [ -75.206222534179688, -9.164430618286133 ], [ -75.207000732421875, -9.162774085998535 ], [ -75.207313537597599, -9.160231590270939 ], [ -75.208808898925781, -9.15817928314209 ], [ -75.208534240722656, -9.156802177429142 ], [ -75.2073974609375, -9.155257225036564 ], [ -75.207481384277344, -9.152959823608342 ], [ -75.210639953613281, -9.148344039916992 ], [ -75.212051391601562, -9.145757675170898 ], [ -75.212356567382812, -9.144509315490723 ], [ -75.212318420410156, -9.14266300201416 ], [ -75.210800170898438, -9.139018058776855 ], [ -75.209037780761662, -9.137384414672852 ], [ -75.207855224609375, -9.137194633483887 ], [ -75.205970764160156, -9.13813400268549 ], [ -75.204803466796875, -9.137865066528263 ], [ -75.203849792480469, -9.136997222900391 ], [ -75.2021484375, -9.134592056274414 ], [ -75.198829650878849, -9.131953239440918 ], [ -75.196357727050724, -9.131784439086857 ], [ -75.192863464355469, -9.13349437713623 ], [ -75.191314697265568, -9.13401985168457 ], [ -75.189186096191406, -9.133892059326172 ], [ -75.18792724609375, -9.133535385131836 ], [ -75.186164855956974, -9.131797790527344 ], [ -75.185401916503849, -9.13001632690424 ], [ -75.185256958007812, -9.128089904785099 ], [ -75.185813903808594, -9.126453399658203 ], [ -75.185562133789062, -9.125774383544922 ], [ -75.185691833496037, -9.124687194824162 ], [ -75.185249328613281, -9.121045112609863 ], [ -75.184471130371094, -9.117806434631348 ], [ -75.183799743652344, -9.116312980651855 ], [ -75.183006286621037, -9.115806579589787 ], [ -75.179054260253906, -9.114887237548828 ], [ -75.17694091796875, -9.113957405090332 ], [ -75.175765991210881, -9.113069534301701 ], [ -75.173820495605469, -9.111099243164062 ], [ -75.170295715332031, -9.109328269958496 ], [ -75.167457580566349, -9.107096672058049 ], [ -75.166854858398438, -9.106289863586369 ], [ -75.165214538574219, -9.102231025695801 ], [ -75.164352416992188, -9.098467826843262 ], [ -75.161544799804631, -9.092057228088379 ], [ -75.160316467285099, -9.087244987487793 ], [ -75.159286499023438, -9.084478378295842 ], [ -75.158538818359375, -9.081239700317326 ], [ -75.158424377441293, -9.07940483093256 ], [ -75.158622741699219, -9.077848434448242 ], [ -75.159713745117188, -9.075116157531681 ], [ -75.161209106445312, -9.072456359863281 ], [ -75.161407470703125, -9.071182250976506 ], [ -75.161231994628906, -9.069723129272461 ], [ -75.160690307617131, -9.068550109863281 ], [ -75.159751892089787, -9.06752872467041 ], [ -75.157913208007756, -9.067366600036621 ], [ -75.1571044921875, -9.067809104919377 ], [ -75.156448364257812, -9.067864418029728 ], [ -75.155204772949219, -9.066797256469727 ], [ -75.154792785644474, -9.065874099731388 ], [ -75.154670715331974, -9.063214302062988 ], [ -75.154014587402287, -9.061290740966797 ], [ -75.150283813476506, -9.055809020996037 ], [ -75.148544311523438, -9.051955223083496 ], [ -75.148139953613281, -9.049505233764648 ], [ -75.148117065429631, -9.046737670898438 ], [ -75.148239135742188, -9.046015739440918 ], [ -75.148971557617131, -9.04443168640131 ], [ -75.148391723632756, -9.04278564453125 ], [ -75.149070739746037, -9.041817665100041 ], [ -75.150428771972656, -9.041065216064453 ], [ -75.150527954101562, -9.040425300598145 ], [ -75.150169372558594, -9.039690971374455 ], [ -75.148948669433537, -9.03856086730957 ], [ -75.149124145507812, -9.035430908203125 ], [ -75.148910522460938, -9.034635543823242 ], [ -75.148124694824105, -9.033387184143066 ], [ -75.145767211914062, -9.030927658081055 ], [ -75.144508361816406, -9.029110908508301 ], [ -75.143829345703068, -9.027411460876465 ], [ -75.142669677734318, -9.025540351867676 ], [ -75.142242431640625, -9.023466110229492 ], [ -75.142723083496094, -9.017687797546387 ], [ -75.143341064453068, -9.016350746154728 ], [ -75.14430999755848, -9.01318264007557 ], [ -75.146820068359375, -9.008823394775391 ], [ -75.148704528808594, -9.006559371948185 ], [ -75.149070739746037, -9.004885673522836 ], [ -75.149269104003793, -9.000175476074219 ], [ -75.148948669433537, -8.999678611755371 ], [ -75.147636413574162, -8.998853683471566 ], [ -75.146652221679688, -8.997527122497502 ], [ -75.143943786621094, -8.992387771606445 ], [ -75.143013000488281, -8.989224433898926 ], [ -75.140922546386719, -8.986412048339844 ], [ -75.139923095703011, -8.984439849853516 ], [ -75.14007568359375, -8.983545303344727 ], [ -75.141525268554631, -8.981635093688965 ], [ -75.142379760742131, -8.978532791137638 ], [ -75.142837524414062, -8.977725982665959 ], [ -75.143157958984318, -8.973539352416992 ], [ -75.143020629882812, -8.972563743591309 ], [ -75.141960144042969, -8.971405982971191 ], [ -75.139289855957031, -8.969598770141602 ], [ -75.137016296386719, -8.969425201415959 ], [ -75.136421203613281, -8.969154357910156 ], [ -75.135162353515625, -8.967691421508789 ], [ -75.133224487304631, -8.966435432434082 ], [ -75.131912231445199, -8.96514987945551 ], [ -75.131134033203068, -8.963702201843262 ], [ -75.130882263183594, -8.96269702911377 ], [ -75.127677917480469, -8.958918571472054 ], [ -75.126091003417912, -8.955907821655217 ], [ -75.125862121582031, -8.954740524291992 ], [ -75.125892639160099, -8.953077316284066 ], [ -75.126869201660156, -8.951865196228027 ], [ -75.127021789550724, -8.95106029510498 ], [ -75.126754760742131, -8.949792861938477 ], [ -75.12599945068348, -8.948409080505314 ], [ -75.125190734863281, -8.94764137268055 ], [ -75.122375488281136, -8.945896148681641 ], [ -75.120712280273438, -8.944566726684513 ], [ -75.119369506835938, -8.944297790527344 ], [ -75.118209838867188, -8.943384170532227 ], [ -75.116325378417969, -8.943005561828556 ], [ -75.115257263183594, -8.941267013549805 ], [ -75.110916137695256, -8.935662269592228 ], [ -75.102600097656193, -8.927261352539006 ], [ -75.099594116210938, -8.925119400024357 ], [ -75.098320007324162, -8.924576759338379 ], [ -75.095764160156193, -8.924350738525391 ], [ -75.093368530273381, -8.925039291381722 ], [ -75.092552185058594, -8.925064086914006 ], [ -75.091575622558594, -8.924775123596191 ], [ -75.089889526367188, -8.92381763458252 ], [ -75.088813781738281, -8.923519134521484 ], [ -75.086502075195256, -8.921692848205566 ], [ -75.084541320800781, -8.920888900756836 ], [ -75.0830078125, -8.919856071472168 ], [ -75.079719543456974, -8.916384696960336 ], [ -75.077873229980469, -8.915011405944824 ], [ -75.075965881347656, -8.914106369018555 ], [ -75.071762084960938, -8.913493156433049 ], [ -75.069999694824162, -8.912932395935002 ], [ -75.069152832031193, -8.912389755249023 ], [ -75.067428588867131, -8.910717010498047 ], [ -75.06378173828125, -8.908952713012695 ], [ -75.059562683105469, -8.905805587768555 ], [ -75.057540893554688, -8.904729843139648 ], [ -75.052497863769531, -8.902742385864258 ], [ -75.048461914062443, -8.902252197265625 ], [ -75.045692443847599, -8.902279853820801 ], [ -75.043388366699162, -8.902858734130803 ], [ -75.039199829101506, -8.904569625854492 ], [ -75.031677246093693, -8.908370018005314 ], [ -75.027168273925724, -8.909978866577148 ], [ -75.025489807128906, -8.910928726196289 ], [ -75.022674560546875, -8.912069320678597 ], [ -75.017745971679631, -8.913220405578613 ], [ -75.013893127441406, -8.913056373596191 ], [ -75.011917114257756, -8.914049148559513 ], [ -75.008392333984318, -8.917162895202637 ], [ -75.003555297851562, -8.923414230346623 ], [ -75.001632690429631, -8.925518035888672 ], [ -75.000289916992131, -8.926777839660645 ], [ -74.996467590331974, -8.928994178771916 ], [ -74.990715026855469, -8.934809684753418 ], [ -74.989105224609375, -8.938217163085881 ], [ -74.98724365234375, -8.944279670715218 ], [ -74.985382080078125, -8.947880744934025 ], [ -74.984275817871037, -8.949099540710449 ], [ -74.982070922851506, -8.950014114379826 ], [ -74.980812072753906, -8.950301170349064 ], [ -74.978416442871094, -8.950358390808105 ], [ -74.976631164550724, -8.949905395507812 ], [ -74.975639343261719, -8.948945045471135 ], [ -74.975502014160099, -8.94804859161377 ], [ -74.974830627441349, -8.946973800659066 ], [ -74.974739074706974, -8.946421623229924 ], [ -74.973304748535099, -8.944748878478947 ], [ -74.970199584960938, -8.943128585815373 ], [ -74.967430114746094, -8.941147804260254 ], [ -74.965827941894531, -8.940423011779785 ], [ -74.963127136230469, -8.938063621520996 ], [ -74.96273040771473, -8.937817573547363 ], [ -74.960617065429631, -8.937710762023926 ], [ -74.96026611328125, -8.937511444091797 ], [ -74.959999084472656, -8.937357902526799 ], [ -74.958992004394474, -8.937249183654785 ], [ -74.958381652832031, -8.937421798705998 ], [ -74.958000183105469, -8.937528610229435 ], [ -74.957839965820256, -8.937725067138672 ], [ -74.957138061523438, -8.938599586486816 ], [ -74.956825256347656, -8.938638687133789 ], [ -74.9566650390625, -8.938658714294434 ], [ -74.955520629882812, -8.937400817871094 ], [ -74.954811096191349, -8.936623573303166 ], [ -74.9534912109375, -8.935621261596623 ], [ -74.953002929687386, -8.935250282287598 ], [ -74.948158264160156, -8.934760093688908 ], [ -74.947341918945256, -8.934425354003849 ], [ -74.945213317871094, -8.933547019958439 ], [ -74.944297790527287, -8.933730125427189 ], [ -74.943305969238281, -8.934388160705566 ], [ -74.941314697265625, -8.93400764465332 ], [ -74.940132141113281, -8.934206008911133 ], [ -74.939521789550724, -8.934596061706486 ], [ -74.938705444335938, -8.93456840515131 ], [ -74.938484191894474, -8.934560775756779 ], [ -74.937286376953125, -8.933746337890568 ], [ -74.936279296874943, -8.932640075683594 ], [ -74.935813903808537, -8.931997299194279 ], [ -74.934402465820256, -8.930036544799805 ], [ -74.933799743652287, -8.928879737854004 ], [ -74.933036804199162, -8.927413940429688 ], [ -74.931159973144474, -8.922212600708008 ], [ -74.93068695068348, -8.920342445373421 ], [ -74.928192138671818, -8.910423278808594 ], [ -74.925819396972599, -8.904140472412109 ], [ -74.925239562988224, -8.901353836059513 ], [ -74.924705505371094, -8.899928092956543 ], [ -74.923194885253906, -8.895871162414551 ], [ -74.922721862792969, -8.893950462341252 ], [ -74.922386169433537, -8.892571449279728 ], [ -74.920486450195312, -8.886680603027344 ], [ -74.9195556640625, -8.882836341857853 ], [ -74.917739868164062, -8.869823455810547 ], [ -74.918136596679688, -8.855999946594238 ], [ -74.918716430664062, -8.852828979492188 ], [ -74.918960571289062, -8.849162101745605 ], [ -74.918930053710881, -8.845573425292969 ], [ -74.91888427734375, -8.845075607299805 ], [ -74.918640136718693, -8.842368125915471 ], [ -74.918083190917912, -8.840043067932015 ], [ -74.917869567871094, -8.837845802307072 ], [ -74.917510986328068, -8.83699893951416 ], [ -74.916465759277287, -8.832130432128906 ], [ -74.91290283203125, -8.82444953918457 ], [ -74.912513732910156, -8.823884010314941 ], [ -74.911758422851562, -8.822788238525391 ], [ -74.911102294921818, -8.821450233459473 ], [ -74.910087585449105, -8.820650100708008 ], [ -74.902740478515568, -8.813019752502385 ], [ -74.899597167968636, -8.810189247131291 ], [ -74.894271850585938, -8.804710388183537 ], [ -74.886711120605412, -8.798239707946777 ], [ -74.883438110351562, -8.795998573303223 ], [ -74.879096984863281, -8.791869163513184 ], [ -74.873817443847599, -8.788120269775334 ], [ -74.869667053222656, -8.784189224243164 ], [ -74.867721557617131, -8.782800674438477 ], [ -74.865768432617188, -8.780357360839844 ], [ -74.864791870117188, -8.778689384460449 ], [ -74.863746643066406, -8.777638435363713 ], [ -74.862846374511662, -8.77582931518549 ], [ -74.860519409179688, -8.772989273071232 ], [ -74.85888671875, -8.770319938659668 ], [ -74.854469299316349, -8.765629768371525 ], [ -74.85296630859375, -8.763339042663574 ], [ -74.8514404296875, -8.760189056396428 ], [ -74.850608825683594, -8.757369995117188 ], [ -74.849906921386662, -8.756189346313477 ], [ -74.849349975585938, -8.754460334777832 ], [ -74.849411010742131, -8.752699851989689 ], [ -74.849807739257756, -8.750628471374455 ], [ -74.849899291992131, -8.745099067687988 ], [ -74.850296020507812, -8.742950439453125 ], [ -74.850196838378793, -8.739089012145939 ], [ -74.85101318359375, -8.733739852905273 ], [ -74.851081848144531, -8.731080055236816 ], [ -74.850471496581974, -8.72465991973877 ], [ -74.849876403808537, -8.721970558166447 ], [ -74.848793029785156, -8.718358039855957 ], [ -74.846939086914006, -8.714859962463379 ], [ -74.846366882324162, -8.712710380554199 ], [ -74.846382141113168, -8.708758354186955 ], [ -74.847633361816406, -8.701788902282658 ], [ -74.847892761230412, -8.699229240417424 ], [ -74.847732543945312, -8.693880081176758 ], [ -74.847129821777287, -8.688960075378418 ], [ -74.841583251953068, -8.680959701538029 ], [ -74.841423034667855, -8.679869651794377 ], [ -74.841537475585938, -8.675921440124512 ], [ -74.839752197265625, -8.673931121826172 ], [ -74.839767456054631, -8.672219276428223 ], [ -74.839385986328068, -8.671930313110295 ], [ -74.837760925292969, -8.671768188476506 ], [ -74.837013244628849, -8.670949935913029 ], [ -74.836891174316406, -8.669669151306039 ], [ -74.836380004882812, -8.669028282165527 ], [ -74.834167480468693, -8.667498588562012 ], [ -74.832420349121094, -8.667038917541447 ], [ -74.830307006835938, -8.665228843688965 ], [ -74.829376220703068, -8.662959098815861 ], [ -74.828330993652287, -8.658939361572266 ], [ -74.826568603515625, -8.655089378356934 ], [ -74.824508666992131, -8.653569221496525 ], [ -74.821556091308537, -8.653749465942383 ], [ -74.818977355956974, -8.654338836669808 ], [ -74.818222045898381, -8.654138565063477 ], [ -74.816566467285156, -8.652439117431641 ], [ -74.814872741699219, -8.647688865661621 ], [ -74.813919067382812, -8.647098541259766 ], [ -74.810279846191406, -8.64612960815424 ], [ -74.808792114257756, -8.645380020141602 ], [ -74.806861877441406, -8.643979072570801 ], [ -74.805160522460881, -8.642160415649357 ], [ -74.803497314453125, -8.639078140258789 ], [ -74.802490234374943, -8.637939453125 ], [ -74.801856994628906, -8.637648582458496 ], [ -74.801300048828125, -8.637028694152832 ], [ -74.800956726074162, -8.635598182678223 ], [ -74.801582336425781, -8.633589744567814 ], [ -74.801422119140625, -8.632430076599121 ], [ -74.798400878906193, -8.63214111328125 ], [ -74.794181823730412, -8.631198883056641 ], [ -74.789253234863224, -8.629419326782227 ], [ -74.786109924316293, -8.628769874572697 ], [ -74.782218933105469, -8.626869201660099 ], [ -74.779525756835881, -8.625939369201603 ], [ -74.776596069335938, -8.625098228454533 ], [ -74.771507263183537, -8.624368667602539 ], [ -74.766281127929688, -8.626110076904183 ], [ -74.765235900878906, -8.626680374145508 ], [ -74.759101867675724, -8.628919601440373 ], [ -74.752418518066349, -8.631759643554688 ], [ -74.750923156738281, -8.632840156555176 ], [ -74.748489379882812, -8.635588645935002 ], [ -74.746421813964787, -8.636798858642578 ], [ -74.743942260742131, -8.636870384216309 ], [ -74.739990234375, -8.635739326476994 ], [ -74.737236022949219, -8.635499954223576 ], [ -74.733695983886719, -8.635970115661564 ], [ -74.730216979980412, -8.636870384216309 ], [ -74.727470397949219, -8.637059211730957 ], [ -74.722999572753906, -8.636269569396973 ], [ -74.717506408691349, -8.634738922119141 ], [ -74.713462829589844, -8.633079528808594 ], [ -74.708671569824105, -8.630768775939941 ], [ -74.70050048828125, -8.627958297729435 ], [ -74.69722747802723, -8.627458572387638 ], [ -74.695106506347599, -8.626849174499398 ], [ -74.687416076660156, -8.626028060913029 ], [ -74.683441162109375, -8.625289916992188 ], [ -74.678672790527344, -8.624938964843693 ], [ -74.678169250488281, -8.624708175659123 ], [ -74.675743103027287, -8.62471961975092 ], [ -74.669067382812443, -8.622890472412109 ], [ -74.666221618652287, -8.622919082641602 ], [ -74.661247253417912, -8.622080802917367 ], [ -74.656929016113281, -8.621708869934082 ], [ -74.653297424316406, -8.621109962463379 ], [ -74.650169372558594, -8.620980262756291 ], [ -74.649391174316406, -8.620738029479924 ], [ -74.638031005859375, -8.620079040527287 ], [ -74.62725830078125, -8.619868278503361 ], [ -74.619110107421818, -8.620469093322754 ], [ -74.617012023925724, -8.620791435241699 ], [ -74.61517333984375, -8.620779037475586 ], [ -74.614280700683594, -8.621000289916935 ], [ -74.610137939453068, -8.620980262756291 ], [ -74.606163024902344, -8.621659278869629 ], [ -74.604782104492131, -8.622220039367619 ], [ -74.600746154785156, -8.623120307922363 ], [ -74.595649719238224, -8.624698638916016 ], [ -74.592849731445312, -8.625219345092773 ], [ -74.586936950683594, -8.627279281616154 ], [ -74.584182739257756, -8.627979278564453 ], [ -74.575889587402287, -8.631508827209473 ], [ -74.570426940917969, -8.633399009704533 ], [ -74.566383361816293, -8.635149002075195 ], [ -74.562507629394531, -8.636329650878906 ], [ -74.558670043945312, -8.638048171997013 ], [ -74.558021545410156, -8.638148307800293 ], [ -74.551429748535156, -8.641399383544922 ], [ -74.544296264648438, -8.646449089050293 ], [ -74.537178039550724, -8.652929306030217 ], [ -74.536102294921875, -8.653639793395939 ], [ -74.530899047851506, -8.659228324890137 ], [ -74.528343200683594, -8.662929534912109 ], [ -74.525436401367131, -8.66658973693842 ], [ -74.522972106933537, -8.670779228210392 ], [ -74.521926879882756, -8.672939300537109 ], [ -74.521270751953068, -8.673810005187931 ], [ -74.520095825195256, -8.676469802856445 ], [ -74.519538879394474, -8.677210807800293 ], [ -74.516258239746094, -8.685990333557072 ], [ -74.515777587890625, -8.687858581542969 ], [ -74.514739990234375, -8.690018653869572 ], [ -74.514068603515625, -8.692020416259766 ], [ -74.513648986816406, -8.692448616027832 ], [ -74.513687133789062, -8.692999839782658 ], [ -74.51251220703125, -8.696968078613168 ], [ -74.510940551757756, -8.703959465026855 ], [ -74.510406494140625, -8.708710670471135 ], [ -74.509773254394531, -8.711588859558105 ], [ -74.509338378906193, -8.715048789977971 ], [ -74.509338378906193, -8.716808319091797 ], [ -74.508872985839787, -8.720730781555119 ], [ -74.508842468261662, -8.725699424743652 ], [ -74.508491516113224, -8.729358673095646 ], [ -74.508583068847599, -8.732580184936467 ], [ -74.508338928222656, -8.734569549560547 ], [ -74.508430480957031, -8.738800048828068 ], [ -74.508148193359375, -8.74412822723383 ], [ -74.508468627929631, -8.749270439147892 ], [ -74.50927734375, -8.752758979797306 ], [ -74.511466979980469, -8.759588241577148 ], [ -74.513603210449219, -8.76375770568842 ], [ -74.515525817871037, -8.766328811645451 ], [ -74.519439697265568, -8.769968986511174 ], [ -74.523147583007756, -8.772390365600586 ], [ -74.526969909667912, -8.775680541992188 ], [ -74.529266357421818, -8.776769638061523 ], [ -74.534431457519474, -8.777779579162598 ], [ -74.538200378417969, -8.778999328613281 ], [ -74.541046142578125, -8.780288696289006 ], [ -74.544998168945256, -8.782668113708439 ], [ -74.549339294433594, -8.785929679870605 ], [ -74.556678771972656, -8.793310165405217 ], [ -74.557907104492188, -8.79478931427002 ], [ -74.561111450195256, -8.79779052734375 ], [ -74.565719604492188, -8.801009178161621 ], [ -74.572257995605469, -8.803748130798283 ], [ -74.577186584472656, -8.805560111999455 ], [ -74.581161499023381, -8.806750297546387 ], [ -74.586067199707031, -8.808849334716797 ], [ -74.592697143554631, -8.810399055480957 ], [ -74.594757080078125, -8.811098098754883 ], [ -74.605133056640625, -8.815417289733887 ], [ -74.610816955566349, -8.818808555602971 ], [ -74.612541198730355, -8.820199012756291 ], [ -74.616226196289006, -8.824538230895939 ], [ -74.616928100585824, -8.826330184936467 ], [ -74.617370605468693, -8.82675838470459 ], [ -74.617271423339844, -8.829057693481445 ], [ -74.618133544921818, -8.831392288208008 ], [ -74.618377685546875, -8.837191581726074 ], [ -74.618438720703068, -8.838557243347111 ], [ -74.618415832519531, -8.849055290222054 ], [ -74.618133544921818, -8.853660583496094 ], [ -74.617774963378849, -8.859514236450138 ], [ -74.617919921875, -8.866785049438477 ], [ -74.619537353515625, -8.873679161071777 ], [ -74.619979858398324, -8.876557350158635 ], [ -74.620246887206974, -8.878318786621094 ], [ -74.620849609375, -8.880606651306096 ], [ -74.621726989746094, -8.883918762207031 ], [ -74.621925354003906, -8.885619163513184 ], [ -74.621948242187443, -8.885848999023438 ], [ -74.621994018554688, -8.886015892028809 ], [ -74.622856140136719, -8.889220237731934 ], [ -74.623031616210824, -8.89029598236084 ], [ -74.623176574707031, -8.891219139099121 ], [ -74.623512268066406, -8.891929626464844 ], [ -74.623649597167969, -8.892219543457031 ], [ -74.62398529052723, -8.893580436706486 ], [ -74.625457763671875, -8.899538040161133 ], [ -74.627365112304688, -8.904288291931152 ], [ -74.628311157226562, -8.906631469726562 ], [ -74.629302978515568, -8.90806865692133 ], [ -74.630073547363224, -8.908939361572209 ], [ -74.631385803222656, -8.910419464111328 ], [ -74.633476257324219, -8.912069320678597 ], [ -74.639846801757812, -8.913450241088867 ], [ -74.641059875488281, -8.914260864257812 ], [ -74.641761779785156, -8.914728164672795 ], [ -74.642692565917969, -8.915882110595703 ], [ -74.643501281738224, -8.917812347412053 ], [ -74.643577575683594, -8.917999267578068 ], [ -74.644447326660156, -8.919409751892033 ], [ -74.645088195800781, -8.921520233154297 ], [ -74.64642333984375, -8.924079895019531 ], [ -74.646751403808537, -8.925928115844727 ], [ -74.646530151367188, -8.928068161010685 ], [ -74.646415710449219, -8.928378105163517 ], [ -74.645942687988281, -8.929658889770508 ], [ -74.645973205566406, -8.931049346923828 ], [ -74.644668579101506, -8.932800292968693 ], [ -74.644020080566406, -8.934530258178711 ], [ -74.644081115722599, -8.936180114746094 ], [ -74.642906188964844, -8.938359260559025 ], [ -74.642707824707031, -8.939117431640625 ], [ -74.6427001953125, -8.939217567443791 ], [ -74.642562866210881, -8.940609931945801 ], [ -74.642440795898438, -8.941779136657715 ], [ -74.642890930175781, -8.944498062133789 ], [ -74.643058776855355, -8.944820404052678 ], [ -74.643356323242188, -8.945389747619572 ], [ -74.644737243652344, -8.946880340576172 ], [ -74.645378112792969, -8.947730064392033 ], [ -74.647590637207031, -8.950679779052734 ], [ -74.652519226074219, -8.955650329589844 ], [ -74.656150817871094, -8.959705352783089 ], [ -74.656982421874886, -8.960894584655705 ], [ -74.657310485839844, -8.961368560791016 ], [ -74.658065795898438, -8.96343803405756 ], [ -74.658020019531193, -8.964468002319336 ], [ -74.657997131347599, -8.964979171752873 ], [ -74.657638549804631, -8.965592384338379 ], [ -74.656677246093693, -8.967209815979004 ], [ -74.655036926269531, -8.968818664550781 ], [ -74.653480529785156, -8.969438552856445 ], [ -74.652938842773438, -8.969792366027832 ], [ -74.652366638183594, -8.970168113708439 ], [ -74.651275634765625, -8.971766471862736 ], [ -74.651290893554688, -8.972575187683105 ], [ -74.651290893554688, -8.972780227661133 ], [ -74.651580810546875, -8.973178863525391 ], [ -74.652587890624943, -8.974569320678711 ], [ -74.65283203125, -8.97515964508051 ], [ -74.653396606445312, -8.976529121398926 ], [ -74.653312683105469, -8.9801988601684 ], [ -74.652793884277344, -8.981781005859375 ], [ -74.652427673339844, -8.982899665832463 ], [ -74.651947021484375, -8.983811378479004 ], [ -74.651100158691406, -8.985420227050724 ], [ -74.651039123535099, -8.985784530639592 ], [ -74.650978088378906, -8.986149787902832 ], [ -74.649497985839844, -8.989518165588379 ], [ -74.649009704589844, -8.991948127746525 ], [ -74.648422241210938, -8.994829177856388 ], [ -74.647415161132756, -8.996973037719727 ], [ -74.647117614746094, -8.997599601745605 ], [ -74.643531799316349, -9.002840042114201 ], [ -74.64263916015625, -9.00464916229248 ], [ -74.641960144042969, -9.007338523864689 ], [ -74.641906738281193, -9.008494377136174 ], [ -74.641807556152287, -9.010848999023438 ], [ -74.642143249511719, -9.01195240020752 ], [ -74.643516540527287, -9.016460418701172 ], [ -74.648002624511662, -9.027668952941895 ], [ -74.648391723632756, -9.028138160705566 ], [ -74.648696899414062, -9.028510093688908 ], [ -74.649955749511719, -9.029574394226017 ], [ -74.651939392089844, -9.031249046325684 ], [ -74.653709411621037, -9.034159660339299 ], [ -74.654869079589787, -9.036870002746525 ], [ -74.655105590820312, -9.03783988952631 ], [ -74.655357360839787, -9.038849830627385 ], [ -74.655456542968636, -9.04060077667225 ], [ -74.655189514160156, -9.042498588562012 ], [ -74.65374755859375, -9.04451847076416 ], [ -74.652252197265625, -9.045495986938477 ], [ -74.651527404785099, -9.045968055725098 ], [ -74.651069641113168, -9.047050476074162 ], [ -74.650779724121037, -9.04773044586176 ], [ -74.650985717773438, -9.048736572265625 ], [ -74.652427673339844, -9.050697326660156 ], [ -74.653167724609261, -9.051709175109863 ], [ -74.655029296875, -9.056520462036076 ], [ -74.655838012695199, -9.06049728393549 ], [ -74.655868530273438, -9.06253719329834 ], [ -74.655891418457031, -9.064558982849064 ], [ -74.656166076660156, -9.066368103027344 ], [ -74.657196044921875, -9.068849563598576 ], [ -74.659072875976506, -9.071597099304199 ], [ -74.659538269042912, -9.072278022766113 ], [ -74.661155700683537, -9.074297904968205 ], [ -74.664756774902344, -9.077982902526855 ], [ -74.665237426757812, -9.07898998260498 ], [ -74.665351867675724, -9.079230308532715 ], [ -74.665580749511719, -9.080598831176758 ], [ -74.664527893066406, -9.082837104797306 ], [ -74.663375854492188, -9.084276199340763 ], [ -74.661537170410099, -9.087265968322754 ], [ -74.659706115722656, -9.090239524841195 ], [ -74.658981323242131, -9.091209411621037 ], [ -74.658546447753906, -9.091790199279728 ], [ -74.657768249511719, -9.093320846557617 ], [ -74.657333374023381, -9.09417819976801 ], [ -74.654891967773438, -9.09774112701416 ], [ -74.650009155273381, -9.105678558349553 ], [ -74.647743225097656, -9.108579635620117 ], [ -74.644470214843693, -9.113918304443359 ], [ -74.640663146972599, -9.118900299072266 ], [ -74.638175964355412, -9.12267017364502 ], [ -74.637016296386662, -9.125690460205078 ], [ -74.636093139648381, -9.127178192138672 ], [ -74.633903503417855, -9.131678581237793 ], [ -74.633079528808594, -9.133379936218262 ], [ -74.632789611816406, -9.135946273803711 ], [ -74.632843017578068, -9.138339042663574 ], [ -74.633171081542969, -9.139369010925293 ], [ -74.633285522460938, -9.140610694885197 ], [ -74.633605957031193, -9.143967628478947 ], [ -74.634246826171875, -9.146469116210938 ], [ -74.634773254394531, -9.148520469665527 ], [ -74.635536193847656, -9.152979850768986 ], [ -74.635711669921818, -9.158409118652344 ], [ -74.634941101074162, -9.162579536437988 ], [ -74.633216857910099, -9.167349815368652 ], [ -74.625045776367188, -9.178528785705566 ], [ -74.624031066894531, -9.180901527404785 ], [ -74.623046875, -9.18319034576416 ], [ -74.622123718261719, -9.185873031616211 ], [ -74.620986938476562, -9.189200401306096 ], [ -74.620513916015625, -9.19135570526123 ], [ -74.620338439941349, -9.192168235778752 ], [ -74.620147705078068, -9.196315765380859 ], [ -74.61944580078125, -9.202168464660645 ], [ -74.619392395019474, -9.211846351623478 ], [ -74.619361877441406, -9.216656684875488 ], [ -74.619674682617131, -9.224119186401367 ], [ -74.617454528808594, -9.231559753417969 ], [ -74.614624023437443, -9.237752914428711 ], [ -74.610740661621094, -9.241800308227539 ], [ -74.608634948730469, -9.246003150939885 ], [ -74.607650756835881, -9.247341156005859 ], [ -74.605522155761719, -9.248751640319824 ], [ -74.603874206542969, -9.249319076538086 ], [ -74.602806091308537, -9.25035381317133 ], [ -74.602546691894531, -9.250601768493652 ], [ -74.602386474609375, -9.250876426696777 ], [ -74.601905822753906, -9.25171947479248 ], [ -74.600746154785156, -9.255019187927189 ], [ -74.59661865234375, -9.258830070495549 ], [ -74.596031188964787, -9.260089874267521 ], [ -74.595756530761605, -9.261249542236271 ], [ -74.593482971191406, -9.263326644897461 ], [ -74.592781066894474, -9.263969421386719 ], [ -74.590309143066349, -9.268188476562443 ], [ -74.589515686035156, -9.27034854888916 ], [ -74.589538574218693, -9.272929191589299 ], [ -74.589599609375, -9.273118019104004 ], [ -74.590103149414006, -9.274779319763184 ], [ -74.590248107910156, -9.275814056396428 ], [ -74.59041595458973, -9.276969909667912 ], [ -74.590408325195256, -9.279190063476562 ], [ -74.590492248535099, -9.279930114746037 ], [ -74.590751647949219, -9.282120704650879 ], [ -74.590705871582031, -9.287629127502441 ], [ -74.591049194335881, -9.291768074035588 ], [ -74.590896606445312, -9.292201042175236 ], [ -74.590248107910156, -9.292860031127873 ], [ -74.587196350097656, -9.294380187988281 ], [ -74.586776733398381, -9.294979095458984 ], [ -74.586761474609318, -9.295820236205998 ], [ -74.589347839355412, -9.301211357116699 ], [ -74.592536926269531, -9.311234474182072 ], [ -74.593696594238281, -9.314048767089844 ], [ -74.595436096191349, -9.316875457763672 ], [ -74.596160888671875, -9.318049430847111 ], [ -74.597465515136662, -9.319461822509766 ], [ -74.599105834960938, -9.321240425109806 ], [ -74.600433349609375, -9.322905540466252 ], [ -74.602882385253849, -9.325980186462346 ], [ -74.606857299804688, -9.332308769226074 ], [ -74.608642578125, -9.334779739379883 ], [ -74.611900329589844, -9.338749885559082 ], [ -74.614318847656193, -9.34169864654541 ], [ -74.614898681640568, -9.342749595642033 ], [ -74.620376586914062, -9.348628044128418 ], [ -74.623382568359318, -9.352645874023438 ], [ -74.624687194824219, -9.354387283325195 ], [ -74.627372741699219, -9.357058525085392 ], [ -74.630172729492131, -9.359351158142033 ], [ -74.633735656738281, -9.361848831176758 ], [ -74.635459899902344, -9.363059043884221 ], [ -74.637672424316406, -9.364334106445256 ], [ -74.639747619628906, -9.365530014038029 ], [ -74.64605712890625, -9.368320465087834 ], [ -74.646171569824162, -9.368378639221078 ], [ -74.649559020996094, -9.370159149169865 ], [ -74.651100158691406, -9.371109008789006 ], [ -74.652252197265625, -9.372041702270508 ], [ -74.656272888183594, -9.375288963317814 ], [ -74.661911010742131, -9.379037857055664 ], [ -74.6622314453125, -9.379249572753906 ], [ -74.662338256835938, -9.37930965423584 ], [ -74.66998291015625, -9.383548736572266 ], [ -74.672645568847656, -9.384767532348633 ], [ -74.674171447753906, -9.385465621948185 ], [ -74.675247192382812, -9.386236190795785 ], [ -74.675437927246094, -9.386560440063477 ], [ -74.678825378417969, -9.392264366149846 ], [ -74.680549621582031, -9.396526336669922 ], [ -74.681350708007812, -9.39850902557373 ], [ -74.682151794433537, -9.401349067687931 ], [ -74.682502746582031, -9.403630256652775 ], [ -74.682594299316406, -9.406981468200684 ], [ -74.682647705078125, -9.409109115600529 ], [ -74.682159423828011, -9.411198616027718 ], [ -74.681571960449162, -9.413679122924748 ], [ -74.678993225097599, -9.420548439025879 ], [ -74.677886962890625, -9.423487663269043 ], [ -74.677566528320256, -9.424074172973576 ], [ -74.6763916015625, -9.426248550415039 ], [ -74.674659729003906, -9.428580284118596 ], [ -74.672332763671818, -9.431720733642578 ], [ -74.672317504882756, -9.431898117065373 ], [ -74.672294616699219, -9.432106018066406 ], [ -74.672676086425781, -9.432342529296818 ], [ -74.675613403320312, -9.432701110839787 ], [ -74.678802490234318, -9.433650970458928 ], [ -74.685493469238224, -9.436543464660588 ], [ -74.686744689941406, -9.436759948730469 ], [ -74.690429687499943, -9.438257217407227 ], [ -74.693733215332031, -9.439887046813965 ], [ -74.704864501953125, -9.446986198425236 ], [ -74.714096069335881, -9.453760147094727 ], [ -74.716728210449219, -9.456214904785156 ], [ -74.724296569824162, -9.464912414550781 ], [ -74.725990295410156, -9.467510223388615 ], [ -74.729530334472599, -9.471879005432129 ], [ -74.731132507324219, -9.475806236267033 ], [ -74.731781005859375, -9.482782363891602 ], [ -74.733634948730412, -9.488715171813965 ], [ -74.736274719238281, -9.492831230163574 ], [ -74.739151000976562, -9.495673179626465 ], [ -74.74072265625, -9.500028610229492 ], [ -74.741363525390568, -9.500705718994084 ], [ -74.743446350097599, -9.50207328796381 ], [ -74.744064331054688, -9.502878189086914 ], [ -74.744216918945256, -9.503413200378418 ], [ -74.744010925292969, -9.506442070007324 ], [ -74.744491577148438, -9.508213043212891 ], [ -74.745086669921818, -9.513435363769531 ], [ -74.745681762695312, -9.515171051025391 ], [ -74.746040344238224, -9.517910957336369 ], [ -74.746620178222599, -9.519359588623047 ], [ -74.746742248535156, -9.520543098449707 ], [ -74.747573852539006, -9.52288627624506 ], [ -74.748367309570312, -9.526469230651855 ], [ -74.748535156249886, -9.530049324035645 ], [ -74.748191833496094, -9.531661033630314 ], [ -74.748397827148438, -9.535054206848088 ], [ -74.746177673339844, -9.542087554931584 ], [ -74.745384216308537, -9.543334960937443 ], [ -74.744499206542912, -9.545452117919808 ], [ -74.740814208984375, -9.551191329955998 ], [ -74.739379882812386, -9.555550575256291 ], [ -74.738029479980412, -9.557413101196232 ], [ -74.737594604492188, -9.558424949645996 ], [ -74.737068176269474, -9.564945220947266 ], [ -74.737411499023438, -9.565797805786076 ], [ -74.737869262695312, -9.569162368774414 ], [ -74.739494323730469, -9.573268890380803 ], [ -74.741767883300781, -9.575433731079045 ], [ -74.743965148925781, -9.576781272888127 ], [ -74.745986938476562, -9.577054023742676 ], [ -74.748291015625, -9.577998161315918 ], [ -74.750076293945312, -9.578314781188908 ], [ -74.752067565917969, -9.579067230224609 ], [ -74.753166198730469, -9.579900741577092 ], [ -74.754516601562443, -9.580489158630314 ], [ -74.756690979003906, -9.583357810974064 ], [ -74.757385253906193, -9.584751129150391 ], [ -74.757743835449219, -9.58662223815918 ], [ -74.758087158203125, -9.597640037536621 ], [ -74.758583068847656, -9.600444793701115 ], [ -74.759132385253906, -9.601819038391056 ], [ -74.760467529296875, -9.603348731994572 ], [ -74.761596679687443, -9.604127883911076 ], [ -74.7664794921875, -9.605549812316838 ], [ -74.768478393554688, -9.606500625610295 ], [ -74.770553588867131, -9.608404159545898 ], [ -74.771392822265568, -9.609489440917969 ], [ -74.773719787597656, -9.614689826965275 ], [ -74.77386474609375, -9.61568641662592 ], [ -74.774513244628906, -9.617016792297363 ], [ -74.775093078613281, -9.619999885559082 ], [ -74.777000427246094, -9.624551773071232 ], [ -74.778488159179688, -9.629779815673828 ], [ -74.781936645507812, -9.637226104736328 ], [ -74.782920837402344, -9.640291213989201 ], [ -74.784355163574219, -9.642762184143066 ], [ -74.787651062011719, -9.649927139282113 ], [ -74.789535522460881, -9.653411865234375 ], [ -74.790779113769474, -9.656785011291504 ], [ -74.797073364257756, -9.665635108947697 ], [ -74.801254272460881, -9.672267913818303 ], [ -74.802886962890568, -9.673890113830566 ], [ -74.805526733398438, -9.67755126953125 ], [ -74.808906555175781, -9.683793067932129 ], [ -74.810050964355469, -9.686454772949219 ], [ -74.812217712402287, -9.69311332702631 ], [ -74.813919067382812, -9.702601432800293 ], [ -74.81427001953125, -9.709773063659668 ], [ -74.814231872558537, -9.713454246520939 ], [ -74.812950134277344, -9.724407196044922 ], [ -74.812843322753906, -9.729743003845158 ], [ -74.812622070312386, -9.731433868408203 ], [ -74.813125610351562, -9.736753463745117 ], [ -74.814186096191406, -9.741230010986271 ], [ -74.814735412597656, -9.741738319396916 ], [ -74.815444946289062, -9.743111610412598 ], [ -74.8184814453125, -9.745944976806641 ], [ -74.821426391601562, -9.747032165527287 ], [ -74.823501586914062, -9.747502326965332 ], [ -74.829574584960881, -9.748066902160645 ], [ -74.855857849121094, -9.746974945068359 ], [ -74.861320495605412, -9.746064186096191 ], [ -74.863250732421818, -9.745941162109375 ], [ -74.865959167480469, -9.745343208312931 ], [ -74.870269775390625, -9.744855880737305 ], [ -74.875518798828125, -9.743483543395939 ], [ -74.880310058593693, -9.742617607116642 ], [ -74.883087158203068, -9.74251747131342 ], [ -74.884689331054631, -9.742165565490723 ], [ -74.893302917480355, -9.741888046264648 ], [ -74.897911071777344, -9.742304801940918 ], [ -74.902801513671875, -9.74310302734375 ], [ -74.905494689941349, -9.74380970001215 ], [ -74.907455444335938, -9.744824409484863 ], [ -74.909347534179688, -9.745259284973088 ], [ -74.912132263183594, -9.746271133422852 ], [ -74.917610168456974, -9.749311447143555 ], [ -74.923233032226506, -9.753491401672363 ], [ -74.92535400390625, -9.755536079406681 ], [ -74.927589416503906, -9.758294105529785 ], [ -74.935600280761719, -9.76527023315424 ], [ -74.939651489257699, -9.768484115600586 ], [ -74.9417724609375, -9.770662307739144 ], [ -74.944091796875, -9.772497177124023 ], [ -74.946731567382812, -9.775312423705998 ], [ -74.950431823730469, -9.778505325317383 ], [ -74.951408386230469, -9.779933929443303 ], [ -74.952911376953125, -9.781300544738713 ], [ -74.955291748046761, -9.784095764160156 ], [ -74.960784912109375, -9.788318634033146 ], [ -74.965858459472599, -9.792888641357422 ], [ -74.969924926757812, -9.795663833618164 ], [ -74.972152709960881, -9.797880172729492 ], [ -74.976547241210881, -9.800783157348576 ], [ -74.9815673828125, -9.80499076843256 ], [ -74.985794067382756, -9.809249877929688 ], [ -74.988685607910156, -9.813421249389648 ], [ -74.991790771484318, -9.817191123962346 ], [ -74.994895935058594, -9.820095062255803 ], [ -75.000411987304688, -9.82460975646967 ], [ -75.003105163574219, -9.830088615417424 ], [ -75.004806518554688, -9.832720756530762 ], [ -75.00750732421875, -9.835090637207031 ], [ -75.009246826171818, -9.835949897766056 ], [ -75.009712219238224, -9.835949897766056 ], [ -75.01519775390625, -9.832694053649902 ], [ -75.020126342773381, -9.830621719360295 ], [ -75.022506713867131, -9.830305099487305 ], [ -75.025382995605412, -9.830947875976506 ], [ -75.02834320068348, -9.830801963806152 ], [ -75.031867980956974, -9.830088615417424 ], [ -75.035949707031193, -9.828632354736328 ], [ -75.039566040039006, -9.827843666076603 ], [ -75.040939331054688, -9.827309608459473 ], [ -75.043708801269531, -9.827084541320744 ], [ -75.046989440917969, -9.825236320495492 ], [ -75.051254272460938, -9.824044227599984 ], [ -75.052772521972656, -9.82336521148676 ], [ -75.055770874023438, -9.820933341979924 ], [ -75.058174133300724, -9.819374084472656 ], [ -75.059051513671761, -9.819124221801758 ], [ -75.060302734375, -9.819413185119629 ], [ -75.062591552734375, -9.821943283080998 ], [ -75.065589904785156, -9.824664115905648 ], [ -75.066612243652344, -9.827025413513127 ], [ -75.067771911621094, -9.829014778137207 ], [ -75.069145202636662, -9.832823753356934 ], [ -75.070541381835938, -9.834288597106877 ], [ -75.072296142578068, -9.835490226745605 ], [ -75.074989318847656, -9.836467742919922 ], [ -75.077255249023381, -9.837887763977051 ], [ -75.080162048339844, -9.839071273803711 ], [ -75.081924438476506, -9.840091705322266 ], [ -75.087112426757812, -9.84178256988514 ], [ -75.090965270996037, -9.842892646789494 ], [ -75.095985412597656, -9.843688011169434 ], [ -75.097747802734318, -9.844266891479435 ], [ -75.101432800292969, -9.844490051269474 ], [ -75.104698181152287, -9.845032691955566 ], [ -75.110214233398438, -9.844478607177734 ], [ -75.112724304199162, -9.843835830688477 ], [ -75.116966247558594, -9.842325210571289 ], [ -75.119071960449219, -9.842007637023926 ], [ -75.12152099609375, -9.842459678649902 ], [ -75.124458312988224, -9.844375610351562 ], [ -75.126045227050781, -9.844855308532658 ], [ -75.128128051757812, -9.844527244567871 ], [ -75.131111145019531, -9.843070983886662 ], [ -75.132614135742188, -9.8426256179809 ], [ -75.135017395019531, -9.842717170715275 ], [ -75.137596130371094, -9.843737602233773 ], [ -75.139633178710881, -9.843889236450138 ], [ -75.142463684081974, -9.842803955078068 ], [ -75.150344848632812, -9.840495109557992 ], [ -75.156990051269474, -9.840162277221623 ], [ -75.161026000976562, -9.839150428771973 ], [ -75.173637390136719, -9.832839012145939 ], [ -75.176445007324162, -9.831932067871037 ], [ -75.180595397949219, -9.830990791320744 ], [ -75.183265686035156, -9.829985618591252 ], [ -75.189353942871094, -9.826346397399846 ], [ -75.191230773925668, -9.825015068054142 ], [ -75.198532104492188, -9.818691253662109 ], [ -75.201988220214787, -9.816081047057992 ], [ -75.205970764160156, -9.812262535095158 ], [ -75.213844299316406, -9.804019927978516 ], [ -75.216835021972656, -9.801719665527344 ], [ -75.220802307128906, -9.799365997314453 ], [ -75.226356506347656, -9.796657562255859 ], [ -75.2298583984375, -9.795407295226994 ], [ -75.235946655273381, -9.792327880859318 ], [ -75.241142272949219, -9.790704727172852 ], [ -75.243240356445312, -9.789754867553711 ], [ -75.244949340820312, -9.789364814758301 ], [ -75.251991271972656, -9.786140441894474 ], [ -75.254981994628906, -9.785558700561523 ], [ -75.259330749511719, -9.785670280456543 ], [ -75.260787963867188, -9.785453796386719 ], [ -75.263542175292969, -9.784384727477971 ], [ -75.26790618896473, -9.78320407867426 ], [ -75.270233154296875, -9.78219032287592 ], [ -75.276992797851562, -9.779997825622502 ], [ -75.283378601074219, -9.77733325958252 ], [ -75.284469604492131, -9.777141571044922 ], [ -75.287521362304631, -9.777354240417424 ], [ -75.291191101074219, -9.778600692749023 ], [ -75.293014526367188, -9.779502868652344 ], [ -75.294891357421818, -9.781021118164062 ], [ -75.296211242675724, -9.783001899719181 ], [ -75.297698974609375, -9.786093711853027 ], [ -75.298126220703068, -9.787956237792912 ], [ -75.298141479492188, -9.790814399719238 ], [ -75.297180175781193, -9.794340133666992 ], [ -75.297195434570312, -9.79499435424799 ], [ -75.29730224609375, -9.797490119934082 ], [ -75.297531127929631, -9.797878265380803 ], [ -75.297950744628906, -9.801161766052246 ], [ -75.297927856445256, -9.803728103637638 ], [ -75.297142028808594, -9.806750297546387 ], [ -75.296134948730355, -9.808806419372502 ], [ -75.295051574706974, -9.812414169311467 ], [ -75.292457580566406, -9.81807804107666 ], [ -75.288505554199105, -9.823609352111816 ], [ -75.286445617675781, -9.827084541320744 ], [ -75.284889221191406, -9.831561088562012 ], [ -75.283500671386719, -9.834286689758301 ], [ -75.281646728515625, -9.83927059173584 ], [ -75.277275085449219, -9.847767829894963 ], [ -75.276176452636662, -9.85164737701416 ], [ -75.276199340820256, -9.852497100830078 ], [ -75.276626586914062, -9.853792190551701 ], [ -75.278236389160156, -9.856590270996094 ], [ -75.279426574706974, -9.859584808349553 ], [ -75.281341552734318, -9.86315727233881 ], [ -75.282981872558594, -9.864774703979435 ], [ -75.284378051757756, -9.865496635437012 ], [ -75.286964416503849, -9.866399765014592 ], [ -75.2874755859375, -9.866786956787109 ], [ -75.288070678710938, -9.867926597595158 ], [ -75.28851318359375, -9.870747566223088 ], [ -75.288757324218693, -9.871047019958496 ], [ -75.290863037109318, -9.870889663696232 ], [ -75.291786193847656, -9.871332168579102 ], [ -75.292839050292969, -9.872239112854004 ], [ -75.293876647949219, -9.873519897460938 ], [ -75.294807434082031, -9.877063751220703 ], [ -75.295524597167969, -9.877777099609318 ], [ -75.296653747558594, -9.878446578979492 ], [ -75.297943115234318, -9.87835597991932 ], [ -75.298896789550724, -9.878009796142578 ], [ -75.301200866699219, -9.878054618835392 ], [ -75.305610656738281, -9.8766832351684 ], [ -75.308227539062443, -9.876129150390625 ], [ -75.314872741699219, -9.875717163085938 ], [ -75.319770812988224, -9.875883102416992 ], [ -75.323493957519474, -9.874851226806527 ], [ -75.326263427734318, -9.875136375427246 ], [ -75.329910278320312, -9.874851226806527 ], [ -75.331962585449162, -9.874018669128418 ], [ -75.334762573242188, -9.871383666992131 ], [ -75.335891723632756, -9.871291160583439 ], [ -75.336280822753849, -9.871527671813965 ], [ -75.337837219238281, -9.871760368347111 ], [ -75.34033203125, -9.871642112731934 ], [ -75.3424072265625, -9.870868682861328 ], [ -75.344024658203125, -9.869518280029297 ], [ -75.345848083496094, -9.869230270385742 ], [ -75.351051330566349, -9.87082576751709 ], [ -75.35748291015625, -9.871468544006348 ], [ -75.361366271972543, -9.871365547180176 ], [ -75.362358093261719, -9.871137619018555 ], [ -75.364761352539062, -9.871233940124512 ], [ -75.367347717285099, -9.871747016906738 ], [ -75.372108459472599, -9.873252868652344 ], [ -75.373580932617188, -9.873406410217285 ], [ -75.375183105468693, -9.873854637145939 ], [ -75.387405395507812, -9.874964714050293 ], [ -75.390846252441406, -9.876053810119629 ], [ -75.394309997558594, -9.87818527221674 ], [ -75.395736694335938, -9.879359245300293 ], [ -75.397171020507812, -9.881608009338379 ], [ -75.398391723632812, -9.883001327514592 ], [ -75.403160095214844, -9.887351989746094 ], [ -75.406005859375, -9.88939380645752 ], [ -75.410354614257756, -9.893692016601562 ], [ -75.410362243652287, -9.895169258117619 ], [ -75.409980773925724, -9.896940231323242 ], [ -75.410102844238281, -9.899700164794922 ], [ -75.410362243652287, -9.900751113891602 ], [ -75.410301208496094, -9.902132034301758 ], [ -75.410118103027344, -9.902458190917969 ], [ -75.40869140625, -9.90330982208252 ], [ -75.405128479003849, -9.903812408447209 ], [ -75.40020751953125, -9.90565299987793 ], [ -75.398551940917912, -9.906831741332951 ], [ -75.397491455078068, -9.90798282623291 ], [ -75.39599609375, -9.911203384399357 ], [ -75.396064758300724, -9.912479400634766 ], [ -75.396392822265625, -9.913436889648438 ], [ -75.398674011230469, -9.918055534362793 ], [ -75.401435852050781, -9.920775413513127 ], [ -75.402854919433594, -9.922815322875977 ], [ -75.404151916503849, -9.925963401794434 ], [ -75.404571533203125, -9.928403854370117 ], [ -75.405265808105469, -9.929486274719181 ], [ -75.406585693359375, -9.930335998535099 ], [ -75.409721374511719, -9.930268287658635 ], [ -75.411041259765568, -9.930908203124943 ], [ -75.414085388183537, -9.934263229370117 ], [ -75.415229797363224, -9.93686580657959 ], [ -75.415901184081974, -9.937859535217285 ], [ -75.419082641601562, -9.941191673278752 ], [ -75.421012878417969, -9.94277381896967 ], [ -75.421630859374943, -9.942972183227482 ], [ -75.423744201660156, -9.942906379699707 ], [ -75.427253723144474, -9.941660881042424 ], [ -75.430030822753793, -9.941006660461426 ], [ -75.432014465331974, -9.94002723693842 ], [ -75.434822082519531, -9.93826961517334 ], [ -75.438957214355469, -9.936944007873478 ], [ -75.442268371582031, -9.936721801757756 ], [ -75.446670532226562, -9.937782287597599 ], [ -75.448402404785099, -9.939156532287598 ], [ -75.449172973632756, -9.940187454223633 ], [ -75.451576232910099, -9.944948196411133 ], [ -75.45343017578125, -9.947252273559513 ], [ -75.454307556152344, -9.948760986328011 ], [ -75.455596923828125, -9.952872276306152 ], [ -75.457412719726562, -9.955304145812988 ], [ -75.458663940429688, -9.956100463867131 ], [ -75.462081909179688, -9.956899642944279 ], [ -75.464935302734261, -9.957040786743164 ], [ -75.467773437499943, -9.956640243530273 ], [ -75.469047546386719, -9.957414627075195 ], [ -75.469635009765625, -9.95812797546381 ], [ -75.470069885253849, -9.959710121154785 ], [ -75.470321655273438, -9.963383674621582 ], [ -75.471130371093693, -9.965541839599553 ], [ -75.472648620605412, -9.968172073364258 ], [ -75.476341247558594, -9.972155570983887 ], [ -75.476516723632812, -9.974734306335449 ], [ -75.476402282714844, -9.976369857787972 ], [ -75.474800109863281, -9.981908798217773 ], [ -75.473548889160156, -9.984750747680607 ], [ -75.472190856933594, -9.986721992492619 ], [ -75.470619201660156, -9.988525390624943 ], [ -75.466842651367074, -9.991615295410156 ], [ -75.464332580566349, -9.994186401367188 ], [ -75.466934204101506, -9.99577522277832 ], [ -75.468734741210881, -9.99614429473877 ], [ -75.472846984863224, -9.995567321777287 ], [ -75.476554870605412, -9.994404792785645 ], [ -75.47882080078125, -9.993442535400391 ], [ -75.481285095214844, -9.99202823638916 ], [ -75.491142272949162, -9.984606742858887 ], [ -75.496925354003906, -9.982427597045898 ], [ -75.49884033203125, -9.981492042541447 ], [ -75.499977111816406, -9.981346130371037 ], [ -75.503684997558594, -9.979857444763184 ], [ -75.505477905273438, -9.979392051696777 ], [ -75.50899505615223, -9.979558944702148 ], [ -75.517082214355412, -9.981936454772949 ], [ -75.520896911621037, -9.982669830322266 ], [ -75.522468566894531, -9.982499122619629 ], [ -75.524749755859375, -9.981461524963322 ], [ -75.525726318359375, -9.981280326843262 ], [ -75.52740478515625, -9.981493949890137 ], [ -75.529335021972656, -9.982150077819824 ], [ -75.530433654785099, -9.982275962829533 ], [ -75.536544799804631, -9.981254577636662 ], [ -75.539405822753849, -9.981421470642033 ], [ -75.540466308593636, -9.981762886047306 ], [ -75.546318054199219, -9.982747077941895 ], [ -75.550086975097599, -9.98243522644043 ], [ -75.551116943359318, -9.981807708740234 ], [ -75.552360534667912, -9.98056602478016 ], [ -75.554214477539062, -9.97762393951416 ], [ -75.557266235351562, -9.975541114807129 ], [ -75.558364868164006, -9.974549293518066 ], [ -75.561851501464844, -9.969462394714355 ], [ -75.563140869140568, -9.9681396484375 ], [ -75.563972473144531, -9.967552185058594 ], [ -75.569801330566406, -9.964756011962834 ], [ -75.576675415039006, -9.96257209777832 ], [ -75.579551696777287, -9.961302757263127 ], [ -75.580604553222599, -9.960623741149846 ], [ -75.585479736328011, -9.956833839416504 ], [ -75.588478088378906, -9.953454017639103 ], [ -75.592536926269418, -9.947857856750488 ], [ -75.593475341796818, -9.946969032287541 ], [ -75.594001770019531, -9.946805000305176 ], [ -75.594963073730469, -9.951370239257812 ], [ -75.596923828124886, -9.956043243408203 ], [ -75.597480773925724, -9.958839416503849 ], [ -75.596443176269474, -9.962737083435002 ], [ -75.596267700195312, -9.96889686584467 ], [ -75.596572875976562, -9.970444679260254 ], [ -75.597740173339844, -9.973127365112191 ], [ -75.597900390625, -9.97607421875 ], [ -75.59749603271473, -9.978507995605412 ], [ -75.596084594726562, -9.983666419982853 ], [ -75.595634460449219, -9.988696098327523 ], [ -75.596015930175781, -9.991054534912109 ], [ -75.597633361816406, -9.994453430175781 ], [ -75.598007202148438, -9.99653244018549 ], [ -75.597877502441293, -9.998279571533203 ], [ -75.596549987792969, -10.001691818237305 ], [ -75.596687316894531, -10.005957603454476 ], [ -75.595809936523438, -10.008872985839844 ], [ -75.595588684081918, -10.011739730834904 ], [ -75.595817565917969, -10.013781547546387 ], [ -75.597122192382812, -10.017019271850586 ], [ -75.599670410156193, -10.020515441894531 ], [ -75.605354309082031, -10.026048660278263 ], [ -75.607322692871094, -10.02733039855957 ], [ -75.610206604003906, -10.028282165527287 ], [ -75.61517333984375, -10.027804374694824 ], [ -75.622703552246094, -10.02795219421381 ], [ -75.627662658691406, -10.028403282165527 ], [ -75.636947631835881, -10.030094146728459 ], [ -75.639480590820312, -10.030026435851994 ], [ -75.641815185546818, -10.030763626098633 ], [ -75.643524169921818, -10.030625343322754 ], [ -75.644706726074219, -10.030159950256348 ], [ -75.648513793945256, -10.03089427947998 ], [ -75.651268005371037, -10.032455444335938 ], [ -75.656082153320312, -10.03641414642334 ], [ -75.658416748046818, -10.038806915283203 ], [ -75.661758422851506, -10.041712760925236 ], [ -75.666511535644474, -10.045166015624943 ], [ -75.668708801269474, -10.047187805175781 ], [ -75.674957275390625, -10.051000595092773 ], [ -75.676612854003906, -10.052534103393498 ], [ -75.677375793457031, -10.054262161254826 ], [ -75.677322387695312, -10.058476448059082 ], [ -75.677543640136719, -10.059613227844238 ], [ -75.678184509277344, -10.060798645019474 ], [ -75.67913818359375, -10.063420295715332 ], [ -75.681602478027287, -10.067087173461914 ], [ -75.682250976562443, -10.068668365478516 ], [ -75.683250427246094, -10.073794364929199 ], [ -75.683296203613224, -10.077472686767521 ], [ -75.683982849121037, -10.079425811767578 ], [ -75.684707641601562, -10.083125114440918 ], [ -75.686141967773438, -10.085932731628418 ], [ -75.687789916992131, -10.088298797607422 ], [ -75.688644409179631, -10.088973045349121 ], [ -75.690040588378906, -10.089605331420898 ], [ -75.691291809082031, -10.090653419494629 ], [ -75.691947937011719, -10.091390609741211 ], [ -75.69281005859375, -10.092972755432072 ], [ -75.693153381347656, -10.094942092895508 ], [ -75.694168090820256, -10.097158432006836 ], [ -75.694709777832031, -10.099979400634709 ], [ -75.695968627929688, -10.102434158325138 ], [ -75.696418762207031, -10.105120658874455 ], [ -75.695083618164062, -10.106786727905273 ], [ -75.691024780273381, -10.109880447387638 ], [ -75.690109252929688, -10.111095428466797 ], [ -75.690002441406136, -10.112070083618107 ], [ -75.690513610839844, -10.113606452941895 ], [ -75.692535400390625, -10.117101669311467 ], [ -75.693878173828068, -10.118318557739258 ], [ -75.694816589355469, -10.118860244750977 ], [ -75.696586608886719, -10.121061325073242 ], [ -75.697441101074105, -10.123343467712346 ], [ -75.69744873046875, -10.124506950378418 ], [ -75.698234558105469, -10.127471923828068 ], [ -75.700080871581974, -10.131274223327637 ], [ -75.702301025390568, -10.138686180114689 ], [ -75.703361511230469, -10.140972137451172 ], [ -75.703941345214844, -10.143050193786621 ], [ -75.704582214355412, -10.144442558288574 ], [ -75.704566955566349, -10.14659404754633 ], [ -75.704872131347599, -10.147517204284668 ], [ -75.705047607421818, -10.149965286254883 ], [ -75.704841613769531, -10.152844429016056 ], [ -75.704505920410156, -10.153479576110783 ], [ -75.703140258789006, -10.154350280761662 ], [ -75.702796936035156, -10.155352592468262 ], [ -75.702980041503906, -10.155957221984863 ], [ -75.703903198242131, -10.156815528869629 ], [ -75.704811096191406, -10.158280372619572 ], [ -75.705009460449219, -10.159138679504338 ], [ -75.704879760742074, -10.160314559936467 ], [ -75.703025817871094, -10.163908958435059 ], [ -75.700767517089787, -10.165958404541016 ], [ -75.700523376464844, -10.168191909790039 ], [ -75.699348449706918, -10.170228958129826 ], [ -75.698944091796818, -10.171398162841797 ], [ -75.699272155761719, -10.172904968261719 ], [ -75.699081420898438, -10.175494194030705 ], [ -75.700614929199219, -10.179912567138615 ], [ -75.701263427734375, -10.187334060668945 ], [ -75.701934814453125, -10.188988685607853 ], [ -75.701873779296875, -10.190256118774357 ], [ -75.701507568359318, -10.191179275512695 ], [ -75.701362609863281, -10.193863868713322 ], [ -75.700881958007812, -10.195648193359318 ], [ -75.70135498046875, -10.19813346862793 ], [ -75.702445983886719, -10.20029258728016 ], [ -75.702491760253849, -10.202352523803654 ], [ -75.702308654785156, -10.203068733215332 ], [ -75.703605651855412, -10.204295158386174 ], [ -75.70367431640625, -10.206294059753361 ], [ -75.707313537597656, -10.209760665893555 ], [ -75.709609985351562, -10.214945793151855 ], [ -75.711097717285156, -10.216154098510742 ], [ -75.714187622070312, -10.217423439025822 ], [ -75.715248107910099, -10.219816207885685 ], [ -75.716156005859375, -10.220703125 ], [ -75.717536926269474, -10.221088409423828 ], [ -75.718711853027344, -10.223507881164494 ], [ -75.720497131347599, -10.22408294677723 ], [ -75.721580505371094, -10.226349830627441 ], [ -75.726058959960938, -10.230148315429688 ], [ -75.728569030761719, -10.23193359375 ], [ -75.729461669921818, -10.232943534851074 ], [ -75.730720520019474, -10.233139991760197 ], [ -75.731887817382812, -10.234133720397892 ], [ -75.732772827148438, -10.234436988830566 ], [ -75.734878540039062, -10.233087539672795 ], [ -75.736343383789006, -10.232631683349553 ], [ -75.737510681152344, -10.232428550720158 ], [ -75.738540649414006, -10.232743263244629 ], [ -75.741241455078125, -10.232636451721191 ], [ -75.74249267578125, -10.233538627624512 ], [ -75.744026184082031, -10.235553741455078 ], [ -75.746147155761662, -10.236332893371582 ], [ -75.747413635253793, -10.237751007080078 ], [ -75.749298095703068, -10.238380432128849 ], [ -75.750785827636719, -10.239841461181641 ], [ -75.752174377441349, -10.240299224853402 ], [ -75.752540588378849, -10.240299224853402 ], [ -75.753028869628849, -10.239909172058105 ], [ -75.754463195800724, -10.239850044250488 ], [ -75.755271911621094, -10.239133834838867 ], [ -75.756828308105412, -10.238659858703613 ], [ -75.757575988769531, -10.237764358520451 ], [ -75.759902954101506, -10.237892150878849 ], [ -75.765220642089787, -10.241552352905217 ], [ -75.768692016601562, -10.243318557739258 ], [ -75.771011352539062, -10.245030403137207 ], [ -75.772590637206918, -10.24675273895258 ], [ -75.778709411621094, -10.249487876892033 ], [ -75.781707763671875, -10.25019454956049 ], [ -75.784835815429688, -10.252077102661019 ], [ -75.787277221679574, -10.25192928314209 ], [ -75.789031982421875, -10.250983238220215 ], [ -75.7911376953125, -10.250446319580078 ], [ -75.79400634765625, -10.250673294067383 ], [ -75.799041748046875, -10.249992370605412 ], [ -75.802848815917969, -10.24810886383051 ], [ -75.807357788085938, -10.247129440307617 ], [ -75.808044433593693, -10.246685028076058 ], [ -75.808418273925724, -10.24582576751709 ], [ -75.8118896484375, -10.244071006774846 ], [ -75.815109252929631, -10.245699882507267 ], [ -75.818092346191406, -10.246452331542969 ], [ -75.819648742675781, -10.24767875671381 ], [ -75.820777893066406, -10.248264312744141 ], [ -75.822761535644531, -10.248285293579102 ], [ -75.824844360351506, -10.247747421264592 ], [ -75.826210021972656, -10.247842788696232 ], [ -75.826934814453068, -10.248211860656681 ], [ -75.827308654785099, -10.24871826171875 ], [ -75.827690124511662, -10.250117301940918 ], [ -75.828704833984375, -10.25124454498291 ], [ -75.832168579101506, -10.253308296203613 ], [ -75.834030151367188, -10.253647804260197 ], [ -75.835685729980469, -10.254599571228027 ], [ -75.837928771972656, -10.256558418273926 ], [ -75.839004516601562, -10.25658130645752 ], [ -75.840072631835938, -10.257411003112736 ], [ -75.840194702148381, -10.257944107055664 ], [ -75.839538574218636, -10.258570671081486 ], [ -75.839027404785099, -10.260117530822754 ], [ -75.839607238769474, -10.261012077331543 ], [ -75.842124938964844, -10.261050224304142 ], [ -75.842727661132812, -10.261691093444824 ], [ -75.842742919921875, -10.262124061584416 ], [ -75.841552734375, -10.26336765289301 ], [ -75.841438293456974, -10.263892173767033 ], [ -75.841888427734318, -10.26445102691639 ], [ -75.843559265136719, -10.265341758727971 ], [ -75.844490051269474, -10.267284393310433 ], [ -75.844100952148381, -10.268749237060547 ], [ -75.843803405761662, -10.272024154663086 ], [ -75.843833923339844, -10.275254249572754 ], [ -75.845298767089844, -10.27634334564209 ], [ -75.846153259277344, -10.278248786926213 ], [ -75.84747314453125, -10.280406951904297 ], [ -75.847824096679631, -10.281609535217228 ], [ -75.848480224609318, -10.282584190368596 ], [ -75.848258972167969, -10.284439086914006 ], [ -75.849189758300781, -10.28575611114502 ], [ -75.848709106445312, -10.287504196166992 ], [ -75.849159240722599, -10.29044246673584 ], [ -75.850761413574162, -10.292940139770508 ], [ -75.852867126464787, -10.294817924499455 ], [ -75.853492736816406, -10.297320365905762 ], [ -75.855674743652344, -10.299348831176701 ], [ -75.856643676757812, -10.30156230926508 ], [ -75.857330322265625, -10.302013397216797 ], [ -75.859123229980469, -10.302289009094181 ], [ -75.860023498535099, -10.302738189697209 ], [ -75.863128662109375, -10.305506706237679 ], [ -75.866943359375, -10.308246612548828 ], [ -75.869461059570256, -10.309224128723145 ], [ -75.871421813964844, -10.311570167541504 ], [ -75.872436523437443, -10.311668395996094 ], [ -75.873519897460938, -10.311247825622559 ], [ -75.876022338867188, -10.313023567199707 ], [ -75.878578186035156, -10.313558578491154 ], [ -75.880935668945312, -10.315532684326115 ], [ -75.882942199707031, -10.31675910949707 ], [ -75.883529663085938, -10.317859649658203 ], [ -75.885078430175781, -10.31937313079834 ], [ -75.886016845703125, -10.320809364318734 ], [ -75.890647888183537, -10.322714805603027 ], [ -75.89459228515625, -10.325307846069279 ], [ -75.8951416015625, -10.325894355773926 ], [ -75.895927429199219, -10.327312469482422 ], [ -75.898368835449162, -10.328679084777832 ], [ -75.899635314941406, -10.330105781555176 ], [ -75.900199890136719, -10.331125259399357 ], [ -75.903633117675781, -10.334072113037109 ], [ -75.905426025390568, -10.336878776550179 ], [ -75.908348083496094, -10.340200424194336 ], [ -75.908454895019474, -10.341809272766113 ], [ -75.909141540527287, -10.343083381652832 ], [ -75.911544799804688, -10.344305038452148 ], [ -75.912513732910156, -10.34525108337391 ], [ -75.913444519042912, -10.348260879516602 ], [ -75.91387939453125, -10.34893608093256 ], [ -75.914863586425724, -10.349576950073242 ], [ -75.916854858398381, -10.349905014038029 ], [ -75.917907714843693, -10.350329399108773 ], [ -75.919075012206918, -10.351581573486271 ], [ -75.920806884765625, -10.354329109191895 ], [ -75.922477722167912, -10.355026245117074 ], [ -75.923721313476506, -10.35524940490717 ], [ -75.924476623535099, -10.35589694976801 ], [ -75.925041198730469, -10.357027053833008 ], [ -75.925384521484375, -10.361330032348576 ], [ -75.925819396972599, -10.362704277038517 ], [ -75.9261474609375, -10.363010406494084 ], [ -75.927200317382812, -10.363297462463379 ], [ -75.927810668945312, -10.363827705383301 ], [ -75.928520202636719, -10.36398983001709 ], [ -75.929771423339844, -10.365015029907227 ], [ -75.930580139160099, -10.366634368896428 ], [ -75.932632446289062, -10.369285583496094 ], [ -75.933052062988281, -10.370539665222111 ], [ -75.933448791503849, -10.373053550720215 ], [ -75.934509277343693, -10.374940872192383 ], [ -75.934143066406136, -10.377275466918888 ], [ -75.933059692382756, -10.379537582397461 ], [ -75.932868957519474, -10.381429672241211 ], [ -75.932487487792912, -10.382243156433049 ], [ -75.932525634765625, -10.384035110473576 ], [ -75.931358337402287, -10.388399124145508 ], [ -75.931404113769531, -10.389661788940373 ], [ -75.926803588867188, -10.396812438964844 ], [ -75.925132751464844, -10.400107383727914 ], [ -75.925498962402344, -10.401944160461369 ], [ -75.924194335937443, -10.404377937316895 ], [ -75.924842834472656, -10.405561447143555 ], [ -75.925064086914006, -10.406528472900391 ], [ -75.925804138183594, -10.407168388366586 ], [ -75.927238464355469, -10.407427787780705 ], [ -75.928001403808594, -10.408203124999943 ], [ -75.928634643554688, -10.41046142578125 ], [ -75.929275512695256, -10.414447784423828 ], [ -75.930038452148381, -10.416389465332031 ], [ -75.930892944335881, -10.417760848999023 ], [ -75.933525085449219, -10.420377731323185 ], [ -75.936035156249943, -10.422439575195256 ], [ -75.939964294433594, -10.426705360412598 ], [ -75.940399169921875, -10.426984786987305 ], [ -75.941581726074105, -10.427187919616642 ], [ -75.942848205566406, -10.428316116332894 ], [ -75.9432373046875, -10.429227828979492 ], [ -75.943412780761719, -10.43046760559082 ], [ -75.945655822753849, -10.43267631530756 ], [ -75.946228027343693, -10.434952735900822 ], [ -75.947059631347656, -10.436008453369141 ], [ -75.947418212890625, -10.437408447265568 ], [ -75.948928833007812, -10.437948226928597 ], [ -75.948974609375, -10.439193725585938 ], [ -75.950775146484375, -10.44097900390625 ], [ -75.951545715332031, -10.44338321685791 ], [ -75.952880859375, -10.444284439086914 ], [ -75.953628540039062, -10.44531154632557 ], [ -75.954330444335881, -10.448158264160156 ], [ -75.955802917480469, -10.450216293334904 ], [ -75.956291198730469, -10.451472282409668 ], [ -75.957588195800724, -10.452851295471191 ], [ -75.957542419433594, -10.454832077026367 ], [ -75.957862854003849, -10.455870628356877 ], [ -75.959320068359261, -10.457819938659668 ], [ -75.960594177246094, -10.460310935974121 ], [ -75.961532592773438, -10.46115779876709 ], [ -75.961654663085938, -10.461872100830078 ], [ -75.962646484374943, -10.462647438049316 ], [ -75.96307373046875, -10.463659286498967 ], [ -75.967041015624943, -10.469722747802678 ], [ -75.973617553710881, -10.476404190063477 ], [ -75.9771728515625, -10.479350090026799 ], [ -75.979080200195312, -10.480555534362793 ], [ -75.983184814453125, -10.482001304626408 ], [ -75.984886169433594, -10.482990264892521 ], [ -75.985954284667969, -10.483210563659668 ], [ -75.987823486328068, -10.484127998352051 ], [ -75.991859436035156, -10.485500335693359 ], [ -75.99727630615223, -10.488421440124398 ], [ -76.000038146972599, -10.490312576293945 ], [ -76.001655578613224, -10.490704536437988 ], [ -76.002342224121094, -10.489462852477971 ], [ -76.003646850585881, -10.487849235534554 ], [ -76.003364562988224, -10.483011245727539 ], [ -76.003898620605469, -10.480469703674316 ], [ -76.00848388671875, -10.47589111328125 ], [ -76.009056091308594, -10.474575996398926 ], [ -76.009361267089787, -10.472439765930119 ], [ -76.009330749511719, -10.465261459350586 ], [ -76.009719848632812, -10.463054656982365 ], [ -76.009735107421818, -10.461434364318848 ], [ -76.010208129882812, -10.459243774414006 ], [ -76.010452270507812, -10.454850196838379 ], [ -76.010940551757812, -10.453817367553711 ], [ -76.01141357421875, -10.45355319976801 ], [ -76.012588500976562, -10.453740119934025 ], [ -76.017776489257756, -10.458715438842717 ], [ -76.019828796386719, -10.459403991699219 ], [ -76.022102355957031, -10.460852622985783 ], [ -76.023094177246037, -10.462151527404785 ], [ -76.024703979492188, -10.466532707214355 ], [ -76.025680541992131, -10.467506408691406 ], [ -76.026405334472656, -10.467775344848576 ], [ -76.02783203125, -10.467434883117676 ], [ -76.029533386230469, -10.466191291809082 ], [ -76.030258178710881, -10.465329170227051 ], [ -76.030601501464844, -10.463638305664006 ], [ -76.030975341796875, -10.459251403808537 ], [ -76.031425476074219, -10.458272933959961 ], [ -76.031692504882756, -10.45595741271967 ], [ -76.032073974609318, -10.45515060424799 ], [ -76.03271484375, -10.455129623413086 ], [ -76.033615112304688, -10.455742835998478 ], [ -76.034233093261719, -10.455814361572209 ], [ -76.035308837890568, -10.455629348754883 ], [ -76.038230895996094, -10.454216003417969 ], [ -76.040374755859318, -10.454489707946777 ], [ -76.044425964355469, -10.456501960754338 ], [ -76.046707153320312, -10.458125114440918 ], [ -76.048767089843693, -10.46052265167225 ], [ -76.050079345703068, -10.462967872619572 ], [ -76.051101684570312, -10.463995933532658 ], [ -76.054039001464844, -10.465403556823674 ], [ -76.055892944335881, -10.465796470642033 ], [ -76.057945251464844, -10.46511268615717 ], [ -76.058708190917969, -10.464332580566406 ], [ -76.059898376464787, -10.4621324539184 ], [ -76.063087463378906, -10.459643363952637 ], [ -76.069488525390625, -10.45638370513916 ], [ -76.070846557617188, -10.454281806945801 ], [ -76.072433471679688, -10.452703475952092 ], [ -76.073234558105469, -10.452508926391545 ], [ -76.077133178710938, -10.452416419982796 ], [ -76.078369140625, -10.451509475708008 ], [ -76.078277587890625, -10.449952125549316 ], [ -76.077644348144474, -10.448553085327148 ], [ -76.076271057128906, -10.446685791015625 ], [ -76.075424194335938, -10.444990158080998 ], [ -76.07509613037098, -10.442784309387093 ], [ -76.074394226074162, -10.441510200500431 ], [ -76.074218749999943, -10.440650939941349 ], [ -76.074676513671875, -10.439393043518066 ], [ -76.076171875, -10.436836242675724 ], [ -76.077461242675724, -10.435336112976074 ], [ -76.079261779785099, -10.434104919433594 ], [ -76.080711364746037, -10.433665275573674 ], [ -76.084335327148381, -10.433961868286133 ], [ -76.086036682128849, -10.43363094329834 ], [ -76.086807250976506, -10.433168411254826 ], [ -76.089584350585881, -10.430362701415902 ], [ -76.091011047363224, -10.429580688476506 ], [ -76.092979431152344, -10.429303169250431 ], [ -76.094429016113224, -10.429559707641602 ], [ -76.095222473144531, -10.429937362670785 ], [ -76.095809936523438, -10.430759429931641 ], [ -76.096511840820312, -10.432391166687012 ], [ -76.097305297851506, -10.433394432067757 ], [ -76.098045349121037, -10.433906555175781 ], [ -76.099113464355412, -10.434371948242074 ], [ -76.099952697753849, -10.434496879577637 ], [ -76.100852966308594, -10.43337345123291 ], [ -76.102210998535156, -10.433366775512582 ], [ -76.102584838867188, -10.433620452880859 ], [ -76.103378295898438, -10.435026168823242 ], [ -76.10418701171875, -10.43544960021967 ], [ -76.105293273925724, -10.435173988342285 ], [ -76.106353759765568, -10.43433761596674 ], [ -76.107170104980469, -10.433052062988281 ], [ -76.108299255371094, -10.430444717407227 ], [ -76.109169006347656, -10.429526329040527 ], [ -76.11041259765625, -10.428790092468205 ], [ -76.114723205566406, -10.428340911865178 ], [ -76.116256713867188, -10.427556991577148 ], [ -76.119682312011719, -10.426750183105469 ], [ -76.121192932128906, -10.427060127258301 ], [ -76.122451782226562, -10.428232192993164 ], [ -76.123260498046875, -10.42863655090332 ], [ -76.128074645996094, -10.429496765136662 ], [ -76.1298828125, -10.430023193359375 ], [ -76.130363464355469, -10.429760932922363 ], [ -76.1307373046875, -10.429055213928109 ], [ -76.131187438964844, -10.425572395324707 ], [ -76.131874084472656, -10.423814773559513 ], [ -76.132072448730469, -10.421669960021973 ], [ -76.132606506347656, -10.420330047607365 ], [ -76.133865356445312, -10.418816566467228 ], [ -76.136810302734375, -10.417448997497502 ], [ -76.138435363769531, -10.416266441345215 ], [ -76.139518737792969, -10.413921356201172 ], [ -76.140304565429631, -10.410681724548283 ], [ -76.14111328125, -10.409095764160043 ], [ -76.141921997070256, -10.408369064330998 ], [ -76.143714904785156, -10.408291816711426 ], [ -76.146804809570256, -10.4097642898559 ], [ -76.1484375, -10.409659385681152 ], [ -76.1502685546875, -10.40852165222168 ], [ -76.151344299316406, -10.408434867858887 ], [ -76.154266357421875, -10.410694122314396 ], [ -76.1578369140625, -10.412219047546273 ], [ -76.164131164550781, -10.413534164428597 ], [ -76.167251586914062, -10.413152694702035 ], [ -76.17010498046875, -10.412019729614258 ], [ -76.172454833984318, -10.411361694335881 ], [ -76.173988342285099, -10.410232543945256 ], [ -76.175102233886662, -10.409877777099609 ], [ -76.177879333496037, -10.408328056335449 ], [ -76.179412841796818, -10.407103538513184 ], [ -76.181289672851562, -10.404782295227051 ], [ -76.1824951171875, -10.400845527648926 ], [ -76.183807373046818, -10.398072242736816 ], [ -76.185127258300724, -10.395717620849553 ], [ -76.186408996582031, -10.394489288330021 ], [ -76.186912536621094, -10.394282341003361 ], [ -76.188713073730469, -10.394510269165039 ], [ -76.189971923828125, -10.394331932067871 ], [ -76.19366455078125, -10.392464637756348 ], [ -76.197921752929631, -10.392359733581486 ], [ -76.202323913574219, -10.388951301574707 ], [ -76.203430175781193, -10.388930320739689 ], [ -76.205276489257812, -10.389384269714355 ], [ -76.206275939941406, -10.38941574096674 ], [ -76.207168579101506, -10.389277458190918 ], [ -76.207923889160099, -10.388631820678654 ], [ -76.208015441894474, -10.386678695678711 ], [ -76.207778930664062, -10.386001586914006 ], [ -76.207649230956974, -10.384038925170842 ], [ -76.205932617187443, -10.380675315856934 ], [ -76.203880310058594, -10.37804126739502 ], [ -76.203842163085824, -10.37741756439209 ], [ -76.204124450683537, -10.376746177673226 ], [ -76.205352783203068, -10.376442909240723 ], [ -76.208419799804574, -10.376693725585938 ], [ -76.213943481445256, -10.376629829406738 ], [ -76.217437744140625, -10.376126289367562 ], [ -76.223960876464787, -10.374637603759709 ], [ -76.228118896484375, -10.372659683227539 ], [ -76.230842590332031, -10.371672630310002 ], [ -76.231307983398324, -10.373525619506836 ], [ -76.231094360351506, -10.37548828125 ], [ -76.228218078613281, -10.38444995880127 ], [ -76.226348876953011, -10.393238067626896 ], [ -76.226348876953011, -10.396114349365178 ], [ -76.226730346679574, -10.396617889404297 ], [ -76.227348327636719, -10.396777153015137 ], [ -76.228569030761719, -10.396078109741097 ], [ -76.232055664062443, -10.39173412322998 ], [ -76.232322692871037, -10.39106369018549 ], [ -76.232528686523381, -10.38909912109375 ], [ -76.233428955078125, -10.387639999389648 ], [ -76.237846374511719, -10.386673927307072 ], [ -76.242752075195199, -10.384365081787053 ], [ -76.245719909667969, -10.382167816162053 ], [ -76.249244689941406, -10.378933906555176 ], [ -76.256019592285156, -10.374975204467717 ], [ -76.258941650390568, -10.37217903137207 ], [ -76.262290954589787, -10.371677398681584 ], [ -76.263519287109318, -10.37109375 ], [ -76.264854431152287, -10.370861053466797 ], [ -76.267738342285043, -10.369802474975586 ], [ -76.269187927246094, -10.369742393493652 ], [ -76.270515441894531, -10.370649337768555 ], [ -76.271041870117131, -10.373568534851017 ], [ -76.272575378417912, -10.377323150634709 ], [ -76.273292541503906, -10.380114555358887 ], [ -76.273628234863224, -10.380727767944222 ], [ -76.274864196777287, -10.381944656372013 ], [ -76.275192260742188, -10.382685661315918 ], [ -76.275062561035099, -10.384295463562012 ], [ -76.274314880371037, -10.386216163635197 ], [ -76.273773193359375, -10.389117240905705 ], [ -76.274505615234318, -10.390574455261117 ], [ -76.276031494140568, -10.391706466674805 ], [ -76.277656555175668, -10.393732070922852 ], [ -76.277732849121037, -10.396254539489746 ], [ -76.276878356933537, -10.401801109313908 ], [ -76.277526855468693, -10.40471076965332 ], [ -76.279335021972656, -10.407903671264535 ], [ -76.283943176269474, -10.413464546203613 ], [ -76.285026550292969, -10.41533184051508 ], [ -76.286140441894474, -10.416250228881836 ], [ -76.287841796874943, -10.41630744934082 ], [ -76.298690795898438, -10.410774230957031 ], [ -76.299766540527287, -10.41092395782465 ], [ -76.303855895996037, -10.413249015808049 ], [ -76.305320739746094, -10.413714408874455 ], [ -76.306404113769531, -10.411594390869141 ], [ -76.306571960449219, -10.410263061523438 ], [ -76.307060241699219, -10.409005165100041 ], [ -76.307693481445256, -10.408241271972543 ], [ -76.30877685546875, -10.407624244689941 ], [ -76.309539794921875, -10.405894279479924 ], [ -76.309646606445312, -10.403931617736816 ], [ -76.309349060058594, -10.402800559997559 ], [ -76.308837890624943, -10.40185546875 ], [ -76.308540344238224, -10.39871692657465 ], [ -76.309234619140625, -10.397358894348088 ], [ -76.309783935546818, -10.395366668701058 ], [ -76.311500549316349, -10.391301155090332 ], [ -76.311897277832031, -10.388397216796818 ], [ -76.312767028808594, -10.387615203857365 ], [ -76.313117980956974, -10.386979103088322 ], [ -76.313117980956974, -10.384556770324707 ], [ -76.313491821289006, -10.382520675659123 ], [ -76.316429138183594, -10.377074241638184 ], [ -76.318542480468693, -10.373730659484806 ], [ -76.319061279296875, -10.372190475463867 ], [ -76.319931030273438, -10.371056556701603 ], [ -76.319412231445256, -10.368988037109375 ], [ -76.31976318359375, -10.367785453796387 ], [ -76.319915771484375, -10.363189697265568 ], [ -76.322280883789006, -10.360739707946777 ], [ -76.323478698730469, -10.358519554138127 ], [ -76.323371887207031, -10.355744361877441 ], [ -76.320671081542969, -10.352596282958984 ], [ -76.319808959960824, -10.350639343261605 ], [ -76.3199462890625, -10.349303245544434 ], [ -76.320777893066406, -10.348121643066349 ], [ -76.320777893066406, -10.347199440002385 ], [ -76.320175170898381, -10.346299171447754 ], [ -76.319396972656193, -10.345661163330021 ], [ -76.317901611328011, -10.345710754394531 ], [ -76.317451477050781, -10.344058990478402 ], [ -76.317245483398438, -10.341083526611271 ], [ -76.319221496581974, -10.335697174072266 ], [ -76.319198608398438, -10.333353996276742 ], [ -76.319419860839787, -10.331753730773869 ], [ -76.320388793945312, -10.329146385192814 ], [ -76.321533203125, -10.327107429504281 ], [ -76.322982788085938, -10.323820114135742 ], [ -76.327468872070312, -10.317644119262695 ], [ -76.328903198242188, -10.31627178192133 ], [ -76.330451965332031, -10.315341949462834 ], [ -76.329605102539006, -10.312778472900277 ], [ -76.32720947265625, -10.309858322143498 ], [ -76.325836181640625, -10.307016372680664 ], [ -76.325851440429688, -10.305053710937386 ], [ -76.326385498046818, -10.303333282470589 ], [ -76.330490112304574, -10.298669815063477 ], [ -76.332115173339844, -10.296293258666935 ], [ -76.33306884765625, -10.293966293334961 ], [ -76.333648681640625, -10.289983749389648 ], [ -76.334823608398438, -10.287943840026799 ], [ -76.33642578125, -10.285877227783146 ], [ -76.337425231933537, -10.28627967834467 ], [ -76.343009948730469, -10.285994529724121 ], [ -76.344558715820312, -10.286503791809082 ], [ -76.345565795898438, -10.28725624084467 ], [ -76.347366333007756, -10.289521217346135 ], [ -76.350219726562443, -10.292148590087834 ], [ -76.352439880371094, -10.294760704040527 ], [ -76.355583190917969, -10.296910285949707 ], [ -76.357078552246037, -10.297500610351506 ], [ -76.358070373535156, -10.297323226928711 ], [ -76.361320495605469, -10.297417640685978 ], [ -76.364784240722656, -10.298425674438363 ], [ -76.366050720214787, -10.298266410827637 ], [ -76.367324829101562, -10.297592163085881 ], [ -76.371109008789006, -10.293940544128361 ], [ -76.372367858886719, -10.293059349060059 ], [ -76.373992919921875, -10.292654991149902 ], [ -76.379150390625, -10.292043685913086 ], [ -76.386878967285156, -10.289109230041504 ], [ -76.389442443847656, -10.291892051696777 ], [ -76.396041870117188, -10.302297592163029 ], [ -76.402214050292969, -10.308274269104004 ], [ -76.40283203125, -10.308627128601017 ], [ -76.405532836914006, -10.308497428894043 ], [ -76.406181335449162, -10.308730125427189 ], [ -76.411750793457031, -10.312411308288574 ], [ -76.415756225585938, -10.314302444458008 ], [ -76.420639038085938, -10.315979957580566 ], [ -76.423065185546818, -10.317849159240666 ], [ -76.425529479980469, -10.318979263305664 ], [ -76.426971435546818, -10.318854331970101 ], [ -76.431312561035156, -10.319025039672738 ], [ -76.434112548828125, -10.318452835082894 ], [ -76.436134338378849, -10.318967819213867 ], [ -76.43865966796875, -10.319061279296818 ], [ -76.440139770507756, -10.319745063781681 ], [ -76.441558837890568, -10.320063591003361 ], [ -76.445266723632812, -10.319930076599121 ], [ -76.446762084960938, -10.31933498382557 ], [ -76.447647094726562, -10.317567825317326 ], [ -76.447914123535156, -10.316265106201172 ], [ -76.448753356933594, -10.315347671508789 ], [ -76.452384948730469, -10.31462574005127 ], [ -76.457580566406193, -10.315361976623478 ], [ -76.461082458496094, -10.314906120300293 ], [ -76.463722229003906, -10.313735008239746 ], [ -76.467231750488224, -10.311196327209473 ], [ -76.46929931640625, -10.310544013977051 ], [ -76.470924377441406, -10.310365676879883 ], [ -76.473632812499943, -10.310470581054631 ], [ -76.478050231933594, -10.311481475830078 ], [ -76.481483459472656, -10.31157398223877 ], [ -76.485298156738281, -10.312308311462402 ], [ -76.486640930175781, -10.312101364135742 ], [ -76.49017333984375, -10.310494422912541 ], [ -76.492698669433537, -10.310275077819711 ], [ -76.493904113769531, -10.310414314269906 ], [ -76.49359130859375, -10.311257362365666 ], [ -76.489356994628849, -10.31580734252924 ], [ -76.486839294433594, -10.318981170654297 ], [ -76.48406982421875, -10.323615074157658 ], [ -76.482460021972656, -10.327121734619141 ], [ -76.479568481445312, -10.329438209533691 ], [ -76.477745056152344, -10.332414627075195 ], [ -76.473594665527344, -10.334638595580998 ], [ -76.472579956054631, -10.336532592773438 ], [ -76.472602844238281, -10.337129592895451 ], [ -76.474182128906193, -10.340459823608342 ], [ -76.476348876953125, -10.343549728393555 ], [ -76.476608276367188, -10.344680786132812 ], [ -76.476593017578011, -10.34656810760498 ], [ -76.476806640625, -10.347083091735726 ], [ -76.478721618652344, -10.348086357116699 ], [ -76.482620239257812, -10.348883628845158 ], [ -76.484138488769531, -10.350187301635685 ], [ -76.484764099121037, -10.351062774658203 ], [ -76.4854736328125, -10.353208541870117 ], [ -76.485824584960881, -10.355080604553223 ], [ -76.486129760742074, -10.361904144287109 ], [ -76.486427307128906, -10.362953186035156 ], [ -76.486274719238281, -10.363260269164982 ], [ -76.48626708984375, -10.36644172668457 ], [ -76.486892700195199, -10.367217063903809 ], [ -76.490501403808537, -10.369498252868539 ], [ -76.491973876953125, -10.371064186096135 ], [ -76.492256164550781, -10.373584747314396 ], [ -76.490814208984375, -10.376185417175293 ], [ -76.490638732910156, -10.376873970031681 ], [ -76.490776062011662, -10.377959251403752 ], [ -76.491508483886719, -10.379112243652344 ], [ -76.492324829101506, -10.37982273101801 ], [ -76.493545532226506, -10.380425453186035 ], [ -76.497123718261719, -10.380911827087346 ], [ -76.497589111328125, -10.380683898925781 ], [ -76.498855590820312, -10.380768775939885 ], [ -76.500152587890625, -10.380481719970646 ], [ -76.501770019531136, -10.380681991577148 ], [ -76.503570556640568, -10.380078315734863 ], [ -76.504890441894474, -10.380288124084416 ], [ -76.508537292480412, -10.381780624389648 ], [ -76.510047912597599, -10.381728172302246 ], [ -76.511085510253849, -10.381390571594238 ], [ -76.515556335449219, -10.381767272949219 ], [ -76.517799377441406, -10.380762100219727 ], [ -76.519882202148381, -10.378455162048283 ], [ -76.521797180175668, -10.377776145935002 ], [ -76.524635314941349, -10.377257347106934 ], [ -76.525207519531193, -10.377653121948185 ], [ -76.525718688964844, -10.379622459411621 ], [ -76.527267456054688, -10.382779121398869 ], [ -76.52838134765625, -10.3841295242309 ], [ -76.530052185058594, -10.385514259338379 ], [ -76.532791137695312, -10.386331558227482 ], [ -76.536018371582031, -10.385801315307617 ], [ -76.537803649902287, -10.385729789733887 ], [ -76.540534973144531, -10.386918067932129 ], [ -76.541732788085938, -10.387077331542969 ], [ -76.544448852539062, -10.386729240417424 ], [ -76.548782348632756, -10.385106086730957 ], [ -76.550270080566406, -10.38501930236805 ], [ -76.551628112792912, -10.385643959045353 ], [ -76.553718566894474, -10.388138771057015 ], [ -76.556869506835881, -10.391134262084961 ], [ -76.557739257812443, -10.391483306884766 ], [ -76.559623718261662, -10.39166259765625 ], [ -76.560821533203125, -10.391378402709904 ], [ -76.561752319335881, -10.390615463256779 ], [ -76.566665649414062, -10.384406089782715 ], [ -76.567581176757812, -10.383604049682617 ], [ -76.568855285644531, -10.383120536804142 ], [ -76.569610595703125, -10.382546424865723 ], [ -76.573936462402287, -10.377181053161621 ], [ -76.575012207031136, -10.376543045043945 ], [ -76.576606750488224, -10.376408576965218 ], [ -76.578681945800781, -10.377121925354004 ], [ -76.580131530761662, -10.377882957458439 ], [ -76.582588195800781, -10.380004882812443 ], [ -76.583183288574162, -10.381078720092717 ], [ -76.583831787109375, -10.384248733520451 ], [ -76.585021972656193, -10.385707855224553 ], [ -76.5858154296875, -10.385929107666016 ], [ -76.586761474609375, -10.385807991027832 ], [ -76.588569641113281, -10.384650230407658 ], [ -76.589515686035156, -10.384474754333496 ], [ -76.591545104980469, -10.385258674621525 ], [ -76.593299865722599, -10.387121200561523 ], [ -76.594184875488281, -10.389540672302246 ], [ -76.594215393066406, -10.394532203674203 ], [ -76.593605041503849, -10.396162033080998 ], [ -76.590927124023381, -10.399574279785156 ], [ -76.590675354003906, -10.400217056274414 ], [ -76.590782165527344, -10.400723457336369 ], [ -76.592071533203068, -10.401178359985352 ], [ -76.593826293945312, -10.400971412658691 ], [ -76.596084594726506, -10.401111602783203 ], [ -76.605812072753849, -10.403902053832894 ], [ -76.606781005859375, -10.404333114624023 ], [ -76.6072998046875, -10.405035018920842 ], [ -76.609466552734375, -10.406425476074105 ], [ -76.612838745117131, -10.409364700317383 ], [ -76.617164611816293, -10.411640167236271 ], [ -76.617828369140568, -10.412676811218205 ], [ -76.619094848632812, -10.413926124572754 ], [ -76.621421813964787, -10.414980888366642 ], [ -76.624465942382812, -10.415760040283146 ], [ -76.625549316406193, -10.415664672851506 ], [ -76.626808166503906, -10.415134429931641 ], [ -76.628318786621037, -10.41508960723877 ], [ -76.632301330566349, -10.417104721069336 ], [ -76.633232116699219, -10.41688156127924 ], [ -76.634880065917912, -10.415102005004883 ], [ -76.635787963867188, -10.414644241332951 ], [ -76.637123107910156, -10.415017127990666 ], [ -76.6395263671875, -10.414590835571289 ], [ -76.642768859863281, -10.414972305297852 ], [ -76.647125244140625, -10.415021896362248 ], [ -76.648895263671818, -10.415717124938908 ], [ -76.649734497070312, -10.416410446166992 ], [ -76.650558471679688, -10.417471885681152 ], [ -76.651367187499943, -10.419195175170898 ], [ -76.652130126953068, -10.419985771179199 ], [ -76.655181884765568, -10.420576095580998 ], [ -76.658264160156193, -10.420730590820199 ], [ -76.659126281738168, -10.421394348144474 ], [ -76.660140991210881, -10.422845840454045 ], [ -76.661369323730469, -10.428363800048714 ], [ -76.663833618164062, -10.431748390197754 ], [ -76.663833618164062, -10.432980537414551 ], [ -76.663360595703125, -10.434673309326172 ], [ -76.663589477539006, -10.436397552490234 ], [ -76.664482116699219, -10.437408447265568 ], [ -76.666160583496037, -10.438565254211369 ], [ -76.669097900390625, -10.439678192138615 ], [ -76.670578002929688, -10.439850807189941 ], [ -76.674415588378906, -10.438980102539062 ], [ -76.677696228027287, -10.437671661376896 ], [ -76.679107666015625, -10.437564849853516 ], [ -76.687545776367074, -10.440188407897949 ], [ -76.691314697265625, -10.441758155822754 ], [ -76.69415283203125, -10.441986083984318 ], [ -76.69586181640625, -10.442520141601562 ], [ -76.697044372558594, -10.44317626953125 ], [ -76.698539733886719, -10.445425987243652 ], [ -76.698471069335938, -10.448392868041992 ], [ -76.699569702148438, -10.450040817260685 ], [ -76.699295043945312, -10.450963973999023 ], [ -76.697723388671818, -10.45333194732666 ], [ -76.697822570800724, -10.455086708068734 ], [ -76.698898315429688, -10.457105636596623 ], [ -76.701377868652344, -10.460825920104924 ], [ -76.702438354492188, -10.46138858795166 ], [ -76.70379638671875, -10.461347579956055 ], [ -76.706390380859375, -10.460573196411133 ], [ -76.708709716796818, -10.461336135864258 ], [ -76.713600158691406, -10.461221694946289 ], [ -76.715446472167969, -10.461798667907658 ], [ -76.716789245605412, -10.462885856628418 ], [ -76.71923828125, -10.465827941894474 ], [ -76.720893859863224, -10.468938827514535 ], [ -76.72206878662098, -10.470432281494141 ], [ -76.722679138183594, -10.471612930297738 ], [ -76.723739624023438, -10.475901603698674 ], [ -76.723915100097656, -10.477511405944767 ], [ -76.723808288574219, -10.478720664978027 ], [ -76.723236083984375, -10.480091094970703 ], [ -76.723083496093693, -10.481304168701172 ], [ -76.723243713378906, -10.483696937560921 ], [ -76.724250793456974, -10.484823226928711 ], [ -76.726203918457031, -10.484991073608398 ], [ -76.726524353027287, -10.484242439269963 ], [ -76.727996826171875, -10.482650756835938 ], [ -76.728569030761719, -10.481591224670353 ], [ -76.729133605957031, -10.479779243469181 ], [ -76.729225158691406, -10.476143836975041 ], [ -76.729827880859375, -10.474784851074162 ], [ -76.730659484863281, -10.474082946777344 ], [ -76.732643127441349, -10.473584175109806 ], [ -76.733856201171875, -10.47297286987299 ], [ -76.738197326660156, -10.468321800231934 ], [ -76.739585876464787, -10.46720027923584 ], [ -76.741004943847656, -10.466831207275391 ], [ -76.742935180664006, -10.466837882995549 ], [ -76.746833801269474, -10.468038558959961 ], [ -76.747772216796875, -10.468151092529297 ], [ -76.749908447265568, -10.467703819274846 ], [ -76.751869201660156, -10.466827392578125 ], [ -76.755409240722656, -10.467990875244141 ], [ -76.756561279296818, -10.468173980712891 ], [ -76.757843017578125, -10.467352867126465 ], [ -76.759170532226562, -10.46581935882557 ], [ -76.761405944824219, -10.464494705200195 ], [ -76.764495849609318, -10.464215278625431 ], [ -76.769538879394474, -10.464522361755371 ], [ -76.771705627441406, -10.464120864868164 ], [ -76.772781372070256, -10.463556289672852 ], [ -76.773345947265568, -10.462910652160531 ], [ -76.773529052734375, -10.46216773986805 ], [ -76.773063659667912, -10.459612846374455 ], [ -76.773300170898438, -10.457667350769043 ], [ -76.774009704589787, -10.457013130187988 ], [ -76.7760009765625, -10.45584583282465 ], [ -76.777168273925724, -10.454706192016545 ], [ -76.77960205078125, -10.450038909912109 ], [ -76.784317016601506, -10.444642066955566 ], [ -76.785476684570256, -10.442981719970703 ], [ -76.78692626953125, -10.439663887023926 ], [ -76.788139343261662, -10.438752174377385 ], [ -76.78912353515625, -10.43834209442133 ], [ -76.792327880859318, -10.438994407653752 ], [ -76.794502258300781, -10.439025878906193 ], [ -76.797561645507812, -10.439667701721191 ], [ -76.799293518066349, -10.439396858215332 ], [ -76.800445556640568, -10.438650131225586 ], [ -76.801361083984375, -10.434160232543945 ], [ -76.802757263183594, -10.430500030517578 ], [ -76.802925109863224, -10.428753852844181 ], [ -76.802749633788949, -10.427281379699707 ], [ -76.802276611328125, -10.425999641418343 ], [ -76.800300598144531, -10.423262596130314 ], [ -76.799499511718693, -10.421694755554199 ], [ -76.799293518066349, -10.419952392578068 ], [ -76.799819946289062, -10.419010162353459 ], [ -76.799995422363281, -10.418501853942814 ], [ -76.802047729492131, -10.416330337524414 ], [ -76.802970886230469, -10.414859771728516 ], [ -76.804046630859375, -10.412358283996525 ], [ -76.804931640624943, -10.409251213073674 ], [ -76.806289672851562, -10.401814460754395 ], [ -76.806129455566406, -10.399248123168945 ], [ -76.805168151855469, -10.397600173950138 ], [ -76.805038452148324, -10.396976470947209 ], [ -76.805450439453125, -10.394830703735295 ], [ -76.806159973144474, -10.393226623535156 ], [ -76.806098937988281, -10.392277717590332 ], [ -76.806961059570312, -10.391910552978459 ], [ -76.807907104492188, -10.391842842101994 ], [ -76.810966491699219, -10.392495155334416 ], [ -76.814743041992131, -10.392989158630371 ], [ -76.822906494140625, -10.392741203308049 ], [ -76.824378967285099, -10.392554283142033 ], [ -76.825546264648438, -10.392148017883187 ], [ -76.826606750488281, -10.391555786132812 ], [ -76.827903747558537, -10.390345573425236 ], [ -76.828567504882756, -10.390151977539062 ], [ -76.829505920410156, -10.390660285949707 ], [ -76.830764770507756, -10.392733573913517 ], [ -76.831459045410156, -10.392928123474064 ], [ -76.832183837890568, -10.392636299133301 ], [ -76.83319091796875, -10.391319274902344 ], [ -76.833549499511662, -10.388369560241642 ], [ -76.835227966308594, -10.385296821594238 ], [ -76.838531494140625, -10.375170707702637 ], [ -76.839065551757756, -10.372527122497502 ], [ -76.839546203613224, -10.367155075073185 ], [ -76.840667724609375, -10.363486289977914 ], [ -76.841049194335938, -10.363115310668945 ], [ -76.841323852539062, -10.363150596618652 ], [ -76.841918945312443, -10.363886833190918 ], [ -76.843460083007756, -10.367918968200684 ], [ -76.844505310058537, -10.369342803955078 ], [ -76.846122741699162, -10.370996475219613 ], [ -76.847984313964844, -10.372115135192871 ], [ -76.853340148925781, -10.373630523681641 ], [ -76.857170104980412, -10.377269744873047 ], [ -76.859100341796818, -10.375613212585449 ], [ -76.859954833984318, -10.375191688537598 ], [ -76.863052368164062, -10.374758720397949 ], [ -76.865829467773438, -10.375176429748535 ], [ -76.866264343261605, -10.37430477142334 ], [ -76.866279602050781, -10.371068954467717 ], [ -76.864456176757812, -10.367167472839355 ], [ -76.86431884765625, -10.365421295165902 ], [ -76.864730834960881, -10.362618446350098 ], [ -76.865791320800781, -10.35969066619873 ], [ -76.866806030273381, -10.357796669006291 ], [ -76.870285034179688, -10.352633476257324 ], [ -76.873855590820312, -10.348967552185002 ], [ -76.874519348144531, -10.346787452697754 ], [ -76.874435424804631, -10.34556770324707 ], [ -76.874053955078068, -10.344411849975586 ], [ -76.869285583496037, -10.339585304260197 ], [ -76.868911743164006, -10.338998794555664 ], [ -76.868850708007812, -10.338432312011605 ], [ -76.869094848632756, -10.338021278381348 ], [ -76.870277404785156, -10.337256431579533 ], [ -76.871452331542969, -10.336109161376896 ], [ -76.872421264648438, -10.334513664245605 ], [ -76.872795104980469, -10.332657814025879 ], [ -76.872543334960881, -10.328997611999512 ], [ -76.872673034667969, -10.327388763427734 ], [ -76.87469482421875, -10.323428153991642 ], [ -76.875999450683594, -10.318329811096078 ], [ -76.876625061035099, -10.316691398620605 ], [ -76.879852294921875, -10.310297966003418 ], [ -76.880737304687443, -10.309281349182129 ], [ -76.882522583007812, -10.30781364440918 ], [ -76.884620666503906, -10.306844711303711 ], [ -76.887992858886662, -10.30648040771473 ], [ -76.888885498046875, -10.306150436401254 ], [ -76.889556884765625, -10.305478096008301 ], [ -76.891853332519531, -10.305266380310059 ], [ -76.892784118652344, -10.304716110229379 ], [ -76.893318176269474, -10.304686546325684 ], [ -76.893562316894531, -10.303266525268498 ], [ -76.893455505371094, -10.301385879516602 ], [ -76.892066955566406, -10.295057296752873 ], [ -76.892501831054688, -10.292125701904297 ], [ -76.893363952636719, -10.290295600891 ], [ -76.894371032714787, -10.288860321044922 ], [ -76.900032043457031, -10.285382270812988 ], [ -76.902717590332031, -10.281997680664062 ], [ -76.9052734375, -10.277173042297363 ], [ -76.906448364257812, -10.274045944213867 ], [ -76.906501770019474, -10.272880554199162 ], [ -76.905914306640568, -10.269972801208496 ], [ -76.905570983886719, -10.269396781921387 ], [ -76.906288146972599, -10.26711463928217 ], [ -76.906417846679688, -10.264961242675724 ], [ -76.906944274902344, -10.262737274169922 ], [ -76.90692138671875, -10.26124382019043 ], [ -76.906364440917969, -10.259159088134709 ], [ -76.9066162109375, -10.256879806518555 ], [ -76.90570068359375, -10.255069732665959 ], [ -76.903594970703125, -10.252586364746037 ], [ -76.903114318847656, -10.251078605651855 ], [ -76.90338134765625, -10.249459266662541 ], [ -76.904533386230469, -10.245583534240723 ], [ -76.905662536621094, -10.237162590026855 ], [ -76.906517028808594, -10.23516845703125 ], [ -76.908744812011719, -10.232460975646973 ], [ -76.909690856933594, -10.231921195983887 ], [ -76.912025451660099, -10.231184959411564 ], [ -76.913452148437443, -10.230117797851562 ], [ -76.913932800292912, -10.229337692260742 ], [ -76.914413452148381, -10.227626800537109 ], [ -76.915321350097656, -10.22642803192133 ], [ -76.916206359863224, -10.223458290100098 ], [ -76.916091918945312, -10.220493316650391 ], [ -76.914215087890568, -10.212748527526855 ], [ -76.913482666015625, -10.210428237915039 ], [ -76.911476135253906, -10.206446647644043 ], [ -76.910705566406136, -10.203721046447754 ], [ -76.910232543945312, -10.200922012329045 ], [ -76.910301208496037, -10.196067810058594 ], [ -76.910614013671875, -10.194474220275879 ], [ -76.91204833984375, -10.191419601440316 ], [ -76.913543701171818, -10.1895494461059 ], [ -76.913932800292912, -10.188752174377441 ], [ -76.913841247558537, -10.187629699706974 ], [ -76.912940979003906, -10.185413360595703 ], [ -76.912376403808594, -10.184277534484863 ], [ -76.911369323730412, -10.18034839630127 ], [ -76.909439086914006, -10.177250862121525 ], [ -76.909164428710881, -10.176076889038086 ], [ -76.910018920898381, -10.169654846191406 ], [ -76.91131591796875, -10.164981842041016 ], [ -76.911293029785156, -10.162008285522461 ], [ -76.910964965820256, -10.159460067748967 ], [ -76.911926269531193, -10.155668258666992 ], [ -76.913192749023438, -10.143738746643066 ], [ -76.913597106933594, -10.14275932312006 ], [ -76.913558959960881, -10.14153861999506 ], [ -76.912963867187443, -10.139337539672795 ], [ -76.913215637207031, -10.137056350707951 ], [ -76.914215087890568, -10.134114265441895 ], [ -76.913681030273438, -10.129298210144043 ], [ -76.914016723632756, -10.127433776855469 ], [ -76.915466308593693, -10.12237358093256 ], [ -76.915267944335881, -10.120223045349121 ], [ -76.912292480468693, -10.117175102233887 ], [ -76.910232543945312, -10.115823745727539 ], [ -76.908386230468693, -10.115507125854435 ], [ -76.905906677246037, -10.115449905395508 ], [ -76.904281616210881, -10.115513801574707 ], [ -76.903602600097656, -10.115969657897949 ], [ -76.903106689453125, -10.115856170654297 ], [ -76.89754486083973, -10.117594718933105 ], [ -76.896598815917969, -10.117456436157227 ], [ -76.894325256347656, -10.116555213928223 ], [ -76.887260437011719, -10.116830825805607 ], [ -76.886260986328068, -10.115979194641113 ], [ -76.885673522949219, -10.114480972290039 ], [ -76.886177062988224, -10.109380722045842 ], [ -76.885185241699219, -10.103808403015137 ], [ -76.885215759277287, -10.098274230956974 ], [ -76.884666442871037, -10.097031593322754 ], [ -76.883270263671875, -10.095061302185059 ], [ -76.883216857910099, -10.091148376464844 ], [ -76.882972717285156, -10.089176177978516 ], [ -76.882308959960938, -10.087923049926701 ], [ -76.879600524902287, -10.085616111755371 ], [ -76.878158569335881, -10.083328247070312 ], [ -76.877960205078068, -10.082406997680607 ], [ -76.878250122070256, -10.079901695251465 ], [ -76.87811279296875, -10.078900337219238 ], [ -76.877670288085938, -10.078305244445801 ], [ -76.875846862792969, -10.076959609985295 ], [ -76.874946594238281, -10.07559871673584 ], [ -76.871788024902287, -10.064019203186035 ], [ -76.870208740234375, -10.062527656555119 ], [ -76.867965698242131, -10.061871528625431 ], [ -76.866622924804631, -10.061762809753418 ], [ -76.864509582519531, -10.062189102172795 ], [ -76.860191345214844, -10.063814163207951 ], [ -76.857078552246037, -10.062464714050293 ], [ -76.853080749511662, -10.061130523681641 ], [ -76.852409362792912, -10.060276985168457 ], [ -76.853561401367131, -10.053788185119629 ], [ -76.853965759277344, -10.047593116760254 ], [ -76.855400085449219, -10.042028427124023 ], [ -76.855651855468693, -10.038834571838379 ], [ -76.856582641601562, -10.034210205078011 ], [ -76.856491088867188, -10.027736663818359 ], [ -76.857406616210938, -10.022578239440918 ], [ -76.857368469238224, -10.02065372467041 ], [ -76.857093811035099, -10.019672393798828 ], [ -76.85589599609375, -10.018962860107422 ], [ -76.8548583984375, -10.018644332885742 ], [ -76.852287292480469, -10.018413543701172 ], [ -76.850257873535156, -10.018623352050781 ], [ -76.848693847656193, -10.018180847167912 ], [ -76.846183776855469, -10.016106605529728 ], [ -76.844161987304688, -10.013223648071289 ], [ -76.842590332031193, -10.012185096740666 ], [ -76.840805053710938, -10.011434555053654 ], [ -76.83642578125, -10.010537147521973 ], [ -76.83074951171875, -10.009819030761719 ], [ -76.828186035156193, -10.009607315063477 ], [ -76.824676513671818, -10.009796142578011 ], [ -76.824691772460938, -10.008451461791992 ], [ -76.824325561523438, -10.007756233215332 ], [ -76.82421875, -10.006954193115234 ], [ -76.824134826660156, -10.002715110778695 ], [ -76.82430267333973, -10.000939369201603 ], [ -76.823638916015625, -9.998637199401855 ], [ -76.823554992675781, -9.996034622192383 ], [ -76.823822021484318, -9.994714736938477 ], [ -76.824974060058594, -9.992574691772404 ], [ -76.825531005859318, -9.991062164306641 ], [ -76.826011657714787, -9.989231109619141 ], [ -76.825920104980412, -9.988148689269963 ], [ -76.823631286621037, -9.985893249511719 ], [ -76.821807861328068, -9.981986045837346 ], [ -76.819557189941406, -9.980022430419865 ], [ -76.818374633789006, -9.97868824005127 ], [ -76.817886352539006, -9.974299430847168 ], [ -76.815513610839787, -9.970052719116154 ], [ -76.814941406249943, -9.968393325805664 ], [ -76.814430236816406, -9.962617874145451 ], [ -76.814651489257756, -9.959662437438965 ], [ -76.814933776855412, -9.958909988403263 ], [ -76.815940856933594, -9.95781135559082 ], [ -76.81756591796875, -9.955169677734375 ], [ -76.822547912597656, -9.949745178222656 ], [ -76.824386596679631, -9.946448326110726 ], [ -76.827247619628849, -9.943220138549805 ], [ -76.828857421874943, -9.93992900848383 ], [ -76.829841613769531, -9.938677787780762 ], [ -76.831924438476506, -9.937401771545353 ], [ -76.837677001953125, -9.935371398925781 ], [ -76.840522766113281, -9.933800697326603 ], [ -76.841743469238224, -9.932726860046387 ], [ -76.84375, -9.927736282348633 ], [ -76.844200134277287, -9.922471046447754 ], [ -76.844062805175781, -9.921711921691895 ], [ -76.843566894531136, -9.921036720275879 ], [ -76.841400146484375, -9.919676780700684 ], [ -76.840629577636719, -9.917817115783691 ], [ -76.8411865234375, -9.913709640502873 ], [ -76.841896057128906, -9.910977363586426 ], [ -76.842872619628849, -9.909841537475586 ], [ -76.844169616699219, -9.910186767578125 ], [ -76.845123291015625, -9.910017967224007 ], [ -76.846595764160099, -9.908084869384766 ], [ -76.849472045898381, -9.900672912597599 ], [ -76.851196289062386, -9.897619247436523 ], [ -76.851219177246094, -9.894941329956055 ], [ -76.851676940917969, -9.893527984619084 ], [ -76.852676391601562, -9.892240524291935 ], [ -76.853759765624943, -9.891447067260742 ], [ -76.856224060058537, -9.890310287475586 ], [ -76.857681274413949, -9.889988899230957 ], [ -76.858757019042969, -9.889134407043457 ], [ -76.85894775390625, -9.888480186462402 ], [ -76.859130859375, -9.882829666137695 ], [ -76.860816955566349, -9.878140449523926 ], [ -76.862907409667912, -9.873903274536133 ], [ -76.864364624023438, -9.871945381164551 ], [ -76.865745544433594, -9.870643615722599 ], [ -76.866439819335881, -9.870314598083439 ], [ -76.86822509765625, -9.870123863220158 ], [ -76.869125366210824, -9.869495391845646 ], [ -76.869911193847656, -9.867068290710392 ], [ -76.872100830078125, -9.864325523376408 ], [ -76.872825622558537, -9.862441062927246 ], [ -76.873146057128906, -9.861841201782227 ], [ -76.873214721679631, -9.861039161682072 ], [ -76.871955871581974, -9.857475280761662 ], [ -76.871841430664062, -9.855722427368107 ], [ -76.875534057617188, -9.844745635986328 ], [ -76.876564025878793, -9.842397689819336 ], [ -76.877792358398381, -9.840300559997502 ], [ -76.879486083984318, -9.835465431213322 ], [ -76.880722045898438, -9.832919120788574 ], [ -76.883979797363224, -9.827963829040527 ], [ -76.888374328613224, -9.822661399841195 ], [ -76.895133972167912, -9.81549072265625 ], [ -76.896636962890625, -9.812849044799805 ], [ -76.89947509765625, -9.804553031921387 ], [ -76.900314331054688, -9.800753593444824 ], [ -76.902252197265625, -9.795290946960336 ], [ -76.902999877929688, -9.787785530090275 ], [ -76.903106689453125, -9.783750534057617 ], [ -76.902885437011605, -9.779305458068791 ], [ -76.903121948242188, -9.775001525878793 ], [ -76.902961730956974, -9.773520469665471 ], [ -76.902198791503849, -9.771155357360783 ], [ -76.901962280273438, -9.769602775573674 ], [ -76.902488708496037, -9.767556190490666 ], [ -76.903755187988281, -9.764655113220158 ], [ -76.904739379882812, -9.763501167297363 ], [ -76.905960083007812, -9.763087272644043 ], [ -76.908432006835938, -9.763173103332463 ], [ -76.910820007324219, -9.763704299926758 ], [ -76.911888122558594, -9.76325511932373 ], [ -76.912002563476562, -9.762576103210392 ], [ -76.911437988281193, -9.760427474975529 ], [ -76.911903381347656, -9.759296417236328 ], [ -76.912361145019531, -9.755549430847168 ], [ -76.913909912109375, -9.753263473510742 ], [ -76.914985656738224, -9.751087188720703 ], [ -76.917343139648438, -9.743226051330566 ], [ -76.917953491210824, -9.742491722106934 ], [ -76.919151306152344, -9.741607666015568 ], [ -76.924362182617188, -9.739347457885685 ], [ -76.926734924316406, -9.735761642456055 ], [ -76.927665710449162, -9.73497104644764 ], [ -76.929931640625, -9.733772277831974 ], [ -76.932617187499943, -9.731281280517578 ], [ -76.934669494628906, -9.728975296020451 ], [ -76.935119628906136, -9.727137565612793 ], [ -76.934890747070312, -9.720268249511719 ], [ -76.935485839843693, -9.71970272064209 ], [ -76.936019897460938, -9.718172073364258 ], [ -76.939865112304631, -9.711677551269418 ], [ -76.940887451171875, -9.708743095397949 ], [ -76.941024780273381, -9.70687198638916 ], [ -76.942985534667969, -9.704846382141113 ], [ -76.944259643554631, -9.703805923461857 ], [ -76.945449829101562, -9.703167915344238 ], [ -76.948043823242188, -9.704345703125 ], [ -76.950744628906193, -9.704483032226562 ], [ -76.952011108398438, -9.704984664916992 ], [ -76.953178405761719, -9.706629753112793 ], [ -76.954147338867188, -9.708576202392578 ], [ -76.954544067382756, -9.71123218536377 ], [ -76.955490112304688, -9.712274551391545 ], [ -76.956771850585938, -9.712252616882324 ], [ -76.960823059082031, -9.711514472961426 ], [ -76.962059020996094, -9.71209526062006 ], [ -76.962997436523438, -9.712116241455078 ], [ -76.964523315429688, -9.713003158569336 ], [ -76.965736389160156, -9.713148117065373 ], [ -76.966911315917969, -9.712836265563965 ], [ -76.968032836914062, -9.711626052856388 ], [ -76.968986511230469, -9.711250305175781 ], [ -76.970909118652344, -9.7114000320434 ], [ -76.972038269042969, -9.712126731872502 ], [ -76.973152160644474, -9.713333129882812 ], [ -76.973716735839787, -9.714685440063477 ], [ -76.978408813476506, -9.720271110534668 ], [ -76.980400085449162, -9.723477363586426 ], [ -76.980941772460938, -9.727660179138127 ], [ -76.980026245117131, -9.733795166015568 ], [ -76.980026245117131, -9.735539436340275 ], [ -76.981414794921875, -9.739479064941406 ], [ -76.982208251953068, -9.743453979492188 ], [ -76.983352661132756, -9.744595527648869 ], [ -76.984771728515568, -9.745083808898926 ], [ -76.986022949218693, -9.744615554809513 ], [ -76.989212036132812, -9.740774154663086 ], [ -76.991325378417969, -9.739105224609375 ], [ -76.993545532226506, -9.737790107727051 ], [ -76.995994567871094, -9.737688064575195 ], [ -76.996696472167912, -9.737368583679142 ], [ -76.998153686523381, -9.734167098999023 ], [ -76.998046874999943, -9.73309326171875 ], [ -76.997688293457031, -9.73250675201416 ], [ -76.997756958007756, -9.73155689239502 ], [ -76.998146057128849, -9.730563163757324 ], [ -77.002006530761719, -9.727419853210449 ], [ -77.004066467285099, -9.723475456237736 ], [ -77.009780883789006, -9.717447280883675 ], [ -77.01251220703125, -9.715461730956974 ], [ -77.017402648925724, -9.713253021240234 ], [ -77.019607543945256, -9.711263656616211 ], [ -77.021522521972543, -9.708330154418945 ], [ -77.022171020507756, -9.704079627990723 ], [ -77.022483825683594, -9.703235626220703 ], [ -77.022705078125, -9.701805114746094 ], [ -77.023292541503906, -9.700303077697754 ], [ -77.025733947753906, -9.696962356567383 ], [ -77.026412963867188, -9.695503234863281 ], [ -77.02850341796875, -9.692914009094125 ], [ -77.028961181640511, -9.69080638885498 ], [ -77.031272888183594, -9.68624305725092 ], [ -77.032951354980412, -9.681472778320312 ], [ -77.033790588378849, -9.679685592651367 ], [ -77.034263610839844, -9.677865028381348 ], [ -77.035812377929631, -9.674385070800724 ], [ -77.036964416503849, -9.672689437866154 ], [ -77.037704467773381, -9.670398712158203 ], [ -77.038970947265568, -9.668534278869629 ], [ -77.040000915527287, -9.667673110961914 ], [ -77.040603637695312, -9.666564941406193 ], [ -77.040962219238224, -9.665182113647404 ], [ -77.041267395019531, -9.661336898803654 ], [ -77.041702270507812, -9.659988403320199 ], [ -77.0428466796875, -9.658363342285099 ], [ -77.045417785644531, -9.655853271484318 ], [ -77.047439575195256, -9.652667045593262 ], [ -77.048049926757812, -9.650802612304631 ], [ -77.048873901367131, -9.649313926696777 ], [ -77.05023193359375, -9.643847465515023 ], [ -77.050186157226562, -9.64196872711176 ], [ -77.049697875976562, -9.639971733093262 ], [ -77.048912048339844, -9.638270378112793 ], [ -77.047599792480469, -9.63665771484375 ], [ -77.045738220214787, -9.635991096496582 ], [ -77.04412841796875, -9.634564399719238 ], [ -77.043258666992131, -9.632208824157658 ], [ -77.0428466796875, -9.629020690917969 ], [ -77.042213439941349, -9.627062797546273 ], [ -77.040634155273438, -9.625924110412598 ], [ -77.037971496582031, -9.622090339660645 ], [ -77.036659240722599, -9.620740890502873 ], [ -77.03497314453125, -9.619874954223576 ], [ -77.033073425292969, -9.619776725769043 ], [ -77.031944274902344, -9.620081901550236 ], [ -77.02984619140625, -9.619236946105957 ], [ -77.028633117675781, -9.617823600769043 ], [ -77.028488159179688, -9.615239143371582 ], [ -77.028205871582031, -9.614580154418945 ], [ -77.027252197265625, -9.613492965698185 ], [ -77.026222229003906, -9.612957954406738 ], [ -77.024650573730412, -9.611221313476506 ], [ -77.023620605468636, -9.610901832580566 ], [ -77.022445678710881, -9.611016273498535 ], [ -77.018959045410156, -9.612276077270508 ], [ -77.017837524414062, -9.614607810974121 ], [ -77.016815185546818, -9.615885734558049 ], [ -77.015815734863281, -9.616616249084416 ], [ -77.014633178710881, -9.616731643676701 ], [ -77.013961791992131, -9.616121292114258 ], [ -77.013229370117188, -9.612264633178711 ], [ -77.012771606445312, -9.61149883270258 ], [ -77.011817932128906, -9.610665321350098 ], [ -77.010101318359375, -9.609906196594238 ], [ -77.008758544921875, -9.60870170593256 ], [ -77.007087707519474, -9.60779953002924 ], [ -77.0042724609375, -9.605701446533146 ], [ -77.003028869628906, -9.605472564697266 ], [ -77.002159118652287, -9.605667114257812 ], [ -76.998458862304688, -9.603980064392033 ], [ -76.995887756347656, -9.603652000427246 ], [ -76.994827270507812, -9.603135108947754 ], [ -76.992630004882812, -9.598481178283635 ], [ -76.989341735839844, -9.595879554748535 ], [ -76.988479614257812, -9.593605041503849 ], [ -76.988128662109318, -9.591609001159668 ], [ -76.988151550292969, -9.589042663574219 ], [ -76.989395141601562, -9.582419395446721 ], [ -76.989273071289006, -9.580395698547363 ], [ -76.988754272460938, -9.57960033416748 ], [ -76.987907409667969, -9.578921318054199 ], [ -76.986640930175781, -9.578410148620549 ], [ -76.984390258789006, -9.577926635742188 ], [ -76.983177185058537, -9.57707500457758 ], [ -76.982376098632812, -9.574920654296761 ], [ -76.981788635253906, -9.568206787109375 ], [ -76.981277465820199, -9.565957069396916 ], [ -76.980506896972599, -9.565032005310059 ], [ -76.977409362792969, -9.563078880310059 ], [ -76.977012634277344, -9.561691284179688 ], [ -76.976066589355469, -9.560201644897461 ], [ -76.974784851074162, -9.560474395751953 ], [ -76.973503112792969, -9.561455726623535 ], [ -76.971946716308594, -9.561916351318303 ], [ -76.970901489257812, -9.561670303344727 ], [ -76.969627380371037, -9.560466766357422 ], [ -76.968879699706918, -9.560145378112793 ], [ -76.968063354492188, -9.560140609741211 ], [ -76.964286804199162, -9.561182022094727 ], [ -76.963676452636719, -9.560870170593205 ], [ -76.962501525878906, -9.559730529785099 ], [ -76.961212158203125, -9.559473037719727 ], [ -76.958457946777287, -9.559497833251953 ], [ -76.956001281738224, -9.56091403961176 ], [ -76.955192565917969, -9.560881614685059 ], [ -76.954231262207031, -9.559920310974064 ], [ -76.953659057617188, -9.558992385864258 ], [ -76.952598571777344, -9.55328464508051 ], [ -76.951583862304631, -9.551400184631348 ], [ -76.951759338378906, -9.550471305847111 ], [ -76.953407287597599, -9.54721641540516 ], [ -76.953277587890625, -9.546683311462402 ], [ -76.953742980957031, -9.546100616455021 ], [ -76.954277038574162, -9.544569969177132 ], [ -76.954444885253849, -9.542951583862305 ], [ -76.954284667968693, -9.542174339294377 ], [ -76.948951721191406, -9.536998748779297 ], [ -76.947708129882699, -9.53643608093256 ], [ -76.945060729980469, -9.53590011596674 ], [ -76.943626403808594, -9.534894943237248 ], [ -76.94134521484375, -9.532223701477051 ], [ -76.940277099609375, -9.529317855834961 ], [ -76.937377929687443, -9.52647590637207 ], [ -76.936553955078125, -9.524934768676758 ], [ -76.936874389648438, -9.523912429809513 ], [ -76.938911437988224, -9.520890235900879 ], [ -76.938179016113281, -9.518996238708439 ], [ -76.937774658203068, -9.516304016113281 ], [ -76.938194274902344, -9.51492977142334 ], [ -76.939880371093693, -9.511656761169377 ], [ -76.940223693847656, -9.510497093200627 ], [ -76.939445495605469, -9.508358955383244 ], [ -76.939750671386719, -9.506504058837891 ], [ -76.938583374023438, -9.504856109619141 ], [ -76.938514709472656, -9.50432300567627 ], [ -76.938812255859318, -9.503561019897461 ], [ -76.940391540527344, -9.50157356262207 ], [ -76.940666198730469, -9.500261306762638 ], [ -76.940261840820256, -9.499159812927189 ], [ -76.938232421874943, -9.496533393859806 ], [ -76.938064575195256, -9.494392395019531 ], [ -76.938224792480469, -9.493051528930664 ], [ -76.939125061035043, -9.491501808166504 ], [ -76.941825866699219, -9.488249778747559 ], [ -76.942573547363281, -9.485588073730469 ], [ -76.944099426269531, -9.483825683593693 ], [ -76.947288513183594, -9.479143142700195 ], [ -76.948638916015568, -9.474960327148381 ], [ -76.949394226074162, -9.473635673522949 ], [ -76.950347900390568, -9.470447540283203 ], [ -76.952087402343693, -9.467610359191895 ], [ -76.95220947265625, -9.466534614562988 ], [ -76.948112487792969, -9.457199096679688 ], [ -76.94781494140625, -9.455990791320744 ], [ -76.947708129882699, -9.453830718994141 ], [ -76.947471618652344, -9.4533433914184 ], [ -76.946342468261662, -9.452164649963379 ], [ -76.945098876953068, -9.45195484161377 ], [ -76.944625854492131, -9.451679229736271 ], [ -76.943138122558594, -9.449408531188965 ], [ -76.939903259277344, -9.446812629699707 ], [ -76.937698364257812, -9.443968772888184 ], [ -76.934089660644531, -9.44160270690918 ], [ -76.932395935058594, -9.439841270446721 ], [ -76.931182861328068, -9.43643856048584 ], [ -76.930770874023438, -9.433493614196777 ], [ -76.930122375488281, -9.431427001953125 ], [ -76.930076599121094, -9.427368164062443 ], [ -76.929779052734261, -9.426184654235783 ], [ -76.929962158203068, -9.423980712890625 ], [ -76.931564331054631, -9.421583175659123 ], [ -76.932907104492131, -9.418846130371094 ], [ -76.936019897460938, -9.410784721374512 ], [ -76.936553955078125, -9.405980110168457 ], [ -76.935028076171875, -9.400012969970646 ], [ -76.934188842773438, -9.398110389709416 ], [ -76.932929992675781, -9.396019935607853 ], [ -76.929351806640625, -9.392341613769531 ], [ -76.928054809570256, -9.391634941101074 ], [ -76.925933837890568, -9.391241073608398 ], [ -76.924621582031193, -9.389891624450684 ], [ -76.924583435058594, -9.388463020324707 ], [ -76.925209045410156, -9.385395050048771 ], [ -76.924781799316406, -9.381203651428223 ], [ -76.923767089843693, -9.378806114196721 ], [ -76.919929504394474, -9.371981620788574 ], [ -76.919631958007812, -9.370854377746525 ], [ -76.9176025390625, -9.368568420410156 ], [ -76.916236877441293, -9.367535591125488 ], [ -76.915145874023438, -9.367071151733398 ], [ -76.909736633300724, -9.366866111755314 ], [ -76.907943725585938, -9.366250038146916 ], [ -76.907180786132812, -9.365251541137638 ], [ -76.907402038574219, -9.36366081237793 ], [ -76.906829833984375, -9.362550735473576 ], [ -76.904502868652287, -9.361615180969238 ], [ -76.902275085449219, -9.360244750976506 ], [ -76.900985717773438, -9.358840942382812 ], [ -76.900260925292969, -9.357704162597656 ], [ -76.900077819824219, -9.356856346130314 ], [ -76.900207519531193, -9.355120658874512 ], [ -76.900726318359375, -9.353047370910645 ], [ -76.900550842285156, -9.350805282592773 ], [ -76.899787902832031, -9.348505020141602 ], [ -76.896522521972656, -9.343549728393555 ], [ -76.895111083984375, -9.340537071228027 ], [ -76.894584655761662, -9.337900161743164 ], [ -76.894744873046818, -9.335840225219727 ], [ -76.895294189453125, -9.334518432617188 ], [ -76.895141601562443, -9.332637786865234 ], [ -76.894889831542969, -9.332060813903752 ], [ -76.893280029296875, -9.330504417419434 ], [ -76.892181396484318, -9.330096244812012 ], [ -76.888900756835938, -9.329469680786076 ], [ -76.885986328124943, -9.327667236328125 ], [ -76.881523132324105, -9.325740814208984 ], [ -76.88076019287098, -9.324983596801701 ], [ -76.879531860351562, -9.322677612304688 ], [ -76.877532958984375, -9.320120811462402 ], [ -76.87603759765625, -9.318572998046761 ], [ -76.872947692871094, -9.31607723236084 ], [ -76.867965698242131, -9.309501647949162 ], [ -76.867286682128849, -9.307661056518555 ], [ -76.867401123046818, -9.306234359741211 ], [ -76.868934631347543, -9.303179740905705 ], [ -76.870086669921875, -9.302040100097599 ], [ -76.870323181152344, -9.300811767578068 ], [ -76.869888305663949, -9.299565315246582 ], [ -76.869720458984375, -9.297232627868652 ], [ -76.869171142578125, -9.295718193054199 ], [ -76.868896484375, -9.293758392333928 ], [ -76.868202209472656, -9.292496681213379 ], [ -76.867774963378849, -9.291033744812012 ], [ -76.867279052734318, -9.290512084960881 ], [ -76.86590576171875, -9.289814949035645 ], [ -76.86419677734375, -9.2897691726684 ], [ -76.861198425292912, -9.28912353515625 ], [ -76.85939788818348, -9.289234161376953 ], [ -76.855873107910156, -9.29002857208252 ], [ -76.854881286621037, -9.290042877197209 ], [ -76.854568481445312, -9.289837837219238 ], [ -76.854568481445312, -9.288220405578613 ], [ -76.855705261230469, -9.28752422332758 ], [ -76.856086730957031, -9.286458015441781 ], [ -76.856033325195256, -9.285003662109261 ], [ -76.855636596679688, -9.283811569213754 ], [ -76.854743957519531, -9.282350540161076 ], [ -76.854316711425724, -9.280517578124943 ], [ -76.851982116699219, -9.27596473693842 ], [ -76.849937438964787, -9.273327827453613 ], [ -76.848388671875, -9.270902633666935 ], [ -76.84625244140625, -9.266537666320801 ], [ -76.845733642578068, -9.264840126037598 ], [ -76.844047546386719, -9.26284122467041 ], [ -76.842796325683537, -9.261817932128849 ], [ -76.838134765625, -9.261309623718205 ], [ -76.836563110351562, -9.262113571166992 ], [ -76.835426330566349, -9.263946533203125 ], [ -76.835052490234318, -9.265512466430664 ], [ -76.833816528320256, -9.268601417541447 ], [ -76.833816528320256, -9.26994514465332 ], [ -76.833351135253849, -9.27222728729248 ], [ -76.83349609375, -9.274820327758732 ], [ -76.832122802734261, -9.277712821960392 ], [ -76.832328796386719, -9.281202316284123 ], [ -76.831352233886662, -9.28250789642334 ], [ -76.831619262695256, -9.284069061279297 ], [ -76.830795288085938, -9.284482002258301 ], [ -76.830413818359375, -9.284980773925724 ], [ -76.830345153808594, -9.28758430480957 ], [ -76.829483032226562, -9.29004955291748 ], [ -76.829490661621094, -9.290772438049316 ], [ -76.828628540039062, -9.292123794555664 ], [ -76.828437805175781, -9.293181419372445 ], [ -76.827247619628849, -9.294544219970703 ], [ -76.827186584472656, -9.295882225036621 ], [ -76.82574462890625, -9.297218322753906 ], [ -76.82550048828125, -9.298901557922363 ], [ -76.823921203613168, -9.300608634948674 ], [ -76.822097778320256, -9.305111885070801 ], [ -76.821174621582031, -9.306318283080941 ], [ -76.818550109863224, -9.308647155761662 ], [ -76.817810058593693, -9.31048393249506 ], [ -76.816543579101506, -9.312554359435978 ], [ -76.816123962402344, -9.314291000366211 ], [ -76.815124511718693, -9.315570831298828 ], [ -76.815010070800781, -9.317631721496525 ], [ -76.815338134765511, -9.318833351135254 ], [ -76.815185546875, -9.320173263549805 ], [ -76.815376281738281, -9.321255683898869 ], [ -76.814323425292969, -9.322761535644474 ], [ -76.814659118652287, -9.324622154235783 ], [ -76.814537048339844, -9.325861930847111 ], [ -76.812881469726562, -9.327254295349121 ], [ -76.810821533203068, -9.328556060790959 ], [ -76.809463500976562, -9.329259872436523 ], [ -76.808395385742188, -9.329428672790527 ], [ -76.806770324707031, -9.330837249755859 ], [ -76.805229187011605, -9.330952644348145 ], [ -76.804412841796875, -9.331329345703068 ], [ -76.801795959472543, -9.331170082092228 ], [ -76.800926208496037, -9.331473350524902 ], [ -76.799491882324162, -9.331309318542424 ], [ -76.79742431640625, -9.331455230712891 ], [ -76.794540405273381, -9.332680702209416 ], [ -76.790061950683537, -9.337260246276855 ], [ -76.7890625, -9.338657379150391 ], [ -76.786270141601562, -9.339928627014103 ], [ -76.784797668456974, -9.34123706817627 ], [ -76.783607482910156, -9.341640472412053 ], [ -76.782234191894474, -9.343185424804688 ], [ -76.779869079589844, -9.34465312957758 ], [ -76.778892517089787, -9.345494270324707 ], [ -76.777610778808594, -9.349879264831543 ], [ -76.776802062988224, -9.35084056854248 ], [ -76.774734497070312, -9.35192775726307 ], [ -76.773742675781193, -9.353216171264592 ], [ -76.772941589355469, -9.355969429016056 ], [ -76.771141052246094, -9.358869552612305 ], [ -76.770668029785156, -9.3616943359375 ], [ -76.767379760742188, -9.363744735717773 ], [ -76.766372680664062, -9.365006446838322 ], [ -76.765266418456974, -9.367378234863224 ], [ -76.763900756835881, -9.366546630859375 ], [ -76.761878967285156, -9.364368438720703 ], [ -76.758430480957031, -9.362786293029785 ], [ -76.757843017578125, -9.362236976623535 ], [ -76.757308959960938, -9.361190795898381 ], [ -76.756980895996094, -9.359700202941781 ], [ -76.755531311035099, -9.357872009277344 ], [ -76.755180358886719, -9.355297088623047 ], [ -76.752876281738281, -9.352407455444336 ], [ -76.752243041992188, -9.350540161132812 ], [ -76.751091003417969, -9.348808288574219 ], [ -76.750854492187443, -9.346586227416992 ], [ -76.749641418457031, -9.344331741333008 ], [ -76.748260498046818, -9.341499328613281 ], [ -76.747879028320256, -9.33919715881342 ], [ -76.747367858886719, -9.337941169738713 ], [ -76.744773864746094, -9.334492683410588 ], [ -76.742622375488281, -9.333310127258301 ], [ -76.741958618164062, -9.332733154296875 ], [ -76.741180419921875, -9.331699371337834 ], [ -76.740707397460938, -9.330614089965763 ], [ -76.740577697753906, -9.329222679138127 ], [ -76.740821838378849, -9.324973106384277 ], [ -76.739913940429688, -9.322149276733285 ], [ -76.739990234374943, -9.319994926452637 ], [ -76.739402770996037, -9.318110466003418 ], [ -76.739334106445312, -9.316580772399902 ], [ -76.739738464355469, -9.315203666686955 ], [ -76.741233825683537, -9.312856674194336 ], [ -76.742485046386719, -9.307931900024357 ], [ -76.74343109130848, -9.306959152221623 ], [ -76.743988037109318, -9.305916786193848 ], [ -76.743843078613281, -9.304319381713867 ], [ -76.742752075195256, -9.301782608032227 ], [ -76.743255615234375, -9.299863815307617 ], [ -76.744514465332031, -9.298338890075684 ], [ -76.744674682617188, -9.297181129455566 ], [ -76.743911743164062, -9.294796943664551 ], [ -76.742546081542912, -9.292609214782601 ], [ -76.741653442382812, -9.291597366332951 ], [ -76.741470336914062, -9.288283348083439 ], [ -76.739669799804688, -9.285072326660099 ], [ -76.739517211914006, -9.284459114074707 ], [ -76.73974609375, -9.284231185913086 ], [ -76.739982604980412, -9.282719612121525 ], [ -76.740066528320256, -9.279401779174748 ], [ -76.739700317382756, -9.277648925781193 ], [ -76.740318298339844, -9.275894165039062 ], [ -76.740211486816406, -9.274636268615723 ], [ -76.738800048828125, -9.272880554199162 ], [ -76.737960815429631, -9.270895957946777 ], [ -76.736724853515568, -9.269128799438477 ], [ -76.733932495117188, -9.266311645507699 ], [ -76.730438232421818, -9.262199401855412 ], [ -76.726203918457031, -9.257980346679631 ], [ -76.725990295410156, -9.257500648498535 ], [ -76.725944519042912, -9.25615215301508 ], [ -76.726341247558537, -9.253792762756348 ], [ -76.727745056152344, -9.25148868560791 ], [ -76.728378295898438, -9.249615669250431 ], [ -76.730033874511719, -9.247726440429688 ], [ -76.7305908203125, -9.246212959289437 ], [ -76.730422973632812, -9.244694709777832 ], [ -76.729400634765568, -9.243011474609318 ], [ -76.728981018066406, -9.238663673400822 ], [ -76.728446960449162, -9.237136840820312 ], [ -76.728431701660099, -9.236152648925724 ], [ -76.727912902832031, -9.234816551208382 ], [ -76.728927612304631, -9.231375694274846 ], [ -76.729835510253906, -9.229926109313908 ], [ -76.730712890624943, -9.224342346191349 ], [ -76.731246948242188, -9.222533226013184 ], [ -76.732391357421875, -9.220121383666992 ], [ -76.733184814453125, -9.217169761657658 ], [ -76.734504699707031, -9.21546459197998 ], [ -76.73419189453125, -9.213873863220215 ], [ -76.734771728515625, -9.212381362914925 ], [ -76.734031677246094, -9.21016788482666 ], [ -76.734199523925781, -9.208559036254826 ], [ -76.736724853515568, -9.206125259399414 ], [ -76.737335205078125, -9.203445434570256 ], [ -76.739662170410156, -9.201455116271916 ], [ -76.740432739257812, -9.199442863464355 ], [ -76.740707397460938, -9.196791648864746 ], [ -76.744026184082031, -9.194119453430119 ], [ -76.74462890625, -9.193464279174748 ], [ -76.74468994140625, -9.193111419677734 ], [ -76.745315551757756, -9.1921129226684 ], [ -76.747596740722599, -9.189689636230469 ], [ -76.750579833984318, -9.187514305114632 ], [ -76.754249572753906, -9.18406963348383 ], [ -76.7568359375, -9.18231010437006 ], [ -76.758621215820312, -9.180079460144043 ], [ -76.761184692382812, -9.177843093872013 ], [ -76.762603759765625, -9.174789428710938 ], [ -76.764801025390625, -9.17194938659668 ], [ -76.766273498535156, -9.169681549072209 ], [ -76.766426086425781, -9.169073104858342 ], [ -76.767227172851562, -9.168202400207406 ], [ -76.7672119140625, -9.166520118713379 ], [ -76.768180847167969, -9.165521621704045 ], [ -76.768424987792969, -9.164553642272949 ], [ -76.767692565917969, -9.159168243408203 ], [ -76.767822265624943, -9.157748222351017 ], [ -76.768333435058594, -9.156590461730957 ], [ -76.770408630371037, -9.15434455871582 ], [ -76.773704528808594, -9.152312278747502 ], [ -76.776618957519418, -9.149903297424316 ], [ -76.778511047363224, -9.148845672607422 ], [ -76.781539916992188, -9.145913124084473 ], [ -76.782615661621037, -9.145244598388672 ], [ -76.783866882324105, -9.145157814025879 ], [ -76.784774780273438, -9.144808769226074 ], [ -76.786186218261719, -9.144016265869084 ], [ -76.787139892578125, -9.14318943023676 ], [ -76.789085388183537, -9.140077590942326 ], [ -76.788917541503849, -9.139365196228027 ], [ -76.788291931152344, -9.13884258270258 ], [ -76.788032531738224, -9.138275146484375 ], [ -76.788002014160156, -9.136919021606388 ], [ -76.788185119628906, -9.136330604553166 ], [ -76.790443420410099, -9.135189056396484 ], [ -76.792274475097656, -9.134737968444824 ], [ -76.796958923339844, -9.132390022277832 ], [ -76.799980163574162, -9.131526947021428 ], [ -76.806297302246094, -9.130410194396916 ], [ -76.810340881347656, -9.130154609680176 ], [ -76.811836242675781, -9.12978458404541 ], [ -76.814170837402287, -9.129938125610352 ], [ -76.815803527831974, -9.129792213439941 ], [ -76.816833496093693, -9.12927341461176 ], [ -76.818023681640625, -9.128290176391602 ], [ -76.818679809570312, -9.1273193359375 ], [ -76.818672180175724, -9.126956939697209 ], [ -76.818672180175724, -9.126117706298771 ], [ -76.818984985351562, -9.125175476074219 ], [ -76.81972503662098, -9.124267578125 ], [ -76.820526123046875, -9.123696327209473 ], [ -76.824691772460938, -9.122904777526855 ], [ -76.828086853027287, -9.123275756835938 ], [ -76.830642700195312, -9.122414588928166 ], [ -76.83099365234375, -9.122475624084473 ], [ -76.831871032714844, -9.121884346008301 ], [ -76.834663391113224, -9.120846748352051 ], [ -76.836776733398381, -9.118531227111816 ], [ -76.837760925292969, -9.118572235107365 ], [ -76.839508056640625, -9.119284629821777 ], [ -76.841819763183537, -9.118931770324707 ], [ -76.842460632324219, -9.11860179901123 ], [ -76.8433837890625, -9.117612838745117 ], [ -76.845954895019531, -9.116822242736816 ], [ -76.847465515136662, -9.11540412902832 ], [ -76.850875854492131, -9.114220619201603 ], [ -76.852294921875, -9.114148139953613 ], [ -76.854583740234375, -9.115215301513615 ], [ -76.855392456054574, -9.115036964416504 ], [ -76.856163024902344, -9.114581108093262 ], [ -76.856887817382756, -9.114577293395996 ], [ -76.8577880859375, -9.114989280700684 ], [ -76.858619689941349, -9.115817070007324 ], [ -76.859169006347656, -9.115695953369084 ], [ -76.859825134277344, -9.115096092224064 ], [ -76.86083984375, -9.114720344543457 ], [ -76.863349914550781, -9.11445426940918 ], [ -76.865684509277287, -9.11468601226801 ], [ -76.868019104003906, -9.114312171935978 ], [ -76.870384216308594, -9.113487243652344 ], [ -76.873481750488224, -9.111286163330078 ], [ -76.875236511230469, -9.109738349914494 ], [ -76.877754211425781, -9.108757972717228 ], [ -76.878585815429688, -9.107939720153809 ], [ -76.881156921386719, -9.106281280517521 ], [ -76.882698059082031, -9.10581111907959 ], [ -76.882934570312443, -9.104881286621094 ], [ -76.883293151855469, -9.104471206665039 ], [ -76.886123657226562, -9.103092193603516 ], [ -76.888137817382812, -9.101724624633732 ], [ -76.890098571777287, -9.101052284240666 ], [ -76.892333984375, -9.101360321044922 ], [ -76.894104003906193, -9.0992431640625 ], [ -76.896591186523324, -9.098832130432129 ], [ -76.897636413574162, -9.097154617309513 ], [ -76.898429870605469, -9.094981193542424 ], [ -76.902770996093693, -9.09005069732666 ], [ -76.903060913085881, -9.088582992553654 ], [ -76.905921936035099, -9.087792396545353 ], [ -76.908409118652287, -9.084471702575684 ], [ -76.911956787109375, -9.080880165100098 ], [ -76.91357421875, -9.077753067016602 ], [ -76.914497375488224, -9.076528549194336 ], [ -76.916694641113224, -9.075286865234318 ], [ -76.917594909667969, -9.075210571289062 ], [ -76.919830322265568, -9.074032783508301 ], [ -76.922348022460938, -9.07393741607666 ], [ -76.923713684082031, -9.073234558105469 ], [ -76.926300048828125, -9.071412086486816 ], [ -76.929672241210881, -9.070408821105957 ], [ -76.931434631347656, -9.070808410644418 ], [ -76.933586120605412, -9.071951866149902 ], [ -76.936698913574219, -9.072415351867676 ], [ -76.939125061035043, -9.073814392089844 ], [ -76.940605163574219, -9.073525428771973 ], [ -76.942146301269474, -9.073552131652832 ], [ -76.944473266601562, -9.07421779632557 ], [ -76.945404052734318, -9.073914527893066 ], [ -76.945968627929631, -9.073478698730355 ], [ -76.948387145996094, -9.07020187377924 ], [ -76.949417114257756, -9.068299293518066 ], [ -76.950843811035099, -9.067179679870605 ], [ -76.954208374023438, -9.066534996032715 ], [ -76.955581665039062, -9.065506935119629 ], [ -76.956367492675724, -9.065285682678166 ], [ -76.957328796386662, -9.065516471862736 ], [ -76.959648132324219, -9.067347526550236 ], [ -76.960655212402287, -9.067333221435547 ], [ -76.961479187011719, -9.066949844360352 ], [ -76.962974548339844, -9.065521240234375 ], [ -76.963478088378906, -9.063701629638672 ], [ -76.964805603027344, -9.060641288757267 ], [ -76.965278625488281, -9.059968948364201 ], [ -76.965896606445256, -9.059557914733887 ], [ -76.970222473144531, -9.060202598571777 ], [ -76.971237182617131, -9.060795783996525 ], [ -76.971397399902344, -9.061400413513184 ], [ -76.971832275390568, -9.061858177185059 ], [ -76.973564147949219, -9.062652587890625 ], [ -76.974533081054688, -9.062765121459961 ], [ -76.976875305175724, -9.062519073486328 ], [ -76.977722167968693, -9.06282901763916 ], [ -76.978507995605412, -9.062835693359375 ], [ -76.979194641113281, -9.062623977661076 ], [ -76.980178833007812, -9.061461448669434 ], [ -76.980331420898438, -9.060493469238224 ], [ -76.9808349609375, -9.059859275817871 ], [ -76.980690002441349, -9.057147026061898 ], [ -76.981887817382812, -9.055134773254395 ], [ -76.982986450195256, -9.054531097412109 ], [ -76.984085083007812, -9.053340911865178 ], [ -76.985885620117188, -9.052571296691895 ], [ -76.986465454101562, -9.050894737243652 ], [ -76.987403869628906, -9.049921989440918 ], [ -76.989151000976562, -9.049526214599553 ], [ -76.991348266601562, -9.047796249389648 ], [ -76.994277954101562, -9.046594619750977 ], [ -76.995613098144531, -9.045820236206055 ], [ -76.996116638183594, -9.045184135437012 ], [ -76.996200561523438, -9.044028282165527 ], [ -76.996589660644531, -9.043429374694824 ], [ -77.000335693359318, -9.040751457214355 ], [ -77.000816345214787, -9.039030075073242 ], [ -77.000602722167912, -9.035696029663086 ], [ -77.000892639160099, -9.03458118438715 ], [ -77.002388000488281, -9.0335693359375 ], [ -77.003097534179631, -9.032544136047363 ], [ -77.004104614257812, -9.031916618347168 ], [ -77.005035400390625, -9.031604766845646 ], [ -77.007019042968693, -9.03148365020752 ], [ -77.007942199707031, -9.031126022338867 ], [ -77.012565612792969, -9.027397155761662 ], [ -77.016960144042969, -9.027290344238224 ], [ -77.01727294921875, -9.026629447936898 ], [ -77.017333984375, -9.025163650512638 ], [ -77.017646789550781, -9.024420738220158 ], [ -77.019798278808537, -9.021426200866699 ], [ -77.021347045898438, -9.019996643066406 ], [ -77.022659301757756, -9.019430160522404 ], [ -77.026786804199219, -9.019378662109318 ], [ -77.028045654296875, -9.017928123474064 ], [ -77.028526306152344, -9.016585350036564 ], [ -77.029121398925724, -9.01590633392334 ], [ -77.033576965332031, -9.014542579650822 ], [ -77.034400939941406, -9.013228416442871 ], [ -77.034675598144474, -9.011915206909123 ], [ -77.034553527831974, -9.010288238525391 ], [ -77.033866882324219, -9.008528709411621 ], [ -77.033866882324219, -9.008086204528809 ], [ -77.033042907714787, -9.004096031188908 ], [ -77.034080505371037, -9.002174377441406 ], [ -77.037071228027344, -8.999345779418945 ], [ -77.038772583007756, -8.998721122741699 ], [ -77.042137145996094, -8.998140335083008 ], [ -77.043930053710881, -8.99754524230957 ], [ -77.048255920410156, -8.994819641113281 ], [ -77.049530029296818, -8.994747161865234 ], [ -77.050872802734318, -8.995229721069222 ], [ -77.052474975585938, -8.9949951171875 ], [ -77.053825378417912, -8.994101524352971 ], [ -77.054313659667912, -8.993048667907658 ], [ -77.055084228515568, -8.992448806762638 ], [ -77.057968139648438, -8.993156433105412 ], [ -77.060951232910156, -8.993183135986328 ], [ -77.063262939453068, -8.992891311645508 ], [ -77.066688537597656, -8.991767883300781 ], [ -77.0697021484375, -8.989510536193848 ], [ -77.072822570800724, -8.986166000366154 ], [ -77.073860168456974, -8.984470367431584 ], [ -77.074974060058594, -8.983424186706486 ], [ -77.078765869140625, -8.981197357177734 ], [ -77.085792541503849, -8.97821140289301 ], [ -77.087104797363224, -8.977145195007324 ], [ -77.091079711914062, -8.972639083862305 ], [ -77.091957092285156, -8.971994400024414 ], [ -77.092964172363281, -8.971761703491154 ], [ -77.093673706054688, -8.971865653991642 ], [ -77.096359252929631, -8.974995613098145 ], [ -77.097465515136719, -8.975397109985352 ], [ -77.100418090820312, -8.974331855773926 ], [ -77.102455139160099, -8.97398567199707 ], [ -77.104499816894531, -8.9725341796875 ], [ -77.105918884277287, -8.971984863281193 ], [ -77.10811614990223, -8.970815658569222 ], [ -77.109832763671761, -8.97028923034668 ], [ -77.110389709472599, -8.969692230224553 ], [ -77.110549926757812, -8.969015121459961 ], [ -77.109886169433594, -8.967753410339299 ], [ -77.109130859374943, -8.967493057250977 ], [ -77.108009338378849, -8.966567039489746 ], [ -77.107223510742131, -8.963091850280705 ], [ -77.106117248535156, -8.96268367767334 ], [ -77.104057312011719, -8.962549209594727 ], [ -77.103302001953125, -8.961911201476994 ], [ -77.103019714355469, -8.961164474487248 ], [ -77.103309631347656, -8.95958232879633 ], [ -77.104629516601562, -8.95791053771967 ], [ -77.104866027831974, -8.957058906555062 ], [ -77.104652404785099, -8.956391334533578 ], [ -77.103492736816406, -8.955665588378849 ], [ -77.103324890136662, -8.955197334289551 ], [ -77.104087829589787, -8.954208374023438 ], [ -77.105003356933594, -8.95362377166748 ], [ -77.105178833007812, -8.952213287353516 ], [ -77.105926513671875, -8.951432228088265 ], [ -77.106468200683537, -8.950024604797363 ], [ -77.107681274414062, -8.949404716491699 ], [ -77.11053466796875, -8.949686050415039 ], [ -77.112571716308537, -8.949322700500431 ], [ -77.113327026367131, -8.948687553405705 ], [ -77.114578247070256, -8.946852684020996 ], [ -77.117385864257812, -8.945444107055607 ], [ -77.118743896484375, -8.945409774780273 ], [ -77.120719909667969, -8.946483612060547 ], [ -77.121978759765625, -8.946595191955566 ], [ -77.123405456542969, -8.946060180664006 ], [ -77.124496459960881, -8.944881439208984 ], [ -77.124916076660156, -8.944135665893555 ], [ -77.125022888183594, -8.938322067260742 ], [ -77.125762939453125, -8.933473587036133 ], [ -77.126220703124943, -8.932820320129338 ], [ -77.127220153808594, -8.932182312011719 ], [ -77.128646850585938, -8.932254791259766 ], [ -77.129936218261662, -8.932864189147892 ], [ -77.131538391113281, -8.931877136230469 ], [ -77.131958007812386, -8.930998802185059 ], [ -77.132293701171875, -8.928501129150334 ], [ -77.133415222167969, -8.925285339355469 ], [ -77.133247375488281, -8.923063278198242 ], [ -77.131561279296818, -8.92158222198475 ], [ -77.130195617675781, -8.919583320617676 ], [ -77.130271911621094, -8.918245315551701 ], [ -77.130783081054631, -8.917102813720703 ], [ -77.132949829101562, -8.915816307067871 ], [ -77.134757995605469, -8.915262222290039 ], [ -77.138290405273438, -8.912738800048828 ], [ -77.139495849609375, -8.911519050598145 ], [ -77.139846801757756, -8.910614967346078 ], [ -77.139144897460938, -8.909262657165527 ], [ -77.139266967773381, -8.907852172851562 ], [ -77.142311096191406, -8.904426574707031 ], [ -77.143997192382812, -8.902111053466797 ], [ -77.144180297851562, -8.90152454376215 ], [ -77.143913269042969, -8.900576591491699 ], [ -77.144027709960938, -8.899969100952148 ], [ -77.144866943359375, -8.899152755737305 ], [ -77.145828247070312, -8.898667335510197 ], [ -77.147781372070256, -8.896684646606388 ], [ -77.148956298828125, -8.896225929260254 ], [ -77.150199890136719, -8.896345138549805 ], [ -77.153228759765625, -8.900126457214355 ], [ -77.154075622558537, -8.900654792785645 ], [ -77.155143737792969, -8.9008531570434 ], [ -77.156089782714844, -8.900613784789982 ], [ -77.157127380371037, -8.900028228759766 ], [ -77.160820007324162, -8.896620750427189 ], [ -77.162986755371094, -8.893550872802734 ], [ -77.164146423339844, -8.892296791076603 ], [ -77.165313720703068, -8.889571189880314 ], [ -77.165687561035099, -8.887460708618107 ], [ -77.165374755859375, -8.883352279663029 ], [ -77.165557861328125, -8.88129806518549 ], [ -77.167167663574219, -8.879487991333008 ], [ -77.170265197753849, -8.877483367919865 ], [ -77.171424865722599, -8.876022338867188 ], [ -77.171798706054631, -8.874245643615666 ], [ -77.170928955078068, -8.872390747070312 ], [ -77.171012878417969, -8.871044158935547 ], [ -77.171539306640625, -8.869927406311035 ], [ -77.173965454101562, -8.866470336914062 ], [ -77.174354553222656, -8.865004539489746 ], [ -77.17364501953125, -8.862233161926213 ], [ -77.17279052734375, -8.860865592956486 ], [ -77.1712646484375, -8.85920238494873 ], [ -77.171035766601506, -8.857710838317814 ], [ -77.172103881835881, -8.855952262878418 ], [ -77.175140380859318, -8.853148460388127 ], [ -77.176933288574219, -8.850906372070312 ], [ -77.177429199218693, -8.849357604980412 ], [ -77.177406311035156, -8.846872329711914 ], [ -77.176628112792969, -8.845159530639648 ], [ -77.17645263671875, -8.844283103942814 ], [ -77.177459716796875, -8.841412544250488 ], [ -77.177375793457031, -8.84007453918457 ], [ -77.176689147949219, -8.839147567749023 ], [ -77.17449951171875, -8.837607383727971 ], [ -77.173980712890568, -8.835701942443848 ], [ -77.174484252929631, -8.833990097045898 ], [ -77.177009582519531, -8.831725120544434 ], [ -77.179595947265625, -8.83065128326416 ], [ -77.181045532226506, -8.82974910736084 ], [ -77.182929992675781, -8.829178810119629 ], [ -77.184478759765568, -8.827968597412053 ], [ -77.188819885253906, -8.822798728942814 ], [ -77.189987182617188, -8.822168350219727 ], [ -77.192718505859375, -8.81956768035883 ], [ -77.195106506347656, -8.81599235534668 ], [ -77.195251464843693, -8.815467834472656 ], [ -77.196846008300781, -8.813405036926213 ], [ -77.197486877441406, -8.81148624420166 ], [ -77.198348999023438, -8.807267189025879 ], [ -77.199485778808594, -8.804251670837402 ], [ -77.199661254882756, -8.801114082336369 ], [ -77.200263977050781, -8.79735279083252 ], [ -77.200187683105469, -8.795283317565918 ], [ -77.200347900390625, -8.794504165649414 ], [ -77.200973510742131, -8.79339599609375 ], [ -77.202774047851562, -8.791641235351506 ], [ -77.203445434570312, -8.790681838989258 ], [ -77.204727172851562, -8.78734111785883 ], [ -77.205673217773381, -8.783690452575684 ], [ -77.206329345703068, -8.782510757446289 ], [ -77.208053588867131, -8.781072616577148 ], [ -77.210830688476562, -8.780052185058594 ], [ -77.214164733886605, -8.777918815612793 ], [ -77.218177795410156, -8.77662181854248 ], [ -77.219665527343693, -8.774821281433105 ], [ -77.221191406249943, -8.774261474609375 ], [ -77.221900939941406, -8.773714065551758 ], [ -77.222793579101562, -8.77247238159174 ], [ -77.222831726074162, -8.771766662597656 ], [ -77.223159790039062, -8.770182609558049 ], [ -77.223892211913949, -8.768551826477051 ], [ -77.224555969238224, -8.767931938171387 ], [ -77.225791931152287, -8.767373085021859 ], [ -77.226158142089787, -8.766892433166447 ], [ -77.225944519042969, -8.766369819641113 ], [ -77.224899291992188, -8.766105651855412 ], [ -77.223953247070256, -8.765288352966252 ], [ -77.223571777343693, -8.764557838439941 ], [ -77.223480224609318, -8.763491630554142 ], [ -77.22430419921875, -8.759726524353027 ], [ -77.224334716796818, -8.757304191589299 ], [ -77.224922180175724, -8.754047393798828 ], [ -77.226661682128906, -8.75102710723877 ], [ -77.227218627929631, -8.749406814575195 ], [ -77.227310180664006, -8.747624397277775 ], [ -77.227035522460881, -8.745121955871525 ], [ -77.227203369140568, -8.743792533874512 ], [ -77.22772216796875, -8.743059158325138 ], [ -77.228591918945312, -8.742411613464299 ], [ -77.232109069824219, -8.741711616516056 ], [ -77.233955383300781, -8.740002632141 ], [ -77.235633850097656, -8.737363815307617 ], [ -77.237686157226506, -8.735469818115178 ], [ -77.238235473632812, -8.735151290893498 ], [ -77.239395141601562, -8.735207557678166 ], [ -77.240226745605469, -8.734849929809513 ], [ -77.241920471191406, -8.733249664306641 ], [ -77.243568420410156, -8.732155799865666 ], [ -77.244789123535156, -8.730719566345215 ], [ -77.246925354003906, -8.729069709777832 ], [ -77.247985839843693, -8.727961540222168 ], [ -77.248344421386719, -8.72706413269043 ], [ -77.248023986816406, -8.725837707519474 ], [ -77.248069763183594, -8.724679946899414 ], [ -77.249679565429688, -8.721877098083496 ], [ -77.249847412109375, -8.721261978149414 ], [ -77.249420166015568, -8.720496177673283 ], [ -77.247833251953125, -8.719901084899846 ], [ -77.2467041015625, -8.718622207641602 ], [ -77.246772766113224, -8.717720031738281 ], [ -77.247604370117131, -8.715639114379883 ], [ -77.247604370117131, -8.713745117187443 ], [ -77.247528076171818, -8.713213920593262 ], [ -77.248123168945312, -8.711619377136174 ], [ -77.248184204101506, -8.710724830627328 ], [ -77.246589660644418, -8.704667091369629 ], [ -77.246559143066349, -8.70276927947998 ], [ -77.246963500976506, -8.701910018920898 ], [ -77.249473571777344, -8.700686454772949 ], [ -77.250465393066349, -8.69979190826416 ], [ -77.251358032226449, -8.698556900024414 ], [ -77.251831054687443, -8.697481155395451 ], [ -77.251960754394531, -8.696693420410156 ], [ -77.251800537109318, -8.695616722106934 ], [ -77.250961303710881, -8.694457054138127 ], [ -77.250770568847599, -8.693843841552734 ], [ -77.251884460449219, -8.692020416259766 ], [ -77.252105712890568, -8.690689086914062 ], [ -77.252922058105469, -8.688606262207031 ], [ -77.252861022949162, -8.687079429626465 ], [ -77.252105712890568, -8.684406280517578 ], [ -77.252227783203125, -8.682799339294377 ], [ -77.253036499023438, -8.682297706603947 ], [ -77.253463745117188, -8.681488990783691 ], [ -77.253585815429688, -8.679446220397949 ], [ -77.253944396972656, -8.678513526916504 ], [ -77.257240295410099, -8.675601959228459 ], [ -77.258483886718693, -8.673957824706974 ], [ -77.258590698242131, -8.670856475830078 ], [ -77.260765075683537, -8.668821334838867 ], [ -77.261611938476562, -8.667132377624512 ], [ -77.261756896972656, -8.66480827331543 ], [ -77.260536193847656, -8.662114143371582 ], [ -77.2603759765625, -8.658473968505859 ], [ -77.258766174316349, -8.65736198425293 ], [ -77.258224487304574, -8.656056404113713 ], [ -77.258438110351562, -8.654733657836857 ], [ -77.259765625, -8.652483940124455 ], [ -77.260147094726562, -8.650095939636174 ], [ -77.260665893554688, -8.648646354675293 ], [ -77.261535644531193, -8.647775650024357 ], [ -77.262725830078125, -8.647098541259766 ], [ -77.267127990722656, -8.645563125610352 ], [ -77.273277282714787, -8.64466667175293 ], [ -77.275253295898438, -8.645197868347168 ], [ -77.277770996093693, -8.645037651061955 ], [ -77.281898498535156, -8.645240783691406 ], [ -77.283477783203068, -8.644897460937386 ], [ -77.287010192871037, -8.64342021942133 ], [ -77.289901733398438, -8.641216278076172 ], [ -77.293167114257812, -8.63801383972168 ], [ -77.294357299804631, -8.635803222656193 ], [ -77.294868469238281, -8.633161544799805 ], [ -77.294059753417912, -8.630434036254826 ], [ -77.294181823730469, -8.62963962554926 ], [ -77.294761657714844, -8.628314018249512 ], [ -77.294525146484318, -8.626908302307129 ], [ -77.293548583984375, -8.625503540039006 ], [ -77.292213439941406, -8.625014305114689 ], [ -77.291511535644531, -8.624132156372013 ], [ -77.291618347167969, -8.623220443725586 ], [ -77.2926025390625, -8.620411872863656 ], [ -77.291862487792912, -8.617543220519963 ], [ -77.291000366210881, -8.616289138793945 ], [ -77.290779113769531, -8.61561203002924 ], [ -77.290702819824219, -8.612481117248478 ], [ -77.291114807128849, -8.60882472991932 ], [ -77.2911376953125, -8.605054855346623 ], [ -77.290061950683537, -8.600064277648869 ], [ -77.288841247558594, -8.597232818603516 ], [ -77.28790283203125, -8.595656394958439 ], [ -77.287818908691406, -8.593596458435059 ], [ -77.288124084472656, -8.590920448303166 ], [ -77.288642883300724, -8.589487075805664 ], [ -77.289161682128906, -8.588770866393986 ], [ -77.292869567871094, -8.585883140563965 ], [ -77.293968200683537, -8.584720611572152 ], [ -77.295227050781136, -8.582626342773438 ], [ -77.295761108398438, -8.581301689147949 ], [ -77.29638671875, -8.579130172729435 ], [ -77.296585083007812, -8.577457427978459 ], [ -77.296318054199219, -8.575488090515137 ], [ -77.295562744140625, -8.573223114013672 ], [ -77.295791625976506, -8.571187019348088 ], [ -77.296379089355469, -8.570606231689339 ], [ -77.299209594726506, -8.569043159484863 ], [ -77.300643920898381, -8.567959785461312 ], [ -77.303909301757812, -8.566673278808537 ], [ -77.304924011230412, -8.565944671630859 ], [ -77.306556701660099, -8.563802719116211 ], [ -77.307807922363224, -8.55972766876215 ], [ -77.309997558593693, -8.557102203369141 ], [ -77.310928344726506, -8.555562019348031 ], [ -77.311164855957031, -8.554800033569279 ], [ -77.311172485351562, -8.553446769714355 ], [ -77.310111999511719, -8.55212211608881 ], [ -77.310157775878906, -8.551490783691406 ], [ -77.311035156249943, -8.550347328186035 ], [ -77.312217712402344, -8.549941062927246 ], [ -77.312965393066293, -8.549284934997502 ], [ -77.314643859863281, -8.546112060546875 ], [ -77.314826965332031, -8.54442119598383 ], [ -77.314575195312443, -8.542732238769474 ], [ -77.313682556152344, -8.540857315063477 ], [ -77.311370849609375, -8.539326667785588 ], [ -77.310768127441349, -8.538452148437443 ], [ -77.310615539550781, -8.535390853881836 ], [ -77.310844421386662, -8.533002853393555 ], [ -77.311714172363224, -8.531523704528809 ], [ -77.312957763671818, -8.530623435974007 ], [ -77.314140319824219, -8.530190467834416 ], [ -77.316024780273438, -8.530126571655273 ], [ -77.316909790039062, -8.529678344726506 ], [ -77.31585693359375, -8.52796554565424 ], [ -77.313972473144531, -8.525800704955998 ], [ -77.312072753906193, -8.52414608001709 ], [ -77.310295104980355, -8.522929191589355 ], [ -77.308586120605469, -8.522106170654297 ], [ -77.306953430175724, -8.52163028717041 ], [ -77.302833557128849, -8.521273612976017 ], [ -77.299468994140625, -8.520651817321777 ], [ -77.296600341796875, -8.517840385436955 ], [ -77.292030334472656, -8.515536308288517 ], [ -77.290191650390625, -8.513566017150822 ], [ -77.288887023925781, -8.510808944702148 ], [ -77.287368774414062, -8.508584022521973 ], [ -77.283164978027344, -8.505670547485352 ], [ -77.2821044921875, -8.504223823547306 ], [ -77.281036376953125, -8.501283645629883 ], [ -77.280250549316349, -8.499795913696175 ], [ -77.277702331542969, -8.497173309326058 ], [ -77.276870727539062, -8.495942115783635 ], [ -77.276695251464787, -8.494330406188965 ], [ -77.277397155761719, -8.492880821228027 ], [ -77.277549743652287, -8.491949081420842 ], [ -77.276969909667969, -8.490017890930119 ], [ -77.276916503906136, -8.488789558410588 ], [ -77.273818969726562, -8.484342575073185 ], [ -77.272941589355469, -8.482705116271973 ], [ -77.272468566894531, -8.481042861938477 ], [ -77.271598815917969, -8.475559234619141 ], [ -77.2706298828125, -8.474417686462346 ], [ -77.269355773925724, -8.473415374755803 ], [ -77.267929077148381, -8.472643852233887 ], [ -77.266616821288949, -8.472346305847111 ], [ -77.265892028808594, -8.471735000610295 ], [ -77.265609741210938, -8.47113132476801 ], [ -77.265586853027344, -8.468845367431584 ], [ -77.264602661132756, -8.467548370361328 ], [ -77.263916015624943, -8.467099189758301 ], [ -77.262863159179631, -8.467279434204102 ], [ -77.260879516601506, -8.469478607177734 ], [ -77.259963989257812, -8.470062255859318 ], [ -77.256324768066406, -8.471057891845703 ], [ -77.254447937011719, -8.47127723693842 ], [ -77.250297546386662, -8.472863197326603 ], [ -77.247894287109318, -8.472869873046875 ], [ -77.246490478515568, -8.473130226135197 ], [ -77.245330810546818, -8.474474906921387 ], [ -77.244750976562443, -8.474821090698242 ], [ -77.239166259765625, -8.475757598876953 ], [ -77.237174987792969, -8.477566719055176 ], [ -77.235580444335938, -8.478299140930119 ], [ -77.233703613281193, -8.478545188903752 ], [ -77.232315063476562, -8.478055000305176 ], [ -77.229331970214844, -8.478128433227482 ], [ -77.228149414062443, -8.478379249572697 ], [ -77.224227905273438, -8.479801177978459 ], [ -77.222343444824162, -8.480010986328125 ], [ -77.221206665039006, -8.479630470275822 ], [ -77.220260620117131, -8.479661941528263 ], [ -77.219657897949219, -8.479981422424316 ], [ -77.217826843261719, -8.481762886047363 ], [ -77.215110778808537, -8.48297119140625 ], [ -77.213661193847599, -8.483287811279297 ], [ -77.209892272949219, -8.483318328857365 ], [ -77.207138061523438, -8.484445571899414 ], [ -77.205429077148438, -8.485530853271428 ], [ -77.203407287597656, -8.485660552978516 ], [ -77.202117919921818, -8.485298156738281 ], [ -77.200134277343693, -8.483671188354435 ], [ -77.197807312011719, -8.48299598693842 ], [ -77.197288513183594, -8.482370376586914 ], [ -77.197174072265568, -8.481572151184082 ], [ -77.196571350097656, -8.481006622314453 ], [ -77.194343566894531, -8.480468749999943 ], [ -77.193313598632812, -8.479796409606934 ], [ -77.190620422363281, -8.479458808898812 ], [ -77.188461303710938, -8.479497909545898 ], [ -77.185821533203068, -8.480778694152775 ], [ -77.184982299804574, -8.480285644531193 ], [ -77.183403015136719, -8.478814125061035 ], [ -77.181388854980469, -8.478894233703613 ], [ -77.181098937988281, -8.478264808654785 ], [ -77.181312561035156, -8.476807594299316 ], [ -77.180885314941406, -8.476105690002385 ], [ -77.180252075195312, -8.475611686706543 ], [ -77.177879333496094, -8.474640846252441 ], [ -77.176109313964787, -8.473384857177734 ], [ -77.175468444824219, -8.472691535949707 ], [ -77.174423217773438, -8.470664024353027 ], [ -77.171508789062443, -8.470128059387207 ], [ -77.164321899414062, -8.467015266418457 ], [ -77.161155700683594, -8.464518547058049 ], [ -77.158576965332031, -8.461938858032227 ], [ -77.155227661132699, -8.460195541381779 ], [ -77.153556823730469, -8.458089828491154 ], [ -77.150352478027287, -8.457112312316838 ], [ -77.149597167968693, -8.456130027770939 ], [ -77.148704528808594, -8.454311370849609 ], [ -77.146987915039062, -8.454429626464787 ], [ -77.146469116210938, -8.45426082611084 ], [ -77.145408630371094, -8.452863693237248 ], [ -77.140823364257756, -8.448098182678223 ], [ -77.135726928710938, -8.443481445312386 ], [ -77.134170532226562, -8.441113471984806 ], [ -77.133522033691406, -8.44094181060791 ], [ -77.132240295410099, -8.442334175109806 ], [ -77.131172180175724, -8.442816734313965 ], [ -77.131576538085824, -8.443818092346191 ], [ -77.132247924804688, -8.456390380859375 ], [ -77.132598876953068, -8.457825660705566 ], [ -77.133735656738224, -8.460567474365234 ], [ -77.134086608886719, -8.462552070617619 ], [ -77.134613037109318, -8.463327407836914 ], [ -77.13916015625, -8.467940330505314 ], [ -77.139495849609375, -8.469401359558105 ], [ -77.139465332031193, -8.471823692321777 ], [ -77.139671325683537, -8.472455024719238 ], [ -77.140678405761719, -8.473907470703125 ], [ -77.141746520996037, -8.474940299987793 ], [ -77.143463134765568, -8.476034164428654 ], [ -77.143608093261719, -8.476493835449219 ], [ -77.141441345214844, -8.478504180908203 ], [ -77.140708923339787, -8.480375289916992 ], [ -77.138496398925781, -8.481954574584904 ], [ -77.136077880859375, -8.483086585998535 ], [ -77.134689331054631, -8.482508659362793 ], [ -77.133064270019531, -8.482433319091797 ], [ -77.131332397460938, -8.483151435851994 ], [ -77.130271911621094, -8.483056068420353 ], [ -77.125846862792912, -8.484248161315861 ], [ -77.123657226562443, -8.484594345092773 ], [ -77.122207641601506, -8.484592437744141 ], [ -77.121749877929631, -8.484404563903809 ], [ -77.121246337890568, -8.48369121551508 ], [ -77.120491027831974, -8.480895042419434 ], [ -77.119270324706974, -8.479663848876953 ], [ -77.118049621582031, -8.479668617248535 ], [ -77.114280700683537, -8.481498718261662 ], [ -77.112960815429631, -8.481767654418888 ], [ -77.111831665039006, -8.481067657470703 ], [ -77.111289978027344, -8.480439186096191 ], [ -77.110656738281193, -8.479033470153809 ], [ -77.109992980956974, -8.47874641418457 ], [ -77.10870361328125, -8.479240417480412 ], [ -77.107589721679688, -8.480252265930176 ], [ -77.106941223144474, -8.481096267700138 ], [ -77.106819152832031, -8.481908798217773 ], [ -77.106391906738224, -8.482625007629395 ], [ -77.104553222656193, -8.482815742492676 ], [ -77.104011535644474, -8.483207702636719 ], [ -77.103416442871037, -8.484991073608342 ], [ -77.102455139160099, -8.486759185790959 ], [ -77.102455139160099, -8.48757266998291 ], [ -77.101173400878906, -8.488530158996582 ], [ -77.100639343261719, -8.48858737945551 ], [ -77.099746704101562, -8.488257408142033 ], [ -77.098411560058594, -8.486554145812988 ], [ -77.097213745117131, -8.485692977905273 ], [ -77.095588684081974, -8.485514640807992 ], [ -77.094856262206974, -8.486078262329102 ], [ -77.094329833984375, -8.486053466796875 ], [ -77.093704223632756, -8.485522270202637 ], [ -77.093124389648381, -8.484307289123478 ], [ -77.092430114746094, -8.48343372344965 ], [ -77.091896057128849, -8.483031272888127 ], [ -77.091148376464844, -8.48286247253418 ], [ -77.088569641113281, -8.483135223388615 ], [ -77.087303161621037, -8.484346389770394 ], [ -77.086700439453125, -8.485950469970703 ], [ -77.084991455078125, -8.487270355224609 ], [ -77.083404541015568, -8.487513542175236 ], [ -77.081260681152344, -8.487036705017033 ], [ -77.080802917480469, -8.487155914306584 ], [ -77.08056640625, -8.487666130065918 ], [ -77.080787658691406, -8.489940643310547 ], [ -77.080108642578125, -8.491698265075627 ], [ -77.079772949218693, -8.493288993835449 ], [ -77.079994201660156, -8.497446060180664 ], [ -77.080429077148381, -8.49837589263916 ], [ -77.083824157714844, -8.501855850219727 ], [ -77.084449768066349, -8.50278377532959 ], [ -77.084587097167969, -8.503741264343262 ], [ -77.084381103515625, -8.50507926940918 ], [ -77.084754943847656, -8.507193565368652 ], [ -77.084785461425781, -8.510320663452148 ], [ -77.085403442382756, -8.511093139648381 ], [ -77.086524963378906, -8.511424064636174 ], [ -77.089324951171818, -8.512837409973031 ], [ -77.090103149414062, -8.513429641723576 ], [ -77.091163635253906, -8.514760971069279 ], [ -77.09136962890625, -8.51563835144043 ], [ -77.091209411621037, -8.516786575317383 ], [ -77.089347839355469, -8.519851684570256 ], [ -77.088256835937443, -8.522886276245117 ], [ -77.085899353027344, -8.524534225463867 ], [ -77.084678649902344, -8.526402473449707 ], [ -77.084037780761719, -8.526748657226562 ], [ -77.082969665527344, -8.526899337768555 ], [ -77.079566955566349, -8.526682853698674 ], [ -77.077606201171875, -8.526992797851506 ], [ -77.07607269287098, -8.527507781982422 ], [ -77.075210571289006, -8.528143882751351 ], [ -77.074752807617188, -8.528923034667912 ], [ -77.074707031249943, -8.529719352722168 ], [ -77.075691223144418, -8.533611297607422 ], [ -77.075508117675781, -8.534660339355469 ], [ -77.074905395507756, -8.53534984588623 ], [ -77.071540832519531, -8.536615371704102 ], [ -77.065483093261662, -8.537361145019531 ], [ -77.063140869140625, -8.538017272949219 ], [ -77.059867858886719, -8.537761688232422 ], [ -77.059707641601562, -8.538187980651855 ], [ -77.06005859375, -8.539857864379883 ], [ -77.060188293457031, -8.543256759643498 ], [ -77.060096740722656, -8.543963432311955 ], [ -77.059684753417969, -8.544642448425179 ], [ -77.058891296386662, -8.545062065124512 ], [ -77.057609558105469, -8.545016288757267 ], [ -77.056884765624943, -8.545254707336369 ], [ -77.0562744140625, -8.546169281005803 ], [ -77.056076049804688, -8.546857833862305 ], [ -77.056388854980469, -8.548800468444824 ], [ -77.056015014648381, -8.549931526184025 ], [ -77.055023193359375, -8.550752639770508 ], [ -77.053665161132812, -8.551228523254395 ], [ -77.051895141601562, -8.55288124084467 ], [ -77.050247192382812, -8.553622245788574 ], [ -77.048439025878906, -8.554160118102971 ], [ -77.046379089355412, -8.554304122924805 ], [ -77.043495178222656, -8.554201126098633 ], [ -77.040557861328125, -8.553745269775391 ], [ -77.03765869140625, -8.554350852966252 ], [ -77.036247253417969, -8.553481101989689 ], [ -77.0362548828125, -8.551336288452148 ], [ -77.035530090331974, -8.548765182495117 ], [ -77.032791137695312, -8.544893264770451 ], [ -77.032279968261662, -8.543532371520996 ], [ -77.030975341796875, -8.542092323303166 ], [ -77.029556274414062, -8.541889190673771 ], [ -77.027809143066349, -8.542197227478027 ], [ -77.025184631347656, -8.543161392211857 ], [ -77.0242919921875, -8.543227195739746 ], [ -77.02325439453125, -8.542954444885197 ], [ -77.02166748046875, -8.541930198669434 ], [ -77.019500732421818, -8.541021347045898 ], [ -77.014846801757699, -8.540656089782715 ], [ -77.013740539550781, -8.540047645568848 ], [ -77.012039184570312, -8.53996562957758 ], [ -77.010040283203125, -8.540980339050293 ], [ -77.007301330566349, -8.543705940246525 ], [ -77.003318786621094, -8.546953201293945 ], [ -76.99932861328125, -8.548338890075627 ], [ -76.998504638671818, -8.54891300201416 ], [ -76.997329711914062, -8.550203323364258 ], [ -76.994461059570312, -8.554468154907227 ], [ -76.993385314941349, -8.555475234985295 ], [ -76.992141723632756, -8.556259155273438 ], [ -76.988945007324219, -8.557387351989689 ], [ -76.984718322753906, -8.557410240173283 ], [ -76.982322692871037, -8.558643341064453 ], [ -76.97808837890625, -8.558818817138672 ], [ -76.977005004882812, -8.559384346008301 ], [ -76.976478576660099, -8.560824394226017 ], [ -76.974472045898381, -8.560671806335449 ], [ -76.973648071288949, -8.56125545501709 ], [ -76.972648620605469, -8.561385154724121 ], [ -76.97119140625, -8.561157226562443 ], [ -76.967147827148381, -8.561060905456543 ], [ -76.963699340820256, -8.558465003967285 ], [ -76.961616516113224, -8.555559158325138 ], [ -76.96010589599598, -8.554073333740178 ], [ -76.958892822265625, -8.551675796508675 ], [ -76.957260131835938, -8.549929618835449 ], [ -76.956573486328068, -8.547943115234375 ], [ -76.954421997070312, -8.545431137084961 ], [ -76.952774047851562, -8.545269012451172 ], [ -76.949516296386662, -8.546759605407715 ], [ -76.948974609375, -8.546662330627385 ], [ -76.947456359863281, -8.545818328857422 ], [ -76.947090148925781, -8.545893669128418 ], [ -76.946426391601562, -8.546531677246094 ], [ -76.9459228515625, -8.548086166381836 ], [ -76.945030212402287, -8.54912281036377 ], [ -76.943687438964787, -8.550150871276799 ], [ -76.941726684570312, -8.551147460937443 ], [ -76.940376281738281, -8.55250072479248 ], [ -76.939765930175724, -8.554148674011174 ], [ -76.939666748046818, -8.556436538696232 ], [ -76.93896484375, -8.558237075805607 ], [ -76.937400817871037, -8.560624122619629 ], [ -76.935523986816406, -8.56234169006342 ], [ -76.935020446777287, -8.563051223754883 ], [ -76.934844970703125, -8.564089775085392 ], [ -76.934928894042855, -8.566818237304688 ], [ -76.934379577636719, -8.567544937133789 ], [ -76.933341979980469, -8.567920684814396 ], [ -76.931236267089844, -8.567009925842285 ], [ -76.929763793945256, -8.567034721374455 ], [ -76.928153991699162, -8.56806468963623 ], [ -76.925041198730469, -8.569581031799203 ], [ -76.917312622070312, -8.570650100707951 ], [ -76.912986755371037, -8.570789337158146 ], [ -76.911231994628906, -8.57033729553217 ], [ -76.907981872558594, -8.568825721740723 ], [ -76.906654357910156, -8.568531990051156 ], [ -76.901954650878906, -8.566377639770508 ], [ -76.900802612304688, -8.566583633422852 ], [ -76.899330139160099, -8.567169189453068 ], [ -76.897682189941406, -8.56846809387207 ], [ -76.895866394042969, -8.568495750427246 ], [ -76.895042419433537, -8.567741394042912 ], [ -76.895118713378906, -8.564069747924748 ], [ -76.894790649414062, -8.563105583190918 ], [ -76.893699645996037, -8.562116622924805 ], [ -76.8919677734375, -8.561293601989746 ], [ -76.889137268066349, -8.557790756225586 ], [ -76.888153076171875, -8.556961059570256 ], [ -76.886894226074219, -8.556380271911621 ], [ -76.885688781738224, -8.556413650512638 ], [ -76.884841918945256, -8.556969642639103 ], [ -76.884422302246094, -8.557558059692326 ], [ -76.883972167968693, -8.55915355682373 ], [ -76.882568359374943, -8.560605049133244 ], [ -76.880096435546875, -8.560419082641545 ], [ -76.876319885253906, -8.558989524841309 ], [ -76.873741149902344, -8.558832168579102 ], [ -76.872489929199219, -8.559135437011662 ], [ -76.87164306640625, -8.559700965881348 ], [ -76.870918273925724, -8.560535430908203 ], [ -76.870361328124943, -8.561895370483398 ], [ -76.869499206542912, -8.562702178955078 ], [ -76.867774963378849, -8.563000679016 ], [ -76.866096496582031, -8.562239646911621 ], [ -76.865097045898381, -8.561424255371037 ], [ -76.862556457519531, -8.556534767150879 ], [ -76.861717224121094, -8.555562019348031 ], [ -76.860069274902344, -8.554232597351074 ], [ -76.858963012695312, -8.553579330444279 ], [ -76.857315063476562, -8.55298900604248 ], [ -76.854743957519531, -8.552268028259221 ], [ -76.853004455566349, -8.552079200744629 ], [ -76.851547241210881, -8.551506996154785 ], [ -76.850189208984375, -8.550565719604492 ], [ -76.848930358886719, -8.549104690551758 ], [ -76.84503173828125, -8.546627998352051 ], [ -76.844398498535099, -8.544824600219727 ], [ -76.843955993652344, -8.542556762695256 ], [ -76.843841552734318, -8.5369615554809 ], [ -76.842765808105469, -8.534814834594727 ], [ -76.840614318847656, -8.532809257507267 ], [ -76.840049743652344, -8.528816223144474 ], [ -76.839431762695256, -8.527164459228516 ], [ -76.838272094726562, -8.52565860748291 ], [ -76.836097717285099, -8.523526191711426 ], [ -76.833168029785099, -8.519562721252441 ], [ -76.831825256347599, -8.518621444702148 ], [ -76.830535888671875, -8.518507957458439 ], [ -76.828361511230469, -8.518890380859318 ], [ -76.824554443359318, -8.52039909362793 ], [ -76.824089050292912, -8.520410537719727 ], [ -76.821792602539006, -8.521568298339787 ], [ -76.82080078125, -8.521792411804199 ], [ -76.818069458007756, -8.521577835083008 ], [ -76.816078186035099, -8.521125793457031 ], [ -76.814270019531193, -8.519316673278809 ], [ -76.813102722167969, -8.519080162048283 ], [ -76.811759948730469, -8.517583847045898 ], [ -76.810218811035156, -8.517301559448242 ], [ -76.808235168457031, -8.517998695373535 ], [ -76.806991577148438, -8.519069671630859 ], [ -76.805572509765625, -8.520777702331486 ], [ -76.805137634277344, -8.520895957946664 ], [ -76.803665161132812, -8.519808769226074 ], [ -76.802162170410099, -8.516500473022461 ], [ -76.800285339355469, -8.514336585998478 ], [ -76.798339843749943, -8.513352394104004 ], [ -76.796180725097656, -8.512747764587402 ], [ -76.794914245605412, -8.512618064880371 ], [ -76.793960571289006, -8.513165473937988 ], [ -76.792587280273438, -8.514772415161133 ], [ -76.792266845703125, -8.516761779785156 ], [ -76.791023254394531, -8.518575668334904 ], [ -76.790245056152287, -8.520830154418945 ], [ -76.788734436035156, -8.522917747497559 ], [ -76.787002563476506, -8.524695396423283 ], [ -76.784866333007812, -8.525520324707031 ], [ -76.780914306640625, -8.525685310363713 ], [ -76.776405334472599, -8.524429321289006 ], [ -76.768867492675724, -8.524677276611328 ], [ -76.765258789062443, -8.523893356323185 ], [ -76.764259338378906, -8.524367332458496 ], [ -76.763542175292912, -8.525318145751953 ], [ -76.762695312499886, -8.526017189025879 ], [ -76.761734008789006, -8.526341438293457 ], [ -76.760726928710938, -8.526309013366642 ], [ -76.759078979492188, -8.525520324707031 ], [ -76.756774902343693, -8.524870872497502 ], [ -76.754058837890625, -8.522504806518555 ], [ -76.752914428710938, -8.521778106689339 ], [ -76.751251220703011, -8.521205902099496 ], [ -76.749427795410099, -8.52089786529541 ], [ -76.748146057128906, -8.521012306213322 ], [ -76.746917724609375, -8.521407127380371 ], [ -76.741752624511719, -8.523826599121094 ], [ -76.741027832031193, -8.524362564086914 ], [ -76.740661621093693, -8.524374008178654 ], [ -76.738632202148381, -8.525629997253361 ], [ -76.736953735351562, -8.526107788085938 ], [ -76.735206604003849, -8.526050567626896 ], [ -76.731971740722599, -8.525336265563965 ], [ -76.729179382324219, -8.524396896362248 ], [ -76.727935791015625, -8.523608207702637 ], [ -76.727119445800724, -8.524326324462834 ], [ -76.725227355957031, -8.527470588684082 ], [ -76.724327087402287, -8.52826023101801 ], [ -76.722846984863281, -8.528939247131291 ], [ -76.720550537109375, -8.532030105590707 ], [ -76.719146728515625, -8.533066749572754 ], [ -76.717704772949219, -8.533273696899414 ], [ -76.714759826660156, -8.535464286804142 ], [ -76.711799621582031, -8.536708831787109 ], [ -76.710746765136719, -8.537871360778695 ], [ -76.709014892578125, -8.540690422058105 ], [ -76.707710266113281, -8.541977882385254 ], [ -76.705703735351562, -8.543089866638127 ], [ -76.702720642089844, -8.544306755065918 ], [ -76.701194763183594, -8.544649124145508 ], [ -76.699447631835881, -8.544637680053711 ], [ -76.698654174804688, -8.544316291809082 ], [ -76.696937561035156, -8.542513847351017 ], [ -76.69612884521473, -8.539913177490234 ], [ -76.694404602050724, -8.537650108337346 ], [ -76.691177368164062, -8.535703659057617 ], [ -76.687301635742188, -8.533786773681584 ], [ -76.685897827148381, -8.532743453979492 ], [ -76.683937072753906, -8.531948089599553 ], [ -76.682815551757812, -8.530723571777287 ], [ -76.682441711425781, -8.529900550842228 ], [ -76.681060791015511, -8.528670310974121 ], [ -76.680297851562386, -8.528418540954533 ], [ -76.678451538085881, -8.528553962707463 ], [ -76.675971984863224, -8.527316093444824 ], [ -76.673583984375, -8.527209281921387 ], [ -76.672592163085938, -8.526735305786133 ], [ -76.671546936035156, -8.525156021118107 ], [ -76.671333312988168, -8.523713111877441 ], [ -76.670600891113281, -8.522024154663086 ], [ -76.669906616210938, -8.521284103393555 ], [ -76.668594360351562, -8.520430564880371 ], [ -76.667266845703125, -8.520103454589844 ], [ -76.665336608886719, -8.519974708557072 ], [ -76.662979125976562, -8.520410537719727 ], [ -76.662155151367131, -8.521082878112736 ], [ -76.660682678222656, -8.523857116699162 ], [ -76.660011291503906, -8.524374008178654 ], [ -76.659317016601449, -8.524567604064828 ], [ -76.658027648925781, -8.524392127990723 ], [ -76.656715393066349, -8.523376464843693 ], [ -76.655426025390625, -8.522883415222111 ], [ -76.651756286621037, -8.522945404052734 ], [ -76.648712158203068, -8.521919250488281 ], [ -76.645957946777287, -8.521819114685002 ], [ -76.643974304199219, -8.521386146545353 ], [ -76.642433166503849, -8.521628379821721 ], [ -76.640640258789062, -8.52274036407465 ], [ -76.640098571777344, -8.522812843322754 ], [ -76.638938903808594, -8.52248477935791 ], [ -76.63824462890625, -8.522042274475098 ], [ -76.636741638183594, -8.519211769103947 ], [ -76.635139465332031, -8.517926216125488 ], [ -76.63494873046875, -8.517383575439396 ], [ -76.63509368896473, -8.51578235626215 ], [ -76.634323120117131, -8.515259742736816 ], [ -76.633872985839844, -8.515234947204533 ], [ -76.632034301757756, -8.516274452209473 ], [ -76.630523681640625, -8.515304565429688 ], [ -76.629409790039062, -8.51594066619873 ], [ -76.628746032714844, -8.516043663024902 ], [ -76.628219604492131, -8.515747070312443 ], [ -76.626907348632812, -8.514323234558105 ], [ -76.625167846679631, -8.514610290527287 ], [ -76.623558044433594, -8.513111114501953 ], [ -76.622970581054631, -8.512875556945801 ], [ -76.619842529296875, -8.512788772583008 ], [ -76.618103027343693, -8.511990547180176 ], [ -76.617012023925781, -8.512203216552734 ], [ -76.615272521972656, -8.513549804687443 ], [ -76.613967895507812, -8.514009475708008 ], [ -76.612724304199219, -8.513291358947697 ], [ -76.611549377441406, -8.513980865478516 ], [ -76.609626770019474, -8.513762474060059 ], [ -76.608283996581974, -8.51404953002924 ], [ -76.6051025390625, -8.513231277465763 ], [ -76.600090026855412, -8.513250350952148 ], [ -76.599006652832031, -8.512768745422363 ], [ -76.597175598144531, -8.510722160339355 ], [ -76.595069885253906, -8.509792327880859 ], [ -76.593193054199162, -8.508180618286076 ], [ -76.592475891113281, -8.508003234863281 ], [ -76.5914306640625, -8.508349418640137 ], [ -76.590202331542969, -8.509530067443848 ], [ -76.588981628417969, -8.508885383605957 ], [ -76.588432312011662, -8.508941650390625 ], [ -76.587860107421818, -8.509402275085449 ], [ -76.586021423339844, -8.509167671203613 ], [ -76.584030151367188, -8.510087966918888 ], [ -76.581756591796818, -8.510494232177678 ], [ -76.580825805664006, -8.510184288024846 ], [ -76.577972412109375, -8.507998466491642 ], [ -76.575920104980469, -8.507472038269043 ], [ -76.574531555175724, -8.507513046264592 ], [ -76.573089599609318, -8.508106231689396 ], [ -76.571990966796875, -8.50798511505127 ], [ -76.570846557617188, -8.508569717407113 ], [ -76.569313049316406, -8.50887393951416 ], [ -76.567657470703068, -8.508951187133675 ], [ -76.565834045410099, -8.508705139160099 ], [ -76.563621520996094, -8.50784778594965 ], [ -76.561515808105469, -8.505541801452523 ], [ -76.558563232421875, -8.505463600158635 ], [ -76.557601928710938, -8.504843711852971 ], [ -76.555870056152344, -8.503113746643066 ], [ -76.554824829101562, -8.502772331237736 ], [ -76.553993225097656, -8.502200126647892 ], [ -76.552833557128906, -8.501952171325684 ], [ -76.551383972167969, -8.500273704528752 ], [ -76.550971984863224, -8.498098373413086 ], [ -76.548980712890625, -8.498141288757324 ], [ -76.548728942871094, -8.498449325561467 ], [ -76.548362731933594, -8.497944831848088 ], [ -76.547424316406193, -8.49755954742426 ], [ -76.547218322753906, -8.49721622467041 ], [ -76.546295166015568, -8.497897148132267 ], [ -76.545326232910099, -8.498084068298283 ], [ -76.544830322265625, -8.497706413268986 ], [ -76.544288635253849, -8.497698783874455 ], [ -76.543502807617188, -8.49793815612793 ], [ -76.542808532714844, -8.498373985290471 ], [ -76.543678283691406, -8.501299858093262 ], [ -76.543655395507812, -8.504039764404183 ], [ -76.543190002441406, -8.504628181457463 ], [ -76.542350769042969, -8.505013465881291 ], [ -76.541679382324219, -8.505764961242619 ], [ -76.541656494140625, -8.50639820098877 ], [ -76.541038513183537, -8.507406234741154 ], [ -76.541343688964787, -8.508731842041016 ], [ -76.541267395019531, -8.509466171264648 ], [ -76.538948059081974, -8.512513160705566 ], [ -76.53753662109375, -8.51385593414301 ], [ -76.536033630371094, -8.513869285583496 ], [ -76.534912109375, -8.5142822265625 ], [ -76.532112121582031, -8.516365051269531 ], [ -76.530372619628849, -8.518259048461914 ], [ -76.529090881347656, -8.518780708312988 ], [ -76.528450012206974, -8.519289016723633 ], [ -76.526184082031136, -8.522174835205078 ], [ -76.523132324218636, -8.524057388305664 ], [ -76.521125793456974, -8.526325225830021 ], [ -76.518783569335938, -8.527576446533146 ], [ -76.517158508300781, -8.530256271362305 ], [ -76.515388488769474, -8.530687332153263 ], [ -76.514862060546875, -8.531036376953125 ], [ -76.514419555664006, -8.531740188598576 ], [ -76.514213562011719, -8.533289909362736 ], [ -76.51302337646473, -8.534305572509766 ], [ -76.5076904296875, -8.53649711608881 ], [ -76.506217956542912, -8.53644943237299 ], [ -76.504264831542969, -8.535623550414982 ], [ -76.503898620605469, -8.535708427429199 ], [ -76.503684997558594, -8.538799285888672 ], [ -76.50311279296875, -8.541128158569336 ], [ -76.502410888671818, -8.542819023132267 ], [ -76.501495361328125, -8.547038078308105 ], [ -76.500862121582031, -8.547799110412598 ], [ -76.497802734375, -8.55013465881342 ], [ -76.49700927734375, -8.550969123840275 ], [ -76.496215820312443, -8.55256462097168 ], [ -76.495574951171875, -8.554775238036996 ], [ -76.494743347167969, -8.559614181518555 ], [ -76.494949340820312, -8.562369346618596 ], [ -76.495880126953125, -8.565478324890137 ], [ -76.493759155273324, -8.575757026672306 ], [ -76.49322509765625, -8.579792976379395 ], [ -76.493278503417912, -8.583139419555607 ], [ -76.493652343749943, -8.585333824157658 ], [ -76.494071960449219, -8.586507797241211 ], [ -76.494964599609318, -8.587562561035099 ], [ -76.495880126953125, -8.588003158569279 ], [ -76.496368408203125, -8.588009834289551 ], [ -76.498298645019531, -8.587053298950138 ], [ -76.499717712402344, -8.586078643798828 ], [ -76.501174926757756, -8.585846900939941 ], [ -76.502212524414006, -8.584016799926758 ], [ -76.502899169921818, -8.58354473114008 ], [ -76.503990173339844, -8.583577156066838 ], [ -76.50691986083973, -8.584623336791992 ], [ -76.50762939453125, -8.585200309753418 ], [ -76.508430480956974, -8.585423469543457 ], [ -76.510536193847599, -8.587321281433105 ], [ -76.510993957519474, -8.588114738464299 ], [ -76.511207580566349, -8.589199066162053 ], [ -76.512245178222599, -8.590235710144043 ], [ -76.511970520019474, -8.591745376586914 ], [ -76.512031555175781, -8.592658996582031 ], [ -76.512664794921875, -8.593680381774902 ], [ -76.514579772949219, -8.59582328796381 ], [ -76.514892578125, -8.596527099609318 ], [ -76.514808654785099, -8.597550392150879 ], [ -76.512374877929688, -8.602291107177734 ], [ -76.511703491210938, -8.605800628662109 ], [ -76.511123657226562, -8.607148170471135 ], [ -76.509620666503906, -8.608873367309513 ], [ -76.507148742675781, -8.609831809997559 ], [ -76.506156921386605, -8.610928535461426 ], [ -76.505638122558594, -8.612289428710938 ], [ -76.50592041015625, -8.61426830291748 ], [ -76.505439758300781, -8.615054130554199 ], [ -76.504791259765568, -8.615339279174805 ], [ -76.5035400390625, -8.614791870117188 ], [ -76.502632141113281, -8.614857673644963 ], [ -76.502220153808537, -8.615575790405273 ], [ -76.502265930175781, -8.616316795349121 ], [ -76.502616882324162, -8.61695671081543 ], [ -76.502525329589787, -8.617508888244629 ], [ -76.502273559570312, -8.617889404296818 ], [ -76.501495361328125, -8.618298530578556 ], [ -76.499885559082031, -8.618105888366699 ], [ -76.494728088378906, -8.618135452270451 ], [ -76.491523742675781, -8.617713928222599 ], [ -76.489356994628849, -8.616925239562988 ], [ -76.487373352050781, -8.615477561950627 ], [ -76.486946105957031, -8.615644454955998 ], [ -76.486022949218693, -8.616921424865723 ], [ -76.484481811523381, -8.617036819458008 ], [ -76.482955932617131, -8.616654396057129 ], [ -76.479209899902344, -8.615347862243652 ], [ -76.477241516113224, -8.61489200592041 ], [ -76.476684570312443, -8.614381790161133 ], [ -76.475082397460938, -8.610361099243164 ], [ -76.473800659179631, -8.608912467956486 ], [ -76.472854614257756, -8.606692314147892 ], [ -76.472152709960938, -8.605707168579102 ], [ -76.471504211425724, -8.605059623718262 ], [ -76.470428466796875, -8.604521751403752 ], [ -76.46875, -8.60243034362793 ], [ -76.465354919433594, -8.600407600402832 ], [ -76.462715148925781, -8.597842216491642 ], [ -76.462638854980412, -8.596104621887207 ], [ -76.463050842285043, -8.594801902770939 ], [ -76.464073181152287, -8.593514442443791 ], [ -76.464317321777344, -8.592337608337402 ], [ -76.463249206542969, -8.589710235595703 ], [ -76.463188171386719, -8.587141036987248 ], [ -76.464027404785156, -8.58432674407959 ], [ -76.463821411132812, -8.582491874694767 ], [ -76.464179992675724, -8.581648826599121 ], [ -76.46429443359375, -8.579451560974007 ], [ -76.464614868164062, -8.578592300415039 ], [ -76.465385437011719, -8.577667236328125 ], [ -76.465499877929631, -8.577106475830078 ], [ -76.464981079101562, -8.576066970825138 ], [ -76.463027954101506, -8.573587417602482 ], [ -76.462806701660156, -8.572675704956055 ], [ -76.463554382324219, -8.570214271545353 ], [ -76.464477539062443, -8.568121910095215 ], [ -76.465072631835938, -8.567305564880314 ], [ -76.467170715332031, -8.563118934631348 ], [ -76.467338562011662, -8.562126159667969 ], [ -76.467010498046875, -8.561467170715275 ], [ -76.466972351074219, -8.560535430908203 ], [ -76.467964172363281, -8.55809211730957 ], [ -76.467437744140511, -8.557431221008301 ], [ -76.466148376464844, -8.556731224060002 ], [ -76.465385437011719, -8.555929183959961 ], [ -76.465156555175781, -8.554673194885197 ], [ -76.464729309082031, -8.553860664367676 ], [ -76.462211608886719, -8.551174163818359 ], [ -76.461738586425781, -8.550173759460336 ], [ -76.461570739746094, -8.548455238342285 ], [ -76.459236145019418, -8.547136306762695 ], [ -76.458038330078125, -8.545404434204102 ], [ -76.455718994140625, -8.536786079406738 ], [ -76.45318603515625, -8.531289100646973 ], [ -76.453582763671818, -8.529569625854492 ], [ -76.455001831054688, -8.528406143188363 ], [ -76.455528259277344, -8.527634620666504 ], [ -76.455604553222599, -8.525828361511174 ], [ -76.454650878906193, -8.524456024169922 ], [ -76.452415466308594, -8.523370742797852 ], [ -76.450607299804688, -8.521532058715763 ], [ -76.45001220703125, -8.521273612976017 ], [ -76.448905944824162, -8.521269798278752 ], [ -76.448005676269531, -8.520339965820256 ], [ -76.447868347167912, -8.519083976745492 ], [ -76.448196411132812, -8.516235351562443 ], [ -76.448158264160099, -8.512462615966797 ], [ -76.447708129882812, -8.511063575744629 ], [ -76.44588470458973, -8.508865356445312 ], [ -76.445663452148381, -8.507662773132324 ], [ -76.445793151855469, -8.507145881652832 ], [ -76.446922302246037, -8.506193161010742 ], [ -76.448158264160099, -8.504687309265137 ], [ -76.44893646240223, -8.502737998962402 ], [ -76.449195861816349, -8.501375198364258 ], [ -76.449104309081974, -8.500053405761719 ], [ -76.448158264160099, -8.497415542602539 ], [ -76.447189331054631, -8.495847702026367 ], [ -76.444351196289006, -8.493243217468262 ], [ -76.444328308105412, -8.489952087402344 ], [ -76.443992614746094, -8.489195823669434 ], [ -76.440559387207031, -8.485717773437443 ], [ -76.438453674316406, -8.479532241821289 ], [ -76.437782287597656, -8.478510856628418 ], [ -76.43560791015625, -8.476259231567383 ], [ -76.433128356933594, -8.472597122192326 ], [ -76.431434631347656, -8.469330787658635 ], [ -76.4298095703125, -8.465519905090275 ], [ -76.424514770507756, -8.45645809173584 ], [ -76.423080444335881, -8.45275688171381 ], [ -76.4222412109375, -8.45169544219965 ], [ -76.419296264648438, -8.448893547057992 ], [ -76.418685913085881, -8.447250366210938 ], [ -76.418113708496037, -8.44665336608881 ], [ -76.418014526367131, -8.444819450378418 ], [ -76.417442321777287, -8.443662643432617 ], [ -76.4169921875, -8.443329811096191 ], [ -76.415740966796818, -8.44309139251709 ], [ -76.414291381835881, -8.443358421325627 ], [ -76.412742614746094, -8.443941116333008 ], [ -76.411544799804631, -8.444019317626896 ], [ -76.408668518066349, -8.443344116210938 ], [ -76.406715393066406, -8.442317962646428 ], [ -76.401222229003849, -8.437265396118164 ], [ -76.399520874023381, -8.435996055602971 ], [ -76.394294738769531, -8.430681228637695 ], [ -76.391876220703068, -8.428682327270508 ], [ -76.3848876953125, -8.421217918395939 ], [ -76.381507873535099, -8.418364524841252 ], [ -76.377120971679631, -8.413812637329102 ], [ -76.375885009765511, -8.413227081298771 ], [ -76.375350952148438, -8.413287162780705 ], [ -76.374237060546818, -8.413923263549805 ], [ -76.373107910156193, -8.413882255554142 ], [ -76.372604370117188, -8.413537025451603 ], [ -76.372062683105412, -8.412654876708928 ], [ -76.372108459472656, -8.411099433898926 ], [ -76.371726989746094, -8.410799980163574 ], [ -76.368530273437443, -8.411165237426701 ], [ -76.365264892578068, -8.412406921386719 ], [ -76.363540649414062, -8.413931846618652 ], [ -76.361434936523438, -8.416245460510254 ], [ -76.358497619628849, -8.420796394348088 ], [ -76.354751586914062, -8.424064636230469 ], [ -76.353103637695312, -8.424892425537109 ], [ -76.351676940917969, -8.425286293029728 ], [ -76.34844970703125, -8.425215721130314 ], [ -76.347114562988281, -8.424921989440861 ], [ -76.346664428710938, -8.425030708312988 ], [ -76.344688415527287, -8.424558639526367 ], [ -76.342758178710881, -8.424464225768986 ], [ -76.340728759765625, -8.424599647521916 ], [ -76.339393615722656, -8.424958229064941 ], [ -76.337356567382699, -8.426048278808594 ], [ -76.335655212402344, -8.427293777465763 ], [ -76.334281921386662, -8.428908348083496 ], [ -76.332786560058594, -8.431445121765137 ], [ -76.332511901855469, -8.432983398437443 ], [ -76.332855224609318, -8.43451023101801 ], [ -76.332695007324219, -8.43919563293457 ], [ -76.333099365234375, -8.443678855895996 ], [ -76.331840515136719, -8.447037696838379 ], [ -76.329170227050781, -8.450926780700684 ], [ -76.328147888183594, -8.452957153320312 ], [ -76.328079223632756, -8.455262184143066 ], [ -76.328414916992188, -8.456029891967773 ], [ -76.328956604003849, -8.459634780883732 ], [ -76.328819274902344, -8.461100578307992 ], [ -76.327835083007812, -8.462741851806584 ], [ -76.32501220703125, -8.464803695678711 ], [ -76.323234558105412, -8.466535568237305 ], [ -76.322563171386662, -8.467741966247502 ], [ -76.322311401367188, -8.468729019165039 ], [ -76.322547912597599, -8.471466064453125 ], [ -76.323081970214844, -8.472551345825195 ], [ -76.324501037597656, -8.473856925964299 ], [ -76.326980590820312, -8.475078582763672 ], [ -76.327644348144531, -8.475962638854924 ], [ -76.328109741210938, -8.477154731750431 ], [ -76.328010559081918, -8.479550361633244 ], [ -76.325454711914062, -8.485255241394043 ], [ -76.324073791503849, -8.489250183105412 ], [ -76.323654174804688, -8.491230964660645 ], [ -76.322547912597599, -8.493658065795842 ], [ -76.32135009765625, -8.494792938232422 ], [ -76.320350646972599, -8.495358467101994 ], [ -76.316116333007812, -8.496808052062931 ], [ -76.313789367675724, -8.498474121093693 ], [ -76.312904357910156, -8.499631881713867 ], [ -76.3128662109375, -8.500960350036564 ], [ -76.311584472656193, -8.503815650939941 ], [ -76.311683654785099, -8.505379676818791 ], [ -76.313034057617131, -8.506973266601506 ], [ -76.315254211425781, -8.509092330932617 ], [ -76.319541931152344, -8.512134552001896 ], [ -76.322082519531193, -8.514928817748967 ], [ -76.323356628417969, -8.516732215881291 ], [ -76.324256896972599, -8.520103454589844 ], [ -76.32354736328125, -8.523414611816406 ], [ -76.323738098144531, -8.524310111999455 ], [ -76.324394226074219, -8.525069236755314 ], [ -76.324333190917969, -8.525617599487248 ], [ -76.322181701660099, -8.52800464630127 ], [ -76.321098327636719, -8.528280258178654 ], [ -76.3167724609375, -8.530880928039551 ], [ -76.315467834472656, -8.532187461853027 ], [ -76.314552307128849, -8.533809661865234 ], [ -76.313713073730469, -8.536623954772892 ], [ -76.313545227050781, -8.53929328918457 ], [ -76.313858032226562, -8.54173374176014 ], [ -76.315101623535099, -8.545201301574707 ], [ -76.314979553222656, -8.546477317810059 ], [ -76.313125610351506, -8.548509597778263 ], [ -76.311225891113168, -8.548894882202092 ], [ -76.309661865234375, -8.548784255981388 ], [ -76.308845520019531, -8.548940658569336 ], [ -76.306594848632812, -8.549996376037541 ], [ -76.305290222167912, -8.551149368286133 ], [ -76.304817199706974, -8.552543640136719 ], [ -76.304893493652344, -8.55605411529541 ], [ -76.304634094238224, -8.557851791381779 ], [ -76.302688598632812, -8.561296463012638 ], [ -76.299903869628906, -8.568881034851074 ], [ -76.298896789550724, -8.57080173492426 ], [ -76.297821044921875, -8.571793556213379 ], [ -76.296684265136719, -8.572201728820801 ], [ -76.295394897460824, -8.572260856628418 ], [ -76.291412353515625, -8.570791244506836 ], [ -76.285400390625, -8.569437026977539 ], [ -76.283668518066406, -8.569615364074707 ], [ -76.282104492187443, -8.571029663085938 ], [ -76.279953002929688, -8.575107574462891 ], [ -76.279670715332031, -8.57757568359375 ], [ -76.28009033203125, -8.579348564147892 ], [ -76.283332824707031, -8.585331916809082 ], [ -76.283561706542912, -8.586606025695801 ], [ -76.283348083496037, -8.587583541870117 ], [ -76.282608032226506, -8.588752746582031 ], [ -76.280906677246094, -8.590432167053166 ], [ -76.277542114257756, -8.591916084289551 ], [ -76.275047302246037, -8.59330940246582 ], [ -76.272552490234375, -8.595341682434082 ], [ -76.270744323730469, -8.597302436828556 ], [ -76.270591735839787, -8.597637176513672 ], [ -76.270668029785099, -8.599383354186898 ], [ -76.271965026855469, -8.601827621459904 ], [ -76.272430419921875, -8.603327751159668 ], [ -76.272369384765625, -8.604701995849609 ], [ -76.272041320800781, -8.605853080749455 ], [ -76.270347595214844, -8.607784271240178 ], [ -76.266487121581974, -8.610610008239689 ], [ -76.265022277832031, -8.611184120178223 ], [ -76.263908386230412, -8.611992835998478 ], [ -76.262115478515625, -8.613706588745117 ], [ -76.261421203613224, -8.615111351013127 ], [ -76.261436462402287, -8.615942955017033 ], [ -76.261772155761719, -8.616628646850586 ], [ -76.263969421386719, -8.619352340698185 ], [ -76.266799926757812, -8.622381210327148 ], [ -76.268547058105469, -8.625314712524414 ], [ -76.269279479980469, -8.627592086791992 ], [ -76.269279479980469, -8.630532264709473 ], [ -76.268630981445312, -8.632251739501953 ], [ -76.26776123046875, -8.63320255279541 ], [ -76.265594482421875, -8.634196281433105 ], [ -76.263282775878906, -8.636039733886719 ], [ -76.262184143066349, -8.637516975402832 ], [ -76.261795043945256, -8.639019012451172 ], [ -76.261932373046875, -8.640396118164006 ], [ -76.262580871581974, -8.641522407531738 ], [ -76.263870239257812, -8.642839431762638 ], [ -76.264808654785156, -8.643359184265137 ], [ -76.266395568847599, -8.644774436950627 ], [ -76.267623901367131, -8.646388053893986 ], [ -76.268302917480412, -8.648185729980469 ], [ -76.268486022949162, -8.65130424499506 ], [ -76.268150329589844, -8.652726173400822 ], [ -76.2672119140625, -8.654302597045898 ], [ -76.266510009765625, -8.655036926269531 ], [ -76.263618469238224, -8.656990051269474 ], [ -76.256637573242188, -8.660343170165959 ], [ -76.253890991210881, -8.662811279296818 ], [ -76.251785278320256, -8.665341377258301 ], [ -76.250015258789062, -8.668990135192814 ], [ -76.248100280761719, -8.675318717956543 ], [ -76.2474365234375, -8.680610656738281 ], [ -76.246589660644531, -8.683642387390137 ], [ -76.246589660644531, -8.684845924377385 ], [ -76.246902465820312, -8.68598461151123 ], [ -76.247940063476562, -8.687010765075627 ], [ -76.249542236328125, -8.687414169311523 ], [ -76.251663208007812, -8.687343597412109 ], [ -76.254371643066349, -8.685444831848088 ], [ -76.256332397460938, -8.683257102966309 ], [ -76.257575988769531, -8.682323455810547 ], [ -76.260169982910099, -8.681112289428711 ], [ -76.261810302734318, -8.680852890014648 ], [ -76.264152526855469, -8.681415557861271 ], [ -76.265914916992131, -8.682730674743596 ], [ -76.266586303710881, -8.68348503112793 ], [ -76.267295837402344, -8.684896469116154 ], [ -76.267578125, -8.686702728271484 ], [ -76.266670227050724, -8.688594818115234 ], [ -76.264770507812443, -8.690185546874943 ], [ -76.262481689453068, -8.690518379211426 ], [ -76.259429931640568, -8.689796447753849 ], [ -76.25860595703125, -8.689842224121094 ], [ -76.257713317871037, -8.69031810760498 ], [ -76.255447387695312, -8.692402839660588 ], [ -76.254600524902344, -8.694132804870605 ], [ -76.254692077636719, -8.699468612670842 ], [ -76.25506591796875, -8.701177597045842 ], [ -76.256988525390625, -8.70605278015131 ], [ -76.256973266601562, -8.708161354064941 ], [ -76.256423950195312, -8.708904266357422 ], [ -76.2552490234375, -8.709811210632267 ], [ -76.253044128417912, -8.710722923278809 ], [ -76.250625610351562, -8.712569236755314 ], [ -76.246780395507812, -8.714551925659123 ], [ -76.244293212890625, -8.717136383056641 ], [ -76.243118286132756, -8.719112396240234 ], [ -76.242118835449219, -8.721783638000431 ], [ -76.241340637207031, -8.72519588470459 ], [ -76.241050720214844, -8.728026390075627 ], [ -76.240463256835824, -8.729982376098576 ], [ -76.239944458007812, -8.730961799621582 ], [ -76.237564086914062, -8.734231948852539 ], [ -76.229682922363224, -8.741573333740178 ], [ -76.227828979492188, -8.744748115539494 ], [ -76.22768402099598, -8.74637317657465 ], [ -76.228195190429688, -8.747358322143498 ], [ -76.228492736816406, -8.74771785736084 ], [ -76.231430053710938, -8.749037742614746 ], [ -76.234603881835938, -8.750003814697266 ], [ -76.236061096191349, -8.750153541564941 ], [ -76.237228393554688, -8.749859809875488 ], [ -76.240577697753906, -8.748329162597656 ], [ -76.241874694824162, -8.748290061950684 ], [ -76.243186950683594, -8.749114990234318 ], [ -76.243843078613281, -8.75012016296381 ], [ -76.243904113769531, -8.750659942626839 ], [ -76.243759155273438, -8.751665115356445 ], [ -76.243019104003849, -8.753214836120605 ], [ -76.240440368652287, -8.755718231201172 ], [ -76.236312866210938, -8.755902290344181 ], [ -76.234870910644531, -8.756215095519906 ], [ -76.232429504394474, -8.757509231567383 ], [ -76.231269836425781, -8.759265899658203 ], [ -76.231422424316406, -8.761082649230957 ], [ -76.232803344726506, -8.762689590454045 ], [ -76.233482360839787, -8.76297664642334 ], [ -76.235237121582031, -8.762887954711857 ], [ -76.237960815429631, -8.763304710388127 ], [ -76.239387512206974, -8.764303207397461 ], [ -76.240188598632812, -8.765739440917969 ], [ -76.240211486816406, -8.769227981567383 ], [ -76.239151000976562, -8.771347999572697 ], [ -76.23638916015625, -8.77379131317133 ], [ -76.235511779785156, -8.774290084838867 ], [ -76.233238220214844, -8.776820182800293 ], [ -76.232414245605469, -8.778261184692326 ], [ -76.231964111328068, -8.779755592346135 ], [ -76.232238769531193, -8.781100273132324 ], [ -76.236129760742188, -8.78852367401123 ], [ -76.236244201660099, -8.791188240051213 ], [ -76.235588073730412, -8.793300628662109 ], [ -76.234970092773438, -8.794196128845158 ], [ -76.233909606933594, -8.795112609863281 ], [ -76.2310791015625, -8.796624183654728 ], [ -76.229782104492074, -8.796627998351994 ], [ -76.229026794433594, -8.79628944396967 ], [ -76.228187561035156, -8.795185089111271 ], [ -76.227622985839844, -8.793804168701172 ], [ -76.227760314941349, -8.79259204864502 ], [ -76.227218627929688, -8.789909362792969 ], [ -76.226211547851562, -8.787226676940861 ], [ -76.225555419921818, -8.78624153137207 ], [ -76.223854064941349, -8.785317420959473 ], [ -76.222236633300724, -8.784940719604435 ], [ -76.220855712890625, -8.784954071044922 ], [ -76.218635559082031, -8.785586357116699 ], [ -76.21771240234375, -8.785553932189885 ], [ -76.216255187988281, -8.784753799438363 ], [ -76.215141296386719, -8.783528327941895 ], [ -76.214508056640568, -8.782190322875977 ], [ -76.214118957519474, -8.780583381652832 ], [ -76.213577270507812, -8.773250579833928 ], [ -76.212898254394474, -8.771243095397949 ], [ -76.21209716796875, -8.770016670226994 ], [ -76.211326599121094, -8.769686698913517 ], [ -76.210731506347656, -8.769850730895996 ], [ -76.210182189941406, -8.770998954772949 ], [ -76.208572387695312, -8.773130416870117 ], [ -76.207710266113281, -8.773963928222656 ], [ -76.206443786621094, -8.774709701538029 ], [ -76.205062866210881, -8.774571418762207 ], [ -76.203582763671875, -8.773878097534123 ], [ -76.200538635253906, -8.77148246765131 ], [ -76.199272155761719, -8.768637657165471 ], [ -76.198600769042969, -8.764642715454102 ], [ -76.197410583496094, -8.760107040405273 ], [ -76.196487426757756, -8.758845329284668 ], [ -76.194961547851506, -8.757645606994515 ], [ -76.193336486816349, -8.757345199584961 ], [ -76.189781188964844, -8.758322715759277 ], [ -76.188034057617188, -8.758427619934082 ], [ -76.18585205078125, -8.758047103881779 ], [ -76.181968688964787, -8.756855010986271 ], [ -76.180030822753906, -8.756707191467285 ], [ -76.177055358886719, -8.757340431213322 ], [ -76.174720764160099, -8.758586883544922 ], [ -76.174156188964787, -8.758535385131836 ], [ -76.172447204589787, -8.757238388061523 ], [ -76.170791625976562, -8.756645202636662 ], [ -76.168586730957031, -8.756489753723088 ], [ -76.166542053222599, -8.75597095489502 ], [ -76.166007995605469, -8.756089210510197 ], [ -76.164810180664006, -8.757053375244141 ], [ -76.163818359375, -8.756415367126465 ], [ -76.163688659667912, -8.755681037902832 ], [ -76.163955688476506, -8.755174636840763 ], [ -76.166130065917969, -8.755375862121582 ], [ -76.166458129882699, -8.755013465881348 ], [ -76.166671752929688, -8.754179000854492 ], [ -76.166458129882699, -8.753520965576058 ], [ -76.165084838867188, -8.751782417297363 ], [ -76.1651611328125, -8.751120567321777 ], [ -76.165725708007812, -8.750385284423828 ], [ -76.165817260742188, -8.74984169006342 ], [ -76.165176391601562, -8.748434066772461 ], [ -76.165023803710881, -8.747430801391545 ], [ -76.162689208984375, -8.743467330932617 ], [ -76.163017272949162, -8.742733001708928 ], [ -76.164939880371094, -8.742511749267578 ], [ -76.165550231933594, -8.741992950439453 ], [ -76.165519714355469, -8.741432189941406 ], [ -76.165199279785099, -8.740882873535156 ], [ -76.163368225097656, -8.739485740661621 ], [ -76.162452697753793, -8.737408638000431 ], [ -76.162620544433537, -8.736586570739689 ], [ -76.163299560546818, -8.73559665679926 ], [ -76.163764953613224, -8.734402656555176 ], [ -76.163970947265568, -8.73284912109375 ], [ -76.163734436035156, -8.731591224670353 ], [ -76.162513732910099, -8.729974746704102 ], [ -76.161506652832031, -8.729761123657227 ], [ -76.160430908203068, -8.731240272521973 ], [ -76.157989501953125, -8.733343124389592 ], [ -76.156929016113281, -8.733665466308537 ], [ -76.156135559081974, -8.733511924743652 ], [ -76.155517578125, -8.731597900390625 ], [ -76.154273986816406, -8.729881286621094 ], [ -76.153709411621094, -8.728420257568303 ], [ -76.152351379394531, -8.727193832397461 ], [ -76.153007507324162, -8.725909233093205 ], [ -76.152488708496094, -8.724245071411133 ], [ -76.153244018554688, -8.723331451416016 ], [ -76.153350830078125, -8.72260570526123 ], [ -76.153129577636719, -8.722416877746582 ], [ -76.151748657226506, -8.722511291503849 ], [ -76.151451110839787, -8.72227764129633 ], [ -76.151123046875, -8.718615531921387 ], [ -76.150497436523381, -8.717584609985295 ], [ -76.149528503417969, -8.717290878295898 ], [ -76.14801025390625, -8.717964172363281 ], [ -76.147094726562443, -8.717831611633301 ], [ -76.146903991699162, -8.715563774108887 ], [ -76.144264221191406, -8.711219787597656 ], [ -76.14434814453125, -8.710714340209904 ], [ -76.144645690917969, -8.710616111755371 ], [ -76.146347045898438, -8.710691452026367 ], [ -76.14739990234375, -8.710370063781738 ], [ -76.149696350097656, -8.710145950317326 ], [ -76.150321960449162, -8.709620475768986 ], [ -76.15093994140625, -8.70789909362793 ], [ -76.15057373046875, -8.706949234008789 ], [ -76.14986419677723, -8.706103324890137 ], [ -76.149032592773438, -8.705681800842285 ], [ -76.147491455078125, -8.705414772033691 ], [ -76.146835327148438, -8.704747200012207 ], [ -76.14691162109375, -8.702269554138127 ], [ -76.148910522460824, -8.698645591735783 ], [ -76.149154663085938, -8.695913314819336 ], [ -76.148361206054688, -8.694470405578613 ], [ -76.145248413085938, -8.693066596984806 ], [ -76.144271850585938, -8.692084312438965 ], [ -76.144287109375, -8.691362380981388 ], [ -76.144798278808537, -8.689975738525334 ], [ -76.143844604492131, -8.689146041870117 ], [ -76.143806457519531, -8.688865661621094 ], [ -76.145256042480412, -8.686981201171875 ], [ -76.145271301269474, -8.684810638427734 ], [ -76.144851684570312, -8.684332847595158 ], [ -76.143722534179688, -8.684905052185002 ], [ -76.142982482910099, -8.684872627258244 ], [ -76.142745971679688, -8.684619903564453 ], [ -76.142845153808594, -8.683714866638184 ], [ -76.143348693847599, -8.68251895904541 ], [ -76.143272399902287, -8.681796073913574 ], [ -76.142539978027344, -8.681427001953125 ], [ -76.141288757324219, -8.682009696960449 ], [ -76.140548706054688, -8.681461334228516 ], [ -76.140373229980469, -8.680739402770996 ], [ -76.141212463378906, -8.679902076721135 ], [ -76.141258239746037, -8.679524421691838 ], [ -76.139747619628849, -8.678170204162541 ], [ -76.139465332031193, -8.676535606384164 ], [ -76.138236999511719, -8.67647743225092 ], [ -76.136833190917969, -8.675004005432129 ], [ -76.136795043945256, -8.674534797668457 ], [ -76.137672424316406, -8.673746109008675 ], [ -76.137710571289062, -8.673104286193848 ], [ -76.136474609375, -8.672891616821289 ], [ -76.1358642578125, -8.672494888305607 ], [ -76.13616943359375, -8.671932220458984 ], [ -76.137245178222599, -8.671694755554199 ], [ -76.137786865234375, -8.671339988708496 ], [ -76.138877868652287, -8.669646263122502 ], [ -76.140304565429631, -8.668990135192814 ], [ -76.140464782714844, -8.668103218078613 ], [ -76.140213012695256, -8.667407989501953 ], [ -76.139030456542969, -8.666788101196289 ], [ -76.138862609863224, -8.666392326354924 ], [ -76.1390380859375, -8.66508769989008 ], [ -76.138168334960938, -8.664013862609863 ], [ -76.137252807617131, -8.663583755493164 ], [ -76.136497497558537, -8.663613319396859 ], [ -76.135765075683594, -8.664301872253361 ], [ -76.135208129882812, -8.664274215698185 ], [ -76.134803771972656, -8.663310050964355 ], [ -76.133186340332031, -8.66264533996582 ], [ -76.132415771484375, -8.661399841308594 ], [ -76.131858825683594, -8.660894393920898 ], [ -76.131301879882812, -8.661258697509766 ], [ -76.131706237792969, -8.662578582763672 ], [ -76.131492614746094, -8.663257598876953 ], [ -76.1312255859375, -8.663303375244027 ], [ -76.129600524902344, -8.662111282348519 ], [ -76.129493713378906, -8.661346435546875 ], [ -76.129867553710938, -8.660140037536621 ], [ -76.129646301269418, -8.659356117248535 ], [ -76.130500793456974, -8.658041000366211 ], [ -76.130722045898438, -8.656865119934082 ], [ -76.130348205566406, -8.655426979064941 ], [ -76.129600524902344, -8.654289245605469 ], [ -76.128692626953011, -8.654500961303711 ], [ -76.127449035644474, -8.655435562133675 ], [ -76.126068115234375, -8.655611038207951 ], [ -76.125106811523438, -8.655073165893555 ], [ -76.124176025390568, -8.653485298156681 ], [ -76.123046874999943, -8.652683258056584 ], [ -76.122596740722656, -8.652791976928711 ], [ -76.122573852539006, -8.65361499786377 ], [ -76.122016906738168, -8.654189109802189 ], [ -76.121452331542969, -8.654051780700684 ], [ -76.120758056640568, -8.653485298156681 ], [ -76.11956787109375, -8.653352737426758 ], [ -76.118446350097656, -8.654150009155273 ], [ -76.117393493652344, -8.655873298644963 ], [ -76.115989685058537, -8.657595634460449 ], [ -76.115325927734318, -8.658085823059082 ], [ -76.114524841308594, -8.658287048339844 ], [ -76.114181518554631, -8.657744407653752 ], [ -76.114570617675724, -8.657254219055176 ], [ -76.114532470703125, -8.656848907470703 ], [ -76.113006591796875, -8.656865119934082 ], [ -76.112220764160156, -8.655986785888672 ], [ -76.112495422363281, -8.655118942260685 ], [ -76.113700866699162, -8.654745101928654 ], [ -76.113838195800781, -8.654410362243539 ], [ -76.113685607910099, -8.654074668884277 ], [ -76.112358093261662, -8.653428077697754 ], [ -76.111534118652344, -8.653528213500863 ], [ -76.110839843749943, -8.653285980224553 ], [ -76.109199523925781, -8.653247833251953 ], [ -76.108871459960938, -8.652921676635685 ], [ -76.108772277832031, -8.651294708251953 ], [ -76.108139038085938, -8.650617599487305 ], [ -76.106719970703125, -8.649989128112736 ], [ -76.106498718261719, -8.649638175964299 ], [ -76.1063232421875, -8.647811889648438 ], [ -76.10552978515625, -8.646467208862248 ], [ -76.105621337890625, -8.645571708679199 ], [ -76.106643676757756, -8.644077301025391 ], [ -76.106590270996094, -8.64305305480957 ], [ -76.106185913085824, -8.642312049865666 ], [ -76.106109619140625, -8.641590118408203 ], [ -76.106193542480469, -8.639472961425781 ], [ -76.106796264648438, -8.638461112976017 ], [ -76.107063293457031, -8.638348579406738 ], [ -76.107269287109375, -8.639388084411621 ], [ -76.107780456542912, -8.639558792114258 ], [ -76.109260559082031, -8.638046264648438 ], [ -76.109855651855469, -8.637818336486816 ], [ -76.110321044921875, -8.638233184814453 ], [ -76.110496520996094, -8.63930606842041 ], [ -76.110931396484318, -8.639478683471623 ], [ -76.11181640625, -8.638553619384766 ], [ -76.112457275390568, -8.635873794555607 ], [ -76.113456726074219, -8.634676933288574 ], [ -76.1146240234375, -8.63451957702631 ], [ -76.114288330078068, -8.635832786560059 ], [ -76.115455627441406, -8.635990142822266 ], [ -76.116310119628906, -8.636631011962891 ], [ -76.116836547851506, -8.636285781860352 ], [ -76.117660522460938, -8.634430885314828 ], [ -76.118057250976562, -8.634258270263672 ], [ -76.118865966796818, -8.634679794311523 ], [ -76.119491577148438, -8.634533882141113 ], [ -76.120841979980412, -8.632719993591309 ], [ -76.120803833007812, -8.631890296936035 ], [ -76.120429992675781, -8.631354331970215 ], [ -76.119796752929631, -8.631032943725586 ], [ -76.118675231933537, -8.631116867065316 ], [ -76.118522644042969, -8.630394935607853 ], [ -76.119735717773438, -8.629161834716683 ], [ -76.120155334472656, -8.628145217895451 ], [ -76.122200012206974, -8.627271652221623 ], [ -76.122344970703125, -8.626674652099553 ], [ -76.121963500976562, -8.625736236572266 ], [ -76.122001647949162, -8.624914169311467 ], [ -76.122222900390625, -8.624731063842773 ], [ -76.123039245605412, -8.62485408782959 ], [ -76.123298645019531, -8.62430286407465 ], [ -76.123031616210881, -8.623417854309082 ], [ -76.122589111328011, -8.62294864654541 ], [ -76.122047424316406, -8.622876167297306 ], [ -76.121551513671875, -8.623258590698242 ], [ -76.121025085449219, -8.623087882995605 ], [ -76.120956420898381, -8.62226676940918 ], [ -76.121353149414062, -8.621452331542969 ], [ -76.121330261230412, -8.620526313781738 ], [ -76.120254516601562, -8.619419097900334 ], [ -76.119865417480469, -8.61858940124506 ], [ -76.119918823242074, -8.617756843566895 ], [ -76.12042236328125, -8.616804122924748 ], [ -76.120155334472656, -8.613235473632699 ], [ -76.120597839355469, -8.610328674316406 ], [ -76.121505737304631, -8.608365058898869 ], [ -76.12347412109375, -8.606861114501953 ], [ -76.123710632324162, -8.604677200317326 ], [ -76.124809265136719, -8.604221343994141 ], [ -76.125015258789062, -8.603858947753849 ], [ -76.12469482421875, -8.603083610534611 ], [ -76.123275756835938, -8.602689743041935 ], [ -76.122566223144474, -8.601851463317814 ], [ -76.122604370117188, -8.599916458129826 ], [ -76.122276306152287, -8.597908020019531 ], [ -76.123420715331974, -8.596748352050781 ], [ -76.123428344726506, -8.594349861144963 ], [ -76.123336791992131, -8.593908309936467 ], [ -76.122879028320312, -8.593447685241642 ], [ -76.122245788574219, -8.593403816223088 ], [ -76.121177673339844, -8.592349052429199 ], [ -76.120979309082031, -8.591282844543457 ], [ -76.121086120605469, -8.589798927307015 ], [ -76.121437072753849, -8.589265823364258 ], [ -76.123519897460881, -8.58807373046875 ], [ -76.123931884765625, -8.587078094482365 ], [ -76.12548828125, -8.5857896804809 ], [ -76.126029968261719, -8.584812164306584 ], [ -76.127159118652287, -8.584654808044434 ], [ -76.127441406249943, -8.584174156188965 ], [ -76.127349853515568, -8.583542823791504 ], [ -76.126174926757812, -8.582467079162598 ], [ -76.126434326171875, -8.581491470336857 ], [ -76.127403259277344, -8.580655097961426 ], [ -76.129562377929688, -8.580181121826172 ], [ -76.13002777099598, -8.579907417297363 ], [ -76.130401611328068, -8.579272270202637 ], [ -76.130325317382812, -8.577618598937988 ], [ -76.132225036621094, -8.576752662658691 ], [ -76.1337890625, -8.574579238891602 ], [ -76.134567260742188, -8.572821617126465 ], [ -76.13494873046875, -8.568977355956974 ], [ -76.136955261230412, -8.56671142578125 ], [ -76.138221740722599, -8.564284324645939 ], [ -76.138778686523381, -8.562436103820801 ], [ -76.1385498046875, -8.561252593994084 ], [ -76.138221740722599, -8.560703277587891 ], [ -76.136215209960881, -8.559676170349064 ], [ -76.135635375976506, -8.558791160583496 ], [ -76.134094238281193, -8.557330131530762 ], [ -76.133537292480412, -8.55616569519043 ], [ -76.132286071777287, -8.555229187011662 ], [ -76.131790161132812, -8.554398536682072 ], [ -76.130950927734318, -8.554410934448185 ], [ -76.129989624023438, -8.553563117980957 ], [ -76.1297607421875, -8.552859306335449 ], [ -76.128990173339844, -8.552065849304142 ], [ -76.128631591796875, -8.55046558380127 ], [ -76.127395629882812, -8.549130439758301 ], [ -76.127388000488281, -8.547746658325138 ], [ -76.126884460449219, -8.546292304992619 ], [ -76.126281738281193, -8.545490264892521 ], [ -76.126365661621094, -8.544846534728947 ], [ -76.12701416015625, -8.544157028198242 ], [ -76.127197265625, -8.543578147888127 ], [ -76.127197265625, -8.541399002075195 ], [ -76.126739501953125, -8.5404052734375 ], [ -76.126876831054631, -8.539031028747559 ], [ -76.126632690429688, -8.53797435760498 ], [ -76.127136230468693, -8.537112236022949 ], [ -76.127182006835938, -8.535005569458008 ], [ -76.127929687499886, -8.533872604370117 ], [ -76.127662658691406, -8.532986640930176 ], [ -76.127624511718693, -8.530780792236328 ], [ -76.126625061035156, -8.529282569885254 ], [ -76.127235412597599, -8.526612281799316 ], [ -76.126762390136662, -8.521117210388184 ], [ -76.127571105957031, -8.519619941711426 ], [ -76.126960754394474, -8.518601417541504 ], [ -76.126930236816406, -8.516855239868107 ], [ -76.125946044921875, -8.515528678893986 ], [ -76.125686645507812, -8.514553070068359 ], [ -76.125801086425724, -8.514019966125488 ], [ -76.126617431640625, -8.512704849243164 ], [ -76.126487731933537, -8.512055397033635 ], [ -76.12603759765625, -8.511360168456974 ], [ -76.126235961914062, -8.507045745849609 ], [ -76.127227783203068, -8.504771232604924 ], [ -76.127365112304688, -8.503959655761719 ], [ -76.127120971679688, -8.50288200378418 ], [ -76.126235961914062, -8.501683235168457 ], [ -76.126052856445312, -8.500924110412598 ], [ -76.126205444335881, -8.500081062316895 ], [ -76.126937866210938, -8.499067306518555 ], [ -76.126754760742131, -8.496137619018498 ], [ -76.127632141113224, -8.494505882263184 ], [ -76.127677917480469, -8.493412017822266 ], [ -76.126754760742131, -8.491735458374023 ], [ -76.123146057128849, -8.48803520202631 ], [ -76.120513916015625, -8.485727310180664 ], [ -76.116539001464844, -8.483613967895508 ], [ -76.115707397460881, -8.482731819152832 ], [ -76.115531921386605, -8.481842994689828 ], [ -76.116371154785099, -8.47882080078125 ], [ -76.11834716796875, -8.475098609924316 ], [ -76.117988586425724, -8.473670005798283 ], [ -76.116920471191406, -8.471837997436467 ], [ -76.116340637207031, -8.471242904663086 ], [ -76.116249084472656, -8.470329284667969 ], [ -76.117591857910156, -8.465859413146973 ], [ -76.11956787109375, -8.462643623351994 ], [ -76.120666503906193, -8.461536407470703 ], [ -76.121253967285043, -8.460277557373047 ], [ -76.121315002441349, -8.458992004394474 ], [ -76.120445251464844, -8.456472396850529 ], [ -76.120338439941406, -8.455188751220646 ], [ -76.120674133300724, -8.453570365905762 ], [ -76.121734619140625, -8.451330184936467 ], [ -76.121917724609318, -8.449503898620605 ], [ -76.121131896972599, -8.447642326354924 ], [ -76.117507934570256, -8.443114280700684 ], [ -76.117073059082031, -8.442166328430119 ], [ -76.117179870605469, -8.440510749816895 ], [ -76.118644714355412, -8.435776710510197 ], [ -76.1190185546875, -8.432764053344727 ], [ -76.117950439453125, -8.428769111633301 ], [ -76.117469787597656, -8.42559623718256 ], [ -76.116371154785099, -8.424343109130859 ], [ -76.113754272460938, -8.422170639038086 ], [ -76.111091613769531, -8.41949272155756 ], [ -76.109329223632756, -8.417245864868164 ], [ -76.108779907226562, -8.415681838989144 ], [ -76.108787536621094, -8.411641120910588 ], [ -76.109512329101506, -8.408969879150391 ], [ -76.109802246093693, -8.406591415405217 ], [ -76.11163330078125, -8.40259838104248 ], [ -76.112220764160156, -8.402018547058105 ], [ -76.113533020019531, -8.401416778564396 ], [ -76.117301940917969, -8.402157783508301 ], [ -76.118286132812443, -8.401149749755859 ], [ -76.118736267089844, -8.400144577026367 ], [ -76.118682861328125, -8.39940357208252 ], [ -76.118270874023381, -8.39847469329834 ], [ -76.114601135253906, -8.394847869873047 ], [ -76.113250732421875, -8.392038345336914 ], [ -76.113258361816406, -8.389578819274902 ], [ -76.113517761230412, -8.387660026550236 ], [ -76.114555358886662, -8.383849143981877 ], [ -76.115188598632812, -8.379390716552678 ], [ -76.11566162109375, -8.377806663513184 ], [ -76.116111755371094, -8.377342224121094 ], [ -76.116981506347656, -8.37701416015625 ], [ -76.121017456054688, -8.377383232116699 ], [ -76.122955322265568, -8.376782417297363 ], [ -76.124084472656193, -8.375984191894531 ], [ -76.124565124511662, -8.374897003173771 ], [ -76.126541137695312, -8.372847557067871 ], [ -76.126434326171875, -8.3723850250243 ], [ -76.126663208007756, -8.371120452880859 ], [ -76.126296997070256, -8.370189666748047 ], [ -76.125526428222599, -8.369375228881836 ], [ -76.122474670410099, -8.367322921752873 ], [ -76.120773315429631, -8.363765716552734 ], [ -76.119331359863224, -8.361302375793457 ], [ -76.118125915527344, -8.359667778015137 ], [ -76.115921020507812, -8.357295036315918 ], [ -76.1148681640625, -8.356410980224496 ], [ -76.113708496093693, -8.355827331542912 ], [ -76.109855651855469, -8.354625701904297 ], [ -76.106513977050781, -8.353306770324707 ], [ -76.101638793945312, -8.349243164062443 ], [ -76.094459533691406, -8.34578800201416 ], [ -76.092399597167969, -8.343823432922306 ], [ -76.090919494628849, -8.341591835021973 ], [ -76.089752197265568, -8.34028434753418 ], [ -76.0892333984375, -8.339200973510742 ], [ -76.088424682617131, -8.338326454162598 ], [ -76.085388183593693, -8.336759567260742 ], [ -76.084754943847656, -8.336617469787598 ], [ -76.081161499023438, -8.337467193603516 ], [ -76.079612731933594, -8.337401390075627 ], [ -76.078239440917912, -8.336862564086914 ], [ -76.074806213378849, -8.334873199462891 ], [ -76.071937561035099, -8.333856582641488 ], [ -76.0692138671875, -8.333600997924805 ], [ -76.068328857421875, -8.333825111389103 ], [ -76.066757202148438, -8.333800315856934 ], [ -76.065780639648438, -8.333539962768498 ], [ -76.064994812011719, -8.333061218261719 ], [ -76.064140319824219, -8.332088470458928 ], [ -76.063682556152344, -8.330886840820312 ], [ -76.063568115234375, -8.328678131103516 ], [ -76.06396484375, -8.327176094055176 ], [ -76.063858032226562, -8.325524330139103 ], [ -76.062759399414006, -8.323610305786133 ], [ -76.061790466308594, -8.322904586791992 ], [ -76.057815551757756, -8.322256088256836 ], [ -76.056434631347656, -8.322305679321232 ], [ -76.055374145507812, -8.322615623474064 ], [ -76.052406311035156, -8.324468612670898 ], [ -76.049636840820312, -8.326745986938477 ], [ -76.045661926269531, -8.32957935333252 ], [ -76.043182373046875, -8.33078670501709 ], [ -76.039596557617131, -8.330978393554688 ], [ -76.035758972167969, -8.329893112182617 ], [ -76.031089782714844, -8.32941722869873 ], [ -76.028114318847656, -8.330078124999943 ], [ -76.023422241210938, -8.332220077514592 ], [ -76.022155761718693, -8.332452774047852 ], [ -76.021133422851562, -8.33238410949707 ], [ -76.018409729003906, -8.331539154052734 ], [ -76.013145446777344, -8.32818603515625 ], [ -76.011932373046818, -8.326907157897892 ], [ -76.011566162109318, -8.325017929077148 ], [ -76.010963439941406, -8.324222564697266 ], [ -76.009033203125, -8.322943687438965 ], [ -76.004402160644474, -8.321434974670296 ], [ -75.999404907226562, -8.316717147827148 ], [ -75.998275756835938, -8.316405296325627 ], [ -75.996269226074219, -8.316598892211914 ], [ -75.995025634765625, -8.31718921661377 ], [ -75.994056701660156, -8.317934036254883 ], [ -75.9937744140625, -8.318273544311523 ], [ -75.993118286132812, -8.319067001342717 ], [ -75.991455078124943, -8.322136878967285 ], [ -75.990608215332031, -8.32329273223877 ], [ -75.990531921386719, -8.323399543762207 ], [ -75.988761901855412, -8.325260162353516 ], [ -75.986808776855469, -8.326470375060978 ], [ -75.986228942871094, -8.327059745788574 ], [ -75.985900878906193, -8.327718734741154 ], [ -75.985610961914006, -8.32997989654541 ], [ -75.983810424804631, -8.331949234008675 ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-HUV", "NAME_0": "Peru", "ID_1": 10, "NAME_1": "Huancavelica", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.571395874023438, -11.985050201416016 ], [ -74.571319580078068, -11.988069534301758 ], [ -74.570968627929688, -11.988718986511174 ], [ -74.570709228515625, -11.990909576416016 ], [ -74.569992065429631, -11.992201805114746 ], [ -74.569877624511662, -11.99329566955555 ], [ -74.569023132324162, -11.994379043579102 ], [ -74.568359374999943, -11.996096611022949 ], [ -74.567329406738224, -11.997413635253849 ], [ -74.566352844238224, -11.997629165649414 ], [ -74.563446044921875, -11.997444152831918 ], [ -74.562187194824105, -11.997624397277775 ], [ -74.561218261718693, -11.998218536376953 ], [ -74.559112548828068, -12.000304222106934 ], [ -74.558540344238224, -12.00057315826416 ], [ -74.555816650390625, -12.000596046447697 ], [ -74.554840087890568, -12.000389099121037 ], [ -74.554054260253849, -11.999890327453613 ], [ -74.552879333496094, -12.001035690307617 ], [ -74.5458984375, -12.002952575683537 ], [ -74.543128967285156, -12.00609302520752 ], [ -74.542282104492188, -12.006791114807072 ], [ -74.5401611328125, -12.007326126098633 ], [ -74.537925720214844, -12.008896827697697 ], [ -74.533843994140568, -12.009879112243596 ], [ -74.531555175781193, -12.011935234069824 ], [ -74.530082702636719, -12.013876914978027 ], [ -74.526336669921875, -12.015749931335449 ], [ -74.524986267089787, -12.015903472900391 ], [ -74.522621154785156, -12.015328407287598 ], [ -74.521682739257812, -12.015380859375 ], [ -74.518096923828068, -12.017553329467773 ], [ -74.512748718261719, -12.019055366516113 ], [ -74.510818481445312, -12.020243644714355 ], [ -74.510162353515625, -12.020994186401367 ], [ -74.508590698242074, -12.021454811096191 ], [ -74.504608154296875, -12.019763946533203 ], [ -74.503318786621037, -12.019824981689396 ], [ -74.500663757324162, -12.020807266235352 ], [ -74.499969482421875, -12.021310806274357 ], [ -74.498542785644474, -12.023317337036076 ], [ -74.497802734374943, -12.025785446166935 ], [ -74.496986389160156, -12.027004241943246 ], [ -74.495101928710938, -12.02800273895258 ], [ -74.491668701171875, -12.028107643127441 ], [ -74.490303039550781, -12.028673171996957 ], [ -74.488563537597543, -12.030595779418945 ], [ -74.488342285156193, -12.031291007995605 ], [ -74.488304138183594, -12.032955169677734 ], [ -74.487342834472656, -12.033814430236816 ], [ -74.485404968261662, -12.033647537231445 ], [ -74.483963012695256, -12.033037185668888 ], [ -74.483215332031193, -12.031543731689453 ], [ -74.4818115234375, -12.027255058288517 ], [ -74.481224060058594, -12.026791572570801 ], [ -74.480377197265625, -12.026627540588322 ], [ -74.479568481445256, -12.026979446411133 ], [ -74.478912353515568, -12.028199195861816 ], [ -74.478324890136662, -12.028786659240723 ], [ -74.476936340332031, -12.02955245971674 ], [ -74.475875854492131, -12.029867172241211 ], [ -74.474990844726506, -12.029657363891602 ], [ -74.474334716796818, -12.02918624877924 ], [ -74.473426818847656, -12.028252601623478 ], [ -74.473190307617131, -12.027655601501465 ], [ -74.472366333007812, -12.027056694030705 ], [ -74.470932006835938, -12.026873588561955 ], [ -74.470237731933537, -12.027000427246037 ], [ -74.468788146972599, -12.028670310974064 ], [ -74.467369079589787, -12.031570434570256 ], [ -74.466072082519531, -12.033593177795353 ], [ -74.464691162109318, -12.034539222717228 ], [ -74.463310241699219, -12.035114288329964 ], [ -74.461204528808594, -12.034958839416504 ], [ -74.456993103027287, -12.033456802368164 ], [ -74.455497741699219, -12.033427238464355 ], [ -74.454635620117188, -12.033732414245549 ], [ -74.452491760253849, -12.037281036376896 ], [ -74.451751708984261, -12.039271354675236 ], [ -74.451393127441406, -12.040980339050236 ], [ -74.452003479003849, -12.043096542358398 ], [ -74.453224182128906, -12.044284820556641 ], [ -74.4534912109375, -12.044809341430664 ], [ -74.453193664550781, -12.04609203338623 ], [ -74.453140258789062, -12.047908782958984 ], [ -74.452743530273438, -12.048938751220589 ], [ -74.452194213867131, -12.049435615539494 ], [ -74.451263427734318, -12.049570083618164 ], [ -74.449043273925781, -12.048796653747502 ], [ -74.448310852050724, -12.048271179199105 ], [ -74.446731567382812, -12.045980453491211 ], [ -74.4451904296875, -12.044945716857853 ], [ -74.443336486816349, -12.044877052307129 ], [ -74.442626953125, -12.045310020446777 ], [ -74.442604064941406, -12.045772552490178 ], [ -74.44317626953125, -12.04649829864502 ], [ -74.443214416503906, -12.04705619812006 ], [ -74.441253662109318, -12.049611091613713 ], [ -74.439582824707031, -12.053110122680664 ], [ -74.439727783203068, -12.054384231567383 ], [ -74.440696716308594, -12.055473327636719 ], [ -74.440399169921818, -12.056926727294865 ], [ -74.439445495605412, -12.058506965637207 ], [ -74.438987731933594, -12.059907913208008 ], [ -74.435218811035099, -12.066032409667969 ], [ -74.434394836425668, -12.068680763244572 ], [ -74.433624267578068, -12.069800376891976 ], [ -74.431854248046875, -12.07147026062006 ], [ -74.430549621581974, -12.071637153625431 ], [ -74.428100585937386, -12.070566177368164 ], [ -74.426475524902287, -12.069051742553711 ], [ -74.423973083496037, -12.067393302917424 ], [ -74.422767639160156, -12.067073822021484 ], [ -74.421554565429688, -12.067377090454045 ], [ -74.420280456542855, -12.068144798278752 ], [ -74.419448852539062, -12.069010734558049 ], [ -74.418952941894531, -12.070973396301213 ], [ -74.418098449707031, -12.072714805603027 ], [ -74.414588928222656, -12.075989723205566 ], [ -74.414390563964844, -12.077066421508789 ], [ -74.414894104003906, -12.079689025878906 ], [ -74.414070129394474, -12.082120895385742 ], [ -74.414115905761719, -12.083595275878906 ], [ -74.414604187011719, -12.08467960357666 ], [ -74.415924072265625, -12.085733413696289 ], [ -74.417091369628906, -12.086466789245549 ], [ -74.418647766113224, -12.086750030517578 ], [ -74.419334411621094, -12.087511062622013 ], [ -74.419723510742188, -12.09309005737299 ], [ -74.419326782226449, -12.094311714172363 ], [ -74.418365478515568, -12.096000671386719 ], [ -74.417587280273381, -12.098575592041016 ], [ -74.414230346679688, -12.099900245666504 ], [ -74.412681579589844, -12.101072311401367 ], [ -74.412033081054688, -12.101963043212777 ], [ -74.41156005859375, -12.10384464263916 ], [ -74.410652160644531, -12.105769157409668 ], [ -74.409652709960938, -12.106979370117188 ], [ -74.408599853515625, -12.107708930969125 ], [ -74.407775878906193, -12.107651710510254 ], [ -74.401771545410099, -12.103298187255746 ], [ -74.400215148925781, -12.103132247924748 ], [ -74.398872375488281, -12.103727340698129 ], [ -74.397758483886662, -12.104846000671387 ], [ -74.396049499511662, -12.108007431030217 ], [ -74.394813537597599, -12.109614372253418 ], [ -74.393516540527344, -12.110515594482365 ], [ -74.390472412109375, -12.111884117126465 ], [ -74.383544921874943, -12.11745643615717 ], [ -74.380599975585881, -12.119375228881836 ], [ -74.379455566406193, -12.120439529418945 ], [ -74.374717712402344, -12.126623153686523 ], [ -74.372077941894531, -12.128950119018555 ], [ -74.366806030273438, -12.132872581481934 ], [ -74.365951538085938, -12.133948326110783 ], [ -74.364555358886662, -12.136747360229492 ], [ -74.362762451171818, -12.138344764709473 ], [ -74.361656188964844, -12.138577461242619 ], [ -74.360542297363281, -12.138492584228402 ], [ -74.359428405761662, -12.136934280395508 ], [ -74.357841491699219, -12.135791778564396 ], [ -74.356712341308594, -12.135354995727482 ], [ -74.353660583496094, -12.135592460632267 ], [ -74.351974487304631, -12.136347770690861 ], [ -74.351699829101506, -12.140940666198674 ], [ -74.352645874023381, -12.144198417663574 ], [ -74.352752685546818, -12.14795970916748 ], [ -74.353111267089787, -12.148493766784668 ], [ -74.353767395019531, -12.148856163024846 ], [ -74.357971191406193, -12.14821624755848 ], [ -74.359146118164006, -12.149006843566781 ], [ -74.360374450683537, -12.150843620300236 ], [ -74.361335754394474, -12.153054237365723 ], [ -74.361282348632812, -12.155620574951115 ], [ -74.360626220703125, -12.1572265625 ], [ -74.358932495117131, -12.159982681274357 ], [ -74.358451843261662, -12.161463737487793 ], [ -74.355987548828068, -12.163700103759766 ], [ -74.353797912597599, -12.164482116699219 ], [ -74.350463867187443, -12.164185523986816 ], [ -74.348083496093693, -12.164498329162598 ], [ -74.346237182617188, -12.165377616882324 ], [ -74.344375610351562, -12.167037010192871 ], [ -74.343460083007812, -12.168951034545842 ], [ -74.343360900878906, -12.171077728271428 ], [ -74.343559265136719, -12.17176628112793 ], [ -74.344085693359375, -12.17243576049799 ], [ -74.344566345214844, -12.172860145568848 ], [ -74.345283508300781, -12.173053741455078 ], [ -74.345649719238281, -12.17262077331543 ], [ -74.345840454101562, -12.170904159545898 ], [ -74.348052978515568, -12.169751167297363 ], [ -74.348228454589844, -12.168493270874023 ], [ -74.348579406738281, -12.16783428192133 ], [ -74.350677490234375, -12.167658805847168 ], [ -74.352577209472656, -12.168395042419377 ], [ -74.355636596679688, -12.171487808227539 ], [ -74.35919189453125, -12.172560691833496 ], [ -74.362724304199219, -12.175209999084416 ], [ -74.365615844726506, -12.175090789794865 ], [ -74.366447448730469, -12.175264358520508 ], [ -74.367996215820256, -12.177066802978516 ], [ -74.369293212890625, -12.177801132202092 ], [ -74.371894836425724, -12.178006172180176 ], [ -74.376335144042969, -12.176128387451115 ], [ -74.377929687499943, -12.175741195678711 ], [ -74.378829956054688, -12.175825119018441 ], [ -74.380531311035156, -12.177637100219613 ], [ -74.381843566894474, -12.178084373474121 ], [ -74.382415771484318, -12.17856502532959 ], [ -74.382171630859375, -12.179713249206543 ], [ -74.380294799804631, -12.182656288146916 ], [ -74.380325317382812, -12.184139251708928 ], [ -74.380958557128849, -12.18577766418457 ], [ -74.381347656249943, -12.186185836791935 ], [ -74.381889343261719, -12.186323165893555 ], [ -74.383308410644531, -12.185338020324593 ], [ -74.384513854980412, -12.185514450073242 ], [ -74.385879516601562, -12.186115264892578 ], [ -74.387535095214787, -12.187599182128849 ], [ -74.387657165527287, -12.189788818359318 ], [ -74.389015197753906, -12.191547393798828 ], [ -74.389060974121037, -12.192994117736816 ], [ -74.387367248535099, -12.194155693054142 ], [ -74.387428283691406, -12.196254730224553 ], [ -74.387100219726562, -12.197011947631836 ], [ -74.386230468749943, -12.197851181030217 ], [ -74.384574890136719, -12.198860168456918 ], [ -74.38427734375, -12.201148986816293 ], [ -74.38360595703125, -12.202765464782715 ], [ -74.382827758789062, -12.203559875488281 ], [ -74.381439208984318, -12.204277992248535 ], [ -74.380508422851506, -12.205316543579102 ], [ -74.380310058593693, -12.206582069396916 ], [ -74.380691528320256, -12.207784652709961 ], [ -74.380653381347656, -12.208707809448185 ], [ -74.379974365234375, -12.209701538085881 ], [ -74.378875732421818, -12.210333824157715 ], [ -74.378288269042912, -12.211380004882812 ], [ -74.377403259277344, -12.214389801025334 ], [ -74.377197265625, -12.216296195983887 ], [ -74.377372741699219, -12.220637321472111 ], [ -74.377929687499943, -12.222572326660099 ], [ -74.37799072265625, -12.223587036132812 ], [ -74.376106262206974, -12.228918075561467 ], [ -74.37615966796875, -12.229451179504395 ], [ -74.376853942871037, -12.230510711669865 ], [ -74.378219604492131, -12.231807708740234 ], [ -74.3795166015625, -12.232299804687443 ], [ -74.380241394042969, -12.233267784118652 ], [ -74.380783081054631, -12.234733581542969 ], [ -74.381866455078125, -12.235605239868107 ], [ -74.382675170898381, -12.236825942993107 ], [ -74.385566711425668, -12.239303588867188 ], [ -74.385551452636662, -12.241769790649414 ], [ -74.387542724609318, -12.24408054351801 ], [ -74.388160705566406, -12.245811462402344 ], [ -74.389572143554574, -12.247404098510742 ], [ -74.391021728515625, -12.250075340270996 ], [ -74.39205169677723, -12.251017570495605 ], [ -74.393203735351562, -12.251335144042969 ], [ -74.393875122070312, -12.252540588378849 ], [ -74.393867492675781, -12.258058547973633 ], [ -74.392593383789006, -12.261082649230957 ], [ -74.392234802246037, -12.261722564697266 ], [ -74.390647888183594, -12.262672424316406 ], [ -74.389762878417855, -12.264242172241211 ], [ -74.387077331542912, -12.265836715698185 ], [ -74.386383056640625, -12.267336845397949 ], [ -74.385047912597656, -12.268391609191838 ], [ -74.384307861328068, -12.269755363464299 ], [ -74.385078430175724, -12.270418167114201 ], [ -74.385887145996094, -12.272343635559082 ], [ -74.387123107910156, -12.274255752563477 ], [ -74.391387939453125, -12.275250434875431 ], [ -74.395004272460881, -12.279678344726562 ], [ -74.396461486816406, -12.281897544860726 ], [ -74.398101806640625, -12.282843589782658 ], [ -74.399810791015625, -12.285199165344238 ], [ -74.401107788085881, -12.28623104095459 ], [ -74.4033203125, -12.28708553314209 ], [ -74.405242919921875, -12.288464546203613 ], [ -74.408348083496037, -12.292270660400391 ], [ -74.409370422363281, -12.294597625732365 ], [ -74.409774780273381, -12.296550750732422 ], [ -74.410285949707031, -12.297718048095646 ], [ -74.411933898925781, -12.300325393676758 ], [ -74.413291931152287, -12.301196098327637 ], [ -74.414093017578125, -12.302726745605469 ], [ -74.415168762207031, -12.303018569946232 ], [ -74.416038513183594, -12.304052352905273 ], [ -74.417282104492188, -12.304397583007756 ], [ -74.419723510742188, -12.304130554199162 ], [ -74.4208984375, -12.304639816284123 ], [ -74.422271728515568, -12.304805755615178 ], [ -74.423728942871094, -12.305359840393066 ], [ -74.424926757812443, -12.305379867553711 ], [ -74.426010131835938, -12.305203437805119 ], [ -74.433769226074219, -12.302667617797738 ], [ -74.435325622558537, -12.302835464477482 ], [ -74.438766479492131, -12.304089546203613 ], [ -74.439689636230469, -12.304056167602539 ], [ -74.440620422363281, -12.303677558898869 ], [ -74.443283081054688, -12.301737785339242 ], [ -74.444831848144531, -12.299950599670353 ], [ -74.446083068847656, -12.297531127929631 ], [ -74.447532653808537, -12.296024322509709 ], [ -74.448226928710938, -12.294443130493107 ], [ -74.448585510253849, -12.292715072631779 ], [ -74.448478698730412, -12.290934562683049 ], [ -74.447807312011662, -12.287098884582406 ], [ -74.448715209960938, -12.279911041259709 ], [ -74.448387145996037, -12.272702217102051 ], [ -74.450233459472656, -12.270564079284668 ], [ -74.451850891113281, -12.269680023193303 ], [ -74.452560424804688, -12.269593238830566 ], [ -74.456321716308537, -12.269988059997559 ], [ -74.460258483886719, -12.272638320922852 ], [ -74.463180541992131, -12.273699760436898 ], [ -74.465202331542969, -12.27380466461176 ], [ -74.471244812011719, -12.273553848266545 ], [ -74.474143981933537, -12.274065017700195 ], [ -74.478073120117074, -12.275591850280705 ], [ -74.482742309570256, -12.278304100036621 ], [ -74.486503601074219, -12.279786109924316 ], [ -74.488494873046875, -12.279988288879395 ], [ -74.490707397460938, -12.281113624572754 ], [ -74.491851806640625, -12.282264709472656 ], [ -74.492156982421818, -12.283204078674316 ], [ -74.492530822753906, -12.287810325622445 ], [ -74.492294311523438, -12.290691375732365 ], [ -74.492706298828125, -12.29207706451416 ], [ -74.493408203124943, -12.292901992797795 ], [ -74.499877929687443, -12.29753303527832 ], [ -74.50311279296875, -12.303362846374512 ], [ -74.505279541015625, -12.309562683105412 ], [ -74.506019592285156, -12.310909271240178 ], [ -74.507087707519531, -12.311978340148869 ], [ -74.508071899414062, -12.312198638916016 ], [ -74.509811401367131, -12.312129020690804 ], [ -74.5115966796875, -12.311724662780705 ], [ -74.514778137206974, -12.311784744262638 ], [ -74.515434265136662, -12.311443328857422 ], [ -74.516059875488281, -12.31080245971674 ], [ -74.516242980957031, -12.310195922851562 ], [ -74.516441345214844, -12.308062553405762 ], [ -74.518394470214787, -12.305027008056641 ], [ -74.519126892089844, -12.30433177947998 ], [ -74.520980834960881, -12.303929328918457 ], [ -74.522193908691349, -12.304257392883244 ], [ -74.52294921875, -12.304177284240723 ], [ -74.525321960449219, -12.302835464477482 ], [ -74.526542663574219, -12.301885604858342 ], [ -74.528068542480469, -12.301635742187443 ], [ -74.529243469238281, -12.301150321960392 ], [ -74.529937744140568, -12.300327301025277 ], [ -74.530487060546875, -12.298700332641602 ], [ -74.531394958496094, -12.297327995300236 ], [ -74.532478332519531, -12.295955657958984 ], [ -74.533515930175781, -12.295142173767033 ], [ -74.534690856933537, -12.294728279113656 ], [ -74.537635803222656, -12.294246673583984 ], [ -74.541099548339787, -12.294369697570801 ], [ -74.542259216308594, -12.294135093688965 ], [ -74.548973083496094, -12.290133476257324 ], [ -74.551307678222599, -12.288190841674805 ], [ -74.553451538085938, -12.288972854614258 ], [ -74.556152343749943, -12.289409637451172 ], [ -74.556961059570312, -12.289963722229004 ], [ -74.557868957519474, -12.291014671325684 ], [ -74.559059143066406, -12.292934417724609 ], [ -74.559425354003906, -12.295873641967717 ], [ -74.560386657714844, -12.298000335693359 ], [ -74.561187744140625, -12.29913330078125 ], [ -74.56201171875, -12.299812316894531 ], [ -74.564010620117188, -12.300030708312931 ], [ -74.565559387207031, -12.300974845886117 ], [ -74.565841674804688, -12.301834106445256 ], [ -74.565986633300724, -12.303716659545785 ], [ -74.566383361816293, -12.304727554321232 ], [ -74.572120666503906, -12.310887336730957 ], [ -74.573822021484261, -12.313204765319824 ], [ -74.574714660644531, -12.315574645996037 ], [ -74.574882507324219, -12.318079948425293 ], [ -74.575210571289062, -12.31910324096674 ], [ -74.576606750488281, -12.320631980895996 ], [ -74.578704833984375, -12.321730613708439 ], [ -74.57973480224598, -12.323431015014592 ], [ -74.580116271972543, -12.324618339538517 ], [ -74.581008911132812, -12.329482078552189 ], [ -74.581047058105412, -12.33110332489008 ], [ -74.580551147460938, -12.332537651061898 ], [ -74.578933715820312, -12.335357666015625 ], [ -74.578872680664006, -12.33687782287592 ], [ -74.577415466308537, -12.339758872985783 ], [ -74.574455261230412, -12.351241111755371 ], [ -74.5743408203125, -12.354647636413517 ], [ -74.57489013671875, -12.360409736633244 ], [ -74.574790954589844, -12.367769241332951 ], [ -74.574607849121094, -12.371900558471566 ], [ -74.573890686035099, -12.373149871826172 ], [ -74.573371887207031, -12.373174667358398 ], [ -74.5726318359375, -12.37281322479248 ], [ -74.571083068847656, -12.370930671691895 ], [ -74.570426940917969, -12.368795394897461 ], [ -74.569175720214844, -12.367019653320312 ], [ -74.568840026855412, -12.365806579589844 ], [ -74.567825317382812, -12.364205360412598 ], [ -74.567031860351506, -12.362124443054199 ], [ -74.56610107421875, -12.361236572265568 ], [ -74.564826965331974, -12.360766410827523 ], [ -74.564208984375, -12.360926628112736 ], [ -74.563323974609318, -12.361575126647949 ], [ -74.560913085937443, -12.36462211608881 ], [ -74.558151245117131, -12.366370201110783 ], [ -74.55755615234375, -12.367164611816349 ], [ -74.557304382324162, -12.368202209472599 ], [ -74.55670166015625, -12.369305610656625 ], [ -74.554977416992188, -12.370099067687988 ], [ -74.552719116210881, -12.3724365234375 ], [ -74.549766540527287, -12.373346328735352 ], [ -74.548377990722656, -12.374184608459473 ], [ -74.547721862792969, -12.37554836273182 ], [ -74.548187255859375, -12.377067565917912 ], [ -74.547630310058594, -12.378649711608887 ], [ -74.547973632812443, -12.380079269409123 ], [ -74.548019409179688, -12.381967544555664 ], [ -74.547767639160099, -12.383984565734806 ], [ -74.546699523925781, -12.385330200195312 ], [ -74.54534912109375, -12.386404037475586 ], [ -74.543212890625, -12.386845588684025 ], [ -74.542266845703125, -12.387421607971078 ], [ -74.541893005371094, -12.387901306152344 ], [ -74.541717529296875, -12.389065742492676 ], [ -74.541152954101562, -12.390394210815373 ], [ -74.538742065429688, -12.392660140991154 ], [ -74.53853607177723, -12.395075798034611 ], [ -74.539039611816406, -12.398518562316895 ], [ -74.539009094238224, -12.400039672851562 ], [ -74.537605285644531, -12.401653289794922 ], [ -74.536994934081974, -12.403237342834416 ], [ -74.535270690917912, -12.405195236206055 ], [ -74.5350341796875, -12.406787872314453 ], [ -74.535255432128906, -12.408821105956974 ], [ -74.534996032714787, -12.409373283386174 ], [ -74.534194946289062, -12.410113334655762 ], [ -74.532859802246094, -12.410419464111328 ], [ -74.530731201171875, -12.411636352539062 ], [ -74.529716491699219, -12.411697387695256 ], [ -74.528503417968693, -12.41125297546381 ], [ -74.525985717773438, -12.409465789794922 ], [ -74.523193359375, -12.408312797546387 ], [ -74.521598815917969, -12.407965660095158 ], [ -74.520889282226506, -12.408164978027287 ], [ -74.520172119140625, -12.408862113952637 ], [ -74.519912719726506, -12.40980052947998 ], [ -74.519836425781193, -12.412404060363713 ], [ -74.519462585449105, -12.414891242980843 ], [ -74.517799377441406, -12.41874885559082 ], [ -74.516899108886719, -12.4287109375 ], [ -74.517127990722656, -12.430303573608398 ], [ -74.517875671386719, -12.432031631469727 ], [ -74.518753051757812, -12.433064460754395 ], [ -74.520072937011719, -12.43341064453125 ], [ -74.520668029785099, -12.433818817138615 ], [ -74.521369934081918, -12.434885025024414 ], [ -74.521476745605469, -12.435573577880859 ], [ -74.520858764648381, -12.436785697937012 ], [ -74.516532897949219, -12.441143989562988 ], [ -74.510475158691349, -12.444632530212402 ], [ -74.508216857910156, -12.446593284606877 ], [ -74.507186889648438, -12.448062896728516 ], [ -74.506759643554631, -12.447908401489144 ], [ -74.505508422851506, -12.448169708251953 ], [ -74.503433227539006, -12.449448585510254 ], [ -74.501541137695312, -12.449292182922306 ], [ -74.501052856445256, -12.449056625366097 ], [ -74.498840332031193, -12.446709632873478 ], [ -74.497528076171761, -12.446247100830078 ], [ -74.495208740234318, -12.446114540100098 ], [ -74.492713928222656, -12.446329116821289 ], [ -74.488716125488281, -12.446103096008301 ], [ -74.486145019531193, -12.445602416992188 ], [ -74.483673095703068, -12.444531440734806 ], [ -74.47808837890625, -12.444620132446289 ], [ -74.474105834960938, -12.443696022033691 ], [ -74.471588134765511, -12.443694114685059 ], [ -74.468231201171818, -12.444307327270508 ], [ -74.466751098632812, -12.444379806518441 ], [ -74.462776184082031, -12.445645332336426 ], [ -74.459922790527287, -12.446091651916504 ], [ -74.458786010742131, -12.445837020874023 ], [ -74.455581665039062, -12.443940162658635 ], [ -74.454193115234375, -12.443731307983398 ], [ -74.451744079589787, -12.44432258605957 ], [ -74.448661804199219, -12.446821212768555 ], [ -74.447151184081974, -12.447541236877441 ], [ -74.445617675781193, -12.447898864746094 ], [ -74.441802978515568, -12.447639465331974 ], [ -74.437416076660099, -12.446411132812443 ], [ -74.43477630615223, -12.44727897644043 ], [ -74.432632446289062, -12.447295188903809 ], [ -74.431289672851562, -12.446928024291935 ], [ -74.42901611328125, -12.445494651794434 ], [ -74.427795410156193, -12.445528984069767 ], [ -74.425521850585881, -12.446002960205078 ], [ -74.423324584960881, -12.445013999938965 ], [ -74.422576904296875, -12.444911003112793 ], [ -74.421867370605412, -12.445128440856934 ], [ -74.420829772949162, -12.44605827331543 ], [ -74.419471740722656, -12.446860313415471 ], [ -74.417213439941349, -12.449423789977971 ], [ -74.416603088378906, -12.449809074401799 ], [ -74.415779113769474, -12.449989318847656 ], [ -74.412345886230412, -12.449918746948242 ], [ -74.410293579101562, -12.45075511932373 ], [ -74.408805847167912, -12.452142715454102 ], [ -74.407783508300724, -12.455876350402775 ], [ -74.406066894531193, -12.459244728088379 ], [ -74.405578613281193, -12.461667060852051 ], [ -74.401496887207031, -12.46569919586176 ], [ -74.401298522949162, -12.467706680297852 ], [ -74.402618408203068, -12.471235275268555 ], [ -74.402343749999943, -12.47324275970459 ], [ -74.402664184570312, -12.474203109741154 ], [ -74.405166625976562, -12.476687431335449 ], [ -74.409187316894474, -12.478360176086426 ], [ -74.411293029785099, -12.479811668395996 ], [ -74.411735534667969, -12.48121261596674 ], [ -74.411796569824219, -12.484331130981388 ], [ -74.412811279296818, -12.486910820007267 ], [ -74.414482116699219, -12.48946571350092 ], [ -74.414817810058537, -12.491644859313965 ], [ -74.414367675781136, -12.493245124816838 ], [ -74.41326904296875, -12.495167732238713 ], [ -74.412353515624943, -12.496323585510197 ], [ -74.411148071289062, -12.497215270996094 ], [ -74.409881591796818, -12.497431755065804 ], [ -74.408393859863281, -12.497256278991699 ], [ -74.406097412109375, -12.495695114135742 ], [ -74.404693603515625, -12.495746612548828 ], [ -74.402336120605412, -12.496844291686955 ], [ -74.399253845214844, -12.501549720764103 ], [ -74.398292541503906, -12.503607749938908 ], [ -74.398101806640625, -12.504775047302132 ], [ -74.398841857910156, -12.508476257324219 ], [ -74.398986816406193, -12.510247230529728 ], [ -74.398773193359375, -12.51099681854248 ], [ -74.397476196289006, -12.512929916381779 ], [ -74.397171020507756, -12.515460014343262 ], [ -74.397239685058594, -12.51844310760498 ], [ -74.397994995117188, -12.520181655883732 ], [ -74.399955749511662, -12.52276420593256 ], [ -74.400497436523438, -12.524303436279297 ], [ -74.39935302734375, -12.525647163391113 ], [ -74.398468017578125, -12.528042793273926 ], [ -74.396247863769418, -12.529402732849121 ], [ -74.394889831542912, -12.530746459960938 ], [ -74.394538879394531, -12.531766891479492 ], [ -74.394554138183594, -12.533123016357308 ], [ -74.393661499023381, -12.534805297851506 ], [ -74.392539978027344, -12.535786628723088 ], [ -74.390235900878849, -12.53697681427002 ], [ -74.389495849609375, -12.537788391113224 ], [ -74.389022827148438, -12.539051055908203 ], [ -74.386749267578125, -12.540584564208984 ], [ -74.385810852050781, -12.542048454284611 ], [ -74.384971618652287, -12.544224739074707 ], [ -74.383956909179688, -12.549249649047795 ], [ -74.383880615234375, -12.5538330078125 ], [ -74.383529663085881, -12.554844856262207 ], [ -74.383460998535099, -12.55715179443348 ], [ -74.3837890625, -12.558581352233887 ], [ -74.384574890136719, -12.560165405273438 ], [ -74.385437011718693, -12.561044692993164 ], [ -74.386695861816349, -12.561833381652775 ], [ -74.386688232421818, -12.562519073486328 ], [ -74.38702392578125, -12.562948226928711 ], [ -74.387107849121094, -12.564286231994629 ], [ -74.386878967285099, -12.567241668701115 ], [ -74.384590148925724, -12.569857597351074 ], [ -74.382873535156193, -12.571139335632267 ], [ -74.381202697753906, -12.571541786193791 ], [ -74.378479003906193, -12.57139873504633 ], [ -74.372383117675724, -12.573419570922852 ], [ -74.371009826660156, -12.57429313659668 ], [ -74.366798400878906, -12.575432777404785 ], [ -74.366226196289062, -12.576370239257812 ], [ -74.366035461425781, -12.578532218933105 ], [ -74.368309020996094, -12.582679748535099 ], [ -74.368659973144474, -12.583954811096135 ], [ -74.368515014648438, -12.584904670715275 ], [ -74.367843627929688, -12.586519241333008 ], [ -74.367607116699162, -12.58812141418457 ], [ -74.365524291992131, -12.591291427612305 ], [ -74.364479064941349, -12.592147827148381 ], [ -74.363113403320312, -12.592757225036621 ], [ -74.362518310546875, -12.593667984008789 ], [ -74.361305236816406, -12.594761848449707 ], [ -74.359428405761662, -12.59557056427002 ], [ -74.35821533203125, -12.596499443054142 ], [ -74.357048034667912, -12.596649169921875 ], [ -74.353736877441406, -12.59649658203125 ], [ -74.350837707519474, -12.597718238830566 ], [ -74.347099304199162, -12.598525047302246 ], [ -74.344467163085938, -12.599684715270996 ], [ -74.340690612792969, -12.601873397827148 ], [ -74.333473205566349, -12.60425853729248 ], [ -74.331680297851506, -12.605233192443791 ], [ -74.330322265624943, -12.605563163757267 ], [ -74.328987121581974, -12.605532646179199 ], [ -74.328315734863224, -12.605033874511719 ], [ -74.327087402343693, -12.603249549865723 ], [ -74.326484680175781, -12.602903366088867 ], [ -74.325531005859375, -12.603029251098633 ], [ -74.324493408203125, -12.604110717773438 ], [ -74.324249267578125, -12.606088638305607 ], [ -74.323570251464787, -12.60827732086176 ], [ -74.323364257812443, -12.609887123107853 ], [ -74.324111938476562, -12.611758232116642 ], [ -74.326179504394531, -12.613918304443359 ], [ -74.328216552734318, -12.615541458129826 ], [ -74.329185485839787, -12.61600399017334 ], [ -74.3306884765625, -12.616106033325138 ], [ -74.335571289062443, -12.615397453307992 ], [ -74.336860656738281, -12.615872383117676 ], [ -74.33856201171875, -12.617230415344181 ], [ -74.338829040527287, -12.617862701416016 ], [ -74.338813781738224, -12.620285987853947 ], [ -74.339134216308594, -12.621336936950684 ], [ -74.339569091796818, -12.621817588806152 ], [ -74.341178894042969, -12.622580528259277 ], [ -74.342048645019474, -12.623785018920898 ], [ -74.342216491699219, -12.626879692077637 ], [ -74.341743469238281, -12.630421638488656 ], [ -74.341789245605412, -12.631777763366642 ], [ -74.341308593749943, -12.633304595947266 ], [ -74.340293884277344, -12.635672569274902 ], [ -74.339004516601506, -12.637910842895508 ], [ -74.337455749511719, -12.639777183532658 ], [ -74.333419799804688, -12.643032073974609 ], [ -74.331787109375, -12.645334243774414 ], [ -74.331459045410099, -12.646518707275391 ], [ -74.331382751464787, -12.648525238037109 ], [ -74.331558227539006, -12.651492118835449 ], [ -74.332023620605469, -12.653599739074707 ], [ -74.331932067871094, -12.656293869018555 ], [ -74.330970764160156, -12.658370971679688 ], [ -74.328895568847599, -12.661052703857422 ], [ -74.327903747558594, -12.663843154907227 ], [ -74.327621459960938, -12.66611289978016 ], [ -74.327453613281193, -12.671229362487793 ], [ -74.327522277832031, -12.679856300354004 ], [ -74.328201293945312, -12.682298660278263 ], [ -74.330398559570312, -12.686211585998421 ], [ -74.330345153808537, -12.68660926818842 ], [ -74.330757141113281, -12.687315940856934 ], [ -74.332756042480469, -12.68924617767334 ], [ -74.334022521972656, -12.689402580261117 ], [ -74.337059020996094, -12.688849449157715 ], [ -74.338272094726562, -12.688862800598088 ], [ -74.340217590332031, -12.689952850341797 ], [ -74.340965270996094, -12.690750122070256 ], [ -74.341545104980469, -12.6925048828125 ], [ -74.342247009277287, -12.695968627929688 ], [ -74.343338012695312, -12.699301719665471 ], [ -74.345268249511719, -12.704334259033203 ], [ -74.348037719726562, -12.710488319396973 ], [ -74.349266052246094, -12.71656608581543 ], [ -74.349044799804688, -12.718576431274414 ], [ -74.347450256347656, -12.720760345458984 ], [ -74.34295654296875, -12.724076271057129 ], [ -74.340728759765568, -12.72699069976801 ], [ -74.340415954589844, -12.727569580078068 ], [ -74.340400695800781, -12.728256225585938 ], [ -74.341522216796875, -12.730862617492676 ], [ -74.341224670410156, -12.732019424438477 ], [ -74.340499877929688, -12.733002662658635 ], [ -74.336471557617188, -12.73552417755127 ], [ -74.335296630859318, -12.735857009887695 ], [ -74.333351135253906, -12.735778808593636 ], [ -74.332275390625, -12.736344337463322 ], [ -74.331474304199162, -12.73712158203125 ], [ -74.330955505371094, -12.738095283508301 ], [ -74.330833435058594, -12.738922119140511 ], [ -74.331031799316406, -12.739499092101994 ], [ -74.332015991210938, -12.740506172180176 ], [ -74.332160949706918, -12.74117374420166 ], [ -74.331489562988224, -12.742024421691895 ], [ -74.330673217773438, -12.742527961730957 ], [ -74.326393127441406, -12.744676589965763 ], [ -74.324783325195256, -12.744846343994141 ], [ -74.323478698730412, -12.743828773498535 ], [ -74.319984436035156, -12.741967201232853 ], [ -74.318748474121094, -12.73943901062006 ], [ -74.317352294921818, -12.738136291503849 ], [ -74.31695556640625, -12.738097190856934 ], [ -74.316558837890625, -12.737752914428711 ], [ -74.315368652343693, -12.738095283508301 ], [ -74.311943054199105, -12.738066673278809 ], [ -74.310234069824219, -12.738559722900391 ], [ -74.308280944824219, -12.740045547485352 ], [ -74.3056640625, -12.74332332611084 ], [ -74.302001953124943, -12.746568679809513 ], [ -74.300254821777344, -12.747639656066895 ], [ -74.294784545898438, -12.750128746032658 ], [ -74.292984008789062, -12.751599311828556 ], [ -74.291481018066406, -12.753828048705998 ], [ -74.288993835449219, -12.758196830749512 ], [ -74.288673400878793, -12.759769439697266 ], [ -74.288932800292912, -12.761081695556641 ], [ -74.289649963378906, -12.762404441833496 ], [ -74.292594909667969, -12.764979362487793 ], [ -74.293174743652344, -12.766517639160156 ], [ -74.293190002441406, -12.767468452453613 ], [ -74.290420532226562, -12.771609306335336 ], [ -74.289405822753849, -12.772286415100098 ], [ -74.286819458007812, -12.773436546325684 ], [ -74.285713195800724, -12.774825096130314 ], [ -74.285659790039062, -12.776300430297852 ], [ -74.286323547363281, -12.777776718139592 ], [ -74.287979125976506, -12.779390335082951 ], [ -74.288398742675781, -12.780394554138184 ], [ -74.286705017089844, -12.78330135345459 ], [ -74.285446166992188, -12.786849975585938 ], [ -74.285507202148381, -12.790088653564453 ], [ -74.286430358886719, -12.79400634765625 ], [ -74.285987854003849, -12.796536445617619 ], [ -74.284950256347599, -12.798295974731445 ], [ -74.284744262695256, -12.799580574035588 ], [ -74.285209655761662, -12.800360679626465 ], [ -74.286445617675724, -12.801539421081486 ], [ -74.287055969238281, -12.8018922805785 ], [ -74.287719726562386, -12.801948547363224 ], [ -74.290847778320256, -12.801467895507756 ], [ -74.294456481933537, -12.799498558044434 ], [ -74.295227050781193, -12.799255371093693 ], [ -74.295806884765568, -12.799375534057617 ], [ -74.297195434570312, -12.801170349121037 ], [ -74.298400878906136, -12.804471969604435 ], [ -74.299362182617188, -12.805596351623478 ], [ -74.299308776855469, -12.806546211242619 ], [ -74.298995971679688, -12.807305335998478 ], [ -74.296874999999886, -12.810209274291879 ], [ -74.294639587402344, -12.81257152557373 ], [ -74.293922424316406, -12.814325332641602 ], [ -74.293807983398381, -12.816349029540959 ], [ -74.295326232910099, -12.818425178527832 ], [ -74.295585632324219, -12.819338798522949 ], [ -74.29559326171875, -12.820432662963867 ], [ -74.294952392578068, -12.822203636169434 ], [ -74.294235229492188, -12.823358535766545 ], [ -74.292335510253906, -12.825092315673828 ], [ -74.294471740722599, -12.827554702758732 ], [ -74.294532775878906, -12.828042984008675 ], [ -74.294143676757812, -12.829264640808105 ], [ -74.294273376464787, -12.829607009887695 ], [ -74.296310424804688, -12.831032752990723 ], [ -74.2982177734375, -12.831191062927189 ], [ -74.2996826171875, -12.830807685852051 ], [ -74.3009033203125, -12.8302125930785 ], [ -74.3035888671875, -12.827897071838322 ], [ -74.305053710937443, -12.827718734741211 ], [ -74.307144165039006, -12.827897071838322 ], [ -74.308181762695312, -12.828297615051213 ], [ -74.308952331542912, -12.829040527343693 ], [ -74.311393737792969, -12.833877563476506 ], [ -74.312515258788949, -12.835089683532658 ], [ -74.315513610839844, -12.835124015807992 ], [ -74.318237304687386, -12.835477828979435 ], [ -74.318817138671875, -12.835132598876896 ], [ -74.320053100585938, -12.835253715515137 ], [ -74.320938110351562, -12.834905624389592 ], [ -74.321907043457031, -12.834925651550236 ], [ -74.3223876953125, -12.834510803222656 ], [ -74.324783325195256, -12.833972930908146 ], [ -74.327377319335881, -12.834342956542969 ], [ -74.330101013183594, -12.835235595703068 ], [ -74.331268310546818, -12.836566925048771 ], [ -74.331771850585881, -12.837681770324707 ], [ -74.331863403320256, -12.838485717773324 ], [ -74.331085205078068, -12.840781211853027 ], [ -74.330917358398381, -12.84307861328125 ], [ -74.332756042480469, -12.848424911498967 ], [ -74.33306884765625, -12.851771354675293 ], [ -74.332534790039006, -12.855631828307992 ], [ -74.331550598144531, -12.858732223510685 ], [ -74.329063415527344, -12.865134239196721 ], [ -74.328742980957031, -12.867945671081543 ], [ -74.328231811523381, -12.869915008544922 ], [ -74.324920654296875, -12.875180244445801 ], [ -74.321983337402344, -12.87887001037592 ], [ -74.321922302246037, -12.880768775939941 ], [ -74.320991516113224, -12.882259368896371 ], [ -74.320755004882812, -12.883179664611816 ], [ -74.320838928222656, -12.8855943679809 ], [ -74.321334838867188, -12.887123107910043 ], [ -74.321205139160156, -12.889971733093262 ], [ -74.320983886718693, -12.890151977539006 ], [ -74.320884704589787, -12.891344070434513 ], [ -74.3209228515625, -12.896995544433594 ], [ -74.321556091308537, -12.898018836974984 ], [ -74.323532104492188, -12.903042793273869 ], [ -74.325195312499943, -12.904449462890568 ], [ -74.325561523437443, -12.905012130737305 ], [ -74.326797485351506, -12.910023689269963 ], [ -74.327438354492188, -12.911771774291935 ], [ -74.329833984375, -12.914362907409611 ], [ -74.330307006835938, -12.915764808654785 ], [ -74.330253601074105, -12.918324470519963 ], [ -74.329940795898381, -12.920034408569336 ], [ -74.327774047851449, -12.926553726196232 ], [ -74.326652526855469, -12.928252220153809 ], [ -74.325897216796875, -12.929026603698674 ], [ -74.325172424316349, -12.929424285888672 ], [ -74.324348449707031, -12.929467201232853 ], [ -74.321754455566349, -12.928601264953556 ], [ -74.319290161132812, -12.928767204284611 ], [ -74.318374633789062, -12.92906379699707 ], [ -74.317558288574162, -12.929972648620605 ], [ -74.316360473632812, -12.930684089660645 ], [ -74.313400268554688, -12.929664611816406 ], [ -74.310821533203125, -12.929239273071289 ], [ -74.306953430175724, -12.929231643676644 ], [ -74.30426025390625, -12.929613113403207 ], [ -74.301887512207031, -12.931217193603516 ], [ -74.298591613769418, -12.932527542114258 ], [ -74.297752380371094, -12.933601379394531 ], [ -74.296211242675781, -12.936300277709961 ], [ -74.295417785644474, -12.937074661254883 ], [ -74.295997619628849, -12.937989234924316 ], [ -74.296699523925781, -12.940170288085938 ], [ -74.299049377441349, -12.942891120910645 ], [ -74.299713134765568, -12.944014549255314 ], [ -74.300094604492131, -12.946221351623535 ], [ -74.299949645996094, -12.949919700622502 ], [ -74.299140930175724, -12.954835891723633 ], [ -74.29888916015625, -12.959130287170353 ], [ -74.298553466796875, -12.959871292114258 ], [ -74.298164367675781, -12.96240043640131 ], [ -74.297966003417969, -12.96804141998291 ], [ -74.296844482421818, -12.970788002014046 ], [ -74.294013977050668, -12.974740028381348 ], [ -74.292808532714844, -12.978753089904785 ], [ -74.292770385742131, -12.982650756835881 ], [ -74.292076110839787, -12.983633041381836 ], [ -74.291191101074219, -12.987708091735783 ], [ -74.290000915527287, -12.990633964538517 ], [ -74.283012390136662, -13.000317573547306 ], [ -74.281639099121094, -13.001932144165039 ], [ -74.27923583984375, -13.004158973693791 ], [ -74.278419494628906, -13.006524085998478 ], [ -74.278366088867131, -13.010152816772461 ], [ -74.276367187499943, -13.012904167175293 ], [ -74.273750305175781, -13.014883995056096 ], [ -74.273155212402344, -13.015770912170353 ], [ -74.272918701171818, -13.017389297485352 ], [ -74.274574279785156, -13.019173622131348 ], [ -74.274803161621094, -13.019987106323185 ], [ -74.274658203125, -13.020485877990723 ], [ -74.273796081542855, -13.021359443664551 ], [ -74.271003723144474, -13.023096084594727 ], [ -74.270378112792969, -13.023809432983342 ], [ -74.269790649413949, -13.025029182434025 ], [ -74.269645690917969, -13.026375770568791 ], [ -74.271331787109375, -13.03046703338623 ], [ -74.271797180175781, -13.034891128539982 ], [ -74.271903991699219, -13.040010452270451 ], [ -74.272789001464844, -13.043121337890568 ], [ -74.273155212402344, -13.047408103942814 ], [ -74.272972106933594, -13.05333137512207 ], [ -74.273208618164006, -13.057642936706543 ], [ -74.271553039550781, -13.060259819030705 ], [ -74.271583557128849, -13.062557220458984 ], [ -74.270500183105469, -13.065176010131836 ], [ -74.270744323730355, -13.066750526428223 ], [ -74.27191162109375, -13.06859016418457 ], [ -74.272338867187443, -13.068572044372502 ], [ -74.274528503417912, -13.071317672729435 ], [ -74.276206970214844, -13.072688102722054 ], [ -74.278892517089844, -13.074062347412109 ], [ -74.280929565429631, -13.074311256408691 ], [ -74.28192138671875, -13.073836326599121 ], [ -74.283798217773381, -13.072257041931152 ], [ -74.286773681640625, -13.067890167236328 ], [ -74.288932800292912, -13.065825462341309 ], [ -74.290702819824219, -13.065604209899846 ], [ -74.293975830078125, -13.064192771911564 ], [ -74.295417785644474, -13.063790321350098 ], [ -74.298309326171875, -13.063690185546875 ], [ -74.299880981445312, -13.064028739929199 ], [ -74.300689697265511, -13.063115119934082 ], [ -74.301902770996037, -13.06291294097889 ], [ -74.303787231445312, -13.061814308166504 ], [ -74.305618286132756, -13.061221122741642 ], [ -74.308708190917969, -13.060587882995605 ], [ -74.311309814453125, -13.060829162597656 ], [ -74.311981201171875, -13.060661315917912 ], [ -74.314254760742188, -13.057304382324219 ], [ -74.316413879394474, -13.054677963256836 ], [ -74.320777893066349, -13.052176475524846 ], [ -74.325531005859375, -13.048310279846135 ], [ -74.329292297363224, -13.044395446777344 ], [ -74.331352233886719, -13.043051719665527 ], [ -74.3323974609375, -13.041619300842228 ], [ -74.333137512207031, -13.040010452270451 ], [ -74.333320617675781, -13.038978576660156 ], [ -74.333213806152344, -13.035724639892578 ], [ -74.334861755371094, -13.03157901763916 ], [ -74.33599853515625, -13.030567169189453 ], [ -74.339912414550781, -13.028932571411133 ], [ -74.341934204101562, -13.026685714721623 ], [ -74.347564697265625, -13.024929046630746 ], [ -74.349922180175781, -13.025665283203068 ], [ -74.351661682128906, -13.024830818176213 ], [ -74.352699279785156, -13.024760246276855 ], [ -74.356765747070199, -13.025547981262207 ], [ -74.357353210449219, -13.025895118713322 ], [ -74.358467102050724, -13.025831222534123 ], [ -74.360084533691349, -13.025103569030762 ], [ -74.362846374511662, -13.022489547729435 ], [ -74.364341735839844, -13.021779060363713 ], [ -74.366607666015625, -13.021267890930176 ], [ -74.368545532226562, -13.021372795104924 ], [ -74.370010375976506, -13.021710395812875 ], [ -74.372856140136662, -13.023065567016545 ], [ -74.374847412109375, -13.024497985839844 ], [ -74.375732421874943, -13.024834632873478 ], [ -74.378181457519531, -13.025156021118107 ], [ -74.379898071289062, -13.024673461914062 ], [ -74.381538391113224, -13.02734375 ], [ -74.382202148437443, -13.027743339538517 ], [ -74.384376525878906, -13.028273582458496 ], [ -74.385482788085938, -13.028827667236271 ], [ -74.386856079101562, -13.030142784118596 ], [ -74.388214111328068, -13.032008171081543 ], [ -74.389595031738281, -13.034806251525879 ], [ -74.389961242675781, -13.04123592376709 ], [ -74.389831542968693, -13.042175292968693 ], [ -74.390327453613224, -13.04329776763916 ], [ -74.393707275390625, -13.045593261718693 ], [ -74.396636962890625, -13.050311088562012 ], [ -74.400886535644474, -13.054525375366154 ], [ -74.401885986328125, -13.056606292724609 ], [ -74.403129577636719, -13.058028221130371 ], [ -74.405227661132812, -13.063605308532658 ], [ -74.408172607421875, -13.067670822143498 ], [ -74.408241271972599, -13.069027900695801 ], [ -74.407363891601562, -13.070861816406193 ], [ -74.407218933105469, -13.071819305419865 ], [ -74.409645080566406, -13.075398445129338 ], [ -74.410560607910156, -13.077949523925724 ], [ -74.410835266113224, -13.080915451049805 ], [ -74.410018920898438, -13.082468032836857 ], [ -74.409683227539006, -13.086282730102482 ], [ -74.409851074218693, -13.087550163268986 ], [ -74.410827636718693, -13.088176727294922 ], [ -74.410957336425781, -13.089242935180607 ], [ -74.412246704101506, -13.091317176818791 ], [ -74.412635803222599, -13.093361854553223 ], [ -74.412559509277344, -13.094112396240234 ], [ -74.411422729492188, -13.095111846923771 ], [ -74.410781860351562, -13.096882820129395 ], [ -74.410835266113224, -13.098105430603027 ], [ -74.411300659179631, -13.099515914916992 ], [ -74.41107177734375, -13.103358268737736 ], [ -74.411308288574162, -13.106451034545898 ], [ -74.411026000976506, -13.106892585754395 ], [ -74.408821105956974, -13.108724594116211 ], [ -74.408561706542969, -13.10948371887207 ], [ -74.409080505371094, -13.110417366027832 ], [ -74.410591125488281, -13.111324310302678 ], [ -74.411193847656193, -13.112237930297738 ], [ -74.411422729492188, -13.114246368408203 ], [ -74.411201477050724, -13.117067337036076 ], [ -74.411476135253849, -13.118892669677734 ], [ -74.410812377929631, -13.11993217468256 ], [ -74.409820556640625, -13.120644569396973 ], [ -74.40228271484375, -13.122706413269043 ], [ -74.400428771972599, -13.12384128570551 ], [ -74.397796630859375, -13.124612808227482 ], [ -74.395751953124943, -13.126020431518555 ], [ -74.3934326171875, -13.126447677612191 ], [ -74.391914367675781, -13.127095222473031 ], [ -74.390190124511719, -13.12832069396967 ], [ -74.389724731445312, -13.129441261291447 ], [ -74.389907836914062, -13.132903099060059 ], [ -74.389015197753906, -13.135730743408146 ], [ -74.388816833496094, -13.137068748474121 ], [ -74.389892578125, -13.140544891357422 ], [ -74.390014648437443, -13.14283275604248 ], [ -74.390502929687443, -13.144387245178223 ], [ -74.389678955078125, -13.146222114562988 ], [ -74.390022277831974, -13.147806167602482 ], [ -74.389686584472656, -13.150336265563965 ], [ -74.390045166015568, -13.151532173156738 ], [ -74.389083862304631, -13.152207374572754 ], [ -74.389015197753906, -13.152630805969181 ], [ -74.390716552734261, -13.153937339782601 ], [ -74.394218444824162, -13.155835151672363 ], [ -74.395225524902344, -13.157294273376465 ], [ -74.397270202636662, -13.15928840637207 ], [ -74.398193359375, -13.160799026489258 ], [ -74.398384094238281, -13.161849975585881 ], [ -74.397171020507756, -13.163944244384709 ], [ -74.397422790527344, -13.166095733642578 ], [ -74.396598815917912, -13.167784690856934 ], [ -74.396652221679688, -13.169249534606934 ], [ -74.397857666015568, -13.168972015380859 ], [ -74.400032043456974, -13.167558670043945 ], [ -74.403007507324162, -13.166183471679688 ], [ -74.405029296875, -13.164359092712402 ], [ -74.407760620117131, -13.161346435546875 ], [ -74.409271240234375, -13.160400390625 ], [ -74.410331726074162, -13.160121917724609 ], [ -74.415000915527287, -13.159926414489689 ], [ -74.418251037597599, -13.159381866455021 ], [ -74.420455932617131, -13.159385681152287 ], [ -74.422645568847599, -13.160113334655705 ], [ -74.429817199706918, -13.163331031799203 ], [ -74.430847167968693, -13.164355278015137 ], [ -74.432815551757812, -13.16785812377924 ], [ -74.433898925781193, -13.169173240661564 ], [ -74.434944152831974, -13.169727325439453 ], [ -74.437812805175724, -13.170492172241154 ], [ -74.439323425292912, -13.171292304992676 ], [ -74.442306518554631, -13.174463272094727 ], [ -74.449302673339844, -13.178483009338322 ], [ -74.45156097412098, -13.180839538574162 ], [ -74.454055786132812, -13.184868812560978 ], [ -74.456573486328125, -13.18717098236084 ], [ -74.458686828613224, -13.189824104309025 ], [ -74.460556030273438, -13.190831184387207 ], [ -74.462158203125, -13.190357208251896 ], [ -74.466636657714844, -13.18787765502924 ], [ -74.467971801757812, -13.187564849853516 ], [ -74.471374511718693, -13.188982963562012 ], [ -74.472724914550724, -13.189292907714844 ], [ -74.475982666015625, -13.191523551940918 ], [ -74.477561950683537, -13.191916465759277 ], [ -74.482009887695312, -13.192366600036564 ], [ -74.483184814453125, -13.192046165466309 ], [ -74.486305236816406, -13.190630912780705 ], [ -74.491966247558537, -13.18707084655756 ], [ -74.493492126464787, -13.186467170715332 ], [ -74.494186401367131, -13.186442375183049 ], [ -74.4962158203125, -13.187277793884277 ], [ -74.498954772949162, -13.187464714050293 ], [ -74.499542236328125, -13.187782287597599 ], [ -74.500564575195256, -13.189058303833008 ], [ -74.501617431640568, -13.192026138305607 ], [ -74.502357482910099, -13.192797660827637 ], [ -74.504249572753906, -13.193316459655705 ], [ -74.508926391601562, -13.192946434020882 ], [ -74.511932373046875, -13.193448066711369 ], [ -74.513504028320312, -13.194192886352539 ], [ -74.516578674316349, -13.196882247924805 ], [ -74.517051696777287, -13.196975708007699 ], [ -74.518508911132699, -13.195939064025822 ], [ -74.519905090331974, -13.194484710693303 ], [ -74.521720886230412, -13.191478729248047 ], [ -74.523124694824219, -13.190060615539551 ], [ -74.524276733398438, -13.189520835876465 ], [ -74.525634765624943, -13.189440727233887 ], [ -74.52691650390625, -13.189930915832463 ], [ -74.528427124023324, -13.191390037536564 ], [ -74.528945922851562, -13.192333221435547 ], [ -74.528976440429631, -13.193144798278809 ], [ -74.529373168945256, -13.194149971008301 ], [ -74.530731201171875, -13.195364952087402 ], [ -74.532409667968693, -13.195693016052189 ], [ -74.536636352539062, -13.195863723754826 ], [ -74.537963867187386, -13.19618034362793 ], [ -74.53875732421875, -13.19664478302002 ], [ -74.542228698730412, -13.200348854064941 ], [ -74.543533325195312, -13.200089454650879 ], [ -74.544486999511719, -13.199240684509164 ], [ -74.546249389648381, -13.196314811706543 ], [ -74.54840087890625, -13.19410228729248 ], [ -74.549064636230469, -13.193144798278809 ], [ -74.551322937011719, -13.191034317016602 ], [ -74.552360534667912, -13.189038276672363 ], [ -74.553565979003906, -13.187294006347656 ], [ -74.553916931152344, -13.187349319458008 ], [ -74.556465148925668, -13.185949325561467 ], [ -74.559211730956974, -13.185234069824162 ], [ -74.560218811035156, -13.185297966003361 ], [ -74.56219482421875, -13.186234474182129 ], [ -74.563629150390625, -13.186487197875977 ], [ -74.565841674804688, -13.185888290405273 ], [ -74.567962646484375, -13.184659004211369 ], [ -74.569412231445256, -13.184082984924316 ], [ -74.571327209472599, -13.183871269226017 ], [ -74.572570800781193, -13.184123992919922 ], [ -74.573204040527344, -13.187000274658203 ], [ -74.574432373046875, -13.189411163330021 ], [ -74.575927734375, -13.190596580505371 ], [ -74.579208374023438, -13.191960334777832 ], [ -74.580108642578068, -13.192854881286621 ], [ -74.580352783203125, -13.194373130798226 ], [ -74.579559326171875, -13.197600364685002 ], [ -74.579444885253849, -13.201189994812012 ], [ -74.579711914062443, -13.201536178588867 ], [ -74.580963134765568, -13.201951026916447 ], [ -74.583518981933537, -13.202065467834473 ], [ -74.584823608398438, -13.202936172485238 ], [ -74.585235595703068, -13.204771041870117 ], [ -74.585449218749943, -13.209166526794434 ], [ -74.585968017578125, -13.210604667663574 ], [ -74.587005615234375, -13.211150169372502 ], [ -74.593132019042969, -13.211222648620549 ], [ -74.594627380371094, -13.211921691894474 ], [ -74.595649719238224, -13.212695121765137 ], [ -74.599395751953125, -13.217462539672852 ], [ -74.600540161132812, -13.21930027008051 ], [ -74.601020812988281, -13.221217155456543 ], [ -74.601112365722656, -13.224808692932072 ], [ -74.601974487304688, -13.226599693298283 ], [ -74.603164672851506, -13.227042198181152 ], [ -74.606040954589787, -13.227573394775334 ], [ -74.608840942382812, -13.228860855102482 ], [ -74.611869812011662, -13.231850624084473 ], [ -74.613822937011719, -13.234230995178223 ], [ -74.615509033203125, -13.237224578857422 ], [ -74.616378784179688, -13.238367080688477 ], [ -74.618743896484375, -13.240639686584416 ], [ -74.620742797851449, -13.242225646972656 ], [ -74.622207641601562, -13.243827819824219 ], [ -74.623863220214787, -13.246831893920898 ], [ -74.625946044921875, -13.249622344970703 ], [ -74.628944396972543, -13.255086898803654 ], [ -74.632225036621094, -13.260183334350586 ], [ -74.633407592773381, -13.261160850524902 ], [ -74.6375732421875, -13.263435363769474 ], [ -74.638946533203068, -13.266567230224553 ], [ -74.6419677734375, -13.269942283630371 ], [ -74.643798828124943, -13.27315616607666 ], [ -74.644668579101506, -13.273981094360238 ], [ -74.646255493164062, -13.274453163146973 ], [ -74.647354125976562, -13.274428367614746 ], [ -74.649543762206918, -13.273805618286133 ], [ -74.652404785156136, -13.271034240722656 ], [ -74.653511047363281, -13.27042102813715 ], [ -74.655525207519474, -13.270550727844238 ], [ -74.657669067382812, -13.27134895324707 ], [ -74.659454345703068, -13.271732330322209 ], [ -74.66351318359375, -13.271329879760742 ], [ -74.669387817382812, -13.274067878723145 ], [ -74.671943664550724, -13.27476692199707 ], [ -74.673866271972656, -13.27680492401123 ], [ -74.676361083984375, -13.280253410339355 ], [ -74.677703857421875, -13.281475067138672 ], [ -74.681732177734375, -13.283767700195312 ], [ -74.682907104492131, -13.284645080566406 ], [ -74.687408447265625, -13.28627872467041 ], [ -74.686714172363224, -13.28711986541748 ], [ -74.685745239257812, -13.287626266479492 ], [ -74.680816650390568, -13.291496276855469 ], [ -74.678436279296818, -13.293023109435978 ], [ -74.677925109863281, -13.293519973754826 ], [ -74.677085876464787, -13.295028686523438 ], [ -74.676437377929574, -13.299187660217285 ], [ -74.67523193359375, -13.302187919616699 ], [ -74.674674987792969, -13.304736137390137 ], [ -74.673904418945312, -13.305966377258244 ], [ -74.672233581542912, -13.307493209838867 ], [ -74.671897888183594, -13.308124542236328 ], [ -74.671646118164006, -13.310087203979492 ], [ -74.671806335449219, -13.314661026000977 ], [ -74.671669006347543, -13.315638542175293 ], [ -74.670852661132812, -13.317048072814885 ], [ -74.668571472167969, -13.318365097045898 ], [ -74.667808532714844, -13.319675445556584 ], [ -74.667587280273438, -13.321771621704102 ], [ -74.667984008789062, -13.323710441589355 ], [ -74.66815185546875, -13.326312065124512 ], [ -74.667991638183594, -13.326899528503361 ], [ -74.667427062988281, -13.32762336730957 ], [ -74.661964416503906, -13.331990242004395 ], [ -74.661125183105469, -13.332333564758301 ], [ -74.659217834472656, -13.332558631896973 ], [ -74.655845642089844, -13.334532737731877 ], [ -74.653831481933537, -13.334737777709961 ], [ -74.652008056640568, -13.333705902099553 ], [ -74.651161193847599, -13.333596229553223 ], [ -74.648628234863281, -13.335618019104004 ], [ -74.644866943359318, -13.336334228515625 ], [ -74.638809204101562, -13.340668678283691 ], [ -74.635261535644531, -13.342389106750488 ], [ -74.633697509765568, -13.344150543212891 ], [ -74.634536743164006, -13.344983100891056 ], [ -74.636642456054631, -13.34514045715332 ], [ -74.637725830078125, -13.346091270446721 ], [ -74.64013671875, -13.346665382385254 ], [ -74.641815185546818, -13.348321914672852 ], [ -74.642791748046875, -13.348974227905273 ], [ -74.644859313964787, -13.349961280822697 ], [ -74.647071838378906, -13.35053539276123 ], [ -74.648155212402344, -13.351350784301758 ], [ -74.649444580078068, -13.351432800292912 ], [ -74.65460205078125, -13.350644111633301 ], [ -74.656349182128906, -13.350755691528207 ], [ -74.657493591308594, -13.35107517242426 ], [ -74.659545898437443, -13.352269172668457 ], [ -74.660148620605469, -13.353989601135254 ], [ -74.661750793456918, -13.354651451110783 ], [ -74.662834167480469, -13.354516983032227 ], [ -74.664558410644531, -13.353677749633732 ], [ -74.667861938476562, -13.352572441101017 ], [ -74.671096801757699, -13.35201358795166 ], [ -74.673469543456974, -13.350714683532715 ], [ -74.676300048828125, -13.350863456726017 ], [ -74.677490234375, -13.35041427612299 ], [ -74.678405761718693, -13.350350379943734 ], [ -74.681388854980412, -13.351250648498535 ], [ -74.683113098144418, -13.351116180419922 ], [ -74.68408203125, -13.351949691772461 ], [ -74.685333251953125, -13.352546691894531 ], [ -74.68807220458973, -13.352415084838867 ], [ -74.689163208007812, -13.352885246276855 ], [ -74.690414428710938, -13.354182243347111 ], [ -74.690826416015568, -13.355187416076603 ], [ -74.693550109863281, -13.35732364654541 ], [ -74.694831848144474, -13.359476089477539 ], [ -74.695960998535099, -13.360653877258301 ], [ -74.697303771972599, -13.36158561706543 ], [ -74.699745178222656, -13.362385749816895 ], [ -74.70147705078125, -13.363389015197697 ], [ -74.702545166015568, -13.36363506317133 ], [ -74.709594726562443, -13.363842964172363 ], [ -74.71096038818348, -13.363375663757324 ], [ -74.712310791015625, -13.362516403198242 ], [ -74.713020324707031, -13.362373352050781 ], [ -74.715187072753906, -13.362773895263672 ], [ -74.7164306640625, -13.363382339477539 ], [ -74.717674255371094, -13.363590240478516 ], [ -74.718772888183537, -13.363385200500431 ], [ -74.719924926757699, -13.36231803894043 ], [ -74.721649169921875, -13.361452102661133 ], [ -74.723281860351562, -13.361481666564885 ], [ -74.727828979492131, -13.359794616699219 ], [ -74.729377746582031, -13.359804153442326 ], [ -74.733657836913949, -13.356870651245117 ], [ -74.734214782714787, -13.356906890869027 ], [ -74.735626220703068, -13.357516288757267 ], [ -74.736412048339787, -13.357280731201115 ], [ -74.737869262695312, -13.35636043548584 ], [ -74.738670349121094, -13.355068206787053 ], [ -74.739593505859375, -13.35214900970459 ], [ -74.739921569824162, -13.350293159484863 ], [ -74.739593505859375, -13.348641395568848 ], [ -74.738037109374943, -13.347318649291879 ], [ -74.737510681152344, -13.346195220947209 ], [ -74.737747192382756, -13.343320846557617 ], [ -74.738136291503849, -13.342816352844125 ], [ -74.738525390625, -13.340744018554688 ], [ -74.739044189453125, -13.339417457580566 ], [ -74.739334106445312, -13.339081764221135 ], [ -74.739852905273381, -13.338983535766602 ], [ -74.741600036621094, -13.339527130126896 ], [ -74.743064880371037, -13.33956336975092 ], [ -74.745010375976562, -13.339024543762207 ], [ -74.746330261230412, -13.338412284851074 ], [ -74.746963500976562, -13.337659835815373 ], [ -74.747810363769531, -13.335472106933594 ], [ -74.749916076660156, -13.33277416229248 ], [ -74.751464843749943, -13.329833984375 ], [ -74.754875183105469, -13.32548713684082 ], [ -74.756301879882812, -13.324404716491699 ], [ -74.758056640624943, -13.324316024780217 ], [ -74.759437561035156, -13.324488639831543 ], [ -74.760116577148438, -13.324752807617131 ], [ -74.762329101562443, -13.326788902282715 ], [ -74.763214111328068, -13.327919006347656 ], [ -74.764213562011719, -13.329981803893986 ], [ -74.76495361328125, -13.334504127502385 ], [ -74.763862609863224, -13.340427398681641 ], [ -74.763877868652287, -13.341238021850586 ], [ -74.764152526855412, -13.341673851013184 ], [ -74.765289306640568, -13.342623710632324 ], [ -74.766609191894531, -13.343259811401367 ], [ -74.770095825195312, -13.346175193786564 ], [ -74.771064758300781, -13.3464097976684 ], [ -74.772727966308537, -13.346458435058594 ], [ -74.775100708007812, -13.347127914428597 ], [ -74.776809692382812, -13.348459243774357 ], [ -74.778182983398381, -13.349210739135685 ], [ -74.782623291015625, -13.348908424377385 ], [ -74.786476135253849, -13.348093986511174 ], [ -74.787673950195312, -13.348026275634709 ], [ -74.791709899902287, -13.349953651428166 ], [ -74.79376220703125, -13.351592063903809 ], [ -74.794921875, -13.35181808471674 ], [ -74.796371459960938, -13.351594924926701 ], [ -74.798294067382756, -13.351642608642521 ], [ -74.803161621093693, -13.353940010070744 ], [ -74.805038452148438, -13.355361938476506 ], [ -74.807403564453125, -13.355635643005314 ], [ -74.809303283691406, -13.356884956359863 ], [ -74.810577392578125, -13.356732368469181 ], [ -74.813156127929688, -13.357377052307072 ], [ -74.813980102539062, -13.357268333435059 ], [ -74.815902709960938, -13.356219291687012 ], [ -74.816978454589787, -13.356039047241211 ], [ -74.818824768066406, -13.355300903320312 ], [ -74.821403503417969, -13.355294227600041 ], [ -74.823928833007812, -13.356109619140568 ], [ -74.825103759765568, -13.35626220703125 ], [ -74.828041076660099, -13.356291770935002 ], [ -74.830741882324105, -13.355815887451172 ], [ -74.8331298828125, -13.355989456176701 ], [ -74.833961486816349, -13.355681419372559 ], [ -74.835807800292969, -13.35406303405756 ], [ -74.836860656738281, -13.353702545166016 ], [ -74.839462280273438, -13.353839874267521 ], [ -74.841094970703125, -13.353607177734375 ], [ -74.843650817871094, -13.353618621826172 ], [ -74.848609924316406, -13.352752685546875 ], [ -74.849960327148438, -13.353033065795842 ], [ -74.854476928710881, -13.354582786560002 ], [ -74.85699462890625, -13.354159355163574 ], [ -74.858558654785099, -13.354612350463867 ], [ -74.860420227050781, -13.355770111083984 ], [ -74.86260986328125, -13.358421325683537 ], [ -74.867576599121094, -13.35978794097889 ], [ -74.868827819824219, -13.360321998596191 ], [ -74.870353698730469, -13.36157321929926 ], [ -74.876091003417969, -13.368365287780762 ], [ -74.876502990722599, -13.370002746582031 ], [ -74.878868103027287, -13.37302303314209 ], [ -74.879707336425781, -13.37452507019043 ], [ -74.880828857421875, -13.375310897827148 ], [ -74.882293701171875, -13.377020835876465 ], [ -74.88568115234375, -13.378416061401367 ], [ -74.888046264648381, -13.380100250244141 ], [ -74.893730163574219, -13.389631271362248 ], [ -74.897109985351506, -13.39277172088623 ], [ -74.897544860839844, -13.39415454864502 ], [ -74.897499084472543, -13.39639759063715 ], [ -74.896614074706974, -13.398457527160645 ], [ -74.895195007324162, -13.400665283203068 ], [ -74.894828796386605, -13.402084350585881 ], [ -74.894676208496094, -13.403601646423283 ], [ -74.893966674804631, -13.406387329101506 ], [ -74.893806457519531, -13.40925216674799 ], [ -74.893096923828068, -13.411759376525822 ], [ -74.893211364746094, -13.413820266723633 ], [ -74.89373779296875, -13.414870262145996 ], [ -74.895576477050724, -13.416495323181152 ], [ -74.896057128906193, -13.417167663574162 ], [ -74.896507263183594, -13.421968460082951 ], [ -74.896842956542969, -13.422898292541447 ], [ -74.901512145996094, -13.427205085754338 ], [ -74.903785705566349, -13.428543090820312 ], [ -74.904594421386719, -13.429423332214299 ], [ -74.904815673828068, -13.429909706115723 ], [ -74.904815673828068, -13.432524681091309 ], [ -74.905258178710938, -13.434719085693303 ], [ -74.905181884765625, -13.436429023742619 ], [ -74.904891967773438, -13.437470436096191 ], [ -74.904434204101506, -13.438236236572209 ], [ -74.90289306640625, -13.439367294311523 ], [ -74.902328491210881, -13.440389633178654 ], [ -74.902328491210881, -13.44129467010498 ], [ -74.903038024902344, -13.442234039306584 ], [ -74.903297424316349, -13.443390846252385 ], [ -74.902343749999943, -13.445118904113713 ], [ -74.902198791503906, -13.447724342346191 ], [ -74.901458740234375, -13.449357986450138 ], [ -74.900871276855469, -13.452089309692383 ], [ -74.901336669921875, -13.453816413879338 ], [ -74.903762817382756, -13.457325935363713 ], [ -74.9039306640625, -13.458124160766545 ], [ -74.903861999511662, -13.459649085998535 ], [ -74.903472900390568, -13.460463523864746 ], [ -74.903350830078125, -13.46360969543457 ], [ -74.901954650878849, -13.466937065124398 ], [ -74.901138305664062, -13.46793079376215 ], [ -74.899276733398381, -13.468537330627441 ], [ -74.896194458007812, -13.468915939330941 ], [ -74.893844604492131, -13.469664573669377 ], [ -74.890083312988281, -13.469818115234261 ], [ -74.889816284179688, -13.470080375671273 ], [ -74.88983154296875, -13.47098255157465 ], [ -74.889579772949162, -13.471443176269418 ], [ -74.886878967285099, -13.472528457641545 ], [ -74.886192321777344, -13.473269462585449 ], [ -74.885955810546818, -13.474047660827637 ], [ -74.885040283203125, -13.474634170532113 ], [ -74.88330078125, -13.474470138549805 ], [ -74.881950378417912, -13.474767684936523 ], [ -74.87750244140625, -13.475019454955941 ], [ -74.874481201171818, -13.475750923156681 ], [ -74.873657226562386, -13.475668907165527 ], [ -74.872230529785156, -13.476003646850586 ], [ -74.869720458984318, -13.478496551513558 ], [ -74.867065429687443, -13.479735374450684 ], [ -74.865837097167855, -13.480657577514648 ], [ -74.862953186035099, -13.482056617736816 ], [ -74.8616943359375, -13.483076095581055 ], [ -74.85888671875, -13.486166000366154 ], [ -74.8568115234375, -13.48912525177002 ], [ -74.85591888427723, -13.491583824157715 ], [ -74.855888366699162, -13.49462890625 ], [ -74.853668212890625, -13.496627807617188 ], [ -74.850120544433594, -13.497880935668888 ], [ -74.849159240722656, -13.498515129089355 ], [ -74.848213195800781, -13.499861717224121 ], [ -74.847923278808594, -13.502836227416935 ], [ -74.846305847167969, -13.506134033203068 ], [ -74.844558715820256, -13.507724761962891 ], [ -74.841842651367188, -13.509558677673283 ], [ -74.838745117187443, -13.512749671935978 ], [ -74.838668823242188, -13.513570785522461 ], [ -74.839118957519474, -13.51414966583252 ], [ -74.839202880859318, -13.514674186706543 ], [ -74.838737487792912, -13.516529083251896 ], [ -74.840087890624886, -13.51876258850092 ], [ -74.840171813964787, -13.519939422607422 ], [ -74.839973449706974, -13.520907402038517 ], [ -74.837867736816349, -13.522775650024357 ], [ -74.836723327636662, -13.524882316589299 ], [ -74.835662841796875, -13.526002883911076 ], [ -74.834831237792912, -13.52656364440918 ], [ -74.833534240722656, -13.526832580566349 ], [ -74.832908630371037, -13.52722263336176 ], [ -74.832145690917912, -13.529780387878304 ], [ -74.832000732421875, -13.53140926361084 ], [ -74.831634521484375, -13.532683372497559 ], [ -74.830902099609318, -13.533070564269906 ], [ -74.828842163085938, -13.534976005554199 ], [ -74.826286315917969, -13.535326957702637 ], [ -74.823371887206974, -13.536367416381836 ], [ -74.820251464843636, -13.536525726318359 ], [ -74.819747924804631, -13.536761283874512 ], [ -74.819450378417969, -13.536453247070256 ], [ -74.818351745605469, -13.536408424377328 ], [ -74.816841125488281, -13.535989761352539 ], [ -74.814842224121094, -13.536033630371094 ], [ -74.813362121581974, -13.537207603454533 ], [ -74.812202453613281, -13.537722587585449 ], [ -74.810722351074219, -13.539547920226994 ], [ -74.810379028320312, -13.540270805358773 ], [ -74.806159973144531, -13.544211387634277 ], [ -74.805351257324162, -13.544770240783635 ], [ -74.802749633789062, -13.545907020568848 ], [ -74.801567077636719, -13.546756744384709 ], [ -74.800148010253906, -13.547144889831543 ], [ -74.799629211425724, -13.547507286071721 ], [ -74.799102783203125, -13.548254966735783 ], [ -74.798820495605469, -13.549493789672795 ], [ -74.796493530273381, -13.551508903503361 ], [ -74.794158935546875, -13.555068969726506 ], [ -74.791839599609375, -13.557951927185059 ], [ -74.791160583496037, -13.560293197631836 ], [ -74.791778564453125, -13.563089370727539 ], [ -74.791038513183537, -13.565690040588265 ], [ -74.789649963378906, -13.568005561828613 ], [ -74.787445068359261, -13.570895195007324 ], [ -74.7864990234375, -13.573228836059513 ], [ -74.783920288085938, -13.576491355895939 ], [ -74.783721923828068, -13.576996803283691 ], [ -74.782066345214844, -13.578767776489201 ], [ -74.779922485351562, -13.582003593444824 ], [ -74.776962280273438, -13.588511466979924 ], [ -74.776687622070312, -13.590643882751465 ], [ -74.775733947753906, -13.593465805053597 ], [ -74.775276184082031, -13.596114158630371 ], [ -74.775077819824219, -13.598990440368596 ], [ -74.772270202636662, -13.606020927429199 ], [ -74.771827697753906, -13.607855796813908 ], [ -74.771476745605469, -13.610995292663574 ], [ -74.771522521972656, -13.614500045776367 ], [ -74.771957397460938, -13.615874290466252 ], [ -74.772605895996094, -13.616753578186035 ], [ -74.773338317871094, -13.62037277221674 ], [ -74.774856567382699, -13.622578620910645 ], [ -74.777496337890568, -13.625213623046875 ], [ -74.778221130371094, -13.627248764038086 ], [ -74.777992248535099, -13.629842758178711 ], [ -74.776008605957031, -13.63338661193842 ], [ -74.774856567382699, -13.636983871459961 ], [ -74.774856567382699, -13.638592720031738 ], [ -74.777671813964844, -13.640727996826172 ], [ -74.779716491699162, -13.642802238464355 ], [ -74.782241821289062, -13.64634895324707 ], [ -74.783134460449162, -13.648609161376896 ], [ -74.7825927734375, -13.650019645690861 ], [ -74.779808044433537, -13.653138160705453 ], [ -74.778129577636719, -13.655486106872559 ], [ -74.777877807617131, -13.657203674316349 ], [ -74.777854919433594, -13.662965774536076 ], [ -74.777633666992188, -13.664664268493652 ], [ -74.776420593261719, -13.66818904876709 ], [ -74.77471923828125, -13.669823646545353 ], [ -74.773986816406193, -13.671468734741154 ], [ -74.773933410644531, -13.672726631164551 ], [ -74.774314880371094, -13.675205230712834 ], [ -74.773399353027287, -13.680257797241211 ], [ -74.772834777831974, -13.686983108520451 ], [ -74.772216796875, -13.689531326293945 ], [ -74.772079467773381, -13.691315650939941 ], [ -74.772232055664062, -13.692843437194767 ], [ -74.773666381835938, -13.694491386413574 ], [ -74.77423095703125, -13.695620536804142 ], [ -74.774269104003849, -13.704084396362248 ], [ -74.775482177734375, -13.710841178894043 ], [ -74.775321960449162, -13.713986396789437 ], [ -74.774742126464787, -13.716344833374023 ], [ -74.77374267578125, -13.717874526977539 ], [ -74.771018981933537, -13.718873023986816 ], [ -74.768783569335938, -13.720598220825195 ], [ -74.766242980956974, -13.72161865234375 ], [ -74.764396667480469, -13.722946166992188 ], [ -74.755401611328011, -13.733462333679142 ], [ -74.754287719726562, -13.735442161560059 ], [ -74.753898620605469, -13.736817359924316 ], [ -74.754150390624943, -13.738236427307129 ], [ -74.754783630371094, -13.739708900451603 ], [ -74.758010864257812, -13.745353698730469 ], [ -74.760543823242131, -13.749110221862736 ], [ -74.760551452636605, -13.750204086303711 ], [ -74.759750366210938, -13.752580642700195 ], [ -74.759712219238281, -13.755120277404785 ], [ -74.759948730468693, -13.757435798644963 ], [ -74.76055908203125, -13.758231163024902 ], [ -74.762939453125, -13.76007080078125 ], [ -74.764160156249943, -13.761364936828556 ], [ -74.764755249023438, -13.762386322021428 ], [ -74.765861511230412, -13.768924713134766 ], [ -74.766433715820256, -13.770734786987248 ], [ -74.766532897949162, -13.772074699401799 ], [ -74.766799926757812, -13.772324562072697 ], [ -74.766799926757812, -13.772669792175236 ], [ -74.766082763671761, -13.77490329742426 ], [ -74.764350891113224, -13.777975082397404 ], [ -74.762336730956974, -13.780386924743596 ], [ -74.762321472167969, -13.781743049621582 ], [ -74.763359069824219, -13.782623291015511 ], [ -74.763351440429688, -13.783074378967285 ], [ -74.763816833496094, -13.783632278442383 ], [ -74.765357971191406, -13.784440994262695 ], [ -74.767211914062443, -13.784968376159611 ], [ -74.769149780273438, -13.784942626953125 ], [ -74.773155212402344, -13.783932685852051 ], [ -74.775985717773381, -13.783609390258732 ], [ -74.777603149414006, -13.782645225524902 ], [ -74.778450012206974, -13.783468246459961 ], [ -74.778923034667912, -13.784445762634277 ], [ -74.778732299804631, -13.791098594665527 ], [ -74.778251647949219, -13.794489860534611 ], [ -74.776336669921875, -13.800122261047363 ], [ -74.776138305664062, -13.801630973815918 ], [ -74.77508544921875, -13.80363941192627 ], [ -74.770538330078068, -13.80822563171381 ], [ -74.768829345703068, -13.810548782348633 ], [ -74.767005920410099, -13.814590454101562 ], [ -74.764251708984318, -13.822352409362736 ], [ -74.763458251953125, -13.823672294616642 ], [ -74.761611938476562, -13.825661659240609 ], [ -74.759765624999943, -13.828677177429199 ], [ -74.759239196777344, -13.830204010009709 ], [ -74.759216308593636, -13.831642150878793 ], [ -74.75970458984375, -13.837114334106388 ], [ -74.761596679687443, -13.844077110290471 ], [ -74.762290954589844, -13.851238250732422 ], [ -74.762855529785156, -13.852751731872559 ], [ -74.765419006347656, -13.857661247253418 ], [ -74.7664794921875, -13.86340427398676 ], [ -74.767395019531193, -13.866426467895508 ], [ -74.768554687499943, -13.8678102493285 ], [ -74.773963928222599, -13.871766090393066 ], [ -74.778846740722599, -13.87653732299799 ], [ -74.780006408691293, -13.877116203308105 ], [ -74.782287597656193, -13.877797126769963 ], [ -74.78326416015625, -13.878628730773926 ], [ -74.783859252929688, -13.881624221801758 ], [ -74.785957336425781, -13.887583732604924 ], [ -74.7861328125, -13.88984203338623 ], [ -74.785217285156193, -13.891789436340332 ], [ -74.783447265625, -13.894100189208928 ], [ -74.782058715820312, -13.89494800567627 ], [ -74.777633666992188, -13.896734237670785 ], [ -74.777015686035099, -13.897340774536133 ], [ -74.777084350585938, -13.898688316345215 ], [ -74.777633666992188, -13.900586128234806 ], [ -74.777679443359375, -13.905351638793945 ], [ -74.778762817382756, -13.908698081970215 ], [ -74.782455444335881, -13.915031433105469 ], [ -74.785194396972656, -13.920441627502385 ], [ -74.786811828613281, -13.922511100769043 ], [ -74.788169860839844, -13.923851966857853 ], [ -74.791511535644474, -13.926090240478516 ], [ -74.792327880859375, -13.92717456817627 ], [ -74.792633056640625, -13.928033828735352 ], [ -74.792510986328125, -13.928999900817871 ], [ -74.791572570800781, -13.930438041687012 ], [ -74.789985656738224, -13.931818962097111 ], [ -74.787155151367131, -13.933292388915959 ], [ -74.784774780273324, -13.935539245605469 ], [ -74.782554626464787, -13.939470291137695 ], [ -74.779396057128906, -13.946375846862793 ], [ -74.778152465820312, -13.949658393859863 ], [ -74.7764892578125, -13.956493377685547 ], [ -74.774833679199162, -13.961357116699219 ], [ -74.774154663085881, -13.964527130126953 ], [ -74.773056030273438, -13.967683792114144 ], [ -74.7723388671875, -13.969339370727539 ], [ -74.769943237304688, -13.973475456237793 ], [ -74.768791198730469, -13.976412773132324 ], [ -74.768508911132812, -13.977924346923771 ], [ -74.768508911132812, -13.979098320007324 ], [ -74.76898193359375, -13.980943679809457 ], [ -74.76947021484375, -13.981893539428597 ], [ -74.770545959472599, -13.982753753662109 ], [ -74.771934509277344, -13.983234405517578 ], [ -74.775627136230469, -13.983345985412598 ], [ -74.776443481445256, -13.983001708984375 ], [ -74.778648376464787, -13.981078147888184 ], [ -74.779922485351562, -13.981007575988713 ], [ -74.782325744628906, -13.982147216796875 ], [ -74.784637451171875, -13.983778953552246 ], [ -74.785530090331974, -13.984692573547363 ], [ -74.786445617675781, -13.986274719238281 ], [ -74.786529541015625, -13.988309860229492 ], [ -74.786201477050724, -13.98991870880127 ], [ -74.785758972167969, -13.990915298461914 ], [ -74.782623291015625, -13.993080139160099 ], [ -74.781425476074162, -13.994190216064453 ], [ -74.780868530273438, -13.995023727416935 ], [ -74.780471801757756, -13.997048377990723 ], [ -74.780982971191406, -13.99932670593256 ], [ -74.780792236328125, -14.000411987304631 ], [ -74.779312133789006, -14.002228736877441 ], [ -74.777267456054688, -14.003430366516113 ], [ -74.780754089355412, -14.008268356323242 ], [ -74.781326293945256, -14.010078430175668 ], [ -74.782737731933537, -14.01254940032959 ], [ -74.783889770507756, -14.016780853271484 ], [ -74.783576965332031, -14.019050598144531 ], [ -74.782546997070256, -14.020496368408203 ], [ -74.781280517578125, -14.024065017700195 ], [ -74.778381347656193, -14.029414176940804 ], [ -74.778068542480412, -14.031285285949707 ], [ -74.778022766113281, -14.033982276916504 ], [ -74.777526855468636, -14.036368370056096 ], [ -74.776618957519531, -14.038617134094125 ], [ -74.77490234375, -14.041383743286076 ], [ -74.774002075195312, -14.044492721557617 ], [ -74.773422241210881, -14.044864654540959 ], [ -74.771919250488281, -14.044599533081055 ], [ -74.770973205566406, -14.045161247253418 ], [ -74.76861572265625, -14.044416427612305 ], [ -74.767791748046818, -14.044405937194824 ], [ -74.7674560546875, -14.044687271118164 ], [ -74.767890930175724, -14.046468734741211 ], [ -74.767395019531193, -14.055092811584416 ], [ -74.767082214355469, -14.057497978210449 ], [ -74.765472412109375, -14.064052581786996 ], [ -74.765525817871094, -14.065543174743596 ], [ -74.766059875488224, -14.067768096923771 ], [ -74.765693664550724, -14.071664810180664 ], [ -74.764648437499943, -14.073716163635254 ], [ -74.763572692871037, -14.075118064880371 ], [ -74.762260437011662, -14.076121330261174 ], [ -74.759735107421875, -14.077174186706486 ], [ -74.758720397949162, -14.07842922210682 ], [ -74.759033203125, -14.079613685607853 ], [ -74.759841918945312, -14.080728530883789 ], [ -74.7630615234375, -14.084267616271916 ], [ -74.765335083007812, -14.08641338348383 ], [ -74.770301818847656, -14.089627265930119 ], [ -74.771560668945312, -14.090152740478459 ], [ -74.772537231445256, -14.090152740478459 ], [ -74.772964477539062, -14.089619636535588 ], [ -74.773574829101562, -14.089303016662598 ], [ -74.775192260742188, -14.088970184326172 ], [ -74.77657318115223, -14.089109420776367 ], [ -74.779022216796818, -14.090023040771484 ], [ -74.780105590820312, -14.090006828308105 ], [ -74.781227111816349, -14.089463233947754 ], [ -74.784622192382812, -14.087144851684513 ], [ -74.787574768066406, -14.086044311523438 ], [ -74.788558959960881, -14.086134910583439 ], [ -74.789421081542912, -14.086543083190918 ], [ -74.790145874023438, -14.087195396423283 ], [ -74.791320800781193, -14.088876724243107 ], [ -74.792068481445312, -14.089184761047363 ], [ -74.794456481933594, -14.088644027709961 ], [ -74.798995971679688, -14.086516380310002 ], [ -74.800926208496094, -14.086841583251896 ], [ -74.806472778320312, -14.08891773223877 ], [ -74.808860778808594, -14.087111473083382 ], [ -74.810073852539062, -14.086823463439941 ], [ -74.815292358398324, -14.08925819396967 ], [ -74.816734313964844, -14.090055465698242 ], [ -74.817626953125, -14.09090518951416 ], [ -74.819145202636719, -14.091566085815316 ], [ -74.822006225585938, -14.091956138610783 ], [ -74.822723388671818, -14.092321395873967 ], [ -74.825202941894474, -14.092116355895996 ], [ -74.826950073242188, -14.09132003784174 ], [ -74.82830810546875, -14.089982032775822 ], [ -74.830970764160156, -14.084350585937443 ], [ -74.833091735839787, -14.081540107727051 ], [ -74.836021423339844, -14.078296661376953 ], [ -74.838645935058537, -14.076581001281738 ], [ -74.840454101562443, -14.07469367980957 ], [ -74.841384887695312, -14.073237419128418 ], [ -74.841484069824162, -14.071600914001465 ], [ -74.841766357421875, -14.071141242980957 ], [ -74.842163085937443, -14.071067810058594 ], [ -74.843025207519474, -14.072307586669922 ], [ -74.843666076660156, -14.072794914245549 ], [ -74.846710205078125, -14.074416160583439 ], [ -74.848449707031193, -14.074777603149357 ], [ -74.851364135742188, -14.076010704040471 ], [ -74.852752685546818, -14.07603931427002 ], [ -74.855613708496037, -14.07506275177002 ], [ -74.857101440429688, -14.074069023132324 ], [ -74.857902526855412, -14.072225570678711 ], [ -74.858741760253906, -14.068816184997559 ], [ -74.859802246093693, -14.067309379577637 ], [ -74.860794067382812, -14.06702709197998 ], [ -74.862709045410156, -14.068385124206486 ], [ -74.866973876953068, -14.072320938110352 ], [ -74.869384765625, -14.073886871337891 ], [ -74.871444702148381, -14.074639320373478 ], [ -74.876121520996037, -14.075201988220215 ], [ -74.877365112304631, -14.075579643249512 ], [ -74.878120422363224, -14.076088905334416 ], [ -74.878692626953068, -14.077436447143498 ], [ -74.878890991210881, -14.079742431640625 ], [ -74.880241394042969, -14.081290245056039 ], [ -74.882377624511719, -14.08223819732666 ], [ -74.883377075195256, -14.082935333251839 ], [ -74.88568115234375, -14.085459709167424 ], [ -74.887130737304688, -14.087764739990178 ], [ -74.888847351074219, -14.091293334960881 ], [ -74.892860412597656, -14.097759246826172 ], [ -74.895362854003906, -14.103012084960938 ], [ -74.896209716796875, -14.103736877441406 ], [ -74.897605895996094, -14.103630065917855 ], [ -74.899604797363281, -14.10193920135498 ], [ -74.900199890136719, -14.100621223449707 ], [ -74.901008605956974, -14.097031593322754 ], [ -74.901893615722656, -14.095982551574707 ], [ -74.904838562011662, -14.094256401061955 ], [ -74.907058715820312, -14.092423439025879 ], [ -74.90789794921875, -14.091987609863224 ], [ -74.910110473632812, -14.091835021972656 ], [ -74.911468505859375, -14.092097282409668 ], [ -74.914695739746094, -14.094160079956055 ], [ -74.917999267578068, -14.094958305358887 ], [ -74.919601440429631, -14.096014976501465 ], [ -74.922164916992131, -14.098477363586369 ], [ -74.924201965331918, -14.099308967590332 ], [ -74.925155639648324, -14.09925365447998 ], [ -74.926483154296818, -14.098530769348145 ], [ -74.929840087890625, -14.095514297485352 ], [ -74.932624816894531, -14.092159271240178 ], [ -74.933509826660156, -14.091716766357422 ], [ -74.936256408691406, -14.091716766357422 ], [ -74.938713073730469, -14.092097282409668 ], [ -74.940414428710824, -14.093002319335938 ], [ -74.942359924316406, -14.094522476196175 ], [ -74.943603515625, -14.094757080078068 ], [ -74.944412231445256, -14.094285011291447 ], [ -74.945106506347656, -14.093392372131348 ], [ -74.945899963378906, -14.090101242065373 ], [ -74.948921203613281, -14.087107658386117 ], [ -74.950637817382812, -14.086223602294922 ], [ -74.95172119140625, -14.086005210876465 ], [ -74.953376770019474, -14.085923194885254 ], [ -74.956077575683594, -14.086377143859806 ], [ -74.957954406738224, -14.085970878601074 ], [ -74.960670471191406, -14.083883285522461 ], [ -74.962966918945312, -14.082960128784123 ], [ -74.964454650878906, -14.081018447875977 ], [ -74.970809936523381, -14.077456474304142 ], [ -74.972366333007812, -14.076343536376896 ], [ -74.974136352539062, -14.074625015258789 ], [ -74.975112915039006, -14.074118614196721 ], [ -74.977310180664006, -14.073857307434082 ], [ -74.982704162597656, -14.074880599975472 ], [ -74.983787536621037, -14.074625015258789 ], [ -74.985649108886719, -14.073722839355469 ], [ -74.986473083496037, -14.073588371276855 ], [ -74.987136840820256, -14.073749542236271 ], [ -74.988464355468693, -14.074734687805119 ], [ -74.989013671875, -14.074816703796387 ], [ -74.991615295410099, -14.073570251464787 ], [ -74.993492126464844, -14.073107719421387 ], [ -74.996276855468693, -14.071933746337834 ], [ -75.001457214355469, -14.071904182434082 ], [ -75.004013061523381, -14.071138381957951 ], [ -75.005538940429631, -14.071075439453068 ], [ -75.009712219238224, -14.069690704345703 ], [ -75.014503479003849, -14.068984985351506 ], [ -75.015716552734375, -14.069185256958008 ], [ -75.016929626464844, -14.07007884979248 ], [ -75.019485473632812, -14.071108818054199 ], [ -75.022354125976562, -14.071443557739144 ], [ -75.024131774902287, -14.072166442871094 ], [ -75.024826049804688, -14.072120666503906 ], [ -75.025863647460824, -14.071426391601562 ], [ -75.026512145996037, -14.071254730224609 ], [ -75.027763366699162, -14.071333885192871 ], [ -75.028450012207031, -14.071795463562012 ], [ -75.0299072265625, -14.074418067932129 ], [ -75.030372619628906, -14.075918197631779 ], [ -75.030059814453011, -14.079137802123967 ], [ -75.029533386230469, -14.080085754394531 ], [ -75.029495239257812, -14.080882072448674 ], [ -75.030418395996037, -14.082681655883732 ], [ -75.031600952148438, -14.086387634277344 ], [ -75.033561706542912, -14.090068817138615 ], [ -75.034240722656193, -14.09266471862793 ], [ -75.035331726074219, -14.093665122985783 ], [ -75.035423278808594, -14.095539093017578 ], [ -75.0360107421875, -14.09673976898182 ], [ -75.035774230956974, -14.097528457641602 ], [ -75.035896301269531, -14.098031997680607 ], [ -75.036727905273381, -14.09893703460682 ], [ -75.039955139160099, -14.099643707275391 ], [ -75.043174743652344, -14.101134300231934 ], [ -75.045364379882812, -14.104379653930664 ], [ -75.046173095703068, -14.107046127319336 ], [ -75.048171997070256, -14.108277320861816 ], [ -75.048439025878849, -14.109443664550724 ], [ -75.048873901367188, -14.110138893127328 ], [ -75.050529479980412, -14.110799789428654 ], [ -75.050857543945312, -14.112090110778752 ], [ -75.051506042480412, -14.112966537475586 ], [ -75.053665161132812, -14.113807678222599 ], [ -75.054191589355469, -14.114244461059513 ], [ -75.054542541503849, -14.116358757018986 ], [ -75.054168701171818, -14.116873741149902 ], [ -75.054061889648381, -14.119025230407658 ], [ -75.054275512695256, -14.119802474975586 ], [ -75.054847717285099, -14.120560646057129 ], [ -75.054962158203125, -14.121232032775879 ], [ -75.054832458496037, -14.121883392333984 ], [ -75.054168701171818, -14.122577667236271 ], [ -75.054107666015625, -14.123111724853516 ], [ -75.054985046386719, -14.125372886657715 ], [ -75.055068969726562, -14.127387046813965 ], [ -75.056343078613281, -14.128382682800236 ], [ -75.056625366210938, -14.129123687744141 ], [ -75.057098388671875, -14.129641532897836 ], [ -75.059501647949162, -14.130092620849609 ], [ -75.059318542480412, -14.128762245178223 ], [ -75.057373046875, -14.124892234802246 ], [ -75.057113647460881, -14.123310089111328 ], [ -75.057632446289062, -14.121240615844727 ], [ -75.059471130371094, -14.116581916809082 ], [ -75.060813903808594, -14.10986328125 ], [ -75.062202453613281, -14.105932235717717 ], [ -75.062171936035099, -14.104069709777832 ], [ -75.061630249023438, -14.101717948913574 ], [ -75.061775207519531, -14.098364830016976 ], [ -75.062385559081974, -14.094394683837891 ], [ -75.062294006347543, -14.091726303100529 ], [ -75.0631103515625, -14.089303016662598 ], [ -75.06451416015625, -14.087320327758789 ], [ -75.065528869628849, -14.085406303405762 ], [ -75.066474914550724, -14.084247589111271 ], [ -75.067367553710938, -14.083622932434025 ], [ -75.070198059081974, -14.082538604736271 ], [ -75.072952270507756, -14.080510139465332 ], [ -75.074020385742131, -14.080711364746037 ], [ -75.076255798339844, -14.082074165344181 ], [ -75.078872680664006, -14.085157394409123 ], [ -75.080642700195312, -14.085472106933594 ], [ -75.082397460937443, -14.086485862731934 ], [ -75.082954406738224, -14.08644962310791 ], [ -75.085289001464844, -14.08726978302002 ], [ -75.085845947265568, -14.087261199951172 ], [ -75.086563110351562, -14.086627006530705 ], [ -75.087844848632756, -14.084095001220703 ], [ -75.092483520507812, -14.073316574096623 ], [ -75.093879699707031, -14.070964813232422 ], [ -75.094879150390568, -14.067205429077148 ], [ -75.095718383789062, -14.06536769866932 ], [ -75.097213745117188, -14.062945365905705 ], [ -75.098968505859375, -14.057852745056152 ], [ -75.102851867675781, -14.050736427307129 ], [ -75.105010986328068, -14.045789718627816 ], [ -75.106590270996094, -14.041211128234863 ], [ -75.107734680175781, -14.039530754089355 ], [ -75.108375549316406, -14.03719520568842 ], [ -75.108802795410099, -14.033733367919922 ], [ -75.10906982421875, -14.033108711242676 ], [ -75.109512329101562, -14.032792091369572 ], [ -75.116790771484375, -14.03677845001215 ], [ -75.120002746582031, -14.039198875427189 ], [ -75.122856140136719, -14.042713165283203 ], [ -75.127639770507812, -14.050523757934513 ], [ -75.164978027343693, -14.073909759521484 ], [ -75.16656494140625, -14.072617530822754 ], [ -75.169639587402344, -14.069331169128418 ], [ -75.177238464355469, -14.059608459472656 ], [ -75.17926025390625, -14.057653427124023 ], [ -75.181831359863281, -14.055861473083496 ], [ -75.18658447265625, -14.053949356079102 ], [ -75.191627502441406, -14.052778244018555 ], [ -75.209678649902344, -14.050476074218693 ], [ -75.210296630859318, -14.050594329833928 ], [ -75.211051940917912, -14.050248146057015 ], [ -75.220016479492131, -14.048613548278809 ], [ -75.231040954589844, -14.046786308288574 ], [ -75.248741149902344, -14.043105125427246 ], [ -75.259872436523381, -14.041170120239258 ], [ -75.261787414550724, -14.040596008300668 ], [ -75.260841369628849, -14.038482666015568 ], [ -75.258491516113281, -14.036586761474496 ], [ -75.256271362304574, -14.03383827209467 ], [ -75.253265380859375, -14.031924247741699 ], [ -75.251045227050781, -14.030083656311035 ], [ -75.247451782226562, -14.023748397827092 ], [ -75.240837097167969, -14.019099235534611 ], [ -75.239822387695312, -14.018007278442326 ], [ -75.237930297851506, -14.015178680419922 ], [ -75.23712158203125, -14.012338638305664 ], [ -75.236038208007756, -14.010306358337346 ], [ -75.235610961914062, -14.008209228515625 ], [ -75.233535766601562, -14.005698204040527 ], [ -75.233360290527287, -14.005029678344727 ], [ -75.233863830566406, -14.004396438598576 ], [ -75.235008239746094, -14.003896713256779 ], [ -75.235832214355412, -14.003867149353027 ], [ -75.23828125, -14.00438022613514 ], [ -75.239341735839844, -14.004227638244629 ], [ -75.240089416503906, -14.003602981567326 ], [ -75.240837097167969, -14.001522064208984 ], [ -75.241531372070312, -14.000962257385254 ], [ -75.242904663085881, -14.000787734985352 ], [ -75.243644714355469, -14.000270843505859 ], [ -75.244575500488281, -13.999997138977051 ], [ -75.247474670410099, -14.000024795532227 ], [ -75.249023437499886, -13.998321533203068 ], [ -75.249847412109318, -13.998321533203068 ], [ -75.251281738281193, -13.997514724731388 ], [ -75.252120971679688, -13.997558593749943 ], [ -75.253250122070312, -13.998064994812012 ], [ -75.254150390624943, -13.999753952026367 ], [ -75.255592346191349, -14.001182556152287 ], [ -75.256942749023438, -14.001477241516113 ], [ -75.259613037109375, -14.001223564147949 ], [ -75.260559082031193, -14.001575469970646 ], [ -75.262954711914062, -14.004508018493596 ], [ -75.265457153320312, -14.006512641906738 ], [ -75.267036437988224, -14.007010459899902 ], [ -75.268600463867188, -14.007885932922306 ], [ -75.270736694335881, -14.01048755645752 ], [ -75.272071838378849, -14.010004997253418 ], [ -75.2745361328125, -14.010146141052132 ], [ -75.275131225585881, -14.009814262390137 ], [ -75.276435852050781, -14.00841045379633 ], [ -75.277664184570312, -14.008138656616211 ], [ -75.283309936523438, -14.010300636291504 ], [ -75.288482666015568, -14.011794090270996 ], [ -75.292480468749943, -14.011872291564941 ], [ -75.297988891601562, -14.013132095336914 ], [ -75.299217224121094, -14.013056755065918 ], [ -75.30303955078125, -14.014309883117676 ], [ -75.313476562499943, -14.015473365783691 ], [ -75.314750671386719, -14.015975952148381 ], [ -75.316566467285156, -14.017439842224121 ], [ -75.318679809570312, -14.018025398254395 ], [ -75.322685241699219, -14.018389701843262 ], [ -75.325874328613224, -14.017517089843636 ], [ -75.327674865722599, -14.018092155456543 ], [ -75.329147338867188, -14.017620086669922 ], [ -75.331169128417969, -14.016462326049805 ], [ -75.334991455078125, -14.013778686523381 ], [ -75.336662292480412, -14.012167930603027 ], [ -75.342308044433594, -14.009321212768555 ], [ -75.343544006347656, -14.007844924926758 ], [ -75.345985412597599, -14.006303787231388 ], [ -75.348609924316406, -14.004085540771484 ], [ -75.349937438964844, -14.001905441284123 ], [ -75.350769042968693, -13.99981498718256 ], [ -75.3551025390625, -13.995676040649414 ], [ -75.355049133300724, -13.994844436645451 ], [ -75.353988647460881, -13.992937088012638 ], [ -75.353836059570312, -13.992007255554142 ], [ -75.354011535644474, -13.990595817565804 ], [ -75.354576110839787, -13.989067077636662 ], [ -75.355232238769474, -13.988225936889648 ], [ -75.356636047363281, -13.985295295715275 ], [ -75.358322143554688, -13.983528137206974 ], [ -75.359024047851562, -13.980914115905762 ], [ -75.359718322753849, -13.979592323303223 ], [ -75.359870910644531, -13.977973937988281 ], [ -75.359504699707031, -13.976827621459904 ], [ -75.359413146972656, -13.97358226776123 ], [ -75.359695434570312, -13.972394943237305 ], [ -75.360343933105469, -13.971200942993107 ], [ -75.362991333007812, -13.96905612945551 ], [ -75.365348815917912, -13.968317031860295 ], [ -75.367248535156193, -13.967223167419377 ], [ -75.372329711914006, -13.966029167175293 ], [ -75.377258300781193, -13.964322090148812 ], [ -75.379287719726506, -13.963956832885685 ], [ -75.381362915039006, -13.96291446685791 ], [ -75.383255004882812, -13.960778236389103 ], [ -75.385711669921875, -13.956559181213379 ], [ -75.388824462890568, -13.952279090881291 ], [ -75.390815734863224, -13.948883056640625 ], [ -75.392349243164006, -13.946939468383789 ], [ -75.395866394042912, -13.944537162780648 ], [ -75.400672912597656, -13.944655418395996 ], [ -75.402816772460881, -13.944135665893555 ], [ -75.404243469238281, -13.943338394164982 ], [ -75.407440185546875, -13.939986228942871 ], [ -75.408943176269474, -13.936820030212402 ], [ -75.411857604980469, -13.935276985168457 ], [ -75.413291931152344, -13.934027671813908 ], [ -75.414184570312443, -13.931900978088265 ], [ -75.415092468261719, -13.927803993225098 ], [ -75.416183471679631, -13.92625617980957 ], [ -75.418624877929688, -13.924290657043457 ], [ -75.423561096191406, -13.922246932983398 ], [ -75.427246093749943, -13.91861629486084 ], [ -75.431205749511719, -13.916174888610783 ], [ -75.4332275390625, -13.913803100585938 ], [ -75.434547424316406, -13.913376808166447 ], [ -75.440322875976506, -13.913076400756836 ], [ -75.443412780761719, -13.912409782409668 ], [ -75.444282531738281, -13.912038803100586 ], [ -75.445060729980469, -13.91127777099598 ], [ -75.445747375488224, -13.910099029540959 ], [ -75.44580078125, -13.909169197082463 ], [ -75.446189880371094, -13.908761024475098 ], [ -75.448379516601562, -13.908650398254395 ], [ -75.449592590332031, -13.907345771789551 ], [ -75.450325012206974, -13.906974792480412 ], [ -75.453208923339844, -13.906850814819336 ], [ -75.454399108886719, -13.907237052917424 ], [ -75.457656860351506, -13.905830383300724 ], [ -75.458602905273438, -13.906118392944336 ], [ -75.460060119628849, -13.907922744750977 ], [ -75.460426330566349, -13.90809440612793 ], [ -75.461120605468636, -13.908012390136662 ], [ -75.463226318359375, -13.906506538391056 ], [ -75.464286804199219, -13.906261444091797 ], [ -75.465599060058537, -13.907271385192871 ], [ -75.465728759765625, -13.909285545349121 ], [ -75.466171264648381, -13.909836769103947 ], [ -75.470420837402344, -13.91004467010498 ], [ -75.475013732910099, -13.911907196044865 ], [ -75.476127624511719, -13.912005424499455 ], [ -75.477210998535099, -13.911197662353516 ], [ -75.477874755859318, -13.909152984619084 ], [ -75.478866577148438, -13.909206390380859 ], [ -75.480628967285156, -13.909953117370605 ], [ -75.482391357421875, -13.909625053405705 ], [ -75.492416381835938, -13.903444290161133 ], [ -75.495643615722543, -13.901142120361271 ], [ -75.496818542480469, -13.900003433227539 ], [ -75.497917175292912, -13.899927139282227 ], [ -75.499198913574219, -13.900448799133301 ], [ -75.501983642578125, -13.900877952575684 ], [ -75.502632141113281, -13.897729873657227 ], [ -75.503517150878906, -13.896174430847111 ], [ -75.504348754882812, -13.895817756652775 ], [ -75.506874084472599, -13.895532608032227 ], [ -75.50787353515625, -13.895171165466309 ], [ -75.511154174804631, -13.891194343566895 ], [ -75.513320922851562, -13.890384674072209 ], [ -75.516418457031193, -13.887519836425724 ], [ -75.518226623535099, -13.886296272277775 ], [ -75.520187377929688, -13.885243415832463 ], [ -75.521850585937443, -13.884650230407715 ], [ -75.524848937988281, -13.884273529052678 ], [ -75.528312683105469, -13.884527206420785 ], [ -75.531913757324219, -13.885443687438965 ], [ -75.537506103515568, -13.887429237365666 ], [ -75.538337707519474, -13.88743782043457 ], [ -75.539451599121094, -13.88689994812006 ], [ -75.539993286132812, -13.886862754821777 ], [ -75.541267395019531, -13.88764667510975 ], [ -75.542831420898381, -13.888169288635254 ], [ -75.546264648437443, -13.888531684875488 ], [ -75.547515869140568, -13.888210296630859 ], [ -75.548439025878906, -13.887224197387695 ], [ -75.549591064453068, -13.88493537902832 ], [ -75.550285339355412, -13.88059139251709 ], [ -75.551208496093693, -13.879966735839787 ], [ -75.554618835449219, -13.878902435302734 ], [ -75.556312561035156, -13.877524375915527 ], [ -75.557258605957031, -13.876373291015511 ], [ -75.560073852539062, -13.870804786682129 ], [ -75.560142517089844, -13.868899345397892 ], [ -75.559219360351506, -13.865508079528809 ], [ -75.5592041015625, -13.863874435424805 ], [ -75.562774658203068, -13.859107971191293 ], [ -75.563743591308594, -13.856448173522949 ], [ -75.565681457519531, -13.854716300964355 ], [ -75.566162109375, -13.853893280029297 ], [ -75.565986633300781, -13.851741790771428 ], [ -75.564994812011719, -13.849094390869027 ], [ -75.564811706542969, -13.84343433380127 ], [ -75.563674926757812, -13.841366767883244 ], [ -75.561897277831974, -13.840305328369084 ], [ -75.56072998046875, -13.839880943298283 ], [ -75.553993225097599, -13.839726448059082 ], [ -75.552589416503906, -13.83884239196766 ], [ -75.551727294921875, -13.836891174316293 ], [ -75.551216125488224, -13.836394309997559 ], [ -75.548561096191349, -13.836446762084904 ], [ -75.546669006347656, -13.835627555847054 ], [ -75.544471740722543, -13.835426330566349 ], [ -75.543190002441406, -13.834892272949219 ], [ -75.542495727539062, -13.834254264831486 ], [ -75.540916442871037, -13.83203220367426 ], [ -75.53680419921875, -13.829590797424316 ], [ -75.536376953125, -13.828435897827092 ], [ -75.535713195800781, -13.824440002441406 ], [ -75.534980773925781, -13.822995185852051 ], [ -75.533119201660099, -13.822121620178166 ], [ -75.532257080078068, -13.821247100829964 ], [ -75.531654357910156, -13.820939064025879 ], [ -75.528480529785156, -13.820515632629395 ], [ -75.527496337890511, -13.820118904113713 ], [ -75.525558471679631, -13.818349838256836 ], [ -75.524879455566406, -13.816878318786621 ], [ -75.525642395019531, -13.806270599365178 ], [ -75.526931762695312, -13.802143096923771 ], [ -75.527412414550781, -13.798653602600041 ], [ -75.527931213378906, -13.797151565551701 ], [ -75.528961181640625, -13.795829772949219 ], [ -75.530181884765625, -13.795002937316895 ], [ -75.532318115234375, -13.794376373291016 ], [ -75.534523010253849, -13.794217109680176 ], [ -75.535614013671875, -13.793663024902287 ], [ -75.539344787597656, -13.790262222290039 ], [ -75.540069580078068, -13.789104461669865 ], [ -75.540626525878849, -13.787315368652344 ], [ -75.541107177734318, -13.783107757568359 ], [ -75.540985107421875, -13.781905174255314 ], [ -75.540351867675724, -13.780931472778263 ], [ -75.538215637207031, -13.778937339782715 ], [ -75.537528991699219, -13.777626991271973 ], [ -75.537452697753906, -13.776959419250488 ], [ -75.537788391113224, -13.775239944458008 ], [ -75.538978576660156, -13.773239135742188 ], [ -75.539176940917969, -13.771664619445744 ], [ -75.538894653320312, -13.769640922546387 ], [ -75.537925720214844, -13.767545700073242 ], [ -75.538398742675781, -13.764352798461857 ], [ -75.537940979003906, -13.764036178588867 ], [ -75.538017272949219, -13.762581825256348 ], [ -75.538742065429631, -13.761754989623967 ], [ -75.539001464843693, -13.76057243347168 ], [ -75.540199279785156, -13.759446144103947 ], [ -75.544372558593693, -13.758108139038086 ], [ -75.549400329589787, -13.755594253540039 ], [ -75.550445556640568, -13.754523277282715 ], [ -75.552368164062443, -13.751409530639648 ], [ -75.555732727050781, -13.748841285705566 ], [ -75.550819396972656, -13.747099876403752 ], [ -75.547355651855469, -13.744007110595703 ], [ -75.546363830566349, -13.743510246276855 ], [ -75.543594360351506, -13.743391990661564 ], [ -75.541679382324162, -13.743557929992676 ], [ -75.539131164550668, -13.744894027709904 ], [ -75.5372314453125, -13.745203971862736 ], [ -75.535858154296818, -13.745125770568848 ], [ -75.533699035644531, -13.744606971740723 ], [ -75.532569885253906, -13.74413013458252 ], [ -75.531852722167912, -13.743472099304142 ], [ -75.529266357421875, -13.739499092102051 ], [ -75.528060913085881, -13.736914634704533 ], [ -75.527740478515625, -13.734646797180119 ], [ -75.527732849121094, -13.729393005371037 ], [ -75.527053833007812, -13.727622032165527 ], [ -75.525566101074162, -13.725028991699219 ], [ -75.525627136230469, -13.722716331481934 ], [ -75.524421691894474, -13.721343040466252 ], [ -75.519699096679688, -13.717856407165527 ], [ -75.518844604492188, -13.716464042663574 ], [ -75.518173217773438, -13.714701652526742 ], [ -75.518096923828125, -13.711465835571289 ], [ -75.51662445068348, -13.709868431091309 ], [ -75.515754699706974, -13.708342552185059 ], [ -75.515861511230355, -13.707527160644531 ], [ -75.517127990722656, -13.705473899841309 ], [ -75.5164794921875, -13.703983306884766 ], [ -75.515510559082031, -13.700177192687988 ], [ -75.515869140625, -13.697799682617188 ], [ -75.515655517578068, -13.696225166320744 ], [ -75.514686584472599, -13.69543361663807 ], [ -75.51348876953125, -13.693779945373535 ], [ -75.512138366699162, -13.693114280700627 ], [ -75.51141357421875, -13.692482948303223 ], [ -75.510223388671818, -13.690208435058537 ], [ -75.508308410644474, -13.688276290893555 ], [ -75.507820129394474, -13.686304092407227 ], [ -75.507347106933537, -13.685428619384709 ], [ -75.506744384765625, -13.68533992767334 ], [ -75.505767822265625, -13.685604095458928 ], [ -75.502731323242188, -13.686894416809025 ], [ -75.501602172851562, -13.686408996582031 ], [ -75.500144958496094, -13.685100555419922 ], [ -75.499534606933537, -13.684061050414925 ], [ -75.499122619628906, -13.68248176574707 ], [ -75.49908447265625, -13.680193901062012 ], [ -75.497657775878906, -13.6781969070434 ], [ -75.496574401855412, -13.674295425415039 ], [ -75.495674133300781, -13.673282623291016 ], [ -75.494911193847656, -13.672986984252873 ], [ -75.492996215820312, -13.673233032226506 ], [ -75.491294860839844, -13.674123764038029 ], [ -75.489135742187443, -13.675900459289494 ], [ -75.488464355468693, -13.676009178161621 ], [ -75.488098144531193, -13.675459861755371 ], [ -75.488334655761719, -13.672816276550236 ], [ -75.488121032714844, -13.671895027160588 ], [ -75.486503601074219, -13.668581008911076 ], [ -75.486091613769474, -13.667190551757812 ], [ -75.486183166503849, -13.663525581359806 ], [ -75.485733032226562, -13.659359931945801 ], [ -75.484619140625, -13.655729293823185 ], [ -75.484413146972656, -13.653721809387207 ], [ -75.484733581542969, -13.651576995849553 ], [ -75.486526489257812, -13.64951229095459 ], [ -75.487937927246094, -13.647005081176758 ], [ -75.48822021484375, -13.645975112914982 ], [ -75.488082885742131, -13.643766403198242 ], [ -75.488265991210881, -13.64287281036377 ], [ -75.489814758300724, -13.640941619873047 ], [ -75.491706848144474, -13.636564254760685 ], [ -75.493782043457031, -13.633683204650765 ], [ -75.498008728027287, -13.630057334899902 ], [ -75.500839233398438, -13.628371238708439 ], [ -75.503494262695312, -13.626206398010254 ], [ -75.504737854003906, -13.624439239501953 ], [ -75.506340026855469, -13.622773170471191 ], [ -75.50787353515625, -13.621431350708008 ], [ -75.509445190429631, -13.620594024658089 ], [ -75.512100219726562, -13.618060111999455 ], [ -75.515754699706974, -13.614044189453125 ], [ -75.517410278320312, -13.610939979553223 ], [ -75.518127441406193, -13.609057426452637 ], [ -75.519081115722599, -13.604443550109863 ], [ -75.518898010253849, -13.60190486907959 ], [ -75.5177001953125, -13.599338531494141 ], [ -75.516319274902287, -13.597160339355469 ], [ -75.512069702148438, -13.592780113220215 ], [ -75.510208129882756, -13.588729858398381 ], [ -75.509391784667969, -13.578767776489201 ], [ -75.5089111328125, -13.576670646667424 ], [ -75.50872802734375, -13.571969032287541 ], [ -75.508346557617188, -13.569691658019906 ], [ -75.507698059082031, -13.567522048950082 ], [ -75.505470275878906, -13.566426277160588 ], [ -75.501670837402344, -13.565880775451546 ], [ -75.500190734863224, -13.566426277160588 ], [ -75.497711181640568, -13.566574096679688 ], [ -75.496803283691406, -13.567173957824707 ], [ -75.496238708496094, -13.567120552062875 ], [ -75.495803833007756, -13.566823005676213 ], [ -75.478797912597656, -13.528572082519531 ], [ -75.477493286132756, -13.525167465209904 ], [ -75.478729248046818, -13.525064468383732 ], [ -75.484870910644531, -13.525769233703613 ], [ -75.486930847167912, -13.524969100952092 ], [ -75.489204406738281, -13.523436546325684 ], [ -75.493293762207031, -13.523879051208496 ], [ -75.494522094726562, -13.523434638976994 ], [ -75.494781494140568, -13.522953987121525 ], [ -75.493858337402344, -13.521529197692871 ], [ -75.491622924804631, -13.520212173461857 ], [ -75.490257263183594, -13.518885612487736 ], [ -75.489707946777287, -13.518806457519474 ], [ -75.488739013671875, -13.519259452819767 ], [ -75.487770080566406, -13.518753051757812 ], [ -75.486244201660156, -13.516839027404728 ], [ -75.485389709472656, -13.514717102050724 ], [ -75.483695983886662, -13.512948036193734 ], [ -75.483528137206974, -13.51148509979248 ], [ -75.484504699707031, -13.50999927520752 ], [ -75.484672546386662, -13.509374618530273 ], [ -75.484634399414062, -13.50666332244873 ], [ -75.485038757324162, -13.505550384521428 ], [ -75.484794616699219, -13.50435829162592 ], [ -75.484390258788949, -13.50365161895752 ], [ -75.483512878417912, -13.502965927124023 ], [ -75.482635498046875, -13.500302314758301 ], [ -75.481170654296875, -13.497528076171875 ], [ -75.478118896484375, -13.494622230529728 ], [ -75.476394653320312, -13.492375373840332 ], [ -75.476165771484318, -13.490893363952637 ], [ -75.476898193359375, -13.48871898651123 ], [ -75.476692199707031, -13.487762451171875 ], [ -75.476058959960881, -13.48732852935791 ], [ -75.4737548828125, -13.486746788024846 ], [ -75.472366333007756, -13.485891342162972 ], [ -75.470672607421875, -13.484292984008789 ], [ -75.469718933105469, -13.482351303100529 ], [ -75.469490051269474, -13.480613708496094 ], [ -75.470939636230412, -13.479021072387582 ], [ -75.471290588378849, -13.477636337280273 ], [ -75.470962524414062, -13.477031707763615 ], [ -75.46917724609375, -13.476138114929199 ], [ -75.468841552734318, -13.475270271301213 ], [ -75.469413757324162, -13.473760604858342 ], [ -75.47003173828125, -13.47303581237793 ], [ -75.469970703124943, -13.471408843994084 ], [ -75.470153808593693, -13.47077465057373 ], [ -75.472396850585938, -13.466602325439453 ], [ -75.472869873046875, -13.464078903198242 ], [ -75.472854614257812, -13.461113929748535 ], [ -75.471954345703125, -13.457036972045898 ], [ -75.472099304199219, -13.452725410461426 ], [ -75.470710754394531, -13.45135307312006 ], [ -75.470542907714787, -13.450899124145508 ], [ -75.471046447753906, -13.448223114013672 ], [ -75.470138549804688, -13.446561813354435 ], [ -75.469970703124943, -13.445096015930176 ], [ -75.470489501953125, -13.442030906677189 ], [ -75.468627929687443, -13.437973976135197 ], [ -75.468421936035156, -13.436627388000431 ], [ -75.465797424316406, -13.434064865112305 ], [ -75.465599060058537, -13.432191848754826 ], [ -75.470558166503849, -13.428251266479435 ], [ -75.474761962890625, -13.426216125488224 ], [ -75.476394653320312, -13.425030708312988 ], [ -75.480468749999943, -13.420809745788574 ], [ -75.482528686523438, -13.418120384216309 ], [ -75.486053466796875, -13.41468620300293 ], [ -75.486526489257812, -13.413455009460449 ], [ -75.486183166503849, -13.411031723022461 ], [ -75.486915588378906, -13.40928745269764 ], [ -75.486549377441349, -13.407867431640625 ], [ -75.486862182617131, -13.407251358032227 ], [ -75.488258361816406, -13.405782699584847 ], [ -75.488662719726506, -13.402156829833984 ], [ -75.489959716796875, -13.398601531982422 ], [ -75.491073608398438, -13.396963119506836 ], [ -75.493087768554688, -13.394923210143986 ], [ -75.495552062988281, -13.39299297332758 ], [ -75.498062133789062, -13.391605377197209 ], [ -75.498893737792969, -13.390707015991154 ], [ -75.498939514160156, -13.388689994812012 ], [ -75.494621276855469, -13.381928443908691 ], [ -75.493682861328125, -13.379651069641113 ], [ -75.493507385253906, -13.37805080413807 ], [ -75.493980407714844, -13.376494407653752 ], [ -75.495719909667912, -13.374752998351994 ], [ -75.496910095214844, -13.372772216796875 ], [ -75.497116088867188, -13.370628356933537 ], [ -75.496658325195256, -13.367988586425781 ], [ -75.498992919921875, -13.359837532043457 ], [ -75.499290466308594, -13.356057167053166 ], [ -75.499687194824219, -13.355109214782715 ], [ -75.501510620117188, -13.353531837463379 ], [ -75.501899719238281, -13.35277080535883 ], [ -75.502555847167969, -13.352778434753304 ], [ -75.503051757812443, -13.353067398071289 ], [ -75.503608703613281, -13.355478286743164 ], [ -75.503631591796818, -13.366030693054142 ], [ -75.503929138183537, -13.36830997467041 ], [ -75.504623413085938, -13.371074676513672 ], [ -75.505836486816349, -13.372093200683594 ], [ -75.509277343749943, -13.373552322387695 ], [ -75.511009216308594, -13.375259399414062 ], [ -75.512725830078125, -13.377451896667424 ], [ -75.513504028320312, -13.378816604614258 ], [ -75.514488220214844, -13.381210327148381 ], [ -75.515052795410156, -13.383886337280273 ], [ -75.518943786621094, -13.388145446777344 ], [ -75.521232604980469, -13.390046119689941 ], [ -75.523056030273438, -13.391066551208496 ], [ -75.524551391601562, -13.391433715820312 ], [ -75.529205322265568, -13.389408111572209 ], [ -75.530128479003906, -13.389206886291504 ], [ -75.530838012695312, -13.38940334320057 ], [ -75.532463073730469, -13.392728805541992 ], [ -75.5333251953125, -13.395928382873478 ], [ -75.535583496093693, -13.400380134582463 ], [ -75.536453247070256, -13.402899742126465 ], [ -75.536972045898438, -13.403668403625488 ], [ -75.538146972656193, -13.404452323913517 ], [ -75.539810180664062, -13.404647827148381 ], [ -75.543479919433594, -13.403907775878849 ], [ -75.545082092285156, -13.403985023498535 ], [ -75.548179626464787, -13.406049728393498 ], [ -75.549522399902287, -13.406398773193246 ], [ -75.551132202148381, -13.40594291687006 ], [ -75.553192138671875, -13.405947685241699 ], [ -75.554092407226506, -13.405685424804688 ], [ -75.556159973144531, -13.404432296752873 ], [ -75.556877136230469, -13.403841972351074 ], [ -75.557395935058594, -13.403000831604004 ], [ -75.557868957519531, -13.402846336364632 ], [ -75.563423156738224, -13.403033256530705 ], [ -75.565612792968693, -13.402573585510197 ], [ -75.568527221679688, -13.402622222900391 ], [ -75.571754455566406, -13.403548240661621 ], [ -75.574485778808537, -13.402871131896916 ], [ -75.579063415527287, -13.403358459472656 ], [ -75.581878662109375, -13.40326976776123 ], [ -75.583625793457031, -13.402606010437012 ], [ -75.585525512695312, -13.401471138000488 ], [ -75.589431762695312, -13.397348403930664 ], [ -75.591911315917969, -13.395516395568791 ], [ -75.592781066894531, -13.394211769103947 ], [ -75.597785949707031, -13.389237403869572 ], [ -75.598686218261719, -13.389016151428223 ], [ -75.599975585937386, -13.390108108520451 ], [ -75.600524902343693, -13.390848159790039 ], [ -75.602127075195312, -13.394180297851506 ], [ -75.602973937988281, -13.395165443420353 ], [ -75.603340148925781, -13.396589279174748 ], [ -75.604400634765625, -13.398116111755371 ], [ -75.605010986328068, -13.399662017822266 ], [ -75.605995178222656, -13.400897026062012 ], [ -75.606719970703068, -13.402397155761605 ], [ -75.611480712890568, -13.407233238220101 ], [ -75.612991333007812, -13.409235954284554 ], [ -75.613227844238224, -13.410683631896916 ], [ -75.613822937011719, -13.412238121032715 ], [ -75.613929748535156, -13.414532661437875 ], [ -75.614303588867188, -13.415824890136662 ], [ -75.614738464355412, -13.416447639465332 ], [ -75.616432189941406, -13.416959762573242 ], [ -75.619293212890625, -13.416408538818303 ], [ -75.623023986816349, -13.414464950561523 ], [ -75.624160766601562, -13.414091110229492 ], [ -75.625579833984375, -13.414235115051213 ], [ -75.628005981445256, -13.414958953857365 ], [ -75.6302490234375, -13.414916038513184 ], [ -75.631393432617188, -13.414481163024789 ], [ -75.632514953613281, -13.413510322570801 ], [ -75.633064270019474, -13.412443161010685 ], [ -75.633071899414062, -13.411149024963379 ], [ -75.633384704589844, -13.410877227783146 ], [ -75.637786865234375, -13.417167663574162 ], [ -75.638954162597599, -13.417587280273438 ], [ -75.641860961914062, -13.41773509979248 ], [ -75.642745971679688, -13.418041229248047 ], [ -75.644416809081918, -13.419666290283203 ], [ -75.645072937011662, -13.421055793762207 ], [ -75.64923095703125, -13.424082756042424 ], [ -75.650764465332031, -13.426058769226074 ], [ -75.652259826660156, -13.426624298095703 ], [ -75.652976989746037, -13.427211761474609 ], [ -75.655342102050781, -13.427802085876408 ], [ -75.659103393554574, -13.427077293395996 ], [ -75.66229248046875, -13.427104949951172 ], [ -75.663459777831974, -13.427718162536564 ], [ -75.665702819824219, -13.42994499206543 ], [ -75.668365478515625, -13.430525779724121 ], [ -75.6693115234375, -13.430514335632324 ], [ -75.671775817871037, -13.429874420166016 ], [ -75.674591064453125, -13.429965019226074 ], [ -75.676498413085938, -13.429202079772949 ], [ -75.677375793457031, -13.429099082946777 ], [ -75.680130004882812, -13.431967735290527 ], [ -75.681396484374943, -13.432759284973145 ], [ -75.682060241699162, -13.433869361877385 ], [ -75.683784484863224, -13.435583114624023 ], [ -75.684616088867188, -13.436160087585449 ], [ -75.686470031738224, -13.436868667602425 ], [ -75.688667297363168, -13.439005851745605 ], [ -75.689605712890568, -13.439238548278809 ], [ -75.690681457519531, -13.43853855133051 ], [ -75.692153930664062, -13.437126159667969 ], [ -75.695014953613281, -13.43535327911377 ], [ -75.695999145507756, -13.434528350830021 ], [ -75.696754455566349, -13.433367729186898 ], [ -75.697319030761662, -13.431153297424316 ], [ -75.699485778808594, -13.429517745971623 ], [ -75.7012939453125, -13.427408218383732 ], [ -75.702308654785156, -13.424358367919922 ], [ -75.703414916992131, -13.422616958618164 ], [ -75.705154418945256, -13.422531127929688 ], [ -75.707153320312443, -13.423031806945801 ], [ -75.707962036132812, -13.422838211059513 ], [ -75.709213256835938, -13.421714782714844 ], [ -75.710662841796818, -13.418328285217228 ], [ -75.711441040039006, -13.417179107665902 ], [ -75.712211608886662, -13.416506767272949 ], [ -75.713020324707031, -13.416233062744141 ], [ -75.714805603027344, -13.416247367858887 ], [ -75.716651916503906, -13.415547370910588 ], [ -75.717811584472656, -13.41447639465332 ], [ -75.718528747558594, -13.412882804870605 ], [ -75.719329833984375, -13.41225624084467 ], [ -75.720252990722656, -13.412238121032715 ], [ -75.721817016601562, -13.412603378295898 ], [ -75.725379943847599, -13.412502288818246 ], [ -75.727737426757756, -13.412051200866699 ], [ -75.730598449706974, -13.410670280456429 ], [ -75.734230041503849, -13.410223007202148 ], [ -75.736656188964844, -13.409086227416935 ], [ -75.739875793456974, -13.405867576599064 ], [ -75.74078369140625, -13.405214309692383 ], [ -75.742088317871094, -13.405101776123047 ], [ -75.743431091308594, -13.40467357635498 ], [ -75.746253967285099, -13.404755592346191 ], [ -75.74713134765625, -13.405926704406681 ], [ -75.748420715332031, -13.407135009765568 ], [ -75.750274658203011, -13.410022735595589 ], [ -75.751914978027344, -13.411916732788086 ], [ -75.753280639648438, -13.412527084350529 ], [ -75.754119873046875, -13.412615776062012 ], [ -75.755798339843693, -13.413443565368652 ], [ -75.757492065429631, -13.41357421875 ], [ -75.759468078613281, -13.412997245788574 ], [ -75.763130187988224, -13.412894248962402 ], [ -75.763801574706974, -13.412549972534066 ], [ -75.765548706054688, -13.412220001220589 ], [ -75.767959594726562, -13.410664558410645 ], [ -75.7689208984375, -13.409650802612305 ], [ -75.769630432128849, -13.409222602844238 ], [ -75.770660400390568, -13.409275054931641 ], [ -75.771308898925781, -13.409824371337834 ], [ -75.772171020507812, -13.410194396972599 ], [ -75.773483276367188, -13.410305023193303 ], [ -75.774604797363281, -13.410175323486328 ], [ -75.776306152343693, -13.409412384033203 ], [ -75.778274536132812, -13.409304618835392 ], [ -75.779830932617131, -13.40874004364008 ], [ -75.78289794921875, -13.406469345092773 ], [ -75.787666320800781, -13.406455993652344 ], [ -75.788566589355469, -13.406190872192383 ], [ -75.789230346679688, -13.40583610534668 ], [ -75.790824890136719, -13.40428352355957 ], [ -75.792098999023438, -13.403683662414551 ], [ -75.794242858886719, -13.403478622436467 ], [ -75.79779052734375, -13.40388298034668 ], [ -75.799850463867131, -13.403820991516056 ], [ -75.801284790039006, -13.403176307678166 ], [ -75.804008483886719, -13.402489662170353 ], [ -75.806098937988281, -13.401243209838867 ], [ -75.8077392578125, -13.40056037902832 ], [ -75.808090209960938, -13.399536132812386 ], [ -75.809837341308594, -13.397261619567871 ], [ -75.81048583984375, -13.395949363708439 ], [ -75.810440063476506, -13.394747734069824 ], [ -75.809867858886662, -13.392507553100529 ], [ -75.810111999511719, -13.389664649963379 ], [ -75.809906005859375, -13.388111114501953 ], [ -75.808128356933537, -13.383777618408146 ], [ -75.807487487792912, -13.383229255676213 ], [ -75.806701660156193, -13.382950782775822 ], [ -75.806175231933594, -13.38240909576416 ], [ -75.804840087890625, -13.381978034973088 ], [ -75.803398132324219, -13.38112640380848 ], [ -75.801292419433537, -13.379152297973576 ], [ -75.799575805664006, -13.374402046203613 ], [ -75.799102783203011, -13.372060775756836 ], [ -75.798477172851562, -13.37103271484375 ], [ -75.798347473144531, -13.368982315063477 ], [ -75.797225952148438, -13.36637020111084 ], [ -75.796928405761719, -13.363995552062988 ], [ -75.795288085937386, -13.360779762268066 ], [ -75.795135498046875, -13.355727195739689 ], [ -75.794471740722656, -13.353831291198617 ], [ -75.794349670410156, -13.352636337280217 ], [ -75.793487548828125, -13.351003646850529 ], [ -75.793357849121037, -13.349341392517033 ], [ -75.791763305664062, -13.347437858581429 ], [ -75.791786193847656, -13.346324920654297 ], [ -75.791427612304688, -13.344328880310059 ], [ -75.790512084960881, -13.34173679351801 ], [ -75.789245605468693, -13.339469909667969 ], [ -75.788208007812443, -13.336716651916504 ], [ -75.786567687988281, -13.334127426147404 ], [ -75.784370422363281, -13.331982612609863 ], [ -75.779335021972599, -13.329880714416504 ], [ -75.778701782226562, -13.329068183898869 ], [ -75.777717590331974, -13.326774597167969 ], [ -75.777198791503906, -13.326216697692871 ], [ -75.773239135742131, -13.325098037719613 ], [ -75.768241882324219, -13.321352958679199 ], [ -75.761947631835938, -13.31846809387207 ], [ -75.760696411132812, -13.316853523254338 ], [ -75.760414123535156, -13.314105033874512 ], [ -75.759544372558594, -13.312699317932129 ], [ -75.757743835449219, -13.310957908630371 ], [ -75.756263732910099, -13.310149192809945 ], [ -75.754249572753849, -13.30865573883051 ], [ -75.753700256347599, -13.308819770812988 ], [ -75.751274108886719, -13.310969352722168 ], [ -75.748100280761719, -13.312117576599064 ], [ -75.745521545410156, -13.31261157989502 ], [ -75.741180419921818, -13.312724113464242 ], [ -75.740249633789006, -13.31240272521967 ], [ -75.738021850585938, -13.310818672180176 ], [ -75.736602783203068, -13.310667991638184 ], [ -75.735603332519531, -13.310887336730957 ], [ -75.733657836914006, -13.310208320617676 ], [ -75.729728698730469, -13.306654930114746 ], [ -75.727531433105469, -13.305080413818359 ], [ -75.726951599121094, -13.304241180419865 ], [ -75.725997924804688, -13.302027702331486 ], [ -75.7235107421875, -13.299142837524357 ], [ -75.720886230468693, -13.297360420227051 ], [ -75.720016479492131, -13.296530723571777 ], [ -75.716690063476506, -13.294831275939885 ], [ -75.715232849121094, -13.29451847076416 ], [ -75.713371276855469, -13.293644905090332 ], [ -75.710929870605469, -13.291348457336426 ], [ -75.707473754882812, -13.28912353515625 ], [ -75.706497192382756, -13.287760734558105 ], [ -75.70623779296875, -13.285490989685059 ], [ -75.705467224121094, -13.2838134765625 ], [ -75.704872131347599, -13.281109809875375 ], [ -75.703987121581974, -13.279067993164006 ], [ -75.703865051269531, -13.277894020080566 ], [ -75.704132080078125, -13.274956703186035 ], [ -75.705619812011662, -13.272085189819336 ], [ -75.703819274902287, -13.268356323242188 ], [ -75.703727722167912, -13.267070770263558 ], [ -75.704917907714844, -13.263875007629395 ], [ -75.704101562499943, -13.258425712585392 ], [ -75.704467773437443, -13.255702018737793 ], [ -75.704421997070312, -13.25201511383051 ], [ -75.704673767089787, -13.250964164733887 ], [ -75.705764770507812, -13.24859428405756 ], [ -75.705894470214787, -13.246216773986816 ], [ -75.705322265624943, -13.245157241821232 ], [ -75.703254699706974, -13.244078636169434 ], [ -75.702232360839844, -13.243250846862793 ], [ -75.701171875, -13.240115165710392 ], [ -75.700759887695256, -13.236454963684025 ], [ -75.701011657714844, -13.233344078063908 ], [ -75.702545166015625, -13.229785919189453 ], [ -75.702667236328068, -13.227009773254338 ], [ -75.702232360839844, -13.225700378417969 ], [ -75.701461791992188, -13.224319458007756 ], [ -75.700263977050781, -13.223275184631348 ], [ -75.697555541992188, -13.219185829162541 ], [ -75.695793151855412, -13.217398643493652 ], [ -75.693778991699219, -13.215886116027832 ], [ -75.692207336425781, -13.214868545532227 ], [ -75.690528869628906, -13.214267730712891 ], [ -75.690254211425724, -13.213310241699219 ], [ -75.690856933593693, -13.211581230163574 ], [ -75.691009521484375, -13.209292411804199 ], [ -75.691673278808594, -13.20748329162592 ], [ -75.692672729492074, -13.206368446350098 ], [ -75.694602966308594, -13.205086708068791 ], [ -75.696983337402344, -13.202486991882324 ], [ -75.698280334472599, -13.200348854064941 ], [ -75.698745727539006, -13.198758125305176 ], [ -75.699630737304631, -13.196928024291879 ], [ -75.701591491699219, -13.194589614868164 ], [ -75.702362060546875, -13.192234992980957 ], [ -75.703384399414062, -13.191593170166016 ], [ -75.705131530761662, -13.18980598449707 ], [ -75.705940246582031, -13.18933200836176 ], [ -75.706497192382756, -13.188697814941406 ], [ -75.706771850585881, -13.18792819976801 ], [ -75.706596374511605, -13.186274528503418 ], [ -75.705612182617131, -13.183791160583382 ], [ -75.704940795898381, -13.18101692199707 ], [ -75.703819274902287, -13.177694320678711 ], [ -75.700920104980469, -13.174083709716683 ], [ -75.699600219726506, -13.171023368835449 ], [ -75.699569702148438, -13.169928550720158 ], [ -75.700828552246094, -13.167574882507211 ], [ -75.700843811035099, -13.166282653808594 ], [ -75.700592041015625, -13.165305137634277 ], [ -75.699295043945312, -13.163391113281193 ], [ -75.698112487792969, -13.162335395812988 ], [ -75.696525573730469, -13.161336898803654 ], [ -75.694946289062443, -13.159516334533578 ], [ -75.694435119628906, -13.158431053161621 ], [ -75.694602966308594, -13.15678596496582 ], [ -75.696136474609375, -13.155390739440918 ], [ -75.696578979492131, -13.153996467590332 ], [ -75.69635009765625, -13.153100013732853 ], [ -75.694786071777344, -13.151638984680176 ], [ -75.694107055664062, -13.150656700134277 ], [ -75.693603515624943, -13.149065971374455 ], [ -75.693878173828068, -13.14820671081543 ], [ -75.697113037109375, -13.145415306091252 ], [ -75.698234558105469, -13.143972396850529 ], [ -75.700378417968693, -13.142078399658203 ], [ -75.701332092285099, -13.142058372497559 ], [ -75.70538330078125, -13.143726348876896 ], [ -75.707168579101449, -13.143495559692326 ], [ -75.708374023437443, -13.142824172973576 ], [ -75.707984924316406, -13.141260147094727 ], [ -75.705848693847656, -13.138121604919434 ], [ -75.705673217773438, -13.136836051940861 ], [ -75.705924987792912, -13.135471343994141 ], [ -75.706802368164062, -13.13405799865717 ], [ -75.708198547363224, -13.132562637329102 ], [ -75.708755493164006, -13.13149356842041 ], [ -75.70928955078125, -13.128417015075684 ], [ -75.709770202636719, -13.127024650573674 ], [ -75.709671020507812, -13.124176025390568 ], [ -75.711524963378849, -13.120771408081055 ], [ -75.711822509765568, -13.117387771606332 ], [ -75.712402343749943, -13.116644859313908 ], [ -75.713142395019474, -13.115060806274414 ], [ -75.713874816894531, -13.114235877990723 ], [ -75.715492248535156, -13.112820625305176 ], [ -75.718147277832031, -13.111927986144906 ], [ -75.718910217285156, -13.110967636108342 ], [ -75.71893310546875, -13.110343933105412 ], [ -75.718475341796875, -13.109132766723633 ], [ -75.716407775878849, -13.107854843139535 ], [ -75.713256835937443, -13.104183197021371 ], [ -75.712539672851562, -13.10076713562006 ], [ -75.711189270019531, -13.09901046752924 ], [ -75.710357666015625, -13.094291687011719 ], [ -75.709632873535099, -13.092112541198674 ], [ -75.708610534667969, -13.090570449829045 ], [ -75.706138610839844, -13.08830738067627 ], [ -75.705032348632812, -13.086492538452035 ], [ -75.705085754394531, -13.085469245910645 ], [ -75.705772399902344, -13.084710121154785 ], [ -75.706588745117131, -13.082845687866154 ], [ -75.706832885742188, -13.081441879272461 ], [ -75.706649780273438, -13.080594062805176 ], [ -75.705307006835938, -13.079403877258244 ], [ -75.703193664550781, -13.078396797180176 ], [ -75.698364257812443, -13.077225685119629 ], [ -75.695854187011719, -13.07451057434082 ], [ -75.695114135742188, -13.073209762573185 ], [ -75.694526672363281, -13.070517539978027 ], [ -75.694450378417912, -13.067480087280217 ], [ -75.695892333984318, -13.061389923095703 ], [ -75.696052551269531, -13.058812141418343 ], [ -75.695434570312443, -13.056227684020996 ], [ -75.693786621093693, -13.051413536071721 ], [ -75.692855834960881, -13.049607276916504 ], [ -75.691421508789006, -13.047549247741699 ], [ -75.688308715820312, -13.044360160827523 ], [ -75.684082031249943, -13.041623115539494 ], [ -75.6815185546875, -13.041093826293832 ], [ -75.681243896484375, -13.040860176086369 ], [ -75.6787109375, -13.040739059448242 ], [ -75.677734375, -13.041040420532227 ], [ -75.676765441894531, -13.041775703430176 ], [ -75.676277160644531, -13.043259620666447 ], [ -75.6759033203125, -13.045538902282715 ], [ -75.676017761230469, -13.04691123962391 ], [ -75.677970886230412, -13.052486419677678 ], [ -75.677787780761662, -13.053941726684513 ], [ -75.676750183105469, -13.05545520782465 ], [ -75.675697326660043, -13.056506156921387 ], [ -75.672416687011719, -13.058956146240178 ], [ -75.671051025390625, -13.059549331665039 ], [ -75.669090270996037, -13.060774803161621 ], [ -75.667556762695256, -13.062260627746582 ], [ -75.666702270507756, -13.062635421752873 ], [ -75.664710998535099, -13.064303398132324 ], [ -75.661849975585881, -13.065384864807072 ], [ -75.658432006835881, -13.066335678100529 ], [ -75.656204223632812, -13.067668914794922 ], [ -75.653053283691406, -13.070281028747502 ], [ -75.651641845703068, -13.06934738159174 ], [ -75.650367736816406, -13.06900501251215 ], [ -75.648857116699219, -13.068077087402344 ], [ -75.647224426269531, -13.06750297546381 ], [ -75.645965576171875, -13.066258430480957 ], [ -75.644676208496037, -13.065764427185059 ], [ -75.640975952148381, -13.062789916992074 ], [ -75.639961242675781, -13.062621116638184 ], [ -75.639511108398438, -13.062955856323242 ], [ -75.638671874999943, -13.063093185424748 ], [ -75.637306213378906, -13.062762260436955 ], [ -75.63616943359375, -13.061552047729492 ], [ -75.634918212890625, -13.061178207397461 ], [ -75.63433837890625, -13.05974006652832 ], [ -75.632949829101506, -13.058629989623967 ], [ -75.631172180175781, -13.057624816894474 ], [ -75.629234313964787, -13.057310104370004 ], [ -75.628433227539062, -13.056816101074219 ], [ -75.62811279296875, -13.056266784667969 ], [ -75.628341674804688, -13.056038856506291 ], [ -75.628829956054688, -13.053144454956055 ], [ -75.629646301269531, -13.052139282226562 ], [ -75.630966186523381, -13.049812316894474 ], [ -75.632713317871094, -13.047890663146973 ], [ -75.633705139160099, -13.046340942382812 ], [ -75.637489318847656, -13.043338775634652 ], [ -75.637763977050781, -13.042062759399414 ], [ -75.638542175292969, -13.040595054626465 ], [ -75.638954162597599, -13.037693977355957 ], [ -75.639541625976506, -13.036444664001351 ], [ -75.639427185058537, -13.036091804504338 ], [ -75.639831542968693, -13.033840179443359 ], [ -75.639747619628906, -13.030711174011174 ], [ -75.639457702636605, -13.029644012451172 ], [ -75.638717651367188, -13.028804779052678 ], [ -75.636421203613281, -13.027797698974609 ], [ -75.634979248046875, -13.026617050170898 ], [ -75.633941650390625, -13.026167869567871 ], [ -75.632049560546875, -13.024076461791992 ], [ -75.630172729492131, -13.022841453552246 ], [ -75.629646301269531, -13.022210121154785 ], [ -75.629249572753849, -13.020708084106445 ], [ -75.628845214843693, -13.020195007324219 ], [ -75.627731323242188, -13.020044326782227 ], [ -75.625892639160099, -13.019351005554142 ], [ -75.622047424316406, -13.019306182861214 ], [ -75.621269226074219, -13.018965721130314 ], [ -75.620559692382756, -13.017900466918888 ], [ -75.620285034179631, -13.014888763427678 ], [ -75.619621276855355, -13.013355255126896 ], [ -75.618797302246094, -13.012233734130803 ], [ -75.617660522460938, -13.011279106140137 ], [ -75.6158447265625, -13.010308265686035 ], [ -75.614097595214844, -13.009623527526799 ], [ -75.612617492675781, -13.00937557220459 ], [ -75.611686706542912, -13.008001327514535 ], [ -75.609886169433537, -13.006387710571289 ], [ -75.608695983886719, -13.004101753234863 ], [ -75.608551025390568, -13.003388404846135 ], [ -75.609413146972599, -13.001505851745549 ], [ -75.609367370605469, -12.999236106872502 ], [ -75.6102294921875, -12.997852325439453 ], [ -75.610008239746094, -12.996377944946289 ], [ -75.609245300292969, -12.994290351867676 ], [ -75.608879089355469, -12.990158081054688 ], [ -75.608078002929631, -12.98799991607666 ], [ -75.606918334960881, -12.986103057861271 ], [ -75.605407714843693, -12.984218597412109 ], [ -75.604377746582031, -12.983434677124023 ], [ -75.603721618652344, -12.982303619384652 ], [ -75.603225708007812, -12.980668067932072 ], [ -75.603218078613168, -12.979374885559082 ], [ -75.603584289550724, -12.977782249450627 ], [ -75.604141235351506, -12.976822853088379 ], [ -75.604598999023438, -12.975320816040039 ], [ -75.60498046875, -12.974922180175724 ], [ -75.605880737304631, -12.972895622253361 ], [ -75.608085632324219, -12.969807624816838 ], [ -75.608680725097656, -12.968564987182617 ], [ -75.610313415527344, -12.967054367065373 ], [ -75.612915039062443, -12.965598106384277 ], [ -75.614021301269531, -12.964738845825195 ], [ -75.613845825195312, -12.964476585388184 ], [ -75.613945007324219, -12.963382720947209 ], [ -75.613296508789006, -12.961746215820312 ], [ -75.613197326660099, -12.960932731628418 ], [ -75.613334655761719, -12.959368705749455 ], [ -75.614189147949219, -12.956934928894043 ], [ -75.615219116210881, -12.95570182800293 ], [ -75.616554260253849, -12.953374862670898 ], [ -75.61785888671875, -12.951907157897949 ], [ -75.619033813476506, -12.951027870178166 ], [ -75.621376037597656, -12.950062751769963 ], [ -75.622367858886662, -12.94921970367426 ], [ -75.622215270996094, -12.948776245117188 ], [ -75.620941162109318, -12.947984695434513 ], [ -75.618263244628849, -12.945027351379338 ], [ -75.617652893066406, -12.944078445434513 ], [ -75.617576599121094, -12.942792892456055 ], [ -75.619834899902344, -12.941034317016545 ], [ -75.625900268554631, -12.93856143951416 ], [ -75.628448486328125, -12.936474800109863 ], [ -75.629585266113281, -12.935288429260197 ], [ -75.629653930664062, -12.934004783630314 ], [ -75.628578186035099, -12.932865142822209 ], [ -75.627799987792912, -12.930977821350098 ], [ -75.627655029296875, -12.929512023925781 ], [ -75.627853393554688, -12.928336143493652 ], [ -75.628791809082031, -12.926627159118652 ], [ -75.630485534667912, -12.924788475036621 ], [ -75.631988525390568, -12.923545837402287 ], [ -75.634483337402287, -12.922101020812988 ], [ -75.634574890136662, -12.921296119689941 ], [ -75.633956909179688, -12.920077323913517 ], [ -75.6341552734375, -12.918522834777718 ], [ -75.634635925292969, -12.917724609374943 ], [ -75.636405944824105, -12.916220664978027 ], [ -75.63690185546875, -12.915041923522836 ], [ -75.636512756347656, -12.91307258605957 ], [ -75.635459899902344, -12.912288665771428 ], [ -75.6337890625, -12.911740303039494 ], [ -75.632087707519474, -12.90955638885498 ], [ -75.631362915039062, -12.907462120056152 ], [ -75.631362915039062, -12.90485668182373 ], [ -75.630661010742131, -12.901712417602539 ], [ -75.630516052246094, -12.898674011230469 ], [ -75.630134582519531, -12.89715576171875 ], [ -75.629432678222599, -12.896063804626351 ], [ -75.627113342285156, -12.893779754638615 ], [ -75.625129699706974, -12.891208648681584 ], [ -75.622550964355412, -12.886819839477539 ], [ -75.622390747070312, -12.885916709899902 ], [ -75.621475219726562, -12.884010314941406 ], [ -75.61885833740223, -12.880290031433105 ], [ -75.618598937988281, -12.87951469421381 ], [ -75.618438720703125, -12.877300262451058 ], [ -75.615455627441406, -12.872830390930119 ], [ -75.614173889160099, -12.869434356689453 ], [ -75.613922119140625, -12.867426872253361 ], [ -75.613456726074219, -12.866640090942326 ], [ -75.612251281738224, -12.862320899963322 ], [ -75.612396240234375, -12.861038208007812 ], [ -75.613189697265625, -12.859370231628418 ], [ -75.611846923828125, -12.858524322509766 ], [ -75.605133056640625, -12.856189727783146 ], [ -75.603263854980469, -12.856058120727482 ], [ -75.600906372070256, -12.856633186340218 ], [ -75.599418640136719, -12.856448173522949 ], [ -75.598648071289062, -12.855915069580021 ], [ -75.5970458984375, -12.854111671447754 ], [ -75.596130371093693, -12.853495597839299 ], [ -75.594718933105412, -12.851123809814453 ], [ -75.593154907226562, -12.850105285644474 ], [ -75.591316223144531, -12.849403381347656 ], [ -75.588455200195312, -12.848903656005859 ], [ -75.586242675781136, -12.849262237548714 ], [ -75.584465026855469, -12.849147796630803 ], [ -75.581886291503906, -12.847470283508244 ], [ -75.580612182617131, -12.847194671630859 ], [ -75.578155517578125, -12.84584999084467 ], [ -75.576866149902287, -12.84569263458252 ], [ -75.574615478515625, -12.845823287963867 ], [ -75.573341369628849, -12.84548282623291 ], [ -75.570495605468693, -12.84338188171381 ], [ -75.567474365234375, -12.841733932495117 ], [ -75.565673828125, -12.839974403381348 ], [ -75.564559936523381, -12.838286399841309 ], [ -75.564537048339844, -12.83764457702631 ], [ -75.565391540527344, -12.83679008483881 ], [ -75.565780639648438, -12.836058616638127 ], [ -75.565925598144474, -12.834412574767953 ], [ -75.565643310546761, -12.833534240722656 ], [ -75.562248229980469, -12.830930709838867 ], [ -75.561820983886662, -12.830010414123478 ], [ -75.561058044433537, -12.82657527923584 ], [ -75.560989379882812, -12.823725700378418 ], [ -75.560722351074219, -12.822342872619629 ], [ -75.561683654785156, -12.818515777587891 ], [ -75.561164855957031, -12.817440986633301 ], [ -75.556526184082031, -12.816482543945312 ], [ -75.554550170898381, -12.818540573120117 ], [ -75.553535461425781, -12.819148063659668 ], [ -75.552322387695312, -12.820563316345215 ], [ -75.552108764648438, -12.821160316467285 ], [ -75.551361083984375, -12.821858406066895 ], [ -75.54632568359375, -12.823785781860352 ], [ -75.545227050781193, -12.823206901550179 ], [ -75.543914794921875, -12.821844100952035 ], [ -75.542266845703068, -12.819153785705453 ], [ -75.541862487792912, -12.817085266113281 ], [ -75.541313171386662, -12.816605567932129 ], [ -75.540649414062443, -12.816552162170353 ], [ -75.539222717285099, -12.817262649536076 ], [ -75.538612365722656, -12.818682670593262 ], [ -75.537757873535156, -12.819541931152344 ], [ -75.53570556640625, -12.820432662963867 ], [ -75.533607482910156, -12.821946144104004 ], [ -75.532302856445312, -12.822465896606445 ], [ -75.531631469726562, -12.8224840164184 ], [ -75.530647277832031, -12.821275711059457 ], [ -75.529396057128849, -12.815988540649414 ], [ -75.526374816894531, -12.811544418334847 ], [ -75.525016784667855, -12.808130264282227 ], [ -75.523597717285156, -12.807111740112305 ], [ -75.522941589355469, -12.80583667755127 ], [ -75.52264404296875, -12.802177429199219 ], [ -75.522178649902344, -12.8004856109618 ], [ -75.522155761718636, -12.799383163452148 ], [ -75.521705627441406, -12.798170089721623 ], [ -75.521926879882812, -12.794309616088867 ], [ -75.522163391113281, -12.793614387512207 ], [ -75.521682739257812, -12.792519569396916 ], [ -75.521194458007756, -12.790170669555607 ], [ -75.520378112792969, -12.788509368896428 ], [ -75.519737243652287, -12.787851333618164 ], [ -75.518142700195256, -12.787691116332951 ], [ -75.513839721679631, -12.788873672485352 ], [ -75.513061523437443, -12.788557052612248 ], [ -75.512367248535156, -12.787937164306584 ], [ -75.510536193847656, -12.785046577453613 ], [ -75.509841918945256, -12.782868385314941 ], [ -75.509933471679631, -12.779557228088322 ], [ -75.50823974609375, -12.776604652404728 ], [ -75.508155822753906, -12.774977684020996 ], [ -75.508857727050781, -12.774714469909668 ], [ -75.509674072265625, -12.775172233581543 ], [ -75.510795593261662, -12.775208473205566 ], [ -75.513626098632812, -12.77400016784668 ], [ -75.515121459960938, -12.772876739501839 ], [ -75.518096923828125, -12.768539428710938 ], [ -75.521064758300781, -12.765727043151855 ], [ -75.526565551757812, -12.763974189758301 ], [ -75.529968261718693, -12.760049819946175 ], [ -75.531585693359318, -12.759341239929199 ], [ -75.533233642578125, -12.757991790771428 ], [ -75.537208557128849, -12.753408432006836 ], [ -75.540550231933537, -12.750897407531738 ], [ -75.543022155761662, -12.750423431396484 ], [ -75.545112609863224, -12.74847412109375 ], [ -75.547073364257812, -12.747610092163086 ], [ -75.548049926757812, -12.746614456176758 ], [ -75.548324584960938, -12.745925903320312 ], [ -75.549499511718693, -12.744376182556152 ], [ -75.550872802734375, -12.743803977966309 ], [ -75.551841735839844, -12.74294471740717 ], [ -75.552925109863224, -12.741665840148926 ], [ -75.554161071777344, -12.739376068115178 ], [ -75.554527282714844, -12.738162994384652 ], [ -75.554580688476449, -12.735947608947754 ], [ -75.555343627929574, -12.734906196594181 ], [ -75.555900573730412, -12.734571456909123 ], [ -75.556549072265568, -12.734551429748478 ], [ -75.557754516601562, -12.733843803405648 ], [ -75.561775207519531, -12.732643127441406 ], [ -75.564399719238224, -12.73073768615717 ], [ -75.567832946777287, -12.727355003356877 ], [ -75.571151733398381, -12.725459098815918 ], [ -75.573455810546818, -12.721349716186523 ], [ -75.575035095214844, -12.719184875488168 ], [ -75.576148986816406, -12.716958045959473 ], [ -75.577079772949162, -12.715926170349121 ], [ -75.577095031738281, -12.715554237365666 ], [ -75.576530456542969, -12.714996337890625 ], [ -75.574455261230469, -12.713931083679199 ], [ -75.571907043456974, -12.711623191833382 ], [ -75.571235656738224, -12.710736274719238 ], [ -75.570297241210881, -12.708724021911621 ], [ -75.569038391113281, -12.707496643066406 ], [ -75.568130493164062, -12.707253456115666 ], [ -75.566909790039062, -12.707294464111328 ], [ -75.565635681152287, -12.707611083984318 ], [ -75.564857482910099, -12.708083152770939 ], [ -75.563728332519474, -12.708230972289982 ], [ -75.561882019042969, -12.706607818603516 ], [ -75.556190490722599, -12.704728126525879 ], [ -75.554191589355412, -12.703532218933105 ], [ -75.554100036621037, -12.702527046203613 ], [ -75.5552978515625, -12.700345039367676 ], [ -75.555633544921875, -12.698535919189453 ], [ -75.555984497070256, -12.697847366332951 ], [ -75.555877685546875, -12.692063331604004 ], [ -75.555435180664006, -12.690081596374512 ], [ -75.554458618164006, -12.688185691833496 ], [ -75.5535888671875, -12.686876296997013 ], [ -75.551513671874943, -12.684874534606934 ], [ -75.551361083984375, -12.683734893798828 ], [ -75.551673889160156, -12.681662559509221 ], [ -75.552017211914062, -12.680904388427678 ], [ -75.552757263183537, -12.680079460144043 ], [ -75.55548095703125, -12.678137779235783 ], [ -75.556877136230469, -12.677611351013184 ], [ -75.559974670410156, -12.677616119384766 ], [ -75.561073303222656, -12.677131652832031 ], [ -75.561431884765568, -12.67724609375 ], [ -75.562271118164006, -12.676747322082463 ], [ -75.562973022460824, -12.675978660583496 ], [ -75.563140869140568, -12.67518424987793 ], [ -75.563026428222656, -12.674333572387695 ], [ -75.562332153320312, -12.673275947570801 ], [ -75.560821533203125, -12.671714782714844 ], [ -75.558700561523438, -12.670091629028263 ], [ -75.558456420898381, -12.669299125671387 ], [ -75.5587158203125, -12.667848587036133 ], [ -75.560005187988224, -12.665720939636174 ], [ -75.560386657714787, -12.664401054382267 ], [ -75.561042785644474, -12.66348743438715 ], [ -75.561714172363224, -12.66298770904541 ], [ -75.564033508300781, -12.662864685058594 ], [ -75.565292358398438, -12.662500381469727 ], [ -75.566413879394531, -12.66182804107666 ], [ -75.568641662597656, -12.661624908447266 ], [ -75.571922302246037, -12.6597900390625 ], [ -75.57452392578125, -12.659632682800236 ], [ -75.575759887695312, -12.658799171447754 ], [ -75.576896667480355, -12.65598201751709 ], [ -75.578308105468693, -12.653502464294434 ], [ -75.57818603515625, -12.64642333984375 ], [ -75.578498840331974, -12.645003318786621 ], [ -75.5797119140625, -12.641790390014535 ], [ -75.57958984375, -12.641339302062988 ], [ -75.578384399414062, -12.640011787414551 ], [ -75.574417114257699, -12.636964797973633 ], [ -75.572113037109318, -12.636707305908203 ], [ -75.569915771484318, -12.637136459350586 ], [ -75.569412231445312, -12.636958122253418 ], [ -75.569046020507756, -12.636513710021916 ], [ -75.568397521972599, -12.633740425109806 ], [ -75.567611694335881, -12.632819175720158 ], [ -75.565879821777344, -12.632443428039551 ], [ -75.563186645507812, -12.632719039916935 ], [ -75.560470581054631, -12.631459236144963 ], [ -75.557655334472656, -12.628896713256779 ], [ -75.55633544921875, -12.628060340881348 ], [ -75.552154541015625, -12.623600006103459 ], [ -75.5513916015625, -12.623058319091797 ], [ -75.55096435546875, -12.623185157775879 ], [ -75.549049377441293, -12.625090599060002 ], [ -75.548133850097656, -12.625272750854435 ], [ -75.546005249023438, -12.624564170837402 ], [ -75.543601989746037, -12.622984886169434 ], [ -75.541961669921818, -12.622553825378304 ], [ -75.539031982421818, -12.621999740600586 ], [ -75.535202026367131, -12.621771812438908 ], [ -75.534469604492188, -12.621546745300293 ], [ -75.533645629882812, -12.621648788452092 ], [ -75.529396057128849, -12.621051788329964 ], [ -75.528160095214787, -12.620392799377385 ], [ -75.52630615234375, -12.618426322936955 ], [ -75.525291442871037, -12.618490219116154 ], [ -75.521934509277287, -12.622204780578556 ], [ -75.5216064453125, -12.624818801879769 ], [ -75.520942687988281, -12.624983787536621 ], [ -75.519569396972599, -12.624714851379395 ], [ -75.518089294433594, -12.625494003295898 ], [ -75.514976501464787, -12.628791809082031 ], [ -75.512931823730469, -12.632023811340275 ], [ -75.511337280273438, -12.633801460266113 ], [ -75.510025024414006, -12.634616851806641 ], [ -75.506584167480412, -12.635923385620117 ], [ -75.505882263183594, -12.636379241943303 ], [ -75.503463745117074, -12.636572837829476 ], [ -75.500587463378849, -12.637237548828068 ], [ -75.499801635742188, -12.637764930724984 ], [ -75.499145507812443, -12.638940811157227 ], [ -75.498962402343693, -12.642098426818848 ], [ -75.498626708984375, -12.643048286437988 ], [ -75.497306823730469, -12.643855094909668 ], [ -75.494537353515625, -12.644655227661019 ], [ -75.493408203125, -12.645408630371094 ], [ -75.490806579589844, -12.64838790893549 ], [ -75.48883056640625, -12.651946067810059 ], [ -75.488365173339787, -12.653774261474609 ], [ -75.488265991210881, -12.656341552734375 ], [ -75.488700866699219, -12.658058166503906 ], [ -75.489845275878906, -12.660652160644531 ], [ -75.489677429199219, -12.662813186645508 ], [ -75.489494323730469, -12.663174629211426 ], [ -75.487625122070256, -12.664542198181152 ], [ -75.486618041992188, -12.665657043456974 ], [ -75.484527587890625, -12.672834396362305 ], [ -75.483200073242188, -12.675502777099496 ], [ -75.482421875, -12.676245689391976 ], [ -75.481422424316349, -12.676770210266 ], [ -75.477104187011719, -12.677474021911564 ], [ -75.472145080566406, -12.679789543151855 ], [ -75.470588684082031, -12.680870056152344 ], [ -75.467979431152287, -12.68345928192133 ], [ -75.463310241699162, -12.679510116577148 ], [ -75.460968017578125, -12.676844596862793 ], [ -75.459274291992131, -12.674404144287109 ], [ -75.458206176757812, -12.671063423156738 ], [ -75.457878112792855, -12.668113708496094 ], [ -75.456947326660156, -12.666019439697266 ], [ -75.456069946289062, -12.662618637084961 ], [ -75.452743530273438, -12.657065391540471 ], [ -75.452888488769474, -12.656242370605355 ], [ -75.455406188964844, -12.653768539428711 ], [ -75.456672668457031, -12.651533126831055 ], [ -75.456932067871094, -12.649803161621094 ], [ -75.456130981445256, -12.647084236144963 ], [ -75.456085205078125, -12.645329475402832 ], [ -75.457916259765625, -12.642107009887695 ], [ -75.458976745605469, -12.637783050537109 ], [ -75.461395263671818, -12.63505744934082 ], [ -75.461174011230469, -12.634380340576115 ], [ -75.459472656249943, -12.632265090942383 ], [ -75.459083557128849, -12.630585670471135 ], [ -75.457481384277287, -12.62911319732666 ], [ -75.456863403320312, -12.627035140991211 ], [ -75.454452514648438, -12.625059127807617 ], [ -75.454071044921875, -12.622916221618596 ], [ -75.453620910644531, -12.622248649597111 ], [ -75.452705383300724, -12.62165355682373 ], [ -75.451118469238281, -12.621195793151799 ], [ -75.449752807617131, -12.619894027709961 ], [ -75.448646545410156, -12.620023727416935 ], [ -75.446075439453125, -12.618751525878849 ], [ -75.444572448730469, -12.618636131286564 ], [ -75.44171142578125, -12.617701530456543 ], [ -75.439521789550781, -12.617309570312443 ], [ -75.438301086425724, -12.618068695068303 ], [ -75.432510375976449, -12.624508857726937 ], [ -75.428802490234375, -12.626873016357422 ], [ -75.427925109863224, -12.627166748046875 ], [ -75.427246093749943, -12.627137184143066 ], [ -75.425903320312443, -12.626715660095158 ], [ -75.424346923828125, -12.625861167907658 ], [ -75.422973632812386, -12.625772476196175 ], [ -75.420745849609318, -12.626462936401367 ], [ -75.419151306152287, -12.6279296875 ], [ -75.417930603027344, -12.62852764129633 ], [ -75.41644287109375, -12.628819465637207 ], [ -75.415359497070312, -12.628268241882267 ], [ -75.415420532226506, -12.627855300903263 ], [ -75.414176940917912, -12.624564170837402 ], [ -75.413444519042969, -12.623290061950627 ], [ -75.411323547363224, -12.620626449584961 ], [ -75.410400390625, -12.617670059204102 ], [ -75.410316467285156, -12.613637924194279 ], [ -75.411087036132812, -12.609123229980412 ], [ -75.410858154296818, -12.605633735656738 ], [ -75.412254333496094, -12.600686073303223 ], [ -75.409873962402287, -12.59774112701416 ], [ -75.409782409667912, -12.59665584564209 ], [ -75.410224914550781, -12.593643188476506 ], [ -75.409553527832031, -12.589656829833928 ], [ -75.4091796875, -12.588933944702092 ], [ -75.407928466796875, -12.587672233581543 ], [ -75.406211853027344, -12.586580276489258 ], [ -75.403572082519531, -12.585445404052678 ], [ -75.400344848632756, -12.58478927612299 ], [ -75.398696899414062, -12.58382511138916 ], [ -75.397262573242188, -12.582551002502441 ], [ -75.396110534667969, -12.581159591674805 ], [ -75.395637512207031, -12.58023738861084 ], [ -75.395820617675781, -12.57846641540516 ], [ -75.395599365234318, -12.57783317565918 ], [ -75.391304016113224, -12.573399543762207 ], [ -75.389396667480412, -12.569522857665959 ], [ -75.388710021972599, -12.568863868713379 ], [ -75.385498046875, -12.566799163818359 ], [ -75.383026123046875, -12.56534481048584 ], [ -75.381629943847656, -12.564778327941838 ], [ -75.380264282226562, -12.563814163208008 ], [ -75.380012512207031, -12.563106536865234 ], [ -75.380020141601562, -12.561044692993164 ], [ -75.379127502441406, -12.55951976776123 ], [ -75.378463745117188, -12.556488990783635 ], [ -75.377731323242188, -12.55533313751215 ], [ -75.376937866210938, -12.554847717285099 ], [ -75.375862121581918, -12.554549217224064 ], [ -75.371894836425781, -12.554672241210824 ], [ -75.370849609375, -12.554059028625488 ], [ -75.369407653808594, -12.551619529724121 ], [ -75.36932373046875, -12.550544738769474 ], [ -75.368598937988224, -12.548508644104004 ], [ -75.368057250976562, -12.543682098388615 ], [ -75.367263793945256, -12.542606353759766 ], [ -75.3634033203125, -12.539980888366699 ], [ -75.361137390136719, -12.538788795471191 ], [ -75.358940124511719, -12.538864135742188 ], [ -75.35711669921875, -12.540079116821289 ], [ -75.356468200683537, -12.540225028991642 ], [ -75.350212097167969, -12.538234710693303 ], [ -75.348884582519531, -12.536771774291935 ], [ -75.347496032714844, -12.534231185913086 ], [ -75.346435546875, -12.53316593170166 ], [ -75.345443725585938, -12.53272628784174 ], [ -75.343109130859375, -12.532801628112736 ], [ -75.342422485351562, -12.532140731811523 ], [ -75.342041015625, -12.531281471252441 ], [ -75.341766357421875, -12.528397560119629 ], [ -75.341079711914062, -12.525360107421818 ], [ -75.340408325195312, -12.523897171020451 ], [ -75.339347839355469, -12.522659301757812 ], [ -75.338417053222656, -12.522390365600472 ], [ -75.336097717285156, -12.520963668823129 ], [ -75.331832885742188, -12.519992828369141 ], [ -75.3289794921875, -12.517462730407715 ], [ -75.328048706054631, -12.516904830932617 ], [ -75.324211120605469, -12.515894889831486 ], [ -75.32283782958973, -12.515933990478459 ], [ -75.321632385253906, -12.516286849975472 ], [ -75.319633483886719, -12.514082908630314 ], [ -75.317619323730469, -12.513859748840275 ], [ -75.317611694335938, -12.511969566345215 ], [ -75.319259643554688, -12.508577346801758 ], [ -75.319648742675781, -12.506496429443303 ], [ -75.319404602050668, -12.505637168884277 ], [ -75.318054199218693, -12.504274368286019 ], [ -75.318031311035156, -12.503478050231934 ], [ -75.319328308105469, -12.501928329467773 ], [ -75.319709777832031, -12.501151084899789 ], [ -75.319869995117131, -12.500075340270939 ], [ -75.319747924804688, -12.498159408569279 ], [ -75.32000732421875, -12.497289657592717 ], [ -75.322868347167969, -12.493000984191895 ], [ -75.323661804199162, -12.491283416748047 ], [ -75.324119567871094, -12.488215446472168 ], [ -75.323783874511662, -12.485548019409123 ], [ -75.321388244628849, -12.484737396240178 ], [ -75.313888549804688, -12.484193801879883 ], [ -75.311798095703125, -12.482650756835881 ], [ -75.310272216796875, -12.479351043701172 ], [ -75.309684753417969, -12.479008674621582 ], [ -75.308700561523381, -12.479045867919808 ], [ -75.308197021484375, -12.479191780090332 ], [ -75.30743408203125, -12.479980468749943 ], [ -75.306709289550724, -12.480367660522461 ], [ -75.30206298828125, -12.480139732360783 ], [ -75.301040649414062, -12.480617523193359 ], [ -75.300796508789006, -12.480954170226994 ], [ -75.300888061523381, -12.481288909912109 ], [ -75.302345275878906, -12.483601570129395 ], [ -75.302284240722656, -12.485636711120605 ], [ -75.302032470703068, -12.486262321472111 ], [ -75.301422119140625, -12.486830711364689 ], [ -75.300918579101562, -12.48694992065424 ], [ -75.29994964599598, -12.486751556396428 ], [ -75.298835754394531, -12.486227035522404 ], [ -75.298118591308537, -12.485595703124943 ], [ -75.296600341796818, -12.48288631439209 ], [ -75.294692993164006, -12.480408668517953 ], [ -75.288810729980469, -12.475360870361328 ], [ -75.287025451660156, -12.474667549133244 ], [ -75.281005859375, -12.474147796630803 ], [ -75.279403686523438, -12.473398208618164 ], [ -75.278076171874943, -12.471041679382324 ], [ -75.278068542480469, -12.467343330383187 ], [ -75.277481079101562, -12.46662712097168 ], [ -75.274085998535099, -12.466079711913949 ], [ -75.270416259765625, -12.466517448425236 ], [ -75.265899658203068, -12.466196060180607 ], [ -75.262817382812443, -12.465603828430119 ], [ -75.258087158203125, -12.46378040313715 ], [ -75.254829406738224, -12.463321685791016 ], [ -75.253135681152344, -12.462763786315918 ], [ -75.248344421386662, -12.462531089782715 ], [ -75.246025085449219, -12.462734222412053 ], [ -75.238494873046875, -12.469992637634277 ], [ -75.237983703613281, -12.4700927734375 ], [ -75.236495971679631, -12.469749450683594 ], [ -75.235389709472656, -12.469760894775334 ], [ -75.234024047851506, -12.469961166381836 ], [ -75.233306884765625, -12.470312118530217 ], [ -75.232757568359375, -12.471118927001896 ], [ -75.232513427734318, -12.473660469055176 ], [ -75.231620788574219, -12.475144386291447 ], [ -75.23052978515625, -12.475325584411621 ], [ -75.229438781738224, -12.474810600280705 ], [ -75.227722167968693, -12.474441528320256 ], [ -75.225921630859318, -12.472399711608887 ], [ -75.224639892578125, -12.469723701476937 ], [ -75.223136901855469, -12.467626571655217 ], [ -75.220497131347599, -12.465948104858398 ], [ -75.217658996582031, -12.464938163757324 ], [ -75.215507507324219, -12.463274002075195 ], [ -75.213920593261662, -12.460762977599984 ], [ -75.213218688964844, -12.458721160888615 ], [ -75.213081359863281, -12.456160545349121 ], [ -75.213973999023438, -12.453059196472111 ], [ -75.215232849121037, -12.451130867004281 ], [ -75.22052001953125, -12.444264411926156 ], [ -75.223472595214844, -12.438935279846191 ], [ -75.224487304687443, -12.436444282531625 ], [ -75.224411010742131, -12.43576717376709 ], [ -75.224014282226506, -12.435065269470215 ], [ -75.220397949218693, -12.431341171264648 ], [ -75.219017028808594, -12.42951583862299 ], [ -75.217308044433594, -12.426295280456543 ], [ -75.215385437011719, -12.421660423278809 ], [ -75.214988708496094, -12.419670104980469 ], [ -75.214820861816406, -12.415773391723519 ], [ -75.214393615722599, -12.413928985595703 ], [ -75.214324951171875, -12.412582397460938 ], [ -75.214553833007812, -12.410854339599553 ], [ -75.215438842773381, -12.409324645996037 ], [ -75.216606140136719, -12.408212661743107 ], [ -75.217880249023438, -12.406430244445801 ], [ -75.218215942382756, -12.405433654785156 ], [ -75.218254089355469, -12.403942108154297 ], [ -75.218101501464787, -12.402450561523381 ], [ -75.217636108398381, -12.401329994201603 ], [ -75.214775085449162, -12.39843654632557 ], [ -75.214546203613281, -12.396286010742188 ], [ -75.215560913085938, -12.394695281982422 ], [ -75.218513488769531, -12.3916978836059 ], [ -75.219291687011719, -12.391127586364746 ], [ -75.219810485839787, -12.391207695007324 ], [ -75.220199584960881, -12.391018867492619 ], [ -75.219635009765568, -12.390277862548828 ], [ -75.216674804687443, -12.388083457946777 ], [ -75.214942932128849, -12.386998176574707 ], [ -75.212089538574162, -12.385671615600586 ], [ -75.211067199706918, -12.384776115417424 ], [ -75.207885742187443, -12.383342742919922 ], [ -75.205574035644531, -12.381635665893555 ], [ -75.203475952148438, -12.378334999084416 ], [ -75.200935363769474, -12.375507354736328 ], [ -75.197242736816406, -12.371891975402832 ], [ -75.195312499999943, -12.369441986083928 ], [ -75.194778442382812, -12.368341445922795 ], [ -75.190826416015568, -12.365927696228027 ], [ -75.188568115234375, -12.366834640502873 ], [ -75.18695068359375, -12.366511344909668 ], [ -75.186019897460938, -12.365524291992131 ], [ -75.185798645019531, -12.364484786987305 ], [ -75.184555053710824, -12.362387657165414 ], [ -75.183540344238281, -12.361474037170353 ], [ -75.181999206542969, -12.360598564147949 ], [ -75.181129455566406, -12.361214637756348 ], [ -75.180549621581918, -12.361975669860783 ], [ -75.178688049316406, -12.367457389831543 ], [ -75.177757263183537, -12.369103431701603 ], [ -75.176078796386719, -12.371237754821721 ], [ -75.176139831542912, -12.372829437255859 ], [ -75.174644470214844, -12.373806953430176 ], [ -75.171920776367188, -12.376457214355469 ], [ -75.169960021972599, -12.377680778503418 ], [ -75.168952941894531, -12.378811836242619 ], [ -75.168685913085938, -12.379552841186523 ], [ -75.168540954589844, -12.381442070007267 ], [ -75.166526794433537, -12.383992195129281 ], [ -75.166046142578068, -12.385956764221135 ], [ -75.165351867675724, -12.386960029602051 ], [ -75.165390014648438, -12.38779354095459 ], [ -75.164978027343693, -12.38828182220459 ], [ -75.163002014160043, -12.389774322509709 ], [ -75.1611328125, -12.390608787536564 ], [ -75.158638000488281, -12.392699241638127 ], [ -75.157318115234375, -12.393095016479492 ], [ -75.156097412109375, -12.392990112304631 ], [ -75.154289245605412, -12.39486122131342 ], [ -75.153526306152287, -12.395369529724064 ], [ -75.151321411132812, -12.395598411560059 ], [ -75.150154113769531, -12.395235061645451 ], [ -75.146865844726506, -12.395110130310059 ], [ -75.145713806152287, -12.394648551940918 ], [ -75.145111083984375, -12.39359188079834 ], [ -75.143409729003906, -12.392019271850529 ], [ -75.142761230468693, -12.390544891357308 ], [ -75.141143798828068, -12.389081954956055 ], [ -75.140747070312443, -12.388221740722599 ], [ -75.140029907226562, -12.38760852813715 ], [ -75.138961791992131, -12.385274887084961 ], [ -75.137596130371094, -12.384146690368652 ], [ -75.136856079101506, -12.382419586181584 ], [ -75.135482788085938, -12.380402565002441 ], [ -75.133949279785156, -12.379264831542912 ], [ -75.131080627441406, -12.378351211547795 ], [ -75.130844116210881, -12.378000259399357 ], [ -75.130966186523438, -12.376525878906136 ], [ -75.133071899414062, -12.373369216918945 ], [ -75.132751464843693, -12.367183685302621 ], [ -75.134811401367188, -12.359929084777775 ], [ -75.134963989257699, -12.357912063598633 ], [ -75.134681701660156, -12.355806350708008 ], [ -75.134849548339787, -12.353925704956055 ], [ -75.135429382324162, -12.352704048156681 ], [ -75.136306762695312, -12.349033355712834 ], [ -75.138877868652344, -12.344906806945801 ], [ -75.139427185058537, -12.343378067016545 ], [ -75.139678955078125, -12.341741561889592 ], [ -75.139305114746094, -12.340357780456429 ], [ -75.138076782226506, -12.338533401489258 ], [ -75.136451721191406, -12.336889266967717 ], [ -75.134071350097599, -12.335051536560059 ], [ -75.133277893066406, -12.334844589233398 ], [ -75.129928588867188, -12.335515022277775 ], [ -75.128952026367131, -12.335018157958928 ], [ -75.128761291503849, -12.333545684814453 ], [ -75.129219055175724, -12.331302642822209 ], [ -75.129249572753906, -12.329547882080078 ], [ -75.129768371582031, -12.327873229980412 ], [ -75.12762451171875, -12.325398445129338 ], [ -75.126594543457031, -12.32381629943842 ], [ -75.122756958007699, -12.315904617309513 ], [ -75.120056152343693, -12.309576034545898 ], [ -75.112480163574219, -12.305220603942871 ], [ -75.111274719238281, -12.304335594177246 ], [ -75.108345031738224, -12.301497459411621 ], [ -75.106834411621094, -12.298333168029728 ], [ -75.105361938476562, -12.297340393066349 ], [ -75.103141784667969, -12.294953346252441 ], [ -75.101394653320199, -12.291442871093693 ], [ -75.098144531249943, -12.28242015838623 ], [ -75.098388671875, -12.281442642211914 ], [ -75.098793029785099, -12.28090858459467 ], [ -75.101295471191349, -12.279535293579102 ], [ -75.103424072265625, -12.277444839477539 ], [ -75.104431152343693, -12.274639129638615 ], [ -75.104919433593693, -12.272000312805119 ], [ -75.104866027832031, -12.269575119018441 ], [ -75.104469299316406, -12.267043113708496 ], [ -75.103187561035099, -12.263056755065918 ], [ -75.100730895996094, -12.256771087646484 ], [ -75.10009765625, -12.253598213195744 ], [ -75.100006103515625, -12.251041412353516 ], [ -75.097328186035156, -12.250444412231445 ], [ -75.093032836914062, -12.250282287597656 ], [ -75.091934204101506, -12.249757766723633 ], [ -75.091743469238224, -12.24844837188715 ], [ -75.092948913574219, -12.245887756347656 ], [ -75.092735290527344, -12.24415111541748 ], [ -75.091781616210938, -12.243652343749943 ], [ -75.089225769042969, -12.241213798522949 ], [ -75.087966918945312, -12.239793777465763 ], [ -75.086685180664006, -12.237714767455998 ], [ -75.085502624511719, -12.236584663391113 ], [ -75.083076477050724, -12.235654830932617 ], [ -75.082260131835938, -12.235654830932617 ], [ -75.080406188964787, -12.234478950500488 ], [ -75.0791015625, -12.234164237976074 ], [ -75.076622009277344, -12.234254837036076 ], [ -75.073326110839787, -12.235537528991642 ], [ -75.071678161621094, -12.235404014587402 ], [ -75.071144104003849, -12.234182357788029 ], [ -75.070755004882756, -12.230820655822697 ], [ -75.070304870605355, -12.229543685913086 ], [ -75.066467285156193, -12.225341796874943 ], [ -75.065254211425781, -12.223377227783203 ], [ -75.063217163085881, -12.221017837524357 ], [ -75.061691284179631, -12.218305587768555 ], [ -75.058815002441406, -12.209307670593205 ], [ -75.058555603027287, -12.205068588256779 ], [ -75.0565185546875, -12.20468807220459 ], [ -75.053688049316349, -12.205196380615234 ], [ -75.051948547363281, -12.204807281494141 ], [ -75.050636291503849, -12.204109191894531 ], [ -75.049209594726506, -12.202457427978459 ], [ -75.048927307128849, -12.201696395874023 ], [ -75.048942565917855, -12.200881958007812 ], [ -75.049598693847599, -12.19758224487299 ], [ -75.050125122070312, -12.196332931518441 ], [ -75.050529479980412, -12.193827629089355 ], [ -75.051673889160099, -12.190519332885742 ], [ -75.053688049316349, -12.186990737915039 ], [ -75.054405212402344, -12.183834075927734 ], [ -75.054489135742188, -12.17939376831049 ], [ -75.053993225097599, -12.174303054809457 ], [ -75.053901672363168, -12.167974472045842 ], [ -75.053436279296875, -12.166989326477051 ], [ -75.05242919921875, -12.165884017944279 ], [ -75.052185058593636, -12.164701461791992 ], [ -75.055313110351506, -12.16411018371582 ], [ -75.056991577148438, -12.163558959960881 ], [ -75.063682556152344, -12.160792350769043 ], [ -75.06719970703125, -12.158467292785645 ], [ -75.071739196777344, -12.157550811767521 ], [ -75.07269287109375, -12.157027244567814 ], [ -75.073677062988281, -12.155923843383789 ], [ -75.073348999023381, -12.152026176452637 ], [ -75.073654174804688, -12.150153160095215 ], [ -75.074501037597543, -12.149022102355957 ], [ -75.0777587890625, -12.146183013915959 ], [ -75.077560424804688, -12.145115852355957 ], [ -75.076759338378849, -12.143398284912109 ], [ -75.075782775878906, -12.142449378967285 ], [ -75.075027465820312, -12.142113685607853 ], [ -75.074073791503906, -12.141953468322754 ], [ -75.073143005371037, -12.142105102539006 ], [ -75.069427490234318, -12.143500328063908 ], [ -75.068748474121037, -12.143418312072754 ], [ -75.068046569824219, -12.142992019653263 ], [ -75.065864562988281, -12.140535354614201 ], [ -75.064445495605469, -12.137314796447754 ], [ -75.062919616699219, -12.134574890136662 ], [ -75.062889099121094, -12.133815765380746 ], [ -75.063148498535099, -12.133335113525334 ], [ -75.066879272460938, -12.129828453063965 ], [ -75.067878723144531, -12.128505706787109 ], [ -75.067535400390568, -12.126859664916992 ], [ -75.066864013671818, -12.125675201415959 ], [ -75.067237854003849, -12.123804092407227 ], [ -75.067047119140568, -12.121126174926758 ], [ -75.066146850585938, -12.119002342224064 ], [ -75.064735412597656, -12.116731643676758 ], [ -75.065162658691406, -12.115585327148381 ], [ -75.066169738769474, -12.11467075347889 ], [ -75.0704345703125, -12.113745689392033 ], [ -75.070869445800724, -12.113422393798828 ], [ -75.070762634277287, -12.11208534240717 ], [ -75.068695068359375, -12.107398986816293 ], [ -75.068702697753906, -12.105925559997502 ], [ -75.070106506347599, -12.103998184204045 ], [ -75.07147216796875, -12.103114128112793 ], [ -75.071929931640625, -12.102443695068246 ], [ -75.071807861328068, -12.100171089172306 ], [ -75.071525573730412, -12.099034309387093 ], [ -75.069633483886662, -12.097089767456055 ], [ -75.068847656249943, -12.09551811218256 ], [ -75.067855834960938, -12.088877677917367 ], [ -75.067047119140568, -12.085912704467773 ], [ -75.067337036132756, -12.085018157958984 ], [ -75.068634033203125, -12.083252906799316 ], [ -75.069007873535156, -12.082260131835938 ], [ -75.069526672363224, -12.079754829406681 ], [ -75.069335937499943, -12.076270103454533 ], [ -75.070335388183594, -12.072780609130746 ], [ -75.071044921874943, -12.071632385253849 ], [ -75.073471069335938, -12.06926155090332 ], [ -75.074127197265625, -12.067779541015625 ], [ -75.074386596679631, -12.065509796142521 ], [ -75.074333190917969, -12.063502311706486 ], [ -75.073837280273438, -12.061955451965332 ], [ -75.072914123535156, -12.06046199798584 ], [ -75.07259368896473, -12.059361457824593 ], [ -75.0738525390625, -12.058835029602051 ], [ -75.078147888183594, -12.058418273925781 ], [ -75.080490112304631, -12.057649612426701 ], [ -75.082809448242188, -12.05650806427002 ], [ -75.084930419921875, -12.054599761962891 ], [ -75.085990905761719, -12.053007125854492 ], [ -75.086021423339787, -12.052067756652832 ], [ -75.085739135742131, -12.050873756408578 ], [ -75.085182189941293, -12.050475120544434 ], [ -75.083457946777287, -12.050035476684457 ], [ -75.080741882324219, -12.047013282775879 ], [ -75.079437255859318, -12.046280860900822 ], [ -75.078117370605412, -12.044087409973088 ], [ -75.077377319335938, -12.041924476623535 ], [ -75.073997497558537, -12.037528991699219 ], [ -75.072952270507756, -12.036661148071232 ], [ -75.071937561035156, -12.036254882812386 ], [ -75.070709228515625, -12.036218643188477 ], [ -75.068756103515568, -12.036862373352051 ], [ -75.067375183105469, -12.03599643707264 ], [ -75.067863464355469, -12.032258033752385 ], [ -75.067832946777344, -12.030280113220215 ], [ -75.067451477050781, -12.02934741973877 ], [ -75.066047668457031, -12.02795505523676 ], [ -75.064704895019531, -12.024852752685547 ], [ -75.063735961914062, -12.024129867553711 ], [ -75.062515258789062, -12.024076461791935 ], [ -75.061676025390625, -12.023173332214355 ], [ -75.060905456542969, -12.021464347839355 ], [ -75.060035705566406, -12.021056175231877 ], [ -75.058235168457031, -12.019400596618652 ], [ -75.057235717773381, -12.018967628479004 ], [ -75.053153991699219, -12.014421463012695 ], [ -75.048233032226562, -12.011258125305119 ], [ -75.04742431640625, -12.010517120361328 ], [ -75.047233581542969, -12.009466171264648 ], [ -75.048118591308594, -12.005791664123535 ], [ -75.048233032226562, -12.002916336059513 ], [ -75.049613952636719, -11.999580383300781 ], [ -75.049568176269531, -11.99918270111084 ], [ -75.048957824707031, -11.99866771697998 ], [ -75.045661926269531, -11.998595237731934 ], [ -75.043922424316406, -11.998234748840332 ], [ -75.042594909667969, -11.99855899810791 ], [ -75.041099548339787, -11.999502182006836 ], [ -75.038459777832031, -12.000060081481877 ], [ -75.036270141601562, -11.999266624450684 ], [ -75.034950256347656, -11.999602317810002 ], [ -75.033126831054688, -12.001255035400277 ], [ -75.032058715820256, -12.001763343811035 ], [ -75.026481628417969, -12.002079963684082 ], [ -75.024177551269531, -12.00407886505127 ], [ -75.022567749023438, -12.004359245300236 ], [ -75.021530151367188, -12.005046844482365 ], [ -75.021255493164006, -12.005497932434082 ], [ -75.02093505859375, -12.008167266845703 ], [ -75.021392822265625, -12.009731292724553 ], [ -75.022506713867131, -12.012045860290527 ], [ -75.022537231445312, -12.013004302978516 ], [ -75.021797180175781, -12.013150215148926 ], [ -75.020774841308537, -12.013004302978516 ], [ -75.018562316894531, -12.011666297912541 ], [ -75.016876220703068, -12.011096000671387 ], [ -75.014022827148381, -12.010763168334961 ], [ -75.012390136718693, -12.010915756225529 ], [ -75.011909484863224, -12.011384963989201 ], [ -75.011917114257756, -12.012606620788574 ], [ -75.011466979980469, -12.014170646667424 ], [ -75.009880065917969, -12.016035079956055 ], [ -75.008804321289062, -12.016531944274902 ], [ -75.005500793457031, -12.01679611206049 ], [ -75.002227783203125, -12.017734527587834 ], [ -75.000320434570312, -12.01984977722168 ], [ -74.998451232910156, -12.020772933959961 ], [ -74.997283935546875, -12.020928382873421 ], [ -74.996368408203068, -12.020700454711914 ], [ -74.99432373046875, -12.018947601318359 ], [ -74.991119384765568, -12.017643928527832 ], [ -74.989059448242188, -12.017245292663517 ], [ -74.986045837402344, -12.017245292663517 ], [ -74.982147216796875, -12.018168449401855 ], [ -74.979087829589844, -12.019351005554086 ], [ -74.976226806640625, -12.020916938781681 ], [ -74.974678039550781, -12.022455215454045 ], [ -74.973625183105469, -12.022994995117131 ], [ -74.971000671386662, -12.022806167602539 ], [ -74.968719482421818, -12.02372932434082 ], [ -74.967369079589787, -12.023863792419434 ], [ -74.961013793945199, -12.023116111755371 ], [ -74.959434509277344, -12.022640228271484 ], [ -74.957015991210938, -12.020744323730469 ], [ -74.953910827636719, -12.017332077026367 ], [ -74.952583312988281, -12.016246795654297 ], [ -74.951980590820312, -12.01610279083252 ], [ -74.950874328613224, -12.016240119934025 ], [ -74.948593139648381, -12.01773738861084 ], [ -74.94757080078125, -12.018136024475041 ], [ -74.945213317871094, -12.017965316772404 ], [ -74.942581176757756, -12.017258644104004 ], [ -74.940948486328125, -12.017404556274357 ], [ -74.939376831054688, -12.017889976501408 ], [ -74.937042236328068, -12.019465446472168 ], [ -74.930915832519531, -12.022445678710938 ], [ -74.928512573242188, -12.025611877441406 ], [ -74.925804138183537, -12.028424263000431 ], [ -74.921051025390568, -12.032356262207031 ], [ -74.915458679199219, -12.034550666809025 ], [ -74.912460327148381, -12.035245895385685 ], [ -74.910369873046818, -12.035129547119141 ], [ -74.908836364746037, -12.035733222961426 ], [ -74.906784057617188, -12.037787437438965 ], [ -74.905006408691349, -12.040716171264648 ], [ -74.903732299804688, -12.042251586914006 ], [ -74.896827697753849, -12.048300743103027 ], [ -74.894775390625, -12.049827575683594 ], [ -74.890907287597599, -12.051616668701172 ], [ -74.884704589843693, -12.053768157958928 ], [ -74.883430480957031, -12.053885459899902 ], [ -74.881469726562443, -12.053440093994141 ], [ -74.880867004394531, -12.053546905517578 ], [ -74.880035400390568, -12.05440616607666 ], [ -74.877189636230469, -12.05880069732666 ], [ -74.876022338867131, -12.059812545776367 ], [ -74.874824523925781, -12.060263633727914 ], [ -74.873870849609375, -12.060952186584416 ], [ -74.873153686523381, -12.061873435974064 ], [ -74.872505187988224, -12.064105987548714 ], [ -74.870880126953068, -12.065797805786133 ], [ -74.869895935058594, -12.06622123718256 ], [ -74.867240905761662, -12.066383361816349 ], [ -74.863052368164006, -12.065522193908635 ], [ -74.861404418945312, -12.065501213073674 ], [ -74.86004638671875, -12.066010475158635 ], [ -74.858787536621094, -12.066893577575684 ], [ -74.855735778808594, -12.06744480133051 ], [ -74.853500366210881, -12.068817138671875 ], [ -74.851295471191406, -12.069683074951172 ], [ -74.848320007324219, -12.07007980346674 ], [ -74.843765258789062, -12.069779396057129 ], [ -74.8406982421875, -12.07091045379633 ], [ -74.837882995605412, -12.071060180664006 ], [ -74.836364746093693, -12.070697784423828 ], [ -74.834815979003849, -12.0694580078125 ], [ -74.833122253417912, -12.067449569702148 ], [ -74.830223083496094, -12.062987327575684 ], [ -74.827430725097656, -12.060140609741154 ], [ -74.820518493652287, -12.055294990539551 ], [ -74.818389892578125, -12.05427360534668 ], [ -74.816223144531193, -12.054181098937931 ], [ -74.814300537109375, -12.055012702941895 ], [ -74.809005737304688, -12.056682586669922 ], [ -74.803916931152287, -12.05693244934082 ], [ -74.800209045410099, -12.058430671691895 ], [ -74.795303344726562, -12.05858039855957 ], [ -74.793624877929631, -12.057890892028809 ], [ -74.791030883789062, -12.057654380798283 ], [ -74.788124084472656, -12.056901931762582 ], [ -74.782035827636719, -12.053840637207031 ], [ -74.779075622558594, -12.052672386169434 ], [ -74.774993896484375, -12.052959442138672 ], [ -74.767951965332031, -12.052020072937012 ], [ -74.762397766113281, -12.051618576049805 ], [ -74.760627746581974, -12.05118370056141 ], [ -74.758728027343693, -12.050142288208008 ], [ -74.757682800292912, -12.049137115478516 ], [ -74.75543212890625, -12.046096801757812 ], [ -74.754119873046875, -12.044801712036133 ], [ -74.751701354980469, -12.043172836303597 ], [ -74.749481201171818, -12.041957855224553 ], [ -74.748184204101562, -12.041495323181152 ], [ -74.745956420898381, -12.041042327880859 ], [ -74.743942260742131, -12.040966033935547 ], [ -74.741958618164062, -12.041200637817383 ], [ -74.738273620605469, -12.043350219726562 ], [ -74.736701965331974, -12.043818473815918 ], [ -74.733970642089844, -12.04508018493641 ], [ -74.729942321777344, -12.04733943939209 ], [ -74.728614807128906, -12.048576354980469 ], [ -74.72796630859375, -12.049660682678223 ], [ -74.725799560546875, -12.051856040954533 ], [ -74.724761962890568, -12.052559852600041 ], [ -74.7225341796875, -12.053399085998535 ], [ -74.721443176269474, -12.054347038268986 ], [ -74.720787048339844, -12.055422782897949 ], [ -74.720359802246094, -12.057890892028809 ], [ -74.719978332519531, -12.058805465698185 ], [ -74.718902587890625, -12.05926322937006 ], [ -74.717071533203125, -12.059181213378906 ], [ -74.713798522949162, -12.058038711547795 ], [ -74.711318969726506, -12.056898117065373 ], [ -74.709632873535156, -12.055393218994084 ], [ -74.707550048828125, -12.052894592285156 ], [ -74.704879760742188, -12.050567626953125 ], [ -74.701934814453125, -12.046578407287484 ], [ -74.699783325195256, -12.044378280639592 ], [ -74.698226928710938, -12.043535232543888 ], [ -74.695228576660156, -12.042443275451603 ], [ -74.693351745605469, -12.041187286376896 ], [ -74.690429687499943, -12.040470123291016 ], [ -74.687141418457031, -12.038538932800293 ], [ -74.685195922851506, -12.038066864013558 ], [ -74.684638977050668, -12.037759780883789 ], [ -74.68353271484375, -12.036220550537053 ], [ -74.6827392578125, -12.031172752380314 ], [ -74.68231201171875, -12.030177116394043 ], [ -74.681922912597656, -12.029799461364746 ], [ -74.681076049804631, -12.027112007141056 ], [ -74.680046081542912, -12.02553653717041 ], [ -74.679702758789062, -12.024614334106445 ], [ -74.679618835449219, -12.021827697753849 ], [ -74.680000305175781, -12.020834922790527 ], [ -74.680061340331918, -12.019577026367188 ], [ -74.679985046386719, -12.018501281738224 ], [ -74.679618835449219, -12.017668724060059 ], [ -74.67877197265625, -12.016861915588379 ], [ -74.676864624023438, -12.016933441162109 ], [ -74.675476074218693, -12.016244888305607 ], [ -74.672004699707031, -12.012442588806152 ], [ -74.669235229492188, -12.009852409362793 ], [ -74.66705322265625, -12.008088111877441 ], [ -74.665885925292969, -12.008283615112305 ], [ -74.665298461914062, -12.008698463439885 ], [ -74.663986206054688, -12.008262634277344 ], [ -74.663200378417969, -12.00780010223383 ], [ -74.661026000976562, -12.00573825836176 ], [ -74.660598754882756, -12.004080772399846 ], [ -74.660392761230412, -12.001740455627385 ], [ -74.658256530761719, -11.996001243591309 ], [ -74.658218383789006, -11.993389129638672 ], [ -74.657356262206974, -11.991795539855957 ], [ -74.65602874755848, -11.991516113281193 ], [ -74.653434753417912, -11.992062568664551 ], [ -74.652305603027287, -11.993001937866154 ], [ -74.651527404785099, -11.994638442993164 ], [ -74.650764465331974, -11.995135307312012 ], [ -74.650177001953068, -11.995171546935978 ], [ -74.649200439453125, -11.994364738464242 ], [ -74.646644592285156, -11.991040229797306 ], [ -74.643432617187443, -11.988352775573674 ], [ -74.64202880859375, -11.987636566162109 ], [ -74.639961242675781, -11.987026214599553 ], [ -74.6358642578125, -11.986753463745117 ], [ -74.635261535644531, -11.986306190490609 ], [ -74.634178161621037, -11.986043930053597 ], [ -74.631950378417969, -11.984884262084904 ], [ -74.626579284667969, -11.98480224609375 ], [ -74.623481750488224, -11.985042572021371 ], [ -74.62249755859375, -11.986062049865723 ], [ -74.621932983398438, -11.987728118896484 ], [ -74.621315002441293, -11.988758087158146 ], [ -74.62030029296875, -11.989560127258301 ], [ -74.619270324707031, -11.989994049072209 ], [ -74.617622375488281, -11.989792823791504 ], [ -74.616897583007756, -11.989366531372013 ], [ -74.614944458007812, -11.987393379211426 ], [ -74.613601684570312, -11.98731803894043 ], [ -74.611000061035099, -11.98954868316639 ], [ -74.609672546386662, -11.991091728210392 ], [ -74.608383178710938, -11.991814613342228 ], [ -74.607963562011605, -11.995927810668888 ], [ -74.607048034667969, -11.997727394103947 ], [ -74.605758666992131, -11.998928070068359 ], [ -74.603431701660156, -11.999574661254826 ], [ -74.602333068847599, -11.999358177185059 ], [ -74.600242614746094, -11.997518539428711 ], [ -74.59804534912098, -11.996494293212891 ], [ -74.596603393554631, -11.99609470367426 ], [ -74.594467163085938, -11.996170043945256 ], [ -74.593154907226506, -11.995609283447209 ], [ -74.59283447265625, -11.994795799255371 ], [ -74.592720031738281, -11.993383407592717 ], [ -74.592971801757756, -11.992885589599609 ], [ -74.593093872070312, -11.991230964660588 ], [ -74.593681335449219, -11.990084648132324 ], [ -74.594795227050724, -11.988862991333008 ], [ -74.595138549804688, -11.987607002258244 ], [ -74.59356689453125, -11.986312866210938 ], [ -74.591812133789006, -11.986140251159611 ], [ -74.589530944824162, -11.986570358276367 ], [ -74.5882568359375, -11.986585617065373 ], [ -74.586372375488281, -11.986142158508301 ], [ -74.584976196289006, -11.986047744750863 ], [ -74.584022521972599, -11.986624717712346 ], [ -74.583160400390568, -11.987590789794865 ], [ -74.582427978515625, -11.987769126892033 ], [ -74.580268859863281, -11.986501693725529 ], [ -74.577468872070312, -11.985811233520508 ], [ -74.574775695800668, -11.984740257263184 ], [ -74.572463989257756, -11.984455108642521 ], [ -74.571395874023438, -11.985050201416016 ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-ICA", "NAME_0": "Peru", "ID_1": 11, "NAME_1": "Ica", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.923469543457031, -14.657916069030762 ], [ -75.923469543457031, -14.658193588256836 ], [ -75.923194885253906, -14.658193588256836 ], [ -75.923194885253906, -14.658472061157227 ], [ -75.922920227050781, -14.658472061157227 ], [ -75.922920227050781, -14.658749580383301 ], [ -75.92236328125, -14.658749580383301 ], [ -75.92236328125, -14.659028053283691 ], [ -75.922080993652344, -14.659028053283691 ], [ -75.922080993652344, -14.660694122314453 ], [ -75.92236328125, -14.660694122314453 ], [ -75.92236328125, -14.660971641540527 ], [ -75.922637939453125, -14.660971641540527 ], [ -75.922637939453125, -14.661250114440918 ], [ -75.922920227050781, -14.661250114440918 ], [ -75.922920227050781, -14.662083625793457 ], [ -75.923194885253906, -14.662083625793457 ], [ -75.923194885253906, -14.662362098693848 ], [ -75.923751831054688, -14.662362098693848 ], [ -75.923751831054688, -14.662083625793457 ], [ -75.924026489257756, -14.662083625793457 ], [ -75.924026489257756, -14.661527633666992 ], [ -75.924308776855412, -14.661527633666992 ], [ -75.924308776855412, -14.661250114440918 ], [ -75.924583435058537, -14.661250114440918 ], [ -75.924583435058537, -14.660971641540527 ], [ -75.925140380859375, -14.660971641540527 ], [ -75.925140380859375, -14.660694122314453 ], [ -75.925971984863281, -14.660694122314453 ], [ -75.925971984863281, -14.659861564636174 ], [ -75.925697326660156, -14.659859657287598 ], [ -75.925697326660156, -14.658749580383301 ], [ -75.924858093261662, -14.658749580383301 ], [ -75.924858093261662, -14.658472061157227 ], [ -75.924583435058537, -14.658472061157227 ], [ -75.924583435058537, -14.658193588256836 ], [ -75.924308776855412, -14.658193588256836 ], [ -75.924308776855412, -14.657916069030762 ], [ -75.923469543457031, -14.657916069030762 ] ] ], [ [ [ -76.165138244628906, -14.31069374084467 ], [ -76.165138244628906, -14.31097221374506 ], [ -76.164306640625, -14.310970306396484 ], [ -76.164306640625, -14.311249732971135 ], [ -76.163192749023381, -14.311249732971135 ], [ -76.163192749023381, -14.311805725097599 ], [ -76.162918090820256, -14.311805725097599 ], [ -76.162918090820256, -14.312359809875488 ], [ -76.162635803222599, -14.312359809875488 ], [ -76.162635803222599, -14.312915802001953 ], [ -76.162086486816406, -14.312915802001953 ], [ -76.162086486816406, -14.313750267028809 ], [ -76.162361145019531, -14.313750267028809 ], [ -76.162361145019531, -14.314027786254826 ], [ -76.162635803222599, -14.314027786254826 ], [ -76.162635803222599, -14.314306259155273 ], [ -76.162361145019531, -14.314306259155273 ], [ -76.162361145019531, -14.314862251281681 ], [ -76.162086486816406, -14.314860343933105 ], [ -76.162086486816406, -14.31513786315918 ], [ -76.16180419921875, -14.31513786315918 ], [ -76.16180419921875, -14.31541633605957 ], [ -76.161529541015625, -14.31541633605957 ], [ -76.161529541015625, -14.316805839538574 ], [ -76.160697937011719, -14.316805839538574 ], [ -76.160697937011719, -14.317638397216683 ], [ -76.160415649414006, -14.317638397216683 ], [ -76.160415649414006, -14.318194389343262 ], [ -76.160140991210881, -14.318194389343262 ], [ -76.160140991210881, -14.318471908569336 ], [ -76.159584045410099, -14.318470001220646 ], [ -76.159584045410099, -14.318751335143986 ], [ -76.158195495605469, -14.318751335143986 ], [ -76.158195495605469, -14.319304466247502 ], [ -76.157913208007812, -14.319304466247502 ], [ -76.157913208007812, -14.319860458373967 ], [ -76.157638549804688, -14.319860458373967 ], [ -76.157638549804688, -14.320417404174748 ], [ -76.157363891601506, -14.320417404174748 ], [ -76.157363891601506, -14.321526527404785 ], [ -76.157081604003849, -14.321526527404785 ], [ -76.157081604003849, -14.321806907653695 ], [ -76.156806945800724, -14.321805000305176 ], [ -76.156806945800724, -14.322083473205566 ], [ -76.156524658203068, -14.322083473205566 ], [ -76.156524658203068, -14.322360992431641 ], [ -76.15625, -14.322360992431641 ], [ -76.15625, -14.322639465332031 ], [ -76.156524658203068, -14.322639465332031 ], [ -76.156524658203068, -14.323195457458496 ], [ -76.156806945800724, -14.323195457458496 ], [ -76.156806945800724, -14.323472976684513 ], [ -76.157913208007812, -14.323472976684513 ], [ -76.157913208007812, -14.323195457458496 ], [ -76.158195495605469, -14.323195457458496 ], [ -76.158195495605469, -14.322916984558049 ], [ -76.158470153808594, -14.322916984558049 ], [ -76.158470153808594, -14.322639465332031 ], [ -76.15875244140625, -14.322639465332031 ], [ -76.15875244140625, -14.323195457458496 ], [ -76.159027099609375, -14.323195457458496 ], [ -76.159027099609375, -14.323472976684513 ], [ -76.159301757812443, -14.323471069335938 ], [ -76.159301757812443, -14.323748588562012 ], [ -76.159584045410099, -14.323751449584904 ], [ -76.159584045410099, -14.324028968810978 ], [ -76.159858703613224, -14.324027061462402 ], [ -76.159858703613224, -14.324304580688477 ], [ -76.160140991210881, -14.324304580688477 ], [ -76.160140991210881, -14.324860572814941 ], [ -76.160415649414006, -14.324860572814941 ], [ -76.160415649414006, -14.325416564941406 ], [ -76.160697937011719, -14.325416564941406 ], [ -76.160697937011719, -14.325695037841797 ], [ -76.162086486816406, -14.325695037841797 ], [ -76.162086486816406, -14.325416564941406 ], [ -76.162361145019531, -14.325416564941406 ], [ -76.162361145019531, -14.324860572814941 ], [ -76.162635803222599, -14.324860572814941 ], [ -76.162635803222599, -14.324304580688477 ], [ -76.162918090820256, -14.324304580688477 ], [ -76.162918090820256, -14.323751449584904 ], [ -76.163192749023381, -14.323748588562012 ], [ -76.163192749023381, -14.323471069335938 ], [ -76.164581298828125, -14.323471069335938 ], [ -76.164581298828125, -14.322916984558049 ], [ -76.164863586425781, -14.322916984558049 ], [ -76.164863586425781, -14.322639465332031 ], [ -76.165412902832031, -14.322639465332031 ], [ -76.165412902832031, -14.322360992431641 ], [ -76.165695190429574, -14.322360992431641 ], [ -76.165695190429574, -14.321805000305176 ], [ -76.165412902832031, -14.321805000305176 ], [ -76.165412902832031, -14.320694923400822 ], [ -76.165695190429574, -14.32069206237793 ], [ -76.165695190429574, -14.320138931274357 ], [ -76.165412902832031, -14.320138931274357 ], [ -76.165412902832031, -14.319860458373967 ], [ -76.165138244628906, -14.319860458373967 ], [ -76.165138244628906, -14.319581985473576 ], [ -76.164863586425781, -14.319581985473576 ], [ -76.164863586425781, -14.319304466247502 ], [ -76.164581298828125, -14.319304466247502 ], [ -76.164581298828125, -14.319025993347111 ], [ -76.164306640625, -14.319028854370117 ], [ -76.164306640625, -14.318751335143986 ], [ -76.163475036621037, -14.318751335143986 ], [ -76.163475036621037, -14.318470001220646 ], [ -76.163192749023381, -14.318471908569336 ], [ -76.163192749023381, -14.317915916442871 ], [ -76.162918090820256, -14.317915916442871 ], [ -76.162918090820256, -14.317359924316406 ], [ -76.163192749023381, -14.317359924316406 ], [ -76.163192749023381, -14.317084312438965 ], [ -76.163749694824219, -14.317084312438965 ], [ -76.163749694824219, -14.317359924316406 ], [ -76.164306640625, -14.317359924316406 ], [ -76.164306640625, -14.317915916442871 ], [ -76.164581298828125, -14.317915916442871 ], [ -76.164581298828125, -14.318194389343262 ], [ -76.165138244628906, -14.318194389343262 ], [ -76.165138244628906, -14.318471908569336 ], [ -76.165412902832031, -14.318470001220646 ], [ -76.165412902832031, -14.319304466247502 ], [ -76.165695190429574, -14.319304466247502 ], [ -76.165695190429574, -14.319860458373967 ], [ -76.165969848632756, -14.319860458373967 ], [ -76.165969848632756, -14.320138931274357 ], [ -76.1673583984375, -14.320138931274357 ], [ -76.1673583984375, -14.319860458373967 ], [ -76.167640686035156, -14.319860458373967 ], [ -76.167640686035156, -14.319581985473576 ], [ -76.167915344238281, -14.319581985473576 ], [ -76.167915344238281, -14.319304466247502 ], [ -76.168197631835938, -14.319304466247502 ], [ -76.168197631835938, -14.318470001220646 ], [ -76.168472290039062, -14.318471908569336 ], [ -76.168472290039062, -14.318194389343262 ], [ -76.168746948242074, -14.318194389343262 ], [ -76.168746948242074, -14.317638397216683 ], [ -76.169029235839787, -14.317638397216683 ], [ -76.169029235839787, -14.317359924316406 ], [ -76.169303894042912, -14.317359924316406 ], [ -76.169303894042912, -14.317084312438965 ], [ -76.169586181640568, -14.317084312438965 ], [ -76.169586181640568, -14.316805839538574 ], [ -76.170135498046875, -14.316805839538574 ], [ -76.170135498046875, -14.3165283203125 ], [ -76.170692443847656, -14.3165283203125 ], [ -76.170692443847656, -14.315693855285645 ], [ -76.170974731445312, -14.315693855285645 ], [ -76.170974731445312, -14.314860343933105 ], [ -76.170692443847656, -14.314862251281681 ], [ -76.170692443847656, -14.314583778381291 ], [ -76.169586181640568, -14.314583778381291 ], [ -76.169586181640568, -14.314027786254826 ], [ -76.169303894042912, -14.314027786254826 ], [ -76.169303894042912, -14.313750267028809 ], [ -76.167915344238281, -14.313750267028809 ], [ -76.167915344238281, -14.313471794128418 ], [ -76.167083740234375, -14.313471794128418 ], [ -76.167083740234375, -14.312359809875488 ], [ -76.166809082031193, -14.312359809875488 ], [ -76.166809082031193, -14.311805725097599 ], [ -76.166526794433537, -14.311805725097599 ], [ -76.166526794433537, -14.31069374084467 ], [ -76.165138244628906, -14.31069374084467 ] ] ], [ [ [ -76.168746948242074, -14.30652809143055 ], [ -76.168746948242074, -14.307081222534123 ], [ -76.168472290039062, -14.307081222534123 ], [ -76.168472290039062, -14.307637214660588 ], [ -76.168197631835938, -14.307637214660588 ], [ -76.168197631835938, -14.308471679687443 ], [ -76.167915344238281, -14.308471679687443 ], [ -76.167915344238281, -14.309027671813851 ], [ -76.168197631835938, -14.309027671813851 ], [ -76.168197631835938, -14.309306144714299 ], [ -76.169586181640568, -14.309306144714299 ], [ -76.169586181640568, -14.309027671813851 ], [ -76.169860839843693, -14.309027671813851 ], [ -76.169860839843693, -14.308747291564941 ], [ -76.170135498046875, -14.308750152587834 ], [ -76.170135498046875, -14.308471679687443 ], [ -76.170417785644531, -14.308471679687443 ], [ -76.170417785644531, -14.307915687560978 ], [ -76.170135498046875, -14.307915687560978 ], [ -76.170135498046875, -14.307081222534123 ], [ -76.169860839843693, -14.307081222534123 ], [ -76.169860839843693, -14.30652809143055 ], [ -76.168746948242074, -14.30652809143055 ] ] ], [ [ [ -76.211250305175724, -14.258749961852971 ], [ -76.211250305175724, -14.259028434753361 ], [ -76.210136413574105, -14.259028434753361 ], [ -76.210136413574105, -14.259305953979435 ], [ -76.209304809570312, -14.259305953979435 ], [ -76.209304809570312, -14.259584426879826 ], [ -76.20819091796875, -14.259584426879826 ], [ -76.20819091796875, -14.259860038757324 ], [ -76.207359313964787, -14.259860038757324 ], [ -76.207359313964787, -14.260137557983398 ], [ -76.206253051757812, -14.260137557983398 ], [ -76.206253051757812, -14.260416030883789 ], [ -76.204864501953068, -14.260416030883789 ], [ -76.204864501953068, -14.260693550109806 ], [ -76.203475952148438, -14.260693550109806 ], [ -76.203475952148438, -14.260972023010254 ], [ -76.201805114746037, -14.260972023010254 ], [ -76.201805114746037, -14.261249542236271 ], [ -76.200973510742131, -14.261249542236271 ], [ -76.200973510742131, -14.260972023010254 ], [ -76.200691223144474, -14.260972023010254 ], [ -76.200691223144474, -14.260693550109806 ], [ -76.200141906738281, -14.260693550109806 ], [ -76.200141906738281, -14.260416030883789 ], [ -76.199859619140625, -14.260416030883789 ], [ -76.199859619140625, -14.260137557983398 ], [ -76.19708251953125, -14.260137557983398 ], [ -76.19708251953125, -14.260416030883789 ], [ -76.196807861328125, -14.260416030883789 ], [ -76.196807861328125, -14.260693550109806 ], [ -76.196525573730469, -14.260693550109806 ], [ -76.196525573730469, -14.260972023010254 ], [ -76.196250915527344, -14.260972023010254 ], [ -76.196250915527344, -14.262638092041016 ], [ -76.19708251953125, -14.262638092041016 ], [ -76.19708251953125, -14.26291561126709 ], [ -76.197914123535099, -14.26291561126709 ], [ -76.197914123535099, -14.26319408416748 ], [ -76.199028015136719, -14.263192176818791 ], [ -76.199028015136719, -14.262082099914551 ], [ -76.199859619140625, -14.262082099914551 ], [ -76.199859619140625, -14.262361526489201 ], [ -76.200416564941406, -14.262361526489201 ], [ -76.200416564941406, -14.26319408416748 ], [ -76.200141906738281, -14.263192176818791 ], [ -76.200141906738281, -14.263748168945256 ], [ -76.1995849609375, -14.263748168945256 ], [ -76.1995849609375, -14.264027595519963 ], [ -76.199028015136719, -14.264027595519963 ], [ -76.199028015136719, -14.264304161071664 ], [ -76.198196411132756, -14.264304161071664 ], [ -76.198196411132756, -14.264584541320801 ], [ -76.197914123535099, -14.264584541320801 ], [ -76.197914123535099, -14.264860153198242 ], [ -76.197639465331974, -14.264860153198242 ], [ -76.197639465331974, -14.265137672424316 ], [ -76.197364807128906, -14.265137672424316 ], [ -76.197364807128906, -14.265416145324707 ], [ -76.196807861328125, -14.265416145324707 ], [ -76.196807861328125, -14.265694618225098 ], [ -76.196250915527344, -14.265694618225098 ], [ -76.196250915527344, -14.265973091125375 ], [ -76.195693969726562, -14.265970230102482 ], [ -76.195693969726562, -14.266250610351562 ], [ -76.195137023925724, -14.266250610351562 ], [ -76.195137023925724, -14.266529083251953 ], [ -76.194305419921761, -14.266526222228947 ], [ -76.194305419921761, -14.266806602478027 ], [ -76.193748474121094, -14.266806602478027 ], [ -76.193748474121094, -14.267083168029728 ], [ -76.193191528320312, -14.267083168029728 ], [ -76.193191528320312, -14.267360687255803 ], [ -76.192359924316406, -14.267360687255803 ], [ -76.192359924316406, -14.267639160156193 ], [ -76.191802978515568, -14.267639160156193 ], [ -76.191802978515568, -14.267916679382267 ], [ -76.191528320312443, -14.267916679382267 ], [ -76.191528320312443, -14.268195152282658 ], [ -76.190971374511719, -14.268192291259766 ], [ -76.190971374511719, -14.268472671508675 ], [ -76.190696716308594, -14.268472671508675 ], [ -76.190696716308594, -14.268751144409123 ], [ -76.190414428710938, -14.268749237060547 ], [ -76.190414428710938, -14.269026756286621 ], [ -76.189857482910156, -14.269026756286621 ], [ -76.189857482910156, -14.269305229187012 ], [ -76.189582824707031, -14.269305229187012 ], [ -76.189582824707031, -14.269582748413029 ], [ -76.189308166503906, -14.269582748413029 ], [ -76.189308166503906, -14.269861221313477 ], [ -76.189025878906193, -14.269861221313477 ], [ -76.189025878906193, -14.270138740539494 ], [ -76.188751220703068, -14.270138740539494 ], [ -76.188751220703068, -14.270417213439885 ], [ -76.188468933105412, -14.270415306091309 ], [ -76.188468933105412, -14.270694732665959 ], [ -76.188194274902287, -14.270694732665959 ], [ -76.188194274902287, -14.270973205566349 ], [ -76.187919616699219, -14.270971298217773 ], [ -76.187919616699219, -14.271248817443848 ], [ -76.187362670898438, -14.271248817443848 ], [ -76.187362670898438, -14.271527290344238 ], [ -76.187080383300781, -14.271527290344238 ], [ -76.187080383300781, -14.272083282470703 ], [ -76.186805725097656, -14.272083282470703 ], [ -76.186805725097656, -14.272639274597168 ], [ -76.186531066894531, -14.272639274597168 ], [ -76.186531066894531, -14.273195266723633 ], [ -76.186248779296875, -14.273195266723633 ], [ -76.186248779296875, -14.273751258850098 ], [ -76.185974121093693, -14.273751258850098 ], [ -76.185974121093693, -14.27430534362793 ], [ -76.185691833496037, -14.27430534362793 ], [ -76.185691833496037, -14.274861335754395 ], [ -76.185417175292912, -14.274861335754395 ], [ -76.185417175292912, -14.277917861938363 ], [ -76.185691833496037, -14.277915000915471 ], [ -76.185691833496037, -14.2790269851684 ], [ -76.185974121093693, -14.2790269851684 ], [ -76.185974121093693, -14.280694007873535 ], [ -76.186248779296875, -14.280694007873535 ], [ -76.186248779296875, -14.28125 ], [ -76.185974121093693, -14.28125 ], [ -76.185974121093693, -14.281805992126465 ], [ -76.185691833496037, -14.281805992126465 ], [ -76.185691833496037, -14.282916069030762 ], [ -76.185417175292912, -14.282916069030762 ], [ -76.185417175292912, -14.283193588256836 ], [ -76.185142517089787, -14.283193588256836 ], [ -76.185142517089787, -14.283472061157227 ], [ -76.184303283691406, -14.283472061157227 ], [ -76.184303283691406, -14.283749580383301 ], [ -76.184028625488281, -14.283749580383301 ], [ -76.184028625488281, -14.284028053283691 ], [ -76.183746337890625, -14.284028053283691 ], [ -76.183746337890625, -14.284305572509766 ], [ -76.1834716796875, -14.284305572509766 ], [ -76.1834716796875, -14.284584045410156 ], [ -76.183197021484375, -14.284582138061467 ], [ -76.183197021484375, -14.284859657287598 ], [ -76.181808471679631, -14.28486156463623 ], [ -76.181808471679631, -14.285140037536621 ], [ -76.181526184081918, -14.285138130187875 ], [ -76.181526184081918, -14.285415649414062 ], [ -76.181251525878906, -14.285415649414062 ], [ -76.181251525878906, -14.285694122314453 ], [ -76.18096923828125, -14.285694122314453 ], [ -76.18096923828125, -14.285971641540527 ], [ -76.180419921875, -14.285971641540527 ], [ -76.180419921875, -14.286250114440918 ], [ -76.179580688476562, -14.286250114440918 ], [ -76.179580688476562, -14.286527633666992 ], [ -76.179306030273381, -14.286527633666992 ], [ -76.179306030273381, -14.286806106567383 ], [ -76.178749084472599, -14.286804199218693 ], [ -76.178749084472599, -14.287083625793457 ], [ -76.177635192871094, -14.287083625793457 ], [ -76.177635192871094, -14.287362098693848 ], [ -76.176246643066349, -14.287360191345158 ], [ -76.176246643066349, -14.287637710571232 ], [ -76.175971984863224, -14.287637710571232 ], [ -76.175971984863224, -14.287916183471623 ], [ -76.175697326660099, -14.287916183471623 ], [ -76.175697326660099, -14.288472175598088 ], [ -76.175415039062443, -14.288472175598088 ], [ -76.175415039062443, -14.288749694824219 ], [ -76.175140380859375, -14.288749694824219 ], [ -76.175140380859375, -14.289028167724496 ], [ -76.174858093261719, -14.289028167724496 ], [ -76.174858093261719, -14.289582252502441 ], [ -76.174583435058594, -14.289582252502441 ], [ -76.174583435058594, -14.290138244628849 ], [ -76.174308776855469, -14.290138244628849 ], [ -76.174308776855469, -14.291248321533203 ], [ -76.174026489257812, -14.291248321533203 ], [ -76.174026489257812, -14.292363166809025 ], [ -76.174308776855469, -14.292360305786133 ], [ -76.174308776855469, -14.292917251586914 ], [ -76.174583435058594, -14.292917251586914 ], [ -76.174583435058594, -14.293194770812988 ], [ -76.175140380859375, -14.293194770812988 ], [ -76.175140380859375, -14.293473243713379 ], [ -76.175415039062443, -14.293473243713379 ], [ -76.175415039062443, -14.294026374816895 ], [ -76.175697326660099, -14.294026374816895 ], [ -76.175697326660099, -14.294583320617562 ], [ -76.175971984863224, -14.294583320617562 ], [ -76.175971984863224, -14.295139312744141 ], [ -76.176246643066349, -14.295139312744141 ], [ -76.176246643066349, -14.29625129699707 ], [ -76.176528930664062, -14.29625129699707 ], [ -76.176528930664062, -14.297638893127441 ], [ -76.176246643066349, -14.297638893127441 ], [ -76.176246643066349, -14.297917366027718 ], [ -76.175697326660099, -14.297917366027718 ], [ -76.175697326660099, -14.298194885253906 ], [ -76.175415039062443, -14.298194885253906 ], [ -76.175415039062443, -14.298473358154297 ], [ -76.175140380859375, -14.298473358154297 ], [ -76.175140380859375, -14.298748970031681 ], [ -76.174858093261719, -14.298748970031681 ], [ -76.174858093261719, -14.299027442932072 ], [ -76.174583435058594, -14.299027442932072 ], [ -76.174583435058594, -14.299304962158146 ], [ -76.174308776855469, -14.299304962158146 ], [ -76.174308776855469, -14.300139427185002 ], [ -76.174583435058594, -14.300139427185002 ], [ -76.174583435058594, -14.300971031188965 ], [ -76.174858093261719, -14.300971031188965 ], [ -76.174858093261719, -14.30152702331543 ], [ -76.175140380859375, -14.30152702331543 ], [ -76.175140380859375, -14.301804542541447 ], [ -76.175415039062443, -14.301804542541447 ], [ -76.175415039062443, -14.302083015441838 ], [ -76.175697326660099, -14.302083015441838 ], [ -76.175697326660099, -14.302360534667912 ], [ -76.175971984863224, -14.302360534667912 ], [ -76.175971984863224, -14.302639007568303 ], [ -76.176246643066349, -14.302637100219727 ], [ -76.176246643066349, -14.303193092346191 ], [ -76.176528930664062, -14.303193092346191 ], [ -76.176528930664062, -14.303749084472656 ], [ -76.176803588867188, -14.303749084472656 ], [ -76.176803588867188, -14.304305076599121 ], [ -76.178474426269418, -14.304305076599121 ], [ -76.178474426269418, -14.303193092346191 ], [ -76.178192138671875, -14.303193092346191 ], [ -76.178192138671875, -14.300971031188965 ], [ -76.17791748046875, -14.300971031188965 ], [ -76.17791748046875, -14.298748970031681 ], [ -76.178192138671875, -14.298748970031681 ], [ -76.178192138671875, -14.29736137390131 ], [ -76.178474426269418, -14.29736137390131 ], [ -76.178474426269418, -14.296805381774846 ], [ -76.178749084472599, -14.296805381774846 ], [ -76.178749084472599, -14.29625129699707 ], [ -76.179031372070256, -14.29625129699707 ], [ -76.179031372070256, -14.29597282409668 ], [ -76.179580688476562, -14.29597282409668 ], [ -76.179580688476562, -14.296528816223145 ], [ -76.180137634277344, -14.296528816223145 ], [ -76.180137634277344, -14.298473358154297 ], [ -76.180694580078125, -14.298473358154297 ], [ -76.180694580078125, -14.298748970031681 ], [ -76.181526184081918, -14.298748970031681 ], [ -76.181526184081918, -14.298473358154297 ], [ -76.182357788085881, -14.298473358154297 ], [ -76.182357788085881, -14.298194885253906 ], [ -76.183197021484375, -14.298194885253906 ], [ -76.183197021484375, -14.297917366027718 ], [ -76.1834716796875, -14.297917366027718 ], [ -76.1834716796875, -14.29736137390131 ], [ -76.183746337890625, -14.29736137390131 ], [ -76.183746337890625, -14.295695304870605 ], [ -76.184303283691406, -14.295695304870605 ], [ -76.184303283691406, -14.295416831970215 ], [ -76.184860229492131, -14.295416831970215 ], [ -76.184860229492131, -14.295139312744141 ], [ -76.185417175292912, -14.295139312744141 ], [ -76.185417175292912, -14.295416831970215 ], [ -76.185691833496037, -14.295416831970215 ], [ -76.185691833496037, -14.29486083984375 ], [ -76.186248779296875, -14.29486083984375 ], [ -76.186248779296875, -14.294306755065861 ], [ -76.187637329101562, -14.294306755065861 ], [ -76.187637329101562, -14.294026374816895 ], [ -76.188194274902287, -14.294026374816895 ], [ -76.188194274902287, -14.294306755065861 ], [ -76.188468933105412, -14.294306755065861 ], [ -76.188468933105412, -14.294583320617562 ], [ -76.191802978515568, -14.294583320617562 ], [ -76.191802978515568, -14.294306755065861 ], [ -76.192359924316406, -14.294306755065861 ], [ -76.192359924316406, -14.294029235839844 ], [ -76.192642211914062, -14.294026374816895 ], [ -76.192642211914062, -14.293750762939453 ], [ -76.192916870117188, -14.293750762939453 ], [ -76.192916870117188, -14.293473243713379 ], [ -76.193473815917969, -14.293473243713379 ], [ -76.193473815917969, -14.293194770812988 ], [ -76.19403076171875, -14.293194770812988 ], [ -76.19403076171875, -14.292917251586914 ], [ -76.195419311523381, -14.292917251586914 ], [ -76.195419311523381, -14.29263782501215 ], [ -76.195968627929688, -14.29263782501215 ], [ -76.195968627929688, -14.292360305786133 ], [ -76.196525573730469, -14.292360305786133 ], [ -76.196525573730469, -14.292084693908635 ], [ -76.197364807128906, -14.292084693908635 ], [ -76.197364807128906, -14.291804313659668 ], [ -76.198196411132756, -14.291804313659668 ], [ -76.198196411132756, -14.29152870178217 ], [ -76.199302673339844, -14.29152870178217 ], [ -76.199302673339844, -14.291248321533203 ], [ -76.200691223144474, -14.291250228881779 ], [ -76.200691223144474, -14.290971755981388 ], [ -76.201805114746037, -14.290971755981388 ], [ -76.201805114746037, -14.290694236755314 ], [ -76.202079772949219, -14.290694236755314 ], [ -76.202079772949219, -14.290415763854924 ], [ -76.202362060546875, -14.290415763854924 ], [ -76.202362060546875, -14.290138244628849 ], [ -76.20263671875, -14.290138244628849 ], [ -76.20263671875, -14.289859771728459 ], [ -76.202919006347656, -14.289859771728459 ], [ -76.202919006347656, -14.289582252502441 ], [ -76.203193664550781, -14.289582252502441 ], [ -76.203193664550781, -14.289305686950684 ], [ -76.203475952148438, -14.289305686950684 ], [ -76.203475952148438, -14.289028167724496 ], [ -76.203750610351562, -14.289028167724496 ], [ -76.203750610351562, -14.287916183471623 ], [ -76.204307556152287, -14.287916183471623 ], [ -76.204307556152287, -14.287637710571232 ], [ -76.20513916015625, -14.287637710571232 ], [ -76.20513916015625, -14.287360191345158 ], [ -76.205696105957031, -14.287362098693848 ], [ -76.205696105957031, -14.287083625793457 ], [ -76.206253051757812, -14.287083625793457 ], [ -76.206253051757812, -14.286804199218693 ], [ -76.207359313964787, -14.286806106567383 ], [ -76.207359313964787, -14.286527633666992 ], [ -76.20819091796875, -14.286527633666992 ], [ -76.20819091796875, -14.286250114440918 ], [ -76.208473205566406, -14.286250114440918 ], [ -76.208473205566406, -14.285971641540527 ], [ -76.208747863769531, -14.285971641540527 ], [ -76.208747863769531, -14.285694122314453 ], [ -76.209030151367188, -14.285694122314453 ], [ -76.209030151367188, -14.285415649414062 ], [ -76.209304809570312, -14.285415649414062 ], [ -76.209304809570312, -14.285138130187875 ], [ -76.209587097167969, -14.285140037536621 ], [ -76.209587097167969, -14.28486156463623 ], [ -76.210136413574105, -14.28486156463623 ], [ -76.210136413574105, -14.284582138061467 ], [ -76.210418701171818, -14.284582138061467 ], [ -76.210418701171818, -14.284028053283691 ], [ -76.210693359374943, -14.284028053283691 ], [ -76.210693359374943, -14.283472061157227 ], [ -76.210975646972599, -14.283472061157227 ], [ -76.210975646972599, -14.283193588256836 ], [ -76.211250305175724, -14.283193588256836 ], [ -76.211250305175724, -14.282916069030762 ], [ -76.211807250976562, -14.282917976379338 ], [ -76.211807250976562, -14.282637596130371 ], [ -76.212081909179688, -14.282637596130371 ], [ -76.212081909179688, -14.282360076904297 ], [ -76.212364196777344, -14.282361984252873 ], [ -76.212364196777344, -14.282084465026855 ], [ -76.212638854980469, -14.282084465026855 ], [ -76.212638854980469, -14.281528472900391 ], [ -76.212913513183594, -14.281528472900391 ], [ -76.212913513183594, -14.280694007873535 ], [ -76.21319580078125, -14.280694007873535 ], [ -76.21319580078125, -14.280137062072754 ], [ -76.213470458984318, -14.280137062072754 ], [ -76.213470458984318, -14.279581069946289 ], [ -76.213752746581974, -14.279583930969181 ], [ -76.213752746581974, -14.279306411743164 ], [ -76.214027404785099, -14.279306411743164 ], [ -76.214027404785099, -14.2790269851684 ], [ -76.214302062988224, -14.2790269851684 ], [ -76.214302062988224, -14.278749465942326 ], [ -76.214584350585881, -14.278749465942326 ], [ -76.214584350585881, -14.278470993041935 ], [ -76.214859008789062, -14.278470993041935 ], [ -76.214859008789062, -14.277915000915471 ], [ -76.215141296386719, -14.277917861938363 ], [ -76.215141296386719, -14.277639389038086 ], [ -76.215415954589844, -14.277639389038086 ], [ -76.215415954589844, -14.277359008789006 ], [ -76.2156982421875, -14.277360916137695 ], [ -76.2156982421875, -14.27680492401123 ], [ -76.215972900390625, -14.27680492401123 ], [ -76.215972900390625, -14.276248931884652 ], [ -76.21624755859375, -14.276248931884652 ], [ -76.21624755859375, -14.275694847106934 ], [ -76.216529846191406, -14.275694847106934 ], [ -76.216529846191406, -14.275417327880859 ], [ -76.217636108398381, -14.275417327880859 ], [ -76.217636108398381, -14.275138854980469 ], [ -76.217918395996094, -14.275138854980469 ], [ -76.217918395996094, -14.274861335754395 ], [ -76.218193054199219, -14.274861335754395 ], [ -76.218193054199219, -14.274582862854004 ], [ -76.218475341796875, -14.274582862854004 ], [ -76.218475341796875, -14.27430534362793 ], [ -76.21875, -14.27430534362793 ], [ -76.21875, -14.274026870727539 ], [ -76.219024658203125, -14.274026870727539 ], [ -76.219024658203125, -14.273195266723633 ], [ -76.21875, -14.273195266723633 ], [ -76.21875, -14.271804809570312 ], [ -76.218475341796875, -14.271804809570312 ], [ -76.218475341796875, -14.270971298217773 ], [ -76.21875, -14.270971298217773 ], [ -76.21875, -14.269861221313477 ], [ -76.218475341796875, -14.269861221313477 ], [ -76.218475341796875, -14.269582748413029 ], [ -76.21875, -14.269582748413029 ], [ -76.21875, -14.268472671508675 ], [ -76.218475341796875, -14.268472671508675 ], [ -76.218475341796875, -14.268192291259766 ], [ -76.21875, -14.268195152282658 ], [ -76.21875, -14.267360687255803 ], [ -76.219306945800781, -14.267360687255803 ], [ -76.219306945800781, -14.267083168029728 ], [ -76.219024658203125, -14.267083168029728 ], [ -76.219024658203125, -14.264584541320801 ], [ -76.219306945800781, -14.264584541320801 ], [ -76.219306945800781, -14.263748168945256 ], [ -76.219024658203125, -14.263750076293945 ], [ -76.219024658203125, -14.261805534362736 ], [ -76.21875, -14.261805534362736 ], [ -76.21875, -14.261526107788086 ], [ -76.218475341796875, -14.261528015136662 ], [ -76.218475341796875, -14.261249542236271 ], [ -76.218193054199219, -14.261249542236271 ], [ -76.218193054199219, -14.260972023010254 ], [ -76.217918395996094, -14.260972023010254 ], [ -76.217918395996094, -14.260137557983398 ], [ -76.217636108398381, -14.260137557983398 ], [ -76.217636108398381, -14.259584426879826 ], [ -76.217361450195256, -14.259584426879826 ], [ -76.217361450195256, -14.259305953979435 ], [ -76.217086791992131, -14.259305953979435 ], [ -76.217086791992131, -14.259028434753361 ], [ -76.215415954589844, -14.259028434753361 ], [ -76.215415954589844, -14.258749961852971 ], [ -76.211250305175724, -14.258749961852971 ] ] ], [ [ [ -76.267082214355469, -14.05041599273676 ], [ -76.267082214355469, -14.050695419311523 ], [ -76.266525268554688, -14.050695419311523 ], [ -76.266525268554688, -14.050972938537598 ], [ -76.265975952148438, -14.050970077514648 ], [ -76.265975952148438, -14.051526069641113 ], [ -76.265693664550781, -14.051526069641113 ], [ -76.265693664550781, -14.052639007568359 ], [ -76.265975952148438, -14.052639007568359 ], [ -76.265975952148438, -14.053192138671875 ], [ -76.265693664550781, -14.053192138671875 ], [ -76.265693664550781, -14.053749084472599 ], [ -76.265419006347599, -14.053749084472599 ], [ -76.265419006347599, -14.05402660369873 ], [ -76.265975952148438, -14.05402660369873 ], [ -76.265975952148438, -14.054306983947754 ], [ -76.266807556152344, -14.054305076599007 ], [ -76.266807556152344, -14.054582595825195 ], [ -76.267364501953125, -14.054582595825195 ], [ -76.267364501953125, -14.054305076599007 ], [ -76.267913818359318, -14.054306983947754 ], [ -76.267913818359318, -14.05402660369873 ], [ -76.268196105956974, -14.05402660369873 ], [ -76.268196105956974, -14.053749084472599 ], [ -76.269027709960938, -14.053749084472599 ], [ -76.269027709960938, -14.05402660369873 ], [ -76.2701416015625, -14.05402660369873 ], [ -76.2701416015625, -14.053749084472599 ], [ -76.270416259765625, -14.053750991821289 ], [ -76.270416259765625, -14.053473472595215 ], [ -76.270690917968693, -14.053473472595215 ], [ -76.270690917968693, -14.053192138671875 ], [ -76.272087097167969, -14.053194999694824 ], [ -76.272087097167969, -14.052916526794434 ], [ -76.272636413574219, -14.052916526794434 ], [ -76.272636413574219, -14.052083015441895 ], [ -76.272918701171875, -14.052083015441895 ], [ -76.272918701171875, -14.050970077514648 ], [ -76.268470764160099, -14.050972938537598 ], [ -76.268470764160099, -14.050695419311523 ], [ -76.268196105956974, -14.050695419311523 ], [ -76.268196105956974, -14.05041599273676 ], [ -76.267082214355469, -14.05041599273676 ] ] ], [ [ [ -76.289581298828125, -13.995694160461369 ], [ -76.289581298828125, -13.9959716796875 ], [ -76.289306640625, -13.9959716796875 ], [ -76.289306640625, -13.996804237365723 ], [ -76.289024353027344, -13.996804237365723 ], [ -76.289024353027344, -13.99791431427002 ], [ -76.289306640625, -13.99791431427002 ], [ -76.289306640625, -13.998194694518986 ], [ -76.290138244628849, -13.998194694518986 ], [ -76.290138244628849, -13.99791431427002 ], [ -76.290695190429631, -13.997917175292969 ], [ -76.290695190429631, -13.997638702392578 ], [ -76.290969848632812, -13.997638702392578 ], [ -76.290969848632812, -13.997084617614632 ], [ -76.291526794433594, -13.997084617614632 ], [ -76.291526794433594, -13.996804237365723 ], [ -76.29180908203125, -13.996804237365723 ], [ -76.29180908203125, -13.996528625488224 ], [ -76.291526794433594, -13.996528625488224 ], [ -76.291526794433594, -13.996248245239258 ], [ -76.291252136230469, -13.99625110626215 ], [ -76.291252136230469, -13.9959716796875 ], [ -76.290412902831974, -13.9959716796875 ], [ -76.290412902831974, -13.99625110626215 ], [ -76.290138244628849, -13.99625110626215 ], [ -76.290138244628849, -13.9959716796875 ], [ -76.289863586425668, -13.9959716796875 ], [ -76.289863586425668, -13.995694160461369 ], [ -76.289581298828125, -13.995694160461369 ] ] ], [ [ [ -76.298751831054688, -13.994582176208439 ], [ -76.298751831054688, -13.994859695434513 ], [ -76.298469543457031, -13.994859695434513 ], [ -76.298469543457031, -13.995138168334904 ], [ -76.298194885253906, -13.995138168334904 ], [ -76.298194885253906, -13.995694160461369 ], [ -76.298469543457031, -13.995694160461369 ], [ -76.298469543457031, -13.996804237365723 ], [ -76.298751831054688, -13.996804237365723 ], [ -76.298751831054688, -13.99791431427002 ], [ -76.297920227050781, -13.997917175292969 ], [ -76.297920227050781, -13.997638702392578 ], [ -76.297637939453125, -13.997638702392578 ], [ -76.297637939453125, -13.997360229492131 ], [ -76.296806335449162, -13.997360229492131 ], [ -76.296806335449162, -13.997638702392578 ], [ -76.296524047851506, -13.997638702392578 ], [ -76.296524047851506, -13.998750686645451 ], [ -76.296806335449162, -13.998750686645451 ], [ -76.296806335449162, -13.999029159545842 ], [ -76.297080993652287, -13.999027252197266 ], [ -76.297080993652287, -13.99958324432373 ], [ -76.296806335449162, -13.99958324432373 ], [ -76.296806335449162, -13.999860763549805 ], [ -76.296806335449162, -14.000139236450195 ], [ -76.296806335449162, -14.00041675567627 ], [ -76.298194885253906, -14.00041675567627 ], [ -76.298194885253906, -14.000139236450195 ], [ -76.298194885253906, -13.999860763549805 ], [ -76.298194885253906, -13.99930477142334 ], [ -76.298751831054688, -13.99930477142334 ], [ -76.298751831054688, -13.999027252197266 ], [ -76.299308776855469, -13.999027252197266 ], [ -76.299308776855469, -13.99930477142334 ], [ -76.299858093261662, -13.99930477142334 ], [ -76.299858093261662, -13.99958324432373 ], [ -76.300415039062443, -13.99958324432373 ], [ -76.300415039062443, -13.99930477142334 ], [ -76.300697326660156, -13.99930477142334 ], [ -76.300697326660156, -13.998194694518986 ], [ -76.300415039062443, -13.998194694518986 ], [ -76.300415039062443, -13.997360229492131 ], [ -76.300697326660156, -13.997360229492131 ], [ -76.300697326660156, -13.997084617614632 ], [ -76.300415039062443, -13.997084617614632 ], [ -76.300415039062443, -13.996804237365723 ], [ -76.300140380859318, -13.996804237365723 ], [ -76.300140380859318, -13.9959716796875 ], [ -76.300415039062443, -13.9959716796875 ], [ -76.300415039062443, -13.995415687560921 ], [ -76.299858093261662, -13.995415687560921 ], [ -76.299858093261662, -13.995694160461369 ], [ -76.299583435058537, -13.995694160461369 ], [ -76.299583435058537, -13.995415687560921 ], [ -76.299308776855469, -13.995415687560921 ], [ -76.299308776855469, -13.994859695434513 ], [ -76.299026489257812, -13.994859695434513 ], [ -76.299026489257812, -13.994582176208439 ], [ -76.298751831054688, -13.994582176208439 ] ] ], [ [ [ -76.453193664550724, -13.82097053527832 ], [ -76.453193664550724, -13.821249008178711 ], [ -76.452919006347599, -13.821249008178711 ], [ -76.452919006347599, -13.821526527404728 ], [ -76.452362060546818, -13.821526527404728 ], [ -76.452362060546818, -13.822084426879883 ], [ -76.451805114746094, -13.822084426879883 ], [ -76.451805114746094, -13.822361946105957 ], [ -76.451530456542969, -13.822359085083008 ], [ -76.451530456542969, -13.822636604309082 ], [ -76.450691223144531, -13.822636604309082 ], [ -76.450691223144531, -13.822917938232422 ], [ -76.449859619140568, -13.822915077209473 ], [ -76.449859619140568, -13.823192596435547 ], [ -76.449028015136662, -13.823192596435547 ], [ -76.449028015136662, -13.823472023010254 ], [ -76.446525573730412, -13.823472023010254 ], [ -76.446525573730412, -13.823192596435547 ], [ -76.444580078125, -13.823192596435547 ], [ -76.444580078125, -13.822915077209473 ], [ -76.443748474121094, -13.822915077209473 ], [ -76.443748474121094, -13.823192596435547 ], [ -76.443191528320256, -13.823192596435547 ], [ -76.443191528320256, -13.823472023010254 ], [ -76.442642211913949, -13.823472023010254 ], [ -76.442642211913949, -13.823749542236328 ], [ -76.442359924316406, -13.823749542236328 ], [ -76.442359924316406, -13.824028015136719 ], [ -76.442085266113281, -13.824028015136719 ], [ -76.442085266113281, -13.824861526489258 ], [ -76.441802978515625, -13.824861526489258 ], [ -76.441802978515625, -13.825415611267033 ], [ -76.4415283203125, -13.825415611267033 ], [ -76.4415283203125, -13.825694084167424 ], [ -76.441253662109375, -13.825694084167424 ], [ -76.441253662109375, -13.82791614532465 ], [ -76.4415283203125, -13.82791614532465 ], [ -76.4415283203125, -13.828193664550724 ], [ -76.441253662109375, -13.828193664550724 ], [ -76.441253662109375, -13.828472137451115 ], [ -76.4415283203125, -13.828470230102539 ], [ -76.4415283203125, -13.829584121704045 ], [ -76.441253662109375, -13.829584121704045 ], [ -76.441253662109375, -13.830138206481934 ], [ -76.4415283203125, -13.830138206481934 ], [ -76.4415283203125, -13.830415725707951 ], [ -76.441253662109375, -13.830415725707951 ], [ -76.441253662109375, -13.830694198608398 ], [ -76.440971374511719, -13.830694198608398 ], [ -76.440971374511719, -13.831527709960881 ], [ -76.440696716308594, -13.831527709960881 ], [ -76.440696716308594, -13.83236026763916 ], [ -76.440414428710881, -13.83236026763916 ], [ -76.440414428710881, -13.832919120788517 ], [ -76.440696716308594, -13.832916259765625 ], [ -76.440696716308594, -13.833749771118164 ], [ -76.440971374511719, -13.833749771118164 ], [ -76.440971374511719, -13.834306716918945 ], [ -76.440139770507756, -13.834306716918945 ], [ -76.440139770507756, -13.834026336669808 ], [ -76.439857482910099, -13.834026336669808 ], [ -76.439857482910099, -13.834582328796387 ], [ -76.439582824706974, -13.834582328796387 ], [ -76.439582824706974, -13.834859848022461 ], [ -76.439308166503906, -13.834859848022461 ], [ -76.439308166503906, -13.835416793823242 ], [ -76.438751220703125, -13.835416793823242 ], [ -76.438751220703125, -13.835138320922852 ], [ -76.434860229492188, -13.835138320922852 ], [ -76.434860229492188, -13.835416793823242 ], [ -76.434585571289062, -13.835416793823242 ], [ -76.434585571289062, -13.835695266723519 ], [ -76.433746337890568, -13.835695266723519 ], [ -76.433746337890568, -13.835972785949707 ], [ -76.433471679687443, -13.835972785949707 ], [ -76.433471679687443, -13.836528778076172 ], [ -76.433197021484318, -13.836528778076172 ], [ -76.433197021484318, -13.837361335754338 ], [ -76.433471679687443, -13.837361335754338 ], [ -76.433471679687443, -13.837638854980412 ], [ -76.434028625488224, -13.837638854980412 ], [ -76.434028625488224, -13.837917327880803 ], [ -76.434303283691406, -13.837917327880803 ], [ -76.434303283691406, -13.841251373290959 ], [ -76.434585571289062, -13.841251373290959 ], [ -76.434585571289062, -13.841805458068848 ], [ -76.434303283691406, -13.841805458068848 ], [ -76.434303283691406, -13.842361450195312 ], [ -76.434028625488224, -13.842361450195312 ], [ -76.434028625488224, -13.842917442321777 ], [ -76.433746337890568, -13.842917442321777 ], [ -76.433746337890568, -13.843473434448242 ], [ -76.434028625488224, -13.843473434448242 ], [ -76.434028625488224, -13.846248626708984 ], [ -76.433746337890568, -13.846248626708984 ], [ -76.433746337890568, -13.847640037536507 ], [ -76.434028625488224, -13.847637176513615 ], [ -76.434028625488224, -13.848749160766545 ], [ -76.434303283691406, -13.848749160766545 ], [ -76.434303283691406, -13.849026679992562 ], [ -76.434585571289062, -13.849026679992562 ], [ -76.434585571289062, -13.8495836257934 ], [ -76.434860229492188, -13.8495836257934 ], [ -76.434860229492188, -13.850139617919865 ], [ -76.435142517089844, -13.850139617919865 ], [ -76.435142517089844, -13.850418090820256 ], [ -76.435691833496094, -13.850415229797363 ], [ -76.435691833496094, -13.850693702697754 ], [ -76.43597412109375, -13.850693702697754 ], [ -76.43597412109375, -13.850972175598145 ], [ -76.436248779296818, -13.850972175598145 ], [ -76.436248779296818, -13.851528167724609 ], [ -76.436531066894474, -13.851528167724609 ], [ -76.436531066894474, -13.852084159851074 ], [ -76.436805725097599, -13.852082252502441 ], [ -76.436805725097599, -13.85291576385498 ], [ -76.437080383300724, -13.85291576385498 ], [ -76.437080383300724, -13.85402774810791 ], [ -76.437362670898381, -13.85402774810791 ], [ -76.437362670898381, -13.855972290039062 ], [ -76.437637329101562, -13.855972290039062 ], [ -76.437637329101562, -13.856249809265137 ], [ -76.437919616699219, -13.856249809265137 ], [ -76.437919616699219, -13.856528282165527 ], [ -76.438194274902344, -13.856528282165527 ], [ -76.438194274902344, -13.857084274291992 ], [ -76.438468933105469, -13.857084274291992 ], [ -76.438468933105469, -13.857640266418457 ], [ -76.43902587890625, -13.857640266418457 ], [ -76.43902587890625, -13.857915878295785 ], [ -76.439582824706974, -13.857915878295785 ], [ -76.439582824706974, -13.858194351196232 ], [ -76.440696716308594, -13.858194351196232 ], [ -76.440696716308594, -13.858471870422363 ], [ -76.441253662109375, -13.858471870422363 ], [ -76.441253662109375, -13.85875034332264 ], [ -76.441802978515625, -13.85875034332264 ], [ -76.441802978515625, -13.859027862548828 ], [ -76.442359924316406, -13.859027862548828 ], [ -76.442359924316406, -13.859306335449219 ], [ -76.443473815917912, -13.859306335449219 ], [ -76.443473815917912, -13.85875034332264 ], [ -76.443748474121094, -13.85875034332264 ], [ -76.443748474121094, -13.858471870422363 ], [ -76.44403076171875, -13.858471870422363 ], [ -76.44403076171875, -13.858194351196232 ], [ -76.444862365722656, -13.858194351196232 ], [ -76.444862365722656, -13.859027862548828 ], [ -76.445137023925781, -13.859027862548828 ], [ -76.445137023925781, -13.859306335449219 ], [ -76.44708251953125, -13.859306335449219 ], [ -76.44708251953125, -13.859581947326603 ], [ -76.447364807128906, -13.859581947326603 ], [ -76.447364807128906, -13.860137939453068 ], [ -76.447639465332031, -13.860137939453068 ], [ -76.447639465332031, -13.860416412353459 ], [ -76.447914123535156, -13.860416412353459 ], [ -76.447914123535156, -13.860693931579533 ], [ -76.448471069335938, -13.860693931579533 ], [ -76.448471069335938, -13.85875034332264 ], [ -76.448753356933594, -13.85875034332264 ], [ -76.448753356933594, -13.858194351196232 ], [ -76.448471069335938, -13.858194351196232 ], [ -76.448471069335938, -13.857915878295785 ], [ -76.447639465332031, -13.857915878295785 ], [ -76.447639465332031, -13.858194351196232 ], [ -76.447364807128906, -13.858194351196232 ], [ -76.447364807128906, -13.857915878295785 ], [ -76.44708251953125, -13.857915878295785 ], [ -76.44708251953125, -13.857640266418457 ], [ -76.446250915527287, -13.857640266418457 ], [ -76.446250915527287, -13.858194351196232 ], [ -76.446807861328068, -13.858194351196232 ], [ -76.446807861328068, -13.858471870422363 ], [ -76.445693969726449, -13.858471870422363 ], [ -76.445693969726449, -13.857915878295785 ], [ -76.445419311523438, -13.857915878295785 ], [ -76.445419311523438, -13.857359886169377 ], [ -76.445693969726449, -13.857359886169377 ], [ -76.445693969726449, -13.856528282165527 ], [ -76.445419311523438, -13.856528282165527 ], [ -76.445419311523438, -13.856805801391602 ], [ -76.445137023925781, -13.856805801391602 ], [ -76.445137023925781, -13.855972290039062 ], [ -76.444862365722656, -13.855972290039062 ], [ -76.444862365722656, -13.854860305786076 ], [ -76.445137023925781, -13.854862213134766 ], [ -76.445137023925781, -13.854583740234375 ], [ -76.445419311523438, -13.854583740234375 ], [ -76.445419311523438, -13.853471755981445 ], [ -76.445693969726449, -13.853471755981445 ], [ -76.445693969726449, -13.85291576385498 ], [ -76.445968627929631, -13.85291576385498 ], [ -76.445968627929631, -13.852638244628906 ], [ -76.446525573730412, -13.852640151977482 ], [ -76.446525573730412, -13.852359771728516 ], [ -76.447364807128906, -13.852359771728516 ], [ -76.447364807128906, -13.852640151977482 ], [ -76.447639465332031, -13.852640151977482 ], [ -76.447639465332031, -13.852359771728516 ], [ -76.448196411132812, -13.852359771728516 ], [ -76.448196411132812, -13.85291576385498 ], [ -76.448471069335938, -13.85291576385498 ], [ -76.448471069335938, -13.853194236755371 ], [ -76.449302673339787, -13.853194236755371 ], [ -76.449302673339787, -13.85291576385498 ], [ -76.450141906738224, -13.85291576385498 ], [ -76.450141906738224, -13.852638244628906 ], [ -76.450416564941406, -13.852640151977482 ], [ -76.450416564941406, -13.852359771728516 ], [ -76.451530456542969, -13.852359771728516 ], [ -76.451530456542969, -13.852082252502441 ], [ -76.452079772949162, -13.852084159851074 ], [ -76.452079772949162, -13.851805686950627 ], [ -76.452919006347599, -13.851805686950627 ], [ -76.452919006347599, -13.851528167724609 ], [ -76.453193664550724, -13.851528167724609 ], [ -76.453193664550724, -13.851805686950627 ], [ -76.454582214355469, -13.851805686950627 ], [ -76.454582214355469, -13.851528167724609 ], [ -76.454864501953125, -13.851528167724609 ], [ -76.454864501953125, -13.850972175598145 ], [ -76.45513916015625, -13.850972175598145 ], [ -76.45513916015625, -13.850693702697754 ], [ -76.455413818359318, -13.850693702697754 ], [ -76.455413818359318, -13.850415229797363 ], [ -76.457359313964844, -13.850415229797363 ], [ -76.457359313964844, -13.850693702697754 ], [ -76.4576416015625, -13.850693702697754 ], [ -76.4576416015625, -13.850972175598145 ], [ -76.457916259765625, -13.850972175598145 ], [ -76.457916259765625, -13.851249694824219 ], [ -76.459030151367131, -13.851249694824219 ], [ -76.459030151367131, -13.851528167724609 ], [ -76.459304809570256, -13.851528167724609 ], [ -76.459304809570256, -13.851805686950627 ], [ -76.459861755371094, -13.851805686950627 ], [ -76.459861755371094, -13.852084159851074 ], [ -76.460136413574219, -13.852082252502441 ], [ -76.460136413574219, -13.852638244628906 ], [ -76.460418701171875, -13.852638244628906 ], [ -76.460418701171875, -13.85291576385498 ], [ -76.460975646972656, -13.85291576385498 ], [ -76.460975646972656, -13.852638244628906 ], [ -76.461524963378793, -13.852640151977482 ], [ -76.461524963378793, -13.852359771728516 ], [ -76.462081909179631, -13.852359771728516 ], [ -76.462081909179631, -13.852082252502441 ], [ -76.462364196777287, -13.852082252502441 ], [ -76.462364196777287, -13.852359771728516 ], [ -76.462638854980412, -13.852359771728516 ], [ -76.462638854980412, -13.852640151977482 ], [ -76.462913513183594, -13.852638244628906 ], [ -76.462913513183594, -13.853471755981445 ], [ -76.46319580078125, -13.853471755981445 ], [ -76.46319580078125, -13.854583740234375 ], [ -76.463470458984375, -13.854583740234375 ], [ -76.463470458984375, -13.855137825012207 ], [ -76.463752746582031, -13.855137825012207 ], [ -76.463752746582031, -13.855693817138672 ], [ -76.464027404785156, -13.855693817138672 ], [ -76.464027404785156, -13.855972290039062 ], [ -76.464584350585938, -13.855972290039062 ], [ -76.464584350585938, -13.855693817138672 ], [ -76.464859008789006, -13.855693817138672 ], [ -76.464859008789006, -13.855416297912484 ], [ -76.464584350585938, -13.855416297912484 ], [ -76.464584350585938, -13.855137825012207 ], [ -76.464302062988281, -13.855137825012207 ], [ -76.464302062988281, -13.854583740234375 ], [ -76.464027404785156, -13.854583740234375 ], [ -76.464027404785156, -13.853194236755371 ], [ -76.463752746582031, -13.853194236755371 ], [ -76.463752746582031, -13.85291576385498 ], [ -76.464027404785156, -13.85291576385498 ], [ -76.464027404785156, -13.852638244628906 ], [ -76.464584350585938, -13.852640151977482 ], [ -76.464584350585938, -13.852359771728516 ], [ -76.464859008789006, -13.852359771728516 ], [ -76.464859008789006, -13.852082252502441 ], [ -76.465141296386662, -13.852084159851074 ], [ -76.465141296386662, -13.851805686950627 ], [ -76.465415954589787, -13.851805686950627 ], [ -76.465415954589787, -13.851528167724609 ], [ -76.465698242187443, -13.851528167724609 ], [ -76.465698242187443, -13.851805686950627 ], [ -76.465972900390568, -13.851805686950627 ], [ -76.465972900390568, -13.851528167724609 ], [ -76.46624755859375, -13.851528167724609 ], [ -76.46624755859375, -13.851249694824219 ], [ -76.466529846191406, -13.851249694824219 ], [ -76.466529846191406, -13.850972175598145 ], [ -76.467361450195312, -13.850972175598145 ], [ -76.467361450195312, -13.850693702697754 ], [ -76.467636108398438, -13.850693702697754 ], [ -76.467636108398438, -13.850415229797363 ], [ -76.467918395996094, -13.850418090820256 ], [ -76.467918395996094, -13.850139617919865 ], [ -76.467636108398438, -13.850139617919865 ], [ -76.467636108398438, -13.849859237670898 ], [ -76.467361450195312, -13.849862098693791 ], [ -76.467361450195312, -13.8495836257934 ], [ -76.466529846191406, -13.8495836257934 ], [ -76.466529846191406, -13.84847354888916 ], [ -76.466804504394531, -13.84847354888916 ], [ -76.466804504394531, -13.847360610961914 ], [ -76.466529846191406, -13.847360610961914 ], [ -76.466529846191406, -13.846527099609375 ], [ -76.46624755859375, -13.846527099609375 ], [ -76.46624755859375, -13.845138549804688 ], [ -76.465972900390568, -13.845138549804688 ], [ -76.465972900390568, -13.844859123229924 ], [ -76.46624755859375, -13.844861030578613 ], [ -76.46624755859375, -13.844582557678223 ], [ -76.465972900390568, -13.844582557678223 ], [ -76.465972900390568, -13.844026565551758 ], [ -76.465698242187443, -13.844026565551758 ], [ -76.465698242187443, -13.843473434448242 ], [ -76.465415954589787, -13.843473434448242 ], [ -76.465415954589787, -13.842638969421387 ], [ -76.465141296386662, -13.842638969421387 ], [ -76.465141296386662, -13.841805458068848 ], [ -76.464859008789006, -13.841805458068848 ], [ -76.464859008789006, -13.840416908264103 ], [ -76.464584350585938, -13.840416908264103 ], [ -76.464584350585938, -13.840139389038086 ], [ -76.464302062988281, -13.840139389038086 ], [ -76.464302062988281, -13.839860916137638 ], [ -76.464027404785156, -13.839860916137638 ], [ -76.464027404785156, -13.839583396911621 ], [ -76.463752746582031, -13.839583396911621 ], [ -76.463752746582031, -13.839027404785156 ], [ -76.463470458984375, -13.839027404785156 ], [ -76.463470458984375, -13.838750839233285 ], [ -76.46319580078125, -13.838750839233285 ], [ -76.46319580078125, -13.838194847106877 ], [ -76.462638854980412, -13.838194847106877 ], [ -76.462638854980412, -13.837917327880803 ], [ -76.462364196777287, -13.837917327880803 ], [ -76.462364196777287, -13.837638854980412 ], [ -76.461807250976506, -13.837638854980412 ], [ -76.461807250976506, -13.837361335754338 ], [ -76.461524963378793, -13.837361335754338 ], [ -76.461524963378793, -13.836804389953556 ], [ -76.461250305175781, -13.836804389953556 ], [ -76.461250305175781, -13.836528778076172 ], [ -76.460975646972656, -13.836528778076172 ], [ -76.460975646972656, -13.835695266723519 ], [ -76.460693359375, -13.835695266723519 ], [ -76.460693359375, -13.834026336669808 ], [ -76.460418701171875, -13.834029197692871 ], [ -76.460418701171875, -13.83347225189209 ], [ -76.460693359375, -13.83347225189209 ], [ -76.460693359375, -13.832083702087346 ], [ -76.460418701171875, -13.832083702087346 ], [ -76.460418701171875, -13.830415725707951 ], [ -76.460136413574219, -13.830415725707951 ], [ -76.460136413574219, -13.829859733581543 ], [ -76.460418701171875, -13.829859733581543 ], [ -76.460418701171875, -13.828470230102539 ], [ -76.460136413574219, -13.828470230102539 ], [ -76.460136413574219, -13.82791614532465 ], [ -76.459587097167912, -13.82791805267334 ], [ -76.459587097167912, -13.82763767242426 ], [ -76.459304809570256, -13.82763767242426 ], [ -76.459304809570256, -13.827360153198242 ], [ -76.459030151367131, -13.827362060546875 ], [ -76.459030151367131, -13.82652759552002 ], [ -76.458747863769474, -13.82652759552002 ], [ -76.458747863769474, -13.825971603393441 ], [ -76.45819091796875, -13.825971603393441 ], [ -76.45819091796875, -13.825415611267033 ], [ -76.457916259765625, -13.825415611267033 ], [ -76.457916259765625, -13.824861526489258 ], [ -76.4576416015625, -13.824861526489258 ], [ -76.4576416015625, -13.824028015136719 ], [ -76.457359313964844, -13.824028015136719 ], [ -76.457359313964844, -13.823472023010254 ], [ -76.457084655761719, -13.823472023010254 ], [ -76.457084655761719, -13.822636604309082 ], [ -76.456253051757756, -13.822636604309082 ], [ -76.456253051757756, -13.822359085083008 ], [ -76.454864501953125, -13.822361946105957 ], [ -76.454864501953125, -13.822084426879883 ], [ -76.454582214355469, -13.822084426879883 ], [ -76.454582214355469, -13.821805953979492 ], [ -76.454307556152344, -13.821805953979492 ], [ -76.454307556152344, -13.821249008178711 ], [ -76.454025268554688, -13.821249008178711 ], [ -76.454025268554688, -13.82097053527832 ], [ -76.453193664550724, -13.82097053527832 ] ] ], [ [ [ -76.252639770507756, -13.819026947021428 ], [ -76.252639770507756, -13.819305419921818 ], [ -76.252357482910099, -13.819305419921818 ], [ -76.252357482910099, -13.819582939147892 ], [ -76.252082824706974, -13.819581031799316 ], [ -76.252082824706974, -13.819861412048283 ], [ -76.252357482910099, -13.819861412048283 ], [ -76.252357482910099, -13.822361946105957 ], [ -76.252639770507756, -13.822359085083008 ], [ -76.252639770507756, -13.822636604309082 ], [ -76.253471374511719, -13.822636604309082 ], [ -76.253471374511719, -13.822359085083008 ], [ -76.253753662109375, -13.822361946105957 ], [ -76.253753662109375, -13.822084426879883 ], [ -76.2540283203125, -13.822084426879883 ], [ -76.2540283203125, -13.821805953979492 ], [ -76.254302978515625, -13.821805953979492 ], [ -76.254302978515625, -13.820418357849121 ], [ -76.2540283203125, -13.820418357849121 ], [ -76.2540283203125, -13.819305419921818 ], [ -76.253471374511719, -13.819305419921818 ], [ -76.253471374511719, -13.819026947021428 ], [ -76.252639770507756, -13.819026947021428 ] ] ], [ [ [ -76.452919006347599, -13.816804885864201 ], [ -76.452919006347599, -13.817083358764592 ], [ -76.452636718749943, -13.817083358764592 ], [ -76.452636718749943, -13.817360877990609 ], [ -76.452362060546818, -13.817360877990609 ], [ -76.452362060546818, -13.818470954894963 ], [ -76.452636718749943, -13.818470954894963 ], [ -76.452636718749943, -13.818751335144043 ], [ -76.453475952148438, -13.818751335144043 ], [ -76.453475952148438, -13.819305419921818 ], [ -76.453750610351562, -13.819305419921818 ], [ -76.453750610351562, -13.819582939147892 ], [ -76.454025268554688, -13.819581031799316 ], [ -76.454025268554688, -13.819861412048283 ], [ -76.454307556152344, -13.819861412048283 ], [ -76.454307556152344, -13.820693016052246 ], [ -76.454582214355469, -13.820693016052246 ], [ -76.454582214355469, -13.82097053527832 ], [ -76.455413818359318, -13.82097053527832 ], [ -76.455413818359318, -13.820693016052246 ], [ -76.455696105956974, -13.820693016052246 ], [ -76.455696105956974, -13.819861412048283 ], [ -76.455413818359318, -13.819861412048283 ], [ -76.455413818359318, -13.819581031799316 ], [ -76.45513916015625, -13.819581031799316 ], [ -76.45513916015625, -13.819026947021428 ], [ -76.454864501953125, -13.819026947021428 ], [ -76.454864501953125, -13.818751335144043 ], [ -76.454582214355469, -13.818751335144043 ], [ -76.454582214355469, -13.818470954894963 ], [ -76.454307556152344, -13.818470954894963 ], [ -76.454307556152344, -13.818195343017464 ], [ -76.454025268554688, -13.818195343017464 ], [ -76.454025268554688, -13.817916870117188 ], [ -76.453750610351562, -13.817916870117188 ], [ -76.453750610351562, -13.817360877990609 ], [ -76.453475952148438, -13.817360877990609 ], [ -76.453475952148438, -13.817083358764592 ], [ -76.453193664550724, -13.817083358764592 ], [ -76.453193664550724, -13.816804885864201 ], [ -76.452919006347599, -13.816804885864201 ] ] ], [ [ [ -76.454025268554688, -13.8143053054809 ], [ -76.454025268554688, -13.814582824707031 ], [ -76.453750610351562, -13.814582824707031 ], [ -76.453750610351562, -13.815138816833496 ], [ -76.453475952148438, -13.815138816833496 ], [ -76.453475952148438, -13.815417289733887 ], [ -76.452919006347599, -13.815417289733887 ], [ -76.452919006347599, -13.815694808959961 ], [ -76.453193664550724, -13.815694808959961 ], [ -76.453193664550724, -13.815973281860352 ], [ -76.453750610351562, -13.815973281860352 ], [ -76.453750610351562, -13.815694808959961 ], [ -76.45513916015625, -13.815694808959961 ], [ -76.45513916015625, -13.815417289733887 ], [ -76.455413818359318, -13.815417289733887 ], [ -76.455413818359318, -13.814861297607308 ], [ -76.45513916015625, -13.814861297607308 ], [ -76.45513916015625, -13.814582824707031 ], [ -76.454582214355469, -13.814582824707031 ], [ -76.454582214355469, -13.8143053054809 ], [ -76.454025268554688, -13.8143053054809 ] ] ], [ [ [ -76.311531066894531, -13.735136985778809 ], [ -76.311531066894531, -13.735417366027775 ], [ -76.311248779296875, -13.735417366027775 ], [ -76.311248779296875, -13.73597335815424 ], [ -76.311531066894531, -13.73597335815424 ], [ -76.311531066894531, -13.736527442932129 ], [ -76.311805725097656, -13.736527442932129 ], [ -76.311805725097656, -13.737360954284611 ], [ -76.312080383300724, -13.737359046936035 ], [ -76.312080383300724, -13.737639427185059 ], [ -76.312362670898381, -13.737639427185059 ], [ -76.312362670898381, -13.737916946411076 ], [ -76.312637329101506, -13.737916946411076 ], [ -76.312637329101506, -13.737639427185059 ], [ -76.312919616699162, -13.737639427185059 ], [ -76.312919616699162, -13.737916946411076 ], [ -76.313194274902287, -13.7379150390625 ], [ -76.313194274902287, -13.738195419311467 ], [ -76.313468933105469, -13.738195419311467 ], [ -76.313468933105469, -13.738471031188965 ], [ -76.313751220703125, -13.738471031188965 ], [ -76.313751220703125, -13.738752365112305 ], [ -76.31402587890625, -13.738752365112305 ], [ -76.31402587890625, -13.738471031188965 ], [ -76.314308166503906, -13.738471031188965 ], [ -76.314308166503906, -13.737359046936035 ], [ -76.31402587890625, -13.737359046936035 ], [ -76.31402587890625, -13.736248970031738 ], [ -76.313751220703125, -13.736248970031738 ], [ -76.313751220703125, -13.73597335815424 ], [ -76.313468933105469, -13.73597335815424 ], [ -76.313468933105469, -13.735694885253849 ], [ -76.312919616699162, -13.735694885253849 ], [ -76.312919616699162, -13.735417366027775 ], [ -76.312080383300724, -13.735417366027775 ], [ -76.312080383300724, -13.735136985778809 ], [ -76.311531066894531, -13.735136985778809 ] ] ], [ [ [ -76.392364501953068, -13.734305381774902 ], [ -76.392364501953068, -13.73458290100092 ], [ -76.392082214355412, -13.73458290100092 ], [ -76.392082214355412, -13.735694885253849 ], [ -76.392364501953068, -13.735694885253849 ], [ -76.392364501953068, -13.736248970031738 ], [ -76.392639160156193, -13.736248970031738 ], [ -76.392639160156193, -13.736527442932129 ], [ -76.393470764160156, -13.736527442932129 ], [ -76.393470764160156, -13.736804962158203 ], [ -76.393753051757812, -13.736804962158203 ], [ -76.393753051757812, -13.737359046936035 ], [ -76.394027709960938, -13.737359046936035 ], [ -76.394027709960938, -13.737639427185059 ], [ -76.394302368164062, -13.737639427185059 ], [ -76.394302368164062, -13.738195419311467 ], [ -76.394584655761719, -13.738195419311467 ], [ -76.394584655761719, -13.738471031188965 ], [ -76.394859313964787, -13.738471031188965 ], [ -76.394859313964787, -13.738752365112305 ], [ -76.395141601562443, -13.738752365112305 ], [ -76.395141601562443, -13.73902702331543 ], [ -76.394859313964787, -13.73902702331543 ], [ -76.394859313964787, -13.739860534667969 ], [ -76.395141601562443, -13.739860534667969 ], [ -76.395141601562443, -13.740139961242676 ], [ -76.395416259765568, -13.740139961242676 ], [ -76.395416259765568, -13.739860534667969 ], [ -76.395690917968693, -13.739860534667969 ], [ -76.395690917968693, -13.740139961242676 ], [ -76.396530151367188, -13.740137100219613 ], [ -76.396530151367188, -13.740418434143066 ], [ -76.397087097167969, -13.740418434143066 ], [ -76.397087097167969, -13.740693092346191 ], [ -76.396804809570312, -13.740693092346191 ], [ -76.396804809570312, -13.740970611572266 ], [ -76.397087097167969, -13.740970611572266 ], [ -76.397087097167969, -13.741249084472656 ], [ -76.397636413574219, -13.741249084472656 ], [ -76.397636413574219, -13.741527557373047 ], [ -76.397918701171875, -13.741527557373047 ], [ -76.397918701171875, -13.741806030273324 ], [ -76.398475646972599, -13.741806030273324 ], [ -76.398475646972599, -13.742083549499512 ], [ -76.399024963378849, -13.742083549499512 ], [ -76.399024963378849, -13.742362022399902 ], [ -76.399307250976562, -13.742359161376896 ], [ -76.399307250976562, -13.742639541625977 ], [ -76.400970458984375, -13.742639541625977 ], [ -76.400970458984375, -13.742359161376896 ], [ -76.401527404785099, -13.742359161376896 ], [ -76.401527404785099, -13.740693092346191 ], [ -76.401252746581918, -13.740693092346191 ], [ -76.401252746581918, -13.740137100219613 ], [ -76.400970458984375, -13.740139961242676 ], [ -76.400970458984375, -13.739860534667969 ], [ -76.40069580078125, -13.739860534667969 ], [ -76.40069580078125, -13.739581108093205 ], [ -76.398475646972599, -13.739583015441895 ], [ -76.398475646972599, -13.739304542541504 ], [ -76.397636413574219, -13.739304542541504 ], [ -76.397636413574219, -13.738752365112305 ], [ -76.397361755371094, -13.738752365112305 ], [ -76.397361755371094, -13.738471031188965 ], [ -76.397636413574219, -13.738471031188965 ], [ -76.397636413574219, -13.738195419311467 ], [ -76.397918701171875, -13.738195419311467 ], [ -76.397918701171875, -13.737083435058594 ], [ -76.397636413574219, -13.737083435058594 ], [ -76.397636413574219, -13.736804962158203 ], [ -76.397361755371094, -13.736804962158203 ], [ -76.397361755371094, -13.736527442932129 ], [ -76.396247863769531, -13.736527442932129 ], [ -76.396247863769531, -13.736804962158203 ], [ -76.395973205566349, -13.736804962158203 ], [ -76.395973205566349, -13.737083435058594 ], [ -76.395141601562443, -13.737083435058594 ], [ -76.395141601562443, -13.736527442932129 ], [ -76.395416259765568, -13.736527442932129 ], [ -76.395416259765568, -13.736248970031738 ], [ -76.395690917968693, -13.736248970031738 ], [ -76.395690917968693, -13.73597335815424 ], [ -76.395416259765568, -13.73597335815424 ], [ -76.395416259765568, -13.735694885253849 ], [ -76.395690917968693, -13.735694885253849 ], [ -76.395690917968693, -13.735417366027775 ], [ -76.395973205566349, -13.735417366027775 ], [ -76.395973205566349, -13.73486137390131 ], [ -76.395690917968693, -13.73486137390131 ], [ -76.395690917968693, -13.73458290100092 ], [ -76.392913818359375, -13.73458290100092 ], [ -76.392913818359375, -13.734305381774902 ], [ -76.392364501953068, -13.734305381774902 ] ] ], [ [ [ -76.394859313964787, -13.729305267333928 ], [ -76.394859313964787, -13.729584693908691 ], [ -76.394584655761719, -13.729584693908691 ], [ -76.394584655761719, -13.730138778686523 ], [ -76.394302368164062, -13.730138778686523 ], [ -76.394302368164062, -13.730694770812988 ], [ -76.394027709960938, -13.730694770812988 ], [ -76.394027709960938, -13.731250762939453 ], [ -76.394302368164062, -13.731250762939453 ], [ -76.394302368164062, -13.731527328491154 ], [ -76.394859313964787, -13.731527328491154 ], [ -76.394859313964787, -13.731804847717228 ], [ -76.395141601562443, -13.731804847717228 ], [ -76.395141601562443, -13.732083320617619 ], [ -76.395416259765568, -13.732083320617619 ], [ -76.395416259765568, -13.732639312744084 ], [ -76.394859313964787, -13.732639312744084 ], [ -76.394859313964787, -13.732916831970101 ], [ -76.394584655761719, -13.732916831970101 ], [ -76.394584655761719, -13.733195304870549 ], [ -76.394859313964787, -13.733195304870549 ], [ -76.394859313964787, -13.733470916748047 ], [ -76.395416259765568, -13.733470916748047 ], [ -76.395416259765568, -13.733751296996957 ], [ -76.395973205566349, -13.733751296996957 ], [ -76.395973205566349, -13.734026908874455 ], [ -76.396247863769531, -13.734026908874455 ], [ -76.396247863769531, -13.734305381774902 ], [ -76.396804809570312, -13.734305381774902 ], [ -76.396804809570312, -13.734026908874455 ], [ -76.397636413574219, -13.734026908874455 ], [ -76.397636413574219, -13.734305381774902 ], [ -76.398193359374943, -13.734305381774902 ], [ -76.398193359374943, -13.73458290100092 ], [ -76.399864196777344, -13.73458290100092 ], [ -76.399864196777344, -13.734305381774902 ], [ -76.400138854980469, -13.734305381774902 ], [ -76.400138854980469, -13.734026908874455 ], [ -76.400413513183594, -13.734026908874455 ], [ -76.400413513183594, -13.733751296996957 ], [ -76.40069580078125, -13.733751296996957 ], [ -76.40069580078125, -13.733470916748047 ], [ -76.400970458984375, -13.733470916748047 ], [ -76.400970458984375, -13.731804847717228 ], [ -76.40069580078125, -13.731804847717228 ], [ -76.40069580078125, -13.731250762939453 ], [ -76.400413513183594, -13.731250762939453 ], [ -76.400413513183594, -13.730973243713379 ], [ -76.399864196777344, -13.730973243713379 ], [ -76.399864196777344, -13.731250762939453 ], [ -76.399024963378849, -13.731250762939453 ], [ -76.399024963378849, -13.730694770812988 ], [ -76.398750305175724, -13.730694770812988 ], [ -76.398750305175724, -13.730138778686523 ], [ -76.398475646972599, -13.730138778686523 ], [ -76.398475646972599, -13.729861259460336 ], [ -76.395690917968693, -13.729861259460336 ], [ -76.395690917968693, -13.729584693908691 ], [ -76.395416259765568, -13.729584693908691 ], [ -76.395416259765568, -13.729305267333928 ], [ -76.394859313964787, -13.729305267333928 ] ] ], [ [ [ -76.413749694824219, -13.66291618347168 ], [ -76.413749694824219, -13.663193702697754 ], [ -76.413475036621094, -13.663193702697754 ], [ -76.413475036621094, -13.664305686950684 ], [ -76.412086486816406, -13.664305686950684 ], [ -76.412086486816406, -13.664584159851074 ], [ -76.411804199218693, -13.664582252502328 ], [ -76.411804199218693, -13.665138244628906 ], [ -76.412086486816406, -13.665138244628906 ], [ -76.412086486816406, -13.66541576385498 ], [ -76.413749694824219, -13.66541576385498 ], [ -76.413749694824219, -13.665138244628906 ], [ -76.414024353027287, -13.665138244628906 ], [ -76.414024353027287, -13.664582252502328 ], [ -76.415412902832031, -13.664584159851074 ], [ -76.415412902832031, -13.664305686950684 ], [ -76.415695190429688, -13.664305686950684 ], [ -76.415695190429688, -13.663749694824219 ], [ -76.415412902832031, -13.663749694824219 ], [ -76.415412902832031, -13.663472175598145 ], [ -76.414581298828068, -13.663472175598145 ], [ -76.414581298828068, -13.663193702697754 ], [ -76.414306640624943, -13.663193702697754 ], [ -76.414306640624943, -13.66291618347168 ], [ -76.413749694824219, -13.66291618347168 ] ] ], [ [ [ -76.404304504394418, -13.647916793823129 ], [ -76.404304504394418, -13.648195266723576 ], [ -76.403472900390625, -13.648192405700627 ], [ -76.403472900390625, -13.648472785949707 ], [ -76.402641296386719, -13.648472785949707 ], [ -76.402641296386719, -13.648192405700627 ], [ -76.401802062988224, -13.648192405700627 ], [ -76.401802062988224, -13.648472785949707 ], [ -76.401527404785099, -13.648472785949707 ], [ -76.401527404785099, -13.648751258849984 ], [ -76.401252746581918, -13.648751258849984 ], [ -76.401252746581918, -13.64930534362793 ], [ -76.400970458984375, -13.64930534362793 ], [ -76.400970458984375, -13.649582862853947 ], [ -76.40069580078125, -13.649582862853947 ], [ -76.40069580078125, -13.649861335754338 ], [ -76.399307250976562, -13.649861335754338 ], [ -76.399307250976562, -13.650138854980412 ], [ -76.399024963378849, -13.650138854980412 ], [ -76.399024963378849, -13.650417327880803 ], [ -76.397636413574219, -13.650417327880803 ], [ -76.397636413574219, -13.650694847106877 ], [ -76.397361755371094, -13.650694847106877 ], [ -76.397361755371094, -13.650973320007267 ], [ -76.397087097167969, -13.650973320007267 ], [ -76.397087097167969, -13.651250839233342 ], [ -76.396804809570312, -13.651250839233342 ], [ -76.396804809570312, -13.65180492401123 ], [ -76.397087097167969, -13.65180492401123 ], [ -76.397087097167969, -13.652083396911621 ], [ -76.397918701171875, -13.652083396911621 ], [ -76.397918701171875, -13.652360916137695 ], [ -76.398475646972599, -13.652360916137695 ], [ -76.398475646972599, -13.652639389038086 ], [ -76.399864196777344, -13.652639389038086 ], [ -76.399864196777344, -13.653195381164551 ], [ -76.400138854980469, -13.653195381164551 ], [ -76.400138854980469, -13.654305458068848 ], [ -76.400413513183594, -13.654305458068848 ], [ -76.400413513183594, -13.655138969421387 ], [ -76.40069580078125, -13.655138969421387 ], [ -76.40069580078125, -13.655417442321777 ], [ -76.401252746581918, -13.655417442321777 ], [ -76.401252746581918, -13.655138969421387 ], [ -76.401527404785099, -13.655138969421387 ], [ -76.401527404785099, -13.655417442321777 ], [ -76.401802062988224, -13.655417442321777 ], [ -76.401802062988224, -13.655693054199105 ], [ -76.402084350585881, -13.655693054199105 ], [ -76.402084350585881, -13.655973434448242 ], [ -76.402915954589844, -13.655973434448242 ], [ -76.402915954589844, -13.655693054199105 ], [ -76.4031982421875, -13.655693054199105 ], [ -76.4031982421875, -13.655417442321777 ], [ -76.403472900390625, -13.655417442321777 ], [ -76.403472900390625, -13.655138969421387 ], [ -76.40374755859375, -13.655138969421387 ], [ -76.40374755859375, -13.654861450195312 ], [ -76.404029846191406, -13.654861450195312 ], [ -76.404029846191406, -13.654026985168457 ], [ -76.404586791992131, -13.654026985168457 ], [ -76.404586791992131, -13.653751373290959 ], [ -76.404861450195256, -13.653751373290959 ], [ -76.404861450195256, -13.653470993041992 ], [ -76.405136108398381, -13.653470993041992 ], [ -76.405136108398381, -13.653195381164551 ], [ -76.404861450195256, -13.653195381164551 ], [ -76.404861450195256, -13.651250839233342 ], [ -76.405136108398381, -13.651250839233342 ], [ -76.405136108398381, -13.650694847106877 ], [ -76.404861450195256, -13.650694847106877 ], [ -76.404861450195256, -13.649582862853947 ], [ -76.405136108398381, -13.649582862853947 ], [ -76.405136108398381, -13.648192405700627 ], [ -76.404586791992131, -13.648195266723576 ], [ -76.404586791992131, -13.647916793823129 ], [ -76.404304504394418, -13.647916793823129 ] ] ], [ [ [ -76.397636413574219, -13.639583587646484 ], [ -76.397636413574219, -13.639862060546761 ], [ -76.397361755371094, -13.639860153198242 ], [ -76.397361755371094, -13.640416145324707 ], [ -76.397087097167969, -13.640416145324707 ], [ -76.397087097167969, -13.639860153198242 ], [ -76.395973205566349, -13.639860153198242 ], [ -76.395973205566349, -13.64013767242426 ], [ -76.395690917968693, -13.64013767242426 ], [ -76.395690917968693, -13.64041805267334 ], [ -76.395416259765568, -13.640416145324707 ], [ -76.395416259765568, -13.640693664550724 ], [ -76.395141601562443, -13.640693664550724 ], [ -76.395141601562443, -13.639860153198242 ], [ -76.394584655761719, -13.639860153198242 ], [ -76.394584655761719, -13.64013767242426 ], [ -76.394027709960938, -13.64013767242426 ], [ -76.394027709960938, -13.640693664550724 ], [ -76.393753051757812, -13.640693664550724 ], [ -76.393753051757812, -13.640972137451115 ], [ -76.393470764160156, -13.640970230102539 ], [ -76.393470764160156, -13.641249656677189 ], [ -76.392639160156193, -13.641249656677189 ], [ -76.392639160156193, -13.64152812957758 ], [ -76.392364501953068, -13.64152812957758 ], [ -76.392364501953068, -13.642359733581543 ], [ -76.392639160156193, -13.642359733581543 ], [ -76.392639160156193, -13.643471717834416 ], [ -76.392913818359375, -13.643471717834416 ], [ -76.392913818359375, -13.643750190734863 ], [ -76.393196105957031, -13.643748283386117 ], [ -76.393196105957031, -13.64486026763916 ], [ -76.392913818359375, -13.64486026763916 ], [ -76.392913818359375, -13.645137786865234 ], [ -76.393470764160156, -13.645137786865234 ], [ -76.393470764160156, -13.645416259765625 ], [ -76.393753051757812, -13.645416259765625 ], [ -76.393753051757812, -13.645693778991699 ], [ -76.394027709960938, -13.645693778991699 ], [ -76.394027709960938, -13.64597225189209 ], [ -76.394302368164062, -13.64597225189209 ], [ -76.394302368164062, -13.647359848022461 ], [ -76.395973205566349, -13.647359848022461 ], [ -76.395973205566349, -13.647082328796273 ], [ -76.396247863769531, -13.647082328796273 ], [ -76.396247863769531, -13.646806716918945 ], [ -76.396804809570312, -13.646806716918945 ], [ -76.396804809570312, -13.646526336669865 ], [ -76.397361755371094, -13.646529197692871 ], [ -76.397361755371094, -13.64625072479248 ], [ -76.397636413574219, -13.64625072479248 ], [ -76.397636413574219, -13.646806716918945 ], [ -76.398193359374943, -13.646806716918945 ], [ -76.398193359374943, -13.646526336669865 ], [ -76.398475646972599, -13.646529197692871 ], [ -76.398475646972599, -13.64625072479248 ], [ -76.398750305175724, -13.64625072479248 ], [ -76.398750305175724, -13.64597225189209 ], [ -76.399307250976562, -13.64597225189209 ], [ -76.399307250976562, -13.646529197692871 ], [ -76.400413513183594, -13.646529197692871 ], [ -76.400413513183594, -13.64625072479248 ], [ -76.400970458984375, -13.64625072479248 ], [ -76.400970458984375, -13.64597225189209 ], [ -76.401527404785099, -13.64597225189209 ], [ -76.401527404785099, -13.64625072479248 ], [ -76.401802062988224, -13.64625072479248 ], [ -76.401802062988224, -13.646529197692871 ], [ -76.402359008789062, -13.646529197692871 ], [ -76.402359008789062, -13.64625072479248 ], [ -76.4031982421875, -13.64625072479248 ], [ -76.4031982421875, -13.64597225189209 ], [ -76.40374755859375, -13.64597225189209 ], [ -76.40374755859375, -13.645693778991699 ], [ -76.404304504394418, -13.645693778991699 ], [ -76.404304504394418, -13.645416259765625 ], [ -76.404861450195256, -13.645416259765625 ], [ -76.404861450195256, -13.645137786865234 ], [ -76.405136108398381, -13.645137786865234 ], [ -76.405136108398381, -13.642915725708008 ], [ -76.404861450195256, -13.642915725708008 ], [ -76.404861450195256, -13.642638206481934 ], [ -76.405136108398381, -13.642638206481934 ], [ -76.405136108398381, -13.642359733581543 ], [ -76.404861450195256, -13.642359733581543 ], [ -76.404861450195256, -13.64152812957758 ], [ -76.404304504394418, -13.64152812957758 ], [ -76.404304504394418, -13.641249656677189 ], [ -76.40374755859375, -13.641249656677189 ], [ -76.40374755859375, -13.64152812957758 ], [ -76.4031982421875, -13.64152812957758 ], [ -76.4031982421875, -13.64013767242426 ], [ -76.403472900390625, -13.64013767242426 ], [ -76.403472900390625, -13.639860153198242 ], [ -76.402641296386719, -13.639860153198242 ], [ -76.402641296386719, -13.64013767242426 ], [ -76.402359008789062, -13.64013767242426 ], [ -76.402359008789062, -13.64041805267334 ], [ -76.402084350585881, -13.640416145324707 ], [ -76.402084350585881, -13.640693664550724 ], [ -76.401802062988224, -13.640693664550724 ], [ -76.401802062988224, -13.640972137451115 ], [ -76.401527404785099, -13.640970230102539 ], [ -76.401527404785099, -13.641249656677189 ], [ -76.400970458984375, -13.641249656677189 ], [ -76.400970458984375, -13.64152812957758 ], [ -76.40069580078125, -13.64152812957758 ], [ -76.40069580078125, -13.641249656677189 ], [ -76.400413513183594, -13.641249656677189 ], [ -76.400413513183594, -13.640970230102539 ], [ -76.399864196777344, -13.640972137451115 ], [ -76.399864196777344, -13.640693664550724 ], [ -76.399307250976562, -13.640693664550724 ], [ -76.399307250976562, -13.64013767242426 ], [ -76.398193359374943, -13.64013767242426 ], [ -76.398193359374943, -13.639583587646484 ], [ -76.397636413574219, -13.639583587646484 ] ] ], [ [ [ -76.400413513183594, -13.622361183166504 ], [ -76.400413513183594, -13.622638702392578 ], [ -76.400138854980469, -13.622638702392578 ], [ -76.400138854980469, -13.623194694519043 ], [ -76.399864196777344, -13.623194694519043 ], [ -76.399864196777344, -13.624029159545898 ], [ -76.399581909179688, -13.624027252197152 ], [ -76.399581909179688, -13.62458324432373 ], [ -76.399307250976562, -13.62458324432373 ], [ -76.399307250976562, -13.624027252197152 ], [ -76.398750305175724, -13.624029159545898 ], [ -76.398750305175724, -13.623748779296875 ], [ -76.397361755371094, -13.623748779296875 ], [ -76.397361755371094, -13.624029159545898 ], [ -76.397087097167969, -13.624027252197152 ], [ -76.397087097167969, -13.62430477142334 ], [ -76.396530151367188, -13.62430477142334 ], [ -76.396530151367188, -13.62458324432373 ], [ -76.396247863769531, -13.62458324432373 ], [ -76.396247863769531, -13.623748779296875 ], [ -76.396530151367188, -13.623748779296875 ], [ -76.396530151367188, -13.622917175292969 ], [ -76.395416259765568, -13.622917175292969 ], [ -76.395416259765568, -13.623194694519043 ], [ -76.395141601562443, -13.623194694519043 ], [ -76.395141601562443, -13.623748779296875 ], [ -76.394859313964787, -13.623748779296875 ], [ -76.394859313964787, -13.624029159545898 ], [ -76.394584655761719, -13.624027252197152 ], [ -76.394584655761719, -13.62458324432373 ], [ -76.394027709960938, -13.62458324432373 ], [ -76.394027709960938, -13.624027252197152 ], [ -76.393470764160156, -13.624027252197152 ], [ -76.393470764160156, -13.62430477142334 ], [ -76.393196105957031, -13.62430477142334 ], [ -76.393196105957031, -13.624860763549805 ], [ -76.392639160156193, -13.624860763549805 ], [ -76.392639160156193, -13.625139236450195 ], [ -76.392364501953068, -13.625139236450195 ], [ -76.392364501953068, -13.62541675567627 ], [ -76.391807556152287, -13.62541675567627 ], [ -76.391807556152287, -13.62569522857666 ], [ -76.390693664550781, -13.62569522857666 ], [ -76.390693664550781, -13.625970840454045 ], [ -76.39013671875, -13.625970840454045 ], [ -76.39013671875, -13.6268053054809 ], [ -76.389862060546875, -13.6268053054809 ], [ -76.389862060546875, -13.627361297607365 ], [ -76.389030456542912, -13.627361297607365 ], [ -76.389030456542912, -13.627638816833496 ], [ -76.387916564941406, -13.627638816833496 ], [ -76.387916564941406, -13.627917289733773 ], [ -76.387641906738281, -13.627917289733773 ], [ -76.387641906738281, -13.628194808959961 ], [ -76.387359619140625, -13.628194808959961 ], [ -76.387359619140625, -13.628473281860352 ], [ -76.3870849609375, -13.628473281860352 ], [ -76.3870849609375, -13.628748893737736 ], [ -76.386802673339844, -13.628748893737736 ], [ -76.386802673339844, -13.629304885864201 ], [ -76.386528015136719, -13.629304885864201 ], [ -76.386528015136719, -13.630139350891056 ], [ -76.388191223144531, -13.630139350891056 ], [ -76.388191223144531, -13.629860877990666 ], [ -76.388473510742074, -13.629860877990666 ], [ -76.388473510742074, -13.629583358764592 ], [ -76.389030456542912, -13.629583358764592 ], [ -76.389030456542912, -13.63097095489502 ], [ -76.389305114746037, -13.63097095489502 ], [ -76.389305114746037, -13.63124942779541 ], [ -76.389030456542912, -13.63124942779541 ], [ -76.389030456542912, -13.631526947021428 ], [ -76.388748168945256, -13.631526947021428 ], [ -76.388748168945256, -13.632637023925781 ], [ -76.39013671875, -13.63263988494873 ], [ -76.39013671875, -13.632361412048283 ], [ -76.390419006347656, -13.632361412048283 ], [ -76.390419006347656, -13.632081031799316 ], [ -76.390975952148438, -13.632081031799316 ], [ -76.390975952148438, -13.632918357849121 ], [ -76.391250610351562, -13.632918357849121 ], [ -76.391250610351562, -13.633193016052246 ], [ -76.391807556152287, -13.633193016052246 ], [ -76.391807556152287, -13.63347053527832 ], [ -76.392082214355412, -13.63347053527832 ], [ -76.392082214355412, -13.633193016052246 ], [ -76.394027709960938, -13.633193016052246 ], [ -76.394027709960938, -13.632918357849121 ], [ -76.394302368164062, -13.632918357849121 ], [ -76.394302368164062, -13.633193016052246 ], [ -76.395141601562443, -13.633193016052246 ], [ -76.395141601562443, -13.63347053527832 ], [ -76.395690917968693, -13.63347053527832 ], [ -76.395690917968693, -13.633193016052246 ], [ -76.395973205566349, -13.633193016052246 ], [ -76.395973205566349, -13.632918357849121 ], [ -76.396247863769531, -13.632918357849121 ], [ -76.396247863769531, -13.632361412048283 ], [ -76.395973205566349, -13.632361412048283 ], [ -76.395973205566349, -13.632081031799316 ], [ -76.395690917968693, -13.632082939147892 ], [ -76.395690917968693, -13.63124942779541 ], [ -76.395416259765568, -13.63124942779541 ], [ -76.395416259765568, -13.63097095489502 ], [ -76.395141601562443, -13.63097095489502 ], [ -76.395141601562443, -13.628748893737736 ], [ -76.395416259765568, -13.628748893737736 ], [ -76.395416259765568, -13.627638816833496 ], [ -76.395973205566349, -13.627638816833496 ], [ -76.395973205566349, -13.629860877990666 ], [ -76.395690917968693, -13.629860877990666 ], [ -76.395690917968693, -13.630695343017521 ], [ -76.395973205566349, -13.630695343017521 ], [ -76.395973205566349, -13.63124942779541 ], [ -76.396247863769531, -13.63124942779541 ], [ -76.396247863769531, -13.631805419921875 ], [ -76.396804809570312, -13.631805419921875 ], [ -76.396804809570312, -13.631526947021428 ], [ -76.397087097167969, -13.631526947021428 ], [ -76.397087097167969, -13.629583358764592 ], [ -76.396804809570312, -13.629583358764592 ], [ -76.396804809570312, -13.629027366638127 ], [ -76.397087097167969, -13.629027366638127 ], [ -76.397087097167969, -13.628473281860352 ], [ -76.397361755371094, -13.628473281860352 ], [ -76.397361755371094, -13.627917289733773 ], [ -76.397918701171875, -13.627917289733773 ], [ -76.397918701171875, -13.627638816833496 ], [ -76.398193359374943, -13.627638816833496 ], [ -76.398193359374943, -13.627361297607365 ], [ -76.399024963378849, -13.627361297607365 ], [ -76.399024963378849, -13.627082824706918 ], [ -76.401252746581918, -13.627082824706918 ], [ -76.401252746581918, -13.626251220703125 ], [ -76.40069580078125, -13.626251220703125 ], [ -76.40069580078125, -13.625970840454045 ], [ -76.400413513183594, -13.625970840454045 ], [ -76.400413513183594, -13.624860763549805 ], [ -76.400970458984375, -13.624860763549805 ], [ -76.400970458984375, -13.62458324432373 ], [ -76.401252746581918, -13.62458324432373 ], [ -76.401252746581918, -13.62430477142334 ], [ -76.401527404785099, -13.62430477142334 ], [ -76.401527404785099, -13.623748779296875 ], [ -76.401802062988224, -13.623748779296875 ], [ -76.401802062988224, -13.623194694519043 ], [ -76.401527404785099, -13.623194694519043 ], [ -76.401527404785099, -13.622638702392578 ], [ -76.401252746581918, -13.622638702392578 ], [ -76.401252746581918, -13.622361183166504 ], [ -76.400413513183594, -13.622361183166504 ] ] ], [ [ [ -76.19708251953125, -13.620138168334904 ], [ -76.19708251953125, -13.620416641235295 ], [ -76.196807861328125, -13.620416641235295 ], [ -76.196807861328125, -13.62125110626215 ], [ -76.19708251953125, -13.621248245239258 ], [ -76.19708251953125, -13.621805191040039 ], [ -76.197364807128906, -13.621805191040039 ], [ -76.197364807128906, -13.622361183166504 ], [ -76.197639465331974, -13.622361183166504 ], [ -76.197639465331974, -13.622917175292969 ], [ -76.197364807128906, -13.622917175292969 ], [ -76.197364807128906, -13.62541675567627 ], [ -76.197639465331974, -13.62541675567627 ], [ -76.197639465331974, -13.625970840454045 ], [ -76.197914123535099, -13.625970840454045 ], [ -76.197914123535099, -13.62652683258051 ], [ -76.198196411132756, -13.62652683258051 ], [ -76.198196411132756, -13.627361297607365 ], [ -76.198471069335881, -13.627361297607365 ], [ -76.198471069335881, -13.628194808959961 ], [ -76.198753356933537, -13.628194808959961 ], [ -76.198753356933537, -13.629027366638127 ], [ -76.199028015136719, -13.629027366638127 ], [ -76.199028015136719, -13.629860877990666 ], [ -76.199302673339844, -13.629860877990666 ], [ -76.199302673339844, -13.630139350891056 ], [ -76.1995849609375, -13.630139350891056 ], [ -76.1995849609375, -13.63097095489502 ], [ -76.199859619140625, -13.63097095489502 ], [ -76.199859619140625, -13.632637023925781 ], [ -76.200141906738281, -13.632637023925781 ], [ -76.200141906738281, -13.63347053527832 ], [ -76.200416564941406, -13.63347053527832 ], [ -76.200416564941406, -13.634305953979492 ], [ -76.200691223144474, -13.634305953979492 ], [ -76.200691223144474, -13.635136604309082 ], [ -76.200973510742131, -13.635136604309082 ], [ -76.200973510742131, -13.63597202301014 ], [ -76.201248168945256, -13.63597202301014 ], [ -76.201248168945256, -13.637082099914494 ], [ -76.201530456542912, -13.637082099914494 ], [ -76.201530456542912, -13.637915611267033 ], [ -76.201805114746037, -13.637915611267033 ], [ -76.201805114746037, -13.638471603393498 ], [ -76.202079772949219, -13.638471603393498 ], [ -76.202079772949219, -13.639583587646484 ], [ -76.202362060546875, -13.639583587646484 ], [ -76.202362060546875, -13.642638206481934 ], [ -76.20263671875, -13.642638206481934 ], [ -76.20263671875, -13.643750190734863 ], [ -76.202919006347656, -13.643748283386117 ], [ -76.202919006347656, -13.644583702087346 ], [ -76.203193664550781, -13.644583702087346 ], [ -76.203193664550781, -13.645693778991699 ], [ -76.203475952148438, -13.645693778991699 ], [ -76.203475952148438, -13.646529197692871 ], [ -76.203750610351562, -13.646526336669865 ], [ -76.203750610351562, -13.647639274597111 ], [ -76.204025268554631, -13.647639274597111 ], [ -76.204025268554631, -13.648472785949707 ], [ -76.204307556152287, -13.648472785949707 ], [ -76.204307556152287, -13.64930534362793 ], [ -76.204582214355412, -13.64930534362793 ], [ -76.204582214355412, -13.649861335754338 ], [ -76.204864501953068, -13.649861335754338 ], [ -76.204864501953068, -13.650138854980412 ], [ -76.20513916015625, -13.650138854980412 ], [ -76.20513916015625, -13.650694847106877 ], [ -76.205413818359375, -13.650694847106877 ], [ -76.205413818359375, -13.650973320007267 ], [ -76.205696105957031, -13.650973320007267 ], [ -76.205696105957031, -13.651527404785156 ], [ -76.205970764160156, -13.651527404785156 ], [ -76.205970764160156, -13.652639389038086 ], [ -76.206253051757812, -13.652639389038086 ], [ -76.206253051757812, -13.653195381164551 ], [ -76.206527709960938, -13.653195381164551 ], [ -76.206527709960938, -13.653751373290959 ], [ -76.206802368164062, -13.653751373290959 ], [ -76.206802368164062, -13.654305458068848 ], [ -76.207084655761605, -13.654305458068848 ], [ -76.207084655761605, -13.654026985168457 ], [ -76.207359313964787, -13.654026985168457 ], [ -76.207359313964787, -13.653470993041992 ], [ -76.207084655761605, -13.653470993041992 ], [ -76.207084655761605, -13.653195381164551 ], [ -76.207359313964787, -13.653195381164551 ], [ -76.207359313964787, -13.652916908264103 ], [ -76.207084655761605, -13.652916908264103 ], [ -76.207084655761605, -13.652360916137695 ], [ -76.206802368164062, -13.652360916137695 ], [ -76.206802368164062, -13.651527404785156 ], [ -76.206527709960938, -13.651527404785156 ], [ -76.206527709960938, -13.650417327880803 ], [ -76.206253051757812, -13.650417327880803 ], [ -76.206253051757812, -13.649028778076172 ], [ -76.205970764160156, -13.649028778076172 ], [ -76.205970764160156, -13.648192405700627 ], [ -76.205696105957031, -13.648195266723576 ], [ -76.205696105957031, -13.647639274597111 ], [ -76.205413818359375, -13.647639274597111 ], [ -76.205413818359375, -13.647359848022461 ], [ -76.20513916015625, -13.647359848022461 ], [ -76.20513916015625, -13.646526336669865 ], [ -76.204864501953068, -13.646529197692871 ], [ -76.204864501953068, -13.642915725708008 ], [ -76.204582214355412, -13.642915725708008 ], [ -76.204582214355412, -13.641805648803654 ], [ -76.204307556152287, -13.641805648803654 ], [ -76.204307556152287, -13.640970230102539 ], [ -76.204025268554631, -13.640970230102539 ], [ -76.204025268554631, -13.639860153198242 ], [ -76.203750610351562, -13.639860153198242 ], [ -76.203750610351562, -13.638750076293888 ], [ -76.203475952148438, -13.638750076293888 ], [ -76.203475952148438, -13.637915611267033 ], [ -76.203193664550781, -13.637915611267033 ], [ -76.203193664550781, -13.637361526489258 ], [ -76.202919006347656, -13.637361526489258 ], [ -76.202919006347656, -13.636528015136719 ], [ -76.20263671875, -13.636528015136719 ], [ -76.20263671875, -13.635693550109863 ], [ -76.202362060546875, -13.635693550109863 ], [ -76.202362060546875, -13.635136604309082 ], [ -76.202079772949219, -13.635136604309082 ], [ -76.202079772949219, -13.634305953979492 ], [ -76.201805114746037, -13.634305953979492 ], [ -76.201805114746037, -13.633749008178711 ], [ -76.201530456542912, -13.633749008178711 ], [ -76.201530456542912, -13.632918357849121 ], [ -76.201248168945256, -13.632918357849121 ], [ -76.201248168945256, -13.632081031799316 ], [ -76.200973510742131, -13.632081031799316 ], [ -76.200973510742131, -13.631526947021428 ], [ -76.200691223144474, -13.631526947021428 ], [ -76.200691223144474, -13.630139350891056 ], [ -76.200416564941406, -13.630139350891056 ], [ -76.200416564941406, -13.629583358764592 ], [ -76.200141906738281, -13.629583358764592 ], [ -76.200141906738281, -13.628194808959961 ], [ -76.199859619140625, -13.628194808959961 ], [ -76.199859619140625, -13.627361297607365 ], [ -76.1995849609375, -13.627361297607365 ], [ -76.1995849609375, -13.62652683258051 ], [ -76.199302673339844, -13.62652683258051 ], [ -76.199302673339844, -13.62541675567627 ], [ -76.199028015136719, -13.62541675567627 ], [ -76.199028015136719, -13.623473167419434 ], [ -76.198753356933537, -13.623473167419434 ], [ -76.198753356933537, -13.622638702392578 ], [ -76.198471069335881, -13.622638702392578 ], [ -76.198471069335881, -13.621528625488224 ], [ -76.198196411132756, -13.621528625488224 ], [ -76.198196411132756, -13.620695114135742 ], [ -76.197914123535099, -13.620695114135742 ], [ -76.197914123535099, -13.620138168334904 ], [ -76.19708251953125, -13.620138168334904 ] ] ], [ [ [ -75.612915039062443, -12.965598106384277 ], [ -75.610313415527344, -12.967054367065373 ], [ -75.608680725097656, -12.968564987182617 ], [ -75.608085632324219, -12.969807624816838 ], [ -75.605880737304631, -12.972895622253361 ], [ -75.60498046875, -12.974922180175724 ], [ -75.604598999023438, -12.975320816040039 ], [ -75.604141235351506, -12.976822853088379 ], [ -75.603584289550724, -12.977782249450627 ], [ -75.603218078613168, -12.979374885559082 ], [ -75.603225708007812, -12.980668067932072 ], [ -75.603721618652344, -12.982303619384652 ], [ -75.604377746582031, -12.983434677124023 ], [ -75.605407714843693, -12.984218597412109 ], [ -75.606918334960881, -12.986103057861271 ], [ -75.608078002929631, -12.98799991607666 ], [ -75.608879089355469, -12.990158081054688 ], [ -75.609245300292969, -12.994290351867676 ], [ -75.610008239746094, -12.996377944946289 ], [ -75.6102294921875, -12.997852325439453 ], [ -75.609367370605469, -12.999236106872502 ], [ -75.609413146972599, -13.001505851745549 ], [ -75.608551025390568, -13.003388404846135 ], [ -75.608695983886719, -13.004101753234863 ], [ -75.609886169433537, -13.006387710571289 ], [ -75.611686706542912, -13.008001327514535 ], [ -75.612617492675781, -13.00937557220459 ], [ -75.614097595214844, -13.009623527526799 ], [ -75.6158447265625, -13.010308265686035 ], [ -75.617660522460938, -13.011279106140137 ], [ -75.618797302246094, -13.012233734130803 ], [ -75.619621276855355, -13.013355255126896 ], [ -75.620285034179631, -13.014888763427678 ], [ -75.620559692382756, -13.017900466918888 ], [ -75.621269226074219, -13.018965721130314 ], [ -75.622047424316406, -13.019306182861214 ], [ -75.625892639160099, -13.019351005554142 ], [ -75.627731323242188, -13.020044326782227 ], [ -75.628845214843693, -13.020195007324219 ], [ -75.629249572753849, -13.020708084106445 ], [ -75.629646301269531, -13.022210121154785 ], [ -75.630172729492131, -13.022841453552246 ], [ -75.632049560546875, -13.024076461791992 ], [ -75.633941650390625, -13.026167869567871 ], [ -75.634979248046875, -13.026617050170898 ], [ -75.636421203613281, -13.027797698974609 ], [ -75.638717651367188, -13.028804779052678 ], [ -75.639457702636605, -13.029644012451172 ], [ -75.639747619628906, -13.030711174011174 ], [ -75.639831542968693, -13.033840179443359 ], [ -75.639427185058537, -13.036091804504338 ], [ -75.639541625976506, -13.036444664001351 ], [ -75.638954162597599, -13.037693977355957 ], [ -75.638542175292969, -13.040595054626465 ], [ -75.637763977050781, -13.042062759399414 ], [ -75.637489318847656, -13.043338775634652 ], [ -75.633705139160099, -13.046340942382812 ], [ -75.632713317871094, -13.047890663146973 ], [ -75.630966186523381, -13.049812316894474 ], [ -75.629646301269531, -13.052139282226562 ], [ -75.628829956054688, -13.053144454956055 ], [ -75.628341674804688, -13.056038856506291 ], [ -75.62811279296875, -13.056266784667969 ], [ -75.628433227539062, -13.056816101074219 ], [ -75.629234313964787, -13.057310104370004 ], [ -75.631172180175781, -13.057624816894474 ], [ -75.632949829101506, -13.058629989623967 ], [ -75.63433837890625, -13.05974006652832 ], [ -75.634918212890625, -13.061178207397461 ], [ -75.63616943359375, -13.061552047729492 ], [ -75.637306213378906, -13.062762260436955 ], [ -75.638671874999943, -13.063093185424748 ], [ -75.639511108398438, -13.062955856323242 ], [ -75.639961242675781, -13.062621116638184 ], [ -75.640975952148381, -13.062789916992074 ], [ -75.644676208496037, -13.065764427185059 ], [ -75.645965576171875, -13.066258430480957 ], [ -75.647224426269531, -13.06750297546381 ], [ -75.648857116699219, -13.068077087402344 ], [ -75.650367736816406, -13.06900501251215 ], [ -75.651641845703068, -13.06934738159174 ], [ -75.653053283691406, -13.070281028747502 ], [ -75.656204223632812, -13.067668914794922 ], [ -75.658432006835881, -13.066335678100529 ], [ -75.661849975585881, -13.065384864807072 ], [ -75.664710998535099, -13.064303398132324 ], [ -75.666702270507756, -13.062635421752873 ], [ -75.667556762695256, -13.062260627746582 ], [ -75.669090270996037, -13.060774803161621 ], [ -75.671051025390625, -13.059549331665039 ], [ -75.672416687011719, -13.058956146240178 ], [ -75.675697326660043, -13.056506156921387 ], [ -75.676750183105469, -13.05545520782465 ], [ -75.677787780761662, -13.053941726684513 ], [ -75.677970886230412, -13.052486419677678 ], [ -75.676017761230469, -13.04691123962391 ], [ -75.6759033203125, -13.045538902282715 ], [ -75.676277160644531, -13.043259620666447 ], [ -75.676765441894531, -13.041775703430176 ], [ -75.677734375, -13.041040420532227 ], [ -75.6787109375, -13.040739059448242 ], [ -75.681243896484375, -13.040860176086369 ], [ -75.6815185546875, -13.041093826293832 ], [ -75.684082031249943, -13.041623115539494 ], [ -75.688308715820312, -13.044360160827523 ], [ -75.691421508789006, -13.047549247741699 ], [ -75.692855834960881, -13.049607276916504 ], [ -75.693786621093693, -13.051413536071721 ], [ -75.695434570312443, -13.056227684020996 ], [ -75.696052551269531, -13.058812141418343 ], [ -75.695892333984318, -13.061389923095703 ], [ -75.694450378417912, -13.067480087280217 ], [ -75.694526672363281, -13.070517539978027 ], [ -75.695114135742188, -13.073209762573185 ], [ -75.695854187011719, -13.07451057434082 ], [ -75.698364257812443, -13.077225685119629 ], [ -75.703193664550781, -13.078396797180176 ], [ -75.705307006835938, -13.079403877258244 ], [ -75.706649780273438, -13.080594062805176 ], [ -75.706832885742188, -13.081441879272461 ], [ -75.706588745117131, -13.082845687866154 ], [ -75.705772399902344, -13.084710121154785 ], [ -75.705085754394531, -13.085469245910645 ], [ -75.705032348632812, -13.086492538452035 ], [ -75.706138610839844, -13.08830738067627 ], [ -75.708610534667969, -13.090570449829045 ], [ -75.709632873535099, -13.092112541198674 ], [ -75.710357666015625, -13.094291687011719 ], [ -75.711189270019531, -13.09901046752924 ], [ -75.712539672851562, -13.10076713562006 ], [ -75.713256835937443, -13.104183197021371 ], [ -75.716407775878849, -13.107854843139535 ], [ -75.718475341796875, -13.109132766723633 ], [ -75.71893310546875, -13.110343933105412 ], [ -75.718910217285156, -13.110967636108342 ], [ -75.718147277832031, -13.111927986144906 ], [ -75.715492248535156, -13.112820625305176 ], [ -75.713874816894531, -13.114235877990723 ], [ -75.713142395019474, -13.115060806274414 ], [ -75.712402343749943, -13.116644859313908 ], [ -75.711822509765568, -13.117387771606332 ], [ -75.711524963378849, -13.120771408081055 ], [ -75.709671020507812, -13.124176025390568 ], [ -75.709770202636719, -13.127024650573674 ], [ -75.70928955078125, -13.128417015075684 ], [ -75.708755493164006, -13.13149356842041 ], [ -75.708198547363224, -13.132562637329102 ], [ -75.706802368164062, -13.13405799865717 ], [ -75.705924987792912, -13.135471343994141 ], [ -75.705673217773438, -13.136836051940861 ], [ -75.705848693847656, -13.138121604919434 ], [ -75.707984924316406, -13.141260147094727 ], [ -75.708374023437443, -13.142824172973576 ], [ -75.707168579101449, -13.143495559692326 ], [ -75.70538330078125, -13.143726348876896 ], [ -75.701332092285099, -13.142058372497559 ], [ -75.700378417968693, -13.142078399658203 ], [ -75.698234558105469, -13.143972396850529 ], [ -75.697113037109375, -13.145415306091252 ], [ -75.693878173828068, -13.14820671081543 ], [ -75.693603515624943, -13.149065971374455 ], [ -75.694107055664062, -13.150656700134277 ], [ -75.694786071777344, -13.151638984680176 ], [ -75.69635009765625, -13.153100013732853 ], [ -75.696578979492131, -13.153996467590332 ], [ -75.696136474609375, -13.155390739440918 ], [ -75.694602966308594, -13.15678596496582 ], [ -75.694435119628906, -13.158431053161621 ], [ -75.694946289062443, -13.159516334533578 ], [ -75.696525573730469, -13.161336898803654 ], [ -75.698112487792969, -13.162335395812988 ], [ -75.699295043945312, -13.163391113281193 ], [ -75.700592041015625, -13.165305137634277 ], [ -75.700843811035099, -13.166282653808594 ], [ -75.700828552246094, -13.167574882507211 ], [ -75.699569702148438, -13.169928550720158 ], [ -75.699600219726506, -13.171023368835449 ], [ -75.700920104980469, -13.174083709716683 ], [ -75.703819274902287, -13.177694320678711 ], [ -75.704940795898381, -13.18101692199707 ], [ -75.705612182617131, -13.183791160583382 ], [ -75.706596374511605, -13.186274528503418 ], [ -75.706771850585881, -13.18792819976801 ], [ -75.706497192382756, -13.188697814941406 ], [ -75.705940246582031, -13.18933200836176 ], [ -75.705131530761662, -13.18980598449707 ], [ -75.703384399414062, -13.191593170166016 ], [ -75.702362060546875, -13.192234992980957 ], [ -75.701591491699219, -13.194589614868164 ], [ -75.699630737304631, -13.196928024291879 ], [ -75.698745727539006, -13.198758125305176 ], [ -75.698280334472599, -13.200348854064941 ], [ -75.696983337402344, -13.202486991882324 ], [ -75.694602966308594, -13.205086708068791 ], [ -75.692672729492074, -13.206368446350098 ], [ -75.691673278808594, -13.20748329162592 ], [ -75.691009521484375, -13.209292411804199 ], [ -75.690856933593693, -13.211581230163574 ], [ -75.690254211425724, -13.213310241699219 ], [ -75.690528869628906, -13.214267730712891 ], [ -75.692207336425781, -13.214868545532227 ], [ -75.693778991699219, -13.215886116027832 ], [ -75.695793151855412, -13.217398643493652 ], [ -75.697555541992188, -13.219185829162541 ], [ -75.700263977050781, -13.223275184631348 ], [ -75.701461791992188, -13.224319458007756 ], [ -75.702232360839844, -13.225700378417969 ], [ -75.702667236328068, -13.227009773254338 ], [ -75.702545166015625, -13.229785919189453 ], [ -75.701011657714844, -13.233344078063908 ], [ -75.700759887695256, -13.236454963684025 ], [ -75.701171875, -13.240115165710392 ], [ -75.702232360839844, -13.243250846862793 ], [ -75.703254699706974, -13.244078636169434 ], [ -75.705322265624943, -13.245157241821232 ], [ -75.705894470214787, -13.246216773986816 ], [ -75.705764770507812, -13.24859428405756 ], [ -75.704673767089787, -13.250964164733887 ], [ -75.704421997070312, -13.25201511383051 ], [ -75.704467773437443, -13.255702018737793 ], [ -75.704101562499943, -13.258425712585392 ], [ -75.704917907714844, -13.263875007629395 ], [ -75.703727722167912, -13.267070770263558 ], [ -75.703819274902287, -13.268356323242188 ], [ -75.705619812011662, -13.272085189819336 ], [ -75.704132080078125, -13.274956703186035 ], [ -75.703865051269531, -13.277894020080566 ], [ -75.703987121581974, -13.279067993164006 ], [ -75.704872131347599, -13.281109809875375 ], [ -75.705467224121094, -13.2838134765625 ], [ -75.70623779296875, -13.285490989685059 ], [ -75.706497192382756, -13.287760734558105 ], [ -75.707473754882812, -13.28912353515625 ], [ -75.710929870605469, -13.291348457336426 ], [ -75.713371276855469, -13.293644905090332 ], [ -75.715232849121094, -13.29451847076416 ], [ -75.716690063476506, -13.294831275939885 ], [ -75.720016479492131, -13.296530723571777 ], [ -75.720886230468693, -13.297360420227051 ], [ -75.7235107421875, -13.299142837524357 ], [ -75.725997924804688, -13.302027702331486 ], [ -75.726951599121094, -13.304241180419865 ], [ -75.727531433105469, -13.305080413818359 ], [ -75.729728698730469, -13.306654930114746 ], [ -75.733657836914006, -13.310208320617676 ], [ -75.735603332519531, -13.310887336730957 ], [ -75.736602783203068, -13.310667991638184 ], [ -75.738021850585938, -13.310818672180176 ], [ -75.740249633789006, -13.31240272521967 ], [ -75.741180419921818, -13.312724113464242 ], [ -75.745521545410156, -13.31261157989502 ], [ -75.748100280761719, -13.312117576599064 ], [ -75.751274108886719, -13.310969352722168 ], [ -75.753700256347599, -13.308819770812988 ], [ -75.754249572753849, -13.30865573883051 ], [ -75.756263732910099, -13.310149192809945 ], [ -75.757743835449219, -13.310957908630371 ], [ -75.759544372558594, -13.312699317932129 ], [ -75.760414123535156, -13.314105033874512 ], [ -75.760696411132812, -13.316853523254338 ], [ -75.761947631835938, -13.31846809387207 ], [ -75.768241882324219, -13.321352958679199 ], [ -75.773239135742131, -13.325098037719613 ], [ -75.777198791503906, -13.326216697692871 ], [ -75.777717590331974, -13.326774597167969 ], [ -75.778701782226562, -13.329068183898869 ], [ -75.779335021972599, -13.329880714416504 ], [ -75.784370422363281, -13.331982612609863 ], [ -75.786567687988281, -13.334127426147404 ], [ -75.788208007812443, -13.336716651916504 ], [ -75.789245605468693, -13.339469909667969 ], [ -75.790512084960881, -13.34173679351801 ], [ -75.791427612304688, -13.344328880310059 ], [ -75.791786193847656, -13.346324920654297 ], [ -75.791763305664062, -13.347437858581429 ], [ -75.793357849121037, -13.349341392517033 ], [ -75.793487548828125, -13.351003646850529 ], [ -75.794349670410156, -13.352636337280217 ], [ -75.794471740722656, -13.353831291198617 ], [ -75.795135498046875, -13.355727195739689 ], [ -75.795288085937386, -13.360779762268066 ], [ -75.796928405761719, -13.363995552062988 ], [ -75.797225952148438, -13.36637020111084 ], [ -75.798347473144531, -13.368982315063477 ], [ -75.798477172851562, -13.37103271484375 ], [ -75.799102783203011, -13.372060775756836 ], [ -75.799575805664006, -13.374402046203613 ], [ -75.801292419433537, -13.379152297973576 ], [ -75.803398132324219, -13.38112640380848 ], [ -75.804840087890625, -13.381978034973088 ], [ -75.806175231933594, -13.38240909576416 ], [ -75.806701660156193, -13.382950782775822 ], [ -75.807487487792912, -13.383229255676213 ], [ -75.808128356933537, -13.383777618408146 ], [ -75.809906005859375, -13.388111114501953 ], [ -75.810111999511719, -13.389664649963379 ], [ -75.809867858886662, -13.392507553100529 ], [ -75.810440063476506, -13.394747734069824 ], [ -75.81048583984375, -13.395949363708439 ], [ -75.809837341308594, -13.397261619567871 ], [ -75.808090209960938, -13.399536132812386 ], [ -75.8077392578125, -13.40056037902832 ], [ -75.806098937988281, -13.401243209838867 ], [ -75.804008483886719, -13.402489662170353 ], [ -75.801284790039006, -13.403176307678166 ], [ -75.799850463867131, -13.403820991516056 ], [ -75.79779052734375, -13.40388298034668 ], [ -75.794242858886719, -13.403478622436467 ], [ -75.792098999023438, -13.403683662414551 ], [ -75.790824890136719, -13.40428352355957 ], [ -75.789230346679688, -13.40583610534668 ], [ -75.788566589355469, -13.406190872192383 ], [ -75.787666320800781, -13.406455993652344 ], [ -75.78289794921875, -13.406469345092773 ], [ -75.779830932617131, -13.40874004364008 ], [ -75.778274536132812, -13.409304618835392 ], [ -75.776306152343693, -13.409412384033203 ], [ -75.774604797363281, -13.410175323486328 ], [ -75.773483276367188, -13.410305023193303 ], [ -75.772171020507812, -13.410194396972599 ], [ -75.771308898925781, -13.409824371337834 ], [ -75.770660400390568, -13.409275054931641 ], [ -75.769630432128849, -13.409222602844238 ], [ -75.7689208984375, -13.409650802612305 ], [ -75.767959594726562, -13.410664558410645 ], [ -75.765548706054688, -13.412220001220589 ], [ -75.763801574706974, -13.412549972534066 ], [ -75.763130187988224, -13.412894248962402 ], [ -75.759468078613281, -13.412997245788574 ], [ -75.757492065429631, -13.41357421875 ], [ -75.755798339843693, -13.413443565368652 ], [ -75.754119873046875, -13.412615776062012 ], [ -75.753280639648438, -13.412527084350529 ], [ -75.751914978027344, -13.411916732788086 ], [ -75.750274658203011, -13.410022735595589 ], [ -75.748420715332031, -13.407135009765568 ], [ -75.74713134765625, -13.405926704406681 ], [ -75.746253967285099, -13.404755592346191 ], [ -75.743431091308594, -13.40467357635498 ], [ -75.742088317871094, -13.405101776123047 ], [ -75.74078369140625, -13.405214309692383 ], [ -75.739875793456974, -13.405867576599064 ], [ -75.736656188964844, -13.409086227416935 ], [ -75.734230041503849, -13.410223007202148 ], [ -75.730598449706974, -13.410670280456429 ], [ -75.727737426757756, -13.412051200866699 ], [ -75.725379943847599, -13.412502288818246 ], [ -75.721817016601562, -13.412603378295898 ], [ -75.720252990722656, -13.412238121032715 ], [ -75.719329833984375, -13.41225624084467 ], [ -75.718528747558594, -13.412882804870605 ], [ -75.717811584472656, -13.41447639465332 ], [ -75.716651916503906, -13.415547370910588 ], [ -75.714805603027344, -13.416247367858887 ], [ -75.713020324707031, -13.416233062744141 ], [ -75.712211608886662, -13.416506767272949 ], [ -75.711441040039006, -13.417179107665902 ], [ -75.710662841796818, -13.418328285217228 ], [ -75.709213256835938, -13.421714782714844 ], [ -75.707962036132812, -13.422838211059513 ], [ -75.707153320312443, -13.423031806945801 ], [ -75.705154418945256, -13.422531127929688 ], [ -75.703414916992131, -13.422616958618164 ], [ -75.702308654785156, -13.424358367919922 ], [ -75.7012939453125, -13.427408218383732 ], [ -75.699485778808594, -13.429517745971623 ], [ -75.697319030761662, -13.431153297424316 ], [ -75.696754455566349, -13.433367729186898 ], [ -75.695999145507756, -13.434528350830021 ], [ -75.695014953613281, -13.43535327911377 ], [ -75.692153930664062, -13.437126159667969 ], [ -75.690681457519531, -13.43853855133051 ], [ -75.689605712890568, -13.439238548278809 ], [ -75.688667297363168, -13.439005851745605 ], [ -75.686470031738224, -13.436868667602425 ], [ -75.684616088867188, -13.436160087585449 ], [ -75.683784484863224, -13.435583114624023 ], [ -75.682060241699162, -13.433869361877385 ], [ -75.681396484374943, -13.432759284973145 ], [ -75.680130004882812, -13.431967735290527 ], [ -75.677375793457031, -13.429099082946777 ], [ -75.676498413085938, -13.429202079772949 ], [ -75.674591064453125, -13.429965019226074 ], [ -75.671775817871037, -13.429874420166016 ], [ -75.6693115234375, -13.430514335632324 ], [ -75.668365478515625, -13.430525779724121 ], [ -75.665702819824219, -13.42994499206543 ], [ -75.663459777831974, -13.427718162536564 ], [ -75.66229248046875, -13.427104949951172 ], [ -75.659103393554574, -13.427077293395996 ], [ -75.655342102050781, -13.427802085876408 ], [ -75.652976989746037, -13.427211761474609 ], [ -75.652259826660156, -13.426624298095703 ], [ -75.650764465332031, -13.426058769226074 ], [ -75.64923095703125, -13.424082756042424 ], [ -75.645072937011662, -13.421055793762207 ], [ -75.644416809081918, -13.419666290283203 ], [ -75.642745971679688, -13.418041229248047 ], [ -75.641860961914062, -13.41773509979248 ], [ -75.638954162597599, -13.417587280273438 ], [ -75.637786865234375, -13.417167663574162 ], [ -75.633384704589844, -13.410877227783146 ], [ -75.633071899414062, -13.411149024963379 ], [ -75.633064270019474, -13.412443161010685 ], [ -75.632514953613281, -13.413510322570801 ], [ -75.631393432617188, -13.414481163024789 ], [ -75.6302490234375, -13.414916038513184 ], [ -75.628005981445256, -13.414958953857365 ], [ -75.625579833984375, -13.414235115051213 ], [ -75.624160766601562, -13.414091110229492 ], [ -75.623023986816349, -13.414464950561523 ], [ -75.619293212890625, -13.416408538818303 ], [ -75.616432189941406, -13.416959762573242 ], [ -75.614738464355412, -13.416447639465332 ], [ -75.614303588867188, -13.415824890136662 ], [ -75.613929748535156, -13.414532661437875 ], [ -75.613822937011719, -13.412238121032715 ], [ -75.613227844238224, -13.410683631896916 ], [ -75.612991333007812, -13.409235954284554 ], [ -75.611480712890568, -13.407233238220101 ], [ -75.606719970703068, -13.402397155761605 ], [ -75.605995178222656, -13.400897026062012 ], [ -75.605010986328068, -13.399662017822266 ], [ -75.604400634765625, -13.398116111755371 ], [ -75.603340148925781, -13.396589279174748 ], [ -75.602973937988281, -13.395165443420353 ], [ -75.602127075195312, -13.394180297851506 ], [ -75.600524902343693, -13.390848159790039 ], [ -75.599975585937386, -13.390108108520451 ], [ -75.598686218261719, -13.389016151428223 ], [ -75.597785949707031, -13.389237403869572 ], [ -75.592781066894531, -13.394211769103947 ], [ -75.591911315917969, -13.395516395568791 ], [ -75.589431762695312, -13.397348403930664 ], [ -75.585525512695312, -13.401471138000488 ], [ -75.583625793457031, -13.402606010437012 ], [ -75.581878662109375, -13.40326976776123 ], [ -75.579063415527287, -13.403358459472656 ], [ -75.574485778808537, -13.402871131896916 ], [ -75.571754455566406, -13.403548240661621 ], [ -75.568527221679688, -13.402622222900391 ], [ -75.565612792968693, -13.402573585510197 ], [ -75.563423156738224, -13.403033256530705 ], [ -75.557868957519531, -13.402846336364632 ], [ -75.557395935058594, -13.403000831604004 ], [ -75.556877136230469, -13.403841972351074 ], [ -75.556159973144531, -13.404432296752873 ], [ -75.554092407226506, -13.405685424804688 ], [ -75.553192138671875, -13.405947685241699 ], [ -75.551132202148381, -13.40594291687006 ], [ -75.549522399902287, -13.406398773193246 ], [ -75.548179626464787, -13.406049728393498 ], [ -75.545082092285156, -13.403985023498535 ], [ -75.543479919433594, -13.403907775878849 ], [ -75.539810180664062, -13.404647827148381 ], [ -75.538146972656193, -13.404452323913517 ], [ -75.536972045898438, -13.403668403625488 ], [ -75.536453247070256, -13.402899742126465 ], [ -75.535583496093693, -13.400380134582463 ], [ -75.5333251953125, -13.395928382873478 ], [ -75.532463073730469, -13.392728805541992 ], [ -75.530838012695312, -13.38940334320057 ], [ -75.530128479003906, -13.389206886291504 ], [ -75.529205322265568, -13.389408111572209 ], [ -75.524551391601562, -13.391433715820312 ], [ -75.523056030273438, -13.391066551208496 ], [ -75.521232604980469, -13.390046119689941 ], [ -75.518943786621094, -13.388145446777344 ], [ -75.515052795410156, -13.383886337280273 ], [ -75.514488220214844, -13.381210327148381 ], [ -75.513504028320312, -13.378816604614258 ], [ -75.512725830078125, -13.377451896667424 ], [ -75.511009216308594, -13.375259399414062 ], [ -75.509277343749943, -13.373552322387695 ], [ -75.505836486816349, -13.372093200683594 ], [ -75.504623413085938, -13.371074676513672 ], [ -75.503929138183537, -13.36830997467041 ], [ -75.503631591796818, -13.366030693054142 ], [ -75.503608703613281, -13.355478286743164 ], [ -75.503051757812443, -13.353067398071289 ], [ -75.502555847167969, -13.352778434753304 ], [ -75.501899719238281, -13.35277080535883 ], [ -75.501510620117188, -13.353531837463379 ], [ -75.499687194824219, -13.355109214782715 ], [ -75.499290466308594, -13.356057167053166 ], [ -75.498992919921875, -13.359837532043457 ], [ -75.496658325195256, -13.367988586425781 ], [ -75.497116088867188, -13.370628356933537 ], [ -75.496910095214844, -13.372772216796875 ], [ -75.495719909667912, -13.374752998351994 ], [ -75.493980407714844, -13.376494407653752 ], [ -75.493507385253906, -13.37805080413807 ], [ -75.493682861328125, -13.379651069641113 ], [ -75.494621276855469, -13.381928443908691 ], [ -75.498939514160156, -13.388689994812012 ], [ -75.498893737792969, -13.390707015991154 ], [ -75.498062133789062, -13.391605377197209 ], [ -75.495552062988281, -13.39299297332758 ], [ -75.493087768554688, -13.394923210143986 ], [ -75.491073608398438, -13.396963119506836 ], [ -75.489959716796875, -13.398601531982422 ], [ -75.488662719726506, -13.402156829833984 ], [ -75.488258361816406, -13.405782699584847 ], [ -75.486862182617131, -13.407251358032227 ], [ -75.486549377441349, -13.407867431640625 ], [ -75.486915588378906, -13.40928745269764 ], [ -75.486183166503849, -13.411031723022461 ], [ -75.486526489257812, -13.413455009460449 ], [ -75.486053466796875, -13.41468620300293 ], [ -75.482528686523438, -13.418120384216309 ], [ -75.480468749999943, -13.420809745788574 ], [ -75.476394653320312, -13.425030708312988 ], [ -75.474761962890625, -13.426216125488224 ], [ -75.470558166503849, -13.428251266479435 ], [ -75.465599060058537, -13.432191848754826 ], [ -75.465797424316406, -13.434064865112305 ], [ -75.468421936035156, -13.436627388000431 ], [ -75.468627929687443, -13.437973976135197 ], [ -75.470489501953125, -13.442030906677189 ], [ -75.469970703124943, -13.445096015930176 ], [ -75.470138549804688, -13.446561813354435 ], [ -75.471046447753906, -13.448223114013672 ], [ -75.470542907714787, -13.450899124145508 ], [ -75.470710754394531, -13.45135307312006 ], [ -75.472099304199219, -13.452725410461426 ], [ -75.471954345703125, -13.457036972045898 ], [ -75.472854614257812, -13.461113929748535 ], [ -75.472869873046875, -13.464078903198242 ], [ -75.472396850585938, -13.466602325439453 ], [ -75.470153808593693, -13.47077465057373 ], [ -75.469970703124943, -13.471408843994084 ], [ -75.47003173828125, -13.47303581237793 ], [ -75.469413757324162, -13.473760604858342 ], [ -75.468841552734318, -13.475270271301213 ], [ -75.46917724609375, -13.476138114929199 ], [ -75.470962524414062, -13.477031707763615 ], [ -75.471290588378849, -13.477636337280273 ], [ -75.470939636230412, -13.479021072387582 ], [ -75.469490051269474, -13.480613708496094 ], [ -75.469718933105469, -13.482351303100529 ], [ -75.470672607421875, -13.484292984008789 ], [ -75.472366333007756, -13.485891342162972 ], [ -75.4737548828125, -13.486746788024846 ], [ -75.476058959960881, -13.48732852935791 ], [ -75.476692199707031, -13.487762451171875 ], [ -75.476898193359375, -13.48871898651123 ], [ -75.476165771484318, -13.490893363952637 ], [ -75.476394653320312, -13.492375373840332 ], [ -75.478118896484375, -13.494622230529728 ], [ -75.481170654296875, -13.497528076171875 ], [ -75.482635498046875, -13.500302314758301 ], [ -75.483512878417912, -13.502965927124023 ], [ -75.484390258788949, -13.50365161895752 ], [ -75.484794616699219, -13.50435829162592 ], [ -75.485038757324162, -13.505550384521428 ], [ -75.484634399414062, -13.50666332244873 ], [ -75.484672546386662, -13.509374618530273 ], [ -75.484504699707031, -13.50999927520752 ], [ -75.483528137206974, -13.51148509979248 ], [ -75.483695983886662, -13.512948036193734 ], [ -75.485389709472656, -13.514717102050724 ], [ -75.486244201660156, -13.516839027404728 ], [ -75.487770080566406, -13.518753051757812 ], [ -75.488739013671875, -13.519259452819767 ], [ -75.489707946777287, -13.518806457519474 ], [ -75.490257263183594, -13.518885612487736 ], [ -75.491622924804631, -13.520212173461857 ], [ -75.493858337402344, -13.521529197692871 ], [ -75.494781494140568, -13.522953987121525 ], [ -75.494522094726562, -13.523434638976994 ], [ -75.493293762207031, -13.523879051208496 ], [ -75.489204406738281, -13.523436546325684 ], [ -75.486930847167912, -13.524969100952092 ], [ -75.484870910644531, -13.525769233703613 ], [ -75.478729248046818, -13.525064468383732 ], [ -75.477493286132756, -13.525167465209904 ], [ -75.478797912597656, -13.528572082519531 ], [ -75.495803833007756, -13.566823005676213 ], [ -75.496238708496094, -13.567120552062875 ], [ -75.496803283691406, -13.567173957824707 ], [ -75.497711181640568, -13.566574096679688 ], [ -75.500190734863224, -13.566426277160588 ], [ -75.501670837402344, -13.565880775451546 ], [ -75.505470275878906, -13.566426277160588 ], [ -75.507698059082031, -13.567522048950082 ], [ -75.508346557617188, -13.569691658019906 ], [ -75.50872802734375, -13.571969032287541 ], [ -75.5089111328125, -13.576670646667424 ], [ -75.509391784667969, -13.578767776489201 ], [ -75.510208129882756, -13.588729858398381 ], [ -75.512069702148438, -13.592780113220215 ], [ -75.516319274902287, -13.597160339355469 ], [ -75.5177001953125, -13.599338531494141 ], [ -75.518898010253849, -13.60190486907959 ], [ -75.519081115722599, -13.604443550109863 ], [ -75.518127441406193, -13.609057426452637 ], [ -75.517410278320312, -13.610939979553223 ], [ -75.515754699706974, -13.614044189453125 ], [ -75.512100219726562, -13.618060111999455 ], [ -75.509445190429631, -13.620594024658089 ], [ -75.50787353515625, -13.621431350708008 ], [ -75.506340026855469, -13.622773170471191 ], [ -75.504737854003906, -13.624439239501953 ], [ -75.503494262695312, -13.626206398010254 ], [ -75.500839233398438, -13.628371238708439 ], [ -75.498008728027287, -13.630057334899902 ], [ -75.493782043457031, -13.633683204650765 ], [ -75.491706848144474, -13.636564254760685 ], [ -75.489814758300724, -13.640941619873047 ], [ -75.488265991210881, -13.64287281036377 ], [ -75.488082885742131, -13.643766403198242 ], [ -75.48822021484375, -13.645975112914982 ], [ -75.487937927246094, -13.647005081176758 ], [ -75.486526489257812, -13.64951229095459 ], [ -75.484733581542969, -13.651576995849553 ], [ -75.484413146972656, -13.653721809387207 ], [ -75.484619140625, -13.655729293823185 ], [ -75.485733032226562, -13.659359931945801 ], [ -75.486183166503849, -13.663525581359806 ], [ -75.486091613769474, -13.667190551757812 ], [ -75.486503601074219, -13.668581008911076 ], [ -75.488121032714844, -13.671895027160588 ], [ -75.488334655761719, -13.672816276550236 ], [ -75.488098144531193, -13.675459861755371 ], [ -75.488464355468693, -13.676009178161621 ], [ -75.489135742187443, -13.675900459289494 ], [ -75.491294860839844, -13.674123764038029 ], [ -75.492996215820312, -13.673233032226506 ], [ -75.494911193847656, -13.672986984252873 ], [ -75.495674133300781, -13.673282623291016 ], [ -75.496574401855412, -13.674295425415039 ], [ -75.497657775878906, -13.6781969070434 ], [ -75.49908447265625, -13.680193901062012 ], [ -75.499122619628906, -13.68248176574707 ], [ -75.499534606933537, -13.684061050414925 ], [ -75.500144958496094, -13.685100555419922 ], [ -75.501602172851562, -13.686408996582031 ], [ -75.502731323242188, -13.686894416809025 ], [ -75.505767822265625, -13.685604095458928 ], [ -75.506744384765625, -13.68533992767334 ], [ -75.507347106933537, -13.685428619384709 ], [ -75.507820129394474, -13.686304092407227 ], [ -75.508308410644474, -13.688276290893555 ], [ -75.510223388671818, -13.690208435058537 ], [ -75.51141357421875, -13.692482948303223 ], [ -75.512138366699162, -13.693114280700627 ], [ -75.51348876953125, -13.693779945373535 ], [ -75.514686584472599, -13.69543361663807 ], [ -75.515655517578068, -13.696225166320744 ], [ -75.515869140625, -13.697799682617188 ], [ -75.515510559082031, -13.700177192687988 ], [ -75.5164794921875, -13.703983306884766 ], [ -75.517127990722656, -13.705473899841309 ], [ -75.515861511230355, -13.707527160644531 ], [ -75.515754699706974, -13.708342552185059 ], [ -75.51662445068348, -13.709868431091309 ], [ -75.518096923828125, -13.711465835571289 ], [ -75.518173217773438, -13.714701652526742 ], [ -75.518844604492188, -13.716464042663574 ], [ -75.519699096679688, -13.717856407165527 ], [ -75.524421691894474, -13.721343040466252 ], [ -75.525627136230469, -13.722716331481934 ], [ -75.525566101074162, -13.725028991699219 ], [ -75.527053833007812, -13.727622032165527 ], [ -75.527732849121094, -13.729393005371037 ], [ -75.527740478515625, -13.734646797180119 ], [ -75.528060913085881, -13.736914634704533 ], [ -75.529266357421875, -13.739499092102051 ], [ -75.531852722167912, -13.743472099304142 ], [ -75.532569885253906, -13.74413013458252 ], [ -75.533699035644531, -13.744606971740723 ], [ -75.535858154296818, -13.745125770568848 ], [ -75.5372314453125, -13.745203971862736 ], [ -75.539131164550668, -13.744894027709904 ], [ -75.541679382324162, -13.743557929992676 ], [ -75.543594360351506, -13.743391990661564 ], [ -75.546363830566349, -13.743510246276855 ], [ -75.547355651855469, -13.744007110595703 ], [ -75.550819396972656, -13.747099876403752 ], [ -75.555732727050781, -13.748841285705566 ], [ -75.552368164062443, -13.751409530639648 ], [ -75.550445556640568, -13.754523277282715 ], [ -75.549400329589787, -13.755594253540039 ], [ -75.544372558593693, -13.758108139038086 ], [ -75.540199279785156, -13.759446144103947 ], [ -75.539001464843693, -13.76057243347168 ], [ -75.538742065429631, -13.761754989623967 ], [ -75.538017272949219, -13.762581825256348 ], [ -75.537940979003906, -13.764036178588867 ], [ -75.538398742675781, -13.764352798461857 ], [ -75.537925720214844, -13.767545700073242 ], [ -75.538894653320312, -13.769640922546387 ], [ -75.539176940917969, -13.771664619445744 ], [ -75.538978576660156, -13.773239135742188 ], [ -75.537788391113224, -13.775239944458008 ], [ -75.537452697753906, -13.776959419250488 ], [ -75.537528991699219, -13.777626991271973 ], [ -75.538215637207031, -13.778937339782715 ], [ -75.540351867675724, -13.780931472778263 ], [ -75.540985107421875, -13.781905174255314 ], [ -75.541107177734318, -13.783107757568359 ], [ -75.540626525878849, -13.787315368652344 ], [ -75.540069580078068, -13.789104461669865 ], [ -75.539344787597656, -13.790262222290039 ], [ -75.535614013671875, -13.793663024902287 ], [ -75.534523010253849, -13.794217109680176 ], [ -75.532318115234375, -13.794376373291016 ], [ -75.530181884765625, -13.795002937316895 ], [ -75.528961181640625, -13.795829772949219 ], [ -75.527931213378906, -13.797151565551701 ], [ -75.527412414550781, -13.798653602600041 ], [ -75.526931762695312, -13.802143096923771 ], [ -75.525642395019531, -13.806270599365178 ], [ -75.524879455566406, -13.816878318786621 ], [ -75.525558471679631, -13.818349838256836 ], [ -75.527496337890511, -13.820118904113713 ], [ -75.528480529785156, -13.820515632629395 ], [ -75.531654357910156, -13.820939064025879 ], [ -75.532257080078068, -13.821247100829964 ], [ -75.533119201660099, -13.822121620178166 ], [ -75.534980773925781, -13.822995185852051 ], [ -75.535713195800781, -13.824440002441406 ], [ -75.536376953125, -13.828435897827092 ], [ -75.53680419921875, -13.829590797424316 ], [ -75.540916442871037, -13.83203220367426 ], [ -75.542495727539062, -13.834254264831486 ], [ -75.543190002441406, -13.834892272949219 ], [ -75.544471740722543, -13.835426330566349 ], [ -75.546669006347656, -13.835627555847054 ], [ -75.548561096191349, -13.836446762084904 ], [ -75.551216125488224, -13.836394309997559 ], [ -75.551727294921875, -13.836891174316293 ], [ -75.552589416503906, -13.83884239196766 ], [ -75.553993225097599, -13.839726448059082 ], [ -75.56072998046875, -13.839880943298283 ], [ -75.561897277831974, -13.840305328369084 ], [ -75.563674926757812, -13.841366767883244 ], [ -75.564811706542969, -13.84343433380127 ], [ -75.564994812011719, -13.849094390869027 ], [ -75.565986633300781, -13.851741790771428 ], [ -75.566162109375, -13.853893280029297 ], [ -75.565681457519531, -13.854716300964355 ], [ -75.563743591308594, -13.856448173522949 ], [ -75.562774658203068, -13.859107971191293 ], [ -75.5592041015625, -13.863874435424805 ], [ -75.559219360351506, -13.865508079528809 ], [ -75.560142517089844, -13.868899345397892 ], [ -75.560073852539062, -13.870804786682129 ], [ -75.557258605957031, -13.876373291015511 ], [ -75.556312561035156, -13.877524375915527 ], [ -75.554618835449219, -13.878902435302734 ], [ -75.551208496093693, -13.879966735839787 ], [ -75.550285339355412, -13.88059139251709 ], [ -75.549591064453068, -13.88493537902832 ], [ -75.548439025878906, -13.887224197387695 ], [ -75.547515869140568, -13.888210296630859 ], [ -75.546264648437443, -13.888531684875488 ], [ -75.542831420898381, -13.888169288635254 ], [ -75.541267395019531, -13.88764667510975 ], [ -75.539993286132812, -13.886862754821777 ], [ -75.539451599121094, -13.88689994812006 ], [ -75.538337707519474, -13.88743782043457 ], [ -75.537506103515568, -13.887429237365666 ], [ -75.531913757324219, -13.885443687438965 ], [ -75.528312683105469, -13.884527206420785 ], [ -75.524848937988281, -13.884273529052678 ], [ -75.521850585937443, -13.884650230407715 ], [ -75.520187377929688, -13.885243415832463 ], [ -75.518226623535099, -13.886296272277775 ], [ -75.516418457031193, -13.887519836425724 ], [ -75.513320922851562, -13.890384674072209 ], [ -75.511154174804631, -13.891194343566895 ], [ -75.50787353515625, -13.895171165466309 ], [ -75.506874084472599, -13.895532608032227 ], [ -75.504348754882812, -13.895817756652775 ], [ -75.503517150878906, -13.896174430847111 ], [ -75.502632141113281, -13.897729873657227 ], [ -75.501983642578125, -13.900877952575684 ], [ -75.499198913574219, -13.900448799133301 ], [ -75.497917175292912, -13.899927139282227 ], [ -75.496818542480469, -13.900003433227539 ], [ -75.495643615722543, -13.901142120361271 ], [ -75.492416381835938, -13.903444290161133 ], [ -75.482391357421875, -13.909625053405705 ], [ -75.480628967285156, -13.909953117370605 ], [ -75.478866577148438, -13.909206390380859 ], [ -75.477874755859318, -13.909152984619084 ], [ -75.477210998535099, -13.911197662353516 ], [ -75.476127624511719, -13.912005424499455 ], [ -75.475013732910099, -13.911907196044865 ], [ -75.470420837402344, -13.91004467010498 ], [ -75.466171264648381, -13.909836769103947 ], [ -75.465728759765625, -13.909285545349121 ], [ -75.465599060058537, -13.907271385192871 ], [ -75.464286804199219, -13.906261444091797 ], [ -75.463226318359375, -13.906506538391056 ], [ -75.461120605468636, -13.908012390136662 ], [ -75.460426330566349, -13.90809440612793 ], [ -75.460060119628849, -13.907922744750977 ], [ -75.458602905273438, -13.906118392944336 ], [ -75.457656860351506, -13.905830383300724 ], [ -75.454399108886719, -13.907237052917424 ], [ -75.453208923339844, -13.906850814819336 ], [ -75.450325012206974, -13.906974792480412 ], [ -75.449592590332031, -13.907345771789551 ], [ -75.448379516601562, -13.908650398254395 ], [ -75.446189880371094, -13.908761024475098 ], [ -75.44580078125, -13.909169197082463 ], [ -75.445747375488224, -13.910099029540959 ], [ -75.445060729980469, -13.91127777099598 ], [ -75.444282531738281, -13.912038803100586 ], [ -75.443412780761719, -13.912409782409668 ], [ -75.440322875976506, -13.913076400756836 ], [ -75.434547424316406, -13.913376808166447 ], [ -75.4332275390625, -13.913803100585938 ], [ -75.431205749511719, -13.916174888610783 ], [ -75.427246093749943, -13.91861629486084 ], [ -75.423561096191406, -13.922246932983398 ], [ -75.418624877929688, -13.924290657043457 ], [ -75.416183471679631, -13.92625617980957 ], [ -75.415092468261719, -13.927803993225098 ], [ -75.414184570312443, -13.931900978088265 ], [ -75.413291931152344, -13.934027671813908 ], [ -75.411857604980469, -13.935276985168457 ], [ -75.408943176269474, -13.936820030212402 ], [ -75.407440185546875, -13.939986228942871 ], [ -75.404243469238281, -13.943338394164982 ], [ -75.402816772460881, -13.944135665893555 ], [ -75.400672912597656, -13.944655418395996 ], [ -75.395866394042912, -13.944537162780648 ], [ -75.392349243164006, -13.946939468383789 ], [ -75.390815734863224, -13.948883056640625 ], [ -75.388824462890568, -13.952279090881291 ], [ -75.385711669921875, -13.956559181213379 ], [ -75.383255004882812, -13.960778236389103 ], [ -75.381362915039006, -13.96291446685791 ], [ -75.379287719726506, -13.963956832885685 ], [ -75.377258300781193, -13.964322090148812 ], [ -75.372329711914006, -13.966029167175293 ], [ -75.367248535156193, -13.967223167419377 ], [ -75.365348815917912, -13.968317031860295 ], [ -75.362991333007812, -13.96905612945551 ], [ -75.360343933105469, -13.971200942993107 ], [ -75.359695434570312, -13.972394943237305 ], [ -75.359413146972656, -13.97358226776123 ], [ -75.359504699707031, -13.976827621459904 ], [ -75.359870910644531, -13.977973937988281 ], [ -75.359718322753849, -13.979592323303223 ], [ -75.359024047851562, -13.980914115905762 ], [ -75.358322143554688, -13.983528137206974 ], [ -75.356636047363281, -13.985295295715275 ], [ -75.355232238769474, -13.988225936889648 ], [ -75.354576110839787, -13.989067077636662 ], [ -75.354011535644474, -13.990595817565804 ], [ -75.353836059570312, -13.992007255554142 ], [ -75.353988647460881, -13.992937088012638 ], [ -75.355049133300724, -13.994844436645451 ], [ -75.3551025390625, -13.995676040649414 ], [ -75.350769042968693, -13.99981498718256 ], [ -75.349937438964844, -14.001905441284123 ], [ -75.348609924316406, -14.004085540771484 ], [ -75.345985412597599, -14.006303787231388 ], [ -75.343544006347656, -14.007844924926758 ], [ -75.342308044433594, -14.009321212768555 ], [ -75.336662292480412, -14.012167930603027 ], [ -75.334991455078125, -14.013778686523381 ], [ -75.331169128417969, -14.016462326049805 ], [ -75.329147338867188, -14.017620086669922 ], [ -75.327674865722599, -14.018092155456543 ], [ -75.325874328613224, -14.017517089843636 ], [ -75.322685241699219, -14.018389701843262 ], [ -75.318679809570312, -14.018025398254395 ], [ -75.316566467285156, -14.017439842224121 ], [ -75.314750671386719, -14.015975952148381 ], [ -75.313476562499943, -14.015473365783691 ], [ -75.30303955078125, -14.014309883117676 ], [ -75.299217224121094, -14.013056755065918 ], [ -75.297988891601562, -14.013132095336914 ], [ -75.292480468749943, -14.011872291564941 ], [ -75.288482666015568, -14.011794090270996 ], [ -75.283309936523438, -14.010300636291504 ], [ -75.277664184570312, -14.008138656616211 ], [ -75.276435852050781, -14.00841045379633 ], [ -75.275131225585881, -14.009814262390137 ], [ -75.2745361328125, -14.010146141052132 ], [ -75.272071838378849, -14.010004997253418 ], [ -75.270736694335881, -14.01048755645752 ], [ -75.268600463867188, -14.007885932922306 ], [ -75.267036437988224, -14.007010459899902 ], [ -75.265457153320312, -14.006512641906738 ], [ -75.262954711914062, -14.004508018493596 ], [ -75.260559082031193, -14.001575469970646 ], [ -75.259613037109375, -14.001223564147949 ], [ -75.256942749023438, -14.001477241516113 ], [ -75.255592346191349, -14.001182556152287 ], [ -75.254150390624943, -13.999753952026367 ], [ -75.253250122070312, -13.998064994812012 ], [ -75.252120971679688, -13.997558593749943 ], [ -75.251281738281193, -13.997514724731388 ], [ -75.249847412109318, -13.998321533203068 ], [ -75.249023437499886, -13.998321533203068 ], [ -75.247474670410099, -14.000024795532227 ], [ -75.244575500488281, -13.999997138977051 ], [ -75.243644714355469, -14.000270843505859 ], [ -75.242904663085881, -14.000787734985352 ], [ -75.241531372070312, -14.000962257385254 ], [ -75.240837097167969, -14.001522064208984 ], [ -75.240089416503906, -14.003602981567326 ], [ -75.239341735839844, -14.004227638244629 ], [ -75.23828125, -14.00438022613514 ], [ -75.235832214355412, -14.003867149353027 ], [ -75.235008239746094, -14.003896713256779 ], [ -75.233863830566406, -14.004396438598576 ], [ -75.233360290527287, -14.005029678344727 ], [ -75.233535766601562, -14.005698204040527 ], [ -75.235610961914062, -14.008209228515625 ], [ -75.236038208007756, -14.010306358337346 ], [ -75.23712158203125, -14.012338638305664 ], [ -75.237930297851506, -14.015178680419922 ], [ -75.239822387695312, -14.018007278442326 ], [ -75.240837097167969, -14.019099235534611 ], [ -75.247451782226562, -14.023748397827092 ], [ -75.251045227050781, -14.030083656311035 ], [ -75.253265380859375, -14.031924247741699 ], [ -75.256271362304574, -14.03383827209467 ], [ -75.258491516113281, -14.036586761474496 ], [ -75.260841369628849, -14.038482666015568 ], [ -75.261787414550724, -14.040596008300668 ], [ -75.259872436523381, -14.041170120239258 ], [ -75.248741149902344, -14.043105125427246 ], [ -75.231040954589844, -14.046786308288574 ], [ -75.220016479492131, -14.048613548278809 ], [ -75.211051940917912, -14.050248146057015 ], [ -75.210296630859318, -14.050594329833928 ], [ -75.209678649902344, -14.050476074218693 ], [ -75.191627502441406, -14.052778244018555 ], [ -75.18658447265625, -14.053949356079102 ], [ -75.181831359863281, -14.055861473083496 ], [ -75.17926025390625, -14.057653427124023 ], [ -75.177238464355469, -14.059608459472656 ], [ -75.169639587402344, -14.069331169128418 ], [ -75.16656494140625, -14.072617530822754 ], [ -75.164978027343693, -14.073909759521484 ], [ -75.127639770507812, -14.050523757934513 ], [ -75.122856140136719, -14.042713165283203 ], [ -75.120002746582031, -14.039198875427189 ], [ -75.116790771484375, -14.03677845001215 ], [ -75.109512329101562, -14.032792091369572 ], [ -75.10906982421875, -14.033108711242676 ], [ -75.108802795410099, -14.033733367919922 ], [ -75.108375549316406, -14.03719520568842 ], [ -75.107734680175781, -14.039530754089355 ], [ -75.106590270996094, -14.041211128234863 ], [ -75.105010986328068, -14.045789718627816 ], [ -75.102851867675781, -14.050736427307129 ], [ -75.098968505859375, -14.057852745056152 ], [ -75.097213745117188, -14.062945365905705 ], [ -75.095718383789062, -14.06536769866932 ], [ -75.094879150390568, -14.067205429077148 ], [ -75.093879699707031, -14.070964813232422 ], [ -75.092483520507812, -14.073316574096623 ], [ -75.087844848632756, -14.084095001220703 ], [ -75.086563110351562, -14.086627006530705 ], [ -75.085845947265568, -14.087261199951172 ], [ -75.085289001464844, -14.08726978302002 ], [ -75.082954406738224, -14.08644962310791 ], [ -75.082397460937443, -14.086485862731934 ], [ -75.080642700195312, -14.085472106933594 ], [ -75.078872680664006, -14.085157394409123 ], [ -75.076255798339844, -14.082074165344181 ], [ -75.074020385742131, -14.080711364746037 ], [ -75.072952270507756, -14.080510139465332 ], [ -75.070198059081974, -14.082538604736271 ], [ -75.067367553710938, -14.083622932434025 ], [ -75.066474914550724, -14.084247589111271 ], [ -75.065528869628849, -14.085406303405762 ], [ -75.06451416015625, -14.087320327758789 ], [ -75.0631103515625, -14.089303016662598 ], [ -75.062294006347543, -14.091726303100529 ], [ -75.062385559081974, -14.094394683837891 ], [ -75.061775207519531, -14.098364830016976 ], [ -75.061630249023438, -14.101717948913574 ], [ -75.062171936035099, -14.104069709777832 ], [ -75.062202453613281, -14.105932235717717 ], [ -75.060813903808594, -14.10986328125 ], [ -75.059471130371094, -14.116581916809082 ], [ -75.057632446289062, -14.121240615844727 ], [ -75.057113647460881, -14.123310089111328 ], [ -75.057373046875, -14.124892234802246 ], [ -75.059318542480412, -14.128762245178223 ], [ -75.059501647949162, -14.130092620849609 ], [ -75.060127258300781, -14.131729125976506 ], [ -75.061523437499943, -14.13310432434082 ], [ -75.062461853027287, -14.135053634643441 ], [ -75.064010620117074, -14.137117385864201 ], [ -75.064796447753906, -14.143526077270451 ], [ -75.065994262695256, -14.146390914916935 ], [ -75.066688537597656, -14.149682044982853 ], [ -75.067489624023438, -14.151092529296818 ], [ -75.06988525390625, -14.154221534729004 ], [ -75.071495056152344, -14.157502174377385 ], [ -75.075180053710938, -14.163350105285588 ], [ -75.075767517089844, -14.165295600891113 ], [ -75.076400756835881, -14.166333198547363 ], [ -75.077156066894474, -14.168783187866154 ], [ -75.077217102050781, -14.170819282531738 ], [ -75.077751159667969, -14.17374134063715 ], [ -75.077537536621037, -14.179653167724609 ], [ -75.077705383300781, -14.183559417724609 ], [ -75.077972412109375, -14.18541240692133 ], [ -75.078826904296875, -14.18812370300293 ], [ -75.07904052734375, -14.189997673034611 ], [ -75.080307006835881, -14.193269729614258 ], [ -75.081489562988281, -14.197562217712402 ], [ -75.0833740234375, -14.200220108032227 ], [ -75.083908081054631, -14.201313018798828 ], [ -75.084320068359318, -14.203837394714242 ], [ -75.08538818359375, -14.207036018371468 ], [ -75.086074829101562, -14.211558341979924 ], [ -75.08685302734375, -14.212334632873535 ], [ -75.089805603027344, -14.214115142822266 ], [ -75.09014892578125, -14.214992523193303 ], [ -75.090194702148438, -14.216214179992676 ], [ -75.089561462402287, -14.218121528625488 ], [ -75.089431762695312, -14.222561836242619 ], [ -75.0887451171875, -14.225590705871582 ], [ -75.088668823242188, -14.228411674499455 ], [ -75.08819580078125, -14.230229377746582 ], [ -75.086952209472656, -14.23149585723877 ], [ -75.084999084472656, -14.23250770568842 ], [ -75.083099365234375, -14.232907295227051 ], [ -75.080200195312443, -14.23289966583252 ], [ -75.077644348144474, -14.233235359191838 ], [ -75.077239990234318, -14.233586311340332 ], [ -75.075172424316406, -14.234319686889592 ], [ -75.07379150390625, -14.235234260559025 ], [ -75.073387145996094, -14.235784530639648 ], [ -75.072921752929688, -14.237315177917367 ], [ -75.071640014648324, -14.243128776550179 ], [ -75.071670532226562, -14.244205474853402 ], [ -75.072250366210938, -14.244783401489258 ], [ -75.072395324706974, -14.245578765869141 ], [ -75.071434020996037, -14.246538162231332 ], [ -75.070732116699219, -14.246526718139592 ], [ -75.069526672363224, -14.247187614440918 ], [ -75.067970275878906, -14.248517036437875 ], [ -75.067665100097656, -14.249122619628906 ], [ -75.067489624023438, -14.250862121581974 ], [ -75.066619873046875, -14.251916885375977 ], [ -75.065834045410156, -14.252449989318848 ], [ -75.064399719238281, -14.252985954284668 ], [ -75.059585571289062, -14.254196166992131 ], [ -75.057853698730469, -14.255058288574162 ], [ -75.056228637695312, -14.255393028259277 ], [ -75.055122375488224, -14.25541973114008 ], [ -75.051307678222599, -14.25479602813715 ], [ -75.047134399414062, -14.255711555480957 ], [ -75.042015075683594, -14.25410270690918 ], [ -75.039390563964787, -14.254137039184513 ], [ -75.036918640136662, -14.25560474395752 ], [ -75.034500122070312, -14.257828712463322 ], [ -75.033287048339787, -14.259283065795842 ], [ -75.031784057617188, -14.26202487945551 ], [ -75.031425476074219, -14.264636993408203 ], [ -75.034492492675781, -14.268110275268555 ], [ -75.037139892578125, -14.269574165344181 ], [ -75.038703918456974, -14.271073341369629 ], [ -75.039108276367131, -14.272647857666016 ], [ -75.039413452148438, -14.278479576110783 ], [ -75.039817810058594, -14.279574394226074 ], [ -75.040626525878849, -14.280287742614689 ], [ -75.046302795410156, -14.283449172973519 ], [ -75.049026489257756, -14.286514282226506 ], [ -75.0499267578125, -14.286668777465763 ], [ -75.052581787109375, -14.286504745483398 ], [ -75.05438232421875, -14.28718376159668 ], [ -75.055740356445312, -14.288339614868164 ], [ -75.056800842285156, -14.290067672729492 ], [ -75.0582275390625, -14.291133880615234 ], [ -75.059219360351506, -14.293032646179199 ], [ -75.063545227050781, -14.295446395873967 ], [ -75.065742492675781, -14.296241760253849 ], [ -75.067039489746037, -14.297107696533146 ], [ -75.069618225097599, -14.297568321227971 ], [ -75.071327209472599, -14.299321174621525 ], [ -75.073127746582031, -14.299403190612793 ], [ -75.075416564941406, -14.298867225646916 ], [ -75.078987121582031, -14.298453330993652 ], [ -75.080635070800781, -14.298586845397949 ], [ -75.081680297851562, -14.29998874664301 ], [ -75.08233642578125, -14.302192687988281 ], [ -75.083992004394531, -14.303811073303166 ], [ -75.085166931152287, -14.306694030761719 ], [ -75.086791992187443, -14.309199333190861 ], [ -75.0875244140625, -14.309560775756779 ], [ -75.090278625488281, -14.309611320495605 ], [ -75.091529846191406, -14.310482025146371 ], [ -75.092269897460938, -14.311294555664062 ], [ -75.093597412109375, -14.314684867858887 ], [ -75.096473693847656, -14.319286346435547 ], [ -75.099662780761662, -14.326157569885254 ], [ -75.100074768066406, -14.32799243927002 ], [ -75.099662780761662, -14.332838058471623 ], [ -75.099952697753849, -14.334943771362191 ], [ -75.100975036621094, -14.336373329162598 ], [ -75.104629516601506, -14.339878082275391 ], [ -75.105705261230469, -14.341913223266602 ], [ -75.105857849121037, -14.344181060791016 ], [ -75.106636047363224, -14.344969749450627 ], [ -75.107826232910156, -14.345664978027287 ], [ -75.108375549316406, -14.346444129943791 ], [ -75.1082763671875, -14.347782135009766 ], [ -75.105499267578125, -14.354816436767521 ], [ -75.105461120605412, -14.356704711914006 ], [ -75.106170654296875, -14.359589576721135 ], [ -75.1075439453125, -14.361920356750488 ], [ -75.110786437988281, -14.365582466125488 ], [ -75.113143920898438, -14.37159538269043 ], [ -75.116615295410156, -14.374874114990234 ], [ -75.117912292480469, -14.376456260681039 ], [ -75.119323730468636, -14.379521369934025 ], [ -75.120307922363281, -14.383307456970158 ], [ -75.121170043945312, -14.384998321533203 ], [ -75.123039245605412, -14.38715934753418 ], [ -75.125579833984375, -14.389019012451172 ], [ -75.1270751953125, -14.390608787536621 ], [ -75.128799438476562, -14.395009994506779 ], [ -75.12957763671875, -14.395960807800293 ], [ -75.130104064941406, -14.397200584411621 ], [ -75.131942749023438, -14.399557113647461 ], [ -75.132041931152344, -14.401293754577637 ], [ -75.131538391113281, -14.403673171997013 ], [ -75.131713867187443, -14.405001640319824 ], [ -75.132461547851506, -14.405814170837346 ], [ -75.13299560546875, -14.405850410461369 ], [ -75.13330078125, -14.406139373779183 ], [ -75.133636474609375, -14.407584190368652 ], [ -75.134986877441406, -14.41038799285883 ], [ -75.138603210449219, -14.415720939636174 ], [ -75.135116577148438, -14.416625976562386 ], [ -75.131385803222656, -14.416393280029297 ], [ -75.130149841308594, -14.416521072387695 ], [ -75.124015808105469, -14.41933631896967 ], [ -75.119819641113281, -14.420676231384221 ], [ -75.118560791015511, -14.421942710876351 ], [ -75.118515014648438, -14.422746658325138 ], [ -75.119552612304688, -14.424010276794377 ], [ -75.12042236328125, -14.424402236938363 ], [ -75.121833801269531, -14.425512313842717 ], [ -75.122055053710881, -14.42600154876709 ], [ -75.121887207031193, -14.426651954650822 ], [ -75.120651245117131, -14.427275657653752 ], [ -75.114044189453068, -14.427921295166016 ], [ -75.113403320312443, -14.428319931030273 ], [ -75.108818054199162, -14.432988166809082 ], [ -75.107589721679631, -14.433954238891602 ], [ -75.106948852539062, -14.434190750122013 ], [ -75.104949951171875, -14.433964729309082 ], [ -75.101837158203068, -14.433053970336857 ], [ -75.099960327148381, -14.432204246520996 ], [ -75.0970458984375, -14.430361747741699 ], [ -75.094467163085938, -14.429503440856934 ], [ -75.090408325195256, -14.427289962768555 ], [ -75.088508605956974, -14.426583290100098 ], [ -75.087448120117131, -14.426450729370117 ], [ -75.080116271972599, -14.427158355712891 ], [ -75.0782470703125, -14.426054954528809 ], [ -75.076072692871094, -14.426499366760254 ], [ -75.072456359863281, -14.428182601928654 ], [ -75.067642211914062, -14.428707122802678 ], [ -75.066452026367188, -14.428447723388615 ], [ -75.064033508300781, -14.427433013916016 ], [ -75.060295104980469, -14.427380561828613 ], [ -75.057487487792969, -14.428069114685059 ], [ -75.055732727050781, -14.42913627624506 ], [ -75.054168701171818, -14.429697036743164 ], [ -75.052986145019531, -14.430981636047363 ], [ -75.054000854492188, -14.432429313659611 ], [ -75.059608459472599, -14.438376426696777 ], [ -75.060440063476562, -14.440935134887695 ], [ -75.061576843261719, -14.44261455535883 ], [ -75.064987182617188, -14.445771217346191 ], [ -75.068321228027344, -14.447415351867676 ], [ -75.069625854492131, -14.448644638061523 ], [ -75.069900512695256, -14.44951057434082 ], [ -75.069839477539062, -14.45087718963623 ], [ -75.069145202636662, -14.453058242797852 ], [ -75.069122314453125, -14.454396247863713 ], [ -75.068275451660099, -14.456936836242676 ], [ -75.06842041015625, -14.458138465881234 ], [ -75.068763732910099, -14.45879936218256 ], [ -75.072021484374886, -14.461526870727539 ], [ -75.075416564941406, -14.465778350830078 ], [ -75.076126098632812, -14.466192245483398 ], [ -75.078231811523438, -14.466814994812012 ], [ -75.080497741699162, -14.469365119934025 ], [ -75.0830078125, -14.471687316894531 ], [ -75.086738586425781, -14.47401046752924 ], [ -75.091438293457031, -14.476311683654785 ], [ -75.095054626464844, -14.479023933410531 ], [ -75.096611022949162, -14.481093406677246 ], [ -75.098075866699219, -14.485152244567814 ], [ -75.097892761230469, -14.486065864562931 ], [ -75.096519470214787, -14.487477302551213 ], [ -75.096343994140625, -14.488118171691895 ], [ -75.093933105468693, -14.490694999694767 ], [ -75.092880249023381, -14.492885589599553 ], [ -75.091690063476562, -14.494415283203068 ], [ -75.091361999511662, -14.495256423950082 ], [ -75.091140747070312, -14.49711799621582 ], [ -75.091171264648381, -14.49969577789301 ], [ -75.091941833496037, -14.503636360168457 ], [ -75.091918945312443, -14.505126953124886 ], [ -75.091690063476562, -14.506302833557129 ], [ -75.090576171875, -14.50879859924305 ], [ -75.090476989746094, -14.510507583618107 ], [ -75.091270446777287, -14.517217636108398 ], [ -75.091857910156136, -14.519720077514648 ], [ -75.091423034667969, -14.521087646484375 ], [ -75.090560913085938, -14.522650718688851 ], [ -75.089591979980469, -14.524152755737191 ], [ -75.088180541992188, -14.525644302368107 ], [ -75.088249206542969, -14.527099609375 ], [ -75.087760925292969, -14.527353286743164 ], [ -75.087013244628906, -14.529081344604435 ], [ -75.085563659667855, -14.530890464782715 ], [ -75.084686279296818, -14.531539916992131 ], [ -75.083778381347656, -14.53188419342041 ], [ -75.080764770507756, -14.531523704528695 ], [ -75.077308654785156, -14.530548095703125 ], [ -75.069076538085938, -14.526707649230843 ], [ -75.068382263183537, -14.526664733886662 ], [ -75.067337036132756, -14.527015686035156 ], [ -75.066566467285099, -14.528453826904297 ], [ -75.066299438476449, -14.531935691833496 ], [ -75.066619873046875, -14.53508186340332 ], [ -75.0677490234375, -14.538120269775334 ], [ -75.068435668945312, -14.538978576660099 ], [ -75.070846557617131, -14.540280342102051 ], [ -75.071853637695312, -14.541192054748478 ], [ -75.072578430175724, -14.542502403259277 ], [ -75.073593139648438, -14.545287132263184 ], [ -75.075332641601506, -14.548197746276799 ], [ -75.075897216796818, -14.548587799072209 ], [ -75.078033447265625, -14.549102783203125 ], [ -75.078414916992188, -14.549420356750488 ], [ -75.078521728515625, -14.551587104797306 ], [ -75.078155517578125, -14.559760093688965 ], [ -75.078338623046875, -14.563919067382812 ], [ -75.078727722167969, -14.566306114196721 ], [ -75.078308105468693, -14.567962646484318 ], [ -75.077598571777344, -14.568758010864201 ], [ -75.076210021972599, -14.569307327270508 ], [ -75.070693969726562, -14.570504188537598 ], [ -75.068153381347656, -14.571880340576115 ], [ -75.065505981445256, -14.573869705200195 ], [ -75.06500244140625, -14.577567100524846 ], [ -75.063461303710938, -14.579159736633187 ], [ -75.062942504882756, -14.580343246459961 ], [ -75.062881469726562, -14.58267688751215 ], [ -75.063224792480412, -14.583834648132324 ], [ -75.063285827636719, -14.585723876953125 ], [ -75.062065124511719, -14.589556694030762 ], [ -75.062698364257812, -14.592732429504395 ], [ -75.061660766601562, -14.595651626586857 ], [ -75.061233520507756, -14.597922325134277 ], [ -75.061347961425781, -14.599504470825195 ], [ -75.062507629394531, -14.602822303771973 ], [ -75.063507080078068, -14.61164665222168 ], [ -75.06298828125, -14.612602233886662 ], [ -75.059059143066406, -14.615815162658691 ], [ -75.058067321777287, -14.616900444030762 ], [ -75.057945251464844, -14.618120193481445 ], [ -75.058250427246094, -14.621870994567871 ], [ -75.058128356933594, -14.6237535476684 ], [ -75.057807922363224, -14.624396324157658 ], [ -75.055366516113281, -14.626375198364201 ], [ -75.054077148437443, -14.626935005187875 ], [ -75.053153991699219, -14.627025604248047 ], [ -75.052085876464787, -14.62664794921875 ], [ -75.050674438476562, -14.625800132751465 ], [ -75.047187805175781, -14.623140335082951 ], [ -75.044532775878849, -14.620022773742676 ], [ -75.043266296386719, -14.618097305297852 ], [ -75.040344238281193, -14.615421295166016 ], [ -75.038642883300668, -14.614272117614689 ], [ -75.036270141601562, -14.613160133361816 ], [ -75.034088134765625, -14.611515045166016 ], [ -75.030525207519474, -14.609716415405273 ], [ -75.020706176757756, -14.609764099121094 ], [ -75.017013549804688, -14.610098838806096 ], [ -75.014320373535099, -14.60944652557373 ], [ -75.011405944824219, -14.607412338256722 ], [ -75.008232116699219, -14.607107162475529 ], [ -75.0, -14.609437942504883 ], [ -74.998985290527344, -14.609936714172306 ], [ -74.99688720703125, -14.61170768737793 ], [ -74.995796203613224, -14.611907005310002 ], [ -74.994667053222599, -14.611400604248047 ], [ -74.994186401367131, -14.610577583312988 ], [ -74.992866516113168, -14.609612464904785 ], [ -74.990806579589844, -14.609593391418457 ], [ -74.990150451660156, -14.609358787536621 ], [ -74.988754272460881, -14.607522010803223 ], [ -74.987831115722656, -14.606707572937012 ], [ -74.98443603515625, -14.605190277099609 ], [ -74.983467102050781, -14.605116844177189 ], [ -74.980438232421818, -14.602999687194824 ], [ -74.978126525878906, -14.60260105133051 ], [ -74.975662231445312, -14.603478431701546 ], [ -74.9737548828125, -14.603803634643555 ], [ -74.972564697265625, -14.60341739654541 ], [ -74.971939086914062, -14.602368354797363 ], [ -74.971588134765568, -14.602204322814885 ], [ -74.971015930175724, -14.602311134338322 ], [ -74.969383239746037, -14.603560447692871 ], [ -74.967758178710881, -14.60389328002924 ], [ -74.965377807617131, -14.606136322021484 ], [ -74.964958190917969, -14.606044769287109 ], [ -74.964393615722656, -14.60543155670166 ], [ -74.963874816894418, -14.605313301086426 ], [ -74.960617065429631, -14.60639762878418 ], [ -74.959358215331974, -14.606415748596135 ], [ -74.958129882812443, -14.605864524841309 ], [ -74.956832885742188, -14.60486888885498 ], [ -74.95510101318348, -14.601043701171818 ], [ -74.952697753906193, -14.597255706786996 ], [ -74.952102661132812, -14.595745086669922 ], [ -74.948501586914006, -14.590638160705566 ], [ -74.948211669921818, -14.589035034179631 ], [ -74.947608947753906, -14.588139533996582 ], [ -74.947753906249943, -14.585842132568359 ], [ -74.947364807128849, -14.582896232604924 ], [ -74.946914672851562, -14.581314086914006 ], [ -74.946037292480412, -14.579984664916992 ], [ -74.943908691406193, -14.579333305358887 ], [ -74.939888000488281, -14.579358100891113 ], [ -74.938560485839844, -14.57905101776123 ], [ -74.935813903808537, -14.577234268188477 ], [ -74.933914184570256, -14.57684421539301 ], [ -74.932937622070312, -14.576337814331055 ], [ -74.929733276367074, -14.572628021240178 ], [ -74.928207397460824, -14.571706771850529 ], [ -74.924697875976562, -14.568259239196777 ], [ -74.920516967773438, -14.568285942077637 ], [ -74.918327331542969, -14.56714916229248 ], [ -74.915130615234318, -14.566278457641545 ], [ -74.914016723632812, -14.565717697143498 ], [ -74.91290283203125, -14.564188003539982 ], [ -74.912254333496037, -14.562408447265568 ], [ -74.908622741699162, -14.558338165283146 ], [ -74.907501220703068, -14.555291175842228 ], [ -74.904800415039062, -14.551710128784123 ], [ -74.903419494628906, -14.547033309936467 ], [ -74.902420043945312, -14.546100616455021 ], [ -74.899955749511662, -14.545195579528809 ], [ -74.897064208984375, -14.544778823852539 ], [ -74.895751953124943, -14.545139312744141 ], [ -74.892227172851506, -14.546730041503906 ], [ -74.889045715332031, -14.547218322753906 ], [ -74.887733459472656, -14.546980857849121 ], [ -74.885467529296818, -14.545613288879395 ], [ -74.884101867675781, -14.545406341552734 ], [ -74.876304626464787, -14.553666114807072 ], [ -74.875785827636719, -14.555192947387695 ], [ -74.876113891601506, -14.556612968444824 ], [ -74.877937316894474, -14.55883884429926 ], [ -74.878860473632812, -14.563467979431039 ], [ -74.881118774414062, -14.569699287414494 ], [ -74.881980895996094, -14.572854042053166 ], [ -74.883209228515625, -14.575422286987305 ], [ -74.883232116699219, -14.57611083984375 ], [ -74.880752563476562, -14.579672813415471 ], [ -74.878105163574162, -14.587471961975098 ], [ -74.877075195312443, -14.58938026428217 ], [ -74.875350952148381, -14.590943336486816 ], [ -74.871780395507812, -14.593254089355469 ], [ -74.869850158691406, -14.594799041748047 ], [ -74.865249633789006, -14.602311134338322 ], [ -74.862266540527344, -14.605502128601017 ], [ -74.858917236328125, -14.60833740234375 ], [ -74.85744476318348, -14.609313011169377 ], [ -74.853233337402287, -14.611407279968205 ], [ -74.851593017578068, -14.611742973327637 ], [ -74.847450256347656, -14.611740112304631 ], [ -74.843772888183537, -14.612387657165471 ], [ -74.839920043945312, -14.612729072570687 ], [ -74.836051940917912, -14.61251068115223 ], [ -74.833679199218693, -14.611783981323185 ], [ -74.832931518554631, -14.612154960632324 ], [ -74.832054138183537, -14.613265037536621 ], [ -74.831306457519474, -14.613466262817383 ], [ -74.824928283691406, -14.613686561584473 ], [ -74.815673828124886, -14.615323066711426 ], [ -74.810707092285099, -14.6156005859375 ], [ -74.807723999023381, -14.616185188293457 ], [ -74.80108642578125, -14.616387367248535 ], [ -74.798088073730469, -14.61684608459467 ], [ -74.796844482421875, -14.616808891296387 ], [ -74.795349121093693, -14.616464614868107 ], [ -74.793769836425781, -14.615188598632812 ], [ -74.790504455566406, -14.615790367126408 ], [ -74.789398193359375, -14.615762710571289 ], [ -74.788833618164062, -14.615401268005371 ], [ -74.788032531738281, -14.615634918212834 ], [ -74.78778076171875, -14.616964340209961 ], [ -74.788314819335938, -14.618058204650822 ], [ -74.789566040039062, -14.619117736816406 ], [ -74.790977478027344, -14.619671821594181 ], [ -74.792739868164062, -14.62175178527832 ], [ -74.793533325195256, -14.621971130371094 ], [ -74.796905517578125, -14.624089241027832 ], [ -74.801765441894531, -14.626360893249512 ], [ -74.804473876953125, -14.628669738769531 ], [ -74.812110900878849, -14.633033752441406 ], [ -74.814537048339844, -14.634835243225041 ], [ -74.816436767578011, -14.637792587280273 ], [ -74.818313598632756, -14.640135765075627 ], [ -74.820945739746094, -14.645934104919377 ], [ -74.822128295898381, -14.647390365600586 ], [ -74.825607299804688, -14.650711059570312 ], [ -74.82611083984375, -14.651667594909611 ], [ -74.826332092285099, -14.653009414672852 ], [ -74.826751708984375, -14.653684616088867 ], [ -74.828948974609375, -14.656094551086369 ], [ -74.829849243164006, -14.656691551208496 ], [ -74.832427978515568, -14.657649040222168 ], [ -74.838142395019531, -14.662130355834904 ], [ -74.841293334960881, -14.663173675537109 ], [ -74.84307861328125, -14.663173675537109 ], [ -74.844146728515625, -14.663490295410156 ], [ -74.845428466796761, -14.664531707763672 ], [ -74.846412658691406, -14.665690422058049 ], [ -74.846908569335938, -14.666765213012695 ], [ -74.847625732421875, -14.670364379882756 ], [ -74.848381042480412, -14.672388076782227 ], [ -74.848487854003906, -14.673340797424316 ], [ -74.848228454589844, -14.674370765686035 ], [ -74.847160339355469, -14.67547416687006 ], [ -74.846916198730469, -14.676059722900391 ], [ -74.84735107421875, -14.678601264953556 ], [ -74.846992492675781, -14.680191993713379 ], [ -74.846343994140625, -14.681510925292969 ], [ -74.84710693359375, -14.685479164123478 ], [ -74.84661865234375, -14.688553810119629 ], [ -74.845016479492131, -14.690714836120605 ], [ -74.842025756835938, -14.693363189697209 ], [ -74.840827941894474, -14.694001197814941 ], [ -74.838623046874943, -14.694317817687988 ], [ -74.836845397949105, -14.695255279540959 ], [ -74.838241577148381, -14.697102546691838 ], [ -74.839035034179631, -14.698665618896484 ], [ -74.839523315429688, -14.701044082641545 ], [ -74.839942932128906, -14.701930046081486 ], [ -74.840522766113281, -14.702184677123967 ], [ -74.842346191406193, -14.702248573303166 ], [ -74.843849182128906, -14.702938079833984 ], [ -74.845680236816349, -14.706590652465707 ], [ -74.845710754394474, -14.707813262939453 ], [ -74.845230102539006, -14.708625793456974 ], [ -74.844383239746094, -14.709520339965763 ], [ -74.843246459960938, -14.710296630859375 ], [ -74.838737487792912, -14.711496353149414 ], [ -74.836074829101506, -14.714937210083008 ], [ -74.833816528320312, -14.716737747192383 ], [ -74.831840515136719, -14.717954635620117 ], [ -74.830528259277287, -14.719345092773438 ], [ -74.829956054687443, -14.722936630249023 ], [ -74.82830810546875, -14.726352691650334 ], [ -74.828536987304631, -14.729038238525334 ], [ -74.828445434570256, -14.730510711669922 ], [ -74.828018188476562, -14.73290824890131 ], [ -74.827346801757812, -14.734579086303711 ], [ -74.825942993164006, -14.73607158660883 ], [ -74.824546813964844, -14.736945152282601 ], [ -74.818359375, -14.738424301147404 ], [ -74.816497802734318, -14.739290237426701 ], [ -74.815040588378906, -14.740564346313477 ], [ -74.814018249511662, -14.741838455200195 ], [ -74.812408447265568, -14.74585056304926 ], [ -74.811172485351506, -14.747640609741211 ], [ -74.8067626953125, -14.750646591186467 ], [ -74.804588317871037, -14.751540184020996 ], [ -74.802841186523438, -14.751946449279728 ], [ -74.801887512207031, -14.751766204833984 ], [ -74.801048278808537, -14.751041412353516 ], [ -74.800598144531193, -14.750370979309082 ], [ -74.800567626953125, -14.749410629272347 ], [ -74.800224304199105, -14.748536109924316 ], [ -74.798774719238224, -14.746915817260685 ], [ -74.796836853027344, -14.745384216308594 ], [ -74.794563293456974, -14.744354248046875 ], [ -74.792045593261719, -14.742417335510197 ], [ -74.7913818359375, -14.741594314575082 ], [ -74.790397644042912, -14.739214897155705 ], [ -74.788543701171875, -14.737214088439941 ], [ -74.785865783691406, -14.734851837158146 ], [ -74.783287048339844, -14.733277320861816 ], [ -74.777946472167969, -14.730712890625 ], [ -74.7740478515625, -14.72790622711176 ], [ -74.771728515625, -14.727641105651855 ], [ -74.767234802246094, -14.728452682495117 ], [ -74.765029907226506, -14.728556632995605 ], [ -74.763236999511719, -14.728384017944336 ], [ -74.759857177734318, -14.727663993835392 ], [ -74.756538391113224, -14.727752685546875 ], [ -74.755630493164062, -14.727409362792912 ], [ -74.754798889160099, -14.727390289306641 ], [ -74.753166198730469, -14.727667808532658 ], [ -74.751541137695312, -14.728741645812988 ], [ -74.749946594238224, -14.728541374206486 ], [ -74.747291564941349, -14.727606773376465 ], [ -74.740791320800724, -14.722808837890625 ], [ -74.738578796386719, -14.720662117004338 ], [ -74.735092163085938, -14.716312408447266 ], [ -74.732170104980469, -14.714028358459473 ], [ -74.731521606445312, -14.713838577270394 ], [ -74.729171752929631, -14.713788986206055 ], [ -74.727142333984318, -14.712910652160645 ], [ -74.725242614746037, -14.712546348571777 ], [ -74.720710754394531, -14.71053409576416 ], [ -74.717330932617131, -14.70995044708252 ], [ -74.716506958007812, -14.710014343261719 ], [ -74.716148376464844, -14.710257530212402 ], [ -74.716278076171818, -14.711703300476074 ], [ -74.716712951660156, -14.712382316589355 ], [ -74.719245910644474, -14.714022636413517 ], [ -74.721786499023438, -14.716501235961857 ], [ -74.727653503417969, -14.720053672790471 ], [ -74.731666564941406, -14.72745418548584 ], [ -74.734825134277344, -14.730712890625 ], [ -74.735816955566349, -14.73211479187006 ], [ -74.736167907714844, -14.734808921813908 ], [ -74.7357177734375, -14.738306999206543 ], [ -74.737197875976562, -14.739485740661564 ], [ -74.737174987792912, -14.740689277648869 ], [ -74.736610412597599, -14.742142677307015 ], [ -74.734359741210938, -14.74511528015131 ], [ -74.731864929199219, -14.747643470764103 ], [ -74.731597900390625, -14.74843788146967 ], [ -74.731758117675781, -14.749062538146973 ], [ -74.732749938964844, -14.750223159790039 ], [ -74.734954833984375, -14.752058029174748 ], [ -74.736808776855469, -14.754890441894474 ], [ -74.738410949706974, -14.755334854125977 ], [ -74.741020202636719, -14.757546424865723 ], [ -74.741706848144531, -14.757653236389103 ], [ -74.743118286132812, -14.758730888366699 ], [ -74.744712829589787, -14.759547233581429 ], [ -74.748435974121037, -14.760897636413574 ], [ -74.751808166503906, -14.762783050537053 ], [ -74.753059387207031, -14.763832092285099 ], [ -74.755378723144474, -14.767615318298283 ], [ -74.756172180175781, -14.769721031188908 ], [ -74.756225585937443, -14.771810531616154 ], [ -74.755348205566406, -14.77747917175293 ], [ -74.756172180175781, -14.779332160949593 ], [ -74.756103515625, -14.783366203308049 ], [ -74.75665283203125, -14.784143447875977 ], [ -74.758155822753849, -14.785120964050293 ], [ -74.760200500488281, -14.785422325134277 ], [ -74.761627197265625, -14.785976409912053 ], [ -74.765487670898381, -14.790724754333439 ], [ -74.765342712402344, -14.791231155395508 ], [ -74.764747619628793, -14.79181003570551 ], [ -74.762107849121094, -14.793316841125431 ], [ -74.760589599609375, -14.793938636779785 ], [ -74.757865905761662, -14.794461250305119 ], [ -74.756248474121037, -14.795561790466252 ], [ -74.755485534667912, -14.797088623046875 ], [ -74.754539489746037, -14.801066398620605 ], [ -74.753135681152344, -14.803994178771973 ], [ -74.7518310546875, -14.807680130004769 ], [ -74.749046325683594, -14.812038421630859 ], [ -74.747291564941349, -14.813726425170898 ], [ -74.745994567871094, -14.814211845397949 ], [ -74.743995666503906, -14.814318656921387 ], [ -74.738891601562443, -14.812186241149789 ], [ -74.736404418945256, -14.811435699462834 ], [ -74.734329223632812, -14.811668395996094 ], [ -74.73199462890625, -14.812541007995549 ], [ -74.72967529296875, -14.812980651855469 ], [ -74.728210449218693, -14.81264591217041 ], [ -74.725578308105469, -14.812631607055607 ], [ -74.72174072265625, -14.812167167663517 ], [ -74.720954895019474, -14.812475204467773 ], [ -74.720321655273438, -14.813023567199707 ], [ -74.719497680664062, -14.815176010131836 ], [ -74.718513488769531, -14.816312789916992 ], [ -74.717712402343693, -14.816837310791016 ], [ -74.7154541015625, -14.817511558532658 ], [ -74.714897155761719, -14.817917823791504 ], [ -74.714607238769531, -14.818668365478459 ], [ -74.714965820312386, -14.819074630737305 ], [ -74.719551086425781, -14.820989608764648 ], [ -74.722267150878906, -14.821461677551213 ], [ -74.723869323730469, -14.822973251342773 ], [ -74.724967956542912, -14.823519706726017 ], [ -74.726470947265568, -14.823826789855957 ], [ -74.728416442871094, -14.823865890502873 ], [ -74.729507446289062, -14.823722839355412 ], [ -74.731056213378849, -14.823119163513127 ], [ -74.732162475585938, -14.823083877563477 ], [ -74.733345031738224, -14.823465347290039 ], [ -74.734756469726562, -14.82473182678217 ], [ -74.735519409179688, -14.825057983398381 ], [ -74.736198425292912, -14.825213432312012 ], [ -74.738166809082031, -14.824590682983398 ], [ -74.740097045898438, -14.824565887451172 ], [ -74.741401672363281, -14.825056076049805 ], [ -74.742774963378906, -14.826186180114689 ], [ -74.743911743164062, -14.826687812805176 ], [ -74.748413085937443, -14.827460289001465 ], [ -74.750335693359318, -14.827442169189396 ], [ -74.752082824707031, -14.828278541564941 ], [ -74.752769470214844, -14.832102775573674 ], [ -74.753814697265625, -14.833857536315918 ], [ -74.754669189453125, -14.834726333618164 ], [ -74.754829406738168, -14.835268974304086 ], [ -74.754791259765625, -14.835810661315861 ], [ -74.754341125488224, -14.836471557617188 ], [ -74.753593444824219, -14.837102890014648 ], [ -74.750389099121094, -14.83870792388916 ], [ -74.748214721679631, -14.840378761291504 ], [ -74.747535705566406, -14.840423583984318 ], [ -74.746627807617074, -14.841010093688965 ], [ -74.744697570800724, -14.840700149536133 ], [ -74.743431091308594, -14.839939117431584 ], [ -74.739273071289006, -14.840152740478402 ], [ -74.736831665039062, -14.839678764343262 ], [ -74.731986999511719, -14.839655876159554 ], [ -74.731109619140625, -14.840044021606445 ], [ -74.728843688964844, -14.842680931091252 ], [ -74.727302551269531, -14.840608596801758 ], [ -74.725753784179688, -14.839982032775822 ], [ -74.721946716308594, -14.837304115295353 ], [ -74.718505859375, -14.836945533752441 ], [ -74.715446472167969, -14.836082458496094 ], [ -74.714767456054631, -14.836182594299316 ], [ -74.713668823242188, -14.836840629577637 ], [ -74.712791442871094, -14.836358070373478 ], [ -74.710266113281193, -14.834332466125431 ], [ -74.709121704101506, -14.833814620971566 ], [ -74.707626342773438, -14.833559036254883 ], [ -74.70638275146473, -14.833765029907227 ], [ -74.704696655273438, -14.834675788879395 ], [ -74.695068359375, -14.841272354125977 ], [ -74.693534851074219, -14.841887474060059 ], [ -74.692146301269474, -14.842081069946232 ], [ -74.690773010253906, -14.843735694885254 ], [ -74.687339782714844, -14.849453926086426 ], [ -74.68511962890625, -14.851602554321289 ], [ -74.682754516601562, -14.853002548217773 ], [ -74.681472778320256, -14.854058265686035 ], [ -74.681022644042969, -14.854871749877873 ], [ -74.680313110351506, -14.857618331909123 ], [ -74.677368164062443, -14.860514640808049 ], [ -74.676689147949162, -14.861519813537541 ], [ -74.676490783691406, -14.863099098205566 ], [ -74.676712036132756, -14.864720344543457 ], [ -74.680168151855469, -14.86822319030756 ], [ -74.681159973144531, -14.869850158691406 ], [ -74.681343078613281, -14.872797012329045 ], [ -74.680686950683594, -14.874299049377385 ], [ -74.679077148437443, -14.876131057739201 ], [ -74.677047729492188, -14.877756118774357 ], [ -74.675048828125, -14.878351211547738 ], [ -74.673110961914062, -14.8783922195434 ], [ -74.6719970703125, -14.879592895507812 ], [ -74.671401977539062, -14.880947113037053 ], [ -74.671379089355412, -14.882431030273438 ], [ -74.671859741210824, -14.883834838867074 ], [ -74.671638488769474, -14.885182380676213 ], [ -74.670486450195312, -14.886345863342285 ], [ -74.667732238769474, -14.888139724731388 ], [ -74.666206359863224, -14.889892578125 ], [ -74.665443420410099, -14.891463279724121 ], [ -74.663597106933594, -14.896579742431584 ], [ -74.663307189941406, -14.898811340332031 ], [ -74.663970947265625, -14.904046058654728 ], [ -74.663497924804688, -14.906008720397892 ], [ -74.663612365722656, -14.90761756896967 ], [ -74.664375305175781, -14.909055709838754 ], [ -74.665771484375, -14.910387039184513 ], [ -74.6683349609375, -14.91169261932373 ], [ -74.668952941894531, -14.912227630615178 ], [ -74.671577453613281, -14.915531158447266 ], [ -74.671836853027287, -14.916154861450195 ], [ -74.671806335449219, -14.917240142822266 ], [ -74.672576904296875, -14.918190956115609 ], [ -74.674392700195312, -14.919450759887582 ], [ -74.675880432128906, -14.921044349670353 ], [ -74.680587768554688, -14.923328399658203 ], [ -74.682373046875, -14.925383567810002 ], [ -74.68316650390625, -14.925610542297306 ], [ -74.684471130371094, -14.92551326751709 ], [ -74.684928894042969, -14.925703048706055 ], [ -74.686317443847656, -14.927584648132211 ], [ -74.686538696289006, -14.928715705871582 ], [ -74.685440063476562, -14.930586814880371 ], [ -74.682693481445312, -14.933249473571777 ], [ -74.681694030761719, -14.935326576232853 ], [ -74.678482055664062, -14.937882423400879 ], [ -74.678352355957031, -14.93841552734375 ], [ -74.678520202636662, -14.93991756439209 ], [ -74.676162719726562, -14.942326545715332 ], [ -74.676109313964844, -14.943421363830566 ], [ -74.674911499023324, -14.945852279663029 ], [ -74.674667358398438, -14.948157310485783 ], [ -74.674263000488281, -14.948967933654728 ], [ -74.672737121582031, -14.950386047363224 ], [ -74.67120361328125, -14.951296806335392 ], [ -74.669120788574219, -14.953644752502385 ], [ -74.667259216308537, -14.954545021057129 ], [ -74.666397094726506, -14.955423355102539 ], [ -74.6658935546875, -14.957653999328556 ], [ -74.665992736816406, -14.959808349609318 ], [ -74.66552734375, -14.961515426635742 ], [ -74.664939880371094, -14.962570190429631 ], [ -74.662429809570312, -14.965477943420353 ], [ -74.661544799804631, -14.967121124267578 ], [ -74.661857604980469, -14.968452453613281 ], [ -74.662956237792912, -14.970343589782715 ], [ -74.662727355957031, -14.971256256103459 ], [ -74.661209106445312, -14.971896171569767 ], [ -74.659431457519474, -14.971676826476994 ], [ -74.6583251953125, -14.971855163574105 ], [ -74.655319213867188, -14.974346160888672 ], [ -74.654609680175781, -14.974373817443848 ], [ -74.652175903320312, -14.975310325622559 ], [ -74.649040222167912, -14.975269317626896 ], [ -74.647315979003849, -14.975797653198185 ], [ -74.647018432617188, -14.97625827789301 ], [ -74.647735595703125, -14.977553367614632 ], [ -74.648880004882812, -14.98238468170166 ], [ -74.6505126953125, -14.984203338623047 ], [ -74.651176452636719, -14.985541343688908 ], [ -74.65484619140625, -14.988622665405273 ], [ -74.655563354492188, -14.989434242248535 ], [ -74.65602874755848, -14.990421295165959 ], [ -74.660011291503849, -14.994377136230469 ], [ -74.66168212890625, -14.995555877685547 ], [ -74.665794372558594, -14.997543334960938 ], [ -74.666412353515568, -14.998094558715763 ], [ -74.666046142578125, -14.99925327301014 ], [ -74.665336608886719, -15.000453948974553 ], [ -74.664802551269418, -15.005390167236271 ], [ -74.6650390625, -15.009276390075627 ], [ -74.666152954101562, -15.015373229980469 ], [ -74.666236877441406, -15.020616531372013 ], [ -74.666000366210938, -15.022487640380803 ], [ -74.666358947753906, -15.025444030761662 ], [ -74.666236877441406, -15.031448364257756 ], [ -74.665466308593693, -15.034302711486816 ], [ -74.663642883300724, -15.038082122802734 ], [ -74.663017272949219, -15.042209625244084 ], [ -74.664215087890568, -15.045927047729492 ], [ -74.665359497070256, -15.048063278198242 ], [ -74.665565490722543, -15.04913139343256 ], [ -74.667846679687443, -15.051836967468205 ], [ -74.669364929199162, -15.054849624633732 ], [ -74.672042846679631, -15.056535720825195 ], [ -74.675071716308537, -15.057875633239746 ], [ -74.677238464355469, -15.058341026306152 ], [ -74.680160522460938, -15.058319091796818 ], [ -74.684402465820312, -15.060321807861271 ], [ -74.687797546386719, -15.061503410339355 ], [ -74.690986633300781, -15.061786651611214 ], [ -74.693275451660156, -15.061249732971191 ], [ -74.694526672363224, -15.061179161071721 ], [ -74.69722747802723, -15.062202453613281 ], [ -74.698524475097656, -15.062989234924316 ], [ -74.699638366699219, -15.064004898071232 ], [ -74.702354431152287, -15.068394660949593 ], [ -74.704116821289062, -15.070285797119141 ], [ -74.708000183105412, -15.073345184326172 ], [ -74.710647583007756, -15.075077056884766 ], [ -74.716812133789062, -15.078167915344238 ], [ -74.723686218261719, -15.081050872802621 ], [ -74.727989196777344, -15.084102630615121 ], [ -74.729866027832031, -15.085144042968693 ], [ -74.731781005859375, -15.08533763885498 ], [ -74.736076354980469, -15.084827423095703 ], [ -74.737861633300781, -15.085062026977539 ], [ -74.74910736083973, -15.090473175048771 ], [ -74.752349853515511, -15.091211318969613 ], [ -74.755371093749943, -15.091546058654728 ], [ -74.756828308105412, -15.092028617858887 ], [ -74.759635925292969, -15.09423828125 ], [ -74.76275634765625, -15.09887790679926 ], [ -74.765457153320312, -15.101963996887093 ], [ -74.766853332519531, -15.103059768676758 ], [ -74.772163391113224, -15.105704307556096 ], [ -74.777824401855469, -15.107030868530217 ], [ -74.780998229980469, -15.109230041503906 ], [ -74.78411865234375, -15.11190128326416 ], [ -74.785491943359375, -15.113746643066349 ], [ -74.787193298339844, -15.117165565490723 ], [ -74.788032531738281, -15.12015247344965 ], [ -74.788612365722656, -15.120753288269043 ], [ -74.790321350097656, -15.121896743774357 ], [ -74.792915344238281, -15.122865676879826 ], [ -74.801452636718693, -15.129536628723145 ], [ -74.812591552734318, -15.136636734008789 ], [ -74.821762084960881, -15.141098976135254 ], [ -74.828300476074219, -15.14373588562006 ], [ -74.832595825195312, -15.144798278808594 ], [ -74.839714050292969, -15.145941734313908 ], [ -74.8446044921875, -15.147456169128418 ], [ -74.847259521484375, -15.148612976074219 ], [ -74.855743408203125, -15.153402328491211 ], [ -74.861785888671875, -15.151063919067326 ], [ -74.866775512695256, -15.149918556213322 ], [ -74.8702392578125, -15.150129318237248 ], [ -74.873069763183537, -15.150844573974553 ], [ -74.875205993652344, -15.151767730712891 ], [ -74.877357482910099, -15.153494834899846 ], [ -74.880104064941406, -15.15654468536377 ], [ -74.881332397460938, -15.157087326049748 ], [ -74.884727478027344, -15.157949447631779 ], [ -74.887138366699219, -15.159548759460449 ], [ -74.888526916503849, -15.161050796508789 ], [ -74.890335083007756, -15.163610458374023 ], [ -74.89324951171875, -15.169116973876953 ], [ -74.894180297851562, -15.170466423034611 ], [ -74.897315979003906, -15.173323631286564 ], [ -74.900428771972599, -15.175793647766113 ], [ -74.902717590331974, -15.176806449890137 ], [ -74.910980224609375, -15.178590774536133 ], [ -74.916580200195312, -15.18013763427723 ], [ -74.918342590332031, -15.180935859680176 ], [ -74.919342041015625, -15.182222366333008 ], [ -74.920661926269474, -15.186199188232422 ], [ -74.922180175781193, -15.18813419342041 ], [ -74.923477172851562, -15.189129829406625 ], [ -74.927871704101562, -15.191156387328988 ], [ -74.929306030273438, -15.192221641540471 ], [ -74.931106567382812, -15.194782257080078 ], [ -74.933769226074219, -15.197710990905762 ], [ -74.934539794921875, -15.199284553527832 ], [ -74.938629150390625, -15.203898429870605 ], [ -74.939865112304688, -15.205833435058594 ], [ -74.940757751464844, -15.20811939239502 ], [ -74.941253662109318, -15.210480690002385 ], [ -74.94171142578125, -15.214911460876408 ], [ -74.943138122558594, -15.220054626464844 ], [ -74.943885803222656, -15.224040985107422 ], [ -74.945228576660156, -15.228292465209961 ], [ -74.946784973144474, -15.231890678405705 ], [ -74.948982238769474, -15.235173225402775 ], [ -74.953872680664062, -15.239369392394963 ], [ -74.955581665039062, -15.241819381713867 ], [ -74.959030151367188, -15.245868682861328 ], [ -74.962562561035156, -15.251393318176213 ], [ -74.963638305664062, -15.253718376159611 ], [ -74.964134216308537, -15.258239746093693 ], [ -74.964073181152344, -15.266348838806152 ], [ -74.964805603027287, -15.273653984069767 ], [ -74.964363098144531, -15.279431343078556 ], [ -74.964431762695256, -15.284818649291992 ], [ -74.965248107910156, -15.290143013000488 ], [ -74.966171264648438, -15.294086456298771 ], [ -74.967102050781193, -15.296933174133301 ], [ -74.96820068359375, -15.299239158630371 ], [ -74.970680236816406, -15.301987648010254 ], [ -74.974143981933537, -15.307033538818359 ], [ -74.976333618164006, -15.309819221496582 ], [ -74.982414245605469, -15.316644668579045 ], [ -74.986122131347656, -15.31903076171875 ], [ -74.991668701171875, -15.320740699768066 ], [ -74.994979858398438, -15.322331428527775 ], [ -75.000343322753906, -15.326616287231445 ], [ -75.002388000488224, -15.328705787658691 ], [ -75.003013610839844, -15.331073760986271 ], [ -75.007034301757812, -15.338823318481445 ], [ -75.009101867675781, -15.341499328613168 ], [ -75.010711669921875, -15.344444274902287 ], [ -75.0145263671875, -15.348334312438908 ], [ -75.016555786132812, -15.350910186767521 ], [ -75.017562866210881, -15.353631019592228 ], [ -75.017860412597656, -15.357230186462402 ], [ -75.017753601074162, -15.358576774597168 ], [ -75.016754150390625, -15.361495971679631 ], [ -75.016342163085938, -15.364262580871582 ], [ -75.016319274902287, -15.371694564819336 ], [ -75.016952514648438, -15.377046585083008 ], [ -75.018478393554688, -15.382226943969727 ], [ -75.019439697265568, -15.384461402893066 ], [ -75.022117614746037, -15.389343261718693 ], [ -75.026046752929631, -15.398275375366154 ], [ -75.028915405273324, -15.404094696044922 ], [ -75.037193298339787, -15.416227340698242 ], [ -75.045547485351562, -15.430148124694767 ], [ -75.047866821289006, -15.432842254638615 ], [ -75.049652099609375, -15.434316635131779 ], [ -75.051292419433537, -15.434667587280273 ], [ -75.056686401367188, -15.434613227844238 ], [ -75.060478210449162, -15.435461044311467 ], [ -75.066413879394531, -15.438405990600529 ], [ -75.070968627929631, -15.441269874572697 ], [ -75.071250915527287, -15.441249847412053 ], [ -75.071250915527287, -15.440972328185978 ], [ -75.071525573730412, -15.440972328185978 ], [ -75.071525573730412, -15.440693855285588 ], [ -75.071250915527287, -15.440693855285588 ], [ -75.071250915527287, -15.440416336059513 ], [ -75.070968627929631, -15.440416336059513 ], [ -75.070968627929631, -15.439862251281738 ], [ -75.070693969726562, -15.439862251281738 ], [ -75.070693969726562, -15.439583778381348 ], [ -75.070419311523438, -15.439583778381348 ], [ -75.070419311523438, -15.439027786254883 ], [ -75.070137023925781, -15.439027786254883 ], [ -75.070137023925781, -15.437361717224121 ], [ -75.070419311523438, -15.437361717224121 ], [ -75.070419311523438, -15.437081336974984 ], [ -75.070968627929631, -15.437084197998047 ], [ -75.070968627929631, -15.436805725097656 ], [ -75.071090698242188, -15.436805725097656 ], [ -75.071525573730412, -15.436805725097656 ], [ -75.071525573730412, -15.436525344848576 ], [ -75.072639465332031, -15.436528205871582 ], [ -75.072639465332031, -15.436248779296875 ], [ -75.073753356933594, -15.436248779296875 ], [ -75.073753356933594, -15.435971260070801 ], [ -75.074028015136719, -15.435971260070801 ], [ -75.074028015136719, -15.435695648193303 ], [ -75.073753356933594, -15.435695648193303 ], [ -75.073753356933594, -15.434582710266056 ], [ -75.074028015136719, -15.434582710266056 ], [ -75.074028015136719, -15.433749198913574 ], [ -75.074302673339787, -15.433749198913574 ], [ -75.074302673339787, -15.433472633361816 ], [ -75.075141906738224, -15.433472633361816 ], [ -75.075141906738224, -15.433193206787109 ], [ -75.075691223144531, -15.433193206787109 ], [ -75.075691223144531, -15.432916641235352 ], [ -75.075973510742188, -15.432916641235352 ], [ -75.075973510742188, -15.432637214660645 ], [ -75.076805114746094, -15.432637214660645 ], [ -75.076805114746094, -15.432916641235352 ], [ -75.077362060546761, -15.432916641235352 ], [ -75.077362060546761, -15.433193206787109 ], [ -75.078193664550724, -15.433193206787109 ], [ -75.078193664550724, -15.433472633361816 ], [ -75.078750610351562, -15.433472633361816 ], [ -75.078750610351562, -15.433749198913574 ], [ -75.079025268554688, -15.433749198913574 ], [ -75.079025268554688, -15.433472633361816 ], [ -75.08013916015625, -15.433472633361816 ], [ -75.08013916015625, -15.433193206787109 ], [ -75.080413818359261, -15.433193206787109 ], [ -75.080413818359261, -15.432916641235352 ], [ -75.080970764160099, -15.432916641235352 ], [ -75.080970764160099, -15.432637214660645 ], [ -75.081253051757756, -15.432639122009221 ], [ -75.081253051757756, -15.432360649108773 ], [ -75.081527709960881, -15.432360649108773 ], [ -75.081527709960881, -15.431804656982365 ], [ -75.081253051757756, -15.431804656982365 ], [ -75.081253051757756, -15.430971145629826 ], [ -75.080970764160099, -15.430971145629826 ], [ -75.080970764160099, -15.43013858795166 ], [ -75.080696105956974, -15.43013858795166 ], [ -75.080696105956974, -15.429861068725472 ], [ -75.080413818359261, -15.429861068725472 ], [ -75.080413818359261, -15.428749084472599 ], [ -75.080696105956974, -15.428750991821289 ], [ -75.080696105956974, -15.428473472595215 ], [ -75.081253051757756, -15.428473472595215 ], [ -75.081253051757756, -15.428193092346135 ], [ -75.081802368164062, -15.428194999694824 ], [ -75.081802368164062, -15.427916526794434 ], [ -75.082916259765625, -15.427916526794434 ], [ -75.082916259765625, -15.428194999694824 ], [ -75.08319091796875, -15.428193092346135 ], [ -75.08319091796875, -15.428473472595215 ], [ -75.083473205566406, -15.428473472595215 ], [ -75.083473205566406, -15.428193092346135 ], [ -75.083747863769474, -15.428194999694824 ], [ -75.083747863769474, -15.427916526794434 ], [ -75.084030151367131, -15.427916526794434 ], [ -75.084030151367131, -15.427639007568359 ], [ -75.083747863769474, -15.427639007568359 ], [ -75.083747863769474, -15.42652702331543 ], [ -75.084030151367131, -15.426528930664062 ], [ -75.084030151367131, -15.426251411437988 ], [ -75.084304809570256, -15.426248550415039 ], [ -75.084304809570256, -15.425971031188851 ], [ -75.085693359375, -15.425971031188851 ], [ -75.085693359375, -15.426248550415039 ], [ -75.086807250976562, -15.426251411437988 ], [ -75.086807250976562, -15.426528930664062 ], [ -75.087364196777287, -15.42652702331543 ], [ -75.087364196777287, -15.427083015441895 ], [ -75.087638854980412, -15.427083015441895 ], [ -75.087638854980412, -15.427360534667969 ], [ -75.08819580078125, -15.427360534667969 ], [ -75.08819580078125, -15.427639007568359 ], [ -75.088752746582031, -15.427639007568359 ], [ -75.088752746582031, -15.427916526794434 ], [ -75.089584350585938, -15.427916526794434 ], [ -75.089584350585938, -15.428194999694824 ], [ -75.090415954589787, -15.428193092346135 ], [ -75.090415954589787, -15.428473472595215 ], [ -75.091529846191406, -15.428473472595215 ], [ -75.091529846191406, -15.428750991821289 ], [ -75.092361450195312, -15.428749084472599 ], [ -75.092361450195312, -15.429026603698617 ], [ -75.094306945800724, -15.429026603698617 ], [ -75.094306945800724, -15.428749084472599 ], [ -75.094581604003906, -15.428749084472599 ], [ -75.094581604003906, -15.427639007568359 ], [ -75.094306945800724, -15.427639007568359 ], [ -75.094306945800724, -15.425416946411133 ], [ -75.094581604003906, -15.425416946411133 ], [ -75.094581604003906, -15.425139427185059 ], [ -75.095138549804688, -15.425139427185059 ], [ -75.095138549804688, -15.424860954284668 ], [ -75.095695495605469, -15.424860954284668 ], [ -75.095695495605469, -15.424583435058594 ], [ -75.09625244140625, -15.424583435058594 ], [ -75.09625244140625, -15.424304962158203 ], [ -75.096801757812443, -15.424306869506779 ], [ -75.096801757812443, -15.424025535583496 ], [ -75.097358703613224, -15.424025535583496 ], [ -75.097358703613224, -15.423748016357422 ], [ -75.097915649414062, -15.423750877380314 ], [ -75.097915649414062, -15.423473358154297 ], [ -75.098197937011719, -15.423473358154297 ], [ -75.098197937011719, -15.423750877380314 ], [ -75.098747253417969, -15.423748016357422 ], [ -75.098747253417969, -15.424025535583496 ], [ -75.099029541015625, -15.424025535583496 ], [ -75.099029541015625, -15.424306869506779 ], [ -75.09930419921875, -15.424304962158203 ], [ -75.09930419921875, -15.424583435058594 ], [ -75.099586486816406, -15.424583435058594 ], [ -75.099586486816406, -15.424860954284668 ], [ -75.099861145019474, -15.424860954284668 ], [ -75.099861145019474, -15.425139427185059 ], [ -75.100135803222599, -15.425139427185059 ], [ -75.100135803222599, -15.425416946411133 ], [ -75.100418090820256, -15.425416946411133 ], [ -75.100418090820256, -15.425695419311523 ], [ -75.100692749023381, -15.425695419311523 ], [ -75.100692749023381, -15.425972938537598 ], [ -75.101249694824219, -15.425971031188851 ], [ -75.101249694824219, -15.426248550415039 ], [ -75.102363586425781, -15.426251411437988 ], [ -75.102363586425781, -15.426528930664062 ], [ -75.102912902831974, -15.426528930664062 ], [ -75.102912902831974, -15.424583435058594 ], [ -75.102638244628906, -15.424583435058594 ], [ -75.102638244628906, -15.424304962158203 ], [ -75.102363586425781, -15.424306869506779 ], [ -75.102363586425781, -15.424025535583496 ], [ -75.102081298828125, -15.424025535583496 ], [ -75.102081298828125, -15.422637939453068 ], [ -75.102363586425781, -15.422637939453068 ], [ -75.102363586425781, -15.422360420226994 ], [ -75.102912902831974, -15.422360420226994 ], [ -75.102912902831974, -15.421804428100586 ], [ -75.102638244628906, -15.421804428100586 ], [ -75.102638244628906, -15.421528816223088 ], [ -75.102363586425781, -15.421528816223088 ], [ -75.102363586425781, -15.42125034332264 ], [ -75.101806640625, -15.42125034332264 ], [ -75.101806640625, -15.420971870422363 ], [ -75.101249694824219, -15.420971870422363 ], [ -75.101249694824219, -15.42125034332264 ], [ -75.100692749023381, -15.42125034332264 ], [ -75.100692749023381, -15.420694351196232 ], [ -75.100418090820256, -15.420694351196232 ], [ -75.100418090820256, -15.418749809265137 ], [ -75.100692749023381, -15.418749809265137 ], [ -75.100692749023381, -15.418193817138672 ], [ -75.101524353027344, -15.418193817138672 ], [ -75.101524353027344, -15.418472290039062 ], [ -75.102363586425781, -15.418472290039062 ], [ -75.102363586425781, -15.418749809265137 ], [ -75.102638244628906, -15.418749809265137 ], [ -75.102638244628906, -15.419028282165527 ], [ -75.102912902831974, -15.419028282165527 ], [ -75.102912902831974, -15.419305801391602 ], [ -75.103469848632756, -15.419305801391602 ], [ -75.103469848632756, -15.419584274291992 ], [ -75.103752136230412, -15.419584274291992 ], [ -75.103752136230412, -15.419305801391602 ], [ -75.104026794433594, -15.419305801391602 ], [ -75.104026794433594, -15.418472290039062 ], [ -75.10430908203125, -15.418472290039062 ], [ -75.10430908203125, -15.418193817138672 ], [ -75.104583740234375, -15.418193817138672 ], [ -75.104583740234375, -15.417916297912484 ], [ -75.1048583984375, -15.417916297912484 ], [ -75.1048583984375, -15.417637825012207 ], [ -75.105140686035156, -15.417637825012207 ], [ -75.105140686035156, -15.415694236755371 ], [ -75.1048583984375, -15.415694236755371 ], [ -75.1048583984375, -15.41541576385498 ], [ -75.105140686035156, -15.41541576385498 ], [ -75.105140686035156, -15.415138244628906 ], [ -75.105415344238281, -15.415140151977482 ], [ -75.105415344238281, -15.414859771728516 ], [ -75.105697631835938, -15.414859771728516 ], [ -75.105697631835938, -15.414582252502441 ], [ -75.106246948242131, -15.414584159851074 ], [ -75.106246948242131, -15.414305686950627 ], [ -75.107086181640568, -15.414305686950627 ], [ -75.107086181640568, -15.414028167724609 ], [ -75.108192443847656, -15.414028167724609 ], [ -75.108192443847656, -15.413749694824219 ], [ -75.108474731445312, -15.413749694824219 ], [ -75.108474731445312, -15.413472175598145 ], [ -75.109024047851449, -15.413472175598145 ], [ -75.109024047851449, -15.413193702697754 ], [ -75.109306335449162, -15.413193702697754 ], [ -75.109306335449162, -15.41291618347168 ], [ -75.110137939453068, -15.41291618347168 ], [ -75.110137939453068, -15.412637710571289 ], [ -75.110694885253906, -15.412637710571289 ], [ -75.110694885253906, -15.412360191345215 ], [ -75.110969543457031, -15.412362098693791 ], [ -75.110969543457031, -15.4120836257934 ], [ -75.112640380859318, -15.4120836257934 ], [ -75.112640380859318, -15.411803245544434 ], [ -75.113471984863224, -15.411806106567326 ], [ -75.113471984863224, -15.411527633666935 ], [ -75.114303588867188, -15.411527633666935 ], [ -75.114303588867188, -15.411250114440861 ], [ -75.114860534667969, -15.411250114440861 ], [ -75.114860534667969, -15.410971641540471 ], [ -75.115135192871094, -15.410971641540471 ], [ -75.115135192871094, -15.410694122314453 ], [ -75.116531372070256, -15.410694122314453 ], [ -75.116531372070256, -15.410971641540471 ], [ -75.116806030273438, -15.410971641540471 ], [ -75.116806030273438, -15.411250114440861 ], [ -75.117362976074219, -15.411250114440861 ], [ -75.117362976074219, -15.411527633666935 ], [ -75.117637634277344, -15.411527633666935 ], [ -75.117637634277344, -15.411806106567326 ], [ -75.117919921875, -15.411803245544434 ], [ -75.117919921875, -15.4120836257934 ], [ -75.118194580078125, -15.4120836257934 ], [ -75.118194580078125, -15.412362098693791 ], [ -75.11846923828125, -15.412360191345215 ], [ -75.11846923828125, -15.412637710571289 ], [ -75.118751525878793, -15.412637710571289 ], [ -75.118751525878793, -15.41291618347168 ], [ -75.119026184081974, -15.41291618347168 ], [ -75.119026184081974, -15.413193702697754 ], [ -75.119308471679631, -15.413193702697754 ], [ -75.119308471679631, -15.41291618347168 ], [ -75.119583129882756, -15.41291332244873 ], [ -75.119583129882756, -15.412360191345215 ], [ -75.119857788085938, -15.412360191345215 ], [ -75.119857788085938, -15.411803245544434 ], [ -75.120140075683594, -15.411803245544434 ], [ -75.120140075683594, -15.411250114440861 ], [ -75.120414733886719, -15.411250114440861 ], [ -75.120414733886719, -15.410694122314453 ], [ -75.120697021484375, -15.410694122314453 ], [ -75.120697021484375, -15.410137176513615 ], [ -75.1209716796875, -15.410140037536507 ], [ -75.1209716796875, -15.40986156463623 ], [ -75.121246337890625, -15.40986156463623 ], [ -75.121246337890625, -15.409305572509652 ], [ -75.121528625488281, -15.409305572509652 ], [ -75.121528625488281, -15.409027099609375 ], [ -75.121803283691293, -15.409027099609375 ], [ -75.121803283691293, -15.408471107482796 ], [ -75.122085571289006, -15.408471107482796 ], [ -75.122085571289006, -15.408196449279785 ], [ -75.122360229492131, -15.408196449279785 ], [ -75.122360229492131, -15.407915115356388 ], [ -75.122917175292912, -15.407917976379395 ], [ -75.122917175292912, -15.407638549804688 ], [ -75.12347412109375, -15.407638549804688 ], [ -75.12347412109375, -15.407359123229924 ], [ -75.125137329101506, -15.407359123229924 ], [ -75.125137329101506, -15.407638549804688 ], [ -75.12652587890625, -15.407638549804688 ], [ -75.12652587890625, -15.407917976379395 ], [ -75.127082824707031, -15.407915115356388 ], [ -75.127082824707031, -15.408196449279785 ], [ -75.127639770507812, -15.408196449279785 ], [ -75.127639770507812, -15.408471107482796 ], [ -75.128196716308594, -15.408471107482796 ], [ -75.128196716308594, -15.408748626708984 ], [ -75.129585266113281, -15.408748626708984 ], [ -75.129585266113281, -15.408471107482796 ], [ -75.130142211914062, -15.408471107482796 ], [ -75.130142211914062, -15.408196449279785 ], [ -75.130416870117188, -15.408196449279785 ], [ -75.130416870117188, -15.407915115356388 ], [ -75.130973815917969, -15.407917976379395 ], [ -75.130973815917969, -15.407638549804688 ], [ -75.131248474121094, -15.407638549804688 ], [ -75.131248474121094, -15.407359123229924 ], [ -75.131805419921818, -15.407361030578613 ], [ -75.131805419921818, -15.407082557678223 ], [ -75.132362365722599, -15.407082557678223 ], [ -75.132362365722599, -15.406805038452148 ], [ -75.132637023925781, -15.406805038452148 ], [ -75.132637023925781, -15.406526565551758 ], [ -75.133193969726562, -15.406526565551758 ], [ -75.133193969726562, -15.406249046325684 ], [ -75.133468627929688, -15.406249046325684 ], [ -75.133468627929688, -15.406526565551758 ], [ -75.133750915527344, -15.406526565551758 ], [ -75.133750915527344, -15.406805038452148 ], [ -75.134307861328125, -15.406805038452148 ], [ -75.134307861328125, -15.407082557678223 ], [ -75.134582519531136, -15.407082557678223 ], [ -75.134582519531136, -15.407361030578613 ], [ -75.134864807128849, -15.407359123229924 ], [ -75.134864807128849, -15.407638549804688 ], [ -75.135139465331974, -15.407638549804688 ], [ -75.135139465331974, -15.407917976379395 ], [ -75.135414123535099, -15.407915115356388 ], [ -75.135414123535099, -15.408196449279785 ], [ -75.135696411132756, -15.408196449279785 ], [ -75.135696411132756, -15.408471107482796 ], [ -75.135971069335938, -15.408471107482796 ], [ -75.135971069335938, -15.408748626708984 ], [ -75.136253356933594, -15.408748626708984 ], [ -75.136253356933594, -15.409027099609375 ], [ -75.136528015136719, -15.409027099609375 ], [ -75.136528015136719, -15.408748626708984 ], [ -75.1370849609375, -15.408748626708984 ], [ -75.1370849609375, -15.408471107482796 ], [ -75.137641906738281, -15.408471107482796 ], [ -75.137641906738281, -15.408196449279785 ], [ -75.138191223144474, -15.408196449279785 ], [ -75.138191223144474, -15.408471107482796 ], [ -75.138748168945256, -15.408471107482796 ], [ -75.138748168945256, -15.408748626708984 ], [ -75.139305114746094, -15.408748626708984 ], [ -75.139305114746094, -15.409027099609375 ], [ -75.139579772949219, -15.409027099609375 ], [ -75.139579772949219, -15.40958118438715 ], [ -75.139862060546875, -15.40958118438715 ], [ -75.139862060546875, -15.410414695739689 ], [ -75.14013671875, -15.410414695739689 ], [ -75.14013671875, -15.410971641540471 ], [ -75.140419006347656, -15.410971641540471 ], [ -75.140419006347656, -15.411527633666935 ], [ -75.140693664550781, -15.411527633666935 ], [ -75.140693664550781, -15.411806106567326 ], [ -75.140975952148438, -15.411803245544434 ], [ -75.140975952148438, -15.4120836257934 ], [ -75.141525268554631, -15.4120836257934 ], [ -75.141525268554631, -15.412362098693791 ], [ -75.142082214355412, -15.412360191345215 ], [ -75.142082214355412, -15.412637710571289 ], [ -75.142364501953125, -15.412637710571289 ], [ -75.142364501953125, -15.412360191345215 ], [ -75.14263916015625, -15.412362098693791 ], [ -75.14263916015625, -15.4120836257934 ], [ -75.142913818359375, -15.4120836257934 ], [ -75.142913818359375, -15.411803245544434 ], [ -75.143196105957031, -15.411806106567326 ], [ -75.143196105957031, -15.411527633666935 ], [ -75.142913818359375, -15.411527633666935 ], [ -75.142913818359375, -15.410971641540471 ], [ -75.14263916015625, -15.410971641540471 ], [ -75.14263916015625, -15.410414695739689 ], [ -75.142364501953125, -15.410414695739689 ], [ -75.142364501953125, -15.40986156463623 ], [ -75.142082214355412, -15.40986156463623 ], [ -75.142082214355412, -15.409305572509652 ], [ -75.141807556152287, -15.409305572509652 ], [ -75.141807556152287, -15.409027099609375 ], [ -75.142082214355412, -15.409027099609375 ], [ -75.142082214355412, -15.408471107482796 ], [ -75.142364501953125, -15.408471107482796 ], [ -75.142364501953125, -15.408196449279785 ], [ -75.143196105957031, -15.408196449279785 ], [ -75.143196105957031, -15.407915115356388 ], [ -75.143470764160156, -15.407917976379395 ], [ -75.143470764160156, -15.407638549804688 ], [ -75.143753051757812, -15.407638549804688 ], [ -75.143753051757812, -15.407082557678223 ], [ -75.144027709960938, -15.407082557678223 ], [ -75.144027709960938, -15.406526565551758 ], [ -75.143753051757812, -15.406526565551758 ], [ -75.143753051757812, -15.406249046325684 ], [ -75.142913818359375, -15.406249046325684 ], [ -75.142913818359375, -15.405973434448242 ], [ -75.142082214355412, -15.405973434448242 ], [ -75.142082214355412, -15.405693054199219 ], [ -75.141807556152287, -15.405693054199219 ], [ -75.141807556152287, -15.405417442321777 ], [ -75.142082214355412, -15.405417442321777 ], [ -75.142082214355412, -15.40513706207264 ], [ -75.14263916015625, -15.405138969421387 ], [ -75.14263916015625, -15.404861450195312 ], [ -75.142913818359375, -15.404861450195312 ], [ -75.142913818359375, -15.404305458068848 ], [ -75.143196105957031, -15.404305458068848 ], [ -75.143196105957031, -15.403470993041992 ], [ -75.143753051757812, -15.403470993041992 ], [ -75.143753051757812, -15.403195381164494 ], [ -75.144027709960938, -15.403195381164494 ], [ -75.144027709960938, -15.402915000915527 ], [ -75.144302368164006, -15.402916908264103 ], [ -75.144302368164006, -15.401527404785156 ], [ -75.144584655761662, -15.401527404785156 ], [ -75.144584655761662, -15.398751258850098 ], [ -75.144859313964787, -15.398751258850098 ], [ -75.144859313964787, -15.397083282470646 ], [ -75.145141601562443, -15.397083282470646 ], [ -75.145141601562443, -15.396806716918945 ], [ -75.145416259765625, -15.396806716918945 ], [ -75.145416259765625, -15.396529197692871 ], [ -75.14569091796875, -15.396526336669808 ], [ -75.14569091796875, -15.39625072479248 ], [ -75.145973205566406, -15.39625072479248 ], [ -75.145973205566406, -15.3959703445434 ], [ -75.146247863769531, -15.395973205566406 ], [ -75.146247863769531, -15.395694732666016 ], [ -75.146530151367188, -15.395694732666016 ], [ -75.146530151367188, -15.395416259765625 ], [ -75.146804809570312, -15.395416259765625 ], [ -75.146804809570312, -15.395137786865234 ], [ -75.147087097167969, -15.395137786865234 ], [ -75.147087097167969, -15.39486026763916 ], [ -75.147636413574162, -15.39486026763916 ], [ -75.147636413574162, -15.394584655761662 ], [ -75.147918701171818, -15.394584655761662 ], [ -75.147918701171818, -15.394304275512695 ], [ -75.148193359374943, -15.394304275512695 ], [ -75.148193359374943, -15.394027709960881 ], [ -75.148750305175781, -15.394027709960881 ], [ -75.148750305175781, -15.39374828338623 ], [ -75.149024963378906, -15.393750190734806 ], [ -75.149024963378906, -15.393471717834416 ], [ -75.149581909179688, -15.393471717834416 ], [ -75.149581909179688, -15.393192291259652 ], [ -75.150138854980469, -15.393194198608398 ], [ -75.150138854980469, -15.392915725707951 ], [ -75.15041351318348, -15.392915725707951 ], [ -75.15041351318348, -15.392638206481934 ], [ -75.150970458984318, -15.392638206481934 ], [ -75.150970458984318, -15.392359733581543 ], [ -75.151252746581974, -15.392359733581543 ], [ -75.151252746581974, -15.392638206481934 ], [ -75.151527404785099, -15.392638206481934 ], [ -75.151527404785099, -15.392915725707951 ], [ -75.152084350585938, -15.392915725707951 ], [ -75.152084350585938, -15.393194198608398 ], [ -75.152359008789062, -15.393192291259652 ], [ -75.152359008789062, -15.393471717834416 ], [ -75.152915954589844, -15.393471717834416 ], [ -75.152915954589844, -15.393750190734806 ], [ -75.153472900390625, -15.39374828338623 ], [ -75.153472900390625, -15.394027709960881 ], [ -75.154029846191349, -15.394027709960881 ], [ -75.154029846191349, -15.394304275512695 ], [ -75.154586791992131, -15.394304275512695 ], [ -75.154586791992131, -15.394584655761662 ], [ -75.155136108398438, -15.394584655761662 ], [ -75.155136108398438, -15.394304275512695 ], [ -75.155693054199219, -15.394304275512695 ], [ -75.155693054199219, -15.394027709960881 ], [ -75.15625, -15.394027709960881 ], [ -75.15625, -15.39374828338623 ], [ -75.156524658203125, -15.393750190734806 ], [ -75.156524658203125, -15.392638206481934 ], [ -75.156806945800781, -15.392638206481934 ], [ -75.156806945800781, -15.392082214355469 ], [ -75.157081604003849, -15.392082214355469 ], [ -75.157081604003849, -15.392359733581543 ], [ -75.157363891601506, -15.392359733581543 ], [ -75.157363891601506, -15.392915725707951 ], [ -75.157081604003849, -15.392915725707951 ], [ -75.157081604003849, -15.393750190734806 ], [ -75.157363891601506, -15.39374828338623 ], [ -75.157363891601506, -15.394027709960881 ], [ -75.157638549804631, -15.394027709960881 ], [ -75.157638549804631, -15.394304275512695 ], [ -75.157913208007756, -15.394304275512695 ], [ -75.157913208007756, -15.394584655761662 ], [ -75.158195495605469, -15.394584655761662 ], [ -75.158195495605469, -15.39486026763916 ], [ -75.15875244140625, -15.39486026763916 ], [ -75.15875244140625, -15.394584655761662 ], [ -75.159584045410156, -15.394584655761662 ], [ -75.159584045410156, -15.394304275512695 ], [ -75.159858703613281, -15.394304275512695 ], [ -75.159858703613281, -15.393471717834416 ], [ -75.160140991210824, -15.393471717834416 ], [ -75.160140991210824, -15.392082214355469 ], [ -75.160415649414006, -15.392082214355469 ], [ -75.160415649414006, -15.39041614532465 ], [ -75.160697937011662, -15.39041614532465 ], [ -75.160697937011662, -15.389583587646484 ], [ -75.160415649414006, -15.389583587646484 ], [ -75.160415649414006, -15.384584426879883 ], [ -75.160697937011662, -15.384584426879883 ], [ -75.160697937011662, -15.383472442626953 ], [ -75.160972595214787, -15.383472442626953 ], [ -75.160972595214787, -15.382914543151855 ], [ -75.161247253417969, -15.382914543151855 ], [ -75.161247253417969, -15.382362365722656 ], [ -75.161529541015625, -15.382362365722656 ], [ -75.161529541015625, -15.381805419921818 ], [ -75.16180419921875, -15.381805419921818 ], [ -75.16180419921875, -15.381526947021428 ], [ -75.162361145019531, -15.381526947021428 ], [ -75.162361145019531, -15.38124942779541 ], [ -75.162635803222656, -15.38124942779541 ], [ -75.162635803222656, -15.380970954894963 ], [ -75.162918090820312, -15.380970954894963 ], [ -75.162918090820312, -15.380693435668945 ], [ -75.163475036621037, -15.380693435668945 ], [ -75.163475036621037, -15.380416870117188 ], [ -75.163749694824162, -15.380416870117188 ], [ -75.163749694824162, -15.380139350891056 ], [ -75.164024353027287, -15.380139350891056 ], [ -75.164024353027287, -15.379860877990609 ], [ -75.164581298828125, -15.379860877990609 ], [ -75.164581298828125, -15.380139350891056 ], [ -75.166526794433537, -15.380139350891056 ], [ -75.166526794433537, -15.379860877990609 ], [ -75.167083740234318, -15.379860877990609 ], [ -75.167083740234318, -15.379583358764592 ], [ -75.167358398437443, -15.379583358764592 ], [ -75.167358398437443, -15.379304885864201 ], [ -75.167915344238281, -15.379304885864201 ], [ -75.167915344238281, -15.379027366638127 ], [ -75.168746948242188, -15.379027366638127 ], [ -75.168746948242188, -15.378748893737736 ], [ -75.169029235839844, -15.378748893737736 ], [ -75.169029235839844, -15.377917289733887 ], [ -75.168746948242188, -15.377917289733887 ], [ -75.168746948242188, -15.377361297607308 ], [ -75.169303894042969, -15.377361297607308 ], [ -75.169303894042969, -15.377082824707031 ], [ -75.169860839843693, -15.377082824707031 ], [ -75.169860839843693, -15.3768053054809 ], [ -75.170692443847599, -15.3768053054809 ], [ -75.170692443847599, -15.376526832580453 ], [ -75.171249389648438, -15.376526832580453 ], [ -75.171249389648438, -15.376249313354435 ], [ -75.171806335449219, -15.376251220703125 ], [ -75.171806335449219, -15.375970840454045 ], [ -75.172637939453125, -15.375970840454045 ], [ -75.172637939453125, -15.37569522857666 ], [ -75.173194885253849, -15.37569522857666 ], [ -75.173194885253849, -15.37541675567627 ], [ -75.173751831054631, -15.37541675567627 ], [ -75.173751831054631, -15.375139236450195 ], [ -75.174308776855469, -15.375139236450195 ], [ -75.174308776855469, -15.37541675567627 ], [ -75.174858093261719, -15.37541675567627 ], [ -75.174858093261719, -15.37569522857666 ], [ -75.1754150390625, -15.37569522857666 ], [ -75.1754150390625, -15.375970840454045 ], [ -75.175971984863168, -15.375970840454045 ], [ -75.175971984863168, -15.376251220703125 ], [ -75.178192138671875, -15.376251220703125 ], [ -75.178192138671875, -15.375970840454045 ], [ -75.179306030273381, -15.375970840454045 ], [ -75.179306030273381, -15.37569522857666 ], [ -75.179862976074162, -15.37569522857666 ], [ -75.179862976074162, -15.37541675567627 ], [ -75.180137634277287, -15.37541675567627 ], [ -75.180137634277287, -15.374860763549805 ], [ -75.180419921874943, -15.374860763549805 ], [ -75.180419921874943, -15.374027252197266 ], [ -75.180694580078125, -15.374027252197266 ], [ -75.180694580078125, -15.372915267944279 ], [ -75.181251525878906, -15.372915267944279 ], [ -75.181251525878906, -15.373194694519043 ], [ -75.182357788085881, -15.373194694519043 ], [ -75.182357788085881, -15.372915267944279 ], [ -75.182640075683537, -15.372917175292969 ], [ -75.182640075683537, -15.372082710266113 ], [ -75.182914733886662, -15.372082710266113 ], [ -75.182914733886662, -15.371526718139648 ], [ -75.183197021484318, -15.371526718139648 ], [ -75.183197021484318, -15.371805191040039 ], [ -75.184028625488281, -15.371805191040039 ], [ -75.184028625488281, -15.372082710266113 ], [ -75.184303283691406, -15.372082710266113 ], [ -75.184303283691406, -15.372361183166504 ], [ -75.184860229492188, -15.372358322143555 ], [ -75.184860229492188, -15.372638702392578 ], [ -75.185417175292969, -15.372638702392578 ], [ -75.185417175292969, -15.372358322143555 ], [ -75.185974121093693, -15.372361183166504 ], [ -75.185974121093693, -15.372082710266113 ], [ -75.186248779296818, -15.372082710266113 ], [ -75.186248779296818, -15.369306564331055 ], [ -75.186531066894474, -15.369306564331055 ], [ -75.186531066894474, -15.368750572204476 ], [ -75.186805725097656, -15.368750572204476 ], [ -75.186805725097656, -15.368193626403809 ], [ -75.187080383300781, -15.368193626403809 ], [ -75.187080383300781, -15.368473052978459 ], [ -75.187362670898438, -15.368470191955566 ], [ -75.187362670898438, -15.368750572204476 ], [ -75.187637329101562, -15.368750572204476 ], [ -75.187637329101562, -15.369029045104924 ], [ -75.188194274902344, -15.369026184081974 ], [ -75.188194274902344, -15.369306564331055 ], [ -75.189025878906193, -15.369306564331055 ], [ -75.189025878906193, -15.369582176208439 ], [ -75.190139770507812, -15.369582176208439 ], [ -75.190139770507812, -15.36986064910883 ], [ -75.190696716308594, -15.36986064910883 ], [ -75.190696716308594, -15.370139122009277 ], [ -75.191253662109375, -15.370139122009277 ], [ -75.191253662109375, -15.370416641235295 ], [ -75.191802978515511, -15.370416641235295 ], [ -75.191802978515511, -15.370695114135685 ], [ -75.192359924316349, -15.370695114135685 ], [ -75.192359924316349, -15.37097263336176 ], [ -75.192916870117131, -15.37097263336176 ], [ -75.192916870117131, -15.370695114135685 ], [ -75.193191528320312, -15.370695114135685 ], [ -75.193191528320312, -15.370416641235295 ], [ -75.193473815917969, -15.370416641235295 ], [ -75.193473815917969, -15.36986064910883 ], [ -75.193748474121094, -15.36986064910883 ], [ -75.193748474121094, -15.369306564331055 ], [ -75.19403076171875, -15.369306564331055 ], [ -75.19403076171875, -15.369124412536564 ], [ -75.19403076171875, -15.368750572204476 ], [ -75.194305419921875, -15.368750572204476 ], [ -75.194305419921875, -15.368193626403809 ], [ -75.194580078125, -15.368193626403809 ], [ -75.194580078125, -15.367637634277344 ], [ -75.194862365722656, -15.367637634277344 ], [ -75.194862365722656, -15.367535591125431 ], [ -75.194862365722656, -15.367085456848031 ], [ -75.195137023925724, -15.367085456848031 ], [ -75.195137023925724, -15.366248130798283 ], [ -75.194862365722656, -15.366250038146973 ], [ -75.194862365722656, -15.365971565246582 ], [ -75.193939208984375, -15.365971565246582 ], [ -75.193748474121094, -15.365971565246582 ], [ -75.193748474121094, -15.365792274475098 ], [ -75.193702697753849, -15.365735054016056 ], [ -75.193473815917969, -15.365694046020508 ], [ -75.193473815917969, -15.365501403808537 ], [ -75.193473815917969, -15.364582061767464 ], [ -75.193191528320312, -15.364582061767464 ], [ -75.193191528320312, -15.363750457763672 ], [ -75.193473815917969, -15.363750457763672 ], [ -75.193473815917969, -15.362989425659123 ], [ -75.193473815917969, -15.362655639648381 ], [ -75.193473815917969, -15.361805915832463 ], [ -75.193191528320312, -15.361805915832463 ], [ -75.193191528320312, -15.361528396606445 ], [ -75.192916870117131, -15.361528396606445 ], [ -75.192916870117131, -15.361249923706055 ], [ -75.192642211914006, -15.361249923706055 ], [ -75.192642211914006, -15.36097240447998 ], [ -75.189468383789062, -15.36097240447998 ], [ -75.189308166503849, -15.36097240447998 ], [ -75.189308166503849, -15.359862327575627 ], [ -75.189025878906193, -15.359862327575627 ], [ -75.189025878906193, -15.358194351196289 ], [ -75.188751220703011, -15.358194351196289 ], [ -75.188751220703011, -15.358001708984261 ], [ -75.188751220703011, -15.357361793518066 ], [ -75.188468933105469, -15.357361793518066 ], [ -75.188468933105469, -15.357084274291935 ], [ -75.188194274902344, -15.357084274291935 ], [ -75.188194274902344, -15.356953620910588 ], [ -75.188194274902344, -15.356805801391488 ], [ -75.188087463378906, -15.356805801391488 ], [ -75.187919616699219, -15.356805801391488 ], [ -75.187919616699219, -15.356643676757756 ], [ -75.187919616699219, -15.356528282165471 ], [ -75.187797546386605, -15.356528282165471 ], [ -75.187637329101562, -15.356528282165471 ], [ -75.187637329101562, -15.356376647949105 ], [ -75.187637329101562, -15.35624980926508 ], [ -75.1875, -15.35624980926508 ], [ -75.187080383300781, -15.35624980926508 ], [ -75.187080383300781, -15.355971336364632 ], [ -75.186805725097656, -15.355971336364632 ], [ -75.186805725097656, -15.355695724487305 ], [ -75.186531066894474, -15.355695724487305 ], [ -75.186531066894474, -15.354862213134766 ], [ -75.186248779296818, -15.354862213134766 ], [ -75.186248779296818, -15.354582786560059 ], [ -75.185691833496037, -15.354582786560059 ], [ -75.185691833496037, -15.354862213134766 ], [ -75.183517456054688, -15.354862213134766 ], [ -75.182823181152287, -15.354862213134766 ], [ -75.18096923828125, -15.354862213134766 ], [ -75.18096923828125, -15.35513973236084 ], [ -75.180419921874943, -15.35513973236084 ], [ -75.180419921874943, -15.355415344238224 ], [ -75.179580688476506, -15.355415344238224 ], [ -75.179580688476506, -15.355695724487305 ], [ -75.178474426269531, -15.355695724487305 ], [ -75.178474426269531, -15.355971336364632 ], [ -75.177635192871094, -15.355971336364632 ], [ -75.177635192871094, -15.355695724487305 ], [ -75.177085876464787, -15.355695724487305 ], [ -75.177085876464787, -15.355415344238224 ], [ -75.176246643066349, -15.355415344238224 ], [ -75.176246643066349, -15.35513973236084 ], [ -75.1754150390625, -15.35513973236084 ], [ -75.1754150390625, -15.354862213134766 ], [ -75.174858093261719, -15.354862213134766 ], [ -75.174858093261719, -15.354582786560059 ], [ -75.172920227050668, -15.354582786560059 ], [ -75.172920227050668, -15.354862213134766 ], [ -75.171806335449219, -15.354862213134766 ], [ -75.171806335449219, -15.35513973236084 ], [ -75.171524047851562, -15.35513973236084 ], [ -75.171524047851562, -15.355415344238224 ], [ -75.171302795410156, -15.355415344238224 ], [ -75.170692443847599, -15.355415344238224 ], [ -75.170692443847599, -15.355695724487305 ], [ -75.170417785644474, -15.355695724487305 ], [ -75.170417785644474, -15.355971336364632 ], [ -75.170135498046818, -15.355971336364632 ], [ -75.170135498046818, -15.355695724487305 ], [ -75.169029235839844, -15.355695724487305 ], [ -75.169029235839844, -15.355415344238224 ], [ -75.168746948242188, -15.355415344238224 ], [ -75.168746948242188, -15.354862213134766 ], [ -75.166526794433537, -15.354862213134766 ], [ -75.166526794433537, -15.35513973236084 ], [ -75.165969848632812, -15.35513973236084 ], [ -75.165969848632812, -15.355415344238224 ], [ -75.165695190429688, -15.355415344238224 ], [ -75.165695190429688, -15.355695724487305 ], [ -75.165412902832031, -15.355695724487305 ], [ -75.165412902832031, -15.355971336364632 ], [ -75.165138244628906, -15.355971336364632 ], [ -75.165138244628906, -15.35624980926508 ], [ -75.164581298828125, -15.35624980926508 ], [ -75.164581298828125, -15.356528282165471 ], [ -75.164306640624943, -15.356528282165471 ], [ -75.164306640624943, -15.356805801391488 ], [ -75.164131164550724, -15.356805801391488 ], [ -75.163749694824162, -15.356805801391488 ], [ -75.163749694824162, -15.357084274291935 ], [ -75.163475036621037, -15.357084274291935 ], [ -75.163475036621037, -15.357361793518066 ], [ -75.163192749023324, -15.357361793518066 ], [ -75.163192749023324, -15.357084274291935 ], [ -75.161529541015625, -15.357084274291935 ], [ -75.161529541015625, -15.356805801391488 ], [ -75.160972595214787, -15.356805801391488 ], [ -75.160972595214787, -15.356528282165471 ], [ -75.160415649414006, -15.356528282165471 ], [ -75.160415649414006, -15.35624980926508 ], [ -75.159751892089787, -15.35624980926508 ], [ -75.159584045410156, -15.35624980926508 ], [ -75.159584045410156, -15.356095314025822 ], [ -75.159584045410156, -15.355971336364632 ], [ -75.159446716308537, -15.355971336364632 ], [ -75.159027099609375, -15.355971336364632 ], [ -75.159027099609375, -15.355695724487305 ], [ -75.158195495605469, -15.355695724487305 ], [ -75.158195495605469, -15.355971336364632 ], [ -75.157638549804631, -15.355971336364632 ], [ -75.157638549804631, -15.355695724487305 ], [ -75.157363891601506, -15.355695724487305 ], [ -75.157363891601506, -15.355415344238224 ], [ -75.156806945800781, -15.355415344238224 ], [ -75.156806945800781, -15.35513973236084 ], [ -75.156524658203125, -15.35513973236084 ], [ -75.156524658203125, -15.354862213134766 ], [ -75.15625, -15.354862213134766 ], [ -75.15625, -15.354582786560059 ], [ -75.155693054199219, -15.354582786560059 ], [ -75.155693054199219, -15.354305267333984 ], [ -75.155418395996094, -15.354305267333984 ], [ -75.155418395996094, -15.354026794433594 ], [ -75.155136108398438, -15.354026794433594 ], [ -75.155136108398438, -15.35374927520752 ], [ -75.154861450195256, -15.35374927520752 ], [ -75.154861450195256, -15.353473663330078 ], [ -75.154304504394474, -15.353470802307129 ], [ -75.154304504394474, -15.35330867767334 ], [ -75.154304504394474, -15.353193283081055 ], [ -75.153747558593693, -15.353193283081055 ], [ -75.153747558593693, -15.352637290954476 ], [ -75.153472900390625, -15.352639198303223 ], [ -75.153472900390625, -15.352083206176758 ], [ -75.1531982421875, -15.352083206176758 ], [ -75.153190612792969, -15.351248741149902 ], [ -75.152915954589844, -15.351248741149902 ], [ -75.152915954589844, -15.350138664245549 ], [ -75.152641296386719, -15.350138664245549 ], [ -75.152641296386719, -15.349303245544434 ], [ -75.152359008789062, -15.349305152893066 ], [ -75.152359008789062, -15.349026679992619 ], [ -75.152084350585938, -15.349026679992619 ], [ -75.152084350585938, -15.348193168640137 ], [ -75.151802062988281, -15.348193168640137 ], [ -75.151802062988281, -15.347083091735783 ], [ -75.151527404785099, -15.347083091735783 ], [ -75.151527404785099, -15.345417022705078 ], [ -75.151252746581974, -15.345417022705078 ], [ -75.151252746581974, -15.343748092651367 ], [ -75.150970458984318, -15.343748092651367 ], [ -75.150970458984318, -15.342638969421387 ], [ -75.151252746581974, -15.342638969421387 ], [ -75.151252746581974, -15.34235954284668 ], [ -75.150970458984318, -15.34235954284668 ], [ -75.150970458984318, -15.340970039367676 ], [ -75.151252746581974, -15.340971946716252 ], [ -75.151252746581974, -15.338749885559025 ], [ -75.151527404785099, -15.338749885559025 ], [ -75.151527404785099, -15.336806297302132 ], [ -75.151802062988281, -15.336806297302132 ], [ -75.151802062988281, -15.335140228271484 ], [ -75.152084350585938, -15.335140228271484 ], [ -75.152084350585938, -15.334272384643498 ], [ -75.152084350585938, -15.334028244018555 ], [ -75.152359008789062, -15.334028244018555 ], [ -75.152359008789062, -15.333554267883301 ], [ -75.152359008789062, -15.332637786865234 ], [ -75.152641296386719, -15.332637786865234 ], [ -75.152641296386719, -15.331527709960938 ], [ -75.152915954589844, -15.331527709960938 ], [ -75.152915954589844, -15.330691337585392 ], [ -75.153190612792969, -15.330694198608398 ], [ -75.1531982421875, -15.329584121704102 ], [ -75.153472900390625, -15.329584121704102 ], [ -75.153472900390625, -15.328748703002873 ], [ -75.153747558593693, -15.328748703002873 ], [ -75.153747558593693, -15.328465461730957 ], [ -75.153747558593693, -15.3281955718993 ], [ -75.154029846191349, -15.3281955718993 ], [ -75.154029846191349, -15.327915191650391 ], [ -75.154304504394474, -15.327915191650391 ], [ -75.154304504394474, -15.327359199523926 ], [ -75.154586791992131, -15.327359199523926 ], [ -75.154586791992131, -15.326803207397461 ], [ -75.154861450195256, -15.326803207397461 ], [ -75.154861450195256, -15.326249122619572 ], [ -75.155136108398438, -15.326249122619572 ], [ -75.155136108398438, -15.325693130493107 ], [ -75.155418395996094, -15.325693130493107 ], [ -75.155418395996094, -15.325137138366642 ], [ -75.155693054199219, -15.325137138366642 ], [ -75.155693054199219, -15.324583053588867 ], [ -75.155975341796875, -15.324583053588867 ], [ -75.155975341796875, -15.324027061462289 ], [ -75.15625, -15.324027061462289 ], [ -75.15625, -15.323471069335881 ], [ -75.156524658203125, -15.323471069335881 ], [ -75.156524658203125, -15.322915077209416 ], [ -75.156806945800781, -15.322916984558105 ], [ -75.156806945800781, -15.322639465332031 ], [ -75.157081604003849, -15.322639465332031 ], [ -75.157081604003849, -15.322360992431641 ], [ -75.157638549804631, -15.322360992431641 ], [ -75.157638549804631, -15.322083473205566 ], [ -75.158195495605469, -15.322083473205566 ], [ -75.158195495605469, -15.321805000305176 ], [ -75.158470153808594, -15.321805000305176 ], [ -75.158470153808594, -15.321249008178711 ], [ -75.15875244140625, -15.321249008178711 ], [ -75.15875244140625, -15.32097339630127 ], [ -75.1593017578125, -15.32097339630127 ], [ -75.1593017578125, -15.320693016052246 ], [ -75.159584045410156, -15.320694923400879 ], [ -75.159584045410156, -15.320417404174805 ], [ -75.159858703613281, -15.320417404174805 ], [ -75.159858703613281, -15.320138931274414 ], [ -75.160140991210824, -15.320138931274414 ], [ -75.160140991210824, -15.31986141204834 ], [ -75.160415649414006, -15.31986141204834 ], [ -75.160415649414006, -15.319582939147949 ], [ -75.160697937011662, -15.319582939147949 ], [ -75.160697937011662, -15.319305419921875 ], [ -75.160972595214787, -15.319305419921875 ], [ -75.160972595214787, -15.318751335143986 ], [ -75.161247253417969, -15.318751335143986 ], [ -75.161247253417969, -15.31847095489502 ], [ -75.161529541015625, -15.318472862243596 ], [ -75.161529541015625, -15.318195343017521 ], [ -75.16180419921875, -15.318195343017521 ], [ -75.16180419921875, -15.317916870117131 ], [ -75.162086486816406, -15.317916870117131 ], [ -75.162086486816406, -15.317360877990666 ], [ -75.162361145019531, -15.317360877990666 ], [ -75.162361145019531, -15.31652641296381 ], [ -75.162635803222656, -15.31652641296381 ], [ -75.162635803222656, -15.315694808959904 ], [ -75.162918090820312, -15.315694808959904 ], [ -75.162918090820312, -15.31513786315918 ], [ -75.163192749023324, -15.31513786315918 ], [ -75.163192749023324, -15.314860343933049 ], [ -75.163475036621037, -15.314860343933049 ], [ -75.163475036621037, -15.314304351806584 ], [ -75.163749694824162, -15.314304351806584 ], [ -75.163749694824162, -15.314028739929199 ], [ -75.164024353027287, -15.314028739929199 ], [ -75.164024353027287, -15.313750267028809 ], [ -75.164306640624943, -15.313750267028809 ], [ -75.164306640624943, -15.313194274902344 ], [ -75.164581298828125, -15.313194274902344 ], [ -75.164581298828125, -15.312915802001953 ], [ -75.164863586425781, -15.312915802001953 ], [ -75.164863586425781, -15.312638282775879 ], [ -75.165138244628906, -15.312638282775879 ], [ -75.165138244628906, -15.3120822906493 ], [ -75.165412902832031, -15.3120822906493 ], [ -75.165412902832031, -15.311805725097599 ], [ -75.165695190429688, -15.311805725097599 ], [ -75.165695190429688, -15.311528205871582 ], [ -75.165969848632812, -15.311528205871582 ], [ -75.165969848632812, -15.310972213745117 ], [ -75.166526794433537, -15.310972213745117 ], [ -75.166526794433537, -15.310693740844727 ], [ -75.167083740234318, -15.310693740844727 ], [ -75.167083740234318, -15.310414314269963 ], [ -75.167640686035099, -15.310416221618652 ], [ -75.167640686035099, -15.310137748718262 ], [ -75.169303894042969, -15.310137748718262 ], [ -75.169303894042969, -15.309860229492188 ], [ -75.169586181640625, -15.309862136840763 ], [ -75.169586181640625, -15.309583663940373 ], [ -75.169860839843693, -15.309583663940373 ], [ -75.169860839843693, -15.309304237365723 ], [ -75.170135498046818, -15.309306144714299 ], [ -75.170135498046818, -15.309027671813908 ], [ -75.170417785644474, -15.309027671813908 ], [ -75.170417785644474, -15.308748245239258 ], [ -75.170692443847599, -15.308750152587891 ], [ -75.170692443847599, -15.308471679687443 ], [ -75.170974731445312, -15.308471679687443 ], [ -75.170974731445312, -15.308194160461426 ], [ -75.171249389648438, -15.308194160461426 ], [ -75.171249389648438, -15.307915687561035 ], [ -75.171524047851562, -15.307915687561035 ], [ -75.171524047851562, -15.307638168334961 ], [ -75.173469543456974, -15.307640075683537 ], [ -75.173469543456974, -15.30735969543457 ], [ -75.173751831054631, -15.30735969543457 ], [ -75.173751831054631, -15.307082176208496 ], [ -75.174026489257812, -15.307084083557072 ], [ -75.174026489257812, -15.306805610656681 ], [ -75.174308776855469, -15.306805610656681 ], [ -75.174308776855469, -15.306528091430607 ], [ -75.175697326660156, -15.306528091430607 ], [ -75.175697326660156, -15.306805610656681 ], [ -75.176246643066349, -15.306805610656681 ], [ -75.176246643066349, -15.306528091430607 ], [ -75.176528930664006, -15.306528091430607 ], [ -75.176528930664006, -15.306249618530217 ], [ -75.176803588867131, -15.306249618530217 ], [ -75.176803588867131, -15.305693626403752 ], [ -75.177085876464787, -15.305693626403752 ], [ -75.177085876464787, -15.305416107177678 ], [ -75.177360534667969, -15.305418014526367 ], [ -75.177360534667969, -15.305137634277287 ], [ -75.180694580078125, -15.305137634277287 ], [ -75.180694580078125, -15.30486011505127 ], [ -75.181526184082031, -15.304862022399902 ], [ -75.181526184082031, -15.304583549499512 ], [ -75.181808471679688, -15.304583549499512 ], [ -75.181808471679688, -15.304027557373047 ], [ -75.182083129882812, -15.304027557373047 ], [ -75.182083129882812, -15.303194046020451 ], [ -75.182357788085881, -15.303194046020451 ], [ -75.182357788085881, -15.302362442016602 ], [ -75.182640075683537, -15.302362442016602 ], [ -75.182640075683537, -15.301806449890023 ], [ -75.182914733886662, -15.301806449890023 ], [ -75.182914733886662, -15.300971031188965 ], [ -75.183197021484318, -15.300971031188965 ], [ -75.183197021484318, -15.300139427185059 ], [ -75.183471679687443, -15.300139427185059 ], [ -75.183471679687443, -15.299583435058594 ], [ -75.183746337890625, -15.299583435058594 ], [ -75.183746337890625, -15.299304962158203 ], [ -75.184028625488281, -15.299304962158203 ], [ -75.184028625488281, -15.299027442932129 ], [ -75.184303283691406, -15.299027442932129 ], [ -75.184303283691406, -15.298748970031738 ], [ -75.184585571289062, -15.298748970031738 ], [ -75.184585571289062, -15.29847335815424 ], [ -75.185142517089844, -15.29847335815424 ], [ -75.185142517089844, -15.298748970031738 ], [ -75.185691833496037, -15.298748970031738 ], [ -75.185691833496037, -15.299027442932129 ], [ -75.186248779296818, -15.299027442932129 ], [ -75.186248779296818, -15.299304962158203 ], [ -75.186805725097656, -15.299304962158203 ], [ -75.186805725097656, -15.299583435058594 ], [ -75.187362670898438, -15.299583435058594 ], [ -75.187362670898438, -15.299304962158203 ], [ -75.188194274902344, -15.299304962158203 ], [ -75.188194274902344, -15.299583435058594 ], [ -75.188468933105469, -15.299583435058594 ], [ -75.188468933105469, -15.299860954284611 ], [ -75.189025878906193, -15.299860954284611 ], [ -75.189025878906193, -15.299583435058594 ], [ -75.189857482910156, -15.299583435058594 ], [ -75.189857482910156, -15.299304962158203 ], [ -75.190139770507812, -15.299304962158203 ], [ -75.190139770507812, -15.298748970031738 ], [ -75.190414428710938, -15.298748970031738 ], [ -75.190414428710938, -15.298194885253849 ], [ -75.190696716308594, -15.298194885253849 ], [ -75.190696716308594, -15.297638893127385 ], [ -75.190971374511719, -15.297638893127385 ], [ -75.190971374511719, -15.29736137390131 ], [ -75.191253662109375, -15.29736137390131 ], [ -75.191253662109375, -15.296805381774902 ], [ -75.1915283203125, -15.296805381774902 ], [ -75.1915283203125, -15.296526908874455 ], [ -75.192085266113224, -15.296526908874455 ], [ -75.192085266113224, -15.296251296996957 ], [ -75.192359924316349, -15.296251296996957 ], [ -75.192359924316349, -15.295970916748047 ], [ -75.192642211914006, -15.295970916748047 ], [ -75.192642211914006, -15.295695304870549 ], [ -75.192916870117131, -15.295695304870549 ], [ -75.192916870117131, -15.295416831970101 ], [ -75.193473815917969, -15.295416831970101 ], [ -75.193473815917969, -15.295139312744084 ], [ -75.193748474121094, -15.295139312744084 ], [ -75.193748474121094, -15.294860839843693 ], [ -75.19403076171875, -15.294860839843693 ], [ -75.19403076171875, -15.294583320617619 ], [ -75.194305419921875, -15.294583320617619 ], [ -75.194305419921875, -15.294304847717228 ], [ -75.194580078125, -15.294304847717228 ], [ -75.194580078125, -15.294027328491154 ], [ -75.195137023925724, -15.294027328491154 ], [ -75.195137023925724, -15.293748855590763 ], [ -75.195419311523381, -15.293748855590763 ], [ -75.195419311523381, -15.293471336364689 ], [ -75.195693969726506, -15.293473243713379 ], [ -75.195693969726506, -15.293194770812988 ], [ -75.196250915527287, -15.293194770812988 ], [ -75.196250915527287, -15.292917251586914 ], [ -75.196807861328125, -15.292917251586914 ], [ -75.196807861328125, -15.292638778686523 ], [ -75.19708251953125, -15.292638778686523 ], [ -75.19708251953125, -15.292917251586914 ], [ -75.201530456542855, -15.292917251586914 ], [ -75.201530456542855, -15.293194770812988 ], [ -75.202079772949162, -15.293194770812988 ], [ -75.202079772949162, -15.293473243713379 ], [ -75.202362060546818, -15.293471336364689 ], [ -75.202362060546818, -15.293748855590763 ], [ -75.20263671875, -15.293748855590763 ], [ -75.20263671875, -15.294027328491154 ], [ -75.202919006347656, -15.294027328491154 ], [ -75.202919006347656, -15.294304847717228 ], [ -75.203750610351562, -15.294304847717228 ], [ -75.203750610351562, -15.294583320617619 ], [ -75.204582214355355, -15.294583320617619 ], [ -75.204582214355355, -15.294304847717228 ], [ -75.205139160156193, -15.294304847717228 ], [ -75.205139160156193, -15.294027328491154 ], [ -75.205413818359318, -15.294027328491154 ], [ -75.205413818359318, -15.293748855590763 ], [ -75.205696105956974, -15.293748855590763 ], [ -75.205696105956974, -15.293194770812988 ], [ -75.206253051757812, -15.293194770812988 ], [ -75.206253051757812, -15.293473243713379 ], [ -75.206802368164062, -15.293471336364689 ], [ -75.206802368164062, -15.293748855590763 ], [ -75.207916259765568, -15.293748855590763 ], [ -75.207916259765568, -15.293471336364689 ], [ -75.209304809570312, -15.293471336364689 ], [ -75.209304809570312, -15.293748855590763 ], [ -75.209861755371094, -15.293748855590763 ], [ -75.209861755371094, -15.294027328491154 ], [ -75.210418701171875, -15.294027328491154 ], [ -75.210418701171875, -15.294304847717228 ], [ -75.210975646972656, -15.294304847717228 ], [ -75.210975646972656, -15.294583320617619 ], [ -75.211524963378849, -15.294583320617619 ], [ -75.211524963378849, -15.294860839843693 ], [ -75.212081909179631, -15.294860839843693 ], [ -75.212081909179631, -15.295139312744084 ], [ -75.212638854980469, -15.295139312744084 ], [ -75.212638854980469, -15.295416831970101 ], [ -75.21319580078125, -15.295416831970101 ], [ -75.21319580078125, -15.295139312744084 ], [ -75.213752746582031, -15.295139312744084 ], [ -75.213752746582031, -15.294860839843693 ], [ -75.214302062988224, -15.294860839843693 ], [ -75.214302062988224, -15.294583320617619 ], [ -75.214859008789006, -15.294583320617619 ], [ -75.214859008789006, -15.294304847717228 ], [ -75.215415954589844, -15.294304847717228 ], [ -75.215415954589844, -15.294027328491154 ], [ -75.215972900390625, -15.294027328491154 ], [ -75.215972900390625, -15.294304847717228 ], [ -75.21624755859375, -15.294304847717228 ], [ -75.21624755859375, -15.294583320617619 ], [ -75.216529846191406, -15.294583320617619 ], [ -75.216529846191406, -15.294860839843693 ], [ -75.216804504394531, -15.294860839843693 ], [ -75.216804504394531, -15.294583320617619 ], [ -75.217086791992188, -15.294583320617619 ], [ -75.217086791992188, -15.294027328491154 ], [ -75.217361450195199, -15.294027328491154 ], [ -75.217361450195199, -15.292638778686523 ], [ -75.217086791992188, -15.292638778686523 ], [ -75.217086791992188, -15.29152679443348 ], [ -75.216804504394531, -15.29152679443348 ], [ -75.216804504394531, -15.290416717529297 ], [ -75.216529846191406, -15.290416717529297 ], [ -75.216529846191406, -15.289580345153752 ], [ -75.216804504394531, -15.289583206176758 ], [ -75.216804504394531, -15.289306640624943 ], [ -75.217086791992188, -15.289306640624943 ], [ -75.217086791992188, -15.289029121398926 ], [ -75.216804504394531, -15.289029121398926 ], [ -75.216804504394531, -15.288473129272461 ], [ -75.216529846191406, -15.288473129272461 ], [ -75.216529846191406, -15.287914276123047 ], [ -75.216804504394531, -15.287916183471623 ], [ -75.216804504394531, -15.287637710571232 ], [ -75.217086791992188, -15.287637710571232 ], [ -75.217086791992188, -15.287358283996468 ], [ -75.21875, -15.287360191345215 ], [ -75.21875, -15.287084579467717 ], [ -75.219024658203125, -15.287084579467717 ], [ -75.219024658203125, -15.28680419921875 ], [ -75.219306945800781, -15.28680419921875 ], [ -75.219306945800781, -15.28569221496582 ], [ -75.220970153808537, -15.28569221496582 ], [ -75.220970153808537, -15.286248207092285 ], [ -75.221252441406193, -15.286248207092285 ], [ -75.221252441406193, -15.286527633666992 ], [ -75.221527099609318, -15.286527633666992 ], [ -75.221527099609318, -15.28680419921875 ], [ -75.222084045410156, -15.28680419921875 ], [ -75.222084045410156, -15.287084579467717 ], [ -75.223197937011719, -15.287084579467717 ], [ -75.223197937011719, -15.287360191345215 ], [ -75.223472595214844, -15.287358283996468 ], [ -75.223472595214844, -15.287637710571232 ], [ -75.223747253417912, -15.287637710571232 ], [ -75.223747253417912, -15.287916183471623 ], [ -75.224304199218693, -15.287914276123047 ], [ -75.224304199218693, -15.28819465637207 ], [ -75.224586486816349, -15.28819465637207 ], [ -75.224586486816349, -15.288473129272461 ], [ -75.224861145019474, -15.288473129272461 ], [ -75.224861145019474, -15.288750648498478 ], [ -75.225418090820312, -15.288750648498478 ], [ -75.225418090820312, -15.289029121398926 ], [ -75.225975036621094, -15.289029121398926 ], [ -75.225975036621094, -15.288750648498478 ], [ -75.226249694824219, -15.288750648498478 ], [ -75.226249694824219, -15.288473129272461 ], [ -75.226524353027344, -15.288473129272461 ], [ -75.226524353027344, -15.28819465637207 ], [ -75.226806640625, -15.28819465637207 ], [ -75.226806640625, -15.287914276123047 ], [ -75.227081298828068, -15.287916183471623 ], [ -75.227081298828068, -15.287637710571232 ], [ -75.227638244628849, -15.287637710571232 ], [ -75.227638244628849, -15.287916183471623 ], [ -75.228752136230469, -15.287916183471623 ], [ -75.228752136230469, -15.287637710571232 ], [ -75.229026794433594, -15.287637710571232 ], [ -75.229026794433594, -15.287358283996468 ], [ -75.229583740234375, -15.287358283996468 ], [ -75.229583740234375, -15.287914276123047 ], [ -75.2298583984375, -15.287914276123047 ], [ -75.2298583984375, -15.28819465637207 ], [ -75.230140686035043, -15.28819465637207 ], [ -75.230140686035043, -15.288473129272461 ], [ -75.230415344238224, -15.288473129272461 ], [ -75.230415344238224, -15.28819465637207 ], [ -75.230697631835881, -15.28819465637207 ], [ -75.230697631835881, -15.287914276123047 ], [ -75.230972290039006, -15.287916183471623 ], [ -75.230972290039006, -15.287637710571232 ], [ -75.231246948242188, -15.287637710571232 ], [ -75.231246948242188, -15.287358283996468 ], [ -75.231529235839844, -15.287360191345215 ], [ -75.231529235839844, -15.287084579467717 ], [ -75.231803894042969, -15.287084579467717 ], [ -75.231803894042969, -15.285971641540414 ], [ -75.231529235839844, -15.285971641540414 ], [ -75.231529235839844, -15.28569221496582 ], [ -75.231246948242188, -15.285694122314396 ], [ -75.231246948242188, -15.285415649414006 ], [ -75.231529235839844, -15.285415649414006 ], [ -75.231529235839844, -15.28486156463623 ], [ -75.231803894042969, -15.284859657287541 ], [ -75.231803894042969, -15.284305572509766 ], [ -75.231529235839844, -15.284305572509766 ], [ -75.231529235839844, -15.284026145935059 ], [ -75.230972290039006, -15.284028053283691 ], [ -75.230972290039006, -15.282637596130257 ], [ -75.231246948242188, -15.282637596130257 ], [ -75.231246948242188, -15.28125 ], [ -75.231529235839844, -15.28125 ], [ -75.231529235839844, -15.280971527099609 ], [ -75.232086181640625, -15.280971527099609 ], [ -75.232086181640625, -15.280694007873535 ], [ -75.23236083984375, -15.280694007873535 ], [ -75.23236083984375, -15.280415534973145 ], [ -75.232635498046875, -15.280415534973145 ], [ -75.232635498046875, -15.28013801574707 ], [ -75.23236083984375, -15.28013801574707 ], [ -75.23236083984375, -15.279582023620492 ], [ -75.232086181640625, -15.279583930969238 ], [ -75.232086181640625, -15.278750419616699 ], [ -75.231803894042969, -15.278750419616699 ], [ -75.231803894042969, -15.278471946716309 ], [ -75.232086181640625, -15.278471946716309 ], [ -75.232086181640625, -15.278194427490234 ], [ -75.23236083984375, -15.278194427490234 ], [ -75.23236083984375, -15.277915954589844 ], [ -75.232635498046875, -15.27791786193842 ], [ -75.232635498046875, -15.27763843536377 ], [ -75.232917785644531, -15.27763843536377 ], [ -75.232917785644531, -15.277359962463379 ], [ -75.233192443847543, -15.277361869811955 ], [ -75.233192443847543, -15.27680587768549 ], [ -75.233474731445256, -15.27680587768549 ], [ -75.233474731445256, -15.276528358459473 ], [ -75.233749389648381, -15.276528358459473 ], [ -75.233749389648381, -15.276249885559082 ], [ -75.234024047851506, -15.276249885559082 ], [ -75.234024047851506, -15.275972366333008 ], [ -75.234306335449162, -15.275972366333008 ], [ -75.234306335449162, -15.275695800781136 ], [ -75.23486328125, -15.275695800781136 ], [ -75.23486328125, -15.276249885559082 ], [ -75.235137939453125, -15.276249885559082 ], [ -75.235137939453125, -15.276528358459473 ], [ -75.235420227050781, -15.276528358459473 ], [ -75.235420227050781, -15.27680587768549 ], [ -75.235694885253906, -15.27680587768549 ], [ -75.235694885253906, -15.277084350585938 ], [ -75.235969543457031, -15.277084350585938 ], [ -75.235969543457031, -15.27680587768549 ], [ -75.236526489257756, -15.27680587768549 ], [ -75.236526489257756, -15.276528358459473 ], [ -75.237083435058537, -15.276528358459473 ], [ -75.237083435058537, -15.276249885559082 ], [ -75.237640380859318, -15.276249885559082 ], [ -75.237640380859318, -15.276528358459473 ], [ -75.237358093261662, -15.276528358459473 ], [ -75.237358093261662, -15.277084350585938 ], [ -75.237083435058537, -15.277084350585938 ], [ -75.237083435058537, -15.27763843536377 ], [ -75.237358093261662, -15.27763843536377 ], [ -75.237358093261662, -15.278194427490234 ], [ -75.237640380859318, -15.278194427490234 ], [ -75.237640380859318, -15.278750419616699 ], [ -75.2379150390625, -15.278750419616699 ], [ -75.2379150390625, -15.279027938842773 ], [ -75.238197326660156, -15.279027938842773 ], [ -75.238197326660156, -15.278750419616699 ], [ -75.238471984863281, -15.278750419616699 ], [ -75.238471984863281, -15.278471946716309 ], [ -75.238746643066406, -15.278471946716309 ], [ -75.238746643066406, -15.278194427490234 ], [ -75.239028930664062, -15.278194427490234 ], [ -75.239028930664062, -15.277915954589844 ], [ -75.239303588867188, -15.27791786193842 ], [ -75.239303588867188, -15.27763843536377 ], [ -75.239585876464844, -15.27763843536377 ], [ -75.239585876464844, -15.276249885559082 ], [ -75.240135192871037, -15.276249885559082 ], [ -75.240135192871037, -15.27680587768549 ], [ -75.240692138671818, -15.27680587768549 ], [ -75.240692138671818, -15.277084350585938 ], [ -75.240974426269531, -15.277084350585938 ], [ -75.240974426269531, -15.27763843536377 ], [ -75.241531372070312, -15.27763843536377 ], [ -75.241531372070312, -15.277359962463379 ], [ -75.241806030273438, -15.277361869811955 ], [ -75.241806030273438, -15.27680587768549 ], [ -75.242080688476562, -15.27680587768549 ], [ -75.242080688476562, -15.274026870727425 ], [ -75.241806030273438, -15.274026870727425 ], [ -75.241806030273438, -15.273749351501408 ], [ -75.242080688476562, -15.273749351501408 ], [ -75.242080688476562, -15.273470878601017 ], [ -75.242362976074219, -15.273470878601017 ], [ -75.242362976074219, -15.272917747497559 ], [ -75.242637634277344, -15.272917747497559 ], [ -75.242637634277344, -15.272360801696777 ], [ -75.242919921874886, -15.272360801696777 ], [ -75.242919921874886, -15.271804809570312 ], [ -75.243194580078068, -15.271804809570312 ], [ -75.243194580078068, -15.271527290344125 ], [ -75.242919921874886, -15.271527290344125 ], [ -75.242919921874886, -15.271248817443848 ], [ -75.242637634277344, -15.271248817443848 ], [ -75.242637634277344, -15.270971298217717 ], [ -75.242362976074219, -15.270971298217717 ], [ -75.242362976074219, -15.270694732666016 ], [ -75.242080688476562, -15.270694732666016 ], [ -75.242080688476562, -15.270415306091252 ], [ -75.242362976074219, -15.270415306091252 ], [ -75.242362976074219, -15.269859313964787 ], [ -75.242637634277344, -15.269861221313477 ], [ -75.242637634277344, -15.269582748413086 ], [ -75.242919921874886, -15.269582748413086 ], [ -75.242919921874886, -15.269026756286621 ], [ -75.243194580078068, -15.269026756286621 ], [ -75.243194580078068, -15.268749237060547 ], [ -75.243469238281193, -15.268749237060547 ], [ -75.243469238281193, -15.268193244934082 ], [ -75.243751525878849, -15.268195152282715 ], [ -75.243751525878849, -15.267916679382267 ], [ -75.244026184082031, -15.267916679382267 ], [ -75.244026184082031, -15.267360687255859 ], [ -75.244583129882812, -15.267360687255859 ], [ -75.244583129882812, -15.267083168029785 ], [ -75.244857788085938, -15.267083168029785 ], [ -75.244857788085938, -15.266804695129395 ], [ -75.245140075683594, -15.266804695129395 ], [ -75.245140075683594, -15.26652717590332 ], [ -75.245697021484375, -15.266529083251896 ], [ -75.245697021484375, -15.26624870300293 ], [ -75.245971679687386, -15.26624870300293 ], [ -75.245971679687386, -15.266529083251896 ], [ -75.246246337890568, -15.26652717590332 ], [ -75.246246337890568, -15.266804695129395 ], [ -75.246803283691349, -15.266804695129395 ], [ -75.246803283691349, -15.267083168029785 ], [ -75.247085571289006, -15.267083168029785 ], [ -75.247085571289006, -15.266804695129395 ], [ -75.247642517089844, -15.266804695129395 ], [ -75.247642517089844, -15.26652717590332 ], [ -75.247917175292969, -15.26652717590332 ], [ -75.247917175292969, -15.265971183776855 ], [ -75.248191833496094, -15.265971183776855 ], [ -75.248191833496094, -15.265417098998967 ], [ -75.24847412109375, -15.265417098998967 ], [ -75.24847412109375, -15.264861106872502 ], [ -75.248748779296875, -15.264861106872502 ], [ -75.248748779296875, -15.264305114746094 ], [ -75.249031066894531, -15.264305114746094 ], [ -75.249031066894531, -15.263749122619629 ], [ -75.249305725097599, -15.263751029968148 ], [ -75.249305725097599, -15.263472557067871 ], [ -75.249862670898381, -15.263472557067871 ], [ -75.249862670898381, -15.263192176818791 ], [ -75.250137329101506, -15.26319503784174 ], [ -75.250137329101506, -15.262916564941293 ], [ -75.250694274902344, -15.262916564941293 ], [ -75.250694274902344, -15.262639045715275 ], [ -75.251251220703125, -15.262639045715275 ], [ -75.251251220703125, -15.262360572814885 ], [ -75.251808166503906, -15.262360572814885 ], [ -75.251808166503906, -15.262082099914437 ], [ -75.252357482910099, -15.262082099914437 ], [ -75.252357482910099, -15.26180362701416 ], [ -75.252914428710881, -15.26180362701416 ], [ -75.252914428710881, -15.261526107788029 ], [ -75.253471374511662, -15.261528968811035 ], [ -75.253471374511662, -15.261251449584847 ], [ -75.2540283203125, -15.261251449584847 ], [ -75.2540283203125, -15.260970115661564 ], [ -75.254585266113281, -15.26097297668457 ], [ -75.254585266113281, -15.260693550109863 ], [ -75.255142211914062, -15.260693550109863 ], [ -75.255142211914062, -15.260416030883789 ], [ -75.255691528320256, -15.260416030883789 ], [ -75.255691528320256, -15.260137557983398 ], [ -75.256248474121037, -15.260137557983398 ], [ -75.256248474121037, -15.259860038757324 ], [ -75.256530761718693, -15.259860038757324 ], [ -75.256530761718693, -15.259304046630859 ], [ -75.256805419921875, -15.259304046630859 ], [ -75.256805419921875, -15.258748054504281 ], [ -75.257080078125, -15.258749961853027 ], [ -75.257080078125, -15.258472442626953 ], [ -75.257637023925781, -15.258472442626953 ], [ -75.257637023925781, -15.258192062377873 ], [ -75.257919311523438, -15.258193969726562 ], [ -75.257919311523438, -15.257916450500488 ], [ -75.258468627929688, -15.257916450500488 ], [ -75.258468627929688, -15.257637977600098 ], [ -75.259025573730412, -15.257637977600098 ], [ -75.259025573730412, -15.257362365722599 ], [ -75.259307861328068, -15.257362365722599 ], [ -75.259307861328068, -15.257081985473633 ], [ -75.259864807128849, -15.257081985473633 ], [ -75.259864807128849, -15.256806373596135 ], [ -75.260139465332031, -15.256806373596135 ], [ -75.260139465332031, -15.256525993347168 ], [ -75.260696411132812, -15.256527900695744 ], [ -75.260696411132812, -15.256250381469727 ], [ -75.260971069335938, -15.256250381469727 ], [ -75.260971069335938, -15.255970001220703 ], [ -75.261528015136719, -15.255971908569279 ], [ -75.261528015136719, -15.255694389343262 ], [ -75.26180267333973, -15.255694389343262 ], [ -75.26180267333973, -15.255415916442871 ], [ -75.262359619140568, -15.255415916442871 ], [ -75.262359619140568, -15.255140304565373 ], [ -75.262641906738224, -15.255138397216797 ], [ -75.262641906738224, -15.254859924316406 ], [ -75.263191223144531, -15.254859924316406 ], [ -75.263191223144531, -15.254584312438908 ], [ -75.263473510742188, -15.254584312438908 ], [ -75.263473510742188, -15.254305839538517 ], [ -75.264030456542969, -15.254305839538517 ], [ -75.264030456542969, -15.254028320312443 ], [ -75.264305114746094, -15.254028320312443 ], [ -75.264305114746094, -15.253749847412053 ], [ -75.264579772949219, -15.253749847412053 ], [ -75.264579772949219, -15.253472328185978 ], [ -75.264862060546875, -15.253472328185978 ], [ -75.264862060546875, -15.252916336059513 ], [ -75.265136718749943, -15.252916336059513 ], [ -75.265136718749943, -15.252362251281738 ], [ -75.265419006347599, -15.252362251281738 ], [ -75.265419006347599, -15.252083778381348 ], [ -75.265136718749943, -15.252083778381348 ], [ -75.265136718749943, -15.251527786254883 ], [ -75.264862060546875, -15.251527786254883 ], [ -75.264862060546875, -15.250971794128304 ], [ -75.264579772949219, -15.250971794128304 ], [ -75.264579772949219, -15.250694274902287 ], [ -75.264305114746094, -15.250694274902287 ], [ -75.264305114746094, -15.250138282775822 ], [ -75.264030456542969, -15.250140190124512 ], [ -75.264030456542969, -15.249861717224121 ], [ -75.263748168945312, -15.249861717224121 ], [ -75.263748168945312, -15.249305725097656 ], [ -75.263473510742188, -15.249305725097656 ], [ -75.263473510742188, -15.248749732971191 ], [ -75.263191223144531, -15.248749732971191 ], [ -75.263191223144531, -15.248471260070801 ], [ -75.262916564941349, -15.248471260070801 ], [ -75.262916564941349, -15.248195648193303 ], [ -75.262084960937443, -15.248195648193303 ], [ -75.262084960937443, -15.248471260070801 ], [ -75.260971069335938, -15.248471260070801 ], [ -75.260971069335938, -15.248749732971191 ], [ -75.259582519531193, -15.248749732971191 ], [ -75.259582519531193, -15.249028205871582 ], [ -75.25875091552723, -15.249025344848576 ], [ -75.25875091552723, -15.249305725097656 ], [ -75.258468627929688, -15.249305725097656 ], [ -75.258468627929688, -15.249584197998047 ], [ -75.257919311523438, -15.249581336975041 ], [ -75.257919311523438, -15.249861717224121 ], [ -75.257637023925781, -15.249861717224121 ], [ -75.257637023925781, -15.250140190124512 ], [ -75.257362365722656, -15.250138282775822 ], [ -75.257362365722656, -15.250417709350586 ], [ -75.256805419921875, -15.250417709350586 ], [ -75.256805419921875, -15.250694274902287 ], [ -75.256530761718693, -15.250694274902287 ], [ -75.256530761718693, -15.250971794128304 ], [ -75.256248474121037, -15.250971794128304 ], [ -75.256248474121037, -15.251250267028752 ], [ -75.255691528320256, -15.251250267028752 ], [ -75.255691528320256, -15.251527786254883 ], [ -75.255416870117188, -15.251527786254883 ], [ -75.255416870117188, -15.251644134521428 ], [ -75.255416870117188, -15.25180625915516 ], [ -75.255142211914062, -15.25180625915516 ], [ -75.255142211914062, -15.252083778381348 ], [ -75.254585266113281, -15.252083778381348 ], [ -75.254585266113281, -15.252362251281738 ], [ -75.2540283203125, -15.252362251281738 ], [ -75.2540283203125, -15.252637863159123 ], [ -75.253433227539062, -15.252637863159123 ], [ -75.253196716308537, -15.252637863159123 ], [ -75.253196716308537, -15.252758979797363 ], [ -75.253196716308537, -15.252916336059513 ], [ -75.252883911132812, -15.252916336059513 ], [ -75.252082824707031, -15.252916336059513 ], [ -75.252082824707031, -15.253193855285588 ], [ -75.251251220703125, -15.253193855285588 ], [ -75.251251220703125, -15.253472328185978 ], [ -75.250419616699162, -15.253472328185978 ], [ -75.250419616699162, -15.253749847412053 ], [ -75.249572753906193, -15.253749847412053 ], [ -75.249305725097599, -15.253749847412053 ], [ -75.249305725097599, -15.254028320312443 ], [ -75.24847412109375, -15.254028320312443 ], [ -75.24847412109375, -15.254305839538517 ], [ -75.247642517089844, -15.254305839538517 ], [ -75.247642517089844, -15.254584312438908 ], [ -75.246803283691349, -15.254584312438908 ], [ -75.246803283691349, -15.254859924316406 ], [ -75.245697021484375, -15.254859924316406 ], [ -75.245697021484375, -15.255140304565373 ], [ -75.244857788085938, -15.255140304565373 ], [ -75.244857788085938, -15.255415916442871 ], [ -75.244026184082031, -15.255415916442871 ], [ -75.244026184082031, -15.255694389343262 ], [ -75.242919921874886, -15.255694389343262 ], [ -75.242919921874886, -15.255971908569279 ], [ -75.242080688476562, -15.255970001220703 ], [ -75.242080688476562, -15.256250381469727 ], [ -75.240974426269531, -15.256250381469727 ], [ -75.240974426269531, -15.256527900695744 ], [ -75.239303588867188, -15.256525993347168 ], [ -75.239303588867188, -15.256806373596135 ], [ -75.2379150390625, -15.256806373596135 ], [ -75.2379150390625, -15.256967544555664 ], [ -75.2379150390625, -15.257081985473633 ], [ -75.236251831054688, -15.257081985473633 ], [ -75.236251831054688, -15.257362365722599 ], [ -75.235435485839844, -15.257362365722599 ], [ -75.23486328125, -15.257362365722599 ], [ -75.23486328125, -15.257637977600098 ], [ -75.231803894042969, -15.257637977600098 ], [ -75.231803894042969, -15.257754325866699 ], [ -75.231803894042969, -15.257916450500488 ], [ -75.2313232421875, -15.257916450500488 ], [ -75.22930908203125, -15.257916450500488 ], [ -75.22930908203125, -15.258193969726562 ], [ -75.226524353027344, -15.258193969726562 ], [ -75.226524353027344, -15.258472442626953 ], [ -75.225135803222656, -15.258472442626953 ], [ -75.225135803222656, -15.258193969726562 ], [ -75.224586486816349, -15.258193969726562 ], [ -75.224586486816349, -15.257916450500488 ], [ -75.224304199218693, -15.257916450500488 ], [ -75.224304199218693, -15.257637977600098 ], [ -75.224029541015568, -15.257637977600098 ], [ -75.224029541015568, -15.257362365722599 ], [ -75.223487854003906, -15.257362365722599 ], [ -75.223472595214844, -15.257081985473633 ], [ -75.223197937011719, -15.257081985473633 ], [ -75.223197937011719, -15.256806373596135 ], [ -75.222816467285156, -15.256806373596135 ], [ -75.222640991210938, -15.256806373596135 ], [ -75.222640991210938, -15.256657600402832 ], [ -75.222640991210938, -15.256250381469727 ], [ -75.222358703613281, -15.256250381469727 ], [ -75.222358703613281, -15.255694389343262 ], [ -75.222084045410156, -15.255694389343262 ], [ -75.222084045410156, -15.255140304565373 ], [ -75.2218017578125, -15.255140304565373 ], [ -75.2218017578125, -15.25468730926508 ], [ -75.2218017578125, -15.254584312438908 ], [ -75.221527099609318, -15.254584312438908 ], [ -75.221527099609318, -15.254305839538517 ], [ -75.221252441406193, -15.254305839538517 ], [ -75.221252441406193, -15.253749847412053 ], [ -75.220970153808537, -15.253749847412053 ], [ -75.220970153808537, -15.253193855285588 ], [ -75.220695495605412, -15.253193855285588 ], [ -75.220695495605412, -15.252637863159123 ], [ -75.220413208007699, -15.252637863159123 ], [ -75.220413208007699, -15.252083778381348 ], [ -75.220138549804688, -15.252083778381348 ], [ -75.220138549804688, -15.251527786254883 ], [ -75.219863891601562, -15.251527786254883 ], [ -75.219863891601562, -15.251081466674805 ], [ -75.219863891601562, -15.250971794128304 ], [ -75.219757080078125, -15.250971794128304 ], [ -75.219581604003906, -15.250971794128304 ], [ -75.219581604003906, -15.25078010559082 ], [ -75.219581604003906, -15.250417709350586 ], [ -75.219306945800781, -15.250417709350586 ], [ -75.219306945800781, -15.249861717224121 ], [ -75.219024658203125, -15.249861717224121 ], [ -75.219024658203125, -15.249305725097656 ], [ -75.21875, -15.249305725097656 ], [ -75.21875, -15.248749732971191 ], [ -75.218475341796818, -15.248749732971191 ], [ -75.218475341796818, -15.248195648193303 ], [ -75.218193054199162, -15.248195648193303 ], [ -75.218193054199162, -15.247639656066895 ], [ -75.217918395996037, -15.247639656066895 ], [ -75.217918395996037, -15.247082710266056 ], [ -75.218193054199162, -15.247082710266056 ], [ -75.218193054199162, -15.246249198913574 ], [ -75.217918395996037, -15.246249198913574 ], [ -75.217918395996037, -15.245416641235238 ], [ -75.217636108398381, -15.245416641235238 ], [ -75.217636108398381, -15.245137214660645 ], [ -75.217361450195199, -15.245137214660645 ], [ -75.217361450195199, -15.244027137756291 ], [ -75.217086791992188, -15.244027137756291 ], [ -75.217086791992188, -15.243194580078125 ], [ -75.216804504394531, -15.243194580078125 ], [ -75.216804504394531, -15.236804962158203 ], [ -75.217086791992188, -15.236806869506779 ], [ -75.217086791992188, -15.235694885253906 ], [ -75.217361450195199, -15.235694885253906 ], [ -75.217361450195199, -15.233751296997013 ], [ -75.217636108398381, -15.233751296997013 ], [ -75.217636108398381, -15.232359886169377 ], [ -75.217918395996037, -15.232359886169377 ], [ -75.217918395996037, -15.230693817138672 ], [ -75.218193054199162, -15.230693817138672 ], [ -75.218193054199162, -15.229862213134766 ], [ -75.218475341796818, -15.229862213134766 ], [ -75.218475341796818, -15.229583740234375 ], [ -75.21875, -15.229583740234375 ], [ -75.21875, -15.228750228881836 ], [ -75.219024658203125, -15.228750228881836 ], [ -75.219024658203125, -15.22791576385498 ], [ -75.219306945800781, -15.22791576385498 ], [ -75.219306945800781, -15.227084159851074 ], [ -75.219581604003906, -15.227084159851074 ], [ -75.219581604003906, -15.225972175598145 ], [ -75.219863891601562, -15.225972175598145 ], [ -75.219863891601562, -15.225254058837891 ], [ -75.219863891601562, -15.225137710571289 ], [ -75.220138549804688, -15.225137710571289 ], [ -75.220138549804688, -15.224794387817326 ], [ -75.220138549804688, -15.22430419921875 ], [ -75.220413208007699, -15.224306106567326 ], [ -75.220413208007699, -15.223471641540471 ], [ -75.220695495605412, -15.223471641540471 ], [ -75.220695495605412, -15.222915649414062 ], [ -75.220970153808537, -15.222915649414062 ], [ -75.220970153808537, -15.222081184387207 ], [ -75.221252441406193, -15.222084045410099 ], [ -75.221252441406193, -15.221248626708984 ], [ -75.221527099609318, -15.221248626708984 ], [ -75.221527099609318, -15.220415115356388 ], [ -75.2218017578125, -15.220415115356388 ], [ -75.2218017578125, -15.219859123229924 ], [ -75.222084045410156, -15.219861984252816 ], [ -75.222084045410156, -15.219026565551758 ], [ -75.222358703613281, -15.219026565551758 ], [ -75.222358703613281, -15.218474388122559 ], [ -75.222640991210938, -15.218474388122559 ], [ -75.222640991210938, -15.218193054199105 ], [ -75.222915649414062, -15.218193054199105 ], [ -75.222915649414062, -15.217637062072697 ], [ -75.223197937011719, -15.217638969421387 ], [ -75.223197937011719, -15.217361450195312 ], [ -75.223472595214844, -15.217361450195312 ], [ -75.223472595214844, -15.217081069946232 ], [ -75.223747253417912, -15.217081069946232 ], [ -75.223747253417912, -15.216526985168457 ], [ -75.224029541015568, -15.216526985168457 ], [ -75.224029541015568, -15.216251373290959 ], [ -75.224304199218693, -15.216251373290959 ], [ -75.224304199218693, -15.215970993041992 ], [ -75.224586486816349, -15.215970993041992 ], [ -75.224586486816349, -15.215695381164551 ], [ -75.224739074707031, -15.215695381164551 ], [ -75.224861145019474, -15.215695381164551 ], [ -75.224861145019474, -15.215433120727539 ], [ -75.224861145019474, -15.215139389038086 ], [ -75.225006103515625, -15.215139389038086 ], [ -75.225135803222656, -15.215139389038086 ], [ -75.225135803222656, -15.214860916137695 ], [ -75.225418090820312, -15.214860916137695 ], [ -75.225418090820312, -15.214583396911621 ], [ -75.225692749023438, -15.214583396911621 ], [ -75.225692749023438, -15.214027404785156 ], [ -75.225975036621094, -15.214027404785156 ], [ -75.225975036621094, -15.213748931884766 ], [ -75.226249694824219, -15.213748931884766 ], [ -75.226249694824219, -15.213473320007267 ], [ -75.226524353027344, -15.213473320007267 ], [ -75.226524353027344, -15.212917327880803 ], [ -75.226806640625, -15.212917327880803 ], [ -75.226806640625, -15.212361335754338 ], [ -75.227081298828068, -15.212361335754338 ], [ -75.227081298828068, -15.212082862853947 ], [ -75.227363586425724, -15.212082862853947 ], [ -75.227363586425724, -15.211526870727482 ], [ -75.227638244628849, -15.211526870727482 ], [ -75.227638244628849, -15.210972785949707 ], [ -75.227912902831974, -15.210972785949707 ], [ -75.227912902831974, -15.210695266723576 ], [ -75.228195190429688, -15.210695266723576 ], [ -75.228195190429688, -15.210139274597111 ], [ -75.228469848632812, -15.210139274597111 ], [ -75.228469848632812, -15.209860801696721 ], [ -75.228752136230469, -15.209860801696721 ], [ -75.228752136230469, -15.209306716918945 ], [ -75.229026794433594, -15.209306716918945 ], [ -75.229026794433594, -15.20875072479248 ], [ -75.22930908203125, -15.20875072479248 ], [ -75.22930908203125, -15.2084703445434 ], [ -75.229583740234375, -15.208473205566406 ], [ -75.229583740234375, -15.207917213439828 ], [ -75.2298583984375, -15.207919120788574 ], [ -75.2298583984375, -15.20736026763916 ], [ -75.230140686035043, -15.20736026763916 ], [ -75.230140686035043, -15.207084655761719 ], [ -75.230415344238224, -15.207084655761719 ], [ -75.230415344238224, -15.206528663635254 ], [ -75.230697631835881, -15.206528663635254 ], [ -75.230697631835881, -15.205971717834416 ], [ -75.230972290039006, -15.205971717834416 ], [ -75.230972290039006, -15.205692291259709 ], [ -75.231246948242188, -15.205694198608398 ], [ -75.231246948242188, -15.205415725708008 ], [ -75.231529235839844, -15.205415725708008 ], [ -75.231529235839844, -15.204859733581543 ], [ -75.231803894042969, -15.204859733581543 ], [ -75.231803894042969, -15.204582214355469 ], [ -75.232086181640625, -15.204582214355469 ], [ -75.232086181640625, -15.204305648803654 ], [ -75.23236083984375, -15.204305648803654 ], [ -75.23236083984375, -15.204026222229004 ], [ -75.232635498046875, -15.20402812957758 ], [ -75.232635498046875, -15.203749656677189 ], [ -75.232917785644531, -15.203749656677189 ], [ -75.232917785644531, -15.203193664550724 ], [ -75.233192443847543, -15.203193664550724 ], [ -75.233192443847543, -15.202916145324707 ], [ -75.233474731445256, -15.202916145324707 ], [ -75.233474731445256, -15.20263767242426 ], [ -75.233749389648381, -15.20263767242426 ], [ -75.233749389648381, -15.202360153198242 ], [ -75.234024047851506, -15.202360153198242 ], [ -75.234024047851506, -15.202083587646484 ], [ -75.234306335449162, -15.202083587646484 ], [ -75.234306335449162, -15.201527595519906 ], [ -75.234580993652344, -15.201527595519906 ], [ -75.234580993652344, -15.201250076293888 ], [ -75.23486328125, -15.201250076293888 ], [ -75.23486328125, -15.200971603393498 ], [ -75.235420227050781, -15.200971603393498 ], [ -75.235420227050781, -15.200694084167424 ], [ -75.235969543457031, -15.200694084167424 ], [ -75.235969543457031, -15.200415611267033 ], [ -75.236251831054688, -15.200415611267033 ], [ -75.236251831054688, -15.200138092040959 ], [ -75.236808776855412, -15.200139999389648 ], [ -75.236808776855412, -15.199861526489258 ], [ -75.2379150390625, -15.199861526489258 ], [ -75.2379150390625, -15.200139999389648 ], [ -75.238471984863281, -15.200138092040959 ], [ -75.238471984863281, -15.200415611267033 ], [ -75.239028930664062, -15.200415611267033 ], [ -75.239028930664062, -15.200138092040959 ], [ -75.239585876464844, -15.200138092040959 ], [ -75.239585876464844, -15.19847202301014 ], [ -75.240135192871037, -15.19847202301014 ], [ -75.240135192871037, -15.198193550109863 ], [ -75.240417480468693, -15.198193550109863 ], [ -75.240417480468693, -15.197916030883732 ], [ -75.240974426269531, -15.197917938232422 ], [ -75.240974426269531, -15.197637557983285 ], [ -75.241249084472656, -15.197637557983285 ], [ -75.241249084472656, -15.197360038757267 ], [ -75.241806030273438, -15.197361946105957 ], [ -75.241806030273438, -15.197084426879883 ], [ -75.242080688476562, -15.197084426879883 ], [ -75.242080688476562, -15.196805953979492 ], [ -75.242362976074219, -15.196805953979492 ], [ -75.242362976074219, -15.196528434753418 ], [ -75.242637634277344, -15.196528434753418 ], [ -75.242637634277344, -15.195972442626839 ], [ -75.242919921874886, -15.195972442626839 ], [ -75.242919921874886, -15.195414543151855 ], [ -75.243194580078068, -15.195414543151855 ], [ -75.243194580078068, -15.195137023925781 ], [ -75.243469238281193, -15.195137023925781 ], [ -75.243469238281193, -15.194581031799316 ], [ -75.243751525878849, -15.194581031799316 ], [ -75.243751525878849, -15.194026947021428 ], [ -75.244026184082031, -15.194026947021428 ], [ -75.244026184082031, -15.19347095489502 ], [ -75.244308471679688, -15.19347095489502 ], [ -75.244308471679688, -15.193193435668945 ], [ -75.246528625488224, -15.193193435668945 ], [ -75.246528625488224, -15.192917823791447 ], [ -75.246803283691349, -15.192917823791447 ], [ -75.246803283691349, -15.19264030456543 ], [ -75.247360229492188, -15.19264030456543 ], [ -75.247360229492188, -15.192083358764592 ], [ -75.247917175292969, -15.192083358764592 ], [ -75.247917175292969, -15.191527366638127 ], [ -75.248191833496094, -15.191527366638127 ], [ -75.248191833496094, -15.191248893737736 ], [ -75.24847412109375, -15.191248893737736 ], [ -75.24847412109375, -15.190973281860352 ], [ -75.248748779296875, -15.190973281860352 ], [ -75.248748779296875, -15.190694808959961 ], [ -75.249031066894531, -15.190694808959961 ], [ -75.249031066894531, -15.190138816833496 ], [ -75.249862670898381, -15.190138816833496 ], [ -75.249862670898381, -15.189861297607365 ], [ -75.250137329101506, -15.189861297607365 ], [ -75.250137329101506, -15.1893053054809 ], [ -75.250419616699162, -15.1893053054809 ], [ -75.250419616699162, -15.188749313354435 ], [ -75.250694274902344, -15.188751220703125 ], [ -75.250694274902344, -15.18819522857666 ], [ -75.250968933105469, -15.18819522857666 ], [ -75.250968933105469, -15.18791675567627 ], [ -75.251251220703125, -15.18791675567627 ], [ -75.251251220703125, -15.187639236450195 ], [ -75.251808166503906, -15.187639236450195 ], [ -75.251808166503906, -15.187360763549805 ], [ -75.252082824707031, -15.187360763549805 ], [ -75.252082824707031, -15.187081336975098 ], [ -75.252357482910099, -15.18708324432373 ], [ -75.252357482910099, -15.18680477142334 ], [ -75.252639770507756, -15.18680477142334 ], [ -75.252639770507756, -15.186529159545898 ], [ -75.253196716308537, -15.186529159545898 ], [ -75.253196716308537, -15.186248779296875 ], [ -75.253471374511662, -15.186248779296875 ], [ -75.253471374511662, -15.185971260070744 ], [ -75.253753662109375, -15.185973167419434 ], [ -75.253753662109375, -15.185694694519043 ], [ -75.2540283203125, -15.185694694519043 ], [ -75.2540283203125, -15.185415267944279 ], [ -75.254585266113281, -15.185417175292969 ], [ -75.254585266113281, -15.185138702392578 ], [ -75.254859924316406, -15.185138702392578 ], [ -75.254859924316406, -15.184859275817814 ], [ -75.255416870117188, -15.184861183166504 ], [ -75.255416870117188, -15.184582710266113 ], [ -75.255691528320256, -15.184582710266113 ], [ -75.255691528320256, -15.184305191040039 ], [ -75.256248474121037, -15.184305191040039 ], [ -75.256248474121037, -15.184026718139648 ], [ -75.256530761718693, -15.184026718139648 ], [ -75.256530761718693, -15.183749198913574 ], [ -75.257080078125, -15.18375110626215 ], [ -75.257080078125, -15.18347263336176 ], [ -75.257637023925781, -15.18347263336176 ], [ -75.257637023925781, -15.183195114135742 ], [ -75.258193969726562, -15.183195114135742 ], [ -75.258193969726562, -15.182916641235295 ], [ -75.25875091552723, -15.182916641235295 ], [ -75.25875091552723, -15.182639122009277 ], [ -75.259307861328068, -15.182639122009277 ], [ -75.259307861328068, -15.181803703308049 ], [ -75.259582519531193, -15.181803703308049 ], [ -75.259582519531193, -15.180694580078068 ], [ -75.260696411132812, -15.180694580078068 ], [ -75.260696411132812, -15.180417060851994 ], [ -75.261528015136719, -15.180417060851994 ], [ -75.261528015136719, -15.18013763427723 ], [ -75.262084960937443, -15.18013763427723 ], [ -75.262084960937443, -15.179860115051213 ], [ -75.262359619140568, -15.179860115051213 ], [ -75.262359619140568, -15.179585456848088 ], [ -75.262916564941349, -15.179585456848088 ], [ -75.262916564941349, -15.179304122924748 ], [ -75.263473510742188, -15.179304122924748 ], [ -75.263473510742188, -15.179029464721623 ], [ -75.264030456542969, -15.179029464721623 ], [ -75.264030456542969, -15.178748130798283 ], [ -75.264305114746094, -15.178750038146973 ], [ -75.264305114746094, -15.178471565246582 ], [ -75.264862060546875, -15.178471565246582 ], [ -75.264862060546875, -15.178192138671875 ], [ -75.267082214355469, -15.178192138671875 ], [ -75.267082214355469, -15.177638053893929 ], [ -75.267364501953125, -15.177638053893929 ], [ -75.267364501953125, -15.176526069641056 ], [ -75.269027709960881, -15.176526069641056 ], [ -75.269027709960881, -15.175970077514592 ], [ -75.269302368164006, -15.175971984863281 ], [ -75.269302368164006, -15.175694465637207 ], [ -75.269584655761719, -15.175694465637207 ], [ -75.269584655761719, -15.175138473510742 ], [ -75.269859313964844, -15.175138473510742 ], [ -75.269859313964844, -15.17458438873291 ], [ -75.2701416015625, -15.17458438873291 ], [ -75.2701416015625, -15.174304008483887 ], [ -75.270416259765625, -15.17430591583252 ], [ -75.270416259765625, -15.174028396606445 ], [ -75.27069091796875, -15.174028396606445 ], [ -75.27069091796875, -15.173749923706055 ], [ -75.270973205566406, -15.173749923706055 ], [ -75.270973205566406, -15.17347240447998 ], [ -75.271247863769531, -15.17347240447998 ], [ -75.271247863769531, -15.17319393157959 ], [ -75.272918701171875, -15.17319393157959 ], [ -75.272918701171875, -15.172916412353516 ], [ -75.273193359375, -15.172916412353516 ], [ -75.273193359375, -15.172637939453125 ], [ -75.273475646972656, -15.172637939453125 ], [ -75.273475646972656, -15.172362327575627 ], [ -75.273750305175781, -15.172362327575627 ], [ -75.273750305175781, -15.17208194732666 ], [ -75.274307250976562, -15.172083854675236 ], [ -75.274307250976562, -15.171806335449162 ], [ -75.274864196777287, -15.171806335449162 ], [ -75.274864196777287, -15.171527862548771 ], [ -75.275138854980412, -15.171527862548771 ], [ -75.275138854980412, -15.171250343322754 ], [ -75.275695800781193, -15.171250343322754 ], [ -75.275695800781193, -15.170971870422306 ], [ -75.276252746582031, -15.170971870422306 ], [ -75.276252746582031, -15.170694351196289 ], [ -75.276802062988281, -15.170694351196289 ], [ -75.276802062988281, -15.170417785644531 ], [ -75.277359008789062, -15.170417785644531 ], [ -75.277359008789062, -15.1701402664184 ], [ -75.277915954589787, -15.1701402664184 ], [ -75.277915954589787, -15.169861793517953 ], [ -75.278190612792912, -15.169861793517953 ], [ -75.278198242187443, -15.169305801391545 ], [ -75.278472900390568, -15.169305801391545 ], [ -75.278472900390568, -15.16874980926508 ], [ -75.278747558593693, -15.16874980926508 ], [ -75.278747558593693, -15.168472290039006 ], [ -75.279029846191349, -15.168472290039006 ], [ -75.279029846191349, -15.168195724487305 ], [ -75.279586791992188, -15.168195724487305 ], [ -75.279586791992188, -15.167915344238224 ], [ -75.280136108398438, -15.167915344238224 ], [ -75.280136108398438, -15.16763973236084 ], [ -75.280693054199219, -15.16763973236084 ], [ -75.280693054199219, -15.167362213134652 ], [ -75.281524658203068, -15.167362213134652 ], [ -75.281524658203068, -15.167083740234375 ], [ -75.282081604003849, -15.167083740234375 ], [ -75.282081604003849, -15.167362213134652 ], [ -75.282638549804688, -15.167362213134652 ], [ -75.282638549804688, -15.167083740234375 ], [ -75.282913208007812, -15.167083740234375 ], [ -75.282913208007812, -15.166526794433594 ], [ -75.283195495605469, -15.166526794433594 ], [ -75.283195495605469, -15.16624927520752 ], [ -75.285697937011719, -15.16624927520752 ], [ -75.285697937011719, -15.165970802307129 ], [ -75.285972595214844, -15.165970802307129 ], [ -75.285972595214844, -15.165693283080941 ], [ -75.286247253417969, -15.165693283080941 ], [ -75.286247253417969, -15.165137290954533 ], [ -75.286529541015625, -15.165139198303223 ], [ -75.286529541015625, -15.164583206176758 ], [ -75.28680419921875, -15.164583206176758 ], [ -75.28680419921875, -15.164304733276367 ], [ -75.287086486816406, -15.164304733276367 ], [ -75.287086486816406, -15.164027214050293 ], [ -75.287361145019418, -15.164027214050293 ], [ -75.287361145019418, -15.163748741149902 ], [ -75.288192749023381, -15.163748741149902 ], [ -75.288192749023381, -15.163471221923828 ], [ -75.288749694824219, -15.163471221923828 ], [ -75.288749694824219, -15.163194656372013 ], [ -75.289581298828125, -15.163194656372013 ], [ -75.289581298828125, -15.163471221923828 ], [ -75.290138244628906, -15.163471221923828 ], [ -75.290138244628906, -15.163194656372013 ], [ -75.290412902831918, -15.163194656372013 ], [ -75.290412902831918, -15.163471221923828 ], [ -75.291252136230412, -15.163471221923828 ], [ -75.291252136230412, -15.163194656372013 ], [ -75.291809082031193, -15.163194656372013 ], [ -75.291809082031193, -15.162915229797363 ], [ -75.292083740234375, -15.162917137145939 ], [ -75.292083740234375, -15.162638664245549 ], [ -75.292640686035156, -15.162638664245549 ], [ -75.292640686035156, -15.162359237670898 ], [ -75.293197631835938, -15.162361145019531 ], [ -75.293197631835938, -15.162082672119084 ], [ -75.293746948242131, -15.162082672119084 ], [ -75.293746948242131, -15.161805152893066 ], [ -75.294029235839787, -15.161805152893066 ], [ -75.294029235839787, -15.161526679992676 ], [ -75.294303894042912, -15.161526679992676 ], [ -75.294303894042912, -15.16097259521473 ], [ -75.294586181640568, -15.16097259521473 ], [ -75.294586181640568, -15.160693168640137 ], [ -75.294860839843693, -15.160695075988713 ], [ -75.294860839843693, -15.160416603088322 ], [ -75.295135498046875, -15.160416603088322 ], [ -75.295135498046875, -15.160139083862248 ], [ -75.295692443847656, -15.160139083862248 ], [ -75.295692443847656, -15.160416603088322 ], [ -75.296524047851562, -15.160416603088322 ], [ -75.296524047851562, -15.160695075988713 ], [ -75.298469543457031, -15.160695075988713 ], [ -75.298469543457031, -15.160416603088322 ], [ -75.298751831054688, -15.160416603088322 ], [ -75.298751831054688, -15.160139083862248 ], [ -75.299308776855469, -15.160139083862248 ], [ -75.299308776855469, -15.159860610961857 ], [ -75.299858093261719, -15.159860610961857 ], [ -75.299858093261719, -15.159583091735783 ], [ -75.300140380859261, -15.159583091735783 ], [ -75.300140380859261, -15.159304618835392 ], [ -75.300697326660099, -15.159304618835392 ], [ -75.300697326660099, -15.159027099609318 ], [ -75.301528930664062, -15.159029006958008 ], [ -75.301528930664062, -15.158748626708928 ], [ -75.302085876464844, -15.158748626708928 ], [ -75.302085876464844, -15.15847110748291 ], [ -75.30291748046875, -15.158473014831543 ], [ -75.30291748046875, -15.158194541931152 ], [ -75.303474426269474, -15.158194541931152 ], [ -75.303474426269474, -15.157917022704964 ], [ -75.303749084472599, -15.157917022704964 ], [ -75.303749084472599, -15.157638549804688 ], [ -75.304862976074219, -15.157638549804688 ], [ -75.304862976074219, -15.157361030578556 ], [ -75.305419921875, -15.157361030578556 ], [ -75.305419921875, -15.157082557678109 ], [ -75.30596923828125, -15.157082557678109 ], [ -75.30596923828125, -15.156805038452092 ], [ -75.306526184081974, -15.156806945800781 ], [ -75.306526184081974, -15.156526565551701 ], [ -75.307083129882756, -15.156526565551701 ], [ -75.307083129882756, -15.156249046325627 ], [ -75.307357788085881, -15.156250953674316 ], [ -75.307357788085881, -15.155973434448242 ], [ -75.307640075683537, -15.155973434448242 ], [ -75.307640075683537, -15.155692100524846 ], [ -75.308197021484375, -15.155694961547852 ], [ -75.308197021484375, -15.155417442321664 ], [ -75.3084716796875, -15.155417442321664 ], [ -75.3084716796875, -15.155138969421387 ], [ -75.309028625488281, -15.155138969421387 ], [ -75.309028625488281, -15.154861450195256 ], [ -75.310142517089787, -15.154861450195256 ], [ -75.310142517089787, -15.154582023620605 ], [ -75.310417175292912, -15.154582023620605 ], [ -75.310417175292912, -15.154303550720215 ], [ -75.311531066894531, -15.154303550720215 ], [ -75.311531066894531, -15.154026031494141 ], [ -75.312080383300781, -15.15402889251709 ], [ -75.312080383300781, -15.153751373291016 ], [ -75.312362670898438, -15.153751373291016 ], [ -75.312362670898438, -15.153195381164551 ], [ -75.312637329101562, -15.153195381164551 ], [ -75.312637329101562, -15.152915954589844 ], [ -75.314308166503906, -15.152915954589844 ], [ -75.314308166503906, -15.15263843536377 ], [ -75.315414428710938, -15.15263843536377 ], [ -75.315414428710938, -15.152359962463379 ], [ -75.316528320312443, -15.152359962463379 ], [ -75.316528320312443, -15.152082443237305 ], [ -75.316802978515568, -15.152082443237305 ], [ -75.316802978515568, -15.151806831359806 ], [ -75.317085266113224, -15.151806831359806 ], [ -75.317085266113224, -15.151528358459416 ], [ -75.317359924316406, -15.151528358459416 ], [ -75.317359924316406, -15.151249885559025 ], [ -75.317916870117188, -15.151249885559025 ], [ -75.317916870117188, -15.150972366332951 ], [ -75.318748474121094, -15.150972366332951 ], [ -75.318748474121094, -15.15069389343256 ], [ -75.31903076171875, -15.15069389343256 ], [ -75.31903076171875, -15.150416374206543 ], [ -75.320419311523381, -15.150416374206543 ], [ -75.320419311523381, -15.150137901306096 ], [ -75.321250915527344, -15.150137901306096 ], [ -75.321250915527344, -15.149862289428597 ], [ -75.32208251953125, -15.149862289428597 ], [ -75.32208251953125, -15.149581909179688 ], [ -75.324028015136719, -15.149581909179688 ], [ -75.324028015136719, -15.149306297302189 ], [ -75.325691223144474, -15.149306297302189 ], [ -75.325691223144474, -15.149027824401742 ], [ -75.326805114746094, -15.149027824401742 ], [ -75.326805114746094, -15.148750305175724 ], [ -75.327362060546875, -15.148750305175724 ], [ -75.327362060546875, -15.148471832275334 ], [ -75.329025268554631, -15.148471832275334 ], [ -75.329025268554631, -15.14819431304926 ], [ -75.330696105957031, -15.14819431304926 ], [ -75.330696105957031, -15.147915840148869 ], [ -75.332641601562443, -15.147915840148869 ], [ -75.332641601562443, -15.14819431304926 ], [ -75.333747863769531, -15.14819431304926 ], [ -75.333747863769531, -15.148471832275334 ], [ -75.335418701171818, -15.148471832275334 ], [ -75.335418701171818, -15.14819431304926 ], [ -75.335975646972599, -15.14819431304926 ], [ -75.335975646972599, -15.147915840148869 ], [ -75.338470458984318, -15.147915840148869 ], [ -75.338470458984318, -15.14819431304926 ], [ -75.340141296386719, -15.14819431304926 ], [ -75.340141296386719, -15.148471832275334 ], [ -75.340415954589844, -15.148471832275334 ], [ -75.340415954589844, -15.148750305175724 ], [ -75.3406982421875, -15.148750305175724 ], [ -75.3406982421875, -15.149027824401742 ], [ -75.340972900390625, -15.149027824401742 ], [ -75.340972900390625, -15.149581909179688 ], [ -75.34124755859375, -15.149581909179688 ], [ -75.34124755859375, -15.149862289428597 ], [ -75.341529846191293, -15.149862289428597 ], [ -75.341529846191293, -15.151806831359806 ], [ -75.34124755859375, -15.151806831359806 ], [ -75.34124755859375, -15.15263843536377 ], [ -75.340972900390625, -15.15263843536377 ], [ -75.340972900390625, -15.153751373291016 ], [ -75.3406982421875, -15.153751373291016 ], [ -75.3406982421875, -15.154303550720215 ], [ -75.340972900390625, -15.154303550720215 ], [ -75.340972900390625, -15.154582023620605 ], [ -75.34124755859375, -15.154582023620605 ], [ -75.34124755859375, -15.154861450195256 ], [ -75.341529846191293, -15.154861450195256 ], [ -75.341529846191293, -15.155138969421387 ], [ -75.341804504394474, -15.155138969421387 ], [ -75.341804504394474, -15.155417442321664 ], [ -75.342086791992131, -15.155417442321664 ], [ -75.342086791992131, -15.155973434448242 ], [ -75.342361450195256, -15.155973434448242 ], [ -75.342361450195256, -15.156250953674316 ], [ -75.342636108398438, -15.156249046325627 ], [ -75.342636108398438, -15.156526565551701 ], [ -75.342918395996094, -15.156526565551701 ], [ -75.342918395996094, -15.156806945800781 ], [ -75.344306945800781, -15.156805038452092 ], [ -75.344306945800781, -15.157082557678109 ], [ -75.344581604003793, -15.157082557678109 ], [ -75.344581604003793, -15.157638549804688 ], [ -75.344863891601506, -15.157638549804688 ], [ -75.344863891601506, -15.157917022704964 ], [ -75.345138549804631, -15.157917022704964 ], [ -75.345138549804631, -15.158194541931152 ], [ -75.345695495605412, -15.158194541931152 ], [ -75.345695495605412, -15.158473014831543 ], [ -75.34625244140625, -15.15847110748291 ], [ -75.34625244140625, -15.158748626708928 ], [ -75.3468017578125, -15.158748626708928 ], [ -75.346809387207031, -15.159029006958008 ], [ -75.347358703613281, -15.159027099609318 ], [ -75.347358703613281, -15.159304618835392 ], [ -75.348747253417912, -15.159304618835392 ], [ -75.348747253417912, -15.159583091735783 ], [ -75.350135803222656, -15.159583091735783 ], [ -75.350135803222656, -15.159304618835392 ], [ -75.350418090820312, -15.159304618835392 ], [ -75.350418090820312, -15.159027099609318 ], [ -75.350692749023438, -15.159029006958008 ], [ -75.350692749023438, -15.158748626708928 ], [ -75.350975036621094, -15.158748626708928 ], [ -75.350975036621094, -15.15847110748291 ], [ -75.350692749023438, -15.15847110748291 ], [ -75.350692749023438, -15.157917022704964 ], [ -75.350418090820312, -15.157917022704964 ], [ -75.350418090820312, -15.157082557678109 ], [ -75.350135803222656, -15.157082557678109 ], [ -75.350135803222656, -15.156805038452092 ], [ -75.350692749023438, -15.156806945800781 ], [ -75.350692749023438, -15.156526565551701 ], [ -75.351249694824162, -15.156526565551701 ], [ -75.351249694824162, -15.156249046325627 ], [ -75.351524353027287, -15.156250953674316 ], [ -75.351524353027287, -15.155417442321664 ], [ -75.351249694824162, -15.155417442321664 ], [ -75.351249694824162, -15.154861450195256 ], [ -75.350975036621094, -15.154861450195256 ], [ -75.350975036621094, -15.154303550720215 ], [ -75.350692749023438, -15.154303550720215 ], [ -75.350692749023438, -15.153751373291016 ], [ -75.350418090820312, -15.153751373291016 ], [ -75.350418090820312, -15.153470039367676 ], [ -75.349861145019531, -15.153472900390625 ], [ -75.349861145019531, -15.153195381164551 ], [ -75.349029541015568, -15.153195381164551 ], [ -75.349029541015568, -15.152915954589844 ], [ -75.348747253417912, -15.152915954589844 ], [ -75.348747253417912, -15.151806831359806 ], [ -75.348472595214787, -15.151806831359806 ], [ -75.348472595214787, -15.148750305175724 ], [ -75.348747253417912, -15.148750305175724 ], [ -75.348747253417912, -15.147915840148869 ], [ -75.349861145019531, -15.147915840148869 ], [ -75.349861145019531, -15.14819431304926 ], [ -75.350418090820312, -15.14819431304926 ], [ -75.350418090820312, -15.148471832275334 ], [ -75.350975036621094, -15.148471832275334 ], [ -75.350975036621094, -15.148750305175724 ], [ -75.351524353027287, -15.148750305175724 ], [ -75.351524353027287, -15.149862289428597 ], [ -75.351249694824162, -15.149862289428597 ], [ -75.351249694824162, -15.151528358459416 ], [ -75.351524353027287, -15.151528358459416 ], [ -75.351524353027287, -15.151806831359806 ], [ -75.352638244628906, -15.151806831359806 ], [ -75.352638244628906, -15.152359962463379 ], [ -75.352912902832031, -15.152359962463379 ], [ -75.352912902832031, -15.153470039367676 ], [ -75.353195190429688, -15.153470039367676 ], [ -75.353195190429688, -15.153751373291016 ], [ -75.353469848632812, -15.153751373291016 ], [ -75.353469848632812, -15.15402889251709 ], [ -75.354026794433594, -15.154026031494141 ], [ -75.354026794433594, -15.154303550720215 ], [ -75.354858398437443, -15.154303550720215 ], [ -75.354858398437443, -15.154026031494141 ], [ -75.355415344238281, -15.15402889251709 ], [ -75.355415344238281, -15.15263843536377 ], [ -75.355140686035099, -15.15263843536377 ], [ -75.355140686035099, -15.151806831359806 ], [ -75.354858398437443, -15.151806831359806 ], [ -75.354858398437443, -15.151249885559025 ], [ -75.354583740234318, -15.151249885559025 ], [ -75.354583740234318, -15.150972366332951 ], [ -75.354309082031136, -15.150972366332951 ], [ -75.354309082031136, -15.15069389343256 ], [ -75.354026794433594, -15.15069389343256 ], [ -75.354026794433594, -15.150416374206543 ], [ -75.353752136230469, -15.150416374206543 ], [ -75.353752136230469, -15.148750305175724 ], [ -75.353469848632812, -15.148750305175724 ], [ -75.353469848632812, -15.148471832275334 ], [ -75.353195190429688, -15.148471832275334 ], [ -75.353195190429688, -15.14819431304926 ], [ -75.352912902832031, -15.14819431304926 ], [ -75.352912902832031, -15.146805763244629 ], [ -75.353195190429688, -15.146805763244629 ], [ -75.353195190429688, -15.146528244018555 ], [ -75.353469848632812, -15.146528244018555 ], [ -75.353469848632812, -15.145693778991699 ], [ -75.353752136230469, -15.145693778991699 ], [ -75.353752136230469, -15.145416259765568 ], [ -75.354026794433594, -15.145416259765568 ], [ -75.354026794433594, -15.145137786865121 ], [ -75.354583740234318, -15.145137786865121 ], [ -75.354583740234318, -15.144860267639103 ], [ -75.354858398437443, -15.144862174987793 ], [ -75.354858398437443, -15.144583702087402 ], [ -75.355697631835938, -15.144583702087402 ], [ -75.355697631835938, -15.143750190734863 ], [ -75.355972290039062, -15.143750190734863 ], [ -75.355972290039062, -15.142915725708008 ], [ -75.356246948242188, -15.142915725708008 ], [ -75.356246948242188, -15.142640113830566 ], [ -75.356529235839844, -15.142640113830566 ], [ -75.356529235839844, -15.142084121704102 ], [ -75.356803894042969, -15.142084121704102 ], [ -75.356803894042969, -15.141805648803711 ], [ -75.357086181640625, -15.141805648803711 ], [ -75.357086181640625, -15.141528129577637 ], [ -75.358474731445256, -15.141528129577637 ], [ -75.358474731445256, -15.141805648803711 ], [ -75.358749389648438, -15.141805648803711 ], [ -75.358749389648438, -15.141528129577637 ], [ -75.359024047851562, -15.141528129577637 ], [ -75.359024047851562, -15.141805648803711 ], [ -75.359306335449219, -15.141805648803711 ], [ -75.359306335449219, -15.142084121704102 ], [ -75.359580993652344, -15.142084121704102 ], [ -75.359580993652344, -15.142361640930119 ], [ -75.360137939453125, -15.142361640930119 ], [ -75.360137939453125, -15.142640113830566 ], [ -75.360420227050781, -15.142640113830566 ], [ -75.360420227050781, -15.143194198608398 ], [ -75.360694885253849, -15.143194198608398 ], [ -75.360694885253849, -15.143471717834473 ], [ -75.362083435058594, -15.143471717834473 ], [ -75.362083435058594, -15.143750190734863 ], [ -75.362358093261719, -15.143750190734863 ], [ -75.362358093261719, -15.144027709960938 ], [ -75.363746643066349, -15.144027709960938 ], [ -75.363746643066349, -15.144306182861328 ], [ -75.3638916015625, -15.144306182861328 ], [ -75.364028930664006, -15.144304275512638 ], [ -75.364028930664006, -15.144460678100586 ], [ -75.364028930664006, -15.144583702087402 ], [ -75.3641357421875, -15.144583702087402 ], [ -75.364303588867131, -15.144583702087402 ], [ -75.364303588867131, -15.144862174987793 ], [ -75.3643798828125, -15.144862174987793 ], [ -75.364585876464787, -15.144860267639103 ], [ -75.364585876464787, -15.1450901031493 ], [ -75.364860534667912, -15.145137786865121 ], [ -75.364860534667912, -15.145689010620117 ], [ -75.364860534667912, -15.146249771118164 ], [ -75.365135192871094, -15.146249771118164 ], [ -75.365135192871094, -15.147359848022404 ], [ -75.365875244140625, -15.147359848022404 ], [ -75.366806030273438, -15.147359848022404 ], [ -75.366806030273438, -15.147640228271484 ], [ -75.367080688476506, -15.147640228271484 ], [ -75.367080688476506, -15.14819431304926 ], [ -75.367362976074162, -15.14819431304926 ], [ -75.367362976074162, -15.148750305175724 ], [ -75.367919921874943, -15.148750305175724 ], [ -75.367919921874943, -15.149027824401742 ], [ -75.368354797363281, -15.149027824401742 ], [ -75.368751525878906, -15.149027824401742 ], [ -75.368751525878906, -15.149434089660588 ], [ -75.368751525878906, -15.149581909179688 ], [ -75.369026184082031, -15.149581909179688 ], [ -75.369026184082031, -15.150199890136719 ], [ -75.369026184082031, -15.151806831359806 ], [ -75.369132995605469, -15.151806831359806 ], [ -75.369308471679688, -15.151806831359806 ], [ -75.369308471679688, -15.152848243713379 ], [ -75.369308471679688, -15.153472900390625 ], [ -75.369583129882812, -15.153470039367676 ], [ -75.369583129882812, -15.153751373291016 ], [ -75.370971679687443, -15.153751373291016 ], [ -75.370971679687443, -15.153470039367676 ], [ -75.371246337890625, -15.153472900390625 ], [ -75.371246337890625, -15.153195381164551 ], [ -75.371528625488281, -15.153195381164551 ], [ -75.371528625488281, -15.15263843536377 ], [ -75.371803283691406, -15.15263843536377 ], [ -75.371803283691406, -15.152082443237305 ], [ -75.372085571289062, -15.152082443237305 ], [ -75.372085571289062, -15.151528358459416 ], [ -75.372360229492188, -15.151528358459416 ], [ -75.372360229492188, -15.150972366332951 ], [ -75.372642517089844, -15.150972366332951 ], [ -75.372642517089844, -15.150416374206543 ], [ -75.372360229492188, -15.150416374206543 ], [ -75.372360229492188, -15.149581909179688 ], [ -75.372642517089844, -15.149581909179688 ], [ -75.372642517089844, -15.149306297302189 ], [ -75.372917175292969, -15.149306297302189 ], [ -75.372917175292969, -15.148471832275334 ], [ -75.37319183349598, -15.148471832275334 ], [ -75.37319183349598, -15.147359848022404 ], [ -75.373474121093693, -15.147359848022404 ], [ -75.373474121093693, -15.146528244018555 ], [ -75.37319183349598, -15.146528244018555 ], [ -75.37319183349598, -15.146249771118164 ], [ -75.372917175292969, -15.146249771118164 ], [ -75.372917175292969, -15.145972251891976 ], [ -75.372360229492188, -15.145972251891976 ], [ -75.372360229492188, -15.145693778991699 ], [ -75.372085571289062, -15.145693778991699 ], [ -75.372085571289062, -15.145416259765568 ], [ -75.371528625488281, -15.145416259765568 ], [ -75.371528625488281, -15.145137786865121 ], [ -75.371246337890625, -15.145137786865121 ], [ -75.371246337890625, -15.144860267639103 ], [ -75.370697021484318, -15.144862174987793 ], [ -75.370697021484318, -15.144595146179199 ], [ -75.370697021484318, -15.144304275512638 ], [ -75.370414733886662, -15.144306182861328 ], [ -75.370414733886662, -15.144027709960938 ], [ -75.37014007568348, -15.144027709960938 ], [ -75.37014007568348, -15.143471717834473 ], [ -75.369857788085938, -15.143471717834473 ], [ -75.369857788085938, -15.142915725708008 ], [ -75.369583129882812, -15.142915725708008 ], [ -75.369583129882812, -15.142640113830566 ], [ -75.369308471679688, -15.142640113830566 ], [ -75.369308471679688, -15.142361640930119 ], [ -75.368751525878906, -15.142361640930119 ], [ -75.368751525878906, -15.142084121704102 ], [ -75.36846923828125, -15.142084121704102 ], [ -75.36846923828125, -15.141805648803711 ], [ -75.368194580078125, -15.141805648803711 ], [ -75.368194580078125, -15.140969276428109 ], [ -75.368545532226562, -15.140972137451172 ], [ -75.369308471679688, -15.140972137451172 ], [ -75.369308471679688, -15.140695571899357 ], [ -75.369583129882812, -15.140695571899357 ], [ -75.369583129882812, -15.139583587646428 ], [ -75.37014007568348, -15.139583587646428 ], [ -75.37014007568348, -15.139303207397461 ], [ -75.370414733886662, -15.139305114746037 ], [ -75.370414733886662, -15.138474464416447 ], [ -75.37014007568348, -15.138474464416447 ], [ -75.37014007568348, -15.137916564941406 ], [ -75.369857788085938, -15.137916564941406 ], [ -75.369857788085938, -15.137360572814941 ], [ -75.369583129882812, -15.137360572814941 ], [ -75.369583129882812, -15.135695457458496 ], [ -75.369857788085938, -15.135695457458496 ], [ -75.369857788085938, -15.134305000305176 ], [ -75.37014007568348, -15.134305000305176 ], [ -75.37014007568348, -15.133749008178711 ], [ -75.370414733886662, -15.133749008178711 ], [ -75.370414733886662, -15.13347339630127 ], [ -75.370697021484318, -15.13347339630127 ], [ -75.370697021484318, -15.132917404174805 ], [ -75.370971679687443, -15.132917404174805 ], [ -75.370971679687443, -15.13236141204834 ], [ -75.371246337890625, -15.13236141204834 ], [ -75.371246337890625, -15.131526947021484 ], [ -75.371528625488281, -15.131526947021484 ], [ -75.371528625488281, -15.13097095489502 ], [ -75.371803283691406, -15.130972862243596 ], [ -75.371803283691406, -15.130695343017578 ], [ -75.372360229492188, -15.130695343017578 ], [ -75.372360229492188, -15.130416870117131 ], [ -75.372642517089844, -15.130416870117131 ], [ -75.372642517089844, -15.130139350891113 ], [ -75.372917175292969, -15.130139350891113 ], [ -75.372917175292969, -15.129860877990723 ], [ -75.37319183349598, -15.129860877990723 ], [ -75.37319183349598, -15.128194808959904 ], [ -75.372917175292969, -15.128194808959904 ], [ -75.372917175292969, -15.127638816833439 ], [ -75.372642517089844, -15.127638816833439 ], [ -75.372642517089844, -15.127084732055664 ], [ -75.372917175292969, -15.127084732055664 ], [ -75.372917175292969, -15.126528739929199 ], [ -75.37319183349598, -15.126528739929199 ], [ -75.37319183349598, -15.125972747802621 ], [ -75.373474121093693, -15.125972747802621 ], [ -75.373474121093693, -15.125694274902344 ], [ -75.373748779296818, -15.125694274902344 ], [ -75.373748779296818, -15.125138282775765 ], [ -75.374031066894474, -15.125138282775765 ], [ -75.374031066894474, -15.124582290649357 ], [ -75.374305725097599, -15.124582290649357 ], [ -75.374305725097599, -15.124305725097656 ], [ -75.374580383300781, -15.124305725097656 ], [ -75.374580383300781, -15.124028205871582 ], [ -75.374862670898438, -15.124028205871582 ], [ -75.374862670898438, -15.123472213745117 ], [ -75.375419616699219, -15.123472213745117 ], [ -75.375419616699219, -15.123193740844727 ], [ -75.375694274902344, -15.123193740844727 ], [ -75.375694274902344, -15.122914314269963 ], [ -75.376251220703125, -15.122916221618652 ], [ -75.376251220703125, -15.122637748718262 ], [ -75.376808166503849, -15.122637748718262 ], [ -75.376808166503849, -15.122360229492188 ], [ -75.377357482910099, -15.122360229492188 ], [ -75.377357482910099, -15.122083663940373 ], [ -75.378196716308594, -15.122083663940373 ], [ -75.378196716308594, -15.121804237365723 ], [ -75.378471374511719, -15.121806144714355 ], [ -75.378471374511719, -15.121527671813908 ], [ -75.378753662109375, -15.121527671813908 ], [ -75.378753662109375, -15.121248245239144 ], [ -75.3790283203125, -15.121250152587891 ], [ -75.3790283203125, -15.120694160461426 ], [ -75.379302978515625, -15.120694160461426 ], [ -75.379302978515625, -15.120415687561035 ], [ -75.379585266113281, -15.120415687561035 ], [ -75.379585266113281, -15.120138168334961 ], [ -75.379859924316349, -15.120138168334961 ], [ -75.379859924316349, -15.119582176208496 ], [ -75.380142211914006, -15.119584083557072 ], [ -75.380142211914006, -15.119305610656681 ], [ -75.380691528320256, -15.119305610656681 ], [ -75.380691528320256, -15.119028091430607 ], [ -75.380973815917969, -15.119028091430607 ], [ -75.380973815917969, -15.118749618530217 ], [ -75.381248474121094, -15.118749618530217 ], [ -75.381248474121094, -15.118472099304142 ], [ -75.381805419921875, -15.118472099304142 ], [ -75.381805419921875, -15.118193626403752 ], [ -75.382919311523324, -15.118193626403752 ], [ -75.382919311523324, -15.118472099304142 ], [ -75.384025573730469, -15.118472099304142 ], [ -75.384025573730469, -15.118193626403752 ], [ -75.384307861328125, -15.118193626403752 ], [ -75.384307861328125, -15.117916107177734 ], [ -75.38458251953125, -15.117918014526367 ], [ -75.38458251953125, -15.117637634277287 ], [ -75.384864807128906, -15.117637634277287 ], [ -75.384864807128906, -15.11736011505127 ], [ -75.385139465332031, -15.117362022399789 ], [ -75.385139465332031, -15.117083549499512 ], [ -75.385414123535156, -15.117083549499512 ], [ -75.385414123535156, -15.116806030273381 ], [ -75.385696411132812, -15.116804122924805 ], [ -75.385696411132812, -15.116250038146916 ], [ -75.385971069335824, -15.116250038146916 ], [ -75.385971069335824, -15.115694046020451 ], [ -75.386253356933537, -15.115694046020451 ], [ -75.386253356933537, -15.114862442016488 ], [ -75.386528015136662, -15.114862442016488 ], [ -75.386528015136662, -15.11430644989008 ], [ -75.386802673339787, -15.11430644989008 ], [ -75.386802673339787, -15.113750457763615 ], [ -75.386528015136662, -15.113750457763615 ], [ -75.386528015136662, -15.113192558288574 ], [ -75.386802673339787, -15.113192558288574 ], [ -75.386802673339787, -15.111248970031738 ], [ -75.387084960937443, -15.111248970031738 ], [ -75.387084960937443, -15.110694885253849 ], [ -75.386802673339787, -15.110694885253849 ], [ -75.386802673339787, -15.110138893127385 ], [ -75.386528015136662, -15.110138893127385 ], [ -75.386528015136662, -15.109305381774902 ], [ -75.386253356933537, -15.109305381774902 ], [ -75.386253356933537, -15.108195304870549 ], [ -75.386528015136662, -15.108195304870549 ], [ -75.386528015136662, -15.107360839843693 ], [ -75.386253356933537, -15.107360839843693 ], [ -75.386253356933537, -15.107083320617619 ], [ -75.385696411132812, -15.107083320617619 ], [ -75.385696411132812, -15.106248855590763 ], [ -75.385414123535156, -15.106248855590763 ], [ -75.385414123535156, -15.105694770812988 ], [ -75.385696411132812, -15.105694770812988 ], [ -75.385696411132812, -15.1054172515868 ], [ -75.385971069335824, -15.1054172515868 ], [ -75.385971069335824, -15.105138778686523 ], [ -75.386253356933537, -15.105138778686523 ], [ -75.386253356933537, -15.104861259460392 ], [ -75.386528015136662, -15.104861259460392 ], [ -75.386528015136662, -15.104582786559945 ], [ -75.386802673339787, -15.104582786559945 ], [ -75.386802673339787, -15.104861259460392 ], [ -75.387359619140625, -15.104861259460392 ], [ -75.387359619140625, -15.105138778686523 ], [ -75.387641906738281, -15.105138778686523 ], [ -75.387641906738281, -15.104861259460392 ], [ -75.387916564941406, -15.104861259460392 ], [ -75.387916564941406, -15.104582786559945 ], [ -75.388473510742188, -15.104582786559945 ], [ -75.388473510742188, -15.104305267333928 ], [ -75.388748168945312, -15.104305267333928 ], [ -75.388748168945312, -15.104026794433537 ], [ -75.389030456542969, -15.104026794433537 ], [ -75.389030456542969, -15.103749275207463 ], [ -75.389579772949162, -15.103751182556152 ], [ -75.389579772949162, -15.103472709655762 ], [ -75.389862060546818, -15.103472709655762 ], [ -75.389862060546818, -15.103195190429688 ], [ -75.390419006347599, -15.103195190429688 ], [ -75.390419006347599, -15.102916717529297 ], [ -75.391807556152344, -15.102916717529297 ], [ -75.391807556152344, -15.103195190429688 ], [ -75.394027709960938, -15.103195190429688 ], [ -75.394027709960938, -15.102916717529297 ], [ -75.394302368164062, -15.102916717529297 ], [ -75.394302368164062, -15.102639198303223 ], [ -75.393753051757812, -15.102639198303223 ], [ -75.393753051757812, -15.102360725402832 ], [ -75.393470764160099, -15.102360725402832 ], [ -75.393470764160099, -15.100973129272461 ], [ -75.393753051757812, -15.100973129272461 ], [ -75.393753051757812, -15.10069465637207 ], [ -75.393470764160099, -15.10069465637207 ], [ -75.393470764160099, -15.09930419921875 ], [ -75.393196105956974, -15.09930419921875 ], [ -75.393196105956974, -15.098748207092285 ], [ -75.392913818359318, -15.098751068115234 ], [ -75.392913818359318, -15.096805572509766 ], [ -75.392639160156193, -15.096805572509766 ], [ -75.392639160156193, -15.09597206115717 ], [ -75.392913818359318, -15.09597206115717 ], [ -75.392913818359318, -15.095693588256722 ], [ -75.393196105956974, -15.095693588256722 ], [ -75.393196105956974, -15.095416069030705 ], [ -75.392913818359318, -15.095416069030705 ], [ -75.392913818359318, -15.095137596130314 ], [ -75.392639160156193, -15.095137596130314 ], [ -75.392639160156193, -15.09486007690424 ], [ -75.392364501953125, -15.09486007690424 ], [ -75.392364501953125, -15.094584465026855 ], [ -75.392082214355469, -15.094584465026855 ], [ -75.392082214355469, -15.094404220581055 ], [ -75.392082214355469, -15.09375 ], [ -75.391807556152344, -15.09375 ], [ -75.391807556152344, -15.093608856201115 ], [ -75.391807556152344, -15.092638015746957 ], [ -75.392082214355469, -15.092638015746957 ], [ -75.392082214355469, -15.092362403869629 ], [ -75.392364501953125, -15.092362403869629 ], [ -75.392364501953125, -15.092638015746957 ], [ -75.392639160156193, -15.092638015746957 ], [ -75.392639160156193, -15.092082023620549 ], [ -75.393196105956974, -15.092082023620549 ], [ -75.393196105956974, -15.092362403869629 ], [ -75.393753051757812, -15.092362403869629 ], [ -75.393753051757812, -15.092638015746957 ], [ -75.394302368164062, -15.092638015746957 ], [ -75.394302368164062, -15.092362403869629 ], [ -75.394859313964844, -15.092362403869629 ], [ -75.394859313964844, -15.092082023620549 ], [ -75.3951416015625, -15.092082023620549 ], [ -75.3951416015625, -15.091527938842773 ], [ -75.394859313964844, -15.091527938842773 ], [ -75.394859313964844, -15.090694427490234 ], [ -75.394584655761719, -15.090694427490234 ], [ -75.394584655761719, -15.090415954589844 ], [ -75.394302368164062, -15.09041786193842 ], [ -75.394302368164062, -15.090140342712402 ], [ -75.394027709960938, -15.090138435363656 ], [ -75.394027709960938, -15.088195800781193 ], [ -75.394302368164062, -15.088195800781193 ], [ -75.394302368164062, -15.087916374206543 ], [ -75.394584655761719, -15.087916374206543 ], [ -75.394584655761719, -15.085970878601017 ], [ -75.394859313964844, -15.085970878601017 ], [ -75.394859313964844, -15.084860801696777 ], [ -75.3951416015625, -15.084860801696777 ], [ -75.3951416015625, -15.084304809570312 ], [ -75.395416259765625, -15.084304809570312 ], [ -75.395416259765625, -15.082915306091252 ], [ -75.395690917968693, -15.082915306091252 ], [ -75.395690917968693, -15.082359313964787 ], [ -75.395973205566349, -15.082361221313477 ], [ -75.395973205566349, -15.081526756286621 ], [ -75.396247863769474, -15.081526756286621 ], [ -75.396247863769474, -15.081249237060547 ], [ -75.396530151367131, -15.08125114440918 ], [ -75.396530151367131, -15.080972671508732 ], [ -75.396804809570312, -15.080970764160156 ], [ -75.396804809570312, -15.080693244933968 ], [ -75.397087097167969, -15.080695152282715 ], [ -75.397087097167969, -15.08013916015625 ], [ -75.397361755371094, -15.08013916015625 ], [ -75.397361755371094, -15.079304695129395 ], [ -75.397636413574219, -15.079304695129395 ], [ -75.397636413574219, -15.07902717590332 ], [ -75.397918701171875, -15.079029083251896 ], [ -75.397918701171875, -15.07874870300293 ], [ -75.398193359375, -15.07874870300293 ], [ -75.398193359375, -15.078194618225041 ], [ -75.398475646972656, -15.078194618225041 ], [ -75.398475646972656, -15.077638626098576 ], [ -75.398750305175668, -15.077638626098576 ], [ -75.398750305175668, -15.077082633972111 ], [ -75.399024963378849, -15.077082633972111 ], [ -75.399024963378849, -15.076805114746094 ], [ -75.399307250976506, -15.076805114746094 ], [ -75.399307250976506, -15.076526641845703 ], [ -75.399581909179631, -15.076526641845703 ], [ -75.399581909179631, -15.076249122619629 ], [ -75.399864196777287, -15.076251029968205 ], [ -75.399864196777287, -15.075972557067757 ], [ -75.400138854980469, -15.075972557067757 ], [ -75.400138854980469, -15.075692176818848 ], [ -75.40069580078125, -15.07569503784174 ], [ -75.40069580078125, -15.075416564941349 ], [ -75.400970458984375, -15.075416564941349 ], [ -75.400970458984375, -15.075139045715275 ], [ -75.401527404785156, -15.075139045715275 ], [ -75.401527404785156, -15.074860572814885 ], [ -75.401802062988168, -15.074860572814885 ], [ -75.401802062988168, -15.07458305358881 ], [ -75.402359008789006, -15.07458305358881 ], [ -75.402359008789006, -15.07430458068842 ], [ -75.402641296386662, -15.07430458068842 ], [ -75.402641296386662, -15.073470115661564 ], [ -75.402359008789006, -15.073472976684457 ], [ -75.402359008789006, -15.073195457458439 ], [ -75.402641296386662, -15.073195457458439 ], [ -75.402641296386662, -15.072916984558049 ], [ -75.402915954589787, -15.072916984558049 ], [ -75.402915954589787, -15.072637557983398 ], [ -75.403472900390625, -15.072637557983398 ], [ -75.403472900390625, -15.072360038757324 ], [ -75.40374755859375, -15.072360038757324 ], [ -75.40374755859375, -15.071529388427734 ], [ -75.404029846191406, -15.071529388427734 ], [ -75.404029846191406, -15.071248054504338 ], [ -75.404586791992188, -15.071248054504338 ], [ -75.404586791992188, -15.071529388427734 ], [ -75.405418395996037, -15.071529388427734 ], [ -75.405418395996037, -15.071248054504338 ], [ -75.40625, -15.071249961853027 ], [ -75.40625, -15.070972442626953 ], [ -75.406806945800781, -15.070972442626953 ], [ -75.406806945800781, -15.070692062377873 ], [ -75.407081604003906, -15.070692062377873 ], [ -75.407081604003906, -15.070972442626953 ], [ -75.407363891601562, -15.070972442626953 ], [ -75.407363891601562, -15.071249961853027 ], [ -75.408752441406193, -15.071249961853027 ], [ -75.408752441406193, -15.070972442626953 ], [ -75.409027099609318, -15.070972442626953 ], [ -75.409027099609318, -15.070692062377873 ], [ -75.409301757812443, -15.070692062377873 ], [ -75.409301757812443, -15.070137977600098 ], [ -75.409584045410156, -15.070137977600098 ], [ -75.409584045410156, -15.069862365722599 ], [ -75.409858703613281, -15.069862365722599 ], [ -75.409858703613281, -15.069025993347168 ], [ -75.410140991210938, -15.069027900695744 ], [ -75.410140991210938, -15.067915916442871 ], [ -75.410415649414062, -15.067915916442871 ], [ -75.410415649414062, -15.066805839538517 ], [ -75.410697937011719, -15.066805839538517 ], [ -75.410697937011719, -15.065137863159123 ], [ -75.410972595214844, -15.065137863159123 ], [ -75.410972595214844, -15.063194274902287 ], [ -75.411247253417969, -15.063194274902287 ], [ -75.411247253417969, -15.061249732971191 ], [ -75.411529541015511, -15.061249732971191 ], [ -75.411529541015511, -15.06097221374506 ], [ -75.411804199218693, -15.06097412109375 ], [ -75.411804199218693, -15.060415267944336 ], [ -75.412086486816349, -15.060415267944336 ], [ -75.412086486816349, -15.05958366394043 ], [ -75.412361145019474, -15.05958366394043 ], [ -75.412361145019474, -15.059303283691349 ], [ -75.412635803222656, -15.059306144714355 ], [ -75.412635803222656, -15.059026718139648 ], [ -75.412918090820312, -15.059026718139648 ], [ -75.412918090820312, -15.058473587036076 ], [ -75.413192749023438, -15.058473587036076 ], [ -75.413192749023438, -15.058193206787109 ], [ -75.413475036621094, -15.058193206787109 ], [ -75.413475036621094, -15.057917594909611 ], [ -75.413192749023438, -15.057917594909611 ], [ -75.413192749023438, -15.057637214660645 ], [ -75.414024353027344, -15.057639122009221 ], [ -75.414024353027344, -15.05736064910883 ], [ -75.414306640625, -15.05736064910883 ], [ -75.414306640625, -15.056527137756348 ], [ -75.414581298828011, -15.056527137756348 ], [ -75.414581298828011, -15.053473472595215 ], [ -75.414306640625, -15.053473472595215 ], [ -75.414306640625, -15.052639007568359 ], [ -75.414024353027344, -15.052639007568359 ], [ -75.414024353027344, -15.050139427185059 ], [ -75.413749694824219, -15.050139427185059 ], [ -75.413749694824219, -15.04958343505848 ], [ -75.413475036621094, -15.04958343505848 ], [ -75.413475036621094, -15.049027442932072 ], [ -75.413192749023438, -15.049027442932072 ], [ -75.413192749023438, -15.047638893127441 ], [ -75.412918090820312, -15.047638893127441 ], [ -75.412918090820312, -15.046804428100586 ], [ -75.412635803222656, -15.046804428100586 ], [ -75.412635803222656, -15.046528816223088 ], [ -75.412918090820312, -15.046528816223088 ], [ -75.412918090820312, -15.045415878295842 ], [ -75.413192749023438, -15.045415878295842 ], [ -75.413192749023438, -15.045138359069767 ], [ -75.413475036621094, -15.045138359069767 ], [ -75.413475036621094, -15.044306755065861 ], [ -75.413749694824219, -15.044306755065861 ], [ -75.413749694824219, -15.044028282165414 ], [ -75.414024353027344, -15.044028282165414 ], [ -75.414024353027344, -15.043749809265137 ], [ -75.416252136230469, -15.043749809265137 ], [ -75.416252136230469, -15.043193817138558 ], [ -75.416526794433594, -15.043193817138558 ], [ -75.416526794433594, -15.04263782501215 ], [ -75.41680908203125, -15.04263782501215 ], [ -75.41680908203125, -15.042360305786076 ], [ -75.417640686035156, -15.042360305786076 ], [ -75.417640686035156, -15.042083740234375 ], [ -75.418472290039006, -15.042083740234375 ], [ -75.418472290039006, -15.041804313659611 ], [ -75.419029235839787, -15.041804313659611 ], [ -75.419029235839787, -15.042083740234375 ], [ -75.419303894042969, -15.042083740234375 ], [ -75.419303894042969, -15.041804313659611 ], [ -75.419586181640625, -15.041804313659611 ], [ -75.419586181640625, -15.041250228881836 ], [ -75.419303894042969, -15.041250228881836 ], [ -75.419303894042969, -15.040694236755371 ], [ -75.419029235839787, -15.040694236755371 ], [ -75.419029235839787, -15.039859771728516 ], [ -75.419303894042969, -15.039859771728516 ], [ -75.419303894042969, -15.039584159851074 ], [ -75.419586181640625, -15.039584159851074 ], [ -75.419586181640625, -15.039859771728516 ], [ -75.41986083984375, -15.039859771728516 ], [ -75.41986083984375, -15.040140151977539 ], [ -75.420417785644531, -15.040138244628793 ], [ -75.420417785644531, -15.04041576385498 ], [ -75.420692443847656, -15.04041576385498 ], [ -75.420692443847656, -15.040694236755371 ], [ -75.420974731445312, -15.040694236755371 ], [ -75.420974731445312, -15.039584159851074 ], [ -75.421249389648381, -15.039584159851074 ], [ -75.421249389648381, -15.038749694824219 ], [ -75.421524047851506, -15.038749694824219 ], [ -75.421524047851506, -15.038472175598145 ], [ -75.421806335449162, -15.038472175598145 ], [ -75.421806335449162, -15.037637710571289 ], [ -75.422080993652287, -15.037637710571289 ], [ -75.422080993652287, -15.037360191345215 ], [ -75.42236328125, -15.037360191345215 ], [ -75.42236328125, -15.036804199218636 ], [ -75.422080993652287, -15.036806106567383 ], [ -75.422080993652287, -15.036527633666935 ], [ -75.421806335449162, -15.036527633666935 ], [ -75.421806335449162, -15.036250114440918 ], [ -75.422080993652287, -15.036250114440918 ], [ -75.422080993652287, -15.035971641540527 ], [ -75.42236328125, -15.035971641540527 ], [ -75.42236328125, -15.036250114440918 ], [ -75.422920227050781, -15.036250114440918 ], [ -75.422920227050781, -15.035971641540527 ], [ -75.423469543457031, -15.035971641540527 ], [ -75.423469543457031, -15.035415649414062 ], [ -75.422920227050781, -15.035415649414062 ], [ -75.422920227050781, -15.035138130187988 ], [ -75.42279052734375, -15.035140037536564 ], [ -75.422637939453125, -15.035140037536564 ], [ -75.422637939453125, -15.03498458862299 ], [ -75.422637939453125, -15.034861564636174 ], [ -75.422920227050781, -15.034859657287598 ], [ -75.422920227050781, -15.034305572509709 ], [ -75.423194885253906, -15.034305572509709 ], [ -75.423194885253906, -15.033749580383244 ], [ -75.422920227050781, -15.033749580383244 ], [ -75.422920227050781, -15.033472061157227 ], [ -75.423194885253906, -15.033472061157227 ], [ -75.423194885253906, -15.033192634582463 ], [ -75.423469543457031, -15.033192634582463 ], [ -75.423469543457031, -15.032915115356388 ], [ -75.423751831054688, -15.032917976379281 ], [ -75.423751831054688, -15.032640457153263 ], [ -75.424026489257812, -15.032640457153263 ], [ -75.424026489257812, -15.032917976379281 ], [ -75.424583435058537, -15.032917976379281 ], [ -75.424583435058537, -15.032640457153263 ], [ -75.424308776855355, -15.032640457153263 ], [ -75.424308776855355, -15.029581069946232 ], [ -75.424583435058537, -15.029582977294922 ], [ -75.424583435058537, -15.029305458068848 ], [ -75.424858093261662, -15.029305458068848 ], [ -75.424858093261662, -15.029026985168457 ], [ -75.427360534667855, -15.029026985168457 ], [ -75.427360534667855, -15.029305458068848 ], [ -75.428474426269474, -15.029305458068848 ], [ -75.428474426269474, -15.029582977294922 ], [ -75.429580688476562, -15.029581069946232 ], [ -75.429580688476562, -15.029861450195312 ], [ -75.429862976074219, -15.029861450195312 ], [ -75.429862976074219, -15.030138969421387 ], [ -75.430969238281193, -15.030138969421387 ], [ -75.430969238281193, -15.029861450195312 ], [ -75.431251525878849, -15.029861450195312 ], [ -75.431251525878849, -15.029581069946232 ], [ -75.431526184081974, -15.029582977294922 ], [ -75.431526184081974, -15.029305458068848 ], [ -75.431808471679631, -15.029305458068848 ], [ -75.431808471679631, -15.029026985168457 ], [ -75.432083129882812, -15.029026985168457 ], [ -75.432083129882812, -15.028470993041992 ], [ -75.432357788085938, -15.028470993041992 ], [ -75.432357788085938, -15.028195381164551 ], [ -75.432914733886719, -15.028195381164551 ], [ -75.432914733886719, -15.027915000915527 ], [ -75.433197021484375, -15.02791690826416 ], [ -75.433197021484375, -15.027639389038086 ], [ -75.4334716796875, -15.027639389038086 ], [ -75.4334716796875, -15.02680492401123 ], [ -75.433746337890568, -15.02680492401123 ], [ -75.433746337890568, -15.025138854980412 ], [ -75.434028625488224, -15.025138854980412 ], [ -75.434028625488224, -15.024861335754395 ], [ -75.433746337890568, -15.024861335754395 ], [ -75.433746337890568, -15.023751258850041 ], [ -75.434028625488224, -15.023751258850041 ], [ -75.434028625488224, -15.022639274597111 ], [ -75.434303283691349, -15.022639274597111 ], [ -75.434303283691349, -15.022083282470646 ], [ -75.434585571289006, -15.022083282470646 ], [ -75.434585571289006, -15.021529197692871 ], [ -75.435142517089844, -15.021527290344238 ], [ -75.435142517089844, -15.02125072479248 ], [ -75.435691833496094, -15.02125072479248 ], [ -75.435691833496094, -15.0209703445434 ], [ -75.436248779296875, -15.020973205566293 ], [ -75.436248779296875, -15.020694732666016 ], [ -75.436531066894531, -15.020694732666016 ], [ -75.436531066894531, -15.020417213439885 ], [ -75.436805725097656, -15.020417213439885 ], [ -75.436805725097656, -15.019304275512582 ], [ -75.437080383300724, -15.019304275512582 ], [ -75.437080383300724, -15.018748283386174 ], [ -75.437362670898381, -15.01875114440918 ], [ -75.437362670898381, -15.018472671508789 ], [ -75.437637329101506, -15.018472671508789 ], [ -75.437637329101506, -15.018192291259709 ], [ -75.437919616699162, -15.018194198608398 ], [ -75.437919616699162, -15.017638206481934 ], [ -75.438194274902344, -15.017638206481934 ], [ -75.438194274902344, -15.015693664550724 ], [ -75.438468933105469, -15.015693664550724 ], [ -75.438468933105469, -15.012915611267033 ], [ -75.438751220703125, -15.012915611267033 ], [ -75.438751220703125, -15.012638092040959 ], [ -75.439308166503906, -15.012638092040959 ], [ -75.439308166503906, -15.011805534362793 ], [ -75.439582824707031, -15.011805534362793 ], [ -75.439582824707031, -15.010972023010197 ], [ -75.440139770507699, -15.010972023010197 ], [ -75.440139770507699, -15.01069355010975 ], [ -75.440414428710881, -15.01069355010975 ], [ -75.440414428710881, -15.010416030883732 ], [ -75.440696716308537, -15.010416030883732 ], [ -75.440696716308537, -15.009860038757267 ], [ -75.441253662109318, -15.009861946105957 ], [ -75.441253662109318, -15.009584426879883 ], [ -75.442085266113281, -15.009584426879883 ], [ -75.442085266113281, -15.009305953979492 ], [ -75.442359924316406, -15.009305953979492 ], [ -75.442359924316406, -15.008749961853027 ], [ -75.443191528320199, -15.008749961853027 ], [ -75.443191528320199, -15.009028434753304 ], [ -75.444305419921818, -15.009028434753304 ], [ -75.444305419921818, -15.009305953979492 ], [ -75.444862365722656, -15.009305953979492 ], [ -75.444862365722656, -15.009028434753304 ], [ -75.445137023925781, -15.009028434753304 ], [ -75.445137023925781, -15.008472442626896 ], [ -75.444862365722656, -15.008472442626896 ], [ -75.444862365722656, -15.007916450500431 ], [ -75.444580078125, -15.007916450500431 ], [ -75.444580078125, -15.007362365722656 ], [ -75.444305419921818, -15.007362365722656 ], [ -75.444305419921818, -15.007081031799316 ], [ -75.444030761718693, -15.007081031799316 ], [ -75.444030761718693, -15.006527900695801 ], [ -75.443748474121037, -15.006527900695801 ], [ -75.443748474121037, -15.00597095489502 ], [ -75.443191528320199, -15.00597095489502 ], [ -75.443191528320199, -15.004861831665039 ], [ -75.443473815917912, -15.004861831665039 ], [ -75.443473815917912, -15.004583358764592 ], [ -75.443748474121037, -15.004583358764592 ], [ -75.443748474121037, -15.004304885864201 ], [ -75.444030761718693, -15.004304885864201 ], [ -75.444030761718693, -15.004027366638184 ], [ -75.444305419921818, -15.004027366638184 ], [ -75.444305419921818, -15.003748893737736 ], [ -75.444580078125, -15.003748893737736 ], [ -75.444580078125, -15.003471374511719 ], [ -75.444862365722656, -15.003471374511719 ], [ -75.444862365722656, -15.003194808959961 ], [ -75.445693969726562, -15.003194808959961 ], [ -75.445693969726562, -15.00291728973383 ], [ -75.446250915527344, -15.00291728973383 ], [ -75.446250915527344, -15.002638816833382 ], [ -75.446525573730412, -15.002638816833382 ], [ -75.446525573730412, -15.002082824706974 ], [ -75.446807861328068, -15.002082824706974 ], [ -75.446807861328068, -15.0018053054809 ], [ -75.447082519531193, -15.0018053054809 ], [ -75.447082519531193, -15.00152683258051 ], [ -75.447364807128849, -15.00152683258051 ], [ -75.447364807128849, -15.001249313354435 ], [ -75.447639465331974, -15.001251220703125 ], [ -75.447639465331974, -15.000970840454045 ], [ -75.448196411132812, -15.000970840454045 ], [ -75.448196411132812, -15.000693321227971 ], [ -75.448753356933594, -15.000693321227971 ], [ -75.448753356933594, -15.000970840454045 ], [ -75.449302673339844, -15.000970840454045 ], [ -75.449302673339844, -15.001251220703125 ], [ -75.451805114746094, -15.001249313354435 ], [ -75.451805114746094, -15.00152683258051 ], [ -75.452079772949219, -15.00152683258051 ], [ -75.452079772949219, -15.001249313354435 ], [ -75.453193664550724, -15.001251220703125 ], [ -75.453193664550724, -15.000970840454045 ], [ -75.453475952148381, -15.000970840454045 ], [ -75.453475952148381, -15.000139236450195 ], [ -75.453475952148381, -14.999860763549805 ], [ -75.453475952148381, -14.999583244323617 ], [ -75.454025268554688, -14.999583244323617 ], [ -75.454025268554688, -14.99930477142334 ], [ -75.454307556152344, -14.99930477142334 ], [ -75.454307556152344, -14.999029159545898 ], [ -75.454864501953125, -14.999029159545898 ], [ -75.454864501953125, -14.998471260070744 ], [ -75.45513916015625, -14.998473167419434 ], [ -75.45513916015625, -14.998194694519043 ], [ -75.455413818359375, -14.998194694519043 ], [ -75.455413818359375, -14.997915267944279 ], [ -75.455696105957031, -14.997917175292969 ], [ -75.455696105957031, -14.997638702392578 ], [ -75.455970764160043, -14.997638702392578 ], [ -75.455970764160043, -14.997359275817814 ], [ -75.456253051757756, -14.997361183166504 ], [ -75.456253051757756, -14.997082710266113 ], [ -75.456802368164006, -14.997082710266113 ], [ -75.456802368164006, -14.996805191040039 ], [ -75.457084655761662, -14.996805191040039 ], [ -75.457084655761662, -14.997082710266113 ], [ -75.4576416015625, -14.997082710266113 ], [ -75.4576416015625, -14.996805191040039 ], [ -75.457916259765625, -14.996805191040039 ], [ -75.457916259765625, -14.996526718139648 ], [ -75.458473205566406, -14.996526718139648 ], [ -75.458473205566406, -14.996249198913461 ], [ -75.458747863769531, -14.996251106262207 ], [ -75.458747863769531, -14.99597263336176 ], [ -75.459030151367188, -14.99597263336176 ], [ -75.459030151367188, -14.995416641235352 ], [ -75.459304809570256, -14.995416641235352 ], [ -75.459304809570256, -14.995139122009277 ], [ -75.459587097167912, -14.995139122009277 ], [ -75.459587097167912, -14.994860649108887 ], [ -75.460136413574162, -14.994860649108887 ], [ -75.460136413574162, -14.994583129882812 ], [ -75.460418701171818, -14.994583129882812 ], [ -75.460418701171818, -14.994860649108887 ], [ -75.460693359375, -14.994860649108887 ], [ -75.460693359375, -14.994583129882812 ], [ -75.461250305175781, -14.994583129882812 ], [ -75.461250305175781, -14.994304656982422 ], [ -75.461524963378906, -14.994304656982422 ], [ -75.461524963378906, -14.994027137756348 ], [ -75.462081909179688, -14.994029045104924 ], [ -75.462081909179688, -14.993750572204533 ], [ -75.462364196777344, -14.993750572204533 ], [ -75.462364196777344, -14.993470191955566 ], [ -75.462913513183537, -14.993473052978459 ], [ -75.462913513183537, -14.993194580078068 ], [ -75.463195800781193, -14.993194580078068 ], [ -75.463195800781193, -14.992917060852051 ], [ -75.463470458984318, -14.992917060852051 ], [ -75.463470458984318, -14.992638587951603 ], [ -75.464027404785156, -14.992638587951603 ], [ -75.464027404785156, -14.992360115051213 ], [ -75.464302062988281, -14.992360115051213 ], [ -75.464302062988281, -14.992085456848088 ], [ -75.464859008789062, -14.992085456848088 ], [ -75.464859008789062, -14.991804122924748 ], [ -75.465141296386719, -14.991804122924748 ], [ -75.465141296386719, -14.991529464721623 ], [ -75.465690612792912, -14.991529464721623 ], [ -75.465698242187386, -14.99124813079834 ], [ -75.466529846191349, -14.991250991821232 ], [ -75.466529846191349, -14.990971565246582 ], [ -75.466804504394531, -14.990971565246582 ], [ -75.466804504394531, -14.990138053893986 ], [ -75.467086791992188, -14.990138053893986 ], [ -75.467086791992188, -14.990415573120117 ], [ -75.467361450195312, -14.990415573120117 ], [ -75.467361450195312, -14.990138053893986 ], [ -75.467636108398438, -14.990138053893986 ], [ -75.467636108398438, -14.989863395690918 ], [ -75.468475341796875, -14.989863395690918 ], [ -75.468475341796875, -14.989582061767521 ], [ -75.468749999999886, -14.989582061767521 ], [ -75.468749999999886, -14.989026069641056 ], [ -75.469581604003849, -14.989027976989746 ], [ -75.469581604003849, -14.988750457763672 ], [ -75.470138549804688, -14.988750457763672 ], [ -75.470138549804688, -14.988194465637207 ], [ -75.470413208007812, -14.988194465637207 ], [ -75.470413208007812, -14.988750457763672 ], [ -75.470695495605469, -14.988750457763672 ], [ -75.470695495605469, -14.988470077514592 ], [ -75.47125244140625, -14.988471984863281 ], [ -75.47125244140625, -14.988194465637207 ], [ -75.471801757812386, -14.988194465637207 ], [ -75.471801757812386, -14.987915992736816 ], [ -75.472358703613224, -14.987915992736816 ], [ -75.472358703613224, -14.987638473510629 ], [ -75.472640991210881, -14.987638473510629 ], [ -75.472640991210881, -14.987360000610352 ], [ -75.472915649414006, -14.987360000610352 ], [ -75.472915649414006, -14.98708438873291 ], [ -75.473747253417969, -14.98708438873291 ], [ -75.473747253417969, -14.986804008483773 ], [ -75.474029541015625, -14.98680591583252 ], [ -75.474029541015625, -14.986528396606445 ], [ -75.474586486816406, -14.986528396606445 ], [ -75.474586486816406, -14.986249923706055 ], [ -75.474861145019531, -14.986249923706055 ], [ -75.474861145019531, -14.98597240447998 ], [ -75.475418090820256, -14.98597240447998 ], [ -75.475418090820256, -14.98569393157959 ], [ -75.475692749023381, -14.98569393157959 ], [ -75.475692749023381, -14.985416412353516 ], [ -75.476249694824162, -14.985416412353516 ], [ -75.476249694824162, -14.984862327575627 ], [ -75.476524353027344, -14.984862327575627 ], [ -75.476524353027344, -14.98458194732666 ], [ -75.476806640625, -14.98458194732666 ], [ -75.476806640625, -14.984306335449219 ], [ -75.477912902832031, -14.984306335449219 ], [ -75.477912902832031, -14.984027862548771 ], [ -75.478469848632756, -14.984027862548771 ], [ -75.478469848632756, -14.983750343322754 ], [ -75.478752136230412, -14.983750343322754 ], [ -75.478752136230412, -14.983471870422363 ], [ -75.479309082031193, -14.983471870422363 ], [ -75.479309082031193, -14.983194351196289 ], [ -75.4798583984375, -14.983194351196289 ], [ -75.4798583984375, -14.982915878295898 ], [ -75.480140686035156, -14.982915878295898 ], [ -75.480140686035156, -14.9826402664184 ], [ -75.480697631835938, -14.9826402664184 ], [ -75.480697631835938, -14.98236179351801 ], [ -75.480972290039062, -14.98236179351801 ], [ -75.480972290039062, -14.982084274291935 ], [ -75.48152923583973, -14.982084274291935 ], [ -75.48152923583973, -14.981805801391545 ], [ -75.481803894042912, -14.981805801391545 ], [ -75.481803894042912, -14.981528282165471 ], [ -75.482635498046875, -14.981528282165471 ], [ -75.482635498046875, -14.98124980926508 ], [ -75.483192443847656, -14.98124980926508 ], [ -75.483192443847656, -14.980972290039062 ], [ -75.483749389648438, -14.980972290039062 ], [ -75.483749389648438, -14.980695724487305 ], [ -75.484306335449219, -14.980695724487305 ], [ -75.484306335449219, -14.980416297912598 ], [ -75.484863281249943, -14.980416297912598 ], [ -75.484863281249943, -14.98013973236084 ], [ -75.485420227050724, -14.98013973236084 ], [ -75.485420227050724, -14.979862213134709 ], [ -75.485969543457031, -14.979862213134709 ], [ -75.485969543457031, -14.979583740234261 ], [ -75.486526489257812, -14.979583740234261 ], [ -75.486526489257812, -14.979306221008244 ], [ -75.487083435058594, -14.979306221008244 ], [ -75.487083435058594, -14.979027748107853 ], [ -75.486808776855469, -14.979027748107853 ], [ -75.486808776855469, -14.978470802307129 ], [ -75.487083435058594, -14.978470802307129 ], [ -75.487083435058594, -14.978193283080998 ], [ -75.487358093261719, -14.978193283080998 ], [ -75.487358093261719, -14.977360725402832 ], [ -75.487640380859375, -14.977360725402832 ], [ -75.487640380859375, -14.977083206176758 ], [ -75.487915039062443, -14.977083206176758 ], [ -75.487915039062443, -14.976804733276367 ], [ -75.488197326660099, -14.976804733276367 ], [ -75.488197326660099, -14.976527214050293 ], [ -75.488471984863224, -14.976527214050293 ], [ -75.488471984863224, -14.976248741149902 ], [ -75.488746643066349, -14.976248741149902 ], [ -75.488746643066349, -14.975971221923828 ], [ -75.489028930664006, -14.975971221923828 ], [ -75.489028930664006, -14.975694656372013 ], [ -75.489303588867188, -14.975694656372013 ], [ -75.489303588867188, -14.975415229797363 ], [ -75.489860534667969, -14.975415229797363 ], [ -75.489860534667969, -14.975138664245549 ], [ -75.49041748046875, -14.975138664245549 ], [ -75.49041748046875, -14.974582672119141 ], [ -75.490692138671875, -14.974582672119141 ], [ -75.490692138671875, -14.974303245544377 ], [ -75.490974426269531, -14.974303245544377 ], [ -75.490974426269531, -14.973749160766602 ], [ -75.491249084472599, -14.973749160766602 ], [ -75.491249084472599, -14.974026679992676 ], [ -75.491806030273381, -14.974026679992676 ], [ -75.491806030273381, -14.973472595214787 ], [ -75.492080688476506, -14.973472595214787 ], [ -75.492080688476506, -14.973749160766602 ], [ -75.492362976074219, -14.973749160766602 ], [ -75.492362976074219, -14.973472595214787 ], [ -75.492637634277344, -14.973472595214787 ], [ -75.492637634277344, -14.973193168640137 ], [ -75.49346923828125, -14.973195075988713 ], [ -75.49346923828125, -14.972916603088322 ], [ -75.493751525878906, -14.972916603088322 ], [ -75.493751525878906, -14.972639083862248 ], [ -75.494308471679574, -14.972639083862248 ], [ -75.494308471679574, -14.972083091735783 ], [ -75.494583129882756, -14.972083091735783 ], [ -75.494583129882756, -14.972360610961857 ], [ -75.495140075683537, -14.972360610961857 ], [ -75.495140075683537, -14.971527099609375 ], [ -75.495414733886719, -14.971529006958008 ], [ -75.495414733886719, -14.971248626708928 ], [ -75.495697021484375, -14.971248626708928 ], [ -75.495697021484375, -14.97097110748291 ], [ -75.496246337890625, -14.97097110748291 ], [ -75.496246337890625, -14.971527099609375 ], [ -75.497085571289062, -14.971529006958008 ], [ -75.497085571289062, -14.970694541931152 ], [ -75.497917175292912, -14.970694541931152 ], [ -75.497917175292912, -14.969861030578556 ], [ -75.498474121093693, -14.969861030578556 ], [ -75.498474121093693, -14.970138549804574 ], [ -75.498748779296875, -14.970138549804574 ], [ -75.498748779296875, -14.969861030578556 ], [ -75.499031066894531, -14.969861030578556 ], [ -75.499031066894531, -14.969582557678166 ], [ -75.499305725097656, -14.969582557678166 ], [ -75.499305725097656, -14.969305038452092 ], [ -75.499580383300781, -14.969306945800781 ], [ -75.499580383300781, -14.969026565551701 ], [ -75.500968933105412, -14.969026565551701 ], [ -75.500968933105412, -14.969306945800781 ], [ -75.501251220703068, -14.969306945800781 ], [ -75.501251220703068, -14.969026565551701 ], [ -75.501525878906193, -14.969026565551701 ], [ -75.501525878906193, -14.968749046325627 ], [ -75.501808166503849, -14.968750953674316 ], [ -75.501808166503849, -14.968473434448129 ], [ -75.502357482910156, -14.968473434448129 ], [ -75.502357482910156, -14.968193054199219 ], [ -75.502639770507812, -14.968193054199219 ], [ -75.502639770507812, -14.967638969421273 ], [ -75.502914428710938, -14.967638969421273 ], [ -75.502914428710938, -14.967361450195256 ], [ -75.504028320312443, -14.967361450195256 ], [ -75.504028320312443, -14.967082977294865 ], [ -75.504585266113224, -14.967082977294865 ], [ -75.504585266113224, -14.966805458068791 ], [ -75.504859924316349, -14.966805458068791 ], [ -75.504859924316349, -14.966526031494141 ], [ -75.505416870117188, -14.96652889251709 ], [ -75.505416870117188, -14.966251373291016 ], [ -75.505691528320312, -14.966251373291016 ], [ -75.505691528320312, -14.96541690826416 ], [ -75.505973815917969, -14.96541690826416 ], [ -75.505973815917969, -14.964859962463379 ], [ -75.506248474121094, -14.964859962463379 ], [ -75.506248474121094, -14.964306831359863 ], [ -75.505973815917969, -14.964306831359863 ], [ -75.505973815917969, -14.963472366333008 ], [ -75.505691528320312, -14.963472366333008 ], [ -75.505691528320312, -14.962360382080078 ], [ -75.505416870117188, -14.962360382080078 ], [ -75.505416870117188, -14.961527824401799 ], [ -75.505142211914062, -14.961527824401799 ], [ -75.505142211914062, -14.960140228271484 ], [ -75.505416870117188, -14.960140228271484 ], [ -75.505416870117188, -14.959859848022404 ], [ -75.505691528320312, -14.959859848022404 ], [ -75.505691528320312, -14.959028244018441 ], [ -75.505416870117188, -14.959028244018441 ], [ -75.505416870117188, -14.957916259765568 ], [ -75.505142211914062, -14.957916259765568 ], [ -75.505142211914062, -14.957083702087402 ], [ -75.504585266113224, -14.957083702087402 ], [ -75.504585266113224, -14.956804275512638 ], [ -75.504127502441349, -14.956806182861328 ], [ -75.504028320312443, -14.956806182861328 ], [ -75.504028320312443, -14.956527709960938 ], [ -75.503753662109375, -14.956527709960938 ], [ -75.503753662109375, -14.956250190734863 ], [ -75.503471374511719, -14.956250190734863 ], [ -75.503471374511719, -14.956083297729492 ], [ -75.503471374511719, -14.955140113830566 ], [ -75.503196716308594, -14.955140113830566 ], [ -75.503196716308594, -14.954028129577637 ], [ -75.503471374511719, -14.954028129577637 ], [ -75.503471374511719, -14.952915191650391 ], [ -75.503753662109375, -14.952918052673283 ], [ -75.503753662109375, -14.952083587646428 ], [ -75.503471374511719, -14.952083587646428 ], [ -75.503471374511719, -14.950974464416447 ], [ -75.503196716308594, -14.950974464416447 ], [ -75.503196716308594, -14.950693130493164 ], [ -75.502639770507812, -14.950693130493164 ], [ -75.502639770507812, -14.950137138366699 ], [ -75.502914428710938, -14.950139045715218 ], [ -75.502914428710938, -14.949860572814941 ], [ -75.503471374511719, -14.949860572814941 ], [ -75.503471374511719, -14.949304580688363 ], [ -75.503753662109375, -14.949304580688363 ], [ -75.503753662109375, -14.949027061462346 ], [ -75.504028320312443, -14.949027061462346 ], [ -75.504028320312443, -14.948748588561955 ], [ -75.504302978515568, -14.948748588561955 ], [ -75.504302978515568, -14.947359085082951 ], [ -75.504028320312443, -14.947360992431641 ], [ -75.504028320312443, -14.946526527404785 ], [ -75.503753662109375, -14.946526527404785 ], [ -75.503753662109375, -14.945693016052189 ], [ -75.503471374511719, -14.945693016052189 ], [ -75.503471374511719, -14.945417404174805 ], [ -75.503196716308594, -14.945417404174805 ], [ -75.503196716308594, -14.945138931274414 ], [ -75.502639770507812, -14.945138931274414 ], [ -75.502639770507812, -14.94486141204834 ], [ -75.502357482910156, -14.94486141204834 ], [ -75.502357482910156, -14.944582939147949 ], [ -75.501808166503849, -14.944582939147949 ], [ -75.501808166503849, -14.944305419921875 ], [ -75.501251220703068, -14.944305419921875 ], [ -75.501251220703068, -14.944026947021484 ], [ -75.500968933105412, -14.944026947021484 ], [ -75.500968933105412, -14.943751335144043 ], [ -75.500694274902287, -14.943751335144043 ], [ -75.500694274902287, -14.943195343017578 ], [ -75.500968933105412, -14.943195343017578 ], [ -75.500968933105412, -14.942916870117188 ], [ -75.501251220703068, -14.942916870117188 ], [ -75.501251220703068, -14.942639350891113 ], [ -75.501525878906193, -14.942639350891113 ], [ -75.501525878906193, -14.942083358764648 ], [ -75.501808166503849, -14.942083358764648 ], [ -75.501808166503849, -14.940417289733887 ], [ -75.501251220703068, -14.940417289733887 ], [ -75.501251220703068, -14.940138816833439 ], [ -75.499305725097656, -14.940138816833439 ], [ -75.499305725097656, -14.940460205078068 ], [ -75.499305725097656, -14.940694808959904 ], [ -75.499580383300781, -14.940694808959904 ], [ -75.499580383300781, -14.940973281860295 ], [ -75.499305725097656, -14.940973281860295 ], [ -75.499305725097656, -14.941527366638184 ], [ -75.498748779296875, -14.941527366638184 ], [ -75.498748779296875, -14.941250801086369 ], [ -75.497642517089787, -14.941250801086369 ], [ -75.497642517089787, -14.941527366638184 ], [ -75.497360229492074, -14.941527366638184 ], [ -75.497360229492074, -14.940694808959904 ], [ -75.497566223144531, -14.940694808959904 ], [ -75.497917175292912, -14.940694808959904 ], [ -75.497917175292912, -14.939861297607422 ], [ -75.497642517089787, -14.939861297607422 ], [ -75.497642517089787, -14.939584732055664 ], [ -75.496246337890625, -14.939584732055664 ], [ -75.496246337890625, -14.939861297607422 ], [ -75.4959716796875, -14.939861297607422 ], [ -75.4959716796875, -14.939584732055664 ], [ -75.495697021484375, -14.939584732055664 ], [ -75.495697021484375, -14.939028739929086 ], [ -75.495140075683537, -14.939028739929086 ], [ -75.495140075683537, -14.938748359680176 ], [ -75.494857788085881, -14.938748359680176 ], [ -75.494857788085881, -14.938192367553711 ], [ -75.495414733886719, -14.938195228576603 ], [ -75.495414733886719, -14.936528205871582 ], [ -75.494857788085881, -14.936528205871582 ], [ -75.494857788085881, -14.936249732971191 ], [ -75.495140075683537, -14.936249732971191 ], [ -75.495140075683537, -14.935972213745117 ], [ -75.494857788085881, -14.935972213745117 ], [ -75.494857788085881, -14.934583663940373 ], [ -75.495140075683537, -14.934583663940373 ], [ -75.495140075683537, -14.933748245239201 ], [ -75.494857788085881, -14.933750152587891 ], [ -75.494857788085881, -14.933194160461426 ], [ -75.495140075683537, -14.933194160461426 ], [ -75.495140075683537, -14.93235969543457 ], [ -75.495414733886719, -14.93235969543457 ], [ -75.495414733886719, -14.932082176208496 ], [ -75.495697021484375, -14.932084083557072 ], [ -75.495697021484375, -14.931249618530217 ], [ -75.4959716796875, -14.931249618530217 ], [ -75.4959716796875, -14.930137634277344 ], [ -75.496246337890625, -14.930137634277344 ], [ -75.496246337890625, -14.929894447326603 ], [ -75.496246337890625, -14.929583549499398 ], [ -75.496528625488281, -14.929583549499398 ], [ -75.496528625488281, -14.929306030273381 ], [ -75.496803283691406, -14.929306030273381 ], [ -75.496803283691406, -14.92902755737299 ], [ -75.497085571289062, -14.92902755737299 ], [ -75.497085571289062, -14.929306030273381 ], [ -75.497360229492074, -14.929306030273381 ], [ -75.497360229492074, -14.92902755737299 ], [ -75.497642517089787, -14.92902755737299 ], [ -75.497642517089787, -14.928194046020451 ], [ -75.497917175292912, -14.928194046020451 ], [ -75.497917175292912, -14.927638053894043 ], [ -75.498191833496037, -14.927639961242676 ], [ -75.498191833496037, -14.927362442016545 ], [ -75.498474121093693, -14.927362442016545 ], [ -75.498474121093693, -14.927081108093205 ], [ -75.499031066894531, -14.927081108093205 ], [ -75.499031066894531, -14.926527976989689 ], [ -75.499305725097656, -14.926527976989689 ], [ -75.499305725097656, -14.926250457763615 ], [ -75.499580383300781, -14.926250457763615 ], [ -75.499580383300781, -14.925971984863224 ], [ -75.500137329101562, -14.925971984863224 ], [ -75.500137329101562, -14.925692558288574 ], [ -75.500419616699219, -14.925692558288574 ], [ -75.500419616699219, -14.925415039062386 ], [ -75.500968933105412, -14.925417900085449 ], [ -75.500968933105412, -14.925136566162109 ], [ -75.501525878906193, -14.925136566162109 ], [ -75.501525878906193, -14.924859046935978 ], [ -75.501808166503849, -14.924861907958984 ], [ -75.501808166503849, -14.92458438873291 ], [ -75.502082824707031, -14.92458438873291 ], [ -75.502082824707031, -14.924304962158203 ], [ -75.502357482910156, -14.924304962158203 ], [ -75.502357482910156, -14.923471450805664 ], [ -75.502639770507812, -14.923471450805664 ], [ -75.502639770507812, -14.923195838928223 ], [ -75.502914428710938, -14.923195838928223 ], [ -75.502914428710938, -14.922917366027832 ], [ -75.503471374511719, -14.922917366027832 ], [ -75.503471374511719, -14.922361373901367 ], [ -75.503753662109375, -14.922361373901367 ], [ -75.503753662109375, -14.921805381774902 ], [ -75.504028320312443, -14.921805381774902 ], [ -75.504028320312443, -14.921526908874512 ], [ -75.504302978515568, -14.921526908874512 ], [ -75.504302978515568, -14.921251296997013 ], [ -75.504585266113224, -14.921251296997013 ], [ -75.504585266113224, -14.920695304870549 ], [ -75.504859924316349, -14.920695304870549 ], [ -75.504859924316349, -14.920416831970158 ], [ -75.505142211914062, -14.920416831970158 ], [ -75.505142211914062, -14.919860839843693 ], [ -75.505416870117188, -14.919860839843693 ], [ -75.505416870117188, -14.919583320617619 ], [ -75.505691528320312, -14.919583320617619 ], [ -75.505691528320312, -14.919304847717228 ], [ -75.505973815917969, -14.919304847717228 ], [ -75.505973815917969, -14.919027328491211 ], [ -75.506248474121094, -14.919027328491211 ], [ -75.506248474121094, -14.918748855590763 ], [ -75.50653076171875, -14.918748855590763 ], [ -75.50653076171875, -14.918473243713265 ], [ -75.506805419921875, -14.918473243713265 ], [ -75.506805419921875, -14.918194770812988 ], [ -75.507080078124943, -14.918194770812988 ], [ -75.507080078124943, -14.91763877868641 ], [ -75.507362365722599, -14.91763877868641 ], [ -75.507362365722599, -14.917082786560002 ], [ -75.507637023925724, -14.917082786560002 ], [ -75.507637023925724, -14.916526794433537 ], [ -75.508193969726562, -14.916526794433537 ], [ -75.508193969726562, -14.916249275207463 ], [ -75.508468627929688, -14.916249275207463 ], [ -75.508468627929688, -14.915693283081055 ], [ -75.509025573730469, -14.915695190429688 ], [ -75.509025573730469, -14.915416717529297 ], [ -75.509307861328125, -14.915416717529297 ], [ -75.509307861328125, -14.915139198303109 ], [ -75.50958251953125, -14.915139198303109 ], [ -75.50958251953125, -14.914860725402832 ], [ -75.509864807128906, -14.914860725402832 ], [ -75.509864807128906, -14.914580345153752 ], [ -75.510414123535099, -14.914583206176701 ], [ -75.510414123535099, -14.913750648498535 ], [ -75.510971069335881, -14.913750648498535 ], [ -75.510971069335881, -14.913473129272461 ], [ -75.511253356933537, -14.913473129272461 ], [ -75.511253356933537, -14.91319465637207 ], [ -75.511528015136719, -14.91319465637207 ], [ -75.511528015136719, -14.91291427612299 ], [ -75.511802673339844, -14.91291427612299 ], [ -75.511802673339844, -14.912358283996525 ], [ -75.5120849609375, -14.912361145019531 ], [ -75.5120849609375, -14.912084579467717 ], [ -75.512359619140625, -14.912084579467717 ], [ -75.512359619140625, -14.91180229187006 ], [ -75.512641906738281, -14.91180419921875 ], [ -75.512641906738281, -14.911528587341252 ], [ -75.512916564941406, -14.911528587341252 ], [ -75.512916564941406, -14.911248207092285 ], [ -75.513191223144418, -14.911251068115234 ], [ -75.513191223144418, -14.910972595214844 ], [ -75.513473510742131, -14.910972595214844 ], [ -75.513473510742131, -14.91069221496582 ], [ -75.514030456542912, -14.910694122314396 ], [ -75.514030456542912, -14.910415649414006 ], [ -75.514305114746037, -14.910415649414006 ], [ -75.514305114746037, -14.910138130187988 ], [ -75.514862060546875, -14.910138130187988 ], [ -75.514862060546875, -14.909863471984806 ], [ -75.51513671875, -14.909859657287541 ], [ -75.51513671875, -14.909582138061523 ], [ -75.515419006347656, -14.909582138061523 ], [ -75.515419006347656, -14.909305572509766 ], [ -75.516250610351562, -14.909305572509766 ], [ -75.516250610351562, -14.909026145935059 ], [ -75.516525268554631, -14.909028053283635 ], [ -75.516525268554631, -14.908749580383187 ], [ -75.516807556152287, -14.908749580383187 ], [ -75.516807556152287, -14.908470153808594 ], [ -75.517082214355412, -14.90847206115717 ], [ -75.517082214355412, -14.908193588256779 ], [ -75.517364501953068, -14.908193588256779 ], [ -75.517364501953068, -14.907637596130314 ], [ -75.517639160156193, -14.907637596130314 ], [ -75.517639160156193, -14.90736007690424 ], [ -75.517913818359375, -14.90736007690424 ], [ -75.517913818359375, -14.907084465026855 ], [ -75.518196105957031, -14.907084465026855 ], [ -75.518196105957031, -14.906528472900277 ], [ -75.518470764160156, -14.906528472900277 ], [ -75.518470764160156, -14.90625 ], [ -75.518753051757812, -14.90625 ], [ -75.518753051757812, -14.905138015747013 ], [ -75.519859313964787, -14.905138015747013 ], [ -75.519859313964787, -14.904306411743164 ], [ -75.520141601562443, -14.904306411743164 ], [ -75.520141601562443, -14.904027938842773 ], [ -75.520690917968693, -14.904027938842773 ], [ -75.520690917968693, -14.903750419616699 ], [ -75.520973205566406, -14.903750419616699 ], [ -75.520973205566406, -14.903194427490121 ], [ -75.521247863769531, -14.903194427490121 ], [ -75.521247863769531, -14.903750419616699 ], [ -75.522087097167969, -14.903750419616699 ], [ -75.522087097167969, -14.903194427490121 ], [ -75.521804809570312, -14.903194427490121 ], [ -75.521804809570312, -14.902638435363713 ], [ -75.522087097167969, -14.902638435363713 ], [ -75.522087097167969, -14.902084350585938 ], [ -75.522361755371094, -14.902084350585938 ], [ -75.522361755371094, -14.901805877685547 ], [ -75.522918701171761, -14.901805877685547 ], [ -75.522918701171761, -14.902084350585938 ], [ -75.523193359374943, -14.902084350585938 ], [ -75.523193359374943, -14.902361869812012 ], [ -75.523475646972599, -14.902359962463265 ], [ -75.523475646972599, -14.902915954589844 ], [ -75.522918701171761, -14.902915954589844 ], [ -75.522918701171761, -14.903194427490121 ], [ -75.523193359374943, -14.903194427490121 ], [ -75.523193359374943, -14.903750419616699 ], [ -75.523750305175724, -14.903750419616699 ], [ -75.523750305175724, -14.903471946716309 ], [ -75.524024963378906, -14.903471946716309 ], [ -75.524024963378906, -14.903194427490121 ], [ -75.524307250976562, -14.903194427490121 ], [ -75.524307250976562, -14.902915954589844 ], [ -75.524864196777344, -14.902915954589844 ], [ -75.524864196777344, -14.902638435363713 ], [ -75.525138854980469, -14.902638435363713 ], [ -75.525138854980469, -14.902359962463265 ], [ -75.525413513183594, -14.902361869812012 ], [ -75.525413513183594, -14.902084350585938 ], [ -75.525138854980469, -14.902084350585938 ], [ -75.525138854980469, -14.901528358459473 ], [ -75.524864196777344, -14.901528358459473 ], [ -75.524864196777344, -14.901249885559082 ], [ -75.524581909179688, -14.901249885559082 ], [ -75.524581909179688, -14.900972366333008 ], [ -75.524864196777344, -14.900972366333008 ], [ -75.524864196777344, -14.900695800781193 ], [ -75.525138854980469, -14.900695800781193 ], [ -75.525138854980469, -14.900416374206543 ], [ -75.525413513183594, -14.900416374206543 ], [ -75.525413513183594, -14.900972366333008 ], [ -75.525138854980469, -14.900972366333008 ], [ -75.525138854980469, -14.901249885559082 ], [ -75.525413513183594, -14.901249885559082 ], [ -75.525413513183594, -14.901528358459473 ], [ -75.52569580078125, -14.901528358459473 ], [ -75.52569580078125, -14.901249885559082 ], [ -75.526252746581974, -14.901249885559082 ], [ -75.526252746581974, -14.900972366333008 ], [ -75.527359008789062, -14.900972366333008 ], [ -75.527359008789062, -14.900695800781193 ], [ -75.527641296386719, -14.900695800781193 ], [ -75.527641296386719, -14.900416374206543 ], [ -75.527359008789062, -14.900416374206543 ], [ -75.527359008789062, -14.900139808654728 ], [ -75.527915954589844, -14.900139808654728 ], [ -75.527915954589844, -14.899583816528263 ], [ -75.528190612792969, -14.899583816528263 ], [ -75.5281982421875, -14.899306297302246 ], [ -75.528472900390625, -14.899306297302246 ], [ -75.528472900390625, -14.899027824401855 ], [ -75.52874755859375, -14.899027824401855 ], [ -75.52874755859375, -14.898470878601017 ], [ -75.528472900390625, -14.898470878601017 ], [ -75.528472900390625, -14.898193359375 ], [ -75.52874755859375, -14.898193359375 ], [ -75.52874755859375, -14.897917747497502 ], [ -75.529029846191406, -14.897917747497502 ], [ -75.529029846191406, -14.897637367248535 ], [ -75.529304504394474, -14.897640228271428 ], [ -75.529304504394474, -14.897361755371037 ], [ -75.529861450195256, -14.897361755371037 ], [ -75.529861450195256, -14.897640228271428 ], [ -75.530418395996037, -14.897640228271428 ], [ -75.530418395996037, -14.897361755371037 ], [ -75.530975341796875, -14.897361755371037 ], [ -75.530975341796875, -14.897640228271428 ], [ -75.530693054199219, -14.897637367248535 ], [ -75.530693054199219, -14.898193359375 ], [ -75.530418395996037, -14.898193359375 ], [ -75.530418395996037, -14.898750305175781 ], [ -75.530975341796875, -14.898750305175781 ], [ -75.530975341796875, -14.898470878601017 ], [ -75.53125, -14.898470878601017 ], [ -75.53125, -14.898193359375 ], [ -75.531806945800781, -14.898193359375 ], [ -75.531806945800781, -14.897917747497502 ], [ -75.532081604003906, -14.897917747497502 ], [ -75.532081604003906, -14.897361755371037 ], [ -75.532363891601562, -14.897361755371037 ], [ -75.532363891601562, -14.897083282470646 ], [ -75.532913208007756, -14.897083282470646 ], [ -75.532913208007756, -14.896804809570199 ], [ -75.533195495605412, -14.896804809570199 ], [ -75.533195495605412, -14.896527290344181 ], [ -75.533470153808537, -14.896527290344181 ], [ -75.533470153808537, -14.896248817443791 ], [ -75.534027099609375, -14.896248817443791 ], [ -75.534027099609375, -14.895694732666016 ], [ -75.5343017578125, -14.895694732666016 ], [ -75.5343017578125, -14.894859313964787 ], [ -75.534584045410156, -14.894861221313477 ], [ -75.534584045410156, -14.894026756286621 ], [ -75.534858703613281, -14.894026756286621 ], [ -75.534858703613281, -14.893472671508789 ], [ -75.535140991210938, -14.893470764160156 ], [ -75.535140991210938, -14.893193244934025 ], [ -75.535972595214787, -14.893193244934025 ], [ -75.535972595214787, -14.893470764160156 ], [ -75.536247253417912, -14.893470764160156 ], [ -75.536247253417912, -14.892916679382324 ], [ -75.536529541015568, -14.892916679382324 ], [ -75.536529541015568, -14.892360687255859 ], [ -75.53680419921875, -14.892360687255859 ], [ -75.53680419921875, -14.891804695129395 ], [ -75.537086486816406, -14.891804695129395 ], [ -75.537086486816406, -14.892083168029785 ], [ -75.537361145019531, -14.892083168029785 ], [ -75.537361145019531, -14.891804695129395 ], [ -75.537635803222656, -14.891804695129395 ], [ -75.537635803222656, -14.892360687255859 ], [ -75.537361145019531, -14.892360687255859 ], [ -75.537361145019531, -14.893195152282715 ], [ -75.537918090820312, -14.893195152282715 ], [ -75.537918090820312, -14.892916679382324 ], [ -75.538192749023438, -14.892916679382324 ], [ -75.538192749023438, -14.892083168029785 ], [ -75.538475036621094, -14.892083168029785 ], [ -75.538475036621094, -14.892360687255859 ], [ -75.538749694824105, -14.892360687255859 ], [ -75.538749694824105, -14.89124870300293 ], [ -75.539024353027287, -14.89124870300293 ], [ -75.539024353027287, -14.890971183776855 ], [ -75.539306640624943, -14.890973091125431 ], [ -75.539306640624943, -14.890694618225041 ], [ -75.539581298828068, -14.890694618225041 ], [ -75.539581298828068, -14.891529083251896 ], [ -75.539863586425724, -14.89152717590332 ], [ -75.539863586425724, -14.891804695129395 ], [ -75.540138244628906, -14.891804695129395 ], [ -75.540138244628906, -14.89152717590332 ], [ -75.540695190429688, -14.891529083251896 ], [ -75.540695190429688, -14.89124870300293 ], [ -75.541252136230469, -14.89124870300293 ], [ -75.541252136230469, -14.890417098999023 ], [ -75.541526794433594, -14.890417098999023 ], [ -75.541526794433594, -14.890138626098576 ], [ -75.54180908203125, -14.890138626098576 ], [ -75.54180908203125, -14.889305114746094 ], [ -75.542083740234318, -14.889305114746094 ], [ -75.542083740234318, -14.889026641845703 ], [ -75.542640686035099, -14.889026641845703 ], [ -75.542640686035099, -14.889305114746094 ], [ -75.543197631835881, -14.889305114746094 ], [ -75.543197631835881, -14.889026641845703 ], [ -75.543746948242188, -14.889026641845703 ], [ -75.543746948242188, -14.888749122619629 ], [ -75.544586181640625, -14.888751029968205 ], [ -75.544586181640625, -14.888472557067814 ], [ -75.544303894042969, -14.888472557067814 ], [ -75.544303894042969, -14.887916564941349 ], [ -75.54486083984375, -14.887916564941349 ], [ -75.54486083984375, -14.887639045715275 ], [ -75.545417785644474, -14.887639045715275 ], [ -75.545417785644474, -14.887916564941349 ], [ -75.545692443847599, -14.887916564941349 ], [ -75.545692443847599, -14.886527061462402 ], [ -75.545974731445256, -14.886528968810921 ], [ -75.545974731445256, -14.886247634887638 ], [ -75.546524047851562, -14.886247634887638 ], [ -75.546524047851562, -14.885139465331974 ], [ -75.546806335449219, -14.885139465331974 ], [ -75.546806335449219, -14.885416984558049 ], [ -75.547080993652344, -14.885416984558049 ], [ -75.547080993652344, -14.885695457458439 ], [ -75.54736328125, -14.885695457458439 ], [ -75.54736328125, -14.886528968810921 ], [ -75.547920227050781, -14.886528968810921 ], [ -75.547920227050781, -14.885695457458439 ], [ -75.548194885253906, -14.885695457458439 ], [ -75.548194885253906, -14.885416984558049 ], [ -75.548469543456974, -14.885416984558049 ], [ -75.548469543456974, -14.885139465331974 ], [ -75.548751831054631, -14.885139465331974 ], [ -75.548751831054631, -14.885416984558049 ], [ -75.549026489257756, -14.885416984558049 ], [ -75.549026489257756, -14.885139465331974 ], [ -75.549308776855412, -14.885139465331974 ], [ -75.549308776855412, -14.884860038757211 ], [ -75.549583435058594, -14.884860038757211 ], [ -75.549583435058594, -14.884581565856934 ], [ -75.549858093261719, -14.884581565856934 ], [ -75.549858093261719, -14.884304046630803 ], [ -75.5504150390625, -14.884304046630803 ], [ -75.5504150390625, -14.884581565856934 ], [ -75.551528930663949, -14.884581565856934 ], [ -75.551528930663949, -14.884304046630803 ], [ -75.551803588867131, -14.884306907653809 ], [ -75.551803588867131, -14.884029388427734 ], [ -75.552360534667912, -14.884029388427734 ], [ -75.552360534667912, -14.883472442626953 ], [ -75.553192138671875, -14.883472442626953 ], [ -75.553192138671875, -14.883192062377873 ], [ -75.553749084472656, -14.883193969726562 ], [ -75.553749084472656, -14.882916450500488 ], [ -75.554031372070312, -14.882916450500488 ], [ -75.554031372070312, -14.882363319396973 ], [ -75.554306030273438, -14.882363319396973 ], [ -75.554306030273438, -14.882081985473633 ], [ -75.554580688476449, -14.882081985473633 ], [ -75.554580688476449, -14.881525993347168 ], [ -75.555419921874943, -14.881527900695801 ], [ -75.555419921874943, -14.880694389343262 ], [ -75.555137634277287, -14.880694389343262 ], [ -75.555137634277287, -14.880415916442871 ], [ -75.555419921874943, -14.880415916442871 ], [ -75.555419921874943, -14.880140304565373 ], [ -75.555694580078068, -14.880138397216797 ], [ -75.555694580078068, -14.879859924316406 ], [ -75.556251525878906, -14.879859924316406 ], [ -75.556251525878906, -14.880140304565373 ], [ -75.55596923828125, -14.880140304565373 ], [ -75.55596923828125, -14.880415916442871 ], [ -75.555694580078068, -14.880415916442871 ], [ -75.555694580078068, -14.880971908569336 ], [ -75.556526184082031, -14.880970001220589 ], [ -75.556526184082031, -14.881250381469727 ], [ -75.557083129882812, -14.881250381469727 ], [ -75.557083129882812, -14.880140304565373 ], [ -75.557357788085938, -14.880138397216797 ], [ -75.557357788085938, -14.879584312438908 ], [ -75.557083129882812, -14.879584312438908 ], [ -75.557083129882812, -14.879305839538517 ], [ -75.557640075683594, -14.879305839538517 ], [ -75.557640075683594, -14.879859924316406 ], [ -75.557914733886662, -14.879859924316406 ], [ -75.557914733886662, -14.880694389343262 ], [ -75.558197021484318, -14.880694389343262 ], [ -75.558197021484318, -14.880415916442871 ], [ -75.558471679687443, -14.880415916442871 ], [ -75.558471679687443, -14.880140304565373 ], [ -75.558746337890568, -14.880140304565373 ], [ -75.558746337890568, -14.880415916442871 ], [ -75.559303283691406, -14.880415916442871 ], [ -75.559303283691406, -14.879859924316406 ], [ -75.559585571289062, -14.879859924316406 ], [ -75.559585571289062, -14.879028320312443 ], [ -75.560142517089844, -14.879028320312443 ], [ -75.560142517089844, -14.878749847412053 ], [ -75.560417175292969, -14.878749847412053 ], [ -75.560417175292969, -14.878472328186035 ], [ -75.560691833496094, -14.878472328186035 ], [ -75.560691833496094, -14.878193855285588 ], [ -75.561248779296818, -14.878193855285588 ], [ -75.561248779296818, -14.87791633605957 ], [ -75.561531066894474, -14.87791633605957 ], [ -75.561531066894474, -14.87763786315918 ], [ -75.561805725097599, -14.87763786315918 ], [ -75.561805725097599, -14.877362251281681 ], [ -75.562080383300724, -14.877362251281681 ], [ -75.562080383300724, -14.877083778381234 ], [ -75.562919616699219, -14.877083778381234 ], [ -75.562919616699219, -14.876806259155217 ], [ -75.563194274902344, -14.876806259155217 ], [ -75.563194274902344, -14.877083778381234 ], [ -75.56402587890625, -14.877083778381234 ], [ -75.56402587890625, -14.876806259155217 ], [ -75.564582824706974, -14.876806259155217 ], [ -75.564582824706974, -14.876250267028752 ], [ -75.564857482910099, -14.876250267028752 ], [ -75.564857482910099, -14.875415802001896 ], [ -75.565139770507756, -14.875415802001896 ], [ -75.565139770507756, -14.875138282775879 ], [ -75.565414428710938, -14.875140190124512 ], [ -75.565414428710938, -14.874861717224121 ], [ -75.565696716308594, -14.874861717224121 ], [ -75.565696716308594, -14.875140190124512 ], [ -75.565971374511719, -14.875138282775879 ], [ -75.565971374511719, -14.875415802001896 ], [ -75.565414428710938, -14.875415802001896 ], [ -75.565414428710938, -14.876527786254826 ], [ -75.565971374511719, -14.876527786254826 ], [ -75.565971374511719, -14.876250267028752 ], [ -75.566253662109375, -14.876250267028752 ], [ -75.566253662109375, -14.875971794128361 ], [ -75.5665283203125, -14.875971794128361 ], [ -75.5665283203125, -14.875694274902287 ], [ -75.567642211914006, -14.875694274902287 ], [ -75.567642211914006, -14.875415802001896 ], [ -75.568191528320256, -14.875415802001896 ], [ -75.568191528320256, -14.875138282775879 ], [ -75.567916870117131, -14.875140190124512 ], [ -75.567916870117131, -14.874861717224121 ], [ -75.568473815917912, -14.874861717224121 ], [ -75.568473815917912, -14.874305725097656 ], [ -75.568748474121094, -14.874305725097656 ], [ -75.568748474121094, -14.874025344848576 ], [ -75.569305419921875, -14.874025344848576 ], [ -75.569305419921875, -14.874305725097656 ], [ -75.56903076171875, -14.874305725097656 ], [ -75.56903076171875, -14.874861717224121 ], [ -75.569580078125, -14.874861717224121 ], [ -75.569580078125, -14.874582290649414 ], [ -75.569862365722656, -14.874584197997933 ], [ -75.569862365722656, -14.874305725097656 ], [ -75.569580078125, -14.874305725097656 ], [ -75.569580078125, -14.874025344848576 ], [ -75.570137023925781, -14.874028205871525 ], [ -75.570137023925781, -14.873749732971078 ], [ -75.570693969726506, -14.873749732971078 ], [ -75.570693969726506, -14.874028205871525 ], [ -75.570968627929631, -14.874028205871525 ], [ -75.570968627929631, -14.87347221374506 ], [ -75.570137023925781, -14.87347221374506 ], [ -75.570137023925781, -14.87319374084467 ], [ -75.571250915527287, -14.87319374084467 ], [ -75.571250915527287, -14.872916221618596 ], [ -75.571525573730412, -14.872916221618596 ], [ -75.571525573730412, -14.872639656066895 ], [ -75.571807861328068, -14.872639656066895 ], [ -75.571807861328068, -14.872916221618596 ], [ -75.572639465332031, -14.872916221618596 ], [ -75.572639465332031, -14.872639656066895 ], [ -75.572364807128906, -14.872639656066895 ], [ -75.572364807128906, -14.872359275817814 ], [ -75.573196411132812, -14.872359275817814 ], [ -75.573196411132812, -14.872639656066895 ], [ -75.573471069335938, -14.872639656066895 ], [ -75.573471069335938, -14.872359275817814 ], [ -75.573753356933594, -14.872359275817814 ], [ -75.573753356933594, -14.872639656066895 ], [ -75.574028015136662, -14.872639656066895 ], [ -75.574028015136662, -14.872359275817814 ], [ -75.574302673339787, -14.87236213684082 ], [ -75.574302673339787, -14.87208366394043 ], [ -75.574859619140568, -14.87208366394043 ], [ -75.574859619140568, -14.871803283691349 ], [ -75.574584960937443, -14.871803283691349 ], [ -75.574584960937443, -14.871247291564885 ], [ -75.575416564941406, -14.871249198913574 ], [ -75.575416564941406, -14.870973587036076 ], [ -75.575973510742188, -14.870973587036076 ], [ -75.575973510742188, -14.870137214660645 ], [ -75.576530456542969, -14.870140075683594 ], [ -75.576530456542969, -14.869304656982365 ], [ -75.577079772949162, -14.869304656982365 ], [ -75.577079772949162, -14.869583129882812 ], [ -75.577362060546818, -14.869583129882812 ], [ -75.577362060546818, -14.869304656982365 ], [ -75.577919006347599, -14.869304656982365 ], [ -75.577919006347599, -14.869027137756348 ], [ -75.578475952148438, -14.869027137756348 ], [ -75.578475952148438, -14.868194580078011 ], [ -75.578750610351562, -14.868194580078011 ], [ -75.578750610351562, -14.868471145629883 ], [ -75.579025268554688, -14.868471145629883 ], [ -75.579025268554688, -14.867638587951603 ], [ -75.579582214355469, -14.867638587951603 ], [ -75.579582214355469, -14.868194580078011 ], [ -75.579864501953125, -14.868194580078011 ], [ -75.579864501953125, -14.868471145629883 ], [ -75.580139160156136, -14.868471145629883 ], [ -75.580139160156136, -14.867915153503418 ], [ -75.580413818359318, -14.867915153503418 ], [ -75.580413818359318, -14.867359161376953 ], [ -75.580696105956974, -14.867359161376953 ], [ -75.580696105956974, -14.866805076599064 ], [ -75.580970764160099, -14.866805076599064 ], [ -75.580970764160099, -14.866526603698674 ], [ -75.581527709960938, -14.866526603698674 ], [ -75.581527709960938, -14.865973472595101 ], [ -75.581802368164062, -14.865973472595101 ], [ -75.581802368164062, -14.865693092346191 ], [ -75.582359313964844, -14.865693092346191 ], [ -75.582359313964844, -14.865416526794434 ], [ -75.583190917968636, -14.865416526794434 ], [ -75.583190917968636, -14.865973472595101 ], [ -75.583473205566349, -14.865973472595101 ], [ -75.583473205566349, -14.865693092346191 ], [ -75.583747863769474, -14.865693092346191 ], [ -75.583747863769474, -14.865139007568246 ], [ -75.584304809570256, -14.865139007568246 ], [ -75.584304809570256, -14.865693092346191 ], [ -75.584030151367131, -14.865693092346191 ], [ -75.584030151367131, -14.865973472595101 ], [ -75.584587097167912, -14.865973472595101 ], [ -75.584587097167912, -14.865693092346191 ], [ -75.585136413574219, -14.865693092346191 ], [ -75.585136413574219, -14.865416526794434 ], [ -75.585418701171875, -14.865416526794434 ], [ -75.585418701171875, -14.865139007568246 ], [ -75.585693359375, -14.865139007568246 ], [ -75.585693359375, -14.864860534667969 ], [ -75.585975646972656, -14.864860534667969 ], [ -75.585975646972656, -14.864583015441838 ], [ -75.586250305175781, -14.864583015441838 ], [ -75.586250305175781, -14.86430454254139 ], [ -75.586524963378849, -14.86430454254139 ], [ -75.586524963378849, -14.863751411437988 ], [ -75.586807250976506, -14.863748550414982 ], [ -75.586807250976506, -14.863471031188908 ], [ -75.587081909179631, -14.863471031188908 ], [ -75.587081909179631, -14.864027023315373 ], [ -75.58819580078125, -14.864027023315373 ], [ -75.58819580078125, -14.863751411437988 ], [ -75.588470458984375, -14.863748550414982 ], [ -75.588470458984375, -14.863471031188908 ], [ -75.588752746582031, -14.863472938537598 ], [ -75.588752746582031, -14.863195419311523 ], [ -75.589302062988281, -14.863195419311523 ], [ -75.589302062988281, -14.862916946411133 ], [ -75.589859008789006, -14.862916946411133 ], [ -75.589859008789006, -14.862639427184945 ], [ -75.590141296386662, -14.862639427184945 ], [ -75.590141296386662, -14.862360954284668 ], [ -75.590415954589787, -14.862360954284668 ], [ -75.590415954589787, -14.862639427184945 ], [ -75.590690612792912, -14.862639427184945 ], [ -75.590698242187443, -14.862360954284668 ], [ -75.59124755859375, -14.862360954284668 ], [ -75.59124755859375, -14.861804962158089 ], [ -75.591529846191406, -14.861804962158089 ], [ -75.591529846191406, -14.861248970031681 ], [ -75.592361450195312, -14.861250877380371 ], [ -75.592361450195312, -14.860973358154297 ], [ -75.592636108398438, -14.860973358154297 ], [ -75.592636108398438, -14.860694885253906 ], [ -75.59291839599598, -14.860694885253906 ], [ -75.59291839599598, -14.860417366027832 ], [ -75.59375, -14.860417366027832 ], [ -75.59375, -14.860138893127441 ], [ -75.594306945800781, -14.860138893127441 ], [ -75.594306945800781, -14.859861373901367 ], [ -75.595138549804688, -14.859861373901367 ], [ -75.595138549804688, -14.859582901000977 ], [ -75.595413208007812, -14.859582901000977 ], [ -75.595413208007812, -14.859028816223088 ], [ -75.596527099609318, -14.859028816223088 ], [ -75.596527099609318, -14.85875129699707 ], [ -75.596801757812443, -14.85875129699707 ], [ -75.596801757812443, -14.85847282409668 ], [ -75.597084045410099, -14.85847282409668 ], [ -75.597084045410099, -14.859582901000977 ], [ -75.596809387206974, -14.859582901000977 ], [ -75.596809387206974, -14.859861373901367 ], [ -75.597358703613281, -14.859861373901367 ], [ -75.597358703613281, -14.859582901000977 ], [ -75.597640991210938, -14.859582901000977 ], [ -75.597640991210938, -14.859305381774902 ], [ -75.597915649414062, -14.859305381774902 ], [ -75.597915649414062, -14.859028816223088 ], [ -75.598472595214844, -14.859028816223088 ], [ -75.598472595214844, -14.85875129699707 ], [ -75.598747253417969, -14.85875129699707 ], [ -75.598747253417969, -14.858195304870605 ], [ -75.599029541015625, -14.858195304870605 ], [ -75.599029541015625, -14.857916831970215 ], [ -75.599304199218693, -14.857916831970215 ], [ -75.599304199218693, -14.857638359069824 ], [ -75.599586486816349, -14.857638359069824 ], [ -75.599586486816349, -14.857359886169377 ], [ -75.599861145019474, -14.857359886169377 ], [ -75.599861145019474, -14.857082366943359 ], [ -75.600692749023438, -14.857082366943359 ], [ -75.600692749023438, -14.857359886169377 ], [ -75.601524353027344, -14.857359886169377 ], [ -75.601524353027344, -14.857082366943359 ], [ -75.602081298828125, -14.857082366943359 ], [ -75.602081298828125, -14.856526374816895 ], [ -75.602363586425781, -14.856526374816895 ], [ -75.602363586425781, -14.856249809265023 ], [ -75.602638244628849, -14.856249809265023 ], [ -75.602638244628849, -14.855972290039006 ], [ -75.603469848632756, -14.855972290039006 ], [ -75.603469848632756, -14.856249809265023 ], [ -75.604026794433594, -14.856249809265023 ], [ -75.604026794433594, -14.855416297912541 ], [ -75.60430908203125, -14.855416297912541 ], [ -75.60430908203125, -14.855693817138615 ], [ -75.604583740234375, -14.855693817138615 ], [ -75.604583740234375, -14.85513782501215 ], [ -75.6048583984375, -14.85513782501215 ], [ -75.6048583984375, -14.854860305786076 ], [ -75.605140686035156, -14.854860305786076 ], [ -75.605140686035156, -14.854583740234375 ], [ -75.605415344238281, -14.854583740234375 ], [ -75.605415344238281, -14.854304313659611 ], [ -75.605697631835824, -14.854306221008301 ], [ -75.605697631835824, -14.85402774810791 ], [ -75.606803894042969, -14.85402774810791 ], [ -75.606803894042969, -14.854306221008301 ], [ -75.607917785644531, -14.854304313659611 ], [ -75.607917785644531, -14.854583740234375 ], [ -75.608192443847656, -14.854583740234375 ], [ -75.608192443847656, -14.854304313659611 ], [ -75.608749389648324, -14.854304313659611 ], [ -75.608749389648324, -14.854583740234375 ], [ -75.609306335449162, -14.854583740234375 ], [ -75.609306335449162, -14.853750228881836 ], [ -75.609580993652287, -14.853750228881836 ], [ -75.609580993652287, -14.853471755981445 ], [ -75.610137939453125, -14.853471755981445 ], [ -75.610137939453125, -14.853194236755257 ], [ -75.610420227050781, -14.853194236755257 ], [ -75.610420227050781, -14.85291576385498 ], [ -75.610969543457031, -14.85291576385498 ], [ -75.610969543457031, -14.852638244628849 ], [ -75.611526489257812, -14.852638244628849 ], [ -75.611526489257812, -14.85291576385498 ], [ -75.612083435058537, -14.85291576385498 ], [ -75.612083435058537, -14.851805686950684 ], [ -75.612640380859318, -14.851805686950684 ], [ -75.612640380859318, -14.851528167724609 ], [ -75.612915039062443, -14.851528167724609 ], [ -75.612915039062443, -14.851805686950684 ], [ -75.613197326660099, -14.851805686950684 ], [ -75.613197326660099, -14.851528167724609 ], [ -75.613471984863281, -14.851528167724609 ], [ -75.613471984863281, -14.851249694824219 ], [ -75.613746643066406, -14.851249694824219 ], [ -75.613746643066406, -14.850972175598145 ], [ -75.614028930664062, -14.850972175598145 ], [ -75.614028930664062, -14.850693702697754 ], [ -75.614860534667969, -14.850693702697754 ], [ -75.614860534667969, -14.85041618347168 ], [ -75.615135192871037, -14.85041618347168 ], [ -75.615135192871037, -14.850693702697754 ], [ -75.615692138671818, -14.850693702697754 ], [ -75.615692138671818, -14.850137710571289 ], [ -75.615974426269474, -14.850137710571289 ], [ -75.615974426269474, -14.849860191345101 ], [ -75.616249084472599, -14.849862098693848 ], [ -75.616249084472599, -14.8495836257934 ], [ -75.617637634277344, -14.8495836257934 ], [ -75.617637634277344, -14.849304199218693 ], [ -75.618469238281193, -14.849306106567383 ], [ -75.618469238281193, -14.849027633666992 ], [ -75.618751525878849, -14.849027633666992 ], [ -75.618751525878849, -14.848750114440918 ], [ -75.619308471679631, -14.848750114440918 ], [ -75.619308471679631, -14.848471641540527 ], [ -75.619583129882812, -14.848471641540527 ], [ -75.619583129882812, -14.848750114440918 ], [ -75.619857788085938, -14.848750114440918 ], [ -75.619857788085938, -14.848471641540527 ], [ -75.620414733886719, -14.848471641540527 ], [ -75.620414733886719, -14.848194122314453 ], [ -75.620697021484375, -14.848194122314453 ], [ -75.620697021484375, -14.847915649414062 ], [ -75.621246337890625, -14.847915649414062 ], [ -75.621246337890625, -14.847361564636174 ], [ -75.621528625488168, -14.847359657287598 ], [ -75.621528625488168, -14.847082138061523 ], [ -75.622642517089787, -14.847084045410099 ], [ -75.622642517089787, -14.846805572509709 ], [ -75.622917175292969, -14.846805572509709 ], [ -75.622917175292969, -14.846249580383244 ], [ -75.623191833496094, -14.846249580383244 ], [ -75.623191833496094, -14.845972061157227 ], [ -75.623748779296875, -14.845972061157227 ], [ -75.623748779296875, -14.845693588256836 ], [ -75.624580383300668, -14.845693588256836 ], [ -75.624580383300668, -14.845972061157227 ], [ -75.624862670898381, -14.845972061157227 ], [ -75.624862670898381, -14.845693588256836 ], [ -75.625137329101506, -14.845693588256836 ], [ -75.625137329101506, -14.845136642455998 ], [ -75.625419616699162, -14.845136642455998 ], [ -75.625419616699162, -14.84485912322998 ], [ -75.625968933105469, -14.84485912322998 ], [ -75.625968933105469, -14.845136642455998 ], [ -75.626251220703125, -14.845136642455998 ], [ -75.626251220703125, -14.845417976379338 ], [ -75.627082824707031, -14.845417976379338 ], [ -75.627082824707031, -14.845136642455998 ], [ -75.627639770507812, -14.845136642455998 ], [ -75.627639770507812, -14.84485912322998 ], [ -75.627914428710881, -14.844861984252873 ], [ -75.627914428710881, -14.844584465026799 ], [ -75.628196716308537, -14.844584465026799 ], [ -75.628196716308537, -14.844861984252873 ], [ -75.629028320312443, -14.84485912322998 ], [ -75.629028320312443, -14.844305992126408 ], [ -75.630416870117188, -14.844305992126408 ], [ -75.630416870117188, -14.843749046325627 ], [ -75.630142211914062, -14.843749046325627 ], [ -75.630142211914062, -14.84291839599598 ], [ -75.630416870117188, -14.84291839599598 ], [ -75.630416870117188, -14.843193054199162 ], [ -75.630691528320312, -14.843193054199162 ], [ -75.630691528320312, -14.843470573425179 ], [ -75.631248474121037, -14.843470573425179 ], [ -75.631248474121037, -14.843193054199162 ], [ -75.632362365722656, -14.843193054199162 ], [ -75.632362365722656, -14.84291839599598 ], [ -75.632637023925781, -14.84291839599598 ], [ -75.632637023925781, -14.842361450195312 ], [ -75.632362365722656, -14.842361450195312 ], [ -75.632362365722656, -14.842081069946232 ], [ -75.632637023925781, -14.842082977294922 ], [ -75.632637023925781, -14.841805458068848 ], [ -75.633193969726562, -14.841805458068848 ], [ -75.633193969726562, -14.841526985168457 ], [ -75.633468627929688, -14.841526985168457 ], [ -75.633468627929688, -14.842081069946232 ], [ -75.634025573730469, -14.842082977294922 ], [ -75.634025573730469, -14.841805458068848 ], [ -75.634582519531193, -14.841805458068848 ], [ -75.634582519531193, -14.841526985168457 ], [ -75.634864807128849, -14.841526985168457 ], [ -75.634864807128849, -14.841251373291016 ], [ -75.635139465331974, -14.841251373291016 ], [ -75.635139465331974, -14.840970993041992 ], [ -75.635971069335938, -14.840970993041992 ], [ -75.635971069335938, -14.840695381164551 ], [ -75.636802673339844, -14.840695381164551 ], [ -75.636802673339844, -14.840415000915414 ], [ -75.6370849609375, -14.840415000915414 ], [ -75.6370849609375, -14.840695381164551 ], [ -75.637916564941349, -14.840695381164551 ], [ -75.637916564941349, -14.840415000915414 ], [ -75.638191223144474, -14.84041690826416 ], [ -75.638191223144474, -14.840139389038086 ], [ -75.637641906738224, -14.840139389038086 ], [ -75.637641906738224, -14.83930492401123 ], [ -75.637916564941349, -14.83930492401123 ], [ -75.637916564941349, -14.839583396911621 ], [ -75.638473510742131, -14.839583396911621 ], [ -75.638473510742131, -14.83930492401123 ], [ -75.639305114746094, -14.83930492401123 ], [ -75.639305114746094, -14.839027404785156 ], [ -75.639862060546875, -14.839027404785156 ], [ -75.639862060546875, -14.838194847106877 ], [ -75.640419006347656, -14.838194847106877 ], [ -75.640419006347656, -14.838473320007267 ], [ -75.640975952148381, -14.838473320007267 ], [ -75.640975952148381, -14.838748931884766 ], [ -75.641250610351506, -14.838748931884766 ], [ -75.641250610351506, -14.838194847106877 ], [ -75.642082214355469, -14.838194847106877 ], [ -75.642082214355469, -14.837917327880859 ], [ -75.642364501953125, -14.837917327880859 ], [ -75.642364501953125, -14.837638854980412 ], [ -75.642082214355469, -14.837638854980412 ], [ -75.642082214355469, -14.837361335754395 ], [ -75.64263916015625, -14.837361335754395 ], [ -75.64263916015625, -14.836526870727539 ], [ -75.642913818359375, -14.836526870727539 ], [ -75.642913818359375, -14.836251258850041 ], [ -75.643753051757812, -14.836251258850041 ], [ -75.643753051757812, -14.835970878601074 ], [ -75.644859313964787, -14.835970878601074 ], [ -75.644859313964787, -14.835695266723576 ], [ -75.6451416015625, -14.835695266723576 ], [ -75.6451416015625, -14.835416793823185 ], [ -75.645416259765625, -14.835416793823185 ], [ -75.645416259765625, -14.835139274597111 ], [ -75.64569091796875, -14.835139274597111 ], [ -75.64569091796875, -14.834860801696721 ], [ -75.646530151367188, -14.834860801696721 ], [ -75.646530151367188, -14.835139274597111 ], [ -75.648475646972656, -14.835139274597111 ], [ -75.648475646972656, -14.834860801696721 ], [ -75.649581909179688, -14.834860801696721 ], [ -75.649581909179688, -14.834583282470703 ], [ -75.649307250976562, -14.834583282470703 ], [ -75.649307250976562, -14.834304809570256 ], [ -75.649581909179688, -14.834304809570256 ], [ -75.649581909179688, -14.834029197692757 ], [ -75.649864196777344, -14.834027290344238 ], [ -75.649864196777344, -14.83375072479248 ], [ -75.650138854980355, -14.83375072479248 ], [ -75.650138854980355, -14.833471298217773 ], [ -75.650695800781193, -14.833473205566349 ], [ -75.650695800781193, -14.833194732665902 ], [ -75.650970458984318, -14.833194732665902 ], [ -75.650970458984318, -14.832917213439885 ], [ -75.652359008789062, -14.832917213439885 ], [ -75.652359008789062, -14.832638740539494 ], [ -75.652915954589844, -14.832638740539494 ], [ -75.652915954589844, -14.83236122131342 ], [ -75.653472900390568, -14.83236122131342 ], [ -75.653472900390568, -14.832084655761719 ], [ -75.654029846191349, -14.832084655761719 ], [ -75.654029846191349, -14.831802368164062 ], [ -75.654304504394474, -14.831804275512638 ], [ -75.654304504394474, -14.831528663635254 ], [ -75.654586791992131, -14.831528663635254 ], [ -75.654586791992131, -14.831248283386174 ], [ -75.655136108398438, -14.83125114440918 ], [ -75.655136108398438, -14.830972671508789 ], [ -75.655418395996094, -14.830972671508789 ], [ -75.655418395996094, -14.830692291259709 ], [ -75.655693054199219, -14.830695152282715 ], [ -75.655693054199219, -14.830415725708008 ], [ -75.657081604003849, -14.830415725708008 ], [ -75.657081604003849, -14.830138206481934 ], [ -75.657913208007812, -14.830138206481934 ], [ -75.657913208007812, -14.829859733581543 ], [ -75.6593017578125, -14.829859733581543 ], [ -75.6593017578125, -14.829582214355469 ], [ -75.659584045410156, -14.829582214355469 ], [ -75.659584045410156, -14.829306602478027 ], [ -75.660140991210881, -14.829306602478027 ], [ -75.660140991210881, -14.829026222229004 ], [ -75.660697937011662, -14.829028129577637 ], [ -75.660697937011662, -14.828749656677189 ], [ -75.661247253417969, -14.828749656677189 ], [ -75.661247253417969, -14.828470230102425 ], [ -75.66180419921875, -14.828472137451172 ], [ -75.66180419921875, -14.828193664550781 ], [ -75.661529541015625, -14.828193664550781 ], [ -75.661529541015625, -14.827916145324707 ], [ -75.66180419921875, -14.827916145324707 ], [ -75.66180419921875, -14.827637672424316 ], [ -75.662361145019531, -14.827637672424316 ], [ -75.662361145019531, -14.827360153198242 ], [ -75.662918090820199, -14.827360153198242 ], [ -75.662918090820199, -14.827083587646428 ], [ -75.664024353027344, -14.827083587646428 ], [ -75.664024353027344, -14.826804161071777 ], [ -75.664581298828125, -14.826804161071777 ], [ -75.664581298828125, -14.826527595519963 ], [ -75.665412902832031, -14.826527595519963 ], [ -75.665412902832031, -14.826250076293888 ], [ -75.665969848632699, -14.826250076293888 ], [ -75.665969848632699, -14.825971603393498 ], [ -75.666526794433537, -14.825971603393498 ], [ -75.666526794433537, -14.825694084167424 ], [ -75.667083740234318, -14.825694084167424 ], [ -75.667083740234318, -14.825415611267033 ], [ -75.667640686035156, -14.825415611267033 ], [ -75.667640686035156, -14.825138092041016 ], [ -75.668197631835938, -14.825138092041016 ], [ -75.668197631835938, -14.824861526489258 ], [ -75.668746948242188, -14.824861526489258 ], [ -75.668746948242188, -14.824582099914551 ], [ -75.669303894042912, -14.82458400726307 ], [ -75.669303894042912, -14.824305534362793 ], [ -75.669860839843693, -14.824305534362793 ], [ -75.669860839843693, -14.824028015136662 ], [ -75.670417785644474, -14.824028015136662 ], [ -75.670417785644474, -14.823749542236214 ], [ -75.670974731445312, -14.823749542236214 ], [ -75.670974731445312, -14.823472023010197 ], [ -75.671524047851562, -14.823472023010197 ], [ -75.671524047851562, -14.823193550109806 ], [ -75.672080993652344, -14.823193550109806 ], [ -75.672080993652344, -14.822916030883732 ], [ -75.672637939453068, -14.822917938232422 ], [ -75.672637939453068, -14.822637557983342 ], [ -75.673194885253849, -14.822637557983342 ], [ -75.673194885253849, -14.822360038757267 ], [ -75.673751831054688, -14.822361946105957 ], [ -75.673751831054688, -14.822084426879769 ], [ -75.674308776855469, -14.822084426879769 ], [ -75.674308776855469, -14.821805953979492 ], [ -75.674858093261719, -14.821805953979492 ], [ -75.674858093261719, -14.821528434753361 ], [ -75.6754150390625, -14.821528434753361 ], [ -75.6754150390625, -14.821249961852914 ], [ -75.675971984863224, -14.821249961852914 ], [ -75.675971984863224, -14.820972442626896 ], [ -75.676528930664006, -14.820972442626896 ], [ -75.676528930664006, -14.820693969726506 ], [ -75.677085876464844, -14.820693969726506 ], [ -75.677085876464844, -14.820416450500431 ], [ -75.677635192871094, -14.820416450500431 ], [ -75.677635192871094, -14.820137977600041 ], [ -75.678192138671875, -14.82013988494873 ], [ -75.678192138671875, -14.819862365722656 ], [ -75.679031372070256, -14.819862365722656 ], [ -75.679031372070256, -14.819581031799203 ], [ -75.679862976074162, -14.819583892822266 ], [ -75.679862976074162, -14.819306373596191 ], [ -75.680419921875, -14.819306373596191 ], [ -75.680419921875, -14.819027900695801 ], [ -75.684303283691406, -14.819027900695801 ], [ -75.684303283691406, -14.818750381469727 ], [ -75.685142517089844, -14.818750381469727 ], [ -75.685142517089844, -14.819027900695801 ], [ -75.685417175292912, -14.819027900695801 ], [ -75.685417175292912, -14.818471908569336 ], [ -75.685142517089844, -14.818471908569336 ], [ -75.685142517089844, -14.81764030456543 ], [ -75.684585571289062, -14.81764030456543 ], [ -75.684585571289062, -14.817361831665039 ], [ -75.684303283691406, -14.817361831665039 ], [ -75.684303283691406, -14.816804885864201 ], [ -75.684585571289062, -14.816804885864201 ], [ -75.684585571289062, -14.816248893737793 ], [ -75.684860229492188, -14.816248893737793 ], [ -75.684860229492188, -14.815971374511719 ], [ -75.685142517089844, -14.815971374511719 ], [ -75.685142517089844, -14.815695762634221 ], [ -75.685691833496037, -14.815695762634221 ], [ -75.685691833496037, -14.815415382385254 ], [ -75.685974121093693, -14.815415382385254 ], [ -75.685974121093693, -14.815138816833439 ], [ -75.686531066894531, -14.815138816833439 ], [ -75.686531066894531, -14.814861297607365 ], [ -75.687080383300781, -14.814861297607365 ], [ -75.687080383300781, -14.814582824706974 ], [ -75.688194274902344, -14.814582824706974 ], [ -75.688194274902344, -14.8143053054809 ], [ -75.688468933105412, -14.8143053054809 ], [ -75.688468933105412, -14.81402683258051 ], [ -75.689025878906193, -14.81402683258051 ], [ -75.689025878906193, -14.813749313354435 ], [ -75.689308166503849, -14.813749313354435 ], [ -75.689308166503849, -14.81319522857666 ], [ -75.689582824707031, -14.81319522857666 ], [ -75.689582824707031, -14.812639236450082 ], [ -75.689857482910156, -14.812639236450082 ], [ -75.689857482910156, -14.812083244323674 ], [ -75.690139770507812, -14.812083244323674 ], [ -75.690139770507812, -14.811529159545898 ], [ -75.690414428710938, -14.811529159545898 ], [ -75.690414428710938, -14.810971260070744 ], [ -75.690696716308594, -14.810973167419434 ], [ -75.690696716308594, -14.810694694519043 ], [ -75.691253662109375, -14.810694694519043 ], [ -75.691253662109375, -14.810415267944279 ], [ -75.691802978515568, -14.810417175292969 ], [ -75.691802978515568, -14.810138702392578 ], [ -75.692085266113224, -14.810138702392578 ], [ -75.692085266113224, -14.809859275817871 ], [ -75.692642211914006, -14.809861183166504 ], [ -75.692642211914006, -14.809582710266113 ], [ -75.693191528320312, -14.809582710266113 ], [ -75.693191528320312, -14.809305191039925 ], [ -75.693473815917969, -14.809305191039925 ], [ -75.693473815917969, -14.809026718139648 ], [ -75.693748474121094, -14.809026718139648 ], [ -75.693748474121094, -14.807916641235352 ], [ -75.69403076171875, -14.807916641235352 ], [ -75.69403076171875, -14.807639122009277 ], [ -75.694305419921875, -14.807639122009277 ], [ -75.694305419921875, -14.807916641235352 ], [ -75.694580078124886, -14.807916641235352 ], [ -75.694580078124886, -14.808195114135742 ], [ -75.695137023925724, -14.808195114135742 ], [ -75.695137023925724, -14.807083129882812 ], [ -75.695419311523381, -14.807083129882812 ], [ -75.695419311523381, -14.806804656982422 ], [ -75.695693969726506, -14.806804656982422 ], [ -75.695693969726506, -14.807083129882812 ], [ -75.69708251953125, -14.807083129882812 ], [ -75.69708251953125, -14.806804656982422 ], [ -75.697364807128906, -14.806804656982422 ], [ -75.697364807128906, -14.806527137756348 ], [ -75.697914123535099, -14.806529045104924 ], [ -75.697914123535099, -14.806248664855957 ], [ -75.698196411132756, -14.806248664855957 ], [ -75.698196411132756, -14.805970191955566 ], [ -75.698753356933537, -14.805973052978516 ], [ -75.698753356933537, -14.805694580078068 ], [ -75.699028015136662, -14.805694580078068 ], [ -75.699028015136662, -14.805417060852051 ], [ -75.6995849609375, -14.805417060852051 ], [ -75.6995849609375, -14.80513858795166 ], [ -75.700141906738281, -14.80513858795166 ], [ -75.700141906738281, -14.804861068725586 ], [ -75.700416564941406, -14.804861068725586 ], [ -75.700416564941406, -14.804581642150822 ], [ -75.700973510742188, -14.804581642150822 ], [ -75.700973510742188, -14.804304122924805 ], [ -75.701248168945256, -14.804304122924805 ], [ -75.701248168945256, -14.804029464721623 ], [ -75.701805114746037, -14.804029464721623 ], [ -75.701805114746037, -14.80374813079834 ], [ -75.702079772949162, -14.803750991821232 ], [ -75.702079772949162, -14.803473472595158 ], [ -75.70263671875, -14.803473472595158 ], [ -75.70263671875, -14.803192138671875 ], [ -75.703193664550781, -14.803194046020451 ], [ -75.703193664550781, -14.802915573120004 ], [ -75.702919006347656, -14.802915573120004 ], [ -75.702919006347656, -14.802638053893986 ], [ -75.703193664550781, -14.802638053893986 ], [ -75.703193664550781, -14.802363395690804 ], [ -75.703475952148438, -14.802363395690804 ], [ -75.703475952148438, -14.802082061767521 ], [ -75.703750610351562, -14.802082061767521 ], [ -75.703750610351562, -14.801806449890137 ], [ -75.704025268554688, -14.801806449890137 ], [ -75.704025268554688, -14.801526069641056 ], [ -75.70430755615223, -14.801527976989746 ], [ -75.70430755615223, -14.801250457763672 ], [ -75.705413818359375, -14.801250457763672 ], [ -75.705413818359375, -14.800970077514592 ], [ -75.705970764160156, -14.800971984863281 ], [ -75.705970764160156, -14.800694465637093 ], [ -75.706527709960938, -14.800694465637093 ], [ -75.706527709960938, -14.800415992736816 ], [ -75.706802368164062, -14.800415992736816 ], [ -75.706802368164062, -14.800138473510685 ], [ -75.707084655761719, -14.800138473510685 ], [ -75.707084655761719, -14.799860000610238 ], [ -75.707641601562443, -14.799860000610238 ], [ -75.707641601562443, -14.79958438873291 ], [ -75.707916259765568, -14.79958438873291 ], [ -75.707916259765568, -14.79930400848383 ], [ -75.708473205566349, -14.79930591583252 ], [ -75.708473205566349, -14.799028396606445 ], [ -75.709030151367188, -14.799028396606445 ], [ -75.709030151367188, -14.79847240447998 ], [ -75.709304809570312, -14.79847240447998 ], [ -75.709304809570312, -14.79819393157959 ], [ -75.709861755371094, -14.79819393157959 ], [ -75.709861755371094, -14.797916412353516 ], [ -75.710693359374943, -14.797916412353516 ], [ -75.710693359374943, -14.797637939453125 ], [ -75.711250305175724, -14.797637939453125 ], [ -75.711250305175724, -14.797362327575684 ], [ -75.711807250976506, -14.797362327575684 ], [ -75.711807250976506, -14.797637939453125 ], [ -75.712081909179688, -14.797637939453125 ], [ -75.712081909179688, -14.797362327575684 ], [ -75.712638854980469, -14.797362327575684 ], [ -75.712638854980469, -14.79708194732666 ], [ -75.712913513183594, -14.79708194732666 ], [ -75.712913513183594, -14.796527862548828 ], [ -75.71319580078125, -14.796527862548828 ], [ -75.71319580078125, -14.796250343322754 ], [ -75.713752746582031, -14.796250343322754 ], [ -75.713752746582031, -14.795971870422363 ], [ -75.714027404785099, -14.795971870422363 ], [ -75.714027404785099, -14.795694351196289 ], [ -75.714859008789006, -14.795694351196289 ], [ -75.714859008789006, -14.795415878295898 ], [ -75.715690612792969, -14.795415878295898 ], [ -75.7156982421875, -14.7951402664184 ], [ -75.715972900390625, -14.7951402664184 ], [ -75.715972900390625, -14.79486179351801 ], [ -75.716529846191406, -14.79486179351801 ], [ -75.716529846191406, -14.794584274291935 ], [ -75.716804504394531, -14.794584274291935 ], [ -75.716804504394531, -14.794305801391545 ], [ -75.717086791992074, -14.794305801391545 ], [ -75.717086791992074, -14.794584274291935 ], [ -75.717918395996037, -14.794584274291935 ], [ -75.717918395996037, -14.794305801391545 ], [ -75.718475341796875, -14.794305801391545 ], [ -75.718475341796875, -14.794028282165527 ], [ -75.719024658203125, -14.794028282165527 ], [ -75.719024658203125, -14.79374980926508 ], [ -75.719581604003906, -14.79374980926508 ], [ -75.719581604003906, -14.793472290039062 ], [ -75.719863891601562, -14.793472290039062 ], [ -75.719863891601562, -14.793193817138672 ], [ -75.720413208007756, -14.793193817138672 ], [ -75.720413208007756, -14.792916297912598 ], [ -75.720695495605412, -14.792916297912598 ], [ -75.720695495605412, -14.792639732360726 ], [ -75.721252441406193, -14.792639732360726 ], [ -75.721252441406193, -14.792362213134709 ], [ -75.721527099609375, -14.792362213134709 ], [ -75.721527099609375, -14.792083740234318 ], [ -75.722084045410156, -14.792083740234318 ], [ -75.722084045410156, -14.791527748107853 ], [ -75.722358703613281, -14.791527748107853 ], [ -75.722358703613281, -14.791247367858887 ], [ -75.722640991210938, -14.791250228881779 ], [ -75.722640991210938, -14.790970802307015 ], [ -75.722915649414062, -14.790970802307015 ], [ -75.722915649414062, -14.790693283080998 ], [ -75.724304199218693, -14.790693283080998 ], [ -75.724304199218693, -14.790417671203613 ], [ -75.724586486816349, -14.790417671203613 ], [ -75.724586486816349, -14.790137290954533 ], [ -75.725135803222656, -14.790140151977539 ], [ -75.725135803222656, -14.789861679077148 ], [ -75.725418090820312, -14.789861679077148 ], [ -75.725418090820312, -14.789583206176758 ], [ -75.725692749023438, -14.789583206176758 ], [ -75.725692749023438, -14.789304733276367 ], [ -75.726249694824219, -14.789304733276367 ], [ -75.726249694824219, -14.789027214050293 ], [ -75.726806640624943, -14.789027214050293 ], [ -75.726806640624943, -14.788748741149902 ], [ -75.727081298828068, -14.788748741149902 ], [ -75.727081298828068, -14.788471221923828 ], [ -75.727638244628849, -14.788471221923828 ], [ -75.727638244628849, -14.788194656372013 ], [ -75.727912902832031, -14.788194656372013 ], [ -75.727912902832031, -14.78791522979725 ], [ -75.728469848632812, -14.78791522979725 ], [ -75.728469848632812, -14.787638664245605 ], [ -75.729026794433594, -14.787638664245605 ], [ -75.729026794433594, -14.787359237670842 ], [ -75.729583740234375, -14.787361145019531 ], [ -75.729583740234375, -14.787082672119141 ], [ -75.729858398437443, -14.787082672119141 ], [ -75.729858398437443, -14.786803245544377 ], [ -75.730140686035099, -14.786805152893066 ], [ -75.730140686035099, -14.786526679992676 ], [ -75.730415344238224, -14.786526679992676 ], [ -75.730415344238224, -14.786272048950195 ], [ -75.730415344238224, -14.785972595214787 ], [ -75.730972290039062, -14.785972595214787 ], [ -75.730972290039062, -14.786249160766602 ], [ -75.731529235839844, -14.786249160766602 ], [ -75.731529235839844, -14.785972595214787 ], [ -75.732086181640625, -14.785972595214787 ], [ -75.732086181640625, -14.785693168640137 ], [ -75.73236083984375, -14.785693168640137 ], [ -75.73236083984375, -14.785416603088322 ], [ -75.732521057128849, -14.785416603088322 ], [ -75.732917785644418, -14.785416603088322 ], [ -75.732917785644418, -14.785139083862248 ], [ -75.733474731445256, -14.785139083862248 ], [ -75.733474731445256, -14.784860610961857 ], [ -75.734024047851562, -14.784860610961857 ], [ -75.734024047851562, -14.78458309173584 ], [ -75.735694885253906, -14.78458309173584 ], [ -75.735694885253906, -14.784304618835392 ], [ -75.736251831054631, -14.784304618835392 ], [ -75.736251831054631, -14.78458309173584 ], [ -75.738197326660156, -14.78458309173584 ], [ -75.738197326660156, -14.784304618835392 ], [ -75.739303588867131, -14.784304618835392 ], [ -75.739303588867131, -14.784027099609375 ], [ -75.739585876464787, -14.784027099609375 ], [ -75.739585876464787, -14.783748626708984 ], [ -75.739860534667912, -14.783748626708984 ], [ -75.739860534667912, -14.782361030578556 ], [ -75.740135192871037, -14.782361030578556 ], [ -75.740135192871037, -14.781526565551701 ], [ -75.739860534667912, -14.781526565551701 ], [ -75.739860534667912, -14.781249046325684 ], [ -75.739028930664062, -14.781250953674316 ], [ -75.739028930664062, -14.780973434448185 ], [ -75.738746643066406, -14.780973434448185 ], [ -75.738746643066406, -14.780693054199219 ], [ -75.738471984863281, -14.780694961547738 ], [ -75.738471984863281, -14.780417442321721 ], [ -75.738197326660156, -14.780417442321721 ], [ -75.738197326660156, -14.779582977294865 ], [ -75.738471984863281, -14.779582977294865 ], [ -75.738471984863281, -14.7790269851684 ], [ -75.738746643066406, -14.7790269851684 ], [ -75.738746643066406, -14.778470039367619 ], [ -75.739028930664062, -14.778472900390625 ], [ -75.739028930664062, -14.777639389037972 ], [ -75.739303588867131, -14.777639389037972 ], [ -75.739303588867131, -14.777359962463379 ], [ -75.739585876464787, -14.777359962463379 ], [ -75.739585876464787, -14.777082443237305 ], [ -75.739860534667912, -14.777082443237305 ], [ -75.739860534667912, -14.77652645111084 ], [ -75.740135192871037, -14.77652645111084 ], [ -75.740135192871037, -14.776250839233398 ], [ -75.740692138671875, -14.776250839233398 ], [ -75.740692138671875, -14.77652645111084 ], [ -75.741249084472656, -14.77652645111084 ], [ -75.741249084472656, -14.776250839233398 ], [ -75.741531372070312, -14.776250839233398 ], [ -75.741531372070312, -14.775972366333008 ], [ -75.741806030273438, -14.775972366333008 ], [ -75.741806030273438, -14.775693893432617 ], [ -75.742362976074219, -14.775693893432617 ], [ -75.742362976074219, -14.775416374206543 ], [ -75.742919921874943, -14.775416374206543 ], [ -75.742919921874943, -14.775137901306152 ], [ -75.743194580078068, -14.775137901306152 ], [ -75.743194580078068, -14.774860382080078 ], [ -75.743751525878906, -14.774860382080078 ], [ -75.743751525878906, -14.774581909179688 ], [ -75.744026184082031, -14.774581909179688 ], [ -75.744026184082031, -14.774306297302189 ], [ -75.744308471679688, -14.774306297302189 ], [ -75.744308471679688, -14.773471832275334 ], [ -75.744583129882812, -14.773471832275334 ], [ -75.744583129882812, -14.77319431304926 ], [ -75.745697021484261, -14.77319431304926 ], [ -75.745697021484261, -14.772915840148869 ], [ -75.745971679687443, -14.772915840148869 ], [ -75.745971679687443, -14.772640228271484 ], [ -75.746528625488224, -14.772640228271484 ], [ -75.746528625488224, -14.772084236144906 ], [ -75.746803283691406, -14.772084236144906 ], [ -75.746803283691406, -14.771805763244629 ], [ -75.747642517089844, -14.771805763244629 ], [ -75.747642517089844, -14.771528244018498 ], [ -75.74847412109375, -14.771528244018498 ], [ -75.74847412109375, -14.77124977111805 ], [ -75.748748779296761, -14.77124977111805 ], [ -75.748748779296761, -14.770972251892033 ], [ -75.749305725097599, -14.770972251892033 ], [ -75.749305725097599, -14.770693778991642 ], [ -75.749580383300724, -14.770693778991642 ], [ -75.749580383300724, -14.770416259765568 ], [ -75.750137329101562, -14.770416259765568 ], [ -75.750137329101562, -14.770137786865178 ], [ -75.750694274902344, -14.770137786865178 ], [ -75.750694274902344, -14.769860267639103 ], [ -75.750968933105469, -14.769862174987793 ], [ -75.750968933105469, -14.769583702087402 ], [ -75.75152587890625, -14.769583702087402 ], [ -75.75152587890625, -14.769304275512695 ], [ -75.751808166503906, -14.769306182861328 ], [ -75.751808166503906, -14.769027709960938 ], [ -75.752357482910099, -14.769027709960938 ], [ -75.752357482910099, -14.76875019073475 ], [ -75.752914428710881, -14.76875019073475 ], [ -75.752914428710881, -14.768471717834473 ], [ -75.753196716308537, -14.768471717834473 ], [ -75.753196716308537, -14.768194198608342 ], [ -75.753753662109375, -14.768194198608342 ], [ -75.753753662109375, -14.767915725707894 ], [ -75.7540283203125, -14.767915725707894 ], [ -75.7540283203125, -14.767640113830566 ], [ -75.754585266113281, -14.767640113830566 ], [ -75.754585266113281, -14.767359733581486 ], [ -75.755142211914062, -14.767359733581486 ], [ -75.755142211914062, -14.767084121704102 ], [ -75.755416870117131, -14.767084121704102 ], [ -75.755416870117131, -14.766805648803711 ], [ -75.755973815917912, -14.766805648803711 ], [ -75.755973815917912, -14.766528129577637 ], [ -75.75653076171875, -14.766528129577637 ], [ -75.75653076171875, -14.766249656677246 ], [ -75.756805419921875, -14.766249656677246 ], [ -75.756805419921875, -14.765969276428166 ], [ -75.757362365722656, -14.765972137451172 ], [ -75.757362365722656, -14.765693664550781 ], [ -75.757637023925781, -14.765693664550781 ], [ -75.757637023925781, -14.765416145324707 ], [ -75.758193969726562, -14.76541805267334 ], [ -75.758193969726562, -14.765139579772892 ], [ -75.758750915527287, -14.765139579772892 ], [ -75.758750915527287, -14.764859199523926 ], [ -75.759025573730412, -14.764862060546875 ], [ -75.759025573730412, -14.764583587646484 ], [ -75.75958251953125, -14.764583587646484 ], [ -75.75958251953125, -14.764303207397461 ], [ -75.760139465332031, -14.76430606842041 ], [ -75.760139465332031, -14.76402759552002 ], [ -75.760414123535156, -14.76402759552002 ], [ -75.760414123535156, -14.763749122619629 ], [ -75.760971069335938, -14.763749122619629 ], [ -75.760971069335938, -14.763470649719181 ], [ -75.761253356933594, -14.763470649719181 ], [ -75.761253356933594, -14.763193130493164 ], [ -75.761802673339787, -14.763193130493164 ], [ -75.761802673339787, -14.762918472289982 ], [ -75.762359619140568, -14.762918472289982 ], [ -75.762359619140568, -14.762637138366699 ], [ -75.762641906738224, -14.762639999389592 ], [ -75.762641906738224, -14.762360572814828 ], [ -75.763191223144531, -14.762360572814828 ], [ -75.763191223144531, -14.762081146240234 ], [ -75.763748168945312, -14.76208305358881 ], [ -75.763748168945312, -14.76180458068842 ], [ -75.764030456542969, -14.76180458068842 ], [ -75.764030456542969, -14.761527061462346 ], [ -75.764579772949105, -14.761527061462346 ], [ -75.764579772949105, -14.761248588561955 ], [ -75.764862060546818, -14.761248588561955 ], [ -75.764862060546818, -14.760971069335881 ], [ -75.765419006347599, -14.760971069335881 ], [ -75.765419006347599, -14.760695457458496 ], [ -75.765975952148381, -14.760695457458496 ], [ -75.765975952148381, -14.760415077209416 ], [ -75.766250610351562, -14.760416984558105 ], [ -75.766250610351562, -14.760139465331918 ], [ -75.766807556152344, -14.760139465331918 ], [ -75.766807556152344, -14.75958347320551 ], [ -75.76763916015625, -14.75958347320551 ], [ -75.76763916015625, -14.759305000305062 ], [ -75.767913818359318, -14.759305000305062 ], [ -75.767913818359318, -14.758749008178654 ], [ -75.769027709960881, -14.758749008178654 ], [ -75.769027709960881, -14.75847339630127 ], [ -75.769584655761719, -14.75847339630127 ], [ -75.769584655761719, -14.758193016052189 ], [ -75.769859313964844, -14.758193016052189 ], [ -75.769859313964844, -14.757917404174805 ], [ -75.770416259765625, -14.757917404174805 ], [ -75.770416259765625, -14.757638931274414 ], [ -75.77069091796875, -14.757638931274414 ], [ -75.77069091796875, -14.75736141204834 ], [ -75.771247863769474, -14.75736141204834 ], [ -75.771247863769474, -14.757082939147949 ], [ -75.771804809570256, -14.757082939147949 ], [ -75.771804809570256, -14.756805419921761 ], [ -75.772087097167912, -14.756805419921761 ], [ -75.772087097167912, -14.756526947021484 ], [ -75.772636413574219, -14.756526947021484 ], [ -75.772636413574219, -14.756251335144043 ], [ -75.773193359375, -14.756251335144043 ], [ -75.773193359375, -14.755970954894906 ], [ -75.773475646972656, -14.755970954894906 ], [ -75.773475646972656, -14.755695343017578 ], [ -75.774024963378906, -14.755695343017578 ], [ -75.774024963378906, -14.755416870117188 ], [ -75.774307250976449, -14.755416870117188 ], [ -75.774307250976449, -14.755139350891113 ], [ -75.774864196777287, -14.755139350891113 ], [ -75.774864196777287, -14.754860877990723 ], [ -75.775413513183594, -14.754860877990723 ], [ -75.775413513183594, -14.754583358764648 ], [ -75.77569580078125, -14.754583358764648 ], [ -75.77569580078125, -14.754304885864258 ], [ -75.776252746582031, -14.754304885864258 ], [ -75.776252746582031, -14.754027366638184 ], [ -75.776802062988281, -14.754027366638184 ], [ -75.776802062988281, -14.753750801086369 ], [ -75.777359008788949, -14.753750801086369 ], [ -75.777359008788949, -14.753473281860352 ], [ -75.777915954589787, -14.753473281860352 ], [ -75.777915954589787, -14.753194808959904 ], [ -75.778472900390568, -14.753194808959904 ], [ -75.778472900390568, -14.752917289733887 ], [ -75.779029846191406, -14.752917289733887 ], [ -75.779029846191406, -14.752638816833496 ], [ -75.779586791992188, -14.752638816833496 ], [ -75.779586791992188, -14.752361297607422 ], [ -75.780136108398438, -14.752361297607422 ], [ -75.780136108398438, -14.75208473205555 ], [ -75.780693054199162, -14.75208473205555 ], [ -75.780693054199162, -14.751805305480957 ], [ -75.780975341796818, -14.751805305480957 ], [ -75.780975341796818, -14.751528739929142 ], [ -75.781524658203068, -14.751528739929142 ], [ -75.781524658203068, -14.751251220703068 ], [ -75.781806945800724, -14.751251220703068 ], [ -75.781806945800724, -14.750972747802678 ], [ -75.782081604003906, -14.750972747802678 ], [ -75.782081604003906, -14.750692367553711 ], [ -75.782363891601562, -14.750695228576603 ], [ -75.782363891601562, -14.750416755676213 ], [ -75.782913208007812, -14.750416755676213 ], [ -75.782913208007812, -14.750138282775822 ], [ -75.783195495605469, -14.750138282775822 ], [ -75.783195495605469, -14.749859809875431 ], [ -75.784027099609318, -14.749859809875431 ], [ -75.784027099609318, -14.749582290649357 ], [ -75.784584045410099, -14.749582290649357 ], [ -75.784584045410099, -14.749306678771973 ], [ -75.785140991210938, -14.749306678771973 ], [ -75.785140991210938, -14.749029159545785 ], [ -75.785972595214844, -14.749029159545785 ], [ -75.785972595214844, -14.748749732971191 ], [ -75.786247253417969, -14.748749732971191 ], [ -75.786247253417969, -14.748472213745117 ], [ -75.787361145019474, -14.748472213745117 ], [ -75.787361145019474, -14.748193740844727 ], [ -75.787635803222599, -14.748193740844727 ], [ -75.787635803222599, -14.74791431427002 ], [ -75.787918090820256, -14.747916221618652 ], [ -75.787918090820256, -14.747637748718262 ], [ -75.788192749023438, -14.747637748718262 ], [ -75.788192749023438, -14.747360229492074 ], [ -75.788749694824219, -14.747360229492074 ], [ -75.788749694824219, -14.74708366394043 ], [ -75.789581298828125, -14.74708366394043 ], [ -75.789581298828125, -14.746804237365666 ], [ -75.790412902831974, -14.746804237365666 ], [ -75.790412902831974, -14.746527671813965 ], [ -75.790695190429631, -14.746527671813965 ], [ -75.790695190429631, -14.746248245239201 ], [ -75.791526794433594, -14.746250152587891 ], [ -75.791526794433594, -14.7459716796875 ], [ -75.792083740234375, -14.7459716796875 ], [ -75.792083740234375, -14.745694160461426 ], [ -75.792640686035156, -14.745694160461426 ], [ -75.792640686035156, -14.745415687561035 ], [ -75.792915344238281, -14.745415687561035 ], [ -75.792915344238281, -14.745138168334961 ], [ -75.793472290039006, -14.745138168334961 ], [ -75.793472290039006, -14.74485969543457 ], [ -75.794303894042912, -14.74485969543457 ], [ -75.794303894042912, -14.744582176208496 ], [ -75.79486083984375, -14.744584083557072 ], [ -75.79486083984375, -14.744305610656681 ], [ -75.795135498046875, -14.744305610656681 ], [ -75.795135498046875, -14.744028091430664 ], [ -75.795692443847656, -14.744028091430664 ], [ -75.795692443847656, -14.743749618530217 ], [ -75.796806335449162, -14.743749618530217 ], [ -75.796806335449162, -14.743472099304199 ], [ -75.797363281249943, -14.743472099304199 ], [ -75.797363281249943, -14.743193626403809 ], [ -75.797920227050781, -14.743193626403809 ], [ -75.797920227050781, -14.742916107177734 ], [ -75.798194885253906, -14.74291801452631 ], [ -75.798194885253906, -14.742637634277344 ], [ -75.798751831054688, -14.742637634277344 ], [ -75.798751831054688, -14.74236011505127 ], [ -75.799308776855469, -14.742362022399846 ], [ -75.799308776855469, -14.742083549499455 ], [ -75.800140380859318, -14.742083549499455 ], [ -75.800140380859318, -14.741806030273381 ], [ -75.800697326660099, -14.741806030273381 ], [ -75.800697326660099, -14.74152755737299 ], [ -75.801246643066406, -14.74152755737299 ], [ -75.801246643066406, -14.741250038146916 ], [ -75.801803588867188, -14.741250038146916 ], [ -75.801803588867188, -14.740971565246525 ], [ -75.802635192871094, -14.740971565246525 ], [ -75.802635192871094, -14.740694046020508 ], [ -75.803192138671818, -14.740694046020508 ], [ -75.803192138671818, -14.74041557312006 ], [ -75.803749084472599, -14.74041557312006 ], [ -75.803749084472599, -14.740138053894043 ], [ -75.804306030273438, -14.740139961242562 ], [ -75.804306030273438, -14.739862442016545 ], [ -75.805137634277344, -14.739862442016545 ], [ -75.805137634277344, -14.739582061767578 ], [ -75.805694580078125, -14.739583969116154 ], [ -75.805694580078125, -14.73930644989008 ], [ -75.805969238281136, -14.73930644989008 ], [ -75.805969238281136, -14.739027976989689 ], [ -75.806526184081974, -14.739027976989689 ], [ -75.806526184081974, -14.738750457763615 ], [ -75.807357788085938, -14.738750457763615 ], [ -75.807357788085938, -14.738471984863224 ], [ -75.807914733886719, -14.738471984863224 ], [ -75.807914733886719, -14.73819446563715 ], [ -75.8084716796875, -14.73819446563715 ], [ -75.8084716796875, -14.738471984863224 ], [ -75.808746337890625, -14.738471984863224 ], [ -75.808746337890625, -14.73819446563715 ], [ -75.809303283691349, -14.73819446563715 ], [ -75.809303283691349, -14.737915039062443 ], [ -75.809860229492131, -14.737917900085449 ], [ -75.809860229492131, -14.737084388732796 ], [ -75.810142517089787, -14.737084388732796 ], [ -75.810142517089787, -14.73680591583252 ], [ -75.810417175292912, -14.73680591583252 ], [ -75.810417175292912, -14.737359046935978 ], [ -75.81097412109375, -14.737361907958984 ], [ -75.81097412109375, -14.737084388732796 ], [ -75.811531066894531, -14.737084388732796 ], [ -75.811531066894531, -14.73680591583252 ], [ -75.812080383300781, -14.73680591583252 ], [ -75.812080383300781, -14.736527442932129 ], [ -75.812919616699162, -14.736527442932129 ], [ -75.812919616699162, -14.735971450805664 ], [ -75.81402587890625, -14.735971450805664 ], [ -75.81402587890625, -14.735695838928223 ], [ -75.814582824707031, -14.735695838928223 ], [ -75.814582824707031, -14.735418319702148 ], [ -75.815139770507812, -14.735418319702148 ], [ -75.815139770507812, -14.735136985778809 ], [ -75.815971374511662, -14.735138893127441 ], [ -75.815971374511662, -14.734861373901367 ], [ -75.816528320312443, -14.734861373901367 ], [ -75.816528320312443, -14.73458099365223 ], [ -75.816802978515625, -14.734582901000977 ], [ -75.816802978515625, -14.734305381774902 ], [ -75.817642211914062, -14.734305381774902 ], [ -75.817642211914062, -14.734026908874512 ], [ -75.817916870117188, -14.734026908874512 ], [ -75.817916870117188, -14.733749389648438 ], [ -75.818191528320312, -14.733749389648438 ], [ -75.818191528320312, -14.733470916748047 ], [ -75.818473815917969, -14.733470916748047 ], [ -75.818473815917969, -14.733749389648438 ], [ -75.819030761718693, -14.733749389648438 ], [ -75.819030761718693, -14.733470916748047 ], [ -75.819580078124943, -14.733470916748047 ], [ -75.819580078124943, -14.733195304870549 ], [ -75.820137023925781, -14.733195304870549 ], [ -75.820137023925781, -14.732916831970158 ], [ -75.820693969726562, -14.732916831970158 ], [ -75.820693969726562, -14.732639312744084 ], [ -75.821250915527344, -14.732639312744084 ], [ -75.821250915527344, -14.732360839843693 ], [ -75.822082519531193, -14.732360839843693 ], [ -75.822082519531193, -14.732083320617676 ], [ -75.822364807128849, -14.732083320617676 ], [ -75.822364807128849, -14.731804847717228 ], [ -75.823196411132756, -14.731804847717228 ], [ -75.823196411132756, -14.731527328491211 ], [ -75.824028015136719, -14.731527328491211 ], [ -75.824028015136719, -14.73124885559082 ], [ -75.8245849609375, -14.73124885559082 ], [ -75.8245849609375, -14.730973243713322 ], [ -75.824859619140625, -14.730973243713322 ], [ -75.824859619140625, -14.730694770812875 ], [ -75.825141906738281, -14.730694770812875 ], [ -75.825141906738281, -14.730417251586857 ], [ -75.826530456542969, -14.730417251586857 ], [ -75.826530456542969, -14.730138778686467 ], [ -75.827079772949219, -14.730138778686467 ], [ -75.827079772949219, -14.729861259460392 ], [ -75.827919006347656, -14.729861259460392 ], [ -75.827919006347656, -14.729582786560002 ], [ -75.828475952148324, -14.729582786560002 ], [ -75.828475952148324, -14.729305267333928 ], [ -75.829025268554631, -14.729305267333928 ], [ -75.829025268554631, -14.729026794433537 ], [ -75.829864501953125, -14.729026794433537 ], [ -75.829864501953125, -14.72874927520752 ], [ -75.830413818359375, -14.72874927520752 ], [ -75.830413818359375, -14.728193283081055 ], [ -75.830696105957031, -14.728195190429574 ], [ -75.830696105957031, -14.727916717529297 ], [ -75.831527709960824, -14.727916717529297 ], [ -75.831527709960824, -14.728195190429574 ], [ -75.831802368164006, -14.728195190429574 ], [ -75.831802368164006, -14.727916717529297 ], [ -75.832359313964787, -14.727916717529297 ], [ -75.832359313964787, -14.727639198303166 ], [ -75.832916259765625, -14.727639198303166 ], [ -75.832916259765625, -14.727360725402718 ], [ -75.833747863769531, -14.727360725402718 ], [ -75.833747863769531, -14.727080345153809 ], [ -75.834304809570312, -14.727083206176701 ], [ -75.834304809570312, -14.72680473327631 ], [ -75.834861755371037, -14.72680473327631 ], [ -75.834861755371037, -14.726529121398926 ], [ -75.835418701171818, -14.726529121398926 ], [ -75.835418701171818, -14.72680473327631 ], [ -75.835975646972599, -14.72680473327631 ], [ -75.835975646972599, -14.727083206176701 ], [ -75.836807250976562, -14.727083206176701 ], [ -75.836807250976562, -14.72680473327631 ], [ -75.837638854980469, -14.72680473327631 ], [ -75.837638854980469, -14.725973129272461 ], [ -75.837913513183537, -14.725973129272461 ], [ -75.837913513183537, -14.72541427612299 ], [ -75.838195800781193, -14.72541427612299 ], [ -75.838195800781193, -14.724858283996525 ], [ -75.838470458984318, -14.724861145019531 ], [ -75.838470458984318, -14.724582672119141 ], [ -75.839027404785099, -14.724582672119141 ], [ -75.839027404785099, -14.72430229187006 ], [ -75.839584350585938, -14.72430419921875 ], [ -75.839584350585938, -14.724028587341309 ], [ -75.840141296386719, -14.724028587341309 ], [ -75.840141296386719, -14.723748207092285 ], [ -75.840690612792969, -14.723751068115234 ], [ -75.8406982421875, -14.723472595214844 ], [ -75.841247558593693, -14.723472595214844 ], [ -75.841247558593693, -14.72319221496582 ], [ -75.841804504394474, -14.72319507598877 ], [ -75.841804504394474, -14.722915649414006 ], [ -75.842361450195312, -14.722915649414006 ], [ -75.842361450195312, -14.722638130187988 ], [ -75.842636108398438, -14.722638130187988 ], [ -75.842636108398438, -14.722363471984806 ], [ -75.843193054199219, -14.722359657287598 ], [ -75.843193054199219, -14.722082138061523 ], [ -75.84375, -14.722082138061523 ], [ -75.84375, -14.722359657287598 ], [ -75.844024658203125, -14.722363471984806 ], [ -75.844024658203125, -14.722638130187988 ], [ -75.844306945800668, -14.722638130187988 ], [ -75.844306945800668, -14.722363471984806 ], [ -75.844863891601506, -14.722359657287598 ], [ -75.844863891601506, -14.722082138061523 ], [ -75.845413208007812, -14.722082138061523 ], [ -75.845413208007812, -14.721806526184025 ], [ -75.845695495605469, -14.721806526184025 ], [ -75.845695495605469, -14.721526145935059 ], [ -75.84625244140625, -14.721528053283635 ], [ -75.84625244140625, -14.721249580383244 ], [ -75.846527099609375, -14.721249580383244 ], [ -75.846527099609375, -14.720970153808594 ], [ -75.847084045410156, -14.720970153808594 ], [ -75.847084045410156, -14.720416069030705 ], [ -75.847915649414006, -14.720416069030705 ], [ -75.847915649414006, -14.720137596130314 ], [ -75.848472595214787, -14.720137596130314 ], [ -75.848472595214787, -14.71986007690424 ], [ -75.848747253417969, -14.71986007690424 ], [ -75.848747253417969, -14.719584465026742 ], [ -75.84930419921875, -14.719584465026742 ], [ -75.84930419921875, -14.719304084777832 ], [ -75.849861145019531, -14.719305992126465 ], [ -75.849861145019531, -14.719028472900334 ], [ -75.850418090820312, -14.719028472900334 ], [ -75.850418090820312, -14.718748092651367 ], [ -75.851249694824162, -14.718749999999886 ], [ -75.851249694824162, -14.718471527099609 ], [ -75.851806640624943, -14.718471527099609 ], [ -75.851806640624943, -14.718194007873478 ], [ -75.852638244628906, -14.718194007873478 ], [ -75.852638244628906, -14.717638015747013 ], [ -75.852912902832031, -14.717638015747013 ], [ -75.852912902832031, -14.717362403869629 ], [ -75.853195190429688, -14.717362403869629 ], [ -75.853195190429688, -14.717638015747013 ], [ -75.854583740234318, -14.717638015747013 ], [ -75.854583740234318, -14.717915534973031 ], [ -75.855972290039062, -14.717915534973031 ], [ -75.855972290039062, -14.717638015747013 ], [ -75.856529235839844, -14.717638015747013 ], [ -75.856529235839844, -14.717362403869629 ], [ -75.856803894042969, -14.717362403869629 ], [ -75.856803894042969, -14.716806411743164 ], [ -75.856529235839844, -14.716806411743164 ], [ -75.856529235839844, -14.715694427490178 ], [ -75.856246948242188, -14.715694427490178 ], [ -75.856246948242188, -14.714859962463322 ], [ -75.855972290039062, -14.714861869812012 ], [ -75.855972290039062, -14.714584350585938 ], [ -75.854621887207031, -14.714584350585938 ], [ -75.853752136230469, -14.714584350585938 ], [ -75.853752136230469, -14.714305877685547 ], [ -75.853469848632812, -14.714305877685547 ], [ -75.853469848632812, -14.714028358459473 ], [ -75.852912902832031, -14.714028358459473 ], [ -75.852912902832031, -14.713749885559082 ], [ -75.852622985839844, -14.713749885559082 ], [ -75.852363586425781, -14.713749885559082 ], [ -75.852363586425781, -14.713472366333008 ], [ -75.851234436035099, -14.713472366333008 ], [ -75.850692749023381, -14.713472366333008 ], [ -75.850692749023381, -14.713310241699162 ], [ -75.850692749023381, -14.713195800781193 ], [ -75.850540161132812, -14.713195800781193 ], [ -75.850418090820312, -14.713195800781193 ], [ -75.850418090820312, -14.712916374206543 ], [ -75.850135803222656, -14.712916374206543 ], [ -75.850135803222656, -14.712639808654728 ], [ -75.849861145019531, -14.712639808654728 ], [ -75.849861145019531, -14.709584236144963 ], [ -75.850135803222656, -14.709584236144963 ], [ -75.850135803222656, -14.708471298217717 ], [ -75.850418090820312, -14.708471298217717 ], [ -75.850418090820312, -14.70624923706049 ], [ -75.850692749023381, -14.70624923706049 ], [ -75.850692749023381, -14.705416679382324 ], [ -75.850975036621037, -14.705416679382324 ], [ -75.850975036621037, -14.704860687255859 ], [ -75.851249694824162, -14.704860687255859 ], [ -75.851249694824162, -14.70402717590332 ], [ -75.851524353027287, -14.70402717590332 ], [ -75.851524353027287, -14.702638626098633 ], [ -75.852081298828125, -14.702638626098633 ], [ -75.852081298828125, -14.702082633972168 ], [ -75.852363586425781, -14.702082633972168 ], [ -75.852363586425781, -14.701805114746094 ], [ -75.852638244628906, -14.701805114746094 ], [ -75.852638244628906, -14.701526641845703 ], [ -75.852912902832031, -14.701526641845703 ], [ -75.852912902832031, -14.700972557067814 ], [ -75.853195190429688, -14.700972557067814 ], [ -75.853195190429688, -14.700693130493164 ], [ -75.853469848632812, -14.70069503784174 ], [ -75.853469848632812, -14.700416564941349 ], [ -75.853752136230469, -14.700416564941349 ], [ -75.853752136230469, -14.700139045715332 ], [ -75.854026794433537, -14.700139045715332 ], [ -75.854026794433537, -14.699860572814885 ], [ -75.854309082031193, -14.699860572814885 ], [ -75.854309082031193, -14.699583053588867 ], [ -75.854583740234318, -14.699583053588867 ], [ -75.854583740234318, -14.699027061462402 ], [ -75.854858398437443, -14.699028968810978 ], [ -75.854858398437443, -14.698748588562012 ], [ -75.855140686035156, -14.698748588562012 ], [ -75.855140686035156, -14.698470115661621 ], [ -75.855415344238281, -14.698472976684513 ], [ -75.855415344238281, -14.698195457458439 ], [ -75.855697631835938, -14.698195457458439 ], [ -75.855697631835938, -14.697916984558049 ], [ -75.855972290039062, -14.697916984558049 ], [ -75.855972290039062, -14.697639465331974 ], [ -75.856246948242188, -14.697639465331974 ], [ -75.856246948242188, -14.697360992431584 ], [ -75.856529235839844, -14.697360992431584 ], [ -75.856529235839844, -14.69708156585682 ], [ -75.856803894042969, -14.69708156585682 ], [ -75.856803894042969, -14.696804046630803 ], [ -75.857086181640511, -14.696806907653809 ], [ -75.857086181640511, -14.696525573730412 ], [ -75.857360839843693, -14.696525573730412 ], [ -75.857360839843693, -14.696248054504338 ], [ -75.857635498046818, -14.696250915527344 ], [ -75.857635498046818, -14.695973396301213 ], [ -75.857917785644474, -14.695973396301213 ], [ -75.857917785644474, -14.695692062377873 ], [ -75.858192443847656, -14.695693969726562 ], [ -75.858192443847656, -14.695416450500488 ], [ -75.858749389648438, -14.695416450500488 ], [ -75.858749389648438, -14.695137977600098 ], [ -75.859024047851562, -14.695137977600098 ], [ -75.859024047851562, -14.69486045837391 ], [ -75.859306335449219, -14.69486045837391 ], [ -75.859306335449219, -14.694581985473633 ], [ -75.859580993652344, -14.694581985473633 ], [ -75.859580993652344, -14.694306373596191 ], [ -75.85986328125, -14.694306373596191 ], [ -75.85986328125, -14.694025993347054 ], [ -75.860137939453011, -14.694027900695801 ], [ -75.860137939453011, -14.693750381469727 ], [ -75.860420227050724, -14.693750381469727 ], [ -75.860420227050724, -14.693470001220646 ], [ -75.860694885253849, -14.693471908569336 ], [ -75.860694885253849, -14.693194389343262 ], [ -75.860969543456974, -14.693194389343262 ], [ -75.860969543456974, -14.692915916442871 ], [ -75.861251831054631, -14.692915916442871 ], [ -75.861251831054631, -14.692640304565373 ], [ -75.861526489257812, -14.692638397216797 ], [ -75.861526489257812, -14.692359924316406 ], [ -75.861808776855469, -14.692359924316406 ], [ -75.861808776855469, -14.692084312438908 ], [ -75.862358093261719, -14.692084312438908 ], [ -75.862358093261719, -14.691805839538517 ], [ -75.862640380859375, -14.691805839538517 ], [ -75.862640380859375, -14.6915283203125 ], [ -75.8629150390625, -14.6915283203125 ], [ -75.8629150390625, -14.691249847412053 ], [ -75.863197326660156, -14.691249847412053 ], [ -75.863197326660156, -14.690972328186035 ], [ -75.863746643066349, -14.690972328186035 ], [ -75.863746643066349, -14.690693855285645 ], [ -75.864028930664006, -14.690693855285645 ], [ -75.864028930664006, -14.69041633605957 ], [ -75.864303588867131, -14.69041633605957 ], [ -75.864303588867131, -14.69013786315918 ], [ -75.864860534667969, -14.69013786315918 ], [ -75.864860534667969, -14.689862251281681 ], [ -75.865135192871094, -14.689862251281681 ], [ -75.865135192871094, -14.689583778381291 ], [ -75.86541748046875, -14.689583778381291 ], [ -75.86541748046875, -14.689306259155217 ], [ -75.865692138671875, -14.689306259155217 ], [ -75.865692138671875, -14.689027786254826 ], [ -75.866249084472656, -14.689027786254826 ], [ -75.866249084472656, -14.688750267028752 ], [ -75.866531372070312, -14.688750267028752 ], [ -75.866531372070312, -14.688471794128361 ], [ -75.866806030273381, -14.688471794128361 ], [ -75.866806030273381, -14.688194274902344 ], [ -75.867080688476506, -14.688194274902344 ], [ -75.867080688476506, -14.687915802001896 ], [ -75.867637634277287, -14.687915802001896 ], [ -75.867637634277287, -14.687638282775879 ], [ -75.867919921875, -14.687640190124398 ], [ -75.867919921875, -14.687359809875488 ], [ -75.868194580078125, -14.687359809875488 ], [ -75.868194580078125, -14.687082290649414 ], [ -75.86846923828125, -14.68708419799799 ], [ -75.86846923828125, -14.686805725097543 ], [ -75.869026184082031, -14.686805725097543 ], [ -75.869026184082031, -14.686526298522949 ], [ -75.869308471679688, -14.686528205871525 ], [ -75.869308471679688, -14.686249732971135 ], [ -75.869583129882812, -14.686249732971135 ], [ -75.869583129882812, -14.68597221374506 ], [ -75.869857788085881, -14.68597221374506 ], [ -75.869857788085881, -14.68569374084467 ], [ -75.870414733886662, -14.68569374084467 ], [ -75.870414733886662, -14.685416221618596 ], [ -75.870697021484318, -14.685416221618596 ], [ -75.870697021484318, -14.685139656066895 ], [ -75.871246337890625, -14.685139656066895 ], [ -75.871246337890625, -14.684859275817814 ], [ -75.871528625488281, -14.68486213684082 ], [ -75.871528625488281, -14.68458366394043 ], [ -75.872085571289062, -14.68458366394043 ], [ -75.872085571289062, -14.684303283691349 ], [ -75.872360229492188, -14.684306144714355 ], [ -75.872360229492188, -14.684027671813965 ], [ -75.872642517089844, -14.684027671813965 ], [ -75.872642517089844, -14.683747291564885 ], [ -75.873191833496037, -14.683750152587777 ], [ -75.873191833496037, -14.683473587036133 ], [ -75.873474121093693, -14.683473587036133 ], [ -75.873474121093693, -14.683193206787109 ], [ -75.874031066894474, -14.683193206787109 ], [ -75.874031066894474, -14.682917594909668 ], [ -75.874305725097656, -14.682917594909668 ], [ -75.874305725097656, -14.682637214660645 ], [ -75.874580383300781, -14.682640075683594 ], [ -75.874580383300781, -14.682361602783203 ], [ -75.875137329101562, -14.682361602783203 ], [ -75.875137329101562, -14.682081222534066 ], [ -75.875419616699219, -14.682083129882812 ], [ -75.875419616699219, -14.681804656982422 ], [ -75.875968933105355, -14.681804656982422 ], [ -75.875968933105355, -14.681527137756348 ], [ -75.876251220703068, -14.681527137756348 ], [ -75.876251220703068, -14.681248664855957 ], [ -75.876808166503849, -14.681248664855957 ], [ -75.876808166503849, -14.680971145629883 ], [ -75.877082824706974, -14.680971145629883 ], [ -75.877082824706974, -14.680694580078068 ], [ -75.878471374511719, -14.680694580078068 ], [ -75.878471374511719, -14.680415153503418 ], [ -75.878753662109375, -14.680417060851994 ], [ -75.878753662109375, -14.680138587951603 ], [ -75.879302978515568, -14.680138587951603 ], [ -75.879302978515568, -14.679859161376953 ], [ -75.879585266113224, -14.679861068725529 ], [ -75.879585266113224, -14.679582595825138 ], [ -75.880142211914006, -14.679582595825138 ], [ -75.880142211914006, -14.679305076599064 ], [ -75.880416870117131, -14.679305076599064 ], [ -75.880416870117131, -14.679026603698674 ], [ -75.880973815917969, -14.679026603698674 ], [ -75.880973815917969, -14.678749084472656 ], [ -75.881248474121094, -14.678749084472656 ], [ -75.881248474121094, -14.678473472595158 ], [ -75.881805419921875, -14.678473472595158 ], [ -75.881805419921875, -14.678193092346191 ], [ -75.882080078125, -14.678193092346191 ], [ -75.882080078125, -14.677916526794434 ], [ -75.882637023925724, -14.677916526794434 ], [ -75.882637023925724, -14.677639007568303 ], [ -75.883193969726506, -14.677639007568303 ], [ -75.883193969726506, -14.677360534667855 ], [ -75.883750915527344, -14.677360534667855 ], [ -75.883750915527344, -14.677083015441838 ], [ -75.884025573730469, -14.677083015441838 ], [ -75.884025573730469, -14.676804542541447 ], [ -75.88458251953125, -14.676804542541447 ], [ -75.88458251953125, -14.676527023315373 ], [ -75.885139465332031, -14.676527023315373 ], [ -75.885139465332031, -14.676251411437988 ], [ -75.885696411132699, -14.676248550414982 ], [ -75.885696411132699, -14.675971031188908 ], [ -75.886253356933537, -14.675971031188908 ], [ -75.886253356933537, -14.67569541931141 ], [ -75.886802673339844, -14.67569541931141 ], [ -75.886802673339844, -14.675416946411133 ], [ -75.887359619140625, -14.675416946411133 ], [ -75.887359619140625, -14.675139427185002 ], [ -75.887916564941406, -14.675139427185002 ], [ -75.887916564941406, -14.674860954284554 ], [ -75.888191223144531, -14.674860954284554 ], [ -75.888191223144531, -14.674583435058537 ], [ -75.888748168945199, -14.674583435058537 ], [ -75.888748168945199, -14.674304962158146 ], [ -75.889305114746037, -14.674304962158146 ], [ -75.889305114746037, -14.674027442932072 ], [ -75.889862060546818, -14.674027442932072 ], [ -75.889862060546818, -14.673748970031681 ], [ -75.890693664550781, -14.673750877380371 ], [ -75.890693664550781, -14.673473358154297 ], [ -75.891250610351562, -14.673473358154297 ], [ -75.891250610351562, -14.673194885253906 ], [ -75.892082214355412, -14.673194885253906 ], [ -75.892082214355412, -14.672917366027832 ], [ -75.892639160156193, -14.672917366027832 ], [ -75.892639160156193, -14.672638893127441 ], [ -75.893470764160156, -14.672638893127441 ], [ -75.893470764160156, -14.672361373901367 ], [ -75.894027709960938, -14.672361373901367 ], [ -75.894027709960938, -14.672082901000977 ], [ -75.895973205566349, -14.672082901000977 ], [ -75.895973205566349, -14.671805381774789 ], [ -75.896247863769474, -14.671805381774789 ], [ -75.896247863769474, -14.671528816223145 ], [ -75.897087097167969, -14.671528816223145 ], [ -75.897087097167969, -14.671805381774789 ], [ -75.897361755371094, -14.671805381774789 ], [ -75.897361755371094, -14.672082901000977 ], [ -75.897918701171875, -14.672082901000977 ], [ -75.897918701171875, -14.671805381774789 ], [ -75.898193359375, -14.671805381774789 ], [ -75.898193359375, -14.671528816223145 ], [ -75.898475646972543, -14.671528816223145 ], [ -75.898475646972543, -14.670416831970215 ], [ -75.898193359375, -14.670416831970215 ], [ -75.898193359375, -14.669859886169434 ], [ -75.898475646972543, -14.669859886169434 ], [ -75.898475646972543, -14.669582366943359 ], [ -75.899024963378849, -14.669582366943359 ], [ -75.899024963378849, -14.669306755065861 ], [ -75.899307250976506, -14.669306755065861 ], [ -75.899307250976506, -14.669582366943359 ], [ -75.899864196777344, -14.669582366943359 ], [ -75.899864196777344, -14.669859886169434 ], [ -75.900138854980469, -14.669859886169434 ], [ -75.900138854980469, -14.670139312744141 ], [ -75.900413513183594, -14.670139312744141 ], [ -75.900413513183594, -14.670695304870605 ], [ -75.901527404785043, -14.670695304870605 ], [ -75.901527404785043, -14.670416831970215 ], [ -75.901252746582031, -14.670416831970215 ], [ -75.901252746582031, -14.670139312744141 ], [ -75.900970458984375, -14.670139312744141 ], [ -75.900970458984375, -14.669582366943359 ], [ -75.90069580078125, -14.669582366943359 ], [ -75.90069580078125, -14.668750762939396 ], [ -75.900970458984375, -14.668750762939396 ], [ -75.900970458984375, -14.668472290039006 ], [ -75.901252746582031, -14.668472290039006 ], [ -75.901252746582031, -14.668193817138615 ], [ -75.902084350585881, -14.668193817138615 ], [ -75.902084350585881, -14.667916297912541 ], [ -75.902641296386662, -14.667916297912541 ], [ -75.902641296386662, -14.66763782501215 ], [ -75.904029846191406, -14.66763782501215 ], [ -75.904029846191406, -14.667360305786076 ], [ -75.904586791992188, -14.667360305786076 ], [ -75.904586791992188, -14.667083740234375 ], [ -75.904861450195256, -14.667083740234375 ], [ -75.904861450195256, -14.66652774810791 ], [ -75.905136108398381, -14.66652774810791 ], [ -75.905136108398381, -14.665694236755314 ], [ -75.905418395996037, -14.665694236755314 ], [ -75.905418395996037, -14.665415763854867 ], [ -75.905975341796818, -14.665415763854867 ], [ -75.905975341796818, -14.665138244628849 ], [ -75.906806945800781, -14.665138244628849 ], [ -75.906806945800781, -14.664859771728459 ], [ -75.907081604003906, -14.664859771728459 ], [ -75.907081604003906, -14.664584159851074 ], [ -75.907638549804688, -14.664584159851074 ], [ -75.907638549804688, -14.664305686950684 ], [ -75.907913208007756, -14.664305686950684 ], [ -75.907913208007756, -14.664028167724609 ], [ -75.907638549804688, -14.664028167724609 ], [ -75.907638549804688, -14.663472175598145 ], [ -75.908195495605412, -14.663472175598145 ], [ -75.908195495605412, -14.663749694824219 ], [ -75.908470153808537, -14.663749694824219 ], [ -75.908470153808537, -14.664028167724609 ], [ -75.9093017578125, -14.664028167724609 ], [ -75.9093017578125, -14.663749694824219 ], [ -75.909584045410156, -14.663749694824219 ], [ -75.909584045410156, -14.664028167724609 ], [ -75.909858703613281, -14.664028167724609 ], [ -75.909858703613281, -14.663749694824219 ], [ -75.910415649414062, -14.663749694824219 ], [ -75.910415649414062, -14.663472175598145 ], [ -75.910697937011719, -14.663472175598145 ], [ -75.910697937011719, -14.662916183471566 ], [ -75.910972595214844, -14.662916183471566 ], [ -75.910972595214844, -14.662637710571289 ], [ -75.911247253417912, -14.662637710571289 ], [ -75.911247253417912, -14.662360191345158 ], [ -75.911529541015568, -14.662362098693848 ], [ -75.911529541015568, -14.662083625793457 ], [ -75.912361145019531, -14.662083625793457 ], [ -75.912361145019531, -14.661804199218693 ], [ -75.912635803222656, -14.661804199218693 ], [ -75.912635803222656, -14.662637710571289 ], [ -75.913475036621094, -14.662637710571289 ], [ -75.913475036621094, -14.661804199218693 ], [ -75.913749694824219, -14.661806106567383 ], [ -75.913749694824219, -14.661527633666992 ], [ -75.914306640624886, -14.661527633666992 ], [ -75.914306640624886, -14.661250114440918 ], [ -75.914581298828068, -14.661250114440918 ], [ -75.914581298828068, -14.660971641540527 ], [ -75.914863586425724, -14.660971641540527 ], [ -75.914863586425724, -14.660694122314453 ], [ -75.915138244628849, -14.660694122314453 ], [ -75.915138244628849, -14.660415649414062 ], [ -75.915412902832031, -14.660415649414062 ], [ -75.915412902832031, -14.660694122314453 ], [ -75.915695190429688, -14.660694122314453 ], [ -75.915695190429688, -14.661527633666992 ], [ -75.916252136230469, -14.661527633666992 ], [ -75.916252136230469, -14.661250114440918 ], [ -75.917083740234375, -14.661250114440918 ], [ -75.917083740234375, -14.660971641540527 ], [ -75.917915344238224, -14.660971641540527 ], [ -75.917915344238224, -14.660694122314453 ], [ -75.917640686035099, -14.660694122314453 ], [ -75.917640686035099, -14.659305572509709 ], [ -75.917915344238224, -14.659305572509709 ], [ -75.917915344238224, -14.659028053283691 ], [ -75.918197631835881, -14.659028053283691 ], [ -75.918197631835881, -14.658472061157227 ], [ -75.918472290039006, -14.658472061157227 ], [ -75.918472290039006, -14.657636642455998 ], [ -75.918746948242188, -14.657636642455998 ], [ -75.918746948242188, -14.657084465026799 ], [ -75.919029235839844, -14.657084465026799 ], [ -75.919029235839844, -14.655970573425236 ], [ -75.918746948242188, -14.655970573425236 ], [ -75.918746948242188, -14.655418395996037 ], [ -75.919029235839844, -14.655418395996037 ], [ -75.919029235839844, -14.653236389160043 ], [ -75.919029235839844, -14.652915000915471 ], [ -75.919197082519531, -14.65291690826416 ], [ -75.919303894042969, -14.65291690826416 ], [ -75.919303894042969, -14.652724266052189 ], [ -75.919303894042969, -14.652359008789006 ], [ -75.919586181640625, -14.652360916137695 ], [ -75.919586181640625, -14.652198791503906 ], [ -75.919586181640625, -14.65180492401123 ], [ -75.91986083984375, -14.65180492401123 ], [ -75.91986083984375, -14.651688575744629 ], [ -75.91986083984375, -14.651248931884766 ], [ -75.920135498046875, -14.651248931884766 ], [ -75.920135498046875, -14.651111602783146 ], [ -75.920135498046875, -14.650694847106877 ], [ -75.920242309570312, -14.650694847106877 ], [ -75.920417785644531, -14.650694847106877 ], [ -75.920417785644531, -14.650417327880859 ], [ -75.920692443847599, -14.650417327880859 ], [ -75.920692443847599, -14.650138854980469 ], [ -75.920974731445256, -14.650138854980469 ], [ -75.920974731445256, -14.649582862854004 ], [ -75.921249389648381, -14.649582862854004 ], [ -75.921249389648381, -14.64930534362793 ], [ -75.921524047851506, -14.64930534362793 ], [ -75.921524047851506, -14.649026870727539 ], [ -75.921806335449162, -14.649026870727539 ], [ -75.921806335449162, -14.648470878601074 ], [ -75.922080993652344, -14.648470878601074 ], [ -75.922080993652344, -14.648195266723576 ], [ -75.92236328125, -14.648195266723576 ], [ -75.92236328125, -14.647639274597168 ], [ -75.922637939453125, -14.647639274597168 ], [ -75.922637939453125, -14.647360801696721 ], [ -75.922920227050781, -14.647360801696721 ], [ -75.922920227050781, -14.647083282470703 ], [ -75.923194885253906, -14.647083282470703 ], [ -75.923194885253906, -14.646804809570312 ], [ -75.923469543457031, -14.646804809570312 ], [ -75.923469543457031, -14.646527290344238 ], [ -75.923751831054688, -14.646527290344238 ], [ -75.923751831054688, -14.646248817443848 ], [ -75.924026489257756, -14.646248817443848 ], [ -75.924026489257756, -14.645971298217773 ], [ -75.924308776855412, -14.645973205566349 ], [ -75.924308776855412, -14.645417213439885 ], [ -75.924583435058537, -14.645417213439885 ], [ -75.924583435058537, -14.645138740539494 ], [ -75.924858093261662, -14.645138740539494 ], [ -75.924858093261662, -14.64486122131342 ], [ -75.925140380859375, -14.64486122131342 ], [ -75.925140380859375, -14.644582748413029 ], [ -75.925697326660156, -14.644582748413029 ], [ -75.925697326660156, -14.644305229186955 ], [ -75.926528930664062, -14.644305229186955 ], [ -75.926528930664062, -14.644582748413029 ], [ -75.927635192871037, -14.644582748413029 ], [ -75.927635192871037, -14.644305229186955 ], [ -75.928749084472656, -14.644305229186955 ], [ -75.928749084472656, -14.644028663635254 ], [ -75.929031372070312, -14.644028663635254 ], [ -75.929031372070312, -14.643192291259709 ], [ -75.928749084472656, -14.643195152282601 ], [ -75.928749084472656, -14.642359733581543 ], [ -75.928474426269531, -14.642359733581543 ], [ -75.928474426269531, -14.641806602478027 ], [ -75.928192138671875, -14.641806602478027 ], [ -75.928192138671875, -14.64152622222889 ], [ -75.927917480468693, -14.641529083251953 ], [ -75.927917480468693, -14.641249656677246 ], [ -75.927635192871037, -14.641249656677246 ], [ -75.927635192871037, -14.640693664550781 ], [ -75.927360534667912, -14.640693664550781 ], [ -75.927360534667912, -14.640416145324707 ], [ -75.92708587646473, -14.640416145324707 ], [ -75.92708587646473, -14.639860153198242 ], [ -75.926803588867188, -14.639860153198242 ], [ -75.926803588867188, -14.639027595519963 ], [ -75.926612854003906, -14.639027595519963 ], [ -75.926528930664062, -14.639027595519963 ], [ -75.926528930664062, -14.638748168945312 ], [ -75.926803588867188, -14.638748168945312 ], [ -75.926803588867188, -14.63819408416748 ], [ -75.926666259765625, -14.63819408416748 ], [ -75.926528930664062, -14.63819408416748 ], [ -75.926528930664062, -14.637915611267033 ], [ -75.926246643066406, -14.637915611267033 ], [ -75.926246643066406, -14.637638092041016 ], [ -75.925971984863281, -14.637638092041016 ], [ -75.925971984863281, -14.637082099914551 ], [ -75.925697326660156, -14.637082099914551 ], [ -75.925697326660156, -14.636805534362679 ], [ -75.9254150390625, -14.636805534362679 ], [ -75.9254150390625, -14.636249542236271 ], [ -75.925140380859375, -14.636249542236271 ], [ -75.925140380859375, -14.635972023010197 ], [ -75.924858093261662, -14.635972023010197 ], [ -75.924858093261662, -14.635693550109806 ], [ -75.924583435058537, -14.635693550109806 ], [ -75.924583435058537, -14.635416030883732 ], [ -75.924026489257756, -14.635416030883732 ], [ -75.924026489257756, -14.635137557983342 ], [ -75.923751831054688, -14.635137557983342 ], [ -75.923751831054688, -14.634860038757324 ], [ -75.923469543457031, -14.634861946105957 ], [ -75.923469543457031, -14.634028434753361 ], [ -75.923751831054688, -14.634028434753361 ], [ -75.923751831054688, -14.633687973022461 ], [ -75.923751831054688, -14.632637977600041 ], [ -75.923614501953125, -14.632637977600041 ], [ -75.922637939453125, -14.63263988494873 ], [ -75.922637939453125, -14.630694389343205 ], [ -75.923751831054688, -14.630694389343205 ], [ -75.923751831054688, -14.63014030456543 ], [ -75.924026489257756, -14.63013744354248 ], [ -75.924026489257756, -14.629861831665039 ], [ -75.924156188964844, -14.629861831665039 ], [ -75.924583435058537, -14.629861831665039 ], [ -75.924583435058537, -14.628748893737793 ], [ -75.924858093261662, -14.628748893737793 ], [ -75.924858093261662, -14.627638816833439 ], [ -75.924583435058537, -14.627638816833439 ], [ -75.924583435058537, -14.6268053054809 ], [ -75.924308776855412, -14.6268053054809 ], [ -75.924308776855412, -14.62636756896967 ], [ -75.924308776855412, -14.625970840454045 ], [ -75.924583435058537, -14.625970840454045 ], [ -75.924583435058537, -14.62541675567627 ], [ -75.924858093261662, -14.62541675567627 ], [ -75.924858093261662, -14.624583244323674 ], [ -75.925140380859375, -14.624583244323674 ], [ -75.925140380859375, -14.624027252197209 ], [ -75.9254150390625, -14.624027252197209 ], [ -75.9254150390625, -14.623748779296818 ], [ -75.925971984863281, -14.623748779296818 ], [ -75.925971984863281, -14.623471260070744 ], [ -75.926246643066406, -14.623473167419434 ], [ -75.926246643066406, -14.623194694519043 ], [ -75.926803588867188, -14.623194694519043 ], [ -75.926803588867188, -14.622917175292969 ], [ -75.927360534667912, -14.622917175292969 ], [ -75.927360534667912, -14.619583129882812 ], [ -75.927635192871037, -14.619583129882812 ], [ -75.927635192871037, -14.618471145629769 ], [ -75.927917480468693, -14.618471145629769 ], [ -75.927917480468693, -14.617361068725586 ], [ -75.928192138671875, -14.617361068725586 ], [ -75.928192138671875, -14.616804122924805 ], [ -75.928474426269531, -14.616804122924805 ], [ -75.928474426269531, -14.61624813079834 ], [ -75.928749084472656, -14.616250991821232 ], [ -75.928749084472656, -14.615973472595215 ], [ -75.929031372070312, -14.615973472595215 ], [ -75.929031372070312, -14.615692138671875 ], [ -75.929306030273438, -14.615694999694767 ], [ -75.929306030273438, -14.61541557312006 ], [ -75.929580688476562, -14.61541557312006 ], [ -75.929580688476562, -14.615138053893986 ], [ -75.929862976074219, -14.615138053893986 ], [ -75.929862976074219, -14.614859580993596 ], [ -75.93013763427723, -14.614859580993596 ], [ -75.93013763427723, -14.614026069641056 ], [ -75.930419921874943, -14.614027976989746 ], [ -75.930419921874943, -14.613750457763558 ], [ -75.930694580078068, -14.613750457763558 ], [ -75.930694580078068, -14.612915992736703 ], [ -75.930969238281193, -14.612915992736703 ], [ -75.930969238281193, -14.612360000610295 ], [ -75.931251525878849, -14.612360000610295 ], [ -75.931251525878849, -14.611528396606445 ], [ -75.931526184082031, -14.611528396606445 ], [ -75.931526184082031, -14.611248016357365 ], [ -75.931808471679688, -14.611249923706055 ], [ -75.931808471679688, -14.61097240447998 ], [ -75.932083129882812, -14.61097240447998 ], [ -75.932083129882812, -14.61069393157959 ], [ -75.932357788085938, -14.61069393157959 ], [ -75.932357788085938, -14.61097240447998 ], [ -75.932640075683594, -14.61097240447998 ], [ -75.932640075683594, -14.61069393157959 ], [ -75.932914733886719, -14.61069393157959 ], [ -75.932914733886719, -14.610416412353402 ], [ -75.933197021484375, -14.610416412353402 ], [ -75.933197021484375, -14.608750343322754 ], [ -75.932914733886719, -14.608750343322754 ], [ -75.932914733886719, -14.608471870422363 ], [ -75.932640075683594, -14.608471870422363 ], [ -75.932640075683594, -14.608194351196289 ], [ -75.932357788085938, -14.608194351196289 ], [ -75.932357788085938, -14.607359886169434 ], [ -75.932083129882812, -14.607359886169434 ], [ -75.932083129882812, -14.607084274291992 ], [ -75.931526184082031, -14.607084274291992 ], [ -75.931526184082031, -14.606805801391545 ], [ -75.930419921874943, -14.606805801391545 ], [ -75.930419921874943, -14.606249809265137 ], [ -75.93013763427723, -14.606249809265137 ], [ -75.93013763427723, -14.605972290039062 ], [ -75.929862976074219, -14.605972290039062 ], [ -75.929862976074219, -14.605693817138672 ], [ -75.928474426269531, -14.605693817138672 ], [ -75.928474426269531, -14.605416297912598 ], [ -75.927917480468693, -14.605416297912598 ], [ -75.927917480468693, -14.605139732360783 ], [ -75.927635192871037, -14.605139732360783 ], [ -75.927635192871037, -14.600138664245605 ], [ -75.927360534667912, -14.600138664245605 ], [ -75.927360534667912, -14.599303245544377 ], [ -75.927635192871037, -14.599303245544377 ], [ -75.927635192871037, -14.598193168640137 ], [ -75.927917480468693, -14.598193168640137 ], [ -75.927917480468693, -14.597639083862305 ], [ -75.928192138671875, -14.597639083862305 ], [ -75.928192138671875, -14.59708309173584 ], [ -75.928474426269531, -14.59708309173584 ], [ -75.928474426269531, -14.596248626708984 ], [ -75.928749084472656, -14.596248626708984 ], [ -75.928749084472656, -14.595694541931096 ], [ -75.929031372070312, -14.595694541931096 ], [ -75.929031372070312, -14.595138549804631 ], [ -75.929306030273438, -14.595138549804631 ], [ -75.929306030273438, -14.594582557678166 ], [ -75.929580688476562, -14.594582557678166 ], [ -75.929580688476562, -14.594305038452148 ], [ -75.929862976074219, -14.594305038452148 ], [ -75.929862976074219, -14.593749046325684 ], [ -75.93013763427723, -14.593750953674203 ], [ -75.93013763427723, -14.593473434448185 ], [ -75.930419921874943, -14.593473434448185 ], [ -75.930419921874943, -14.592917442321721 ], [ -75.930694580078068, -14.592917442321721 ], [ -75.930694580078068, -14.59263896942133 ], [ -75.930969238281193, -14.59263896942133 ], [ -75.930969238281193, -14.592082977294865 ], [ -75.931251525878849, -14.592082977294865 ], [ -75.931251525878849, -14.591805458068791 ], [ -75.931526184082031, -14.591805458068791 ], [ -75.931526184082031, -14.591251373291016 ], [ -75.931808471679688, -14.591251373291016 ], [ -75.931808471679688, -14.590970039367619 ], [ -75.932083129882812, -14.590970039367619 ], [ -75.932083129882812, -14.59041690826416 ], [ -75.932357788085938, -14.59041690826416 ], [ -75.932357788085938, -14.590139389038029 ], [ -75.932640075683594, -14.590139389038029 ], [ -75.932640075683594, -14.589582443237305 ], [ -75.932914733886719, -14.589582443237305 ], [ -75.932914733886719, -14.588473320007324 ], [ -75.932640075683594, -14.588473320007324 ], [ -75.932640075683594, -14.587916374206543 ], [ -75.932914733886719, -14.587916374206543 ], [ -75.932914733886719, -14.587637901306152 ], [ -75.932640075683594, -14.587637901306152 ], [ -75.932640075683594, -14.587360382080078 ], [ -75.932914733886719, -14.587360382080078 ], [ -75.932914733886719, -14.585138320922852 ], [ -75.933197021484375, -14.585138320922852 ], [ -75.933197021484375, -14.584584236144963 ], [ -75.932914733886719, -14.584584236144963 ], [ -75.932914733886719, -14.584305763244515 ], [ -75.932640075683594, -14.584305763244515 ], [ -75.932640075683594, -14.583749771118107 ], [ -75.932914733886719, -14.583749771118107 ], [ -75.932914733886719, -14.582916259765568 ], [ -75.933197021484375, -14.582916259765568 ], [ -75.933197021484375, -14.582083702087402 ], [ -75.932914733886719, -14.582083702087402 ], [ -75.932914733886719, -14.580971717834359 ], [ -75.933197021484375, -14.580971717834359 ], [ -75.933197021484375, -14.580694198608342 ], [ -75.933471679687443, -14.580694198608342 ], [ -75.933471679687443, -14.580415725707951 ], [ -75.934303283691349, -14.580415725707951 ], [ -75.934303283691349, -14.579859733581486 ], [ -75.934585571289006, -14.579859733581486 ], [ -75.934585571289006, -14.579305648803711 ], [ -75.934860229492188, -14.579305648803711 ], [ -75.934860229492188, -14.579028129577637 ], [ -75.934585571289006, -14.579028129577637 ], [ -75.934585571289006, -14.578749656677246 ], [ -75.934028625488224, -14.578749656677246 ], [ -75.934028625488224, -14.579028129577637 ], [ -75.933471679687443, -14.579028129577637 ], [ -75.933471679687443, -14.578749656677246 ], [ -75.933197021484375, -14.578749656677246 ], [ -75.933197021484375, -14.578469276428166 ], [ -75.932357788085938, -14.578472137451172 ], [ -75.932357788085938, -14.578193664550781 ], [ -75.931808471679688, -14.578193664550781 ], [ -75.931808471679688, -14.577916145324593 ], [ -75.931091308593636, -14.57791805267334 ], [ -75.930694580078068, -14.57791805267334 ], [ -75.930694580078068, -14.577637672424316 ], [ -75.930511474609318, -14.577637672424316 ], [ -75.930419921874943, -14.577637672424316 ], [ -75.930419921874943, -14.574861526489201 ], [ -75.930694580078068, -14.574861526489201 ], [ -75.930694580078068, -14.574027061462346 ], [ -75.930969238281193, -14.574027061462346 ], [ -75.930969238281193, -14.572359085083008 ], [ -75.931251525878849, -14.572359085083008 ], [ -75.931251525878849, -14.571249008178654 ], [ -75.931808471679688, -14.571249008178654 ], [ -75.931808471679688, -14.570137023925724 ], [ -75.932083129882812, -14.570137023925724 ], [ -75.932083129882812, -14.570417404174805 ], [ -75.932357788085938, -14.570417404174805 ], [ -75.932357788085938, -14.570137023925724 ], [ -75.932640075683594, -14.570137023925724 ], [ -75.932640075683594, -14.569582939147949 ], [ -75.932914733886719, -14.569582939147949 ], [ -75.932914733886719, -14.569305419921818 ], [ -75.933197021484375, -14.569305419921818 ], [ -75.933197021484375, -14.569026947021371 ], [ -75.933471679687443, -14.569026947021371 ], [ -75.933471679687443, -14.568470954894963 ], [ -75.933746337890568, -14.568470954894963 ], [ -75.933746337890568, -14.568195343017578 ], [ -75.934028625488224, -14.568195343017578 ], [ -75.934028625488224, -14.567639350891113 ], [ -75.934303283691349, -14.567639350891113 ], [ -75.934303283691349, -14.567360877990723 ], [ -75.934585571289006, -14.567360877990723 ], [ -75.934585571289006, -14.567083358764648 ], [ -75.934860229492188, -14.567083358764648 ], [ -75.934860229492188, -14.566804885864258 ], [ -75.935142517089844, -14.566804885864258 ], [ -75.935142517089844, -14.566250801086369 ], [ -75.935417175292969, -14.566250801086369 ], [ -75.935417175292969, -14.565973281860352 ], [ -75.935691833496094, -14.565973281860352 ], [ -75.935691833496094, -14.565694808959961 ], [ -75.93597412109375, -14.565694808959961 ], [ -75.93597412109375, -14.565417289733887 ], [ -75.936248779296875, -14.565417289733887 ], [ -75.936248779296875, -14.565138816833496 ], [ -75.936531066894531, -14.565138816833496 ], [ -75.936531066894531, -14.564582824707031 ], [ -75.936805725097599, -14.564582824707031 ], [ -75.936805725097599, -14.564305305480957 ], [ -75.937080383300724, -14.564305305480957 ], [ -75.937080383300724, -14.564028739929142 ], [ -75.937362670898381, -14.564028739929142 ], [ -75.937362670898381, -14.563751220703068 ], [ -75.937637329101506, -14.563751220703068 ], [ -75.937637329101506, -14.563472747802678 ], [ -75.937919616699219, -14.563472747802678 ], [ -75.937919616699219, -14.562916755676213 ], [ -75.938194274902344, -14.562916755676213 ], [ -75.938194274902344, -14.562636375427246 ], [ -75.938468933105469, -14.562639236450195 ], [ -75.938468933105469, -14.562359809875431 ], [ -75.938751220703125, -14.562359809875431 ], [ -75.938751220703125, -14.562082290649357 ], [ -75.939582824707031, -14.562082290649357 ], [ -75.939582824707031, -14.561806678771973 ], [ -75.940414428710881, -14.561806678771973 ], [ -75.940414428710881, -14.561250686645394 ], [ -75.940696716308537, -14.561250686645394 ], [ -75.940696716308537, -14.560693740844727 ], [ -75.940971374511719, -14.560693740844727 ], [ -75.940971374511719, -14.560137748718262 ], [ -75.941253662109375, -14.560137748718262 ], [ -75.941253662109375, -14.560002326965332 ], [ -75.941253662109375, -14.559860229492131 ], [ -75.941513061523438, -14.559860229492131 ], [ -75.941802978515625, -14.559860229492131 ], [ -75.941802978515625, -14.560137748718262 ], [ -75.942642211914062, -14.560137748718262 ], [ -75.942642211914062, -14.559860229492131 ], [ -75.942916870117074, -14.559860229492131 ], [ -75.942916870117074, -14.559584617614746 ], [ -75.943191528320256, -14.559584617614746 ], [ -75.943191528320256, -14.559304237365666 ], [ -75.943473815917912, -14.559304237365666 ], [ -75.943473815917912, -14.559027671813965 ], [ -75.943748474121037, -14.559027671813965 ], [ -75.943748474121037, -14.5584716796875 ], [ -75.944030761718693, -14.5584716796875 ], [ -75.944030761718693, -14.558194160461426 ], [ -75.944305419921875, -14.558194160461426 ], [ -75.944305419921875, -14.557915687561035 ], [ -75.944580078125, -14.557915687561035 ], [ -75.944580078125, -14.557638168334961 ], [ -75.944862365722656, -14.557638168334961 ], [ -75.944862365722656, -14.55735969543457 ], [ -75.945137023925781, -14.55735969543457 ], [ -75.945137023925781, -14.557082176208382 ], [ -75.945419311523438, -14.557082176208382 ], [ -75.945419311523438, -14.556528091430664 ], [ -75.945693969726562, -14.556528091430664 ], [ -75.945693969726562, -14.556249618530273 ], [ -75.945968627929574, -14.556249618530273 ], [ -75.945968627929574, -14.555693626403809 ], [ -75.946250915527287, -14.555693626403809 ], [ -75.946250915527287, -14.555416107177734 ], [ -75.946525573730412, -14.555416107177734 ], [ -75.946525573730412, -14.555137634277344 ], [ -75.946807861328068, -14.555137634277344 ], [ -75.946807861328068, -14.554583549499455 ], [ -75.947082519531193, -14.554583549499455 ], [ -75.947082519531193, -14.554306030273381 ], [ -75.947319030761719, -14.554304122924805 ], [ -75.947364807128849, -14.553750038146973 ], [ -75.947639465332031, -14.553750038146973 ], [ -75.947639465332031, -14.553471565246525 ], [ -75.947914123535156, -14.553471565246525 ], [ -75.947914123535156, -14.553194046020508 ], [ -75.948196411132812, -14.553194046020508 ], [ -75.948196411132812, -14.552915573120117 ], [ -75.948471069335938, -14.552915573120117 ], [ -75.948471069335938, -14.552638053894043 ], [ -75.948753356933594, -14.552639961242619 ], [ -75.948753356933594, -14.552362442016545 ], [ -75.949028015136719, -14.552362442016545 ], [ -75.949028015136719, -14.552082061767578 ], [ -75.949302673339787, -14.552083969116154 ], [ -75.949302673339787, -14.55180644989008 ], [ -75.949859619140568, -14.55180644989008 ], [ -75.949859619140568, -14.551527976989689 ], [ -75.950141906738224, -14.551527976989689 ], [ -75.950141906738224, -14.551250457763615 ], [ -75.949859619140568, -14.551250457763615 ], [ -75.949859619140568, -14.549305915832406 ], [ -75.950141906738224, -14.549305915832406 ], [ -75.950141906738224, -14.549028396606388 ], [ -75.950691223144531, -14.549028396606388 ], [ -75.950691223144531, -14.54847145080555 ], [ -75.950973510742188, -14.54847145080555 ], [ -75.950973510742188, -14.547915458679142 ], [ -75.951248168945312, -14.547915458679142 ], [ -75.951248168945312, -14.547080993652287 ], [ -75.951530456542969, -14.547082901000977 ], [ -75.951530456542969, -14.546805381774902 ], [ -75.951805114746094, -14.546805381774902 ], [ -75.951805114746094, -14.546526908874512 ], [ -75.952079772949219, -14.546526908874512 ], [ -75.952079772949219, -14.546249389648438 ], [ -75.952362060546875, -14.546249389648438 ], [ -75.952362060546875, -14.545970916748047 ], [ -75.952636718749943, -14.545970916748047 ], [ -75.952636718749943, -14.545416831970158 ], [ -75.952919006347599, -14.545416831970158 ], [ -75.952919006347599, -14.545139312744141 ], [ -75.953475952148381, -14.545139312744141 ], [ -75.953475952148381, -14.544860839843693 ], [ -75.953750610351562, -14.544860839843693 ], [ -75.953750610351562, -14.544304847717285 ], [ -75.954025268554688, -14.544304847717285 ], [ -75.954025268554688, -14.544027328491211 ], [ -75.95513916015625, -14.544027328491211 ], [ -75.95513916015625, -14.543473243713322 ], [ -75.955413818359375, -14.543473243713322 ], [ -75.955413818359375, -14.543194770812931 ], [ -75.955696105956918, -14.543194770812931 ], [ -75.955696105956918, -14.542915344238281 ], [ -75.955970764160099, -14.542917251586857 ], [ -75.955970764160099, -14.542638778686467 ], [ -75.956253051757756, -14.542638778686467 ], [ -75.956253051757756, -14.542361259460392 ], [ -75.956527709960881, -14.542361259460392 ], [ -75.956527709960881, -14.542082786560002 ], [ -75.956802368164062, -14.542082786560002 ], [ -75.956802368164062, -14.541805267333984 ], [ -75.957084655761719, -14.541805267333984 ], [ -75.957084655761719, -14.541526794433537 ], [ -75.957359313964844, -14.541526794433537 ], [ -75.957359313964844, -14.54124927520752 ], [ -75.9576416015625, -14.541251182556039 ], [ -75.9576416015625, -14.540972709655762 ], [ -75.957084655761719, -14.540970802307129 ], [ -75.957084655761719, -14.540693283081055 ], [ -75.956253051757756, -14.540695190429631 ], [ -75.955970764160099, -14.540695190429631 ], [ -75.955970764160099, -14.540416717529183 ], [ -75.955696105956918, -14.540416717529183 ], [ -75.955696105956918, -14.540139198303166 ], [ -75.955413818359375, -14.540139198303166 ], [ -75.955413818359375, -14.539029121398926 ], [ -75.955696105956918, -14.539029121398926 ], [ -75.955696105956918, -14.538748741149846 ], [ -75.956382751464844, -14.538748741149846 ], [ -75.957084655761719, -14.538748741149846 ], [ -75.957084655761719, -14.539029121398926 ], [ -75.957359313964844, -14.539029121398926 ], [ -75.957359313964844, -14.53930473327631 ], [ -75.9576416015625, -14.53930473327631 ], [ -75.9576416015625, -14.539583206176701 ], [ -75.959587097167912, -14.539583206176701 ], [ -75.959587097167912, -14.53930473327631 ], [ -75.959587097167912, -14.538337707519531 ], [ -75.959587097167912, -14.53819465637207 ], [ -75.959861755371037, -14.53819465637207 ], [ -75.959861755371037, -14.537638664245605 ], [ -75.960136413574219, -14.537638664245605 ], [ -75.960136413574219, -14.535972595214844 ], [ -75.960418701171875, -14.535972595214844 ], [ -75.960418701171875, -14.534859657287598 ], [ -75.960693359375, -14.534859657287598 ], [ -75.960693359375, -14.534582138061523 ], [ -75.961524963378906, -14.534582138061523 ], [ -75.961524963378906, -14.534306526184025 ], [ -75.962638854980412, -14.534306526184025 ], [ -75.962638854980412, -14.534026145935059 ], [ -75.963195800781193, -14.534029006958008 ], [ -75.963195800781193, -14.53375053405756 ], [ -75.963470458984375, -14.53375053405756 ], [ -75.963470458984375, -14.533470153808594 ], [ -75.963752746582031, -14.53347206115717 ], [ -75.963752746582031, -14.533193588256779 ], [ -75.964027404785156, -14.533193588256779 ], [ -75.964027404785156, -14.532916069030705 ], [ -75.964302062988281, -14.532916069030705 ], [ -75.964302062988281, -14.532637596130314 ], [ -75.964584350585938, -14.532637596130314 ], [ -75.964584350585938, -14.532360076904297 ], [ -75.964859008789062, -14.532360076904297 ], [ -75.964859008789062, -14.532084465026799 ], [ -75.965141296386719, -14.532084465026799 ], [ -75.965141296386719, -14.531804084777832 ], [ -75.965415954589787, -14.531805992126351 ], [ -75.965415954589787, -14.531528472900334 ], [ -75.965690612792912, -14.531528472900334 ], [ -75.965698242187443, -14.531248092651367 ], [ -75.965972900390568, -14.53125 ], [ -75.965972900390568, -14.530971527099496 ], [ -75.966529846191406, -14.530971527099496 ], [ -75.966529846191406, -14.530694007873478 ], [ -75.967636108398438, -14.530694007873478 ], [ -75.967636108398438, -14.530415534973088 ], [ -75.96875, -14.530415534973088 ], [ -75.96875, -14.530138015747013 ], [ -75.969306945800724, -14.530138015747013 ], [ -75.969306945800724, -14.529862403869629 ], [ -75.969863891601562, -14.529862403869629 ], [ -75.969863891601562, -14.529582023620549 ], [ -75.970413208007812, -14.529582023620549 ], [ -75.970413208007812, -14.52930641174305 ], [ -75.970970153808594, -14.52930641174305 ], [ -75.970970153808594, -14.529026031494141 ], [ -75.971801757812443, -14.529027938842773 ], [ -75.971801757812443, -14.528750419616642 ], [ -75.972640991210881, -14.528750419616642 ], [ -75.972640991210881, -14.528471946716195 ], [ -75.972915649414062, -14.528471946716195 ], [ -75.972915649414062, -14.528194427490178 ], [ -75.972640991210881, -14.528194427490178 ], [ -75.972640991210881, -14.527915954589787 ], [ -75.972358703613224, -14.527915954589787 ], [ -75.972358703613224, -14.52779483795166 ], [ -75.972358703613224, -14.527084350585938 ], [ -75.9725341796875, -14.527084350585938 ], [ -75.972640991210881, -14.527084350585938 ], [ -75.972640991210881, -14.526805877685547 ], [ -75.972915649414062, -14.526805877685547 ], [ -75.972915649414062, -14.526528358459473 ], [ -75.974029541015625, -14.526528358459473 ], [ -75.974029541015625, -14.526249885559082 ], [ -75.97430419921875, -14.526249885559082 ], [ -75.97430419921875, -14.525972366333008 ], [ -75.974861145019474, -14.525972366333008 ], [ -75.974861145019474, -14.525693893432617 ], [ -75.975135803222599, -14.525693893432617 ], [ -75.975135803222599, -14.524027824401855 ], [ -75.974861145019474, -14.524027824401855 ], [ -75.974861145019474, -14.523750305175781 ], [ -75.974586486816406, -14.523750305175781 ], [ -75.974586486816406, -14.523471832275391 ], [ -75.97430419921875, -14.523471832275391 ], [ -75.97430419921875, -14.523194313049316 ], [ -75.974029541015625, -14.523194313049316 ], [ -75.974029541015625, -14.522917747497502 ], [ -75.973747253417969, -14.522917747497502 ], [ -75.973747253417969, -14.522361755371037 ], [ -75.974029541015625, -14.522361755371037 ], [ -75.974029541015625, -14.521527290344181 ], [ -75.973747253417969, -14.521527290344181 ], [ -75.973747253417969, -14.520695686340218 ], [ -75.973472595214844, -14.520695686340218 ], [ -75.973472595214844, -14.52013969421381 ], [ -75.972640991210881, -14.52013969421381 ], [ -75.972640991210881, -14.519859313964844 ], [ -75.972084045410099, -14.519859313964844 ], [ -75.972084045410099, -14.51874923706049 ], [ -75.971801757812443, -14.51874923706049 ], [ -75.971801757812443, -14.51763916015625 ], [ -75.971527099609261, -14.51763916015625 ], [ -75.971527099609261, -14.517083168029785 ], [ -75.97125244140625, -14.517083168029785 ], [ -75.97125244140625, -14.516804695129395 ], [ -75.971076965332031, -14.516804695129395 ], [ -75.970970153808594, -14.516804695129395 ], [ -75.970970153808594, -14.516512870788517 ], [ -75.970970153808594, -14.51624870300293 ], [ -75.970695495605469, -14.51624870300293 ], [ -75.970695495605469, -14.516061782836914 ], [ -75.970695495605469, -14.515973091125488 ], [ -75.970138549804688, -14.515973091125488 ], [ -75.970138549804688, -14.515694618225098 ], [ -75.969581604003906, -14.515694618225098 ], [ -75.969581604003906, -14.515417098999023 ], [ -75.969863891601562, -14.515417098999023 ], [ -75.969863891601562, -14.514861106872559 ], [ -75.969581604003906, -14.514861106872559 ], [ -75.969581604003906, -14.513749122619629 ], [ -75.969863891601562, -14.513749122619629 ], [ -75.969863891601562, -14.512639045715332 ], [ -75.969581604003906, -14.512639045715332 ], [ -75.969581604003906, -14.512083053588867 ], [ -75.969306945800724, -14.512083053588867 ], [ -75.969306945800724, -14.511804580688477 ], [ -75.969581604003906, -14.511804580688477 ], [ -75.969581604003906, -14.511527061462402 ], [ -75.969863891601562, -14.511527061462402 ], [ -75.969863891601562, -14.510971069335938 ], [ -75.970695495605469, -14.510971069335938 ], [ -75.970695495605469, -14.510416984558049 ], [ -75.970970153808594, -14.510416984558049 ], [ -75.970970153808594, -14.509860992431584 ], [ -75.970695495605469, -14.509860992431584 ], [ -75.970695495605469, -14.509583473205566 ], [ -75.970413208007812, -14.509583473205566 ], [ -75.970413208007812, -14.509860992431584 ], [ -75.969863891601562, -14.509860992431584 ], [ -75.969863891601562, -14.509583473205566 ], [ -75.969306945800724, -14.509583473205566 ], [ -75.969306945800724, -14.509304046630803 ], [ -75.968475341796761, -14.509306907653809 ], [ -75.968475341796761, -14.509025573730412 ], [ -75.968193054199219, -14.509025573730412 ], [ -75.968193054199219, -14.508748054504338 ], [ -75.967918395996094, -14.50875091552723 ], [ -75.967918395996094, -14.508473396301213 ], [ -75.967636108398438, -14.508473396301213 ], [ -75.967636108398438, -14.508194923400822 ], [ -75.967086791992188, -14.508194923400822 ], [ -75.967086791992188, -14.507917404174748 ], [ -75.966804504394531, -14.507917404174748 ], [ -75.966804504394531, -14.507637977600098 ], [ -75.966247558593693, -14.507637977600098 ], [ -75.966247558593693, -14.507360458373967 ], [ -75.965972900390568, -14.507360458373967 ], [ -75.965972900390568, -14.507081985473519 ], [ -75.965415954589787, -14.507081985473519 ], [ -75.965415954589787, -14.505970001220646 ], [ -75.965690612792912, -14.505971908569336 ], [ -75.965698242187443, -14.503749847412109 ], [ -75.965972900390568, -14.503749847412109 ], [ -75.965972900390568, -14.503472328186035 ], [ -75.965698242187443, -14.503472328186035 ], [ -75.965698242187443, -14.50263786315918 ], [ -75.965972900390568, -14.50263786315918 ], [ -75.965972900390568, -14.502360343933105 ], [ -75.965698242187443, -14.502362251281681 ], [ -75.965698242187443, -14.502083778381291 ], [ -75.965972900390568, -14.502083778381291 ], [ -75.965972900390568, -14.501806259155217 ], [ -75.966247558593693, -14.501806259155217 ], [ -75.966247558593693, -14.500694274902344 ], [ -75.966529846191406, -14.500694274902344 ], [ -75.966529846191406, -14.499305725097599 ], [ -75.966804504394531, -14.499305725097599 ], [ -75.966804504394531, -14.49819374084467 ], [ -75.967086791992188, -14.49819374084467 ], [ -75.967086791992188, -14.497637748718205 ], [ -75.967361450195312, -14.497637748718205 ], [ -75.967361450195312, -14.496527671813965 ], [ -75.967086791992188, -14.496527671813965 ], [ -75.967086791992188, -14.495971679687386 ], [ -75.966804504394531, -14.495971679687386 ], [ -75.966804504394531, -14.495693206787109 ], [ -75.966529846191406, -14.495693206787109 ], [ -75.966529846191406, -14.495137214660531 ], [ -75.966247558593693, -14.495140075683594 ], [ -75.966247558593693, -14.493748664855957 ], [ -75.966529846191406, -14.493748664855957 ], [ -75.966529846191406, -14.492915153503418 ], [ -75.966804504394531, -14.492918014526367 ], [ -75.966804504394531, -14.492082595825138 ], [ -75.967086791992188, -14.492082595825138 ], [ -75.967086791992188, -14.491805076599121 ], [ -75.967361450195312, -14.491805076599121 ], [ -75.967361450195312, -14.490863800048828 ], [ -75.967361450195312, -14.490693092346191 ], [ -75.967636108398438, -14.490693092346191 ], [ -75.967636108398438, -14.488195419311467 ], [ -75.967918395996094, -14.488195419311467 ], [ -75.967918395996094, -14.487513542175293 ], [ -75.967918395996094, -14.486804962158146 ], [ -75.968193054199219, -14.486804962158146 ], [ -75.968193054199219, -14.486527442932072 ], [ -75.96875, -14.486527442932072 ], [ -75.96875, -14.486248970031681 ], [ -75.968894958496094, -14.486250877380371 ], [ -75.969024658203068, -14.486250877380371 ], [ -75.969024658203068, -14.486080169677734 ], [ -75.969024658203068, -14.485973358154297 ], [ -75.969306945800724, -14.485973358154297 ], [ -75.969306945800724, -14.485694885253906 ], [ -75.969024658203068, -14.485694885253906 ], [ -75.969024658203068, -14.485417366027832 ], [ -75.969306945800724, -14.485417366027832 ], [ -75.969306945800724, -14.485138893127441 ], [ -75.969581604003906, -14.485138893127441 ], [ -75.969581604003906, -14.484861373901254 ], [ -75.969863891601562, -14.484861373901254 ], [ -75.969863891601562, -14.48375129699707 ], [ -75.970138549804688, -14.48375129699707 ], [ -75.970138549804688, -14.48347282409668 ], [ -75.970413208007812, -14.48347282409668 ], [ -75.970413208007812, -14.483195304870605 ], [ -75.970695495605469, -14.483195304870605 ], [ -75.970695495605469, -14.482684135436955 ], [ -75.970970153808594, -14.482639312744141 ], [ -75.970970153808594, -14.48236083984375 ], [ -75.971527099609261, -14.48236083984375 ], [ -75.971527099609261, -14.482082366943359 ], [ -75.972084045410099, -14.482082366943359 ], [ -75.972084045410099, -14.481911659240723 ], [ -75.972084045410099, -14.481806755065861 ], [ -75.972434997558594, -14.481806755065861 ], [ -75.972915649414062, -14.481806755065861 ], [ -75.972915649414062, -14.482082366943359 ], [ -75.973197937011719, -14.482082366943359 ], [ -75.973197937011719, -14.481806755065861 ], [ -75.973472595214844, -14.481806755065861 ], [ -75.973472595214844, -14.481526374816895 ], [ -75.973747253417969, -14.481526374816895 ], [ -75.973747253417969, -14.481250762939396 ], [ -75.974029541015625, -14.481250762939396 ], [ -75.974029541015625, -14.480973243713379 ], [ -75.973472595214844, -14.480973243713379 ], [ -75.973472595214844, -14.480694770812988 ], [ -75.973197937011719, -14.480694770812988 ], [ -75.973197937011719, -14.48013782501215 ], [ -75.973472595214844, -14.48013782501215 ], [ -75.973472595214844, -14.479860305786133 ], [ -75.973747253417969, -14.479860305786133 ], [ -75.973747253417969, -14.47902774810791 ], [ -75.973472595214844, -14.47902774810791 ], [ -75.973472595214844, -14.479304313659668 ], [ -75.973197937011719, -14.479304313659668 ], [ -75.973197937011719, -14.47902774810791 ], [ -75.972915649414062, -14.47902774810791 ], [ -75.972915649414062, -14.477638244628849 ], [ -75.973197937011719, -14.477638244628849 ], [ -75.973197937011719, -14.477359771728459 ], [ -75.973747253417969, -14.477359771728459 ], [ -75.973747253417969, -14.477082252502385 ], [ -75.974029541015625, -14.477082252502385 ], [ -75.974029541015625, -14.476528167724609 ], [ -75.97430419921875, -14.476528167724609 ], [ -75.97430419921875, -14.475693702697754 ], [ -75.974586486816406, -14.475693702697754 ], [ -75.974586486816406, -14.475137710571175 ], [ -75.97430419921875, -14.475137710571175 ], [ -75.97430419921875, -14.473750114440918 ], [ -75.974029541015625, -14.473750114440918 ], [ -75.974029541015625, -14.473471641540527 ], [ -75.973747253417969, -14.473471641540527 ], [ -75.973747253417969, -14.472915649414062 ], [ -75.974029541015625, -14.472915649414062 ], [ -75.974029541015625, -14.472638130187988 ], [ -75.97430419921875, -14.472638130187988 ], [ -75.97430419921875, -14.47208213806141 ], [ -75.974029541015625, -14.47208213806141 ], [ -75.974029541015625, -14.471528053283691 ], [ -75.97430419921875, -14.471528053283691 ], [ -75.97430419921875, -14.471249580383301 ], [ -75.974586486816406, -14.471249580383301 ], [ -75.974586486816406, -14.470693588256836 ], [ -75.974861145019474, -14.470693588256836 ], [ -75.974861145019474, -14.470137596130371 ], [ -75.975135803222599, -14.470137596130371 ], [ -75.975135803222599, -14.46985912322998 ], [ -75.975418090820256, -14.469861984252873 ], [ -75.975418090820256, -14.469584465026855 ], [ -75.975692749023381, -14.469584465026855 ], [ -75.975692749023381, -14.469028472900391 ], [ -75.975975036621037, -14.469028472900391 ], [ -75.975975036621037, -14.46875 ], [ -75.976249694824219, -14.46875 ], [ -75.976249694824219, -14.468193054199162 ], [ -75.976524353027344, -14.468193054199162 ], [ -75.976524353027344, -14.467914581298771 ], [ -75.976806640625, -14.467914581298771 ], [ -75.976806640625, -14.467637062072697 ], [ -75.977081298828125, -14.467637062072697 ], [ -75.977081298828125, -14.467081069946289 ], [ -75.977363586425781, -14.467083930969181 ], [ -75.977363586425781, -14.466805458068791 ], [ -75.977638244628906, -14.466805458068791 ], [ -75.977638244628906, -14.466526985168343 ], [ -75.977912902831974, -14.466526985168343 ], [ -75.977912902831974, -14.466249465942326 ], [ -75.978195190429631, -14.466249465942326 ], [ -75.978195190429631, -14.465696334838754 ], [ -75.978469848632756, -14.465696334838754 ], [ -75.978469848632756, -14.465415000915471 ], [ -75.978752136230412, -14.46541690826416 ], [ -75.978752136230412, -14.465139389038086 ], [ -75.979026794433537, -14.465139389038086 ], [ -75.979026794433537, -14.464859008789006 ], [ -75.97930908203125, -14.464860916137695 ], [ -75.97930908203125, -14.464583396911621 ], [ -75.980140686035156, -14.464583396911621 ], [ -75.980140686035156, -14.46430492401123 ], [ -75.980415344238281, -14.46430492401123 ], [ -75.980415344238281, -14.464027404785043 ], [ -75.980697631835938, -14.464027404785043 ], [ -75.980697631835938, -14.463748931884766 ], [ -75.980972290039062, -14.463748931884766 ], [ -75.980972290039062, -14.463473320007324 ], [ -75.981529235839787, -14.463473320007324 ], [ -75.981529235839787, -14.463194847106934 ], [ -75.982086181640568, -14.463194847106934 ], [ -75.982086181640568, -14.462917327880859 ], [ -75.98236083984375, -14.462917327880859 ], [ -75.98236083984375, -14.462638854980469 ], [ -75.982635498046875, -14.462638854980469 ], [ -75.982635498046875, -14.462082862854004 ], [ -75.982917785644531, -14.462082862854004 ], [ -75.982917785644531, -14.46180534362793 ], [ -75.983192443847656, -14.46180534362793 ], [ -75.983192443847656, -14.461526870727539 ], [ -75.984306335449105, -14.461526870727539 ], [ -75.984306335449105, -14.461251258850041 ], [ -75.984580993652287, -14.461251258850041 ], [ -75.984580993652287, -14.460970878601074 ], [ -75.984863281249943, -14.460970878601074 ], [ -75.984863281249943, -14.460695266723633 ], [ -75.985137939453068, -14.460695266723633 ], [ -75.985137939453068, -14.460416793823185 ], [ -75.985420227050724, -14.460416793823185 ], [ -75.985420227050724, -14.460139274597168 ], [ -75.985694885253906, -14.460139274597168 ], [ -75.985694885253906, -14.459860801696777 ], [ -75.985969543457031, -14.459860801696777 ], [ -75.985969543457031, -14.459583282470703 ], [ -75.986251831054688, -14.459583282470703 ], [ -75.986251831054688, -14.459304809570312 ], [ -75.987083435058594, -14.459304809570312 ], [ -75.987083435058594, -14.458748817443848 ], [ -75.987358093261605, -14.458748817443848 ], [ -75.987358093261605, -14.458471298217773 ], [ -75.987640380859318, -14.458473205566349 ], [ -75.987640380859318, -14.458194732665959 ], [ -75.988197326660099, -14.458194732665959 ], [ -75.988197326660099, -14.457915306091309 ], [ -75.988471984863224, -14.457917213439885 ], [ -75.988471984863224, -14.457638740539494 ], [ -75.989028930664062, -14.457638740539494 ], [ -75.989028930664062, -14.45736122131342 ], [ -75.989303588867188, -14.45736122131342 ], [ -75.989303588867188, -14.457082748413029 ], [ -75.989860534667969, -14.457082748413029 ], [ -75.989860534667969, -14.456805229187012 ], [ -75.990135192871094, -14.456805229187012 ], [ -75.990135192871094, -14.456528663635254 ], [ -75.990692138671818, -14.456528663635254 ], [ -75.990692138671818, -14.456248283386174 ], [ -75.990974426269474, -14.456251144409066 ], [ -75.990974426269474, -14.455972671508789 ], [ -75.991531372070256, -14.455972671508789 ], [ -75.991531372070256, -14.455692291259709 ], [ -75.992080688476562, -14.455695152282658 ], [ -75.992080688476562, -14.455416679382211 ], [ -75.992637634277344, -14.455416679382211 ], [ -75.992637634277344, -14.455139160156193 ], [ -75.992919921875, -14.455139160156193 ], [ -75.992919921875, -14.454860687255803 ], [ -75.99346923828125, -14.454860687255803 ], [ -75.99346923828125, -14.454582214355355 ], [ -75.994026184081974, -14.454582214355355 ], [ -75.994026184081974, -14.454306602478027 ], [ -75.994583129882756, -14.454306602478027 ], [ -75.994583129882756, -14.454026222228947 ], [ -75.995140075683594, -14.454029083251953 ], [ -75.995140075683594, -14.453750610351562 ], [ -75.995414733886719, -14.453750610351562 ], [ -75.995414733886719, -14.453470230102482 ], [ -75.9959716796875, -14.453473091125488 ], [ -75.9959716796875, -14.453193664550781 ], [ -75.996528625488281, -14.453193664550781 ], [ -75.996528625488281, -14.452916145324707 ], [ -75.997085571288949, -14.452916145324707 ], [ -75.997085571288949, -14.452637672424316 ], [ -75.997360229492131, -14.452637672424316 ], [ -75.997360229492131, -14.452360153198242 ], [ -75.997917175292912, -14.452360153198242 ], [ -75.997917175292912, -14.452084541320801 ], [ -75.998191833496094, -14.452084541320801 ], [ -75.998191833496094, -14.451804161071777 ], [ -75.998748779296875, -14.451804161071777 ], [ -75.998748779296875, -14.451527595519963 ], [ -75.999031066894531, -14.451527595519963 ], [ -75.999031066894531, -14.451248168945199 ], [ -75.999580383300781, -14.451250076293945 ], [ -75.999580383300781, -14.450971603393498 ], [ -75.999862670898438, -14.450971603393498 ], [ -76.000137329101449, -14.450971603393498 ], [ -76.000694274902287, -14.450971603393498 ], [ -76.000694274902287, -14.45069408416748 ], [ -76.00152587890625, -14.45069408416748 ], [ -76.00152587890625, -14.45041561126709 ], [ -76.002082824707031, -14.45041561126709 ], [ -76.002082824707031, -14.450138092041016 ], [ -76.002357482910156, -14.450138092041016 ], [ -76.002357482910156, -14.449861526489144 ], [ -76.002914428710938, -14.449861526489144 ], [ -76.002914428710938, -14.449582099914551 ], [ -76.003196716308594, -14.449582099914551 ], [ -76.003196716308594, -14.449305534362736 ], [ -76.003753662109318, -14.449305534362736 ], [ -76.003753662109318, -14.449028015136662 ], [ -76.004585266113224, -14.449028015136662 ], [ -76.004585266113224, -14.448749542236271 ], [ -76.005142211914062, -14.448749542236271 ], [ -76.005142211914062, -14.448472023010197 ], [ -76.005691528320312, -14.448472023010197 ], [ -76.005691528320312, -14.448193550109806 ], [ -76.00653076171875, -14.448193550109806 ], [ -76.00653076171875, -14.447916030883789 ], [ -76.007080078124943, -14.447916030883789 ], [ -76.007080078124943, -14.447637557983342 ], [ -76.00958251953125, -14.447637557983342 ], [ -76.00958251953125, -14.447084426879826 ], [ -76.009864807128793, -14.447084426879826 ], [ -76.009864807128793, -14.446528434753361 ], [ -76.010139465331974, -14.446528434753361 ], [ -76.010139465331974, -14.445972442626896 ], [ -76.011528015136719, -14.445972442626896 ], [ -76.011528015136719, -14.445416450500431 ], [ -76.011802673339844, -14.445416450500431 ], [ -76.011802673339844, -14.444581985473576 ], [ -76.012359619140625, -14.444583892822266 ], [ -76.012359619140625, -14.444306373596078 ], [ -76.012641906738281, -14.444306373596078 ], [ -76.012641906738281, -14.442361831665039 ], [ -76.012916564941293, -14.442361831665039 ], [ -76.012916564941293, -14.4415283203125 ], [ -76.013191223144474, -14.4415283203125 ], [ -76.013191223144474, -14.441249847412109 ], [ -76.013473510742131, -14.441249847412109 ], [ -76.013473510742131, -14.440971374511719 ], [ -76.013748168945256, -14.440971374511719 ], [ -76.013748168945256, -14.440695762634221 ], [ -76.014030456542912, -14.440695762634221 ], [ -76.014030456542912, -14.440139770507812 ], [ -76.014305114746094, -14.440139770507812 ], [ -76.014305114746094, -14.439582824706974 ], [ -76.014579772949219, -14.439582824706974 ], [ -76.014579772949219, -14.439305305480957 ], [ -76.014862060546875, -14.439305305480957 ], [ -76.014862060546875, -14.43902683258051 ], [ -76.015419006347656, -14.43902683258051 ], [ -76.015419006347656, -14.438749313354492 ], [ -76.015693664550781, -14.438749313354492 ], [ -76.015693664550781, -14.438470840454102 ], [ -76.016250610351506, -14.438470840454102 ], [ -76.016250610351506, -14.438193321228027 ], [ -76.016525268554631, -14.438193321228027 ], [ -76.016525268554631, -14.437916755676156 ], [ -76.017082214355412, -14.437916755676156 ], [ -76.017082214355412, -14.437639236450138 ], [ -76.017364501953068, -14.437639236450138 ], [ -76.017364501953068, -14.437360763549748 ], [ -76.017913818359375, -14.437360763549748 ], [ -76.017913818359375, -14.437083244323674 ], [ -76.019027709960938, -14.437083244323674 ], [ -76.019027709960938, -14.437360763549748 ], [ -76.019584655761662, -14.437360763549748 ], [ -76.019584655761662, -14.437083244323674 ], [ -76.019859313964787, -14.437083244323674 ], [ -76.019859313964787, -14.436804771423283 ], [ -76.020141601562443, -14.436804771423283 ], [ -76.020141601562443, -14.436527252197209 ], [ -76.020416259765568, -14.436527252197209 ], [ -76.020416259765568, -14.436248779296818 ], [ -76.02069091796875, -14.436248779296818 ], [ -76.02069091796875, -14.435973167419434 ], [ -76.021530151367188, -14.435973167419434 ], [ -76.021530151367188, -14.435694694519043 ], [ -76.021804809570312, -14.435694694519043 ], [ -76.021804809570312, -14.435415267944336 ], [ -76.022361755371094, -14.435417175292855 ], [ -76.022361755371094, -14.435138702392578 ], [ -76.022636413574162, -14.435138702392578 ], [ -76.022636413574162, -14.434859275817871 ], [ -76.023193359374943, -14.434861183166447 ], [ -76.023193359374943, -14.434582710266 ], [ -76.023475646972599, -14.434582710266 ], [ -76.023475646972599, -14.434303283691406 ], [ -76.025413513183594, -14.434305191039982 ], [ -76.025413513183594, -14.434026718139592 ], [ -76.025695800781136, -14.434026718139592 ], [ -76.025695800781136, -14.433749198913517 ], [ -76.025970458984318, -14.433751106262207 ], [ -76.025970458984318, -14.433472633361816 ], [ -76.026527404785099, -14.433472633361816 ], [ -76.026527404785099, -14.433195114135742 ], [ -76.026802062988281, -14.433195114135742 ], [ -76.026802062988281, -14.432916641235352 ], [ -76.027084350585938, -14.432916641235352 ], [ -76.027084350585938, -14.432639122009277 ], [ -76.027359008789062, -14.432639122009277 ], [ -76.027359008789062, -14.432360649108887 ], [ -76.028747558593636, -14.432360649108887 ], [ -76.028747558593636, -14.432083129882812 ], [ -76.03125, -14.432083129882812 ], [ -76.03125, -14.431804656982422 ], [ -76.031806945800781, -14.431804656982422 ], [ -76.031806945800781, -14.431527137756234 ], [ -76.032363891601506, -14.43152904510498 ], [ -76.032363891601506, -14.431248664855957 ], [ -76.032913208007756, -14.431248664855957 ], [ -76.032913208007756, -14.430971145629826 ], [ -76.033470153808594, -14.430973052978516 ], [ -76.033470153808594, -14.430694580078125 ], [ -76.03375244140625, -14.430694580078125 ], [ -76.03375244140625, -14.43013858795166 ], [ -76.034027099609375, -14.43013858795166 ], [ -76.034027099609375, -14.429861068725586 ], [ -76.0343017578125, -14.429861068725586 ], [ -76.0343017578125, -14.429582595825195 ], [ -76.034584045410156, -14.429582595825195 ], [ -76.034584045410156, -14.429025650024414 ], [ -76.035697937011662, -14.429025650024414 ], [ -76.035697937011662, -14.42874813079834 ], [ -76.036529541015625, -14.428750991821232 ], [ -76.036529541015625, -14.428473472595215 ], [ -76.03680419921875, -14.428473472595215 ], [ -76.03680419921875, -14.428192138671875 ], [ -76.037086486816406, -14.428194999694824 ], [ -76.037086486816406, -14.427916526794377 ], [ -76.037361145019531, -14.427916526794377 ], [ -76.037361145019531, -14.427639007568359 ], [ -76.037635803222656, -14.427639007568359 ], [ -76.037635803222656, -14.427359580993596 ], [ -76.037918090820312, -14.427359580993596 ], [ -76.037956237792969, -14.427082061767521 ], [ -76.038192749023438, -14.427082061767521 ], [ -76.038192749023438, -14.426807403564396 ], [ -76.03847503662098, -14.426807403564396 ], [ -76.03847503662098, -14.426526069641113 ], [ -76.038749694824162, -14.426528930664006 ], [ -76.038749694824162, -14.426251411437931 ], [ -76.039024353027287, -14.426251411437931 ], [ -76.039024353027287, -14.425970077514648 ], [ -76.039306640624943, -14.425971984863168 ], [ -76.039306640624943, -14.42569446563715 ], [ -76.039581298828125, -14.42569446563715 ], [ -76.039581298828125, -14.42541599273676 ], [ -76.039863586425781, -14.42541599273676 ], [ -76.039863586425781, -14.425138473510685 ], [ -76.040138244628906, -14.425138473510685 ], [ -76.040138244628906, -14.424860000610295 ], [ -76.040412902832031, -14.424860000610295 ], [ -76.040412902832031, -14.42458438873291 ], [ -76.040695190429688, -14.42458438873291 ], [ -76.040695190429688, -14.42430400848383 ], [ -76.040969848632812, -14.42430400848383 ], [ -76.040969848632812, -14.423748016357365 ], [ -76.041252136230469, -14.423749923706055 ], [ -76.041252136230469, -14.421527862548828 ], [ -76.040969848632812, -14.421527862548828 ], [ -76.040969848632812, -14.420140266418457 ], [ -76.041252136230469, -14.420140266418457 ], [ -76.041252136230469, -14.418749809265137 ], [ -76.04152679443348, -14.418749809265137 ], [ -76.04152679443348, -14.417083740234318 ], [ -76.041252136230469, -14.417083740234318 ], [ -76.041252136230469, -14.416527748107853 ], [ -76.042358398437443, -14.416527748107853 ], [ -76.042358398437443, -14.416250228881836 ], [ -76.044029235839844, -14.416250228881836 ], [ -76.044029235839844, -14.415971755981388 ], [ -76.044586181640625, -14.415971755981388 ], [ -76.044586181640625, -14.415691375732422 ], [ -76.045135498046818, -14.415694236755371 ], [ -76.045135498046818, -14.415417671203613 ], [ -76.045692443847599, -14.415417671203613 ], [ -76.045692443847599, -14.415137290954533 ], [ -76.045974731445256, -14.415140151977482 ], [ -76.045974731445256, -14.414861679077035 ], [ -76.046249389648438, -14.414861679077035 ], [ -76.046249389648438, -14.414581298828125 ], [ -76.045974731445256, -14.414584159851017 ], [ -76.045974731445256, -14.414028167724553 ], [ -76.046249389648438, -14.414028167724553 ], [ -76.046249389648438, -14.413748741149902 ], [ -76.046524047851562, -14.413748741149902 ], [ -76.046524047851562, -14.413195610046387 ], [ -76.046806335449219, -14.413195610046387 ], [ -76.046806335449219, -14.412915229797306 ], [ -76.047080993652344, -14.412915229797306 ], [ -76.047080993652344, -14.412639617919922 ], [ -76.04736328125, -14.412639617919922 ], [ -76.04736328125, -14.412082672119141 ], [ -76.047637939453125, -14.412082672119141 ], [ -76.047637939453125, -14.411803245544377 ], [ -76.047920227050781, -14.411803245544377 ], [ -76.047920227050781, -14.410693168640023 ], [ -76.048194885253849, -14.410693168640023 ], [ -76.048194885253849, -14.410416603088322 ], [ -76.048469543456974, -14.410416603088322 ], [ -76.048469543456974, -14.410137176513615 ], [ -76.048751831054631, -14.410139083862305 ], [ -76.048751831054631, -14.409860610961914 ], [ -76.049026489257756, -14.409860610961914 ], [ -76.049026489257756, -14.409027099609375 ], [ -76.049308776855469, -14.409027099609375 ], [ -76.049308776855469, -14.408748626708984 ], [ -76.049583435058594, -14.408748626708984 ], [ -76.049583435058594, -14.40847110748291 ], [ -76.049858093261719, -14.40847110748291 ], [ -76.049858093261719, -14.408194541931096 ], [ -76.050697326660156, -14.408194541931096 ], [ -76.050697326660156, -14.40847110748291 ], [ -76.050971984863281, -14.40847110748291 ], [ -76.050971984863281, -14.408748626708984 ], [ -76.051803588867131, -14.408748626708984 ], [ -76.051803588867131, -14.40847110748291 ], [ -76.052085876464787, -14.40847110748291 ], [ -76.052085876464787, -14.407917022705021 ], [ -76.052360534667969, -14.407917022705021 ], [ -76.052360534667969, -14.407638549804631 ], [ -76.05291748046875, -14.407638549804631 ], [ -76.05291748046875, -14.407361030578613 ], [ -76.053192138671875, -14.407361030578613 ], [ -76.053192138671875, -14.407082557678166 ], [ -76.053749084472656, -14.407082557678166 ], [ -76.053749084472656, -14.405693054199219 ], [ -76.054031372070312, -14.405693054199219 ], [ -76.054031372070312, -14.404582977294865 ], [ -76.054306030273324, -14.404582977294865 ], [ -76.054306030273324, -14.404305458068848 ], [ -76.054862976074162, -14.404305458068848 ], [ -76.054862976074162, -14.4040269851684 ], [ -76.055137634277287, -14.40402889251709 ], [ -76.055137634277287, -14.403751373290902 ], [ -76.055694580078125, -14.403751373290902 ], [ -76.055694580078125, -14.403470993041992 ], [ -76.05596923828125, -14.403472900390625 ], [ -76.05596923828125, -14.403195381164494 ], [ -76.056251525878906, -14.403195381164494 ], [ -76.056251525878906, -14.402360916137638 ], [ -76.056526184082031, -14.402360916137638 ], [ -76.056526184082031, -14.401526451110783 ], [ -76.056808471679688, -14.401526451110783 ], [ -76.056808471679688, -14.400973320007324 ], [ -76.057083129882812, -14.400973320007324 ], [ -76.057083129882812, -14.400137901306152 ], [ -76.057357788085824, -14.400137901306152 ], [ -76.057357788085824, -14.399581909179688 ], [ -76.057640075683537, -14.399581909179688 ], [ -76.057640075683537, -14.399304389953613 ], [ -76.057914733886662, -14.399304389953613 ], [ -76.057914733886662, -14.399028778076172 ], [ -76.058197021484318, -14.399028778076172 ], [ -76.058197021484318, -14.398471832275334 ], [ -76.058471679687443, -14.398471832275334 ], [ -76.058471679687443, -14.397915840148926 ], [ -76.058746337890625, -14.397915840148926 ], [ -76.058746337890625, -14.397359848022461 ], [ -76.059028625488281, -14.397359848022461 ], [ -76.059028625488281, -14.396805763244572 ], [ -76.059585571289062, -14.396805763244572 ], [ -76.059585571289062, -14.396528244018498 ], [ -76.059860229492188, -14.396528244018498 ], [ -76.059860229492188, -14.395972251892033 ], [ -76.060142517089844, -14.395972251892033 ], [ -76.060142517089844, -14.395137786865178 ], [ -76.060417175292969, -14.395137786865178 ], [ -76.060417175292969, -14.394583702087402 ], [ -76.060974121093693, -14.394583702087402 ], [ -76.060974121093693, -14.394304275512695 ], [ -76.061531066894474, -14.394306182861271 ], [ -76.061531066894474, -14.394027709960824 ], [ -76.062080383300781, -14.394027709960824 ], [ -76.062080383300781, -14.39374828338623 ], [ -76.062362670898438, -14.393750190734806 ], [ -76.062362670898438, -14.393471717834416 ], [ -76.062637329101562, -14.393471717834416 ], [ -76.062637329101562, -14.392915725707951 ], [ -76.062919616699219, -14.392915725707951 ], [ -76.062919616699219, -14.392359733581486 ], [ -76.063194274902344, -14.392359733581486 ], [ -76.063194274902344, -14.391805648803711 ], [ -76.064025878906193, -14.391805648803711 ], [ -76.064025878906193, -14.391528129577637 ], [ -76.064308166503849, -14.391528129577637 ], [ -76.064308166503849, -14.391249656677246 ], [ -76.064582824706974, -14.391249656677246 ], [ -76.064582824706974, -14.390969276428166 ], [ -76.064857482910099, -14.390972137451058 ], [ -76.064857482910099, -14.390693664550781 ], [ -76.065139770507812, -14.390693664550781 ], [ -76.065139770507812, -14.39041614532465 ], [ -76.065414428710938, -14.39041614532465 ], [ -76.065414428710938, -14.389860153198185 ], [ -76.065696716308594, -14.389862060546875 ], [ -76.065696716308594, -14.389583587646484 ], [ -76.065971374511719, -14.389583587646484 ], [ -76.065971374511719, -14.389303207397347 ], [ -76.066253662109375, -14.38930606842041 ], [ -76.066253662109375, -14.38902759552002 ], [ -76.0665283203125, -14.38902759552002 ], [ -76.0665283203125, -14.388750076293945 ], [ -76.066802978515625, -14.388750076293945 ], [ -76.066802978515625, -14.388471603393555 ], [ -76.067085266113168, -14.388471603393555 ], [ -76.067085266113168, -14.38819408416748 ], [ -76.067359924316349, -14.38819408416748 ], [ -76.067359924316349, -14.387914657592773 ], [ -76.067916870117131, -14.387914657592773 ], [ -76.067916870117131, -14.387637138366699 ], [ -76.068191528320312, -14.387639999389648 ], [ -76.068191528320312, -14.387361526489201 ], [ -76.068473815917969, -14.387361526489201 ], [ -76.068473815917969, -14.387081146240234 ], [ -76.068748474121094, -14.387084007263184 ], [ -76.068748474121094, -14.386805534362793 ], [ -76.069305419921875, -14.386805534362793 ], [ -76.069305419921875, -14.386527061462346 ], [ -76.069580078125, -14.386527061462346 ], [ -76.069580078125, -14.386248588561955 ], [ -76.070137023925668, -14.386248588561955 ], [ -76.070137023925668, -14.385971069335938 ], [ -76.070419311523381, -14.385971069335938 ], [ -76.070419311523381, -14.385696411132756 ], [ -76.070968627929631, -14.385696411132756 ], [ -76.070968627929631, -14.385415077209473 ], [ -76.071250915527287, -14.385417938232365 ], [ -76.071250915527287, -14.385139465331974 ], [ -76.071807861328125, -14.385139465331974 ], [ -76.071807861328125, -14.384859085083008 ], [ -76.072364807128906, -14.384860992431584 ], [ -76.072364807128906, -14.38458347320551 ], [ -76.072914123535156, -14.38458347320551 ], [ -76.072914123535156, -14.384305000305119 ], [ -76.073471069335881, -14.384305000305119 ], [ -76.073471069335881, -14.384026527404728 ], [ -76.073753356933537, -14.384026527404728 ], [ -76.073753356933537, -14.383749008178654 ], [ -76.074302673339787, -14.383749008178654 ], [ -76.074302673339787, -14.38347339630127 ], [ -76.074859619140625, -14.38347339630127 ], [ -76.074859619140625, -14.383193016052189 ], [ -76.075416564941406, -14.383193016052189 ], [ -76.075416564941406, -14.382917404174691 ], [ -76.075691223144531, -14.382917404174691 ], [ -76.075691223144531, -14.382361412048283 ], [ -76.076248168945312, -14.382361412048283 ], [ -76.076248168945312, -14.382081031799316 ], [ -76.076805114746037, -14.382082939147836 ], [ -76.076805114746037, -14.381805419921818 ], [ -76.077362060546818, -14.381805419921818 ], [ -76.077362060546818, -14.381526947021428 ], [ -76.077636718749943, -14.381526947021428 ], [ -76.077636718749943, -14.381251335144043 ], [ -76.078193664550781, -14.381251335144043 ], [ -76.078193664550781, -14.380970954894963 ], [ -76.078750610351562, -14.380970954894963 ], [ -76.078750610351562, -14.380695343017578 ], [ -76.079307556152344, -14.380695343017578 ], [ -76.079307556152344, -14.380416870117188 ], [ -76.079864501953011, -14.380416870117188 ], [ -76.079864501953011, -14.380139350891113 ], [ -76.080139160156193, -14.380139350891113 ], [ -76.080139160156193, -14.379860877990723 ], [ -76.080696105956974, -14.379860877990723 ], [ -76.080696105956974, -14.379583358764648 ], [ -76.081253051757812, -14.379583358764648 ], [ -76.081253051757812, -14.379304885864258 ], [ -76.081802368164062, -14.379304885864258 ], [ -76.081802368164062, -14.37902736663807 ], [ -76.082359313964844, -14.37902736663807 ], [ -76.082359313964844, -14.378748893737793 ], [ -76.082916259765511, -14.378748893737793 ], [ -76.082916259765511, -14.378473281860352 ], [ -76.083190917968693, -14.378473281860352 ], [ -76.083190917968693, -14.378194808959961 ], [ -76.083747863769474, -14.378194808959961 ], [ -76.083747863769474, -14.377917289733887 ], [ -76.084304809570312, -14.377917289733887 ], [ -76.084304809570312, -14.377638816833496 ], [ -76.084861755371094, -14.377638816833496 ], [ -76.084861755371094, -14.377361297607422 ], [ -76.085418701171875, -14.377361297607422 ], [ -76.085418701171875, -14.377082824707031 ], [ -76.085975646972656, -14.377082824707031 ], [ -76.085975646972656, -14.376805305480957 ], [ -76.086524963378849, -14.376805305480957 ], [ -76.086524963378849, -14.376528739929142 ], [ -76.087081909179631, -14.376528739929142 ], [ -76.087081909179631, -14.376251220703068 ], [ -76.087638854980469, -14.376251220703068 ], [ -76.087638854980469, -14.375972747802678 ], [ -76.08819580078125, -14.375972747802678 ], [ -76.08819580078125, -14.37569522857666 ], [ -76.088752746582031, -14.37569522857666 ], [ -76.088752746582031, -14.375416755676213 ], [ -76.089302062988224, -14.375416755676213 ], [ -76.089302062988224, -14.375136375427246 ], [ -76.089859008789006, -14.375139236450195 ], [ -76.089859008789006, -14.374860763549805 ], [ -76.090415954589787, -14.374860763549805 ], [ -76.090415954589787, -14.37458324432373 ], [ -76.090972900390625, -14.37458324432373 ], [ -76.090972900390625, -14.374306678771859 ], [ -76.091529846191406, -14.374306678771859 ], [ -76.091529846191406, -14.374026298522949 ], [ -76.092086791992188, -14.374029159545842 ], [ -76.092086791992188, -14.373750686645451 ], [ -76.092636108398381, -14.373750686645451 ], [ -76.092636108398381, -14.373473167419377 ], [ -76.092918395996037, -14.373473167419377 ], [ -76.092918395996037, -14.373194694518986 ], [ -76.093475341796818, -14.373194694518986 ], [ -76.093475341796818, -14.37291431427002 ], [ -76.094024658203125, -14.372916221618596 ], [ -76.094024658203125, -14.372637748718148 ], [ -76.094581604003906, -14.372637748718148 ], [ -76.094581604003906, -14.372360229492131 ], [ -76.095138549804688, -14.372360229492131 ], [ -76.095138549804688, -14.372084617614746 ], [ -76.095695495605355, -14.372084617614746 ], [ -76.095695495605355, -14.371804237365666 ], [ -76.096252441406193, -14.371804237365666 ], [ -76.096252441406193, -14.371527671813965 ], [ -76.0968017578125, -14.371527671813965 ], [ -76.0968017578125, -14.371248245239201 ], [ -76.097358703613281, -14.371250152587891 ], [ -76.097358703613281, -14.3709716796875 ], [ -76.097915649414062, -14.3709716796875 ], [ -76.097915649414062, -14.370694160461426 ], [ -76.098197937011719, -14.370694160461426 ], [ -76.098197937011719, -14.370415687561035 ], [ -76.098747253417855, -14.370415687561035 ], [ -76.098747253417855, -14.370138168334847 ], [ -76.099304199218693, -14.370138168334847 ], [ -76.099304199218693, -14.36985969543457 ], [ -76.099861145019474, -14.36985969543457 ], [ -76.099861145019474, -14.369582176208439 ], [ -76.100418090820312, -14.369582176208439 ], [ -76.100418090820312, -14.369305610656738 ], [ -76.100975036621094, -14.369305610656738 ], [ -76.100975036621094, -14.369028091430664 ], [ -76.101806640625, -14.369028091430664 ], [ -76.101806640625, -14.368749618530273 ], [ -76.102363586425724, -14.368749618530273 ], [ -76.102363586425724, -14.368472099304199 ], [ -76.103195190429631, -14.368472099304199 ], [ -76.103195190429631, -14.368193626403809 ], [ -76.103752136230469, -14.368193626403809 ], [ -76.103752136230469, -14.367916107177734 ], [ -76.104026794433594, -14.367916107177734 ], [ -76.104026794433594, -14.367637634277344 ], [ -76.104583740234375, -14.367637634277344 ], [ -76.104583740234375, -14.36736011505127 ], [ -76.1048583984375, -14.367362022399846 ], [ -76.1048583984375, -14.367083549499455 ], [ -76.107635498046875, -14.367083549499455 ], [ -76.107635498046875, -14.366806030273438 ], [ -76.108192443847656, -14.366806030273438 ], [ -76.108192443847656, -14.36652755737299 ], [ -76.10986328125, -14.36652755737299 ], [ -76.10986328125, -14.366250038146973 ], [ -76.110137939453125, -14.366250038146973 ], [ -76.110137939453125, -14.365971565246582 ], [ -76.110694885253906, -14.365971565246582 ], [ -76.110694885253906, -14.365694046020508 ], [ -76.111251831054688, -14.365694046020508 ], [ -76.111251831054688, -14.365415573120117 ], [ -76.111808776855412, -14.365415573120117 ], [ -76.111808776855412, -14.365138053894043 ], [ -76.112358093261662, -14.365139961242619 ], [ -76.112358093261662, -14.364862442016545 ], [ -76.1129150390625, -14.364862442016545 ], [ -76.1129150390625, -14.364582061767578 ], [ -76.113471984863281, -14.364583969116154 ], [ -76.113471984863281, -14.36430644989008 ], [ -76.114028930664062, -14.36430644989008 ], [ -76.114028930664062, -14.364027976989689 ], [ -76.116531372070312, -14.364027976989689 ], [ -76.116531372070312, -14.363750457763672 ], [ -76.118751525878849, -14.363750457763672 ], [ -76.118751525878849, -14.363471984863224 ], [ -76.119308471679688, -14.363471984863224 ], [ -76.119308471679688, -14.363194465637207 ], [ -76.119857788085938, -14.363194465637207 ], [ -76.119857788085938, -14.362915992736816 ], [ -76.120414733886719, -14.362917900085449 ], [ -76.120414733886719, -14.362638473510742 ], [ -76.120697021484375, -14.362638473510742 ], [ -76.120697021484375, -14.362360000610352 ], [ -76.121246337890568, -14.362361907958871 ], [ -76.121246337890568, -14.362084388732853 ], [ -76.121803283691349, -14.362084388732853 ], [ -76.121803283691349, -14.361805915832463 ], [ -76.122360229492188, -14.361805915832463 ], [ -76.122360229492188, -14.361528396606388 ], [ -76.12347412109375, -14.361528396606388 ], [ -76.12347412109375, -14.361249923705998 ], [ -76.124305725097543, -14.361249923705998 ], [ -76.124305725097543, -14.360972404479924 ], [ -76.125419616699162, -14.360972404479924 ], [ -76.125419616699162, -14.360695838928223 ], [ -76.127082824707031, -14.360695838928223 ], [ -76.127082824707031, -14.360415458679142 ], [ -76.127357482910043, -14.360415458679142 ], [ -76.127357482910043, -14.35986232757557 ], [ -76.127639770507756, -14.35986232757557 ], [ -76.127639770507756, -14.359305381774902 ], [ -76.127914428710881, -14.359305381774902 ], [ -76.127914428710881, -14.358749389648438 ], [ -76.129302978515625, -14.358749389648438 ], [ -76.129302978515625, -14.358470916748047 ], [ -76.130416870117188, -14.358470916748047 ], [ -76.130416870117188, -14.357639312744141 ], [ -76.130691528320256, -14.357639312744141 ], [ -76.130691528320256, -14.356804847717285 ], [ -76.130416870117188, -14.356804847717285 ], [ -76.130416870117188, -14.35624885559082 ], [ -76.130142211914062, -14.35624885559082 ], [ -76.130142211914062, -14.355138778686467 ], [ -76.130691528320256, -14.355138778686467 ], [ -76.130691528320256, -14.355417251586857 ], [ -76.130973815917912, -14.355415344238281 ], [ -76.130973815917912, -14.355694770812931 ], [ -76.132362365722656, -14.355694770812931 ], [ -76.132362365722656, -14.355138778686467 ], [ -76.132637023925781, -14.355138778686467 ], [ -76.132637023925781, -14.354582786560002 ], [ -76.132919311523438, -14.354582786560002 ], [ -76.132919311523438, -14.354026794433594 ], [ -76.133193969726562, -14.354026794433594 ], [ -76.133193969726562, -14.35374927520752 ], [ -76.133468627929688, -14.35374927520752 ], [ -76.133468627929688, -14.353193283081055 ], [ -76.133750915527344, -14.353195190429631 ], [ -76.133750915527344, -14.35291671752924 ], [ -76.134025573730412, -14.35291671752924 ], [ -76.134025573730412, -14.352360725402775 ], [ -76.134307861328068, -14.352360725402775 ], [ -76.134307861328068, -14.352081298828125 ], [ -76.134582519531193, -14.352083206176701 ], [ -76.134582519531193, -14.351529121398926 ], [ -76.134864807128849, -14.351529121398926 ], [ -76.134864807128849, -14.350138664245605 ], [ -76.137641906738224, -14.350138664245605 ], [ -76.137641906738224, -14.349582672119027 ], [ -76.137916564941349, -14.349582672119027 ], [ -76.137916564941349, -14.348192214965763 ], [ -76.137641906738224, -14.34819507598877 ], [ -76.137641906738224, -14.347916603088379 ], [ -76.136802673339844, -14.347916603088379 ], [ -76.136802673339844, -14.347639083862305 ], [ -76.136421203613281, -14.347639083862305 ], [ -76.136253356933594, -14.347639083862305 ], [ -76.136253356933594, -14.34752178192133 ], [ -76.136253356933594, -14.346250534057617 ], [ -76.136528015136719, -14.346250534057617 ], [ -76.136528015136719, -14.345970153808594 ], [ -76.136802673339844, -14.345973014831543 ], [ -76.136802673339844, -14.345693588256779 ], [ -76.137359619140568, -14.345693588256779 ], [ -76.137359619140568, -14.345416069030762 ], [ -76.137641906738224, -14.345416069030762 ], [ -76.137641906738224, -14.345137596130314 ], [ -76.137916564941349, -14.345137596130314 ], [ -76.137916564941349, -14.344860076904297 ], [ -76.137641906738224, -14.344860076904297 ], [ -76.137641906738224, -14.342915534973088 ], [ -76.139030456542969, -14.342915534973088 ], [ -76.139030456542969, -14.342638015747013 ], [ -76.139305114746094, -14.342638015747013 ], [ -76.139305114746094, -14.342362403869515 ], [ -76.139579772949219, -14.342362403869515 ], [ -76.139579772949219, -14.342082023620605 ], [ -76.139305114746094, -14.342082023620605 ], [ -76.139305114746094, -14.341526031494141 ], [ -76.139030456542969, -14.34152793884266 ], [ -76.139030456542969, -14.340138435363713 ], [ -76.139862060546875, -14.340138435363713 ], [ -76.139862060546875, -14.340415954589787 ], [ -76.141525268554688, -14.340415954589787 ], [ -76.141525268554688, -14.339859962463322 ], [ -76.141807556152344, -14.339859962463322 ], [ -76.141807556152344, -14.338472366332894 ], [ -76.142082214355469, -14.338472366332894 ], [ -76.142082214355469, -14.337637901306039 ], [ -76.142364501953125, -14.337637901306039 ], [ -76.142364501953125, -14.33708381652832 ], [ -76.14263916015625, -14.33708381652832 ], [ -76.14263916015625, -14.336806297302246 ], [ -76.142913818359375, -14.336806297302246 ], [ -76.142913818359375, -14.336250305175781 ], [ -76.143196105957031, -14.336250305175781 ], [ -76.143196105957031, -14.335971832275391 ], [ -76.143470764160099, -14.335971832275391 ], [ -76.143470764160099, -14.335694313049316 ], [ -76.143753051757756, -14.335694313049316 ], [ -76.143753051757756, -14.335140228271484 ], [ -76.144027709960881, -14.335140228271484 ], [ -76.144027709960881, -14.334861755371037 ], [ -76.144302368164006, -14.334861755371037 ], [ -76.144302368164006, -14.334305763244629 ], [ -76.144584655761662, -14.334305763244629 ], [ -76.144584655761662, -14.334028244018555 ], [ -76.144859313964844, -14.334028244018555 ], [ -76.144859313964844, -14.333749771118164 ], [ -76.1451416015625, -14.333749771118164 ], [ -76.1451416015625, -14.333471298217773 ], [ -76.14569091796875, -14.333471298217773 ], [ -76.14569091796875, -14.333195686340275 ], [ -76.145973205566406, -14.333195686340275 ], [ -76.145973205566406, -14.332915306091309 ], [ -76.146247863769531, -14.332915306091309 ], [ -76.146247863769531, -14.33263969421381 ], [ -76.146530151367188, -14.33263969421381 ], [ -76.146530151367188, -14.332359313964844 ], [ -76.146804809570256, -14.332359313964844 ], [ -76.146804809570256, -14.331803321838379 ], [ -76.147087097167912, -14.331803321838379 ], [ -76.147087097167912, -14.330693244934025 ], [ -76.146804809570256, -14.330693244934025 ], [ -76.146804809570256, -14.330416679382324 ], [ -76.146247863769531, -14.330416679382324 ], [ -76.146247863769531, -14.33013916015625 ], [ -76.145973205566406, -14.33013916015625 ], [ -76.145973205566406, -14.329860687255859 ], [ -76.14569091796875, -14.329860687255859 ], [ -76.14569091796875, -14.329583168029671 ], [ -76.145416259765625, -14.329583168029671 ], [ -76.145416259765625, -14.329304695129395 ], [ -76.1451416015625, -14.329304695129395 ], [ -76.1451416015625, -14.329027175903263 ], [ -76.144584655761662, -14.329027175903263 ], [ -76.144584655761662, -14.328748703002816 ], [ -76.144302368164006, -14.328748703002816 ], [ -76.144302368164006, -14.328471183776799 ], [ -76.144027709960881, -14.328471183776799 ], [ -76.144027709960881, -14.328194618225098 ], [ -76.143753051757756, -14.328194618225098 ], [ -76.143753051757756, -14.327917098999023 ], [ -76.143196105957031, -14.327917098999023 ], [ -76.143196105957031, -14.327638626098633 ], [ -76.142913818359375, -14.327638626098633 ], [ -76.142913818359375, -14.327361106872559 ], [ -76.14263916015625, -14.327361106872559 ], [ -76.14263916015625, -14.327082633972168 ], [ -76.142082214355469, -14.327082633972168 ], [ -76.142082214355469, -14.326805114746094 ], [ -76.141807556152344, -14.326805114746094 ], [ -76.141807556152344, -14.326526641845703 ], [ -76.140419006347599, -14.326526641845703 ], [ -76.140419006347599, -14.326805114746094 ], [ -76.139305114746094, -14.326805114746094 ], [ -76.139305114746094, -14.327082633972168 ], [ -76.137359619140568, -14.327082633972168 ], [ -76.137359619140568, -14.326805114746094 ], [ -76.136802673339844, -14.326805114746094 ], [ -76.136802673339844, -14.326526641845703 ], [ -76.136253356933594, -14.326526641845703 ], [ -76.136253356933594, -14.326249122619629 ], [ -76.134582519531193, -14.326249122619629 ], [ -76.134582519531193, -14.326526641845703 ], [ -76.134307861328068, -14.326526641845703 ], [ -76.134307861328068, -14.326805114746094 ], [ -76.132362365722656, -14.326805114746094 ], [ -76.132362365722656, -14.326526641845703 ], [ -76.131248474121037, -14.326526641845703 ], [ -76.131248474121037, -14.326805114746094 ], [ -76.130416870117188, -14.326805114746094 ], [ -76.130416870117188, -14.327082633972168 ], [ -76.129631042480412, -14.327082633972168 ], [ -76.126808166503906, -14.327082633972168 ], [ -76.125968933105469, -14.327082633972168 ], [ -76.125968933105469, -14.327361106872559 ], [ -76.12579345703125, -14.327361106872559 ], [ -76.125137329101506, -14.327361106872559 ], [ -76.125137329101506, -14.327539443969727 ], [ -76.125137329101506, -14.327638626098633 ], [ -76.124961853027287, -14.327638626098633 ], [ -76.124580383300724, -14.327638626098633 ], [ -76.124580383300724, -14.327917098999023 ], [ -76.124305725097543, -14.327917098999023 ], [ -76.124305725097543, -14.328097343444767 ], [ -76.124305725097543, -14.328194618225098 ], [ -76.124153137207031, -14.328194618225098 ], [ -76.124031066894531, -14.328194618225098 ], [ -76.124031066894531, -14.328471183776799 ], [ -76.123764038085938, -14.328471183776799 ], [ -76.122917175292969, -14.328471183776799 ], [ -76.122917175292969, -14.328748703002816 ], [ -76.120697021484375, -14.328748703002816 ], [ -76.120697021484375, -14.329027175903263 ], [ -76.119857788085938, -14.329027175903263 ], [ -76.119857788085938, -14.329304695129395 ], [ -76.119308471679688, -14.329304695129395 ], [ -76.119308471679688, -14.329583168029671 ], [ -76.116493225097656, -14.329583168029671 ], [ -76.115135192871037, -14.329583168029671 ], [ -76.115135192871037, -14.329304695129395 ], [ -76.112083435058537, -14.329304695129395 ], [ -76.112083435058537, -14.329027175903263 ], [ -76.111526489257699, -14.329027175903263 ], [ -76.111526489257699, -14.328748703002816 ], [ -76.110969543457031, -14.328748703002816 ], [ -76.110969543457031, -14.328471183776799 ], [ -76.110420227050781, -14.328471183776799 ], [ -76.110420227050781, -14.328194618225098 ], [ -76.110137939453125, -14.328194618225098 ], [ -76.110137939453125, -14.327917098999023 ], [ -76.109580993652344, -14.327917098999023 ], [ -76.109580993652344, -14.327638626098633 ], [ -76.109306335449162, -14.327638626098633 ], [ -76.109306335449162, -14.327361106872559 ], [ -76.109024047851506, -14.327361106872559 ], [ -76.109024047851506, -14.326805114746094 ], [ -76.108749389648381, -14.326805114746094 ], [ -76.108749389648381, -14.326249122619629 ], [ -76.108474731445199, -14.326249122619629 ], [ -76.108474731445199, -14.32569313049305 ], [ -76.108192443847656, -14.325695037841797 ], [ -76.108192443847656, -14.324860572814941 ], [ -76.107917785644531, -14.324860572814941 ], [ -76.107917785644531, -14.323471069335938 ], [ -76.107635498046875, -14.323471069335938 ], [ -76.107635498046875, -14.322360992431641 ], [ -76.10736083984375, -14.322360992431641 ], [ -76.10736083984375, -14.321248054504338 ], [ -76.107086181640625, -14.321248054504338 ], [ -76.107086181640625, -14.320138931274357 ], [ -76.106803894042969, -14.320138931274357 ], [ -76.106803894042969, -14.317915916442871 ], [ -76.106529235839844, -14.317915916442871 ], [ -76.106529235839844, -14.311526298522949 ], [ -76.106803894042969, -14.311526298522949 ], [ -76.106803894042969, -14.309304237365723 ], [ -76.107086181640625, -14.309306144714299 ], [ -76.107086181640625, -14.306248664855957 ], [ -76.10736083984375, -14.306248664855957 ], [ -76.10736083984375, -14.303473472595158 ], [ -76.107635498046875, -14.303473472595158 ], [ -76.107635498046875, -14.301804542541447 ], [ -76.107917785644531, -14.301804542541447 ], [ -76.107917785644531, -14.300139427185002 ], [ -76.108192443847656, -14.300139427185002 ], [ -76.108192443847656, -14.299027442932072 ], [ -76.108474731445199, -14.299027442932072 ], [ -76.108474731445199, -14.29815578460682 ], [ -76.108474731445199, -14.297917366027718 ], [ -76.108749389648381, -14.297917366027718 ], [ -76.108749389648381, -14.297324180603027 ], [ -76.108749389648381, -14.297082901000863 ], [ -76.109024047851506, -14.297082901000863 ], [ -76.109024047851506, -14.296491622924748 ], [ -76.109024047851506, -14.29597282409668 ], [ -76.10919189453125, -14.29597282409668 ], [ -76.109306335449162, -14.29597282409668 ], [ -76.109306335449162, -14.295636177062988 ], [ -76.109306335449162, -14.29486083984375 ], [ -76.109580993652344, -14.29486083984375 ], [ -76.109580993652344, -14.294306755065861 ], [ -76.1097412109375, -14.294306755065861 ], [ -76.10986328125, -14.294306755065861 ], [ -76.10986328125, -14.293944358825627 ], [ -76.10986328125, -14.293750762939453 ], [ -76.110137939453125, -14.293750762939453 ], [ -76.110137939453125, -14.293473243713379 ], [ -76.110420227050781, -14.293473243713379 ], [ -76.110420227050781, -14.292917251586914 ], [ -76.110694885253906, -14.292917251586914 ], [ -76.110694885253906, -14.29263782501215 ], [ -76.110969543457031, -14.29263782501215 ], [ -76.110969543457031, -14.292084693908635 ], [ -76.111251831054688, -14.292084693908635 ], [ -76.111251831054688, -14.291804313659668 ], [ -76.111526489257699, -14.291804313659668 ], [ -76.111526489257699, -14.291248321533203 ], [ -76.111808776855412, -14.291250228881779 ], [ -76.111808776855412, -14.290971755981388 ], [ -76.112083435058537, -14.290971755981388 ], [ -76.112083435058537, -14.290415763854924 ], [ -76.112358093261662, -14.290415763854924 ], [ -76.112358093261662, -14.290138244628849 ], [ -76.112640380859318, -14.290138244628849 ], [ -76.112640380859318, -14.289582252502441 ], [ -76.1129150390625, -14.289582252502441 ], [ -76.1129150390625, -14.289305686950684 ], [ -76.113197326660156, -14.289305686950684 ], [ -76.113197326660156, -14.289028167724496 ], [ -76.113471984863281, -14.289028167724496 ], [ -76.113471984863281, -14.288472175598088 ], [ -76.113746643066406, -14.288472175598088 ], [ -76.113746643066406, -14.28819370269764 ], [ -76.114028930664062, -14.28819370269764 ], [ -76.114028930664062, -14.287916183471623 ], [ -76.114303588867188, -14.287916183471623 ], [ -76.114303588867188, -14.287637710571232 ], [ -76.114585876464844, -14.287637710571232 ], [ -76.114585876464844, -14.287360191345158 ], [ -76.114860534667912, -14.287360191345158 ], [ -76.114860534667912, -14.286804199218693 ], [ -76.115135192871037, -14.286806106567383 ], [ -76.115135192871037, -14.286527633666992 ], [ -76.115417480468693, -14.286527633666992 ], [ -76.115417480468693, -14.286250114440918 ], [ -76.115692138671818, -14.286250114440918 ], [ -76.115692138671818, -14.285694122314453 ], [ -76.115974426269474, -14.285694122314453 ], [ -76.115974426269474, -14.285415649414062 ], [ -76.116249084472656, -14.285415649414062 ], [ -76.116249084472656, -14.285138130187875 ], [ -76.116531372070312, -14.285138130187875 ], [ -76.116531372070312, -14.284582138061467 ], [ -76.116806030273438, -14.284584045410156 ], [ -76.116806030273438, -14.284305572509766 ], [ -76.117080688476562, -14.284305572509766 ], [ -76.117080688476562, -14.283749580383301 ], [ -76.117362976074219, -14.283749580383301 ], [ -76.117362976074219, -14.283472061157227 ], [ -76.117637634277344, -14.283472061157227 ], [ -76.117637634277344, -14.282916069030762 ], [ -76.117919921875, -14.282916069030762 ], [ -76.117919921875, -14.282360076904297 ], [ -76.118194580078068, -14.282360076904297 ], [ -76.118194580078068, -14.281805992126465 ], [ -76.118469238281193, -14.281805992126465 ], [ -76.118469238281193, -14.281528472900391 ], [ -76.118751525878849, -14.281528472900391 ], [ -76.118751525878849, -14.280971527099609 ], [ -76.119026184081974, -14.280971527099609 ], [ -76.119026184081974, -14.280694007873535 ], [ -76.119308471679688, -14.280694007873535 ], [ -76.119308471679688, -14.280137062072754 ], [ -76.119583129882812, -14.280137062072754 ], [ -76.119583129882812, -14.279581069946289 ], [ -76.119857788085938, -14.279581069946289 ], [ -76.119857788085938, -14.2790269851684 ], [ -76.120140075683594, -14.2790269851684 ], [ -76.120140075683594, -14.278470993041935 ], [ -76.120414733886719, -14.278470993041935 ], [ -76.120414733886719, -14.277915000915471 ], [ -76.120697021484375, -14.277917861938363 ], [ -76.120697021484375, -14.277639389038086 ], [ -76.121246337890568, -14.277639389038086 ], [ -76.121246337890568, -14.277359008789006 ], [ -76.121528625488224, -14.277360916137695 ], [ -76.121528625488224, -14.277083396911507 ], [ -76.121803283691349, -14.277083396911507 ], [ -76.121803283691349, -14.27680492401123 ], [ -76.122085571289006, -14.27680492401123 ], [ -76.122085571289006, -14.276248931884652 ], [ -76.122642517089844, -14.276248931884652 ], [ -76.122642517089844, -14.275973320007324 ], [ -76.122917175292969, -14.275973320007324 ], [ -76.122917175292969, -14.275694847106934 ], [ -76.123191833496094, -14.275694847106934 ], [ -76.123191833496094, -14.275417327880859 ], [ -76.12347412109375, -14.275417327880859 ], [ -76.12347412109375, -14.274861335754395 ], [ -76.123191833496094, -14.274861335754395 ], [ -76.123191833496094, -14.27430534362793 ], [ -76.12347412109375, -14.27430534362793 ], [ -76.12347412109375, -14.273751258850098 ], [ -76.123748779296875, -14.273751258850098 ], [ -76.123748779296875, -14.273195266723633 ], [ -76.124031066894531, -14.273195266723633 ], [ -76.124031066894531, -14.272639274597168 ], [ -76.124305725097543, -14.272639274597168 ], [ -76.124305725097543, -14.272360801696777 ], [ -76.124580383300724, -14.272360801696777 ], [ -76.124580383300724, -14.272083282470703 ], [ -76.124862670898381, -14.272083282470703 ], [ -76.124862670898381, -14.271804809570312 ], [ -76.125137329101506, -14.271804809570312 ], [ -76.125137329101506, -14.271527290344238 ], [ -76.125419616699162, -14.271527290344238 ], [ -76.125419616699162, -14.270971298217773 ], [ -76.125694274902344, -14.270971298217773 ], [ -76.125694274902344, -14.270415306091309 ], [ -76.125968933105469, -14.270417213439885 ], [ -76.125968933105469, -14.270138740539494 ], [ -76.126251220703125, -14.270138740539494 ], [ -76.126251220703125, -14.269582748413029 ], [ -76.12652587890625, -14.269582748413029 ], [ -76.12652587890625, -14.269305229187012 ], [ -76.126808166503906, -14.269305229187012 ], [ -76.126808166503906, -14.269026756286621 ], [ -76.127082824707031, -14.269026756286621 ], [ -76.127082824707031, -14.268472671508675 ], [ -76.127357482910043, -14.268472671508675 ], [ -76.127357482910043, -14.268192291259766 ], [ -76.128196716308537, -14.268195152282658 ], [ -76.128196716308537, -14.267639160156193 ], [ -76.128471374511662, -14.267639160156193 ], [ -76.128471374511662, -14.267360687255803 ], [ -76.128753662109318, -14.267360687255803 ], [ -76.128753662109318, -14.266806602478027 ], [ -76.1290283203125, -14.266806602478027 ], [ -76.1290283203125, -14.266250610351562 ], [ -76.129302978515625, -14.266250610351562 ], [ -76.129302978515625, -14.265694618225098 ], [ -76.129585266113281, -14.265694618225098 ], [ -76.129585266113281, -14.265416145324707 ], [ -76.129859924316406, -14.265416145324707 ], [ -76.129859924316406, -14.265137672424316 ], [ -76.130142211914062, -14.265137672424316 ], [ -76.130142211914062, -14.264584541320801 ], [ -76.130416870117188, -14.264584541320801 ], [ -76.130416870117188, -14.263471603393555 ], [ -76.130691528320256, -14.263471603393555 ], [ -76.130691528320256, -14.261526107788086 ], [ -76.130416870117188, -14.261528015136662 ], [ -76.130416870117188, -14.261249542236271 ], [ -76.130691528320256, -14.261249542236271 ], [ -76.130691528320256, -14.260972023010254 ], [ -76.130973815917912, -14.260972023010254 ], [ -76.130973815917912, -14.260416030883789 ], [ -76.131248474121037, -14.260416030883789 ], [ -76.131248474121037, -14.259860038757324 ], [ -76.131530761718693, -14.259860038757324 ], [ -76.131530761718693, -14.259305953979435 ], [ -76.131805419921818, -14.259305953979435 ], [ -76.131805419921818, -14.258472442626896 ], [ -76.132080078125, -14.258472442626896 ], [ -76.132080078125, -14.257362365722543 ], [ -76.132362365722656, -14.257362365722543 ], [ -76.132362365722656, -14.255971908569279 ], [ -76.132080078125, -14.255971908569279 ], [ -76.132080078125, -14.254861831665039 ], [ -76.131805419921818, -14.254861831665039 ], [ -76.131805419921818, -14.254305839538574 ], [ -76.131530761718693, -14.254305839538574 ], [ -76.131530761718693, -14.254028320312386 ], [ -76.131248474121037, -14.254028320312386 ], [ -76.131248474121037, -14.253749847412109 ], [ -76.130973815917912, -14.253749847412109 ], [ -76.130973815917912, -14.253472328185978 ], [ -76.130691528320256, -14.253472328185978 ], [ -76.130691528320256, -14.253195762634277 ], [ -76.130493164062443, -14.253195762634277 ], [ -76.130142211914062, -14.253195762634277 ], [ -76.130142211914062, -14.252639770507812 ], [ -76.129859924316406, -14.252639770507812 ], [ -76.129859924316406, -14.251844406127873 ], [ -76.129859924316406, -14.251249313354492 ], [ -76.130142211914062, -14.251249313354492 ], [ -76.130142211914062, -14.250970840454102 ], [ -76.130973815917912, -14.250970840454102 ], [ -76.130973815917912, -14.250693321228027 ], [ -76.131248474121037, -14.250693321228027 ], [ -76.131248474121037, -14.249027252197266 ], [ -76.131530761718693, -14.249027252197266 ], [ -76.131530761718693, -14.248471260070801 ], [ -76.131805419921818, -14.24847316741932 ], [ -76.131805419921818, -14.247915267944336 ], [ -76.132080078125, -14.247917175292912 ], [ -76.132080078125, -14.247082710266056 ], [ -76.132362365722656, -14.247082710266056 ], [ -76.132362365722656, -14.246249198913517 ], [ -76.132637023925781, -14.246249198913517 ], [ -76.132637023925781, -14.245139122009277 ], [ -76.132919311523438, -14.245139122009277 ], [ -76.132919311523438, -14.244583129882699 ], [ -76.133193969726562, -14.244583129882699 ], [ -76.133193969726562, -14.244027137756291 ], [ -76.133468627929688, -14.244027137756291 ], [ -76.133468627929688, -14.243471145629826 ], [ -76.133750915527344, -14.243473052978516 ], [ -76.133750915527344, -14.243194580078125 ], [ -76.134025573730412, -14.243194580078125 ], [ -76.134025573730412, -14.24263858795166 ], [ -76.134307861328068, -14.24263858795166 ], [ -76.134307861328068, -14.242082595825195 ], [ -76.134582519531193, -14.242082595825195 ], [ -76.134582519531193, -14.24152660369873 ], [ -76.134864807128849, -14.24152660369873 ], [ -76.134864807128849, -14.241249084472543 ], [ -76.135139465332031, -14.241249084472543 ], [ -76.135139465332031, -14.240692138671875 ], [ -76.135414123535156, -14.240692138671875 ], [ -76.135414123535156, -14.240139007568359 ], [ -76.135696411132812, -14.240139007568359 ], [ -76.135696411132812, -14.239582061767578 ], [ -76.135971069335938, -14.239582061767578 ], [ -76.135971069335938, -14.239303588867131 ], [ -76.136253356933594, -14.239303588867131 ], [ -76.136253356933594, -14.238751411437988 ], [ -76.136528015136719, -14.238751411437988 ], [ -76.136528015136719, -14.23819446563715 ], [ -76.136802673339844, -14.23819446563715 ], [ -76.136802673339844, -14.237638473510685 ], [ -76.137084960937386, -14.237638473510685 ], [ -76.137084960937386, -14.237360000610295 ], [ -76.137359619140568, -14.237360000610295 ], [ -76.137359619140568, -14.23680400848383 ], [ -76.137641906738224, -14.23680400848383 ], [ -76.137641906738224, -14.236248016357422 ], [ -76.137916564941349, -14.236249923706055 ], [ -76.137916564941349, -14.235693931579476 ], [ -76.138191223144531, -14.235693931579476 ], [ -76.138191223144531, -14.235137939453068 ], [ -76.138473510742188, -14.235137939453068 ], [ -76.138473510742188, -14.234581947326603 ], [ -76.138748168945312, -14.234581947326603 ], [ -76.138748168945312, -14.234027862548828 ], [ -76.139030456542969, -14.234027862548828 ], [ -76.139030456542969, -14.233750343322754 ], [ -76.139305114746094, -14.233750343322754 ], [ -76.139305114746094, -14.233471870422363 ], [ -76.139579772949219, -14.233471870422363 ], [ -76.139579772949219, -14.233194351196289 ], [ -76.139862060546875, -14.233194351196289 ], [ -76.139862060546875, -14.232640266418457 ], [ -76.140136718749886, -14.232640266418457 ], [ -76.140136718749886, -14.232359886169434 ], [ -76.140419006347599, -14.232359886169434 ], [ -76.140419006347599, -14.232084274291992 ], [ -76.140693664550724, -14.232084274291992 ], [ -76.140693664550724, -14.231805801391602 ], [ -76.140975952148381, -14.231805801391602 ], [ -76.140975952148381, -14.231528282165527 ], [ -76.141250610351506, -14.231528282165527 ], [ -76.141250610351506, -14.230972290039062 ], [ -76.141525268554688, -14.230972290039062 ], [ -76.141525268554688, -14.230693817138672 ], [ -76.141807556152344, -14.230693817138672 ], [ -76.141807556152344, -14.230416297912598 ], [ -76.142082214355469, -14.230416297912598 ], [ -76.142082214355469, -14.230137825012207 ], [ -76.142364501953125, -14.230137825012207 ], [ -76.142364501953125, -14.229860305786133 ], [ -76.14263916015625, -14.229862213134709 ], [ -76.14263916015625, -14.229583740234318 ], [ -76.142913818359375, -14.229583740234318 ], [ -76.142913818359375, -14.229306221008301 ], [ -76.143196105957031, -14.229306221008301 ], [ -76.143196105957031, -14.229027748107853 ], [ -76.143753051757756, -14.229027748107853 ], [ -76.143753051757756, -14.228750228881836 ], [ -76.144027709960881, -14.228750228881836 ], [ -76.144027709960881, -14.228471755981445 ], [ -76.144302368164006, -14.228471755981445 ], [ -76.144302368164006, -14.228191375732422 ], [ -76.144584655761662, -14.228194236755371 ], [ -76.144584655761662, -14.2279176712035 ], [ -76.144859313964844, -14.2279176712035 ], [ -76.144859313964844, -14.227638244628906 ], [ -76.1451416015625, -14.227640151977482 ], [ -76.1451416015625, -14.227361679077092 ], [ -76.145416259765625, -14.227361679077092 ], [ -76.145416259765625, -14.227081298828125 ], [ -76.14569091796875, -14.227084159851017 ], [ -76.14569091796875, -14.226805686950627 ], [ -76.145973205566406, -14.226805686950627 ], [ -76.145973205566406, -14.226528167724553 ], [ -76.146247863769531, -14.226528167724553 ], [ -76.146247863769531, -14.226249694824162 ], [ -76.146530151367188, -14.226249694824162 ], [ -76.146530151367188, -14.225971221923771 ], [ -76.146804809570256, -14.225971221923771 ], [ -76.146804809570256, -14.225695610046387 ], [ -76.147087097167912, -14.225695610046387 ], [ -76.147087097167912, -14.225415229797306 ], [ -76.147361755371037, -14.225415229797306 ], [ -76.147361755371037, -14.225139617919922 ], [ -76.147636413574162, -14.225139617919922 ], [ -76.147636413574162, -14.224859237670842 ], [ -76.147918701171875, -14.224862098693791 ], [ -76.147918701171875, -14.224582672119141 ], [ -76.148475646972656, -14.224582672119141 ], [ -76.148475646972656, -14.224303245544434 ], [ -76.148750305175781, -14.224305152893066 ], [ -76.148750305175781, -14.224026679992676 ], [ -76.149307250976562, -14.224026679992676 ], [ -76.149307250976562, -14.223749160766488 ], [ -76.149581909179688, -14.223749160766488 ], [ -76.149581909179688, -14.22347354888916 ], [ -76.150138854980412, -14.22347354888916 ], [ -76.150138854980412, -14.22319316864008 ], [ -76.150413513183537, -14.22319316864008 ], [ -76.150413513183537, -14.222916603088379 ], [ -76.150970458984375, -14.222916603088379 ], [ -76.150970458984375, -14.222637176513615 ], [ -76.151252746582031, -14.222639083862305 ], [ -76.151252746582031, -14.222360610961914 ], [ -76.151527404785156, -14.222360610961914 ], [ -76.151527404785156, -14.22208309173584 ], [ -76.152084350585938, -14.22208309173584 ], [ -76.152084350585938, -14.221804618835449 ], [ -76.152359008789062, -14.221804618835449 ], [ -76.152359008789062, -14.221527099609375 ], [ -76.152641296386719, -14.221527099609375 ], [ -76.152641296386719, -14.22097110748291 ], [ -76.15291595458973, -14.22097110748291 ], [ -76.15291595458973, -14.220415115356445 ], [ -76.153190612792912, -14.220417022705078 ], [ -76.153190612792912, -14.220236778259221 ], [ -76.153198242187443, -14.219861030578613 ], [ -76.153472900390568, -14.219861030578613 ], [ -76.153472900390568, -14.219582557678223 ], [ -76.154533386230412, -14.219582557678223 ], [ -76.155136108398438, -14.219582557678223 ], [ -76.155136108398438, -14.219305038452148 ], [ -76.155418395996094, -14.219305038452148 ], [ -76.155418395996094, -14.219026565551758 ], [ -76.155975341796875, -14.219026565551758 ], [ -76.155975341796875, -14.218749046325684 ], [ -76.15625, -14.218749046325684 ], [ -76.15625, -14.218473434448185 ], [ -76.156524658203068, -14.218473434448185 ], [ -76.156524658203068, -14.218193054199219 ], [ -76.157081604003849, -14.218194961547795 ], [ -76.157081604003849, -14.217917442321721 ], [ -76.157363891601506, -14.217917442321721 ], [ -76.157363891601506, -14.21763896942133 ], [ -76.157638549804688, -14.21763896942133 ], [ -76.157638549804688, -14.217361450195312 ], [ -76.157913208007812, -14.217361450195312 ], [ -76.157913208007812, -14.217086791992131 ], [ -76.159584045410099, -14.217082977294865 ], [ -76.159584045410099, -14.216805458068848 ], [ -76.162086486816406, -14.216805458068848 ], [ -76.162086486816406, -14.217361450195312 ], [ -76.162361145019531, -14.217361450195312 ], [ -76.162361145019531, -14.21763896942133 ], [ -76.162635803222599, -14.21763896942133 ], [ -76.162635803222599, -14.217917442321721 ], [ -76.163192749023381, -14.217917442321721 ], [ -76.163192749023381, -14.218194961547795 ], [ -76.163475036621037, -14.218194961547795 ], [ -76.163475036621037, -14.217917442321721 ], [ -76.164024353027344, -14.217917442321721 ], [ -76.164024353027344, -14.21763896942133 ], [ -76.164581298828125, -14.21763896942133 ], [ -76.164581298828125, -14.217082977294865 ], [ -76.164863586425781, -14.217082977294865 ], [ -76.164863586425781, -14.216251373290959 ], [ -76.165023803710881, -14.216251373290959 ], [ -76.165138244628906, -14.216251373290959 ], [ -76.165138244628906, -14.215139389038029 ], [ -76.165412902832031, -14.215139389038029 ], [ -76.165412902832031, -14.214583396911564 ], [ -76.165695190429574, -14.214583396911564 ], [ -76.165695190429574, -14.214306831359863 ], [ -76.165969848632756, -14.214306831359863 ], [ -76.165969848632756, -14.214027404785156 ], [ -76.166252136230412, -14.214027404785156 ], [ -76.166252136230412, -14.213750839233398 ], [ -76.166526794433537, -14.213750839233398 ], [ -76.166526794433537, -14.213473320007211 ], [ -76.166809082031193, -14.213473320007211 ], [ -76.166809082031193, -14.213194847106934 ], [ -76.167083740234375, -14.213194847106934 ], [ -76.167083740234375, -14.212638854980355 ], [ -76.1673583984375, -14.212638854980355 ], [ -76.1673583984375, -14.212360382080078 ], [ -76.167640686035156, -14.212360382080078 ], [ -76.167640686035156, -14.212081909179688 ], [ -76.167915344238281, -14.212081909179688 ], [ -76.167915344238281, -14.2118043899535 ], [ -76.168197631835938, -14.2118043899535 ], [ -76.168197631835938, -14.211528778076172 ], [ -76.168746948242074, -14.211528778076172 ], [ -76.168746948242074, -14.211251258850098 ], [ -76.169029235839787, -14.211251258850098 ], [ -76.169029235839787, -14.210971832275391 ], [ -76.169303894042912, -14.210971832275391 ], [ -76.169303894042912, -14.210694313049316 ], [ -76.169860839843693, -14.210694313049316 ], [ -76.169860839843693, -14.210415840148926 ], [ -76.170135498046875, -14.210415840148926 ], [ -76.170135498046875, -14.210138320922852 ], [ -76.170692443847656, -14.210138320922852 ], [ -76.170692443847656, -14.209859848022461 ], [ -76.171249389648438, -14.209859848022461 ], [ -76.171249389648438, -14.209582328796387 ], [ -76.172080993652287, -14.209582328796387 ], [ -76.172080993652287, -14.209859848022461 ], [ -76.172920227050724, -14.209859848022461 ], [ -76.172920227050724, -14.209582328796387 ], [ -76.173194885253849, -14.209582328796387 ], [ -76.173194885253849, -14.209305763244572 ], [ -76.173469543457031, -14.209305763244572 ], [ -76.173469543457031, -14.209028244018498 ], [ -76.173751831054688, -14.209028244018498 ], [ -76.173751831054688, -14.207637786865234 ], [ -76.174583435058594, -14.207637786865234 ], [ -76.174583435058594, -14.20736026763916 ], [ -76.175971984863224, -14.207362174987736 ], [ -76.175971984863224, -14.207083702087289 ], [ -76.176803588867188, -14.207083702087289 ], [ -76.176803588867188, -14.207637786865234 ], [ -76.177085876464844, -14.207637786865234 ], [ -76.177085876464844, -14.208193778991642 ], [ -76.177360534667969, -14.208193778991642 ], [ -76.177360534667969, -14.209028244018498 ], [ -76.177635192871094, -14.209028244018498 ], [ -76.177635192871094, -14.208749771118107 ], [ -76.17791748046875, -14.208749771118107 ], [ -76.17791748046875, -14.20847225189209 ], [ -76.178192138671875, -14.20847225189209 ], [ -76.178192138671875, -14.207916259765625 ], [ -76.178474426269418, -14.207916259765625 ], [ -76.178474426269418, -14.207637786865234 ], [ -76.179306030273381, -14.207637786865234 ], [ -76.179306030273381, -14.20736026763916 ], [ -76.179862976074219, -14.207362174987736 ], [ -76.179862976074219, -14.207083702087289 ], [ -76.180694580078125, -14.207083702087289 ], [ -76.180694580078125, -14.206804275512695 ], [ -76.18096923828125, -14.206804275512695 ], [ -76.18096923828125, -14.20624828338623 ], [ -76.181251525878906, -14.20624828338623 ], [ -76.181251525878906, -14.205694198608342 ], [ -76.181526184081918, -14.205694198608342 ], [ -76.181526184081918, -14.205415725707951 ], [ -76.182914733886719, -14.205415725707951 ], [ -76.182914733886719, -14.204859733581486 ], [ -76.182640075683537, -14.204859733581486 ], [ -76.182640075683537, -14.204305648803711 ], [ -76.182914733886719, -14.204305648803711 ], [ -76.182914733886719, -14.203749656677246 ], [ -76.183197021484375, -14.203749656677246 ], [ -76.183197021484375, -14.203470230102539 ], [ -76.184303283691406, -14.203472137451115 ], [ -76.184303283691406, -14.203193664550668 ], [ -76.184860229492131, -14.203193664550668 ], [ -76.184860229492131, -14.20291614532465 ], [ -76.185417175292912, -14.20291805267334 ], [ -76.185417175292912, -14.20263767242426 ], [ -76.185974121093693, -14.20263767242426 ], [ -76.185974121093693, -14.202360153198185 ], [ -76.186248779296875, -14.202362060546875 ], [ -76.186248779296875, -14.202083587646484 ], [ -76.186805725097656, -14.202083587646484 ], [ -76.186805725097656, -14.201804161071721 ], [ -76.187080383300781, -14.20180606842041 ], [ -76.187080383300781, -14.20152759552002 ], [ -76.187362670898438, -14.20152759552002 ], [ -76.187362670898438, -14.201250076293945 ], [ -76.187919616699219, -14.201250076293945 ], [ -76.187919616699219, -14.200971603393555 ], [ -76.188194274902287, -14.200971603393555 ], [ -76.188194274902287, -14.20041561126709 ], [ -76.188468933105412, -14.20041561126709 ], [ -76.188468933105412, -14.199861526489258 ], [ -76.188751220703068, -14.199861526489258 ], [ -76.188751220703068, -14.199305534362793 ], [ -76.191253662109261, -14.199305534362793 ], [ -76.191253662109261, -14.198748588561955 ], [ -76.191528320312443, -14.198748588561955 ], [ -76.191528320312443, -14.198196411132812 ], [ -76.191802978515568, -14.198196411132812 ], [ -76.191802978515568, -14.197640419006348 ], [ -76.192085266113224, -14.197640419006348 ], [ -76.192085266113224, -14.196805000305119 ], [ -76.192359924316406, -14.196805000305119 ], [ -76.192359924316406, -14.196249008178654 ], [ -76.192642211914062, -14.196249008178654 ], [ -76.192642211914062, -14.195417404174748 ], [ -76.192916870117188, -14.195417404174748 ], [ -76.192916870117188, -14.194581031799316 ], [ -76.193191528320312, -14.194581031799316 ], [ -76.193191528320312, -14.194026947021428 ], [ -76.193473815917969, -14.194026947021428 ], [ -76.193473815917969, -14.193470954894963 ], [ -76.193748474121094, -14.193470954894963 ], [ -76.193748474121094, -14.192916870117188 ], [ -76.19403076171875, -14.192916870117188 ], [ -76.19403076171875, -14.192083358764535 ], [ -76.194305419921761, -14.192083358764535 ], [ -76.194305419921761, -14.191527366638127 ], [ -76.194580078124943, -14.191527366638127 ], [ -76.194580078124943, -14.190973281860352 ], [ -76.194862365722599, -14.190973281860352 ], [ -76.194862365722599, -14.190694808959961 ], [ -76.194580078124943, -14.190694808959961 ], [ -76.194580078124943, -14.190417289733887 ], [ -76.193473815917969, -14.190417289733887 ], [ -76.193473815917969, -14.190138816833496 ], [ -76.193252563476506, -14.190138816833496 ], [ -76.192359924316406, -14.190138816833496 ], [ -76.192359924316406, -14.189861297607422 ], [ -76.191802978515568, -14.189861297607422 ], [ -76.191802978515568, -14.189305305480957 ], [ -76.191528320312443, -14.189305305480957 ], [ -76.191528320312443, -14.188751220703125 ], [ -76.191253662109261, -14.188751220703125 ], [ -76.191253662109261, -14.18791675567627 ], [ -76.190971374511719, -14.18791675567627 ], [ -76.190971374511719, -14.187360763549805 ], [ -76.191253662109261, -14.187360763549805 ], [ -76.191253662109261, -14.18708324432373 ], [ -76.191528320312443, -14.18708324432373 ], [ -76.191528320312443, -14.186526298522949 ], [ -76.191680908203125, -14.186526298522949 ], [ -76.191802978515568, -14.186529159545842 ], [ -76.191802978515568, -14.186250686645451 ], [ -76.192085266113224, -14.186250686645451 ], [ -76.192085266113224, -14.185973167419377 ], [ -76.192359924316406, -14.185973167419377 ], [ -76.192359924316406, -14.185694694518986 ], [ -76.192916870117188, -14.185694694518986 ], [ -76.192916870117188, -14.18541431427002 ], [ -76.193191528320312, -14.185417175292969 ], [ -76.193191528320312, -14.185137748718205 ], [ -76.193748474121094, -14.185137748718205 ], [ -76.193748474121094, -14.184860229492131 ], [ -76.19403076171875, -14.184860229492131 ], [ -76.19403076171875, -14.184028625488168 ], [ -76.193748474121094, -14.184028625488168 ], [ -76.193748474121094, -14.183748245239258 ], [ -76.193473815917969, -14.183750152587891 ], [ -76.193473815917969, -14.1834716796875 ], [ -76.19366455078125, -14.1834716796875 ], [ -76.194305419921761, -14.1834716796875 ], [ -76.194305419921761, -14.182638168334904 ], [ -76.194580078124943, -14.182638168334904 ], [ -76.194580078124943, -14.182082176208439 ], [ -76.195137023925724, -14.182082176208439 ], [ -76.195137023925724, -14.181805610656738 ], [ -76.195693969726562, -14.181805610656738 ], [ -76.195693969726562, -14.181526184081974 ], [ -76.196250915527344, -14.181528091430664 ], [ -76.196250915527344, -14.181249618530273 ], [ -76.196807861328125, -14.181249618530273 ], [ -76.196807861328125, -14.180972099304199 ], [ -76.19708251953125, -14.180972099304199 ], [ -76.19708251953125, -14.180137634277344 ], [ -76.196807861328125, -14.180137634277344 ], [ -76.196807861328125, -14.17986011505127 ], [ -76.196525573730469, -14.17986011505127 ], [ -76.196525573730469, -14.179306030273438 ], [ -76.196807861328125, -14.179304122924691 ], [ -76.196807861328125, -14.178750038146973 ], [ -76.197914123535099, -14.178750038146973 ], [ -76.197914123535099, -14.179027557373047 ], [ -76.198753356933537, -14.179027557373047 ], [ -76.198753356933537, -14.179306030273438 ], [ -76.199028015136719, -14.179304122924691 ], [ -76.199028015136719, -14.178750038146973 ], [ -76.198753356933537, -14.178750038146973 ], [ -76.198753356933537, -14.178194046020508 ], [ -76.198471069335881, -14.178194046020508 ], [ -76.198471069335881, -14.176527976989689 ], [ -76.198196411132756, -14.176527976989689 ], [ -76.198196411132756, -14.175694465637207 ], [ -76.198471069335881, -14.175694465637207 ], [ -76.198471069335881, -14.174860000610352 ], [ -76.199028015136719, -14.174861907958928 ], [ -76.199028015136719, -14.174584388732853 ], [ -76.199302673339844, -14.174584388732853 ], [ -76.199302673339844, -14.174028396606388 ], [ -76.1995849609375, -14.174028396606388 ], [ -76.1995849609375, -14.173749923705998 ], [ -76.200141906738281, -14.173749923705998 ], [ -76.200141906738281, -14.17347240447998 ], [ -76.200416564941406, -14.17347240447998 ], [ -76.200416564941406, -14.173195838928223 ], [ -76.201805114746037, -14.173195838928223 ], [ -76.201805114746037, -14.173749923705998 ], [ -76.202079772949219, -14.173749923705998 ], [ -76.202079772949219, -14.174305915832463 ], [ -76.202362060546875, -14.174305915832463 ], [ -76.202362060546875, -14.174860000610352 ], [ -76.203475952148438, -14.174860000610352 ], [ -76.203475952148438, -14.175138473510742 ], [ -76.204307556152287, -14.175138473510742 ], [ -76.204307556152287, -14.175417900085336 ], [ -76.204582214355412, -14.175415992736816 ], [ -76.204582214355412, -14.176250457763672 ], [ -76.204864501953068, -14.176250457763672 ], [ -76.204864501953068, -14.176527976989689 ], [ -76.205696105957031, -14.176527976989689 ], [ -76.205696105957031, -14.175971984863281 ], [ -76.205970764160156, -14.175971984863281 ], [ -76.205970764160156, -14.175415992736816 ], [ -76.206527709960938, -14.175417900085336 ], [ -76.206527709960938, -14.174584388732853 ], [ -76.206802368164062, -14.174584388732853 ], [ -76.206802368164062, -14.173749923705998 ], [ -76.206527709960938, -14.173749923705998 ], [ -76.206527709960938, -14.173195838928223 ], [ -76.206367492675781, -14.173195838928223 ], [ -76.206253051757812, -14.173195838928223 ], [ -76.206253051757812, -14.172915458679142 ], [ -76.207641601562443, -14.172915458679142 ], [ -76.207641601562443, -14.173195838928223 ], [ -76.208747863769531, -14.173195838928223 ], [ -76.208747863769531, -14.172915458679142 ], [ -76.209030151367188, -14.172915458679142 ], [ -76.209030151367188, -14.172362327575627 ], [ -76.209587097167969, -14.172362327575627 ], [ -76.209587097167969, -14.172080993652287 ], [ -76.210136413574105, -14.172080993652287 ], [ -76.210136413574105, -14.172362327575627 ], [ -76.210975646972599, -14.172362327575627 ], [ -76.210975646972599, -14.172639846801758 ], [ -76.213752746581974, -14.172639846801758 ], [ -76.213752746581974, -14.172362327575627 ], [ -76.214027404785099, -14.172362327575627 ], [ -76.214027404785099, -14.171806335449162 ], [ -76.214302062988224, -14.171806335449162 ], [ -76.214302062988224, -14.171249389648324 ], [ -76.214859008789062, -14.171249389648324 ], [ -76.214859008789062, -14.171526908874512 ], [ -76.215141296386719, -14.171526908874512 ], [ -76.215141296386719, -14.171806335449162 ], [ -76.215415954589844, -14.171806335449162 ], [ -76.215415954589844, -14.172083854675179 ], [ -76.215690612792969, -14.172083854675179 ], [ -76.2156982421875, -14.169027328491211 ], [ -76.215972900390625, -14.169027328491211 ], [ -76.215972900390625, -14.16874885559082 ], [ -76.217636108398381, -14.16874885559082 ], [ -76.217636108398381, -14.169027328491211 ], [ -76.217918395996094, -14.169027328491211 ], [ -76.217918395996094, -14.169304847717285 ], [ -76.218193054199219, -14.169304847717285 ], [ -76.218193054199219, -14.169583320617676 ], [ -76.218475341796875, -14.169583320617676 ], [ -76.218475341796875, -14.16986083984375 ], [ -76.219024658203125, -14.16986083984375 ], [ -76.219024658203125, -14.169583320617676 ], [ -76.219306945800781, -14.169583320617676 ], [ -76.219306945800781, -14.168471336364746 ], [ -76.219581604003906, -14.168471336364746 ], [ -76.219581604003906, -14.167917251586914 ], [ -76.219306945800781, -14.167917251586914 ], [ -76.219306945800781, -14.167638778686467 ], [ -76.219024658203125, -14.167638778686467 ], [ -76.219024658203125, -14.165970802307129 ], [ -76.219581604003906, -14.165970802307129 ], [ -76.219581604003906, -14.165693283081055 ], [ -76.219863891601449, -14.165695190429631 ], [ -76.219863891601449, -14.164583206176701 ], [ -76.21875, -14.164583206176701 ], [ -76.21875, -14.16430473327631 ], [ -76.218475341796875, -14.16430473327631 ], [ -76.218475341796875, -14.164029121398926 ], [ -76.217918395996094, -14.164029121398926 ], [ -76.217918395996094, -14.163748741149846 ], [ -76.217636108398381, -14.163748741149846 ], [ -76.217636108398381, -14.16319465637207 ], [ -76.217742919921818, -14.16319465637207 ], [ -76.217918395996094, -14.16319465637207 ], [ -76.217918395996094, -14.162359237670898 ], [ -76.217636108398381, -14.162361145019474 ], [ -76.217636108398381, -14.162082672119084 ], [ -76.217414855957031, -14.162082672119084 ], [ -76.217361450195256, -14.161802291870117 ], [ -76.217086791992131, -14.16180515289301 ], [ -76.217086791992131, -14.161413192749023 ], [ -76.217086791992131, -14.161249160766545 ], [ -76.216964721679688, -14.161249160766545 ], [ -76.216804504394474, -14.161251068115234 ], [ -76.216804504394474, -14.160972595214844 ], [ -76.216529846191406, -14.160972595214844 ], [ -76.216529846191406, -14.160672187805119 ], [ -76.216529846191406, -14.160416603088379 ], [ -76.21624755859375, -14.160416603088379 ], [ -76.21624755859375, -14.160282135009652 ], [ -76.21624755859375, -14.159583091735783 ], [ -76.216529846191406, -14.159583091735783 ], [ -76.216529846191406, -14.15847015380848 ], [ -76.216804504394474, -14.158473014831543 ], [ -76.216804504394474, -14.157637596130371 ], [ -76.217086791992131, -14.157637596130371 ], [ -76.217086791992131, -14.157360076904297 ], [ -76.217361450195256, -14.157360076904297 ], [ -76.217361450195256, -14.156248092651367 ], [ -76.217636108398381, -14.15625 ], [ -76.217636108398381, -14.155841827392578 ], [ -76.217636108398381, -14.155415534973088 ], [ -76.218017578124943, -14.155415534973088 ], [ -76.21875, -14.155415534973088 ], [ -76.21875, -14.15513801574707 ], [ -76.219306945800781, -14.15513801574707 ], [ -76.219306945800781, -14.154862403869572 ], [ -76.219863891601449, -14.154862403869572 ], [ -76.219863891601449, -14.154582023620605 ], [ -76.220413208007756, -14.154582023620605 ], [ -76.220413208007756, -14.154306411743107 ], [ -76.220970153808594, -14.154306411743107 ], [ -76.220970153808594, -14.154026031494141 ], [ -76.221527099609375, -14.154027938842717 ], [ -76.221527099609375, -14.153750419616642 ], [ -76.2218017578125, -14.153750419616642 ], [ -76.2218017578125, -14.153470039367676 ], [ -76.222358703613281, -14.153471946716252 ], [ -76.222358703613281, -14.153194427490178 ], [ -76.222915649413949, -14.153194427490178 ], [ -76.222915649413949, -14.152915954589787 ], [ -76.223747253417912, -14.152915954589787 ], [ -76.223747253417912, -14.152638435363713 ], [ -76.224586486816406, -14.152638435363713 ], [ -76.224586486816406, -14.152359962463322 ], [ -76.225418090820312, -14.152359962463322 ], [ -76.225418090820312, -14.152084350585938 ], [ -76.225975036621094, -14.152084350585938 ], [ -76.225975036621094, -14.151805877685547 ], [ -76.226524353027287, -14.151805877685547 ], [ -76.226524353027287, -14.151528358459359 ], [ -76.227081298828068, -14.151528358459359 ], [ -76.227081298828068, -14.151249885559082 ], [ -76.227363586425724, -14.151249885559082 ], [ -76.227363586425724, -14.150972366332951 ], [ -76.228469848632812, -14.150972366332951 ], [ -76.228469848632812, -14.150693893432504 ], [ -76.229583740234318, -14.150693893432504 ], [ -76.229583740234318, -14.150416374206486 ], [ -76.231803894042969, -14.150416374206486 ], [ -76.231803894042969, -14.150137901306096 ], [ -76.232635498046818, -14.150137901306096 ], [ -76.232635498046818, -14.149862289428711 ], [ -76.233474731445256, -14.149862289428711 ], [ -76.233474731445256, -14.14958381652832 ], [ -76.23486328125, -14.14958381652832 ], [ -76.23486328125, -14.149306297302246 ], [ -76.240135192871094, -14.149306297302246 ], [ -76.240135192871094, -14.14958381652832 ], [ -76.24041748046875, -14.14958381652832 ], [ -76.24041748046875, -14.149862289428711 ], [ -76.240974426269531, -14.149862289428711 ], [ -76.240974426269531, -14.150137901306096 ], [ -76.241806030273438, -14.150137901306096 ], [ -76.241806030273438, -14.150416374206486 ], [ -76.245140075683594, -14.150416374206486 ], [ -76.245140075683594, -14.150137901306096 ], [ -76.245697021484318, -14.150137901306096 ], [ -76.245697021484318, -14.150416374206486 ], [ -76.247642517089844, -14.150416374206486 ], [ -76.247642517089844, -14.150693893432504 ], [ -76.247917175292969, -14.150693893432504 ], [ -76.247917175292969, -14.150972366332951 ], [ -76.248191833496094, -14.150972366332951 ], [ -76.248191833496094, -14.151249885559082 ], [ -76.248474121093636, -14.151249885559082 ], [ -76.248474121093636, -14.151528358459359 ], [ -76.248748779296818, -14.151528358459359 ], [ -76.248748779296818, -14.151805877685547 ], [ -76.249862670898438, -14.151805877685547 ], [ -76.249862670898438, -14.152084350585938 ], [ -76.250137329101562, -14.152084350585938 ], [ -76.250137329101562, -14.152359962463322 ], [ -76.250419616699219, -14.152359962463322 ], [ -76.250419616699219, -14.152638435363713 ], [ -76.250694274902344, -14.152638435363713 ], [ -76.250694274902344, -14.152915954589787 ], [ -76.250968933105469, -14.152915954589787 ], [ -76.250968933105469, -14.153194427490178 ], [ -76.251251220703125, -14.153194427490178 ], [ -76.251251220703125, -14.153471946716252 ], [ -76.251525878906136, -14.153470039367676 ], [ -76.251525878906136, -14.154306411743107 ], [ -76.251808166503849, -14.154306411743107 ], [ -76.251808166503849, -14.154582023620605 ], [ -76.252357482910099, -14.154582023620605 ], [ -76.252357482910099, -14.154306411743107 ], [ -76.253196716308594, -14.154306411743107 ], [ -76.253196716308594, -14.153750419616642 ], [ -76.252914428710938, -14.153750419616642 ], [ -76.252914428710938, -14.153194427490178 ], [ -76.252639770507756, -14.153194427490178 ], [ -76.252639770507756, -14.151805877685547 ], [ -76.252914428710938, -14.151805877685547 ], [ -76.252914428710938, -14.151528358459359 ], [ -76.253196716308594, -14.151528358459359 ], [ -76.253196716308594, -14.151249885559082 ], [ -76.253471374511719, -14.151249885559082 ], [ -76.253471374511719, -14.149027824401855 ], [ -76.253753662109375, -14.149027824401855 ], [ -76.253753662109375, -14.148750305175781 ], [ -76.254302978515625, -14.148750305175781 ], [ -76.254302978515625, -14.148471832275391 ], [ -76.254585266113281, -14.148471832275391 ], [ -76.254585266113281, -14.148194313049203 ], [ -76.254859924316349, -14.148194313049203 ], [ -76.254859924316349, -14.147640228271484 ], [ -76.255142211914006, -14.147640228271484 ], [ -76.255142211914006, -14.14708137512207 ], [ -76.255416870117131, -14.14708423614502 ], [ -76.255416870117131, -14.146528244018555 ], [ -76.256248474121094, -14.146528244018555 ], [ -76.256248474121094, -14.146249771118164 ], [ -76.257080078125, -14.146249771118164 ], [ -76.257080078125, -14.14597225189209 ], [ -76.257362365722656, -14.14597225189209 ], [ -76.257362365722656, -14.145695686340275 ], [ -76.257919311523438, -14.145695686340275 ], [ -76.257919311523438, -14.145415306091309 ], [ -76.258193969726506, -14.145418167114201 ], [ -76.258193969726506, -14.144859313964844 ], [ -76.258468627929631, -14.144862174987793 ], [ -76.258468627929631, -14.144072532653809 ], [ -76.258468627929631, -14.143473625182992 ], [ -76.258949279785099, -14.143470764160099 ], [ -76.259025573730412, -14.143470764160099 ], [ -76.259025573730412, -14.143193244934082 ], [ -76.259185791015625, -14.143193244934082 ], [ -76.259307861328125, -14.143193244934082 ], [ -76.259307861328125, -14.14304256439209 ], [ -76.259307861328125, -14.142916679382324 ], [ -76.25958251953125, -14.142916679382324 ], [ -76.25958251953125, -14.142639160156136 ], [ -76.259864807128906, -14.142639160156136 ], [ -76.259864807128906, -14.142360687255859 ], [ -76.260139465332031, -14.142360687255859 ], [ -76.260139465332031, -14.142192840576172 ], [ -76.260139465332031, -14.142083168029728 ], [ -76.260368347167912, -14.142083168029728 ], [ -76.262084960937443, -14.142083168029728 ], [ -76.262084960937443, -14.141804695129281 ], [ -76.263748168945312, -14.141804695129281 ], [ -76.263748168945312, -14.141527175903263 ], [ -76.26430511474598, -14.141527175903263 ], [ -76.26430511474598, -14.141248703002873 ], [ -76.264862060546818, -14.141248703002873 ], [ -76.264862060546818, -14.140971183776799 ], [ -76.265419006347599, -14.140971183776799 ], [ -76.265419006347599, -14.140694618225098 ], [ -76.265975952148438, -14.140694618225098 ], [ -76.265975952148438, -14.140417098999023 ], [ -76.267364501953125, -14.140417098999023 ], [ -76.267364501953125, -14.140694618225098 ], [ -76.268196105956974, -14.140694618225098 ], [ -76.268196105956974, -14.140971183776799 ], [ -76.268753051757756, -14.140971183776799 ], [ -76.268753051757756, -14.141248703002873 ], [ -76.269584655761719, -14.141248703002873 ], [ -76.269584655761719, -14.141527175903263 ], [ -76.270393371581974, -14.141527175903263 ], [ -76.270416259765625, -14.141804695129281 ], [ -76.270690917968693, -14.141804695129281 ], [ -76.270690917968693, -14.142360687255859 ], [ -76.270973205566349, -14.142360687255859 ], [ -76.270973205566349, -14.142639160156136 ], [ -76.271247863769474, -14.142639160156136 ], [ -76.271247863769474, -14.142916679382324 ], [ -76.271530151367131, -14.142916679382324 ], [ -76.271530151367131, -14.143470764160099 ], [ -76.271804809570256, -14.143473625182992 ], [ -76.271804809570256, -14.144305229186955 ], [ -76.271530151367131, -14.144303321838379 ], [ -76.271530151367131, -14.14513969421381 ], [ -76.271003723144531, -14.14513969421381 ], [ -76.270690917968693, -14.14513969421381 ], [ -76.270690917968693, -14.144859313964844 ], [ -76.270416259765625, -14.144862174987793 ], [ -76.270416259765625, -14.144583702087346 ], [ -76.2701416015625, -14.144583702087346 ], [ -76.2701416015625, -14.144303321838379 ], [ -76.269859313964844, -14.144305229186955 ], [ -76.269859313964844, -14.144026756286564 ], [ -76.268470764160099, -14.144026756286564 ], [ -76.268470764160099, -14.144862174987793 ], [ -76.268196105956974, -14.144859313964844 ], [ -76.268196105956974, -14.145695686340275 ], [ -76.267913818359318, -14.145695686340275 ], [ -76.267913818359318, -14.146805763244629 ], [ -76.267639160156193, -14.146805763244629 ], [ -76.267639160156193, -14.148194313049203 ], [ -76.267364501953125, -14.148194313049203 ], [ -76.267364501953125, -14.149027824401855 ], [ -76.267082214355469, -14.149027824401855 ], [ -76.267082214355469, -14.14958381652832 ], [ -76.266807556152344, -14.14958381652832 ], [ -76.266807556152344, -14.150137901306096 ], [ -76.266525268554688, -14.150137901306096 ], [ -76.266525268554688, -14.150416374206486 ], [ -76.266250610351562, -14.150416374206486 ], [ -76.266250610351562, -14.150972366332951 ], [ -76.265975952148438, -14.150972366332951 ], [ -76.265975952148438, -14.151528358459359 ], [ -76.265693664550781, -14.151528358459359 ], [ -76.265693664550781, -14.152359962463322 ], [ -76.265419006347599, -14.152359962463322 ], [ -76.265419006347599, -14.152915954589787 ], [ -76.265136718749943, -14.152915954589787 ], [ -76.265136718749943, -14.153470039367676 ], [ -76.264862060546818, -14.153470039367676 ], [ -76.264862060546818, -14.154026031494141 ], [ -76.264579772949162, -14.154026031494141 ], [ -76.264579772949162, -14.154582023620605 ], [ -76.26430511474598, -14.154582023620605 ], [ -76.26430511474598, -14.15513801574707 ], [ -76.264030456542969, -14.15513801574707 ], [ -76.264030456542969, -14.155692100524902 ], [ -76.263748168945312, -14.155692100524902 ], [ -76.263748168945312, -14.155971527099553 ], [ -76.263473510742188, -14.155971527099553 ], [ -76.263473510742188, -14.156528472900334 ], [ -76.263191223144531, -14.156528472900334 ], [ -76.263191223144531, -14.157085418701172 ], [ -76.262916564941406, -14.157085418701172 ], [ -76.262916564941406, -14.157637596130371 ], [ -76.262641906738281, -14.157637596130371 ], [ -76.262641906738281, -14.158194541931152 ], [ -76.262359619140625, -14.158194541931152 ], [ -76.262359619140625, -14.159029006958008 ], [ -76.262084960937443, -14.159026145935059 ], [ -76.262084960937443, -14.159463882446232 ], [ -76.262084960937443, -14.159583091735783 ], [ -76.261802673339787, -14.159583091735783 ], [ -76.261802673339787, -14.159921646118107 ], [ -76.261802673339787, -14.160139083862191 ], [ -76.261672973632812, -14.160139083862191 ], [ -76.261528015136662, -14.160139083862191 ], [ -76.261528015136662, -14.160368919372559 ], [ -76.26125335693348, -14.160416603088379 ], [ -76.26125335693348, -14.16069507598877 ], [ -76.260696411132812, -14.160692214965763 ], [ -76.260696411132812, -14.160972595214844 ], [ -76.260414123535156, -14.160972595214844 ], [ -76.260414123535156, -14.16180515289301 ], [ -76.260139465332031, -14.161802291870117 ], [ -76.260139465332031, -14.162149429321289 ], [ -76.260139465332031, -14.162361145019474 ], [ -76.259918212890511, -14.162359237670898 ], [ -76.259864807128906, -14.162638664245492 ], [ -76.25958251953125, -14.162638664245492 ], [ -76.25958251953125, -14.162915229797363 ], [ -76.259353637695312, -14.162917137145939 ], [ -76.259025573730412, -14.162915229797363 ], [ -76.259025573730412, -14.16319465637207 ], [ -76.258750915527287, -14.16319465637207 ], [ -76.258750915527287, -14.163473129272347 ], [ -76.258468627929631, -14.163473129272347 ], [ -76.258468627929631, -14.163748741149846 ], [ -76.258193969726506, -14.163748741149846 ], [ -76.258193969726506, -14.16430473327631 ], [ -76.257919311523438, -14.16430473327631 ], [ -76.257919311523438, -14.164583206176701 ], [ -76.257637023925781, -14.164583206176701 ], [ -76.257637023925781, -14.165139198303166 ], [ -76.257362365722656, -14.165139198303166 ], [ -76.257362365722656, -14.16541671752924 ], [ -76.257080078125, -14.16541671752924 ], [ -76.257080078125, -14.165970802307129 ], [ -76.25653076171875, -14.165970802307129 ], [ -76.25653076171875, -14.16541671752924 ], [ -76.256248474121094, -14.16541671752924 ], [ -76.256248474121094, -14.164583206176701 ], [ -76.255973815917912, -14.164583206176701 ], [ -76.255973815917912, -14.16430473327631 ], [ -76.255691528320256, -14.16430473327631 ], [ -76.255691528320256, -14.162915229797363 ], [ -76.255416870117131, -14.162915229797363 ], [ -76.255416870117131, -14.161802291870117 ], [ -76.255691528320256, -14.16180515289301 ], [ -76.255691528320256, -14.160416603088379 ], [ -76.255416870117131, -14.160416603088379 ], [ -76.255416870117131, -14.159583091735783 ], [ -76.255142211914006, -14.159583091735783 ], [ -76.255142211914006, -14.159026145935059 ], [ -76.254859924316349, -14.159029006958008 ], [ -76.254859924316349, -14.157637596130371 ], [ -76.255142211914006, -14.157637596130371 ], [ -76.255142211914006, -14.157360076904297 ], [ -76.255348205566406, -14.157360076904297 ], [ -76.255416870117131, -14.156804084777832 ], [ -76.255691528320256, -14.156806945800781 ], [ -76.255691528320256, -14.155971527099553 ], [ -76.255393981933594, -14.155971527099553 ], [ -76.255142211914006, -14.155971527099553 ], [ -76.255142211914006, -14.155415534973088 ], [ -76.254859924316349, -14.155415534973088 ], [ -76.254859924316349, -14.15513801574707 ], [ -76.254302978515625, -14.15513801574707 ], [ -76.254302978515625, -14.156617164611816 ], [ -76.254302978515625, -14.157085418701172 ], [ -76.254165649414006, -14.157085418701172 ], [ -76.253753662109375, -14.157085418701172 ], [ -76.253753662109375, -14.157637596130371 ], [ -76.253471374511719, -14.157637596130371 ], [ -76.253471374511719, -14.158750534057617 ], [ -76.253196716308594, -14.158750534057617 ], [ -76.253196716308594, -14.16180515289301 ], [ -76.253471374511719, -14.161802291870117 ], [ -76.253471374511719, -14.164029121398926 ], [ -76.253753662109375, -14.164029121398926 ], [ -76.253753662109375, -14.164583206176701 ], [ -76.2540283203125, -14.164583206176701 ], [ -76.2540283203125, -14.165139198303166 ], [ -76.254302978515625, -14.165139198303166 ], [ -76.254302978515625, -14.165693283081055 ], [ -76.254585266113281, -14.165693283081055 ], [ -76.254585266113281, -14.166526794433594 ], [ -76.254859924316349, -14.166526794433594 ], [ -76.254859924316349, -14.167082786560059 ], [ -76.255142211914006, -14.167082786560059 ], [ -76.255142211914006, -14.167638778686467 ], [ -76.255416870117131, -14.167638778686467 ], [ -76.255416870117131, -14.168471336364746 ], [ -76.255691528320256, -14.168471336364746 ], [ -76.255691528320256, -14.169027328491211 ], [ -76.255973815917912, -14.169027328491211 ], [ -76.255973815917912, -14.169583320617676 ], [ -76.256248474121094, -14.169583320617676 ], [ -76.256248474121094, -14.16986083984375 ], [ -76.25653076171875, -14.16986083984375 ], [ -76.25653076171875, -14.170417785644531 ], [ -76.256805419921875, -14.170417785644531 ], [ -76.256805419921875, -14.170970916748047 ], [ -76.257080078125, -14.170970916748047 ], [ -76.257080078125, -14.171806335449162 ], [ -76.257362365722656, -14.171806335449162 ], [ -76.257362365722656, -14.174584388732853 ], [ -76.257637023925781, -14.174584388732853 ], [ -76.257637023925781, -14.175138473510742 ], [ -76.257919311523438, -14.175138473510742 ], [ -76.257919311523438, -14.175417900085336 ], [ -76.258193969726506, -14.175415992736816 ], [ -76.258193969726506, -14.175971984863281 ], [ -76.258468627929631, -14.175971984863281 ], [ -76.258468627929631, -14.176250457763672 ], [ -76.258750915527287, -14.176250457763672 ], [ -76.258750915527287, -14.176527976989689 ], [ -76.259025573730412, -14.176527976989689 ], [ -76.259025573730412, -14.177082061767578 ], [ -76.259307861328125, -14.177082061767578 ], [ -76.259307861328125, -14.177362442016545 ], [ -76.25958251953125, -14.177362442016545 ], [ -76.25958251953125, -14.177639961242619 ], [ -76.259864807128906, -14.177638053894043 ], [ -76.259864807128906, -14.178194046020508 ], [ -76.260139465332031, -14.178194046020508 ], [ -76.260139465332031, -14.178471565246582 ], [ -76.260414123535156, -14.178471565246582 ], [ -76.260414123535156, -14.179027557373047 ], [ -76.260696411132812, -14.179027557373047 ], [ -76.260696411132812, -14.180416107177734 ], [ -76.260971069335938, -14.180416107177734 ], [ -76.260971069335938, -14.184028625488168 ], [ -76.26125335693348, -14.184028625488168 ], [ -76.26125335693348, -14.185137748718205 ], [ -76.261528015136662, -14.185137748718205 ], [ -76.261528015136662, -14.185973167419377 ], [ -76.261802673339787, -14.185973167419377 ], [ -76.261802673339787, -14.186529159545842 ], [ -76.262084960937443, -14.186526298522949 ], [ -76.262084960937443, -14.186806678771916 ], [ -76.262359619140625, -14.186806678771916 ], [ -76.262359619140625, -14.18708324432373 ], [ -76.262916564941406, -14.18708324432373 ], [ -76.262916564941406, -14.187360763549805 ], [ -76.263191223144531, -14.187360763549805 ], [ -76.263191223144531, -14.18791675567627 ], [ -76.263473510742188, -14.18791675567627 ], [ -76.263473510742188, -14.188472747802678 ], [ -76.263748168945312, -14.188472747802678 ], [ -76.263748168945312, -14.188751220703125 ], [ -76.264579772949162, -14.188751220703125 ], [ -76.264579772949162, -14.189026832580566 ], [ -76.264862060546818, -14.189026832580566 ], [ -76.264862060546818, -14.189305305480957 ], [ -76.265136718749943, -14.189305305480957 ], [ -76.265136718749943, -14.189582824707031 ], [ -76.265693664550781, -14.189582824707031 ], [ -76.265693664550781, -14.189861297607422 ], [ -76.265975952148438, -14.189861297607422 ], [ -76.265975952148438, -14.190417289733887 ], [ -76.266250610351562, -14.190417289733887 ], [ -76.266250610351562, -14.190973281860352 ], [ -76.266525268554688, -14.190973281860352 ], [ -76.266525268554688, -14.191527366638127 ], [ -76.266807556152344, -14.191527366638127 ], [ -76.266807556152344, -14.192083358764535 ], [ -76.267082214355469, -14.192083358764535 ], [ -76.267082214355469, -14.192360877990723 ], [ -76.267364501953125, -14.192360877990723 ], [ -76.267364501953125, -14.192916870117188 ], [ -76.267639160156193, -14.192916870117188 ], [ -76.267639160156193, -14.193195343017578 ], [ -76.267913818359318, -14.193195343017578 ], [ -76.267913818359318, -14.193382263183594 ], [ -76.267913818359318, -14.193470954894963 ], [ -76.268196105956974, -14.193470954894963 ], [ -76.268196105956974, -14.194026947021428 ], [ -76.268470764160099, -14.194026947021428 ], [ -76.268470764160099, -14.194708824157715 ], [ -76.268470764160099, -14.195973396301156 ], [ -76.268753051757756, -14.195973396301156 ], [ -76.268753051757756, -14.196249008178654 ], [ -76.269027709960938, -14.196249008178654 ], [ -76.269027709960938, -14.196805000305119 ], [ -76.269302368164062, -14.196805000305119 ], [ -76.269302368164062, -14.19708347320551 ], [ -76.269584655761719, -14.19708347320551 ], [ -76.269584655761719, -14.197360992431584 ], [ -76.269859313964844, -14.197359085083008 ], [ -76.269859313964844, -14.197915077209473 ], [ -76.2701416015625, -14.197915077209473 ], [ -76.2701416015625, -14.198471069335938 ], [ -76.270416259765625, -14.198471069335938 ], [ -76.270416259765625, -14.198748588561955 ], [ -76.270690917968693, -14.198748588561955 ], [ -76.270690917968693, -14.199305534362793 ], [ -76.270973205566349, -14.199305534362793 ], [ -76.270973205566349, -14.199861526489258 ], [ -76.271247863769474, -14.199861526489258 ], [ -76.271247863769474, -14.200139999389648 ], [ -76.271530151367131, -14.200137138366699 ], [ -76.271530151367131, -14.200694084167367 ], [ -76.271804809570256, -14.200694084167367 ], [ -76.271804809570256, -14.200971603393555 ], [ -76.272918701171875, -14.200971603393555 ], [ -76.272918701171875, -14.200694084167367 ], [ -76.273193359375, -14.200694084167367 ], [ -76.273193359375, -14.200137138366699 ], [ -76.273475646972656, -14.200137138366699 ], [ -76.273475646972656, -14.199581146240234 ], [ -76.273750305175781, -14.199584007263184 ], [ -76.273750305175781, -14.199305534362793 ], [ -76.274307250976506, -14.199305534362793 ], [ -76.274307250976506, -14.199028015136719 ], [ -76.274581909179631, -14.199028015136719 ], [ -76.274581909179631, -14.198748588561955 ], [ -76.274864196777287, -14.198748588561955 ], [ -76.274864196777287, -14.198471069335938 ], [ -76.275138854980469, -14.198471069335938 ], [ -76.275138854980469, -14.197640419006348 ], [ -76.275413513183594, -14.197640419006348 ], [ -76.275413513183594, -14.19708347320551 ], [ -76.27569580078125, -14.19708347320551 ], [ -76.27569580078125, -14.196526527404728 ], [ -76.275970458984375, -14.196526527404728 ], [ -76.275970458984375, -14.195973396301156 ], [ -76.276252746582031, -14.195973396301156 ], [ -76.276252746582031, -14.195417404174748 ], [ -76.276527404785156, -14.195417404174748 ], [ -76.276527404785156, -14.194861412048283 ], [ -76.276802062988281, -14.194861412048283 ], [ -76.276802062988281, -14.194026947021428 ], [ -76.277084350585824, -14.194026947021428 ], [ -76.277084350585824, -14.193470954894963 ], [ -76.277359008789006, -14.193470954894963 ], [ -76.277359008789006, -14.192916870117188 ], [ -76.277641296386662, -14.192916870117188 ], [ -76.277641296386662, -14.192360877990723 ], [ -76.277359008789006, -14.192360877990723 ], [ -76.277359008789006, -14.191527366638127 ], [ -76.277084350585824, -14.191527366638127 ], [ -76.277084350585824, -14.189305305480957 ], [ -76.276802062988281, -14.189305305480957 ], [ -76.276802062988281, -14.18791675567627 ], [ -76.276252746582031, -14.18791675567627 ], [ -76.276252746582031, -14.187639236450195 ], [ -76.275970458984375, -14.187639236450195 ], [ -76.275970458984375, -14.187508583068848 ], [ -76.275970458984375, -14.184028625488168 ], [ -76.276252746582031, -14.184028625488168 ], [ -76.276252746582031, -14.1834716796875 ], [ -76.276527404785156, -14.1834716796875 ], [ -76.276527404785156, -14.183194160461312 ], [ -76.276802062988281, -14.183194160461312 ], [ -76.276802062988281, -14.182915687561035 ], [ -76.277641296386662, -14.182915687561035 ], [ -76.277641296386662, -14.182638168334904 ], [ -76.278190612792969, -14.182638168334904 ], [ -76.278198242187443, -14.182082176208439 ], [ -76.278472900390625, -14.182082176208439 ], [ -76.278472900390625, -14.181805610656738 ], [ -76.279029846191406, -14.181805610656738 ], [ -76.279029846191406, -14.181249618530273 ], [ -76.279304504394531, -14.181249618530273 ], [ -76.279304504394531, -14.180693626403809 ], [ -76.279586791992188, -14.180693626403809 ], [ -76.279586791992188, -14.180416107177734 ], [ -76.279861450195312, -14.180416107177734 ], [ -76.279861450195312, -14.179583549499455 ], [ -76.280136108398324, -14.179583549499455 ], [ -76.280136108398324, -14.178471565246582 ], [ -76.280418395996037, -14.178471565246582 ], [ -76.280418395996037, -14.178194046020508 ], [ -76.280693054199162, -14.178194046020508 ], [ -76.280693054199162, -14.177915573120117 ], [ -76.280975341796818, -14.177915573120117 ], [ -76.280975341796818, -14.177362442016545 ], [ -76.281524658203125, -14.177362442016545 ], [ -76.281524658203125, -14.177082061767578 ], [ -76.281806945800781, -14.177082061767578 ], [ -76.281806945800781, -14.176527976989689 ], [ -76.282081604003906, -14.176527976989689 ], [ -76.282081604003906, -14.175971984863281 ], [ -76.282363891601562, -14.175971984863281 ], [ -76.282363891601562, -14.175694465637207 ], [ -76.282638549804688, -14.175694465637207 ], [ -76.282638549804688, -14.175138473510742 ], [ -76.282913208007812, -14.175138473510742 ], [ -76.282913208007812, -14.174028396606388 ], [ -76.283195495605469, -14.174028396606388 ], [ -76.283195495605469, -14.173749923705998 ], [ -76.283470153808537, -14.173749923705998 ], [ -76.283470153808537, -14.173195838928223 ], [ -76.285140991210938, -14.173195838928223 ], [ -76.285140991210938, -14.172915458679142 ], [ -76.285415649414062, -14.172915458679142 ], [ -76.285415649414062, -14.172080993652287 ], [ -76.285697937011719, -14.172083854675179 ], [ -76.285697937011719, -14.171806335449162 ], [ -76.285972595214844, -14.171806335449162 ], [ -76.285972595214844, -14.171526908874512 ], [ -76.286247253417969, -14.171526908874512 ], [ -76.286247253417969, -14.170970916748047 ], [ -76.286529541015625, -14.170970916748047 ], [ -76.286529541015625, -14.170693397521916 ], [ -76.286804199218693, -14.170693397521916 ], [ -76.286804199218693, -14.170417785644531 ], [ -76.287086486816349, -14.170417785644531 ], [ -76.287086486816349, -14.16986083984375 ], [ -76.287361145019474, -14.16986083984375 ], [ -76.287361145019474, -14.16874885559082 ], [ -76.287635803222599, -14.16874885559082 ], [ -76.287635803222599, -14.167361259460449 ], [ -76.287918090820312, -14.167361259460449 ], [ -76.287918090820312, -14.166526794433594 ], [ -76.288192749023438, -14.166526794433594 ], [ -76.288192749023438, -14.165970802307129 ], [ -76.288475036621094, -14.165970802307129 ], [ -76.288475036621094, -14.165693283081055 ], [ -76.289024353027344, -14.165695190429631 ], [ -76.289024353027344, -14.16541671752924 ], [ -76.289306640625, -14.16541671752924 ], [ -76.289306640625, -14.165139198303166 ], [ -76.289581298828125, -14.165139198303166 ], [ -76.289581298828125, -14.164860725402775 ], [ -76.289863586425668, -14.164860725402775 ], [ -76.289863586425668, -14.164583206176701 ], [ -76.290138244628849, -14.164583206176701 ], [ -76.290138244628849, -14.16430473327631 ], [ -76.291526794433594, -14.16430473327631 ], [ -76.291526794433594, -14.164029121398926 ], [ -76.29180908203125, -14.164029121398926 ], [ -76.29180908203125, -14.16430473327631 ], [ -76.2923583984375, -14.16430473327631 ], [ -76.2923583984375, -14.164029121398926 ], [ -76.293197631835881, -14.164029121398926 ], [ -76.293197631835881, -14.163748741149846 ], [ -76.293746948242131, -14.163748741149846 ], [ -76.293746948242131, -14.163473129272347 ], [ -76.294029235839787, -14.163473129272347 ], [ -76.294029235839787, -14.16319465637207 ], [ -76.294586181640625, -14.16319465637207 ], [ -76.294586181640625, -14.162915229797363 ], [ -76.294303894042969, -14.162915229797363 ], [ -76.294303894042969, -14.162359237670898 ], [ -76.294029235839787, -14.162361145019474 ], [ -76.294029235839787, -14.162082672119084 ], [ -76.293807983398438, -14.162082672119084 ], [ -76.293472290039006, -14.162082672119084 ], [ -76.293472290039006, -14.161802291870117 ], [ -76.293197631835881, -14.16180515289301 ], [ -76.293197631835881, -14.161526679992619 ], [ -76.292640686035156, -14.161526679992619 ], [ -76.292640686035156, -14.161410331726074 ], [ -76.292640686035156, -14.161249160766545 ], [ -76.291526794433594, -14.161249160766545 ], [ -76.291526794433594, -14.161526679992619 ], [ -76.290306091308537, -14.161526679992619 ], [ -76.290138244628849, -14.161526679992619 ], [ -76.290138244628849, -14.161417007446289 ], [ -76.290138244628849, -14.161249160766545 ], [ -76.289878845214844, -14.161249160766545 ], [ -76.289306640625, -14.161251068115234 ], [ -76.289306640625, -14.160972595214844 ], [ -76.288475036621094, -14.160972595214844 ], [ -76.288475036621094, -14.160692214965763 ], [ -76.288192749023438, -14.16069507598877 ], [ -76.288192749023438, -14.160416603088379 ], [ -76.287635803222599, -14.160416603088379 ], [ -76.287635803222599, -14.160305023193359 ], [ -76.287635803222599, -14.160139083862191 ], [ -76.287361145019474, -14.160139083862191 ], [ -76.287361145019474, -14.159860610961914 ], [ -76.286804199218693, -14.159860610961914 ], [ -76.286804199218693, -14.159583091735783 ], [ -76.286247253417969, -14.159583091735783 ], [ -76.286247253417969, -14.159303665161133 ], [ -76.285072326660099, -14.159303665161133 ], [ -76.284858703613281, -14.159303665161133 ], [ -76.284858703613281, -14.159029006958008 ], [ -76.284584045410099, -14.159029006958008 ], [ -76.284584045410099, -14.158750534057617 ], [ -76.284027099609318, -14.158750534057617 ], [ -76.284027099609318, -14.15847015380848 ], [ -76.283470153808537, -14.158473014831543 ], [ -76.283470153808537, -14.158194541931152 ], [ -76.283195495605469, -14.158194541931152 ], [ -76.283195495605469, -14.157916069030762 ], [ -76.282913208007812, -14.157916069030762 ], [ -76.282913208007812, -14.157637596130371 ], [ -76.282638549804688, -14.157637596130371 ], [ -76.282638549804688, -14.157085418701172 ], [ -76.282363891601562, -14.157085418701172 ], [ -76.282363891601562, -14.156804084777832 ], [ -76.282081604003906, -14.156806945800781 ], [ -76.282081604003906, -14.156528472900334 ], [ -76.28125, -14.156528472900334 ], [ -76.28125, -14.156248092651367 ], [ -76.280975341796818, -14.156248092651367 ], [ -76.280975341796818, -14.155692100524902 ], [ -76.280136108398324, -14.155692100524902 ], [ -76.280136108398324, -14.15513801574707 ], [ -76.279861450195312, -14.15513801574707 ], [ -76.279861450195312, -14.154801368713379 ], [ -76.279861450195312, -14.154582023620605 ], [ -76.279739379882756, -14.154582023620605 ], [ -76.279586791992188, -14.154582023620605 ], [ -76.279586791992188, -14.154313087463379 ], [ -76.279586791992188, -14.154026031494141 ], [ -76.279426574707031, -14.154027938842717 ], [ -76.279304504394531, -14.154027938842717 ], [ -76.279304504394531, -14.15380859375 ], [ -76.279304504394531, -14.153470039367676 ], [ -76.279029846191406, -14.153471946716252 ], [ -76.279029846191406, -14.153319358825684 ], [ -76.279029846191406, -14.152640342712402 ], [ -76.278884887695256, -14.152638435363713 ], [ -76.27874755859375, -14.152638435363713 ], [ -76.27874755859375, -14.148471832275391 ], [ -76.279029846191406, -14.148471832275391 ], [ -76.279029846191406, -14.147917747497502 ], [ -76.279304504394531, -14.147917747497502 ], [ -76.279304504394531, -14.14708137512207 ], [ -76.279586791992188, -14.14708137512207 ], [ -76.279586791992188, -14.146528244018555 ], [ -76.279861450195312, -14.146528244018555 ], [ -76.279861450195312, -14.14597225189209 ], [ -76.280136108398324, -14.14597225189209 ], [ -76.280136108398324, -14.145695686340275 ], [ -76.280418395996037, -14.145695686340275 ], [ -76.280418395996037, -14.145520210266 ], [ -76.280418395996037, -14.145415306091309 ], [ -76.280693054199162, -14.145418167114201 ], [ -76.280693054199162, -14.144859313964844 ], [ -76.280975341796818, -14.144862174987793 ], [ -76.280975341796818, -14.144583702087346 ], [ -76.28125, -14.144583702087346 ], [ -76.28125, -14.144303321838379 ], [ -76.281806945800781, -14.144305229186955 ], [ -76.281806945800781, -14.144026756286564 ], [ -76.282081604003906, -14.144026756286564 ], [ -76.282081604003906, -14.14374923706049 ], [ -76.282363891601562, -14.14374923706049 ], [ -76.282363891601562, -14.143473625182992 ], [ -76.282913208007812, -14.143470764160099 ], [ -76.282913208007812, -14.143193244934082 ], [ -76.283195495605469, -14.143193244934082 ], [ -76.283195495605469, -14.142916679382324 ], [ -76.283470153808537, -14.142916679382324 ], [ -76.283470153808537, -14.142639160156136 ], [ -76.283752441406193, -14.142639160156136 ], [ -76.283752441406193, -14.142360687255859 ], [ -76.284027099609318, -14.142360687255859 ], [ -76.284027099609318, -14.142083168029728 ], [ -76.284858703613281, -14.142083168029728 ], [ -76.284858703613281, -14.141804695129281 ], [ -76.285140991210938, -14.141804695129281 ], [ -76.285140991210938, -14.141527175903263 ], [ -76.285415649414062, -14.141527175903263 ], [ -76.285415649414062, -14.140971183776799 ], [ -76.285697937011719, -14.140971183776799 ], [ -76.285697937011719, -14.140138626098633 ], [ -76.285972595214844, -14.140138626098633 ], [ -76.285972595214844, -14.139861106872559 ], [ -76.286529541015625, -14.139861106872559 ], [ -76.286529541015625, -14.139582633972168 ], [ -76.286804199218693, -14.139582633972168 ], [ -76.286804199218693, -14.138472557067871 ], [ -76.286529541015625, -14.138472557067871 ], [ -76.286529541015625, -14.137639045715332 ], [ -76.286247253417969, -14.137639045715332 ], [ -76.286247253417969, -14.136527061462402 ], [ -76.285972595214844, -14.136527061462402 ], [ -76.285972595214844, -14.135971069335938 ], [ -76.285697937011719, -14.135971069335938 ], [ -76.285697937011719, -14.134860992431641 ], [ -76.285972595214844, -14.134860992431641 ], [ -76.285972595214844, -14.134583473205566 ], [ -76.286247253417969, -14.134583473205566 ], [ -76.286247253417969, -14.132917404174805 ], [ -76.286804199218693, -14.132917404174805 ], [ -76.286804199218693, -14.13236141204834 ], [ -76.287361145019474, -14.13236141204834 ], [ -76.287361145019474, -14.131804466247502 ], [ -76.287086486816349, -14.131804466247502 ], [ -76.287086486816349, -14.132081985473576 ], [ -76.286247253417969, -14.132081985473576 ], [ -76.286247253417969, -14.131804466247502 ], [ -76.285972595214844, -14.131804466247502 ], [ -76.285972595214844, -14.131251335143986 ], [ -76.285697937011719, -14.131251335143986 ], [ -76.285697937011719, -14.130694389343148 ], [ -76.285415649414062, -14.130694389343148 ], [ -76.285415649414062, -14.130415916442871 ], [ -76.285270690917912, -14.130415916442871 ], [ -76.284858703613281, -14.130415916442871 ], [ -76.284858703613281, -14.13013839721674 ], [ -76.284584045410099, -14.13013839721674 ], [ -76.284584045410099, -14.129859924316293 ], [ -76.283195495605469, -14.129859924316293 ], [ -76.283195495605469, -14.13013839721674 ], [ -76.282638549804688, -14.13013839721674 ], [ -76.282638549804688, -14.130415916442871 ], [ -76.282363891601562, -14.130415916442871 ], [ -76.282363891601562, -14.13013839721674 ], [ -76.281524658203125, -14.13013839721674 ], [ -76.281524658203125, -14.129859924316293 ], [ -76.28125, -14.129859924316293 ], [ -76.28125, -14.129582405090275 ], [ -76.280975341796818, -14.129582405090275 ], [ -76.280975341796818, -14.129305839538574 ], [ -76.280693054199162, -14.129305839538574 ], [ -76.280693054199162, -14.128749847412109 ], [ -76.280136108398324, -14.128749847412109 ], [ -76.280136108398324, -14.126250267028809 ], [ -76.280242919921875, -14.126250267028809 ], [ -76.280418395996037, -14.126250267028809 ], [ -76.280418395996037, -14.125694274902344 ], [ -76.280693054199162, -14.125694274902344 ], [ -76.280693054199162, -14.124582290649414 ], [ -76.280975341796818, -14.12458419799799 ], [ -76.280975341796818, -14.124305725097599 ], [ -76.28125, -14.124305725097599 ], [ -76.28125, -14.124028205871525 ], [ -76.281524658203125, -14.124030113220215 ], [ -76.281524658203125, -14.123470306396371 ], [ -76.281806945800781, -14.123470306396371 ], [ -76.281806945800781, -14.122360229492188 ], [ -76.282081604003906, -14.122362136840763 ], [ -76.282081604003906, -14.122083663940316 ], [ -76.282363891601562, -14.122083663940316 ], [ -76.282363891601562, -14.121804237365723 ], [ -76.282913208007812, -14.121804237365723 ], [ -76.282913208007812, -14.121247291564941 ], [ -76.283195495605469, -14.121250152587834 ], [ -76.283195495605469, -14.120694160461369 ], [ -76.283470153808537, -14.120694160461369 ], [ -76.283470153808537, -14.120138168334961 ], [ -76.283752441406193, -14.120140075683594 ], [ -76.283752441406193, -14.119861602783203 ], [ -76.285140991210938, -14.119861602783203 ], [ -76.285140991210938, -14.119581222534123 ], [ -76.285415649414062, -14.119584083557015 ], [ -76.285415649414062, -14.119305610656738 ], [ -76.285697937011719, -14.119305610656738 ], [ -76.285697937011719, -14.11874961853016 ], [ -76.285972595214844, -14.11874961853016 ], [ -76.285972595214844, -14.117639541625977 ], [ -76.286247253417969, -14.117639541625977 ], [ -76.286247253417969, -14.115693092346191 ], [ -76.286529541015625, -14.115693092346191 ], [ -76.286529541015625, -14.115137100219727 ], [ -76.287361145019474, -14.115139007568303 ], [ -76.287361145019474, -14.114860534667912 ], [ -76.287635803222599, -14.114860534667912 ], [ -76.287635803222599, -14.114581108093262 ], [ -76.287918090820312, -14.114583015441895 ], [ -76.287918090820312, -14.113751411437931 ], [ -76.287635803222599, -14.113751411437931 ], [ -76.287635803222599, -14.112360954284611 ], [ -76.287918090820312, -14.112360954284611 ], [ -76.287918090820312, -14.111248970031681 ], [ -76.288192749023438, -14.111248970031681 ], [ -76.288192749023438, -14.111527442932129 ], [ -76.288749694824219, -14.111527442932129 ], [ -76.288749694824219, -14.111248970031681 ], [ -76.289024353027344, -14.111248970031681 ], [ -76.289024353027344, -14.110973358154183 ], [ -76.289306640625, -14.110973358154183 ], [ -76.289306640625, -14.110417366027775 ], [ -76.289581298828125, -14.110417366027775 ], [ -76.289581298828125, -14.10986137390131 ], [ -76.289024353027344, -14.10986137390131 ], [ -76.289024353027344, -14.10958290100092 ], [ -76.288749694824219, -14.10958290100092 ], [ -76.288749694824219, -14.109305381774846 ], [ -76.288192749023438, -14.109305381774846 ], [ -76.288192749023438, -14.109026908874455 ], [ -76.287635803222599, -14.109026908874455 ], [ -76.287635803222599, -14.109305381774846 ], [ -76.287086486816349, -14.109305381774846 ], [ -76.287086486816349, -14.10875129699707 ], [ -76.286956787109375, -14.10875129699707 ], [ -76.286804199218693, -14.10875129699707 ], [ -76.286804199218693, -14.10847282409668 ], [ -76.286529541015625, -14.10847282409668 ], [ -76.286529541015625, -14.107667922973576 ], [ -76.286529541015625, -14.107083320617619 ], [ -76.286804199218693, -14.107083320617619 ], [ -76.286804199218693, -14.106250762939453 ], [ -76.287086486816349, -14.106250762939453 ], [ -76.287086486816349, -14.105694770812988 ], [ -76.287361145019474, -14.105694770812988 ], [ -76.287361145019474, -14.105417251586914 ], [ -76.287635803222599, -14.105417251586914 ], [ -76.287635803222599, -14.105138778686523 ], [ -76.287361145019474, -14.105138778686523 ], [ -76.287361145019474, -14.104860305786133 ], [ -76.287635803222599, -14.104863166809025 ], [ -76.287635803222599, -14.103192329406738 ], [ -76.287361145019474, -14.103192329406738 ], [ -76.287361145019474, -14.102638244628906 ], [ -76.287086486816349, -14.102638244628906 ], [ -76.287086486816349, -14.102082252502441 ], [ -76.286804199218693, -14.102082252502441 ], [ -76.286804199218693, -14.101805686950684 ], [ -76.286529541015625, -14.101805686950684 ], [ -76.286529541015625, -14.101528167724553 ], [ -76.287086486816349, -14.101528167724553 ], [ -76.287086486816349, -14.101249694824105 ], [ -76.287361145019474, -14.101249694824105 ], [ -76.287361145019474, -14.100137710571232 ], [ -76.287635803222599, -14.100137710571232 ], [ -76.287635803222599, -14.098750114440918 ], [ -76.287918090820312, -14.098750114440918 ], [ -76.287918090820312, -14.098471641540527 ], [ -76.288192749023438, -14.098471641540527 ], [ -76.288192749023438, -14.097638130187931 ], [ -76.288475036621094, -14.097640037536621 ], [ -76.288475036621094, -14.09736156463623 ], [ -76.289024353027344, -14.097359657287484 ], [ -76.289024353027344, -14.097082138061467 ], [ -76.289306640625, -14.097084045410156 ], [ -76.289306640625, -14.096805572509766 ], [ -76.289581298828125, -14.096805572509766 ], [ -76.289581298828125, -14.096249580383301 ], [ -76.289863586425668, -14.096249580383301 ], [ -76.289863586425668, -14.093471527099609 ], [ -76.290138244628849, -14.093471527099609 ], [ -76.290138244628849, -14.092637062072754 ], [ -76.292083740234375, -14.092639923095646 ], [ -76.292083740234375, -14.092362403869629 ], [ -76.293197631835881, -14.092362403869629 ], [ -76.293197631835881, -14.092081069946289 ], [ -76.292915344238168, -14.092083930969181 ], [ -76.292915344238168, -14.091806411743164 ], [ -76.292640686035156, -14.091806411743164 ], [ -76.292640686035156, -14.091527938842773 ], [ -76.292915344238168, -14.091527938842773 ], [ -76.292915344238168, -14.091249465942326 ], [ -76.293197631835881, -14.091249465942326 ], [ -76.293197631835881, -14.090693473815918 ], [ -76.293472290039006, -14.090693473815918 ], [ -76.293472290039006, -14.090415000915471 ], [ -76.294303894042969, -14.09041786193842 ], [ -76.294303894042969, -14.090140342712346 ], [ -76.294586181640625, -14.090140342712346 ], [ -76.294586181640625, -14.089583396911564 ], [ -76.29486083984375, -14.089583396911564 ], [ -76.29486083984375, -14.089304924011117 ], [ -76.294586181640625, -14.089304924011117 ], [ -76.294586181640625, -14.088748931884709 ], [ -76.292915344238168, -14.088748931884709 ], [ -76.292915344238168, -14.088473320007324 ], [ -76.292640686035156, -14.088473320007324 ], [ -76.292640686035156, -14.087917327880859 ], [ -76.2923583984375, -14.087917327880859 ], [ -76.2923583984375, -14.087638854980469 ], [ -76.291252136230469, -14.087638854980469 ], [ -76.291252136230469, -14.087361335754395 ], [ -76.291526794433594, -14.087361335754395 ], [ -76.291526794433594, -14.086526870727539 ], [ -76.289863586425668, -14.086526870727539 ], [ -76.289863586425668, -14.087361335754395 ], [ -76.289581298828125, -14.087361335754395 ], [ -76.289581298828125, -14.087917327880859 ], [ -76.287918090820312, -14.087917327880859 ], [ -76.287918090820312, -14.088748931884709 ], [ -76.285972595214844, -14.088748931884709 ], [ -76.285972595214844, -14.089027404785099 ], [ -76.285232543945312, -14.089027404785099 ], [ -76.284858703613281, -14.089027404785099 ], [ -76.284858703613281, -14.088748931884709 ], [ -76.284584045410099, -14.088748931884709 ], [ -76.284584045410099, -14.088473320007324 ], [ -76.284301757812443, -14.088473320007324 ], [ -76.284301757812443, -14.087917327880859 ], [ -76.284027099609318, -14.087917327880859 ], [ -76.284027099609318, -14.087702751159668 ], [ -76.284027099609318, -14.087361335754395 ], [ -76.283752441406193, -14.087361335754395 ], [ -76.283752441406193, -14.087082862854004 ], [ -76.283462524414006, -14.087082862854004 ], [ -76.283195495605469, -14.087082862854004 ], [ -76.283195495605469, -14.08680534362793 ], [ -76.282913208007812, -14.08680534362793 ], [ -76.282913208007812, -14.086526870727539 ], [ -76.282363891601562, -14.086526870727539 ], [ -76.282363891601562, -14.086251258850098 ], [ -76.282081604003906, -14.086251258850098 ], [ -76.282081604003906, -14.085970878601074 ], [ -76.281524658203125, -14.085970878601074 ], [ -76.281524658203125, -14.085695266723633 ], [ -76.28125, -14.085695266723633 ], [ -76.28125, -14.085416793823242 ], [ -76.280693054199162, -14.085416793823242 ], [ -76.280693054199162, -14.085139274597168 ], [ -76.280136108398324, -14.085139274597168 ], [ -76.280136108398324, -14.084860801696777 ], [ -76.279861450195312, -14.084860801696777 ], [ -76.279861450195312, -14.084583282470703 ], [ -76.279304504394531, -14.084583282470703 ], [ -76.279304504394531, -14.084304809570312 ], [ -76.279029846191406, -14.084304809570312 ], [ -76.279029846191406, -14.084027290344238 ], [ -76.278472900390625, -14.084029197692814 ], [ -76.278472900390625, -14.083748817443848 ], [ -76.278198242187443, -14.083748817443848 ], [ -76.278190612792969, -14.083471298217773 ], [ -76.277915954589787, -14.083473205566349 ], [ -76.277915954589787, -14.083194732665959 ], [ -76.277687072753906, -14.083194732665959 ], [ -76.277641296386662, -14.082915306091195 ], [ -76.277084350585824, -14.082917213439941 ], [ -76.277084350585824, -14.082638740539494 ], [ -76.276802062988281, -14.082638740539494 ], [ -76.276802062988281, -14.080972671508732 ], [ -76.276527404785156, -14.080972671508732 ], [ -76.276527404785156, -14.080416679382267 ], [ -76.276802062988281, -14.080416679382267 ], [ -76.276802062988281, -14.078470230102482 ], [ -76.276527404785156, -14.078473091125431 ], [ -76.276527404785156, -14.075971603393555 ], [ -76.276802062988281, -14.075971603393555 ], [ -76.276802062988281, -14.075692176818791 ], [ -76.276527404785156, -14.07569408416748 ], [ -76.276527404785156, -14.07541561126709 ], [ -76.276802062988281, -14.07541561126709 ], [ -76.276802062988281, -14.074582099914551 ], [ -76.276527404785156, -14.074582099914551 ], [ -76.276527404785156, -14.074305534362736 ], [ -76.276802062988281, -14.074305534362736 ], [ -76.276802062988281, -14.073749542236271 ], [ -76.277359008789006, -14.073749542236271 ], [ -76.277359008789006, -14.072637557983398 ], [ -76.277641296386662, -14.072637557983398 ], [ -76.277641296386662, -14.072360038757324 ], [ -76.277359008789006, -14.072360038757324 ], [ -76.277359008789006, -14.072084426879826 ], [ -76.277641296386662, -14.072084426879826 ], [ -76.277641296386662, -14.071528434753361 ], [ -76.277359008789006, -14.071528434753361 ], [ -76.277359008789006, -14.069306373596135 ], [ -76.277084350585824, -14.069306373596135 ], [ -76.277084350585824, -14.068471908569279 ], [ -76.276802062988281, -14.068471908569279 ], [ -76.276802062988281, -14.067361831665039 ], [ -76.277084350585824, -14.067361831665039 ], [ -76.277084350585824, -14.06541538238514 ], [ -76.277359008789006, -14.06541538238514 ], [ -76.277359008789006, -14.065139770507812 ], [ -76.277084350585824, -14.065139770507812 ], [ -76.277084350585824, -14.062917709350586 ], [ -76.276802062988281, -14.062917709350586 ], [ -76.276802062988281, -14.062360763549748 ], [ -76.276527404785156, -14.062360763549748 ], [ -76.276527404785156, -14.061804771423283 ], [ -76.275970458984375, -14.061804771423283 ], [ -76.275970458984375, -14.061527252197266 ], [ -76.275413513183594, -14.061527252197266 ], [ -76.275413513183594, -14.061248779296875 ], [ -76.275138854980469, -14.061248779296875 ], [ -76.275138854980469, -14.060694694518929 ], [ -76.274864196777287, -14.060694694518929 ], [ -76.274864196777287, -14.060138702392521 ], [ -76.273475646972656, -14.060138702392521 ], [ -76.273475646972656, -14.059859275817871 ], [ -76.273193359375, -14.059859275817871 ], [ -76.273193359375, -14.060138702392521 ], [ -76.272636413574219, -14.060138702392521 ], [ -76.272636413574219, -14.060417175292912 ], [ -76.272361755371094, -14.060415267944336 ], [ -76.272361755371094, -14.060694694518929 ], [ -76.271247863769474, -14.060694694518929 ], [ -76.271247863769474, -14.060971260070801 ], [ -76.270973205566349, -14.060971260070801 ], [ -76.270973205566349, -14.061248779296875 ], [ -76.270690917968693, -14.061248779296875 ], [ -76.270690917968693, -14.061527252197266 ], [ -76.270416259765625, -14.061527252197266 ], [ -76.270416259765625, -14.061804771423283 ], [ -76.2701416015625, -14.061804771423283 ], [ -76.2701416015625, -14.06208324432373 ], [ -76.269874572753906, -14.06208324432373 ], [ -76.269859313964844, -14.062360763549748 ], [ -76.269584655761719, -14.062360763549748 ], [ -76.269584655761719, -14.062637329101562 ], [ -76.269302368164062, -14.062637329101562 ], [ -76.269302368164062, -14.063193321228027 ], [ -76.269027709960938, -14.063193321228027 ], [ -76.269027709960938, -14.063470840454102 ], [ -76.268753051757756, -14.063470840454102 ], [ -76.268753051757756, -14.063749313354492 ], [ -76.268470764160099, -14.063749313354492 ], [ -76.268470764160099, -14.064026832580566 ], [ -76.267082214355469, -14.064026832580566 ], [ -76.267082214355469, -14.063749313354492 ], [ -76.266807556152344, -14.063749313354492 ], [ -76.266807556152344, -14.063470840454102 ], [ -76.266525268554688, -14.063470840454102 ], [ -76.266525268554688, -14.062917709350586 ], [ -76.266250610351562, -14.062917709350586 ], [ -76.266250610351562, -14.062637329101562 ], [ -76.265975952148438, -14.062639236450138 ], [ -76.265975952148438, -14.062360763549748 ], [ -76.265419006347599, -14.062360763549748 ], [ -76.265419006347599, -14.06208324432373 ], [ -76.264862060546818, -14.06208324432373 ], [ -76.264862060546818, -14.061804771423283 ], [ -76.26430511474598, -14.061804771423283 ], [ -76.26430511474598, -14.061527252197266 ], [ -76.264030456542969, -14.061527252197266 ], [ -76.264030456542969, -14.061248779296875 ], [ -76.263473510742188, -14.061248779296875 ], [ -76.263473510742188, -14.060971260070801 ], [ -76.263191223144531, -14.060971260070801 ], [ -76.263191223144531, -14.060694694518929 ], [ -76.262641906738281, -14.060694694518929 ], [ -76.262641906738281, -14.060415267944336 ], [ -76.262359619140625, -14.060417175292912 ], [ -76.262359619140625, -14.060138702392521 ], [ -76.261802673339787, -14.060138702392521 ], [ -76.261802673339787, -14.058669090270939 ], [ -76.261802673339787, -14.057916641235352 ], [ -76.261528015136662, -14.057916641235352 ], [ -76.261528015136662, -14.057360649108887 ], [ -76.26125335693348, -14.057360649108887 ], [ -76.26125335693348, -14.0562486648559 ], [ -76.260971069335938, -14.0562486648559 ], [ -76.260971069335938, -14.054471015930176 ], [ -76.260971069335938, -14.053749084472599 ], [ -76.261230468749943, -14.053749084472599 ], [ -76.26125335693348, -14.050970077514648 ], [ -76.261528015136662, -14.050970077514648 ], [ -76.261528015136662, -14.049860000610295 ], [ -76.261802673339787, -14.049860000610295 ], [ -76.261802673339787, -14.049304008483887 ], [ -76.262084960937443, -14.049304008483887 ], [ -76.262084960937443, -14.048748016357422 ], [ -76.262359619140625, -14.048749923705941 ], [ -76.262359619140625, -14.048472404479924 ], [ -76.262527465820312, -14.048472404479924 ], [ -76.262641906738281, -14.048472404479924 ], [ -76.262641906738281, -14.048226356506291 ], [ -76.262641906738281, -14.047916412353459 ], [ -76.262786865234375, -14.047916412353459 ], [ -76.262916564941406, -14.047916412353459 ], [ -76.262916564941406, -14.047636032104492 ], [ -76.262916564941406, -14.047362327575684 ], [ -76.263046264648381, -14.047362327575684 ], [ -76.263191223144531, -14.047362327575684 ], [ -76.263191223144531, -14.047081947326603 ], [ -76.264579772949162, -14.047081947326603 ], [ -76.264579772949162, -14.047916412353459 ], [ -76.26430511474598, -14.047916412353459 ], [ -76.26430511474598, -14.048472404479924 ], [ -76.264579772949162, -14.048472404479924 ], [ -76.264579772949162, -14.049028396606388 ], [ -76.264862060546818, -14.049028396606388 ], [ -76.264862060546818, -14.049306869506779 ], [ -76.265975952148438, -14.049304008483887 ], [ -76.265975952148438, -14.048748016357422 ], [ -76.265693664550781, -14.048748016357422 ], [ -76.265693664550781, -14.047637939453068 ], [ -76.266525268554688, -14.047637939453068 ], [ -76.266525268554688, -14.047362327575684 ], [ -76.266807556152344, -14.047362327575684 ], [ -76.266807556152344, -14.046806335449219 ], [ -76.267082214355469, -14.046806335449219 ], [ -76.267082214355469, -14.046527862548828 ], [ -76.267364501953125, -14.046527862548828 ], [ -76.267364501953125, -14.045971870422363 ], [ -76.267639160156193, -14.045971870422363 ], [ -76.267639160156193, -14.045694351196175 ], [ -76.268753051757756, -14.045694351196175 ], [ -76.268753051757756, -14.045971870422363 ], [ -76.270416259765625, -14.045971870422363 ], [ -76.270416259765625, -14.045694351196175 ], [ -76.270690917968693, -14.045694351196175 ], [ -76.270690917968693, -14.045140266418457 ], [ -76.270973205566349, -14.045140266418457 ], [ -76.270973205566349, -14.04485988616932 ], [ -76.272636413574219, -14.04485988616932 ], [ -76.272636413574219, -14.043472290039062 ], [ -76.272361755371094, -14.043472290039062 ], [ -76.272361755371094, -14.043193817138672 ], [ -76.271804809570256, -14.043193817138672 ], [ -76.271804809570256, -14.043749809265137 ], [ -76.271530151367131, -14.043749809265137 ], [ -76.271530151367131, -14.044028282165527 ], [ -76.2701416015625, -14.044028282165527 ], [ -76.2701416015625, -14.043749809265137 ], [ -76.269859313964844, -14.043749809265137 ], [ -76.269859313964844, -14.043472290039062 ], [ -76.269737243652287, -14.043472290039062 ], [ -76.269584655761719, -14.043472290039062 ], [ -76.269584655761719, -14.043193817138672 ], [ -76.269302368164062, -14.043193817138672 ], [ -76.269302368164062, -14.042916297912598 ], [ -76.269027709960938, -14.042916297912598 ], [ -76.269027709960938, -14.042083740234318 ], [ -76.269302368164062, -14.042083740234318 ], [ -76.269302368164062, -14.041250228881836 ], [ -76.269645690917855, -14.041250228881836 ], [ -76.2701416015625, -14.041250228881836 ], [ -76.2701416015625, -14.040971755981445 ], [ -76.270416259765625, -14.040971755981445 ], [ -76.270416259765625, -14.04041576385498 ], [ -76.270973205566349, -14.04041576385498 ], [ -76.270973205566349, -14.038749694824162 ], [ -76.271247863769474, -14.038749694824162 ], [ -76.271247863769474, -14.037915229797306 ], [ -76.271530151367131, -14.037915229797306 ], [ -76.271530151367131, -14.037639617919808 ], [ -76.272361755371094, -14.037639617919808 ], [ -76.272361755371094, -14.037359237670898 ], [ -76.272636413574219, -14.037359237670898 ], [ -76.272636413574219, -14.036803245544434 ], [ -76.272361755371094, -14.036803245544434 ], [ -76.272361755371094, -14.036249160766545 ], [ -76.271247863769474, -14.036249160766545 ], [ -76.271247863769474, -14.034860610961914 ], [ -76.270973205566349, -14.034860610961914 ], [ -76.270973205566349, -14.032915115356332 ], [ -76.270690917968693, -14.032915115356332 ], [ -76.270690917968693, -14.032361030578613 ], [ -76.270416259765625, -14.032361030578613 ], [ -76.270416259765625, -14.031805038452148 ], [ -76.2701416015625, -14.031805038452148 ], [ -76.2701416015625, -14.031249046325684 ], [ -76.267913818359318, -14.031249046325684 ], [ -76.267913818359318, -14.031526565551758 ], [ -76.267082214355469, -14.031526565551758 ], [ -76.267082214355469, -14.031805038452148 ], [ -76.266807556152344, -14.031805038452148 ], [ -76.266807556152344, -14.032082557678223 ], [ -76.266525268554688, -14.032082557678223 ], [ -76.266525268554688, -14.032638549804688 ], [ -76.266250610351562, -14.032638549804688 ], [ -76.266250610351562, -14.032917022705078 ], [ -76.265975952148438, -14.032915115356332 ], [ -76.265975952148438, -14.033194541931096 ], [ -76.264862060546818, -14.033194541931096 ], [ -76.264862060546818, -14.032915115356332 ], [ -76.264579772949162, -14.032915115356332 ], [ -76.264579772949162, -14.032361030578613 ], [ -76.26430511474598, -14.032361030578613 ], [ -76.26430511474598, -14.031805038452148 ], [ -76.264030456542969, -14.031805038452148 ], [ -76.264030456542969, -14.031526565551758 ], [ -76.263748168945312, -14.031526565551758 ], [ -76.263748168945312, -14.031249046325684 ], [ -76.263473510742188, -14.031249046325684 ], [ -76.263473510742188, -14.030973434448185 ], [ -76.263191223144531, -14.030973434448185 ], [ -76.263191223144531, -14.030417442321777 ], [ -76.262916564941406, -14.030417442321777 ], [ -76.262916564941406, -14.03013896942133 ], [ -76.262641906738281, -14.03013896942133 ], [ -76.262641906738281, -14.029582977294922 ], [ -76.262359619140625, -14.029582977294922 ], [ -76.262359619140625, -14.027916908264103 ], [ -76.262084960937443, -14.027916908264103 ], [ -76.262084960937443, -14.026357650756836 ], [ -76.262084960937443, -14.02569484710682 ], [ -76.262359619140625, -14.02569484710682 ], [ -76.262359619140625, -14.023751258850098 ], [ -76.262641906738281, -14.023751258850098 ], [ -76.262641906738281, -14.022082328796387 ], [ -76.262916564941406, -14.022082328796387 ], [ -76.262916564941406, -14.02097225189209 ], [ -76.263191223144531, -14.02097225189209 ], [ -76.263191223144531, -14.020693778991699 ], [ -76.263473510742188, -14.020693778991699 ], [ -76.263473510742188, -14.020137786865234 ], [ -76.263748168945312, -14.020137786865234 ], [ -76.263748168945312, -14.01986026763916 ], [ -76.264030456542969, -14.01986026763916 ], [ -76.264030456542969, -14.019583702087346 ], [ -76.26430511474598, -14.019583702087346 ], [ -76.26430511474598, -14.019027709960881 ], [ -76.264579772949162, -14.019027709960881 ], [ -76.264579772949162, -14.01874828338623 ], [ -76.264862060546818, -14.01874828338623 ], [ -76.264862060546818, -14.018194198608342 ], [ -76.265136718749943, -14.018194198608342 ], [ -76.265136718749943, -14.017640113830566 ], [ -76.265419006347599, -14.017640113830566 ], [ -76.265419006347599, -14.017359733581486 ], [ -76.265975952148438, -14.017359733581486 ], [ -76.265975952148438, -14.016805648803711 ], [ -76.266250610351562, -14.016805648803711 ], [ -76.266250610351562, -14.01652812957758 ], [ -76.266525268554688, -14.01652812957758 ], [ -76.266525268554688, -14.016249656677132 ], [ -76.267082214355469, -14.016249656677132 ], [ -76.267082214355469, -14.015970230102539 ], [ -76.267364501953125, -14.015970230102539 ], [ -76.267364501953125, -14.01541614532465 ], [ -76.267639160156193, -14.01541614532465 ], [ -76.267639160156193, -14.014860153198185 ], [ -76.268196105956974, -14.014862060546875 ], [ -76.268196105956974, -14.014583587646484 ], [ -76.268470764160099, -14.014583587646484 ], [ -76.268470764160099, -14.014304161071777 ], [ -76.269027709960938, -14.01430606842041 ], [ -76.269027709960938, -14.01402759552002 ], [ -76.269302368164062, -14.01402759552002 ], [ -76.269302368164062, -14.013750076293832 ], [ -76.269859313964844, -14.013750076293832 ], [ -76.269859313964844, -14.013471603393555 ], [ -76.270690917968693, -14.013471603393555 ], [ -76.270690917968693, -14.013194084167424 ], [ -76.271530151367131, -14.013194084167424 ], [ -76.271530151367131, -14.012915611266976 ], [ -76.272361755371094, -14.012915611266976 ], [ -76.272361755371094, -14.013471603393555 ], [ -76.272918701171875, -14.013471603393555 ], [ -76.272918701171875, -14.013194084167424 ], [ -76.274024963378849, -14.013194084167424 ], [ -76.274024963378849, -14.012361526489258 ], [ -76.274581909179631, -14.012361526489258 ], [ -76.274581909179631, -14.012081146240121 ], [ -76.274864196777287, -14.012081146240121 ], [ -76.274864196777287, -14.009859085083008 ], [ -76.27569580078125, -14.009861946105957 ], [ -76.27569580078125, -14.009583473205566 ], [ -76.276527404785156, -14.009583473205566 ], [ -76.276527404785156, -14.009305000305119 ], [ -76.277359008789006, -14.009305000305119 ], [ -76.277359008789006, -14.009026527404728 ], [ -76.278472900390625, -14.009026527404728 ], [ -76.278472900390625, -14.008749008178711 ], [ -76.279304504394531, -14.008749008178711 ], [ -76.279304504394531, -14.008474349975529 ], [ -76.279586791992188, -14.008474349975529 ], [ -76.279586791992188, -14.007917404174748 ], [ -76.279861450195312, -14.007917404174748 ], [ -76.279861450195312, -14.006805419921818 ], [ -76.280136108398324, -14.006805419921818 ], [ -76.280136108398324, -14.006526947021428 ], [ -76.280693054199162, -14.006526947021428 ], [ -76.280693054199162, -14.006251335144043 ], [ -76.280975341796818, -14.006251335144043 ], [ -76.280975341796818, -14.004860877990723 ], [ -76.281524658203125, -14.004860877990723 ], [ -76.281524658203125, -14.004583358764592 ], [ -76.281806945800781, -14.004583358764592 ], [ -76.281806945800781, -14.004304885864144 ], [ -76.282081604003906, -14.004304885864144 ], [ -76.282081604003906, -14.004027366638127 ], [ -76.282363891601562, -14.004027366638127 ], [ -76.282363891601562, -14.003748893737736 ], [ -76.282638549804688, -14.003748893737736 ], [ -76.282638549804688, -14.003473281860352 ], [ -76.282913208007812, -14.003473281860352 ], [ -76.282913208007812, -14.002917289733887 ], [ -76.283195495605469, -14.002917289733887 ], [ -76.283195495605469, -14.002361297607422 ], [ -76.283470153808537, -14.002361297607422 ], [ -76.283470153808537, -14.001805305480843 ], [ -76.283752441406193, -14.001805305480843 ], [ -76.283752441406193, -14.001249313354435 ], [ -76.284027099609318, -14.001251220703125 ], [ -76.284027099609318, -14.000972747802734 ], [ -76.284301757812443, -14.000972747802734 ], [ -76.284301757812443, -14.00069522857666 ], [ -76.284584045410099, -14.00069522857666 ], [ -76.284584045410099, -14.00041675567627 ], [ -76.284858703613281, -14.00041675567627 ], [ -76.284858703613281, -14.000136375427132 ], [ -76.285140991210938, -14.000139236450195 ], [ -76.285140991210938, -13.999860763549805 ], [ -76.285415649414062, -13.999860763549805 ], [ -76.285415649414062, -13.999027252197266 ], [ -76.285697937011719, -13.999029159545842 ], [ -76.285697937011719, -13.998473167419434 ], [ -76.285972595214844, -13.998473167419434 ], [ -76.285972595214844, -13.996528625488224 ], [ -76.286247253417969, -13.996528625488224 ], [ -76.286247253417969, -13.9959716796875 ], [ -76.285972595214844, -13.9959716796875 ], [ -76.285972595214844, -13.995415687560921 ], [ -76.285697937011719, -13.995415687560921 ], [ -76.285697937011719, -13.995138168334904 ], [ -76.28558349609375, -13.995138168334904 ], [ -76.285415649414062, -13.995138168334904 ], [ -76.285415649414062, -13.994859695434513 ], [ -76.285140991210938, -13.994859695434513 ], [ -76.285140991210938, -13.994582176208439 ], [ -76.284858703613281, -13.994582176208439 ], [ -76.284858703613281, -13.994305610656738 ], [ -76.284584045410099, -13.994305610656738 ], [ -76.284584045410099, -13.994026184081974 ], [ -76.284301757812443, -13.994028091430664 ], [ -76.284301757812443, -13.993749618530273 ], [ -76.284027099609318, -13.993749618530273 ], [ -76.284027099609318, -13.993472099304199 ], [ -76.280136108398324, -13.993472099304199 ], [ -76.280136108398324, -13.993749618530273 ], [ -76.278472900390625, -13.993749618530273 ], [ -76.278472900390625, -13.993472099304199 ], [ -76.277275085449105, -13.993472099304199 ], [ -76.276252746582031, -13.993472099304199 ], [ -76.276252746582031, -13.993193626403809 ], [ -76.27569580078125, -13.993193626403809 ], [ -76.27569580078125, -13.992916107177734 ], [ -76.275413513183594, -13.992916107177734 ], [ -76.275413513183594, -13.992637634277344 ], [ -76.275138854980469, -13.992637634277344 ], [ -76.275138854980469, -13.992360115051156 ], [ -76.274864196777287, -13.992360115051156 ], [ -76.274864196777287, -13.991806030273438 ], [ -76.274581909179631, -13.991806030273438 ], [ -76.274581909179631, -13.991527557373047 ], [ -76.274307250976506, -13.991527557373047 ], [ -76.274307250976506, -13.990971565246582 ], [ -76.274024963378849, -13.990971565246582 ], [ -76.274024963378849, -13.990415573120117 ], [ -76.273750305175781, -13.990415573120117 ], [ -76.273750305175781, -13.990138053894043 ], [ -76.273475646972656, -13.990138053894043 ], [ -76.273475646972656, -13.989608764648438 ], [ -76.273475646972656, -13.988750457763672 ], [ -76.273193359375, -13.988750457763672 ], [ -76.273193359375, -13.988471984863281 ], [ -76.272918701171875, -13.988471984863281 ], [ -76.272918701171875, -13.988194465637207 ], [ -76.272636413574219, -13.988194465637207 ], [ -76.272636413574219, -13.987975120544434 ], [ -76.272636413574219, -13.987638473510742 ], [ -76.272483825683537, -13.987638473510742 ], [ -76.272361755371094, -13.987638473510742 ], [ -76.272361755371094, -13.987361907958928 ], [ -76.272087097167969, -13.987361907958928 ], [ -76.272087097167969, -13.98676872253418 ], [ -76.272087097167969, -13.986528396606445 ], [ -76.271980285644531, -13.986528396606445 ], [ -76.271804809570256, -13.986528396606445 ], [ -76.271804809570256, -13.986151695251465 ], [ -76.271804809570256, -13.98597240447998 ], [ -76.271530151367131, -13.98597240447998 ], [ -76.271530151367131, -13.985416412353516 ], [ -76.271247863769474, -13.985416412353516 ], [ -76.271247863769474, -13.984580993652287 ], [ -76.270973205566349, -13.984583854675236 ], [ -76.270973205566349, -13.983193397521916 ], [ -76.270690917968693, -13.983193397521916 ], [ -76.270690917968693, -13.982917785644531 ], [ -76.270973205566349, -13.982917785644531 ], [ -76.270973205566349, -13.982640266418457 ], [ -76.270843505859375, -13.982640266418457 ], [ -76.270690917968693, -13.982640266418457 ], [ -76.270690917968693, -13.982014656066895 ], [ -76.270690917968693, -13.981527328491211 ], [ -76.270568847656193, -13.981527328491211 ], [ -76.270416259765625, -13.981527328491211 ], [ -76.270416259765625, -13.980971336364746 ], [ -76.2701416015625, -13.980971336364746 ], [ -76.2701416015625, -13.980694770812931 ], [ -76.270416259765625, -13.980694770812931 ], [ -76.270416259765625, -13.97791671752924 ], [ -76.270690917968693, -13.97791671752924 ], [ -76.270690917968693, -13.975415229797363 ], [ -76.270416259765625, -13.975417137145939 ], [ -76.270416259765625, -13.972916603088379 ], [ -76.270690917968693, -13.972916603088379 ], [ -76.270690917968693, -13.972083091735783 ], [ -76.270416259765625, -13.972083091735783 ], [ -76.270416259765625, -13.970525741577092 ], [ -76.270416259765625, -13.970209121704102 ], [ -76.270416259765625, -13.969581604003906 ], [ -76.270690917968693, -13.969581604003906 ], [ -76.270690917968693, -13.969304084777832 ], [ -76.270973205566349, -13.969304084777832 ], [ -76.270973205566349, -13.968748092651367 ], [ -76.270690917968693, -13.968748092651367 ], [ -76.270690917968693, -13.968192100524902 ], [ -76.270973205566349, -13.968194007873535 ], [ -76.270973205566349, -13.967915534973088 ], [ -76.271247863769474, -13.967915534973088 ], [ -76.271247863769474, -13.967363357543888 ], [ -76.271530151367131, -13.967363357543888 ], [ -76.271530151367131, -13.966806411743107 ], [ -76.271247863769474, -13.966806411743107 ], [ -76.271247863769474, -13.966526031494141 ], [ -76.271804809570256, -13.966527938842717 ], [ -76.271804809570256, -13.966250419616642 ], [ -76.271530151367131, -13.966250419616642 ], [ -76.271530151367131, -13.965415954589787 ], [ -76.271804809570256, -13.965415954589787 ], [ -76.271804809570256, -13.964305877685547 ], [ -76.272087097167969, -13.964305877685547 ], [ -76.272087097167969, -13.964028358459416 ], [ -76.271804809570256, -13.964028358459416 ], [ -76.271804809570256, -13.963749885558968 ], [ -76.272087097167969, -13.963749885558968 ], [ -76.272087097167969, -13.963472366332951 ], [ -76.272361755371094, -13.963472366332951 ], [ -76.272361755371094, -13.96319389343256 ], [ -76.272636413574219, -13.96319389343256 ], [ -76.272636413574219, -13.962081909179631 ], [ -76.272918701171875, -13.962081909179631 ], [ -76.272918701171875, -13.960971832275391 ], [ -76.273193359375, -13.960971832275391 ], [ -76.273193359375, -13.959305763244629 ], [ -76.273475646972656, -13.959305763244629 ], [ -76.273475646972656, -13.958195686340275 ], [ -76.273246765136662, -13.958195686340275 ], [ -76.273193359375, -13.957915306091309 ], [ -76.27301025390625, -13.957915306091309 ], [ -76.272636413574219, -13.957915306091309 ], [ -76.272636413574219, -13.95763969421381 ], [ -76.272361755371094, -13.95763969421381 ], [ -76.272361755371094, -13.957157135009766 ], [ -76.272361755371094, -13.955139160156193 ], [ -76.272636413574219, -13.955139160156193 ], [ -76.272636413574219, -13.953194618225098 ], [ -76.272918701171875, -13.953194618225098 ], [ -76.272918701171875, -13.952361106872559 ], [ -76.273193359375, -13.952361106872559 ], [ -76.273193359375, -13.951526641845703 ], [ -76.273475646972656, -13.951526641845703 ], [ -76.273475646972656, -13.950693130493107 ], [ -76.273750305175781, -13.950693130493107 ], [ -76.273750305175781, -13.950139045715332 ], [ -76.274024963378849, -13.950139045715332 ], [ -76.274024963378849, -13.948748588562012 ], [ -76.274307250976506, -13.948748588562012 ], [ -76.274307250976506, -13.948471069335824 ], [ -76.274581909179631, -13.94847297668457 ], [ -76.274581909179631, -13.948195457458496 ], [ -76.274864196777287, -13.948195457458496 ], [ -76.274864196777287, -13.947639465332031 ], [ -76.275138854980469, -13.947639465332031 ], [ -76.275138854980469, -13.947360992431641 ], [ -76.275413513183594, -13.947360992431641 ], [ -76.275413513183594, -13.947083473205566 ], [ -76.27569580078125, -13.947083473205566 ], [ -76.27569580078125, -13.946526527404785 ], [ -76.275970458984375, -13.946526527404785 ], [ -76.275970458984375, -13.946257591247559 ], [ -76.276252746582031, -13.946250915527287 ], [ -76.276252746582031, -13.945924758911076 ], [ -76.276252746582031, -13.945417404174805 ], [ -76.276527404785156, -13.945417404174805 ], [ -76.276527404785156, -13.944582939147949 ], [ -76.276802062988281, -13.944582939147949 ], [ -76.276802062988281, -13.944304466247559 ], [ -76.277084350585824, -13.944304466247559 ], [ -76.277084350585824, -13.944025993347111 ], [ -76.277359008789006, -13.94402885437006 ], [ -76.277359008789006, -13.943751335143986 ], [ -76.277641296386662, -13.943751335143986 ], [ -76.277641296386662, -13.943470001220703 ], [ -76.277915954589787, -13.943472862243596 ], [ -76.277915954589787, -13.943195343017521 ], [ -76.278198242187443, -13.943195343017521 ], [ -76.278198242187443, -13.942915916442757 ], [ -76.278472900390625, -13.942915916442757 ], [ -76.278472900390625, -13.942082405090275 ], [ -76.27874755859375, -13.942082405090275 ], [ -76.27874755859375, -13.941806793212891 ], [ -76.279304504394531, -13.941806793212891 ], [ -76.279304504394531, -13.9415283203125 ], [ -76.279586791992188, -13.9415283203125 ], [ -76.279586791992188, -13.941249847412109 ], [ -76.279861450195312, -13.941249847412109 ], [ -76.279861450195312, -13.940972328186035 ], [ -76.280136108398324, -13.940972328186035 ], [ -76.280136108398324, -13.940693855285645 ], [ -76.280418395996037, -13.940693855285645 ], [ -76.280418395996037, -13.94041633605957 ], [ -76.280700683593693, -13.94041633605957 ], [ -76.281806945800781, -13.94041633605957 ], [ -76.281806945800781, -13.940693855285645 ], [ -76.282081604003906, -13.940693855285645 ], [ -76.282081604003906, -13.940972328186035 ], [ -76.282363891601562, -13.940972328186035 ], [ -76.282363891601562, -13.940693855285645 ], [ -76.282638549804688, -13.940693855285645 ], [ -76.282638549804688, -13.94041633605957 ], [ -76.282913208007812, -13.94041633605957 ], [ -76.282913208007812, -13.94013786315918 ], [ -76.283195495605469, -13.94013786315918 ], [ -76.283195495605469, -13.939860343932992 ], [ -76.283470153808537, -13.939860343932992 ], [ -76.283470153808537, -13.939583778381348 ], [ -76.283752441406193, -13.939583778381348 ], [ -76.283752441406193, -13.939306259155273 ], [ -76.284027099609318, -13.939306259155273 ], [ -76.284027099609318, -13.939027786254883 ], [ -76.284301757812443, -13.939027786254883 ], [ -76.284301757812443, -13.938750267028809 ], [ -76.284584045410099, -13.938750267028809 ], [ -76.284584045410099, -13.938471794128418 ], [ -76.284858703613281, -13.938471794128418 ], [ -76.284858703613281, -13.937915802001953 ], [ -76.285140991210938, -13.937915802001953 ], [ -76.285140991210938, -13.937359809875488 ], [ -76.285415649414062, -13.937359809875488 ], [ -76.285415649414062, -13.93708419799799 ], [ -76.285697937011719, -13.93708419799799 ], [ -76.285697937011719, -13.937359809875488 ], [ -76.286247253417969, -13.937359809875488 ], [ -76.286247253417969, -13.93708419799799 ], [ -76.286529541015625, -13.93708419799799 ], [ -76.286529541015625, -13.936805725097599 ], [ -76.286804199218693, -13.936805725097599 ], [ -76.286804199218693, -13.936528205871582 ], [ -76.287361145019474, -13.936528205871582 ], [ -76.287361145019474, -13.936249732971135 ], [ -76.287918090820312, -13.936249732971135 ], [ -76.287918090820312, -13.935970306396428 ], [ -76.288192749023438, -13.935972213745117 ], [ -76.288192749023438, -13.935693740844727 ], [ -76.288475036621094, -13.935693740844727 ], [ -76.288475036621094, -13.935137748718262 ], [ -76.288749694824219, -13.935137748718262 ], [ -76.288749694824219, -13.934860229492188 ], [ -76.289024353027344, -13.934862136840763 ], [ -76.289024353027344, -13.934583663940373 ], [ -76.288749694824219, -13.934583663940373 ], [ -76.288749694824219, -13.934304237365723 ], [ -76.289024353027344, -13.934306144714299 ], [ -76.289024353027344, -13.933916091918888 ], [ -76.289024353027344, -13.933748245239258 ], [ -76.289207458496094, -13.933750152587834 ], [ -76.289306640625, -13.933750152587834 ], [ -76.289306640625, -13.933471679687443 ], [ -76.289581298828125, -13.933471679687443 ], [ -76.289581298828125, -13.932915687560978 ], [ -76.289863586425668, -13.932915687560978 ], [ -76.289863586425668, -13.932638168334961 ], [ -76.290138244628849, -13.93264007568348 ], [ -76.290138244628849, -13.93235969543457 ], [ -76.290412902831974, -13.93235969543457 ], [ -76.290412902831974, -13.932081222534123 ], [ -76.291069030761662, -13.932084083557072 ], [ -76.291252136230469, -13.932081222534123 ], [ -76.291252136230469, -13.93235969543457 ], [ -76.291526794433594, -13.93235969543457 ], [ -76.291526794433594, -13.932915687560978 ], [ -76.293472290039006, -13.932915687560978 ], [ -76.293472290039006, -13.932638168334961 ], [ -76.293746948242131, -13.932638168334961 ], [ -76.293746948242131, -13.932081222534123 ], [ -76.294303894042969, -13.932081222534123 ], [ -76.294303894042969, -13.931528091430607 ], [ -76.294586181640625, -13.931528091430607 ], [ -76.294586181640625, -13.931026458740234 ], [ -76.29486083984375, -13.930972099304142 ], [ -76.29486083984375, -13.930298805236816 ], [ -76.29486083984375, -13.929583549499512 ], [ -76.295028686523438, -13.929583549499512 ], [ -76.295135498046875, -13.929583549499512 ], [ -76.295135498046875, -13.92902660369873 ], [ -76.295417785644531, -13.92902660369873 ], [ -76.295417785644531, -13.928193092346191 ], [ -76.295135498046875, -13.928193092346191 ], [ -76.295135498046875, -13.927916526794377 ], [ -76.295417785644531, -13.927916526794377 ], [ -76.295417785644531, -13.927637100219727 ], [ -76.294929504394531, -13.927639007568359 ], [ -76.294586181640625, -13.927639007568359 ], [ -76.294586181640625, -13.927360534667912 ], [ -76.294303894042969, -13.927360534667912 ], [ -76.294303894042969, -13.927083015441895 ], [ -76.294029235839787, -13.927083015441895 ], [ -76.294029235839787, -13.926804542541504 ], [ -76.29388427734375, -13.926804542541504 ], [ -76.293746948242131, -13.926804542541504 ], [ -76.293746948242131, -13.92652702331543 ], [ -76.293472290039006, -13.92652702331543 ], [ -76.292915344238168, -13.92652702331543 ], [ -76.292915344238168, -13.926251411437931 ], [ -76.2923583984375, -13.926251411437931 ], [ -76.2923583984375, -13.925695419311467 ], [ -76.292243957519474, -13.925695419311467 ], [ -76.292083740234375, -13.925695419311467 ], [ -76.292083740234375, -13.925583839416447 ], [ -76.292083740234375, -13.9254150390625 ], [ -76.291839599609318, -13.9254150390625 ], [ -76.291252136230469, -13.925416946411076 ], [ -76.291252136230469, -13.925018310546875 ], [ -76.291252136230469, -13.924859046936035 ], [ -76.290969848632812, -13.924860954284611 ], [ -76.290969848632812, -13.924583435058594 ], [ -76.290695190429631, -13.924583435058594 ], [ -76.290695190429631, -13.924304962158146 ], [ -76.290412902831974, -13.924304962158146 ], [ -76.290412902831974, -13.924130439758301 ], [ -76.290412902831974, -13.924027442932129 ], [ -76.290138244628849, -13.924027442932129 ], [ -76.290138244628849, -13.923748970031738 ], [ -76.289863586425668, -13.923748970031738 ], [ -76.289863586425668, -13.92347335815424 ], [ -76.289581298828125, -13.92347335815424 ], [ -76.289581298828125, -13.923194885253793 ], [ -76.289306640625, -13.923194885253793 ], [ -76.289306640625, -13.92236137390131 ], [ -76.289024353027344, -13.92236137390131 ], [ -76.289024353027344, -13.921895980834904 ], [ -76.289024353027344, -13.92097282409668 ], [ -76.288749694824219, -13.92097282409668 ], [ -76.288749694824219, -13.920416831970215 ], [ -76.288475036621094, -13.920416831970215 ], [ -76.288475036621094, -13.920139312744084 ], [ -76.288192749023438, -13.920139312744084 ], [ -76.288192749023438, -13.919860839843636 ], [ -76.288024902343693, -13.919860839843636 ], [ -76.287918090820312, -13.919860839843636 ], [ -76.287918090820312, -13.919714927673283 ], [ -76.287918090820312, -13.919583320617619 ], [ -76.287361145019474, -13.919583320617619 ], [ -76.287361145019474, -13.919306755065918 ], [ -76.287086486816349, -13.919306755065918 ], [ -76.287086486816349, -13.919027328491154 ], [ -76.286804199218693, -13.919027328491154 ], [ -76.286804199218693, -13.918750762939453 ], [ -76.286529541015625, -13.918750762939453 ], [ -76.286529541015625, -13.919027328491154 ], [ -76.286247253417969, -13.919027328491154 ], [ -76.286247253417969, -13.918750762939453 ], [ -76.285697937011719, -13.918750762939453 ], [ -76.285697937011719, -13.919027328491154 ], [ -76.285415649414062, -13.919027328491154 ], [ -76.285415649414062, -13.919306755065918 ], [ -76.284858703613281, -13.919306755065918 ], [ -76.284858703613281, -13.919027328491154 ], [ -76.284027099609318, -13.919027328491154 ], [ -76.284027099609318, -13.919306755065918 ], [ -76.283882141113281, -13.919306755065918 ], [ -76.283470153808537, -13.919306755065918 ], [ -76.283470153808537, -13.919027328491154 ], [ -76.283195495605469, -13.919027328491154 ], [ -76.283195495605469, -13.918750762939453 ], [ -76.283470153808537, -13.918750762939453 ], [ -76.283470153808537, -13.918473243713379 ], [ -76.283195495605469, -13.918473243713379 ], [ -76.283195495605469, -13.918194770812988 ], [ -76.282913208007812, -13.918194770812988 ], [ -76.282913208007812, -13.917917251586914 ], [ -76.282638549804688, -13.917917251586914 ], [ -76.282638549804688, -13.917638778686523 ], [ -76.282485961914006, -13.917638778686523 ], [ -76.282363891601562, -13.917638778686523 ], [ -76.282363891601562, -13.917084693908635 ], [ -76.282081604003906, -13.917084693908635 ], [ -76.282081604003906, -13.915694236755371 ], [ -76.281806945800781, -13.915694236755371 ], [ -76.281806945800781, -13.914742469787598 ], [ -76.281806945800781, -13.914582252502441 ], [ -76.282081604003906, -13.914582252502441 ], [ -76.282081604003906, -13.913749694824162 ], [ -76.281806945800781, -13.913749694824162 ], [ -76.281806945800781, -13.912083625793457 ], [ -76.282081604003906, -13.912083625793457 ], [ -76.282081604003906, -13.911250114440804 ], [ -76.282363891601562, -13.911250114440804 ], [ -76.282363891601562, -13.910694122314396 ], [ -76.282638549804688, -13.910694122314396 ], [ -76.282638549804688, -13.910138130187931 ], [ -76.282913208007812, -13.910138130187931 ], [ -76.282913208007812, -13.90986156463623 ], [ -76.283195495605469, -13.90986156463623 ], [ -76.283195495605469, -13.909582138061467 ], [ -76.283752441406193, -13.909584045410156 ], [ -76.283752441406193, -13.909305572509766 ], [ -76.284027099609318, -13.909305572509766 ], [ -76.284027099609318, -13.909028053283691 ], [ -76.284858703613281, -13.909028053283691 ], [ -76.284858703613281, -13.908749580383301 ], [ -76.285415649414062, -13.908749580383301 ], [ -76.285415649414062, -13.908472061157227 ], [ -76.285697937011719, -13.908472061157227 ], [ -76.285697937011719, -13.908193588256836 ], [ -76.28607177734375, -13.908193588256836 ], [ -76.286247253417969, -13.908193588256836 ], [ -76.286247253417969, -13.908472061157227 ], [ -76.286804199218693, -13.908472061157227 ], [ -76.286804199218693, -13.908193588256836 ], [ -76.287918090820312, -13.908193588256836 ], [ -76.287918090820312, -13.907916069030648 ], [ -76.288749694824219, -13.907917976379395 ], [ -76.288749694824219, -13.907637596130371 ], [ -76.289024353027344, -13.907637596130371 ], [ -76.289024353027344, -13.90736007690424 ], [ -76.289306640625, -13.90736198425293 ], [ -76.289306640625, -13.907084465026855 ], [ -76.290138244628849, -13.907084465026855 ], [ -76.290138244628849, -13.906805992126465 ], [ -76.290969848632812, -13.906805992126465 ], [ -76.290969848632812, -13.906528472900391 ], [ -76.291160583496094, -13.906528472900391 ], [ -76.29180908203125, -13.906528472900391 ], [ -76.29180908203125, -13.906805992126465 ], [ -76.292083740234375, -13.906805992126465 ], [ -76.292083740234375, -13.906528472900391 ], [ -76.2923583984375, -13.906528472900391 ], [ -76.2923583984375, -13.90625 ], [ -76.293197631835881, -13.90625 ], [ -76.293197631835881, -13.905971527099609 ], [ -76.293472290039006, -13.905971527099609 ], [ -76.293472290039006, -13.905702590942383 ], [ -76.294029235839787, -13.905694007873535 ], [ -76.294029235839787, -13.905415534973145 ], [ -76.294303894042969, -13.905415534973145 ], [ -76.294303894042969, -13.90513801574707 ], [ -76.29486083984375, -13.905139923095646 ], [ -76.29486083984375, -13.904862403869629 ], [ -76.295417785644531, -13.904862403869629 ], [ -76.295417785644531, -13.904581069946289 ], [ -76.295692443847656, -13.904581069946289 ], [ -76.295692443847656, -13.904862403869629 ], [ -76.295974731445312, -13.904862403869629 ], [ -76.295974731445312, -13.904306411743164 ], [ -76.296249389648381, -13.904306411743164 ], [ -76.296249389648381, -13.904027938842773 ], [ -76.296524047851506, -13.904027938842773 ], [ -76.296524047851506, -13.903470993041935 ], [ -76.296806335449162, -13.903470993041935 ], [ -76.296806335449162, -13.903193473815918 ], [ -76.296524047851506, -13.903193473815918 ], [ -76.296524047851506, -13.90263652801508 ], [ -76.296806335449162, -13.90263652801508 ], [ -76.296806335449162, -13.902359008789062 ], [ -76.297080993652287, -13.902361869811955 ], [ -76.297080993652287, -13.902083396911564 ], [ -76.296806335449162, -13.902083396911564 ], [ -76.296806335449162, -13.901527404785099 ], [ -76.297080993652287, -13.901527404785099 ], [ -76.297080993652287, -13.901248931884709 ], [ -76.297363281249943, -13.901248931884709 ], [ -76.297363281249943, -13.90069580078125 ], [ -76.297637939453125, -13.90069580078125 ], [ -76.297637939453125, -13.900138854980469 ], [ -76.297920227050781, -13.900138854980469 ], [ -76.297920227050781, -13.899305343627816 ], [ -76.298194885253906, -13.899305343627816 ], [ -76.298194885253906, -13.897360801696777 ], [ -76.297920227050781, -13.897360801696777 ], [ -76.297920227050781, -13.896248817443848 ], [ -76.297637939453125, -13.896248817443848 ], [ -76.297637939453125, -13.895415306091252 ], [ -76.297920227050781, -13.895415306091252 ], [ -76.297920227050781, -13.894861221313477 ], [ -76.297637939453125, -13.894861221313477 ], [ -76.297637939453125, -13.894582748413086 ], [ -76.297920227050781, -13.894582748413086 ], [ -76.297920227050781, -13.894305229187012 ], [ -76.298194885253906, -13.894305229187012 ], [ -76.298194885253906, -13.894026756286621 ], [ -76.298469543457031, -13.894026756286621 ], [ -76.298469543457031, -13.893749237060547 ], [ -76.298751831054688, -13.893751144409123 ], [ -76.298751831054688, -13.893472671508732 ], [ -76.299308776855469, -13.893472671508732 ], [ -76.299308776855469, -13.893193244934082 ], [ -76.305969238281193, -13.893193244934082 ], [ -76.305969238281193, -13.893472671508732 ], [ -76.306251525878849, -13.893472671508732 ], [ -76.306251525878849, -13.893751144409123 ], [ -76.306808471679631, -13.893751144409123 ], [ -76.306808471679631, -13.893472671508732 ], [ -76.308197021484375, -13.893472671508732 ], [ -76.308197021484375, -13.893751144409123 ], [ -76.309303283691349, -13.893749237060547 ], [ -76.309303283691349, -13.894026756286621 ], [ -76.310691833496094, -13.894026756286621 ], [ -76.310691833496094, -13.894305229187012 ], [ -76.31097412109375, -13.894305229187012 ], [ -76.31097412109375, -13.894026756286621 ], [ -76.311531066894531, -13.894026756286621 ], [ -76.311531066894531, -13.894305229187012 ], [ -76.311805725097656, -13.894305229187012 ], [ -76.311805725097656, -13.894861221313477 ], [ -76.311531066894531, -13.894861221313477 ], [ -76.311531066894531, -13.895415306091252 ], [ -76.310142517089787, -13.895415306091252 ], [ -76.310142517089787, -13.895694732665959 ], [ -76.309585571289006, -13.895694732665959 ], [ -76.309585571289006, -13.896529197692814 ], [ -76.309303283691349, -13.896527290344238 ], [ -76.309303283691349, -13.896804809570312 ], [ -76.309028625488224, -13.896804809570312 ], [ -76.309028625488224, -13.897083282470703 ], [ -76.309585571289006, -13.897083282470703 ], [ -76.309585571289006, -13.897360801696777 ], [ -76.309860229492131, -13.897360801696777 ], [ -76.309860229492131, -13.897639274597168 ], [ -76.31008148193348, -13.897639274597168 ], [ -76.310142517089787, -13.898195266723633 ], [ -76.310417175292969, -13.898195266723633 ], [ -76.310417175292969, -13.898477554321289 ], [ -76.310417175292969, -13.899026870727539 ], [ -76.310691833496094, -13.899026870727539 ], [ -76.310691833496094, -13.899305343627816 ], [ -76.31097412109375, -13.899305343627816 ], [ -76.31097412109375, -13.899026870727539 ], [ -76.311805725097656, -13.899026870727539 ], [ -76.311805725097656, -13.898751258850098 ], [ -76.312080383300724, -13.898751258850098 ], [ -76.312080383300724, -13.898470878600961 ], [ -76.312362670898381, -13.898470878600961 ], [ -76.312362670898381, -13.898195266723633 ], [ -76.314308166503906, -13.898195266723633 ], [ -76.314308166503906, -13.898470878600961 ], [ -76.314582824707031, -13.898470878600961 ], [ -76.314582824707031, -13.898751258850098 ], [ -76.314857482910156, -13.898751258850098 ], [ -76.314857482910156, -13.899026870727539 ], [ -76.315139770507812, -13.899026870727539 ], [ -76.315139770507812, -13.899305343627816 ], [ -76.315414428710881, -13.899305343627816 ], [ -76.315414428710881, -13.900138854980469 ], [ -76.314857482910156, -13.900138854980469 ], [ -76.314857482910156, -13.90069580078125 ], [ -76.315139770507812, -13.90069580078125 ], [ -76.315139770507812, -13.900971412658635 ], [ -76.315414428710881, -13.900971412658635 ], [ -76.315414428710881, -13.901527404785099 ], [ -76.315696716308537, -13.901527404785099 ], [ -76.315696716308537, -13.901671409606934 ], [ -76.315696716308537, -13.90263652801508 ], [ -76.315574645996094, -13.90263652801508 ], [ -76.315139770507812, -13.90263652801508 ], [ -76.315139770507812, -13.902359008789062 ], [ -76.314857482910156, -13.902359008789062 ], [ -76.314857482910156, -13.90263652801508 ], [ -76.314582824707031, -13.90263652801508 ], [ -76.314582824707031, -13.90291786193842 ], [ -76.314308166503906, -13.902915000915527 ], [ -76.314308166503906, -13.903470993041935 ], [ -76.314582824707031, -13.903470993041935 ], [ -76.314582824707031, -13.904027938842773 ], [ -76.314857482910156, -13.904027938842773 ], [ -76.314857482910156, -13.904306411743164 ], [ -76.315139770507812, -13.904306411743164 ], [ -76.315139770507812, -13.904583930969238 ], [ -76.315414428710881, -13.904581069946289 ], [ -76.315414428710881, -13.904862403869629 ], [ -76.3165283203125, -13.904862403869629 ], [ -76.3165283203125, -13.905139923095646 ], [ -76.316879272460938, -13.90513801574707 ], [ -76.317085266113281, -13.90513801574707 ], [ -76.317085266113281, -13.905404090881348 ], [ -76.317085266113281, -13.909028053283691 ], [ -76.316802978515625, -13.909028053283691 ], [ -76.316802978515625, -13.909305572509766 ], [ -76.3165283203125, -13.909305572509766 ], [ -76.3165283203125, -13.90986156463623 ], [ -76.316253662109318, -13.90986156463623 ], [ -76.316253662109318, -13.910138130187931 ], [ -76.3165283203125, -13.910138130187931 ], [ -76.3165283203125, -13.910694122314396 ], [ -76.316802978515625, -13.910694122314396 ], [ -76.316802978515625, -13.910971641540527 ], [ -76.317085266113281, -13.910971641540527 ], [ -76.317085266113281, -13.911250114440804 ], [ -76.317359924316406, -13.911250114440804 ], [ -76.317359924316406, -13.912360191345158 ], [ -76.317085266113281, -13.912360191345158 ], [ -76.317085266113281, -13.912922859191781 ], [ -76.317085266113281, -13.913193702697697 ], [ -76.316802978515625, -13.913193702697697 ], [ -76.316802978515625, -13.913472175598088 ], [ -76.316627502441349, -13.913472175598088 ], [ -76.316253662109318, -13.913472175598088 ], [ -76.316253662109318, -13.913193702697697 ], [ -76.315696716308537, -13.913193702697697 ], [ -76.315696716308537, -13.913749694824162 ], [ -76.315414428710881, -13.913749694824162 ], [ -76.315414428710881, -13.914582252502441 ], [ -76.315139770507812, -13.914582252502441 ], [ -76.315139770507812, -13.915415763854924 ], [ -76.315414428710881, -13.915415763854924 ], [ -76.315414428710881, -13.916251182556152 ], [ -76.315696716308537, -13.916248321533203 ], [ -76.315696716308537, -13.916528701782227 ], [ -76.315414428710881, -13.916528701782227 ], [ -76.315414428710881, -13.916804313659668 ], [ -76.315696716308537, -13.916804313659668 ], [ -76.315696716308537, -13.917361259460449 ], [ -76.315971374511662, -13.917361259460449 ], [ -76.315971374511662, -13.917638778686523 ], [ -76.316802978515625, -13.917638778686523 ], [ -76.316802978515625, -13.917917251586914 ], [ -76.317085266113281, -13.917917251586914 ], [ -76.317085266113281, -13.917638778686523 ], [ -76.317642211914062, -13.917638778686523 ], [ -76.317642211914062, -13.917361259460449 ], [ -76.318473815917855, -13.917361259460449 ], [ -76.318473815917855, -13.917084693908635 ], [ -76.319030761718693, -13.917084693908635 ], [ -76.319030761718693, -13.917361259460449 ], [ -76.319580078125, -13.917361259460449 ], [ -76.319580078125, -13.917638778686523 ], [ -76.319862365722656, -13.917638778686523 ], [ -76.319862365722656, -13.918194770812988 ], [ -76.320137023925781, -13.918194770812988 ], [ -76.320137023925781, -13.918473243713379 ], [ -76.320419311523438, -13.918473243713379 ], [ -76.320419311523438, -13.918750762939453 ], [ -76.320693969726562, -13.918750762939453 ], [ -76.320693969726562, -13.919583320617619 ], [ -76.320968627929688, -13.919583320617619 ], [ -76.320968627929688, -13.920139312744084 ], [ -76.321525573730355, -13.920139312744084 ], [ -76.321525573730355, -13.920416831970215 ], [ -76.322082519531193, -13.920416831970215 ], [ -76.322082519531193, -13.920139312744084 ], [ -76.322364807128849, -13.920139312744084 ], [ -76.322364807128849, -13.919860839843636 ], [ -76.323471069335938, -13.919860839843636 ], [ -76.323471069335938, -13.920139312744084 ], [ -76.323753356933594, -13.920139312744084 ], [ -76.323753356933594, -13.920695304870492 ], [ -76.324028015136719, -13.920695304870492 ], [ -76.324028015136719, -13.92097282409668 ], [ -76.324302673339844, -13.92097282409668 ], [ -76.324302673339844, -13.92125129699707 ], [ -76.3245849609375, -13.92125129699707 ], [ -76.3245849609375, -13.921526908874455 ], [ -76.324859619140568, -13.921526908874455 ], [ -76.324859619140568, -13.921805381774846 ], [ -76.325141906738224, -13.921805381774846 ], [ -76.325141906738224, -13.92208290100092 ], [ -76.325416564941349, -13.92208290100092 ], [ -76.325416564941349, -13.922638893127385 ], [ -76.325141906738224, -13.922638893127385 ], [ -76.325141906738224, -13.922917366027775 ], [ -76.325691223144474, -13.922917366027775 ], [ -76.325691223144474, -13.92347335815424 ], [ -76.326248168945312, -13.92347335815424 ], [ -76.326248168945312, -13.923748970031738 ], [ -76.326530456542969, -13.923748970031738 ], [ -76.326530456542969, -13.924027442932129 ], [ -76.326805114746094, -13.924027442932129 ], [ -76.326805114746094, -13.924304962158146 ], [ -76.327079772949219, -13.924304962158146 ], [ -76.327079772949219, -13.925139427185002 ], [ -76.328193664550724, -13.925139427185002 ], [ -76.328193664550724, -13.925416946411076 ], [ -76.329025268554631, -13.9254150390625 ], [ -76.329025268554631, -13.925695419311467 ], [ -76.328750610351506, -13.925695419311467 ], [ -76.328750610351506, -13.925971031188965 ], [ -76.329025268554631, -13.925971031188965 ], [ -76.329025268554631, -13.926804542541504 ], [ -76.329307556152344, -13.926804542541504 ], [ -76.329307556152344, -13.927083015441895 ], [ -76.329582214355469, -13.927083015441895 ], [ -76.329582214355469, -13.926804542541504 ], [ -76.330696105957031, -13.926804542541504 ], [ -76.330696105957031, -13.92652702331543 ], [ -76.330970764160156, -13.92652702331543 ], [ -76.330970764160156, -13.926251411437931 ], [ -76.331253051757699, -13.926251411437931 ], [ -76.331253051757699, -13.925139427185002 ], [ -76.331527709960881, -13.925139427185002 ], [ -76.331527709960881, -13.924304962158146 ], [ -76.331802368164006, -13.924304962158146 ], [ -76.331802368164006, -13.923194885253793 ], [ -76.332359313964844, -13.923194885253793 ], [ -76.332359313964844, -13.922917366027775 ], [ -76.332916259765625, -13.922917366027775 ], [ -76.332916259765625, -13.921805381774846 ], [ -76.33319091796875, -13.921805381774846 ], [ -76.33319091796875, -13.921526908874455 ], [ -76.333473205566406, -13.921526908874455 ], [ -76.333473205566406, -13.920695304870492 ], [ -76.333747863769531, -13.920695304870492 ], [ -76.333747863769531, -13.919860839843636 ], [ -76.334030151367188, -13.919860839843636 ], [ -76.334030151367188, -13.918750762939453 ], [ -76.334304809570199, -13.918750762939453 ], [ -76.334304809570199, -13.918194770812988 ], [ -76.334587097167912, -13.918194770812988 ], [ -76.334587097167912, -13.917917251586914 ], [ -76.334861755371037, -13.917917251586914 ], [ -76.334861755371037, -13.917361259460449 ], [ -76.335136413574162, -13.917361259460449 ], [ -76.335136413574162, -13.917084693908635 ], [ -76.335418701171818, -13.917084693908635 ], [ -76.335418701171818, -13.916804313659668 ], [ -76.336250305175781, -13.916804313659668 ], [ -76.336250305175781, -13.916528701782227 ], [ -76.336807250976562, -13.916528701782227 ], [ -76.336807250976562, -13.916248321533203 ], [ -76.337081909179688, -13.916248321533203 ], [ -76.337081909179688, -13.916528701782227 ], [ -76.338752746581974, -13.916528701782227 ], [ -76.338752746581974, -13.916248321533203 ], [ -76.339302062988281, -13.916251182556152 ], [ -76.339302062988281, -13.915972709655762 ], [ -76.341247558593693, -13.915972709655762 ], [ -76.341247558593693, -13.915694236755371 ], [ -76.342361450195312, -13.915694236755371 ], [ -76.342361450195312, -13.915415763854924 ], [ -76.342918395996094, -13.915415763854924 ], [ -76.342918395996094, -13.915694236755371 ], [ -76.345138549804688, -13.915694236755371 ], [ -76.345138549804688, -13.915972709655762 ], [ -76.345413208007812, -13.915972709655762 ], [ -76.345413208007812, -13.916528701782227 ], [ -76.345970153808594, -13.916528701782227 ], [ -76.345970153808594, -13.916804313659668 ], [ -76.346527099609375, -13.916804313659668 ], [ -76.346527099609375, -13.917361259460449 ], [ -76.3468017578125, -13.917361259460449 ], [ -76.3468017578125, -13.917917251586914 ], [ -76.347084045410043, -13.917917251586914 ], [ -76.347084045410043, -13.918194770812988 ], [ -76.347358703613224, -13.918194770812988 ], [ -76.347358703613224, -13.918750762939453 ], [ -76.347640991210881, -13.918750762939453 ], [ -76.347640991210881, -13.919027328491154 ], [ -76.347915649414006, -13.919027328491154 ], [ -76.347915649414006, -13.919583320617619 ], [ -76.348197937011662, -13.919583320617619 ], [ -76.348197937011662, -13.919860839843636 ], [ -76.348472595214844, -13.919860839843636 ], [ -76.348472595214844, -13.920416831970215 ], [ -76.348747253417969, -13.920416831970215 ], [ -76.348747253417969, -13.920695304870492 ], [ -76.349029541015625, -13.920695304870492 ], [ -76.349029541015625, -13.92097282409668 ], [ -76.34930419921875, -13.92097282409668 ], [ -76.34930419921875, -13.92125129699707 ], [ -76.349586486816406, -13.92125129699707 ], [ -76.349586486816406, -13.921526908874455 ], [ -76.350135803222543, -13.921526908874455 ], [ -76.350135803222543, -13.921805381774846 ], [ -76.350692749023381, -13.921805381774846 ], [ -76.350692749023381, -13.921526908874455 ], [ -76.350975036621037, -13.921526908874455 ], [ -76.350975036621037, -13.921805381774846 ], [ -76.351249694824162, -13.921805381774846 ], [ -76.351249694824162, -13.92236137390131 ], [ -76.351524353027344, -13.92236137390131 ], [ -76.351524353027344, -13.921805381774846 ], [ -76.351806640625, -13.921805381774846 ], [ -76.351806640625, -13.921526908874455 ], [ -76.352363586425781, -13.921526908874455 ], [ -76.352363586425781, -13.92125129699707 ], [ -76.352638244628906, -13.92125129699707 ], [ -76.352638244628906, -13.92097282409668 ], [ -76.352760314941406, -13.92097282409668 ], [ -76.353195190429688, -13.92097282409668 ], [ -76.353195190429688, -13.920695304870492 ], [ -76.3533935546875, -13.920695304870492 ], [ -76.353752136230412, -13.920695304870492 ], [ -76.353752136230412, -13.920535087585449 ], [ -76.353752136230412, -13.920416831970215 ], [ -76.354026794433537, -13.920416831970215 ], [ -76.354026794433537, -13.920695304870492 ], [ -76.354309082031193, -13.920695304870492 ], [ -76.354309082031193, -13.921805381774846 ], [ -76.3548583984375, -13.921805381774846 ], [ -76.3548583984375, -13.92208290100092 ], [ -76.355072021484318, -13.92208290100092 ], [ -76.355140686035156, -13.92236137390131 ], [ -76.356246948242188, -13.92236137390131 ], [ -76.356246948242188, -13.92224216461176 ], [ -76.356246948242188, -13.92208290100092 ], [ -76.357086181640568, -13.92208290100092 ], [ -76.357086181640568, -13.921805381774846 ], [ -76.357360839843693, -13.921805381774846 ], [ -76.357360839843693, -13.92125129699707 ], [ -76.357917785644531, -13.92125129699707 ], [ -76.357917785644531, -13.92097282409668 ], [ -76.358192443847656, -13.92097282409668 ], [ -76.358192443847656, -13.920695304870492 ], [ -76.358749389648438, -13.920695304870492 ], [ -76.358749389648438, -13.920416831970215 ], [ -76.359024047851562, -13.920416831970215 ], [ -76.359024047851562, -13.920139312744084 ], [ -76.359580993652344, -13.920139312744084 ], [ -76.359580993652344, -13.920416831970215 ], [ -76.359741210937443, -13.920416831970215 ], [ -76.359863281249886, -13.920416831970215 ], [ -76.359863281249886, -13.920282363891545 ], [ -76.359863281249886, -13.917638778686523 ], [ -76.359580993652344, -13.917638778686523 ], [ -76.359580993652344, -13.917084693908635 ], [ -76.359306335449219, -13.917084693908635 ], [ -76.359306335449219, -13.916528701782227 ], [ -76.359024047851562, -13.916528701782227 ], [ -76.359024047851562, -13.916248321533203 ], [ -76.359306335449219, -13.916251182556152 ], [ -76.359306335449219, -13.915972709655762 ], [ -76.359786987304688, -13.915972709655762 ], [ -76.360420227050724, -13.915972709655762 ], [ -76.360420227050724, -13.916251182556152 ], [ -76.360969543457031, -13.916251182556152 ], [ -76.360969543457031, -13.915972709655762 ], [ -76.361251831054688, -13.915972709655762 ], [ -76.361251831054688, -13.915694236755371 ], [ -76.361526489257812, -13.915694236755371 ], [ -76.361526489257812, -13.915415763854924 ], [ -76.362358093261719, -13.915415763854924 ], [ -76.362358093261719, -13.915138244628906 ], [ -76.362640380859375, -13.915138244628906 ], [ -76.362640380859375, -13.914859771728516 ], [ -76.363471984863224, -13.914859771728516 ], [ -76.363471984863224, -13.914582252502441 ], [ -76.364028930664006, -13.914582252502441 ], [ -76.364028930664006, -13.914306640624943 ], [ -76.364585876464844, -13.914306640624943 ], [ -76.364585876464844, -13.914028167724553 ], [ -76.365135192871094, -13.914028167724553 ], [ -76.365135192871094, -13.913749694824162 ], [ -76.365692138671875, -13.913749694824162 ], [ -76.365692138671875, -13.913472175598088 ], [ -76.365974426269531, -13.913472175598088 ], [ -76.365974426269531, -13.913193702697697 ], [ -76.368194580078125, -13.913193702697697 ], [ -76.368194580078125, -13.912916183471623 ], [ -76.36846923828125, -13.912916183471623 ], [ -76.36846923828125, -13.912637710571232 ], [ -76.368751525878906, -13.912637710571232 ], [ -76.368751525878906, -13.912360191345158 ], [ -76.370140075683537, -13.912360191345158 ], [ -76.370140075683537, -13.912083625793457 ], [ -76.370414733886662, -13.912083625793457 ], [ -76.370414733886662, -13.91180419921875 ], [ -76.371246337890625, -13.91180419921875 ], [ -76.371246337890625, -13.912083625793457 ], [ -76.371803283691406, -13.912083625793457 ], [ -76.371803283691406, -13.911527633666992 ], [ -76.372085571289062, -13.911527633666992 ], [ -76.372085571289062, -13.911250114440804 ], [ -76.373191833496037, -13.911250114440804 ], [ -76.373191833496037, -13.910971641540527 ], [ -76.373474121093693, -13.910971641540527 ], [ -76.373474121093693, -13.910694122314396 ], [ -76.373191833496037, -13.910694122314396 ], [ -76.373191833496037, -13.910162925720215 ], [ -76.373474121093693, -13.910138130187931 ], [ -76.373474121093693, -13.90986156463623 ], [ -76.374862670898438, -13.90986156463623 ], [ -76.374862670898438, -13.910694122314396 ], [ -76.375137329101562, -13.910694122314396 ], [ -76.375137329101562, -13.910971641540527 ], [ -76.375419616699219, -13.910971641540527 ], [ -76.375419616699219, -13.910694122314396 ], [ -76.37569427490223, -13.910694122314396 ], [ -76.37569427490223, -13.910971641540527 ], [ -76.375968933105412, -13.910971641540527 ], [ -76.375968933105412, -13.910694122314396 ], [ -76.376251220703068, -13.910694122314396 ], [ -76.376251220703068, -13.910518646240234 ], [ -76.376251220703068, -13.910415649413949 ], [ -76.376083374023438, -13.910415649413949 ], [ -76.375968933105412, -13.910415649413949 ], [ -76.375968933105412, -13.910138130187931 ], [ -76.376251220703068, -13.910138130187931 ], [ -76.376251220703068, -13.90986156463623 ], [ -76.376808166503849, -13.90986156463623 ], [ -76.376808166503849, -13.910023689269963 ], [ -76.376808166503849, -13.910415649413949 ], [ -76.377082824707031, -13.910415649413949 ], [ -76.377082824707031, -13.910694122314396 ], [ -76.377357482910156, -13.910694122314396 ], [ -76.377357482910156, -13.910971641540527 ], [ -76.377639770507812, -13.910971641540527 ], [ -76.377639770507812, -13.911250114440804 ], [ -76.378196716308594, -13.911250114440804 ], [ -76.378196716308594, -13.910971641540527 ], [ -76.378753662109375, -13.910971641540527 ], [ -76.3787841796875, -13.910751342773438 ], [ -76.378883361816406, -13.910694122314396 ], [ -76.379302978515568, -13.910694122314396 ], [ -76.379302978515568, -13.910415649413949 ], [ -76.380416870117188, -13.910415649413949 ], [ -76.380416870117188, -13.910694122314396 ], [ -76.38153076171875, -13.910694122314396 ], [ -76.38153076171875, -13.910415649413949 ], [ -76.381805419921875, -13.910415649413949 ], [ -76.381805419921875, -13.910138130187931 ], [ -76.382080078124943, -13.910138130187931 ], [ -76.382080078124943, -13.90986156463623 ], [ -76.382362365722599, -13.90986156463623 ], [ -76.382362365722599, -13.909582138061467 ], [ -76.382637023925724, -13.909584045410156 ], [ -76.382637023925724, -13.909305572509766 ], [ -76.38458251953125, -13.909305572509766 ], [ -76.38458251953125, -13.909584045410156 ], [ -76.386253356933537, -13.909584045410156 ], [ -76.386253356933537, -13.909305572509766 ], [ -76.388473510742074, -13.909305572509766 ], [ -76.388473510742074, -13.909028053283691 ], [ -76.389579772949219, -13.909028053283691 ], [ -76.389579772949219, -13.909582138061467 ], [ -76.390419006347656, -13.909582138061467 ], [ -76.390419006347656, -13.90986156463623 ], [ -76.390975952148438, -13.90986156463623 ], [ -76.390975952148438, -13.910138130187931 ], [ -76.392082214355412, -13.910138130187931 ], [ -76.392082214355412, -13.90986156463623 ], [ -76.392639160156193, -13.90986156463623 ], [ -76.392639160156193, -13.909582138061467 ], [ -76.393196105957031, -13.909584045410156 ], [ -76.393196105957031, -13.909305572509766 ], [ -76.393753051757812, -13.909305572509766 ], [ -76.393753051757812, -13.909028053283691 ], [ -76.394859313964787, -13.909028053283691 ], [ -76.394859313964787, -13.909305572509766 ], [ -76.395416259765568, -13.909305572509766 ], [ -76.395416259765568, -13.908749580383301 ], [ -76.395690917968693, -13.908749580383301 ], [ -76.395690917968693, -13.908462524414062 ], [ -76.395690917968693, -13.908193588256836 ], [ -76.395416259765568, -13.908193588256836 ], [ -76.395416259765568, -13.907637596130371 ], [ -76.395690917968693, -13.907637596130371 ], [ -76.395690917968693, -13.906528472900391 ], [ -76.395973205566349, -13.906528472900391 ], [ -76.395973205566349, -13.90625 ], [ -76.396102905273324, -13.90625 ], [ -76.396247863769531, -13.90625 ], [ -76.396247863769531, -13.905694007873535 ], [ -76.3961181640625, -13.905694007873535 ], [ -76.395973205566349, -13.905694007873535 ], [ -76.395973205566349, -13.905415534973145 ], [ -76.395690917968693, -13.905415534973145 ], [ -76.395690917968693, -13.90513801574707 ], [ -76.395973205566349, -13.905139923095646 ], [ -76.395973205566349, -13.904306411743164 ], [ -76.395690917968693, -13.904306411743164 ], [ -76.395690917968693, -13.903470993041935 ], [ -76.394859313964787, -13.903470993041935 ], [ -76.394859313964787, -13.902915000915527 ], [ -76.395141601562443, -13.902915000915527 ], [ -76.395141601562443, -13.902359008789062 ], [ -76.394859313964787, -13.902361869811955 ], [ -76.394859313964787, -13.899305343627816 ], [ -76.394584655761719, -13.899305343627816 ], [ -76.394584655761719, -13.897639274597168 ], [ -76.394302368164062, -13.897639274597168 ], [ -76.394302368164062, -13.897083282470703 ], [ -76.394027709960938, -13.897083282470703 ], [ -76.394027709960938, -13.896804809570312 ], [ -76.394302368164062, -13.896804809570312 ], [ -76.394302368164062, -13.896248817443848 ], [ -76.394454956054631, -13.896248817443848 ], [ -76.394584655761719, -13.896248817443848 ], [ -76.394584655761719, -13.895138740539551 ], [ -76.394859313964787, -13.895138740539551 ], [ -76.394859313964787, -13.894582748413086 ], [ -76.395141601562443, -13.894582748413086 ], [ -76.395141601562443, -13.893749237060547 ], [ -76.395416259765568, -13.893749237060547 ], [ -76.395416259765568, -13.893193244934082 ], [ -76.397087097167969, -13.893195152282658 ], [ -76.397087097167969, -13.892916679382267 ], [ -76.397361755371094, -13.892916679382267 ], [ -76.397361755371094, -13.89263916015625 ], [ -76.398475646972599, -13.89263916015625 ], [ -76.398475646972599, -13.892360687255803 ], [ -76.398193359374943, -13.892360687255803 ], [ -76.398193359374943, -13.891804695129395 ], [ -76.397636413574219, -13.891804695129395 ], [ -76.397636413574219, -13.89152717590332 ], [ -76.397361755371094, -13.891529083251896 ], [ -76.397361755371094, -13.891250610351449 ], [ -76.396804809570312, -13.891250610351449 ], [ -76.396804809570312, -13.890694618225041 ], [ -76.395973205566349, -13.890694618225041 ], [ -76.395973205566349, -13.890417098998967 ], [ -76.395141601562443, -13.890417098998967 ], [ -76.395141601562443, -13.889860153198185 ], [ -76.394859313964787, -13.889860153198185 ], [ -76.394859313964787, -13.889028549194336 ], [ -76.394584655761719, -13.889028549194336 ], [ -76.394584655761719, -13.888748168945256 ], [ -76.394302368164062, -13.888748168945256 ], [ -76.394302368164062, -13.888192176818791 ], [ -76.394027709960938, -13.88819408416748 ], [ -76.394027709960938, -13.88791561126709 ], [ -76.393753051757812, -13.88791561126709 ], [ -76.393753051757812, -13.887363433837891 ], [ -76.393196105957031, -13.887363433837891 ], [ -76.393196105957031, -13.886526107787972 ], [ -76.392364501953068, -13.886526107787972 ], [ -76.392364501953068, -13.885970115661564 ], [ -76.392082214355412, -13.885972023010254 ], [ -76.392082214355412, -13.88499927520752 ], [ -76.392082214355412, -13.884860038757324 ], [ -76.392364501953068, -13.884860038757324 ], [ -76.392364501953068, -13.884304046630859 ], [ -76.392066955566349, -13.884305953979435 ], [ -76.391807556152287, -13.884305953979435 ], [ -76.391807556152287, -13.884028434753418 ], [ -76.391525268554574, -13.884028434753418 ], [ -76.391525268554574, -13.883472442626953 ], [ -76.391807556152287, -13.883472442626953 ], [ -76.391807556152287, -13.883193969726562 ], [ -76.391250610351562, -13.883193969726562 ], [ -76.391250610351562, -13.882916450500488 ], [ -76.390975952148438, -13.882916450500488 ], [ -76.390975952148438, -13.881527900695744 ], [ -76.391250610351562, -13.881527900695744 ], [ -76.391250610351562, -13.880694389343262 ], [ -76.390975952148438, -13.880694389343262 ], [ -76.390975952148438, -13.880415916442814 ], [ -76.390693664550781, -13.880415916442814 ], [ -76.390693664550781, -13.878195762634277 ], [ -76.390419006347656, -13.878195762634277 ], [ -76.390419006347656, -13.877362251281738 ], [ -76.389862060546875, -13.877362251281738 ], [ -76.389862060546875, -13.875575065612736 ], [ -76.389862060546875, -13.875417709350586 ], [ -76.389579772949219, -13.875417709350586 ], [ -76.389579772949219, -13.874861717224121 ], [ -76.389694213867131, -13.874861717224121 ], [ -76.389862060546875, -13.874861717224121 ], [ -76.389862060546875, -13.872359275817871 ], [ -76.39013671875, -13.872359275817871 ], [ -76.39013671875, -13.871803283691406 ], [ -76.389862060546875, -13.871805191039982 ], [ -76.389862060546875, -13.871101379394474 ], [ -76.389862060546875, -13.870416641235352 ], [ -76.389579772949219, -13.870416641235352 ], [ -76.389579772949219, -13.869027137756291 ], [ -76.389862060546875, -13.86902904510498 ], [ -76.389862060546875, -13.8687486648559 ], [ -76.390419006347656, -13.8687486648559 ], [ -76.390419006347656, -13.868471145629826 ], [ -76.39013671875, -13.868471145629826 ], [ -76.39013671875, -13.867917060852051 ], [ -76.390419006347656, -13.867917060852051 ], [ -76.390419006347656, -13.866526603698617 ], [ -76.390693664550781, -13.866526603698617 ], [ -76.390693664550781, -13.865973472595215 ], [ -76.390419006347656, -13.865973472595215 ], [ -76.390419006347656, -13.865416526794434 ], [ -76.390251159667912, -13.865416526794434 ], [ -76.39013671875, -13.865416526794434 ], [ -76.39013671875, -13.864583015441895 ], [ -76.390243530273438, -13.864583015441895 ], [ -76.390419006347656, -13.864583015441895 ], [ -76.390419006347656, -13.864229202270508 ], [ -76.390419006347656, -13.862360000610352 ], [ -76.390586853027344, -13.862360000610352 ], [ -76.390693664550781, -13.862360000610352 ], [ -76.390693664550781, -13.862081527709904 ], [ -76.390419006347656, -13.862081527709904 ], [ -76.390419006347656, -13.861804008483887 ], [ -76.39013671875, -13.861806869506779 ], [ -76.39013671875, -13.861529350280705 ], [ -76.389862060546875, -13.861529350280705 ], [ -76.389862060546875, -13.861248016357422 ], [ -76.389579772949219, -13.861250877380314 ], [ -76.389579772949219, -13.860972404479924 ], [ -76.389305114746037, -13.860972404479924 ], [ -76.389305114746037, -13.860416412353459 ], [ -76.389030456542912, -13.860416412353459 ], [ -76.389030456542912, -13.859581947326603 ], [ -76.388748168945256, -13.859581947326603 ], [ -76.388748168945256, -13.858471870422363 ], [ -76.388473510742074, -13.858471870422363 ], [ -76.388473510742074, -13.856805801391602 ], [ -76.388191223144531, -13.856805801391602 ], [ -76.388191223144531, -13.855972290039062 ], [ -76.387916564941406, -13.855972290039062 ], [ -76.387916564941406, -13.855137825012207 ], [ -76.387359619140625, -13.855137825012207 ], [ -76.387359619140625, -13.854860305786076 ], [ -76.3870849609375, -13.854862213134766 ], [ -76.3870849609375, -13.854306221008301 ], [ -76.387359619140625, -13.854306221008301 ], [ -76.387359619140625, -13.853050231933594 ], [ -76.387359619140625, -13.852638244628906 ], [ -76.387466430664062, -13.852640151977482 ], [ -76.387641906738281, -13.852638244628906 ], [ -76.387641906738281, -13.852082252502441 ], [ -76.387496948242131, -13.852082252502441 ], [ -76.387359619140625, -13.852084159851074 ], [ -76.387359619140625, -13.851805686950627 ], [ -76.387359619140625, -13.851528167724609 ], [ -76.387222290039006, -13.851528167724609 ], [ -76.386802673339844, -13.851528167724609 ], [ -76.386802673339844, -13.850688934326115 ], [ -76.386802673339844, -13.8495836257934 ], [ -76.3870849609375, -13.8495836257934 ], [ -76.3870849609375, -13.849303245544434 ], [ -76.386802673339844, -13.849306106567326 ], [ -76.386802673339844, -13.84847354888916 ], [ -76.386528015136719, -13.84847354888916 ], [ -76.386528015136719, -13.847953796386605 ], [ -76.386528015136719, -13.846527099609375 ], [ -76.386253356933537, -13.846527099609375 ], [ -76.386253356933537, -13.846248626708984 ], [ -76.385971069335881, -13.846248626708984 ], [ -76.385971069335881, -13.844305038452148 ], [ -76.385696411132756, -13.844305038452148 ], [ -76.385696411132756, -13.844026565551758 ], [ -76.385414123535099, -13.844026565551758 ], [ -76.385414123535099, -13.843749046325684 ], [ -76.385139465332031, -13.843749046325684 ], [ -76.385139465332031, -13.843473434448242 ], [ -76.384864807128906, -13.843473434448242 ], [ -76.384864807128906, -13.843193054199219 ], [ -76.38458251953125, -13.843193054199219 ], [ -76.38458251953125, -13.842917442321777 ], [ -76.384307861328125, -13.842917442321777 ], [ -76.384307861328125, -13.842361450195312 ], [ -76.383750915527344, -13.842361450195312 ], [ -76.383750915527344, -13.842082977294922 ], [ -76.382919311523381, -13.842082977294922 ], [ -76.382919311523381, -13.841526985168457 ], [ -76.382637023925724, -13.841526985168457 ], [ -76.382637023925724, -13.840695381164494 ], [ -76.382362365722599, -13.840695381164494 ], [ -76.382362365722599, -13.840416908264103 ], [ -76.382080078124943, -13.840416908264103 ], [ -76.382080078124943, -13.840139389038086 ], [ -76.381805419921875, -13.840139389038086 ], [ -76.381805419921875, -13.839583396911621 ], [ -76.38153076171875, -13.839583396911621 ], [ -76.38153076171875, -13.839306831359863 ], [ -76.380973815917969, -13.839306831359863 ], [ -76.380973815917969, -13.839027404785156 ], [ -76.380691528320312, -13.839027404785156 ], [ -76.380691528320312, -13.838473320007267 ], [ -76.380142211914006, -13.838473320007267 ], [ -76.380142211914006, -13.838194847106877 ], [ -76.380416870117188, -13.838194847106877 ], [ -76.380416870117188, -13.837638854980412 ], [ -76.380142211914006, -13.837638854980412 ], [ -76.380142211914006, -13.837361335754338 ], [ -76.380416870117188, -13.837361335754338 ], [ -76.380416870117188, -13.83642387390131 ], [ -76.380416870117188, -13.836251258850098 ], [ -76.380142211914006, -13.836251258850098 ], [ -76.380142211914006, -13.835972785949707 ], [ -76.379859924316349, -13.835972785949707 ], [ -76.379859924316349, -13.835695266723519 ], [ -76.379585266113224, -13.835695266723519 ], [ -76.379585266113224, -13.835416793823242 ], [ -76.378753662109375, -13.835416793823242 ], [ -76.378753662109375, -13.834859848022461 ], [ -76.378471374511719, -13.834859848022461 ], [ -76.378471374511719, -13.834582328796387 ], [ -76.378753662109375, -13.834582328796387 ], [ -76.378753662109375, -13.83439826965332 ], [ -76.378753662109375, -13.834026336669808 ], [ -76.379028320312443, -13.834029197692871 ], [ -76.379028320312443, -13.83347225189209 ], [ -76.378753662109375, -13.83347225189209 ], [ -76.378753662109375, -13.833193778991699 ], [ -76.378196716308594, -13.833193778991699 ], [ -76.378196716308594, -13.832916259765625 ], [ -76.377082824707031, -13.832916259765625 ], [ -76.377082824707031, -13.833193778991699 ], [ -76.376808166503849, -13.833193778991699 ], [ -76.376808166503849, -13.83347225189209 ], [ -76.376525878906193, -13.83347225189209 ], [ -76.376525878906193, -13.833193778991699 ], [ -76.375968933105412, -13.833193778991699 ], [ -76.375968933105412, -13.832916259765625 ], [ -76.374862670898438, -13.832916259765625 ], [ -76.374862670898438, -13.832637786865234 ], [ -76.374031066894531, -13.832637786865234 ], [ -76.374031066894531, -13.83236026763916 ], [ -76.373191833496037, -13.83236026763916 ], [ -76.373191833496037, -13.832637786865234 ], [ -76.37264251708973, -13.832637786865234 ], [ -76.37264251708973, -13.83236026763916 ], [ -76.371528625488281, -13.83236026763916 ], [ -76.371528625488281, -13.832083702087346 ], [ -76.371246337890625, -13.832083702087346 ], [ -76.371246337890625, -13.831804275512695 ], [ -76.3709716796875, -13.831806182861271 ], [ -76.3709716796875, -13.831527709960881 ], [ -76.370697021484375, -13.831527709960881 ], [ -76.370697021484375, -13.83124828338623 ], [ -76.370414733886662, -13.831250190734806 ], [ -76.370414733886662, -13.829859733581543 ], [ -76.370140075683537, -13.829859733581543 ], [ -76.370140075683537, -13.829584121704045 ], [ -76.369857788085881, -13.829584121704045 ], [ -76.369857788085881, -13.82902812957758 ], [ -76.369583129882756, -13.82902812957758 ], [ -76.369583129882756, -13.828749656677189 ], [ -76.369308471679688, -13.828749656677189 ], [ -76.369308471679688, -13.828470230102539 ], [ -76.369026184082031, -13.828470230102539 ], [ -76.369026184082031, -13.82791614532465 ], [ -76.368751525878906, -13.82791805267334 ], [ -76.368751525878906, -13.82763767242426 ], [ -76.36846923828125, -13.82763767242426 ], [ -76.36846923828125, -13.826250076293888 ], [ -76.368751525878906, -13.826250076293888 ], [ -76.368751525878906, -13.825694084167424 ], [ -76.36846923828125, -13.825694084167424 ], [ -76.36846923828125, -13.824861526489258 ], [ -76.368751525878906, -13.824861526489258 ], [ -76.368751525878906, -13.824028015136719 ], [ -76.369857788085881, -13.824028015136719 ], [ -76.369857788085881, -13.822359085083008 ], [ -76.370140075683537, -13.822359085083008 ], [ -76.370140075683537, -13.821249008178711 ], [ -76.370414733886662, -13.821249008178711 ], [ -76.370414733886662, -13.820693016052246 ], [ -76.370697021484375, -13.820693016052246 ], [ -76.370697021484375, -13.817916870117188 ], [ -76.3709716796875, -13.817916870117188 ], [ -76.3709716796875, -13.816804885864201 ], [ -76.371246337890625, -13.816804885864201 ], [ -76.371246337890625, -13.816248893737736 ], [ -76.371528625488281, -13.816248893737736 ], [ -76.371528625488281, -13.8143053054809 ], [ -76.3709716796875, -13.8143053054809 ], [ -76.3709716796875, -13.812639236450195 ], [ -76.371246337890625, -13.812639236450195 ], [ -76.371246337890625, -13.81208324432373 ], [ -76.371528625488281, -13.81208324432373 ], [ -76.371528625488281, -13.81180477142334 ], [ -76.371803283691406, -13.81180477142334 ], [ -76.371803283691406, -13.811250686645451 ], [ -76.372085571289062, -13.811250686645451 ], [ -76.372085571289062, -13.80847263336176 ], [ -76.371528625488281, -13.80847263336176 ], [ -76.371528625488281, -13.808195114135685 ], [ -76.371246337890625, -13.808195114135685 ], [ -76.371246337890625, -13.807638168334904 ], [ -76.371528625488281, -13.807638168334904 ], [ -76.371528625488281, -13.807359695434513 ], [ -76.371803283691406, -13.807359695434513 ], [ -76.371803283691406, -13.807638168334904 ], [ -76.372085571289062, -13.807638168334904 ], [ -76.372085571289062, -13.807359695434513 ], [ -76.372360229492188, -13.807359695434513 ], [ -76.372360229492188, -13.807082176208439 ], [ -76.37264251708973, -13.807082176208439 ], [ -76.37264251708973, -13.805970191955566 ], [ -76.371528625488281, -13.805970191955566 ], [ -76.371528625488281, -13.806249618530273 ], [ -76.371246337890625, -13.806249618530273 ], [ -76.371246337890625, -13.805693626403809 ], [ -76.3709716796875, -13.805693626403809 ], [ -76.3709716796875, -13.804860115051213 ], [ -76.370697021484375, -13.804860115051213 ], [ -76.370697021484375, -13.803750038146973 ], [ -76.370140075683537, -13.803750038146973 ], [ -76.370140075683537, -13.803471565246582 ], [ -76.369026184082031, -13.803471565246582 ], [ -76.369026184082031, -13.804306030273438 ], [ -76.368751525878906, -13.804306030273438 ], [ -76.368751525878906, -13.804027557373047 ], [ -76.368194580078125, -13.804027557373047 ], [ -76.368194580078125, -13.803750038146973 ], [ -76.367919921875, -13.803750038146973 ], [ -76.367919921875, -13.802638053894043 ], [ -76.367637634277344, -13.802638053894043 ], [ -76.367637634277344, -13.802082061767464 ], [ -76.365692138671875, -13.802082061767464 ], [ -76.365692138671875, -13.802362442016602 ], [ -76.363746643066349, -13.802362442016602 ], [ -76.363746643066349, -13.802082061767464 ], [ -76.362915039062386, -13.802083969116211 ], [ -76.362915039062386, -13.801806449890137 ], [ -76.362358093261719, -13.801806449890137 ], [ -76.362358093261719, -13.801527976989746 ], [ -76.361808776855469, -13.801527976989746 ], [ -76.361808776855469, -13.801250457763672 ], [ -76.361526489257812, -13.801250457763672 ], [ -76.361526489257812, -13.800971984863281 ], [ -76.360969543457031, -13.800971984863281 ], [ -76.360969543457031, -13.800694465637207 ], [ -76.360694885253849, -13.800694465637207 ], [ -76.360694885253849, -13.800415992736816 ], [ -76.359306335449219, -13.800415992736816 ], [ -76.359306335449219, -13.800138473510742 ], [ -76.359024047851562, -13.800138473510742 ], [ -76.359024047851562, -13.799860000610352 ], [ -76.357917785644531, -13.799860000610352 ], [ -76.357917785644531, -13.800138473510742 ], [ -76.356246948242188, -13.800138473510742 ], [ -76.356246948242188, -13.800415992736816 ], [ -76.355415344238281, -13.800415992736816 ], [ -76.355415344238281, -13.800694465637207 ], [ -76.354583740234318, -13.800694465637207 ], [ -76.354583740234318, -13.800971984863281 ], [ -76.353752136230412, -13.800971984863281 ], [ -76.353752136230412, -13.801250457763672 ], [ -76.352912902832031, -13.801250457763672 ], [ -76.352912902832031, -13.801527976989746 ], [ -76.351524353027344, -13.801527976989746 ], [ -76.351524353027344, -13.801806449890137 ], [ -76.350135803222543, -13.801806449890137 ], [ -76.350135803222543, -13.802083969116211 ], [ -76.349861145019531, -13.802082061767464 ], [ -76.349861145019531, -13.802362442016602 ], [ -76.34930419921875, -13.802362442016602 ], [ -76.34930419921875, -13.802638053894043 ], [ -76.349029541015625, -13.802638053894043 ], [ -76.349029541015625, -13.802915573120117 ], [ -76.348472595214844, -13.802915573120117 ], [ -76.348472595214844, -13.803194046020508 ], [ -76.348197937011662, -13.803194046020508 ], [ -76.348197937011662, -13.803471565246582 ], [ -76.347640991210881, -13.803471565246582 ], [ -76.347640991210881, -13.803750038146973 ], [ -76.347358703613224, -13.803750038146973 ], [ -76.347358703613224, -13.804027557373047 ], [ -76.34625244140625, -13.804027557373047 ], [ -76.34625244140625, -13.803750038146973 ], [ -76.345138549804688, -13.803750038146973 ], [ -76.345138549804688, -13.803471565246582 ], [ -76.344306945800724, -13.803471565246582 ], [ -76.344306945800724, -13.803194046020508 ], [ -76.343475341796875, -13.803194046020508 ], [ -76.343475341796875, -13.802915573120117 ], [ -76.342918395996094, -13.802915573120117 ], [ -76.342918395996094, -13.802638053894043 ], [ -76.342361450195312, -13.802638053894043 ], [ -76.342361450195312, -13.802362442016602 ], [ -76.342086791992188, -13.802362442016602 ], [ -76.342086791992188, -13.802082061767464 ], [ -76.341529846191349, -13.802083969116211 ], [ -76.341529846191349, -13.801806449890137 ], [ -76.340972900390568, -13.801806449890137 ], [ -76.340972900390568, -13.801250457763672 ], [ -76.339859008789062, -13.801250457763672 ], [ -76.339859008789062, -13.801527976989746 ], [ -76.339302062988281, -13.801527976989746 ], [ -76.339302062988281, -13.801250457763672 ], [ -76.338752746581974, -13.801250457763672 ], [ -76.338752746581974, -13.800971984863281 ], [ -76.338195800781193, -13.800971984863281 ], [ -76.338195800781193, -13.800694465637207 ], [ -76.337638854980412, -13.800694465637207 ], [ -76.337638854980412, -13.800415992736816 ], [ -76.337364196777344, -13.800415992736816 ], [ -76.337364196777344, -13.800138473510742 ], [ -76.336807250976562, -13.800138473510742 ], [ -76.336807250976562, -13.799860000610352 ], [ -76.336250305175781, -13.799861907958928 ], [ -76.336250305175781, -13.79958438873291 ], [ -76.335693359375, -13.79958438873291 ], [ -76.335693359375, -13.799305915832463 ], [ -76.335418701171818, -13.799305915832463 ], [ -76.335418701171818, -13.799028396606445 ], [ -76.334861755371037, -13.799028396606445 ], [ -76.334861755371037, -13.798749923706055 ], [ -76.334587097167912, -13.798749923706055 ], [ -76.334587097167912, -13.79847240447998 ], [ -76.334304809570199, -13.79847240447998 ], [ -76.334304809570199, -13.798195838928109 ], [ -76.334030151367188, -13.798195838928109 ], [ -76.334030151367188, -13.797916412353516 ], [ -76.333747863769531, -13.797916412353516 ], [ -76.333747863769531, -13.797637939453125 ], [ -76.333473205566406, -13.797639846801701 ], [ -76.333473205566406, -13.797362327575627 ], [ -76.33319091796875, -13.797362327575627 ], [ -76.33319091796875, -13.797080993652344 ], [ -76.332916259765625, -13.797083854675236 ], [ -76.332916259765625, -13.796806335449162 ], [ -76.3326416015625, -13.796806335449162 ], [ -76.3326416015625, -13.796250343322697 ], [ -76.332359313964844, -13.796250343322697 ], [ -76.332359313964844, -13.79597091674799 ], [ -76.332084655761662, -13.79597091674799 ], [ -76.332084655761662, -13.795693397521916 ], [ -76.331802368164006, -13.795693397521916 ], [ -76.331802368164006, -13.795417785644531 ], [ -76.331527709960881, -13.795417785644531 ], [ -76.331527709960881, -13.794861793518066 ], [ -76.331253051757699, -13.794861793518066 ], [ -76.331253051757699, -13.794584274291935 ], [ -76.330970764160156, -13.794584274291935 ], [ -76.330970764160156, -13.794304847717285 ], [ -76.33013916015625, -13.794304847717285 ], [ -76.33013916015625, -13.794027328491211 ], [ -76.329582214355469, -13.794027328491211 ], [ -76.329582214355469, -13.79374885559082 ], [ -76.328750610351506, -13.79374885559082 ], [ -76.328750610351506, -13.793471336364632 ], [ -76.328193664550724, -13.793471336364632 ], [ -76.328193664550724, -13.793195724487305 ], [ -76.327362060546875, -13.793195724487305 ], [ -76.327362060546875, -13.792915344238224 ], [ -76.326805114746094, -13.792915344238224 ], [ -76.326805114746094, -13.792638778686523 ], [ -76.324028015136719, -13.792638778686523 ], [ -76.324028015136719, -13.792361259460449 ], [ -76.322082519531193, -13.792361259460449 ], [ -76.322082519531193, -13.792082786560059 ], [ -76.320693969726562, -13.792082786560059 ], [ -76.320693969726562, -13.791805267333984 ], [ -76.320137023925781, -13.791805267333984 ], [ -76.320137023925781, -13.791526794433594 ], [ -76.319580078125, -13.791526794433594 ], [ -76.319580078125, -13.79124927520752 ], [ -76.318473815917855, -13.79124927520752 ], [ -76.318473815917855, -13.790970802307129 ], [ -76.318191528320312, -13.790970802307129 ], [ -76.318191528320312, -13.790693283081055 ], [ -76.315971374511662, -13.790693283081055 ], [ -76.315971374511662, -13.790970802307129 ], [ -76.315139770507812, -13.790970802307129 ], [ -76.315139770507812, -13.79124927520752 ], [ -76.314582824707031, -13.79124927520752 ], [ -76.314582824707031, -13.791526794433594 ], [ -76.313751220703125, -13.791526794433594 ], [ -76.313751220703125, -13.791805267333984 ], [ -76.310417175292969, -13.791805267333984 ], [ -76.310417175292969, -13.792082786560059 ], [ -76.309028625488224, -13.792082786560059 ], [ -76.309028625488224, -13.792361259460449 ], [ -76.307357788085938, -13.792361259460449 ], [ -76.307357788085938, -13.792638778686523 ], [ -76.306251525878849, -13.792638778686523 ], [ -76.306251525878849, -13.792361259460449 ], [ -76.305694580078011, -13.792361259460449 ], [ -76.305694580078011, -13.792082786560059 ], [ -76.305137634277344, -13.792082786560059 ], [ -76.305137634277344, -13.791805267333984 ], [ -76.302635192871037, -13.791805267333984 ], [ -76.302635192871037, -13.792082786560059 ], [ -76.302360534667969, -13.792082786560059 ], [ -76.302360534667969, -13.792361259460449 ], [ -76.302085876464844, -13.792361259460449 ], [ -76.302085876464844, -13.792082786560059 ], [ -76.301803588867188, -13.792082786560059 ], [ -76.301803588867188, -13.791805267333984 ], [ -76.300140380859318, -13.791805267333984 ], [ -76.300140380859318, -13.791526794433594 ], [ -76.299583435058537, -13.791526794433594 ], [ -76.299583435058537, -13.791805267333984 ], [ -76.296524047851506, -13.791805267333984 ], [ -76.296524047851506, -13.792361259460449 ], [ -76.296249389648381, -13.792361259460449 ], [ -76.296249389648381, -13.793195724487305 ], [ -76.296806335449162, -13.793195724487305 ], [ -76.296806335449162, -13.793471336364632 ], [ -76.297080993652287, -13.793471336364632 ], [ -76.297080993652287, -13.793623924255371 ], [ -76.297080993652287, -13.794304847717285 ], [ -76.296806335449162, -13.794304847717285 ], [ -76.296806335449162, -13.794861793518066 ], [ -76.296524047851506, -13.794861793518066 ], [ -76.296524047851506, -13.795140266418343 ], [ -76.296249389648381, -13.795140266418343 ], [ -76.296249389648381, -13.795417785644531 ], [ -76.295845031738224, -13.795417785644531 ], [ -76.295692443847656, -13.795417785644531 ], [ -76.295692443847656, -13.79597091674799 ], [ -76.295417785644531, -13.79597091674799 ], [ -76.295417785644531, -13.796250343322697 ], [ -76.295135498046875, -13.796250343322697 ], [ -76.295135498046875, -13.796527862548771 ], [ -76.294586181640625, -13.796527862548771 ], [ -76.294586181640625, -13.796250343322697 ], [ -76.294303894042969, -13.796250343322697 ], [ -76.294303894042969, -13.79597091674799 ], [ -76.290138244628849, -13.79597091674799 ], [ -76.290138244628849, -13.796250343322697 ], [ -76.288749694824219, -13.796250343322697 ], [ -76.288749694824219, -13.796527862548771 ], [ -76.288192749023438, -13.796527862548771 ], [ -76.288192749023438, -13.796806335449162 ], [ -76.287918090820312, -13.796806335449162 ], [ -76.287918090820312, -13.797362327575627 ], [ -76.288475036621094, -13.797362327575627 ], [ -76.288475036621094, -13.797639846801701 ], [ -76.289024353027344, -13.797637939453125 ], [ -76.289024353027344, -13.797916412353516 ], [ -76.289863586425668, -13.797916412353516 ], [ -76.289863586425668, -13.798195838928109 ], [ -76.290412902831974, -13.798195838928109 ], [ -76.290412902831974, -13.799305915832463 ], [ -76.290138244628849, -13.799305915832463 ], [ -76.290138244628849, -13.799509048461914 ], [ -76.290138244628849, -13.800138473510742 ], [ -76.289863586425668, -13.800138473510742 ], [ -76.289863586425668, -13.800971984863281 ], [ -76.290138244628849, -13.800971984863281 ], [ -76.290138244628849, -13.801250457763672 ], [ -76.290695190429631, -13.801250457763672 ], [ -76.290695190429631, -13.802083969116211 ], [ -76.290969848632812, -13.802082061767464 ], [ -76.290969848632812, -13.803750038146973 ], [ -76.291252136230469, -13.803750038146973 ], [ -76.291252136230469, -13.805416107177621 ], [ -76.290969848632812, -13.805416107177621 ], [ -76.290969848632812, -13.806249618530273 ], [ -76.291252136230469, -13.806249618530273 ], [ -76.291252136230469, -13.806528091430664 ], [ -76.291526794433594, -13.806526184081974 ], [ -76.291526794433594, -13.806806564331055 ], [ -76.292037963867131, -13.806806564331055 ], [ -76.292640686035156, -13.806806564331055 ], [ -76.292640686035156, -13.807915687560978 ], [ -76.293197631835881, -13.807915687560978 ], [ -76.293197631835881, -13.808195114135685 ], [ -76.293472290039006, -13.808195114135685 ], [ -76.293472290039006, -13.810973167419434 ], [ -76.293746948242131, -13.810973167419434 ], [ -76.293746948242131, -13.811250686645451 ], [ -76.295974731445312, -13.811250686645451 ], [ -76.295974731445312, -13.811529159545898 ], [ -76.296249389648381, -13.811527252197266 ], [ -76.296249389648381, -13.81208324432373 ], [ -76.296524047851506, -13.81208324432373 ], [ -76.296524047851506, -13.812639236450195 ], [ -76.296806335449162, -13.812639236450195 ], [ -76.296806335449162, -13.81291675567627 ], [ -76.297080993652287, -13.81291675567627 ], [ -76.297080993652287, -13.813470840454045 ], [ -76.297363281249943, -13.813470840454045 ], [ -76.297363281249943, -13.814026832580453 ], [ -76.297637939453125, -13.814026832580453 ], [ -76.297637939453125, -13.815973281860352 ], [ -76.297363281249943, -13.815973281860352 ], [ -76.297363281249943, -13.817360877990609 ], [ -76.298164367675781, -13.817360877990609 ], [ -76.298469543457031, -13.817360877990609 ], [ -76.298469543457031, -13.816804885864201 ], [ -76.298751831054688, -13.816804885864201 ], [ -76.298751831054688, -13.816527366638127 ], [ -76.299026489257812, -13.816527366638127 ], [ -76.299026489257812, -13.817360877990609 ], [ -76.299308776855469, -13.817360877990609 ], [ -76.299308776855469, -13.818195343017464 ], [ -76.299858093261662, -13.818195343017464 ], [ -76.299858093261662, -13.818470954894963 ], [ -76.300415039062443, -13.818470954894963 ], [ -76.300415039062443, -13.819861412048283 ], [ -76.300697326660156, -13.819861412048283 ], [ -76.300697326660156, -13.820418357849121 ], [ -76.300971984863281, -13.820418357849121 ], [ -76.300971984863281, -13.82097053527832 ], [ -76.301246643066406, -13.82097053527832 ], [ -76.301246643066406, -13.821526527404728 ], [ -76.301528930664062, -13.821526527404728 ], [ -76.301528930664062, -13.821805953979492 ], [ -76.301803588867188, -13.821805953979492 ], [ -76.301803588867188, -13.822084426879883 ], [ -76.302360534667969, -13.822084426879883 ], [ -76.302360534667969, -13.822361946105957 ], [ -76.302635192871037, -13.822359085083008 ], [ -76.302635192871037, -13.822636604309082 ], [ -76.303192138671818, -13.822636604309082 ], [ -76.303192138671818, -13.822917938232422 ], [ -76.303474426269474, -13.822915077209473 ], [ -76.303474426269474, -13.823472023010254 ], [ -76.303749084472656, -13.823472023010254 ], [ -76.303749084472656, -13.824581146240178 ], [ -76.304031372070312, -13.824581146240178 ], [ -76.304031372070312, -13.825974464416504 ], [ -76.304031372070312, -13.826537132263127 ], [ -76.304031372070312, -13.826806068420296 ], [ -76.303749084472656, -13.826804161071777 ], [ -76.303749084472656, -13.828431129455566 ], [ -76.303749084472656, -13.82902812957758 ], [ -76.304031372070312, -13.82902812957758 ], [ -76.304031372070312, -13.829584121704045 ], [ -76.303749084472656, -13.829584121704045 ], [ -76.303749084472656, -13.829859733581543 ], [ -76.303474426269474, -13.829859733581543 ], [ -76.303192138671818, -13.829859733581543 ], [ -76.303192138671818, -13.830415725707951 ], [ -76.302917480468693, -13.830415725707951 ], [ -76.302917480468693, -13.831250190734806 ], [ -76.302635192871037, -13.83124828338623 ], [ -76.302635192871037, -13.831527709960881 ], [ -76.302917480468693, -13.831527709960881 ], [ -76.302917480468693, -13.832083702087346 ], [ -76.303192138671818, -13.832083702087346 ], [ -76.303192138671818, -13.833193778991699 ], [ -76.304031372070312, -13.833193778991699 ], [ -76.304031372070312, -13.83347225189209 ], [ -76.304306030273438, -13.83347225189209 ], [ -76.304306030273438, -13.834029197692871 ], [ -76.304580688476562, -13.834026336669808 ], [ -76.304580688476562, -13.834306716918945 ], [ -76.304862976074219, -13.834306716918945 ], [ -76.304862976074219, -13.834582328796387 ], [ -76.305137634277344, -13.834582328796387 ], [ -76.305137634277344, -13.834859848022461 ], [ -76.305694580078011, -13.834859848022461 ], [ -76.305694580078011, -13.835138320922852 ], [ -76.305969238281193, -13.835138320922852 ], [ -76.305969238281193, -13.835695266723519 ], [ -76.306251525878849, -13.835695266723519 ], [ -76.306251525878849, -13.836251258850098 ], [ -76.306526184081974, -13.836251258850098 ], [ -76.306526184081974, -13.836804389953556 ], [ -76.306808471679631, -13.836804389953556 ], [ -76.306808471679631, -13.837361335754338 ], [ -76.307083129882812, -13.837361335754338 ], [ -76.307083129882812, -13.837917327880803 ], [ -76.307357788085938, -13.837917327880803 ], [ -76.307357788085938, -13.838473320007267 ], [ -76.307640075683594, -13.838473320007267 ], [ -76.307640075683594, -13.839027404785156 ], [ -76.307914733886719, -13.839027404785156 ], [ -76.307914733886719, -13.839583396911621 ], [ -76.308197021484375, -13.839583396911621 ], [ -76.308197021484375, -13.839860916137638 ], [ -76.308746337890511, -13.839860916137638 ], [ -76.308746337890511, -13.840139389038086 ], [ -76.309028625488224, -13.840139389038086 ], [ -76.309028625488224, -13.840469360351562 ], [ -76.309028625488224, -13.840695381164494 ], [ -76.309303283691349, -13.840695381164494 ], [ -76.309303283691349, -13.840972900390568 ], [ -76.309494018554631, -13.840970993041992 ], [ -76.309585571289006, -13.840972900390568 ], [ -76.309585571289006, -13.841526985168457 ], [ -76.309814453125, -13.841526985168457 ], [ -76.309822082519531, -13.841648101806584 ], [ -76.309860229492131, -13.842082977294922 ], [ -76.310028076171875, -13.842082977294922 ], [ -76.310142517089787, -13.842082977294922 ], [ -76.310142517089787, -13.842374801635629 ], [ -76.310142517089787, -13.842638969421387 ], [ -76.310249328613224, -13.842638969421387 ], [ -76.310417175292969, -13.842638969421387 ], [ -76.310417175292969, -13.842917442321777 ], [ -76.310691833496094, -13.842917442321777 ], [ -76.310691833496094, -13.843193054199219 ], [ -76.31097412109375, -13.843193054199219 ], [ -76.31097412109375, -13.843473434448242 ], [ -76.311248779296875, -13.843473434448242 ], [ -76.311248779296875, -13.844058990478516 ], [ -76.311248779296875, -13.845971107482796 ], [ -76.309303283691349, -13.845971107482796 ], [ -76.309303283691349, -13.845694541931152 ], [ -76.309028625488224, -13.845694541931152 ], [ -76.309028625488224, -13.845138549804688 ], [ -76.308746337890511, -13.845138549804688 ], [ -76.308746337890511, -13.844859123229924 ], [ -76.3084716796875, -13.844859123229924 ], [ -76.3084716796875, -13.844305038452148 ], [ -76.308197021484375, -13.844305038452148 ], [ -76.308197021484375, -13.844026565551758 ], [ -76.307914733886719, -13.844026565551758 ], [ -76.307914733886719, -13.843749046325684 ], [ -76.307640075683594, -13.843749046325684 ], [ -76.307640075683594, -13.843473434448242 ], [ -76.306526184081974, -13.843473434448242 ], [ -76.306526184081974, -13.843193054199219 ], [ -76.304031372070312, -13.843193054199219 ], [ -76.304031372070312, -13.842361450195312 ], [ -76.303749084472656, -13.842361450195312 ], [ -76.303749084472656, -13.841251373290959 ], [ -76.303474426269474, -13.841251373290959 ], [ -76.303474426269474, -13.840695381164494 ], [ -76.303192138671818, -13.840695381164494 ], [ -76.303192138671818, -13.840416908264103 ], [ -76.302360534667969, -13.840416908264103 ], [ -76.302360534667969, -13.839860916137638 ], [ -76.302085876464844, -13.839860916137638 ], [ -76.302085876464844, -13.839583396911621 ], [ -76.301803588867188, -13.839583396911621 ], [ -76.301803588867188, -13.839027404785156 ], [ -76.301528930664062, -13.839027404785156 ], [ -76.301528930664062, -13.838750839233285 ], [ -76.301246643066406, -13.838750839233285 ], [ -76.301246643066406, -13.838473320007267 ], [ -76.300971984863281, -13.838473320007267 ], [ -76.300971984863281, -13.838194847106877 ], [ -76.300697326660156, -13.838194847106877 ], [ -76.300697326660156, -13.837917327880803 ], [ -76.300415039062443, -13.837917327880803 ], [ -76.300415039062443, -13.837778091430607 ], [ -76.300415039062443, -13.837638854980412 ], [ -76.300140380859318, -13.837638854980412 ], [ -76.300140380859318, -13.837361335754338 ], [ -76.299026489257812, -13.837361335754338 ], [ -76.299026489257812, -13.837638854980412 ], [ -76.298469543457031, -13.837638854980412 ], [ -76.298469543457031, -13.837917327880803 ], [ -76.298194885253906, -13.837917327880803 ], [ -76.298194885253906, -13.838194847106877 ], [ -76.297637939453125, -13.838194847106877 ], [ -76.297637939453125, -13.838473320007267 ], [ -76.297080993652287, -13.838473320007267 ], [ -76.297080993652287, -13.838750839233285 ], [ -76.296806335449162, -13.838750839233285 ], [ -76.296806335449162, -13.839306831359863 ], [ -76.296524047851506, -13.839306831359863 ], [ -76.296524047851506, -13.839860916137638 ], [ -76.296249389648381, -13.839860916137638 ], [ -76.296249389648381, -13.840416908264103 ], [ -76.295974731445312, -13.840416908264103 ], [ -76.295974731445312, -13.840970993041992 ], [ -76.295692443847656, -13.840970993041992 ], [ -76.295692443847656, -13.841307640075684 ], [ -76.295692443847656, -13.841526985168457 ], [ -76.295425415039062, -13.841526985168457 ], [ -76.295417785644531, -13.842082977294922 ], [ -76.295135498046875, -13.842082977294922 ], [ -76.295135498046875, -13.842638969421387 ], [ -76.294586181640625, -13.842638969421387 ], [ -76.294586181640625, -13.842917442321777 ], [ -76.294029235839787, -13.842917442321777 ], [ -76.294029235839787, -13.843193054199219 ], [ -76.293472290039006, -13.843193054199219 ], [ -76.293472290039006, -13.843473434448242 ], [ -76.293090820312443, -13.843473434448242 ], [ -76.292915344238168, -13.843473434448242 ], [ -76.292915344238168, -13.843619346618596 ], [ -76.292915344238168, -13.843749046325684 ], [ -76.292762756347656, -13.843749046325684 ], [ -76.292640686035156, -13.843749046325684 ], [ -76.292640686035156, -13.844026565551758 ], [ -76.292427062988224, -13.844026565551758 ], [ -76.292083740234375, -13.844026565551758 ], [ -76.292083740234375, -13.844305038452148 ], [ -76.29180908203125, -13.844305038452148 ], [ -76.29180908203125, -13.84454154968256 ], [ -76.291526794433594, -13.844582557678223 ], [ -76.291526794433594, -13.844861030578613 ], [ -76.291427612304688, -13.844861030578613 ], [ -76.291252136230469, -13.844859123229924 ], [ -76.291252136230469, -13.845005035400391 ], [ -76.291252136230469, -13.845138549804688 ], [ -76.291091918945256, -13.845138549804688 ], [ -76.290695190429631, -13.845138549804688 ], [ -76.290695190429631, -13.845417022705078 ], [ -76.290412902831974, -13.845415115356388 ], [ -76.290412902831974, -13.845694541931152 ], [ -76.290138244628849, -13.845694541931152 ], [ -76.290138244628849, -13.845971107482796 ], [ -76.289863586425668, -13.845971107482796 ], [ -76.289863586425668, -13.846125602722168 ], [ -76.289863586425668, -13.846248626708984 ], [ -76.289688110351562, -13.846248626708984 ], [ -76.289306640625, -13.846248626708984 ], [ -76.289306640625, -13.846527099609375 ], [ -76.289024353027344, -13.846527099609375 ], [ -76.289024353027344, -13.846718788146916 ], [ -76.289024353027344, -13.846804618835449 ], [ -76.288887023925724, -13.846804618835449 ], [ -76.288749694824219, -13.846804618835449 ], [ -76.288749694824219, -13.846912384033203 ], [ -76.288749694824219, -13.84708309173584 ], [ -76.288505554199162, -13.84708118438715 ], [ -76.288475036621094, -13.847360610961914 ], [ -76.288192749023438, -13.847360610961914 ], [ -76.288192749023438, -13.847640037536507 ], [ -76.287918090820312, -13.847637176513615 ], [ -76.287918090820312, -13.847917556762695 ], [ -76.287635803222599, -13.847917556762695 ], [ -76.287635803222599, -13.84819316864008 ], [ -76.287361145019474, -13.84819316864008 ], [ -76.287361145019474, -13.84847354888916 ], [ -76.287086486816349, -13.84847354888916 ], [ -76.287086486816349, -13.848749160766545 ], [ -76.286804199218693, -13.848749160766545 ], [ -76.286804199218693, -13.849026679992562 ], [ -76.286529541015625, -13.849026679992562 ], [ -76.286529541015625, -13.849303245544434 ], [ -76.286384582519531, -13.849303245544434 ], [ -76.286247253417969, -13.849303245544434 ], [ -76.286231994628849, -13.849513053893986 ], [ -76.285972595214844, -13.8495836257934 ], [ -76.285972595214844, -13.849862098693791 ], [ -76.285697937011719, -13.849859237670898 ], [ -76.285697937011719, -13.850139617919865 ], [ -76.285415649414062, -13.850139617919865 ], [ -76.285415649414062, -13.850418090820256 ], [ -76.285140991210938, -13.850415229797363 ], [ -76.285140991210938, -13.850693702697754 ], [ -76.284858703613281, -13.850693702697754 ], [ -76.284858703613281, -13.850972175598145 ], [ -76.284584045410099, -13.850972175598145 ], [ -76.284584045410099, -13.851249694824219 ], [ -76.284301757812443, -13.851249694824219 ], [ -76.284301757812443, -13.851805686950627 ], [ -76.284027099609318, -13.851805686950627 ], [ -76.284027099609318, -13.852084159851074 ], [ -76.283752441406193, -13.852082252502441 ], [ -76.283752441406193, -13.852359771728516 ], [ -76.283470153808537, -13.852359771728516 ], [ -76.283470153808537, -13.852640151977482 ], [ -76.283195495605469, -13.852638244628906 ], [ -76.283195495605469, -13.85291576385498 ], [ -76.282913208007812, -13.85291576385498 ], [ -76.282913208007812, -13.853194236755371 ], [ -76.282638549804688, -13.853194236755371 ], [ -76.282638549804688, -13.853373527526855 ], [ -76.282638549804688, -13.853471755981445 ], [ -76.282432556152344, -13.853471755981445 ], [ -76.282363891601562, -13.853750228881836 ], [ -76.281494140625, -13.853750228881836 ], [ -76.278472900390625, -13.853750228881836 ], [ -76.278472900390625, -13.85402774810791 ], [ -76.277359008789006, -13.85402774810791 ], [ -76.277359008789006, -13.854306221008301 ], [ -76.276527404785156, -13.854306221008301 ], [ -76.276527404785156, -13.854583740234375 ], [ -76.276382446289006, -13.854583740234375 ], [ -76.275413513183594, -13.854583740234375 ], [ -76.275413513183594, -13.854862213134766 ], [ -76.274307250976506, -13.854860305786076 ], [ -76.274307250976506, -13.855137825012207 ], [ -76.272918701171875, -13.855137825012207 ], [ -76.272918701171875, -13.855416297912484 ], [ -76.271804809570256, -13.855416297912484 ], [ -76.271804809570256, -13.855693817138672 ], [ -76.270416259765625, -13.855693817138672 ], [ -76.270416259765625, -13.855972290039062 ], [ -76.269859313964844, -13.855972290039062 ], [ -76.269859313964844, -13.856249809265137 ], [ -76.269302368164062, -13.856249809265137 ], [ -76.269302368164062, -13.856528282165527 ], [ -76.268753051757756, -13.856528282165527 ], [ -76.268753051757756, -13.856887817382756 ], [ -76.268753051757756, -13.858194351196232 ], [ -76.269050598144474, -13.858194351196232 ], [ -76.269302368164062, -13.858194351196232 ], [ -76.269302368164062, -13.858471870422363 ], [ -76.269584655761719, -13.858471870422363 ], [ -76.269584655761719, -13.859027862548828 ], [ -76.269859313964844, -13.859027862548828 ], [ -76.269859313964844, -13.860137939453068 ], [ -76.269584655761719, -13.860137939453068 ], [ -76.269584655761719, -13.860416412353459 ], [ -76.268753051757756, -13.860416412353459 ], [ -76.268753051757756, -13.860693931579533 ], [ -76.268470764160099, -13.860693931579533 ], [ -76.268470764160099, -13.861346244811955 ], [ -76.268470764160099, -13.861529350280705 ], [ -76.268196105956974, -13.861529350280705 ], [ -76.268196105956974, -13.861806869506779 ], [ -76.267639160156193, -13.861804008483887 ], [ -76.267639160156193, -13.862081527709904 ], [ -76.266777038574162, -13.862081527709904 ], [ -76.266525268554688, -13.862081527709904 ], [ -76.266525268554688, -13.862360000610352 ], [ -76.266250610351562, -13.862360000610352 ], [ -76.266250610351562, -13.86254978179926 ], [ -76.266250610351562, -13.862916946411133 ], [ -76.265975952148438, -13.862916946411133 ], [ -76.265975952148438, -13.863195419311523 ], [ -76.265525817871037, -13.863195419311523 ], [ -76.26430511474598, -13.863195419311523 ], [ -76.26430511474598, -13.863472938537598 ], [ -76.263473510742188, -13.863470077514648 ], [ -76.263473510742188, -13.863751411437988 ], [ -76.262641906738281, -13.863751411437988 ], [ -76.262641906738281, -13.864028930664062 ], [ -76.262359619140625, -13.864026069641113 ], [ -76.262359619140625, -13.864860534667969 ], [ -76.262084960937443, -13.864860534667969 ], [ -76.262084960937443, -13.865139007568359 ], [ -76.261802673339787, -13.865139007568359 ], [ -76.261802673339787, -13.865416526794434 ], [ -76.260971069335938, -13.865416526794434 ], [ -76.260971069335938, -13.865260124206486 ], [ -76.260971069335938, -13.865139007568359 ], [ -76.260696411132812, -13.865139007568359 ], [ -76.260696411132812, -13.864583015441895 ], [ -76.260414123535156, -13.864583015441895 ], [ -76.260414123535156, -13.863722801208439 ], [ -76.260414123535156, -13.862916946411133 ], [ -76.260139465332031, -13.862916946411133 ], [ -76.260139465332031, -13.862638473510742 ], [ -76.259864807128906, -13.862638473510742 ], [ -76.259864807128906, -13.862360000610352 ], [ -76.259689331054688, -13.862360000610352 ], [ -76.25958251953125, -13.862360000610352 ], [ -76.25958251953125, -13.862200736999455 ], [ -76.25958251953125, -13.862081527709904 ], [ -76.259307861328125, -13.862081527709904 ], [ -76.259307861328125, -13.861804008483887 ], [ -76.259025573730412, -13.861806869506779 ], [ -76.259025573730412, -13.861472129821664 ], [ -76.259025573730412, -13.861248016357422 ], [ -76.258750915527287, -13.861250877380314 ], [ -76.258750915527287, -13.860972404479924 ], [ -76.258468627929631, -13.860972404479924 ], [ -76.258468627929631, -13.860693931579533 ], [ -76.258193969726506, -13.860693931579533 ], [ -76.258193969726506, -13.860416412353459 ], [ -76.257919311523438, -13.860416412353459 ], [ -76.257919311523438, -13.860137939453068 ], [ -76.257362365722656, -13.860137939453068 ], [ -76.257362365722656, -13.859863281249943 ], [ -76.257080078125, -13.859863281249943 ], [ -76.257080078125, -13.859306335449219 ], [ -76.25653076171875, -13.859306335449219 ], [ -76.25653076171875, -13.859027862548828 ], [ -76.256248474121094, -13.859027862548828 ], [ -76.256248474121094, -13.85875034332264 ], [ -76.255691528320256, -13.85875034332264 ], [ -76.255691528320256, -13.858642578125 ], [ -76.255691528320256, -13.858471870422363 ], [ -76.255531311035043, -13.858471870422363 ], [ -76.255416870117131, -13.858471870422363 ], [ -76.255416870117131, -13.858353614807072 ], [ -76.255416870117131, -13.858194351196232 ], [ -76.255264282226562, -13.858194351196232 ], [ -76.254859924316349, -13.858194351196232 ], [ -76.254859924316349, -13.857915878295785 ], [ -76.254585266113281, -13.857915878295785 ], [ -76.254585266113281, -13.857778549194336 ], [ -76.254585266113281, -13.857640266418457 ], [ -76.254302978515625, -13.857640266418457 ], [ -76.254302978515625, -13.857359886169377 ], [ -76.2540283203125, -13.857359886169377 ], [ -76.2540283203125, -13.857084274291992 ], [ -76.253753662109375, -13.857084274291992 ], [ -76.253753662109375, -13.856805801391602 ], [ -76.253471374511719, -13.856805801391602 ], [ -76.253471374511719, -13.856528282165527 ], [ -76.253196716308594, -13.856528282165527 ], [ -76.253196716308594, -13.856249809265137 ], [ -76.252914428710938, -13.856249809265137 ], [ -76.252914428710938, -13.855972290039062 ], [ -76.252639770507756, -13.855972290039062 ], [ -76.252639770507756, -13.855693817138672 ], [ -76.252357482910099, -13.855693817138672 ], [ -76.252357482910099, -13.855416297912484 ], [ -76.252082824706974, -13.855416297912484 ], [ -76.252082824706974, -13.855137825012207 ], [ -76.251808166503849, -13.855137825012207 ], [ -76.251808166503849, -13.854860305786076 ], [ -76.251525878906136, -13.854862213134766 ], [ -76.251525878906136, -13.854306221008301 ], [ -76.251251220703125, -13.854306221008301 ], [ -76.251251220703125, -13.85402774810791 ], [ -76.250968933105469, -13.85402774810791 ], [ -76.250968933105469, -13.853471755981445 ], [ -76.250694274902344, -13.853471755981445 ], [ -76.250694274902344, -13.851249694824219 ], [ -76.250968933105469, -13.851249694824219 ], [ -76.250968933105469, -13.850693702697754 ], [ -76.251251220703125, -13.850693702697754 ], [ -76.251251220703125, -13.850139617919865 ], [ -76.251525878906136, -13.850139617919865 ], [ -76.251525878906136, -13.8495836257934 ], [ -76.251808166503849, -13.8495836257934 ], [ -76.251808166503849, -13.849026679992562 ], [ -76.252082824706974, -13.849026679992562 ], [ -76.252082824706974, -13.84847354888916 ], [ -76.252357482910099, -13.84847354888916 ], [ -76.252357482910099, -13.847917556762695 ], [ -76.252639770507756, -13.847917556762695 ], [ -76.252639770507756, -13.847637176513615 ], [ -76.252914428710938, -13.847637176513615 ], [ -76.252914428710938, -13.84708118438715 ], [ -76.253196716308594, -13.84708309173584 ], [ -76.253196716308594, -13.846804618835449 ], [ -76.253471374511719, -13.846804618835449 ], [ -76.253471374511719, -13.846527099609375 ], [ -76.253753662109375, -13.846527099609375 ], [ -76.253753662109375, -13.845971107482796 ], [ -76.2540283203125, -13.845971107482796 ], [ -76.2540283203125, -13.845694541931152 ], [ -76.254302978515625, -13.845694541931152 ], [ -76.254302978515625, -13.845138549804688 ], [ -76.254585266113281, -13.845138549804688 ], [ -76.254585266113281, -13.844859123229924 ], [ -76.254859924316349, -13.844859123229924 ], [ -76.254859924316349, -13.844305038452148 ], [ -76.255142211914006, -13.844305038452148 ], [ -76.255142211914006, -13.843749046325684 ], [ -76.255416870117131, -13.843749046325684 ], [ -76.255416870117131, -13.843473434448242 ], [ -76.255691528320256, -13.843473434448242 ], [ -76.255691528320256, -13.842917442321777 ], [ -76.255973815917912, -13.842917442321777 ], [ -76.255973815917912, -13.842638969421387 ], [ -76.256248474121094, -13.842638969421387 ], [ -76.256248474121094, -13.842361450195312 ], [ -76.25653076171875, -13.842361450195312 ], [ -76.25653076171875, -13.842082977294922 ], [ -76.256805419921875, -13.842082977294922 ], [ -76.256805419921875, -13.841805458068848 ], [ -76.257080078125, -13.841805458068848 ], [ -76.257080078125, -13.841251373290959 ], [ -76.257362365722656, -13.841251373290959 ], [ -76.257362365722656, -13.840970993041992 ], [ -76.257637023925781, -13.840972900390568 ], [ -76.257637023925781, -13.840695381164494 ], [ -76.257919311523438, -13.840695381164494 ], [ -76.257919311523438, -13.840416908264103 ], [ -76.258193969726506, -13.840416908264103 ], [ -76.258193969726506, -13.839860916137638 ], [ -76.258468627929631, -13.839860916137638 ], [ -76.258468627929631, -13.839306831359863 ], [ -76.258750915527287, -13.839306831359863 ], [ -76.258750915527287, -13.838473320007267 ], [ -76.258468627929631, -13.838473320007267 ], [ -76.258468627929631, -13.837361335754338 ], [ -76.258193969726506, -13.837361335754338 ], [ -76.258193969726506, -13.837082862853947 ], [ -76.257919311523438, -13.837082862853947 ], [ -76.257919311523438, -13.836804389953556 ], [ -76.257637023925781, -13.836804389953556 ], [ -76.257637023925781, -13.836528778076172 ], [ -76.257362365722656, -13.836528778076172 ], [ -76.257362365722656, -13.836251258850098 ], [ -76.256805419921875, -13.836251258850098 ], [ -76.256805419921875, -13.835972785949707 ], [ -76.256248474121094, -13.835972785949707 ], [ -76.256248474121094, -13.835695266723519 ], [ -76.255691528320256, -13.835695266723519 ], [ -76.255691528320256, -13.835416793823242 ], [ -76.255416870117131, -13.835416793823242 ], [ -76.255416870117131, -13.835138320922852 ], [ -76.255142211914006, -13.835138320922852 ], [ -76.255142211914006, -13.834859848022461 ], [ -76.2550048828125, -13.834859848022461 ], [ -76.254302978515625, -13.834859848022461 ], [ -76.254302978515625, -13.834582328796387 ], [ -76.253196716308594, -13.834582328796387 ], [ -76.253196716308594, -13.834306716918945 ], [ -76.252357482910099, -13.834306716918945 ], [ -76.252357482910099, -13.834026336669808 ], [ -76.251876831054631, -13.834026336669808 ], [ -76.251724243164062, -13.834026336669808 ], [ -76.251251220703125, -13.834029197692871 ], [ -76.251251220703125, -13.833749771118164 ], [ -76.250419616699219, -13.833749771118164 ], [ -76.250419616699219, -13.83347225189209 ], [ -76.249862670898438, -13.83347225189209 ], [ -76.249862670898438, -13.833193778991699 ], [ -76.249580383300781, -13.833193778991699 ], [ -76.249580383300781, -13.832916259765625 ], [ -76.249305725097599, -13.832916259765625 ], [ -76.249305725097599, -13.832637786865234 ], [ -76.248748779296818, -13.832637786865234 ], [ -76.248748779296818, -13.83236026763916 ], [ -76.248474121093636, -13.83236026763916 ], [ -76.248474121093636, -13.832083702087346 ], [ -76.248191833496094, -13.832083702087346 ], [ -76.248191833496094, -13.831804275512695 ], [ -76.247917175292969, -13.831806182861271 ], [ -76.247917175292969, -13.83161735534668 ], [ -76.247917175292969, -13.82902812957758 ], [ -76.248191833496094, -13.82902812957758 ], [ -76.248191833496094, -13.828470230102539 ], [ -76.248474121093636, -13.828472137451115 ], [ -76.248474121093636, -13.828193664550724 ], [ -76.248748779296818, -13.828193664550724 ], [ -76.248748779296818, -13.82791614532465 ], [ -76.249031066894474, -13.82791805267334 ], [ -76.249031066894474, -13.82763767242426 ], [ -76.249305725097599, -13.82763767242426 ], [ -76.249305725097599, -13.827360153198242 ], [ -76.250419616699219, -13.827360153198242 ], [ -76.250419616699219, -13.826250076293888 ], [ -76.250694274902344, -13.826250076293888 ], [ -76.250694274902344, -13.825694084167424 ], [ -76.250968933105469, -13.825694084167424 ], [ -76.250968933105469, -13.825138092040959 ], [ -76.251251220703125, -13.825138092040959 ], [ -76.251251220703125, -13.824581146240178 ], [ -76.251525878906136, -13.824581146240178 ], [ -76.251525878906136, -13.824028015136719 ], [ -76.251808166503849, -13.824028015136719 ], [ -76.251808166503849, -13.822636604309082 ], [ -76.251525878906136, -13.822636604309082 ], [ -76.251525878906136, -13.822359085083008 ], [ -76.251251220703125, -13.822361946105957 ], [ -76.251251220703125, -13.821526527404728 ], [ -76.250968933105469, -13.821526527404728 ], [ -76.250968933105469, -13.820137023925781 ], [ -76.250694274902344, -13.820138931274357 ], [ -76.250694274902344, -13.818751335144043 ], [ -76.250968933105469, -13.818751335144043 ], [ -76.250968933105469, -13.817083358764592 ], [ -76.250694274902344, -13.817083358764592 ], [ -76.250694274902344, -13.813749313354435 ], [ -76.250419616699219, -13.813751220703125 ], [ -76.250419616699219, -13.81319522857666 ], [ -76.250137329101562, -13.81319522857666 ], [ -76.250137329101562, -13.812360763549805 ], [ -76.249862670898438, -13.812360763549805 ], [ -76.249862670898438, -13.810694694519043 ], [ -76.249580383300781, -13.810694694519043 ], [ -76.249580383300781, -13.81041431427002 ], [ -76.249305725097599, -13.81041431427002 ], [ -76.249305725097599, -13.809861183166504 ], [ -76.249031066894474, -13.809861183166504 ], [ -76.249031066894474, -13.809028625488224 ], [ -76.248748779296818, -13.809028625488224 ], [ -76.248748779296818, -13.808748245239258 ], [ -76.248191833496094, -13.808748245239258 ], [ -76.248191833496094, -13.807638168334904 ], [ -76.247642517089844, -13.807638168334904 ], [ -76.247642517089844, -13.807082176208439 ], [ -76.247360229492188, -13.807082176208439 ], [ -76.247360229492188, -13.806526184081974 ], [ -76.247085571289062, -13.806526184081974 ], [ -76.247085571289062, -13.805970191955566 ], [ -76.246803283691406, -13.805970191955566 ], [ -76.246803283691406, -13.805416107177621 ], [ -76.246528625488281, -13.805416107177621 ], [ -76.246528625488281, -13.804860115051213 ], [ -76.246246337890568, -13.804860115051213 ], [ -76.246246337890568, -13.804027557373047 ], [ -76.245971679687443, -13.804027557373047 ], [ -76.245971679687443, -13.803194046020508 ], [ -76.245697021484318, -13.803194046020508 ], [ -76.245697021484318, -13.802362442016602 ], [ -76.245414733886662, -13.802362442016602 ], [ -76.245414733886662, -13.800415992736816 ], [ -76.245140075683594, -13.800415992736816 ], [ -76.245140075683594, -13.799860000610352 ], [ -76.244857788085938, -13.799860000610352 ], [ -76.244857788085938, -13.799305915832463 ], [ -76.244583129882812, -13.799305915832463 ], [ -76.244583129882812, -13.798195838928109 ], [ -76.244308471679688, -13.798195838928109 ], [ -76.244308471679688, -13.797637939453125 ], [ -76.244026184082031, -13.797639846801701 ], [ -76.244026184082031, -13.796806335449162 ], [ -76.243751525878906, -13.796806335449162 ], [ -76.243751525878906, -13.796527862548771 ], [ -76.24346923828125, -13.796527862548771 ], [ -76.24346923828125, -13.796250343322697 ], [ -76.243194580078068, -13.796250343322697 ], [ -76.243194580078068, -13.795693397521916 ], [ -76.242919921874943, -13.795693397521916 ], [ -76.242919921874943, -13.79374885559082 ], [ -76.242813110351506, -13.79374885559082 ], [ -76.242637634277287, -13.79374885559082 ], [ -76.242637634277287, -13.793195724487305 ], [ -76.242362976074162, -13.793195724487305 ], [ -76.242362976074162, -13.792915344238224 ], [ -76.242561340331918, -13.792915344238224 ], [ -76.242637634277287, -13.792915344238224 ], [ -76.242637634277287, -13.792361259460449 ], [ -76.242919921874943, -13.792361259460449 ], [ -76.242919921874943, -13.791526794433594 ], [ -76.242637634277287, -13.791526794433594 ], [ -76.242637634277287, -13.79124927520752 ], [ -76.242362976074162, -13.79124927520752 ], [ -76.242362976074162, -13.790970802307129 ], [ -76.242080688476506, -13.790970802307129 ], [ -76.242080688476506, -13.790693283081055 ], [ -76.241806030273438, -13.790695190429631 ], [ -76.241806030273438, -13.79041671752924 ], [ -76.241531372070312, -13.79041671752924 ], [ -76.241531372070312, -13.789860725402775 ], [ -76.241249084472656, -13.789860725402775 ], [ -76.241249084472656, -13.789583206176758 ], [ -76.240974426269531, -13.789583206176758 ], [ -76.240974426269531, -13.789029121398869 ], [ -76.240692138671875, -13.789029121398869 ], [ -76.240692138671875, -13.785972595214844 ], [ -76.240974426269531, -13.785972595214844 ], [ -76.240974426269531, -13.784583091735783 ], [ -76.240692138671875, -13.784583091735783 ], [ -76.240692138671875, -13.783194541931152 ], [ -76.24041748046875, -13.783194541931152 ], [ -76.24041748046875, -13.7823610305785 ], [ -76.240135192871094, -13.7823610305785 ], [ -76.240135192871094, -13.781248092651367 ], [ -76.24041748046875, -13.781248092651367 ], [ -76.24041748046875, -13.78013801574707 ], [ -76.240135192871094, -13.78013801574707 ], [ -76.240135192871094, -13.779026031494141 ], [ -76.239860534667912, -13.779027938842717 ], [ -76.239860534667912, -13.778194427490234 ], [ -76.239585876464787, -13.778194427490234 ], [ -76.239585876464787, -13.777915954589787 ], [ -76.239028930664006, -13.777915954589787 ], [ -76.239028930664006, -13.777359962463379 ], [ -76.239303588867131, -13.777359962463379 ], [ -76.239303588867131, -13.776805877685433 ], [ -76.239028930664006, -13.776805877685433 ], [ -76.239028930664006, -13.776249885559025 ], [ -76.238746643066293, -13.776249885559025 ], [ -76.238746643066293, -13.77569389343256 ], [ -76.238471984863281, -13.77569389343256 ], [ -76.238471984863281, -13.774581909179631 ], [ -76.238746643066293, -13.774581909179631 ], [ -76.238746643066293, -13.774306297302132 ], [ -76.238471984863281, -13.774306297302132 ], [ -76.238471984863281, -13.77319431304926 ], [ -76.238197326660156, -13.77319431304926 ], [ -76.238197326660156, -13.771249771118164 ], [ -76.238471984863281, -13.771249771118164 ], [ -76.238471984863281, -13.770139694213867 ], [ -76.238197326660156, -13.770139694213867 ], [ -76.238197326660156, -13.769583702087402 ], [ -76.2379150390625, -13.769583702087402 ], [ -76.2379150390625, -13.768934249877873 ], [ -76.2379150390625, -13.767083168029728 ], [ -76.237640380859375, -13.767083168029728 ], [ -76.237640380859375, -13.765694618225098 ], [ -76.237358093261719, -13.765694618225098 ], [ -76.237358093261719, -13.764859199523926 ], [ -76.237083435058594, -13.764861106872445 ], [ -76.237083435058594, -13.764026641845589 ], [ -76.236808776855412, -13.764026641845589 ], [ -76.236808776855412, -13.763472557067871 ], [ -76.236526489257756, -13.763472557067871 ], [ -76.236526489257756, -13.763193130493107 ], [ -76.236251831054631, -13.763193130493107 ], [ -76.236251831054631, -13.762639045715332 ], [ -76.235969543456974, -13.762639045715332 ], [ -76.235969543456974, -13.761804580688477 ], [ -76.235420227050781, -13.761804580688477 ], [ -76.235420227050781, -13.761248588562012 ], [ -76.23486328125, -13.761248588562012 ], [ -76.23486328125, -13.760971069335881 ], [ -76.234580993652344, -13.760971069335881 ], [ -76.234580993652344, -13.760416984558105 ], [ -76.234306335449219, -13.760416984558105 ], [ -76.234306335449219, -13.759583473205566 ], [ -76.234024047851562, -13.759583473205566 ], [ -76.234024047851562, -13.759305000305176 ], [ -76.233749389648438, -13.759306907653752 ], [ -76.233749389648438, -13.759026527404785 ], [ -76.233192443847599, -13.759026527404785 ], [ -76.233192443847599, -13.758749008178711 ], [ -76.232917785644474, -13.758750915527287 ], [ -76.232917785644474, -13.757917404174805 ], [ -76.232635498046818, -13.757917404174805 ], [ -76.232635498046818, -13.756525993347168 ], [ -76.23236083984375, -13.756525993347168 ], [ -76.23236083984375, -13.755970001220703 ], [ -76.232086181640625, -13.755972862243596 ], [ -76.232086181640625, -13.755416870117131 ], [ -76.231803894042969, -13.755416870117131 ], [ -76.231803894042969, -13.755139350891113 ], [ -76.231529235839844, -13.755139350891113 ], [ -76.231529235839844, -13.754582405090275 ], [ -76.231246948242188, -13.754582405090275 ], [ -76.231246948242188, -13.75402641296381 ], [ -76.230972290039062, -13.75402641296381 ], [ -76.230972290039062, -13.753472328186035 ], [ -76.230697631835938, -13.753472328186035 ], [ -76.230697631835938, -13.753354072570744 ], [ -76.230697631835938, -13.752360343933049 ], [ -76.230415344238224, -13.752360343933049 ], [ -76.230415344238224, -13.750694274902344 ], [ -76.230140686035099, -13.750694274902344 ], [ -76.230140686035099, -13.749028205871582 ], [ -76.229858398437443, -13.749028205871582 ], [ -76.229858398437443, -13.748470306396428 ], [ -76.229583740234318, -13.748472213745117 ], [ -76.229583740234318, -13.747083663940373 ], [ -76.22930908203125, -13.747083663940373 ], [ -76.22930908203125, -13.746248245239258 ], [ -76.229026794433594, -13.746250152587891 ], [ -76.229026794433594, -13.745971679687443 ], [ -76.228752136230469, -13.745971679687443 ], [ -76.228752136230469, -13.744305610656681 ], [ -76.228302001953125, -13.744305610656681 ], [ -76.228195190429688, -13.744305610656681 ], [ -76.228195190429688, -13.744003295898324 ], [ -76.228195190429688, -13.743472099304142 ], [ -76.227912902832031, -13.743472099304142 ], [ -76.227912902832031, -13.743213653564396 ], [ -76.227912902832031, -13.742639541625977 ], [ -76.227638244628906, -13.742639541625977 ], [ -76.227638244628906, -13.742444038391113 ], [ -76.227638244628906, -13.741806030273324 ], [ -76.227363586425724, -13.741806030273324 ], [ -76.227363586425724, -13.741676330566349 ], [ -76.227363586425724, -13.740970611572266 ], [ -76.227081298828068, -13.740970611572266 ], [ -76.227081298828068, -13.740137100219613 ], [ -76.226806640624943, -13.740137100219613 ], [ -76.226806640624943, -13.73902702331543 ], [ -76.226524353027287, -13.73902702331543 ], [ -76.226524353027287, -13.7379150390625 ], [ -76.226249694824162, -13.7379150390625 ], [ -76.226249694824162, -13.736804962158203 ], [ -76.225975036621094, -13.736804962158203 ], [ -76.225975036621094, -13.735694885253849 ], [ -76.225692749023438, -13.735694885253849 ], [ -76.225692749023438, -13.73486137390131 ], [ -76.225418090820312, -13.73486137390131 ], [ -76.225418090820312, -13.733195304870549 ], [ -76.225135803222656, -13.733195304870549 ], [ -76.225135803222656, -13.732639312744084 ], [ -76.224861145019531, -13.732639312744084 ], [ -76.224861145019531, -13.731527328491154 ], [ -76.224586486816406, -13.731527328491154 ], [ -76.224586486816406, -13.730417251586914 ], [ -76.22430419921875, -13.730417251586914 ], [ -76.22430419921875, -13.730138778686523 ], [ -76.224029541015568, -13.730138778686523 ], [ -76.224029541015568, -13.729861259460336 ], [ -76.223747253417912, -13.729861259460336 ], [ -76.223747253417912, -13.729028701782227 ], [ -76.223472595214787, -13.729028701782227 ], [ -76.223472595214787, -13.728751182556152 ], [ -76.223197937011662, -13.728751182556152 ], [ -76.223197937011662, -13.728195190429688 ], [ -76.222915649413949, -13.728195190429688 ], [ -76.222915649413949, -13.727082252502441 ], [ -76.222640991210938, -13.727082252502441 ], [ -76.222640991210938, -13.726093292236328 ], [ -76.222640991210938, -13.725972175598088 ], [ -76.222915649413949, -13.725972175598088 ], [ -76.222915649413949, -13.724583625793457 ], [ -76.223197937011662, -13.724583625793457 ], [ -76.223197937011662, -13.723471641540414 ], [ -76.222915649413949, -13.723471641540414 ], [ -76.222915649413949, -13.721805572509766 ], [ -76.222640991210938, -13.721805572509766 ], [ -76.222640991210938, -13.720693588256836 ], [ -76.222373962402344, -13.720693588256836 ], [ -76.222358703613281, -13.71986007690424 ], [ -76.222084045410156, -13.71986198425293 ], [ -76.222084045410156, -13.719028472900391 ], [ -76.2218017578125, -13.719028472900391 ], [ -76.2218017578125, -13.71875 ], [ -76.22125244140625, -13.71875 ], [ -76.22125244140625, -13.718471527099609 ], [ -76.220970153808594, -13.718471527099609 ], [ -76.220970153808594, -13.717915534973145 ], [ -76.220695495605412, -13.717915534973145 ], [ -76.220695495605412, -13.716806411743164 ], [ -76.220413208007756, -13.716806411743164 ], [ -76.220413208007756, -13.715415000915527 ], [ -76.220695495605412, -13.715415000915527 ], [ -76.220695495605412, -13.714859008789062 ], [ -76.220413208007756, -13.714861869811955 ], [ -76.220413208007756, -13.711526870727425 ], [ -76.220138549804631, -13.711526870727425 ], [ -76.220138549804631, -13.709583282470703 ], [ -76.220413208007756, -13.709583282470703 ], [ -76.220413208007756, -13.706805229187012 ], [ -76.220138549804631, -13.706805229187012 ], [ -76.220138549804631, -13.705693244934082 ], [ -76.219863891601449, -13.705693244934082 ], [ -76.219863891601449, -13.701804161071721 ], [ -76.219581604003906, -13.701804161071721 ], [ -76.219581604003906, -13.70041561126709 ], [ -76.219863891601449, -13.70041561126709 ], [ -76.219863891601449, -13.699026107788029 ], [ -76.220138549804631, -13.699026107788029 ], [ -76.220138549804631, -13.698470115661564 ], [ -76.220413208007756, -13.698470115661564 ], [ -76.220413208007756, -13.696804046630859 ], [ -76.220695495605412, -13.696805953979435 ], [ -76.220695495605412, -13.695972442626953 ], [ -76.220970153808594, -13.695972442626953 ], [ -76.220970153808594, -13.694581985473633 ], [ -76.22125244140625, -13.694581985473633 ], [ -76.22125244140625, -13.693750381469727 ], [ -76.2218017578125, -13.693750381469727 ], [ -76.2218017578125, -13.691805839538517 ], [ -76.222084045410156, -13.691805839538517 ], [ -76.222084045410156, -13.690695762634277 ], [ -76.222358703613281, -13.690695762634277 ], [ -76.222358703613281, -13.689862251281738 ], [ -76.222640991210938, -13.689862251281738 ], [ -76.222640991210938, -13.688750267028752 ], [ -76.222915649413949, -13.688750267028752 ], [ -76.222915649413949, -13.687637329101449 ], [ -76.223197937011662, -13.687637329101449 ], [ -76.223197937011662, -13.687081336975041 ], [ -76.223472595214787, -13.687084197998047 ], [ -76.223472595214787, -13.686527252197266 ], [ -76.223747253417912, -13.686527252197266 ], [ -76.223747253417912, -13.686248779296875 ], [ -76.224029541015568, -13.686248779296875 ], [ -76.224029541015568, -13.685695648193303 ], [ -76.22430419921875, -13.685695648193303 ], [ -76.22430419921875, -13.684582710266056 ], [ -76.224586486816406, -13.684582710266056 ], [ -76.224586486816406, -13.684026718139592 ], [ -76.224861145019531, -13.684026718139592 ], [ -76.224861145019531, -13.683193206787109 ], [ -76.225135803222656, -13.683193206787109 ], [ -76.225135803222656, -13.682916641235238 ], [ -76.224861145019531, -13.682916641235238 ], [ -76.224861145019531, -13.682639122009221 ], [ -76.22430419921875, -13.682639122009221 ], [ -76.22430419921875, -13.68236064910883 ], [ -76.223747253417912, -13.68236064910883 ], [ -76.223747253417912, -13.682083129882756 ], [ -76.223472595214787, -13.682083129882756 ], [ -76.223472595214787, -13.681804656982365 ], [ -76.223197937011662, -13.681804656982365 ], [ -76.223197937011662, -13.681527137756291 ], [ -76.222915649413949, -13.681527137756291 ], [ -76.222915649413949, -13.6812486648559 ], [ -76.222084045410156, -13.6812486648559 ], [ -76.222084045410156, -13.680971145629883 ], [ -76.221527099609375, -13.680973052978516 ], [ -76.221527099609375, -13.680694580078125 ], [ -76.22125244140625, -13.680694580078125 ], [ -76.22125244140625, -13.68013858795166 ], [ -76.220970153808594, -13.68013858795166 ], [ -76.220970153808594, -13.679026603698674 ], [ -76.22125244140625, -13.679026603698674 ], [ -76.22125244140625, -13.678749084472599 ], [ -76.221527099609375, -13.678750991821289 ], [ -76.221527099609375, -13.678473472595215 ], [ -76.2218017578125, -13.678473472595215 ], [ -76.2218017578125, -13.677916526794434 ], [ -76.222084045410156, -13.677916526794434 ], [ -76.222084045410156, -13.677639007568359 ], [ -76.222358703613281, -13.677639007568359 ], [ -76.222358703613281, -13.676251411437988 ], [ -76.222084045410156, -13.676251411437988 ], [ -76.222084045410156, -13.675695419311523 ], [ -76.2218017578125, -13.675695419311523 ], [ -76.2218017578125, -13.675139427185059 ], [ -76.221527099609375, -13.675139427185059 ], [ -76.221527099609375, -13.674304008483887 ], [ -76.22125244140625, -13.674306869506779 ], [ -76.22125244140625, -13.674025535583496 ], [ -76.220970153808594, -13.674025535583496 ], [ -76.220970153808594, -13.673193931579533 ], [ -76.220695495605412, -13.673193931579533 ], [ -76.220695495605412, -13.672637939453068 ], [ -76.220138549804631, -13.672637939453068 ], [ -76.220138549804631, -13.672081947326603 ], [ -76.219863891601449, -13.672081947326603 ], [ -76.219863891601449, -13.671806335449105 ], [ -76.219306945800781, -13.671806335449105 ], [ -76.219306945800781, -13.672637939453068 ], [ -76.218475341796875, -13.672637939453068 ], [ -76.218475341796875, -13.672360420227051 ], [ -76.218193054199219, -13.672360420227051 ], [ -76.218193054199219, -13.672081947326603 ], [ -76.217918395996094, -13.672081947326603 ], [ -76.217918395996094, -13.671806335449105 ], [ -76.217636108398381, -13.671806335449105 ], [ -76.217636108398381, -13.671250343322697 ], [ -76.217361450195256, -13.671250343322697 ], [ -76.217361450195256, -13.67097187042225 ], [ -76.217086791992131, -13.67097187042225 ], [ -76.217086791992131, -13.670694351196232 ], [ -76.216804504394474, -13.670694351196232 ], [ -76.216804504394474, -13.670140266418457 ], [ -76.216529846191406, -13.670140266418457 ], [ -76.216529846191406, -13.669584274291992 ], [ -76.21624755859375, -13.669584274291992 ], [ -76.21624755859375, -13.669028282165527 ], [ -76.215972900390625, -13.669028282165527 ], [ -76.215972900390625, -13.668749809265137 ], [ -76.2156982421875, -13.668749809265137 ], [ -76.2156982421875, -13.668472290038949 ], [ -76.215415954589844, -13.668472290038949 ], [ -76.215415954589844, -13.668193817138672 ], [ -76.215141296386719, -13.668193817138672 ], [ -76.215141296386719, -13.667916297912541 ], [ -76.214859008789062, -13.667916297912541 ], [ -76.214859008789062, -13.667637825012093 ], [ -76.214584350585881, -13.667637825012093 ], [ -76.214584350585881, -13.666806221008301 ], [ -76.214302062988224, -13.666806221008301 ], [ -76.214302062988224, -13.666250228881836 ], [ -76.214027404785099, -13.666250228881836 ], [ -76.214027404785099, -13.665971755981445 ], [ -76.213470458984318, -13.665971755981445 ], [ -76.213470458984318, -13.665694236755371 ], [ -76.21319580078125, -13.665694236755371 ], [ -76.21319580078125, -13.66541576385498 ], [ -76.212638854980469, -13.66541576385498 ], [ -76.212638854980469, -13.665138244628906 ], [ -76.212364196777344, -13.665140151977539 ], [ -76.212364196777344, -13.664859771728516 ], [ -76.212081909179688, -13.664859771728516 ], [ -76.212081909179688, -13.664305686950684 ], [ -76.211807250976562, -13.664305686950684 ], [ -76.211807250976562, -13.663749694824219 ], [ -76.211524963378906, -13.663749694824219 ], [ -76.211524963378906, -13.663193702697754 ], [ -76.211250305175724, -13.663193702697754 ], [ -76.211250305175724, -13.662639617919865 ], [ -76.210975646972599, -13.662639617919865 ], [ -76.210975646972599, -13.662359237670898 ], [ -76.210693359374943, -13.662359237670898 ], [ -76.210693359374943, -13.661803245544434 ], [ -76.210418701171818, -13.661803245544434 ], [ -76.210418701171818, -13.661250114440918 ], [ -76.209861755371094, -13.661250114440918 ], [ -76.209861755371094, -13.660970687866154 ], [ -76.209587097167969, -13.660970687866154 ], [ -76.209587097167969, -13.66069316864008 ], [ -76.209304809570312, -13.66069316864008 ], [ -76.209304809570312, -13.659861564636117 ], [ -76.209030151367188, -13.659861564636117 ], [ -76.209030151367188, -13.659304618835449 ], [ -76.208747863769531, -13.659304618835449 ], [ -76.208747863769531, -13.659027099609261 ], [ -76.208473205566406, -13.659027099609261 ], [ -76.208473205566406, -13.658471107482853 ], [ -76.20819091796875, -13.658471107482853 ], [ -76.20819091796875, -13.657915115356388 ], [ -76.207916259765568, -13.657917022705078 ], [ -76.207916259765568, -13.657638549804688 ], [ -76.207641601562443, -13.657638549804688 ], [ -76.207641601562443, -13.657082557678223 ], [ -76.207359313964787, -13.657082557678223 ], [ -76.207359313964787, -13.656805038452148 ], [ -76.207107543945312, -13.656805038452148 ], [ -76.207084655761605, -13.656249046325684 ], [ -76.206802368164062, -13.656249046325684 ], [ -76.206802368164062, -13.655693054199105 ], [ -76.206527709960938, -13.655693054199105 ], [ -76.206527709960938, -13.655138969421387 ], [ -76.206253051757812, -13.655138969421387 ], [ -76.206253051757812, -13.654861450195312 ], [ -76.205970764160156, -13.654861450195312 ], [ -76.205970764160156, -13.654026985168457 ], [ -76.205696105957031, -13.654026985168457 ], [ -76.205696105957031, -13.653751373290959 ], [ -76.205413818359375, -13.653751373290959 ], [ -76.205413818359375, -13.653195381164551 ], [ -76.20513916015625, -13.653195381164551 ], [ -76.20513916015625, -13.652639389038086 ], [ -76.204864501953068, -13.652639389038086 ], [ -76.204864501953068, -13.65180492401123 ], [ -76.204582214355412, -13.65180492401123 ], [ -76.204582214355412, -13.651527404785156 ], [ -76.204307556152287, -13.651527404785156 ], [ -76.204307556152287, -13.650973320007267 ], [ -76.204025268554631, -13.650973320007267 ], [ -76.204025268554631, -13.650694847106877 ], [ -76.203750610351562, -13.650694847106877 ], [ -76.203750610351562, -13.650138854980412 ], [ -76.203475952148438, -13.650138854980412 ], [ -76.203475952148438, -13.649861335754338 ], [ -76.203193664550781, -13.649861335754338 ], [ -76.203193664550781, -13.648751258849984 ], [ -76.203475952148438, -13.648751258849984 ], [ -76.203475952148438, -13.647916793823129 ], [ -76.203193664550781, -13.647916793823129 ], [ -76.203193664550781, -13.647639274597111 ], [ -76.202919006347656, -13.647639274597111 ], [ -76.202919006347656, -13.646806716918945 ], [ -76.20263671875, -13.646806716918945 ], [ -76.20263671875, -13.646526336669865 ], [ -76.202362060546875, -13.646529197692871 ], [ -76.202362060546875, -13.645693778991699 ], [ -76.202079772949219, -13.645693778991699 ], [ -76.202079772949219, -13.645137786865234 ], [ -76.201805114746037, -13.645137786865234 ], [ -76.201805114746037, -13.644583702087346 ], [ -76.201530456542912, -13.644583702087346 ], [ -76.201530456542912, -13.642084121704045 ], [ -76.201248168945256, -13.642084121704045 ], [ -76.201248168945256, -13.640693664550724 ], [ -76.200973510742131, -13.640693664550724 ], [ -76.200973510742131, -13.639583587646484 ], [ -76.201248168945256, -13.639583587646484 ], [ -76.201248168945256, -13.639027595519906 ], [ -76.200973510742131, -13.639027595519906 ], [ -76.200973510742131, -13.637638092040959 ], [ -76.200691223144474, -13.637638092040959 ], [ -76.200691223144474, -13.637082099914494 ], [ -76.200416564941406, -13.637084007263184 ], [ -76.200416564941406, -13.636249542236328 ], [ -76.200141906738281, -13.636249542236328 ], [ -76.200141906738281, -13.635136604309082 ], [ -76.199859619140625, -13.635136604309082 ], [ -76.199859619140625, -13.633749008178711 ], [ -76.1995849609375, -13.633749008178711 ], [ -76.1995849609375, -13.63347053527832 ], [ -76.199302673339844, -13.63347053527832 ], [ -76.199302673339844, -13.632081031799316 ], [ -76.199028015136719, -13.632081031799316 ], [ -76.199028015136719, -13.63097095489502 ], [ -76.197914123535099, -13.63097095489502 ], [ -76.197914123535099, -13.632081031799316 ], [ -76.198196411132756, -13.632081031799316 ], [ -76.198196411132756, -13.632918357849121 ], [ -76.198471069335881, -13.632918357849121 ], [ -76.198471069335881, -13.634028434753418 ], [ -76.198753356933537, -13.634028434753418 ], [ -76.198753356933537, -13.635136604309082 ], [ -76.199028015136719, -13.635136604309082 ], [ -76.199028015136719, -13.636249542236328 ], [ -76.199302673339844, -13.636249542236328 ], [ -76.199302673339844, -13.637361526489258 ], [ -76.1995849609375, -13.637361526489258 ], [ -76.1995849609375, -13.638471603393498 ], [ -76.199302673339844, -13.638471603393498 ], [ -76.199302673339844, -13.639306068420353 ], [ -76.198471069335881, -13.639304161071777 ], [ -76.198471069335881, -13.637638092040959 ], [ -76.198196411132756, -13.637638092040959 ], [ -76.198196411132756, -13.635416030883732 ], [ -76.197914123535099, -13.635417938232422 ], [ -76.197914123535099, -13.634028434753418 ], [ -76.197639465331974, -13.634028434753418 ], [ -76.197639465331974, -13.632637023925781 ], [ -76.197364807128906, -13.632637023925781 ], [ -76.197364807128906, -13.63097095489502 ], [ -76.19708251953125, -13.63097095489502 ], [ -76.19708251953125, -13.629583358764592 ], [ -76.196807861328125, -13.629583358764592 ], [ -76.196807861328125, -13.628194808959961 ], [ -76.196525573730469, -13.628194808959961 ], [ -76.196525573730469, -13.627361297607365 ], [ -76.196250915527344, -13.627361297607365 ], [ -76.196250915527344, -13.626251220703125 ], [ -76.195968627929688, -13.626251220703125 ], [ -76.195968627929688, -13.62541675567627 ], [ -76.195693969726562, -13.62541675567627 ], [ -76.195693969726562, -13.624860763549805 ], [ -76.195419311523381, -13.624860763549805 ], [ -76.195419311523381, -13.62458324432373 ], [ -76.194580078124943, -13.62458324432373 ], [ -76.194580078124943, -13.62541675567627 ], [ -76.194862365722599, -13.62541675567627 ], [ -76.194862365722599, -13.6268053054809 ], [ -76.195137023925724, -13.6268053054809 ], [ -76.195137023925724, -13.628079414367676 ], [ -76.195137023925724, -13.628473281860352 ], [ -76.195243835449162, -13.628473281860352 ], [ -76.195419311523381, -13.628473281860352 ], [ -76.195419311523381, -13.629079818725586 ], [ -76.195419311523381, -13.630139350891056 ], [ -76.195693969726562, -13.630139350891056 ], [ -76.195693969726562, -13.631805419921875 ], [ -76.195968627929688, -13.631805419921875 ], [ -76.195968627929688, -13.631931304931584 ], [ -76.195968627929688, -13.63347053527832 ], [ -76.196250915527344, -13.63347053527832 ], [ -76.196250915527344, -13.634327888488713 ], [ -76.196250915527344, -13.635136604309082 ], [ -76.196395874023381, -13.635136604309082 ], [ -76.196525573730469, -13.635136604309082 ], [ -76.196525573730469, -13.635621070861816 ], [ -76.196525573730469, -13.636805534362793 ], [ -76.196807861328125, -13.636805534362793 ], [ -76.196807861328125, -13.638471603393498 ], [ -76.19708251953125, -13.638471603393498 ], [ -76.19708251953125, -13.639306068420353 ], [ -76.196807861328125, -13.639304161071777 ], [ -76.196807861328125, -13.639583587646484 ], [ -76.196525573730469, -13.639583587646484 ], [ -76.196525573730469, -13.639862060546761 ], [ -76.196250915527344, -13.639860153198242 ], [ -76.196250915527344, -13.640693664550724 ], [ -76.195419311523381, -13.640693664550724 ], [ -76.195419311523381, -13.640416145324707 ], [ -76.195137023925724, -13.640416145324707 ], [ -76.195137023925724, -13.639860153198242 ], [ -76.194862365722599, -13.639862060546761 ], [ -76.194862365722599, -13.638471603393498 ], [ -76.193748474121094, -13.638471603393498 ], [ -76.193748474121094, -13.638194084167424 ], [ -76.193473815917969, -13.638194084167424 ], [ -76.193473815917969, -13.637638092040959 ], [ -76.193191528320312, -13.637639999389648 ], [ -76.193191528320312, -13.637361526489258 ], [ -76.192642211914062, -13.637361526489258 ], [ -76.192642211914062, -13.637639999389648 ], [ -76.192359924316406, -13.637638092040959 ], [ -76.192359924316406, -13.637915611267033 ], [ -76.192085266113224, -13.637915611267033 ], [ -76.192085266113224, -13.636249542236328 ], [ -76.191802978515568, -13.636249542236328 ], [ -76.191802978515568, -13.635416030883732 ], [ -76.190971374511719, -13.635416030883732 ], [ -76.190971374511719, -13.634859085083008 ], [ -76.190696716308594, -13.634859085083008 ], [ -76.190696716308594, -13.633749008178711 ], [ -76.190971374511719, -13.633749008178711 ], [ -76.190971374511719, -13.63347053527832 ], [ -76.191253662109261, -13.63347053527832 ], [ -76.191253662109261, -13.631526947021428 ], [ -76.190971374511719, -13.631526947021428 ], [ -76.190971374511719, -13.628473281860352 ], [ -76.190696716308594, -13.628473281860352 ], [ -76.190696716308594, -13.627917289733773 ], [ -76.190139770507812, -13.627917289733773 ], [ -76.190139770507812, -13.627638816833496 ], [ -76.190414428710938, -13.627638816833496 ], [ -76.190414428710938, -13.627361297607365 ], [ -76.190696716308594, -13.627361297607365 ], [ -76.190696716308594, -13.6268053054809 ], [ -76.190971374511719, -13.6268053054809 ], [ -76.190971374511719, -13.62652683258051 ], [ -76.191253662109261, -13.62652683258051 ], [ -76.191253662109261, -13.624027252197152 ], [ -76.190971374511719, -13.624029159545898 ], [ -76.190971374511719, -13.623748779296875 ], [ -76.190696716308594, -13.623748779296875 ], [ -76.190696716308594, -13.623194694519043 ], [ -76.190414428710938, -13.623194694519043 ], [ -76.190414428710938, -13.622638702392578 ], [ -76.190139770507812, -13.622638702392578 ], [ -76.190139770507812, -13.621248245239258 ], [ -76.189857482910156, -13.62125110626215 ], [ -76.189857482910156, -13.618193626403809 ], [ -76.189582824707031, -13.618193626403809 ], [ -76.189582824707031, -13.616248130798283 ], [ -76.189308166503906, -13.616248130798283 ], [ -76.189308166503906, -13.614027976989746 ], [ -76.189025878906193, -13.614027976989746 ], [ -76.189025878906193, -13.61180591583252 ], [ -76.188751220703068, -13.61180591583252 ], [ -76.188751220703068, -13.609306335449162 ], [ -76.188468933105412, -13.609306335449162 ], [ -76.188468933105412, -13.606527328491097 ], [ -76.188194274902287, -13.606527328491097 ], [ -76.188194274902287, -13.603193283080941 ], [ -76.187919616699219, -13.603195190429688 ], [ -76.187919616699219, -13.601527214050293 ], [ -76.187637329101562, -13.601527214050293 ], [ -76.187637329101562, -13.59847259521473 ], [ -76.187919616699219, -13.59847259521473 ], [ -76.187919616699219, -13.598193168640137 ], [ -76.188194274902287, -13.598193168640137 ], [ -76.188194274902287, -13.597083091735783 ], [ -76.187919616699219, -13.597083091735783 ], [ -76.187919616699219, -13.595138549804688 ], [ -76.187637329101562, -13.595138549804688 ], [ -76.187637329101562, -13.594577789306641 ], [ -76.187637329101562, -13.591250419616699 ], [ -76.187362670898438, -13.591250419616699 ], [ -76.187362670898438, -13.588472366332951 ], [ -76.187080383300781, -13.588472366332951 ], [ -76.187080383300781, -13.586250305175724 ], [ -76.186805725097656, -13.586250305175724 ], [ -76.186805725097656, -13.583749771118164 ], [ -76.186531066894531, -13.583749771118164 ], [ -76.186531066894531, -13.581250190734863 ], [ -76.186248779296875, -13.581250190734863 ], [ -76.186248779296875, -13.579027175903263 ], [ -76.185974121093693, -13.579027175903263 ], [ -76.185974121093693, -13.576805114746037 ], [ -76.186248779296875, -13.576805114746037 ], [ -76.186248779296875, -13.574583053588754 ], [ -76.186531066894531, -13.574583053588754 ], [ -76.186531066894531, -13.572360992431641 ], [ -76.186248779296875, -13.572360992431641 ], [ -76.186248779296875, -13.571249008178711 ], [ -76.186531066894531, -13.571249008178711 ], [ -76.186531066894531, -13.570138931274414 ], [ -76.186805725097656, -13.570138931274414 ], [ -76.186805725097656, -13.56986141204834 ], [ -76.187080383300781, -13.56986141204834 ], [ -76.187080383300781, -13.568195343017578 ], [ -76.186805725097656, -13.568195343017578 ], [ -76.186805725097656, -13.567639350891113 ], [ -76.186531066894531, -13.567639350891113 ], [ -76.186531066894531, -13.566250801086369 ], [ -76.186805725097656, -13.566250801086369 ], [ -76.186805725097656, -13.565973281860295 ], [ -76.187080383300781, -13.565973281860295 ], [ -76.187080383300781, -13.565693855285645 ], [ -76.187400817871094, -13.565693855285645 ], [ -76.187637329101562, -13.565693855285645 ], [ -76.187637329101562, -13.563471794128418 ], [ -76.187919616699219, -13.563471794128418 ], [ -76.187919616699219, -13.562915802001953 ], [ -76.187637329101562, -13.562915802001953 ], [ -76.187637329101562, -13.561805725097656 ], [ -76.187362670898438, -13.561805725097656 ], [ -76.187362670898438, -13.561528205871582 ], [ -76.187080383300781, -13.561528205871582 ], [ -76.187080383300781, -13.560970306396428 ], [ -76.186866760253793, -13.560970306396428 ], [ -76.186805725097656, -13.559860229492188 ], [ -76.187080383300781, -13.559862136840763 ], [ -76.187080383300781, -13.559027671813908 ], [ -76.186805725097656, -13.559027671813908 ], [ -76.186805725097656, -13.557082176208496 ], [ -76.187080383300781, -13.557082176208496 ], [ -76.187080383300781, -13.555972099304142 ], [ -76.186958312988224, -13.555972099304142 ], [ -76.186805725097656, -13.555972099304142 ], [ -76.186805725097656, -13.555693626403752 ], [ -76.186531066894531, -13.555693626403752 ], [ -76.186531066894531, -13.555416107177734 ], [ -76.186248779296875, -13.555418014526367 ], [ -76.186248779296875, -13.555137634277287 ], [ -76.186531066894531, -13.555137634277287 ], [ -76.186531066894531, -13.55328464508051 ], [ -76.186531066894531, -13.551804542541504 ], [ -76.186805725097656, -13.551804542541504 ], [ -76.186805725097656, -13.55152702331543 ], [ -76.187080383300781, -13.55152702331543 ], [ -76.187080383300781, -13.551252365112305 ], [ -76.186805725097656, -13.551252365112305 ], [ -76.186805725097656, -13.549859046935921 ], [ -76.187080383300781, -13.549860954284668 ], [ -76.187080383300781, -13.549583435058594 ], [ -76.186805725097656, -13.549583435058594 ], [ -76.186805725097656, -13.547917366027775 ], [ -76.187080383300781, -13.547917366027775 ], [ -76.187080383300781, -13.545416831970158 ], [ -76.186973571777344, -13.545416831970158 ], [ -76.186805725097656, -13.545416831970158 ], [ -76.186805725097656, -13.543748855590763 ], [ -76.186531066894531, -13.543748855590763 ], [ -76.186531066894531, -13.543471336364746 ], [ -76.186805725097656, -13.543473243713379 ], [ -76.186805725097656, -13.543194770812988 ], [ -76.18719482421875, -13.543194770812988 ], [ -76.187362670898438, -13.543194770812988 ], [ -76.187362670898438, -13.541573524475098 ], [ -76.187362670898438, -13.540972709655762 ], [ -76.187080383300781, -13.540972709655762 ], [ -76.187080383300781, -13.540695190429688 ], [ -76.186805725097656, -13.540695190429688 ], [ -76.186805725097656, -13.540416717529297 ], [ -76.186531066894531, -13.540416717529297 ], [ -76.186531066894531, -13.538472175598088 ], [ -76.186805725097656, -13.538472175598088 ], [ -76.186805725097656, -13.53791618347168 ], [ -76.187080383300781, -13.53791618347168 ], [ -76.187080383300781, -13.537637710571232 ], [ -76.187362670898438, -13.537637710571232 ], [ -76.187362670898438, -13.532637596130314 ], [ -76.187637329101562, -13.532637596130314 ], [ -76.187637329101562, -13.529713630676213 ], [ -76.187637329101562, -13.528194427490234 ], [ -76.187789916992131, -13.528194427490234 ], [ -76.187919616699219, -13.528194427490234 ], [ -76.187919616699219, -13.527084350585938 ], [ -76.187797546386662, -13.527084350585938 ], [ -76.187637329101562, -13.527084350585938 ], [ -76.187637329101562, -13.524861335754338 ], [ -76.187919616699219, -13.524861335754338 ], [ -76.187919616699219, -13.521248817443734 ], [ -76.188194274902287, -13.521248817443734 ], [ -76.188194274902287, -13.520694732666016 ], [ -76.187919616699219, -13.520694732666016 ], [ -76.187919616699219, -13.518749237060547 ], [ -76.187362670898438, -13.51875114440918 ], [ -76.187362670898438, -13.517916679382324 ], [ -76.187637329101562, -13.517916679382324 ], [ -76.187637329101562, -13.51652717590332 ], [ -76.187919616699219, -13.516529083251896 ], [ -76.187919616699219, -13.51402568817133 ], [ -76.188194274902287, -13.51402568817133 ], [ -76.188194274902287, -13.512082099914494 ], [ -76.188468933105412, -13.512082099914494 ], [ -76.188468933105412, -13.510416030883789 ], [ -76.188751220703068, -13.510416030883789 ], [ -76.188751220703068, -13.508472442626953 ], [ -76.189025878906193, -13.508472442626953 ], [ -76.189025878906193, -13.505140304565373 ], [ -76.189308166503906, -13.505140304565373 ], [ -76.189308166503906, -13.499299049377385 ], [ -76.189308166503906, -13.498748779296875 ], [ -76.189582824707031, -13.498748779296875 ], [ -76.189582824707031, -13.497915267944336 ], [ -76.189857482910156, -13.497915267944336 ], [ -76.189857482910156, -13.496803283691349 ], [ -76.190139770507812, -13.496803283691349 ], [ -76.190139770507812, -13.494583129882756 ], [ -76.190414428710938, -13.494583129882756 ], [ -76.190414428710938, -13.492917060851994 ], [ -76.190139770507812, -13.492917060851994 ], [ -76.190139770507812, -13.492638587951546 ], [ -76.189857482910156, -13.492638587951546 ], [ -76.189857482910156, -13.491526603698674 ], [ -76.189582824707031, -13.491526603698674 ], [ -76.189582824707031, -13.490973472595215 ], [ -76.189857482910156, -13.490973472595215 ], [ -76.189857482910156, -13.490693092346135 ], [ -76.190414428710938, -13.490693092346135 ], [ -76.190414428710938, -13.489583015441781 ], [ -76.190696716308594, -13.489583015441781 ], [ -76.190696716308594, -13.487360954284668 ], [ -76.190971374511719, -13.487360954284668 ], [ -76.190971374511719, -13.48708343505848 ], [ -76.190696716308594, -13.48708343505848 ], [ -76.190696716308594, -13.486804008483887 ], [ -76.190971374511719, -13.486804008483887 ], [ -76.190971374511719, -13.486248016357422 ], [ -76.190696716308594, -13.486250877380371 ], [ -76.190696716308594, -13.485694885253906 ], [ -76.190971374511719, -13.485694885253906 ], [ -76.190971374511719, -13.485416412353516 ], [ -76.191253662109261, -13.485416412353516 ], [ -76.191253662109261, -13.485137939453068 ], [ -76.191528320312443, -13.485137939453068 ], [ -76.191528320312443, -13.484027862548714 ], [ -76.191253662109261, -13.484027862548714 ], [ -76.191253662109261, -13.483750343322697 ], [ -76.190971374511719, -13.483750343322697 ], [ -76.190971374511719, -13.481249809265137 ], [ -76.191253662109261, -13.481249809265137 ], [ -76.191253662109261, -13.480972290039006 ], [ -76.190971374511719, -13.480972290039006 ], [ -76.190971374511719, -13.47902774810791 ], [ -76.191253662109261, -13.47902774810791 ], [ -76.191253662109261, -13.478194236755371 ], [ -76.190971374511719, -13.478194236755371 ], [ -76.190971374511719, -13.475137710571289 ], [ -76.191253662109261, -13.475137710571289 ], [ -76.191253662109261, -13.474303245544434 ], [ -76.191528320312443, -13.474306106567383 ], [ -76.191528320312443, -13.474027633666935 ], [ -76.191253662109261, -13.474027633666935 ], [ -76.191253662109261, -13.472081184387207 ], [ -76.191528320312443, -13.472084045410099 ], [ -76.191528320312443, -13.471248626708871 ], [ -76.191253662109261, -13.471248626708871 ], [ -76.191253662109261, -13.470971107482853 ], [ -76.190971374511719, -13.470971107482853 ], [ -76.190971374511719, -13.470138549804688 ], [ -76.190696716308594, -13.470138549804688 ], [ -76.190696716308594, -13.46874904632557 ], [ -76.190414428710938, -13.46874904632557 ], [ -76.190414428710938, -13.468193054199162 ], [ -76.190139770507812, -13.468193054199162 ], [ -76.190139770507812, -13.466526985168457 ], [ -76.189857482910156, -13.466526985168457 ], [ -76.189857482910156, -13.46541690826416 ], [ -76.189582824707031, -13.46541690826416 ], [ -76.189582824707031, -13.465139389038086 ], [ -76.189308166503906, -13.465139389038086 ], [ -76.189308166503906, -13.464860916137695 ], [ -76.189025878906193, -13.464860916137695 ], [ -76.189025878906193, -13.464583396911621 ], [ -76.188751220703068, -13.464583396911621 ], [ -76.188751220703068, -13.464027404785156 ], [ -76.188468933105412, -13.464027404785156 ], [ -76.188468933105412, -13.46430492401123 ], [ -76.188194274902287, -13.46430492401123 ], [ -76.188194274902287, -13.464027404785156 ], [ -76.187919616699219, -13.464027404785156 ], [ -76.187919616699219, -13.463473320007267 ], [ -76.188194274902287, -13.463473320007267 ], [ -76.188194274902287, -13.461528778076172 ], [ -76.187919616699219, -13.461528778076172 ], [ -76.187919616699219, -13.460139274597111 ], [ -76.188194274902287, -13.460139274597111 ], [ -76.188194274902287, -13.45875072479248 ], [ -76.187919616699219, -13.45875072479248 ], [ -76.187919616699219, -13.4584703445434 ], [ -76.187637329101562, -13.458473205566293 ], [ -76.187637329101562, -13.458193778991699 ], [ -76.187919616699219, -13.458193778991699 ], [ -76.187919616699219, -13.457916259765625 ], [ -76.188468933105412, -13.457919120788574 ], [ -76.188468933105412, -13.456804275512582 ], [ -76.188194274902287, -13.456804275512582 ], [ -76.188194274902287, -13.455692291259709 ], [ -76.187919616699219, -13.455694198608398 ], [ -76.187919616699219, -13.455415725708008 ], [ -76.188194274902287, -13.455415725708008 ], [ -76.188194274902287, -13.455138206481934 ], [ -76.188468933105412, -13.455138206481934 ], [ -76.188468933105412, -13.45402812957758 ], [ -76.188751220703068, -13.45402812957758 ], [ -76.188751220703068, -13.451527595519963 ], [ -76.188468933105412, -13.451527595519963 ], [ -76.188468933105412, -13.450694084167424 ], [ -76.188751220703068, -13.450694084167424 ], [ -76.188751220703068, -13.449861526489258 ], [ -76.189025878906193, -13.449861526489258 ], [ -76.189025878906193, -13.448472023010197 ], [ -76.189308166503906, -13.448472023010197 ], [ -76.189308166503906, -13.44819355010975 ], [ -76.189025878906193, -13.44819355010975 ], [ -76.189025878906193, -13.447916030883732 ], [ -76.188751220703068, -13.447917938232422 ], [ -76.188751220703068, -13.445414543151855 ], [ -76.189025878906193, -13.445414543151855 ], [ -76.189025878906193, -13.44347095489502 ], [ -76.189308166503906, -13.44347095489502 ], [ -76.189308166503906, -13.441804885864201 ], [ -76.189582824707031, -13.441804885864201 ], [ -76.189582824707031, -13.440973281860238 ], [ -76.189857482910156, -13.440973281860238 ], [ -76.189857482910156, -13.44041728973383 ], [ -76.190139770507812, -13.44041728973383 ], [ -76.190139770507812, -13.43902683258051 ], [ -76.189857482910156, -13.43902683258051 ], [ -76.189857482910156, -13.438749313354435 ], [ -76.190139770507812, -13.438751220703125 ], [ -76.190139770507812, -13.434582710266113 ], [ -76.190414428710938, -13.434582710266113 ], [ -76.190414428710938, -13.434305191040039 ], [ -76.190696716308594, -13.434305191040039 ], [ -76.190696716308594, -13.433748245239258 ], [ -76.190971374511719, -13.433751106262207 ], [ -76.190971374511719, -13.43347263336176 ], [ -76.191253662109261, -13.43347263336176 ], [ -76.191253662109261, -13.432916641235352 ], [ -76.191528320312443, -13.432916641235352 ], [ -76.191528320312443, -13.431806564330998 ], [ -76.191802978515568, -13.431806564330998 ], [ -76.191802978515568, -13.42874813079834 ], [ -76.192085266113224, -13.428750038146973 ], [ -76.192085266113224, -13.427915573120117 ], [ -76.192359924316406, -13.427915573120117 ], [ -76.192359924316406, -13.427362442016602 ], [ -76.192642211914062, -13.427362442016602 ], [ -76.192642211914062, -13.426250457763672 ], [ -76.192359924316406, -13.426250457763672 ], [ -76.192359924316406, -13.425971984863281 ], [ -76.192085266113224, -13.425971984863281 ], [ -76.192085266113224, -13.425694465637207 ], [ -76.192359924316406, -13.425694465637207 ], [ -76.192359924316406, -13.425415992736816 ], [ -76.192916870117188, -13.425415992736816 ], [ -76.192916870117188, -13.425138473510629 ], [ -76.193191528320312, -13.425138473510629 ], [ -76.193191528320312, -13.423749923706055 ], [ -76.193473815917969, -13.423749923706055 ], [ -76.193473815917969, -13.42319393157959 ], [ -76.193748474121094, -13.42319393157959 ], [ -76.193748474121094, -13.422362327575627 ], [ -76.19403076171875, -13.422362327575627 ], [ -76.19403076171875, -13.42208194732666 ], [ -76.193748474121094, -13.422083854675236 ], [ -76.193748474121094, -13.421806335449219 ], [ -76.19403076171875, -13.421806335449219 ], [ -76.19403076171875, -13.420694351196289 ], [ -76.194305419921761, -13.420694351196289 ], [ -76.194305419921761, -13.4201402664184 ], [ -76.194580078124943, -13.4201402664184 ], [ -76.194580078124943, -13.419305801391545 ], [ -76.194862365722599, -13.419305801391545 ], [ -76.194862365722599, -13.418748855590707 ], [ -76.195137023925724, -13.418748855590707 ], [ -76.195137023925724, -13.41763973236084 ], [ -76.195419311523381, -13.41763973236084 ], [ -76.195419311523381, -13.416483879089242 ], [ -76.195419311523381, -13.416249275207406 ], [ -76.195693969726562, -13.416249275207406 ], [ -76.195693969726562, -13.415693283080998 ], [ -76.195968627929688, -13.415693283080998 ], [ -76.195968627929688, -13.415416717529297 ], [ -76.196250915527344, -13.415416717529297 ], [ -76.196250915527344, -13.414583206176758 ], [ -76.196525573730469, -13.414583206176758 ], [ -76.196525573730469, -13.414027214050293 ], [ -76.196807861328125, -13.414027214050293 ], [ -76.196807861328125, -13.413473129272404 ], [ -76.19708251953125, -13.413473129272404 ], [ -76.19708251953125, -13.411803245544377 ], [ -76.197364807128906, -13.411805152893066 ], [ -76.197364807128906, -13.411526679992676 ], [ -76.197639465331974, -13.411526679992676 ], [ -76.197639465331974, -13.410693168640137 ], [ -76.197914123535099, -13.410693168640137 ], [ -76.197914123535099, -13.410139083862248 ], [ -76.198196411132756, -13.410139083862248 ], [ -76.198196411132756, -13.409027099609375 ], [ -76.197914123535099, -13.409029006958008 ], [ -76.197914123535099, -13.408748626708928 ], [ -76.198196411132756, -13.408748626708928 ], [ -76.198196411132756, -13.40847110748291 ], [ -76.198471069335881, -13.408473014831429 ], [ -76.198471069335881, -13.407638549804574 ], [ -76.198753356933537, -13.407638549804574 ], [ -76.198753356933537, -13.407361030578556 ], [ -76.199028015136719, -13.407361030578556 ], [ -76.199028015136719, -13.406805038452092 ], [ -76.199302673339844, -13.406805038452092 ], [ -76.199302673339844, -13.40624809265131 ], [ -76.1995849609375, -13.40624809265131 ], [ -76.1995849609375, -13.405692100524846 ], [ -76.199859619140625, -13.405692100524846 ], [ -76.199859619140625, -13.404026031494141 ], [ -76.200141906738281, -13.404026031494141 ], [ -76.200141906738281, -13.403470039367562 ], [ -76.200416564941406, -13.403470039367562 ], [ -76.200416564941406, -13.402915954589844 ], [ -76.200691223144474, -13.402915954589844 ], [ -76.200691223144474, -13.40263843536377 ], [ -76.201248168945256, -13.40263843536377 ], [ -76.201248168945256, -13.40180587768549 ], [ -76.201530456542912, -13.40180587768549 ], [ -76.201530456542912, -13.40069389343256 ], [ -76.201805114746037, -13.40069389343256 ], [ -76.201805114746037, -13.400137901306152 ], [ -76.202079772949219, -13.400137901306152 ], [ -76.202079772949219, -13.399581909179688 ], [ -76.202362060546875, -13.399581909179688 ], [ -76.202362060546875, -13.399027824401799 ], [ -76.20263671875, -13.399027824401799 ], [ -76.20263671875, -13.397640228271484 ], [ -76.202919006347656, -13.397640228271484 ], [ -76.202919006347656, -13.396805763244629 ], [ -76.203193664550781, -13.396805763244629 ], [ -76.203193664550781, -13.396528244018441 ], [ -76.203475952148438, -13.396528244018441 ], [ -76.203475952148438, -13.396249771118164 ], [ -76.203193664550781, -13.396249771118164 ], [ -76.203193664550781, -13.395972251892033 ], [ -76.203475952148438, -13.395972251892033 ], [ -76.203475952148438, -13.395137786865178 ], [ -76.203750610351562, -13.395137786865178 ], [ -76.203750610351562, -13.394303321838322 ], [ -76.204025268554631, -13.394303321838322 ], [ -76.204025268554631, -13.393750190734863 ], [ -76.204307556152287, -13.393750190734863 ], [ -76.204307556152287, -13.393471717834473 ], [ -76.204582214355412, -13.393471717834473 ], [ -76.204582214355412, -13.393191337585392 ], [ -76.204864501953068, -13.393194198608285 ], [ -76.204864501953068, -13.392361640930176 ], [ -76.20513916015625, -13.392361640930176 ], [ -76.20513916015625, -13.391805648803711 ], [ -76.205413818359375, -13.391805648803711 ], [ -76.205413818359375, -13.390969276428166 ], [ -76.205696105957031, -13.390971183776855 ], [ -76.205696105957031, -13.390695571899357 ], [ -76.205970764160156, -13.390695571899357 ], [ -76.205970764160156, -13.390138626098519 ], [ -76.206253051757812, -13.390138626098519 ], [ -76.206253051757812, -13.389582633972111 ], [ -76.206527709960938, -13.389582633972111 ], [ -76.206527709960938, -13.388749122619572 ], [ -76.206802368164062, -13.388749122619572 ], [ -76.206802368164062, -13.387916564941406 ], [ -76.207084655761605, -13.387916564941406 ], [ -76.207084655761605, -13.387360572814941 ], [ -76.207359313964787, -13.387360572814941 ], [ -76.207359313964787, -13.386804580688363 ], [ -76.207641601562443, -13.386804580688363 ], [ -76.207641601562443, -13.385971069335881 ], [ -76.207916259765568, -13.385971069335881 ], [ -76.207916259765568, -13.384860992431641 ], [ -76.20819091796875, -13.384860992431641 ], [ -76.20819091796875, -13.384305000305176 ], [ -76.208473205566406, -13.384305000305176 ], [ -76.208473205566406, -13.38347339630127 ], [ -76.208747863769531, -13.38347339630127 ], [ -76.208747863769531, -13.382917404174805 ], [ -76.209030151367188, -13.382917404174805 ], [ -76.209030151367188, -13.382638931274414 ], [ -76.209304809570312, -13.382638931274414 ], [ -76.209304809570312, -13.382917404174805 ], [ -76.209587097167969, -13.382917404174805 ], [ -76.209587097167969, -13.382638931274414 ], [ -76.209861755371094, -13.382638931274414 ], [ -76.209861755371094, -13.382082939147949 ], [ -76.210136413574105, -13.382082939147949 ], [ -76.210136413574105, -13.381251335144043 ], [ -76.210418701171818, -13.381251335144043 ], [ -76.210418701171818, -13.380416870117188 ], [ -76.210693359374943, -13.380416870117188 ], [ -76.210693359374943, -13.379306793212834 ], [ -76.210975646972599, -13.379306793212834 ], [ -76.210975646972599, -13.378750801086369 ], [ -76.211250305175724, -13.378750801086369 ], [ -76.211250305175724, -13.378194808959904 ], [ -76.211524963378906, -13.378194808959904 ], [ -76.211524963378906, -13.377916336059513 ], [ -76.211807250976562, -13.377916336059513 ], [ -76.211807250976562, -13.377360343933049 ], [ -76.212364196777344, -13.377360343933049 ], [ -76.212364196777344, -13.376804351806584 ], [ -76.212638854980469, -13.376804351806584 ], [ -76.212638854980469, -13.376527786254883 ], [ -76.212913513183594, -13.376527786254883 ], [ -76.212913513183594, -13.375971794128418 ], [ -76.21319580078125, -13.375971794128418 ], [ -76.21319580078125, -13.375415802001953 ], [ -76.213470458984318, -13.375415802001953 ], [ -76.213470458984318, -13.374582290649357 ], [ -76.213752746581974, -13.374582290649357 ], [ -76.213752746581974, -13.374305725097656 ], [ -76.214027404785099, -13.374305725097656 ], [ -76.214027404785099, -13.372914314269963 ], [ -76.214302062988224, -13.372914314269963 ], [ -76.214302062988224, -13.372360229492188 ], [ -76.214584350585881, -13.372360229492188 ], [ -76.214584350585881, -13.371804237365609 ], [ -76.214859008789062, -13.371804237365609 ], [ -76.214859008789062, -13.371248245239201 ], [ -76.215141296386719, -13.371250152587891 ], [ -76.215141296386719, -13.370694160461426 ], [ -76.215415954589844, -13.370694160461426 ], [ -76.215415954589844, -13.370138168334961 ], [ -76.2156982421875, -13.370138168334961 ], [ -76.2156982421875, -13.369582176208496 ], [ -76.215972900390625, -13.369582176208496 ], [ -76.215972900390625, -13.369028091430607 ], [ -76.216529846191406, -13.369028091430607 ], [ -76.216529846191406, -13.368472099304199 ], [ -76.216804504394474, -13.368472099304199 ], [ -76.216804504394474, -13.367916107177734 ], [ -76.217086791992131, -13.367918014526254 ], [ -76.217086791992131, -13.367637634277344 ], [ -76.217361450195256, -13.367637634277344 ], [ -76.217361450195256, -13.36736011505127 ], [ -76.217636108398381, -13.36736011505127 ], [ -76.217636108398381, -13.366806030273381 ], [ -76.217918395996094, -13.366806030273381 ], [ -76.217918395996094, -13.36652755737299 ], [ -76.218193054199219, -13.36652755737299 ], [ -76.218193054199219, -13.366250038146916 ], [ -76.218475341796875, -13.366250038146916 ], [ -76.218475341796875, -13.365693092346135 ], [ -76.21875, -13.365693092346135 ], [ -76.21875, -13.36513710021967 ], [ -76.219024658203125, -13.36513710021967 ], [ -76.219024658203125, -13.364581108093205 ], [ -76.219306945800781, -13.364583969116097 ], [ -76.219306945800781, -13.364304542541504 ], [ -76.219581604003906, -13.364304542541504 ], [ -76.219581604003906, -13.363748550415039 ], [ -76.219863891601449, -13.363748550415039 ], [ -76.219863891601449, -13.36319637298584 ], [ -76.220138549804631, -13.36319637298584 ], [ -76.220138549804631, -13.362639427185059 ], [ -76.220413208007756, -13.362639427185059 ], [ -76.220413208007756, -13.361527442932129 ], [ -76.220695495605412, -13.361527442932129 ], [ -76.220695495605412, -13.36097335815424 ], [ -76.220970153808594, -13.36097335815424 ], [ -76.220970153808594, -13.360136985778809 ], [ -76.22125244140625, -13.360138893127385 ], [ -76.22125244140625, -13.359861373901367 ], [ -76.221527099609375, -13.359861373901367 ], [ -76.221527099609375, -13.360138893127385 ], [ -76.2218017578125, -13.360138893127385 ], [ -76.2218017578125, -13.359861373901367 ], [ -76.222084045410156, -13.359861373901367 ], [ -76.222084045410156, -13.358751296997013 ], [ -76.222358703613281, -13.358751296997013 ], [ -76.222358703613281, -13.358195304870549 ], [ -76.222640991210938, -13.358195304870549 ], [ -76.222640991210938, -13.357916831970158 ], [ -76.222915649413949, -13.357916831970158 ], [ -76.222915649413949, -13.357360839843693 ], [ -76.223197937011662, -13.357360839843693 ], [ -76.223197937011662, -13.356527328491211 ], [ -76.223472595214787, -13.356527328491211 ], [ -76.223472595214787, -13.355971336364746 ], [ -76.223747253417912, -13.355973243713265 ], [ -76.223747253417912, -13.355694770812988 ], [ -76.224029541015568, -13.355694770812988 ], [ -76.224029541015568, -13.35513877868641 ], [ -76.224586486816406, -13.35513877868641 ], [ -76.224586486816406, -13.354861259460392 ], [ -76.22430419921875, -13.354861259460392 ], [ -76.22430419921875, -13.354582786560002 ], [ -76.224586486816406, -13.354582786560002 ], [ -76.224586486816406, -13.354305267333928 ], [ -76.225135803222656, -13.354305267333928 ], [ -76.225135803222656, -13.354028701782227 ], [ -76.225418090820312, -13.354028701782227 ], [ -76.225418090820312, -13.353749275207463 ], [ -76.225692749023438, -13.353751182556152 ], [ -76.225692749023438, -13.353472709655762 ], [ -76.225975036621094, -13.353472709655762 ], [ -76.225975036621094, -13.353195190429688 ], [ -76.226249694824162, -13.353195190429688 ], [ -76.226249694824162, -13.352916717529297 ], [ -76.226524353027287, -13.352916717529297 ], [ -76.226524353027287, -13.352360725402832 ], [ -76.226806640624943, -13.352360725402832 ], [ -76.226806640624943, -13.351529121398926 ], [ -76.227081298828068, -13.351529121398926 ], [ -76.227081298828068, -13.350973129272461 ], [ -76.227363586425724, -13.350973129272461 ], [ -76.227363586425724, -13.350693702697697 ], [ -76.227638244628906, -13.350693702697697 ], [ -76.227638244628906, -13.350137710571289 ], [ -76.227912902832031, -13.350137710571289 ], [ -76.227912902832031, -13.349584579467717 ], [ -76.228195190429688, -13.349584579467717 ], [ -76.228195190429688, -13.34930419921875 ], [ -76.228469848632812, -13.34930419921875 ], [ -76.228469848632812, -13.348748207092285 ], [ -76.228752136230469, -13.348750114440861 ], [ -76.228752136230469, -13.348471641540471 ], [ -76.228469848632812, -13.348471641540471 ], [ -76.228469848632812, -13.348194122314396 ], [ -76.228752136230469, -13.348194122314396 ], [ -76.228752136230469, -13.347915649414006 ], [ -76.22930908203125, -13.347915649414006 ], [ -76.22930908203125, -13.347638130187988 ], [ -76.229583740234318, -13.347638130187988 ], [ -76.229583740234318, -13.347082138061523 ], [ -76.229858398437443, -13.347082138061523 ], [ -76.229858398437443, -13.346805572509766 ], [ -76.230140686035099, -13.346805572509766 ], [ -76.230140686035099, -13.346249580383187 ], [ -76.230415344238224, -13.346249580383187 ], [ -76.230415344238224, -13.345693588256779 ], [ -76.230697631835938, -13.345693588256779 ], [ -76.230697631835938, -13.345416069030705 ], [ -76.230972290039062, -13.345416069030705 ], [ -76.230972290039062, -13.34486007690424 ], [ -76.230697631835938, -13.34486007690424 ], [ -76.230697631835938, -13.344584465026855 ], [ -76.230972290039062, -13.344584465026855 ], [ -76.230972290039062, -13.344305992126465 ], [ -76.231246948242188, -13.344305992126465 ], [ -76.231246948242188, -13.34375 ], [ -76.231529235839844, -13.34375 ], [ -76.231529235839844, -13.343471527099609 ], [ -76.231803894042969, -13.343471527099609 ], [ -76.231803894042969, -13.343194007873421 ], [ -76.232086181640625, -13.343194007873421 ], [ -76.232086181640625, -13.342915534973145 ], [ -76.23236083984375, -13.342915534973145 ], [ -76.23236083984375, -13.342638015747013 ], [ -76.232635498046818, -13.342639923095703 ], [ -76.232635498046818, -13.342362403869629 ], [ -76.233192443847599, -13.342362403869629 ], [ -76.233192443847599, -13.341527938842773 ], [ -76.233474731445256, -13.341527938842773 ], [ -76.233474731445256, -13.341250419616699 ], [ -76.233749389648438, -13.341250419616699 ], [ -76.233749389648438, -13.340971946716309 ], [ -76.234024047851562, -13.340971946716309 ], [ -76.234024047851562, -13.340415954589844 ], [ -76.234306335449219, -13.34041786193842 ], [ -76.234306335449219, -13.340138435363713 ], [ -76.234580993652344, -13.340138435363713 ], [ -76.234580993652344, -13.339584350585938 ], [ -76.23486328125, -13.339584350585938 ], [ -76.23486328125, -13.339305877685547 ], [ -76.235137939453125, -13.339305877685547 ], [ -76.235137939453125, -13.338749885559082 ], [ -76.235420227050781, -13.338749885559082 ], [ -76.235420227050781, -13.338195800781193 ], [ -76.235694885253793, -13.338195800781193 ], [ -76.235694885253793, -13.337915420532227 ], [ -76.235969543456974, -13.337915420532227 ], [ -76.235969543456974, -13.337639808654728 ], [ -76.236526489257756, -13.337639808654728 ], [ -76.236526489257756, -13.337082862853947 ], [ -76.236808776855412, -13.337082862853947 ], [ -76.236808776855412, -13.336805343627873 ], [ -76.237640380859375, -13.336805343627873 ], [ -76.237640380859375, -13.336526870727482 ], [ -76.2379150390625, -13.336526870727482 ], [ -76.2379150390625, -13.336249351501408 ], [ -76.238197326660156, -13.336249351501408 ], [ -76.238197326660156, -13.335693359375 ], [ -76.238471984863281, -13.335693359375 ], [ -76.238471984863281, -13.333748817443791 ], [ -76.238746643066293, -13.333748817443791 ], [ -76.238746643066293, -13.333471298217717 ], [ -76.240135192871094, -13.333473205566406 ], [ -76.240135192871094, -13.333194732666016 ], [ -76.24041748046875, -13.333194732666016 ], [ -76.24041748046875, -13.332917213439941 ], [ -76.240692138671875, -13.332917213439941 ], [ -76.240692138671875, -13.332638740539551 ], [ -76.240974426269531, -13.332638740539551 ], [ -76.240974426269531, -13.332359313964787 ], [ -76.241249084472656, -13.332359313964787 ], [ -76.241249084472656, -13.331805229187012 ], [ -76.241531372070312, -13.331805229187012 ], [ -76.241531372070312, -13.331249237060433 ], [ -76.241806030273438, -13.33125114440918 ], [ -76.241806030273438, -13.330972671508789 ], [ -76.242080688476506, -13.330972671508789 ], [ -76.242080688476506, -13.330693244934025 ], [ -76.242362976074162, -13.330695152282715 ], [ -76.242362976074162, -13.33013916015625 ], [ -76.242637634277287, -13.33013916015625 ], [ -76.242637634277287, -13.32874870300293 ], [ -76.242919921874943, -13.32874870300293 ], [ -76.242919921874943, -13.328471183776855 ], [ -76.243194580078068, -13.328473091125431 ], [ -76.243194580078068, -13.328194618225041 ], [ -76.24346923828125, -13.328194618225041 ], [ -76.24346923828125, -13.327917098999023 ], [ -76.244583129882812, -13.327917098999023 ], [ -76.244583129882812, -13.327638626098576 ], [ -76.244857788085938, -13.327638626098576 ], [ -76.244857788085938, -13.327082633972168 ], [ -76.245140075683594, -13.327082633972168 ], [ -76.245140075683594, -13.326805114746094 ], [ -76.245697021484318, -13.326805114746094 ], [ -76.245697021484318, -13.325692176818848 ], [ -76.246246337890568, -13.32569503784174 ], [ -76.246246337890568, -13.325416564941349 ], [ -76.246528625488281, -13.325416564941349 ], [ -76.246528625488281, -13.325139045715275 ], [ -76.246803283691406, -13.325139045715275 ], [ -76.246803283691406, -13.324307441711369 ], [ -76.247085571289062, -13.324307441711369 ], [ -76.247085571289062, -13.324026107788029 ], [ -76.247360229492188, -13.324028968810921 ], [ -76.247360229492188, -13.323604583740178 ], [ -76.244606018066406, -13.323304176330566 ], [ -76.242744445800724, -13.322943687438965 ], [ -76.241020202636662, -13.321379661560002 ], [ -76.23980712890625, -13.320680618286076 ], [ -76.238151550292912, -13.31904411315918 ], [ -76.23724365234375, -13.318711280822754 ], [ -76.234672546386719, -13.316438674926758 ], [ -76.232109069824219, -13.315566062927189 ], [ -76.231269836425781, -13.31548023223877 ], [ -76.230995178222599, -13.315236091613713 ], [ -76.229690551757812, -13.315340995788574 ], [ -76.228530883789006, -13.314762115478516 ], [ -76.227027893066406, -13.314882278442326 ], [ -76.226280212402344, -13.314064025878849 ], [ -76.224327087402287, -13.313822746276855 ], [ -76.222801208496037, -13.31233024597168 ], [ -76.221939086914006, -13.311971664428711 ], [ -76.220626831054574, -13.311958312988224 ], [ -76.219711303710938, -13.311700820922852 ], [ -76.218513488769474, -13.310538291931152 ], [ -76.217422485351562, -13.310284614562931 ], [ -76.215385437011719, -13.308675765991154 ], [ -76.213859558105469, -13.308193206787109 ], [ -76.212471008300781, -13.308419227600098 ], [ -76.211387634277344, -13.308197975158578 ], [ -76.209800720214844, -13.30757999420166 ], [ -76.208915710449219, -13.306907653808537 ], [ -76.207244873046818, -13.306490898132267 ], [ -76.2061767578125, -13.30545616149891 ], [ -76.204803466796875, -13.304567337036076 ], [ -76.204345703125, -13.303657531738224 ], [ -76.202949523925724, -13.302043914794865 ], [ -76.202400207519474, -13.30019569396967 ], [ -76.201087951660156, -13.298619270324707 ], [ -76.199783325195312, -13.296525955200195 ], [ -76.199432373046818, -13.295379638671818 ], [ -76.197349548339787, -13.291350364685002 ], [ -76.196479797363224, -13.288441658019963 ], [ -76.195106506347656, -13.28645038604725 ], [ -76.194808959960938, -13.284635543823185 ], [ -76.193702697753849, -13.281891822814941 ], [ -76.192176818847599, -13.279909133911133 ], [ -76.191780090332031, -13.27616024017334 ], [ -76.190437316894531, -13.274061203002873 ], [ -76.190269470214787, -13.27315616607666 ], [ -76.188583374023324, -13.270181655883789 ], [ -76.188621520996094, -13.26695442199707 ], [ -76.187599182128849, -13.263801574706974 ], [ -76.186386108398381, -13.261521339416504 ], [ -76.185859680175781, -13.259469985961857 ], [ -76.183898925781193, -13.257553100585938 ], [ -76.183380126953125, -13.255367279052734 ], [ -76.180862426757812, -13.252884864807015 ], [ -76.179328918456974, -13.250578880310059 ], [ -76.176246643066349, -13.247879981994629 ], [ -76.175254821777344, -13.245895385742074 ], [ -76.1739501953125, -13.244004249572697 ], [ -76.172409057617188, -13.242978096008301 ], [ -76.171401977539006, -13.241882324218693 ], [ -76.170608520507812, -13.240203857421875 ], [ -76.169975280761662, -13.236951828002873 ], [ -76.168846130371094, -13.234027862548828 ], [ -76.167953491210881, -13.233073234558049 ], [ -76.167076110839844, -13.231450080871582 ], [ -76.164649963378906, -13.229923248291016 ], [ -76.164436340331974, -13.228932380676213 ], [ -76.163734436035156, -13.227522850036621 ], [ -76.163749694824219, -13.225861549377385 ], [ -76.162666320800781, -13.224998474121037 ], [ -76.162559509277344, -13.223985671997013 ], [ -76.161560058593693, -13.222640991210938 ], [ -76.161376953124943, -13.220445632934513 ], [ -76.161964416503849, -13.219505310058594 ], [ -76.162101745605469, -13.218869209289551 ], [ -76.161445617675781, -13.216957092285156 ], [ -76.160682678222656, -13.212504386901855 ], [ -76.160324096679631, -13.211556434631291 ], [ -76.160209655761719, -13.21008110046381 ], [ -76.159088134765568, -13.206860542297363 ], [ -76.158340454101506, -13.205371856689453 ], [ -76.156524658203068, -13.199665069580078 ], [ -76.156585693359375, -13.19717884063715 ], [ -76.15716552734375, -13.196454048156738 ], [ -76.157821655273438, -13.196187019348145 ], [ -76.158042907714787, -13.193999290466309 ], [ -76.157691955566406, -13.193566322326546 ], [ -76.157127380371094, -13.193468093872013 ], [ -76.155998229980469, -13.192807197570801 ], [ -76.153648376464787, -13.190555572509709 ], [ -76.153793334960938, -13.189543724060059 ], [ -76.155029296875, -13.188289642333928 ], [ -76.155075073242131, -13.187585830688477 ], [ -76.154342651367131, -13.187470436096191 ], [ -76.153251647949219, -13.188461303710881 ], [ -76.152214050292912, -13.188508987426701 ], [ -76.151748657226506, -13.188053131103516 ], [ -76.151405334472656, -13.187257766723576 ], [ -76.150543212890625, -13.186701774597168 ], [ -76.148719787597543, -13.18626594543457 ], [ -76.146316528320256, -13.186013221740666 ], [ -76.144767761230469, -13.183807373046818 ], [ -76.143417358398438, -13.182971000671387 ], [ -76.141952514648438, -13.181548118591309 ], [ -76.140106201171818, -13.180644035339242 ], [ -76.138725280761719, -13.17967510223383 ], [ -76.136650085449219, -13.179141998290902 ], [ -76.133201599121094, -13.178694725036621 ], [ -76.132301330566349, -13.17802906036377 ], [ -76.131706237792969, -13.177202224731445 ], [ -76.128784179687443, -13.177341461181641 ], [ -76.127899169921818, -13.177157402038574 ], [ -76.127304077148438, -13.176533699035645 ], [ -76.126327514648438, -13.17444896697998 ], [ -76.125579833984375, -13.174063682556039 ], [ -76.12392425537098, -13.172561645507699 ], [ -76.122222900390625, -13.171592712402287 ], [ -76.119697570800724, -13.169514656066838 ], [ -76.11663818359375, -13.167927742004395 ], [ -76.115303039550781, -13.166369438171387 ], [ -76.114471435546818, -13.164980888366642 ], [ -76.112655639648381, -13.162875175476017 ], [ -76.111976623535099, -13.162543296813965 ], [ -76.110504150390625, -13.162286758422795 ], [ -76.109603881835881, -13.161613464355469 ], [ -76.10791015625, -13.159188270568848 ], [ -76.106544494628849, -13.157917976379395 ], [ -76.105148315429688, -13.157173156738224 ], [ -76.102714538574219, -13.15654182434082 ], [ -76.100868225097656, -13.155646324157658 ], [ -76.099578857421818, -13.154050827026367 ], [ -76.099159240722656, -13.152373313903809 ], [ -76.097946166992188, -13.149882316589355 ], [ -76.096885681152344, -13.148467063903752 ], [ -76.094680786132812, -13.147110939025822 ], [ -76.092124938964844, -13.146199226379395 ], [ -76.090644836425781, -13.144658088684082 ], [ -76.087722778320312, -13.143197059631291 ], [ -76.086753845214844, -13.142189979553223 ], [ -76.085273742675724, -13.140053749084416 ], [ -76.084320068359318, -13.139462471008244 ], [ -76.083984375, -13.139019966125488 ], [ -76.0826416015625, -13.138264656066895 ], [ -76.081741333007756, -13.137158393859863 ], [ -76.079994201660156, -13.136479377746582 ], [ -76.078849792480469, -13.135668754577637 ], [ -76.077751159667912, -13.134533882141 ], [ -76.076820373535156, -13.13294601440424 ], [ -76.074844360351562, -13.131291389465218 ], [ -76.073989868164062, -13.130914688110295 ], [ -76.071502685546875, -13.12867546081543 ], [ -76.069824218749943, -13.127849578857422 ], [ -76.067108154296875, -13.127824783325195 ], [ -76.066726684570312, -13.127644538879338 ], [ -76.065971374511719, -13.127087593078556 ], [ -76.065704345703125, -13.125653266906681 ], [ -76.065116882324219, -13.124795913696232 ], [ -76.062744140625, -13.124335289001465 ], [ -76.061119079589844, -13.123599052429142 ], [ -76.060188293456974, -13.122979164123478 ], [ -76.059120178222656, -13.121828079223633 ], [ -76.058105468749943, -13.121614456176758 ], [ -76.057441711425724, -13.12083911895752 ], [ -76.056297302246037, -13.120429039001408 ], [ -76.054306030273324, -13.118889808654671 ], [ -76.052200317382756, -13.118120193481388 ], [ -76.050224304199219, -13.11629486083973 ], [ -76.048660278320256, -13.115676879882812 ], [ -76.047554016113281, -13.114189147949162 ], [ -76.045661926269531, -13.112830162048283 ], [ -76.044639587402287, -13.111182212829533 ], [ -76.043388366699219, -13.110616683959847 ], [ -76.042274475097599, -13.109491348266602 ], [ -76.042076110839787, -13.107884407043457 ], [ -76.04107666015625, -13.106521606445312 ], [ -76.039543151855469, -13.106257438659554 ], [ -76.038368225097599, -13.105330467224121 ], [ -76.036849975585881, -13.104875564575138 ], [ -76.035636901855469, -13.104165077209473 ], [ -76.033363342285156, -13.103615760803166 ], [ -76.03277587890625, -13.103155136108342 ], [ -76.0316162109375, -13.101595878601074 ], [ -76.0291748046875, -13.100639343261662 ], [ -76.02789306640625, -13.099196434020882 ], [ -76.025558471679688, -13.098881721496582 ], [ -76.023605346679688, -13.096899032592773 ], [ -76.021713256835938, -13.095686912536621 ], [ -76.021293640136662, -13.093925476074219 ], [ -76.02056884765625, -13.093205451965275 ], [ -76.019508361816406, -13.090841293334904 ], [ -76.018577575683594, -13.089688301086369 ], [ -76.016151428222599, -13.087653160095158 ], [ -76.014312744140568, -13.086720466613713 ], [ -76.012145996093693, -13.086077690124512 ], [ -76.0111083984375, -13.085177421569711 ], [ -76.00933837890625, -13.081823348999023 ], [ -76.005859374999886, -13.078326225280762 ], [ -76.001556396484318, -13.071128845214844 ], [ -75.997367858886662, -13.065963745117188 ], [ -75.996101379394474, -13.065171241760197 ], [ -75.995658874511719, -13.064270973205566 ], [ -75.994346618652344, -13.063218116760254 ], [ -75.990501403808537, -13.059307098388672 ], [ -75.989166259765568, -13.057649612426758 ], [ -75.988670349121037, -13.057390213012638 ], [ -75.985221862792969, -13.05413818359375 ], [ -75.983985900878849, -13.052652359008789 ], [ -75.982048034667969, -13.05153656005848 ], [ -75.980278015136662, -13.04988956451416 ], [ -75.979095458984375, -13.049332618713322 ], [ -75.977584838867188, -13.047947883605957 ], [ -75.975509643554631, -13.046878814697266 ], [ -75.974151611328125, -13.044896125793457 ], [ -75.972557067871037, -13.043336868286133 ], [ -75.970451354980412, -13.042413711547795 ], [ -75.969161987304688, -13.041488647460881 ], [ -75.968345642089787, -13.039665222167969 ], [ -75.968589782714844, -13.034058570861816 ], [ -75.968132019042969, -13.031989097595215 ], [ -75.966300964355469, -13.028768539428654 ], [ -75.96441650390625, -13.026984214782658 ], [ -75.963058471679688, -13.025101661682129 ], [ -75.961441040039062, -13.022195816039982 ], [ -75.960777282714844, -13.020272254943791 ], [ -75.960540771484318, -13.017766952514648 ], [ -75.960639953613224, -13.01576042175293 ], [ -75.961814880371094, -13.013883590698185 ], [ -75.961845397949219, -13.012420654296818 ], [ -75.963012695312443, -13.009360313415414 ], [ -75.963249206542969, -13.007070541381836 ], [ -75.963623046875, -13.005938529968262 ], [ -75.963287353515625, -13.004341125488281 ], [ -75.962112426757812, -13.003329277038517 ], [ -75.962112426757812, -13.00225639343256 ], [ -75.96136474609375, -13.001228332519531 ], [ -75.960983276367188, -13.000225067138615 ], [ -75.959053039550781, -12.999092102050781 ], [ -75.955520629882812, -12.99785041809082 ], [ -75.952537536621037, -12.998004913330021 ], [ -75.951324462890625, -12.997783660888672 ], [ -75.950347900390568, -12.997099876403809 ], [ -75.947471618652287, -12.994180679321289 ], [ -75.944076538085938, -12.993137359619084 ], [ -75.942337036132756, -12.99190616607666 ], [ -75.94085693359375, -12.991304397582951 ], [ -75.939598083496094, -12.990981101989746 ], [ -75.938270568847656, -12.99101543426508 ], [ -75.935478210449105, -12.992854118347111 ], [ -75.934051513671875, -12.99442005157465 ], [ -75.931991577148438, -12.995041847229004 ], [ -75.931404113769531, -12.995495796203613 ], [ -75.9300537109375, -12.995881080627441 ], [ -75.927993774414062, -12.996973037719727 ], [ -75.926605224609318, -12.999564170837402 ], [ -75.925224304199219, -13.000680923461914 ], [ -75.923446655273381, -13.001202583312931 ], [ -75.918708801269531, -13.001907348632812 ], [ -75.916526794433594, -13.002593040466195 ], [ -75.915527343749943, -13.003381729125977 ], [ -75.915206909179688, -13.005228042602482 ], [ -75.914772033691349, -13.006025314331055 ], [ -75.913330078124943, -13.00733375549305 ], [ -75.912223815917969, -13.007609367370549 ], [ -75.910530090332031, -13.007587432861328 ], [ -75.908821105957031, -13.008876800537053 ], [ -75.906532287597656, -13.009651184081974 ], [ -75.903800964355412, -13.009563446044865 ], [ -75.901901245117131, -13.00988578796381 ], [ -75.899154663085938, -13.013421058654785 ], [ -75.898254394531193, -13.014193534851017 ], [ -75.897399902343693, -13.014223098754883 ], [ -75.894859313964844, -13.013571739196777 ], [ -75.8927001953125, -13.013517379760685 ], [ -75.889884948730412, -13.014213562011662 ], [ -75.886611938476562, -13.014350891113281 ], [ -75.883598327636605, -13.015011787414494 ], [ -75.881858825683537, -13.015924453735352 ], [ -75.880645751953125, -13.015928268432617 ], [ -75.879173278808594, -13.016374588012638 ], [ -75.877983093261719, -13.017553329467773 ], [ -75.876708984374943, -13.018325805664006 ], [ -75.875831604003906, -13.019160270690861 ], [ -75.874839782714844, -13.020929336547852 ], [ -75.874542236328125, -13.022494316101017 ], [ -75.874046325683537, -13.02343559265131 ], [ -75.872528076171818, -13.024370193481388 ], [ -75.870018005371094, -13.025131225585938 ], [ -75.867477416992131, -13.028004646301156 ], [ -75.866699218749943, -13.02837944030756 ], [ -75.864387512207031, -13.028422355651799 ], [ -75.862762451171875, -13.028870582580566 ], [ -75.861358642578068, -13.028976440429688 ], [ -75.860496520996037, -13.02933216094965 ], [ -75.857345581054631, -13.031503677368164 ], [ -75.855133056640625, -13.032477378845215 ], [ -75.851531982421818, -13.035572052001953 ], [ -75.849967956542969, -13.036380767822266 ], [ -75.848182678222599, -13.036477088928166 ], [ -75.846420288085938, -13.03510856628418 ], [ -75.844810485839844, -13.034381866455078 ], [ -75.843582153320312, -13.033536911010685 ], [ -75.842666625976506, -13.033204078674316 ], [ -75.84136962890625, -13.033110618591195 ], [ -75.83892822265625, -13.031236648559513 ], [ -75.835296630859375, -13.029303550720215 ], [ -75.833534240722656, -13.027284622192383 ], [ -75.83251953125, -13.026674270629826 ], [ -75.83148193359375, -13.026857376098576 ], [ -75.829994201660099, -13.027812004089355 ], [ -75.826858520507812, -13.029258728027344 ], [ -75.823715209960938, -13.029450416564941 ], [ -75.822647094726506, -13.030465126037541 ], [ -75.822311401367188, -13.033386230468693 ], [ -75.82220458984375, -13.039004325866642 ], [ -75.823051452636719, -13.043981552124023 ], [ -75.821144104003906, -13.04704475402832 ], [ -75.820205688476562, -13.050311088562012 ], [ -75.819404602050724, -13.052078247070256 ], [ -75.818588256835938, -13.052829742431641 ], [ -75.816841125488168, -13.053711891174316 ], [ -75.81536865234375, -13.054015159606934 ], [ -75.813865661621037, -13.05400276184082 ], [ -75.812759399414062, -13.053518295288086 ], [ -75.810951232910156, -13.050838470458928 ], [ -75.810256958007756, -13.050352096557617 ], [ -75.809501647949219, -13.050271987915039 ], [ -75.807868957519474, -13.051906585693303 ], [ -75.807533264160156, -13.053216934204102 ], [ -75.806594848632812, -13.054594039916992 ], [ -75.805938720703068, -13.056116104125977 ], [ -75.802024841308537, -13.060277938842773 ], [ -75.800811767578068, -13.060181617736816 ], [ -75.798316955566349, -13.059366226196289 ], [ -75.797271728515568, -13.058585166931152 ], [ -75.795135498046875, -13.056247711181641 ], [ -75.793380737304574, -13.055683135986328 ], [ -75.7889404296875, -13.05000114440918 ], [ -75.785049438476506, -13.046975135803166 ], [ -75.782318115234261, -13.044179916381836 ], [ -75.775306701660156, -13.03995323181141 ], [ -75.773681640625, -13.038861274719181 ], [ -75.772453308105469, -13.037710189819336 ], [ -75.771827697753793, -13.03640174865717 ], [ -75.771293640136719, -13.032387733459416 ], [ -75.770317077636719, -13.028827667236271 ], [ -75.769760131835938, -13.027971267700195 ], [ -75.769248962402287, -13.026405334472656 ], [ -75.767646789550781, -13.024025917053223 ], [ -75.767120361328068, -13.022843360900822 ], [ -75.765419006347599, -13.020769119262638 ], [ -75.765319824218693, -13.019665718078613 ], [ -75.764556884765568, -13.018087387084904 ], [ -75.762619018554688, -13.019737243652344 ], [ -75.761207580566349, -13.022318840026799 ], [ -75.760566711425724, -13.023096084594727 ], [ -75.757484436035156, -13.025655746459961 ], [ -75.755905151367188, -13.026617050170898 ], [ -75.754119873046875, -13.028250694274902 ], [ -75.752357482910099, -13.028456687927246 ], [ -75.750259399414006, -13.027963638305664 ], [ -75.748069763183537, -13.026894569396973 ], [ -75.74639892578125, -13.025291442871037 ], [ -75.745643615722656, -13.025283813476506 ], [ -75.744468688964844, -13.026190757751465 ], [ -75.741630554199219, -13.027456283569222 ], [ -75.740371704101562, -13.028363227844181 ], [ -75.737251281738281, -13.031818389892578 ], [ -75.736618041992131, -13.033158302307015 ], [ -75.735969543456918, -13.033817291259766 ], [ -75.734725952148381, -13.034156799316349 ], [ -75.732292175292969, -13.033477783203068 ], [ -75.730888366699162, -13.033525466918888 ], [ -75.729858398437443, -13.034450531005803 ], [ -75.727622985839844, -13.03752326965332 ], [ -75.726043701171818, -13.038369178771916 ], [ -75.723899841308594, -13.038528442382812 ], [ -75.718368530273438, -13.037593841552678 ], [ -75.716018676757756, -13.037454605102482 ], [ -75.7147216796875, -13.037956237792969 ], [ -75.712615966796875, -13.039807319641056 ], [ -75.711837768554631, -13.040016174316406 ], [ -75.709823608398381, -13.039958953857422 ], [ -75.706977844238168, -13.039432525634766 ], [ -75.704551696777344, -13.038455009460449 ], [ -75.703163146972543, -13.03823184967041 ], [ -75.700309753417969, -13.036595344543457 ], [ -75.699020385742188, -13.036091804504338 ], [ -75.696708679199219, -13.035691261291504 ], [ -75.691940307617188, -13.035280227661019 ], [ -75.690834045410099, -13.03427791595459 ], [ -75.690139770507812, -13.032200813293343 ], [ -75.687423706054631, -13.029396057128849 ], [ -75.686737060546818, -13.027362823486328 ], [ -75.686630249023381, -13.025519371032715 ], [ -75.686180114746037, -13.024906158447209 ], [ -75.683120727539006, -13.024622917175179 ], [ -75.680229187011719, -13.024985313415471 ], [ -75.679023742675724, -13.024914741516113 ], [ -75.676094055175781, -13.024280548095703 ], [ -75.67236328125, -13.023873329162541 ], [ -75.671058654785156, -13.023353576660156 ], [ -75.669990539550781, -13.021862983703613 ], [ -75.668525695800724, -13.01818656921381 ], [ -75.666465759277344, -13.016177177429199 ], [ -75.665534973144531, -13.014795303344727 ], [ -75.664817810058537, -13.012807846069336 ], [ -75.665046691894531, -13.009941101074162 ], [ -75.665962219238224, -13.008184432983342 ], [ -75.668220520019531, -13.005330085754395 ], [ -75.668640136718636, -13.003060340881348 ], [ -75.669418334960938, -13.000561714172363 ], [ -75.669296264648381, -12.99843788146967 ], [ -75.668861389160156, -12.996747016906738 ], [ -75.668083190917969, -12.994969367980957 ], [ -75.667442321777344, -12.994292259216195 ], [ -75.666900634765568, -12.993913650512695 ], [ -75.664878845214844, -12.993511199951172 ], [ -75.663795471191406, -12.99298191070551 ], [ -75.662300109863281, -12.992913246154671 ], [ -75.655952453613224, -12.993398666381779 ], [ -75.65313720703125, -12.994110107421818 ], [ -75.652297973632756, -12.994095802307129 ], [ -75.651527404785156, -12.993754386901855 ], [ -75.649642944335881, -12.992384910583382 ], [ -75.644027709960881, -12.990896224975529 ], [ -75.641159057617131, -12.989013671875 ], [ -75.637359619140511, -12.987685203552189 ], [ -75.635932922363281, -12.986650466918945 ], [ -75.634078979492188, -12.984330177307015 ], [ -75.633728027343693, -12.983470916748047 ], [ -75.633636474609318, -12.982088088989258 ], [ -75.634010314941349, -12.979454994201603 ], [ -75.634346008300781, -12.978921890258789 ], [ -75.638557434082031, -12.974635124206486 ], [ -75.638618469238281, -12.974173545837289 ], [ -75.638130187988281, -12.97349834442133 ], [ -75.636207580566349, -12.972344398498535 ], [ -75.634803771972656, -12.970865249633789 ], [ -75.631225585937443, -12.969497680664006 ], [ -75.627586364746094, -12.966460227966309 ], [ -75.625350952148438, -12.966176986694336 ], [ -75.624847412109318, -12.965932846069279 ], [ -75.621833801269531, -12.965668678283691 ], [ -75.620925903320256, -12.965752601623535 ], [ -75.619361877441406, -12.966526031494141 ], [ -75.616371154785099, -12.96514892578125 ], [ -75.614509582519531, -12.965019226074162 ], [ -75.614021301269531, -12.964738845825195 ], [ -75.612915039062443, -12.965598106384277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-JUN", "NAME_0": "Peru", "ID_1": 12, "NAME_1": "Junín", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": "Junnn" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.035804748535156, -10.681916236877441 ], [ -75.034309387207031, -10.681954383850041 ], [ -75.032188415527344, -10.680806159973088 ], [ -75.030479431152344, -10.680381774902287 ], [ -75.024276733398438, -10.680399894714355 ], [ -75.02313232421875, -10.679757118225041 ], [ -75.020614624023381, -10.677715301513615 ], [ -75.01806640625, -10.676593780517521 ], [ -75.013412475585938, -10.672633171081486 ], [ -75.011154174804631, -10.671536445617619 ], [ -75.009300231933594, -10.671475410461312 ], [ -75.006973266601506, -10.672079086303711 ], [ -75.004013061523381, -10.672298431396428 ], [ -75.002479553222599, -10.672920227050781 ], [ -75.000633239746094, -10.674160003662109 ], [ -74.998756408691349, -10.676790237426758 ], [ -74.998237609863281, -10.678230285644531 ], [ -74.997528076171818, -10.683005332946777 ], [ -74.997589111328125, -10.69036865234375 ], [ -74.997154235839787, -10.692438125610352 ], [ -74.997161865234375, -10.693913459777832 ], [ -74.996208190917969, -10.69688701629633 ], [ -74.996047973632812, -10.703516960144043 ], [ -74.996231079101562, -10.704784393310547 ], [ -74.997703552246037, -10.709927558898926 ], [ -74.9976806640625, -10.714805603027344 ], [ -74.997451782226562, -10.715609550476074 ], [ -74.995712280273381, -10.718847274780273 ], [ -74.995491027832031, -10.725095748901254 ], [ -74.994613647460938, -10.72655200958252 ], [ -74.989288330078125, -10.733707427978459 ], [ -74.987861633300781, -10.736083984374943 ], [ -74.987678527832031, -10.738191604614258 ], [ -74.98870849609375, -10.742207527160588 ], [ -74.988685607910156, -10.743762016296387 ], [ -74.987396240234318, -10.745562553405762 ], [ -74.984626770019531, -10.748258590698185 ], [ -74.983406066894474, -10.750004768371582 ], [ -74.982872009277344, -10.750336647033635 ], [ -74.982231140136719, -10.750321388244572 ], [ -74.981521606445312, -10.749850273132324 ], [ -74.979484558105412, -10.747835159301758 ], [ -74.978561401367074, -10.747225761413517 ], [ -74.976928710937443, -10.746567726135254 ], [ -74.974029541015625, -10.745923042297306 ], [ -74.969131469726562, -10.743309020996094 ], [ -74.965904235839844, -10.742486000061035 ], [ -74.957832336425724, -10.737238883972168 ], [ -74.955986022949219, -10.73663330078125 ], [ -74.954589843749943, -10.736597061157227 ], [ -74.953521728515625, -10.737031936645508 ], [ -74.952514648437443, -10.737846374511719 ], [ -74.951438903808594, -10.738985061645451 ], [ -74.950660705566406, -10.740339279174748 ], [ -74.949302673339844, -10.741461753845215 ], [ -74.948165893554688, -10.741812705993539 ], [ -74.945472717285156, -10.741977691650391 ], [ -74.944473266601562, -10.742446899414062 ], [ -74.943367004394474, -10.743686676025391 ], [ -74.940132141113281, -10.748522758483887 ], [ -74.939476013183594, -10.749148368835392 ], [ -74.938346862792969, -10.749799728393441 ], [ -74.936668395996037, -10.750306129455566 ], [ -74.93341064453125, -10.750178337097111 ], [ -74.931976318359375, -10.75051116943348 ], [ -74.931022644042969, -10.751379013061523 ], [ -74.930442810058594, -10.753209114074593 ], [ -74.929573059082031, -10.75371265411377 ], [ -74.927711486816349, -10.75371265411377 ], [ -74.925064086914062, -10.752589225768929 ], [ -74.923675537109375, -10.752238273620605 ], [ -74.922836303710881, -10.752482414245549 ], [ -74.920265197753849, -10.754143714904728 ], [ -74.91925048828125, -10.754134178161621 ], [ -74.918266296386662, -10.753474235534668 ], [ -74.916748046874943, -10.751992225646973 ], [ -74.914772033691406, -10.749196052551213 ], [ -74.91424560546875, -10.748824119567871 ], [ -74.913688659667912, -10.74878978729248 ], [ -74.9127197265625, -10.74964714050293 ], [ -74.911270141601562, -10.751654624938965 ], [ -74.907646179199219, -10.753281593322697 ], [ -74.905235290527344, -10.755696296691895 ], [ -74.903686523437443, -10.756689071655273 ], [ -74.903060913085938, -10.757477760314885 ], [ -74.902023315429688, -10.759937286376896 ], [ -74.899337768554688, -10.762451171875 ], [ -74.898269653320312, -10.764060020446777 ], [ -74.896903991699162, -10.765568733215275 ], [ -74.895606994628906, -10.766590118408203 ], [ -74.892814636230412, -10.768551826476994 ], [ -74.891166687011719, -10.769392967224121 ], [ -74.888687133789062, -10.769581794738713 ], [ -74.886886596679631, -10.76906681060791 ], [ -74.885971069335938, -10.768648147582951 ], [ -74.884246826171875, -10.767111778259277 ], [ -74.88338470458973, -10.765609741210938 ], [ -74.883071899414006, -10.764532089233398 ], [ -74.881881713867188, -10.763484001159668 ], [ -74.876617431640625, -10.763545036315861 ], [ -74.871711730957031, -10.762141227722168 ], [ -74.866989135742188, -10.762129783630371 ], [ -74.866172790527344, -10.76194953918457 ], [ -74.865730285644474, -10.761505126953125 ], [ -74.866378784179631, -10.75712871551508 ], [ -74.869003295898438, -10.752390861511174 ], [ -74.869522094726506, -10.750336647033635 ], [ -74.869598388671875, -10.748409271240178 ], [ -74.868927001953125, -10.745364189147949 ], [ -74.868797302246094, -10.739929199218636 ], [ -74.869445800781193, -10.736635208129769 ], [ -74.869918823242131, -10.735433578491211 ], [ -74.870010375976506, -10.733777046203613 ], [ -74.870651245117188, -10.731092453002873 ], [ -74.870742797851562, -10.729537963867188 ], [ -74.870155334472656, -10.725900650024414 ], [ -74.869583129882812, -10.724480628967228 ], [ -74.868797302246094, -10.720989227294922 ], [ -74.868148803710938, -10.715336799621525 ], [ -74.867744445800668, -10.714839935302678 ], [ -74.866989135742188, -10.714495658874512 ], [ -74.865608215332031, -10.715028762817383 ], [ -74.863174438476562, -10.717170715332031 ], [ -74.861534118652287, -10.719249725341797 ], [ -74.860061645507812, -10.722235679626408 ], [ -74.858253479003906, -10.726755142211914 ], [ -74.857345581054631, -10.727668762207031 ], [ -74.856079101562443, -10.728363990783691 ], [ -74.85345458984375, -10.730951309204102 ], [ -74.851371765136719, -10.733535766601449 ], [ -74.84981536865223, -10.736030578613281 ], [ -74.847946166992188, -10.741102218627873 ], [ -74.846794128417969, -10.745462417602539 ], [ -74.845840454101562, -10.74735164642334 ], [ -74.844795227050781, -10.75017261505127 ], [ -74.844100952148438, -10.751367568969727 ], [ -74.842933654785099, -10.754668235778752 ], [ -74.841468811035156, -10.757533073425236 ], [ -74.840583801269531, -10.76325798034668 ], [ -74.838531494140568, -10.765960693359261 ], [ -74.836875915527344, -10.770345687866211 ], [ -74.833915710449219, -10.774459838867188 ], [ -74.832786560058594, -10.778247833251896 ], [ -74.832069396972599, -10.779841423034611 ], [ -74.830810546874943, -10.781440734863281 ], [ -74.827857971191349, -10.784341812133789 ], [ -74.824607849121037, -10.789982795715275 ], [ -74.821189880371037, -10.793862342834473 ], [ -74.817901611328125, -10.7999267578125 ], [ -74.816062927246094, -10.801978111267033 ], [ -74.815399169921875, -10.803445816040039 ], [ -74.813690185546875, -10.805505752563477 ], [ -74.812210083007756, -10.809583663940373 ], [ -74.811531066894531, -10.810759544372445 ], [ -74.807868957519531, -10.814165115356388 ], [ -74.805946350097543, -10.816967964172363 ], [ -74.803138732910156, -10.820150375366154 ], [ -74.799896240234375, -10.822861671447754 ], [ -74.798744201660156, -10.824525833129883 ], [ -74.797294616699219, -10.826080322265625 ], [ -74.796089172363224, -10.828143119812012 ], [ -74.794769287109318, -10.8296861648559 ], [ -74.793060302734318, -10.83059024810791 ], [ -74.790931701660156, -10.830750465393066 ], [ -74.788436889648438, -10.829870223998967 ], [ -74.786788940429688, -10.829019546508732 ], [ -74.783958435058594, -10.828143119812012 ], [ -74.777946472167969, -10.825252532958928 ], [ -74.77679443359375, -10.825613021850472 ], [ -74.773986816406193, -10.827999114990234 ], [ -74.771003723144531, -10.829470634460449 ], [ -74.769790649414006, -10.829840660095215 ], [ -74.767860412597599, -10.829648971557617 ], [ -74.766288757324219, -10.828861236572266 ], [ -74.764884948730469, -10.827792167663574 ], [ -74.761772155761662, -10.826587677001896 ], [ -74.758918762206974, -10.826150894164982 ], [ -74.757247924804688, -10.826864242553711 ], [ -74.754478454589844, -10.827595710754281 ], [ -74.752052307128849, -10.829283714294434 ], [ -74.750236511230412, -10.830972671508789 ], [ -74.746719360351506, -10.832074165344125 ], [ -74.745513916015625, -10.833059310913086 ], [ -74.743354797363224, -10.834314346313477 ], [ -74.741867065429688, -10.835698127746468 ], [ -74.741043090820312, -10.836129188537598 ], [ -74.740493774414006, -10.836182594299316 ], [ -74.739570617675668, -10.835747718811035 ], [ -74.737052917480469, -10.832716941833496 ], [ -74.736053466796875, -10.832751274108887 ], [ -74.732299804687443, -10.836709976196289 ], [ -74.731529235839787, -10.83807468414301 ], [ -74.730255126953125, -10.842106819152832 ], [ -74.729484558105469, -10.843889236450138 ], [ -74.728538513183594, -10.845461845397892 ], [ -74.727447509765568, -10.846590042114201 ], [ -74.726531982421875, -10.847232818603516 ], [ -74.725311279296875, -10.847646713256722 ], [ -74.721336364746037, -10.847905158996468 ], [ -74.719718933105412, -10.848311424255314 ], [ -74.716537475585938, -10.851635932922363 ], [ -74.714561462402287, -10.852395057678223 ], [ -74.712547302246037, -10.853503227233887 ], [ -74.710388183593636, -10.855491638183537 ], [ -74.709854125976562, -10.85656833648676 ], [ -74.708930969238224, -10.859831809997559 ], [ -74.707107543945312, -10.863446235656681 ], [ -74.706535339355469, -10.866243362426644 ], [ -74.706184387206974, -10.867072105407715 ], [ -74.702468872070256, -10.870903968811035 ], [ -74.701484680175724, -10.873072624206543 ], [ -74.6998291015625, -10.875034332275334 ], [ -74.699821472167969, -10.876607894897404 ], [ -74.700363159179631, -10.878190040588379 ], [ -74.702537536621037, -10.880546569824219 ], [ -74.702606201171875, -10.88257980346674 ], [ -74.7008056640625, -10.885002136230469 ], [ -74.699066162109375, -10.890149116516056 ], [ -74.696792602539062, -10.892178535461426 ], [ -74.693611145019531, -10.890105247497445 ], [ -74.689537048339844, -10.888811111450138 ], [ -74.6864013671875, -10.888496398925724 ], [ -74.682914733886662, -10.888944625854492 ], [ -74.681411743164062, -10.888501167297306 ], [ -74.679969787597656, -10.887069702148381 ], [ -74.679214477539062, -10.885495185852051 ], [ -74.678985595703068, -10.883949279785156 ], [ -74.679069519042969, -10.880170822143555 ], [ -74.678871154785156, -10.879751205444279 ], [ -74.677604675292969, -10.878821372985783 ], [ -74.674598693847599, -10.877884864807129 ], [ -74.668563842773438, -10.874108314514103 ], [ -74.667327880859375, -10.873690605163517 ], [ -74.665855407714844, -10.87353610992426 ], [ -74.662666320800781, -10.874039649963265 ], [ -74.661903381347656, -10.87437915802002 ], [ -74.659835815429631, -10.874287605285588 ], [ -74.658760070800724, -10.873788833618164 ], [ -74.656890869140625, -10.87241268157959 ], [ -74.653549194335824, -10.868962287902775 ], [ -74.652816772460938, -10.868547439575195 ], [ -74.650756835937443, -10.867993354797306 ], [ -74.646133422851562, -10.868032455444279 ], [ -74.643020629882812, -10.868941307067871 ], [ -74.6405029296875, -10.87011528015131 ], [ -74.638908386230469, -10.871053695678711 ], [ -74.63739013671875, -10.872526168823185 ], [ -74.635612487792912, -10.874874114990121 ], [ -74.634254455566349, -10.877271652221623 ], [ -74.633995056152287, -10.879739761352539 ], [ -74.634109497070312, -10.883047103881836 ], [ -74.633384704589844, -10.885343551635742 ], [ -74.632705688476562, -10.886636734008732 ], [ -74.631393432617131, -10.887984275817814 ], [ -74.62945556640625, -10.889239311218205 ], [ -74.624145507812443, -10.89159107208252 ], [ -74.621116638183537, -10.894002914428711 ], [ -74.618919372558537, -10.896487236022892 ], [ -74.618232727050724, -10.897788047790527 ], [ -74.617378234863224, -10.900321006774902 ], [ -74.616523742675724, -10.901738166809082 ], [ -74.615043640136719, -10.903646469116211 ], [ -74.614128112792912, -10.904404640197754 ], [ -74.610702514648381, -10.905549049377441 ], [ -74.607086181640568, -10.907777786254883 ], [ -74.604911804199105, -10.908690452575627 ], [ -74.602798461914006, -10.909373283386117 ], [ -74.6009521484375, -10.909542083740234 ], [ -74.599174499511662, -10.910055160522461 ], [ -74.597709655761719, -10.910867691039982 ], [ -74.595962524414062, -10.912349700927621 ], [ -74.594841003417969, -10.912446022033635 ], [ -74.591667175292969, -10.910923004150277 ], [ -74.590484619140568, -10.910711288452148 ], [ -74.585563659667969, -10.910840988159123 ], [ -74.584381103515568, -10.910613059997445 ], [ -74.579780578613281, -10.911206245422306 ], [ -74.576629638671875, -10.911237716674748 ], [ -74.574249267578125, -10.911631584167424 ], [ -74.574165344238281, -10.911744117736816 ], [ -74.573928833007812, -10.912055969238224 ], [ -74.571281433105469, -10.913717269897404 ], [ -74.568763732910099, -10.914897918701115 ], [ -74.568305969238281, -10.914994239807129 ], [ -74.566131591796875, -10.915458679199219 ], [ -74.561370849609375, -10.916083335876465 ], [ -74.559791564941349, -10.916290283203125 ], [ -74.557991027831918, -10.91702747344965 ], [ -74.55684661865223, -10.91785812377924 ], [ -74.555900573730469, -10.918548583984261 ], [ -74.55523681640625, -10.918807029724064 ], [ -74.554611206054688, -10.919048309326172 ], [ -74.553771972656193, -10.91912841796875 ], [ -74.551475524902287, -10.918807029724064 ], [ -74.549270629882812, -10.919518470764103 ], [ -74.547714233398438, -10.920944213867188 ], [ -74.542030334472599, -10.92889404296875 ], [ -74.541091918945256, -10.929789543151855 ], [ -74.540435791015568, -10.930109024047795 ], [ -74.539253234863281, -10.930184364318791 ], [ -74.538383483886719, -10.930235862731877 ], [ -74.5341796875, -10.929497718811035 ], [ -74.532226562499943, -10.929384231567383 ], [ -74.523529052734318, -10.930765151977539 ], [ -74.519920349121037, -10.930687904357796 ], [ -74.515853881835938, -10.931007385253849 ], [ -74.513916015624943, -10.930952072143555 ], [ -74.511314392089844, -10.930880546569824 ], [ -74.507316589355412, -10.930061340331974 ], [ -74.503517150878849, -10.930020332336312 ], [ -74.503395080566406, -10.930045127868596 ], [ -74.502052307128906, -10.930330276489144 ], [ -74.498367309570256, -10.934410095214844 ], [ -74.497138977050724, -10.936209678649902 ], [ -74.491355895996094, -10.943070411682072 ], [ -74.483039855957031, -10.951189041137638 ], [ -74.482658386230469, -10.951777458190861 ], [ -74.482139587402287, -10.952569961547852 ], [ -74.481254577636719, -10.954383850097599 ], [ -74.480316162109375, -10.956318855285588 ], [ -74.478096008300781, -10.959139823913517 ], [ -74.47772216796875, -10.959882736205998 ], [ -74.477516174316406, -10.960289001464787 ], [ -74.475921630859375, -10.961828231811523 ], [ -74.474426269531193, -10.962310791015568 ], [ -74.471168518066406, -10.96230411529541 ], [ -74.468467712402344, -10.961594581604004 ], [ -74.466308593749943, -10.960580825805664 ], [ -74.465454101562443, -10.96018028259266 ], [ -74.460235595703068, -10.95884895324707 ], [ -74.459579467773438, -10.958949089050236 ], [ -74.458221435546818, -10.959160804748535 ], [ -74.457252502441349, -10.959624290466252 ], [ -74.455802917480469, -10.960318565368652 ], [ -74.454841613769531, -10.961261749267521 ], [ -74.45461273193348, -10.961489677429199 ], [ -74.453231811523438, -10.963340759277287 ], [ -74.452224731445256, -10.965347290039006 ], [ -74.451416015625, -10.966958045959473 ], [ -74.451225280761719, -10.967187881469727 ], [ -74.449752807617188, -10.968929290771484 ], [ -74.446868896484318, -10.970939636230469 ], [ -74.442276000976506, -10.973540306091252 ], [ -74.440170288085938, -10.97551441192627 ], [ -74.440055847167969, -10.975619316101017 ], [ -74.437782287597656, -10.980498313903752 ], [ -74.436599731445312, -10.98357105255127 ], [ -74.435607910156193, -10.986160278320256 ], [ -74.435340881347599, -10.986511230468693 ], [ -74.433990478515568, -10.988300323486328 ], [ -74.431877136230469, -10.989798545837402 ], [ -74.424057006835938, -10.993799209594727 ], [ -74.423362731933594, -10.993988037109261 ], [ -74.42138671875, -10.994528770446721 ], [ -74.417335510253906, -10.995107650756836 ], [ -74.4156494140625, -10.995644569396973 ], [ -74.414695739746094, -10.996350288391113 ], [ -74.414268493652287, -10.996873855590763 ], [ -74.413642883300781, -10.997639656066895 ], [ -74.41326904296875, -10.998771667480469 ], [ -74.412933349609318, -10.999799728393555 ], [ -74.413101196289006, -11.000314712524357 ], [ -74.413246154785156, -11.000760078430119 ], [ -74.414299011230469, -11.001931190490723 ], [ -74.414558410644418, -11.002218246459904 ], [ -74.416625976562443, -11.003429412841683 ], [ -74.417610168456918, -11.004213333129826 ], [ -74.418159484863224, -11.00465011596674 ], [ -74.419151306152344, -11.006078720092773 ], [ -74.420082092285099, -11.007998466491699 ], [ -74.420562744140568, -11.010049819946232 ], [ -74.420280456542855, -11.011778831481877 ], [ -74.419891357421818, -11.012557029724007 ], [ -74.419700622558537, -11.012939453124943 ], [ -74.417900085449219, -11.014516830444279 ], [ -74.417701721191349, -11.015121459960881 ], [ -74.417816162109375, -11.015439987182617 ], [ -74.418106079101562, -11.016240119934082 ], [ -74.420257568359318, -11.019020080566406 ], [ -74.420608520507812, -11.019904136657601 ], [ -74.421066284179688, -11.021078109741211 ], [ -74.420486450195312, -11.022601127624512 ], [ -74.414421081542969, -11.029629707336426 ], [ -74.414115905761719, -11.031879425048828 ], [ -74.412895202636719, -11.033670425414982 ], [ -74.412620544433537, -11.034069061279297 ], [ -74.41192626953125, -11.034467697143441 ], [ -74.411087036132812, -11.034949302673283 ], [ -74.407890319824219, -11.036108970642033 ], [ -74.404296875, -11.039388656616211 ], [ -74.40228271484375, -11.040288925170785 ], [ -74.399063110351562, -11.042363166808968 ], [ -74.395652770996037, -11.044560432434082 ], [ -74.39544677734375, -11.04460334777832 ], [ -74.394287109375, -11.04485893249506 ], [ -74.390037536621037, -11.044719696044808 ], [ -74.386222839355412, -11.045908927917424 ], [ -74.382637023925781, -11.046073913574219 ], [ -74.382522583007812, -11.04607963562006 ], [ -74.382217407226506, -11.046428680419865 ], [ -74.382217407226506, -11.047353744506836 ], [ -74.381942749023324, -11.048028945922852 ], [ -74.380958557128849, -11.048937797546387 ], [ -74.380577087402287, -11.049288749694824 ], [ -74.380271911621094, -11.049399375915527 ], [ -74.379989624023438, -11.049498558044434 ], [ -74.3753662109375, -11.049678802490121 ], [ -74.373489379882812, -11.050460815429688 ], [ -74.371833801269418, -11.051423072814828 ], [ -74.371170043945312, -11.051810264587402 ], [ -74.369888305664062, -11.051847457885742 ], [ -74.366737365722656, -11.051933288574162 ], [ -74.36212158203125, -11.05327129364008 ], [ -74.358795166015625, -11.053091049194336 ], [ -74.357292175292969, -11.053569793701115 ], [ -74.355506896972599, -11.054709434509164 ], [ -74.353614807128849, -11.05546760559082 ], [ -74.353363037109375, -11.055570602416992 ], [ -74.347908020019531, -11.05562782287592 ], [ -74.344055175781193, -11.054445266723633 ], [ -74.342239379882756, -11.054299354553223 ], [ -74.341300964355412, -11.054221153259221 ], [ -74.340217590332031, -11.053920745849609 ], [ -74.339065551757812, -11.053224563598576 ], [ -74.338966369628906, -11.053168296813908 ], [ -74.338584899902344, -11.052656173705998 ], [ -74.337242126464844, -11.05086708068842 ], [ -74.336723327636662, -11.050355911254883 ], [ -74.336196899414062, -11.049842834472599 ], [ -74.334533691406193, -11.049073219299316 ], [ -74.333274841308537, -11.048488616943359 ], [ -74.331512451171875, -11.046110153198242 ], [ -74.330978393554688, -11.045390129089355 ], [ -74.328765869140625, -11.043719291686955 ], [ -74.321578979492188, -11.037097930908203 ], [ -74.320854187011719, -11.036433219909668 ], [ -74.318489074706974, -11.03496265411377 ], [ -74.317237854003906, -11.034723281860295 ], [ -74.317047119140625, -11.034687042236271 ], [ -74.312973022460881, -11.034588813781738 ], [ -74.310623168945312, -11.034049034118652 ], [ -74.310356140136719, -11.034075736999455 ], [ -74.309700012207031, -11.034137725829964 ], [ -74.309448242187443, -11.034016609191895 ], [ -74.307945251464844, -11.033283233642578 ], [ -74.305961608886719, -11.032855033874455 ], [ -74.304031372070312, -11.032081604003906 ], [ -74.302169799804688, -11.031336784362736 ], [ -74.298019409179574, -11.031044960021973 ], [ -74.296951293945256, -11.030735015869141 ], [ -74.294532775878906, -11.029549598693791 ], [ -74.291885375976506, -11.026976585388184 ], [ -74.290359497070256, -11.025490760803223 ], [ -74.288269042968693, -11.024298667907715 ], [ -74.287117004394474, -11.024558067321721 ], [ -74.282318115234375, -11.027612686157227 ], [ -74.281898498535099, -11.027878761291504 ], [ -74.278060913085881, -11.029218673705998 ], [ -74.277450561523438, -11.029180526733398 ], [ -74.276947021484375, -11.029149055480957 ], [ -74.273864746093693, -11.026812553405762 ], [ -74.273674011230412, -11.026715278625431 ], [ -74.272048950195256, -11.025894165039062 ], [ -74.265670776367131, -11.025679588317871 ], [ -74.263191223144474, -11.024966239929199 ], [ -74.258956909179688, -11.022001266479492 ], [ -74.256858825683594, -11.020530700683594 ], [ -74.251625061035156, -11.01820182800293 ], [ -74.249671936035156, -11.017742156982422 ], [ -74.249107360839844, -11.017608642578068 ], [ -74.243179321289006, -11.017368316650391 ], [ -74.239799499511719, -11.017657279968262 ], [ -74.237922668456974, -11.018363952636662 ], [ -74.232437133789062, -11.020428657531625 ], [ -74.227645874023438, -11.021061897277775 ], [ -74.226760864257756, -11.02117919921875 ], [ -74.224853515624943, -11.021281242370605 ], [ -74.222236633300781, -11.021419525146428 ], [ -74.221214294433537, -11.021911621093693 ], [ -74.220909118652344, -11.022061347961426 ], [ -74.219108581542969, -11.023645401000977 ], [ -74.217613220214787, -11.024365425109863 ], [ -74.215766906738281, -11.024377822875977 ], [ -74.214378356933537, -11.024388313293457 ], [ -74.206741333007756, -11.025038719177189 ], [ -74.204559326171761, -11.024870872497559 ], [ -74.203887939453068, -11.024818420410156 ], [ -74.203704833984375, -11.024692535400277 ], [ -74.202766418457031, -11.02404594421381 ], [ -74.202430725097599, -11.022931098937988 ], [ -74.201812744140625, -11.020877838134652 ], [ -74.201530456542969, -11.016240119934082 ], [ -74.201019287109318, -11.014710426330566 ], [ -74.200889587402344, -11.014321327209359 ], [ -74.200469970703125, -11.010402679443359 ], [ -74.199325561523438, -11.005110740661564 ], [ -74.198898315429631, -11.004497528076172 ], [ -74.198272705078125, -11.003605842590275 ], [ -74.197456359863281, -11.003128051757756 ], [ -74.197341918945312, -11.003059387207031 ], [ -74.197044372558594, -11.003006935119629 ], [ -74.196441650390568, -11.002895355224609 ], [ -74.195594787597543, -11.003021240234318 ], [ -74.194183349609375, -11.003232955932617 ], [ -74.193565368652287, -11.003105163574162 ], [ -74.192916870117131, -11.002596855163574 ], [ -74.192115783691406, -11.000796318054142 ], [ -74.191947937011662, -10.999410629272461 ], [ -74.192008972167969, -10.998874664306641 ], [ -74.192146301269474, -10.997770309448242 ], [ -74.194160461425724, -10.993048667907715 ], [ -74.194564819335938, -10.990519523620549 ], [ -74.194465637207031, -10.988581657409668 ], [ -74.194427490234318, -10.987752914428711 ], [ -74.194068908691293, -10.986919403076115 ], [ -74.193367004394474, -10.986289978027344 ], [ -74.191879272460938, -10.985788345336914 ], [ -74.190910339355412, -10.98546028137207 ], [ -74.188796997070256, -10.98523044586176 ], [ -74.185379028320256, -10.985398292541447 ], [ -74.182701110839787, -10.986209869384766 ], [ -74.182075500488281, -10.986739158630371 ], [ -74.180603027343693, -10.987990379333496 ], [ -74.179725646972656, -10.989287376403695 ], [ -74.17910003662098, -10.989868164062443 ], [ -74.178718566894418, -10.990219116210938 ], [ -74.176162719726562, -10.991657257080078 ], [ -74.174606323242131, -10.992529869079476 ], [ -74.173492431640625, -10.992511749267578 ], [ -74.169876098632812, -10.992449760437012 ], [ -74.168136596679688, -10.993069648742676 ], [ -74.165916442871037, -10.993100166320801 ], [ -74.164680480956974, -10.993500709533635 ], [ -74.163795471191406, -10.994000434875431 ], [ -74.161827087402287, -10.995896339416447 ], [ -74.161743164062386, -10.995978355407715 ], [ -74.161430358886662, -10.996175765991211 ], [ -74.160186767578068, -10.996959686279297 ], [ -74.158988952636719, -10.998146057128849 ], [ -74.158065795898438, -10.998469352722168 ], [ -74.156547546386719, -10.998412132263127 ], [ -74.156105041503849, -10.998318672180176 ], [ -74.154731750488281, -10.99803638458252 ], [ -74.153335571289006, -10.99843692779541 ], [ -74.151939392089844, -10.99838924407959 ], [ -74.151573181152344, -10.998162269592285 ], [ -74.148139953613281, -10.998244285583439 ], [ -74.146026611328125, -10.997314453124943 ], [ -74.144271850585881, -10.997382164001408 ], [ -74.143035888671818, -10.996401786804199 ], [ -74.141006469726562, -10.993799209594727 ], [ -74.140930175781193, -10.993699073791447 ], [ -74.140777587890625, -10.993290901184082 ], [ -74.139495849609318, -10.989763259887695 ], [ -74.139038085937443, -10.98913383483881 ], [ -74.138565063476449, -10.98847675323475 ], [ -74.136390686035156, -10.988126754760742 ], [ -74.131111145019474, -10.986347198486271 ], [ -74.130256652831974, -10.986437797546387 ], [ -74.128616333007756, -10.986609458923283 ], [ -74.126197814941406, -10.987949371337834 ], [ -74.12420654296875, -10.988739967346135 ], [ -74.122817993164006, -10.989648818969613 ], [ -74.120162963867074, -10.990498542785645 ], [ -74.118247985839787, -10.990818023681584 ], [ -74.116203308105469, -10.990419387817383 ], [ -74.113609313964844, -10.989396095275822 ], [ -74.112831115722656, -10.98908805847168 ], [ -74.111915588378906, -10.988612174987736 ], [ -74.110527038574105, -10.9878892898559 ], [ -74.107063293456974, -10.987182617187443 ], [ -74.105018615722656, -10.986289978027344 ], [ -74.103851318359261, -10.986211776733285 ], [ -74.102897644042855, -10.986147880554199 ], [ -74.102653503417969, -10.986213684082031 ], [ -74.102081298828125, -10.986369132995605 ], [ -74.099365234374943, -10.986385345458984 ], [ -74.098457336425781, -10.986390113830566 ], [ -74.097297668457031, -10.986654281616154 ], [ -74.095787048339844, -10.987356185912972 ], [ -74.091232299804631, -10.988249778747559 ], [ -74.089538574218693, -10.989199638366699 ], [ -74.088470458984318, -10.989548683166504 ], [ -74.083831787109375, -10.989748954772892 ], [ -74.078994750976562, -10.992092132568359 ], [ -74.078590393066406, -10.992289543151855 ], [ -74.078269958496037, -10.992367744445744 ], [ -74.076446533203068, -10.992818832397461 ], [ -74.0711669921875, -10.993128776550293 ], [ -74.068321228027344, -10.992525100708008 ], [ -74.06781005859375, -10.99241828918457 ], [ -74.065582275390568, -10.992375373840275 ], [ -74.063468933105469, -10.992618560790959 ], [ -74.062171936035099, -10.992769241332951 ], [ -74.061180114746094, -10.993179321289062 ], [ -74.060386657714844, -10.993510246276855 ], [ -74.059494018554631, -10.993662834167424 ], [ -74.059097290039006, -10.993730545043888 ], [ -74.057899475097656, -10.993471145629883 ], [ -74.056594848632812, -10.992746353149414 ], [ -74.056259155273381, -10.992559432983398 ], [ -74.055480957031193, -10.99212646484375 ], [ -74.054557800292969, -10.99218559265131 ], [ -74.052238464355412, -10.992334365844727 ], [ -74.049957275390568, -10.991893768310547 ], [ -74.047569274902287, -10.989794731140137 ], [ -74.0467529296875, -10.989079475402832 ], [ -74.045738220214787, -10.987354278564453 ], [ -74.044967651367188, -10.986515045165959 ], [ -74.043205261230469, -10.985514640808105 ], [ -74.042388916015625, -10.984793663024846 ], [ -74.041946411132756, -10.984409332275391 ], [ -74.041397094726562, -10.984292984008732 ], [ -74.040611267089787, -10.984128952026367 ], [ -74.038970947265568, -10.984479904174748 ], [ -74.037506103515625, -10.985058784484863 ], [ -74.034927368164062, -10.98752498626709 ], [ -74.033638000488224, -10.988759994506779 ], [ -74.032730102539062, -10.989396095275822 ], [ -74.032135009765511, -10.989599227905273 ], [ -74.030616760253906, -10.990109443664551 ], [ -74.028701782226449, -10.990406036376953 ], [ -74.028236389160156, -10.990479469299203 ], [ -74.026306152343693, -10.991257667541504 ], [ -74.025230407714844, -10.991329193115234 ], [ -74.024642944335938, -10.991370201110783 ], [ -74.022750854492188, -10.99285984039301 ], [ -74.020736694335938, -10.99384880065918 ], [ -74.018447875976562, -10.994079589843636 ], [ -74.01519775390625, -10.993799209594727 ], [ -74.012191772460881, -10.992320060729924 ], [ -74.010597229003906, -10.991809844970703 ], [ -74.009307861328068, -10.9917955398559 ], [ -74.008834838867131, -10.991788864135742 ], [ -74.007293701171875, -10.992172241210824 ], [ -74.006652832031193, -10.992513656616211 ], [ -74.005462646484375, -10.99367618560791 ], [ -74.004089355468693, -10.997098922729492 ], [ -74.002693176269531, -11.003129959106445 ], [ -74.002243041992188, -11.0079088211059 ], [ -74.001876831054631, -11.009290695190316 ], [ -74.001739501953125, -11.009819030761605 ], [ -74.000465393066349, -11.012019157409668 ], [ -73.997306823730412, -11.015476226806641 ], [ -73.996711730957031, -11.016130447387638 ], [ -73.995216369628849, -11.019170761108398 ], [ -73.994239807128849, -11.021148681640568 ], [ -73.994194030761719, -11.021696090698242 ], [ -73.994079589843693, -11.023058891296387 ], [ -73.992866516113281, -11.026538848876953 ], [ -73.992240905761662, -11.029980659484863 ], [ -73.992156982421818, -11.030671119689941 ], [ -73.991767883300724, -11.033809661865234 ], [ -73.991569519042912, -11.040054321289062 ], [ -73.990447998046818, -11.046380996704045 ], [ -73.990036010742188, -11.05058765411377 ], [ -73.989662170410099, -11.051992416381779 ], [ -73.989227294921875, -11.05359935760498 ], [ -73.9884033203125, -11.055511474609375 ], [ -73.987846374511719, -11.056819915771428 ], [ -73.986686706542969, -11.058865547180176 ], [ -73.980445861816293, -11.066603660583439 ], [ -73.979766845703068, -11.067953109741211 ], [ -73.97857666015625, -11.070298194885197 ], [ -73.978385925292969, -11.078085899353027 ], [ -73.978233337402287, -11.084539413452035 ], [ -73.979255676269531, -11.08689975738514 ], [ -73.981239318847656, -11.089899063110352 ], [ -73.982940673828125, -11.091799736022892 ], [ -73.983398437499943, -11.093049049377441 ], [ -73.983253479003906, -11.093428611755257 ], [ -73.9830322265625, -11.093998908996582 ], [ -73.980690002441406, -11.096110343933105 ], [ -73.980827331542855, -11.097014427185059 ], [ -73.981170654296875, -11.099208831787109 ], [ -73.981246948242188, -11.10187816619873 ], [ -73.980712890624943, -11.106169700622559 ], [ -73.977989196777344, -11.119388580322209 ], [ -73.977340698242188, -11.121456146240178 ], [ -73.977188110351506, -11.121938705444336 ], [ -73.975326538085938, -11.126239776611271 ], [ -73.974105834960938, -11.127612113952637 ], [ -73.969642639160099, -11.129838943481332 ], [ -73.968315124511662, -11.130837440490666 ], [ -73.967506408691406, -11.131771087646428 ], [ -73.967170715331974, -11.132159233093262 ], [ -73.965438842773381, -11.135298728942757 ], [ -73.964897155761662, -11.135983467101994 ], [ -73.964370727539062, -11.136649131774902 ], [ -73.962593078613224, -11.138204574584904 ], [ -73.960281372070312, -11.140229225158691 ], [ -73.959968566894531, -11.140686988830453 ], [ -73.959655761718636, -11.141139030456543 ], [ -73.959053039550724, -11.143344879150391 ], [ -73.958740234375, -11.144499778747559 ], [ -73.956787109374943, -11.149128913879395 ], [ -73.956619262695312, -11.149379730224609 ], [ -73.9561767578125, -11.150019645690918 ], [ -73.955604553222656, -11.150407791137638 ], [ -73.955162048339787, -11.150709152221623 ], [ -73.953651428222543, -11.151353836059513 ], [ -73.952606201171875, -11.151798248290959 ], [ -73.950798034667969, -11.152295112609806 ], [ -73.9478759765625, -11.153089523315373 ], [ -73.945152282714787, -11.155322074890023 ], [ -73.942306518554688, -11.157649040222168 ], [ -73.934196472167855, -11.162409782409668 ], [ -73.930122375488281, -11.163219451904297 ], [ -73.92742919921875, -11.163219451904297 ], [ -73.926353454589787, -11.162895202636719 ], [ -73.923286437988224, -11.161968231201172 ], [ -73.920951843261719, -11.162001609802132 ], [ -73.920356750488224, -11.162009239196777 ], [ -73.919296264648381, -11.162290573120117 ], [ -73.917678833007756, -11.1627197265625 ], [ -73.914413452148438, -11.163314819335938 ], [ -73.911476135253849, -11.163849830627385 ], [ -73.908477783203125, -11.164978027343636 ], [ -73.906539916992074, -11.165710449218693 ], [ -73.903297424316293, -11.16747856140131 ], [ -73.898948669433594, -11.170900344848633 ], [ -73.896446228027344, -11.173488616943359 ], [ -73.892494201660099, -11.178775787353459 ], [ -73.891548156738224, -11.180039405822697 ], [ -73.89111328125, -11.180451393127328 ], [ -73.889472961425781, -11.182009696960392 ], [ -73.888389587402287, -11.182364463806152 ], [ -73.8880615234375, -11.182471275329533 ], [ -73.886955261230412, -11.182058334350586 ], [ -73.886482238769474, -11.181384086608887 ], [ -73.88604736328125, -11.180768013000488 ], [ -73.884620666503906, -11.179510116577092 ], [ -73.880149841308594, -11.177450180053711 ], [ -73.878883361816293, -11.176522254943791 ], [ -73.878250122070312, -11.175510406494141 ], [ -73.875602722167912, -11.169219970703125 ], [ -73.874572753906193, -11.16768836975092 ], [ -73.874114990234261, -11.167219161987191 ], [ -73.873481750488281, -11.166564941406193 ], [ -73.869789123535099, -11.164254188537598 ], [ -73.867446899414062, -11.163314819335938 ], [ -73.865577697753906, -11.162565231323242 ], [ -73.863731384277344, -11.160876274108887 ], [ -73.862770080566406, -11.159770011901799 ], [ -73.862518310546875, -11.159479141235295 ], [ -73.862312316894531, -11.159134864807129 ], [ -73.861473083496094, -11.157739639282227 ], [ -73.861061096191406, -11.156731605529785 ], [ -73.860565185546818, -11.155522346496582 ], [ -73.860298156738281, -11.154359817504883 ], [ -73.860092163085824, -11.153456687927246 ], [ -73.860237121582031, -11.150983810424748 ], [ -73.860298156738281, -11.14997673034668 ], [ -73.860794067382812, -11.148369789123535 ], [ -73.861572265625, -11.145847320556641 ], [ -73.861961364746094, -11.141457557678223 ], [ -73.862297058105469, -11.137623786926213 ], [ -73.862205505371094, -11.136628150939941 ], [ -73.862083435058537, -11.135335922241154 ], [ -73.861114501953068, -11.130936622619572 ], [ -73.860992431640625, -11.127907752990609 ], [ -73.861930847167969, -11.122500419616642 ], [ -73.862350463867131, -11.117830276489258 ], [ -73.864036560058594, -11.112968444824162 ], [ -73.864433288574219, -11.109511375427189 ], [ -73.864662170410099, -11.103854179382324 ], [ -73.864669799804574, -11.103626251220646 ], [ -73.864929199218693, -11.102368354797363 ], [ -73.864799499511719, -11.097875595092717 ], [ -73.863853454589844, -11.095086097717228 ], [ -73.86334228515625, -11.091947555541935 ], [ -73.86297607421875, -11.089730262756291 ], [ -73.862945556640568, -11.088075637817383 ], [ -73.862922668456974, -11.086429595947266 ], [ -73.863189697265625, -11.080068588256836 ], [ -73.863288879394531, -11.07769680023182 ], [ -73.863212585449162, -11.077213287353459 ], [ -73.862892150878906, -11.07514762878418 ], [ -73.862899780273438, -11.070099830627385 ], [ -73.863090515136719, -11.068361282348633 ], [ -73.864471435546818, -11.062080383300668 ], [ -73.86468505859375, -11.056751251220703 ], [ -73.865242004394418, -11.052838325500431 ], [ -73.865562438964844, -11.045679092407227 ], [ -73.866691589355469, -11.040079116821232 ], [ -73.867172241210938, -11.035889625549316 ], [ -73.867134094238224, -11.034334182739258 ], [ -73.866523742675781, -11.030905723571777 ], [ -73.866714477539062, -11.029099464416447 ], [ -73.866905212402344, -11.027343749999943 ], [ -73.866867065429574, -11.024956703186035 ], [ -73.86651611328125, -11.023368835449219 ], [ -73.866271972656193, -11.022258758544922 ], [ -73.86480712890625, -11.01887035369873 ], [ -73.864410400390625, -11.017452239990234 ], [ -73.864295959472656, -11.016315460205078 ], [ -73.864219665527344, -11.015528678894043 ], [ -73.864517211914062, -11.012339591979924 ], [ -73.863479614257812, -11.007387161254769 ], [ -73.863609313964787, -11.003269195556641 ], [ -73.864356994628849, -11.00214958190918 ], [ -73.864601135253906, -11.000550270080566 ], [ -73.864662170410099, -10.998669624328556 ], [ -73.864311218261719, -10.99658012390131 ], [ -73.863960266113281, -10.995342254638672 ], [ -73.863197326660156, -10.994002342224121 ], [ -73.863227844238224, -10.993648529052734 ], [ -73.863250732421875, -10.993440628051701 ], [ -73.863639831542969, -10.99286937713623 ], [ -73.863868713378906, -10.992529869079476 ], [ -73.863906860351449, -10.991436004638672 ], [ -73.863365173339844, -10.989570617675724 ], [ -73.862854003906193, -10.988491058349609 ], [ -73.862342834472656, -10.987415313720703 ], [ -73.861915588378906, -10.98560619354248 ], [ -73.861747741699219, -10.984906196594238 ], [ -73.861778259277287, -10.984188079833984 ], [ -73.861846923828125, -10.982419967651367 ], [ -73.863113403320256, -10.979460716247502 ], [ -73.86324310302723, -10.977950096130371 ], [ -73.863258361816406, -10.977733612060547 ], [ -73.862899780273438, -10.976485252380314 ], [ -73.862632751464787, -10.975552558898926 ], [ -73.862564086914006, -10.97543907165516 ], [ -73.861907958984261, -10.974373817443848 ], [ -73.861289978027344, -10.973811149597111 ], [ -73.859657287597656, -10.973199844360352 ], [ -73.85821533203125, -10.970887184143066 ], [ -73.857566833496094, -10.965959548950138 ], [ -73.857345581054688, -10.965115547180062 ], [ -73.857101440429631, -10.964175224304142 ], [ -73.857131958007756, -10.963061332702523 ], [ -73.857185363769531, -10.960783958435059 ], [ -73.856651306152287, -10.958998680114746 ], [ -73.856460571289006, -10.958376884460392 ], [ -73.855812072753906, -10.957586288452092 ], [ -73.85546875, -10.957171440124512 ], [ -73.854553222656193, -10.956597328185978 ], [ -73.853439331054688, -10.955897331237736 ], [ -73.85256195068348, -10.954933166503906 ], [ -73.850257873535099, -10.952411651611328 ], [ -73.848800659179688, -10.951420783996582 ], [ -73.848487854003906, -10.951284408569279 ], [ -73.847274780273438, -10.95075607299799 ], [ -73.846321105957031, -10.949928283691293 ], [ -73.846153259277287, -10.949780464172363 ], [ -73.845504760742074, -10.948352813720703 ], [ -73.844444274902287, -10.946846961975098 ], [ -73.844100952148438, -10.944759368896428 ], [ -73.843414306640625, -10.943163871765137 ], [ -73.843505859375, -10.940896034240723 ], [ -73.843528747558594, -10.94040584564209 ], [ -73.84344482421875, -10.940274238586426 ], [ -73.842987060546818, -10.939572334289551 ], [ -73.842552185058594, -10.939291000366097 ], [ -73.842308044433594, -10.939135551452637 ], [ -73.84088134765625, -10.93869686126709 ], [ -73.839843749999943, -10.93790340423584 ], [ -73.839546203613281, -10.937678337097111 ], [ -73.838096618652344, -10.935132026672306 ], [ -73.837745666503849, -10.934820175170898 ], [ -73.837257385253906, -10.934389114379883 ], [ -73.836051940917912, -10.93394947052002 ], [ -73.834243774414006, -10.934323310852051 ], [ -73.832015991210938, -10.933160781860295 ], [ -73.831619262695312, -10.932450294494629 ], [ -73.830856323242188, -10.929507255554199 ], [ -73.829986572265625, -10.927913665771484 ], [ -73.829612731933594, -10.92723274230957 ], [ -73.828140258789006, -10.925580024719238 ], [ -73.827667236328011, -10.925217628478947 ], [ -73.825363159179631, -10.923446655273438 ], [ -73.823928833007756, -10.921886444091683 ], [ -73.823822021484318, -10.921566963195801 ], [ -73.823600769042969, -10.920940399169922 ], [ -73.823692321777344, -10.919469833374023 ], [ -73.824974060058537, -10.916926383972168 ], [ -73.825248718261662, -10.916044235229492 ], [ -73.825515747070312, -10.915162086486816 ], [ -73.825874328613281, -10.914640426635742 ], [ -73.827011108398438, -10.912972450256348 ], [ -73.827003479003793, -10.912331581115723 ], [ -73.826995849609318, -10.911027908325138 ], [ -73.825965881347656, -10.909400939941406 ], [ -73.824981689453068, -10.907836914062443 ], [ -73.82289886474598, -10.905895233154297 ], [ -73.820907592773438, -10.904768943786564 ], [ -73.817947387695312, -10.90169715881342 ], [ -73.817764282226562, -10.901165962219238 ], [ -73.817680358886719, -10.900911331176758 ], [ -73.817779541015625, -10.900437355041447 ], [ -73.817810058593693, -10.900277137756348 ], [ -73.8187255859375, -10.899345397949162 ], [ -73.819168090820256, -10.898892402648869 ], [ -73.819328308105469, -10.897907257080078 ], [ -73.820671081542912, -10.896926879882812 ], [ -73.820953369140625, -10.895951271057072 ], [ -73.820411682128849, -10.895301818847656 ], [ -73.820129394531193, -10.894962310790959 ], [ -73.818656921386719, -10.894794464111271 ], [ -73.81787109375, -10.894291877746582 ], [ -73.817535400390568, -10.893857002258244 ], [ -73.817268371581974, -10.893022537231388 ], [ -73.817092895507812, -10.892461776733342 ], [ -73.815238952636662, -10.891641616821289 ], [ -73.814918518066406, -10.890501976013184 ], [ -73.813499450683594, -10.889184951782227 ], [ -73.813125610351562, -10.888343811035156 ], [ -73.813484191894531, -10.887204170227051 ], [ -73.813972473144531, -10.885634422302246 ], [ -73.814064025878906, -10.884506225585824 ], [ -73.814117431640568, -10.883798599243164 ], [ -73.814353942871094, -10.883334159850961 ], [ -73.814491271972599, -10.883061408996525 ], [ -73.816085815429688, -10.881953239440918 ], [ -73.817794799804688, -10.881669998168888 ], [ -73.81866455078125, -10.881528854370117 ], [ -73.82025146484375, -10.880041122436467 ], [ -73.820976257324162, -10.878639221191406 ], [ -73.820472717285156, -10.876355171203613 ], [ -73.819084167480355, -10.873039245605412 ], [ -73.818962097167912, -10.86945629119873 ], [ -73.818412780761662, -10.86767578125 ], [ -73.818046569824219, -10.866497993469181 ], [ -73.817977905273438, -10.862545967102051 ], [ -73.816726684570312, -10.858887672424316 ], [ -73.816566467285156, -10.856328964233398 ], [ -73.817253112792912, -10.852413177490234 ], [ -73.817329406738281, -10.851980209350586 ], [ -73.817344665527287, -10.851799964904728 ], [ -73.817596435546875, -10.849072456359863 ], [ -73.818405151367131, -10.847934722900391 ], [ -73.821090698242074, -10.845278739929142 ], [ -73.822029113769474, -10.843379020690804 ], [ -73.822463989257812, -10.840473175048828 ], [ -73.822692871093693, -10.836668968200627 ], [ -73.822807312011605, -10.834696769714242 ], [ -73.822731018066406, -10.834598541259709 ], [ -73.821807861328125, -10.833381652831974 ], [ -73.819465637206918, -10.831879615783635 ], [ -73.818099975585881, -10.830754280090332 ], [ -73.817901611328125, -10.83059024810791 ], [ -73.817733764648381, -10.830422401428166 ], [ -73.817245483398381, -10.829929351806584 ], [ -73.817008972167969, -10.829347610473633 ], [ -73.817314147949219, -10.82759952545166 ], [ -73.817489624023438, -10.826583862304631 ], [ -73.817741394042912, -10.826141357421761 ], [ -73.818305969238224, -10.825157165527287 ], [ -73.818298339843693, -10.824506759643555 ], [ -73.818420410156136, -10.824112892150879 ], [ -73.818756103515625, -10.823040008544922 ], [ -73.81805419921875, -10.819243431091252 ], [ -73.818138122558594, -10.818861961364689 ], [ -73.81817626953125, -10.81870174407959 ], [ -73.817817687988224, -10.814765930175724 ], [ -73.817359924316349, -10.813015937805176 ], [ -73.817169189453068, -10.81227970123291 ], [ -73.816474914550724, -10.811171531677246 ], [ -73.815773010253906, -10.810465812683049 ], [ -73.815299987792969, -10.809991836547852 ], [ -73.814353942871094, -10.809572219848576 ], [ -73.813262939453068, -10.809088706970215 ], [ -73.811973571777344, -10.808957099914551 ], [ -73.811134338378849, -10.809103012084904 ], [ -73.810409545898324, -10.809229850768986 ], [ -73.809684753417969, -10.809549331665039 ], [ -73.809158325195256, -10.809780120849609 ], [ -73.808303833007756, -10.810789108276367 ], [ -73.806007385253849, -10.813508033752441 ], [ -73.803222656249943, -10.815477371215763 ], [ -73.801399230957031, -10.816149711608887 ], [ -73.799179077148438, -10.816284179687443 ], [ -73.798278808593693, -10.816046714782715 ], [ -73.797660827636719, -10.815882682800236 ], [ -73.796257019042912, -10.815170288085824 ], [ -73.794403076171875, -10.813770294189453 ], [ -73.793045043945256, -10.811751365661621 ], [ -73.792480468749886, -10.810259819030705 ], [ -73.792358398437443, -10.809939384460449 ], [ -73.792091369628849, -10.809533119201603 ], [ -73.791290283203125, -10.808319091796875 ], [ -73.790901184082031, -10.80728816986084 ], [ -73.790931701660099, -10.806000709533691 ], [ -73.791419982910099, -10.803607940673771 ], [ -73.791519165039006, -10.803117752075195 ], [ -73.791542053222656, -10.799908638000431 ], [ -73.792213439941406, -10.798001289367619 ], [ -73.792022705078125, -10.796916007995549 ], [ -73.791854858398438, -10.796729087829533 ], [ -73.791595458984318, -10.796443939208928 ], [ -73.790954589843636, -10.796364784240723 ], [ -73.790489196777344, -10.796304702758732 ], [ -73.789344787597656, -10.795892715454102 ], [ -73.789093017578125, -10.795802116394043 ], [ -73.787834167480469, -10.79472827911377 ], [ -73.787155151367188, -10.792922973632756 ], [ -73.786796569824219, -10.791968345642033 ], [ -73.785636901855469, -10.78986740112299 ], [ -73.785057067871094, -10.789196968078613 ], [ -73.782928466796818, -10.786730766296273 ], [ -73.781158447265625, -10.783736228942814 ], [ -73.780677795410156, -10.782170295715275 ], [ -73.780616760253849, -10.779582977294865 ], [ -73.779045104980469, -10.77616024017334 ], [ -73.778793334960938, -10.774997711181584 ], [ -73.778770446777344, -10.774892807006836 ], [ -73.778778076171875, -10.773974418640137 ], [ -73.778778076171875, -10.773056030273438 ], [ -73.780189514160156, -10.770368576049748 ], [ -73.780227661132812, -10.770238876342773 ], [ -73.780754089355469, -10.768336296081543 ], [ -73.781044006347656, -10.767764091491699 ], [ -73.781455993652344, -10.766939163207951 ], [ -73.781677246093693, -10.765480041503849 ], [ -73.781745910644531, -10.76531791687006 ], [ -73.7821044921875, -10.764451980590763 ], [ -73.782173156738224, -10.762472152709904 ], [ -73.782188415527344, -10.762057304382324 ], [ -73.782157897949162, -10.761805534362736 ], [ -73.781974792480412, -10.760066986083984 ], [ -73.780448913574162, -10.75916671752924 ], [ -73.77559661865223, -10.759506225585938 ], [ -73.774688720703125, -10.759297370910588 ], [ -73.774269104003906, -10.759053230285645 ], [ -73.773483276367131, -10.758599281311035 ], [ -73.773178100585881, -10.758058547973576 ], [ -73.772537231445256, -10.75691032409668 ], [ -73.772529602050724, -10.754524230957031 ], [ -73.772476196289062, -10.75429630279541 ], [ -73.772262573242074, -10.753445625305176 ], [ -73.770881652832031, -10.751859664916935 ], [ -73.77001953125, -10.750219345092773 ], [ -73.769676208496037, -10.745551109313965 ], [ -73.769477844238224, -10.744806289672795 ], [ -73.769203186035099, -10.743778228759766 ], [ -73.768302917480469, -10.742732048034611 ], [ -73.764411926269474, -10.740384101867676 ], [ -73.763740539550724, -10.739670753479004 ], [ -73.762542724609375, -10.738396644592228 ], [ -73.762069702148438, -10.738057136535645 ], [ -73.761337280273438, -10.737536430358887 ], [ -73.756744384765625, -10.736122131347656 ], [ -73.754661560058594, -10.736116409301758 ], [ -73.752578735351506, -10.736106872558537 ], [ -73.748435974121094, -10.734786987304688 ], [ -73.747840881347599, -10.734692573547306 ], [ -73.746414184570199, -10.734462738037053 ], [ -73.745521545410099, -10.734460830688477 ], [ -73.74530029296875, -10.734460830688477 ], [ -73.743125915527344, -10.733968734741097 ], [ -73.742088317871037, -10.734134674072266 ], [ -73.741127014160156, -10.73429012298584 ], [ -73.740402221679631, -10.7345933914184 ], [ -73.738990783691406, -10.73517894744873 ], [ -73.736900329589844, -10.737019538879395 ], [ -73.7359619140625, -10.738679885864258 ], [ -73.735786437988281, -10.739459037780762 ], [ -73.735443115234318, -10.741020202636719 ], [ -73.735504150390625, -10.743786811828613 ], [ -73.735542297363168, -10.745808601379395 ], [ -73.735336303710881, -10.74735164642334 ], [ -73.735176086425781, -10.748530387878418 ], [ -73.734230041503906, -10.750718116760197 ], [ -73.733680725097656, -10.751990318298283 ], [ -73.733482360839844, -10.752200126647892 ], [ -73.731925964355469, -10.753840446472168 ], [ -73.729866027832031, -10.755178451538086 ], [ -73.729141235351506, -10.755649566650334 ], [ -73.727500915527287, -10.756379127502441 ], [ -73.726181030273381, -10.756970405578613 ], [ -73.722885131835938, -10.757990837097111 ], [ -73.722473144531193, -10.758120536804086 ], [ -73.719436645507812, -10.758484840393066 ], [ -73.717781066894474, -10.75905704498291 ], [ -73.71649169921875, -10.759089469909668 ], [ -73.716392517089844, -10.759127616882324 ], [ -73.71527099609375, -10.759570121765137 ], [ -73.714485168457031, -10.760196685791016 ], [ -73.712966918945312, -10.761408805847168 ], [ -73.710479736328125, -10.763774871826172 ], [ -73.709220886230355, -10.764968872070312 ], [ -73.707916259765625, -10.76686954498291 ], [ -73.707389831542912, -10.768010139465332 ], [ -73.706886291503906, -10.769120216369572 ], [ -73.705032348632812, -10.771178245544377 ], [ -73.702125549316406, -10.771588325500431 ], [ -73.701004028320256, -10.772046089172363 ], [ -73.699287414550724, -10.772747993469181 ], [ -73.697052001953125, -10.773328781127873 ], [ -73.694801330566349, -10.774748802185059 ], [ -73.693717956542969, -10.775735855102425 ], [ -73.691535949707031, -10.777718544006234 ], [ -73.689628601074219, -10.778797149658203 ], [ -73.689521789550781, -10.778859138488656 ], [ -73.689163208007756, -10.77925968170166 ], [ -73.689140319824219, -10.779640197753906 ], [ -73.687950134277287, -10.780806541442814 ], [ -73.686378479003906, -10.782349586486816 ], [ -73.685256958007756, -10.782778739929199 ], [ -73.684844970703125, -10.783123016357365 ], [ -73.684127807617131, -10.783720016479435 ], [ -73.682235717773324, -10.785490989684945 ], [ -73.681198120117188, -10.78743934631342 ], [ -73.681129455566406, -10.787516593933105 ], [ -73.680648803710938, -10.788057327270508 ], [ -73.678932189941406, -10.789328575134277 ], [ -73.677711486816406, -10.789730072021484 ], [ -73.67718505859375, -10.789715766906681 ], [ -73.675575256347656, -10.789677619934082 ], [ -73.674079895019531, -10.788900375366097 ], [ -73.673156738281193, -10.788419723510629 ], [ -73.672935485839844, -10.788404464721623 ], [ -73.672401428222599, -10.788359642028809 ], [ -73.672126770019418, -10.788482666015625 ], [ -73.671913146972599, -10.788578987121525 ], [ -73.67138671875, -10.7894287109375 ], [ -73.670364379882812, -10.790559768676758 ], [ -73.670028686523324, -10.790928840637207 ], [ -73.668571472167912, -10.791790008544865 ], [ -73.667236328124943, -10.79257869720459 ], [ -73.66632080078125, -10.793360710144043 ], [ -73.666244506835938, -10.794160842895508 ], [ -73.666168212890625, -10.79491138458252 ], [ -73.666282653808537, -10.795079231262207 ], [ -73.667716979980412, -10.797309875488224 ], [ -73.6683349609375, -10.798992156982422 ], [ -73.668380737304631, -10.79911994934082 ], [ -73.668350219726562, -10.799513816833496 ], [ -73.668235778808594, -10.800958633422852 ], [ -73.667816162109318, -10.801551818847656 ], [ -73.667427062988224, -10.802109718322697 ], [ -73.666641235351562, -10.802445411682129 ], [ -73.666351318359375, -10.802568435668945 ], [ -73.662193298339787, -10.802550315856877 ], [ -73.661552429199219, -10.803127288818303 ], [ -73.66156005859375, -10.805029869079533 ], [ -73.660469055175724, -10.807038307189941 ], [ -73.657562255859375, -10.808450698852425 ], [ -73.654541015624943, -10.811548233032227 ], [ -73.651069641113281, -10.812817573547363 ], [ -73.648231506347656, -10.815987586975098 ], [ -73.647911071777344, -10.816348075866699 ], [ -73.645828247070312, -10.817507743835392 ], [ -73.642906188964787, -10.819128990173283 ], [ -73.641098022460881, -10.8208971023559 ], [ -73.639877319335881, -10.822089195251408 ], [ -73.639656066894531, -10.822196006774846 ], [ -73.638717651367131, -10.822649955749455 ], [ -73.637916564941406, -10.822866439819336 ], [ -73.637199401855412, -10.823060035705566 ], [ -73.636428833007756, -10.823566436767464 ], [ -73.635894775390625, -10.824083328247013 ], [ -73.635101318359318, -10.824849128723145 ], [ -73.632843017578125, -10.827869415283203 ], [ -73.629013061523381, -10.830289840698129 ], [ -73.615676879882812, -10.843549728393555 ], [ -73.61358642578125, -10.845245361328125 ], [ -73.612831115722656, -10.845861434936523 ], [ -73.60927581787098, -10.84802055358881 ], [ -73.605735778808537, -10.849358558654785 ], [ -73.605537414550724, -10.849413871765137 ], [ -73.596969604492131, -10.851740837097111 ], [ -73.595046997070256, -10.851949691772461 ], [ -73.594520568847656, -10.85210990905756 ], [ -73.593536376953068, -10.852409362792969 ], [ -73.59063720703125, -10.852547645568791 ], [ -73.590072631835881, -10.852831840515137 ], [ -73.589859008789062, -10.852939605712777 ], [ -73.587982177734318, -10.854920387268066 ], [ -73.585052490234261, -10.860499382019043 ], [ -73.584426879882812, -10.862419128417969 ], [ -73.583419799804631, -10.863849639892578 ], [ -73.582878112792969, -10.86484432220459 ], [ -73.581077575683594, -10.868129730224609 ], [ -73.580947875976506, -10.868847846984863 ], [ -73.579216003417912, -10.872504234313965 ], [ -73.579086303710938, -10.873319625854492 ], [ -73.578544616699162, -10.874303817749023 ], [ -73.578292846679688, -10.87476921081543 ], [ -73.578186035156136, -10.875328063964787 ], [ -73.578086853027287, -10.875848770141545 ], [ -73.576637268066349, -10.879326820373535 ], [ -73.576530456542912, -10.879590034484863 ], [ -73.576431274414062, -10.879688262939453 ], [ -73.575416564941349, -10.88068962097168 ], [ -73.574172973632756, -10.881018638610783 ], [ -73.570075988769474, -10.883199691772404 ], [ -73.569229125976562, -10.883406639099064 ], [ -73.568649291992074, -10.883550643920898 ], [ -73.567741394042969, -10.884177207946721 ], [ -73.567596435546818, -10.884350776672363 ], [ -73.566429138183537, -10.885720252990723 ], [ -73.566017150878906, -10.886814117431641 ], [ -73.565910339355469, -10.887110710144043 ], [ -73.564964294433594, -10.88826847076416 ], [ -73.564811706542912, -10.888460159301644 ], [ -73.563766479492131, -10.890708923339844 ], [ -73.563751220703068, -10.891349792480412 ], [ -73.564262390136605, -10.892630577087402 ], [ -73.564613342285099, -10.894618034362793 ], [ -73.564582824707031, -10.895344734191895 ], [ -73.564567565917969, -10.895728111267033 ], [ -73.564262390136605, -10.896659851074219 ], [ -73.564109802246094, -10.897121429443359 ], [ -73.564163208007756, -10.89795017242426 ], [ -73.565109252929631, -10.900539398193359 ], [ -73.566688537597656, -10.902809143066349 ], [ -73.567207336425724, -10.905050277709904 ], [ -73.56732177734375, -10.906948089599609 ], [ -73.567329406738281, -10.907059669494629 ], [ -73.567207336425724, -10.910639762878418 ], [ -73.566757202148438, -10.911836624145508 ], [ -73.566047668456974, -10.912951469421387 ], [ -73.56591796875, -10.913149833679142 ], [ -73.565467834472599, -10.915398597717228 ], [ -73.565460205078125, -10.916007995605469 ], [ -73.565452575683594, -10.916949272155762 ], [ -73.566116333007812, -10.919720649719125 ], [ -73.566192626953125, -10.921178817749023 ], [ -73.566009521484375, -10.922155380249023 ], [ -73.56591796875, -10.922619819641113 ], [ -73.565910339355469, -10.924697875976562 ], [ -73.565910339355469, -10.925740242004395 ], [ -73.564682006835938, -10.930430412292424 ], [ -73.564407348632812, -10.934369087219181 ], [ -73.564750671386719, -10.935519218444824 ], [ -73.565422058105469, -10.936509132385254 ], [ -73.5667724609375, -10.939528465270996 ], [ -73.569686889648381, -10.944228172302246 ], [ -73.570556640624886, -10.945630073547306 ], [ -73.570999145507756, -10.94700908660883 ], [ -73.571777343749943, -10.948470115661507 ], [ -73.572715759277287, -10.952499389648324 ], [ -73.572746276855412, -10.954059600830078 ], [ -73.571891784667855, -10.957529067993164 ], [ -73.571342468261719, -10.958608627319336 ], [ -73.569557189941406, -10.960939407348519 ], [ -73.568046569824162, -10.964590072631836 ], [ -73.567092895507756, -10.965918540954533 ], [ -73.566329956054631, -10.967999458312988 ], [ -73.560920715331974, -10.972599029540959 ], [ -73.559616088867188, -10.974035263061523 ], [ -73.559013366699162, -10.974699974059945 ], [ -73.558807373046818, -10.979119300842228 ], [ -73.559066772460938, -10.985288619995117 ], [ -73.558944702148438, -10.985919952392578 ], [ -73.55877685546875, -10.986818313598633 ], [ -73.557556152343693, -10.989478111266976 ], [ -73.554496765136719, -10.992160797119084 ], [ -73.553451538085881, -10.993869781494084 ], [ -73.553512573242188, -10.994368553161621 ], [ -73.553627014160156, -10.995248794555607 ], [ -73.554588317871094, -10.996378898620605 ], [ -73.554695129394474, -10.996616363525391 ], [ -73.555122375488281, -10.997559547424316 ], [ -73.555274963378849, -10.999715805053711 ], [ -73.555328369140625, -11.000458717346135 ], [ -73.553657531738224, -11.001978874206543 ], [ -73.553321838378906, -11.002054214477539 ], [ -73.552139282226506, -11.0023193359375 ], [ -73.549491882324219, -11.002185821533089 ], [ -73.549209594726562, -11.002306938171387 ], [ -73.548667907714844, -11.002539634704533 ], [ -73.548286437988281, -11.003169059753418 ], [ -73.548423767089787, -11.004203796386719 ], [ -73.548439025878906, -11.004317283630371 ], [ -73.549362182617131, -11.004818916320801 ], [ -73.549484252929574, -11.005202293395939 ], [ -73.549530029296875, -11.005329132080021 ], [ -73.54913330078125, -11.006150245666504 ], [ -73.547531127929688, -11.00707817077631 ], [ -73.547370910644474, -11.007308006286564 ], [ -73.547073364257756, -11.00774955749506 ], [ -73.546592712402287, -11.014530181884766 ], [ -73.545364379882756, -11.016102790832463 ], [ -73.543472290038949, -11.018539428710938 ], [ -73.542236328124886, -11.021209716796875 ], [ -73.541732788085881, -11.033096313476562 ], [ -73.541618347167969, -11.035889625549316 ], [ -73.541488647460938, -11.036576271057129 ], [ -73.540817260742188, -11.040239334106445 ], [ -73.540092468261719, -11.04191875457758 ], [ -73.539581298828125, -11.042738914489746 ], [ -73.538963317871037, -11.043719291686955 ], [ -73.53729248046875, -11.045478820800724 ], [ -73.536987304687386, -11.045798301696777 ], [ -73.535911560058537, -11.046584129333439 ], [ -73.532302856445256, -11.049209594726562 ], [ -73.531349182128849, -11.050095558166504 ], [ -73.529808044433537, -11.051529884338379 ], [ -73.528656005859318, -11.053079605102539 ], [ -73.52825927734375, -11.053845405578613 ], [ -73.527763366699219, -11.054788589477539 ], [ -73.527069091796761, -11.055529594421387 ], [ -73.525962829589844, -11.056359291076603 ], [ -73.524963378906193, -11.056811332702523 ], [ -73.522186279296818, -11.056870460510254 ], [ -73.519218444824162, -11.059189796447754 ], [ -73.515808105468693, -11.058869361877441 ], [ -73.514259338378849, -11.059242248535156 ], [ -73.513641357421875, -11.059388160705566 ], [ -73.513328552246037, -11.059380531311035 ], [ -73.512535095214844, -11.059365272521973 ], [ -73.511566162109375, -11.059142112731934 ], [ -73.510910034179688, -11.058996200561523 ], [ -73.507080078125, -11.057357788085938 ], [ -73.506057739257756, -11.057297706603947 ], [ -73.505149841308594, -11.057546615600472 ], [ -73.503578186035099, -11.057979583740121 ], [ -73.502182006835824, -11.059281349182129 ], [ -73.501411437988224, -11.059999465942326 ], [ -73.50079345703125, -11.060262680053711 ], [ -73.500167846679631, -11.060529708862305 ], [ -73.499511718749886, -11.061249732971191 ], [ -73.497901916503906, -11.061939239501953 ], [ -73.496406555175781, -11.06182861328125 ], [ -73.495147705078125, -11.061387062072754 ], [ -73.495010375976506, -11.061339378356934 ], [ -73.491241455078125, -11.058489799499455 ], [ -73.48992919921875, -11.058020591735783 ], [ -73.488349914550668, -11.05792045593256 ], [ -73.485809326171875, -11.058768272399902 ], [ -73.480690002441349, -11.061859130859318 ], [ -73.476684570312443, -11.06902027130127 ], [ -73.476043701171818, -11.070547103881836 ], [ -73.475463867187443, -11.072966575622559 ], [ -73.4747314453125, -11.074653625488224 ], [ -73.473854064941293, -11.075843811035156 ], [ -73.470870971679631, -11.078728675842285 ], [ -73.469650268554631, -11.081110954284611 ], [ -73.468704223632699, -11.084766387939396 ], [ -73.468681335449162, -11.087732315063477 ], [ -73.468940734863281, -11.089640617370605 ], [ -73.469673156738281, -11.091038703918457 ], [ -73.472129821777287, -11.094169616699219 ], [ -73.472419738769474, -11.095499038696232 ], [ -73.471900939941406, -11.096689224243164 ], [ -73.469848632812386, -11.099738121032715 ], [ -73.469284057617188, -11.100358009338379 ], [ -73.468215942382756, -11.101529121398926 ], [ -73.466712951660156, -11.102766990661564 ], [ -73.466522216796875, -11.103536605834961 ], [ -73.466133117675668, -11.105079650878849 ], [ -73.465408325195312, -11.106208801269474 ], [ -73.464881896972599, -11.107040405273438 ], [ -73.464561462402344, -11.107901573181096 ], [ -73.464508056640511, -11.108050346374512 ], [ -73.46453857421875, -11.108489990234318 ], [ -73.464607238769418, -11.109360694885254 ], [ -73.464950561523381, -11.110556602478027 ], [ -73.465187072753906, -11.11139965057373 ], [ -73.465133666992188, -11.112829208373967 ], [ -73.465042114257812, -11.115019798278809 ], [ -73.465232849121094, -11.116259574890137 ], [ -73.466018676757756, -11.116938591003418 ], [ -73.467376708984375, -11.117594718933105 ], [ -73.469947814941293, -11.118837356567326 ], [ -73.472206115722599, -11.120288848876953 ], [ -73.473556518554631, -11.121823310852051 ], [ -73.4739990234375, -11.12263011932373 ], [ -73.474227905273381, -11.124009132385254 ], [ -73.474159240722656, -11.124345779418945 ], [ -73.474037170410099, -11.124988555908146 ], [ -73.473068237304631, -11.127203941345215 ], [ -73.472045898437386, -11.129549026489144 ], [ -73.469490051269531, -11.133717536926213 ], [ -73.469398498535156, -11.133868217468148 ], [ -73.466377258300781, -11.137129783630371 ], [ -73.464218139648381, -11.13903903961176 ], [ -73.462242126464844, -11.140406608581543 ], [ -73.461723327636662, -11.140880584716797 ], [ -73.459709167480412, -11.142724990844727 ], [ -73.458793640136719, -11.144069671630803 ], [ -73.4586181640625, -11.144319534301701 ], [ -73.458137512207031, -11.145978927612305 ], [ -73.458328247070312, -11.149518966674805 ], [ -73.4591064453125, -11.153582572936955 ], [ -73.461875915527344, -11.158941268920898 ], [ -73.463356018066349, -11.161819458007756 ], [ -73.463600158691406, -11.163088798522949 ], [ -73.463508605957031, -11.163948059082031 ], [ -73.463287353515625, -11.166109085083008 ], [ -73.462348937988281, -11.168364524841252 ], [ -73.461700439453125, -11.169919013977051 ], [ -73.4617919921875, -11.172519683837891 ], [ -73.460945129394474, -11.173933029174805 ], [ -73.459686279296875, -11.17603874206543 ], [ -73.459976196289062, -11.177230834960938 ], [ -73.461189270019531, -11.178744316101074 ], [ -73.461349487304631, -11.179984092712402 ], [ -73.461570739746094, -11.181720733642578 ], [ -73.461021423339844, -11.182456970214844 ], [ -73.459526062011662, -11.184459686279297 ], [ -73.459487915039062, -11.186084747314453 ], [ -73.459175109863281, -11.186925888061467 ], [ -73.458786010742074, -11.187978744506779 ], [ -73.456871032714787, -11.190931320190373 ], [ -73.456436157226562, -11.191600799560547 ], [ -73.456123352050781, -11.192507743835392 ], [ -73.455802917480412, -11.19342041015625 ], [ -73.455757141113281, -11.194799423217773 ], [ -73.4559326171875, -11.195601463317871 ], [ -73.456016540527287, -11.195979118347168 ], [ -73.45806884765625, -11.200977325439453 ], [ -73.458091735839787, -11.201242446899357 ], [ -73.458183288574162, -11.202449798583928 ], [ -73.45794677734375, -11.20408821105957 ], [ -73.457176208496094, -11.206048011779785 ], [ -73.4552001953125, -11.208589553832951 ], [ -73.4547119140625, -11.209579467773381 ], [ -73.454673767089787, -11.210442543029785 ], [ -73.454658508300724, -11.210868835449219 ], [ -73.455268859863281, -11.213946342468205 ], [ -73.454933166503906, -11.214670181274414 ], [ -73.454811096191406, -11.214939117431584 ], [ -73.454299926757756, -11.215485572814941 ], [ -73.453285217285156, -11.215895652770996 ], [ -73.452575683593693, -11.21651554107666 ], [ -73.452270507812443, -11.217764854431096 ], [ -73.452171325683537, -11.218189239501896 ], [ -73.451408386230412, -11.219000816345158 ], [ -73.450904846191406, -11.219071388244572 ], [ -73.450675964355412, -11.219100952148438 ], [ -73.4495849609375, -11.218861579894963 ], [ -73.447433471679631, -11.217449188232422 ], [ -73.446846008300724, -11.217726707458496 ], [ -73.44635009765625, -11.21880912780756 ], [ -73.446479797363224, -11.219320297241211 ], [ -73.446952819824162, -11.22112941741932 ], [ -73.448348999023438, -11.223730087280273 ], [ -73.448646545410099, -11.224686622619572 ], [ -73.448623657226562, -11.225283622741699 ], [ -73.448593139648438, -11.226071357727051 ], [ -73.447601318359318, -11.229038238525334 ], [ -73.447463989257812, -11.229678153991642 ], [ -73.447196960449219, -11.23092079162592 ], [ -73.447425842285099, -11.233015060424748 ], [ -73.448478698730412, -11.235871315002441 ], [ -73.451995849609318, -11.24225902557373 ], [ -73.452796936035156, -11.24452018737793 ], [ -73.453247070312443, -11.252215385436898 ], [ -73.453193664550781, -11.253424644470158 ], [ -73.453170776367188, -11.254049301147461 ], [ -73.452583312988224, -11.25786018371582 ], [ -73.452911376953125, -11.260969161987191 ], [ -73.453987121581974, -11.263811111450138 ], [ -73.457595825195312, -11.269119262695199 ], [ -73.458686828613224, -11.271368026733398 ], [ -73.459220886230469, -11.273030281066838 ], [ -73.459602355957031, -11.27659893035883 ], [ -73.461166381835881, -11.279840469360295 ], [ -73.460990905761719, -11.282299041748047 ], [ -73.460136413574219, -11.28423023223877 ], [ -73.460060119628906, -11.284410476684513 ], [ -73.460044860839844, -11.284514427185002 ], [ -73.459953308105469, -11.285229682922306 ], [ -73.460487365722599, -11.286716461181641 ], [ -73.461227416992188, -11.288769721984806 ], [ -73.461372375488281, -11.290131568908691 ], [ -73.461456298828011, -11.290950775146428 ], [ -73.460838317871094, -11.291851043701172 ], [ -73.460571289062443, -11.292238235473576 ], [ -73.460441589355469, -11.292313575744572 ], [ -73.458160400390625, -11.293638229370117 ], [ -73.457633972167912, -11.29409122467041 ], [ -73.457389831542969, -11.294299125671387 ], [ -73.457244873046818, -11.294656753540039 ], [ -73.455673217773438, -11.298558235168457 ], [ -73.455787658691406, -11.299843788146916 ], [ -73.456298828124943, -11.300699234008732 ], [ -73.457527160644474, -11.30159854888916 ], [ -73.457733154296818, -11.301749229431152 ], [ -73.462150573730469, -11.303689002990723 ], [ -73.464401245117131, -11.304099082946664 ], [ -73.469047546386719, -11.303900718688908 ], [ -73.471305847167969, -11.304730415344238 ], [ -73.473960876464844, -11.307039260864258 ], [ -73.476127624511662, -11.308289527893066 ], [ -73.478202819824219, -11.310989379882699 ], [ -73.481178283691349, -11.313191413879338 ], [ -73.482200622558594, -11.314269065856877 ], [ -73.482215881347599, -11.314738273620605 ], [ -73.482238769531193, -11.315269470214787 ], [ -73.481826782226562, -11.316296577453613 ], [ -73.480560302734375, -11.317627906799316 ], [ -73.479316711425781, -11.31846904754633 ], [ -73.478416442871037, -11.319080352783146 ], [ -73.478225708007756, -11.319446563720646 ], [ -73.477676391601562, -11.320479393005314 ], [ -73.477462768554631, -11.321538925170898 ], [ -73.477622985839844, -11.322649002075138 ], [ -73.478126525878849, -11.323367118835449 ], [ -73.478202819824219, -11.323469161987305 ], [ -73.47872161865223, -11.325308799743652 ], [ -73.478607177734318, -11.32780933380127 ], [ -73.478836059570312, -11.328868865966797 ], [ -73.479545593261662, -11.330354690551758 ], [ -73.479957580566293, -11.331209182739258 ], [ -73.481399536132812, -11.333481788635197 ], [ -73.481781005859375, -11.334078788757324 ], [ -73.482406616210881, -11.335453033447266 ], [ -73.483116149902344, -11.337018966674805 ], [ -73.483467102050724, -11.338826179504338 ], [ -73.483428955078125, -11.3397216796875 ], [ -73.48333740234375, -11.341848373413086 ], [ -73.481788635253906, -11.346584320068359 ], [ -73.481056213378906, -11.348840713500977 ], [ -73.480690002441349, -11.34924411773676 ], [ -73.479881286621094, -11.350128173828125 ], [ -73.478813171386605, -11.350391387939453 ], [ -73.478378295898438, -11.350495338439828 ], [ -73.477294921875, -11.349978446960449 ], [ -73.476394653320256, -11.349168777465763 ], [ -73.473983764648438, -11.34601879119873 ], [ -73.472900390624886, -11.344196319580078 ], [ -73.4725341796875, -11.343852043151799 ], [ -73.47194671630848, -11.343304634094181 ], [ -73.471244812011662, -11.342912673950195 ], [ -73.470970153808537, -11.342760086059513 ], [ -73.469314575195312, -11.340652465820312 ], [ -73.468215942382756, -11.340168952941838 ], [ -73.467765808105469, -11.340105056762638 ], [ -73.467292785644531, -11.340041160583439 ], [ -73.466049194335938, -11.340437889099121 ], [ -73.465637207031193, -11.340570449829045 ], [ -73.465255737304631, -11.341007232665959 ], [ -73.464492797851506, -11.341879844665527 ], [ -73.463539123535099, -11.348050117492676 ], [ -73.462989807128906, -11.349404335021973 ], [ -73.462196350097599, -11.351370811462346 ], [ -73.460479736328068, -11.353569984436035 ], [ -73.457839965820312, -11.354068756103459 ], [ -73.45556640625, -11.356360435485726 ], [ -73.453315734863224, -11.35743522644043 ], [ -73.452209472656136, -11.358406066894531 ], [ -73.452049255371094, -11.358917236328125 ], [ -73.451042175292912, -11.362069129943848 ], [ -73.450248718261719, -11.363540649414062 ], [ -73.448066711425781, -11.366515159606934 ], [ -73.447731018066406, -11.368169784545898 ], [ -73.44708251953125, -11.371360778808594 ], [ -73.445999145507756, -11.372930526733285 ], [ -73.445938110351562, -11.373020172119141 ], [ -73.445335388183537, -11.373459815978947 ], [ -73.444450378417912, -11.373592376708984 ], [ -73.441757202148438, -11.370890617370605 ], [ -73.441062927246094, -11.370439529418888 ], [ -73.439422607421818, -11.369750022888184 ], [ -73.436920166015568, -11.369735717773324 ], [ -73.435150146484375, -11.370306015014648 ], [ -73.433334350585938, -11.371185302734375 ], [ -73.432807922363281, -11.371438026428166 ], [ -73.429168701171875, -11.374709129333496 ], [ -73.428131103515625, -11.375435829162598 ], [ -73.427497863769474, -11.375880241393986 ], [ -73.427230834960938, -11.37595272064209 ], [ -73.425621032714844, -11.376401901245117 ], [ -73.422279357910156, -11.376401901245117 ], [ -73.421859741210881, -11.376564025878849 ], [ -73.421752929687443, -11.376606941223088 ], [ -73.421630859375, -11.376699447631836 ], [ -73.418792724609318, -11.37880897521967 ], [ -73.416946411132812, -11.381093025207463 ], [ -73.420829772949105, -11.3837890625 ], [ -73.422103881835938, -11.385379791259766 ], [ -73.423233032226562, -11.388205528259221 ], [ -73.423858642578068, -11.391842842102051 ], [ -73.425094604492131, -11.393675804138184 ], [ -73.426864624023438, -11.395320892333984 ], [ -73.429046630859375, -11.39675331115717 ], [ -73.431365966796875, -11.398103713989144 ], [ -73.432807922363281, -11.398516654968262 ], [ -73.433845520019531, -11.400465011596623 ], [ -73.434860229492188, -11.401548385620117 ], [ -73.437950134277344, -11.403029441833496 ], [ -73.439788818359318, -11.406537055969181 ], [ -73.440704345703125, -11.407591819763184 ], [ -73.442031860351562, -11.408404350280705 ], [ -73.443290710449219, -11.410138130187988 ], [ -73.443710327148381, -11.411449432373047 ], [ -73.443794250488224, -11.414287567138672 ], [ -73.445793151855412, -11.418024063110295 ], [ -73.447593688964787, -11.419877052307129 ], [ -73.450775146484261, -11.421369552612248 ], [ -73.451698303222599, -11.423480033874455 ], [ -73.453140258789006, -11.425296783447209 ], [ -73.453277587890625, -11.426551818847599 ], [ -73.452880859375, -11.427589416503849 ], [ -73.451560974121094, -11.42886829376215 ], [ -73.451820373535099, -11.429553985595703 ], [ -73.45404052734375, -11.431193351745549 ], [ -73.455490112304688, -11.434593200683594 ], [ -73.456962585449162, -11.436226844787484 ], [ -73.459815979003849, -11.436313629150391 ], [ -73.462348937988281, -11.438507080078125 ], [ -73.464920043945312, -11.439822196960449 ], [ -73.465919494628849, -11.440624237060547 ], [ -73.467697143554688, -11.44299411773676 ], [ -73.467826843261662, -11.445560455322266 ], [ -73.468055725097656, -11.44603157043457 ], [ -73.469642639160099, -11.44759559631342 ], [ -73.471214294433594, -11.449870109558105 ], [ -73.473091125488168, -11.451932907104492 ], [ -73.474472045898438, -11.454545021057129 ], [ -73.474555969238281, -11.455829620361271 ], [ -73.473098754882812, -11.45744800567627 ], [ -73.473823547363224, -11.459259986877441 ], [ -73.475860595703011, -11.462001800537109 ], [ -73.477493286132812, -11.465418815612793 ], [ -73.477531433105469, -11.466711044311523 ], [ -73.477157592773381, -11.468028068542424 ], [ -73.476387023925781, -11.469987869262638 ], [ -73.473937988281193, -11.474095344543457 ], [ -73.473152160644474, -11.474887847900334 ], [ -73.468658447265625, -11.47746753692627 ], [ -73.467262268066349, -11.478690147399846 ], [ -73.464271545410156, -11.484180450439453 ], [ -73.461601257324219, -11.487232208251953 ], [ -73.459533691406193, -11.492645263671818 ], [ -73.455810546874943, -11.496874809265137 ], [ -73.455238342285099, -11.501489639282227 ], [ -73.455680847167969, -11.502461433410645 ], [ -73.456413269042969, -11.502969741821289 ], [ -73.460121154785043, -11.503514289855957 ], [ -73.463165283203068, -11.5045166015625 ], [ -73.46575927734375, -11.506057739257812 ], [ -73.467521667480469, -11.508681297302246 ], [ -73.468002319335881, -11.509957313537598 ], [ -73.469184875488168, -11.511890411376896 ], [ -73.469879150390625, -11.514035224914494 ], [ -73.472503662109318, -11.517349243164006 ], [ -73.474136352539006, -11.518336296081543 ], [ -73.478439331054688, -11.519042015075627 ], [ -73.480590820312443, -11.518512725830078 ], [ -73.482780456542969, -11.518451690673828 ], [ -73.485633850097656, -11.51783370971674 ], [ -73.49322509765625, -11.515785217285156 ], [ -73.494323730468693, -11.515707969665471 ], [ -73.495643615722656, -11.516023635864258 ], [ -73.5001220703125, -11.515803337097111 ], [ -73.500900268554688, -11.51618576049799 ], [ -73.501449584960938, -11.516803741455078 ], [ -73.502082824706918, -11.518036842346135 ], [ -73.502326965332031, -11.51920223236084 ], [ -73.502929687499943, -11.519893646240234 ], [ -73.50466156005848, -11.520263671875 ], [ -73.506614685058594, -11.520076751708984 ], [ -73.509582519531193, -11.520170211791935 ], [ -73.510490417480469, -11.520437240600529 ], [ -73.511306762695256, -11.521050453186035 ], [ -73.513504028320256, -11.524450302123967 ], [ -73.520362854003849, -11.532195091247502 ], [ -73.52490234375, -11.539362907409611 ], [ -73.530281066894474, -11.544823646545353 ], [ -73.536186218261719, -11.550161361694336 ], [ -73.538520812988281, -11.553373336791992 ], [ -73.543510437011719, -11.55894660949707 ], [ -73.544410705566349, -11.56066989898676 ], [ -73.544845581054688, -11.562073707580566 ], [ -73.545982360839844, -11.563526153564453 ], [ -73.548027038574162, -11.565128326415959 ], [ -73.550186157226562, -11.566405296325684 ], [ -73.55914306640625, -11.570290565490666 ], [ -73.562973022460938, -11.572669982910099 ], [ -73.566734313964787, -11.576107025146371 ], [ -73.571586608886662, -11.582033157348576 ], [ -73.575683593749943, -11.585515022277832 ], [ -73.584617614746094, -11.594123840331974 ], [ -73.586112976074219, -11.596741676330566 ], [ -73.5882568359375, -11.602821350097656 ], [ -73.593009948730469, -11.610038757324162 ], [ -73.59454345703125, -11.612001419067326 ], [ -73.596557617187443, -11.613918304443359 ], [ -73.601692199707031, -11.617560386657658 ], [ -73.603721618652287, -11.620325088500977 ], [ -73.604202270507756, -11.621785163879338 ], [ -73.604393005371037, -11.623702049255371 ], [ -73.603950500488281, -11.627902984619141 ], [ -73.603218078613281, -11.631210327148381 ], [ -73.603179931640625, -11.634608268737736 ], [ -73.603431701660099, -11.635685920715332 ], [ -73.604354858398438, -11.637489318847599 ], [ -73.605865478515625, -11.639586448669377 ], [ -73.610443115234375, -11.643765449523926 ], [ -73.613494873046875, -11.647232055664006 ], [ -73.614547729492188, -11.649788856506348 ], [ -73.614715576171761, -11.652076721191406 ], [ -73.615264892578068, -11.654014587402287 ], [ -73.615341186523438, -11.655941009521484 ], [ -73.615135192871094, -11.658778190612793 ], [ -73.613372802734318, -11.663641929626465 ], [ -73.612152099609375, -11.666213035583496 ], [ -73.611610412597656, -11.67021656036377 ], [ -73.609832763671818, -11.674945831298828 ], [ -73.609405517578125, -11.678405761718693 ], [ -73.608734130859375, -11.68040943145752 ], [ -73.604537963867188, -11.686465263366699 ], [ -73.601585388183594, -11.691973686218262 ], [ -73.599334716796818, -11.695453643798828 ], [ -73.596939086914006, -11.700025558471623 ], [ -73.591728210449105, -11.706012725830078 ], [ -73.588562011718693, -11.71182727813715 ], [ -73.583663940429688, -11.717706680297852 ], [ -73.580360412597599, -11.72334098815918 ], [ -73.578079223632756, -11.726359367370549 ], [ -73.572479248046875, -11.734918594360295 ], [ -73.570953369140625, -11.737643241882324 ], [ -73.570152282714787, -11.739798545837346 ], [ -73.569381713867131, -11.749758720397949 ], [ -73.569557189941406, -11.755444526672363 ], [ -73.57000732421875, -11.758070945739746 ], [ -73.571044921875, -11.760625839233398 ], [ -73.572868347167969, -11.763816833496094 ], [ -73.574279785156136, -11.764926910400334 ], [ -73.577674865722599, -11.766660690307617 ], [ -73.578506469726562, -11.767534255981388 ], [ -73.579032897949162, -11.76881027221674 ], [ -73.579574584960938, -11.771697998046818 ], [ -73.579856872558594, -11.774997711181641 ], [ -73.579719543457031, -11.777094841003361 ], [ -73.578483581542969, -11.782278060913086 ], [ -73.578437805175724, -11.783373832702637 ], [ -73.577438354492188, -11.785646438598576 ], [ -73.574874877929688, -11.788544654846191 ], [ -73.5716552734375, -11.791330337524414 ], [ -73.567176818847656, -11.793758392333984 ], [ -73.564468383789062, -11.794739723205566 ], [ -73.561225891113281, -11.796351432800236 ], [ -73.555168151855412, -11.800126075744572 ], [ -73.553047180175781, -11.801787376403752 ], [ -73.550765991210938, -11.80478572845459 ], [ -73.549110412597656, -11.807869911193791 ], [ -73.545783996582031, -11.812843322753906 ], [ -73.542282104492188, -11.81748104095459 ], [ -73.534210205078068, -11.826362609863281 ], [ -73.531845092773438, -11.828692436218205 ], [ -73.529594421386719, -11.83061408996582 ], [ -73.526573181152287, -11.832598686218205 ], [ -73.525291442871094, -11.833792686462402 ], [ -73.516372680664006, -11.83814811706543 ], [ -73.513977050781193, -11.838895797729379 ], [ -73.511314392089787, -11.839323997497559 ], [ -73.506835937499943, -11.83963680267334 ], [ -73.501289367675724, -11.839228630065918 ], [ -73.496826171874943, -11.839356422424316 ], [ -73.494125366210938, -11.838754653930664 ], [ -73.491958618164006, -11.837541580200138 ], [ -73.489761352539006, -11.836770057678109 ], [ -73.485237121582031, -11.835653305053597 ], [ -73.48406982421875, -11.835917472839355 ], [ -73.483489990234261, -11.836501121520939 ], [ -73.482826232910156, -11.837826728820801 ], [ -73.481750488281193, -11.842116355895996 ], [ -73.481369018554631, -11.844564437866211 ], [ -73.480674743652344, -11.846366882324162 ], [ -73.477394104003906, -11.850489616394043 ], [ -73.475158691406193, -11.853887557983398 ], [ -73.469909667968693, -11.860404014587402 ], [ -73.467559814453011, -11.862768173217773 ], [ -73.465339660644474, -11.864446640014592 ], [ -73.463935852050668, -11.865189552307015 ], [ -73.458969116210881, -11.867042541503849 ], [ -73.456832885742188, -11.868370056152344 ], [ -73.455718994140568, -11.869582176208496 ], [ -73.455314636230469, -11.871100425720215 ], [ -73.455101013183594, -11.875139236450195 ], [ -73.45660400390625, -11.882335662841683 ], [ -73.456535339355469, -11.884432792663574 ], [ -73.454559326171818, -11.890180587768498 ], [ -73.453041076660099, -11.897087097167912 ], [ -73.448837280273381, -11.906819343566895 ], [ -73.446281433105412, -11.910755157470589 ], [ -73.445388793945312, -11.912893295288029 ], [ -73.444953918456974, -11.9146728515625 ], [ -73.444816589355469, -11.917346000671387 ], [ -73.445289611816406, -11.920143127441406 ], [ -73.446945190429631, -11.926327705383301 ], [ -73.449432373046818, -11.931927680969181 ], [ -73.449600219726506, -11.934215545654183 ], [ -73.449470520019531, -11.935688972473145 ], [ -73.448509216308594, -11.93826866149891 ], [ -73.4478759765625, -11.941338539123535 ], [ -73.446159362792969, -11.945208549499512 ], [ -73.444999694824219, -11.949395179748478 ], [ -73.444892883300781, -11.951211929321232 ], [ -73.445289611816406, -11.95691013336176 ], [ -73.44482421875, -11.960831642150822 ], [ -73.443496704101506, -11.964945793151855 ], [ -73.439559936523438, -11.972182273864746 ], [ -73.436500549316406, -11.975654602050781 ], [ -73.433769226074162, -11.97725772857666 ], [ -73.432792663574219, -11.97811222076416 ], [ -73.431816101074219, -11.979571342468205 ], [ -73.431137084960938, -11.981583595275879 ], [ -73.431098937988224, -11.983517646789494 ], [ -73.431388854980412, -11.984469413757324 ], [ -73.433425903320312, -11.986488342285156 ], [ -73.436531066894474, -11.988971710205078 ], [ -73.438034057617188, -11.990715980529785 ], [ -73.43837738037098, -11.992037773132324 ], [ -73.438171386718693, -11.993790626525879 ], [ -73.437774658203068, -11.995107650756722 ], [ -73.436935424804631, -11.996650695800724 ], [ -73.435867309570256, -11.997811317443791 ], [ -73.434783935546875, -11.998554229736271 ], [ -73.433410644531193, -11.999126434326115 ], [ -73.430274963378793, -11.999595642089844 ], [ -73.429496765136662, -11.999917030334416 ], [ -73.427383422851506, -12.000048637390137 ], [ -73.426773071289062, -12.001394271850529 ], [ -73.426712036132756, -12.004835128784066 ], [ -73.426361083984261, -12.006885528564339 ], [ -73.426254272460881, -12.009308815002441 ], [ -73.425079345703125, -12.011861801147404 ], [ -73.423408508300668, -12.013796806335392 ], [ -73.422332763671818, -12.014268875122013 ], [ -73.420303344726562, -12.014157295226937 ], [ -73.417839050292912, -12.012985229492074 ], [ -73.4150390625, -12.012140274047795 ], [ -73.412773132324219, -12.011791229248047 ], [ -73.410873413085938, -12.011114120483342 ], [ -73.40875244140625, -12.011107444763184 ], [ -73.40785980224598, -12.011727333068848 ], [ -73.407241821289062, -12.013051986694336 ], [ -73.405906677246094, -12.014013290405273 ], [ -73.403450012206974, -12.015200614929199 ], [ -73.401344299316349, -12.015802383422738 ], [ -73.400070190429688, -12.017106056213322 ], [ -73.399322509765625, -12.019137382507267 ], [ -73.398773193359318, -12.021222114562988 ], [ -73.398757934570312, -12.022586822509709 ], [ -73.399124145507812, -12.024341583251953 ], [ -73.398948669433594, -12.025859832763558 ], [ -73.399139404296875, -12.031636238098145 ], [ -73.399993896484375, -12.037636756896973 ], [ -73.400405883789006, -12.04576587677002 ], [ -73.401596069335938, -12.051767349243164 ], [ -73.402420043945256, -12.053686141967773 ], [ -73.402587890624943, -12.055666923522892 ], [ -73.402946472167969, -12.057080268859863 ], [ -73.401664733886605, -12.060363769531193 ], [ -73.401412963867188, -12.061861991882267 ], [ -73.401473999023324, -12.065378189086857 ], [ -73.402130126953068, -12.069848060607796 ], [ -73.40228271484375, -12.075545310974121 ], [ -73.402671813964844, -12.08014011383051 ], [ -73.401763916015625, -12.086127281188965 ], [ -73.401382446289062, -12.087901115417424 ], [ -73.400444030761719, -12.09053993225092 ], [ -73.396949768066406, -12.093611717224064 ], [ -73.395912170410099, -12.094202041625977 ], [ -73.395095825195312, -12.095915794372502 ], [ -73.391914367675724, -12.099685668945312 ], [ -73.391036987304688, -12.100284576416016 ], [ -73.388435363769531, -12.101238250732422 ], [ -73.387329101562443, -12.102018356323242 ], [ -73.386024475097543, -12.102435111999512 ], [ -73.384895324707031, -12.103629112243596 ], [ -73.38344573974598, -12.103631019592285 ], [ -73.380775451660043, -12.102984428405705 ], [ -73.379150390624943, -12.103280067443848 ], [ -73.376953124999943, -12.104734420776367 ], [ -73.375473022460938, -12.104887008666992 ], [ -73.374557495117131, -12.105793952941838 ], [ -73.374153137207031, -12.106516838073617 ], [ -73.372787475585938, -12.106590270996094 ], [ -73.372184753417912, -12.106828689575195 ], [ -73.371231079101506, -12.107646942138672 ], [ -73.370414733886719, -12.108960151672363 ], [ -73.369453430175781, -12.109514236450138 ], [ -73.368385314941406, -12.109419822692871 ], [ -73.366867065429688, -12.110413551330566 ], [ -73.365226745605412, -12.111018180847168 ], [ -73.362953186035156, -12.110769271850529 ], [ -73.359771728515568, -12.109657287597599 ], [ -73.358390808105469, -12.109766960144043 ], [ -73.356422424316349, -12.110696792602539 ], [ -73.355247497558594, -12.113355636596623 ], [ -73.355392456054631, -12.115934371948129 ], [ -73.356666564941406, -12.12025260925293 ], [ -73.35817718505848, -12.123941421508732 ], [ -73.358230590820312, -12.125919342041016 ], [ -73.355476379394474, -12.13029670715332 ], [ -73.353088378906193, -12.132805824279785 ], [ -73.351768493652287, -12.133610725402832 ], [ -73.350822448730412, -12.134716033935547 ], [ -73.349571228027287, -12.137232780456543 ], [ -73.349601745605469, -12.139402389526367 ], [ -73.349838256835938, -12.139989852905273 ], [ -73.351181030273381, -12.141924858093262 ], [ -73.352386474609375, -12.142790794372559 ], [ -73.353797912597656, -12.143088340759277 ], [ -73.354698181152344, -12.142921447753906 ], [ -73.361564636230469, -12.140104293823242 ], [ -73.366813659667969, -12.139169692993107 ], [ -73.370742797851506, -12.139174461364746 ], [ -73.376014709472656, -12.140389442443791 ], [ -73.377532958984261, -12.141040802001896 ], [ -73.380844116210881, -12.142985343933105 ], [ -73.384277343749943, -12.143989562988224 ], [ -73.390327453613281, -12.145029067993164 ], [ -73.395744323730412, -12.145304679870549 ], [ -73.408050537109261, -12.14739990234375 ], [ -73.41616058349598, -12.150141716003418 ], [ -73.421791076660156, -12.152831077575627 ], [ -73.431617736816406, -12.15899753570551 ], [ -73.437538146972656, -12.162085533142033 ], [ -73.439437866210938, -12.163509368896484 ], [ -73.449592590332031, -12.173192977905273 ], [ -73.453590393066406, -12.179962158203068 ], [ -73.455322265624943, -12.183647155761719 ], [ -73.459114074707031, -12.189201354980412 ], [ -73.460105895996037, -12.191124916076603 ], [ -73.463180541992188, -12.199276924133301 ], [ -73.465255737304631, -12.204097747802678 ], [ -73.466529846191406, -12.210678100585881 ], [ -73.467361450195256, -12.213431358337402 ], [ -73.46771240234375, -12.217032432556096 ], [ -73.469062805175724, -12.220870018005371 ], [ -73.469360351562443, -12.222501754760742 ], [ -73.469978332519531, -12.223244667053223 ], [ -73.472236633300668, -12.225038528442269 ], [ -73.472831726074219, -12.226180076599064 ], [ -73.473007202148438, -12.229217529296875 ], [ -73.472572326660156, -12.231891632080078 ], [ -73.472633361816406, -12.234062194824219 ], [ -73.472343444824219, -12.235668182372933 ], [ -73.472724914550781, -12.236963272094727 ], [ -73.47265625, -12.238014221191406 ], [ -73.473236083984375, -12.238524436950684 ], [ -73.485687255859375, -12.246076583862248 ], [ -73.490196228027344, -12.248516082763615 ], [ -73.499610900878906, -12.252907752990723 ], [ -73.501113891601506, -12.254316329955941 ], [ -73.502288818359375, -12.254846572875977 ], [ -73.505630493164062, -12.254801750183049 ], [ -73.507957458496094, -12.255023002624512 ], [ -73.509330749511605, -12.254856109619141 ], [ -73.513969421386662, -12.250898361206055 ], [ -73.516609191894531, -12.249762535095101 ], [ -73.518058776855469, -12.249421119689885 ], [ -73.521591186523438, -12.249318122863713 ], [ -73.523437499999943, -12.249990463256779 ], [ -73.524436950683594, -12.250482559204045 ], [ -73.526718139648438, -12.25250244140625 ], [ -73.529380798339844, -12.252915382385254 ], [ -73.531013488769531, -12.253591537475586 ], [ -73.532257080078125, -12.254829406738224 ], [ -73.535133361816406, -12.259237289428654 ], [ -73.536231994628906, -12.259939193725472 ], [ -73.538093566894531, -12.260364532470646 ], [ -73.539894104003906, -12.261831283569279 ], [ -73.540985107421818, -12.261825561523438 ], [ -73.542655944824219, -12.261006355285645 ], [ -73.544525146484261, -12.260895729064941 ], [ -73.547996520996094, -12.262163162231445 ], [ -73.550415039062443, -12.262102127075138 ], [ -73.551704406738281, -12.262336730956974 ], [ -73.553375244140568, -12.263330459594727 ], [ -73.557647705078068, -12.266589164733887 ], [ -73.558998107910099, -12.268104553222656 ], [ -73.559463500976506, -12.270258903503361 ], [ -73.559387207031193, -12.275039672851506 ], [ -73.559989929199219, -12.275850296020451 ], [ -73.561302185058537, -12.276272773742676 ], [ -73.564842224121094, -12.27638053894043 ], [ -73.566192626953125, -12.277237892150822 ], [ -73.566795349121094, -12.277358055114746 ], [ -73.568580627441406, -12.277169227600041 ], [ -73.570198059082031, -12.276736259460392 ], [ -73.572662353515625, -12.276738166809082 ], [ -73.574821472167912, -12.277300834655705 ], [ -73.575996398925668, -12.27803993225092 ], [ -73.577392578124943, -12.279765129089299 ], [ -73.578079223632756, -12.281285285949707 ], [ -73.5780029296875, -12.284497261047306 ], [ -73.579513549804631, -12.287252426147461 ], [ -73.579460144042969, -12.290363311767578 ], [ -73.580108642578125, -12.292580604553223 ], [ -73.580390930175781, -12.294578552246037 ], [ -73.5811767578125, -12.296047210693359 ], [ -73.581886291503849, -12.296765327453613 ], [ -73.582733154296818, -12.297186851501465 ], [ -73.587188720703125, -12.297127723693848 ], [ -73.588668823242131, -12.297705650329533 ], [ -73.590454101562443, -12.299322128295842 ], [ -73.590797424316406, -12.300445556640625 ], [ -73.5906982421875, -12.303475379943791 ], [ -73.589530944824162, -12.306578636169377 ], [ -73.587570190429688, -12.310230255126896 ], [ -73.58746337890625, -12.310897827148381 ], [ -73.58758544921875, -12.315771102905273 ], [ -73.590415954589844, -12.332527160644474 ], [ -73.590667724609318, -12.334998130798283 ], [ -73.590866088867131, -12.34051322937006 ], [ -73.589813232421818, -12.346493721008244 ], [ -73.589584350585938, -12.349522590637207 ], [ -73.589836120605469, -12.352540016174316 ], [ -73.59088134765625, -12.357349395751896 ], [ -73.591018676757812, -12.361677169799748 ], [ -73.590827941894531, -12.362654685974064 ], [ -73.58880615234375, -12.366070747375488 ], [ -73.588111877441406, -12.368461608886719 ], [ -73.588218688964844, -12.371762275695744 ], [ -73.589622497558537, -12.379067420959473 ], [ -73.589706420898381, -12.383296966552621 ], [ -73.589416503906193, -12.384172439575138 ], [ -73.588325500488281, -12.385884284973088 ], [ -73.587974548339787, -12.387021064758244 ], [ -73.587173461914062, -12.388155937194824 ], [ -73.588226318359375, -12.390973091125488 ], [ -73.589309692382756, -12.392120361328125 ], [ -73.591217041015568, -12.393610000610295 ], [ -73.594718933105469, -12.39550876617426 ], [ -73.598060607910156, -12.395752906799316 ], [ -73.600212097167912, -12.394488334655762 ], [ -73.602684020996037, -12.392124176025391 ], [ -73.604003906249943, -12.389592170715275 ], [ -73.604515075683594, -12.387829780578613 ], [ -73.604858398437443, -12.387507438659668 ], [ -73.604873657226506, -12.38714408874506 ], [ -73.606498718261662, -12.38404464721674 ], [ -73.608200073242131, -12.38201904296875 ], [ -73.610870361328068, -12.37988090515131 ], [ -73.614639282226562, -12.378072738647404 ], [ -73.620368957519531, -12.375967025756779 ], [ -73.622459411621094, -12.375473022460881 ], [ -73.628379821777344, -12.37488937377924 ], [ -73.63018798828125, -12.37414646148676 ], [ -73.634346008300724, -12.371417999267578 ], [ -73.635322570800781, -12.371206283569279 ], [ -73.638175964355355, -12.371311187744141 ], [ -73.638771057128906, -12.371063232421818 ], [ -73.639991760253906, -12.369820594787598 ], [ -73.640403747558594, -12.366089820861816 ], [ -73.641395568847599, -12.364755630493164 ], [ -73.643096923828068, -12.36348915100092 ], [ -73.644859313964844, -12.363436698913461 ], [ -73.648979187011719, -12.365777015685921 ], [ -73.650177001953068, -12.365740776062012 ], [ -73.650505065917969, -12.365596771240234 ], [ -73.651802062988224, -12.365032196044922 ], [ -73.653480529785156, -12.363559722900277 ], [ -73.654304504394531, -12.36242485046381 ], [ -73.654647827148381, -12.358792304992619 ], [ -73.655426025390568, -12.356627464294434 ], [ -73.656585693359375, -12.354957580566349 ], [ -73.659690856933537, -12.351783752441406 ], [ -73.66015625, -12.350680351257324 ], [ -73.659896850585881, -12.348910331726017 ], [ -73.658859252929631, -12.346851348876896 ], [ -73.658264160156193, -12.346269607543945 ], [ -73.657318115234318, -12.344584465026855 ], [ -73.657341003417855, -12.343291282653752 ], [ -73.658058166503906, -12.342364311218148 ], [ -73.658767700195256, -12.342138290405217 ], [ -73.669090270996094, -12.342144966125488 ], [ -73.672439575195312, -12.343788146972599 ], [ -73.673103332519531, -12.344416618347168 ], [ -73.674568176269474, -12.346548080444336 ], [ -73.675384521484375, -12.34716606140131 ], [ -73.676208496093693, -12.347344398498478 ], [ -73.677505493164062, -12.347213745117131 ], [ -73.679229736328125, -12.346117973327637 ], [ -73.680816650390625, -12.345559120178109 ], [ -73.685264587402287, -12.34584903717041 ], [ -73.68768310546875, -12.34572601318348 ], [ -73.690162658691406, -12.345276832580566 ], [ -73.693862915039006, -12.344084739685059 ], [ -73.6959228515625, -12.344256401061955 ], [ -73.697334289550781, -12.34471416473383 ], [ -73.700180053710938, -12.345169067382812 ], [ -73.702186584472656, -12.345957756042424 ], [ -73.703163146972656, -12.346630096435547 ], [ -73.705429077148438, -12.349435806274414 ], [ -73.706298828125, -12.350960731506291 ], [ -73.707214355468693, -12.351596832275391 ], [ -73.711486816406193, -12.351616859436035 ], [ -73.712554931640568, -12.351965904235783 ], [ -73.71661376953125, -12.352492332458496 ], [ -73.717948913574219, -12.352911949157658 ], [ -73.718994140625, -12.353533744812012 ], [ -73.72066497802723, -12.355402946472111 ], [ -73.721618652343636, -12.358761787414551 ], [ -73.722831726074162, -12.361716270446721 ], [ -73.727424621581974, -12.367751121520996 ], [ -73.728340148925781, -12.369951248168945 ], [ -73.728363037109318, -12.372154235839844 ], [ -73.728050231933594, -12.373593330383187 ], [ -73.727607727050724, -12.374918937683105 ], [ -73.726303100585938, -12.37692928314209 ], [ -73.725624084472543, -12.378542900085449 ], [ -73.725257873535156, -12.3823947906493 ], [ -73.725372314453125, -12.384138107299805 ], [ -73.72564697265625, -12.384718894958496 ], [ -73.726791381835938, -12.385945320129395 ], [ -73.732231140136719, -12.388557434082031 ], [ -73.736373901367131, -12.391223907470703 ], [ -73.737617492675724, -12.392830848693791 ], [ -73.738929748535156, -12.395171165466252 ], [ -73.739761352539062, -12.398083686828556 ], [ -73.739837646484261, -12.4008531570434 ], [ -73.73919677734375, -12.404808044433594 ], [ -73.737968444824219, -12.408076286315918 ], [ -73.737762451171875, -12.409721374511719 ], [ -73.738914489746094, -12.412328720092717 ], [ -73.738914489746094, -12.413992881774902 ], [ -73.739173889160156, -12.415260314941406 ], [ -73.740730285644531, -12.417201995849609 ], [ -73.741775512695312, -12.419178009033203 ], [ -73.741790771484375, -12.42430305480957 ], [ -73.743583679199219, -12.427103996276855 ], [ -73.744476318359318, -12.427912712097168 ], [ -73.745460510253793, -12.428442001342717 ], [ -73.746673583984318, -12.42829418182373 ], [ -73.752067565917969, -12.425588607788029 ], [ -73.757575988769418, -12.421672821044922 ], [ -73.758865356445312, -12.420342445373535 ], [ -73.760009765625, -12.417632102966309 ], [ -73.760009765625, -12.415519714355412 ], [ -73.759635925292912, -12.413255691528263 ], [ -73.759651184081974, -12.409757614135685 ], [ -73.760452270507812, -12.406841278076115 ], [ -73.762039184570256, -12.40503978729248 ], [ -73.765022277832031, -12.403527259826603 ], [ -73.766326904296818, -12.402491569519043 ], [ -73.767585754394418, -12.400905609130803 ], [ -73.7694091796875, -12.39738941192627 ], [ -73.771636962890625, -12.395561218261719 ], [ -73.775367736816406, -12.391837120056096 ], [ -73.777442932128906, -12.390435218811035 ], [ -73.781578063964787, -12.3893527984618 ], [ -73.785247802734375, -12.387585639953556 ], [ -73.788871765136719, -12.38779354095459 ], [ -73.792083740234318, -12.387265205383301 ], [ -73.794036865234375, -12.386670112609863 ], [ -73.798042297363281, -12.38432502746582 ], [ -73.800186157226506, -12.382308006286564 ], [ -73.801353454589844, -12.380327224731445 ], [ -73.801467895507812, -12.376564979553223 ], [ -73.800865173339787, -12.375125885009766 ], [ -73.797576904296875, -12.370246887207031 ], [ -73.797233581542912, -12.368264198303223 ], [ -73.798118591308594, -12.366442680358887 ], [ -73.802001953124943, -12.362354278564453 ], [ -73.804244995117188, -12.361037254333439 ], [ -73.80645751953125, -12.36097335815424 ], [ -73.808799743652344, -12.362121582031193 ], [ -73.811576843261719, -12.364856719970646 ], [ -73.813301086425781, -12.366111755371037 ], [ -73.816123962402287, -12.367308616638184 ], [ -73.818046569824219, -12.367669105529728 ], [ -73.824661254882812, -12.366214752197209 ], [ -73.826118469238224, -12.365243911743164 ], [ -73.8270263671875, -12.36365795135498 ], [ -73.82781982421875, -12.360542297363281 ], [ -73.829208374023438, -12.358359336852971 ], [ -73.830429077148381, -12.355581283569279 ], [ -73.834320068359318, -12.350199699401855 ], [ -73.835983276367188, -12.347213745117131 ], [ -73.836654663085938, -12.34540939331049 ], [ -73.836959838867188, -12.342571258544865 ], [ -73.837562561035099, -12.340249061584473 ], [ -73.839782714843636, -12.33580207824707 ], [ -73.840576171875, -12.335026741027832 ], [ -73.843551635742188, -12.33299732208252 ], [ -73.844955444335938, -12.331402778625488 ], [ -73.846199035644531, -12.329172134399357 ], [ -73.847763061523381, -12.325039863586369 ], [ -73.848533630371037, -12.323993682861328 ], [ -73.850456237792912, -12.322881698608285 ], [ -73.85400390625, -12.322117805480957 ], [ -73.855773925781193, -12.320262908935433 ], [ -73.856170654296818, -12.319034576416016 ], [ -73.856475830078125, -12.316558837890625 ], [ -73.858673095703125, -12.313928604125977 ], [ -73.859077453613281, -12.312935829162541 ], [ -73.858718872070312, -12.311217308044434 ], [ -73.856697082519531, -12.308810234069824 ], [ -73.856544494628849, -12.307201385498047 ], [ -73.856834411621037, -12.306570053100529 ], [ -73.858383178710938, -12.305110931396484 ], [ -73.862640380859318, -12.302265167236328 ], [ -73.866485595703011, -12.299160957336426 ], [ -73.867233276367131, -12.29833984375 ], [ -73.868217468261719, -12.296058654785156 ], [ -73.869857788085938, -12.294426918029728 ], [ -73.870986938476562, -12.292849540710392 ], [ -73.873748779296875, -12.29217529296875 ], [ -73.875221252441349, -12.290507316589355 ], [ -73.878746032714844, -12.287238121032601 ], [ -73.880424499511719, -12.28527641296381 ], [ -73.885536193847599, -12.2779283523559 ], [ -73.891685485839844, -12.272608757019043 ], [ -73.899818420410156, -12.26433277130127 ], [ -73.902816772460824, -12.260971069335938 ], [ -73.903663635253849, -12.259791374206543 ], [ -73.904182434082031, -12.258201599121094 ], [ -73.905715942382812, -12.249788284301758 ], [ -73.906959533691406, -12.245074272155705 ], [ -73.911094665527287, -12.2389621734618 ], [ -73.914009094238281, -12.236840248107796 ], [ -73.915359497070312, -12.235307693481388 ], [ -73.91619873046875, -12.233793258666935 ], [ -73.917892456054688, -12.232839584350529 ], [ -73.919624328613281, -12.231037139892578 ], [ -73.922103881835938, -12.230758666992188 ], [ -73.923446655273438, -12.230331420898324 ], [ -73.925331115722656, -12.228836059570312 ], [ -73.927101135253849, -12.227070808410645 ], [ -73.928260803222599, -12.226478576660099 ], [ -73.933403015136662, -12.225250244140568 ], [ -73.937774658203125, -12.223660469055119 ], [ -73.942672729492131, -12.223116874694767 ], [ -73.950180053710881, -12.220396041870117 ], [ -73.951591491699219, -12.219345092773381 ], [ -73.952812194824219, -12.217280387878418 ], [ -73.953681945800781, -12.216334342956543 ], [ -73.956954956054631, -12.215315818786564 ], [ -73.958793640136662, -12.214199066162053 ], [ -73.959297180175781, -12.212268829345646 ], [ -73.959999084472656, -12.211673736572266 ], [ -73.961196899414062, -12.211867332458439 ], [ -73.962471008300781, -12.212631225585938 ], [ -73.968757629394531, -12.219182968139592 ], [ -73.969718933105469, -12.221268653869572 ], [ -73.970214843749943, -12.224541664123535 ], [ -73.970977783203068, -12.225920677184945 ], [ -73.971748352050724, -12.226591110229492 ], [ -73.973396301269531, -12.227239608764648 ], [ -73.975067138671875, -12.2273912429809 ], [ -73.980888366699162, -12.226192474365178 ], [ -73.98284912109375, -12.226161956787109 ], [ -73.9844970703125, -12.226412773132324 ], [ -73.986518859863224, -12.227134704589844 ], [ -73.989356994628906, -12.228544235229435 ], [ -73.993003845214787, -12.231534004211426 ], [ -73.994415283203125, -12.232406616210881 ], [ -73.995857238769531, -12.232855796813908 ], [ -73.995277404785156, -12.233134269714299 ], [ -73.99371337890625, -12.236030578613224 ], [ -73.991622924804688, -12.238798141479492 ], [ -73.989547729492188, -12.243339538574219 ], [ -73.987716674804688, -12.245231628417969 ], [ -73.986862182617188, -12.248944282531681 ], [ -73.985908508300781, -12.250884056091252 ], [ -73.984283447265625, -12.255788803100586 ], [ -73.984039306640568, -12.258845329284668 ], [ -73.984367370605469, -12.261349678039437 ], [ -73.985443115234375, -12.266162872314396 ], [ -73.986686706542969, -12.268276214599553 ], [ -73.98760986328125, -12.271118164062443 ], [ -73.988204956054688, -12.272241592407113 ], [ -73.9901123046875, -12.274192810058537 ], [ -73.990890502929688, -12.275932312011719 ], [ -73.992073059081974, -12.277438163757324 ], [ -73.993194580078068, -12.278507232666016 ], [ -73.994758605957031, -12.279435157775822 ], [ -73.995651245117188, -12.280477523803711 ], [ -73.998977661132812, -12.282732963561955 ], [ -74.002586364746094, -12.283803939819336 ], [ -74.003517150878849, -12.283656120300293 ], [ -74.004402160644531, -12.28317928314209 ], [ -74.007171630859375, -12.28007698059082 ], [ -74.008995056152344, -12.278655052184945 ], [ -74.012207031249886, -12.278123855590763 ], [ -74.020233154296875, -12.278162956237736 ], [ -74.021339416503849, -12.277949333190918 ], [ -74.024398803710881, -12.274514198303223 ], [ -74.02642822265625, -12.272622108459473 ], [ -74.028083801269531, -12.271590232849064 ], [ -74.030540466308594, -12.270504951476937 ], [ -74.032974243164006, -12.268812179565316 ], [ -74.034172058105469, -12.26740837097168 ], [ -74.036552429199219, -12.263825416564828 ], [ -74.038375854492188, -12.26213359832758 ], [ -74.039710998535156, -12.26180267333973 ], [ -74.041007995605355, -12.261999130249023 ], [ -74.042060852050781, -12.262596130371094 ], [ -74.042579650878906, -12.263113975524789 ], [ -74.043266296386662, -12.264824867248535 ], [ -74.044647216796875, -12.26605224609375 ], [ -74.045890808105469, -12.266470909118652 ], [ -74.049850463867131, -12.267036437988224 ], [ -74.055335998535156, -12.269560813903752 ], [ -74.056282043457031, -12.270810127258301 ], [ -74.057609558105469, -12.27483081817627 ], [ -74.058677673339844, -12.276100158691349 ], [ -74.05975341796875, -12.276672363281193 ], [ -74.062896728515625, -12.276900291442871 ], [ -74.063560485839844, -12.277247428894043 ], [ -74.064483642578125, -12.278154373168832 ], [ -74.06536865234375, -12.278454780578613 ], [ -74.065910339355469, -12.278359413146973 ], [ -74.066902160644531, -12.277674674987736 ], [ -74.068794250488281, -12.276900291442871 ], [ -74.070632934570256, -12.276882171630859 ], [ -74.072563171386662, -12.277982711791992 ], [ -74.076515197753906, -12.281613349914551 ], [ -74.082809448242188, -12.280957221984806 ], [ -74.088752746581974, -12.28248405456543 ], [ -74.0938720703125, -12.28260326385498 ], [ -74.097282409667969, -12.283598899841252 ], [ -74.098014831542912, -12.284115791320744 ], [ -74.098800659179574, -12.285494804382267 ], [ -74.099388122558594, -12.291707992553711 ], [ -74.101020812988281, -12.297941207885742 ], [ -74.101882934570312, -12.304428100585824 ], [ -74.103805541992188, -12.30689811706543 ], [ -74.104232788085824, -12.307827949523926 ], [ -74.104080200195312, -12.311689376830998 ], [ -74.104446411132812, -12.312908172607365 ], [ -74.105323791503906, -12.314133644104004 ], [ -74.106185913085938, -12.314813613891602 ], [ -74.111404418945312, -12.317699432373047 ], [ -74.112579345703125, -12.318613052368164 ], [ -74.113540649414062, -12.320074081420898 ], [ -74.114356994628906, -12.322138786315861 ], [ -74.116981506347599, -12.325592041015568 ], [ -74.119400024413949, -12.331376075744629 ], [ -74.120536804199162, -12.332855224609375 ], [ -74.121696472167969, -12.333545684814453 ], [ -74.124870300292969, -12.33404541015625 ], [ -74.127014160156193, -12.33344554901123 ], [ -74.129325866699219, -12.33227634429926 ], [ -74.130760192871094, -12.330354690551758 ], [ -74.131423950195312, -12.328632354736271 ], [ -74.13165283203125, -12.327276229858398 ], [ -74.131767272949162, -12.323043823242188 ], [ -74.131591796874943, -12.321297645568791 ], [ -74.130210876464844, -12.318381309509277 ], [ -74.130035400390625, -12.316924095153809 ], [ -74.130249023437443, -12.315372467040959 ], [ -74.131362915039062, -12.314119338989258 ], [ -74.132453918456974, -12.314129829406738 ], [ -74.135131835937386, -12.315415382385197 ], [ -74.136894226074219, -12.316007614135685 ], [ -74.139709472656136, -12.315446853637582 ], [ -74.140640258789006, -12.31554126739502 ], [ -74.141281127929688, -12.315902709960938 ], [ -74.143470764160156, -12.317627906799316 ], [ -74.144828796386662, -12.319259643554688 ], [ -74.145072937011719, -12.32099723815918 ], [ -74.144729614257756, -12.323419570922795 ], [ -74.145759582519531, -12.324362754821777 ], [ -74.147048950195256, -12.324645996093636 ], [ -74.153457641601562, -12.322442054748478 ], [ -74.159637451171818, -12.321215629577637 ], [ -74.161514282226506, -12.319185256958008 ], [ -74.162223815917969, -12.317099571228027 ], [ -74.1632080078125, -12.315320014953556 ], [ -74.165924072265568, -12.312452316284123 ], [ -74.166740417480469, -12.311850547790527 ], [ -74.167762756347656, -12.311843872070256 ], [ -74.170700073242131, -12.312740325927734 ], [ -74.17596435546875, -12.313224792480469 ], [ -74.178680419921818, -12.315013885497933 ], [ -74.17919921875, -12.316661834716797 ], [ -74.179565429687443, -12.317096710205021 ], [ -74.182128906249943, -12.3171129226684 ], [ -74.183883666992188, -12.316522598266602 ], [ -74.187484741210881, -12.314236640930176 ], [ -74.188591003417969, -12.31301116943348 ], [ -74.188621520996037, -12.312539100646916 ], [ -74.187835693359318, -12.311092376708928 ], [ -74.188041687011662, -12.306435585021916 ], [ -74.186592102050781, -12.304956436157113 ], [ -74.186561584472656, -12.304134368896428 ], [ -74.187278747558537, -12.303432464599609 ], [ -74.189788818359375, -12.302207946777287 ], [ -74.193878173828011, -12.3014879226684 ], [ -74.198554992675781, -12.30229663848877 ], [ -74.200881958007812, -12.302214622497445 ], [ -74.202476501464844, -12.301448822021428 ], [ -74.204452514648381, -12.299374580383244 ], [ -74.207321166992131, -12.298333168029728 ], [ -74.208343505859318, -12.298392295837346 ], [ -74.209327697753793, -12.298918724060059 ], [ -74.211662292480469, -12.302226066589355 ], [ -74.213058471679688, -12.303162574768066 ], [ -74.214096069335824, -12.303562164306584 ], [ -74.214927673339787, -12.303547859191895 ], [ -74.217338562011605, -12.302811622619572 ], [ -74.2198486328125, -12.301120758056641 ], [ -74.221603393554631, -12.299343109130803 ], [ -74.222343444824219, -12.297826766967773 ], [ -74.222457885742131, -12.296181678771973 ], [ -74.220954895019474, -12.294549942016545 ], [ -74.2166748046875, -12.292293548583928 ], [ -74.216110229492188, -12.291342735290414 ], [ -74.216011047363281, -12.290591239929199 ], [ -74.216552734374943, -12.28977108001709 ], [ -74.217445373535156, -12.289095878601074 ], [ -74.219589233398438, -12.288433074951172 ], [ -74.220207214355469, -12.288026809692383 ], [ -74.220878601074219, -12.287142753600961 ], [ -74.221267700195312, -12.286196708679199 ], [ -74.221176147460938, -12.284920692443848 ], [ -74.220314025878906, -12.282402038574105 ], [ -74.218505859375, -12.279307365417424 ], [ -74.218421936035156, -12.278581619262695 ], [ -74.218864440917855, -12.277976036071721 ], [ -74.219474792480469, -12.277411460876408 ], [ -74.221229553222599, -12.276508331298828 ], [ -74.222221374511719, -12.276431083679142 ], [ -74.224525451660156, -12.276855468749943 ], [ -74.225471496582031, -12.276305198669434 ], [ -74.226325988769531, -12.275322914123535 ], [ -74.227142333984318, -12.272774696350041 ], [ -74.228584289550724, -12.270363807678223 ], [ -74.231521606445256, -12.26796817779541 ], [ -74.232788085937386, -12.267392158508301 ], [ -74.234085083007812, -12.267332077026367 ], [ -74.237419128417969, -12.269854545593205 ], [ -74.240020751953068, -12.270586967468262 ], [ -74.24139404296875, -12.270662307739258 ], [ -74.242889404296818, -12.270449638366642 ], [ -74.246719360351562, -12.269048690795898 ], [ -74.247360229492131, -12.26793003082264 ], [ -74.24786376953125, -12.266159057617131 ], [ -74.247940063476506, -12.264595031738281 ], [ -74.247573852539062, -12.261502265930119 ], [ -74.247848510742131, -12.258482933044434 ], [ -74.249046325683594, -12.257417678833008 ], [ -74.253662109374943, -12.257811546325684 ], [ -74.256492614746094, -12.257249832153263 ], [ -74.257850646972599, -12.256646156310978 ], [ -74.259231567382812, -12.254913330078068 ], [ -74.260673522949219, -12.252449989318791 ], [ -74.261642456054688, -12.25025463104248 ], [ -74.261955261230412, -12.248727798461914 ], [ -74.263160705566406, -12.246435165405273 ], [ -74.264518737792912, -12.244943618774357 ], [ -74.268112182617188, -12.241728782653752 ], [ -74.269607543945312, -12.239850997924805 ], [ -74.270523071289006, -12.239210128784123 ], [ -74.271705627441406, -12.238998413085881 ], [ -74.273597717285099, -12.239508628845215 ], [ -74.27667236328125, -12.239680290222168 ], [ -74.278388977050781, -12.240072250366154 ], [ -74.280067443847599, -12.24007606506342 ], [ -74.282844543456974, -12.241151809692269 ], [ -74.283523559570199, -12.241188049316349 ], [ -74.284164428710881, -12.240928649902344 ], [ -74.286598205566406, -12.237298011779728 ], [ -74.28985595703125, -12.233528137207031 ], [ -74.292243957519531, -12.22984504699707 ], [ -74.292060852050781, -12.228580474853459 ], [ -74.290451049804631, -12.225266456603947 ], [ -74.290351867675781, -12.223593711852971 ], [ -74.290679931640625, -12.222977638244572 ], [ -74.291809082031193, -12.222529411315918 ], [ -74.292739868164006, -12.222595214843693 ], [ -74.294342041015625, -12.223331451415959 ], [ -74.296241760253906, -12.224953651428223 ], [ -74.297424316406193, -12.225499153137207 ], [ -74.298851013183537, -12.22593879699707 ], [ -74.301727294921818, -12.226188659667969 ], [ -74.304237365722656, -12.226004600524846 ], [ -74.309463500976449, -12.223623275756836 ], [ -74.311592102050781, -12.22337532043457 ], [ -74.312454223632812, -12.223720550537053 ], [ -74.313690185546875, -12.225207328796387 ], [ -74.314407348632756, -12.228336334228516 ], [ -74.314643859863281, -12.23055362701416 ], [ -74.314926147460938, -12.230961799621582 ], [ -74.315742492675724, -12.231324195861816 ], [ -74.317298889160156, -12.231365203857365 ], [ -74.321090698242131, -12.230504035949707 ], [ -74.322761535644531, -12.229515075683594 ], [ -74.325180053710881, -12.226519584655762 ], [ -74.3292236328125, -12.223426818847599 ], [ -74.330543518066406, -12.222000122070256 ], [ -74.331443786621094, -12.220601081848088 ], [ -74.335716247558594, -12.216860771179086 ], [ -74.336631774902287, -12.21565055847168 ], [ -74.336647033691406, -12.213877677917424 ], [ -74.336402893066406, -12.213082313537541 ], [ -74.335968017578068, -12.212592124938965 ], [ -74.335357666015625, -12.212409973144531 ], [ -74.333686828613168, -12.212613105773812 ], [ -74.331138610839844, -12.212175369262695 ], [ -74.33056640625, -12.211872100830078 ], [ -74.330192565917969, -12.211131095886174 ], [ -74.330245971679631, -12.210298538208008 ], [ -74.330627441406193, -12.209350585937386 ], [ -74.33258056640625, -12.207131385803223 ], [ -74.332984924316349, -12.206401824951172 ], [ -74.332565307617188, -12.202935218811035 ], [ -74.332649230957031, -12.201370239257812 ], [ -74.3331298828125, -12.199691772460881 ], [ -74.333297729492131, -12.196841239929199 ], [ -74.334739685058594, -12.193896293640137 ], [ -74.336212158203125, -12.192770004272404 ], [ -74.337638854980469, -12.192413330078125 ], [ -74.338554382324219, -12.192994117736816 ], [ -74.339996337890625, -12.194463729858398 ], [ -74.341766357421818, -12.195480346679688 ], [ -74.343818664550781, -12.195729255676213 ], [ -74.344711303710938, -12.195242881774902 ], [ -74.345016479492131, -12.194022178649902 ], [ -74.344696044921875, -12.191633224487248 ], [ -74.34478759765625, -12.190621376037598 ], [ -74.346588134765625, -12.188301086425781 ], [ -74.348754882812386, -12.184230804443303 ], [ -74.350105285644531, -12.180606842040959 ], [ -74.352226257324219, -12.177473068237305 ], [ -74.352210998535156, -12.176912307739258 ], [ -74.351554870605469, -12.176251411437931 ], [ -74.347114562988224, -12.174593925476017 ], [ -74.345809936523438, -12.1737060546875 ], [ -74.345283508300781, -12.173053741455078 ], [ -74.344566345214844, -12.172860145568848 ], [ -74.344085693359375, -12.17243576049799 ], [ -74.343559265136719, -12.17176628112793 ], [ -74.343360900878906, -12.171077728271428 ], [ -74.343460083007812, -12.168951034545842 ], [ -74.344375610351562, -12.167037010192871 ], [ -74.346237182617188, -12.165377616882324 ], [ -74.348083496093693, -12.164498329162598 ], [ -74.350463867187443, -12.164185523986816 ], [ -74.353797912597599, -12.164482116699219 ], [ -74.355987548828068, -12.163700103759766 ], [ -74.358451843261662, -12.161463737487793 ], [ -74.358932495117131, -12.159982681274357 ], [ -74.360626220703125, -12.1572265625 ], [ -74.361282348632812, -12.155620574951115 ], [ -74.361335754394474, -12.153054237365723 ], [ -74.360374450683537, -12.150843620300236 ], [ -74.359146118164006, -12.149006843566781 ], [ -74.357971191406193, -12.14821624755848 ], [ -74.353767395019531, -12.148856163024846 ], [ -74.353111267089787, -12.148493766784668 ], [ -74.352752685546818, -12.14795970916748 ], [ -74.352645874023381, -12.144198417663574 ], [ -74.351699829101506, -12.140940666198674 ], [ -74.351974487304631, -12.136347770690861 ], [ -74.353660583496094, -12.135592460632267 ], [ -74.356712341308594, -12.135354995727482 ], [ -74.357841491699219, -12.135791778564396 ], [ -74.359428405761662, -12.136934280395508 ], [ -74.360542297363281, -12.138492584228402 ], [ -74.361656188964844, -12.138577461242619 ], [ -74.362762451171818, -12.138344764709473 ], [ -74.364555358886662, -12.136747360229492 ], [ -74.365951538085938, -12.133948326110783 ], [ -74.366806030273438, -12.132872581481934 ], [ -74.372077941894531, -12.128950119018555 ], [ -74.374717712402344, -12.126623153686523 ], [ -74.379455566406193, -12.120439529418945 ], [ -74.380599975585881, -12.119375228881836 ], [ -74.383544921874943, -12.11745643615717 ], [ -74.390472412109375, -12.111884117126465 ], [ -74.393516540527344, -12.110515594482365 ], [ -74.394813537597599, -12.109614372253418 ], [ -74.396049499511662, -12.108007431030217 ], [ -74.397758483886662, -12.104846000671387 ], [ -74.398872375488281, -12.103727340698129 ], [ -74.400215148925781, -12.103132247924748 ], [ -74.401771545410099, -12.103298187255746 ], [ -74.407775878906193, -12.107651710510254 ], [ -74.408599853515625, -12.107708930969125 ], [ -74.409652709960938, -12.106979370117188 ], [ -74.410652160644531, -12.105769157409668 ], [ -74.41156005859375, -12.10384464263916 ], [ -74.412033081054688, -12.101963043212777 ], [ -74.412681579589844, -12.101072311401367 ], [ -74.414230346679688, -12.099900245666504 ], [ -74.417587280273381, -12.098575592041016 ], [ -74.418365478515568, -12.096000671386719 ], [ -74.419326782226449, -12.094311714172363 ], [ -74.419723510742188, -12.09309005737299 ], [ -74.419334411621094, -12.087511062622013 ], [ -74.418647766113224, -12.086750030517578 ], [ -74.417091369628906, -12.086466789245549 ], [ -74.415924072265625, -12.085733413696289 ], [ -74.414604187011719, -12.08467960357666 ], [ -74.414115905761719, -12.083595275878906 ], [ -74.414070129394474, -12.082120895385742 ], [ -74.414894104003906, -12.079689025878906 ], [ -74.414390563964844, -12.077066421508789 ], [ -74.414588928222656, -12.075989723205566 ], [ -74.418098449707031, -12.072714805603027 ], [ -74.418952941894531, -12.070973396301213 ], [ -74.419448852539062, -12.069010734558049 ], [ -74.420280456542855, -12.068144798278752 ], [ -74.421554565429688, -12.067377090454045 ], [ -74.422767639160156, -12.067073822021484 ], [ -74.423973083496037, -12.067393302917424 ], [ -74.426475524902287, -12.069051742553711 ], [ -74.428100585937386, -12.070566177368164 ], [ -74.430549621581974, -12.071637153625431 ], [ -74.431854248046875, -12.07147026062006 ], [ -74.433624267578068, -12.069800376891976 ], [ -74.434394836425668, -12.068680763244572 ], [ -74.435218811035099, -12.066032409667969 ], [ -74.438987731933594, -12.059907913208008 ], [ -74.439445495605412, -12.058506965637207 ], [ -74.440399169921818, -12.056926727294865 ], [ -74.440696716308594, -12.055473327636719 ], [ -74.439727783203068, -12.054384231567383 ], [ -74.439582824707031, -12.053110122680664 ], [ -74.441253662109318, -12.049611091613713 ], [ -74.443214416503906, -12.04705619812006 ], [ -74.44317626953125, -12.04649829864502 ], [ -74.442604064941406, -12.045772552490178 ], [ -74.442626953125, -12.045310020446777 ], [ -74.443336486816349, -12.044877052307129 ], [ -74.4451904296875, -12.044945716857853 ], [ -74.446731567382812, -12.045980453491211 ], [ -74.448310852050724, -12.048271179199105 ], [ -74.449043273925781, -12.048796653747502 ], [ -74.451263427734318, -12.049570083618164 ], [ -74.452194213867131, -12.049435615539494 ], [ -74.452743530273438, -12.048938751220589 ], [ -74.453140258789062, -12.047908782958984 ], [ -74.453193664550781, -12.04609203338623 ], [ -74.4534912109375, -12.044809341430664 ], [ -74.453224182128906, -12.044284820556641 ], [ -74.452003479003849, -12.043096542358398 ], [ -74.451393127441406, -12.040980339050236 ], [ -74.451751708984261, -12.039271354675236 ], [ -74.452491760253849, -12.037281036376896 ], [ -74.454635620117188, -12.033732414245549 ], [ -74.455497741699219, -12.033427238464355 ], [ -74.456993103027287, -12.033456802368164 ], [ -74.461204528808594, -12.034958839416504 ], [ -74.463310241699219, -12.035114288329964 ], [ -74.464691162109318, -12.034539222717228 ], [ -74.466072082519531, -12.033593177795353 ], [ -74.467369079589787, -12.031570434570256 ], [ -74.468788146972599, -12.028670310974064 ], [ -74.470237731933537, -12.027000427246037 ], [ -74.470932006835938, -12.026873588561955 ], [ -74.472366333007812, -12.027056694030705 ], [ -74.473190307617131, -12.027655601501465 ], [ -74.473426818847656, -12.028252601623478 ], [ -74.474334716796818, -12.02918624877924 ], [ -74.474990844726506, -12.029657363891602 ], [ -74.475875854492131, -12.029867172241211 ], [ -74.476936340332031, -12.02955245971674 ], [ -74.478324890136662, -12.028786659240723 ], [ -74.478912353515568, -12.028199195861816 ], [ -74.479568481445256, -12.026979446411133 ], [ -74.480377197265625, -12.026627540588322 ], [ -74.481224060058594, -12.026791572570801 ], [ -74.4818115234375, -12.027255058288517 ], [ -74.483215332031193, -12.031543731689453 ], [ -74.483963012695256, -12.033037185668888 ], [ -74.485404968261662, -12.033647537231445 ], [ -74.487342834472656, -12.033814430236816 ], [ -74.488304138183594, -12.032955169677734 ], [ -74.488342285156193, -12.031291007995605 ], [ -74.488563537597543, -12.030595779418945 ], [ -74.490303039550781, -12.028673171996957 ], [ -74.491668701171875, -12.028107643127441 ], [ -74.495101928710938, -12.02800273895258 ], [ -74.496986389160156, -12.027004241943246 ], [ -74.497802734374943, -12.025785446166935 ], [ -74.498542785644474, -12.023317337036076 ], [ -74.499969482421875, -12.021310806274357 ], [ -74.500663757324162, -12.020807266235352 ], [ -74.503318786621037, -12.019824981689396 ], [ -74.504608154296875, -12.019763946533203 ], [ -74.508590698242074, -12.021454811096191 ], [ -74.510162353515625, -12.020994186401367 ], [ -74.510818481445312, -12.020243644714355 ], [ -74.512748718261719, -12.019055366516113 ], [ -74.518096923828068, -12.017553329467773 ], [ -74.521682739257812, -12.015380859375 ], [ -74.522621154785156, -12.015328407287598 ], [ -74.524986267089787, -12.015903472900391 ], [ -74.526336669921875, -12.015749931335449 ], [ -74.530082702636719, -12.013876914978027 ], [ -74.531555175781193, -12.011935234069824 ], [ -74.533843994140568, -12.009879112243596 ], [ -74.537925720214844, -12.008896827697697 ], [ -74.5401611328125, -12.007326126098633 ], [ -74.542282104492188, -12.006791114807072 ], [ -74.543128967285156, -12.00609302520752 ], [ -74.5458984375, -12.002952575683537 ], [ -74.552879333496094, -12.001035690307617 ], [ -74.554054260253849, -11.999890327453613 ], [ -74.554840087890568, -12.000389099121037 ], [ -74.555816650390625, -12.000596046447697 ], [ -74.558540344238224, -12.00057315826416 ], [ -74.559112548828068, -12.000304222106934 ], [ -74.561218261718693, -11.998218536376953 ], [ -74.562187194824105, -11.997624397277775 ], [ -74.563446044921875, -11.997444152831918 ], [ -74.566352844238224, -11.997629165649414 ], [ -74.567329406738224, -11.997413635253849 ], [ -74.568359374999943, -11.996096611022949 ], [ -74.569023132324162, -11.994379043579102 ], [ -74.569877624511662, -11.99329566955555 ], [ -74.569992065429631, -11.992201805114746 ], [ -74.570709228515625, -11.990909576416016 ], [ -74.570968627929688, -11.988718986511174 ], [ -74.571319580078068, -11.988069534301758 ], [ -74.571395874023438, -11.985050201416016 ], [ -74.572463989257756, -11.984455108642521 ], [ -74.574775695800668, -11.984740257263184 ], [ -74.577468872070312, -11.985811233520508 ], [ -74.580268859863281, -11.986501693725529 ], [ -74.582427978515625, -11.987769126892033 ], [ -74.583160400390568, -11.987590789794865 ], [ -74.584022521972599, -11.986624717712346 ], [ -74.584976196289006, -11.986047744750863 ], [ -74.586372375488281, -11.986142158508301 ], [ -74.5882568359375, -11.986585617065373 ], [ -74.589530944824162, -11.986570358276367 ], [ -74.591812133789006, -11.986140251159611 ], [ -74.59356689453125, -11.986312866210938 ], [ -74.595138549804688, -11.987607002258244 ], [ -74.594795227050724, -11.988862991333008 ], [ -74.593681335449219, -11.990084648132324 ], [ -74.593093872070312, -11.991230964660588 ], [ -74.592971801757756, -11.992885589599609 ], [ -74.592720031738281, -11.993383407592717 ], [ -74.59283447265625, -11.994795799255371 ], [ -74.593154907226506, -11.995609283447209 ], [ -74.594467163085938, -11.996170043945256 ], [ -74.596603393554631, -11.99609470367426 ], [ -74.59804534912098, -11.996494293212891 ], [ -74.600242614746094, -11.997518539428711 ], [ -74.602333068847599, -11.999358177185059 ], [ -74.603431701660156, -11.999574661254826 ], [ -74.605758666992131, -11.998928070068359 ], [ -74.607048034667969, -11.997727394103947 ], [ -74.607963562011605, -11.995927810668888 ], [ -74.608383178710938, -11.991814613342228 ], [ -74.609672546386662, -11.991091728210392 ], [ -74.611000061035099, -11.98954868316639 ], [ -74.613601684570312, -11.98731803894043 ], [ -74.614944458007812, -11.987393379211426 ], [ -74.616897583007756, -11.989366531372013 ], [ -74.617622375488281, -11.989792823791504 ], [ -74.619270324707031, -11.989994049072209 ], [ -74.62030029296875, -11.989560127258301 ], [ -74.621315002441293, -11.988758087158146 ], [ -74.621932983398438, -11.987728118896484 ], [ -74.62249755859375, -11.986062049865723 ], [ -74.623481750488224, -11.985042572021371 ], [ -74.626579284667969, -11.98480224609375 ], [ -74.631950378417969, -11.984884262084904 ], [ -74.634178161621037, -11.986043930053597 ], [ -74.635261535644531, -11.986306190490609 ], [ -74.6358642578125, -11.986753463745117 ], [ -74.639961242675781, -11.987026214599553 ], [ -74.64202880859375, -11.987636566162109 ], [ -74.643432617187443, -11.988352775573674 ], [ -74.646644592285156, -11.991040229797306 ], [ -74.649200439453125, -11.994364738464242 ], [ -74.650177001953068, -11.995171546935978 ], [ -74.650764465331974, -11.995135307312012 ], [ -74.651527404785099, -11.994638442993164 ], [ -74.652305603027287, -11.993001937866154 ], [ -74.653434753417912, -11.992062568664551 ], [ -74.65602874755848, -11.991516113281193 ], [ -74.657356262206974, -11.991795539855957 ], [ -74.658218383789006, -11.993389129638672 ], [ -74.658256530761719, -11.996001243591309 ], [ -74.660392761230412, -12.001740455627385 ], [ -74.660598754882756, -12.004080772399846 ], [ -74.661026000976562, -12.00573825836176 ], [ -74.663200378417969, -12.00780010223383 ], [ -74.663986206054688, -12.008262634277344 ], [ -74.665298461914062, -12.008698463439885 ], [ -74.665885925292969, -12.008283615112305 ], [ -74.66705322265625, -12.008088111877441 ], [ -74.669235229492188, -12.009852409362793 ], [ -74.672004699707031, -12.012442588806152 ], [ -74.675476074218693, -12.016244888305607 ], [ -74.676864624023438, -12.016933441162109 ], [ -74.67877197265625, -12.016861915588379 ], [ -74.679618835449219, -12.017668724060059 ], [ -74.679985046386719, -12.018501281738224 ], [ -74.680061340331918, -12.019577026367188 ], [ -74.680000305175781, -12.020834922790527 ], [ -74.679618835449219, -12.021827697753849 ], [ -74.679702758789062, -12.024614334106445 ], [ -74.680046081542912, -12.02553653717041 ], [ -74.681076049804631, -12.027112007141056 ], [ -74.681922912597656, -12.029799461364746 ], [ -74.68231201171875, -12.030177116394043 ], [ -74.6827392578125, -12.031172752380314 ], [ -74.68353271484375, -12.036220550537053 ], [ -74.684638977050668, -12.037759780883789 ], [ -74.685195922851506, -12.038066864013558 ], [ -74.687141418457031, -12.038538932800293 ], [ -74.690429687499943, -12.040470123291016 ], [ -74.693351745605469, -12.041187286376896 ], [ -74.695228576660156, -12.042443275451603 ], [ -74.698226928710938, -12.043535232543888 ], [ -74.699783325195256, -12.044378280639592 ], [ -74.701934814453125, -12.046578407287484 ], [ -74.704879760742188, -12.050567626953125 ], [ -74.707550048828125, -12.052894592285156 ], [ -74.709632873535156, -12.055393218994084 ], [ -74.711318969726506, -12.056898117065373 ], [ -74.713798522949162, -12.058038711547795 ], [ -74.717071533203125, -12.059181213378906 ], [ -74.718902587890625, -12.05926322937006 ], [ -74.719978332519531, -12.058805465698185 ], [ -74.720359802246094, -12.057890892028809 ], [ -74.720787048339844, -12.055422782897949 ], [ -74.721443176269474, -12.054347038268986 ], [ -74.7225341796875, -12.053399085998535 ], [ -74.724761962890568, -12.052559852600041 ], [ -74.725799560546875, -12.051856040954533 ], [ -74.72796630859375, -12.049660682678223 ], [ -74.728614807128906, -12.048576354980469 ], [ -74.729942321777344, -12.04733943939209 ], [ -74.733970642089844, -12.04508018493641 ], [ -74.736701965331974, -12.043818473815918 ], [ -74.738273620605469, -12.043350219726562 ], [ -74.741958618164062, -12.041200637817383 ], [ -74.743942260742131, -12.040966033935547 ], [ -74.745956420898381, -12.041042327880859 ], [ -74.748184204101562, -12.041495323181152 ], [ -74.749481201171818, -12.041957855224553 ], [ -74.751701354980469, -12.043172836303597 ], [ -74.754119873046875, -12.044801712036133 ], [ -74.75543212890625, -12.046096801757812 ], [ -74.757682800292912, -12.049137115478516 ], [ -74.758728027343693, -12.050142288208008 ], [ -74.760627746581974, -12.05118370056141 ], [ -74.762397766113281, -12.051618576049805 ], [ -74.767951965332031, -12.052020072937012 ], [ -74.774993896484375, -12.052959442138672 ], [ -74.779075622558594, -12.052672386169434 ], [ -74.782035827636719, -12.053840637207031 ], [ -74.788124084472656, -12.056901931762582 ], [ -74.791030883789062, -12.057654380798283 ], [ -74.793624877929631, -12.057890892028809 ], [ -74.795303344726562, -12.05858039855957 ], [ -74.800209045410099, -12.058430671691895 ], [ -74.803916931152287, -12.05693244934082 ], [ -74.809005737304688, -12.056682586669922 ], [ -74.814300537109375, -12.055012702941895 ], [ -74.816223144531193, -12.054181098937931 ], [ -74.818389892578125, -12.05427360534668 ], [ -74.820518493652287, -12.055294990539551 ], [ -74.827430725097656, -12.060140609741154 ], [ -74.830223083496094, -12.062987327575684 ], [ -74.833122253417912, -12.067449569702148 ], [ -74.834815979003849, -12.0694580078125 ], [ -74.836364746093693, -12.070697784423828 ], [ -74.837882995605412, -12.071060180664006 ], [ -74.8406982421875, -12.07091045379633 ], [ -74.843765258789062, -12.069779396057129 ], [ -74.848320007324219, -12.07007980346674 ], [ -74.851295471191406, -12.069683074951172 ], [ -74.853500366210881, -12.068817138671875 ], [ -74.855735778808594, -12.06744480133051 ], [ -74.858787536621094, -12.066893577575684 ], [ -74.86004638671875, -12.066010475158635 ], [ -74.861404418945312, -12.065501213073674 ], [ -74.863052368164006, -12.065522193908635 ], [ -74.867240905761662, -12.066383361816349 ], [ -74.869895935058594, -12.06622123718256 ], [ -74.870880126953068, -12.065797805786133 ], [ -74.872505187988224, -12.064105987548714 ], [ -74.873153686523381, -12.061873435974064 ], [ -74.873870849609375, -12.060952186584416 ], [ -74.874824523925781, -12.060263633727914 ], [ -74.876022338867131, -12.059812545776367 ], [ -74.877189636230469, -12.05880069732666 ], [ -74.880035400390568, -12.05440616607666 ], [ -74.880867004394531, -12.053546905517578 ], [ -74.881469726562443, -12.053440093994141 ], [ -74.883430480957031, -12.053885459899902 ], [ -74.884704589843693, -12.053768157958928 ], [ -74.890907287597599, -12.051616668701172 ], [ -74.894775390625, -12.049827575683594 ], [ -74.896827697753849, -12.048300743103027 ], [ -74.903732299804688, -12.042251586914006 ], [ -74.905006408691349, -12.040716171264648 ], [ -74.906784057617188, -12.037787437438965 ], [ -74.908836364746037, -12.035733222961426 ], [ -74.910369873046818, -12.035129547119141 ], [ -74.912460327148381, -12.035245895385685 ], [ -74.915458679199219, -12.034550666809025 ], [ -74.921051025390568, -12.032356262207031 ], [ -74.925804138183537, -12.028424263000431 ], [ -74.928512573242188, -12.025611877441406 ], [ -74.930915832519531, -12.022445678710938 ], [ -74.937042236328068, -12.019465446472168 ], [ -74.939376831054688, -12.017889976501408 ], [ -74.940948486328125, -12.017404556274357 ], [ -74.942581176757756, -12.017258644104004 ], [ -74.945213317871094, -12.017965316772404 ], [ -74.94757080078125, -12.018136024475041 ], [ -74.948593139648381, -12.01773738861084 ], [ -74.950874328613224, -12.016240119934025 ], [ -74.951980590820312, -12.01610279083252 ], [ -74.952583312988281, -12.016246795654297 ], [ -74.953910827636719, -12.017332077026367 ], [ -74.957015991210938, -12.020744323730469 ], [ -74.959434509277344, -12.022640228271484 ], [ -74.961013793945199, -12.023116111755371 ], [ -74.967369079589787, -12.023863792419434 ], [ -74.968719482421818, -12.02372932434082 ], [ -74.971000671386662, -12.022806167602539 ], [ -74.973625183105469, -12.022994995117131 ], [ -74.974678039550781, -12.022455215454045 ], [ -74.976226806640625, -12.020916938781681 ], [ -74.979087829589844, -12.019351005554086 ], [ -74.982147216796875, -12.018168449401855 ], [ -74.986045837402344, -12.017245292663517 ], [ -74.989059448242188, -12.017245292663517 ], [ -74.991119384765568, -12.017643928527832 ], [ -74.99432373046875, -12.018947601318359 ], [ -74.996368408203068, -12.020700454711914 ], [ -74.997283935546875, -12.020928382873421 ], [ -74.998451232910156, -12.020772933959961 ], [ -75.000320434570312, -12.01984977722168 ], [ -75.002227783203125, -12.017734527587834 ], [ -75.005500793457031, -12.01679611206049 ], [ -75.008804321289062, -12.016531944274902 ], [ -75.009880065917969, -12.016035079956055 ], [ -75.011466979980469, -12.014170646667424 ], [ -75.011917114257756, -12.012606620788574 ], [ -75.011909484863224, -12.011384963989201 ], [ -75.012390136718693, -12.010915756225529 ], [ -75.014022827148381, -12.010763168334961 ], [ -75.016876220703068, -12.011096000671387 ], [ -75.018562316894531, -12.011666297912541 ], [ -75.020774841308537, -12.013004302978516 ], [ -75.021797180175781, -12.013150215148926 ], [ -75.022537231445312, -12.013004302978516 ], [ -75.022506713867131, -12.012045860290527 ], [ -75.021392822265625, -12.009731292724553 ], [ -75.02093505859375, -12.008167266845703 ], [ -75.021255493164006, -12.005497932434082 ], [ -75.021530151367188, -12.005046844482365 ], [ -75.022567749023438, -12.004359245300236 ], [ -75.024177551269531, -12.00407886505127 ], [ -75.026481628417969, -12.002079963684082 ], [ -75.032058715820256, -12.001763343811035 ], [ -75.033126831054688, -12.001255035400277 ], [ -75.034950256347656, -11.999602317810002 ], [ -75.036270141601562, -11.999266624450684 ], [ -75.038459777832031, -12.000060081481877 ], [ -75.041099548339787, -11.999502182006836 ], [ -75.042594909667969, -11.99855899810791 ], [ -75.043922424316406, -11.998234748840332 ], [ -75.045661926269531, -11.998595237731934 ], [ -75.048957824707031, -11.99866771697998 ], [ -75.049568176269531, -11.99918270111084 ], [ -75.049613952636719, -11.999580383300781 ], [ -75.048233032226562, -12.002916336059513 ], [ -75.048118591308594, -12.005791664123535 ], [ -75.047233581542969, -12.009466171264648 ], [ -75.04742431640625, -12.010517120361328 ], [ -75.048233032226562, -12.011258125305119 ], [ -75.053153991699219, -12.014421463012695 ], [ -75.057235717773381, -12.018967628479004 ], [ -75.058235168457031, -12.019400596618652 ], [ -75.060035705566406, -12.021056175231877 ], [ -75.060905456542969, -12.021464347839355 ], [ -75.061676025390625, -12.023173332214355 ], [ -75.062515258789062, -12.024076461791935 ], [ -75.063735961914062, -12.024129867553711 ], [ -75.064704895019531, -12.024852752685547 ], [ -75.066047668457031, -12.02795505523676 ], [ -75.067451477050781, -12.02934741973877 ], [ -75.067832946777344, -12.030280113220215 ], [ -75.067863464355469, -12.032258033752385 ], [ -75.067375183105469, -12.03599643707264 ], [ -75.068756103515568, -12.036862373352051 ], [ -75.070709228515625, -12.036218643188477 ], [ -75.071937561035156, -12.036254882812386 ], [ -75.072952270507756, -12.036661148071232 ], [ -75.073997497558537, -12.037528991699219 ], [ -75.077377319335938, -12.041924476623535 ], [ -75.078117370605412, -12.044087409973088 ], [ -75.079437255859318, -12.046280860900822 ], [ -75.080741882324219, -12.047013282775879 ], [ -75.083457946777287, -12.050035476684457 ], [ -75.085182189941293, -12.050475120544434 ], [ -75.085739135742131, -12.050873756408578 ], [ -75.086021423339787, -12.052067756652832 ], [ -75.085990905761719, -12.053007125854492 ], [ -75.084930419921875, -12.054599761962891 ], [ -75.082809448242188, -12.05650806427002 ], [ -75.080490112304631, -12.057649612426701 ], [ -75.078147888183594, -12.058418273925781 ], [ -75.0738525390625, -12.058835029602051 ], [ -75.07259368896473, -12.059361457824593 ], [ -75.072914123535156, -12.06046199798584 ], [ -75.073837280273438, -12.061955451965332 ], [ -75.074333190917969, -12.063502311706486 ], [ -75.074386596679631, -12.065509796142521 ], [ -75.074127197265625, -12.067779541015625 ], [ -75.073471069335938, -12.06926155090332 ], [ -75.071044921874943, -12.071632385253849 ], [ -75.070335388183594, -12.072780609130746 ], [ -75.069335937499943, -12.076270103454533 ], [ -75.069526672363224, -12.079754829406681 ], [ -75.069007873535156, -12.082260131835938 ], [ -75.068634033203125, -12.083252906799316 ], [ -75.067337036132756, -12.085018157958984 ], [ -75.067047119140568, -12.085912704467773 ], [ -75.067855834960938, -12.088877677917367 ], [ -75.068847656249943, -12.09551811218256 ], [ -75.069633483886662, -12.097089767456055 ], [ -75.071525573730412, -12.099034309387093 ], [ -75.071807861328068, -12.100171089172306 ], [ -75.071929931640625, -12.102443695068246 ], [ -75.07147216796875, -12.103114128112793 ], [ -75.070106506347599, -12.103998184204045 ], [ -75.068702697753906, -12.105925559997502 ], [ -75.068695068359375, -12.107398986816293 ], [ -75.070762634277287, -12.11208534240717 ], [ -75.070869445800724, -12.113422393798828 ], [ -75.0704345703125, -12.113745689392033 ], [ -75.066169738769474, -12.11467075347889 ], [ -75.065162658691406, -12.115585327148381 ], [ -75.064735412597656, -12.116731643676758 ], [ -75.066146850585938, -12.119002342224064 ], [ -75.067047119140568, -12.121126174926758 ], [ -75.067237854003849, -12.123804092407227 ], [ -75.066864013671818, -12.125675201415959 ], [ -75.067535400390568, -12.126859664916992 ], [ -75.067878723144531, -12.128505706787109 ], [ -75.066879272460938, -12.129828453063965 ], [ -75.063148498535099, -12.133335113525334 ], [ -75.062889099121094, -12.133815765380746 ], [ -75.062919616699219, -12.134574890136662 ], [ -75.064445495605469, -12.137314796447754 ], [ -75.065864562988281, -12.140535354614201 ], [ -75.068046569824219, -12.142992019653263 ], [ -75.068748474121037, -12.143418312072754 ], [ -75.069427490234318, -12.143500328063908 ], [ -75.073143005371037, -12.142105102539006 ], [ -75.074073791503906, -12.141953468322754 ], [ -75.075027465820312, -12.142113685607853 ], [ -75.075782775878906, -12.142449378967285 ], [ -75.076759338378849, -12.143398284912109 ], [ -75.077560424804688, -12.145115852355957 ], [ -75.0777587890625, -12.146183013915959 ], [ -75.074501037597543, -12.149022102355957 ], [ -75.073654174804688, -12.150153160095215 ], [ -75.073348999023381, -12.152026176452637 ], [ -75.073677062988281, -12.155923843383789 ], [ -75.07269287109375, -12.157027244567814 ], [ -75.071739196777344, -12.157550811767521 ], [ -75.06719970703125, -12.158467292785645 ], [ -75.063682556152344, -12.160792350769043 ], [ -75.056991577148438, -12.163558959960881 ], [ -75.055313110351506, -12.16411018371582 ], [ -75.052185058593636, -12.164701461791992 ], [ -75.05242919921875, -12.165884017944279 ], [ -75.053436279296875, -12.166989326477051 ], [ -75.053901672363168, -12.167974472045842 ], [ -75.053993225097599, -12.174303054809457 ], [ -75.054489135742188, -12.17939376831049 ], [ -75.054405212402344, -12.183834075927734 ], [ -75.053688049316349, -12.186990737915039 ], [ -75.051673889160099, -12.190519332885742 ], [ -75.050529479980412, -12.193827629089355 ], [ -75.050125122070312, -12.196332931518441 ], [ -75.049598693847599, -12.19758224487299 ], [ -75.048942565917855, -12.200881958007812 ], [ -75.048927307128849, -12.201696395874023 ], [ -75.049209594726506, -12.202457427978459 ], [ -75.050636291503849, -12.204109191894531 ], [ -75.051948547363281, -12.204807281494141 ], [ -75.053688049316349, -12.205196380615234 ], [ -75.0565185546875, -12.20468807220459 ], [ -75.058555603027287, -12.205068588256779 ], [ -75.058815002441406, -12.209307670593205 ], [ -75.061691284179631, -12.218305587768555 ], [ -75.063217163085881, -12.221017837524357 ], [ -75.065254211425781, -12.223377227783203 ], [ -75.066467285156193, -12.225341796874943 ], [ -75.070304870605355, -12.229543685913086 ], [ -75.070755004882756, -12.230820655822697 ], [ -75.071144104003849, -12.234182357788029 ], [ -75.071678161621094, -12.235404014587402 ], [ -75.073326110839787, -12.235537528991642 ], [ -75.076622009277344, -12.234254837036076 ], [ -75.0791015625, -12.234164237976074 ], [ -75.080406188964787, -12.234478950500488 ], [ -75.082260131835938, -12.235654830932617 ], [ -75.083076477050724, -12.235654830932617 ], [ -75.085502624511719, -12.236584663391113 ], [ -75.086685180664006, -12.237714767455998 ], [ -75.087966918945312, -12.239793777465763 ], [ -75.089225769042969, -12.241213798522949 ], [ -75.091781616210938, -12.243652343749943 ], [ -75.092735290527344, -12.24415111541748 ], [ -75.092948913574219, -12.245887756347656 ], [ -75.091743469238224, -12.24844837188715 ], [ -75.091934204101506, -12.249757766723633 ], [ -75.093032836914062, -12.250282287597656 ], [ -75.097328186035156, -12.250444412231445 ], [ -75.100006103515625, -12.251041412353516 ], [ -75.10009765625, -12.253598213195744 ], [ -75.100730895996094, -12.256771087646484 ], [ -75.103187561035099, -12.263056755065918 ], [ -75.104469299316406, -12.267043113708496 ], [ -75.104866027832031, -12.269575119018441 ], [ -75.104919433593693, -12.272000312805119 ], [ -75.104431152343693, -12.274639129638615 ], [ -75.103424072265625, -12.277444839477539 ], [ -75.101295471191349, -12.279535293579102 ], [ -75.098793029785099, -12.28090858459467 ], [ -75.098388671875, -12.281442642211914 ], [ -75.098144531249943, -12.28242015838623 ], [ -75.101394653320199, -12.291442871093693 ], [ -75.103141784667969, -12.294953346252441 ], [ -75.105361938476562, -12.297340393066349 ], [ -75.106834411621094, -12.298333168029728 ], [ -75.108345031738224, -12.301497459411621 ], [ -75.111274719238281, -12.304335594177246 ], [ -75.112480163574219, -12.305220603942871 ], [ -75.120056152343693, -12.309576034545898 ], [ -75.122756958007699, -12.315904617309513 ], [ -75.126594543457031, -12.32381629943842 ], [ -75.12762451171875, -12.325398445129338 ], [ -75.129768371582031, -12.327873229980412 ], [ -75.129249572753906, -12.329547882080078 ], [ -75.129219055175724, -12.331302642822209 ], [ -75.128761291503849, -12.333545684814453 ], [ -75.128952026367131, -12.335018157958928 ], [ -75.129928588867188, -12.335515022277775 ], [ -75.133277893066406, -12.334844589233398 ], [ -75.134071350097599, -12.335051536560059 ], [ -75.136451721191406, -12.336889266967717 ], [ -75.138076782226506, -12.338533401489258 ], [ -75.139305114746094, -12.340357780456429 ], [ -75.139678955078125, -12.341741561889592 ], [ -75.139427185058537, -12.343378067016545 ], [ -75.138877868652344, -12.344906806945801 ], [ -75.136306762695312, -12.349033355712834 ], [ -75.135429382324162, -12.352704048156681 ], [ -75.134849548339787, -12.353925704956055 ], [ -75.134681701660156, -12.355806350708008 ], [ -75.134963989257699, -12.357912063598633 ], [ -75.134811401367188, -12.359929084777775 ], [ -75.132751464843693, -12.367183685302621 ], [ -75.133071899414062, -12.373369216918945 ], [ -75.130966186523438, -12.376525878906136 ], [ -75.130844116210881, -12.378000259399357 ], [ -75.131080627441406, -12.378351211547795 ], [ -75.133949279785156, -12.379264831542912 ], [ -75.135482788085938, -12.380402565002441 ], [ -75.136856079101506, -12.382419586181584 ], [ -75.137596130371094, -12.384146690368652 ], [ -75.138961791992131, -12.385274887084961 ], [ -75.140029907226562, -12.38760852813715 ], [ -75.140747070312443, -12.388221740722599 ], [ -75.141143798828068, -12.389081954956055 ], [ -75.142761230468693, -12.390544891357308 ], [ -75.143409729003906, -12.392019271850529 ], [ -75.145111083984375, -12.39359188079834 ], [ -75.145713806152287, -12.394648551940918 ], [ -75.146865844726506, -12.395110130310059 ], [ -75.150154113769531, -12.395235061645451 ], [ -75.151321411132812, -12.395598411560059 ], [ -75.153526306152287, -12.395369529724064 ], [ -75.154289245605412, -12.39486122131342 ], [ -75.156097412109375, -12.392990112304631 ], [ -75.157318115234375, -12.393095016479492 ], [ -75.158638000488281, -12.392699241638127 ], [ -75.1611328125, -12.390608787536564 ], [ -75.163002014160043, -12.389774322509709 ], [ -75.164978027343693, -12.38828182220459 ], [ -75.165390014648438, -12.38779354095459 ], [ -75.165351867675724, -12.386960029602051 ], [ -75.166046142578068, -12.385956764221135 ], [ -75.166526794433537, -12.383992195129281 ], [ -75.168540954589844, -12.381442070007267 ], [ -75.168685913085938, -12.379552841186523 ], [ -75.168952941894531, -12.378811836242619 ], [ -75.169960021972599, -12.377680778503418 ], [ -75.171920776367188, -12.376457214355469 ], [ -75.174644470214844, -12.373806953430176 ], [ -75.176139831542912, -12.372829437255859 ], [ -75.176078796386719, -12.371237754821721 ], [ -75.177757263183537, -12.369103431701603 ], [ -75.178688049316406, -12.367457389831543 ], [ -75.180549621581918, -12.361975669860783 ], [ -75.181129455566406, -12.361214637756348 ], [ -75.181999206542969, -12.360598564147949 ], [ -75.183540344238281, -12.361474037170353 ], [ -75.184555053710824, -12.362387657165414 ], [ -75.185798645019531, -12.364484786987305 ], [ -75.186019897460938, -12.365524291992131 ], [ -75.18695068359375, -12.366511344909668 ], [ -75.188568115234375, -12.366834640502873 ], [ -75.190826416015568, -12.365927696228027 ], [ -75.194778442382812, -12.368341445922795 ], [ -75.195312499999943, -12.369441986083928 ], [ -75.197242736816406, -12.371891975402832 ], [ -75.200935363769474, -12.375507354736328 ], [ -75.203475952148438, -12.378334999084416 ], [ -75.205574035644531, -12.381635665893555 ], [ -75.207885742187443, -12.383342742919922 ], [ -75.211067199706918, -12.384776115417424 ], [ -75.212089538574162, -12.385671615600586 ], [ -75.214942932128849, -12.386998176574707 ], [ -75.216674804687443, -12.388083457946777 ], [ -75.219635009765568, -12.390277862548828 ], [ -75.220199584960881, -12.391018867492619 ], [ -75.219810485839787, -12.391207695007324 ], [ -75.219291687011719, -12.391127586364746 ], [ -75.218513488769531, -12.3916978836059 ], [ -75.215560913085938, -12.394695281982422 ], [ -75.214546203613281, -12.396286010742188 ], [ -75.214775085449162, -12.39843654632557 ], [ -75.217636108398381, -12.401329994201603 ], [ -75.218101501464787, -12.402450561523381 ], [ -75.218254089355469, -12.403942108154297 ], [ -75.218215942382756, -12.405433654785156 ], [ -75.217880249023438, -12.406430244445801 ], [ -75.216606140136719, -12.408212661743107 ], [ -75.215438842773381, -12.409324645996037 ], [ -75.214553833007812, -12.410854339599553 ], [ -75.214324951171875, -12.412582397460938 ], [ -75.214393615722599, -12.413928985595703 ], [ -75.214820861816406, -12.415773391723519 ], [ -75.214988708496094, -12.419670104980469 ], [ -75.215385437011719, -12.421660423278809 ], [ -75.217308044433594, -12.426295280456543 ], [ -75.219017028808594, -12.42951583862299 ], [ -75.220397949218693, -12.431341171264648 ], [ -75.224014282226506, -12.435065269470215 ], [ -75.224411010742131, -12.43576717376709 ], [ -75.224487304687443, -12.436444282531625 ], [ -75.223472595214844, -12.438935279846191 ], [ -75.22052001953125, -12.444264411926156 ], [ -75.215232849121037, -12.451130867004281 ], [ -75.213973999023438, -12.453059196472111 ], [ -75.213081359863281, -12.456160545349121 ], [ -75.213218688964844, -12.458721160888615 ], [ -75.213920593261662, -12.460762977599984 ], [ -75.215507507324219, -12.463274002075195 ], [ -75.217658996582031, -12.464938163757324 ], [ -75.220497131347599, -12.465948104858398 ], [ -75.223136901855469, -12.467626571655217 ], [ -75.224639892578125, -12.469723701476937 ], [ -75.225921630859318, -12.472399711608887 ], [ -75.227722167968693, -12.474441528320256 ], [ -75.229438781738224, -12.474810600280705 ], [ -75.23052978515625, -12.475325584411621 ], [ -75.231620788574219, -12.475144386291447 ], [ -75.232513427734318, -12.473660469055176 ], [ -75.232757568359375, -12.471118927001896 ], [ -75.233306884765625, -12.470312118530217 ], [ -75.234024047851506, -12.469961166381836 ], [ -75.235389709472656, -12.469760894775334 ], [ -75.236495971679631, -12.469749450683594 ], [ -75.237983703613281, -12.4700927734375 ], [ -75.238494873046875, -12.469992637634277 ], [ -75.246025085449219, -12.462734222412053 ], [ -75.248344421386662, -12.462531089782715 ], [ -75.253135681152344, -12.462763786315918 ], [ -75.254829406738224, -12.463321685791016 ], [ -75.258087158203125, -12.46378040313715 ], [ -75.262817382812443, -12.465603828430119 ], [ -75.265899658203068, -12.466196060180607 ], [ -75.270416259765625, -12.466517448425236 ], [ -75.274085998535099, -12.466079711913949 ], [ -75.277481079101562, -12.46662712097168 ], [ -75.278068542480469, -12.467343330383187 ], [ -75.278076171874943, -12.471041679382324 ], [ -75.279403686523438, -12.473398208618164 ], [ -75.281005859375, -12.474147796630803 ], [ -75.287025451660156, -12.474667549133244 ], [ -75.288810729980469, -12.475360870361328 ], [ -75.294692993164006, -12.480408668517953 ], [ -75.296600341796818, -12.48288631439209 ], [ -75.298118591308537, -12.485595703124943 ], [ -75.298835754394531, -12.486227035522404 ], [ -75.29994964599598, -12.486751556396428 ], [ -75.300918579101562, -12.48694992065424 ], [ -75.301422119140625, -12.486830711364689 ], [ -75.302032470703068, -12.486262321472111 ], [ -75.302284240722656, -12.485636711120605 ], [ -75.302345275878906, -12.483601570129395 ], [ -75.300888061523381, -12.481288909912109 ], [ -75.300796508789006, -12.480954170226994 ], [ -75.301040649414062, -12.480617523193359 ], [ -75.30206298828125, -12.480139732360783 ], [ -75.306709289550724, -12.480367660522461 ], [ -75.30743408203125, -12.479980468749943 ], [ -75.308197021484375, -12.479191780090332 ], [ -75.308700561523381, -12.479045867919808 ], [ -75.309684753417969, -12.479008674621582 ], [ -75.310272216796875, -12.479351043701172 ], [ -75.311798095703125, -12.482650756835881 ], [ -75.313888549804688, -12.484193801879883 ], [ -75.321388244628849, -12.484737396240178 ], [ -75.323783874511662, -12.485548019409123 ], [ -75.324119567871094, -12.488215446472168 ], [ -75.323661804199162, -12.491283416748047 ], [ -75.322868347167969, -12.493000984191895 ], [ -75.32000732421875, -12.497289657592717 ], [ -75.319747924804688, -12.498159408569279 ], [ -75.319869995117131, -12.500075340270939 ], [ -75.319709777832031, -12.501151084899789 ], [ -75.319328308105469, -12.501928329467773 ], [ -75.318031311035156, -12.503478050231934 ], [ -75.318054199218693, -12.504274368286019 ], [ -75.319404602050668, -12.505637168884277 ], [ -75.319648742675781, -12.506496429443303 ], [ -75.319259643554688, -12.508577346801758 ], [ -75.317611694335938, -12.511969566345215 ], [ -75.317619323730469, -12.513859748840275 ], [ -75.319633483886719, -12.514082908630314 ], [ -75.321632385253906, -12.516286849975472 ], [ -75.32283782958973, -12.515933990478459 ], [ -75.324211120605469, -12.515894889831486 ], [ -75.328048706054631, -12.516904830932617 ], [ -75.3289794921875, -12.517462730407715 ], [ -75.331832885742188, -12.519992828369141 ], [ -75.336097717285156, -12.520963668823129 ], [ -75.338417053222656, -12.522390365600472 ], [ -75.339347839355469, -12.522659301757812 ], [ -75.340408325195312, -12.523897171020451 ], [ -75.341079711914062, -12.525360107421818 ], [ -75.341766357421875, -12.528397560119629 ], [ -75.342041015625, -12.531281471252441 ], [ -75.342422485351562, -12.532140731811523 ], [ -75.343109130859375, -12.532801628112736 ], [ -75.345443725585938, -12.53272628784174 ], [ -75.346435546875, -12.53316593170166 ], [ -75.347496032714844, -12.534231185913086 ], [ -75.348884582519531, -12.536771774291935 ], [ -75.350212097167969, -12.538234710693303 ], [ -75.356468200683537, -12.540225028991642 ], [ -75.35711669921875, -12.540079116821289 ], [ -75.358940124511719, -12.538864135742188 ], [ -75.361137390136719, -12.538788795471191 ], [ -75.3634033203125, -12.539980888366699 ], [ -75.367263793945256, -12.542606353759766 ], [ -75.368057250976562, -12.543682098388615 ], [ -75.368598937988224, -12.548508644104004 ], [ -75.36932373046875, -12.550544738769474 ], [ -75.369407653808594, -12.551619529724121 ], [ -75.370849609375, -12.554059028625488 ], [ -75.371894836425781, -12.554672241210824 ], [ -75.375862121581918, -12.554549217224064 ], [ -75.376937866210938, -12.554847717285099 ], [ -75.377731323242188, -12.55533313751215 ], [ -75.378463745117188, -12.556488990783635 ], [ -75.379127502441406, -12.55951976776123 ], [ -75.380020141601562, -12.561044692993164 ], [ -75.380012512207031, -12.563106536865234 ], [ -75.380264282226562, -12.563814163208008 ], [ -75.381629943847656, -12.564778327941838 ], [ -75.383026123046875, -12.56534481048584 ], [ -75.385498046875, -12.566799163818359 ], [ -75.388710021972599, -12.568863868713379 ], [ -75.389396667480412, -12.569522857665959 ], [ -75.391304016113224, -12.573399543762207 ], [ -75.395599365234318, -12.57783317565918 ], [ -75.395820617675781, -12.57846641540516 ], [ -75.395637512207031, -12.58023738861084 ], [ -75.396110534667969, -12.581159591674805 ], [ -75.397262573242188, -12.582551002502441 ], [ -75.398696899414062, -12.58382511138916 ], [ -75.400344848632756, -12.58478927612299 ], [ -75.403572082519531, -12.585445404052678 ], [ -75.406211853027344, -12.586580276489258 ], [ -75.407928466796875, -12.587672233581543 ], [ -75.4091796875, -12.588933944702092 ], [ -75.409553527832031, -12.589656829833928 ], [ -75.410224914550781, -12.593643188476506 ], [ -75.409782409667912, -12.59665584564209 ], [ -75.409873962402287, -12.59774112701416 ], [ -75.412254333496094, -12.600686073303223 ], [ -75.410858154296818, -12.605633735656738 ], [ -75.411087036132812, -12.609123229980412 ], [ -75.410316467285156, -12.613637924194279 ], [ -75.410400390625, -12.617670059204102 ], [ -75.411323547363224, -12.620626449584961 ], [ -75.413444519042969, -12.623290061950627 ], [ -75.414176940917912, -12.624564170837402 ], [ -75.415420532226506, -12.627855300903263 ], [ -75.415359497070312, -12.628268241882267 ], [ -75.41644287109375, -12.628819465637207 ], [ -75.417930603027344, -12.62852764129633 ], [ -75.419151306152287, -12.6279296875 ], [ -75.420745849609318, -12.626462936401367 ], [ -75.422973632812386, -12.625772476196175 ], [ -75.424346923828125, -12.625861167907658 ], [ -75.425903320312443, -12.626715660095158 ], [ -75.427246093749943, -12.627137184143066 ], [ -75.427925109863224, -12.627166748046875 ], [ -75.428802490234375, -12.626873016357422 ], [ -75.432510375976449, -12.624508857726937 ], [ -75.438301086425724, -12.618068695068303 ], [ -75.439521789550781, -12.617309570312443 ], [ -75.44171142578125, -12.617701530456543 ], [ -75.444572448730469, -12.618636131286564 ], [ -75.446075439453125, -12.618751525878849 ], [ -75.448646545410156, -12.620023727416935 ], [ -75.449752807617131, -12.619894027709961 ], [ -75.451118469238281, -12.621195793151799 ], [ -75.452705383300724, -12.62165355682373 ], [ -75.453620910644531, -12.622248649597111 ], [ -75.454071044921875, -12.622916221618596 ], [ -75.454452514648438, -12.625059127807617 ], [ -75.456863403320312, -12.627035140991211 ], [ -75.457481384277287, -12.62911319732666 ], [ -75.459083557128849, -12.630585670471135 ], [ -75.459472656249943, -12.632265090942383 ], [ -75.461174011230469, -12.634380340576115 ], [ -75.461395263671818, -12.63505744934082 ], [ -75.458976745605469, -12.637783050537109 ], [ -75.457916259765625, -12.642107009887695 ], [ -75.456085205078125, -12.645329475402832 ], [ -75.456130981445256, -12.647084236144963 ], [ -75.456932067871094, -12.649803161621094 ], [ -75.456672668457031, -12.651533126831055 ], [ -75.455406188964844, -12.653768539428711 ], [ -75.452888488769474, -12.656242370605355 ], [ -75.452743530273438, -12.657065391540471 ], [ -75.456069946289062, -12.662618637084961 ], [ -75.456947326660156, -12.666019439697266 ], [ -75.457878112792855, -12.668113708496094 ], [ -75.458206176757812, -12.671063423156738 ], [ -75.459274291992131, -12.674404144287109 ], [ -75.460968017578125, -12.676844596862793 ], [ -75.463310241699162, -12.679510116577148 ], [ -75.467979431152287, -12.68345928192133 ], [ -75.470588684082031, -12.680870056152344 ], [ -75.472145080566406, -12.679789543151855 ], [ -75.477104187011719, -12.677474021911564 ], [ -75.481422424316349, -12.676770210266 ], [ -75.482421875, -12.676245689391976 ], [ -75.483200073242188, -12.675502777099496 ], [ -75.484527587890625, -12.672834396362305 ], [ -75.486618041992188, -12.665657043456974 ], [ -75.487625122070256, -12.664542198181152 ], [ -75.489494323730469, -12.663174629211426 ], [ -75.489677429199219, -12.662813186645508 ], [ -75.489845275878906, -12.660652160644531 ], [ -75.488700866699219, -12.658058166503906 ], [ -75.488265991210881, -12.656341552734375 ], [ -75.488365173339787, -12.653774261474609 ], [ -75.48883056640625, -12.651946067810059 ], [ -75.490806579589844, -12.64838790893549 ], [ -75.493408203125, -12.645408630371094 ], [ -75.494537353515625, -12.644655227661019 ], [ -75.497306823730469, -12.643855094909668 ], [ -75.498626708984375, -12.643048286437988 ], [ -75.498962402343693, -12.642098426818848 ], [ -75.499145507812443, -12.638940811157227 ], [ -75.499801635742188, -12.637764930724984 ], [ -75.500587463378849, -12.637237548828068 ], [ -75.503463745117074, -12.636572837829476 ], [ -75.505882263183594, -12.636379241943303 ], [ -75.506584167480412, -12.635923385620117 ], [ -75.510025024414006, -12.634616851806641 ], [ -75.511337280273438, -12.633801460266113 ], [ -75.512931823730469, -12.632023811340275 ], [ -75.514976501464787, -12.628791809082031 ], [ -75.518089294433594, -12.625494003295898 ], [ -75.519569396972599, -12.624714851379395 ], [ -75.520942687988281, -12.624983787536621 ], [ -75.5216064453125, -12.624818801879769 ], [ -75.521934509277287, -12.622204780578556 ], [ -75.525291442871037, -12.618490219116154 ], [ -75.52630615234375, -12.618426322936955 ], [ -75.528160095214787, -12.620392799377385 ], [ -75.529396057128849, -12.621051788329964 ], [ -75.533645629882812, -12.621648788452092 ], [ -75.534469604492188, -12.621546745300293 ], [ -75.535202026367131, -12.621771812438908 ], [ -75.539031982421818, -12.621999740600586 ], [ -75.541961669921818, -12.622553825378304 ], [ -75.543601989746037, -12.622984886169434 ], [ -75.546005249023438, -12.624564170837402 ], [ -75.548133850097656, -12.625272750854435 ], [ -75.549049377441293, -12.625090599060002 ], [ -75.55096435546875, -12.623185157775879 ], [ -75.5513916015625, -12.623058319091797 ], [ -75.552154541015625, -12.623600006103459 ], [ -75.55633544921875, -12.628060340881348 ], [ -75.557655334472656, -12.628896713256779 ], [ -75.560470581054631, -12.631459236144963 ], [ -75.563186645507812, -12.632719039916935 ], [ -75.565879821777344, -12.632443428039551 ], [ -75.567611694335881, -12.632819175720158 ], [ -75.568397521972599, -12.633740425109806 ], [ -75.569046020507756, -12.636513710021916 ], [ -75.569412231445312, -12.636958122253418 ], [ -75.569915771484318, -12.637136459350586 ], [ -75.572113037109318, -12.636707305908203 ], [ -75.574417114257699, -12.636964797973633 ], [ -75.578384399414062, -12.640011787414551 ], [ -75.57958984375, -12.641339302062988 ], [ -75.580284118652344, -12.639755249023438 ], [ -75.580223083496037, -12.631338119506836 ], [ -75.580505371093693, -12.627798080444336 ], [ -75.580978393554631, -12.626323699951172 ], [ -75.582664489746094, -12.623091697692814 ], [ -75.582908630371094, -12.622124671935921 ], [ -75.582565307617188, -12.620208740234375 ], [ -75.581336975097656, -12.617035865783635 ], [ -75.58056640625, -12.61176681518549 ], [ -75.579978942871094, -12.609940528869629 ], [ -75.579338073730469, -12.606217384338379 ], [ -75.579025268554688, -12.600702285766602 ], [ -75.579452514648381, -12.598531723022461 ], [ -75.579505920410156, -12.595484733581543 ], [ -75.578994750976449, -12.593623161315861 ], [ -75.578628540039062, -12.592872619628906 ], [ -75.577812194824219, -12.591987609863281 ], [ -75.576393127441349, -12.591267585754395 ], [ -75.573776245117188, -12.5905504226684 ], [ -75.572563171386719, -12.589529037475472 ], [ -75.572311401367131, -12.584855079650879 ], [ -75.572013854980412, -12.584079742431641 ], [ -75.570625305175781, -12.582661628723145 ], [ -75.567993164062443, -12.578625679016056 ], [ -75.566558837890625, -12.574443817138672 ], [ -75.566230773925781, -12.572733879089299 ], [ -75.566329956054688, -12.571720123290959 ], [ -75.566864013671818, -12.570644378662109 ], [ -75.569343566894474, -12.569393157958984 ], [ -75.571609497070312, -12.566953659057617 ], [ -75.572128295898324, -12.565279006957951 ], [ -75.571914672851506, -12.562837600708008 ], [ -75.570083618164062, -12.561402320861816 ], [ -75.567283630371094, -12.559927940368652 ], [ -75.566787719726449, -12.558924674987736 ], [ -75.566856384277287, -12.554231643676701 ], [ -75.566520690917969, -12.55341911315918 ], [ -75.562171936035156, -12.549365997314453 ], [ -75.560798645019531, -12.547624588012695 ], [ -75.559242248535099, -12.546290397644043 ], [ -75.557838439941406, -12.545559883117676 ], [ -75.556533813476562, -12.545436859130859 ], [ -75.555030822753849, -12.54611873626709 ], [ -75.553466796875, -12.545246124267578 ], [ -75.552574157714787, -12.545065879821777 ], [ -75.552223205566406, -12.54317569732666 ], [ -75.5517578125, -12.54248142242426 ], [ -75.551742553710938, -12.542119026184082 ], [ -75.549156188964844, -12.537955284118596 ], [ -75.549102783203125, -12.536346435546818 ], [ -75.548789978027344, -12.53528976440424 ], [ -75.547973632812443, -12.534269332885742 ], [ -75.546455383300724, -12.533342361450138 ], [ -75.545829772949219, -12.532573699951172 ], [ -75.546249389648381, -12.529959678649902 ], [ -75.545822143554688, -12.527022361755371 ], [ -75.545341491699219, -12.52546501159668 ], [ -75.543724060058594, -12.524022102355957 ], [ -75.542526245117188, -12.523310661315918 ], [ -75.540069580078068, -12.52241325378418 ], [ -75.538581848144531, -12.522270202636719 ], [ -75.535835266113281, -12.519058227539062 ], [ -75.536178588867188, -12.517127990722656 ], [ -75.537620544433594, -12.51531791687006 ], [ -75.538429260253849, -12.513661384582463 ], [ -75.53857421875, -12.512116432189941 ], [ -75.538429260253849, -12.509340286254883 ], [ -75.540451049804631, -12.50731182098383 ], [ -75.541496276855412, -12.505570411682072 ], [ -75.541458129882812, -12.505011558532715 ], [ -75.5404052734375, -12.50291538238514 ], [ -75.539688110351506, -12.500022888183537 ], [ -75.539718627929688, -12.499345779418945 ], [ -75.541610717773324, -12.496882438659668 ], [ -75.542678833007812, -12.494537353515625 ], [ -75.543006896972599, -12.493378639221078 ], [ -75.543113708496037, -12.491218566894474 ], [ -75.54400634765625, -12.488812446594238 ], [ -75.544548034667912, -12.485628128051758 ], [ -75.546173095703068, -12.480342864990234 ], [ -75.547004699707031, -12.478795051574707 ], [ -75.548675537109375, -12.476656913757324 ], [ -75.549125671386662, -12.475253105163574 ], [ -75.550338745117188, -12.473796844482365 ], [ -75.550239562988281, -12.470251083374023 ], [ -75.551498413085881, -12.468016624450684 ], [ -75.553054809570199, -12.466494560241642 ], [ -75.554229736328125, -12.46498966217041 ], [ -75.555587768554688, -12.458683967590332 ], [ -75.557640075683594, -12.45612907409668 ], [ -75.558059692382812, -12.455199241638184 ], [ -75.556945800781193, -12.444594383239632 ], [ -75.556243896484375, -12.442695617675724 ], [ -75.555351257324219, -12.441494941711312 ], [ -75.555335998535099, -12.440300941467285 ], [ -75.556144714355469, -12.439405441284123 ], [ -75.556442260742188, -12.438084602355957 ], [ -75.55596923828125, -12.436555862426701 ], [ -75.555999755859318, -12.434279441833439 ], [ -75.555419921874943, -12.432064056396484 ], [ -75.555946350097656, -12.430397987365666 ], [ -75.557106018066406, -12.42827129364008 ], [ -75.557868957519531, -12.42554759979248 ], [ -75.559242248535099, -12.42291259765625 ], [ -75.559646606445312, -12.421356201171875 ], [ -75.559890747070256, -12.417884826660099 ], [ -75.559272766113281, -12.416366577148381 ], [ -75.558036804199219, -12.414587020874023 ], [ -75.557914733886662, -12.413908004760742 ], [ -75.559623718261662, -12.412016868591309 ], [ -75.559944152832031, -12.411129951477051 ], [ -75.560234069824219, -12.410849571228027 ], [ -75.559883117675781, -12.404672622680607 ], [ -75.560317993164062, -12.399737358093205 ], [ -75.560287475585881, -12.397304534912053 ], [ -75.561759948730469, -12.393039703369141 ], [ -75.561889648437443, -12.391611099243107 ], [ -75.561355590820312, -12.39085483551014 ], [ -75.558860778808537, -12.38929367065424 ], [ -75.55804443359375, -12.387893676757812 ], [ -75.556747436523381, -12.386873245239144 ], [ -75.556098937988224, -12.384833335876465 ], [ -75.556137084960938, -12.381694793701172 ], [ -75.555809020996037, -12.380455017089844 ], [ -75.553390502929688, -12.377485275268555 ], [ -75.551826477050781, -12.376386642455941 ], [ -75.550758361816349, -12.375130653381348 ], [ -75.550254821777287, -12.369914054870549 ], [ -75.549034118652287, -12.366924285888672 ], [ -75.549003601074219, -12.365214347839299 ], [ -75.549362182617188, -12.364482879638615 ], [ -75.554229736328125, -12.35974216461176 ], [ -75.554649353027287, -12.358593940734806 ], [ -75.554527282714844, -12.356839179992676 ], [ -75.556182861328068, -12.354532241821232 ], [ -75.557472229003906, -12.350334167480469 ], [ -75.562858581542912, -12.3428697586059 ], [ -75.563835144042969, -12.340652465820256 ], [ -75.565284729003906, -12.33586597442627 ], [ -75.56622314453125, -12.334209442138672 ], [ -75.567588806152344, -12.332504272460938 ], [ -75.569107055664062, -12.331154823303109 ], [ -75.570632934570312, -12.330547332763615 ], [ -75.579193115234375, -12.329418182372933 ], [ -75.580978393554631, -12.32872486114502 ], [ -75.583854675292912, -12.328763961791935 ], [ -75.584625244140625, -12.328493118286076 ], [ -75.586830139160156, -12.325907707214355 ], [ -75.589164733886662, -12.324739456176758 ], [ -75.589752197265568, -12.322304725646973 ], [ -75.592201232910156, -12.31995773315424 ], [ -75.592498779296875, -12.318490028381348 ], [ -75.592445373535156, -12.315399169921761 ], [ -75.59291839599598, -12.314131736755257 ], [ -75.593467712402287, -12.313524246215763 ], [ -75.59210205078125, -12.30963134765625 ], [ -75.591133117675781, -12.308014869689941 ], [ -75.590164184570312, -12.304915428161621 ], [ -75.589363098144474, -12.303677558898869 ], [ -75.586799621581974, -12.300881385803223 ], [ -75.586738586425781, -12.300046920776367 ], [ -75.586990356445256, -12.299144744873047 ], [ -75.587745666503849, -12.29815483093256 ], [ -75.588546752929688, -12.297637939453068 ], [ -75.590049743652287, -12.297762870788574 ], [ -75.591499328613281, -12.297369003295898 ], [ -75.592979431152287, -12.296373367309457 ], [ -75.594245910644474, -12.295148849487305 ], [ -75.595184326171818, -12.293339729309082 ], [ -75.595794677734375, -12.290579795837289 ], [ -75.597404479980469, -12.286860466003304 ], [ -75.602928161621037, -12.280355453491211 ], [ -75.604209899902344, -12.277520179748535 ], [ -75.604431152343693, -12.276201248168945 ], [ -75.605888366699105, -12.273755073547363 ], [ -75.609031677246037, -12.269798278808537 ], [ -75.611030578613224, -12.267794609069824 ], [ -75.611900329589844, -12.267176628112736 ], [ -75.616050720214844, -12.265360832214355 ], [ -75.617362976074219, -12.263973236083928 ], [ -75.617637634277344, -12.262660026550293 ], [ -75.616607666015625, -12.25987720489502 ], [ -75.616470336914006, -12.25880241394043 ], [ -75.616668701171875, -12.257607460021916 ], [ -75.617385864257812, -12.256303787231388 ], [ -75.620323181152344, -12.253684997558537 ], [ -75.622825622558594, -12.252033233642578 ], [ -75.624801635742188, -12.250165939331055 ], [ -75.627456665039062, -12.249147415161076 ], [ -75.630447387695312, -12.245974540710449 ], [ -75.630813598632812, -12.245161056518441 ], [ -75.634078979492188, -12.241881370544434 ], [ -75.634124755859375, -12.241535186767578 ], [ -75.633628845214787, -12.240333557128849 ], [ -75.633872985839844, -12.238877296447754 ], [ -75.637939453125, -12.235497474670353 ], [ -75.640464782714844, -12.232471466064453 ], [ -75.642768859863224, -12.230321884155273 ], [ -75.644004821777287, -12.228743553161564 ], [ -75.644866943359318, -12.226906776428166 ], [ -75.645545959472599, -12.224699020385742 ], [ -75.645889282226562, -12.220935821533203 ], [ -75.646919250488281, -12.219035148620549 ], [ -75.648574829101562, -12.217223167419377 ], [ -75.649665832519531, -12.21640682220459 ], [ -75.651969909667969, -12.21519947052002 ], [ -75.652976989746037, -12.214094161987305 ], [ -75.653511047363281, -12.212580680847168 ], [ -75.653205871582031, -12.207454681396484 ], [ -75.653732299804631, -12.205925941467228 ], [ -75.656845092773438, -12.20329570770258 ], [ -75.658927917480469, -12.199808120727539 ], [ -75.659774780273438, -12.198758125305119 ], [ -75.661361694335881, -12.197461128234863 ], [ -75.663818359375, -12.196000099182072 ], [ -75.664619445800724, -12.195247650146484 ], [ -75.665184020996037, -12.194486618041935 ], [ -75.665451049804688, -12.193581581115723 ], [ -75.665206909179574, -12.192523956298828 ], [ -75.663597106933594, -12.190349578857365 ], [ -75.663360595703068, -12.189290046691895 ], [ -75.6619873046875, -12.186653137206918 ], [ -75.660690307617131, -12.185256004333439 ], [ -75.659904479980469, -12.184995651245117 ], [ -75.659255981445312, -12.184480667114201 ], [ -75.658462524414062, -12.183417320251465 ], [ -75.658622741699162, -12.182186126708984 ], [ -75.659408569335938, -12.180772781372013 ], [ -75.659942626953068, -12.179081916809082 ], [ -75.659538269042969, -12.177101135253849 ], [ -75.658836364746094, -12.175492286682072 ], [ -75.658203125, -12.174908638000431 ], [ -75.657691955566406, -12.174783706665039 ], [ -75.654693603515568, -12.175123214721623 ], [ -75.652931213378906, -12.174877166748047 ], [ -75.650779724121037, -12.17401123046875 ], [ -75.649833679199162, -12.172848701476937 ], [ -75.64971923828125, -12.172187805175781 ], [ -75.650169372558594, -12.169232368469238 ], [ -75.650001525878906, -12.16861629486084 ], [ -75.648918151855469, -12.167219161987248 ], [ -75.649131774902344, -12.162785530090332 ], [ -75.647224426269531, -12.160846710205078 ], [ -75.645027160644531, -12.157739639282227 ], [ -75.6419677734375, -12.149092674255371 ], [ -75.641090393066406, -12.148462295532227 ], [ -75.638893127441406, -12.148377418518066 ], [ -75.637580871582031, -12.147982597351017 ], [ -75.635231018066349, -12.146894454955998 ], [ -75.633941650390625, -12.145893096923771 ], [ -75.63226318359375, -12.145273208618107 ], [ -75.630409240722656, -12.143505096435547 ], [ -75.629096984863281, -12.141934394836369 ], [ -75.628913879394531, -12.141419410705566 ], [ -75.629852294921875, -12.139491081237736 ], [ -75.629852294921875, -12.13813495635975 ], [ -75.628463745117131, -12.136690139770451 ], [ -75.627990722656193, -12.135860443115234 ], [ -75.627685546875, -12.134096145629883 ], [ -75.628021240234375, -12.132974624633732 ], [ -75.629104614257812, -12.131072044372559 ], [ -75.630393981933537, -12.12947940826416 ], [ -75.636123657226562, -12.124881744384766 ], [ -75.637351989746037, -12.123612403869572 ], [ -75.63909912109375, -12.120352745056152 ], [ -75.638999938964844, -12.118996620178223 ], [ -75.638603210449219, -12.11799430847168 ], [ -75.637451171874943, -12.116630554199162 ], [ -75.635253906249943, -12.11502742767334 ], [ -75.635185241699219, -12.114502906799316 ], [ -75.638130187988281, -12.114106178283691 ], [ -75.639556884765625, -12.112458229064885 ], [ -75.640449523925781, -12.11226654052723 ], [ -75.642234802246094, -12.110390663146973 ], [ -75.643768310546875, -12.109265327453613 ], [ -75.646621704101562, -12.107648849487305 ], [ -75.650062561035156, -12.106321334838867 ], [ -75.651832580566349, -12.104642868041992 ], [ -75.654655456542969, -12.103270530700627 ], [ -75.655616760253906, -12.102320671081429 ], [ -75.656791687011662, -12.100643157958984 ], [ -75.657943725585881, -12.098499298095646 ], [ -75.659294128417855, -12.095267295837289 ], [ -75.660377502441406, -12.094042778015137 ], [ -75.662094116210938, -12.092700004577637 ], [ -75.665260314941406, -12.090812683105469 ], [ -75.668144226074162, -12.089585304260197 ], [ -75.669891357421875, -12.087873458862248 ], [ -75.675003051757756, -12.08448600769043 ], [ -75.678123474121094, -12.083946228027344 ], [ -75.679740905761719, -12.082927703857422 ], [ -75.681106567382756, -12.082826614379826 ], [ -75.681983947753849, -12.082180023193359 ], [ -75.682098388671875, -12.081394195556641 ], [ -75.681564331054688, -12.080158233642578 ], [ -75.681571960449219, -12.078927993774357 ], [ -75.683601379394474, -12.075748443603516 ], [ -75.684196472167969, -12.072845458984318 ], [ -75.684013366699219, -12.07192230224598 ], [ -75.683258056640625, -12.071127891540471 ], [ -75.683219909667912, -12.06788253784174 ], [ -75.68294525146473, -12.067432403564396 ], [ -75.681358337402344, -12.066168785095158 ], [ -75.680946350097656, -12.064732551574707 ], [ -75.679550170898438, -12.062095642089787 ], [ -75.675788879394474, -12.058956146240121 ], [ -75.675277709960938, -12.058071136474553 ], [ -75.677093505859318, -12.057472229003906 ], [ -75.677932739257812, -12.056403160095215 ], [ -75.678924560546818, -12.055676460266113 ], [ -75.681999206542969, -12.05456638336176 ], [ -75.682556152343693, -12.053956985473633 ], [ -75.682868957519531, -12.053208351135254 ], [ -75.683822631835938, -12.052434921264648 ], [ -75.686820983886662, -12.051624298095703 ], [ -75.690193176269418, -12.046533584594727 ], [ -75.694282531738224, -12.042552947997933 ], [ -75.695693969726506, -12.043038368225041 ], [ -75.698249816894531, -12.044596672058049 ], [ -75.699424743652287, -12.045734405517578 ], [ -75.700614929199219, -12.047610282897949 ], [ -75.701324462890568, -12.048133850097656 ], [ -75.702529907226562, -12.047769546508789 ], [ -75.704444885253906, -12.047792434692383 ], [ -75.707145690917912, -12.047231674194336 ], [ -75.70806884765625, -12.046713829040471 ], [ -75.709800720214844, -12.044901847839299 ], [ -75.71063232421875, -12.044610977172852 ], [ -75.712417602539062, -12.045039176940918 ], [ -75.715255737304631, -12.046660423278809 ], [ -75.717201232910156, -12.047007560729867 ], [ -75.71795654296875, -12.046888351440316 ], [ -75.718391418456974, -12.046598434448185 ], [ -75.720069885253906, -12.044097900390625 ], [ -75.722190856933594, -12.042881011962891 ], [ -75.722999572753793, -12.042725563049316 ], [ -75.7257080078125, -12.043079376220703 ], [ -75.728210449218693, -12.042981147766113 ], [ -75.736679077148438, -12.038873672485295 ], [ -75.739143371582031, -12.038801193237305 ], [ -75.741828918457031, -12.038407325744629 ], [ -75.742691040039062, -12.039273262023926 ], [ -75.743736267089844, -12.043871879577637 ], [ -75.745277404785156, -12.046890258789062 ], [ -75.746322631835938, -12.048105239868107 ], [ -75.749198913574162, -12.050614356994629 ], [ -75.752777099609375, -12.054862022399902 ], [ -75.754081726074162, -12.055283546447754 ], [ -75.757911682128906, -12.05510234832758 ], [ -75.761138916015568, -12.055662155151254 ], [ -75.762626647949219, -12.056355476379395 ], [ -75.766532897949219, -12.058994293212891 ], [ -75.769142150878849, -12.057765960693359 ], [ -75.771873474121094, -12.055480003356877 ], [ -75.774963378906193, -12.053481101989689 ], [ -75.776512145996094, -12.052157402038461 ], [ -75.778549194335938, -12.04961967468256 ], [ -75.780502319335881, -12.046377182006779 ], [ -75.781394958496094, -12.045351028442326 ], [ -75.7828369140625, -12.044325828552189 ], [ -75.784439086914062, -12.044013977050781 ], [ -75.785400390625, -12.043443679809513 ], [ -75.785728454589787, -12.04273509979248 ], [ -75.786178588867188, -12.040193557739201 ], [ -75.787666320800781, -12.038805961608773 ], [ -75.79132080078125, -12.037702560424748 ], [ -75.79217529296875, -12.036649703979435 ], [ -75.793380737304574, -12.036005020141545 ], [ -75.794197082519531, -12.035965919494572 ], [ -75.796020507812443, -12.036556243896484 ], [ -75.796852111816406, -12.036556243896484 ], [ -75.799392700195312, -12.034531593322697 ], [ -75.800971984863281, -12.03399467468256 ], [ -75.803466796874943, -12.029988288879281 ], [ -75.804412841796818, -12.029272079467773 ], [ -75.807220458984375, -12.027782440185547 ], [ -75.811843872070312, -12.023978233337402 ], [ -75.815490722656193, -12.020523071288949 ], [ -75.818618774414006, -12.016599655151367 ], [ -75.820259094238224, -12.013429641723633 ], [ -75.820960998535156, -12.013572692871094 ], [ -75.822517395019531, -12.014678955078068 ], [ -75.824829101562443, -12.014918327331543 ], [ -75.825607299804631, -12.01602840423584 ], [ -75.825706481933537, -12.017906188964844 ], [ -75.826339721679688, -12.020818710327092 ], [ -75.827011108398381, -12.022135734558105 ], [ -75.828407287597656, -12.023822784423771 ], [ -75.83013916015625, -12.024614334106445 ], [ -75.832328796386719, -12.024913787841797 ], [ -75.833946228027344, -12.024790763854867 ], [ -75.835067749023438, -12.024226188659668 ], [ -75.835838317871094, -12.023447036743164 ], [ -75.836387634277287, -12.01970195770258 ], [ -75.838325500488281, -12.017434120178223 ], [ -75.838661193847599, -12.015989303588754 ], [ -75.839424133300724, -12.014259338378906 ], [ -75.842285156249943, -12.009493827819767 ], [ -75.843101501464844, -12.007349014282227 ], [ -75.84356689453125, -12.006661415100098 ], [ -75.844619750976562, -12.006540298461857 ], [ -75.846382141113224, -12.007275581359806 ], [ -75.849586486816406, -12.007970809936467 ], [ -75.85272216796875, -12.007745742797852 ], [ -75.855636596679631, -12.006975173950195 ], [ -75.856864929199162, -12.006384849548226 ], [ -75.858772277831974, -12.004641532897892 ], [ -75.860908508300781, -12.003749847412109 ], [ -75.861740112304631, -12.002670288085881 ], [ -75.862442016601562, -12.002252578735295 ], [ -75.866455078125, -12.001299858093205 ], [ -75.868148803710824, -12.000138282775765 ], [ -75.870124816894474, -11.999822616577148 ], [ -75.8740234375, -11.999902725219727 ], [ -75.876091003417969, -11.999443054199105 ], [ -75.878189086914062, -11.998216629028263 ], [ -75.883827209472656, -11.993841171264592 ], [ -75.885444641113281, -11.99311447143549 ], [ -75.887184143066406, -11.992734909057617 ], [ -75.889640808105469, -11.993008613586426 ], [ -75.891265869140625, -11.993715286254883 ], [ -75.8961181640625, -11.992860794067383 ], [ -75.898017883300781, -11.993044853210449 ], [ -75.899848937988281, -11.99372673034668 ], [ -75.900741577148381, -11.994354248046818 ], [ -75.901084899902344, -11.995023727416992 ], [ -75.901420593261662, -11.996931076049805 ], [ -75.901771545410156, -11.997526168823242 ], [ -75.902389526367188, -11.997770309448185 ], [ -75.903625488281136, -11.997783660888672 ], [ -75.90631103515625, -11.996760368347168 ], [ -75.907196044921875, -11.995917320251465 ], [ -75.907493591308594, -11.995310783386174 ], [ -75.90765380859375, -11.993451118469181 ], [ -75.909591674804688, -11.991723060607853 ], [ -75.910987854003906, -11.988797187805176 ], [ -75.912391662597599, -11.987328529357853 ], [ -75.914054870605469, -11.986429214477425 ], [ -75.918838500976562, -11.985255241394043 ], [ -75.920074462890625, -11.98420238494873 ], [ -75.921905517578068, -11.983653068542424 ], [ -75.926307678222599, -11.983548164367676 ], [ -75.928970336914006, -11.983963012695256 ], [ -75.930969238281193, -11.985189437866097 ], [ -75.935562133789006, -11.988807678222656 ], [ -75.938018798828068, -11.989612579345646 ], [ -75.940635681152344, -11.991565704345703 ], [ -75.943229675292969, -11.992424964904785 ], [ -75.946411132812443, -11.994397163391056 ], [ -75.947563171386662, -11.994492530822697 ], [ -75.948837280273438, -11.993800163269043 ], [ -75.949470520019474, -11.993082046508732 ], [ -75.949737548828125, -11.991454124450684 ], [ -75.950798034667912, -11.989225387573242 ], [ -75.950889587402344, -11.987508773803711 ], [ -75.951454162597656, -11.987090110778752 ], [ -75.952247619628849, -11.986870765685978 ], [ -75.953933715820312, -11.985706329345646 ], [ -75.956863403320312, -11.984847068786621 ], [ -75.959106445312443, -11.984560012817383 ], [ -75.959907531738281, -11.985353469848576 ], [ -75.960494995117188, -11.986417770385685 ], [ -75.961524963378906, -11.987354278564453 ], [ -75.962829589843693, -11.987709999084416 ], [ -75.964485168457031, -11.987724304199219 ], [ -75.965980529785099, -11.987401962280273 ], [ -75.967094421386719, -11.986909866333008 ], [ -75.968734741210881, -11.985239028930664 ], [ -75.970375061035099, -11.984015464782715 ], [ -75.972076416015568, -11.983538627624512 ], [ -75.97412109375, -11.983287811279297 ], [ -75.975364685058594, -11.98340892791748 ], [ -75.976348876953125, -11.983848571777344 ], [ -75.98052978515625, -11.98731613159174 ], [ -75.988739013671875, -11.992431640625 ], [ -75.992164611816406, -11.993857383727971 ], [ -75.992988586425781, -11.993790626525879 ], [ -75.993759155273438, -11.993227958679199 ], [ -75.994903564453125, -11.988602638244629 ], [ -75.997261047363224, -11.987490653991642 ], [ -76.00091552734375, -11.984484672546387 ], [ -76.002822875976562, -11.984599113464355 ], [ -76.004501342773381, -11.984156608581486 ], [ -76.005500793457031, -11.984145164489689 ], [ -76.006393432617188, -11.984350204467773 ], [ -76.008468627929688, -11.985479354858398 ], [ -76.009674072265511, -11.985855102539062 ], [ -76.011497497558594, -11.986129760742188 ], [ -76.01263427734375, -11.98558330535883 ], [ -76.014305114746094, -11.98419284820551 ], [ -76.015571594238224, -11.982662200927621 ], [ -76.017608642578125, -11.9793701171875 ], [ -76.0181884765625, -11.978800773620549 ], [ -76.019775390624943, -11.975375175476017 ], [ -76.020576477050781, -11.974494934082031 ], [ -76.023910522460938, -11.972857475280762 ], [ -76.026687622070312, -11.970413208007812 ], [ -76.034400939941406, -11.964986801147461 ], [ -76.035835266113281, -11.96422100067133 ], [ -76.037513732910099, -11.963871955871525 ], [ -76.039070129394531, -11.960339546203556 ], [ -76.040084838867131, -11.956872940063477 ], [ -76.040657043456974, -11.955695152282715 ], [ -76.043304443359318, -11.953914642333984 ], [ -76.044601440429688, -11.95266056060791 ], [ -76.04669189453125, -11.952627182006836 ], [ -76.047584533691406, -11.95219898223877 ], [ -76.052406311035156, -11.947335243225098 ], [ -76.05279541015625, -11.946627616882324 ], [ -76.053054809570256, -11.945133209228516 ], [ -76.053169250488281, -11.943426132202148 ], [ -76.052879333496094, -11.942131996154728 ], [ -76.053512573242131, -11.939544677734318 ], [ -76.054389953613224, -11.939250946044865 ], [ -76.055023193359375, -11.93848991394043 ], [ -76.055274963378906, -11.937186241149902 ], [ -76.054801940917969, -11.934990882873478 ], [ -76.052955627441349, -11.932440757751408 ], [ -76.052719116210938, -11.931455612182617 ], [ -76.052772521972599, -11.930587768554574 ], [ -76.053657531738281, -11.928611755371094 ], [ -76.054954528808537, -11.927224159240723 ], [ -76.056045532226562, -11.92644214630127 ], [ -76.056938171386719, -11.924983024597168 ], [ -76.056930541992188, -11.924620628356877 ], [ -76.056488037109318, -11.92427921295166 ], [ -76.056312561035156, -11.923311233520508 ], [ -76.055702209472599, -11.922647476196289 ], [ -76.055648803710938, -11.921309471130314 ], [ -76.055946350097656, -11.920087814331055 ], [ -76.057220458984375, -11.91837215423584 ], [ -76.057342529296818, -11.91728687286377 ], [ -76.057151794433537, -11.915515899658146 ], [ -76.057411193847656, -11.914754867553711 ], [ -76.058204650878849, -11.913656234741154 ], [ -76.058174133300781, -11.912672042846623 ], [ -76.057769775390625, -11.91219520568842 ], [ -76.056716918945312, -11.911855697631836 ], [ -76.056083679199162, -11.911793708801213 ], [ -76.055137634277287, -11.912095069885197 ], [ -76.053695678710938, -11.911830902099609 ], [ -76.052886962890625, -11.911409378051758 ], [ -76.052284240722599, -11.910734176635742 ], [ -76.051651000976562, -11.910709381103516 ], [ -76.051307678222656, -11.910437583923283 ], [ -76.050621032714844, -11.909156799316406 ], [ -76.050460815429631, -11.905765533447209 ], [ -76.04949951171875, -11.903932571411019 ], [ -76.049041748046818, -11.902018547058049 ], [ -76.049583435058594, -11.90140438079834 ], [ -76.050529479980469, -11.900895118713379 ], [ -76.051460266113281, -11.899686813354492 ], [ -76.050895690917969, -11.896867752075138 ], [ -76.050743103027287, -11.894807815551758 ], [ -76.050842285156193, -11.89266300201416 ], [ -76.051139831542912, -11.891341209411564 ], [ -76.052558898925724, -11.889391899108887 ], [ -76.053810119628849, -11.887108802795353 ], [ -76.055511474609318, -11.885126113891545 ], [ -76.059127807617188, -11.87932109832758 ], [ -76.061370849609375, -11.877630233764648 ], [ -76.064933776855469, -11.875775337219125 ], [ -76.067825317382756, -11.87359428405756 ], [ -76.071418762207031, -11.870415687560978 ], [ -76.078384399414062, -11.862965583801213 ], [ -76.079368591308537, -11.862491607665959 ], [ -76.081146240234375, -11.862068176269531 ], [ -76.082679748535156, -11.860941886901799 ], [ -76.084541320800781, -11.860246658325138 ], [ -76.084915161132756, -11.859631538391056 ], [ -76.085151672363281, -11.85784912109375 ], [ -76.085990905761719, -11.856571197509709 ], [ -76.087478637695256, -11.853031158447209 ], [ -76.087944030761662, -11.849600791931039 ], [ -76.088180541992188, -11.849085807800236 ], [ -76.088859558105469, -11.849272727966309 ], [ -76.090126037597656, -11.850468635559025 ], [ -76.09161376953125, -11.850700378417969 ], [ -76.092658996582031, -11.850386619567871 ], [ -76.093452453613281, -11.849580764770508 ], [ -76.094329833984318, -11.848010063171387 ], [ -76.095672607421818, -11.84343147277832 ], [ -76.097526550292969, -11.841914176940918 ], [ -76.098136901855469, -11.840970039367562 ], [ -76.09798431396473, -11.839344978332406 ], [ -76.096702575683594, -11.837380409240723 ], [ -76.096740722656193, -11.836222648620549 ], [ -76.097610473632812, -11.835276603698674 ], [ -76.09906005859375, -11.834530830383301 ], [ -76.101348876953125, -11.832612037658691 ], [ -76.104118347167969, -11.82883358001709 ], [ -76.104965209960938, -11.826760292053109 ], [ -76.105133056640568, -11.825057029724064 ], [ -76.10552978515625, -11.823971748351994 ], [ -76.109832763671875, -11.81856632232666 ], [ -76.1107177734375, -11.816690444946289 ], [ -76.110809326171875, -11.815794944763184 ], [ -76.110473632812443, -11.81489181518549 ], [ -76.110649108886662, -11.812759399414062 ], [ -76.112190246581974, -11.811095237731934 ], [ -76.115478515625, -11.808263778686467 ], [ -76.117523193359318, -11.805190086364746 ], [ -76.122383117675724, -11.800216674804631 ], [ -76.122886657714844, -11.799362182617074 ], [ -76.123565673828125, -11.795761108398438 ], [ -76.123954772949219, -11.795164108276367 ], [ -76.12615966796875, -11.793898582458439 ], [ -76.1298828125, -11.793042182922363 ], [ -76.131431579589787, -11.79193210601801 ], [ -76.134025573730412, -11.791164398193246 ], [ -76.135276794433594, -11.790120124816838 ], [ -76.135391235351562, -11.78950309753418 ], [ -76.134933471679688, -11.78693771362299 ], [ -76.135246276855412, -11.785661697387638 ], [ -76.134902954101562, -11.783293724060002 ], [ -76.135337829589787, -11.780344963073674 ], [ -76.136413574218693, -11.779682159423771 ], [ -76.137214660644531, -11.779523849487305 ], [ -76.140007019042912, -11.778221130371094 ], [ -76.141586303710938, -11.776784896850529 ], [ -76.142097473144531, -11.776691436767578 ], [ -76.142776489257756, -11.776996612548828 ], [ -76.142906188964844, -11.777783393859863 ], [ -76.144256591796875, -11.779232978820744 ], [ -76.147560119628849, -11.781940460205078 ], [ -76.148223876953068, -11.783203125 ], [ -76.148834228515625, -11.783755302429199 ], [ -76.150634765625, -11.783782005310002 ], [ -76.152687072753906, -11.782796859741154 ], [ -76.154335021972599, -11.781253814697266 ], [ -76.157379150390568, -11.777235984802246 ], [ -76.160255432128849, -11.774484634399357 ], [ -76.163314819335938, -11.772383689880371 ], [ -76.164085388183594, -11.77116870880127 ], [ -76.164237976074162, -11.76982212066639 ], [ -76.164611816406193, -11.769231796264648 ], [ -76.165443420410156, -11.768648147583008 ], [ -76.166900634765568, -11.768129348754769 ], [ -76.168655395507812, -11.766990661621094 ], [ -76.172248840331974, -11.763305664062443 ], [ -76.172828674316349, -11.762426376342773 ], [ -76.172950744628906, -11.761440277099609 ], [ -76.171653747558594, -11.759076118469238 ], [ -76.171493530273381, -11.756924629211369 ], [ -76.171798706054574, -11.755540847778207 ], [ -76.173233032226562, -11.75251388549799 ], [ -76.17413330078125, -11.750954627990723 ], [ -76.175048828125, -11.749957084655762 ], [ -76.178009033203125, -11.748572349548283 ], [ -76.179946899414062, -11.746934890747013 ], [ -76.182357788085881, -11.743453025817757 ], [ -76.184310913085938, -11.73961162567133 ], [ -76.185302734375, -11.738965034484863 ], [ -76.186660766601506, -11.738435745239201 ], [ -76.190498352050781, -11.737723350524846 ], [ -76.193954467773438, -11.737602233886719 ], [ -76.197242736816349, -11.738066673278809 ], [ -76.19854736328125, -11.736433029174748 ], [ -76.201393127441406, -11.729928016662541 ], [ -76.20174407958973, -11.727377891540527 ], [ -76.200767517089787, -11.723727226257324 ], [ -76.200790405273324, -11.721938133239746 ], [ -76.202461242675781, -11.718667030334473 ], [ -76.202011108398381, -11.716210365295353 ], [ -76.202308654785099, -11.71526908874506 ], [ -76.203285217285156, -11.713972091674805 ], [ -76.203216552734375, -11.711819648742619 ], [ -76.203445434570256, -11.710400581359806 ], [ -76.205284118652344, -11.706792831420842 ], [ -76.207504272460938, -11.703511238098088 ], [ -76.208229064941293, -11.701519012451058 ], [ -76.207809448242188, -11.699963569641113 ], [ -76.207221984863281, -11.699398994445801 ], [ -76.206756591796875, -11.698514938354379 ], [ -76.206245422363281, -11.695504188537541 ], [ -76.205741882324162, -11.694369316101074 ], [ -76.203430175781193, -11.69351863861084 ], [ -76.201545715331974, -11.693146705627328 ], [ -76.200210571289006, -11.693370819091797 ], [ -76.197990417480412, -11.694193840026855 ], [ -76.196884155273438, -11.694226264953613 ], [ -76.196212768554574, -11.694010734558105 ], [ -76.195457458496094, -11.693083763122502 ], [ -76.195411682128906, -11.69201469421381 ], [ -76.196090698242131, -11.691055297851562 ], [ -76.196159362792969, -11.690528869628849 ], [ -76.195831298828011, -11.689781188964787 ], [ -76.194503784179688, -11.688421249389648 ], [ -76.194297790527287, -11.687561035156193 ], [ -76.194396972656193, -11.686214447021484 ], [ -76.194976806640625, -11.684712409973145 ], [ -76.195114135742188, -11.680678367614689 ], [ -76.197090148925781, -11.677362442016602 ], [ -76.198944091796818, -11.671096801757699 ], [ -76.199729919433537, -11.670025825500488 ], [ -76.201980590820312, -11.667910575866642 ], [ -76.202407836914006, -11.667121887207031 ], [ -76.203025817871094, -11.662500381469727 ], [ -76.203506469726562, -11.661148071289006 ], [ -76.203353881835881, -11.659352302551213 ], [ -76.2030029296875, -11.658727645873967 ], [ -76.201553344726449, -11.658202171325684 ], [ -76.200469970703068, -11.657538414001465 ], [ -76.199386596679688, -11.655921936035099 ], [ -76.196403503417855, -11.653422355651799 ], [ -76.195594787597656, -11.65180587768549 ], [ -76.194007873535099, -11.649932861328125 ], [ -76.193084716796875, -11.649078369140625 ], [ -76.191558837890625, -11.64827823638916 ], [ -76.190406799316406, -11.647242546081543 ], [ -76.188201904296761, -11.643698692321664 ], [ -76.188018798828125, -11.642108917236328 ], [ -76.188186645507756, -11.641474723815861 ], [ -76.19012451171875, -11.638004302978402 ], [ -76.190223693847656, -11.637227058410588 ], [ -76.189994812011662, -11.635654449462891 ], [ -76.190155029296875, -11.63502311706543 ], [ -76.197013854980469, -11.629648208618107 ], [ -76.198661804199162, -11.627697944641056 ], [ -76.19879150390625, -11.62602519989008 ], [ -76.198204040527287, -11.623938560485783 ], [ -76.197326660156193, -11.622467041015625 ], [ -76.196670532226506, -11.621837615966797 ], [ -76.194892883300781, -11.620568275451603 ], [ -76.192352294921875, -11.619620323181152 ], [ -76.187263488769531, -11.61525821685791 ], [ -76.184585571289062, -11.614355087280273 ], [ -76.183555603027344, -11.614603996276799 ], [ -76.180732727050724, -11.614569664001465 ], [ -76.180145263671875, -11.614339828491211 ], [ -76.179862976074219, -11.613977432250977 ], [ -76.179496765136662, -11.612739562988281 ], [ -76.179489135742131, -11.611673355102539 ], [ -76.179725646972656, -11.609763145446777 ], [ -76.18023681640625, -11.608831405639592 ], [ -76.181373596191406, -11.607534408569222 ], [ -76.182395935058594, -11.606777191162109 ], [ -76.183494567871037, -11.606357574462891 ], [ -76.185478210449219, -11.606034278869629 ], [ -76.186164855956974, -11.605669975280762 ], [ -76.187179565429688, -11.604635238647404 ], [ -76.187721252441349, -11.603303909301701 ], [ -76.187690734863224, -11.602144241333008 ], [ -76.187187194824219, -11.600032806396428 ], [ -76.184638977050724, -11.596760749816895 ], [ -76.184097290039006, -11.595145225524846 ], [ -76.1842041015625, -11.593887329101562 ], [ -76.184974670410156, -11.592067718505859 ], [ -76.184989929199219, -11.588295936584473 ], [ -76.185577392578125, -11.587046623229924 ], [ -76.186279296874943, -11.586554527282658 ], [ -76.188858032226506, -11.586554527282658 ], [ -76.191680908203125, -11.587546348571777 ], [ -76.193572998046875, -11.587844848632812 ], [ -76.195098876953125, -11.588642120361328 ], [ -76.196319580078125, -11.588964462280273 ], [ -76.198051452636719, -11.588847160339299 ], [ -76.199188232421875, -11.588302612304631 ], [ -76.2005615234375, -11.586297035217285 ], [ -76.201736450195256, -11.58531475067133 ], [ -76.203392028808594, -11.582531929016113 ], [ -76.203399658203125, -11.581963539123535 ], [ -76.203872680664062, -11.580785751342773 ], [ -76.204940795898438, -11.579677581787109 ], [ -76.204887390136662, -11.57546424865717 ], [ -76.205276489257812, -11.574666976928711 ], [ -76.206100463867131, -11.574139595031738 ], [ -76.209526062011719, -11.573673248291016 ], [ -76.213905334472656, -11.570905685424748 ], [ -76.215065002441349, -11.570928573608398 ], [ -76.216629028320312, -11.57141017913807 ], [ -76.217384338378793, -11.571136474609318 ], [ -76.217834472656193, -11.570265769958382 ], [ -76.217254638671818, -11.567466735839844 ], [ -76.217910766601562, -11.565221786499023 ], [ -76.218894958496037, -11.564167022705021 ], [ -76.221092224121037, -11.563553810119629 ], [ -76.222183227539062, -11.56291484832758 ], [ -76.223388671874943, -11.561942100524846 ], [ -76.225082397460881, -11.560064315795898 ], [ -76.225440979003906, -11.559174537658691 ], [ -76.225334167480469, -11.556120872497502 ], [ -76.227294921874943, -11.553762435913086 ], [ -76.22802734375, -11.553667068481445 ], [ -76.228874206542969, -11.553954124450627 ], [ -76.230514526367131, -11.554760932922306 ], [ -76.231193542480412, -11.555499076843262 ], [ -76.231544494628906, -11.556791305541935 ], [ -76.231788635253906, -11.560859680175781 ], [ -76.232139587402287, -11.562338829040471 ], [ -76.234092712402344, -11.564962387084904 ], [ -76.234840393066406, -11.565617561340275 ], [ -76.236160278320256, -11.567973136901799 ], [ -76.237205505371037, -11.568711280822754 ], [ -76.238182067871094, -11.568707466125488 ], [ -76.241104125976506, -11.567266464233342 ], [ -76.244552612304631, -11.566987991332951 ], [ -76.246551513671818, -11.567068099975529 ], [ -76.249687194824162, -11.567624092101994 ], [ -76.253524780273381, -11.569462776184082 ], [ -76.254707336425781, -11.569376945495549 ], [ -76.257667541503906, -11.568034172058105 ], [ -76.259712219238224, -11.567645072937012 ], [ -76.262260437011719, -11.566830635070801 ], [ -76.264060974121094, -11.567130088806152 ], [ -76.265899658203068, -11.567917823791447 ], [ -76.26812744140625, -11.569906234741211 ], [ -76.269683837890625, -11.572222709655762 ], [ -76.271636962890568, -11.578471183776742 ], [ -76.27178955078125, -11.579987525939941 ], [ -76.273040771484375, -11.58187294006342 ], [ -76.274337768554688, -11.58268928527832 ], [ -76.277587890625, -11.583806037902832 ], [ -76.279190063476562, -11.584657669067383 ], [ -76.280410766601506, -11.585872650146484 ], [ -76.281578063964844, -11.587577819824219 ], [ -76.284660339355469, -11.589499473571721 ], [ -76.285369873046818, -11.590616226196232 ], [ -76.28619384765625, -11.591119766235295 ], [ -76.286735534667969, -11.59111499786377 ], [ -76.289375305175724, -11.590162277221623 ], [ -76.292213439941349, -11.588751792907658 ], [ -76.292839050292969, -11.588765144348145 ], [ -76.293792724609375, -11.589602470397892 ], [ -76.295074462890568, -11.592090606689453 ], [ -76.295440673828125, -11.593653678894043 ], [ -76.295989990234375, -11.594691276550293 ], [ -76.295959472656193, -11.59549617767334 ], [ -76.296310424804688, -11.596552848815861 ], [ -76.297203063964787, -11.596286773681641 ], [ -76.297386169433537, -11.595996856689453 ], [ -76.297431945800781, -11.591792106628361 ], [ -76.298507690429631, -11.588929176330566 ], [ -76.299087524414006, -11.588022232055664 ], [ -76.299217224121094, -11.587308883666935 ], [ -76.300163269042855, -11.586213111877385 ], [ -76.300559997558594, -11.585322380065861 ], [ -76.300949096679688, -11.580844879150334 ], [ -76.3006591796875, -11.578432083129826 ], [ -76.300186157226562, -11.577684402465707 ], [ -76.300003051757812, -11.576889038085938 ], [ -76.300201416015625, -11.574122428894043 ], [ -76.30145263671875, -11.57225322723383 ], [ -76.3037109375, -11.568047523498535 ], [ -76.304740905761605, -11.566686630248967 ], [ -76.307075500488281, -11.564688682556152 ], [ -76.309722900390625, -11.563309669494629 ], [ -76.310455322265568, -11.563243865966797 ], [ -76.314598083496094, -11.563838005065918 ], [ -76.315490722656193, -11.563701629638615 ], [ -76.316757202148324, -11.562853813171387 ], [ -76.318008422851562, -11.560994148254395 ], [ -76.319671630859375, -11.559213638305664 ], [ -76.320915222167969, -11.555384635925236 ], [ -76.322334289550781, -11.554113388061467 ], [ -76.324829101562443, -11.553034782409668 ], [ -76.325286865234375, -11.552606582641602 ], [ -76.325630187988281, -11.551763534545898 ], [ -76.325675964355469, -11.548808097839242 ], [ -76.326156616210938, -11.547071456909066 ], [ -76.327239990234318, -11.545202255249023 ], [ -76.328804016113281, -11.54370212554926 ], [ -76.330345153808594, -11.542926788330078 ], [ -76.332084655761662, -11.542378425598145 ], [ -76.335800170898381, -11.542152404785099 ], [ -76.336669921874943, -11.542428016662598 ], [ -76.337471008300781, -11.543021202087402 ], [ -76.338111877441349, -11.544365882873478 ], [ -76.339080810546875, -11.544623374938965 ], [ -76.344459533691406, -11.542962074279785 ], [ -76.345809936523381, -11.542756080627328 ], [ -76.347221374511719, -11.541655540466195 ], [ -76.348564147949219, -11.53785228729248 ], [ -76.349075317382756, -11.534786224365178 ], [ -76.349220275878906, -11.531286239624023 ], [ -76.348373413085938, -11.528651237487736 ], [ -76.348823547363281, -11.526431083679199 ], [ -76.349502563476562, -11.525606155395451 ], [ -76.349746704101506, -11.524838447570801 ], [ -76.349319458007812, -11.521567344665527 ], [ -76.349601745605469, -11.520453453063908 ], [ -76.350517272949105, -11.5198974609375 ], [ -76.351776123046875, -11.51972770690918 ], [ -76.354629516601562, -11.520240783691406 ], [ -76.355804443359375, -11.521093368530217 ], [ -76.356857299804688, -11.522651672363281 ], [ -76.357826232910099, -11.522946357727051 ], [ -76.358551025390625, -11.522807121276855 ], [ -76.360305786132756, -11.520865440368539 ], [ -76.361686706542969, -11.518859863281193 ], [ -76.36187744140625, -11.517049789428711 ], [ -76.361305236816406, -11.514511108398438 ], [ -76.362327575683537, -11.514156341552734 ], [ -76.363029479980469, -11.513592720031738 ], [ -76.3681640625, -11.50810432434082 ], [ -76.373924255371094, -11.503412246704102 ], [ -76.376602172851562, -11.500851631164494 ], [ -76.376541137695256, -11.498852729797306 ], [ -76.376724243164006, -11.497804641723633 ], [ -76.3779296875, -11.494652748107853 ], [ -76.378067016601506, -11.493450164794922 ], [ -76.379852294921875, -11.489065170288029 ], [ -76.380523681640568, -11.486873626708984 ], [ -76.380722045898381, -11.485408782958928 ], [ -76.380538940429631, -11.483247756957951 ], [ -76.380035400390625, -11.481830596923828 ], [ -76.379295349121037, -11.480884552001953 ], [ -76.3779296875, -11.480881690979004 ], [ -76.376869201660156, -11.480615615844727 ], [ -76.375579833984318, -11.480169296264648 ], [ -76.37506103515625, -11.479728698730469 ], [ -76.374374389648438, -11.47973442077631 ], [ -76.373741149902344, -11.47924613952631 ], [ -76.372200012207031, -11.477165222167969 ], [ -76.371788024902344, -11.475207328796387 ], [ -76.371902465820312, -11.473578453063965 ], [ -76.372261047363168, -11.472862243652344 ], [ -76.372253417968693, -11.471506118774357 ], [ -76.372886657714844, -11.468331336975041 ], [ -76.375198364257756, -11.462713241577148 ], [ -76.376152038574162, -11.458659172058049 ], [ -76.376708984374943, -11.451805114746094 ], [ -76.377189636230412, -11.449033737182504 ], [ -76.377143859863281, -11.443663597106934 ], [ -76.377593994140568, -11.443353652954102 ], [ -76.379241943359375, -11.442957878112793 ], [ -76.383552551269531, -11.445260047912541 ], [ -76.387931823730469, -11.446296691894474 ], [ -76.390922546386662, -11.445949554443359 ], [ -76.392768859863281, -11.445417404174805 ], [ -76.393959045410156, -11.444794654846135 ], [ -76.396095275878849, -11.442165374755859 ], [ -76.399620056152287, -11.436387062072697 ], [ -76.405044555664006, -11.425357818603516 ], [ -76.40576171875, -11.423186302185002 ], [ -76.40673828125, -11.421397209167367 ], [ -76.411224365234375, -11.416144371032658 ], [ -76.412788391113224, -11.414841651916447 ], [ -76.414001464843693, -11.413055419921875 ], [ -76.413986206054688, -11.412368774414062 ], [ -76.413703918457031, -11.411755561828613 ], [ -76.411849975585938, -11.409918785095158 ], [ -76.41046142578125, -11.409536361694279 ], [ -76.40728759765625, -11.409280776977539 ], [ -76.404853820800724, -11.408424377441349 ], [ -76.404106140136662, -11.407279968261662 ], [ -76.403633117675724, -11.405474662780648 ], [ -76.401084899902344, -11.404220581054631 ], [ -76.400688171386719, -11.403652191162053 ], [ -76.400665283203068, -11.402847290039062 ], [ -76.400856018066349, -11.40206146240223 ], [ -76.401313781738224, -11.401389122009277 ], [ -76.403495788574219, -11.399172782897892 ], [ -76.403961181640625, -11.396523475646916 ], [ -76.407470703125, -11.389979362487793 ], [ -76.409194946289062, -11.388241767883244 ], [ -76.411392211914062, -11.386747360229435 ], [ -76.412185668945256, -11.385894775390625 ], [ -76.412612915039062, -11.384671211242676 ], [ -76.413101196289062, -11.38154411315918 ], [ -76.414253234863281, -11.379077911376839 ], [ -76.416244506835938, -11.377270698547306 ], [ -76.417404174804688, -11.37654972076416 ], [ -76.418815612792969, -11.37603759765625 ], [ -76.419815063476506, -11.37492847442627 ], [ -76.420051574707031, -11.374204635620117 ], [ -76.419837951660099, -11.371247291564885 ], [ -76.420333862304688, -11.364373207092285 ], [ -76.420776367187443, -11.362428665161076 ], [ -76.422470092773438, -11.359030723571664 ], [ -76.422630310058594, -11.354724884033146 ], [ -76.422821044921875, -11.354207992553654 ], [ -76.424606323242131, -11.352753639221135 ], [ -76.427337646484375, -11.351530075073185 ], [ -76.427703857421875, -11.350967407226562 ], [ -76.428108215332031, -11.34898662567133 ], [ -76.42864990234375, -11.347881317138615 ], [ -76.430328369140568, -11.346254348754883 ], [ -76.431694030761719, -11.3454332351684 ], [ -76.432647705078125, -11.345321655273324 ], [ -76.433891296386719, -11.345513343810978 ], [ -76.436698913574162, -11.346899032592773 ], [ -76.439666748046818, -11.346469879150391 ], [ -76.443618774414062, -11.346894264221191 ], [ -76.446380615234375, -11.346228599548283 ], [ -76.449752807617188, -11.34471321105957 ], [ -76.450912475585881, -11.343776702880803 ], [ -76.452949523925781, -11.341567993164006 ], [ -76.455772399902287, -11.335588455200195 ], [ -76.456962585449219, -11.334295272827092 ], [ -76.45709228515625, -11.333148956298828 ], [ -76.457298278808537, -11.332976341247502 ], [ -76.457206726074162, -11.332461357116699 ], [ -76.457809448242188, -11.330387115478516 ], [ -76.459213256835881, -11.328916549682617 ], [ -76.459526062011719, -11.326330184936523 ], [ -76.459815979003906, -11.325458526611271 ], [ -76.46087646484375, -11.324108123779297 ], [ -76.463829040527344, -11.321235656738281 ], [ -76.464454650878849, -11.320328712463322 ], [ -76.464492797851562, -11.319125175476074 ], [ -76.464218139648438, -11.317923545837289 ], [ -76.462966918945312, -11.316708564758244 ], [ -76.462654113769474, -11.315961837768498 ], [ -76.46266937255848, -11.314751625061035 ], [ -76.463363647460938, -11.312559127807504 ], [ -76.466117858886719, -11.308547973632812 ], [ -76.470466613769474, -11.303717613220101 ], [ -76.473960876464844, -11.296511650085449 ], [ -76.477287292480469, -11.293213844299316 ], [ -76.478103637695256, -11.291192054748535 ], [ -76.478065490722656, -11.290670394897461 ], [ -76.477241516113224, -11.289599418640023 ], [ -76.476676940917912, -11.28765678405756 ], [ -76.472000122070256, -11.281866073608398 ], [ -76.471130371093693, -11.279737472534123 ], [ -76.470710754394531, -11.27775859832758 ], [ -76.4693603515625, -11.275568962097111 ], [ -76.467361450195312, -11.274747848510742 ], [ -76.465179443359375, -11.272886276245004 ], [ -76.464591979980469, -11.272156715393066 ], [ -76.463851928710938, -11.270360946655273 ], [ -76.463127136230412, -11.269695281982308 ], [ -76.462257385253849, -11.269675254821777 ], [ -76.460807800292969, -11.270432472229004 ], [ -76.458770751953125, -11.272402763366642 ], [ -76.457817077636719, -11.272343635559082 ], [ -76.457496643066349, -11.272074699401855 ], [ -76.457466125488281, -11.271694183349496 ], [ -76.457748413085938, -11.269513130187931 ], [ -76.458503723144531, -11.268588066101017 ], [ -76.462112426757812, -11.265695571899414 ], [ -76.466644287109318, -11.263776779174805 ], [ -76.467811584472599, -11.263480186462402 ], [ -76.470680236816293, -11.263637542724609 ], [ -76.472213745117188, -11.263078689575195 ], [ -76.476043701171875, -11.262951850891113 ], [ -76.477195739746094, -11.262619018554631 ], [ -76.479431152343693, -11.260827064514103 ], [ -76.479873657226562, -11.25963115692133 ], [ -76.480308532714787, -11.259106636047306 ], [ -76.482398986816349, -11.258524894714355 ], [ -76.483879089355469, -11.25732421875 ], [ -76.484611511230469, -11.256353378295842 ], [ -76.485374450683594, -11.253639221191349 ], [ -76.488639831542969, -11.250592231750488 ], [ -76.489250183105412, -11.249693870544434 ], [ -76.490653991699219, -11.246468544006348 ], [ -76.490760803222656, -11.245671272277775 ], [ -76.490531921386719, -11.244479179382267 ], [ -76.490066528320312, -11.244157791137638 ], [ -76.489006042480469, -11.243903160095158 ], [ -76.485054016113224, -11.244100570678711 ], [ -76.484786987304631, -11.243814468383789 ], [ -76.484779357910099, -11.242329597473088 ], [ -76.484397888183537, -11.239928245544434 ], [ -76.483139038085881, -11.236813545226937 ], [ -76.483261108398381, -11.235748291015625 ], [ -76.484153747558594, -11.233482360839844 ], [ -76.483940124511719, -11.229179382324219 ], [ -76.485351562499943, -11.226877212524414 ], [ -76.485443115234318, -11.224571228027287 ], [ -76.48577880859375, -11.223703384399414 ], [ -76.487800598144531, -11.221883773803711 ], [ -76.489753723144418, -11.217885971069336 ], [ -76.492744445800781, -11.214570045471135 ], [ -76.493972778320312, -11.212766647338867 ], [ -76.494461059570312, -11.210839271545353 ], [ -76.494087219238281, -11.207755088806096 ], [ -76.493682861328125, -11.207125663757324 ], [ -76.493568420410043, -11.206339836120549 ], [ -76.494102478027344, -11.202576637267953 ], [ -76.494049072265625, -11.20139217376709 ], [ -76.493415832519531, -11.200021743774357 ], [ -76.491836547851506, -11.197994232177734 ], [ -76.491600036621094, -11.197364807128906 ], [ -76.491645812988224, -11.194795608520508 ], [ -76.492469787597656, -11.190567970275879 ], [ -76.492401123046818, -11.188399314880314 ], [ -76.492691040039006, -11.186546325683594 ], [ -76.493293762207031, -11.184859275817814 ], [ -76.494224548339787, -11.183571815490666 ], [ -76.498764038085938, -11.179662704467773 ], [ -76.499282836914006, -11.178709983825684 ], [ -76.499404907226562, -11.17723560333252 ], [ -76.500244140624886, -11.176417350769043 ], [ -76.500595092773381, -11.175601005554142 ], [ -76.501312255859375, -11.175164222717285 ], [ -76.502883911132756, -11.175020217895451 ], [ -76.503440856933594, -11.174665451049805 ], [ -76.504783630371094, -11.173112869262638 ], [ -76.506088256835938, -11.17059421539301 ], [ -76.506423950195256, -11.169433593749943 ], [ -76.506340026855412, -11.168214797973633 ], [ -76.5037841796875, -11.164746284484863 ], [ -76.503089904785099, -11.162009239196777 ], [ -76.503013610839844, -11.159197807311955 ], [ -76.50323486328125, -11.156511306762638 ], [ -76.504463195800781, -11.153541564941406 ], [ -76.504165649414062, -11.146444320678711 ], [ -76.505760192871037, -11.141862869262695 ], [ -76.507347106933594, -11.140217781066895 ], [ -76.507682800292855, -11.139609336853027 ], [ -76.507362365722599, -11.137777328491211 ], [ -76.507484436035099, -11.136310577392578 ], [ -76.508316040039006, -11.135493278503418 ], [ -76.509414672851562, -11.134955406188965 ], [ -76.510017395019531, -11.134219169616642 ], [ -76.510169982910156, -11.129934310912972 ], [ -76.510978698730469, -11.12736988067627 ], [ -76.512786865234375, -11.12535572052002 ], [ -76.516387939453125, -11.122705459594727 ], [ -76.517997741699219, -11.121232986450138 ], [ -76.51885986328125, -11.11955738067627 ], [ -76.5191650390625, -11.117963790893555 ], [ -76.518936157226449, -11.116625785827637 ], [ -76.518341064453068, -11.115951538085881 ], [ -76.514129638671875, -11.11393928527832 ], [ -76.511573791503849, -11.112975120544377 ], [ -76.508659362792969, -11.112284660339299 ], [ -76.507759094238224, -11.111674308776855 ], [ -76.505172729492131, -11.11079216003418 ], [ -76.50372314453125, -11.110445022582951 ], [ -76.502639770507812, -11.110569000244141 ], [ -76.499916076660156, -11.110313415527287 ], [ -76.497245788574219, -11.109682083129826 ], [ -76.495948791503849, -11.108711242675668 ], [ -76.494956970214844, -11.107260704040414 ], [ -76.494483947753906, -11.103801727294922 ], [ -76.492515563964787, -11.101235389709473 ], [ -76.49200439453125, -11.100126266479492 ], [ -76.491973876953125, -11.098373413085938 ], [ -76.493156433105412, -11.095653533935547 ], [ -76.493247985839787, -11.09498405456543 ], [ -76.492454528808594, -11.091986656188908 ], [ -76.491149902343693, -11.08931827545166 ], [ -76.489059448242131, -11.087808609008789 ], [ -76.485206604003906, -11.086109161376839 ], [ -76.481559753417969, -11.085748672485295 ], [ -76.480438232421875, -11.084958076476994 ], [ -76.479240417480412, -11.083669662475529 ], [ -76.477462768554688, -11.082975387573185 ], [ -76.476661682128849, -11.083095550537109 ], [ -76.4737548828125, -11.084258079528752 ], [ -76.471702575683537, -11.084239959716797 ], [ -76.469825744628906, -11.084574699401855 ], [ -76.464286804199162, -11.084477424621525 ], [ -76.46114349365223, -11.084003448486271 ], [ -76.460281372070256, -11.083148002624512 ], [ -76.458694458007812, -11.080253601074219 ], [ -76.456207275390625, -11.078131675720215 ], [ -76.455284118652344, -11.078118324279728 ], [ -76.453163146972656, -11.079828262329045 ], [ -76.452453613281193, -11.079922676086369 ], [ -76.451858520507756, -11.079682350158691 ], [ -76.451263427734375, -11.078907012939453 ], [ -76.450538635253849, -11.077300071716252 ], [ -76.449386596679631, -11.076148986816406 ], [ -76.448394775390625, -11.073795318603459 ], [ -76.447242736816406, -11.072416305541935 ], [ -76.446319580078125, -11.07171630859375 ], [ -76.443283081054631, -11.073040008544865 ], [ -76.440933227539062, -11.074407577514592 ], [ -76.435401916503906, -11.079407691955566 ], [ -76.434814453124943, -11.079754829406738 ], [ -76.433601379394531, -11.079966545104924 ], [ -76.432060241699219, -11.079487800598145 ], [ -76.430114746093693, -11.077362060546875 ], [ -76.428985595703068, -11.076436042785645 ], [ -76.427742004394474, -11.075909614562931 ], [ -76.425849914550724, -11.07551097869873 ], [ -76.42462158203125, -11.075652122497559 ], [ -76.422134399414006, -11.07675838470459 ], [ -76.420928955078125, -11.076998710632267 ], [ -76.418388366699162, -11.076522827148438 ], [ -76.416481018066349, -11.076504707336312 ], [ -76.413322448730469, -11.07569503784174 ], [ -76.405548095703125, -11.075596809387207 ], [ -76.39984130859375, -11.076040267944279 ], [ -76.397933959960938, -11.075894355773869 ], [ -76.397163391113281, -11.075634002685547 ], [ -76.396530151367188, -11.075104713439941 ], [ -76.395057678222656, -11.072201728820744 ], [ -76.393791198730412, -11.070770263671875 ], [ -76.392288208007699, -11.070296287536621 ], [ -76.389434814453125, -11.070860862731934 ], [ -76.386100769042969, -11.072032928466797 ], [ -76.383293151855412, -11.073953628539925 ], [ -76.382812499999943, -11.074769973754883 ], [ -76.382720947265568, -11.075857162475472 ], [ -76.383674621581974, -11.078500747680607 ], [ -76.383499145507756, -11.079151153564339 ], [ -76.382835388183537, -11.079815864562931 ], [ -76.381782531738224, -11.080156326293945 ], [ -76.378936767578011, -11.080404281616154 ], [ -76.376724243164006, -11.081270217895451 ], [ -76.375015258789006, -11.082391738891602 ], [ -76.372077941894531, -11.083815574645996 ], [ -76.365768432617131, -11.085561752319279 ], [ -76.364524841308537, -11.086109161376839 ], [ -76.363311767578125, -11.086232185363656 ], [ -76.3592529296875, -11.087418556213379 ], [ -76.357337951660156, -11.088431358337402 ], [ -76.353477478027344, -11.091222763061523 ], [ -76.352394104003849, -11.092909812927246 ], [ -76.351409912109375, -11.0938463211059 ], [ -76.350906372070312, -11.094064712524357 ], [ -76.34967041015625, -11.093962669372559 ], [ -76.348663330078125, -11.093578338623047 ], [ -76.346473693847656, -11.09196758270258 ], [ -76.34527587890625, -11.090662956237679 ], [ -76.34283447265625, -11.086297988891602 ], [ -76.341339111328068, -11.084549903869629 ], [ -76.337745666503906, -11.082612991332951 ], [ -76.336685180664006, -11.082357406616211 ], [ -76.335456848144531, -11.082405090332031 ], [ -76.334266662597656, -11.083037376403695 ], [ -76.33184814453125, -11.08347225189209 ], [ -76.329925537109375, -11.084980964660588 ], [ -76.327514648437443, -11.085912704467773 ], [ -76.326309204101562, -11.086786270141602 ], [ -76.320243835449219, -11.089554786682072 ], [ -76.319015502929631, -11.090435028076172 ], [ -76.318016052246094, -11.091517448425236 ], [ -76.3182373046875, -11.092437744140625 ], [ -76.319450378417969, -11.094411849975586 ], [ -76.319679260253849, -11.096553802490234 ], [ -76.318687438964844, -11.103220939636174 ], [ -76.318412780761719, -11.107381820678711 ], [ -76.317825317382812, -11.110297203063908 ], [ -76.316291809082031, -11.113890647888184 ], [ -76.315559387207031, -11.11634635925293 ], [ -76.311515808105469, -11.123986244201603 ], [ -76.311065673828125, -11.126093864440918 ], [ -76.310600280761719, -11.126766204833984 ], [ -76.308944702148438, -11.131328582763672 ], [ -76.307846069335938, -11.132536888122559 ], [ -76.305824279785156, -11.132781028747502 ], [ -76.304817199706974, -11.13320255279541 ], [ -76.302513122558537, -11.133410453796387 ], [ -76.296379089355469, -11.13316631317133 ], [ -76.2940673828125, -11.13331222534174 ], [ -76.293113708496094, -11.133829116821232 ], [ -76.29058837890625, -11.136290550231934 ], [ -76.2884521484375, -11.137475967407227 ], [ -76.286499023437443, -11.138161659240723 ], [ -76.284912109375, -11.138376235961914 ], [ -76.281112670898438, -11.137886047363224 ], [ -76.280288696289062, -11.137964248657227 ], [ -76.276741027832031, -11.140229225158691 ], [ -76.27337646484375, -11.141339302062931 ], [ -76.263748168945312, -11.148628234863281 ], [ -76.260765075683537, -11.150314331054688 ], [ -76.258834838867131, -11.150911331176644 ], [ -76.254730224609375, -11.150991439819279 ], [ -76.252647399902287, -11.149978637695256 ], [ -76.251396179199162, -11.149145126342773 ], [ -76.24981689453125, -11.146465301513615 ], [ -76.248741149902287, -11.145238876342773 ], [ -76.246109008789062, -11.143830299377328 ], [ -76.245155334472656, -11.142866134643498 ], [ -76.244659423828011, -11.142661094665527 ], [ -76.242073059081974, -11.142772674560547 ], [ -76.241317749023381, -11.143110275268555 ], [ -76.236717224121037, -11.148254394531193 ], [ -76.23553466796875, -11.148928642272892 ], [ -76.234069824218693, -11.149243354797306 ], [ -76.229270935058537, -11.1540269851684 ], [ -76.227302551269418, -11.154956817626896 ], [ -76.226112365722656, -11.154763221740666 ], [ -76.222824096679688, -11.152126312255859 ], [ -76.219184875488224, -11.149988174438477 ], [ -76.218391418457031, -11.149804115295353 ], [ -76.215675354003906, -11.150050163268986 ], [ -76.214767456054688, -11.149781227111816 ], [ -76.215164184570256, -11.147754669189453 ], [ -76.217323303222656, -11.145710945129338 ], [ -76.217834472656193, -11.143621444702148 ], [ -76.218536376953125, -11.142621994018555 ], [ -76.218544006347656, -11.138727188110352 ], [ -76.219451904296818, -11.138161659240723 ], [ -76.220985412597599, -11.136591911315918 ], [ -76.223663330078068, -11.136199951171875 ], [ -76.224639892578125, -11.135075569152832 ], [ -76.225013732910043, -11.133366584777832 ], [ -76.224685668945312, -11.130291938781625 ], [ -76.225372314453068, -11.129440307617188 ], [ -76.225646972656193, -11.128271102905273 ], [ -76.225990295410156, -11.128045082092285 ], [ -76.227485656738224, -11.128166198730355 ], [ -76.227973937988281, -11.127946853637695 ], [ -76.228721618652287, -11.128387451171875 ], [ -76.229148864746094, -11.128256797790527 ], [ -76.229660034179631, -11.127404212951603 ], [ -76.230659484863281, -11.123758316040039 ], [ -76.231788635253906, -11.121918678283691 ], [ -76.235061645507812, -11.119509696960449 ], [ -76.236679077148438, -11.116708755493164 ], [ -76.238639831542912, -11.114836692810059 ], [ -76.240226745605469, -11.114467620849609 ], [ -76.242622375488224, -11.114937782287484 ], [ -76.244514465332031, -11.113383293151855 ], [ -76.245712280273438, -11.112105369567814 ], [ -76.246170043945256, -11.110828399658203 ], [ -76.2467041015625, -11.110057830810547 ], [ -76.250236511230469, -11.106089591979924 ], [ -76.251152038574219, -11.103995323181096 ], [ -76.251617431640568, -11.101012229919434 ], [ -76.251716613769418, -11.098183631896973 ], [ -76.250205993652344, -11.090097427368164 ], [ -76.250244140625, -11.089010238647404 ], [ -76.248039245605469, -11.085140228271428 ], [ -76.248153686523381, -11.082454681396428 ], [ -76.245811462402344, -11.079815864562931 ], [ -76.244544982910099, -11.077115058898926 ], [ -76.244102478027344, -11.074868202209416 ], [ -76.243934631347656, -11.072290420532227 ], [ -76.243995666503906, -11.071388244628849 ], [ -76.24468994140625, -11.070381164550781 ], [ -76.244606018066406, -11.06848239898676 ], [ -76.244300842285156, -11.067598342895508 ], [ -76.243400573730412, -11.066578865051213 ], [ -76.242744445800724, -11.063405990600586 ], [ -76.241775512695256, -11.060734748840275 ], [ -76.241889953613224, -11.056493759155217 ], [ -76.241722106933594, -11.05537223815918 ], [ -76.239845275878906, -11.053817749023438 ], [ -76.240028381347656, -11.053138732910156 ], [ -76.241455078125, -11.052092552185059 ], [ -76.241661071777344, -11.051305770874023 ], [ -76.241218566894474, -11.050990104675179 ], [ -76.240913391113224, -11.050214767456055 ], [ -76.239997863769531, -11.050064086913949 ], [ -76.239593505859318, -11.049713134765625 ], [ -76.239753723144531, -11.048112869262695 ], [ -76.240371704101562, -11.046120643615723 ], [ -76.241081237792969, -11.046007156371957 ], [ -76.243560791015625, -11.046397209167424 ], [ -76.244606018066406, -11.045613288879395 ], [ -76.244682312011719, -11.044393539428711 ], [ -76.243202209472599, -11.042140007019043 ], [ -76.243461608886719, -11.041387557983398 ], [ -76.247207641601506, -11.04015922546381 ], [ -76.249420166015568, -11.040016174316349 ], [ -76.250358581542912, -11.039642333984318 ], [ -76.251556396484375, -11.037022590637093 ], [ -76.252082824706974, -11.035067558288461 ], [ -76.251091003417969, -11.032286643981877 ], [ -76.251121520996037, -11.031619071960392 ], [ -76.252151489257812, -11.030954360961914 ], [ -76.253890991210881, -11.031138420104924 ], [ -76.256645202636662, -11.030285835266113 ], [ -76.258186340331974, -11.02875900268549 ], [ -76.259567260742188, -11.026764869689941 ], [ -76.259536743163949, -11.025662422180119 ], [ -76.259033203124943, -11.024859428405648 ], [ -76.254127502441406, -11.022834777832031 ], [ -76.253608703613224, -11.022061347961426 ], [ -76.253715515136662, -11.021245002746582 ], [ -76.255355834960938, -11.019638061523324 ], [ -76.255760192871094, -11.018788337707463 ], [ -76.2589111328125, -11.016007423400822 ], [ -76.259735107421875, -11.014167785644474 ], [ -76.259757995605469, -11.013354301452637 ], [ -76.259498596191406, -11.012731552124023 ], [ -76.258049011230469, -11.01198673248291 ], [ -76.257118225097599, -11.01189136505127 ], [ -76.256370544433537, -11.01109790802002 ], [ -76.256614685058594, -11.009632110595703 ], [ -76.259086608886719, -11.006755828857365 ], [ -76.259445190429688, -11.005886077880803 ], [ -76.259346008300668, -11.005217552184945 ], [ -76.258918762207031, -11.004695892333984 ], [ -76.256736755371037, -11.003682136535645 ], [ -76.256294250488168, -11.001742362976074 ], [ -76.257011413574219, -11.000381469726562 ], [ -76.258590698242188, -10.998738288879395 ], [ -76.259445190429688, -10.998897552490234 ], [ -76.259933471679688, -10.999376296996957 ], [ -76.261306762695312, -10.99958610534668 ], [ -76.262321472167969, -10.999282836914062 ], [ -76.26348876953125, -10.998510360717717 ], [ -76.264144897460938, -10.997846603393441 ], [ -76.264297485351506, -10.997150421142578 ], [ -76.263221740722599, -10.995609283447152 ], [ -76.263198852539062, -10.994632720947209 ], [ -76.263633728027287, -10.994179725646916 ], [ -76.266082763671818, -10.99282169342041 ], [ -76.266792297363281, -10.992039680480957 ], [ -76.266746520996094, -10.990719795227051 ], [ -76.265838623046875, -10.988435745239258 ], [ -76.265884399414062, -10.987759590148926 ], [ -76.267074584960938, -10.984598159790039 ], [ -76.267196655273438, -10.983792304992619 ], [ -76.2662353515625, -10.980839729309025 ], [ -76.266227722167969, -10.979608535766545 ], [ -76.266975402831918, -10.979073524475098 ], [ -76.269294738769531, -10.979138374328613 ], [ -76.269783020019531, -10.978853225707951 ], [ -76.269813537597599, -10.977950096130371 ], [ -76.268798828125, -10.976516723632756 ], [ -76.268760681152287, -10.975721359252816 ], [ -76.269378662109375, -10.975175857543945 ], [ -76.270759582519474, -10.974570274352971 ], [ -76.272003173828068, -10.973329544067326 ], [ -76.272865295410099, -10.97196102142334 ], [ -76.273300170898438, -10.969516754150391 ], [ -76.271026611328125, -10.969471931457463 ], [ -76.270706176757812, -10.969086647033635 ], [ -76.270683288574162, -10.968289375305176 ], [ -76.271148681640568, -10.967807769775391 ], [ -76.271072387695256, -10.967103958129826 ], [ -76.269027709960938, -10.966405868530273 ], [ -76.268203735351506, -10.965667724609375 ], [ -76.267799377441349, -10.964992523193246 ], [ -76.268104553222599, -10.964103698730412 ], [ -76.269256591796818, -10.963730812072754 ], [ -76.270133972167969, -10.963086128234806 ], [ -76.2705078125, -10.962348937988281 ], [ -76.270492553710881, -10.961382865905762 ], [ -76.268676757812443, -10.960513114929199 ], [ -76.266258239746094, -10.960116386413574 ], [ -76.265609741210881, -10.959240913391113 ], [ -76.265663146972656, -10.958290100097599 ], [ -76.2674560546875, -10.956259727477971 ], [ -76.269531249999943, -10.954549789428597 ], [ -76.270355224609375, -10.954672813415414 ], [ -76.27215576171875, -10.955904006958008 ], [ -76.272575378417912, -10.955912590026742 ], [ -76.273056030273381, -10.955584526062012 ], [ -76.273170471191349, -10.955113410949707 ], [ -76.272918701171875, -10.954201698303223 ], [ -76.271614074706974, -10.951991081237736 ], [ -76.271804809570256, -10.950771331787053 ], [ -76.272560119628906, -10.949990272521973 ], [ -76.273170471191349, -10.949688911437988 ], [ -76.273994445800781, -10.949639320373478 ], [ -76.276123046874943, -10.950546264648438 ], [ -76.277145385742131, -10.949887275695801 ], [ -76.277587890625, -10.9460191726684 ], [ -76.278373718261719, -10.943155288696289 ], [ -76.278076171875, -10.939387321472111 ], [ -76.277671813964844, -10.935934066772404 ], [ -76.276268005371094, -10.933156013488713 ], [ -76.276092529296875, -10.932352066040039 ], [ -76.278648376464844, -10.926998138427734 ], [ -76.2789306640625, -10.92364311218256 ], [ -76.278549194335938, -10.921644210815373 ], [ -76.276901245117188, -10.919672966003304 ], [ -76.276802062988281, -10.918469429016056 ], [ -76.275215148925781, -10.91871261596674 ], [ -76.272430419921875, -10.920668601989746 ], [ -76.271949768066406, -10.920885086059457 ], [ -76.270713806152344, -10.920955657958984 ], [ -76.269599914550781, -10.921919822692871 ], [ -76.268241882324219, -10.921029090881291 ], [ -76.266967773437443, -10.920527458190804 ], [ -76.264930725097656, -10.920363426208496 ], [ -76.263336181640568, -10.920722961425724 ], [ -76.261505126953068, -10.919816017150765 ], [ -76.260818481445312, -10.919748306274414 ], [ -76.259376525878906, -10.92049503326416 ], [ -76.256439208984375, -10.92290210723877 ], [ -76.255516052246037, -10.922101974487248 ], [ -76.254898071289062, -10.921952247619629 ], [ -76.249588012695256, -10.924043655395508 ], [ -76.249229431152287, -10.923583984374943 ], [ -76.249137878417912, -10.923023223876896 ], [ -76.246734619140568, -10.923177719116097 ], [ -76.246063232421818, -10.922286987304688 ], [ -76.245941162109375, -10.921480178833008 ], [ -76.245429992675781, -10.921008110046273 ], [ -76.243141174316406, -10.920960426330453 ], [ -76.240722656249943, -10.919692993163949 ], [ -76.237670898437443, -10.918991088867131 ], [ -76.236953735351562, -10.918182373046875 ], [ -76.235588073730412, -10.918195724487248 ], [ -76.234870910644531, -10.917521476745605 ], [ -76.233024597167855, -10.918333053588867 ], [ -76.231941223144474, -10.918464660644531 ], [ -76.231170654296875, -10.919020652770996 ], [ -76.230758666992188, -10.918966293334904 ], [ -76.22979736328125, -10.918209075927734 ], [ -76.229782104492074, -10.915255546569767 ], [ -76.228141784667912, -10.915821075439453 ], [ -76.22705078125, -10.915761947631836 ], [ -76.223937988281193, -10.914463043212891 ], [ -76.222007751464844, -10.914986610412598 ], [ -76.220901489257756, -10.915995597839355 ], [ -76.219711303710938, -10.916245460510254 ], [ -76.218788146972599, -10.917044639587402 ], [ -76.217994689941406, -10.917208671569824 ], [ -76.216728210449219, -10.918010711669922 ], [ -76.215629577636719, -10.917998313903809 ], [ -76.214393615722599, -10.91743183135975 ], [ -76.213577270507812, -10.917343139648438 ], [ -76.210517883300668, -10.918080329894963 ], [ -76.209770202636719, -10.918642044067383 ], [ -76.209030151367188, -10.919947624206486 ], [ -76.208763122558594, -10.922372817993164 ], [ -76.208900451660156, -10.925176620483285 ], [ -76.207977294921875, -10.926824569702148 ], [ -76.207893371582031, -10.927783966064396 ], [ -76.208656311035156, -10.928882598876953 ], [ -76.212409973144474, -10.930839538574162 ], [ -76.212684631347599, -10.931434631347656 ], [ -76.212356567382812, -10.932458877563477 ], [ -76.211692810058594, -10.933482170104924 ], [ -76.208175659179688, -10.936244010925236 ], [ -76.208259582519531, -10.936786651611328 ], [ -76.209861755371094, -10.938808441162109 ], [ -76.209922790527287, -10.939476013183594 ], [ -76.209655761718693, -10.940282821655273 ], [ -76.20709228515625, -10.943241119384709 ], [ -76.203445434570256, -10.942964553833008 ], [ -76.201774597167969, -10.943514823913461 ], [ -76.199600219726562, -10.944687843322697 ], [ -76.198654174804688, -10.946635246276799 ], [ -76.198341369628906, -10.950797080993652 ], [ -76.197738647460824, -10.951143264770508 ], [ -76.195549011230469, -10.951225280761662 ], [ -76.19451904296875, -10.952150344848576 ], [ -76.194526672363281, -10.956281661987305 ], [ -76.19366455078125, -10.9564208984375 ], [ -76.192497253417969, -10.956066131591797 ], [ -76.191551208496094, -10.95624828338623 ], [ -76.191665649414062, -10.958762168884221 ], [ -76.191490173339844, -10.959142684936523 ], [ -76.190864562988224, -10.959416389465332 ], [ -76.189735412597656, -10.958967208862305 ], [ -76.188934326171818, -10.959134101867676 ], [ -76.188461303710881, -10.95995903015131 ], [ -76.187522888183537, -10.960151672363281 ], [ -76.185630798339844, -10.95884895324707 ], [ -76.183982849121037, -10.95887374877924 ], [ -76.182929992675724, -10.958037376403809 ], [ -76.181694030761662, -10.958060264587402 ], [ -76.179977416992131, -10.956727027893066 ], [ -76.179267883300781, -10.955563545226994 ], [ -76.178359985351506, -10.955368041992188 ], [ -76.177337646484375, -10.954287528991586 ], [ -76.176666259765625, -10.954137802123967 ], [ -76.175300598144474, -10.954268455505314 ], [ -76.174690246582031, -10.953519821166992 ], [ -76.172866821289062, -10.953780174255314 ], [ -76.172447204589787, -10.953057289123535 ], [ -76.172431945800724, -10.952109336853027 ], [ -76.172073364257756, -10.951712608337289 ], [ -76.171524047851562, -10.95173263549799 ], [ -76.170425415039062, -10.952965736389103 ], [ -76.169342041015625, -10.952257156372013 ], [ -76.168388366699219, -10.953039169311523 ], [ -76.167999267578125, -10.952407836913949 ], [ -76.168205261230469, -10.951473236083984 ], [ -76.169609069824219, -10.950213432312012 ], [ -76.169784545898381, -10.949315071105957 ], [ -76.16937255859375, -10.947872161865234 ], [ -76.167839050292969, -10.946990013122559 ], [ -76.167160034179688, -10.947029113769474 ], [ -76.164680480957031, -10.948160171508675 ], [ -76.161460876464844, -10.948734283447266 ], [ -76.160079956054688, -10.949308395385629 ], [ -76.158447265624886, -10.949187278747559 ], [ -76.157211303710938, -10.948631286621094 ], [ -76.155937194824162, -10.94840145111084 ], [ -76.151458740234318, -10.948862075805664 ], [ -76.15045166015625, -10.94847583770752 ], [ -76.149429321289062, -10.947747230529728 ], [ -76.1475830078125, -10.945946693420296 ], [ -76.14483642578125, -10.945404052734375 ], [ -76.144195556640625, -10.945743560791016 ], [ -76.142593383789006, -10.948119163513184 ], [ -76.141098022460938, -10.94914436340332 ], [ -76.139633178710881, -10.949801445007267 ], [ -76.138763427734375, -10.949378967285156 ], [ -76.137321472167969, -10.946643829345703 ], [ -76.136306762695256, -10.945935249328556 ], [ -76.135360717773381, -10.945802688598633 ], [ -76.133575439453125, -10.946233749389592 ], [ -76.132606506347656, -10.946887969970703 ], [ -76.132553100585938, -10.948254585266113 ], [ -76.132148742675781, -10.94881629943842 ], [ -76.130004882812443, -10.948870658874512 ], [ -76.127662658691406, -10.950922012329045 ], [ -76.127243041992131, -10.950987815856934 ], [ -76.126060485839844, -10.950076103210392 ], [ -76.125511169433537, -10.949990272521973 ], [ -76.123954772949219, -10.95106315612793 ], [ -76.122543334960938, -10.951466560363713 ], [ -76.122016906738168, -10.952253341674748 ], [ -76.121856689453125, -10.953329086303711 ], [ -76.120559692382756, -10.954511642456055 ], [ -76.12042236328125, -10.955307006835938 ], [ -76.120826721191406, -10.956443786621094 ], [ -76.121925354003906, -10.958003044128361 ], [ -76.124374389648381, -10.959921836853027 ], [ -76.124404907226562, -10.960611343383789 ], [ -76.123420715331974, -10.961110115051156 ], [ -76.121978759765625, -10.960256576538029 ], [ -76.121040344238224, -10.959093093872013 ], [ -76.118515014648438, -10.952980041503793 ], [ -76.117454528808594, -10.951420783996582 ], [ -76.114166259765568, -10.948357582092285 ], [ -76.109603881835881, -10.945905685424805 ], [ -76.109512329101506, -10.941620826721135 ], [ -76.106948852538949, -10.939603805541992 ], [ -76.105606079101506, -10.938234329223576 ], [ -76.105133056640568, -10.937142372131291 ], [ -76.104415893554688, -10.933972358703613 ], [ -76.10345458984375, -10.932491302490234 ], [ -76.102668762207031, -10.931742668151855 ], [ -76.099708557128906, -10.930578231811467 ], [ -76.098686218261719, -10.929715156555119 ], [ -76.098335266113224, -10.927824974060059 ], [ -76.098503112792969, -10.92525672912592 ], [ -76.098854064941406, -10.924531936645508 ], [ -76.098777770996094, -10.923854827880803 ], [ -76.097953796386662, -10.922600746154785 ], [ -76.095985412597656, -10.92222785949707 ], [ -76.094734191894474, -10.920181274414062 ], [ -76.094200134277344, -10.917134284973088 ], [ -76.093246459960938, -10.916387557983342 ], [ -76.093124389648438, -10.914770126342717 ], [ -76.091743469238281, -10.912141799926758 ], [ -76.091728210449219, -10.910931587219181 ], [ -76.092300415039062, -10.910168647766056 ], [ -76.0924072265625, -10.909363746643066 ], [ -76.091461181640625, -10.906474113464299 ], [ -76.091041564941406, -10.905941009521428 ], [ -76.089118957519531, -10.905261993408146 ], [ -76.088211059570312, -10.90443229675293 ], [ -76.087333679199219, -10.902764320373535 ], [ -76.086555480957031, -10.90003585815424 ], [ -76.085601806640625, -10.899867057800293 ], [ -76.084831237792969, -10.899271965026855 ], [ -76.084564208984375, -10.898832321166935 ], [ -76.084587097167969, -10.897870063781681 ], [ -76.084236145019474, -10.897448539733773 ], [ -76.083061218261719, -10.897182464599553 ], [ -76.082260131835938, -10.89659595489502 ], [ -76.08209228515625, -10.895992279052734 ], [ -76.082244873046818, -10.89478683471674 ], [ -76.082046508789006, -10.894209861755257 ], [ -76.080551147460938, -10.893340110778752 ], [ -76.077186584472599, -10.892753601074219 ], [ -76.073181152343693, -10.891031265258732 ], [ -76.07110595703125, -10.88928318023676 ], [ -76.068756103515625, -10.886297225952148 ], [ -76.067703247070312, -10.8854722976684 ], [ -76.064720153808594, -10.885265350341683 ], [ -76.063247680664006, -10.884528160095215 ], [ -76.0618896484375, -10.883393287658691 ], [ -76.059722900390568, -10.883147239684945 ], [ -76.05755615234375, -10.88232231140131 ], [ -76.05645751953125, -10.882345199584904 ], [ -76.055984497070312, -10.88258171081543 ], [ -76.054214477539062, -10.882460594177189 ], [ -76.0526123046875, -10.882801055908203 ], [ -76.051521301269474, -10.882714271545296 ], [ -76.048942565917912, -10.881818771362305 ], [ -76.044883728027344, -10.879318237304631 ], [ -76.043891906738224, -10.878208160400277 ], [ -76.043685913085881, -10.876873016357308 ], [ -76.042892456054688, -10.874869346618652 ], [ -76.0418701171875, -10.87342357635498 ], [ -76.041305541992131, -10.872050285339299 ], [ -76.035362243652344, -10.864321708679142 ], [ -76.031051635742188, -10.859989166259709 ], [ -76.023468017578068, -10.854026794433594 ], [ -76.021865844726506, -10.852005004882812 ], [ -76.01934814453125, -10.847989082336369 ], [ -76.016990661621037, -10.845547676086426 ], [ -76.013389587402287, -10.840975761413517 ], [ -76.011528015136719, -10.839822769164925 ], [ -76.009193420410099, -10.839071273803711 ], [ -76.00836181640625, -10.838377952575684 ], [ -76.007919311523438, -10.83740329742426 ], [ -76.007766723632699, -10.83067512512207 ], [ -76.007102966308594, -10.829058647155705 ], [ -76.006340026855469, -10.828274726867676 ], [ -76.004623413085938, -10.827404022216797 ], [ -76.003570556640511, -10.827299118041935 ], [ -76.002067565917969, -10.827539443969727 ], [ -76.002067565917969, -10.827221870422363 ], [ -76.001007080078125, -10.825996398925781 ], [ -75.998283386230469, -10.824420928954964 ], [ -75.997238159179688, -10.823123931884766 ], [ -75.9964599609375, -10.82154369354248 ], [ -75.996017456054631, -10.82122802734375 ], [ -75.995330810546875, -10.821221351623535 ], [ -75.994209289550724, -10.82073783874506 ], [ -75.992568969726506, -10.820706367492619 ], [ -75.99117279052723, -10.821234703063908 ], [ -75.989471435546875, -10.822360038757267 ], [ -75.983352661132699, -10.828323364257756 ], [ -75.980209350585938, -10.830457687377873 ], [ -75.978256225585938, -10.832336425781136 ], [ -75.975997924804631, -10.835380554199162 ], [ -75.973228454589787, -10.840481758117676 ], [ -75.971054077148438, -10.842713356018066 ], [ -75.967720031738281, -10.84426116943348 ], [ -75.963401794433537, -10.844825744628849 ], [ -75.961807250976562, -10.845235824584904 ], [ -75.960647583007756, -10.845908164978027 ], [ -75.958732604980412, -10.847587585449162 ], [ -75.958023071289062, -10.849625587463265 ], [ -75.958274841308594, -10.854046821594238 ], [ -75.957275390625, -10.855830192565918 ], [ -75.955879211425724, -10.857662200927734 ], [ -75.951484680175724, -10.862078666687012 ], [ -75.947753906249943, -10.865236282348633 ], [ -75.944549560546875, -10.867019653320256 ], [ -75.939491271972656, -10.869044303894043 ], [ -75.938011169433594, -10.870240211486816 ], [ -75.937728881835938, -10.871689796447754 ], [ -75.938423156738224, -10.876226425170842 ], [ -75.938346862792969, -10.881887435913086 ], [ -75.937995910644531, -10.883063316345215 ], [ -75.937385559081918, -10.884116172790527 ], [ -75.9354248046875, -10.885777473449707 ], [ -75.933525085449219, -10.884026527404728 ], [ -75.931152343749943, -10.88295841217041 ], [ -75.92913818359375, -10.882809638976937 ], [ -75.922714233398438, -10.88302040100092 ], [ -75.9215087890625, -10.882743835449219 ], [ -75.920272827148438, -10.882168769836426 ], [ -75.918968200683537, -10.880962371826115 ], [ -75.917938232421875, -10.876353263854924 ], [ -75.917304992675781, -10.875179290771484 ], [ -75.916305541992131, -10.874041557312012 ], [ -75.914421081542969, -10.872727394104004 ], [ -75.910575866699162, -10.871336936950684 ], [ -75.907081604003906, -10.869492530822754 ], [ -75.904800415039062, -10.869247436523324 ], [ -75.897552490234375, -10.869610786437988 ], [ -75.894706726074219, -10.869233131408635 ], [ -75.893577575683537, -10.869976043701115 ], [ -75.892776489257812, -10.870121955871525 ], [ -75.891746520996094, -10.869782447814941 ], [ -75.889198303222599, -10.868396759033203 ], [ -75.887924194335938, -10.868111610412541 ], [ -75.885780334472599, -10.86868762969965 ], [ -75.882698059082031, -10.87014198303217 ], [ -75.881355285644531, -10.870282173156681 ], [ -75.880210876464844, -10.869247436523324 ], [ -75.8787841796875, -10.868445396423283 ], [ -75.875267028808537, -10.868059158325195 ], [ -75.874603271484318, -10.868229866027832 ], [ -75.873214721679688, -10.869075775146484 ], [ -75.867012023925781, -10.875892639160099 ], [ -75.865867614746094, -10.876638412475472 ], [ -75.865028381347656, -10.876811027526855 ], [ -75.864387512207031, -10.876417160034123 ], [ -75.863647460937443, -10.87523365020752 ], [ -75.863105773925781, -10.872594833373967 ], [ -75.861633300781193, -10.869233131408635 ], [ -75.860862731933594, -10.867963790893555 ], [ -75.860198974609318, -10.867647171020451 ], [ -75.855148315429631, -10.871289253234863 ], [ -75.851074218749943, -10.874890327453556 ], [ -75.850700378417969, -10.875740051269531 ], [ -75.850471496581974, -10.877260208129883 ], [ -75.850456237792969, -10.87995433807373 ], [ -75.849678039550781, -10.880907058715763 ], [ -75.848342895507812, -10.88158130645752 ], [ -75.847015380859375, -10.881863594055176 ], [ -75.841209411621094, -10.88482666015625 ], [ -75.837982177734318, -10.885431289672852 ], [ -75.836601257324219, -10.885023117065373 ], [ -75.835220336914006, -10.883939743041992 ], [ -75.833671569824219, -10.881230354309082 ], [ -75.831153869628906, -10.878388404846135 ], [ -75.826217651367188, -10.873565673828125 ], [ -75.82366943359375, -10.872965812683105 ], [ -75.82135009765625, -10.874067306518555 ], [ -75.820121765136719, -10.874106407165527 ], [ -75.819122314453068, -10.873663902282715 ], [ -75.816329956054631, -10.870712280273438 ], [ -75.813407897949105, -10.866327285766545 ], [ -75.813072204589844, -10.863452911376953 ], [ -75.813262939453125, -10.863062858581543 ], [ -75.814132690429688, -10.862915039062443 ], [ -75.816658020019531, -10.861579895019474 ], [ -75.818283081054688, -10.860182762145996 ], [ -75.819000244140568, -10.858854293823242 ], [ -75.819076538085938, -10.857377052307129 ], [ -75.818489074707031, -10.854284286498967 ], [ -75.816413879394531, -10.850466728210449 ], [ -75.814979553222656, -10.847116470336914 ], [ -75.81427001953125, -10.846122741699219 ], [ -75.812339782714787, -10.844220161437988 ], [ -75.808189392089844, -10.841156005859375 ], [ -75.804740905761719, -10.837321281433105 ], [ -75.799545288085881, -10.834089279174748 ], [ -75.797393798828125, -10.832466125488281 ], [ -75.792274475097656, -10.827823638915959 ], [ -75.789314270019531, -10.825752258300724 ], [ -75.787544250488224, -10.825021743774357 ], [ -75.782409667968693, -10.82567024230957 ], [ -75.779815673828068, -10.825647354125977 ], [ -75.778358459472656, -10.825977325439453 ], [ -75.773262023925781, -10.825955390930119 ], [ -75.771331787109318, -10.826367378234863 ], [ -75.768226623535156, -10.828381538391113 ], [ -75.765556335449219, -10.828947067260685 ], [ -75.762840270996037, -10.830194473266488 ], [ -75.760391235351562, -10.830180168151799 ], [ -75.755340576171875, -10.827816963195801 ], [ -75.752029418945312, -10.825436592102051 ], [ -75.746589660644531, -10.823659896850586 ], [ -75.743301391601506, -10.821740150451603 ], [ -75.741683959960881, -10.820269584655705 ], [ -75.741065979003906, -10.81939506530756 ], [ -75.74017333984375, -10.81727123260498 ], [ -75.73635101318348, -10.813430786132756 ], [ -75.734062194824105, -10.810116767883244 ], [ -75.732917785644418, -10.809104919433594 ], [ -75.731986999511719, -10.80879020690918 ], [ -75.727775573730469, -10.809098243713379 ], [ -75.723823547363224, -10.808809280395451 ], [ -75.71978759765625, -10.809527397155762 ], [ -75.7156982421875, -10.810990333557072 ], [ -75.710220336913949, -10.814620018005371 ], [ -75.70735931396473, -10.815749168395996 ], [ -75.704673767089787, -10.816280364990178 ], [ -75.700706481933594, -10.816697120666447 ], [ -75.694969177246094, -10.816598892211914 ], [ -75.693374633789062, -10.816920280456543 ], [ -75.691612243652287, -10.818978309631291 ], [ -75.690834045410099, -10.822387695312443 ], [ -75.689224243164006, -10.825510025024357 ], [ -75.688789367675781, -10.82680511474598 ], [ -75.689025878906193, -10.827980995178223 ], [ -75.689552307128906, -10.829109191894531 ], [ -75.693260192871094, -10.832846641540527 ], [ -75.693389892578125, -10.834073066711369 ], [ -75.692939758300724, -10.835019111633244 ], [ -75.692169189453068, -10.83574104309082 ], [ -75.690238952636719, -10.836787223815861 ], [ -75.688385009765625, -10.83724308013916 ], [ -75.686073303222599, -10.837448120117188 ], [ -75.678909301757756, -10.839660644531193 ], [ -75.678001403808594, -10.839445114135629 ], [ -75.676818847656193, -10.838515281677132 ], [ -75.675056457519531, -10.838230133056584 ], [ -75.67401123046875, -10.837616920471191 ], [ -75.672798156738281, -10.836326599121037 ], [ -75.672088623046875, -10.835162162780705 ], [ -75.671752929687443, -10.834430694580021 ], [ -75.671737670898438, -10.833317756652718 ], [ -75.669845581054631, -10.831450462341252 ], [ -75.665267944335881, -10.827968597412109 ], [ -75.66192626953125, -10.826828002929688 ], [ -75.654808044433537, -10.825496673583984 ], [ -75.649528503417969, -10.824983596801758 ], [ -75.644752502441406, -10.82513427734375 ], [ -75.63739013671875, -10.82656288146967 ], [ -75.632759094238224, -10.826754570007267 ], [ -75.622428894042969, -10.824703216552678 ], [ -75.614936828613224, -10.823689460754395 ], [ -75.612205505371094, -10.823702812194767 ], [ -75.608406066894531, -10.824124336242619 ], [ -75.607437133789062, -10.823991775512582 ], [ -75.606460571288949, -10.823306083679199 ], [ -75.605384826660099, -10.822050094604435 ], [ -75.603790283203011, -10.81877326965332 ], [ -75.600669860839844, -10.814517974853516 ], [ -75.598243713378849, -10.813284873962402 ], [ -75.593406677246094, -10.811764717101937 ], [ -75.59210205078125, -10.811117172241097 ], [ -75.589988708496094, -10.808626174926701 ], [ -75.589439392089844, -10.807386398315373 ], [ -75.589187622070256, -10.806039810180607 ], [ -75.588706970214787, -10.805415153503361 ], [ -75.587188720703068, -10.804233551025391 ], [ -75.584571838378906, -10.803083419799748 ], [ -75.583404541015625, -10.8021240234375 ], [ -75.582389831542969, -10.800400733947697 ], [ -75.581611633300781, -10.796838760375977 ], [ -75.579391479492188, -10.793606758117619 ], [ -75.578781127929631, -10.789600372314396 ], [ -75.57769775390625, -10.786102294921875 ], [ -75.577102661132812, -10.784458160400334 ], [ -75.575355529785099, -10.781105995178223 ], [ -75.575187683105469, -10.778972625732422 ], [ -75.575309753417969, -10.77706336975092 ], [ -75.575782775878906, -10.774964332580566 ], [ -75.575637817382756, -10.772541046142464 ], [ -75.5753173828125, -10.77137374877924 ], [ -75.573814392089787, -10.769054412841797 ], [ -75.573455810546818, -10.767815589904785 ], [ -75.573509216308594, -10.764858245849609 ], [ -75.574272155761719, -10.760171890258732 ], [ -75.574203491210881, -10.753968238830453 ], [ -75.5738525390625, -10.748858451843205 ], [ -75.572708129882812, -10.744547843933049 ], [ -75.571617126464787, -10.741492271423283 ], [ -75.5709228515625, -10.740191459655648 ], [ -75.569122314453125, -10.737770080566406 ], [ -75.568557739257812, -10.736577987670898 ], [ -75.568244934082031, -10.733071327209416 ], [ -75.567665100097656, -10.731136322021428 ], [ -75.567703247070312, -10.727219581604004 ], [ -75.567390441894531, -10.727094650268498 ], [ -75.565994262695256, -10.728163719177189 ], [ -75.56396484375, -10.728955268859806 ], [ -75.5625, -10.730194091796818 ], [ -75.561996459960881, -10.731417655944711 ], [ -75.560989379882812, -10.735361099243107 ], [ -75.559104919433594, -10.737996101379395 ], [ -75.559310913085938, -10.740365982055664 ], [ -75.559188842773438, -10.7410888671875 ], [ -75.557212829589844, -10.742305755615178 ], [ -75.556785583496094, -10.74359130859375 ], [ -75.556243896484375, -10.744196891784554 ], [ -75.55477142333973, -10.744453430175781 ], [ -75.55279541015625, -10.745334625244084 ], [ -75.55059814453125, -10.745698928832894 ], [ -75.549140930175724, -10.745631217956543 ], [ -75.547500610351506, -10.744627952575684 ], [ -75.545600891113224, -10.742317199707031 ], [ -75.544586181640625, -10.741451263427621 ], [ -75.542640686035099, -10.740785598754883 ], [ -75.541275024414062, -10.74077033996582 ], [ -75.540489196777344, -10.741023063659611 ], [ -75.539108276367131, -10.742112159728947 ], [ -75.5380859375, -10.742545127868596 ], [ -75.535835266113281, -10.74208927154541 ], [ -75.532424926757756, -10.743760108947697 ], [ -75.531028747558594, -10.743499755859375 ], [ -75.530731201171818, -10.743609428405705 ], [ -75.530113220214844, -10.745157241821289 ], [ -75.530029296875, -10.747174263000431 ], [ -75.529487609863224, -10.748258590698185 ], [ -75.528167724609375, -10.74923038482666 ], [ -75.526115417480469, -10.749936103820744 ], [ -75.52264404296875, -10.753389358520451 ], [ -75.521095275878849, -10.754450798034668 ], [ -75.519744873046818, -10.754696846008244 ], [ -75.517578124999886, -10.754247665405217 ], [ -75.516349792480469, -10.754260063171387 ], [ -75.515678405761719, -10.754658699035645 ], [ -75.51416015625, -10.756126403808537 ], [ -75.513343811035156, -10.756424903869572 ], [ -75.511871337890625, -10.755929946899414 ], [ -75.509033203125, -10.754091262817269 ], [ -75.506317138671818, -10.755632400512695 ], [ -75.5025634765625, -10.75831413269043 ], [ -75.501792907714844, -10.75812816619873 ], [ -75.501480102539062, -10.75780200958252 ], [ -75.500984191894418, -10.756944656372013 ], [ -75.500663757324162, -10.755388259887638 ], [ -75.500152587890625, -10.754927635192871 ], [ -75.499000549316406, -10.755645751953068 ], [ -75.498298645019474, -10.757561683654728 ], [ -75.496826171875, -10.758115768432617 ], [ -75.495498657226562, -10.756826400756779 ], [ -75.494781494140568, -10.755378723144418 ], [ -75.493629455566349, -10.754838943481388 ], [ -75.491363525390625, -10.75611686706543 ], [ -75.489242553710881, -10.756654739379826 ], [ -75.488922119140625, -10.759991645812988 ], [ -75.486579895019474, -10.761849403381291 ], [ -75.485771179199219, -10.763941764831543 ], [ -75.485107421875, -10.764429092407227 ], [ -75.484008789062386, -10.764520645141602 ], [ -75.483543395996094, -10.76518440246582 ], [ -75.482475280761662, -10.76508617401123 ], [ -75.482437133789062, -10.766106605529785 ], [ -75.481689453124943, -10.769561767578068 ], [ -75.481994628906193, -10.771931648254395 ], [ -75.481910705566293, -10.774471282958984 ], [ -75.482231140136719, -10.776201248168888 ], [ -75.482147216796875, -10.777104377746582 ], [ -75.481712341308537, -10.778026580810547 ], [ -75.480842590331974, -10.779123306274414 ], [ -75.479072570800781, -10.780237197875977 ], [ -75.477066040039062, -10.780656814575195 ], [ -75.475311279296818, -10.780469894409123 ], [ -75.473983764648381, -10.779487609863224 ], [ -75.472785949707031, -10.77923679351801 ], [ -75.472167968749943, -10.778864860534668 ], [ -75.470298767089844, -10.77684211730957 ], [ -75.469406127929631, -10.775325775146484 ], [ -75.46917724609375, -10.769906044006348 ], [ -75.4683837890625, -10.767936706542912 ], [ -75.468238830566349, -10.766852378845215 ], [ -75.467956542968693, -10.766483306884766 ], [ -75.466430664062443, -10.768484115600529 ], [ -75.462745666503906, -10.772105216979924 ], [ -75.460929870605355, -10.774504661560002 ], [ -75.460380554199219, -10.777769088745117 ], [ -75.459632873535156, -10.779045104980469 ], [ -75.459289550781193, -10.78018665313715 ], [ -75.459014892578068, -10.783559799194222 ], [ -75.459091186523381, -10.785396575927678 ], [ -75.459640502929688, -10.786263465881291 ], [ -75.4609375, -10.786922454833928 ], [ -75.461883544921761, -10.788187026977539 ], [ -75.463935852050781, -10.790192604064885 ], [ -75.465347290039062, -10.792350769042912 ], [ -75.469047546386719, -10.795717239379883 ], [ -75.470069885253849, -10.79777812957758 ], [ -75.473548889160156, -10.799049377441349 ], [ -75.475128173828068, -10.800330162048283 ], [ -75.476310729980469, -10.801504135131836 ], [ -75.477859497070312, -10.803580284118596 ], [ -75.479759216308594, -10.80473613739008 ], [ -75.481155395507812, -10.806092262268066 ], [ -75.485511779785099, -10.811581611633301 ], [ -75.486351013183594, -10.813624382018929 ], [ -75.487159729003906, -10.81474590301508 ], [ -75.489044189453068, -10.818350791931152 ], [ -75.490745544433537, -10.823899269104004 ], [ -75.491142272949162, -10.827192306518555 ], [ -75.491348266601506, -10.831613540649357 ], [ -75.491043090820256, -10.833233833312988 ], [ -75.48956298828125, -10.837298393249512 ], [ -75.489295959472656, -10.840327262878304 ], [ -75.490745544433537, -10.844981193542424 ], [ -75.493316650390625, -10.847772598266602 ], [ -75.493637084960881, -10.84901046752924 ], [ -75.493064880371037, -10.850540161132756 ], [ -75.489967346191406, -10.853302001953068 ], [ -75.4892578125, -10.855095863342285 ], [ -75.48883056640625, -10.856985092163029 ], [ -75.488769531249943, -10.860294342041016 ], [ -75.488319396972656, -10.861598014831543 ], [ -75.488349914550781, -10.863625526428166 ], [ -75.487991333007756, -10.86524486541748 ], [ -75.488281249999943, -10.866192817687931 ], [ -75.488952636718693, -10.867078781127873 ], [ -75.489028930664006, -10.868090629577637 ], [ -75.487869262695312, -10.871786117553711 ], [ -75.487327575683537, -10.875979423522892 ], [ -75.486732482910156, -10.878005981445256 ], [ -75.487518310546818, -10.880178451538086 ], [ -75.489013671875, -10.882399559020996 ], [ -75.489250183105412, -10.883954048156625 ], [ -75.488815307617188, -10.885429382324162 ], [ -75.487358093261719, -10.8885240554809 ], [ -75.486297607421761, -10.891872406005859 ], [ -75.485755920410156, -10.892594337463379 ], [ -75.483703613281193, -10.894201278686523 ], [ -75.481117248535099, -10.896836280822754 ], [ -75.478843688964787, -10.897868156433105 ], [ -75.475990295410099, -10.90034294128418 ], [ -75.472579956054688, -10.901984214782715 ], [ -75.470474243164062, -10.903643608093205 ], [ -75.468673706054688, -10.904623985290527 ], [ -75.467636108398438, -10.904943466186467 ], [ -75.466331481933537, -10.904816627502385 ], [ -75.465850830078125, -10.904076576232796 ], [ -75.465576171874943, -10.901508331298828 ], [ -75.464973449707031, -10.900703430175724 ], [ -75.464057922363224, -10.900778770446721 ], [ -75.463111877441349, -10.901159286499023 ], [ -75.459983825683594, -10.901145935058594 ], [ -75.458145141601506, -10.900913238525391 ], [ -75.454826354980355, -10.900031089782715 ], [ -75.453643798828125, -10.900088310241642 ], [ -75.450927734375, -10.897658348083496 ], [ -75.449821472167969, -10.895951271057072 ], [ -75.449195861816349, -10.89335823059082 ], [ -75.449188232421818, -10.89087963104248 ], [ -75.448242187499943, -10.888186454772892 ], [ -75.447586059570312, -10.887290954589844 ], [ -75.444168090820312, -10.885470390319824 ], [ -75.441627502441406, -10.883168220519963 ], [ -75.440406799316349, -10.882317543029728 ], [ -75.438140869140625, -10.880006790161133 ], [ -75.435768127441406, -10.878762245178223 ], [ -75.430290222167912, -10.878580093383789 ], [ -75.427772521972656, -10.879478454589844 ], [ -75.424964904785099, -10.880080223083439 ], [ -75.423942565917969, -10.880054473876953 ], [ -75.423088073730469, -10.879702568054142 ], [ -75.422607421875, -10.879134178161564 ], [ -75.422073364257812, -10.877658843994141 ], [ -75.420822143554688, -10.875717163085881 ], [ -75.420394897460881, -10.873745918273869 ], [ -75.419586181640625, -10.87208175659174 ], [ -75.418418884277344, -10.871164321899357 ], [ -75.416191101074162, -10.870920181274414 ], [ -75.415534973144418, -10.870641708374023 ], [ -75.415046691894474, -10.869945526123047 ], [ -75.414894104003906, -10.867739677429199 ], [ -75.414627075195312, -10.866945266723633 ], [ -75.413238525390568, -10.866032600402832 ], [ -75.411163330078125, -10.86379337310791 ], [ -75.410537719726562, -10.863411903381348 ], [ -75.409759521484375, -10.863957405090332 ], [ -75.409317016601506, -10.864879608154297 ], [ -75.408920288085881, -10.865033149719238 ], [ -75.404708862304688, -10.864858627319336 ], [ -75.400032043457031, -10.866323471069279 ], [ -75.396705627441406, -10.865946769714299 ], [ -75.393836975097656, -10.866110801696777 ], [ -75.392959594726562, -10.86662769317627 ], [ -75.391090393066349, -10.868421554565373 ], [ -75.39031982421875, -10.868747711181584 ], [ -75.386795043945256, -10.868654251098633 ], [ -75.385238647460938, -10.867596626281738 ], [ -75.384735107421875, -10.865217208862305 ], [ -75.384178161621094, -10.863754272460938 ], [ -75.383453369140625, -10.862796783447266 ], [ -75.380805969238224, -10.860494613647404 ], [ -75.379959106445256, -10.858341217040959 ], [ -75.379562377929631, -10.856451988220215 ], [ -75.378944396972656, -10.85554027557373 ], [ -75.377670288085881, -10.854600906372013 ], [ -75.372444152832031, -10.852003097534123 ], [ -75.368904113769531, -10.849782943725586 ], [ -75.366386413574162, -10.848846435546875 ], [ -75.365242004394474, -10.848846435546875 ], [ -75.364105224609318, -10.849245071411076 ], [ -75.362831115722656, -10.849996566772404 ], [ -75.361557006835824, -10.851075172424316 ], [ -75.360031127929574, -10.853899002075195 ], [ -75.357673645019531, -10.857192039489689 ], [ -75.357124328613281, -10.858559608459416 ], [ -75.355934143066406, -10.859964370727539 ], [ -75.354888916015625, -10.8622789382934 ], [ -75.353530883789006, -10.863664627075082 ], [ -75.350250244140625, -10.865153312683105 ], [ -75.346466064453068, -10.865490913391113 ], [ -75.340156555175781, -10.865615844726506 ], [ -75.337326049804631, -10.865066528320312 ], [ -75.335517883300724, -10.864362716674805 ], [ -75.333038330078068, -10.864754676818791 ], [ -75.331443786621094, -10.864766120910588 ], [ -75.330787658691406, -10.864503860473576 ], [ -75.329910278320312, -10.863636016845703 ], [ -75.328697204589844, -10.861620903015137 ], [ -75.327728271484375, -10.861081123352051 ], [ -75.326553344726506, -10.860791206359863 ], [ -75.322578430175781, -10.861083030700627 ], [ -75.316398620605469, -10.862980842590332 ], [ -75.314445495605355, -10.863083839416504 ], [ -75.31378173828125, -10.862749099731445 ], [ -75.312698364257756, -10.861739158630371 ], [ -75.311721801757812, -10.859848022460938 ], [ -75.311058044433594, -10.859080314636174 ], [ -75.306442260742188, -10.85650634765625 ], [ -75.304687499999943, -10.855875015258789 ], [ -75.301689147949219, -10.854225158691406 ], [ -75.300773620605412, -10.853302001953068 ], [ -75.300193786621094, -10.851945877075195 ], [ -75.299468994140568, -10.850970268249455 ], [ -75.2969970703125, -10.849715232849121 ], [ -75.295448303222599, -10.848369598388672 ], [ -75.294723510742188, -10.847322463989201 ], [ -75.293952941894531, -10.845432281494141 ], [ -75.293693542480469, -10.843795776367188 ], [ -75.292274475097656, -10.841517448425293 ], [ -75.291740417480412, -10.839473724365178 ], [ -75.291183471679688, -10.838815689086914 ], [ -75.290702819824219, -10.838651657104435 ], [ -75.290069580078125, -10.839069366455078 ], [ -75.289253234863224, -10.840298652648926 ], [ -75.289146423339787, -10.841211318969727 ], [ -75.288650512695312, -10.841773986816349 ], [ -75.285682678222656, -10.84174919128418 ], [ -75.284164428710938, -10.841370582580566 ], [ -75.283256530761662, -10.840846061706543 ], [ -75.281959533691406, -10.839527130126953 ], [ -75.280662536621037, -10.837079048156738 ], [ -75.279891967773381, -10.836147308349553 ], [ -75.275741577148438, -10.833527565002441 ], [ -75.271888732910099, -10.829922676086426 ], [ -75.269866943359375, -10.829255104064941 ], [ -75.268745422363224, -10.829302787780762 ], [ -75.268066406249943, -10.829546928405648 ], [ -75.266845703124943, -10.829484939575195 ], [ -75.265914916992188, -10.829107284545842 ], [ -75.264785766601562, -10.828284263610783 ], [ -75.262825012206974, -10.826185226440316 ], [ -75.261985778808537, -10.822607040405273 ], [ -75.260726928710881, -10.819821357727051 ], [ -75.260856628417969, -10.816539764404297 ], [ -75.258445739746037, -10.813358306884652 ], [ -75.257682800292912, -10.80984973907465 ], [ -75.257011413574162, -10.809182167053166 ], [ -75.255355834960938, -10.808947563171273 ], [ -75.253639221191406, -10.808017730712777 ], [ -75.249023437499886, -10.80404090881342 ], [ -75.248184204101562, -10.803045272827148 ], [ -75.247863769531193, -10.802386283874512 ], [ -75.247459411621094, -10.799195289611816 ], [ -75.246986389160099, -10.797991752624512 ], [ -75.246978759765625, -10.796337127685547 ], [ -75.246711730956974, -10.795161247253418 ], [ -75.243904113769531, -10.79082202911377 ], [ -75.243095397949162, -10.788870811462402 ], [ -75.242965698242188, -10.786563873290902 ], [ -75.243690490722656, -10.784202575683594 ], [ -75.243820190429688, -10.779618263244572 ], [ -75.244438171386662, -10.777490615844727 ], [ -75.245559692382756, -10.775491714477539 ], [ -75.244956970214844, -10.773384094238224 ], [ -75.244926452636719, -10.77012920379633 ], [ -75.2442626953125, -10.767552375793457 ], [ -75.244270324707031, -10.764142036437931 ], [ -75.244621276855412, -10.7629137039184 ], [ -75.244583129882812, -10.76060676574707 ], [ -75.244331359863224, -10.759927749633789 ], [ -75.244277954101562, -10.757541656494084 ], [ -75.243659973144474, -10.756518363952637 ], [ -75.245933532714844, -10.75425815582264 ], [ -75.247009277343693, -10.751333236694336 ], [ -75.247047424316406, -10.750258445739746 ], [ -75.245925903320312, -10.748440742492562 ], [ -75.244613647460881, -10.746889114379883 ], [ -75.242843627929688, -10.745883941650391 ], [ -75.240341186523381, -10.745162010192871 ], [ -75.236953735351562, -10.745157241821289 ], [ -75.235260009765568, -10.745428085327148 ], [ -75.23455810546875, -10.74642372131342 ], [ -75.231826782226506, -10.74904727935791 ], [ -75.230171203613281, -10.749122619628906 ], [ -75.229560852050724, -10.748263359069767 ], [ -75.229087829589787, -10.746590614318791 ], [ -75.227378845214844, -10.745029449462891 ], [ -75.224052429199219, -10.740263938903752 ], [ -75.220710754394531, -10.733990669250488 ], [ -75.219139099121037, -10.732063293457031 ], [ -75.2176513671875, -10.728891372680607 ], [ -75.216926574707031, -10.727943420410156 ], [ -75.216804504394531, -10.727028846740723 ], [ -75.215789794921875, -10.724570274353027 ], [ -75.215820312499943, -10.722352027893066 ], [ -75.216209411621037, -10.721053123474121 ], [ -75.215850830078125, -10.71954154968256 ], [ -75.213920593261662, -10.71741771697998 ], [ -75.213302612304688, -10.716097831726074 ], [ -75.211166381835938, -10.714786529541016 ], [ -75.208572387695256, -10.714815139770508 ], [ -75.207389831542969, -10.715033531188965 ], [ -75.203964233398438, -10.716276168823242 ], [ -75.202438354492188, -10.715879440307617 ], [ -75.197723388671875, -10.716143608093205 ], [ -75.194984436035156, -10.715250015258732 ], [ -75.192665100097656, -10.715167999267578 ], [ -75.190505981445312, -10.715986251831055 ], [ -75.186927795410099, -10.718264579772949 ], [ -75.184829711914006, -10.718675613403263 ], [ -75.182487487792969, -10.718106269836369 ], [ -75.178504943847656, -10.718262672424316 ], [ -75.176376342773438, -10.719864845275879 ], [ -75.1751708984375, -10.720353126525879 ], [ -75.167854309081974, -10.719949722289925 ], [ -75.163490295410156, -10.719183921813908 ], [ -75.162124633789006, -10.719229698181152 ], [ -75.161178588867131, -10.719610214233398 ], [ -75.159309387207031, -10.720815658569336 ], [ -75.154701232910099, -10.721125602722168 ], [ -75.150970458984318, -10.722970008850041 ], [ -75.148468017578125, -10.722862243652344 ], [ -75.147216796875, -10.723216056823617 ], [ -75.145545959472599, -10.723236083984261 ], [ -75.143684387207031, -10.723788261413461 ], [ -75.140655517578068, -10.725173950195312 ], [ -75.135955810546875, -10.725626945495605 ], [ -75.133865356445312, -10.726379394531193 ], [ -75.131385803222656, -10.728142738342285 ], [ -75.125, -10.728481292724496 ], [ -75.123138427734261, -10.72904109954834 ], [ -75.121025085449162, -10.729982376098633 ], [ -75.119552612304688, -10.730057716369629 ], [ -75.117477416992131, -10.727596282958928 ], [ -75.115386962890568, -10.725770950317383 ], [ -75.113410949706918, -10.724966049194279 ], [ -75.111312866210824, -10.724562644958496 ], [ -75.110511779785156, -10.724081993103027 ], [ -75.107246398925781, -10.719044685363713 ], [ -75.101661682128849, -10.713142395019531 ], [ -75.099891662597656, -10.710329055786133 ], [ -75.098876953125, -10.709128379821777 ], [ -75.097206115722656, -10.706151962280273 ], [ -75.096405029296818, -10.703619956970215 ], [ -75.096214294433537, -10.699487686157227 ], [ -75.095558166503849, -10.698953628539982 ], [ -75.092628479003906, -10.697544097900391 ], [ -75.091857910156136, -10.696864128112736 ], [ -75.090995788574162, -10.695138931274357 ], [ -75.090690612792912, -10.692134857177678 ], [ -75.088088989257812, -10.689387321472168 ], [ -75.088218688964787, -10.687841415405273 ], [ -75.088081359863281, -10.685732841491586 ], [ -75.088645935058594, -10.684468269348145 ], [ -75.088523864746094, -10.683508872985783 ], [ -75.087730407714787, -10.68298435211176 ], [ -75.085838317871037, -10.682523727416992 ], [ -75.083602905273438, -10.682533264160156 ], [ -75.080398559570256, -10.682977676391602 ], [ -75.078155517578125, -10.681042671203613 ], [ -75.074493408203068, -10.679470062255859 ], [ -75.072189331054631, -10.678007125854492 ], [ -75.071601867675781, -10.677410125732422 ], [ -75.071403503417969, -10.676892280578556 ], [ -75.07147216796875, -10.676152229308968 ], [ -75.073005676269531, -10.674079895019531 ], [ -75.073783874511719, -10.672017097473088 ], [ -75.074485778808537, -10.667160034179574 ], [ -75.074417114257812, -10.665523529052678 ], [ -75.0726318359375, -10.662504196166935 ], [ -75.071365356445312, -10.65894889831543 ], [ -75.070938110351506, -10.658589363098088 ], [ -75.069618225097599, -10.658170700073242 ], [ -75.068168640136719, -10.65686130523676 ], [ -75.065330505371037, -10.652780532836857 ], [ -75.064056396484375, -10.652745246887207 ], [ -75.060523986816406, -10.654727935790959 ], [ -75.057312011718693, -10.655641555786076 ], [ -75.055099487304688, -10.65582370758051 ], [ -75.054351806640568, -10.656348228454533 ], [ -75.053436279296875, -10.657505989074707 ], [ -75.0516357421875, -10.661540031433105 ], [ -75.051033020019474, -10.662344932556096 ], [ -75.050186157226562, -10.663068771362305 ], [ -75.048995971679688, -10.663594245910645 ], [ -75.048545837402287, -10.664053916931096 ], [ -75.046768188476562, -10.66504955291748 ], [ -75.042472839355469, -10.669616699218693 ], [ -75.040603637695312, -10.670792579650822 ], [ -75.039688110351506, -10.671833038329964 ], [ -75.038543701171818, -10.674068450927734 ], [ -75.0380859375, -10.676039695739746 ], [ -75.038124084472656, -10.67668342590332 ], [ -75.038795471191406, -10.678103446960336 ], [ -75.038787841796875, -10.679304122924748 ], [ -75.037467956542912, -10.680941581726017 ], [ -75.035804748535156, -10.681916236877441 ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-LAL", "NAME_0": "Peru", "ID_1": 13, "NAME_1": "La Libertad", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": "Libertad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.696525573730412, -8.940694808959961 ], [ -78.696525573730412, -8.940973281860352 ], [ -78.696250915527287, -8.940973281860352 ], [ -78.696250915527287, -8.941250801086426 ], [ -78.695968627929631, -8.941250801086426 ], [ -78.695968627929631, -8.941527366638127 ], [ -78.696250915527287, -8.941527366638127 ], [ -78.696250915527287, -8.941806793212891 ], [ -78.695693969726506, -8.941806793212891 ], [ -78.695693969726506, -8.942916870117131 ], [ -78.696525573730412, -8.942916870117131 ], [ -78.696525573730412, -8.942639350891056 ], [ -78.69708251953125, -8.942639350891056 ], [ -78.69708251953125, -8.942360877990666 ], [ -78.697364807128906, -8.942360877990666 ], [ -78.697364807128906, -8.941806793212891 ], [ -78.697639465332031, -8.941806793212891 ], [ -78.697639465332031, -8.941527366638127 ], [ -78.697914123535156, -8.941527366638127 ], [ -78.697914123535156, -8.940973281860352 ], [ -78.697639465332031, -8.940973281860352 ], [ -78.697639465332031, -8.940694808959961 ], [ -78.696525573730412, -8.940694808959961 ] ] ], [ [ [ -78.793746948242188, -8.761248588562012 ], [ -78.793746948242188, -8.761527061462402 ], [ -78.793197631835938, -8.761527061462402 ], [ -78.793197631835938, -8.761804580688477 ], [ -78.792915344238281, -8.761804580688477 ], [ -78.792915344238281, -8.762083053588867 ], [ -78.7923583984375, -8.762081146240178 ], [ -78.7923583984375, -8.762360572814941 ], [ -78.792083740234318, -8.762360572814941 ], [ -78.792083740234318, -8.762916564941406 ], [ -78.7923583984375, -8.762916564941406 ], [ -78.7923583984375, -8.763474464416504 ], [ -78.791809082031193, -8.763474464416504 ], [ -78.791809082031193, -8.763749122619515 ], [ -78.791526794433537, -8.763749122619515 ], [ -78.791526794433537, -8.764303207397461 ], [ -78.791252136230412, -8.764303207397461 ], [ -78.791252136230412, -8.764583587646371 ], [ -78.790969848632699, -8.764583587646371 ], [ -78.790969848632699, -8.764862060546818 ], [ -78.790695190429688, -8.764859199523869 ], [ -78.790695190429688, -8.765415191650334 ], [ -78.790412902832031, -8.765415191650334 ], [ -78.790412902832031, -8.765969276428223 ], [ -78.790138244628906, -8.765969276428223 ], [ -78.790138244628906, -8.76652812957758 ], [ -78.789863586425781, -8.76652812957758 ], [ -78.789863586425781, -8.767084121704045 ], [ -78.789306640625, -8.767084121704045 ], [ -78.789306640625, -8.767361640930119 ], [ -78.789024353027344, -8.767361640930119 ], [ -78.789024353027344, -8.768194198608398 ], [ -78.788749694824162, -8.768194198608398 ], [ -78.788749694824162, -8.769027709960938 ], [ -78.789581298828125, -8.769027709960938 ], [ -78.789581298828125, -8.769306182861328 ], [ -78.790412902832031, -8.769304275512582 ], [ -78.790412902832031, -8.769583702087346 ], [ -78.791252136230412, -8.769583702087346 ], [ -78.791252136230412, -8.769027709960938 ], [ -78.791526794433537, -8.769027709960938 ], [ -78.791526794433537, -8.768471717834473 ], [ -78.792083740234318, -8.768471717834473 ], [ -78.792083740234318, -8.768194198608398 ], [ -78.7923583984375, -8.768194198608398 ], [ -78.7923583984375, -8.765415191650334 ], [ -78.792640686035156, -8.765418052673226 ], [ -78.792640686035156, -8.764583587646371 ], [ -78.793472290039062, -8.764583587646371 ], [ -78.793472290039062, -8.764303207397461 ], [ -78.794029235839844, -8.764305114746094 ], [ -78.794029235839844, -8.764026641845703 ], [ -78.794303894042912, -8.764026641845703 ], [ -78.794303894042912, -8.763474464416504 ], [ -78.794586181640568, -8.763474464416504 ], [ -78.794586181640568, -8.762916564941406 ], [ -78.794860839843693, -8.762916564941406 ], [ -78.794860839843693, -8.762360572814941 ], [ -78.795135498046818, -8.762360572814941 ], [ -78.795135498046818, -8.761527061462402 ], [ -78.794586181640568, -8.761527061462402 ], [ -78.794586181640568, -8.761248588562012 ], [ -78.793746948242188, -8.761248588562012 ] ] ], [ [ [ -78.970413208007812, -8.562638282775879 ], [ -78.970413208007812, -8.562915802001953 ], [ -78.969863891601506, -8.562915802001953 ], [ -78.969863891601506, -8.56319522857666 ], [ -78.969306945800668, -8.56319522857666 ], [ -78.969306945800668, -8.563472747802734 ], [ -78.96875, -8.563472747802734 ], [ -78.96875, -8.563751220703125 ], [ -78.967918395996094, -8.563751220703125 ], [ -78.967918395996094, -8.564584732055664 ], [ -78.967636108398438, -8.564584732055664 ], [ -78.967636108398438, -8.564861297607365 ], [ -78.968193054199219, -8.564861297607365 ], [ -78.968193054199219, -8.565694808959847 ], [ -78.968475341796875, -8.565694808959847 ], [ -78.968475341796875, -8.566250801086426 ], [ -78.968193054199219, -8.566250801086426 ], [ -78.968193054199219, -8.567639350891056 ], [ -78.968475341796875, -8.567639350891056 ], [ -78.968475341796875, -8.568195343017521 ], [ -78.969024658203125, -8.568195343017521 ], [ -78.969024658203125, -8.567639350891056 ], [ -78.969581604003849, -8.567639350891056 ], [ -78.969581604003849, -8.567916870117131 ], [ -78.970695495605469, -8.567916870117131 ], [ -78.970695495605469, -8.567639350891056 ], [ -78.97125244140625, -8.567639350891056 ], [ -78.97125244140625, -8.567360877990666 ], [ -78.971527099609375, -8.567360877990666 ], [ -78.971527099609375, -8.567083358764648 ], [ -78.9718017578125, -8.567083358764648 ], [ -78.971809387207031, -8.566527366638184 ], [ -78.972084045410156, -8.566527366638184 ], [ -78.972084045410156, -8.567083358764648 ], [ -78.972358703613168, -8.567083358764648 ], [ -78.972358703613168, -8.566806793212891 ], [ -78.972640991210881, -8.566806793212891 ], [ -78.972640991210881, -8.566527366638184 ], [ -78.972358703613168, -8.566527366638184 ], [ -78.972358703613168, -8.566250801086426 ], [ -78.972084045410156, -8.566250801086426 ], [ -78.972084045410156, -8.565973281860295 ], [ -78.972358703613168, -8.565973281860295 ], [ -78.972358703613168, -8.565138816833439 ], [ -78.972084045410156, -8.565138816833439 ], [ -78.972084045410156, -8.564861297607365 ], [ -78.971527099609375, -8.564861297607365 ], [ -78.971527099609375, -8.564584732055664 ], [ -78.9718017578125, -8.564584732055664 ], [ -78.9718017578125, -8.564304351806584 ], [ -78.971527099609375, -8.564304351806584 ], [ -78.971527099609375, -8.564028739929199 ], [ -78.972084045410156, -8.564028739929199 ], [ -78.972084045410156, -8.563751220703125 ], [ -78.971809387207031, -8.563751220703125 ], [ -78.9718017578125, -8.56319522857666 ], [ -78.97125244140625, -8.56319522857666 ], [ -78.97125244140625, -8.562638282775879 ], [ -78.970413208007812, -8.562638282775879 ] ] ], [ [ [ -78.964584350585938, -8.530415534973145 ], [ -78.964584350585938, -8.530971527099609 ], [ -78.963752746581974, -8.530971527099609 ], [ -78.963752746581974, -8.531805992126465 ], [ -78.964027404785099, -8.531804084777775 ], [ -78.964027404785099, -8.53236007690424 ], [ -78.964302062988281, -8.53236007690424 ], [ -78.964302062988281, -8.534305572509766 ], [ -78.964027404785099, -8.534305572509766 ], [ -78.964027404785099, -8.534859657287541 ], [ -78.963470458984318, -8.534863471984806 ], [ -78.963470458984318, -8.53680419921875 ], [ -78.963195800781193, -8.536802291870117 ], [ -78.963195800781193, -8.537358283996582 ], [ -78.962913513183537, -8.537358283996582 ], [ -78.962913513183537, -8.537638664245605 ], [ -78.962638854980469, -8.537638664245605 ], [ -78.962638854980469, -8.537917137145996 ], [ -78.962913513183537, -8.537914276123047 ], [ -78.962913513183537, -8.538470268249512 ], [ -78.962638854980469, -8.538470268249512 ], [ -78.962638854980469, -8.538750648498478 ], [ -78.961807250976562, -8.538750648498478 ], [ -78.961807250976562, -8.539583206176758 ], [ -78.962913513183537, -8.539580345153752 ], [ -78.962913513183537, -8.539860725402832 ], [ -78.963470458984318, -8.539860725402832 ], [ -78.963470458984318, -8.539580345153752 ], [ -78.963752746581974, -8.539583206176758 ], [ -78.963752746581974, -8.539304733276367 ], [ -78.964302062988281, -8.539304733276367 ], [ -78.964302062988281, -8.539029121398869 ], [ -78.964859008789062, -8.539029121398869 ], [ -78.964859008789062, -8.538750648498478 ], [ -78.964584350585938, -8.538750648498478 ], [ -78.964584350585938, -8.538470268249512 ], [ -78.964027404785099, -8.538473129272461 ], [ -78.964027404785099, -8.538194656372013 ], [ -78.964584350585938, -8.538194656372013 ], [ -78.964584350585938, -8.537914276123047 ], [ -78.965141296386719, -8.537914276123047 ], [ -78.965141296386719, -8.537358283996582 ], [ -78.965415954589844, -8.537361145019531 ], [ -78.965415954589844, -8.53708457946766 ], [ -78.965141296386719, -8.53708457946766 ], [ -78.965141296386719, -8.536802291870117 ], [ -78.965415954589844, -8.53680419921875 ], [ -78.965415954589844, -8.536528587341252 ], [ -78.9656982421875, -8.536528587341252 ], [ -78.9656982421875, -8.536248207092285 ], [ -78.965972900390625, -8.536251068115178 ], [ -78.965972900390625, -8.535972595214787 ], [ -78.9656982421875, -8.535972595214787 ], [ -78.9656982421875, -8.535415649413949 ], [ -78.965972900390625, -8.535415649413949 ], [ -78.965972900390625, -8.535694122314396 ], [ -78.966247558593693, -8.53569221496582 ], [ -78.966247558593693, -8.535972595214787 ], [ -78.966804504394474, -8.535972595214787 ], [ -78.966804504394474, -8.535415649413949 ], [ -78.967086791992131, -8.535415649413949 ], [ -78.967086791992131, -8.535138130187931 ], [ -78.966529846191349, -8.535138130187931 ], [ -78.966529846191349, -8.534582138061467 ], [ -78.966804504394474, -8.534582138061467 ], [ -78.966804504394474, -8.534305572509766 ], [ -78.967086791992131, -8.534305572509766 ], [ -78.967086791992131, -8.533749580383301 ], [ -78.966804504394474, -8.533749580383301 ], [ -78.966804504394474, -8.533470153808594 ], [ -78.967636108398438, -8.533470153808594 ], [ -78.967636108398438, -8.533749580383301 ], [ -78.968193054199219, -8.533749580383301 ], [ -78.968193054199219, -8.533193588256836 ], [ -78.96875, -8.533193588256836 ], [ -78.96875, -8.532637596130371 ], [ -78.969024658203125, -8.532637596130371 ], [ -78.969024658203125, -8.532084465026855 ], [ -78.969306945800668, -8.532084465026855 ], [ -78.969306945800668, -8.531528472900391 ], [ -78.969024658203125, -8.531528472900391 ], [ -78.969024658203125, -8.53125 ], [ -78.968475341796875, -8.53125 ], [ -78.968475341796875, -8.531528472900391 ], [ -78.967918395996094, -8.531528472900391 ], [ -78.967918395996094, -8.53125 ], [ -78.967636108398438, -8.53125 ], [ -78.967636108398438, -8.530971527099609 ], [ -78.967361450195312, -8.530971527099609 ], [ -78.967361450195312, -8.53125 ], [ -78.966804504394474, -8.53125 ], [ -78.966804504394474, -8.531804084777775 ], [ -78.966529846191349, -8.531805992126465 ], [ -78.966529846191349, -8.531528472900391 ], [ -78.966247558593693, -8.531528472900391 ], [ -78.966247558593693, -8.53125 ], [ -78.965972900390625, -8.53125 ], [ -78.965972900390625, -8.530971527099609 ], [ -78.9656982421875, -8.530971527099609 ], [ -78.9656982421875, -8.530694007873535 ], [ -78.965415954589844, -8.530694007873535 ], [ -78.965415954589844, -8.530415534973145 ], [ -78.964584350585938, -8.530415534973145 ] ] ], [ [ [ -79.500137329101562, -7.812639236450138 ], [ -79.500137329101562, -7.812917232513371 ], [ -79.499580383300781, -7.812917232513371 ], [ -79.499580383300781, -7.813473224639836 ], [ -79.499305725097656, -7.813473224639836 ], [ -79.499305725097656, -7.814026832580566 ], [ -79.499031066894531, -7.814026832580566 ], [ -79.499031066894531, -7.814582824707031 ], [ -79.498474121093693, -7.814582824707031 ], [ -79.498474121093693, -7.815416812896672 ], [ -79.498748779296875, -7.815416812896672 ], [ -79.498748779296875, -7.815972805023137 ], [ -79.499031066894531, -7.815972805023137 ], [ -79.499031066894531, -7.816248893737793 ], [ -79.500419616699219, -7.816248893737793 ], [ -79.500419616699219, -7.815972805023137 ], [ -79.50069427490223, -7.815972805023137 ], [ -79.50069427490223, -7.815694808959904 ], [ -79.500968933105412, -7.815694808959904 ], [ -79.500968933105412, -7.815138816833496 ], [ -79.50069427490223, -7.815138816833496 ], [ -79.50069427490223, -7.814860820770264 ], [ -79.500419616699219, -7.814860820770264 ], [ -79.500419616699219, -7.814304828643799 ], [ -79.50069427490223, -7.814304828643799 ], [ -79.50069427490223, -7.813473224639836 ], [ -79.501251220703068, -7.813473224639836 ], [ -79.501251220703068, -7.813195228576603 ], [ -79.500968933105412, -7.813195228576603 ], [ -79.500968933105412, -7.812917232513371 ], [ -79.500419616699219, -7.812917232513371 ], [ -79.500419616699219, -7.812639236450138 ], [ -79.500137329101562, -7.812639236450138 ] ] ], [ [ [ -77.751533508300724, -6.966769218444767 ], [ -77.752769470214787, -6.969626903533879 ], [ -77.752868652343693, -6.971008777618351 ], [ -77.752250671386719, -6.972629070281982 ], [ -77.753486633300781, -6.97498083114624 ], [ -77.75347900390625, -6.976452827453556 ], [ -77.752845764160156, -6.977351188659611 ], [ -77.751129150390625, -6.979014873504639 ], [ -77.749908447265568, -6.981054782867375 ], [ -77.748260498046875, -6.983026027679387 ], [ -77.745544433593693, -6.985752105712891 ], [ -77.744758605956974, -6.987103939056396 ], [ -77.744552612304688, -6.987999916076603 ], [ -77.744667053222599, -6.991947174072266 ], [ -77.745323181152344, -6.99396896362299 ], [ -77.747253417968693, -6.997840881347656 ], [ -77.747322082519531, -7.000264167785645 ], [ -77.748062133789062, -7.003645896911621 ], [ -77.748085021972656, -7.004731178283691 ], [ -77.747085571289062, -7.008504867553654 ], [ -77.746345520019531, -7.009784221649113 ], [ -77.744712829589844, -7.011806964874211 ], [ -77.744255065917969, -7.012994766235295 ], [ -77.744651794433594, -7.014880180358887 ], [ -77.746414184570312, -7.01939678192133 ], [ -77.746673583984318, -7.020605087280273 ], [ -77.744674682617131, -7.022768020629883 ], [ -77.743713378906193, -7.024372100830078 ], [ -77.743087768554688, -7.024882793426514 ], [ -77.741966247558594, -7.025331974029427 ], [ -77.741241455078068, -7.026150226593018 ], [ -77.740844726562443, -7.027569770812931 ], [ -77.741455078125, -7.02947282791132 ], [ -77.741142272949162, -7.031599044799748 ], [ -77.740348815917969, -7.034023761749211 ], [ -77.739181518554688, -7.036598205566349 ], [ -77.734832763671875, -7.044293880462646 ], [ -77.729103088378906, -7.051430225372314 ], [ -77.725189208984375, -7.058792114257812 ], [ -77.722946166992131, -7.060519218444767 ], [ -77.718193054199219, -7.065083980560303 ], [ -77.716339111328068, -7.065870761871338 ], [ -77.711463928222656, -7.066254138946533 ], [ -77.70965576171875, -7.066606998443547 ], [ -77.708511352539062, -7.067308902740479 ], [ -77.707351684570312, -7.068473815917855 ], [ -77.70684814453125, -7.069585800170898 ], [ -77.706565856933594, -7.07119703292841 ], [ -77.706588745117188, -7.07266902923584 ], [ -77.7071533203125, -7.074456214904785 ], [ -77.708404541015625, -7.07701301574707 ], [ -77.709465026855469, -7.078227996826172 ], [ -77.714218139648438, -7.082202911376896 ], [ -77.7176513671875, -7.085815906524601 ], [ -77.718391418457031, -7.086932182311955 ], [ -77.718482971191406, -7.088241100311279 ], [ -77.716102600097656, -7.092304229736271 ], [ -77.714454650878849, -7.097716808319035 ], [ -77.713966369628849, -7.100629806518498 ], [ -77.713867187499943, -7.106449127197266 ], [ -77.713699340820199, -7.107605934143066 ], [ -77.713180541992188, -7.108352184295654 ], [ -77.702751159667969, -7.116551876068058 ], [ -77.697998046875, -7.119589805603027 ], [ -77.696617126464787, -7.120093822479248 ], [ -77.694725036621094, -7.12040376663208 ], [ -77.690155029296875, -7.120330810546818 ], [ -77.688690185546818, -7.120628833770695 ], [ -77.687507629394531, -7.121890068054199 ], [ -77.686363220214844, -7.123740196227971 ], [ -77.685363769531193, -7.126243114471379 ], [ -77.684593200683537, -7.12910079956049 ], [ -77.683540344238224, -7.130850791931152 ], [ -77.682716369628906, -7.131542205810547 ], [ -77.676834106445312, -7.133889198303166 ], [ -77.671089172363281, -7.135323047637883 ], [ -77.667747497558594, -7.136752128601074 ], [ -77.659454345703125, -7.141770839691162 ], [ -77.652137756347656, -7.147017002105656 ], [ -77.650306701660156, -7.147489070892334 ], [ -77.645462036132812, -7.147750854492188 ], [ -77.644126892089844, -7.148093223571777 ], [ -77.643203735351506, -7.148587226867619 ], [ -77.641578674316349, -7.150413036346436 ], [ -77.639930725097656, -7.153213977813721 ], [ -77.639335632324219, -7.154843807220459 ], [ -77.638992309570256, -7.159679889678955 ], [ -77.638389587402344, -7.161862850189152 ], [ -77.637138366699219, -7.164699077606201 ], [ -77.633659362792912, -7.170166015625 ], [ -77.633056640625, -7.170668125152531 ], [ -77.632240295410099, -7.170806884765625 ], [ -77.630149841308537, -7.169817924499455 ], [ -77.629379272460881, -7.169713020324707 ], [ -77.627395629882812, -7.16995906829834 ], [ -77.624221801757756, -7.17076301574707 ], [ -77.621429443359375, -7.172388076782227 ], [ -77.617935180664006, -7.176303863525334 ], [ -77.615623474121094, -7.176984786987305 ], [ -77.615257263183537, -7.178253173828125 ], [ -77.61541748046875, -7.179596900939885 ], [ -77.617111206054688, -7.181845188140869 ], [ -77.619293212890625, -7.187345981597844 ], [ -77.621322631835938, -7.190027236938477 ], [ -77.621795654296875, -7.191164016723519 ], [ -77.617500305175781, -7.19700813293457 ], [ -77.616470336914062, -7.199642181396484 ], [ -77.614105224609318, -7.203072071075439 ], [ -77.613784790039062, -7.205287933349609 ], [ -77.613044738769531, -7.206414222717285 ], [ -77.612274169921875, -7.206914901733398 ], [ -77.611167907714787, -7.206867218017578 ], [ -77.610687255859318, -7.20668888092041 ], [ -77.609695434570312, -7.205746173858643 ], [ -77.609069824218693, -7.205585956573486 ], [ -77.607986450195312, -7.205772876739502 ], [ -77.607154846191349, -7.206284046173039 ], [ -77.607688903808594, -7.209027767181396 ], [ -77.607635498046818, -7.211322784423771 ], [ -77.606681823730412, -7.215096950531006 ], [ -77.604995727539062, -7.218008041381836 ], [ -77.605247497558537, -7.219200134277344 ], [ -77.605628967285099, -7.219730854034367 ], [ -77.6072998046875, -7.220614910125732 ], [ -77.609947204589844, -7.222695827484074 ], [ -77.611763000488281, -7.223570823669434 ], [ -77.616127014160099, -7.226538181304875 ], [ -77.61749267578125, -7.226981163024902 ], [ -77.620895385742131, -7.227188110351562 ], [ -77.623390197753906, -7.227770805358887 ], [ -77.625167846679631, -7.228735923767033 ], [ -77.62811279296875, -7.231276988983154 ], [ -77.631935119628849, -7.232229232788086 ], [ -77.633445739746094, -7.233008861541748 ], [ -77.635353088378906, -7.23530912399292 ], [ -77.636970520019531, -7.238742828369141 ], [ -77.637535095214844, -7.241233825683594 ], [ -77.636848449707031, -7.2432541847229 ], [ -77.636878967285156, -7.244193077087346 ], [ -77.637237548828125, -7.244588851928711 ], [ -77.637763977050724, -7.244702816009521 ], [ -77.638687133789062, -7.244471073150578 ], [ -77.644012451171875, -7.241603851318359 ], [ -77.646286010742188, -7.241254806518555 ], [ -77.647224426269474, -7.241313934326172 ], [ -77.647415161132756, -7.241520881652832 ], [ -77.647308349609318, -7.243535995483398 ], [ -77.645614624023438, -7.248777866363412 ], [ -77.645912170410156, -7.251705169677734 ], [ -77.645591735839787, -7.253520965576172 ], [ -77.645027160644474, -7.253921985626221 ], [ -77.644615173339844, -7.253942966461182 ], [ -77.642494201660156, -7.252761840820312 ], [ -77.640892028808594, -7.252627849578857 ], [ -77.637954711914006, -7.253133773803654 ], [ -77.637069702148438, -7.253455162048283 ], [ -77.636695861816406, -7.253853797912598 ], [ -77.636749267578125, -7.254936218261719 ], [ -77.638908386230412, -7.256912231445256 ], [ -77.640518188476506, -7.259878158569336 ], [ -77.642791748046875, -7.263045787811279 ], [ -77.644332885742131, -7.266334056854191 ], [ -77.646873474121094, -7.26920223236084 ], [ -77.647132873535043, -7.270410060882568 ], [ -77.646286010742188, -7.272052764892521 ], [ -77.641685485839787, -7.278032779693547 ], [ -77.638786315917969, -7.283020019531193 ], [ -77.637527465820312, -7.287131786346379 ], [ -77.637687683105412, -7.290599822998047 ], [ -77.6357421875, -7.292057037353516 ], [ -77.63531494140625, -7.29315280914301 ], [ -77.63531494140625, -7.29558277130127 ], [ -77.636123657226562, -7.298134803771916 ], [ -77.634605407714787, -7.302719116210938 ], [ -77.634407043457031, -7.304697036743164 ], [ -77.633735656738281, -7.306878089904785 ], [ -77.632972717285156, -7.308445930480957 ], [ -77.63287353515625, -7.309659004211369 ], [ -77.629463195800724, -7.316644191741887 ], [ -77.628875732421875, -7.318827152252197 ], [ -77.628631591796761, -7.322054862976074 ], [ -77.628898620605412, -7.323101043701115 ], [ -77.629287719726506, -7.323450088500977 ], [ -77.63116455078125, -7.323675155639648 ], [ -77.632728576660099, -7.324108123779297 ], [ -77.633766174316349, -7.324752807617188 ], [ -77.63458251953125, -7.325623989105225 ], [ -77.634620666503849, -7.326447010040226 ], [ -77.6329345703125, -7.328751087188721 ], [ -77.632507324218693, -7.329685211181527 ], [ -77.632904052734318, -7.332492828369141 ], [ -77.634925842285043, -7.336420059204102 ], [ -77.634597778320312, -7.337985992431641 ], [ -77.634986877441349, -7.339538097381592 ], [ -77.635894775390625, -7.340545177459603 ], [ -77.637489318847599, -7.341268062591553 ], [ -77.638336181640568, -7.341968059539738 ], [ -77.639129638671875, -7.343074798583984 ], [ -77.639251708984375, -7.344374179840088 ], [ -77.638671875, -7.346485137939453 ], [ -77.635604858398438, -7.349691867828369 ], [ -77.635063171386719, -7.350625991821289 ], [ -77.635078430175781, -7.352359771728459 ], [ -77.635688781738168, -7.353693962097054 ], [ -77.636177062988281, -7.355507850646973 ], [ -77.636543273925724, -7.358703136444092 ], [ -77.636039733886662, -7.360641002654972 ], [ -77.634727478027287, -7.362664222717285 ], [ -77.634056091308537, -7.364221096038762 ], [ -77.633712768554688, -7.367819786071777 ], [ -77.632293701171875, -7.370395183563119 ], [ -77.6322021484375, -7.374687194824162 ], [ -77.631706237792969, -7.377322196960392 ], [ -77.62969970703125, -7.380966186523381 ], [ -77.627212524414062, -7.384125232696476 ], [ -77.625129699707031, -7.390913963317871 ], [ -77.624557495117188, -7.391477108001709 ], [ -77.623489379882812, -7.393940925598145 ], [ -77.622383117675781, -7.39527702331543 ], [ -77.622001647949219, -7.396273136138916 ], [ -77.622444152832031, -7.397672176361084 ], [ -77.625320434570312, -7.400889873504582 ], [ -77.625869750976562, -7.404455184936523 ], [ -77.626945495605469, -7.406310081481877 ], [ -77.627670288085881, -7.40930700302124 ], [ -77.628417968749943, -7.410737991333008 ], [ -77.629783630371094, -7.412574768066406 ], [ -77.630226135253849, -7.413691997527962 ], [ -77.628921508789062, -7.414387226104736 ], [ -77.625213623046875, -7.415065765380859 ], [ -77.623382568359318, -7.416207790374699 ], [ -77.621269226074162, -7.417080879211426 ], [ -77.619659423828068, -7.417197227477971 ], [ -77.619232177734375, -7.416858196258545 ], [ -77.61883544921875, -7.416839122772103 ], [ -77.617271423339787, -7.417293071746769 ], [ -77.61529541015625, -7.418145179748535 ], [ -77.613861083984375, -7.41936206817627 ], [ -77.613426208496094, -7.4200439453125 ], [ -77.613258361816349, -7.42097616195673 ], [ -77.614196777343693, -7.422904014587346 ], [ -77.614433288574219, -7.425063133239746 ], [ -77.613983154296875, -7.426140785217285 ], [ -77.611778259277344, -7.429552078247013 ], [ -77.610816955566406, -7.434428215026855 ], [ -77.610397338867131, -7.434773921966553 ], [ -77.609085083007812, -7.435088157653809 ], [ -77.608139038085938, -7.435601234436035 ], [ -77.605789184570312, -7.437630176544133 ], [ -77.605155944824162, -7.43848180770874 ], [ -77.604423522949219, -7.44022083282465 ], [ -77.601387023925781, -7.443455219268742 ], [ -77.600364685058594, -7.445949077606201 ], [ -77.599037170410099, -7.447609901428223 ], [ -77.595123291015568, -7.444316864013558 ], [ -77.592910766601562, -7.443271160125732 ], [ -77.591827392578125, -7.44312477111805 ], [ -77.589935302734375, -7.445193767547607 ], [ -77.588394165039062, -7.445674896240234 ], [ -77.5872802734375, -7.446432113647404 ], [ -77.586578369140625, -7.447249889373722 ], [ -77.586067199706974, -7.448344230651855 ], [ -77.584472656249943, -7.449781894683781 ], [ -77.58113861083973, -7.451248168945256 ], [ -77.57818603515625, -7.451552867889291 ], [ -77.576889038085938, -7.451903820037785 ], [ -77.571533203125, -7.455758094787541 ], [ -77.569168090820312, -7.456756114959717 ], [ -77.567298889160099, -7.458042144775334 ], [ -77.561462402343693, -7.463037967681828 ], [ -77.560157775878793, -7.464391231536865 ], [ -77.5601806640625, -7.466659069061279 ], [ -77.560768127441406, -7.468155860900822 ], [ -77.560661315917969, -7.469394207000732 ], [ -77.560424804687443, -7.46983814239502 ], [ -77.558998107910099, -7.470878124237004 ], [ -77.557701110839844, -7.472421169281006 ], [ -77.557418823242188, -7.473182201385441 ], [ -77.557281494140568, -7.475451946258545 ], [ -77.555305480957031, -7.477478027343693 ], [ -77.554489135742188, -7.47886419296259 ], [ -77.553558349609318, -7.482376098632812 ], [ -77.553283691406193, -7.48533391952509 ], [ -77.551422119140625, -7.488101005554199 ], [ -77.550712585449162, -7.492760181426945 ], [ -77.550178527832031, -7.494441986083984 ], [ -77.549247741699219, -7.495804786682072 ], [ -77.548377990722656, -7.496442794799805 ], [ -77.547233581542969, -7.49657487869257 ], [ -77.543815612792912, -7.496352195739689 ], [ -77.542709350585938, -7.497151851653996 ], [ -77.542480468749943, -7.497894763946476 ], [ -77.542701721191349, -7.500586032867432 ], [ -77.542335510253906, -7.50164604187006 ], [ -77.541267395019474, -7.503439903259277 ], [ -77.540809631347656, -7.505169868469181 ], [ -77.53961181640625, -7.507001876830998 ], [ -77.539131164550781, -7.507449150085449 ], [ -77.537933349609318, -7.507996082305908 ], [ -77.535194396972656, -7.508400917053166 ], [ -77.533966064453125, -7.508316993713322 ], [ -77.532241821289062, -7.507378101348877 ], [ -77.529457092285156, -7.505163192749023 ], [ -77.528587341308537, -7.504816055297795 ], [ -77.525093078613281, -7.505063056945744 ], [ -77.523223876953068, -7.506165981292725 ], [ -77.522644042968693, -7.506738185882568 ], [ -77.522018432617188, -7.509897232055664 ], [ -77.521591186523438, -7.510974884033146 ], [ -77.522048950195312, -7.511313915252629 ], [ -77.522987365722656, -7.511190891265869 ], [ -77.524032592773438, -7.511474132537842 ], [ -77.527130126953068, -7.513390064239502 ], [ -77.5284423828125, -7.514920234680176 ], [ -77.529342651367131, -7.51687479019165 ], [ -77.529441833496037, -7.518628120422306 ], [ -77.528785705566406, -7.521796226501408 ], [ -77.528648376464844, -7.523558139801025 ], [ -77.528846740722599, -7.524316787719727 ], [ -77.530113220214787, -7.526243209838867 ], [ -77.529762268066406, -7.529172897338867 ], [ -77.530204772949162, -7.530445098876953 ], [ -77.530441284179688, -7.532448768615666 ], [ -77.530220031738281, -7.534457206726074 ], [ -77.529388427734375, -7.535881042480469 ], [ -77.529182434082031, -7.537599086761418 ], [ -77.529884338378906, -7.538434028625431 ], [ -77.530609130859375, -7.538818836212101 ], [ -77.531135559081974, -7.540200233459473 ], [ -77.531959533691406, -7.541268825531006 ], [ -77.533500671386719, -7.542085170745793 ], [ -77.534156799316406, -7.542757034301701 ], [ -77.535919189453068, -7.543470859527588 ], [ -77.534629821777344, -7.544634819030762 ], [ -77.533882141113281, -7.54593896865839 ], [ -77.534271240234375, -7.551686763763428 ], [ -77.534065246582031, -7.552454948425293 ], [ -77.532875061035099, -7.554251194000244 ], [ -77.532829284667969, -7.554675102233887 ], [ -77.533546447753849, -7.555249214172306 ], [ -77.535247802734318, -7.555699825286865 ], [ -77.535903930664006, -7.556177139282227 ], [ -77.537315368652344, -7.558472156524601 ], [ -77.537445068359318, -7.560739994049072 ], [ -77.5379638671875, -7.561288833618164 ], [ -77.539848327636719, -7.562469005584717 ], [ -77.540916442871094, -7.563674926757812 ], [ -77.540893554687386, -7.565021991729736 ], [ -77.540534973144531, -7.565746784210205 ], [ -77.540229797363281, -7.568150997161865 ], [ -77.536941528320312, -7.571306228637695 ], [ -77.5374755859375, -7.571763992309513 ], [ -77.53841400146473, -7.571938991546574 ], [ -77.539146423339787, -7.573363780975342 ], [ -77.540435791015625, -7.57432317733759 ], [ -77.540611267089844, -7.57498216629017 ], [ -77.540519714355469, -7.577538967132568 ], [ -77.538925170898438, -7.578779220581055 ], [ -77.537490844726562, -7.581806182861271 ], [ -77.536796569824219, -7.582252025604248 ], [ -77.534484863281193, -7.580638885498047 ], [ -77.532615661621094, -7.580386161804199 ], [ -77.531341552734318, -7.579156875610352 ], [ -77.525558471679688, -7.57878303527832 ], [ -77.523605346679631, -7.577359199523869 ], [ -77.522171020507756, -7.576887130737305 ], [ -77.520713806152344, -7.576704978942871 ], [ -77.520050048828125, -7.576981067657414 ], [ -77.519744873046875, -7.577388763427734 ], [ -77.519676208496094, -7.578753948211613 ], [ -77.519203186035156, -7.580304145812931 ], [ -77.517631530761719, -7.582343101501465 ], [ -77.516548156738224, -7.583354949951115 ], [ -77.515617370605412, -7.583640098571777 ], [ -77.513740539550781, -7.582285881042424 ], [ -77.512008666992188, -7.582349777221623 ], [ -77.510635375976506, -7.581472873687744 ], [ -77.509582519531193, -7.581199169158936 ], [ -77.508712768554688, -7.58201789855957 ], [ -77.507499694824162, -7.582302093505803 ], [ -77.507057189941406, -7.584773063659668 ], [ -77.506141662597656, -7.586143016815186 ], [ -77.505317687988224, -7.58676290512085 ], [ -77.504356384277287, -7.586732864379826 ], [ -77.501594543456974, -7.585599899291935 ], [ -77.500823974609318, -7.584999084472656 ], [ -77.499885559081918, -7.583459854125977 ], [ -77.499244689941406, -7.582839965820312 ], [ -77.497550964355469, -7.582586765289307 ], [ -77.496696472167969, -7.582880973815918 ], [ -77.495948791503849, -7.583889007568359 ], [ -77.494651794433594, -7.587440013885441 ], [ -77.493408203125, -7.589695930480957 ], [ -77.492767333984375, -7.591416835784912 ], [ -77.48809814453125, -7.598898887634277 ], [ -77.486526489257756, -7.602296829223633 ], [ -77.486213684081974, -7.604649066925049 ], [ -77.487052917480469, -7.606687068939209 ], [ -77.487922668457031, -7.607864856719914 ], [ -77.489707946777344, -7.609761238098145 ], [ -77.4921875, -7.610290050506592 ], [ -77.493171691894531, -7.612139225006104 ], [ -77.494323730468693, -7.613449096679688 ], [ -77.495872497558537, -7.614425182342472 ], [ -77.497978210449105, -7.614621162414551 ], [ -77.498580932617188, -7.614393234252873 ], [ -77.499305725097599, -7.613693237304688 ], [ -77.500198364257812, -7.613361835479736 ], [ -77.500816345214787, -7.612761020660344 ], [ -77.501510620117188, -7.612604141235352 ], [ -77.502006530761719, -7.612674236297607 ], [ -77.502624511718693, -7.613113880157414 ], [ -77.503547668457031, -7.614887237548828 ], [ -77.504058837890568, -7.61533594131464 ], [ -77.504592895507812, -7.61543416976923 ], [ -77.505516052246094, -7.614677906036377 ], [ -77.506706237792969, -7.614535808563119 ], [ -77.508026123046875, -7.61299991607666 ], [ -77.509986877441349, -7.61156177520752 ], [ -77.512115478515625, -7.611286163330021 ], [ -77.513023376464787, -7.611506938934326 ], [ -77.515312194824162, -7.612660884857121 ], [ -77.516746520996037, -7.61303186416626 ], [ -77.518096923828068, -7.612932205200195 ], [ -77.519355773925781, -7.612147808074894 ], [ -77.520027160644531, -7.612100124359074 ], [ -77.52130126953125, -7.612534999847412 ], [ -77.522506713867188, -7.613602161407414 ], [ -77.524093627929631, -7.613945960998535 ], [ -77.526107788085881, -7.615044116973877 ], [ -77.528106689453068, -7.614889144897461 ], [ -77.528373718261662, -7.617961883544865 ], [ -77.529167175292969, -7.619799137115479 ], [ -77.529029846191406, -7.620859146118107 ], [ -77.528480529785099, -7.62161111831665 ], [ -77.5262451171875, -7.623359203338623 ], [ -77.524200439453068, -7.625613212585449 ], [ -77.523971557617188, -7.62841606140131 ], [ -77.522750854492131, -7.631532192230168 ], [ -77.522926330566406, -7.6335191726684 ], [ -77.524032592773438, -7.635826110839844 ], [ -77.525398254394531, -7.636394977569523 ], [ -77.526199340820256, -7.637104034423828 ], [ -77.52728271484375, -7.639845848083496 ], [ -77.528251647949219, -7.641142845153809 ], [ -77.530746459960938, -7.64215707778925 ], [ -77.531967163085938, -7.643577098846436 ], [ -77.533576965332031, -7.643360137939453 ], [ -77.535202026367188, -7.64346981048584 ], [ -77.536186218261662, -7.643870830535889 ], [ -77.537384033203125, -7.644766807556152 ], [ -77.537582397460938, -7.645273208618107 ], [ -77.537490844726562, -7.646997928619328 ], [ -77.538581848144474, -7.648381233215332 ], [ -77.539176940917855, -7.649725914001465 ], [ -77.538795471191293, -7.650307178497258 ], [ -77.538177490234375, -7.650544166564941 ], [ -77.53536224365223, -7.650544166564941 ], [ -77.534011840820256, -7.651473999023438 ], [ -77.532257080078125, -7.652162075042725 ], [ -77.530563354492131, -7.653707981109505 ], [ -77.530296325683537, -7.655353069305306 ], [ -77.528007507324162, -7.656911849975529 ], [ -77.526863098144474, -7.657406806945801 ], [ -77.525764465332031, -7.656575202941895 ], [ -77.524749755859318, -7.656217098236084 ], [ -77.523246765136662, -7.65415716171259 ], [ -77.52154541015625, -7.654619216918888 ], [ -77.519302368164062, -7.654153823852482 ], [ -77.518280029296818, -7.654520988464355 ], [ -77.516593933105469, -7.655633926391602 ], [ -77.515113830566349, -7.655732154846191 ], [ -77.513221740722599, -7.656773090362492 ], [ -77.511238098144531, -7.656982898712101 ], [ -77.511062622070312, -7.657499790191594 ], [ -77.511009216308537, -7.661513805389404 ], [ -77.510124206542969, -7.663035869598389 ], [ -77.509429931640625, -7.665211200714111 ], [ -77.507850646972656, -7.668000221252441 ], [ -77.507942199707031, -7.668951034545842 ], [ -77.508384704589844, -7.670079231262207 ], [ -77.508377075195312, -7.672093868255615 ], [ -77.509666442871094, -7.674750804901123 ], [ -77.509475708007812, -7.676351070403996 ], [ -77.508918762206974, -7.677095890045166 ], [ -77.506690979003906, -7.678843975067139 ], [ -77.503486633300724, -7.682297229766846 ], [ -77.502639770507756, -7.682719230651855 ], [ -77.500373840332031, -7.683309078216496 ], [ -77.497024536132699, -7.686419963836613 ], [ -77.49267578125, -7.685757160186768 ], [ -77.487907409667969, -7.684718132019043 ], [ -77.48638916015625, -7.6840500831604 ], [ -77.483772277832031, -7.682167053222656 ], [ -77.480110168456974, -7.681917190551701 ], [ -77.479011535644531, -7.680956840515137 ], [ -77.4774169921875, -7.678579807281437 ], [ -77.476203918456974, -7.677196979522648 ], [ -77.475151062011662, -7.676633834838867 ], [ -77.474166870117188, -7.676403045654297 ], [ -77.470764160156193, -7.676448822021484 ], [ -77.467735290527287, -7.674209117889347 ], [ -77.467201232910156, -7.674046993255615 ], [ -77.466384887695256, -7.674054145812931 ], [ -77.459915161132756, -7.680325984954834 ], [ -77.459693908691406, -7.681085109710693 ], [ -77.459640502929574, -7.682279109954777 ], [ -77.460105895996037, -7.683559894561768 ], [ -77.460220336914062, -7.684654235839844 ], [ -77.459968566894531, -7.685449123382568 ], [ -77.459297180175781, -7.686438083648682 ], [ -77.45916748046875, -7.687171936035156 ], [ -77.459442138671818, -7.688127040863037 ], [ -77.460189819335881, -7.689071178436279 ], [ -77.462852478027287, -7.690511226654053 ], [ -77.465240478515568, -7.690633773803711 ], [ -77.46636962890625, -7.690273761749211 ], [ -77.467185974121094, -7.690279006958008 ], [ -77.470939636230469, -7.691205978393555 ], [ -77.47357177734375, -7.6927170753479 ], [ -77.476860046386719, -7.695520877838135 ], [ -77.479766845703125, -7.696669101715088 ], [ -77.482398986816349, -7.697132110595646 ], [ -77.484298706054688, -7.698783874511719 ], [ -77.484756469726562, -7.6999831199646 ], [ -77.484710693359318, -7.707249164581242 ], [ -77.484390258789062, -7.708498001098576 ], [ -77.483085632324162, -7.710739135742131 ], [ -77.482757568359375, -7.711761951446533 ], [ -77.482856750488281, -7.713613033294678 ], [ -77.483436584472656, -7.715932846069336 ], [ -77.482933044433594, -7.718276023864689 ], [ -77.483009338378906, -7.719839096069336 ], [ -77.483795166015625, -7.721181869506779 ], [ -77.485816955566406, -7.723455905914307 ], [ -77.487449645996094, -7.726437091827393 ], [ -77.489578247070256, -7.728865146636963 ], [ -77.491645812988281, -7.730398178100586 ], [ -77.4947509765625, -7.731537818908691 ], [ -77.495643615722656, -7.732471942901611 ], [ -77.495597839355469, -7.736692905426025 ], [ -77.496566772460938, -7.739055156707707 ], [ -77.497879028320256, -7.739889144897404 ], [ -77.500114440917969, -7.740228176116943 ], [ -77.501312255859318, -7.741440773010254 ], [ -77.504119873046875, -7.743320941925049 ], [ -77.507972717285099, -7.745269775390568 ], [ -77.511878967285099, -7.748797893524113 ], [ -77.512527465820312, -7.748976230621281 ], [ -77.513343811035156, -7.748887062072754 ], [ -77.516815185546875, -7.746826171875 ], [ -77.517509460449162, -7.746730804443359 ], [ -77.518035888671875, -7.746899127960148 ], [ -77.520622253417969, -7.749829769134521 ], [ -77.525558471679688, -7.752342224121037 ], [ -77.526588439941293, -7.753917217254639 ], [ -77.526954650878849, -7.755350112914982 ], [ -77.526863098144474, -7.75723123550415 ], [ -77.524665832519474, -7.76085901260376 ], [ -77.524017333984375, -7.762434005737305 ], [ -77.524024963378906, -7.765145778655949 ], [ -77.524711608886719, -7.767329216003418 ], [ -77.524246215820312, -7.76855993270874 ], [ -77.522529602050781, -7.769401073455754 ], [ -77.520912170410156, -7.769592761993351 ], [ -77.520011901855469, -7.769381046295109 ], [ -77.518821716308594, -7.768268108367806 ], [ -77.517898559570256, -7.768164157867432 ], [ -77.511215209960881, -7.769252777099609 ], [ -77.507980346679631, -7.769381046295109 ], [ -77.506431579589787, -7.769877910613957 ], [ -77.505165100097656, -7.771267890930176 ], [ -77.504241943359318, -7.773234844207764 ], [ -77.504226684570312, -7.774562835693303 ], [ -77.504737854003849, -7.778066158294678 ], [ -77.504623413085881, -7.779212951660099 ], [ -77.501350402832031, -7.781836032867432 ], [ -77.498481750488281, -7.785089015960637 ], [ -77.497306823730412, -7.785637855529728 ], [ -77.494949340820312, -7.785118103027344 ], [ -77.493873596191349, -7.785575866699219 ], [ -77.492965698242188, -7.786421775817871 ], [ -77.492599487304688, -7.787255764007568 ], [ -77.492645263671875, -7.787689208984375 ], [ -77.492057800292912, -7.78871488571167 ], [ -77.491752624511662, -7.790115833282414 ], [ -77.489463806152287, -7.793582916259766 ], [ -77.488838195800781, -7.794127941131592 ], [ -77.487724304199219, -7.79456090927124 ], [ -77.485786437988281, -7.79580020904541 ], [ -77.4847412109375, -7.796140193939152 ], [ -77.481330871582031, -7.797904014587346 ], [ -77.481002807617074, -7.798350811004639 ], [ -77.480781555175724, -7.79989576339716 ], [ -77.48028564453125, -7.800669193267709 ], [ -77.479698181152344, -7.802513122558537 ], [ -77.478096008300781, -7.804141998291016 ], [ -77.477188110351449, -7.804293155670052 ], [ -77.475791931152344, -7.803602218627873 ], [ -77.4735107421875, -7.802875041961613 ], [ -77.471817016601506, -7.802460193634033 ], [ -77.470298767089787, -7.802380084991455 ], [ -77.463973999023438, -7.802895069122258 ], [ -77.459930419921875, -7.802873134613037 ], [ -77.454551696777287, -7.803528785705566 ], [ -77.452507019042969, -7.804000854492188 ], [ -77.451133728027287, -7.804957866668644 ], [ -77.450904846191406, -7.805618762969971 ], [ -77.450920104980469, -7.806847095489502 ], [ -77.450408935546875, -7.807665824890137 ], [ -77.444763183593636, -7.811835765838566 ], [ -77.443710327148381, -7.812863826751709 ], [ -77.443107604980412, -7.813789844512939 ], [ -77.442840576171818, -7.815048217773438 ], [ -77.443893432617131, -7.817877769470215 ], [ -77.443962097167969, -7.820281028747559 ], [ -77.443328857421818, -7.822670936584473 ], [ -77.442443847656193, -7.824178218841496 ], [ -77.441650390625, -7.825193881988525 ], [ -77.440628051757756, -7.825723171234074 ], [ -77.438423156738281, -7.827679157257023 ], [ -77.435478210449162, -7.828952789306641 ], [ -77.434829711914006, -7.829482078552132 ], [ -77.434585571289062, -7.829997062683105 ], [ -77.43585205078125, -7.831390857696476 ], [ -77.435989379882699, -7.832491874694824 ], [ -77.435745239257812, -7.834781169891357 ], [ -77.434837341308537, -7.836585998535156 ], [ -77.433830261230469, -7.837638854980469 ], [ -77.432472229003906, -7.840664863586369 ], [ -77.431381225585881, -7.841909885406494 ], [ -77.4312744140625, -7.842741966247559 ], [ -77.432441711425724, -7.844154834747314 ], [ -77.434829711914006, -7.845333099365178 ], [ -77.438011169433594, -7.847537040710449 ], [ -77.438438415527287, -7.848746776580754 ], [ -77.438278198242074, -7.849921226501465 ], [ -77.437011718749943, -7.851718902587834 ], [ -77.435012817382756, -7.853474140167236 ], [ -77.434249877929631, -7.855251789092961 ], [ -77.430877685546875, -7.860755920410099 ], [ -77.429176330566406, -7.864118099212646 ], [ -77.427116394042912, -7.866588115692082 ], [ -77.426712036132756, -7.867513179779053 ], [ -77.426475524902344, -7.869891166686955 ], [ -77.424774169921875, -7.877013206481934 ], [ -77.423393249511662, -7.879146099090519 ], [ -77.419052124023438, -7.884891986846867 ], [ -77.415115356445312, -7.891719818115234 ], [ -77.413299560546875, -7.894270896911621 ], [ -77.411720275878906, -7.898174762725773 ], [ -77.409614562988281, -7.901523113250732 ], [ -77.408241271972656, -7.902595996856689 ], [ -77.406898498535099, -7.902864933013916 ], [ -77.406143188476562, -7.90235519409174 ], [ -77.4029541015625, -7.898903846740723 ], [ -77.400886535644474, -7.897901058196965 ], [ -77.399787902832031, -7.897899150848389 ], [ -77.39837646484375, -7.898584842681828 ], [ -77.397415161132812, -7.899448871612549 ], [ -77.394645690917969, -7.903326034545898 ], [ -77.390663146972599, -7.906447887420597 ], [ -77.389091491699219, -7.907386779785099 ], [ -77.388366699218693, -7.907544136047363 ], [ -77.378890991210938, -7.907708168029728 ], [ -77.377761840820312, -7.908318996429443 ], [ -77.377304077148381, -7.908882141113281 ], [ -77.377143859863224, -7.911142826080322 ], [ -77.377655029296875, -7.913481235504094 ], [ -77.377670288085938, -7.915586948394662 ], [ -77.3770751953125, -7.91683912277216 ], [ -77.375480651855469, -7.918628215789738 ], [ -77.375495910644474, -7.919177055358887 ], [ -77.375816345214844, -7.919845104217529 ], [ -77.376434326171875, -7.920401096343994 ], [ -77.37738037109375, -7.920738220214787 ], [ -77.378303527832031, -7.920796871185246 ], [ -77.37939453125, -7.921280860900879 ], [ -77.381484985351562, -7.922948837280273 ], [ -77.382225036621094, -7.92387580871582 ], [ -77.383193969726562, -7.926554203033334 ], [ -77.383338928222599, -7.929769992828312 ], [ -77.3836669921875, -7.930222034454289 ], [ -77.384841918945256, -7.930954933166504 ], [ -77.385581970214844, -7.93189001083374 ], [ -77.386703491210938, -7.935482025146484 ], [ -77.386787414550781, -7.93722486495966 ], [ -77.38653564453125, -7.939150810241642 ], [ -77.386199951171818, -7.940292835235596 ], [ -77.385322570800724, -7.941906929016113 ], [ -77.385406494140625, -7.942728996276855 ], [ -77.385879516601562, -7.94371223449707 ], [ -77.386878967285156, -7.944662094116097 ], [ -77.390144348144531, -7.946533203125 ], [ -77.390823364257812, -7.948038101196289 ], [ -77.390937805175781, -7.950514793395996 ], [ -77.390357971191406, -7.955985069274902 ], [ -77.389541625976506, -7.958620071411133 ], [ -77.387718200683537, -7.961911201477051 ], [ -77.387588500976562, -7.963755130767822 ], [ -77.389907836914006, -7.96568489074707 ], [ -77.397491455078125, -7.969664096832275 ], [ -77.398895263671875, -7.971724987030029 ], [ -77.400741577148438, -7.972527027130127 ], [ -77.401336669921818, -7.973122119903508 ], [ -77.401275634765511, -7.974674224853516 ], [ -77.400558471679688, -7.976027965545654 ], [ -77.400177001953125, -7.98016881942749 ], [ -77.400260925292969, -7.982355117797852 ], [ -77.4010009765625, -7.983743190765324 ], [ -77.401924133300724, -7.983845233917236 ], [ -77.402618408203125, -7.984456062316895 ], [ -77.402618408203125, -7.987458229064828 ], [ -77.405242919921875, -7.989638805389404 ], [ -77.406211853027287, -7.9910950660705 ], [ -77.406852722167969, -7.992737770080566 ], [ -77.406639099121094, -7.996118068695012 ], [ -77.405975341796875, -7.997820854187012 ], [ -77.4049072265625, -7.999717235565129 ], [ -77.403579711914062, -8.000918388366642 ], [ -77.401008605957031, -8.004690170288086 ], [ -77.399314880371094, -8.008379936218205 ], [ -77.395980834960938, -8.008732795715332 ], [ -77.393417358398438, -8.01071834564209 ], [ -77.392120361328011, -8.012264251708984 ], [ -77.390785217285043, -8.014937400817814 ], [ -77.388763427734318, -8.018184661865234 ], [ -77.387016296386719, -8.020391464233398 ], [ -77.385749816894531, -8.021354675292912 ], [ -77.382354736328125, -8.023137092590332 ], [ -77.381484985351562, -8.025094985961914 ], [ -77.380676269531136, -8.02583122253418 ], [ -77.380043029785156, -8.026016235351562 ], [ -77.378257751464787, -8.025782585144043 ], [ -77.377838134765625, -8.026145935058537 ], [ -77.377555847167969, -8.028550148010197 ], [ -77.37591552734375, -8.03053092956543 ], [ -77.375221252441349, -8.031846046447754 ], [ -77.375358581542969, -8.032746315002385 ], [ -77.377540588378906, -8.034355163574105 ], [ -77.379508972167912, -8.035237312316781 ], [ -77.381446838378906, -8.037657737731877 ], [ -77.381454467773438, -8.038469314575138 ], [ -77.381088256835938, -8.039351463317814 ], [ -77.381301879882812, -8.042448997497559 ], [ -77.381057739257699, -8.045007705688477 ], [ -77.3818359375, -8.047145843505859 ], [ -77.383064270019531, -8.04942512512207 ], [ -77.386024475097656, -8.052923202514648 ], [ -77.386093139648381, -8.054423332214299 ], [ -77.3857421875, -8.05538272857666 ], [ -77.383537292480355, -8.057066917419434 ], [ -77.382247924804688, -8.057481765746957 ], [ -77.380226135253906, -8.0577392578125 ], [ -77.377517700195256, -8.059243202209416 ], [ -77.3765869140625, -8.059303283691406 ], [ -77.375877380371037, -8.060123443603516 ], [ -77.374229431152344, -8.06298828125 ], [ -77.372421264648438, -8.064226150512638 ], [ -77.371536254882812, -8.064503669738713 ], [ -77.369956970214844, -8.064170837402287 ], [ -77.368339538574162, -8.063454627990666 ], [ -77.367080688476562, -8.062214851379338 ], [ -77.364524841308537, -8.060710906982422 ], [ -77.36279296875, -8.058823585510254 ], [ -77.360916137695256, -8.057242393493652 ], [ -77.359519958496094, -8.05683708190918 ], [ -77.357872009277287, -8.056719779968205 ], [ -77.356803894042912, -8.056797981262207 ], [ -77.355064392089844, -8.057550430297795 ], [ -77.352928161621094, -8.057280540466252 ], [ -77.351753234863224, -8.056609153747559 ], [ -77.350967407226562, -8.055856704711857 ], [ -77.349739074707031, -8.05378341674799 ], [ -77.348197937011719, -8.053268432617188 ], [ -77.347412109375, -8.053498268127441 ], [ -77.346260070800781, -8.054464340209961 ], [ -77.345535278320312, -8.054746627807617 ], [ -77.341651916503849, -8.055312156677132 ], [ -77.338798522949162, -8.055371284484863 ], [ -77.336318969726506, -8.056697845458984 ], [ -77.335006713867188, -8.056381225585881 ], [ -77.333930969238224, -8.055156707763672 ], [ -77.331977844238281, -8.054192543029728 ], [ -77.329986572265625, -8.0538330078125 ], [ -77.32769775390625, -8.053890228271428 ], [ -77.326972961425724, -8.054510116577092 ], [ -77.326255798339844, -8.056260108947754 ], [ -77.325492858886719, -8.057365417480469 ], [ -77.324203491210881, -8.05854606628418 ], [ -77.323432922363224, -8.058806419372502 ], [ -77.321693420410156, -8.058597564697266 ], [ -77.318618774414062, -8.05642032623291 ], [ -77.317039489746037, -8.05734920501709 ], [ -77.314872741699105, -8.056592941284123 ], [ -77.311515808105412, -8.056919097900391 ], [ -77.308151245117188, -8.056814193725472 ], [ -77.307182312011719, -8.057306289672852 ], [ -77.306015014648438, -8.058433532714844 ], [ -77.304695129394531, -8.061078071594181 ], [ -77.302536010742131, -8.06400203704834 ], [ -77.300636291503849, -8.063298225402832 ], [ -77.297279357910156, -8.063372611999512 ], [ -77.295227050781136, -8.06231784820551 ], [ -77.293159484863281, -8.060376167297363 ], [ -77.290016174316406, -8.056498527526855 ], [ -77.28753662109375, -8.054216384887638 ], [ -77.28485107421875, -8.051013946533146 ], [ -77.283546447753906, -8.050315856933594 ], [ -77.282112121582031, -8.048542976379395 ], [ -77.281295776367131, -8.048069000244084 ], [ -77.279319763183594, -8.047664642333984 ], [ -77.275802612304688, -8.047647476196232 ], [ -77.272224426269474, -8.048797607421875 ], [ -77.266067504882812, -8.049554824829045 ], [ -77.262596130371037, -8.049230575561523 ], [ -77.261222839355469, -8.048766136169434 ], [ -77.259223937988281, -8.046544075012207 ], [ -77.256774902343693, -8.042237281799316 ], [ -77.256607055664062, -8.040755271911621 ], [ -77.253524780273381, -8.031998634338379 ], [ -77.25311279296875, -8.028936386108342 ], [ -77.252563476562443, -8.028161048889103 ], [ -77.247634887695256, -8.023978233337402 ], [ -77.246810913085938, -8.022571563720703 ], [ -77.246665954589787, -8.021098136901855 ], [ -77.246162414550781, -8.020133018493652 ], [ -77.243087768554688, -8.017964363098088 ], [ -77.241950988769531, -8.016630172729435 ], [ -77.24078369140625, -8.014668464660645 ], [ -77.238388061523324, -8.012908935546875 ], [ -77.235450744628906, -8.011931419372559 ], [ -77.230247497558537, -8.011207580566406 ], [ -77.225662231445312, -8.011062622070256 ], [ -77.221755981445312, -8.011320114135685 ], [ -77.213356018066406, -8.0137681961059 ], [ -77.211479187011662, -8.013460159301758 ], [ -77.209945678710881, -8.012159347534123 ], [ -77.208419799804631, -8.011607170104924 ], [ -77.205856323242131, -8.011584281921387 ], [ -77.202522277831974, -8.012036323547306 ], [ -77.199111938476562, -8.013138771057129 ], [ -77.1966552734375, -8.014533996582031 ], [ -77.193412780761719, -8.015862464904728 ], [ -77.188697814941349, -8.018752098083439 ], [ -77.186134338378906, -8.019950866699162 ], [ -77.1800537109375, -8.022171020507812 ], [ -77.178840637207031, -8.022013664245549 ], [ -77.177032470703068, -8.020857810974064 ], [ -77.173942565917969, -8.02052116394043 ], [ -77.171066284179688, -8.019813537597656 ], [ -77.170387268066349, -8.019852638244572 ], [ -77.164749145507756, -8.021879196166935 ], [ -77.162101745605469, -8.02319431304926 ], [ -77.159187316894531, -8.025119781494141 ], [ -77.151908874511719, -8.030508041381836 ], [ -77.150642395019474, -8.03127384185791 ], [ -77.149337768554688, -8.031641006469727 ], [ -77.147583007812443, -8.031624794006348 ], [ -77.144927978515511, -8.030916213989258 ], [ -77.143463134765568, -8.030742645263672 ], [ -77.136222839355412, -8.031538009643498 ], [ -77.131088256835881, -8.031439781188908 ], [ -77.129058837890625, -8.030727386474553 ], [ -77.12481689453125, -8.027848243713379 ], [ -77.124122619628849, -8.02703666687006 ], [ -77.121200561523438, -8.026057243347168 ], [ -77.118614196777344, -8.025583267211914 ], [ -77.116172790527344, -8.025431632995549 ], [ -77.111679077148438, -8.025936126708928 ], [ -77.107315063476562, -8.027438163757267 ], [ -77.105445861816293, -8.028696060180664 ], [ -77.101608276367131, -8.032648086547852 ], [ -77.099685668945312, -8.035281181335392 ], [ -77.097846984863281, -8.038508415222111 ], [ -77.096611022949219, -8.039986610412541 ], [ -77.096290588378793, -8.040829658508244 ], [ -77.094436645507812, -8.042936325073242 ], [ -77.091194152832031, -8.045473098754883 ], [ -77.087120056152287, -8.046669006347656 ], [ -77.070709228515568, -8.051327705383244 ], [ -77.066741943359375, -8.05168437957758 ], [ -77.061363220214787, -8.052993774414062 ], [ -77.059715270996094, -8.053473472595158 ], [ -77.052406311035099, -8.056547164916992 ], [ -77.047157287597599, -8.056670188903809 ], [ -77.043060302734318, -8.057489395141602 ], [ -77.039802551269474, -8.057538986206055 ], [ -77.035552978515625, -8.058445930480957 ], [ -77.033180236816406, -8.059352874755859 ], [ -77.02877044677723, -8.060070991516113 ], [ -77.024955749511605, -8.061499595642033 ], [ -77.022895812988281, -8.062650680541992 ], [ -77.020622253417969, -8.063220977783146 ], [ -77.013847351074219, -8.068216323852539 ], [ -77.010124206542969, -8.073550224304199 ], [ -77.009292602539006, -8.075165748596135 ], [ -77.007896423339844, -8.076818466186467 ], [ -77.006553649902344, -8.079490661621094 ], [ -77.004409790039062, -8.082069396972656 ], [ -77.003364562988281, -8.082761764526367 ], [ -77.00103759765625, -8.083514213561955 ], [ -76.996513366699162, -8.086139678954964 ], [ -76.993255615234375, -8.088578224182129 ], [ -76.991600036621094, -8.090373992919922 ], [ -76.990760803222656, -8.091761589050293 ], [ -76.989959716796875, -8.093973159789982 ], [ -76.989906311035156, -8.096359252929688 ], [ -76.989570617675724, -8.09816932678217 ], [ -76.986686706542912, -8.10254001617426 ], [ -76.985816955566406, -8.104668617248535 ], [ -76.985359191894474, -8.106352806091309 ], [ -76.985061645507756, -8.109284400939941 ], [ -76.984588623046818, -8.111255645751953 ], [ -76.984130859374943, -8.115742683410645 ], [ -76.983695983886719, -8.116955757141056 ], [ -76.983016967773438, -8.117954254150391 ], [ -76.981658935546761, -8.118449211120605 ], [ -76.980308532714787, -8.119791030883789 ], [ -76.97979736328125, -8.120012283325138 ], [ -76.977355957031193, -8.12034893035883 ], [ -76.9757080078125, -8.120230674743596 ], [ -76.972969055175724, -8.120417594909611 ], [ -76.970726013183594, -8.12086009979248 ], [ -76.964584350585881, -8.124053001403752 ], [ -76.961273193359375, -8.126369476318303 ], [ -76.958869934082031, -8.128357887268066 ], [ -76.952880859375, -8.134949684143066 ], [ -76.951057434082031, -8.13634204864502 ], [ -76.949050903320312, -8.137454032897949 ], [ -76.943710327148438, -8.138654708862305 ], [ -76.939666748046818, -8.138547897338867 ], [ -76.937057495117188, -8.13803768157959 ], [ -76.936042785644474, -8.138131141662541 ], [ -76.934852600097656, -8.139528274536133 ], [ -76.934181213378906, -8.142110824584961 ], [ -76.933158874511719, -8.143416404724064 ], [ -76.931961059570256, -8.144072532653752 ], [ -76.930496215820312, -8.144098281860352 ], [ -76.929237365722656, -8.144385337829476 ], [ -76.927490234374886, -8.146138191223088 ], [ -76.925537109375, -8.146661758422852 ], [ -76.92352294921875, -8.147558212280273 ], [ -76.920875549316349, -8.149829864501896 ], [ -76.917884826660156, -8.153558731079102 ], [ -76.91473388671875, -8.155418395996094 ], [ -76.910720825195312, -8.159063339233398 ], [ -76.910316467285099, -8.161487579345703 ], [ -76.909126281738281, -8.163384437560978 ], [ -76.90822601318348, -8.164162635803166 ], [ -76.907646179199162, -8.165414810180607 ], [ -76.906463623046875, -8.166723251342773 ], [ -76.906181335449219, -8.168332099914551 ], [ -76.906326293945312, -8.169526100158691 ], [ -76.907249450683537, -8.172758102416935 ], [ -76.908561706542969, -8.176285743713265 ], [ -76.909042358398438, -8.179937362670898 ], [ -76.909805297851562, -8.182593345642033 ], [ -76.910186767578125, -8.185317993164006 ], [ -76.912025451660099, -8.193021774291992 ], [ -76.912223815917912, -8.195307731628361 ], [ -76.913223266601562, -8.196957588195744 ], [ -76.916938781738281, -8.199345588684025 ], [ -76.917900085449219, -8.200189590454102 ], [ -76.920906066894474, -8.203829765319824 ], [ -76.921913146972656, -8.205361366271916 ], [ -76.922225952148381, -8.206804275512638 ], [ -76.923461914062443, -8.209754943847656 ], [ -76.924072265625, -8.209861755371094 ], [ -76.9254150390625, -8.208452224731445 ], [ -76.926246643066349, -8.20811653137207 ], [ -76.927093505859318, -8.208400726318246 ], [ -76.927558898925724, -8.209102630615234 ], [ -76.927688598632812, -8.209726333618164 ], [ -76.926841735839844, -8.212542533874455 ], [ -76.925514221191406, -8.214747428893986 ], [ -76.924339294433537, -8.217445373535099 ], [ -76.921859741210881, -8.220277786254883 ], [ -76.920555114746094, -8.222497940063477 ], [ -76.919219970703125, -8.224141120910588 ], [ -76.913284301757812, -8.234294891357422 ], [ -76.91217041015625, -8.235638618469238 ], [ -76.910438537597656, -8.237166404724064 ], [ -76.908866882324162, -8.238094329833984 ], [ -76.906394958496037, -8.238829612731934 ], [ -76.905410766601562, -8.239785194396916 ], [ -76.905189514160156, -8.241964340209961 ], [ -76.906501770019474, -8.245547294616642 ], [ -76.90777587890625, -8.247782707214355 ], [ -76.908126831054631, -8.249218940734806 ], [ -76.907920837402287, -8.251957893371582 ], [ -76.906295776367131, -8.254840850830021 ], [ -76.904701232910156, -8.259189605712891 ], [ -76.9049072265625, -8.259937286376953 ], [ -76.906578063964787, -8.261973381042367 ], [ -76.906806945800781, -8.263787269592285 ], [ -76.906578063964787, -8.264386177062931 ], [ -76.90594482421875, -8.264942169189396 ], [ -76.903846740722656, -8.265122413635254 ], [ -76.902557373046875, -8.265578269958439 ], [ -76.901466369628906, -8.266706466674748 ], [ -76.900924682617188, -8.267683982849064 ], [ -76.901351928710881, -8.268812179565373 ], [ -76.901435852050724, -8.270277976989746 ], [ -76.900825500488281, -8.274938583374023 ], [ -76.901626586914006, -8.277039527893066 ], [ -76.899826049804631, -8.281035423278752 ], [ -76.899810791015568, -8.281766891479435 ], [ -76.899360656738281, -8.282973289489746 ], [ -76.899467468261719, -8.283795356750488 ], [ -76.899238586425724, -8.285341262817383 ], [ -76.900177001953125, -8.288962364196664 ], [ -76.901229858398381, -8.290700912475586 ], [ -76.90252685546875, -8.291363716125431 ], [ -76.906547546386719, -8.292303085327148 ], [ -76.907882690429688, -8.293444633483773 ], [ -76.908699035644474, -8.294669151306096 ], [ -76.908714294433594, -8.296505928039551 ], [ -76.908454895019531, -8.297294616699219 ], [ -76.906143188476562, -8.29957389831543 ], [ -76.905517578125, -8.300636291503906 ], [ -76.905372619628906, -8.305082321166992 ], [ -76.906448364257812, -8.307609558105469 ], [ -76.908973693847599, -8.310293197631779 ], [ -76.909645080566349, -8.311600685119572 ], [ -76.910331726074219, -8.315031051635742 ], [ -76.910469055175781, -8.317425727844181 ], [ -76.911949157714844, -8.319768905639648 ], [ -76.912254333496094, -8.320601463317814 ], [ -76.912147521972656, -8.322003364562931 ], [ -76.911506652832031, -8.323622703552246 ], [ -76.911521911621094, -8.325104713439941 ], [ -76.915519714355469, -8.329181671142578 ], [ -76.917709350585938, -8.330506324768066 ], [ -76.919586181640625, -8.333674430847111 ], [ -76.922393798828125, -8.336841583251896 ], [ -76.923995971679688, -8.338234901428223 ], [ -76.925384521484318, -8.338944435119629 ], [ -76.928733825683594, -8.341275215148926 ], [ -76.929725646972656, -8.342303276062012 ], [ -76.930023193359375, -8.342925071716252 ], [ -76.929847717285099, -8.345141410827637 ], [ -76.928970336914062, -8.34687328338623 ], [ -76.928199768066406, -8.347661018371468 ], [ -76.925758361816349, -8.349120140075627 ], [ -76.924530029296818, -8.350727081298828 ], [ -76.924438476562386, -8.351722717285099 ], [ -76.924835205078125, -8.354576110839787 ], [ -76.926254272460938, -8.357769012451172 ], [ -76.928550720214844, -8.360515594482422 ], [ -76.929672241210881, -8.360937118530217 ], [ -76.930374145507812, -8.360779762268066 ], [ -76.932029724121094, -8.359459877014103 ], [ -76.934974670410156, -8.358813285827637 ], [ -76.937728881835938, -8.358942985534611 ], [ -76.940063476562443, -8.358452796936035 ], [ -76.942077636718693, -8.359039306640625 ], [ -76.942741394042912, -8.360149383544922 ], [ -76.94287109375, -8.362812995910588 ], [ -76.944740295410099, -8.369910240173283 ], [ -76.947509765624943, -8.374135971069336 ], [ -76.948783874511719, -8.375151634216252 ], [ -76.94942474365223, -8.375266075134221 ], [ -76.950637817382756, -8.374618530273381 ], [ -76.952728271484318, -8.372845649719238 ], [ -76.953590393066349, -8.371773719787541 ], [ -76.954971313476562, -8.371045112609863 ], [ -76.955978393554631, -8.371004104614258 ], [ -76.958389282226449, -8.371876716613713 ], [ -76.959823608398438, -8.371525764465332 ], [ -76.960975646972656, -8.370779037475586 ], [ -76.962753295898381, -8.370029449462834 ], [ -76.964317321777344, -8.369805335998535 ], [ -76.965095520019531, -8.369998931884766 ], [ -76.967384338378906, -8.372529029846135 ], [ -76.969223022460938, -8.373911857604924 ], [ -76.970504760742188, -8.375243186950627 ], [ -76.971237182617131, -8.376296043395939 ], [ -76.971740722656136, -8.377676963806152 ], [ -76.971939086914062, -8.381545066833439 ], [ -76.971542358398381, -8.383609771728516 ], [ -76.971473693847656, -8.385624885559082 ], [ -76.970802307128906, -8.388107299804688 ], [ -76.969566345214844, -8.390780448913517 ], [ -76.969444274902287, -8.393627166748047 ], [ -76.969589233398438, -8.394068717956543 ], [ -76.97052001953125, -8.395657539367676 ], [ -76.972015380859318, -8.396879196166935 ], [ -76.974365234375, -8.397282600402832 ], [ -76.975425720214787, -8.397802352905273 ], [ -76.97589111328125, -8.398802757263127 ], [ -76.975944519042969, -8.400554656982365 ], [ -76.976272583007812, -8.401711463928166 ], [ -76.976684570312443, -8.402421951293888 ], [ -76.977775573730469, -8.403420448303166 ], [ -76.979888916015625, -8.404730796813908 ], [ -76.981689453125, -8.405444145202637 ], [ -76.985176086425724, -8.405571937561035 ], [ -76.986099243164062, -8.404952049255371 ], [ -76.986900329589787, -8.403113365173283 ], [ -76.987228393554688, -8.400924682617131 ], [ -76.988143920898324, -8.399455070495605 ], [ -76.988235473632756, -8.396977424621582 ], [ -76.989479064941293, -8.395921707153263 ], [ -76.990142822265568, -8.39503288269043 ], [ -76.990600585937443, -8.393077850341797 ], [ -76.990615844726506, -8.389985084533635 ], [ -76.994995117187443, -8.385534286498967 ], [ -76.996444702148438, -8.382905960083008 ], [ -76.997291564941349, -8.382376670837402 ], [ -76.998527526855412, -8.382099151611328 ], [ -76.999496459960938, -8.382284164428654 ], [ -77.002510070800724, -8.384547233581543 ], [ -77.004058837890568, -8.385298728942871 ], [ -77.006156921386662, -8.38730525970459 ], [ -77.007537841796875, -8.389104843139648 ], [ -77.011161804199219, -8.391318321228027 ], [ -77.014289855957031, -8.394468307495117 ], [ -77.017837524414062, -8.396662712097168 ], [ -77.019073486328125, -8.396957397460938 ], [ -77.020034790039062, -8.397622108459416 ], [ -77.021064758300781, -8.397994041442871 ], [ -77.023628234863281, -8.399688720703068 ], [ -77.024673461914062, -8.400706291198674 ], [ -77.028739929199162, -8.402600288391113 ], [ -77.031356811523438, -8.40422534942627 ], [ -77.036033630371094, -8.40559005737299 ], [ -77.042961120605412, -8.405376434326172 ], [ -77.045394897460938, -8.404648780822754 ], [ -77.047386169433594, -8.403571128845158 ], [ -77.049018859863281, -8.40300273895258 ], [ -77.050430297851562, -8.402877807617188 ], [ -77.05694580078125, -8.400103569030762 ], [ -77.058097839355469, -8.399863243102971 ], [ -77.06072998046875, -8.398069381713867 ], [ -77.061897277832031, -8.397592544555664 ], [ -77.066001892089844, -8.396892547607422 ], [ -77.068168640136719, -8.398192405700684 ], [ -77.069534301757812, -8.399559020996094 ], [ -77.069992065429688, -8.40013599395752 ], [ -77.070266723632812, -8.401689529418945 ], [ -77.072639465331918, -8.403530120849609 ], [ -77.074333190917912, -8.404389381408635 ], [ -77.075653076171875, -8.403876304626408 ], [ -77.077491760253849, -8.402011871337891 ], [ -77.078941345214844, -8.401977539062443 ], [ -77.081581115722599, -8.401275634765625 ], [ -77.082550048828068, -8.401488304138127 ], [ -77.083992004394531, -8.402257919311523 ], [ -77.085716247558594, -8.402846336364746 ], [ -77.086921691894474, -8.403790473937988 ], [ -77.087791442871037, -8.405473709106388 ], [ -77.087753295898438, -8.408548355102539 ], [ -77.088348388671818, -8.410045623779297 ], [ -77.08868408203125, -8.412197113037053 ], [ -77.088340759277287, -8.414230346679688 ], [ -77.088287353515625, -8.417031288146973 ], [ -77.087501525878849, -8.419026374816895 ], [ -77.089859008789062, -8.424020767211914 ], [ -77.091491699218693, -8.42513370513916 ], [ -77.093124389648381, -8.425712585449162 ], [ -77.094032287597656, -8.427956581115666 ], [ -77.094024658203125, -8.43128490447998 ], [ -77.093246459960938, -8.433954238891602 ], [ -77.093452453613281, -8.435120582580566 ], [ -77.094215393066406, -8.43555831909174 ], [ -77.096519470214844, -8.435320854186955 ], [ -77.098274230956974, -8.436964988708439 ], [ -77.101852416992188, -8.435989379882812 ], [ -77.102516174316406, -8.435532569885254 ], [ -77.103202819824219, -8.43669605255127 ], [ -77.103057861328068, -8.440059661865234 ], [ -77.103889465331974, -8.441878318786621 ], [ -77.103698730468693, -8.443670272827148 ], [ -77.103897094726506, -8.444367408752441 ], [ -77.105560302734375, -8.445351600646973 ], [ -77.112869262695256, -8.447245597839299 ], [ -77.11749267578125, -8.448088645935059 ], [ -77.119453430175724, -8.448122978210392 ], [ -77.121002197265625, -8.447873115539494 ], [ -77.123558044433537, -8.446981430053711 ], [ -77.128021240234318, -8.444805145263615 ], [ -77.130294799804688, -8.44300365447998 ], [ -77.131172180175724, -8.442816734313965 ], [ -77.132240295410099, -8.442334175109806 ], [ -77.133522033691406, -8.44094181060791 ], [ -77.134170532226562, -8.441113471984806 ], [ -77.135726928710938, -8.443481445312386 ], [ -77.140823364257756, -8.448098182678223 ], [ -77.145408630371094, -8.452863693237248 ], [ -77.146469116210938, -8.45426082611084 ], [ -77.146987915039062, -8.454429626464787 ], [ -77.148704528808594, -8.454311370849609 ], [ -77.149597167968693, -8.456130027770939 ], [ -77.150352478027287, -8.457112312316838 ], [ -77.153556823730469, -8.458089828491154 ], [ -77.155227661132699, -8.460195541381779 ], [ -77.158576965332031, -8.461938858032227 ], [ -77.161155700683594, -8.464518547058049 ], [ -77.164321899414062, -8.467015266418457 ], [ -77.171508789062443, -8.470128059387207 ], [ -77.174423217773438, -8.470664024353027 ], [ -77.175468444824219, -8.472691535949707 ], [ -77.176109313964787, -8.473384857177734 ], [ -77.177879333496094, -8.474640846252441 ], [ -77.180252075195312, -8.475611686706543 ], [ -77.180885314941406, -8.476105690002385 ], [ -77.181312561035156, -8.476807594299316 ], [ -77.181098937988281, -8.478264808654785 ], [ -77.181388854980469, -8.478894233703613 ], [ -77.183403015136719, -8.478814125061035 ], [ -77.184982299804574, -8.480285644531193 ], [ -77.185821533203068, -8.480778694152775 ], [ -77.188461303710938, -8.479497909545898 ], [ -77.190620422363281, -8.479458808898812 ], [ -77.193313598632812, -8.479796409606934 ], [ -77.194343566894531, -8.480468749999943 ], [ -77.196571350097656, -8.481006622314453 ], [ -77.197174072265568, -8.481572151184082 ], [ -77.197288513183594, -8.482370376586914 ], [ -77.197807312011719, -8.48299598693842 ], [ -77.200134277343693, -8.483671188354435 ], [ -77.202117919921818, -8.485298156738281 ], [ -77.203407287597656, -8.485660552978516 ], [ -77.205429077148438, -8.485530853271428 ], [ -77.207138061523438, -8.484445571899414 ], [ -77.209892272949219, -8.483318328857365 ], [ -77.213661193847599, -8.483287811279297 ], [ -77.215110778808537, -8.48297119140625 ], [ -77.217826843261719, -8.481762886047363 ], [ -77.219657897949219, -8.479981422424316 ], [ -77.220260620117131, -8.479661941528263 ], [ -77.221206665039006, -8.479630470275822 ], [ -77.222343444824162, -8.480010986328125 ], [ -77.224227905273438, -8.479801177978459 ], [ -77.228149414062443, -8.478379249572697 ], [ -77.229331970214844, -8.478128433227482 ], [ -77.232315063476562, -8.478055000305176 ], [ -77.233703613281193, -8.478545188903752 ], [ -77.235580444335938, -8.478299140930119 ], [ -77.237174987792969, -8.477566719055176 ], [ -77.239166259765625, -8.475757598876953 ], [ -77.244750976562443, -8.474821090698242 ], [ -77.245330810546818, -8.474474906921387 ], [ -77.246490478515568, -8.473130226135197 ], [ -77.247894287109318, -8.472869873046875 ], [ -77.250297546386662, -8.472863197326603 ], [ -77.254447937011719, -8.47127723693842 ], [ -77.256324768066406, -8.471057891845703 ], [ -77.259963989257812, -8.470062255859318 ], [ -77.260879516601506, -8.469478607177734 ], [ -77.262863159179631, -8.467279434204102 ], [ -77.263916015624943, -8.467099189758301 ], [ -77.264602661132756, -8.467548370361328 ], [ -77.265586853027344, -8.468845367431584 ], [ -77.265609741210938, -8.47113132476801 ], [ -77.265892028808594, -8.471735000610295 ], [ -77.266616821288949, -8.472346305847111 ], [ -77.267929077148381, -8.472643852233887 ], [ -77.269355773925724, -8.473415374755803 ], [ -77.2706298828125, -8.474417686462346 ], [ -77.271598815917969, -8.475559234619141 ], [ -77.272468566894531, -8.481042861938477 ], [ -77.272941589355469, -8.482705116271973 ], [ -77.273818969726562, -8.484342575073185 ], [ -77.276916503906136, -8.488789558410588 ], [ -77.276969909667969, -8.490017890930119 ], [ -77.277549743652287, -8.491949081420842 ], [ -77.277397155761719, -8.492880821228027 ], [ -77.276695251464787, -8.494330406188965 ], [ -77.276870727539062, -8.495942115783635 ], [ -77.277702331542969, -8.497173309326058 ], [ -77.280250549316349, -8.499795913696175 ], [ -77.281036376953125, -8.501283645629883 ], [ -77.2821044921875, -8.504223823547306 ], [ -77.283164978027344, -8.505670547485352 ], [ -77.287368774414062, -8.508584022521973 ], [ -77.288887023925781, -8.510808944702148 ], [ -77.290191650390625, -8.513566017150822 ], [ -77.292030334472656, -8.515536308288517 ], [ -77.296600341796875, -8.517840385436955 ], [ -77.299468994140625, -8.520651817321777 ], [ -77.302833557128849, -8.521273612976017 ], [ -77.306953430175724, -8.52163028717041 ], [ -77.308586120605469, -8.522106170654297 ], [ -77.310295104980355, -8.522929191589355 ], [ -77.312072753906193, -8.52414608001709 ], [ -77.313972473144531, -8.525800704955998 ], [ -77.31585693359375, -8.52796554565424 ], [ -77.316909790039062, -8.529678344726506 ], [ -77.31768798828125, -8.529908180236703 ], [ -77.319664001464844, -8.529985427856445 ], [ -77.322692871093636, -8.529750823974609 ], [ -77.325157165527287, -8.529229164123478 ], [ -77.326507568359261, -8.529331207275391 ], [ -77.327705383300781, -8.529729843139592 ], [ -77.328620910644531, -8.530456542968636 ], [ -77.329856872558594, -8.530956268310547 ], [ -77.331192016601562, -8.531867980956974 ], [ -77.331626892089787, -8.532435417175179 ], [ -77.333419799804688, -8.533472061157227 ], [ -77.334777832031193, -8.53363037109375 ], [ -77.335548400878849, -8.533460617065316 ], [ -77.336975097656193, -8.532087326049805 ], [ -77.338943481445312, -8.528143882751351 ], [ -77.339935302734318, -8.526863098144531 ], [ -77.341049194335938, -8.525962829589787 ], [ -77.342926025390625, -8.525344848632812 ], [ -77.344139099121037, -8.524271011352482 ], [ -77.345062255859375, -8.520930290222168 ], [ -77.346534729003793, -8.519223213195744 ], [ -77.347785949707031, -8.518357276916447 ], [ -77.348625183105412, -8.516868591308594 ], [ -77.349433898925781, -8.516465187072754 ], [ -77.350761413574219, -8.516683578491211 ], [ -77.351455688476562, -8.51652717590332 ], [ -77.35296630859375, -8.515097618103027 ], [ -77.353622436523438, -8.513531684875488 ], [ -77.355087280273381, -8.512310981750488 ], [ -77.359611511230469, -8.511631011962891 ], [ -77.36212158203125, -8.510605812072754 ], [ -77.364044189453125, -8.509146690368596 ], [ -77.365669250488224, -8.507221221923828 ], [ -77.366073608398381, -8.50555515289301 ], [ -77.366302490234375, -8.502057075500431 ], [ -77.366600036621094, -8.501404762268066 ], [ -77.367767333984318, -8.500222206115666 ], [ -77.369987487792912, -8.498954772949162 ], [ -77.371032714843693, -8.498936653137207 ], [ -77.373405456542912, -8.497957229614201 ], [ -77.379104614257812, -8.494930267333984 ], [ -77.380317687988281, -8.494768142700195 ], [ -77.382316589355469, -8.493969917297363 ], [ -77.385124206542912, -8.493762969970703 ], [ -77.388618469238281, -8.492332458496094 ], [ -77.390495300292912, -8.491019248962346 ], [ -77.393257141113224, -8.488074302673283 ], [ -77.397041320800781, -8.485257148742619 ], [ -77.399063110351506, -8.483474731445312 ], [ -77.400405883789006, -8.481459617614746 ], [ -77.400672912597599, -8.477572441101017 ], [ -77.402374267578125, -8.473448753356934 ], [ -77.402626037597656, -8.472264289855957 ], [ -77.402290344238224, -8.470114707946777 ], [ -77.401832580566349, -8.468706130981332 ], [ -77.399871826171875, -8.466126441955566 ], [ -77.399200439453125, -8.464783668518066 ], [ -77.39910888671875, -8.462363243103027 ], [ -77.399337768554631, -8.459259033203125 ], [ -77.400009155273381, -8.457366943359375 ], [ -77.402992248535043, -8.453039169311467 ], [ -77.403785705566406, -8.45229434967041 ], [ -77.403831481933537, -8.449869155883789 ], [ -77.404777526855412, -8.447207450866699 ], [ -77.404823303222656, -8.443157196044922 ], [ -77.405799865722656, -8.440902709960881 ], [ -77.406684875488224, -8.440118789672852 ], [ -77.409507751464844, -8.440500259399414 ], [ -77.410812377929574, -8.440167427062875 ], [ -77.415008544921761, -8.440258026123047 ], [ -77.417388916015568, -8.439907073974609 ], [ -77.418716430664006, -8.438942909240723 ], [ -77.419906616210938, -8.436379432678223 ], [ -77.421737670898438, -8.434576034545898 ], [ -77.424385070800781, -8.433277130126839 ], [ -77.429496765136662, -8.431609153747502 ], [ -77.431266784667969, -8.429556846618652 ], [ -77.432785034179688, -8.426555633544922 ], [ -77.4337158203125, -8.425771713256779 ], [ -77.435356140136719, -8.425166130065918 ], [ -77.438674926757812, -8.421439170837402 ], [ -77.438911437988224, -8.419440269470215 ], [ -77.438301086425781, -8.416498184204102 ], [ -77.437294006347599, -8.414599418640137 ], [ -77.436721801757756, -8.410859107971135 ], [ -77.437019348144474, -8.40601634979248 ], [ -77.437957763671818, -8.399176597595158 ], [ -77.438728332519474, -8.397318840026855 ], [ -77.44000244140625, -8.395088195800781 ], [ -77.443107604980412, -8.390838623046761 ], [ -77.444770812988281, -8.386282920837402 ], [ -77.448326110839844, -8.381543159484863 ], [ -77.449882507324162, -8.377223968505859 ], [ -77.44991302490223, -8.375605583190918 ], [ -77.449501037597599, -8.373618125915471 ], [ -77.447357177734375, -8.370315551757756 ], [ -77.447189331054688, -8.369685173034668 ], [ -77.447326660156193, -8.368736267089844 ], [ -77.448364257812443, -8.367589950561467 ], [ -77.44964599609375, -8.366188049316406 ], [ -77.450271606445256, -8.363718032836914 ], [ -77.451972961425781, -8.36217021942133 ], [ -77.452629089355469, -8.360832214355469 ], [ -77.452896118164062, -8.359933853149414 ], [ -77.452941894531193, -8.357502937316895 ], [ -77.453620910644474, -8.356314659118652 ], [ -77.454170227050724, -8.355868339538574 ], [ -77.454658508300724, -8.355784416198674 ], [ -77.458190917968693, -8.356712341308594 ], [ -77.458717346191406, -8.356355667114201 ], [ -77.459251403808537, -8.355320930480957 ], [ -77.459182739257812, -8.354100227355957 ], [ -77.458534240722656, -8.352616310119572 ], [ -77.457855224609375, -8.349996566772461 ], [ -77.45758056640625, -8.346249580383301 ], [ -77.457977294921875, -8.33979415893549 ], [ -77.459251403808537, -8.333868026733398 ], [ -77.461639404296818, -8.331565856933594 ], [ -77.463188171386719, -8.330853462219181 ], [ -77.464645385742188, -8.330824851989689 ], [ -77.467651367187386, -8.331204414367676 ], [ -77.468688964843693, -8.331485748290959 ], [ -77.469993591308594, -8.332193374633789 ], [ -77.471420288085938, -8.33191013336176 ], [ -77.473815917968693, -8.330404281616154 ], [ -77.476325988769474, -8.327958106994629 ], [ -77.4781494140625, -8.32563304901123 ], [ -77.478263854980469, -8.324685096740723 ], [ -77.477752685546818, -8.323922157287598 ], [ -77.476806640624886, -8.323863029479924 ], [ -77.475379943847656, -8.32427978515625 ], [ -77.474533081054688, -8.323912620544434 ], [ -77.473304748535156, -8.322799682617188 ], [ -77.473197937011719, -8.32160758972168 ], [ -77.473464965820256, -8.319869041442871 ], [ -77.474151611328125, -8.318258285522461 ], [ -77.474639892578125, -8.31778621673584 ], [ -77.475822448730412, -8.31701755523676 ], [ -77.479789733886719, -8.316243171691895 ], [ -77.481109619140625, -8.315267562866211 ], [ -77.481712341308594, -8.314396858215332 ], [ -77.482200622558594, -8.313118934631291 ], [ -77.482467651367188, -8.311934471130314 ], [ -77.4825439453125, -8.310026168823242 ], [ -77.482955932617188, -8.308922767639103 ], [ -77.485473632812443, -8.305011749267578 ], [ -77.487434387207031, -8.303199768066406 ], [ -77.487312316894531, -8.301836967468148 ], [ -77.486289978027344, -8.298555374145451 ], [ -77.486343383788949, -8.296881675720215 ], [ -77.488868713378906, -8.290448188781738 ], [ -77.489173889160099, -8.287908554077148 ], [ -77.489776611328011, -8.285987854003906 ], [ -77.492172241210938, -8.280279159545898 ], [ -77.493118286132812, -8.279308319091797 ], [ -77.494773864746094, -8.278744697570801 ], [ -77.497192382812443, -8.278520584106388 ], [ -77.499725341796875, -8.27869701385498 ], [ -77.504219055175781, -8.274527549743596 ], [ -77.505241394042969, -8.273872375488281 ], [ -77.50823974609375, -8.274277687072754 ], [ -77.509689331054631, -8.274269104003849 ], [ -77.510673522949219, -8.273946762084904 ], [ -77.513351440429688, -8.272303581237793 ], [ -77.514846801757756, -8.272356033325195 ], [ -77.516120910644531, -8.271916389465275 ], [ -77.518379211425724, -8.272126197814885 ], [ -77.519546508789062, -8.271406173706055 ], [ -77.520729064941406, -8.271235466003418 ], [ -77.521881103515568, -8.270289421081543 ], [ -77.523048400878849, -8.270002365112305 ], [ -77.524787902832031, -8.268500328063965 ], [ -77.527198791503906, -8.26759147644043 ], [ -77.527839660644531, -8.267142295837402 ], [ -77.528327941894531, -8.266153335571289 ], [ -77.5284423828125, -8.265078544616699 ], [ -77.528015136718693, -8.263100624084473 ], [ -77.527366638183594, -8.261632919311467 ], [ -77.526741027832031, -8.258320808410645 ], [ -77.52679443359375, -8.252128601074219 ], [ -77.527496337890625, -8.24945068359375 ], [ -77.528915405273438, -8.246696472167969 ], [ -77.529891967773381, -8.245088577270508 ], [ -77.531501770019531, -8.243651390075627 ], [ -77.536010742187443, -8.241533279418888 ], [ -77.537490844726562, -8.241326332092171 ], [ -77.539649963378849, -8.241367340087834 ], [ -77.541519165039062, -8.240992546081429 ], [ -77.545661926269418, -8.238020896911564 ], [ -77.547676086425781, -8.237222671508732 ], [ -77.550178527832031, -8.236635208129883 ], [ -77.553009033203125, -8.236654281616154 ], [ -77.556602478027287, -8.237832069396973 ], [ -77.559150695800781, -8.238171577453556 ], [ -77.561698913574219, -8.238010406494141 ], [ -77.563583374023381, -8.238150596618652 ], [ -77.565902709960938, -8.237387657165527 ], [ -77.567131042480469, -8.236149787902775 ], [ -77.569183349609318, -8.234600067138615 ], [ -77.573959350585881, -8.232788085937443 ], [ -77.574745178222599, -8.232033729553223 ], [ -77.575332641601562, -8.230666160583439 ], [ -77.575340270996094, -8.228920936584416 ], [ -77.573982238769474, -8.22584056854248 ], [ -77.573532104492188, -8.223999977111816 ], [ -77.573463439941406, -8.21982479095459 ], [ -77.573860168456974, -8.21661472320551 ], [ -77.573417663574219, -8.214926719665471 ], [ -77.573318481445199, -8.213173866271916 ], [ -77.572532653808537, -8.211173057556152 ], [ -77.569549560546875, -8.206673622131291 ], [ -77.566490173339844, -8.204235076904297 ], [ -77.56587982177723, -8.203029632568303 ], [ -77.563621520996094, -8.200714111328125 ], [ -77.561576843261662, -8.198031425476074 ], [ -77.560203552246094, -8.197190284729004 ], [ -77.558151245117131, -8.196491241455078 ], [ -77.557723999023438, -8.196140289306641 ], [ -77.557258605957031, -8.195476531982422 ], [ -77.557334899902344, -8.194254875183049 ], [ -77.559379577636662, -8.192118644714355 ], [ -77.559837341308537, -8.190996170043832 ], [ -77.561332702636719, -8.189881324768066 ], [ -77.562492370605469, -8.189496040344238 ], [ -77.56341552734375, -8.188919067382756 ], [ -77.564735412597543, -8.187764167785645 ], [ -77.565338134765625, -8.18659496307373 ], [ -77.566444396972599, -8.183379173278752 ], [ -77.569107055664006, -8.177931785583439 ], [ -77.569358825683594, -8.176882743835392 ], [ -77.572952270507812, -8.171834945678711 ], [ -77.573516845703125, -8.170611381530648 ], [ -77.575736999511719, -8.168238639831543 ], [ -77.577545166015625, -8.167386054992619 ], [ -77.582824707031193, -8.166214942932129 ], [ -77.586929321289006, -8.164499282836914 ], [ -77.588935852050724, -8.164203643798828 ], [ -77.591728210449219, -8.163210868835449 ], [ -77.595016479492188, -8.162494659423771 ], [ -77.596450805664062, -8.16175365447998 ], [ -77.600196838378849, -8.158873558044377 ], [ -77.601402282714844, -8.158296585083008 ], [ -77.602859497070256, -8.157961845397949 ], [ -77.605163574218693, -8.156375885009766 ], [ -77.606246948242188, -8.154354095458984 ], [ -77.607086181640625, -8.151366233825684 ], [ -77.608047485351562, -8.150069236755371 ], [ -77.608131408691406, -8.148457527160645 ], [ -77.607536315917912, -8.146944999694767 ], [ -77.60540771484375, -8.144880294799805 ], [ -77.604469299316349, -8.143088340759277 ], [ -77.602424621582031, -8.140940666198674 ], [ -77.601982116699219, -8.138829231262207 ], [ -77.602279663085881, -8.136820793151799 ], [ -77.60321044921875, -8.135695457458439 ], [ -77.604515075683594, -8.134700775146484 ], [ -77.608039855957031, -8.133342742919865 ], [ -77.609855651855469, -8.132191658019963 ], [ -77.611038208007812, -8.131893157958928 ], [ -77.612113952636662, -8.132022857666016 ], [ -77.615211486816406, -8.131750106811467 ], [ -77.616119384765568, -8.131534576415902 ], [ -77.616790771484318, -8.131064414978027 ], [ -77.617790222167969, -8.129962921142578 ], [ -77.618576049804688, -8.128559112548771 ], [ -77.621101379394531, -8.12116527557373 ], [ -77.622566223144531, -8.118898391723519 ], [ -77.623825073242188, -8.117895126342773 ], [ -77.624588012695312, -8.117160797119141 ], [ -77.625503540039062, -8.11694431304926 ], [ -77.626739501953125, -8.116106033325138 ], [ -77.628616333007756, -8.115984916687012 ], [ -77.630111694335938, -8.115299224853459 ], [ -77.630622863769474, -8.114718437194767 ], [ -77.631195068359318, -8.112896919250488 ], [ -77.63301849365223, -8.112028121948185 ], [ -77.635177612304631, -8.110339164733773 ], [ -77.636466979980469, -8.109012603759709 ], [ -77.636566162109375, -8.10818958282465 ], [ -77.634841918945312, -8.104822158813477 ], [ -77.632118225097656, -8.101124763488713 ], [ -77.630081176757812, -8.098971366882267 ], [ -77.626472473144531, -8.096364021301213 ], [ -77.625007629394418, -8.09477519989008 ], [ -77.623115539550781, -8.090601921081543 ], [ -77.619117736816406, -8.083885192871094 ], [ -77.618713378906136, -8.082740783691406 ], [ -77.6185302734375, -8.081000328063965 ], [ -77.619338989257812, -8.07978343963623 ], [ -77.620590209960881, -8.076377868652287 ], [ -77.621459960937443, -8.07534122467041 ], [ -77.622650146484375, -8.074438095092717 ], [ -77.624595642089787, -8.073857307434025 ], [ -77.628410339355412, -8.071576118469238 ], [ -77.631820678710938, -8.069934844970703 ], [ -77.633232116699219, -8.069536209106445 ], [ -77.636718749999943, -8.069062232971135 ], [ -77.63912200927723, -8.068188667297363 ], [ -77.641410827636605, -8.067993164062443 ], [ -77.643035888671875, -8.067312240600586 ], [ -77.644248962402287, -8.06645679473877 ], [ -77.645896911621094, -8.063662528991699 ], [ -77.646636962890568, -8.061371803283691 ], [ -77.646934509277287, -8.056381225585881 ], [ -77.646591186523438, -8.055507659912053 ], [ -77.646568298339844, -8.053077697753906 ], [ -77.64666748046875, -8.051875114440861 ], [ -77.647125244140568, -8.050742149353027 ], [ -77.649177551269531, -8.051731109619141 ], [ -77.650131225585938, -8.051616668701058 ], [ -77.651206970214787, -8.051050186157227 ], [ -77.651611328124943, -8.051083564758301 ], [ -77.653106689453068, -8.052821159362736 ], [ -77.653808593749886, -8.053213119506836 ], [ -77.657562255859375, -8.053241729736328 ], [ -77.6583251953125, -8.054220199584904 ], [ -77.659622192382756, -8.055209159851017 ], [ -77.662887573242188, -8.055964469909611 ], [ -77.663749694824219, -8.057358741760197 ], [ -77.665313720703068, -8.058837890624943 ], [ -77.666397094726449, -8.058956146240178 ], [ -77.667320251464787, -8.058716773986816 ], [ -77.669258117675668, -8.060159683227539 ], [ -77.671554565429688, -8.060054779052734 ], [ -77.673339843749943, -8.060666084289494 ], [ -77.676033020019531, -8.060891151428109 ], [ -77.681480407714844, -8.063222885131836 ], [ -77.683090209960938, -8.063321113586426 ], [ -77.685386657714844, -8.06303596496582 ], [ -77.689178466796818, -8.060969352722168 ], [ -77.69036865234375, -8.060807228088379 ], [ -77.691970825195312, -8.062440872192269 ], [ -77.694259643554688, -8.062363624572754 ], [ -77.695159912109375, -8.063865661621094 ], [ -77.697998046875, -8.064010620117131 ], [ -77.699188232421818, -8.065484046936035 ], [ -77.700798034667912, -8.066450119018555 ], [ -77.705238342285156, -8.068044662475529 ], [ -77.709945678710881, -8.069269180297852 ], [ -77.711532592773438, -8.070244789123535 ], [ -77.715301513671818, -8.073139190673771 ], [ -77.716392517089844, -8.073675155639592 ], [ -77.717720031738281, -8.073845863342228 ], [ -77.720565795898324, -8.073734283447209 ], [ -77.729286193847656, -8.071432113647461 ], [ -77.730888366699219, -8.071754455566406 ], [ -77.733230590820256, -8.072768211364746 ], [ -77.735786437988281, -8.072875022888184 ], [ -77.739311218261719, -8.071941375732422 ], [ -77.741363525390625, -8.070425033569279 ], [ -77.741935729980469, -8.070269584655705 ], [ -77.742309570312386, -8.070708274841309 ], [ -77.742935180664062, -8.072899818420353 ], [ -77.744674682617131, -8.074957847595101 ], [ -77.745452880859318, -8.077401161193848 ], [ -77.746307373046818, -8.078045845031681 ], [ -77.748199462890568, -8.077943801879883 ], [ -77.74908447265625, -8.078298568725586 ], [ -77.749626159667912, -8.07825756072998 ], [ -77.752189636230469, -8.077130317687988 ], [ -77.755928039550724, -8.077691078186035 ], [ -77.759902954101562, -8.075687408447266 ], [ -77.761100769042969, -8.075415611267033 ], [ -77.763229370117188, -8.076225280761719 ], [ -77.764503479003849, -8.076984405517464 ], [ -77.765144348144531, -8.077692985534611 ], [ -77.766624450683537, -8.078413009643555 ], [ -77.771781921386719, -8.077547073364258 ], [ -77.777984619140625, -8.078076362609863 ], [ -77.782363891601449, -8.078786849975586 ], [ -77.78619384765625, -8.080512046813965 ], [ -77.788162231445256, -8.08076286315918 ], [ -77.790260314941349, -8.079511642455941 ], [ -77.791831970214844, -8.077494621276855 ], [ -77.792350769042912, -8.075700759887695 ], [ -77.792495727539062, -8.071381568908578 ], [ -77.792747497558537, -8.070755004882756 ], [ -77.795692443847599, -8.070925712585392 ], [ -77.801132202148381, -8.069967269897404 ], [ -77.805709838867131, -8.069782257080078 ], [ -77.8065185546875, -8.069326400756836 ], [ -77.807403564453125, -8.06844425201416 ], [ -77.808654785156193, -8.0665283203125 ], [ -77.809371948242188, -8.066142082214355 ], [ -77.810188293456974, -8.066046714782715 ], [ -77.812019348144474, -8.066901206970215 ], [ -77.814521789550781, -8.068943023681584 ], [ -77.823631286621037, -8.078150749206543 ], [ -77.827934265136662, -8.081618309020939 ], [ -77.829727172851506, -8.083578109741154 ], [ -77.830268859863281, -8.083598136901855 ], [ -77.8309326171875, -8.083124160766545 ], [ -77.833251953125, -8.0787096023559 ], [ -77.834518432617131, -8.077145576477051 ], [ -77.835906982421875, -8.076069831848145 ], [ -77.8380126953125, -8.07485294342041 ], [ -77.840232849121037, -8.074295043945256 ], [ -77.841056823730469, -8.074362754821721 ], [ -77.84206390380848, -8.075060844421387 ], [ -77.842414855956974, -8.07561016082758 ], [ -77.842544555664062, -8.077107429504395 ], [ -77.842895507812443, -8.077828407287598 ], [ -77.84552001953125, -8.080584526061898 ], [ -77.846572875976562, -8.081372261047306 ], [ -77.848556518554688, -8.080218315124512 ], [ -77.851173400878906, -8.07769775390625 ], [ -77.853317260742074, -8.076291084289551 ], [ -77.853881835937443, -8.075538635253849 ], [ -77.855445861816406, -8.072409629821777 ], [ -77.860130310058594, -8.068367004394474 ], [ -77.860931396484318, -8.066653251647892 ], [ -77.86163330078125, -8.062094688415527 ], [ -77.86248779296875, -8.059966087341252 ], [ -77.864822387695256, -8.057175636291504 ], [ -77.866035461425781, -8.056282997131291 ], [ -77.867263793945312, -8.055812835693246 ], [ -77.868186950683537, -8.056122779846078 ], [ -77.870292663574105, -8.057798385620117 ], [ -77.873519897460881, -8.057891845703068 ], [ -77.876838684081974, -8.059069633483887 ], [ -77.877738952636719, -8.059635162353516 ], [ -77.879493713378906, -8.061328887939396 ], [ -77.880958557128849, -8.062024116516056 ], [ -77.88232421875, -8.063514709472599 ], [ -77.883773803710938, -8.064244270324707 ], [ -77.885902404785099, -8.063838005065918 ], [ -77.889198303222656, -8.061964988708439 ], [ -77.890701293945199, -8.061422348022461 ], [ -77.894065856933594, -8.061000823974609 ], [ -77.895439147949162, -8.061053276062012 ], [ -77.896194458007812, -8.061310768127441 ], [ -77.896934509277344, -8.062424659729004 ], [ -77.896629333496094, -8.064423561096191 ], [ -77.896659851074219, -8.068334579467717 ], [ -77.897247314453068, -8.072747230529785 ], [ -77.897804260253906, -8.074019432067871 ], [ -77.8980712890625, -8.077241897583008 ], [ -77.8984375, -8.078883171081543 ], [ -77.899154663085881, -8.080334663391056 ], [ -77.900535583496094, -8.08199405670166 ], [ -77.901336669921875, -8.083553314208928 ], [ -77.902206420898381, -8.086933135986328 ], [ -77.904380798339844, -8.092159271240234 ], [ -77.9051513671875, -8.094745635986328 ], [ -77.905540466308594, -8.098249435424805 ], [ -77.905548095703068, -8.100939750671387 ], [ -77.905342102050781, -8.102107048034611 ], [ -77.904289245605469, -8.104317665100098 ], [ -77.904365539550781, -8.10539436340332 ], [ -77.906082153320312, -8.106900215148926 ], [ -77.906272888183594, -8.107928276061955 ], [ -77.907234191894531, -8.108445167541447 ], [ -77.90777587890625, -8.109056472778263 ], [ -77.907768249511662, -8.110942840576172 ], [ -77.908889770507756, -8.11339282989502 ], [ -77.909187316894474, -8.116470336914062 ], [ -77.910224914550724, -8.118044853210392 ], [ -77.910667419433594, -8.120012283325138 ], [ -77.911781311035156, -8.120796203613281 ], [ -77.913383483886662, -8.120966911315918 ], [ -77.913795471191406, -8.121281623840332 ], [ -77.913719177246094, -8.123620033264103 ], [ -77.914817810058537, -8.124814033508301 ], [ -77.915054321289062, -8.126006126403809 ], [ -77.916221618652344, -8.127803802490178 ], [ -77.916015625, -8.130623817443848 ], [ -77.916168212890625, -8.131534576415902 ], [ -77.916694641113281, -8.132695198059025 ], [ -77.917892456054688, -8.133789062499943 ], [ -77.918228149414006, -8.134357452392578 ], [ -77.918251037597599, -8.13611888885498 ], [ -77.9185791015625, -8.137560844421387 ], [ -77.918403625488281, -8.140895843505859 ], [ -77.920875549316406, -8.143731117248478 ], [ -77.920791625976562, -8.144700050353947 ], [ -77.920303344726562, -8.145951271057072 ], [ -77.92047119140625, -8.147962570190373 ], [ -77.923202514648381, -8.151297569274902 ], [ -77.925262451171875, -8.154949188232422 ], [ -77.926147460937443, -8.157048225402832 ], [ -77.926620483398381, -8.159845352172852 ], [ -77.92791748046875, -8.162664413452092 ], [ -77.928718566894474, -8.165096282958928 ], [ -77.929374694824219, -8.167710304260254 ], [ -77.929672241210881, -8.170390129089299 ], [ -77.930740356445256, -8.174007415771484 ], [ -77.930809020996094, -8.180465698242188 ], [ -77.931350708007812, -8.181854248046818 ], [ -77.931648254394531, -8.183855056762695 ], [ -77.932319641113281, -8.185017585754395 ], [ -77.9329833984375, -8.187911987304688 ], [ -77.933700561523381, -8.189794540405273 ], [ -77.933853149414062, -8.192081451415959 ], [ -77.933609008789006, -8.196372032165527 ], [ -77.934341430664062, -8.197504997253304 ], [ -77.936180114746037, -8.19865608215332 ], [ -77.938713073730469, -8.199146270751896 ], [ -77.939964294433594, -8.199604034423771 ], [ -77.941253662109375, -8.200597763061467 ], [ -77.941780090332031, -8.201489448547363 ], [ -77.942176818847599, -8.201783180236816 ], [ -77.9443359375, -8.201957702636719 ], [ -77.945510864257756, -8.20228385925293 ], [ -77.948104858398381, -8.204830169677734 ], [ -77.949836730957031, -8.205876350402832 ], [ -77.950767517089787, -8.205833435058594 ], [ -77.952194213867131, -8.204807281494141 ], [ -77.953132629394474, -8.204912185668888 ], [ -77.953918457031193, -8.20544528961176 ], [ -77.955490112304688, -8.207298278808594 ], [ -77.956581115722599, -8.207857131957951 ], [ -77.963211059570312, -8.207783699035645 ], [ -77.964202880859318, -8.208119392394963 ], [ -77.965591430664062, -8.209426879882756 ], [ -77.966194152832031, -8.20972824096674 ], [ -77.972244262695312, -8.209258079528809 ], [ -77.974288940429688, -8.209966659545842 ], [ -77.976844787597656, -8.210128784179688 ], [ -77.979438781738281, -8.210678100585881 ], [ -77.979804992675781, -8.213070869445744 ], [ -77.980690002441406, -8.214095115661564 ], [ -77.982261657714844, -8.215166091918945 ], [ -77.983268737792912, -8.21550273895258 ], [ -77.98687744140625, -8.216036796569824 ], [ -77.988235473632756, -8.21715259552002 ], [ -77.991081237792969, -8.218424797058105 ], [ -77.995376586914062, -8.218447685241699 ], [ -77.996307373046875, -8.219243049621582 ], [ -77.997512817382699, -8.219462394714355 ], [ -77.998619079589844, -8.220438003539982 ], [ -77.999961853027287, -8.220868110656738 ], [ -78.00469970703125, -8.221194267272949 ], [ -78.007431030273324, -8.221753120422306 ], [ -78.008354187011662, -8.221205711364746 ], [ -78.009338378906136, -8.221071243286133 ], [ -78.011581420898438, -8.221695899963379 ], [ -78.012931823730412, -8.221712112426758 ], [ -78.013755798339844, -8.222084999084473 ], [ -78.015625, -8.223624229431096 ], [ -78.01861572265625, -8.225462913513184 ], [ -78.019371032714844, -8.226226806640568 ], [ -78.022102355956974, -8.23012638092041 ], [ -78.023582458496094, -8.233196258544808 ], [ -78.026679992675724, -8.238084793090763 ], [ -78.026832580566406, -8.23869800567627 ], [ -78.027656555175781, -8.240056037902775 ], [ -78.029586791992188, -8.2423095703125 ], [ -78.032341003417969, -8.245024681091309 ], [ -78.0350341796875, -8.246973991393986 ], [ -78.03509521484375, -8.250378608703556 ], [ -78.034103393554631, -8.252772331237793 ], [ -78.034980773925724, -8.254200935363656 ], [ -78.038665771484375, -8.256252288818303 ], [ -78.039810180664062, -8.256521224975586 ], [ -78.041336059570312, -8.256521224975586 ], [ -78.042877197265568, -8.2574462890625 ], [ -78.044761657714844, -8.257594108581543 ], [ -78.045600891113281, -8.257904052734375 ], [ -78.048629760742074, -8.260844230651855 ], [ -78.052253723144418, -8.26350212097168 ], [ -78.055503845214844, -8.266329765319767 ], [ -78.058120727539062, -8.267907142639103 ], [ -78.063041687011719, -8.270318984985295 ], [ -78.064140319824162, -8.271383285522404 ], [ -78.065620422363281, -8.273298263549691 ], [ -78.066131591796875, -8.274648666381836 ], [ -78.066619873046818, -8.277100563049316 ], [ -78.067924499511719, -8.278592109680119 ], [ -78.071052551269531, -8.279722213745117 ], [ -78.072723388671818, -8.280948638915959 ], [ -78.073883056640568, -8.281427383422852 ], [ -78.075317382812443, -8.28137016296381 ], [ -78.079765319824219, -8.280305862426758 ], [ -78.080833435058537, -8.280488014221135 ], [ -78.081802368164006, -8.280968666076603 ], [ -78.084617614746094, -8.28333854675293 ], [ -78.086227416992188, -8.285269737243652 ], [ -78.086898803710938, -8.28664588928217 ], [ -78.08782958984375, -8.290526390075684 ], [ -78.089775085449219, -8.293641090393066 ], [ -78.090606689453125, -8.294421195983887 ], [ -78.091056823730412, -8.294519424438477 ], [ -78.092353820800781, -8.293910026550236 ], [ -78.093505859375, -8.293704986572266 ], [ -78.094139099121094, -8.294331550598088 ], [ -78.094139099121094, -8.294864654540959 ], [ -78.095489501953125, -8.296984672546387 ], [ -78.096420288085938, -8.29908370971674 ], [ -78.097343444824162, -8.299969673156681 ], [ -78.0986328125, -8.300357818603516 ], [ -78.099227905273438, -8.300777435302678 ], [ -78.100440979003906, -8.304047584533635 ], [ -78.101982116699219, -8.305561065673771 ], [ -78.105003356933594, -8.306938171386719 ], [ -78.108718872070312, -8.307604789733887 ], [ -78.111526489257812, -8.308809280395508 ], [ -78.114952087402344, -8.309560775756836 ], [ -78.115982055664062, -8.310520172119084 ], [ -78.116043090820256, -8.311331748962402 ], [ -78.116416931152287, -8.311825752258301 ], [ -78.117538452148438, -8.31258487701416 ], [ -78.118904113769474, -8.313034057617188 ], [ -78.120170593261719, -8.314199447631779 ], [ -78.120925903320312, -8.315908432006779 ], [ -78.121337890625, -8.317397117614746 ], [ -78.121284484863224, -8.318199157714844 ], [ -78.120697021484318, -8.319414138793945 ], [ -78.11962890625, -8.320651054382324 ], [ -78.116004943847656, -8.321638107299748 ], [ -78.11474609375, -8.322631835937443 ], [ -78.114540100097656, -8.323320388793945 ], [ -78.114509582519474, -8.326105117797795 ], [ -78.114067077636719, -8.327562332153207 ], [ -78.112609863281193, -8.329819679260197 ], [ -78.111686706542969, -8.33195972442627 ], [ -78.108062744140625, -8.336070060729924 ], [ -78.108146667480469, -8.33775806427002 ], [ -78.108505249023381, -8.3385972976684 ], [ -78.11016845703125, -8.340850830078068 ], [ -78.111160278320256, -8.341464042663574 ], [ -78.113807678222656, -8.342338562011719 ], [ -78.1148681640625, -8.343405723571721 ], [ -78.114814758300668, -8.3468017578125 ], [ -78.115104675292969, -8.349390983581486 ], [ -78.114852905273438, -8.35212230682373 ], [ -78.115425109863281, -8.352460861206055 ], [ -78.1165771484375, -8.352678298950195 ], [ -78.117156982421875, -8.353115081787109 ], [ -78.117652893066349, -8.353862762451172 ], [ -78.117897033691406, -8.355079650878906 ], [ -78.118698120117131, -8.356058120727482 ], [ -78.120254516601562, -8.356451988220158 ], [ -78.120918273925668, -8.356917381286621 ], [ -78.121276855468693, -8.357434272766113 ], [ -78.121871948242074, -8.359310150146484 ], [ -78.123275756835881, -8.361060142516976 ], [ -78.124496459960938, -8.361386299133244 ], [ -78.126609802246037, -8.36065673828125 ], [ -78.128562927246094, -8.360756874084473 ], [ -78.129287719726506, -8.361466407775822 ], [ -78.131355285644531, -8.364620208740234 ], [ -78.132255554199162, -8.365497589111328 ], [ -78.133041381835938, -8.365923881530648 ], [ -78.134208679199219, -8.365987777709904 ], [ -78.135307312011662, -8.366765022277832 ], [ -78.136100769042969, -8.366939544677734 ], [ -78.137405395507756, -8.368301391601506 ], [ -78.137840270996094, -8.369290351867619 ], [ -78.137657165527344, -8.372691154479924 ], [ -78.136642456054631, -8.375849723815918 ], [ -78.136520385742188, -8.377458572387695 ], [ -78.13763427734375, -8.381522178649902 ], [ -78.13763427734375, -8.383320808410588 ], [ -78.137870788574162, -8.384547233581543 ], [ -78.138420104980469, -8.385977745056152 ], [ -78.139419555663949, -8.387676239013615 ], [ -78.139656066894531, -8.388950347900391 ], [ -78.13934326171875, -8.389537811279297 ], [ -78.138580322265625, -8.39022159576416 ], [ -78.135322570800781, -8.392127037048283 ], [ -78.134506225585938, -8.393099784851017 ], [ -78.134307861328125, -8.393770217895508 ], [ -78.134452819824162, -8.394563674926758 ], [ -78.135772705078068, -8.395338058471623 ], [ -78.136909484863224, -8.396838188171387 ], [ -78.136878967285156, -8.397831916809082 ], [ -78.137176513671875, -8.398960113525391 ], [ -78.137092590332031, -8.401469230651799 ], [ -78.137359619140625, -8.406093597412053 ], [ -78.138206481933594, -8.408930778503361 ], [ -78.138336181640568, -8.410184860229492 ], [ -78.139862060546818, -8.412728309631348 ], [ -78.140533447265568, -8.414756774902287 ], [ -78.140403747558594, -8.416104316711369 ], [ -78.139099121093693, -8.419914245605412 ], [ -78.138961791992188, -8.422500610351449 ], [ -78.139358520507812, -8.423969268798828 ], [ -78.139587402343693, -8.42790508270258 ], [ -78.140327453613281, -8.429741859435978 ], [ -78.141685485839787, -8.431184768676758 ], [ -78.142715454101562, -8.433090209960938 ], [ -78.142967224121094, -8.433931350708008 ], [ -78.143119812011662, -8.436178207397404 ], [ -78.143974304199162, -8.438918113708496 ], [ -78.144989013671875, -8.440290451049805 ], [ -78.146224975585938, -8.441327095031738 ], [ -78.147315979003849, -8.44371318817133 ], [ -78.147903442382756, -8.445976257324219 ], [ -78.149246215820312, -8.447373390197754 ], [ -78.149765014648438, -8.449204444885197 ], [ -78.149772644042969, -8.450458526611328 ], [ -78.150489807128906, -8.451861381530762 ], [ -78.151016235351562, -8.453573226928711 ], [ -78.151565551757812, -8.457481384277287 ], [ -78.152381896972599, -8.458176612853947 ], [ -78.154197692871037, -8.458333969116211 ], [ -78.154800415039062, -8.458627700805664 ], [ -78.156059265136719, -8.460541725158635 ], [ -78.156867980956974, -8.462251663208008 ], [ -78.157020568847656, -8.463648796081486 ], [ -78.156387329101506, -8.467746734619141 ], [ -78.156753540039006, -8.469045639038086 ], [ -78.158103942871037, -8.47063159942627 ], [ -78.15826416015625, -8.471562385559082 ], [ -78.158111572265511, -8.473848342895451 ], [ -78.157669067382812, -8.474899291992188 ], [ -78.157829284667969, -8.478391647338867 ], [ -78.161262512207031, -8.483468055725098 ], [ -78.162193298339787, -8.484553337097111 ], [ -78.162971496581974, -8.484999656677246 ], [ -78.163864135742188, -8.485179901123047 ], [ -78.164855957031193, -8.484783172607422 ], [ -78.165771484375, -8.484857559204102 ], [ -78.166183471679631, -8.485930442810059 ], [ -78.167320251464844, -8.487457275390625 ], [ -78.168022155761662, -8.487982749938908 ], [ -78.169639587402287, -8.488567352294865 ], [ -78.170364379882812, -8.489373207092228 ], [ -78.171089172363281, -8.491009712219238 ], [ -78.171272277831918, -8.492445945739689 ], [ -78.1705322265625, -8.494735717773438 ], [ -78.170509338378793, -8.49688816070551 ], [ -78.170852661132812, -8.498554229736328 ], [ -78.171501159667969, -8.50022029876709 ], [ -78.172706604003906, -8.501429557800236 ], [ -78.173263549804631, -8.5025634765625 ], [ -78.173988342285156, -8.503433227539006 ], [ -78.176216125488224, -8.505401611328125 ], [ -78.177993774414062, -8.50661468505848 ], [ -78.179557800292912, -8.50829029083252 ], [ -78.180625915527344, -8.508418083190918 ], [ -78.182655334472656, -8.509819030761719 ], [ -78.183723449707031, -8.510299682617131 ], [ -78.185211181640625, -8.509951591491699 ], [ -78.187164306640568, -8.508770942687988 ], [ -78.188026428222599, -8.508764266967773 ], [ -78.188682556152344, -8.509164810180664 ], [ -78.189361572265568, -8.510517120361271 ], [ -78.189384460449162, -8.512529373168945 ], [ -78.190200805664062, -8.513931274414006 ], [ -78.190750122070312, -8.514331817626896 ], [ -78.192962646484375, -8.514945030212402 ], [ -78.194343566894474, -8.516028404235783 ], [ -78.195442199707031, -8.517555236816349 ], [ -78.196708679199162, -8.521384239196777 ], [ -78.199920654296875, -8.523099899291992 ], [ -78.202560424804688, -8.52618408203125 ], [ -78.203712463378906, -8.528767585754395 ], [ -78.203895568847656, -8.532243728637695 ], [ -78.206642150878849, -8.534206390380859 ], [ -78.206489562988281, -8.53515434265131 ], [ -78.207649230957031, -8.536464691161996 ], [ -78.207908630371094, -8.538729667663461 ], [ -78.208747863769474, -8.54056453704834 ], [ -78.209739685058594, -8.541487693786564 ], [ -78.211509704589787, -8.542474746704102 ], [ -78.211898803710824, -8.54304027557373 ], [ -78.2120361328125, -8.546769142150822 ], [ -78.214179992675724, -8.549695014953613 ], [ -78.215568542480469, -8.553930282592717 ], [ -78.216972351074219, -8.556815147399846 ], [ -78.216880798339844, -8.559112548828125 ], [ -78.215789794921818, -8.560800552368107 ], [ -78.215400695800724, -8.56181812286377 ], [ -78.215576171875, -8.565291404724121 ], [ -78.214935302734318, -8.566334724426213 ], [ -78.214065551757756, -8.566964149475098 ], [ -78.210556030273381, -8.566734313964844 ], [ -78.208282470703125, -8.566886901855355 ], [ -78.207099914550724, -8.567998886108398 ], [ -78.204811096191349, -8.571331024169922 ], [ -78.202613830566349, -8.573690414428654 ], [ -78.201995849609375, -8.575051307678223 ], [ -78.201728820800781, -8.576360702514592 ], [ -78.201797485351562, -8.578393936157227 ], [ -78.202163696289006, -8.580097198486328 ], [ -78.201850891113224, -8.582232475280762 ], [ -78.201316833496094, -8.583318710327092 ], [ -78.199905395507812, -8.584576606750488 ], [ -78.198394775390625, -8.586975097656193 ], [ -78.196884155273438, -8.593391418456974 ], [ -78.194450378417969, -8.598630905151367 ], [ -78.193984985351562, -8.601940155029297 ], [ -78.194839477539062, -8.604352951049805 ], [ -78.195854187011662, -8.606261253356934 ], [ -78.198570251464844, -8.60943412780756 ], [ -78.200851440429688, -8.613406181335449 ], [ -78.202400207519531, -8.61545467376709 ], [ -78.202377319335938, -8.616936683654785 ], [ -78.201309204101506, -8.619681358337346 ], [ -78.201362609863281, -8.623186111450138 ], [ -78.202110290527344, -8.625065803527775 ], [ -78.204803466796875, -8.629532814025822 ], [ -78.207221984863224, -8.631905555725098 ], [ -78.208709716796875, -8.633041381835881 ], [ -78.213706970214787, -8.63575267791748 ], [ -78.220458984374943, -8.640229225158635 ], [ -78.227348327636605, -8.643953323364258 ], [ -78.230072021484375, -8.646578788757267 ], [ -78.230537414550781, -8.647678375244141 ], [ -78.232681274414006, -8.648823738098088 ], [ -78.233711242675724, -8.650079727172795 ], [ -78.234825134277344, -8.650835990905762 ], [ -78.235687255859375, -8.652511596679631 ], [ -78.235916137695256, -8.652851104736328 ], [ -78.236587524414006, -8.652892112731934 ], [ -78.239173889160043, -8.654051780700684 ], [ -78.24310302734375, -8.655056953430176 ], [ -78.244338989257812, -8.656311035156193 ], [ -78.244903564453125, -8.657681465148869 ], [ -78.246200561523381, -8.658408164977971 ], [ -78.247642517089787, -8.658783912658691 ], [ -78.249954223632812, -8.658701896667367 ], [ -78.2529296875, -8.657811164855957 ], [ -78.258193969726562, -8.658036231994629 ], [ -78.261032104492188, -8.657938003540039 ], [ -78.26507568359375, -8.657570838928166 ], [ -78.270278930664062, -8.656750679016113 ], [ -78.273391723632756, -8.656614303588867 ], [ -78.276527404785099, -8.657827377319336 ], [ -78.279098510742131, -8.657693862914982 ], [ -78.280151367187443, -8.657919883727971 ], [ -78.282073974609318, -8.658923149108887 ], [ -78.28448486328125, -8.660853385925293 ], [ -78.287261962890625, -8.661943435668945 ], [ -78.288764953613168, -8.661972045898438 ], [ -78.289817810058594, -8.661746978759709 ], [ -78.293975830078068, -8.659235000610295 ], [ -78.295455932617188, -8.659116744995117 ], [ -78.297912597656193, -8.660359382629338 ], [ -78.300567626953068, -8.663244247436467 ], [ -78.301887512207031, -8.664180755615234 ], [ -78.304054260253906, -8.664937019348088 ], [ -78.306594848632756, -8.665315628051758 ], [ -78.307922363281193, -8.665987968444824 ], [ -78.310264587402344, -8.666655540466309 ], [ -78.312156677246094, -8.66661262512207 ], [ -78.314971923828068, -8.665655136108398 ], [ -78.316436767578125, -8.665436744689941 ], [ -78.318328857421761, -8.665507316589355 ], [ -78.321502685546875, -8.666115760803223 ], [ -78.324691772460881, -8.66504001617426 ], [ -78.325889587402344, -8.665327072143498 ], [ -78.3271484375, -8.666896820068303 ], [ -78.328018188476562, -8.66726016998291 ], [ -78.330863952636719, -8.667296409606934 ], [ -78.332618713378849, -8.666614532470646 ], [ -78.333732604980469, -8.666521072387695 ], [ -78.334678649902344, -8.667789459228516 ], [ -78.335060119628906, -8.669761657714787 ], [ -78.336090087890625, -8.671017646789494 ], [ -78.337020874023324, -8.674811363220158 ], [ -78.337608337402344, -8.675392150878849 ], [ -78.339805603027344, -8.676059722900334 ], [ -78.341423034667969, -8.676128387451172 ], [ -78.344802856445312, -8.67571830749506 ], [ -78.345481872558537, -8.675313949584961 ], [ -78.347335815429688, -8.673539161682129 ], [ -78.349227905273324, -8.67278861999506 ], [ -78.351654052734375, -8.672677040100098 ], [ -78.353584289550724, -8.673149108886719 ], [ -78.354782104492188, -8.673762321472111 ], [ -78.358322143554688, -8.677279472351017 ], [ -78.363548278808594, -8.681773185729924 ], [ -78.3651123046875, -8.682547569274902 ], [ -78.367584228515625, -8.683111190795898 ], [ -78.368705749511719, -8.683599472045898 ], [ -78.370094299316349, -8.684426307678223 ], [ -78.371513366699162, -8.685687065124455 ], [ -78.372718811035156, -8.687137603759709 ], [ -78.373222351074219, -8.688091278076115 ], [ -78.374061584472656, -8.691344261169434 ], [ -78.37530517578125, -8.694044113159123 ], [ -78.376655578613281, -8.696234703063965 ], [ -78.378074645996094, -8.697648048400822 ], [ -78.379798889160156, -8.69874382019043 ], [ -78.380592346191349, -8.698907852172795 ], [ -78.381942749023438, -8.698850631713867 ], [ -78.383613586425781, -8.69830417633051 ], [ -78.3851318359375, -8.698396682739258 ], [ -78.385971069335938, -8.69877815246582 ], [ -78.388450622558594, -8.70108509063715 ], [ -78.389801025390625, -8.701995849609318 ], [ -78.391624450683594, -8.702492713928166 ], [ -78.395523071289062, -8.702855110168457 ], [ -78.397987365722656, -8.703592300414982 ], [ -78.399337768554688, -8.704491615295353 ], [ -78.400398254394531, -8.705890655517578 ], [ -78.40206146240223, -8.707277297973633 ], [ -78.408966064453125, -8.71003246307373 ], [ -78.411346435546875, -8.711283683776855 ], [ -78.414428710937443, -8.713232040405273 ], [ -78.418334960937443, -8.716962814331055 ], [ -78.420837402343693, -8.71856498718256 ], [ -78.423484802246037, -8.720664978027344 ], [ -78.430809020996094, -8.727641105651799 ], [ -78.433532714843636, -8.729648590087834 ], [ -78.437088012695312, -8.731855392456055 ], [ -78.438972473144531, -8.733598709106445 ], [ -78.439765930175781, -8.733792304992619 ], [ -78.44232177734375, -8.733694076538086 ], [ -78.446937561035156, -8.735963821411133 ], [ -78.458564758300781, -8.73906421661377 ], [ -78.460731506347656, -8.739821434020996 ], [ -78.471176147460881, -8.743886947631836 ], [ -78.472427368164006, -8.744680404663029 ], [ -78.473175048828068, -8.745638847351074 ], [ -78.476135253906193, -8.746597290039062 ], [ -78.479629516601562, -8.748903274536133 ], [ -78.483192443847599, -8.75016975402832 ], [ -78.485191345214787, -8.750520706176758 ], [ -78.487091064453125, -8.7505846023559 ], [ -78.490921020507756, -8.749782562255803 ], [ -78.493354797363281, -8.749662399291992 ], [ -78.499877929687443, -8.750856399536133 ], [ -78.502449035644474, -8.750641822814941 ], [ -78.510673522949162, -8.751171112060547 ], [ -78.511955261230469, -8.751602172851506 ], [ -78.515701293945312, -8.752135276794377 ], [ -78.518806457519531, -8.753081321716252 ], [ -78.521438598632756, -8.754131317138672 ], [ -78.524238586425781, -8.755784034729004 ], [ -78.525871276855469, -8.756364822387695 ], [ -78.527496337890625, -8.758184432983398 ], [ -78.529678344726562, -8.762569427490178 ], [ -78.530838012695312, -8.763875007629395 ], [ -78.533004760742188, -8.764839172363224 ], [ -78.538490295410156, -8.766495704650822 ], [ -78.540870666503906, -8.767448425292969 ], [ -78.546424865722599, -8.770810127258301 ], [ -78.548370361328125, -8.772322654724121 ], [ -78.550819396972599, -8.774232864379826 ], [ -78.553016662597599, -8.776432991027718 ], [ -78.555412292480355, -8.780339241027775 ], [ -78.557830810546875, -8.783745765685978 ], [ -78.564071655273381, -8.791019439697266 ], [ -78.564666748046875, -8.793072700500488 ], [ -78.564781188964844, -8.796572685241642 ], [ -78.565124511718693, -8.798159599304199 ], [ -78.568321228027344, -8.80394172668457 ], [ -78.570907592773438, -8.811745643615723 ], [ -78.571762084960938, -8.812965393066406 ], [ -78.573951721191406, -8.815327644348088 ], [ -78.573944091796875, -8.816015243530217 ], [ -78.575851440429688, -8.820539474487305 ], [ -78.576934814453068, -8.825131416320744 ], [ -78.580284118652287, -8.832492828369141 ], [ -78.580924987792969, -8.834960937499943 ], [ -78.581542968749886, -8.83910942077631 ], [ -78.581947326660156, -8.845296859741154 ], [ -78.582466125488224, -8.846240043640137 ], [ -78.584785461425668, -8.848329544067326 ], [ -78.584449768066406, -8.850455284118596 ], [ -78.584579467773381, -8.85136604309082 ], [ -78.585952758789062, -8.855191230773869 ], [ -78.586921691894531, -8.856966018676758 ], [ -78.587135314941349, -8.858989715576115 ], [ -78.586853027343693, -8.86029052734375 ], [ -78.586257934570312, -8.861362457275334 ], [ -78.584014892578068, -8.86369419097889 ], [ -78.583518981933537, -8.864500999450627 ], [ -78.582397460937443, -8.867395401000977 ], [ -78.581382751464844, -8.871855735778809 ], [ -78.57928466796875, -8.877678871154728 ], [ -78.577247619628849, -8.884983062744141 ], [ -78.576950073242131, -8.887109756469727 ], [ -78.577026367187443, -8.890484809875431 ], [ -78.578773498535099, -8.895082473754826 ], [ -78.579048156738224, -8.898300170898438 ], [ -78.579521179199162, -8.89956092834467 ], [ -78.579536437988224, -8.903055191040039 ], [ -78.580017089843636, -8.905172348022404 ], [ -78.580566406249943, -8.906231880187988 ], [ -78.582839965820312, -8.908342361450138 ], [ -78.583023071289062, -8.912104606628418 ], [ -78.585296630859375, -8.919819831848145 ], [ -78.586860656738224, -8.921853065490666 ], [ -78.589042663574162, -8.923853874206543 ], [ -78.59014892578125, -8.926461219787598 ], [ -78.590377807617131, -8.92859935760498 ], [ -78.589851379394531, -8.930670738220158 ], [ -78.589927673339787, -8.937125205993652 ], [ -78.590431213378906, -8.941004753112793 ], [ -78.591117858886719, -8.943318367004338 ], [ -78.592460632324219, -8.945479393005371 ], [ -78.594894409179574, -8.948218345642033 ], [ -78.600532531738281, -8.952642440795898 ], [ -78.603683471679688, -8.955597877502385 ], [ -78.604774475097656, -8.95613956451416 ], [ -78.60577392578125, -8.957229614257812 ], [ -78.609283447265568, -8.959515571594181 ], [ -78.613624572753906, -8.96318531036377 ], [ -78.619163513183594, -8.966019630432072 ], [ -78.623153686523438, -8.96767520904541 ], [ -78.628158569335881, -8.96888256072998 ], [ -78.630325317382812, -8.968880653381291 ], [ -78.633262634277344, -8.969366073608342 ], [ -78.639198303222656, -8.969072341918888 ], [ -78.644996643066406, -8.969131469726506 ], [ -78.647239685058537, -8.969008445739689 ], [ -78.648193359374943, -8.96899223327631 ], [ -78.648193359374943, -8.968192100524902 ], [ -78.648475646972599, -8.968192100524902 ], [ -78.648475646972599, -8.966526031494141 ], [ -78.648750305175724, -8.966526031494141 ], [ -78.648750305175724, -8.964859962463322 ], [ -78.649024963378906, -8.964859962463322 ], [ -78.649024963378906, -8.964028358459473 ], [ -78.649307250976562, -8.964028358459473 ], [ -78.649307250976562, -8.963472366332894 ], [ -78.649581909179688, -8.963472366332894 ], [ -78.649581909179688, -8.962362289428711 ], [ -78.649307250976562, -8.962362289428711 ], [ -78.649307250976562, -8.960694313049316 ], [ -78.649581909179688, -8.960694313049316 ], [ -78.649581909179688, -8.958749771118164 ], [ -78.649864196777344, -8.958749771118164 ], [ -78.649864196777344, -8.95736026763916 ], [ -78.650138854980469, -8.95736026763916 ], [ -78.650138854980469, -8.956250190734863 ], [ -78.650413513183594, -8.956250190734863 ], [ -78.650413513183594, -8.95514011383051 ], [ -78.65069580078125, -8.95514011383051 ], [ -78.65069580078125, -8.953749656677189 ], [ -78.650413513183594, -8.953749656677189 ], [ -78.650413513183594, -8.952082633972168 ], [ -78.650138854980469, -8.952082633972168 ], [ -78.650138854980469, -8.95069313049305 ], [ -78.650413513183594, -8.95069313049305 ], [ -78.650413513183594, -8.949581146240178 ], [ -78.65069580078125, -8.949581146240178 ], [ -78.65069580078125, -8.947915077209473 ], [ -78.650970458984261, -8.947915077209473 ], [ -78.650970458984261, -8.945693016052246 ], [ -78.651252746581974, -8.945693016052246 ], [ -78.651252746581974, -8.94347095489502 ], [ -78.651527404785099, -8.943472862243652 ], [ -78.651527404785099, -8.941806793212891 ], [ -78.651252746581974, -8.941806793212891 ], [ -78.651252746581974, -8.940694808959961 ], [ -78.650970458984261, -8.940694808959961 ], [ -78.650970458984261, -8.939860343933105 ], [ -78.649024963378906, -8.939860343933105 ], [ -78.649024963378906, -8.938471794128418 ], [ -78.649307250976562, -8.938471794128418 ], [ -78.649307250976562, -8.936805725097599 ], [ -78.649581909179688, -8.936805725097599 ], [ -78.649581909179688, -8.93597221374506 ], [ -78.649864196777344, -8.93597221374506 ], [ -78.649864196777344, -8.935137748718205 ], [ -78.650138854980469, -8.935137748718205 ], [ -78.650138854980469, -8.934027671813851 ], [ -78.650413513183594, -8.934027671813851 ], [ -78.650413513183594, -8.932638168334904 ], [ -78.65069580078125, -8.932640075683594 ], [ -78.65069580078125, -8.931805610656738 ], [ -78.650970458984261, -8.931805610656738 ], [ -78.650970458984261, -8.930693626403809 ], [ -78.651252746581974, -8.930693626403809 ], [ -78.651252746581974, -8.930137634277287 ], [ -78.651527404785099, -8.930137634277287 ], [ -78.651527404785099, -8.929583549499512 ], [ -78.651802062988224, -8.929583549499512 ], [ -78.651802062988224, -8.929027557373047 ], [ -78.652084350585881, -8.929027557373047 ], [ -78.652084350585881, -8.928194046020508 ], [ -78.652359008789062, -8.928194046020508 ], [ -78.652359008789062, -8.927637100219727 ], [ -78.652641296386719, -8.927637100219727 ], [ -78.652641296386719, -8.927081108093262 ], [ -78.652915954589844, -8.927083969116211 ], [ -78.652915954589844, -8.926248550414982 ], [ -78.653190612792969, -8.926248550414982 ], [ -78.6531982421875, -8.925692558288574 ], [ -78.653472900390625, -8.925692558288574 ], [ -78.653472900390625, -8.925140380859375 ], [ -78.65374755859375, -8.925140380859375 ], [ -78.65374755859375, -8.924304962158146 ], [ -78.654029846191406, -8.924304962158146 ], [ -78.654029846191406, -8.923194885253906 ], [ -78.654304504394474, -8.923194885253906 ], [ -78.654304504394474, -8.922080993652344 ], [ -78.654586791992131, -8.922082901000863 ], [ -78.654586791992131, -8.92097091674799 ], [ -78.654861450195256, -8.92097091674799 ], [ -78.654861450195256, -8.91986083984375 ], [ -78.655136108398381, -8.91986083984375 ], [ -78.655136108398381, -8.91874885559082 ], [ -78.655418395996037, -8.91874885559082 ], [ -78.655418395996037, -8.917638778686523 ], [ -78.655693054199219, -8.917638778686523 ], [ -78.655693054199219, -8.916526794433594 ], [ -78.655975341796875, -8.916526794433594 ], [ -78.655975341796875, -8.915692329406738 ], [ -78.65625, -8.915692329406738 ], [ -78.65625, -8.915139198303223 ], [ -78.656524658203125, -8.915139198303223 ], [ -78.656524658203125, -8.914580345153809 ], [ -78.656806945800781, -8.914583206176758 ], [ -78.656806945800781, -8.914029121398869 ], [ -78.657081604003906, -8.914029121398869 ], [ -78.657081604003906, -8.913470268249512 ], [ -78.657363891601562, -8.913470268249512 ], [ -78.657363891601562, -8.912914276123047 ], [ -78.657638549804631, -8.912917137145939 ], [ -78.657638549804631, -8.912637710571232 ], [ -78.657913208007756, -8.912637710571232 ], [ -78.657913208007756, -8.912084579467773 ], [ -78.658195495605412, -8.912084579467773 ], [ -78.658195495605412, -8.911804199218693 ], [ -78.658470153808537, -8.911804199218693 ], [ -78.658470153808537, -8.911528587341309 ], [ -78.65875244140625, -8.911528587341309 ], [ -78.65875244140625, -8.910971641540527 ], [ -78.659027099609375, -8.910971641540527 ], [ -78.659027099609375, -8.91069221496582 ], [ -78.6593017578125, -8.910694122314453 ], [ -78.6593017578125, -8.910415649414062 ], [ -78.659584045410156, -8.910415649414062 ], [ -78.659584045410156, -8.90986156463623 ], [ -78.659858703613281, -8.909859657287598 ], [ -78.659858703613281, -8.909582138061467 ], [ -78.660140991210938, -8.909582138061467 ], [ -78.660140991210938, -8.909305572509766 ], [ -78.660415649414062, -8.909305572509766 ], [ -78.660415649414062, -8.908749580383301 ], [ -78.660697937011605, -8.908749580383301 ], [ -78.660697937011605, -8.908472061157227 ], [ -78.660972595214787, -8.908472061157227 ], [ -78.660972595214787, -8.908193588256836 ], [ -78.661247253417912, -8.908193588256836 ], [ -78.661247253417912, -8.907916069030762 ], [ -78.661529541015568, -8.907916069030762 ], [ -78.661529541015568, -8.907360076904297 ], [ -78.66180419921875, -8.907360076904297 ], [ -78.66180419921875, -8.907084465026855 ], [ -78.662086486816406, -8.907084465026855 ], [ -78.662086486816406, -8.906805992126465 ], [ -78.662361145019531, -8.906805992126465 ], [ -78.662361145019531, -8.90625 ], [ -78.662635803222656, -8.90625 ], [ -78.662635803222656, -8.905971527099609 ], [ -78.662918090820312, -8.905971527099609 ], [ -78.662918090820312, -8.905694007873535 ], [ -78.663192749023438, -8.905694007873535 ], [ -78.663192749023438, -8.90513801574707 ], [ -78.663475036621094, -8.905139923095646 ], [ -78.663475036621094, -8.904862403869572 ], [ -78.663749694824105, -8.904862403869572 ], [ -78.663749694824105, -8.904306411743164 ], [ -78.664024353027287, -8.904306411743164 ], [ -78.664024353027287, -8.903750419616699 ], [ -78.664306640624943, -8.903750419616699 ], [ -78.664306640624943, -8.903471946716309 ], [ -78.664581298828068, -8.903471946716309 ], [ -78.664581298828068, -8.902915954589844 ], [ -78.664863586425724, -8.902917861938477 ], [ -78.664863586425724, -8.90263843536377 ], [ -78.665138244628906, -8.90263843536377 ], [ -78.665138244628906, -8.902084350585881 ], [ -78.665412902832031, -8.902084350585881 ], [ -78.665412902832031, -8.90180587768549 ], [ -78.665695190429688, -8.90180587768549 ], [ -78.665695190429688, -8.901249885559025 ], [ -78.665969848632812, -8.901249885559025 ], [ -78.665969848632812, -8.900972366332951 ], [ -78.666252136230469, -8.900972366332951 ], [ -78.666252136230469, -8.90041542053217 ], [ -78.666526794433594, -8.90041542053217 ], [ -78.666526794433594, -8.900139808654785 ], [ -78.66680908203125, -8.900139808654785 ], [ -78.66680908203125, -8.89958381652832 ], [ -78.667083740234318, -8.89958381652832 ], [ -78.667083740234318, -8.899026870727539 ], [ -78.667358398437443, -8.899026870727539 ], [ -78.667358398437443, -8.898749351501465 ], [ -78.667640686035099, -8.898749351501465 ], [ -78.667640686035099, -8.898193359374886 ], [ -78.667915344238224, -8.898193359374886 ], [ -78.667915344238224, -8.897917747497559 ], [ -78.668197631835881, -8.897917747497559 ], [ -78.668197631835881, -8.897360801696777 ], [ -78.668472290039062, -8.897360801696777 ], [ -78.668472290039062, -8.897083282470703 ], [ -78.668746948242188, -8.897083282470703 ], [ -78.668746948242188, -8.896527290344238 ], [ -78.669029235839844, -8.896527290344238 ], [ -78.669029235839844, -8.896248817443848 ], [ -78.669303894042969, -8.896248817443848 ], [ -78.669303894042969, -8.895971298217773 ], [ -78.669586181640625, -8.895971298217773 ], [ -78.669586181640625, -8.895694732665959 ], [ -78.66986083984375, -8.895694732665959 ], [ -78.66986083984375, -8.895417213439885 ], [ -78.670135498046818, -8.895417213439885 ], [ -78.670135498046818, -8.895138740539494 ], [ -78.670692443847599, -8.895138740539494 ], [ -78.670692443847599, -8.894859313964844 ], [ -78.670974731445256, -8.894861221313477 ], [ -78.670974731445256, -8.894582748413029 ], [ -78.671249389648381, -8.894582748413029 ], [ -78.671249389648381, -8.894305229187012 ], [ -78.671524047851562, -8.894305229187012 ], [ -78.671524047851562, -8.894026756286621 ], [ -78.671806335449219, -8.894026756286621 ], [ -78.671806335449219, -8.893749237060547 ], [ -78.67236328125, -8.893751144409123 ], [ -78.67236328125, -8.893472671508675 ], [ -78.672637939453125, -8.893470764160156 ], [ -78.672637939453125, -8.892916679382267 ], [ -78.672920227050781, -8.892916679382267 ], [ -78.672920227050781, -8.892360687255803 ], [ -78.673194885253906, -8.892360687255803 ], [ -78.673194885253906, -8.891804695129338 ], [ -78.673469543456974, -8.891804695129338 ], [ -78.673469543456974, -8.891248703002873 ], [ -78.673751831054631, -8.891248703002873 ], [ -78.673751831054631, -8.890694618225098 ], [ -78.674026489257756, -8.890694618225098 ], [ -78.674026489257756, -8.890138626098633 ], [ -78.674308776855412, -8.890138626098633 ], [ -78.674308776855412, -8.889582633972111 ], [ -78.674583435058594, -8.889582633972111 ], [ -78.674583435058594, -8.889026641845646 ], [ -78.674858093261719, -8.889026641845646 ], [ -78.674858093261719, -8.888749122619572 ], [ -78.675140380859375, -8.888749122619572 ], [ -78.675140380859375, -8.888192176818791 ], [ -78.6754150390625, -8.888195037841797 ], [ -78.6754150390625, -8.887916564941406 ], [ -78.675697326660156, -8.887916564941406 ], [ -78.675697326660156, -8.887639045715332 ], [ -78.675971984863281, -8.887639045715332 ], [ -78.675971984863281, -8.887083053588754 ], [ -78.676246643066406, -8.887083053588754 ], [ -78.676246643066406, -8.88680362701416 ], [ -78.676528930663949, -8.88680362701416 ], [ -78.676528930663949, -8.886526107788086 ], [ -78.676803588867131, -8.886526107788086 ], [ -78.676803588867131, -8.885970115661621 ], [ -78.677085876464787, -8.88597297668457 ], [ -78.677085876464787, -8.885695457458496 ], [ -78.677360534667912, -8.885695457458496 ], [ -78.677360534667912, -8.885416030883789 ], [ -78.677635192871094, -8.885416030883789 ], [ -78.677635192871094, -8.884860038757324 ], [ -78.67791748046875, -8.884860038757324 ], [ -78.67791748046875, -8.884585380554199 ], [ -78.678192138671875, -8.884585380554199 ], [ -78.678192138671875, -8.884304046630859 ], [ -78.678474426269531, -8.884304046630859 ], [ -78.678474426269531, -8.883748054504395 ], [ -78.678749084472656, -8.883749961852971 ], [ -78.678749084472656, -8.883472442626896 ], [ -78.679031372070312, -8.883472442626896 ], [ -78.679031372070312, -8.88319206237793 ], [ -78.679306030273438, -8.88319206237793 ], [ -78.679306030273438, -8.882637977600041 ], [ -78.679580688476449, -8.882637977600041 ], [ -78.679580688476449, -8.882362365722543 ], [ -78.679862976074162, -8.882362365722543 ], [ -78.679862976074162, -8.882081985473633 ], [ -78.680137634277287, -8.882081985473633 ], [ -78.680137634277287, -8.881525993347168 ], [ -78.680419921874943, -8.881527900695687 ], [ -78.680419921874943, -8.88125038146967 ], [ -78.680694580078068, -8.88125038146967 ], [ -78.680694580078068, -8.880970001220703 ], [ -78.68096923828125, -8.880971908569279 ], [ -78.68096923828125, -8.880694389343205 ], [ -78.681251525878906, -8.880694389343205 ], [ -78.681251525878906, -8.880415916442814 ], [ -78.681526184082031, -8.880415916442814 ], [ -78.681526184082031, -8.88014030456543 ], [ -78.681808471679688, -8.88013839721674 ], [ -78.681808471679688, -8.879859924316349 ], [ -78.682083129882812, -8.879859924316349 ], [ -78.682083129882812, -8.879584312438965 ], [ -78.682357788085938, -8.879584312438965 ], [ -78.682357788085938, -8.879305839538574 ], [ -78.682640075683594, -8.879305839538574 ], [ -78.682640075683594, -8.878749847412109 ], [ -78.682914733886662, -8.878749847412109 ], [ -78.682914733886662, -8.878472328185978 ], [ -78.683197021484318, -8.878472328185978 ], [ -78.683197021484318, -8.878193855285645 ], [ -78.683471679687443, -8.878193855285645 ], [ -78.683471679687443, -8.877916336059513 ], [ -78.683746337890568, -8.877916336059513 ], [ -78.683746337890568, -8.877637863159123 ], [ -78.684028625488224, -8.877637863159123 ], [ -78.684028625488224, -8.877362251281738 ], [ -78.684303283691406, -8.877362251281738 ], [ -78.684303283691406, -8.877083778381348 ], [ -78.684585571289062, -8.877083778381348 ], [ -78.684585571289062, -8.876806259155273 ], [ -78.684860229492188, -8.876806259155273 ], [ -78.684860229492188, -8.876527786254883 ], [ -78.685142517089844, -8.876527786254883 ], [ -78.685142517089844, -8.876250267028809 ], [ -78.685417175292969, -8.876250267028809 ], [ -78.685417175292969, -8.875971794128418 ], [ -78.685691833496094, -8.875971794128418 ], [ -78.685691833496094, -8.875694274902344 ], [ -78.68597412109375, -8.875694274902344 ], [ -78.68597412109375, -8.875417709350529 ], [ -78.686248779296818, -8.875417709350529 ], [ -78.686248779296818, -8.875138282775765 ], [ -78.686531066894474, -8.875140190124512 ], [ -78.686531066894474, -8.874584197998047 ], [ -78.686805725097599, -8.874584197998047 ], [ -78.686805725097599, -8.874305725097656 ], [ -78.687080383300724, -8.874305725097656 ], [ -78.687080383300724, -8.874025344848633 ], [ -78.687362670898438, -8.874028205871582 ], [ -78.687362670898438, -8.873749732971191 ], [ -78.687637329101562, -8.873749732971191 ], [ -78.687637329101562, -8.873472213745117 ], [ -78.687919616699219, -8.873472213745117 ], [ -78.687919616699219, -8.873195648193303 ], [ -78.688194274902344, -8.873195648193303 ], [ -78.688194274902344, -8.872915267944336 ], [ -78.688468933105469, -8.872915267944336 ], [ -78.688468933105469, -8.872639656066838 ], [ -78.688751220703125, -8.872639656066838 ], [ -78.688751220703125, -8.872359275817871 ], [ -78.68902587890625, -8.872362136840763 ], [ -78.68902587890625, -8.872083663940373 ], [ -78.689308166503793, -8.872083663940373 ], [ -78.689308166503793, -8.871526718139592 ], [ -78.689582824706974, -8.871526718139592 ], [ -78.689582824706974, -8.871249198913517 ], [ -78.689857482910099, -8.871249198913517 ], [ -78.689857482910099, -8.870973587036133 ], [ -78.690139770507756, -8.870973587036133 ], [ -78.690139770507756, -8.870693206787053 ], [ -78.690414428710938, -8.870693206787053 ], [ -78.690414428710938, -8.870416641235352 ], [ -78.690696716308594, -8.870416641235352 ], [ -78.690696716308594, -8.870137214660645 ], [ -78.690971374511719, -8.870139122009277 ], [ -78.690971374511719, -8.869860649108887 ], [ -78.691253662109375, -8.869860649108887 ], [ -78.691253662109375, -8.869304656982422 ], [ -78.6915283203125, -8.869304656982422 ], [ -78.6915283203125, -8.869027137756291 ], [ -78.691802978515625, -8.869027137756291 ], [ -78.691802978515625, -8.868748664855843 ], [ -78.692085266113281, -8.868748664855843 ], [ -78.692085266113281, -8.868471145629826 ], [ -78.692359924316293, -8.868471145629826 ], [ -78.692359924316293, -8.868748664855843 ], [ -78.692916870117131, -8.868748664855843 ], [ -78.692916870117131, -8.868471145629826 ], [ -78.693191528320256, -8.868471145629826 ], [ -78.693191528320256, -8.867915153503361 ], [ -78.693473815917912, -8.867917060852051 ], [ -78.693473815917912, -8.86763858795166 ], [ -78.693748474121094, -8.86763858795166 ], [ -78.693748474121094, -8.867361068725586 ], [ -78.69403076171875, -8.867361068725586 ], [ -78.69403076171875, -8.867082595825195 ], [ -78.694305419921875, -8.867082595825195 ], [ -78.694305419921875, -8.86652660369873 ], [ -78.69403076171875, -8.86652660369873 ], [ -78.69403076171875, -8.866249084472656 ], [ -78.694305419921875, -8.866249084472656 ], [ -78.694305419921875, -8.865973472595215 ], [ -78.694580078125, -8.865973472595215 ], [ -78.694580078125, -8.865693092346135 ], [ -78.694862365722656, -8.865694999694824 ], [ -78.694862365722656, -8.865416526794434 ], [ -78.695137023925781, -8.865416526794434 ], [ -78.695137023925781, -8.864860534667969 ], [ -78.695419311523438, -8.864860534667969 ], [ -78.695419311523438, -8.864583015441895 ], [ -78.695693969726506, -8.864583015441895 ], [ -78.695693969726506, -8.864304542541504 ], [ -78.695968627929631, -8.864304542541504 ], [ -78.695968627929631, -8.86402702331543 ], [ -78.696250915527287, -8.864028930664006 ], [ -78.696250915527287, -8.863751411437988 ], [ -78.696525573730412, -8.863748550415039 ], [ -78.696525573730412, -8.863195419311523 ], [ -78.696807861328068, -8.863195419311523 ], [ -78.696807861328068, -8.862916946411133 ], [ -78.69708251953125, -8.862916946411133 ], [ -78.69708251953125, -8.862639427185059 ], [ -78.697364807128906, -8.862639427185059 ], [ -78.697364807128906, -8.862083435058594 ], [ -78.697639465332031, -8.862083435058594 ], [ -78.697639465332031, -8.861804962158203 ], [ -78.697914123535156, -8.861806869506779 ], [ -78.697914123535156, -8.861527442932129 ], [ -78.698196411132812, -8.861527442932129 ], [ -78.698196411132812, -8.86097335815424 ], [ -78.698471069335938, -8.86097335815424 ], [ -78.698471069335938, -8.860694885253849 ], [ -78.698753356933594, -8.860694885253849 ], [ -78.698753356933594, -8.860138893127385 ], [ -78.699028015136662, -8.860138893127385 ], [ -78.699028015136662, -8.859861373901367 ], [ -78.699302673339787, -8.859861373901367 ], [ -78.699302673339787, -8.859581947326603 ], [ -78.699584960937443, -8.859581947326603 ], [ -78.699584960937443, -8.859028816223145 ], [ -78.699859619140568, -8.859028816223145 ], [ -78.699859619140568, -8.858751296997013 ], [ -78.700141906738281, -8.858751296997013 ], [ -78.700141906738281, -8.858194351196289 ], [ -78.700416564941406, -8.858194351196289 ], [ -78.700416564941406, -8.857915878295898 ], [ -78.700691223144531, -8.857915878295898 ], [ -78.700691223144531, -8.857638359069711 ], [ -78.700973510742188, -8.857638359069711 ], [ -78.700973510742188, -8.857082366943303 ], [ -78.701248168945312, -8.857082366943303 ], [ -78.701248168945312, -8.856805801391602 ], [ -78.701530456542969, -8.856805801391602 ], [ -78.701530456542969, -8.856528282165527 ], [ -78.701805114746094, -8.856528282165527 ], [ -78.701805114746094, -8.855972290039062 ], [ -78.702079772949162, -8.855972290039062 ], [ -78.702079772949162, -8.855693817138672 ], [ -78.702362060546818, -8.855693817138672 ], [ -78.702362060546818, -8.855137825012207 ], [ -78.702636718749943, -8.855137825012207 ], [ -78.702636718749943, -8.854860305786133 ], [ -78.702919006347599, -8.854862213134709 ], [ -78.702919006347599, -8.854583740234318 ], [ -78.703193664550781, -8.854583740234318 ], [ -78.703193664550781, -8.854027748107853 ], [ -78.703475952148438, -8.854027748107853 ], [ -78.703475952148438, -8.853750228881836 ], [ -78.703750610351562, -8.853750228881836 ], [ -78.703750610351562, -8.853471755981445 ], [ -78.704025268554688, -8.853471755981445 ], [ -78.704025268554688, -8.85291576385498 ], [ -78.704307556152344, -8.85291576385498 ], [ -78.704307556152344, -8.852638244628906 ], [ -78.704582214355469, -8.852640151977482 ], [ -78.704582214355469, -8.852084159851017 ], [ -78.704864501953125, -8.852084159851017 ], [ -78.704864501953125, -8.851805686950627 ], [ -78.705139160156136, -8.851805686950627 ], [ -78.705139160156136, -8.851249694824162 ], [ -78.705413818359318, -8.851249694824162 ], [ -78.705413818359318, -8.850970268249512 ], [ -78.705696105956974, -8.850970268249512 ], [ -78.705696105956974, -8.85041618347168 ], [ -78.705970764160099, -8.85041618347168 ], [ -78.705970764160099, -8.850137710571289 ], [ -78.706253051757756, -8.850137710571289 ], [ -78.706253051757756, -8.849583625793457 ], [ -78.706527709960938, -8.849583625793457 ], [ -78.706527709960938, -8.84930419921875 ], [ -78.706802368164062, -8.849306106567326 ], [ -78.706802368164062, -8.849027633666935 ], [ -78.707084655761719, -8.849027633666935 ], [ -78.707084655761719, -8.848471641540471 ], [ -78.707359313964844, -8.848471641540471 ], [ -78.707359313964844, -8.848194122314396 ], [ -78.7076416015625, -8.848194122314396 ], [ -78.7076416015625, -8.847915649414006 ], [ -78.708190917968636, -8.847915649414006 ], [ -78.708190917968636, -8.847638130187931 ], [ -78.708473205566349, -8.847640037536621 ], [ -78.708473205566349, -8.84736156463623 ], [ -78.708747863769474, -8.84736156463623 ], [ -78.708747863769474, -8.84708118438715 ], [ -78.709030151367131, -8.847084045410156 ], [ -78.709030151367131, -8.846805572509766 ], [ -78.709304809570256, -8.846805572509766 ], [ -78.709304809570256, -8.846528053283578 ], [ -78.709861755371094, -8.846528053283578 ], [ -78.709861755371094, -8.846249580383301 ], [ -78.709587097167912, -8.846249580383301 ], [ -78.709587097167912, -8.845415115356445 ], [ -78.710136413574219, -8.845417976379395 ], [ -78.710136413574219, -8.844582557678223 ], [ -78.710418701171875, -8.844582557678223 ], [ -78.710418701171875, -8.844305038452148 ], [ -78.710975646972656, -8.844305038452148 ], [ -78.710975646972656, -8.844026565551758 ], [ -78.711250305175781, -8.844026565551758 ], [ -78.711250305175781, -8.843749046325684 ], [ -78.711524963378849, -8.843749046325684 ], [ -78.711524963378849, -8.843193054199219 ], [ -78.711250305175781, -8.843193054199219 ], [ -78.711250305175781, -8.842637062072754 ], [ -78.711524963378849, -8.84263896942133 ], [ -78.711524963378849, -8.842361450195312 ], [ -78.711807250976506, -8.842361450195312 ], [ -78.711807250976506, -8.842081069946289 ], [ -78.712081909179631, -8.842081069946289 ], [ -78.712081909179631, -8.841526985168457 ], [ -78.712364196777287, -8.841526985168457 ], [ -78.712364196777287, -8.841251373290959 ], [ -78.712638854980412, -8.841251373290959 ], [ -78.712638854980412, -8.840970993041992 ], [ -78.712913513183594, -8.840970993041992 ], [ -78.712913513183594, -8.840415000915527 ], [ -78.71319580078125, -8.840416908264103 ], [ -78.71319580078125, -8.840139389038029 ], [ -78.713470458984375, -8.840139389038029 ], [ -78.713470458984375, -8.839860916137638 ], [ -78.713752746582031, -8.839860916137638 ], [ -78.713752746582031, -8.839583396911564 ], [ -78.714027404785156, -8.839583396911564 ], [ -78.714027404785156, -8.839304924011174 ], [ -78.714584350585938, -8.839304924011174 ], [ -78.714584350585938, -8.838748931884709 ], [ -78.714859008789006, -8.838748931884709 ], [ -78.714859008789006, -8.838473320007324 ], [ -78.715415954589787, -8.838473320007324 ], [ -78.715415954589787, -8.837917327880803 ], [ -78.715690612792912, -8.837917327880803 ], [ -78.715698242187443, -8.837361335754338 ], [ -78.715972900390625, -8.837361335754338 ], [ -78.715972900390625, -8.837082862853947 ], [ -78.71624755859375, -8.837082862853947 ], [ -78.71624755859375, -8.836805343627873 ], [ -78.716529846191406, -8.836805343627873 ], [ -78.716529846191406, -8.836526870727482 ], [ -78.71624755859375, -8.836526870727482 ], [ -78.71624755859375, -8.836251258850098 ], [ -78.716529846191406, -8.836251258850098 ], [ -78.716529846191406, -8.835695266723633 ], [ -78.716804504394531, -8.835695266723633 ], [ -78.716804504394531, -8.835416793823242 ], [ -78.717086791992188, -8.835416793823242 ], [ -78.717086791992188, -8.835139274597168 ], [ -78.717361450195312, -8.835139274597168 ], [ -78.717361450195312, -8.834583282470589 ], [ -78.717636108398438, -8.834583282470589 ], [ -78.717636108398438, -8.834306716918945 ], [ -78.71791839599598, -8.834306716918945 ], [ -78.71791839599598, -8.834029197692871 ], [ -78.718193054199162, -8.834027290344181 ], [ -78.718193054199162, -8.833470344543457 ], [ -78.718475341796818, -8.833473205566406 ], [ -78.718475341796818, -8.833194732666016 ], [ -78.71875, -8.833194732666016 ], [ -78.71875, -8.833473205566406 ], [ -78.719024658203125, -8.833473205566406 ], [ -78.719024658203125, -8.833194732666016 ], [ -78.719306945800781, -8.833194732666016 ], [ -78.719306945800781, -8.832638740539551 ], [ -78.719581604003906, -8.832638740539551 ], [ -78.719581604003906, -8.83236026763916 ], [ -78.719863891601562, -8.83236026763916 ], [ -78.719863891601562, -8.832084655761662 ], [ -78.720413208007812, -8.832084655761662 ], [ -78.720413208007812, -8.831528663635197 ], [ -78.720695495605469, -8.831528663635197 ], [ -78.720695495605469, -8.830971717834416 ], [ -78.72097015380848, -8.830971717834416 ], [ -78.72097015380848, -8.829859733581486 ], [ -78.721252441406193, -8.829859733581486 ], [ -78.721252441406193, -8.829582214355469 ], [ -78.721527099609318, -8.829582214355469 ], [ -78.721527099609318, -8.829305648803711 ], [ -78.721801757812443, -8.829305648803711 ], [ -78.721801757812443, -8.828749656677246 ], [ -78.722084045410099, -8.828749656677246 ], [ -78.722084045410099, -8.828470230102539 ], [ -78.722358703613281, -8.828472137451115 ], [ -78.722358703613281, -8.828193664550668 ], [ -78.722640991210938, -8.828193664550668 ], [ -78.722640991210938, -8.82763767242426 ], [ -78.722915649414062, -8.82763767242426 ], [ -78.722915649414062, -8.827360153198185 ], [ -78.723197937011719, -8.827360153198185 ], [ -78.723197937011719, -8.827083587646484 ], [ -78.723472595214844, -8.827083587646484 ], [ -78.723472595214844, -8.82652759552002 ], [ -78.723747253417969, -8.82652759552002 ], [ -78.723747253417969, -8.826250076293945 ], [ -78.724029541015625, -8.826250076293945 ], [ -78.724029541015625, -8.825971603393555 ], [ -78.724304199218693, -8.825971603393555 ], [ -78.724304199218693, -8.82541561126709 ], [ -78.724586486816349, -8.82541561126709 ], [ -78.724586486816349, -8.825138092040959 ], [ -78.724861145019474, -8.825139999389648 ], [ -78.724861145019474, -8.824861526489258 ], [ -78.725135803222599, -8.824861526489258 ], [ -78.725135803222599, -8.824305534362793 ], [ -78.725418090820256, -8.824305534362793 ], [ -78.725418090820256, -8.824028015136719 ], [ -78.725692749023438, -8.824028015136719 ], [ -78.725692749023438, -8.823749542236328 ], [ -78.725975036621094, -8.823749542236328 ], [ -78.725975036621094, -8.824028015136719 ], [ -78.726249694824219, -8.824028015136719 ], [ -78.726249694824219, -8.823472023010254 ], [ -78.726524353027344, -8.823472023010254 ], [ -78.726524353027344, -8.823193550109863 ], [ -78.726806640625, -8.823193550109863 ], [ -78.726806640625, -8.822360038757324 ], [ -78.727081298828125, -8.822360038757324 ], [ -78.727081298828125, -8.821805953979492 ], [ -78.727363586425781, -8.821805953979492 ], [ -78.727363586425781, -8.821249961853027 ], [ -78.727638244628849, -8.821249961853027 ], [ -78.727638244628849, -8.820972442626953 ], [ -78.727912902831974, -8.820972442626953 ], [ -78.727912902831974, -8.820693969726562 ], [ -78.728195190429631, -8.820693969726562 ], [ -78.728195190429631, -8.820137023925781 ], [ -78.728469848632756, -8.820139884948674 ], [ -78.728469848632756, -8.819862365722599 ], [ -78.72930908203125, -8.819862365722599 ], [ -78.72930908203125, -8.819581031799316 ], [ -78.729583740234375, -8.819581031799316 ], [ -78.729583740234375, -8.819027900695744 ], [ -78.72930908203125, -8.819027900695744 ], [ -78.72930908203125, -8.818749427795353 ], [ -78.729583740234375, -8.818749427795353 ], [ -78.729583740234375, -8.818470954894963 ], [ -78.7298583984375, -8.818470954894963 ], [ -78.7298583984375, -8.81791782379139 ], [ -78.730140686035156, -8.81791782379139 ], [ -78.730140686035156, -8.817640304565373 ], [ -78.730415344238281, -8.817640304565373 ], [ -78.730415344238281, -8.817083358764535 ], [ -78.730697631835824, -8.817083358764535 ], [ -78.730697631835824, -8.816804885864258 ], [ -78.730972290039006, -8.816804885864258 ], [ -78.730972290039006, -8.816527366638127 ], [ -78.731246948242131, -8.816527366638127 ], [ -78.731246948242131, -8.816248893737679 ], [ -78.732086181640625, -8.816248893737679 ], [ -78.732086181640625, -8.815971374511662 ], [ -78.73236083984375, -8.815971374511662 ], [ -78.73236083984375, -8.815417289733887 ], [ -78.732086181640625, -8.815417289733887 ], [ -78.732086181640625, -8.814861297607422 ], [ -78.73236083984375, -8.814861297607422 ], [ -78.73236083984375, -8.814582824707031 ], [ -78.732635498046875, -8.814582824707031 ], [ -78.732635498046875, -8.814305305480957 ], [ -78.732917785644531, -8.814305305480957 ], [ -78.732917785644531, -8.814582824707031 ], [ -78.733192443847656, -8.814582824707031 ], [ -78.733192443847656, -8.814026832580566 ], [ -78.733474731445312, -8.814026832580566 ], [ -78.733474731445312, -8.813749313354492 ], [ -78.733749389648324, -8.813751220703125 ], [ -78.733749389648324, -8.81319522857666 ], [ -78.734024047851506, -8.81319522857666 ], [ -78.734024047851506, -8.81291675567627 ], [ -78.734306335449162, -8.81291675567627 ], [ -78.734306335449162, -8.812360763549805 ], [ -78.734580993652287, -8.812360763549805 ], [ -78.734580993652287, -8.81208324432373 ], [ -78.734863281249943, -8.81208324432373 ], [ -78.734863281249943, -8.81180477142334 ], [ -78.735137939453125, -8.81180477142334 ], [ -78.735137939453125, -8.810971260070801 ], [ -78.735420227050781, -8.810971260070801 ], [ -78.735420227050781, -8.810415267944336 ], [ -78.735694885253906, -8.810417175292969 ], [ -78.735694885253906, -8.810138702392521 ], [ -78.735969543457031, -8.810138702392521 ], [ -78.735969543457031, -8.809859275817757 ], [ -78.736526489257812, -8.809861183166504 ], [ -78.736526489257812, -8.809582710266113 ], [ -78.736808776855469, -8.809582710266113 ], [ -78.736808776855469, -8.809305191040039 ], [ -78.736526489257812, -8.809305191040039 ], [ -78.736526489257812, -8.809026718139648 ], [ -78.736808776855469, -8.809026718139648 ], [ -78.736808776855469, -8.80847263336176 ], [ -78.737083435058537, -8.80847263336176 ], [ -78.737083435058537, -8.808195114135685 ], [ -78.737358093261662, -8.808195114135685 ], [ -78.737358093261662, -8.80847263336176 ], [ -78.737640380859318, -8.80847263336176 ], [ -78.737640380859318, -8.807639122009221 ], [ -78.737915039062443, -8.807639122009221 ], [ -78.737915039062443, -8.80736064910883 ], [ -78.738197326660099, -8.80736064910883 ], [ -78.738197326660099, -8.807083129882756 ], [ -78.738471984863281, -8.807083129882756 ], [ -78.738471984863281, -8.806804656982365 ], [ -78.738746643066406, -8.806804656982365 ], [ -78.738746643066406, -8.806526184081974 ], [ -78.738471984863281, -8.80652904510498 ], [ -78.738471984863281, -8.80625057220459 ], [ -78.738746643066406, -8.80625057220459 ], [ -78.738746643066406, -8.80597019195551 ], [ -78.739028930664062, -8.80597019195551 ], [ -78.739028930664062, -8.805417060851994 ], [ -78.739303588867188, -8.805417060851994 ], [ -78.739303588867188, -8.805137634277344 ], [ -78.739585876464844, -8.805137634277344 ], [ -78.739585876464844, -8.80486011505127 ], [ -78.739860534667969, -8.80486011505127 ], [ -78.739860534667969, -8.804585456848145 ], [ -78.740417480468693, -8.804585456848145 ], [ -78.740417480468693, -8.804304122924691 ], [ -78.740135192871037, -8.804306983947754 ], [ -78.740135192871037, -8.80402946472168 ], [ -78.740417480468693, -8.80402946472168 ], [ -78.740417480468693, -8.803748130798283 ], [ -78.740692138671818, -8.803750038146973 ], [ -78.740692138671818, -8.803471565246582 ], [ -78.740974426269474, -8.803471565246582 ], [ -78.740974426269474, -8.803192138671818 ], [ -78.741249084472599, -8.803194046020508 ], [ -78.741249084472599, -8.802915573120117 ], [ -78.741806030273438, -8.802915573120117 ], [ -78.741806030273438, -8.802362442016545 ], [ -78.742080688476562, -8.802362442016545 ], [ -78.742080688476562, -8.801806449890137 ], [ -78.742362976074219, -8.801806449890137 ], [ -78.742362976074219, -8.801526069641113 ], [ -78.742919921875, -8.801526069641113 ], [ -78.742919921875, -8.800970077514648 ], [ -78.743194580078125, -8.800971984863281 ], [ -78.743194580078125, -8.800694465637207 ], [ -78.743751525878849, -8.800694465637207 ], [ -78.743751525878849, -8.800138473510742 ], [ -78.744026184081974, -8.800138473510742 ], [ -78.744026184081974, -8.799860000610352 ], [ -78.744308471679631, -8.799860000610352 ], [ -78.744308471679631, -8.799304008483887 ], [ -78.744583129882812, -8.799304008483887 ], [ -78.744583129882812, -8.798749923705998 ], [ -78.744857788085938, -8.798749923705998 ], [ -78.744857788085938, -8.79847240447998 ], [ -78.745140075683594, -8.79847240447998 ], [ -78.745140075683594, -8.798193931579533 ], [ -78.745414733886719, -8.798193931579533 ], [ -78.745414733886719, -8.797637939453125 ], [ -78.746246337890625, -8.797637939453125 ], [ -78.746246337890625, -8.797362327575627 ], [ -78.746528625488168, -8.797362327575627 ], [ -78.746528625488168, -8.79708194732666 ], [ -78.746803283691349, -8.797083854675293 ], [ -78.746803283691349, -8.796250343322697 ], [ -78.747085571289006, -8.796250343322697 ], [ -78.747085571289006, -8.795417785644531 ], [ -78.747360229492131, -8.795417785644531 ], [ -78.747360229492131, -8.794861793518066 ], [ -78.747917175292969, -8.794861793518066 ], [ -78.747917175292969, -8.794584274291992 ], [ -78.748191833496094, -8.794584274291992 ], [ -78.748191833496094, -8.794305801391602 ], [ -78.748748779296875, -8.794305801391602 ], [ -78.748748779296875, -8.793472290039006 ], [ -78.74847412109375, -8.793472290039006 ], [ -78.74847412109375, -8.793195724487305 ], [ -78.748748779296875, -8.793195724487305 ], [ -78.748748779296875, -8.79263973236084 ], [ -78.749031066894531, -8.79263973236084 ], [ -78.749031066894531, -8.792362213134766 ], [ -78.749305725097656, -8.792362213134766 ], [ -78.749305725097656, -8.792083740234375 ], [ -78.749580383300668, -8.792083740234375 ], [ -78.749580383300668, -8.791526794433594 ], [ -78.749862670898381, -8.791526794433594 ], [ -78.749862670898381, -8.79124927520752 ], [ -78.750137329101506, -8.79124927520752 ], [ -78.750137329101506, -8.790970802307129 ], [ -78.750419616699162, -8.790970802307129 ], [ -78.750419616699162, -8.790693283081055 ], [ -78.750694274902287, -8.790693283081055 ], [ -78.750694274902287, -8.79013729095459 ], [ -78.750968933105469, -8.790139198303166 ], [ -78.750968933105469, -8.789860725402775 ], [ -78.751808166503906, -8.789860725402775 ], [ -78.751808166503906, -8.789583206176701 ], [ -78.752082824707031, -8.789583206176701 ], [ -78.752082824707031, -8.788471221923828 ], [ -78.752639770507812, -8.788471221923828 ], [ -78.752639770507812, -8.78819465637207 ], [ -78.753196716308537, -8.78819465637207 ], [ -78.753196716308537, -8.787638664245492 ], [ -78.753471374511662, -8.787638664245492 ], [ -78.753471374511662, -8.787359237670898 ], [ -78.754028320312443, -8.787359237670898 ], [ -78.754028320312443, -8.786803245544434 ], [ -78.754302978515625, -8.786803245544434 ], [ -78.754302978515625, -8.786249160766545 ], [ -78.754585266113281, -8.786249160766545 ], [ -78.754585266113281, -8.785416603088379 ], [ -78.755142211914062, -8.785416603088379 ], [ -78.755142211914062, -8.785139083862305 ], [ -78.755416870117188, -8.785139083862305 ], [ -78.755416870117188, -8.784583091735783 ], [ -78.755691528320312, -8.784583091735783 ], [ -78.755691528320312, -8.783748626708928 ], [ -78.755973815917969, -8.783748626708928 ], [ -78.755973815917969, -8.783194541931152 ], [ -78.756248474121037, -8.783194541931152 ], [ -78.756248474121037, -8.782917022705078 ], [ -78.756530761718693, -8.782917022705078 ], [ -78.756530761718693, -8.782638549804688 ], [ -78.756805419921818, -8.782638549804688 ], [ -78.756805419921818, -8.782082557678223 ], [ -78.757080078124943, -8.782082557678223 ], [ -78.757080078124943, -8.781805038452148 ], [ -78.757362365722656, -8.781805038452148 ], [ -78.757362365722656, -8.78124904632557 ], [ -78.757637023925781, -8.781250953674316 ], [ -78.757637023925781, -8.780973434448242 ], [ -78.757919311523438, -8.780973434448242 ], [ -78.757919311523438, -8.780417442321777 ], [ -78.758193969726562, -8.780417442321777 ], [ -78.758193969726562, -8.780138969421387 ], [ -78.758468627929688, -8.780138969421387 ], [ -78.758468627929688, -8.779582977294922 ], [ -78.758750915527344, -8.779582977294922 ], [ -78.758750915527344, -8.779303550720215 ], [ -78.759025573730469, -8.779303550720215 ], [ -78.759025573730469, -8.778751373291016 ], [ -78.759307861328011, -8.778751373291016 ], [ -78.759307861328011, -8.778470039367676 ], [ -78.759582519531193, -8.778470039367676 ], [ -78.759582519531193, -8.777915954589787 ], [ -78.759864807128849, -8.777915954589787 ], [ -78.759864807128849, -8.777638435363713 ], [ -78.760139465331974, -8.777638435363713 ], [ -78.760139465331974, -8.777082443237305 ], [ -78.760414123535156, -8.777082443237305 ], [ -78.760414123535156, -8.776806831359806 ], [ -78.760696411132812, -8.776806831359806 ], [ -78.760696411132812, -8.776249885559082 ], [ -78.760971069335938, -8.776249885559082 ], [ -78.760971069335938, -8.775972366332951 ], [ -78.761253356933594, -8.775972366332951 ], [ -78.761253356933594, -8.775416374206486 ], [ -78.761528015136719, -8.775416374206486 ], [ -78.761528015136719, -8.774862289428711 ], [ -78.761802673339844, -8.774862289428711 ], [ -78.761802673339844, -8.774306297302246 ], [ -78.7620849609375, -8.774306297302246 ], [ -78.7620849609375, -8.773750305175781 ], [ -78.762359619140511, -8.773750305175781 ], [ -78.762359619140511, -8.773194313049316 ], [ -78.762641906738224, -8.773194313049316 ], [ -78.762641906738224, -8.772640228271484 ], [ -78.762359619140511, -8.772640228271484 ], [ -78.762359619140511, -8.77208423614502 ], [ -78.7620849609375, -8.77208423614502 ], [ -78.7620849609375, -8.771528244018555 ], [ -78.761802673339844, -8.771528244018555 ], [ -78.761802673339844, -8.771249771118164 ], [ -78.761253356933594, -8.771249771118164 ], [ -78.761253356933594, -8.77097225189209 ], [ -78.760696411132812, -8.77097225189209 ], [ -78.760696411132812, -8.770693778991699 ], [ -78.759864807128849, -8.770693778991699 ], [ -78.758193969726562, -8.770693778991699 ], [ -78.758193969726562, -8.770416259765625 ], [ -78.757919311523438, -8.770416259765625 ], [ -78.757919311523438, -8.770137786865234 ], [ -78.757637023925781, -8.770137786865234 ], [ -78.757637023925781, -8.769304275512582 ], [ -78.757362365722656, -8.769304275512582 ], [ -78.757362365722656, -8.768194198608398 ], [ -78.757080078124943, -8.768194198608398 ], [ -78.757080078124943, -8.767361640930119 ], [ -78.756805419921818, -8.767361640930119 ], [ -78.756805419921818, -8.76652812957758 ], [ -78.757080078124943, -8.76652812957758 ], [ -78.757080078124943, -8.765695571899414 ], [ -78.757209777831918, -8.765695571899414 ], [ -78.757362365722656, -8.765695571899414 ], [ -78.757362365722656, -8.764859199523869 ], [ -78.757637023925781, -8.764859199523869 ], [ -78.757637023925781, -8.764303207397461 ], [ -78.757919311523438, -8.764305114746094 ], [ -78.757919311523438, -8.764026641845703 ], [ -78.758468627929688, -8.764026641845703 ], [ -78.758468627929688, -8.763749122619515 ], [ -78.758750915527344, -8.763749122619515 ], [ -78.758750915527344, -8.763193130493107 ], [ -78.759025573730469, -8.763193130493107 ], [ -78.759025573730469, -8.762916564941406 ], [ -78.759307861328011, -8.762916564941406 ], [ -78.759307861328011, -8.762360572814941 ], [ -78.759582519531193, -8.762360572814941 ], [ -78.759582519531193, -8.762081146240178 ], [ -78.759864807128849, -8.762083053588867 ], [ -78.759864807128849, -8.761804580688477 ], [ -78.760139465331974, -8.761804580688477 ], [ -78.760139465331974, -8.761248588562012 ], [ -78.760414123535156, -8.761248588562012 ], [ -78.760414123535156, -8.760415077209473 ], [ -78.760696411132812, -8.760416984558105 ], [ -78.760696411132812, -8.759583473205566 ], [ -78.760971069335938, -8.759583473205566 ], [ -78.760971069335938, -8.759305000305176 ], [ -78.761253356933594, -8.759305000305176 ], [ -78.761253356933594, -8.758749008178711 ], [ -78.761528015136719, -8.758749008178711 ], [ -78.761528015136719, -8.758473396301213 ], [ -78.761802673339844, -8.758473396301213 ], [ -78.761802673339844, -8.758193016052246 ], [ -78.7620849609375, -8.758193016052246 ], [ -78.7620849609375, -8.757638931274357 ], [ -78.761802673339844, -8.757638931274357 ], [ -78.761802673339844, -8.75736141204834 ], [ -78.761528015136719, -8.75736141204834 ], [ -78.761528015136719, -8.756805419921875 ], [ -78.761253356933594, -8.756805419921875 ], [ -78.761253356933594, -8.75597095489502 ], [ -78.760971069335938, -8.755972862243596 ], [ -78.760971069335938, -8.755695343017521 ], [ -78.760696411132812, -8.755695343017521 ], [ -78.760696411132812, -8.755416870117131 ], [ -78.760414123535156, -8.755416870117131 ], [ -78.760414123535156, -8.755139350891056 ], [ -78.758949279785156, -8.755139350891056 ], [ -78.758750915527344, -8.755139350891056 ], [ -78.758750915527344, -8.754860877990666 ], [ -78.758468627929688, -8.754860877990666 ], [ -78.758468627929688, -8.754583358764592 ], [ -78.757919311523438, -8.754583358764592 ], [ -78.757919311523438, -8.754306793212891 ], [ -78.757568359374943, -8.754306793212891 ], [ -78.757362365722656, -8.754306793212891 ], [ -78.757362365722656, -8.754136085510254 ], [ -78.757362365722656, -8.754027366638184 ], [ -78.757232666015625, -8.754027366638184 ], [ -78.757080078124943, -8.754027366638184 ], [ -78.757080078124943, -8.753883361816349 ], [ -78.757080078124943, -8.753750801086426 ], [ -78.756530761718693, -8.753750801086426 ], [ -78.756530761718693, -8.753473281860238 ], [ -78.755973815917969, -8.753473281860238 ], [ -78.755973815917969, -8.753194808959961 ], [ -78.755416870117188, -8.753194808959961 ], [ -78.755416870117188, -8.75291728973383 ], [ -78.755142211914062, -8.75291728973383 ], [ -78.755142211914062, -8.752638816833382 ], [ -78.754585266113281, -8.752638816833382 ], [ -78.754585266113281, -8.752361297607365 ], [ -78.754028320312443, -8.752361297607365 ], [ -78.754028320312443, -8.752084732055664 ], [ -78.753753662109318, -8.752084732055664 ], [ -78.753753662109318, -8.751804351806527 ], [ -78.753196716308537, -8.751804351806527 ], [ -78.753196716308537, -8.751528739929199 ], [ -78.752914428710881, -8.751528739929199 ], [ -78.752914428710881, -8.751251220703125 ], [ -78.752357482910156, -8.751251220703125 ], [ -78.752357482910156, -8.750972747802734 ], [ -78.752082824707031, -8.750972747802734 ], [ -78.752082824707031, -8.750694274902344 ], [ -78.751808166503906, -8.750694274902344 ], [ -78.751808166503906, -8.750415802001953 ], [ -78.75152587890625, -8.750415802001953 ], [ -78.75152587890625, -8.750138282775879 ], [ -78.750968933105469, -8.750138282775879 ], [ -78.750968933105469, -8.749859809875488 ], [ -78.750694274902287, -8.749859809875488 ], [ -78.750694274902287, -8.749582290649414 ], [ -78.750419616699162, -8.749582290649414 ], [ -78.750419616699162, -8.749305725097599 ], [ -78.749862670898381, -8.749305725097599 ], [ -78.749862670898381, -8.749028205871525 ], [ -78.749580383300668, -8.749028205871525 ], [ -78.749580383300668, -8.748749732971135 ], [ -78.749305725097656, -8.748749732971135 ], [ -78.749305725097656, -8.748472213745117 ], [ -78.749031066894531, -8.748472213745117 ], [ -78.749031066894531, -8.74819374084467 ], [ -78.74847412109375, -8.74819374084467 ], [ -78.74847412109375, -8.747914314269963 ], [ -78.748191833496094, -8.747916221618652 ], [ -78.748191833496094, -8.747637748718262 ], [ -78.74847412109375, -8.747637748718262 ], [ -78.74847412109375, -8.747360229492188 ], [ -78.748748779296875, -8.747360229492188 ], [ -78.748748779296875, -8.747083663940316 ], [ -78.74847412109375, -8.747083663940316 ], [ -78.74847412109375, -8.746804237365723 ], [ -78.748191833496094, -8.746806144714299 ], [ -78.748191833496094, -8.746527671813908 ], [ -78.747917175292969, -8.746527671813908 ], [ -78.747917175292969, -8.746248245239258 ], [ -78.747642517089787, -8.746250152587834 ], [ -78.747642517089787, -8.745971679687443 ], [ -78.747360229492131, -8.745971679687443 ], [ -78.747360229492131, -8.745694160461369 ], [ -78.747085571289006, -8.745694160461369 ], [ -78.747085571289006, -8.745415687560978 ], [ -78.746803283691349, -8.745415687560978 ], [ -78.746803283691349, -8.745138168334961 ], [ -78.746528625488168, -8.745140075683594 ], [ -78.746528625488168, -8.744861602783203 ], [ -78.746246337890625, -8.744859695434513 ], [ -78.746246337890625, -8.744582176208496 ], [ -78.7459716796875, -8.744584083557129 ], [ -78.7459716796875, -8.744305610656738 ], [ -78.745697021484375, -8.744305610656738 ], [ -78.745697021484375, -8.743749618530273 ], [ -78.745414733886719, -8.743749618530273 ], [ -78.745414733886719, -8.743193626403752 ], [ -78.745140075683594, -8.743193626403752 ], [ -78.745140075683594, -8.742916107177678 ], [ -78.744857788085938, -8.742918014526367 ], [ -78.744857788085938, -8.742362022399902 ], [ -78.74444580078125, -8.742362022399902 ], [ -78.744026184081974, -8.742360115051213 ], [ -78.744026184081974, -8.742637634277287 ], [ -78.743194580078125, -8.742637634277287 ], [ -78.743194580078125, -8.742360115051213 ], [ -78.742919921875, -8.742362022399902 ], [ -78.742919921875, -8.742083549499512 ], [ -78.742637634277344, -8.742083549499512 ], [ -78.742637634277344, -8.741806030273438 ], [ -78.742362976074219, -8.741806030273438 ], [ -78.742362976074219, -8.741527557373047 ], [ -78.742080688476562, -8.741527557373047 ], [ -78.742080688476562, -8.741250038146973 ], [ -78.741806030273438, -8.741250038146973 ], [ -78.741806030273438, -8.740971565246582 ], [ -78.741531372070312, -8.740971565246582 ], [ -78.741531372070312, -8.740694046020394 ], [ -78.741249084472599, -8.740694046020394 ], [ -78.741249084472599, -8.739862442016602 ], [ -78.740974426269474, -8.739862442016602 ], [ -78.740974426269474, -8.738192558288574 ], [ -78.740692138671818, -8.738192558288574 ], [ -78.740692138671818, -8.736804962158146 ], [ -78.740417480468693, -8.736804962158146 ], [ -78.740417480468693, -8.735136985778809 ], [ -78.740135192871037, -8.735138893127328 ], [ -78.740135192871037, -8.73347091674799 ], [ -78.740417480468693, -8.73347091674799 ], [ -78.740417480468693, -8.731367111206055 ], [ -78.740417480468693, -8.729623794555607 ], [ -78.740417480468693, -8.727639198303223 ], [ -78.740692138671818, -8.727639198303223 ], [ -78.740692138671818, -8.725970268249512 ], [ -78.740974426269474, -8.725973129272404 ], [ -78.740974426269474, -8.724671363830566 ], [ -78.740974426269474, -8.723372459411621 ], [ -78.740974426269474, -8.722638130187931 ], [ -78.741249084472599, -8.722638130187931 ], [ -78.741249084472599, -8.719860076904297 ], [ -78.740974426269474, -8.719860076904297 ], [ -78.740974426269474, -8.719584465026855 ], [ -78.740692138671818, -8.719584465026855 ], [ -78.740692138671818, -8.719028472900391 ], [ -78.740417480468693, -8.719028472900391 ], [ -78.740417480468693, -8.71875 ], [ -78.740135192871037, -8.71875 ], [ -78.740135192871037, -8.718471527099609 ], [ -78.739860534667969, -8.718471527099609 ], [ -78.739860534667969, -8.717915534973145 ], [ -78.739585876464844, -8.717915534973145 ], [ -78.739585876464844, -8.71763801574707 ], [ -78.739303588867188, -8.71763801574707 ], [ -78.739303588867188, -8.717362403869629 ], [ -78.739585876464844, -8.717362403869629 ], [ -78.739585876464844, -8.717082023620605 ], [ -78.739860534667969, -8.717083930969181 ], [ -78.739860534667969, -8.716806411743164 ], [ -78.739585876464844, -8.716806411743164 ], [ -78.739585876464844, -8.716250419616699 ], [ -78.739303588867188, -8.716250419616699 ], [ -78.739303588867188, -8.715971946716309 ], [ -78.739028930664062, -8.715971946716309 ], [ -78.739028930664062, -8.715694427490234 ], [ -78.738746643066406, -8.715694427490234 ], [ -78.738746643066406, -8.711527824401799 ], [ -78.739028930664062, -8.711527824401799 ], [ -78.739028930664062, -8.710970878601074 ], [ -78.739303588867188, -8.710970878601074 ], [ -78.739303588867188, -8.710693359374943 ], [ -78.738471984863281, -8.710693359374943 ], [ -78.738471984863281, -8.710140228271484 ], [ -78.738746643066406, -8.710140228271484 ], [ -78.738746643066406, -8.709027290344238 ], [ -78.739028930664062, -8.709027290344238 ], [ -78.739028930664062, -8.707917213439941 ], [ -78.739303588867188, -8.707917213439941 ], [ -78.739303588867188, -8.706805229187012 ], [ -78.739585876464844, -8.706805229187012 ], [ -78.739585876464844, -8.705693244934082 ], [ -78.739860534667969, -8.705695152282658 ], [ -78.739860534667969, -8.70374870300293 ], [ -78.740135192871037, -8.70374870300293 ], [ -78.740135192871037, -8.703471183776855 ], [ -78.740417480468693, -8.703471183776855 ], [ -78.740417480468693, -8.702917098998967 ], [ -78.740692138671818, -8.702917098998967 ], [ -78.740692138671818, -8.702638626098576 ], [ -78.740974426269474, -8.702638626098576 ], [ -78.740974426269474, -8.702361106872502 ], [ -78.741249084472599, -8.702361106872502 ], [ -78.741249084472599, -8.701805114746037 ], [ -78.741531372070312, -8.701805114746037 ], [ -78.741531372070312, -8.701526641845646 ], [ -78.741806030273438, -8.701526641845646 ], [ -78.741806030273438, -8.700972557067871 ], [ -78.742080688476562, -8.700972557067871 ], [ -78.742080688476562, -8.700139045715218 ], [ -78.742362976074219, -8.700139045715218 ], [ -78.742362976074219, -8.699304580688363 ], [ -78.742637634277344, -8.699304580688363 ], [ -78.742637634277344, -8.698470115661507 ], [ -78.742919921875, -8.69847297668457 ], [ -78.742919921875, -8.697637557983398 ], [ -78.743194580078125, -8.697637557983398 ], [ -78.743194580078125, -8.696804046630859 ], [ -78.743469238281193, -8.696804046630859 ], [ -78.743469238281193, -8.69569206237793 ], [ -78.743751525878849, -8.695693969726506 ], [ -78.743751525878849, -8.694862365722599 ], [ -78.744026184081974, -8.694862365722599 ], [ -78.744026184081974, -8.694025993347168 ], [ -78.744308471679631, -8.694027900695744 ], [ -78.744308471679631, -8.693194389343205 ], [ -78.744583129882812, -8.693194389343205 ], [ -78.744583129882812, -8.692359924316349 ], [ -78.744857788085938, -8.692359924316349 ], [ -78.744857788085938, -8.691249847412109 ], [ -78.745140075683594, -8.691249847412109 ], [ -78.745140075683594, -8.690416336059513 ], [ -78.745414733886719, -8.690416336059513 ], [ -78.745414733886719, -8.689583778381348 ], [ -78.745697021484375, -8.689583778381348 ], [ -78.745697021484375, -8.688750267028809 ], [ -78.7459716796875, -8.688750267028809 ], [ -78.7459716796875, -8.687915802001953 ], [ -78.746246337890625, -8.687915802001953 ], [ -78.746246337890625, -8.686805725097656 ], [ -78.746528625488168, -8.686805725097656 ], [ -78.746528625488168, -8.685972213745117 ], [ -78.746803283691349, -8.685972213745117 ], [ -78.746803283691349, -8.685415267944336 ], [ -78.747360229492131, -8.685415267944336 ], [ -78.747360229492131, -8.685139656066838 ], [ -78.747642517089787, -8.685139656066838 ], [ -78.747642517089787, -8.684583663940373 ], [ -78.747360229492131, -8.684583663940373 ], [ -78.747360229492131, -8.684303283691406 ], [ -78.747085571289006, -8.684306144714355 ], [ -78.747085571289006, -8.684162139892521 ], [ -78.747085571289006, -8.683747291564941 ], [ -78.746803283691349, -8.683749198913517 ], [ -78.746803283691349, -8.683193206787109 ], [ -78.746528625488168, -8.683193206787109 ], [ -78.746528625488168, -8.680971145629826 ], [ -78.746803283691349, -8.680971145629826 ], [ -78.746803283691349, -8.680415153503361 ], [ -78.747085571289006, -8.680415153503361 ], [ -78.747085571289006, -8.679861068725586 ], [ -78.746803283691349, -8.679861068725586 ], [ -78.746803283691349, -8.679305076599121 ], [ -78.746528625488168, -8.679305076599121 ], [ -78.746528625488168, -8.678473472595215 ], [ -78.746246337890625, -8.678473472595215 ], [ -78.746246337890625, -8.677916526794434 ], [ -78.7459716796875, -8.677916526794434 ], [ -78.7459716796875, -8.677360534667969 ], [ -78.745697021484375, -8.677360534667969 ], [ -78.745697021484375, -8.67652702331543 ], [ -78.745414733886719, -8.67652702331543 ], [ -78.745414733886719, -8.675695419311523 ], [ -78.745140075683594, -8.675695419311523 ], [ -78.745140075683594, -8.674860954284668 ], [ -78.744857788085938, -8.674860954284668 ], [ -78.744857788085938, -8.674304962158203 ], [ -78.744026184081974, -8.674306869506779 ], [ -78.744026184081974, -8.674027442932129 ], [ -78.743469238281193, -8.674027442932129 ], [ -78.743469238281193, -8.673748970031738 ], [ -78.743194580078125, -8.673750877380314 ], [ -78.743194580078125, -8.67347335815424 ], [ -78.742637634277344, -8.67347335815424 ], [ -78.742637634277344, -8.673194885253849 ], [ -78.742362976074219, -8.673194885253849 ], [ -78.742362976074219, -8.672638893127385 ], [ -78.742080688476562, -8.672638893127385 ], [ -78.742080688476562, -8.672082901000977 ], [ -78.741806030273438, -8.672082901000977 ], [ -78.741806030273438, -8.671251296997013 ], [ -78.741531372070312, -8.671251296997013 ], [ -78.741531372070312, -8.66985988616932 ], [ -78.741249084472599, -8.66985988616932 ], [ -78.741249084472599, -8.669026374816838 ], [ -78.742080688476562, -8.669026374816838 ], [ -78.742080688476562, -8.668749809265137 ], [ -78.742362976074219, -8.668749809265137 ], [ -78.742362976074219, -8.665971755981445 ], [ -78.742637634277344, -8.665971755981445 ], [ -78.742637634277344, -8.663193702697754 ], [ -78.742919921875, -8.663193702697754 ], [ -78.742919921875, -8.660415649414006 ], [ -78.743194580078125, -8.660415649414006 ], [ -78.743194580078125, -8.658749580383187 ], [ -78.743469238281193, -8.658749580383187 ], [ -78.743469238281193, -8.65764045715332 ], [ -78.743751525878849, -8.65764045715332 ], [ -78.743751525878849, -8.656526565551758 ], [ -78.744026184081974, -8.656526565551758 ], [ -78.744026184081974, -8.655417442321777 ], [ -78.744308471679631, -8.655417442321777 ], [ -78.744308471679631, -8.654305458068848 ], [ -78.744583129882812, -8.654305458068848 ], [ -78.744583129882812, -8.653195381164494 ], [ -78.744857788085938, -8.653195381164494 ], [ -78.744857788085938, -8.652083396911621 ], [ -78.745140075683594, -8.652083396911621 ], [ -78.745140075683594, -8.650973320007267 ], [ -78.745414733886719, -8.650973320007267 ], [ -78.745414733886719, -8.649861335754338 ], [ -78.745697021484375, -8.649861335754338 ], [ -78.745697021484375, -8.648751258850098 ], [ -78.7459716796875, -8.648751258850098 ], [ -78.7459716796875, -8.648472785949707 ], [ -78.746246337890625, -8.648472785949707 ], [ -78.746246337890625, -8.647916793823242 ], [ -78.746528625488168, -8.647916793823242 ], [ -78.746528625488168, -8.646804809570199 ], [ -78.746803283691349, -8.646804809570199 ], [ -78.746803283691349, -8.645970344543343 ], [ -78.746528625488168, -8.645973205566406 ], [ -78.746528625488168, -8.645417213439941 ], [ -78.746803283691349, -8.645417213439941 ], [ -78.746803283691349, -8.644304275512695 ], [ -78.747085571289006, -8.644304275512695 ], [ -78.747085571289006, -8.643472671508789 ], [ -78.747360229492131, -8.643472671508789 ], [ -78.747360229492131, -8.642359733581486 ], [ -78.747642517089787, -8.642359733581486 ], [ -78.747642517089787, -8.641526222229004 ], [ -78.747917175292969, -8.64152812957758 ], [ -78.747917175292969, -8.640693664550724 ], [ -78.748191833496094, -8.640693664550724 ], [ -78.748191833496094, -8.639583587646484 ], [ -78.74847412109375, -8.639583587646484 ], [ -78.74847412109375, -8.638750076293945 ], [ -78.748748779296875, -8.638750076293945 ], [ -78.748748779296875, -8.63791561126709 ], [ -78.749031066894531, -8.63791561126709 ], [ -78.749031066894531, -8.636805534362793 ], [ -78.749305725097656, -8.636805534362793 ], [ -78.749305725097656, -8.635972023010254 ], [ -78.749580383300668, -8.635972023010254 ], [ -78.749580383300668, -8.635137557983398 ], [ -78.749862670898381, -8.635137557983398 ], [ -78.749862670898381, -8.634028434753418 ], [ -78.750137329101506, -8.634028434753418 ], [ -78.750137329101506, -8.633193969726562 ], [ -78.750419616699162, -8.633193969726562 ], [ -78.750419616699162, -8.632362365722656 ], [ -78.750694274902287, -8.632362365722656 ], [ -78.750694274902287, -8.631527900695801 ], [ -78.750968933105469, -8.631527900695801 ], [ -78.750968933105469, -8.630693435668945 ], [ -78.751251220703125, -8.630693435668945 ], [ -78.751251220703125, -8.629861831664982 ], [ -78.75152587890625, -8.629861831664982 ], [ -78.75152587890625, -8.629304885864144 ], [ -78.751808166503906, -8.629304885864144 ], [ -78.751808166503906, -8.628471374511662 ], [ -78.752082824707031, -8.628471374511662 ], [ -78.752082824707031, -8.627638816833496 ], [ -78.752357482910156, -8.627638816833496 ], [ -78.752357482910156, -8.626249313354435 ], [ -78.752639770507812, -8.626251220703125 ], [ -78.752639770507812, -8.626016616821289 ], [ -78.752639770507812, -8.625139236450195 ], [ -78.752914428710881, -8.625139236450195 ], [ -78.752914428710881, -8.62430477142334 ], [ -78.753196716308537, -8.62430477142334 ], [ -78.753196716308537, -8.624029159545842 ], [ -78.753471374511662, -8.624029159545842 ], [ -78.753471374511662, -8.623194694518986 ], [ -78.753753662109318, -8.623194694518986 ], [ -78.753753662109318, -8.622082710266113 ], [ -78.754028320312443, -8.622082710266113 ], [ -78.754028320312443, -8.621805191040039 ], [ -78.753753662109318, -8.621805191040039 ], [ -78.753753662109318, -8.621526718139648 ], [ -78.754028320312443, -8.621526718139648 ], [ -78.754028320312443, -8.62097263336176 ], [ -78.754302978515625, -8.62097263336176 ], [ -78.754302978515625, -8.620695114135685 ], [ -78.754859924316406, -8.620695114135685 ], [ -78.754859924316406, -8.620139122009221 ], [ -78.754585266113281, -8.620139122009221 ], [ -78.754585266113281, -8.619304656982365 ], [ -78.754859924316406, -8.619304656982365 ], [ -78.754859924316406, -8.61875057220459 ], [ -78.755142211914062, -8.61875057220459 ], [ -78.755142211914062, -8.617917060851994 ], [ -78.755416870117188, -8.617917060851994 ], [ -78.755416870117188, -8.617081642150879 ], [ -78.755691528320312, -8.617081642150879 ], [ -78.755691528320312, -8.616804122924748 ], [ -78.756248474121037, -8.616804122924748 ], [ -78.756248474121037, -8.615971565246582 ], [ -78.756530761718693, -8.615971565246582 ], [ -78.756530761718693, -8.615415573120117 ], [ -78.756248474121037, -8.615415573120117 ], [ -78.756248474121037, -8.614863395690918 ], [ -78.756530761718693, -8.614863395690918 ], [ -78.756530761718693, -8.614306449890137 ], [ -78.756805419921818, -8.614306449890137 ], [ -78.756805419921818, -8.613470077514592 ], [ -78.757080078124943, -8.613471984863281 ], [ -78.757080078124943, -8.612638473510742 ], [ -78.757362365722656, -8.612638473510742 ], [ -78.757362365722656, -8.612084388732853 ], [ -78.757637023925781, -8.612084388732853 ], [ -78.757637023925781, -8.611248016357422 ], [ -78.757919311523438, -8.611249923705998 ], [ -78.757919311523438, -8.610416412353516 ], [ -78.758193969726562, -8.610416412353516 ], [ -78.758193969726562, -8.609862327575627 ], [ -78.758468627929688, -8.609862327575627 ], [ -78.758468627929688, -8.609027862548771 ], [ -78.758750915527344, -8.609027862548771 ], [ -78.758750915527344, -8.608471870422306 ], [ -78.759025573730469, -8.608471870422306 ], [ -78.759025573730469, -8.607915878295842 ], [ -78.759307861328011, -8.607915878295842 ], [ -78.759307861328011, -8.607084274291879 ], [ -78.759582519531193, -8.607084274291879 ], [ -78.759582519531193, -8.606528282165471 ], [ -78.759864807128849, -8.606528282165471 ], [ -78.759864807128849, -8.605695724487305 ], [ -78.760139465331974, -8.605695724487305 ], [ -78.760139465331974, -8.60513973236084 ], [ -78.760414123535156, -8.60513973236084 ], [ -78.760414123535156, -8.604306221008301 ], [ -78.760696411132812, -8.604306221008301 ], [ -78.760696411132812, -8.60374927520752 ], [ -78.760971069335938, -8.60374927520752 ], [ -78.760971069335938, -8.603193283081055 ], [ -78.761253356933594, -8.603193283081055 ], [ -78.761253356933594, -8.602360725402775 ], [ -78.761528015136719, -8.602360725402775 ], [ -78.761528015136719, -8.60180473327631 ], [ -78.761802673339844, -8.60180473327631 ], [ -78.761802673339844, -8.600971221923828 ], [ -78.7620849609375, -8.600971221923828 ], [ -78.7620849609375, -8.600415229797363 ], [ -78.762359619140511, -8.600415229797363 ], [ -78.762359619140511, -8.599859237670898 ], [ -78.762641906738224, -8.599861145019474 ], [ -78.762641906738224, -8.599026679992619 ], [ -78.762916564941349, -8.599026679992619 ], [ -78.762916564941349, -8.598472595214844 ], [ -78.763191223144474, -8.598472595214844 ], [ -78.763191223144474, -8.597916603088379 ], [ -78.763473510742131, -8.597916603088379 ], [ -78.763473510742131, -8.597360610961914 ], [ -78.763748168945312, -8.597360610961914 ], [ -78.763748168945312, -8.596804618835392 ], [ -78.764030456542969, -8.596804618835392 ], [ -78.764030456542969, -8.596527099609318 ], [ -78.764305114746094, -8.596527099609318 ], [ -78.764305114746094, -8.596804618835392 ], [ -78.764579772949219, -8.596804618835392 ], [ -78.764579772949219, -8.595417022705078 ], [ -78.76513671875, -8.595417022705078 ], [ -78.76513671875, -8.594861030578613 ], [ -78.765693664550724, -8.594861030578613 ], [ -78.765693664550724, -8.594582557678223 ], [ -78.765975952148381, -8.594582557678223 ], [ -78.765975952148381, -8.594026565551758 ], [ -78.766250610351506, -8.594026565551758 ], [ -78.766250610351506, -8.593749046325627 ], [ -78.766525268554631, -8.593750953674316 ], [ -78.766525268554631, -8.592361450195312 ], [ -78.766807556152287, -8.592361450195312 ], [ -78.766807556152287, -8.592082977294922 ], [ -78.767082214355469, -8.592082977294922 ], [ -78.767082214355469, -8.591526031494141 ], [ -78.767364501953125, -8.591526031494141 ], [ -78.767364501953125, -8.590970039367676 ], [ -78.76763916015625, -8.590972900390625 ], [ -78.76763916015625, -8.59013843536377 ], [ -78.767913818359375, -8.59013843536377 ], [ -78.767913818359375, -8.589859962463322 ], [ -78.768196105957031, -8.589859962463322 ], [ -78.768196105957031, -8.589306831359806 ], [ -78.768470764160156, -8.589306831359806 ], [ -78.768470764160156, -8.589029312133732 ], [ -78.768753051757812, -8.589029312133732 ], [ -78.768753051757812, -8.588749885558968 ], [ -78.769027709960881, -8.588749885558968 ], [ -78.769027709960881, -8.588472366332951 ], [ -78.769584655761662, -8.588472366332951 ], [ -78.769584655761662, -8.587916374206486 ], [ -78.769859313964787, -8.587916374206486 ], [ -78.769859313964787, -8.587360382080021 ], [ -78.7701416015625, -8.587360382080021 ], [ -78.7701416015625, -8.587081909179631 ], [ -78.770416259765625, -8.587081909179631 ], [ -78.770416259765625, -8.586527824401855 ], [ -78.77069091796875, -8.586527824401855 ], [ -78.77069091796875, -8.585971832275391 ], [ -78.770973205566406, -8.585971832275391 ], [ -78.770973205566406, -8.58569431304926 ], [ -78.771247863769531, -8.58569431304926 ], [ -78.771247863769531, -8.585140228271484 ], [ -78.771804809570312, -8.585140228271484 ], [ -78.771804809570312, -8.584859848022404 ], [ -78.772087097167855, -8.584859848022404 ], [ -78.772087097167855, -8.584305763244629 ], [ -78.772361755371037, -8.584305763244629 ], [ -78.772361755371037, -8.583749771118164 ], [ -78.772636413574162, -8.583749771118164 ], [ -78.772636413574162, -8.5834703445434 ], [ -78.772918701171818, -8.5834703445434 ], [ -78.772918701171818, -8.582916259765625 ], [ -78.773193359375, -8.582916259765625 ], [ -78.773193359375, -8.582360267639046 ], [ -78.773475646972656, -8.582360267639046 ], [ -78.773475646972656, -8.581804275512638 ], [ -78.773750305175781, -8.581804275512638 ], [ -78.773750305175781, -8.581250190734863 ], [ -78.774024963378906, -8.581250190734863 ], [ -78.774024963378906, -8.580971717834473 ], [ -78.774307250976562, -8.580971717834473 ], [ -78.774307250976562, -8.580694198608398 ], [ -78.774581909179688, -8.580694198608398 ], [ -78.774581909179688, -8.580415725708008 ], [ -78.774864196777344, -8.580415725708008 ], [ -78.774864196777344, -8.579859733581543 ], [ -78.775138854980355, -8.579859733581543 ], [ -78.775138854980355, -8.579305648803654 ], [ -78.775413513183537, -8.579305648803654 ], [ -78.775413513183537, -8.578749656677189 ], [ -78.775695800781193, -8.578749656677189 ], [ -78.775695800781193, -8.578469276428223 ], [ -78.776252746581974, -8.578469276428223 ], [ -78.776252746581974, -8.577915191650334 ], [ -78.776527404785156, -8.577918052673283 ], [ -78.776527404785156, -8.577639579772836 ], [ -78.776802062988281, -8.577639579772836 ], [ -78.776802062988281, -8.577359199523926 ], [ -78.777084350585938, -8.577362060546818 ], [ -78.777084350585938, -8.577083587646428 ], [ -78.777359008789062, -8.577083587646428 ], [ -78.777359008789062, -8.576526641845703 ], [ -78.777641296386719, -8.576526641845703 ], [ -78.777641296386719, -8.575974464416504 ], [ -78.778190612792855, -8.575974464416504 ], [ -78.7781982421875, -8.575418472289982 ], [ -78.778472900390568, -8.575418472289982 ], [ -78.778472900390568, -8.574581146240178 ], [ -78.778747558593693, -8.574581146240178 ], [ -78.778747558593693, -8.574027061462402 ], [ -78.779029846191349, -8.574027061462402 ], [ -78.779029846191349, -8.573748588562012 ], [ -78.779304504394474, -8.573748588562012 ], [ -78.779304504394474, -8.573195457458496 ], [ -78.779586791992131, -8.573195457458496 ], [ -78.779586791992131, -8.572915077209416 ], [ -78.779861450195312, -8.572915077209416 ], [ -78.779861450195312, -8.572359085082951 ], [ -78.780418395996094, -8.572360992431641 ], [ -78.780418395996094, -8.571526527404785 ], [ -78.780975341796875, -8.571526527404785 ], [ -78.780975341796875, -8.57097339630127 ], [ -78.781524658203068, -8.57097339630127 ], [ -78.781524658203068, -8.570693016052246 ], [ -78.781806945800724, -8.570693016052246 ], [ -78.781806945800724, -8.570417404174805 ], [ -78.782363891601506, -8.570417404174805 ], [ -78.782363891601506, -8.56986141204834 ], [ -78.782638549804631, -8.56986141204834 ], [ -78.782638549804631, -8.569305419921875 ], [ -78.782913208007812, -8.569305419921875 ], [ -78.782913208007812, -8.568751335143986 ], [ -78.783195495605469, -8.568751335143986 ], [ -78.783195495605469, -8.56847095489502 ], [ -78.783470153808594, -8.568472862243596 ], [ -78.783470153808594, -8.567916870117131 ], [ -78.78375244140625, -8.567916870117131 ], [ -78.78375244140625, -8.567360877990666 ], [ -78.784027099609375, -8.567360877990666 ], [ -78.784027099609375, -8.567083358764648 ], [ -78.7843017578125, -8.567083358764648 ], [ -78.7843017578125, -8.566806793212891 ], [ -78.784584045410156, -8.566806793212891 ], [ -78.784584045410156, -8.566250801086426 ], [ -78.785140991210881, -8.566250801086426 ], [ -78.785140991210881, -8.565973281860295 ], [ -78.785415649414006, -8.565973281860295 ], [ -78.785415649414006, -8.565694808959847 ], [ -78.785140991210881, -8.565694808959847 ], [ -78.785140991210881, -8.565138816833439 ], [ -78.785415649414006, -8.565138816833439 ], [ -78.785415649414006, -8.564861297607365 ], [ -78.785697937011662, -8.564861297607365 ], [ -78.785697937011662, -8.564304351806584 ], [ -78.785972595214844, -8.564304351806584 ], [ -78.785972595214844, -8.564028739929199 ], [ -78.786247253417969, -8.564028739929199 ], [ -78.786247253417969, -8.563751220703125 ], [ -78.786529541015625, -8.563751220703125 ], [ -78.786529541015625, -8.56319522857666 ], [ -78.78680419921875, -8.56319522857666 ], [ -78.78680419921875, -8.562915802001953 ], [ -78.787086486816406, -8.562915802001953 ], [ -78.787086486816406, -8.562638282775879 ], [ -78.787361145019531, -8.562638282775879 ], [ -78.787361145019531, -8.562082290649414 ], [ -78.787635803222656, -8.562082290649414 ], [ -78.787635803222656, -8.561806678771973 ], [ -78.787918090820199, -8.561806678771973 ], [ -78.787918090820199, -8.561528205871582 ], [ -78.788192749023381, -8.561528205871582 ], [ -78.788192749023381, -8.561249732971135 ], [ -78.788475036621037, -8.561249732971135 ], [ -78.788475036621037, -8.561528205871582 ], [ -78.788749694824162, -8.561528205871582 ], [ -78.788749694824162, -8.560972213745117 ], [ -78.789024353027344, -8.560972213745117 ], [ -78.789024353027344, -8.560416221618652 ], [ -78.789306640625, -8.560416221618652 ], [ -78.789306640625, -8.560137748718262 ], [ -78.789863586425781, -8.560137748718262 ], [ -78.789863586425781, -8.559860229492188 ], [ -78.790412902832031, -8.559860229492188 ], [ -78.790412902832031, -8.559583663940373 ], [ -78.790695190429688, -8.559583663940373 ], [ -78.790695190429688, -8.559027671813908 ], [ -78.791252136230412, -8.559027671813908 ], [ -78.791252136230412, -8.558471679687443 ], [ -78.791809082031193, -8.558471679687443 ], [ -78.791809082031193, -8.557915687560978 ], [ -78.792083740234318, -8.557915687560978 ], [ -78.792083740234318, -8.557638168334961 ], [ -78.7923583984375, -8.557638168334961 ], [ -78.7923583984375, -8.557082176208496 ], [ -78.792915344238281, -8.557084083557072 ], [ -78.792915344238281, -8.556805610656738 ], [ -78.793197631835938, -8.556805610656738 ], [ -78.793197631835938, -8.556528091430607 ], [ -78.793472290039062, -8.556528091430607 ], [ -78.793472290039062, -8.556249618530217 ], [ -78.793746948242188, -8.556249618530217 ], [ -78.793746948242188, -8.555972099304142 ], [ -78.794303894042912, -8.555972099304142 ], [ -78.794303894042912, -8.555693626403752 ], [ -78.794586181640568, -8.555693626403752 ], [ -78.794586181640568, -8.555416107177678 ], [ -78.794860839843693, -8.555416107177678 ], [ -78.794860839843693, -8.554860115051213 ], [ -78.795135498046818, -8.554860115051213 ], [ -78.795135498046818, -8.554306030273438 ], [ -78.795692443847656, -8.554306030273438 ], [ -78.795692443847656, -8.554027557373047 ], [ -78.795974731445312, -8.554027557373047 ], [ -78.795974731445312, -8.553471565246582 ], [ -78.796524047851562, -8.553471565246582 ], [ -78.796524047851562, -8.552915573120004 ], [ -78.796806335449219, -8.552915573120004 ], [ -78.796806335449219, -8.552638053893986 ], [ -78.797080993652344, -8.552639961242676 ], [ -78.797080993652344, -8.552362442016602 ], [ -78.79736328125, -8.552362442016602 ], [ -78.79736328125, -8.552081108093148 ], [ -78.797637939453068, -8.552083969116211 ], [ -78.797637939453068, -8.551806449890137 ], [ -78.798194885253849, -8.551806449890137 ], [ -78.798194885253849, -8.551527976989746 ], [ -78.798469543456974, -8.551527976989746 ], [ -78.798469543456974, -8.551250457763672 ], [ -78.799026489257812, -8.551250457763672 ], [ -78.799026489257812, -8.550971984863281 ], [ -78.798751831054688, -8.550971984863281 ], [ -78.798751831054688, -8.550692558288574 ], [ -78.799026489257812, -8.550692558288574 ], [ -78.799026489257812, -8.5504150390625 ], [ -78.799308776855469, -8.550417900085449 ], [ -78.799308776855469, -8.550136566162109 ], [ -78.799583435058594, -8.550136566162109 ], [ -78.799583435058594, -8.54958438873291 ], [ -78.800140380859375, -8.54958438873291 ], [ -78.800140380859375, -8.549027442932129 ], [ -78.8004150390625, -8.549027442932129 ], [ -78.8004150390625, -8.548748970031738 ], [ -78.800971984863224, -8.548748970031738 ], [ -78.800971984863224, -8.548471450805664 ], [ -78.801528930664006, -8.548471450805664 ], [ -78.801528930664006, -8.548195838928166 ], [ -78.802085876464844, -8.548195838928166 ], [ -78.802085876464844, -8.547636985778809 ], [ -78.802360534667969, -8.547638893127385 ], [ -78.802360534667969, -8.54736137390131 ], [ -78.802635192871094, -8.54736137390131 ], [ -78.802635192871094, -8.546526908874455 ], [ -78.803192138671875, -8.546526908874455 ], [ -78.803192138671875, -8.54625129699707 ], [ -78.803749084472543, -8.54625129699707 ], [ -78.803749084472543, -8.54597091674799 ], [ -78.804031372070256, -8.54597091674799 ], [ -78.804031372070256, -8.545695304870605 ], [ -78.804580688476506, -8.545695304870605 ], [ -78.804580688476506, -8.545416831970215 ], [ -78.804862976074162, -8.545416831970215 ], [ -78.804862976074162, -8.54486083984375 ], [ -78.804580688476506, -8.54486083984375 ], [ -78.804580688476506, -8.544583320617619 ], [ -78.804862976074162, -8.544583320617619 ], [ -78.804862976074162, -8.544304847717228 ], [ -78.805137634277344, -8.544304847717228 ], [ -78.805137634277344, -8.544027328491154 ], [ -78.805419921875, -8.544027328491154 ], [ -78.805419921875, -8.543748855590763 ], [ -78.805694580078125, -8.543748855590763 ], [ -78.805694580078125, -8.543473243713379 ], [ -78.80596923828125, -8.543473243713379 ], [ -78.80596923828125, -8.543194770812988 ], [ -78.806251525878906, -8.543194770812988 ], [ -78.806251525878906, -8.542915344238224 ], [ -78.806526184082031, -8.542917251586914 ], [ -78.806526184082031, -8.542638778686523 ], [ -78.806808471679688, -8.542638778686523 ], [ -78.806808471679688, -8.542361259460449 ], [ -78.807083129882756, -8.542361259460449 ], [ -78.807083129882756, -8.542082786560059 ], [ -78.807357788085881, -8.542082786560059 ], [ -78.807357788085881, -8.541805267333871 ], [ -78.807640075683537, -8.541805267333871 ], [ -78.807640075683537, -8.541526794433594 ], [ -78.807914733886662, -8.541526794433594 ], [ -78.807914733886662, -8.541249275207463 ], [ -78.808197021484318, -8.541251182556152 ], [ -78.808197021484318, -8.540970802307015 ], [ -78.8084716796875, -8.540970802307015 ], [ -78.8084716796875, -8.540693283080998 ], [ -78.808746337890625, -8.540695190429688 ], [ -78.808746337890625, -8.540416717529297 ], [ -78.809028625488281, -8.540416717529297 ], [ -78.809028625488281, -8.540139198303223 ], [ -78.809303283691406, -8.540139198303223 ], [ -78.809303283691406, -8.539860725402832 ], [ -78.809585571289062, -8.539860725402832 ], [ -78.809585571289062, -8.539580345153752 ], [ -78.809860229492188, -8.539583206176758 ], [ -78.809860229492188, -8.539304733276367 ], [ -78.810417175292912, -8.539304733276367 ], [ -78.810417175292912, -8.539029121398869 ], [ -78.810691833496037, -8.539029121398869 ], [ -78.810691833496037, -8.538750648498478 ], [ -78.810974121093693, -8.538750648498478 ], [ -78.810974121093693, -8.539029121398869 ], [ -78.811531066894531, -8.539029121398869 ], [ -78.811531066894531, -8.538470268249512 ], [ -78.811805725097656, -8.538473129272461 ], [ -78.811805725097656, -8.538194656372013 ], [ -78.812080383300781, -8.538194656372013 ], [ -78.812080383300781, -8.537914276123047 ], [ -78.811805725097656, -8.537917137145996 ], [ -78.811805725097656, -8.537638664245605 ], [ -78.812080383300781, -8.537638664245605 ], [ -78.812080383300781, -8.537358283996582 ], [ -78.812637329101562, -8.537361145019531 ], [ -78.812637329101562, -8.53708457946766 ], [ -78.812919616699219, -8.53708457946766 ], [ -78.812919616699219, -8.536802291870117 ], [ -78.813194274902344, -8.53680419921875 ], [ -78.813194274902344, -8.536528587341252 ], [ -78.813468933105412, -8.536528587341252 ], [ -78.813468933105412, -8.536248207092285 ], [ -78.813751220703068, -8.536251068115178 ], [ -78.813751220703068, -8.535972595214787 ], [ -78.814025878906193, -8.535972595214787 ], [ -78.814025878906193, -8.53569221496582 ], [ -78.814308166503849, -8.535694122314396 ], [ -78.814308166503849, -8.535415649413949 ], [ -78.814582824707031, -8.535415649413949 ], [ -78.814582824707031, -8.535138130187931 ], [ -78.815139770507812, -8.535138130187931 ], [ -78.815139770507812, -8.534863471984806 ], [ -78.815414428710938, -8.534859657287541 ], [ -78.815414428710938, -8.534582138061467 ], [ -78.815696716308594, -8.534582138061467 ], [ -78.815696716308594, -8.534305572509766 ], [ -78.815971374511719, -8.534305572509766 ], [ -78.815971374511719, -8.534026145935002 ], [ -78.816253662109375, -8.534028053283691 ], [ -78.816253662109375, -8.533749580383301 ], [ -78.816528320312386, -8.533749580383301 ], [ -78.816528320312386, -8.533470153808594 ], [ -78.816802978515568, -8.533472061157227 ], [ -78.816802978515568, -8.533193588256836 ], [ -78.817359924316349, -8.533193588256836 ], [ -78.817359924316349, -8.532916069030762 ], [ -78.817642211914006, -8.532916069030762 ], [ -78.817642211914006, -8.532637596130371 ], [ -78.817916870117188, -8.532637596130371 ], [ -78.817916870117188, -8.53236007690424 ], [ -78.818191528320312, -8.53236007690424 ], [ -78.818191528320312, -8.532084465026855 ], [ -78.818473815917969, -8.532084465026855 ], [ -78.818473815917969, -8.531804084777775 ], [ -78.818748474121094, -8.531805992126465 ], [ -78.818748474121094, -8.531528472900391 ], [ -78.81903076171875, -8.531528472900391 ], [ -78.81903076171875, -8.53125 ], [ -78.819580078124886, -8.53125 ], [ -78.819580078124886, -8.530971527099609 ], [ -78.819862365722599, -8.530971527099609 ], [ -78.819862365722599, -8.530694007873535 ], [ -78.820137023925724, -8.530694007873535 ], [ -78.820137023925724, -8.530415534973145 ], [ -78.820419311523381, -8.530415534973145 ], [ -78.820419311523381, -8.53013801574707 ], [ -78.820693969726506, -8.53013801574707 ], [ -78.820693969726506, -8.529862403869629 ], [ -78.820968627929688, -8.529862403869629 ], [ -78.820968627929688, -8.529582023620605 ], [ -78.821250915527344, -8.529582023620605 ], [ -78.821250915527344, -8.529306411743164 ], [ -78.821525573730469, -8.529306411743164 ], [ -78.821525573730469, -8.529027938842773 ], [ -78.82208251953125, -8.529027938842773 ], [ -78.82208251953125, -8.528750419616699 ], [ -78.822364807128906, -8.528750419616699 ], [ -78.822364807128906, -8.528471946716309 ], [ -78.822639465332031, -8.528471946716309 ], [ -78.822639465332031, -8.528194427490234 ], [ -78.822914123535099, -8.528194427490234 ], [ -78.822914123535099, -8.527915954589844 ], [ -78.823196411132756, -8.527915954589844 ], [ -78.823196411132756, -8.52763843536377 ], [ -78.823471069335881, -8.52763843536377 ], [ -78.823471069335881, -8.527359962463379 ], [ -78.823753356933537, -8.527361869811955 ], [ -78.823753356933537, -8.527084350585881 ], [ -78.824302673339844, -8.527084350585881 ], [ -78.824302673339844, -8.527361869811955 ], [ -78.8245849609375, -8.527361869811955 ], [ -78.8245849609375, -8.52680587768549 ], [ -78.824859619140625, -8.52680587768549 ], [ -78.824859619140625, -8.526528358459473 ], [ -78.825141906738281, -8.526528358459473 ], [ -78.825141906738281, -8.526249885559025 ], [ -78.825416564941406, -8.526249885559025 ], [ -78.825416564941406, -8.525972366333008 ], [ -78.825973510742188, -8.525972366333008 ], [ -78.825973510742188, -8.52569580078125 ], [ -78.826530456542912, -8.52569580078125 ], [ -78.826530456542912, -8.525416374206543 ], [ -78.826805114746037, -8.525416374206543 ], [ -78.826805114746037, -8.525139808654671 ], [ -78.826530456542912, -8.525139808654671 ], [ -78.826530456542912, -8.524862289428654 ], [ -78.826805114746037, -8.524862289428654 ], [ -78.826805114746037, -8.524583816528263 ], [ -78.827079772949162, -8.524583816528263 ], [ -78.827079772949162, -8.524306297302189 ], [ -78.827362060546875, -8.524306297302189 ], [ -78.827362060546875, -8.524027824401799 ], [ -78.82763671875, -8.524027824401799 ], [ -78.82763671875, -8.523750305175724 ], [ -78.827919006347656, -8.523750305175724 ], [ -78.827919006347656, -8.523470878600961 ], [ -78.828193664550781, -8.523470878600961 ], [ -78.828193664550781, -8.523193359374943 ], [ -78.828750610351562, -8.523193359374943 ], [ -78.828750610351562, -8.522917747497559 ], [ -78.829025268554688, -8.522917747497559 ], [ -78.829025268554688, -8.522640228271484 ], [ -78.82930755615223, -8.522640228271484 ], [ -78.82930755615223, -8.522361755371094 ], [ -78.829582214355412, -8.522361755371094 ], [ -78.829582214355412, -8.522081375122013 ], [ -78.829864501953068, -8.522083282470703 ], [ -78.829864501953068, -8.521804809570312 ], [ -78.830139160156193, -8.521804809570312 ], [ -78.830139160156193, -8.521527290344238 ], [ -78.830413818359375, -8.521527290344238 ], [ -78.830413818359375, -8.521248817443848 ], [ -78.830970764160156, -8.521248817443848 ], [ -78.830970764160156, -8.520971298217773 ], [ -78.831253051757812, -8.520971298217773 ], [ -78.831253051757812, -8.520694732665959 ], [ -78.831527709960938, -8.520694732665959 ], [ -78.831527709960938, -8.520415306091252 ], [ -78.831802368164062, -8.520415306091252 ], [ -78.831802368164062, -8.520138740539551 ], [ -78.832084655761719, -8.520138740539551 ], [ -78.832084655761719, -8.519861221313477 ], [ -78.83235931396473, -8.519861221313477 ], [ -78.83235931396473, -8.519582748413086 ], [ -78.832641601562443, -8.519582748413086 ], [ -78.832641601562443, -8.519305229187012 ], [ -78.833190917968693, -8.519305229187012 ], [ -78.833190917968693, -8.519026756286621 ], [ -78.833473205566349, -8.519026756286621 ], [ -78.833473205566349, -8.518749237060547 ], [ -78.833747863769531, -8.518749237060547 ], [ -78.833747863769531, -8.518472671508732 ], [ -78.834030151367188, -8.518470764160156 ], [ -78.834030151367188, -8.518193244934082 ], [ -78.834304809570312, -8.518195152282658 ], [ -78.834304809570312, -8.517916679382267 ], [ -78.834587097167969, -8.517916679382267 ], [ -78.834587097167969, -8.51763916015625 ], [ -78.834861755371094, -8.51763916015625 ], [ -78.834861755371094, -8.517360687255803 ], [ -78.835418701171875, -8.517360687255803 ], [ -78.835418701171875, -8.517083168029785 ], [ -78.835693359374943, -8.517083168029785 ], [ -78.835693359374943, -8.516804695129395 ], [ -78.835975646972599, -8.516804695129395 ], [ -78.835975646972599, -8.51652717590332 ], [ -78.836250305175724, -8.516529083251896 ], [ -78.836250305175724, -8.51624870300293 ], [ -78.836524963378849, -8.51624870300293 ], [ -78.836524963378849, -8.515971183776855 ], [ -78.836807250976506, -8.515973091125431 ], [ -78.836807250976506, -8.515694618225041 ], [ -78.837081909179688, -8.515694618225041 ], [ -78.837081909179688, -8.515417098998967 ], [ -78.837638854980469, -8.515417098998967 ], [ -78.837638854980469, -8.515138626098576 ], [ -78.837913513183594, -8.515138626098576 ], [ -78.837913513183594, -8.514861106872502 ], [ -78.83819580078125, -8.514861106872502 ], [ -78.83819580078125, -8.514582633972111 ], [ -78.838470458984375, -8.514582633972111 ], [ -78.838470458984375, -8.514305114746037 ], [ -78.839027404785099, -8.514305114746037 ], [ -78.839027404785099, -8.514026641845646 ], [ -78.839302062988224, -8.514026641845646 ], [ -78.839302062988224, -8.513749122619629 ], [ -78.839859008789006, -8.513751029968262 ], [ -78.839859008789006, -8.513472557067871 ], [ -78.840141296386719, -8.513472557067871 ], [ -78.840141296386719, -8.513193130493164 ], [ -78.840415954589844, -8.513195037841683 ], [ -78.840415954589844, -8.512916564941406 ], [ -78.840972900390625, -8.512916564941406 ], [ -78.840972900390625, -8.512639045715275 ], [ -78.84124755859375, -8.512639045715275 ], [ -78.84124755859375, -8.512360572814828 ], [ -78.841804504394531, -8.512360572814828 ], [ -78.841804504394531, -8.51208305358881 ], [ -78.842086791992074, -8.51208305358881 ], [ -78.842086791992074, -8.51180458068842 ], [ -78.842636108398381, -8.51180458068842 ], [ -78.842636108398381, -8.511527061462346 ], [ -78.842918395996037, -8.511528968811035 ], [ -78.842918395996037, -8.511247634887695 ], [ -78.843193054199219, -8.511247634887695 ], [ -78.843193054199219, -8.510970115661564 ], [ -78.84375, -8.51097297668457 ], [ -78.84375, -8.510695457458496 ], [ -78.844024658203125, -8.510695457458496 ], [ -78.844024658203125, -8.510416984558105 ], [ -78.844581604003906, -8.510416984558105 ], [ -78.844581604003906, -8.510139465331974 ], [ -78.844863891601562, -8.510139465331974 ], [ -78.844863891601562, -8.509860038757324 ], [ -78.845413208007756, -8.509860038757324 ], [ -78.845413208007756, -8.509581565856934 ], [ -78.845695495605412, -8.509581565856934 ], [ -78.845695495605412, -8.509304046630859 ], [ -78.845970153808537, -8.509306907653809 ], [ -78.845970153808537, -8.509029388427734 ], [ -78.846527099609375, -8.509029388427734 ], [ -78.846527099609375, -8.508748054504395 ], [ -78.8468017578125, -8.508750915527344 ], [ -78.8468017578125, -8.508472442626953 ], [ -78.847358703613281, -8.508472442626953 ], [ -78.847358703613281, -8.50819206237793 ], [ -78.847640991210938, -8.50819206237793 ], [ -78.847640991210938, -8.508472442626953 ], [ -78.848197937011719, -8.508472442626953 ], [ -78.848197937011719, -8.507916450500488 ], [ -78.848747253417912, -8.507916450500488 ], [ -78.848747253417912, -8.507637977600098 ], [ -78.849304199218693, -8.507637977600098 ], [ -78.849304199218693, -8.507360458374023 ], [ -78.849861145019531, -8.507360458374023 ], [ -78.849861145019531, -8.507081985473633 ], [ -78.850135803222656, -8.507081985473633 ], [ -78.850135803222656, -8.506525993347168 ], [ -78.850692749023438, -8.506527900695744 ], [ -78.850692749023438, -8.50625038146967 ], [ -78.851249694824219, -8.50625038146967 ], [ -78.851249694824219, -8.505970001220703 ], [ -78.850975036621094, -8.505971908569279 ], [ -78.850975036621094, -8.505694389343262 ], [ -78.851249694824219, -8.505694389343262 ], [ -78.851249694824219, -8.505415916442814 ], [ -78.851524353027287, -8.505415916442814 ], [ -78.851524353027287, -8.50514030456543 ], [ -78.852081298828068, -8.505138397216797 ], [ -78.852081298828068, -8.504859924316406 ], [ -78.852363586425724, -8.504859924316406 ], [ -78.852363586425724, -8.504584312438908 ], [ -78.852638244628849, -8.504584312438908 ], [ -78.852638244628849, -8.504305839538574 ], [ -78.853195190429688, -8.504305839538574 ], [ -78.853195190429688, -8.504028320312443 ], [ -78.853469848632812, -8.504028320312443 ], [ -78.853469848632812, -8.503749847412053 ], [ -78.854026794433594, -8.503749847412053 ], [ -78.854026794433594, -8.503472328185978 ], [ -78.85430908203125, -8.503472328185978 ], [ -78.85430908203125, -8.503193855285588 ], [ -78.854583740234375, -8.503193855285588 ], [ -78.854583740234375, -8.502916336059513 ], [ -78.855140686035099, -8.502916336059513 ], [ -78.855140686035099, -8.502637863159123 ], [ -78.855415344238224, -8.502637863159123 ], [ -78.855415344238224, -8.502360343933049 ], [ -78.855972290039062, -8.502362251281738 ], [ -78.855972290039062, -8.502083778381348 ], [ -78.856246948242188, -8.502083778381348 ], [ -78.856246948242188, -8.501806259155273 ], [ -78.856529235839844, -8.501806259155273 ], [ -78.856529235839844, -8.501527786254883 ], [ -78.857086181640625, -8.501527786254883 ], [ -78.857086181640625, -8.501250267028695 ], [ -78.85736083984375, -8.501250267028695 ], [ -78.85736083984375, -8.500971794128418 ], [ -78.857635498046875, -8.500971794128418 ], [ -78.857635498046875, -8.500694274902287 ], [ -78.858192443847599, -8.500694274902287 ], [ -78.858192443847599, -8.500415802001839 ], [ -78.858474731445256, -8.500415802001839 ], [ -78.858474731445256, -8.500138282775822 ], [ -78.859024047851562, -8.500140190124512 ], [ -78.859024047851562, -8.499859809875431 ], [ -78.859306335449219, -8.499859809875431 ], [ -78.859306335449219, -8.499584197998047 ], [ -78.859580993652344, -8.499584197998047 ], [ -78.859580993652344, -8.499305725097656 ], [ -78.860137939453125, -8.499305725097656 ], [ -78.860137939453125, -8.499584197998047 ], [ -78.860420227050781, -8.499584197998047 ], [ -78.860420227050781, -8.499305725097656 ], [ -78.860694885253906, -8.499305725097656 ], [ -78.860694885253906, -8.499025344848576 ], [ -78.860969543456918, -8.499028205871582 ], [ -78.860969543456918, -8.498749732971191 ], [ -78.861251831054631, -8.498749732971191 ], [ -78.861251831054631, -8.498469352722111 ], [ -78.861808776855412, -8.498472213745117 ], [ -78.861808776855412, -8.498193740844727 ], [ -78.862358093261719, -8.498193740844727 ], [ -78.862358093261719, -8.497639656066838 ], [ -78.8629150390625, -8.497639656066838 ], [ -78.8629150390625, -8.497359275817871 ], [ -78.863197326660156, -8.49736213684082 ], [ -78.863197326660156, -8.49708366394043 ], [ -78.863746643066406, -8.49708366394043 ], [ -78.863746643066406, -8.496803283691406 ], [ -78.864028930664062, -8.496806144714355 ], [ -78.864028930664062, -8.496527671813965 ], [ -78.864585876464787, -8.496527671813965 ], [ -78.864585876464787, -8.496247291564941 ], [ -78.864860534667912, -8.496249198913574 ], [ -78.864860534667912, -8.495973587036076 ], [ -78.865135192871037, -8.495973587036076 ], [ -78.865135192871037, -8.495417594909611 ], [ -78.865417480468693, -8.495417594909611 ], [ -78.865417480468693, -8.495137214660645 ], [ -78.865692138671875, -8.495140075683537 ], [ -78.865692138671875, -8.494860649108773 ], [ -78.866249084472656, -8.494860649108773 ], [ -78.866249084472656, -8.49458122253418 ], [ -78.866531372070312, -8.494583129882756 ], [ -78.866531372070312, -8.494304656982365 ], [ -78.867080688476562, -8.494304656982365 ], [ -78.867080688476562, -8.494027137756291 ], [ -78.867362976074219, -8.494027137756291 ], [ -78.867362976074219, -8.4937486648559 ], [ -78.867637634277287, -8.4937486648559 ], [ -78.867637634277287, -8.493471145629826 ], [ -78.868194580078068, -8.493471145629826 ], [ -78.868194580078068, -8.493194580078125 ], [ -78.868469238281193, -8.493194580078125 ], [ -78.868469238281193, -8.492915153503418 ], [ -78.868751525878906, -8.492917060852051 ], [ -78.868751525878906, -8.49263858795166 ], [ -78.869308471679688, -8.49263858795166 ], [ -78.869308471679688, -8.492359161376953 ], [ -78.869583129882812, -8.492361068725586 ], [ -78.869583129882812, -8.492082595825195 ], [ -78.870140075683594, -8.492082595825195 ], [ -78.870140075683594, -8.491805076599064 ], [ -78.870414733886719, -8.491805076599064 ], [ -78.870414733886719, -8.49152660369873 ], [ -78.870697021484261, -8.49152660369873 ], [ -78.870697021484261, -8.491249084472599 ], [ -78.871246337890568, -8.491249084472599 ], [ -78.871246337890568, -8.490973472595215 ], [ -78.871528625488224, -8.490973472595215 ], [ -78.871528625488224, -8.490693092346135 ], [ -78.871803283691406, -8.490693092346135 ], [ -78.871803283691406, -8.490973472595215 ], [ -78.872360229492188, -8.490973472595215 ], [ -78.872360229492188, -8.490693092346135 ], [ -78.872917175292969, -8.490693092346135 ], [ -78.872917175292969, -8.489860534667969 ], [ -78.873191833496094, -8.489860534667969 ], [ -78.873191833496094, -8.489583015441895 ], [ -78.87347412109375, -8.489583015441895 ], [ -78.87347412109375, -8.489304542541504 ], [ -78.874031066894474, -8.489304542541504 ], [ -78.874031066894474, -8.48902702331543 ], [ -78.874305725097599, -8.48902702331543 ], [ -78.874305725097599, -8.488751411437988 ], [ -78.874580383300724, -8.488748550415039 ], [ -78.874580383300724, -8.488471031188851 ], [ -78.875137329101562, -8.488472938537598 ], [ -78.875137329101562, -8.488195419311523 ], [ -78.875419616699219, -8.488195419311523 ], [ -78.875419616699219, -8.487916946411133 ], [ -78.875968933105469, -8.487916946411133 ], [ -78.875968933105469, -8.487639427185059 ], [ -78.876251220703125, -8.487639427185059 ], [ -78.876251220703125, -8.487360954284668 ], [ -78.877082824706974, -8.487360954284668 ], [ -78.877082824706974, -8.487083435058594 ], [ -78.877357482910099, -8.487083435058594 ], [ -78.877357482910099, -8.486527442932129 ], [ -78.877914428710881, -8.486527442932129 ], [ -78.877914428710881, -8.486248970031738 ], [ -78.878471374511719, -8.486250877380314 ], [ -78.878471374511719, -8.485694885253849 ], [ -78.878753662109375, -8.485694885253849 ], [ -78.878753662109375, -8.485417366027832 ], [ -78.879302978515625, -8.485417366027832 ], [ -78.879302978515625, -8.485138893127441 ], [ -78.880142211914062, -8.485138893127441 ], [ -78.880142211914062, -8.484861373901367 ], [ -78.880416870117131, -8.484861373901367 ], [ -78.880416870117131, -8.484582901000977 ], [ -78.880691528320256, -8.484582901000977 ], [ -78.880691528320256, -8.484305381774902 ], [ -78.880973815917912, -8.484305381774902 ], [ -78.880973815917912, -8.484028816223088 ], [ -78.88153076171875, -8.484028816223088 ], [ -78.88153076171875, -8.483751296997013 ], [ -78.881805419921875, -8.483751296997013 ], [ -78.881805419921875, -8.483472824096623 ], [ -78.882362365722656, -8.483472824096623 ], [ -78.882362365722656, -8.483195304870549 ], [ -78.882637023925781, -8.483195304870549 ], [ -78.882637023925781, -8.482916831970158 ], [ -78.883193969726562, -8.482916831970158 ], [ -78.883193969726562, -8.482638359069767 ], [ -78.883468627929631, -8.482638359069767 ], [ -78.883468627929631, -8.482359886169377 ], [ -78.883750915527287, -8.482359886169377 ], [ -78.883750915527287, -8.482082366943303 ], [ -78.884307861328068, -8.482082366943303 ], [ -78.884307861328068, -8.481806755065918 ], [ -78.88458251953125, -8.481806755065918 ], [ -78.88458251953125, -8.481526374816838 ], [ -78.885139465332031, -8.481526374816838 ], [ -78.885139465332031, -8.481249809265137 ], [ -78.885414123535156, -8.481249809265137 ], [ -78.885414123535156, -8.480972290039062 ], [ -78.885971069335938, -8.480972290039062 ], [ -78.885971069335938, -8.480693817138672 ], [ -78.886528015136605, -8.480693817138672 ], [ -78.886528015136605, -8.480416297912598 ], [ -78.886802673339787, -8.480416297912598 ], [ -78.886802673339787, -8.480137825012207 ], [ -78.887359619140568, -8.480137825012207 ], [ -78.887359619140568, -8.479860305786076 ], [ -78.887916564941406, -8.479860305786076 ], [ -78.887916564941406, -8.479583740234375 ], [ -78.888191223144531, -8.479583740234375 ], [ -78.888191223144531, -8.479304313659611 ], [ -78.888748168945312, -8.479304313659611 ], [ -78.888748168945312, -8.479583740234375 ], [ -78.889030456542969, -8.479583740234375 ], [ -78.889030456542969, -8.479304313659611 ], [ -78.889579772949105, -8.479306221008301 ], [ -78.889579772949105, -8.47902774810791 ], [ -78.890136718749943, -8.47902774810791 ], [ -78.890136718749943, -8.478748321533146 ], [ -78.890419006347599, -8.478750228881836 ], [ -78.890419006347599, -8.478471755981445 ], [ -78.890975952148381, -8.478471755981445 ], [ -78.890975952148381, -8.478194236755371 ], [ -78.891525268554688, -8.478194236755371 ], [ -78.891525268554688, -8.47791576385498 ], [ -78.892082214355469, -8.47791576385498 ], [ -78.892082214355469, -8.477638244628906 ], [ -78.891807556152344, -8.477638244628906 ], [ -78.891807556152344, -8.477359771728516 ], [ -78.892082214355469, -8.477359771728516 ], [ -78.892082214355469, -8.477084159851074 ], [ -78.89263916015625, -8.477084159851074 ], [ -78.89263916015625, -8.476805686950627 ], [ -78.892913818359318, -8.476805686950627 ], [ -78.892913818359318, -8.476528167724609 ], [ -78.893470764160099, -8.476528167724609 ], [ -78.893470764160099, -8.476249694824219 ], [ -78.894027709960881, -8.476249694824219 ], [ -78.894027709960881, -8.475972175598145 ], [ -78.894302368164062, -8.475972175598145 ], [ -78.894302368164062, -8.475693702697754 ], [ -78.894859313964844, -8.475693702697754 ], [ -78.894859313964844, -8.47541618347168 ], [ -78.895416259765625, -8.47541618347168 ], [ -78.895416259765625, -8.475137710571289 ], [ -78.89569091796875, -8.475137710571289 ], [ -78.89569091796875, -8.47541618347168 ], [ -78.896247863769474, -8.47541618347168 ], [ -78.896247863769474, -8.475137710571289 ], [ -78.895973205566406, -8.475137710571289 ], [ -78.895973205566406, -8.474860191345215 ], [ -78.896247863769474, -8.474862098693791 ], [ -78.896247863769474, -8.4745836257934 ], [ -78.896804809570256, -8.4745836257934 ], [ -78.896804809570256, -8.474862098693791 ], [ -78.897361755371094, -8.474862098693791 ], [ -78.897361755371094, -8.4745836257934 ], [ -78.897087097167912, -8.4745836257934 ], [ -78.897087097167912, -8.47430419921875 ], [ -78.897361755371094, -8.474306106567326 ], [ -78.897361755371094, -8.474027633666935 ], [ -78.897636413574219, -8.474027633666935 ], [ -78.897636413574219, -8.473750114440861 ], [ -78.898193359375, -8.473750114440861 ], [ -78.898193359375, -8.473471641540471 ], [ -78.898750305175781, -8.473471641540471 ], [ -78.898750305175781, -8.473194122314453 ], [ -78.899024963378906, -8.473194122314453 ], [ -78.899024963378906, -8.472915649414006 ], [ -78.899581909179631, -8.472915649414006 ], [ -78.899581909179631, -8.472638130187988 ], [ -78.899864196777287, -8.472640037536507 ], [ -78.899864196777287, -8.47236156463623 ], [ -78.900413513183594, -8.472359657287598 ], [ -78.900413513183594, -8.472082138061523 ], [ -78.90069580078125, -8.472082138061523 ], [ -78.90069580078125, -8.472359657287598 ], [ -78.900970458984375, -8.472359657287598 ], [ -78.900970458984375, -8.472082138061523 ], [ -78.901252746582031, -8.472084045410099 ], [ -78.901252746582031, -8.471805572509652 ], [ -78.901802062988281, -8.471805572509652 ], [ -78.901802062988281, -8.471528053283635 ], [ -78.901527404785156, -8.471528053283635 ], [ -78.901527404785156, -8.471249580383244 ], [ -78.901802062988281, -8.471249580383244 ], [ -78.901802062988281, -8.47097206115717 ], [ -78.902359008788949, -8.47097206115717 ], [ -78.902359008788949, -8.471249580383244 ], [ -78.902915954589787, -8.471249580383244 ], [ -78.902915954589787, -8.470693588256779 ], [ -78.903190612792912, -8.470693588256779 ], [ -78.903198242187443, -8.470136642455941 ], [ -78.903472900390568, -8.470136642455941 ], [ -78.903472900390568, -8.469859123229924 ], [ -78.90374755859375, -8.46986198425293 ], [ -78.90374755859375, -8.469584465026799 ], [ -78.904304504394531, -8.469584465026799 ], [ -78.904304504394531, -8.469305992126465 ], [ -78.904586791992188, -8.469305992126465 ], [ -78.904586791992188, -8.469026565551758 ], [ -78.905136108398438, -8.469026565551758 ], [ -78.905136108398438, -8.468749046325684 ], [ -78.905418395996094, -8.468749046325684 ], [ -78.905418395996094, -8.468470573425293 ], [ -78.905975341796818, -8.468470573425293 ], [ -78.905975341796818, -8.468193054199219 ], [ -78.90625, -8.468193054199219 ], [ -78.90625, -8.467918395996094 ], [ -78.906806945800724, -8.467918395996094 ], [ -78.906806945800724, -8.467637062072754 ], [ -78.907081604003906, -8.467638969421387 ], [ -78.907081604003906, -8.467361450195312 ], [ -78.907638549804688, -8.467361450195312 ], [ -78.907638549804688, -8.467081069946232 ], [ -78.907913208007812, -8.467082977294922 ], [ -78.907913208007812, -8.466805458068848 ], [ -78.908470153808594, -8.466805458068848 ], [ -78.908470153808594, -8.466526985168457 ], [ -78.90875244140625, -8.466526985168457 ], [ -78.90875244140625, -8.466252326965332 ], [ -78.909301757812443, -8.466252326965332 ], [ -78.909301757812443, -8.465970993041992 ], [ -78.909584045410099, -8.465970993041992 ], [ -78.909584045410099, -8.465695381164494 ], [ -78.910140991210938, -8.465695381164494 ], [ -78.910140991210938, -8.465415000915527 ], [ -78.910415649414062, -8.465415000915527 ], [ -78.910415649414062, -8.465695381164494 ], [ -78.910972595214844, -8.465695381164494 ], [ -78.910972595214844, -8.465415000915527 ], [ -78.91180419921875, -8.465416908264103 ], [ -78.91180419921875, -8.465139389038086 ], [ -78.912361145019474, -8.465139389038086 ], [ -78.912361145019474, -8.464859008789062 ], [ -78.913475036621094, -8.464860916137638 ], [ -78.913475036621094, -8.46430492401123 ], [ -78.914024353027344, -8.46430492401123 ], [ -78.914024353027344, -8.464027404785156 ], [ -78.914306640625, -8.464027404785156 ], [ -78.914306640625, -8.463473320007267 ], [ -78.914024353027344, -8.463473320007267 ], [ -78.914024353027344, -8.462917327880803 ], [ -78.914306640625, -8.462917327880803 ], [ -78.914306640625, -8.462638854980412 ], [ -78.914581298828125, -8.462638854980412 ], [ -78.914581298828125, -8.462361335754338 ], [ -78.914863586425781, -8.462361335754338 ], [ -78.914863586425781, -8.462082862853947 ], [ -78.915138244628793, -8.462082862853947 ], [ -78.915138244628793, -8.461805343627873 ], [ -78.915412902831974, -8.461805343627873 ], [ -78.915412902831974, -8.461526870727482 ], [ -78.915695190429631, -8.461526870727482 ], [ -78.915695190429631, -8.461251258850098 ], [ -78.915969848632756, -8.461251258850098 ], [ -78.915969848632756, -8.460970878601017 ], [ -78.916252136230412, -8.460970878601017 ], [ -78.916252136230412, -8.460416793823242 ], [ -78.916526794433594, -8.460416793823242 ], [ -78.916526794433594, -8.460139274597111 ], [ -78.91680908203125, -8.460139274597111 ], [ -78.91680908203125, -8.459860801696664 ], [ -78.917083740234375, -8.459860801696664 ], [ -78.917083740234375, -8.459583282470646 ], [ -78.9173583984375, -8.459583282470646 ], [ -78.9173583984375, -8.459304809570256 ], [ -78.917640686035156, -8.459304809570256 ], [ -78.917640686035156, -8.459029197692871 ], [ -78.917915344238281, -8.459027290344181 ], [ -78.917915344238281, -8.45875072479248 ], [ -78.918197631835938, -8.45875072479248 ], [ -78.918197631835938, -8.458471298217717 ], [ -78.918472290039006, -8.458473205566406 ], [ -78.918472290039006, -8.458194732666016 ], [ -78.918746948242131, -8.458194732666016 ], [ -78.918746948242131, -8.457638740539551 ], [ -78.919029235839787, -8.457638740539551 ], [ -78.919029235839787, -8.457361221313477 ], [ -78.919303894042912, -8.457361221313477 ], [ -78.919303894042912, -8.457084655761662 ], [ -78.919586181640568, -8.457084655761662 ], [ -78.919586181640568, -8.456804275512695 ], [ -78.91986083984375, -8.456804275512695 ], [ -78.91986083984375, -8.456528663635254 ], [ -78.920135498046875, -8.456528663635254 ], [ -78.920135498046875, -8.455972671508789 ], [ -78.920417785644531, -8.455972671508789 ], [ -78.920417785644531, -8.455692291259766 ], [ -78.920692443847656, -8.455695152282715 ], [ -78.920692443847656, -8.455415725707951 ], [ -78.920974731445312, -8.455415725707951 ], [ -78.920974731445312, -8.454859733581543 ], [ -78.921249389648438, -8.454859733581543 ], [ -78.921249389648438, -8.454582214355469 ], [ -78.921524047851506, -8.454582214355469 ], [ -78.921524047851506, -8.454306602477971 ], [ -78.921806335449162, -8.454306602477971 ], [ -78.921806335449162, -8.453749656677189 ], [ -78.922080993652287, -8.453749656677189 ], [ -78.922080993652287, -8.453470230102539 ], [ -78.922363281249943, -8.453472137451115 ], [ -78.922363281249943, -8.453193664550724 ], [ -78.922637939453068, -8.453193664550724 ], [ -78.922637939453068, -8.45263767242426 ], [ -78.922920227050781, -8.45263767242426 ], [ -78.922920227050781, -8.452360153198242 ], [ -78.923194885253906, -8.452360153198242 ], [ -78.923194885253906, -8.452083587646484 ], [ -78.923469543457031, -8.452083587646484 ], [ -78.923469543457031, -8.45152759552002 ], [ -78.923751831054688, -8.45152759552002 ], [ -78.923751831054688, -8.451250076293888 ], [ -78.924026489257812, -8.451250076293888 ], [ -78.924026489257812, -8.450971603393555 ], [ -78.924308776855469, -8.450971603393555 ], [ -78.924308776855469, -8.450694084167424 ], [ -78.925140380859318, -8.450694084167424 ], [ -78.925140380859318, -8.450138092040959 ], [ -78.925415039062443, -8.450138092040959 ], [ -78.925415039062443, -8.449861526489258 ], [ -78.925697326660099, -8.449861526489258 ], [ -78.925697326660099, -8.449582099914494 ], [ -78.925971984863281, -8.449584007263184 ], [ -78.925971984863281, -8.449305534362793 ], [ -78.926246643066406, -8.449305534362793 ], [ -78.926246643066406, -8.448749542236328 ], [ -78.926528930664062, -8.448749542236328 ], [ -78.926528930664062, -8.448193550109863 ], [ -78.926803588867188, -8.448193550109863 ], [ -78.926803588867188, -8.447916030883675 ], [ -78.927085876464844, -8.447916030883675 ], [ -78.927085876464844, -8.447360038757267 ], [ -78.927360534667969, -8.447361946105957 ], [ -78.927360534667969, -8.447084426879883 ], [ -78.927917480468636, -8.447084426879883 ], [ -78.927917480468636, -8.446528434753418 ], [ -78.928192138671818, -8.446528434753418 ], [ -78.928192138671818, -8.445972442626953 ], [ -78.928749084472599, -8.445972442626953 ], [ -78.928749084472599, -8.445693969726562 ], [ -78.929306030273438, -8.445693969726562 ], [ -78.929306030273438, -8.444862365722656 ], [ -78.929580688476562, -8.444862365722656 ], [ -78.929580688476562, -8.444306373596191 ], [ -78.930137634277344, -8.444306373596191 ], [ -78.930137634277344, -8.444027900695801 ], [ -78.930419921875, -8.444027900695801 ], [ -78.930419921875, -8.442917823791447 ], [ -78.930694580078125, -8.442917823791447 ], [ -78.930694580078125, -8.442640304565373 ], [ -78.930969238281136, -8.44263744354248 ], [ -78.930969238281136, -8.441527366638127 ], [ -78.931251525878849, -8.441527366638127 ], [ -78.931251525878849, -8.440971374511662 ], [ -78.931808471679631, -8.440971374511662 ], [ -78.931808471679631, -8.440138816833496 ], [ -78.932083129882756, -8.440138816833496 ], [ -78.932083129882756, -8.439861297607422 ], [ -78.932640075683594, -8.439861297607422 ], [ -78.932640075683594, -8.439582824707031 ], [ -78.932914733886719, -8.439582824707031 ], [ -78.932914733886719, -8.4393053054809 ], [ -78.933746337890625, -8.4393053054809 ], [ -78.933746337890625, -8.439026832580566 ], [ -78.934028625488281, -8.439026832580566 ], [ -78.934028625488281, -8.438749313354435 ], [ -78.934585571289006, -8.438749313354435 ], [ -78.934585571289006, -8.43791675567627 ], [ -78.934860229492131, -8.43791675567627 ], [ -78.934860229492131, -8.437360763549805 ], [ -78.935142517089787, -8.437360763549805 ], [ -78.935142517089787, -8.43680477142334 ], [ -78.935691833496094, -8.43680477142334 ], [ -78.935691833496094, -8.436248779296875 ], [ -78.935417175292912, -8.436248779296875 ], [ -78.935417175292912, -8.435694694519043 ], [ -78.935691833496094, -8.435694694519043 ], [ -78.935691833496094, -8.435415267944279 ], [ -78.935417175292912, -8.435417175292969 ], [ -78.935417175292912, -8.432916641235295 ], [ -78.935142517089787, -8.432916641235295 ], [ -78.935142517089787, -8.430769920349064 ], [ -78.935142517089787, -8.430417060851994 ], [ -78.935279846191406, -8.430417060851994 ], [ -78.935417175292912, -8.430417060851994 ], [ -78.935417175292912, -8.430059432983342 ], [ -78.935417175292912, -8.429861068725529 ], [ -78.935691833496094, -8.429861068725529 ], [ -78.935691833496094, -8.429304122924748 ], [ -78.93597412109375, -8.429304122924748 ], [ -78.93597412109375, -8.428748130798283 ], [ -78.935691833496094, -8.428750991821289 ], [ -78.935691833496094, -8.428473472595158 ], [ -78.935417175292912, -8.428473472595158 ], [ -78.935417175292912, -8.427638053894043 ], [ -78.935142517089787, -8.427638053894043 ], [ -78.935142517089787, -8.427082061767578 ], [ -78.934585571289006, -8.427082061767578 ], [ -78.934585571289006, -8.426807403564453 ], [ -78.934303283691349, -8.426807403564453 ], [ -78.934303283691349, -8.426526069641056 ], [ -78.934028625488281, -8.426526069641056 ], [ -78.934028625488281, -8.426807403564453 ], [ -78.933746337890625, -8.426807403564453 ], [ -78.933746337890625, -8.427363395690918 ], [ -78.9334716796875, -8.427363395690918 ], [ -78.9334716796875, -8.427638053894043 ], [ -78.933197021484375, -8.427638053894043 ], [ -78.933197021484375, -8.427915573120117 ], [ -78.932640075683594, -8.427915573120117 ], [ -78.932640075683594, -8.427638053894043 ], [ -78.931251525878849, -8.427638053894043 ], [ -78.931251525878849, -8.427915573120117 ], [ -78.930694580078125, -8.427915573120117 ], [ -78.930694580078125, -8.428194046020508 ], [ -78.930137634277344, -8.428192138671818 ], [ -78.930137634277344, -8.428473472595158 ], [ -78.929862976074219, -8.428473472595158 ], [ -78.929862976074219, -8.428750991821289 ], [ -78.929306030273438, -8.428748130798283 ], [ -78.929306030273438, -8.429029464721623 ], [ -78.928749084472599, -8.429029464721623 ], [ -78.928749084472599, -8.429306983947754 ], [ -78.927818298339787, -8.429306983947754 ], [ -78.923469543457031, -8.429306983947754 ], [ -78.923469543457031, -8.429029464721623 ], [ -78.921524047851506, -8.429029464721623 ], [ -78.921524047851506, -8.429306983947754 ], [ -78.920692443847656, -8.429304122924748 ], [ -78.920692443847656, -8.429581642150765 ], [ -78.919029235839787, -8.429581642150765 ], [ -78.919029235839787, -8.429861068725529 ], [ -78.9173583984375, -8.429861068725529 ], [ -78.9173583984375, -8.430138587951603 ], [ -78.915695190429631, -8.430138587951603 ], [ -78.915695190429631, -8.429861068725529 ], [ -78.914581298828125, -8.429861068725529 ], [ -78.914581298828125, -8.429581642150765 ], [ -78.914306640625, -8.429581642150765 ], [ -78.914306640625, -8.429304122924748 ], [ -78.914024353027344, -8.429306983947754 ], [ -78.914024353027344, -8.429029464721623 ], [ -78.913749694824219, -8.429029464721623 ], [ -78.913749694824219, -8.428473472595158 ], [ -78.913475036621094, -8.428473472595158 ], [ -78.913475036621094, -8.427638053894043 ], [ -78.913192749023438, -8.427638053894043 ], [ -78.913192749023438, -8.427363395690918 ], [ -78.912635803222599, -8.427363395690918 ], [ -78.912635803222599, -8.427082061767578 ], [ -78.912086486816293, -8.427082061767578 ], [ -78.912086486816293, -8.426526069641056 ], [ -78.91180419921875, -8.426527976989746 ], [ -78.91180419921875, -8.426250457763672 ], [ -78.911529541015625, -8.426250457763672 ], [ -78.911529541015625, -8.425694465637207 ], [ -78.910972595214844, -8.425694465637207 ], [ -78.910972595214844, -8.425971984863281 ], [ -78.910697937011719, -8.425971984863281 ], [ -78.910697937011719, -8.425694465637207 ], [ -78.910415649414062, -8.425694465637207 ], [ -78.910415649414062, -8.425415992736816 ], [ -78.910140991210938, -8.425415992736816 ], [ -78.910140991210938, -8.424860000610352 ], [ -78.909584045410099, -8.424860000610352 ], [ -78.909584045410099, -8.42458438873291 ], [ -78.90875244140625, -8.42458438873291 ], [ -78.90875244140625, -8.424304008483887 ], [ -78.908195495605469, -8.424305915832463 ], [ -78.908195495605469, -8.424028396606445 ], [ -78.907913208007812, -8.424028396606445 ], [ -78.907913208007812, -8.423748016357422 ], [ -78.907638549804688, -8.423749923706055 ], [ -78.907638549804688, -8.42347240447998 ], [ -78.907363891601562, -8.42347240447998 ], [ -78.907363891601562, -8.421250343322697 ], [ -78.907081604003906, -8.421250343322697 ], [ -78.907081604003906, -8.420415878295842 ], [ -78.906806945800724, -8.420415878295842 ], [ -78.906806945800724, -8.419584274291935 ], [ -78.906524658203068, -8.419584274291935 ], [ -78.906524658203068, -8.41874980926508 ], [ -78.90625, -8.41874980926508 ], [ -78.90625, -8.418193817138615 ], [ -78.905975341796818, -8.418193817138615 ], [ -78.905975341796818, -8.41735935211176 ], [ -78.905693054199162, -8.417362213134766 ], [ -78.905693054199162, -8.41652774810791 ], [ -78.905418395996094, -8.41652774810791 ], [ -78.905418395996094, -8.415693283081055 ], [ -78.905136108398438, -8.415693283081055 ], [ -78.905136108398438, -8.414861679077148 ], [ -78.904861450195312, -8.414861679077148 ], [ -78.904861450195312, -8.414027214050293 ], [ -78.904586791992188, -8.414027214050293 ], [ -78.904586791992188, -8.41319561004633 ], [ -78.904304504394531, -8.41319561004633 ], [ -78.904304504394531, -8.412638664245549 ], [ -78.904029846191406, -8.412638664245549 ], [ -78.904029846191406, -8.411803245544434 ], [ -78.90374755859375, -8.411805152893066 ], [ -78.90374755859375, -8.410972595214844 ], [ -78.903472900390568, -8.410972595214844 ], [ -78.903472900390568, -8.410139083862248 ], [ -78.903198242187443, -8.410139083862248 ], [ -78.903190612792912, -8.409304618835392 ], [ -78.902915954589787, -8.409304618835392 ], [ -78.902915954589787, -8.408471107482853 ], [ -78.902641296386662, -8.408473014831543 ], [ -78.902641296386662, -8.407638549804688 ], [ -78.902359008788949, -8.407638549804688 ], [ -78.902359008788949, -8.407082557678223 ], [ -78.902084350585938, -8.407082557678223 ], [ -78.902084350585938, -8.406249046325627 ], [ -78.901802062988281, -8.406250953674316 ], [ -78.901802062988281, -8.405417442321777 ], [ -78.901527404785156, -8.405417442321777 ], [ -78.901527404785156, -8.403751373291016 ], [ -78.901252746582031, -8.403751373291016 ], [ -78.901252746582031, -8.403195381164551 ], [ -78.900970458984375, -8.403195381164551 ], [ -78.900970458984375, -8.402639389038086 ], [ -78.90069580078125, -8.402639389038086 ], [ -78.90069580078125, -8.402359962463379 ], [ -78.900413513183594, -8.402359962463379 ], [ -78.900413513183594, -8.400973320007324 ], [ -78.900138854980412, -8.400973320007324 ], [ -78.900138854980412, -8.400416374206486 ], [ -78.899864196777287, -8.400416374206486 ], [ -78.899864196777287, -8.399306297302246 ], [ -78.899581909179631, -8.399306297302246 ], [ -78.899581909179631, -8.398750305175724 ], [ -78.899307250976449, -8.398750305175724 ], [ -78.899307250976449, -8.397359848022404 ], [ -78.899024963378906, -8.397359848022404 ], [ -78.899024963378906, -8.395970344543457 ], [ -78.898750305175781, -8.39597225189209 ], [ -78.898750305175781, -8.395137786865234 ], [ -78.898475646972656, -8.395137786865234 ], [ -78.898475646972656, -8.394583702087402 ], [ -78.898193359375, -8.394583702087402 ], [ -78.898193359375, -8.394304275512638 ], [ -78.897918701171875, -8.394304275512638 ], [ -78.897918701171875, -8.393748283386174 ], [ -78.897636413574219, -8.393750190734863 ], [ -78.897636413574219, -8.393471717834473 ], [ -78.897361755371094, -8.393471717834473 ], [ -78.897361755371094, -8.39264011383051 ], [ -78.897087097167912, -8.39264011383051 ], [ -78.897087097167912, -8.391805648803654 ], [ -78.896804809570256, -8.391805648803654 ], [ -78.896804809570256, -8.391249656677246 ], [ -78.896530151367131, -8.391249656677246 ], [ -78.896530151367131, -8.390969276428223 ], [ -78.896804809570256, -8.390969276428223 ], [ -78.896804809570256, -8.389859199523926 ], [ -78.897087097167912, -8.389859199523926 ], [ -78.897087097167912, -8.386527061462402 ], [ -78.897361755371094, -8.386527061462402 ], [ -78.897361755371094, -8.386252403259277 ], [ -78.897087097167912, -8.386248588562012 ], [ -78.897087097167912, -8.385415077209416 ], [ -78.897361755371094, -8.385415077209416 ], [ -78.897361755371094, -8.384859085082951 ], [ -78.897636413574219, -8.384859085082951 ], [ -78.897636413574219, -8.383749008178711 ], [ -78.897361755371094, -8.383749008178711 ], [ -78.897361755371094, -8.382637023925668 ], [ -78.897636413574219, -8.382637023925668 ], [ -78.897636413574219, -8.38097095489502 ], [ -78.897918701171875, -8.38097095489502 ], [ -78.897918701171875, -8.379860877990666 ], [ -78.898193359375, -8.379860877990666 ], [ -78.898193359375, -8.379304885864258 ], [ -78.898475646972656, -8.379304885864258 ], [ -78.898475646972656, -8.378750801086312 ], [ -78.898750305175781, -8.378750801086312 ], [ -78.898750305175781, -8.378194808959904 ], [ -78.899024963378906, -8.378194808959904 ], [ -78.899024963378906, -8.37791728973383 ], [ -78.899581909179631, -8.37791728973383 ], [ -78.899581909179631, -8.377084732055664 ], [ -78.899864196777287, -8.377084732055664 ], [ -78.899864196777287, -8.376528739929199 ], [ -78.900138854980412, -8.376528739929199 ], [ -78.900138854980412, -8.375972747802734 ], [ -78.900413513183594, -8.375972747802734 ], [ -78.900413513183594, -8.37541675567627 ], [ -78.90069580078125, -8.37541675567627 ], [ -78.90069580078125, -8.375136375427246 ], [ -78.901252746582031, -8.375136375427246 ], [ -78.901252746582031, -8.374582290649414 ], [ -78.901527404785156, -8.374582290649414 ], [ -78.901527404785156, -8.374306678771973 ], [ -78.901802062988281, -8.374306678771973 ], [ -78.901802062988281, -8.374026298522892 ], [ -78.902084350585938, -8.374029159545898 ], [ -78.902084350585938, -8.373750686645508 ], [ -78.902359008788949, -8.373750686645508 ], [ -78.902359008788949, -8.373193740844727 ], [ -78.902641296386662, -8.373193740844727 ], [ -78.902656555175781, -8.372040748596135 ], [ -78.902778625488281, -8.372050285339355 ], [ -78.903190612792912, -8.372083663940373 ], [ -78.903198242187443, -8.371527671813908 ], [ -78.903472900390568, -8.371527671813908 ], [ -78.903472900390568, -8.371248245239258 ], [ -78.90374755859375, -8.371250152587891 ], [ -78.90374755859375, -8.370694160461426 ], [ -78.904029846191406, -8.370694160461426 ], [ -78.904029846191406, -8.370415687561035 ], [ -78.904304504394531, -8.370415687561035 ], [ -78.904304504394531, -8.370138168334961 ], [ -78.904029846191406, -8.370138168334961 ], [ -78.904029846191406, -8.369582176208496 ], [ -78.904304504394531, -8.369582176208496 ], [ -78.904304504394531, -8.369028091430607 ], [ -78.904586791992188, -8.369028091430607 ], [ -78.904586791992188, -8.368749618530217 ], [ -78.904861450195312, -8.368749618530217 ], [ -78.904861450195312, -8.368193626403752 ], [ -78.905136108398438, -8.368193626403752 ], [ -78.905136108398438, -8.367916107177678 ], [ -78.905418395996094, -8.367916107177678 ], [ -78.905418395996094, -8.36736011505127 ], [ -78.905693054199162, -8.36736011505127 ], [ -78.905693054199162, -8.366806030273324 ], [ -78.905975341796818, -8.366806030273324 ], [ -78.905975341796818, -8.366527557373047 ], [ -78.90625, -8.366527557373047 ], [ -78.90625, -8.365971565246468 ], [ -78.906524658203068, -8.365971565246468 ], [ -78.906524658203068, -8.36541557312006 ], [ -78.906806945800724, -8.36541557312006 ], [ -78.906806945800724, -8.364862442016602 ], [ -78.907081604003906, -8.364862442016602 ], [ -78.907081604003906, -8.364306449890137 ], [ -78.907363891601562, -8.364306449890137 ], [ -78.907363891601562, -8.363750457763615 ], [ -78.907638549804688, -8.363750457763615 ], [ -78.907638549804688, -8.363471984863281 ], [ -78.907913208007812, -8.363471984863281 ], [ -78.907913208007812, -8.36319446563715 ], [ -78.908195495605469, -8.36319446563715 ], [ -78.908195495605469, -8.3629150390625 ], [ -78.908470153808594, -8.362917900085449 ], [ -78.908470153808594, -8.362636566162109 ], [ -78.90875244140625, -8.362636566162109 ], [ -78.90875244140625, -8.362359046936035 ], [ -78.909027099609318, -8.362361907958984 ], [ -78.909027099609318, -8.36208438873291 ], [ -78.909301757812443, -8.36208438873291 ], [ -78.909301757812443, -8.36180591583252 ], [ -78.909584045410099, -8.36180591583252 ], [ -78.909584045410099, -8.36208438873291 ], [ -78.909858703613224, -8.36208438873291 ], [ -78.909858703613224, -8.36180591583252 ], [ -78.910140991210938, -8.36180591583252 ], [ -78.910140991210938, -8.361528396606445 ], [ -78.910415649414062, -8.361528396606445 ], [ -78.910415649414062, -8.361248970031738 ], [ -78.910697937011719, -8.361248970031738 ], [ -78.910697937011719, -8.360971450805664 ], [ -78.911529541015625, -8.360971450805664 ], [ -78.911529541015625, -8.360415458679199 ], [ -78.91180419921875, -8.360415458679199 ], [ -78.91180419921875, -8.359580993652344 ], [ -78.912086486816293, -8.35958290100092 ], [ -78.912086486816293, -8.359305381774902 ], [ -78.912361145019474, -8.359305381774902 ], [ -78.912361145019474, -8.358749389648438 ], [ -78.912635803222599, -8.358749389648438 ], [ -78.912635803222599, -8.358195304870549 ], [ -78.912918090820256, -8.358195304870549 ], [ -78.912918090820256, -8.357916831970215 ], [ -78.913475036621094, -8.357916831970215 ], [ -78.913475036621094, -8.357360839843693 ], [ -78.913749694824219, -8.357360839843693 ], [ -78.913749694824219, -8.357083320617619 ], [ -78.914024353027344, -8.357083320617619 ], [ -78.914024353027344, -8.356804847717228 ], [ -78.914306640625, -8.356804847717228 ], [ -78.914306640625, -8.356527328491154 ], [ -78.914581298828125, -8.356527328491154 ], [ -78.914581298828125, -8.356248855590763 ], [ -78.915412902831974, -8.356248855590763 ], [ -78.915412902831974, -8.355973243713379 ], [ -78.915969848632756, -8.355973243713379 ], [ -78.915969848632756, -8.355415344238281 ], [ -78.916252136230412, -8.355417251586914 ], [ -78.916252136230412, -8.354861259460336 ], [ -78.916526794433594, -8.354861259460336 ], [ -78.916526794433594, -8.354582786560059 ], [ -78.916252136230412, -8.354582786560059 ], [ -78.916252136230412, -8.354305267333928 ], [ -78.916526794433594, -8.354305267333928 ], [ -78.916526794433594, -8.353470802307072 ], [ -78.91680908203125, -8.353470802307072 ], [ -78.91680908203125, -8.352916717529297 ], [ -78.917083740234375, -8.352916717529297 ], [ -78.917083740234375, -8.352360725402832 ], [ -78.9173583984375, -8.352360725402832 ], [ -78.9173583984375, -8.352083206176758 ], [ -78.917640686035156, -8.352083206176758 ], [ -78.917640686035156, -8.351529121398926 ], [ -78.918197631835938, -8.351529121398926 ], [ -78.918197631835938, -8.351248741149902 ], [ -78.918472290039006, -8.351248741149902 ], [ -78.918472290039006, -8.35069465637207 ], [ -78.918746948242131, -8.35069465637207 ], [ -78.918746948242131, -8.350138664245605 ], [ -78.919029235839787, -8.350138664245605 ], [ -78.919029235839787, -8.349858283996582 ], [ -78.919303894042912, -8.349858283996582 ], [ -78.919303894042912, -8.348748207092285 ], [ -78.91986083984375, -8.348751068115178 ], [ -78.91986083984375, -8.348472595214787 ], [ -78.920135498046875, -8.348472595214787 ], [ -78.920135498046875, -8.34819221496582 ], [ -78.920417785644531, -8.34819507598877 ], [ -78.920417785644531, -8.347916603088322 ], [ -78.920974731445312, -8.347916603088322 ], [ -78.920974731445312, -8.347082138061467 ], [ -78.921249389648438, -8.347082138061467 ], [ -78.921249389648438, -8.346806526184082 ], [ -78.921524047851506, -8.346806526184082 ], [ -78.921524047851506, -8.346526145935059 ], [ -78.922080993652287, -8.346526145935059 ], [ -78.922080993652287, -8.345970153808594 ], [ -78.922363281249943, -8.345972061157227 ], [ -78.922363281249943, -8.345693588256836 ], [ -78.922637939453068, -8.345693588256836 ], [ -78.922637939453068, -8.345416069030705 ], [ -78.922920227050781, -8.345416069030705 ], [ -78.922920227050781, -8.345137596130371 ], [ -78.923194885253906, -8.345137596130371 ], [ -78.923194885253906, -8.34486007690424 ], [ -78.923469543457031, -8.34486007690424 ], [ -78.923469543457031, -8.344304084777775 ], [ -78.923751831054688, -8.344304084777775 ], [ -78.923751831054688, -8.34374809265131 ], [ -78.924026489257812, -8.34375 ], [ -78.924026489257812, -8.343471527099609 ], [ -78.924583435058594, -8.343471527099609 ], [ -78.924583435058594, -8.342915534973145 ], [ -78.924858093261662, -8.342915534973145 ], [ -78.924858093261662, -8.34263801574707 ], [ -78.925140380859318, -8.34263801574707 ], [ -78.925140380859318, -8.342362403869629 ], [ -78.925415039062443, -8.342362403869629 ], [ -78.925415039062443, -8.342082023620492 ], [ -78.925697326660099, -8.342082023620492 ], [ -78.925697326660099, -8.341250419616699 ], [ -78.925971984863281, -8.341250419616699 ], [ -78.925971984863281, -8.340694427490234 ], [ -78.926246643066406, -8.340694427490234 ], [ -78.926246643066406, -8.340415954589844 ], [ -78.926528930664062, -8.340415954589844 ], [ -78.926528930664062, -8.34013843536377 ], [ -78.926803588867188, -8.34013843536377 ], [ -78.926803588867188, -8.33930587768549 ], [ -78.927085876464844, -8.33930587768549 ], [ -78.927085876464844, -8.339028358459473 ], [ -78.927360534667969, -8.339028358459473 ], [ -78.927360534667969, -8.338472366333008 ], [ -78.927635192871094, -8.338472366333008 ], [ -78.927635192871094, -8.337916374206543 ], [ -78.927917480468636, -8.337916374206543 ], [ -78.927917480468636, -8.337639808654728 ], [ -78.928192138671818, -8.337639808654728 ], [ -78.928192138671818, -8.336527824401799 ], [ -78.928474426269474, -8.336527824401799 ], [ -78.928474426269474, -8.335971832275334 ], [ -78.929031372070256, -8.335971832275334 ], [ -78.929031372070256, -8.335417747497559 ], [ -78.929306030273438, -8.335417747497559 ], [ -78.929306030273438, -8.335140228271428 ], [ -78.929862976074219, -8.335140228271428 ], [ -78.929862976074219, -8.334861755371094 ], [ -78.930137634277344, -8.334861755371094 ], [ -78.930137634277344, -8.33458137512207 ], [ -78.930419921875, -8.334584236144963 ], [ -78.930419921875, -8.334305763244572 ], [ -78.930694580078125, -8.334305763244572 ], [ -78.930694580078125, -8.334027290344238 ], [ -78.930969238281136, -8.334027290344238 ], [ -78.930969238281136, -8.333471298217717 ], [ -78.931251525878849, -8.333471298217717 ], [ -78.931251525878849, -8.332915306091252 ], [ -78.931526184081974, -8.332915306091252 ], [ -78.931526184081974, -8.332638740539551 ], [ -78.931808471679631, -8.332638740539551 ], [ -78.931808471679631, -8.332082748413086 ], [ -78.932083129882756, -8.332082748413086 ], [ -78.932083129882756, -8.331805229187012 ], [ -78.932640075683594, -8.331805229187012 ], [ -78.932640075683594, -8.331249237060547 ], [ -78.932914733886719, -8.331249237060547 ], [ -78.932914733886719, -8.330693244934082 ], [ -78.933197021484375, -8.330693244934082 ], [ -78.933197021484375, -8.330416679382267 ], [ -78.9334716796875, -8.330416679382267 ], [ -78.9334716796875, -8.33013916015625 ], [ -78.933746337890625, -8.33013916015625 ], [ -78.933746337890625, -8.329583168029785 ], [ -78.934303283691349, -8.329583168029785 ], [ -78.934303283691349, -8.32874870300293 ], [ -78.934585571289006, -8.32874870300293 ], [ -78.934585571289006, -8.328471183776855 ], [ -78.934860229492131, -8.328473091125431 ], [ -78.934860229492131, -8.328194618225041 ], [ -78.935417175292912, -8.328194618225041 ], [ -78.935417175292912, -8.327082633972111 ], [ -78.935691833496094, -8.327082633972111 ], [ -78.935691833496094, -8.326526641845646 ], [ -78.93597412109375, -8.326526641845646 ], [ -78.93597412109375, -8.326249122619629 ], [ -78.936248779296875, -8.326251029968148 ], [ -78.936248779296875, -8.325972557067871 ], [ -78.936531066894531, -8.325972557067871 ], [ -78.936531066894531, -8.325693130493164 ], [ -78.936805725097656, -8.325693130493164 ], [ -78.936805725097656, -8.325139045715275 ], [ -78.937080383300781, -8.325139045715275 ], [ -78.937080383300781, -8.324860572814885 ], [ -78.937362670898438, -8.324860572814885 ], [ -78.937362670898438, -8.32430458068842 ], [ -78.937637329101506, -8.32430458068842 ], [ -78.937637329101506, -8.323748588561955 ], [ -78.937919616699162, -8.323748588561955 ], [ -78.937919616699162, -8.323470115661564 ], [ -78.938468933105412, -8.32347297668457 ], [ -78.938468933105412, -8.323195457458439 ], [ -78.938751220703125, -8.323195457458439 ], [ -78.938751220703125, -8.322639465331974 ], [ -78.93902587890625, -8.322639465331974 ], [ -78.93902587890625, -8.32208347320551 ], [ -78.939308166503906, -8.32208347320551 ], [ -78.939308166503906, -8.321804046630859 ], [ -78.939582824707031, -8.321804046630859 ], [ -78.939582824707031, -8.321248054504395 ], [ -78.939857482910156, -8.321250915527344 ], [ -78.939857482910156, -8.32097339630127 ], [ -78.940414428710938, -8.32097339630127 ], [ -78.940414428710938, -8.320416450500488 ], [ -78.94069671630848, -8.320416450500488 ], [ -78.94069671630848, -8.319860458374023 ], [ -78.940971374511662, -8.319860458374023 ], [ -78.940971374511662, -8.319581985473633 ], [ -78.941528320312443, -8.319581985473633 ], [ -78.941528320312443, -8.319025993347168 ], [ -78.941802978515625, -8.319025993347168 ], [ -78.941802978515625, -8.318470001220703 ], [ -78.942085266113281, -8.318471908569279 ], [ -78.942085266113281, -8.318194389343262 ], [ -78.942359924316406, -8.318194389343262 ], [ -78.942359924316406, -8.317640304565373 ], [ -78.942642211914062, -8.317638397216797 ], [ -78.942642211914062, -8.317359924316406 ], [ -78.942359924316406, -8.317359924316406 ], [ -78.942359924316406, -8.317084312438908 ], [ -78.942642211914062, -8.317084312438908 ], [ -78.942642211914062, -8.316805839538517 ], [ -78.942916870117188, -8.316805839538517 ], [ -78.942916870117188, -8.316249847412053 ], [ -78.943191528320312, -8.316249847412053 ], [ -78.943191528320312, -8.315972328185978 ], [ -78.943473815917969, -8.315972328185978 ], [ -78.943473815917969, -8.315416336059513 ], [ -78.944030761718693, -8.315416336059513 ], [ -78.944030761718693, -8.315137863159123 ], [ -78.944305419921818, -8.315137863159123 ], [ -78.944305419921818, -8.314583778381348 ], [ -78.944030761718693, -8.314583778381348 ], [ -78.944030761718693, -8.314027786254883 ], [ -78.944305419921818, -8.314027786254883 ], [ -78.944305419921818, -8.313471794128304 ], [ -78.944580078124943, -8.313471794128304 ], [ -78.944580078124943, -8.313194274902287 ], [ -78.944862365722599, -8.313194274902287 ], [ -78.944862365722599, -8.312915802001896 ], [ -78.945137023925781, -8.312915802001896 ], [ -78.945137023925781, -8.312638282775822 ], [ -78.945419311523438, -8.312640190124512 ], [ -78.945419311523438, -8.312359809875431 ], [ -78.945968627929688, -8.312359809875431 ], [ -78.945968627929688, -8.312084197998047 ], [ -78.946250915527344, -8.312084197998047 ], [ -78.946250915527344, -8.311805725097656 ], [ -78.946525573730469, -8.311805725097656 ], [ -78.946525573730469, -8.311528205871582 ], [ -78.947082519531193, -8.311528205871582 ], [ -78.947082519531193, -8.311249732971191 ], [ -78.947364807128849, -8.311249732971191 ], [ -78.947364807128849, -8.310969352722111 ], [ -78.947639465331974, -8.310972213745117 ], [ -78.947639465331974, -8.310693740844727 ], [ -78.947914123535099, -8.310693740844727 ], [ -78.947914123535099, -8.310972213745117 ], [ -78.948196411132756, -8.310972213745117 ], [ -78.948196411132756, -8.310693740844727 ], [ -78.948471069335938, -8.310693740844727 ], [ -78.948471069335938, -8.310416221618596 ], [ -78.948196411132756, -8.310416221618596 ], [ -78.948196411132756, -8.310139656066895 ], [ -78.948471069335938, -8.310139656066895 ], [ -78.948471069335938, -8.308747291564885 ], [ -78.948753356933594, -8.308750152587891 ], [ -78.948753356933594, -8.308193206787109 ], [ -78.949028015136719, -8.308193206787109 ], [ -78.949028015136719, -8.307637214660645 ], [ -78.949302673339844, -8.307637214660645 ], [ -78.949302673339844, -8.30708122253418 ], [ -78.9495849609375, -8.307084083557129 ], [ -78.9495849609375, -8.306804656982365 ], [ -78.949859619140625, -8.306804656982365 ], [ -78.949859619140625, -8.306527137756291 ], [ -78.950141906738281, -8.306527137756291 ], [ -78.950141906738281, -8.3062486648559 ], [ -78.950416564941349, -8.3062486648559 ], [ -78.950416564941349, -8.305415153503418 ], [ -78.950691223144474, -8.305415153503418 ], [ -78.950691223144474, -8.304859161376953 ], [ -78.950973510742131, -8.304859161376953 ], [ -78.950973510742131, -8.303749084472599 ], [ -78.951248168945256, -8.303749084472599 ], [ -78.951248168945256, -8.303473472595215 ], [ -78.950973510742131, -8.303473472595215 ], [ -78.950973510742131, -8.30263710021967 ], [ -78.951248168945256, -8.302639007568359 ], [ -78.951248168945256, -8.301804542541504 ], [ -78.951530456542969, -8.301804542541504 ], [ -78.951530456542969, -8.300971031188908 ], [ -78.951805114746094, -8.300971031188908 ], [ -78.951805114746094, -8.300416946411133 ], [ -78.952079772949219, -8.300416946411133 ], [ -78.952079772949219, -8.300139427185059 ], [ -78.952362060546875, -8.300139427185059 ], [ -78.952362060546875, -8.299583435058594 ], [ -78.95263671875, -8.299583435058594 ], [ -78.95263671875, -8.299304962158203 ], [ -78.952919006347656, -8.299304962158203 ], [ -78.952919006347656, -8.299027442932129 ], [ -78.953193664550781, -8.299027442932129 ], [ -78.953193664550781, -8.298748970031738 ], [ -78.953475952148324, -8.298750877380314 ], [ -78.953475952148324, -8.298473358154297 ], [ -78.953750610351506, -8.298473358154297 ], [ -78.953750610351506, -8.298194885253906 ], [ -78.954025268554631, -8.298194885253906 ], [ -78.954025268554631, -8.297917366027832 ], [ -78.954864501953125, -8.297917366027832 ], [ -78.954864501953125, -8.297638893127441 ], [ -78.95513916015625, -8.297638893127441 ], [ -78.95513916015625, -8.297361373901367 ], [ -78.955696105957031, -8.297361373901367 ], [ -78.955696105957031, -8.297082901000977 ], [ -78.955413818359375, -8.297082901000977 ], [ -78.955413818359375, -8.296805381774902 ], [ -78.955696105957031, -8.296805381774902 ], [ -78.955696105957031, -8.296528816223088 ], [ -78.955970764160156, -8.296528816223088 ], [ -78.955970764160156, -8.296251296997013 ], [ -78.956253051757812, -8.296251296997013 ], [ -78.956253051757812, -8.295972824096623 ], [ -78.956527709960824, -8.295972824096623 ], [ -78.956527709960824, -8.295695304870605 ], [ -78.956802368164006, -8.295695304870605 ], [ -78.956802368164006, -8.295416831970158 ], [ -78.957084655761662, -8.295416831970158 ], [ -78.957084655761662, -8.295139312744141 ], [ -78.957359313964787, -8.295139312744141 ], [ -78.957359313964787, -8.294582366943303 ], [ -78.957641601562443, -8.294582366943303 ], [ -78.957641601562443, -8.294026374816895 ], [ -78.957916259765625, -8.294026374816895 ], [ -78.957916259765625, -8.293473243713322 ], [ -78.95819091796875, -8.293473243713322 ], [ -78.95819091796875, -8.292916297912541 ], [ -78.958473205566406, -8.292916297912541 ], [ -78.958473205566406, -8.292360305786076 ], [ -78.958747863769531, -8.292360305786076 ], [ -78.958747863769531, -8.291804313659611 ], [ -78.959030151367188, -8.291804313659611 ], [ -78.959030151367188, -8.291248321533146 ], [ -78.959304809570312, -8.291248321533146 ], [ -78.959304809570312, -8.290694236755371 ], [ -78.959587097167969, -8.290694236755371 ], [ -78.959587097167969, -8.289584159851074 ], [ -78.959861755371037, -8.289584159851074 ], [ -78.959861755371037, -8.288749694824219 ], [ -78.960136413574162, -8.288749694824219 ], [ -78.960136413574162, -8.287637710571289 ], [ -78.960418701171818, -8.287637710571289 ], [ -78.960418701171818, -8.28680419921875 ], [ -78.960136413574162, -8.28680419921875 ], [ -78.960136413574162, -8.286250114440918 ], [ -78.959861755371037, -8.286250114440918 ], [ -78.959861755371037, -8.285694122314453 ], [ -78.959587097167969, -8.285694122314453 ], [ -78.959587097167969, -8.285138130187988 ], [ -78.959304809570312, -8.285138130187988 ], [ -78.959304809570312, -8.284582138061523 ], [ -78.959030151367188, -8.284582138061523 ], [ -78.959030151367188, -8.284028053283635 ], [ -78.958747863769531, -8.284028053283635 ], [ -78.958747863769531, -8.283749580383244 ], [ -78.958473205566406, -8.283749580383244 ], [ -78.958473205566406, -8.28347206115717 ], [ -78.95819091796875, -8.28347206115717 ], [ -78.95819091796875, -8.282916069030762 ], [ -78.957916259765625, -8.282917976379395 ], [ -78.957916259765625, -8.282084465026799 ], [ -78.95819091796875, -8.282084465026799 ], [ -78.95819091796875, -8.280970573425293 ], [ -78.958473205566406, -8.280970573425293 ], [ -78.958473205566406, -8.279862403869629 ], [ -78.958747863769531, -8.279862403869629 ], [ -78.958747863769531, -8.278749465942383 ], [ -78.959030151367188, -8.278749465942383 ], [ -78.959030151367188, -8.278470993041992 ], [ -78.959304809570312, -8.278470993041992 ], [ -78.959304809570312, -8.278195381164551 ], [ -78.959030151367188, -8.278195381164551 ], [ -78.959030151367188, -8.277083396911621 ], [ -78.959304809570312, -8.277083396911621 ], [ -78.959304809570312, -8.275694847106877 ], [ -78.959587097167969, -8.275694847106877 ], [ -78.959587097167969, -8.274582862853947 ], [ -78.959861755371037, -8.274582862853947 ], [ -78.959861755371037, -8.273751258849984 ], [ -78.960136413574162, -8.273751258849984 ], [ -78.960136413574162, -8.272916793823129 ], [ -78.960418701171818, -8.272916793823129 ], [ -78.960418701171818, -8.271804809570256 ], [ -78.960693359374943, -8.271804809570256 ], [ -78.960693359374943, -8.270971298217773 ], [ -78.960975646972599, -8.270973205566406 ], [ -78.960975646972599, -8.270138740539551 ], [ -78.961250305175781, -8.270138740539551 ], [ -78.961250305175781, -8.269305229186955 ], [ -78.961524963378906, -8.269305229186955 ], [ -78.961524963378906, -8.268472671508789 ], [ -78.961807250976562, -8.268472671508789 ], [ -78.961807250976562, -8.267359733581543 ], [ -78.962081909179688, -8.267359733581543 ], [ -78.962081909179688, -8.266526222229004 ], [ -78.962364196777344, -8.266526222229004 ], [ -78.962364196777344, -8.265970230102539 ], [ -78.962638854980469, -8.265972137451115 ], [ -78.962638854980469, -8.265693664550724 ], [ -78.962913513183537, -8.265693664550724 ], [ -78.962913513183537, -8.26513767242426 ], [ -78.963195800781193, -8.26513767242426 ], [ -78.963195800781193, -8.264860153198242 ], [ -78.963470458984318, -8.264860153198242 ], [ -78.963470458984318, -8.264583587646484 ], [ -78.963752746581974, -8.264583587646484 ], [ -78.963752746581974, -8.264304161071777 ], [ -78.964027404785099, -8.264304161071777 ], [ -78.964027404785099, -8.263748168945312 ], [ -78.964302062988281, -8.263750076293888 ], [ -78.964302062988281, -8.263471603393498 ], [ -78.964584350585938, -8.263471603393498 ], [ -78.964584350585938, -8.263194084167424 ], [ -78.964859008789062, -8.263194084167424 ], [ -78.964859008789062, -8.262638092040959 ], [ -78.965141296386719, -8.262638092040959 ], [ -78.965141296386719, -8.262361526489258 ], [ -78.965415954589844, -8.262361526489258 ], [ -78.965415954589844, -8.262082099914494 ], [ -78.965690612792969, -8.262082099914494 ], [ -78.9656982421875, -8.261805534362793 ], [ -78.965972900390625, -8.261805534362793 ], [ -78.965972900390625, -8.261249542236328 ], [ -78.966247558593693, -8.261249542236328 ], [ -78.966247558593693, -8.26097202301014 ], [ -78.966529846191349, -8.26097202301014 ], [ -78.966529846191349, -8.260693550109863 ], [ -78.966804504394474, -8.260693550109863 ], [ -78.966804504394474, -8.260416030883732 ], [ -78.967086791992131, -8.260416030883732 ], [ -78.967086791992131, -8.259860038757267 ], [ -78.967361450195312, -8.259861946105957 ], [ -78.967361450195312, -8.259584426879883 ], [ -78.967636108398438, -8.259584426879883 ], [ -78.967636108398438, -8.259305953979492 ], [ -78.967918395996094, -8.259305953979492 ], [ -78.967918395996094, -8.259028434753418 ], [ -78.968475341796875, -8.259028434753418 ], [ -78.968475341796875, -8.258749961853027 ], [ -78.96875, -8.258749961853027 ], [ -78.96875, -8.258472442626953 ], [ -78.969024658203125, -8.258472442626953 ], [ -78.969024658203125, -8.258193969726562 ], [ -78.969306945800668, -8.258193969726562 ], [ -78.969306945800668, -8.257637977600098 ], [ -78.969581604003849, -8.25763988494873 ], [ -78.969581604003849, -8.257362365722656 ], [ -78.969863891601506, -8.257362365722656 ], [ -78.969863891601506, -8.256806373596191 ], [ -78.970413208007812, -8.256806373596191 ], [ -78.970413208007812, -8.256527900695801 ], [ -78.970695495605469, -8.256527900695801 ], [ -78.970695495605469, -8.255971908569336 ], [ -78.970970153808594, -8.255971908569336 ], [ -78.970970153808594, -8.255694389343262 ], [ -78.97125244140625, -8.255694389343262 ], [ -78.97125244140625, -8.25514030456543 ], [ -78.9718017578125, -8.25513744354248 ], [ -78.9718017578125, -8.254861831664982 ], [ -78.972084045410156, -8.254861831664982 ], [ -78.972084045410156, -8.254584312438965 ], [ -78.972358703613168, -8.254584312438965 ], [ -78.972358703613168, -8.254305839538574 ], [ -78.972084045410156, -8.254305839538574 ], [ -78.972084045410156, -8.2540283203125 ], [ -78.972358703613168, -8.2540283203125 ], [ -78.972358703613168, -8.253748893737736 ], [ -78.972640991210881, -8.253748893737736 ], [ -78.972640991210881, -8.253195762634221 ], [ -78.972915649414006, -8.253195762634221 ], [ -78.972915649414006, -8.252915382385254 ], [ -78.973197937011662, -8.252915382385254 ], [ -78.973197937011662, -8.252639770507756 ], [ -78.973472595214787, -8.252639770507756 ], [ -78.973472595214787, -8.252361297607365 ], [ -78.973747253417969, -8.252361297607365 ], [ -78.973747253417969, -8.2518053054809 ], [ -78.974029541015625, -8.2518053054809 ], [ -78.974029541015625, -8.25152683258051 ], [ -78.97430419921875, -8.25152683258051 ], [ -78.97430419921875, -8.251249313354435 ], [ -78.974586486816406, -8.251249313354435 ], [ -78.974586486816406, -8.250693321227971 ], [ -78.974861145019531, -8.25069522857666 ], [ -78.974861145019531, -8.25041675567627 ], [ -78.975135803222656, -8.25041675567627 ], [ -78.975135803222656, -8.250139236450195 ], [ -78.975418090820312, -8.250139236450195 ], [ -78.975418090820312, -8.249860763549805 ], [ -78.975692749023381, -8.249860763549805 ], [ -78.975692749023381, -8.24958324432373 ], [ -78.975975036621037, -8.24958324432373 ], [ -78.975975036621037, -8.249860763549805 ], [ -78.976249694824162, -8.249860763549805 ], [ -78.976249694824162, -8.24930477142334 ], [ -78.976806640624943, -8.24930477142334 ], [ -78.976806640624943, -8.249027252197152 ], [ -78.977081298828125, -8.249029159545898 ], [ -78.977081298828125, -8.248471260070744 ], [ -78.977363586425781, -8.248473167419434 ], [ -78.977363586425781, -8.248194694519043 ], [ -78.977912902832031, -8.248194694519043 ], [ -78.977912902832031, -8.247638702392578 ], [ -78.978195190429688, -8.247638702392578 ], [ -78.978195190429688, -8.247359275817814 ], [ -78.978469848632812, -8.247359275817814 ], [ -78.978469848632812, -8.246249198913574 ], [ -78.978752136230469, -8.24625110626215 ], [ -78.978752136230469, -8.245695114135742 ], [ -78.979026794433537, -8.245695114135742 ], [ -78.979026794433537, -8.244860649108887 ], [ -78.979583740234318, -8.244860649108887 ], [ -78.979583740234318, -8.244304656982422 ], [ -78.979858398437443, -8.244304656982422 ], [ -78.979858398437443, -8.244027137756348 ], [ -78.980415344238281, -8.244029045104924 ], [ -78.980415344238281, -8.243748664855957 ], [ -78.980697631835938, -8.243748664855957 ], [ -78.980697631835938, -8.243194580078068 ], [ -78.980972290039062, -8.243194580078068 ], [ -78.980972290039062, -8.242917060851994 ], [ -78.981246948242188, -8.242917060851994 ], [ -78.981246948242188, -8.242638587951603 ], [ -78.981529235839844, -8.242638587951603 ], [ -78.981529235839844, -8.242082595825138 ], [ -78.981803894042969, -8.242082595825138 ], [ -78.981803894042969, -8.241805076599121 ], [ -78.982360839843693, -8.241805076599121 ], [ -78.982360839843693, -8.241248130798283 ], [ -78.982635498046818, -8.241250991821232 ], [ -78.982635498046818, -8.240973472595158 ], [ -78.983192443847656, -8.240973472595158 ], [ -78.983192443847656, -8.240692138671875 ], [ -78.982917785644474, -8.240694999694767 ], [ -78.982917785644474, -8.240416526794377 ], [ -78.983192443847656, -8.240416526794377 ], [ -78.983192443847656, -8.239859580993652 ], [ -78.983474731445312, -8.239859580993652 ], [ -78.983474731445312, -8.239582061767521 ], [ -78.983749389648438, -8.239582061767521 ], [ -78.983749389648438, -8.239307403564453 ], [ -78.984024047851562, -8.239307403564453 ], [ -78.984024047851562, -8.239026069641056 ], [ -78.984306335449219, -8.239026069641056 ], [ -78.984306335449219, -8.238470077514592 ], [ -78.984580993652344, -8.238471984863281 ], [ -78.984580993652344, -8.238194465637207 ], [ -78.98486328125, -8.238194465637207 ], [ -78.98486328125, -8.237915992736816 ], [ -78.985137939453011, -8.237915992736816 ], [ -78.985137939453011, -8.237638473510742 ], [ -78.985420227050724, -8.237638473510742 ], [ -78.985420227050724, -8.23708438873291 ], [ -78.985694885253849, -8.23708438873291 ], [ -78.985694885253849, -8.236804008483887 ], [ -78.985969543456974, -8.23680591583252 ], [ -78.985969543456974, -8.236528396606445 ], [ -78.986251831054631, -8.236528396606445 ], [ -78.986251831054631, -8.236248016357308 ], [ -78.986526489257812, -8.236249923706055 ], [ -78.986526489257812, -8.23569393157959 ], [ -78.986808776855469, -8.23569393157959 ], [ -78.986808776855469, -8.235416412353516 ], [ -78.987083435058594, -8.235416412353516 ], [ -78.987083435058594, -8.235137939453125 ], [ -78.987358093261719, -8.235137939453125 ], [ -78.987358093261719, -8.234862327575627 ], [ -78.9879150390625, -8.234862327575627 ], [ -78.9879150390625, -8.23458194732666 ], [ -78.988197326660156, -8.23458194732666 ], [ -78.988197326660156, -8.234306335449162 ], [ -78.988471984863224, -8.234306335449162 ], [ -78.988471984863224, -8.234027862548771 ], [ -78.989028930664006, -8.234027862548771 ], [ -78.989028930664006, -8.233750343322754 ], [ -78.989585876464787, -8.233750343322754 ], [ -78.989585876464787, -8.234027862548771 ], [ -78.989860534667969, -8.234027862548771 ], [ -78.989860534667969, -8.234306335449162 ], [ -78.990974426269531, -8.234306335449162 ], [ -78.990974426269531, -8.234027862548771 ], [ -78.991249084472656, -8.234027862548771 ], [ -78.991249084472656, -8.233750343322754 ], [ -78.991531372070312, -8.233750343322754 ], [ -78.991531372070312, -8.233194351196289 ], [ -78.991249084472656, -8.233194351196289 ], [ -78.991249084472656, -8.232915878295898 ], [ -78.990974426269531, -8.232915878295898 ], [ -78.990974426269531, -8.232359886169434 ], [ -78.990692138671875, -8.232359886169434 ], [ -78.990692138671875, -8.232084274291935 ], [ -78.990135192871094, -8.232084274291935 ], [ -78.990135192871094, -8.231805801391545 ], [ -78.989860534667969, -8.231805801391545 ], [ -78.989860534667969, -8.232084274291935 ], [ -78.989585876464787, -8.232084274291935 ], [ -78.989585876464787, -8.231805801391545 ], [ -78.989303588867131, -8.231805801391545 ], [ -78.989303588867131, -8.231528282165471 ], [ -78.989028930664006, -8.231528282165471 ], [ -78.989028930664006, -8.23124980926508 ], [ -78.988471984863224, -8.23124980926508 ], [ -78.988471984863224, -8.230972290039006 ], [ -78.988197326660156, -8.230972290039006 ], [ -78.988197326660156, -8.230693817138615 ], [ -78.9879150390625, -8.230693817138615 ], [ -78.9879150390625, -8.230416297912598 ], [ -78.987640380859375, -8.230416297912598 ], [ -78.987640380859375, -8.23013973236084 ], [ -78.987358093261719, -8.23013973236084 ], [ -78.987358093261719, -8.229860305786133 ], [ -78.987083435058594, -8.229862213134766 ], [ -78.987083435058594, -8.229583740234375 ], [ -78.987358093261719, -8.229583740234375 ], [ -78.987358093261719, -8.229303359985295 ], [ -78.987640380859375, -8.229303359985295 ], [ -78.987640380859375, -8.228750228881779 ], [ -78.9879150390625, -8.228750228881779 ], [ -78.9879150390625, -8.228471755981388 ], [ -78.988197326660156, -8.228471755981388 ], [ -78.988197326660156, -8.228194236755314 ], [ -78.988471984863224, -8.228194236755314 ], [ -78.988471984863224, -8.228471755981388 ], [ -78.988746643066349, -8.228471755981388 ], [ -78.988746643066349, -8.227917671203613 ], [ -78.989303588867131, -8.227917671203613 ], [ -78.989303588867131, -8.227637290954533 ], [ -78.989028930664006, -8.227637290954533 ], [ -78.989028930664006, -8.227081298828068 ], [ -78.989303588867131, -8.227084159851074 ], [ -78.989303588867131, -8.226805686950684 ], [ -78.989585876464787, -8.226805686950684 ], [ -78.989585876464787, -8.226527214050293 ], [ -78.99041748046875, -8.226527214050293 ], [ -78.99041748046875, -8.226248741149902 ], [ -78.990692138671875, -8.226248741149902 ], [ -78.990692138671875, -8.225695610046387 ], [ -78.990974426269531, -8.225695610046387 ], [ -78.990974426269531, -8.225138664245549 ], [ -78.990135192871094, -8.225138664245549 ], [ -78.990135192871094, -8.225695610046387 ], [ -78.989860534667969, -8.225695610046387 ], [ -78.989860534667969, -8.225971221923828 ], [ -78.989303588867131, -8.225971221923828 ], [ -78.989303588867131, -8.226248741149902 ], [ -78.989028930664006, -8.226248741149902 ], [ -78.989028930664006, -8.226527214050293 ], [ -78.988471984863224, -8.226527214050293 ], [ -78.988471984863224, -8.226805686950684 ], [ -78.9879150390625, -8.226805686950684 ], [ -78.9879150390625, -8.227084159851074 ], [ -78.987640380859375, -8.227081298828068 ], [ -78.987640380859375, -8.227361679077148 ], [ -78.987083435058594, -8.227361679077148 ], [ -78.987083435058594, -8.227640151977539 ], [ -78.985694885253849, -8.227640151977539 ], [ -78.985694885253849, -8.227361679077148 ], [ -78.985420227050724, -8.227361679077148 ], [ -78.985420227050724, -8.227081298828068 ], [ -78.985137939453011, -8.227084159851074 ], [ -78.985137939453011, -8.226805686950684 ], [ -78.98486328125, -8.226805686950684 ], [ -78.98486328125, -8.226527214050293 ], [ -78.984580993652344, -8.226527214050293 ], [ -78.984580993652344, -8.225971221923828 ], [ -78.984306335449219, -8.225971221923828 ], [ -78.984306335449219, -8.225138664245549 ], [ -78.984024047851562, -8.225138664245549 ], [ -78.984024047851562, -8.22430324554432 ], [ -78.983749389648438, -8.224305152893066 ], [ -78.983749389648438, -8.223472595214844 ], [ -78.983474731445312, -8.223472595214844 ], [ -78.983474731445312, -8.222639083862248 ], [ -78.983749389648438, -8.222639083862248 ], [ -78.983749389648438, -8.222083091735783 ], [ -78.984024047851562, -8.222083091735783 ], [ -78.984024047851562, -8.221248626708928 ], [ -78.984306335449219, -8.221248626708928 ], [ -78.984306335449219, -8.220694541931152 ], [ -78.984580993652344, -8.220694541931152 ], [ -78.984580993652344, -8.219861030578556 ], [ -78.98486328125, -8.219861030578556 ], [ -78.98486328125, -8.219305038452092 ], [ -78.985137939453011, -8.219305038452092 ], [ -78.985137939453011, -8.218473434448242 ], [ -78.985420227050724, -8.218473434448242 ], [ -78.985420227050724, -8.217917442321777 ], [ -78.985694885253849, -8.217917442321777 ], [ -78.985694885253849, -8.217361450195256 ], [ -78.985969543456974, -8.217361450195256 ], [ -78.985969543456974, -8.216805458068791 ], [ -78.986251831054631, -8.216805458068791 ], [ -78.986251831054631, -8.2165269851684 ], [ -78.986526489257812, -8.21652889251709 ], [ -78.986526489257812, -8.216251373291016 ], [ -78.987083435058594, -8.216251373291016 ], [ -78.987083435058594, -8.215970993041935 ], [ -78.987358093261719, -8.215972900390625 ], [ -78.987358093261719, -8.215695381164551 ], [ -78.987083435058594, -8.215695381164551 ], [ -78.987083435058594, -8.215139389038086 ], [ -78.986808776855469, -8.215139389038086 ], [ -78.986808776855469, -8.214860916137695 ], [ -78.986526489257812, -8.214860916137695 ], [ -78.986526489257812, -8.214583396911621 ], [ -78.986251831054631, -8.214583396911621 ], [ -78.986251831054631, -8.21402645111084 ], [ -78.985969543456974, -8.21402645111084 ], [ -78.985969543456974, -8.213750839233398 ], [ -78.986251831054631, -8.213750839233398 ], [ -78.986251831054631, -8.213473320007324 ], [ -78.986526489257812, -8.213473320007324 ], [ -78.986526489257812, -8.213194847106934 ], [ -78.986808776855469, -8.213194847106934 ], [ -78.986808776855469, -8.211804389953613 ], [ -78.987083435058594, -8.211804389953613 ], [ -78.987083435058594, -8.210971832275334 ], [ -78.987358093261719, -8.210971832275334 ], [ -78.987358093261719, -8.210730552673283 ], [ -78.987358093261719, -8.210415840148869 ], [ -78.987640380859375, -8.210415840148869 ], [ -78.987640380859375, -8.209859848022404 ], [ -78.9879150390625, -8.209859848022404 ], [ -78.9879150390625, -8.209305763244629 ], [ -78.988197326660156, -8.209305763244629 ], [ -78.988197326660156, -8.208749771118164 ], [ -78.988471984863224, -8.208749771118164 ], [ -78.988471984863224, -8.208193778991699 ], [ -78.988746643066349, -8.208193778991699 ], [ -78.988746643066349, -8.207916259765568 ], [ -78.989028930664006, -8.207916259765568 ], [ -78.989028930664006, -8.207637786865121 ], [ -78.989303588867131, -8.207637786865121 ], [ -78.989303588867131, -8.207360267639103 ], [ -78.989585876464787, -8.207362174987793 ], [ -78.989585876464787, -8.207083702087402 ], [ -78.989860534667969, -8.207083702087402 ], [ -78.989860534667969, -8.206804275512638 ], [ -78.990135192871094, -8.206806182861328 ], [ -78.990135192871094, -8.206527709960938 ], [ -78.99041748046875, -8.206527709960938 ], [ -78.99041748046875, -8.206248283386174 ], [ -78.990692138671875, -8.206250190734863 ], [ -78.990692138671875, -8.205971717834473 ], [ -78.990974426269531, -8.205971717834473 ], [ -78.990974426269531, -8.205694198608398 ], [ -78.991249084472656, -8.205694198608398 ], [ -78.991249084472656, -8.205415725708008 ], [ -78.991531372070312, -8.205415725708008 ], [ -78.991531372070312, -8.205140113830566 ], [ -78.991806030273381, -8.205140113830566 ], [ -78.991806030273381, -8.204859733581543 ], [ -78.992080688476506, -8.204859733581543 ], [ -78.992080688476506, -8.204584121704102 ], [ -78.992362976074162, -8.204584121704102 ], [ -78.992362976074162, -8.204305648803711 ], [ -78.992637634277287, -8.204305648803711 ], [ -78.992637634277287, -8.204028129577637 ], [ -78.992919921875, -8.204028129577637 ], [ -78.992919921875, -8.203749656677246 ], [ -78.993194580078125, -8.203749656677246 ], [ -78.993194580078125, -8.203469276428223 ], [ -78.99346923828125, -8.203472137451172 ], [ -78.99346923828125, -8.203193664550781 ], [ -78.993751525878906, -8.203193664550781 ], [ -78.993751525878906, -8.202916145324707 ], [ -78.994026184082031, -8.202918052673283 ], [ -78.994026184082031, -8.202637672424316 ], [ -78.994308471679688, -8.202637672424316 ], [ -78.994308471679688, -8.202360153198242 ], [ -78.994583129882812, -8.202362060546818 ], [ -78.994583129882812, -8.202083587646428 ], [ -78.995140075683537, -8.202083587646428 ], [ -78.995140075683537, -8.201803207397461 ], [ -78.995414733886662, -8.20180606842041 ], [ -78.995414733886662, -8.201527595519963 ], [ -78.995697021484318, -8.201527595519963 ], [ -78.995697021484318, -8.201250076293945 ], [ -78.9959716796875, -8.201250076293945 ], [ -78.9959716796875, -8.200971603393555 ], [ -78.996528625488281, -8.200971603393555 ], [ -78.996528625488281, -8.200693130493107 ], [ -78.996803283691406, -8.200693130493107 ], [ -78.996803283691406, -8.200418472289982 ], [ -78.997085571289062, -8.200418472289982 ], [ -78.997085571289062, -8.200137138366699 ], [ -78.997360229492188, -8.200139999389592 ], [ -78.997360229492188, -8.199861526489201 ], [ -78.997917175292855, -8.199861526489201 ], [ -78.997917175292855, -8.199581146240234 ], [ -78.998191833496037, -8.199584007263127 ], [ -78.998191833496037, -8.199304580688477 ], [ -78.998443603515625, -8.199290275573674 ], [ -78.998474121093693, -8.199027061462346 ], [ -78.998748779296818, -8.199027061462346 ], [ -78.998748779296818, -8.198748588562012 ], [ -78.999061584472543, -8.198748588562012 ], [ -78.999305725097656, -8.198748588562012 ], [ -78.999305725097656, -8.198531150817814 ], [ -78.999580383300781, -8.198471069335881 ], [ -78.999580383300781, -8.198196411132699 ], [ -78.999687194824219, -8.198196411132699 ], [ -78.999862670898438, -8.198196411132699 ], [ -78.999862670898438, -8.198040962219238 ], [ -78.999862670898438, -8.197915077209416 ], [ -79.000007629394474, -8.197915077209416 ], [ -79.000137329101562, -8.197915077209416 ], [ -79.000419616699219, -8.197916984558105 ], [ -79.000419616699219, -8.197639465332031 ], [ -79.000694274902344, -8.197639465332031 ], [ -79.000694274902344, -8.197311401367131 ], [ -79.000694274902344, -8.197083473205566 ], [ -79.000953674316349, -8.197083473205566 ], [ -79.000968933105355, -8.196805000305176 ], [ -79.001266479492188, -8.196805000305176 ], [ -79.001525878906193, -8.196805000305176 ], [ -79.001525878906193, -8.196526527404785 ], [ -79.001808166503849, -8.196526527404785 ], [ -79.001853942871094, -8.19629001617426 ], [ -79.002082824706974, -8.196249008178711 ], [ -79.002082824706974, -8.19597339630127 ], [ -79.002357482910156, -8.19597339630127 ], [ -79.002357482910156, -8.195804595947209 ], [ -79.002449035644531, -8.195693016052132 ], [ -79.002639770507812, -8.195693016052132 ], [ -79.002639770507812, -8.195417404174805 ], [ -79.002914428710938, -8.195417404174805 ], [ -79.002914428710938, -8.195248603820744 ], [ -79.002967834472599, -8.195184707641545 ], [ -79.003196716308594, -8.195138931274414 ], [ -79.003196716308594, -8.19486141204834 ], [ -79.003471374511719, -8.19486141204834 ], [ -79.003471374511719, -8.194695472717285 ], [ -79.003524780273381, -8.19462871551508 ], [ -79.003753662109375, -8.194582939147949 ], [ -79.003753662109375, -8.194305419921875 ], [ -79.0040283203125, -8.194305419921875 ], [ -79.0040283203125, -8.194138526916504 ], [ -79.004119873046875, -8.194026947021484 ], [ -79.004302978515568, -8.194026947021484 ], [ -79.004302978515568, -8.193846702575627 ], [ -79.004302978515568, -8.19347095489502 ], [ -79.004585266113224, -8.19347095489502 ], [ -79.004585266113224, -8.193195343017578 ], [ -79.004859924316349, -8.193195343017578 ], [ -79.004859924316349, -8.192916870117131 ], [ -79.005142211914006, -8.192916870117131 ], [ -79.005142211914006, -8.192639350891113 ], [ -79.005416870117131, -8.192639350891113 ], [ -79.005416870117131, -8.192360877990723 ], [ -79.005790710449219, -8.192360877990723 ], [ -79.005973815917969, -8.192360877990723 ], [ -79.005973815917969, -8.192083358764648 ], [ -79.00653076171875, -8.192083358764648 ], [ -79.00653076171875, -8.191804885864258 ], [ -79.006805419921875, -8.191804885864258 ], [ -79.006805419921875, -8.191527366638184 ], [ -79.007080078125, -8.191527366638184 ], [ -79.007080078125, -8.191078186035156 ], [ -79.007080078125, -8.190973281860295 ], [ -79.007186889648438, -8.190973281860295 ], [ -79.007362365722656, -8.190973281860295 ], [ -79.007362365722656, -8.190796852111816 ], [ -79.007362365722656, -8.190694808959904 ], [ -79.007637023925724, -8.190694808959904 ], [ -79.007637023925724, -8.190522193908691 ], [ -79.007637023925724, -8.19041728973383 ], [ -79.007743835449219, -8.19041728973383 ], [ -79.008193969726506, -8.19041728973383 ], [ -79.008193969726506, -8.189861297607422 ], [ -79.008468627929631, -8.189861297607422 ], [ -79.008468627929631, -8.189582824706974 ], [ -79.008750915527344, -8.189582824706974 ], [ -79.008750915527344, -8.189155578613281 ], [ -79.008750915527344, -8.189028739929199 ], [ -79.009025573730469, -8.189028739929199 ], [ -79.009025573730469, -8.188751220703068 ], [ -79.00958251953125, -8.188751220703068 ], [ -79.00958251953125, -8.188472747802734 ], [ -79.009864807128906, -8.188472747802734 ], [ -79.009864807128906, -8.188195228576603 ], [ -79.010414123535156, -8.188195228576603 ], [ -79.010414123535156, -8.187916755676213 ], [ -79.010696411132699, -8.187916755676213 ], [ -79.010696411132699, -8.187636375427246 ], [ -79.011253356933537, -8.187639236450138 ], [ -79.011253356933537, -8.187360763549748 ], [ -79.011528015136662, -8.187360763549748 ], [ -79.011528015136662, -8.186806678771973 ], [ -79.011802673339844, -8.186806678771973 ], [ -79.011802673339844, -8.186250686645508 ], [ -79.012359619140625, -8.186250686645508 ], [ -79.012359619140625, -8.185970306396428 ], [ -79.012641906738281, -8.185973167419434 ], [ -79.012641906738281, -8.185693740844727 ], [ -79.013191223144531, -8.185693740844727 ], [ -79.013191223144531, -8.185414314269963 ], [ -79.013473510742188, -8.185416221618652 ], [ -79.013473510742188, -8.185137748718262 ], [ -79.014030456542912, -8.185137748718262 ], [ -79.014030456542912, -8.184860229492188 ], [ -79.014862060546818, -8.184860229492188 ], [ -79.014862060546818, -8.184584617614746 ], [ -79.015693664550781, -8.184584617614746 ], [ -79.015693664550781, -8.184304237365723 ], [ -79.015975952148438, -8.184304237365723 ], [ -79.015975952148438, -8.184027671813908 ], [ -79.016250610351562, -8.184027671813908 ], [ -79.016250610351562, -8.183748245239144 ], [ -79.016525268554688, -8.183750152587891 ], [ -79.016525268554688, -8.183194160461426 ], [ -79.016807556152344, -8.183194160461426 ], [ -79.016807556152344, -8.182638168334961 ], [ -79.017082214355412, -8.182638168334961 ], [ -79.017082214355412, -8.182082176208496 ], [ -79.017364501953068, -8.182082176208496 ], [ -79.017364501953068, -8.181805610656681 ], [ -79.018470764160156, -8.181805610656681 ], [ -79.018470764160156, -8.181528091430607 ], [ -79.018753051757812, -8.181528091430607 ], [ -79.018753051757812, -8.180972099304142 ], [ -79.019027709960938, -8.180972099304142 ], [ -79.019027709960938, -8.179265022277832 ], [ -79.019027709960938, -8.179027557372933 ], [ -79.019302368164062, -8.179027557372933 ], [ -79.019302368164062, -8.178750038146916 ], [ -79.019584655761719, -8.178750038146916 ], [ -79.019584655761719, -8.178194046020451 ], [ -79.019859313964844, -8.178194046020451 ], [ -79.019859313964844, -8.17791557312006 ], [ -79.0201416015625, -8.17791557312006 ], [ -79.0201416015625, -8.177638053893986 ], [ -79.020690917968693, -8.177639961242676 ], [ -79.020690917968693, -8.177362442016602 ], [ -79.020973205566349, -8.177362442016602 ], [ -79.020973205566349, -8.177082061767578 ], [ -79.021530151367188, -8.177083969116211 ], [ -79.021530151367188, -8.17680644989008 ], [ -79.021804809570312, -8.17680644989008 ], [ -79.021804809570312, -8.176527976989746 ], [ -79.022087097167969, -8.176527976989746 ], [ -79.022087097167969, -8.176250457763615 ], [ -79.022377014160156, -8.176250457763615 ], [ -79.022636413574219, -8.176250457763615 ], [ -79.022636413574219, -8.175975799560433 ], [ -79.022918701171875, -8.175971984863224 ], [ -79.022918701171875, -8.17569446563715 ], [ -79.023475646972543, -8.17569446563715 ], [ -79.023475646972543, -8.17541599273676 ], [ -79.024024963378849, -8.175417900085449 ], [ -79.024024963378849, -8.175138473510685 ], [ -79.024581909179688, -8.175138473510685 ], [ -79.024581909179688, -8.174859046936035 ], [ -79.025138854980469, -8.174861907958984 ], [ -79.025138854980469, -8.174028396606445 ], [ -79.025970458984375, -8.174028396606445 ], [ -79.025970458984375, -8.173749923706055 ], [ -79.026252746582031, -8.173749923706055 ], [ -79.026252746582031, -8.173471450805664 ], [ -79.026527404785043, -8.173471450805664 ], [ -79.026527404785043, -8.173195838928223 ], [ -79.026802062988224, -8.173195838928223 ], [ -79.026802062988224, -8.172362327575684 ], [ -79.027084350585881, -8.172362327575684 ], [ -79.027084350585881, -8.171805381774902 ], [ -79.027359008789006, -8.171805381774902 ], [ -79.027359008789006, -8.171526908874512 ], [ -79.027915954589844, -8.171526908874512 ], [ -79.027915954589844, -8.171249389648438 ], [ -79.028190612792969, -8.171249389648438 ], [ -79.0281982421875, -8.170970916748047 ], [ -79.02874755859375, -8.170970916748047 ], [ -79.02874755859375, -8.170695304870549 ], [ -79.029029846191406, -8.170695304870549 ], [ -79.029029846191406, -8.170416831970158 ], [ -79.029304504394531, -8.170416831970158 ], [ -79.029304504394531, -8.170139312744084 ], [ -79.029586791992188, -8.170139312744084 ], [ -79.029586791992188, -8.169860839843693 ], [ -79.030136108398381, -8.169860839843693 ], [ -79.030136108398381, -8.169583320617619 ], [ -79.030418395996037, -8.169583320617619 ], [ -79.030418395996037, -8.169304847717228 ], [ -79.030693054199162, -8.169304847717228 ], [ -79.030693054199162, -8.169027328491154 ], [ -79.030975341796818, -8.169027328491154 ], [ -79.030975341796818, -8.168748855590763 ], [ -79.031524658203125, -8.168748855590763 ], [ -79.031524658203125, -8.168473243713379 ], [ -79.031806945800781, -8.168473243713379 ], [ -79.031806945800781, -8.168194770812988 ], [ -79.032081604003906, -8.168194770812988 ], [ -79.032081604003906, -8.1679172515868 ], [ -79.033752441406193, -8.1679172515868 ], [ -79.033752441406193, -8.167638778686523 ], [ -79.034027099609318, -8.167638778686523 ], [ -79.034027099609318, -8.167361259460392 ], [ -79.0343017578125, -8.167361259460392 ], [ -79.0343017578125, -8.166805267333928 ], [ -79.034584045410156, -8.166805267333928 ], [ -79.034584045410156, -8.166526794433537 ], [ -79.034858703613281, -8.166526794433537 ], [ -79.034858703613281, -8.166249275207463 ], [ -79.035140991210938, -8.166251182556152 ], [ -79.035140991210938, -8.165970802307072 ], [ -79.035415649414062, -8.165970802307072 ], [ -79.035415649414062, -8.165416717529297 ], [ -79.035697937011719, -8.165416717529297 ], [ -79.035697937011719, -8.165139198303223 ], [ -79.035972595214844, -8.165139198303223 ], [ -79.035972595214844, -8.164860725402832 ], [ -79.036529541015568, -8.164860725402832 ], [ -79.036529541015568, -8.164583206176758 ], [ -79.036804199218693, -8.164583206176758 ], [ -79.036804199218693, -8.164304733276367 ], [ -79.037361145019531, -8.164304733276367 ], [ -79.037361145019531, -8.164029121398926 ], [ -79.037635803222656, -8.164029121398926 ], [ -79.037635803222656, -8.163471221923771 ], [ -79.037918090820312, -8.163471221923771 ], [ -79.037918090820312, -8.162915229797306 ], [ -79.038749694824219, -8.162915229797306 ], [ -79.03875732421875, -8.162638664245605 ], [ -79.039306640624886, -8.162638664245605 ], [ -79.039306640624886, -8.162358283996525 ], [ -79.039581298828068, -8.162361145019531 ], [ -79.039581298828068, -8.162082672119141 ], [ -79.039863586425724, -8.162082672119141 ], [ -79.039863586425724, -8.16180229187006 ], [ -79.040138244628849, -8.161805152893066 ], [ -79.040138244628849, -8.161526679992676 ], [ -79.040412902832031, -8.161526679992676 ], [ -79.040412902832031, -8.161248207092285 ], [ -79.040695190429688, -8.161251068115234 ], [ -79.040695190429688, -8.160972595214787 ], [ -79.040969848632812, -8.160972595214787 ], [ -79.040969848632812, -8.16069221496582 ], [ -79.041252136230469, -8.16069507598877 ], [ -79.041252136230469, -8.160416603088379 ], [ -79.041526794433594, -8.160416603088379 ], [ -79.041526794433594, -8.160139083862305 ], [ -79.04180908203125, -8.160139083862305 ], [ -79.04180908203125, -8.159859657287541 ], [ -79.042083740234375, -8.159859657287541 ], [ -79.042083740234375, -8.159582138061523 ], [ -79.042358398437386, -8.159582138061523 ], [ -79.042358398437386, -8.159306526184025 ], [ -79.042640686035099, -8.159306526184025 ], [ -79.042640686035099, -8.159026145935059 ], [ -79.042915344238224, -8.159029006957951 ], [ -79.042915344238224, -8.15875053405756 ], [ -79.043197631835881, -8.15875053405756 ], [ -79.043197631835881, -8.158470153808594 ], [ -79.043472290039006, -8.15847206115717 ], [ -79.043472290039006, -8.158193588256836 ], [ -79.043746948242188, -8.158193588256836 ], [ -79.043746948242188, -8.157916069030705 ], [ -79.044029235839844, -8.157916069030705 ], [ -79.044029235839844, -8.157637596130314 ], [ -79.044303894042969, -8.157637596130314 ], [ -79.044303894042969, -8.15736007690424 ], [ -79.044586181640625, -8.15736007690424 ], [ -79.044586181640625, -8.157084465026855 ], [ -79.04486083984375, -8.157084465026855 ], [ -79.04486083984375, -8.156804084777775 ], [ -79.045135498046875, -8.156805992126465 ], [ -79.045135498046875, -8.156528472900391 ], [ -79.045417785644531, -8.156528472900391 ], [ -79.045417785644531, -8.15624809265131 ], [ -79.045692443847599, -8.15625 ], [ -79.045692443847599, -8.155971527099609 ], [ -79.045974731445256, -8.155971527099609 ], [ -79.045974731445256, -8.155692100524902 ], [ -79.046249389648381, -8.155692100524902 ], [ -79.046249389648381, -8.155138015746957 ], [ -79.046524047851506, -8.155138015746957 ], [ -79.046524047851506, -8.154862403869629 ], [ -79.046806335449162, -8.154862403869629 ], [ -79.046806335449162, -8.154582023620549 ], [ -79.047080993652344, -8.154582023620549 ], [ -79.047080993652344, -8.154306411743164 ], [ -79.04736328125, -8.154306411743164 ], [ -79.04736328125, -8.154026031494084 ], [ -79.047637939453125, -8.154027938842773 ], [ -79.047637939453125, -8.153750419616699 ], [ -79.048194885253906, -8.153750419616699 ], [ -79.048194885253906, -8.153471946716309 ], [ -79.048469543457031, -8.153471946716309 ], [ -79.048469543457031, -8.153194427490234 ], [ -79.049026489257756, -8.153194427490234 ], [ -79.049026489257756, -8.152915954589844 ], [ -79.049308776855412, -8.152915954589844 ], [ -79.049308776855412, -8.15263843536377 ], [ -79.049583435058537, -8.15263843536377 ], [ -79.049583435058537, -8.152084350585938 ], [ -79.049858093261662, -8.152084350585938 ], [ -79.049858093261662, -8.151528358459473 ], [ -79.050140380859375, -8.151528358459473 ], [ -79.050140380859375, -8.151249885559082 ], [ -79.050697326660156, -8.151249885559082 ], [ -79.050697326660156, -8.150972366333008 ], [ -79.050971984863281, -8.150972366333008 ], [ -79.050971984863281, -8.150693893432617 ], [ -79.051528930664062, -8.150693893432617 ], [ -79.051528930664062, -8.150416374206543 ], [ -79.05208587646473, -8.150416374206543 ], [ -79.05208587646473, -8.150139808654728 ], [ -79.052635192871037, -8.150139808654728 ], [ -79.052635192871037, -8.149862289428654 ], [ -79.052917480468693, -8.149862289428654 ], [ -79.052917480468693, -8.149583816528263 ], [ -79.053474426269531, -8.149583816528263 ], [ -79.053474426269531, -8.148194313049316 ], [ -79.054031372070312, -8.148194313049316 ], [ -79.054031372070312, -8.147917747497559 ], [ -79.054306030273438, -8.147917747497559 ], [ -79.054306030273438, -8.147640228271428 ], [ -79.054862976074219, -8.147640228271428 ], [ -79.054862976074219, -8.147361755371037 ], [ -79.05513763427723, -8.147361755371037 ], [ -79.05513763427723, -8.14708137512207 ], [ -79.055694580078068, -8.147084236144963 ], [ -79.055694580078068, -8.146805763244572 ], [ -79.056251525878849, -8.146805763244572 ], [ -79.056251525878849, -8.146528244018498 ], [ -79.056808471679688, -8.146528244018498 ], [ -79.056808471679688, -8.146248817443848 ], [ -79.057640075683594, -8.146248817443848 ], [ -79.057640075683594, -8.145971298217717 ], [ -79.058197021484375, -8.145971298217717 ], [ -79.058197021484375, -8.145695686340332 ], [ -79.059028625488224, -8.145695686340332 ], [ -79.059028625488224, -8.145415306091252 ], [ -79.059860229492188, -8.145415306091252 ], [ -79.059860229492188, -8.145139694213867 ], [ -79.060417175292969, -8.145139694213867 ], [ -79.060417175292969, -8.144859313964787 ], [ -79.060691833496094, -8.144861221313477 ], [ -79.060691833496094, -8.144582748413086 ], [ -79.06097412109375, -8.144582748413086 ], [ -79.06097412109375, -8.144026756286621 ], [ -79.061248779296875, -8.144026756286621 ], [ -79.061248779296875, -8.143472671508732 ], [ -79.06097412109375, -8.143472671508732 ], [ -79.06097412109375, -8.14263916015625 ], [ -79.061248779296875, -8.14263916015625 ], [ -79.061248779296875, -8.142360687255859 ], [ -79.061805725097599, -8.142360687255859 ], [ -79.061805725097599, -8.142083168029785 ], [ -79.062080383300724, -8.142083168029785 ], [ -79.062080383300724, -8.141804695129395 ], [ -79.062362670898381, -8.141804695129395 ], [ -79.062362670898381, -8.14152717590332 ], [ -79.063468933105469, -8.14152717590332 ], [ -79.063468933105469, -8.14124870300293 ], [ -79.064308166503906, -8.14124870300293 ], [ -79.064308166503906, -8.140971183776855 ], [ -79.064857482910099, -8.140973091125431 ], [ -79.064857482910099, -8.140694618225041 ], [ -79.065139770507756, -8.140694618225041 ], [ -79.065139770507756, -8.140417098998967 ], [ -79.065696716308537, -8.140417098998967 ], [ -79.065696716308537, -8.140138626098576 ], [ -79.065971374511719, -8.140138626098576 ], [ -79.065971374511719, -8.139861106872559 ], [ -79.066253662109375, -8.139861106872559 ], [ -79.066253662109375, -8.139582633972111 ], [ -79.066802978515625, -8.139582633972111 ], [ -79.066802978515625, -8.139305114746094 ], [ -79.067085266113281, -8.139305114746094 ], [ -79.067085266113281, -8.139026641845703 ], [ -79.067359924316406, -8.139026641845703 ], [ -79.067359924316406, -8.138749122619629 ], [ -79.069030761718693, -8.138751029968205 ], [ -79.069030761718693, -8.138472557067757 ], [ -79.069305419921875, -8.138472557067757 ], [ -79.069305419921875, -8.138193130493164 ], [ -79.069580078125, -8.13819503784174 ], [ -79.069580078125, -8.137916564941349 ], [ -79.069862365722656, -8.137916564941349 ], [ -79.069862365722656, -8.137360572814885 ], [ -79.070137023925781, -8.137360572814885 ], [ -79.070137023925781, -8.13680458068842 ], [ -79.070419311523438, -8.13680458068842 ], [ -79.070419311523438, -8.136248588561955 ], [ -79.071250915527287, -8.136248588561955 ], [ -79.071250915527287, -8.135971069335938 ], [ -79.071525573730412, -8.13597297668457 ], [ -79.071525573730412, -8.135695457458439 ], [ -79.071807861328068, -8.135695457458439 ], [ -79.071807861328068, -8.135416984558049 ], [ -79.072364807128849, -8.135416984558049 ], [ -79.072364807128849, -8.135139465331974 ], [ -79.072639465332031, -8.135139465331974 ], [ -79.072639465332031, -8.134860992431584 ], [ -79.072914123535156, -8.134860992431584 ], [ -79.072914123535156, -8.13458347320551 ], [ -79.073196411132812, -8.13458347320551 ], [ -79.073196411132812, -8.134025573730469 ], [ -79.073471069335938, -8.134025573730469 ], [ -79.073471069335938, -8.133192062377873 ], [ -79.073753356933594, -8.133194923400879 ], [ -79.073753356933594, -8.132360458374023 ], [ -79.074028015136719, -8.132360458374023 ], [ -79.074028015136719, -8.131889343261662 ], [ -79.074028015136719, -8.131804466247559 ], [ -79.074859619140568, -8.131804466247559 ], [ -79.074859619140568, -8.131525993347168 ], [ -79.075416564941349, -8.131528854370117 ], [ -79.075416564941349, -8.131250381469727 ], [ -79.075691223144531, -8.131250381469727 ], [ -79.075691223144531, -8.130970001220703 ], [ -79.076248168945312, -8.130971908569336 ], [ -79.076248168945312, -8.130694389343262 ], [ -79.076530456542969, -8.130694389343262 ], [ -79.076530456542969, -8.130415916442871 ], [ -79.076805114746094, -8.130415916442871 ], [ -79.076805114746094, -8.130138397216797 ], [ -79.077362060546875, -8.130138397216797 ], [ -79.077362060546875, -8.129859924316406 ], [ -79.077636718749943, -8.129859924316406 ], [ -79.077636718749943, -8.129584312438908 ], [ -79.079582214355469, -8.129584312438908 ], [ -79.079582214355469, -8.129305839538517 ], [ -79.079864501953125, -8.129305839538517 ], [ -79.079864501953125, -8.128749847412053 ], [ -79.08013916015625, -8.128749847412053 ], [ -79.08013916015625, -8.128193855285588 ], [ -79.080413818359375, -8.128193855285588 ], [ -79.080413818359375, -8.127637863159123 ], [ -79.080696105956918, -8.127637863159123 ], [ -79.080696105956918, -8.127083778381348 ], [ -79.080970764160099, -8.127083778381348 ], [ -79.080970764160099, -8.126527786254769 ], [ -79.081802368164062, -8.126527786254769 ], [ -79.081802368164062, -8.126250267028752 ], [ -79.082359313964844, -8.126250267028752 ], [ -79.082359313964844, -8.125971794128361 ], [ -79.08319091796875, -8.125971794128361 ], [ -79.08319091796875, -8.125694274902287 ], [ -79.083747863769418, -8.125694274902287 ], [ -79.083747863769418, -8.125415802001896 ], [ -79.084304809570256, -8.125415802001896 ], [ -79.084304809570256, -8.125138282775822 ], [ -79.085136413574219, -8.125140190124512 ], [ -79.085136413574219, -8.124859809875431 ], [ -79.085693359375, -8.124859809875431 ], [ -79.085693359375, -8.124584197998047 ], [ -79.086250305175781, -8.124584197998047 ], [ -79.086250305175781, -8.124305725097656 ], [ -79.086524963378906, -8.124305725097656 ], [ -79.086524963378906, -8.123749732971191 ], [ -79.086807250976562, -8.123749732971191 ], [ -79.086807250976562, -8.12347221374506 ], [ -79.087081909179631, -8.12347412109375 ], [ -79.087081909179631, -8.122916221618596 ], [ -79.087364196777287, -8.122916221618596 ], [ -79.087364196777287, -8.122637748718205 ], [ -79.088195800781193, -8.122637748718205 ], [ -79.088195800781193, -8.122360229492131 ], [ -79.088752746582031, -8.12236213684082 ], [ -79.088752746582031, -8.12208366394043 ], [ -79.089027404785156, -8.12208366394043 ], [ -79.089027404785156, -8.121803283691349 ], [ -79.089302062988281, -8.121806144714355 ], [ -79.089302062988281, -8.121527671813965 ], [ -79.089584350585938, -8.121527671813965 ], [ -79.089584350585938, -8.1209716796875 ], [ -79.089859008789062, -8.1209716796875 ], [ -79.089859008789062, -8.120694160461426 ], [ -79.090141296386719, -8.120694160461426 ], [ -79.090141296386719, -8.120417594909611 ], [ -79.090690612792912, -8.120417594909611 ], [ -79.090698242187443, -8.120137214660645 ], [ -79.090972900390568, -8.120140075683594 ], [ -79.090972900390568, -8.119861602783203 ], [ -79.091529846191406, -8.119861602783203 ], [ -79.091529846191406, -8.11958122253418 ], [ -79.091804504394531, -8.119584083557129 ], [ -79.091804504394531, -8.119305610656738 ], [ -79.093193054199219, -8.119305610656738 ], [ -79.093193054199219, -8.1187486648559 ], [ -79.093475341796761, -8.1187486648559 ], [ -79.093475341796761, -8.118195533752385 ], [ -79.09375, -8.118195533752385 ], [ -79.09375, -8.117359161376953 ], [ -79.094024658203068, -8.117359161376953 ], [ -79.094024658203068, -8.116805076599064 ], [ -79.094306945800724, -8.116805076599064 ], [ -79.094306945800724, -8.116526603698674 ], [ -79.094581604003906, -8.116526603698674 ], [ -79.094581604003906, -8.116249084472599 ], [ -79.094863891601562, -8.116249084472599 ], [ -79.094863891601562, -8.115973472595215 ], [ -79.095138549804688, -8.115973472595215 ], [ -79.095138549804688, -8.115416526794434 ], [ -79.095413208007812, -8.115416526794434 ], [ -79.095413208007812, -8.115137100219727 ], [ -79.095695495605469, -8.115139007568359 ], [ -79.095695495605469, -8.114860534667969 ], [ -79.095970153808594, -8.114860534667969 ], [ -79.095970153808594, -8.114583015441781 ], [ -79.09625244140625, -8.114583015441781 ], [ -79.09625244140625, -8.114304542541504 ], [ -79.096801757812443, -8.114304542541504 ], [ -79.096801757812443, -8.114027023315373 ], [ -79.097640991210881, -8.114027023315373 ], [ -79.097640991210881, -8.113751411437988 ], [ -79.097915649414062, -8.113748550414925 ], [ -79.097915649414062, -8.113471031188908 ], [ -79.098472595214844, -8.113471031188908 ], [ -79.098472595214844, -8.113195419311523 ], [ -79.098747253417969, -8.113195419311523 ], [ -79.098747253417969, -8.112916946411133 ], [ -79.099029541015625, -8.112916946411133 ], [ -79.099029541015625, -8.112360954284668 ], [ -79.09930419921875, -8.112360954284668 ], [ -79.09930419921875, -8.111804962158203 ], [ -79.099586486816406, -8.111804962158203 ], [ -79.099586486816406, -8.111248970031738 ], [ -79.100692749023381, -8.111250877380371 ], [ -79.100692749023381, -8.110973358154297 ], [ -79.101249694824219, -8.110973358154297 ], [ -79.101249694824219, -8.110694885253906 ], [ -79.101806640625, -8.110694885253906 ], [ -79.101806640625, -8.110417366027832 ], [ -79.102081298828125, -8.110417366027832 ], [ -79.102081298828125, -8.110138893127441 ], [ -79.102363586425781, -8.110138893127441 ], [ -79.102363586425781, -8.109861373901367 ], [ -79.102912902831974, -8.109861373901367 ], [ -79.102912902831974, -8.109582901000977 ], [ -79.103195190429631, -8.109582901000977 ], [ -79.103195190429631, -8.109305381774902 ], [ -79.103469848632756, -8.109305381774902 ], [ -79.103469848632756, -8.109028816223088 ], [ -79.103752136230412, -8.109028816223088 ], [ -79.103752136230412, -8.10875129699707 ], [ -79.104026794433537, -8.10875129699707 ], [ -79.104026794433537, -8.108472824096623 ], [ -79.105415344238281, -8.108472824096623 ], [ -79.105415344238281, -8.108195304870605 ], [ -79.105697631835938, -8.108195304870605 ], [ -79.105697631835938, -8.107639312744141 ], [ -79.105972290039062, -8.107639312744141 ], [ -79.105972290039062, -8.107083320617676 ], [ -79.106246948242131, -8.107083320617676 ], [ -79.106246948242131, -8.106526374816895 ], [ -79.106529235839787, -8.106526374816895 ], [ -79.106529235839787, -8.105973243713322 ], [ -79.106803894042912, -8.105973243713322 ], [ -79.106803894042912, -8.105694770812931 ], [ -79.10736083984375, -8.105694770812931 ], [ -79.10736083984375, -8.105416297912541 ], [ -79.107635498046875, -8.105416297912541 ], [ -79.107635498046875, -8.10513782501215 ], [ -79.108192443847656, -8.10513782501215 ], [ -79.108192443847656, -8.104860305786076 ], [ -79.108474731445312, -8.104860305786076 ], [ -79.108474731445312, -8.104584693908691 ], [ -79.109024047851562, -8.104584693908691 ], [ -79.109024047851562, -8.104304313659611 ], [ -79.109306335449105, -8.104304313659611 ], [ -79.109306335449105, -8.10402774810791 ], [ -79.109863281249943, -8.10402774810791 ], [ -79.109863281249943, -8.103748321533146 ], [ -79.110137939453068, -8.103750228881836 ], [ -79.110137939453068, -8.103471755981445 ], [ -79.110694885253906, -8.103471755981445 ], [ -79.110694885253906, -8.103194236755371 ], [ -79.110969543457031, -8.103194236755371 ], [ -79.110969543457031, -8.10291576385498 ], [ -79.111526489257812, -8.10291576385498 ], [ -79.111526489257812, -8.102638244628793 ], [ -79.111808776855469, -8.102638244628793 ], [ -79.111808776855469, -8.102359771728516 ], [ -79.112083435058594, -8.102359771728516 ], [ -79.112083435058594, -8.102082252502385 ], [ -79.112358093261605, -8.102082252502385 ], [ -79.112358093261605, -8.101805686950684 ], [ -79.112915039062443, -8.101805686950684 ], [ -79.112915039062443, -8.101528167724609 ], [ -79.113197326660099, -8.101528167724609 ], [ -79.113197326660099, -8.101249694824219 ], [ -79.113471984863224, -8.101249694824219 ], [ -79.113471984863224, -8.100972175598145 ], [ -79.113746643066406, -8.100972175598145 ], [ -79.113746643066406, -8.100693702697754 ], [ -79.114028930664062, -8.100693702697754 ], [ -79.114028930664062, -8.10041618347168 ], [ -79.114585876464844, -8.10041618347168 ], [ -79.114585876464844, -8.100137710571289 ], [ -79.114860534667969, -8.100137710571289 ], [ -79.114860534667969, -8.099860191345215 ], [ -79.115135192871094, -8.099862098693791 ], [ -79.115135192871094, -8.0995836257934 ], [ -79.11541748046875, -8.0995836257934 ], [ -79.11541748046875, -8.099306106567383 ], [ -79.117637634277344, -8.099306106567383 ], [ -79.117637634277344, -8.097915649414062 ], [ -79.118194580078125, -8.097915649414062 ], [ -79.118194580078125, -8.097638130187988 ], [ -79.11846923828125, -8.097640037536564 ], [ -79.11846923828125, -8.097361564636174 ], [ -79.118751525878906, -8.097359657287598 ], [ -79.118751525878906, -8.096805572509709 ], [ -79.119026184081974, -8.096805572509709 ], [ -79.119026184081974, -8.096249580383244 ], [ -79.119308471679631, -8.096249580383244 ], [ -79.119308471679631, -8.095693588256779 ], [ -79.119583129882756, -8.095693588256779 ], [ -79.119583129882756, -8.095137596130371 ], [ -79.119857788085881, -8.095137596130371 ], [ -79.119857788085881, -8.094584465026799 ], [ -79.120414733886719, -8.094584465026799 ], [ -79.120414733886719, -8.094305992126408 ], [ -79.1209716796875, -8.094305992126408 ], [ -79.1209716796875, -8.094028472900334 ], [ -79.121246337890625, -8.094028472900334 ], [ -79.121246337890625, -8.09375 ], [ -79.121803283691406, -8.09375 ], [ -79.121803283691406, -8.093471527099553 ], [ -79.122360229492131, -8.093471527099553 ], [ -79.122360229492131, -8.093193054199162 ], [ -79.123191833496094, -8.093193054199162 ], [ -79.123191833496094, -8.092914581298828 ], [ -79.123748779296875, -8.092914581298828 ], [ -79.123748779296875, -8.092637062072697 ], [ -79.124031066894531, -8.092639923095703 ], [ -79.124031066894531, -8.092362403869515 ], [ -79.124305725097656, -8.092362403869515 ], [ -79.124305725097656, -8.092081069946232 ], [ -79.124580383300781, -8.092081069946232 ], [ -79.124580383300781, -8.091526985168457 ], [ -79.124862670898438, -8.091526985168457 ], [ -79.124862670898438, -8.091249465942383 ], [ -79.125137329101449, -8.091249465942383 ], [ -79.125137329101449, -8.090696334838867 ], [ -79.125419616699162, -8.090696334838867 ], [ -79.125419616699162, -8.089583396911621 ], [ -79.125694274902287, -8.089583396911621 ], [ -79.125694274902287, -8.088748931884766 ], [ -79.125419616699162, -8.088748931884766 ], [ -79.125419616699162, -8.087638854980412 ], [ -79.125137329101449, -8.087638854980412 ], [ -79.125137329101449, -8.086526870727539 ], [ -79.124862670898438, -8.086526870727539 ], [ -79.124862670898438, -8.084583282470646 ], [ -79.125137329101449, -8.084583282470646 ], [ -79.125137329101449, -8.082638740539551 ], [ -79.124862670898438, -8.082638740539551 ], [ -79.124862670898438, -8.081805229186955 ], [ -79.124580383300781, -8.081805229186955 ], [ -79.124580383300781, -8.08124923706049 ], [ -79.124305725097656, -8.08125114440918 ], [ -79.124305725097656, -8.080416679382324 ], [ -79.124031066894531, -8.080416679382324 ], [ -79.124031066894531, -8.079860687255859 ], [ -79.123748779296875, -8.079860687255859 ], [ -79.123748779296875, -8.079306602478027 ], [ -79.12347412109375, -8.079306602478027 ], [ -79.12347412109375, -8.079026222229004 ], [ -79.123191833496094, -8.079029083251953 ], [ -79.123191833496094, -8.078750610351562 ], [ -79.122917175292912, -8.078750610351562 ], [ -79.122917175292912, -8.078193664550724 ], [ -79.120414733886719, -8.078193664550724 ], [ -79.120414733886719, -8.077637672424316 ], [ -79.120140075683594, -8.077637672424316 ], [ -79.120140075683594, -8.077360153198242 ], [ -79.119857788085881, -8.077360153198242 ], [ -79.119857788085881, -8.076804161071777 ], [ -79.119583129882756, -8.076804161071777 ], [ -79.119583129882756, -8.075971603393498 ], [ -79.119857788085881, -8.075971603393498 ], [ -79.119857788085881, -8.075415611267033 ], [ -79.120140075683594, -8.075415611267033 ], [ -79.120140075683594, -8.074582099914551 ], [ -79.120414733886719, -8.074582099914551 ], [ -79.120414733886719, -8.074026107788086 ], [ -79.120697021484375, -8.074026107788086 ], [ -79.120697021484375, -8.073472023010197 ], [ -79.1209716796875, -8.073472023010197 ], [ -79.1209716796875, -8.07319355010975 ], [ -79.121246337890625, -8.07319355010975 ], [ -79.121246337890625, -8.072637557983342 ], [ -79.121528625488281, -8.072637557983342 ], [ -79.121528625488281, -8.072360038757267 ], [ -79.121803283691406, -8.072360038757267 ], [ -79.121803283691406, -8.071805953979492 ], [ -79.122085571288949, -8.071805953979492 ], [ -79.122085571288949, -8.071528434753418 ], [ -79.122360229492131, -8.071528434753418 ], [ -79.122360229492131, -8.070972442626896 ], [ -79.122642517089787, -8.070972442626896 ], [ -79.122642517089787, -8.070693969726562 ], [ -79.122917175292912, -8.070693969726562 ], [ -79.122917175292912, -8.070416450500431 ], [ -79.12347412109375, -8.070416450500431 ], [ -79.12347412109375, -8.070137977600041 ], [ -79.123748779296875, -8.07013988494873 ], [ -79.123748779296875, -8.069862365722656 ], [ -79.124031066894531, -8.069862365722656 ], [ -79.124031066894531, -8.069581985473576 ], [ -79.124305725097656, -8.069583892822266 ], [ -79.124305725097656, -8.069306373596191 ], [ -79.124862670898438, -8.069306373596191 ], [ -79.124862670898438, -8.069027900695801 ], [ -79.125137329101449, -8.069027900695801 ], [ -79.125137329101449, -8.065971374511719 ], [ -79.128471374511662, -8.065971374511719 ], [ -79.128471374511662, -8.065695762634221 ], [ -79.128753662109318, -8.065695762634221 ], [ -79.128753662109318, -8.065139770507756 ], [ -79.129028320312443, -8.065139770507756 ], [ -79.129028320312443, -8.064582824706974 ], [ -79.129302978515568, -8.064582824706974 ], [ -79.129302978515568, -8.06402683258051 ], [ -79.129585266113224, -8.06402683258051 ], [ -79.129585266113224, -8.063749313354435 ], [ -79.129859924316406, -8.063749313354435 ], [ -79.129859924316406, -8.063193321227971 ], [ -79.130142211914062, -8.063193321227971 ], [ -79.130142211914062, -8.062639236450195 ], [ -79.130416870117188, -8.062639236450195 ], [ -79.130416870117188, -8.062083244323617 ], [ -79.130691528320312, -8.062083244323617 ], [ -79.130691528320312, -8.061527252197209 ], [ -79.130973815917969, -8.061527252197209 ], [ -79.130973815917969, -8.061248779296761 ], [ -79.131805419921818, -8.061248779296761 ], [ -79.131805419921818, -8.060971260070744 ], [ -79.132637023925724, -8.060971260070744 ], [ -79.132637023925724, -8.060415267944279 ], [ -79.132919311523438, -8.060415267944279 ], [ -79.132919311523438, -8.059859275817814 ], [ -79.133193969726562, -8.059859275817814 ], [ -79.133193969726562, -8.059303283691406 ], [ -79.133750915527344, -8.059305191040039 ], [ -79.133750915527344, -8.059026718139648 ], [ -79.13458251953125, -8.059026718139648 ], [ -79.13458251953125, -8.058751106262207 ], [ -79.135139465331974, -8.058751106262207 ], [ -79.135139465331974, -8.05847263336176 ], [ -79.135696411132756, -8.05847263336176 ], [ -79.135696411132756, -8.058195114135742 ], [ -79.135971069335938, -8.058195114135742 ], [ -79.135971069335938, -8.057916641235352 ], [ -79.136253356933594, -8.057916641235352 ], [ -79.136253356933594, -8.057639122009277 ], [ -79.136528015136719, -8.057639122009277 ], [ -79.136528015136719, -8.057360649108887 ], [ -79.1370849609375, -8.057360649108887 ], [ -79.1370849609375, -8.057081222534123 ], [ -79.137359619140625, -8.057083129882812 ], [ -79.137359619140625, -8.056804656982422 ], [ -79.137641906738281, -8.056804656982422 ], [ -79.137641906738281, -8.056527137756348 ], [ -79.137916564941293, -8.056529045104924 ], [ -79.137916564941293, -8.056248664855957 ], [ -79.138191223144474, -8.056248664855957 ], [ -79.138191223144474, -8.055971145629883 ], [ -79.138473510742131, -8.055973052978459 ], [ -79.138473510742131, -8.055694580078068 ], [ -79.138748168945256, -8.055694580078068 ], [ -79.138748168945256, -8.055417060852051 ], [ -79.139030456542912, -8.055417060852051 ], [ -79.139030456542912, -8.055138587951603 ], [ -79.139305114746094, -8.055138587951603 ], [ -79.139305114746094, -8.054861068725586 ], [ -79.139579772949219, -8.054861068725586 ], [ -79.139579772949219, -8.054582595825195 ], [ -79.14013671875, -8.054582595825195 ], [ -79.14013671875, -8.054305076599121 ], [ -79.140419006347656, -8.054305076599121 ], [ -79.140419006347656, -8.05402660369873 ], [ -79.140693664550781, -8.05402660369873 ], [ -79.140693664550781, -8.05374813079834 ], [ -79.140975952148438, -8.053750991821232 ], [ -79.140975952148438, -8.053473472595158 ], [ -79.141250610351506, -8.053473472595158 ], [ -79.141250610351506, -8.053192138671875 ], [ -79.141525268554631, -8.053194999694767 ], [ -79.141525268554631, -8.052916526794377 ], [ -79.141807556152287, -8.052916526794377 ], [ -79.141807556152287, -8.052639007568303 ], [ -79.142082214355412, -8.052639007568303 ], [ -79.142082214355412, -8.052359580993652 ], [ -79.14263916015625, -8.052359580993652 ], [ -79.14263916015625, -8.052082061767521 ], [ -79.142913818359375, -8.052082061767521 ], [ -79.142913818359375, -8.051803588867131 ], [ -79.143196105957031, -8.051803588867131 ], [ -79.143196105957031, -8.051526069641056 ], [ -79.143470764160156, -8.051528930664062 ], [ -79.143470764160156, -8.051251411437931 ], [ -79.143753051757812, -8.051251411437931 ], [ -79.143753051757812, -8.050970077514592 ], [ -79.144027709960938, -8.050971984863281 ], [ -79.144027709960938, -8.050694465637207 ], [ -79.144584655761662, -8.050694465637207 ], [ -79.144584655761662, -8.050415992736816 ], [ -79.144859313964787, -8.050415992736816 ], [ -79.144859313964787, -8.050138473510629 ], [ -79.145141601562443, -8.050138473510629 ], [ -79.145141601562443, -8.049860000610352 ], [ -79.145416259765568, -8.049860000610352 ], [ -79.145416259765568, -8.04958438873291 ], [ -79.14569091796875, -8.04958438873291 ], [ -79.14569091796875, -8.049304008483773 ], [ -79.145973205566406, -8.04930591583252 ], [ -79.145973205566406, -8.049028396606445 ], [ -79.146247863769531, -8.049028396606445 ], [ -79.146247863769531, -8.048748016357365 ], [ -79.146530151367188, -8.048749923706055 ], [ -79.146530151367188, -8.04847240447998 ], [ -79.146804809570312, -8.04847240447998 ], [ -79.146804809570312, -8.047916412353516 ], [ -79.147087097167969, -8.047916412353516 ], [ -79.147087097167969, -8.047637939453125 ], [ -79.147361755371094, -8.047637939453125 ], [ -79.147361755371094, -8.047362327575627 ], [ -79.147636413574162, -8.047362327575627 ], [ -79.147636413574162, -8.04708194732666 ], [ -79.150138854980469, -8.04708194732666 ], [ -79.150138854980469, -8.046806335449219 ], [ -79.150413513183594, -8.046806335449219 ], [ -79.150413513183594, -8.046527862548771 ], [ -79.150970458984318, -8.046527862548771 ], [ -79.150970458984318, -8.046250343322754 ], [ -79.151527404785099, -8.046250343322754 ], [ -79.151527404785099, -8.045971870422363 ], [ -79.151802062988281, -8.045971870422363 ], [ -79.151802062988281, -8.045694351196289 ], [ -79.152359008789062, -8.045694351196289 ], [ -79.152359008789062, -8.045415878295898 ], [ -79.152641296386719, -8.045415878295898 ], [ -79.152641296386719, -8.0451402664184 ], [ -79.153190612792969, -8.0451402664184 ], [ -79.1531982421875, -8.044584274291935 ], [ -79.153472900390625, -8.044584274291935 ], [ -79.153472900390625, -8.044028282165471 ], [ -79.153747558593636, -8.044028282165471 ], [ -79.153747558593636, -8.043193817138615 ], [ -79.154029846191349, -8.043193817138615 ], [ -79.154029846191349, -8.042637825012207 ], [ -79.154586791992131, -8.042637825012207 ], [ -79.154586791992131, -8.042360305786133 ], [ -79.155418395996094, -8.042362213134709 ], [ -79.155418395996094, -8.042083740234375 ], [ -79.155975341796875, -8.042083740234375 ], [ -79.155975341796875, -8.041806221008244 ], [ -79.156524658203125, -8.041806221008244 ], [ -79.156524658203125, -8.041527748107853 ], [ -79.156806945800781, -8.041527748107853 ], [ -79.156806945800781, -8.041250228881779 ], [ -79.157081604003849, -8.041250228881779 ], [ -79.157081604003849, -8.040971755981388 ], [ -79.157363891601506, -8.040971755981388 ], [ -79.157363891601506, -8.040694236755314 ], [ -79.157638549804631, -8.040694236755314 ], [ -79.157638549804631, -8.040417671203613 ], [ -79.157913208007756, -8.040417671203613 ], [ -79.157913208007756, -8.040137290954533 ], [ -79.158470153808594, -8.040140151977539 ], [ -79.158470153808594, -8.039861679077148 ], [ -79.15875244140625, -8.039861679077148 ], [ -79.15875244140625, -8.039581298828068 ], [ -79.159027099609375, -8.039584159851074 ], [ -79.159027099609375, -8.039305686950684 ], [ -79.1593017578125, -8.039305686950684 ], [ -79.1593017578125, -8.039028167724496 ], [ -79.159584045410156, -8.039028167724496 ], [ -79.159584045410156, -8.038748741149902 ], [ -79.159858703613281, -8.038748741149902 ], [ -79.159858703613281, -8.038469314575138 ], [ -79.160972595214787, -8.038469314575138 ], [ -79.160972595214787, -8.037915229797363 ], [ -79.161247253417912, -8.037915229797363 ], [ -79.161247253417912, -8.037639617919922 ], [ -79.161529541015625, -8.037639617919922 ], [ -79.161529541015625, -8.037359237670785 ], [ -79.16180419921875, -8.037361145019531 ], [ -79.16180419921875, -8.036805152893066 ], [ -79.162086486816406, -8.036805152893066 ], [ -79.162086486816406, -8.036526679992676 ], [ -79.162361145019531, -8.036526679992676 ], [ -79.162361145019531, -8.036249160766602 ], [ -79.162635803222656, -8.036249160766602 ], [ -79.162635803222656, -8.035972595214787 ], [ -79.162918090820312, -8.035972595214787 ], [ -79.162918090820312, -8.035693168640137 ], [ -79.163192749023438, -8.035693168640137 ], [ -79.163192749023438, -8.035416603088322 ], [ -79.16347503662098, -8.035416603088322 ], [ -79.16347503662098, -8.034860610961857 ], [ -79.163749694824162, -8.034860610961857 ], [ -79.163749694824162, -8.034583091735783 ], [ -79.164024353027287, -8.034583091735783 ], [ -79.164024353027287, -8.034304618835392 ], [ -79.164306640624943, -8.034304618835392 ], [ -79.164306640624943, -8.034027099609375 ], [ -79.164581298828125, -8.034027099609375 ], [ -79.164581298828125, -8.033748626708928 ], [ -79.165138244628906, -8.033748626708928 ], [ -79.165138244628906, -8.03347110748291 ], [ -79.165695190429688, -8.03347110748291 ], [ -79.165695190429688, -8.033194541931152 ], [ -79.166252136230469, -8.033194541931152 ], [ -79.166252136230469, -8.032917022705021 ], [ -79.16652679443348, -8.032917022705021 ], [ -79.16652679443348, -8.032638549804574 ], [ -79.167083740234318, -8.032638549804574 ], [ -79.167083740234318, -8.032361030578556 ], [ -79.167640686035099, -8.032361030578556 ], [ -79.167640686035099, -8.032082557678166 ], [ -79.168197631835938, -8.032082557678166 ], [ -79.168197631835938, -8.031805038452092 ], [ -79.168472290039062, -8.031805038452092 ], [ -79.168472290039062, -8.031526565551701 ], [ -79.169029235839844, -8.031526565551701 ], [ -79.169029235839844, -8.031249046325627 ], [ -79.169303894042969, -8.031250953674316 ], [ -79.169303894042969, -8.030973434448242 ], [ -79.169860839843693, -8.030973434448242 ], [ -79.169860839843693, -8.030693054199219 ], [ -79.170135498046818, -8.030694961547852 ], [ -79.170135498046818, -8.030417442321721 ], [ -79.170417785644474, -8.030417442321721 ], [ -79.170417785644474, -8.030138969421387 ], [ -79.170974731445256, -8.030138969421387 ], [ -79.170974731445256, -8.029861450195256 ], [ -79.171249389648438, -8.029861450195256 ], [ -79.171249389648438, -8.029582977294865 ], [ -79.171806335449219, -8.029582977294865 ], [ -79.171806335449219, -8.029305458068791 ], [ -79.172080993652344, -8.029305458068791 ], [ -79.172080993652344, -8.0290269851684 ], [ -79.17236328125, -8.02902889251709 ], [ -79.17236328125, -8.028751373291016 ], [ -79.172920227050781, -8.028751373291016 ], [ -79.172920227050781, -8.028470993041935 ], [ -79.173194885253849, -8.028472900390625 ], [ -79.173194885253849, -8.028195381164551 ], [ -79.173751831054631, -8.028195381164551 ], [ -79.173751831054631, -8.02791690826416 ], [ -79.174026489257756, -8.02791690826416 ], [ -79.174026489257756, -8.027639389038086 ], [ -79.174308776855469, -8.027639389038086 ], [ -79.174308776855469, -8.027360916137695 ], [ -79.174583435058594, -8.027360916137695 ], [ -79.174583435058594, -8.027083396911507 ], [ -79.175140380859375, -8.027083396911507 ], [ -79.175140380859375, -8.026806831359863 ], [ -79.1754150390625, -8.026806831359863 ], [ -79.1754150390625, -8.02652645111084 ], [ -79.175697326660156, -8.02652645111084 ], [ -79.175697326660156, -8.026250839233398 ], [ -79.175971984863281, -8.026250839233398 ], [ -79.175971984863281, -8.025973320007324 ], [ -79.176246643066349, -8.025973320007324 ], [ -79.176246643066349, -8.025694847106934 ], [ -79.176528930664006, -8.025694847106934 ], [ -79.176528930664006, -8.025417327880859 ], [ -79.177085876464787, -8.025417327880859 ], [ -79.177085876464787, -8.025137901306152 ], [ -79.177360534667969, -8.025137901306152 ], [ -79.177360534667969, -8.024860382080078 ], [ -79.177635192871094, -8.024860382080078 ], [ -79.177635192871094, -8.024581909179688 ], [ -79.178192138671875, -8.024581909179688 ], [ -79.178192138671875, -8.024304389953613 ], [ -79.178474426269531, -8.024304389953613 ], [ -79.178474426269531, -8.024028778076115 ], [ -79.179031372070312, -8.024028778076115 ], [ -79.179031372070312, -8.023750305175724 ], [ -79.179306030273324, -8.023750305175724 ], [ -79.179306030273324, -8.023471832275334 ], [ -79.179862976074162, -8.023471832275334 ], [ -79.179862976074162, -8.02319431304926 ], [ -79.180137634277287, -8.02319431304926 ], [ -79.180137634277287, -8.022915840148869 ], [ -79.180694580078125, -8.022915840148869 ], [ -79.180694580078125, -8.022638320922795 ], [ -79.18096923828125, -8.022638320922795 ], [ -79.18096923828125, -8.022082328796387 ], [ -79.181251525878906, -8.022082328796387 ], [ -79.181251525878906, -8.020972251892033 ], [ -79.181526184082031, -8.020972251892033 ], [ -79.181526184082031, -8.020416259765568 ], [ -79.182914733886662, -8.020416259765568 ], [ -79.182914733886662, -8.020137786865178 ], [ -79.184028625488281, -8.020137786865178 ], [ -79.184028625488281, -8.019860267639103 ], [ -79.184303283691406, -8.019862174987793 ], [ -79.184303283691406, -8.019583702087402 ], [ -79.184585571289062, -8.019583702087402 ], [ -79.184585571289062, -8.019027709960938 ], [ -79.184860229492188, -8.019027709960938 ], [ -79.184860229492188, -8.01874828338623 ], [ -79.185417175292969, -8.018750190734863 ], [ -79.185417175292969, -8.018471717834473 ], [ -79.185691833496037, -8.018471717834473 ], [ -79.185691833496037, -8.018194198608398 ], [ -79.186248779296818, -8.018194198608398 ], [ -79.186248779296818, -8.017915725708008 ], [ -79.186805725097599, -8.017915725708008 ], [ -79.186805725097599, -8.017640113830566 ], [ -79.187080383300781, -8.017640113830566 ], [ -79.187080383300781, -8.017359733581543 ], [ -79.187637329101562, -8.017359733581543 ], [ -79.187637329101562, -8.017084121704102 ], [ -79.187919616699219, -8.017084121704102 ], [ -79.187919616699219, -8.016805648803711 ], [ -79.188194274902344, -8.016805648803711 ], [ -79.188194274902344, -8.016528129577637 ], [ -79.188468933105469, -8.016528129577637 ], [ -79.188468933105469, -8.016249656677246 ], [ -79.188751220703125, -8.016249656677246 ], [ -79.188751220703125, -8.015970230102482 ], [ -79.189025878906193, -8.015972137451172 ], [ -79.189025878906193, -8.015693664550781 ], [ -79.189308166503849, -8.015693664550781 ], [ -79.189308166503849, -8.015416145324707 ], [ -79.189582824706974, -8.015418052673283 ], [ -79.189582824706974, -8.015137672424316 ], [ -79.189857482910099, -8.015137672424316 ], [ -79.189857482910099, -8.014860153198242 ], [ -79.190139770507812, -8.014862060546875 ], [ -79.190139770507812, -8.014583587646428 ], [ -79.190414428710938, -8.014583587646428 ], [ -79.190414428710938, -8.014303207397461 ], [ -79.190696716308594, -8.01430606842041 ], [ -79.190696716308594, -8.01402759552002 ], [ -79.191253662109375, -8.01402759552002 ], [ -79.191253662109375, -8.013750076293945 ], [ -79.192085266113168, -8.013750076293945 ], [ -79.192085266113168, -8.013471603393555 ], [ -79.192642211914006, -8.013471603393555 ], [ -79.192642211914006, -8.01319408416748 ], [ -79.193473815917969, -8.01319408416748 ], [ -79.193473815917969, -8.012914657592717 ], [ -79.19403076171875, -8.012914657592717 ], [ -79.19403076171875, -8.012637138366699 ], [ -79.194305419921875, -8.012639999389592 ], [ -79.194305419921875, -8.012361526489201 ], [ -79.194580078125, -8.012361526489201 ], [ -79.194580078125, -8.012081146240234 ], [ -79.194862365722656, -8.012084007263127 ], [ -79.194862365722656, -8.011805534362736 ], [ -79.195137023925668, -8.011805534362736 ], [ -79.195137023925668, -8.011527061462346 ], [ -79.195419311523381, -8.011527061462346 ], [ -79.195419311523381, -8.011248588561955 ], [ -79.195968627929631, -8.011248588561955 ], [ -79.195968627929631, -8.010971069335881 ], [ -79.196250915527287, -8.010971069335881 ], [ -79.196250915527287, -8.010696411132756 ], [ -79.196525573730469, -8.010696411132756 ], [ -79.196525573730469, -8.010415077209416 ], [ -79.196807861328125, -8.010417938232308 ], [ -79.196807861328125, -8.010139465332031 ], [ -79.19708251953125, -8.010139465332031 ], [ -79.19708251953125, -8.009859085082951 ], [ -79.197639465332031, -8.009860992431641 ], [ -79.197639465332031, -8.009583473205453 ], [ -79.197914123535156, -8.009583473205453 ], [ -79.197914123535156, -8.009305000305176 ], [ -79.198196411132812, -8.009305000305176 ], [ -79.198196411132812, -8.009026527404785 ], [ -79.199859619140625, -8.009026527404785 ], [ -79.199859619140625, -8.008749008178597 ], [ -79.201248168945312, -8.008749008178597 ], [ -79.201248168945312, -8.00847339630127 ], [ -79.201530456542969, -8.00847339630127 ], [ -79.201530456542969, -8.008193016052189 ], [ -79.201805114746037, -8.008193016052189 ], [ -79.201805114746037, -8.007917404174805 ], [ -79.202362060546818, -8.007917404174805 ], [ -79.202362060546818, -8.007637023925724 ], [ -79.202636718749943, -8.007638931274414 ], [ -79.202636718749943, -8.00736141204834 ], [ -79.202919006347656, -8.00736141204834 ], [ -79.202919006347656, -8.00708103179926 ], [ -79.203193664550781, -8.007082939147949 ], [ -79.203193664550781, -8.006805419921875 ], [ -79.204864501953011, -8.006805419921875 ], [ -79.204864501953011, -8.006251335144043 ], [ -79.205139160156193, -8.006251335144043 ], [ -79.205139160156193, -8.005416870117188 ], [ -79.205413818359318, -8.005416870117188 ], [ -79.205413818359318, -8.004860877990723 ], [ -79.205970764160156, -8.004860877990723 ], [ -79.205970764160156, -8.004583358764648 ], [ -79.206253051757812, -8.004583358764648 ], [ -79.206253051757812, -8.004304885864258 ], [ -79.206802368164062, -8.004304885864258 ], [ -79.206802368164062, -8.004027366638184 ], [ -79.207084655761719, -8.004027366638184 ], [ -79.207084655761719, -8.003748893737793 ], [ -79.2076416015625, -8.003748893737793 ], [ -79.2076416015625, -8.003473281860295 ], [ -79.207916259765511, -8.003473281860295 ], [ -79.207916259765511, -8.003194808959904 ], [ -79.208190917968693, -8.003194808959904 ], [ -79.208190917968693, -8.002917289733887 ], [ -79.208747863769474, -8.002917289733887 ], [ -79.208747863769474, -8.002638816833439 ], [ -79.209030151367131, -8.002638816833439 ], [ -79.209053039550724, -8.002324104309025 ], [ -79.209587097167969, -8.002361297607422 ], [ -79.209587097167969, -8.002082824707031 ], [ -79.209861755371094, -8.002082824707031 ], [ -79.209861755371094, -8.001805305480957 ], [ -79.210418701171875, -8.001805305480957 ], [ -79.210418701171875, -8.001528739929199 ], [ -79.210693359375, -8.001528739929199 ], [ -79.210693359375, -8.001251220703068 ], [ -79.210975646972656, -8.001251220703068 ], [ -79.210975646972656, -8.000972747802678 ], [ -79.211524963378849, -8.000972747802678 ], [ -79.211524963378849, -8.000695228576603 ], [ -79.211807250976506, -8.000695228576603 ], [ -79.211807250976506, -8.000416755676213 ], [ -79.212364196777287, -8.000416755676213 ], [ -79.212364196777287, -8.000136375427246 ], [ -79.212638854980469, -8.000139236450138 ], [ -79.212638854980469, -7.999860763549748 ], [ -79.212638854980469, -7.999582767486515 ], [ -79.212364196777287, -7.999582767486515 ], [ -79.212364196777287, -7.999307155609131 ], [ -79.214302062988224, -7.999307155609131 ], [ -79.214302062988224, -7.999029159545898 ], [ -79.214584350585881, -7.999029159545898 ], [ -79.214584350585881, -7.998751163482666 ], [ -79.215141296386662, -7.998751163482666 ], [ -79.215141296386662, -7.99847316741932 ], [ -79.215415954589787, -7.99847316741932 ], [ -79.215415954589787, -7.998195171356144 ], [ -79.215690612792969, -7.998195171356144 ], [ -79.2156982421875, -7.997916221618652 ], [ -79.215972900390625, -7.997916221618652 ], [ -79.215972900390625, -7.99763822555542 ], [ -79.21624755859375, -7.99763822555542 ], [ -79.21624755859375, -7.997082233428955 ], [ -79.216529846191406, -7.997082233428955 ], [ -79.216529846191406, -7.996804237365609 ], [ -79.216804504394531, -7.996804237365609 ], [ -79.216804504394531, -7.996525764465332 ], [ -79.217086791992188, -7.996525764465332 ], [ -79.217086791992188, -7.995972156524658 ], [ -79.217361450195312, -7.995972156524658 ], [ -79.217361450195312, -7.995694160461426 ], [ -79.217918395996037, -7.995694160461426 ], [ -79.217918395996037, -7.995416164398193 ], [ -79.218193054199162, -7.995416164398193 ], [ -79.218193054199162, -7.995138168334961 ], [ -79.21875, -7.995138168334961 ], [ -79.21875, -7.994860172271729 ], [ -79.219024658203125, -7.994860172271729 ], [ -79.219024658203125, -7.994582176208496 ], [ -79.219306945800781, -7.994582176208496 ], [ -79.219306945800781, -7.99430608749384 ], [ -79.219581604003906, -7.99430608749384 ], [ -79.219581604003906, -7.994028091430607 ], [ -79.219863891601562, -7.994028091430607 ], [ -79.219863891601562, -7.993750095367432 ], [ -79.220138549804688, -7.993750095367432 ], [ -79.220138549804688, -7.993472099304199 ], [ -79.220413208007812, -7.993472099304199 ], [ -79.220413208007812, -7.993194103240967 ], [ -79.220695495605355, -7.993194103240967 ], [ -79.220695495605355, -7.992916107177734 ], [ -79.220970153808537, -7.992916107177734 ], [ -79.220970153808537, -7.992638111114502 ], [ -79.221252441406193, -7.992638111114502 ], [ -79.221252441406193, -7.99236011505127 ], [ -79.221527099609318, -7.99236011505127 ], [ -79.221527099609318, -7.992084026336613 ], [ -79.222084045410156, -7.992084026336613 ], [ -79.222084045410156, -7.991806030273381 ], [ -79.222358703613281, -7.991806030273381 ], [ -79.222358703613281, -7.991528034210148 ], [ -79.222640991210938, -7.991528034210148 ], [ -79.222640991210938, -7.991250038146916 ], [ -79.222915649414062, -7.991250038146916 ], [ -79.222915649414062, -7.990694046020451 ], [ -79.223197937011719, -7.990694046020451 ], [ -79.223197937011719, -7.990138053894043 ], [ -79.225135803222656, -7.990139961242676 ], [ -79.225135803222656, -7.989305973052865 ], [ -79.225418090820312, -7.989305973052865 ], [ -79.225418090820312, -7.989027976989689 ], [ -79.225692749023438, -7.989027976989689 ], [ -79.225692749023438, -7.988749980926457 ], [ -79.225975036621094, -7.988749980926457 ], [ -79.225975036621094, -7.988471984863224 ], [ -79.226249694824219, -7.988471984863224 ], [ -79.226249694824219, -7.988193988799992 ], [ -79.227081298828068, -7.988193988799992 ], [ -79.227081298828068, -7.98791599273676 ], [ -79.227912902831974, -7.98791599273676 ], [ -79.227912902831974, -7.987637996673527 ], [ -79.228195190429631, -7.987637996673527 ], [ -79.228195190429631, -7.987360000610295 ], [ -79.228469848632812, -7.987361907958984 ], [ -79.228469848632812, -7.98680591583252 ], [ -79.228752136230469, -7.98680591583252 ], [ -79.228752136230469, -7.986527919769287 ], [ -79.229026794433594, -7.986527919769287 ], [ -79.229026794433594, -7.985692977905273 ], [ -79.22930908203125, -7.985692977905273 ], [ -79.22930908203125, -7.98541784286499 ], [ -79.229583740234375, -7.985414981842041 ], [ -79.229583740234375, -7.985139846801758 ], [ -79.2298583984375, -7.985139846801758 ], [ -79.2298583984375, -7.984861850738525 ], [ -79.230697631835881, -7.984861850738525 ], [ -79.230697631835881, -7.984583854675293 ], [ -79.230972290039006, -7.984583854675293 ], [ -79.230972290039006, -7.984304904937744 ], [ -79.231529235839844, -7.984304904937744 ], [ -79.231529235839844, -7.984026908874512 ], [ -79.231803894042969, -7.984026908874512 ], [ -79.231803894042969, -7.983748912811279 ], [ -79.23236083984375, -7.983748912811279 ], [ -79.23236083984375, -7.983470916748047 ], [ -79.232917785644531, -7.983470916748047 ], [ -79.232917785644531, -7.984304904937744 ], [ -79.233749389648381, -7.984304904937744 ], [ -79.233749389648381, -7.984026908874512 ], [ -79.234306335449162, -7.984026908874512 ], [ -79.234306335449162, -7.983192920684814 ], [ -79.234580993652344, -7.983192920684814 ], [ -79.234580993652344, -7.982916831970158 ], [ -79.23486328125, -7.982916831970158 ], [ -79.23486328125, -7.982638835906926 ], [ -79.235137939453125, -7.982638835906926 ], [ -79.235137939453125, -7.982360839843693 ], [ -79.236251831054688, -7.982360839843693 ], [ -79.236251831054688, -7.980694770812988 ], [ -79.236526489257699, -7.980694770812988 ], [ -79.236526489257699, -7.980416774749756 ], [ -79.236808776855412, -7.980416774749756 ], [ -79.236808776855412, -7.979860782623234 ], [ -79.237358093261662, -7.979860782623234 ], [ -79.237358093261662, -7.979582786560002 ], [ -79.237640380859318, -7.979582786560002 ], [ -79.237640380859318, -7.979304790496769 ], [ -79.2379150390625, -7.979304790496769 ], [ -79.2379150390625, -7.979026794433537 ], [ -79.238471984863281, -7.979026794433537 ], [ -79.238471984863281, -7.978470802307072 ], [ -79.238746643066406, -7.978470802307072 ], [ -79.238746643066406, -7.97819280624384 ], [ -79.239028930664062, -7.978195190429688 ], [ -79.239028930664062, -7.977917194366455 ], [ -79.239585876464844, -7.977917194366455 ], [ -79.239585876464844, -7.977639198303223 ], [ -79.240135192871037, -7.977639198303223 ], [ -79.240135192871037, -7.977361202239877 ], [ -79.240417480468693, -7.977361202239877 ], [ -79.240417480468693, -7.977083206176701 ], [ -79.240974426269474, -7.977083206176701 ], [ -79.240974426269474, -7.976805210113469 ], [ -79.242637634277344, -7.976805210113469 ], [ -79.242637634277344, -7.976527214050236 ], [ -79.242919921875, -7.976527214050236 ], [ -79.242919921875, -7.976249217987004 ], [ -79.243469238281193, -7.976249217987004 ], [ -79.243469238281193, -7.975971221923771 ], [ -79.243751525878849, -7.975971221923771 ], [ -79.243751525878849, -7.975693225860539 ], [ -79.244026184081974, -7.975693225860539 ], [ -79.244026184081974, -7.975415229797306 ], [ -79.244583129882812, -7.975415229797306 ], [ -79.244583129882812, -7.975139141082764 ], [ -79.244857788085938, -7.975139141082764 ], [ -79.244857788085938, -7.973749160766488 ], [ -79.245140075683594, -7.973749160766488 ], [ -79.245140075683594, -7.973473072052002 ], [ -79.245697021484375, -7.973473072052002 ], [ -79.245697021484375, -7.97319507598877 ], [ -79.2459716796875, -7.97319507598877 ], [ -79.2459716796875, -7.972917079925537 ], [ -79.246246337890568, -7.972917079925537 ], [ -79.246246337890568, -7.972639083862305 ], [ -79.246803283691349, -7.972639083862305 ], [ -79.246803283691349, -7.972361087799072 ], [ -79.247085571289006, -7.972361087799072 ], [ -79.247085571289006, -7.972082138061523 ], [ -79.248191833496094, -7.972082138061523 ], [ -79.248191833496094, -7.971807003021183 ], [ -79.248748779296875, -7.971807003021183 ], [ -79.248748779296875, -7.971529006957951 ], [ -79.249305725097543, -7.971529006957951 ], [ -79.249305725097543, -7.971251010894719 ], [ -79.249862670898381, -7.971251010894719 ], [ -79.249862670898381, -7.970973014831486 ], [ -79.250419616699162, -7.970973014831486 ], [ -79.250419616699162, -7.971251010894719 ], [ -79.250694274902344, -7.971251010894719 ], [ -79.250694274902344, -7.971529006957951 ], [ -79.25152587890625, -7.971529006957951 ], [ -79.25152587890625, -7.971251010894719 ], [ -79.251808166503906, -7.971251010894719 ], [ -79.251808166503906, -7.970973014831486 ], [ -79.252082824707031, -7.970973014831486 ], [ -79.252082824707031, -7.970694065093937 ], [ -79.252357482910043, -7.970694065093937 ], [ -79.252357482910043, -7.970416069030705 ], [ -79.2540283203125, -7.970416069030705 ], [ -79.2540283203125, -7.970138072967472 ], [ -79.254302978515625, -7.970138072967472 ], [ -79.254302978515625, -7.969584941863957 ], [ -79.254585266113281, -7.969584941863957 ], [ -79.254585266113281, -7.969305992126465 ], [ -79.254859924316406, -7.969305992126465 ], [ -79.254859924316406, -7.96875 ], [ -79.255142211914062, -7.96875 ], [ -79.255142211914062, -7.968472003936768 ], [ -79.255691528320256, -7.968472003936768 ], [ -79.255691528320256, -7.968194007873421 ], [ -79.255973815917912, -7.968194007873421 ], [ -79.255973815917912, -7.967916011810246 ], [ -79.256248474121037, -7.967916011810246 ], [ -79.256248474121037, -7.967638015747013 ], [ -79.256805419921818, -7.967638015747013 ], [ -79.256805419921818, -7.967360019683781 ], [ -79.257362365722656, -7.967360019683781 ], [ -79.257362365722656, -7.967083930969238 ], [ -79.257919311523438, -7.967083930969238 ], [ -79.257919311523438, -7.966805934906006 ], [ -79.258193969726562, -7.966805934906006 ], [ -79.258193969726562, -7.966527938842773 ], [ -79.258750915527344, -7.966527938842773 ], [ -79.258750915527344, -7.965971946716309 ], [ -79.259025573730412, -7.965971946716309 ], [ -79.259025573730412, -7.965137958526611 ], [ -79.259307861328068, -7.965137958526611 ], [ -79.259307861328068, -7.964859962463379 ], [ -79.259864807128849, -7.964859962463379 ], [ -79.259864807128849, -7.964583873748779 ], [ -79.260139465332031, -7.964583873748779 ], [ -79.260139465332031, -7.964305877685547 ], [ -79.260696411132812, -7.964305877685547 ], [ -79.260696411132812, -7.964027881622314 ], [ -79.260971069335938, -7.964027881622314 ], [ -79.260971069335938, -7.963749885559082 ], [ -79.261528015136719, -7.963749885559082 ], [ -79.261528015136719, -7.96347188949585 ], [ -79.261802673339844, -7.96347188949585 ], [ -79.261802673339844, -7.963193893432617 ], [ -79.262359619140568, -7.963193893432617 ], [ -79.262359619140568, -7.962915897369385 ], [ -79.262641906738224, -7.962915897369385 ], [ -79.262641906738224, -7.962637901306152 ], [ -79.263191223144531, -7.962637901306152 ], [ -79.263191223144531, -7.962361812591496 ], [ -79.263473510742188, -7.962361812591496 ], [ -79.263473510742188, -7.962083816528263 ], [ -79.264030456542969, -7.962083816528263 ], [ -79.264030456542969, -7.961805820465031 ], [ -79.264305114746094, -7.961805820465031 ], [ -79.264305114746094, -7.961527824401855 ], [ -79.264862060546875, -7.961527824401855 ], [ -79.264862060546875, -7.961249828338623 ], [ -79.265136718749886, -7.961249828338623 ], [ -79.265136718749886, -7.960971832275391 ], [ -79.265693664550724, -7.960971832275391 ], [ -79.265693664550724, -7.960693836212158 ], [ -79.265975952148381, -7.960693836212158 ], [ -79.265975952148381, -7.96041822433466 ], [ -79.266525268554688, -7.96041822433466 ], [ -79.266525268554688, -7.960140228271428 ], [ -79.267082214355469, -7.960140228271428 ], [ -79.267082214355469, -7.959862232208195 ], [ -79.267913818359375, -7.959862232208195 ], [ -79.267913818359375, -7.959584236144963 ], [ -79.268470764160099, -7.959584236144963 ], [ -79.268470764160099, -7.959305763244572 ], [ -79.269027709960881, -7.959305763244572 ], [ -79.269027709960881, -7.95902776718134 ], [ -79.269302368164006, -7.95902776718134 ], [ -79.269302368164006, -7.958470821380558 ], [ -79.269584655761662, -7.958470821380558 ], [ -79.269584655761662, -7.957918167114144 ], [ -79.269859313964844, -7.957918167114144 ], [ -79.269859313964844, -7.957362174987736 ], [ -79.2701416015625, -7.957362174987736 ], [ -79.2701416015625, -7.956805229187012 ], [ -79.270416259765625, -7.956805229187012 ], [ -79.270416259765625, -7.956249237060433 ], [ -79.27069091796875, -7.956249237060433 ], [ -79.27069091796875, -7.955970764160156 ], [ -79.271247863769531, -7.955970764160156 ], [ -79.271247863769531, -7.955692768096924 ], [ -79.271530151367188, -7.955692768096924 ], [ -79.271530151367188, -7.955417156219482 ], [ -79.272087097167912, -7.955417156219482 ], [ -79.272087097167912, -7.95513916015625 ], [ -79.272636413574162, -7.95513916015625 ], [ -79.272636413574162, -7.954861164093018 ], [ -79.272918701171875, -7.954861164093018 ], [ -79.272918701171875, -7.954583168029785 ], [ -79.273475646972656, -7.954583168029785 ], [ -79.273475646972656, -7.954305171966553 ], [ -79.274581909179688, -7.954305171966553 ], [ -79.274581909179688, -7.95402717590332 ], [ -79.27486419677723, -7.95402717590332 ], [ -79.27486419677723, -7.953749179840088 ], [ -79.275138854980412, -7.953749179840088 ], [ -79.275138854980412, -7.953471183776855 ], [ -79.275413513183537, -7.953471183776855 ], [ -79.275413513183537, -7.953195095062256 ], [ -79.275970458984375, -7.953195095062256 ], [ -79.275970458984375, -7.952917098999023 ], [ -79.276252746582031, -7.952917098999023 ], [ -79.276252746582031, -7.952639102935791 ], [ -79.276527404785156, -7.952639102935791 ], [ -79.276527404785156, -7.952361106872559 ], [ -79.277641296386719, -7.952361106872559 ], [ -79.277641296386719, -7.952083110809326 ], [ -79.278747558593693, -7.952083110809326 ], [ -79.278747558593693, -7.951805114746094 ], [ -79.279029846191349, -7.951805114746094 ], [ -79.279029846191349, -7.951527118682861 ], [ -79.279304504394531, -7.951527118682861 ], [ -79.279304504394531, -7.951249122619629 ], [ -79.279586791992188, -7.951251029968205 ], [ -79.279586791992188, -7.95069503784174 ], [ -79.279861450195312, -7.95069503784174 ], [ -79.279861450195312, -7.950417041778508 ], [ -79.280136108398438, -7.950417041778508 ], [ -79.280136108398438, -7.950139045715275 ], [ -79.280418395996094, -7.950139045715275 ], [ -79.280418395996094, -7.949861049652043 ], [ -79.280975341796875, -7.949861049652043 ], [ -79.280975341796875, -7.949583053588867 ], [ -79.28125, -7.949583053588867 ], [ -79.28125, -7.949305057525635 ], [ -79.281524658203068, -7.949305057525635 ], [ -79.281524658203068, -7.949028968811035 ], [ -79.282081604003849, -7.949027061462402 ], [ -79.282081604003849, -7.94874906539917 ], [ -79.282363891601506, -7.94874906539917 ], [ -79.282363891601506, -7.948471069335938 ], [ -79.282913208007812, -7.948472976684513 ], [ -79.282913208007812, -7.948194980621281 ], [ -79.283195495605469, -7.948194980621281 ], [ -79.283195495605469, -7.947916984558049 ], [ -79.283470153808594, -7.947916984558049 ], [ -79.283470153808594, -7.947638988494816 ], [ -79.28375244140625, -7.947638988494816 ], [ -79.28375244140625, -7.947360992431584 ], [ -79.284027099609375, -7.947360992431584 ], [ -79.284027099609375, -7.947082996368351 ], [ -79.284584045410099, -7.947082996368351 ], [ -79.284584045410099, -7.946805000305119 ], [ -79.285415649414006, -7.946805000305119 ], [ -79.285415649414006, -7.946527004241887 ], [ -79.285697937011719, -7.946527004241887 ], [ -79.285697937011719, -7.946248054504338 ], [ -79.286247253417969, -7.946250915527344 ], [ -79.286247253417969, -7.945735931396428 ], [ -79.286529541015625, -7.945694923400879 ], [ -79.286529541015625, -7.945416927337646 ], [ -79.287086486816406, -7.945416927337646 ], [ -79.287086486816406, -7.9451389312743 ], [ -79.287361145019531, -7.9451389312743 ], [ -79.287361145019531, -7.944859981536865 ], [ -79.287635803222599, -7.944859981536865 ], [ -79.287635803222599, -7.944581985473633 ], [ -79.288475036621037, -7.944581985473633 ], [ -79.288475036621037, -7.9443039894104 ], [ -79.288749694824219, -7.9443039894104 ], [ -79.288749694824219, -7.944028854370117 ], [ -79.289024353027344, -7.944028854370117 ], [ -79.289024353027344, -7.943750858306885 ], [ -79.289306640625, -7.943750858306885 ], [ -79.289306640625, -7.943471908569336 ], [ -79.289863586425781, -7.943471908569336 ], [ -79.289863586425781, -7.943193912506104 ], [ -79.290138244628906, -7.943193912506104 ], [ -79.290138244628906, -7.942915916442871 ], [ -79.290695190429574, -7.942915916442871 ], [ -79.290695190429574, -7.942637920379639 ], [ -79.290969848632756, -7.942637920379639 ], [ -79.290969848632756, -7.942359924316406 ], [ -79.291252136230412, -7.942359924316406 ], [ -79.291252136230412, -7.94208383560175 ], [ -79.291526794433537, -7.94208383560175 ], [ -79.291526794433537, -7.941805839538517 ], [ -79.291809082031193, -7.941805839538517 ], [ -79.291809082031193, -7.941527843475285 ], [ -79.2923583984375, -7.941527843475285 ], [ -79.2923583984375, -7.941249847412053 ], [ -79.292640686035156, -7.941249847412053 ], [ -79.292640686035156, -7.94097185134882 ], [ -79.292915344238281, -7.94097185134882 ], [ -79.292915344238281, -7.940693855285588 ], [ -79.293197631835938, -7.940693855285588 ], [ -79.293197631835938, -7.940415859222412 ], [ -79.293472290039062, -7.940415859222412 ], [ -79.293472290039062, -7.94013786315918 ], [ -79.293746948242074, -7.94013786315918 ], [ -79.293746948242074, -7.93986177444458 ], [ -79.294029235839787, -7.93986177444458 ], [ -79.294029235839787, -7.939583778381234 ], [ -79.294303894042912, -7.939583778381234 ], [ -79.294303894042912, -7.939027786254826 ], [ -79.294586181640568, -7.939027786254826 ], [ -79.294586181640568, -7.938749790191594 ], [ -79.294860839843693, -7.938749790191594 ], [ -79.294860839843693, -7.938471794128361 ], [ -79.295135498046875, -7.938471794128361 ], [ -79.295135498046875, -7.938193798065129 ], [ -79.295417785644531, -7.938193798065129 ], [ -79.295417785644531, -7.937637805938664 ], [ -79.295692443847656, -7.937637805938664 ], [ -79.295692443847656, -7.937362194061279 ], [ -79.295974731445312, -7.937362194061279 ], [ -79.295974731445312, -7.937081813812199 ], [ -79.298751831054688, -7.937084197998047 ], [ -79.298751831054688, -7.936806201934701 ], [ -79.299026489257812, -7.936806201934701 ], [ -79.299026489257812, -7.936250209808293 ], [ -79.299308776855469, -7.936250209808293 ], [ -79.299308776855469, -7.935694217681828 ], [ -79.299583435058594, -7.935694217681828 ], [ -79.299583435058594, -7.935416221618596 ], [ -79.299858093261719, -7.935416221618596 ], [ -79.299858093261719, -7.934860229492131 ], [ -79.300140380859375, -7.934860229492131 ], [ -79.300140380859375, -7.934306144714355 ], [ -79.300415039062443, -7.934306144714355 ], [ -79.300415039062443, -7.934028148651123 ], [ -79.300697326660099, -7.934028148651123 ], [ -79.300697326660099, -7.933472156524658 ], [ -79.300971984863224, -7.933472156524658 ], [ -79.300971984863224, -7.932916164398137 ], [ -79.301246643066349, -7.932916164398137 ], [ -79.301246643066349, -7.932640075683594 ], [ -79.302085876464844, -7.932640075683594 ], [ -79.302085876464844, -7.932359218597412 ], [ -79.302635192871094, -7.932359218597412 ], [ -79.302635192871094, -7.93208122253418 ], [ -79.30291748046875, -7.932084083557129 ], [ -79.30291748046875, -7.931806087493896 ], [ -79.303192138671875, -7.931806087493896 ], [ -79.303192138671875, -7.931528091430664 ], [ -79.303474426269418, -7.931528091430664 ], [ -79.303474426269418, -7.931249141693115 ], [ -79.303749084472599, -7.931249141693115 ], [ -79.303749084472599, -7.930971145629883 ], [ -79.304031372070256, -7.930971145629883 ], [ -79.304031372070256, -7.930696010589543 ], [ -79.304580688476562, -7.930696010589543 ], [ -79.304580688476562, -7.93041801452631 ], [ -79.304862976074219, -7.93041801452631 ], [ -79.304862976074219, -7.930140018463135 ], [ -79.305137634277344, -7.930140018463135 ], [ -79.305137634277344, -7.929861068725529 ], [ -79.305419921875, -7.929861068725529 ], [ -79.305419921875, -7.929583072662297 ], [ -79.305694580078125, -7.929583072662297 ], [ -79.305694580078125, -7.929305076599064 ], [ -79.30596923828125, -7.929305076599064 ], [ -79.30596923828125, -7.929027080535832 ], [ -79.306251525878906, -7.929027080535832 ], [ -79.306251525878906, -7.928749084472599 ], [ -79.306526184081918, -7.928749084472599 ], [ -79.306526184081918, -7.928471088409424 ], [ -79.306808471679631, -7.928471088409424 ], [ -79.306808471679631, -7.927917003631592 ], [ -79.307083129882756, -7.927917003631592 ], [ -79.307083129882756, -7.927639007568246 ], [ -79.307357788085881, -7.927639007568246 ], [ -79.307357788085881, -7.92736101150507 ], [ -79.307640075683537, -7.92736101150507 ], [ -79.307640075683537, -7.927083015441838 ], [ -79.307914733886719, -7.927083015441838 ], [ -79.307914733886719, -7.926805019378605 ], [ -79.3084716796875, -7.926805019378605 ], [ -79.3084716796875, -7.926527023315373 ], [ -79.308746337890625, -7.926527023315373 ], [ -79.308746337890625, -7.92624902725214 ], [ -79.309028625488281, -7.92624902725214 ], [ -79.309028625488281, -7.924304962158203 ], [ -79.309303283691406, -7.924304962158203 ], [ -79.309303283691406, -7.923194885253906 ], [ -79.309585571289062, -7.923194885253906 ], [ -79.309585571289062, -7.91986083984375 ], [ -79.309860229492131, -7.91986083984375 ], [ -79.309860229492131, -7.920138835906982 ], [ -79.310417175292912, -7.920138835906982 ], [ -79.310417175292912, -7.920416831970215 ], [ -79.310974121093693, -7.920416831970215 ], [ -79.310974121093693, -7.91986083984375 ], [ -79.311248779296875, -7.91986083984375 ], [ -79.311248779296875, -7.919307231903019 ], [ -79.310974121093693, -7.919304847717285 ], [ -79.310974121093693, -7.919029235839787 ], [ -79.310691833496037, -7.919029235839787 ], [ -79.310691833496037, -7.918750762939396 ], [ -79.310142517089787, -7.918750762939396 ], [ -79.310142517089787, -7.918472766876164 ], [ -79.309860229492131, -7.918472766876164 ], [ -79.309860229492131, -7.919029235839787 ], [ -79.309585571289062, -7.919029235839787 ], [ -79.309585571289062, -7.918472766876164 ], [ -79.309303283691406, -7.918472766876164 ], [ -79.309303283691406, -7.91680717468256 ], [ -79.309860229492131, -7.91680717468256 ], [ -79.309860229492131, -7.916529178619328 ], [ -79.310417175292912, -7.916529178619328 ], [ -79.310417175292912, -7.916250228881836 ], [ -79.310974121093693, -7.916250228881836 ], [ -79.310974121093693, -7.914581775665226 ], [ -79.311248779296875, -7.914581775665226 ], [ -79.311248779296875, -7.914028167724609 ], [ -79.311531066894531, -7.914028167724609 ], [ -79.311531066894531, -7.913750171661377 ], [ -79.311805725097656, -7.913750171661377 ], [ -79.311805725097656, -7.913194179534912 ], [ -79.312080383300781, -7.913194179534912 ], [ -79.312080383300781, -7.912638187408447 ], [ -79.312362670898438, -7.912638187408447 ], [ -79.312362670898438, -7.912360191345215 ], [ -79.312637329101562, -7.912360191345215 ], [ -79.312637329101562, -7.912082195281869 ], [ -79.312919616699219, -7.912084102630615 ], [ -79.312919616699219, -7.911806106567383 ], [ -79.313468933105412, -7.911806106567383 ], [ -79.313468933105412, -7.91152811050415 ], [ -79.313751220703068, -7.91152811050415 ], [ -79.313751220703068, -7.911250114440918 ], [ -79.314025878906193, -7.911250114440918 ], [ -79.314025878906193, -7.910972118377686 ], [ -79.314308166503906, -7.910972118377686 ], [ -79.314308166503906, -7.910694122314453 ], [ -79.314857482910156, -7.910694122314453 ], [ -79.314857482910156, -7.910138130187988 ], [ -79.315139770507812, -7.910140037536564 ], [ -79.315139770507812, -7.909584045410099 ], [ -79.316253662109261, -7.909584045410099 ], [ -79.316253662109261, -7.909306049346867 ], [ -79.317085266113224, -7.909306049346867 ], [ -79.317085266113224, -7.909028053283691 ], [ -79.317359924316406, -7.909028053283691 ], [ -79.317359924316406, -7.908750057220459 ], [ -79.317642211914062, -7.908750057220459 ], [ -79.317642211914062, -7.908472061157227 ], [ -79.317916870117188, -7.908472061157227 ], [ -79.317916870117188, -7.908194065093994 ], [ -79.318191528320312, -7.908194065093994 ], [ -79.318191528320312, -7.907916069030762 ], [ -79.318473815917969, -7.907916069030762 ], [ -79.318473815917969, -7.907638072967529 ], [ -79.318748474121094, -7.907638072967529 ], [ -79.318748474121094, -7.907360076904297 ], [ -79.319862365722599, -7.907361984252873 ], [ -79.319862365722599, -7.906805992126408 ], [ -79.320137023925724, -7.906805992126408 ], [ -79.320137023925724, -7.906527996063176 ], [ -79.320419311523381, -7.906527996063176 ], [ -79.320419311523381, -7.905972003936711 ], [ -79.320693969726562, -7.905972003936711 ], [ -79.320693969726562, -7.905694007873478 ], [ -79.320968627929688, -7.905694007873478 ], [ -79.320968627929688, -7.905415058135929 ], [ -79.321525573730469, -7.905415058135929 ], [ -79.321525573730469, -7.905137062072697 ], [ -79.321807861328125, -7.905137062072697 ], [ -79.321807861328125, -7.904859066009465 ], [ -79.322364807128906, -7.904861927032471 ], [ -79.322364807128906, -7.904583930969125 ], [ -79.322639465331974, -7.904583930969125 ], [ -79.322639465331974, -7.904305934905949 ], [ -79.322914123535099, -7.904305934905949 ], [ -79.322914123535099, -7.904026985168457 ], [ -79.323196411132756, -7.904026985168457 ], [ -79.323196411132756, -7.903748989105225 ], [ -79.323471069335881, -7.903748989105225 ], [ -79.323471069335881, -7.903470993041992 ], [ -79.323753356933537, -7.903470993041992 ], [ -79.323753356933537, -7.90319299697876 ], [ -79.324028015136719, -7.90319299697876 ], [ -79.324028015136719, -7.902917861938477 ], [ -79.324302673339844, -7.902917861938477 ], [ -79.324302673339844, -7.902638912200928 ], [ -79.3245849609375, -7.902638912200928 ], [ -79.3245849609375, -7.902360916137695 ], [ -79.324859619140625, -7.902360916137695 ], [ -79.324859619140625, -7.902082920074463 ], [ -79.325141906738281, -7.902082920074463 ], [ -79.325141906738281, -7.90180492401123 ], [ -79.325416564941406, -7.90180492401123 ], [ -79.325416564941406, -7.901526927947998 ], [ -79.325691223144474, -7.901526927947998 ], [ -79.325691223144474, -7.901248931884766 ], [ -79.325973510742131, -7.901248931884766 ], [ -79.325973510742131, -7.900972843170109 ], [ -79.326530456542912, -7.900972843170109 ], [ -79.326530456542912, -7.900694847106877 ], [ -79.326805114746037, -7.900694847106877 ], [ -79.326805114746037, -7.900416851043644 ], [ -79.327079772949219, -7.900416851043644 ], [ -79.327079772949219, -7.900138854980412 ], [ -79.327362060546875, -7.900138854980412 ], [ -79.327362060546875, -7.899860858917236 ], [ -79.32763671875, -7.899860858917236 ], [ -79.32763671875, -7.899582862854004 ], [ -79.327919006347656, -7.899582862854004 ], [ -79.327919006347656, -7.899304866790771 ], [ -79.328193664550781, -7.899304866790771 ], [ -79.328193664550781, -7.899026870727539 ], [ -79.329025268554631, -7.899026870727539 ], [ -79.329025268554631, -7.898748874664307 ], [ -79.329864501953068, -7.898748874664307 ], [ -79.329864501953068, -7.89847278594965 ], [ -79.33013916015625, -7.89847278594965 ], [ -79.33013916015625, -7.897916793823185 ], [ -79.330413818359375, -7.897916793823185 ], [ -79.330413818359375, -7.897360801696721 ], [ -79.330696105957031, -7.897360801696721 ], [ -79.330696105957031, -7.897082805633488 ], [ -79.330970764160156, -7.897082805633488 ], [ -79.330970764160156, -7.896526813507023 ], [ -79.331802368164062, -7.896526813507023 ], [ -79.331802368164062, -7.896248817443848 ], [ -79.332084655761605, -7.896248817443848 ], [ -79.332084655761605, -7.895692825317383 ], [ -79.332359313964787, -7.895695209503117 ], [ -79.332359313964787, -7.895417213439885 ], [ -79.332084655761605, -7.895417213439885 ], [ -79.332084655761605, -7.894583225250187 ], [ -79.332359313964787, -7.894583225250187 ], [ -79.332359313964787, -7.894027233123722 ], [ -79.332641601562443, -7.894027233123722 ], [ -79.332641601562443, -7.89374923706049 ], [ -79.332916259765568, -7.89374923706049 ], [ -79.332916259765568, -7.893473148345947 ], [ -79.33319091796875, -7.893473148345947 ], [ -79.33319091796875, -7.893195152282715 ], [ -79.334030151367188, -7.893195152282715 ], [ -79.334030151367188, -7.892917156219482 ], [ -79.334304809570312, -7.892917156219482 ], [ -79.334304809570312, -7.892361164092961 ], [ -79.334587097167969, -7.892361164092961 ], [ -79.334587097167969, -7.892083168029728 ], [ -79.335136413574105, -7.892083168029728 ], [ -79.335136413574105, -7.891804218292236 ], [ -79.335418701171818, -7.891804218292236 ], [ -79.335418701171818, -7.891526222229004 ], [ -79.335693359374943, -7.891526222229004 ], [ -79.335693359374943, -7.891248226165771 ], [ -79.335975646972599, -7.891248226165771 ], [ -79.335975646972599, -7.890970230102425 ], [ -79.336524963378906, -7.890973091125488 ], [ -79.336524963378906, -7.890695095062256 ], [ -79.336807250976562, -7.890695095062256 ], [ -79.336807250976562, -7.890416145324707 ], [ -79.337081909179688, -7.890416145324707 ], [ -79.337081909179688, -7.889860153198242 ], [ -79.337364196777344, -7.889860153198242 ], [ -79.337364196777344, -7.889307022094727 ], [ -79.337638854980469, -7.889307022094727 ], [ -79.337638854980469, -7.888750076293888 ], [ -79.337913513183594, -7.888750076293888 ], [ -79.337913513183594, -7.888194084167424 ], [ -79.340972900390625, -7.888194084167424 ], [ -79.340972900390625, -7.887360095977783 ], [ -79.34124755859375, -7.887360095977783 ], [ -79.34124755859375, -7.886528015136662 ], [ -79.341529846191406, -7.886528015136662 ], [ -79.341529846191406, -7.885972023010197 ], [ -79.341804504394474, -7.885972023010197 ], [ -79.341804504394474, -7.8851380348205 ], [ -79.342086791992131, -7.8851380348205 ], [ -79.342086791992131, -7.884583950042725 ], [ -79.342361450195256, -7.884583950042725 ], [ -79.342361450195256, -7.884305953979492 ], [ -79.342636108398381, -7.884305953979492 ], [ -79.342636108398381, -7.88402795791626 ], [ -79.342918395996094, -7.88402795791626 ], [ -79.342918395996094, -7.883749961853027 ], [ -79.343193054199219, -7.883749961853027 ], [ -79.343193054199219, -7.883193969726506 ], [ -79.343475341796875, -7.883193969726506 ], [ -79.343475341796875, -7.882915973663273 ], [ -79.34375, -7.882915973663273 ], [ -79.34375, -7.882637977600041 ], [ -79.344024658203125, -7.882637977600041 ], [ -79.344024658203125, -7.882361888885498 ], [ -79.344581604003906, -7.882361888885498 ], [ -79.344581604003906, -7.882083892822266 ], [ -79.345138549804631, -7.882083892822266 ], [ -79.345138549804631, -7.881805896759033 ], [ -79.345413208007756, -7.881805896759033 ], [ -79.345413208007756, -7.881527900695801 ], [ -79.345970153808594, -7.881527900695801 ], [ -79.345970153808594, -7.881249904632568 ], [ -79.346527099609375, -7.881249904632568 ], [ -79.346527099609375, -7.880971908569336 ], [ -79.347358703613281, -7.880971908569336 ], [ -79.347358703613281, -7.880693912506104 ], [ -79.347915649413949, -7.880693912506104 ], [ -79.347915649413949, -7.880417823791504 ], [ -79.348472595214787, -7.880417823791504 ], [ -79.348472595214787, -7.880139827728271 ], [ -79.348747253417912, -7.880139827728271 ], [ -79.348747253417912, -7.879583835601807 ], [ -79.349029541015568, -7.879583835601807 ], [ -79.349029541015568, -7.879027843475342 ], [ -79.34930419921875, -7.879027843475342 ], [ -79.34930419921875, -7.878749847412109 ], [ -79.349586486816406, -7.878749847412109 ], [ -79.349586486816406, -7.878192901611328 ], [ -79.349861145019531, -7.878192901611328 ], [ -79.349861145019531, -7.877917766570988 ], [ -79.350135803222656, -7.877917766570988 ], [ -79.350135803222656, -7.877361774444523 ], [ -79.350418090820312, -7.877361774444523 ], [ -79.350418090820312, -7.876804828643742 ], [ -79.351249694824162, -7.876804828643742 ], [ -79.351249694824162, -7.87652683258051 ], [ -79.351524353027287, -7.87652683258051 ], [ -79.351524353027287, -7.875970840454045 ], [ -79.351806640624943, -7.875970840454045 ], [ -79.351806640624943, -7.875692844390812 ], [ -79.352363586425724, -7.875692844390812 ], [ -79.352363586425724, -7.875139236450082 ], [ -79.352912902832031, -7.875139236450082 ], [ -79.352912902832031, -7.874860763549805 ], [ -79.353195190429688, -7.874860763549805 ], [ -79.353195190429688, -7.874582767486572 ], [ -79.353469848632812, -7.874582767486572 ], [ -79.353469848632812, -7.874304771423226 ], [ -79.353752136230469, -7.874304771423226 ], [ -79.353752136230469, -7.874026775360051 ], [ -79.354026794433594, -7.874026775360051 ], [ -79.354026794433594, -7.873470783233586 ], [ -79.35430908203125, -7.873470783233586 ], [ -79.35430908203125, -7.873192787170353 ], [ -79.354583740234318, -7.873195171356201 ], [ -79.354583740234318, -7.872639179229736 ], [ -79.354858398437443, -7.872639179229736 ], [ -79.354858398437443, -7.872361183166504 ], [ -79.355140686035099, -7.872361183166504 ], [ -79.355140686035099, -7.872083187103271 ], [ -79.355697631835938, -7.872083187103271 ], [ -79.355697631835938, -7.871805191040039 ], [ -79.355972290039062, -7.871805191040039 ], [ -79.355972290039062, -7.871527194976693 ], [ -79.356529235839844, -7.871527194976693 ], [ -79.356529235839844, -7.870971202850285 ], [ -79.356803894042969, -7.870973110198975 ], [ -79.356803894042969, -7.870695114135742 ], [ -79.357086181640625, -7.870695114135742 ], [ -79.357086181640625, -7.87041711807251 ], [ -79.35736083984375, -7.87041711807251 ], [ -79.35736083984375, -7.869859218597355 ], [ -79.357635498046818, -7.869859218597355 ], [ -79.357635498046818, -7.869581222534123 ], [ -79.357917785644474, -7.869583129882812 ], [ -79.357917785644474, -7.869027137756348 ], [ -79.358474731445256, -7.869027137756348 ], [ -79.358474731445256, -7.868749141693115 ], [ -79.358749389648438, -7.868751049041691 ], [ -79.358749389648438, -7.868195056915283 ], [ -79.359306335449219, -7.868195056915283 ], [ -79.359306335449219, -7.867639064788818 ], [ -79.359580993652344, -7.867639064788818 ], [ -79.359580993652344, -7.867083072662354 ], [ -79.35986328125, -7.867083072662354 ], [ -79.35986328125, -7.866805076599121 ], [ -79.360137939453125, -7.866805076599121 ], [ -79.360137939453125, -7.866527080535889 ], [ -79.360420227050781, -7.866527080535889 ], [ -79.360420227050781, -7.865970134735107 ], [ -79.360694885253793, -7.865972995758 ], [ -79.360694885253793, -7.865694999694767 ], [ -79.360969543456974, -7.865694999694767 ], [ -79.360969543456974, -7.865139007568303 ], [ -79.361251831054631, -7.865139007568303 ], [ -79.361251831054631, -7.864582061767521 ], [ -79.361526489257756, -7.864582061767521 ], [ -79.361526489257756, -7.864026069641056 ], [ -79.362083435058594, -7.864026069641056 ], [ -79.362083435058594, -7.863472938537541 ], [ -79.362358093261719, -7.863472938537541 ], [ -79.362358093261719, -7.863193988800049 ], [ -79.3629150390625, -7.863193988800049 ], [ -79.3629150390625, -7.862915992736816 ], [ -79.363471984863281, -7.862915992736816 ], [ -79.363471984863281, -7.862637996673584 ], [ -79.363746643066293, -7.862637996673584 ], [ -79.363746643066293, -7.862084865570068 ], [ -79.364028930664006, -7.862084865570068 ], [ -79.364028930664006, -7.861249923706055 ], [ -79.364303588867131, -7.861249923706055 ], [ -79.364303588867131, -7.860971927642822 ], [ -79.364585876464787, -7.860971927642822 ], [ -79.364585876464787, -7.86069393157959 ], [ -79.364860534667912, -7.86069393157959 ], [ -79.364860534667912, -7.860415935516357 ], [ -79.365135192871094, -7.860415935516357 ], [ -79.365135192871094, -7.860137939453125 ], [ -79.36541748046875, -7.860137939453125 ], [ -79.36541748046875, -7.859859943389893 ], [ -79.365692138671875, -7.859859943389893 ], [ -79.365692138671875, -7.859583854675236 ], [ -79.366249084472656, -7.859583854675236 ], [ -79.366249084472656, -7.859305858612061 ], [ -79.366531372070312, -7.859305858612061 ], [ -79.366531372070312, -7.859027862548828 ], [ -79.366806030273438, -7.859027862548828 ], [ -79.366806030273438, -7.858749866485596 ], [ -79.367080688476506, -7.858749866485596 ], [ -79.367080688476506, -7.85736179351801 ], [ -79.367919921874943, -7.85736179351801 ], [ -79.367919921874943, -7.857083797454777 ], [ -79.368194580078068, -7.857083797454777 ], [ -79.368194580078068, -7.856805801391545 ], [ -79.36846923828125, -7.856805801391545 ], [ -79.36846923828125, -7.856527805328312 ], [ -79.368751525878906, -7.856527805328312 ], [ -79.368751525878906, -7.855971813201847 ], [ -79.369026184082031, -7.855971813201847 ], [ -79.369026184082031, -7.855415821075439 ], [ -79.369308471679688, -7.855415821075439 ], [ -79.369308471679688, -7.855137825012207 ], [ -79.369583129882812, -7.855137825012207 ], [ -79.369583129882812, -7.854859828948975 ], [ -79.369857788085938, -7.854862213134709 ], [ -79.369857788085938, -7.854306221008244 ], [ -79.370140075683594, -7.854306221008244 ], [ -79.370140075683594, -7.853472232818547 ], [ -79.370414733886662, -7.853472232818547 ], [ -79.370414733886662, -7.852915763854924 ], [ -79.370140075683594, -7.852915763854924 ], [ -79.370140075683594, -7.852362155914307 ], [ -79.371528625488281, -7.852362155914307 ], [ -79.371528625488281, -7.850693225860596 ], [ -79.372085571289062, -7.850693225860596 ], [ -79.372085571289062, -7.85041522979725 ], [ -79.372360229492188, -7.85041522979725 ], [ -79.372360229492188, -7.849859237670842 ], [ -79.371803283691406, -7.849859237670842 ], [ -79.371803283691406, -7.849580764770394 ], [ -79.372085571289062, -7.849583148956299 ], [ -79.372085571289062, -7.849305152893066 ], [ -79.372360229492188, -7.849305152893066 ], [ -79.372360229492188, -7.849027156829834 ], [ -79.372642517089844, -7.849027156829834 ], [ -79.372642517089844, -7.848749160766602 ], [ -79.373191833496094, -7.848749160766602 ], [ -79.373191833496094, -7.848471164703369 ], [ -79.373474121093636, -7.848471164703369 ], [ -79.373474121093636, -7.848195075988713 ], [ -79.373748779296818, -7.848195075988713 ], [ -79.373748779296818, -7.84791707992548 ], [ -79.374031066894474, -7.84791707992548 ], [ -79.374031066894474, -7.847639083862248 ], [ -79.374305725097599, -7.847639083862248 ], [ -79.374305725097599, -7.847361087799072 ], [ -79.374580383300781, -7.847361087799072 ], [ -79.374580383300781, -7.84708309173584 ], [ -79.375137329101562, -7.84708309173584 ], [ -79.375137329101562, -7.846527099609375 ], [ -79.375419616699219, -7.846527099609375 ], [ -79.375419616699219, -7.84597110748291 ], [ -79.375968933105469, -7.84597110748291 ], [ -79.375968933105469, -7.845417022705021 ], [ -79.376251220703125, -7.845417022705021 ], [ -79.376251220703125, -7.845139026641789 ], [ -79.376808166503849, -7.845139026641789 ], [ -79.376808166503849, -7.844861030578556 ], [ -79.377082824706974, -7.844861030578556 ], [ -79.377082824706974, -7.844027042388859 ], [ -79.377357482910099, -7.844027042388859 ], [ -79.377357482910099, -7.843749046325684 ], [ -79.377639770507756, -7.843749046325684 ], [ -79.377639770507756, -7.843471050262451 ], [ -79.377914428710938, -7.843472957611084 ], [ -79.377914428710938, -7.840972900390625 ], [ -79.378196716308594, -7.840972900390625 ], [ -79.378196716308594, -7.839582920074463 ], [ -79.378471374511719, -7.839582920074463 ], [ -79.378471374511719, -7.839028835296631 ], [ -79.378753662109375, -7.839028835296631 ], [ -79.378753662109375, -7.838750839233398 ], [ -79.3790283203125, -7.838750839233398 ], [ -79.3790283203125, -7.838472843170166 ], [ -79.379302978515625, -7.838472843170166 ], [ -79.379302978515625, -7.837916851043701 ], [ -79.379585266113281, -7.837916851043701 ], [ -79.379585266113281, -7.83735990524292 ], [ -79.379859924316349, -7.83735990524292 ], [ -79.379859924316349, -7.836803913116455 ], [ -79.380142211914006, -7.836803913116455 ], [ -79.380142211914006, -7.835971832275334 ], [ -79.380416870117131, -7.835971832275334 ], [ -79.380416870117131, -7.835415840148869 ], [ -79.380691528320256, -7.835415840148869 ], [ -79.380691528320256, -7.834859848022404 ], [ -79.381248474121094, -7.834859848022404 ], [ -79.381248474121094, -7.834581851959229 ], [ -79.380973815917912, -7.834581851959229 ], [ -79.380973815917912, -7.83291578292841 ], [ -79.381248474121094, -7.83291578292841 ], [ -79.381248474121094, -7.830694198608342 ], [ -79.38153076171875, -7.830694198608342 ], [ -79.38153076171875, -7.829582214355412 ], [ -79.381805419921875, -7.829582214355412 ], [ -79.381805419921875, -7.828748226165715 ], [ -79.382080078125, -7.828748226165715 ], [ -79.382080078125, -7.828470230102482 ], [ -79.382362365722656, -7.828472137451172 ], [ -79.382362365722656, -7.828194141387939 ], [ -79.382637023925781, -7.828194141387939 ], [ -79.382637023925781, -7.827916145324707 ], [ -79.382919311523438, -7.827916145324707 ], [ -79.382919311523438, -7.827360153198129 ], [ -79.383193969726506, -7.827360153198129 ], [ -79.383193969726506, -7.827082157134953 ], [ -79.383468627929631, -7.827084064483643 ], [ -79.383468627929631, -7.82680606842041 ], [ -79.383750915527287, -7.82680606842041 ], [ -79.383750915527287, -7.826528072357178 ], [ -79.384025573730412, -7.826528072357178 ], [ -79.384025573730412, -7.825972080230713 ], [ -79.384307861328125, -7.825972080230713 ], [ -79.384307861328125, -7.824862003326359 ], [ -79.38458251953125, -7.824862003326359 ], [ -79.38458251953125, -7.823749065399113 ], [ -79.384864807128906, -7.823749065399113 ], [ -79.384864807128906, -7.823193073272648 ], [ -79.38458251953125, -7.823193073272648 ], [ -79.38458251953125, -7.822917938232365 ], [ -79.384307861328125, -7.822917938232365 ], [ -79.384307861328125, -7.822639942169133 ], [ -79.383468627929631, -7.822639942169133 ], [ -79.383468627929631, -7.822917938232365 ], [ -79.382919311523438, -7.822917938232365 ], [ -79.382919311523438, -7.823193073272648 ], [ -79.382637023925781, -7.823193073272648 ], [ -79.382637023925781, -7.823471069335881 ], [ -79.382362365722656, -7.823471069335881 ], [ -79.382362365722656, -7.823749065399113 ], [ -79.381805419921875, -7.823749065399113 ], [ -79.381805419921875, -7.819860935211182 ], [ -79.382080078125, -7.819860935211182 ], [ -79.382080078125, -7.819026947021484 ], [ -79.382362365722656, -7.819026947021484 ], [ -79.382362365722656, -7.81819486618042 ], [ -79.382637023925781, -7.81819486618042 ], [ -79.382637023925781, -7.817638874053955 ], [ -79.382919311523438, -7.817638874053955 ], [ -79.382919311523438, -7.81708288192749 ], [ -79.383193969726506, -7.81708288192749 ], [ -79.383193969726506, -7.816526889801025 ], [ -79.383468627929631, -7.816526889801025 ], [ -79.383468627929631, -7.816248893737793 ], [ -79.383750915527287, -7.816248893737793 ], [ -79.383750915527287, -7.815972805023137 ], [ -79.384025573730412, -7.815972805023137 ], [ -79.384025573730412, -7.815416812896672 ], [ -79.384307861328125, -7.815416812896672 ], [ -79.384307861328125, -7.815138816833496 ], [ -79.38458251953125, -7.815138816833496 ], [ -79.38458251953125, -7.814860820770264 ], [ -79.384864807128906, -7.814860820770264 ], [ -79.384864807128906, -7.813751220703068 ], [ -79.385139465332031, -7.813751220703068 ], [ -79.385139465332031, -7.813473224639836 ], [ -79.384864807128906, -7.813473224639836 ], [ -79.384864807128906, -7.813195228576603 ], [ -79.385139465332031, -7.813195228576603 ], [ -79.385139465332031, -7.812917232513371 ], [ -79.385414123535156, -7.812917232513371 ], [ -79.385414123535156, -7.812639236450138 ], [ -79.385696411132812, -7.812639236450138 ], [ -79.385696411132812, -7.812360763549748 ], [ -79.38625335693348, -7.812360763549748 ], [ -79.38625335693348, -7.812082767486515 ], [ -79.386528015136662, -7.812082767486515 ], [ -79.386528015136662, -7.811807155609131 ], [ -79.386802673339787, -7.811807155609131 ], [ -79.386802673339787, -7.811529159545785 ], [ -79.387916564941406, -7.811529159545785 ], [ -79.387916564941406, -7.811807155609131 ], [ -79.38930511474598, -7.811807155609131 ], [ -79.38930511474598, -7.811529159545785 ], [ -79.389030456542969, -7.811529159545785 ], [ -79.389030456542969, -7.810973167419377 ], [ -79.388748168945312, -7.810973167419377 ], [ -79.388748168945312, -7.807638168334961 ], [ -79.389030456542969, -7.807638168334961 ], [ -79.389030456542969, -7.807082176208496 ], [ -79.38930511474598, -7.807082176208496 ], [ -79.38930511474598, -7.806250095367432 ], [ -79.389030456542969, -7.806250095367432 ], [ -79.389030456542969, -7.805138111114502 ], [ -79.388748168945312, -7.805138111114502 ], [ -79.388748168945312, -7.804584026336613 ], [ -79.388191223144531, -7.804584026336613 ], [ -79.388191223144531, -7.804306030273381 ], [ -79.387916564941406, -7.804306030273381 ], [ -79.387916564941406, -7.804028034210148 ], [ -79.387359619140625, -7.804028034210148 ], [ -79.387359619140625, -7.803750038146916 ], [ -79.386802673339787, -7.803750038146916 ], [ -79.386802673339787, -7.803472042083683 ], [ -79.386528015136662, -7.803472042083683 ], [ -79.386528015136662, -7.803194046020508 ], [ -79.385971069335938, -7.803194046020508 ], [ -79.385971069335938, -7.801805973052922 ], [ -79.38625335693348, -7.801805973052922 ], [ -79.38625335693348, -7.801527976989689 ], [ -79.386528015136662, -7.801527976989689 ], [ -79.386528015136662, -7.801249980926457 ], [ -79.386802673339787, -7.801249980926457 ], [ -79.386802673339787, -7.800971984863224 ], [ -79.38625335693348, -7.800971984863224 ], [ -79.38625335693348, -7.80041599273676 ], [ -79.385971069335938, -7.80041599273676 ], [ -79.385971069335938, -7.800137996673527 ], [ -79.385414123535156, -7.800137996673527 ], [ -79.385414123535156, -7.799860000610295 ], [ -79.385139465332031, -7.799861907958984 ], [ -79.385139465332031, -7.799583911895752 ], [ -79.384864807128906, -7.799583911895752 ], [ -79.384864807128906, -7.79930591583252 ], [ -79.385139465332031, -7.79930591583252 ], [ -79.385139465332031, -7.798749923705941 ], [ -79.385414123535156, -7.798749923705941 ], [ -79.385414123535156, -7.798193931579533 ], [ -79.385696411132812, -7.798193931579533 ], [ -79.385696411132812, -7.79791784286499 ], [ -79.386528015136662, -7.797914981842041 ], [ -79.386528015136662, -7.797639846801758 ], [ -79.387641906738281, -7.797639846801758 ], [ -79.387641906738281, -7.797361850738525 ], [ -79.388473510742188, -7.797361850738525 ], [ -79.388473510742188, -7.797083854675293 ], [ -79.388748168945312, -7.797083854675293 ], [ -79.388748168945312, -7.796805858612061 ], [ -79.389030456542969, -7.796805858612061 ], [ -79.389030456542969, -7.796526908874512 ], [ -79.38930511474598, -7.796526908874512 ], [ -79.38930511474598, -7.796248912811279 ], [ -79.389579772949162, -7.796248912811279 ], [ -79.389579772949162, -7.795970916748047 ], [ -79.389862060546818, -7.795970916748047 ], [ -79.389862060546818, -7.795692920684814 ], [ -79.390136718749943, -7.795692920684814 ], [ -79.390136718749943, -7.795417785644531 ], [ -79.390419006347599, -7.795417785644531 ], [ -79.390419006347599, -7.794860839843693 ], [ -79.390693664550781, -7.794860839843693 ], [ -79.390693664550781, -7.794304847717228 ], [ -79.390975952148438, -7.794304847717228 ], [ -79.390975952148438, -7.794026851654053 ], [ -79.391250610351562, -7.794026851654053 ], [ -79.391250610351562, -7.793470859527588 ], [ -79.391525268554688, -7.793470859527588 ], [ -79.391525268554688, -7.793194770812875 ], [ -79.391807556152344, -7.793194770812875 ], [ -79.391807556152344, -7.792638778686467 ], [ -79.392082214355469, -7.792638778686467 ], [ -79.392082214355469, -7.792082786560002 ], [ -79.392364501953125, -7.792082786560002 ], [ -79.392364501953125, -7.791804790496769 ], [ -79.392913818359318, -7.791804790496769 ], [ -79.392913818359318, -7.791526794433537 ], [ -79.393470764160099, -7.791526794433537 ], [ -79.393470764160099, -7.791251182556152 ], [ -79.393753051757756, -7.791248798370304 ], [ -79.393753051757756, -7.790970802307072 ], [ -79.394302368164062, -7.79097318649292 ], [ -79.394302368164062, -7.790695190429688 ], [ -79.394859313964844, -7.790695190429688 ], [ -79.394859313964844, -7.790417194366341 ], [ -79.3951416015625, -7.790417194366341 ], [ -79.3951416015625, -7.789861202239933 ], [ -79.395416259765625, -7.789861202239933 ], [ -79.395416259765625, -7.789305210113469 ], [ -79.395690917968693, -7.789305210113469 ], [ -79.395690917968693, -7.788749217987004 ], [ -79.396247863769474, -7.788749217987004 ], [ -79.396247863769474, -7.788471221923771 ], [ -79.396530151367131, -7.788471221923771 ], [ -79.396530151367131, -7.788193225860539 ], [ -79.397087097167969, -7.788193225860539 ], [ -79.397087097167969, -7.787915229797306 ], [ -79.397361755371094, -7.787915229797306 ], [ -79.397361755371094, -7.787637233734131 ], [ -79.397918701171875, -7.787637233734131 ], [ -79.397918701171875, -7.787361145019531 ], [ -79.398193359375, -7.787361145019531 ], [ -79.398193359375, -7.787083148956299 ], [ -79.398475646972656, -7.787083148956299 ], [ -79.398475646972656, -7.786527156829777 ], [ -79.398750305175781, -7.786527156829777 ], [ -79.398750305175781, -7.785971164703312 ], [ -79.399024963378849, -7.785973072052002 ], [ -79.399024963378849, -7.785417079925537 ], [ -79.399307250976506, -7.785417079925537 ], [ -79.399307250976506, -7.785139083862305 ], [ -79.399581909179631, -7.785139083862305 ], [ -79.399581909179631, -7.784861087799072 ], [ -79.399864196777287, -7.784861087799072 ], [ -79.399864196777287, -7.78458309173584 ], [ -79.400413513183594, -7.78458309173584 ], [ -79.400413513183594, -7.784304141998291 ], [ -79.40069580078125, -7.784304141998291 ], [ -79.40069580078125, -7.784029006957951 ], [ -79.400970458984375, -7.784029006957951 ], [ -79.400970458984375, -7.783751010894775 ], [ -79.401252746582031, -7.783751010894775 ], [ -79.401252746582031, -7.783473014831543 ], [ -79.401527404785156, -7.783473014831543 ], [ -79.401527404785156, -7.783195018768311 ], [ -79.401802062988281, -7.783195018768311 ], [ -79.401802062988281, -7.782916069030705 ], [ -79.402084350585824, -7.782916069030705 ], [ -79.402084350585824, -7.782638072967472 ], [ -79.402359008789006, -7.782638072967472 ], [ -79.402359008789006, -7.78236007690424 ], [ -79.402641296386662, -7.78236007690424 ], [ -79.402641296386662, -7.782084941863957 ], [ -79.402915954589787, -7.782084941863957 ], [ -79.402915954589787, -7.781806945800724 ], [ -79.403190612792969, -7.781806945800724 ], [ -79.403198242187443, -7.781528949737492 ], [ -79.403472900390625, -7.781528949737492 ], [ -79.403472900390625, -7.781249999999886 ], [ -79.40374755859375, -7.781249999999886 ], [ -79.40374755859375, -7.780972003936711 ], [ -79.404029846191406, -7.780972003936711 ], [ -79.404029846191406, -7.780694007873478 ], [ -79.404304504394531, -7.780694007873478 ], [ -79.404304504394531, -7.780416011810246 ], [ -79.404586791992188, -7.780416011810246 ], [ -79.404586791992188, -7.780138015747013 ], [ -79.404861450195312, -7.780138015747013 ], [ -79.404861450195312, -7.779860019683781 ], [ -79.405136108398324, -7.779860019683781 ], [ -79.405136108398324, -7.779583930969238 ], [ -79.405418395996037, -7.779583930969238 ], [ -79.405418395996037, -7.779027938842773 ], [ -79.405693054199162, -7.779027938842773 ], [ -79.405693054199162, -7.778749942779541 ], [ -79.405975341796818, -7.778749942779541 ], [ -79.405975341796818, -7.778471946716309 ], [ -79.40625, -7.778471946716309 ], [ -79.40625, -7.777915954589844 ], [ -79.406524658203125, -7.777915954589844 ], [ -79.406524658203125, -7.777637958526498 ], [ -79.406806945800781, -7.777637958526498 ], [ -79.406806945800781, -7.777359962463322 ], [ -79.407081604003906, -7.777359962463322 ], [ -79.407081604003906, -7.777083873748779 ], [ -79.407638549804688, -7.777083873748779 ], [ -79.407638549804688, -7.776805877685547 ], [ -79.407913208007812, -7.776805877685547 ], [ -79.407913208007812, -7.776527881622314 ], [ -79.408470153808537, -7.776527881622314 ], [ -79.408470153808537, -7.776249885559082 ], [ -79.408752441406193, -7.776249885559082 ], [ -79.408752441406193, -7.775415897369385 ], [ -79.409027099609318, -7.775415897369385 ], [ -79.409027099609318, -7.77458381652832 ], [ -79.409858703613281, -7.77458381652832 ], [ -79.409858703613281, -7.774305820465088 ], [ -79.410697937011719, -7.774305820465088 ], [ -79.410697937011719, -7.774027824401855 ], [ -79.410972595214844, -7.774027824401855 ], [ -79.410972595214844, -7.773471832275391 ], [ -79.411247253417969, -7.773471832275391 ], [ -79.411247253417969, -7.773193836212158 ], [ -79.411529541015625, -7.773193836212158 ], [ -79.411529541015625, -7.77291822433466 ], [ -79.411804199218693, -7.77291822433466 ], [ -79.411804199218693, -7.772362232208195 ], [ -79.412086486816349, -7.772362232208195 ], [ -79.412086486816349, -7.772084236144963 ], [ -79.412361145019474, -7.772084236144963 ], [ -79.412361145019474, -7.771805763244572 ], [ -79.412635803222599, -7.771805763244572 ], [ -79.412635803222599, -7.771249771118107 ], [ -79.412918090820312, -7.771249771118107 ], [ -79.412918090820312, -7.770971775054932 ], [ -79.414024353027344, -7.770971775054932 ], [ -79.414024353027344, -7.770418167114201 ], [ -79.413749694824219, -7.770418167114201 ], [ -79.413749694824219, -7.769862174987736 ], [ -79.414024353027344, -7.769862174987736 ], [ -79.414024353027344, -7.769584178924504 ], [ -79.414306640625, -7.769584178924504 ], [ -79.414306640625, -7.769305229186898 ], [ -79.414581298828125, -7.769305229186898 ], [ -79.414581298828125, -7.769027233123722 ], [ -79.414863586425668, -7.769027233123722 ], [ -79.414863586425668, -7.76874923706049 ], [ -79.415138244628849, -7.76874923706049 ], [ -79.415138244628849, -7.768470764160043 ], [ -79.415412902831974, -7.768470764160043 ], [ -79.415412902831974, -7.768192768096867 ], [ -79.415695190429631, -7.768192768096867 ], [ -79.415695190429631, -7.767918109893799 ], [ -79.415969848632812, -7.767918109893799 ], [ -79.415969848632812, -7.76763916015625 ], [ -79.416252136230469, -7.76763916015625 ], [ -79.416252136230469, -7.767361164093018 ], [ -79.417083740234375, -7.767361164093018 ], [ -79.417083740234375, -7.76763916015625 ], [ -79.417915344238168, -7.76763916015625 ], [ -79.417915344238168, -7.766249179840088 ], [ -79.418197631835881, -7.766249179840088 ], [ -79.418197631835881, -7.765971183776855 ], [ -79.418472290039006, -7.765971183776855 ], [ -79.418472290039006, -7.765695095062256 ], [ -79.418746948242131, -7.765695095062256 ], [ -79.418746948242131, -7.765417098999023 ], [ -79.419029235839787, -7.765417098999023 ], [ -79.419029235839787, -7.765139102935791 ], [ -79.419303894042969, -7.765139102935791 ], [ -79.419303894042969, -7.764583110809326 ], [ -79.419586181640625, -7.764583110809326 ], [ -79.419586181640625, -7.764305114746094 ], [ -79.41986083984375, -7.764305114746094 ], [ -79.41986083984375, -7.764027118682861 ], [ -79.420135498046875, -7.764027118682861 ], [ -79.420135498046875, -7.763749122619629 ], [ -79.420417785644531, -7.763749122619629 ], [ -79.420417785644531, -7.763471126556396 ], [ -79.420692443847656, -7.763473033904972 ], [ -79.420692443847656, -7.76319503784174 ], [ -79.420974731445312, -7.76319503784174 ], [ -79.420974731445312, -7.762917041778508 ], [ -79.421524047851506, -7.762917041778508 ], [ -79.421524047851506, -7.762639045715332 ], [ -79.421806335449162, -7.762639045715332 ], [ -79.421806335449162, -7.7623610496521 ], [ -79.422080993652287, -7.7623610496521 ], [ -79.422080993652287, -7.762083053588867 ], [ -79.422637939453125, -7.762083053588867 ], [ -79.422637939453125, -7.761805057525635 ], [ -79.422920227050781, -7.761805057525635 ], [ -79.422920227050781, -7.761528968810978 ], [ -79.423194885253906, -7.761527061462402 ], [ -79.423194885253906, -7.76124906539917 ], [ -79.423469543457031, -7.76124906539917 ], [ -79.423469543457031, -7.760971069335938 ], [ -79.424026489257812, -7.760972976684513 ], [ -79.424026489257812, -7.760694980621281 ], [ -79.424308776855469, -7.760694980621281 ], [ -79.424308776855469, -7.760416984558049 ], [ -79.424583435058537, -7.760416984558049 ], [ -79.424583435058537, -7.760138988494816 ], [ -79.425140380859318, -7.760138988494816 ], [ -79.425140380859318, -7.759860992431584 ], [ -79.425415039062443, -7.759860992431584 ], [ -79.425415039062443, -7.759582996368351 ], [ -79.425697326660156, -7.759582996368351 ], [ -79.425697326660156, -7.759305000305119 ], [ -79.425971984863281, -7.759305000305119 ], [ -79.425971984863281, -7.759027004241943 ], [ -79.426246643066406, -7.759027004241943 ], [ -79.426246643066406, -7.758749008178711 ], [ -79.426528930664062, -7.758750915527344 ], [ -79.426528930664062, -7.758472919464111 ], [ -79.427085876464844, -7.758472919464111 ], [ -79.427085876464844, -7.758194923400765 ], [ -79.427360534667969, -7.758194923400765 ], [ -79.427360534667969, -7.75791692733759 ], [ -79.427635192871037, -7.75791692733759 ], [ -79.427635192871037, -7.757638931274357 ], [ -79.427917480468693, -7.757638931274357 ], [ -79.427917480468693, -7.7568039894104 ], [ -79.428192138671818, -7.7568039894104 ], [ -79.428192138671818, -7.756528854370117 ], [ -79.429031372070312, -7.756528854370117 ], [ -79.429031372070312, -7.756250858306885 ], [ -79.429580688476562, -7.756250858306885 ], [ -79.429580688476562, -7.755972862243652 ], [ -79.430969238281193, -7.755972862243652 ], [ -79.430969238281193, -7.754303932189941 ], [ -79.431526184081974, -7.754303932189941 ], [ -79.431526184081974, -7.754027843475285 ], [ -79.431808471679631, -7.754027843475285 ], [ -79.431808471679631, -7.753749847412053 ], [ -79.432357788085938, -7.753749847412053 ], [ -79.432357788085938, -7.753471851348877 ], [ -79.432640075683594, -7.753471851348877 ], [ -79.432640075683594, -7.753193855285645 ], [ -79.433197021484375, -7.753193855285645 ], [ -79.433197021484375, -7.752915859222412 ], [ -79.4334716796875, -7.752915859222412 ], [ -79.4334716796875, -7.75263786315918 ], [ -79.434028625488224, -7.75263786315918 ], [ -79.434028625488224, -7.752361774444523 ], [ -79.434303283691349, -7.752361774444523 ], [ -79.434303283691349, -7.752083778381291 ], [ -79.434860229492131, -7.752083778381291 ], [ -79.434860229492131, -7.751805782318058 ], [ -79.435142517089787, -7.751805782318058 ], [ -79.435142517089787, -7.751527786254826 ], [ -79.436531066894531, -7.751527786254826 ], [ -79.436531066894531, -7.751249790191594 ], [ -79.436805725097656, -7.751249790191594 ], [ -79.436805725097656, -7.750693798065129 ], [ -79.437080383300724, -7.750693798065129 ], [ -79.437080383300724, -7.750137805938664 ], [ -79.437362670898381, -7.750137805938664 ], [ -79.437362670898381, -7.749581813812256 ], [ -79.438194274902287, -7.74958419799799 ], [ -79.438194274902287, -7.749306201934758 ], [ -79.438751220703125, -7.749306201934758 ], [ -79.438751220703125, -7.74847221374506 ], [ -79.438468933105469, -7.74847221374506 ], [ -79.438468933105469, -7.747638225555363 ], [ -79.43902587890625, -7.747638225555363 ], [ -79.43902587890625, -7.747360229492131 ], [ -79.439857482910156, -7.747360229492131 ], [ -79.439857482910156, -7.747082233428955 ], [ -79.440414428710881, -7.747082233428955 ], [ -79.440414428710881, -7.746528148651123 ], [ -79.440696716308537, -7.746528148651123 ], [ -79.440696716308537, -7.745972156524601 ], [ -79.440971374511662, -7.745972156524601 ], [ -79.440971374511662, -7.745140075683594 ], [ -79.441253662109318, -7.745138168334904 ], [ -79.441253662109318, -7.744581222534066 ], [ -79.442642211914062, -7.744584083557129 ], [ -79.442642211914062, -7.744306087493896 ], [ -79.442916870117188, -7.744306087493896 ], [ -79.442916870117188, -7.743750095367432 ], [ -79.444305419921818, -7.743750095367432 ], [ -79.444305419921818, -7.7431960105896 ], [ -79.444580078125, -7.7431960105896 ], [ -79.444580078125, -7.742362022399902 ], [ -79.444862365722656, -7.742362022399902 ], [ -79.444862365722656, -7.741805076599064 ], [ -79.445419311523438, -7.741805076599064 ], [ -79.445419311523438, -7.741527080535889 ], [ -79.445693969726562, -7.741527080535889 ], [ -79.445693969726562, -7.741249084472656 ], [ -79.446250915527344, -7.741249084472656 ], [ -79.446250915527344, -7.740971088409424 ], [ -79.446525573730355, -7.740971088409424 ], [ -79.446525573730355, -7.740695953369084 ], [ -79.446807861328068, -7.740695953369084 ], [ -79.446807861328068, -7.740417003631535 ], [ -79.447082519531193, -7.740417003631535 ], [ -79.447082519531193, -7.740139007568303 ], [ -79.447364807128849, -7.740139007568303 ], [ -79.447364807128849, -7.73986101150507 ], [ -79.447639465331974, -7.73986101150507 ], [ -79.447639465331974, -7.739583015441838 ], [ -79.447914123535156, -7.739583015441838 ], [ -79.447914123535156, -7.739027023315373 ], [ -79.448196411132812, -7.739027023315373 ], [ -79.448196411132812, -7.738194942474365 ], [ -79.448471069335938, -7.738194942474365 ], [ -79.448471069335938, -7.737082958221322 ], [ -79.448753356933594, -7.737082958221322 ], [ -79.448753356933594, -7.736804962158146 ], [ -79.449028015136719, -7.736804962158146 ], [ -79.449028015136719, -7.736526966094914 ], [ -79.4495849609375, -7.736526966094914 ], [ -79.4495849609375, -7.736248970031681 ], [ -79.450141906738224, -7.736248970031681 ], [ -79.450141906738224, -7.735972881317139 ], [ -79.450691223144474, -7.735972881317139 ], [ -79.450691223144474, -7.735694885253906 ], [ -79.450973510742131, -7.735694885253906 ], [ -79.450973510742131, -7.735138893127441 ], [ -79.451248168945312, -7.735138893127441 ], [ -79.451248168945312, -7.734860897064209 ], [ -79.451530456542969, -7.734860897064209 ], [ -79.451530456542969, -7.734582901000977 ], [ -79.452079772949219, -7.734582901000977 ], [ -79.452079772949219, -7.734304904937744 ], [ -79.45263671875, -7.734304904937744 ], [ -79.45263671875, -7.734026908874512 ], [ -79.453193664550724, -7.734026908874512 ], [ -79.453193664550724, -7.733750820159912 ], [ -79.453475952148381, -7.733750820159912 ], [ -79.453475952148381, -7.733194828033447 ], [ -79.453750610351506, -7.733194828033447 ], [ -79.453750610351506, -7.732638835906982 ], [ -79.454025268554631, -7.732638835906982 ], [ -79.454025268554631, -7.732082843780518 ], [ -79.454307556152344, -7.732082843780518 ], [ -79.454307556152344, -7.731529235839787 ], [ -79.45513916015625, -7.731529235839787 ], [ -79.45513916015625, -7.731250762939396 ], [ -79.454864501953125, -7.731250762939396 ], [ -79.454864501953125, -7.730972766876164 ], [ -79.45513916015625, -7.730972766876164 ], [ -79.45513916015625, -7.730694770812931 ], [ -79.455413818359375, -7.730694770812931 ], [ -79.455413818359375, -7.730416774749756 ], [ -79.455696105957031, -7.730416774749756 ], [ -79.455696105957031, -7.72930717468256 ], [ -79.456253051757699, -7.72930717468256 ], [ -79.456253051757699, -7.728751182556096 ], [ -79.456527709960881, -7.728751182556096 ], [ -79.456527709960881, -7.728473186492863 ], [ -79.456802368164006, -7.728473186492863 ], [ -79.456802368164006, -7.728194236755314 ], [ -79.457359313964844, -7.728194236755314 ], [ -79.457359313964844, -7.727637767791691 ], [ -79.4576416015625, -7.727637767791691 ], [ -79.4576416015625, -7.726806163787842 ], [ -79.457916259765625, -7.726806163787842 ], [ -79.457916259765625, -7.726250171661377 ], [ -79.45819091796875, -7.726250171661377 ], [ -79.45819091796875, -7.725972175598145 ], [ -79.458473205566406, -7.725972175598145 ], [ -79.458473205566406, -7.72541618347168 ], [ -79.458747863769531, -7.72541618347168 ], [ -79.458747863769531, -7.724860191345158 ], [ -79.459304809570199, -7.724860191345158 ], [ -79.459304809570199, -7.724582195281926 ], [ -79.460136413574162, -7.724582195281926 ], [ -79.460136413574162, -7.724306106567383 ], [ -79.460418701171818, -7.724306106567383 ], [ -79.460418701171818, -7.723750114440918 ], [ -79.460693359375, -7.723750114440918 ], [ -79.460693359375, -7.723472118377686 ], [ -79.460975646972656, -7.723472118377686 ], [ -79.460975646972656, -7.723194122314453 ], [ -79.461250305175781, -7.723194122314453 ], [ -79.461250305175781, -7.722638130187988 ], [ -79.461524963378906, -7.722640037536564 ], [ -79.461524963378906, -7.722084045410156 ], [ -79.461807250976562, -7.722084045410156 ], [ -79.461807250976562, -7.721528053283691 ], [ -79.462081909179688, -7.721528053283691 ], [ -79.462081909179688, -7.721250057220459 ], [ -79.462364196777344, -7.721250057220459 ], [ -79.462364196777344, -7.720972061157227 ], [ -79.462638854980412, -7.720972061157227 ], [ -79.462638854980412, -7.720416069030762 ], [ -79.462913513183537, -7.720416069030762 ], [ -79.462913513183537, -7.720138072967529 ], [ -79.463195800781193, -7.720138072967529 ], [ -79.463195800781193, -7.719860076904297 ], [ -79.463752746581974, -7.719861984252873 ], [ -79.463752746581974, -7.71958398818964 ], [ -79.464027404785156, -7.71958398818964 ], [ -79.464027404785156, -7.71875 ], [ -79.464302062988281, -7.71875 ], [ -79.464302062988281, -7.718472003936768 ], [ -79.464584350585938, -7.718472003936768 ], [ -79.464584350585938, -7.718194007873535 ], [ -79.464859008789062, -7.718194007873535 ], [ -79.464859008789062, -7.717916011810303 ], [ -79.465141296386719, -7.717916011810303 ], [ -79.465141296386719, -7.717637062072697 ], [ -79.465415954589844, -7.717637062072697 ], [ -79.465415954589844, -7.717359066009465 ], [ -79.465690612792912, -7.717361927032414 ], [ -79.4656982421875, -7.717083930969181 ], [ -79.465972900390568, -7.717083930969181 ], [ -79.465972900390568, -7.716805934905949 ], [ -79.466247558593693, -7.716805934905949 ], [ -79.466247558593693, -7.715692996978703 ], [ -79.465972900390568, -7.715692996978703 ], [ -79.465972900390568, -7.713748931884766 ], [ -79.466247558593693, -7.713748931884766 ], [ -79.466247558593693, -7.712916851043701 ], [ -79.467361450195312, -7.712916851043701 ], [ -79.467361450195312, -7.712638854980469 ], [ -79.467636108398438, -7.712638854980469 ], [ -79.467636108398438, -7.712360858917236 ], [ -79.468193054199219, -7.712360858917236 ], [ -79.468193054199219, -7.712082862854004 ], [ -79.468475341796875, -7.712082862854004 ], [ -79.468475341796875, -7.711804866790771 ], [ -79.46875, -7.711804866790771 ], [ -79.46875, -7.711526870727539 ], [ -79.469024658203068, -7.711526870727539 ], [ -79.469024658203068, -7.711248874664307 ], [ -79.469306945800724, -7.711248874664307 ], [ -79.469306945800724, -7.710138797759953 ], [ -79.467086791992188, -7.710138797759953 ], [ -79.467086791992188, -7.710416793823185 ], [ -79.464302062988281, -7.710416793823185 ], [ -79.464302062988281, -7.710138797759953 ], [ -79.464027404785156, -7.710138797759953 ], [ -79.464027404785156, -7.709860801696721 ], [ -79.463752746581974, -7.709860801696721 ], [ -79.463752746581974, -7.709304809570312 ], [ -79.463195800781193, -7.709304809570312 ], [ -79.463195800781193, -7.70902681350708 ], [ -79.462364196777344, -7.70902681350708 ], [ -79.462364196777344, -7.708751201629582 ], [ -79.461807250976562, -7.708748817443848 ], [ -79.461807250976562, -7.708473205566349 ], [ -79.460975646972656, -7.708473205566349 ], [ -79.460975646972656, -7.708195209503117 ], [ -79.460418701171818, -7.708195209503117 ], [ -79.460418701171818, -7.707917213439885 ], [ -79.460136413574162, -7.707917213439885 ], [ -79.460136413574162, -7.707639217376652 ], [ -79.459587097167912, -7.707639217376652 ], [ -79.459587097167912, -7.70736122131342 ], [ -79.459304809570199, -7.70736122131342 ], [ -79.459304809570199, -7.707083225250187 ], [ -79.459030151367188, -7.707083225250187 ], [ -79.459030151367188, -7.706805229186955 ], [ -79.45819091796875, -7.706805229186955 ], [ -79.45819091796875, -7.706527233123779 ], [ -79.4576416015625, -7.706527233123779 ], [ -79.4576416015625, -7.706249237060547 ], [ -79.456802368164006, -7.706249237060547 ], [ -79.456802368164006, -7.705970764160099 ], [ -79.456253051757699, -7.705970764160099 ], [ -79.456253051757699, -7.706249237060547 ], [ -79.455696105957031, -7.706249237060547 ], [ -79.455696105957031, -7.705970764160099 ], [ -79.454025268554631, -7.705970764160099 ], [ -79.454025268554631, -7.705695152282601 ], [ -79.453750610351506, -7.705695152282601 ], [ -79.453750610351506, -7.705417156219426 ], [ -79.453475952148381, -7.705417156219426 ], [ -79.453475952148381, -7.705139160156193 ], [ -79.453193664550724, -7.705139160156193 ], [ -79.453193664550724, -7.704583168029728 ], [ -79.452919006347656, -7.704583168029728 ], [ -79.452919006347656, -7.704305171966496 ], [ -79.45263671875, -7.704305171966496 ], [ -79.45263671875, -7.70402622222889 ], [ -79.450973510742131, -7.70402622222889 ], [ -79.450973510742131, -7.703748226165715 ], [ -79.450691223144474, -7.703748226165715 ], [ -79.450691223144474, -7.703470230102482 ], [ -79.450141906738224, -7.703473091125488 ], [ -79.450141906738224, -7.703195095062256 ], [ -79.4495849609375, -7.703195095062256 ], [ -79.4495849609375, -7.702917098999023 ], [ -79.448753356933594, -7.702917098999023 ], [ -79.448753356933594, -7.703473091125488 ], [ -79.448471069335938, -7.703470230102482 ], [ -79.448471069335938, -7.703748226165715 ], [ -79.448196411132812, -7.703748226165715 ], [ -79.448196411132812, -7.70402622222889 ], [ -79.447914123535156, -7.70402622222889 ], [ -79.447914123535156, -7.703748226165715 ], [ -79.447639465331974, -7.703751087188721 ], [ -79.447639465331974, -7.703195095062256 ], [ -79.447364807128849, -7.703195095062256 ], [ -79.447364807128849, -7.702917098999023 ], [ -79.447082519531193, -7.702917098999023 ], [ -79.447082519531193, -7.702360153198242 ], [ -79.446807861328068, -7.702360153198242 ], [ -79.446807861328068, -7.702085018157959 ], [ -79.445693969726562, -7.70208215713501 ], [ -79.445693969726562, -7.701807022094727 ], [ -79.445137023925781, -7.701807022094727 ], [ -79.445137023925781, -7.701529026031494 ], [ -79.444862365722656, -7.701529026031494 ], [ -79.444862365722656, -7.701251029968262 ], [ -79.443473815917855, -7.701251029968262 ], [ -79.443473815917855, -7.701529026031494 ], [ -79.442359924316406, -7.701529026031494 ], [ -79.442359924316406, -7.702360153198242 ], [ -79.4415283203125, -7.702360153198242 ], [ -79.4415283203125, -7.702085018157959 ], [ -79.440696716308537, -7.70208215713501 ], [ -79.440696716308537, -7.701529026031494 ], [ -79.440414428710881, -7.701529026031494 ], [ -79.440414428710881, -7.700972080230713 ], [ -79.440139770507812, -7.700972080230713 ], [ -79.440139770507812, -7.700776100158635 ], [ -79.440139770507812, -7.700416088104248 ], [ -79.439857482910156, -7.700416088104248 ], [ -79.439857482910156, -7.699860095977783 ], [ -79.439582824707031, -7.699860095977783 ], [ -79.439582824707031, -7.699584007263127 ], [ -79.439308166503906, -7.699584007263127 ], [ -79.439308166503906, -7.699028015136662 ], [ -79.43902587890625, -7.699028015136662 ], [ -79.43902587890625, -7.698750019073429 ], [ -79.438751220703125, -7.698750019073429 ], [ -79.438751220703125, -7.698472023010197 ], [ -79.438468933105469, -7.698472023010197 ], [ -79.438468933105469, -7.697916030883732 ], [ -79.438194274902287, -7.697916030883732 ], [ -79.438194274902287, -7.6976380348205 ], [ -79.437919616699162, -7.6976380348205 ], [ -79.437919616699162, -7.697360038757324 ], [ -79.437637329101506, -7.697360038757324 ], [ -79.437637329101506, -7.696805953979492 ], [ -79.437362670898381, -7.696805953979492 ], [ -79.437362670898381, -7.696249961852971 ], [ -79.437080383300724, -7.696249961852971 ], [ -79.437080383300724, -7.695693969726506 ], [ -79.436805725097656, -7.695693969726506 ], [ -79.436805725097656, -7.695137977600041 ], [ -79.436248779296875, -7.695137977600041 ], [ -79.436248779296875, -7.694859981536808 ], [ -79.435691833496094, -7.694859981536808 ], [ -79.435691833496094, -7.694753170013371 ], [ -79.435691833496094, -7.694305896759033 ], [ -79.435546874999943, -7.694305896759033 ], [ -79.435417175292969, -7.694305896759033 ], [ -79.435417175292969, -7.694025993347111 ], [ -79.435417175292969, -7.693193912506104 ], [ -79.435142517089787, -7.693193912506104 ], [ -79.435142517089787, -7.692083835601807 ], [ -79.434860229492131, -7.692083835601807 ], [ -79.434860229492131, -7.688748836517277 ], [ -79.435142517089787, -7.688748836517277 ], [ -79.435142517089787, -7.684583187103158 ], [ -79.435417175292969, -7.684583187103158 ], [ -79.435417175292969, -7.682359218597355 ], [ -79.435691833496094, -7.682359218597355 ], [ -79.435691833496094, -7.680139064788818 ], [ -79.43597412109375, -7.680139064788818 ], [ -79.43597412109375, -7.678471088409424 ], [ -79.436248779296875, -7.678471088409424 ], [ -79.436248779296875, -7.677361011505127 ], [ -79.436531066894531, -7.677361011505127 ], [ -79.436531066894531, -7.676248073577881 ], [ -79.436805725097656, -7.676250934600773 ], [ -79.436805725097656, -7.675416946411076 ], [ -79.437080383300724, -7.675416946411076 ], [ -79.437080383300724, -7.674582004547062 ], [ -79.437362670898381, -7.674582004547062 ], [ -79.437362670898381, -7.673471927642822 ], [ -79.437637329101506, -7.673471927642822 ], [ -79.437637329101506, -7.672637939453125 ], [ -79.437919616699162, -7.672637939453125 ], [ -79.437919616699162, -7.671805858612061 ], [ -79.438194274902287, -7.671805858612061 ], [ -79.438194274902287, -7.670971870422363 ], [ -79.438468933105469, -7.670971870422363 ], [ -79.438468933105469, -7.66986179351801 ], [ -79.438751220703125, -7.66986179351801 ], [ -79.438751220703125, -7.669027805328312 ], [ -79.43902587890625, -7.669027805328312 ], [ -79.43902587890625, -7.668193817138672 ], [ -79.439308166503906, -7.668193817138672 ], [ -79.439308166503906, -7.667637825012207 ], [ -79.439582824707031, -7.667637825012207 ], [ -79.439582824707031, -7.666806221008244 ], [ -79.439857482910156, -7.666806221008244 ], [ -79.439857482910156, -7.665972232818604 ], [ -79.440139770507812, -7.665972232818604 ], [ -79.440139770507812, -7.665415763854924 ], [ -79.440414428710881, -7.665415763854924 ], [ -79.440414428710881, -7.664584159851017 ], [ -79.440696716308537, -7.664584159851017 ], [ -79.440696716308537, -7.66375017166132 ], [ -79.440971374511662, -7.66375017166132 ], [ -79.440971374511662, -7.663193225860539 ], [ -79.441253662109318, -7.663193225860539 ], [ -79.441253662109318, -7.662359237670842 ], [ -79.4415283203125, -7.662362098693848 ], [ -79.4415283203125, -7.661527156829834 ], [ -79.441802978515625, -7.661527156829834 ], [ -79.441802978515625, -7.660971164703369 ], [ -79.442085266113281, -7.660971164703369 ], [ -79.442085266113281, -7.660418033599854 ], [ -79.442359924316406, -7.660418033599854 ], [ -79.442359924316406, -7.659861087799072 ], [ -79.442642211914062, -7.659861087799072 ], [ -79.442642211914062, -7.659305095672607 ], [ -79.442916870117188, -7.659305095672607 ], [ -79.442916870117188, -7.658749103546143 ], [ -79.443191528320312, -7.658749103546143 ], [ -79.443191528320312, -7.658195018768254 ], [ -79.443473815917855, -7.658195018768254 ], [ -79.443473815917855, -7.657917022705021 ], [ -79.443748474121037, -7.657917022705021 ], [ -79.443748474121037, -7.657361030578556 ], [ -79.444030761718693, -7.657361030578556 ], [ -79.444030761718693, -7.656805038452148 ], [ -79.444305419921818, -7.656805038452148 ], [ -79.444305419921818, -7.656249046325684 ], [ -79.444580078125, -7.656249046325684 ], [ -79.444580078125, -7.655694961547795 ], [ -79.444862365722656, -7.655694961547795 ], [ -79.444862365722656, -7.65513896942133 ], [ -79.445137023925781, -7.65513896942133 ], [ -79.445137023925781, -7.654582977294865 ], [ -79.445419311523438, -7.654582977294865 ], [ -79.445419311523438, -7.6540269851684 ], [ -79.445693969726562, -7.6540269851684 ], [ -79.445693969726562, -7.653472900390625 ], [ -79.445968627929688, -7.653472900390625 ], [ -79.445968627929688, -7.65291690826416 ], [ -79.446250915527344, -7.65291690826416 ], [ -79.446250915527344, -7.652360916137582 ], [ -79.446525573730355, -7.652360916137582 ], [ -79.446525573730355, -7.651528835296631 ], [ -79.446807861328068, -7.651528835296631 ], [ -79.446807861328068, -7.650972843170166 ], [ -79.447082519531193, -7.650972843170166 ], [ -79.447082519531193, -7.650416851043701 ], [ -79.447364807128849, -7.650416851043701 ], [ -79.447364807128849, -7.649860858917236 ], [ -79.447639465331974, -7.649860858917236 ], [ -79.447639465331974, -7.649303913116455 ], [ -79.447914123535156, -7.649303913116455 ], [ -79.447914123535156, -7.648750782012939 ], [ -79.448196411132812, -7.648750782012939 ], [ -79.448196411132812, -7.648194789886475 ], [ -79.448471069335938, -7.648194789886475 ], [ -79.448471069335938, -7.647915840148869 ], [ -79.448753356933594, -7.647915840148869 ], [ -79.448753356933594, -7.647359848022461 ], [ -79.449028015136719, -7.647359848022461 ], [ -79.449028015136719, -7.646807193756047 ], [ -79.449302673339844, -7.646807193756047 ], [ -79.449302673339844, -7.64652776718134 ], [ -79.4495849609375, -7.64652776718134 ], [ -79.4495849609375, -7.645971775054875 ], [ -79.449859619140568, -7.645971775054875 ], [ -79.449859619140568, -7.645693778991642 ], [ -79.450141906738224, -7.645693778991642 ], [ -79.450141906738224, -7.645137786865178 ], [ -79.450416564941349, -7.645137786865178 ], [ -79.450416564941349, -7.644859790801945 ], [ -79.450691223144474, -7.644859790801945 ], [ -79.450691223144474, -7.644306182861328 ], [ -79.450973510742131, -7.644306182861328 ], [ -79.450973510742131, -7.643750190734806 ], [ -79.451248168945312, -7.643750190734806 ], [ -79.451248168945312, -7.643472194671574 ], [ -79.451530456542969, -7.643472194671574 ], [ -79.451530456542969, -7.642916202545109 ], [ -79.451805114746094, -7.642916202545109 ], [ -79.451805114746094, -7.642638206481877 ], [ -79.452079772949219, -7.642638206481877 ], [ -79.452079772949219, -7.642082214355412 ], [ -79.452362060546875, -7.642082214355412 ], [ -79.452362060546875, -7.641526222228947 ], [ -79.45263671875, -7.641526222228947 ], [ -79.45263671875, -7.641248226165771 ], [ -79.452919006347656, -7.641250133514404 ], [ -79.452919006347656, -7.640694141387939 ], [ -79.453193664550724, -7.640694141387939 ], [ -79.453193664550724, -7.640416145324593 ], [ -79.453475952148381, -7.640416145324593 ], [ -79.453475952148381, -7.639860153198185 ], [ -79.453750610351506, -7.639860153198185 ], [ -79.453750610351506, -7.639582157134953 ], [ -79.454025268554631, -7.639584064483643 ], [ -79.454025268554631, -7.63930606842041 ], [ -79.454307556152344, -7.63930606842041 ], [ -79.454307556152344, -7.638750076293945 ], [ -79.454582214355469, -7.638750076293945 ], [ -79.454582214355469, -7.638472080230713 ], [ -79.454864501953125, -7.638472080230713 ], [ -79.454864501953125, -7.637916088104248 ], [ -79.45513916015625, -7.637916088104248 ], [ -79.45513916015625, -7.637638092041016 ], [ -79.455413818359375, -7.637639999389592 ], [ -79.455413818359375, -7.637404918670597 ], [ -79.455696105957031, -7.637362003326416 ], [ -79.455696105957031, -7.636806011199951 ], [ -79.455970764160156, -7.636806011199951 ], [ -79.455970764160156, -7.636528015136719 ], [ -79.456253051757699, -7.636528015136719 ], [ -79.456253051757699, -7.635972023010254 ], [ -79.456527709960881, -7.635972023010254 ], [ -79.456527709960881, -7.635415077209473 ], [ -79.456802368164006, -7.635415077209473 ], [ -79.456802368164006, -7.635139942169133 ], [ -79.457084655761662, -7.635139942169133 ], [ -79.457084655761662, -7.634583950042668 ], [ -79.457359313964844, -7.634583950042668 ], [ -79.457359313964844, -7.634305000305119 ], [ -79.4576416015625, -7.634305000305119 ], [ -79.4576416015625, -7.633749008178654 ], [ -79.457916259765625, -7.633749008178654 ], [ -79.457916259765625, -7.633195877075195 ], [ -79.45819091796875, -7.633195877075195 ], [ -79.45819091796875, -7.632638931274414 ], [ -79.458473205566406, -7.632638931274414 ], [ -79.458473205566406, -7.632082939147949 ], [ -79.458747863769531, -7.632082939147949 ], [ -79.458747863769531, -7.631526947021484 ], [ -79.459030151367188, -7.631526947021484 ], [ -79.459030151367188, -7.63069486618042 ], [ -79.459304809570199, -7.63069486618042 ], [ -79.459304809570199, -7.630138874053955 ], [ -79.459587097167912, -7.630138874053955 ], [ -79.459587097167912, -7.62958288192749 ], [ -79.459861755371037, -7.62958288192749 ], [ -79.459861755371037, -7.629026889801025 ], [ -79.460136413574162, -7.629026889801025 ], [ -79.460136413574162, -7.628472805023137 ], [ -79.460418701171818, -7.628472805023137 ], [ -79.460418701171818, -7.628194808959961 ], [ -79.460693359375, -7.628194808959961 ], [ -79.460693359375, -7.627638816833496 ], [ -79.460975646972656, -7.627638816833496 ], [ -79.460975646972656, -7.627360820770264 ], [ -79.461250305175781, -7.627360820770264 ], [ -79.461250305175781, -7.626804828643799 ], [ -79.461524963378906, -7.626804828643799 ], [ -79.461524963378906, -7.626526832580566 ], [ -79.461807250976562, -7.626526832580566 ], [ -79.461807250976562, -7.626248836517334 ], [ -79.462081909179688, -7.626248836517334 ], [ -79.462081909179688, -7.625695228576603 ], [ -79.462364196777344, -7.625695228576603 ], [ -79.462364196777344, -7.625417232513428 ], [ -79.462638854980412, -7.625417232513428 ], [ -79.462638854980412, -7.624860763549748 ], [ -79.462913513183537, -7.624860763549748 ], [ -79.462913513183537, -7.624582767486572 ], [ -79.463195800781193, -7.624582767486572 ], [ -79.463195800781193, -7.624029159545842 ], [ -79.463470458984318, -7.624029159545842 ], [ -79.463470458984318, -7.623751163482609 ], [ -79.463752746581974, -7.623751163482609 ], [ -79.463752746581974, -7.623195171356144 ], [ -79.464027404785156, -7.623195171356144 ], [ -79.464027404785156, -7.622917175292912 ], [ -79.464302062988281, -7.622917175292912 ], [ -79.464302062988281, -7.622639179229679 ], [ -79.464584350585938, -7.622639179229679 ], [ -79.464584350585938, -7.622082233428898 ], [ -79.464859008789062, -7.622082233428898 ], [ -79.464859008789062, -7.621804237365666 ], [ -79.465141296386719, -7.621804237365666 ], [ -79.465141296386719, -7.621525764465275 ], [ -79.465415954589844, -7.621525764465275 ], [ -79.465415954589844, -7.621251106262207 ], [ -79.465690612792912, -7.621251106262207 ], [ -79.4656982421875, -7.620694160461426 ], [ -79.465972900390568, -7.620694160461426 ], [ -79.465972900390568, -7.620416164398193 ], [ -79.466247558593693, -7.620416164398193 ], [ -79.466247558593693, -7.620138168334961 ], [ -79.466529846191349, -7.620138168334961 ], [ -79.466529846191349, -7.619860172271729 ], [ -79.466804504394474, -7.619860172271729 ], [ -79.466804504394474, -7.619306087493896 ], [ -79.467086791992188, -7.619306087493896 ], [ -79.467086791992188, -7.619028091430664 ], [ -79.467361450195312, -7.619028091430664 ], [ -79.467361450195312, -7.618750095367432 ], [ -79.468193054199219, -7.618750095367432 ], [ -79.468193054199219, -7.618472099304199 ], [ -79.468475341796875, -7.618472099304199 ], [ -79.468475341796875, -7.618194103240967 ], [ -79.46875, -7.618194103240967 ], [ -79.46875, -7.617916107177734 ], [ -79.469024658203068, -7.617916107177734 ], [ -79.469024658203068, -7.61736011505127 ], [ -79.469306945800724, -7.61736011505127 ], [ -79.469306945800724, -7.617084026336613 ], [ -79.469581604003849, -7.617082118988037 ], [ -79.469581604003849, -7.616528034210148 ], [ -79.469863891601506, -7.616528034210148 ], [ -79.469863891601506, -7.616250038146973 ], [ -79.470413208007812, -7.616250038146973 ], [ -79.470413208007812, -7.61597204208374 ], [ -79.470695495605469, -7.61597204208374 ], [ -79.470695495605469, -7.615416049957275 ], [ -79.470970153808594, -7.615416049957275 ], [ -79.470970153808594, -7.614860057830811 ], [ -79.47125244140625, -7.614861965179387 ], [ -79.47125244140625, -7.614305973052922 ], [ -79.471527099609375, -7.614305973052922 ], [ -79.471527099609375, -7.613749980926457 ], [ -79.4718017578125, -7.613749980926457 ], [ -79.4718017578125, -7.613193988799992 ], [ -79.472084045410043, -7.613193988799992 ], [ -79.472084045410043, -7.612637996673584 ], [ -79.472358703613224, -7.612639904022217 ], [ -79.472358703613224, -7.612083911895752 ], [ -79.473197937011662, -7.612083911895752 ], [ -79.473197937011662, -7.611805915832406 ], [ -79.474029541015625, -7.611805915832406 ], [ -79.474029541015625, -7.61152791976923 ], [ -79.47430419921875, -7.61152791976923 ], [ -79.47430419921875, -7.611249923705998 ], [ -79.474586486816406, -7.611249923705998 ], [ -79.474586486816406, -7.610693931579533 ], [ -79.474861145019531, -7.610693931579533 ], [ -79.474861145019531, -7.61041784286499 ], [ -79.475135803222543, -7.610415935516301 ], [ -79.475135803222543, -7.610139846801758 ], [ -79.475418090820256, -7.610139846801758 ], [ -79.475418090820256, -7.609861850738525 ], [ -79.475692749023381, -7.609861850738525 ], [ -79.475692749023381, -7.609305858612061 ], [ -79.475975036621037, -7.609305858612061 ], [ -79.475975036621037, -7.609027862548828 ], [ -79.476249694824162, -7.609027862548828 ], [ -79.476249694824162, -7.608749866485596 ], [ -79.476524353027344, -7.608749866485596 ], [ -79.476524353027344, -7.608192920684814 ], [ -79.476806640625, -7.608192920684814 ], [ -79.476806640625, -7.607917785644531 ], [ -79.477081298828125, -7.607917785644531 ], [ -79.477081298828125, -7.607361793518066 ], [ -79.477363586425781, -7.607361793518066 ], [ -79.477363586425781, -7.607082843780518 ], [ -79.477638244628906, -7.607082843780518 ], [ -79.477638244628906, -7.606526851654053 ], [ -79.477912902832031, -7.606526851654053 ], [ -79.477912902832031, -7.60624885559082 ], [ -79.478195190429688, -7.60624885559082 ], [ -79.478195190429688, -7.605692863464355 ], [ -79.478469848632756, -7.605692863464355 ], [ -79.478469848632756, -7.605416774749699 ], [ -79.478752136230412, -7.605416774749699 ], [ -79.478752136230412, -7.604860782623234 ], [ -79.479026794433537, -7.604860782623234 ], [ -79.479026794433537, -7.604304790496769 ], [ -79.479309082031193, -7.604304790496769 ], [ -79.479309082031193, -7.603751182556152 ], [ -79.479583740234318, -7.603748798370304 ], [ -79.479583740234318, -7.603195190429631 ], [ -79.4798583984375, -7.603195190429631 ], [ -79.4798583984375, -7.602639198303166 ], [ -79.480140686035156, -7.602639198303166 ], [ -79.480140686035156, -7.602083206176701 ], [ -79.480415344238281, -7.602083206176701 ], [ -79.480415344238281, -7.601527214050236 ], [ -79.480697631835938, -7.601527214050236 ], [ -79.480697631835938, -7.601249217987004 ], [ -79.480972290039062, -7.601249217987004 ], [ -79.480972290039062, -7.600971221923771 ], [ -79.481246948242188, -7.600971221923771 ], [ -79.481246948242188, -7.600693225860596 ], [ -79.481529235839844, -7.600693225860596 ], [ -79.481529235839844, -7.600137233734131 ], [ -79.481803894042912, -7.600137233734131 ], [ -79.481803894042912, -7.599859237670898 ], [ -79.482086181640568, -7.599859237670898 ], [ -79.482086181640568, -7.599583148956242 ], [ -79.482360839843693, -7.599583148956242 ], [ -79.482360839843693, -7.59930515289301 ], [ -79.482635498046818, -7.59930515289301 ], [ -79.482635498046818, -7.599027156829777 ], [ -79.482917785644531, -7.599027156829777 ], [ -79.482917785644531, -7.598471164703312 ], [ -79.483192443847656, -7.598473072052002 ], [ -79.483192443847656, -7.59819507598877 ], [ -79.483474731445312, -7.59819507598877 ], [ -79.483474731445312, -7.597917079925537 ], [ -79.483749389648438, -7.597917079925537 ], [ -79.483749389648438, -7.597361087799072 ], [ -79.484024047851562, -7.597361087799072 ], [ -79.484024047851562, -7.596805095672607 ], [ -79.484306335449219, -7.596805095672607 ], [ -79.484306335449219, -7.596527099609375 ], [ -79.484580993652344, -7.596527099609375 ], [ -79.484580993652344, -7.596248149871826 ], [ -79.484863281249886, -7.596251010894775 ], [ -79.484863281249886, -7.595695018768311 ], [ -79.485137939453068, -7.595695018768311 ], [ -79.485137939453068, -7.595417022705078 ], [ -79.485420227050724, -7.595417022705078 ], [ -79.485420227050724, -7.595139026641846 ], [ -79.485694885253849, -7.595139026641846 ], [ -79.485694885253849, -7.594582080841064 ], [ -79.485969543457031, -7.594582080841064 ], [ -79.485969543457031, -7.594306945800724 ], [ -79.486251831054688, -7.594306945800724 ], [ -79.486251831054688, -7.594028949737492 ], [ -79.486526489257812, -7.594028949737492 ], [ -79.486526489257812, -7.59375095367426 ], [ -79.486808776855469, -7.59375095367426 ], [ -79.486808776855469, -7.593194007873478 ], [ -79.487083435058594, -7.593194007873478 ], [ -79.487083435058594, -7.592916011810246 ], [ -79.487358093261719, -7.592916011810246 ], [ -79.487358093261719, -7.592638015747013 ], [ -79.487640380859375, -7.592638015747013 ], [ -79.487640380859375, -7.592083930969238 ], [ -79.487915039062386, -7.592083930969238 ], [ -79.487915039062386, -7.591805934906006 ], [ -79.488197326660099, -7.591805934906006 ], [ -79.488197326660099, -7.591249942779541 ], [ -79.488471984863224, -7.591249942779541 ], [ -79.488471984863224, -7.590971946716309 ], [ -79.488746643066349, -7.590971946716309 ], [ -79.488746643066349, -7.590415954589787 ], [ -79.489028930664006, -7.590415954589787 ], [ -79.489028930664006, -7.590137958526554 ], [ -79.489303588867188, -7.590137958526554 ], [ -79.489303588867188, -7.589859962463322 ], [ -79.489585876464844, -7.589859962463322 ], [ -79.489585876464844, -7.589305877685547 ], [ -79.489860534667969, -7.589305877685547 ], [ -79.489860534667969, -7.589027881622314 ], [ -79.490135192871094, -7.589027881622314 ], [ -79.490135192871094, -7.588749885559082 ], [ -79.49041748046875, -7.588749885559082 ], [ -79.49041748046875, -7.588193893432617 ], [ -79.490692138671875, -7.588193893432617 ], [ -79.490692138671875, -7.587915897369385 ], [ -79.490974426269531, -7.587915897369385 ], [ -79.490974426269531, -7.587637901306152 ], [ -79.491249084472599, -7.587637901306152 ], [ -79.491249084472599, -7.587361812591553 ], [ -79.491531372070256, -7.58735990524292 ], [ -79.491531372070256, -7.58708381652832 ], [ -79.491806030273381, -7.58708381652832 ], [ -79.491806030273381, -7.586527824401855 ], [ -79.492080688476506, -7.586527824401855 ], [ -79.492080688476506, -7.585693836212158 ], [ -79.492362976074162, -7.585693836212158 ], [ -79.492362976074162, -7.585137844085693 ], [ -79.492637634277344, -7.585137844085693 ], [ -79.492637634277344, -7.58458423614502 ], [ -79.492919921875, -7.58458423614502 ], [ -79.492919921875, -7.584305763244572 ], [ -79.493194580078125, -7.584305763244572 ], [ -79.493194580078125, -7.584027767181396 ], [ -79.49346923828125, -7.584027767181396 ], [ -79.49346923828125, -7.583749771118164 ], [ -79.493751525878906, -7.583749771118164 ], [ -79.493751525878906, -7.583471775054932 ], [ -79.494026184082031, -7.583471775054932 ], [ -79.494026184082031, -7.583193778991699 ], [ -79.494308471679688, -7.583193778991699 ], [ -79.494308471679688, -7.582918167114201 ], [ -79.494583129882756, -7.582918167114201 ], [ -79.494583129882756, -7.582640171050969 ], [ -79.494857788085881, -7.582640171050969 ], [ -79.494857788085881, -7.582362174987736 ], [ -79.495140075683537, -7.582362174987736 ], [ -79.495140075683537, -7.582084178924504 ], [ -79.495414733886662, -7.582084178924504 ], [ -79.495414733886662, -7.581806182861271 ], [ -79.495697021484375, -7.581806182861271 ], [ -79.495697021484375, -7.58124923706049 ], [ -79.4959716796875, -7.58124923706049 ], [ -79.4959716796875, -7.580692768096867 ], [ -79.496246337890625, -7.580692768096867 ], [ -79.496246337890625, -7.58014011383051 ], [ -79.496528625488281, -7.58014011383051 ], [ -79.496528625488281, -7.579583168029785 ], [ -79.496803283691406, -7.579583168029785 ], [ -79.496803283691406, -7.57902717590332 ], [ -79.497085571289062, -7.57902717590332 ], [ -79.497085571289062, -7.578471183776799 ], [ -79.497360229492188, -7.578471183776799 ], [ -79.497360229492188, -7.576805114746094 ], [ -79.49764251708973, -7.576805114746094 ], [ -79.49764251708973, -7.5748610496521 ], [ -79.497917175292912, -7.5748610496521 ], [ -79.497917175292912, -7.574583053588867 ], [ -79.498191833496037, -7.574583053588867 ], [ -79.498191833496037, -7.574305057525635 ], [ -79.498474121093693, -7.574305057525635 ], [ -79.498474121093693, -7.574028968810978 ], [ -79.498748779296875, -7.574027061462402 ], [ -79.498748779296875, -7.57374906539917 ], [ -79.499031066894531, -7.57374906539917 ], [ -79.499031066894531, -7.573471069335938 ], [ -79.499305725097656, -7.573472976684513 ], [ -79.499305725097656, -7.573194980621281 ], [ -79.499580383300781, -7.573194980621281 ], [ -79.499580383300781, -7.572916984558049 ], [ -79.499862670898438, -7.572916984558049 ], [ -79.499862670898438, -7.572360992431584 ], [ -79.500137329101562, -7.572360992431584 ], [ -79.500137329101562, -7.572082996368408 ], [ -79.500419616699219, -7.572082996368408 ], [ -79.500419616699219, -7.571805000305176 ], [ -79.50069427490223, -7.571805000305176 ], [ -79.50069427490223, -7.571527004241943 ], [ -79.500968933105412, -7.571527004241943 ], [ -79.500968933105412, -7.571249008178711 ], [ -79.501251220703068, -7.57125091552723 ], [ -79.501251220703068, -7.570972919464054 ], [ -79.501525878906193, -7.570972919464054 ], [ -79.501525878906193, -7.570694923400822 ], [ -79.501808166503849, -7.570694923400822 ], [ -79.501808166503849, -7.57041692733759 ], [ -79.502082824707031, -7.57041692733759 ], [ -79.502082824707031, -7.570138931274357 ], [ -79.502357482910156, -7.570138931274357 ], [ -79.502357482910156, -7.569582939147892 ], [ -79.502639770507812, -7.569582939147892 ], [ -79.502639770507812, -7.56930494308466 ], [ -79.502914428710938, -7.56930494308466 ], [ -79.502914428710938, -7.569028854370117 ], [ -79.503196716308594, -7.569028854370117 ], [ -79.503196716308594, -7.568750858306885 ], [ -79.503471374511719, -7.568750858306885 ], [ -79.503471374511719, -7.56819486618042 ], [ -79.503753662109375, -7.56819486618042 ], [ -79.503753662109375, -7.567081928253174 ], [ -79.504028320312443, -7.567081928253174 ], [ -79.504028320312443, -7.566528797149658 ], [ -79.504302978515568, -7.566528797149658 ], [ -79.504302978515568, -7.566249847412109 ], [ -79.504859924316349, -7.566249847412109 ], [ -79.504859924316349, -7.565971851348877 ], [ -79.505142211914006, -7.565971851348877 ], [ -79.505142211914006, -7.565693855285645 ], [ -79.505416870117188, -7.565693855285645 ], [ -79.505416870117188, -7.565415859222412 ], [ -79.505973815917969, -7.565415859222412 ], [ -79.505973815917969, -7.56513786315918 ], [ -79.506248474121094, -7.56513786315918 ], [ -79.506248474121094, -7.564859867095947 ], [ -79.50653076171875, -7.564859867095947 ], [ -79.50653076171875, -7.564305782318058 ], [ -79.506805419921875, -7.564305782318058 ], [ -79.506805419921875, -7.564027786254826 ], [ -79.507080078124943, -7.564027786254826 ], [ -79.507080078124943, -7.563749790191594 ], [ -79.507362365722599, -7.563749790191594 ], [ -79.507362365722599, -7.563471794128361 ], [ -79.507637023925724, -7.563471794128361 ], [ -79.507637023925724, -7.562915802001953 ], [ -79.507919311523381, -7.562915802001953 ], [ -79.507919311523381, -7.562637805938721 ], [ -79.508193969726506, -7.562637805938721 ], [ -79.508193969726506, -7.562081813812256 ], [ -79.508468627929688, -7.56208419799799 ], [ -79.508468627929688, -7.561806201934758 ], [ -79.508750915527344, -7.561806201934758 ], [ -79.508750915527344, -7.561528205871525 ], [ -79.509025573730469, -7.561528205871525 ], [ -79.509025573730469, -7.561250209808293 ], [ -79.509307861328125, -7.561250209808293 ], [ -79.509307861328125, -7.56097221374506 ], [ -79.50958251953125, -7.56097221374506 ], [ -79.50958251953125, -7.560694217681828 ], [ -79.509864807128906, -7.560694217681828 ], [ -79.509864807128906, -7.56013822555542 ], [ -79.510139465332031, -7.56013822555542 ], [ -79.510139465332031, -7.559860229492188 ], [ -79.510414123535099, -7.559860229492188 ], [ -79.510414123535099, -7.559582233428955 ], [ -79.510696411132756, -7.559582233428955 ], [ -79.510696411132756, -7.559304237365723 ], [ -79.510971069335881, -7.559304237365723 ], [ -79.510971069335881, -7.559025764465332 ], [ -79.511253356933537, -7.559025764465332 ], [ -79.511253356933537, -7.558750152587834 ], [ -79.511528015136719, -7.558750152587834 ], [ -79.511528015136719, -7.558194160461369 ], [ -79.511802673339844, -7.558194160461369 ], [ -79.511802673339844, -7.557916164398137 ], [ -79.5120849609375, -7.557916164398137 ], [ -79.5120849609375, -7.557640075683594 ], [ -79.512359619140625, -7.557638168334904 ], [ -79.512359619140625, -7.557081222534123 ], [ -79.512641906738281, -7.557084083557129 ], [ -79.512641906738281, -7.556806087493896 ], [ -79.512916564941406, -7.556806087493896 ], [ -79.512916564941406, -7.556528091430664 ], [ -79.513191223144531, -7.556528091430664 ], [ -79.513191223144531, -7.555972099304199 ], [ -79.513473510742074, -7.555972099304199 ], [ -79.513473510742074, -7.555694103240853 ], [ -79.513748168945256, -7.555694103240853 ], [ -79.513748168945256, -7.555415153503418 ], [ -79.514030456542912, -7.555415153503418 ], [ -79.514030456542912, -7.555140018463135 ], [ -79.514305114746037, -7.555140018463135 ], [ -79.514305114746037, -7.554862022399902 ], [ -79.514579772949219, -7.554862022399902 ], [ -79.514579772949219, -7.55458402633667 ], [ -79.514862060546875, -7.55458402633667 ], [ -79.514862060546875, -7.554306030273438 ], [ -79.51513671875, -7.554306030273438 ], [ -79.51513671875, -7.554027080535889 ], [ -79.515419006347656, -7.554027080535889 ], [ -79.515419006347656, -7.553749084472656 ], [ -79.515693664550781, -7.553749084472656 ], [ -79.515693664550781, -7.553471088409424 ], [ -79.515975952148438, -7.553471088409424 ], [ -79.515975952148438, -7.552917957305851 ], [ -79.516250610351562, -7.552917957305851 ], [ -79.516250610351562, -7.552639007568303 ], [ -79.516525268554574, -7.552639007568303 ], [ -79.516525268554574, -7.55236101150507 ], [ -79.516807556152287, -7.55236101150507 ], [ -79.516807556152287, -7.552083015441838 ], [ -79.517082214355412, -7.552083015441838 ], [ -79.517082214355412, -7.551805019378605 ], [ -79.517364501953068, -7.551805019378605 ], [ -79.517364501953068, -7.551527023315373 ], [ -79.517639160156193, -7.551527023315373 ], [ -79.517639160156193, -7.55124902725214 ], [ -79.517913818359375, -7.55124902725214 ], [ -79.517913818359375, -7.550971031188965 ], [ -79.518196105957031, -7.550971031188965 ], [ -79.518196105957031, -7.550694942474365 ], [ -79.518753051757812, -7.550694942474365 ], [ -79.518753051757812, -7.550138950347787 ], [ -79.519027709960938, -7.550138950347787 ], [ -79.519027709960938, -7.549026966094914 ], [ -79.519302368164062, -7.549026966094914 ], [ -79.519302368164062, -7.548472881317139 ], [ -79.519584655761719, -7.548472881317139 ], [ -79.519584655761719, -7.547916889190674 ], [ -79.519859313964787, -7.547916889190674 ], [ -79.519859313964787, -7.547360897064209 ], [ -79.520141601562443, -7.547360897064209 ], [ -79.520141601562443, -7.546804904937744 ], [ -79.521530151367188, -7.546804904937744 ], [ -79.521530151367188, -7.546248912811222 ], [ -79.521804809570312, -7.546248912811222 ], [ -79.521804809570312, -7.54597282409668 ], [ -79.522087097167969, -7.54597282409668 ], [ -79.522087097167969, -7.545694828033447 ], [ -79.522361755371094, -7.545694828033447 ], [ -79.522361755371094, -7.545138835906982 ], [ -79.522636413574219, -7.545138835906982 ], [ -79.522636413574219, -7.54486083984375 ], [ -79.522918701171875, -7.54486083984375 ], [ -79.522918701171875, -7.544304847717285 ], [ -79.523193359374943, -7.544304847717285 ], [ -79.523193359374943, -7.544029235839844 ], [ -79.523475646972599, -7.544029235839844 ], [ -79.523475646972599, -7.543750762939396 ], [ -79.523750305175724, -7.543750762939396 ], [ -79.523750305175724, -7.543194770812988 ], [ -79.524024963378849, -7.543194770812988 ], [ -79.524024963378849, -7.542916774749756 ], [ -79.524307250976562, -7.542916774749756 ], [ -79.524307250976562, -7.542638778686523 ], [ -79.524581909179688, -7.542638778686523 ], [ -79.524581909179688, -7.542360782623291 ], [ -79.524864196777344, -7.542360782623291 ], [ -79.524864196777344, -7.54180717468256 ], [ -79.525138854980469, -7.54180717468256 ], [ -79.525138854980469, -7.541529178619328 ], [ -79.525413513183594, -7.541529178619328 ], [ -79.525413513183594, -7.541251182556096 ], [ -79.52569580078125, -7.541251182556096 ], [ -79.52569580078125, -7.540695190429688 ], [ -79.525970458984375, -7.540695190429688 ], [ -79.525970458984375, -7.540415763854924 ], [ -79.526252746581918, -7.540415763854924 ], [ -79.526252746581918, -7.540137767791691 ], [ -79.526527404785099, -7.540137767791691 ], [ -79.526527404785099, -7.539859771728459 ], [ -79.526802062988224, -7.539859771728459 ], [ -79.526802062988224, -7.539581775665226 ], [ -79.527084350585881, -7.539581775665226 ], [ -79.527084350585881, -7.539307117462101 ], [ -79.527641296386719, -7.539307117462101 ], [ -79.527641296386719, -7.539028167724609 ], [ -79.527915954589844, -7.539028167724609 ], [ -79.527915954589844, -7.538750171661377 ], [ -79.528190612792969, -7.538750171661377 ], [ -79.5281982421875, -7.538472175598145 ], [ -79.528472900390625, -7.538472175598145 ], [ -79.528472900390625, -7.538194179534798 ], [ -79.52874755859375, -7.538194179534798 ], [ -79.52874755859375, -7.537082195281926 ], [ -79.529029846191406, -7.537082195281926 ], [ -79.529029846191406, -7.536806106567383 ], [ -79.529586791992131, -7.536806106567383 ], [ -79.529586791992131, -7.53652811050415 ], [ -79.529861450195256, -7.53652811050415 ], [ -79.529861450195256, -7.536250114440918 ], [ -79.530418395996037, -7.536250114440918 ], [ -79.530418395996037, -7.535972118377686 ], [ -79.530693054199219, -7.535972118377686 ], [ -79.530693054199219, -7.535416126251221 ], [ -79.530975341796875, -7.535416126251221 ], [ -79.530975341796875, -7.534584045410156 ], [ -79.53125, -7.53458213806141 ], [ -79.53125, -7.533750057220459 ], [ -79.531806945800781, -7.533750057220459 ], [ -79.531806945800781, -7.533472061157227 ], [ -79.532363891601562, -7.533472061157227 ], [ -79.532363891601562, -7.533194065093994 ], [ -79.532913208007756, -7.533194065093994 ], [ -79.532913208007756, -7.532638072967529 ], [ -79.533195495605412, -7.532639980316105 ], [ -79.533195495605412, -7.53208398818964 ], [ -79.533470153808537, -7.53208398818964 ], [ -79.533470153808537, -7.531527996063232 ], [ -79.534027099609375, -7.531527996063232 ], [ -79.534027099609375, -7.53125 ], [ -79.534584045410156, -7.53125 ], [ -79.534584045410156, -7.530972003936768 ], [ -79.534858703613281, -7.530972003936768 ], [ -79.534858703613281, -7.530416011810303 ], [ -79.535140991210938, -7.530416011810303 ], [ -79.535140991210938, -7.53013801574707 ], [ -79.535415649414062, -7.53013801574707 ], [ -79.535415649414062, -7.529860019683838 ], [ -79.535697937011719, -7.529861927032414 ], [ -79.535697937011719, -7.529305934905949 ], [ -79.535972595214787, -7.529305934905949 ], [ -79.535972595214787, -7.529027938842717 ], [ -79.537361145019531, -7.529027938842717 ], [ -79.537361145019531, -7.528471946716252 ], [ -79.537635803222656, -7.528471946716252 ], [ -79.537635803222656, -7.527915000915471 ], [ -79.537918090820312, -7.527915000915471 ], [ -79.537918090820312, -7.527361869812012 ], [ -79.538192749023438, -7.527361869812012 ], [ -79.538192749023438, -7.52680492401123 ], [ -79.538475036621094, -7.52680492401123 ], [ -79.538475036621094, -7.526248931884766 ], [ -79.538749694824219, -7.526248931884766 ], [ -79.538749694824219, -7.525970935821533 ], [ -79.539024353027287, -7.525970935821533 ], [ -79.539024353027287, -7.525416851043701 ], [ -79.539306640624943, -7.525416851043701 ], [ -79.539306640624943, -7.524860858917236 ], [ -79.540412902832031, -7.524860858917236 ], [ -79.540412902832031, -7.524304866790771 ], [ -79.540695190429688, -7.524304866790771 ], [ -79.540695190429688, -7.523748874664307 ], [ -79.540969848632812, -7.523748874664307 ], [ -79.540969848632812, -7.522916793823185 ], [ -79.541252136230469, -7.522916793823185 ], [ -79.541252136230469, -7.522360801696777 ], [ -79.541526794433594, -7.522360801696777 ], [ -79.541526794433594, -7.522082805633545 ], [ -79.541252136230469, -7.522082805633545 ], [ -79.541252136230469, -7.521804809570312 ], [ -79.540969848632812, -7.521804809570312 ], [ -79.540969848632812, -7.521248817443848 ], [ -79.540695190429688, -7.521248817443848 ], [ -79.540695190429688, -7.520973205566349 ], [ -79.540969848632812, -7.520973205566349 ], [ -79.540969848632812, -7.520417213439885 ], [ -79.541252136230469, -7.520417213439885 ], [ -79.541252136230469, -7.520139217376652 ], [ -79.541526794433594, -7.520139217376652 ], [ -79.541526794433594, -7.519583225250244 ], [ -79.54180908203125, -7.519583225250244 ], [ -79.54180908203125, -7.519305229187012 ], [ -79.541526794433594, -7.519305229187012 ], [ -79.541526794433594, -7.518749237060547 ], [ -79.541252136230469, -7.518749237060547 ], [ -79.541252136230469, -7.518192768096924 ], [ -79.540969848632812, -7.518195152282658 ], [ -79.540969848632812, -7.517639160156193 ], [ -79.540695190429688, -7.517639160156193 ], [ -79.540695190429688, -7.516805171966496 ], [ -79.540412902832031, -7.516805171966496 ], [ -79.540412902832031, -7.515695095062256 ], [ -79.540695190429688, -7.515695095062256 ], [ -79.540695190429688, -7.514861106872502 ], [ -79.541252136230469, -7.514861106872502 ], [ -79.541252136230469, -7.514307022094727 ], [ -79.541526794433594, -7.514307022094727 ], [ -79.541526794433594, -7.513751029968262 ], [ -79.54180908203125, -7.513751029968262 ], [ -79.54180908203125, -7.51319408416748 ], [ -79.542083740234261, -7.51319408416748 ], [ -79.542083740234261, -7.512638092041016 ], [ -79.542358398437443, -7.512638092041016 ], [ -79.542358398437443, -7.5120849609375 ], [ -79.542640686035099, -7.5120849609375 ], [ -79.542640686035099, -7.511528015136662 ], [ -79.542915344238224, -7.511528015136662 ], [ -79.542915344238224, -7.510972023010197 ], [ -79.543197631835881, -7.510972023010197 ], [ -79.543197631835881, -7.510416030883789 ], [ -79.543472290039062, -7.510416030883789 ], [ -79.543472290039062, -7.510138034820557 ], [ -79.543746948242188, -7.510138034820557 ], [ -79.543746948242188, -7.509583950042611 ], [ -79.544029235839844, -7.509583950042611 ], [ -79.544029235839844, -7.509027957916203 ], [ -79.544303894042969, -7.509027957916203 ], [ -79.544303894042969, -7.508749961852971 ], [ -79.545135498046761, -7.508749961852971 ], [ -79.545135498046761, -7.508193969726506 ], [ -79.545417785644474, -7.508193969726506 ], [ -79.545417785644474, -7.507359981536808 ], [ -79.545692443847599, -7.507359981536808 ], [ -79.545692443847599, -7.507083892822266 ], [ -79.545974731445256, -7.507083892822266 ], [ -79.545974731445256, -7.506805896759033 ], [ -79.546249389648381, -7.506805896759033 ], [ -79.546249389648381, -7.506527900695801 ], [ -79.546524047851562, -7.506527900695801 ], [ -79.546524047851562, -7.506249904632568 ], [ -79.546806335449219, -7.506249904632568 ], [ -79.546806335449219, -7.505971908569222 ], [ -79.547080993652344, -7.505971908569222 ], [ -79.547080993652344, -7.505693912506047 ], [ -79.54736328125, -7.505693912506047 ], [ -79.54736328125, -7.505415916442814 ], [ -79.547637939453125, -7.505415916442814 ], [ -79.547637939453125, -7.504861831665039 ], [ -79.547920227050781, -7.504861831665039 ], [ -79.547920227050781, -7.504305839538574 ], [ -79.548194885253906, -7.504305839538574 ], [ -79.548194885253906, -7.503749847412109 ], [ -79.548469543456974, -7.503749847412109 ], [ -79.548469543456974, -7.503471851348877 ], [ -79.549308776855412, -7.503471851348877 ], [ -79.549308776855412, -7.503193855285645 ], [ -79.549583435058537, -7.503193855285645 ], [ -79.549583435058537, -7.50236177444458 ], [ -79.549858093261719, -7.50236177444458 ], [ -79.549858093261719, -7.501805782318115 ], [ -79.550140380859375, -7.501805782318115 ], [ -79.550140380859375, -7.501527786254883 ], [ -79.5504150390625, -7.501527786254883 ], [ -79.5504150390625, -7.50124979019165 ], [ -79.550697326660156, -7.50124979019165 ], [ -79.550697326660156, -7.500970840454102 ], [ -79.550971984863281, -7.500970840454102 ], [ -79.550971984863281, -7.500418186187687 ], [ -79.551246643066406, -7.500418186187687 ], [ -79.551246643066406, -7.499026775360051 ], [ -79.551528930664062, -7.499026775360051 ], [ -79.551528930664062, -7.497917175292969 ], [ -79.551803588867131, -7.497917175292969 ], [ -79.551803588867131, -7.497361183166447 ], [ -79.552085876464787, -7.497361183166447 ], [ -79.552085876464787, -7.496805191039982 ], [ -79.552360534667912, -7.496805191039982 ], [ -79.552360534667912, -7.496249198913517 ], [ -79.552635192871037, -7.496249198913517 ], [ -79.552635192871037, -7.495695114135742 ], [ -79.55291748046875, -7.495695114135742 ], [ -79.55291748046875, -7.49541711807251 ], [ -79.553192138671875, -7.49541711807251 ], [ -79.553192138671875, -7.495139122009277 ], [ -79.553474426269531, -7.495139122009277 ], [ -79.553474426269531, -7.494859218597412 ], [ -79.554031372070312, -7.494859218597412 ], [ -79.554031372070312, -7.49458122253418 ], [ -79.554306030273438, -7.494583129882812 ], [ -79.554306030273438, -7.494027137756234 ], [ -79.554580688476562, -7.494027137756234 ], [ -79.554580688476562, -7.493471145629826 ], [ -79.554862976074105, -7.493473052978516 ], [ -79.554862976074105, -7.493195056915283 ], [ -79.555137634277287, -7.493195056915283 ], [ -79.555137634277287, -7.492639064788818 ], [ -79.555419921874943, -7.492639064788818 ], [ -79.555419921874943, -7.492083072662354 ], [ -79.555694580078068, -7.492083072662354 ], [ -79.555694580078068, -7.491805076599121 ], [ -79.55596923828125, -7.491805076599121 ], [ -79.55596923828125, -7.491527080535889 ], [ -79.556251525878906, -7.491527080535889 ], [ -79.556251525878906, -7.490971088409424 ], [ -79.556526184082031, -7.490972995758057 ], [ -79.556526184082031, -7.490694999694824 ], [ -79.556808471679688, -7.490694999694824 ], [ -79.556808471679688, -7.490417003631592 ], [ -79.557083129882812, -7.490417003631592 ], [ -79.557083129882812, -7.490139007568359 ], [ -79.557357788085938, -7.490139007568359 ], [ -79.557357788085938, -7.489861011505127 ], [ -79.557640075683594, -7.489861011505127 ], [ -79.557640075683594, -7.489305019378662 ], [ -79.557914733886605, -7.489305019378662 ], [ -79.557914733886605, -7.48902702331543 ], [ -79.558197021484318, -7.48902702331543 ], [ -79.558197021484318, -7.488748073577881 ], [ -79.558471679687443, -7.488748073577881 ], [ -79.558471679687443, -7.488470077514648 ], [ -79.558746337890568, -7.488472938537541 ], [ -79.558746337890568, -7.488194942474308 ], [ -79.559028625488224, -7.488194942474308 ], [ -79.559028625488224, -7.487638950347844 ], [ -79.559303283691406, -7.487638950347844 ], [ -79.559303283691406, -7.487360000610295 ], [ -79.559585571289062, -7.487360000610295 ], [ -79.559585571289062, -7.487082004547062 ], [ -79.559860229492188, -7.487082004547062 ], [ -79.559860229492188, -7.48680400848383 ], [ -79.560142517089844, -7.48680400848383 ], [ -79.560142517089844, -7.48652887344349 ], [ -79.560417175292969, -7.48652887344349 ], [ -79.560417175292969, -7.485971927642822 ], [ -79.560691833496094, -7.485971927642822 ], [ -79.560691833496094, -7.48569393157959 ], [ -79.56097412109375, -7.48569393157959 ], [ -79.56097412109375, -7.485415935516357 ], [ -79.561248779296818, -7.485415935516357 ], [ -79.561248779296818, -7.485137939453125 ], [ -79.561531066894474, -7.485137939453125 ], [ -79.561531066894474, -7.484859943389779 ], [ -79.561805725097599, -7.484859943389779 ], [ -79.561805725097599, -7.484305858612061 ], [ -79.562080383300724, -7.484305858612061 ], [ -79.562080383300724, -7.484027862548828 ], [ -79.562362670898381, -7.484027862548828 ], [ -79.562362670898381, -7.483749866485596 ], [ -79.562637329101562, -7.483749866485596 ], [ -79.562637329101562, -7.483471870422363 ], [ -79.562919616699219, -7.483471870422363 ], [ -79.562919616699219, -7.483193874359131 ], [ -79.563194274902344, -7.483193874359131 ], [ -79.563194274902344, -7.482915878295898 ], [ -79.563468933105469, -7.482915878295898 ], [ -79.563468933105469, -7.482637882232666 ], [ -79.563751220703125, -7.482637882232666 ], [ -79.563751220703125, -7.482083797454777 ], [ -79.56402587890625, -7.482083797454777 ], [ -79.56402587890625, -7.481805801391602 ], [ -79.564308166503906, -7.481805801391602 ], [ -79.564308166503906, -7.481527805328369 ], [ -79.564582824706974, -7.481527805328369 ], [ -79.564582824706974, -7.481249809265137 ], [ -79.564857482910099, -7.481249809265137 ], [ -79.564857482910099, -7.480971813201904 ], [ -79.565139770507756, -7.480971813201904 ], [ -79.565139770507756, -7.480693817138672 ], [ -79.565414428710881, -7.480693817138672 ], [ -79.565414428710881, -7.480137825012207 ], [ -79.565696716308594, -7.480137825012207 ], [ -79.565696716308594, -7.479859828948975 ], [ -79.565971374511719, -7.479862213134709 ], [ -79.565971374511719, -7.479584217071476 ], [ -79.566253662109375, -7.479584217071476 ], [ -79.566253662109375, -7.479306221008244 ], [ -79.5665283203125, -7.479306221008244 ], [ -79.5665283203125, -7.479028224945068 ], [ -79.566802978515625, -7.479028224945068 ], [ -79.566802978515625, -7.478750228881836 ], [ -79.567085266113281, -7.478750228881836 ], [ -79.567085266113281, -7.478472232818604 ], [ -79.567359924316406, -7.478472232818604 ], [ -79.567359924316406, -7.476806163787785 ], [ -79.567642211913949, -7.476806163787785 ], [ -79.567642211913949, -7.476528167724553 ], [ -79.568191528320256, -7.476528167724553 ], [ -79.568191528320256, -7.47625017166132 ], [ -79.568473815917912, -7.47625017166132 ], [ -79.568473815917912, -7.475972175598088 ], [ -79.568748474121094, -7.475972175598088 ], [ -79.568748474121094, -7.475694179534855 ], [ -79.569305419921875, -7.475694179534855 ], [ -79.569305419921875, -7.47541618347168 ], [ -79.569580078125, -7.47541618347168 ], [ -79.569580078125, -7.475137233734074 ], [ -79.569862365722656, -7.475137233734074 ], [ -79.569862365722656, -7.474859237670842 ], [ -79.570419311523438, -7.474859237670842 ], [ -79.570419311523438, -7.474580764770451 ], [ -79.570693969726449, -7.474584102630502 ], [ -79.570693969726449, -7.474028110504094 ], [ -79.570968627929631, -7.474028110504094 ], [ -79.570968627929631, -7.472918033599854 ], [ -79.571250915527287, -7.472918033599854 ], [ -79.571250915527287, -7.472361087799072 ], [ -79.571525573730412, -7.472361087799072 ], [ -79.571525573730412, -7.47208309173584 ], [ -79.57208251953125, -7.47208309173584 ], [ -79.57208251953125, -7.471805095672607 ], [ -79.572364807128906, -7.471805095672607 ], [ -79.572364807128906, -7.471527099609375 ], [ -79.572639465332031, -7.471527099609375 ], [ -79.572639465332031, -7.471249103546143 ], [ -79.572914123535156, -7.471249103546143 ], [ -79.572914123535156, -7.47097110748291 ], [ -79.573471069335938, -7.47097110748291 ], [ -79.573471069335938, -7.470695018768254 ], [ -79.573753356933594, -7.470695018768254 ], [ -79.573753356933594, -7.470417022705021 ], [ -79.574028015136662, -7.470417022705021 ], [ -79.574028015136662, -7.469861030578613 ], [ -79.574302673339787, -7.469861030578613 ], [ -79.574302673339787, -7.469027042388916 ], [ -79.574584960937443, -7.469027042388916 ], [ -79.574584960937443, -7.468749046325684 ], [ -79.574859619140568, -7.468749046325684 ], [ -79.574859619140568, -7.468471050262451 ], [ -79.575416564941406, -7.468471050262451 ], [ -79.575416564941406, -7.468194961547795 ], [ -79.575691223144531, -7.468194961547795 ], [ -79.575691223144531, -7.467916965484562 ], [ -79.575973510742188, -7.467916965484562 ], [ -79.575973510742188, -7.46763896942133 ], [ -79.576248168945312, -7.46763896942133 ], [ -79.576248168945312, -7.466804981231633 ], [ -79.576530456542969, -7.466804981231633 ], [ -79.576530456542969, -7.465694904327393 ], [ -79.576805114746094, -7.465694904327393 ], [ -79.576805114746094, -7.464860916137638 ], [ -79.577079772949162, -7.464860916137638 ], [ -79.577079772949162, -7.464582920074406 ], [ -79.577362060546818, -7.464582920074406 ], [ -79.577362060546818, -7.464028835296631 ], [ -79.577636718749943, -7.464028835296631 ], [ -79.577636718749943, -7.463750839233398 ], [ -79.578193664550724, -7.463750839233398 ], [ -79.578193664550724, -7.463472843170166 ], [ -79.578750610351562, -7.463472843170166 ], [ -79.578750610351562, -7.462916851043701 ], [ -79.579025268554688, -7.462916851043701 ], [ -79.579025268554688, -7.461804866790658 ], [ -79.579307556152344, -7.461804866790658 ], [ -79.579307556152344, -7.460694789886475 ], [ -79.579582214355469, -7.460694789886475 ], [ -79.579582214355469, -7.459581851959229 ], [ -79.579864501953125, -7.459581851959229 ], [ -79.579864501953125, -7.458749771118107 ], [ -79.579582214355469, -7.458749771118107 ], [ -79.579582214355469, -7.45791578292841 ], [ -79.579307556152344, -7.45791578292841 ], [ -79.579307556152344, -7.455416202545109 ], [ -79.579582214355469, -7.455416202545109 ], [ -79.579582214355469, -7.452082157134953 ], [ -79.579864501953125, -7.452084064483643 ], [ -79.579864501953125, -7.450416088104248 ], [ -79.579582214355469, -7.450416088104248 ], [ -79.579582214355469, -7.450138092041016 ], [ -79.579307556152344, -7.450139999389648 ], [ -79.579307556152344, -7.449584007263184 ], [ -79.579025268554688, -7.449584007263184 ], [ -79.579025268554688, -7.449306011199951 ], [ -79.579307556152344, -7.449306011199951 ], [ -79.579307556152344, -7.448750019073486 ], [ -79.579582214355469, -7.448750019073486 ], [ -79.579582214355469, -7.448472023010254 ], [ -79.579864501953125, -7.448472023010254 ], [ -79.579864501953125, -7.448194026947021 ], [ -79.58013916015625, -7.448194026947021 ], [ -79.58013916015625, -7.44763708114624 ], [ -79.580413818359318, -7.447639942169133 ], [ -79.580413818359318, -7.447083950042668 ], [ -79.58013916015625, -7.447083950042668 ], [ -79.58013916015625, -7.445971012115422 ], [ -79.579864501953125, -7.445971012115422 ], [ -79.579864501953125, -7.444860935211182 ], [ -79.580696105956974, -7.444860935211182 ], [ -79.580711364746094, -7.444582939147949 ], [ -79.581527709960938, -7.444582939147949 ], [ -79.581527709960938, -7.444304943084603 ], [ -79.581802368164062, -7.444304943084603 ], [ -79.581802368164062, -7.443748950958195 ], [ -79.582084655761719, -7.443748950958195 ], [ -79.582084655761719, -7.44319486618042 ], [ -79.582359313964844, -7.44319486618042 ], [ -79.582359313964844, -7.442638874053955 ], [ -79.582084655761719, -7.442638874053955 ], [ -79.582084655761719, -7.44208288192749 ], [ -79.581802368164062, -7.44208288192749 ], [ -79.581802368164062, -7.441248893737793 ], [ -79.582084655761719, -7.441248893737793 ], [ -79.582084655761719, -7.440972805023193 ], [ -79.582359313964844, -7.440972805023193 ], [ -79.582359313964844, -7.440694808959961 ], [ -79.582916259765625, -7.440694808959961 ], [ -79.582916259765625, -7.440416812896729 ], [ -79.58319091796875, -7.440416812896729 ], [ -79.58319091796875, -7.440138816833496 ], [ -79.583473205566293, -7.440138816833496 ], [ -79.583473205566293, -7.439860820770264 ], [ -79.583747863769474, -7.439860820770264 ], [ -79.583747863769474, -7.439582824707031 ], [ -79.584030151367131, -7.439582824707031 ], [ -79.584030151367131, -7.439304828643799 ], [ -79.584304809570256, -7.439304828643799 ], [ -79.584304809570256, -7.439026832580566 ], [ -79.584587097167912, -7.439026832580566 ], [ -79.584587097167912, -7.438748836517334 ], [ -79.584861755371094, -7.438748836517334 ], [ -79.584861755371094, -7.438473224639893 ], [ -79.585136413574219, -7.438473224639893 ], [ -79.585136413574219, -7.43819522857666 ], [ -79.585418701171875, -7.43819522857666 ], [ -79.585418701171875, -7.437917232513428 ], [ -79.585693359375, -7.437917232513428 ], [ -79.585693359375, -7.437639236450195 ], [ -79.585975646972656, -7.437639236450195 ], [ -79.585975646972656, -7.437082767486572 ], [ -79.585693359375, -7.437082767486572 ], [ -79.585693359375, -7.436251163482609 ], [ -79.585975646972656, -7.436251163482609 ], [ -79.585975646972656, -7.435695171356144 ], [ -79.586250305175781, -7.435695171356144 ], [ -79.586250305175781, -7.434861183166504 ], [ -79.586524963378793, -7.434861183166504 ], [ -79.586524963378793, -7.434025764465275 ], [ -79.586807250976506, -7.434025764465275 ], [ -79.586807250976506, -7.433473110198918 ], [ -79.587081909179631, -7.433473110198918 ], [ -79.587081909179631, -7.432638168334961 ], [ -79.587364196777287, -7.432638168334961 ], [ -79.587364196777287, -7.432082176208439 ], [ -79.587638854980412, -7.432082176208439 ], [ -79.587638854980412, -7.431528091430664 ], [ -79.587913513183594, -7.431528091430664 ], [ -79.587913513183594, -7.430972099304199 ], [ -79.58819580078125, -7.430972099304199 ], [ -79.58819580078125, -7.430416107177734 ], [ -79.588470458984375, -7.430416107177734 ], [ -79.588470458984375, -7.42986011505127 ], [ -79.588752746582031, -7.42986011505127 ], [ -79.588752746582031, -7.429028034210205 ], [ -79.589027404785156, -7.429028034210205 ], [ -79.589027404785156, -7.428194046020508 ], [ -79.589302062988281, -7.428194046020508 ], [ -79.589302062988281, -7.427360057830811 ], [ -79.589584350585938, -7.427360057830811 ], [ -79.589584350585938, -7.426249980926457 ], [ -79.589859008789006, -7.426249980926457 ], [ -79.589859008789006, -7.425137996673584 ], [ -79.590141296386662, -7.425139904022217 ], [ -79.590141296386662, -7.423749923705998 ], [ -79.590415954589787, -7.423749923705998 ], [ -79.590415954589787, -7.422639846801758 ], [ -79.590690612792912, -7.422639846801758 ], [ -79.590698242187443, -7.421805858612061 ], [ -79.590972900390568, -7.421805858612061 ], [ -79.590972900390568, -7.421527862548828 ], [ -79.59124755859375, -7.421527862548828 ], [ -79.59124755859375, -7.421249866485482 ], [ -79.591529846191406, -7.421249866485482 ], [ -79.591529846191406, -7.420971870422306 ], [ -79.591804504394531, -7.420971870422306 ], [ -79.591804504394531, -7.41874885559082 ], [ -79.591529846191406, -7.41874885559082 ], [ -79.591529846191406, -7.416248798370361 ], [ -79.59124755859375, -7.416248798370361 ], [ -79.59124755859375, -7.415695190429631 ], [ -79.590972900390568, -7.415695190429631 ], [ -79.590972900390568, -7.414861202239933 ], [ -79.590698242187443, -7.414861202239933 ], [ -79.590690612792912, -7.414027214050236 ], [ -79.590415954589787, -7.414027214050236 ], [ -79.590415954589787, -7.413471221923828 ], [ -79.590141296386662, -7.413471221923828 ], [ -79.590141296386662, -7.412637233734131 ], [ -79.589859008789006, -7.412637233734131 ], [ -79.589859008789006, -7.412080764770508 ], [ -79.589302062988281, -7.412083148956242 ], [ -79.589302062988281, -7.411527156829777 ], [ -79.589027404785156, -7.411527156829777 ], [ -79.589027404785156, -7.410971164703312 ], [ -79.587638854980412, -7.410971164703312 ], [ -79.587638854980412, -7.411527156829777 ], [ -79.586250305175781, -7.411527156829777 ], [ -79.586250305175781, -7.411249160766545 ], [ -79.585136413574219, -7.411249160766545 ], [ -79.585136413574219, -7.410971164703312 ], [ -79.584587097167912, -7.410973072052002 ], [ -79.584587097167912, -7.410417079925537 ], [ -79.584304809570256, -7.410417079925537 ], [ -79.584304809570256, -7.409861087799072 ], [ -79.584030151367131, -7.409861087799072 ], [ -79.584030151367131, -7.409305095672494 ], [ -79.583747863769474, -7.409305095672494 ], [ -79.583747863769474, -7.408749103546086 ], [ -79.583473205566293, -7.408751010894775 ], [ -79.583473205566293, -7.407917022705078 ], [ -79.58319091796875, -7.407917022705078 ], [ -79.58319091796875, -7.407361030578613 ], [ -79.5826416015625, -7.407361030578613 ], [ -79.5826416015625, -7.407082080841064 ], [ -79.580970764160099, -7.407082080841064 ], [ -79.580970764160099, -7.407361030578613 ], [ -79.58013916015625, -7.407361030578613 ], [ -79.58013916015625, -7.407082080841064 ], [ -79.579307556152344, -7.407082080841064 ], [ -79.579307556152344, -7.404584884643498 ], [ -79.579025268554688, -7.404584884643498 ], [ -79.579025268554688, -7.404305934906006 ], [ -79.578750610351562, -7.404305934906006 ], [ -79.578750610351562, -7.404027938842773 ], [ -79.578475952148438, -7.404027938842773 ], [ -79.578475952148438, -7.403471946716252 ], [ -79.578193664550724, -7.403471946716252 ], [ -79.578193664550724, -7.403193950653019 ], [ -79.577919006347599, -7.403193950653019 ], [ -79.577919006347599, -7.402915954589787 ], [ -79.577362060546818, -7.402915954589787 ], [ -79.577362060546818, -7.403471946716252 ], [ -79.576530456542969, -7.403471946716252 ], [ -79.576530456542969, -7.403193950653019 ], [ -79.576248168945312, -7.403193950653019 ], [ -79.576248168945312, -7.402637958526554 ], [ -79.575973510742188, -7.402637958526554 ], [ -79.575973510742188, -7.402083873748779 ], [ -79.575691223144531, -7.402083873748779 ], [ -79.575691223144531, -7.401527881622314 ], [ -79.575416564941406, -7.401527881622314 ], [ -79.575416564941406, -7.401249885559082 ], [ -79.575141906738224, -7.401249885559082 ], [ -79.575141906738224, -7.400693893432617 ], [ -79.574859619140568, -7.400693893432617 ], [ -79.574859619140568, -7.400137901306039 ], [ -79.574584960937443, -7.400137901306039 ], [ -79.574584960937443, -7.39958381652832 ], [ -79.574859619140568, -7.39958381652832 ], [ -79.574859619140568, -7.398471832275391 ], [ -79.575141906738224, -7.398471832275391 ], [ -79.575141906738224, -7.397915840148926 ], [ -79.573196411132812, -7.397915840148926 ], [ -79.573196411132812, -7.397637844085693 ], [ -79.572639465332031, -7.397637844085693 ], [ -79.572639465332031, -7.39708423614502 ], [ -79.572364807128906, -7.39708423614502 ], [ -79.572364807128906, -7.396527767181396 ], [ -79.57208251953125, -7.396527767181396 ], [ -79.57208251953125, -7.395971775054932 ], [ -79.571807861328068, -7.395971775054932 ], [ -79.571807861328068, -7.395140171050969 ], [ -79.571525573730412, -7.395140171050969 ], [ -79.571525573730412, -7.394028186798096 ], [ -79.571250915527287, -7.394028186798096 ], [ -79.571250915527287, -7.392362117767277 ], [ -79.570968627929631, -7.392362117767277 ], [ -79.570968627929631, -7.390971183776799 ], [ -79.570693969726449, -7.390934944152718 ], [ -79.570693969726449, -7.390139102935791 ], [ -79.571525573730412, -7.390139102935791 ], [ -79.571525573730412, -7.389583110809326 ], [ -79.571807861328068, -7.389583110809326 ], [ -79.571807861328068, -7.385971069335938 ], [ -79.57208251953125, -7.385972976684513 ], [ -79.57208251953125, -7.384305000305176 ], [ -79.572364807128906, -7.384305000305176 ], [ -79.572364807128906, -7.383194923400822 ], [ -79.572639465332031, -7.383194923400822 ], [ -79.572639465332031, -7.382082939147892 ], [ -79.572914123535156, -7.382082939147892 ], [ -79.572914123535156, -7.381250858306885 ], [ -79.573196411132812, -7.381250858306885 ], [ -79.573196411132812, -7.380694866180306 ], [ -79.573753356933594, -7.380694866180306 ], [ -79.573753356933594, -7.379581928253174 ], [ -79.574028015136662, -7.379581928253174 ], [ -79.574028015136662, -7.37763786315918 ], [ -79.574302673339787, -7.37763786315918 ], [ -79.574302673339787, -7.377081871032715 ], [ -79.574859619140568, -7.377081871032715 ], [ -79.574859619140568, -7.376805782318058 ], [ -79.575691223144531, -7.376805782318058 ], [ -79.575691223144531, -7.376527786254826 ], [ -79.576248168945312, -7.376527786254826 ], [ -79.576248168945312, -7.376249790191594 ], [ -79.576805114746094, -7.376249790191594 ], [ -79.576805114746094, -7.375971794128418 ], [ -79.577079772949162, -7.375971794128418 ], [ -79.577079772949162, -7.375693798065186 ], [ -79.577362060546818, -7.375693798065186 ], [ -79.577362060546818, -7.375415802001953 ], [ -79.577636718749943, -7.375415802001953 ], [ -79.577636718749943, -7.373194217681885 ], [ -79.577919006347599, -7.373194217681885 ], [ -79.577919006347599, -7.372082233428955 ], [ -79.578193664550724, -7.372084140777531 ], [ -79.578193664550724, -7.370694160461369 ], [ -79.579307556152344, -7.370694160461369 ], [ -79.579307556152344, -7.369582176208496 ], [ -79.579582214355469, -7.369582176208496 ], [ -79.579582214355469, -7.368472099304142 ], [ -79.579307556152344, -7.368472099304142 ], [ -79.579307556152344, -7.367916107177678 ], [ -79.58013916015625, -7.367916107177678 ], [ -79.58013916015625, -7.36708402633667 ], [ -79.580696105956974, -7.36708402633667 ], [ -79.580696105956974, -7.366806030273438 ], [ -79.581253051757756, -7.366806030273438 ], [ -79.581253051757756, -7.366528034210205 ], [ -79.581527709960938, -7.366528034210205 ], [ -79.581527709960938, -7.365971088409424 ], [ -79.581802368164062, -7.365971088409424 ], [ -79.581802368164062, -7.365417957305908 ], [ -79.582084655761719, -7.365417957305908 ], [ -79.582084655761719, -7.36486101150507 ], [ -79.582359313964844, -7.36486101150507 ], [ -79.582359313964844, -7.364305019378605 ], [ -79.5826416015625, -7.364305019378605 ], [ -79.5826416015625, -7.36402702331543 ], [ -79.582916259765625, -7.36402702331543 ], [ -79.582916259765625, -7.363471031188965 ], [ -79.58319091796875, -7.363471031188965 ], [ -79.58319091796875, -7.362916946411076 ], [ -79.583473205566293, -7.362916946411076 ], [ -79.583473205566293, -7.362360954284611 ], [ -79.583747863769474, -7.362360954284611 ], [ -79.583747863769474, -7.361804962158146 ], [ -79.584030151367131, -7.361804962158146 ], [ -79.584030151367131, -7.361248970031681 ], [ -79.584304809570256, -7.361248970031681 ], [ -79.584304809570256, -7.360694885253906 ], [ -79.584587097167912, -7.360694885253906 ], [ -79.584587097167912, -7.360138893127441 ], [ -79.585418701171875, -7.360138893127441 ], [ -79.585418701171875, -7.359582901000863 ], [ -79.585693359375, -7.359582901000863 ], [ -79.585693359375, -7.35847282409668 ], [ -79.585975646972656, -7.35847282409668 ], [ -79.585975646972656, -7.357638835906982 ], [ -79.586807250976506, -7.357638835906982 ], [ -79.586807250976506, -7.35736083984375 ], [ -79.587364196777287, -7.35736083984375 ], [ -79.587364196777287, -7.356804847717285 ], [ -79.587638854980412, -7.356804847717285 ], [ -79.587638854980412, -7.355694770812988 ], [ -79.587913513183594, -7.355694770812988 ], [ -79.587913513183594, -7.355138778686523 ], [ -79.58819580078125, -7.355138778686523 ], [ -79.58819580078125, -7.354860782623291 ], [ -79.588470458984375, -7.354860782623291 ], [ -79.588470458984375, -7.35430717468256 ], [ -79.588752746582031, -7.35430717468256 ], [ -79.588752746582031, -7.353751182556152 ], [ -79.589027404785156, -7.353751182556152 ], [ -79.589027404785156, -7.353195190429688 ], [ -79.590141296386662, -7.353195190429688 ], [ -79.590141296386662, -7.352917194366455 ], [ -79.590415954589787, -7.352917194366455 ], [ -79.590415954589787, -7.352359771728459 ], [ -79.590690612792912, -7.352359771728459 ], [ -79.590698242187443, -7.352081775665226 ], [ -79.590972900390568, -7.352081775665226 ], [ -79.590972900390568, -7.35013818740839 ], [ -79.59124755859375, -7.35013818740839 ], [ -79.59124755859375, -7.348750114440918 ], [ -79.591529846191406, -7.348750114440918 ], [ -79.591529846191406, -7.348472118377686 ], [ -79.59124755859375, -7.348472118377686 ], [ -79.59124755859375, -7.347638130187875 ], [ -79.591529846191406, -7.347638130187875 ], [ -79.591529846191406, -7.347084045410156 ], [ -79.591804504394531, -7.347084045410156 ], [ -79.591804504394531, -7.346528053283691 ], [ -79.592086791992188, -7.346528053283691 ], [ -79.592086791992188, -7.345694065093994 ], [ -79.592361450195312, -7.345694065093994 ], [ -79.592361450195312, -7.345138072967529 ], [ -79.592636108398438, -7.345139980316105 ], [ -79.592636108398438, -7.342916011810303 ], [ -79.592361450195312, -7.342916011810303 ], [ -79.592361450195312, -7.342360019683838 ], [ -79.592086791992188, -7.342361927032414 ], [ -79.592086791992188, -7.341805934905949 ], [ -79.591804504394531, -7.341805934905949 ], [ -79.591804504394531, -7.341249942779484 ], [ -79.591529846191406, -7.341249942779484 ], [ -79.591529846191406, -7.340693950653076 ], [ -79.591804504394531, -7.340693950653076 ], [ -79.591804504394531, -7.34013986587513 ], [ -79.592086791992188, -7.34013986587513 ], [ -79.592086791992188, -7.33930587768549 ], [ -79.591804504394531, -7.33930587768549 ], [ -79.591804504394531, -7.339026927947998 ], [ -79.591529846191406, -7.339026927947998 ], [ -79.591529846191406, -7.33847093582142 ], [ -79.59124755859375, -7.33847093582142 ], [ -79.59124755859375, -7.338192939758244 ], [ -79.590972900390568, -7.338192939758244 ], [ -79.590972900390568, -7.337944984436035 ], [ -79.59124755859375, -7.337917804718018 ], [ -79.59124755859375, -7.337638854980469 ], [ -79.591529846191406, -7.337638854980469 ], [ -79.591529846191406, -7.337360858917236 ], [ -79.59124755859375, -7.337360858917236 ], [ -79.59124755859375, -7.337082862854004 ], [ -79.591529846191406, -7.337082862854004 ], [ -79.591529846191406, -7.336248874664307 ], [ -79.59124755859375, -7.336248874664307 ], [ -79.59124755859375, -7.33597278594965 ], [ -79.590972900390568, -7.33597278594965 ], [ -79.590972900390568, -7.33513879776001 ], [ -79.590698242187443, -7.33513879776001 ], [ -79.590690612792912, -7.333748817443848 ], [ -79.590415954589787, -7.333748817443848 ], [ -79.590415954589787, -7.332639217376709 ], [ -79.590690612792912, -7.332639217376709 ], [ -79.590698242187443, -7.332361221313477 ], [ -79.590972900390568, -7.332361221313477 ], [ -79.590972900390568, -7.330695152282658 ], [ -79.591529846191406, -7.330695152282658 ], [ -79.591529846191406, -7.330139160156193 ], [ -79.591804504394531, -7.330139160156193 ], [ -79.591804504394531, -7.329583168029728 ], [ -79.592086791992188, -7.329583168029728 ], [ -79.592086791992188, -7.326529026031494 ], [ -79.591804504394531, -7.326529026031494 ], [ -79.591804504394531, -7.325416088104248 ], [ -79.591529846191406, -7.325416088104248 ], [ -79.591529846191406, -7.3245849609375 ], [ -79.59124755859375, -7.3245849609375 ], [ -79.59124755859375, -7.324028015136662 ], [ -79.590972900390568, -7.324028015136662 ], [ -79.590972900390568, -7.323472023010254 ], [ -79.590698242187443, -7.323472023010254 ], [ -79.590690612792912, -7.323194026947021 ], [ -79.590415954589787, -7.323194026947021 ], [ -79.590415954589787, -7.322638034820557 ], [ -79.590141296386662, -7.322638034820557 ], [ -79.590141296386662, -7.322083950042668 ], [ -79.589859008789006, -7.322083950042668 ], [ -79.589859008789006, -7.321805953979435 ], [ -79.589584350585938, -7.321805953979435 ], [ -79.589584350585938, -7.321249961852971 ], [ -79.589302062988281, -7.321249961852971 ], [ -79.589302062988281, -7.318749904632512 ], [ -79.589584350585938, -7.318749904632512 ], [ -79.589584350585938, -7.318193912506047 ], [ -79.589302062988281, -7.318193912506047 ], [ -79.589302062988281, -7.317083835601807 ], [ -79.589584350585938, -7.317083835601807 ], [ -79.589584350585938, -7.316527843475342 ], [ -79.589859008789006, -7.316527843475342 ], [ -79.589859008789006, -7.315971851348877 ], [ -79.590141296386662, -7.315971851348877 ], [ -79.590141296386662, -7.31486177444458 ], [ -79.590415954589787, -7.31486177444458 ], [ -79.590415954589787, -7.314583778381348 ], [ -79.590690612792912, -7.314583778381348 ], [ -79.590698242187443, -7.314027786254883 ], [ -79.590972900390568, -7.314027786254883 ], [ -79.590972900390568, -7.313192844390869 ], [ -79.59124755859375, -7.313192844390869 ], [ -79.59124755859375, -7.312640190124512 ], [ -79.591529846191406, -7.312640190124512 ], [ -79.591529846191406, -7.311804771423283 ], [ -79.591804504394531, -7.311804771423283 ], [ -79.591804504394531, -7.311248779296818 ], [ -79.591529846191406, -7.311248779296818 ], [ -79.591529846191406, -7.309583187103215 ], [ -79.592086791992188, -7.309583187103215 ], [ -79.592086791992188, -7.309305191039982 ], [ -79.592918395996094, -7.309305191039982 ], [ -79.592918395996094, -7.30708122253418 ], [ -79.593193054199162, -7.30708122253418 ], [ -79.593193054199162, -7.305971145629826 ], [ -79.593475341796818, -7.305971145629826 ], [ -79.593475341796818, -7.305139064788818 ], [ -79.593193054199162, -7.305139064788818 ], [ -79.593193054199162, -7.304583072662354 ], [ -79.593475341796818, -7.304583072662354 ], [ -79.593475341796818, -7.304305076599121 ], [ -79.59375, -7.304305076599121 ], [ -79.59375, -7.304027080535889 ], [ -79.594024658203068, -7.304027080535889 ], [ -79.594024658203068, -7.303749084472656 ], [ -79.594306945800781, -7.303749084472656 ], [ -79.594306945800781, -7.30347108840931 ], [ -79.594581604003906, -7.303472995758057 ], [ -79.594581604003906, -7.303194999694824 ], [ -79.594863891601562, -7.303194999694824 ], [ -79.594863891601562, -7.302917003631592 ], [ -79.595138549804688, -7.302917003631592 ], [ -79.595138549804688, -7.302361011505127 ], [ -79.595413208007812, -7.302361011505127 ], [ -79.595413208007812, -7.30152702331543 ], [ -79.595138549804688, -7.301528930664006 ], [ -79.595138549804688, -7.300694942474308 ], [ -79.595413208007812, -7.300694942474308 ], [ -79.595413208007812, -7.3001389503479 ], [ -79.595695495605469, -7.3001389503479 ], [ -79.595695495605469, -7.299582004547062 ], [ -79.595970153808594, -7.299582004547062 ], [ -79.595970153808594, -7.299028873443547 ], [ -79.596252441406136, -7.299028873443547 ], [ -79.596252441406136, -7.298472881317082 ], [ -79.596801757812443, -7.298472881317082 ], [ -79.596801757812443, -7.29819393157959 ], [ -79.597084045410099, -7.29819393157959 ], [ -79.597084045410099, -7.297081947326603 ], [ -79.597640991210938, -7.297081947326603 ], [ -79.597640991210938, -7.296805858612061 ], [ -79.598197937011719, -7.296805858612061 ], [ -79.598197937011719, -7.295693874359131 ], [ -79.598472595214844, -7.295693874359131 ], [ -79.598472595214844, -7.294861793518066 ], [ -79.598747253417969, -7.294861793518066 ], [ -79.598747253417969, -7.294305801391602 ], [ -79.599029541015625, -7.294305801391602 ], [ -79.599029541015625, -7.294027805328369 ], [ -79.599304199218636, -7.294027805328369 ], [ -79.599304199218636, -7.293471813201904 ], [ -79.599586486816349, -7.293471813201904 ], [ -79.599586486816349, -7.293193817138672 ], [ -79.599861145019474, -7.293193817138672 ], [ -79.599861145019474, -7.292637825012207 ], [ -79.600135803222599, -7.292637825012207 ], [ -79.600135803222599, -7.292362213134709 ], [ -79.600418090820256, -7.292362213134709 ], [ -79.600418090820256, -7.291806221008301 ], [ -79.600692749023438, -7.291806221008301 ], [ -79.600692749023438, -7.290972232818604 ], [ -79.600975036621094, -7.290972232818604 ], [ -79.600975036621094, -7.289859771728516 ], [ -79.601249694824219, -7.28986215591425 ], [ -79.601249694824219, -7.289306163787785 ], [ -79.601524353027344, -7.289306163787785 ], [ -79.601524353027344, -7.28875017166132 ], [ -79.601806640625, -7.28875017166132 ], [ -79.601806640625, -7.287638187408447 ], [ -79.602066040039006, -7.287638187408447 ], [ -79.602081298828125, -7.285971164703255 ], [ -79.602363586425781, -7.285971164703255 ], [ -79.602363586425781, -7.285140037536621 ], [ -79.603469848632756, -7.285140037536621 ], [ -79.603469848632756, -7.284862041473389 ], [ -79.603752136230412, -7.284862041473389 ], [ -79.603752136230412, -7.28458309173584 ], [ -79.604026794433594, -7.28458309173584 ], [ -79.604026794433594, -7.284305095672607 ], [ -79.60430908203125, -7.284305095672607 ], [ -79.60430908203125, -7.282639026641846 ], [ -79.604583740234375, -7.282639026641846 ], [ -79.604583740234375, -7.280971050262451 ], [ -79.6048583984375, -7.280971050262451 ], [ -79.6048583984375, -7.28013896942133 ], [ -79.605140686035156, -7.28013896942133 ], [ -79.605140686035156, -7.279860973358097 ], [ -79.605697631835938, -7.279860973358097 ], [ -79.605697631835938, -7.279582977294865 ], [ -79.605972290039006, -7.279582977294865 ], [ -79.605972290039006, -7.279026985168457 ], [ -79.606246948242131, -7.279026985168457 ], [ -79.606246948242131, -7.278194904327336 ], [ -79.606529235839787, -7.278194904327336 ], [ -79.606529235839787, -7.277916908264103 ], [ -79.606803894042912, -7.277916908264103 ], [ -79.606803894042912, -7.277638912200871 ], [ -79.60736083984375, -7.277638912200871 ], [ -79.60736083984375, -7.277360916137638 ], [ -79.607635498046875, -7.277360916137638 ], [ -79.607635498046875, -7.277082920074406 ], [ -79.607917785644531, -7.277082920074406 ], [ -79.607917785644531, -7.276804924011174 ], [ -79.608192443847656, -7.276804924011174 ], [ -79.608192443847656, -7.275972843170166 ], [ -79.608474731445312, -7.275972843170166 ], [ -79.608474731445312, -7.275694847106934 ], [ -79.608749389648438, -7.275694847106934 ], [ -79.608749389648438, -7.275138854980469 ], [ -79.609024047851506, -7.275138854980469 ], [ -79.609024047851506, -7.274860858917123 ], [ -79.609580993652287, -7.274860858917123 ], [ -79.609580993652287, -7.274582862853947 ], [ -79.609863281249943, -7.274582862853947 ], [ -79.609863281249943, -7.274028778076172 ], [ -79.610137939453125, -7.274028778076172 ], [ -79.610137939453125, -7.273472785949707 ], [ -79.610420227050781, -7.273472785949707 ], [ -79.610420227050781, -7.271807193756104 ], [ -79.610694885253906, -7.271807193756104 ], [ -79.610694885253906, -7.271251201629639 ], [ -79.610420227050781, -7.271251201629639 ], [ -79.610420227050781, -7.269859790802002 ], [ -79.610694885253906, -7.269859790802002 ], [ -79.610694885253906, -7.269306182861271 ], [ -79.610969543457031, -7.269306182861271 ], [ -79.610969543457031, -7.268750190734806 ], [ -79.611251831054688, -7.268750190734806 ], [ -79.611251831054688, -7.268194198608342 ], [ -79.611526489257812, -7.268194198608342 ], [ -79.611526489257812, -7.267638206481877 ], [ -79.611251831054688, -7.267638206481877 ], [ -79.611251831054688, -7.267082214355469 ], [ -79.612358093261662, -7.267082214355469 ], [ -79.612358093261662, -7.267360210418701 ], [ -79.612915039062443, -7.267360210418701 ], [ -79.612915039062443, -7.267082214355469 ], [ -79.613197326660099, -7.267082214355469 ], [ -79.613197326660099, -7.266804218292236 ], [ -79.613471984863281, -7.266804218292236 ], [ -79.613471984863281, -7.266248226165771 ], [ -79.613746643066406, -7.266248226165771 ], [ -79.613746643066406, -7.265970230102539 ], [ -79.614028930664062, -7.265972137451115 ], [ -79.614028930664062, -7.264028072357178 ], [ -79.614585876464844, -7.264028072357178 ], [ -79.614585876464844, -7.263472080230713 ], [ -79.614860534667969, -7.263472080230713 ], [ -79.614860534667969, -7.262360095977726 ], [ -79.61513519287098, -7.262360095977726 ], [ -79.61513519287098, -7.261528015136719 ], [ -79.616806030273438, -7.261528015136719 ], [ -79.616806030273438, -7.261250019073486 ], [ -79.616531372070256, -7.261250019073486 ], [ -79.616531372070256, -7.260694026947021 ], [ -79.616249084472599, -7.260694026947021 ], [ -79.616249084472599, -7.26013708114624 ], [ -79.615974426269474, -7.26013708114624 ], [ -79.615974426269474, -7.259859085083008 ], [ -79.616249084472599, -7.259861946105957 ], [ -79.616249084472599, -7.259583950042725 ], [ -79.617637634277344, -7.259583950042725 ], [ -79.617637634277344, -7.259861946105957 ], [ -79.618194580078125, -7.259861946105957 ], [ -79.618194580078125, -7.259305953979492 ], [ -79.618469238281193, -7.259305953979492 ], [ -79.618469238281193, -7.258193016052246 ], [ -79.618751525878849, -7.258193016052246 ], [ -79.618751525878849, -7.257360935211068 ], [ -79.619026184081974, -7.257360935211068 ], [ -79.619026184081974, -7.257082939147892 ], [ -79.619583129882756, -7.257082939147892 ], [ -79.619583129882756, -7.25680494308466 ], [ -79.619857788085938, -7.25680494308466 ], [ -79.619857788085938, -7.256526947021428 ], [ -79.620140075683594, -7.256526947021428 ], [ -79.620140075683594, -7.256248950958195 ], [ -79.620697021484375, -7.256248950958195 ], [ -79.620697021484375, -7.255972862243652 ], [ -79.621246337890625, -7.255972862243652 ], [ -79.621246337890625, -7.25569486618042 ], [ -79.621528625488281, -7.25569486618042 ], [ -79.621528625488281, -7.255138874053955 ], [ -79.621803283691349, -7.255138874053955 ], [ -79.621803283691349, -7.25458288192749 ], [ -79.622085571289006, -7.25458288192749 ], [ -79.622085571289006, -7.254026889801025 ], [ -79.622360229492131, -7.254026889801025 ], [ -79.622360229492131, -7.253194808959961 ], [ -79.622642517089787, -7.253194808959961 ], [ -79.622642517089787, -7.252638816833496 ], [ -79.623191833496094, -7.252638816833496 ], [ -79.623191833496094, -7.252082824707031 ], [ -79.62347412109375, -7.252082824707031 ], [ -79.62347412109375, -7.251526832580566 ], [ -79.623748779296875, -7.251526832580566 ], [ -79.623748779296875, -7.250973224639893 ], [ -79.624031066894531, -7.250973224639893 ], [ -79.624031066894531, -7.25069522857666 ], [ -79.624305725097656, -7.25069522857666 ], [ -79.624305725097656, -7.250417232513428 ], [ -79.624580383300781, -7.250417232513428 ], [ -79.624580383300781, -7.250139236450195 ], [ -79.625419616699162, -7.250139236450195 ], [ -79.625419616699162, -7.249582767486572 ], [ -79.625694274902287, -7.249582767486572 ], [ -79.625694274902287, -7.24930477142334 ], [ -79.625968933105469, -7.24930477142334 ], [ -79.625968933105469, -7.249026775360107 ], [ -79.62652587890625, -7.249026775360107 ], [ -79.62652587890625, -7.248748779296875 ], [ -79.626808166503906, -7.248751163482609 ], [ -79.626808166503906, -7.248195171356144 ], [ -79.62652587890625, -7.248195171356144 ], [ -79.62652587890625, -7.247083187103271 ], [ -79.626808166503906, -7.247083187103271 ], [ -79.626808166503906, -7.246805191040039 ], [ -79.627082824707031, -7.246805191040039 ], [ -79.627082824707031, -7.246525764465275 ], [ -79.627357482910156, -7.246525764465275 ], [ -79.627357482910156, -7.24625110626215 ], [ -79.627639770507812, -7.24625110626215 ], [ -79.627639770507812, -7.245695114135685 ], [ -79.627914428710824, -7.245695114135685 ], [ -79.627914428710824, -7.245417118072453 ], [ -79.628196716308537, -7.245417118072453 ], [ -79.628196716308537, -7.245138168334904 ], [ -79.628471374511662, -7.245138168334904 ], [ -79.628471374511662, -7.244860172271672 ], [ -79.629028320312443, -7.244860172271672 ], [ -79.629028320312443, -7.243750095367432 ], [ -79.629302978515625, -7.243750095367432 ], [ -79.629302978515625, -7.243472099304199 ], [ -79.629585266113281, -7.243472099304199 ], [ -79.629585266113281, -7.243194103240967 ], [ -79.629859924316406, -7.243194103240967 ], [ -79.629859924316406, -7.242916107177734 ], [ -79.630142211914062, -7.242916107177734 ], [ -79.630142211914062, -7.242638111114502 ], [ -79.630416870117188, -7.242638111114502 ], [ -79.630416870117188, -7.24236011505127 ], [ -79.630691528320312, -7.24236011505127 ], [ -79.630691528320312, -7.24208402633667 ], [ -79.631530761718693, -7.242082118988037 ], [ -79.631530761718693, -7.241806030273438 ], [ -79.631805419921818, -7.241806030273438 ], [ -79.631805419921818, -7.241528034210205 ], [ -79.632637023925781, -7.241528034210205 ], [ -79.632637023925781, -7.24097204208374 ], [ -79.632919311523438, -7.24097204208374 ], [ -79.632919311523438, -7.240416049957275 ], [ -79.633193969726562, -7.240416049957275 ], [ -79.633193969726562, -7.240138053894043 ], [ -79.633468627929688, -7.240138053894043 ], [ -79.633468627929688, -7.239583969116154 ], [ -79.633750915527344, -7.239583969116154 ], [ -79.633750915527344, -7.239305973052922 ], [ -79.634025573730469, -7.239305973052922 ], [ -79.634025573730469, -7.238749980926514 ], [ -79.634307861328125, -7.238749980926514 ], [ -79.634307861328125, -7.238471984863281 ], [ -79.634582519531193, -7.238471984863281 ], [ -79.634582519531193, -7.237915992736816 ], [ -79.634864807128849, -7.237915992736816 ], [ -79.634864807128849, -7.237360000610352 ], [ -79.635139465331974, -7.237361907958928 ], [ -79.635139465331974, -7.236805915832463 ], [ -79.635414123535099, -7.236805915832463 ], [ -79.635414123535099, -7.23652791976923 ], [ -79.635696411132812, -7.23652791976923 ], [ -79.635696411132812, -7.236249923705998 ], [ -79.635971069335938, -7.236249923705998 ], [ -79.635971069335938, -7.235971927642765 ], [ -79.636253356933594, -7.235971927642765 ], [ -79.636253356933594, -7.235693931579533 ], [ -79.636528015136719, -7.235693931579533 ], [ -79.636528015136719, -7.23541784286499 ], [ -79.636802673339844, -7.235415935516301 ], [ -79.636802673339844, -7.235139846801758 ], [ -79.6370849609375, -7.235139846801758 ], [ -79.6370849609375, -7.234861850738525 ], [ -79.637359619140625, -7.234861850738525 ], [ -79.637359619140625, -7.234583854675293 ], [ -79.637641906738168, -7.234583854675293 ], [ -79.637641906738168, -7.234027862548771 ], [ -79.637916564941349, -7.234027862548771 ], [ -79.637916564941349, -7.233749866485539 ], [ -79.638191223144474, -7.233749866485539 ], [ -79.638191223144474, -7.233471870422306 ], [ -79.638473510742131, -7.233471870422306 ], [ -79.638473510742131, -7.233193874359074 ], [ -79.638748168945312, -7.233193874359074 ], [ -79.638748168945312, -7.232917785644531 ], [ -79.639030456542969, -7.232917785644531 ], [ -79.639030456542969, -7.232639789581299 ], [ -79.639305114746094, -7.232639789581299 ], [ -79.639305114746094, -7.232361793518066 ], [ -79.639579772949219, -7.232361793518066 ], [ -79.639579772949219, -7.232083797454834 ], [ -79.639862060546875, -7.232083797454834 ], [ -79.639862060546875, -7.231805801391602 ], [ -79.640975952148381, -7.231805801391602 ], [ -79.640975952148381, -7.231526851654053 ], [ -79.641250610351506, -7.231526851654053 ], [ -79.641250610351506, -7.230970859527588 ], [ -79.641525268554631, -7.230970859527588 ], [ -79.641525268554631, -7.23041820526123 ], [ -79.641807556152287, -7.23041820526123 ], [ -79.641807556152287, -7.229860782623234 ], [ -79.642082214355469, -7.229860782623234 ], [ -79.642082214355469, -7.229582786560059 ], [ -79.642364501953125, -7.229582786560059 ], [ -79.642364501953125, -7.229026794433594 ], [ -79.64263916015625, -7.229026794433594 ], [ -79.64263916015625, -7.228470802307129 ], [ -79.642913818359375, -7.228470802307129 ], [ -79.642913818359375, -7.227917194366398 ], [ -79.643470764160156, -7.227917194366398 ], [ -79.643470764160156, -7.228192806243896 ], [ -79.643753051757812, -7.228192806243896 ], [ -79.643753051757812, -7.228748798370361 ], [ -79.644027709960881, -7.228748798370361 ], [ -79.644027709960881, -7.228470802307129 ], [ -79.644302368164006, -7.228470802307129 ], [ -79.644302368164006, -7.227917194366398 ], [ -79.644584655761662, -7.227917194366398 ], [ -79.644584655761662, -7.227639198303166 ], [ -79.644859313964787, -7.227639198303166 ], [ -79.644859313964787, -7.227361202239933 ], [ -79.645141601562443, -7.227361202239933 ], [ -79.645141601562443, -7.226805210113525 ], [ -79.645416259765625, -7.226805210113525 ], [ -79.645416259765625, -7.226527214050293 ], [ -79.64569091796875, -7.226527214050293 ], [ -79.64569091796875, -7.225693225860596 ], [ -79.645973205566406, -7.225693225860596 ], [ -79.645973205566406, -7.225137233734131 ], [ -79.646247863769531, -7.225137233734131 ], [ -79.646247863769531, -7.224580764770508 ], [ -79.646530151367188, -7.224583148956242 ], [ -79.646530151367188, -7.22430515289301 ], [ -79.646804809570312, -7.22430515289301 ], [ -79.646804809570312, -7.224027156829777 ], [ -79.647918701171818, -7.224027156829777 ], [ -79.647918701171818, -7.223749160766545 ], [ -79.648750305175781, -7.223749160766545 ], [ -79.648750305175781, -7.223471164703312 ], [ -79.649024963378906, -7.223473072052002 ], [ -79.649024963378906, -7.22319507598877 ], [ -79.649307250976562, -7.22319507598877 ], [ -79.649307250976562, -7.222917079925537 ], [ -79.649581909179688, -7.222917079925537 ], [ -79.649581909179688, -7.222639083862305 ], [ -79.649864196777344, -7.222639083862305 ], [ -79.649864196777344, -7.222361087798959 ], [ -79.650138854980469, -7.222361087798959 ], [ -79.650138854980469, -7.222083091735783 ], [ -79.650695800781193, -7.222083091735783 ], [ -79.650695800781193, -7.221805095672551 ], [ -79.650970458984318, -7.221805095672551 ], [ -79.650970458984318, -7.221527099609318 ], [ -79.651252746581974, -7.221527099609318 ], [ -79.651252746581974, -7.221249103546086 ], [ -79.651527404785156, -7.221249103546086 ], [ -79.651527404785156, -7.220971107482853 ], [ -79.651802062988281, -7.220973014831543 ], [ -79.651802062988281, -7.220695018768311 ], [ -79.652084350585938, -7.220695018768311 ], [ -79.652084350585938, -7.220417022705078 ], [ -79.652359008789062, -7.220417022705078 ], [ -79.652359008789062, -7.220139026641846 ], [ -79.652641296386719, -7.220139026641846 ], [ -79.652641296386719, -7.219861030578613 ], [ -79.652915954589844, -7.219861030578613 ], [ -79.652915954589844, -7.219583034515381 ], [ -79.653190612792969, -7.219583034515381 ], [ -79.6531982421875, -7.219304084777832 ], [ -79.653472900390511, -7.219304084777832 ], [ -79.653472900390511, -7.219028949737549 ], [ -79.653747558593693, -7.2190260887146 ], [ -79.653747558593693, -7.218750953674316 ], [ -79.654029846191349, -7.218750953674316 ], [ -79.654029846191349, -7.218472957611084 ], [ -79.654304504394474, -7.218472957611084 ], [ -79.654304504394474, -7.218194961547852 ], [ -79.654586791992131, -7.218194961547852 ], [ -79.654586791992131, -7.21763801574707 ], [ -79.654861450195312, -7.21763801574707 ], [ -79.654861450195312, -7.217360019683838 ], [ -79.655136108398438, -7.217360019683838 ], [ -79.655136108398438, -7.217082023620605 ], [ -79.655418395996094, -7.217082023620605 ], [ -79.655418395996094, -7.216806888580265 ], [ -79.655693054199219, -7.216806888580265 ], [ -79.655693054199219, -7.216527938842717 ], [ -79.655975341796875, -7.216527938842717 ], [ -79.655975341796875, -7.216249942779484 ], [ -79.65625, -7.216249942779484 ], [ -79.65625, -7.215971946716252 ], [ -79.657363891601506, -7.215971946716252 ], [ -79.657363891601506, -7.215693950653019 ], [ -79.657638549804631, -7.215693950653019 ], [ -79.657638549804631, -7.215137958526554 ], [ -79.658195495605469, -7.215137958526554 ], [ -79.658195495605469, -7.214859962463322 ], [ -79.658470153808594, -7.214859962463322 ], [ -79.658470153808594, -7.214583873748779 ], [ -79.65875244140625, -7.214583873748779 ], [ -79.65875244140625, -7.214305877685547 ], [ -79.6593017578125, -7.214305877685547 ], [ -79.6593017578125, -7.213749885559082 ], [ -79.659584045410156, -7.213749885559082 ], [ -79.659584045410156, -7.21347188949585 ], [ -79.659858703613224, -7.21347188949585 ], [ -79.659858703613224, -7.213193893432504 ], [ -79.660140991210881, -7.213193893432504 ], [ -79.660140991210881, -7.212915897369328 ], [ -79.660415649414006, -7.212915897369328 ], [ -79.660415649414006, -7.212637901306096 ], [ -79.660697937011662, -7.212637901306096 ], [ -79.660697937011662, -7.212361812591553 ], [ -79.660972595214787, -7.212359905242863 ], [ -79.660972595214787, -7.211805820465088 ], [ -79.661247253417969, -7.211805820465088 ], [ -79.661247253417969, -7.211527824401855 ], [ -79.661529541015625, -7.211527824401855 ], [ -79.661529541015625, -7.210971832275391 ], [ -79.66180419921875, -7.210971832275391 ], [ -79.66180419921875, -7.210693836212158 ], [ -79.662086486816406, -7.210693836212158 ], [ -79.662086486816406, -7.210415840148926 ], [ -79.662361145019531, -7.210415840148926 ], [ -79.662361145019531, -7.209862232208252 ], [ -79.662635803222656, -7.209862232208252 ], [ -79.662635803222656, -7.209581851959115 ], [ -79.663749694824162, -7.20958423614502 ], [ -79.663749694824162, -7.209305763244629 ], [ -79.664024353027287, -7.209305763244629 ], [ -79.664024353027287, -7.209027767181396 ], [ -79.665138244628906, -7.209027767181396 ], [ -79.665138244628906, -7.208749771118164 ], [ -79.665412902832031, -7.208749771118164 ], [ -79.665412902832031, -7.208471775054932 ], [ -79.665695190429688, -7.208471775054932 ], [ -79.665695190429688, -7.208193778991699 ], [ -79.665969848632812, -7.208193778991699 ], [ -79.665969848632812, -7.207640171050969 ], [ -79.666252136230355, -7.207640171050969 ], [ -79.666252136230355, -7.207084178924561 ], [ -79.666526794433537, -7.207084178924561 ], [ -79.666526794433537, -7.206806182861328 ], [ -79.6673583984375, -7.206806182861328 ], [ -79.6673583984375, -7.205972194671631 ], [ -79.667640686035156, -7.205972194671631 ], [ -79.667640686035156, -7.205418109893742 ], [ -79.668197631835938, -7.205418109893742 ], [ -79.668197631835938, -7.20514011383051 ], [ -79.668746948242188, -7.20514011383051 ], [ -79.668746948242188, -7.204862117767277 ], [ -79.669029235839844, -7.204862117767277 ], [ -79.669029235839844, -7.204584121704045 ], [ -79.669303894042855, -7.204584121704045 ], [ -79.669303894042855, -7.204305171966496 ], [ -79.669586181640568, -7.204305171966496 ], [ -79.669586181640568, -7.204027175903263 ], [ -79.669860839843693, -7.204027175903263 ], [ -79.669860839843693, -7.203749179840031 ], [ -79.670135498046818, -7.203749179840031 ], [ -79.670135498046818, -7.203471183776799 ], [ -79.670417785644474, -7.203471183776799 ], [ -79.670417785644474, -7.202917098999023 ], [ -79.670692443847656, -7.202917098999023 ], [ -79.670692443847656, -7.202639102935791 ], [ -79.670974731445312, -7.202639102935791 ], [ -79.670974731445312, -7.202361106872559 ], [ -79.671249389648438, -7.202361106872559 ], [ -79.671249389648438, -7.201805114746094 ], [ -79.671806335449219, -7.201805114746094 ], [ -79.671806335449219, -7.201527118682861 ], [ -79.672080993652344, -7.201527118682861 ], [ -79.672080993652344, -7.200695037841797 ], [ -79.67236328125, -7.200695037841797 ], [ -79.67236328125, -7.200139045715332 ], [ -79.672637939453068, -7.200139045715332 ], [ -79.672637939453068, -7.1998610496521 ], [ -79.672920227050724, -7.1998610496521 ], [ -79.672920227050724, -7.199305057525635 ], [ -79.673194885253849, -7.199305057525635 ], [ -79.673194885253849, -7.19874906539917 ], [ -79.673469543456974, -7.19874906539917 ], [ -79.673469543456974, -7.198471069335938 ], [ -79.673751831054631, -7.198471069335938 ], [ -79.673751831054631, -7.198194980621338 ], [ -79.674026489257812, -7.198194980621338 ], [ -79.674026489257812, -7.197916984558105 ], [ -79.674308776855469, -7.197916984558105 ], [ -79.674308776855469, -7.197638988494873 ], [ -79.674583435058594, -7.197638988494873 ], [ -79.674583435058594, -7.197360992431641 ], [ -79.675140380859375, -7.197360992431641 ], [ -79.675140380859375, -7.197082996368408 ], [ -79.6754150390625, -7.197082996368408 ], [ -79.6754150390625, -7.196805000305176 ], [ -79.676246643066349, -7.196805000305176 ], [ -79.676246643066349, -7.196249008178711 ], [ -79.676528930664006, -7.196250915527287 ], [ -79.676528930664006, -7.195972919464054 ], [ -79.676803588867131, -7.195972919464054 ], [ -79.676803588867131, -7.195694923400822 ], [ -79.677085876464844, -7.195694923400822 ], [ -79.677085876464844, -7.19541692733759 ], [ -79.677360534667969, -7.19541692733759 ], [ -79.677360534667969, -7.194860935211125 ], [ -79.677635192871094, -7.194860935211125 ], [ -79.677635192871094, -7.194582939147949 ], [ -79.67791748046875, -7.194582939147949 ], [ -79.67791748046875, -7.194304943084717 ], [ -79.678192138671875, -7.194304943084717 ], [ -79.678192138671875, -7.194028854370117 ], [ -79.678474426269531, -7.194028854370117 ], [ -79.678474426269531, -7.193750858306771 ], [ -79.679031372070199, -7.193750858306771 ], [ -79.679031372070199, -7.193472862243596 ], [ -79.679306030273381, -7.193472862243596 ], [ -79.679306030273381, -7.193194866180363 ], [ -79.680137634277344, -7.193194866180363 ], [ -79.680137634277344, -7.192360877990666 ], [ -79.680419921875, -7.192360877990666 ], [ -79.680419921875, -7.191803932189885 ], [ -79.680694580078125, -7.191803932189885 ], [ -79.680694580078125, -7.190972805023193 ], [ -79.68096923828125, -7.190972805023193 ], [ -79.68096923828125, -7.190415859222412 ], [ -79.681251525878906, -7.190415859222412 ], [ -79.681251525878906, -7.19013786315918 ], [ -79.682083129882699, -7.19013786315918 ], [ -79.682083129882699, -7.189859867095947 ], [ -79.682640075683537, -7.189859867095947 ], [ -79.682640075683537, -7.189581871032715 ], [ -79.682914733886662, -7.189581871032715 ], [ -79.682914733886662, -7.189305782318058 ], [ -79.683197021484318, -7.189303874969482 ], [ -79.683197021484318, -7.18874979019165 ], [ -79.6834716796875, -7.18874979019165 ], [ -79.6834716796875, -7.188193798065186 ], [ -79.684303283691406, -7.188193798065186 ], [ -79.684303283691406, -7.187637805938721 ], [ -79.684585571289062, -7.187637805938721 ], [ -79.684585571289062, -7.18708419799799 ], [ -79.684860229492188, -7.18708419799799 ], [ -79.684860229492188, -7.186528205871525 ], [ -79.685142517089844, -7.186528205871525 ], [ -79.685142517089844, -7.185972213745117 ], [ -79.686248779296818, -7.185972213745117 ], [ -79.686248779296818, -7.185694217681885 ], [ -79.686531066894474, -7.185694217681885 ], [ -79.686531066894474, -7.18513822555542 ], [ -79.686805725097656, -7.18513822555542 ], [ -79.686805725097656, -7.184582233428955 ], [ -79.687080383300781, -7.184582233428955 ], [ -79.687080383300781, -7.184025764465332 ], [ -79.687362670898438, -7.184025764465332 ], [ -79.687362670898438, -7.183750152587834 ], [ -79.687637329101562, -7.183750152587834 ], [ -79.687637329101562, -7.183472156524601 ], [ -79.687919616699219, -7.183472156524601 ], [ -79.687919616699219, -7.183194160461369 ], [ -79.688194274902344, -7.183194160461369 ], [ -79.688194274902344, -7.182916164398137 ], [ -79.688468933105412, -7.182916164398137 ], [ -79.688468933105412, -7.182640075683594 ], [ -79.688751220703068, -7.182638168334961 ], [ -79.688751220703068, -7.182360172271729 ], [ -79.689025878906193, -7.182360172271729 ], [ -79.689025878906193, -7.182082176208496 ], [ -79.689308166503849, -7.182084083557129 ], [ -79.689308166503849, -7.181806087493783 ], [ -79.689582824706974, -7.181806087493783 ], [ -79.689582824706974, -7.181528091430607 ], [ -79.689857482910156, -7.181528091430607 ], [ -79.689857482910156, -7.181250095367375 ], [ -79.690139770507812, -7.181250095367375 ], [ -79.690139770507812, -7.180972099304142 ], [ -79.690414428710938, -7.180972099304142 ], [ -79.690414428710938, -7.18069410324091 ], [ -79.690971374511719, -7.18069410324091 ], [ -79.690971374511719, -7.179859161376896 ], [ -79.691253662109375, -7.179862022399902 ], [ -79.691253662109375, -7.17958402633667 ], [ -79.6915283203125, -7.17958402633667 ], [ -79.689720153808594, -7.177473068237305 ], [ -79.654190063476562, -7.13864088058466 ], [ -79.635650634765625, -7.118902206420898 ], [ -79.61956787109375, -7.101243019104004 ], [ -79.605842590332031, -7.086897850036621 ], [ -79.592597961425724, -7.072421073913517 ], [ -79.538414001464844, -7.014121055603027 ], [ -79.52850341796875, -7.00410604476923 ], [ -79.524948120117188, -7.000236034393311 ], [ -79.522033691406193, -6.996719837188721 ], [ -79.521133422851562, -6.994455814361572 ], [ -79.521194458007756, -6.994058132171631 ], [ -79.520141601562443, -6.992201805114746 ], [ -79.515571594238168, -6.987997055053654 ], [ -79.513938903808537, -6.986049175262394 ], [ -79.515106201171875, -6.981481075286865 ], [ -79.515022277832031, -6.979453086852971 ], [ -79.514602661132756, -6.978302001953125 ], [ -79.513572692871094, -6.977247238159123 ], [ -79.510299682617131, -6.975097179412728 ], [ -79.50909423828125, -6.971672058105412 ], [ -79.50738525390625, -6.969399929046574 ], [ -79.506851196289062, -6.969007968902588 ], [ -79.505088806152344, -6.968347072601262 ], [ -79.50341796875, -6.966775894165039 ], [ -79.502021789550724, -6.966772079467773 ], [ -79.501365661621094, -6.967074871063176 ], [ -79.500381469726506, -6.968789100646973 ], [ -79.497665405273438, -6.97129583358759 ], [ -79.4959716796875, -6.972120761871338 ], [ -79.494354248046875, -6.972310066223145 ], [ -79.492996215820312, -6.971556186676025 ], [ -79.490364074706974, -6.968289852142334 ], [ -79.48822021484375, -6.967490196228027 ], [ -79.486480712890568, -6.96623420715332 ], [ -79.48480224609375, -6.966755867004395 ], [ -79.481765747070312, -6.969615936279297 ], [ -79.480140686035156, -6.970569133758545 ], [ -79.479232788085881, -6.970856189727783 ], [ -79.477653503417969, -6.97055721282959 ], [ -79.476257324218693, -6.969281196594181 ], [ -79.474906921386719, -6.968643188476562 ], [ -79.470771789550781, -6.968376159667969 ], [ -79.468177795410156, -6.966193199157658 ], [ -79.467628479003906, -6.965437889099064 ], [ -79.466827392578068, -6.963570117950383 ], [ -79.465324401855469, -6.962203979492131 ], [ -79.464149475097599, -6.960546970367375 ], [ -79.461463928222599, -6.95807504653925 ], [ -79.459327697753906, -6.955634117126465 ], [ -79.457809448242188, -6.953238010406494 ], [ -79.454299926757812, -6.946670055389347 ], [ -79.453559875488224, -6.946389198303223 ], [ -79.452507019042912, -6.946568965911865 ], [ -79.449623107910156, -6.948029994964543 ], [ -79.44915771484375, -6.947916030883789 ], [ -79.448112487792912, -6.947141170501709 ], [ -79.446632385253906, -6.947039127349854 ], [ -79.445083618164006, -6.947802066802979 ], [ -79.442131042480412, -6.948101043701115 ], [ -79.439491271972656, -6.949071884155273 ], [ -79.435890197753906, -6.949556827545166 ], [ -79.43023681640625, -6.950792789459229 ], [ -79.427932739257812, -6.950830936431828 ], [ -79.424125671386719, -6.952806949615479 ], [ -79.416961669921761, -6.953999042510986 ], [ -79.410827636718693, -6.955537796020508 ], [ -79.408912658691406, -6.956520080566406 ], [ -79.407546997070312, -6.95801305770874 ], [ -79.406829833984318, -6.958371162414551 ], [ -79.404945373535043, -6.958444118499699 ], [ -79.402481079101562, -6.957311153411752 ], [ -79.400833129882756, -6.957281112670898 ], [ -79.399665832519474, -6.958095073699894 ], [ -79.398521423339787, -6.959250926971379 ], [ -79.395568847656193, -6.962958812713566 ], [ -79.393035888671875, -6.964469909667969 ], [ -79.392005920410156, -6.965527057647705 ], [ -79.391685485839787, -6.966423034667912 ], [ -79.391700744628906, -6.968856811523438 ], [ -79.391326904296875, -6.970709800720215 ], [ -79.38983154296875, -6.973883152008057 ], [ -79.38763427734375, -6.977644920349064 ], [ -79.384445190429688, -6.978675842285156 ], [ -79.382011413574219, -6.979835987091064 ], [ -79.375854492187443, -6.9852418899535 ], [ -79.371955871582031, -6.985420227050781 ], [ -79.370597839355412, -6.986040115356445 ], [ -79.368225097656193, -6.992186069488525 ], [ -79.366378784179688, -6.995937824249268 ], [ -79.365074157714787, -6.99781608581543 ], [ -79.363319396972656, -6.999292850494328 ], [ -79.362289428710881, -7.000503063201904 ], [ -79.361083984375, -7.002417087554875 ], [ -79.360504150390511, -7.004074096679631 ], [ -79.360061645507812, -7.004753112792912 ], [ -79.356788635253906, -7.006940841674805 ], [ -79.354660034179631, -7.00806999206543 ], [ -79.353042602539006, -7.008246898651123 ], [ -79.349014282226562, -7.007752895355168 ], [ -79.348266601562443, -7.007939815521183 ], [ -79.346267700195256, -7.009157180786133 ], [ -79.344345092773438, -7.009754180908203 ], [ -79.341407775878849, -7.011683940887394 ], [ -79.337684631347599, -7.014839172363281 ], [ -79.336524963378906, -7.016293048858586 ], [ -79.333885192871037, -7.021323204040471 ], [ -79.333366394042969, -7.022031784057617 ], [ -79.331741333007812, -7.023454189300537 ], [ -79.327888488769418, -7.025927066802979 ], [ -79.326004028320312, -7.026196002960205 ], [ -79.323806762695312, -7.025594234466439 ], [ -79.322891235351562, -7.025819778442383 ], [ -79.324546813964787, -7.027589797973576 ], [ -79.325050354003906, -7.028547763824406 ], [ -79.326301574707031, -7.03433895111084 ], [ -79.326530456542912, -7.037150859832707 ], [ -79.327423095703125, -7.040119171142521 ], [ -79.327705383300781, -7.043616771697998 ], [ -79.329833984375, -7.048713207244816 ], [ -79.331672668456974, -7.054782867431641 ], [ -79.331863403320256, -7.058534145355225 ], [ -79.331443786621094, -7.061749935150146 ], [ -79.330177307128793, -7.064573764801025 ], [ -79.328330993652287, -7.072035789489746 ], [ -79.328445434570256, -7.073089122772217 ], [ -79.330284118652344, -7.075589179992676 ], [ -79.330604553222656, -7.076479911804199 ], [ -79.330581665039062, -7.077155113220215 ], [ -79.328948974609375, -7.080832958221379 ], [ -79.32708740234375, -7.083150863647461 ], [ -79.324501037597656, -7.083824157714787 ], [ -79.3223876953125, -7.085460186004639 ], [ -79.320617675781193, -7.085457801818791 ], [ -79.319618225097656, -7.085042953491211 ], [ -79.318405151367188, -7.085164070129338 ], [ -79.31744384765625, -7.085893154144287 ], [ -79.316825866699105, -7.086772918701115 ], [ -79.316421508789006, -7.087933063507023 ], [ -79.315155029296875, -7.089142799377441 ], [ -79.314010620117188, -7.091417789459172 ], [ -79.312149047851506, -7.096893787383976 ], [ -79.3123779296875, -7.108609199523926 ], [ -79.31207275390625, -7.110328197479134 ], [ -79.311302185058594, -7.112500190734863 ], [ -79.310615539550724, -7.113334178924561 ], [ -79.306114196777287, -7.116290092468205 ], [ -79.30419921875, -7.118193149566594 ], [ -79.302558898925781, -7.119121074676514 ], [ -79.299697875976562, -7.121582031249943 ], [ -79.297050476074162, -7.124979972839299 ], [ -79.29595947265625, -7.128148078918457 ], [ -79.297599792480469, -7.13123607635498 ], [ -79.298622131347656, -7.131902217864933 ], [ -79.300300598144474, -7.132419109344426 ], [ -79.301010131835938, -7.133043766021729 ], [ -79.302032470703068, -7.135093212127629 ], [ -79.303131103515625, -7.136281967163086 ], [ -79.303619384765625, -7.137963771820068 ], [ -79.304016113281193, -7.138239860534611 ], [ -79.303955078125, -7.138637065887394 ], [ -79.305023193359375, -7.139674186706486 ], [ -79.306167602539062, -7.141837120056152 ], [ -79.306877136230412, -7.144257068634033 ], [ -79.306442260742188, -7.14652490615839 ], [ -79.304504394531193, -7.1487717628479 ], [ -79.303283691406136, -7.149631023406982 ], [ -79.302635192871094, -7.149846076965218 ], [ -79.295234680175781, -7.149858951568547 ], [ -79.289634704589787, -7.153592109680176 ], [ -79.288841247558594, -7.153754234313965 ], [ -79.285675048828125, -7.155533790588322 ], [ -79.284210205078011, -7.155800819396973 ], [ -79.282310485839844, -7.156494140624943 ], [ -79.2806396484375, -7.157636165618896 ], [ -79.279937744140625, -7.159078121185246 ], [ -79.279563903808594, -7.16134595870966 ], [ -79.2801513671875, -7.165010929107609 ], [ -79.281181335449219, -7.168212890624943 ], [ -79.280792236328125, -7.169787883758545 ], [ -79.280036926269531, -7.17120981216425 ], [ -79.278602600097656, -7.172821998596135 ], [ -79.278045654296875, -7.174051761627197 ], [ -79.276039123535156, -7.176751136779785 ], [ -79.275489807128906, -7.178551197052002 ], [ -79.274772644042969, -7.182778835296631 ], [ -79.273796081542912, -7.183754920959473 ], [ -79.271598815917912, -7.184775829315129 ], [ -79.270126342773438, -7.185980796813965 ], [ -79.269462585449219, -7.187430858612061 ], [ -79.268257141113224, -7.191329956054688 ], [ -79.267349243164062, -7.192953109741154 ], [ -79.266349792480412, -7.193919181823674 ], [ -79.265220642089787, -7.194614887237549 ], [ -79.263038635253793, -7.194733142852726 ], [ -79.259735107421875, -7.195884227752686 ], [ -79.2586669921875, -7.19577693939209 ], [ -79.257499694824162, -7.196463108062744 ], [ -79.255485534667912, -7.198215961456299 ], [ -79.253761291503849, -7.198618888854924 ], [ -79.252159118652287, -7.198588848114014 ], [ -79.251930236816406, -7.198896884918156 ], [ -79.252098083496094, -7.199572086334229 ], [ -79.255455017089844, -7.20095682144165 ], [ -79.256454467773381, -7.201859951019287 ], [ -79.257781982421818, -7.202523231506348 ], [ -79.258712768554631, -7.203524112701416 ], [ -79.260566711425781, -7.203363895416203 ], [ -79.261764526367131, -7.203957080841064 ], [ -79.263046264648438, -7.205532073974609 ], [ -79.263633728027344, -7.208043098449707 ], [ -79.264137268066406, -7.208959102630558 ], [ -79.265701293945256, -7.210278987884521 ], [ -79.267738342285156, -7.211307048797551 ], [ -79.271316528320256, -7.215352058410588 ], [ -79.272216796875, -7.215569019317627 ], [ -79.275848388671875, -7.215257167816105 ], [ -79.276336669921875, -7.215871810913086 ], [ -79.276039123535156, -7.217309951782227 ], [ -79.274894714355469, -7.218646049499455 ], [ -79.274322509765625, -7.219861030578613 ], [ -79.274124145507812, -7.221198081970158 ], [ -79.274238586425781, -7.223622798919678 ], [ -79.273872375488281, -7.224771976470947 ], [ -79.272262573242131, -7.226772785186711 ], [ -79.269996643066349, -7.227931022644043 ], [ -79.269607543945256, -7.228456974029484 ], [ -79.269866943359375, -7.228769779205322 ], [ -79.271095275878906, -7.228983879089355 ], [ -79.271507263183537, -7.229278087615967 ], [ -79.273597717285099, -7.232624053955078 ], [ -79.274017333984375, -7.234018802642822 ], [ -79.274314880371094, -7.238471984863281 ], [ -79.276123046875, -7.240791797637883 ], [ -79.276771545410043, -7.243032932281437 ], [ -79.279411315917912, -7.245739936828613 ], [ -79.279563903808594, -7.247478961944523 ], [ -79.279006958007812, -7.249559879302979 ], [ -79.278106689453011, -7.251048088073674 ], [ -79.276222229003906, -7.253519058227482 ], [ -79.274642944335881, -7.254986763000488 ], [ -79.274093627929631, -7.255920886993408 ], [ -79.273918151855469, -7.256833076476994 ], [ -79.272163391113224, -7.258619785308838 ], [ -79.271644592285156, -7.259506225585938 ], [ -79.271514892578068, -7.260663986205998 ], [ -79.271827697753906, -7.263574123382568 ], [ -79.271736145019531, -7.264757156372013 ], [ -79.271347045898438, -7.265554904937687 ], [ -79.269477844238281, -7.267763137817383 ], [ -79.268768310546875, -7.27105712890625 ], [ -79.268844604492131, -7.272398948669434 ], [ -79.269721984863281, -7.274942874908447 ], [ -79.269905090331918, -7.277233123779183 ], [ -79.270271301269474, -7.278229236602783 ], [ -79.271369934082031, -7.279043197631836 ], [ -79.273765563964844, -7.279045104980355 ], [ -79.277290344238281, -7.278696060180607 ], [ -79.278266906738224, -7.278235912322941 ], [ -79.280418395996094, -7.276022911071777 ], [ -79.281883239746094, -7.275325775146371 ], [ -79.283226013183537, -7.275140762329102 ], [ -79.2847900390625, -7.275548934936467 ], [ -79.286109924316349, -7.276233196258488 ], [ -79.287734985351506, -7.278209209442139 ], [ -79.289016723632812, -7.279189109802189 ], [ -79.291091918945312, -7.278241157531738 ], [ -79.292121887206974, -7.278366088867131 ], [ -79.295928955078068, -7.281135082244873 ], [ -79.297409057617188, -7.281311035156193 ], [ -79.299461364746037, -7.280687808990479 ], [ -79.300407409667912, -7.280758857726994 ], [ -79.301422119140625, -7.281118869781494 ], [ -79.304229736328068, -7.28274393081665 ], [ -79.307510375976562, -7.283462047576904 ], [ -79.309547424316349, -7.285427093505803 ], [ -79.312713623046818, -7.290277004241943 ], [ -79.314796447753849, -7.292394161224365 ], [ -79.314926147460938, -7.292915821075439 ], [ -79.314582824707031, -7.294768810272103 ], [ -79.314926147460938, -7.295910835266113 ], [ -79.315773010253849, -7.296606063842717 ], [ -79.316825866699105, -7.296858787536621 ], [ -79.317245483398438, -7.297189235687199 ], [ -79.318000793457031, -7.298317909240666 ], [ -79.318138122558537, -7.299227237701302 ], [ -79.318428039550724, -7.299685001373234 ], [ -79.320648193359375, -7.301846027374211 ], [ -79.323570251464787, -7.305389881134033 ], [ -79.32440185546875, -7.306050777435246 ], [ -79.326927185058537, -7.307378768920898 ], [ -79.328193664550781, -7.308884143829289 ], [ -79.331642150878906, -7.310057163238525 ], [ -79.333709716796875, -7.311326980590707 ], [ -79.336830139160099, -7.311849117279053 ], [ -79.337821960449219, -7.312191009521484 ], [ -79.339035034179631, -7.313170909881535 ], [ -79.341705322265568, -7.316292762756348 ], [ -79.344406127929688, -7.318315029144287 ], [ -79.349288940429688, -7.320602893829289 ], [ -79.350906372070312, -7.321831226348877 ], [ -79.354629516601562, -7.322437763214054 ], [ -79.356468200683537, -7.322953224182129 ], [ -79.358741760253906, -7.324978828430176 ], [ -79.360214233398381, -7.325261116027832 ], [ -79.361381530761719, -7.324923992156982 ], [ -79.36541748046875, -7.325174808502197 ], [ -79.367637634277287, -7.324610233306885 ], [ -79.368942260742188, -7.324851036071777 ], [ -79.369300842285156, -7.32524585723877 ], [ -79.36932373046875, -7.325795173644963 ], [ -79.367546081542912, -7.328174114227295 ], [ -79.367172241210881, -7.330414772033691 ], [ -79.366363525390625, -7.331107139587402 ], [ -79.365264892578068, -7.331634044647217 ], [ -79.363174438476449, -7.332159996032715 ], [ -79.36041259765625, -7.33406400680542 ], [ -79.358276367187443, -7.334444046020508 ], [ -79.356346130371094, -7.335410118103027 ], [ -79.353523254394474, -7.336339950561523 ], [ -79.35260009765625, -7.336483955383301 ], [ -79.351112365722656, -7.336336135864258 ], [ -79.349319458007756, -7.336903095245361 ], [ -79.348365783691349, -7.336875915527344 ], [ -79.347015380859375, -7.33747482299799 ], [ -79.345916748046875, -7.338253021240178 ], [ -79.343345642089844, -7.340829849243164 ], [ -79.338478088378906, -7.3467698097229 ], [ -79.336555480956974, -7.349366188049316 ], [ -79.333213806152287, -7.354585170745793 ], [ -79.332588195800781, -7.355124950408879 ], [ -79.331489562988224, -7.355585098266602 ], [ -79.329994201660156, -7.35571813583374 ], [ -79.328414916992188, -7.355372905731201 ], [ -79.326797485351562, -7.355469226837158 ], [ -79.325180053710938, -7.354798793792668 ], [ -79.323249816894531, -7.354447841644287 ], [ -79.322616577148381, -7.354751110076847 ], [ -79.321617126464844, -7.356266975402832 ], [ -79.320259094238168, -7.356695175170842 ], [ -79.318695068359375, -7.358379840850773 ], [ -79.317169189453125, -7.358917236328125 ], [ -79.315277099609318, -7.359060764312744 ], [ -79.312713623046818, -7.358168125152588 ], [ -79.310249328613281, -7.356522083282471 ], [ -79.308769226074219, -7.356626987457219 ], [ -79.30682373046875, -7.356059074401799 ], [ -79.305335998535156, -7.354901790618896 ], [ -79.304580688476562, -7.354619026184082 ], [ -79.303161621093693, -7.353162765502873 ], [ -79.298545837402344, -7.352260112762394 ], [ -79.297447204589787, -7.35146522521967 ], [ -79.294982910156193, -7.348965167999268 ], [ -79.293251037597599, -7.34792518615717 ], [ -79.290557861328125, -7.347815990447998 ], [ -79.284194946289006, -7.349599838256836 ], [ -79.282203674316349, -7.349816799163762 ], [ -79.280921936035156, -7.351383209228516 ], [ -79.279953002929688, -7.353185176849365 ], [ -79.279937744140625, -7.353809833526554 ], [ -79.280471801757756, -7.35508394241333 ], [ -79.280517578125, -7.356438159942627 ], [ -79.279739379882812, -7.3590149879455 ], [ -79.278450012207031, -7.361230850219727 ], [ -79.277427673339787, -7.362646102905273 ], [ -79.275619506835881, -7.364458084106445 ], [ -79.274505615234375, -7.36630916595459 ], [ -79.273620605468693, -7.36732101440424 ], [ -79.269706726074162, -7.368692874908447 ], [ -79.268508911132812, -7.369298934936467 ], [ -79.264724731445256, -7.372582912445068 ], [ -79.263984680175724, -7.373501777648926 ], [ -79.263328552246094, -7.375428199768066 ], [ -79.262336730956974, -7.376710891723633 ], [ -79.26171875, -7.378952980041504 ], [ -79.259117126464787, -7.381062030792236 ], [ -79.256080627441406, -7.382509231567383 ], [ -79.253425598144531, -7.38351583480835 ], [ -79.252616882324162, -7.383595943450871 ], [ -79.250808715820256, -7.384489059448242 ], [ -79.248664855957031, -7.384726047515869 ], [ -79.246543884277344, -7.386161804199219 ], [ -79.245552062988224, -7.386603832244816 ], [ -79.243667602539006, -7.386650085449219 ], [ -79.242233276367131, -7.386275768280029 ], [ -79.241172790527287, -7.386493206024113 ], [ -79.235687255859375, -7.389667987823429 ], [ -79.23366546630848, -7.390427112579289 ], [ -79.232315063476506, -7.390591144561768 ], [ -79.229598999023438, -7.389824867248535 ], [ -79.226585388183537, -7.388059139251652 ], [ -79.2235107421875, -7.387546062469426 ], [ -79.218551635742188, -7.385093212127686 ], [ -79.215385437011719, -7.384879112243539 ], [ -79.213462829589844, -7.384411811828613 ], [ -79.211067199707031, -7.38285493850708 ], [ -79.207481384277344, -7.381300926208496 ], [ -79.203437805175781, -7.378369808197021 ], [ -79.200363159179631, -7.37698221206665 ], [ -79.197410583496037, -7.374032974243164 ], [ -79.196304321289062, -7.373528957366943 ], [ -79.195381164550781, -7.373609066009521 ], [ -79.192924499511662, -7.376467227935734 ], [ -79.190765380859375, -7.377579212188721 ], [ -79.189689636230412, -7.377697944641113 ], [ -79.188819885253849, -7.377335071563721 ], [ -79.186393737792969, -7.377204895019531 ], [ -79.187797546386719, -7.380546092987061 ], [ -79.187637329101562, -7.381360054016113 ], [ -79.186645507812443, -7.383155822753849 ], [ -79.186454772949162, -7.383907794952393 ], [ -79.186531066894474, -7.386189937591553 ], [ -79.187026977539006, -7.388682842254582 ], [ -79.186454772949162, -7.391042232513314 ], [ -79.18408203125, -7.394955158233643 ], [ -79.183631896972656, -7.397747039794865 ], [ -79.181686401367131, -7.400327205657959 ], [ -79.180534362792912, -7.404056072235051 ], [ -79.179740905761719, -7.405623912811279 ], [ -79.178527832031193, -7.406888961791992 ], [ -79.176513671874943, -7.407592773437443 ], [ -79.174949645996094, -7.409097194671631 ], [ -79.171371459960881, -7.409601211547852 ], [ -79.170303344726562, -7.409987926483154 ], [ -79.169502258300781, -7.410933971405029 ], [ -79.168022155761662, -7.414249897003174 ], [ -79.167572021484318, -7.414535045623722 ], [ -79.165977478027344, -7.414820194244385 ], [ -79.165557861328068, -7.415151119232121 ], [ -79.162925720214844, -7.418403148651123 ], [ -79.162528991699219, -7.419978141784668 ], [ -79.16119384765625, -7.421480178833008 ], [ -79.159454345703068, -7.425411224365178 ], [ -79.156455993652344, -7.429056167602539 ], [ -79.156303405761662, -7.431594848632812 ], [ -79.155731201171818, -7.433241844177246 ], [ -79.153930664062443, -7.435585021972656 ], [ -79.1531982421875, -7.435945034027043 ], [ -79.152122497558537, -7.436107158660889 ], [ -79.150177001953125, -7.435522079467773 ], [ -79.1492919921875, -7.434726238250732 ], [ -79.148040771484375, -7.432635784149113 ], [ -79.146797180175781, -7.431872844695988 ], [ -79.145515441894474, -7.432597160339355 ], [ -79.143501281738281, -7.432633876800537 ], [ -79.140899658203125, -7.433742046356201 ], [ -79.13995361328125, -7.434515953063965 ], [ -79.138381958007756, -7.436868190765381 ], [ -79.1375732421875, -7.437589168548584 ], [ -79.135002136230469, -7.43833398818964 ], [ -79.129150390625, -7.439418792724553 ], [ -79.122840881347599, -7.441677093505859 ], [ -79.121627807617188, -7.441554069519043 ], [ -79.119438171386719, -7.440834045410156 ], [ -79.116828918456974, -7.43947792053217 ], [ -79.115325927734375, -7.439500808715707 ], [ -79.113571166992131, -7.440123081207275 ], [ -79.112754821777344, -7.440056800842285 ], [ -79.111564636230412, -7.439527988433838 ], [ -79.111213684081918, -7.439619064331055 ], [ -79.108032226562443, -7.441733837127686 ], [ -79.065475463867188, -7.47268104553217 ], [ -79.067886352539006, -7.476737022399902 ], [ -79.06890869140625, -7.47966194152832 ], [ -79.068992614746094, -7.483404159545898 ], [ -79.07012939453125, -7.48587703704834 ], [ -79.070388793945256, -7.486893177032471 ], [ -79.070388793945256, -7.491603851318303 ], [ -79.071510314941349, -7.494770050048828 ], [ -79.071540832519418, -7.497727870941105 ], [ -79.071121215820312, -7.500791072845402 ], [ -79.071411132812443, -7.502385139465275 ], [ -79.072082519531193, -7.504012107849121 ], [ -79.071701049804631, -7.505027770996094 ], [ -79.07110595703125, -7.505807876586914 ], [ -79.069549560546875, -7.506861209869385 ], [ -79.069366455078125, -7.507710933685303 ], [ -79.068977355957031, -7.508318901062012 ], [ -79.067672729492188, -7.509089946746826 ], [ -79.067306518554688, -7.510201930999756 ], [ -79.06573486328125, -7.512047767639103 ], [ -79.065208435058594, -7.512985229492188 ], [ -79.064933776855412, -7.514392852783146 ], [ -79.065322875976506, -7.516500949859619 ], [ -79.065315246581974, -7.51855993270874 ], [ -79.065773010253906, -7.520016193389836 ], [ -79.0655517578125, -7.521237850189209 ], [ -79.064750671386662, -7.521965026855469 ], [ -79.063819885253906, -7.521965026855469 ], [ -79.063453674316406, -7.52215576171875 ], [ -79.062271118164006, -7.523532867431584 ], [ -79.061477661132812, -7.523900032043457 ], [ -79.060157775878849, -7.525718212127629 ], [ -79.057495117187443, -7.527527809143066 ], [ -79.056777954101562, -7.528446197509766 ], [ -79.056709289550781, -7.529710769653263 ], [ -79.058204650878906, -7.531936168670597 ], [ -79.059028625488224, -7.533625125884953 ], [ -79.060462951660099, -7.538508892059269 ], [ -79.060455322265568, -7.541460037231445 ], [ -79.060699462890625, -7.542939186096135 ], [ -79.059692382812443, -7.546555995941105 ], [ -79.058761596679574, -7.547504901885929 ], [ -79.054420471191406, -7.550278186798039 ], [ -79.052505493164062, -7.550702095031738 ], [ -79.051788330078068, -7.551071166992188 ], [ -79.044952392578125, -7.558173179626465 ], [ -79.043075561523438, -7.559010028839111 ], [ -79.041610717773438, -7.560325145721436 ], [ -79.038337707519474, -7.561832904815674 ], [ -79.038139343261662, -7.564227104187012 ], [ -79.038528442382756, -7.569221973419189 ], [ -79.038368225097656, -7.573691844940129 ], [ -79.038658142089844, -7.574129104614201 ], [ -79.0389404296875, -7.575444221496525 ], [ -79.039413452148438, -7.580511093139648 ], [ -79.039848327636662, -7.582321166992188 ], [ -79.041862487792912, -7.584577083587646 ], [ -79.042945861816406, -7.586523056030217 ], [ -79.043182373046818, -7.587578773498478 ], [ -79.043121337890511, -7.588462829589844 ], [ -79.042427062988224, -7.590122222900334 ], [ -79.040809631347599, -7.591914176940861 ], [ -79.040351867675724, -7.592894077301025 ], [ -79.040702819824162, -7.600027084350586 ], [ -79.039344787597656, -7.601059913635254 ], [ -79.037918090820312, -7.603192806243896 ], [ -79.036285400390625, -7.603415966033936 ], [ -79.034919738769418, -7.603061199188176 ], [ -79.034202575683594, -7.603157043457031 ], [ -79.033729553222656, -7.604270935058594 ], [ -79.033943176269474, -7.606659889221191 ], [ -79.033172607421818, -7.609319210052433 ], [ -79.033302307128906, -7.611618995666504 ], [ -79.032180786132812, -7.612514972686768 ], [ -79.032058715820199, -7.613499164581242 ], [ -79.031822204589844, -7.613862037658691 ], [ -79.030364990234375, -7.61477088928217 ], [ -79.029258728027287, -7.616169929504338 ], [ -79.028427124023381, -7.616537094116211 ], [ -79.028358459472656, -7.617866039276066 ], [ -79.028808593749943, -7.618528842926025 ], [ -79.029106140136719, -7.620006084442139 ], [ -79.02886962890625, -7.621055126190186 ], [ -79.02777099609375, -7.623004913330021 ], [ -79.026428222656193, -7.62431812286377 ], [ -79.024818420410156, -7.625288963317814 ], [ -79.022865295410156, -7.627500057220459 ], [ -79.021659851074162, -7.627881050109863 ], [ -79.020172119140625, -7.628886222839355 ], [ -79.018699645996037, -7.629246234893685 ], [ -79.012428283691406, -7.635258197784424 ], [ -79.009872436523438, -7.636707782745361 ], [ -79.008430480957031, -7.638545036315861 ], [ -79.006851196289006, -7.638802051544189 ], [ -79.006385803222599, -7.639076232910156 ], [ -79.004478454589787, -7.645665168762207 ], [ -79.003204345703125, -7.647716045379582 ], [ -79.002548217773438, -7.649854183196965 ], [ -79.002052307128906, -7.650541782379094 ], [ -78.998374938964787, -7.653601169586125 ], [ -78.997787475585881, -7.654825210571232 ], [ -78.997390747070312, -7.656405925750732 ], [ -78.99700927734375, -7.656941890716553 ], [ -78.992828369140568, -7.660807132720947 ], [ -78.990707397460938, -7.661232948303223 ], [ -78.988792419433594, -7.66025781631464 ], [ -78.986938476562443, -7.659833908081055 ], [ -78.979743957519531, -7.660919189453125 ], [ -78.970703124999943, -7.660460948944092 ], [ -78.963737487792969, -7.658811092376652 ], [ -78.963294982910099, -7.658129215240479 ], [ -78.962287902832031, -7.657452106475773 ], [ -78.959060668945312, -7.655722141265869 ], [ -78.958435058593636, -7.655720233917236 ], [ -78.957901000976562, -7.654523849487248 ], [ -78.957130432128906, -7.653575897216797 ], [ -78.955825805664006, -7.652918815612793 ], [ -78.953742980956974, -7.651196002960205 ], [ -78.952476501464844, -7.64867115020752 ], [ -78.951515197753906, -7.647932052612305 ], [ -78.951484680175781, -7.646587848663273 ], [ -78.95196533203125, -7.644758224487305 ], [ -78.95172119140625, -7.643724918365479 ], [ -78.949638366699162, -7.639916896820012 ], [ -78.946556091308594, -7.636534214019719 ], [ -78.945152282714787, -7.633387088775578 ], [ -78.943305969238281, -7.63072490692133 ], [ -78.943046569824162, -7.628867149353027 ], [ -78.942115783691349, -7.627080917358342 ], [ -78.942016601562443, -7.624652862548771 ], [ -78.942672729492131, -7.622480869293213 ], [ -78.942840576171875, -7.620991230010986 ], [ -78.940910339355469, -7.61566686630249 ], [ -78.94069671630848, -7.61419677734375 ], [ -78.941429138183537, -7.611464023590088 ], [ -78.941635131835881, -7.608493804931641 ], [ -78.942306518554631, -7.605319023132324 ], [ -78.942291259765568, -7.603289127349854 ], [ -78.943916320800724, -7.59987211227417 ], [ -78.944107055664006, -7.598678112029972 ], [ -78.943038940429688, -7.597859859466496 ], [ -78.941291809082031, -7.597838878631535 ], [ -78.940544128417969, -7.597557067871037 ], [ -78.938400268554631, -7.595897197723389 ], [ -78.937492370605469, -7.594903945922852 ], [ -78.935951232910156, -7.590856075286865 ], [ -78.935165405273324, -7.587704181671143 ], [ -78.935005187988281, -7.581767082214355 ], [ -78.934768676757756, -7.581138134002629 ], [ -78.931419372558537, -7.5765380859375 ], [ -78.930557250976506, -7.574335098266545 ], [ -78.9278564453125, -7.572084903717041 ], [ -78.926002502441349, -7.569438934326058 ], [ -78.924766540527287, -7.568892002105656 ], [ -78.921394348144531, -7.565781116485596 ], [ -78.918640136718693, -7.564081192016602 ], [ -78.916984558105469, -7.562489986419621 ], [ -78.915359497070312, -7.560502052307129 ], [ -78.913848876953125, -7.55778980255127 ], [ -78.913528442382812, -7.55523777008051 ], [ -78.913169860839844, -7.554511070251408 ], [ -78.913070678710938, -7.552210807800293 ], [ -78.912208557128906, -7.550096035003605 ], [ -78.910339355468693, -7.548543930053711 ], [ -78.907684326171818, -7.547196865081787 ], [ -78.903450012207031, -7.542503833770752 ], [ -78.901115417480412, -7.541415214538574 ], [ -78.898551940917969, -7.539217948913574 ], [ -78.896949768066406, -7.53823804855341 ], [ -78.888832092285156, -7.534257888793945 ], [ -78.887092590331974, -7.533724784851017 ], [ -78.886032104492131, -7.533789157867432 ], [ -78.885040283203125, -7.534237861633244 ], [ -78.883819580078125, -7.535513877868652 ], [ -78.88330078125, -7.535644054412785 ], [ -78.877227783203125, -7.532664775848389 ], [ -78.874389648437443, -7.531833171844426 ], [ -78.869529724121037, -7.531587123870793 ], [ -78.862693786621094, -7.532413959503117 ], [ -78.86138916015625, -7.532408237457275 ], [ -78.86102294921875, -7.532123088836613 ], [ -78.860755920410099, -7.531412124633732 ], [ -78.860404968261719, -7.527831077575627 ], [ -78.859962463378906, -7.527015209197998 ], [ -78.858306884765625, -7.525396823883057 ], [ -78.856697082519531, -7.524181842803955 ], [ -78.854637145996094, -7.523162841796818 ], [ -78.852981567382812, -7.52264404296875 ], [ -78.852127075195312, -7.521423816680908 ], [ -78.852020263671875, -7.520341873168888 ], [ -78.852363586425724, -7.519337177276611 ], [ -78.856117248535156, -7.515449047088509 ], [ -78.857521057128849, -7.513623237609863 ], [ -78.858001708984318, -7.512653827667236 ], [ -78.858604431152344, -7.510022163391056 ], [ -78.858947753906193, -7.509586811065674 ], [ -78.858718872070312, -7.508125782012883 ], [ -78.858963012695256, -7.507337093353271 ], [ -78.858024597167969, -7.505874156951904 ], [ -78.857894897460881, -7.503503799438477 ], [ -78.859451293945312, -7.499715805053711 ], [ -78.860191345214787, -7.498427867889404 ], [ -78.86309814453125, -7.495631217956543 ], [ -78.865501403808594, -7.493678092956486 ], [ -78.8695068359375, -7.491460800170842 ], [ -78.871681213378906, -7.490482807159367 ], [ -78.874008178710881, -7.489785194396973 ], [ -78.879371643066349, -7.489252090454045 ], [ -78.880813598632812, -7.488903045654297 ], [ -78.882270812988281, -7.488196849822998 ], [ -78.883819580078125, -7.486711025238037 ], [ -78.887268066406193, -7.485128879547119 ], [ -78.887580871582031, -7.484703063964844 ], [ -78.887519836425781, -7.483764171600285 ], [ -78.885993957519531, -7.481375217437687 ], [ -78.885482788085938, -7.478737831115666 ], [ -78.883865356445312, -7.477496147155762 ], [ -78.883049011230469, -7.475646018981877 ], [ -78.881240844726562, -7.473433017730656 ], [ -78.879859924316406, -7.472134113311768 ], [ -78.877563476562386, -7.47076416015625 ], [ -78.871612548828125, -7.468090057373047 ], [ -78.869041442871037, -7.46662521362299 ], [ -78.865142822265568, -7.463753223419133 ], [ -78.856101989746037, -7.456394195556584 ], [ -78.853759765625, -7.454798221588135 ], [ -78.847999572753793, -7.451485157012939 ], [ -78.847450256347656, -7.450586795806885 ], [ -78.847793579101506, -7.449977874755859 ], [ -78.847869873046818, -7.449173927307072 ], [ -78.847808837890511, -7.448100090026799 ], [ -78.847434997558594, -7.447073936462402 ], [ -78.846435546875, -7.446180820465031 ], [ -78.844497680664062, -7.445240020751896 ], [ -78.842926025390568, -7.443874835968018 ], [ -78.84185791015625, -7.442502975463867 ], [ -78.841575622558537, -7.441403865814209 ], [ -78.84173583984375, -7.438106060027962 ], [ -78.840522766113281, -7.436303138732853 ], [ -78.837120056152287, -7.435583114623967 ], [ -78.834754943847656, -7.434295177459717 ], [ -78.832794189453125, -7.433769226074219 ], [ -78.825912475585938, -7.428576946258545 ], [ -78.823715209960938, -7.427567005157471 ], [ -78.821098327636662, -7.425677776336613 ], [ -78.818565368652344, -7.425329208374023 ], [ -78.815383911132699, -7.425878047943115 ], [ -78.813262939453068, -7.425455093383732 ], [ -78.810684204101506, -7.423301219940129 ], [ -78.809753417968693, -7.42166709899891 ], [ -78.807807922363281, -7.420627117156926 ], [ -78.805007934570312, -7.420247077941895 ], [ -78.804084777832031, -7.419448852539062 ], [ -78.803497314453125, -7.418552875518742 ], [ -78.802635192871094, -7.416285991668701 ], [ -78.802299499511662, -7.41294002532959 ], [ -78.800979614257756, -7.409420967101994 ], [ -78.800498962402287, -7.406085968017578 ], [ -78.800453186035156, -7.403919219970703 ], [ -78.799797058105469, -7.402147769927979 ], [ -78.798629760742188, -7.401065826416016 ], [ -78.79583740234375, -7.399139881134033 ], [ -78.793167114257812, -7.396480083465576 ], [ -78.789619445800724, -7.394534111022949 ], [ -78.788261413574219, -7.394590854644719 ], [ -78.787353515625, -7.395105838775635 ], [ -78.786064147949219, -7.39632511138916 ], [ -78.784561157226506, -7.399586200714054 ], [ -78.780960083007812, -7.403769016265869 ], [ -78.778213500976562, -7.406140804290771 ], [ -78.774269104003849, -7.408456802368164 ], [ -78.772354125976506, -7.413320064544678 ], [ -78.771514892578011, -7.414546966552678 ], [ -78.770439147949162, -7.41556787490839 ], [ -78.769256591796875, -7.416225910186768 ], [ -78.767951965331974, -7.416518211364689 ], [ -78.763648986816406, -7.416164875030461 ], [ -78.7596435546875, -7.417753219604435 ], [ -78.756683349609375, -7.417959213256836 ], [ -78.752624511718693, -7.417209148406926 ], [ -78.748931884765625, -7.414972782134953 ], [ -78.747016906738281, -7.412714004516602 ], [ -78.744422912597599, -7.410560131072998 ], [ -78.743965148925781, -7.407909870147705 ], [ -78.743507385253906, -7.406776905059814 ], [ -78.741218566894531, -7.405134201049748 ], [ -78.740341186523438, -7.404085159301701 ], [ -78.738777160644474, -7.403837203979492 ], [ -78.735054016113224, -7.404446125030461 ], [ -78.732513427734375, -7.404141902923584 ], [ -78.731765747070312, -7.403354167938232 ], [ -78.729804992675724, -7.402496814727783 ], [ -78.727447509765568, -7.398743152618295 ], [ -78.725875854492188, -7.397247791290283 ], [ -78.724411010742188, -7.396582126617375 ], [ -78.723617553710881, -7.396706104278508 ], [ -78.722801208496094, -7.397616863250732 ], [ -78.721473693847656, -7.401141166687012 ], [ -78.71966552734375, -7.403483867645207 ], [ -78.718620300292969, -7.405216217040902 ], [ -78.7176513671875, -7.409267902374268 ], [ -78.716545104980469, -7.410604000091553 ], [ -78.715881347656193, -7.410637855529785 ], [ -78.714195251464787, -7.409495830535775 ], [ -78.713119506835881, -7.409334182739201 ], [ -78.710601806640625, -7.411529064178467 ], [ -78.706695556640625, -7.411624908447266 ], [ -78.705986022949162, -7.412262916564885 ], [ -78.705192565917969, -7.412314891815186 ], [ -78.704154968261662, -7.413180828094426 ], [ -78.700126647949219, -7.413512229919434 ], [ -78.699203491210881, -7.414468765258789 ], [ -78.69866943359375, -7.414553165435791 ], [ -78.697372436523438, -7.413608074188232 ], [ -78.692062377929631, -7.408245086669865 ], [ -78.690811157226506, -7.407443046569824 ], [ -78.687950134277287, -7.403863906860352 ], [ -78.6854248046875, -7.402622222900334 ], [ -78.6846923828125, -7.401483058929443 ], [ -78.68438720703125, -7.40016508102417 ], [ -78.681907653808594, -7.398325920104867 ], [ -78.68129730224598, -7.397274971008301 ], [ -78.681106567382699, -7.396481990814209 ], [ -78.682304382324219, -7.394261837005558 ], [ -78.682533264160099, -7.392274856567326 ], [ -78.682220458984318, -7.391996860504094 ], [ -78.680267333984375, -7.391823768615723 ], [ -78.679397583007812, -7.392011165618896 ], [ -78.678009033203125, -7.393006801605225 ], [ -78.675926208496037, -7.395198822021428 ], [ -78.67529296875, -7.396676063537598 ], [ -78.673675537109375, -7.403619766235295 ], [ -78.672554016113281, -7.40495777130127 ], [ -78.671516418457031, -7.405220031738281 ], [ -78.668083190917969, -7.404001235961857 ], [ -78.667015075683594, -7.403830051422062 ], [ -78.663917541503849, -7.404098987579346 ], [ -78.662834167480469, -7.404660224914494 ], [ -78.661926269531193, -7.406480789184513 ], [ -78.661697387695312, -7.407812118530217 ], [ -78.661865234375, -7.408702850341797 ], [ -78.662818908691406, -7.410971164703312 ], [ -78.662765502929631, -7.412314891815186 ], [ -78.660385131835881, -7.416065216064396 ], [ -78.655860900878906, -7.421570777893066 ], [ -78.655418395996037, -7.42283821105957 ], [ -78.655265808105469, -7.42538595199585 ], [ -78.654685974121037, -7.426301956176758 ], [ -78.653640747070199, -7.427141189575195 ], [ -78.652755737304631, -7.427483081817627 ], [ -78.647384643554688, -7.427961826324406 ], [ -78.645401000976562, -7.428338050842285 ], [ -78.641273498535156, -7.430185794830322 ], [ -78.639686584472599, -7.431642055511418 ], [ -78.637466430664062, -7.434696197509766 ], [ -78.636764526367188, -7.436137199401855 ], [ -78.635513305664006, -7.439839839935246 ], [ -78.634422302246094, -7.44169092178339 ], [ -78.632987976074219, -7.443299770355168 ], [ -78.631515502929574, -7.443961143493652 ], [ -78.630584716796875, -7.444728851318359 ], [ -78.629699707031193, -7.446063041687012 ], [ -78.629219055175724, -7.45033597946167 ], [ -78.628250122070256, -7.452845096588078 ], [ -78.628028869628906, -7.455383777618351 ], [ -78.628616333007812, -7.460319042205754 ], [ -78.629798889160043, -7.465688228607121 ], [ -78.629364013671875, -7.467652797698975 ], [ -78.627998352050781, -7.470272064208984 ], [ -78.627540588378906, -7.4740052223205 ], [ -78.627593994140568, -7.478157043456974 ], [ -78.628639221191349, -7.480512142181396 ], [ -78.629570007324219, -7.481489181518555 ], [ -78.630325317382812, -7.481808185577279 ], [ -78.630920410156193, -7.482344150543213 ], [ -78.632568359375, -7.485274791717529 ], [ -78.632492065429688, -7.486080169677678 ], [ -78.631370544433594, -7.488814830779972 ], [ -78.631477355957031, -7.490196228027344 ], [ -78.632698059082031, -7.49304723739624 ], [ -78.633720397949219, -7.494781017303467 ], [ -78.635391235351506, -7.496899127960205 ], [ -78.636695861816406, -7.497817039489746 ], [ -78.636741638183537, -7.498781204223633 ], [ -78.635581970214787, -7.50104904174799 ], [ -78.635604858398381, -7.501869201660156 ], [ -78.635986328124943, -7.502888202667236 ], [ -78.637313842773381, -7.505268096923828 ], [ -78.639961242675781, -7.507765769958496 ], [ -78.641914367675781, -7.512036800384465 ], [ -78.646286010742131, -7.517671108245793 ], [ -78.646995544433594, -7.519272804260197 ], [ -78.648490905761605, -7.524024963378849 ], [ -78.650749206542912, -7.527030944824219 ], [ -78.651054382324162, -7.527823925018254 ], [ -78.650230407714844, -7.529158115386849 ], [ -78.649002075195312, -7.530458927154484 ], [ -78.645912170410099, -7.532858848571721 ], [ -78.641593933105412, -7.537308216094914 ], [ -78.638069152831974, -7.539803028106689 ], [ -78.637237548828011, -7.540867805480957 ], [ -78.635185241699219, -7.54261589050293 ], [ -78.632820129394474, -7.543925762176514 ], [ -78.630851745605469, -7.544347763061523 ], [ -78.628547668456974, -7.545472145080566 ], [ -78.627220153808537, -7.545726776123047 ], [ -78.625473022460881, -7.545621871948185 ], [ -78.622962951660156, -7.547224044799805 ], [ -78.6209716796875, -7.546075820922852 ], [ -78.6195068359375, -7.545879840850773 ], [ -78.618370056152344, -7.54631519317627 ], [ -78.616020202636719, -7.547922134399357 ], [ -78.611167907714787, -7.547843933105469 ], [ -78.609603881835938, -7.548651218414307 ], [ -78.608268737792969, -7.548428058624268 ], [ -78.606918334960938, -7.548484802246094 ], [ -78.602867126464844, -7.549655914306641 ], [ -78.602401733398381, -7.549487113952637 ], [ -78.601371765136662, -7.548387050628605 ], [ -78.600433349609375, -7.547825813293457 ], [ -78.597343444824162, -7.548013210296574 ], [ -78.594940185546875, -7.547173976898193 ], [ -78.593749999999886, -7.547457218170109 ], [ -78.59279632568348, -7.547959804534912 ], [ -78.591079711913949, -7.550176143646183 ], [ -78.589492797851562, -7.550551891326904 ], [ -78.588310241699162, -7.549874782562256 ], [ -78.586761474609318, -7.549898147583008 ], [ -78.584739685058594, -7.549588203430176 ], [ -78.583961486816406, -7.549114227294865 ], [ -78.582435607910156, -7.547556877136174 ], [ -78.581108093261719, -7.54729700088501 ], [ -78.575485229492188, -7.549907207489014 ], [ -78.571701049804631, -7.55003023147583 ], [ -78.567672729492188, -7.551915168762093 ], [ -78.565773010253849, -7.551900863647461 ], [ -78.562141418457031, -7.552933216094914 ], [ -78.560676574707031, -7.552719116210881 ], [ -78.557113647460881, -7.550779819488469 ], [ -78.556457519531193, -7.550857067108154 ], [ -78.555160522460938, -7.551590919494629 ], [ -78.553428649902344, -7.550909996032658 ], [ -78.55181884765625, -7.551906108856201 ], [ -78.550186157226562, -7.551982879638615 ], [ -78.549064636230469, -7.551577091217041 ], [ -78.546524047851506, -7.550008773803654 ], [ -78.54534912109375, -7.549666881561222 ], [ -78.543479919433537, -7.549933910369873 ], [ -78.541587829589844, -7.550644874572697 ], [ -78.538932800292969, -7.54942083358759 ], [ -78.538017272949219, -7.549743175506592 ], [ -78.537101745605355, -7.550536155700684 ], [ -78.53643798828125, -7.550723075866586 ], [ -78.534324645996037, -7.550271034240666 ], [ -78.532691955566349, -7.550779819488469 ], [ -78.528839111328125, -7.550044059753361 ], [ -78.525047302246094, -7.550172805786133 ], [ -78.523880004882812, -7.55044507980341 ], [ -78.5228271484375, -7.551084995269719 ], [ -78.519981384277344, -7.554503917694092 ], [ -78.517341613769474, -7.556610107421875 ], [ -78.515762329101562, -7.557336807250977 ], [ -78.513092041015625, -7.55779314041132 ], [ -78.500724792480469, -7.554152965545597 ], [ -78.498474121093693, -7.554134845733643 ], [ -78.491683959960881, -7.554918766021729 ], [ -78.490173339843693, -7.55466985702509 ], [ -78.487892150878793, -7.553803920745793 ], [ -78.487037658691406, -7.553042888641357 ], [ -78.486679077148438, -7.551663875579834 ], [ -78.486160278320256, -7.550820827484131 ], [ -78.485565185546875, -7.550273895263672 ], [ -78.483833312988281, -7.54930305480957 ], [ -78.483139038085938, -7.54786491394043 ], [ -78.481147766113281, -7.546824932098275 ], [ -78.479560852050724, -7.54653787612915 ], [ -78.47857666015625, -7.545742988586426 ], [ -78.478248596191349, -7.54520320892334 ], [ -78.478126525878906, -7.544058799743652 ], [ -78.477516174316406, -7.542953014373779 ], [ -78.474502563476562, -7.540258884429932 ], [ -78.472755432128906, -7.538202762603703 ], [ -78.470245361328068, -7.536806106567383 ], [ -78.465995788574219, -7.535630226135254 ], [ -78.465034484863281, -7.534890174865723 ], [ -78.462844848632812, -7.532386779785156 ], [ -78.460670471191406, -7.530363082885685 ], [ -78.455741882324162, -7.523069858551025 ], [ -78.454750061035156, -7.520658969879094 ], [ -78.454673767089787, -7.519764900207463 ], [ -78.453117370605469, -7.517456054687443 ], [ -78.452781677246037, -7.514605045318604 ], [ -78.451866149902344, -7.513178825378418 ], [ -78.449905395507756, -7.511901855468693 ], [ -78.449386596679688, -7.511787891387939 ], [ -78.448394775390568, -7.510865211486816 ], [ -78.446380615234318, -7.50950908660883 ], [ -78.444068908691406, -7.507124900817814 ], [ -78.44146728515625, -7.505049228668213 ], [ -78.440689086914062, -7.503857135772705 ], [ -78.437904357910099, -7.502127170562744 ], [ -78.437088012695312, -7.501246929168701 ], [ -78.43621826171875, -7.499413013458252 ], [ -78.434471130371037, -7.496960163116398 ], [ -78.432945251464787, -7.496106147766056 ], [ -78.430862426757699, -7.49583196640009 ], [ -78.429206848144474, -7.494367122650146 ], [ -78.428062438964787, -7.492721080779972 ], [ -78.426864624023438, -7.492016792297306 ], [ -78.425697326660099, -7.491738796234074 ], [ -78.423965454101506, -7.490233898162842 ], [ -78.422630310058537, -7.489902019500732 ], [ -78.422286987304688, -7.489580154418945 ], [ -78.418891906738281, -7.489730834960938 ], [ -78.417961120605412, -7.489349842071533 ], [ -78.415855407714787, -7.487216949462834 ], [ -78.415611267089844, -7.485395908355713 ], [ -78.415153503417969, -7.484947204589844 ], [ -78.414237976074162, -7.485044956207275 ], [ -78.412330627441349, -7.485708236694336 ], [ -78.411727905273438, -7.485462188720703 ], [ -78.409523010253906, -7.485496044158879 ], [ -78.407440185546875, -7.484554767608586 ], [ -78.405044555664062, -7.484539031982365 ], [ -78.403541564941406, -7.484132766723519 ], [ -78.401618957519531, -7.48432016372675 ], [ -78.400390625, -7.48493480682373 ], [ -78.398933410644531, -7.486048221588078 ], [ -78.396369934082031, -7.487061977386418 ], [ -78.395355224609318, -7.48848915100092 ], [ -78.394706726074162, -7.490297794342041 ], [ -78.393524169921875, -7.491185188293457 ], [ -78.391937255859318, -7.491574764251709 ], [ -78.390800476074162, -7.492342948913517 ], [ -78.386642456054688, -7.491588115692082 ], [ -78.384780883789006, -7.491592884063721 ], [ -78.384353637695312, -7.491858959197941 ], [ -78.383415222167969, -7.49315881729126 ], [ -78.382164001464844, -7.493465900421143 ], [ -78.381393432617188, -7.493977069854736 ], [ -78.380058288574219, -7.495954990386906 ], [ -78.37939453125, -7.496501922607422 ], [ -78.378532409667969, -7.496843814849854 ], [ -78.374961853027287, -7.496725082397461 ], [ -78.373733520507756, -7.497673988342285 ], [ -78.372230529785156, -7.498110771179199 ], [ -78.370758056640568, -7.499223232269287 ], [ -78.367904663085881, -7.499867916107178 ], [ -78.367080688476562, -7.499884128570557 ], [ -78.365310668945256, -7.499382972717285 ], [ -78.362442016601562, -7.500362873077393 ], [ -78.359970092773381, -7.500092029571476 ], [ -78.355796813964787, -7.498181819915771 ], [ -78.353797912597599, -7.497927188873291 ], [ -78.35170745849598, -7.49696683883667 ], [ -78.350250244140568, -7.496826171875 ], [ -78.348785400390625, -7.496275901794434 ], [ -78.347778320312443, -7.495497226715088 ], [ -78.346908569335881, -7.495171070098877 ], [ -78.346336364746037, -7.494126796722355 ], [ -78.345970153808537, -7.493851184844971 ], [ -78.344490051269531, -7.493799209594727 ], [ -78.340705871581974, -7.49492883682251 ], [ -78.339286804199162, -7.494885921478215 ], [ -78.33856201171875, -7.494973182678166 ], [ -78.337348937988281, -7.494357109069767 ], [ -78.335075378417969, -7.494656085967961 ], [ -78.330490112304688, -7.497382164001408 ], [ -78.3270263671875, -7.49858283996582 ], [ -78.326492309570312, -7.499091148376465 ], [ -78.325599670410156, -7.500877857208195 ], [ -78.321128845214844, -7.503366947174072 ], [ -78.321708679199219, -7.504717826843262 ], [ -78.323127746582031, -7.506585121154728 ], [ -78.325569152831974, -7.508553981781006 ], [ -78.326614379882756, -7.508807182312012 ], [ -78.328865051269531, -7.508815765380859 ], [ -78.331733703613281, -7.509572982788029 ], [ -78.333633422851562, -7.509712219238224 ], [ -78.334602355956974, -7.509568214416447 ], [ -78.3397216796875, -7.507587909698486 ], [ -78.341499328613224, -7.507303237914982 ], [ -78.343826293945312, -7.50633716583252 ], [ -78.344642639160099, -7.506313800811711 ], [ -78.345596313476506, -7.506813049316406 ], [ -78.346092224121094, -7.507458209991398 ], [ -78.34712982177723, -7.510412216186523 ], [ -78.349075317382812, -7.511354923248291 ], [ -78.349655151367188, -7.511919975280762 ], [ -78.350288391113281, -7.514607906341496 ], [ -78.352081298828068, -7.517282962799072 ], [ -78.352775573730469, -7.520177841186467 ], [ -78.354568481445199, -7.522313117980957 ], [ -78.355117797851506, -7.52354621887207 ], [ -78.355384826660156, -7.525232791900578 ], [ -78.357818603515625, -7.528897762298584 ], [ -78.358390808105469, -7.530889987945557 ], [ -78.358619689941406, -7.533850193023682 ], [ -78.359527587890511, -7.536489963531437 ], [ -78.360595703125, -7.537474155426025 ], [ -78.361984252929631, -7.537788867950326 ], [ -78.362861633300724, -7.538937091827393 ], [ -78.363487243652344, -7.541561126708928 ], [ -78.363990783691349, -7.542712211608773 ], [ -78.364051818847656, -7.544058799743652 ], [ -78.362342834472656, -7.548118114471436 ], [ -78.359481811523438, -7.553024768829289 ], [ -78.358787536621094, -7.554871082305908 ], [ -78.358482360839844, -7.55836009979248 ], [ -78.359107971191406, -7.560603141784668 ], [ -78.359306335449162, -7.563029766082707 ], [ -78.357925415039062, -7.567854881286564 ], [ -78.357467651367188, -7.572988033294621 ], [ -78.358009338378906, -7.574049949645996 ], [ -78.359184265136719, -7.575366973876953 ], [ -78.359901428222599, -7.577033042907658 ], [ -78.360427856445312, -7.579494953155518 ], [ -78.360679626464844, -7.58235502243042 ], [ -78.361640930175781, -7.584976196289006 ], [ -78.365036010742131, -7.589085102081242 ], [ -78.367500305175781, -7.591378211975041 ], [ -78.372703552246094, -7.592041015624886 ], [ -78.376419067382812, -7.593142032623234 ], [ -78.378219604492074, -7.594970226287785 ], [ -78.379180908203125, -7.596995830535889 ], [ -78.379562377929688, -7.603277206420898 ], [ -78.377723693847599, -7.61021709442133 ], [ -78.377044677734318, -7.615729808807373 ], [ -78.377426147460881, -7.617173194885254 ], [ -78.378173828125, -7.618629932403508 ], [ -78.377845764160156, -7.620999813079834 ], [ -78.377967834472656, -7.622199058532715 ], [ -78.379844665527344, -7.624966144561768 ], [ -78.380592346191349, -7.626602172851562 ], [ -78.381553649902287, -7.62800407409668 ], [ -78.382202148437443, -7.630065917968693 ], [ -78.38226318359375, -7.631772994995117 ], [ -78.38140869140625, -7.633938789367676 ], [ -78.376518249511719, -7.638833999633789 ], [ -78.375717163085881, -7.6408371925354 ], [ -78.374572753906193, -7.64146900177002 ], [ -78.372406005859375, -7.644880771636963 ], [ -78.371894836425724, -7.645226955413818 ], [ -78.369720458984318, -7.645109176635685 ], [ -78.368553161621037, -7.64422416687006 ], [ -78.366127014160156, -7.6440172195434 ], [ -78.363922119140625, -7.643566131591797 ], [ -78.362274169921818, -7.643984794616642 ], [ -78.360557556152287, -7.64580583572382 ], [ -78.360252380371094, -7.647089004516545 ], [ -78.360671997070199, -7.653433799743539 ], [ -78.360527038574219, -7.655213832855225 ], [ -78.359779357910099, -7.657145023345947 ], [ -78.357467651367188, -7.660123825073242 ], [ -78.356857299804574, -7.662115097045898 ], [ -78.357032775878849, -7.66279220581049 ], [ -78.358192443847543, -7.664515018463135 ], [ -78.359230041503849, -7.66700887680048 ], [ -78.359703063964787, -7.668741226196232 ], [ -78.359939575195312, -7.670977115631104 ], [ -78.359550476074219, -7.67208194732666 ], [ -78.358909606933594, -7.673052787780705 ], [ -78.357749938964844, -7.674056053161621 ], [ -78.356857299804574, -7.674431800842228 ], [ -78.355812072753906, -7.67469406127924 ], [ -78.353752136230469, -7.674557209014893 ], [ -78.351966857910099, -7.675166130065861 ], [ -78.351402282714787, -7.675983905792236 ], [ -78.351211547851506, -7.677493095397949 ], [ -78.350898742675781, -7.677812099456673 ], [ -78.350692749023438, -7.678597927093506 ], [ -78.349609374999886, -7.680025100708008 ], [ -78.347465515136719, -7.681451797485352 ], [ -78.345169067382812, -7.684097766876221 ], [ -78.344551086425724, -7.685093879699707 ], [ -78.342056274414006, -7.687416076660156 ], [ -78.340507507324219, -7.688494205474797 ], [ -78.339462280273438, -7.688963890075684 ], [ -78.338043212890568, -7.689164161682129 ], [ -78.336921691894474, -7.689723014831543 ], [ -78.336021423339844, -7.690741062164307 ], [ -78.3345947265625, -7.693128108978271 ], [ -78.332656860351562, -7.695725917816105 ], [ -78.329353332519531, -7.698766231536808 ], [ -78.328483581542969, -7.699028015136662 ], [ -78.327423095703125, -7.699703216552678 ], [ -78.326431274414006, -7.699929237365723 ], [ -78.324386596679688, -7.699618816375732 ], [ -78.320800781249943, -7.698418140411377 ], [ -78.319007873535156, -7.69847917556757 ], [ -78.318153381347656, -7.69912576675415 ], [ -78.317634582519474, -7.699961185455209 ], [ -78.3173828125, -7.701011180877629 ], [ -78.317314147949219, -7.702980041503906 ], [ -78.316184997558594, -7.703883171081429 ], [ -78.3153076171875, -7.704051971435547 ], [ -78.312294006347599, -7.703135013580322 ], [ -78.309463500976562, -7.701965808868408 ], [ -78.307548522949162, -7.700074195861816 ], [ -78.306785583496037, -7.698490142822266 ], [ -78.305961608886719, -7.697422027587777 ], [ -78.305229187011662, -7.697086811065674 ], [ -78.303703308105412, -7.697196006774846 ], [ -78.302658081054631, -7.697701930999756 ], [ -78.301521301269474, -7.698729991912785 ], [ -78.299911499023381, -7.701424121856633 ], [ -78.29840087890625, -7.704489231109619 ], [ -78.297142028808537, -7.706242084503174 ], [ -78.296012878417855, -7.707261085510197 ], [ -78.294731140136719, -7.707451820373478 ], [ -78.293792724609318, -7.706936836242676 ], [ -78.292480468749943, -7.706658840179443 ], [ -78.290138244628906, -7.707055091857853 ], [ -78.288604736328125, -7.707878112792912 ], [ -78.286857604980355, -7.709852218627873 ], [ -78.285690307617131, -7.711567878723145 ], [ -78.284957885742188, -7.715376853942871 ], [ -78.284637451171818, -7.716163158416691 ], [ -78.283737182617188, -7.716650962829533 ], [ -78.281455993652344, -7.717191219329777 ], [ -78.279968261718693, -7.718033790588322 ], [ -78.277824401855469, -7.718708992004338 ], [ -78.276824951171818, -7.71973705291748 ], [ -78.276062011718693, -7.721548080444336 ], [ -78.276168823242131, -7.722533226013184 ], [ -78.277015686035099, -7.723483085632324 ], [ -78.2777099609375, -7.724037170410156 ], [ -78.278602600097656, -7.724213123321476 ], [ -78.280059814453068, -7.725103855133 ], [ -78.281265258789062, -7.726060867309513 ], [ -78.281547546386719, -7.72661018371582 ], [ -78.281898498535043, -7.728648185729924 ], [ -78.282058715820256, -7.73221492767334 ], [ -78.283447265625, -7.736203193664551 ], [ -78.283836364746094, -7.739514827728158 ], [ -78.283233642578011, -7.742464065551701 ], [ -78.282463073730412, -7.74417781829834 ], [ -78.282638549804631, -7.746821880340576 ], [ -78.28155517578125, -7.747752189636117 ], [ -78.279380798339844, -7.748355865478516 ], [ -78.277938842773438, -7.749080181121769 ], [ -78.276214599609375, -7.75052976608265 ], [ -78.274803161621094, -7.752383232116699 ], [ -78.273773193359318, -7.753111839294434 ], [ -78.271652221679688, -7.75425910949707 ], [ -78.268600463867188, -7.755301952362061 ], [ -78.266006469726562, -7.755593776702881 ], [ -78.263420104980469, -7.75452804565424 ], [ -78.262374877929688, -7.754337787628117 ], [ -78.259750366210881, -7.754447937011662 ], [ -78.258926391601562, -7.754753112792969 ], [ -78.258369445800781, -7.754703044891301 ], [ -78.256187438964844, -7.755242824554387 ], [ -78.253044128417969, -7.755096912383976 ], [ -78.247932434081974, -7.75680685043335 ], [ -78.243896484375, -7.756595134735107 ], [ -78.237533569335881, -7.75712776184082 ], [ -78.234451293945312, -7.758571147918701 ], [ -78.2315673828125, -7.758755207061654 ], [ -78.229789733886719, -7.759355068206787 ], [ -78.226577758789006, -7.761004924774113 ], [ -78.224105834960824, -7.763202190399113 ], [ -78.223541259765625, -7.763088226318359 ], [ -78.2227783203125, -7.762362957000732 ], [ -78.221588134765625, -7.760980129241943 ], [ -78.220718383789062, -7.75941610336298 ], [ -78.219383239746094, -7.758650779724121 ], [ -78.218307495117188, -7.758504867553597 ], [ -78.216156005859318, -7.758728027343693 ], [ -78.2137451171875, -7.760108947753906 ], [ -78.212860107421875, -7.760142803192082 ], [ -78.212554931640568, -7.759675979614258 ], [ -78.21258544921875, -7.758872032165527 ], [ -78.216651916503849, -7.754578113555908 ], [ -78.217453002929688, -7.752665996551514 ], [ -78.217697143554631, -7.750788211822453 ], [ -78.217514038085881, -7.749080181121769 ], [ -78.217033386230412, -7.747819900512638 ], [ -78.213661193847656, -7.744458198547306 ], [ -78.212837219238224, -7.743072986602783 ], [ -78.212661743163949, -7.741557121276855 ], [ -78.213386535644531, -7.738961219787598 ], [ -78.214073181152287, -7.737971782684326 ], [ -78.216232299804688, -7.7359299659729 ], [ -78.216705322265625, -7.735177993774414 ], [ -78.217254638671875, -7.732444763183594 ], [ -78.218765258788949, -7.731479167938232 ], [ -78.219741821289062, -7.729772090911808 ], [ -78.220275878906193, -7.728340148925781 ], [ -78.220390319824219, -7.726812839508057 ], [ -78.22015380859375, -7.725577831268311 ], [ -78.219711303710881, -7.72459602355957 ], [ -78.217964172363281, -7.723616123199463 ], [ -78.217109680175724, -7.723505973815861 ], [ -78.215660095214844, -7.724040031433105 ], [ -78.214012145996094, -7.725433826446533 ], [ -78.212463378906193, -7.726359844207764 ], [ -78.2105712890625, -7.728007793426457 ], [ -78.208824157714787, -7.728950977325439 ], [ -78.208206176757812, -7.729063034057617 ], [ -78.206787109375, -7.72882080078125 ], [ -78.205848693847656, -7.729116916656437 ], [ -78.203781127929631, -7.729143142700195 ], [ -78.201263427734375, -7.730299949645882 ], [ -78.199081420898438, -7.730027198791447 ], [ -78.197525024414062, -7.729415893554688 ], [ -78.195556640624943, -7.727542877197209 ], [ -78.193656921386662, -7.726698875427246 ], [ -78.192802429199162, -7.725765228271484 ], [ -78.191993713378906, -7.723955154418888 ], [ -78.191673278808537, -7.722548961639404 ], [ -78.191825866699219, -7.719503879547062 ], [ -78.190811157226506, -7.7182297706604 ], [ -78.187965393066406, -7.716887950897217 ], [ -78.18597412109375, -7.716333866119328 ], [ -78.181045532226562, -7.713325023651066 ], [ -78.179489135742188, -7.71265983581543 ], [ -78.177505493164062, -7.712756156921387 ], [ -78.175041198730469, -7.714210033416748 ], [ -78.174041748046875, -7.714190959930363 ], [ -78.172805786132812, -7.713631153106633 ], [ -78.169876098632812, -7.710834026336613 ], [ -78.169235229492131, -7.709802150726318 ], [ -78.167472839355469, -7.707880973815861 ], [ -78.166801452636719, -7.706430912017765 ], [ -78.165351867675724, -7.704419136047363 ], [ -78.162376403808537, -7.69838094711298 ], [ -78.160247802734375, -7.695949077606144 ], [ -78.157112121582031, -7.694624900817814 ], [ -78.151603698730412, -7.693294048309269 ], [ -78.147003173828125, -7.690301895141545 ], [ -78.142250061035099, -7.686181068420353 ], [ -78.140434265136662, -7.685616016387939 ], [ -78.139251708984375, -7.685581207275334 ], [ -78.138427734375, -7.684891223907471 ], [ -78.138160705566349, -7.684150218963566 ], [ -78.138236999511719, -7.68242692947382 ], [ -78.138786315917969, -7.681717872619629 ], [ -78.140571594238281, -7.680521965026855 ], [ -78.141120910644474, -7.679586887359619 ], [ -78.142219543457031, -7.676355838775635 ], [ -78.142532348632756, -7.674013137817383 ], [ -78.144165039062443, -7.668501853942757 ], [ -78.144149780273438, -7.666513919830322 ], [ -78.14385986328125, -7.665767192840576 ], [ -78.143013000488224, -7.664698123931885 ], [ -78.141403198242131, -7.663544178008976 ], [ -78.139076232910156, -7.662367820739689 ], [ -78.13629150390625, -7.66035604476923 ], [ -78.132804870605412, -7.660154819488525 ], [ -78.131889343261719, -7.659774780273438 ], [ -78.130401611328125, -7.658211231231633 ], [ -78.129165649414062, -7.655086994171086 ], [ -78.127563476562443, -7.653799057006836 ], [ -78.126167297363281, -7.653474807739201 ], [ -78.123092651367131, -7.653451919555664 ], [ -78.119949340820256, -7.653963088989201 ], [ -78.119033813476562, -7.653616905212346 ], [ -78.118194580078125, -7.653929233551025 ], [ -78.117103576660043, -7.654994964599609 ], [ -78.115806579589844, -7.655799865722656 ], [ -78.114860534667969, -7.657523155212346 ], [ -78.11358642578125, -7.65903902053833 ], [ -78.111099243164062, -7.660638809204045 ], [ -78.109344482421818, -7.662438869476262 ], [ -78.106903076171875, -7.664118766784668 ], [ -78.103668212890625, -7.667847156524601 ], [ -78.102760314941406, -7.668439865112305 ], [ -78.099525451660099, -7.671480178833008 ], [ -78.094314575195312, -7.67531776428217 ], [ -78.092994689941406, -7.676539897918701 ], [ -78.091850280761719, -7.679077148437443 ], [ -78.090499877929688, -7.684100151062012 ], [ -78.089645385742188, -7.686085224151498 ], [ -78.087814331054631, -7.688418865203801 ], [ -78.085014343261719, -7.690807819366455 ], [ -78.083282470703125, -7.693745136260986 ], [ -78.080909729003906, -7.696093082427979 ], [ -78.079185485839844, -7.69520187377924 ], [ -78.077613830566349, -7.694067001342773 ], [ -78.074256896972599, -7.693412780761662 ], [ -78.069961547851506, -7.690978050231877 ], [ -78.068283081054688, -7.69061803817749 ], [ -78.066749572753793, -7.689870834350586 ], [ -78.064323425292969, -7.689788818359318 ], [ -78.063629150390625, -7.689586162567082 ], [ -78.059677124023381, -7.686046123504582 ], [ -78.056083679199219, -7.683842182159424 ], [ -78.051681518554574, -7.68029594421381 ], [ -78.049491882324219, -7.679255008697453 ], [ -78.047843933105412, -7.679780960083008 ], [ -78.045288085937443, -7.679238796234074 ], [ -78.0435791015625, -7.67933177947998 ], [ -78.037445068359318, -7.680342197418213 ], [ -78.031585693359375, -7.681711196899357 ], [ -78.029106140136719, -7.682975769042969 ], [ -78.027542114257756, -7.683356761932316 ], [ -78.02593994140625, -7.683125019073429 ], [ -78.022132873535156, -7.681732177734375 ], [ -78.019180297851562, -7.681501865386963 ], [ -78.012603759765625, -7.680066108703556 ], [ -78.008216857910156, -7.67975378036499 ], [ -78.004074096679631, -7.679790019989014 ], [ -78.001518249511605, -7.679293155670166 ], [ -77.999778747558537, -7.679846763610783 ], [ -77.996566772460938, -7.679852008819523 ], [ -77.994186401367188, -7.678116798400879 ], [ -77.992973327636719, -7.67823410034174 ], [ -77.9913330078125, -7.677361011505127 ], [ -77.990020751953125, -7.676998138427678 ], [ -77.986946105957031, -7.674373149871826 ], [ -77.985603332519531, -7.673479080200195 ], [ -77.981529235839844, -7.671665191650334 ], [ -77.978614807128849, -7.671115875244141 ], [ -77.976493835449219, -7.669486045837402 ], [ -77.975433349609375, -7.66968202590931 ], [ -77.973968505859375, -7.670380115509033 ], [ -77.972137451171818, -7.67232608795166 ], [ -77.970596313476506, -7.672807216644287 ], [ -77.96722412109375, -7.675268173217773 ], [ -77.965263366699162, -7.675778865814152 ], [ -77.963607788085938, -7.675195217132568 ], [ -77.962791442871037, -7.674468040466309 ], [ -77.962112426757756, -7.673360824584961 ], [ -77.963020324707031, -7.672543048858529 ], [ -77.963409423828125, -7.67168998718256 ], [ -77.964195251464787, -7.670945167541504 ], [ -77.964088439941406, -7.669335842132568 ], [ -77.964813232421875, -7.668056964874211 ], [ -77.964706420898324, -7.666820049285889 ], [ -77.964347839355469, -7.665974140167236 ], [ -77.962646484375, -7.664586067199707 ], [ -77.96197509765625, -7.663641929626465 ], [ -77.961700439453125, -7.661609172821045 ], [ -77.961097717285156, -7.66074800491333 ], [ -77.961776733398438, -7.658700942993164 ], [ -77.961509704589844, -7.658117771148682 ], [ -77.960899353027344, -7.657553195953369 ], [ -77.958740234375, -7.656445026397705 ], [ -77.957267761230355, -7.656182765960693 ], [ -77.955680847167969, -7.656882762908936 ], [ -77.951454162597656, -7.659531116485596 ], [ -77.948402404785156, -7.660102844238224 ], [ -77.946205139160043, -7.659458160400334 ], [ -77.944618225097656, -7.658439159393311 ], [ -77.942611694335938, -7.658489227294865 ], [ -77.941032409667912, -7.657471179962101 ], [ -77.940422058105469, -7.657827854156494 ], [ -77.940101623535043, -7.658723831176701 ], [ -77.939727783203125, -7.658726215362549 ], [ -77.936088562011662, -7.656627178192139 ], [ -77.935432434082031, -7.655756950378418 ], [ -77.934852600097599, -7.654252052307129 ], [ -77.934173583984318, -7.653577804565373 ], [ -77.932968139648438, -7.653416156768799 ], [ -77.931854248046875, -7.653873920440674 ], [ -77.931564331054688, -7.653797149658203 ], [ -77.932075500488224, -7.652907848358154 ], [ -77.936454772949162, -7.650527954101562 ], [ -77.938163757324162, -7.648636817932129 ], [ -77.939453125, -7.647922992706242 ], [ -77.939529418945199, -7.647109985351562 ], [ -77.9390869140625, -7.643771171569767 ], [ -77.939331054687443, -7.643000125884953 ], [ -77.940017700195312, -7.642183780670166 ], [ -77.939666748046875, -7.640738964080754 ], [ -77.938522338867188, -7.63993501663208 ], [ -77.934761047363168, -7.639888763427678 ], [ -77.932151794433537, -7.638785839080811 ], [ -77.930778503417969, -7.637701034545898 ], [ -77.92822265625, -7.637456893920842 ], [ -77.926567077636719, -7.636880874633732 ], [ -77.925300598144474, -7.635869026184082 ], [ -77.9234619140625, -7.63370418548584 ], [ -77.9207763671875, -7.629384994506836 ], [ -77.918983459472656, -7.628160953521729 ], [ -77.916709899902287, -7.628030776977482 ], [ -77.915473937988224, -7.627126216888428 ], [ -77.9150390625, -7.626488208770752 ], [ -77.91485595703125, -7.624591827392578 ], [ -77.915321350097656, -7.623486042022705 ], [ -77.915107727050724, -7.621620178222656 ], [ -77.915382385253849, -7.620911121368408 ], [ -77.915008544921818, -7.619369983673096 ], [ -77.915290832519474, -7.618745803833008 ], [ -77.916267395019531, -7.617806911468449 ], [ -77.916259765624886, -7.615115165710449 ], [ -77.917457580566406, -7.613048076629639 ], [ -77.917068481445312, -7.611324787139893 ], [ -77.916633605956974, -7.610486030578613 ], [ -77.916770935058594, -7.609114170074463 ], [ -77.917221069335938, -7.60833215713501 ], [ -77.918716430664006, -7.607150077819767 ], [ -77.919166564941406, -7.606017112731877 ], [ -77.920867919921875, -7.604442119598389 ], [ -77.922042846679631, -7.602628231048527 ], [ -77.922348022460881, -7.601603984832764 ], [ -77.923332214355469, -7.600874900817814 ], [ -77.923149108886719, -7.600450992584229 ], [ -77.921890258789062, -7.5999817848205 ], [ -77.920669555664062, -7.599141120910645 ], [ -77.918647766113281, -7.599252223968506 ], [ -77.915557861328068, -7.598866939544678 ], [ -77.91302490234375, -7.597367763519287 ], [ -77.910720825195256, -7.597589015960637 ], [ -77.909111022949219, -7.596896171569824 ], [ -77.907241821289062, -7.596808910369873 ], [ -77.906196594238281, -7.596176147460938 ], [ -77.9053955078125, -7.595267772674504 ], [ -77.903511047363281, -7.595045089721566 ], [ -77.901962280273438, -7.593989849090576 ], [ -77.899246215820312, -7.593175888061523 ], [ -77.896720886230469, -7.591179847717228 ], [ -77.895759582519531, -7.59120512008667 ], [ -77.894981384277287, -7.590494155883789 ], [ -77.894187927246094, -7.590734958648625 ], [ -77.89361572265625, -7.590169906616154 ], [ -77.892425537109375, -7.590376853942814 ], [ -77.891273498535043, -7.589454174041634 ], [ -77.889007568359375, -7.58853816986084 ], [ -77.887260437011662, -7.588432788848877 ], [ -77.886054992675781, -7.589451789855957 ], [ -77.8853759765625, -7.589554786682072 ], [ -77.883659362792969, -7.588746070861816 ], [ -77.881507873535156, -7.588714122772217 ], [ -77.880142211914062, -7.588134765625 ], [ -77.878814697265625, -7.587900161743164 ], [ -77.878158569335938, -7.58742618560791 ], [ -77.877349853515511, -7.585725784301758 ], [ -77.876396179199105, -7.585233211517334 ], [ -77.875053405761662, -7.585099220275822 ], [ -77.873725891113168, -7.585766792297306 ], [ -77.872932434081974, -7.585844039916992 ], [ -77.870635986328125, -7.585661888122559 ], [ -77.869895935058537, -7.585321903228703 ], [ -77.869850158691406, -7.584581851959229 ], [ -77.868072509765568, -7.582921981811467 ], [ -77.867950439453125, -7.581179141998291 ], [ -77.867141723632756, -7.580108165740853 ], [ -77.86737060546875, -7.577695846557617 ], [ -77.868080139160099, -7.576253890991154 ], [ -77.868331909179688, -7.575187206268311 ], [ -77.86773681640625, -7.574015140533447 ], [ -77.867919921875, -7.570796966552734 ], [ -77.86647796630848, -7.568367958068848 ], [ -77.866737365722599, -7.564880847930908 ], [ -77.866386413574219, -7.564167022705021 ], [ -77.866287231445199, -7.561340808868351 ], [ -77.865692138671818, -7.560612201690674 ], [ -77.865020751953068, -7.558565139770508 ], [ -77.8636474609375, -7.557075023651123 ], [ -77.863563537597656, -7.555188179016113 ], [ -77.862449645996037, -7.553505897521916 ], [ -77.862205505371094, -7.552737236022949 ], [ -77.8623046875, -7.546856880187931 ], [ -77.861961364746037, -7.546127796173096 ], [ -77.862075805664006, -7.544248104095459 ], [ -77.861625671386719, -7.543121814727726 ], [ -77.861572265625, -7.542181015014592 ], [ -77.862091064453011, -7.538990020751896 ], [ -77.862098693847656, -7.537372112274113 ], [ -77.862716674804688, -7.535741806030273 ], [ -77.862731933593693, -7.53410816192627 ], [ -77.861312866210881, -7.532190799713078 ], [ -77.860847473144474, -7.530098915100098 ], [ -77.858680725097656, -7.528268814086857 ], [ -77.858329772949219, -7.527295112609806 ], [ -77.858421325683594, -7.525144100189209 ], [ -77.857803344726562, -7.523649215698242 ], [ -77.857162475585938, -7.523537158966064 ], [ -77.854972839355469, -7.521535873413086 ], [ -77.853462219238281, -7.520975112915039 ], [ -77.852233886718693, -7.51990890502924 ], [ -77.849754333496037, -7.519292831420842 ], [ -77.848594665527344, -7.518367767333984 ], [ -77.847053527832031, -7.517818927764893 ], [ -77.844276428222656, -7.514041900634766 ], [ -77.843193054199162, -7.513860225677433 ], [ -77.841606140136719, -7.512832164764404 ], [ -77.839859008789006, -7.512707233428841 ], [ -77.838706970214787, -7.512009143829289 ], [ -77.836837768554688, -7.511688232421875 ], [ -77.835853576660099, -7.510972023010197 ], [ -77.835098266601506, -7.510750770568848 ], [ -77.833595275878906, -7.5107421875 ], [ -77.830810546874886, -7.511166095733586 ], [ -77.830116271972599, -7.510727882385254 ], [ -77.829299926757812, -7.510724067687988 ], [ -77.827980041503906, -7.509377002716064 ], [ -77.826324462890568, -7.50878381729126 ], [ -77.823371887206918, -7.508974075317383 ], [ -77.821235656738281, -7.508681774139404 ], [ -77.817710876464787, -7.507003784179688 ], [ -77.814407348632699, -7.504648208618164 ], [ -77.811134338378849, -7.504290103912354 ], [ -77.806289672851506, -7.502460002899113 ], [ -77.803077697753906, -7.502771854400635 ], [ -77.798683166503906, -7.501476764678955 ], [ -77.795318603515568, -7.501293182373047 ], [ -77.793518066406193, -7.500716209411564 ], [ -77.792091369628793, -7.499703884124756 ], [ -77.788253784179631, -7.498050212860107 ], [ -77.78408050537098, -7.493828773498478 ], [ -77.780387878417969, -7.491105079650879 ], [ -77.778419494628849, -7.489074230194092 ], [ -77.775131225585938, -7.486711025238037 ], [ -77.773361206054688, -7.484445095062256 ], [ -77.768798828124943, -7.481818199157715 ], [ -77.766860961914062, -7.481234073638916 ], [ -77.764366149902344, -7.479388236999398 ], [ -77.763053894042969, -7.479053020477295 ], [ -77.754974365234318, -7.479194164276066 ], [ -77.752166748046875, -7.478831768035889 ], [ -77.750450134277344, -7.479194164276066 ], [ -77.748924255371094, -7.480034828186035 ], [ -77.748382568359318, -7.480120182037297 ], [ -77.747283935546875, -7.479613780975342 ], [ -77.746620178222656, -7.478603839874268 ], [ -77.745750427246094, -7.476097106933594 ], [ -77.744125366210938, -7.474291801452637 ], [ -77.743087768554688, -7.472391128539982 ], [ -77.741638183593693, -7.4689040184021 ], [ -77.741622924804631, -7.467693805694466 ], [ -77.742286682128849, -7.466071128845215 ], [ -77.744590759277287, -7.464231967926025 ], [ -77.745918273925724, -7.462371826171875 ], [ -77.747093200683594, -7.459356784820557 ], [ -77.747543334960881, -7.45710277557373 ], [ -77.748275756835938, -7.454930782318058 ], [ -77.751388549804688, -7.449119091033936 ], [ -77.753662109375, -7.443347930908146 ], [ -77.755409240722656, -7.440944194793644 ], [ -77.757217407226562, -7.439793109893799 ], [ -77.758964538574162, -7.439612865447941 ], [ -77.762329101562443, -7.440548896789551 ], [ -77.76568603515625, -7.440662860870361 ], [ -77.767494201660156, -7.440200805664006 ], [ -77.768287658691406, -7.439272880554199 ], [ -77.768241882324162, -7.438739776611328 ], [ -77.768753051757812, -7.438139915466309 ], [ -77.768653869628906, -7.436116218566838 ], [ -77.768882751464787, -7.435338973999023 ], [ -77.770233154296818, -7.433323860168457 ], [ -77.772117614746094, -7.431215763091927 ], [ -77.773284912109318, -7.4292311668396 ], [ -77.774246215820256, -7.426867961883545 ], [ -77.774360656738281, -7.425765037536564 ], [ -77.77410888671875, -7.424609184265137 ], [ -77.77276611328125, -7.422077178955021 ], [ -77.771697998046875, -7.420855045318604 ], [ -77.771392822265568, -7.420107841491699 ], [ -77.771316528320312, -7.419149875640869 ], [ -77.771636962890625, -7.418569087982121 ], [ -77.772758483886719, -7.417840003967285 ], [ -77.776023864746094, -7.4170241355896 ], [ -77.778083801269531, -7.41602611541748 ], [ -77.778961181640625, -7.414665222167969 ], [ -77.780326843261662, -7.411577224731445 ], [ -77.78125, -7.410415172576847 ], [ -77.782119750976562, -7.409749031066895 ], [ -77.786094665527344, -7.408530235290414 ], [ -77.788078308105412, -7.406920909881478 ], [ -77.789108276367131, -7.406588077545109 ], [ -77.791633605957031, -7.405045032501221 ], [ -77.799972534179631, -7.402888774871769 ], [ -77.801589965820312, -7.401928901672363 ], [ -77.802345275878906, -7.400977134704533 ], [ -77.803398132324219, -7.398067951202336 ], [ -77.805290222167969, -7.395427227020264 ], [ -77.80706787109375, -7.394548892974854 ], [ -77.811172485351562, -7.393187046051025 ], [ -77.814315795898438, -7.390998840331974 ], [ -77.815910339355412, -7.388999938964787 ], [ -77.818565368652344, -7.384627819061279 ], [ -77.8248291015625, -7.37815618515009 ], [ -77.825492858886719, -7.376100063323975 ], [ -77.825439453124943, -7.373545169830322 ], [ -77.824760437011719, -7.372075080871582 ], [ -77.824172973632812, -7.371338844299316 ], [ -77.822708129882812, -7.369938850402775 ], [ -77.821800231933594, -7.369356155395508 ], [ -77.821342468261662, -7.368076801300049 ], [ -77.823898315429688, -7.361728191375732 ], [ -77.825859069824219, -7.354613780975342 ], [ -77.826927185058594, -7.352437973022461 ], [ -77.828117370605412, -7.350650787353459 ], [ -77.829460144042912, -7.347425937652588 ], [ -77.829132080078125, -7.344708919525146 ], [ -77.829826354980412, -7.343122959136963 ], [ -77.832374572753906, -7.341824054718018 ], [ -77.834243774413949, -7.341143131256104 ], [ -77.835548400878849, -7.34150505065918 ], [ -77.837295532226449, -7.341322898864746 ], [ -77.838096618652344, -7.340812206268254 ], [ -77.838508605956974, -7.340148925781193 ], [ -77.838050842285099, -7.33830022811884 ], [ -77.836517333984318, -7.3345689773559 ], [ -77.836090087890625, -7.332602977752629 ], [ -77.836135864257756, -7.329115867614746 ], [ -77.836982727050724, -7.325748920440674 ], [ -77.836570739746094, -7.32518196105957 ], [ -77.835136413574219, -7.324440956115666 ], [ -77.834449768066406, -7.323623180389404 ], [ -77.83443450927723, -7.322539806365967 ], [ -77.835105895996094, -7.321188926696777 ], [ -77.835113525390625, -7.320584774017334 ], [ -77.832267761230469, -7.316137790679932 ], [ -77.831710815429688, -7.314208030700627 ], [ -77.831520080566406, -7.309791088104248 ], [ -77.831756591796818, -7.309309959411621 ], [ -77.831893920898438, -7.306626796722355 ], [ -77.832450866699219, -7.305113792419434 ], [ -77.833335876464844, -7.303448200225773 ], [ -77.836601257324162, -7.300426006317139 ], [ -77.837638854980469, -7.298882961273137 ], [ -77.838279724121094, -7.296677112579289 ], [ -77.838462829589844, -7.292778968810978 ], [ -77.838806152343693, -7.291069984435978 ], [ -77.840377807617188, -7.289388179779053 ], [ -77.843597412109375, -7.28672981262207 ], [ -77.846717834472599, -7.285393238067627 ], [ -77.849334716796875, -7.28494119644165 ], [ -77.852195739746094, -7.285834789276123 ], [ -77.853698730468636, -7.285781860351506 ], [ -77.855300903320256, -7.284397125244141 ], [ -77.856300354003906, -7.283109188079834 ], [ -77.856712341308594, -7.282102108001652 ], [ -77.856773376464844, -7.280900001525879 ], [ -77.85650634765625, -7.279177188873234 ], [ -77.854331970214787, -7.273091793060303 ], [ -77.85418701171875, -7.271766185760441 ], [ -77.854431152343693, -7.270715236663818 ], [ -77.854965209960938, -7.269780158996582 ], [ -77.856094360351562, -7.268815994262695 ], [ -77.857810974121094, -7.268027782440186 ], [ -77.858680725097656, -7.26702976226801 ], [ -77.859367370605469, -7.265724182128906 ], [ -77.859542846679688, -7.259137153625375 ], [ -77.859207153320256, -7.253771781921387 ], [ -77.857650756835938, -7.24748420715332 ], [ -77.856353759765568, -7.244112968444767 ], [ -77.854110717773438, -7.241787910461426 ], [ -77.849815368652344, -7.238508224487305 ], [ -77.849258422851562, -7.237273216247559 ], [ -77.849166870117188, -7.235657215118351 ], [ -77.849723815917969, -7.234597206115666 ], [ -77.850906372070256, -7.233288764953556 ], [ -77.853881835937443, -7.230948925018254 ], [ -77.854644775390568, -7.230752944946289 ], [ -77.857078552246094, -7.23092794418335 ], [ -77.859039306640511, -7.230373859405518 ], [ -77.8602294921875, -7.229526042938176 ], [ -77.862648010253849, -7.226943969726506 ], [ -77.863525390625, -7.226406097412109 ], [ -77.864906311035156, -7.226515769958496 ], [ -77.868171691894474, -7.227794170379582 ], [ -77.870185852050724, -7.227838039398137 ], [ -77.870826721191406, -7.227126121520939 ], [ -77.871261596679688, -7.225716114044133 ], [ -77.871704101562443, -7.225197792053223 ], [ -77.875442504882699, -7.223682880401611 ], [ -77.877975463867188, -7.222139835357609 ], [ -77.88055419921875, -7.220995903015137 ], [ -77.882133483886719, -7.219892024993896 ], [ -77.882415771484375, -7.219454765319824 ], [ -77.882583618164006, -7.218289852142334 ], [ -77.882476806640568, -7.21622991561884 ], [ -77.881156921386662, -7.211975097656193 ], [ -77.880912780761719, -7.210142135620004 ], [ -77.881332397460881, -7.204492092132512 ], [ -77.881790161132812, -7.202809810638428 ], [ -77.882614135742188, -7.201495170593262 ], [ -77.882949829101506, -7.199098110198975 ], [ -77.882194519042912, -7.197368144988957 ], [ -77.880638122558594, -7.195526123046875 ], [ -77.88055419921875, -7.194444179534912 ], [ -77.881080627441406, -7.19350004196167 ], [ -77.882286071777287, -7.192234992980957 ], [ -77.883811950683537, -7.191124916076603 ], [ -77.885414123535156, -7.190454959869385 ], [ -77.886787414550724, -7.18896484375 ], [ -77.887008666992188, -7.188068866729679 ], [ -77.886787414550724, -7.185512065887451 ], [ -77.887107849121094, -7.184634208679199 ], [ -77.887832641601506, -7.183770179748478 ], [ -77.888404846191349, -7.18346118927002 ], [ -77.89394378662098, -7.183282852172852 ], [ -77.895515441894531, -7.183054924011174 ], [ -77.897354125976506, -7.181894779205265 ], [ -77.898017883300724, -7.181042194366455 ], [ -77.898384094238281, -7.179604053497314 ], [ -77.898368835449219, -7.176784992218018 ], [ -77.897956848144531, -7.173590183258057 ], [ -77.897956848144531, -7.171304225921574 ], [ -77.897354125976506, -7.168966770172119 ], [ -77.897933959960881, -7.166768074035645 ], [ -77.89862060546875, -7.16611385345459 ], [ -77.899360656738224, -7.165764808654728 ], [ -77.903373718261662, -7.166092872619629 ], [ -77.906669616699219, -7.165348052978459 ], [ -77.908248901367074, -7.164635181427002 ], [ -77.909812927246094, -7.163142204284611 ], [ -77.9129638671875, -7.161631107330322 ], [ -77.91552734375, -7.159457206726074 ], [ -77.917678833007756, -7.158675193786621 ], [ -77.923759460449162, -7.155484199523926 ], [ -77.9248046875, -7.15462684631342 ], [ -77.925476074218693, -7.153476238250732 ], [ -77.925697326660099, -7.151995182037354 ], [ -77.925468444824219, -7.149717807769775 ], [ -77.925605773925668, -7.144079208374023 ], [ -77.925376892089844, -7.142618179321232 ], [ -77.925430297851562, -7.138181209564209 ], [ -77.927398681640568, -7.127200126647949 ], [ -77.927505493164006, -7.123703956603947 ], [ -77.927986145019474, -7.12010478973383 ], [ -77.928108215332031, -7.11433219909668 ], [ -77.929290771484318, -7.106366157531738 ], [ -77.930732727050724, -7.103726863861084 ], [ -77.932968139648438, -7.101978778839111 ], [ -77.935653686523438, -7.100424766540527 ], [ -77.937187194824219, -7.099087238311711 ], [ -77.938323974609375, -7.097754001617432 ], [ -77.93994140625, -7.093883991241455 ], [ -77.9400634765625, -7.088753223419189 ], [ -77.940544128417912, -7.086798191070557 ], [ -77.941848754882812, -7.084901809692326 ], [ -77.947555541992188, -7.079526901245117 ], [ -77.948516845703125, -7.078056812286377 ], [ -77.949157714843693, -7.076418876647949 ], [ -77.949188232421875, -7.074790954589844 ], [ -77.948318481445312, -7.071671009063721 ], [ -77.94734954833973, -7.069907188415527 ], [ -77.947189331054688, -7.068144798278752 ], [ -77.947494506835938, -7.067267894744873 ], [ -77.948257446289062, -7.066295146942139 ], [ -77.949951171875, -7.064740180969238 ], [ -77.950454711914062, -7.064582824707031 ], [ -77.952308654785043, -7.062492847442627 ], [ -77.956657409667969, -7.055338859558105 ], [ -77.957641601562443, -7.054049015045166 ], [ -77.959220886230469, -7.053317070007324 ], [ -77.96405029296875, -7.052791118621769 ], [ -77.964935302734375, -7.051998138427734 ], [ -77.965286254882812, -7.050982952117863 ], [ -77.965446472167912, -7.049374103546143 ], [ -77.964897155761605, -7.041164875030518 ], [ -77.965194702148438, -7.037830829620361 ], [ -77.966346740722656, -7.034083843231201 ], [ -77.969749450683537, -7.029914855956974 ], [ -77.970809936523324, -7.026701927185059 ], [ -77.971466064453068, -7.025540828704834 ], [ -77.972480773925781, -7.024440765380859 ], [ -77.973648071289006, -7.023693084716797 ], [ -77.974533081054688, -7.023697853088379 ], [ -77.976676940917969, -7.024575233459473 ], [ -77.977760314941349, -7.024516105651855 ], [ -77.978752136230469, -7.024112224578801 ], [ -77.979187011718693, -7.023439884185791 ], [ -77.979301452636719, -7.020611763000431 ], [ -77.979164123535156, -7.019004821777344 ], [ -77.978446960449219, -7.017394065856877 ], [ -77.978340148925724, -7.016173839569035 ], [ -77.979148864746094, -7.01530122756958 ], [ -77.980545043945312, -7.014443874359131 ], [ -77.982437133789006, -7.014369010925236 ], [ -77.985153198242188, -7.013583183288517 ], [ -77.986572265625, -7.012553215026799 ], [ -77.987472534179631, -7.011390209197998 ], [ -77.988082885742188, -7.00932788848877 ], [ -77.987808227539062, -7.007196903228703 ], [ -77.985748291015568, -7.004725933074894 ], [ -77.983367919921818, -7.002682209014779 ], [ -77.982955932617188, -7.001400947570801 ], [ -77.983169555664062, -7.000533103942814 ], [ -77.986854553222656, -6.999046802520695 ], [ -77.990242004394474, -6.997045040130558 ], [ -77.993858337402287, -6.992938041687012 ], [ -77.995285034179631, -6.991944789886475 ], [ -77.996940612792855, -6.991438865661621 ], [ -77.998390197753906, -6.990643024444523 ], [ -77.999290466308537, -6.989725112914982 ], [ -77.999877929687443, -6.988510131835938 ], [ -77.999885559081974, -6.985547065734863 ], [ -77.999366760253906, -6.984457969665527 ], [ -77.998046875, -6.983644008636475 ], [ -77.996681213378906, -6.983735084533691 ], [ -77.994758605957031, -6.98232889175415 ], [ -77.994293212890625, -6.981221199035588 ], [ -77.994094848632812, -6.978557109832764 ], [ -77.993507385253793, -6.977729797363281 ], [ -77.992088317871094, -6.977468013763428 ], [ -77.989631652832031, -6.977700233459416 ], [ -77.988861083984375, -6.97736120223999 ], [ -77.988677978515625, -6.976766109466439 ], [ -77.988777160644531, -6.976105213165283 ], [ -77.989151000976562, -6.975487232208195 ], [ -77.991241455078125, -6.97280216217041 ], [ -77.992385864257812, -6.970815181732178 ], [ -77.993583679199162, -6.969552040100098 ], [ -77.994102478027344, -6.969351768493596 ], [ -77.995666503906193, -6.969330787658691 ], [ -77.998527526855412, -6.970244884490967 ], [ -77.999275207519531, -6.969615936279297 ], [ -77.999282836914062, -6.968695163726807 ], [ -77.992851257324219, -6.964344024658203 ], [ -77.98846435546875, -6.964363098144531 ], [ -77.985198974609318, -6.963435173034611 ], [ -77.98382568359375, -6.963373184204102 ], [ -77.981918334960938, -6.963997840881348 ], [ -77.979965209960824, -6.965013980865479 ], [ -77.975044250488281, -6.969272136688176 ], [ -77.973320007324219, -6.969427108764592 ], [ -77.971443176269474, -6.970748901367188 ], [ -77.968963623046818, -6.971687793731576 ], [ -77.966850280761719, -6.973145961761475 ], [ -77.964683532714787, -6.973636150360051 ], [ -77.962783813476506, -6.975223064422607 ], [ -77.961372375488281, -6.97585391998291 ], [ -77.958984374999886, -6.975868225097599 ], [ -77.957298278808594, -6.975419044494515 ], [ -77.95556640625, -6.975347995758 ], [ -77.953338623046818, -6.974114894866943 ], [ -77.950584411621037, -6.974114894866943 ], [ -77.946647644042912, -6.973244190216064 ], [ -77.944732666015625, -6.973418235778809 ], [ -77.943077087402344, -6.974196910858154 ], [ -77.940620422363281, -6.976273059844971 ], [ -77.939628601074219, -6.976839065551701 ], [ -77.938804626464844, -6.977712154388371 ], [ -77.938301086425781, -6.97878980636591 ], [ -77.937423706054631, -6.979598999023438 ], [ -77.936393737792969, -6.980203151702881 ], [ -77.9346923828125, -6.980653762817326 ], [ -77.934188842773324, -6.980992794036865 ], [ -77.933235168456918, -6.982371807098389 ], [ -77.932258605956974, -6.98494291305542 ], [ -77.930747985839787, -6.986751079559326 ], [ -77.930038452148438, -6.986674785614014 ], [ -77.927818298339844, -6.987491130828801 ], [ -77.926246643066349, -6.987483978271428 ], [ -77.914543151855355, -6.980996131896973 ], [ -77.911651611328068, -6.980102062225342 ], [ -77.905380249023381, -6.978985786437988 ], [ -77.903053283691406, -6.97813081741333 ], [ -77.897422790527344, -6.97523021697998 ], [ -77.895233154296875, -6.973552227020207 ], [ -77.893630981445256, -6.971910953521672 ], [ -77.888633728027344, -6.967578887939453 ], [ -77.886764526367131, -6.966242790222168 ], [ -77.88433837890625, -6.965147018432617 ], [ -77.881477355957031, -6.96419620513916 ], [ -77.877952575683594, -6.963596820831299 ], [ -77.874481201171818, -6.963579177856445 ], [ -77.870613098144531, -6.96469783782959 ], [ -77.868972778320312, -6.964678764343205 ], [ -77.86737060546875, -6.963180065155029 ], [ -77.863571166992188, -6.957520961761475 ], [ -77.86175537109375, -6.955824851989746 ], [ -77.859840393066406, -6.954751968383789 ], [ -77.854316711425781, -6.952788829803467 ], [ -77.851295471191349, -6.952581882476807 ], [ -77.848564147949219, -6.953266143798771 ], [ -77.846824645996037, -6.955136775970459 ], [ -77.846183776855469, -6.957824230194035 ], [ -77.845809936523438, -6.958440780639592 ], [ -77.844612121581974, -6.959296226501465 ], [ -77.842491149902344, -6.959879875183105 ], [ -77.840263366699219, -6.962314128875676 ], [ -77.838554382324219, -6.96320009231556 ], [ -77.83721923828125, -6.9631090164184 ], [ -77.836555480957031, -6.962797164916992 ], [ -77.8341064453125, -6.95912504196167 ], [ -77.831741333007756, -6.957242965698242 ], [ -77.830299377441349, -6.95692586898798 ], [ -77.827377319335824, -6.957141876220703 ], [ -77.824325561523324, -6.95612096786499 ], [ -77.823143005371094, -6.956085205078125 ], [ -77.821632385253849, -6.956445217132512 ], [ -77.819602966308594, -6.957324981689453 ], [ -77.815216064453125, -6.961216926574707 ], [ -77.813194274902344, -6.962648868560734 ], [ -77.811988830566349, -6.963060855865479 ], [ -77.808967590331974, -6.963342189788818 ], [ -77.805343627929631, -6.966833114623967 ], [ -77.802253723144531, -6.967654228210449 ], [ -77.800819396972656, -6.968467235565186 ], [ -77.800178527831974, -6.968453884124699 ], [ -77.79888916015625, -6.967964172363281 ], [ -77.797920227050781, -6.966977119445801 ], [ -77.795219421386662, -6.962392807006836 ], [ -77.792350769042912, -6.958804130554199 ], [ -77.790611267089844, -6.955464839935246 ], [ -77.786453247070256, -6.952425003051701 ], [ -77.784172058105412, -6.950025081634521 ], [ -77.781990051269531, -6.946506023406982 ], [ -77.780265808105355, -6.941952228546143 ], [ -77.77797698974598, -6.938831806182861 ], [ -77.776939392089844, -6.938241004943848 ], [ -77.774787902832031, -6.93572282791132 ], [ -77.772598266601562, -6.934806823730469 ], [ -77.771240234375, -6.933548927307072 ], [ -77.7708740234375, -6.932429790496826 ], [ -77.770904541015568, -6.927821159362793 ], [ -77.769996643066406, -6.926797866821232 ], [ -77.76849365234375, -6.926407814025879 ], [ -77.765052795410156, -6.929265975952092 ], [ -77.763458251953068, -6.931714057922306 ], [ -77.761726379394531, -6.933216094970646 ], [ -77.760658264160156, -6.936998844146672 ], [ -77.758369445800781, -6.940083026885986 ], [ -77.757026672363281, -6.94271278381342 ], [ -77.756629943847656, -6.944583892822209 ], [ -77.756744384765625, -6.949372768402043 ], [ -77.755508422851562, -6.951521873474064 ], [ -77.751922607421818, -6.95581579208374 ], [ -77.750694274902287, -6.958388805389347 ], [ -77.750190734863224, -6.960993766784668 ], [ -77.750267028808594, -6.965449810028019 ], [ -77.751533508300724, -6.966769218444767 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-LAM", "NAME_0": "Peru", "ID_1": 14, "NAME_1": "Lambayeque", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.706253051757812, -6.940693855285588 ], [ -80.706253051757812, -6.94097185134882 ], [ -80.705696105957031, -6.94097185134882 ], [ -80.705696105957031, -6.941249847412053 ], [ -80.705413818359375, -6.941249847412053 ], [ -80.705413818359375, -6.941527843475228 ], [ -80.70513916015625, -6.941527843475228 ], [ -80.70513916015625, -6.942083835601807 ], [ -80.704864501953068, -6.942083835601807 ], [ -80.704864501953068, -6.942359924316406 ], [ -80.704307556152287, -6.942359924316406 ], [ -80.704307556152287, -6.942915916442814 ], [ -80.704025268554631, -6.942915916442814 ], [ -80.704025268554631, -6.943193912506047 ], [ -80.704307556152287, -6.943193912506047 ], [ -80.704307556152287, -6.943749904632512 ], [ -80.704582214355412, -6.943749904632512 ], [ -80.704582214355412, -6.944027900695744 ], [ -80.705696105957031, -6.944027900695744 ], [ -80.705696105957031, -6.943749904632512 ], [ -80.705970764160156, -6.943749904632512 ], [ -80.705970764160156, -6.943471908569279 ], [ -80.706253051757812, -6.943471908569279 ], [ -80.706253051757812, -6.943193912506047 ], [ -80.706527709960938, -6.943193912506047 ], [ -80.706527709960938, -6.942637920379582 ], [ -80.706802368163949, -6.942637920379582 ], [ -80.706802368163949, -6.942361831665039 ], [ -80.707084655761662, -6.942359924316406 ], [ -80.707084655761662, -6.941805839538574 ], [ -80.707359313964787, -6.941805839538574 ], [ -80.707359313964787, -6.941249847412053 ], [ -80.707084655761662, -6.941249847412053 ], [ -80.707084655761662, -6.940693855285588 ], [ -80.706253051757812, -6.940693855285588 ] ] ], [ [ [ -80.709861755371094, -6.934027194976807 ], [ -80.709861755371094, -6.934305191039982 ], [ -80.709304809570312, -6.934305191039982 ], [ -80.709304809570312, -6.934583187103215 ], [ -80.708747863769531, -6.934583187103215 ], [ -80.708747863769531, -6.935418128967285 ], [ -80.708473205566406, -6.935418128967285 ], [ -80.708473205566406, -6.935970783233643 ], [ -80.70819091796875, -6.935970783233643 ], [ -80.70819091796875, -6.936806201934814 ], [ -80.707916259765568, -6.936806201934814 ], [ -80.707916259765568, -6.937362194061279 ], [ -80.707359313964787, -6.937362194061279 ], [ -80.707359313964787, -6.939583778381348 ], [ -80.707641601562443, -6.939583778381348 ], [ -80.707641601562443, -6.93986177444458 ], [ -80.707916259765568, -6.93986177444458 ], [ -80.707916259765568, -6.940137863159123 ], [ -80.709030151367188, -6.940137863159123 ], [ -80.709030151367188, -6.93986177444458 ], [ -80.709304809570312, -6.93986177444458 ], [ -80.709304809570312, -6.939583778381348 ], [ -80.709587097167969, -6.939583778381348 ], [ -80.709587097167969, -6.939027786254883 ], [ -80.709861755371094, -6.939027786254883 ], [ -80.709861755371094, -6.938471794128418 ], [ -80.710136413574162, -6.938471794128418 ], [ -80.710136413574162, -6.938193798065186 ], [ -80.710693359374943, -6.938193798065186 ], [ -80.710693359374943, -6.936528205871582 ], [ -80.710975646972599, -6.936528205871582 ], [ -80.710975646972599, -6.935418128967285 ], [ -80.711250305175724, -6.935418128967285 ], [ -80.711250305175724, -6.934027194976807 ], [ -80.709861755371094, -6.934027194976807 ] ] ], [ [ [ -80.736251831054631, -6.925971031188851 ], [ -80.736251831054631, -6.926249027252197 ], [ -80.735694885253849, -6.926249027252197 ], [ -80.735694885253849, -6.92652702331543 ], [ -80.735420227050781, -6.92652702331543 ], [ -80.735420227050781, -6.927083015441895 ], [ -80.735137939453125, -6.927083015441895 ], [ -80.735137939453125, -6.927639007568359 ], [ -80.734580993652344, -6.927639007568359 ], [ -80.734580993652344, -6.927917003631592 ], [ -80.733749389648438, -6.927917003631592 ], [ -80.733749389648438, -6.929305076599064 ], [ -80.734024047851562, -6.929305076599064 ], [ -80.734024047851562, -6.929861068725586 ], [ -80.734306335449219, -6.929861068725586 ], [ -80.734306335449219, -6.930139064788818 ], [ -80.734580993652344, -6.930139064788818 ], [ -80.734580993652344, -6.930417060852051 ], [ -80.73486328125, -6.930417060852051 ], [ -80.73486328125, -6.930695056915283 ], [ -80.735694885253849, -6.930695056915283 ], [ -80.735694885253849, -6.930417060852051 ], [ -80.735969543456974, -6.930417060852051 ], [ -80.735969543456974, -6.930139064788818 ], [ -80.736251831054631, -6.930139064788818 ], [ -80.736251831054631, -6.929861068725586 ], [ -80.736526489257756, -6.929861068725586 ], [ -80.736526489257756, -6.929305076599064 ], [ -80.736808776855412, -6.929305076599064 ], [ -80.736808776855412, -6.928194999694824 ], [ -80.737083435058594, -6.928194999694824 ], [ -80.737083435058594, -6.927361011505127 ], [ -80.737358093261719, -6.927361011505127 ], [ -80.737358093261719, -6.926249027252197 ], [ -80.736808776855412, -6.926249027252197 ], [ -80.736808776855412, -6.925971031188851 ], [ -80.736251831054631, -6.925971031188851 ] ] ], [ [ [ -80.738197326660156, -6.922638893127441 ], [ -80.738197326660156, -6.922916889190674 ], [ -80.7379150390625, -6.922916889190674 ], [ -80.7379150390625, -6.923472881317082 ], [ -80.737640380859375, -6.923472881317082 ], [ -80.737640380859375, -6.924028873443547 ], [ -80.737358093261719, -6.924028873443547 ], [ -80.737358093261719, -6.924304962158203 ], [ -80.737640380859375, -6.924304962158203 ], [ -80.737640380859375, -6.9251389503479 ], [ -80.7379150390625, -6.9251389503479 ], [ -80.7379150390625, -6.925416946411133 ], [ -80.738197326660156, -6.925416946411133 ], [ -80.738197326660156, -6.925972938537598 ], [ -80.738471984863281, -6.925972938537598 ], [ -80.738471984863281, -6.92625093460083 ], [ -80.738746643066349, -6.926249027252197 ], [ -80.738746643066349, -6.92652702331543 ], [ -80.740135192871094, -6.92652702331543 ], [ -80.740135192871094, -6.926249027252197 ], [ -80.740692138671875, -6.92625093460083 ], [ -80.740692138671875, -6.925972938537598 ], [ -80.740974426269531, -6.925972938537598 ], [ -80.740974426269531, -6.925694942474365 ], [ -80.741249084472656, -6.925694942474365 ], [ -80.741249084472656, -6.925416946411133 ], [ -80.741531372070312, -6.925416946411133 ], [ -80.741531372070312, -6.924860954284668 ], [ -80.741806030273324, -6.924860954284668 ], [ -80.741806030273324, -6.924304962158203 ], [ -80.741531372070312, -6.924304962158203 ], [ -80.741531372070312, -6.924028873443547 ], [ -80.741249084472656, -6.924028873443547 ], [ -80.741249084472656, -6.922916889190674 ], [ -80.739585876464787, -6.922916889190674 ], [ -80.739585876464787, -6.922638893127441 ], [ -80.738197326660156, -6.922638893127441 ] ] ], [ [ [ -80.719863891601506, -6.91541576385498 ], [ -80.719863891601506, -6.917084217071533 ], [ -80.719581604003793, -6.917084217071533 ], [ -80.719581604003793, -6.917362213134766 ], [ -80.719306945800781, -6.917362213134766 ], [ -80.719306945800781, -6.918471813201904 ], [ -80.719024658203125, -6.918471813201904 ], [ -80.719024658203125, -6.918749809265137 ], [ -80.71875, -6.918749809265137 ], [ -80.71875, -6.919027805328369 ], [ -80.718475341796875, -6.919027805328369 ], [ -80.718475341796875, -6.919305801391602 ], [ -80.718193054199219, -6.919305801391602 ], [ -80.718193054199219, -6.919859886169377 ], [ -80.718475341796875, -6.919859886169377 ], [ -80.718475341796875, -6.922916889190674 ], [ -80.718193054199219, -6.922916889190674 ], [ -80.718193054199219, -6.923472881317082 ], [ -80.717918395996094, -6.923472881317082 ], [ -80.717918395996094, -6.924028873443547 ], [ -80.717636108398438, -6.924028873443547 ], [ -80.717636108398438, -6.924582958221436 ], [ -80.717918395996094, -6.924582958221436 ], [ -80.717918395996094, -6.925416946411133 ], [ -80.717636108398438, -6.925416946411133 ], [ -80.717636108398438, -6.925694942474365 ], [ -80.716804504394474, -6.925694942474365 ], [ -80.716804504394474, -6.925972938537598 ], [ -80.716529846191293, -6.925971031188851 ], [ -80.716529846191293, -6.92652702331543 ], [ -80.716247558593636, -6.92652702331543 ], [ -80.716247558593636, -6.926805019378662 ], [ -80.715972900390625, -6.926805019378662 ], [ -80.715972900390625, -6.927639007568359 ], [ -80.7156982421875, -6.927639007568359 ], [ -80.715690612792969, -6.929861068725586 ], [ -80.715415954589844, -6.929861068725586 ], [ -80.715415954589844, -6.930139064788818 ], [ -80.714859008789062, -6.930139064788818 ], [ -80.714859008789062, -6.930417060852051 ], [ -80.714584350585938, -6.930417060852051 ], [ -80.714584350585938, -6.930695056915283 ], [ -80.714027404785099, -6.930695056915283 ], [ -80.714027404785099, -6.930971145629826 ], [ -80.713752746581974, -6.930971145629826 ], [ -80.713752746581974, -6.931249141693058 ], [ -80.713195800781136, -6.931249141693058 ], [ -80.713195800781136, -6.931527137756291 ], [ -80.712913513183594, -6.931527137756291 ], [ -80.712913513183594, -6.932083129882756 ], [ -80.712638854980469, -6.93208122253418 ], [ -80.712638854980469, -6.932639122009221 ], [ -80.712364196777344, -6.932639122009221 ], [ -80.712364196777344, -6.933195114135629 ], [ -80.712081909179688, -6.933195114135629 ], [ -80.712081909179688, -6.934027194976807 ], [ -80.711807250976562, -6.934027194976807 ], [ -80.711807250976562, -6.934583187103215 ], [ -80.712638854980469, -6.934583187103215 ], [ -80.712638854980469, -6.93486213684082 ], [ -80.713195800781136, -6.93486213684082 ], [ -80.713195800781136, -6.935140132904053 ], [ -80.714584350585938, -6.935140132904053 ], [ -80.714584350585938, -6.934583187103215 ], [ -80.715141296386719, -6.934583187103215 ], [ -80.715141296386719, -6.934305191039982 ], [ -80.715972900390625, -6.934305191039982 ], [ -80.715972900390625, -6.935140132904053 ], [ -80.7156982421875, -6.935140132904053 ], [ -80.7156982421875, -6.935970783233643 ], [ -80.715972900390625, -6.935970783233643 ], [ -80.715972900390625, -6.936528205871582 ], [ -80.716247558593636, -6.936528205871582 ], [ -80.716247558593636, -6.936806201934814 ], [ -80.716804504394474, -6.936806201934814 ], [ -80.716804504394474, -6.936528205871582 ], [ -80.717918395996094, -6.936528205871582 ], [ -80.717918395996094, -6.936806201934814 ], [ -80.718475341796875, -6.936806201934814 ], [ -80.718475341796875, -6.937084197998047 ], [ -80.71875, -6.937084197998047 ], [ -80.71875, -6.93874979019165 ], [ -80.718475341796875, -6.93874979019165 ], [ -80.718475341796875, -6.940137863159123 ], [ -80.719306945800781, -6.940137863159123 ], [ -80.719306945800781, -6.93986177444458 ], [ -80.720138549804631, -6.93986177444458 ], [ -80.720138549804631, -6.939305782318115 ], [ -80.720413208007756, -6.939305782318115 ], [ -80.720413208007756, -6.93986177444458 ], [ -80.720695495605412, -6.93986177444458 ], [ -80.720695495605412, -6.942083835601807 ], [ -80.720413208007756, -6.942083835601807 ], [ -80.720413208007756, -6.942637920379582 ], [ -80.720138549804631, -6.942637920379582 ], [ -80.720138549804631, -6.943193912506047 ], [ -80.719863891601506, -6.943193912506047 ], [ -80.719863891601506, -6.943471908569279 ], [ -80.719306945800781, -6.943471908569279 ], [ -80.719306945800781, -6.944027900695744 ], [ -80.719024658203125, -6.944027900695744 ], [ -80.719024658203125, -6.944305896758976 ], [ -80.718193054199219, -6.944305896758976 ], [ -80.718193054199219, -6.944583892822209 ], [ -80.717636108398438, -6.944583892822209 ], [ -80.717636108398438, -6.944859981536865 ], [ -80.716804504394474, -6.944859981536865 ], [ -80.716804504394474, -6.945693969726562 ], [ -80.716529846191293, -6.945693969726562 ], [ -80.716529846191293, -6.945971965789795 ], [ -80.716804504394474, -6.945971965789795 ], [ -80.716804504394474, -6.946527957916203 ], [ -80.716247558593636, -6.946527957916203 ], [ -80.716247558593636, -6.946805953979435 ], [ -80.715972900390625, -6.946805953979435 ], [ -80.715972900390625, -6.947360038757324 ], [ -80.7156982421875, -6.947360038757324 ], [ -80.715690612792969, -6.947638034820557 ], [ -80.715415954589844, -6.947638034820557 ], [ -80.715415954589844, -6.947916030883789 ], [ -80.715141296386719, -6.947916030883789 ], [ -80.715141296386719, -6.94847297668457 ], [ -80.715415954589844, -6.94847297668457 ], [ -80.715415954589844, -6.949306964874268 ], [ -80.715690612792969, -6.949306964874268 ], [ -80.7156982421875, -6.949582099914551 ], [ -80.715972900390625, -6.949582099914551 ], [ -80.715972900390625, -6.950695037841683 ], [ -80.716247558593636, -6.950695037841683 ], [ -80.716247558593636, -6.951251029968262 ], [ -80.717361450195256, -6.951248168945256 ], [ -80.717361450195256, -6.950973033905029 ], [ -80.718475341796875, -6.950973033905029 ], [ -80.718475341796875, -6.951805114746037 ], [ -80.718193054199219, -6.951805114746037 ], [ -80.718193054199219, -6.952361106872502 ], [ -80.717918395996094, -6.952361106872502 ], [ -80.717918395996094, -6.952639102935734 ], [ -80.717636108398438, -6.952639102935734 ], [ -80.717636108398438, -6.952917098998967 ], [ -80.717918395996094, -6.952917098998967 ], [ -80.717918395996094, -6.953473091125431 ], [ -80.718193054199219, -6.953471183776855 ], [ -80.718193054199219, -6.953749179840088 ], [ -80.718475341796875, -6.953749179840088 ], [ -80.718475341796875, -6.95402717590332 ], [ -80.718193054199219, -6.95402717590332 ], [ -80.718193054199219, -6.954583168029785 ], [ -80.717918395996094, -6.954583168029785 ], [ -80.717918395996094, -6.954861164093018 ], [ -80.717636108398438, -6.954861164093018 ], [ -80.717636108398438, -6.955970764160156 ], [ -80.717918395996094, -6.955970764160156 ], [ -80.717918395996094, -6.956249237060547 ], [ -80.718193054199219, -6.956249237060547 ], [ -80.718193054199219, -6.956527233123779 ], [ -80.718475341796875, -6.956527233123779 ], [ -80.718475341796875, -6.956805229187012 ], [ -80.719306945800781, -6.956805229187012 ], [ -80.719306945800781, -6.956527233123779 ], [ -80.719581604003793, -6.956527233123779 ], [ -80.719581604003793, -6.956249237060547 ], [ -80.720138549804631, -6.956249237060547 ], [ -80.720138549804631, -6.954583168029785 ], [ -80.719863891601506, -6.954583168029785 ], [ -80.719863891601506, -6.953749179840088 ], [ -80.720970153808594, -6.953749179840088 ], [ -80.720970153808594, -6.95402717590332 ], [ -80.721527099609375, -6.95402717590332 ], [ -80.721527099609375, -6.954305171966553 ], [ -80.722084045410156, -6.954305171966553 ], [ -80.722084045410156, -6.95402717590332 ], [ -80.722358703613281, -6.95402717590332 ], [ -80.722358703613281, -6.953749179840088 ], [ -80.722640991210938, -6.953749179840088 ], [ -80.722640991210938, -6.953471183776855 ], [ -80.723747253417912, -6.953473091125431 ], [ -80.723747253417912, -6.953195095062199 ], [ -80.724029541015568, -6.953195095062199 ], [ -80.724029541015568, -6.952917098998967 ], [ -80.72430419921875, -6.952917098998967 ], [ -80.72430419921875, -6.952361106872502 ], [ -80.724586486816406, -6.952361106872502 ], [ -80.724586486816406, -6.951527118682861 ], [ -80.724861145019531, -6.951527118682861 ], [ -80.724861145019531, -6.950973033905029 ], [ -80.725135803222656, -6.950973033905029 ], [ -80.725135803222656, -6.949582099914551 ], [ -80.724861145019531, -6.949582099914551 ], [ -80.724861145019531, -6.949028968811035 ], [ -80.724586486816406, -6.949028968811035 ], [ -80.724586486816406, -6.948750972747803 ], [ -80.724861145019531, -6.948750972747803 ], [ -80.724861145019531, -6.94847297668457 ], [ -80.725418090820312, -6.94847297668457 ], [ -80.725418090820312, -6.948750972747803 ], [ -80.72597503662098, -6.948750972747803 ], [ -80.72597503662098, -6.94847297668457 ], [ -80.726249694824162, -6.94847297668457 ], [ -80.726249694824162, -6.948194026947021 ], [ -80.726524353027287, -6.948194026947021 ], [ -80.726524353027287, -6.947916030883789 ], [ -80.726806640624943, -6.947916030883789 ], [ -80.726806640624943, -6.947638034820557 ], [ -80.727638244628906, -6.947638034820557 ], [ -80.727638244628906, -6.947916030883789 ], [ -80.727912902832031, -6.947916030883789 ], [ -80.727912902832031, -6.948194026947021 ], [ -80.728195190429688, -6.948194026947021 ], [ -80.728195190429688, -6.94847297668457 ], [ -80.728469848632812, -6.94847297668457 ], [ -80.728469848632812, -6.948750972747803 ], [ -80.728752136230469, -6.948750972747803 ], [ -80.728752136230469, -6.949028968811035 ], [ -80.729309082031136, -6.949028968811035 ], [ -80.729309082031136, -6.949306964874268 ], [ -80.730140686035099, -6.949306964874268 ], [ -80.730140686035099, -6.949028968811035 ], [ -80.730697631835938, -6.949028968811035 ], [ -80.730697631835938, -6.947084903717041 ], [ -80.730972290039062, -6.947084903717041 ], [ -80.730972290039062, -6.946249961852971 ], [ -80.731246948242188, -6.946249961852971 ], [ -80.731246948242188, -6.945693969726562 ], [ -80.731529235839844, -6.945693969726562 ], [ -80.731529235839844, -6.944859981536865 ], [ -80.731246948242188, -6.944859981536865 ], [ -80.731246948242188, -6.944583892822209 ], [ -80.730415344238281, -6.944583892822209 ], [ -80.730415344238281, -6.944305896758976 ], [ -80.730140686035099, -6.944305896758976 ], [ -80.730140686035099, -6.944027900695744 ], [ -80.729858398437443, -6.944027900695744 ], [ -80.729858398437443, -6.943749904632512 ], [ -80.729583740234318, -6.943749904632512 ], [ -80.729583740234318, -6.943471908569279 ], [ -80.729309082031136, -6.943471908569279 ], [ -80.729309082031136, -6.942637920379582 ], [ -80.72902679443348, -6.942637920379582 ], [ -80.72902679443348, -6.942083835601807 ], [ -80.727912902832031, -6.942083835601807 ], [ -80.727912902832031, -6.941805839538574 ], [ -80.727363586425781, -6.941805839538574 ], [ -80.727363586425781, -6.941527843475228 ], [ -80.727081298828068, -6.941527843475228 ], [ -80.727081298828068, -6.940415859222355 ], [ -80.727363586425781, -6.940415859222355 ], [ -80.727363586425781, -6.939583778381348 ], [ -80.727638244628906, -6.939583778381348 ], [ -80.727638244628906, -6.939305782318115 ], [ -80.729858398437443, -6.939305782318115 ], [ -80.729858398437443, -6.939583778381348 ], [ -80.730140686035099, -6.939583778381348 ], [ -80.730140686035099, -6.940137863159123 ], [ -80.730415344238281, -6.940137863159123 ], [ -80.730415344238281, -6.940415859222355 ], [ -80.730697631835938, -6.940415859222355 ], [ -80.730697631835938, -6.940693855285588 ], [ -80.730972290039062, -6.940693855285588 ], [ -80.730972290039062, -6.94097185134882 ], [ -80.732360839843636, -6.94097185134882 ], [ -80.732360839843636, -6.940693855285588 ], [ -80.732635498046818, -6.940693855285588 ], [ -80.732635498046818, -6.940415859222355 ], [ -80.732917785644474, -6.940415859222355 ], [ -80.732917785644474, -6.940137863159123 ], [ -80.733192443847599, -6.940137863159123 ], [ -80.733192443847599, -6.93986177444458 ], [ -80.733474731445256, -6.93986177444458 ], [ -80.733474731445256, -6.939305782318115 ], [ -80.733749389648438, -6.939305782318115 ], [ -80.733749389648438, -6.93874979019165 ], [ -80.734024047851562, -6.93874979019165 ], [ -80.734024047851562, -6.938193798065186 ], [ -80.734306335449219, -6.938193798065186 ], [ -80.734306335449219, -6.937640190124512 ], [ -80.734580993652344, -6.937640190124512 ], [ -80.734580993652344, -6.937362194061279 ], [ -80.73486328125, -6.937362194061279 ], [ -80.73486328125, -6.937084197998047 ], [ -80.735420227050781, -6.937084197998047 ], [ -80.735420227050781, -6.934305191039982 ], [ -80.735137939453125, -6.934305191039982 ], [ -80.735137939453125, -6.934027194976807 ], [ -80.733474731445256, -6.934027194976807 ], [ -80.733474731445256, -6.933749198913574 ], [ -80.733749389648438, -6.933749198913574 ], [ -80.733749389648438, -6.932917118072453 ], [ -80.734024047851562, -6.932917118072453 ], [ -80.734024047851562, -6.93208122253418 ], [ -80.733749389648438, -6.932083129882756 ], [ -80.733749389648438, -6.931527137756291 ], [ -80.733474731445256, -6.931527137756291 ], [ -80.733474731445256, -6.931249141693058 ], [ -80.732917785644474, -6.931249141693058 ], [ -80.732917785644474, -6.930971145629826 ], [ -80.732635498046818, -6.930971145629826 ], [ -80.732635498046818, -6.931249141693058 ], [ -80.732086181640625, -6.931249141693058 ], [ -80.732086181640625, -6.931527137756291 ], [ -80.731529235839844, -6.931527137756291 ], [ -80.731529235839844, -6.931805133819523 ], [ -80.730697631835938, -6.931805133819523 ], [ -80.730697631835938, -6.932083129882756 ], [ -80.729858398437443, -6.93208122253418 ], [ -80.729858398437443, -6.932359218597412 ], [ -80.729309082031136, -6.932359218597412 ], [ -80.729309082031136, -6.932639122009221 ], [ -80.727638244628906, -6.932639122009221 ], [ -80.727638244628906, -6.932917118072453 ], [ -80.727363586425781, -6.932917118072453 ], [ -80.727363586425781, -6.934027194976807 ], [ -80.727081298828068, -6.934027194976807 ], [ -80.727081298828068, -6.934305191039982 ], [ -80.726806640624943, -6.934305191039982 ], [ -80.726806640624943, -6.934583187103215 ], [ -80.726249694824162, -6.934583187103215 ], [ -80.726249694824162, -6.93486213684082 ], [ -80.72597503662098, -6.93486213684082 ], [ -80.72597503662098, -6.935140132904053 ], [ -80.725418090820312, -6.935140132904053 ], [ -80.725418090820312, -6.93569278717041 ], [ -80.725135803222656, -6.93569278717041 ], [ -80.725135803222656, -6.93625020980835 ], [ -80.724861145019531, -6.93625020980835 ], [ -80.724861145019531, -6.936528205871582 ], [ -80.724586486816406, -6.936528205871582 ], [ -80.724586486816406, -6.936806201934814 ], [ -80.723747253417912, -6.936806201934814 ], [ -80.723747253417912, -6.936528205871582 ], [ -80.722915649414006, -6.936528205871582 ], [ -80.722915649414006, -6.935418128967285 ], [ -80.723472595214787, -6.935418128967285 ], [ -80.723472595214787, -6.933749198913574 ], [ -80.724029541015568, -6.933749198913574 ], [ -80.724029541015568, -6.933471202850342 ], [ -80.72430419921875, -6.933471202850342 ], [ -80.72430419921875, -6.933195114135629 ], [ -80.724861145019531, -6.933195114135629 ], [ -80.724861145019531, -6.932917118072453 ], [ -80.725135803222656, -6.932917118072453 ], [ -80.725135803222656, -6.932639122009221 ], [ -80.725418090820312, -6.932639122009221 ], [ -80.725418090820312, -6.932359218597412 ], [ -80.725692749023438, -6.932361125945988 ], [ -80.725692749023438, -6.931805133819523 ], [ -80.72597503662098, -6.931805133819523 ], [ -80.72597503662098, -6.930971145629826 ], [ -80.725692749023438, -6.930971145629826 ], [ -80.725692749023438, -6.930695056915283 ], [ -80.725135803222656, -6.930695056915283 ], [ -80.725135803222656, -6.930417060852051 ], [ -80.724861145019531, -6.930417060852051 ], [ -80.724861145019531, -6.92958307266224 ], [ -80.724586486816406, -6.92958307266224 ], [ -80.724586486816406, -6.929027080535832 ], [ -80.72430419921875, -6.929027080535832 ], [ -80.72430419921875, -6.928749084472599 ], [ -80.723747253417912, -6.928749084472599 ], [ -80.723747253417912, -6.928471088409367 ], [ -80.723197937011662, -6.928472995758057 ], [ -80.723197937011662, -6.928194999694824 ], [ -80.722915649414006, -6.928194999694824 ], [ -80.722915649414006, -6.926805019378662 ], [ -80.722640991210938, -6.926805019378662 ], [ -80.722640991210938, -6.92652702331543 ], [ -80.722084045410156, -6.926528930664062 ], [ -80.722084045410156, -6.925694942474365 ], [ -80.722358703613281, -6.925694942474365 ], [ -80.722358703613281, -6.925416946411133 ], [ -80.722640991210938, -6.925416946411133 ], [ -80.722640991210938, -6.925694942474365 ], [ -80.722915649414006, -6.925694942474365 ], [ -80.722915649414006, -6.925972938537598 ], [ -80.724029541015568, -6.925972938537598 ], [ -80.724029541015568, -6.925694942474365 ], [ -80.724586486816406, -6.925694942474365 ], [ -80.724586486816406, -6.924860954284668 ], [ -80.724861145019531, -6.924860954284668 ], [ -80.724861145019531, -6.924582958221436 ], [ -80.724586486816406, -6.924582958221436 ], [ -80.724586486816406, -6.924028873443547 ], [ -80.72430419921875, -6.924028873443547 ], [ -80.72430419921875, -6.923750877380314 ], [ -80.724029541015568, -6.923750877380314 ], [ -80.724029541015568, -6.924028873443547 ], [ -80.723472595214787, -6.924028873443547 ], [ -80.723472595214787, -6.924304962158203 ], [ -80.722640991210938, -6.924304962158203 ], [ -80.722640991210938, -6.924582958221436 ], [ -80.721809387207031, -6.924582958221436 ], [ -80.7218017578125, -6.924304962158203 ], [ -80.721527099609375, -6.924304962158203 ], [ -80.721527099609375, -6.924028873443547 ], [ -80.72125244140625, -6.924028873443547 ], [ -80.72125244140625, -6.923750877380314 ], [ -80.720970153808594, -6.923750877380314 ], [ -80.720970153808594, -6.923472881317082 ], [ -80.720695495605412, -6.923472881317082 ], [ -80.720695495605412, -6.921803951263371 ], [ -80.72125244140625, -6.921803951263371 ], [ -80.72125244140625, -6.921250820159855 ], [ -80.721527099609375, -6.921250820159855 ], [ -80.721527099609375, -6.920971870422363 ], [ -80.7218017578125, -6.920971870422363 ], [ -80.721809387207031, -6.920693874359131 ], [ -80.722084045410156, -6.920693874359131 ], [ -80.722084045410156, -6.920415878295785 ], [ -80.721809387207031, -6.920415878295785 ], [ -80.7218017578125, -6.919859886169377 ], [ -80.721527099609375, -6.919859886169377 ], [ -80.721527099609375, -6.919581890106144 ], [ -80.72125244140625, -6.919581890106144 ], [ -80.72125244140625, -6.919305801391602 ], [ -80.721527099609375, -6.919305801391602 ], [ -80.721527099609375, -6.919027805328369 ], [ -80.7218017578125, -6.919027805328369 ], [ -80.721809387207031, -6.918749809265137 ], [ -80.722084045410156, -6.918749809265137 ], [ -80.722084045410156, -6.918471813201904 ], [ -80.722358703613281, -6.918471813201904 ], [ -80.722358703613281, -6.918193817138672 ], [ -80.722640991210938, -6.918193817138672 ], [ -80.722640991210938, -6.915972232818604 ], [ -80.722358703613281, -6.915972232818604 ], [ -80.722358703613281, -6.915694236755371 ], [ -80.722084045410156, -6.915694236755371 ], [ -80.722084045410156, -6.91541576385498 ], [ -80.721527099609375, -6.91541576385498 ], [ -80.721527099609375, -6.915137767791748 ], [ -80.720695495605412, -6.915137767791748 ], [ -80.720695495605412, -6.914859771728516 ], [ -80.719581604003793, -6.914859771728516 ], [ -80.719581604003793, -6.91541576385498 ], [ -80.719863891601506, -6.91541576385498 ] ] ], [ [ [ -79.883644104003906, -5.492481231689453 ], [ -79.883148193359375, -5.493730068206787 ], [ -79.881538391113281, -5.495536804199219 ], [ -79.881210327148324, -5.496424198150635 ], [ -79.879066467285156, -5.498827934265137 ], [ -79.878631591796818, -5.500358104705811 ], [ -79.878028869628849, -5.505228042602482 ], [ -79.877380371093693, -5.508083820342904 ], [ -79.877311706542969, -5.509859085083008 ], [ -79.876998901367131, -5.510618209838867 ], [ -79.875381469726506, -5.51223611831665 ], [ -79.873474121093693, -5.513226032257023 ], [ -79.871780395507812, -5.514573097228947 ], [ -79.869155883789062, -5.519561767578125 ], [ -79.868309020996037, -5.519982814788818 ], [ -79.864250183105469, -5.520926952362004 ], [ -79.861717224121094, -5.522462844848633 ], [ -79.860855102539062, -5.523307800292912 ], [ -79.858779907226506, -5.526453971862679 ], [ -79.855163574218693, -5.529213905334473 ], [ -79.854141235351562, -5.530782222747746 ], [ -79.854103088378849, -5.531730175018311 ], [ -79.854423522949219, -5.532896995544434 ], [ -79.856071472167969, -5.534479141235352 ], [ -79.858787536621037, -5.539127826690674 ], [ -79.861289978027344, -5.541566848754826 ], [ -79.861503601074219, -5.542213916778508 ], [ -79.861457824706974, -5.543837070465088 ], [ -79.864166259765625, -5.548151016235295 ], [ -79.864204406738224, -5.549448013305664 ], [ -79.863304138183594, -5.55095195770258 ], [ -79.863067626953068, -5.552692890167179 ], [ -79.863281249999886, -5.553907871246224 ], [ -79.864639282226562, -5.557727813720646 ], [ -79.864799499511662, -5.562036037445068 ], [ -79.864234924316293, -5.563257217407227 ], [ -79.862258911132812, -5.565084934234619 ], [ -79.861122131347656, -5.567223072052002 ], [ -79.858627319335938, -5.570209026336613 ], [ -79.858833312988281, -5.571280002593994 ], [ -79.860206604003849, -5.57391881942749 ], [ -79.860420227050668, -5.575116157531681 ], [ -79.860198974609318, -5.576298236846924 ], [ -79.858924865722656, -5.579861164092961 ], [ -79.858100891113224, -5.586266994476318 ], [ -79.857093811035156, -5.588341236114502 ], [ -79.854637145996094, -5.591544151306152 ], [ -79.853019714355469, -5.594342231750488 ], [ -79.852828979492188, -5.596352100372314 ], [ -79.853652954101562, -5.598185062408447 ], [ -79.853652954101562, -5.598987102508545 ], [ -79.852188110351506, -5.603622913360539 ], [ -79.851089477539062, -5.605788230895939 ], [ -79.849380493164062, -5.610336780548096 ], [ -79.848983764648438, -5.611177921295166 ], [ -79.847579956054688, -5.612812042236328 ], [ -79.846382141113224, -5.614768028259277 ], [ -79.844482421874943, -5.618346214294434 ], [ -79.843994140624943, -5.619729995727539 ], [ -79.843498229980469, -5.622959136962834 ], [ -79.843063354492074, -5.624342918395996 ], [ -79.840957641601506, -5.627154827117863 ], [ -79.8394775390625, -5.630023956298771 ], [ -79.839118957519474, -5.630280017852783 ], [ -79.83795166015625, -5.631569862365666 ], [ -79.837440490722656, -5.635170936584473 ], [ -79.835418701171818, -5.637342929840031 ], [ -79.834083557128849, -5.639986991882324 ], [ -79.833770751953125, -5.641431808471623 ], [ -79.833587646484318, -5.645595073699951 ], [ -79.833175659179688, -5.645746231079102 ], [ -79.829978942871037, -5.644077777862435 ], [ -79.828422546386719, -5.644567966461125 ], [ -79.827056884765625, -5.645696163177433 ], [ -79.826156616210881, -5.648499011993408 ], [ -79.825462341308594, -5.653289794921818 ], [ -79.824745178222599, -5.65427923202509 ], [ -79.822006225585938, -5.656864166259766 ], [ -79.821098327636662, -5.658041954040471 ], [ -79.8201904296875, -5.660861015319824 ], [ -79.819763183593693, -5.664202213287354 ], [ -79.819091796874943, -5.665388107299805 ], [ -79.818069458007756, -5.666450023651066 ], [ -79.817108154296818, -5.666403770446777 ], [ -79.816390991210938, -5.665780067443848 ], [ -79.815963745117131, -5.663268089294434 ], [ -79.813896179199219, -5.659958839416504 ], [ -79.813804626464844, -5.657390117645207 ], [ -79.813468933105412, -5.656808853149414 ], [ -79.812469482421875, -5.655906200408936 ], [ -79.812263488769531, -5.654572963714543 ], [ -79.811775207519474, -5.653611183166447 ], [ -79.810096740722656, -5.651861190795898 ], [ -79.809181213378849, -5.651288986206055 ], [ -79.804878234863281, -5.646838188171387 ], [ -79.801689147949219, -5.646401882171631 ], [ -79.797012329101562, -5.646829128265381 ], [ -79.793434143066406, -5.646217823028564 ], [ -79.789932250976506, -5.646347999572697 ], [ -79.787635803222599, -5.647086143493596 ], [ -79.786064147949219, -5.648118019104004 ], [ -79.784225463867188, -5.651406764984131 ], [ -79.781608581542969, -5.654276847839355 ], [ -79.781120300292969, -5.656670093536377 ], [ -79.780555725097656, -5.657765865325928 ], [ -79.780067443847656, -5.658183097839355 ], [ -79.778533935546875, -5.658763885498047 ], [ -79.775321960449162, -5.659053802490234 ], [ -79.770706176757812, -5.659946918487549 ], [ -79.769447326660156, -5.660426139831486 ], [ -79.766159057617188, -5.662527084350586 ], [ -79.764396667480469, -5.664723873138428 ], [ -79.761276245117188, -5.669969081878662 ], [ -79.755386352539006, -5.675868988037109 ], [ -79.754539489746037, -5.676335811614877 ], [ -79.753349304199219, -5.676570892333928 ], [ -79.750587463378906, -5.675970077514648 ], [ -79.748435974121037, -5.675934791564885 ], [ -79.74676513671875, -5.675469875335637 ], [ -79.74517822265625, -5.675753116607609 ], [ -79.744621276855412, -5.676362037658691 ], [ -79.744033813476562, -5.678153038024846 ], [ -79.743904113769531, -5.680715084075871 ], [ -79.744056701660099, -5.683002948760986 ], [ -79.7447509765625, -5.684898853302002 ], [ -79.746826171874943, -5.687307834625187 ], [ -79.74908447265625, -5.689435005187988 ], [ -79.751434326171875, -5.691227912902832 ], [ -79.754455566406193, -5.692743778228703 ], [ -79.755416870117131, -5.693646907806396 ], [ -79.757209777831974, -5.69602108001709 ], [ -79.759323120117131, -5.697175025939885 ], [ -79.761421203613224, -5.699646949768066 ], [ -79.76165771484375, -5.700699806213379 ], [ -79.759140014648324, -5.703317165374699 ], [ -79.758392333984375, -5.704748153686467 ], [ -79.756568908691406, -5.706340789794808 ], [ -79.75399017333973, -5.707488059997559 ], [ -79.750457763671818, -5.708294868469238 ], [ -79.749320983886719, -5.709249019622803 ], [ -79.7486572265625, -5.710579872131348 ], [ -79.748069763183537, -5.711153030395451 ], [ -79.747314453124886, -5.7113938331604 ], [ -79.745414733886719, -5.711472034454289 ], [ -79.744728088378849, -5.711839199066162 ], [ -79.743911743164062, -5.713252067565861 ], [ -79.74383544921875, -5.71460485458374 ], [ -79.744491577148438, -5.717483997344914 ], [ -79.744277954101562, -5.718396186828613 ], [ -79.743682861328068, -5.719303131103459 ], [ -79.742614746093693, -5.720096111297607 ], [ -79.741165161132812, -5.720415115356445 ], [ -79.739234924316406, -5.721370220184269 ], [ -79.736885070800724, -5.721947193145752 ], [ -79.735458374023381, -5.722716808319035 ], [ -79.728233337402287, -5.729952812194767 ], [ -79.726943969726562, -5.730667114257812 ], [ -79.723960876464844, -5.733585834503174 ], [ -79.721778869628906, -5.734613895416203 ], [ -79.719848632812386, -5.737207889556885 ], [ -79.717109680175781, -5.7395920753479 ], [ -79.716751098632812, -5.740172863006535 ], [ -79.716567993164062, -5.741228103637695 ], [ -79.717239379882756, -5.743711948394775 ], [ -79.719741821289006, -5.747037887573242 ], [ -79.719619750976562, -5.748244762420654 ], [ -79.718116760253849, -5.750476837158146 ], [ -79.718032836914006, -5.753038883209229 ], [ -79.719429016113281, -5.757253170013428 ], [ -79.721115112304688, -5.760478019714299 ], [ -79.721206665039062, -5.762765884399414 ], [ -79.722221374511662, -5.765552997589054 ], [ -79.722297668456974, -5.768113136291504 ], [ -79.723304748535156, -5.770610809326115 ], [ -79.723731994628849, -5.77299690246582 ], [ -79.724296569824162, -5.774073123931885 ], [ -79.725799560546875, -5.775592803955078 ], [ -79.7265625, -5.780607223510742 ], [ -79.727676391601562, -5.782304763793945 ], [ -79.728233337402287, -5.782650947570744 ], [ -79.728805541992131, -5.782583236694279 ], [ -79.731216430664062, -5.785079002380314 ], [ -79.732185363769531, -5.785782814025822 ], [ -79.732597351074162, -5.785761833190918 ], [ -79.733596801757812, -5.786446094512883 ], [ -79.734527587890568, -5.786582946777344 ], [ -79.734870910644531, -5.786851882934513 ], [ -79.733589172363281, -5.790486812591496 ], [ -79.733291625976506, -5.791930198669377 ], [ -79.733200073242074, -5.793285846710205 ], [ -79.733390808105355, -5.794067859649601 ], [ -79.734649658203125, -5.795645236968937 ], [ -79.737907409667969, -5.797789096832275 ], [ -79.738891601562443, -5.798917770385742 ], [ -79.739242553710938, -5.802663803100586 ], [ -79.739212036132812, -5.806451797485352 ], [ -79.73907470703125, -5.807093143463078 ], [ -79.73828125, -5.808533191680908 ], [ -79.738243103027287, -5.809470176696721 ], [ -79.738723754882756, -5.810872077941838 ], [ -79.741493225097599, -5.813797950744629 ], [ -79.741996765136719, -5.815769195556641 ], [ -79.742034912109318, -5.818220138549748 ], [ -79.74178314208973, -5.819384098052922 ], [ -79.739669799804631, -5.823000907897949 ], [ -79.737960815429631, -5.826945781707707 ], [ -79.738014221191406, -5.828441143035889 ], [ -79.738960266113281, -5.831102848052979 ], [ -79.73895263671875, -5.833672046661377 ], [ -79.737869262695256, -5.835377216339054 ], [ -79.737617492675781, -5.837236881256047 ], [ -79.737213134765625, -5.838122844695988 ], [ -79.736564636230469, -5.838532924652043 ], [ -79.735069274902344, -5.838969230651799 ], [ -79.732116699218693, -5.839057922363224 ], [ -79.731483459472543, -5.839288234710637 ], [ -79.725181579589787, -5.838891029357853 ], [ -79.724296569824162, -5.839223861694279 ], [ -79.722824096679688, -5.839333057403564 ], [ -79.718154907226562, -5.838725090026855 ], [ -79.715621948242131, -5.837853908538762 ], [ -79.714408874511662, -5.837909221649113 ], [ -79.713279724121094, -5.838350772857666 ], [ -79.711555480957031, -5.839852809906006 ], [ -79.710395812988224, -5.840538978576603 ], [ -79.7052001953125, -5.841565132141056 ], [ -79.703330993652287, -5.842194080352783 ], [ -79.702392578124943, -5.842895984649601 ], [ -79.700325012207031, -5.845095157623291 ], [ -79.698371887206974, -5.846292018890381 ], [ -79.696876525878906, -5.84689998626709 ], [ -79.694381713867131, -5.847461223602238 ], [ -79.690750122070256, -5.847455978393555 ], [ -79.689025878906193, -5.848192214965763 ], [ -79.688369750976506, -5.848072052001953 ], [ -79.687339782714844, -5.847422122955265 ], [ -79.68450927734375, -5.847157955169678 ], [ -79.683021545410099, -5.84632396697998 ], [ -79.680282592773438, -5.84407377243042 ], [ -79.678657531738281, -5.842057228088322 ], [ -79.677398681640568, -5.84158992767334 ], [ -79.673080444335938, -5.837938785552979 ], [ -79.67047119140625, -5.836246967315674 ], [ -79.668037414550724, -5.835148811340332 ], [ -79.666549682617188, -5.835081100463867 ], [ -79.664154052734261, -5.835379123687744 ], [ -79.66278076171875, -5.834788799285775 ], [ -79.661842346191349, -5.834018230438176 ], [ -79.660896301269474, -5.832692146301213 ], [ -79.660148620605355, -5.829121112823486 ], [ -79.659568786621037, -5.827783107757568 ], [ -79.6580810546875, -5.825844764709416 ], [ -79.656227111816349, -5.824075222015381 ], [ -79.654670715332031, -5.820940971374455 ], [ -79.653045654296875, -5.818602085113525 ], [ -79.651435852050724, -5.816820144653263 ], [ -79.650154113769531, -5.816343784332219 ], [ -79.647636413574162, -5.816094875335693 ], [ -79.645065307617131, -5.81390476226801 ], [ -79.642211914062443, -5.812379837036133 ], [ -79.639175415039062, -5.812304973602295 ], [ -79.637214660644531, -5.810256004333439 ], [ -79.634460449218693, -5.808835983276367 ], [ -79.633331298828068, -5.805609226226807 ], [ -79.631729125976449, -5.803981781005803 ], [ -79.631423950195256, -5.801971912383976 ], [ -79.631011962890625, -5.801271915435734 ], [ -79.629997253417912, -5.800963878631592 ], [ -79.627609252929631, -5.798993110656738 ], [ -79.625877380371037, -5.798267841339054 ], [ -79.62335205078125, -5.797763824462834 ], [ -79.621910095214844, -5.798487186431885 ], [ -79.620536804199162, -5.800635814666691 ], [ -79.619834899902344, -5.802391052246094 ], [ -79.619720458984375, -5.803458213806152 ], [ -79.620590209960938, -5.807688236236572 ], [ -79.620559692382756, -5.811583042144719 ], [ -79.622222900390625, -5.815995216369629 ], [ -79.622962951660156, -5.820517063140869 ], [ -79.623893737792912, -5.82290077209467 ], [ -79.625114440917912, -5.825008869171143 ], [ -79.625839233398438, -5.825588226318359 ], [ -79.627792358398381, -5.826132774353027 ], [ -79.629806518554631, -5.828307151794434 ], [ -79.631538391113168, -5.829022884368896 ], [ -79.632232666015625, -5.829692840576172 ], [ -79.63128662109375, -5.831612110137939 ], [ -79.631523132324162, -5.833216190338078 ], [ -79.631324768066349, -5.835083007812443 ], [ -79.629402160644531, -5.837309837341309 ], [ -79.628448486328125, -5.840266227722168 ], [ -79.628479003906193, -5.84576511383051 ], [ -79.628662109374943, -5.846810817718506 ], [ -79.629882812499943, -5.849966049194336 ], [ -79.630180358886662, -5.852235794067383 ], [ -79.632293701171818, -5.852128028869629 ], [ -79.633010864257812, -5.852481842041016 ], [ -79.63555908203125, -5.852516174316349 ], [ -79.635955810546875, -5.853078842163086 ], [ -79.636161804199219, -5.854556083679199 ], [ -79.637664794921875, -5.855653762817383 ], [ -79.637634277343693, -5.857304096221867 ], [ -79.637245178222599, -5.858444213867131 ], [ -79.635932922363281, -5.858833789825383 ], [ -79.633880615234375, -5.858733177185059 ], [ -79.6331787109375, -5.858982086181641 ], [ -79.632537841796875, -5.859904766082764 ], [ -79.631851196289062, -5.861807823181152 ], [ -79.629844665527344, -5.86401176452631 ], [ -79.629653930664062, -5.865296840667725 ], [ -79.629859924316406, -5.868215084075814 ], [ -79.629737854003906, -5.869515895843449 ], [ -79.6280517578125, -5.871260166168156 ], [ -79.627670288085938, -5.874031066894531 ], [ -79.626846313476506, -5.87493991851801 ], [ -79.626029968261719, -5.875408172607365 ], [ -79.625694274902287, -5.876160144805908 ], [ -79.626464843749943, -5.88067722320551 ], [ -79.625747680664062, -5.884788990020752 ], [ -79.626983642578125, -5.886868953704834 ], [ -79.626731872558594, -5.88818883895874 ], [ -79.625831604003906, -5.888826847076359 ], [ -79.623283386230469, -5.889116764068547 ], [ -79.62123870849598, -5.89062309265131 ], [ -79.618484497070312, -5.891276836395264 ], [ -79.617378234863281, -5.891756057739201 ], [ -79.615043640136719, -5.893362998962402 ], [ -79.613693237304631, -5.895041942596379 ], [ -79.612815856933537, -5.898016929626465 ], [ -79.612686157226562, -5.900298118591309 ], [ -79.611900329589844, -5.902440071105843 ], [ -79.611961364746037, -5.903522968292236 ], [ -79.612716674804631, -5.904797077178898 ], [ -79.612823486328068, -5.905456066131478 ], [ -79.612159729003849, -5.908211231231633 ], [ -79.611854553222656, -5.914396762847787 ], [ -79.611335754394531, -5.915647983551025 ], [ -79.609756469726562, -5.917336940765381 ], [ -79.609458923339844, -5.91804313659668 ], [ -79.609619140625, -5.919276237487793 ], [ -79.610466003417969, -5.921984195709229 ], [ -79.610458374023381, -5.92333793640131 ], [ -79.608734130859318, -5.926533222198429 ], [ -79.606369018554688, -5.929469108581486 ], [ -79.604476928710938, -5.933632850646973 ], [ -79.601081848144474, -5.937636852264404 ], [ -79.600234985351506, -5.939050197601262 ], [ -79.598991394042912, -5.937662124633789 ], [ -79.598274230957031, -5.935900211334229 ], [ -79.597801208496094, -5.935274124145508 ], [ -79.596427917480412, -5.934393882751465 ], [ -79.594970703125, -5.934115886688232 ], [ -79.593276977539006, -5.934518814086914 ], [ -79.591331481933594, -5.935444831848145 ], [ -79.589469909667912, -5.936776161193848 ], [ -79.588142395019474, -5.938394069671574 ], [ -79.587074279785099, -5.938707828521672 ], [ -79.585411071777344, -5.938651084899902 ], [ -79.583686828613281, -5.938195228576603 ], [ -79.581687927246094, -5.936192035675049 ], [ -79.581184387206918, -5.936007976531982 ], [ -79.579429626464844, -5.936011791229248 ], [ -79.578094482421875, -5.934706211090031 ], [ -79.577102661132812, -5.935184955596924 ], [ -79.576759338378906, -5.936205863952637 ], [ -79.575637817382756, -5.937162876129094 ], [ -79.574844360351562, -5.937341213226262 ], [ -79.573234558105412, -5.93720006942749 ], [ -79.572525024414062, -5.93799877166748 ], [ -79.571731567382756, -5.938158988952637 ], [ -79.569152832031193, -5.937369823455754 ], [ -79.565757751464844, -5.935188770294189 ], [ -79.563690185546875, -5.934600830078125 ], [ -79.562530517578125, -5.93495512008667 ], [ -79.560188293456974, -5.936281204223633 ], [ -79.55792236328125, -5.936524868011475 ], [ -79.555198669433594, -5.938485145568791 ], [ -79.553710937499943, -5.938535213470459 ], [ -79.552719116210938, -5.938090801239014 ], [ -79.552116394042969, -5.937375068664551 ], [ -79.551773071289062, -5.936205863952637 ], [ -79.551795959472599, -5.9340500831604 ], [ -79.551170349121094, -5.9324951171875 ], [ -79.550376892089787, -5.931410789489746 ], [ -79.549613952636662, -5.931038856506291 ], [ -79.547653198242188, -5.930891036987305 ], [ -79.546669006347656, -5.930429935455322 ], [ -79.5452880859375, -5.928448200225773 ], [ -79.54461669921875, -5.927993774414062 ], [ -79.543869018554631, -5.926115989685002 ], [ -79.543487548828068, -5.925748825073242 ], [ -79.542701721191406, -5.925576210021973 ], [ -79.54193115234375, -5.926121234893799 ], [ -79.541267395019531, -5.926272869110107 ], [ -79.540069580078068, -5.925687789916992 ], [ -79.539825439453125, -5.924220085143986 ], [ -79.540718078613224, -5.923219203948918 ], [ -79.540802001953125, -5.922848224639893 ], [ -79.539718627929688, -5.920822143554574 ], [ -79.5391845703125, -5.920716762542725 ], [ -79.537612915039062, -5.921170234680176 ], [ -79.537254333496094, -5.921525955200138 ], [ -79.536781311035156, -5.922719955444336 ], [ -79.536399841308594, -5.922966003417969 ], [ -79.535560607910156, -5.922731876373291 ], [ -79.534233093261662, -5.921597003936654 ], [ -79.532089233398438, -5.92155122756958 ], [ -79.531829833984375, -5.921217918395996 ], [ -79.531700134277344, -5.920409202575627 ], [ -79.532630920410099, -5.919101238250732 ], [ -79.532608032226506, -5.918704032897949 ], [ -79.53192138671875, -5.91804313659668 ], [ -79.530982971191406, -5.918023109436035 ], [ -79.53057861328125, -5.917710781097298 ], [ -79.530036926269474, -5.917084217071476 ], [ -79.529220581054688, -5.914384841918832 ], [ -79.528190612792969, -5.913518905639592 ], [ -79.527069091796875, -5.913015842437744 ], [ -79.526679992675781, -5.913053989410344 ], [ -79.525909423828125, -5.913600921630859 ], [ -79.524200439453125, -5.913246154785156 ], [ -79.523216247558594, -5.913632869720459 ], [ -79.521736145019474, -5.912994861602726 ], [ -79.520126342773381, -5.913073062896729 ], [ -79.519119262695312, -5.91413497924799 ], [ -79.518112182617131, -5.916062831878605 ], [ -79.517768859863281, -5.917084217071476 ], [ -79.517753601074162, -5.918169021606388 ], [ -79.517173767089787, -5.919074058532658 ], [ -79.517013549804688, -5.920338153839054 ], [ -79.516754150390625, -5.920475006103516 ], [ -79.515480041503906, -5.920279026031437 ], [ -79.513816833496094, -5.921348094940129 ], [ -79.512741088867188, -5.920781135559082 ], [ -79.51226806640625, -5.919654846191349 ], [ -79.512245178222656, -5.917915821075439 ], [ -79.511001586914062, -5.916683197021484 ], [ -79.510086059570312, -5.916913032531681 ], [ -79.508926391601562, -5.917997837066594 ], [ -79.507629394531193, -5.917088031768742 ], [ -79.506965637206974, -5.917254924774113 ], [ -79.506301879882756, -5.917856216430664 ], [ -79.504417419433594, -5.917131900787297 ], [ -79.503074645996037, -5.91717004776001 ], [ -79.502021789550724, -5.917540073394719 ], [ -79.500602722167969, -5.918805122375488 ], [ -79.499839782714844, -5.919079780578613 ], [ -79.499397277832031, -5.918749809265137 ], [ -79.498916625976562, -5.916797161102238 ], [ -79.498313903808594, -5.916405200958252 ], [ -79.497390747070312, -5.91653919219965 ], [ -79.491813659667912, -5.918822765350342 ], [ -79.490287780761662, -5.919004917144775 ], [ -79.489662170410156, -5.919704914093018 ], [ -79.488914489746094, -5.921279907226506 ], [ -79.488212585449219, -5.921881198883057 ], [ -79.487396240234375, -5.921896934509277 ], [ -79.48687744140625, -5.922251224517822 ], [ -79.486221313476562, -5.921967983245793 ], [ -79.485282897949219, -5.922815799713135 ], [ -79.484092712402287, -5.922706127166691 ], [ -79.483337402343636, -5.923038959503174 ], [ -79.480186462402287, -5.923623085021973 ], [ -79.474250793456974, -5.92670202255249 ], [ -79.472572326660156, -5.927815914153996 ], [ -79.469779968261662, -5.928983211517334 ], [ -79.468620300292912, -5.929769992828369 ], [ -79.468162536621037, -5.930305004119873 ], [ -79.467933654785156, -5.931820869445801 ], [ -79.466285705566406, -5.932835102081242 ], [ -79.465560913085938, -5.933553218841553 ], [ -79.465461730957031, -5.936044216156006 ], [ -79.464195251464844, -5.937335968017578 ], [ -79.464683532714844, -5.93966817855835 ], [ -79.463493347167912, -5.940911769866943 ], [ -79.463264465332031, -5.943953037261906 ], [ -79.462837219238281, -5.944743156433105 ], [ -79.462089538574219, -5.945452213287297 ], [ -79.461036682128906, -5.946011066436654 ], [ -79.458297729492188, -5.94677209854126 ], [ -79.456642150878906, -5.947554111480656 ], [ -79.451484680175668, -5.948856830596867 ], [ -79.449516296386719, -5.949828147888184 ], [ -79.447151184082031, -5.950026035308838 ], [ -79.443328857421875, -5.951808929443303 ], [ -79.441619873046875, -5.952887058258057 ], [ -79.438041687011719, -5.954304218292179 ], [ -79.435035705566406, -5.957258224487305 ], [ -79.434020996093693, -5.957934856414795 ], [ -79.429855346679688, -5.962199211120605 ], [ -79.428314208984375, -5.962790012359619 ], [ -79.42718505859375, -5.963573932647705 ], [ -79.425643920898438, -5.965850830078125 ], [ -79.422851562499943, -5.968894958496094 ], [ -79.419685363769531, -5.971110820770264 ], [ -79.419784545898438, -5.972123146057072 ], [ -79.420585632324105, -5.97322416305542 ], [ -79.420585632324105, -5.974874019622803 ], [ -79.420143127441406, -5.976177215576172 ], [ -79.418899536132812, -5.977530956268254 ], [ -79.418190002441349, -5.978816986083984 ], [ -79.417503356933537, -5.983557224273682 ], [ -79.416931152343693, -5.985692977905217 ], [ -79.416748046874943, -5.99001407623291 ], [ -79.416343688964844, -5.991622924804688 ], [ -79.415725708007812, -5.992962837219238 ], [ -79.415596008300724, -5.993865966796818 ], [ -79.415763854980469, -5.996724128723088 ], [ -79.417465209960938, -5.999135017394963 ], [ -79.417655944824219, -6.000047206878662 ], [ -79.417640686035156, -6.002850055694466 ], [ -79.416511535644531, -6.004456996917725 ], [ -79.414108276367188, -6.002510070800781 ], [ -79.411552429199219, -6.001987934112492 ], [ -79.409149169921875, -6.00074577331543 ], [ -79.408378601074105, -6.000047206878662 ], [ -79.407318115234318, -5.99850416183466 ], [ -79.405670166015625, -5.994722843170166 ], [ -79.40533447265625, -5.992540836334229 ], [ -79.404891967773438, -5.991326808929387 ], [ -79.40478515625, -5.988377094268799 ], [ -79.403823852539062, -5.985462188720646 ], [ -79.402748107910099, -5.983893871307373 ], [ -79.401405334472599, -5.98248815536499 ], [ -79.39727783203125, -5.978689193725586 ], [ -79.395225524902344, -5.978217124938965 ], [ -79.393684387206974, -5.978456020355168 ], [ -79.390846252441406, -5.979497909545842 ], [ -79.388275146484375, -5.979365825652962 ], [ -79.385963439941349, -5.97969913482666 ], [ -79.384010314941406, -5.978885173797551 ], [ -79.383003234863224, -5.978765964508 ], [ -79.380043029785099, -5.977788925170842 ], [ -79.378021240234318, -5.977706909179688 ], [ -79.375831604003849, -5.977956771850586 ], [ -79.374595642089787, -5.977678775787354 ], [ -79.371009826660156, -5.977571964263916 ], [ -79.368743896484375, -5.977193832397461 ], [ -79.367324829101562, -5.976519107818604 ], [ -79.365867614746094, -5.976271152496281 ], [ -79.364311218261662, -5.976291179656926 ], [ -79.361724853515568, -5.976943016052189 ], [ -79.359062194824162, -5.977008819580078 ], [ -79.355484008789062, -5.978662014007568 ], [ -79.352157592773438, -5.979266166687012 ], [ -79.351387023925781, -5.979775905609074 ], [ -79.349014282226562, -5.982203006744271 ], [ -79.348648071289006, -5.984002113342285 ], [ -79.348876953125, -5.987804889678955 ], [ -79.347732543945312, -5.991495132446289 ], [ -79.347282409667969, -5.995152950286865 ], [ -79.346389770507699, -5.996746063232422 ], [ -79.346466064453068, -5.999967098236084 ], [ -79.346244812011719, -6.000573158264046 ], [ -79.346656799316349, -6.003428936004639 ], [ -79.346435546875, -6.004665851593018 ], [ -79.345306396484318, -6.006507873535156 ], [ -79.34100341796875, -6.010383129119873 ], [ -79.337265014648438, -6.014814853668156 ], [ -79.335830688476562, -6.01555776596058 ], [ -79.334884643554688, -6.016522884368896 ], [ -79.333778381347599, -6.018966197967529 ], [ -79.332122802734375, -6.021577835082894 ], [ -79.328498840332031, -6.028878211975041 ], [ -79.327186584472599, -6.030584812164307 ], [ -79.326179504394531, -6.032485961914006 ], [ -79.322273254394531, -6.037279129028263 ], [ -79.321914672851562, -6.039132118225098 ], [ -79.321281433105412, -6.040472030639648 ], [ -79.320617675781193, -6.041324138641301 ], [ -79.31964111328125, -6.041983127593937 ], [ -79.318817138671818, -6.042088031768799 ], [ -79.314598083496037, -6.04055118560791 ], [ -79.312736511230469, -6.039583206176701 ], [ -79.311447143554688, -6.036734104156437 ], [ -79.311424255371094, -6.034153938293457 ], [ -79.311904907226562, -6.032978057861328 ], [ -79.312942504882812, -6.032285213470459 ], [ -79.314216613769474, -6.031904220581055 ], [ -79.315422058105469, -6.030127048492432 ], [ -79.315635681152344, -6.029492855072021 ], [ -79.315940856933537, -6.024528980255127 ], [ -79.319000244140568, -6.02027416229248 ], [ -79.320388793945312, -6.016483783721867 ], [ -79.321365356445312, -6.014861106872559 ], [ -79.321655273437443, -6.011260032653809 ], [ -79.3214111328125, -6.002620220184269 ], [ -79.321922302246094, -6.001777172088509 ], [ -79.322349548339787, -6.000148773193303 ], [ -79.322296142578125, -5.997965812683105 ], [ -79.321395874023381, -5.996692180633488 ], [ -79.32000732421875, -5.996026039123535 ], [ -79.31683349609375, -5.991055011749268 ], [ -79.315948486328068, -5.990781784057617 ], [ -79.312469482421875, -5.990863800048828 ], [ -79.310897827148381, -5.990344047546387 ], [ -79.308135986328068, -5.988047122955322 ], [ -79.306816101074219, -5.985729217529297 ], [ -79.30572509765625, -5.984628200530949 ], [ -79.302528381347656, -5.984772205352783 ], [ -79.297523498535156, -5.986308097839299 ], [ -79.295463562011605, -5.985991001129094 ], [ -79.294548034667969, -5.986159801483154 ], [ -79.293037414550781, -5.987687110900822 ], [ -79.292549133300781, -5.988530158996525 ], [ -79.290885925292855, -5.989833831787053 ], [ -79.288589477539006, -5.991168975830021 ], [ -79.284973144531136, -5.992143154144287 ], [ -79.284065246582031, -5.993061065673828 ], [ -79.281692504882812, -5.994027137756348 ], [ -79.279235839843693, -5.996231079101506 ], [ -79.278091430664006, -5.996490955352783 ], [ -79.273101806640625, -5.998805046081486 ], [ -79.270759582519474, -5.999273777007943 ], [ -79.268417358398438, -6.001051902770996 ], [ -79.266891479492188, -6.001126766204777 ], [ -79.266258239746037, -6.001463890075627 ], [ -79.26385498046875, -6.001780986785889 ], [ -79.263488769531193, -6.005122184753418 ], [ -79.265159606933594, -6.007030010223389 ], [ -79.265251159667969, -6.008240222930908 ], [ -79.266151428222599, -6.010063171386662 ], [ -79.266357421874943, -6.010982036590576 ], [ -79.26605224609375, -6.011993885040226 ], [ -79.264114379882812, -6.01387882232666 ], [ -79.263793945312443, -6.015748023986816 ], [ -79.266517639160156, -6.021436214446965 ], [ -79.266807556152344, -6.023040771484318 ], [ -79.266670227050781, -6.024086952209473 ], [ -79.265403747558537, -6.025297164916879 ], [ -79.262969970703125, -6.028511047363281 ], [ -79.261955261230412, -6.029438018798771 ], [ -79.26068115234375, -6.030124187469482 ], [ -79.259727478027344, -6.029942035675049 ], [ -79.258247375488224, -6.028494834899902 ], [ -79.257667541503849, -6.028271198272705 ], [ -79.256355285644474, -6.028309822082463 ], [ -79.253555297851562, -6.028983116149902 ], [ -79.251670837402287, -6.028986930847168 ], [ -79.249382019042912, -6.029779911041203 ], [ -79.247886657714844, -6.02984619140625 ], [ -79.247108459472599, -6.029744148254338 ], [ -79.245986938476562, -6.028985023498478 ], [ -79.244674682617188, -6.028725147247314 ], [ -79.243309020996094, -6.027879238128662 ], [ -79.241958618164006, -6.027943134307861 ], [ -79.240768432617188, -6.029541015624886 ], [ -79.238937377929688, -6.031332015991211 ], [ -79.238388061523438, -6.032265186309814 ], [ -79.238105773925781, -6.038962841033879 ], [ -79.237258911132756, -6.041531085968018 ], [ -79.235740661621037, -6.044556140899658 ], [ -79.233940124511662, -6.046521186828556 ], [ -79.231056213378849, -6.048967838287354 ], [ -79.228797912597599, -6.050663948059082 ], [ -79.227149963378849, -6.051253795623722 ], [ -79.226486206054631, -6.053110122680607 ], [ -79.225654602050668, -6.053802013397217 ], [ -79.225120544433594, -6.053895950317326 ], [ -79.224250793457031, -6.05472278594965 ], [ -79.223182678222656, -6.054912090301514 ], [ -79.222312927246037, -6.054440975189152 ], [ -79.220680236816349, -6.054615974426213 ], [ -79.219528198242131, -6.053777217864933 ], [ -79.2177734375, -6.051661968231201 ], [ -79.216888427734375, -6.049837112426758 ], [ -79.216896057128906, -6.049160003662053 ], [ -79.217414855957031, -6.048066139221078 ], [ -79.217552185058594, -6.047269821166992 ], [ -79.216972351074162, -6.04578685760498 ], [ -79.2154541015625, -6.044047832489014 ], [ -79.214027404785156, -6.042820930480843 ], [ -79.212631225585938, -6.042317867279053 ], [ -79.21185302734375, -6.042360782623234 ], [ -79.211189270019531, -6.041679859161377 ], [ -79.210502624511719, -6.0400710105896 ], [ -79.210594177246094, -6.036036968231201 ], [ -79.210128784179688, -6.033784866332894 ], [ -79.209648132324219, -6.032993793487549 ], [ -79.208251953125, -6.032166957855225 ], [ -79.207183837890625, -6.030955791473332 ], [ -79.206512451171875, -6.029490947723389 ], [ -79.205856323242188, -6.026609897613469 ], [ -79.204383850097599, -6.024510860443058 ], [ -79.20306396484375, -6.023816108703556 ], [ -79.201904296874943, -6.023508071899414 ], [ -79.200599670410156, -6.023860931396484 ], [ -79.197105407714787, -6.023825168609619 ], [ -79.191162109375, -6.024963855743351 ], [ -79.189796447753793, -6.025534152984619 ], [ -79.188865661621094, -6.025578022003174 ], [ -79.187553405761719, -6.026264190673771 ], [ -79.186172485351449, -6.027592182159424 ], [ -79.185691833496037, -6.028354167938176 ], [ -79.185867309570256, -6.031166076660156 ], [ -79.185440063476562, -6.03125 ], [ -79.184234619140568, -6.030664920806885 ], [ -79.18341064453125, -6.030742168426457 ], [ -79.182937622070312, -6.031981945037785 ], [ -79.182327270507756, -6.032700061797982 ], [ -79.180809020996037, -6.033541202545166 ], [ -79.178657531738281, -6.035760879516545 ], [ -79.177947998046818, -6.036152839660645 ], [ -79.177536010742188, -6.036129951476994 ], [ -79.176490783691406, -6.036986827850342 ], [ -79.176101684570312, -6.037818908691349 ], [ -79.175872802734261, -6.039779186248779 ], [ -79.175918579101562, -6.04088020324707 ], [ -79.176361083984375, -6.041597843170109 ], [ -79.179885864257812, -6.043918132781926 ], [ -79.183464050292969, -6.047767162322998 ], [ -79.184341430664006, -6.049114227294922 ], [ -79.185287475585881, -6.051497936248779 ], [ -79.186454772949162, -6.053619861602783 ], [ -79.189743041992188, -6.058176040649357 ], [ -79.189338684082031, -6.0589280128479 ], [ -79.187866210937443, -6.059868812560978 ], [ -79.185676574706974, -6.061880111694336 ], [ -79.184761047363281, -6.063645839691162 ], [ -79.183769226074162, -6.066739082336369 ], [ -79.1837158203125, -6.067940235137939 ], [ -79.182846069335938, -6.070916175842285 ], [ -79.182609558105412, -6.072793960571289 ], [ -79.184486389160156, -6.077102184295597 ], [ -79.184806823730412, -6.078569889068604 ], [ -79.184829711914006, -6.079905033111572 ], [ -79.184135437011662, -6.081361770629826 ], [ -79.182052612304631, -6.08364295959467 ], [ -79.181037902832031, -6.085717201232853 ], [ -79.180915832519474, -6.087034225463867 ], [ -79.181312561035156, -6.088746070861816 ], [ -79.182044982910099, -6.089724063873291 ], [ -79.185142517089844, -6.091351032256966 ], [ -79.188507080078125, -6.094446182250977 ], [ -79.190284729003906, -6.095128059387207 ], [ -79.192642211914006, -6.094685077667179 ], [ -79.194351196289006, -6.095014095306396 ], [ -79.195472717285156, -6.09576416015625 ], [ -79.196426391601562, -6.09708309173584 ], [ -79.197235107421761, -6.09778976440424 ], [ -79.198783874511719, -6.098916053771973 ], [ -79.200210571289062, -6.099615097045898 ], [ -79.2015380859375, -6.09980392456049 ], [ -79.204788208007812, -6.099724769592228 ], [ -79.210792541503906, -6.098902225494328 ], [ -79.211288452148438, -6.099007129669189 ], [ -79.212287902831974, -6.099720001220646 ], [ -79.215065002441349, -6.096803188323918 ], [ -79.218116760253849, -6.094829082488957 ], [ -79.220817565917969, -6.092616081237736 ], [ -79.223678588867188, -6.091151237487793 ], [ -79.226219177246037, -6.090787887573185 ], [ -79.2286376953125, -6.090886116027718 ], [ -79.229942321777287, -6.091217041015568 ], [ -79.233062744140568, -6.092810153961125 ], [ -79.236122131347599, -6.092874050140324 ], [ -79.236129760742131, -6.093316078186035 ], [ -79.234977722167912, -6.095292091369629 ], [ -79.234703063964787, -6.097307205200195 ], [ -79.2352294921875, -6.099802017211914 ], [ -79.236297607421875, -6.1025710105896 ], [ -79.238296508789062, -6.10457706451416 ], [ -79.241722106933594, -6.105731964111271 ], [ -79.243537902832031, -6.107332229614258 ], [ -79.244918823242074, -6.109333992004395 ], [ -79.246414184570256, -6.113039016723633 ], [ -79.249122619628906, -6.116896152496338 ], [ -79.250564575195312, -6.120223045349121 ], [ -79.252670288085938, -6.122317790985051 ], [ -79.253822326660156, -6.124735832214355 ], [ -79.256782531738281, -6.127308845519963 ], [ -79.257469177246094, -6.128719806671086 ], [ -79.25807952880848, -6.13096284866333 ], [ -79.259239196777344, -6.139513969421387 ], [ -79.260108947753906, -6.141178131103516 ], [ -79.262351989746037, -6.143314838409367 ], [ -79.265686035156193, -6.145092964172363 ], [ -79.267883300781193, -6.145688056945744 ], [ -79.268814086914062, -6.145671844482365 ], [ -79.269691467285099, -6.145329952239933 ], [ -79.271041870117131, -6.145410060882568 ], [ -79.272171020507756, -6.145943164825439 ], [ -79.272651672363224, -6.146408081054688 ], [ -79.272682189941406, -6.149213790893555 ], [ -79.273147583007699, -6.150328159332219 ], [ -79.2734375, -6.153680801391602 ], [ -79.274490356445312, -6.156007766723633 ], [ -79.274787902832031, -6.157703876495304 ], [ -79.273902893066349, -6.159811973571777 ], [ -79.274032592773438, -6.161832809448185 ], [ -79.273574829101562, -6.163235187530461 ], [ -79.273544311523438, -6.166075229644775 ], [ -79.273315429687443, -6.167242050170898 ], [ -79.272224426269531, -6.16895580291748 ], [ -79.269889831542912, -6.170968055725041 ], [ -79.26910400390625, -6.172688961028996 ], [ -79.268516540527344, -6.174903869628906 ], [ -79.26556396484375, -6.178925037384033 ], [ -79.265312194824162, -6.180225849151554 ], [ -79.265129089355412, -6.185748100280762 ], [ -79.264732360839787, -6.186715126037541 ], [ -79.263412475585881, -6.188683986663818 ], [ -79.263175964355469, -6.192699909210148 ], [ -79.261886596679631, -6.195373058318978 ], [ -79.25960540771473, -6.198178768157902 ], [ -79.258575439453125, -6.20441198348999 ], [ -79.257164001464844, -6.209187030792236 ], [ -79.255607604980469, -6.213503837585449 ], [ -79.254646301269418, -6.215414047241211 ], [ -79.252914428710881, -6.217305183410645 ], [ -79.251136779785156, -6.220314025878906 ], [ -79.249214172363281, -6.221780776977539 ], [ -79.249359130859375, -6.224081039428711 ], [ -79.2496337890625, -6.224971771240234 ], [ -79.250137329101506, -6.225409984588566 ], [ -79.251182556152287, -6.225708007812443 ], [ -79.251983642578125, -6.226432800292969 ], [ -79.252952575683594, -6.226912021636906 ], [ -79.254829406738224, -6.226807117462158 ], [ -79.257484436035099, -6.225514888763428 ], [ -79.260505676269531, -6.224820137023926 ], [ -79.264129638671875, -6.224612236022892 ], [ -79.267906188964844, -6.224743843078613 ], [ -79.270027160644531, -6.225042819976807 ], [ -79.272453308105412, -6.225879192352238 ], [ -79.273674011230469, -6.226717948913517 ], [ -79.276802062988281, -6.22795581817627 ], [ -79.278381347656193, -6.228997230529785 ], [ -79.279380798339844, -6.230179786682129 ], [ -79.27630615234375, -6.232269763946476 ], [ -79.276473999023381, -6.236148834228516 ], [ -79.275886535644474, -6.237497806549015 ], [ -79.275871276855469, -6.238447189331055 ], [ -79.276329040527344, -6.239415168762207 ], [ -79.278663635253849, -6.241444110870304 ], [ -79.279335021972599, -6.243496894836426 ], [ -79.2801513671875, -6.244192123413086 ], [ -79.281654357910156, -6.2464280128479 ], [ -79.282859802246037, -6.249213218688908 ], [ -79.283721923828068, -6.252878189086914 ], [ -79.284111022949162, -6.253589153289795 ], [ -79.285224914550724, -6.254751205444222 ], [ -79.292205810546818, -6.259323120117188 ], [ -79.297378540039062, -6.264610767364445 ], [ -79.301605224609375, -6.266715049743652 ], [ -79.303901672363281, -6.268788814544678 ], [ -79.306655883789062, -6.269443035125676 ], [ -79.307716369628906, -6.269336223602295 ], [ -79.309181213378849, -6.268358230590763 ], [ -79.311256408691406, -6.266067028045654 ], [ -79.312004089355469, -6.265798091888371 ], [ -79.313842773437443, -6.264233112335148 ], [ -79.315826416015625, -6.263376235961914 ], [ -79.318878173828125, -6.262764930725098 ], [ -79.321647644042969, -6.263150215148926 ], [ -79.325286865234318, -6.2641921043396 ], [ -79.326225280761719, -6.264736175537109 ], [ -79.327407836914006, -6.264986991882324 ], [ -79.329238891601562, -6.2658371925354 ], [ -79.331703186035043, -6.267216205596924 ], [ -79.332389831542969, -6.268065929412842 ], [ -79.332489013671875, -6.268976211547852 ], [ -79.334236145019531, -6.272336959838867 ], [ -79.335433959960938, -6.274130821227971 ], [ -79.338417053222656, -6.275667190551758 ], [ -79.341682434081974, -6.276496887207031 ], [ -79.341911315917969, -6.278289794921875 ], [ -79.345382690429688, -6.281859874725285 ], [ -79.345741271972656, -6.283174991607609 ], [ -79.345779418945312, -6.284805774688721 ], [ -79.344337463378906, -6.287209033966008 ], [ -79.344291687011605, -6.287759780883789 ], [ -79.345252990722656, -6.289050102233887 ], [ -79.346603393554688, -6.289931774139404 ], [ -79.347549438476562, -6.292160987854004 ], [ -79.349159240722656, -6.294493198394775 ], [ -79.349441528320199, -6.295536994934025 ], [ -79.351638793945312, -6.297908782958984 ], [ -79.352157592773438, -6.301351070403996 ], [ -79.352806091308594, -6.302987098693848 ], [ -79.353332519531193, -6.3035888671875 ], [ -79.353851318359375, -6.303754806518498 ], [ -79.356674194335881, -6.303658962249699 ], [ -79.35931396484375, -6.304241180419922 ], [ -79.361503601074219, -6.303446769714355 ], [ -79.364311218261662, -6.303163051605168 ], [ -79.36566162109375, -6.302563190460148 ], [ -79.366554260253906, -6.301744937896672 ], [ -79.367828369140568, -6.301328182220459 ], [ -79.369743347167912, -6.299824237823373 ], [ -79.3720703125, -6.299190044403076 ], [ -79.374092102050781, -6.299156188964844 ], [ -79.375961303710938, -6.29945707321167 ], [ -79.379386901855355, -6.30080604553217 ], [ -79.380386352539062, -6.300996780395451 ], [ -79.381248474121094, -6.300610065460205 ], [ -79.3837890625, -6.29857683181757 ], [ -79.385749816894474, -6.298119068145752 ], [ -79.388862609863281, -6.299033164978027 ], [ -79.392616271972599, -6.301401138305664 ], [ -79.397422790527344, -6.305084228515625 ], [ -79.398574829101562, -6.30675220489502 ], [ -79.399200439453068, -6.308081150054932 ], [ -79.400497436523438, -6.309261798858586 ], [ -79.402816772460881, -6.310622215270996 ], [ -79.404396057128906, -6.310959815978947 ], [ -79.406196594238281, -6.312153816223145 ], [ -79.407356262207031, -6.312458992004395 ], [ -79.408515930175781, -6.312063217163029 ], [ -79.409103393554688, -6.311758995056152 ], [ -79.410278320312443, -6.310458183288517 ], [ -79.411605834960881, -6.309536933898869 ], [ -79.413375854492188, -6.308907985687142 ], [ -79.415229797363224, -6.308549880981445 ], [ -79.418716430664062, -6.308835029602051 ], [ -79.421875, -6.309999942779541 ], [ -79.423667907714844, -6.31096887588501 ], [ -79.424263000488281, -6.311837196350041 ], [ -79.424995422363281, -6.314436912536621 ], [ -79.427040100097599, -6.316394805908146 ], [ -79.427284240722656, -6.316872119903508 ], [ -79.427314758300781, -6.318756103515568 ], [ -79.426086425781193, -6.324132919311523 ], [ -79.426078796386719, -6.325224876403752 ], [ -79.426467895507756, -6.326793193817139 ], [ -79.427200317382812, -6.328228950500431 ], [ -79.430023193359318, -6.332272052764893 ], [ -79.434898376464844, -6.340493202209473 ], [ -79.436836242675781, -6.34324312210083 ], [ -79.437660217285156, -6.345231056213265 ], [ -79.43902587890625, -6.347067832946721 ], [ -79.439384460449219, -6.34836483001709 ], [ -79.441505432128906, -6.350030899047852 ], [ -79.442466735839844, -6.351801872253418 ], [ -79.444183349609375, -6.353310108184758 ], [ -79.445037841796875, -6.354529857635441 ], [ -79.445159912109318, -6.355618953704777 ], [ -79.443588256835938, -6.356815814971924 ], [ -79.442962646484318, -6.358345031738224 ], [ -79.442901611328011, -6.359004020690861 ], [ -79.444175720214844, -6.360895156860238 ], [ -79.444084167480469, -6.362834930419865 ], [ -79.444297790527287, -6.363383769988957 ], [ -79.445869445800781, -6.364262104034367 ], [ -79.447906494140625, -6.364956855773869 ], [ -79.449180603027287, -6.366344928741455 ], [ -79.449317932128906, -6.367561817169189 ], [ -79.44781494140625, -6.369287014007568 ], [ -79.447769165039062, -6.369792938232365 ], [ -79.447479248046761, -6.370076179504395 ], [ -79.446098327636719, -6.373823165893555 ], [ -79.446540832519531, -6.378652095794678 ], [ -79.446304321289006, -6.380801200866699 ], [ -79.447097778320199, -6.382660865783691 ], [ -79.447128295898438, -6.385076999664307 ], [ -79.448257446289062, -6.386946201324463 ], [ -79.448478698730469, -6.387707233428955 ], [ -79.448448181152344, -6.389206886291504 ], [ -79.447731018066349, -6.392154216766357 ], [ -79.4476318359375, -6.393470764160156 ], [ -79.448089599609375, -6.395397186279297 ], [ -79.450119018554631, -6.400763988494816 ], [ -79.450408935546818, -6.405098915100041 ], [ -79.450164794921875, -6.406688213348332 ], [ -79.448890686035099, -6.409523010253906 ], [ -79.447853088378849, -6.411263942718506 ], [ -79.447380065917912, -6.413406848907357 ], [ -79.446861267089844, -6.414284229278564 ], [ -79.445251464843693, -6.415335178375187 ], [ -79.442741394042969, -6.416286945343018 ], [ -79.441734313964787, -6.416953086853027 ], [ -79.43965911865223, -6.417494773864746 ], [ -79.438636779785156, -6.418153762817383 ], [ -79.43646240234375, -6.420761108398438 ], [ -79.434432983398438, -6.425621032714844 ], [ -79.431716918945256, -6.4285950660705 ], [ -79.431228637695312, -6.429699897766056 ], [ -79.430793762207031, -6.431561946868896 ], [ -79.430633544921875, -6.434412956237736 ], [ -79.428077697753906, -6.437492847442627 ], [ -79.427688598632812, -6.443295001983643 ], [ -79.424880981445312, -6.44956111907959 ], [ -79.423988342285099, -6.452960968017521 ], [ -79.42376708984375, -6.454974174499512 ], [ -79.422760009765568, -6.457345962524414 ], [ -79.422332763671875, -6.459163188934326 ], [ -79.422203063964787, -6.461607933044377 ], [ -79.422370910644474, -6.46376180648798 ], [ -79.423324584960881, -6.467433929443303 ], [ -79.424476623535099, -6.470032215118351 ], [ -79.426231384277344, -6.472423076629639 ], [ -79.427421569824162, -6.474695205688477 ], [ -79.429962158203125, -6.477127075195312 ], [ -79.431259155273381, -6.479018211364746 ], [ -79.433212280273438, -6.48029899597168 ], [ -79.4300537109375, -6.482601165771428 ], [ -79.428741455078125, -6.483936786651611 ], [ -79.427688598632812, -6.48670578002924 ], [ -79.425544738769418, -6.488925933837777 ], [ -79.423133850097599, -6.492672920227051 ], [ -79.422653198242131, -6.494047164916992 ], [ -79.422302246093636, -6.497180938720703 ], [ -79.421958923339844, -6.498438835143929 ], [ -79.420478820800724, -6.499831199645996 ], [ -79.418663024902287, -6.502597808837891 ], [ -79.416656494140568, -6.505032062530461 ], [ -79.416267395019474, -6.50588321685791 ], [ -79.417579650878906, -6.509119033813477 ], [ -79.417900085449162, -6.516133785247746 ], [ -79.418380737304631, -6.517085075378418 ], [ -79.418472290039006, -6.518842220306396 ], [ -79.4188232421875, -6.519948959350529 ], [ -79.419143676757756, -6.52508020401001 ], [ -79.419326782226506, -6.526133060455322 ], [ -79.420295715331974, -6.528090000152588 ], [ -79.420478820800724, -6.528999805450439 ], [ -79.420616149902344, -6.534690856933537 ], [ -79.420173645019474, -6.535531997680664 ], [ -79.4188232421875, -6.536870002746582 ], [ -79.418113708496094, -6.537237167358398 ], [ -79.416893005371094, -6.537392139434814 ], [ -79.416297912597656, -6.537063121795597 ], [ -79.415618896484318, -6.536996841430664 ], [ -79.412200927734375, -6.538265228271484 ], [ -79.410682678222656, -6.539133071899357 ], [ -79.409378051757812, -6.540327072143555 ], [ -79.408004760742188, -6.541213989257812 ], [ -79.40667724609375, -6.541405200958252 ], [ -79.405067443847656, -6.541202068328857 ], [ -79.403770446777287, -6.540709972381592 ], [ -79.402496337890625, -6.539754867553711 ], [ -79.401321411132699, -6.536283969879094 ], [ -79.400032043457031, -6.5346999168396 ], [ -79.398582458496094, -6.533513069152832 ], [ -79.397109985351506, -6.532901763916016 ], [ -79.393669128417912, -6.532049179077092 ], [ -79.392059326171818, -6.531882762908936 ], [ -79.390541076660099, -6.53208589553833 ], [ -79.389587402343693, -6.531723022460881 ], [ -79.38625335693348, -6.529154777526855 ], [ -79.382034301757756, -6.524789810180664 ], [ -79.37982177734375, -6.523246765136662 ], [ -79.377998352050781, -6.522453784942627 ], [ -79.37709808349598, -6.522199153900146 ], [ -79.374267578125, -6.522205829620304 ], [ -79.370918273925781, -6.521171092987061 ], [ -79.369705200195312, -6.52118015289301 ], [ -79.369361877441349, -6.521770000457764 ], [ -79.36946868896473, -6.524061203002873 ], [ -79.369140625, -6.526625156402531 ], [ -79.367233276367188, -6.530035018920898 ], [ -79.366653442382812, -6.532113075256348 ], [ -79.366676330566349, -6.534692764282227 ], [ -79.36712646484375, -6.536664962768555 ], [ -79.367202758789062, -6.538153171539307 ], [ -79.366043090820312, -6.542599201202336 ], [ -79.365867614746094, -6.544476985931396 ], [ -79.366004943847599, -6.546642780303955 ], [ -79.366661071777344, -6.549956798553467 ], [ -79.366569519042969, -6.551578998565617 ], [ -79.365821838378849, -6.553308963775635 ], [ -79.364227294921875, -6.555424213409424 ], [ -79.360603332519531, -6.559416770935059 ], [ -79.357658386230469, -6.562174797058105 ], [ -79.357551574707031, -6.562980175018254 ], [ -79.358222961425781, -6.563838958740234 ], [ -79.357650756835938, -6.564745903015137 ], [ -79.357749938964844, -6.565286159515381 ], [ -79.36065673828125, -6.567850112915039 ], [ -79.360054016113281, -6.568395137786808 ], [ -79.358970642089787, -6.56786584854126 ], [ -79.358161926269531, -6.567934036254826 ], [ -79.356712341308594, -6.569138050079289 ], [ -79.352821350097656, -6.56964111328125 ], [ -79.351448059082031, -6.570104122161808 ], [ -79.349143981933537, -6.571774959564209 ], [ -79.347358703613281, -6.573612213134652 ], [ -79.346359252929631, -6.575821876525822 ], [ -79.345916748046875, -6.577523231506291 ], [ -79.346443176269531, -6.583578109741097 ], [ -79.343765258789062, -6.585586071014347 ], [ -79.342796325683594, -6.586884975433293 ], [ -79.342567443847599, -6.587653160095215 ], [ -79.342765808105355, -6.589591026306096 ], [ -79.342636108398381, -6.590331077575684 ], [ -79.341041564941349, -6.591994762420597 ], [ -79.33966064453125, -6.595211029052734 ], [ -79.336410522460938, -6.600642204284611 ], [ -79.336090087890511, -6.60166597366333 ], [ -79.33599853515625, -6.603534221649113 ], [ -79.339141845703011, -6.604272842407113 ], [ -79.341529846191406, -6.60580396652216 ], [ -79.342689514160156, -6.606162071228027 ], [ -79.343757629394531, -6.606983184814396 ], [ -79.345130920410099, -6.607559204101506 ], [ -79.346138000488281, -6.608461856841984 ], [ -79.346946716308537, -6.609842777252197 ], [ -79.347282409667969, -6.612960815429688 ], [ -79.347595214843693, -6.613949775695744 ], [ -79.348709106445312, -6.614986896514836 ], [ -79.350357055664062, -6.615550041198617 ], [ -79.351600646972599, -6.616584777832031 ], [ -79.351943969726562, -6.617609977722168 ], [ -79.353485107421875, -6.619482040405273 ], [ -79.354408264160156, -6.621142864227295 ], [ -79.354759216308537, -6.62214994430542 ], [ -79.354904174804688, -6.623771190643311 ], [ -79.355529785156193, -6.625120162963867 ], [ -79.357856750488281, -6.627363204956055 ], [ -79.361068725585881, -6.631855010986271 ], [ -79.362724304199219, -6.633228778838998 ], [ -79.362876892089787, -6.634437084197941 ], [ -79.36273193359375, -6.635495185851994 ], [ -79.361335754394474, -6.637643814086857 ], [ -79.359375, -6.639283180236816 ], [ -79.358245849609375, -6.639727115631047 ], [ -79.35479736328125, -6.640326976776066 ], [ -79.353469848632812, -6.640960216522217 ], [ -79.352737426757812, -6.641931056976205 ], [ -79.351203918457031, -6.645670890808049 ], [ -79.350540161132812, -6.646352767944336 ], [ -79.349693298339787, -6.646776199340763 ], [ -79.348342895507812, -6.646903991699219 ], [ -79.347206115722656, -6.646472930908089 ], [ -79.345718383789006, -6.646358966827336 ], [ -79.344924926757756, -6.646457195281926 ], [ -79.343986511230412, -6.647006988525391 ], [ -79.3427734375, -6.647069931030217 ], [ -79.337905883789062, -6.64548921585083 ], [ -79.3350830078125, -6.645243167877197 ], [ -79.332199096679688, -6.644566059112492 ], [ -79.331016540527287, -6.643937110900879 ], [ -79.330368041992074, -6.642742156982365 ], [ -79.328956604003906, -6.642735958099365 ], [ -79.326850891113281, -6.640264987945557 ], [ -79.325378417968693, -6.640044212341252 ], [ -79.323966979980412, -6.641481876373291 ], [ -79.323753356933537, -6.643088817596379 ], [ -79.3228759765625, -6.645493030548096 ], [ -79.322113037109375, -6.646448135375977 ], [ -79.321250915527344, -6.647086143493596 ], [ -79.319297790527287, -6.64762020111084 ], [ -79.315155029296875, -6.648159980773926 ], [ -79.310585021972656, -6.649779796600285 ], [ -79.305877685546875, -6.650947093963623 ], [ -79.302543640136719, -6.652403831481934 ], [ -79.301597595214844, -6.653131008148193 ], [ -79.300735473632812, -6.654674053192139 ], [ -79.300178527832031, -6.659071922302246 ], [ -79.298500061035099, -6.661703109741211 ], [ -79.298126220703068, -6.662677764892521 ], [ -79.298233032226562, -6.664185047149658 ], [ -79.298927307128906, -6.665341854095459 ], [ -79.299079895019474, -6.666831016540471 ], [ -79.29901123046875, -6.66735315322876 ], [ -79.298225402831974, -6.668920993804875 ], [ -79.298683166503849, -6.672130107879639 ], [ -79.298606872558537, -6.673617839813176 ], [ -79.298118591308537, -6.674598217010498 ], [ -79.297477722167969, -6.675288200378418 ], [ -79.294998168945312, -6.676012992858773 ], [ -79.294204711914006, -6.676011085510254 ], [ -79.289131164550781, -6.677780151367188 ], [ -79.284675598144474, -6.677925109863224 ], [ -79.283622741699162, -6.677690982818547 ], [ -79.280792236328125, -6.677625179290771 ], [ -79.272804260253906, -6.679534912109318 ], [ -79.270378112792912, -6.679591178894043 ], [ -79.268943786621037, -6.679234027862549 ], [ -79.263694763183537, -6.67907190322876 ], [ -79.256866455078125, -6.678283214569035 ], [ -79.253860473632756, -6.676694869995117 ], [ -79.252784729003906, -6.676667213439941 ], [ -79.252052307128849, -6.676087856292725 ], [ -79.250984191894531, -6.675889968872013 ], [ -79.247322082519531, -6.673151016235352 ], [ -79.243309020996094, -6.672004222869816 ], [ -79.241012573242188, -6.671881198883 ], [ -79.237533569335938, -6.672911167144775 ], [ -79.235252380371037, -6.673184871673527 ], [ -79.233932495117131, -6.673005104064885 ], [ -79.231201171875, -6.672200202941895 ], [ -79.228790283203068, -6.671922206878662 ], [ -79.227371215820199, -6.671510219573975 ], [ -79.226043701171875, -6.671738147735539 ], [ -79.224296569824162, -6.671617031097412 ], [ -79.223342895507756, -6.672122955322209 ], [ -79.22265625, -6.672786235809326 ], [ -79.222389221191349, -6.673953056335449 ], [ -79.222877502441349, -6.675347805023193 ], [ -79.222976684570256, -6.677908897399846 ], [ -79.22332763671875, -6.678304195404053 ], [ -79.223426818847599, -6.680051803588867 ], [ -79.224121093749943, -6.681950092315617 ], [ -79.223846435546875, -6.684352874755859 ], [ -79.223297119140625, -6.686729907989388 ], [ -79.221290588378906, -6.689606189727783 ], [ -79.216712951660156, -6.692667007446232 ], [ -79.214118957519531, -6.695044040679875 ], [ -79.213478088378906, -6.695158004760629 ], [ -79.21240234375, -6.694969177246094 ], [ -79.207908630371037, -6.692805767059269 ], [ -79.206817626953125, -6.69200420379633 ], [ -79.205490112304688, -6.691834926605225 ], [ -79.200759887695256, -6.691748142242432 ], [ -79.198448181152287, -6.692861080169678 ], [ -79.196968078613281, -6.692963123321533 ], [ -79.196434020996094, -6.693346023559457 ], [ -79.195846557617188, -6.6944260597229 ], [ -79.196067810058537, -6.696436882019043 ], [ -79.195968627929631, -6.698988914489689 ], [ -79.1947021484375, -6.704233169555664 ], [ -79.194084167480412, -6.709037780761719 ], [ -79.192291259765625, -6.713700771331787 ], [ -79.191520690917969, -6.71478080749506 ], [ -79.190460205078068, -6.715394020080566 ], [ -79.189376831054688, -6.715366840362549 ], [ -79.186904907226506, -6.714450836181584 ], [ -79.185150146484375, -6.714438915252629 ], [ -79.183959960937443, -6.714177131652775 ], [ -79.180549621582031, -6.712014198303109 ], [ -79.177909851074219, -6.710656166076603 ], [ -79.175003051757756, -6.708036899566594 ], [ -79.173576354980412, -6.705586910247803 ], [ -79.172134399414006, -6.703993797302246 ], [ -79.171661376953068, -6.702589988708439 ], [ -79.1707763671875, -6.701957225799504 ], [ -79.169692993164062, -6.701920032501221 ], [ -79.168121337890568, -6.70228719711298 ], [ -79.162124633789006, -6.704700946807861 ], [ -79.159423828125, -6.704822063445988 ], [ -79.153976440429688, -6.703914165496826 ], [ -79.151054382324162, -6.702890872955265 ], [ -79.148933410644531, -6.702457904815617 ], [ -79.144004821777287, -6.699693202972355 ], [ -79.142791748046875, -6.699550151824894 ], [ -79.142036437988281, -6.699819087982064 ], [ -79.141151428222599, -6.701179027557316 ], [ -79.141075134277344, -6.703056812286377 ], [ -79.14251708984375, -6.711850166320801 ], [ -79.142524719238281, -6.713159084320012 ], [ -79.143051147460881, -6.715112209320068 ], [ -79.143280029296875, -6.718331813812256 ], [ -79.143066406249886, -6.718846797943115 ], [ -79.142463684081974, -6.719376087188721 ], [ -79.140480041503849, -6.720269203186035 ], [ -79.139152526855412, -6.721154212951603 ], [ -79.137428283691349, -6.723056793212891 ], [ -79.136436462402344, -6.725119113922119 ], [ -79.136077880859318, -6.72737979888916 ], [ -79.1361083984375, -6.729148864746037 ], [ -79.136428833007812, -6.730579853057804 ], [ -79.137649536132812, -6.733880043029785 ], [ -79.138908386230469, -6.736414909362793 ], [ -79.138946533203068, -6.738290786743164 ], [ -79.137763977050781, -6.74041223526001 ], [ -79.135101318359375, -6.742898941040039 ], [ -79.133926391601562, -6.744359970092717 ], [ -79.130783081054688, -6.749379158019963 ], [ -79.130241394042969, -6.751474857330322 ], [ -79.129409790039006, -6.757337093353271 ], [ -79.127136230468693, -6.76508903503418 ], [ -79.125518798828011, -6.767964839935303 ], [ -79.122840881347599, -6.771172046661377 ], [ -79.122177124023381, -6.773767948150635 ], [ -79.121826171875, -6.77726221084589 ], [ -79.122238159179688, -6.779650211334172 ], [ -79.123588562011662, -6.781667232513428 ], [ -79.126441955566349, -6.784342765808049 ], [ -79.132217407226562, -6.786601066589355 ], [ -79.136505126953125, -6.786547183990479 ], [ -79.141532897949162, -6.787534236907902 ], [ -79.145606994628849, -6.788959980010929 ], [ -79.148880004882756, -6.790565013885498 ], [ -79.155273437499886, -6.795944213867188 ], [ -79.155555725097599, -6.796560764312744 ], [ -79.157142639160156, -6.798038005828857 ], [ -79.158096313476562, -6.800411224365234 ], [ -79.158775329589787, -6.801072120666447 ], [ -79.159431457519531, -6.801084995269775 ], [ -79.160995483398324, -6.800305843353215 ], [ -79.161674499511719, -6.800217151641732 ], [ -79.163726806640568, -6.801762104034424 ], [ -79.164596557617131, -6.801734924316406 ], [ -79.166595458984318, -6.801104068756047 ], [ -79.168212890624943, -6.801109790802002 ], [ -79.168853759765625, -6.801327228546086 ], [ -79.170234680175724, -6.802427768707219 ], [ -79.170867919921875, -6.80258321762085 ], [ -79.172943115234375, -6.801962852477971 ], [ -79.174781799316406, -6.800844192504883 ], [ -79.175437927246094, -6.800848007202148 ], [ -79.176025390625, -6.801420211791992 ], [ -79.17620849609375, -6.802348136901799 ], [ -79.177101135253849, -6.803884029388428 ], [ -79.18017578125, -6.805211067199707 ], [ -79.182090759277344, -6.806701183319092 ], [ -79.184242248535099, -6.808756828308049 ], [ -79.184783935546875, -6.809844017028809 ], [ -79.185874938964787, -6.810853958129883 ], [ -79.186195373535156, -6.811736106872559 ], [ -79.18695068359375, -6.812540054321232 ], [ -79.1868896484375, -6.814266204833984 ], [ -79.187187194824162, -6.814721107482853 ], [ -79.188743591308537, -6.815167903900146 ], [ -79.191032409667912, -6.815223217010498 ], [ -79.193679809570256, -6.815785884857064 ], [ -79.194267272949162, -6.816086769104004 ], [ -79.195526123046875, -6.81732177734375 ], [ -79.196586608886719, -6.817356109619084 ], [ -79.197433471679688, -6.818910121917668 ], [ -79.1998291015625, -6.819259166717472 ], [ -79.202018737792969, -6.821297168731689 ], [ -79.202751159667912, -6.8214430809021 ], [ -79.205223083496037, -6.82119607925415 ], [ -79.205970764160156, -6.82149696350092 ], [ -79.20623779296875, -6.822125911712646 ], [ -79.207359313964844, -6.826014995574894 ], [ -79.209396362304688, -6.829812049865723 ], [ -79.209846496582031, -6.831513881683293 ], [ -79.210609436035156, -6.833239078521672 ], [ -79.214294433593693, -6.838891983032227 ], [ -79.217353820800724, -6.842660903930607 ], [ -79.218521118164062, -6.84495210647583 ], [ -79.218803405761719, -6.845842838287297 ], [ -79.218894958496094, -6.847321987152043 ], [ -79.219909667968693, -6.850253105163574 ], [ -79.219917297363224, -6.851201057434082 ], [ -79.221527099609318, -6.85491418838501 ], [ -79.221855163574219, -6.856715202331486 ], [ -79.223121643066406, -6.857182025909424 ], [ -79.225685119628906, -6.858936786651554 ], [ -79.227958679199219, -6.859837055206299 ], [ -79.22967529296875, -6.86002779006958 ], [ -79.234275817871094, -6.859990119934025 ], [ -79.238754272460938, -6.860949039459229 ], [ -79.240768432617188, -6.860795974731388 ], [ -79.242256164550781, -6.860154151916504 ], [ -79.244216918945256, -6.859665870666504 ], [ -79.247314453125, -6.859439849853516 ], [ -79.249969482421818, -6.859893798828068 ], [ -79.253166198730469, -6.861345767974854 ], [ -79.254348754882756, -6.861550807952824 ], [ -79.260276794433594, -6.859738826751652 ], [ -79.262435913085881, -6.859846115112248 ], [ -79.264465332031193, -6.861172199249268 ], [ -79.268287658691406, -6.864981174468994 ], [ -79.271224975585881, -6.866401195526123 ], [ -79.272048950195312, -6.86706018447876 ], [ -79.272346496582031, -6.867698192596379 ], [ -79.272430419921875, -6.868625164031982 ], [ -79.272270202636662, -6.873244762420541 ], [ -79.272911071777344, -6.874783039092961 ], [ -79.274002075195256, -6.876152992248535 ], [ -79.276084899902287, -6.8776597976684 ], [ -79.279075622558594, -6.879211902618408 ], [ -79.289787292480469, -6.882904052734375 ], [ -79.298103332519474, -6.88472318649292 ], [ -79.299781799316406, -6.88558387756342 ], [ -79.300559997558594, -6.8866868019104 ], [ -79.300521850585938, -6.891396045684814 ], [ -79.300888061523381, -6.892556190490723 ], [ -79.301643371581974, -6.893847942352295 ], [ -79.303672790527344, -6.895833969116211 ], [ -79.30690765380848, -6.897500038146916 ], [ -79.310241699218693, -6.899815082550049 ], [ -79.311080932617131, -6.901034832000732 ], [ -79.311447143554688, -6.902890205383301 ], [ -79.310592651367131, -6.908759117126465 ], [ -79.310691833496037, -6.91481876373291 ], [ -79.310340881347543, -6.91722297668457 ], [ -79.310348510742188, -6.920182228088322 ], [ -79.309593200683594, -6.924563884735107 ], [ -79.308891296386662, -6.926023006439152 ], [ -79.307571411132756, -6.927903175353947 ], [ -79.304054260253906, -6.931238174438477 ], [ -79.301483154296875, -6.934352874755803 ], [ -79.301109313964844, -6.93578195571888 ], [ -79.300178527832031, -6.937414169311523 ], [ -79.299613952636719, -6.940116882324219 ], [ -79.299652099609318, -6.943490028381348 ], [ -79.300064086914062, -6.945462226867619 ], [ -79.300994873046761, -6.946951866149789 ], [ -79.303977966308594, -6.950613021850529 ], [ -79.305000305175668, -6.953256130218506 ], [ -79.305313110351562, -6.955680847167969 ], [ -79.305320739746094, -6.957962989807072 ], [ -79.304618835449105, -6.959718227386475 ], [ -79.303848266601506, -6.960666179656926 ], [ -79.303848266601506, -6.96226978302002 ], [ -79.30438232421875, -6.963212013244515 ], [ -79.307106018066406, -6.966184139251709 ], [ -79.306808471679631, -6.967232227325439 ], [ -79.306816101074219, -6.969263076782227 ], [ -79.305992126464844, -6.971679210662842 ], [ -79.305130004882812, -6.978089809417668 ], [ -79.303672790527344, -6.980964183807373 ], [ -79.302894592285099, -6.984099864959717 ], [ -79.301437377929631, -6.986196994781437 ], [ -79.300666809082031, -6.988361835479679 ], [ -79.300788879394474, -6.989298820495605 ], [ -79.302314758300724, -6.991188049316406 ], [ -79.302230834960881, -6.992505073547363 ], [ -79.301094055175781, -6.994806766509953 ], [ -79.29949951171875, -6.996455192565918 ], [ -79.299125671386719, -6.997161865234375 ], [ -79.296722412109375, -6.999321937560978 ], [ -79.296524047851562, -6.999749183654785 ], [ -79.296531677246094, -7.001218795776367 ], [ -79.297187805175781, -7.002690792083683 ], [ -79.299545288085881, -7.004608154296875 ], [ -79.305061340331974, -7.006343841552734 ], [ -79.307937622070256, -7.008076190948486 ], [ -79.30963134765625, -7.010515213012638 ], [ -79.310874938964844, -7.015337944030762 ], [ -79.311614990234375, -7.016929149627629 ], [ -79.312187194824219, -7.017274856567326 ], [ -79.313804626464844, -7.017151832580566 ], [ -79.314460754394531, -7.017336845397949 ], [ -79.315811157226562, -7.018442153930607 ], [ -79.319496154785043, -7.020401954650822 ], [ -79.320465087890625, -7.02170991897583 ], [ -79.322013854980469, -7.024844169616642 ], [ -79.322891235351562, -7.025819778442383 ], [ -79.323806762695312, -7.025594234466439 ], [ -79.326004028320312, -7.026196002960205 ], [ -79.327888488769418, -7.025927066802979 ], [ -79.331741333007812, -7.023454189300537 ], [ -79.333366394042969, -7.022031784057617 ], [ -79.333885192871037, -7.021323204040471 ], [ -79.336524963378906, -7.016293048858586 ], [ -79.337684631347599, -7.014839172363281 ], [ -79.341407775878849, -7.011683940887394 ], [ -79.344345092773438, -7.009754180908203 ], [ -79.346267700195256, -7.009157180786133 ], [ -79.348266601562443, -7.007939815521183 ], [ -79.349014282226562, -7.007752895355168 ], [ -79.353042602539006, -7.008246898651123 ], [ -79.354660034179631, -7.00806999206543 ], [ -79.356788635253906, -7.006940841674805 ], [ -79.360061645507812, -7.004753112792912 ], [ -79.360504150390511, -7.004074096679631 ], [ -79.361083984375, -7.002417087554875 ], [ -79.362289428710881, -7.000503063201904 ], [ -79.363319396972656, -6.999292850494328 ], [ -79.365074157714787, -6.99781608581543 ], [ -79.366378784179688, -6.995937824249268 ], [ -79.368225097656193, -6.992186069488525 ], [ -79.370597839355412, -6.986040115356445 ], [ -79.371955871582031, -6.985420227050781 ], [ -79.375854492187443, -6.9852418899535 ], [ -79.382011413574219, -6.979835987091064 ], [ -79.384445190429688, -6.978675842285156 ], [ -79.38763427734375, -6.977644920349064 ], [ -79.38983154296875, -6.973883152008057 ], [ -79.391326904296875, -6.970709800720215 ], [ -79.391700744628906, -6.968856811523438 ], [ -79.391685485839787, -6.966423034667912 ], [ -79.392005920410156, -6.965527057647705 ], [ -79.393035888671875, -6.964469909667969 ], [ -79.395568847656193, -6.962958812713566 ], [ -79.398521423339787, -6.959250926971379 ], [ -79.399665832519474, -6.958095073699894 ], [ -79.400833129882756, -6.957281112670898 ], [ -79.402481079101562, -6.957311153411752 ], [ -79.404945373535043, -6.958444118499699 ], [ -79.406829833984318, -6.958371162414551 ], [ -79.407546997070312, -6.95801305770874 ], [ -79.408912658691406, -6.956520080566406 ], [ -79.410827636718693, -6.955537796020508 ], [ -79.416961669921761, -6.953999042510986 ], [ -79.424125671386719, -6.952806949615479 ], [ -79.427932739257812, -6.950830936431828 ], [ -79.43023681640625, -6.950792789459229 ], [ -79.435890197753906, -6.949556827545166 ], [ -79.439491271972656, -6.949071884155273 ], [ -79.442131042480412, -6.948101043701115 ], [ -79.445083618164006, -6.947802066802979 ], [ -79.446632385253906, -6.947039127349854 ], [ -79.448112487792912, -6.947141170501709 ], [ -79.44915771484375, -6.947916030883789 ], [ -79.449623107910156, -6.948029994964543 ], [ -79.452507019042912, -6.946568965911865 ], [ -79.453559875488224, -6.946389198303223 ], [ -79.454299926757812, -6.946670055389347 ], [ -79.457809448242188, -6.953238010406494 ], [ -79.459327697753906, -6.955634117126465 ], [ -79.461463928222599, -6.95807504653925 ], [ -79.464149475097599, -6.960546970367375 ], [ -79.465324401855469, -6.962203979492131 ], [ -79.466827392578068, -6.963570117950383 ], [ -79.467628479003906, -6.965437889099064 ], [ -79.468177795410156, -6.966193199157658 ], [ -79.470771789550781, -6.968376159667969 ], [ -79.474906921386719, -6.968643188476562 ], [ -79.476257324218693, -6.969281196594181 ], [ -79.477653503417969, -6.97055721282959 ], [ -79.479232788085881, -6.970856189727783 ], [ -79.480140686035156, -6.970569133758545 ], [ -79.481765747070312, -6.969615936279297 ], [ -79.48480224609375, -6.966755867004395 ], [ -79.486480712890568, -6.96623420715332 ], [ -79.48822021484375, -6.967490196228027 ], [ -79.490364074706974, -6.968289852142334 ], [ -79.492996215820312, -6.971556186676025 ], [ -79.494354248046875, -6.972310066223145 ], [ -79.4959716796875, -6.972120761871338 ], [ -79.497665405273438, -6.97129583358759 ], [ -79.500381469726506, -6.968789100646973 ], [ -79.501365661621094, -6.967074871063176 ], [ -79.502021789550724, -6.966772079467773 ], [ -79.50341796875, -6.966775894165039 ], [ -79.505088806152344, -6.968347072601262 ], [ -79.506851196289062, -6.969007968902588 ], [ -79.50738525390625, -6.969399929046574 ], [ -79.50909423828125, -6.971672058105412 ], [ -79.510299682617131, -6.975097179412728 ], [ -79.513572692871094, -6.977247238159123 ], [ -79.514602661132756, -6.978302001953125 ], [ -79.515022277832031, -6.979453086852971 ], [ -79.515106201171875, -6.981481075286865 ], [ -79.513938903808537, -6.986049175262394 ], [ -79.515571594238168, -6.987997055053654 ], [ -79.520141601562443, -6.992201805114746 ], [ -79.521194458007756, -6.994058132171631 ], [ -79.521133422851562, -6.994455814361572 ], [ -79.522033691406193, -6.996719837188721 ], [ -79.524948120117188, -7.000236034393311 ], [ -79.52850341796875, -7.00410604476923 ], [ -79.538414001464844, -7.014121055603027 ], [ -79.592597961425724, -7.072421073913517 ], [ -79.605842590332031, -7.086897850036621 ], [ -79.61956787109375, -7.101243019104004 ], [ -79.635650634765625, -7.118902206420898 ], [ -79.654190063476562, -7.13864088058466 ], [ -79.689720153808594, -7.177473068237305 ], [ -79.6915283203125, -7.17958402633667 ], [ -79.6915283203125, -7.179306030273438 ], [ -79.691802978515568, -7.179306030273438 ], [ -79.691802978515568, -7.179028034210205 ], [ -79.692085266113224, -7.179028034210205 ], [ -79.692085266113224, -7.178750038146973 ], [ -79.692359924316349, -7.178750038146973 ], [ -79.692359924316349, -7.177917957305908 ], [ -79.692642211914006, -7.177917957305908 ], [ -79.692642211914006, -7.176805019378662 ], [ -79.692916870117188, -7.176805019378662 ], [ -79.692916870117188, -7.176249027252197 ], [ -79.693191528320312, -7.176249027252197 ], [ -79.693191528320312, -7.175973892211857 ], [ -79.692916870117188, -7.175971031188965 ], [ -79.692916870117188, -7.175416946411076 ], [ -79.693191528320312, -7.175416946411076 ], [ -79.693191528320312, -7.175138950347844 ], [ -79.693748474121094, -7.175138950347844 ], [ -79.693748474121094, -7.174860954284611 ], [ -79.69403076171875, -7.174860954284611 ], [ -79.69403076171875, -7.174304962158146 ], [ -79.693748474121094, -7.174304962158146 ], [ -79.693748474121094, -7.173472881317139 ], [ -79.693473815917969, -7.173472881317139 ], [ -79.693473815917969, -7.172638893127328 ], [ -79.693191528320312, -7.172638893127328 ], [ -79.693191528320312, -7.171804904937687 ], [ -79.692916870117188, -7.171804904937687 ], [ -79.692916870117188, -7.171248912811222 ], [ -79.692642211914006, -7.171248912811222 ], [ -79.692642211914006, -7.170416831970215 ], [ -79.692359924316349, -7.170416831970215 ], [ -79.692359924316349, -7.16986083984375 ], [ -79.692085266113224, -7.16986083984375 ], [ -79.692085266113224, -7.169304847717285 ], [ -79.691802978515568, -7.169304847717285 ], [ -79.691802978515568, -7.168748855590763 ], [ -79.6915283203125, -7.168748855590763 ], [ -79.6915283203125, -7.168472766876221 ], [ -79.691253662109375, -7.168472766876221 ], [ -79.691253662109375, -7.167916774749756 ], [ -79.690971374511719, -7.167916774749756 ], [ -79.690971374511719, -7.167638778686523 ], [ -79.690696716308594, -7.167638778686523 ], [ -79.690696716308594, -7.167082786560059 ], [ -79.690414428710938, -7.167082786560059 ], [ -79.690414428710938, -7.166807174682617 ], [ -79.690139770507812, -7.166807174682617 ], [ -79.690139770507812, -7.166529178619385 ], [ -79.689857482910156, -7.166529178619385 ], [ -79.689857482910156, -7.166251182556152 ], [ -79.689582824706974, -7.166251182556152 ], [ -79.689582824706974, -7.16597318649292 ], [ -79.689308166503849, -7.16597318649292 ], [ -79.689308166503849, -7.165417194366455 ], [ -79.689025878906193, -7.165417194366455 ], [ -79.689025878906193, -7.164859771728459 ], [ -79.688751220703068, -7.164859771728459 ], [ -79.688751220703068, -7.163472175598088 ], [ -79.688468933105412, -7.163472175598088 ], [ -79.688468933105412, -7.163194179534855 ], [ -79.688194274902344, -7.163194179534855 ], [ -79.688194274902344, -7.162916183471623 ], [ -79.687919616699219, -7.162916183471623 ], [ -79.687919616699219, -7.162360191345158 ], [ -79.687637329101562, -7.162360191345158 ], [ -79.687637329101562, -7.162082195281926 ], [ -79.687362670898438, -7.162082195281926 ], [ -79.687362670898438, -7.159584045410156 ], [ -79.687080383300781, -7.159584045410156 ], [ -79.687080383300781, -7.159028053283691 ], [ -79.686805725097656, -7.159028053283691 ], [ -79.686805725097656, -7.158750057220459 ], [ -79.686248779296818, -7.158750057220459 ], [ -79.686248779296818, -7.157083988189697 ], [ -79.686531066894474, -7.157083988189697 ], [ -79.686531066894474, -7.155694007873535 ], [ -79.686248779296818, -7.155694007873535 ], [ -79.686248779296818, -7.155416011810303 ], [ -79.685974121093693, -7.155416011810303 ], [ -79.685974121093693, -7.15513801574707 ], [ -79.685691833496037, -7.155139923095646 ], [ -79.685691833496037, -7.154583930969181 ], [ -79.685417175292912, -7.154583930969181 ], [ -79.685417175292912, -7.154305934905949 ], [ -79.685142517089844, -7.154305934905949 ], [ -79.685142517089844, -7.154027938842773 ], [ -79.684860229492188, -7.154027938842773 ], [ -79.684860229492188, -7.153749942779541 ], [ -79.684585571289062, -7.153749942779541 ], [ -79.684585571289062, -7.153193950653076 ], [ -79.684303283691406, -7.153193950653076 ], [ -79.684303283691406, -7.15291786193842 ], [ -79.684028625488281, -7.152915954589844 ], [ -79.684028625488281, -7.152361869811955 ], [ -79.683746337890625, -7.152361869811955 ], [ -79.683746337890625, -7.15180587768549 ], [ -79.6834716796875, -7.15180587768549 ], [ -79.6834716796875, -7.148194789886475 ], [ -79.683746337890625, -7.148194789886475 ], [ -79.683746337890625, -7.14763879776001 ], [ -79.684028625488281, -7.14763879776001 ], [ -79.684028625488281, -7.147082805633545 ], [ -79.684303283691406, -7.147082805633545 ], [ -79.684303283691406, -7.14652681350708 ], [ -79.684585571289062, -7.14652681350708 ], [ -79.684585571289062, -7.145692825317383 ], [ -79.684860229492188, -7.145695209503174 ], [ -79.684860229492188, -7.144305229187012 ], [ -79.685142517089844, -7.144305229187012 ], [ -79.685142517089844, -7.142917156219426 ], [ -79.685417175292912, -7.142917156219426 ], [ -79.685417175292912, -7.136528968811035 ], [ -79.685142517089844, -7.136528968811035 ], [ -79.685142517089844, -7.134583950042668 ], [ -79.684860229492188, -7.134583950042668 ], [ -79.684860229492188, -7.135138034820557 ], [ -79.684585571289062, -7.135138034820557 ], [ -79.684585571289062, -7.136250019073486 ], [ -79.684303283691406, -7.136250019073486 ], [ -79.684303283691406, -7.137638092041016 ], [ -79.684585571289062, -7.137638092041016 ], [ -79.684585571289062, -7.138473033905029 ], [ -79.684028625488281, -7.138473033905029 ], [ -79.684028625488281, -7.138751029968262 ], [ -79.683746337890625, -7.138751029968262 ], [ -79.683746337890625, -7.138473033905029 ], [ -79.6834716796875, -7.138473033905029 ], [ -79.6834716796875, -7.133193969726506 ], [ -79.683746337890625, -7.133193969726506 ], [ -79.683746337890625, -7.130415916442814 ], [ -79.684028625488281, -7.130415916442814 ], [ -79.684028625488281, -7.129859924316349 ], [ -79.684303283691406, -7.129859924316349 ], [ -79.684303283691406, -7.129027843475342 ], [ -79.684585571289062, -7.129027843475342 ], [ -79.684585571289062, -7.128471851348763 ], [ -79.684860229492188, -7.128471851348763 ], [ -79.684860229492188, -7.127639770507812 ], [ -79.685142517089844, -7.127639770507812 ], [ -79.685142517089844, -7.127083778381348 ], [ -79.685417175292912, -7.127083778381348 ], [ -79.685417175292912, -7.126527786254883 ], [ -79.685691833496037, -7.126527786254883 ], [ -79.685691833496037, -7.125971794128418 ], [ -79.685974121093693, -7.125971794128418 ], [ -79.685974121093693, -7.125418186187744 ], [ -79.686248779296818, -7.125418186187744 ], [ -79.686248779296818, -7.124862194061279 ], [ -79.686531066894474, -7.124862194061279 ], [ -79.686531066894474, -7.124306201934814 ], [ -79.686805725097656, -7.124306201934814 ], [ -79.686805725097656, -7.123748779296875 ], [ -79.687080383300781, -7.123748779296875 ], [ -79.687080383300781, -7.123470783233643 ], [ -79.687362670898438, -7.123470783233643 ], [ -79.687362670898438, -7.12319278717041 ], [ -79.687637329101562, -7.12319278717041 ], [ -79.687637329101562, -7.122918128967228 ], [ -79.687919616699219, -7.122918128967228 ], [ -79.687919616699219, -7.122361183166447 ], [ -79.688194274902344, -7.122361183166447 ], [ -79.688194274902344, -7.122083187103215 ], [ -79.688468933105412, -7.122083187103215 ], [ -79.688468933105412, -7.121805191039982 ], [ -79.688751220703068, -7.121805191039982 ], [ -79.688751220703068, -7.12152719497675 ], [ -79.689025878906193, -7.12152719497675 ], [ -79.689025878906193, -7.121249198913517 ], [ -79.689308166503849, -7.121249198913517 ], [ -79.689308166503849, -7.120695114135742 ], [ -79.689582824706974, -7.120695114135742 ], [ -79.689582824706974, -7.12041711807251 ], [ -79.689857482910156, -7.12041711807251 ], [ -79.689857482910156, -7.120139122009164 ], [ -79.691253662109375, -7.120139122009164 ], [ -79.691253662109375, -7.119859218597412 ], [ -79.6915283203125, -7.119861125945988 ], [ -79.6915283203125, -7.119305133819523 ], [ -79.691802978515568, -7.119305133819523 ], [ -79.691802978515568, -7.119027137756291 ], [ -79.692085266113224, -7.119027137756291 ], [ -79.692085266113224, -7.118749141693058 ], [ -79.692359924316349, -7.118749141693058 ], [ -79.692359924316349, -7.118471145629826 ], [ -79.692642211914006, -7.118473052978516 ], [ -79.692642211914006, -7.118195056915283 ], [ -79.692916870117188, -7.118195056915283 ], [ -79.692916870117188, -7.117917060852051 ], [ -79.693191528320312, -7.117917060852051 ], [ -79.693191528320312, -7.117361068725586 ], [ -79.693473815917969, -7.117361068725586 ], [ -79.693473815917969, -7.116805076599121 ], [ -79.693748474121094, -7.116805076599121 ], [ -79.693748474121094, -7.116249084472599 ], [ -79.69403076171875, -7.116250991821289 ], [ -79.69403076171875, -7.115694999694824 ], [ -79.694580078125, -7.115694999694824 ], [ -79.694580078125, -7.115417003631592 ], [ -79.694862365722543, -7.115417003631592 ], [ -79.694862365722543, -7.115139007568359 ], [ -79.695137023925724, -7.115139007568359 ], [ -79.695137023925724, -7.114861011505127 ], [ -79.695419311523381, -7.114861011505127 ], [ -79.695419311523381, -7.114583015441895 ], [ -79.695693969726506, -7.114583015441895 ], [ -79.695693969726506, -7.114305019378662 ], [ -79.696250915527344, -7.114305019378662 ], [ -79.696250915527344, -7.11402702331543 ], [ -79.696525573730469, -7.11402702331543 ], [ -79.696525573730469, -7.113749027252197 ], [ -79.69708251953125, -7.113749027252197 ], [ -79.69708251953125, -7.112360954284668 ], [ -79.697914123535043, -7.112360954284668 ], [ -79.697914123535043, -7.112082958221436 ], [ -79.698753356933537, -7.112082958221436 ], [ -79.698753356933537, -7.111804008483887 ], [ -79.699028015136662, -7.111804008483887 ], [ -79.699028015136662, -7.111250877380314 ], [ -79.699302673339844, -7.111250877380314 ], [ -79.699302673339844, -7.110972881317082 ], [ -79.6995849609375, -7.110972881317082 ], [ -79.6995849609375, -7.110415935516301 ], [ -79.699859619140625, -7.110415935516301 ], [ -79.699859619140625, -7.109581947326603 ], [ -79.700141906738281, -7.109581947326603 ], [ -79.700141906738281, -7.109303951263371 ], [ -79.700416564941406, -7.109303951263371 ], [ -79.700416564941406, -7.109027862548828 ], [ -79.701248168945256, -7.109027862548828 ], [ -79.701248168945256, -7.108749866485596 ], [ -79.701530456542912, -7.108749866485596 ], [ -79.701530456542912, -7.108471870422363 ], [ -79.701805114746037, -7.108471870422363 ], [ -79.701805114746037, -7.108193874359131 ], [ -79.702079772949162, -7.108193874359131 ], [ -79.702079772949162, -7.107915878295898 ], [ -79.702362060546818, -7.107915878295898 ], [ -79.702362060546818, -7.107361793518066 ], [ -79.70263671875, -7.107361793518066 ], [ -79.70263671875, -7.106805801391602 ], [ -79.702919006347656, -7.106805801391602 ], [ -79.702919006347656, -7.106249809265137 ], [ -79.704025268554688, -7.106249809265137 ], [ -79.704025268554688, -7.105971813201904 ], [ -79.704307556152344, -7.105971813201904 ], [ -79.704307556152344, -7.105693817138672 ], [ -79.704582214355412, -7.105693817138672 ], [ -79.704582214355412, -7.105415821075439 ], [ -79.704864501953068, -7.105415821075439 ], [ -79.704864501953068, -7.105137825012207 ], [ -79.704582214355412, -7.105137825012207 ], [ -79.704582214355412, -7.104584217071533 ], [ -79.704864501953068, -7.104584217071533 ], [ -79.704864501953068, -7.104306221008301 ], [ -79.705139160156193, -7.104306221008301 ], [ -79.705139160156193, -7.104028224945068 ], [ -79.705696105957031, -7.104028224945068 ], [ -79.705696105957031, -7.103750228881836 ], [ -79.705970764160156, -7.103750228881836 ], [ -79.705970764160156, -7.103472232818604 ], [ -79.706253051757812, -7.103472232818604 ], [ -79.706253051757812, -7.103194236755371 ], [ -79.706527709960938, -7.103194236755371 ], [ -79.706527709960938, -7.102637767791748 ], [ -79.706802368164062, -7.102637767791748 ], [ -79.706802368164062, -7.102081775665283 ], [ -79.707084655761719, -7.102084159851017 ], [ -79.707084655761719, -7.101528167724609 ], [ -79.707641601562386, -7.101528167724609 ], [ -79.707641601562386, -7.101250171661377 ], [ -79.707916259765568, -7.101250171661377 ], [ -79.707916259765568, -7.100972175598145 ], [ -79.708473205566349, -7.100972175598145 ], [ -79.708473205566349, -7.100694179534912 ], [ -79.708747863769531, -7.100694179534912 ], [ -79.708747863769531, -7.10041618347168 ], [ -79.709030151367188, -7.10041618347168 ], [ -79.709030151367188, -7.100138187408447 ], [ -79.709304809570312, -7.100138187408447 ], [ -79.709304809570312, -7.099860191345215 ], [ -79.709587097167969, -7.099862098693791 ], [ -79.709587097167969, -7.099306106567326 ], [ -79.709861755371094, -7.099306106567326 ], [ -79.709861755371094, -7.099028110504094 ], [ -79.710136413574219, -7.099028110504094 ], [ -79.710136413574219, -7.098750114440861 ], [ -79.710418701171875, -7.098750114440861 ], [ -79.710418701171875, -7.098472118377629 ], [ -79.710693359374886, -7.098472118377629 ], [ -79.710693359374886, -7.09819316864008 ], [ -79.710975646972599, -7.09819316864008 ], [ -79.710975646972599, -7.097640037536621 ], [ -79.711250305175724, -7.097640037536621 ], [ -79.711250305175724, -7.097362041473389 ], [ -79.711524963378849, -7.097362041473389 ], [ -79.711524963378849, -7.097084045410043 ], [ -79.712081909179688, -7.097084045410043 ], [ -79.712081909179688, -7.096805095672607 ], [ -79.712638854980469, -7.096805095672607 ], [ -79.712638854980469, -7.096527099609375 ], [ -79.712913513183594, -7.096527099609375 ], [ -79.712913513183594, -7.09597110748291 ], [ -79.71319580078125, -7.09597110748291 ], [ -79.71319580078125, -7.095695972442627 ], [ -79.713470458984375, -7.095695972442627 ], [ -79.713470458984375, -7.095417976379395 ], [ -79.713752746582031, -7.095417976379395 ], [ -79.713752746582031, -7.095139026641846 ], [ -79.714027404785099, -7.095139026641846 ], [ -79.714027404785099, -7.094861030578613 ], [ -79.714302062988224, -7.094861030578613 ], [ -79.714302062988224, -7.094583034515381 ], [ -79.714584350585881, -7.094583034515381 ], [ -79.714584350585881, -7.094305038452148 ], [ -79.714859008789006, -7.094305038452148 ], [ -79.714859008789006, -7.094027042388916 ], [ -79.715141296386662, -7.094027042388916 ], [ -79.715141296386662, -7.093749046325684 ], [ -79.715415954589844, -7.093749046325684 ], [ -79.715415954589844, -7.093471050262451 ], [ -79.715690612792969, -7.093471050262451 ], [ -79.7156982421875, -7.093194961547795 ], [ -79.716529846191406, -7.093194961547795 ], [ -79.716529846191406, -7.092916965484562 ], [ -79.717086791992188, -7.092916965484562 ], [ -79.717086791992188, -7.09263896942133 ], [ -79.717361450195256, -7.09263896942133 ], [ -79.717361450195256, -7.092082977294922 ], [ -79.717636108398381, -7.092082977294922 ], [ -79.717636108398381, -7.091526985168457 ], [ -79.717918395996037, -7.091526985168457 ], [ -79.717918395996037, -7.090972900390568 ], [ -79.718193054199162, -7.090972900390568 ], [ -79.718193054199162, -7.090416908264103 ], [ -79.719306945800781, -7.090416908264103 ], [ -79.719306945800781, -7.090138912200871 ], [ -79.719581604003906, -7.090138912200871 ], [ -79.719581604003906, -7.089860916137638 ], [ -79.719863891601562, -7.089860916137638 ], [ -79.719863891601562, -7.089582920074406 ], [ -79.720138549804688, -7.089582920074406 ], [ -79.720138549804688, -7.089026927947941 ], [ -79.720413208007756, -7.089026927947941 ], [ -79.720413208007756, -7.088472843170166 ], [ -79.720695495605412, -7.088472843170166 ], [ -79.720695495605412, -7.087638854980412 ], [ -79.720970153808537, -7.087638854980412 ], [ -79.720970153808537, -7.087082862853947 ], [ -79.721527099609375, -7.087082862853947 ], [ -79.721527099609375, -7.086528778076172 ], [ -79.7218017578125, -7.086528778076172 ], [ -79.7218017578125, -7.085972785949707 ], [ -79.722084045410156, -7.085972785949707 ], [ -79.722084045410156, -7.085694789886475 ], [ -79.722640991210938, -7.085694789886475 ], [ -79.722640991210938, -7.085416793823242 ], [ -79.723197937011719, -7.085416793823242 ], [ -79.723197937011719, -7.08513879776001 ], [ -79.723747253417912, -7.08513879776001 ], [ -79.723747253417912, -7.084860801696777 ], [ -79.724304199218693, -7.084860801696777 ], [ -79.724304199218693, -7.084307193756104 ], [ -79.724586486816349, -7.084307193756104 ], [ -79.724586486816349, -7.083751201629639 ], [ -79.724861145019531, -7.083751201629639 ], [ -79.724861145019531, -7.082637786865234 ], [ -79.725135803222656, -7.082637786865234 ], [ -79.725135803222656, -7.081528186798039 ], [ -79.725418090820312, -7.081528186798039 ], [ -79.725418090820312, -7.080972194671574 ], [ -79.725692749023438, -7.080972194671574 ], [ -79.725692749023438, -7.080694198608342 ], [ -79.725975036621094, -7.080694198608342 ], [ -79.725975036621094, -7.080138206481934 ], [ -79.726249694824219, -7.080138206481934 ], [ -79.726249694824219, -7.079860210418701 ], [ -79.72652435302723, -7.079860210418701 ], [ -79.72652435302723, -7.079582214355469 ], [ -79.726806640624943, -7.079582214355469 ], [ -79.726806640624943, -7.079026222229004 ], [ -79.727081298828068, -7.079026222229004 ], [ -79.727081298828068, -7.078748226165771 ], [ -79.727363586425724, -7.078748226165771 ], [ -79.727363586425724, -7.078470230102539 ], [ -79.727638244628849, -7.078472137451115 ], [ -79.727638244628849, -7.078194141387883 ], [ -79.727912902832031, -7.078194141387883 ], [ -79.727912902832031, -7.07791614532465 ], [ -79.728195190429688, -7.07791614532465 ], [ -79.728195190429688, -7.077638149261418 ], [ -79.728469848632812, -7.077638149261418 ], [ -79.728469848632812, -7.077360153198185 ], [ -79.728752136230469, -7.077360153198185 ], [ -79.728752136230469, -7.077082157134953 ], [ -79.729026794433594, -7.077084064483643 ], [ -79.729026794433594, -7.07680606842041 ], [ -79.72930908203125, -7.07680606842041 ], [ -79.72930908203125, -7.076528072357178 ], [ -79.729583740234375, -7.076528072357178 ], [ -79.729583740234375, -7.076250076293945 ], [ -79.730140686035099, -7.076250076293945 ], [ -79.730140686035099, -7.075694084167424 ], [ -79.730415344238224, -7.075694084167424 ], [ -79.730415344238224, -7.075138092040959 ], [ -79.730697631835881, -7.075139999389648 ], [ -79.730697631835881, -7.074584007263184 ], [ -79.731803894042969, -7.074584007263184 ], [ -79.731803894042969, -7.074306011199951 ], [ -79.732086181640625, -7.074306011199951 ], [ -79.732086181640625, -7.074028015136719 ], [ -79.73236083984375, -7.074028015136719 ], [ -79.73236083984375, -7.073750019073486 ], [ -79.732635498046875, -7.073750019073486 ], [ -79.732635498046875, -7.073472023010254 ], [ -79.732917785644531, -7.073472023010254 ], [ -79.732917785644531, -7.073194026947021 ], [ -79.733192443847599, -7.073194026947021 ], [ -79.733192443847599, -7.072916030883789 ], [ -79.733474731445256, -7.072916030883789 ], [ -79.733474731445256, -7.072638034820557 ], [ -79.733749389648381, -7.072639942169189 ], [ -79.733749389648381, -7.072083950042725 ], [ -79.734024047851506, -7.072083950042725 ], [ -79.734024047851506, -7.07152795791626 ], [ -79.734306335449219, -7.07152795791626 ], [ -79.734306335449219, -7.070973873138371 ], [ -79.734580993652344, -7.070971012115479 ], [ -79.734580993652344, -7.070415019989014 ], [ -79.735969543457031, -7.070415019989014 ], [ -79.735969543457031, -7.070139884948674 ], [ -79.736251831054574, -7.070139884948674 ], [ -79.736251831054574, -7.069582939147892 ], [ -79.736526489257756, -7.069582939147892 ], [ -79.736526489257756, -7.06930494308466 ], [ -79.736808776855412, -7.06930494308466 ], [ -79.736808776855412, -7.069026947021428 ], [ -79.737083435058537, -7.069026947021428 ], [ -79.737083435058537, -7.068470954894963 ], [ -79.737358093261719, -7.068470954894963 ], [ -79.737358093261719, -7.067916870117188 ], [ -79.737640380859375, -7.067916870117188 ], [ -79.737640380859375, -7.06708288192749 ], [ -79.7379150390625, -7.06708288192749 ], [ -79.7379150390625, -7.066248893737736 ], [ -79.738197326660156, -7.066248893737736 ], [ -79.738197326660156, -7.065694808959961 ], [ -79.738746643066406, -7.065694808959961 ], [ -79.738746643066406, -7.065416812896729 ], [ -79.739028930664062, -7.065416812896729 ], [ -79.739028930664062, -7.064304828643799 ], [ -79.739303588867074, -7.064304828643799 ], [ -79.739303588867074, -7.064026832580566 ], [ -79.739585876464787, -7.064026832580566 ], [ -79.739585876464787, -7.063748836517334 ], [ -79.739860534667912, -7.063748836517334 ], [ -79.739860534667912, -7.06319522857666 ], [ -79.740135192871037, -7.06319522857666 ], [ -79.740135192871037, -7.062917232513428 ], [ -79.740417480468693, -7.062917232513428 ], [ -79.740417480468693, -7.062639236450195 ], [ -79.740692138671875, -7.062639236450195 ], [ -79.740692138671875, -7.062360763549805 ], [ -79.741806030273438, -7.062360763549805 ], [ -79.741806030273438, -7.06180477142334 ], [ -79.742080688476562, -7.06180477142334 ], [ -79.742080688476562, -7.061526775360107 ], [ -79.742362976074219, -7.061526775360107 ], [ -79.742362976074219, -7.061248779296875 ], [ -79.742637634277287, -7.061248779296875 ], [ -79.742637634277287, -7.060695171356201 ], [ -79.742919921874943, -7.060695171356201 ], [ -79.742919921874943, -7.060417175292969 ], [ -79.743194580078068, -7.060417175292969 ], [ -79.743194580078068, -7.059305191040039 ], [ -79.743469238281193, -7.059305191040039 ], [ -79.743469238281193, -7.058473110198918 ], [ -79.743751525878849, -7.058473110198918 ], [ -79.743751525878849, -7.058195114135685 ], [ -79.744026184082031, -7.058195114135685 ], [ -79.744026184082031, -7.057639122009221 ], [ -79.744308471679688, -7.057639122009221 ], [ -79.744308471679688, -7.057360172271672 ], [ -79.744583129882812, -7.057360172271672 ], [ -79.744583129882812, -7.057082176208439 ], [ -79.745414733886719, -7.057082176208439 ], [ -79.745414733886719, -7.056807041168213 ], [ -79.746246337890568, -7.056807041168213 ], [ -79.746246337890568, -7.056529045104867 ], [ -79.746528625488224, -7.056529045104867 ], [ -79.746528625488224, -7.056251049041691 ], [ -79.746803283691349, -7.056251049041691 ], [ -79.746803283691349, -7.055694103240967 ], [ -79.747085571289062, -7.055694103240967 ], [ -79.747085571289062, -7.055416107177734 ], [ -79.747360229492188, -7.055416107177734 ], [ -79.747360229492188, -7.055138111114502 ], [ -79.747642517089844, -7.055138111114502 ], [ -79.747642517089844, -7.054860115051156 ], [ -79.748191833496094, -7.054860115051156 ], [ -79.748191833496094, -7.054584980010986 ], [ -79.74847412109375, -7.05458211898798 ], [ -79.74847412109375, -7.054306030273438 ], [ -79.749031066894418, -7.054306030273438 ], [ -79.749031066894418, -7.053750038146973 ], [ -79.749305725097599, -7.053750038146973 ], [ -79.749305725097599, -7.052916049957275 ], [ -79.749580383300724, -7.052916049957275 ], [ -79.749580383300724, -7.052360057830811 ], [ -79.749862670898381, -7.052360057830811 ], [ -79.749862670898381, -7.051805973052979 ], [ -79.750137329101562, -7.051805973052979 ], [ -79.750137329101562, -7.051249980926514 ], [ -79.750419616699219, -7.051249980926514 ], [ -79.750419616699219, -7.050971984863281 ], [ -79.750968933105469, -7.050971984863281 ], [ -79.750968933105469, -7.050693988800049 ], [ -79.751251220703125, -7.050693988800049 ], [ -79.751251220703125, -7.050415992736816 ], [ -79.751808166503906, -7.050415992736816 ], [ -79.751808166503906, -7.050137996673584 ], [ -79.752082824706918, -7.050137996673584 ], [ -79.752082824706918, -7.049860000610352 ], [ -79.752639770507756, -7.049860000610352 ], [ -79.752639770507756, -7.049583911895695 ], [ -79.752914428710881, -7.049583911895695 ], [ -79.752914428710881, -7.049305915832463 ], [ -79.753471374511719, -7.049305915832463 ], [ -79.753471374511719, -7.04902791976923 ], [ -79.753753662109375, -7.04902791976923 ], [ -79.753753662109375, -7.048749923705998 ], [ -79.7540283203125, -7.048749923705998 ], [ -79.7540283203125, -7.048471927642765 ], [ -79.754302978515625, -7.048471927642765 ], [ -79.754302978515625, -7.047915935516357 ], [ -79.754585266113281, -7.047915935516357 ], [ -79.754585266113281, -7.047639846801758 ], [ -79.754859924316406, -7.047639846801758 ], [ -79.754859924316406, -7.047361850738412 ], [ -79.755142211914062, -7.047361850738412 ], [ -79.755142211914062, -7.047083854675236 ], [ -79.755416870117131, -7.047083854675236 ], [ -79.755416870117131, -7.046805858612004 ], [ -79.755691528320256, -7.046805858612004 ], [ -79.755691528320256, -7.046527862548771 ], [ -79.755973815917912, -7.046527862548771 ], [ -79.755973815917912, -7.046249866485539 ], [ -79.756248474121037, -7.046249866485539 ], [ -79.756248474121037, -7.045971870422306 ], [ -79.756805419921875, -7.045971870422306 ], [ -79.756805419921875, -7.045693874359074 ], [ -79.757080078125, -7.045693874359074 ], [ -79.757080078125, -7.045417785644531 ], [ -79.757919311523438, -7.045417785644531 ], [ -79.757919311523438, -7.045139789581299 ], [ -79.758193969726562, -7.045139789581299 ], [ -79.758193969726562, -7.044861793518066 ], [ -79.758468627929631, -7.044861793518066 ], [ -79.758468627929631, -7.044583797454834 ], [ -79.758750915527287, -7.044583797454834 ], [ -79.758750915527287, -7.044027805328369 ], [ -79.759025573730412, -7.044027805328369 ], [ -79.759025573730412, -7.043470859527588 ], [ -79.759307861328068, -7.043470859527588 ], [ -79.759307861328068, -7.043192863464355 ], [ -79.759582519531193, -7.043192863464355 ], [ -79.759582519531193, -7.04291820526123 ], [ -79.759864807128906, -7.04291820526123 ], [ -79.759864807128906, -7.042640209197998 ], [ -79.760139465332031, -7.042640209197998 ], [ -79.760139465332031, -7.042362213134766 ], [ -79.760414123535156, -7.042362213134766 ], [ -79.760414123535156, -7.042082786560059 ], [ -79.760696411132812, -7.042082786560059 ], [ -79.760696411132812, -7.03986120223999 ], [ -79.760971069335938, -7.03986120223999 ], [ -79.760971069335938, -7.039305210113525 ], [ -79.761253356933594, -7.039305210113525 ], [ -79.761253356933594, -7.039027214050293 ], [ -79.761528015136719, -7.039027214050293 ], [ -79.761528015136719, -7.038749217987061 ], [ -79.761802673339787, -7.038749217987061 ], [ -79.761802673339787, -7.038193225860596 ], [ -79.762084960937443, -7.038193225860596 ], [ -79.762084960937443, -7.037915229797363 ], [ -79.762641906738224, -7.037915229797363 ], [ -79.762641906738224, -7.037637233734131 ], [ -79.763191223144531, -7.037637233734131 ], [ -79.763191223144531, -7.037359237670898 ], [ -79.763748168945312, -7.037359237670898 ], [ -79.763748168945312, -7.037080764770508 ], [ -79.765419006347599, -7.037083148956242 ], [ -79.765419006347599, -7.03680515289301 ], [ -79.765693664550724, -7.03680515289301 ], [ -79.765693664550724, -7.036527156829777 ], [ -79.765975952148381, -7.036527156829777 ], [ -79.765975952148381, -7.036249160766602 ], [ -79.766250610351562, -7.036249160766602 ], [ -79.766250610351562, -7.035971164703369 ], [ -79.766525268554688, -7.035973072052002 ], [ -79.766525268554688, -7.03569507598877 ], [ -79.766807556152344, -7.03569507598877 ], [ -79.766807556152344, -7.035417079925423 ], [ -79.767082214355469, -7.035417079925423 ], [ -79.767082214355469, -7.035139083862248 ], [ -79.767364501953125, -7.035139083862248 ], [ -79.767364501953125, -7.034861087799015 ], [ -79.76763916015625, -7.034861087799015 ], [ -79.76763916015625, -7.034583091735783 ], [ -79.767913818359261, -7.034583091735783 ], [ -79.767913818359261, -7.034305095672551 ], [ -79.768196105956974, -7.034305095672551 ], [ -79.768196105956974, -7.032917022705078 ], [ -79.769027709960881, -7.032917022705078 ], [ -79.769027709960881, -7.032639026641846 ], [ -79.7701416015625, -7.032639026641846 ], [ -79.7701416015625, -7.032361030578613 ], [ -79.770416259765625, -7.032361030578613 ], [ -79.770416259765625, -7.031805038452035 ], [ -79.77069091796875, -7.031805038452035 ], [ -79.77069091796875, -7.031248092651367 ], [ -79.770973205566406, -7.031250953674316 ], [ -79.770973205566406, -7.030694961547852 ], [ -79.771247863769474, -7.030694961547852 ], [ -79.771247863769474, -7.03013801574707 ], [ -79.771530151367131, -7.03013801574707 ], [ -79.771530151367131, -7.029860019683838 ], [ -79.772361755371037, -7.029860019683838 ], [ -79.772361755371037, -7.029582023620605 ], [ -79.772636413574219, -7.029582023620605 ], [ -79.772636413574219, -7.029304027557373 ], [ -79.773193359375, -7.029306888580265 ], [ -79.773193359375, -7.029028892517033 ], [ -79.773475646972656, -7.029028892517033 ], [ -79.773475646972656, -7.028750896453857 ], [ -79.773750305175781, -7.028750896453857 ], [ -79.773750305175781, -7.028471946716252 ], [ -79.774307250976562, -7.028471946716252 ], [ -79.774307250976562, -7.028193950653019 ], [ -79.774581909179631, -7.028193950653019 ], [ -79.774581909179631, -7.027915954589787 ], [ -79.774864196777287, -7.027915954589787 ], [ -79.774864196777287, -7.027637958526554 ], [ -79.775138854980412, -7.027637958526554 ], [ -79.775138854980412, -7.027359962463322 ], [ -79.775413513183537, -7.027359962463322 ], [ -79.775413513183537, -7.026249885558968 ], [ -79.77569580078125, -7.026249885558968 ], [ -79.77569580078125, -7.02569389343256 ], [ -79.776252746582031, -7.02569389343256 ], [ -79.776252746582031, -7.025971889495793 ], [ -79.776802062988281, -7.025971889495793 ], [ -79.776802062988281, -7.02569389343256 ], [ -79.777084350585938, -7.02569389343256 ], [ -79.777084350585938, -7.025415897369328 ], [ -79.777641296386605, -7.025415897369328 ], [ -79.777641296386605, -7.025137901306096 ], [ -79.777915954589787, -7.025137901306096 ], [ -79.777915954589787, -7.024861812591553 ], [ -79.778190612792912, -7.024859905242863 ], [ -79.778198242187443, -7.02458381652832 ], [ -79.778472900390568, -7.02458381652832 ], [ -79.778472900390568, -7.024027824401855 ], [ -79.77874755859375, -7.024027824401855 ], [ -79.77874755859375, -7.023749828338623 ], [ -79.779029846191406, -7.023749828338623 ], [ -79.779029846191406, -7.023471832275391 ], [ -79.779861450195312, -7.023471832275391 ], [ -79.779861450195312, -7.023193836212158 ], [ -79.780136108398438, -7.023193836212158 ], [ -79.780136108398438, -7.02263784408558 ], [ -79.780693054199105, -7.02263784408558 ], [ -79.780693054199105, -7.02208423614502 ], [ -79.780975341796818, -7.02208423614502 ], [ -79.780975341796818, -7.021805763244629 ], [ -79.78125, -7.021805763244629 ], [ -79.78125, -7.021527767181396 ], [ -79.781524658203068, -7.021527767181396 ], [ -79.781524658203068, -7.021249771118164 ], [ -79.781806945800724, -7.021249771118164 ], [ -79.781806945800724, -7.020971775054932 ], [ -79.782081604003906, -7.020971775054932 ], [ -79.782081604003906, -7.020693778991699 ], [ -79.783470153808594, -7.020693778991699 ], [ -79.783470153808594, -7.020137786865234 ], [ -79.78375244140625, -7.020137786865234 ], [ -79.78375244140625, -7.019584178924561 ], [ -79.784301757812443, -7.019584178924561 ], [ -79.784301757812443, -7.019306182861328 ], [ -79.784858703613224, -7.019306182861328 ], [ -79.784858703613224, -7.019028186798096 ], [ -79.785140991210881, -7.019028186798096 ], [ -79.785140991210881, -7.018750190734863 ], [ -79.785415649414062, -7.018750190734863 ], [ -79.785415649414062, -7.018472194671631 ], [ -79.785972595214844, -7.018472194671631 ], [ -79.785972595214844, -7.017084121704045 ], [ -79.786247253417969, -7.017084121704045 ], [ -79.786247253417969, -7.016527175903263 ], [ -79.787086486816406, -7.016527175903263 ], [ -79.787086486816406, -7.016249179840031 ], [ -79.787361145019474, -7.016249179840031 ], [ -79.787361145019474, -7.015971183776799 ], [ -79.787635803222599, -7.015971183776799 ], [ -79.787635803222599, -7.015418052673283 ], [ -79.787918090820256, -7.015418052673283 ], [ -79.787918090820256, -7.015140056610051 ], [ -79.788475036621094, -7.015140056610051 ], [ -79.788475036621094, -7.014861106872559 ], [ -79.789024353027344, -7.014861106872559 ], [ -79.789024353027344, -7.014583110809326 ], [ -79.789581298828125, -7.014583110809326 ], [ -79.789581298828125, -7.01430511474598 ], [ -79.789863586425781, -7.01430511474598 ], [ -79.789863586425781, -7.014027118682804 ], [ -79.790138244628906, -7.014027118682804 ], [ -79.790138244628906, -7.013749122619572 ], [ -79.790412902831974, -7.013749122619572 ], [ -79.790412902831974, -7.01347112655634 ], [ -79.790695190429631, -7.01347112655634 ], [ -79.790695190429631, -7.013195037841797 ], [ -79.790969848632756, -7.013195037841797 ], [ -79.790969848632756, -7.012917041778564 ], [ -79.791252136230412, -7.012917041778564 ], [ -79.791252136230412, -7.012639045715332 ], [ -79.791526794433594, -7.012639045715332 ], [ -79.791526794433594, -7.0123610496521 ], [ -79.79180908203125, -7.0123610496521 ], [ -79.79180908203125, -7.012083053588867 ], [ -79.7923583984375, -7.012083053588867 ], [ -79.7923583984375, -7.011805057525635 ], [ -79.792640686035156, -7.011805057525635 ], [ -79.792640686035156, -7.011527061462402 ], [ -79.792915344238281, -7.011527061462402 ], [ -79.792915344238281, -7.01124906539917 ], [ -79.793472290038949, -7.01124906539917 ], [ -79.793472290038949, -7.010971069335938 ], [ -79.793746948242131, -7.010971069335938 ], [ -79.793746948242131, -7.010694980621338 ], [ -79.794303894042912, -7.010694980621338 ], [ -79.794303894042912, -7.010416984558105 ], [ -79.795692443847656, -7.010416984558105 ], [ -79.795692443847656, -7.010138988494873 ], [ -79.795974731445312, -7.010138988494873 ], [ -79.795974731445312, -7.009860992431641 ], [ -79.796249389648438, -7.009860992431641 ], [ -79.796249389648438, -7.009582996368408 ], [ -79.796524047851449, -7.009582996368408 ], [ -79.796524047851449, -7.009027004241943 ], [ -79.796806335449162, -7.009027004241943 ], [ -79.796806335449162, -7.008749008178711 ], [ -79.797080993652287, -7.008750915527287 ], [ -79.797080993652287, -7.008472919464054 ], [ -79.797363281249943, -7.008472919464054 ], [ -79.797416687011719, -7.008194923400822 ], [ -79.797637939453068, -7.008194923400822 ], [ -79.797637939453068, -7.00791692733759 ], [ -79.797920227050724, -7.00791692733759 ], [ -79.797920227050724, -7.007638931274414 ], [ -79.798194885253906, -7.007638931274414 ], [ -79.798194885253906, -7.007360935211182 ], [ -79.799858093261662, -7.007360935211182 ], [ -79.799858093261662, -7.007082939147949 ], [ -79.800140380859318, -7.007082939147949 ], [ -79.800140380859318, -7.006804943084717 ], [ -79.800415039062443, -7.006804943084717 ], [ -79.800415039062443, -7.00652885437006 ], [ -79.800697326660099, -7.00652885437006 ], [ -79.800697326660099, -7.006250858306828 ], [ -79.800971984863224, -7.006250858306828 ], [ -79.800971984863224, -7.005972862243596 ], [ -79.801246643066406, -7.005972862243596 ], [ -79.801246643066406, -7.005694866180363 ], [ -79.800971984863224, -7.005694866180363 ], [ -79.800971984863224, -7.005138874053898 ], [ -79.801246643066406, -7.005138874053898 ], [ -79.801246643066406, -7.004582881927433 ], [ -79.801528930664062, -7.004582881927433 ], [ -79.801528930664062, -7.004303932189885 ], [ -79.801803588867188, -7.004303932189885 ], [ -79.801803588867188, -7.004028797149658 ], [ -79.802360534667969, -7.004028797149658 ], [ -79.802360534667969, -7.003750801086426 ], [ -79.802635192871094, -7.003750801086426 ], [ -79.802635192871094, -7.003472805023193 ], [ -79.803192138671818, -7.003472805023193 ], [ -79.803192138671818, -7.003194808959847 ], [ -79.803474426269474, -7.003194808959847 ], [ -79.803474426269474, -7.002916812896672 ], [ -79.803749084472599, -7.002916812896672 ], [ -79.803749084472599, -7.00263786315918 ], [ -79.804031372070256, -7.00263786315918 ], [ -79.804031372070256, -7.002081871032715 ], [ -79.804306030273438, -7.002081871032715 ], [ -79.804306030273438, -7.00180721282959 ], [ -79.805137634277344, -7.001803874969482 ], [ -79.805137634277344, -7.001529216766357 ], [ -79.805419921875, -7.001529216766357 ], [ -79.805419921875, -7.000971794128418 ], [ -79.805694580078125, -7.000971794128418 ], [ -79.805694580078125, -7.000693798065186 ], [ -79.805419921875, -7.000693798065186 ], [ -79.805419921875, -7.000415802001953 ], [ -79.805137634277344, -7.000415802001953 ], [ -79.805137634277344, -7.000137805938721 ], [ -79.804862976074219, -7.000137805938721 ], [ -79.804862976074219, -6.999859809875488 ], [ -79.805137634277344, -6.999862194061222 ], [ -79.805137634277344, -6.999581813812256 ], [ -79.805694580078125, -6.999581813812256 ], [ -79.805694580078125, -6.999306201934814 ], [ -79.80596923828125, -6.999306201934814 ], [ -79.80596923828125, -6.999028205871582 ], [ -79.806526184081974, -6.999028205871582 ], [ -79.806526184081974, -6.99875020980835 ], [ -79.806808471679631, -6.99875020980835 ], [ -79.806808471679631, -6.998472213745117 ], [ -79.807083129882756, -6.998472213745117 ], [ -79.807083129882756, -6.998194217681885 ], [ -79.807640075683594, -6.998194217681885 ], [ -79.807640075683594, -6.997916221618652 ], [ -79.807914733886719, -6.997916221618652 ], [ -79.807914733886719, -6.99763822555542 ], [ -79.8084716796875, -6.99763822555542 ], [ -79.8084716796875, -6.997360229492188 ], [ -79.808746337890625, -6.997360229492188 ], [ -79.808746337890625, -6.997082233428955 ], [ -79.809028625488281, -6.997082233428955 ], [ -79.809028625488281, -6.996804237365723 ], [ -79.809303283691293, -6.996804237365723 ], [ -79.809303283691293, -6.996525764465332 ], [ -79.809585571289006, -6.996525764465332 ], [ -79.809585571289006, -6.996250152587834 ], [ -79.809860229492131, -6.996250152587834 ], [ -79.809860229492131, -6.995694160461426 ], [ -79.810142517089787, -6.995694160461426 ], [ -79.810142517089787, -6.995416164398193 ], [ -79.810417175292912, -6.995416164398193 ], [ -79.810417175292912, -6.994860172271729 ], [ -79.810691833496094, -6.994862079620248 ], [ -79.810691833496094, -6.99430608749384 ], [ -79.81097412109375, -6.99430608749384 ], [ -79.81097412109375, -6.994028091430607 ], [ -79.811531066894531, -6.994028091430607 ], [ -79.811531066894531, -6.993750095367375 ], [ -79.812080383300781, -6.993750095367375 ], [ -79.812080383300781, -6.993472099304142 ], [ -79.812362670898438, -6.993472099304142 ], [ -79.812362670898438, -6.99319410324091 ], [ -79.812919616699162, -6.99319410324091 ], [ -79.812919616699162, -6.992916107177678 ], [ -79.81402587890625, -6.992916107177678 ], [ -79.81402587890625, -6.992638111114445 ], [ -79.814308166503906, -6.992638111114445 ], [ -79.814308166503906, -6.992360115051213 ], [ -79.814582824707031, -6.992362022399902 ], [ -79.814582824707031, -6.99208402633667 ], [ -79.814857482910156, -6.99208402633667 ], [ -79.814857482910156, -6.991806030273438 ], [ -79.815139770507812, -6.991806030273438 ], [ -79.815139770507812, -6.991528034210205 ], [ -79.815414428710938, -6.991528034210205 ], [ -79.815414428710938, -6.991250038146859 ], [ -79.815666198730412, -6.991250038146859 ], [ -79.815696716308594, -6.990972042083683 ], [ -79.815971374511662, -6.990972042083683 ], [ -79.815971374511662, -6.990693092346191 ], [ -79.816253662109318, -6.990693092346191 ], [ -79.816253662109318, -6.990415096282959 ], [ -79.816528320312443, -6.990415096282959 ], [ -79.816528320312443, -6.990139961242676 ], [ -79.816802978515568, -6.990139961242676 ], [ -79.816802978515568, -6.989861965179443 ], [ -79.817085266113281, -6.989861965179443 ], [ -79.817085266113281, -6.989583969116211 ], [ -79.817642211914062, -6.989583969116211 ], [ -79.817642211914062, -6.989305973052979 ], [ -79.817916870117188, -6.989305973052979 ], [ -79.817916870117188, -6.98902702331543 ], [ -79.818191528320312, -6.98902702331543 ], [ -79.818191528320312, -6.988749027252197 ], [ -79.818473815917969, -6.988749027252197 ], [ -79.818473815917969, -6.988471031188965 ], [ -79.819030761718636, -6.988471031188965 ], [ -79.819030761718636, -6.988195896148682 ], [ -79.819305419921818, -6.988195896148682 ], [ -79.819305419921818, -6.987917900085449 ], [ -79.819580078124943, -6.987917900085449 ], [ -79.819580078124943, -6.987638950347844 ], [ -79.820137023925781, -6.987638950347844 ], [ -79.820137023925781, -6.987360954284611 ], [ -79.820419311523438, -6.987360954284611 ], [ -79.820419311523438, -6.987082958221379 ], [ -79.820693969726562, -6.987082958221379 ], [ -79.820693969726562, -6.986526966094971 ], [ -79.820968627929688, -6.986526966094971 ], [ -79.820968627929688, -6.986248970031738 ], [ -79.821250915527344, -6.986248970031738 ], [ -79.821250915527344, -6.985694885253793 ], [ -79.821525573730469, -6.985694885253793 ], [ -79.821525573730469, -6.985416889190617 ], [ -79.821807861328125, -6.985416889190617 ], [ -79.821807861328125, -6.985138893127385 ], [ -79.822364807128849, -6.985138893127385 ], [ -79.822364807128849, -6.98458290100092 ], [ -79.822914123535099, -6.98458290100092 ], [ -79.822914123535099, -6.984304904937687 ], [ -79.823196411132756, -6.984304904937687 ], [ -79.823196411132756, -6.984026908874455 ], [ -79.823471069335938, -6.984026908874455 ], [ -79.823471069335938, -6.98347282409668 ], [ -79.823753356933594, -6.98347282409668 ], [ -79.823753356933594, -6.983194828033447 ], [ -79.824028015136719, -6.983194828033447 ], [ -79.824028015136719, -6.982916831970215 ], [ -79.824302673339844, -6.982916831970215 ], [ -79.824302673339844, -6.98236083984375 ], [ -79.8245849609375, -6.98236083984375 ], [ -79.8245849609375, -6.982082843780404 ], [ -79.825416564941349, -6.982082843780404 ], [ -79.825416564941349, -6.981804847717228 ], [ -79.825691223144474, -6.981804847717228 ], [ -79.825691223144474, -6.981526851653996 ], [ -79.826805114746094, -6.981526851653996 ], [ -79.826805114746094, -6.981248855590763 ], [ -79.827362060546875, -6.981248855590763 ], [ -79.827362060546875, -6.980416774749756 ], [ -79.828193664550781, -6.980416774749756 ], [ -79.828193664550781, -6.980138778686523 ], [ -79.828750610351506, -6.980138778686523 ], [ -79.828750610351506, -6.979860782623291 ], [ -79.829025268554631, -6.979860782623291 ], [ -79.829025268554631, -6.979582786560059 ], [ -79.829307556152287, -6.979582786560059 ], [ -79.829307556152287, -6.979304790496826 ], [ -79.829582214355412, -6.979304790496826 ], [ -79.829582214355412, -6.979029178619385 ], [ -79.829864501953125, -6.979029178619385 ], [ -79.829864501953125, -6.978751182556152 ], [ -79.83013916015625, -6.978751182556152 ], [ -79.83013916015625, -6.97847318649292 ], [ -79.830413818359375, -6.97847318649292 ], [ -79.830413818359375, -6.978195190429688 ], [ -79.830970764160156, -6.978195190429688 ], [ -79.830970764160156, -6.977917194366455 ], [ -79.831253051757812, -6.977917194366455 ], [ -79.831253051757812, -6.977639198303223 ], [ -79.831527709960938, -6.977639198303223 ], [ -79.831527709960938, -6.97736120223999 ], [ -79.831802368164006, -6.97736120223999 ], [ -79.831802368164006, -6.977081775665283 ], [ -79.832359313964787, -6.977081775665283 ], [ -79.832359313964787, -6.976807117462101 ], [ -79.832641601562443, -6.976807117462101 ], [ -79.832641601562443, -6.976529121398869 ], [ -79.832916259765625, -6.976529121398869 ], [ -79.832916259765625, -6.976251125335693 ], [ -79.83319091796875, -6.976251125335693 ], [ -79.83319091796875, -6.975973129272461 ], [ -79.833747863769531, -6.975973129272461 ], [ -79.833747863769531, -6.975695133209229 ], [ -79.834030151367188, -6.975695133209229 ], [ -79.834030151367188, -6.975416183471623 ], [ -79.834304809570312, -6.975416183471623 ], [ -79.834304809570312, -6.97513818740839 ], [ -79.834587097167969, -6.97513818740839 ], [ -79.834587097167969, -6.974860191345158 ], [ -79.835136413574162, -6.974860191345158 ], [ -79.835136413574162, -6.974582195281982 ], [ -79.835418701171818, -6.974582195281982 ], [ -79.835418701171818, -6.974307060241642 ], [ -79.835693359374943, -6.974307060241642 ], [ -79.835693359374943, -6.97402811050415 ], [ -79.835975646972599, -6.97402811050415 ], [ -79.835975646972599, -6.973750114440804 ], [ -79.836524963378906, -6.973750114440804 ], [ -79.836524963378906, -6.973472118377629 ], [ -79.836807250976562, -6.973472118377629 ], [ -79.836807250976562, -6.973194122314396 ], [ -79.837364196777344, -6.973194122314396 ], [ -79.837364196777344, -6.972916126251164 ], [ -79.837638854980469, -6.972916126251164 ], [ -79.837638854980469, -6.972638130187931 ], [ -79.838195800781193, -6.972638130187931 ], [ -79.838195800781193, -6.972360134124699 ], [ -79.838470458984318, -6.972360134124699 ], [ -79.838470458984318, -6.972084045410156 ], [ -79.838752746581974, -6.972082138061467 ], [ -79.838752746581974, -6.971528053283691 ], [ -79.839584350585938, -6.971528053283691 ], [ -79.839584350585938, -6.971250057220459 ], [ -79.840141296386719, -6.971250057220459 ], [ -79.840141296386719, -6.970972061157227 ], [ -79.840690612792969, -6.970972061157227 ], [ -79.8406982421875, -6.970694065093994 ], [ -79.841247558593693, -6.970694065093994 ], [ -79.841247558593693, -6.970416069030762 ], [ -79.841529846191349, -6.970416069030762 ], [ -79.841529846191349, -6.970138072967416 ], [ -79.842086791992131, -6.970138072967416 ], [ -79.842086791992131, -6.96986007690424 ], [ -79.842918395996094, -6.96986007690424 ], [ -79.842918395996094, -6.969583988189697 ], [ -79.843193054199219, -6.969583988189697 ], [ -79.843193054199219, -6.969305992126465 ], [ -79.84375, -6.969305992126465 ], [ -79.84375, -6.969027996063232 ], [ -79.844024658203125, -6.969027996063232 ], [ -79.844024658203125, -6.96875 ], [ -79.844306945800781, -6.96875 ], [ -79.844306945800781, -6.968472003936768 ], [ -79.844581604003849, -6.968472003936768 ], [ -79.844581604003849, -6.968194007873535 ], [ -79.844863891601506, -6.968194007873535 ], [ -79.844863891601506, -6.96763801574707 ], [ -79.845138549804631, -6.96763801574707 ], [ -79.845138549804631, -6.967360019683838 ], [ -79.845413208007756, -6.967361927032414 ], [ -79.845413208007756, -6.967083930969238 ], [ -79.845695495605469, -6.967083930969238 ], [ -79.845695495605469, -6.966805934906006 ], [ -79.845413208007756, -6.966805934906006 ], [ -79.845413208007756, -6.966249942779541 ], [ -79.845695495605469, -6.966249942779541 ], [ -79.845695495605469, -6.965971946716309 ], [ -79.845970153808594, -6.965971946716309 ], [ -79.845970153808594, -6.965693950653076 ], [ -79.84625244140625, -6.965693950653076 ], [ -79.84625244140625, -6.965139865875187 ], [ -79.846527099609375, -6.965139865875187 ], [ -79.846527099609375, -6.96430587768549 ], [ -79.8468017578125, -6.96430587768549 ], [ -79.8468017578125, -6.964027881622258 ], [ -79.847084045410156, -6.964027881622258 ], [ -79.847084045410156, -6.963749885559025 ], [ -79.847358703613281, -6.963749885559025 ], [ -79.847358703613281, -6.964027881622258 ], [ -79.848747253417969, -6.964027881622258 ], [ -79.848747253417969, -6.963749885559025 ], [ -79.849029541015625, -6.963749885559025 ], [ -79.849029541015625, -6.96347188949585 ], [ -79.84930419921875, -6.96347188949585 ], [ -79.84930419921875, -6.963192939758244 ], [ -79.849586486816406, -6.963192939758244 ], [ -79.849586486816406, -6.962917804718018 ], [ -79.849861145019531, -6.962917804718018 ], [ -79.849861145019531, -6.962639808654671 ], [ -79.850418090820312, -6.962639808654671 ], [ -79.850418090820312, -6.962361812591496 ], [ -79.850692749023324, -6.962361812591496 ], [ -79.850692749023324, -6.962083816528263 ], [ -79.850975036621037, -6.962083816528263 ], [ -79.850975036621037, -6.961804866790771 ], [ -79.851249694824162, -6.961804866790771 ], [ -79.851249694824162, -6.961526870727539 ], [ -79.851524353027287, -6.961526870727539 ], [ -79.851524353027287, -6.961248874664307 ], [ -79.851806640624943, -6.961248874664307 ], [ -79.851806640624943, -6.960970878600961 ], [ -79.852363586425781, -6.960970878600961 ], [ -79.852363586425781, -6.960692882537785 ], [ -79.852638244628906, -6.960692882537785 ], [ -79.852638244628906, -6.960416793823242 ], [ -79.852912902832031, -6.960416793823242 ], [ -79.852912902832031, -6.96013879776001 ], [ -79.853752136230469, -6.96013879776001 ], [ -79.853752136230469, -6.959860801696777 ], [ -79.854026794433537, -6.959860801696777 ], [ -79.854026794433537, -6.959304809570312 ], [ -79.853752136230469, -6.959304809570312 ], [ -79.853752136230469, -6.958473205566406 ], [ -79.854026794433537, -6.958473205566406 ], [ -79.854026794433537, -6.958195209503174 ], [ -79.854858398437443, -6.958195209503174 ], [ -79.854858398437443, -6.958473205566406 ], [ -79.855415344238281, -6.958473205566406 ], [ -79.855415344238281, -6.958195209503174 ], [ -79.855697631835938, -6.958195209503174 ], [ -79.855697631835938, -6.957917213439941 ], [ -79.855972290039062, -6.957917213439941 ], [ -79.855972290039062, -6.957639217376709 ], [ -79.856246948242188, -6.957639217376709 ], [ -79.856246948242188, -6.957083225250244 ], [ -79.856529235839844, -6.957083225250244 ], [ -79.856529235839844, -6.956805229187012 ], [ -79.856803894042969, -6.956805229187012 ], [ -79.856803894042969, -6.956527233123779 ], [ -79.857086181640625, -6.956527233123779 ], [ -79.857086181640625, -6.956249237060547 ], [ -79.858192443847599, -6.956249237060547 ], [ -79.858192443847599, -6.955970764160156 ], [ -79.859024047851562, -6.95597314834589 ], [ -79.859024047851562, -6.955695152282658 ], [ -79.859306335449219, -6.955695152282658 ], [ -79.859306335449219, -6.955417156219426 ], [ -79.859580993652344, -6.955417156219426 ], [ -79.859580993652344, -6.95513916015625 ], [ -79.85986328125, -6.95513916015625 ], [ -79.85986328125, -6.954861164093018 ], [ -79.860137939453125, -6.954861164093018 ], [ -79.860137939453125, -6.954583168029785 ], [ -79.860420227050668, -6.954583168029785 ], [ -79.860420227050668, -6.954305171966553 ], [ -79.860969543456974, -6.954305171966553 ], [ -79.860969543456974, -6.95402717590332 ], [ -79.861251831054631, -6.95402717590332 ], [ -79.861251831054631, -6.953749179840088 ], [ -79.861526489257812, -6.953749179840088 ], [ -79.861526489257812, -6.953471183776855 ], [ -79.861808776855469, -6.953473091125431 ], [ -79.861808776855469, -6.953195095062199 ], [ -79.862083435058594, -6.953195095062199 ], [ -79.862083435058594, -6.952917098998967 ], [ -79.862358093261719, -6.952917098998967 ], [ -79.862358093261719, -6.952361106872502 ], [ -79.8629150390625, -6.952361106872502 ], [ -79.8629150390625, -6.952083110809269 ], [ -79.863471984863168, -6.952083110809269 ], [ -79.863471984863168, -6.951805114746037 ], [ -79.863746643066349, -6.951805114746037 ], [ -79.863746643066349, -6.951527118682861 ], [ -79.864303588867131, -6.951527118682861 ], [ -79.864303588867131, -6.951248168945256 ], [ -79.864860534667969, -6.951248168945256 ], [ -79.864860534667969, -6.950973033905029 ], [ -79.865135192871094, -6.950973033905029 ], [ -79.865135192871094, -6.950695037841683 ], [ -79.865692138671875, -6.950695037841683 ], [ -79.865692138671875, -6.950417041778508 ], [ -79.865974426269531, -6.950417041778508 ], [ -79.865974426269531, -6.950139045715275 ], [ -79.866531372070312, -6.950139045715275 ], [ -79.866531372070312, -6.949861049652043 ], [ -79.866806030273381, -6.949861049652043 ], [ -79.866806030273381, -6.949306964874268 ], [ -79.867080688476506, -6.949306964874268 ], [ -79.867080688476506, -6.947360038757324 ], [ -79.866806030273381, -6.947360038757324 ], [ -79.866806030273381, -6.947084903717041 ], [ -79.866531372070312, -6.947084903717041 ], [ -79.866531372070312, -6.946805953979435 ], [ -79.866249084472656, -6.946805953979435 ], [ -79.866249084472656, -6.946527957916203 ], [ -79.865692138671875, -6.946527957916203 ], [ -79.865692138671875, -6.946249961852971 ], [ -79.86541748046875, -6.946249961852971 ], [ -79.86541748046875, -6.945971965789795 ], [ -79.865135192871094, -6.945971965789795 ], [ -79.865135192871094, -6.94541597366333 ], [ -79.864860534667969, -6.94541597366333 ], [ -79.864860534667969, -6.944583892822209 ], [ -79.865135192871094, -6.944583892822209 ], [ -79.865135192871094, -6.943471908569279 ], [ -79.86541748046875, -6.943471908569279 ], [ -79.86541748046875, -6.942915916442814 ], [ -79.865692138671875, -6.942915916442814 ], [ -79.865692138671875, -6.942637920379582 ], [ -79.865974426269531, -6.942637920379582 ], [ -79.865974426269531, -6.942083835601807 ], [ -79.866249084472656, -6.942083835601807 ], [ -79.866249084472656, -6.941805839538574 ], [ -79.866531372070312, -6.941805839538574 ], [ -79.866531372070312, -6.941527843475228 ], [ -79.866806030273381, -6.941527843475228 ], [ -79.866806030273381, -6.941249847412053 ], [ -79.867080688476506, -6.941249847412053 ], [ -79.867080688476506, -6.94097185134882 ], [ -79.867362976074162, -6.94097185134882 ], [ -79.867362976074162, -6.93986177444458 ], [ -79.867080688476506, -6.93986177444458 ], [ -79.867080688476506, -6.939305782318115 ], [ -79.866806030273381, -6.939305782318115 ], [ -79.866806030273381, -6.938193798065186 ], [ -79.866531372070312, -6.938193798065186 ], [ -79.866531372070312, -6.935418128967285 ], [ -79.866249084472656, -6.935418128967285 ], [ -79.866249084472656, -6.93486213684082 ], [ -79.866531372070312, -6.93486213684082 ], [ -79.866531372070312, -6.934583187103215 ], [ -79.866806030273381, -6.934583187103215 ], [ -79.866806030273381, -6.934305191039982 ], [ -79.867362976074162, -6.934305191039982 ], [ -79.867362976074162, -6.934027194976807 ], [ -79.867637634277287, -6.934027194976807 ], [ -79.867637634277287, -6.933749198913574 ], [ -79.867919921874943, -6.933749198913574 ], [ -79.867919921874943, -6.933471202850342 ], [ -79.868194580078125, -6.933471202850342 ], [ -79.868194580078125, -6.933195114135629 ], [ -79.86846923828125, -6.933195114135629 ], [ -79.86846923828125, -6.932917118072453 ], [ -79.868751525878906, -6.932917118072453 ], [ -79.868751525878906, -6.932639122009221 ], [ -79.869026184082031, -6.932639122009221 ], [ -79.869026184082031, -6.932359218597412 ], [ -79.869583129882812, -6.932359218597412 ], [ -79.869583129882812, -6.93208122253418 ], [ -79.869857788085881, -6.932083129882756 ], [ -79.869857788085881, -6.931805133819523 ], [ -79.870140075683537, -6.931805133819523 ], [ -79.870140075683537, -6.931527137756291 ], [ -79.870414733886662, -6.931527137756291 ], [ -79.870414733886662, -6.931249141693058 ], [ -79.870697021484318, -6.931249141693058 ], [ -79.870697021484318, -6.930971145629826 ], [ -79.871246337890625, -6.930971145629826 ], [ -79.871246337890625, -6.930695056915283 ], [ -79.871528625488281, -6.930695056915283 ], [ -79.871528625488281, -6.930417060852051 ], [ -79.871803283691406, -6.930417060852051 ], [ -79.871803283691406, -6.930139064788818 ], [ -79.872085571289062, -6.930139064788818 ], [ -79.872085571289062, -6.929861068725586 ], [ -79.872360229492188, -6.929861068725586 ], [ -79.872360229492188, -6.92958307266224 ], [ -79.872642517089844, -6.92958307266224 ], [ -79.872642517089844, -6.929305076599064 ], [ -79.873191833496037, -6.929305076599064 ], [ -79.873191833496037, -6.929027080535832 ], [ -79.873474121093693, -6.929027080535832 ], [ -79.873474121093693, -6.928749084472599 ], [ -79.873748779296818, -6.928749084472599 ], [ -79.873748779296818, -6.928471088409367 ], [ -79.874031066894474, -6.928472995758057 ], [ -79.874031066894474, -6.928194999694824 ], [ -79.874305725097656, -6.928194999694824 ], [ -79.874305725097656, -6.927917003631592 ], [ -79.874580383300781, -6.927917003631592 ], [ -79.874580383300781, -6.927639007568359 ], [ -79.875137329101562, -6.927639007568359 ], [ -79.875137329101562, -6.927361011505127 ], [ -79.875419616699219, -6.927361011505127 ], [ -79.875419616699219, -6.927083015441895 ], [ -79.875694274902344, -6.927083015441895 ], [ -79.875694274902344, -6.926805019378662 ], [ -79.875968933105469, -6.926805019378662 ], [ -79.875968933105469, -6.926249027252197 ], [ -79.876251220703011, -6.92625093460083 ], [ -79.876251220703011, -6.925694942474365 ], [ -79.876525878906193, -6.925694942474365 ], [ -79.876525878906193, -6.925416946411133 ], [ -79.876808166503849, -6.925416946411133 ], [ -79.876808166503849, -6.9251389503479 ], [ -79.877082824706974, -6.9251389503479 ], [ -79.877082824706974, -6.924860954284668 ], [ -79.877357482910156, -6.924860954284668 ], [ -79.877357482910156, -6.924582958221436 ], [ -79.877639770507812, -6.924582958221436 ], [ -79.877639770507812, -6.924304962158203 ], [ -79.878196716308594, -6.924304962158203 ], [ -79.878196716308594, -6.924028873443547 ], [ -79.878753662109375, -6.924028873443547 ], [ -79.878753662109375, -6.923750877380314 ], [ -79.8790283203125, -6.923750877380314 ], [ -79.8790283203125, -6.923472881317082 ], [ -79.879585266113224, -6.923472881317082 ], [ -79.879585266113224, -6.923201084136963 ], [ -79.880142211914006, -6.923194885253849 ], [ -79.880142211914006, -6.922916889190674 ], [ -79.880691528320312, -6.922916889190674 ], [ -79.880691528320312, -6.922638893127441 ], [ -79.880973815917969, -6.922638893127441 ], [ -79.880973815917969, -6.922359943389836 ], [ -79.88153076171875, -6.922359943389836 ], [ -79.88153076171875, -6.922081947326603 ], [ -79.882080078125, -6.922081947326603 ], [ -79.882080078125, -6.921803951263371 ], [ -79.882637023925724, -6.921803951263371 ], [ -79.882637023925724, -6.921528816223088 ], [ -79.883193969726506, -6.921528816223088 ], [ -79.883193969726506, -6.921250820159855 ], [ -79.883468627929631, -6.921250820159855 ], [ -79.883468627929631, -6.920971870422363 ], [ -79.883750915527287, -6.920971870422363 ], [ -79.883750915527287, -6.920693874359131 ], [ -79.884025573730469, -6.920693874359131 ], [ -79.884025573730469, -6.920415878295785 ], [ -79.88458251953125, -6.920415878295785 ], [ -79.88458251953125, -6.920137882232609 ], [ -79.884864807128906, -6.920137882232609 ], [ -79.884864807128906, -6.919859886169377 ], [ -79.885139465332031, -6.919859886169377 ], [ -79.885139465332031, -6.919581890106144 ], [ -79.885414123535156, -6.919581890106144 ], [ -79.885414123535156, -6.919305801391602 ], [ -79.885696411132812, -6.919305801391602 ], [ -79.885696411132812, -6.919027805328369 ], [ -79.886253356933537, -6.919027805328369 ], [ -79.886253356933537, -6.918749809265137 ], [ -79.886528015136662, -6.918749809265137 ], [ -79.886528015136662, -6.918471813201904 ], [ -79.886802673339787, -6.918471813201904 ], [ -79.886802673339787, -6.917915821075439 ], [ -79.8870849609375, -6.917915821075439 ], [ -79.8870849609375, -6.917637825012207 ], [ -79.887641906738281, -6.917637825012207 ], [ -79.887641906738281, -6.917362213134766 ], [ -79.887916564941406, -6.917362213134766 ], [ -79.887916564941406, -6.917084217071533 ], [ -79.888191223144531, -6.917084217071533 ], [ -79.888191223144531, -6.916806221008301 ], [ -79.888748168945312, -6.916806221008301 ], [ -79.888748168945312, -6.916528224945068 ], [ -79.889030456542855, -6.916528224945068 ], [ -79.889030456542855, -6.916250228881836 ], [ -79.889305114746037, -6.916250228881836 ], [ -79.889305114746037, -6.914306163787842 ], [ -79.889579772949162, -6.914306163787842 ], [ -79.889579772949162, -6.914028167724609 ], [ -79.889862060546818, -6.914028167724609 ], [ -79.889862060546818, -6.913750171661377 ], [ -79.89013671875, -6.913750171661377 ], [ -79.89013671875, -6.913472175598145 ], [ -79.890419006347656, -6.913472175598145 ], [ -79.890419006347656, -6.913194179534912 ], [ -79.892639160156193, -6.913194179534912 ], [ -79.892639160156193, -6.91291618347168 ], [ -79.893196105956974, -6.91291618347168 ], [ -79.893196105956974, -6.912638187408447 ], [ -79.893470764160156, -6.912638187408447 ], [ -79.893470764160156, -6.912082195281982 ], [ -79.893753051757812, -6.912084102630558 ], [ -79.893753051757812, -6.911806106567326 ], [ -79.894027709960938, -6.911806106567326 ], [ -79.894027709960938, -6.911528110504094 ], [ -79.894302368164062, -6.911528110504094 ], [ -79.894302368164062, -6.910972118377686 ], [ -79.894584655761719, -6.910972118377686 ], [ -79.894584655761719, -6.910694122314453 ], [ -79.894859313964844, -6.910694122314453 ], [ -79.894859313964844, -6.910416126251221 ], [ -79.8951416015625, -6.910416126251221 ], [ -79.8951416015625, -6.910140037536507 ], [ -79.895416259765568, -6.910140037536507 ], [ -79.895416259765568, -6.909584045410099 ], [ -79.897087097167969, -6.909584045410099 ], [ -79.897087097167969, -6.909306049346867 ], [ -79.897361755371094, -6.909306049346867 ], [ -79.897361755371094, -6.908471107482796 ], [ -79.897636413574219, -6.908471107482796 ], [ -79.897636413574219, -6.907083034515381 ], [ -79.897918701171875, -6.907083034515381 ], [ -79.897918701171875, -6.906805038452148 ], [ -79.898475646972656, -6.906805038452148 ], [ -79.898475646972656, -6.906527042388916 ], [ -79.898750305175724, -6.906527042388916 ], [ -79.898750305175724, -6.906249046325684 ], [ -79.899024963378849, -6.906249046325684 ], [ -79.899024963378849, -6.905971050262451 ], [ -79.899581909179631, -6.905971050262451 ], [ -79.899581909179631, -6.905694961547795 ], [ -79.899864196777344, -6.905694961547795 ], [ -79.899864196777344, -6.905416965484619 ], [ -79.901527404785156, -6.905416965484619 ], [ -79.901527404785156, -6.905138969421387 ], [ -79.902084350585881, -6.905138969421387 ], [ -79.902084350585881, -6.904860973358154 ], [ -79.902641296386662, -6.904860973358154 ], [ -79.902641296386662, -6.904582977294922 ], [ -79.903190612792969, -6.904582977294922 ], [ -79.9031982421875, -6.904304981231689 ], [ -79.903472900390625, -6.904304981231689 ], [ -79.903472900390625, -6.904026985168457 ], [ -79.90374755859375, -6.904026985168457 ], [ -79.90374755859375, -6.903748989105225 ], [ -79.904304504394531, -6.903748989105225 ], [ -79.904304504394531, -6.903472900390568 ], [ -79.904586791992188, -6.903472900390568 ], [ -79.904586791992188, -6.903194904327336 ], [ -79.905136108398381, -6.903194904327336 ], [ -79.905136108398381, -6.902916908264103 ], [ -79.905418395996037, -6.902916908264103 ], [ -79.905418395996037, -6.902638912200871 ], [ -79.905975341796818, -6.902638912200871 ], [ -79.905975341796818, -6.902360916137638 ], [ -79.90625, -6.902360916137638 ], [ -79.90625, -6.902082920074406 ], [ -79.906524658203125, -6.902082920074406 ], [ -79.906524658203125, -6.90180492401123 ], [ -79.907081604003906, -6.90180492401123 ], [ -79.907081604003906, -6.901526927947998 ], [ -79.907363891601562, -6.901526927947998 ], [ -79.907363891601562, -6.901248931884766 ], [ -79.907913208007699, -6.901248931884766 ], [ -79.907913208007699, -6.900972843170052 ], [ -79.908470153808537, -6.900972843170052 ], [ -79.908470153808537, -6.900694847106877 ], [ -79.908752441406193, -6.900694847106877 ], [ -79.908752441406193, -6.900416851043644 ], [ -79.909027099609318, -6.900416851043644 ], [ -79.909027099609318, -6.899860858917179 ], [ -79.9093017578125, -6.899860858917179 ], [ -79.9093017578125, -6.899304866790715 ], [ -79.909584045410156, -6.899304866790715 ], [ -79.909584045410156, -6.899028778076172 ], [ -79.909858703613281, -6.899028778076172 ], [ -79.909858703613281, -6.898472785949707 ], [ -79.910697937011719, -6.898472785949707 ], [ -79.910697937011719, -6.898194789886475 ], [ -79.912086486816349, -6.898194789886475 ], [ -79.912086486816349, -6.897916793823242 ], [ -79.913475036621094, -6.897916793823242 ], [ -79.913475036621094, -6.89763879776001 ], [ -79.914024353027344, -6.89763879776001 ], [ -79.914024353027344, -6.897360801696664 ], [ -79.914306640625, -6.897360801696664 ], [ -79.914306640625, -6.896807193756104 ], [ -79.914581298828068, -6.896807193756104 ], [ -79.914581298828068, -6.896529197692871 ], [ -79.914863586425724, -6.896529197692871 ], [ -79.914863586425724, -6.895973205566406 ], [ -79.915412902831974, -6.895973205566406 ], [ -79.915412902831974, -6.895695209503174 ], [ -79.915969848632812, -6.895695209503174 ], [ -79.915969848632812, -6.895417213439941 ], [ -79.916252136230469, -6.895417213439941 ], [ -79.916252136230469, -6.895137786865234 ], [ -79.916526794433594, -6.895137786865234 ], [ -79.916526794433594, -6.89458179473877 ], [ -79.91680908203125, -6.89458179473877 ], [ -79.91680908203125, -6.894029140472412 ], [ -79.917083740234375, -6.894029140472412 ], [ -79.917083740234375, -6.893750190734806 ], [ -79.917915344238224, -6.893750190734806 ], [ -79.917915344238224, -6.893472194671631 ], [ -79.918746948242188, -6.893472194671631 ], [ -79.918746948242188, -6.893194198608398 ], [ -79.919029235839844, -6.893194198608398 ], [ -79.919029235839844, -6.892638206481934 ], [ -79.919303894042969, -6.892638206481934 ], [ -79.919303894042969, -6.892360210418701 ], [ -79.919586181640625, -6.892360210418701 ], [ -79.919586181640625, -6.892082214355469 ], [ -79.91986083984375, -6.892082214355469 ], [ -79.91986083984375, -6.891526222229004 ], [ -79.920135498046875, -6.891526222229004 ], [ -79.920135498046875, -6.891248226165771 ], [ -79.920417785644531, -6.891250133514347 ], [ -79.920417785644531, -6.890694141387883 ], [ -79.920692443847543, -6.890694141387883 ], [ -79.920692443847543, -6.890138149261418 ], [ -79.920974731445256, -6.890138149261418 ], [ -79.920974731445256, -6.889860153198242 ], [ -79.921249389648381, -6.889860153198242 ], [ -79.921249389648381, -6.88930606842041 ], [ -79.921524047851506, -6.88930606842041 ], [ -79.921524047851506, -6.888750076293888 ], [ -79.921806335449162, -6.888750076293888 ], [ -79.921806335449162, -6.888194084167424 ], [ -79.922080993652344, -6.888194084167424 ], [ -79.922080993652344, -6.887916088104191 ], [ -79.92236328125, -6.887916088104191 ], [ -79.92236328125, -6.887360095977726 ], [ -79.922637939453125, -6.887362003326416 ], [ -79.922637939453125, -6.886806011199951 ], [ -79.922920227050781, -6.886806011199951 ], [ -79.922920227050781, -6.886528015136719 ], [ -79.923194885253906, -6.886528015136719 ], [ -79.923194885253906, -6.885972023010254 ], [ -79.923469543457031, -6.885972023010254 ], [ -79.923469543457031, -6.885416030883675 ], [ -79.923751831054688, -6.885416030883675 ], [ -79.923751831054688, -6.884860038757267 ], [ -79.924026489257756, -6.884861946105957 ], [ -79.924026489257756, -6.884583950042725 ], [ -79.924308776855412, -6.884583950042725 ], [ -79.924308776855412, -6.88402795791626 ], [ -79.924583435058537, -6.88402795791626 ], [ -79.924583435058537, -6.883473873138371 ], [ -79.924858093261662, -6.883471965789795 ], [ -79.924858093261662, -6.882639884948674 ], [ -79.925140380859318, -6.882639884948674 ], [ -79.925140380859318, -6.881805896759033 ], [ -79.9254150390625, -6.881805896759033 ], [ -79.9254150390625, -6.881248950958195 ], [ -79.925697326660156, -6.881248950958195 ], [ -79.925697326660156, -6.880970954894963 ], [ -79.925971984863281, -6.880970954894963 ], [ -79.925971984863281, -6.880692958831787 ], [ -79.926246643066406, -6.880692958831787 ], [ -79.926246643066406, -6.880138874053955 ], [ -79.926528930664062, -6.880138874053955 ], [ -79.926528930664062, -6.879860877990609 ], [ -79.926803588867188, -6.879860877990609 ], [ -79.926803588867188, -6.879582881927433 ], [ -79.927085876464844, -6.879582881927433 ], [ -79.927085876464844, -6.879304885864201 ], [ -79.927360534667912, -6.879304885864201 ], [ -79.927360534667912, -6.879026889800969 ], [ -79.927635192871037, -6.879026889800969 ], [ -79.927635192871037, -6.878748893737736 ], [ -79.927917480468693, -6.878748893737736 ], [ -79.927917480468693, -6.878472805023193 ], [ -79.928192138671818, -6.878472805023193 ], [ -79.928192138671818, -6.878194808959961 ], [ -79.928474426269531, -6.878194808959961 ], [ -79.928474426269531, -6.877638816833496 ], [ -79.928749084472656, -6.877638816833496 ], [ -79.928749084472656, -6.876804828643799 ], [ -79.929031372070312, -6.876804828643799 ], [ -79.929031372070312, -6.87624883651722 ], [ -79.929306030273438, -6.87624883651722 ], [ -79.929306030273438, -6.875970840454045 ], [ -79.929306030273438, -6.87569522857666 ], [ -79.929580688476562, -6.87569522857666 ], [ -79.929580688476562, -6.875139236450195 ], [ -79.929862976074219, -6.875139236450195 ], [ -79.929862976074219, -6.874772071838322 ], [ -79.929862976074219, -6.874582767486572 ], [ -79.930137634277344, -6.874582767486572 ], [ -79.930137634277344, -6.87430477142334 ], [ -79.930297851562443, -6.87430477142334 ], [ -79.930694580078068, -6.87430477142334 ], [ -79.930694580078068, -6.874026775360107 ], [ -79.930969238281193, -6.874026775360107 ], [ -79.930969238281193, -6.873748779296875 ], [ -79.931251525878849, -6.873748779296875 ], [ -79.931251525878849, -6.873470783233643 ], [ -79.931526184082031, -6.873470783233643 ], [ -79.931526184082031, -6.87319278717041 ], [ -79.931808471679688, -6.873195171356201 ], [ -79.931808471679688, -6.872639179229736 ], [ -79.932083129882812, -6.872639179229736 ], [ -79.932083129882812, -6.872361183166504 ], [ -79.932357788085938, -6.872361183166504 ], [ -79.932357788085938, -6.872083187103271 ], [ -79.932640075683594, -6.872083187103271 ], [ -79.932640075683594, -6.870973110198918 ], [ -79.932914733886719, -6.870973110198918 ], [ -79.932914733886719, -6.869861125946045 ], [ -79.933197021484375, -6.869861125946045 ], [ -79.933197021484375, -6.868751049041691 ], [ -79.933471679687386, -6.868751049041691 ], [ -79.933471679687386, -6.867638111114445 ], [ -79.933746337890568, -6.867638111114445 ], [ -79.933746337890568, -6.866528034210205 ], [ -79.934028625488224, -6.866528034210205 ], [ -79.934028625488224, -6.865416049957275 ], [ -79.934303283691349, -6.865416049957275 ], [ -79.934303283691349, -6.864305973052979 ], [ -79.934585571289006, -6.864305973052979 ], [ -79.934585571289006, -6.862915992736816 ], [ -79.934860229492188, -6.862915992736816 ], [ -79.934860229492188, -6.861805915832463 ], [ -79.935142517089844, -6.861805915832463 ], [ -79.935142517089844, -6.86069393157959 ], [ -79.935417175292969, -6.86069393157959 ], [ -79.935417175292969, -6.858749866485539 ], [ -79.935691833496094, -6.858749866485539 ], [ -79.935691833496094, -6.856527805328312 ], [ -79.93597412109375, -6.856527805328312 ], [ -79.93597412109375, -6.854862213134766 ], [ -79.936248779296875, -6.854862213134766 ], [ -79.936248779296875, -6.854026794433594 ], [ -79.936531066894531, -6.854026794433594 ], [ -79.936531066894531, -6.853192806243896 ], [ -79.936805725097599, -6.853196144104004 ], [ -79.936805725097599, -6.85236120223999 ], [ -79.937080383300724, -6.85236120223999 ], [ -79.937080383300724, -6.851527214050293 ], [ -79.937362670898381, -6.851527214050293 ], [ -79.937362670898381, -6.850693225860596 ], [ -79.937637329101506, -6.850693225860596 ], [ -79.937637329101506, -6.849580764770508 ], [ -79.937919616699162, -6.849580764770508 ], [ -79.937919616699162, -6.848749160766602 ], [ -79.938194274902344, -6.848751068115234 ], [ -79.938194274902344, -6.84791707992548 ], [ -79.938468933105469, -6.84791707992548 ], [ -79.938468933105469, -6.847083091735783 ], [ -79.938751220703125, -6.847083091735783 ], [ -79.938751220703125, -6.846249103546086 ], [ -79.93902587890625, -6.846249103546086 ], [ -79.93902587890625, -6.845139026641846 ], [ -79.938751220703125, -6.845139026641846 ], [ -79.938751220703125, -6.843749046325627 ], [ -79.938468933105469, -6.843749046325627 ], [ -79.938468933105469, -6.842360973358154 ], [ -79.938194274902344, -6.842360973358154 ], [ -79.938194274902344, -6.842082023620605 ], [ -79.937919616699162, -6.842084884643498 ], [ -79.937919616699162, -6.841526031494141 ], [ -79.938194274902344, -6.84152889251709 ], [ -79.938194274902344, -6.840415954589787 ], [ -79.937919616699162, -6.840415954589787 ], [ -79.937919616699162, -6.839584827423039 ], [ -79.937637329101506, -6.839584827423039 ], [ -79.937637329101506, -6.838471889495793 ], [ -79.937362670898381, -6.838471889495793 ], [ -79.937362670898381, -6.837915897369328 ], [ -79.937637329101506, -6.837915897369328 ], [ -79.937637329101506, -6.837613105773812 ], [ -79.937637329101506, -6.83708381652832 ], [ -79.937751770019474, -6.83708381652832 ], [ -79.938751220703125, -6.83708381652832 ], [ -79.938751220703125, -6.837359905242863 ], [ -79.93902587890625, -6.837359905242863 ], [ -79.93902587890625, -6.836527824401855 ], [ -79.938751220703125, -6.836527824401855 ], [ -79.938751220703125, -6.836249828338623 ], [ -79.938468933105469, -6.836249828338623 ], [ -79.938468933105469, -6.83458423614502 ], [ -79.938751220703125, -6.83458423614502 ], [ -79.938751220703125, -6.834027767181396 ], [ -79.93902587890625, -6.834027767181396 ], [ -79.93902587890625, -6.833749771118164 ], [ -79.938751220703125, -6.833749771118164 ], [ -79.938751220703125, -6.832637786865234 ], [ -79.938468933105469, -6.832637786865234 ], [ -79.938468933105469, -6.831196784973088 ], [ -79.938468933105469, -6.830416202545166 ], [ -79.938751220703125, -6.830416202545166 ], [ -79.938751220703125, -6.829862117767334 ], [ -79.938468933105469, -6.829862117767334 ], [ -79.938468933105469, -6.827918052673283 ], [ -79.938751220703125, -6.827918052673283 ], [ -79.938751220703125, -6.828196048736515 ], [ -79.93902587890625, -6.828196048736515 ], [ -79.93902587890625, -6.827640056610051 ], [ -79.939308166503906, -6.827640056610051 ], [ -79.939308166503906, -6.826805114746037 ], [ -79.939582824707031, -6.826805114746037 ], [ -79.939582824707031, -6.826527118682804 ], [ -79.939857482910099, -6.826527118682804 ], [ -79.939857482910099, -6.82597112655634 ], [ -79.940139770507756, -6.82597112655634 ], [ -79.940139770507756, -6.825695037841797 ], [ -79.940414428710881, -6.825695037841797 ], [ -79.940414428710881, -6.825417041778564 ], [ -79.940696716308537, -6.825417041778564 ], [ -79.940696716308537, -6.8248610496521 ], [ -79.940971374511662, -6.8248610496521 ], [ -79.940971374511662, -6.824583053588867 ], [ -79.941253662109375, -6.824583053588867 ], [ -79.941253662109375, -6.824305057525635 ], [ -79.9415283203125, -6.824305057525635 ], [ -79.9415283203125, -6.824027061462402 ], [ -79.941802978515625, -6.824027061462402 ], [ -79.941802978515625, -6.823749065399056 ], [ -79.942085266113281, -6.823749065399056 ], [ -79.942085266113281, -6.823471069335881 ], [ -79.942359924316406, -6.823471069335881 ], [ -79.942359924316406, -6.822916984558105 ], [ -79.942642211914062, -6.822916984558105 ], [ -79.942642211914062, -6.821249008178711 ], [ -79.942359924316406, -6.821249008178711 ], [ -79.942359924316406, -6.820138931274414 ], [ -79.942642211914062, -6.820138931274414 ], [ -79.942642211914062, -6.819582939147949 ], [ -79.942916870117188, -6.819582939147949 ], [ -79.942916870117188, -6.819309234619141 ], [ -79.943191528320256, -6.819304943084717 ], [ -79.943191528320256, -6.818750858306828 ], [ -79.943473815917912, -6.818750858306828 ], [ -79.943473815917912, -6.818472862243596 ], [ -79.943748474121037, -6.818472862243596 ], [ -79.943748474121037, -6.817916870117131 ], [ -79.944030761718693, -6.817916870117131 ], [ -79.944030761718693, -6.817638874053898 ], [ -79.944305419921875, -6.817638874053898 ], [ -79.944305419921875, -6.81708288192749 ], [ -79.944580078125, -6.81708288192749 ], [ -79.944580078125, -6.816528797149658 ], [ -79.944862365722656, -6.816528797149658 ], [ -79.944862365722656, -6.815814971923771 ], [ -79.944862365722656, -6.815694808959904 ], [ -79.945137023925781, -6.815694808959904 ], [ -79.945137023925781, -6.815464019775277 ], [ -79.945137023925781, -6.815138816833439 ], [ -79.945419311523438, -6.815138816833439 ], [ -79.945419311523438, -6.815020084381047 ], [ -79.945419311523438, -6.81430721282959 ], [ -79.945693969726562, -6.814303874969426 ], [ -79.945693969726562, -6.813940048217773 ], [ -79.945693969726562, -6.813751220703125 ], [ -79.945968627929688, -6.813751220703125 ], [ -79.945968627929688, -6.812915802001953 ], [ -79.94625091552723, -6.812915802001953 ], [ -79.94625091552723, -6.812359809875488 ], [ -79.946525573730412, -6.812359809875488 ], [ -79.946525573730412, -6.811806201934814 ], [ -79.946807861328068, -6.811806201934814 ], [ -79.946807861328068, -6.81129789352417 ], [ -79.947082519531193, -6.81125020980835 ], [ -79.947082519531193, -6.810849189758301 ], [ -79.947082519531193, -6.810694217681885 ], [ -79.947364807128849, -6.810694217681885 ], [ -79.947364807128849, -6.810389041900635 ], [ -79.947364807128849, -6.81013822555542 ], [ -79.947517395019531, -6.81013822555542 ], [ -79.947639465332031, -6.81013822555542 ], [ -79.947639465332031, -6.809939861297607 ], [ -79.947639465332031, -6.809862136840763 ], [ -79.947914123535156, -6.809862136840763 ], [ -79.947914123535156, -6.809493064880314 ], [ -79.947914123535156, -6.809304237365723 ], [ -79.948028564453068, -6.809306144714299 ], [ -79.948196411132812, -6.809306144714299 ], [ -79.948196411132812, -6.809008121490422 ], [ -79.948196411132812, -6.808750152587891 ], [ -79.94830322265625, -6.808750152587891 ], [ -79.948471069335938, -6.808750152587891 ], [ -79.948471069335938, -6.808472156524658 ], [ -79.948753356933594, -6.808472156524658 ], [ -79.948753356933594, -6.807916164398193 ], [ -79.949028015136719, -6.807916164398193 ], [ -79.949028015136719, -6.807360172271729 ], [ -79.94930267333973, -6.807360172271729 ], [ -79.94930267333973, -6.807082176208496 ], [ -79.949584960937443, -6.807084083557072 ], [ -79.949584960937443, -6.806528091430607 ], [ -79.949859619140568, -6.806528091430607 ], [ -79.949859619140568, -6.806250095367375 ], [ -79.950141906738224, -6.806250095367375 ], [ -79.950141906738224, -6.80569410324091 ], [ -79.950416564941349, -6.80569410324091 ], [ -79.950416564941349, -6.805138111114502 ], [ -79.950691223144531, -6.805138111114502 ], [ -79.950691223144531, -6.80486011505127 ], [ -79.950973510742188, -6.804862022399902 ], [ -79.950973510742188, -6.804306030273324 ], [ -79.951530456542969, -6.804306030273324 ], [ -79.951530456542969, -6.803750038146916 ], [ -79.951248168945312, -6.803750038146916 ], [ -79.951248168945312, -6.802916049957219 ], [ -79.951530456542969, -6.802916049957219 ], [ -79.951530456542969, -6.80235481262207 ], [ -79.951530456542969, -6.801249027252197 ], [ -79.951805114746094, -6.801249027252197 ], [ -79.951805114746094, -6.801527976989746 ], [ -79.952049255371037, -6.801527976989746 ], [ -79.952079772949219, -6.801249027252197 ], [ -79.952217102050781, -6.801249027252197 ], [ -79.952362060546875, -6.801249027252197 ], [ -79.952362060546875, -6.801022052764893 ], [ -79.952362060546875, -6.800417900085449 ], [ -79.952529907226506, -6.800417900085449 ], [ -79.952636718749943, -6.800417900085449 ], [ -79.952636718749943, -6.799814224243164 ], [ -79.952636718749943, -6.799304962158203 ], [ -79.952919006347599, -6.799304962158203 ], [ -79.952919006347599, -6.798194885253849 ], [ -79.953193664550724, -6.798194885253849 ], [ -79.953193664550724, -6.797638893127385 ], [ -79.953475952148381, -6.797638893127385 ], [ -79.953475952148381, -6.79708290100092 ], [ -79.953750610351506, -6.79708290100092 ], [ -79.953750610351506, -6.796526908874455 ], [ -79.954025268554688, -6.796526908874455 ], [ -79.954025268554688, -6.796189785003662 ], [ -79.954025268554688, -6.79597282409668 ], [ -79.954154968261662, -6.79597282409668 ], [ -79.954307556152344, -6.79597282409668 ], [ -79.954307556152344, -6.795416831970215 ], [ -79.954582214355469, -6.795416831970215 ], [ -79.954582214355469, -6.794860839843693 ], [ -79.954864501953125, -6.794860839843693 ], [ -79.954864501953125, -6.794582843780461 ], [ -79.95513916015625, -6.794582843780461 ], [ -79.95513916015625, -6.794304847717228 ], [ -79.955413818359375, -6.794304847717228 ], [ -79.955413818359375, -6.794026851653996 ], [ -79.955696105957031, -6.794026851653996 ], [ -79.955696105957031, -6.793472766876221 ], [ -79.955970764160099, -6.793472766876221 ], [ -79.955970764160099, -6.793194770812988 ], [ -79.956253051757756, -6.793194770812988 ], [ -79.956253051757756, -6.792916774749756 ], [ -79.956527709960881, -6.792916774749756 ], [ -79.956527709960881, -6.792638778686523 ], [ -79.956802368164006, -6.792638778686523 ], [ -79.956802368164006, -6.792360782623291 ], [ -79.957084655761719, -6.792360782623291 ], [ -79.957084655761719, -6.791804790496826 ], [ -79.957359313964844, -6.791804790496826 ], [ -79.957359313964844, -6.79152679443348 ], [ -79.9576416015625, -6.79152679443348 ], [ -79.9576416015625, -6.79097318649292 ], [ -79.957916259765625, -6.79097318649292 ], [ -79.957916259765625, -6.790695190429688 ], [ -79.95819091796875, -6.790695190429688 ], [ -79.95819091796875, -6.790417194366455 ], [ -79.958473205566406, -6.790417194366455 ], [ -79.958473205566406, -6.78986120223999 ], [ -79.958747863769531, -6.78986120223999 ], [ -79.958747863769531, -6.789583206176758 ], [ -79.959030151367074, -6.789583206176758 ], [ -79.959030151367074, -6.789029121398926 ], [ -79.959304809570256, -6.789029121398926 ], [ -79.959304809570256, -6.788751125335693 ], [ -79.959030151367074, -6.788751125335693 ], [ -79.959030151367074, -6.788473129272461 ], [ -79.959304809570256, -6.788473129272461 ], [ -79.959304809570256, -6.788195133209229 ], [ -79.959587097167912, -6.788195133209229 ], [ -79.959587097167912, -6.787917137145996 ], [ -79.959861755371037, -6.787917137145996 ], [ -79.959861755371037, -6.78764104843134 ], [ -79.960418701171875, -6.787638187408447 ], [ -79.960418701171875, -6.787360191345215 ], [ -79.960693359375, -6.787360191345215 ], [ -79.960693359375, -6.787082195281982 ], [ -79.961250305175781, -6.787082195281982 ], [ -79.961250305175781, -6.786807060241642 ], [ -79.961524963378906, -6.786807060241642 ], [ -79.961524963378906, -6.78652906417841 ], [ -79.961807250976562, -6.78652906417841 ], [ -79.961807250976562, -6.786250114440861 ], [ -79.962081909179574, -6.786250114440861 ], [ -79.962081909179574, -6.785972118377629 ], [ -79.962364196777287, -6.785972118377629 ], [ -79.962364196777287, -6.785416126251164 ], [ -79.962638854980412, -6.785416126251164 ], [ -79.962638854980412, -6.785138130187931 ], [ -79.962913513183537, -6.785138130187931 ], [ -79.962913513183537, -6.784584045410156 ], [ -79.963195800781193, -6.784582138061467 ], [ -79.963195800781193, -6.784306049346924 ], [ -79.963470458984375, -6.784306049346924 ], [ -79.963470458984375, -6.784028053283691 ], [ -79.963752746582031, -6.784028053283691 ], [ -79.963752746582031, -6.783534049987793 ], [ -79.964027404785156, -6.783472061157227 ], [ -79.964027404785156, -6.78319406509388 ], [ -79.964302062988281, -6.78319406509388 ], [ -79.964302062988281, -6.782638072967472 ], [ -79.964584350585938, -6.782638072967472 ], [ -79.964584350585938, -6.78236007690424 ], [ -79.964859008789062, -6.78236007690424 ], [ -79.964859008789062, -6.781805992126465 ], [ -79.965141296386719, -6.781805992126465 ], [ -79.965141296386719, -6.781527996063232 ], [ -79.965415954589787, -6.781527996063232 ], [ -79.965415954589787, -6.780972003936768 ], [ -79.965690612792912, -6.780972003936768 ], [ -79.965698242187443, -6.780694007873535 ], [ -79.965972900390568, -6.780694007873535 ], [ -79.965972900390568, -6.78013801574707 ], [ -79.966247558593693, -6.78013801574707 ], [ -79.966247558593693, -6.779860019683838 ], [ -79.966529846191349, -6.779861927032471 ], [ -79.966529846191349, -6.779305934906006 ], [ -79.966804504394531, -6.779305934906006 ], [ -79.966804504394531, -6.778749942779541 ], [ -79.967086791992188, -6.778749942779541 ], [ -79.967086791992188, -6.778193950653076 ], [ -79.967361450195312, -6.778193950653076 ], [ -79.967361450195312, -6.777639865875187 ], [ -79.967636108398438, -6.777639865875187 ], [ -79.967636108398438, -6.777083873748722 ], [ -79.967918395996094, -6.777083873748722 ], [ -79.967918395996094, -6.776527881622314 ], [ -79.968193054199219, -6.776527881622314 ], [ -79.968193054199219, -6.77597188949585 ], [ -79.968475341796875, -6.77597188949585 ], [ -79.968475341796875, -6.775417804717961 ], [ -79.96875, -6.775417804717961 ], [ -79.96875, -6.774861812591496 ], [ -79.969024658203068, -6.774861812591496 ], [ -79.969024658203068, -6.774305820465031 ], [ -79.969306945800724, -6.774305820465031 ], [ -79.969306945800724, -6.77374887466425 ], [ -79.969581604003849, -6.77374887466425 ], [ -79.969581604003849, -6.773192882537785 ], [ -79.969863891601562, -6.773192882537785 ], [ -79.969863891601562, -6.77263879776001 ], [ -79.970138549804688, -6.77263879776001 ], [ -79.970138549804688, -6.772082805633545 ], [ -79.970413208007812, -6.772082805633545 ], [ -79.970413208007812, -6.77152681350708 ], [ -79.970695495605469, -6.77152681350708 ], [ -79.970695495605469, -6.770692825317383 ], [ -79.970970153808594, -6.770692825317383 ], [ -79.970970153808594, -6.769861221313477 ], [ -79.97125244140625, -6.769861221313477 ], [ -79.97125244140625, -6.769305229187012 ], [ -79.971527099609375, -6.769305229187012 ], [ -79.971527099609375, -6.769027233123779 ], [ -79.971801757812443, -6.769027233123779 ], [ -79.971801757812443, -6.76763916015625 ], [ -79.972084045410099, -6.76763916015625 ], [ -79.972084045410099, -6.767361164093018 ], [ -79.971801757812443, -6.767361164093018 ], [ -79.971801757812443, -6.767083168029785 ], [ -79.972084045410099, -6.767083168029785 ], [ -79.972084045410099, -6.766805171966553 ], [ -79.972358703613224, -6.766805171966553 ], [ -79.972358703613224, -6.765971183776855 ], [ -79.972640991210881, -6.765973091125431 ], [ -79.972640991210881, -6.765417098998967 ], [ -79.972915649414062, -6.765417098998967 ], [ -79.972915649414062, -6.764861106872502 ], [ -79.973197937011719, -6.764861106872502 ], [ -79.973197937011719, -6.763749122619629 ], [ -79.973472595214844, -6.763749122619629 ], [ -79.973472595214844, -6.762639045715275 ], [ -79.973747253417969, -6.762639045715275 ], [ -79.973747253417969, -6.76208305358881 ], [ -79.974029541015625, -6.76208305358881 ], [ -79.974029541015625, -6.761528968811035 ], [ -79.97430419921875, -6.761526107788029 ], [ -79.97430419921875, -6.76097297668457 ], [ -79.974586486816406, -6.76097297668457 ], [ -79.974586486816406, -6.760416030883789 ], [ -79.974861145019418, -6.760416030883789 ], [ -79.974861145019418, -6.760138034820557 ], [ -79.975135803222599, -6.760138034820557 ], [ -79.975135803222599, -6.759860038757324 ], [ -79.975418090820256, -6.759860038757324 ], [ -79.975418090820256, -6.759584903717041 ], [ -79.975692749023381, -6.759584903717041 ], [ -79.975692749023381, -6.759306907653809 ], [ -79.975975036621037, -6.759306907653809 ], [ -79.975975036621037, -6.75902795791626 ], [ -79.976249694824219, -6.75902795791626 ], [ -79.976249694824219, -6.758749961853027 ], [ -79.976524353027344, -6.758749961853027 ], [ -79.976524353027344, -6.758471965789795 ], [ -79.976806640625, -6.758471965789795 ], [ -79.976806640625, -6.758193969726562 ], [ -79.977081298828125, -6.758193969726562 ], [ -79.977081298828125, -6.75791597366333 ], [ -79.977363586425781, -6.75791597366333 ], [ -79.977363586425781, -6.757637977600098 ], [ -79.977638244628906, -6.757637977600098 ], [ -79.977638244628906, -6.756249904632512 ], [ -79.979026794433537, -6.756249904632512 ], [ -79.979049682617131, -6.755921840667725 ], [ -79.979164123535156, -6.755971908569279 ], [ -79.979583740234375, -6.755971908569279 ], [ -79.979583740234375, -6.755693912506047 ], [ -79.9798583984375, -6.755693912506047 ], [ -79.9798583984375, -6.755415916442871 ], [ -79.980415344238281, -6.755415916442871 ], [ -79.980415344238281, -6.755137920379639 ], [ -79.980697631835938, -6.755137920379639 ], [ -79.980697631835938, -6.754859924316406 ], [ -79.980972290039062, -6.754859924316406 ], [ -79.980972290039062, -6.754583835601693 ], [ -79.981246948242131, -6.754583835601693 ], [ -79.981246948242131, -6.754305839538517 ], [ -79.981529235839787, -6.754305839538517 ], [ -79.981529235839787, -6.754027843475285 ], [ -79.982086181640568, -6.754027843475285 ], [ -79.982086181640568, -6.753749847412053 ], [ -79.982360839843693, -6.753749847412053 ], [ -79.982360839843693, -6.75347185134882 ], [ -79.982635498046875, -6.75347185134882 ], [ -79.982635498046875, -6.753193855285588 ], [ -79.982917785644531, -6.753193855285588 ], [ -79.982917785644531, -6.752637863159123 ], [ -79.983192443847656, -6.752637863159123 ], [ -79.983192443847656, -6.75236177444458 ], [ -79.983474731445312, -6.75236177444458 ], [ -79.983474731445312, -6.752083778381348 ], [ -79.983749389648438, -6.752083778381348 ], [ -79.983749389648438, -6.751805782318115 ], [ -79.984024047851562, -6.751805782318115 ], [ -79.984024047851562, -6.751527786254883 ], [ -79.984306335449219, -6.751527786254883 ], [ -79.984306335449219, -6.75124979019165 ], [ -79.984580993652287, -6.75124979019165 ], [ -79.984580993652287, -6.750971794128304 ], [ -79.984863281249943, -6.750971794128304 ], [ -79.984863281249943, -6.750693798065129 ], [ -79.985137939453068, -6.750693798065129 ], [ -79.985137939453068, -6.750415802001896 ], [ -79.985420227050724, -6.750415802001896 ], [ -79.985420227050724, -6.750140190124512 ], [ -79.985694885253906, -6.750140190124512 ], [ -79.985694885253906, -6.749862194061279 ], [ -79.985969543457031, -6.749862194061279 ], [ -79.985969543457031, -6.749584197998047 ], [ -79.986251831054688, -6.749584197998047 ], [ -79.986251831054688, -6.749306201934814 ], [ -79.986526489257812, -6.749306201934814 ], [ -79.986526489257812, -6.749028205871582 ], [ -79.986808776855469, -6.749028205871582 ], [ -79.986808776855469, -6.74875020980835 ], [ -79.987083435058594, -6.74875020980835 ], [ -79.987083435058594, -6.748472213745117 ], [ -79.987358093261719, -6.748472213745117 ], [ -79.987358093261719, -6.74819278717041 ], [ -79.987640380859261, -6.74819278717041 ], [ -79.987640380859261, -6.747918128967285 ], [ -79.987915039062443, -6.747918128967285 ], [ -79.987915039062443, -6.747640132904053 ], [ -79.988197326660099, -6.747640132904053 ], [ -79.988197326660099, -6.74736213684082 ], [ -79.988746643066406, -6.74736213684082 ], [ -79.988746643066406, -6.747084140777588 ], [ -79.989303588867188, -6.747084140777588 ], [ -79.989303588867188, -6.746805191040039 ], [ -79.990135192871094, -6.746805191040039 ], [ -79.990135192871094, -6.746527194976807 ], [ -79.990692138671761, -6.746527194976807 ], [ -79.990692138671761, -6.746249198913574 ], [ -79.991249084472599, -6.746249198913574 ], [ -79.991249084472599, -6.745971202850342 ], [ -79.991806030273381, -6.745971202850342 ], [ -79.991806030273381, -6.745696067810002 ], [ -79.992362976074219, -6.745696067810002 ], [ -79.992362976074219, -6.745417118072453 ], [ -79.992637634277344, -6.745417118072453 ], [ -79.992637634277344, -6.745139122009221 ], [ -79.993194580078125, -6.745139122009221 ], [ -79.993194580078125, -6.744859218597412 ], [ -79.99346923828125, -6.744859218597412 ], [ -79.99346923828125, -6.74458122253418 ], [ -79.993751525878906, -6.744583129882756 ], [ -79.993751525878906, -6.744305133819523 ], [ -79.994308471679631, -6.744305133819523 ], [ -79.994308471679631, -6.744027137756291 ], [ -79.994583129882756, -6.744027137756291 ], [ -79.994583129882756, -6.743749141693058 ], [ -79.994857788085881, -6.743749141693058 ], [ -79.994857788085881, -6.743471145629883 ], [ -79.995140075683537, -6.743471145629883 ], [ -79.995140075683537, -6.742917060852051 ], [ -79.995414733886719, -6.742917060852051 ], [ -79.995414733886719, -6.742639064788705 ], [ -79.995697021484375, -6.742639064788705 ], [ -79.995697021484375, -6.742083072662297 ], [ -79.9959716796875, -6.742083072662297 ], [ -79.9959716796875, -6.741527080535832 ], [ -79.996246337890625, -6.741527080535832 ], [ -79.996246337890625, -6.741249084472599 ], [ -79.996528625488281, -6.741249084472599 ], [ -79.996528625488281, -6.740971088409367 ], [ -79.997085571289062, -6.740972995758057 ], [ -79.997085571289062, -6.740694999694824 ], [ -79.997360229492131, -6.740694999694824 ], [ -79.997360229492131, -6.740417003631592 ], [ -79.997917175292912, -6.740417003631592 ], [ -79.997917175292912, -6.740139007568359 ], [ -79.998191833496037, -6.740139007568359 ], [ -79.998191833496037, -6.739861011505127 ], [ -79.99847412109375, -6.739861011505127 ], [ -79.99847412109375, -6.739583015441895 ], [ -79.999031066894531, -6.739583015441895 ], [ -79.999031066894531, -6.739305019378662 ], [ -79.999305725097656, -6.739305019378662 ], [ -79.999305725097656, -6.739027023315316 ], [ -79.999862670898438, -6.739027023315316 ], [ -79.999862670898438, -6.738471031188908 ], [ -80.000137329101562, -6.738471031188908 ], [ -80.001251220703068, -6.738472938537598 ], [ -80.001251220703068, -6.738194942474365 ], [ -80.002082824707031, -6.738194942474365 ], [ -80.002082824707031, -6.737916946411133 ], [ -80.002357482910156, -6.737916946411133 ], [ -80.002357482910156, -6.7376389503479 ], [ -80.002639770507812, -6.7376389503479 ], [ -80.002639770507812, -6.737360954284668 ], [ -80.002914428710938, -6.737360954284668 ], [ -80.002914428710938, -6.737082958221436 ], [ -80.003471374511605, -6.737082958221436 ], [ -80.003471374511605, -6.736804962158203 ], [ -80.004028320312443, -6.736804962158203 ], [ -80.004028320312443, -6.736528873443547 ], [ -80.004302978515568, -6.736528873443547 ], [ -80.004302978515568, -6.735972881317139 ], [ -80.004585266113224, -6.735972881317139 ], [ -80.004585266113224, -6.735694885253906 ], [ -80.004859924316406, -6.735694885253906 ], [ -80.004859924316406, -6.735416889190674 ], [ -80.005142211914062, -6.735416889190674 ], [ -80.005142211914062, -6.735138893127441 ], [ -80.005416870117188, -6.735138893127441 ], [ -80.005416870117188, -6.734581947326603 ], [ -80.005691528320312, -6.734581947326603 ], [ -80.005691528320312, -6.734303951263428 ], [ -80.005973815917969, -6.734303951263428 ], [ -80.005973815917969, -6.734028816223088 ], [ -80.00653076171875, -6.734028816223088 ], [ -80.00653076171875, -6.733750820159855 ], [ -80.006805419921761, -6.733750820159855 ], [ -80.006805419921761, -6.733472824096623 ], [ -80.007080078124943, -6.733472824096623 ], [ -80.007080078124943, -6.733193874359074 ], [ -80.008193969726562, -6.733193874359074 ], [ -80.008193969726562, -6.732915878295842 ], [ -80.008468627929688, -6.732915878295842 ], [ -80.008468627929688, -6.732081890106144 ], [ -80.008750915527344, -6.732081890106144 ], [ -80.008750915527344, -6.731803894042912 ], [ -80.009025573730469, -6.731803894042912 ], [ -80.009025573730469, -6.731527805328369 ], [ -80.009307861328125, -6.731527805328369 ], [ -80.009307861328125, -6.731249809265137 ], [ -80.00958251953125, -6.731249809265137 ], [ -80.00958251953125, -6.730971813201904 ], [ -80.009864807128906, -6.730971813201904 ], [ -80.009864807128906, -6.730693817138672 ], [ -80.010139465331974, -6.730693817138672 ], [ -80.010139465331974, -6.730415821075439 ], [ -80.010414123535099, -6.730415821075439 ], [ -80.010414123535099, -6.729859828948861 ], [ -80.010696411132756, -6.729862213134766 ], [ -80.010696411132756, -6.729584217071533 ], [ -80.011253356933537, -6.729584217071533 ], [ -80.011253356933537, -6.729306221008301 ], [ -80.011802673339844, -6.729306221008301 ], [ -80.011802673339844, -6.729028224945068 ], [ -80.012359619140625, -6.729028224945068 ], [ -80.012359619140625, -6.728750228881836 ], [ -80.012916564941406, -6.728750228881836 ], [ -80.012916564941406, -6.728472232818604 ], [ -80.013191223144474, -6.728472232818604 ], [ -80.013191223144474, -6.728194236755371 ], [ -80.013473510742131, -6.728194236755371 ], [ -80.013473510742131, -6.72791576385498 ], [ -80.014030456542912, -6.72791576385498 ], [ -80.014030456542912, -6.727637767791748 ], [ -80.014305114746037, -6.727637767791748 ], [ -80.014305114746037, -6.727359771728516 ], [ -80.014579772949219, -6.727359771728516 ], [ -80.014579772949219, -6.727081775665283 ], [ -80.014862060546875, -6.727084159851074 ], [ -80.014862060546875, -6.726806163787842 ], [ -80.01513671875, -6.726806163787842 ], [ -80.01513671875, -6.726528167724609 ], [ -80.015419006347656, -6.726528167724609 ], [ -80.015419006347656, -6.725972175598145 ], [ -80.015693664550781, -6.725972175598145 ], [ -80.015693664550781, -6.725694179534912 ], [ -80.015975952148438, -6.725694179534912 ], [ -80.015975952148438, -6.72541618347168 ], [ -80.016250610351449, -6.72541618347168 ], [ -80.016250610351449, -6.725138187408447 ], [ -80.016807556152287, -6.725138187408447 ], [ -80.016807556152287, -6.724860191345215 ], [ -80.017082214355412, -6.724860191345215 ], [ -80.017082214355412, -6.724582195281982 ], [ -80.017364501953068, -6.724584102630558 ], [ -80.017364501953068, -6.724306106567326 ], [ -80.01763916015625, -6.724306106567326 ], [ -80.01763916015625, -6.72402811050415 ], [ -80.017913818359375, -6.72402811050415 ], [ -80.017913818359375, -6.723750114440918 ], [ -80.018753051757812, -6.723750114440918 ], [ -80.018753051757812, -6.723472118377686 ], [ -80.019027709960938, -6.723472118377686 ], [ -80.019027709960938, -6.723194122314453 ], [ -80.019584655761605, -6.723194122314453 ], [ -80.019584655761605, -6.722916126251221 ], [ -80.019859313964787, -6.722916126251221 ], [ -80.019859313964787, -6.722362041473332 ], [ -80.020141601562443, -6.722362041473332 ], [ -80.020141601562443, -6.721806049346867 ], [ -80.020416259765568, -6.721806049346867 ], [ -80.020416259765568, -6.721528053283635 ], [ -80.02069091796875, -6.721528053283635 ], [ -80.02069091796875, -6.721250057220402 ], [ -80.020973205566406, -6.721250057220402 ], [ -80.020973205566406, -6.720971107482853 ], [ -80.021247863769531, -6.720971107482853 ], [ -80.021247863769531, -6.720693111419621 ], [ -80.021530151367188, -6.720693111419621 ], [ -80.021530151367188, -6.720417976379395 ], [ -80.022087097167969, -6.720417976379395 ], [ -80.022087097167969, -6.71986198425293 ], [ -80.022361755371094, -6.71986198425293 ], [ -80.022361755371094, -6.719583034515381 ], [ -80.022636413574105, -6.719583034515381 ], [ -80.022636413574105, -6.719305038452148 ], [ -80.022918701171818, -6.719305038452148 ], [ -80.022918701171818, -6.718749046325684 ], [ -80.023475646972599, -6.718749046325684 ], [ -80.023475646972599, -6.718471050262451 ], [ -80.024581909179688, -6.718471050262451 ], [ -80.024581909179688, -6.718194961547852 ], [ -80.024864196777344, -6.718194961547852 ], [ -80.024864196777344, -6.717916965484619 ], [ -80.025138854980469, -6.717916965484619 ], [ -80.025138854980469, -6.717638969421387 ], [ -80.025413513183594, -6.717638969421387 ], [ -80.025413513183594, -6.717360973358154 ], [ -80.02569580078125, -6.717360973358154 ], [ -80.02569580078125, -6.716804981231689 ], [ -80.025970458984318, -6.716804981231689 ], [ -80.025970458984318, -6.715972900390568 ], [ -80.026252746581974, -6.715972900390568 ], [ -80.026252746581974, -6.715416908264103 ], [ -80.026527404785099, -6.715416908264103 ], [ -80.026527404785099, -6.714860916137695 ], [ -80.027359008789062, -6.714860916137695 ], [ -80.027359008789062, -6.714582920074463 ], [ -80.027641296386719, -6.714582920074463 ], [ -80.027641296386719, -6.71430492401123 ], [ -80.027915954589844, -6.71430492401123 ], [ -80.027915954589844, -6.714026927947998 ], [ -80.028190612792969, -6.714026927947998 ], [ -80.0281982421875, -6.713472843170109 ], [ -80.028472900390625, -6.713472843170109 ], [ -80.028472900390625, -6.713194847106877 ], [ -80.02874755859375, -6.713194847106877 ], [ -80.02874755859375, -6.712916851043644 ], [ -80.030136108398381, -6.712916851043644 ], [ -80.030136108398381, -6.712638854980412 ], [ -80.030418395996094, -6.712638854980412 ], [ -80.030418395996094, -6.712360858917179 ], [ -80.030693054199219, -6.712360858917179 ], [ -80.030693054199219, -6.711804866790715 ], [ -80.030975341796875, -6.711804866790715 ], [ -80.030975341796875, -6.711526870727482 ], [ -80.03125, -6.711526870727482 ], [ -80.03125, -6.711250782012939 ], [ -80.031806945800781, -6.711250782012939 ], [ -80.031806945800781, -6.710972785949707 ], [ -80.032638549804631, -6.710972785949707 ], [ -80.032638549804631, -6.710416793823129 ], [ -80.032913208007756, -6.710416793823129 ], [ -80.032913208007756, -6.710138797759953 ], [ -80.033195495605412, -6.710138797759953 ], [ -80.033195495605412, -6.709860801696721 ], [ -80.033470153808594, -6.709860801696721 ], [ -80.033470153808594, -6.709582805633488 ], [ -80.03375244140625, -6.709582805633488 ], [ -80.03375244140625, -6.709307193756104 ], [ -80.034027099609375, -6.709307193756104 ], [ -80.034027099609375, -6.709029197692871 ], [ -80.0343017578125, -6.709029197692871 ], [ -80.0343017578125, -6.708751201629639 ], [ -80.034584045410156, -6.708751201629639 ], [ -80.034584045410156, -6.708473205566406 ], [ -80.034858703613281, -6.708473205566406 ], [ -80.034858703613281, -6.708195209503174 ], [ -80.035140991210938, -6.708195209503174 ], [ -80.035140991210938, -6.707917213439941 ], [ -80.037086486816406, -6.707917213439941 ], [ -80.037086486816406, -6.70708179473877 ], [ -80.03680419921875, -6.70708179473877 ], [ -80.03680419921875, -6.706529140472412 ], [ -80.037086486816406, -6.706529140472412 ], [ -80.037086486816406, -6.70625114440918 ], [ -80.037361145019531, -6.70625114440918 ], [ -80.037361145019531, -6.705972194671631 ], [ -80.037918090820312, -6.705972194671631 ], [ -80.037918090820312, -6.70625114440918 ], [ -80.039306640624943, -6.70625114440918 ], [ -80.039306640624943, -6.705972194671631 ], [ -80.039581298828068, -6.705972194671631 ], [ -80.039581298828068, -6.705694198608398 ], [ -80.039863586425724, -6.705694198608398 ], [ -80.039863586425724, -6.705416202545166 ], [ -80.040138244628906, -6.705416202545166 ], [ -80.040138244628906, -6.704860210418701 ], [ -80.040412902832031, -6.704860210418701 ], [ -80.040412902832031, -6.704582214355469 ], [ -80.040695190429688, -6.704582214355469 ], [ -80.040695190429688, -6.704026222229004 ], [ -80.041809082031136, -6.704026222229004 ], [ -80.041809082031136, -6.703748226165771 ], [ -80.042083740234318, -6.703748226165771 ], [ -80.042083740234318, -6.702638149261475 ], [ -80.042358398437443, -6.702638149261475 ], [ -80.042358398437443, -6.702360153198242 ], [ -80.042640686035099, -6.702360153198242 ], [ -80.042640686035099, -6.70208215713501 ], [ -80.043197631835938, -6.70208215713501 ], [ -80.043197631835938, -6.702360153198242 ], [ -80.044029235839844, -6.702360153198242 ], [ -80.044029235839844, -6.70208215713501 ], [ -80.044303894042969, -6.70208215713501 ], [ -80.044303894042969, -6.701806068420353 ], [ -80.045135498046818, -6.701806068420353 ], [ -80.045135498046818, -6.701528072357121 ], [ -80.045417785644474, -6.701528072357121 ], [ -80.045417785644474, -6.701250076293888 ], [ -80.045692443847599, -6.701250076293888 ], [ -80.045692443847599, -6.700972080230656 ], [ -80.045974731445256, -6.700972080230656 ], [ -80.045974731445256, -6.700694084167424 ], [ -80.046249389648438, -6.700694084167424 ], [ -80.046249389648438, -6.700416088104191 ], [ -80.046524047851562, -6.700416088104191 ], [ -80.046524047851562, -6.700138092040959 ], [ -80.046806335449219, -6.700138092040959 ], [ -80.046806335449219, -6.699860095977726 ], [ -80.04736328125, -6.699862003326416 ], [ -80.04736328125, -6.699584007263184 ], [ -80.047637939453125, -6.699584007263184 ], [ -80.047637939453125, -6.699306011199951 ], [ -80.048194885253793, -6.699306011199951 ], [ -80.048194885253793, -6.699028015136719 ], [ -80.048469543456974, -6.699028015136719 ], [ -80.048469543456974, -6.698750019073486 ], [ -80.048751831054631, -6.698750019073486 ], [ -80.048751831054631, -6.69847202301014 ], [ -80.049308776855412, -6.69847202301014 ], [ -80.049308776855412, -6.698194026946965 ], [ -80.049583435058594, -6.698194026946965 ], [ -80.049583435058594, -6.697360038757267 ], [ -80.049858093261719, -6.697360038757267 ], [ -80.049858093261719, -6.69652795791626 ], [ -80.0504150390625, -6.69652795791626 ], [ -80.0504150390625, -6.696249961853027 ], [ -80.051803588867131, -6.696249961853027 ], [ -80.051803588867131, -6.695693969726562 ], [ -80.052360534667912, -6.695693969726562 ], [ -80.052360534667912, -6.69541597366333 ], [ -80.052635192871094, -6.69541597366333 ], [ -80.052635192871094, -6.69513988494873 ], [ -80.053192138671875, -6.69513988494873 ], [ -80.053192138671875, -6.694861888885498 ], [ -80.053474426269531, -6.694861888885498 ], [ -80.053474426269531, -6.694583892822266 ], [ -80.053749084472656, -6.694583892822266 ], [ -80.053749084472656, -6.694305896759033 ], [ -80.054031372070312, -6.694305896759033 ], [ -80.054031372070312, -6.694027900695801 ], [ -80.054580688476506, -6.694027900695801 ], [ -80.054580688476506, -6.693748950958252 ], [ -80.054862976074162, -6.693748950958252 ], [ -80.054862976074162, -6.69347095489502 ], [ -80.055137634277287, -6.69347095489502 ], [ -80.055137634277287, -6.692917823791447 ], [ -80.055694580078068, -6.692917823791447 ], [ -80.055694580078068, -6.692639827728215 ], [ -80.05596923828125, -6.692639827728215 ], [ -80.05596923828125, -6.692360877990666 ], [ -80.056526184082031, -6.692360877990666 ], [ -80.056526184082031, -6.692082881927433 ], [ -80.056808471679688, -6.692082881927433 ], [ -80.056808471679688, -6.691804885864201 ], [ -80.057083129882812, -6.691804885864201 ], [ -80.057083129882812, -6.691526889800969 ], [ -80.057357788085938, -6.691526889800969 ], [ -80.057357788085938, -6.690970897674504 ], [ -80.05764007568348, -6.690970897674504 ], [ -80.05764007568348, -6.690416812896729 ], [ -80.058746337890568, -6.690416812896729 ], [ -80.058746337890568, -6.690138816833496 ], [ -80.059303283691406, -6.690138816833496 ], [ -80.059303283691406, -6.689860820770264 ], [ -80.059585571289062, -6.689860820770264 ], [ -80.059585571289062, -6.689582824707031 ], [ -80.060142517089844, -6.689582824707031 ], [ -80.060142517089844, -6.689304828643685 ], [ -80.06069183349598, -6.689304828643685 ], [ -80.06069183349598, -6.68902683258051 ], [ -80.060974121093636, -6.68902683258051 ], [ -80.060974121093636, -6.688473224639893 ], [ -80.061248779296818, -6.688473224639893 ], [ -80.061248779296818, -6.68819522857666 ], [ -80.061805725097599, -6.68819522857666 ], [ -80.061805725097599, -6.687917232513428 ], [ -80.062080383300781, -6.687917232513428 ], [ -80.062080383300781, -6.687639236450195 ], [ -80.062362670898438, -6.687639236450195 ], [ -80.062362670898438, -6.687360763549805 ], [ -80.062919616699219, -6.687360763549805 ], [ -80.062919616699219, -6.687082767486572 ], [ -80.063194274902344, -6.687082767486572 ], [ -80.063194274902344, -6.686526775360107 ], [ -80.064025878906136, -6.686526775360107 ], [ -80.064025878906136, -6.686248779296875 ], [ -80.064308166503849, -6.686251163482666 ], [ -80.064308166503849, -6.685695171356201 ], [ -80.064582824706974, -6.685695171356201 ], [ -80.064582824706974, -6.685139179229736 ], [ -80.064857482910099, -6.685139179229736 ], [ -80.064857482910099, -6.684583187103271 ], [ -80.065139770507756, -6.684583187103271 ], [ -80.065139770507756, -6.684305191040039 ], [ -80.065414428710938, -6.684305191040039 ], [ -80.065414428710938, -6.684027194976807 ], [ -80.065696716308594, -6.684027194976807 ], [ -80.065696716308594, -6.683749198913574 ], [ -80.065971374511719, -6.68375110626215 ], [ -80.065971374511719, -6.683195114135742 ], [ -80.066253662109375, -6.683195114135742 ], [ -80.066253662109375, -6.68291711807251 ], [ -80.0665283203125, -6.68291711807251 ], [ -80.0665283203125, -6.682639122009277 ], [ -80.067359924316349, -6.682639122009277 ], [ -80.067359924316349, -6.683749198913574 ], [ -80.068473815917912, -6.68375110626215 ], [ -80.068473815917912, -6.68291711807251 ], [ -80.068748474121094, -6.68291711807251 ], [ -80.068748474121094, -6.682639122009277 ], [ -80.069305419921875, -6.682639122009277 ], [ -80.069305419921875, -6.682361125946045 ], [ -80.069580078125, -6.682361125946045 ], [ -80.069580078125, -6.682083129882812 ], [ -80.070137023925781, -6.682083129882812 ], [ -80.070137023925781, -6.68180513381958 ], [ -80.070419311523324, -6.68180513381958 ], [ -80.070419311523324, -6.681529045104924 ], [ -80.070968627929631, -6.681529045104924 ], [ -80.070968627929631, -6.681251049041691 ], [ -80.071250915527287, -6.681251049041691 ], [ -80.071250915527287, -6.680695056915226 ], [ -80.071525573730412, -6.680695056915226 ], [ -80.071525573730412, -6.680138111114445 ], [ -80.071807861328125, -6.680138111114445 ], [ -80.071807861328125, -6.679860115051213 ], [ -80.072364807128906, -6.679860115051213 ], [ -80.072364807128906, -6.679584980010986 ], [ -80.072914123535156, -6.67958211898798 ], [ -80.072914123535156, -6.679306983947754 ], [ -80.073196411132812, -6.679306983947754 ], [ -80.073196411132812, -6.679028987884408 ], [ -80.073471069335824, -6.679028987884408 ], [ -80.073471069335824, -6.678750038146973 ], [ -80.07375335693348, -6.678750038146973 ], [ -80.07375335693348, -6.67847204208374 ], [ -80.074302673339787, -6.67847204208374 ], [ -80.074302673339787, -6.677916049957275 ], [ -80.074584960937443, -6.677916049957275 ], [ -80.074584960937443, -6.677638053894043 ], [ -80.074859619140625, -6.677638053894043 ], [ -80.074859619140625, -6.677360057830697 ], [ -80.075141906738281, -6.677360057830697 ], [ -80.075141906738281, -6.677083969116211 ], [ -80.075416564941406, -6.677083969116211 ], [ -80.075416564941406, -6.676805973052979 ], [ -80.075973510742188, -6.676805973052979 ], [ -80.075973510742188, -6.676527976989746 ], [ -80.076530456542969, -6.676527976989746 ], [ -80.076530456542969, -6.676249980926514 ], [ -80.07680511474598, -6.676249980926514 ], [ -80.07680511474598, -6.675971984863281 ], [ -80.077079772949162, -6.675971984863281 ], [ -80.077079772949162, -6.675693988800049 ], [ -80.077362060546818, -6.675693988800049 ], [ -80.077362060546818, -6.675415992736816 ], [ -80.077919006347599, -6.675415992736816 ], [ -80.077919006347599, -6.675137996673584 ], [ -80.078193664550781, -6.675137996673584 ], [ -80.078193664550781, -6.674860000610352 ], [ -80.078475952148438, -6.674860000610352 ], [ -80.078475952148438, -6.674583911895695 ], [ -80.078750610351562, -6.674583911895695 ], [ -80.078750610351562, -6.67430591583252 ], [ -80.079025268554688, -6.67430591583252 ], [ -80.079025268554688, -6.674027919769287 ], [ -80.079307556152344, -6.674027919769287 ], [ -80.079307556152344, -6.673749923706055 ], [ -80.079864501953125, -6.673749923706055 ], [ -80.079864501953125, -6.673471927642822 ], [ -80.080139160156193, -6.673471927642822 ], [ -80.080139160156193, -6.67319393157959 ], [ -80.081527709960938, -6.67319393157959 ], [ -80.081527709960938, -6.672915935516357 ], [ -80.081802368164062, -6.672915935516357 ], [ -80.081802368164062, -6.672637939453125 ], [ -80.082084655761719, -6.672637939453125 ], [ -80.082084655761719, -6.672359943389893 ], [ -80.082359313964844, -6.672359943389893 ], [ -80.082359313964844, -6.672083854675236 ], [ -80.0826416015625, -6.672083854675236 ], [ -80.0826416015625, -6.671805858612004 ], [ -80.083190917968693, -6.671805858612004 ], [ -80.083190917968693, -6.671527862548771 ], [ -80.083747863769474, -6.671527862548771 ], [ -80.083747863769474, -6.671249866485539 ], [ -80.084030151367131, -6.671249866485539 ], [ -80.084030151367131, -6.670971870422306 ], [ -80.084587097167969, -6.670971870422306 ], [ -80.084587097167969, -6.670417785644531 ], [ -80.085136413574219, -6.670417785644531 ], [ -80.085136413574219, -6.670693874359131 ], [ -80.085693359375, -6.670693874359131 ], [ -80.085693359375, -6.670417785644531 ], [ -80.085975646972656, -6.670417785644531 ], [ -80.085975646972656, -6.669861793517953 ], [ -80.086250305175668, -6.669861793517953 ], [ -80.086250305175668, -6.669305801391545 ], [ -80.086524963378849, -6.669305801391545 ], [ -80.086524963378849, -6.669027805328312 ], [ -80.086807250976506, -6.669027805328312 ], [ -80.086807250976506, -6.66874980926508 ], [ -80.087364196777287, -6.66874980926508 ], [ -80.087364196777287, -6.669027805328312 ], [ -80.087638854980469, -6.669027805328312 ], [ -80.087638854980469, -6.66874980926508 ], [ -80.089584350585824, -6.66874980926508 ], [ -80.089584350585824, -6.668471813201847 ], [ -80.090141296386662, -6.668471813201847 ], [ -80.090141296386662, -6.668193817138615 ], [ -80.090415954589787, -6.668193817138615 ], [ -80.090415954589787, -6.667640209197998 ], [ -80.090690612792969, -6.667640209197998 ], [ -80.090698242187443, -6.66708421707142 ], [ -80.091804504394531, -6.66708421707142 ], [ -80.091804504394531, -6.666806221008244 ], [ -80.092361450195312, -6.666806221008244 ], [ -80.092361450195312, -6.666526794433594 ], [ -80.092636108398324, -6.666526794433594 ], [ -80.092636108398324, -6.666248798370361 ], [ -80.092918395996037, -6.666248798370361 ], [ -80.092918395996037, -6.665692806243896 ], [ -80.093193054199162, -6.665692806243896 ], [ -80.093193054199162, -6.665418148040771 ], [ -80.094581604003906, -6.665418148040771 ], [ -80.094581604003906, -6.665139198303223 ], [ -80.094863891601562, -6.665139198303223 ], [ -80.094863891601562, -6.66486120223999 ], [ -80.095413208007812, -6.66486120223999 ], [ -80.095413208007812, -6.664583206176758 ], [ -80.095695495605469, -6.664583206176758 ], [ -80.095695495605469, -6.664305210113525 ], [ -80.095970153808537, -6.664305210113525 ], [ -80.095970153808537, -6.663749217987061 ], [ -80.096252441406193, -6.663749217987061 ], [ -80.096252441406193, -6.663471221923828 ], [ -80.096527099609318, -6.663471221923828 ], [ -80.096527099609318, -6.663193225860596 ], [ -80.096801757812443, -6.663193225860596 ], [ -80.096801757812443, -6.662637233734131 ], [ -80.097084045410099, -6.662637233734131 ], [ -80.097084045410099, -6.662359237670898 ], [ -80.098472595214844, -6.662359237670898 ], [ -80.098472595214844, -6.662080764770508 ], [ -80.099586486816349, -6.662083148956299 ], [ -80.099586486816349, -6.661527156829834 ], [ -80.099861145019474, -6.661527156829834 ], [ -80.099861145019474, -6.661249160766602 ], [ -80.100418090820312, -6.661249160766602 ], [ -80.100418090820312, -6.661527156829834 ], [ -80.100692749023438, -6.661527156829834 ], [ -80.100692749023438, -6.661249160766602 ], [ -80.101524353027344, -6.661249160766602 ], [ -80.101524353027344, -6.660695075988713 ], [ -80.101806640625, -6.660695075988713 ], [ -80.101806640625, -6.660139083862248 ], [ -80.102363586425668, -6.660139083862248 ], [ -80.102363586425668, -6.659583091735783 ], [ -80.102638244628849, -6.659583091735783 ], [ -80.102638244628849, -6.659305095672551 ], [ -80.102912902831974, -6.659305095672551 ], [ -80.102912902831974, -6.659027099609318 ], [ -80.103195190429631, -6.659027099609318 ], [ -80.103195190429631, -6.658749103546143 ], [ -80.103469848632812, -6.658749103546143 ], [ -80.103469848632812, -6.65847110748291 ], [ -80.103752136230469, -6.658473014831543 ], [ -80.103752136230469, -6.658195018768311 ], [ -80.10430908203125, -6.658195018768311 ], [ -80.10430908203125, -6.657917022704964 ], [ -80.104583740234375, -6.657917022704964 ], [ -80.104583740234375, -6.657639026641789 ], [ -80.1048583984375, -6.657639026641789 ], [ -80.1048583984375, -6.657361030578556 ], [ -80.105140686035156, -6.657361030578556 ], [ -80.105140686035156, -6.656527042388859 ], [ -80.106803894042969, -6.656527042388859 ], [ -80.106803894042969, -6.656805038452092 ], [ -80.107635498046875, -6.656805038452092 ], [ -80.107635498046875, -6.656528949737549 ], [ -80.107917785644531, -6.656527042388859 ], [ -80.107917785644531, -6.656249046325627 ], [ -80.108474731445312, -6.656249046325627 ], [ -80.108474731445312, -6.655971050262394 ], [ -80.109024047851506, -6.655972957611084 ], [ -80.109024047851506, -6.655694961547852 ], [ -80.109306335449162, -6.655694961547852 ], [ -80.109306335449162, -6.655416965484619 ], [ -80.109580993652287, -6.655416965484619 ], [ -80.109580993652287, -6.655138969421387 ], [ -80.109863281249943, -6.655138969421387 ], [ -80.109863281249943, -6.654860973358154 ], [ -80.110420227050781, -6.654860973358154 ], [ -80.110420227050781, -6.654582977294922 ], [ -80.110694885253906, -6.654582977294922 ], [ -80.110694885253906, -6.654304027557373 ], [ -80.110969543457031, -6.654306888580322 ], [ -80.110969543457031, -6.654026031494141 ], [ -80.111251831054688, -6.65402889251709 ], [ -80.111251831054688, -6.653194904327393 ], [ -80.111526489257812, -6.653194904327393 ], [ -80.111526489257812, -6.652915954589844 ], [ -80.113197326660156, -6.652915954589844 ], [ -80.113197326660156, -6.652637958526611 ], [ -80.114303588867188, -6.652637958526611 ], [ -80.114303588867188, -6.652359962463379 ], [ -80.114585876464844, -6.652359962463379 ], [ -80.114585876464844, -6.651806831359806 ], [ -80.114860534667855, -6.651806831359806 ], [ -80.114860534667855, -6.650971889495793 ], [ -80.114585876464844, -6.650971889495793 ], [ -80.114585876464844, -6.65069389343256 ], [ -80.114860534667855, -6.65069389343256 ], [ -80.114860534667855, -6.650415897369328 ], [ -80.115135192871037, -6.650415897369328 ], [ -80.115135192871037, -6.650137901306096 ], [ -80.115417480468693, -6.650137901306096 ], [ -80.115417480468693, -6.649867057800236 ], [ -80.116249084472656, -6.649861812591553 ], [ -80.116249084472656, -6.650137901306096 ], [ -80.116806030273438, -6.650137901306096 ], [ -80.116806030273438, -6.65069389343256 ], [ -80.118194580078011, -6.65069389343256 ], [ -80.118194580078011, -6.650415897369328 ], [ -80.118469238281193, -6.650415897369328 ], [ -80.118469238281193, -6.650137901306096 ], [ -80.118751525878849, -6.650137901306096 ], [ -80.118751525878849, -6.649861812591553 ], [ -80.118469238281193, -6.649861812591553 ], [ -80.118469238281193, -6.649027824401855 ], [ -80.118751525878849, -6.649027824401855 ], [ -80.118751525878849, -6.648471832275334 ], [ -80.119308471679631, -6.648471832275334 ], [ -80.119308471679631, -6.648193836212101 ], [ -80.119583129882812, -6.648193836212101 ], [ -80.119583129882812, -6.647915840148869 ], [ -80.120414733886719, -6.647915840148869 ], [ -80.120414733886719, -6.647362232208252 ], [ -80.120697021484375, -6.647362232208252 ], [ -80.120697021484375, -6.64708423614502 ], [ -80.1209716796875, -6.64708423614502 ], [ -80.1209716796875, -6.646805763244629 ], [ -80.121528625488224, -6.646805763244629 ], [ -80.121528625488224, -6.646527767181396 ], [ -80.121803283691349, -6.646527767181396 ], [ -80.121803283691349, -6.646249771118164 ], [ -80.122360229492131, -6.646249771118164 ], [ -80.122360229492131, -6.645971775054932 ], [ -80.122642517089787, -6.645971775054932 ], [ -80.122642517089787, -6.645693778991699 ], [ -80.122917175292969, -6.645693778991699 ], [ -80.122917175292969, -6.645415782928467 ], [ -80.123748779296875, -6.645415782928467 ], [ -80.123748779296875, -6.645137786865121 ], [ -80.124031066894531, -6.645137786865121 ], [ -80.124031066894531, -6.644859790801945 ], [ -80.124305725097656, -6.644862174987793 ], [ -80.124305725097656, -6.644306182861328 ], [ -80.124580383300724, -6.644306182861328 ], [ -80.124580383300724, -6.643472194671631 ], [ -80.124862670898381, -6.643472194671631 ], [ -80.124862670898381, -6.643194198608398 ], [ -80.125419616699162, -6.643194198608398 ], [ -80.125419616699162, -6.642638206481934 ], [ -80.125694274902287, -6.642638206481934 ], [ -80.125694274902287, -6.642362117767334 ], [ -80.12652587890625, -6.642362117767334 ], [ -80.12652587890625, -6.642084121704102 ], [ -80.128471374511662, -6.642084121704102 ], [ -80.128471374511662, -6.641806125640869 ], [ -80.1290283203125, -6.641806125640869 ], [ -80.1290283203125, -6.641528129577637 ], [ -80.129302978515625, -6.641528129577637 ], [ -80.129302978515625, -6.641250133514404 ], [ -80.129585266113281, -6.641250133514404 ], [ -80.129585266113281, -6.641528129577637 ], [ -80.130416870117188, -6.641528129577637 ], [ -80.130416870117188, -6.640696048736515 ], [ -80.130691528320199, -6.640696048736515 ], [ -80.130691528320199, -6.640418052673283 ], [ -80.131248474121037, -6.640418052673283 ], [ -80.131248474121037, -6.640696048736515 ], [ -80.131805419921818, -6.640696048736515 ], [ -80.131805419921818, -6.640418052673283 ], [ -80.132362365722656, -6.640418052673283 ], [ -80.132362365722656, -6.640140056610051 ], [ -80.132637023925781, -6.640140056610051 ], [ -80.132637023925781, -6.639862060546818 ], [ -80.132919311523438, -6.639862060546818 ], [ -80.132919311523438, -6.639305114746037 ], [ -80.133193969726562, -6.639305114746037 ], [ -80.133193969726562, -6.639027118682804 ], [ -80.133468627929688, -6.639027118682804 ], [ -80.133468627929688, -6.63847112655634 ], [ -80.133750915527344, -6.63847112655634 ], [ -80.133750915527344, -6.638195991516056 ], [ -80.134025573730355, -6.638195991516056 ], [ -80.134025573730355, -6.637917041778564 ], [ -80.134307861328068, -6.637917041778564 ], [ -80.134307861328068, -6.6373610496521 ], [ -80.134864807128849, -6.6373610496521 ], [ -80.134864807128849, -6.636805057525521 ], [ -80.135139465331974, -6.636805057525521 ], [ -80.135139465331974, -6.636527061462346 ], [ -80.135414123535156, -6.636527061462346 ], [ -80.135414123535156, -6.636249065399113 ], [ -80.135696411132812, -6.636249065399113 ], [ -80.135696411132812, -6.635971069335881 ], [ -80.136528015136719, -6.635971069335881 ], [ -80.136528015136719, -6.635416984558105 ], [ -80.1370849609375, -6.635416984558105 ], [ -80.1370849609375, -6.635694980621338 ], [ -80.137359619140568, -6.635694980621338 ], [ -80.137359619140568, -6.635416984558105 ], [ -80.137641906738224, -6.635416984558105 ], [ -80.137641906738224, -6.635138988494873 ], [ -80.137916564941349, -6.635138988494873 ], [ -80.137916564941349, -6.634860992431641 ], [ -80.138191223144474, -6.634860992431641 ], [ -80.138191223144474, -6.634582996368408 ], [ -80.138473510742131, -6.634582996368408 ], [ -80.138473510742131, -6.634305000305176 ], [ -80.138748168945312, -6.634305000305176 ], [ -80.138748168945312, -6.634027004241943 ], [ -80.139030456542969, -6.634027004241943 ], [ -80.139030456542969, -6.633472919464111 ], [ -80.139305114746094, -6.633471012115479 ], [ -80.139305114746094, -6.633194923400879 ], [ -80.139862060546875, -6.633194923400879 ], [ -80.139862060546875, -6.632916927337646 ], [ -80.140419006347543, -6.632916927337646 ], [ -80.140419006347543, -6.632638931274414 ], [ -80.140693664550724, -6.632638931274414 ], [ -80.140693664550724, -6.632360935211182 ], [ -80.140975952148381, -6.632360935211182 ], [ -80.140975952148381, -6.632082939147949 ], [ -80.141525268554631, -6.632082939147949 ], [ -80.141525268554631, -6.631804943084717 ], [ -80.141807556152344, -6.631804943084717 ], [ -80.141807556152344, -6.631526947021484 ], [ -80.142364501953125, -6.631526947021484 ], [ -80.142364501953125, -6.631250858306828 ], [ -80.14263916015625, -6.631250858306828 ], [ -80.14263916015625, -6.630972862243596 ], [ -80.143196105957031, -6.630972862243596 ], [ -80.143196105957031, -6.630694866180363 ], [ -80.142913818359375, -6.630694866180363 ], [ -80.142913818359375, -6.630416870117131 ], [ -80.143470764160043, -6.630416870117131 ], [ -80.143470764160043, -6.630138874053955 ], [ -80.144027709960881, -6.630138874053955 ], [ -80.144027709960881, -6.629860877990723 ], [ -80.144859313964844, -6.629860877990723 ], [ -80.144859313964844, -6.62958288192749 ], [ -80.145416259765625, -6.62958288192749 ], [ -80.145416259765625, -6.629304885864258 ], [ -80.145973205566406, -6.629304885864258 ], [ -80.145973205566406, -6.629028797149601 ], [ -80.146530151367188, -6.629028797149601 ], [ -80.146530151367188, -6.628750801086369 ], [ -80.147087097167912, -6.628750801086369 ], [ -80.147087097167912, -6.628472805023137 ], [ -80.147361755371037, -6.628472805023137 ], [ -80.147361755371037, -6.628194808959904 ], [ -80.147918701171818, -6.628194808959904 ], [ -80.147918701171818, -6.627916812896672 ], [ -80.149024963378906, -6.627916812896672 ], [ -80.149024963378906, -6.628194808959904 ], [ -80.149307250976562, -6.628194808959904 ], [ -80.149307250976562, -6.627916812896672 ], [ -80.149581909179688, -6.627916812896672 ], [ -80.149581909179688, -6.627638816833439 ], [ -80.149864196777344, -6.627638816833439 ], [ -80.149864196777344, -6.627360820770207 ], [ -80.150138854980412, -6.627360820770207 ], [ -80.150138854980412, -6.627081871032658 ], [ -80.150413513183537, -6.627081871032658 ], [ -80.150413513183537, -6.62680721282959 ], [ -80.150970458984318, -6.626803874969426 ], [ -80.150970458984318, -6.626529216766244 ], [ -80.151252746581974, -6.626529216766244 ], [ -80.151252746581974, -6.626251220703068 ], [ -80.151527404785156, -6.626251220703068 ], [ -80.151527404785156, -6.625973224639836 ], [ -80.151802062988281, -6.625973224639836 ], [ -80.151802062988281, -6.625693798065186 ], [ -80.152084350585938, -6.625693798065186 ], [ -80.152084350585938, -6.625415802001953 ], [ -80.152359008789062, -6.625415802001953 ], [ -80.152359008789062, -6.625137805938721 ], [ -80.152641296386719, -6.625137805938721 ], [ -80.152641296386719, -6.624859809875488 ], [ -80.153190612792912, -6.624863147735596 ], [ -80.153198242187386, -6.624581813812256 ], [ -80.153472900390568, -6.624581813812256 ], [ -80.153472900390568, -6.624306201934814 ], [ -80.154029846191349, -6.624306201934814 ], [ -80.154029846191349, -6.62375020980835 ], [ -80.154586791992188, -6.62375020980835 ], [ -80.154586791992188, -6.623472213745117 ], [ -80.155136108398438, -6.623472213745117 ], [ -80.155136108398438, -6.623194217681885 ], [ -80.155418395996094, -6.623194217681885 ], [ -80.155418395996094, -6.622916221618652 ], [ -80.155975341796875, -6.622916221618652 ], [ -80.155975341796875, -6.62263822555542 ], [ -80.156249999999886, -6.62263822555542 ], [ -80.156249999999886, -6.622360229492188 ], [ -80.156524658203068, -6.622360229492188 ], [ -80.156524658203068, -6.622082233428955 ], [ -80.156806945800724, -6.622082233428955 ], [ -80.156806945800724, -6.621804237365723 ], [ -80.157081604003849, -6.621804237365723 ], [ -80.157081604003849, -6.621525764465332 ], [ -80.157363891601506, -6.621525764465332 ], [ -80.157363891601506, -6.621250152587891 ], [ -80.157638549804688, -6.621250152587891 ], [ -80.157638549804688, -6.620972156524658 ], [ -80.157913208007812, -6.620972156524658 ], [ -80.157913208007812, -6.620694160461426 ], [ -80.158195495605469, -6.620694160461426 ], [ -80.158195495605469, -6.620416164398193 ], [ -80.158470153808594, -6.620416164398193 ], [ -80.158470153808594, -6.620140075683537 ], [ -80.15875244140625, -6.620138168334961 ], [ -80.15875244140625, -6.619860172271729 ], [ -80.159027099609375, -6.619860172271729 ], [ -80.159027099609375, -6.619582176208496 ], [ -80.159301757812386, -6.619584083557072 ], [ -80.159301757812386, -6.61930608749384 ], [ -80.159584045410043, -6.61930608749384 ], [ -80.159584045410043, -6.619028091430607 ], [ -80.159858703613224, -6.619028091430607 ], [ -80.159858703613224, -6.618750095367375 ], [ -80.160140991210881, -6.618750095367375 ], [ -80.160140991210881, -6.618472099304142 ], [ -80.160415649414006, -6.618472099304142 ], [ -80.160415649414006, -6.618194103240967 ], [ -80.160697937011662, -6.618194103240967 ], [ -80.160697937011662, -6.617916107177734 ], [ -80.161529541015625, -6.617916107177734 ], [ -80.161529541015625, -6.618194103240967 ], [ -80.162086486816406, -6.618194103240967 ], [ -80.162086486816406, -6.617916107177734 ], [ -80.162635803222543, -6.617916107177734 ], [ -80.162635803222543, -6.617638111114502 ], [ -80.162918090820256, -6.617638111114502 ], [ -80.162918090820256, -6.61736011505127 ], [ -80.163192749023381, -6.617362022399789 ], [ -80.163192749023381, -6.617084026336613 ], [ -80.163475036621037, -6.617084026336613 ], [ -80.163475036621037, -6.616806030273381 ], [ -80.164024353027344, -6.616806030273381 ], [ -80.164024353027344, -6.616528034210148 ], [ -80.164306640625, -6.616528034210148 ], [ -80.164306640625, -6.616250038146916 ], [ -80.164581298828125, -6.616250038146916 ], [ -80.164581298828125, -6.615972042083683 ], [ -80.165695190429688, -6.615972042083683 ], [ -80.165695190429688, -6.615694046020451 ], [ -80.166526794433537, -6.615694046020451 ], [ -80.166526794433537, -6.615416049957219 ], [ -80.167083740234318, -6.615416049957219 ], [ -80.167083740234318, -6.615138053893986 ], [ -80.166809082031193, -6.615138053893986 ], [ -80.166809082031193, -6.614859104156437 ], [ -80.1673583984375, -6.614859104156437 ], [ -80.1673583984375, -6.615138053893986 ], [ -80.168197631835938, -6.615139961242676 ], [ -80.168197631835938, -6.614583969116211 ], [ -80.168746948242188, -6.614583969116211 ], [ -80.168746948242188, -6.614305973052979 ], [ -80.169303894042912, -6.614305973052979 ], [ -80.169303894042912, -6.614027976989746 ], [ -80.170135498046818, -6.614027976989746 ], [ -80.170135498046818, -6.6137499809264 ], [ -80.170692443847656, -6.6137499809264 ], [ -80.170692443847656, -6.613471031188965 ], [ -80.170974731445312, -6.613471031188965 ], [ -80.170974731445312, -6.6129150390625 ], [ -80.171249389648438, -6.6129150390625 ], [ -80.171249389648438, -6.612639904022217 ], [ -80.171524047851562, -6.612639904022217 ], [ -80.171524047851562, -6.612361907958984 ], [ -80.171806335449219, -6.612361907958984 ], [ -80.171806335449219, -6.612082958221436 ], [ -80.17208099365223, -6.612082958221436 ], [ -80.17208099365223, -6.611804962158203 ], [ -80.172363281249886, -6.611804962158203 ], [ -80.172363281249886, -6.611526966094971 ], [ -80.172920227050724, -6.611526966094971 ], [ -80.172920227050724, -6.611248970031738 ], [ -80.173194885253849, -6.611248970031738 ], [ -80.173194885253849, -6.610973834991398 ], [ -80.173469543457031, -6.610973834991398 ], [ -80.173469543457031, -6.610694885253849 ], [ -80.174026489257812, -6.610694885253849 ], [ -80.174026489257812, -6.610416889190617 ], [ -80.174308776855469, -6.610416889190617 ], [ -80.174308776855469, -6.610138893127385 ], [ -80.174858093261719, -6.610138893127385 ], [ -80.174858093261719, -6.609860897064152 ], [ -80.175140380859375, -6.609860897064152 ], [ -80.175140380859375, -6.60958290100092 ], [ -80.174858093261719, -6.60958290100092 ], [ -80.174858093261719, -6.609304904937687 ], [ -80.175140380859375, -6.609304904937687 ], [ -80.175140380859375, -6.609026908874512 ], [ -80.175415039062386, -6.609026908874512 ], [ -80.175415039062386, -6.608748912811279 ], [ -80.175697326660099, -6.608748912811279 ], [ -80.175697326660099, -6.60847282409668 ], [ -80.175971984863224, -6.60847282409668 ], [ -80.175971984863224, -6.608194828033334 ], [ -80.176246643066349, -6.608194828033334 ], [ -80.176246643066349, -6.60847282409668 ], [ -80.176528930664006, -6.60847282409668 ], [ -80.176528930664006, -6.608748912811279 ], [ -80.176803588867188, -6.608748912811279 ], [ -80.176803588867188, -6.60847282409668 ], [ -80.177085876464844, -6.60847282409668 ], [ -80.177085876464844, -6.608194828033334 ], [ -80.177635192871094, -6.608194828033334 ], [ -80.177635192871094, -6.607916831970158 ], [ -80.17791748046875, -6.607916831970158 ], [ -80.17791748046875, -6.607638835906926 ], [ -80.178474426269531, -6.607638835906926 ], [ -80.178474426269531, -6.607360839843693 ], [ -80.178749084472599, -6.607360839843693 ], [ -80.178749084472599, -6.607082843780461 ], [ -80.179306030273381, -6.607082843780461 ], [ -80.179306030273381, -6.606804847717228 ], [ -80.179580688476506, -6.606804847717228 ], [ -80.179580688476506, -6.606526851653996 ], [ -80.180137634277344, -6.606526851653996 ], [ -80.180137634277344, -6.606248855590763 ], [ -80.180694580078125, -6.606248855590763 ], [ -80.180694580078125, -6.605972766876221 ], [ -80.181251525878906, -6.605972766876221 ], [ -80.181251525878906, -6.605694770812988 ], [ -80.181526184082031, -6.605694770812988 ], [ -80.181526184082031, -6.605416774749756 ], [ -80.182083129882756, -6.605416774749756 ], [ -80.182083129882756, -6.605138778686523 ], [ -80.182640075683537, -6.605138778686523 ], [ -80.182640075683537, -6.604860782623291 ], [ -80.183197021484375, -6.604860782623291 ], [ -80.183197021484375, -6.604582786559945 ], [ -80.1834716796875, -6.604582786559945 ], [ -80.1834716796875, -6.604304790496769 ], [ -80.184028625488281, -6.604304790496769 ], [ -80.184028625488281, -6.604026794433537 ], [ -80.184585571289062, -6.604026794433537 ], [ -80.184585571289062, -6.603751182556152 ], [ -80.184860229492074, -6.603748798370304 ], [ -80.184860229492074, -6.603470802307072 ], [ -80.185691833496037, -6.603470802307072 ], [ -80.185691833496037, -6.603195190429688 ], [ -80.185974121093693, -6.603195190429688 ], [ -80.185974121093693, -6.602917194366455 ], [ -80.186531066894531, -6.602917194366455 ], [ -80.186531066894531, -6.602639198303223 ], [ -80.187080383300781, -6.602639198303223 ], [ -80.187080383300781, -6.60236120223999 ], [ -80.187637329101562, -6.60236120223999 ], [ -80.187637329101562, -6.602083206176758 ], [ -80.18819427490223, -6.602083206176758 ], [ -80.18819427490223, -6.601805210113412 ], [ -80.188468933105412, -6.601805210113412 ], [ -80.188468933105412, -6.601529121398926 ], [ -80.189025878906193, -6.601529121398926 ], [ -80.189025878906193, -6.601251125335693 ], [ -80.189582824707031, -6.601251125335693 ], [ -80.189582824707031, -6.600973129272461 ], [ -80.190139770507812, -6.600973129272461 ], [ -80.190139770507812, -6.600695133209229 ], [ -80.190696716308594, -6.600695133209229 ], [ -80.190696716308594, -6.600417137145996 ], [ -80.190971374511719, -6.600417137145996 ], [ -80.190971374511719, -6.600139141082764 ], [ -80.191528320312443, -6.600139141082764 ], [ -80.191528320312443, -6.599860191345215 ], [ -80.192642211914006, -6.599860191345215 ], [ -80.192642211914006, -6.600139141082764 ], [ -80.192916870117188, -6.600139141082764 ], [ -80.192916870117188, -6.600417137145996 ], [ -80.193191528320312, -6.600417137145996 ], [ -80.193191528320312, -6.600695133209229 ], [ -80.193748474121094, -6.600695133209229 ], [ -80.193748474121094, -6.600417137145996 ], [ -80.19403076171875, -6.600417137145996 ], [ -80.19403076171875, -6.600139141082764 ], [ -80.194580078124943, -6.600139141082764 ], [ -80.194580078124943, -6.599860191345215 ], [ -80.194862365722599, -6.599860191345215 ], [ -80.194862365722599, -6.599582195281982 ], [ -80.195419311523381, -6.599582195281982 ], [ -80.195419311523381, -6.59902906417841 ], [ -80.195137023925724, -6.59902906417841 ], [ -80.195137023925724, -6.598194122314396 ], [ -80.195419311523381, -6.598194122314396 ], [ -80.195419311523381, -6.597916126251164 ], [ -80.195693969726506, -6.597916126251164 ], [ -80.195693969726506, -6.597638130187931 ], [ -80.195968627929688, -6.597638130187931 ], [ -80.195968627929688, -6.597360134124699 ], [ -80.196250915527344, -6.597360134124699 ], [ -80.196250915527344, -6.597084045410156 ], [ -80.196525573730469, -6.597082138061523 ], [ -80.196525573730469, -6.596806049346924 ], [ -80.196807861328125, -6.596806049346924 ], [ -80.196807861328125, -6.596528053283691 ], [ -80.19708251953125, -6.596528053283691 ], [ -80.19708251953125, -6.596250057220345 ], [ -80.197364807128906, -6.596250057220345 ], [ -80.197364807128906, -6.59597206115717 ], [ -80.198196411132756, -6.59597206115717 ], [ -80.198196411132756, -6.595694065093937 ], [ -80.199028015136719, -6.595694065093937 ], [ -80.199028015136719, -6.595416069030705 ], [ -80.1995849609375, -6.595416069030705 ], [ -80.1995849609375, -6.595138072967472 ], [ -80.200141906738281, -6.595138072967472 ], [ -80.200141906738281, -6.59486007690424 ], [ -80.200691223144418, -6.59486007690424 ], [ -80.200691223144418, -6.594583988189697 ], [ -80.200973510742074, -6.594583988189697 ], [ -80.200973510742074, -6.594305992126465 ], [ -80.202079772949219, -6.594305992126465 ], [ -80.202079772949219, -6.59375 ], [ -80.202362060546875, -6.59375 ], [ -80.202362060546875, -6.593472003936768 ], [ -80.203750610351562, -6.593472003936768 ], [ -80.203750610351562, -6.593194007873535 ], [ -80.204025268554574, -6.593194007873535 ], [ -80.204025268554574, -6.592916011810303 ], [ -80.204582214355412, -6.592916011810303 ], [ -80.204582214355412, -6.592638015746957 ], [ -80.205139160156193, -6.592638015746957 ], [ -80.205139160156193, -6.592360019683781 ], [ -80.205696105957031, -6.592360019683781 ], [ -80.205696105957031, -6.592083930969238 ], [ -80.205970764160156, -6.592083930969238 ], [ -80.205970764160156, -6.591805934906006 ], [ -80.206527709960938, -6.591805934906006 ], [ -80.206527709960938, -6.591527938842773 ], [ -80.207084655761719, -6.591527938842773 ], [ -80.207084655761719, -6.591249942779541 ], [ -80.207359313964787, -6.591249942779541 ], [ -80.207359313964787, -6.590971946716309 ], [ -80.207916259765568, -6.590971946716309 ], [ -80.207916259765568, -6.590693950653076 ], [ -80.208190917968693, -6.590693950653076 ], [ -80.208190917968693, -6.590415954589844 ], [ -80.208747863769531, -6.590415954589844 ], [ -80.208747863769531, -6.590139865875187 ], [ -80.209030151367188, -6.590139865875187 ], [ -80.209030151367188, -6.589861869811955 ], [ -80.209587097167969, -6.589861869811955 ], [ -80.209587097167969, -6.589583873748779 ], [ -80.210136413574219, -6.589583873748779 ], [ -80.210136413574219, -6.589305877685547 ], [ -80.210693359374943, -6.589305877685547 ], [ -80.210693359374943, -6.589027881622314 ], [ -80.210975646972599, -6.589027881622314 ], [ -80.210975646972599, -6.588749885559082 ], [ -80.211524963378849, -6.588749885559082 ], [ -80.211524963378849, -6.58847188949585 ], [ -80.212081909179688, -6.58847188949585 ], [ -80.212081909179688, -6.588193893432617 ], [ -80.212638854980469, -6.588193893432617 ], [ -80.212638854980469, -6.587917804717961 ], [ -80.21319580078125, -6.587917804717961 ], [ -80.21319580078125, -6.587639808654728 ], [ -80.214584350585881, -6.587639808654728 ], [ -80.214584350585881, -6.587361812591496 ], [ -80.215141296386719, -6.587361812591496 ], [ -80.215141296386719, -6.587083816528263 ], [ -80.215415954589844, -6.587083816528263 ], [ -80.215415954589844, -6.586805820465031 ], [ -80.215972900390625, -6.586805820465031 ], [ -80.215972900390625, -6.586527824401799 ], [ -80.216804504394418, -6.586527824401799 ], [ -80.216804504394418, -6.58624887466425 ], [ -80.217086791992131, -6.58624887466425 ], [ -80.217086791992131, -6.585970878601017 ], [ -80.217361450195256, -6.585970878601017 ], [ -80.217361450195256, -6.585692882537785 ], [ -80.217636108398381, -6.585692882537785 ], [ -80.217636108398381, -6.58541822433466 ], [ -80.218475341796875, -6.58541822433466 ], [ -80.218475341796875, -6.585140228271428 ], [ -80.21875, -6.585140228271428 ], [ -80.21875, -6.584860801696777 ], [ -80.219306945800781, -6.584860801696777 ], [ -80.219306945800781, -6.584582805633545 ], [ -80.219581604003906, -6.584582805633545 ], [ -80.219581604003906, -6.584304809570312 ], [ -80.219863891601562, -6.584304809570312 ], [ -80.219863891601562, -6.58402681350708 ], [ -80.220138549804631, -6.58402681350708 ], [ -80.220138549804631, -6.583748817443848 ], [ -80.220413208007756, -6.583748817443848 ], [ -80.220413208007756, -6.583470821380502 ], [ -80.221252441406193, -6.583470821380502 ], [ -80.221252441406193, -6.583192825317326 ], [ -80.221527099609375, -6.583192825317326 ], [ -80.221527099609375, -6.582917213439941 ], [ -80.2218017578125, -6.582917213439941 ], [ -80.2218017578125, -6.582639217376709 ], [ -80.222358703613281, -6.582639217376709 ], [ -80.222358703613281, -6.582361221313477 ], [ -80.222640991210938, -6.582361221313477 ], [ -80.222640991210938, -6.582083225250244 ], [ -80.223197937011605, -6.582083225250244 ], [ -80.223197937011605, -6.581805229187012 ], [ -80.225692749023438, -6.581805229187012 ], [ -80.225692749023438, -6.581527233123779 ], [ -80.225975036621094, -6.581527233123779 ], [ -80.225975036621094, -6.581249237060547 ], [ -80.226249694824105, -6.581249237060547 ], [ -80.226249694824105, -6.580970764160156 ], [ -80.226524353027287, -6.580973148345947 ], [ -80.226524353027287, -6.580695152282715 ], [ -80.226806640624943, -6.580695152282715 ], [ -80.226806640624943, -6.58013916015625 ], [ -80.227081298828068, -6.58013916015625 ], [ -80.227081298828068, -6.579861164093018 ], [ -80.227363586425724, -6.579861164093018 ], [ -80.227363586425724, -6.579305171966553 ], [ -80.227638244628906, -6.579305171966553 ], [ -80.227638244628906, -6.57902717590332 ], [ -80.228752136230469, -6.57902717590332 ], [ -80.228752136230469, -6.578749179840088 ], [ -80.22930908203125, -6.578749179840088 ], [ -80.22930908203125, -6.578471183776855 ], [ -80.229583740234261, -6.578473091125431 ], [ -80.229583740234261, -6.578195095062199 ], [ -80.230140686035099, -6.578195095062199 ], [ -80.230140686035099, -6.577917098998967 ], [ -80.230415344238224, -6.577917098998967 ], [ -80.230415344238224, -6.577639102935791 ], [ -80.230972290039062, -6.577639102935791 ], [ -80.230972290039062, -6.577361106872559 ], [ -80.232086181640625, -6.577361106872559 ], [ -80.232086181640625, -6.577083110809326 ], [ -80.232635498046761, -6.577083110809326 ], [ -80.232635498046761, -6.576805114746094 ], [ -80.232917785644474, -6.576805114746094 ], [ -80.232917785644474, -6.576527118682861 ], [ -80.233192443847599, -6.576527118682861 ], [ -80.233192443847599, -6.576249122619629 ], [ -80.234024047851562, -6.576249122619629 ], [ -80.234024047851562, -6.575971126556396 ], [ -80.234306335449219, -6.575973033904972 ], [ -80.234306335449219, -6.57569503784174 ], [ -80.23486328125, -6.57569503784174 ], [ -80.23486328125, -6.575417041778508 ], [ -80.235137939453125, -6.575417041778508 ], [ -80.235137939453125, -6.575139045715275 ], [ -80.235420227050781, -6.575139045715275 ], [ -80.235420227050781, -6.57458305358881 ], [ -80.235694885253906, -6.57458305358881 ], [ -80.235694885253906, -6.574305057525578 ], [ -80.236251831054631, -6.574305057525578 ], [ -80.236251831054631, -6.57458305358881 ], [ -80.236526489257756, -6.57458305358881 ], [ -80.236526489257756, -6.574305057525578 ], [ -80.237083435058537, -6.574305057525578 ], [ -80.237083435058537, -6.574028968811035 ], [ -80.237640380859375, -6.574026107788029 ], [ -80.237640380859375, -6.573748111724797 ], [ -80.238197326660156, -6.573748111724797 ], [ -80.238197326660156, -6.57347297668457 ], [ -80.238471984863281, -6.57347297668457 ], [ -80.238471984863281, -6.573194980621224 ], [ -80.239028930663949, -6.573194980621224 ], [ -80.239028930663949, -6.572916984558049 ], [ -80.239585876464787, -6.572916984558049 ], [ -80.239585876464787, -6.572638034820557 ], [ -80.240135192871037, -6.572638034820557 ], [ -80.240135192871037, -6.572360038757324 ], [ -80.24041748046875, -6.572360038757324 ], [ -80.24041748046875, -6.572082042694092 ], [ -80.241806030273438, -6.572082042694092 ], [ -80.241806030273438, -6.572360038757324 ], [ -80.243194580078068, -6.572360038757324 ], [ -80.243194580078068, -6.572082042694092 ], [ -80.24346923828125, -6.572082042694092 ], [ -80.24346923828125, -6.571528911590576 ], [ -80.243751525878906, -6.571528911590576 ], [ -80.243751525878906, -6.571249961853027 ], [ -80.244026184082031, -6.571249961853027 ], [ -80.244026184082031, -6.570971965789795 ], [ -80.244583129882812, -6.570971965789795 ], [ -80.244583129882812, -6.570693969726562 ], [ -80.245140075683594, -6.570693969726562 ], [ -80.245140075683594, -6.57041597366333 ], [ -80.245414733886605, -6.57041597366333 ], [ -80.245414733886605, -6.570137977600098 ], [ -80.245971679687443, -6.570137977600098 ], [ -80.245971679687443, -6.569859981536865 ], [ -80.246246337890568, -6.569859981536865 ], [ -80.246246337890568, -6.569583892822209 ], [ -80.246528625488224, -6.569583892822209 ], [ -80.246528625488224, -6.569305896758976 ], [ -80.246803283691406, -6.569305896758976 ], [ -80.246803283691406, -6.569027900695744 ], [ -80.247360229492188, -6.569027900695744 ], [ -80.247360229492188, -6.568471908569336 ], [ -80.247642517089844, -6.568471908569336 ], [ -80.247642517089844, -6.567915916442871 ], [ -80.249031066894474, -6.567915916442871 ], [ -80.249031066894474, -6.567637920379639 ], [ -80.249580383300724, -6.567637920379639 ], [ -80.249580383300724, -6.567359924316406 ], [ -80.249862670898381, -6.567359924316406 ], [ -80.249862670898381, -6.56708383560175 ], [ -80.250419616699219, -6.56708383560175 ], [ -80.250419616699219, -6.566805839538517 ], [ -80.250694274902344, -6.566805839538517 ], [ -80.250694274902344, -6.566527843475285 ], [ -80.251251220703125, -6.566527843475285 ], [ -80.251251220703125, -6.566249847412053 ], [ -80.251808166503793, -6.566249847412053 ], [ -80.251808166503793, -6.56597185134882 ], [ -80.252082824706974, -6.56597185134882 ], [ -80.252082824706974, -6.565693855285588 ], [ -80.252639770507756, -6.565693855285588 ], [ -80.252639770507756, -6.565415859222355 ], [ -80.253196716308594, -6.565415859222355 ], [ -80.253196716308594, -6.565137863159123 ], [ -80.253471374511719, -6.565137863159123 ], [ -80.253471374511719, -6.56486177444458 ], [ -80.2540283203125, -6.56486177444458 ], [ -80.2540283203125, -6.564583778381348 ], [ -80.254585266113281, -6.564583778381348 ], [ -80.254585266113281, -6.564305782318115 ], [ -80.254859924316293, -6.564305782318115 ], [ -80.254859924316293, -6.564027786254769 ], [ -80.255416870117131, -6.564027786254769 ], [ -80.255416870117131, -6.563749790191594 ], [ -80.255691528320256, -6.563749790191594 ], [ -80.255691528320256, -6.563471794128361 ], [ -80.256248474121094, -6.563471794128361 ], [ -80.256248474121094, -6.563193798065129 ], [ -80.256805419921875, -6.563193798065129 ], [ -80.256805419921875, -6.562915802001896 ], [ -80.257080078125, -6.562915802001896 ], [ -80.257080078125, -6.562637805938664 ], [ -80.257637023925781, -6.562637805938664 ], [ -80.257637023925781, -6.562362194061279 ], [ -80.258193969726449, -6.562362194061279 ], [ -80.258193969726449, -6.562084197998047 ], [ -80.258468627929631, -6.562084197998047 ], [ -80.258468627929631, -6.561806201934814 ], [ -80.259025573730412, -6.561806201934814 ], [ -80.259025573730412, -6.561528205871582 ], [ -80.25958251953125, -6.561528205871582 ], [ -80.25958251953125, -6.561250209808236 ], [ -80.259864807128906, -6.561250209808236 ], [ -80.259864807128906, -6.56097221374506 ], [ -80.260414123535156, -6.56097221374506 ], [ -80.260414123535156, -6.560694217681828 ], [ -80.260696411132812, -6.560694217681828 ], [ -80.260696411132812, -6.560418128967285 ], [ -80.261253356933594, -6.560418128967285 ], [ -80.261253356933594, -6.560140132904053 ], [ -80.261802673339787, -6.560140132904053 ], [ -80.261802673339787, -6.55986213684082 ], [ -80.262084960937443, -6.55986213684082 ], [ -80.262084960937443, -6.559584140777588 ], [ -80.262641906738224, -6.559584140777588 ], [ -80.262641906738224, -6.559306144714355 ], [ -80.263191223144531, -6.559306144714355 ], [ -80.263191223144531, -6.559027194976807 ], [ -80.264030456542969, -6.559027194976807 ], [ -80.264030456542969, -6.558749198913574 ], [ -80.264579772949162, -6.558749198913574 ], [ -80.264579772949162, -6.558471202850342 ], [ -80.265136718749943, -6.558471202850342 ], [ -80.265136718749943, -6.558196067810059 ], [ -80.265975952148438, -6.558196067810059 ], [ -80.265975952148438, -6.557918071746826 ], [ -80.266525268554688, -6.557918071746826 ], [ -80.266525268554688, -6.557639122009221 ], [ -80.267364501953125, -6.557639122009221 ], [ -80.267364501953125, -6.557359218597412 ], [ -80.268196105956974, -6.557359218597412 ], [ -80.268196105956974, -6.55708122253418 ], [ -80.268753051757756, -6.557083129882756 ], [ -80.268753051757756, -6.556805133819523 ], [ -80.269584655761719, -6.556805133819523 ], [ -80.269584655761719, -6.556527137756348 ], [ -80.269859313964844, -6.556527137756348 ], [ -80.269859313964844, -6.556249141693115 ], [ -80.2701416015625, -6.556249141693115 ], [ -80.2701416015625, -6.555971145629883 ], [ -80.270416259765625, -6.555971145629883 ], [ -80.270416259765625, -6.55569505691517 ], [ -80.270690917968636, -6.55569505691517 ], [ -80.270690917968636, -6.555971145629883 ], [ -80.272636413574219, -6.555971145629883 ], [ -80.272636413574219, -6.55569505691517 ], [ -80.272918701171875, -6.55569505691517 ], [ -80.272918701171875, -6.555139064788762 ], [ -80.273193359375, -6.555139064788762 ], [ -80.273193359375, -6.554861068725529 ], [ -80.273475646972656, -6.554861068725529 ], [ -80.273475646972656, -6.554583072662297 ], [ -80.273750305175781, -6.554583072662297 ], [ -80.273750305175781, -6.554305076599064 ], [ -80.274024963378793, -6.554305076599064 ], [ -80.274024963378793, -6.553749084472599 ], [ -80.274307250976506, -6.553749084472599 ], [ -80.274307250976506, -6.553194999694824 ], [ -80.274581909179631, -6.553194999694824 ], [ -80.274581909179631, -6.552917003631592 ], [ -80.275138854980412, -6.552917003631592 ], [ -80.275138854980412, -6.552639007568359 ], [ -80.275413513183594, -6.552639007568359 ], [ -80.275413513183594, -6.552361011505127 ], [ -80.275970458984375, -6.552361011505127 ], [ -80.275970458984375, -6.552083015441781 ], [ -80.276252746582031, -6.552083015441781 ], [ -80.276252746582031, -6.551805019378605 ], [ -80.276802062988281, -6.551805019378605 ], [ -80.276802062988281, -6.551527023315373 ], [ -80.27874755859375, -6.551527023315373 ], [ -80.27874755859375, -6.55124902725214 ], [ -80.279304504394531, -6.55124902725214 ], [ -80.279304504394531, -6.550971031188908 ], [ -80.279861450195312, -6.550972938537598 ], [ -80.279861450195312, -6.550694942474365 ], [ -80.280975341796818, -6.550694942474365 ], [ -80.280975341796818, -6.550416946411133 ], [ -80.28125, -6.550416946411133 ], [ -80.28125, -6.5501389503479 ], [ -80.281806945800781, -6.5501389503479 ], [ -80.281806945800781, -6.549860954284668 ], [ -80.282081604003906, -6.549860954284668 ], [ -80.282081604003906, -6.549582958221436 ], [ -80.282363891601562, -6.549582958221436 ], [ -80.282363891601562, -6.549304962158203 ], [ -80.282913208007812, -6.549304962158203 ], [ -80.282913208007812, -6.549028873443604 ], [ -80.283752441406136, -6.549028873443604 ], [ -80.283752441406136, -6.548750877380371 ], [ -80.285415649414062, -6.548750877380371 ], [ -80.285415649414062, -6.548472881317139 ], [ -80.285697937011719, -6.548472881317139 ], [ -80.285697937011719, -6.548194885253906 ], [ -80.287361145019474, -6.548194885253906 ], [ -80.287361145019474, -6.547916889190674 ], [ -80.287918090820256, -6.547916889190674 ], [ -80.287918090820256, -6.547638893127441 ], [ -80.288192749023438, -6.547638893127441 ], [ -80.288192749023438, -6.547360897064209 ], [ -80.289863586425781, -6.547360897064209 ], [ -80.289863586425781, -6.547082901000977 ], [ -80.290138244628849, -6.547082901000977 ], [ -80.290138244628849, -6.546803951263428 ], [ -80.290412902831974, -6.546803951263428 ], [ -80.290412902831974, -6.546528816223088 ], [ -80.290695190429631, -6.546528816223088 ], [ -80.290695190429631, -6.546250820159855 ], [ -80.290969848632756, -6.546250820159855 ], [ -80.290969848632756, -6.545972824096623 ], [ -80.291252136230412, -6.545972824096623 ], [ -80.291252136230412, -6.54569482803339 ], [ -80.291526794433594, -6.54569482803339 ], [ -80.291526794433594, -6.545415878295842 ], [ -80.29180908203125, -6.545415878295842 ], [ -80.29180908203125, -6.545137882232609 ], [ -80.292083740234375, -6.545137882232609 ], [ -80.292083740234375, -6.544581890106144 ], [ -80.2923583984375, -6.544581890106144 ], [ -80.2923583984375, -6.543471813201904 ], [ -80.292640686035156, -6.543471813201904 ], [ -80.292640686035156, -6.542915821075326 ], [ -80.294303894042912, -6.542915821075326 ], [ -80.294303894042912, -6.543193817138672 ], [ -80.294586181640625, -6.543193817138672 ], [ -80.294586181640625, -6.543471813201904 ], [ -80.29486083984375, -6.543471813201904 ], [ -80.29486083984375, -6.543193817138672 ], [ -80.295692443847656, -6.543193817138672 ], [ -80.295692443847656, -6.542915821075326 ], [ -80.296806335449162, -6.542915821075326 ], [ -80.296806335449162, -6.542359828948918 ], [ -80.297363281249943, -6.542359828948918 ], [ -80.297363281249943, -6.542084217071533 ], [ -80.297637939453125, -6.542084217071533 ], [ -80.297637939453125, -6.541528224945068 ], [ -80.297920227050781, -6.541528224945068 ], [ -80.297920227050781, -6.541250228881836 ], [ -80.298194885253906, -6.541250228881836 ], [ -80.298194885253906, -6.540972232818604 ], [ -80.298751831054688, -6.540972232818604 ], [ -80.298751831054688, -6.540694236755371 ], [ -80.299026489257812, -6.540694236755371 ], [ -80.299026489257812, -6.54041576385498 ], [ -80.29958343505848, -6.54041576385498 ], [ -80.29958343505848, -6.540137767791748 ], [ -80.300140380859318, -6.540137767791748 ], [ -80.300140380859318, -6.539859771728516 ], [ -80.300971984863281, -6.539859771728516 ], [ -80.300971984863281, -6.539581775665283 ], [ -80.301528930664062, -6.539584159851074 ], [ -80.301528930664062, -6.539028167724609 ], [ -80.301803588867188, -6.539028167724609 ], [ -80.301803588867188, -6.538750171661377 ], [ -80.302360534667969, -6.538750171661377 ], [ -80.302360534667969, -6.538472175598145 ], [ -80.30263519287098, -6.538472175598145 ], [ -80.30263519287098, -6.538194179534912 ], [ -80.303192138671818, -6.538194179534912 ], [ -80.303192138671818, -6.53791618347168 ], [ -80.303474426269474, -6.53791618347168 ], [ -80.303474426269474, -6.537638187408447 ], [ -80.305137634277344, -6.537638187408447 ], [ -80.305137634277344, -6.537360191345215 ], [ -80.305969238281193, -6.537360191345215 ], [ -80.305969238281193, -6.537082195281982 ], [ -80.306526184081974, -6.537082195281982 ], [ -80.306526184081974, -6.537360191345215 ], [ -80.306808471679631, -6.537360191345215 ], [ -80.306808471679631, -6.537082195281982 ], [ -80.307083129882756, -6.537084102630615 ], [ -80.307083129882756, -6.536806106567383 ], [ -80.307357788085938, -6.536806106567383 ], [ -80.307357788085938, -6.53652811050415 ], [ -80.307640075683594, -6.53652811050415 ], [ -80.307640075683594, -6.536250114440918 ], [ -80.307914733886719, -6.536250114440918 ], [ -80.307914733886719, -6.535694122314453 ], [ -80.308197021484375, -6.535694122314453 ], [ -80.308197021484375, -6.535138130187988 ], [ -80.3084716796875, -6.535138130187988 ], [ -80.3084716796875, -6.534860134124756 ], [ -80.308746337890625, -6.534862041473332 ], [ -80.308746337890625, -6.534584045410099 ], [ -80.309303283691349, -6.534584045410099 ], [ -80.309303283691349, -6.534306049346867 ], [ -80.31097412109375, -6.534306049346867 ], [ -80.31097412109375, -6.534028053283635 ], [ -80.311531066894531, -6.534028053283635 ], [ -80.311531066894531, -6.533750057220402 ], [ -80.312080383300668, -6.533750057220402 ], [ -80.312080383300668, -6.533472061157227 ], [ -80.312919616699162, -6.533472061157227 ], [ -80.312919616699162, -6.533193111419621 ], [ -80.313751220703125, -6.533193111419621 ], [ -80.313751220703125, -6.532915115356388 ], [ -80.31402587890625, -6.532915115356388 ], [ -80.31402587890625, -6.532639980316048 ], [ -80.315696716308537, -6.532639980316048 ], [ -80.315696716308537, -6.532361984252873 ], [ -80.315971374511662, -6.532361984252873 ], [ -80.315971374511662, -6.53208398818964 ], [ -80.316253662109318, -6.53208398818964 ], [ -80.316253662109318, -6.531805038452148 ], [ -80.316528320312443, -6.531805038452148 ], [ -80.316528320312443, -6.531527042388916 ], [ -80.316802978515625, -6.531527042388916 ], [ -80.316802978515625, -6.531249046325684 ], [ -80.317359924316406, -6.531249046325684 ], [ -80.317359924316406, -6.530971050262337 ], [ -80.317916870117188, -6.530971050262337 ], [ -80.317916870117188, -6.530695915222168 ], [ -80.318473815917969, -6.530695915222168 ], [ -80.318473815917969, -6.530416965484619 ], [ -80.318748474121037, -6.530416965484619 ], [ -80.318748474121037, -6.530138969421387 ], [ -80.319305419921818, -6.530138969421387 ], [ -80.319305419921818, -6.529860973358154 ], [ -80.319862365722599, -6.529860973358154 ], [ -80.319862365722599, -6.529582977294922 ], [ -80.320693969726562, -6.529582977294922 ], [ -80.320693969726562, -6.529304981231689 ], [ -80.321525573730469, -6.529304981231689 ], [ -80.321525573730469, -6.529026985168457 ], [ -80.322082519531193, -6.529026985168457 ], [ -80.322082519531193, -6.528748989105225 ], [ -80.322364807128849, -6.528748989105225 ], [ -80.322364807128849, -6.528472900390568 ], [ -80.3245849609375, -6.528472900390568 ], [ -80.3245849609375, -6.528194904327336 ], [ -80.325691223144474, -6.528194904327336 ], [ -80.325691223144474, -6.52791690826416 ], [ -80.325973510742131, -6.52791690826416 ], [ -80.325973510742131, -6.527638912200928 ], [ -80.326248168945312, -6.527638912200928 ], [ -80.326248168945312, -6.527360916137695 ], [ -80.326530456542969, -6.527360916137695 ], [ -80.326530456542969, -6.527082920074463 ], [ -80.326805114746094, -6.527082920074463 ], [ -80.326805114746094, -6.52680492401123 ], [ -80.327079772949219, -6.52680492401123 ], [ -80.327079772949219, -6.526526927947998 ], [ -80.327362060546875, -6.526526927947998 ], [ -80.327362060546875, -6.526248931884766 ], [ -80.32763671875, -6.526248931884766 ], [ -80.32763671875, -6.525972843170109 ], [ -80.327919006347656, -6.525972843170109 ], [ -80.327919006347656, -6.525694847106877 ], [ -80.328193664550668, -6.525694847106877 ], [ -80.328193664550668, -6.525416851043644 ], [ -80.328475952148381, -6.525416851043644 ], [ -80.328475952148381, -6.525138854980412 ], [ -80.329307556152287, -6.525138854980412 ], [ -80.329307556152287, -6.524860858917179 ], [ -80.330413818359375, -6.524860858917179 ], [ -80.330413818359375, -6.524582862853947 ], [ -80.331253051757812, -6.524582862853947 ], [ -80.331253051757812, -6.524860858917179 ], [ -80.332084655761662, -6.524860858917179 ], [ -80.332084655761662, -6.524582862853947 ], [ -80.332641601562443, -6.524582862853947 ], [ -80.332641601562443, -6.524304866790771 ], [ -80.332916259765625, -6.524304866790771 ], [ -80.332916259765625, -6.524026870727539 ], [ -80.33319091796875, -6.524026870727539 ], [ -80.33319091796875, -6.523472785949593 ], [ -80.333473205566406, -6.523472785949593 ], [ -80.333473205566406, -6.523194789886418 ], [ -80.333747863769531, -6.523194789886418 ], [ -80.333747863769531, -6.522638797759953 ], [ -80.334030151367188, -6.522638797759953 ], [ -80.334030151367188, -6.522360801696721 ], [ -80.334304809570312, -6.522360801696721 ], [ -80.334304809570312, -6.521804809570256 ], [ -80.334587097167855, -6.521804809570256 ], [ -80.334587097167855, -6.521529197692871 ], [ -80.335136413574162, -6.521529197692871 ], [ -80.335136413574162, -6.521251201629639 ], [ -80.335693359374943, -6.521251201629639 ], [ -80.335693359374943, -6.520973205566406 ], [ -80.336250305175781, -6.520973205566406 ], [ -80.336250305175781, -6.52069520950306 ], [ -80.338470458984318, -6.52069520950306 ], [ -80.338470458984318, -6.520417213439885 ], [ -80.339302062988281, -6.520417213439885 ], [ -80.339302062988281, -6.520139217376652 ], [ -80.339584350585938, -6.520139217376652 ], [ -80.339584350585938, -6.51986122131342 ], [ -80.339859008789062, -6.51986122131342 ], [ -80.339859008789062, -6.519307136535645 ], [ -80.340141296386719, -6.519307136535645 ], [ -80.340141296386719, -6.518473148345947 ], [ -80.340415954589844, -6.518473148345947 ], [ -80.340415954589844, -6.518194198608398 ], [ -80.340972900390511, -6.518194198608398 ], [ -80.340972900390511, -6.518473148345947 ], [ -80.341529846191349, -6.518473148345947 ], [ -80.341529846191349, -6.518194198608398 ], [ -80.342086791992131, -6.518194198608398 ], [ -80.342086791992131, -6.517916202545166 ], [ -80.342636108398438, -6.517916202545166 ], [ -80.342636108398438, -6.517638206481934 ], [ -80.342918395996094, -6.517638206481934 ], [ -80.342918395996094, -6.517360210418701 ], [ -80.343475341796875, -6.517360210418701 ], [ -80.343475341796875, -6.517082214355469 ], [ -80.344024658203011, -6.517082214355469 ], [ -80.344024658203011, -6.516804218292236 ], [ -80.344581604003849, -6.516804218292236 ], [ -80.344581604003849, -6.516526222229004 ], [ -80.345695495605469, -6.516526222229004 ], [ -80.345695495605469, -6.516248226165771 ], [ -80.346527099609375, -6.516248226165771 ], [ -80.346527099609375, -6.515970230102539 ], [ -80.347084045410156, -6.515972137451172 ], [ -80.347084045410156, -6.515694141387939 ], [ -80.347358703613224, -6.515694141387939 ], [ -80.347358703613224, -6.515416145324707 ], [ -80.348197937011662, -6.515416145324707 ], [ -80.348197937011662, -6.515694141387939 ], [ -80.348472595214787, -6.515694141387939 ], [ -80.348472595214787, -6.515416145324707 ], [ -80.34930419921875, -6.515416145324707 ], [ -80.34930419921875, -6.515138149261475 ], [ -80.349586486816406, -6.515138149261475 ], [ -80.349586486816406, -6.514860153198242 ], [ -80.349861145019531, -6.514860153198242 ], [ -80.349861145019531, -6.51458215713501 ], [ -80.350418090820199, -6.51458215713501 ], [ -80.350418090820199, -6.514306068420353 ], [ -80.350692749023381, -6.514306068420353 ], [ -80.350692749023381, -6.514028072357121 ], [ -80.351249694824162, -6.514028072357121 ], [ -80.351249694824162, -6.513750076293888 ], [ -80.351524353027287, -6.513750076293888 ], [ -80.351524353027287, -6.513194084167424 ], [ -80.351806640625, -6.513194084167424 ], [ -80.351806640625, -6.512916088104191 ], [ -80.352081298828125, -6.512916088104191 ], [ -80.352081298828125, -6.512638092040959 ], [ -80.352363586425781, -6.512638092040959 ], [ -80.352363586425781, -6.512360095977783 ], [ -80.352638244628906, -6.512362003326416 ], [ -80.352638244628906, -6.512084007263184 ], [ -80.352912902832031, -6.512084007263184 ], [ -80.352912902832031, -6.511806011199951 ], [ -80.354026794433537, -6.511806011199951 ], [ -80.354026794433537, -6.511528015136605 ], [ -80.354583740234318, -6.511528015136605 ], [ -80.354583740234318, -6.511250019073429 ], [ -80.355140686035156, -6.511250019073429 ], [ -80.355140686035156, -6.510972023010197 ], [ -80.355415344238281, -6.510972023010197 ], [ -80.355415344238281, -6.510694026946965 ], [ -80.355697631835938, -6.510694026946965 ], [ -80.355697631835938, -6.510416030883732 ], [ -80.356529235839844, -6.510416030883732 ], [ -80.356529235839844, -6.5101380348205 ], [ -80.357360839843693, -6.5101380348205 ], [ -80.357360839843693, -6.509860038757267 ], [ -80.359024047851562, -6.509861946105957 ], [ -80.359024047851562, -6.509583950042725 ], [ -80.359580993652344, -6.509583950042725 ], [ -80.359580993652344, -6.509305953979492 ], [ -80.360137939453068, -6.509305953979492 ], [ -80.360137939453068, -6.50902795791626 ], [ -80.360694885253849, -6.50902795791626 ], [ -80.360694885253849, -6.508749961853027 ], [ -80.360969543456974, -6.508749961853027 ], [ -80.360969543456974, -6.508193969726562 ], [ -80.361251831054631, -6.508193969726562 ], [ -80.361251831054631, -6.507915973663216 ], [ -80.361526489257812, -6.507915973663216 ], [ -80.361526489257812, -6.50763988494873 ], [ -80.362083435058594, -6.50763988494873 ], [ -80.362083435058594, -6.507915973663216 ], [ -80.363471984863224, -6.507915973663216 ], [ -80.363471984863224, -6.50763988494873 ], [ -80.363746643066349, -6.50763988494873 ], [ -80.363746643066349, -6.507361888885498 ], [ -80.365135192871094, -6.507361888885498 ], [ -80.365135192871094, -6.507083892822266 ], [ -80.365974426269531, -6.507083892822266 ], [ -80.365974426269531, -6.506805896759033 ], [ -80.366531372070199, -6.506805896759033 ], [ -80.366531372070199, -6.506527900695801 ], [ -80.367362976074162, -6.506527900695801 ], [ -80.367362976074162, -6.506249904632568 ], [ -80.368194580078125, -6.506249904632568 ], [ -80.368194580078125, -6.50597095489502 ], [ -80.36846923828125, -6.50597095489502 ], [ -80.36846923828125, -6.505692958831787 ], [ -80.368751525878906, -6.505692958831787 ], [ -80.368751525878906, -6.505139827728215 ], [ -80.369026184082031, -6.505139827728215 ], [ -80.369026184082031, -6.504861831665039 ], [ -80.369308471679688, -6.504861831665039 ], [ -80.369308471679688, -6.504304885864201 ], [ -80.369583129882699, -6.504304885864201 ], [ -80.369583129882699, -6.503748893737736 ], [ -80.369857788085881, -6.503748893737736 ], [ -80.369857788085881, -6.504026889800969 ], [ -80.372360229492188, -6.504026889800969 ], [ -80.372360229492188, -6.503748893737736 ], [ -80.372642517089844, -6.503748893737736 ], [ -80.372642517089844, -6.503192901611328 ], [ -80.372917175292912, -6.503192901611328 ], [ -80.372917175292912, -6.50236082077015 ], [ -80.373191833496037, -6.50236082077015 ], [ -80.373191833496037, -6.50152683258051 ], [ -80.374305725097656, -6.50152683258051 ], [ -80.374305725097656, -6.501804828643742 ], [ -80.374580383300781, -6.501804828643742 ], [ -80.374580383300781, -6.50236082077015 ], [ -80.374862670898438, -6.50236082077015 ], [ -80.374862670898438, -6.502638816833496 ], [ -80.375694274902344, -6.502638816833496 ], [ -80.375694274902344, -6.50236082077015 ], [ -80.376251220703068, -6.50236082077015 ], [ -80.376251220703068, -6.502082824706974 ], [ -80.376808166503849, -6.502082824706974 ], [ -80.376808166503849, -6.501248836517277 ], [ -80.376525878906193, -6.501248836517277 ], [ -80.376525878906193, -6.50069522857666 ], [ -80.376808166503849, -6.50069522857666 ], [ -80.376808166503849, -6.500417232513428 ], [ -80.377082824706974, -6.500417232513428 ], [ -80.377082824706974, -6.500139236450195 ], [ -80.377639770507812, -6.500139236450195 ], [ -80.377639770507812, -6.499860763549805 ], [ -80.377914428710938, -6.499860763549805 ], [ -80.377914428710938, -6.499582767486572 ], [ -80.378196716308594, -6.499582767486572 ], [ -80.378196716308594, -6.49930477142334 ], [ -80.378471374511719, -6.49930477142334 ], [ -80.378471374511719, -6.499026775360107 ], [ -80.379028320312386, -6.499026775360107 ], [ -80.379028320312386, -6.498748779296761 ], [ -80.379302978515568, -6.498748779296761 ], [ -80.379302978515568, -6.498470783233586 ], [ -80.381805419921875, -6.498470783233586 ], [ -80.381805419921875, -6.497083187103271 ], [ -80.382919311523381, -6.497083187103271 ], [ -80.382919311523381, -6.497361183166504 ], [ -80.383193969726506, -6.497361183166504 ], [ -80.383193969726506, -6.497639179229736 ], [ -80.384864807128906, -6.497639179229736 ], [ -80.384864807128906, -6.496805191040039 ], [ -80.38458251953125, -6.496805191040039 ], [ -80.38458251953125, -6.495971202850228 ], [ -80.384864807128906, -6.495973110198975 ], [ -80.384864807128906, -6.495695114135742 ], [ -80.3870849609375, -6.495695114135742 ], [ -80.3870849609375, -6.49541711807251 ], [ -80.387359619140625, -6.49541711807251 ], [ -80.387359619140625, -6.495139122009277 ], [ -80.387641906738281, -6.495139122009277 ], [ -80.387641906738281, -6.494861125946045 ], [ -80.389305114746037, -6.494861125946045 ], [ -80.389305114746037, -6.494583129882812 ], [ -80.389579772949162, -6.494583129882812 ], [ -80.389579772949162, -6.49430513381958 ], [ -80.39013671875, -6.49430513381958 ], [ -80.39013671875, -6.494027137756348 ], [ -80.390419006347656, -6.494027137756348 ], [ -80.390419006347656, -6.493751049041691 ], [ -80.390975952148438, -6.493751049041691 ], [ -80.390975952148438, -6.493473052978459 ], [ -80.391250610351562, -6.493473052978459 ], [ -80.391250610351562, -6.493195056915226 ], [ -80.39180755615223, -6.493195056915226 ], [ -80.39180755615223, -6.492917060852051 ], [ -80.392082214355412, -6.492917060852051 ], [ -80.392082214355412, -6.492639064788818 ], [ -80.393196105957031, -6.492639064788818 ], [ -80.393196105957031, -6.492360115051213 ], [ -80.392913818359318, -6.492360115051213 ], [ -80.392913818359318, -6.49208211898798 ], [ -80.393196105957031, -6.49208211898798 ], [ -80.393196105957031, -6.491806983947697 ], [ -80.393753051757812, -6.491806983947697 ], [ -80.393753051757812, -6.49208211898798 ], [ -80.395141601562386, -6.49208211898798 ], [ -80.395141601562386, -6.491250991821232 ], [ -80.395690917968693, -6.491250991821232 ], [ -80.395690917968693, -6.49097204208374 ], [ -80.396530151367188, -6.49097204208374 ], [ -80.396530151367188, -6.490694046020508 ], [ -80.397087097167969, -6.490694046020508 ], [ -80.397087097167969, -6.490416049957162 ], [ -80.398475646972599, -6.490416049957162 ], [ -80.398475646972599, -6.490694046020508 ], [ -80.399024963378849, -6.490694046020508 ], [ -80.399024963378849, -6.490138053893986 ], [ -80.399307250976506, -6.490138053893986 ], [ -80.399307250976506, -6.489583969116211 ], [ -80.399581909179688, -6.489583969116211 ], [ -80.399581909179688, -6.489027976989746 ], [ -80.399864196777344, -6.489027976989746 ], [ -80.399864196777344, -6.488749980926514 ], [ -80.40069580078125, -6.488749980926514 ], [ -80.40069580078125, -6.489027976989746 ], [ -80.401252746582031, -6.489027976989746 ], [ -80.401252746582031, -6.489305973052979 ], [ -80.401802062988224, -6.489305973052979 ], [ -80.401802062988224, -6.489027976989746 ], [ -80.402359008789006, -6.489027976989746 ], [ -80.402359008789006, -6.488749980926514 ], [ -80.402641296386662, -6.488749980926514 ], [ -80.402641296386662, -6.488471984863281 ], [ -80.402359008789006, -6.488471984863281 ], [ -80.402359008789006, -6.487915992736816 ], [ -80.402084350585881, -6.487915992736816 ], [ -80.402084350585881, -6.487637996673584 ], [ -80.402359008789006, -6.487637996673584 ], [ -80.402359008789006, -6.487360000610352 ], [ -80.402641296386662, -6.487360000610352 ], [ -80.402641296386662, -6.487083911895752 ], [ -80.403472900390625, -6.487083911895752 ], [ -80.403472900390625, -6.487360000610352 ], [ -80.404861450195256, -6.487360000610352 ], [ -80.404861450195256, -6.487083911895752 ], [ -80.405418395996037, -6.487083911895752 ], [ -80.405418395996037, -6.48680591583252 ], [ -80.405693054199162, -6.48680591583252 ], [ -80.405693054199162, -6.486527919769287 ], [ -80.40625, -6.486527919769287 ], [ -80.40625, -6.486249923706055 ], [ -80.406806945800781, -6.486249923706055 ], [ -80.406806945800781, -6.485971927642822 ], [ -80.407363891601562, -6.485971927642822 ], [ -80.407363891601562, -6.48569393157959 ], [ -80.407638549804574, -6.48569393157959 ], [ -80.407638549804574, -6.485137939453125 ], [ -80.407913208007756, -6.485137939453125 ], [ -80.407913208007756, -6.484305858612004 ], [ -80.408470153808537, -6.484305858612004 ], [ -80.408470153808537, -6.484027862548771 ], [ -80.410697937011719, -6.484027862548771 ], [ -80.410697937011719, -6.483749866485596 ], [ -80.411247253417912, -6.483749866485596 ], [ -80.411247253417912, -6.483471870422363 ], [ -80.411529541015568, -6.483471870422363 ], [ -80.411529541015568, -6.483193874359131 ], [ -80.412086486816349, -6.483193874359131 ], [ -80.412086486816349, -6.482915878295898 ], [ -80.412635803222656, -6.482915878295898 ], [ -80.412635803222656, -6.482639789581242 ], [ -80.413192749023438, -6.482639789581242 ], [ -80.413192749023438, -6.48236179351801 ], [ -80.413749694824219, -6.48236179351801 ], [ -80.413749694824219, -6.482083797454777 ], [ -80.41402435302723, -6.482083797454777 ], [ -80.41402435302723, -6.481805801391545 ], [ -80.414306640624943, -6.481805801391545 ], [ -80.414306640624943, -6.481527805328312 ], [ -80.414581298828068, -6.481527805328312 ], [ -80.414581298828068, -6.48124980926508 ], [ -80.415138244628849, -6.48124980926508 ], [ -80.415138244628849, -6.480971813201847 ], [ -80.415969848632812, -6.480971813201847 ], [ -80.415969848632812, -6.480693817138615 ], [ -80.416252136230469, -6.480693817138615 ], [ -80.416252136230469, -6.48041820526123 ], [ -80.41680908203125, -6.48041820526123 ], [ -80.41680908203125, -6.480140209197884 ], [ -80.417083740234375, -6.480140209197884 ], [ -80.417083740234375, -6.479862213134709 ], [ -80.417640686035099, -6.479862213134709 ], [ -80.417640686035099, -6.479584217071476 ], [ -80.417915344238224, -6.479584217071476 ], [ -80.417915344238224, -6.479306221008244 ], [ -80.418197631835881, -6.479306221008244 ], [ -80.418197631835881, -6.478748798370361 ], [ -80.418472290039006, -6.478748798370361 ], [ -80.418472290039006, -6.478470802307129 ], [ -80.418746948242188, -6.478470802307129 ], [ -80.418746948242188, -6.478192806243896 ], [ -80.419029235839844, -6.478192806243896 ], [ -80.419029235839844, -6.477640151977539 ], [ -80.419303894042969, -6.477640151977539 ], [ -80.419303894042969, -6.47736120223999 ], [ -80.41986083984375, -6.47736120223999 ], [ -80.41986083984375, -6.477083206176758 ], [ -80.420692443847599, -6.477083206176758 ], [ -80.420692443847599, -6.476805210113525 ], [ -80.421249389648381, -6.476805210113525 ], [ -80.421249389648381, -6.476527214050293 ], [ -80.422080993652344, -6.476527214050293 ], [ -80.422080993652344, -6.476249217987061 ], [ -80.422920227050781, -6.476249217987061 ], [ -80.422920227050781, -6.47736120223999 ], [ -80.422637939453125, -6.47736120223999 ], [ -80.422637939453125, -6.477918148040771 ], [ -80.422920227050781, -6.477918148040771 ], [ -80.422920227050781, -6.477640151977539 ], [ -80.423194885253906, -6.477640151977539 ], [ -80.423194885253906, -6.47736120223999 ], [ -80.423751831054574, -6.47736120223999 ], [ -80.423751831054574, -6.477083206176758 ], [ -80.424308776855412, -6.477083206176758 ], [ -80.424308776855412, -6.476805210113525 ], [ -80.424858093261719, -6.476805210113525 ], [ -80.424858093261719, -6.476527214050293 ], [ -80.425140380859375, -6.476527214050293 ], [ -80.425140380859375, -6.476249217987061 ], [ -80.425697326660156, -6.476249217987061 ], [ -80.425697326660156, -6.475971221923828 ], [ -80.426528930664062, -6.475971221923828 ], [ -80.426528930664062, -6.475693225860596 ], [ -80.426803588867074, -6.475693225860596 ], [ -80.426803588867074, -6.475415229797363 ], [ -80.427360534667912, -6.475415229797363 ], [ -80.427360534667912, -6.475137233734131 ], [ -80.427635192871037, -6.475137233734131 ], [ -80.427635192871037, -6.474859237670785 ], [ -80.428192138671875, -6.474859237670785 ], [ -80.428192138671875, -6.474580764770508 ], [ -80.428474426269531, -6.474583148956299 ], [ -80.428474426269531, -6.474305152893066 ], [ -80.428749084472656, -6.474305152893066 ], [ -80.428749084472656, -6.474027156829834 ], [ -80.429306030273438, -6.474027156829834 ], [ -80.429306030273438, -6.473749160766602 ], [ -80.429580688476562, -6.473749160766602 ], [ -80.429580688476562, -6.473471164703369 ], [ -80.429862976074219, -6.473471164703369 ], [ -80.429862976074219, -6.473195075988713 ], [ -80.430419921874943, -6.473195075988713 ], [ -80.430419921874943, -6.47291707992548 ], [ -80.430969238281193, -6.47291707992548 ], [ -80.430969238281193, -6.472639083862248 ], [ -80.431526184082031, -6.472639083862248 ], [ -80.431526184082031, -6.472361087799015 ], [ -80.432357788085938, -6.472361087799015 ], [ -80.432357788085938, -6.472083091735783 ], [ -80.432640075683594, -6.472083091735783 ], [ -80.432640075683594, -6.471805095672607 ], [ -80.433471679687443, -6.471805095672607 ], [ -80.433471679687443, -6.471527099609375 ], [ -80.434028625488224, -6.471527099609375 ], [ -80.434028625488224, -6.471249103546143 ], [ -80.434585571289062, -6.471249103546143 ], [ -80.434585571289062, -6.47097110748291 ], [ -80.435142517089844, -6.470973014831429 ], [ -80.435142517089844, -6.470695018768254 ], [ -80.435691833496094, -6.470695018768254 ], [ -80.435691833496094, -6.470417022705021 ], [ -80.436248779296761, -6.470417022705021 ], [ -80.436248779296761, -6.470139026641789 ], [ -80.436805725097599, -6.470139026641789 ], [ -80.436805725097599, -6.469861030578556 ], [ -80.437362670898381, -6.469861030578556 ], [ -80.437362670898381, -6.469583034515324 ], [ -80.437637329101562, -6.469583034515324 ], [ -80.437637329101562, -6.469305038452092 ], [ -80.437919616699219, -6.469305038452092 ], [ -80.437919616699219, -6.469028949737549 ], [ -80.438468933105469, -6.469027042388859 ], [ -80.438468933105469, -6.468749046325627 ], [ -80.438751220703125, -6.468749046325627 ], [ -80.438751220703125, -6.468471050262394 ], [ -80.439582824706918, -6.468472957611084 ], [ -80.439582824706918, -6.468194961547852 ], [ -80.440139770507756, -6.468194961547852 ], [ -80.440139770507756, -6.467916965484619 ], [ -80.440414428710881, -6.467916965484619 ], [ -80.440414428710881, -6.467638969421387 ], [ -80.440971374511719, -6.467638969421387 ], [ -80.440971374511719, -6.467360973358041 ], [ -80.4415283203125, -6.467360973358041 ], [ -80.4415283203125, -6.467082977294865 ], [ -80.441802978515625, -6.467082977294865 ], [ -80.441802978515625, -6.466804981231633 ], [ -80.442359924316406, -6.466806888580322 ], [ -80.442359924316406, -6.466526031494141 ], [ -80.442916870117131, -6.466526031494141 ], [ -80.442916870117131, -6.466248035430908 ], [ -80.443191528320256, -6.466250896453857 ], [ -80.443191528320256, -6.465972900390625 ], [ -80.443748474121037, -6.465972900390625 ], [ -80.443748474121037, -6.465694904327393 ], [ -80.444030761718693, -6.465694904327393 ], [ -80.444030761718693, -6.464859962463379 ], [ -80.444305419921875, -6.464859962463379 ], [ -80.444305419921875, -6.464581966400146 ], [ -80.445137023925781, -6.464581966400146 ], [ -80.445137023925781, -6.464303970336914 ], [ -80.445419311523438, -6.464303970336914 ], [ -80.445419311523438, -6.464028835296631 ], [ -80.445968627929631, -6.464028835296631 ], [ -80.445968627929631, -6.463749885559025 ], [ -80.446250915527287, -6.463749885559025 ], [ -80.446250915527287, -6.463471889495793 ], [ -80.448196411132812, -6.463471889495793 ], [ -80.448196411132812, -6.46319389343256 ], [ -80.449028015136605, -6.46319389343256 ], [ -80.449028015136605, -6.462915897369328 ], [ -80.449302673339787, -6.462915897369328 ], [ -80.449302673339787, -6.462637901306152 ], [ -80.449859619140568, -6.462637901306152 ], [ -80.449859619140568, -6.46235990524292 ], [ -80.450973510742188, -6.46235990524292 ], [ -80.450973510742188, -6.46208381652832 ], [ -80.451530456542969, -6.46208381652832 ], [ -80.451530456542969, -6.461805820464974 ], [ -80.452362060546761, -6.461805820464974 ], [ -80.452362060546761, -6.461527824401799 ], [ -80.452919006347599, -6.461527824401799 ], [ -80.452919006347599, -6.460693836212101 ], [ -80.453193664550724, -6.460693836212101 ], [ -80.453193664550724, -6.460415840148869 ], [ -80.454307556152344, -6.460415840148869 ], [ -80.454307556152344, -6.460693836212101 ], [ -80.454582214355469, -6.460693836212101 ], [ -80.454582214355469, -6.460415840148869 ], [ -80.45513916015625, -6.460415840148869 ], [ -80.45513916015625, -6.460137844085637 ], [ -80.455696105956974, -6.460137844085637 ], [ -80.455696105956974, -6.459862232208252 ], [ -80.456253051757756, -6.459862232208252 ], [ -80.456253051757756, -6.45958423614502 ], [ -80.456802368164062, -6.45958423614502 ], [ -80.456802368164062, -6.459305763244629 ], [ -80.457359313964844, -6.459305763244629 ], [ -80.457359313964844, -6.459027767181396 ], [ -80.4576416015625, -6.459027767181396 ], [ -80.4576416015625, -6.458749771118164 ], [ -80.45819091796875, -6.458749771118164 ], [ -80.45819091796875, -6.458471775054932 ], [ -80.458747863769474, -6.458471775054932 ], [ -80.458747863769474, -6.458193778991586 ], [ -80.459304809570256, -6.458193778991586 ], [ -80.459304809570256, -6.45791578292841 ], [ -80.459587097167912, -6.45791578292841 ], [ -80.459587097167912, -6.457637786865178 ], [ -80.460136413574219, -6.457637786865178 ], [ -80.460136413574219, -6.457362174987793 ], [ -80.460693359375, -6.457362174987793 ], [ -80.460693359375, -6.457081794738713 ], [ -80.461250305175781, -6.457084178924561 ], [ -80.461250305175781, -6.456806182861328 ], [ -80.461524963378906, -6.456806182861328 ], [ -80.461524963378906, -6.456250190734863 ], [ -80.462638854980412, -6.456250190734863 ], [ -80.462638854980412, -6.455972194671631 ], [ -80.46319580078125, -6.455972194671631 ], [ -80.46319580078125, -6.455694198608398 ], [ -80.463470458984375, -6.455694198608398 ], [ -80.463470458984375, -6.455416202545052 ], [ -80.464027404785156, -6.455416202545052 ], [ -80.464027404785156, -6.455138206481877 ], [ -80.464584350585938, -6.455138206481877 ], [ -80.464584350585938, -6.454860210418644 ], [ -80.465141296386605, -6.454860210418644 ], [ -80.465141296386605, -6.454584121704102 ], [ -80.465415954589787, -6.454584121704102 ], [ -80.465415954589787, -6.454306125640869 ], [ -80.465972900390568, -6.454306125640869 ], [ -80.465972900390568, -6.454028129577637 ], [ -80.466529846191406, -6.454028129577637 ], [ -80.466529846191406, -6.453750133514404 ], [ -80.467086791992188, -6.453750133514404 ], [ -80.467086791992188, -6.453472137451172 ], [ -80.467361450195312, -6.453472137451172 ], [ -80.467361450195312, -6.453194141387939 ], [ -80.467918395996094, -6.453194141387939 ], [ -80.467918395996094, -6.452915191650391 ], [ -80.468475341796818, -6.452915191650391 ], [ -80.468475341796818, -6.452640056610051 ], [ -80.469024658203068, -6.452640056610051 ], [ -80.469024658203068, -6.452362060546875 ], [ -80.469306945800724, -6.452362060546875 ], [ -80.469306945800724, -6.452084064483643 ], [ -80.469863891601562, -6.452084064483643 ], [ -80.469863891601562, -6.45180606842041 ], [ -80.470413208007812, -6.45180606842041 ], [ -80.470413208007812, -6.451527118682804 ], [ -80.470695495605469, -6.451527118682804 ], [ -80.470695495605469, -6.451249122619572 ], [ -80.47125244140625, -6.451249122619572 ], [ -80.47125244140625, -6.45097112655634 ], [ -80.471801757812443, -6.45097112655634 ], [ -80.471801757812443, -6.450695991516056 ], [ -80.472358703613224, -6.450695991516056 ], [ -80.472358703613224, -6.450417995452824 ], [ -80.472640991210881, -6.450417995452824 ], [ -80.472640991210881, -6.450139045715332 ], [ -80.473197937011719, -6.450139045715332 ], [ -80.473197937011719, -6.449861049651986 ], [ -80.473747253417969, -6.449861049651986 ], [ -80.473747253417969, -6.44958305358881 ], [ -80.474029541015625, -6.44958305358881 ], [ -80.474029541015625, -6.449305057525578 ], [ -80.474586486816293, -6.449305057525578 ], [ -80.474586486816293, -6.449027061462346 ], [ -80.475135803222599, -6.449027061462346 ], [ -80.475135803222599, -6.448749065399113 ], [ -80.475418090820256, -6.448749065399113 ], [ -80.475418090820256, -6.448471069335881 ], [ -80.475975036621094, -6.448471069335881 ], [ -80.475975036621094, -6.448194980621338 ], [ -80.476249694824219, -6.448194980621338 ], [ -80.476249694824219, -6.447916984558105 ], [ -80.476806640625, -6.447916984558105 ], [ -80.476806640625, -6.447638988494873 ], [ -80.477363586425781, -6.447638988494873 ], [ -80.477363586425781, -6.447360992431641 ], [ -80.477638244628793, -6.447360992431641 ], [ -80.477638244628793, -6.447082996368408 ], [ -80.478195190429631, -6.447082996368408 ], [ -80.478195190429631, -6.446805000305176 ], [ -80.479583740234375, -6.446805000305176 ], [ -80.479583740234375, -6.446527004241943 ], [ -80.4798583984375, -6.446527004241943 ], [ -80.4798583984375, -6.446249008178597 ], [ -80.481803894042912, -6.446249008178597 ], [ -80.481803894042912, -6.445972919464111 ], [ -80.48236083984375, -6.445971012115422 ], [ -80.48236083984375, -6.445694923400879 ], [ -80.482635498046875, -6.445694923400879 ], [ -80.482635498046875, -6.445416927337646 ], [ -80.483749389648438, -6.445416927337646 ], [ -80.483749389648438, -6.445138931274414 ], [ -80.484306335449162, -6.445138931274414 ], [ -80.484306335449162, -6.444860935211182 ], [ -80.485137939453068, -6.444860935211182 ], [ -80.485137939453068, -6.444582939147949 ], [ -80.485694885253906, -6.444582939147949 ], [ -80.485694885253906, -6.444304943084717 ], [ -80.485969543457031, -6.444304943084717 ], [ -80.485969543457031, -6.444026947021484 ], [ -80.486526489257812, -6.444026947021484 ], [ -80.486526489257812, -6.443748950958252 ], [ -80.486808776855469, -6.443748950958252 ], [ -80.486808776855469, -6.443472862243596 ], [ -80.487640380859318, -6.443472862243596 ], [ -80.487640380859318, -6.44319486618042 ], [ -80.488197326660099, -6.44319486618042 ], [ -80.488197326660099, -6.442916870117188 ], [ -80.488746643066406, -6.442916870117188 ], [ -80.488746643066406, -6.442638874053955 ], [ -80.489028930664062, -6.442638874053955 ], [ -80.489028930664062, -6.442360877990723 ], [ -80.489585876464844, -6.442360877990723 ], [ -80.489585876464844, -6.44208288192749 ], [ -80.489860534667969, -6.44208288192749 ], [ -80.489860534667969, -6.441804885864258 ], [ -80.490417480468636, -6.441804885864258 ], [ -80.490417480468636, -6.441528797149601 ], [ -80.490692138671818, -6.441528797149601 ], [ -80.490692138671818, -6.441250801086369 ], [ -80.491249084472599, -6.441250801086369 ], [ -80.491249084472599, -6.440972805023137 ], [ -80.491531372070256, -6.440972805023137 ], [ -80.491531372070256, -6.440694808959904 ], [ -80.492080688476562, -6.440694808959904 ], [ -80.492080688476562, -6.440416812896672 ], [ -80.492362976074219, -6.440416812896672 ], [ -80.492362976074219, -6.440138816833439 ], [ -80.492637634277344, -6.440138816833439 ], [ -80.492637634277344, -6.439582824707031 ], [ -80.492919921875, -6.439582824707031 ], [ -80.492919921875, -6.439307212829533 ], [ -80.494857788085938, -6.439303874969426 ], [ -80.494857788085938, -6.439029216766301 ], [ -80.495414733886719, -6.439029216766301 ], [ -80.495414733886719, -6.438751220703068 ], [ -80.495697021484375, -6.438751220703068 ], [ -80.495697021484375, -6.438473224639836 ], [ -80.496246337890625, -6.438473224639836 ], [ -80.496246337890625, -6.438195228576603 ], [ -80.497360229492131, -6.438195228576603 ], [ -80.497360229492131, -6.437915802001953 ], [ -80.498748779296875, -6.437915802001953 ], [ -80.498748779296875, -6.437637805938721 ], [ -80.499031066894531, -6.437637805938721 ], [ -80.499031066894531, -6.437915802001953 ], [ -80.499580383300781, -6.437915802001953 ], [ -80.499580383300781, -6.438195228576603 ], [ -80.500694274902287, -6.438195228576603 ], [ -80.500694274902287, -6.437915802001953 ], [ -80.501251220703068, -6.437915802001953 ], [ -80.501251220703068, -6.437637805938721 ], [ -80.501808166503906, -6.437637805938721 ], [ -80.501808166503906, -6.437359809875488 ], [ -80.502082824707031, -6.437359809875488 ], [ -80.502082824707031, -6.436807155609131 ], [ -80.502357482910156, -6.436807155609131 ], [ -80.502357482910156, -6.43625020980835 ], [ -80.502639770507812, -6.43625020980835 ], [ -80.502639770507812, -6.434582233428955 ], [ -80.50319671630848, -6.434582233428955 ], [ -80.50319671630848, -6.434304237365609 ], [ -80.503471374511662, -6.434304237365609 ], [ -80.503471374511662, -6.434025764465332 ], [ -80.50624847412098, -6.434025764465332 ], [ -80.50624847412098, -6.434304237365609 ], [ -80.506805419921818, -6.434304237365609 ], [ -80.506805419921818, -6.434025764465332 ], [ -80.507080078124943, -6.434025764465332 ], [ -80.507080078124943, -6.433750152587891 ], [ -80.506805419921818, -6.433750152587891 ], [ -80.506805419921818, -6.433194160461426 ], [ -80.506530761718636, -6.433194160461426 ], [ -80.506530761718636, -6.432638168334961 ], [ -80.507637023925781, -6.432638168334961 ], [ -80.507637023925781, -6.432916164398193 ], [ -80.508468627929688, -6.432916164398193 ], [ -80.508468627929688, -6.432638168334961 ], [ -80.509025573730469, -6.432638168334961 ], [ -80.509025573730469, -6.432360172271729 ], [ -80.509307861328125, -6.432362079620304 ], [ -80.509307861328125, -6.431528091430607 ], [ -80.509582519531136, -6.431528091430607 ], [ -80.509582519531136, -6.431250095367432 ], [ -80.509864807128849, -6.431250095367432 ], [ -80.509864807128849, -6.430138111114502 ], [ -80.511528015136719, -6.430138111114502 ], [ -80.511528015136719, -6.430416107177734 ], [ -80.511802673339844, -6.430416107177734 ], [ -80.511802673339844, -6.430972099304199 ], [ -80.512359619140625, -6.430972099304199 ], [ -80.512359619140625, -6.430416107177734 ], [ -80.512641906738281, -6.430416107177734 ], [ -80.512641906738281, -6.429584026336613 ], [ -80.512916564941349, -6.429584026336613 ], [ -80.512916564941349, -6.429306030273381 ], [ -80.513473510742131, -6.429306030273381 ], [ -80.513473510742131, -6.429584026336613 ], [ -80.513748168945256, -6.429584026336613 ], [ -80.513748168945256, -6.429862022399846 ], [ -80.514305114746094, -6.429862022399846 ], [ -80.514305114746094, -6.429584026336613 ], [ -80.51513671875, -6.429582118988037 ], [ -80.51513671875, -6.429028034210148 ], [ -80.514862060546875, -6.429028034210148 ], [ -80.514862060546875, -6.428472042083683 ], [ -80.514579772949219, -6.428472042083683 ], [ -80.514579772949219, -6.427916049957219 ], [ -80.514862060546875, -6.427916049957219 ], [ -80.514862060546875, -6.427638053894043 ], [ -80.516525268554631, -6.427638053894043 ], [ -80.516525268554631, -6.427916049957219 ], [ -80.518196105957031, -6.427916049957219 ], [ -80.518196105957031, -6.427638053894043 ], [ -80.518470764160156, -6.427638053894043 ], [ -80.518470764160156, -6.427360057830811 ], [ -80.518753051757812, -6.427361965179443 ], [ -80.518753051757812, -6.427083969116211 ], [ -80.518470764160156, -6.427083969116211 ], [ -80.518470764160156, -6.426805973052865 ], [ -80.518196105957031, -6.426805973052865 ], [ -80.518196105957031, -6.426527976989689 ], [ -80.518470764160156, -6.426527976989689 ], [ -80.518470764160156, -6.426249980926457 ], [ -80.518753051757812, -6.426249980926457 ], [ -80.518753051757812, -6.425971984863224 ], [ -80.519027709960824, -6.425971984863224 ], [ -80.519027709960824, -6.425693035125732 ], [ -80.519302368164006, -6.425693035125732 ], [ -80.519302368164006, -6.4254150390625 ], [ -80.520416259765625, -6.4254150390625 ], [ -80.520416259765625, -6.425137042999154 ], [ -80.521804809570312, -6.425137042999154 ], [ -80.521804809570312, -6.424861907958984 ], [ -80.522918701171818, -6.424861907958984 ], [ -80.522918701171818, -6.424583911895752 ], [ -80.524024963378906, -6.424583911895752 ], [ -80.524024963378906, -6.424304962158203 ], [ -80.524581909179688, -6.424304962158203 ], [ -80.524581909179688, -6.424026966094971 ], [ -80.525138854980469, -6.424026966094971 ], [ -80.525138854980469, -6.423748970031738 ], [ -80.525695800781193, -6.423748970031738 ], [ -80.525695800781193, -6.423470973968506 ], [ -80.525970458984318, -6.423470973968506 ], [ -80.525970458984318, -6.423192977905273 ], [ -80.526527404785099, -6.423192977905273 ], [ -80.526527404785099, -6.42291784286499 ], [ -80.527084350585938, -6.42291784286499 ], [ -80.527084350585938, -6.422638893127385 ], [ -80.527641296386719, -6.422638893127385 ], [ -80.527641296386719, -6.422360897064152 ], [ -80.528190612792969, -6.422360897064152 ], [ -80.5281982421875, -6.422082901000977 ], [ -80.528747558593693, -6.422082901000977 ], [ -80.528747558593693, -6.421804904937744 ], [ -80.529304504394474, -6.421804904937744 ], [ -80.529304504394474, -6.421526908874512 ], [ -80.529586791992131, -6.421526908874512 ], [ -80.529586791992131, -6.421248912811279 ], [ -80.530136108398438, -6.421248912811279 ], [ -80.530136108398438, -6.420972824096623 ], [ -80.530693054199219, -6.420972824096623 ], [ -80.530693054199219, -6.42069482803339 ], [ -80.53125, -6.42069482803339 ], [ -80.53125, -6.420416831970158 ], [ -80.531806945800668, -6.420416831970158 ], [ -80.531806945800668, -6.420138835906926 ], [ -80.532363891601506, -6.420138835906926 ], [ -80.532363891601506, -6.419860839843693 ], [ -80.532638549804631, -6.419860839843693 ], [ -80.532638549804631, -6.419582843780461 ], [ -80.533195495605469, -6.419582843780461 ], [ -80.533195495605469, -6.419304847717228 ], [ -80.53375244140625, -6.419304847717228 ], [ -80.53375244140625, -6.419026851653996 ], [ -80.5343017578125, -6.419026851653996 ], [ -80.5343017578125, -6.418748855590763 ], [ -80.534858703613168, -6.418748855590763 ], [ -80.534858703613168, -6.418472766876221 ], [ -80.535415649414006, -6.418472766876221 ], [ -80.535415649414006, -6.418194770812988 ], [ -80.535972595214787, -6.418194770812988 ], [ -80.535972595214787, -6.417916774749756 ], [ -80.536529541015625, -6.417916774749756 ], [ -80.536529541015625, -6.41763877868641 ], [ -80.537086486816406, -6.41763877868641 ], [ -80.537086486816406, -6.417360782623234 ], [ -80.537635803222656, -6.417360782623234 ], [ -80.537635803222656, -6.417082786560002 ], [ -80.538475036621037, -6.417082786560002 ], [ -80.538475036621037, -6.416804790496769 ], [ -80.539024353027287, -6.416804790496769 ], [ -80.539024353027287, -6.416526794433537 ], [ -80.539581298828125, -6.416526794433537 ], [ -80.539581298828125, -6.416251182556152 ], [ -80.540138244628906, -6.416248798370304 ], [ -80.540138244628906, -6.415970802307072 ], [ -80.540695190429688, -6.415970802307072 ], [ -80.540695190429688, -6.41569280624384 ], [ -80.541252136230469, -6.415695190429688 ], [ -80.541252136230469, -6.415417194366455 ], [ -80.541809082031193, -6.415417194366455 ], [ -80.541809082031193, -6.415139198303223 ], [ -80.542358398437443, -6.415139198303223 ], [ -80.542358398437443, -6.414861202239877 ], [ -80.542915344238281, -6.414861202239877 ], [ -80.542915344238281, -6.414583206176701 ], [ -80.543197631835938, -6.414583206176701 ], [ -80.543197631835938, -6.414305210113469 ], [ -80.543746948242188, -6.414305210113469 ], [ -80.543746948242188, -6.414027214050236 ], [ -80.544029235839844, -6.414027214050236 ], [ -80.544029235839844, -6.413751125335693 ], [ -80.544586181640511, -6.413751125335693 ], [ -80.544586181640511, -6.413473129272461 ], [ -80.544860839843693, -6.413473129272461 ], [ -80.544860839843693, -6.413195133209229 ], [ -80.545417785644474, -6.413195133209229 ], [ -80.545417785644474, -6.412917137145996 ], [ -80.545692443847599, -6.412917137145996 ], [ -80.545692443847599, -6.412639141082764 ], [ -80.546249389648438, -6.412639141082764 ], [ -80.546249389648438, -6.412361145019531 ], [ -80.546524047851562, -6.412361145019531 ], [ -80.546524047851562, -6.412082195281982 ], [ -80.547080993652344, -6.412082195281982 ], [ -80.547080993652344, -6.411807060241699 ], [ -80.54736328125, -6.411807060241699 ], [ -80.54736328125, -6.411529064178467 ], [ -80.547920227050668, -6.411529064178467 ], [ -80.547920227050668, -6.411251068115234 ], [ -80.548469543456974, -6.411251068115234 ], [ -80.548469543456974, -6.410973072052002 ], [ -80.549026489257812, -6.410973072052002 ], [ -80.549026489257812, -6.410694122314396 ], [ -80.549583435058594, -6.410694122314396 ], [ -80.549583435058594, -6.410416126251164 ], [ -80.550140380859375, -6.410416126251164 ], [ -80.550140380859375, -6.410138130187988 ], [ -80.550697326660156, -6.410138130187988 ], [ -80.550697326660156, -6.409860134124756 ], [ -80.551246643066349, -6.409860134124756 ], [ -80.551246643066349, -6.409584999084416 ], [ -80.553192138671875, -6.409582138061523 ], [ -80.553192138671875, -6.409307003021183 ], [ -80.554306030273381, -6.409307003021183 ], [ -80.554306030273381, -6.409028053283635 ], [ -80.555137634277287, -6.409028053283635 ], [ -80.555137634277287, -6.408750057220402 ], [ -80.55596923828125, -6.408750057220402 ], [ -80.55596923828125, -6.40847206115717 ], [ -80.556251525878906, -6.40847206115717 ], [ -80.556251525878906, -6.40736007690424 ], [ -80.556526184082031, -6.40736007690424 ], [ -80.556526184082031, -6.406805992126465 ], [ -80.558197021484318, -6.406805992126465 ], [ -80.558197021484318, -6.406527996063232 ], [ -80.559303283691406, -6.406527996063232 ], [ -80.559303283691406, -6.40625 ], [ -80.559860229492188, -6.40625 ], [ -80.559860229492188, -6.405972003936768 ], [ -80.560142517089844, -6.405972003936768 ], [ -80.560142517089844, -6.405694007873421 ], [ -80.560691833496037, -6.405694007873421 ], [ -80.560691833496037, -6.405416011810246 ], [ -80.561248779296818, -6.405416011810246 ], [ -80.561248779296818, -6.405138015747013 ], [ -80.561805725097656, -6.405138015747013 ], [ -80.561805725097656, -6.404860019683781 ], [ -80.562080383300781, -6.404860019683781 ], [ -80.562080383300781, -6.404583930969238 ], [ -80.562637329101562, -6.404583930969238 ], [ -80.562637329101562, -6.404305934906006 ], [ -80.563194274902344, -6.404305934906006 ], [ -80.563194274902344, -6.404027938842773 ], [ -80.563751220703011, -6.404027938842773 ], [ -80.563751220703011, -6.403749942779541 ], [ -80.564025878906193, -6.403749942779541 ], [ -80.564025878906193, -6.403471946716309 ], [ -80.564582824706974, -6.403471946716309 ], [ -80.564582824706974, -6.403193950653076 ], [ -80.565139770507812, -6.403193950653076 ], [ -80.565139770507812, -6.402915954589844 ], [ -80.565971374511719, -6.402915954589844 ], [ -80.565971374511719, -6.402639865875244 ], [ -80.5665283203125, -6.402639865875244 ], [ -80.5665283203125, -6.402361869812012 ], [ -80.567085266113224, -6.402361869812012 ], [ -80.567085266113224, -6.402083873748779 ], [ -80.567642211914006, -6.402083873748779 ], [ -80.567642211914006, -6.401805877685547 ], [ -80.568473815917969, -6.401805877685547 ], [ -80.568473815917969, -6.401527881622314 ], [ -80.56903076171875, -6.401527881622314 ], [ -80.56903076171875, -6.401249885559082 ], [ -80.569862365722656, -6.401249885559082 ], [ -80.569862365722656, -6.40097188949585 ], [ -80.570693969726506, -6.40097188949585 ], [ -80.570693969726506, -6.400693893432617 ], [ -80.571250915527287, -6.400693893432617 ], [ -80.571250915527287, -6.400417804717961 ], [ -80.57208251953125, -6.400417804717961 ], [ -80.57208251953125, -6.400139808654728 ], [ -80.572639465332031, -6.400139808654728 ], [ -80.572639465332031, -6.399861812591496 ], [ -80.572914123535156, -6.399861812591496 ], [ -80.572914123535156, -6.399583816528263 ], [ -80.573471069335881, -6.399583816528263 ], [ -80.573471069335881, -6.399305820465031 ], [ -80.574028015136662, -6.399305820465031 ], [ -80.574028015136662, -6.399027824401855 ], [ -80.5745849609375, -6.399027824401855 ], [ -80.5745849609375, -6.398749828338623 ], [ -80.574859619140625, -6.398749828338623 ], [ -80.574859619140625, -6.398470878601017 ], [ -80.575416564941406, -6.398470878601017 ], [ -80.575416564941406, -6.398192882537785 ], [ -80.576805114746037, -6.398192882537785 ], [ -80.576805114746037, -6.39791822433466 ], [ -80.577919006347656, -6.39791822433466 ], [ -80.577919006347656, -6.397640228271428 ], [ -80.579307556152344, -6.397640228271428 ], [ -80.579307556152344, -6.397362232208195 ], [ -80.579582214355355, -6.397362232208195 ], [ -80.579582214355355, -6.397082805633545 ], [ -80.579864501953068, -6.397082805633545 ], [ -80.579864501953068, -6.396526813506966 ], [ -80.580139160156193, -6.396526813506966 ], [ -80.580139160156193, -6.396248817443791 ], [ -80.580413818359318, -6.396248817443791 ], [ -80.580413818359318, -6.395970821380558 ], [ -80.580696105956974, -6.395970821380558 ], [ -80.580696105956974, -6.395692825317326 ], [ -80.580970764160156, -6.395692825317326 ], [ -80.580970764160156, -6.395417213439941 ], [ -80.581253051757812, -6.395417213439941 ], [ -80.581253051757812, -6.394861221313477 ], [ -80.581527709960938, -6.394861221313477 ], [ -80.581527709960938, -6.394583225250244 ], [ -80.581802368164062, -6.394583225250244 ], [ -80.581802368164062, -6.394305229187012 ], [ -80.583473205566349, -6.394305229187012 ], [ -80.583473205566349, -6.394027233123779 ], [ -80.585418701171875, -6.394027233123779 ], [ -80.585418701171875, -6.393749237060433 ], [ -80.586250305175724, -6.393749237060433 ], [ -80.586250305175724, -6.393470764160156 ], [ -80.586807250976506, -6.393470764160156 ], [ -80.586807250976506, -6.393195152282715 ], [ -80.587638854980469, -6.393195152282715 ], [ -80.587638854980469, -6.392917156219482 ], [ -80.58819580078125, -6.392917156219482 ], [ -80.58819580078125, -6.39263916015625 ], [ -80.588470458984375, -6.39263916015625 ], [ -80.588470458984375, -6.392361164093018 ], [ -80.589027404785043, -6.392361164093018 ], [ -80.589027404785043, -6.392083168029785 ], [ -80.589302062988224, -6.392083168029785 ], [ -80.589302062988224, -6.391805171966553 ], [ -80.589859008789006, -6.391805171966553 ], [ -80.589859008789006, -6.39152717590332 ], [ -80.590141296386662, -6.39152717590332 ], [ -80.590141296386662, -6.391249179840088 ], [ -80.59124755859375, -6.391249179840088 ], [ -80.59124755859375, -6.390971183776855 ], [ -80.592361450195199, -6.390973091125431 ], [ -80.592361450195199, -6.390695095062256 ], [ -80.593475341796818, -6.390695095062256 ], [ -80.593475341796818, -6.390417098999023 ], [ -80.59375, -6.390417098999023 ], [ -80.59375, -6.390139102935791 ], [ -80.594024658203125, -6.390139102935791 ], [ -80.594024658203125, -6.389583110809326 ], [ -80.594306945800781, -6.389583110809326 ], [ -80.594306945800781, -6.389305114746094 ], [ -80.594024658203125, -6.389305114746094 ], [ -80.594024658203125, -6.389027118682861 ], [ -80.594306945800781, -6.389027118682861 ], [ -80.594306945800781, -6.388749122619629 ], [ -80.594863891601562, -6.388749122619629 ], [ -80.594863891601562, -6.388471126556396 ], [ -80.595138549804688, -6.388473033904972 ], [ -80.595138549804688, -6.38819503784174 ], [ -80.595970153808537, -6.38819503784174 ], [ -80.595970153808537, -6.387917041778508 ], [ -80.596527099609318, -6.387917041778508 ], [ -80.596527099609318, -6.387639045715275 ], [ -80.597358703613281, -6.387639045715275 ], [ -80.597358703613281, -6.387361049652043 ], [ -80.598197937011719, -6.387361049652043 ], [ -80.598197937011719, -6.387083053588867 ], [ -80.598747253417912, -6.387083053588867 ], [ -80.598747253417912, -6.386805057525635 ], [ -80.599586486816349, -6.386805057525635 ], [ -80.599586486816349, -6.386528968811035 ], [ -80.600135803222656, -6.386527061462402 ], [ -80.600135803222656, -6.386248111724797 ], [ -80.600975036621094, -6.386248111724797 ], [ -80.600975036621094, -6.385970115661564 ], [ -80.601806640624886, -6.385972976684513 ], [ -80.601806640624886, -6.385694980621281 ], [ -80.602363586425724, -6.385694980621281 ], [ -80.602363586425724, -6.385416984558049 ], [ -80.603195190429688, -6.385416984558049 ], [ -80.603195190429688, -6.385138988494816 ], [ -80.604026794433594, -6.385138988494816 ], [ -80.604026794433594, -6.384860038757324 ], [ -80.604583740234375, -6.384860038757324 ], [ -80.604583740234375, -6.384582042693978 ], [ -80.605415344238224, -6.384582042693978 ], [ -80.605415344238224, -6.384304046630803 ], [ -80.605972290039006, -6.384304046630803 ], [ -80.605972290039006, -6.384028911590576 ], [ -80.606529235839844, -6.384028911590576 ], [ -80.606529235839844, -6.383750915527344 ], [ -80.606803894042969, -6.383750915527344 ], [ -80.606803894042969, -6.383471965789795 ], [ -80.608192443847543, -6.383471965789795 ], [ -80.608192443847543, -6.383193969726562 ], [ -80.609024047851506, -6.383193969726562 ], [ -80.609024047851506, -6.38291597366333 ], [ -80.609306335449162, -6.38291597366333 ], [ -80.609306335449162, -6.382637977600098 ], [ -80.609580993652344, -6.382637977600098 ], [ -80.609580993652344, -6.382084846496582 ], [ -80.60986328125, -6.382084846496582 ], [ -80.60986328125, -6.381805896758976 ], [ -80.610137939453125, -6.381805896758976 ], [ -80.610137939453125, -6.381527900695801 ], [ -80.610420227050781, -6.381527900695801 ], [ -80.610420227050781, -6.381249904632568 ], [ -80.610969543457031, -6.381249904632568 ], [ -80.610969543457031, -6.380971908569336 ], [ -80.611251831054688, -6.380971908569336 ], [ -80.611251831054688, -6.380693912506104 ], [ -80.611526489257756, -6.380693912506104 ], [ -80.611526489257756, -6.380415916442871 ], [ -80.61458587646473, -6.380415916442871 ], [ -80.61458587646473, -6.380137920379639 ], [ -80.614860534667912, -6.380137920379639 ], [ -80.614860534667912, -6.379859924316406 ], [ -80.615135192871037, -6.379859924316406 ], [ -80.615135192871037, -6.37958383560175 ], [ -80.615692138671818, -6.37958383560175 ], [ -80.615692138671818, -6.379305839538517 ], [ -80.615974426269531, -6.379305839538517 ], [ -80.615974426269531, -6.379027843475285 ], [ -80.616249084472656, -6.379027843475285 ], [ -80.616249084472656, -6.378749847412053 ], [ -80.616806030273438, -6.378749847412053 ], [ -80.616806030273438, -6.37847185134882 ], [ -80.618469238281193, -6.37847185134882 ], [ -80.618469238281193, -6.378193855285588 ], [ -80.619026184082031, -6.378193855285588 ], [ -80.619026184082031, -6.377915859222412 ], [ -80.619308471679688, -6.377915859222412 ], [ -80.619308471679688, -6.37763786315918 ], [ -80.619857788085938, -6.37763786315918 ], [ -80.619857788085938, -6.37736177444458 ], [ -80.620414733886719, -6.37736177444458 ], [ -80.620414733886719, -6.377083778381234 ], [ -80.620697021484375, -6.377083778381234 ], [ -80.620697021484375, -6.376805782318058 ], [ -80.620414733886719, -6.376805782318058 ], [ -80.620414733886719, -6.376527786254826 ], [ -80.621803283691349, -6.376527786254826 ], [ -80.621803283691349, -6.376249790191594 ], [ -80.622360229492188, -6.376249790191594 ], [ -80.622360229492188, -6.376527786254826 ], [ -80.622917175292969, -6.376527786254826 ], [ -80.622917175292969, -6.376249790191594 ], [ -80.623748779296875, -6.376249790191594 ], [ -80.623748779296875, -6.375971794128361 ], [ -80.624305725097599, -6.375971794128361 ], [ -80.624305725097599, -6.375693798065129 ], [ -80.625137329101506, -6.375693798065129 ], [ -80.625137329101506, -6.375415802001896 ], [ -80.625694274902344, -6.375415802001896 ], [ -80.625694274902344, -6.375137805938664 ], [ -80.626251220703125, -6.375137805938664 ], [ -80.626251220703125, -6.374859809875431 ], [ -80.626739501953125, -6.374859809875431 ], [ -80.624832153320312, -6.372485160827637 ], [ -80.539169311523438, -6.24744176864624 ], [ -80.510345458984261, -6.204720020294133 ], [ -80.38250732421875, -6.020134925842285 ], [ -80.376312255859375, -6.009929180145264 ], [ -80.371902465820312, -6.003424167633057 ], [ -80.368179321289062, -5.998633861541748 ], [ -80.364692687988224, -5.992523193359318 ], [ -80.362060546875, -5.989558219909554 ], [ -80.360076904296875, -5.986660957336426 ], [ -80.358078002929688, -5.984339237213135 ], [ -80.354904174804688, -5.97930717468256 ], [ -80.351829528808537, -5.975193023681641 ], [ -80.351341247558537, -5.974134922027588 ], [ -80.349906921386662, -5.972231864929199 ], [ -80.348800659179688, -5.970279216766301 ], [ -80.34527587890625, -5.96713399887085 ], [ -80.341163635253793, -5.962498188018742 ], [ -80.330642700195256, -5.95288181304926 ], [ -80.317718505859375, -5.94313383102417 ], [ -80.311386108398381, -5.937664031982422 ], [ -80.3077392578125, -5.935212135314885 ], [ -80.303596496582031, -5.931919097900391 ], [ -80.298866271972656, -5.929172039031926 ], [ -80.295204162597656, -5.926741123199463 ], [ -80.285461425781193, -5.922391891479435 ], [ -80.276664733886662, -5.918213844299316 ], [ -80.274070739746094, -5.916788101196289 ], [ -80.270668029785099, -5.915397167205811 ], [ -80.266326904296875, -5.913052082061768 ], [ -80.258621215820312, -5.909646987915039 ], [ -80.256996154785156, -5.909132003784123 ], [ -80.246109008789062, -5.903983116149846 ], [ -80.238929748535043, -5.901419162750187 ], [ -80.236381530761719, -5.900111198425293 ], [ -80.226585388183594, -5.896906852722168 ], [ -80.222023010253849, -5.895984172820988 ], [ -80.204116821289006, -5.893369197845402 ], [ -80.195457458496094, -5.892629146575814 ], [ -80.192245483398438, -5.891839981079102 ], [ -80.188575744628793, -5.891666889190674 ], [ -80.182968139648438, -5.8919358253479 ], [ -80.174095153808594, -5.891701221466064 ], [ -80.163650512695256, -5.890069007873535 ], [ -80.158287048339844, -5.89031791687006 ], [ -80.157760620117131, -5.889988899230957 ], [ -80.155761718749943, -5.889468193054199 ], [ -80.149673461914062, -5.889280796050969 ], [ -80.146820068359375, -5.888244152069092 ], [ -80.145416259765625, -5.888302803039494 ], [ -80.141387939453125, -5.889511108398381 ], [ -80.136444091796875, -5.890349864959717 ], [ -80.127815246581974, -5.891347885131836 ], [ -80.124862670898381, -5.891274929046574 ], [ -80.124580383300724, -5.890907764434814 ], [ -80.124572753906193, -5.890196800231934 ], [ -80.124130249023438, -5.889210224151611 ], [ -80.123931884765625, -5.884191036224365 ], [ -80.122352600097656, -5.879981994628849 ], [ -80.121894836425724, -5.875615119934025 ], [ -80.12078857421875, -5.872310161590576 ], [ -80.118988037109375, -5.871452808380127 ], [ -80.117378234863281, -5.871502876281738 ], [ -80.115814208984261, -5.871110916137695 ], [ -80.111671447753906, -5.868293762207031 ], [ -80.11037445068348, -5.867946147918644 ], [ -80.10951995849598, -5.868159770965519 ], [ -80.108436584472599, -5.86813306808466 ], [ -80.106704711914062, -5.867383003234863 ], [ -80.105438232421875, -5.866549015045166 ], [ -80.103851318359375, -5.86459112167347 ], [ -80.102844238281136, -5.861895084381104 ], [ -80.101921081542969, -5.860363006591797 ], [ -80.101196289062443, -5.85982704162592 ], [ -80.098670959472656, -5.858654022216797 ], [ -80.09735107421875, -5.857718944549561 ], [ -80.096412658691406, -5.856421947479191 ], [ -80.095085144042912, -5.853477954864445 ], [ -80.092575073242188, -5.85229301452631 ], [ -80.091567993164006, -5.851410865783635 ], [ -80.090675354003906, -5.849849224090519 ], [ -80.088912963867131, -5.845523834228516 ], [ -80.0865478515625, -5.843283176422119 ], [ -80.085739135742131, -5.841688156127873 ], [ -80.084678649902344, -5.841001987457275 ], [ -80.082832336425781, -5.839296817779541 ], [ -80.079780578613281, -5.835648059844914 ], [ -80.078277587890625, -5.835049152374268 ], [ -80.0770263671875, -5.835025787353516 ], [ -80.076042175292855, -5.834403991699162 ], [ -80.07562255859375, -5.833703994750863 ], [ -80.075630187988224, -5.832531929016056 ], [ -80.075401306152344, -5.83205604553217 ], [ -80.073974609375, -5.830828189849797 ], [ -80.072105407714787, -5.829940795898438 ], [ -80.069992065429688, -5.828131198883057 ], [ -80.068298339843693, -5.82604789733881 ], [ -80.066925048828125, -5.823527812957707 ], [ -80.065658569335938, -5.822250843048096 ], [ -80.063232421874943, -5.820588111877385 ], [ -80.058807373046875, -5.819455146789494 ], [ -80.057128906249943, -5.818568229675293 ], [ -80.057083129882812, -5.817352771758976 ], [ -80.055374145507812, -5.815773963928223 ], [ -80.054817199707031, -5.814454078674316 ], [ -80.052734375, -5.810991764068547 ], [ -80.049034118652287, -5.807692050933838 ], [ -80.046127319335938, -5.804645061492863 ], [ -80.043556213378906, -5.802687168121281 ], [ -80.041641235351562, -5.801540851593018 ], [ -80.040626525878849, -5.80006217956543 ], [ -80.039512634277287, -5.797612190246525 ], [ -80.03839111328125, -5.796912193298283 ], [ -80.037796020507756, -5.796113967895451 ], [ -80.037185668945312, -5.793595790863037 ], [ -80.034370422363168, -5.791891098022461 ], [ -80.033447265625, -5.789655208587646 ], [ -80.032844543456918, -5.787209987640381 ], [ -80.029884338378793, -5.784892082214299 ], [ -80.028060913085881, -5.783078193664551 ], [ -80.023017883300668, -5.77723217010498 ], [ -80.020225524902287, -5.774703979492131 ], [ -80.018890380859318, -5.772688865661564 ], [ -80.016189575195312, -5.770936965942326 ], [ -80.007698059082031, -5.766406059265137 ], [ -80.004615783691293, -5.765010833740234 ], [ -80.001907348632756, -5.764609813690186 ], [ -80.000007629394474, -5.762077808380127 ], [ -79.999000549316406, -5.758869171142521 ], [ -79.998031616210881, -5.756784915924072 ], [ -79.997039794921875, -5.755180835723763 ], [ -79.994834899902344, -5.752398014068604 ], [ -79.994155883789062, -5.751132965087834 ], [ -79.994056701660156, -5.749946117401123 ], [ -79.994674682617131, -5.744262218475285 ], [ -79.996086120605469, -5.738625049591064 ], [ -79.993415832519531, -5.73248291015625 ], [ -79.99346923828125, -5.731122016906738 ], [ -79.994613647460938, -5.728038787841797 ], [ -79.994606018066406, -5.725345134735107 ], [ -79.992805480957031, -5.721288204193115 ], [ -79.992446899414062, -5.71983814239502 ], [ -79.990287780761662, -5.717441082000732 ], [ -79.988952636718693, -5.714352130889836 ], [ -79.988121032714844, -5.713126182556152 ], [ -79.9854736328125, -5.706200122833252 ], [ -79.985145568847599, -5.703446865081787 ], [ -79.984466552734318, -5.700981140136662 ], [ -79.984024047851562, -5.695478916168213 ], [ -79.983482360839844, -5.693519115447941 ], [ -79.982536315917969, -5.691572189330998 ], [ -79.982292175292912, -5.690535068511906 ], [ -79.982284545898381, -5.687158107757568 ], [ -79.982757568359318, -5.683557033538762 ], [ -79.982429504394531, -5.682668209075928 ], [ -79.982231140136719, -5.680108070373478 ], [ -79.981826782226562, -5.678554058074894 ], [ -79.98089599609375, -5.676749229431096 ], [ -79.9776611328125, -5.671947002410889 ], [ -79.976119995117188, -5.668787956237793 ], [ -79.975631713867188, -5.667259216308594 ], [ -79.975631713867188, -5.664917945861816 ], [ -79.974967956542969, -5.663443088531494 ], [ -79.973670959472656, -5.66140079498291 ], [ -79.970413208007812, -5.657806873321476 ], [ -79.969497680664006, -5.656020164489746 ], [ -79.969711303710824, -5.653766155242863 ], [ -79.972763061523324, -5.651387214660645 ], [ -79.974037170410156, -5.64932918548584 ], [ -79.973846435546875, -5.647332191467171 ], [ -79.974655151367131, -5.644062042236271 ], [ -79.974777221679688, -5.640023231506348 ], [ -79.974716186523438, -5.63759803771967 ], [ -79.974494934082031, -5.637103080749512 ], [ -79.974189758300724, -5.632810115814209 ], [ -79.973823547363281, -5.631946086883545 ], [ -79.973258972167969, -5.626174926757812 ], [ -79.973464965820312, -5.620123863220215 ], [ -79.973335266113168, -5.6145920753479 ], [ -79.972816467285156, -5.61099100112915 ], [ -79.970611572265625, -5.600024223327637 ], [ -79.97052001953125, -5.592885971069279 ], [ -79.970314025878906, -5.591283798217773 ], [ -79.969879150390568, -5.590297222137451 ], [ -79.96990966796875, -5.587728023528996 ], [ -79.968452453613224, -5.58227014541626 ], [ -79.966842651367131, -5.580399036407471 ], [ -79.965293884277287, -5.579331874847355 ], [ -79.964019775390625, -5.578898906707707 ], [ -79.961471557617188, -5.57887601852417 ], [ -79.960655212402344, -5.577989101409855 ], [ -79.960716247558537, -5.577178001403752 ], [ -79.961151123046875, -5.576183795928955 ], [ -79.9610595703125, -5.574030876159611 ], [ -79.961288452148381, -5.573722839355469 ], [ -79.961341857910156, -5.572774887084904 ], [ -79.958831787109318, -5.564387798309269 ], [ -79.958061218261662, -5.560005187988281 ], [ -79.957633972167969, -5.559305191039982 ], [ -79.957649230957031, -5.55392408370966 ], [ -79.956291198730469, -5.550692081451416 ], [ -79.95562744140625, -5.548173904418832 ], [ -79.955421447753906, -5.544542789459172 ], [ -79.955650329589844, -5.544235229492188 ], [ -79.955642700195312, -5.542620182037297 ], [ -79.955047607421875, -5.53957891464222 ], [ -79.953140258789062, -5.534839153289738 ], [ -79.952621459960881, -5.532751083374023 ], [ -79.952644348144531, -5.530991077423096 ], [ -79.952072143554688, -5.530077934265023 ], [ -79.951240539550781, -5.526938915252629 ], [ -79.9488525390625, -5.523048877716008 ], [ -79.948081970214844, -5.520902156829834 ], [ -79.947441101074219, -5.517523765563965 ], [ -79.94677734375, -5.51616096496582 ], [ -79.946151733398381, -5.515635013580265 ], [ -79.943351745605469, -5.516153812408447 ], [ -79.942924499511719, -5.51649808883667 ], [ -79.941452026367131, -5.516520977020207 ], [ -79.939170837402287, -5.517333030700684 ], [ -79.9378662109375, -5.517047882080078 ], [ -79.9359130859375, -5.515358924865723 ], [ -79.933433532714844, -5.510928153991699 ], [ -79.932701110839787, -5.509148120880127 ], [ -79.932083129882812, -5.505802154541016 ], [ -79.931427001953125, -5.505636215209904 ], [ -79.930244445800781, -5.506303787231388 ], [ -79.929336547851506, -5.506381034851074 ], [ -79.926277160644531, -5.505812168121281 ], [ -79.925056457519474, -5.505282878875676 ], [ -79.922943115234375, -5.50506591796875 ], [ -79.921554565429688, -5.50341796875 ], [ -79.921295166015625, -5.501473903656006 ], [ -79.91998291015625, -5.500098228454533 ], [ -79.917617797851506, -5.499125003814697 ], [ -79.914367675781193, -5.497231006622314 ], [ -79.912590026855469, -5.496614933013916 ], [ -79.907669067382812, -5.493338108062687 ], [ -79.907150268554574, -5.493198871612492 ], [ -79.905685424804631, -5.493418216705265 ], [ -79.904792785644531, -5.493101119995117 ], [ -79.903617858886662, -5.491813182830754 ], [ -79.902481079101562, -5.489524841308594 ], [ -79.901535034179688, -5.486980915069523 ], [ -79.901481628417969, -5.480987071990967 ], [ -79.897468566894531, -5.480613231658936 ], [ -79.896080017089787, -5.481093883514404 ], [ -79.894912719726506, -5.482013225555363 ], [ -79.892570495605469, -5.484782218933105 ], [ -79.889221191406136, -5.487279891967773 ], [ -79.887901306152344, -5.489155769348145 ], [ -79.885398864746037, -5.490423202514648 ], [ -79.883644104003906, -5.492481231689453 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-LMA", "NAME_0": "Peru", "ID_1": 15, "NAME_1": "Lima Province", "TYPE_1": "Provincia", "ENGTYPE_1": "Province", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.896530151367188, -12.310415267944336 ], [ -76.896530151367188, -12.310694694518986 ], [ -76.896247863769531, -12.310694694518986 ], [ -76.896247863769531, -12.31180477142334 ], [ -76.896530151367188, -12.31180477142334 ], [ -76.896530151367188, -12.31208324432373 ], [ -76.896804809570312, -12.31208324432373 ], [ -76.896804809570312, -12.312639236450195 ], [ -76.897087097167969, -12.312639236450195 ], [ -76.897087097167969, -12.312916755676213 ], [ -76.897361755371094, -12.312916755676213 ], [ -76.897361755371094, -12.313470840454102 ], [ -76.897918701171818, -12.313470840454102 ], [ -76.897918701171818, -12.313193321228027 ], [ -76.897636413574162, -12.313193321228027 ], [ -76.897636413574162, -12.312639236450195 ], [ -76.897918701171818, -12.312639236450195 ], [ -76.897918701171818, -12.31208324432373 ], [ -76.898193359374943, -12.31208324432373 ], [ -76.898193359374943, -12.31180477142334 ], [ -76.898475646972599, -12.31180477142334 ], [ -76.898475646972599, -12.311527252197266 ], [ -76.898193359374943, -12.311527252197266 ], [ -76.898193359374943, -12.310973167419377 ], [ -76.897636413574162, -12.310973167419377 ], [ -76.897636413574162, -12.310694694518986 ], [ -76.897087097167969, -12.310694694518986 ], [ -76.897087097167969, -12.310415267944336 ], [ -76.896530151367188, -12.310415267944336 ] ] ], [ [ [ -76.904861450195256, -12.299028396606388 ], [ -76.904861450195256, -12.299305915832406 ], [ -76.904586791992131, -12.299304008483887 ], [ -76.904586791992131, -12.299584388732853 ], [ -76.904304504394474, -12.299584388732853 ], [ -76.904304504394474, -12.299860000610352 ], [ -76.904586791992131, -12.299860000610352 ], [ -76.904586791992131, -12.300694465637207 ], [ -76.904304504394474, -12.300694465637207 ], [ -76.904304504394474, -12.300971984863224 ], [ -76.904029846191293, -12.300970077514648 ], [ -76.904029846191293, -12.301526069641113 ], [ -76.903472900390625, -12.301526069641113 ], [ -76.903472900390625, -12.301807403564453 ], [ -76.9031982421875, -12.301807403564453 ], [ -76.903190612792969, -12.302359580993652 ], [ -76.902915954589844, -12.302359580993652 ], [ -76.902915954589844, -12.302916526794434 ], [ -76.902084350585938, -12.302916526794434 ], [ -76.902084350585938, -12.304861068725472 ], [ -76.901802062988224, -12.304861068725472 ], [ -76.901802062988224, -12.305417060852051 ], [ -76.902084350585938, -12.305417060852051 ], [ -76.902084350585938, -12.305694580078125 ], [ -76.902359008789062, -12.305694580078125 ], [ -76.902359008789062, -12.3062486648559 ], [ -76.9031982421875, -12.3062486648559 ], [ -76.9031982421875, -12.305971145629826 ], [ -76.904586791992131, -12.305973052978516 ], [ -76.904586791992131, -12.305694580078125 ], [ -76.905136108398438, -12.305694580078125 ], [ -76.905136108398438, -12.30513858795166 ], [ -76.905418395996094, -12.30513858795166 ], [ -76.905418395996094, -12.304861068725472 ], [ -76.905693054199219, -12.304861068725472 ], [ -76.905693054199219, -12.304305076599064 ], [ -76.905418395996094, -12.304305076599064 ], [ -76.905418395996094, -12.304026603698617 ], [ -76.90625, -12.304026603698617 ], [ -76.90625, -12.303473472595215 ], [ -76.905975341796875, -12.303473472595215 ], [ -76.905975341796875, -12.303192138671761 ], [ -76.906524658203125, -12.303194999694824 ], [ -76.906524658203125, -12.302916526794434 ], [ -76.907081604003793, -12.302916526794434 ], [ -76.907081604003793, -12.302639007568359 ], [ -76.90625, -12.302639007568359 ], [ -76.90625, -12.302916526794434 ], [ -76.905975341796875, -12.302916526794434 ], [ -76.905975341796875, -12.302639007568359 ], [ -76.905693054199219, -12.302639007568359 ], [ -76.905693054199219, -12.301807403564453 ], [ -76.905418395996094, -12.301807403564453 ], [ -76.905418395996094, -12.301526069641113 ], [ -76.905693054199219, -12.301526069641113 ], [ -76.905693054199219, -12.300970077514648 ], [ -76.905975341796875, -12.300971984863224 ], [ -76.905975341796875, -12.300138473510742 ], [ -76.90625, -12.300138473510742 ], [ -76.90625, -12.299860000610352 ], [ -76.905975341796875, -12.299860000610352 ], [ -76.905975341796875, -12.299584388732853 ], [ -76.905693054199219, -12.299584388732853 ], [ -76.905693054199219, -12.299028396606388 ], [ -76.904861450195256, -12.299028396606388 ] ] ], [ [ [ -77.212081909179688, -11.789582252502441 ], [ -77.212081909179688, -11.789859771728516 ], [ -77.211807250976562, -11.789859771728516 ], [ -77.211807250976562, -11.79041576385498 ], [ -77.212081909179688, -11.79041576385498 ], [ -77.212081909179688, -11.790695190429688 ], [ -77.211807250976562, -11.790692329406681 ], [ -77.211807250976562, -11.791251182556152 ], [ -77.212081909179688, -11.791251182556152 ], [ -77.212081909179688, -11.792084693908691 ], [ -77.211807250976562, -11.792084693908691 ], [ -77.211807250976562, -11.79263877868641 ], [ -77.212364196777344, -11.79263877868641 ], [ -77.212364196777344, -11.792361259460392 ], [ -77.213195800781193, -11.792361259460392 ], [ -77.213195800781193, -11.792917251586857 ], [ -77.213470458984318, -11.792917251586857 ], [ -77.213470458984318, -11.79263877868641 ], [ -77.213752746581974, -11.79263877868641 ], [ -77.213752746581974, -11.792361259460392 ], [ -77.214027404785156, -11.792361259460392 ], [ -77.214027404785156, -11.792084693908691 ], [ -77.213752746581974, -11.792084693908691 ], [ -77.213752746581974, -11.791804313659554 ], [ -77.214027404785156, -11.791804313659554 ], [ -77.214027404785156, -11.791251182556152 ], [ -77.213752746581974, -11.791251182556152 ], [ -77.213752746581974, -11.790138244628906 ], [ -77.213195800781193, -11.790138244628906 ], [ -77.213195800781193, -11.789859771728516 ], [ -77.212913513183537, -11.789859771728516 ], [ -77.212913513183537, -11.789582252502441 ], [ -77.212081909179688, -11.789582252502441 ] ] ], [ [ [ -77.264305114746037, -11.771527290344181 ], [ -77.264305114746037, -11.772083282470646 ], [ -77.264030456542912, -11.772083282470646 ], [ -77.264030456542912, -11.772360801696777 ], [ -77.263748168945256, -11.772360801696777 ], [ -77.263748168945256, -11.772639274597054 ], [ -77.263191223144531, -11.772639274597054 ], [ -77.263191223144531, -11.772083282470646 ], [ -77.262916564941406, -11.772083282470646 ], [ -77.262916564941406, -11.771804809570199 ], [ -77.262641906738281, -11.771804809570199 ], [ -77.262641906738281, -11.772083282470646 ], [ -77.262359619140625, -11.772083282470646 ], [ -77.262359619140625, -11.772639274597054 ], [ -77.262916564941406, -11.772639274597054 ], [ -77.262916564941406, -11.773195266723633 ], [ -77.263191223144531, -11.773195266723633 ], [ -77.263191223144531, -11.772916793823242 ], [ -77.263473510742188, -11.772916793823242 ], [ -77.263473510742188, -11.774026870727482 ], [ -77.264305114746037, -11.774026870727482 ], [ -77.264305114746037, -11.775695800781193 ], [ -77.264579772949162, -11.775695800781193 ], [ -77.264579772949162, -11.776248931884709 ], [ -77.264862060546875, -11.776248931884709 ], [ -77.264862060546875, -11.777361869812012 ], [ -77.265419006347656, -11.777361869812012 ], [ -77.265419006347656, -11.776804924011174 ], [ -77.265693664550781, -11.776804924011174 ], [ -77.265693664550781, -11.777084350585938 ], [ -77.265975952148438, -11.777084350585938 ], [ -77.265975952148438, -11.778750419616699 ], [ -77.26680755615223, -11.778750419616699 ], [ -77.26680755615223, -11.777084350585938 ], [ -77.267639160156193, -11.777084350585938 ], [ -77.267639160156193, -11.777361869812012 ], [ -77.267913818359375, -11.777359008789062 ], [ -77.267913818359375, -11.777915000915527 ], [ -77.268470764160156, -11.77791786193842 ], [ -77.268470764160156, -11.777084350585938 ], [ -77.267913818359375, -11.777084350585938 ], [ -77.267913818359375, -11.776804924011174 ], [ -77.268470764160156, -11.776804924011174 ], [ -77.268470764160156, -11.776527404785156 ], [ -77.269027709960938, -11.776527404785156 ], [ -77.269027709960938, -11.776248931884709 ], [ -77.268470764160156, -11.776248931884709 ], [ -77.268470764160156, -11.775417327880803 ], [ -77.268196105957031, -11.775417327880803 ], [ -77.268196105957031, -11.775138854980355 ], [ -77.267082214355412, -11.775138854980355 ], [ -77.267082214355412, -11.775695800781193 ], [ -77.26680755615223, -11.775695800781193 ], [ -77.26680755615223, -11.775417327880803 ], [ -77.266525268554688, -11.775417327880803 ], [ -77.266525268554688, -11.775695800781193 ], [ -77.266250610351562, -11.775695800781193 ], [ -77.266250610351562, -11.774861335754338 ], [ -77.265975952148438, -11.774861335754338 ], [ -77.265975952148438, -11.774026870727482 ], [ -77.265419006347656, -11.774026870727482 ], [ -77.265419006347656, -11.774305343627873 ], [ -77.264862060546875, -11.774305343627873 ], [ -77.264862060546875, -11.774026870727482 ], [ -77.26513671875, -11.774026870727482 ], [ -77.26513671875, -11.773751258850098 ], [ -77.265419006347656, -11.773751258850098 ], [ -77.265419006347656, -11.773470878601017 ], [ -77.265693664550781, -11.773470878601017 ], [ -77.265693664550781, -11.773195266723633 ], [ -77.264579772949162, -11.773195266723633 ], [ -77.264579772949162, -11.772639274597054 ], [ -77.264862060546875, -11.772639274597054 ], [ -77.264862060546875, -11.772360801696777 ], [ -77.264579772949162, -11.772360801696777 ], [ -77.264579772949162, -11.771527290344181 ], [ -77.264305114746037, -11.771527290344181 ] ] ], [ [ [ -77.063972473144531, -11.577964782714844 ], [ -77.063346862792969, -11.578329086303654 ], [ -77.062026977539006, -11.578286170959473 ], [ -77.060249328613281, -11.577881813049316 ], [ -77.054588317871037, -11.575887680053711 ], [ -77.052436828613281, -11.575766563415471 ], [ -77.050918579101562, -11.576681137084961 ], [ -77.049224853515625, -11.578248977661076 ], [ -77.044052124023438, -11.580699920654297 ], [ -77.042533874511719, -11.581830024719181 ], [ -77.041496276855469, -11.582915306091252 ], [ -77.040664672851506, -11.584753990173283 ], [ -77.038490295410099, -11.587382316589355 ], [ -77.037284851074219, -11.588482856750488 ], [ -77.033882141113281, -11.590413093566838 ], [ -77.026756286621037, -11.593610763549691 ], [ -77.023887634277287, -11.595130920410156 ], [ -77.022109985351562, -11.597193717956543 ], [ -77.021148681640625, -11.599704742431641 ], [ -77.0191650390625, -11.602439880371094 ], [ -77.016258239746037, -11.604448318481388 ], [ -77.012962341308594, -11.606369018554688 ], [ -77.011428833007812, -11.606975555419865 ], [ -77.010200500488281, -11.607826232910156 ], [ -77.008285522460938, -11.609546661376896 ], [ -77.004806518554631, -11.613341331481877 ], [ -77.00506591796875, -11.614386558532658 ], [ -77.005592346191349, -11.614997863769474 ], [ -77.01080322265625, -11.619146347045842 ], [ -77.012672424316406, -11.620253562927246 ], [ -77.014480590820312, -11.622085571289062 ], [ -77.014694213867188, -11.622870445251465 ], [ -77.014694213867188, -11.628511428832894 ], [ -77.01495361328125, -11.629548072814941 ], [ -77.016143798828125, -11.631671905517521 ], [ -77.018890380859375, -11.634662628173714 ], [ -77.021354675292969, -11.636344909667912 ], [ -77.022544860839787, -11.637456893920842 ], [ -77.027450561523438, -11.643686294555664 ], [ -77.032577514648381, -11.64813232421875 ], [ -77.034317016601562, -11.650418281555119 ], [ -77.035247802734318, -11.65203857421875 ], [ -77.035110473632812, -11.652868270874023 ], [ -77.031242370605412, -11.656484603881836 ], [ -77.030532836914062, -11.657448768615666 ], [ -77.029708862304631, -11.661349296569824 ], [ -77.029739379882812, -11.663237571716252 ], [ -77.030082702636662, -11.664942741393986 ], [ -77.029891967773381, -11.668036460876465 ], [ -77.029388427734375, -11.669155120849553 ], [ -77.027221679687443, -11.67157077789301 ], [ -77.025642395019531, -11.674112319946289 ], [ -77.025123596191349, -11.676314353942757 ], [ -77.024688720703125, -11.680888175964299 ], [ -77.018722534179631, -11.680163383483887 ], [ -77.016914367675724, -11.679542541503906 ], [ -77.015678405761662, -11.679607391357422 ], [ -77.013839721679688, -11.680486679077035 ], [ -77.010986328125, -11.682983398437443 ], [ -77.007690429687443, -11.68464183807373 ], [ -77.006523132324162, -11.684992790222054 ], [ -77.004333496093693, -11.685063362121582 ], [ -77.001884460449219, -11.68587493896473 ], [ -77.000610351562443, -11.685747146606445 ], [ -76.999542236328125, -11.68591117858881 ], [ -76.995857238769474, -11.687834739685002 ], [ -76.994529724121037, -11.687544822692814 ], [ -76.988800048828068, -11.683769226074162 ], [ -76.985984802246094, -11.682392120361328 ], [ -76.984794616699162, -11.682632446288949 ], [ -76.983230590820312, -11.684389114379826 ], [ -76.981391906738281, -11.685214042663574 ], [ -76.979705810546875, -11.685261726379395 ], [ -76.977363586425724, -11.684481620788517 ], [ -76.976959228515568, -11.68521595001215 ], [ -76.97454833984375, -11.68667030334467 ], [ -76.974349975585938, -11.687711715698185 ], [ -76.974800109863281, -11.688774108886719 ], [ -76.976325988769531, -11.690563201904297 ], [ -76.976516723632812, -11.693770408630257 ], [ -76.976997375488281, -11.694435119628849 ], [ -76.977973937988281, -11.69490909576416 ], [ -76.978614807128906, -11.695571899414006 ], [ -76.978973388671818, -11.696581840515137 ], [ -76.979034423828125, -11.697593688964787 ], [ -76.978210449218693, -11.699542999267578 ], [ -76.97503662109375, -11.705431938171387 ], [ -76.974197387695256, -11.708085060119572 ], [ -76.973899841308537, -11.710221290588265 ], [ -76.974525451660156, -11.712276458740178 ], [ -76.977027893066406, -11.716643333435002 ], [ -76.977394104003906, -11.717852592468262 ], [ -76.980033874511662, -11.721935272216797 ], [ -76.980331420898438, -11.723209381103516 ], [ -76.981025695800781, -11.724270820617676 ], [ -76.980964660644474, -11.725684165954533 ], [ -76.979721069335881, -11.726737022399846 ], [ -76.978195190429631, -11.726992607116699 ], [ -76.976676940917912, -11.726189613342285 ], [ -76.975685119628906, -11.725075721740666 ], [ -76.974388122558537, -11.725049018859863 ], [ -76.972953796386662, -11.724527359008732 ], [ -76.970848083496037, -11.724558830261174 ], [ -76.969284057617188, -11.725255966186523 ], [ -76.964752197265568, -11.728557586669922 ], [ -76.961685180664062, -11.729926109313965 ], [ -76.960731506347656, -11.731236457824707 ], [ -76.960220336914062, -11.733199119567871 ], [ -76.959243774414006, -11.73471736907959 ], [ -76.957839965820312, -11.735529899597111 ], [ -76.955047607421818, -11.736364364623967 ], [ -76.95477294921875, -11.739030838012638 ], [ -76.953613281249943, -11.742292404174805 ], [ -76.95247650146473, -11.743910789489689 ], [ -76.950454711914006, -11.74610328674305 ], [ -76.948394775390625, -11.747562408447209 ], [ -76.946601867675781, -11.749481201171818 ], [ -76.945510864257756, -11.75029468536377 ], [ -76.940887451171875, -11.750242233276367 ], [ -76.938537597656193, -11.750946044921875 ], [ -76.937431335449219, -11.751740455627441 ], [ -76.934913635253849, -11.754568099975529 ], [ -76.933021545410043, -11.75563907623291 ], [ -76.931983947753906, -11.755366325378361 ], [ -76.930587768554688, -11.753722190856877 ], [ -76.928520202636662, -11.753400802612305 ], [ -76.926612854003849, -11.752807617187443 ], [ -76.921760559081974, -11.750770568847656 ], [ -76.918365478515625, -11.746844291687012 ], [ -76.916641235351562, -11.745678901672306 ], [ -76.914527893066406, -11.743723869323674 ], [ -76.914070129394531, -11.743048667907658 ], [ -76.913955688476562, -11.741893768310547 ], [ -76.914123535156193, -11.738663673400879 ], [ -76.914955139160156, -11.734537124633732 ], [ -76.914710998535043, -11.733399391174316 ], [ -76.913261413574162, -11.732651710510254 ], [ -76.908454895019531, -11.731254577636662 ], [ -76.905509948730469, -11.730080604553223 ], [ -76.903915405273381, -11.729686737060547 ], [ -76.902374267578068, -11.729640960693303 ], [ -76.898826599121094, -11.729763984680119 ], [ -76.895240783691349, -11.730375289916992 ], [ -76.892982482910156, -11.731311798095703 ], [ -76.887893676757756, -11.734680175781193 ], [ -76.886329650878906, -11.735124588012638 ], [ -76.884956359863168, -11.735142707824707 ], [ -76.883422851562443, -11.734809875488281 ], [ -76.8826904296875, -11.73432731628418 ], [ -76.881439208984375, -11.732763290405273 ], [ -76.880371093749943, -11.732768058776799 ], [ -76.880058288574162, -11.733223915100098 ], [ -76.879173278808594, -11.736600875854492 ], [ -76.877136230468636, -11.740483283996582 ], [ -76.876579284667969, -11.742094039916879 ], [ -76.875961303710881, -11.742869377136174 ], [ -76.8743896484375, -11.743935585021973 ], [ -76.86859130859375, -11.745465278625488 ], [ -76.862091064453125, -11.748805999755803 ], [ -76.860588073730469, -11.74914360046381 ], [ -76.858848571777344, -11.749134063720703 ], [ -76.848197937011719, -11.746411323547363 ], [ -76.840469360351562, -11.746190071105957 ], [ -76.832595825195256, -11.744712829589787 ], [ -76.827384948730469, -11.746573448181096 ], [ -76.817687988281193, -11.748325347900334 ], [ -76.814498901367188, -11.749394416809025 ], [ -76.810325622558594, -11.751381874084416 ], [ -76.807388305664006, -11.752359390258732 ], [ -76.805915832519531, -11.753669738769474 ], [ -76.804695129394531, -11.756568908691406 ], [ -76.806968688964844, -11.758208274841252 ], [ -76.81182861328125, -11.763184547424316 ], [ -76.813179016113281, -11.76521110534668 ], [ -76.814971923828125, -11.767234802246094 ], [ -76.817916870117188, -11.771345138549748 ], [ -76.819511413574162, -11.773173332214299 ], [ -76.821128845214787, -11.774182319641056 ], [ -76.825721740722599, -11.776450157165414 ], [ -76.834251403808594, -11.779302597045898 ], [ -76.836563110351562, -11.780356407165471 ], [ -76.837654113769418, -11.781171798705998 ], [ -76.840278625488281, -11.784155845642033 ], [ -76.844459533691406, -11.788278579711914 ], [ -76.84686279296875, -11.793306350707894 ], [ -76.8486328125, -11.795808792114258 ], [ -76.85162353515625, -11.797513961791992 ], [ -76.854499816894474, -11.798047065734806 ], [ -76.856506347656193, -11.798061370849609 ], [ -76.872566223144531, -11.796897888183594 ], [ -76.875495910644474, -11.795892715454102 ], [ -76.878860473632812, -11.793754577636719 ], [ -76.879806518554574, -11.793416023254395 ], [ -76.881866455078125, -11.793773651123047 ], [ -76.883636474609375, -11.795151710510254 ], [ -76.886123657226562, -11.795669555664062 ], [ -76.887451171875, -11.795379638671875 ], [ -76.892501831054688, -11.793350219726506 ], [ -76.894584655761662, -11.793073654174805 ], [ -76.896415710449219, -11.793087959289494 ], [ -76.901565551757812, -11.793922424316349 ], [ -76.904403686523381, -11.794716835021859 ], [ -76.906494140624943, -11.797133445739689 ], [ -76.907173156738224, -11.801095962524357 ], [ -76.907188415527344, -11.802442550659123 ], [ -76.906227111816406, -11.804067611694279 ], [ -76.906127929687386, -11.811054229736328 ], [ -76.905731201171818, -11.812802314758244 ], [ -76.905456542968693, -11.815570831298771 ], [ -76.905082702636719, -11.816576004028207 ], [ -76.904090881347599, -11.817984580993652 ], [ -76.90093994140625, -11.820959091186467 ], [ -76.900909423828125, -11.822046279907227 ], [ -76.9024658203125, -11.822966575622502 ], [ -76.90484619140625, -11.823835372924805 ], [ -76.907386779785156, -11.826288223266545 ], [ -76.90822601318348, -11.826823234558105 ], [ -76.909362792968693, -11.827141761779671 ], [ -76.912361145019531, -11.827084541320801 ], [ -76.917991638183594, -11.829378128051758 ], [ -76.921134948730469, -11.82988166809082 ], [ -76.923980712890625, -11.832013130187988 ], [ -76.928207397460938, -11.834107398986816 ], [ -76.930503845214844, -11.834670066833496 ], [ -76.931510925292969, -11.834638595581055 ], [ -76.932823181152287, -11.834274291992188 ], [ -76.935157775878906, -11.8328857421875 ], [ -76.935737609863281, -11.833170890808049 ], [ -76.935989379882812, -11.833648681640625 ], [ -76.936027526855469, -11.834725379943848 ], [ -76.935592651367131, -11.836363792419434 ], [ -76.934745788574219, -11.838159561157227 ], [ -76.934501647949219, -11.840022087097168 ], [ -76.933929443359375, -11.84200477600092 ], [ -76.933792114257812, -11.843615531921387 ], [ -76.933952331542912, -11.844951629638558 ], [ -76.935043334960938, -11.848090171813965 ], [ -76.939491271972599, -11.854648590087834 ], [ -76.941581726074162, -11.858729362487736 ], [ -76.941749572753906, -11.859784126281738 ], [ -76.94219970703125, -11.860730171203613 ], [ -76.941093444824162, -11.862591743469181 ], [ -76.940216064453125, -11.864748001098633 ], [ -76.939582824706974, -11.865628242492676 ], [ -76.936141967773381, -11.869213104248047 ], [ -76.935150146484375, -11.869844436645508 ], [ -76.934104919433594, -11.870134353637695 ], [ -76.931098937988224, -11.870236396789494 ], [ -76.928123474121037, -11.870635032653809 ], [ -76.924972534179688, -11.869780540466252 ], [ -76.923881530761719, -11.869126319885254 ], [ -76.92205810546875, -11.868560791015625 ], [ -76.920402526855412, -11.867624282836914 ], [ -76.918289184570312, -11.86679744720459 ], [ -76.916267395019531, -11.8656005859375 ], [ -76.913589477539062, -11.865049362182617 ], [ -76.908332824707031, -11.864559173583928 ], [ -76.905479431152344, -11.864569664001351 ], [ -76.903762817382812, -11.864816665649357 ], [ -76.900459289550781, -11.863862037658691 ], [ -76.897834777832031, -11.864185333251896 ], [ -76.896507263183594, -11.864034652709904 ], [ -76.895751953125, -11.864518165588322 ], [ -76.895431518554631, -11.865152359008789 ], [ -76.895401000976562, -11.865900993347111 ], [ -76.895660400390625, -11.866559982299805 ], [ -76.897087097167969, -11.868086814880314 ], [ -76.897529602050724, -11.868860244750977 ], [ -76.898597717285156, -11.872117042541447 ], [ -76.8988037109375, -11.87353420257557 ], [ -76.898567199706974, -11.875028610229435 ], [ -76.897338867187443, -11.876915931701603 ], [ -76.896621704101562, -11.878566741943359 ], [ -76.896446228027344, -11.879534721374455 ], [ -76.896751403808537, -11.881385803222656 ], [ -76.901229858398381, -11.883127212524357 ], [ -76.90264892578125, -11.883940696716309 ], [ -76.903556823730469, -11.884820938110352 ], [ -76.904205322265568, -11.886297225952148 ], [ -76.905349731445256, -11.887205123901367 ], [ -76.910369873046875, -11.88797473907465 ], [ -76.911575317382812, -11.888353347778263 ], [ -76.912910461425781, -11.889529228210392 ], [ -76.913719177246094, -11.891610145568734 ], [ -76.914039611816349, -11.893461227416992 ], [ -76.914054870605469, -11.895441055297795 ], [ -76.914588928222599, -11.898447036743164 ], [ -76.917922973632756, -11.906850814819336 ], [ -76.917984008789062, -11.909082412719613 ], [ -76.916526794433594, -11.911243438720703 ], [ -76.916252136230469, -11.912564277648869 ], [ -76.916847229003906, -11.914820671081486 ], [ -76.918014526367131, -11.916853904724121 ], [ -76.918426513671818, -11.918134689330998 ], [ -76.918411254882756, -11.919038772583008 ], [ -76.917678833007812, -11.920181274414006 ], [ -76.913955688476562, -11.923588752746582 ], [ -76.913650512695256, -11.924530029296875 ], [ -76.913803100585938, -11.925344467163086 ], [ -76.915176391601506, -11.927006721496582 ], [ -76.917518615722656, -11.928716659545842 ], [ -76.924644470214844, -11.931479454040527 ], [ -76.926315307617131, -11.932399749755746 ], [ -76.927658081054631, -11.93348217010498 ], [ -76.928703308105412, -11.934740066528207 ], [ -76.929061889648438, -11.937586784362736 ], [ -76.931297302246037, -11.942035675048714 ], [ -76.926811218261662, -11.944165229797363 ], [ -76.924797058105412, -11.946354866027832 ], [ -76.923561096191349, -11.948345184326172 ], [ -76.922737121582031, -11.950628280639592 ], [ -76.921096801757756, -11.953729629516602 ], [ -76.921150207519531, -11.956513404846191 ], [ -76.920944213867188, -11.957751274108887 ], [ -76.919479370117074, -11.959452629089299 ], [ -76.918197631835938, -11.959903717041016 ], [ -76.916900634765568, -11.959480285644474 ], [ -76.913551330566349, -11.955551147460881 ], [ -76.910659790039062, -11.954008102416992 ], [ -76.909660339355469, -11.954060554504338 ], [ -76.906242370605469, -11.955285072326603 ], [ -76.903076171874886, -11.955434799194222 ], [ -76.901916503906193, -11.955965995788574 ], [ -76.900070190429688, -11.957261085510254 ], [ -76.898841857910156, -11.95760536193842 ], [ -76.897125244140625, -11.957418441772404 ], [ -76.895637512206918, -11.956985473632756 ], [ -76.892814636230469, -11.956969261169377 ], [ -76.891197204589844, -11.956672668457031 ], [ -76.888168334960881, -11.95501804351801 ], [ -76.886390686035156, -11.952771186828613 ], [ -76.885887145996037, -11.952412605285645 ], [ -76.882362365722599, -11.951164245605412 ], [ -76.87923431396473, -11.950624465942383 ], [ -76.870437622070256, -11.946651458740234 ], [ -76.856353759765625, -11.941438674926758 ], [ -76.854843139648438, -11.940136909484806 ], [ -76.852996826171818, -11.937158584594727 ], [ -76.852066040039062, -11.936033248901367 ], [ -76.850296020507812, -11.935395240783691 ], [ -76.848396301269474, -11.935017585754395 ], [ -76.847129821777344, -11.934990882873478 ], [ -76.845252990722599, -11.935943603515625 ], [ -76.844245910644531, -11.936691284179574 ], [ -76.842330932617188, -11.938729286193848 ], [ -76.837074279785099, -11.942096710205021 ], [ -76.832160949707031, -11.944244384765625 ], [ -76.829925537109318, -11.944278717041016 ], [ -76.82879638671875, -11.943696975707951 ], [ -76.828308105468636, -11.943196296691838 ], [ -76.828163146972656, -11.942293167114258 ], [ -76.82550048828125, -11.9364976882934 ], [ -76.825088500976562, -11.933209419250488 ], [ -76.824844360351506, -11.932632446289062 ], [ -76.823341369628849, -11.931069374084416 ], [ -76.819915771484261, -11.928533554077092 ], [ -76.817718505859318, -11.926514625549203 ], [ -76.817031860351506, -11.926374435424805 ], [ -76.815902709960881, -11.926499366760197 ], [ -76.813400268554631, -11.927337646484318 ], [ -76.809120178222599, -11.927165031433105 ], [ -76.806541442871037, -11.927696228027287 ], [ -76.796524047851506, -11.927581787109375 ], [ -76.793563842773381, -11.927193641662598 ], [ -76.792533874511662, -11.926838874816895 ], [ -76.791473388671818, -11.926013946533089 ], [ -76.790519714355412, -11.924084663391113 ], [ -76.787292480468693, -11.921175003051701 ], [ -76.784324645996037, -11.917651176452637 ], [ -76.78314208984375, -11.916557312011662 ], [ -76.780021667480412, -11.915078163146973 ], [ -76.777648925781193, -11.914430618286133 ], [ -76.775749206542912, -11.914208412170296 ], [ -76.774490356445256, -11.913681030273381 ], [ -76.771270751953068, -11.911044120788574 ], [ -76.761138916015568, -11.903561592102051 ], [ -76.758583068847599, -11.903008460998535 ], [ -76.756454467773438, -11.901790618896371 ], [ -76.755340576171818, -11.9007310867309 ], [ -76.753242492675724, -11.897807121276855 ], [ -76.75042724609375, -11.895683288574105 ], [ -76.747856140136719, -11.894766807556096 ], [ -76.744850158691349, -11.894721031188965 ], [ -76.742790222167969, -11.894371986389046 ], [ -76.741081237792969, -11.893742561340332 ], [ -76.739418029785099, -11.892812728881836 ], [ -76.737838745117188, -11.891456604003849 ], [ -76.736083984374943, -11.889281272888184 ], [ -76.734054565429631, -11.885270118713379 ], [ -76.731178283691406, -11.878535270690918 ], [ -76.729347229003906, -11.875535011291504 ], [ -76.727645874023438, -11.873929023742619 ], [ -76.726760864257812, -11.873996734619141 ], [ -76.725837707519531, -11.875331878662109 ], [ -76.725547790527344, -11.878263473510685 ], [ -76.724624633789006, -11.880880355834961 ], [ -76.723358154296875, -11.882635116577092 ], [ -76.721328735351562, -11.88457012176508 ], [ -76.719650268554631, -11.885647773742676 ], [ -76.717353820800781, -11.88651180267334 ], [ -76.716087341308594, -11.887223243713265 ], [ -76.710899353027287, -11.891846656799316 ], [ -76.709457397460881, -11.8920640945434 ], [ -76.707717895507812, -11.891505241394043 ], [ -76.705177307128849, -11.891283988952637 ], [ -76.703048706054688, -11.891751289367676 ], [ -76.700286865234375, -11.892681121826172 ], [ -76.697006225585938, -11.894235610961914 ], [ -76.694671630859318, -11.895942687988224 ], [ -76.694282531738224, -11.896738052368164 ], [ -76.6934814453125, -11.901155471801701 ], [ -76.691963195800781, -11.903694152831918 ], [ -76.68902587890625, -11.906704902648926 ], [ -76.685356140136719, -11.908282279968262 ], [ -76.683303833007812, -11.909938812255859 ], [ -76.682548522949219, -11.910929679870605 ], [ -76.681175231933594, -11.914545059204102 ], [ -76.680961608886662, -11.917393684387207 ], [ -76.680358886718693, -11.918265342712289 ], [ -76.6795654296875, -11.918457984924316 ], [ -76.677421569824162, -11.917721748351994 ], [ -76.675781249999943, -11.917758941650391 ], [ -76.674957275390511, -11.918144226074219 ], [ -76.673416137695256, -11.919652938842717 ], [ -76.67108154296875, -11.919802665710449 ], [ -76.668655395507756, -11.920249938964844 ], [ -76.668182373046818, -11.92049598693842 ], [ -76.667732238769531, -11.921168327331543 ], [ -76.668159484863224, -11.922442436218205 ], [ -76.667762756347656, -11.924125671386719 ], [ -76.6678466796875, -11.924638748168945 ], [ -76.669929504394531, -11.928738594055176 ], [ -76.6700439453125, -11.929553031921387 ], [ -76.669830322265625, -11.930423736572266 ], [ -76.669021606445256, -11.931927680969181 ], [ -76.667343139648438, -11.934061050414982 ], [ -76.664382934570312, -11.936591148376465 ], [ -76.662376403808594, -11.93781661987299 ], [ -76.660682678222656, -11.939172744750977 ], [ -76.655097961425724, -11.945144653320256 ], [ -76.653450012207031, -11.947604179382267 ], [ -76.648345947265568, -11.951804161071721 ], [ -76.645240783691406, -11.955678939819336 ], [ -76.644760131835938, -11.956830024719181 ], [ -76.645118713378906, -11.958112716674805 ], [ -76.646095275878906, -11.959952354431152 ], [ -76.648109436035156, -11.96203517913807 ], [ -76.648422241210881, -11.962866783142033 ], [ -76.648284912109375, -11.963562011718693 ], [ -76.646430969238224, -11.966377258300781 ], [ -76.645729064941406, -11.96815013885498 ], [ -76.649581909179631, -11.969440460205078 ], [ -76.650924682617074, -11.969668388366586 ], [ -76.652793884277344, -11.970778465270939 ], [ -76.654335021972599, -11.972034454345703 ], [ -76.654998779296818, -11.973504066467228 ], [ -76.656478881835938, -11.975094795227051 ], [ -76.658935546874886, -11.976608276367188 ], [ -76.660026550292969, -11.978445053100586 ], [ -76.66314697265625, -11.979033470153809 ], [ -76.665451049804688, -11.979886054992619 ], [ -76.668182373046818, -11.981949806213379 ], [ -76.669631958007812, -11.981841087341252 ], [ -76.671257019042969, -11.981057167053166 ], [ -76.673301696777287, -11.981521606445312 ], [ -76.675666809082031, -11.983306884765568 ], [ -76.678276062011662, -11.985811233520508 ], [ -76.680503845214844, -11.98655891418457 ], [ -76.682556152343693, -11.988452911376896 ], [ -76.684799194335938, -11.989497184753361 ], [ -76.686119079589844, -11.9898681640625 ], [ -76.686988830566406, -11.989845275878906 ], [ -76.689353942871037, -11.987997055053711 ], [ -76.691665649414062, -11.986926078796273 ], [ -76.694847106933594, -11.986977577209359 ], [ -76.698905944824219, -11.986465454101506 ], [ -76.700889587402287, -11.987736701965218 ], [ -76.7091064453125, -11.991990089416504 ], [ -76.713127136230469, -11.992644309997502 ], [ -76.714401245117188, -11.99256420135498 ], [ -76.715095520019474, -11.992090225219727 ], [ -76.715782165527344, -11.99304294586176 ], [ -76.718795776367131, -11.996035575866699 ], [ -76.720634460449162, -11.999931335449219 ], [ -76.720237731933537, -12.001369476318359 ], [ -76.719322204589844, -12.003244400024414 ], [ -76.719223022460938, -12.004139900207406 ], [ -76.713706970214844, -12.010367393493596 ], [ -76.712287902832031, -12.013911247253361 ], [ -76.710578918457031, -12.019416809082031 ], [ -76.710357666015625, -12.024091720580998 ], [ -76.70867919921875, -12.026976585388127 ], [ -76.708419799804631, -12.028053283691293 ], [ -76.707237243652344, -12.030439376831055 ], [ -76.706680297851506, -12.030928611755371 ], [ -76.705314636230469, -12.031118392944279 ], [ -76.704826354980469, -12.031674385070744 ], [ -76.704582214355412, -12.032451629638672 ], [ -76.703849792480412, -12.033025741577092 ], [ -76.701080322265568, -12.033025741577092 ], [ -76.700553894042969, -12.033696174621525 ], [ -76.699905395507812, -12.033780097961369 ], [ -76.697906494140568, -12.03496074676508 ], [ -76.694526672363281, -12.037910461425781 ], [ -76.693122863769531, -12.039860725402832 ], [ -76.6912841796875, -12.041110038757324 ], [ -76.690338134765625, -12.042708396911564 ], [ -76.689430236816349, -12.043763160705566 ], [ -76.687484741210938, -12.044822692871037 ], [ -76.683830261230469, -12.048234939575195 ], [ -76.680633544921875, -12.050296783447266 ], [ -76.679847717285156, -12.051088333129769 ], [ -76.67852783203125, -12.053717613220215 ], [ -76.677940368652344, -12.056136131286564 ], [ -76.676887512207031, -12.057877540588379 ], [ -76.67629241943348, -12.060193061828556 ], [ -76.675308227539006, -12.06218147277832 ], [ -76.674934387206974, -12.068428039550781 ], [ -76.674453735351506, -12.070961952209416 ], [ -76.673934936523438, -12.072131156921387 ], [ -76.67486572265625, -12.073898315429631 ], [ -76.676986694335938, -12.076461791992188 ], [ -76.678955078124943, -12.078431129455453 ], [ -76.681053161621037, -12.08223915100092 ], [ -76.684661865234318, -12.085582733154297 ], [ -76.685478210449219, -12.087340354919377 ], [ -76.686080932617131, -12.08791446685791 ], [ -76.686592102050668, -12.088137626647949 ], [ -76.68731689453125, -12.088021278381348 ], [ -76.688804626464844, -12.086684226989632 ], [ -76.692886352538949, -12.087745666503849 ], [ -76.69586181640625, -12.088034629821777 ], [ -76.6978759765625, -12.087679862976074 ], [ -76.700828552246094, -12.08631420135498 ], [ -76.701766967773438, -12.086345672607422 ], [ -76.702476501464844, -12.086113929748535 ], [ -76.705619812011719, -12.086158752441406 ], [ -76.706962585449219, -12.089078903198242 ], [ -76.708656311035156, -12.09017276763916 ], [ -76.714073181152344, -12.09537220001215 ], [ -76.716789245605412, -12.098827362060547 ], [ -76.717170715331974, -12.099944114685059 ], [ -76.7166748046875, -12.100481033325138 ], [ -76.716072082519531, -12.102122306823674 ], [ -76.71551513671875, -12.102748870849609 ], [ -76.715309143066406, -12.104936599731388 ], [ -76.713775634765625, -12.10767745971674 ], [ -76.713249206542969, -12.109060287475529 ], [ -76.70989990234375, -12.11334037780756 ], [ -76.709121704101562, -12.113997459411621 ], [ -76.707992553710938, -12.114457130432072 ], [ -76.703704833984375, -12.114344596862793 ], [ -76.70147705078125, -12.114929199218693 ], [ -76.701286315917969, -12.115139007568359 ], [ -76.697860717773438, -12.115521430969181 ], [ -76.694389343261662, -12.118579864501953 ], [ -76.693328857421818, -12.120747566223088 ], [ -76.692390441894474, -12.121992111206055 ], [ -76.691932678222543, -12.123377799987736 ], [ -76.691139221191349, -12.124629020690861 ], [ -76.688674926757756, -12.125683784484863 ], [ -76.686767578124943, -12.126126289367676 ], [ -76.683074951171875, -12.129091262817326 ], [ -76.682327270507812, -12.129373550414982 ], [ -76.680519104003906, -12.129366874694824 ], [ -76.680099487304631, -12.129732131957951 ], [ -76.679954528808594, -12.13020133972168 ], [ -76.681015014648438, -12.13171482086176 ], [ -76.682426452636719, -12.132446289062443 ], [ -76.683784484863281, -12.133579254150391 ], [ -76.686569213867131, -12.135260581970215 ], [ -76.689002990722656, -12.137813568115178 ], [ -76.691459655761719, -12.13979434967041 ], [ -76.692047119140625, -12.141147613525334 ], [ -76.691757202148438, -12.143254280090275 ], [ -76.689674377441406, -12.145952224731388 ], [ -76.688583374023381, -12.149187088012638 ], [ -76.688385009765568, -12.150651931762582 ], [ -76.687576293945312, -12.152521133422795 ], [ -76.685737609863281, -12.154702186584416 ], [ -76.684410095214844, -12.157439231872502 ], [ -76.683013916015625, -12.159625053405705 ], [ -76.681823730468636, -12.160799026489258 ], [ -76.680068969726562, -12.163421630859375 ], [ -76.677688598632756, -12.163806915283203 ], [ -76.676261901855412, -12.164935111999512 ], [ -76.674903869628906, -12.166499137878361 ], [ -76.674583435058594, -12.16868877410883 ], [ -76.673614501953068, -12.169671058654728 ], [ -76.672927856445256, -12.170968055725098 ], [ -76.671844482421875, -12.171697616577092 ], [ -76.670684814453125, -12.171904563903752 ], [ -76.670265197753849, -12.172720909118652 ], [ -76.669349670410156, -12.17332935333252 ], [ -76.665863037109318, -12.172312736511174 ], [ -76.664520263671875, -12.172601699829102 ], [ -76.663787841796818, -12.172497749328613 ], [ -76.663116455078068, -12.1728258132934 ], [ -76.661247253417969, -12.172819137573242 ], [ -76.66094970703125, -12.173065185546875 ], [ -76.660942077636719, -12.174900054931584 ], [ -76.661262512207031, -12.175470352172852 ], [ -76.661972045898381, -12.176059722900334 ], [ -76.662078857421818, -12.176512718200627 ], [ -76.6629638671875, -12.177356719970703 ], [ -76.662826538085881, -12.178297996520939 ], [ -76.662055969238224, -12.178952217101937 ], [ -76.660346984863224, -12.18190956115717 ], [ -76.658462524414062, -12.183953285217285 ], [ -76.657508850097656, -12.186844825744572 ], [ -76.656387329101562, -12.18928337097168 ], [ -76.652908325195256, -12.19246673583973 ], [ -76.652366638183594, -12.194993019104004 ], [ -76.651672363281193, -12.196201324462891 ], [ -76.651702880859375, -12.199047088622933 ], [ -76.650901794433537, -12.202549934387207 ], [ -76.649856567382756, -12.205898284912053 ], [ -76.648101806640625, -12.209148406982365 ], [ -76.64666748046875, -12.210476875305176 ], [ -76.645851135253849, -12.21095085144043 ], [ -76.645027160644531, -12.211101531982422 ], [ -76.642982482910099, -12.212009429931584 ], [ -76.640716552734318, -12.213630676269474 ], [ -76.638641357421875, -12.21795463562006 ], [ -76.637435913085938, -12.219082832336369 ], [ -76.635299682617188, -12.219999313354492 ], [ -76.633064270019474, -12.219940185546875 ], [ -76.631965637207031, -12.220182418823242 ], [ -76.629005432128906, -12.222088813781738 ], [ -76.626205444335881, -12.222775459289551 ], [ -76.624015808105412, -12.223718643188477 ], [ -76.623092651367188, -12.224492073059082 ], [ -76.621734619140568, -12.226262092590332 ], [ -76.622352600097656, -12.230173110961857 ], [ -76.622283935546818, -12.231447219848633 ], [ -76.6220703125, -12.231638908386117 ], [ -76.621482849121094, -12.233777046203556 ], [ -76.621513366699219, -12.237544059753361 ], [ -76.622169494628906, -12.239360809326115 ], [ -76.6259765625, -12.2442626953125 ], [ -76.626174926757812, -12.246006965637207 ], [ -76.625411987304688, -12.248370170593262 ], [ -76.625526428222599, -12.250764846801701 ], [ -76.625770568847656, -12.251036643981934 ], [ -76.626640319824219, -12.253960609436035 ], [ -76.628189086914062, -12.25711536407465 ], [ -76.628311157226506, -12.257935523986816 ], [ -76.629112243652344, -12.259071350097656 ], [ -76.629829406738224, -12.26107215881342 ], [ -76.630836486816406, -12.262284278869572 ], [ -76.632087707519531, -12.264439582824707 ], [ -76.632331848144531, -12.268750190734806 ], [ -76.633766174316406, -12.271544456481934 ], [ -76.636405944824162, -12.278053283691406 ], [ -76.637443542480412, -12.279115676879883 ], [ -76.641151428222656, -12.281524658203068 ], [ -76.643386840820256, -12.282180786132756 ], [ -76.644699096679631, -12.282894134521484 ], [ -76.646743774414062, -12.283571243286076 ], [ -76.649703979492188, -12.28371524810791 ], [ -76.651100158691349, -12.284774780273381 ], [ -76.652191162109375, -12.287126541137695 ], [ -76.653083801269474, -12.291180610656681 ], [ -76.653099060058537, -12.295963287353516 ], [ -76.653450012207031, -12.297588348388672 ], [ -76.653450012207031, -12.298879623413086 ], [ -76.653785705566293, -12.299843788146916 ], [ -76.653816223144531, -12.302322387695256 ], [ -76.654075622558594, -12.303016662597656 ], [ -76.654525756835881, -12.303736686706429 ], [ -76.655883789062386, -12.305074691772461 ], [ -76.659263610839844, -12.307388305663949 ], [ -76.660942077636719, -12.30786228179926 ], [ -76.66241455078125, -12.30786228179926 ], [ -76.663444519042969, -12.308490753173828 ], [ -76.664199829101562, -12.309651374816895 ], [ -76.664863586425781, -12.311573028564396 ], [ -76.666091918945312, -12.313085556030273 ], [ -76.667259216308594, -12.315800666808968 ], [ -76.668731689453068, -12.317824363708439 ], [ -76.670127868652344, -12.319314956665039 ], [ -76.671737670898438, -12.319821357727051 ], [ -76.672264099121037, -12.319690704345589 ], [ -76.673416137695256, -12.318870544433594 ], [ -76.674163818359318, -12.319228172302246 ], [ -76.675926208496094, -12.324288368224984 ], [ -76.677055358886605, -12.326730728149414 ], [ -76.677749633789062, -12.330813407897892 ], [ -76.678886413574219, -12.333110809326115 ], [ -76.677337646484318, -12.335631370544434 ], [ -76.677307128906193, -12.336087226867619 ], [ -76.677665710449219, -12.336832046508789 ], [ -76.677665710449219, -12.338125228881779 ], [ -76.677963256835938, -12.338802337646484 ], [ -76.680572509765568, -12.342067718505803 ], [ -76.681068420410156, -12.343058586120605 ], [ -76.681259155273438, -12.345073699951172 ], [ -76.68194580078125, -12.347084045410156 ], [ -76.681922912597656, -12.350042343139592 ], [ -76.682640075683594, -12.352423667907715 ], [ -76.682518005371094, -12.353707313537598 ], [ -76.681526184081974, -12.354778289794865 ], [ -76.67919921875, -12.354721069335938 ], [ -76.678573608398381, -12.354924201965332 ], [ -76.677375793457031, -12.356216430663949 ], [ -76.676773071289062, -12.357848167419434 ], [ -76.674957275390511, -12.359420776367131 ], [ -76.667922973632812, -12.360089302062988 ], [ -76.667533874511719, -12.36151123046875 ], [ -76.667816162109375, -12.36247730255127 ], [ -76.67376708984375, -12.369200706481934 ], [ -76.674171447753849, -12.373671531677246 ], [ -76.677345275878906, -12.377178192138615 ], [ -76.682167053222656, -12.380682945251408 ], [ -76.683174133300781, -12.380633354187012 ], [ -76.68463134765625, -12.379810333251953 ], [ -76.685615539550724, -12.379558563232365 ], [ -76.689140319824162, -12.379057884216252 ], [ -76.690902709960938, -12.379228591918888 ], [ -76.694023132324162, -12.380204200744629 ], [ -76.696823120117188, -12.380228996276855 ], [ -76.698013305664006, -12.380459785461312 ], [ -76.700218200683537, -12.381655693054086 ], [ -76.701812744140625, -12.38358211517334 ], [ -76.70367431640625, -12.384979248046818 ], [ -76.704048156738281, -12.385004043579102 ], [ -76.706977844238224, -12.386629104614258 ], [ -76.708457946777344, -12.387189865112305 ], [ -76.710533142089844, -12.38862133026123 ], [ -76.712562561035156, -12.388837814331055 ], [ -76.713607788085938, -12.389760971069336 ], [ -76.715034484863281, -12.390187263488656 ], [ -76.715393066406136, -12.390618324279785 ], [ -76.715599060058594, -12.391800880432072 ], [ -76.715835571289006, -12.392079353332463 ], [ -76.71749114990223, -12.392709732055664 ], [ -76.719535827636719, -12.392354011535588 ], [ -76.7197265625, -12.393219947814885 ], [ -76.7200927734375, -12.393772125244084 ], [ -76.722450256347543, -12.395707130432072 ], [ -76.725814819335938, -12.394954681396484 ], [ -76.72735595703125, -12.395756721496582 ], [ -76.729408264160099, -12.395834922790471 ], [ -76.730621337890568, -12.396306037902832 ], [ -76.731468200683594, -12.396222114562988 ], [ -76.732254028320256, -12.395736694335938 ], [ -76.733375549316406, -12.395674705505257 ], [ -76.735626220703125, -12.396528244018555 ], [ -76.738960266113281, -12.396443367004395 ], [ -76.740280151367131, -12.397463798522892 ], [ -76.741355895996094, -12.397765159606877 ], [ -76.742835998535099, -12.397537231445312 ], [ -76.744735717773381, -12.396794319152832 ], [ -76.746742248535099, -12.396356582641602 ], [ -76.753280639648438, -12.396386146545296 ], [ -76.755760192871094, -12.39674186706543 ], [ -76.755485534667969, -12.397747039794922 ], [ -76.756011962890568, -12.401602745056152 ], [ -76.756072998046875, -12.409619331359806 ], [ -76.753723144531193, -12.420519828796387 ], [ -76.753623962402287, -12.424850463867131 ], [ -76.753273010253906, -12.428062438964844 ], [ -76.753387451171875, -12.428764343261662 ], [ -76.752952575683537, -12.429652214050293 ], [ -76.752983093261719, -12.431126594543457 ], [ -76.755508422851506, -12.437979698181096 ], [ -76.756790161132812, -12.444026947021428 ], [ -76.751602172851506, -12.462004661560059 ], [ -76.750999450683594, -12.464938163757324 ], [ -76.752288818359318, -12.467604637145996 ], [ -76.753326416015568, -12.470849990844727 ], [ -76.75384521484375, -12.474859237670898 ], [ -76.754478454589787, -12.47608757019043 ], [ -76.756126403808594, -12.477855682373047 ], [ -76.758369445800724, -12.479513168334961 ], [ -76.759696960449219, -12.480816841125488 ], [ -76.765106201171875, -12.484811782836857 ], [ -76.770782470703068, -12.490169525146428 ], [ -76.772308349609318, -12.491786003112736 ], [ -76.773048400878906, -12.493979454040471 ], [ -76.773788452148438, -12.494931221008301 ], [ -76.777267456054631, -12.49708080291748 ], [ -76.778083801269531, -12.497297286987248 ], [ -76.780136108398381, -12.49730396270752 ], [ -76.783889770507812, -12.499565124511719 ], [ -76.786735534667969, -12.500350952148438 ], [ -76.787178039550724, -12.500837326049691 ], [ -76.787963867187443, -12.503090858459416 ], [ -76.788841247558594, -12.503420829772892 ], [ -76.790672302246094, -12.505152702331429 ], [ -76.790786743164062, -12.50556755065918 ], [ -76.787322998046875, -12.510724067687931 ], [ -76.786003112792969, -12.513083457946777 ], [ -76.784568786621094, -12.516583442687988 ], [ -76.78399658203125, -12.519143104553223 ], [ -76.783752441406193, -12.519861221313477 ], [ -76.783752441406193, -12.520138740539494 ], [ -76.7843017578125, -12.520138740539494 ], [ -76.784309387206974, -12.520417213439941 ], [ -76.784858703613281, -12.520417213439941 ], [ -76.784858703613281, -12.520138740539494 ], [ -76.785140991210938, -12.520138740539494 ], [ -76.785140991210938, -12.519582748413086 ], [ -76.785415649414062, -12.519582748413086 ], [ -76.785415649414062, -12.519305229187012 ], [ -76.785697937011719, -12.519305229187012 ], [ -76.785697937011719, -12.51874828338623 ], [ -76.785972595214844, -12.518751144409123 ], [ -76.785972595214844, -12.518472671508732 ], [ -76.786529541015568, -12.518472671508732 ], [ -76.786529541015568, -12.518192291259766 ], [ -76.786804199218693, -12.518195152282658 ], [ -76.786804199218693, -12.517916679382267 ], [ -76.787361145019474, -12.517916679382267 ], [ -76.787361145019474, -12.517638206481877 ], [ -76.787918090820312, -12.517638206481877 ], [ -76.787918090820312, -12.517359733581429 ], [ -76.788475036621094, -12.517359733581429 ], [ -76.788475036621094, -12.517082214355412 ], [ -76.788749694824219, -12.517082214355412 ], [ -76.788749694824219, -12.516806602478027 ], [ -76.789306640625, -12.516806602478027 ], [ -76.789306640625, -12.516526222228947 ], [ -76.789863586425724, -12.516529083251839 ], [ -76.789863586425724, -12.516250610351562 ], [ -76.790412902831974, -12.516250610351562 ], [ -76.790412902831974, -12.515970230102482 ], [ -76.790695190429688, -12.515972137451172 ], [ -76.790695190429688, -12.515693664550781 ], [ -76.791252136230469, -12.515693664550781 ], [ -76.791252136230469, -12.515416145324707 ], [ -76.7923583984375, -12.515416145324707 ], [ -76.7923583984375, -12.515137672424316 ], [ -76.792915344238224, -12.515137672424316 ], [ -76.792915344238224, -12.514583587646428 ], [ -76.793472290039006, -12.514583587646428 ], [ -76.793472290039006, -12.51402759552002 ], [ -76.793746948242188, -12.51402759552002 ], [ -76.793746948242188, -12.513748168945256 ], [ -76.794029235839844, -12.513750076293945 ], [ -76.794029235839844, -12.513471603393555 ], [ -76.794586181640625, -12.513471603393555 ], [ -76.794586181640625, -12.51319408416748 ], [ -76.79486083984375, -12.51319408416748 ], [ -76.79486083984375, -12.51291561126709 ], [ -76.795417785644531, -12.51291561126709 ], [ -76.795417785644531, -12.51319408416748 ], [ -76.795692443847543, -12.51319408416748 ], [ -76.795692443847543, -12.51291561126709 ], [ -76.795974731445256, -12.51291561126709 ], [ -76.795974731445256, -12.512638092041016 ], [ -76.796249389648381, -12.512638092041016 ], [ -76.796249389648381, -12.512361526489201 ], [ -76.796524047851506, -12.512361526489201 ], [ -76.796524047851506, -12.512082099914551 ], [ -76.797080993652344, -12.512082099914551 ], [ -76.797080993652344, -12.511805534362736 ], [ -76.79736328125, -12.511805534362736 ], [ -76.79736328125, -12.511528015136719 ], [ -76.797637939453125, -12.511528015136719 ], [ -76.797637939453125, -12.511249542236271 ], [ -76.798194885253906, -12.511249542236271 ], [ -76.798194885253906, -12.510972023010254 ], [ -76.798469543457031, -12.510972023010254 ], [ -76.798469543457031, -12.510693550109863 ], [ -76.798751831054688, -12.510693550109863 ], [ -76.798751831054688, -12.510416030883789 ], [ -76.799308776855412, -12.510416030883789 ], [ -76.799308776855412, -12.510137557983398 ], [ -76.799583435058537, -12.510137557983398 ], [ -76.799583435058537, -12.509860038757324 ], [ -76.802917480468693, -12.5098619461059 ], [ -76.802917480468693, -12.509584426879826 ], [ -76.803474426269531, -12.509584426879826 ], [ -76.803474426269531, -12.509305953979435 ], [ -76.804031372070312, -12.509305953979435 ], [ -76.804031372070312, -12.509028434753361 ], [ -76.803749084472656, -12.509028434753361 ], [ -76.803749084472656, -12.507362365722599 ], [ -76.803474426269531, -12.507362365722599 ], [ -76.803474426269531, -12.50625038146967 ], [ -76.803192138671818, -12.50625038146967 ], [ -76.803192138671818, -12.505694389343205 ], [ -76.802917480468693, -12.505694389343205 ], [ -76.802917480468693, -12.50514030456543 ], [ -76.802635192871037, -12.50514030456543 ], [ -76.802635192871037, -12.504584312438851 ], [ -76.802360534667912, -12.504584312438851 ], [ -76.802360534667912, -12.504027366638184 ], [ -76.802085876464844, -12.504027366638184 ], [ -76.802085876464844, -12.503748893737793 ], [ -76.801803588867188, -12.503748893737793 ], [ -76.801803588867188, -12.503471374511719 ], [ -76.801528930664062, -12.503471374511719 ], [ -76.801528930664062, -12.503195762634277 ], [ -76.801246643066406, -12.503195762634277 ], [ -76.801246643066406, -12.50291538238514 ], [ -76.800971984863281, -12.50291538238514 ], [ -76.800971984863281, -12.502639770507812 ], [ -76.800697326660156, -12.502639770507812 ], [ -76.800697326660156, -12.502361297607422 ], [ -76.8004150390625, -12.502361297607422 ], [ -76.8004150390625, -12.501805305480957 ], [ -76.800140380859318, -12.501805305480957 ], [ -76.800140380859318, -12.501526832580566 ], [ -76.799583435058537, -12.501526832580566 ], [ -76.799583435058537, -12.501249313354492 ], [ -76.799308776855412, -12.501249313354492 ], [ -76.799308776855412, -12.500693321228027 ], [ -76.799583435058537, -12.500695228576603 ], [ -76.799583435058537, -12.499860763549748 ], [ -76.799858093261662, -12.499860763549748 ], [ -76.799858093261662, -12.49958324432373 ], [ -76.800140380859318, -12.49958324432373 ], [ -76.800140380859318, -12.499304771423283 ], [ -76.8004150390625, -12.499304771423283 ], [ -76.8004150390625, -12.499027252197266 ], [ -76.800697326660156, -12.499027252197266 ], [ -76.800697326660156, -12.498748779296875 ], [ -76.802085876464844, -12.498748779296875 ], [ -76.802085876464844, -12.498471260070801 ], [ -76.802360534667912, -12.498473167419377 ], [ -76.802360534667912, -12.497917175292912 ], [ -76.802635192871037, -12.497917175292912 ], [ -76.802635192871037, -12.497638702392521 ], [ -76.802917480468693, -12.497638702392521 ], [ -76.802917480468693, -12.497359275817871 ], [ -76.803749084472656, -12.497361183166447 ], [ -76.803749084472656, -12.497082710266056 ], [ -76.804862976074219, -12.497082710266056 ], [ -76.804862976074219, -12.496803283691406 ], [ -76.805419921874886, -12.496803283691406 ], [ -76.805419921874886, -12.495139122009164 ], [ -76.805694580078068, -12.495139122009164 ], [ -76.805694580078068, -12.493471145629826 ], [ -76.804580688476562, -12.493471145629826 ], [ -76.804580688476562, -12.493612289428711 ], [ -76.804580688476562, -12.4937486648559 ], [ -76.804153442382756, -12.4937486648559 ], [ -76.804031372070312, -12.4937486648559 ], [ -76.804031372070312, -12.49402904510498 ], [ -76.803474426269531, -12.494027137756291 ], [ -76.803474426269531, -12.494304656982308 ], [ -76.803100585937443, -12.494304656982308 ], [ -76.802917480468693, -12.494304656982308 ], [ -76.802917480468693, -12.494583129882756 ], [ -76.800697326660156, -12.494583129882756 ], [ -76.800697326660156, -12.494304656982308 ], [ -76.800140380859318, -12.494304656982308 ], [ -76.800140380859318, -12.494027137756291 ], [ -76.799858093261662, -12.49402904510498 ], [ -76.799858093261662, -12.49263858795166 ], [ -76.800140380859318, -12.49263858795166 ], [ -76.800140380859318, -12.491804122924805 ], [ -76.799583435058537, -12.491806983947754 ], [ -76.799583435058537, -12.491525650024414 ], [ -76.799308776855412, -12.491525650024414 ], [ -76.799308776855412, -12.490973472595215 ], [ -76.799026489257756, -12.490973472595215 ], [ -76.799026489257756, -12.490138053894043 ], [ -76.798751831054688, -12.490138053894043 ], [ -76.798751831054688, -12.488750457763615 ], [ -76.799026489257756, -12.488750457763615 ], [ -76.799026489257756, -12.487638473510742 ], [ -76.799308776855412, -12.487638473510742 ], [ -76.799308776855412, -12.485972404479924 ], [ -76.8004150390625, -12.485972404479924 ], [ -76.8004150390625, -12.485693931579533 ], [ -76.800697326660156, -12.485693931579533 ], [ -76.800697326660156, -12.485137939453068 ], [ -76.800971984863281, -12.485137939453068 ], [ -76.800971984863281, -12.484581947326603 ], [ -76.801246643066406, -12.484581947326603 ], [ -76.801246643066406, -12.484027862548828 ], [ -76.801528930664062, -12.484027862548828 ], [ -76.801528930664062, -12.483750343322754 ], [ -76.802085876464844, -12.483750343322754 ], [ -76.802085876464844, -12.483471870422363 ], [ -76.802360534667912, -12.483471870422363 ], [ -76.802360534667912, -12.483194351196175 ], [ -76.802635192871037, -12.483194351196175 ], [ -76.802635192871037, -12.481805801391602 ], [ -76.802917480468693, -12.481805801391602 ], [ -76.802917480468693, -12.481528282165527 ], [ -76.803192138671818, -12.481528282165527 ], [ -76.803192138671818, -12.481249809265137 ], [ -76.803474426269531, -12.481249809265137 ], [ -76.803474426269531, -12.479860305786019 ], [ -76.803192138671818, -12.479862213134766 ], [ -76.803192138671818, -12.479583740234318 ], [ -76.802917480468693, -12.479583740234318 ], [ -76.802917480468693, -12.479303359985352 ], [ -76.802635192871037, -12.479306221008301 ], [ -76.802635192871037, -12.47902774810791 ], [ -76.802360534667912, -12.47902774810791 ], [ -76.802360534667912, -12.477361679077092 ], [ -76.802635192871037, -12.477361679077092 ], [ -76.802635192871037, -12.477081298828125 ], [ -76.802917480468693, -12.477084159851017 ], [ -76.802917480468693, -12.476248741149846 ], [ -76.803192138671818, -12.476248741149846 ], [ -76.803192138671818, -12.474859237670898 ], [ -76.802917480468693, -12.474859237670898 ], [ -76.802917480468693, -12.47319316864008 ], [ -76.802635192871037, -12.47319316864008 ], [ -76.802635192871037, -12.472639083862305 ], [ -76.802360534667912, -12.472639083862305 ], [ -76.802360534667912, -12.472360610961914 ], [ -76.801528930664062, -12.472360610961914 ], [ -76.801528930664062, -12.47208309173584 ], [ -76.801246643066406, -12.47208309173584 ], [ -76.801246643066406, -12.471804618835449 ], [ -76.800971984863281, -12.471804618835449 ], [ -76.800971984863281, -12.471527099609375 ], [ -76.800140380859318, -12.471527099609375 ], [ -76.800140380859318, -12.471248626708984 ], [ -76.799583435058537, -12.471248626708984 ], [ -76.799583435058537, -12.47097110748291 ], [ -76.798751831054688, -12.47097110748291 ], [ -76.798751831054688, -12.471804618835449 ], [ -76.798469543457031, -12.471804618835449 ], [ -76.798469543457031, -12.472360610961914 ], [ -76.798194885253906, -12.472360610961914 ], [ -76.798194885253906, -12.472916603088379 ], [ -76.797920227050781, -12.472916603088379 ], [ -76.797920227050781, -12.47319316864008 ], [ -76.797637939453125, -12.47319316864008 ], [ -76.797637939453125, -12.474026679992676 ], [ -76.797920227050781, -12.474026679992676 ], [ -76.797920227050781, -12.474861145019531 ], [ -76.797637939453125, -12.474859237670898 ], [ -76.797637939453125, -12.475415229797306 ], [ -76.79736328125, -12.475415229797306 ], [ -76.79736328125, -12.475971221923771 ], [ -76.797080993652344, -12.475971221923771 ], [ -76.797080993652344, -12.477084159851017 ], [ -76.796806335449162, -12.477081298828125 ], [ -76.796806335449162, -12.477361679077092 ], [ -76.796524047851506, -12.477361679077092 ], [ -76.796524047851506, -12.477917671203556 ], [ -76.796249389648381, -12.477917671203556 ], [ -76.796249389648381, -12.478193283081055 ], [ -76.795974731445256, -12.478191375732308 ], [ -76.795974731445256, -12.478471755981445 ], [ -76.795135498046875, -12.478473663329964 ], [ -76.795135498046875, -12.478983879089355 ], [ -76.795135498046875, -12.479583740234318 ], [ -76.793197631835881, -12.479583740234318 ], [ -76.793197631835881, -12.479303359985352 ], [ -76.792640686035043, -12.479306221008301 ], [ -76.792640686035043, -12.47902774810791 ], [ -76.792083740234375, -12.47902774810791 ], [ -76.792083740234375, -12.478750228881836 ], [ -76.79180908203125, -12.478750228881836 ], [ -76.79180908203125, -12.478473663329964 ], [ -76.791252136230469, -12.478471755981445 ], [ -76.791252136230469, -12.477917671203556 ], [ -76.790969848632812, -12.477917671203556 ], [ -76.790969848632812, -12.477081298828125 ], [ -76.791091918945256, -12.477081298828125 ], [ -76.791252136230469, -12.477084159851017 ], [ -76.791252136230469, -12.476527214050236 ], [ -76.791526794433594, -12.476527214050236 ], [ -76.791526794433594, -12.475971221923771 ], [ -76.79180908203125, -12.475971221923771 ], [ -76.79180908203125, -12.475695610046387 ], [ -76.7923583984375, -12.475695610046387 ], [ -76.7923583984375, -12.475415229797306 ], [ -76.792640686035043, -12.475415229797306 ], [ -76.792640686035043, -12.475138664245605 ], [ -76.792915344238224, -12.475138664245605 ], [ -76.792915344238224, -12.474303245544434 ], [ -76.793197631835881, -12.474303245544434 ], [ -76.793197631835881, -12.472639083862305 ], [ -76.79180908203125, -12.472639083862305 ], [ -76.79180908203125, -12.472360610961914 ], [ -76.791526794433594, -12.472360610961914 ], [ -76.791526794433594, -12.471527099609375 ], [ -76.791252136230469, -12.471527099609375 ], [ -76.791252136230469, -12.47097110748291 ], [ -76.790046691894474, -12.470973014831543 ], [ -76.789581298828068, -12.470973014831543 ], [ -76.789581298828068, -12.470694541931096 ], [ -76.790138244628849, -12.470694541931096 ], [ -76.790138244628849, -12.470417022705078 ], [ -76.790412902831974, -12.470417022705078 ], [ -76.790412902831974, -12.470138549804688 ], [ -76.790969848632812, -12.470138549804688 ], [ -76.790969848632812, -12.469861030578613 ], [ -76.791252136230469, -12.469861030578613 ], [ -76.791252136230469, -12.469582557678223 ], [ -76.791526794433594, -12.469582557678223 ], [ -76.791526794433594, -12.469305038452148 ], [ -76.79180908203125, -12.469305038452148 ], [ -76.79180908203125, -12.468749046325684 ], [ -76.792083740234375, -12.468749046325684 ], [ -76.792083740234375, -12.46763896942133 ], [ -76.791595458984375, -12.46763896942133 ], [ -76.790969848632812, -12.46763896942133 ], [ -76.790969848632812, -12.466940879821777 ], [ -76.790969848632812, -12.466526985168457 ], [ -76.791252136230469, -12.466528892516976 ], [ -76.791252136230469, -12.466251373290959 ], [ -76.791526794433594, -12.466251373290959 ], [ -76.791526794433594, -12.465695381164494 ], [ -76.79180908203125, -12.465695381164494 ], [ -76.79180908203125, -12.465416908264103 ], [ -76.792083740234375, -12.465416908264103 ], [ -76.792083740234375, -12.464582443237248 ], [ -76.791526794433594, -12.464582443237248 ], [ -76.791526794433594, -12.464306831359863 ], [ -76.790969848632812, -12.464306831359863 ], [ -76.790969848632812, -12.464026451110783 ], [ -76.790138244628849, -12.464026451110783 ], [ -76.790138244628849, -12.463750839233398 ], [ -76.789581298828068, -12.463750839233398 ], [ -76.789581298828068, -12.463473320007267 ], [ -76.789024353027344, -12.463473320007267 ], [ -76.789024353027344, -12.463370323181096 ], [ -76.789024353027344, -12.46319484710682 ], [ -76.78887939453125, -12.46319484710682 ], [ -76.788475036621094, -12.46319484710682 ], [ -76.788475036621094, -12.46292781829834 ], [ -76.788475036621094, -12.460138320922852 ], [ -76.788749694824219, -12.460138320922852 ], [ -76.788749694824219, -12.459028244018555 ], [ -76.789024353027344, -12.459028244018555 ], [ -76.789024353027344, -12.458193778991699 ], [ -76.78887939453125, -12.458193778991699 ], [ -76.788749694824219, -12.458193778991699 ], [ -76.788749694824219, -12.457637786865234 ], [ -76.788475036621094, -12.457637786865234 ], [ -76.788475036621094, -12.457442283630314 ], [ -76.788475036621094, -12.455971717834416 ], [ -76.788192749023438, -12.455971717834416 ], [ -76.788192749023438, -12.455415725707951 ], [ -76.787635803222656, -12.455415725707951 ], [ -76.787635803222656, -12.455694198608342 ], [ -76.785057067871094, -12.455694198608342 ], [ -76.784309387206974, -12.455694198608342 ], [ -76.7843017578125, -12.455415725707951 ], [ -76.784027099609318, -12.455415725707951 ], [ -76.784027099609318, -12.45402812957758 ], [ -76.7843017578125, -12.45402812957758 ], [ -76.7843017578125, -12.453749656677132 ], [ -76.784027099609318, -12.453749656677132 ], [ -76.784027099609318, -12.453469276428223 ], [ -76.783752441406193, -12.453469276428223 ], [ -76.783752441406193, -12.45291614532465 ], [ -76.784027099609318, -12.45291805267334 ], [ -76.784027099609318, -12.45263767242426 ], [ -76.7843017578125, -12.45263767242426 ], [ -76.7843017578125, -12.452359199523869 ], [ -76.784584045410156, -12.452362060546875 ], [ -76.784584045410156, -12.452083587646484 ], [ -76.784858703613281, -12.452083587646484 ], [ -76.784858703613281, -12.451803207397404 ], [ -76.785140991210938, -12.451803207397404 ], [ -76.785140991210938, -12.449581146240121 ], [ -76.785415649414062, -12.449581146240121 ], [ -76.785415649414062, -12.449027061462402 ], [ -76.785697937011719, -12.449027061462402 ], [ -76.785697937011719, -12.448748588562012 ], [ -76.785972595214844, -12.448748588562012 ], [ -76.785972595214844, -12.446526527404728 ], [ -76.786247253417912, -12.446526527404728 ], [ -76.786247253417912, -12.446249008178711 ], [ -76.786529541015568, -12.446249008178711 ], [ -76.786529541015568, -12.444026947021428 ], [ -76.786247253417912, -12.444026947021428 ], [ -76.786247253417912, -12.443751335144043 ], [ -76.785972595214844, -12.443751335144043 ], [ -76.785972595214844, -12.443470954894963 ], [ -76.785697937011719, -12.443470954894963 ], [ -76.785697937011719, -12.442639350891 ], [ -76.785415649414062, -12.442639350891 ], [ -76.785415649414062, -12.442488670349064 ], [ -76.785415649414062, -12.442360877990723 ], [ -76.785293579101506, -12.442360877990723 ], [ -76.783935546874943, -12.442360877990723 ], [ -76.783752441406193, -12.442360877990723 ], [ -76.783752441406193, -12.442639350891 ], [ -76.782913208007699, -12.442639350891 ], [ -76.782913208007699, -12.442916870117188 ], [ -76.781524658203125, -12.442916870117188 ], [ -76.781524658203125, -12.442639350891 ], [ -76.780975341796818, -12.442639350891 ], [ -76.780975341796818, -12.442360877990723 ], [ -76.780136108398381, -12.442360877990723 ], [ -76.780136108398381, -12.442083358764592 ], [ -76.779586791992188, -12.442083358764592 ], [ -76.779586791992188, -12.441804885864144 ], [ -76.779304504394531, -12.441804885864144 ], [ -76.779304504394531, -12.441527366638127 ], [ -76.778800964355412, -12.441527366638127 ], [ -76.778472900390625, -12.441527366638127 ], [ -76.778472900390625, -12.441250801086426 ], [ -76.777915954589844, -12.441250801086426 ], [ -76.777915954589844, -12.441135406494141 ], [ -76.777915954589844, -12.440973281860352 ], [ -76.777359008789006, -12.440973281860352 ], [ -76.777359008789006, -12.440694808959961 ], [ -76.777084350585881, -12.440694808959961 ], [ -76.777084350585881, -12.440417289733887 ], [ -76.776527404785156, -12.440417289733887 ], [ -76.776527404785156, -12.440138816833496 ], [ -76.775970458984375, -12.440138816833496 ], [ -76.775970458984375, -12.439582824707031 ], [ -76.77569580078125, -12.439582824707031 ], [ -76.77569580078125, -12.439305305480843 ], [ -76.775413513183594, -12.439305305480843 ], [ -76.775413513183594, -12.439028739929142 ], [ -76.775138854980469, -12.439028739929142 ], [ -76.775138854980469, -12.43569374084467 ], [ -76.775413513183594, -12.43569374084467 ], [ -76.775413513183594, -12.434860229492131 ], [ -76.77569580078125, -12.434860229492131 ], [ -76.77569580078125, -12.434304237365723 ], [ -76.775970458984375, -12.434304237365723 ], [ -76.775970458984375, -12.4334716796875 ], [ -76.776252746582031, -12.4334716796875 ], [ -76.776252746582031, -12.432638168334904 ], [ -76.776527404785156, -12.432638168334904 ], [ -76.776527404785156, -12.432082176208439 ], [ -76.776802062988224, -12.432082176208439 ], [ -76.776802062988224, -12.431528091430664 ], [ -76.777084350585881, -12.431528091430664 ], [ -76.777084350585881, -12.430972099304199 ], [ -76.777359008789006, -12.430972099304199 ], [ -76.777359008789006, -12.430416107177734 ], [ -76.777641296386662, -12.430416107177734 ], [ -76.777641296386662, -12.430137634277344 ], [ -76.777915954589844, -12.430137634277344 ], [ -76.777915954589844, -12.429860115051156 ], [ -76.778190612792969, -12.429860115051156 ], [ -76.7781982421875, -12.429306030273438 ], [ -76.778472900390625, -12.429304122924748 ], [ -76.778472900390625, -12.428750038146973 ], [ -76.77874755859375, -12.428750038146973 ], [ -76.77874755859375, -12.428471565246582 ], [ -76.779029846191406, -12.428471565246582 ], [ -76.779029846191406, -12.428194046020508 ], [ -76.779304504394531, -12.428194046020508 ], [ -76.779304504394531, -12.427915573120117 ], [ -76.779861450195199, -12.427915573120117 ], [ -76.779861450195199, -12.427362442016602 ], [ -76.779586791992188, -12.427362442016602 ], [ -76.779586791992188, -12.427082061767578 ], [ -76.779304504394531, -12.427083969116154 ], [ -76.779304504394531, -12.426806449890137 ], [ -76.779586791992188, -12.426806449890137 ], [ -76.779586791992188, -12.426527976989746 ], [ -76.780136108398381, -12.426527976989746 ], [ -76.780136108398381, -12.425971984863281 ], [ -76.779861450195199, -12.425971984863281 ], [ -76.779861450195199, -12.425136566162053 ], [ -76.780136108398381, -12.425136566162053 ], [ -76.780136108398381, -12.424584388732853 ], [ -76.779861450195199, -12.424584388732853 ], [ -76.779861450195199, -12.424305915832463 ], [ -76.780136108398381, -12.424305915832463 ], [ -76.780136108398381, -12.424028396606445 ], [ -76.779861450195199, -12.424028396606445 ], [ -76.779861450195199, -12.423749923705998 ], [ -76.780136108398381, -12.423749923705998 ], [ -76.780136108398381, -12.423195838928223 ], [ -76.780418395996037, -12.423195838928223 ], [ -76.780418395996037, -12.421249389648381 ], [ -76.780693054199162, -12.421249389648381 ], [ -76.780693054199162, -12.420416831970215 ], [ -76.780418395996037, -12.420416831970215 ], [ -76.780418395996037, -12.419583320617676 ], [ -76.780693054199162, -12.419583320617676 ], [ -76.780693054199162, -12.418473243713379 ], [ -76.780975341796818, -12.418473243713379 ], [ -76.780975341796818, -12.417612075805664 ], [ -76.780975341796818, -12.417361259460449 ], [ -76.78125, -12.417361259460449 ], [ -76.78125, -12.41624927520752 ], [ -76.781524658203125, -12.41624927520752 ], [ -76.781524658203125, -12.415693283081055 ], [ -76.781806945800781, -12.415695190429631 ], [ -76.781806945800781, -12.414860725402775 ], [ -76.782081604003906, -12.414860725402775 ], [ -76.782081604003906, -12.412638664245549 ], [ -76.781806945800781, -12.412638664245549 ], [ -76.781806945800781, -12.409306526184082 ], [ -76.781524658203125, -12.409306526184082 ], [ -76.781524658203125, -12.408750534057617 ], [ -76.780693054199162, -12.408750534057617 ], [ -76.780693054199162, -12.409029006958008 ], [ -76.780418395996037, -12.409026145934945 ], [ -76.780418395996037, -12.409288406371957 ], [ -76.780136108398381, -12.409306526184082 ], [ -76.780136108398381, -12.40961742401123 ], [ -76.780136108398381, -12.409859657287598 ], [ -76.779861450195199, -12.409859657287598 ], [ -76.779861450195199, -12.410139083862248 ], [ -76.779685974121094, -12.410139083862248 ], [ -76.779586791992188, -12.410139083862248 ], [ -76.779586791992188, -12.410278320312443 ], [ -76.779586791992188, -12.410416603088379 ], [ -76.779449462890568, -12.410416603088379 ], [ -76.779304504394531, -12.410416603088379 ], [ -76.779304504394531, -12.410587310791016 ], [ -76.779304504394531, -12.410972595214844 ], [ -76.779029846191406, -12.410972595214844 ], [ -76.779029846191406, -12.411251068115234 ], [ -76.778472900390625, -12.411251068115234 ], [ -76.778472900390625, -12.410972595214844 ], [ -76.7781982421875, -12.410972595214844 ], [ -76.778190612792969, -12.410692214965763 ], [ -76.777915954589844, -12.410695075988656 ], [ -76.777915954589844, -12.410416603088379 ], [ -76.777641296386662, -12.410416603088379 ], [ -76.777641296386662, -12.409859657287598 ], [ -76.777359008789006, -12.409859657287598 ], [ -76.777359008789006, -12.409306526184082 ], [ -76.777084350585881, -12.409306526184082 ], [ -76.777084350585881, -12.408750534057617 ], [ -76.776802062988224, -12.408750534057617 ], [ -76.776802062988224, -12.408193588256836 ], [ -76.776527404785156, -12.408193588256836 ], [ -76.776527404785156, -12.407360076904297 ], [ -76.776802062988224, -12.407360076904297 ], [ -76.776802062988224, -12.406804084777832 ], [ -76.777084350585881, -12.406805992126408 ], [ -76.777084350585881, -12.406528472900391 ], [ -76.777359008789006, -12.406528472900391 ], [ -76.777359008789006, -12.405971527099553 ], [ -76.777641296386662, -12.405971527099553 ], [ -76.777641296386662, -12.405415534973088 ], [ -76.776420593261662, -12.405415534973088 ], [ -76.776252746582031, -12.405415534973088 ], [ -76.776252746582031, -12.405306816100961 ], [ -76.776252746582031, -12.40513801574707 ], [ -76.7760009765625, -12.40513801574707 ], [ -76.775970458984375, -12.404026031494141 ], [ -76.776252746582031, -12.404027938842717 ], [ -76.776252746582031, -12.403194427490178 ], [ -76.776527404785156, -12.403194427490178 ], [ -76.776527404785156, -12.402359962463322 ], [ -76.776802062988224, -12.402359962463322 ], [ -76.776802062988224, -12.401805877685547 ], [ -76.777084350585881, -12.401805877685547 ], [ -76.777084350585881, -12.401528358459416 ], [ -76.777359008789006, -12.401528358459416 ], [ -76.777359008789006, -12.401249885558968 ], [ -76.777641296386662, -12.401249885558968 ], [ -76.777641296386662, -12.400972366332951 ], [ -76.778472900390625, -12.400972366332951 ], [ -76.778472900390625, -12.401528358459416 ], [ -76.77874755859375, -12.401528358459416 ], [ -76.77874755859375, -12.401805877685547 ], [ -76.779029846191406, -12.401805877685547 ], [ -76.779029846191406, -12.401528358459416 ], [ -76.779304504394531, -12.401528358459416 ], [ -76.779304504394531, -12.401249885558968 ], [ -76.779861450195199, -12.401249885558968 ], [ -76.779891967773438, -12.400972366332951 ], [ -76.780136108398381, -12.400972366332951 ], [ -76.780136108398381, -12.40069389343256 ], [ -76.780418395996037, -12.40069389343256 ], [ -76.780418395996037, -12.400416374206486 ], [ -76.780693054199162, -12.400416374206486 ], [ -76.780693054199162, -12.400139808654785 ], [ -76.781524658203125, -12.400139808654785 ], [ -76.781524658203125, -12.400416374206486 ], [ -76.782363891601562, -12.400416374206486 ], [ -76.782363891601562, -12.399862289428711 ], [ -76.782638549804688, -12.399862289428711 ], [ -76.782638549804688, -12.399306297302246 ], [ -76.783195495605412, -12.399306297302246 ], [ -76.783195495605412, -12.398750305175668 ], [ -76.783470153808537, -12.398750305175668 ], [ -76.783470153808537, -12.39819431304926 ], [ -76.783752441406193, -12.39819431304926 ], [ -76.783752441406193, -12.396805763244629 ], [ -76.783470153808537, -12.396805763244629 ], [ -76.783470153808537, -12.396528244018555 ], [ -76.783195495605412, -12.396528244018555 ], [ -76.783195495605412, -12.396248817443848 ], [ -76.782363891601562, -12.396248817443848 ], [ -76.782363891601562, -12.396528244018555 ], [ -76.781524658203125, -12.396528244018555 ], [ -76.781524658203125, -12.396248817443848 ], [ -76.78125, -12.396248817443848 ], [ -76.78125, -12.395971298217773 ], [ -76.780975341796818, -12.395971298217773 ], [ -76.780975341796818, -12.395415306091309 ], [ -76.78125, -12.395415306091309 ], [ -76.78125, -12.394582748413029 ], [ -76.781524658203125, -12.394582748413029 ], [ -76.781524658203125, -12.394026756286564 ], [ -76.78125, -12.394026756286564 ], [ -76.78125, -12.393749237060547 ], [ -76.780975341796818, -12.393749237060547 ], [ -76.780975341796818, -12.393193244934082 ], [ -76.78125, -12.393193244934082 ], [ -76.78125, -12.392916679382324 ], [ -76.781524658203125, -12.392916679382324 ], [ -76.781524658203125, -12.392639160156193 ], [ -76.783195495605412, -12.392639160156193 ], [ -76.783195495605412, -12.392360687255746 ], [ -76.783752441406193, -12.392360687255746 ], [ -76.783752441406193, -12.392083168029728 ], [ -76.784027099609318, -12.392083168029728 ], [ -76.784027099609318, -12.391804695129338 ], [ -76.7843017578125, -12.391804695129338 ], [ -76.7843017578125, -12.391527175903263 ], [ -76.784584045410156, -12.391527175903263 ], [ -76.784584045410156, -12.391248703002873 ], [ -76.784858703613281, -12.391248703002873 ], [ -76.784858703613281, -12.390694618225098 ], [ -76.785140991210938, -12.390694618225098 ], [ -76.785140991210938, -12.390138626098633 ], [ -76.784858703613281, -12.390138626098633 ], [ -76.784858703613281, -12.389861106872559 ], [ -76.784027099609318, -12.389861106872559 ], [ -76.784027099609318, -12.389582633972168 ], [ -76.782913208007699, -12.389582633972168 ], [ -76.782913208007699, -12.38930511474598 ], [ -76.782638549804688, -12.38930511474598 ], [ -76.782638549804688, -12.389026641845703 ], [ -76.782363891601562, -12.389026641845703 ], [ -76.782363891601562, -12.388472557067871 ], [ -76.782127380371037, -12.388472557067871 ], [ -76.782081604003906, -12.388193130493107 ], [ -76.782196044921875, -12.388195037841797 ], [ -76.782363891601562, -12.388195037841797 ], [ -76.782363891601562, -12.387916564941406 ], [ -76.782638549804688, -12.387916564941406 ], [ -76.782638549804688, -12.387360572814941 ], [ -76.782913208007699, -12.387360572814941 ], [ -76.782913208007699, -12.387083053588867 ], [ -76.783195495605412, -12.387083053588867 ], [ -76.783195495605412, -12.386804580688477 ], [ -76.783470153808537, -12.386804580688477 ], [ -76.783470153808537, -12.386527061462402 ], [ -76.783752441406193, -12.386528968810978 ], [ -76.783752441406193, -12.386248588562012 ], [ -76.784027099609318, -12.386248588562012 ], [ -76.784027099609318, -12.385971069335824 ], [ -76.785415649414062, -12.38597297668457 ], [ -76.785415649414062, -12.385695457458496 ], [ -76.786529541015568, -12.385695457458496 ], [ -76.786529541015568, -12.38597297668457 ], [ -76.787635803222656, -12.385971069335824 ], [ -76.787635803222656, -12.386248588562012 ], [ -76.787918090820312, -12.386248588562012 ], [ -76.787918090820312, -12.386528968810978 ], [ -76.789024353027344, -12.386528968810978 ], [ -76.789024353027344, -12.386248588562012 ], [ -76.789863586425724, -12.386248588562012 ], [ -76.789863586425724, -12.385139465332031 ], [ -76.789581298828068, -12.385139465332031 ], [ -76.789581298828068, -12.384025573730412 ], [ -76.789306640625, -12.384025573730412 ], [ -76.789306640625, -12.382917404174805 ], [ -76.789024353027344, -12.382917404174805 ], [ -76.789024353027344, -12.381525993347111 ], [ -76.789306640625, -12.381525993347111 ], [ -76.789306640625, -12.380970001220703 ], [ -76.789581298828068, -12.380971908569336 ], [ -76.789581298828068, -12.38013839721674 ], [ -76.789863586425724, -12.38013839721674 ], [ -76.789863586425724, -12.379584312438965 ], [ -76.790138244628849, -12.379584312438965 ], [ -76.790138244628849, -12.3790283203125 ], [ -76.790412902831974, -12.3790283203125 ], [ -76.790412902831974, -12.378472328186035 ], [ -76.790695190429688, -12.378472328186035 ], [ -76.790695190429688, -12.378193855285645 ], [ -76.790969848632812, -12.378193855285645 ], [ -76.790969848632812, -12.37763786315918 ], [ -76.791252136230469, -12.37763786315918 ], [ -76.791252136230469, -12.377083778381348 ], [ -76.791526794433594, -12.377083778381348 ], [ -76.791526794433594, -12.376806259155273 ], [ -76.79180908203125, -12.376806259155273 ], [ -76.79180908203125, -12.376527786254883 ], [ -76.792083740234375, -12.376527786254883 ], [ -76.792083740234375, -12.376250267028809 ], [ -76.7923583984375, -12.376250267028809 ], [ -76.7923583984375, -12.375971794128418 ], [ -76.792640686035043, -12.375971794128418 ], [ -76.792640686035043, -12.375694274902344 ], [ -76.792915344238224, -12.375694274902344 ], [ -76.792915344238224, -12.375138282775879 ], [ -76.793197631835881, -12.375140190124455 ], [ -76.793197631835881, -12.374859809875488 ], [ -76.793472290039006, -12.374859809875488 ], [ -76.793472290039006, -12.374582290649414 ], [ -76.794029235839844, -12.374582290649414 ], [ -76.794029235839844, -12.374026298522836 ], [ -76.794303894042969, -12.374028205871582 ], [ -76.794303894042969, -12.373749732971135 ], [ -76.79486083984375, -12.373749732971135 ], [ -76.79486083984375, -12.373469352722168 ], [ -76.795135498046875, -12.373469352722168 ], [ -76.795135498046875, -12.372916221618652 ], [ -76.795417785644531, -12.372916221618652 ], [ -76.795417785644531, -12.372637748718262 ], [ -76.795692443847543, -12.372637748718262 ], [ -76.795692443847543, -12.372360229492188 ], [ -76.796249389648381, -12.372362136840763 ], [ -76.796249389648381, -12.371527671813908 ], [ -76.796524047851506, -12.371527671813908 ], [ -76.796524047851506, -12.370971679687443 ], [ -76.796806335449162, -12.370971679687443 ], [ -76.796806335449162, -12.370694160461426 ], [ -76.79736328125, -12.370694160461426 ], [ -76.79736328125, -12.370417594909668 ], [ -76.797637939453125, -12.370417594909668 ], [ -76.797637939453125, -12.370137214660588 ], [ -76.797920227050781, -12.37014007568348 ], [ -76.797920227050781, -12.369861602783203 ], [ -76.798469543457031, -12.369861602783203 ], [ -76.798469543457031, -12.369581222534123 ], [ -76.798751831054688, -12.369584083557072 ], [ -76.798751831054688, -12.369305610656625 ], [ -76.799308776855412, -12.369305610656625 ], [ -76.799308776855412, -12.369027137756348 ], [ -76.799858093261662, -12.369027137756348 ], [ -76.799858093261662, -12.368748664855957 ], [ -76.800140380859318, -12.368748664855957 ], [ -76.800140380859318, -12.368195533752441 ], [ -76.799858093261662, -12.368195533752441 ], [ -76.799858093261662, -12.367915153503361 ], [ -76.799583435058537, -12.367918014526367 ], [ -76.799583435058537, -12.36763858795166 ], [ -76.799308776855412, -12.36763858795166 ], [ -76.799308776855412, -12.367359161376896 ], [ -76.799156188964844, -12.367361068725586 ], [ -76.799026489257756, -12.367361068725586 ], [ -76.799026489257756, -12.367082595825195 ], [ -76.798751831054688, -12.367082595825195 ], [ -76.798751831054688, -12.366924285888672 ], [ -76.798751831054688, -12.36652660369873 ], [ -76.798469543457031, -12.36652660369873 ], [ -76.798469543457031, -12.365693092346191 ], [ -76.798194885253906, -12.365693092346191 ], [ -76.798194885253906, -12.365137100219727 ], [ -76.797920227050781, -12.365139007568359 ], [ -76.797920227050781, -12.364304542541504 ], [ -76.797637939453125, -12.364304542541504 ], [ -76.797637939453125, -12.363751411437931 ], [ -76.797920227050781, -12.363748550415039 ], [ -76.797920227050781, -12.363195419311467 ], [ -76.798194885253906, -12.363195419311467 ], [ -76.798194885253906, -12.362916946411076 ], [ -76.798469543457031, -12.362916946411076 ], [ -76.798469543457031, -12.362360954284611 ], [ -76.798751831054688, -12.362360954284611 ], [ -76.798751831054688, -12.362083435058594 ], [ -76.799026489257756, -12.362083435058594 ], [ -76.799026489257756, -12.361804962158146 ], [ -76.799308776855412, -12.361804962158146 ], [ -76.799308776855412, -12.361248970031738 ], [ -76.799583435058537, -12.361250877380371 ], [ -76.799583435058537, -12.36097335815424 ], [ -76.799858093261662, -12.36097335815424 ], [ -76.799858093261662, -12.360694885253793 ], [ -76.800140380859318, -12.360694885253793 ], [ -76.800140380859318, -12.360417366027775 ], [ -76.8004150390625, -12.360417366027775 ], [ -76.8004150390625, -12.35986137390131 ], [ -76.800697326660156, -12.35986137390131 ], [ -76.800697326660156, -12.35958290100092 ], [ -76.800971984863281, -12.35958290100092 ], [ -76.800971984863281, -12.359305381774846 ], [ -76.801528930664062, -12.359305381774846 ], [ -76.801528930664062, -12.359028816223145 ], [ -76.802085876464844, -12.359028816223145 ], [ -76.802085876464844, -12.35875129699707 ], [ -76.802635192871037, -12.35875129699707 ], [ -76.802635192871037, -12.35847282409668 ], [ -76.802963256835938, -12.35847282409668 ], [ -76.803192138671818, -12.35847282409668 ], [ -76.803192138671818, -12.358302116394043 ], [ -76.803192138671818, -12.358195304870492 ], [ -76.803337097167969, -12.358195304870492 ], [ -76.803749084472656, -12.358195304870492 ], [ -76.803749084472656, -12.357916831970215 ], [ -76.803909301757812, -12.357916831970215 ], [ -76.804306030273438, -12.357916831970215 ], [ -76.804306030273438, -12.357639312744084 ], [ -76.80450439453125, -12.357639312744084 ], [ -76.804862976074219, -12.357639312744084 ], [ -76.804862976074219, -12.357472419738713 ], [ -76.804862976074219, -12.357360839843636 ], [ -76.805107116699162, -12.357360839843636 ], [ -76.805419921874886, -12.357360839843636 ], [ -76.805419921874886, -12.357216835021973 ], [ -76.805419921874886, -12.357083320617619 ], [ -76.805709838867188, -12.357083320617619 ], [ -76.806251525878849, -12.357083320617619 ], [ -76.806251525878849, -12.356806755065918 ], [ -76.806808471679688, -12.356806755065918 ], [ -76.806808471679688, -12.356526374816781 ], [ -76.807357788085938, -12.356526374816781 ], [ -76.807357788085938, -12.356250762939453 ], [ -76.807510375976506, -12.356250762939453 ], [ -76.808197021484375, -12.356250762939453 ], [ -76.808197021484375, -12.355973243713379 ], [ -76.808746337890568, -12.355973243713379 ], [ -76.808746337890568, -12.355694770812988 ], [ -76.809303283691349, -12.355694770812988 ], [ -76.809303283691349, -12.355416297912598 ], [ -76.809860229492188, -12.355416297912598 ], [ -76.809860229492188, -12.355137825012207 ], [ -76.810691833496094, -12.355137825012207 ], [ -76.810691833496094, -12.354860305786133 ], [ -76.811248779296875, -12.354860305786133 ], [ -76.811248779296875, -12.354584693908635 ], [ -76.811805725097599, -12.354584693908635 ], [ -76.811805725097599, -12.354304313659668 ], [ -76.812362670898381, -12.354304313659668 ], [ -76.812362670898381, -12.354027748107853 ], [ -76.812919616699162, -12.354027748107853 ], [ -76.812919616699162, -12.353766441345215 ], [ -76.813194274902344, -12.353750228881779 ], [ -76.813194274902344, -12.353471755981388 ], [ -76.813751220703125, -12.353471755981388 ], [ -76.813751220703125, -12.353194236755371 ], [ -76.814308166503906, -12.353194236755371 ], [ -76.814308166503906, -12.352915763854924 ], [ -76.815681457519531, -12.352915763854924 ], [ -76.816802978515625, -12.352915763854924 ], [ -76.816802978515625, -12.352638244628906 ], [ -76.817085266113281, -12.352638244628906 ], [ -76.817085266113281, -12.352082252502441 ], [ -76.817359924316406, -12.352082252502441 ], [ -76.817359924316406, -12.350972175598088 ], [ -76.817642211914062, -12.350972175598088 ], [ -76.817642211914062, -12.349860191345158 ], [ -76.817916870117188, -12.349860191345158 ], [ -76.817916870117188, -12.348750114440804 ], [ -76.817642211914062, -12.348750114440804 ], [ -76.817642211914062, -12.347915649413949 ], [ -76.817359924316406, -12.347915649413949 ], [ -76.817359924316406, -12.34736156463623 ], [ -76.817085266113281, -12.34736156463623 ], [ -76.817085266113281, -12.347256660461369 ], [ -76.817085266113281, -12.347100257873535 ], [ -76.817085266113281, -12.346907615661564 ], [ -76.817085266113281, -12.346528053283691 ], [ -76.816802978515625, -12.346528053283691 ], [ -76.816802978515625, -12.345693588256836 ], [ -76.8165283203125, -12.345693588256836 ], [ -76.8165283203125, -12.344584465026855 ], [ -76.816253662109375, -12.344584465026855 ], [ -76.816253662109375, -12.343661308288517 ], [ -76.816253662109375, -12.343193054199219 ], [ -76.8165283203125, -12.343193054199219 ], [ -76.8165283203125, -12.342735290527287 ], [ -76.8165283203125, -12.342081069946289 ], [ -76.816802978515625, -12.342081069946289 ], [ -76.816802978515625, -12.3415269851684 ], [ -76.817085266113281, -12.3415269851684 ], [ -76.817085266113281, -12.341249465942383 ], [ -76.81744384765625, -12.341249465942383 ], [ -76.817642211914062, -12.341249465942383 ], [ -76.817642211914062, -12.341080665588379 ], [ -76.817733764648438, -12.340970993041935 ], [ -76.817916870117188, -12.340970993041935 ], [ -76.817916870117188, -12.34069633483881 ], [ -76.818191528320256, -12.34069633483881 ], [ -76.818191528320256, -12.340415000915527 ], [ -76.818473815917912, -12.34041690826416 ], [ -76.818473815917912, -12.340139389038029 ], [ -76.819023132324162, -12.340139389038029 ], [ -76.819030761718693, -12.339859008789062 ], [ -76.819305419921875, -12.339860916137582 ], [ -76.819305419921875, -12.339583396911564 ], [ -76.819671630859375, -12.339583396911564 ], [ -76.819862365722656, -12.339583396911564 ], [ -76.819862365722656, -12.339424133300724 ], [ -76.819862365722656, -12.339304924011174 ], [ -76.819999694824162, -12.339304924011174 ], [ -76.820419311523438, -12.339304924011174 ], [ -76.820419311523438, -12.339027404785099 ], [ -76.820968627929688, -12.339027404785099 ], [ -76.820968627929688, -12.338748931884709 ], [ -76.821174621582031, -12.338748931884709 ], [ -76.822364807128849, -12.338748931884709 ], [ -76.822364807128849, -12.339027404785099 ], [ -76.822639465332031, -12.339027404785099 ], [ -76.822639465332031, -12.339304924011174 ], [ -76.823036193847599, -12.339304924011174 ], [ -76.823196411132812, -12.339304924011174 ], [ -76.823196411132812, -12.339583396911564 ], [ -76.823280334472656, -12.339583396911564 ], [ -76.823471069335938, -12.339583396911564 ], [ -76.823471069335938, -12.339860916137582 ], [ -76.824028015136719, -12.339859008789062 ], [ -76.824028015136719, -12.34069633483881 ], [ -76.82430267333973, -12.34069633483881 ], [ -76.82430267333973, -12.3415269851684 ], [ -76.824584960937443, -12.3415269851684 ], [ -76.824584960937443, -12.341805458068791 ], [ -76.824859619140568, -12.341805458068791 ], [ -76.824859619140568, -12.342362403869629 ], [ -76.825416564941349, -12.342362403869629 ], [ -76.825416564941349, -12.342639923095646 ], [ -76.825691223144531, -12.342637062072754 ], [ -76.825691223144531, -12.342914581298828 ], [ -76.826248168945312, -12.342914581298828 ], [ -76.826248168945312, -12.343193054199219 ], [ -76.826805114746094, -12.343193054199219 ], [ -76.826805114746094, -12.343471527099609 ], [ -76.827079772949219, -12.343471527099609 ], [ -76.827079772949219, -12.343193054199219 ], [ -76.827362060546875, -12.343193054199219 ], [ -76.827362060546875, -12.342637062072754 ], [ -76.826805114746094, -12.342639923095646 ], [ -76.826805114746094, -12.342362403869629 ], [ -76.826530456542969, -12.342362403869629 ], [ -76.826530456542969, -12.341805458068791 ], [ -76.826248168945312, -12.341805458068791 ], [ -76.826248168945312, -12.341249465942383 ], [ -76.825973510742188, -12.341249465942383 ], [ -76.825973510742188, -12.34069633483881 ], [ -76.825691223144531, -12.34069633483881 ], [ -76.825691223144531, -12.339860916137582 ], [ -76.825988769531193, -12.339860916137582 ], [ -76.826530456542969, -12.339860916137582 ], [ -76.826530456542969, -12.339729309082031 ], [ -76.826530456542969, -12.339583396911564 ], [ -76.826728820800781, -12.339583396911564 ], [ -76.827362060546875, -12.339583396911564 ], [ -76.827362060546875, -12.339304924011174 ], [ -76.827636718749943, -12.339304924011174 ], [ -76.827636718749943, -12.338919639587346 ], [ -76.827636718749943, -12.338748931884709 ], [ -76.827751159667969, -12.338748931884709 ], [ -76.827919006347599, -12.338748931884709 ], [ -76.827919006347599, -12.338438987731877 ], [ -76.827919006347599, -12.338194847106934 ], [ -76.828193664550724, -12.338194847106934 ], [ -76.828193664550724, -12.337361335754395 ], [ -76.828475952148381, -12.337361335754395 ], [ -76.828475952148381, -12.336526870727539 ], [ -76.828750610351506, -12.336526870727539 ], [ -76.828750610351506, -12.335970878600961 ], [ -76.829025268554688, -12.335970878600961 ], [ -76.829025268554688, -12.335607528686523 ], [ -76.829025268554688, -12.335416793823242 ], [ -76.829200744628906, -12.335416793823242 ], [ -76.829307556152344, -12.335416793823242 ], [ -76.829307556152344, -12.335305213928223 ], [ -76.829307556152344, -12.335139274597168 ], [ -76.829460144042969, -12.335139274597168 ], [ -76.83013916015625, -12.335139274597168 ], [ -76.83013916015625, -12.334860801696777 ], [ -76.830696105957031, -12.334860801696777 ], [ -76.830696105957031, -12.334583282470703 ], [ -76.830970764160099, -12.334583282470703 ], [ -76.830970764160099, -12.334029197692814 ], [ -76.831253051757756, -12.334027290344238 ], [ -76.831253051757756, -12.330836296081543 ], [ -76.831253051757756, -12.330416679382267 ], [ -76.831718444824162, -12.330416679382267 ], [ -76.832084655761719, -12.330416679382267 ], [ -76.832084655761719, -12.33013916015625 ], [ -76.832275390625, -12.33013916015625 ], [ -76.834861755371037, -12.33013916015625 ], [ -76.834861755371037, -12.329582214355412 ], [ -76.835136413574219, -12.329582214355412 ], [ -76.835136413574219, -12.328470230102539 ], [ -76.834861755371037, -12.328470230102539 ], [ -76.834861755371037, -12.326804161071721 ], [ -76.834587097167912, -12.326804161071721 ], [ -76.834587097167912, -12.326384544372559 ], [ -76.834587097167912, -12.32569408416748 ], [ -76.834861755371037, -12.32569408416748 ], [ -76.834861755371037, -12.32541561126709 ], [ -76.835311889648438, -12.32541561126709 ], [ -76.835418701171875, -12.32541561126709 ], [ -76.835418701171875, -12.325267791748047 ], [ -76.835418701171875, -12.325138092041016 ], [ -76.835693359375, -12.325138092041016 ], [ -76.835693359375, -12.324995040893555 ], [ -76.835693359375, -12.324861526489201 ], [ -76.836120605468693, -12.324861526489201 ], [ -76.837638854980412, -12.324861526489201 ], [ -76.837638854980412, -12.324305534362736 ], [ -76.837913513183537, -12.324305534362736 ], [ -76.837913513183537, -12.322916030883789 ], [ -76.837638854980412, -12.322916030883789 ], [ -76.837638854980412, -12.322084426879826 ], [ -76.837364196777287, -12.322084426879826 ], [ -76.837364196777287, -12.321528434753418 ], [ -76.837081909179574, -12.321528434753418 ], [ -76.837081909179574, -12.321249961852971 ], [ -76.836807250976562, -12.321249961852971 ], [ -76.836807250976562, -12.320972442626953 ], [ -76.836524963378906, -12.320972442626953 ], [ -76.836524963378906, -12.320693969726562 ], [ -76.836250305175781, -12.320693969726562 ], [ -76.836250305175781, -12.320416450500488 ], [ -76.835975646972656, -12.320416450500488 ], [ -76.835975646972656, -12.319027900695744 ], [ -76.835693359375, -12.319027900695744 ], [ -76.835693359375, -12.317917823791504 ], [ -76.835975646972656, -12.317917823791504 ], [ -76.835975646972656, -12.317640304565316 ], [ -76.836250305175781, -12.317638397216797 ], [ -76.836250305175781, -12.316528320312443 ], [ -76.836524963378906, -12.316528320312443 ], [ -76.836524963378906, -12.315971374511605 ], [ -76.836807250976562, -12.315971374511605 ], [ -76.836807250976562, -12.315695762634277 ], [ -76.837081909179574, -12.315695762634277 ], [ -76.837081909179574, -12.3152561187743 ], [ -76.837081909179574, -12.315139770507812 ], [ -76.837364196777287, -12.315139770507812 ], [ -76.837364196777287, -12.314862251281738 ], [ -76.837913513183537, -12.314862251281738 ], [ -76.837913513183537, -12.314582824707031 ], [ -76.838195800781193, -12.314582824707031 ], [ -76.838195800781193, -12.314305305480957 ], [ -76.838752746582031, -12.314305305480957 ], [ -76.838752746582031, -12.314026832580566 ], [ -76.839027404785156, -12.314026832580566 ], [ -76.839027404785156, -12.313749313354492 ], [ -76.839584350585938, -12.313749313354492 ], [ -76.839584350585938, -12.313470840454102 ], [ -76.840690612792912, -12.313470840454102 ], [ -76.840698242187443, -12.313193321228027 ], [ -76.842086791992188, -12.313193321228027 ], [ -76.842086791992188, -12.313470840454102 ], [ -76.842636108398438, -12.313470840454102 ], [ -76.842636108398438, -12.313749313354492 ], [ -76.842918395996094, -12.313749313354492 ], [ -76.842918395996094, -12.314026832580566 ], [ -76.843475341796875, -12.314026832580566 ], [ -76.843475341796875, -12.314305305480957 ], [ -76.844024658203068, -12.314305305480957 ], [ -76.844024658203068, -12.310973167419377 ], [ -76.844306945800724, -12.310973167419377 ], [ -76.844306945800724, -12.310415267944336 ], [ -76.844581604003849, -12.310415267944336 ], [ -76.844581604003849, -12.309859275817871 ], [ -76.844306945800724, -12.309861183166447 ], [ -76.844306945800724, -12.309514999389592 ], [ -76.844306945800724, -12.309303283691406 ], [ -76.844581604003849, -12.309305191039982 ], [ -76.844581604003849, -12.309026718139592 ], [ -76.844825744628906, -12.309026718139592 ], [ -76.844863891601562, -12.308749198913574 ], [ -76.845138549804688, -12.308751106262207 ], [ -76.845138549804688, -12.308472633361816 ], [ -76.845405578613281, -12.308472633361816 ], [ -76.845413208007812, -12.308195114135629 ], [ -76.845695495605469, -12.308195114135629 ], [ -76.845695495605469, -12.307916641235352 ], [ -76.845947265624943, -12.307916641235352 ], [ -76.845970153808594, -12.307639122009221 ], [ -76.846206665039006, -12.307639122009221 ], [ -76.846801757812443, -12.307639122009221 ], [ -76.846801757812443, -12.307360649108773 ], [ -76.847358703613224, -12.307360649108773 ], [ -76.847358703613224, -12.307083129882756 ], [ -76.847915649414062, -12.307083129882756 ], [ -76.847915649414062, -12.306804656982365 ], [ -76.848472595214844, -12.306804656982365 ], [ -76.848472595214844, -12.306527137756291 ], [ -76.848747253417969, -12.30652904510498 ], [ -76.848747253417969, -12.3062486648559 ], [ -76.84930419921875, -12.3062486648559 ], [ -76.84930419921875, -12.305971145629826 ], [ -76.849586486816406, -12.305973052978516 ], [ -76.849586486816406, -12.30513858795166 ], [ -76.849861145019418, -12.30513858795166 ], [ -76.849861145019418, -12.304569244384766 ], [ -76.849861145019418, -12.304026603698617 ], [ -76.850135803222599, -12.304026603698617 ], [ -76.850135803222599, -12.303473472595215 ], [ -76.850692749023381, -12.303473472595215 ], [ -76.850692749023381, -12.303192138671761 ], [ -76.850975036621037, -12.303194999694824 ], [ -76.850975036621037, -12.302916526794434 ], [ -76.851524353027344, -12.302916526794434 ], [ -76.851524353027344, -12.302639007568359 ], [ -76.851806640625, -12.302639007568359 ], [ -76.851806640625, -12.302359580993652 ], [ -76.852363586425781, -12.302359580993652 ], [ -76.852363586425781, -12.302082061767578 ], [ -76.852638244628906, -12.302082061767578 ], [ -76.852638244628906, -12.301807403564453 ], [ -76.853103637695199, -12.301807403564453 ], [ -76.853195190429631, -12.301807403564453 ], [ -76.853195190429631, -12.301526069641113 ], [ -76.853385925292912, -12.301528930664062 ], [ -76.853469848632756, -12.301528930664062 ], [ -76.853469848632756, -12.301251411437988 ], [ -76.853652954101506, -12.301251411437988 ], [ -76.854026794433537, -12.301251411437988 ], [ -76.854026794433537, -12.300970077514648 ], [ -76.854309082031193, -12.300971984863224 ], [ -76.854309082031193, -12.300694465637207 ], [ -76.854583740234375, -12.300694465637207 ], [ -76.854583740234375, -12.30041599273676 ], [ -76.855140686035156, -12.30041599273676 ], [ -76.855140686035156, -12.300138473510742 ], [ -76.855415344238281, -12.300138473510742 ], [ -76.855415344238281, -12.299860000610352 ], [ -76.855972290039062, -12.299860000610352 ], [ -76.855972290039062, -12.299584388732853 ], [ -76.856246948242131, -12.299584388732853 ], [ -76.856246948242131, -12.299304008483887 ], [ -76.856803894042912, -12.299305915832406 ], [ -76.856803894042912, -12.299028396606388 ], [ -76.857360839843693, -12.299028396606388 ], [ -76.857360839843693, -12.298748016357422 ], [ -76.857635498046875, -12.298749923705998 ], [ -76.857635498046875, -12.298472404479924 ], [ -76.857841491699162, -12.298472404479924 ], [ -76.858192443847656, -12.298472404479924 ], [ -76.858192443847656, -12.298333168029728 ], [ -76.858192443847656, -12.298193931579533 ], [ -76.858535766601506, -12.298193931579533 ], [ -76.858749389648438, -12.298193931579533 ], [ -76.858749389648438, -12.297916412353459 ], [ -76.859237670898438, -12.297916412353459 ], [ -76.859306335449219, -12.297637939453068 ], [ -76.859580993652287, -12.297637939453068 ], [ -76.859580993652287, -12.297362327575684 ], [ -76.860137939453068, -12.297362327575684 ], [ -76.860137939453068, -12.297081947326603 ], [ -76.860694885253906, -12.297081947326603 ], [ -76.860694885253906, -12.296806335449219 ], [ -76.861251831054688, -12.296806335449219 ], [ -76.861251831054688, -12.296527862548828 ], [ -76.861526489257812, -12.296527862548828 ], [ -76.861526489257812, -12.29625034332264 ], [ -76.862083435058594, -12.29625034332264 ], [ -76.862083435058594, -12.295971870422363 ], [ -76.862640380859261, -12.295971870422363 ], [ -76.862640380859261, -12.295694351196232 ], [ -76.863197326660099, -12.295694351196232 ], [ -76.863197326660099, -12.295415878295785 ], [ -76.863624572753906, -12.295415878295785 ], [ -76.863746643066406, -12.295415878295785 ], [ -76.863746643066406, -12.295140266418457 ], [ -76.864097595214844, -12.295140266418457 ], [ -76.864303588867188, -12.295140266418457 ], [ -76.864303588867188, -12.295030593872013 ], [ -76.864303588867188, -12.294859886169377 ], [ -76.864707946777287, -12.294859886169377 ], [ -76.864860534667969, -12.294859886169377 ], [ -76.864860534667969, -12.294584274291992 ], [ -76.86541748046875, -12.294584274291992 ], [ -76.86541748046875, -12.294305801391602 ], [ -76.865974426269474, -12.294305801391602 ], [ -76.865974426269474, -12.294028282165527 ], [ -76.866249084472599, -12.294028282165527 ], [ -76.866249084472599, -12.293749809265137 ], [ -76.866806030273381, -12.293749809265137 ], [ -76.866806030273381, -12.293472290039062 ], [ -76.867362976074219, -12.293472290039062 ], [ -76.867362976074219, -12.293193817138672 ], [ -76.867919921875, -12.293193817138672 ], [ -76.867919921875, -12.292916297912484 ], [ -76.86846923828125, -12.292916297912484 ], [ -76.86846923828125, -12.292637825012207 ], [ -76.869026184081974, -12.292637825012207 ], [ -76.869026184081974, -12.292360305786076 ], [ -76.869583129882756, -12.292362213134766 ], [ -76.869583129882756, -12.292083740234375 ], [ -76.870140075683537, -12.292083740234375 ], [ -76.870140075683537, -12.291804313659611 ], [ -76.870697021484375, -12.291806221008301 ], [ -76.870697021484375, -12.29152774810791 ], [ -76.871528625488281, -12.29152774810791 ], [ -76.871528625488281, -12.291250228881836 ], [ -76.872085571289062, -12.291250228881836 ], [ -76.872085571289062, -12.290971755981445 ], [ -76.872917175292912, -12.290971755981445 ], [ -76.872917175292912, -12.290691375732365 ], [ -76.87347412109375, -12.290694236755371 ], [ -76.87347412109375, -12.290417671203556 ], [ -76.874031066894531, -12.290417671203556 ], [ -76.874031066894531, -12.29013729095459 ], [ -76.874862670898438, -12.290140151977482 ], [ -76.874862670898438, -12.289861679077092 ], [ -76.875419616699105, -12.289861679077092 ], [ -76.875419616699105, -12.289581298828125 ], [ -76.875968933105412, -12.289584159851074 ], [ -76.875968933105412, -12.289305686950627 ], [ -76.87652587890625, -12.289305686950627 ], [ -76.87652587890625, -12.289028167724609 ], [ -76.877082824707031, -12.289028167724609 ], [ -76.877082824707031, -12.288748741149846 ], [ -76.877639770507812, -12.288748741149846 ], [ -76.877639770507812, -12.288471221923771 ], [ -76.877914428710938, -12.288471221923771 ], [ -76.877914428710938, -12.288195610046273 ], [ -76.878471374511605, -12.288195610046273 ], [ -76.878471374511605, -12.287915229797363 ], [ -76.879028320312443, -12.287915229797363 ], [ -76.879028320312443, -12.287639617919865 ], [ -76.879585266113224, -12.287639617919865 ], [ -76.879585266113224, -12.287359237670898 ], [ -76.880142211914062, -12.287361145019418 ], [ -76.880142211914062, -12.287082672119141 ], [ -76.880973815917969, -12.287082672119141 ], [ -76.880973815917969, -12.286803245544434 ], [ -76.881805419921818, -12.28680515289301 ], [ -76.881805419921818, -12.286526679992562 ], [ -76.882362365722599, -12.286526679992562 ], [ -76.882362365722599, -12.286249160766545 ], [ -76.883193969726562, -12.286249160766545 ], [ -76.883193969726562, -12.285972595214844 ], [ -76.884025573730469, -12.285972595214844 ], [ -76.884025573730469, -12.28569316864008 ], [ -76.884864807128906, -12.28569316864008 ], [ -76.884864807128906, -12.285416603088379 ], [ -76.885414123535099, -12.285416603088379 ], [ -76.885414123535099, -12.285137176513615 ], [ -76.886253356933594, -12.285139083862305 ], [ -76.886253356933594, -12.284860610961914 ], [ -76.886802673339844, -12.284860610961914 ], [ -76.886802673339844, -12.28458309173584 ], [ -76.887641906738281, -12.28458309173584 ], [ -76.887641906738281, -12.284304618835449 ], [ -76.888191223144474, -12.284304618835449 ], [ -76.888191223144474, -12.284027099609375 ], [ -76.889030456542912, -12.284027099609375 ], [ -76.889030456542912, -12.283748626708984 ], [ -76.889579772949219, -12.283748626708984 ], [ -76.889579772949219, -12.283471107482796 ], [ -76.89013671875, -12.283471107482796 ], [ -76.89013671875, -12.283194541931152 ], [ -76.890861511230412, -12.283194541931152 ], [ -76.890975952148438, -12.283194541931152 ], [ -76.890975952148438, -12.282917022705078 ], [ -76.891395568847656, -12.282917022705078 ], [ -76.891525268554631, -12.282917022705078 ], [ -76.891525268554631, -12.282638549804688 ], [ -76.891929626464844, -12.282638549804688 ], [ -76.892082214355412, -12.282638549804688 ], [ -76.892082214355412, -12.282361030578613 ], [ -76.892364501953068, -12.282361030578613 ], [ -76.892364501953068, -12.282082557678223 ], [ -76.892616271972656, -12.282082557678223 ], [ -76.892913818359375, -12.282082557678223 ], [ -76.892913818359375, -12.2818346023559 ], [ -76.893470764160156, -12.281805038452148 ], [ -76.893470764160156, -12.281526565551758 ], [ -76.893753051757812, -12.281526565551758 ], [ -76.893753051757812, -12.281249046325684 ], [ -76.894027709960938, -12.28125095367426 ], [ -76.894027709960938, -12.280973434448242 ], [ -76.894302368163949, -12.280973434448242 ], [ -76.894302368163949, -12.280693054199219 ], [ -76.894584655761662, -12.280694961547795 ], [ -76.894584655761662, -12.280417442321777 ], [ -76.894859313964787, -12.280417442321777 ], [ -76.894859313964787, -12.280153274536076 ], [ -76.895141601562443, -12.280138969421387 ], [ -76.895141601562443, -12.279861450195312 ], [ -76.895416259765568, -12.279861450195312 ], [ -76.895416259765568, -12.279582977294922 ], [ -76.89569091796875, -12.279582977294922 ], [ -76.89569091796875, -12.279305458068848 ], [ -76.895973205566406, -12.279305458068848 ], [ -76.895973205566406, -12.279026985168457 ], [ -76.896247863769531, -12.279028892517033 ], [ -76.896247863769531, -12.278751373290959 ], [ -76.896530151367188, -12.278751373290959 ], [ -76.896530151367188, -12.278470993041992 ], [ -76.896804809570312, -12.278472900390568 ], [ -76.896804809570312, -12.278195381164494 ], [ -76.897087097167969, -12.278195381164494 ], [ -76.897087097167969, -12.277916908264103 ], [ -76.897361755371094, -12.277916908264103 ], [ -76.897361755371094, -12.277639389038086 ], [ -76.897636413574162, -12.277639389038086 ], [ -76.897636413574162, -12.277360916137638 ], [ -76.897918701171818, -12.277360916137638 ], [ -76.897918701171818, -12.277083396911621 ], [ -76.898193359374943, -12.277083396911621 ], [ -76.898193359374943, -12.276806831359863 ], [ -76.898475646972599, -12.276806831359863 ], [ -76.898475646972599, -12.276526451110783 ], [ -76.898750305175724, -12.276526451110783 ], [ -76.898750305175724, -12.276250839233285 ], [ -76.899307250976562, -12.276250839233285 ], [ -76.899307250976562, -12.275973320007267 ], [ -76.899581909179688, -12.275973320007267 ], [ -76.899581909179688, -12.275694847106877 ], [ -76.899864196777344, -12.275694847106877 ], [ -76.899864196777344, -12.275417327880803 ], [ -76.900138854980469, -12.275417327880803 ], [ -76.900138854980469, -12.275137901306152 ], [ -76.900413513183594, -12.275137901306152 ], [ -76.900413513183594, -12.274860382080021 ], [ -76.900970458984318, -12.274860382080021 ], [ -76.900970458984318, -12.274581909179574 ], [ -76.901252746581974, -12.274581909179574 ], [ -76.901252746581974, -12.274304389953556 ], [ -76.901527404785099, -12.274304389953556 ], [ -76.901527404785099, -12.274028778076172 ], [ -76.901802062988224, -12.274028778076172 ], [ -76.901802062988224, -12.273750305175781 ], [ -76.902084350585938, -12.273750305175781 ], [ -76.902084350585938, -12.273471832275391 ], [ -76.902641296386719, -12.273471832275391 ], [ -76.902641296386719, -12.273194313049316 ], [ -76.902915954589844, -12.273194313049316 ], [ -76.902915954589844, -12.272915840148926 ], [ -76.903190612792969, -12.272915840148926 ], [ -76.9031982421875, -12.272638320922852 ], [ -76.903472900390625, -12.272638320922852 ], [ -76.903472900390625, -12.272359848022461 ], [ -76.904029846191293, -12.272359848022461 ], [ -76.904029846191293, -12.27208423614502 ], [ -76.904304504394474, -12.27208423614502 ], [ -76.904304504394474, -12.271805763244572 ], [ -76.904861450195256, -12.271805763244572 ], [ -76.904861450195256, -12.271528244018555 ], [ -76.905136108398438, -12.271528244018555 ], [ -76.905136108398438, -12.271249771118164 ], [ -76.905693054199219, -12.271249771118164 ], [ -76.905693054199219, -12.27097225189209 ], [ -76.905975341796875, -12.27097225189209 ], [ -76.905975341796875, -12.270693778991699 ], [ -76.90625, -12.270693778991699 ], [ -76.90625, -12.270416259765625 ], [ -76.906806945800781, -12.270416259765625 ], [ -76.906806945800781, -12.270137786865234 ], [ -76.907081604003793, -12.270137786865234 ], [ -76.907081604003793, -12.26986026763916 ], [ -76.907638549804631, -12.269862174987736 ], [ -76.907638549804631, -12.269583702087346 ], [ -76.907913208007756, -12.269583702087346 ], [ -76.907913208007756, -12.269304275512695 ], [ -76.908470153808594, -12.269306182861271 ], [ -76.908470153808594, -12.269027709960881 ], [ -76.90875244140625, -12.269027709960881 ], [ -76.90875244140625, -12.26874828338623 ], [ -76.909027099609375, -12.268750190734806 ], [ -76.909027099609375, -12.268471717834416 ], [ -76.909584045410156, -12.268471717834416 ], [ -76.909584045410156, -12.268194198608398 ], [ -76.909858703613281, -12.268194198608398 ], [ -76.909858703613281, -12.267915725707951 ], [ -76.910415649414006, -12.267915725707951 ], [ -76.910415649414006, -12.267640113830453 ], [ -76.910697937011662, -12.267640113830453 ], [ -76.910697937011662, -12.267359733581543 ], [ -76.911247253417912, -12.267359733581543 ], [ -76.911247253417912, -12.267084121704045 ], [ -76.911529541015568, -12.267084121704045 ], [ -76.911529541015568, -12.266805648803597 ], [ -76.91180419921875, -12.266805648803597 ], [ -76.91180419921875, -12.26652812957758 ], [ -76.912361145019531, -12.26652812957758 ], [ -76.912361145019531, -12.266249656677189 ], [ -76.912635803222656, -12.266249656677189 ], [ -76.912635803222656, -12.265969276428223 ], [ -76.912918090820312, -12.265972137451115 ], [ -76.912918090820312, -12.265693664550724 ], [ -76.913192749023438, -12.265693664550724 ], [ -76.913192749023438, -12.26541614532465 ], [ -76.913749694824162, -12.26541805267334 ], [ -76.913749694824162, -12.26513767242426 ], [ -76.914024353027287, -12.26513767242426 ], [ -76.914024353027287, -12.264860153198242 ], [ -76.914306640624943, -12.264862060546875 ], [ -76.914306640624943, -12.264583587646484 ], [ -76.914863586425781, -12.264583587646484 ], [ -76.914863586425781, -12.264303207397404 ], [ -76.915138244628906, -12.264306068420296 ], [ -76.915138244628906, -12.26402759552002 ], [ -76.915412902832031, -12.26402759552002 ], [ -76.915412902832031, -12.263778686523381 ], [ -76.915969848632812, -12.263750076293888 ], [ -76.915969848632812, -12.263471603393441 ], [ -76.916252136230469, -12.263471603393441 ], [ -76.916252136230469, -12.263194084167424 ], [ -76.916526794433594, -12.263194084167424 ], [ -76.916526794433594, -12.262914657592773 ], [ -76.916809082031136, -12.262914657592773 ], [ -76.916809082031136, -12.262666702270508 ], [ -76.917358398437443, -12.262639999389648 ], [ -76.917358398437443, -12.262361526489258 ], [ -76.917640686035099, -12.262361526489258 ], [ -76.917640686035099, -12.262081146240178 ], [ -76.917915344238281, -12.262084007263184 ], [ -76.917915344238281, -12.261805534362793 ], [ -76.918472290039062, -12.261805534362793 ], [ -76.918472290039062, -12.261527061462402 ], [ -76.918746948242188, -12.261527061462402 ], [ -76.918746948242188, -12.261248588562012 ], [ -76.919029235839844, -12.261248588562012 ], [ -76.919029235839844, -12.261098861694336 ], [ -76.919029235839844, -12.260971069335938 ], [ -76.91925048828125, -12.260971069335938 ], [ -76.919586181640625, -12.260971069335938 ], [ -76.919586181640625, -12.260696411132812 ], [ -76.919723510742188, -12.260696411132812 ], [ -76.919860839843636, -12.260696411132812 ], [ -76.919860839843636, -12.260415077209473 ], [ -76.920135498046818, -12.260417938232422 ], [ -76.920135498046818, -12.260139465332031 ], [ -76.920417785644474, -12.260139465332031 ], [ -76.920417785644474, -12.259859085083008 ], [ -76.920974731445256, -12.259860992431584 ], [ -76.920974731445256, -12.259583473205566 ], [ -76.921249389648438, -12.259583473205566 ], [ -76.921249389648438, -12.259305000305176 ], [ -76.921524047851562, -12.259305000305176 ], [ -76.921524047851562, -12.259026527404728 ], [ -76.922080993652344, -12.259026527404728 ], [ -76.922080993652344, -12.258749008178711 ], [ -76.92236328125, -12.258749008178711 ], [ -76.92236328125, -12.258473396301213 ], [ -76.922920227050781, -12.258473396301213 ], [ -76.922920227050781, -12.258193016052246 ], [ -76.923194885253849, -12.258193016052246 ], [ -76.923194885253849, -12.257917404174748 ], [ -76.923751831054631, -12.257917404174748 ], [ -76.923751831054631, -12.257637023925781 ], [ -76.924026489257756, -12.257638931274357 ], [ -76.924026489257756, -12.257361412048283 ], [ -76.924583435058594, -12.257361412048283 ], [ -76.924583435058594, -12.257081031799316 ], [ -76.924858093261719, -12.257082939147892 ], [ -76.924858093261719, -12.256805419921818 ], [ -76.925300598144531, -12.256805419921818 ], [ -76.9254150390625, -12.256805419921818 ], [ -76.9254150390625, -12.256526947021428 ], [ -76.925697326660156, -12.256526947021428 ], [ -76.925697326660156, -12.256251335144043 ], [ -76.926071166992188, -12.256251335144043 ], [ -76.926246643066349, -12.256251335144043 ], [ -76.926246643066349, -12.256146430969238 ], [ -76.926246643066349, -12.255970954894963 ], [ -76.926528930664006, -12.255970954894963 ], [ -76.926528930664006, -12.255695343017464 ], [ -76.927085876464787, -12.255695343017464 ], [ -76.927085876464787, -12.255416870117188 ], [ -76.927360534667912, -12.255416870117188 ], [ -76.927360534667912, -12.255139350891056 ], [ -76.92791748046875, -12.255139350891056 ], [ -76.92791748046875, -12.254860877990609 ], [ -76.928192138671875, -12.254860877990609 ], [ -76.928192138671875, -12.254583358764592 ], [ -76.928749084472656, -12.254583358764592 ], [ -76.928749084472656, -12.254304885864201 ], [ -76.929031372070312, -12.254304885864201 ], [ -76.929031372070312, -12.254027366638127 ], [ -76.929580688476506, -12.254027366638127 ], [ -76.929580688476506, -12.253748893737736 ], [ -76.929862976074162, -12.253748893737736 ], [ -76.929862976074162, -12.253473281860352 ], [ -76.930419921874943, -12.253473281860352 ], [ -76.930419921874943, -12.253194808959961 ], [ -76.930694580078125, -12.253194808959961 ], [ -76.930694580078125, -12.252917289733887 ], [ -76.93111419677723, -12.252917289733887 ], [ -76.931251525878906, -12.252917289733887 ], [ -76.931251525878906, -12.252796173095703 ], [ -76.931251525878906, -12.252638816833496 ], [ -76.931526184082031, -12.252638816833496 ], [ -76.931526184082031, -12.252361297607308 ], [ -76.931755065917912, -12.252361297607308 ], [ -76.932083129882812, -12.252361297607308 ], [ -76.932083129882812, -12.252082824707031 ], [ -76.932357788085938, -12.252082824707031 ], [ -76.932357788085938, -12.2518053054809 ], [ -76.932708740234318, -12.2518053054809 ], [ -76.932914733886662, -12.2518053054809 ], [ -76.932914733886662, -12.251694679260197 ], [ -76.932914733886662, -12.251528739929199 ], [ -76.933197021484318, -12.251528739929199 ], [ -76.933197021484318, -12.251251220703125 ], [ -76.933746337890625, -12.251251220703125 ], [ -76.933746337890625, -12.250972747802734 ], [ -76.934028625488281, -12.250972747802734 ], [ -76.934028625488281, -12.25069522857666 ], [ -76.934585571289062, -12.25069522857666 ], [ -76.934585571289062, -12.25041675567627 ], [ -76.934860229492188, -12.25041675567627 ], [ -76.934860229492188, -12.250139236450195 ], [ -76.935417175292969, -12.250139236450195 ], [ -76.935417175292969, -12.249860763549805 ], [ -76.93569183349598, -12.249860763549805 ], [ -76.93569183349598, -12.24958324432373 ], [ -76.936248779296818, -12.24958324432373 ], [ -76.936248779296818, -12.249306678771916 ], [ -76.936531066894474, -12.249306678771916 ], [ -76.936531066894474, -12.249468803405705 ], [ -76.936531066894474, -12.250139236450195 ], [ -76.936805725097599, -12.250136375427189 ], [ -76.936805725097599, -12.25069522857666 ], [ -76.937080383300781, -12.25069522857666 ], [ -76.937080383300781, -12.251251220703125 ], [ -76.937362670898438, -12.251251220703125 ], [ -76.937362670898438, -12.2518053054809 ], [ -76.937637329101562, -12.2518053054809 ], [ -76.937637329101562, -12.252361297607308 ], [ -76.937919616699219, -12.252361297607308 ], [ -76.937919616699219, -12.252638816833496 ], [ -76.938194274902344, -12.252638816833496 ], [ -76.938194274902344, -12.253194808959961 ], [ -76.938468933105469, -12.253194808959961 ], [ -76.938468933105469, -12.253748893737736 ], [ -76.938751220703125, -12.253748893737736 ], [ -76.938751220703125, -12.254304885864201 ], [ -76.939025878906193, -12.254304885864201 ], [ -76.939025878906193, -12.254583358764592 ], [ -76.939308166503849, -12.254583358764592 ], [ -76.939308166503849, -12.254304885864201 ], [ -76.939582824706974, -12.254304885864201 ], [ -76.939582824706974, -12.253194808959961 ], [ -76.939308166503849, -12.253194808959961 ], [ -76.939308166503849, -12.252638816833496 ], [ -76.939025878906193, -12.252638816833496 ], [ -76.939025878906193, -12.252082824707031 ], [ -76.938751220703125, -12.252082824707031 ], [ -76.938751220703125, -12.2518053054809 ], [ -76.938468933105469, -12.2518053054809 ], [ -76.938468933105469, -12.250972747802734 ], [ -76.938194274902344, -12.250972747802734 ], [ -76.938194274902344, -12.250136375427189 ], [ -76.937919616699219, -12.250136375427189 ], [ -76.937919616699219, -12.24958324432373 ], [ -76.937637329101562, -12.24958324432373 ], [ -76.937637329101562, -12.249026298522949 ], [ -76.937362670898438, -12.249029159545898 ], [ -76.937362670898438, -12.248473167419434 ], [ -76.937919616699219, -12.248473167419434 ], [ -76.937919616699219, -12.248194694519043 ], [ -76.938194274902344, -12.248194694519043 ], [ -76.938194274902344, -12.24791431427002 ], [ -76.938751220703125, -12.247916221618596 ], [ -76.938751220703125, -12.247637748718205 ], [ -76.939308166503849, -12.247637748718205 ], [ -76.939308166503849, -12.247360229492188 ], [ -76.939857482910099, -12.247360229492188 ], [ -76.939857482910099, -12.247084617614689 ], [ -76.940414428710938, -12.247084617614689 ], [ -76.940414428710938, -12.246804237365723 ], [ -76.940971374511719, -12.246804237365723 ], [ -76.940971374511719, -12.246527671813965 ], [ -76.941253662109375, -12.246527671813965 ], [ -76.941253662109375, -12.246248245239258 ], [ -76.941802978515625, -12.246250152587834 ], [ -76.941802978515625, -12.245971679687386 ], [ -76.942359924316349, -12.245971679687386 ], [ -76.942359924316349, -12.245694160461369 ], [ -76.942916870117131, -12.245694160461369 ], [ -76.942916870117131, -12.245415687560978 ], [ -76.943473815917969, -12.245415687560978 ], [ -76.943473815917969, -12.245138168334904 ], [ -76.944305419921875, -12.245138168334904 ], [ -76.944305419921875, -12.244859695434513 ], [ -76.944862365722656, -12.244859695434513 ], [ -76.944862365722656, -12.244582176208439 ], [ -76.945419311523324, -12.244582176208439 ], [ -76.945419311523324, -12.244305610656738 ], [ -76.946250915527287, -12.244305610656738 ], [ -76.946250915527287, -12.244028091430664 ], [ -76.946807861328125, -12.244028091430664 ], [ -76.946807861328125, -12.243749618530273 ], [ -76.947639465332031, -12.243749618530273 ], [ -76.947639465332031, -12.243472099304199 ], [ -76.948196411132812, -12.243472099304199 ], [ -76.948196411132812, -12.243193626403809 ], [ -76.948753356933537, -12.243193626403809 ], [ -76.948753356933537, -12.242916107177621 ], [ -76.949584960937443, -12.242916107177621 ], [ -76.949584960937443, -12.242637634277344 ], [ -76.950141906738281, -12.242637634277344 ], [ -76.950141906738281, -12.242360115051213 ], [ -76.950691223144531, -12.242360115051213 ], [ -76.950691223144531, -12.242083549499512 ], [ -76.951286315917969, -12.242083549499512 ], [ -76.951530456542969, -12.242083549499512 ], [ -76.951530456542969, -12.241960525512695 ], [ -76.951530456542969, -12.241806030273438 ], [ -76.95184326171875, -12.241806030273438 ], [ -76.952079772949162, -12.241806030273438 ], [ -76.952079772949162, -12.241653442382756 ], [ -76.952079772949162, -12.241527557373047 ], [ -76.952262878417912, -12.241527557373047 ], [ -76.952636718749943, -12.241527557373047 ], [ -76.952636718749943, -12.241274833679086 ], [ -76.953193664550781, -12.241250038146973 ], [ -76.953193664550781, -12.240971565246582 ], [ -76.953750610351562, -12.240971565246582 ], [ -76.953750610351562, -12.240694046020508 ], [ -76.954307556152344, -12.240694046020508 ], [ -76.954307556152344, -12.240525245666447 ], [ -76.954307556152344, -12.240415573120117 ], [ -76.954673767089844, -12.240415573120117 ], [ -76.955139160156193, -12.240415573120117 ], [ -76.955139160156193, -12.240172386169434 ], [ -76.955696105956974, -12.240139961242619 ], [ -76.955696105956974, -12.239862442016602 ], [ -76.956253051757812, -12.239862442016602 ], [ -76.956253051757812, -12.239588737487793 ], [ -76.956802368164062, -12.239583969116211 ], [ -76.956802368164062, -12.239306449890137 ], [ -76.957359313964844, -12.239306449890137 ], [ -76.957359313964844, -12.239027976989746 ], [ -76.957916259765625, -12.239027976989746 ], [ -76.957916259765625, -12.238750457763672 ], [ -76.958473205566349, -12.238750457763672 ], [ -76.958473205566349, -12.238578796386719 ], [ -76.958473205566349, -12.238471984863281 ], [ -76.958747863769474, -12.238471984863281 ], [ -76.958747863769474, -12.238194465637207 ], [ -76.959304809570312, -12.238194465637207 ], [ -76.959304809570312, -12.237915992736816 ], [ -76.959587097167969, -12.237917900085392 ], [ -76.959587097167969, -12.237638473510742 ], [ -76.960136413574219, -12.237638473510742 ], [ -76.960136413574219, -12.237360000610352 ], [ -76.960693359375, -12.237361907958928 ], [ -76.960693359375, -12.23708438873291 ], [ -76.961502075195256, -12.23708438873291 ], [ -76.961524963378849, -12.236805915832463 ], [ -76.962081909179631, -12.236805915832463 ], [ -76.962081909179631, -12.236528396606445 ], [ -76.962638854980469, -12.236528396606445 ], [ -76.962638854980469, -12.236249923706055 ], [ -76.963470458984375, -12.236249923706055 ], [ -76.963470458984375, -12.23597240447998 ], [ -76.964302062988168, -12.23597240447998 ], [ -76.964302062988168, -12.235695838928109 ], [ -76.964836120605469, -12.235695838928109 ], [ -76.965141296386662, -12.235695838928109 ], [ -76.965141296386662, -12.235520362854004 ], [ -76.965141296386662, -12.235415458679199 ], [ -76.965332031249943, -12.235415458679199 ], [ -76.965690612792969, -12.235415458679199 ], [ -76.965698242187443, -12.235139846801701 ], [ -76.965827941894418, -12.235139846801701 ], [ -76.96624755859375, -12.235139846801701 ], [ -76.96624755859375, -12.234862327575627 ], [ -76.966804504394531, -12.234862327575627 ], [ -76.966804504394531, -12.234589576721191 ], [ -76.967361450195312, -12.234583854675236 ], [ -76.967361450195312, -12.234305381774846 ], [ -76.967918395996037, -12.234305381774846 ], [ -76.967918395996037, -12.234026908874398 ], [ -76.968170166015625, -12.234026908874398 ], [ -76.968475341796818, -12.234026908874398 ], [ -76.968475341796818, -12.233872413635197 ], [ -76.968475341796818, -12.233749389648381 ], [ -76.968711853027344, -12.233749389648381 ], [ -76.969306945800781, -12.233749389648381 ], [ -76.969306945800781, -12.23347091674799 ], [ -76.969863891601562, -12.23347091674799 ], [ -76.969863891601562, -12.233193397521916 ], [ -76.970413208007812, -12.233193397521916 ], [ -76.970413208007812, -12.232916831970215 ], [ -76.970634460449219, -12.232916831970215 ], [ -76.970970153808537, -12.232916831970215 ], [ -76.970970153808537, -12.232810020446777 ], [ -76.970970153808537, -12.232639312744141 ], [ -76.971527099609318, -12.232639312744141 ], [ -76.971527099609318, -12.23236083984375 ], [ -76.972084045410156, -12.23236083984375 ], [ -76.972084045410156, -12.232083320617676 ], [ -76.972640991210938, -12.232083320617676 ], [ -76.972640991210938, -12.231804847717285 ], [ -76.973197937011719, -12.231804847717285 ], [ -76.973197937011719, -12.231527328491211 ], [ -76.973747253417969, -12.231527328491211 ], [ -76.973747253417969, -12.23124885559082 ], [ -76.974082946777344, -12.23124885559082 ], [ -76.974304199218693, -12.23124885559082 ], [ -76.974304199218693, -12.230973243713379 ], [ -76.975135803222656, -12.230973243713379 ], [ -76.975135803222656, -12.230694770812988 ], [ -76.975692749023438, -12.230694770812988 ], [ -76.975692749023438, -12.230417251586914 ], [ -76.976249694824219, -12.230417251586914 ], [ -76.976249694824219, -12.230138778686523 ], [ -76.976806640625, -12.230138778686523 ], [ -76.976806640625, -12.229861259460449 ], [ -76.977363586425724, -12.229861259460449 ], [ -76.977363586425724, -12.229582786560059 ], [ -76.978195190429631, -12.229582786560059 ], [ -76.978195190429631, -12.229305267333984 ], [ -76.978752136230469, -12.229305267333984 ], [ -76.978752136230469, -12.229026794433594 ], [ -76.97930908203125, -12.229026794433594 ], [ -76.97930908203125, -12.22874927520752 ], [ -76.9798583984375, -12.228751182556096 ], [ -76.9798583984375, -12.228470802307129 ], [ -76.980697631835881, -12.228470802307129 ], [ -76.980697631835881, -12.228193283081055 ], [ -76.981246948242131, -12.228195190429631 ], [ -76.981246948242131, -12.22791671752924 ], [ -76.982086181640625, -12.22791671752924 ], [ -76.982086181640625, -12.227639198303223 ], [ -76.982635498046875, -12.227639198303223 ], [ -76.982635498046875, -12.227360725402775 ], [ -76.983474731445312, -12.227360725402775 ], [ -76.983474731445312, -12.227083206176758 ], [ -76.984024047851506, -12.227083206176758 ], [ -76.984024047851506, -12.226804733276367 ], [ -76.98486328125, -12.226804733276367 ], [ -76.98486328125, -12.226529121398869 ], [ -76.985420227050781, -12.226529121398869 ], [ -76.985420227050781, -12.226248741149902 ], [ -76.986061096191406, -12.226248741149902 ], [ -76.986251831054688, -12.226248741149902 ], [ -76.986251831054688, -12.226141929626465 ], [ -76.986251831054688, -12.225973129272404 ], [ -76.986557006835938, -12.225973129272404 ], [ -76.986808776855355, -12.225973129272404 ], [ -76.986808776855355, -12.225829124450684 ], [ -76.986808776855355, -12.225694656372013 ], [ -76.987052917480469, -12.225694656372013 ], [ -76.987358093261662, -12.225694656372013 ], [ -76.987358093261662, -12.225523948669377 ], [ -76.987358093261662, -12.225415229797363 ], [ -76.987548828124943, -12.225415229797363 ], [ -76.9879150390625, -12.225417137145939 ], [ -76.9879150390625, -12.225138664245549 ], [ -76.988121032714787, -12.225138664245549 ], [ -76.988197326660156, -12.225138664245549 ], [ -76.988197326660156, -12.224858283996582 ], [ -76.988746643066406, -12.224861145019474 ], [ -76.988746643066406, -12.224582672119084 ], [ -76.989303588867188, -12.224582672119084 ], [ -76.989303588867188, -12.224302291870117 ], [ -76.989860534667855, -12.224305152893066 ], [ -76.989860534667855, -12.224026679992619 ], [ -76.990135192871037, -12.224026679992619 ], [ -76.990135192871037, -12.223749160766602 ], [ -76.990692138671818, -12.223751068115121 ], [ -76.990692138671818, -12.223472595214844 ], [ -76.991249084472656, -12.223472595214844 ], [ -76.991249084472656, -12.223192214965763 ], [ -76.992080688476562, -12.223195075988713 ], [ -76.992080688476562, -12.222916603088265 ], [ -76.992637634277344, -12.222916603088265 ], [ -76.992637634277344, -12.222639083862248 ], [ -76.993469238281193, -12.222639083862248 ], [ -76.993469238281193, -12.222360610961857 ], [ -76.994026184081974, -12.222360610961857 ], [ -76.994026184081974, -12.22208213806141 ], [ -76.994583129882812, -12.22208213806141 ], [ -76.994583129882812, -12.221806526184082 ], [ -76.995414733886719, -12.221806526184082 ], [ -76.995414733886719, -12.221526145935002 ], [ -76.9959716796875, -12.221529006958008 ], [ -76.9959716796875, -12.221250534057617 ], [ -76.997283935546818, -12.221250534057617 ], [ -76.999862670898381, -12.221250534057617 ], [ -76.999862670898381, -12.221529006958008 ], [ -77.000137329101506, -12.221529006958008 ], [ -77.000137329101506, -12.221250534057617 ], [ -77.000694274902344, -12.221250534057617 ], [ -77.000694274902344, -12.220970153808537 ], [ -77.00152587890625, -12.220973014831543 ], [ -77.00152587890625, -12.220693588256836 ], [ -77.001808166503906, -12.220693588256836 ], [ -77.001808166503906, -12.220416069030762 ], [ -77.002914428710881, -12.220416069030762 ], [ -77.002914428710881, -12.220137596130371 ], [ -77.004302978515625, -12.220137596130371 ], [ -77.004302978515625, -12.219860076904297 ], [ -77.004859924316406, -12.219860076904297 ], [ -77.004859924316406, -12.219585418701172 ], [ -77.005416870117188, -12.219585418701172 ], [ -77.005416870117188, -12.219304084777832 ], [ -77.005973815917912, -12.219305992126408 ], [ -77.005973815917912, -12.219028472900391 ], [ -77.006805419921818, -12.219028472900391 ], [ -77.006805419921818, -12.218748092651367 ], [ -77.007362365722656, -12.21875 ], [ -77.007362365722656, -12.218471527099553 ], [ -77.007919311523438, -12.218471527099553 ], [ -77.007919311523438, -12.218192100524789 ], [ -77.008468627929688, -12.218194007873535 ], [ -77.008468627929688, -12.217915534973145 ], [ -77.009025573730412, -12.217915534973145 ], [ -77.009025573730412, -12.21763801574707 ], [ -77.009582519531193, -12.21763801574707 ], [ -77.009582519531193, -12.217362403869572 ], [ -77.010139465331974, -12.217362403869572 ], [ -77.010139465331974, -12.217082023620605 ], [ -77.010696411132812, -12.217082023620605 ], [ -77.010696411132812, -12.216806411743107 ], [ -77.011528015136719, -12.216806411743107 ], [ -77.011528015136719, -12.216526031494141 ], [ -77.0120849609375, -12.216527938842717 ], [ -77.0120849609375, -12.216250419616642 ], [ -77.012641906738224, -12.216250419616642 ], [ -77.012641906738224, -12.215971946716252 ], [ -77.013191223144474, -12.215971946716252 ], [ -77.013191223144474, -12.215694427490234 ], [ -77.013748168945312, -12.215694427490234 ], [ -77.013748168945312, -12.215415954589787 ], [ -77.014305114746094, -12.215415954589787 ], [ -77.014305114746094, -12.21513843536377 ], [ -77.014862060546875, -12.21513843536377 ], [ -77.014862060546875, -12.214859962463379 ], [ -77.015419006347543, -12.214859962463379 ], [ -77.015419006347543, -12.214584350585881 ], [ -77.016250610351506, -12.214584350585881 ], [ -77.016250610351506, -12.214305877685433 ], [ -77.016807556152344, -12.214305877685433 ], [ -77.016807556152344, -12.214028358459416 ], [ -77.01763916015625, -12.214028358459416 ], [ -77.01763916015625, -12.213749885559025 ], [ -77.018196105957031, -12.213749885559025 ], [ -77.018196105957031, -12.213472366332951 ], [ -77.019027709960881, -12.213472366332951 ], [ -77.019027709960881, -12.21319389343256 ], [ -77.019584655761662, -12.21319389343256 ], [ -77.019584655761662, -12.212916374206486 ], [ -77.0201416015625, -12.212916374206486 ], [ -77.0201416015625, -12.212637901306096 ], [ -77.02069091796875, -12.212637901306096 ], [ -77.02069091796875, -12.212362289428711 ], [ -77.021247863769531, -12.212362289428711 ], [ -77.021247863769531, -12.21208381652832 ], [ -77.021530151367188, -12.21208381652832 ], [ -77.021530151367188, -12.211806297302132 ], [ -77.022636413574162, -12.211806297302132 ], [ -77.022636413574162, -12.211527824401855 ], [ -77.023475646972656, -12.211527824401855 ], [ -77.023475646972656, -12.211250305175724 ], [ -77.024024963378906, -12.211250305175724 ], [ -77.024024963378906, -12.210971832275277 ], [ -77.024864196777344, -12.210971832275277 ], [ -77.024864196777344, -12.21069431304926 ], [ -77.025413513183537, -12.21069431304926 ], [ -77.025413513183537, -12.210417747497559 ], [ -77.025970458984318, -12.210417747497559 ], [ -77.025970458984318, -12.210140228271484 ], [ -77.026527404785156, -12.210140228271484 ], [ -77.026527404785156, -12.209861755371094 ], [ -77.027084350585938, -12.209861755371094 ], [ -77.027084350585938, -12.20958423614502 ], [ -77.027236938476506, -12.20958423614502 ], [ -77.027359008789062, -12.20958423614502 ], [ -77.027359008789062, -12.209305763244629 ], [ -77.027908325195256, -12.209305763244629 ], [ -77.027915954589844, -12.209028244018555 ], [ -77.028472900390568, -12.209028244018555 ], [ -77.028472900390568, -12.208749771118164 ], [ -77.029251098632812, -12.208749771118164 ], [ -77.029304504394531, -12.208471298217773 ], [ -77.029922485351562, -12.208471298217773 ], [ -77.030136108398438, -12.208471298217773 ], [ -77.030136108398438, -12.208195686340275 ], [ -77.030693054199219, -12.208195686340275 ], [ -77.030693054199219, -12.207915306091309 ], [ -77.031265258789062, -12.207915306091309 ], [ -77.031524658203068, -12.207915306091309 ], [ -77.031524658203068, -12.20781135559082 ], [ -77.031524658203068, -12.207639694213867 ], [ -77.031982421874943, -12.207639694213867 ], [ -77.03375244140625, -12.207639694213867 ], [ -77.03375244140625, -12.207915306091309 ], [ -77.034301757812386, -12.207915306091309 ], [ -77.034301757812386, -12.207639694213867 ], [ -77.034477233886662, -12.207639694213867 ], [ -77.034652709960881, -12.207639694213867 ], [ -77.035140991210881, -12.207639694213867 ], [ -77.035140991210881, -12.207359313964844 ], [ -77.035697937011662, -12.207362174987793 ], [ -77.035697937011662, -12.207082748413029 ], [ -77.036529541015625, -12.207082748413029 ], [ -77.036529541015625, -12.206803321838379 ], [ -77.037086486816406, -12.206805229187012 ], [ -77.037086486816406, -12.206526756286564 ], [ -77.038124084472656, -12.206526756286564 ], [ -77.038475036621037, -12.206526756286564 ], [ -77.038475036621037, -12.206805229187012 ], [ -77.039306640625, -12.206805229187012 ], [ -77.039306640625, -12.204304695129338 ], [ -77.038749694824162, -12.204304695129338 ], [ -77.038749694824162, -12.204027175903263 ], [ -77.038475036621037, -12.204027175903263 ], [ -77.038475036621037, -12.203748703002873 ], [ -77.038192749023381, -12.203748703002873 ], [ -77.038192749023381, -12.203471183776799 ], [ -77.037918090820256, -12.203471183776799 ], [ -77.037918090820256, -12.202917098999023 ], [ -77.037635803222599, -12.202917098999023 ], [ -77.037635803222599, -12.202638626098633 ], [ -77.037361145019531, -12.202638626098633 ], [ -77.037361145019531, -12.202082633972168 ], [ -77.03680419921875, -12.202082633972168 ], [ -77.03680419921875, -12.201805114746037 ], [ -77.036247253417969, -12.201805114746037 ], [ -77.036247253417969, -12.201526641845589 ], [ -77.035697937011662, -12.201526641845589 ], [ -77.035697937011662, -12.201249122619572 ], [ -77.035415649414006, -12.201249122619572 ], [ -77.035415649414006, -12.200693130493107 ], [ -77.035140991210881, -12.200693130493107 ], [ -77.035140991210881, -12.200139045715332 ], [ -77.034858703613224, -12.200139045715332 ], [ -77.034858703613224, -12.198946952819824 ], [ -77.034858703613224, -12.198195457458496 ], [ -77.035140991210881, -12.198195457458496 ], [ -77.035140991210881, -12.197639465332031 ], [ -77.035415649414006, -12.197639465332031 ], [ -77.035415649414006, -12.197360992431641 ], [ -77.035560607910156, -12.197360992431641 ], [ -77.035697937011662, -12.197360992431641 ], [ -77.035697937011662, -12.197196960449219 ], [ -77.035697937011662, -12.196805000305176 ], [ -77.035972595214844, -12.196806907653752 ], [ -77.035972595214844, -12.196526527404785 ], [ -77.036247253417969, -12.196526527404785 ], [ -77.036247253417969, -12.196248054504395 ], [ -77.036529541015625, -12.196250915527287 ], [ -77.036529541015625, -12.19597339630127 ], [ -77.03680419921875, -12.19597339630127 ], [ -77.03680419921875, -12.19569206237793 ], [ -77.037086486816406, -12.19569206237793 ], [ -77.037086486816406, -12.195138931274414 ], [ -77.037361145019531, -12.195138931274414 ], [ -77.037361145019531, -12.194860458374023 ], [ -77.037635803222599, -12.194860458374023 ], [ -77.037635803222599, -12.194581985473576 ], [ -77.037918090820256, -12.194581985473576 ], [ -77.037918090820256, -12.194304466247559 ], [ -77.038749694824162, -12.194304466247559 ], [ -77.038749694824162, -12.194025993347168 ], [ -77.039581298828125, -12.19402885437006 ], [ -77.039581298828125, -12.193751335143986 ], [ -77.039863586425781, -12.193751335143986 ], [ -77.039863586425781, -12.193194389343205 ], [ -77.040138244628906, -12.193194389343205 ], [ -77.040138244628906, -12.192915916442814 ], [ -77.039863586425781, -12.192915916442814 ], [ -77.039863586425781, -12.192359924316349 ], [ -77.039581298828125, -12.192359924316349 ], [ -77.039581298828125, -12.192084312438965 ], [ -77.039306640625, -12.192084312438965 ], [ -77.039306640625, -12.191970825195256 ], [ -77.039306640625, -12.1915283203125 ], [ -77.039024353027344, -12.1915283203125 ], [ -77.039024353027344, -12.191249847412109 ], [ -77.038749694824162, -12.191249847412109 ], [ -77.038749694824162, -12.190693855285645 ], [ -77.038475036621037, -12.190693855285645 ], [ -77.038475036621037, -12.189027786254883 ], [ -77.038749694824162, -12.189027786254883 ], [ -77.038749694824162, -12.188750267028809 ], [ -77.039024353027344, -12.188750267028809 ], [ -77.039024353027344, -12.188194274902344 ], [ -77.039306640625, -12.188194274902344 ], [ -77.039306640625, -12.187168121337891 ], [ -77.039306640625, -12.186249732971191 ], [ -77.039024353027344, -12.186249732971191 ], [ -77.039024353027344, -12.185762405395508 ], [ -77.039024353027344, -12.185137748718262 ], [ -77.038749694824162, -12.185137748718262 ], [ -77.038749694824162, -12.184583663940373 ], [ -77.039024353027344, -12.184583663940373 ], [ -77.039024353027344, -12.183747291564941 ], [ -77.039306640625, -12.183750152587891 ], [ -77.039306640625, -12.183194160461426 ], [ -77.039581298828125, -12.183194160461426 ], [ -77.039581298828125, -12.182361602783089 ], [ -77.039863586425781, -12.182361602783089 ], [ -77.039863586425781, -12.181248664855957 ], [ -77.039581298828125, -12.181248664855957 ], [ -77.039581298828125, -12.180695533752441 ], [ -77.039024353027344, -12.180695533752441 ], [ -77.039024353027344, -12.180415153503361 ], [ -77.038192749023381, -12.180418014526367 ], [ -77.038192749023381, -12.180139541625977 ], [ -77.037635803222599, -12.180139541625977 ], [ -77.037635803222599, -12.179859161376896 ], [ -77.037086486816406, -12.179861068725586 ], [ -77.037086486816406, -12.179582595825195 ], [ -77.036529541015625, -12.179582595825195 ], [ -77.036529541015625, -12.179305076599121 ], [ -77.035972595214844, -12.179305076599121 ], [ -77.035972595214844, -12.17902660369873 ], [ -77.035415649414006, -12.17902660369873 ], [ -77.035415649414006, -12.178749084472656 ], [ -77.035140991210881, -12.178749084472656 ], [ -77.035140991210881, -12.178473472595215 ], [ -77.034858703613224, -12.178473472595215 ], [ -77.034858703613224, -12.178193092346191 ], [ -77.034584045410099, -12.178193092346191 ], [ -77.034584045410099, -12.177916526794377 ], [ -77.034301757812386, -12.177916526794377 ], [ -77.034301757812386, -12.177637100219613 ], [ -77.034027099609375, -12.177639007568359 ], [ -77.034027099609375, -12.175784111022949 ], [ -77.034027099609375, -12.174583435058594 ], [ -77.034301757812386, -12.174583435058594 ], [ -77.034301757812386, -12.17347335815424 ], [ -77.034584045410099, -12.17347335815424 ], [ -77.034584045410099, -12.173194885253849 ], [ -77.034858703613224, -12.173194885253849 ], [ -77.034858703613224, -12.172917366027775 ], [ -77.035140991210881, -12.172917366027775 ], [ -77.035140991210881, -12.172638893127385 ], [ -77.035415649414006, -12.172638893127385 ], [ -77.035415649414006, -12.17236137390131 ], [ -77.035614013671818, -12.17236137390131 ], [ -77.035697937011662, -12.17236137390131 ], [ -77.035697937011662, -12.17208290100092 ], [ -77.035972595214844, -12.17208290100092 ], [ -77.035972595214844, -12.171805381774902 ], [ -77.036247253417969, -12.171805381774902 ], [ -77.036247253417969, -12.171661376953068 ], [ -77.036247253417969, -12.171528816223145 ], [ -77.036529541015625, -12.171528816223145 ], [ -77.036529541015625, -12.17097282409668 ], [ -77.03680419921875, -12.17097282409668 ], [ -77.03680419921875, -12.170695304870549 ], [ -77.037086486816406, -12.170695304870549 ], [ -77.037086486816406, -12.170364379882812 ], [ -77.037086486816406, -12.169860839843693 ], [ -77.037361145019531, -12.169860839843693 ], [ -77.037361145019531, -12.169583320617619 ], [ -77.037635803222599, -12.169583320617619 ], [ -77.037635803222599, -12.169306755065918 ], [ -77.037918090820256, -12.169306755065918 ], [ -77.037918090820256, -12.168750762939453 ], [ -77.038192749023381, -12.168750762939453 ], [ -77.038192749023381, -12.168473243713379 ], [ -77.038475036621037, -12.168473243713379 ], [ -77.038475036621037, -12.166528701782227 ], [ -77.036247253417969, -12.166528701782227 ], [ -77.036247253417969, -12.166248321533203 ], [ -77.035972595214844, -12.166248321533203 ], [ -77.035972595214844, -12.165694236755371 ], [ -77.035697937011662, -12.165694236755371 ], [ -77.035697937011662, -12.16541576385498 ], [ -77.035415649414006, -12.16541576385498 ], [ -77.035415649414006, -12.165138244628906 ], [ -77.035140991210881, -12.165138244628906 ], [ -77.035140991210881, -12.164859771728516 ], [ -77.033195495605469, -12.164859771728516 ], [ -77.033195495605469, -12.164582252502441 ], [ -77.032638549804688, -12.164582252502441 ], [ -77.032638549804688, -12.164305686950627 ], [ -77.032363891601506, -12.164305686950627 ], [ -77.032363891601506, -12.164028167724553 ], [ -77.031806945800724, -12.164028167724553 ], [ -77.031806945800724, -12.163749694824162 ], [ -77.030693054199219, -12.163749694824162 ], [ -77.030693054199219, -12.163472175598088 ], [ -77.030418395996094, -12.163472175598088 ], [ -77.030418395996094, -12.163749694824162 ], [ -77.030136108398438, -12.163749694824162 ], [ -77.030136108398438, -12.164028167724553 ], [ -77.029861450195312, -12.164028167724553 ], [ -77.029861450195312, -12.164582252502441 ], [ -77.029586791992188, -12.164582252502441 ], [ -77.029586791992188, -12.165138244628906 ], [ -77.029304504394531, -12.165138244628906 ], [ -77.029304504394531, -12.16541576385498 ], [ -77.028472900390568, -12.16541576385498 ], [ -77.028472900390568, -12.164859771728516 ], [ -77.028198242187386, -12.164859771728516 ], [ -77.028190612792912, -12.164582252502441 ], [ -77.027915954589844, -12.164582252502441 ], [ -77.027915954589844, -12.164028167724553 ], [ -77.027641296386719, -12.164028167724553 ], [ -77.027641296386719, -12.163472175598088 ], [ -77.027359008789062, -12.163472175598088 ], [ -77.027359008789062, -12.161527633666992 ], [ -77.027214050292912, -12.161527633666992 ], [ -77.027084350585938, -12.161527633666992 ], [ -77.027084350585938, -12.160138130187931 ], [ -77.027359008789062, -12.160140037536621 ], [ -77.027359008789062, -12.159787178039551 ], [ -77.027359008789062, -12.159582138061467 ], [ -77.027641296386719, -12.159582138061467 ], [ -77.027641296386719, -12.159028053283691 ], [ -77.027359008789062, -12.159028053283691 ], [ -77.027359008789062, -12.158749580383301 ], [ -77.026802062988281, -12.158749580383301 ], [ -77.026802062988281, -12.158472061157113 ], [ -77.026527404785156, -12.158472061157113 ], [ -77.026527404785156, -12.158193588256836 ], [ -77.025970458984318, -12.158193588256836 ], [ -77.025970458984318, -12.157916069030705 ], [ -77.025695800781193, -12.157917976379395 ], [ -77.025695800781193, -12.157685279846078 ], [ -77.025695800781193, -12.15736007690424 ], [ -77.025970458984318, -12.15736007690424 ], [ -77.025970458984318, -12.156805992126465 ], [ -77.026252746582031, -12.156805992126465 ], [ -77.026252746582031, -12.15625 ], [ -77.025970458984318, -12.15625 ], [ -77.025970458984318, -12.155137062072754 ], [ -77.025695800781193, -12.155139923095703 ], [ -77.025695800781193, -12.154862403869629 ], [ -77.025413513183537, -12.154862403869629 ], [ -77.025413513183537, -12.154581069946289 ], [ -77.025138854980412, -12.154583930969238 ], [ -77.025138854980412, -12.154410362243652 ], [ -77.025138854980412, -12.1540269851684 ], [ -77.025016784667912, -12.1540269851684 ], [ -77.024864196777344, -12.1540269851684 ], [ -77.024864196777344, -12.153557777404728 ], [ -77.024864196777344, -12.153193473815918 ], [ -77.025138854980412, -12.153193473815918 ], [ -77.025138854980412, -12.152639389038029 ], [ -77.025413513183537, -12.152639389038029 ], [ -77.025413513183537, -12.149026870727425 ], [ -77.025138854980412, -12.149026870727425 ], [ -77.025138854980412, -12.147639274597168 ], [ -77.025413513183537, -12.147639274597168 ], [ -77.025413513183537, -12.147360801696777 ], [ -77.025695800781193, -12.147360801696777 ], [ -77.025695800781193, -12.147083282470703 ], [ -77.025970458984318, -12.147083282470703 ], [ -77.025970458984318, -12.146529197692871 ], [ -77.026252746582031, -12.146527290344125 ], [ -77.026252746582031, -12.145973205566406 ], [ -77.026527404785156, -12.145975112914925 ], [ -77.026527404785156, -12.145415306091252 ], [ -77.026802062988281, -12.145417213439941 ], [ -77.026802062988281, -12.144582748413086 ], [ -77.027084350585938, -12.144582748413086 ], [ -77.027084350585938, -12.14360523223877 ], [ -77.027084350585938, -12.14263916015625 ], [ -77.027359008789062, -12.14263916015625 ], [ -77.027359008789062, -12.142360687255859 ], [ -77.027641296386719, -12.142360687255859 ], [ -77.027641296386719, -12.142083168029785 ], [ -77.027915954589844, -12.142083168029785 ], [ -77.027915954589844, -12.141806602477914 ], [ -77.028213500976562, -12.141806602477914 ], [ -77.028472900390568, -12.141806602477914 ], [ -77.028472900390568, -12.141469001769906 ], [ -77.028472900390568, -12.140970230102539 ], [ -77.028816223144531, -12.140973091125431 ], [ -77.029029846191349, -12.140973091125431 ], [ -77.029029846191349, -12.140660285949707 ], [ -77.029029846191349, -12.140078544616642 ], [ -77.029029846191349, -12.139304161071721 ], [ -77.029304504394531, -12.139304161071721 ], [ -77.029304504394531, -12.137361526489201 ], [ -77.029586791992188, -12.137361526489201 ], [ -77.029586791992188, -12.136249542236328 ], [ -77.029861450195312, -12.136249542236328 ], [ -77.029861450195312, -12.135693550109863 ], [ -77.030136108398438, -12.135693550109863 ], [ -77.030136108398438, -12.134860038757324 ], [ -77.030693054199219, -12.134860038757324 ], [ -77.030693054199219, -12.134305953979435 ], [ -77.030975341796875, -12.134305953979435 ], [ -77.030975341796875, -12.133749961853027 ], [ -77.031524658203068, -12.133749961853027 ], [ -77.031524658203068, -12.133472442626953 ], [ -77.031806945800724, -12.133472442626953 ], [ -77.031806945800724, -12.133193969726562 ], [ -77.032081604003849, -12.133193969726562 ], [ -77.032081604003849, -12.132916450500488 ], [ -77.032638549804688, -12.132916450500488 ], [ -77.032638549804688, -12.132637977600098 ], [ -77.032913208007812, -12.132639884948674 ], [ -77.032913208007812, -12.132362365722599 ], [ -77.03375244140625, -12.132362365722599 ], [ -77.03375244140625, -12.132081985473633 ], [ -77.034301757812386, -12.132083892822209 ], [ -77.034301757812386, -12.131806373596135 ], [ -77.034584045410099, -12.131806373596135 ], [ -77.034584045410099, -12.131527900695744 ], [ -77.035140991210881, -12.131527900695744 ], [ -77.035140991210881, -12.131250381469727 ], [ -77.035415649414006, -12.131250381469727 ], [ -77.035415649414006, -12.130971908569279 ], [ -77.035697937011662, -12.130971908569279 ], [ -77.035697937011662, -12.130694389343262 ], [ -77.036247253417969, -12.130694389343262 ], [ -77.036247253417969, -12.130417823791504 ], [ -77.036529541015625, -12.130417823791504 ], [ -77.036529541015625, -12.130140304565373 ], [ -77.03680419921875, -12.130138397216797 ], [ -77.03680419921875, -12.129861831664925 ], [ -77.037086486816406, -12.129861831664925 ], [ -77.037086486816406, -12.129305839538517 ], [ -77.037361145019531, -12.129305839538517 ], [ -77.037361145019531, -12.128472328185978 ], [ -77.037635803222599, -12.128472328185978 ], [ -77.037635803222599, -12.128195762634277 ], [ -77.038192749023381, -12.128195762634277 ], [ -77.038192749023381, -12.127639770507812 ], [ -77.038475036621037, -12.127639770507812 ], [ -77.038475036621037, -12.127362251281738 ], [ -77.039024353027344, -12.127362251281738 ], [ -77.039024353027344, -12.127083778381348 ], [ -77.039306640625, -12.127083778381348 ], [ -77.039306640625, -12.126249313354492 ], [ -77.039581298828125, -12.126249313354492 ], [ -77.039581298828125, -12.125970840454102 ], [ -77.039863586425781, -12.125970840454102 ], [ -77.039863586425781, -12.125693321228027 ], [ -77.040138244628906, -12.125693321228027 ], [ -77.040138244628906, -12.125137329101449 ], [ -77.041526794433537, -12.125139236450195 ], [ -77.041526794433537, -12.124860763549805 ], [ -77.04402923583973, -12.124860763549805 ], [ -77.04402923583973, -12.12458324432373 ], [ -77.044586181640568, -12.12458324432373 ], [ -77.044586181640568, -12.12430477142334 ], [ -77.045135498046875, -12.12430477142334 ], [ -77.045135498046875, -12.123748779296875 ], [ -77.045974731445312, -12.123748779296875 ], [ -77.045974731445312, -12.123194694518986 ], [ -77.046524047851562, -12.123194694518986 ], [ -77.046524047851562, -12.122915267944336 ], [ -77.046806335449219, -12.122915267944336 ], [ -77.046806335449219, -12.121803283691293 ], [ -77.04708099365223, -12.121805191040039 ], [ -77.04708099365223, -12.120695114135685 ], [ -77.047363281249943, -12.120695114135685 ], [ -77.047363281249943, -12.120139122009221 ], [ -77.047920227050724, -12.120139122009221 ], [ -77.047920227050724, -12.11986064910883 ], [ -77.048751831054688, -12.11986064910883 ], [ -77.048751831054688, -12.119583129882756 ], [ -77.049308776855469, -12.119583129882756 ], [ -77.049308776855469, -12.119304656982365 ], [ -77.049583435058594, -12.119304656982365 ], [ -77.049583435058594, -12.1187486648559 ], [ -77.050140380859375, -12.1187486648559 ], [ -77.050140380859375, -12.118471145629883 ], [ -77.050697326660099, -12.118473052978516 ], [ -77.050697326660099, -12.11763858795166 ], [ -77.050971984863224, -12.11763858795166 ], [ -77.050971984863224, -12.117361068725529 ], [ -77.051246643066349, -12.117361068725529 ], [ -77.051246643066349, -12.117082595825082 ], [ -77.051528930664006, -12.117082595825082 ], [ -77.051528930664006, -12.116526603698674 ], [ -77.051803588867188, -12.116526603698674 ], [ -77.051803588867188, -12.115973472595215 ], [ -77.052085876464844, -12.115973472595215 ], [ -77.052085876464844, -12.115692138671818 ], [ -77.052360534667969, -12.115692138671818 ], [ -77.052360534667969, -12.115139007568359 ], [ -77.052635192871094, -12.115139007568359 ], [ -77.052635192871094, -12.114582061767578 ], [ -77.05291748046875, -12.114582061767578 ], [ -77.05291748046875, -12.114303588867188 ], [ -77.053192138671875, -12.114303588867188 ], [ -77.053192138671875, -12.113751411437988 ], [ -77.053474426269531, -12.113751411437988 ], [ -77.053474426269531, -12.113194465637207 ], [ -77.054306030273381, -12.113194465637207 ], [ -77.054306030273381, -12.112915992736816 ], [ -77.054580688476506, -12.112915992736816 ], [ -77.054580688476506, -12.112638473510742 ], [ -77.054862976074219, -12.112638473510742 ], [ -77.054862976074219, -12.112360000610352 ], [ -77.055137634277344, -12.112360000610352 ], [ -77.055137634277344, -12.11208534240717 ], [ -77.055694580078125, -12.11208534240717 ], [ -77.055694580078125, -12.111804008483887 ], [ -77.05596923828125, -12.111805915832463 ], [ -77.05596923828125, -12.111528396606388 ], [ -77.056808471679574, -12.111528396606388 ], [ -77.056808471679574, -12.111248016357422 ], [ -77.057357788085881, -12.111249923705998 ], [ -77.057357788085881, -12.110972404479924 ], [ -77.057640075683537, -12.110972404479924 ], [ -77.057640075683537, -12.110416412353459 ], [ -77.058197021484375, -12.110416412353459 ], [ -77.058197021484375, -12.110137939453068 ], [ -77.058746337890625, -12.110137939453068 ], [ -77.058746337890625, -12.109862327575684 ], [ -77.059303283691406, -12.109862327575684 ], [ -77.059303283691406, -12.109306335449105 ], [ -77.059860229492074, -12.109306335449105 ], [ -77.059860229492074, -12.109027862548828 ], [ -77.060142517089787, -12.109027862548828 ], [ -77.060142517089787, -12.108750343322697 ], [ -77.060417175292912, -12.108750343322697 ], [ -77.060417175292912, -12.10847187042225 ], [ -77.060974121093693, -12.10847187042225 ], [ -77.060974121093693, -12.108194351196232 ], [ -77.061248779296875, -12.108194351196232 ], [ -77.061248779296875, -12.107915878295842 ], [ -77.061805725097656, -12.107915878295842 ], [ -77.061805725097656, -12.107359886169377 ], [ -77.062080383300781, -12.107359886169377 ], [ -77.062080383300781, -12.107084274291992 ], [ -77.062637329101562, -12.107084274291992 ], [ -77.062637329101562, -12.106805801391602 ], [ -77.062919616699219, -12.106805801391602 ], [ -77.062919616699219, -12.106528282165527 ], [ -77.063468933105412, -12.106528282165527 ], [ -77.063468933105412, -12.105972290038949 ], [ -77.064025878906193, -12.105972290038949 ], [ -77.064025878906193, -12.105693817138672 ], [ -77.064308166503849, -12.105693817138672 ], [ -77.064308166503849, -12.105137825012093 ], [ -77.064857482910156, -12.105137825012093 ], [ -77.064857482910156, -12.104860305786076 ], [ -77.065414428710938, -12.104862213134766 ], [ -77.065414428710938, -12.104583740234375 ], [ -77.065696716308594, -12.104583740234375 ], [ -77.065696716308594, -12.10402774810791 ], [ -77.066528320312443, -12.10402774810791 ], [ -77.066528320312443, -12.103750228881836 ], [ -77.067359924316349, -12.103750228881836 ], [ -77.067359924316349, -12.103471755981445 ], [ -77.067642211914062, -12.103471755981445 ], [ -77.067642211914062, -12.103191375732365 ], [ -77.067916870117188, -12.103194236755371 ], [ -77.067916870117188, -12.102917671203556 ], [ -77.06903076171875, -12.102917671203556 ], [ -77.06903076171875, -12.102638244628906 ], [ -77.069580078124943, -12.102640151977539 ], [ -77.069580078124943, -12.102361679077092 ], [ -77.069862365722599, -12.102361679077092 ], [ -77.069862365722599, -12.102081298828125 ], [ -77.070137023925724, -12.102084159851074 ], [ -77.070137023925724, -12.101805686950684 ], [ -77.070968627929688, -12.101805686950684 ], [ -77.070968627929688, -12.101528167724609 ], [ -77.071250915527344, -12.101528167724609 ], [ -77.071250915527344, -12.101249694824219 ], [ -77.071807861328125, -12.101249694824219 ], [ -77.071807861328125, -12.100971221923828 ], [ -77.072364807128906, -12.100971221923828 ], [ -77.072364807128906, -12.10069561004633 ], [ -77.072639465331918, -12.10069561004633 ], [ -77.072639465331918, -12.099859237670898 ], [ -77.073196411132756, -12.099862098693791 ], [ -77.073196411132756, -12.099582672119027 ], [ -77.073471069335881, -12.099582672119027 ], [ -77.073471069335881, -12.099303245544434 ], [ -77.074028015136719, -12.09930515289301 ], [ -77.074028015136719, -12.099026679992619 ], [ -77.074302673339844, -12.099026679992619 ], [ -77.074302673339844, -12.098749160766545 ], [ -77.074859619140625, -12.098749160766545 ], [ -77.074859619140625, -12.09847354888916 ], [ -77.075416564941406, -12.09847354888916 ], [ -77.075416564941406, -12.097916603088379 ], [ -77.075973510742131, -12.097916603088379 ], [ -77.075973510742131, -12.097637176513615 ], [ -77.076248168945256, -12.097639083862305 ], [ -77.076248168945256, -12.097360610961914 ], [ -77.076805114746037, -12.097360610961914 ], [ -77.076805114746037, -12.09708309173584 ], [ -77.077079772949219, -12.09708309173584 ], [ -77.077079772949219, -12.096804618835449 ], [ -77.077919006347656, -12.096804618835449 ], [ -77.077919006347656, -12.096527099609261 ], [ -77.078193664550781, -12.096527099609261 ], [ -77.078193664550781, -12.096248626708984 ], [ -77.078613281249943, -12.096248626708984 ], [ -77.078750610351562, -12.096248626708984 ], [ -77.078750610351562, -12.095971107482853 ], [ -77.079307556152287, -12.095971107482853 ], [ -77.079307556152287, -12.095694541931152 ], [ -77.079582214355412, -12.095694541931152 ], [ -77.079582214355412, -12.095415115356388 ], [ -77.080139160156193, -12.095417022705078 ], [ -77.080139160156193, -12.095138549804688 ], [ -77.080413818359375, -12.095138549804688 ], [ -77.080413818359375, -12.094861030578613 ], [ -77.080970764160156, -12.094861030578613 ], [ -77.080970764160156, -12.094582557678223 ], [ -77.081527709960938, -12.094582557678223 ], [ -77.081527709960938, -12.094305038452148 ], [ -77.082084655761719, -12.094305038452148 ], [ -77.082084655761719, -12.094026565551758 ], [ -77.082359313964787, -12.094026565551758 ], [ -77.082359313964787, -12.093749046325684 ], [ -77.082916259765568, -12.093749046325684 ], [ -77.082916259765568, -12.093473434448242 ], [ -77.083473205566406, -12.093473434448242 ], [ -77.083473205566406, -12.093193054199105 ], [ -77.084030151367188, -12.093194961547852 ], [ -77.084030151367188, -12.092917442321777 ], [ -77.084304809570312, -12.092917442321777 ], [ -77.084304809570312, -12.092638969421387 ], [ -77.084861755371094, -12.092638969421387 ], [ -77.084861755371094, -12.092361450195312 ], [ -77.085418701171761, -12.092361450195312 ], [ -77.085418701171761, -12.092082977294922 ], [ -77.085975646972599, -12.092082977294922 ], [ -77.085975646972599, -12.091805458068848 ], [ -77.086524963378906, -12.091805458068848 ], [ -77.086524963378906, -12.091526985168457 ], [ -77.087081909179688, -12.091528892517033 ], [ -77.087081909179688, -12.091251373290959 ], [ -77.087638854980469, -12.091251373290959 ], [ -77.087638854980469, -12.090970993041992 ], [ -77.088470458984261, -12.090972900390568 ], [ -77.088470458984261, -12.090695381164551 ], [ -77.089027404785099, -12.090695381164551 ], [ -77.089027404785099, -12.090416908264103 ], [ -77.089584350585881, -12.090416908264103 ], [ -77.089584350585881, -12.090139389038086 ], [ -77.090141296386719, -12.090139389038086 ], [ -77.090141296386719, -12.089860916137695 ], [ -77.090690612792969, -12.089860916137695 ], [ -77.0906982421875, -12.089583396911621 ], [ -77.09124755859375, -12.089583396911621 ], [ -77.09124755859375, -12.08930683135975 ], [ -77.091804504394474, -12.08930683135975 ], [ -77.091804504394474, -12.089027404785156 ], [ -77.092361450195256, -12.089027404785156 ], [ -77.092361450195256, -12.088750839233342 ], [ -77.092918395996037, -12.088750839233342 ], [ -77.092918395996037, -12.088473320007267 ], [ -77.093475341796875, -12.088473320007267 ], [ -77.093475341796875, -12.088194847106877 ], [ -77.094024658203125, -12.088194847106877 ], [ -77.094024658203125, -12.087917327880803 ], [ -77.094581604003906, -12.087917327880803 ], [ -77.094581604003906, -12.087638854980412 ], [ -77.095138549804631, -12.087638854980412 ], [ -77.095138549804631, -12.087360382080021 ], [ -77.095695495605412, -12.087360382080021 ], [ -77.095695495605412, -12.087081909179631 ], [ -77.09625244140625, -12.087081909179631 ], [ -77.09625244140625, -12.086804389953556 ], [ -77.0968017578125, -12.086804389953556 ], [ -77.0968017578125, -12.086528778076172 ], [ -77.097084045410156, -12.086528778076172 ], [ -77.097084045410156, -12.086251258849984 ], [ -77.097640991210938, -12.086251258849984 ], [ -77.097640991210938, -12.085971832275391 ], [ -77.098197937011605, -12.085971832275391 ], [ -77.098197937011605, -12.085694313049316 ], [ -77.098747253417912, -12.085694313049316 ], [ -77.098747253417912, -12.085415840148926 ], [ -77.099586486816406, -12.085415840148926 ], [ -77.099586486816406, -12.085138320922852 ], [ -77.100418090820312, -12.085138320922852 ], [ -77.100418090820312, -12.084859848022461 ], [ -77.101249694824105, -12.084859848022461 ], [ -77.101249694824105, -12.084582328796273 ], [ -77.102081298828068, -12.084582328796273 ], [ -77.102081298828068, -12.084305763244629 ], [ -77.102638244628906, -12.084305763244629 ], [ -77.102638244628906, -12.084028244018555 ], [ -77.102851867675724, -12.084028244018555 ], [ -77.103195190429688, -12.084028244018555 ], [ -77.103195190429688, -12.083913803100586 ], [ -77.103195190429688, -12.083749771118164 ], [ -77.103469848632812, -12.083749771118164 ], [ -77.103469848632812, -12.08347225189209 ], [ -77.104026794433594, -12.08347225189209 ], [ -77.104026794433594, -12.083193778991699 ], [ -77.104377746581974, -12.083193778991699 ], [ -77.104583740234318, -12.083193778991699 ], [ -77.104583740234318, -12.083057403564396 ], [ -77.104583740234318, -12.082916259765625 ], [ -77.104804992675781, -12.082916259765625 ], [ -77.105140686035099, -12.082916259765625 ], [ -77.105140686035099, -12.082637786865234 ], [ -77.105972290039062, -12.082637786865234 ], [ -77.105972290039062, -12.08236026763916 ], [ -77.106529235839844, -12.082362174987736 ], [ -77.106529235839844, -12.082083702087346 ], [ -77.107086181640625, -12.082083702087346 ], [ -77.107086181640625, -12.081814765930176 ], [ -77.107635498046818, -12.081806182861271 ], [ -77.107635498046818, -12.08170127868641 ], [ -77.107635498046818, -12.081527709960881 ], [ -77.108474731445256, -12.081527709960881 ], [ -77.108474731445256, -12.081248283386117 ], [ -77.109024047851562, -12.081250190734863 ], [ -77.109024047851562, -12.080971717834416 ], [ -77.109352111816349, -12.080971717834416 ], [ -77.109580993652344, -12.080971717834416 ], [ -77.109580993652344, -12.08078670501709 ], [ -77.109580993652344, -12.080694198608398 ], [ -77.1097412109375, -12.080760002136174 ], [ -77.110092163085881, -12.080366134643441 ], [ -77.111083984375, -12.079451560974121 ], [ -77.11083984375, -12.078624725341797 ], [ -77.110862731933537, -12.077403068542424 ], [ -77.108970642089787, -12.077047348022461 ], [ -77.109207153320312, -12.074604034423828 ], [ -77.109069824218636, -12.073820114135742 ], [ -77.108657836914006, -12.073615074157601 ], [ -77.107147216796818, -12.073590278625488 ], [ -77.106796264648438, -12.073040962219238 ], [ -77.107086181640625, -12.070843696594238 ], [ -77.108909606933594, -12.069879531860352 ], [ -77.11116790771473, -12.069043159484863 ], [ -77.110832214355469, -12.068564414977914 ], [ -77.108833312988281, -12.067069053649902 ], [ -77.108299255371037, -12.066388130187931 ], [ -77.108100891113224, -12.065448760986328 ], [ -77.108184814453068, -12.063433647155762 ], [ -77.088073730468693, -12.061650276183968 ], [ -77.087821960449219, -12.0516099929809 ], [ -77.087509155273381, -12.051359176635685 ], [ -77.078094482421875, -12.050003051757812 ], [ -77.078254699706974, -12.047543525695801 ], [ -77.078590393066406, -12.046483993530217 ], [ -77.08135986328125, -12.046779632568359 ], [ -77.081962585449162, -12.046547889709416 ], [ -77.082534790039006, -12.043740272521973 ], [ -77.082977294921875, -12.039519309997559 ], [ -77.082717895507756, -12.039267539977971 ], [ -77.081138610839844, -12.039115905761605 ], [ -77.081321716308594, -12.03592491149891 ], [ -77.082206726074219, -12.035881996154728 ], [ -77.085128784179631, -12.036808967590332 ], [ -77.088577270507812, -12.036946296691781 ], [ -77.090248107910099, -12.037538528442326 ], [ -77.092391967773438, -12.037523269653263 ], [ -77.093482971191406, -12.038210868835392 ], [ -77.093757629394531, -12.038145065307617 ], [ -77.093742370605469, -12.034539222717228 ], [ -77.094276428222599, -12.033552169799805 ], [ -77.095390319824219, -12.032565116882324 ], [ -77.095458984375, -12.032204627990723 ], [ -77.093765258789062, -12.029324531555176 ], [ -77.093132019042912, -12.025966644287109 ], [ -77.091613769531193, -12.02198314666748 ], [ -77.089752197265625, -12.018157005310059 ], [ -77.088356018066349, -12.015971183776855 ], [ -77.087936401367188, -12.013427734374943 ], [ -77.088294982910156, -12.01247501373291 ], [ -77.089004516601562, -12.011619567871037 ], [ -77.090858459472656, -12.009934425353947 ], [ -77.092361450195256, -12.009011268615723 ], [ -77.096206665039062, -12.004876136779728 ], [ -77.101623535156193, -12.00219821929926 ], [ -77.103294372558594, -12.001688003539925 ], [ -77.104522705078125, -12.000830650329533 ], [ -77.108978271484375, -11.999159812927246 ], [ -77.115692138671875, -11.995855331420842 ], [ -77.118553161621094, -11.993539810180664 ], [ -77.119232177734375, -11.992721557617188 ], [ -77.119834899902287, -11.991052627563477 ], [ -77.119468688964844, -11.989382743835392 ], [ -77.118270874023438, -11.987549781799203 ], [ -77.117385864257812, -11.986696243286076 ], [ -77.114517211914062, -11.984622001647892 ], [ -77.11309814453125, -11.98200511932373 ], [ -77.112655639648438, -11.97950267791748 ], [ -77.112876892089787, -11.976293563842717 ], [ -77.114036560058594, -11.97284984588623 ], [ -77.11614990234375, -11.969256401061955 ], [ -77.117065429687443, -11.966607093811035 ], [ -77.117744445800724, -11.961280822753849 ], [ -77.117630004882756, -11.957322120666504 ], [ -77.117843627929574, -11.955795288085938 ], [ -77.119338989257756, -11.95438194274891 ], [ -77.120223999023381, -11.953173637390137 ], [ -77.120597839355412, -11.950507164001465 ], [ -77.121040344238281, -11.949570655822697 ], [ -77.123207092285156, -11.947113990783578 ], [ -77.123947143554574, -11.945825576782227 ], [ -77.126365661621094, -11.943519592285156 ], [ -77.127372741699162, -11.942273139953613 ], [ -77.128662109375, -11.939146041870117 ], [ -77.128768920898438, -11.937935829162541 ], [ -77.127265930175724, -11.938044548034668 ], [ -77.126174926757812, -11.938559532165471 ], [ -77.12530517578125, -11.939613342285099 ], [ -77.123802185058594, -11.942337036132812 ], [ -77.122108459472599, -11.943788528442326 ], [ -77.120361328125, -11.944577217102051 ], [ -77.117996215820312, -11.945256233215332 ], [ -77.116416931152344, -11.946063041687012 ], [ -77.113151550292912, -11.946202278137207 ], [ -77.110801696777344, -11.948255538940373 ], [ -77.109611511230412, -11.948904991149902 ], [ -77.108398437499943, -11.9490966796875 ], [ -77.106842041015568, -11.948591232299805 ], [ -77.104515075683594, -11.948501586914006 ], [ -77.103996276855412, -11.948685646057129 ], [ -77.102523803710938, -11.949844360351506 ], [ -77.099281311035156, -11.950347900390625 ], [ -77.097496032714787, -11.951020240783578 ], [ -77.096443176269531, -11.950739860534668 ], [ -77.095390319824219, -11.949664115905762 ], [ -77.095611572265568, -11.947140693664551 ], [ -77.097023010253849, -11.945059776306039 ], [ -77.097702026367131, -11.943120956420842 ], [ -77.097724914550781, -11.941376686096135 ], [ -77.098281860351506, -11.939864158630371 ], [ -77.099365234375, -11.938670158386117 ], [ -77.10235595703125, -11.936794281005859 ], [ -77.102928161621094, -11.935895919799805 ], [ -77.103034973144474, -11.934946060180664 ], [ -77.102508544921875, -11.933849334716797 ], [ -77.102401733398438, -11.933053970336914 ], [ -77.102836608886662, -11.931235313415414 ], [ -77.102851867675724, -11.929220199584961 ], [ -77.102088928222599, -11.927524566650334 ], [ -77.101112365722656, -11.926401138305664 ], [ -77.098541259765625, -11.925148010253849 ], [ -77.096839904785099, -11.923686981201115 ], [ -77.096290588378793, -11.922127723693734 ], [ -77.096237182617188, -11.918848037719727 ], [ -77.093872070312443, -11.916416168212891 ], [ -77.092887878417969, -11.91462516784668 ], [ -77.092391967773438, -11.912078857421818 ], [ -77.092018127441406, -11.90587329864502 ], [ -77.089950561523438, -11.901045799255371 ], [ -77.089874267578068, -11.899951934814396 ], [ -77.090652465820256, -11.896964073181096 ], [ -77.090721130371094, -11.89467811584467 ], [ -77.092391967773438, -11.891744613647461 ], [ -77.092628479003906, -11.890974044799805 ], [ -77.092720031738281, -11.888950347900391 ], [ -77.092247009277344, -11.887126922607422 ], [ -77.092178344726506, -11.885239601135254 ], [ -77.093589782714787, -11.879343986511174 ], [ -77.093650817871094, -11.875446319580021 ], [ -77.094123840332031, -11.874775886535645 ], [ -77.095748901367188, -11.87354564666748 ], [ -77.098320007324219, -11.870941162109375 ], [ -77.099647521972656, -11.86904239654541 ], [ -77.100570678710881, -11.867255210876465 ], [ -77.100791931152344, -11.866305351257324 ], [ -77.100746154785099, -11.865131378173771 ], [ -77.099777221679688, -11.862743377685547 ], [ -77.099822998046875, -11.860861778259277 ], [ -77.100250244140625, -11.85805702209467 ], [ -77.101028442382756, -11.857835769653263 ], [ -77.10357666015625, -11.858772277831974 ], [ -77.104675292968693, -11.85870170593256 ], [ -77.105545043945312, -11.858298301696777 ], [ -77.106040954589844, -11.857824325561523 ], [ -77.106483459472599, -11.85655498504633 ], [ -77.107597351074219, -11.855372428894043 ], [ -77.108314514160156, -11.854977607726994 ], [ -77.109542846679631, -11.854886054992619 ], [ -77.110145568847656, -11.854549407958928 ], [ -77.110809326171875, -11.85193920135498 ], [ -77.113189697265625, -11.849728584289494 ], [ -77.1134033203125, -11.848985671997013 ], [ -77.113327026367131, -11.847450256347656 ], [ -77.112655639648438, -11.845391273498535 ], [ -77.112518310546875, -11.843641281127873 ], [ -77.113746643066406, -11.84050464630127 ], [ -77.114242553710938, -11.838413238525391 ], [ -77.115066528320256, -11.836708068847656 ], [ -77.116142272949219, -11.832398414611816 ], [ -77.117088317871094, -11.831098556518555 ], [ -77.1221923828125, -11.826001167297363 ], [ -77.126029968261662, -11.820111274719238 ], [ -77.12652587890625, -11.819894790649357 ], [ -77.1285400390625, -11.820729255676213 ], [ -77.130455017089844, -11.820821762084961 ], [ -77.132835388183594, -11.82148265838623 ], [ -77.134185791015625, -11.821597099304199 ], [ -77.138282775878906, -11.821351051330566 ], [ -77.140922546386605, -11.820629119872933 ], [ -77.143081665039006, -11.820284843444767 ], [ -77.148635864257756, -11.820667266845703 ], [ -77.157630920410156, -11.823481559753418 ], [ -77.162750244140568, -11.82634162902832 ], [ -77.164024353027344, -11.826823234558105 ], [ -77.167312622070256, -11.826959609985295 ], [ -77.171905517578068, -11.825652122497502 ], [ -77.173545837402344, -11.825447082519531 ], [ -77.177917480468693, -11.826967239379826 ], [ -77.180328369140625, -11.827439308166504 ], [ -77.181694030761719, -11.82738208770752 ], [ -77.185409545898438, -11.826540946960449 ], [ -77.187622070312443, -11.828149795532227 ], [ -77.189132690429688, -11.829860687255803 ], [ -77.189308166503906, -11.829860687255803 ], [ -77.189308166503906, -11.829583168029728 ], [ -77.189582824707031, -11.829583168029728 ], [ -77.189582824707031, -11.82902717590332 ], [ -77.190139770507812, -11.82902717590332 ], [ -77.190139770507812, -11.828748703002873 ], [ -77.190414428710881, -11.828748703002873 ], [ -77.190414428710881, -11.828471183776855 ], [ -77.190139770507812, -11.828471183776855 ], [ -77.190139770507812, -11.827915191650391 ], [ -77.189857482910156, -11.827917098998967 ], [ -77.189857482910156, -11.827638626098519 ], [ -77.189582824707031, -11.827638626098519 ], [ -77.189582824707031, -11.827361106872502 ], [ -77.18902587890625, -11.827361106872502 ], [ -77.18902587890625, -11.827082633972111 ], [ -77.188751220703125, -11.827082633972111 ], [ -77.188751220703125, -11.826805114746037 ], [ -77.188468933105469, -11.826805114746037 ], [ -77.188468933105469, -11.826249122619572 ], [ -77.188194274902287, -11.826249122619572 ], [ -77.188194274902287, -11.825972557067871 ], [ -77.187919616699162, -11.825972557067871 ], [ -77.187919616699162, -11.825416564941406 ], [ -77.187637329101506, -11.825416564941406 ], [ -77.187637329101506, -11.824860572814941 ], [ -77.187362670898381, -11.824860572814941 ], [ -77.187362670898381, -11.82458305358881 ], [ -77.187080383300668, -11.82458305358881 ], [ -77.187080383300668, -11.824304580688363 ], [ -77.186805725097656, -11.824304580688363 ], [ -77.186805725097656, -11.824027061462346 ], [ -77.186248779296875, -11.824028968811035 ], [ -77.186248779296875, -11.823751449584961 ], [ -77.185691833496094, -11.823748588561955 ], [ -77.185691833496094, -11.823471069335881 ], [ -77.185417175292969, -11.82347297668457 ], [ -77.185417175292969, -11.823195457458496 ], [ -77.184860229492131, -11.823195457458496 ], [ -77.184860229492131, -11.822639465332031 ], [ -77.184585571289006, -11.822639465332031 ], [ -77.184585571289006, -11.822083473205453 ], [ -77.184028625488168, -11.822083473205453 ], [ -77.184028625488168, -11.821805000305176 ], [ -77.1834716796875, -11.821806907653809 ], [ -77.1834716796875, -11.819304466247559 ], [ -77.183746337890625, -11.819304466247559 ], [ -77.183746337890625, -11.818751335144043 ], [ -77.1834716796875, -11.818751335144043 ], [ -77.1834716796875, -11.817915916442814 ], [ -77.181808471679631, -11.817915916442814 ], [ -77.181808471679631, -11.81763839721674 ], [ -77.181526184081974, -11.81763839721674 ], [ -77.181526184081974, -11.817082405090332 ], [ -77.180969238281193, -11.817082405090332 ], [ -77.180969238281193, -11.816806793212834 ], [ -77.180419921875, -11.816806793212834 ], [ -77.180419921875, -11.81652927398676 ], [ -77.180137634277344, -11.81652927398676 ], [ -77.180137634277344, -11.816806793212834 ], [ -77.179862976074219, -11.816806793212834 ], [ -77.179862976074219, -11.81652927398676 ], [ -77.179580688476562, -11.81652927398676 ], [ -77.179580688476562, -11.816806793212834 ], [ -77.179031372070312, -11.816806793212834 ], [ -77.179031372070312, -11.81652927398676 ], [ -77.178474426269474, -11.81652927398676 ], [ -77.178474426269474, -11.816249847412109 ], [ -77.178192138671818, -11.816249847412109 ], [ -77.178192138671818, -11.815972328185978 ], [ -77.177917480468693, -11.815972328185978 ], [ -77.177917480468693, -11.815693855285531 ], [ -77.177635192871037, -11.815693855285531 ], [ -77.177635192871037, -11.814860343933049 ], [ -77.177360534667969, -11.814860343933049 ], [ -77.177360534667969, -11.812638282775822 ], [ -77.177635192871037, -11.812638282775822 ], [ -77.177635192871037, -11.812082290649357 ], [ -77.177917480468693, -11.812084197998047 ], [ -77.177917480468693, -11.811805725097656 ], [ -77.178192138671818, -11.811805725097656 ], [ -77.178192138671818, -11.810693740844727 ], [ -77.178474426269474, -11.810693740844727 ], [ -77.178474426269474, -11.810416221618652 ], [ -77.178749084472599, -11.810416221618652 ], [ -77.178749084472599, -11.809583663940373 ], [ -77.179031372070312, -11.809583663940373 ], [ -77.179031372070312, -11.809304237365609 ], [ -77.179306030273438, -11.809304237365609 ], [ -77.179306030273438, -11.808748245239201 ], [ -77.179580688476562, -11.808750152587891 ], [ -77.179580688476562, -11.8084716796875 ], [ -77.179862976074219, -11.8084716796875 ], [ -77.179862976074219, -11.808194160461426 ], [ -77.179580688476562, -11.808194160461426 ], [ -77.179580688476562, -11.807915687561035 ], [ -77.179862976074219, -11.807915687561035 ], [ -77.179862976074219, -11.807638168334961 ], [ -77.180137634277344, -11.807640075683537 ], [ -77.180137634277344, -11.80735969543457 ], [ -77.180419921875, -11.80735969543457 ], [ -77.180419921875, -11.806528091430607 ], [ -77.180694580078125, -11.806528091430607 ], [ -77.180694580078125, -11.806249618530217 ], [ -77.180969238281193, -11.806249618530217 ], [ -77.180969238281193, -11.805692672729435 ], [ -77.180419921875, -11.805692672729435 ], [ -77.180419921875, -11.805415153503361 ], [ -77.180137634277344, -11.805415153503361 ], [ -77.180137634277344, -11.804859161376896 ], [ -77.179580688476562, -11.804862022399846 ], [ -77.179580688476562, -11.804583549499398 ], [ -77.179306030273438, -11.804583549499398 ], [ -77.179306030273438, -11.802918434142953 ], [ -77.179580688476562, -11.802918434142953 ], [ -77.179580688476562, -11.801804542541504 ], [ -77.179862976074219, -11.801804542541504 ], [ -77.179862976074219, -11.801251411437988 ], [ -77.180419921875, -11.801248550415039 ], [ -77.180419921875, -11.800971031188965 ], [ -77.180969238281193, -11.800971031188965 ], [ -77.180969238281193, -11.800695419311523 ], [ -77.181526184081974, -11.800695419311523 ], [ -77.181526184081974, -11.799929618835449 ], [ -77.181526184081974, -11.799583435058594 ], [ -77.182083129882812, -11.799583435058594 ], [ -77.182083129882812, -11.798748970031738 ], [ -77.182357788085938, -11.798748970031738 ], [ -77.182357788085938, -11.79847335815424 ], [ -77.182640075683594, -11.79847335815424 ], [ -77.182640075683594, -11.795972824096623 ], [ -77.182914733886719, -11.795972824096623 ], [ -77.182914733886719, -11.795695304870549 ], [ -77.182640075683594, -11.795695304870549 ], [ -77.182640075683594, -11.795416831970158 ], [ -77.182914733886719, -11.795416831970158 ], [ -77.182914733886719, -11.794583320617619 ], [ -77.183197021484375, -11.794583320617619 ], [ -77.183197021484375, -11.793750762939453 ], [ -77.1834716796875, -11.793750762939453 ], [ -77.1834716796875, -11.792917251586857 ], [ -77.183746337890625, -11.792917251586857 ], [ -77.183746337890625, -11.792361259460392 ], [ -77.184028625488168, -11.792361259460392 ], [ -77.184028625488168, -11.792084693908691 ], [ -77.184303283691349, -11.792084693908691 ], [ -77.184303283691349, -11.791804313659554 ], [ -77.184585571289006, -11.791804313659554 ], [ -77.184585571289006, -11.791528701782227 ], [ -77.184860229492131, -11.791528701782227 ], [ -77.184860229492131, -11.791251182556152 ], [ -77.185142517089787, -11.791251182556152 ], [ -77.185142517089787, -11.790972709655762 ], [ -77.185417175292969, -11.790972709655762 ], [ -77.185417175292969, -11.79041576385498 ], [ -77.185691833496094, -11.79041576385498 ], [ -77.185691833496094, -11.790138244628906 ], [ -77.18597412109375, -11.790138244628906 ], [ -77.18597412109375, -11.789859771728516 ], [ -77.186248779296875, -11.789859771728516 ], [ -77.186248779296875, -11.789582252502441 ], [ -77.186531066894531, -11.789582252502441 ], [ -77.186531066894531, -11.789306640625 ], [ -77.186805725097656, -11.789306640625 ], [ -77.186805725097656, -11.789028167724553 ], [ -77.187637329101506, -11.789028167724553 ], [ -77.187637329101506, -11.788749694824162 ], [ -77.188194274902287, -11.788749694824162 ], [ -77.188194274902287, -11.788472175598145 ], [ -77.188468933105469, -11.788472175598145 ], [ -77.188468933105469, -11.788193702697697 ], [ -77.188751220703125, -11.788193702697697 ], [ -77.188751220703125, -11.78791618347168 ], [ -77.18902587890625, -11.78791618347168 ], [ -77.18902587890625, -11.787637710571289 ], [ -77.189308166503906, -11.787637710571289 ], [ -77.189308166503906, -11.787083625793343 ], [ -77.189582824707031, -11.787083625793343 ], [ -77.189582824707031, -11.78680419921875 ], [ -77.189857482910156, -11.78680419921875 ], [ -77.189857482910156, -11.786527633666935 ], [ -77.190139770507812, -11.786527633666935 ], [ -77.190139770507812, -11.786250114440861 ], [ -77.190414428710881, -11.786250114440861 ], [ -77.190414428710881, -11.785971641540471 ], [ -77.190696716308537, -11.785971641540471 ], [ -77.190696716308537, -11.785694122314396 ], [ -77.191253662109318, -11.785694122314396 ], [ -77.191253662109318, -11.785415649414006 ], [ -77.191528320312443, -11.785415649414006 ], [ -77.191528320312443, -11.785138130187988 ], [ -77.194862365722656, -11.785138130187988 ], [ -77.194862365722656, -11.78486156463623 ], [ -77.196525573730469, -11.784859657287541 ], [ -77.196525573730469, -11.784666061401367 ], [ -77.196525573730469, -11.784584045410043 ], [ -77.196800231933537, -11.784584045410043 ], [ -77.197639465331974, -11.784584045410043 ], [ -77.197639465331974, -11.784128189086857 ], [ -77.197639465331974, -11.784028053283635 ], [ -77.197776794433594, -11.784028053283635 ], [ -77.197914123535156, -11.784028053283635 ], [ -77.197914123535156, -11.78347206115717 ], [ -77.198196411132812, -11.78347206115717 ], [ -77.198196411132812, -11.782637596130314 ], [ -77.197914123535156, -11.782637596130314 ], [ -77.197914123535156, -11.781805992126465 ], [ -77.197639465331974, -11.781805992126465 ], [ -77.197639465331974, -11.780971527099609 ], [ -77.197914123535156, -11.780971527099609 ], [ -77.197914123535156, -11.780415534973145 ], [ -77.198196411132812, -11.780415534973145 ], [ -77.198196411132812, -11.779862403869629 ], [ -77.198471069335938, -11.779862403869629 ], [ -77.198471069335938, -11.779571533203125 ], [ -77.198471069335938, -11.779027938842773 ], [ -77.198196411132812, -11.779027938842773 ], [ -77.198196411132812, -11.778750419616699 ], [ -77.197914123535156, -11.778750419616699 ], [ -77.197914123535156, -11.778470993041992 ], [ -77.197082519531193, -11.778470993041992 ], [ -77.197082519531193, -11.778193473815918 ], [ -77.196525573730469, -11.778193473815918 ], [ -77.196525573730469, -11.777359008789062 ], [ -77.196250915527344, -11.777361869812012 ], [ -77.196250915527344, -11.776527404785156 ], [ -77.196525573730469, -11.776527404785156 ], [ -77.196525573730469, -11.776078224182129 ], [ -77.196525573730469, -11.775971412658691 ], [ -77.196662902832031, -11.775971412658691 ], [ -77.198471069335938, -11.775971412658691 ], [ -77.198471069335938, -11.774026870727482 ], [ -77.198753356933594, -11.774026870727482 ], [ -77.198753356933594, -11.773751258850098 ], [ -77.199028015136719, -11.773751258850098 ], [ -77.199028015136719, -11.773470878601017 ], [ -77.198753356933594, -11.773470878601017 ], [ -77.198753356933594, -11.773195266723633 ], [ -77.199028015136719, -11.773195266723633 ], [ -77.199028015136719, -11.772360801696777 ], [ -77.198753356933594, -11.772360801696777 ], [ -77.198753356933594, -11.771804809570199 ], [ -77.198471069335938, -11.771804809570199 ], [ -77.198471069335938, -11.771248817443791 ], [ -77.198196411132812, -11.771248817443791 ], [ -77.198196411132812, -11.770971298217717 ], [ -77.197914123535156, -11.770973205566406 ], [ -77.197914123535156, -11.770565032958871 ], [ -77.197914123535156, -11.769861221313477 ], [ -77.198074340820312, -11.769861221313477 ], [ -77.198196411132812, -11.769861221313477 ], [ -77.198196411132812, -11.769582748413086 ], [ -77.198471069335938, -11.769582748413086 ], [ -77.198471069335938, -11.769026756286621 ], [ -77.198753356933594, -11.769026756286621 ], [ -77.198753356933594, -11.768472671508789 ], [ -77.199028015136719, -11.768470764160156 ], [ -77.199028015136719, -11.767916679382324 ], [ -77.198196411132812, -11.767916679382324 ], [ -77.198196411132812, -11.76763916015625 ], [ -77.197364807128849, -11.76763916015625 ], [ -77.197364807128849, -11.767916679382324 ], [ -77.196807861328011, -11.767916679382324 ], [ -77.196807861328011, -11.76763916015625 ], [ -77.195419311523438, -11.76763916015625 ], [ -77.195419311523438, -11.767083168029785 ], [ -77.195137023925781, -11.767083168029785 ], [ -77.195137023925781, -11.766804695129395 ], [ -77.194580078124943, -11.766804695129395 ], [ -77.194580078124943, -11.76652717590332 ], [ -77.194030761718693, -11.76652717590332 ], [ -77.194030761718693, -11.766804695129395 ], [ -77.193473815917969, -11.766804695129395 ], [ -77.193473815917969, -11.767083168029785 ], [ -77.192916870117188, -11.767083168029785 ], [ -77.192916870117188, -11.767360687255859 ], [ -77.192359924316406, -11.767360687255859 ], [ -77.192359924316406, -11.76763916015625 ], [ -77.191528320312443, -11.76763916015625 ], [ -77.191528320312443, -11.767916679382324 ], [ -77.190971374511662, -11.767916679382324 ], [ -77.190971374511662, -11.768195152282715 ], [ -77.190696716308537, -11.768193244934025 ], [ -77.190696716308537, -11.770138740539551 ], [ -77.189582824707031, -11.770138740539551 ], [ -77.189582824707031, -11.770417213439941 ], [ -77.188468933105469, -11.770415306091252 ], [ -77.188468933105469, -11.770694732666016 ], [ -77.187637329101506, -11.770694732666016 ], [ -77.187637329101506, -11.770415306091252 ], [ -77.186805725097656, -11.770417213439941 ], [ -77.186805725097656, -11.770138740539551 ], [ -77.187080383300668, -11.770138740539551 ], [ -77.187080383300668, -11.769861221313477 ], [ -77.187362670898381, -11.769861221313477 ], [ -77.187362670898381, -11.769582748413086 ], [ -77.186805725097656, -11.769582748413086 ], [ -77.186805725097656, -11.769861221313477 ], [ -77.186248779296875, -11.769861221313477 ], [ -77.186248779296875, -11.769582748413086 ], [ -77.185417175292969, -11.769582748413086 ], [ -77.185417175292969, -11.769861221313477 ], [ -77.184585571289006, -11.769861221313477 ], [ -77.184585571289006, -11.769582748413086 ], [ -77.184303283691349, -11.769582748413086 ], [ -77.184303283691349, -11.769861221313477 ], [ -77.184028625488168, -11.769861221313477 ], [ -77.184028625488168, -11.769582748413086 ], [ -77.182083129882812, -11.769582748413086 ], [ -77.182083129882812, -11.769861221313477 ], [ -77.181808471679631, -11.769861221313477 ], [ -77.181808471679631, -11.770138740539551 ], [ -77.181251525878849, -11.770138740539551 ], [ -77.181251525878849, -11.770417213439941 ], [ -77.180969238281193, -11.770415306091252 ], [ -77.180969238281193, -11.770694732666016 ], [ -77.180694580078125, -11.770694732666016 ], [ -77.180694580078125, -11.771248817443791 ], [ -77.180969238281193, -11.771248817443791 ], [ -77.180969238281193, -11.771529197692871 ], [ -77.180694580078125, -11.771527290344181 ], [ -77.180694580078125, -11.772083282470646 ], [ -77.180419921875, -11.772083282470646 ], [ -77.180419921875, -11.772360801696777 ], [ -77.180137634277344, -11.772360801696777 ], [ -77.180137634277344, -11.772639274597054 ], [ -77.179862976074219, -11.772639274597054 ], [ -77.179862976074219, -11.772916793823242 ], [ -77.179031372070312, -11.772916793823242 ], [ -77.179031372070312, -11.773470878601017 ], [ -77.178749084472599, -11.773470878601017 ], [ -77.178749084472599, -11.773751258850098 ], [ -77.178474426269474, -11.773751258850098 ], [ -77.178474426269474, -11.774026870727482 ], [ -77.178192138671818, -11.774026870727482 ], [ -77.178192138671818, -11.773751258850098 ], [ -77.177360534667969, -11.773751258850098 ], [ -77.177360534667969, -11.772916793823242 ], [ -77.177085876464844, -11.772916793823242 ], [ -77.177085876464844, -11.771804809570199 ], [ -77.177360534667969, -11.771804809570199 ], [ -77.177360534667969, -11.771527290344181 ], [ -77.177085876464844, -11.771529197692871 ], [ -77.177085876464844, -11.771248817443791 ], [ -77.176803588867188, -11.771248817443791 ], [ -77.176803588867188, -11.770694732666016 ], [ -77.176528930664062, -11.770694732666016 ], [ -77.176528930664062, -11.770415306091252 ], [ -77.174858093261662, -11.770415306091252 ], [ -77.174858093261662, -11.769861221313477 ], [ -77.174583435058537, -11.769861221313477 ], [ -77.174583435058537, -11.769582748413086 ], [ -77.174026489257812, -11.769582748413086 ], [ -77.174026489257812, -11.769026756286621 ], [ -77.173751831054688, -11.769026756286621 ], [ -77.173751831054688, -11.768749237060433 ], [ -77.173469543457031, -11.76875114440918 ], [ -77.173469543457031, -11.76763916015625 ], [ -77.173194885253906, -11.76763916015625 ], [ -77.173194885253906, -11.767083168029785 ], [ -77.172920227050781, -11.767083168029785 ], [ -77.172920227050781, -11.766804695129395 ], [ -77.172637939453125, -11.766804695129395 ], [ -77.172637939453125, -11.766250610351506 ], [ -77.172363281249943, -11.766250610351506 ], [ -77.172363281249943, -11.765970230102539 ], [ -77.172080993652287, -11.765970230102539 ], [ -77.172080993652287, -11.765417098999023 ], [ -77.171806335449162, -11.765417098999023 ], [ -77.171806335449162, -11.764860153198185 ], [ -77.171539306640625, -11.764860153198185 ], [ -77.171524047851506, -11.764304161071721 ], [ -77.171806335449162, -11.764304161071721 ], [ -77.171806335449162, -11.763472557067814 ], [ -77.171524047851506, -11.763472557067814 ], [ -77.171524047851506, -11.762082099914494 ], [ -77.171249389648324, -11.762082099914494 ], [ -77.171249389648324, -11.761922836303654 ], [ -77.171249389648324, -11.761526107788029 ], [ -77.171524047851506, -11.761526107788029 ], [ -77.171524047851506, -11.760416030883789 ], [ -77.171806335449162, -11.760416030883789 ], [ -77.171806335449162, -11.759860038757211 ], [ -77.172080993652287, -11.759860038757211 ], [ -77.172080993652287, -11.759304046630803 ], [ -77.172363281249943, -11.759304046630803 ], [ -77.172363281249943, -11.758749961853027 ], [ -77.172637939453125, -11.758749961853027 ], [ -77.172637939453125, -11.758193969726562 ], [ -77.172920227050781, -11.758193969726562 ], [ -77.172920227050781, -11.756527900695801 ], [ -77.172637939453125, -11.756527900695801 ], [ -77.172637939453125, -11.754861831664982 ], [ -77.172363281249943, -11.754861831664982 ], [ -77.172363281249943, -11.753472328186035 ], [ -77.172080993652287, -11.753472328186035 ], [ -77.172080993652287, -11.752083778381234 ], [ -77.172363281249943, -11.752083778381234 ], [ -77.172363281249943, -11.751806259155217 ], [ -77.172080993652287, -11.751806259155217 ], [ -77.172080993652287, -11.749027252197266 ], [ -77.171806335449162, -11.749027252197266 ], [ -77.171806335449162, -11.748748779296875 ], [ -77.171524047851506, -11.748748779296875 ], [ -77.171524047851506, -11.748471260070801 ], [ -77.170974731445312, -11.748471260070801 ], [ -77.170974731445312, -11.747915267944222 ], [ -77.170692443847656, -11.747915267944222 ], [ -77.170692443847656, -11.747638702392521 ], [ -77.170974731445312, -11.747638702392521 ], [ -77.170974731445312, -11.747082710266113 ], [ -77.170135498046875, -11.747082710266113 ], [ -77.170135498046875, -11.746526718139648 ], [ -77.16986083984375, -11.746526718139648 ], [ -77.16986083984375, -11.746249198913574 ], [ -77.169586181640625, -11.746249198913574 ], [ -77.169586181640625, -11.745695114135685 ], [ -77.16986083984375, -11.745695114135685 ], [ -77.16986083984375, -11.745139122009221 ], [ -77.169586181640625, -11.745139122009221 ], [ -77.169586181640625, -11.743748664855957 ], [ -77.16986083984375, -11.743748664855957 ], [ -77.16986083984375, -11.741805076599064 ], [ -77.170135498046875, -11.741805076599064 ], [ -77.170135498046875, -11.740139007568246 ], [ -77.170417785644531, -11.740139007568246 ], [ -77.170417785644531, -11.738195419311523 ], [ -77.170692443847656, -11.738195419311523 ], [ -77.170692443847656, -11.736529350280762 ], [ -77.170974731445312, -11.736529350280762 ], [ -77.170974731445312, -11.734860420227051 ], [ -77.171249389648324, -11.734860420227051 ], [ -77.171249389648324, -11.733471870422306 ], [ -77.171524047851506, -11.733471870422306 ], [ -77.171524047851506, -11.732915878295842 ], [ -77.171806335449162, -11.732915878295842 ], [ -77.171806335449162, -11.732084274291879 ], [ -77.172080993652287, -11.732084274291879 ], [ -77.172080993652287, -11.731249809265023 ], [ -77.172363281249943, -11.731249809265023 ], [ -77.172363281249943, -11.730693817138615 ], [ -77.172637939453125, -11.730693817138615 ], [ -77.172637939453125, -11.73013782501215 ], [ -77.172920227050781, -11.73013782501215 ], [ -77.172920227050781, -11.729860305786076 ], [ -77.173194885253906, -11.729862213134766 ], [ -77.173194885253906, -11.729583740234375 ], [ -77.173469543457031, -11.729583740234375 ], [ -77.173469543457031, -11.729304313659611 ], [ -77.173751831054688, -11.729306221008301 ], [ -77.173751831054688, -11.72902774810791 ], [ -77.174026489257812, -11.72902774810791 ], [ -77.174026489257812, -11.728750228881836 ], [ -77.174308776855469, -11.728750228881836 ], [ -77.174308776855469, -11.728194236755257 ], [ -77.174583435058537, -11.728194236755257 ], [ -77.174583435058537, -11.72791576385498 ], [ -77.175140380859318, -11.72791576385498 ], [ -77.175140380859318, -11.727359771728402 ], [ -77.175415039062443, -11.727359771728402 ], [ -77.175415039062443, -11.727082252502385 ], [ -77.175697326660099, -11.727084159851074 ], [ -77.175697326660099, -11.726805686950684 ], [ -77.176246643066406, -11.726805686950684 ], [ -77.176246643066406, -11.726528167724609 ], [ -77.176528930664062, -11.726528167724609 ], [ -77.176528930664062, -11.726249694824219 ], [ -77.176803588867188, -11.726249694824219 ], [ -77.176803588867188, -11.725972175598145 ], [ -77.177085876464844, -11.725972175598145 ], [ -77.177085876464844, -11.725693702697754 ], [ -77.177360534667969, -11.725693702697754 ], [ -77.177360534667969, -11.725139617919865 ], [ -77.177635192871037, -11.725139617919865 ], [ -77.177635192871037, -11.7245836257934 ], [ -77.177917480468693, -11.7245836257934 ], [ -77.177917480468693, -11.724027633666992 ], [ -77.178192138671818, -11.724027633666992 ], [ -77.178192138671818, -11.723473548889046 ], [ -77.178474426269474, -11.723473548889046 ], [ -77.178474426269474, -11.722917556762638 ], [ -77.178749084472599, -11.722917556762638 ], [ -77.178749084472599, -11.722637176513672 ], [ -77.179031372070312, -11.722637176513672 ], [ -77.179031372070312, -11.722081184387207 ], [ -77.179306030273438, -11.722081184387207 ], [ -77.179306030273438, -11.721527099609318 ], [ -77.179580688476562, -11.721527099609318 ], [ -77.179580688476562, -11.721248626708928 ], [ -77.179862976074219, -11.721248626708928 ], [ -77.179862976074219, -11.720694541931152 ], [ -77.180137634277344, -11.720694541931152 ], [ -77.180137634277344, -11.720138549804688 ], [ -77.180419921875, -11.720138549804688 ], [ -77.180419921875, -11.71985912322998 ], [ -77.180694580078125, -11.71985912322998 ], [ -77.180694580078125, -11.719305038452035 ], [ -77.180969238281193, -11.719305038452035 ], [ -77.180969238281193, -11.718749046325627 ], [ -77.181251525878849, -11.718749046325627 ], [ -77.181251525878849, -11.718193054199162 ], [ -77.181526184081974, -11.718193054199162 ], [ -77.181526184081974, -11.717917442321777 ], [ -77.181808471679631, -11.717917442321777 ], [ -77.181808471679631, -11.717361450195312 ], [ -77.182083129882812, -11.717361450195312 ], [ -77.182083129882812, -11.717082977294922 ], [ -77.182357788085938, -11.717082977294922 ], [ -77.182357788085938, -11.716526985168457 ], [ -77.182640075683594, -11.716526985168457 ], [ -77.182640075683594, -11.715970993041992 ], [ -77.182914733886719, -11.715972900390625 ], [ -77.182914733886719, -11.715139389038086 ], [ -77.183197021484375, -11.715139389038086 ], [ -77.183197021484375, -11.714347839355469 ], [ -77.183197021484375, -11.713750839233342 ], [ -77.1834716796875, -11.713750839233342 ], [ -77.1834716796875, -11.712917327880859 ], [ -77.183746337890625, -11.712917327880859 ], [ -77.183746337890625, -11.712638854980412 ], [ -77.184028625488168, -11.712638854980412 ], [ -77.184028625488168, -11.712361335754395 ], [ -77.183746337890625, -11.712361335754395 ], [ -77.183746337890625, -11.712082862854004 ], [ -77.183914184570256, -11.712082862854004 ], [ -77.184028625488168, -11.712082862854004 ], [ -77.184028625488168, -11.711977958679142 ], [ -77.184028625488168, -11.711804389953556 ], [ -77.184303283691349, -11.711804389953556 ], [ -77.184303283691349, -11.711528778076058 ], [ -77.184585571289006, -11.711528778076058 ], [ -77.184585571289006, -11.711251258850041 ], [ -77.184860229492131, -11.711251258850041 ], [ -77.184860229492131, -11.71097278594965 ], [ -77.185142517089787, -11.71097278594965 ], [ -77.185142517089787, -11.711251258850041 ], [ -77.18597412109375, -11.711251258850041 ], [ -77.18597412109375, -11.71097278594965 ], [ -77.186248779296875, -11.71097278594965 ], [ -77.186248779296875, -11.710692405700684 ], [ -77.186531066894531, -11.710695266723576 ], [ -77.186531066894531, -11.710416793823185 ], [ -77.186805725097656, -11.710416793823185 ], [ -77.186805725097656, -11.710138320922795 ], [ -77.187080383300668, -11.710138320922795 ], [ -77.187080383300668, -11.70958232879633 ], [ -77.187362670898381, -11.70958232879633 ], [ -77.187362670898381, -11.709306716918945 ], [ -77.187637329101506, -11.709306716918945 ], [ -77.187637329101506, -11.708749771118164 ], [ -77.187919616699162, -11.708749771118164 ], [ -77.187919616699162, -11.708193778991699 ], [ -77.188194274902287, -11.708193778991699 ], [ -77.188194274902287, -11.707916259765625 ], [ -77.188468933105469, -11.707919120788574 ], [ -77.188468933105469, -11.707360267639046 ], [ -77.188751220703125, -11.707360267639046 ], [ -77.188751220703125, -11.707083702087346 ], [ -77.18902587890625, -11.707083702087346 ], [ -77.18902587890625, -11.706527709960938 ], [ -77.189308166503906, -11.706527709960938 ], [ -77.189308166503906, -11.705971717834473 ], [ -77.189582824707031, -11.705971717834473 ], [ -77.189582824707031, -11.705694198608398 ], [ -77.189857482910156, -11.705694198608398 ], [ -77.189857482910156, -11.705138206481934 ], [ -77.190139770507812, -11.705138206481934 ], [ -77.190139770507812, -11.704859733581543 ], [ -77.190414428710881, -11.704859733581543 ], [ -77.190414428710881, -11.704584121704045 ], [ -77.190696716308537, -11.704584121704045 ], [ -77.190696716308537, -11.704305648803654 ], [ -77.190971374511662, -11.704305648803654 ], [ -77.190971374511662, -11.704028129577637 ], [ -77.191253662109318, -11.704028129577637 ], [ -77.191253662109318, -11.703749656677189 ], [ -77.191528320312443, -11.703749656677189 ], [ -77.191528320312443, -11.703470230102425 ], [ -77.191802978515625, -11.703472137451172 ], [ -77.191802978515625, -11.703193664550781 ], [ -77.192085266113281, -11.703193664550781 ], [ -77.192085266113281, -11.702916145324707 ], [ -77.192359924316406, -11.702918052673283 ], [ -77.192359924316406, -11.702637672424316 ], [ -77.192642211914062, -11.702637672424316 ], [ -77.192642211914062, -11.702360153198242 ], [ -77.192916870117188, -11.702362060546818 ], [ -77.192916870117188, -11.702083587646428 ], [ -77.193191528320312, -11.702083587646428 ], [ -77.193191528320312, -11.701804161071777 ], [ -77.193473815917969, -11.701806068420353 ], [ -77.193473815917969, -11.701527595519963 ], [ -77.193748474121037, -11.701527595519963 ], [ -77.193748474121037, -11.701250076293888 ], [ -77.194580078124943, -11.701250076293888 ], [ -77.194580078124943, -11.700415611267033 ], [ -77.194862365722656, -11.700415611267033 ], [ -77.194862365722656, -11.700138092041016 ], [ -77.195137023925781, -11.700139999389648 ], [ -77.195137023925781, -11.699861526489258 ], [ -77.195419311523438, -11.699861526489258 ], [ -77.195419311523438, -11.699581146240178 ], [ -77.195693969726562, -11.69958400726307 ], [ -77.195693969726562, -11.699305534362793 ], [ -77.195968627929688, -11.699305534362793 ], [ -77.195968627929688, -11.698749542236214 ], [ -77.196250915527344, -11.698749542236214 ], [ -77.196250915527344, -11.698472023010197 ], [ -77.196525573730469, -11.698472023010197 ], [ -77.196525573730469, -11.698193550109806 ], [ -77.196807861328011, -11.698193550109806 ], [ -77.196807861328011, -11.697915077209359 ], [ -77.197082519531193, -11.697915077209359 ], [ -77.197082519531193, -11.697359085082951 ], [ -77.197364807128849, -11.697361946105957 ], [ -77.197364807128849, -11.697084426879769 ], [ -77.197639465331974, -11.697084426879769 ], [ -77.197639465331974, -11.696805953979492 ], [ -77.197914123535156, -11.696805953979492 ], [ -77.197914123535156, -11.696249008178711 ], [ -77.198196411132812, -11.696249008178711 ], [ -77.198196411132812, -11.69597053527832 ], [ -77.198471069335938, -11.69597053527832 ], [ -77.198471069335938, -11.695693016052246 ], [ -77.198753356933594, -11.695693016052246 ], [ -77.198753356933594, -11.695418357849121 ], [ -77.199028015136719, -11.695418357849121 ], [ -77.199028015136719, -11.69486141204834 ], [ -77.199302673339844, -11.69486141204834 ], [ -77.199302673339844, -11.694581031799203 ], [ -77.1995849609375, -11.694582939147949 ], [ -77.1995849609375, -11.693195343017521 ], [ -77.199302673339844, -11.693195343017521 ], [ -77.199302673339844, -11.691527366638184 ], [ -77.199028015136719, -11.691527366638184 ], [ -77.199028015136719, -11.691248893737793 ], [ -77.198471069335938, -11.691248893737793 ], [ -77.198471069335938, -11.690973281860295 ], [ -77.197731018066349, -11.690973281860295 ], [ -77.197082519531193, -11.690973281860295 ], [ -77.197082519531193, -11.691248893737793 ], [ -77.196372985839844, -11.691248893737793 ], [ -77.196250915527344, -11.691248893737793 ], [ -77.196250915527344, -11.691355705261174 ], [ -77.196250915527344, -11.691527366638184 ], [ -77.196052551269531, -11.691527366638184 ], [ -77.195693969726562, -11.691527366638184 ], [ -77.195693969726562, -11.691248893737793 ], [ -77.195419311523438, -11.691248893737793 ], [ -77.195419311523438, -11.690973281860295 ], [ -77.194862365722656, -11.690973281860295 ], [ -77.194862365722656, -11.690694808959847 ], [ -77.194580078124943, -11.690694808959847 ], [ -77.194580078124943, -11.69041728973383 ], [ -77.194030761718693, -11.69041728973383 ], [ -77.194030761718693, -11.690138816833439 ], [ -77.193748474121037, -11.690138816833439 ], [ -77.193748474121037, -11.689861297607365 ], [ -77.193473815917969, -11.689861297607365 ], [ -77.193473815917969, -11.6893053054809 ], [ -77.193191528320312, -11.6893053054809 ], [ -77.193191528320312, -11.688751220703125 ], [ -77.192916870117188, -11.688751220703125 ], [ -77.192916870117188, -11.68819522857666 ], [ -77.192642211914062, -11.68819522857666 ], [ -77.192642211914062, -11.687360763549805 ], [ -77.192916870117188, -11.687360763549805 ], [ -77.192916870117188, -11.685970306396371 ], [ -77.193191528320312, -11.685973167419434 ], [ -77.193191528320312, -11.684584617614689 ], [ -77.193473815917969, -11.684584617614689 ], [ -77.193473815917969, -11.683472633361816 ], [ -77.193748474121037, -11.683472633361816 ], [ -77.193748474121037, -11.682359695434513 ], [ -77.194030761718693, -11.682359695434513 ], [ -77.194030761718693, -11.681526184082031 ], [ -77.194305419921818, -11.681528091430607 ], [ -77.194305419921818, -11.680693626403752 ], [ -77.194580078124943, -11.680693626403752 ], [ -77.194580078124943, -11.679583549499512 ], [ -77.194862365722656, -11.679583549499512 ], [ -77.194862365722656, -11.678750038146859 ], [ -77.193763732910156, -11.678276062011719 ], [ -77.188407897949162, -11.676685333251896 ], [ -77.185951232910156, -11.675493240356388 ], [ -77.183425903320256, -11.673897743225098 ], [ -77.179244995117131, -11.672969818115178 ], [ -77.177253723144474, -11.671250343322754 ], [ -77.173179626464844, -11.666255950927734 ], [ -77.171401977539062, -11.66456031799305 ], [ -77.163650512695312, -11.66154670715332 ], [ -77.158699035644531, -11.659260749816838 ], [ -77.156295776367188, -11.658791542053166 ], [ -77.153274536132812, -11.658614158630371 ], [ -77.150123596191406, -11.658665657043457 ], [ -77.146461486816406, -11.659063339233398 ], [ -77.145103454589787, -11.65971660614008 ], [ -77.141593933105469, -11.662515640258789 ], [ -77.140327453613224, -11.662997245788574 ], [ -77.139198303222599, -11.663112640380859 ], [ -77.138374328613281, -11.662856101989689 ], [ -77.137588500976562, -11.661090850830078 ], [ -77.136627197265568, -11.659952163696232 ], [ -77.135368347167912, -11.658922195434513 ], [ -77.133995056152344, -11.658263206481877 ], [ -77.132110595703125, -11.657996177673283 ], [ -77.13018798828125, -11.658027648925668 ], [ -77.124992370605412, -11.659188270568791 ], [ -77.123634338378849, -11.659006118774357 ], [ -77.122535705566406, -11.658438682556152 ], [ -77.122085571289062, -11.657925605773869 ], [ -77.121978759765625, -11.657284736633244 ], [ -77.122344970703125, -11.655259132385197 ], [ -77.122825622558594, -11.654458999633789 ], [ -77.1260986328125, -11.651026725768986 ], [ -77.128463745117188, -11.64919376373291 ], [ -77.130149841308594, -11.648296356201115 ], [ -77.130775451660156, -11.647730827331543 ], [ -77.131111145019531, -11.642042160034123 ], [ -77.131782531738281, -11.639806747436523 ], [ -77.132507324218693, -11.639203071594238 ], [ -77.133926391601506, -11.638532638549805 ], [ -77.136215209960881, -11.638065338134709 ], [ -77.136909484863224, -11.637281417846623 ], [ -77.137435913085938, -11.636138916015625 ], [ -77.137619018554688, -11.635088920593205 ], [ -77.137191772460881, -11.632960319519043 ], [ -77.13665771484375, -11.631725311279297 ], [ -77.134628295898324, -11.629003524780273 ], [ -77.132812499999943, -11.627191543579102 ], [ -77.130805969238224, -11.626022338867188 ], [ -77.128738403320312, -11.625304222106934 ], [ -77.125915527343693, -11.626437187194711 ], [ -77.124984741210881, -11.627229690551758 ], [ -77.122611999511605, -11.628260612487793 ], [ -77.121360778808537, -11.629316329956055 ], [ -77.118576049804631, -11.62993335723877 ], [ -77.115974426269531, -11.629817008972168 ], [ -77.112930297851562, -11.629026412963867 ], [ -77.109634399414006, -11.62772274017334 ], [ -77.107620239257756, -11.626299858093262 ], [ -77.105735778808594, -11.624361038208008 ], [ -77.103897094726506, -11.621999740600529 ], [ -77.103218078613224, -11.620673179626465 ], [ -77.102783203125, -11.618544578552246 ], [ -77.102401733398438, -11.617708206176701 ], [ -77.100044250488281, -11.615066528320312 ], [ -77.09735107421875, -11.612771034240723 ], [ -77.094581604003906, -11.610804557800293 ], [ -77.090736389160099, -11.608472824096623 ], [ -77.087661743164062, -11.60699558258051 ], [ -77.085990905761605, -11.605770111083871 ], [ -77.085258483886719, -11.603028297424203 ], [ -77.085357666015625, -11.599881172180062 ], [ -77.084587097167969, -11.597861289978027 ], [ -77.084152221679631, -11.595616340637207 ], [ -77.083229064941406, -11.593969345092717 ], [ -77.081680297851506, -11.592623710632324 ], [ -77.081222534179574, -11.591967582702637 ], [ -77.079772949218693, -11.589083671569824 ], [ -77.078018188476562, -11.584542274475098 ], [ -77.077575683593693, -11.582033157348576 ], [ -77.077758789062443, -11.578134536743107 ], [ -77.077484130859318, -11.577108383178597 ], [ -77.076988220214844, -11.576634407043457 ], [ -77.075248718261719, -11.575848579406625 ], [ -77.070175170898438, -11.574767112731934 ], [ -77.068496704101562, -11.573410987854004 ], [ -77.067611694335938, -11.573039054870605 ], [ -77.066238403320256, -11.572877883911076 ], [ -77.064918518066406, -11.573843955993652 ], [ -77.064483642578125, -11.574931144714299 ], [ -77.064262390136719, -11.57750225067133 ], [ -77.063972473144531, -11.577964782714844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-LIM", "NAME_0": "Peru", "ID_1": 16, "NAME_1": "Lima", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.616806030273438, -12.785692214965763 ], [ -76.616806030273438, -12.785972595214844 ], [ -76.616249084472656, -12.785972595214844 ], [ -76.616249084472656, -12.786528587341309 ], [ -76.615974426269531, -12.786528587341309 ], [ -76.615974426269531, -12.787084579467773 ], [ -76.615692138671875, -12.787084579467773 ], [ -76.615692138671875, -12.787361145019474 ], [ -76.615974426269531, -12.787358283996525 ], [ -76.615974426269531, -12.78791427612299 ], [ -76.616249084472656, -12.78791427612299 ], [ -76.616249084472656, -12.788750648498535 ], [ -76.616531372070312, -12.788750648498535 ], [ -76.616531372070312, -12.789029121398926 ], [ -76.617080688476562, -12.789029121398926 ], [ -76.617080688476562, -12.789583206176701 ], [ -76.616806030273438, -12.789580345153809 ], [ -76.616806030273438, -12.789860725402775 ], [ -76.616531372070312, -12.789860725402775 ], [ -76.616531372070312, -12.790695190429631 ], [ -76.616249084472656, -12.790693283081055 ], [ -76.616249084472656, -12.79124927520752 ], [ -76.615974426269531, -12.79124927520752 ], [ -76.615974426269531, -12.791805267333984 ], [ -76.615692138671875, -12.791805267333984 ], [ -76.615692138671875, -12.792082786560002 ], [ -76.615417480468693, -12.792082786560002 ], [ -76.615417480468693, -12.792638778686467 ], [ -76.615135192871037, -12.792638778686467 ], [ -76.615135192871037, -12.793194770812931 ], [ -76.615417480468693, -12.793194770812931 ], [ -76.615417480468693, -12.79374885559082 ], [ -76.615692138671875, -12.79374885559082 ], [ -76.615692138671875, -12.794027328491211 ], [ -76.616806030273438, -12.794027328491211 ], [ -76.616806030273438, -12.793473243713322 ], [ -76.617080688476562, -12.793473243713322 ], [ -76.617080688476562, -12.793194770812931 ], [ -76.617362976074219, -12.793194770812931 ], [ -76.617362976074219, -12.792638778686467 ], [ -76.617637634277287, -12.792638778686467 ], [ -76.617637634277287, -12.792361259460449 ], [ -76.617919921874943, -12.792361259460449 ], [ -76.617919921874943, -12.792638778686467 ], [ -76.618194580078068, -12.792638778686467 ], [ -76.618194580078068, -12.792917251586857 ], [ -76.618751525878849, -12.792917251586857 ], [ -76.618751525878849, -12.793194770812931 ], [ -76.619026184082031, -12.793194770812931 ], [ -76.619026184082031, -12.793473243713322 ], [ -76.619308471679688, -12.793473243713322 ], [ -76.619308471679688, -12.79374885559082 ], [ -76.619857788085938, -12.79374885559082 ], [ -76.619857788085938, -12.794304847717285 ], [ -76.619583129882812, -12.794304847717285 ], [ -76.619583129882812, -12.79486083984375 ], [ -76.619308471679688, -12.79486083984375 ], [ -76.619308471679688, -12.795416831970158 ], [ -76.619026184082031, -12.795416831970158 ], [ -76.619026184082031, -12.795970916748047 ], [ -76.618751525878849, -12.795970916748047 ], [ -76.618751525878849, -12.796526908874512 ], [ -76.621528625488224, -12.796526908874512 ], [ -76.621528625488224, -12.796805381774902 ], [ -76.622642517089844, -12.796805381774902 ], [ -76.622642517089844, -12.797082901000977 ], [ -76.622917175292969, -12.797080993652287 ], [ -76.622917175292969, -12.797636985778752 ], [ -76.623191833496094, -12.797636985778752 ], [ -76.623191833496094, -12.797917366027832 ], [ -76.62347412109375, -12.797917366027832 ], [ -76.62347412109375, -12.798195838928223 ], [ -76.624031066894418, -12.798195838928223 ], [ -76.624031066894418, -12.797917366027832 ], [ -76.624305725097599, -12.797917366027832 ], [ -76.624305725097599, -12.797636985778752 ], [ -76.624862670898381, -12.797638893127441 ], [ -76.624862670898381, -12.797361373901367 ], [ -76.625419616699219, -12.797361373901367 ], [ -76.625419616699219, -12.797080993652287 ], [ -76.625968933105469, -12.797082901000977 ], [ -76.625968933105469, -12.796805381774902 ], [ -76.626251220703125, -12.796805381774902 ], [ -76.626251220703125, -12.795970916748047 ], [ -76.62652587890625, -12.795970916748047 ], [ -76.62652587890625, -12.795695304870605 ], [ -76.626808166503906, -12.795695304870605 ], [ -76.626808166503906, -12.795416831970158 ], [ -76.627082824706918, -12.795416831970158 ], [ -76.627082824706918, -12.794304847717285 ], [ -76.627357482910099, -12.794304847717285 ], [ -76.627357482910099, -12.794029235839787 ], [ -76.627639770507756, -12.794027328491211 ], [ -76.627639770507756, -12.793473243713322 ], [ -76.627914428710881, -12.793473243713322 ], [ -76.627914428710881, -12.792917251586857 ], [ -76.628196716308537, -12.792917251586857 ], [ -76.628196716308537, -12.792638778686467 ], [ -76.628471374511719, -12.792638778686467 ], [ -76.628471374511719, -12.791805267333984 ], [ -76.627357482910099, -12.791805267333984 ], [ -76.627357482910099, -12.791526794433594 ], [ -76.626808166503906, -12.791526794433594 ], [ -76.626808166503906, -12.79124927520752 ], [ -76.62652587890625, -12.79124927520752 ], [ -76.62652587890625, -12.790693283081055 ], [ -76.626251220703125, -12.790695190429631 ], [ -76.626251220703125, -12.79041671752924 ], [ -76.625968933105469, -12.79041671752924 ], [ -76.625968933105469, -12.791251182556096 ], [ -76.625419616699219, -12.791251182556096 ], [ -76.625419616699219, -12.790970802307129 ], [ -76.624862670898381, -12.790970802307129 ], [ -76.624862670898381, -12.790693283081055 ], [ -76.624580383300724, -12.790695190429631 ], [ -76.624580383300724, -12.79041671752924 ], [ -76.624031066894418, -12.79041671752924 ], [ -76.624031066894418, -12.790139198303166 ], [ -76.623748779296875, -12.790139198303166 ], [ -76.623748779296875, -12.789860725402775 ], [ -76.62347412109375, -12.789860725402775 ], [ -76.62347412109375, -12.78930473327631 ], [ -76.623191833496094, -12.78930473327631 ], [ -76.623191833496094, -12.788750648498535 ], [ -76.622642517089844, -12.788750648498535 ], [ -76.622642517089844, -12.788473129272461 ], [ -76.622360229492188, -12.788473129272461 ], [ -76.622360229492188, -12.78819465637207 ], [ -76.621246337890568, -12.78819465637207 ], [ -76.621246337890568, -12.78791427612299 ], [ -76.620971679687443, -12.787917137145882 ], [ -76.620971679687443, -12.787638664245605 ], [ -76.620697021484375, -12.787638664245605 ], [ -76.620697021484375, -12.787917137145882 ], [ -76.620414733886719, -12.78791427612299 ], [ -76.620414733886719, -12.78819465637207 ], [ -76.620140075683594, -12.78819465637207 ], [ -76.620140075683594, -12.78930473327631 ], [ -76.619583129882812, -12.78930473327631 ], [ -76.619583129882812, -12.789029121398926 ], [ -76.619026184082031, -12.789029121398926 ], [ -76.619026184082031, -12.788473129272461 ], [ -76.618751525878849, -12.788473129272461 ], [ -76.618751525878849, -12.78819465637207 ], [ -76.618194580078068, -12.78819465637207 ], [ -76.618194580078068, -12.78791427612299 ], [ -76.617919921874943, -12.78791427612299 ], [ -76.617919921874943, -12.787358283996525 ], [ -76.617637634277287, -12.787358283996525 ], [ -76.617637634277287, -12.786802291870117 ], [ -76.617362976074219, -12.786802291870117 ], [ -76.617362976074219, -12.786248207092171 ], [ -76.617080688476562, -12.786251068115234 ], [ -76.617080688476562, -12.785972595214844 ], [ -76.617362976074219, -12.785972595214844 ], [ -76.617362976074219, -12.785692214965763 ], [ -76.616806030273438, -12.785692214965763 ] ] ], [ [ [ -77.746246337890625, -11.381525993347111 ], [ -77.746246337890625, -11.381806373596191 ], [ -77.745140075683537, -11.381806373596191 ], [ -77.745140075683537, -11.382081985473519 ], [ -77.744857788085881, -11.382081985473519 ], [ -77.744857788085881, -11.382362365722656 ], [ -77.744583129882756, -11.382362365722656 ], [ -77.744583129882756, -11.382637977600098 ], [ -77.744026184081918, -11.382637977600098 ], [ -77.744026184081918, -11.382916450500375 ], [ -77.742637634277344, -11.382916450500375 ], [ -77.742637634277344, -11.383472442626953 ], [ -77.74346923828125, -11.383472442626953 ], [ -77.74346923828125, -11.383749961853027 ], [ -77.744026184081918, -11.383748054504338 ], [ -77.744026184081918, -11.384028434753418 ], [ -77.744308471679631, -11.384028434753418 ], [ -77.744308471679631, -11.384305953979492 ], [ -77.744583129882756, -11.384304046630803 ], [ -77.744583129882756, -11.384584426879883 ], [ -77.744857788085881, -11.384584426879883 ], [ -77.744857788085881, -11.384860038757267 ], [ -77.745140075683537, -11.384860038757267 ], [ -77.745140075683537, -11.385137557983285 ], [ -77.745697021484375, -11.385137557983285 ], [ -77.745697021484375, -11.385416030883732 ], [ -77.747360229492131, -11.385416030883732 ], [ -77.747360229492131, -11.385693550109863 ], [ -77.748191833496037, -11.385693550109863 ], [ -77.748191833496037, -11.384860038757267 ], [ -77.747917175292912, -11.384860038757267 ], [ -77.747917175292912, -11.384584426879883 ], [ -77.747642517089787, -11.384584426879883 ], [ -77.747642517089787, -11.384304046630803 ], [ -77.747085571289062, -11.384305953979492 ], [ -77.747085571289062, -11.384028434753418 ], [ -77.746528625488281, -11.384028434753418 ], [ -77.746528625488281, -11.383748054504338 ], [ -77.747360229492131, -11.383749961853027 ], [ -77.747360229492131, -11.383472442626953 ], [ -77.747917175292912, -11.383472442626953 ], [ -77.747917175292912, -11.383192062377873 ], [ -77.747642517089787, -11.383193969726562 ], [ -77.747642517089787, -11.382362365722656 ], [ -77.747917175292912, -11.382362365722656 ], [ -77.747917175292912, -11.381806373596191 ], [ -77.748191833496037, -11.381806373596191 ], [ -77.748191833496037, -11.381525993347111 ], [ -77.746246337890625, -11.381525993347111 ] ] ], [ [ [ -77.671806335449162, -11.018472671508789 ], [ -77.671806335449162, -11.01875114440918 ], [ -77.671524047851506, -11.01874923706049 ], [ -77.671524047851506, -11.021248817443791 ], [ -77.671249389648381, -11.021248817443791 ], [ -77.671249389648381, -11.021527290344238 ], [ -77.670974731445199, -11.021527290344238 ], [ -77.670974731445199, -11.022360801696721 ], [ -77.671249389648381, -11.022360801696721 ], [ -77.671249389648381, -11.022917747497502 ], [ -77.671524047851506, -11.022917747497502 ], [ -77.671524047851506, -11.023470878601074 ], [ -77.671806335449162, -11.023470878601074 ], [ -77.671806335449162, -11.022917747497502 ], [ -77.672080993652344, -11.022917747497502 ], [ -77.672080993652344, -11.022639274597111 ], [ -77.67236328125, -11.022639274597111 ], [ -77.67236328125, -11.022360801696721 ], [ -77.672637939453125, -11.022360801696721 ], [ -77.672637939453125, -11.022083282470646 ], [ -77.672920227050781, -11.022083282470646 ], [ -77.672920227050781, -11.021804809570256 ], [ -77.673751831054688, -11.021804809570256 ], [ -77.673751831054688, -11.020971298217773 ], [ -77.674026489257699, -11.020971298217773 ], [ -77.674026489257699, -11.020417213439885 ], [ -77.674308776855412, -11.020417213439885 ], [ -77.674308776855412, -11.020138740539437 ], [ -77.674026489257699, -11.020138740539437 ], [ -77.674026489257699, -11.019859313964844 ], [ -77.674583435058537, -11.019859313964844 ], [ -77.674583435058537, -11.019305229186955 ], [ -77.674308776855412, -11.019305229186955 ], [ -77.674308776855412, -11.019026756286564 ], [ -77.673751831054688, -11.019026756286564 ], [ -77.673751831054688, -11.01874923706049 ], [ -77.673469543457031, -11.01875114440918 ], [ -77.673469543457031, -11.018472671508789 ], [ -77.673194885253906, -11.018472671508789 ], [ -77.673194885253906, -11.01875114440918 ], [ -77.672920227050781, -11.01875114440918 ], [ -77.672920227050781, -11.018472671508789 ], [ -77.67236328125, -11.018472671508789 ], [ -77.67236328125, -11.01875114440918 ], [ -77.672080993652344, -11.01875114440918 ], [ -77.672080993652344, -11.018472671508789 ], [ -77.671806335449162, -11.018472671508789 ] ] ], [ [ [ -76.9052734375, -10.277173042297363 ], [ -76.902717590332031, -10.281997680664062 ], [ -76.900032043457031, -10.285382270812988 ], [ -76.894371032714787, -10.288860321044922 ], [ -76.893363952636719, -10.290295600891 ], [ -76.892501831054688, -10.292125701904297 ], [ -76.892066955566406, -10.295057296752873 ], [ -76.893455505371094, -10.301385879516602 ], [ -76.893562316894531, -10.303266525268498 ], [ -76.893318176269474, -10.304686546325684 ], [ -76.892784118652344, -10.304716110229379 ], [ -76.891853332519531, -10.305266380310059 ], [ -76.889556884765625, -10.305478096008301 ], [ -76.888885498046875, -10.306150436401254 ], [ -76.887992858886662, -10.30648040771473 ], [ -76.884620666503906, -10.306844711303711 ], [ -76.882522583007812, -10.30781364440918 ], [ -76.880737304687443, -10.309281349182129 ], [ -76.879852294921875, -10.310297966003418 ], [ -76.876625061035099, -10.316691398620605 ], [ -76.875999450683594, -10.318329811096078 ], [ -76.87469482421875, -10.323428153991642 ], [ -76.872673034667969, -10.327388763427734 ], [ -76.872543334960881, -10.328997611999512 ], [ -76.872795104980469, -10.332657814025879 ], [ -76.872421264648438, -10.334513664245605 ], [ -76.871452331542969, -10.336109161376896 ], [ -76.870277404785156, -10.337256431579533 ], [ -76.869094848632756, -10.338021278381348 ], [ -76.868850708007812, -10.338432312011605 ], [ -76.868911743164006, -10.338998794555664 ], [ -76.869285583496037, -10.339585304260197 ], [ -76.874053955078068, -10.344411849975586 ], [ -76.874435424804631, -10.34556770324707 ], [ -76.874519348144531, -10.346787452697754 ], [ -76.873855590820312, -10.348967552185002 ], [ -76.870285034179688, -10.352633476257324 ], [ -76.866806030273381, -10.357796669006291 ], [ -76.865791320800781, -10.35969066619873 ], [ -76.864730834960881, -10.362618446350098 ], [ -76.86431884765625, -10.365421295165902 ], [ -76.864456176757812, -10.367167472839355 ], [ -76.866279602050781, -10.371068954467717 ], [ -76.866264343261605, -10.37430477142334 ], [ -76.865829467773438, -10.375176429748535 ], [ -76.863052368164062, -10.374758720397949 ], [ -76.859954833984318, -10.375191688537598 ], [ -76.859100341796818, -10.375613212585449 ], [ -76.857170104980412, -10.377269744873047 ], [ -76.853340148925781, -10.373630523681641 ], [ -76.847984313964844, -10.372115135192871 ], [ -76.846122741699162, -10.370996475219613 ], [ -76.844505310058537, -10.369342803955078 ], [ -76.843460083007756, -10.367918968200684 ], [ -76.841918945312443, -10.363886833190918 ], [ -76.841323852539062, -10.363150596618652 ], [ -76.841049194335938, -10.363115310668945 ], [ -76.840667724609375, -10.363486289977914 ], [ -76.839546203613224, -10.367155075073185 ], [ -76.839065551757756, -10.372527122497502 ], [ -76.838531494140625, -10.375170707702637 ], [ -76.835227966308594, -10.385296821594238 ], [ -76.833549499511662, -10.388369560241642 ], [ -76.83319091796875, -10.391319274902344 ], [ -76.832183837890568, -10.392636299133301 ], [ -76.831459045410156, -10.392928123474064 ], [ -76.830764770507756, -10.392733573913517 ], [ -76.829505920410156, -10.390660285949707 ], [ -76.828567504882756, -10.390151977539062 ], [ -76.827903747558537, -10.390345573425236 ], [ -76.826606750488281, -10.391555786132812 ], [ -76.825546264648438, -10.392148017883187 ], [ -76.824378967285099, -10.392554283142033 ], [ -76.822906494140625, -10.392741203308049 ], [ -76.814743041992131, -10.392989158630371 ], [ -76.810966491699219, -10.392495155334416 ], [ -76.807907104492188, -10.391842842101994 ], [ -76.806961059570312, -10.391910552978459 ], [ -76.806098937988281, -10.392277717590332 ], [ -76.806159973144474, -10.393226623535156 ], [ -76.805450439453125, -10.394830703735295 ], [ -76.805038452148324, -10.396976470947209 ], [ -76.805168151855469, -10.397600173950138 ], [ -76.806129455566406, -10.399248123168945 ], [ -76.806289672851562, -10.401814460754395 ], [ -76.804931640624943, -10.409251213073674 ], [ -76.804046630859375, -10.412358283996525 ], [ -76.802970886230469, -10.414859771728516 ], [ -76.802047729492131, -10.416330337524414 ], [ -76.799995422363281, -10.418501853942814 ], [ -76.799819946289062, -10.419010162353459 ], [ -76.799293518066349, -10.419952392578068 ], [ -76.799499511718693, -10.421694755554199 ], [ -76.800300598144531, -10.423262596130314 ], [ -76.802276611328125, -10.425999641418343 ], [ -76.802749633788949, -10.427281379699707 ], [ -76.802925109863224, -10.428753852844181 ], [ -76.802757263183594, -10.430500030517578 ], [ -76.801361083984375, -10.434160232543945 ], [ -76.800445556640568, -10.438650131225586 ], [ -76.799293518066349, -10.439396858215332 ], [ -76.797561645507812, -10.439667701721191 ], [ -76.794502258300781, -10.439025878906193 ], [ -76.792327880859318, -10.438994407653752 ], [ -76.78912353515625, -10.43834209442133 ], [ -76.788139343261662, -10.438752174377385 ], [ -76.78692626953125, -10.439663887023926 ], [ -76.785476684570256, -10.442981719970703 ], [ -76.784317016601506, -10.444642066955566 ], [ -76.77960205078125, -10.450038909912109 ], [ -76.777168273925724, -10.454706192016545 ], [ -76.7760009765625, -10.45584583282465 ], [ -76.774009704589787, -10.457013130187988 ], [ -76.773300170898438, -10.457667350769043 ], [ -76.773063659667912, -10.459612846374455 ], [ -76.773529052734375, -10.46216773986805 ], [ -76.773345947265568, -10.462910652160531 ], [ -76.772781372070256, -10.463556289672852 ], [ -76.771705627441406, -10.464120864868164 ], [ -76.769538879394474, -10.464522361755371 ], [ -76.764495849609318, -10.464215278625431 ], [ -76.761405944824219, -10.464494705200195 ], [ -76.759170532226562, -10.46581935882557 ], [ -76.757843017578125, -10.467352867126465 ], [ -76.756561279296818, -10.468173980712891 ], [ -76.755409240722656, -10.467990875244141 ], [ -76.751869201660156, -10.466827392578125 ], [ -76.749908447265568, -10.467703819274846 ], [ -76.747772216796875, -10.468151092529297 ], [ -76.746833801269474, -10.468038558959961 ], [ -76.742935180664006, -10.466837882995549 ], [ -76.741004943847656, -10.466831207275391 ], [ -76.739585876464787, -10.46720027923584 ], [ -76.738197326660156, -10.468321800231934 ], [ -76.733856201171875, -10.47297286987299 ], [ -76.732643127441349, -10.473584175109806 ], [ -76.730659484863281, -10.474082946777344 ], [ -76.729827880859375, -10.474784851074162 ], [ -76.729225158691406, -10.476143836975041 ], [ -76.729133605957031, -10.479779243469181 ], [ -76.728569030761719, -10.481591224670353 ], [ -76.727996826171875, -10.482650756835938 ], [ -76.726524353027287, -10.484242439269963 ], [ -76.726203918457031, -10.484991073608398 ], [ -76.726478576660156, -10.485750198364258 ], [ -76.72821044921875, -10.487648963928223 ], [ -76.728897094726562, -10.489290237426758 ], [ -76.728561401367188, -10.492366790771484 ], [ -76.729125976562386, -10.495138168334904 ], [ -76.728950500488281, -10.502279281616211 ], [ -76.730186462402344, -10.505656242370549 ], [ -76.730422973632812, -10.507525444030762 ], [ -76.730293273925781, -10.508455276489258 ], [ -76.729965209960881, -10.509354591369515 ], [ -76.729309082031193, -10.510198593139592 ], [ -76.725097656249943, -10.514217376708984 ], [ -76.722236633300724, -10.51911544799799 ], [ -76.721557617187443, -10.519534111022949 ], [ -76.718711853027287, -10.520408630371094 ], [ -76.717254638671875, -10.521998405456543 ], [ -76.716712951660099, -10.523404121398926 ], [ -76.716903686523381, -10.529178619384766 ], [ -76.716598510742131, -10.530355453491097 ], [ -76.714309692382756, -10.535086631774902 ], [ -76.711616516113281, -10.538969993591309 ], [ -76.710960388183594, -10.540283203125 ], [ -76.71075439453125, -10.542165756225529 ], [ -76.710884094238224, -10.549028396606388 ], [ -76.709602355957031, -10.55439567565918 ], [ -76.709465026855412, -10.557749748229867 ], [ -76.708763122558594, -10.559508323669434 ], [ -76.707168579101506, -10.561404228210449 ], [ -76.706047058105355, -10.564864158630371 ], [ -76.704597473144474, -10.568052291870117 ], [ -76.704132080078068, -10.570008277892953 ], [ -76.704147338867188, -10.571763038635254 ], [ -76.703102111816406, -10.576217651367188 ], [ -76.702865600585881, -10.58092021942133 ], [ -76.703567504882699, -10.587072372436467 ], [ -76.704147338867188, -10.588722229003906 ], [ -76.703895568847656, -10.590164184570256 ], [ -76.703056335449162, -10.591559410095215 ], [ -76.701026916503906, -10.593740463256779 ], [ -76.698028564453068, -10.595864295959473 ], [ -76.696105957031193, -10.596805572509766 ], [ -76.694869995117131, -10.596675872802678 ], [ -76.693908691406193, -10.596164703369141 ], [ -76.692298889160099, -10.595903396606445 ], [ -76.691230773925724, -10.595311164855957 ], [ -76.689002990722656, -10.594662666320801 ], [ -76.685737609863281, -10.594709396362248 ], [ -76.683227539062443, -10.595272064208984 ], [ -76.682281494140568, -10.595793724060002 ], [ -76.681739807128906, -10.596429824829045 ], [ -76.681404113769531, -10.598401069641056 ], [ -76.680702209472656, -10.599706649780273 ], [ -76.678565979003849, -10.601372718810978 ], [ -76.676605224609375, -10.602313995361214 ], [ -76.675918579101562, -10.602943420410099 ], [ -76.675178527832031, -10.603904724121037 ], [ -76.674758911132756, -10.60683631896967 ], [ -76.673210144042912, -10.611147880554142 ], [ -76.672996520996094, -10.612334251403809 ], [ -76.673149108886719, -10.613815307617131 ], [ -76.673934936523438, -10.61591911315918 ], [ -76.675094604492188, -10.617392539978027 ], [ -76.676216125488281, -10.619856834411621 ], [ -76.676361083984318, -10.621065139770508 ], [ -76.676033020019531, -10.622542381286621 ], [ -76.675430297851506, -10.623213768005371 ], [ -76.673149108886719, -10.624481201171875 ], [ -76.672042846679688, -10.625456809997502 ], [ -76.667617797851562, -10.630017280578613 ], [ -76.662872314453125, -10.635375976562443 ], [ -76.660438537597599, -10.639113426208496 ], [ -76.658050537109318, -10.644387245178166 ], [ -76.656158447265568, -10.646776199340763 ], [ -76.656120300292969, -10.647299766540414 ], [ -76.655204772949162, -10.648795127868596 ], [ -76.655097961425724, -10.650280952453556 ], [ -76.656097412109375, -10.651883125305176 ], [ -76.658615112304631, -10.653931617736703 ], [ -76.659347534179688, -10.655238151550293 ], [ -76.65985107421875, -10.65760612487793 ], [ -76.660102844238281, -10.662459373474064 ], [ -76.660507202148438, -10.664019584655762 ], [ -76.662437438964787, -10.667427062988224 ], [ -76.665237426757812, -10.671408653259221 ], [ -76.668296813964844, -10.67387866973877 ], [ -76.669944763183594, -10.675667762756291 ], [ -76.670547485351506, -10.676884651184025 ], [ -76.670791625976562, -10.678766250610352 ], [ -76.67018890380848, -10.680242538452092 ], [ -76.668411254882812, -10.682293891906738 ], [ -76.667114257812443, -10.683007240295353 ], [ -76.663208007812443, -10.684527397155762 ], [ -76.6607666015625, -10.68630313873291 ], [ -76.659835815429688, -10.687559127807617 ], [ -76.659248352050781, -10.690081596374512 ], [ -76.659393310546818, -10.693046569824219 ], [ -76.659149169921875, -10.695181846618652 ], [ -76.657402038574162, -10.701963424682617 ], [ -76.656791687011719, -10.70301342010498 ], [ -76.653938293457031, -10.705704689025822 ], [ -76.653411865234375, -10.706486701965332 ], [ -76.653343200683594, -10.708230018615723 ], [ -76.6541748046875, -10.710928916931152 ], [ -76.654182434082031, -10.712014198303223 ], [ -76.653823852539062, -10.71373462677002 ], [ -76.652580261230469, -10.716279983520508 ], [ -76.649703979492188, -10.719325065612793 ], [ -76.648948669433594, -10.720603942871094 ], [ -76.648918151855412, -10.721814155578556 ], [ -76.649635314941406, -10.723411560058537 ], [ -76.649765014648381, -10.724621772766113 ], [ -76.648628234863224, -10.730016708374023 ], [ -76.648124694824162, -10.730731964111328 ], [ -76.648017883300781, -10.731392860412598 ], [ -76.646102905273438, -10.734639167785645 ], [ -76.645004272460881, -10.73908519744873 ], [ -76.642303466796875, -10.743276596069279 ], [ -76.64227294921875, -10.74571514129633 ], [ -76.641815185546875, -10.746813774108887 ], [ -76.640815734863168, -10.748128890991211 ], [ -76.638816833496094, -10.750129699706918 ], [ -76.634887695312443, -10.753658294677621 ], [ -76.633773803710938, -10.754412651062012 ], [ -76.630805969238281, -10.757746696472168 ], [ -76.629653930664006, -10.760030746459961 ], [ -76.628295898437443, -10.765516281127873 ], [ -76.625946044921875, -10.769282341003418 ], [ -76.625953674316406, -10.770355224609375 ], [ -76.626396179199162, -10.771637916564941 ], [ -76.627838134765568, -10.773603439330998 ], [ -76.629806518554688, -10.775425910949593 ], [ -76.63006591796875, -10.777449607849064 ], [ -76.629806518554688, -10.779251098632812 ], [ -76.630126953124943, -10.781537055969238 ], [ -76.630592346191349, -10.782185554504338 ], [ -76.63262939453125, -10.783775329589787 ], [ -76.632797241210881, -10.785182952880859 ], [ -76.630996704101562, -10.787552833557129 ], [ -76.627685546875, -10.789369583129826 ], [ -76.626274108886719, -10.790678024291935 ], [ -76.625343322753849, -10.791975021362305 ], [ -76.625038146972656, -10.792908668518066 ], [ -76.625022888183594, -10.793857574462891 ], [ -76.626411437988224, -10.796627044677734 ], [ -76.626266479492188, -10.798373222351074 ], [ -76.625747680663949, -10.799468994140625 ], [ -76.623352050781193, -10.80222225189209 ], [ -76.62261962890625, -10.80334568023676 ], [ -76.620864868164006, -10.807576179504395 ], [ -76.620536804199219, -10.810454368591252 ], [ -76.620201110839787, -10.811566352844181 ], [ -76.618125915527344, -10.814009666442871 ], [ -76.6158447265625, -10.816003799438477 ], [ -76.614868164062443, -10.816530227661076 ], [ -76.612838745117131, -10.816541671752873 ], [ -76.611091613769531, -10.816225051879883 ], [ -76.608604431152344, -10.814864158630257 ], [ -76.605911254882699, -10.8144273757934 ], [ -76.603446960449219, -10.814447402954045 ], [ -76.602813720703125, -10.814677238464355 ], [ -76.601905822753793, -10.815513610839844 ], [ -76.601287841796875, -10.816828727722111 ], [ -76.6011962890625, -10.819650650024414 ], [ -76.60009765625, -10.820259094238281 ], [ -76.598648071289006, -10.820639610290527 ], [ -76.598007202148438, -10.821166038513184 ], [ -76.597679138183537, -10.822018623352051 ], [ -76.597518920898324, -10.824324607849121 ], [ -76.596611022949219, -10.826751708984375 ], [ -76.592315673828125, -10.833400726318359 ], [ -76.590194702148438, -10.836032867431584 ], [ -76.5892333984375, -10.83765792846674 ], [ -76.58831787109375, -10.840889930725098 ], [ -76.588134765625, -10.845319747924748 ], [ -76.587753295898438, -10.845873832702637 ], [ -76.587074279785156, -10.848338127136117 ], [ -76.584892272949219, -10.851919174194279 ], [ -76.584182739257812, -10.853503227233887 ], [ -76.583236694335938, -10.85771369934082 ], [ -76.582901000976506, -10.861602783203068 ], [ -76.581939697265568, -10.863062858581543 ], [ -76.581100463867131, -10.86577129364008 ], [ -76.5809326171875, -10.86737060546875 ], [ -76.581115722656136, -10.872479438781681 ], [ -76.580345153808537, -10.879841804504338 ], [ -76.580070495605469, -10.886561393737736 ], [ -76.579216003417969, -10.892008781433049 ], [ -76.579307556152344, -10.894022941589355 ], [ -76.579933166503906, -10.895855903625431 ], [ -76.578613281249943, -10.898653984069767 ], [ -76.578460693359375, -10.901730537414551 ], [ -76.576530456542912, -10.904327392578068 ], [ -76.575630187988281, -10.906418800354004 ], [ -76.575363159179631, -10.907586097717228 ], [ -76.575469970703068, -10.91053295135498 ], [ -76.575187683105412, -10.913064956664925 ], [ -76.571876525878906, -10.916780471801701 ], [ -76.571151733398438, -10.918211936950627 ], [ -76.571533203125, -10.923544883727971 ], [ -76.570610046386662, -10.925637245178223 ], [ -76.570503234863224, -10.927644729614201 ], [ -76.569915771484375, -10.92928409576416 ], [ -76.569465637206974, -10.932189941406136 ], [ -76.568130493164006, -10.935694694518929 ], [ -76.568382263183594, -10.937140464782715 ], [ -76.569915771484375, -10.938723564147892 ], [ -76.570205688476562, -10.939272880554199 ], [ -76.569915771484375, -10.940340042114144 ], [ -76.568656921386719, -10.941940307617188 ], [ -76.568435668945312, -10.942545890808049 ], [ -76.568595886230412, -10.943350791931152 ], [ -76.569786071777344, -10.945486068725529 ], [ -76.568763732910156, -10.949479103088379 ], [ -76.569671630859261, -10.950484275817871 ], [ -76.569862365722543, -10.951028823852539 ], [ -76.567481994628906, -10.953111648559513 ], [ -76.566902160644474, -10.953927993774414 ], [ -76.566780090331974, -10.954921722412109 ], [ -76.567146301269531, -10.958222389221135 ], [ -76.564895629882756, -10.964524269103947 ], [ -76.564933776855469, -10.965121269226074 ], [ -76.568267822265625, -10.969036102294922 ], [ -76.569847106933537, -10.971712112426701 ], [ -76.573898315429688, -10.975101470947152 ], [ -76.573745727539006, -10.97831916809082 ], [ -76.574478149414062, -10.979755401611271 ], [ -76.576492309570312, -10.981136322021484 ], [ -76.579566955566349, -10.981454849243164 ], [ -76.580047607421818, -10.981966018676758 ], [ -76.58154296875, -10.98486328125 ], [ -76.582130432128849, -10.986521720886117 ], [ -76.582000732421875, -10.98757266998291 ], [ -76.580993652343693, -10.989909172058105 ], [ -76.579841613769474, -10.992067337036133 ], [ -76.578620910644474, -10.993674278259164 ], [ -76.578247070312443, -10.99482345581049 ], [ -76.578094482421875, -10.996436119079533 ], [ -76.578498840332031, -10.998693466186467 ], [ -76.578964233398438, -11.000061988830566 ], [ -76.580276489257812, -11.002397537231388 ], [ -76.579673767089787, -11.005538940429688 ], [ -76.580154418945256, -11.007759094238281 ], [ -76.580207824707031, -11.009928703308105 ], [ -76.580093383789062, -11.010717391967717 ], [ -76.579582214355412, -11.011524200439396 ], [ -76.578781127929688, -11.013941764831543 ], [ -76.576889038085881, -11.016401290893555 ], [ -76.572563171386719, -11.015177726745605 ], [ -76.570274353027344, -11.013713836669865 ], [ -76.569190979003849, -11.013359069824219 ], [ -76.56805419921875, -11.014748573303223 ], [ -76.566062927246094, -11.018068313598519 ], [ -76.564971923828068, -11.021535873413086 ], [ -76.564437866210938, -11.022342681884766 ], [ -76.560142517089844, -11.021704673767033 ], [ -76.55633544921875, -11.022726058959904 ], [ -76.552635192871094, -11.024418830871525 ], [ -76.549919128417912, -11.026151657104435 ], [ -76.548011779785099, -11.027932167053166 ], [ -76.546905517578125, -11.028672218322754 ], [ -76.541007995605469, -11.030320167541447 ], [ -76.535728454589844, -11.033644676208496 ], [ -76.533943176269531, -11.033581733703556 ], [ -76.532928466796818, -11.034006118774414 ], [ -76.531242370605469, -11.035938262939396 ], [ -76.528152465820256, -11.042968749999943 ], [ -76.527717590332031, -11.044942855834904 ], [ -76.527023315429631, -11.046545028686467 ], [ -76.52667236328125, -11.05010986328125 ], [ -76.526313781738281, -11.05195426940918 ], [ -76.523590087890568, -11.054401397705078 ], [ -76.520843505859261, -11.057572364807129 ], [ -76.519935607910156, -11.059055328369141 ], [ -76.517570495605412, -11.064060211181584 ], [ -76.514617919921818, -11.068587303161621 ], [ -76.51116943359375, -11.073079109191895 ], [ -76.508941650390625, -11.075278282165471 ], [ -76.505241394042969, -11.078000068664494 ], [ -76.503204345703125, -11.079953193664551 ], [ -76.501495361328125, -11.080558776855412 ], [ -76.500839233398438, -11.081050872802678 ], [ -76.498786926269474, -11.084580421447697 ], [ -76.497512817382812, -11.085983276367131 ], [ -76.493461608886662, -11.088472366333008 ], [ -76.491149902343693, -11.08931827545166 ], [ -76.492454528808594, -11.091986656188908 ], [ -76.493247985839787, -11.09498405456543 ], [ -76.493156433105412, -11.095653533935547 ], [ -76.491973876953125, -11.098373413085938 ], [ -76.49200439453125, -11.100126266479492 ], [ -76.492515563964787, -11.101235389709473 ], [ -76.494483947753906, -11.103801727294922 ], [ -76.494956970214844, -11.107260704040414 ], [ -76.495948791503849, -11.108711242675668 ], [ -76.497245788574219, -11.109682083129826 ], [ -76.499916076660156, -11.110313415527287 ], [ -76.502639770507812, -11.110569000244141 ], [ -76.50372314453125, -11.110445022582951 ], [ -76.505172729492131, -11.11079216003418 ], [ -76.507759094238224, -11.111674308776855 ], [ -76.508659362792969, -11.112284660339299 ], [ -76.511573791503849, -11.112975120544377 ], [ -76.514129638671875, -11.11393928527832 ], [ -76.518341064453068, -11.115951538085881 ], [ -76.518936157226449, -11.116625785827637 ], [ -76.5191650390625, -11.117963790893555 ], [ -76.51885986328125, -11.11955738067627 ], [ -76.517997741699219, -11.121232986450138 ], [ -76.516387939453125, -11.122705459594727 ], [ -76.512786865234375, -11.12535572052002 ], [ -76.510978698730469, -11.12736988067627 ], [ -76.510169982910156, -11.129934310912972 ], [ -76.510017395019531, -11.134219169616642 ], [ -76.509414672851562, -11.134955406188965 ], [ -76.508316040039006, -11.135493278503418 ], [ -76.507484436035099, -11.136310577392578 ], [ -76.507362365722599, -11.137777328491211 ], [ -76.507682800292855, -11.139609336853027 ], [ -76.507347106933594, -11.140217781066895 ], [ -76.505760192871037, -11.141862869262695 ], [ -76.504165649414062, -11.146444320678711 ], [ -76.504463195800781, -11.153541564941406 ], [ -76.50323486328125, -11.156511306762638 ], [ -76.503013610839844, -11.159197807311955 ], [ -76.503089904785099, -11.162009239196777 ], [ -76.5037841796875, -11.164746284484863 ], [ -76.506340026855412, -11.168214797973633 ], [ -76.506423950195256, -11.169433593749943 ], [ -76.506088256835938, -11.17059421539301 ], [ -76.504783630371094, -11.173112869262638 ], [ -76.503440856933594, -11.174665451049805 ], [ -76.502883911132756, -11.175020217895451 ], [ -76.501312255859375, -11.175164222717285 ], [ -76.500595092773381, -11.175601005554142 ], [ -76.500244140624886, -11.176417350769043 ], [ -76.499404907226562, -11.17723560333252 ], [ -76.499282836914006, -11.178709983825684 ], [ -76.498764038085938, -11.179662704467773 ], [ -76.494224548339787, -11.183571815490666 ], [ -76.493293762207031, -11.184859275817814 ], [ -76.492691040039006, -11.186546325683594 ], [ -76.492401123046818, -11.188399314880314 ], [ -76.492469787597656, -11.190567970275879 ], [ -76.491645812988224, -11.194795608520508 ], [ -76.491600036621094, -11.197364807128906 ], [ -76.491836547851506, -11.197994232177734 ], [ -76.493415832519531, -11.200021743774357 ], [ -76.494049072265625, -11.20139217376709 ], [ -76.494102478027344, -11.202576637267953 ], [ -76.493568420410043, -11.206339836120549 ], [ -76.493682861328125, -11.207125663757324 ], [ -76.494087219238281, -11.207755088806096 ], [ -76.494461059570312, -11.210839271545353 ], [ -76.493972778320312, -11.212766647338867 ], [ -76.492744445800781, -11.214570045471135 ], [ -76.489753723144418, -11.217885971069336 ], [ -76.487800598144531, -11.221883773803711 ], [ -76.48577880859375, -11.223703384399414 ], [ -76.485443115234318, -11.224571228027287 ], [ -76.485351562499943, -11.226877212524414 ], [ -76.483940124511719, -11.229179382324219 ], [ -76.484153747558594, -11.233482360839844 ], [ -76.483261108398381, -11.235748291015625 ], [ -76.483139038085881, -11.236813545226937 ], [ -76.484397888183537, -11.239928245544434 ], [ -76.484779357910099, -11.242329597473088 ], [ -76.484786987304631, -11.243814468383789 ], [ -76.485054016113224, -11.244100570678711 ], [ -76.489006042480469, -11.243903160095158 ], [ -76.490066528320312, -11.244157791137638 ], [ -76.490531921386719, -11.244479179382267 ], [ -76.490760803222656, -11.245671272277775 ], [ -76.490653991699219, -11.246468544006348 ], [ -76.489250183105412, -11.249693870544434 ], [ -76.488639831542969, -11.250592231750488 ], [ -76.485374450683594, -11.253639221191349 ], [ -76.484611511230469, -11.256353378295842 ], [ -76.483879089355469, -11.25732421875 ], [ -76.482398986816349, -11.258524894714355 ], [ -76.480308532714787, -11.259106636047306 ], [ -76.479873657226562, -11.25963115692133 ], [ -76.479431152343693, -11.260827064514103 ], [ -76.477195739746094, -11.262619018554631 ], [ -76.476043701171875, -11.262951850891113 ], [ -76.472213745117188, -11.263078689575195 ], [ -76.470680236816293, -11.263637542724609 ], [ -76.467811584472599, -11.263480186462402 ], [ -76.466644287109318, -11.263776779174805 ], [ -76.462112426757812, -11.265695571899414 ], [ -76.458503723144531, -11.268588066101017 ], [ -76.457748413085938, -11.269513130187931 ], [ -76.457466125488281, -11.271694183349496 ], [ -76.457496643066349, -11.272074699401855 ], [ -76.457817077636719, -11.272343635559082 ], [ -76.458770751953125, -11.272402763366642 ], [ -76.460807800292969, -11.270432472229004 ], [ -76.462257385253849, -11.269675254821777 ], [ -76.463127136230412, -11.269695281982308 ], [ -76.463851928710938, -11.270360946655273 ], [ -76.464591979980469, -11.272156715393066 ], [ -76.465179443359375, -11.272886276245004 ], [ -76.467361450195312, -11.274747848510742 ], [ -76.4693603515625, -11.275568962097111 ], [ -76.470710754394531, -11.27775859832758 ], [ -76.471130371093693, -11.279737472534123 ], [ -76.472000122070256, -11.281866073608398 ], [ -76.476676940917912, -11.28765678405756 ], [ -76.477241516113224, -11.289599418640023 ], [ -76.478065490722656, -11.290670394897461 ], [ -76.478103637695256, -11.291192054748535 ], [ -76.477287292480469, -11.293213844299316 ], [ -76.473960876464844, -11.296511650085449 ], [ -76.470466613769474, -11.303717613220101 ], [ -76.466117858886719, -11.308547973632812 ], [ -76.463363647460938, -11.312559127807504 ], [ -76.46266937255848, -11.314751625061035 ], [ -76.462654113769474, -11.315961837768498 ], [ -76.462966918945312, -11.316708564758244 ], [ -76.464218139648438, -11.317923545837289 ], [ -76.464492797851562, -11.319125175476074 ], [ -76.464454650878849, -11.320328712463322 ], [ -76.463829040527344, -11.321235656738281 ], [ -76.46087646484375, -11.324108123779297 ], [ -76.459815979003906, -11.325458526611271 ], [ -76.459526062011719, -11.326330184936523 ], [ -76.459213256835881, -11.328916549682617 ], [ -76.457809448242188, -11.330387115478516 ], [ -76.457206726074162, -11.332461357116699 ], [ -76.457298278808537, -11.332976341247502 ], [ -76.45709228515625, -11.333148956298828 ], [ -76.456962585449219, -11.334295272827092 ], [ -76.455772399902287, -11.335588455200195 ], [ -76.452949523925781, -11.341567993164006 ], [ -76.450912475585881, -11.343776702880803 ], [ -76.449752807617188, -11.34471321105957 ], [ -76.446380615234375, -11.346228599548283 ], [ -76.443618774414062, -11.346894264221191 ], [ -76.439666748046818, -11.346469879150391 ], [ -76.436698913574162, -11.346899032592773 ], [ -76.433891296386719, -11.345513343810978 ], [ -76.432647705078125, -11.345321655273324 ], [ -76.431694030761719, -11.3454332351684 ], [ -76.430328369140568, -11.346254348754883 ], [ -76.42864990234375, -11.347881317138615 ], [ -76.428108215332031, -11.34898662567133 ], [ -76.427703857421875, -11.350967407226562 ], [ -76.427337646484375, -11.351530075073185 ], [ -76.424606323242131, -11.352753639221135 ], [ -76.422821044921875, -11.354207992553654 ], [ -76.422630310058594, -11.354724884033146 ], [ -76.422470092773438, -11.359030723571664 ], [ -76.420776367187443, -11.362428665161076 ], [ -76.420333862304688, -11.364373207092285 ], [ -76.419837951660099, -11.371247291564885 ], [ -76.420051574707031, -11.374204635620117 ], [ -76.419815063476506, -11.37492847442627 ], [ -76.418815612792969, -11.37603759765625 ], [ -76.417404174804688, -11.37654972076416 ], [ -76.416244506835938, -11.377270698547306 ], [ -76.414253234863281, -11.379077911376839 ], [ -76.413101196289062, -11.38154411315918 ], [ -76.412612915039062, -11.384671211242676 ], [ -76.412185668945256, -11.385894775390625 ], [ -76.411392211914062, -11.386747360229435 ], [ -76.409194946289062, -11.388241767883244 ], [ -76.407470703125, -11.389979362487793 ], [ -76.403961181640625, -11.396523475646916 ], [ -76.403495788574219, -11.399172782897892 ], [ -76.401313781738224, -11.401389122009277 ], [ -76.400856018066349, -11.40206146240223 ], [ -76.400665283203068, -11.402847290039062 ], [ -76.400688171386719, -11.403652191162053 ], [ -76.401084899902344, -11.404220581054631 ], [ -76.403633117675724, -11.405474662780648 ], [ -76.404106140136662, -11.407279968261662 ], [ -76.404853820800724, -11.408424377441349 ], [ -76.40728759765625, -11.409280776977539 ], [ -76.41046142578125, -11.409536361694279 ], [ -76.411849975585938, -11.409918785095158 ], [ -76.413703918457031, -11.411755561828613 ], [ -76.413986206054688, -11.412368774414062 ], [ -76.414001464843693, -11.413055419921875 ], [ -76.412788391113224, -11.414841651916447 ], [ -76.411224365234375, -11.416144371032658 ], [ -76.40673828125, -11.421397209167367 ], [ -76.40576171875, -11.423186302185002 ], [ -76.405044555664006, -11.425357818603516 ], [ -76.399620056152287, -11.436387062072697 ], [ -76.396095275878849, -11.442165374755859 ], [ -76.393959045410156, -11.444794654846135 ], [ -76.392768859863281, -11.445417404174805 ], [ -76.390922546386662, -11.445949554443359 ], [ -76.387931823730469, -11.446296691894474 ], [ -76.383552551269531, -11.445260047912541 ], [ -76.379241943359375, -11.442957878112793 ], [ -76.377593994140568, -11.443353652954102 ], [ -76.377143859863281, -11.443663597106934 ], [ -76.377189636230412, -11.449033737182504 ], [ -76.376708984374943, -11.451805114746094 ], [ -76.376152038574162, -11.458659172058049 ], [ -76.375198364257756, -11.462713241577148 ], [ -76.372886657714844, -11.468331336975041 ], [ -76.372253417968693, -11.471506118774357 ], [ -76.372261047363168, -11.472862243652344 ], [ -76.371902465820312, -11.473578453063965 ], [ -76.371788024902344, -11.475207328796387 ], [ -76.372200012207031, -11.477165222167969 ], [ -76.373741149902344, -11.47924613952631 ], [ -76.374374389648438, -11.47973442077631 ], [ -76.37506103515625, -11.479728698730469 ], [ -76.375579833984318, -11.480169296264648 ], [ -76.376869201660156, -11.480615615844727 ], [ -76.3779296875, -11.480881690979004 ], [ -76.379295349121037, -11.480884552001953 ], [ -76.380035400390625, -11.481830596923828 ], [ -76.380538940429631, -11.483247756957951 ], [ -76.380722045898381, -11.485408782958928 ], [ -76.380523681640568, -11.486873626708984 ], [ -76.379852294921875, -11.489065170288029 ], [ -76.378067016601506, -11.493450164794922 ], [ -76.3779296875, -11.494652748107853 ], [ -76.376724243164006, -11.497804641723633 ], [ -76.376541137695256, -11.498852729797306 ], [ -76.376602172851562, -11.500851631164494 ], [ -76.373924255371094, -11.503412246704102 ], [ -76.3681640625, -11.50810432434082 ], [ -76.363029479980469, -11.513592720031738 ], [ -76.362327575683537, -11.514156341552734 ], [ -76.361305236816406, -11.514511108398438 ], [ -76.36187744140625, -11.517049789428711 ], [ -76.361686706542969, -11.518859863281193 ], [ -76.360305786132756, -11.520865440368539 ], [ -76.358551025390625, -11.522807121276855 ], [ -76.357826232910099, -11.522946357727051 ], [ -76.356857299804688, -11.522651672363281 ], [ -76.355804443359375, -11.521093368530217 ], [ -76.354629516601562, -11.520240783691406 ], [ -76.351776123046875, -11.51972770690918 ], [ -76.350517272949105, -11.5198974609375 ], [ -76.349601745605469, -11.520453453063908 ], [ -76.349319458007812, -11.521567344665527 ], [ -76.349746704101506, -11.524838447570801 ], [ -76.349502563476562, -11.525606155395451 ], [ -76.348823547363281, -11.526431083679199 ], [ -76.348373413085938, -11.528651237487736 ], [ -76.349220275878906, -11.531286239624023 ], [ -76.349075317382756, -11.534786224365178 ], [ -76.348564147949219, -11.53785228729248 ], [ -76.347221374511719, -11.541655540466195 ], [ -76.345809936523381, -11.542756080627328 ], [ -76.344459533691406, -11.542962074279785 ], [ -76.339080810546875, -11.544623374938965 ], [ -76.338111877441349, -11.544365882873478 ], [ -76.337471008300781, -11.543021202087402 ], [ -76.336669921874943, -11.542428016662598 ], [ -76.335800170898381, -11.542152404785099 ], [ -76.332084655761662, -11.542378425598145 ], [ -76.330345153808594, -11.542926788330078 ], [ -76.328804016113281, -11.54370212554926 ], [ -76.327239990234318, -11.545202255249023 ], [ -76.326156616210938, -11.547071456909066 ], [ -76.325675964355469, -11.548808097839242 ], [ -76.325630187988281, -11.551763534545898 ], [ -76.325286865234375, -11.552606582641602 ], [ -76.324829101562443, -11.553034782409668 ], [ -76.322334289550781, -11.554113388061467 ], [ -76.320915222167969, -11.555384635925236 ], [ -76.319671630859375, -11.559213638305664 ], [ -76.318008422851562, -11.560994148254395 ], [ -76.316757202148324, -11.562853813171387 ], [ -76.315490722656193, -11.563701629638615 ], [ -76.314598083496094, -11.563838005065918 ], [ -76.310455322265568, -11.563243865966797 ], [ -76.309722900390625, -11.563309669494629 ], [ -76.307075500488281, -11.564688682556152 ], [ -76.304740905761605, -11.566686630248967 ], [ -76.3037109375, -11.568047523498535 ], [ -76.30145263671875, -11.57225322723383 ], [ -76.300201416015625, -11.574122428894043 ], [ -76.300003051757812, -11.576889038085938 ], [ -76.300186157226562, -11.577684402465707 ], [ -76.3006591796875, -11.578432083129826 ], [ -76.300949096679688, -11.580844879150334 ], [ -76.300559997558594, -11.585322380065861 ], [ -76.300163269042855, -11.586213111877385 ], [ -76.299217224121094, -11.587308883666935 ], [ -76.299087524414006, -11.588022232055664 ], [ -76.298507690429631, -11.588929176330566 ], [ -76.297431945800781, -11.591792106628361 ], [ -76.297386169433537, -11.595996856689453 ], [ -76.297203063964787, -11.596286773681641 ], [ -76.296310424804688, -11.596552848815861 ], [ -76.295959472656193, -11.59549617767334 ], [ -76.295989990234375, -11.594691276550293 ], [ -76.295440673828125, -11.593653678894043 ], [ -76.295074462890568, -11.592090606689453 ], [ -76.293792724609375, -11.589602470397892 ], [ -76.292839050292969, -11.588765144348145 ], [ -76.292213439941349, -11.588751792907658 ], [ -76.289375305175724, -11.590162277221623 ], [ -76.286735534667969, -11.59111499786377 ], [ -76.28619384765625, -11.591119766235295 ], [ -76.285369873046818, -11.590616226196232 ], [ -76.284660339355469, -11.589499473571721 ], [ -76.281578063964844, -11.587577819824219 ], [ -76.280410766601506, -11.585872650146484 ], [ -76.279190063476562, -11.584657669067383 ], [ -76.277587890625, -11.583806037902832 ], [ -76.274337768554688, -11.58268928527832 ], [ -76.273040771484375, -11.58187294006342 ], [ -76.27178955078125, -11.579987525939941 ], [ -76.271636962890568, -11.578471183776742 ], [ -76.269683837890625, -11.572222709655762 ], [ -76.26812744140625, -11.569906234741211 ], [ -76.265899658203068, -11.567917823791447 ], [ -76.264060974121094, -11.567130088806152 ], [ -76.262260437011719, -11.566830635070801 ], [ -76.259712219238224, -11.567645072937012 ], [ -76.257667541503906, -11.568034172058105 ], [ -76.254707336425781, -11.569376945495549 ], [ -76.253524780273381, -11.569462776184082 ], [ -76.249687194824162, -11.567624092101994 ], [ -76.246551513671818, -11.567068099975529 ], [ -76.244552612304631, -11.566987991332951 ], [ -76.241104125976506, -11.567266464233342 ], [ -76.238182067871094, -11.568707466125488 ], [ -76.237205505371037, -11.568711280822754 ], [ -76.236160278320256, -11.567973136901799 ], [ -76.234840393066406, -11.565617561340275 ], [ -76.234092712402344, -11.564962387084904 ], [ -76.232139587402287, -11.562338829040471 ], [ -76.231788635253906, -11.560859680175781 ], [ -76.231544494628906, -11.556791305541935 ], [ -76.231193542480412, -11.555499076843262 ], [ -76.230514526367131, -11.554760932922306 ], [ -76.228874206542969, -11.553954124450627 ], [ -76.22802734375, -11.553667068481445 ], [ -76.227294921874943, -11.553762435913086 ], [ -76.225334167480469, -11.556120872497502 ], [ -76.225440979003906, -11.559174537658691 ], [ -76.225082397460881, -11.560064315795898 ], [ -76.223388671874943, -11.561942100524846 ], [ -76.222183227539062, -11.56291484832758 ], [ -76.221092224121037, -11.563553810119629 ], [ -76.218894958496037, -11.564167022705021 ], [ -76.217910766601562, -11.565221786499023 ], [ -76.217254638671818, -11.567466735839844 ], [ -76.217834472656193, -11.570265769958382 ], [ -76.217384338378793, -11.571136474609318 ], [ -76.216629028320312, -11.57141017913807 ], [ -76.215065002441349, -11.570928573608398 ], [ -76.213905334472656, -11.570905685424748 ], [ -76.209526062011719, -11.573673248291016 ], [ -76.206100463867131, -11.574139595031738 ], [ -76.205276489257812, -11.574666976928711 ], [ -76.204887390136662, -11.57546424865717 ], [ -76.204940795898438, -11.579677581787109 ], [ -76.203872680664062, -11.580785751342773 ], [ -76.203399658203125, -11.581963539123535 ], [ -76.203392028808594, -11.582531929016113 ], [ -76.201736450195256, -11.58531475067133 ], [ -76.2005615234375, -11.586297035217285 ], [ -76.199188232421875, -11.588302612304631 ], [ -76.198051452636719, -11.588847160339299 ], [ -76.196319580078125, -11.588964462280273 ], [ -76.195098876953125, -11.588642120361328 ], [ -76.193572998046875, -11.587844848632812 ], [ -76.191680908203125, -11.587546348571777 ], [ -76.188858032226506, -11.586554527282658 ], [ -76.186279296874943, -11.586554527282658 ], [ -76.185577392578125, -11.587046623229924 ], [ -76.184989929199219, -11.588295936584473 ], [ -76.184974670410156, -11.592067718505859 ], [ -76.1842041015625, -11.593887329101562 ], [ -76.184097290039006, -11.595145225524846 ], [ -76.184638977050724, -11.596760749816895 ], [ -76.187187194824219, -11.600032806396428 ], [ -76.187690734863224, -11.602144241333008 ], [ -76.187721252441349, -11.603303909301701 ], [ -76.187179565429688, -11.604635238647404 ], [ -76.186164855956974, -11.605669975280762 ], [ -76.185478210449219, -11.606034278869629 ], [ -76.183494567871037, -11.606357574462891 ], [ -76.182395935058594, -11.606777191162109 ], [ -76.181373596191406, -11.607534408569222 ], [ -76.18023681640625, -11.608831405639592 ], [ -76.179725646972656, -11.609763145446777 ], [ -76.179489135742131, -11.611673355102539 ], [ -76.179496765136662, -11.612739562988281 ], [ -76.179862976074219, -11.613977432250977 ], [ -76.180145263671875, -11.614339828491211 ], [ -76.180732727050724, -11.614569664001465 ], [ -76.183555603027344, -11.614603996276799 ], [ -76.184585571289062, -11.614355087280273 ], [ -76.187263488769531, -11.61525821685791 ], [ -76.192352294921875, -11.619620323181152 ], [ -76.194892883300781, -11.620568275451603 ], [ -76.196670532226506, -11.621837615966797 ], [ -76.197326660156193, -11.622467041015625 ], [ -76.198204040527287, -11.623938560485783 ], [ -76.19879150390625, -11.62602519989008 ], [ -76.198661804199162, -11.627697944641056 ], [ -76.197013854980469, -11.629648208618107 ], [ -76.190155029296875, -11.63502311706543 ], [ -76.189994812011662, -11.635654449462891 ], [ -76.190223693847656, -11.637227058410588 ], [ -76.19012451171875, -11.638004302978402 ], [ -76.188186645507756, -11.641474723815861 ], [ -76.188018798828125, -11.642108917236328 ], [ -76.188201904296761, -11.643698692321664 ], [ -76.190406799316406, -11.647242546081543 ], [ -76.191558837890625, -11.64827823638916 ], [ -76.193084716796875, -11.649078369140625 ], [ -76.194007873535099, -11.649932861328125 ], [ -76.195594787597656, -11.65180587768549 ], [ -76.196403503417855, -11.653422355651799 ], [ -76.199386596679688, -11.655921936035099 ], [ -76.200469970703068, -11.657538414001465 ], [ -76.201553344726449, -11.658202171325684 ], [ -76.2030029296875, -11.658727645873967 ], [ -76.203353881835881, -11.659352302551213 ], [ -76.203506469726562, -11.661148071289006 ], [ -76.203025817871094, -11.662500381469727 ], [ -76.202407836914006, -11.667121887207031 ], [ -76.201980590820312, -11.667910575866642 ], [ -76.199729919433537, -11.670025825500488 ], [ -76.198944091796818, -11.671096801757699 ], [ -76.197090148925781, -11.677362442016602 ], [ -76.195114135742188, -11.680678367614689 ], [ -76.194976806640625, -11.684712409973145 ], [ -76.194396972656193, -11.686214447021484 ], [ -76.194297790527287, -11.687561035156193 ], [ -76.194503784179688, -11.688421249389648 ], [ -76.195831298828011, -11.689781188964787 ], [ -76.196159362792969, -11.690528869628849 ], [ -76.196090698242131, -11.691055297851562 ], [ -76.195411682128906, -11.69201469421381 ], [ -76.195457458496094, -11.693083763122502 ], [ -76.196212768554574, -11.694010734558105 ], [ -76.196884155273438, -11.694226264953613 ], [ -76.197990417480412, -11.694193840026855 ], [ -76.200210571289006, -11.693370819091797 ], [ -76.201545715331974, -11.693146705627328 ], [ -76.203430175781193, -11.69351863861084 ], [ -76.205741882324162, -11.694369316101074 ], [ -76.206245422363281, -11.695504188537541 ], [ -76.206756591796875, -11.698514938354379 ], [ -76.207221984863281, -11.699398994445801 ], [ -76.207809448242188, -11.699963569641113 ], [ -76.208229064941293, -11.701519012451058 ], [ -76.207504272460938, -11.703511238098088 ], [ -76.205284118652344, -11.706792831420842 ], [ -76.203445434570256, -11.710400581359806 ], [ -76.203216552734375, -11.711819648742619 ], [ -76.203285217285156, -11.713972091674805 ], [ -76.202308654785099, -11.71526908874506 ], [ -76.202011108398381, -11.716210365295353 ], [ -76.202461242675781, -11.718667030334473 ], [ -76.200790405273324, -11.721938133239746 ], [ -76.200767517089787, -11.723727226257324 ], [ -76.20174407958973, -11.727377891540527 ], [ -76.201393127441406, -11.729928016662541 ], [ -76.19854736328125, -11.736433029174748 ], [ -76.197242736816349, -11.738066673278809 ], [ -76.193954467773438, -11.737602233886719 ], [ -76.190498352050781, -11.737723350524846 ], [ -76.186660766601506, -11.738435745239201 ], [ -76.185302734375, -11.738965034484863 ], [ -76.184310913085938, -11.73961162567133 ], [ -76.182357788085881, -11.743453025817757 ], [ -76.179946899414062, -11.746934890747013 ], [ -76.178009033203125, -11.748572349548283 ], [ -76.175048828125, -11.749957084655762 ], [ -76.17413330078125, -11.750954627990723 ], [ -76.173233032226562, -11.75251388549799 ], [ -76.171798706054574, -11.755540847778207 ], [ -76.171493530273381, -11.756924629211369 ], [ -76.171653747558594, -11.759076118469238 ], [ -76.172950744628906, -11.761440277099609 ], [ -76.172828674316349, -11.762426376342773 ], [ -76.172248840331974, -11.763305664062443 ], [ -76.168655395507812, -11.766990661621094 ], [ -76.166900634765568, -11.768129348754769 ], [ -76.165443420410156, -11.768648147583008 ], [ -76.164611816406193, -11.769231796264648 ], [ -76.164237976074162, -11.76982212066639 ], [ -76.164085388183594, -11.77116870880127 ], [ -76.163314819335938, -11.772383689880371 ], [ -76.160255432128849, -11.774484634399357 ], [ -76.157379150390568, -11.777235984802246 ], [ -76.154335021972599, -11.781253814697266 ], [ -76.152687072753906, -11.782796859741154 ], [ -76.150634765625, -11.783782005310002 ], [ -76.148834228515625, -11.783755302429199 ], [ -76.148223876953068, -11.783203125 ], [ -76.147560119628849, -11.781940460205078 ], [ -76.144256591796875, -11.779232978820744 ], [ -76.142906188964844, -11.777783393859863 ], [ -76.142776489257756, -11.776996612548828 ], [ -76.142097473144531, -11.776691436767578 ], [ -76.141586303710938, -11.776784896850529 ], [ -76.140007019042912, -11.778221130371094 ], [ -76.137214660644531, -11.779523849487305 ], [ -76.136413574218693, -11.779682159423771 ], [ -76.135337829589787, -11.780344963073674 ], [ -76.134902954101562, -11.783293724060002 ], [ -76.135246276855412, -11.785661697387638 ], [ -76.134933471679688, -11.78693771362299 ], [ -76.135391235351562, -11.78950309753418 ], [ -76.135276794433594, -11.790120124816838 ], [ -76.134025573730412, -11.791164398193246 ], [ -76.131431579589787, -11.79193210601801 ], [ -76.1298828125, -11.793042182922363 ], [ -76.12615966796875, -11.793898582458439 ], [ -76.123954772949219, -11.795164108276367 ], [ -76.123565673828125, -11.795761108398438 ], [ -76.122886657714844, -11.799362182617074 ], [ -76.122383117675724, -11.800216674804631 ], [ -76.117523193359318, -11.805190086364746 ], [ -76.115478515625, -11.808263778686467 ], [ -76.112190246581974, -11.811095237731934 ], [ -76.110649108886662, -11.812759399414062 ], [ -76.110473632812443, -11.81489181518549 ], [ -76.110809326171875, -11.815794944763184 ], [ -76.1107177734375, -11.816690444946289 ], [ -76.109832763671875, -11.81856632232666 ], [ -76.10552978515625, -11.823971748351994 ], [ -76.105133056640568, -11.825057029724064 ], [ -76.104965209960938, -11.826760292053109 ], [ -76.104118347167969, -11.82883358001709 ], [ -76.101348876953125, -11.832612037658691 ], [ -76.09906005859375, -11.834530830383301 ], [ -76.097610473632812, -11.835276603698674 ], [ -76.096740722656193, -11.836222648620549 ], [ -76.096702575683594, -11.837380409240723 ], [ -76.09798431396473, -11.839344978332406 ], [ -76.098136901855469, -11.840970039367562 ], [ -76.097526550292969, -11.841914176940918 ], [ -76.095672607421818, -11.84343147277832 ], [ -76.094329833984318, -11.848010063171387 ], [ -76.093452453613281, -11.849580764770508 ], [ -76.092658996582031, -11.850386619567871 ], [ -76.09161376953125, -11.850700378417969 ], [ -76.090126037597656, -11.850468635559025 ], [ -76.088859558105469, -11.849272727966309 ], [ -76.088180541992188, -11.849085807800236 ], [ -76.087944030761662, -11.849600791931039 ], [ -76.087478637695256, -11.853031158447209 ], [ -76.085990905761719, -11.856571197509709 ], [ -76.085151672363281, -11.85784912109375 ], [ -76.084915161132756, -11.859631538391056 ], [ -76.084541320800781, -11.860246658325138 ], [ -76.082679748535156, -11.860941886901799 ], [ -76.081146240234375, -11.862068176269531 ], [ -76.079368591308537, -11.862491607665959 ], [ -76.078384399414062, -11.862965583801213 ], [ -76.071418762207031, -11.870415687560978 ], [ -76.067825317382756, -11.87359428405756 ], [ -76.064933776855469, -11.875775337219125 ], [ -76.061370849609375, -11.877630233764648 ], [ -76.059127807617188, -11.87932109832758 ], [ -76.055511474609318, -11.885126113891545 ], [ -76.053810119628849, -11.887108802795353 ], [ -76.052558898925724, -11.889391899108887 ], [ -76.051139831542912, -11.891341209411564 ], [ -76.050842285156193, -11.89266300201416 ], [ -76.050743103027287, -11.894807815551758 ], [ -76.050895690917969, -11.896867752075138 ], [ -76.051460266113281, -11.899686813354492 ], [ -76.050529479980469, -11.900895118713379 ], [ -76.049583435058594, -11.90140438079834 ], [ -76.049041748046818, -11.902018547058049 ], [ -76.04949951171875, -11.903932571411019 ], [ -76.050460815429631, -11.905765533447209 ], [ -76.050621032714844, -11.909156799316406 ], [ -76.051307678222656, -11.910437583923283 ], [ -76.051651000976562, -11.910709381103516 ], [ -76.052284240722599, -11.910734176635742 ], [ -76.052886962890625, -11.911409378051758 ], [ -76.053695678710938, -11.911830902099609 ], [ -76.055137634277287, -11.912095069885197 ], [ -76.056083679199162, -11.911793708801213 ], [ -76.056716918945312, -11.911855697631836 ], [ -76.057769775390625, -11.91219520568842 ], [ -76.058174133300781, -11.912672042846623 ], [ -76.058204650878849, -11.913656234741154 ], [ -76.057411193847656, -11.914754867553711 ], [ -76.057151794433537, -11.915515899658146 ], [ -76.057342529296818, -11.91728687286377 ], [ -76.057220458984375, -11.91837215423584 ], [ -76.055946350097656, -11.920087814331055 ], [ -76.055648803710938, -11.921309471130314 ], [ -76.055702209472599, -11.922647476196289 ], [ -76.056312561035156, -11.923311233520508 ], [ -76.056488037109318, -11.92427921295166 ], [ -76.056930541992188, -11.924620628356877 ], [ -76.056938171386719, -11.924983024597168 ], [ -76.056045532226562, -11.92644214630127 ], [ -76.054954528808537, -11.927224159240723 ], [ -76.053657531738281, -11.928611755371094 ], [ -76.052772521972599, -11.930587768554574 ], [ -76.052719116210938, -11.931455612182617 ], [ -76.052955627441349, -11.932440757751408 ], [ -76.054801940917969, -11.934990882873478 ], [ -76.055274963378906, -11.937186241149902 ], [ -76.055023193359375, -11.93848991394043 ], [ -76.054389953613224, -11.939250946044865 ], [ -76.053512573242131, -11.939544677734318 ], [ -76.052879333496094, -11.942131996154728 ], [ -76.053169250488281, -11.943426132202148 ], [ -76.053054809570256, -11.945133209228516 ], [ -76.05279541015625, -11.946627616882324 ], [ -76.052406311035156, -11.947335243225098 ], [ -76.047584533691406, -11.95219898223877 ], [ -76.04669189453125, -11.952627182006836 ], [ -76.044601440429688, -11.95266056060791 ], [ -76.043304443359318, -11.953914642333984 ], [ -76.040657043456974, -11.955695152282715 ], [ -76.040084838867131, -11.956872940063477 ], [ -76.039070129394531, -11.960339546203556 ], [ -76.037513732910099, -11.963871955871525 ], [ -76.035835266113281, -11.96422100067133 ], [ -76.034400939941406, -11.964986801147461 ], [ -76.026687622070312, -11.970413208007812 ], [ -76.023910522460938, -11.972857475280762 ], [ -76.020576477050781, -11.974494934082031 ], [ -76.019775390624943, -11.975375175476017 ], [ -76.0181884765625, -11.978800773620549 ], [ -76.017608642578125, -11.9793701171875 ], [ -76.015571594238224, -11.982662200927621 ], [ -76.014305114746094, -11.98419284820551 ], [ -76.01263427734375, -11.98558330535883 ], [ -76.011497497558594, -11.986129760742188 ], [ -76.009674072265511, -11.985855102539062 ], [ -76.008468627929688, -11.985479354858398 ], [ -76.006393432617188, -11.984350204467773 ], [ -76.005500793457031, -11.984145164489689 ], [ -76.004501342773381, -11.984156608581486 ], [ -76.002822875976562, -11.984599113464355 ], [ -76.00091552734375, -11.984484672546387 ], [ -75.997261047363224, -11.987490653991642 ], [ -75.994903564453125, -11.988602638244629 ], [ -75.993759155273438, -11.993227958679199 ], [ -75.992988586425781, -11.993790626525879 ], [ -75.992164611816406, -11.993857383727971 ], [ -75.988739013671875, -11.992431640625 ], [ -75.98052978515625, -11.98731613159174 ], [ -75.976348876953125, -11.983848571777344 ], [ -75.975364685058594, -11.98340892791748 ], [ -75.97412109375, -11.983287811279297 ], [ -75.972076416015568, -11.983538627624512 ], [ -75.970375061035099, -11.984015464782715 ], [ -75.968734741210881, -11.985239028930664 ], [ -75.967094421386719, -11.986909866333008 ], [ -75.965980529785099, -11.987401962280273 ], [ -75.964485168457031, -11.987724304199219 ], [ -75.962829589843693, -11.987709999084416 ], [ -75.961524963378906, -11.987354278564453 ], [ -75.960494995117188, -11.986417770385685 ], [ -75.959907531738281, -11.985353469848576 ], [ -75.959106445312443, -11.984560012817383 ], [ -75.956863403320312, -11.984847068786621 ], [ -75.953933715820312, -11.985706329345646 ], [ -75.952247619628849, -11.986870765685978 ], [ -75.951454162597656, -11.987090110778752 ], [ -75.950889587402344, -11.987508773803711 ], [ -75.950798034667912, -11.989225387573242 ], [ -75.949737548828125, -11.991454124450684 ], [ -75.949470520019474, -11.993082046508732 ], [ -75.948837280273438, -11.993800163269043 ], [ -75.947563171386662, -11.994492530822697 ], [ -75.946411132812443, -11.994397163391056 ], [ -75.943229675292969, -11.992424964904785 ], [ -75.940635681152344, -11.991565704345703 ], [ -75.938018798828068, -11.989612579345646 ], [ -75.935562133789006, -11.988807678222656 ], [ -75.930969238281193, -11.985189437866097 ], [ -75.928970336914006, -11.983963012695256 ], [ -75.926307678222599, -11.983548164367676 ], [ -75.921905517578068, -11.983653068542424 ], [ -75.920074462890625, -11.98420238494873 ], [ -75.918838500976562, -11.985255241394043 ], [ -75.914054870605469, -11.986429214477425 ], [ -75.912391662597599, -11.987328529357853 ], [ -75.910987854003906, -11.988797187805176 ], [ -75.909591674804688, -11.991723060607853 ], [ -75.90765380859375, -11.993451118469181 ], [ -75.907493591308594, -11.995310783386174 ], [ -75.907196044921875, -11.995917320251465 ], [ -75.90631103515625, -11.996760368347168 ], [ -75.903625488281136, -11.997783660888672 ], [ -75.902389526367188, -11.997770309448185 ], [ -75.901771545410156, -11.997526168823242 ], [ -75.901420593261662, -11.996931076049805 ], [ -75.901084899902344, -11.995023727416992 ], [ -75.900741577148381, -11.994354248046818 ], [ -75.899848937988281, -11.99372673034668 ], [ -75.898017883300781, -11.993044853210449 ], [ -75.8961181640625, -11.992860794067383 ], [ -75.891265869140625, -11.993715286254883 ], [ -75.889640808105469, -11.993008613586426 ], [ -75.887184143066406, -11.992734909057617 ], [ -75.885444641113281, -11.99311447143549 ], [ -75.883827209472656, -11.993841171264592 ], [ -75.878189086914062, -11.998216629028263 ], [ -75.876091003417969, -11.999443054199105 ], [ -75.8740234375, -11.999902725219727 ], [ -75.870124816894474, -11.999822616577148 ], [ -75.868148803710824, -12.000138282775765 ], [ -75.866455078125, -12.001299858093205 ], [ -75.862442016601562, -12.002252578735295 ], [ -75.861740112304631, -12.002670288085881 ], [ -75.860908508300781, -12.003749847412109 ], [ -75.858772277831974, -12.004641532897892 ], [ -75.856864929199162, -12.006384849548226 ], [ -75.855636596679631, -12.006975173950195 ], [ -75.85272216796875, -12.007745742797852 ], [ -75.849586486816406, -12.007970809936467 ], [ -75.846382141113224, -12.007275581359806 ], [ -75.844619750976562, -12.006540298461857 ], [ -75.84356689453125, -12.006661415100098 ], [ -75.843101501464844, -12.007349014282227 ], [ -75.842285156249943, -12.009493827819767 ], [ -75.839424133300724, -12.014259338378906 ], [ -75.838661193847599, -12.015989303588754 ], [ -75.838325500488281, -12.017434120178223 ], [ -75.836387634277287, -12.01970195770258 ], [ -75.835838317871094, -12.023447036743164 ], [ -75.835067749023438, -12.024226188659668 ], [ -75.833946228027344, -12.024790763854867 ], [ -75.832328796386719, -12.024913787841797 ], [ -75.83013916015625, -12.024614334106445 ], [ -75.828407287597656, -12.023822784423771 ], [ -75.827011108398381, -12.022135734558105 ], [ -75.826339721679688, -12.020818710327092 ], [ -75.825706481933537, -12.017906188964844 ], [ -75.825607299804631, -12.01602840423584 ], [ -75.824829101562443, -12.014918327331543 ], [ -75.822517395019531, -12.014678955078068 ], [ -75.820960998535156, -12.013572692871094 ], [ -75.820259094238224, -12.013429641723633 ], [ -75.818618774414006, -12.016599655151367 ], [ -75.815490722656193, -12.020523071288949 ], [ -75.811843872070312, -12.023978233337402 ], [ -75.807220458984375, -12.027782440185547 ], [ -75.804412841796818, -12.029272079467773 ], [ -75.803466796874943, -12.029988288879281 ], [ -75.800971984863281, -12.03399467468256 ], [ -75.799392700195312, -12.034531593322697 ], [ -75.796852111816406, -12.036556243896484 ], [ -75.796020507812443, -12.036556243896484 ], [ -75.794197082519531, -12.035965919494572 ], [ -75.793380737304574, -12.036005020141545 ], [ -75.79217529296875, -12.036649703979435 ], [ -75.79132080078125, -12.037702560424748 ], [ -75.787666320800781, -12.038805961608773 ], [ -75.786178588867188, -12.040193557739201 ], [ -75.785728454589787, -12.04273509979248 ], [ -75.785400390625, -12.043443679809513 ], [ -75.784439086914062, -12.044013977050781 ], [ -75.7828369140625, -12.044325828552189 ], [ -75.781394958496094, -12.045351028442326 ], [ -75.780502319335881, -12.046377182006779 ], [ -75.778549194335938, -12.04961967468256 ], [ -75.776512145996094, -12.052157402038461 ], [ -75.774963378906193, -12.053481101989689 ], [ -75.771873474121094, -12.055480003356877 ], [ -75.769142150878849, -12.057765960693359 ], [ -75.766532897949219, -12.058994293212891 ], [ -75.762626647949219, -12.056355476379395 ], [ -75.761138916015568, -12.055662155151254 ], [ -75.757911682128906, -12.05510234832758 ], [ -75.754081726074162, -12.055283546447754 ], [ -75.752777099609375, -12.054862022399902 ], [ -75.749198913574162, -12.050614356994629 ], [ -75.746322631835938, -12.048105239868107 ], [ -75.745277404785156, -12.046890258789062 ], [ -75.743736267089844, -12.043871879577637 ], [ -75.742691040039062, -12.039273262023926 ], [ -75.741828918457031, -12.038407325744629 ], [ -75.739143371582031, -12.038801193237305 ], [ -75.736679077148438, -12.038873672485295 ], [ -75.728210449218693, -12.042981147766113 ], [ -75.7257080078125, -12.043079376220703 ], [ -75.722999572753793, -12.042725563049316 ], [ -75.722190856933594, -12.042881011962891 ], [ -75.720069885253906, -12.044097900390625 ], [ -75.718391418456974, -12.046598434448185 ], [ -75.71795654296875, -12.046888351440316 ], [ -75.717201232910156, -12.047007560729867 ], [ -75.715255737304631, -12.046660423278809 ], [ -75.712417602539062, -12.045039176940918 ], [ -75.71063232421875, -12.044610977172852 ], [ -75.709800720214844, -12.044901847839299 ], [ -75.70806884765625, -12.046713829040471 ], [ -75.707145690917912, -12.047231674194336 ], [ -75.704444885253906, -12.047792434692383 ], [ -75.702529907226562, -12.047769546508789 ], [ -75.701324462890568, -12.048133850097656 ], [ -75.700614929199219, -12.047610282897949 ], [ -75.699424743652287, -12.045734405517578 ], [ -75.698249816894531, -12.044596672058049 ], [ -75.695693969726506, -12.043038368225041 ], [ -75.694282531738224, -12.042552947997933 ], [ -75.690193176269418, -12.046533584594727 ], [ -75.686820983886662, -12.051624298095703 ], [ -75.683822631835938, -12.052434921264648 ], [ -75.682868957519531, -12.053208351135254 ], [ -75.682556152343693, -12.053956985473633 ], [ -75.681999206542969, -12.05456638336176 ], [ -75.678924560546818, -12.055676460266113 ], [ -75.677932739257812, -12.056403160095215 ], [ -75.677093505859318, -12.057472229003906 ], [ -75.675277709960938, -12.058071136474553 ], [ -75.675788879394474, -12.058956146240121 ], [ -75.679550170898438, -12.062095642089787 ], [ -75.680946350097656, -12.064732551574707 ], [ -75.681358337402344, -12.066168785095158 ], [ -75.68294525146473, -12.067432403564396 ], [ -75.683219909667912, -12.06788253784174 ], [ -75.683258056640625, -12.071127891540471 ], [ -75.684013366699219, -12.07192230224598 ], [ -75.684196472167969, -12.072845458984318 ], [ -75.683601379394474, -12.075748443603516 ], [ -75.681571960449219, -12.078927993774357 ], [ -75.681564331054688, -12.080158233642578 ], [ -75.682098388671875, -12.081394195556641 ], [ -75.681983947753849, -12.082180023193359 ], [ -75.681106567382756, -12.082826614379826 ], [ -75.679740905761719, -12.082927703857422 ], [ -75.678123474121094, -12.083946228027344 ], [ -75.675003051757756, -12.08448600769043 ], [ -75.669891357421875, -12.087873458862248 ], [ -75.668144226074162, -12.089585304260197 ], [ -75.665260314941406, -12.090812683105469 ], [ -75.662094116210938, -12.092700004577637 ], [ -75.660377502441406, -12.094042778015137 ], [ -75.659294128417855, -12.095267295837289 ], [ -75.657943725585881, -12.098499298095646 ], [ -75.656791687011662, -12.100643157958984 ], [ -75.655616760253906, -12.102320671081429 ], [ -75.654655456542969, -12.103270530700627 ], [ -75.651832580566349, -12.104642868041992 ], [ -75.650062561035156, -12.106321334838867 ], [ -75.646621704101562, -12.107648849487305 ], [ -75.643768310546875, -12.109265327453613 ], [ -75.642234802246094, -12.110390663146973 ], [ -75.640449523925781, -12.11226654052723 ], [ -75.639556884765625, -12.112458229064885 ], [ -75.638130187988281, -12.114106178283691 ], [ -75.635185241699219, -12.114502906799316 ], [ -75.635253906249943, -12.11502742767334 ], [ -75.637451171874943, -12.116630554199162 ], [ -75.638603210449219, -12.11799430847168 ], [ -75.638999938964844, -12.118996620178223 ], [ -75.63909912109375, -12.120352745056152 ], [ -75.637351989746037, -12.123612403869572 ], [ -75.636123657226562, -12.124881744384766 ], [ -75.630393981933537, -12.12947940826416 ], [ -75.629104614257812, -12.131072044372559 ], [ -75.628021240234375, -12.132974624633732 ], [ -75.627685546875, -12.134096145629883 ], [ -75.627990722656193, -12.135860443115234 ], [ -75.628463745117131, -12.136690139770451 ], [ -75.629852294921875, -12.13813495635975 ], [ -75.629852294921875, -12.139491081237736 ], [ -75.628913879394531, -12.141419410705566 ], [ -75.629096984863281, -12.141934394836369 ], [ -75.630409240722656, -12.143505096435547 ], [ -75.63226318359375, -12.145273208618107 ], [ -75.633941650390625, -12.145893096923771 ], [ -75.635231018066349, -12.146894454955998 ], [ -75.637580871582031, -12.147982597351017 ], [ -75.638893127441406, -12.148377418518066 ], [ -75.641090393066406, -12.148462295532227 ], [ -75.6419677734375, -12.149092674255371 ], [ -75.645027160644531, -12.157739639282227 ], [ -75.647224426269531, -12.160846710205078 ], [ -75.649131774902344, -12.162785530090332 ], [ -75.648918151855469, -12.167219161987248 ], [ -75.650001525878906, -12.16861629486084 ], [ -75.650169372558594, -12.169232368469238 ], [ -75.64971923828125, -12.172187805175781 ], [ -75.649833679199162, -12.172848701476937 ], [ -75.650779724121037, -12.17401123046875 ], [ -75.652931213378906, -12.174877166748047 ], [ -75.654693603515568, -12.175123214721623 ], [ -75.657691955566406, -12.174783706665039 ], [ -75.658203125, -12.174908638000431 ], [ -75.658836364746094, -12.175492286682072 ], [ -75.659538269042969, -12.177101135253849 ], [ -75.659942626953068, -12.179081916809082 ], [ -75.659408569335938, -12.180772781372013 ], [ -75.658622741699162, -12.182186126708984 ], [ -75.658462524414062, -12.183417320251465 ], [ -75.659255981445312, -12.184480667114201 ], [ -75.659904479980469, -12.184995651245117 ], [ -75.660690307617131, -12.185256004333439 ], [ -75.6619873046875, -12.186653137206918 ], [ -75.663360595703068, -12.189290046691895 ], [ -75.663597106933594, -12.190349578857365 ], [ -75.665206909179574, -12.192523956298828 ], [ -75.665451049804688, -12.193581581115723 ], [ -75.665184020996037, -12.194486618041935 ], [ -75.664619445800724, -12.195247650146484 ], [ -75.663818359375, -12.196000099182072 ], [ -75.661361694335881, -12.197461128234863 ], [ -75.659774780273438, -12.198758125305119 ], [ -75.658927917480469, -12.199808120727539 ], [ -75.656845092773438, -12.20329570770258 ], [ -75.653732299804631, -12.205925941467228 ], [ -75.653205871582031, -12.207454681396484 ], [ -75.653511047363281, -12.212580680847168 ], [ -75.652976989746037, -12.214094161987305 ], [ -75.651969909667969, -12.21519947052002 ], [ -75.649665832519531, -12.21640682220459 ], [ -75.648574829101562, -12.217223167419377 ], [ -75.646919250488281, -12.219035148620549 ], [ -75.645889282226562, -12.220935821533203 ], [ -75.645545959472599, -12.224699020385742 ], [ -75.644866943359318, -12.226906776428166 ], [ -75.644004821777287, -12.228743553161564 ], [ -75.642768859863224, -12.230321884155273 ], [ -75.640464782714844, -12.232471466064453 ], [ -75.637939453125, -12.235497474670353 ], [ -75.633872985839844, -12.238877296447754 ], [ -75.633628845214787, -12.240333557128849 ], [ -75.634124755859375, -12.241535186767578 ], [ -75.634078979492188, -12.241881370544434 ], [ -75.630813598632812, -12.245161056518441 ], [ -75.630447387695312, -12.245974540710449 ], [ -75.627456665039062, -12.249147415161076 ], [ -75.624801635742188, -12.250165939331055 ], [ -75.622825622558594, -12.252033233642578 ], [ -75.620323181152344, -12.253684997558537 ], [ -75.617385864257812, -12.256303787231388 ], [ -75.616668701171875, -12.257607460021916 ], [ -75.616470336914006, -12.25880241394043 ], [ -75.616607666015625, -12.25987720489502 ], [ -75.617637634277344, -12.262660026550293 ], [ -75.617362976074219, -12.263973236083928 ], [ -75.616050720214844, -12.265360832214355 ], [ -75.611900329589844, -12.267176628112736 ], [ -75.611030578613224, -12.267794609069824 ], [ -75.609031677246037, -12.269798278808537 ], [ -75.605888366699105, -12.273755073547363 ], [ -75.604431152343693, -12.276201248168945 ], [ -75.604209899902344, -12.277520179748535 ], [ -75.602928161621037, -12.280355453491211 ], [ -75.597404479980469, -12.286860466003304 ], [ -75.595794677734375, -12.290579795837289 ], [ -75.595184326171818, -12.293339729309082 ], [ -75.594245910644474, -12.295148849487305 ], [ -75.592979431152287, -12.296373367309457 ], [ -75.591499328613281, -12.297369003295898 ], [ -75.590049743652287, -12.297762870788574 ], [ -75.588546752929688, -12.297637939453068 ], [ -75.587745666503849, -12.29815483093256 ], [ -75.586990356445256, -12.299144744873047 ], [ -75.586738586425781, -12.300046920776367 ], [ -75.586799621581974, -12.300881385803223 ], [ -75.589363098144474, -12.303677558898869 ], [ -75.590164184570312, -12.304915428161621 ], [ -75.591133117675781, -12.308014869689941 ], [ -75.59210205078125, -12.30963134765625 ], [ -75.593467712402287, -12.313524246215763 ], [ -75.59291839599598, -12.314131736755257 ], [ -75.592445373535156, -12.315399169921761 ], [ -75.592498779296875, -12.318490028381348 ], [ -75.592201232910156, -12.31995773315424 ], [ -75.589752197265568, -12.322304725646973 ], [ -75.589164733886662, -12.324739456176758 ], [ -75.586830139160156, -12.325907707214355 ], [ -75.584625244140625, -12.328493118286076 ], [ -75.583854675292912, -12.328763961791935 ], [ -75.580978393554631, -12.32872486114502 ], [ -75.579193115234375, -12.329418182372933 ], [ -75.570632934570312, -12.330547332763615 ], [ -75.569107055664062, -12.331154823303109 ], [ -75.567588806152344, -12.332504272460938 ], [ -75.56622314453125, -12.334209442138672 ], [ -75.565284729003906, -12.33586597442627 ], [ -75.563835144042969, -12.340652465820256 ], [ -75.562858581542912, -12.3428697586059 ], [ -75.557472229003906, -12.350334167480469 ], [ -75.556182861328068, -12.354532241821232 ], [ -75.554527282714844, -12.356839179992676 ], [ -75.554649353027287, -12.358593940734806 ], [ -75.554229736328125, -12.35974216461176 ], [ -75.549362182617188, -12.364482879638615 ], [ -75.549003601074219, -12.365214347839299 ], [ -75.549034118652287, -12.366924285888672 ], [ -75.550254821777287, -12.369914054870549 ], [ -75.550758361816349, -12.375130653381348 ], [ -75.551826477050781, -12.376386642455941 ], [ -75.553390502929688, -12.377485275268555 ], [ -75.555809020996037, -12.380455017089844 ], [ -75.556137084960938, -12.381694793701172 ], [ -75.556098937988224, -12.384833335876465 ], [ -75.556747436523381, -12.386873245239144 ], [ -75.55804443359375, -12.387893676757812 ], [ -75.558860778808537, -12.38929367065424 ], [ -75.561355590820312, -12.39085483551014 ], [ -75.561889648437443, -12.391611099243107 ], [ -75.561759948730469, -12.393039703369141 ], [ -75.560287475585881, -12.397304534912053 ], [ -75.560317993164062, -12.399737358093205 ], [ -75.559883117675781, -12.404672622680607 ], [ -75.560234069824219, -12.410849571228027 ], [ -75.559944152832031, -12.411129951477051 ], [ -75.559623718261662, -12.412016868591309 ], [ -75.557914733886662, -12.413908004760742 ], [ -75.558036804199219, -12.414587020874023 ], [ -75.559272766113281, -12.416366577148381 ], [ -75.559890747070256, -12.417884826660099 ], [ -75.559646606445312, -12.421356201171875 ], [ -75.559242248535099, -12.42291259765625 ], [ -75.557868957519531, -12.42554759979248 ], [ -75.557106018066406, -12.42827129364008 ], [ -75.555946350097656, -12.430397987365666 ], [ -75.555419921874943, -12.432064056396484 ], [ -75.555999755859318, -12.434279441833439 ], [ -75.55596923828125, -12.436555862426701 ], [ -75.556442260742188, -12.438084602355957 ], [ -75.556144714355469, -12.439405441284123 ], [ -75.555335998535099, -12.440300941467285 ], [ -75.555351257324219, -12.441494941711312 ], [ -75.556243896484375, -12.442695617675724 ], [ -75.556945800781193, -12.444594383239632 ], [ -75.558059692382812, -12.455199241638184 ], [ -75.557640075683594, -12.45612907409668 ], [ -75.555587768554688, -12.458683967590332 ], [ -75.554229736328125, -12.46498966217041 ], [ -75.553054809570199, -12.466494560241642 ], [ -75.551498413085881, -12.468016624450684 ], [ -75.550239562988281, -12.470251083374023 ], [ -75.550338745117188, -12.473796844482365 ], [ -75.549125671386662, -12.475253105163574 ], [ -75.548675537109375, -12.476656913757324 ], [ -75.547004699707031, -12.478795051574707 ], [ -75.546173095703068, -12.480342864990234 ], [ -75.544548034667912, -12.485628128051758 ], [ -75.54400634765625, -12.488812446594238 ], [ -75.543113708496037, -12.491218566894474 ], [ -75.543006896972599, -12.493378639221078 ], [ -75.542678833007812, -12.494537353515625 ], [ -75.541610717773324, -12.496882438659668 ], [ -75.539718627929688, -12.499345779418945 ], [ -75.539688110351506, -12.500022888183537 ], [ -75.5404052734375, -12.50291538238514 ], [ -75.541458129882812, -12.505011558532715 ], [ -75.541496276855412, -12.505570411682072 ], [ -75.540451049804631, -12.50731182098383 ], [ -75.538429260253849, -12.509340286254883 ], [ -75.53857421875, -12.512116432189941 ], [ -75.538429260253849, -12.513661384582463 ], [ -75.537620544433594, -12.51531791687006 ], [ -75.536178588867188, -12.517127990722656 ], [ -75.535835266113281, -12.519058227539062 ], [ -75.538581848144531, -12.522270202636719 ], [ -75.540069580078068, -12.52241325378418 ], [ -75.542526245117188, -12.523310661315918 ], [ -75.543724060058594, -12.524022102355957 ], [ -75.545341491699219, -12.52546501159668 ], [ -75.545822143554688, -12.527022361755371 ], [ -75.546249389648381, -12.529959678649902 ], [ -75.545829772949219, -12.532573699951172 ], [ -75.546455383300724, -12.533342361450138 ], [ -75.547973632812443, -12.534269332885742 ], [ -75.548789978027344, -12.53528976440424 ], [ -75.549102783203125, -12.536346435546818 ], [ -75.549156188964844, -12.537955284118596 ], [ -75.551742553710938, -12.542119026184082 ], [ -75.5517578125, -12.54248142242426 ], [ -75.552223205566406, -12.54317569732666 ], [ -75.552574157714787, -12.545065879821777 ], [ -75.553466796875, -12.545246124267578 ], [ -75.555030822753849, -12.54611873626709 ], [ -75.556533813476562, -12.545436859130859 ], [ -75.557838439941406, -12.545559883117676 ], [ -75.559242248535099, -12.546290397644043 ], [ -75.560798645019531, -12.547624588012695 ], [ -75.562171936035156, -12.549365997314453 ], [ -75.566520690917969, -12.55341911315918 ], [ -75.566856384277287, -12.554231643676701 ], [ -75.566787719726449, -12.558924674987736 ], [ -75.567283630371094, -12.559927940368652 ], [ -75.570083618164062, -12.561402320861816 ], [ -75.571914672851506, -12.562837600708008 ], [ -75.572128295898324, -12.565279006957951 ], [ -75.571609497070312, -12.566953659057617 ], [ -75.569343566894474, -12.569393157958984 ], [ -75.566864013671818, -12.570644378662109 ], [ -75.566329956054688, -12.571720123290959 ], [ -75.566230773925781, -12.572733879089299 ], [ -75.566558837890625, -12.574443817138672 ], [ -75.567993164062443, -12.578625679016056 ], [ -75.570625305175781, -12.582661628723145 ], [ -75.572013854980412, -12.584079742431641 ], [ -75.572311401367131, -12.584855079650879 ], [ -75.572563171386719, -12.589529037475472 ], [ -75.573776245117188, -12.5905504226684 ], [ -75.576393127441349, -12.591267585754395 ], [ -75.577812194824219, -12.591987609863281 ], [ -75.578628540039062, -12.592872619628906 ], [ -75.578994750976449, -12.593623161315861 ], [ -75.579505920410156, -12.595484733581543 ], [ -75.579452514648381, -12.598531723022461 ], [ -75.579025268554688, -12.600702285766602 ], [ -75.579338073730469, -12.606217384338379 ], [ -75.579978942871094, -12.609940528869629 ], [ -75.58056640625, -12.61176681518549 ], [ -75.581336975097656, -12.617035865783635 ], [ -75.582565307617188, -12.620208740234375 ], [ -75.582908630371094, -12.622124671935921 ], [ -75.582664489746094, -12.623091697692814 ], [ -75.580978393554631, -12.626323699951172 ], [ -75.580505371093693, -12.627798080444336 ], [ -75.580223083496037, -12.631338119506836 ], [ -75.580284118652344, -12.639755249023438 ], [ -75.57958984375, -12.641339302062988 ], [ -75.5797119140625, -12.641790390014535 ], [ -75.578498840331974, -12.645003318786621 ], [ -75.57818603515625, -12.64642333984375 ], [ -75.578308105468693, -12.653502464294434 ], [ -75.576896667480355, -12.65598201751709 ], [ -75.575759887695312, -12.658799171447754 ], [ -75.57452392578125, -12.659632682800236 ], [ -75.571922302246037, -12.6597900390625 ], [ -75.568641662597656, -12.661624908447266 ], [ -75.566413879394531, -12.66182804107666 ], [ -75.565292358398438, -12.662500381469727 ], [ -75.564033508300781, -12.662864685058594 ], [ -75.561714172363224, -12.66298770904541 ], [ -75.561042785644474, -12.66348743438715 ], [ -75.560386657714787, -12.664401054382267 ], [ -75.560005187988224, -12.665720939636174 ], [ -75.5587158203125, -12.667848587036133 ], [ -75.558456420898381, -12.669299125671387 ], [ -75.558700561523438, -12.670091629028263 ], [ -75.560821533203125, -12.671714782714844 ], [ -75.562332153320312, -12.673275947570801 ], [ -75.563026428222656, -12.674333572387695 ], [ -75.563140869140568, -12.67518424987793 ], [ -75.562973022460824, -12.675978660583496 ], [ -75.562271118164006, -12.676747322082463 ], [ -75.561431884765568, -12.67724609375 ], [ -75.561073303222656, -12.677131652832031 ], [ -75.559974670410156, -12.677616119384766 ], [ -75.556877136230469, -12.677611351013184 ], [ -75.55548095703125, -12.678137779235783 ], [ -75.552757263183537, -12.680079460144043 ], [ -75.552017211914062, -12.680904388427678 ], [ -75.551673889160156, -12.681662559509221 ], [ -75.551361083984375, -12.683734893798828 ], [ -75.551513671874943, -12.684874534606934 ], [ -75.5535888671875, -12.686876296997013 ], [ -75.554458618164006, -12.688185691833496 ], [ -75.555435180664006, -12.690081596374512 ], [ -75.555877685546875, -12.692063331604004 ], [ -75.555984497070256, -12.697847366332951 ], [ -75.555633544921875, -12.698535919189453 ], [ -75.5552978515625, -12.700345039367676 ], [ -75.554100036621037, -12.702527046203613 ], [ -75.554191589355412, -12.703532218933105 ], [ -75.556190490722599, -12.704728126525879 ], [ -75.561882019042969, -12.706607818603516 ], [ -75.563728332519474, -12.708230972289982 ], [ -75.564857482910099, -12.708083152770939 ], [ -75.565635681152287, -12.707611083984318 ], [ -75.566909790039062, -12.707294464111328 ], [ -75.568130493164062, -12.707253456115666 ], [ -75.569038391113281, -12.707496643066406 ], [ -75.570297241210881, -12.708724021911621 ], [ -75.571235656738224, -12.710736274719238 ], [ -75.571907043456974, -12.711623191833382 ], [ -75.574455261230469, -12.713931083679199 ], [ -75.576530456542969, -12.714996337890625 ], [ -75.577095031738281, -12.715554237365666 ], [ -75.577079772949162, -12.715926170349121 ], [ -75.576148986816406, -12.716958045959473 ], [ -75.575035095214844, -12.719184875488168 ], [ -75.573455810546818, -12.721349716186523 ], [ -75.571151733398381, -12.725459098815918 ], [ -75.567832946777287, -12.727355003356877 ], [ -75.564399719238224, -12.73073768615717 ], [ -75.561775207519531, -12.732643127441406 ], [ -75.557754516601562, -12.733843803405648 ], [ -75.556549072265568, -12.734551429748478 ], [ -75.555900573730412, -12.734571456909123 ], [ -75.555343627929574, -12.734906196594181 ], [ -75.554580688476449, -12.735947608947754 ], [ -75.554527282714844, -12.738162994384652 ], [ -75.554161071777344, -12.739376068115178 ], [ -75.552925109863224, -12.741665840148926 ], [ -75.551841735839844, -12.74294471740717 ], [ -75.550872802734375, -12.743803977966309 ], [ -75.549499511718693, -12.744376182556152 ], [ -75.548324584960938, -12.745925903320312 ], [ -75.548049926757812, -12.746614456176758 ], [ -75.547073364257812, -12.747610092163086 ], [ -75.545112609863224, -12.74847412109375 ], [ -75.543022155761662, -12.750423431396484 ], [ -75.540550231933537, -12.750897407531738 ], [ -75.537208557128849, -12.753408432006836 ], [ -75.533233642578125, -12.757991790771428 ], [ -75.531585693359318, -12.759341239929199 ], [ -75.529968261718693, -12.760049819946175 ], [ -75.526565551757812, -12.763974189758301 ], [ -75.521064758300781, -12.765727043151855 ], [ -75.518096923828125, -12.768539428710938 ], [ -75.515121459960938, -12.772876739501839 ], [ -75.513626098632812, -12.77400016784668 ], [ -75.510795593261662, -12.775208473205566 ], [ -75.509674072265625, -12.775172233581543 ], [ -75.508857727050781, -12.774714469909668 ], [ -75.508155822753906, -12.774977684020996 ], [ -75.50823974609375, -12.776604652404728 ], [ -75.509933471679631, -12.779557228088322 ], [ -75.509841918945256, -12.782868385314941 ], [ -75.510536193847656, -12.785046577453613 ], [ -75.512367248535156, -12.787937164306584 ], [ -75.513061523437443, -12.788557052612248 ], [ -75.513839721679631, -12.788873672485352 ], [ -75.518142700195256, -12.787691116332951 ], [ -75.519737243652287, -12.787851333618164 ], [ -75.520378112792969, -12.788509368896428 ], [ -75.521194458007756, -12.790170669555607 ], [ -75.521682739257812, -12.792519569396916 ], [ -75.522163391113281, -12.793614387512207 ], [ -75.521926879882812, -12.794309616088867 ], [ -75.521705627441406, -12.798170089721623 ], [ -75.522155761718636, -12.799383163452148 ], [ -75.522178649902344, -12.8004856109618 ], [ -75.52264404296875, -12.802177429199219 ], [ -75.522941589355469, -12.80583667755127 ], [ -75.523597717285156, -12.807111740112305 ], [ -75.525016784667855, -12.808130264282227 ], [ -75.526374816894531, -12.811544418334847 ], [ -75.529396057128849, -12.815988540649414 ], [ -75.530647277832031, -12.821275711059457 ], [ -75.531631469726562, -12.8224840164184 ], [ -75.532302856445312, -12.822465896606445 ], [ -75.533607482910156, -12.821946144104004 ], [ -75.53570556640625, -12.820432662963867 ], [ -75.537757873535156, -12.819541931152344 ], [ -75.538612365722656, -12.818682670593262 ], [ -75.539222717285099, -12.817262649536076 ], [ -75.540649414062443, -12.816552162170353 ], [ -75.541313171386662, -12.816605567932129 ], [ -75.541862487792912, -12.817085266113281 ], [ -75.542266845703068, -12.819153785705453 ], [ -75.543914794921875, -12.821844100952035 ], [ -75.545227050781193, -12.823206901550179 ], [ -75.54632568359375, -12.823785781860352 ], [ -75.551361083984375, -12.821858406066895 ], [ -75.552108764648438, -12.821160316467285 ], [ -75.552322387695312, -12.820563316345215 ], [ -75.553535461425781, -12.819148063659668 ], [ -75.554550170898381, -12.818540573120117 ], [ -75.556526184082031, -12.816482543945312 ], [ -75.561164855957031, -12.817440986633301 ], [ -75.561683654785156, -12.818515777587891 ], [ -75.560722351074219, -12.822342872619629 ], [ -75.560989379882812, -12.823725700378418 ], [ -75.561058044433537, -12.82657527923584 ], [ -75.561820983886662, -12.830010414123478 ], [ -75.562248229980469, -12.830930709838867 ], [ -75.565643310546761, -12.833534240722656 ], [ -75.565925598144474, -12.834412574767953 ], [ -75.565780639648438, -12.836058616638127 ], [ -75.565391540527344, -12.83679008483881 ], [ -75.564537048339844, -12.83764457702631 ], [ -75.564559936523381, -12.838286399841309 ], [ -75.565673828125, -12.839974403381348 ], [ -75.567474365234375, -12.841733932495117 ], [ -75.570495605468693, -12.84338188171381 ], [ -75.573341369628849, -12.84548282623291 ], [ -75.574615478515625, -12.845823287963867 ], [ -75.576866149902287, -12.84569263458252 ], [ -75.578155517578125, -12.84584999084467 ], [ -75.580612182617131, -12.847194671630859 ], [ -75.581886291503906, -12.847470283508244 ], [ -75.584465026855469, -12.849147796630803 ], [ -75.586242675781136, -12.849262237548714 ], [ -75.588455200195312, -12.848903656005859 ], [ -75.591316223144531, -12.849403381347656 ], [ -75.593154907226562, -12.850105285644474 ], [ -75.594718933105412, -12.851123809814453 ], [ -75.596130371093693, -12.853495597839299 ], [ -75.5970458984375, -12.854111671447754 ], [ -75.598648071289062, -12.855915069580021 ], [ -75.599418640136719, -12.856448173522949 ], [ -75.600906372070256, -12.856633186340218 ], [ -75.603263854980469, -12.856058120727482 ], [ -75.605133056640625, -12.856189727783146 ], [ -75.611846923828125, -12.858524322509766 ], [ -75.613189697265625, -12.859370231628418 ], [ -75.612396240234375, -12.861038208007812 ], [ -75.612251281738224, -12.862320899963322 ], [ -75.613456726074219, -12.866640090942326 ], [ -75.613922119140625, -12.867426872253361 ], [ -75.614173889160099, -12.869434356689453 ], [ -75.615455627441406, -12.872830390930119 ], [ -75.618438720703125, -12.877300262451058 ], [ -75.618598937988281, -12.87951469421381 ], [ -75.61885833740223, -12.880290031433105 ], [ -75.621475219726562, -12.884010314941406 ], [ -75.622390747070312, -12.885916709899902 ], [ -75.622550964355412, -12.886819839477539 ], [ -75.625129699706974, -12.891208648681584 ], [ -75.627113342285156, -12.893779754638615 ], [ -75.629432678222599, -12.896063804626351 ], [ -75.630134582519531, -12.89715576171875 ], [ -75.630516052246094, -12.898674011230469 ], [ -75.630661010742131, -12.901712417602539 ], [ -75.631362915039062, -12.90485668182373 ], [ -75.631362915039062, -12.907462120056152 ], [ -75.632087707519474, -12.90955638885498 ], [ -75.6337890625, -12.911740303039494 ], [ -75.635459899902344, -12.912288665771428 ], [ -75.636512756347656, -12.91307258605957 ], [ -75.63690185546875, -12.915041923522836 ], [ -75.636405944824105, -12.916220664978027 ], [ -75.634635925292969, -12.917724609374943 ], [ -75.6341552734375, -12.918522834777718 ], [ -75.633956909179688, -12.920077323913517 ], [ -75.634574890136662, -12.921296119689941 ], [ -75.634483337402287, -12.922101020812988 ], [ -75.631988525390568, -12.923545837402287 ], [ -75.630485534667912, -12.924788475036621 ], [ -75.628791809082031, -12.926627159118652 ], [ -75.627853393554688, -12.928336143493652 ], [ -75.627655029296875, -12.929512023925781 ], [ -75.627799987792912, -12.930977821350098 ], [ -75.628578186035099, -12.932865142822209 ], [ -75.629653930664062, -12.934004783630314 ], [ -75.629585266113281, -12.935288429260197 ], [ -75.628448486328125, -12.936474800109863 ], [ -75.625900268554631, -12.93856143951416 ], [ -75.619834899902344, -12.941034317016545 ], [ -75.617576599121094, -12.942792892456055 ], [ -75.617652893066406, -12.944078445434513 ], [ -75.618263244628849, -12.945027351379338 ], [ -75.620941162109318, -12.947984695434513 ], [ -75.622215270996094, -12.948776245117188 ], [ -75.622367858886662, -12.94921970367426 ], [ -75.621376037597656, -12.950062751769963 ], [ -75.619033813476506, -12.951027870178166 ], [ -75.61785888671875, -12.951907157897949 ], [ -75.616554260253849, -12.953374862670898 ], [ -75.615219116210881, -12.95570182800293 ], [ -75.614189147949219, -12.956934928894043 ], [ -75.613334655761719, -12.959368705749455 ], [ -75.613197326660099, -12.960932731628418 ], [ -75.613296508789006, -12.961746215820312 ], [ -75.613945007324219, -12.963382720947209 ], [ -75.613845825195312, -12.964476585388184 ], [ -75.614021301269531, -12.964738845825195 ], [ -75.614509582519531, -12.965019226074162 ], [ -75.616371154785099, -12.96514892578125 ], [ -75.619361877441406, -12.966526031494141 ], [ -75.620925903320256, -12.965752601623535 ], [ -75.621833801269531, -12.965668678283691 ], [ -75.624847412109318, -12.965932846069279 ], [ -75.625350952148438, -12.966176986694336 ], [ -75.627586364746094, -12.966460227966309 ], [ -75.631225585937443, -12.969497680664006 ], [ -75.634803771972656, -12.970865249633789 ], [ -75.636207580566349, -12.972344398498535 ], [ -75.638130187988281, -12.97349834442133 ], [ -75.638618469238281, -12.974173545837289 ], [ -75.638557434082031, -12.974635124206486 ], [ -75.634346008300781, -12.978921890258789 ], [ -75.634010314941349, -12.979454994201603 ], [ -75.633636474609318, -12.982088088989258 ], [ -75.633728027343693, -12.983470916748047 ], [ -75.634078979492188, -12.984330177307015 ], [ -75.635932922363281, -12.986650466918945 ], [ -75.637359619140511, -12.987685203552189 ], [ -75.641159057617131, -12.989013671875 ], [ -75.644027709960881, -12.990896224975529 ], [ -75.649642944335881, -12.992384910583382 ], [ -75.651527404785156, -12.993754386901855 ], [ -75.652297973632756, -12.994095802307129 ], [ -75.65313720703125, -12.994110107421818 ], [ -75.655952453613224, -12.993398666381779 ], [ -75.662300109863281, -12.992913246154671 ], [ -75.663795471191406, -12.99298191070551 ], [ -75.664878845214844, -12.993511199951172 ], [ -75.666900634765568, -12.993913650512695 ], [ -75.667442321777344, -12.994292259216195 ], [ -75.668083190917969, -12.994969367980957 ], [ -75.668861389160156, -12.996747016906738 ], [ -75.669296264648381, -12.99843788146967 ], [ -75.669418334960938, -13.000561714172363 ], [ -75.668640136718636, -13.003060340881348 ], [ -75.668220520019531, -13.005330085754395 ], [ -75.665962219238224, -13.008184432983342 ], [ -75.665046691894531, -13.009941101074162 ], [ -75.664817810058537, -13.012807846069336 ], [ -75.665534973144531, -13.014795303344727 ], [ -75.666465759277344, -13.016177177429199 ], [ -75.668525695800724, -13.01818656921381 ], [ -75.669990539550781, -13.021862983703613 ], [ -75.671058654785156, -13.023353576660156 ], [ -75.67236328125, -13.023873329162541 ], [ -75.676094055175781, -13.024280548095703 ], [ -75.679023742675724, -13.024914741516113 ], [ -75.680229187011719, -13.024985313415471 ], [ -75.683120727539006, -13.024622917175179 ], [ -75.686180114746037, -13.024906158447209 ], [ -75.686630249023381, -13.025519371032715 ], [ -75.686737060546818, -13.027362823486328 ], [ -75.687423706054631, -13.029396057128849 ], [ -75.690139770507812, -13.032200813293343 ], [ -75.690834045410099, -13.03427791595459 ], [ -75.691940307617188, -13.035280227661019 ], [ -75.696708679199219, -13.035691261291504 ], [ -75.699020385742188, -13.036091804504338 ], [ -75.700309753417969, -13.036595344543457 ], [ -75.703163146972543, -13.03823184967041 ], [ -75.704551696777344, -13.038455009460449 ], [ -75.706977844238168, -13.039432525634766 ], [ -75.709823608398381, -13.039958953857422 ], [ -75.711837768554631, -13.040016174316406 ], [ -75.712615966796875, -13.039807319641056 ], [ -75.7147216796875, -13.037956237792969 ], [ -75.716018676757756, -13.037454605102482 ], [ -75.718368530273438, -13.037593841552678 ], [ -75.723899841308594, -13.038528442382812 ], [ -75.726043701171818, -13.038369178771916 ], [ -75.727622985839844, -13.03752326965332 ], [ -75.729858398437443, -13.034450531005803 ], [ -75.730888366699162, -13.033525466918888 ], [ -75.732292175292969, -13.033477783203068 ], [ -75.734725952148381, -13.034156799316349 ], [ -75.735969543456918, -13.033817291259766 ], [ -75.736618041992131, -13.033158302307015 ], [ -75.737251281738281, -13.031818389892578 ], [ -75.740371704101562, -13.028363227844181 ], [ -75.741630554199219, -13.027456283569222 ], [ -75.744468688964844, -13.026190757751465 ], [ -75.745643615722656, -13.025283813476506 ], [ -75.74639892578125, -13.025291442871037 ], [ -75.748069763183537, -13.026894569396973 ], [ -75.750259399414006, -13.027963638305664 ], [ -75.752357482910099, -13.028456687927246 ], [ -75.754119873046875, -13.028250694274902 ], [ -75.755905151367188, -13.026617050170898 ], [ -75.757484436035156, -13.025655746459961 ], [ -75.760566711425724, -13.023096084594727 ], [ -75.761207580566349, -13.022318840026799 ], [ -75.762619018554688, -13.019737243652344 ], [ -75.764556884765568, -13.018087387084904 ], [ -75.765319824218693, -13.019665718078613 ], [ -75.765419006347599, -13.020769119262638 ], [ -75.767120361328068, -13.022843360900822 ], [ -75.767646789550781, -13.024025917053223 ], [ -75.769248962402287, -13.026405334472656 ], [ -75.769760131835938, -13.027971267700195 ], [ -75.770317077636719, -13.028827667236271 ], [ -75.771293640136719, -13.032387733459416 ], [ -75.771827697753793, -13.03640174865717 ], [ -75.772453308105469, -13.037710189819336 ], [ -75.773681640625, -13.038861274719181 ], [ -75.775306701660156, -13.03995323181141 ], [ -75.782318115234261, -13.044179916381836 ], [ -75.785049438476506, -13.046975135803166 ], [ -75.7889404296875, -13.05000114440918 ], [ -75.793380737304574, -13.055683135986328 ], [ -75.795135498046875, -13.056247711181641 ], [ -75.797271728515568, -13.058585166931152 ], [ -75.798316955566349, -13.059366226196289 ], [ -75.800811767578068, -13.060181617736816 ], [ -75.802024841308537, -13.060277938842773 ], [ -75.805938720703068, -13.056116104125977 ], [ -75.806594848632812, -13.054594039916992 ], [ -75.807533264160156, -13.053216934204102 ], [ -75.807868957519474, -13.051906585693303 ], [ -75.809501647949219, -13.050271987915039 ], [ -75.810256958007756, -13.050352096557617 ], [ -75.810951232910156, -13.050838470458928 ], [ -75.812759399414062, -13.053518295288086 ], [ -75.813865661621037, -13.05400276184082 ], [ -75.81536865234375, -13.054015159606934 ], [ -75.816841125488168, -13.053711891174316 ], [ -75.818588256835938, -13.052829742431641 ], [ -75.819404602050724, -13.052078247070256 ], [ -75.820205688476562, -13.050311088562012 ], [ -75.821144104003906, -13.04704475402832 ], [ -75.823051452636719, -13.043981552124023 ], [ -75.82220458984375, -13.039004325866642 ], [ -75.822311401367188, -13.033386230468693 ], [ -75.822647094726506, -13.030465126037541 ], [ -75.823715209960938, -13.029450416564941 ], [ -75.826858520507812, -13.029258728027344 ], [ -75.829994201660099, -13.027812004089355 ], [ -75.83148193359375, -13.026857376098576 ], [ -75.83251953125, -13.026674270629826 ], [ -75.833534240722656, -13.027284622192383 ], [ -75.835296630859375, -13.029303550720215 ], [ -75.83892822265625, -13.031236648559513 ], [ -75.84136962890625, -13.033110618591195 ], [ -75.842666625976506, -13.033204078674316 ], [ -75.843582153320312, -13.033536911010685 ], [ -75.844810485839844, -13.034381866455078 ], [ -75.846420288085938, -13.03510856628418 ], [ -75.848182678222599, -13.036477088928166 ], [ -75.849967956542969, -13.036380767822266 ], [ -75.851531982421818, -13.035572052001953 ], [ -75.855133056640625, -13.032477378845215 ], [ -75.857345581054631, -13.031503677368164 ], [ -75.860496520996037, -13.02933216094965 ], [ -75.861358642578068, -13.028976440429688 ], [ -75.862762451171875, -13.028870582580566 ], [ -75.864387512207031, -13.028422355651799 ], [ -75.866699218749943, -13.02837944030756 ], [ -75.867477416992131, -13.028004646301156 ], [ -75.870018005371094, -13.025131225585938 ], [ -75.872528076171818, -13.024370193481388 ], [ -75.874046325683537, -13.02343559265131 ], [ -75.874542236328125, -13.022494316101017 ], [ -75.874839782714844, -13.020929336547852 ], [ -75.875831604003906, -13.019160270690861 ], [ -75.876708984374943, -13.018325805664006 ], [ -75.877983093261719, -13.017553329467773 ], [ -75.879173278808594, -13.016374588012638 ], [ -75.880645751953125, -13.015928268432617 ], [ -75.881858825683537, -13.015924453735352 ], [ -75.883598327636605, -13.015011787414494 ], [ -75.886611938476562, -13.014350891113281 ], [ -75.889884948730412, -13.014213562011662 ], [ -75.8927001953125, -13.013517379760685 ], [ -75.894859313964844, -13.013571739196777 ], [ -75.897399902343693, -13.014223098754883 ], [ -75.898254394531193, -13.014193534851017 ], [ -75.899154663085938, -13.013421058654785 ], [ -75.901901245117131, -13.00988578796381 ], [ -75.903800964355412, -13.009563446044865 ], [ -75.906532287597656, -13.009651184081974 ], [ -75.908821105957031, -13.008876800537053 ], [ -75.910530090332031, -13.007587432861328 ], [ -75.912223815917969, -13.007609367370549 ], [ -75.913330078124943, -13.00733375549305 ], [ -75.914772033691349, -13.006025314331055 ], [ -75.915206909179688, -13.005228042602482 ], [ -75.915527343749943, -13.003381729125977 ], [ -75.916526794433594, -13.002593040466195 ], [ -75.918708801269531, -13.001907348632812 ], [ -75.923446655273381, -13.001202583312931 ], [ -75.925224304199219, -13.000680923461914 ], [ -75.926605224609318, -12.999564170837402 ], [ -75.927993774414062, -12.996973037719727 ], [ -75.9300537109375, -12.995881080627441 ], [ -75.931404113769531, -12.995495796203613 ], [ -75.931991577148438, -12.995041847229004 ], [ -75.934051513671875, -12.99442005157465 ], [ -75.935478210449105, -12.992854118347111 ], [ -75.938270568847656, -12.99101543426508 ], [ -75.939598083496094, -12.990981101989746 ], [ -75.94085693359375, -12.991304397582951 ], [ -75.942337036132756, -12.99190616607666 ], [ -75.944076538085938, -12.993137359619084 ], [ -75.947471618652287, -12.994180679321289 ], [ -75.950347900390568, -12.997099876403809 ], [ -75.951324462890625, -12.997783660888672 ], [ -75.952537536621037, -12.998004913330021 ], [ -75.955520629882812, -12.99785041809082 ], [ -75.959053039550781, -12.999092102050781 ], [ -75.960983276367188, -13.000225067138615 ], [ -75.96136474609375, -13.001228332519531 ], [ -75.962112426757812, -13.00225639343256 ], [ -75.962112426757812, -13.003329277038517 ], [ -75.963287353515625, -13.004341125488281 ], [ -75.963623046875, -13.005938529968262 ], [ -75.963249206542969, -13.007070541381836 ], [ -75.963012695312443, -13.009360313415414 ], [ -75.961845397949219, -13.012420654296818 ], [ -75.961814880371094, -13.013883590698185 ], [ -75.960639953613224, -13.01576042175293 ], [ -75.960540771484318, -13.017766952514648 ], [ -75.960777282714844, -13.020272254943791 ], [ -75.961441040039062, -13.022195816039982 ], [ -75.963058471679688, -13.025101661682129 ], [ -75.96441650390625, -13.026984214782658 ], [ -75.966300964355469, -13.028768539428654 ], [ -75.968132019042969, -13.031989097595215 ], [ -75.968589782714844, -13.034058570861816 ], [ -75.968345642089787, -13.039665222167969 ], [ -75.969161987304688, -13.041488647460881 ], [ -75.970451354980412, -13.042413711547795 ], [ -75.972557067871037, -13.043336868286133 ], [ -75.974151611328125, -13.044896125793457 ], [ -75.975509643554631, -13.046878814697266 ], [ -75.977584838867188, -13.047947883605957 ], [ -75.979095458984375, -13.049332618713322 ], [ -75.980278015136662, -13.04988956451416 ], [ -75.982048034667969, -13.05153656005848 ], [ -75.983985900878849, -13.052652359008789 ], [ -75.985221862792969, -13.05413818359375 ], [ -75.988670349121037, -13.057390213012638 ], [ -75.989166259765568, -13.057649612426758 ], [ -75.990501403808537, -13.059307098388672 ], [ -75.994346618652344, -13.063218116760254 ], [ -75.995658874511719, -13.064270973205566 ], [ -75.996101379394474, -13.065171241760197 ], [ -75.997367858886662, -13.065963745117188 ], [ -76.001556396484318, -13.071128845214844 ], [ -76.005859374999886, -13.078326225280762 ], [ -76.00933837890625, -13.081823348999023 ], [ -76.0111083984375, -13.085177421569711 ], [ -76.012145996093693, -13.086077690124512 ], [ -76.014312744140568, -13.086720466613713 ], [ -76.016151428222599, -13.087653160095158 ], [ -76.018577575683594, -13.089688301086369 ], [ -76.019508361816406, -13.090841293334904 ], [ -76.02056884765625, -13.093205451965275 ], [ -76.021293640136662, -13.093925476074219 ], [ -76.021713256835938, -13.095686912536621 ], [ -76.023605346679688, -13.096899032592773 ], [ -76.025558471679688, -13.098881721496582 ], [ -76.02789306640625, -13.099196434020882 ], [ -76.0291748046875, -13.100639343261662 ], [ -76.0316162109375, -13.101595878601074 ], [ -76.03277587890625, -13.103155136108342 ], [ -76.033363342285156, -13.103615760803166 ], [ -76.035636901855469, -13.104165077209473 ], [ -76.036849975585881, -13.104875564575138 ], [ -76.038368225097599, -13.105330467224121 ], [ -76.039543151855469, -13.106257438659554 ], [ -76.04107666015625, -13.106521606445312 ], [ -76.042076110839787, -13.107884407043457 ], [ -76.042274475097599, -13.109491348266602 ], [ -76.043388366699219, -13.110616683959847 ], [ -76.044639587402287, -13.111182212829533 ], [ -76.045661926269531, -13.112830162048283 ], [ -76.047554016113281, -13.114189147949162 ], [ -76.048660278320256, -13.115676879882812 ], [ -76.050224304199219, -13.11629486083973 ], [ -76.052200317382756, -13.118120193481388 ], [ -76.054306030273324, -13.118889808654671 ], [ -76.056297302246037, -13.120429039001408 ], [ -76.057441711425724, -13.12083911895752 ], [ -76.058105468749943, -13.121614456176758 ], [ -76.059120178222656, -13.121828079223633 ], [ -76.060188293456974, -13.122979164123478 ], [ -76.061119079589844, -13.123599052429142 ], [ -76.062744140625, -13.124335289001465 ], [ -76.065116882324219, -13.124795913696232 ], [ -76.065704345703125, -13.125653266906681 ], [ -76.065971374511719, -13.127087593078556 ], [ -76.066726684570312, -13.127644538879338 ], [ -76.067108154296875, -13.127824783325195 ], [ -76.069824218749943, -13.127849578857422 ], [ -76.071502685546875, -13.12867546081543 ], [ -76.073989868164062, -13.130914688110295 ], [ -76.074844360351562, -13.131291389465218 ], [ -76.076820373535156, -13.13294601440424 ], [ -76.077751159667912, -13.134533882141 ], [ -76.078849792480469, -13.135668754577637 ], [ -76.079994201660156, -13.136479377746582 ], [ -76.081741333007756, -13.137158393859863 ], [ -76.0826416015625, -13.138264656066895 ], [ -76.083984375, -13.139019966125488 ], [ -76.084320068359318, -13.139462471008244 ], [ -76.085273742675724, -13.140053749084416 ], [ -76.086753845214844, -13.142189979553223 ], [ -76.087722778320312, -13.143197059631291 ], [ -76.090644836425781, -13.144658088684082 ], [ -76.092124938964844, -13.146199226379395 ], [ -76.094680786132812, -13.147110939025822 ], [ -76.096885681152344, -13.148467063903752 ], [ -76.097946166992188, -13.149882316589355 ], [ -76.099159240722656, -13.152373313903809 ], [ -76.099578857421818, -13.154050827026367 ], [ -76.100868225097656, -13.155646324157658 ], [ -76.102714538574219, -13.15654182434082 ], [ -76.105148315429688, -13.157173156738224 ], [ -76.106544494628849, -13.157917976379395 ], [ -76.10791015625, -13.159188270568848 ], [ -76.109603881835881, -13.161613464355469 ], [ -76.110504150390625, -13.162286758422795 ], [ -76.111976623535099, -13.162543296813965 ], [ -76.112655639648381, -13.162875175476017 ], [ -76.114471435546818, -13.164980888366642 ], [ -76.115303039550781, -13.166369438171387 ], [ -76.11663818359375, -13.167927742004395 ], [ -76.119697570800724, -13.169514656066838 ], [ -76.122222900390625, -13.171592712402287 ], [ -76.12392425537098, -13.172561645507699 ], [ -76.125579833984375, -13.174063682556039 ], [ -76.126327514648438, -13.17444896697998 ], [ -76.127304077148438, -13.176533699035645 ], [ -76.127899169921818, -13.177157402038574 ], [ -76.128784179687443, -13.177341461181641 ], [ -76.131706237792969, -13.177202224731445 ], [ -76.132301330566349, -13.17802906036377 ], [ -76.133201599121094, -13.178694725036621 ], [ -76.136650085449219, -13.179141998290902 ], [ -76.138725280761719, -13.17967510223383 ], [ -76.140106201171818, -13.180644035339242 ], [ -76.141952514648438, -13.181548118591309 ], [ -76.143417358398438, -13.182971000671387 ], [ -76.144767761230469, -13.183807373046818 ], [ -76.146316528320256, -13.186013221740666 ], [ -76.148719787597543, -13.18626594543457 ], [ -76.150543212890625, -13.186701774597168 ], [ -76.151405334472656, -13.187257766723576 ], [ -76.151748657226506, -13.188053131103516 ], [ -76.152214050292912, -13.188508987426701 ], [ -76.153251647949219, -13.188461303710881 ], [ -76.154342651367131, -13.187470436096191 ], [ -76.155075073242131, -13.187585830688477 ], [ -76.155029296875, -13.188289642333928 ], [ -76.153793334960938, -13.189543724060059 ], [ -76.153648376464787, -13.190555572509709 ], [ -76.155998229980469, -13.192807197570801 ], [ -76.157127380371094, -13.193468093872013 ], [ -76.157691955566406, -13.193566322326546 ], [ -76.158042907714787, -13.193999290466309 ], [ -76.157821655273438, -13.196187019348145 ], [ -76.15716552734375, -13.196454048156738 ], [ -76.156585693359375, -13.19717884063715 ], [ -76.156524658203068, -13.199665069580078 ], [ -76.158340454101506, -13.205371856689453 ], [ -76.159088134765568, -13.206860542297363 ], [ -76.160209655761719, -13.21008110046381 ], [ -76.160324096679631, -13.211556434631291 ], [ -76.160682678222656, -13.212504386901855 ], [ -76.161445617675781, -13.216957092285156 ], [ -76.162101745605469, -13.218869209289551 ], [ -76.161964416503849, -13.219505310058594 ], [ -76.161376953124943, -13.220445632934513 ], [ -76.161560058593693, -13.222640991210938 ], [ -76.162559509277344, -13.223985671997013 ], [ -76.162666320800781, -13.224998474121037 ], [ -76.163749694824219, -13.225861549377385 ], [ -76.163734436035156, -13.227522850036621 ], [ -76.164436340331974, -13.228932380676213 ], [ -76.164649963378906, -13.229923248291016 ], [ -76.167076110839844, -13.231450080871582 ], [ -76.167953491210881, -13.233073234558049 ], [ -76.168846130371094, -13.234027862548828 ], [ -76.169975280761662, -13.236951828002873 ], [ -76.170608520507812, -13.240203857421875 ], [ -76.171401977539006, -13.241882324218693 ], [ -76.172409057617188, -13.242978096008301 ], [ -76.1739501953125, -13.244004249572697 ], [ -76.175254821777344, -13.245895385742074 ], [ -76.176246643066349, -13.247879981994629 ], [ -76.179328918456974, -13.250578880310059 ], [ -76.180862426757812, -13.252884864807015 ], [ -76.183380126953125, -13.255367279052734 ], [ -76.183898925781193, -13.257553100585938 ], [ -76.185859680175781, -13.259469985961857 ], [ -76.186386108398381, -13.261521339416504 ], [ -76.187599182128849, -13.263801574706974 ], [ -76.188621520996094, -13.26695442199707 ], [ -76.188583374023324, -13.270181655883789 ], [ -76.190269470214787, -13.27315616607666 ], [ -76.190437316894531, -13.274061203002873 ], [ -76.191780090332031, -13.27616024017334 ], [ -76.192176818847599, -13.279909133911133 ], [ -76.193702697753849, -13.281891822814941 ], [ -76.194808959960938, -13.284635543823185 ], [ -76.195106506347656, -13.28645038604725 ], [ -76.196479797363224, -13.288441658019963 ], [ -76.197349548339787, -13.291350364685002 ], [ -76.199432373046818, -13.295379638671818 ], [ -76.199783325195312, -13.296525955200195 ], [ -76.201087951660156, -13.298619270324707 ], [ -76.202400207519474, -13.30019569396967 ], [ -76.202949523925724, -13.302043914794865 ], [ -76.204345703125, -13.303657531738224 ], [ -76.204803466796875, -13.304567337036076 ], [ -76.2061767578125, -13.30545616149891 ], [ -76.207244873046818, -13.306490898132267 ], [ -76.208915710449219, -13.306907653808537 ], [ -76.209800720214844, -13.30757999420166 ], [ -76.211387634277344, -13.308197975158578 ], [ -76.212471008300781, -13.308419227600098 ], [ -76.213859558105469, -13.308193206787109 ], [ -76.215385437011719, -13.308675765991154 ], [ -76.217422485351562, -13.310284614562931 ], [ -76.218513488769474, -13.310538291931152 ], [ -76.219711303710938, -13.311700820922852 ], [ -76.220626831054574, -13.311958312988224 ], [ -76.221939086914006, -13.311971664428711 ], [ -76.222801208496037, -13.31233024597168 ], [ -76.224327087402287, -13.313822746276855 ], [ -76.226280212402344, -13.314064025878849 ], [ -76.227027893066406, -13.314882278442326 ], [ -76.228530883789006, -13.314762115478516 ], [ -76.229690551757812, -13.315340995788574 ], [ -76.230995178222599, -13.315236091613713 ], [ -76.231269836425781, -13.31548023223877 ], [ -76.232109069824219, -13.315566062927189 ], [ -76.234672546386719, -13.316438674926758 ], [ -76.23724365234375, -13.318711280822754 ], [ -76.238151550292912, -13.31904411315918 ], [ -76.23980712890625, -13.320680618286076 ], [ -76.241020202636662, -13.321379661560002 ], [ -76.242744445800724, -13.322943687438965 ], [ -76.244606018066406, -13.323304176330566 ], [ -76.247360229492188, -13.323604583740178 ], [ -76.247360229492188, -13.323470115661564 ], [ -76.247642517089844, -13.323472023010254 ], [ -76.247642517089844, -13.323193550109863 ], [ -76.247917175292969, -13.323193550109863 ], [ -76.247917175292969, -13.322916030883789 ], [ -76.248191833496094, -13.322916030883789 ], [ -76.248191833496094, -13.322084426879883 ], [ -76.248748779296818, -13.322084426879883 ], [ -76.248748779296818, -13.321528434753418 ], [ -76.249031066894474, -13.321528434753418 ], [ -76.249031066894474, -13.320972442626953 ], [ -76.249305725097599, -13.320972442626953 ], [ -76.249305725097599, -13.319862365722656 ], [ -76.249580383300781, -13.319862365722656 ], [ -76.249580383300781, -13.319025993347168 ], [ -76.249862670898438, -13.319027900695801 ], [ -76.249862670898438, -13.318750381469727 ], [ -76.250137329101562, -13.318750381469727 ], [ -76.250137329101562, -13.318194389343262 ], [ -76.250419616699219, -13.318194389343262 ], [ -76.250419616699219, -13.317640304565373 ], [ -76.250694274902344, -13.317640304565373 ], [ -76.250694274902344, -13.317359924316406 ], [ -76.250968933105469, -13.317359924316406 ], [ -76.250968933105469, -13.317084312438908 ], [ -76.251251220703125, -13.317084312438908 ], [ -76.251251220703125, -13.316805839538517 ], [ -76.251525878906136, -13.316805839538517 ], [ -76.251525878906136, -13.316249847412053 ], [ -76.251808166503849, -13.316249847412053 ], [ -76.251808166503849, -13.315693855285588 ], [ -76.252082824706974, -13.315693855285588 ], [ -76.252082824706974, -13.31513786315918 ], [ -76.252357482910099, -13.31513786315918 ], [ -76.252357482910099, -13.314306259155217 ], [ -76.252639770507756, -13.314306259155217 ], [ -76.252639770507756, -13.314027786254826 ], [ -76.252914428710938, -13.314027786254826 ], [ -76.252914428710938, -13.313194274902287 ], [ -76.253196716308594, -13.313194274902287 ], [ -76.253196716308594, -13.312361717224121 ], [ -76.253471374511719, -13.312361717224121 ], [ -76.253471374511719, -13.311805725097656 ], [ -76.253753662109375, -13.311805725097656 ], [ -76.253753662109375, -13.311525344848576 ], [ -76.2540283203125, -13.311528205871525 ], [ -76.2540283203125, -13.311248779296875 ], [ -76.254302978515625, -13.311248779296875 ], [ -76.254302978515625, -13.310971260070801 ], [ -76.254585266113281, -13.310971260070801 ], [ -76.254585266113281, -13.310695648193359 ], [ -76.254859924316349, -13.310695648193359 ], [ -76.254859924316349, -13.310139656066895 ], [ -76.255142211914006, -13.310139656066895 ], [ -76.255142211914006, -13.309582710266113 ], [ -76.255416870117131, -13.309582710266113 ], [ -76.255416870117131, -13.309026718139648 ], [ -76.255691528320256, -13.309026718139648 ], [ -76.255691528320256, -13.30847263336176 ], [ -76.255973815917912, -13.30847263336176 ], [ -76.255973815917912, -13.307916641235295 ], [ -76.256248474121094, -13.307916641235295 ], [ -76.256248474121094, -13.307637214660645 ], [ -76.25653076171875, -13.307639122009221 ], [ -76.25653076171875, -13.30736064910883 ], [ -76.257080078125, -13.30736064910883 ], [ -76.257080078125, -13.307083129882812 ], [ -76.257362365722656, -13.307083129882812 ], [ -76.257362365722656, -13.306804656982365 ], [ -76.257637023925781, -13.306804656982365 ], [ -76.257637023925781, -13.306527137756348 ], [ -76.257919311523438, -13.306527137756348 ], [ -76.257919311523438, -13.306248664855957 ], [ -76.258193969726506, -13.306248664855957 ], [ -76.258193969726506, -13.305971145629883 ], [ -76.258468627929631, -13.305971145629883 ], [ -76.258468627929631, -13.305694580078011 ], [ -76.258750915527287, -13.305694580078011 ], [ -76.258750915527287, -13.305138587951603 ], [ -76.259025573730412, -13.305138587951603 ], [ -76.259025573730412, -13.304582595825138 ], [ -76.259307861328125, -13.304582595825138 ], [ -76.259307861328125, -13.304305076599064 ], [ -76.25958251953125, -13.304305076599064 ], [ -76.25958251953125, -13.303749084472599 ], [ -76.259864807128906, -13.303749084472599 ], [ -76.259864807128906, -13.303193092346191 ], [ -76.260139465332031, -13.303193092346191 ], [ -76.260139465332031, -13.302639007568246 ], [ -76.260414123535156, -13.302639007568246 ], [ -76.260414123535156, -13.302360534667969 ], [ -76.260696411132812, -13.302360534667969 ], [ -76.260696411132812, -13.302083015441838 ], [ -76.260971069335938, -13.302083015441838 ], [ -76.260971069335938, -13.30180454254139 ], [ -76.26125335693348, -13.30180454254139 ], [ -76.26125335693348, -13.301527023315373 ], [ -76.261528015136662, -13.301528930664062 ], [ -76.261528015136662, -13.301251411437988 ], [ -76.261802673339787, -13.301251411437988 ], [ -76.261802673339787, -13.300971031188908 ], [ -76.262084960937443, -13.300972938537598 ], [ -76.262084960937443, -13.300695419311523 ], [ -76.262359619140625, -13.300695419311523 ], [ -76.262359619140625, -13.300139427184945 ], [ -76.262641906738281, -13.300139427184945 ], [ -76.262641906738281, -13.299583435058537 ], [ -76.262916564941406, -13.299583435058537 ], [ -76.262916564941406, -13.298748016357422 ], [ -76.263191223144531, -13.298750877380371 ], [ -76.263191223144531, -13.298473358154297 ], [ -76.263748168945312, -13.298473358154297 ], [ -76.263748168945312, -13.298194885253906 ], [ -76.264030456542969, -13.298194885253906 ], [ -76.264030456542969, -13.297637939453125 ], [ -76.26430511474598, -13.297637939453125 ], [ -76.26430511474598, -13.297360420227051 ], [ -76.264579772949162, -13.297360420227051 ], [ -76.264579772949162, -13.29708194732666 ], [ -76.264862060546818, -13.29708194732666 ], [ -76.264862060546818, -13.296804428100586 ], [ -76.265136718749943, -13.296804428100586 ], [ -76.265136718749943, -13.296528816223088 ], [ -76.265419006347599, -13.296528816223088 ], [ -76.265419006347599, -13.296250343322697 ], [ -76.265693664550781, -13.296250343322697 ], [ -76.265693664550781, -13.295971870422306 ], [ -76.265975952148438, -13.295971870422306 ], [ -76.265975952148438, -13.295694351196232 ], [ -76.266250610351562, -13.295694351196232 ], [ -76.266250610351562, -13.295415878295842 ], [ -76.266525268554688, -13.295415878295842 ], [ -76.266525268554688, -13.295138359069824 ], [ -76.266807556152344, -13.295138359069824 ], [ -76.266807556152344, -13.294584274291879 ], [ -76.267082214355469, -13.294584274291879 ], [ -76.267082214355469, -13.294305801391602 ], [ -76.267364501953125, -13.294305801391602 ], [ -76.267364501953125, -13.294028282165471 ], [ -76.267639160156193, -13.294028282165471 ], [ -76.267639160156193, -13.293749809265023 ], [ -76.267913818359318, -13.293749809265023 ], [ -76.267913818359318, -13.293472290039006 ], [ -76.268196105956974, -13.293472290039006 ], [ -76.268196105956974, -13.293193817138615 ], [ -76.268470764160099, -13.293193817138615 ], [ -76.268470764160099, -13.292916297912541 ], [ -76.268753051757756, -13.292916297912541 ], [ -76.268753051757756, -13.29263782501215 ], [ -76.269027709960938, -13.29263782501215 ], [ -76.269027709960938, -13.292362213134766 ], [ -76.269584655761719, -13.292362213134766 ], [ -76.269584655761719, -13.292083740234375 ], [ -76.269859313964844, -13.292083740234375 ], [ -76.269859313964844, -13.29152774810791 ], [ -76.2701416015625, -13.29152774810791 ], [ -76.2701416015625, -13.290971755981445 ], [ -76.270416259765625, -13.290971755981445 ], [ -76.270416259765625, -13.290694236755257 ], [ -76.270690917968693, -13.290694236755257 ], [ -76.270690917968693, -13.290138244628849 ], [ -76.270973205566349, -13.290140151977539 ], [ -76.270973205566349, -13.289859771728402 ], [ -76.271247863769474, -13.289859771728402 ], [ -76.271247863769474, -13.289584159851074 ], [ -76.271804809570256, -13.289584159851074 ], [ -76.271804809570256, -13.289305686950684 ], [ -76.272087097167969, -13.289305686950684 ], [ -76.272087097167969, -13.289028167724609 ], [ -76.272361755371094, -13.289028167724609 ], [ -76.272361755371094, -13.288472175598145 ], [ -76.272636413574219, -13.288472175598145 ], [ -76.272636413574219, -13.28791618347168 ], [ -76.272918701171875, -13.287918090820256 ], [ -76.272918701171875, -13.287637710571289 ], [ -76.273193359375, -13.287637710571289 ], [ -76.273193359375, -13.287360191345101 ], [ -76.273475646972656, -13.287360191345101 ], [ -76.273475646972656, -13.286803245544434 ], [ -76.273750305175781, -13.286803245544434 ], [ -76.273750305175781, -13.286250114440918 ], [ -76.274024963378849, -13.286250114440918 ], [ -76.274024963378849, -13.285971641540527 ], [ -76.274307250976506, -13.285971641540527 ], [ -76.274307250976506, -13.285414695739689 ], [ -76.274581909179631, -13.285414695739689 ], [ -76.274581909179631, -13.285137176513672 ], [ -76.274864196777287, -13.285140037536564 ], [ -76.274864196777287, -13.284861564636174 ], [ -76.275413513183594, -13.284861564636174 ], [ -76.275413513183594, -13.284581184387207 ], [ -76.27569580078125, -13.284581184387207 ], [ -76.27569580078125, -13.284027099609318 ], [ -76.275970458984375, -13.284027099609318 ], [ -76.275970458984375, -13.283748626708928 ], [ -76.276252746582031, -13.283748626708928 ], [ -76.276252746582031, -13.283196449279728 ], [ -76.276527404785156, -13.283196449279728 ], [ -76.276527404785156, -13.282638549804688 ], [ -76.276802062988281, -13.282638549804688 ], [ -76.276802062988281, -13.281805038452035 ], [ -76.277084350585824, -13.281805038452035 ], [ -76.277084350585824, -13.281526565551758 ], [ -76.277359008789006, -13.281526565551758 ], [ -76.277359008789006, -13.280817985534668 ], [ -76.277359008789006, -13.280693054199162 ], [ -76.277641296386662, -13.280693054199162 ], [ -76.277641296386662, -13.280417442321777 ], [ -76.278198242187443, -13.280417442321777 ], [ -76.278198242187443, -13.280137062072697 ], [ -76.278472900390625, -13.280138969421387 ], [ -76.278472900390625, -13.279861450195312 ], [ -76.27874755859375, -13.279861450195312 ], [ -76.27874755859375, -13.279581069946232 ], [ -76.279029846191406, -13.279582977294922 ], [ -76.279029846191406, -13.279305458068848 ], [ -76.279304504394531, -13.279305458068848 ], [ -76.279304504394531, -13.278751373291016 ], [ -76.279586791992188, -13.278751373291016 ], [ -76.279586791992188, -13.278470993041992 ], [ -76.279861450195312, -13.278470993041992 ], [ -76.279861450195312, -13.277915000915414 ], [ -76.280136108398324, -13.27791690826416 ], [ -76.280136108398324, -13.277639389038086 ], [ -76.280418395996037, -13.277639389038086 ], [ -76.280418395996037, -13.277083396911621 ], [ -76.280693054199162, -13.277083396911621 ], [ -76.280693054199162, -13.27680492401123 ], [ -76.280975341796818, -13.27680492401123 ], [ -76.280975341796818, -13.276248931884766 ], [ -76.28125, -13.276248931884766 ], [ -76.28125, -13.275973320007267 ], [ -76.281524658203125, -13.275973320007267 ], [ -76.281524658203125, -13.275417327880859 ], [ -76.281806945800781, -13.275417327880859 ], [ -76.281806945800781, -13.275138854980412 ], [ -76.282081604003906, -13.275138854980412 ], [ -76.282081604003906, -13.274861335754395 ], [ -76.282363891601562, -13.274861335754395 ], [ -76.282363891601562, -13.274582862854004 ], [ -76.282638549804688, -13.274582862854004 ], [ -76.282638549804688, -13.27430534362793 ], [ -76.282913208007812, -13.27430534362793 ], [ -76.282913208007812, -13.274028778076058 ], [ -76.283195495605469, -13.274028778076058 ], [ -76.283195495605469, -13.273751258850041 ], [ -76.283470153808537, -13.273751258850041 ], [ -76.283470153808537, -13.27347278594965 ], [ -76.283752441406193, -13.27347278594965 ], [ -76.283752441406193, -13.273195266723576 ], [ -76.284027099609318, -13.273195266723576 ], [ -76.284027099609318, -13.272916793823185 ], [ -76.284301757812443, -13.272916793823185 ], [ -76.284301757812443, -13.272639274597111 ], [ -76.284584045410099, -13.272639274597111 ], [ -76.284584045410099, -13.272360801696721 ], [ -76.284858703613281, -13.272360801696721 ], [ -76.284858703613281, -13.272083282470703 ], [ -76.285140991210938, -13.272083282470703 ], [ -76.285140991210938, -13.271806716918945 ], [ -76.285415649414062, -13.271806716918945 ], [ -76.285415649414062, -13.271526336669865 ], [ -76.285697937011719, -13.271529197692757 ], [ -76.285697937011719, -13.27125072479248 ], [ -76.285972595214844, -13.27125072479248 ], [ -76.285972595214844, -13.2709703445434 ], [ -76.286529541015625, -13.270973205566349 ], [ -76.286529541015625, -13.270694732665902 ], [ -76.286804199218693, -13.270694732665902 ], [ -76.286804199218693, -13.270416259765625 ], [ -76.287086486816349, -13.270416259765625 ], [ -76.287086486816349, -13.270137786865234 ], [ -76.287361145019474, -13.270137786865234 ], [ -76.287361145019474, -13.269860267639046 ], [ -76.287635803222599, -13.269860267639046 ], [ -76.287635803222599, -13.269304275512638 ], [ -76.287918090820312, -13.269304275512638 ], [ -76.287918090820312, -13.269027709960938 ], [ -76.288192749023438, -13.269027709960938 ], [ -76.288192749023438, -13.268192291259709 ], [ -76.288475036621094, -13.268194198608398 ], [ -76.288475036621094, -13.267638206481934 ], [ -76.288749694824219, -13.267638206481934 ], [ -76.288749694824219, -13.267359733581543 ], [ -76.289024353027344, -13.267359733581543 ], [ -76.289024353027344, -13.267082214355469 ], [ -76.289306640625, -13.267082214355469 ], [ -76.289306640625, -13.266805648803654 ], [ -76.289581298828125, -13.266805648803654 ], [ -76.289581298828125, -13.266528129577637 ], [ -76.289863586425668, -13.266528129577637 ], [ -76.289863586425668, -13.266249656677189 ], [ -76.290138244628849, -13.266249656677189 ], [ -76.290138244628849, -13.265970230102425 ], [ -76.290412902831974, -13.265972137451172 ], [ -76.290412902831974, -13.265693664550781 ], [ -76.290695190429631, -13.265693664550781 ], [ -76.290695190429631, -13.265416145324707 ], [ -76.290969848632812, -13.265416145324707 ], [ -76.290969848632812, -13.265137672424316 ], [ -76.291252136230469, -13.265137672424316 ], [ -76.291252136230469, -13.264860153198242 ], [ -76.291526794433594, -13.264862060546818 ], [ -76.291526794433594, -13.264583587646428 ], [ -76.29180908203125, -13.264583587646428 ], [ -76.29180908203125, -13.264304161071777 ], [ -76.292083740234375, -13.264306068420353 ], [ -76.292083740234375, -13.264027595519963 ], [ -76.2923583984375, -13.264027595519963 ], [ -76.2923583984375, -13.263750076293888 ], [ -76.292640686035156, -13.263750076293888 ], [ -76.292640686035156, -13.263471603393498 ], [ -76.292915344238168, -13.263471603393498 ], [ -76.292915344238168, -13.263194084167424 ], [ -76.293472290039006, -13.263194084167424 ], [ -76.293472290039006, -13.262915611267033 ], [ -76.293746948242131, -13.262915611267033 ], [ -76.293746948242131, -13.262638092041016 ], [ -76.294029235839787, -13.262639999389648 ], [ -76.294029235839787, -13.262361526489258 ], [ -76.294303894042969, -13.262361526489258 ], [ -76.294303894042969, -13.262082099914551 ], [ -76.294586181640625, -13.26208400726307 ], [ -76.294586181640625, -13.261805534362793 ], [ -76.29486083984375, -13.261805534362793 ], [ -76.29486083984375, -13.261528015136662 ], [ -76.295135498046875, -13.261528015136662 ], [ -76.295135498046875, -13.261249542236214 ], [ -76.295692443847656, -13.261249542236214 ], [ -76.295692443847656, -13.260972023010197 ], [ -76.295974731445312, -13.260972023010197 ], [ -76.295974731445312, -13.260693550109806 ], [ -76.296249389648381, -13.260693550109806 ], [ -76.296249389648381, -13.260416030883732 ], [ -76.296524047851506, -13.260417938232422 ], [ -76.296524047851506, -13.260137557983342 ], [ -76.296806335449162, -13.260137557983342 ], [ -76.296806335449162, -13.259860038757267 ], [ -76.297080993652287, -13.259861946105957 ], [ -76.297080993652287, -13.259584426879769 ], [ -76.297363281249943, -13.259584426879769 ], [ -76.297363281249943, -13.259305953979492 ], [ -76.297637939453125, -13.259305953979492 ], [ -76.297637939453125, -13.259028434753361 ], [ -76.297920227050781, -13.259028434753361 ], [ -76.297920227050781, -13.258749961852914 ], [ -76.298194885253906, -13.258749961852914 ], [ -76.298194885253906, -13.258193016052246 ], [ -76.298469543457031, -13.258193016052246 ], [ -76.298469543457031, -13.257914543151855 ], [ -76.298751831054688, -13.257914543151855 ], [ -76.298751831054688, -13.257637023925781 ], [ -76.299026489257812, -13.25763988494873 ], [ -76.299026489257812, -13.257362365722656 ], [ -76.299583435058537, -13.257362365722656 ], [ -76.299583435058537, -13.257081031799203 ], [ -76.299858093261662, -13.257083892822266 ], [ -76.299858093261662, -13.256805419921875 ], [ -76.300415039062443, -13.256805419921875 ], [ -76.300415039062443, -13.256526947021484 ], [ -76.300697326660156, -13.256526947021484 ], [ -76.300697326660156, -13.25624942779541 ], [ -76.300971984863281, -13.25624942779541 ], [ -76.300971984863281, -13.25597095489502 ], [ -76.301246643066406, -13.25597095489502 ], [ -76.301246643066406, -13.255416870117131 ], [ -76.301528930664062, -13.255416870117131 ], [ -76.301528930664062, -13.255139350891056 ], [ -76.301803588867188, -13.255139350891056 ], [ -76.301803588867188, -13.254304885864201 ], [ -76.302085876464844, -13.254304885864201 ], [ -76.302085876464844, -13.253748893737793 ], [ -76.302360534667969, -13.253748893737793 ], [ -76.302360534667969, -13.253194808959847 ], [ -76.302635192871037, -13.253194808959847 ], [ -76.302635192871037, -13.252638816833439 ], [ -76.302917480468693, -13.252638816833439 ], [ -76.302917480468693, -13.252361297607365 ], [ -76.303192138671818, -13.252361297607365 ], [ -76.303192138671818, -13.252082824706974 ], [ -76.303474426269474, -13.252082824706974 ], [ -76.303474426269474, -13.25152683258051 ], [ -76.303749084472656, -13.25152683258051 ], [ -76.303749084472656, -13.251249313354435 ], [ -76.304031372070312, -13.251251220703125 ], [ -76.304031372070312, -13.250970840454045 ], [ -76.304306030273438, -13.250970840454045 ], [ -76.304306030273438, -13.25069522857666 ], [ -76.304580688476562, -13.25069522857666 ], [ -76.304580688476562, -13.25041675567627 ], [ -76.304862976074219, -13.25041675567627 ], [ -76.304862976074219, -13.249860763549805 ], [ -76.305137634277344, -13.249860763549805 ], [ -76.305137634277344, -13.249581336975098 ], [ -76.305419921875, -13.249583244323674 ], [ -76.305419921875, -13.249029159545898 ], [ -76.305694580078011, -13.249029159545898 ], [ -76.305694580078011, -13.248748779296818 ], [ -76.305969238281193, -13.248748779296818 ], [ -76.305969238281193, -13.248194694519043 ], [ -76.306251525878849, -13.248194694519043 ], [ -76.306251525878849, -13.247917175292969 ], [ -76.306526184081974, -13.247917175292969 ], [ -76.306526184081974, -13.247638702392578 ], [ -76.307083129882812, -13.247638702392578 ], [ -76.307083129882812, -13.247082710266113 ], [ -76.307357788085938, -13.247082710266113 ], [ -76.307357788085938, -13.246805191039925 ], [ -76.307640075683594, -13.246805191039925 ], [ -76.307640075683594, -13.246526718139648 ], [ -76.308197021484375, -13.246526718139648 ], [ -76.308197021484375, -13.246249198913517 ], [ -76.3084716796875, -13.246251106262207 ], [ -76.3084716796875, -13.245972633361816 ], [ -76.308746337890511, -13.245972633361816 ], [ -76.308746337890511, -13.245695114135742 ], [ -76.309028625488224, -13.245695114135742 ], [ -76.309028625488224, -13.245416641235352 ], [ -76.309303283691349, -13.245416641235352 ], [ -76.309303283691349, -13.245139122009277 ], [ -76.309860229492131, -13.245139122009277 ], [ -76.309860229492131, -13.244860649108887 ], [ -76.310142517089787, -13.244860649108887 ], [ -76.310142517089787, -13.244582176208496 ], [ -76.310417175292969, -13.244582176208496 ], [ -76.310417175292969, -13.243750572204533 ], [ -76.310691833496094, -13.243750572204533 ], [ -76.310691833496094, -13.243470191955566 ], [ -76.31097412109375, -13.243473052978516 ], [ -76.31097412109375, -13.243193626403752 ], [ -76.311248779296875, -13.243193626403752 ], [ -76.311248779296875, -13.242916107177678 ], [ -76.311531066894531, -13.242916107177678 ], [ -76.311531066894531, -13.242637634277287 ], [ -76.311805725097656, -13.242637634277287 ], [ -76.311805725097656, -13.242360115051213 ], [ -76.312080383300724, -13.242360115051213 ], [ -76.312080383300724, -13.242085456848088 ], [ -76.312362670898381, -13.242085456848088 ], [ -76.312362670898381, -13.241527557373047 ], [ -76.312637329101506, -13.241527557373047 ], [ -76.312637329101506, -13.24124813079834 ], [ -76.312919616699162, -13.241250038146859 ], [ -76.312919616699162, -13.240971565246582 ], [ -76.313194274902287, -13.240971565246582 ], [ -76.313194274902287, -13.240577697753906 ], [ -76.313194274902287, -13.240415573120004 ], [ -76.313339233398438, -13.240415573120004 ], [ -76.313468933105469, -13.240415573120004 ], [ -76.313468933105469, -13.240265846252385 ], [ -76.313468933105469, -13.239306449890137 ], [ -76.313751220703125, -13.239306449890137 ], [ -76.313751220703125, -13.239026069641056 ], [ -76.31402587890625, -13.239027976989746 ], [ -76.31402587890625, -13.238750457763672 ], [ -76.314582824707031, -13.238750457763672 ], [ -76.314582824707031, -13.238471984863281 ], [ -76.315139770507812, -13.238471984863281 ], [ -76.315139770507812, -13.238369941711369 ], [ -76.315139770507812, -13.238194465637093 ], [ -76.315292358398381, -13.238194465637093 ], [ -76.315414428710881, -13.238194465637093 ], [ -76.315414428710881, -13.238059997558537 ], [ -76.315414428710881, -13.237915992736816 ], [ -76.315536499023438, -13.237915992736816 ], [ -76.315971374511662, -13.237915992736816 ], [ -76.315971374511662, -13.237638473510685 ], [ -76.316253662109318, -13.237638473510685 ], [ -76.316253662109318, -13.237360000610238 ], [ -76.3165283203125, -13.237360000610238 ], [ -76.3165283203125, -13.23708438873291 ], [ -76.316802978515625, -13.23708438873291 ], [ -76.316802978515625, -13.23680591583252 ], [ -76.317085266113281, -13.23680591583252 ], [ -76.317085266113281, -13.236528396606445 ], [ -76.317359924316406, -13.236528396606445 ], [ -76.317359924316406, -13.236249923706055 ], [ -76.317642211914062, -13.236249923706055 ], [ -76.317642211914062, -13.23569393157959 ], [ -76.317916870117188, -13.23569393157959 ], [ -76.317916870117188, -13.234862327575684 ], [ -76.318191528320312, -13.234862327575684 ], [ -76.318191528320312, -13.23460674285883 ], [ -76.318473815917855, -13.234583854675236 ], [ -76.318473815917855, -13.234306335449219 ], [ -76.318748474121037, -13.234306335449219 ], [ -76.318748474121037, -13.234003067016545 ], [ -76.318748474121037, -13.233750343322754 ], [ -76.319030761718693, -13.233750343322754 ], [ -76.319030761718693, -13.233471870422363 ], [ -76.319305419921818, -13.233471870422363 ], [ -76.319305419921818, -13.233194351196289 ], [ -76.319580078125, -13.233194351196289 ], [ -76.319580078125, -13.232917785644474 ], [ -76.319755554199219, -13.232917785644474 ], [ -76.319862365722656, -13.232917785644474 ], [ -76.319862365722656, -13.232798576354924 ], [ -76.319862365722656, -13.2326402664184 ], [ -76.320014953613281, -13.2326402664184 ], [ -76.320419311523438, -13.2326402664184 ], [ -76.320419311523438, -13.23236179351801 ], [ -76.320693969726562, -13.23236179351801 ], [ -76.320693969726562, -13.232084274291935 ], [ -76.320968627929688, -13.232084274291935 ], [ -76.320968627929688, -13.231805801391545 ], [ -76.321250915527344, -13.231805801391545 ], [ -76.321250915527344, -13.231528282165527 ], [ -76.321525573730355, -13.231528282165527 ], [ -76.321525573730355, -13.23124980926508 ], [ -76.321807861328068, -13.23124980926508 ], [ -76.321807861328068, -13.230971336364689 ], [ -76.322082519531193, -13.230971336364689 ], [ -76.322082519531193, -13.230695724487305 ], [ -76.322364807128849, -13.230695724487305 ], [ -76.322364807128849, -13.230415344238224 ], [ -76.322639465331974, -13.230415344238224 ], [ -76.322639465331974, -13.230139732360726 ], [ -76.322914123535156, -13.230139732360726 ], [ -76.322914123535156, -13.229859352111816 ], [ -76.323196411132812, -13.229859352111816 ], [ -76.323196411132812, -13.229305267333871 ], [ -76.323471069335938, -13.229305267333871 ], [ -76.323471069335938, -13.228749275207463 ], [ -76.323753356933594, -13.228749275207463 ], [ -76.323753356933594, -13.228470802307015 ], [ -76.324028015136719, -13.228470802307015 ], [ -76.324028015136719, -13.227916717529297 ], [ -76.324302673339844, -13.227916717529297 ], [ -76.324302673339844, -13.227637290954533 ], [ -76.3245849609375, -13.227639198303223 ], [ -76.3245849609375, -13.227083206176758 ], [ -76.324859619140568, -13.227083206176758 ], [ -76.324859619140568, -13.226804733276367 ], [ -76.325691223144474, -13.226804733276367 ], [ -76.325691223144474, -13.226527214050293 ], [ -76.325973510742131, -13.226527214050293 ], [ -76.325973510742131, -13.225971221923828 ], [ -76.326248168945312, -13.225971221923828 ], [ -76.326248168945312, -13.225694656372013 ], [ -76.326530456542969, -13.225694656372013 ], [ -76.326530456542969, -13.225138664245605 ], [ -76.326805114746094, -13.225138664245605 ], [ -76.326805114746094, -13.224475860595703 ], [ -76.326805114746094, -13.224026679992676 ], [ -76.327079772949219, -13.224026679992676 ], [ -76.327079772949219, -13.223749160766602 ], [ -76.327278137207031, -13.223751068115178 ], [ -76.327919006347656, -13.223751068115178 ], [ -76.327919006347656, -13.223472595214787 ], [ -76.328193664550724, -13.223472595214787 ], [ -76.328193664550724, -13.223193168640137 ], [ -76.328475952148381, -13.223195075988713 ], [ -76.328475952148381, -13.222916603088322 ], [ -76.328750610351506, -13.222916603088322 ], [ -76.328750610351506, -13.222639083862248 ], [ -76.329025268554631, -13.222639083862248 ], [ -76.329025268554631, -13.22208309173584 ], [ -76.329307556152344, -13.22208309173584 ], [ -76.329307556152344, -13.221804618835392 ], [ -76.329582214355469, -13.221804618835392 ], [ -76.329582214355469, -13.221527099609375 ], [ -76.329864501953125, -13.221529006957894 ], [ -76.329864501953125, -13.221248626708984 ], [ -76.33013916015625, -13.221248626708984 ], [ -76.33013916015625, -13.22097110748291 ], [ -76.330413818359375, -13.220973014831486 ], [ -76.330413818359375, -13.220394134521484 ], [ -76.330413818359375, -13.220138549804631 ], [ -76.330566406249943, -13.220138549804631 ], [ -76.330696105957031, -13.220138549804631 ], [ -76.330696105957031, -13.219915390014648 ], [ -76.330970764160156, -13.219861030578556 ], [ -76.330970764160156, -13.219582557678166 ], [ -76.331253051757699, -13.219582557678166 ], [ -76.331253051757699, -13.219167709350586 ], [ -76.331253051757699, -13.219026565551701 ], [ -76.331390380859375, -13.219026565551701 ], [ -76.331527709960881, -13.219026565551701 ], [ -76.331527709960881, -13.218880653381348 ], [ -76.331527709960881, -13.218473434448185 ], [ -76.331802368164006, -13.218473434448185 ], [ -76.331802368164006, -13.218192100524846 ], [ -76.332191467285099, -13.218194961547738 ], [ -76.332359313964844, -13.218194961547738 ], [ -76.332359313964844, -13.218018531799316 ], [ -76.332359313964844, -13.217917442321721 ], [ -76.332916259765625, -13.217917442321721 ], [ -76.332916259765625, -13.21763896942133 ], [ -76.33319091796875, -13.21763896942133 ], [ -76.33319091796875, -13.21735954284668 ], [ -76.333473205566406, -13.21735954284668 ], [ -76.333473205566406, -13.216803550720215 ], [ -76.333747863769531, -13.216803550720215 ], [ -76.333747863769531, -13.216526031494027 ], [ -76.334304809570199, -13.21652889251709 ], [ -76.334304809570199, -13.216251373291016 ], [ -76.334587097167912, -13.216251373291016 ], [ -76.334587097167912, -13.215970039367619 ], [ -76.334861755371037, -13.215971946716309 ], [ -76.334861755371037, -13.215694427490234 ], [ -76.335136413574162, -13.215694427490234 ], [ -76.335136413574162, -13.215415954589844 ], [ -76.335418701171818, -13.215415954589844 ], [ -76.335418701171818, -13.21513843536377 ], [ -76.335975646972656, -13.21513843536377 ], [ -76.335975646972656, -13.214585304260254 ], [ -76.336250305175781, -13.214585304260254 ], [ -76.336250305175781, -13.21430587768549 ], [ -76.336524963378906, -13.21430587768549 ], [ -76.336524963378906, -13.214028358459473 ], [ -76.336807250976562, -13.214028358459473 ], [ -76.336807250976562, -13.213472366333008 ], [ -76.337081909179688, -13.213472366333008 ], [ -76.337081909179688, -13.213193893432617 ], [ -76.337364196777344, -13.213193893432617 ], [ -76.337364196777344, -13.212916374206543 ], [ -76.337638854980412, -13.212916374206543 ], [ -76.337638854980412, -13.212362289428654 ], [ -76.337913513183537, -13.212362289428654 ], [ -76.337913513183537, -13.212081909179688 ], [ -76.338195800781193, -13.212081909179688 ], [ -76.338195800781193, -13.211806297302189 ], [ -76.338470458984318, -13.211806297302189 ], [ -76.338470458984318, -13.211527824401799 ], [ -76.338752746581974, -13.211527824401799 ], [ -76.338752746581974, -13.210971832275334 ], [ -76.339027404785156, -13.210971832275334 ], [ -76.339027404785156, -13.21069431304926 ], [ -76.339302062988281, -13.21069431304926 ], [ -76.339302062988281, -13.210415840148869 ], [ -76.339859008789062, -13.210415840148869 ], [ -76.339859008789062, -13.209584236144906 ], [ -76.340141296386719, -13.209584236144906 ], [ -76.340141296386719, -13.209305763244629 ], [ -76.340415954589844, -13.209305763244629 ], [ -76.340415954589844, -13.20874977111805 ], [ -76.3406982421875, -13.20874977111805 ], [ -76.3406982421875, -13.208472251892033 ], [ -76.340972900390568, -13.208472251892033 ], [ -76.340972900390568, -13.208193778991642 ], [ -76.341247558593693, -13.208193778991642 ], [ -76.341247558593693, -13.207637786865178 ], [ -76.341529846191349, -13.207637786865178 ], [ -76.341529846191349, -13.207360267639103 ], [ -76.341804504394474, -13.207362174987793 ], [ -76.341804504394474, -13.207083702087402 ], [ -76.342086791992188, -13.207083702087402 ], [ -76.342086791992188, -13.206527709960938 ], [ -76.342361450195312, -13.206527709960938 ], [ -76.342361450195312, -13.20625019073475 ], [ -76.342636108398438, -13.20625019073475 ], [ -76.342636108398438, -13.205140113830566 ], [ -76.342918395996094, -13.205140113830566 ], [ -76.342918395996094, -13.204861640930176 ], [ -76.343193054199219, -13.204861640930176 ], [ -76.343193054199219, -13.204584121704102 ], [ -76.343475341796875, -13.204584121704102 ], [ -76.343475341796875, -13.204305648803711 ], [ -76.34375, -13.204305648803711 ], [ -76.34375, -13.204028129577637 ], [ -76.344306945800724, -13.204028129577637 ], [ -76.344306945800724, -13.203000068664494 ], [ -76.344306945800724, -13.20291805267334 ], [ -76.344581604003849, -13.20291805267334 ], [ -76.344581604003849, -13.202639579772892 ], [ -76.344863891601506, -13.202639579772892 ], [ -76.344863891601506, -13.202408790588322 ], [ -76.345138549804688, -13.202362060546875 ], [ -76.345138549804688, -13.202082633972111 ], [ -76.345970153808594, -13.202082633972111 ], [ -76.345970153808594, -13.201803207397461 ], [ -76.34625244140625, -13.201805114746037 ], [ -76.34625244140625, -13.200974464416447 ], [ -76.346527099609375, -13.200974464416447 ], [ -76.346527099609375, -13.200693130493164 ], [ -76.3468017578125, -13.200693130493164 ], [ -76.3468017578125, -13.200416564941406 ], [ -76.347358703613224, -13.200416564941406 ], [ -76.347358703613224, -13.200137138366699 ], [ -76.347640991210881, -13.200139045715275 ], [ -76.347640991210881, -13.199860572814828 ], [ -76.348197937011662, -13.199860572814828 ], [ -76.348197937011662, -13.19958305358881 ], [ -76.348472595214844, -13.19958305358881 ], [ -76.348472595214844, -13.19930458068842 ], [ -76.348747253417969, -13.19930458068842 ], [ -76.348747253417969, -13.199027061462346 ], [ -76.34930419921875, -13.199027061462346 ], [ -76.34930419921875, -13.198748588561955 ], [ -76.349586486816406, -13.198748588561955 ], [ -76.349586486816406, -13.198471069335881 ], [ -76.349861145019531, -13.198471069335881 ], [ -76.349861145019531, -13.198195457458496 ], [ -76.350135803222543, -13.198195457458496 ], [ -76.350135803222543, -13.197915077209416 ], [ -76.350418090820256, -13.197916984558105 ], [ -76.350418090820256, -13.197639465331918 ], [ -76.350692749023381, -13.197639465331918 ], [ -76.350692749023381, -13.197360992431641 ], [ -76.350975036621037, -13.197360992431641 ], [ -76.350975036621037, -13.19708347320551 ], [ -76.351249694824162, -13.19708347320551 ], [ -76.351249694824162, -13.196805000305062 ], [ -76.351524353027344, -13.196805000305062 ], [ -76.351524353027344, -13.196526527404785 ], [ -76.351806640625, -13.196526527404785 ], [ -76.351806640625, -13.196249008178654 ], [ -76.352081298828125, -13.196249008178654 ], [ -76.352081298828125, -13.19597339630127 ], [ -76.352363586425781, -13.19597339630127 ], [ -76.352363586425781, -13.195417404174805 ], [ -76.352638244628906, -13.195417404174805 ], [ -76.352638244628906, -13.195138931274414 ], [ -76.352912902832031, -13.195138931274414 ], [ -76.352912902832031, -13.194582939147949 ], [ -76.353195190429688, -13.194582939147949 ], [ -76.353195190429688, -13.194305419921761 ], [ -76.353752136230412, -13.194305419921761 ], [ -76.353752136230412, -13.194026947021484 ], [ -76.354026794433537, -13.19402885437006 ], [ -76.354026794433537, -13.193751335144043 ], [ -76.354309082031193, -13.193751335144043 ], [ -76.354309082031193, -13.193470954894906 ], [ -76.354583740234318, -13.193472862243652 ], [ -76.354583740234318, -13.192639350891113 ], [ -76.3548583984375, -13.192639350891113 ], [ -76.3548583984375, -13.192360877990723 ], [ -76.355415344238281, -13.192360877990723 ], [ -76.355415344238281, -13.192083358764648 ], [ -76.355697631835938, -13.192083358764648 ], [ -76.355697631835938, -13.191806793212834 ], [ -76.355972290039062, -13.191806793212834 ], [ -76.355972290039062, -13.191526412963867 ], [ -76.356246948242188, -13.191526412963867 ], [ -76.356246948242188, -13.191250801086369 ], [ -76.356529235839844, -13.191250801086369 ], [ -76.356529235839844, -13.190973281860352 ], [ -76.356803894042912, -13.190973281860352 ], [ -76.356803894042912, -13.190694808959904 ], [ -76.357086181640568, -13.190694808959904 ], [ -76.357086181640568, -13.190137863159123 ], [ -76.357360839843693, -13.190137863159123 ], [ -76.357360839843693, -13.189860343933049 ], [ -76.357635498046818, -13.189860343933049 ], [ -76.357635498046818, -13.18958473205555 ], [ -76.357917785644531, -13.18958473205555 ], [ -76.357917785644531, -13.189304351806641 ], [ -76.358192443847656, -13.189304351806641 ], [ -76.358192443847656, -13.188471794128418 ], [ -76.358474731445312, -13.188471794128418 ], [ -76.358474731445312, -13.187915802001839 ], [ -76.358749389648438, -13.187915802001839 ], [ -76.358749389648438, -13.187082290649357 ], [ -76.359024047851562, -13.187082290649357 ], [ -76.359024047851562, -13.186249732971191 ], [ -76.359306335449219, -13.186249732971191 ], [ -76.359306335449219, -13.18541431427002 ], [ -76.359580993652344, -13.18541431427002 ], [ -76.359580993652344, -13.184304237365666 ], [ -76.359863281249886, -13.184304237365666 ], [ -76.359863281249886, -13.182638168334961 ], [ -76.360137939453068, -13.182640075683537 ], [ -76.360137939453068, -13.180693626403809 ], [ -76.360694885253849, -13.180693626403809 ], [ -76.360694885253849, -13.180137634277344 ], [ -76.360969543457031, -13.180137634277344 ], [ -76.360969543457031, -13.179583549499455 ], [ -76.360694885253849, -13.179583549499455 ], [ -76.360694885253849, -13.17902755737299 ], [ -76.360969543457031, -13.17902755737299 ], [ -76.360969543457031, -13.178750038146916 ], [ -76.361251831054688, -13.178750038146916 ], [ -76.361251831054688, -13.178194046020508 ], [ -76.361526489257812, -13.178194046020508 ], [ -76.361526489257812, -13.177914619445744 ], [ -76.361808776855469, -13.177914619445744 ], [ -76.361808776855469, -13.17763710021967 ], [ -76.362083435058594, -13.17763710021967 ], [ -76.362083435058594, -13.177081108093205 ], [ -76.362358093261719, -13.177083969116154 ], [ -76.362358093261719, -13.17680644989008 ], [ -76.362640380859375, -13.17680644989008 ], [ -76.362640380859375, -13.17652702331543 ], [ -76.362915039062386, -13.17652702331543 ], [ -76.362915039062386, -13.176248550415039 ], [ -76.363197326660099, -13.176248550415039 ], [ -76.363197326660099, -13.175971031188851 ], [ -76.363471984863224, -13.175971031188851 ], [ -76.363471984863224, -13.175692558288574 ], [ -76.363746643066349, -13.175692558288574 ], [ -76.363746643066349, -13.175415039062443 ], [ -76.364028930664006, -13.175417900085449 ], [ -76.364028930664006, -13.175140380859375 ], [ -76.364303588867188, -13.175140380859375 ], [ -76.364303588867188, -13.174859046935978 ], [ -76.364585876464844, -13.174860954284668 ], [ -76.364585876464844, -13.174583435058594 ], [ -76.364860534667969, -13.174583435058594 ], [ -76.364860534667969, -13.174304962158203 ], [ -76.365135192871094, -13.174304962158203 ], [ -76.365135192871094, -13.174027442932129 ], [ -76.36541748046875, -13.174027442932129 ], [ -76.36541748046875, -13.173748970031738 ], [ -76.365692138671875, -13.173748970031738 ], [ -76.365692138671875, -13.173473358154297 ], [ -76.365974426269531, -13.173473358154297 ], [ -76.365974426269531, -13.172917366027832 ], [ -76.366249084472599, -13.172917366027832 ], [ -76.366249084472599, -13.172636985778809 ], [ -76.366531372070256, -13.172638893127441 ], [ -76.366531372070256, -13.172361373901367 ], [ -76.366806030273381, -13.172361373901367 ], [ -76.366806030273381, -13.17208099365223 ], [ -76.367080688476506, -13.172082901000977 ], [ -76.367080688476506, -13.171805381774902 ], [ -76.367362976074162, -13.171805381774902 ], [ -76.367362976074162, -13.171526908874512 ], [ -76.367637634277344, -13.171526908874512 ], [ -76.367637634277344, -13.171251296997013 ], [ -76.367919921875, -13.171251296997013 ], [ -76.367919921875, -13.170970916748047 ], [ -76.368194580078125, -13.170970916748047 ], [ -76.368194580078125, -13.170695304870549 ], [ -76.36846923828125, -13.170695304870549 ], [ -76.36846923828125, -13.170416831970158 ], [ -76.368751525878906, -13.170416831970158 ], [ -76.368751525878906, -13.170139312744084 ], [ -76.369026184082031, -13.170139312744084 ], [ -76.369026184082031, -13.169860839843693 ], [ -76.369308471679688, -13.169860839843693 ], [ -76.369308471679688, -13.169027328491211 ], [ -76.369583129882756, -13.169027328491211 ], [ -76.369583129882756, -13.16874885559082 ], [ -76.370140075683537, -13.16874885559082 ], [ -76.370140075683537, -13.168471336364746 ], [ -76.370414733886662, -13.168473243713322 ], [ -76.370414733886662, -13.168194770812875 ], [ -76.370697021484375, -13.168194770812875 ], [ -76.370697021484375, -13.167917251586857 ], [ -76.3709716796875, -13.167917251586857 ], [ -76.3709716796875, -13.167638778686467 ], [ -76.371246337890625, -13.167638778686467 ], [ -76.371246337890625, -13.167082786560002 ], [ -76.371528625488281, -13.167082786560002 ], [ -76.371528625488281, -13.166805267333928 ], [ -76.371803283691406, -13.166805267333928 ], [ -76.371803283691406, -13.166526794433537 ], [ -76.372085571289062, -13.166526794433537 ], [ -76.372085571289062, -13.16624927520752 ], [ -76.372360229492188, -13.166251182556152 ], [ -76.372360229492188, -13.165972709655762 ], [ -76.37264251708973, -13.165972709655762 ], [ -76.37264251708973, -13.165416717529297 ], [ -76.372917175292912, -13.165416717529297 ], [ -76.372917175292912, -13.165136337280217 ], [ -76.373191833496037, -13.165139198303166 ], [ -76.373191833496037, -13.164860725402718 ], [ -76.373474121093693, -13.164860725402718 ], [ -76.373474121093693, -13.164580345153809 ], [ -76.373748779296875, -13.164583206176701 ], [ -76.373748779296875, -13.164306640625 ], [ -76.374031066894531, -13.164306640625 ], [ -76.374031066894531, -13.163750648498535 ], [ -76.374305725097656, -13.163750648498535 ], [ -76.374305725097656, -13.163473129272461 ], [ -76.374580383300781, -13.163473129272461 ], [ -76.374580383300781, -13.16319465637207 ], [ -76.374862670898438, -13.16319465637207 ], [ -76.374862670898438, -13.16291427612299 ], [ -76.375137329101562, -13.16291618347168 ], [ -76.375137329101562, -13.162637710571289 ], [ -76.375419616699219, -13.162637710571289 ], [ -76.375419616699219, -13.162358283996525 ], [ -76.37569427490223, -13.162360191345215 ], [ -76.37569427490223, -13.162084579467717 ], [ -76.375968933105412, -13.162084579467717 ], [ -76.375968933105412, -13.16180419921875 ], [ -76.376251220703068, -13.16180419921875 ], [ -76.376251220703068, -13.161528587341309 ], [ -76.376525878906193, -13.161528587341309 ], [ -76.376525878906193, -13.161248207092285 ], [ -76.376808166503849, -13.161250114440861 ], [ -76.376808166503849, -13.160971641540471 ], [ -76.377082824707031, -13.160971641540471 ], [ -76.377082824707031, -13.16069221496582 ], [ -76.377357482910156, -13.16069221496582 ], [ -76.377357482910156, -13.160138130187988 ], [ -76.377639770507812, -13.160138130187988 ], [ -76.377639770507812, -13.15986156463623 ], [ -76.377914428710938, -13.15986156463623 ], [ -76.377914428710938, -13.159582138061523 ], [ -76.378196716308594, -13.159582138061523 ], [ -76.378196716308594, -13.159305572509652 ], [ -76.378471374511719, -13.159305572509652 ], [ -76.378471374511719, -13.159026145935059 ], [ -76.378753662109375, -13.159028053283635 ], [ -76.378753662109375, -13.158749580383244 ], [ -76.379028320312443, -13.158749580383244 ], [ -76.379028320312443, -13.15847206115717 ], [ -76.379302978515568, -13.15847206115717 ], [ -76.379302978515568, -13.158193588256779 ], [ -76.379585266113224, -13.158193588256779 ], [ -76.379585266113224, -13.157916069030705 ], [ -76.379859924316349, -13.157916069030705 ], [ -76.379859924316349, -13.157637596130314 ], [ -76.380142211914006, -13.157637596130314 ], [ -76.380142211914006, -13.15736007690424 ], [ -76.380416870117188, -13.15736007690424 ], [ -76.380416870117188, -13.157084465026742 ], [ -76.380691528320312, -13.157084465026742 ], [ -76.380691528320312, -13.156805992126465 ], [ -76.380973815917969, -13.156805992126465 ], [ -76.380973815917969, -13.156528472900334 ], [ -76.381248474121094, -13.156528472900334 ], [ -76.381248474121094, -13.156249999999886 ], [ -76.38153076171875, -13.156249999999886 ], [ -76.38153076171875, -13.155971527099609 ], [ -76.381805419921875, -13.155971527099609 ], [ -76.381805419921875, -13.155694007873478 ], [ -76.382080078124943, -13.155694007873478 ], [ -76.382080078124943, -13.155415534973031 ], [ -76.382362365722599, -13.155415534973031 ], [ -76.382362365722599, -13.155138015747013 ], [ -76.382637023925724, -13.155139923095703 ], [ -76.382637023925724, -13.154862403869629 ], [ -76.382919311523381, -13.154862403869629 ], [ -76.382919311523381, -13.154582023620549 ], [ -76.383193969726506, -13.154582023620549 ], [ -76.383193969726506, -13.154027938842773 ], [ -76.383468627929688, -13.154027938842773 ], [ -76.383468627929688, -13.153750419616586 ], [ -76.383750915527344, -13.153750419616586 ], [ -76.383750915527344, -13.153471946716309 ], [ -76.384025573730469, -13.153471946716309 ], [ -76.384025573730469, -13.153194427490178 ], [ -76.384307861328125, -13.153194427490178 ], [ -76.384307861328125, -13.15291595458973 ], [ -76.38458251953125, -13.152917861938477 ], [ -76.38458251953125, -13.152638435363713 ], [ -76.384864807128906, -13.152638435363713 ], [ -76.384864807128906, -13.152359962463322 ], [ -76.385139465332031, -13.152361869812012 ], [ -76.385139465332031, -13.152084350585938 ], [ -76.385414123535099, -13.152084350585938 ], [ -76.385414123535099, -13.151805877685547 ], [ -76.385696411132756, -13.151805877685547 ], [ -76.385696411132756, -13.151528358459473 ], [ -76.385971069335881, -13.151528358459473 ], [ -76.385971069335881, -13.151249885559082 ], [ -76.386253356933537, -13.151249885559082 ], [ -76.386253356933537, -13.150972366333008 ], [ -76.386528015136719, -13.150972366333008 ], [ -76.386528015136719, -13.150695800781193 ], [ -76.386802673339844, -13.150695800781193 ], [ -76.386802673339844, -13.150415420532227 ], [ -76.387359619140625, -13.150415420532227 ], [ -76.387359619140625, -13.149862289428711 ], [ -76.387641906738281, -13.149862289428711 ], [ -76.387641906738281, -13.14958381652832 ], [ -76.388191223144531, -13.14958381652832 ], [ -76.388191223144531, -13.149306297302246 ], [ -76.388473510742074, -13.149306297302246 ], [ -76.388473510742074, -13.149026870727482 ], [ -76.388748168945256, -13.149026870727482 ], [ -76.388748168945256, -13.148749351501465 ], [ -76.389305114746037, -13.148749351501465 ], [ -76.389305114746037, -13.148470878601017 ], [ -76.389579772949219, -13.148470878601017 ], [ -76.389579772949219, -13.148193359375 ], [ -76.389862060546875, -13.148193359375 ], [ -76.389862060546875, -13.147917747497502 ], [ -76.39013671875, -13.147917747497502 ], [ -76.39013671875, -13.147360801696664 ], [ -76.390693664550781, -13.147360801696664 ], [ -76.390693664550781, -13.146527290344181 ], [ -76.390975952148438, -13.146527290344181 ], [ -76.390975952148438, -13.145597457885685 ], [ -76.390975952148438, -13.145138740539551 ], [ -76.391250610351562, -13.145138740539551 ], [ -76.391250610351562, -13.144892692565918 ], [ -76.391250610351562, -13.144026756286621 ], [ -76.391403198242131, -13.144026756286621 ], [ -76.391525268554574, -13.144026756286621 ], [ -76.391525268554574, -13.143193244934025 ], [ -76.392082214355412, -13.143195152282715 ], [ -76.392082214355412, -13.14124870300293 ], [ -76.392364501953068, -13.14124870300293 ], [ -76.392364501953068, -13.139026641845703 ], [ -76.392639160156193, -13.139026641845703 ], [ -76.392639160156193, -13.138749122619629 ], [ -76.392913818359375, -13.138751029968205 ], [ -76.392913818359375, -13.138472557067814 ], [ -76.393196105957031, -13.138472557067814 ], [ -76.393196105957031, -13.138192176818848 ], [ -76.393470764160156, -13.13819503784174 ], [ -76.393470764160156, -13.137916564941349 ], [ -76.393753051757812, -13.137916564941349 ], [ -76.393753051757812, -13.137639045715332 ], [ -76.394027709960938, -13.137639045715332 ], [ -76.394027709960938, -13.137360572814885 ], [ -76.394302368164062, -13.137360572814885 ], [ -76.394302368164062, -13.136803627014103 ], [ -76.394584655761719, -13.136803627014103 ], [ -76.394584655761719, -13.136526107788029 ], [ -76.394859313964787, -13.136528968810978 ], [ -76.394859313964787, -13.136251449584904 ], [ -76.395141601562443, -13.136251449584904 ], [ -76.395141601562443, -13.135970115661621 ], [ -76.395416259765568, -13.135972976684513 ], [ -76.395416259765568, -13.135695457458439 ], [ -76.395690917968693, -13.135695457458439 ], [ -76.395690917968693, -13.135416030883675 ], [ -76.395973205566349, -13.135416030883675 ], [ -76.395973205566349, -13.135137557983398 ], [ -76.396247863769531, -13.135137557983398 ], [ -76.396247863769531, -13.134860038757267 ], [ -76.396530151367188, -13.134860038757267 ], [ -76.396530151367188, -13.134585380554199 ], [ -76.397087097167969, -13.134585380554199 ], [ -76.397087097167969, -13.134028434753418 ], [ -76.397361755371094, -13.134028434753418 ], [ -76.397361755371094, -13.133748054504338 ], [ -76.397918701171875, -13.133749961853027 ], [ -76.397918701171875, -13.133472442626953 ], [ -76.398193359374943, -13.133472442626953 ], [ -76.398193359374943, -13.133192062377873 ], [ -76.398750305175724, -13.133193969726562 ], [ -76.398750305175724, -13.132916450500488 ], [ -76.399581909179688, -13.132916450500488 ], [ -76.399581909179688, -13.132637977600098 ], [ -76.399864196777344, -13.132637977600098 ], [ -76.399864196777344, -13.132362365722656 ], [ -76.400138854980469, -13.132362365722656 ], [ -76.400138854980469, -13.132081985473633 ], [ -76.400413513183594, -13.132081985473633 ], [ -76.400413513183594, -13.131806373596191 ], [ -76.40069580078125, -13.131806373596191 ], [ -76.40069580078125, -13.131525993347054 ], [ -76.401252746581918, -13.131525993347054 ], [ -76.401252746581918, -13.130970001220646 ], [ -76.401527404785099, -13.130971908569336 ], [ -76.401527404785099, -13.130694389343262 ], [ -76.401802062988224, -13.130694389343262 ], [ -76.401802062988224, -13.130140304565373 ], [ -76.402084350585881, -13.130140304565373 ], [ -76.402084350585881, -13.129584312438908 ], [ -76.402359008789062, -13.129584312438908 ], [ -76.402359008789062, -13.129305839538517 ], [ -76.402915954589844, -13.129305839538517 ], [ -76.402915954589844, -13.1290283203125 ], [ -76.4031982421875, -13.1290283203125 ], [ -76.4031982421875, -13.128472328186035 ], [ -76.404029846191406, -13.128472328186035 ], [ -76.404029846191406, -13.128193855285645 ], [ -76.404304504394418, -13.128193855285645 ], [ -76.404304504394418, -13.12791633605957 ], [ -76.404586791992131, -13.12791633605957 ], [ -76.404586791992131, -13.127362251281681 ], [ -76.404861450195256, -13.127362251281681 ], [ -76.404861450195256, -13.125417709350586 ], [ -76.405136108398381, -13.125417709350586 ], [ -76.405136108398381, -13.125138282775879 ], [ -76.405975341796875, -13.125140190124398 ], [ -76.405975341796875, -13.124861717224121 ], [ -76.406524658203125, -13.124861717224121 ], [ -76.406524658203125, -13.124305725097543 ], [ -76.407081604003906, -13.124305725097543 ], [ -76.407081604003906, -13.124025344848633 ], [ -76.407363891601562, -13.124028205871525 ], [ -76.407363891601562, -13.123749732971135 ], [ -76.407638549804631, -13.123749732971135 ], [ -76.407638549804631, -13.123471260070687 ], [ -76.407913208007756, -13.123471260070687 ], [ -76.407913208007756, -13.123195648193359 ], [ -76.408195495605412, -13.123195648193359 ], [ -76.408195495605412, -13.121526718139648 ], [ -76.408470153808537, -13.121526718139648 ], [ -76.408470153808537, -13.121249198913574 ], [ -76.409584045410156, -13.121249198913574 ], [ -76.409584045410156, -13.120137214660645 ], [ -76.409858703613281, -13.120139122009277 ], [ -76.409858703613281, -13.119304656982422 ], [ -76.410415649414062, -13.119304656982422 ], [ -76.410415649414062, -13.119027137756348 ], [ -76.410697937011719, -13.119027137756348 ], [ -76.410697937011719, -13.118748664855957 ], [ -76.410972595214787, -13.118748664855957 ], [ -76.410972595214787, -13.118471145629883 ], [ -76.411247253417912, -13.118471145629883 ], [ -76.411247253417912, -13.118194580078068 ], [ -76.411529541015568, -13.118194580078068 ], [ -76.411529541015568, -13.117917060851994 ], [ -76.411804199218693, -13.117917060851994 ], [ -76.411804199218693, -13.117638587951603 ], [ -76.412086486816406, -13.117638587951603 ], [ -76.412086486816406, -13.117361068725529 ], [ -76.412361145019531, -13.117361068725529 ], [ -76.412361145019531, -13.117082595825138 ], [ -76.412635803222656, -13.117082595825138 ], [ -76.412635803222656, -13.116805076599064 ], [ -76.412918090820312, -13.116805076599064 ], [ -76.412918090820312, -13.116526603698674 ], [ -76.413192749023438, -13.116526603698674 ], [ -76.413192749023438, -13.116249084472656 ], [ -76.413475036621094, -13.116249084472656 ], [ -76.413475036621094, -13.115973472595158 ], [ -76.413749694824219, -13.115973472595158 ], [ -76.413749694824219, -13.115693092346191 ], [ -76.414024353027287, -13.115694999694711 ], [ -76.414024353027287, -13.115416526794434 ], [ -76.414306640624943, -13.115416526794434 ], [ -76.414306640624943, -13.115139007568303 ], [ -76.414581298828068, -13.115139007568303 ], [ -76.414581298828068, -13.114860534667855 ], [ -76.414863586425724, -13.114860534667855 ], [ -76.414863586425724, -13.114583015441838 ], [ -76.415138244628906, -13.114583015441838 ], [ -76.415138244628906, -13.114304542541447 ], [ -76.415412902832031, -13.114304542541447 ], [ -76.415412902832031, -13.114027023315373 ], [ -76.415695190429688, -13.114028930664062 ], [ -76.415695190429688, -13.113751411437988 ], [ -76.415969848632812, -13.113751411437988 ], [ -76.415969848632812, -13.113471031188908 ], [ -76.416252136230469, -13.113472938537598 ], [ -76.416252136230469, -13.11319541931141 ], [ -76.416526794433594, -13.11319541931141 ], [ -76.416526794433594, -13.112639427185002 ], [ -76.41680908203125, -13.112639427185002 ], [ -76.41680908203125, -13.112360954284554 ], [ -76.417083740234261, -13.112360954284554 ], [ -76.417083740234261, -13.111804962158146 ], [ -76.417358398437443, -13.111806869506836 ], [ -76.417358398437443, -13.111527442932072 ], [ -76.417640686035099, -13.111527442932072 ], [ -76.417640686035099, -13.111248016357422 ], [ -76.417915344238224, -13.111250877380371 ], [ -76.417915344238224, -13.110973358154297 ], [ -76.418472290039062, -13.110973358154297 ], [ -76.418472290039062, -13.110694885253906 ], [ -76.418746948242188, -13.110694885253906 ], [ -76.418746948242188, -13.110138893127441 ], [ -76.419029235839844, -13.110138893127441 ], [ -76.419029235839844, -13.109861373901367 ], [ -76.41986083984375, -13.109861373901367 ], [ -76.41986083984375, -13.10958194732666 ], [ -76.420135498046761, -13.10958194732666 ], [ -76.420135498046761, -13.109304428100586 ], [ -76.420417785644474, -13.109304428100586 ], [ -76.420417785644474, -13.109028816223145 ], [ -76.420135498046761, -13.109028816223145 ], [ -76.420135498046761, -13.107638359069824 ], [ -76.420417785644474, -13.107638359069824 ], [ -76.420417785644474, -13.107359886169434 ], [ -76.420692443847599, -13.107359886169434 ], [ -76.420692443847599, -13.107082366943359 ], [ -76.420974731445256, -13.107082366943359 ], [ -76.420974731445256, -13.106805801391488 ], [ -76.420692443847599, -13.106805801391488 ], [ -76.420692443847599, -13.10624980926508 ], [ -76.420974731445256, -13.10624980926508 ], [ -76.420974731445256, -13.105972290039006 ], [ -76.421806335449219, -13.105972290039006 ], [ -76.421806335449219, -13.105693817138615 ], [ -76.42236328125, -13.105693817138615 ], [ -76.42236328125, -13.10513782501215 ], [ -76.422920227050781, -13.10513782501215 ], [ -76.422920227050781, -13.104583740234375 ], [ -76.423194885253906, -13.104583740234375 ], [ -76.423194885253906, -13.10402774810791 ], [ -76.423469543456974, -13.10402774810791 ], [ -76.423469543456974, -13.103750228881722 ], [ -76.423751831054631, -13.103750228881722 ], [ -76.423751831054631, -13.103194236755314 ], [ -76.424026489257756, -13.103194236755314 ], [ -76.424026489257756, -13.102359771728459 ], [ -76.424583435058537, -13.102359771728459 ], [ -76.424583435058537, -13.102084159851074 ], [ -76.424858093261719, -13.102084159851074 ], [ -76.424858093261719, -13.101805686950684 ], [ -76.425140380859375, -13.101805686950684 ], [ -76.425140380859375, -13.101528167724609 ], [ -76.4254150390625, -13.101528167724609 ], [ -76.4254150390625, -13.100972175598145 ], [ -76.425697326660156, -13.100972175598145 ], [ -76.425697326660156, -13.100693702697754 ], [ -76.425971984863281, -13.100693702697754 ], [ -76.425971984863281, -13.100416183471566 ], [ -76.426246643066406, -13.100418090820312 ], [ -76.426246643066406, -13.100137710571289 ], [ -76.426528930664062, -13.100137710571289 ], [ -76.426528930664062, -13.099860191345158 ], [ -76.426803588867131, -13.099862098693848 ], [ -76.426803588867131, -13.099583625793457 ], [ -76.427085876464787, -13.099583625793457 ], [ -76.427085876464787, -13.099304199218693 ], [ -76.427360534667912, -13.099304199218693 ], [ -76.427360534667912, -13.098750114440918 ], [ -76.427635192871037, -13.098750114440918 ], [ -76.427635192871037, -13.098471641540527 ], [ -76.42791748046875, -13.098471641540527 ], [ -76.42791748046875, -13.098194122314453 ], [ -76.428192138671875, -13.098194122314453 ], [ -76.428192138671875, -13.097915649414062 ], [ -76.428474426269531, -13.097915649414062 ], [ -76.428474426269531, -13.097637176513672 ], [ -76.428749084472656, -13.097640037536564 ], [ -76.428749084472656, -13.097361564636174 ], [ -76.429031372070312, -13.097361564636174 ], [ -76.429031372070312, -13.097081184387207 ], [ -76.429306030273438, -13.097084045410156 ], [ -76.429306030273438, -13.096805572509709 ], [ -76.429580688476562, -13.096805572509709 ], [ -76.429580688476562, -13.096528053283691 ], [ -76.429862976074105, -13.096528053283691 ], [ -76.429862976074105, -13.096249580383301 ], [ -76.430137634277287, -13.096249580383301 ], [ -76.430137634277287, -13.095696449279728 ], [ -76.430419921874943, -13.095696449279728 ], [ -76.430419921874943, -13.095415115356445 ], [ -76.430694580078068, -13.095417976379338 ], [ -76.430694580078068, -13.095140457153263 ], [ -76.43096923828125, -13.095140457153263 ], [ -76.43096923828125, -13.09485912322998 ], [ -76.431251525878906, -13.094861984252873 ], [ -76.431251525878906, -13.094582557678223 ], [ -76.431526184082031, -13.094582557678223 ], [ -76.431526184082031, -13.094305038452092 ], [ -76.431808471679688, -13.094305038452092 ], [ -76.431808471679688, -13.094026565551644 ], [ -76.432083129882812, -13.094026565551644 ], [ -76.432083129882812, -13.093749046325627 ], [ -76.432357788085938, -13.093749046325627 ], [ -76.432357788085938, -13.093474388122445 ], [ -76.432640075683594, -13.093474388122445 ], [ -76.432640075683594, -13.092917442321777 ], [ -76.432914733886605, -13.092917442321777 ], [ -76.432914733886605, -13.092637062072697 ], [ -76.433197021484318, -13.092638969421387 ], [ -76.433197021484318, -13.092361450195312 ], [ -76.433471679687443, -13.092361450195312 ], [ -76.433471679687443, -13.091805458068734 ], [ -76.433746337890568, -13.091805458068734 ], [ -76.433746337890568, -13.091526985168457 ], [ -76.434028625488224, -13.091526985168457 ], [ -76.434028625488224, -13.091251373291016 ], [ -76.434303283691406, -13.091251373291016 ], [ -76.434303283691406, -13.090695381164551 ], [ -76.434585571289062, -13.090695381164551 ], [ -76.434585571289062, -13.090415000915471 ], [ -76.434860229492188, -13.09041690826416 ], [ -76.434860229492188, -13.090139389038086 ], [ -76.435142517089844, -13.090139389038086 ], [ -76.435142517089844, -13.089860916137695 ], [ -76.435417175292969, -13.089860916137695 ], [ -76.435417175292969, -13.08930492401123 ], [ -76.435691833496094, -13.08930492401123 ], [ -76.435691833496094, -13.089027404785156 ], [ -76.43597412109375, -13.089027404785156 ], [ -76.43597412109375, -13.088748931884766 ], [ -76.436248779296818, -13.088748931884766 ], [ -76.436248779296818, -13.088194847106877 ], [ -76.436531066894474, -13.088194847106877 ], [ -76.436531066894474, -13.087917327880859 ], [ -76.436805725097599, -13.087917327880859 ], [ -76.436805725097599, -13.087638854980469 ], [ -76.437080383300724, -13.087638854980469 ], [ -76.437080383300724, -13.087082862854004 ], [ -76.437362670898381, -13.087082862854004 ], [ -76.437362670898381, -13.08680534362793 ], [ -76.437637329101562, -13.08680534362793 ], [ -76.437637329101562, -13.086526870727539 ], [ -76.437919616699219, -13.086526870727539 ], [ -76.43792724609375, -13.086208343505859 ], [ -76.438194274902344, -13.086251258850041 ], [ -76.438186645507812, -13.085961341857853 ], [ -76.438468933105469, -13.08597278594965 ], [ -76.438468933105469, -13.085689544677734 ], [ -76.438751220703125, -13.085695266723576 ], [ -76.438751220703125, -13.085416793823185 ], [ -76.43902587890625, -13.085416793823185 ], [ -76.43902587890625, -13.085139274597168 ], [ -76.439308166503906, -13.085139274597168 ], [ -76.439308166503906, -13.084860801696721 ], [ -76.439582824706974, -13.084860801696721 ], [ -76.439582824706974, -13.084614753723145 ], [ -76.439857482910099, -13.084583282470703 ], [ -76.439857482910099, -13.084306716918945 ], [ -76.440139770507756, -13.084306716918945 ], [ -76.440139770507756, -13.084076881408635 ], [ -76.440696716308594, -13.084029197692814 ], [ -76.440696716308594, -13.083750724792367 ], [ -76.440971374511719, -13.083750724792367 ], [ -76.440971374511719, -13.083470344543457 ], [ -76.441253662109375, -13.083473205566349 ], [ -76.441253662109375, -13.083194732665959 ], [ -76.4415283203125, -13.083194732665959 ], [ -76.4415283203125, -13.082917213439885 ], [ -76.441802978515625, -13.082917213439885 ], [ -76.441802978515625, -13.082638740539494 ], [ -76.442085266113281, -13.082638740539494 ], [ -76.442085266113281, -13.082360267639103 ], [ -76.442359924316406, -13.082360267639103 ], [ -76.442359924316406, -13.081938743591195 ], [ -76.442359924316406, -13.081804275512638 ], [ -76.442497253417969, -13.081804275512638 ], [ -76.442642211913949, -13.081804275512638 ], [ -76.442642211913949, -13.081665039062443 ], [ -76.442642211913949, -13.081528663635254 ], [ -76.442787170410156, -13.081528663635254 ], [ -76.442916870117131, -13.081528663635254 ], [ -76.442916870117131, -13.081398963928166 ], [ -76.442916870117131, -13.081248283386174 ], [ -76.443046569824219, -13.081248283386174 ], [ -76.443191528320256, -13.08125114440918 ], [ -76.443191528320256, -13.081090927124023 ], [ -76.443191528320256, -13.080971717834473 ], [ -76.443298339843693, -13.080971717834473 ], [ -76.443473815917912, -13.080971717834473 ], [ -76.443473815917912, -13.080785751342773 ], [ -76.443473815917912, -13.080694198608398 ], [ -76.443748474121094, -13.080694198608398 ], [ -76.443748474121094, -13.080415725708008 ], [ -76.44403076171875, -13.080415725708008 ], [ -76.44403076171875, -13.080138206481934 ], [ -76.444305419921875, -13.080138206481934 ], [ -76.444305419921875, -13.079839706420898 ], [ -76.444305419921875, -13.079582214355469 ], [ -76.444580078125, -13.079582214355469 ], [ -76.444580078125, -13.079305648803654 ], [ -76.444755554199219, -13.079305648803654 ], [ -76.444862365722656, -13.079211235046387 ], [ -76.444862365722656, -13.07902622222889 ], [ -76.445030212402344, -13.079028129577637 ], [ -76.445137023925781, -13.079028129577637 ], [ -76.445137023925781, -13.078903198242131 ], [ -76.445137023925781, -13.078749656677246 ], [ -76.445274353027344, -13.078749656677246 ], [ -76.445419311523438, -13.078749656677246 ], [ -76.445419311523438, -13.078585624694767 ], [ -76.445419311523438, -13.078470230102482 ], [ -76.445693969726449, -13.078472137451172 ], [ -76.445693969726449, -13.078193664550781 ], [ -76.445968627929631, -13.078193664550781 ], [ -76.445968627929631, -13.077968597412109 ], [ -76.446250915527287, -13.077916145324707 ], [ -76.446250915527287, -13.077637672424316 ], [ -76.446525573730412, -13.077637672424316 ], [ -76.446525573730412, -13.077360153198242 ], [ -76.446807861328068, -13.077360153198242 ], [ -76.446807861328068, -13.077083587646428 ], [ -76.44708251953125, -13.077083587646428 ], [ -76.44708251953125, -13.076804161071777 ], [ -76.447364807128906, -13.076806068420353 ], [ -76.447364807128906, -13.076527595519963 ], [ -76.447639465332031, -13.076527595519963 ], [ -76.447639465332031, -13.076250076293888 ], [ -76.447914123535156, -13.076250076293888 ], [ -76.447914123535156, -13.075790405273438 ], [ -76.447914123535156, -13.07569408416748 ], [ -76.448196411132812, -13.07569408416748 ], [ -76.448196411132812, -13.075415611267033 ], [ -76.448471069335938, -13.075415611267033 ], [ -76.448471069335938, -13.075154304504395 ], [ -76.448753356933594, -13.075139999389535 ], [ -76.448753356933594, -13.074861526489258 ], [ -76.449028015136662, -13.074861526489258 ], [ -76.449028015136662, -13.074582099914551 ], [ -76.449302673339787, -13.074584007263127 ], [ -76.449302673339787, -13.074305534362679 ], [ -76.449584960937443, -13.074305534362679 ], [ -76.449584960937443, -13.074028015136662 ], [ -76.449859619140568, -13.074028015136662 ], [ -76.449859619140568, -13.073749542236271 ], [ -76.450141906738224, -13.073749542236271 ], [ -76.450141906738224, -13.073472023010197 ], [ -76.450416564941406, -13.073472023010197 ], [ -76.450416564941406, -13.073193550109806 ], [ -76.450691223144531, -13.073193550109806 ], [ -76.450691223144531, -13.072916030883732 ], [ -76.450973510742188, -13.072916030883732 ], [ -76.450973510742188, -13.072360038757324 ], [ -76.451248168945312, -13.072361946105957 ], [ -76.451248168945312, -13.072084426879826 ], [ -76.451530456542969, -13.072084426879826 ], [ -76.451530456542969, -13.071805953979379 ], [ -76.451805114746094, -13.071805953979379 ], [ -76.451805114746094, -13.071528434753361 ], [ -76.452079772949162, -13.071528434753361 ], [ -76.452079772949162, -13.070972442626896 ], [ -76.452362060546818, -13.070972442626896 ], [ -76.452362060546818, -13.070720672607422 ], [ -76.452636718749943, -13.070693969726506 ], [ -76.452636718749943, -13.070414543151855 ], [ -76.452919006347599, -13.070414543151855 ], [ -76.452919006347599, -13.070246696472168 ], [ -76.452919006347599, -13.07013988494873 ], [ -76.453018188476506, -13.070137023925668 ], [ -76.453193664550724, -13.07013988494873 ], [ -76.453193664550724, -13.069981575012207 ], [ -76.453193664550724, -13.069862365722656 ], [ -76.453330993652344, -13.069862365722656 ], [ -76.453475952148438, -13.069862365722656 ], [ -76.453475952148438, -13.069731712341195 ], [ -76.453475952148438, -13.069306373596191 ], [ -76.453750610351562, -13.069306373596191 ], [ -76.453750610351562, -13.069027900695801 ], [ -76.454025268554688, -13.069027900695801 ], [ -76.454025268554688, -13.06874942779541 ], [ -76.454299926757812, -13.06874942779541 ], [ -76.454307556152344, -13.06847095489502 ], [ -76.454582214355469, -13.06847095489502 ], [ -76.454582214355469, -13.067917823791504 ], [ -76.454864501953125, -13.067917823791504 ], [ -76.454864501953125, -13.06764030456543 ], [ -76.45513916015625, -13.06764030456543 ], [ -76.45513916015625, -13.067360877990666 ], [ -76.455413818359318, -13.067360877990666 ], [ -76.455413818359318, -13.067083358764648 ], [ -76.455696105956974, -13.067083358764648 ], [ -76.455696105956974, -13.066804885864258 ], [ -76.455970764160099, -13.066804885864258 ], [ -76.455970764160099, -13.066527366638184 ], [ -76.456253051757756, -13.066527366638184 ], [ -76.456253051757756, -13.066248893737793 ], [ -76.456527709960938, -13.066248893737793 ], [ -76.456527709960938, -13.065973281860295 ], [ -76.456809997558594, -13.065973281860295 ], [ -76.457084655761719, -13.065973281860295 ], [ -76.457084655761719, -13.065694808959904 ], [ -76.457359313964844, -13.065694808959904 ], [ -76.457359313964844, -13.06541728973383 ], [ -76.4576416015625, -13.06541728973383 ], [ -76.4576416015625, -13.065138816833439 ], [ -76.457916259765625, -13.065138816833439 ], [ -76.457916259765625, -13.064861297607365 ], [ -76.45819091796875, -13.064861297607365 ], [ -76.45819091796875, -13.064582824706974 ], [ -76.458473205566293, -13.064582824706974 ], [ -76.458473205566293, -13.0643053054809 ], [ -76.458747863769474, -13.0643053054809 ], [ -76.458747863769474, -13.06402683258051 ], [ -76.459030151367131, -13.06402683258051 ], [ -76.459030151367131, -13.06376743316639 ], [ -76.459587097167912, -13.063751220703125 ], [ -76.459587097167912, -13.063470840454045 ], [ -76.459861755371094, -13.063470840454045 ], [ -76.459861755371094, -13.063195228576546 ], [ -76.460136413574219, -13.063195228576546 ], [ -76.460136413574219, -13.06291675567627 ], [ -76.460418701171875, -13.06291675567627 ], [ -76.460418701171875, -13.062639236450138 ], [ -76.460975646972656, -13.062639236450138 ], [ -76.460975646972656, -13.062360763549691 ], [ -76.461250305175781, -13.062360763549691 ], [ -76.461250305175781, -13.062083244323674 ], [ -76.461524963378793, -13.062083244323674 ], [ -76.461524963378793, -13.061804771423283 ], [ -76.461807250976506, -13.061804771423283 ], [ -76.461807250976506, -13.061529159545898 ], [ -76.462081909179631, -13.061529159545898 ], [ -76.462081909179631, -13.061248779296818 ], [ -76.462638854980412, -13.061248779296818 ], [ -76.462638854980412, -13.060971260070744 ], [ -76.462913513183594, -13.060973167419434 ], [ -76.462913513183594, -13.060694694519043 ], [ -76.46319580078125, -13.060694694519043 ], [ -76.46319580078125, -13.060415267944336 ], [ -76.463470458984375, -13.060417175292969 ], [ -76.463470458984375, -13.060138702392578 ], [ -76.463752746582031, -13.060138702392578 ], [ -76.463752746582031, -13.059859275817871 ], [ -76.464302062988281, -13.05986118316639 ], [ -76.464302062988281, -13.059582710266113 ], [ -76.464584350585938, -13.059582710266113 ], [ -76.464584350585938, -13.059305191039982 ], [ -76.464859008789006, -13.059305191039982 ], [ -76.464859008789006, -13.059026718139535 ], [ -76.465141296386662, -13.059026718139535 ], [ -76.465141296386662, -13.058749198913517 ], [ -76.465415954589787, -13.058751106262207 ], [ -76.465415954589787, -13.058472633361816 ], [ -76.465698242187443, -13.058472633361816 ], [ -76.465698242187443, -13.058195114135742 ], [ -76.46624755859375, -13.058195114135742 ], [ -76.46624755859375, -13.057916641235352 ], [ -76.466529846191406, -13.057916641235352 ], [ -76.466529846191406, -13.057639122009277 ], [ -76.466804504394531, -13.057639122009277 ], [ -76.466804504394531, -13.057360649108887 ], [ -76.467086791992188, -13.057360649108887 ], [ -76.467086791992188, -13.057083129882812 ], [ -76.467918395996094, -13.057083129882812 ], [ -76.467918395996094, -13.056804656982422 ], [ -76.468193054199162, -13.056804656982422 ], [ -76.468193054199162, -13.056526184082031 ], [ -76.468475341796818, -13.05652904510498 ], [ -76.468475341796818, -13.056250572204533 ], [ -76.46875, -13.056243896484375 ], [ -76.46875, -13.055694580078125 ], [ -76.469024658203068, -13.055694580078125 ], [ -76.469024658203068, -13.055417060852051 ], [ -76.469306945800781, -13.055417060852051 ], [ -76.469306945800781, -13.055137634277287 ], [ -76.469581604003906, -13.055137634277287 ], [ -76.469581604003906, -13.05486011505127 ], [ -76.469863891601562, -13.05486011505127 ], [ -76.469863891601562, -13.054585456848088 ], [ -76.470138549804688, -13.054585456848088 ], [ -76.470138549804688, -13.054304122924805 ], [ -76.470413208007812, -13.054306983947697 ], [ -76.470413208007812, -13.054029464721623 ], [ -76.470695495605469, -13.054029464721623 ], [ -76.470695495605469, -13.053471565246468 ], [ -76.470970153808594, -13.053471565246468 ], [ -76.470970153808594, -13.053192138671875 ], [ -76.471527099609318, -13.053194046020451 ], [ -76.471527099609318, -13.05291557312006 ], [ -76.471801757812443, -13.05291557312006 ], [ -76.471801757812443, -13.052638053893986 ], [ -76.472084045410099, -13.052638053893986 ], [ -76.472084045410099, -13.052362442016602 ], [ -76.472358703613281, -13.052362442016602 ], [ -76.472358703613281, -13.052082061767521 ], [ -76.472640991210938, -13.052082061767521 ], [ -76.472640991210938, -13.051806449890137 ], [ -76.472915649414062, -13.051806449890137 ], [ -76.472915649414062, -13.051250457763558 ], [ -76.473197937011719, -13.051250457763558 ], [ -76.473197937011719, -13.050970077514648 ], [ -76.473472595214844, -13.050971984863281 ], [ -76.473472595214844, -13.05069446563715 ], [ -76.474304199218636, -13.05069446563715 ], [ -76.474304199218636, -13.050415992736703 ], [ -76.474586486816349, -13.050415992736703 ], [ -76.474586486816349, -13.050138473510685 ], [ -76.474861145019474, -13.050138473510685 ], [ -76.474861145019474, -13.049860000610295 ], [ -76.475135803222599, -13.049860000610295 ], [ -76.475135803222599, -13.04958438873291 ], [ -76.475418090820256, -13.04958438873291 ], [ -76.475418090820256, -13.04930400848383 ], [ -76.475692749023438, -13.04930591583252 ], [ -76.475692749023438, -13.049028396606445 ], [ -76.475975036621094, -13.049028396606445 ], [ -76.475975036621094, -13.048749923706055 ], [ -76.476249694824219, -13.048749923706055 ], [ -76.476249694824219, -13.04847240447998 ], [ -76.476524353027344, -13.04847240447998 ], [ -76.476524353027344, -13.047916412353402 ], [ -76.476806640625, -13.047916412353402 ], [ -76.476806640625, -13.047362327575684 ], [ -76.477081298828125, -13.047362327575684 ], [ -76.477081298828125, -13.047081947326546 ], [ -76.477363586425781, -13.047083854675293 ], [ -76.477363586425781, -13.046527862548828 ], [ -76.477638244628849, -13.046527862548828 ], [ -76.477638244628849, -13.046250343322754 ], [ -76.477912902831974, -13.046250343322754 ], [ -76.477912902831974, -13.045694351196289 ], [ -76.478195190429631, -13.045694351196289 ], [ -76.478195190429631, -13.045417785644474 ], [ -76.478469848632756, -13.045417785644474 ], [ -76.478469848632756, -13.0451402664184 ], [ -76.478752136230412, -13.0451402664184 ], [ -76.478752136230412, -13.04486179351801 ], [ -76.479026794433594, -13.04486179351801 ], [ -76.479026794433594, -13.044584274291992 ], [ -76.479583740234375, -13.044584274291992 ], [ -76.479583740234375, -13.044305801391545 ], [ -76.4798583984375, -13.044305801391545 ], [ -76.4798583984375, -13.044028282165527 ], [ -76.480140686035156, -13.044028282165527 ], [ -76.480140686035156, -13.043749809265137 ], [ -76.480415344238281, -13.043749809265137 ], [ -76.480415344238281, -13.043472290039062 ], [ -76.480697631835938, -13.043472290039062 ], [ -76.480697631835938, -13.043195724487191 ], [ -76.480972290039006, -13.043195724487191 ], [ -76.480972290039006, -13.042639732360783 ], [ -76.481246948242131, -13.042639732360783 ], [ -76.481246948242131, -13.042359352111816 ], [ -76.481803894042912, -13.042359352111816 ], [ -76.481803894042912, -13.041803359985352 ], [ -76.482086181640625, -13.041806221008244 ], [ -76.482086181640625, -13.04152679443348 ], [ -76.48236083984375, -13.04152679443348 ], [ -76.48236083984375, -13.041249275207463 ], [ -76.483192443847656, -13.041249275207463 ], [ -76.483192443847656, -13.040970802307072 ], [ -76.483474731445312, -13.040970802307072 ], [ -76.483474731445312, -13.040417671203613 ], [ -76.483749389648438, -13.040417671203613 ], [ -76.483749389648438, -13.040137290954533 ], [ -76.484024047851506, -13.040139198303223 ], [ -76.484024047851506, -13.039583206176758 ], [ -76.484306335449162, -13.039583206176758 ], [ -76.484306335449162, -13.039304733276367 ], [ -76.484580993652287, -13.039304733276367 ], [ -76.484580993652287, -13.039027214050293 ], [ -76.484863281249943, -13.039027214050293 ], [ -76.484863281249943, -13.03819465637207 ], [ -76.485137939453125, -13.03819465637207 ], [ -76.485137939453125, -13.037638664245605 ], [ -76.485420227050781, -13.037638664245605 ], [ -76.485420227050781, -13.037359237670842 ], [ -76.485694885253906, -13.037359237670842 ], [ -76.485694885253906, -13.036803245544377 ], [ -76.485969543457031, -13.036805152893066 ], [ -76.485969543457031, -13.036526679992676 ], [ -76.486526489257812, -13.036526679992676 ], [ -76.486526489257812, -13.036249160766602 ], [ -76.486808776855469, -13.036249160766602 ], [ -76.486808776855469, -13.035416603088322 ], [ -76.48708343505848, -13.035416603088322 ], [ -76.48708343505848, -13.034860610961857 ], [ -76.487358093261662, -13.034860610961857 ], [ -76.487358093261662, -13.03458309173584 ], [ -76.487640380859318, -13.03458309173584 ], [ -76.487640380859318, -13.034304618835449 ], [ -76.487915039062443, -13.034304618835449 ], [ -76.487915039062443, -13.034027099609375 ], [ -76.488197326660099, -13.034027099609375 ], [ -76.488197326660099, -13.03347110748291 ], [ -76.488471984863281, -13.033473014831486 ], [ -76.488471984863281, -13.033194541931096 ], [ -76.488746643066406, -13.033194541931096 ], [ -76.488746643066406, -13.032917022705021 ], [ -76.489028930664062, -13.032917022705021 ], [ -76.489028930664062, -13.032361030578556 ], [ -76.489303588867188, -13.032361030578556 ], [ -76.489303588867188, -13.032082557678166 ], [ -76.489585876464844, -13.032082557678166 ], [ -76.489585876464844, -13.031526565551701 ], [ -76.489860534667969, -13.031526565551701 ], [ -76.489860534667969, -13.031249046325684 ], [ -76.49013519287098, -13.031250953674203 ], [ -76.49013519287098, -13.030973434448185 ], [ -76.490417480468693, -13.030973434448185 ], [ -76.490417480468693, -13.030692100524846 ], [ -76.490974426269474, -13.030692100524846 ], [ -76.490974426269474, -13.03013896942133 ], [ -76.490692138671818, -13.03013896942133 ], [ -76.490692138671818, -13.029861450195256 ], [ -76.490417480468693, -13.029861450195256 ], [ -76.490417480468693, -13.029582977294865 ], [ -76.49013519287098, -13.029582977294865 ], [ -76.49013519287098, -13.029303550720215 ], [ -76.489860534667969, -13.029303550720215 ], [ -76.489860534667969, -13.028195381164437 ], [ -76.489585876464844, -13.028195381164437 ], [ -76.489585876464844, -13.028472900390625 ], [ -76.489028930664062, -13.028472900390625 ], [ -76.489028930664062, -13.028195381164437 ], [ -76.488746643066406, -13.028195381164437 ], [ -76.488746643066406, -13.02763843536377 ], [ -76.488471984863281, -13.02763843536377 ], [ -76.488471984863281, -13.027359962463379 ], [ -76.488197326660099, -13.027359962463379 ], [ -76.488197326660099, -13.027082443237305 ], [ -76.485969543457031, -13.027082443237305 ], [ -76.485969543457031, -13.027359962463379 ], [ -76.485420227050781, -13.027359962463379 ], [ -76.485420227050781, -13.027082443237305 ], [ -76.485137939453125, -13.027082443237305 ], [ -76.485137939453125, -13.027359962463379 ], [ -76.484580993652287, -13.027359962463379 ], [ -76.484580993652287, -13.027082443237305 ], [ -76.484306335449162, -13.027082443237305 ], [ -76.484306335449162, -13.026806831359863 ], [ -76.483192443847656, -13.026806831359863 ], [ -76.483192443847656, -13.026249885559082 ], [ -76.482635498046875, -13.026249885559082 ], [ -76.482635498046875, -13.025972366333008 ], [ -76.48236083984375, -13.025972366333008 ], [ -76.48236083984375, -13.025416374206543 ], [ -76.482086181640625, -13.025416374206543 ], [ -76.482086181640625, -13.024027824401799 ], [ -76.481803894042912, -13.024027824401799 ], [ -76.481803894042912, -13.022915840148869 ], [ -76.481529235839787, -13.022915840148869 ], [ -76.481529235839787, -13.022084236144963 ], [ -76.481246948242131, -13.022084236144963 ], [ -76.481246948242131, -13.021805763244515 ], [ -76.481071472167912, -13.021805763244515 ], [ -76.480972290039006, -13.021805763244515 ], [ -76.480972290039006, -13.020972251892033 ], [ -76.481246948242131, -13.020972251892033 ], [ -76.481246948242131, -13.020693778991642 ], [ -76.481529235839787, -13.020693778991642 ], [ -76.481529235839787, -13.020416259765568 ], [ -76.481803894042912, -13.020416259765568 ], [ -76.481803894042912, -13.020137786865178 ], [ -76.482086181640625, -13.020137786865178 ], [ -76.482086181640625, -13.01986026763916 ], [ -76.48236083984375, -13.019862174987793 ], [ -76.48236083984375, -13.019027709960938 ], [ -76.482635498046875, -13.019027709960938 ], [ -76.482635498046875, -13.018471717834359 ], [ -76.482917785644531, -13.018471717834359 ], [ -76.482917785644531, -13.017361640930176 ], [ -76.483192443847656, -13.017361640930176 ], [ -76.483192443847656, -13.016528129577637 ], [ -76.482917785644531, -13.016528129577637 ], [ -76.482917785644531, -13.015969276428166 ], [ -76.482635498046875, -13.015972137451172 ], [ -76.482635498046875, -13.015598297119141 ], [ -76.482635498046875, -13.014859199523926 ], [ -76.48236083984375, -13.014862060546875 ], [ -76.48236083984375, -13.014583587646484 ], [ -76.482086181640625, -13.014583587646484 ], [ -76.482086181640625, -13.014303207397461 ], [ -76.48236083984375, -13.014303207397461 ], [ -76.48236083984375, -13.013193130493164 ], [ -76.482086181640625, -13.013193130493164 ], [ -76.482086181640625, -13.012916564941293 ], [ -76.481803894042912, -13.012916564941293 ], [ -76.481803894042912, -13.012081146240234 ], [ -76.482086181640625, -13.01208305358881 ], [ -76.482086181640625, -13.01180458068842 ], [ -76.48236083984375, -13.01180458068842 ], [ -76.48236083984375, -13.011527061462346 ], [ -76.482635498046875, -13.011527061462346 ], [ -76.482635498046875, -13.010695457458382 ], [ -76.482917785644531, -13.010695457458382 ], [ -76.482917785644531, -13.010415077209473 ], [ -76.483192443847656, -13.010415077209473 ], [ -76.483192443847656, -13.009860992431527 ], [ -76.484306335449162, -13.009860992431527 ], [ -76.484306335449162, -13.011248588561955 ], [ -76.484664916992131, -13.011248588561955 ], [ -76.484863281249943, -13.011248588561955 ], [ -76.484863281249943, -13.010971069335881 ], [ -76.485969543457031, -13.010971069335881 ], [ -76.485969543457031, -13.010415077209473 ], [ -76.486251831054688, -13.010416984558105 ], [ -76.486251831054688, -13.010139465331974 ], [ -76.486526489257812, -13.010139465331974 ], [ -76.486526489257812, -13.009860992431527 ], [ -76.486808776855469, -13.009860992431527 ], [ -76.486808776855469, -13.00958347320551 ], [ -76.487358093261662, -13.00958347320551 ], [ -76.487358093261662, -13.009305000305119 ], [ -76.487640380859318, -13.009305000305119 ], [ -76.487640380859318, -13.009026527404671 ], [ -76.487915039062443, -13.009026527404671 ], [ -76.487915039062443, -13.008749008178654 ], [ -76.488471984863281, -13.008749008178654 ], [ -76.488471984863281, -13.007917404174805 ], [ -76.489028930664062, -13.007917404174805 ], [ -76.489028930664062, -13.007638931274414 ], [ -76.489585876464844, -13.007638931274414 ], [ -76.489585876464844, -13.007082939147949 ], [ -76.489860534667969, -13.007082939147949 ], [ -76.489860534667969, -13.006805419921818 ], [ -76.49013519287098, -13.006805419921818 ], [ -76.49013519287098, -13.006526947021371 ], [ -76.490417480468693, -13.006526947021371 ], [ -76.490417480468693, -13.005970954894963 ], [ -76.490692138671818, -13.005972862243652 ], [ -76.490692138671818, -13.005695343017578 ], [ -76.490974426269474, -13.005695343017578 ], [ -76.490974426269474, -13.005416870117188 ], [ -76.491249084472599, -13.005416870117188 ], [ -76.491249084472599, -13.005139350891113 ], [ -76.491531372070256, -13.005139350891113 ], [ -76.491531372070256, -13.004306793212834 ], [ -76.491806030273438, -13.004306793212834 ], [ -76.491806030273438, -13.003194808959961 ], [ -76.492080688476562, -13.003194808959961 ], [ -76.492080688476562, -13.002361297607422 ], [ -76.492362976074219, -13.002361297607422 ], [ -76.492362976074219, -13.001528739929142 ], [ -76.492637634277344, -13.001528739929142 ], [ -76.492637634277344, -13.001251220703068 ], [ -76.493194580078125, -13.001251220703068 ], [ -76.493194580078125, -13.000972747802678 ], [ -76.493469238281193, -13.000972747802678 ], [ -76.493469238281193, -13.000694274902287 ], [ -76.493751525878849, -13.000694274902287 ], [ -76.493751525878849, -13.000415802001896 ], [ -76.494026184081974, -13.000415802001896 ], [ -76.494026184081974, -13.000138282775822 ], [ -76.494026184081974, -12.999859809875431 ], [ -76.494308471679631, -12.999859809875431 ], [ -76.494308471679631, -12.999582290649357 ], [ -76.496246337890625, -12.999582290649357 ], [ -76.496246337890625, -12.999305725097656 ], [ -76.496528625488281, -12.999305725097656 ], [ -76.496528625488281, -12.998749732971191 ], [ -76.496803283691349, -12.998749732971191 ], [ -76.496803283691349, -12.998472213745117 ], [ -76.497085571289006, -12.998472213745117 ], [ -76.497085571289006, -12.996248245239201 ], [ -76.497360229492131, -12.996250152587891 ], [ -76.497360229492131, -12.9959716796875 ], [ -76.497642517089787, -12.9959716796875 ], [ -76.497642517089787, -12.995138168334961 ], [ -76.497917175292969, -12.995138168334961 ], [ -76.497917175292969, -12.994582176208382 ], [ -76.498191833496094, -12.994584083557129 ], [ -76.498191833496094, -12.994305610656681 ], [ -76.499305725097656, -12.994305610656681 ], [ -76.499305725097656, -12.993749618530273 ], [ -76.499031066894531, -12.993749618530273 ], [ -76.499031066894531, -12.993472099304199 ], [ -76.499305725097656, -12.993472099304199 ], [ -76.499305725097656, -12.992916107177734 ], [ -76.499580383300781, -12.99291801452631 ], [ -76.499580383300781, -12.992637634277344 ], [ -76.499862670898324, -12.992637634277344 ], [ -76.499862670898324, -12.99236011505127 ], [ -76.500419616699162, -12.99236011505127 ], [ -76.500419616699162, -12.990694046020508 ], [ -76.500694274902287, -12.990694046020508 ], [ -76.500694274902287, -12.990138053894043 ], [ -76.500968933105469, -12.990138053894043 ], [ -76.500968933105469, -12.989581108093262 ], [ -76.50152587890625, -12.989581108093262 ], [ -76.50152587890625, -12.989027976989689 ], [ -76.501808166503906, -12.989027976989689 ], [ -76.501808166503906, -12.988750457763615 ], [ -76.502082824707031, -12.988750457763615 ], [ -76.502082824707031, -12.988471031188908 ], [ -76.502357482910156, -12.988471031188908 ], [ -76.502357482910156, -12.988192558288461 ], [ -76.502639770507812, -12.988192558288461 ], [ -76.502639770507812, -12.987915039062443 ], [ -76.502914428710824, -12.987915039062443 ], [ -76.502914428710824, -12.986804962158203 ], [ -76.503196716308537, -12.986804962158203 ], [ -76.503196716308537, -12.986527442932129 ], [ -76.503471374511662, -12.986527442932129 ], [ -76.503471374511662, -12.986248970031738 ], [ -76.503753662109318, -12.986248970031738 ], [ -76.503753662109318, -12.985974311828613 ], [ -76.504028320312443, -12.985974311828613 ], [ -76.504028320312443, -12.985694885253906 ], [ -76.504302978515625, -12.985694885253906 ], [ -76.504302978515625, -12.985136985778695 ], [ -76.504859924316406, -12.985138893127441 ], [ -76.504859924316406, -12.984861373901367 ], [ -76.505142211914062, -12.984861373901367 ], [ -76.505142211914062, -12.984580993652287 ], [ -76.505416870117188, -12.984582901000977 ], [ -76.505416870117188, -12.984026908874512 ], [ -76.505691528320312, -12.984026908874512 ], [ -76.505691528320312, -12.983195304870549 ], [ -76.505973815917969, -12.983195304870549 ], [ -76.505973815917969, -12.982360839843693 ], [ -76.506248474121037, -12.982360839843693 ], [ -76.506248474121037, -12.981804847717285 ], [ -76.506530761718693, -12.981804847717285 ], [ -76.506530761718693, -12.980973243713322 ], [ -76.506805419921818, -12.980973243713322 ], [ -76.506805419921818, -12.980138778686467 ], [ -76.507080078124943, -12.980138778686467 ], [ -76.507080078124943, -12.979305267333984 ], [ -76.506965637207031, -12.979305267333984 ], [ -76.506805419921818, -12.979305267333984 ], [ -76.506805419921818, -12.979120254516602 ], [ -76.506805419921818, -12.978195190429631 ], [ -76.506530761718693, -12.978195190429631 ], [ -76.506530761718693, -12.97569465637207 ], [ -76.506805419921818, -12.97569465637207 ], [ -76.506805419921818, -12.973471641540471 ], [ -76.507080078124943, -12.973471641540471 ], [ -76.507080078124943, -12.972638130187988 ], [ -76.507362365722599, -12.972638130187988 ], [ -76.507362365722599, -12.972082138061523 ], [ -76.507637023925781, -12.972082138061523 ], [ -76.507637023925781, -12.971526145935059 ], [ -76.507919311523438, -12.971528053283635 ], [ -76.507919311523438, -12.971249580383244 ], [ -76.508193969726562, -12.971249580383244 ], [ -76.508193969726562, -12.970693588256779 ], [ -76.508468627929688, -12.970693588256779 ], [ -76.508468627929688, -12.970137596130314 ], [ -76.508750915527344, -12.970137596130314 ], [ -76.508750915527344, -12.969860076904297 ], [ -76.509025573730469, -12.969860076904297 ], [ -76.509025573730469, -12.969304084777832 ], [ -76.509307861328125, -12.969305992126351 ], [ -76.509307861328125, -12.969028472900334 ], [ -76.509582519531193, -12.969028472900334 ], [ -76.509582519531193, -12.968471527099496 ], [ -76.509864807128849, -12.968471527099496 ], [ -76.509864807128849, -12.967915534973088 ], [ -76.510139465331974, -12.967915534973088 ], [ -76.510139465331974, -12.967638015747013 ], [ -76.510414123535099, -12.967638015747013 ], [ -76.510414123535099, -12.967362403869629 ], [ -76.510696411132812, -12.967362403869629 ], [ -76.510696411132812, -12.96680641174305 ], [ -76.510971069335938, -12.96680641174305 ], [ -76.510971069335938, -12.966527938842773 ], [ -76.511253356933594, -12.966527938842773 ], [ -76.511253356933594, -12.966250419616642 ], [ -76.511528015136719, -12.966250419616642 ], [ -76.511528015136719, -12.965694427490178 ], [ -76.511802673339844, -12.965694427490178 ], [ -76.511802673339844, -12.965415954589787 ], [ -76.5120849609375, -12.965417861938477 ], [ -76.5120849609375, -12.965138435363713 ], [ -76.512359619140625, -12.965138435363713 ], [ -76.512359619140625, -12.964584350585938 ], [ -76.512641906738168, -12.964584350585938 ], [ -76.512641906738168, -12.964305877685547 ], [ -76.512916564941349, -12.964305877685547 ], [ -76.512916564941349, -12.963749885559082 ], [ -76.513191223144474, -12.963749885559082 ], [ -76.513191223144474, -12.963472366333008 ], [ -76.513748168945312, -12.963472366333008 ], [ -76.513748168945312, -12.963195800781193 ], [ -76.514030456542969, -12.963195800781193 ], [ -76.514030456542969, -12.96208381652832 ], [ -76.513473510742131, -12.96208381652832 ], [ -76.513473510742131, -12.961806297302246 ], [ -76.512916564941349, -12.961806297302246 ], [ -76.512916564941349, -12.961527824401855 ], [ -76.512641906738168, -12.961527824401855 ], [ -76.512641906738168, -12.959583282470646 ], [ -76.512916564941349, -12.959583282470646 ], [ -76.512916564941349, -12.959027290344181 ], [ -76.513191223144474, -12.959027290344181 ], [ -76.513191223144474, -12.958471298217717 ], [ -76.513748168945312, -12.958471298217717 ], [ -76.513748168945312, -12.958194732666016 ], [ -76.514030456542969, -12.958194732666016 ], [ -76.514030456542969, -12.957917213439941 ], [ -76.514579772949219, -12.957917213439941 ], [ -76.514579772949219, -12.957359313964844 ], [ -76.514862060546875, -12.957359313964844 ], [ -76.514862060546875, -12.956805229186955 ], [ -76.51513671875, -12.956805229186955 ], [ -76.51513671875, -12.95624923706049 ], [ -76.515419006347656, -12.95624923706049 ], [ -76.515419006347656, -12.955693244934025 ], [ -76.515693664550668, -12.955695152282715 ], [ -76.515693664550668, -12.955416679382324 ], [ -76.51763916015625, -12.955416679382324 ], [ -76.51763916015625, -12.95513916015625 ], [ -76.518753051757812, -12.95513916015625 ], [ -76.518753051757812, -12.954860687255859 ], [ -76.519027709960881, -12.954860687255859 ], [ -76.519027709960881, -12.954583168029785 ], [ -76.519584655761662, -12.954583168029785 ], [ -76.519584655761662, -12.954304695129395 ], [ -76.519859313964787, -12.954304695129395 ], [ -76.519859313964787, -12.954027175903207 ], [ -76.520141601562443, -12.954029083251953 ], [ -76.520141601562443, -12.95374870300293 ], [ -76.52069091796875, -12.95374870300293 ], [ -76.52069091796875, -12.953471183776799 ], [ -76.520416259765625, -12.953473091125488 ], [ -76.520416259765625, -12.953194618225098 ], [ -76.519027709960881, -12.953194618225098 ], [ -76.519027709960881, -12.95374870300293 ], [ -76.518470764160156, -12.95374870300293 ], [ -76.518470764160156, -12.954029083251953 ], [ -76.51763916015625, -12.954027175903207 ], [ -76.51763916015625, -12.954304695129395 ], [ -76.517082214355469, -12.954304695129395 ], [ -76.517082214355469, -12.954583168029785 ], [ -76.515693664550668, -12.954583168029785 ], [ -76.515693664550668, -12.954304695129395 ], [ -76.515419006347656, -12.954304695129395 ], [ -76.515419006347656, -12.954027175903207 ], [ -76.51513671875, -12.954029083251953 ], [ -76.51513671875, -12.953873634338322 ], [ -76.51513671875, -12.95374870300293 ], [ -76.514862060546875, -12.95374870300293 ], [ -76.514862060546875, -12.953471183776799 ], [ -76.514579772949219, -12.953473091125488 ], [ -76.514579772949219, -12.953194618225098 ], [ -76.514305114746094, -12.953194618225098 ], [ -76.514305114746094, -12.952917098999023 ], [ -76.514030456542969, -12.952917098999023 ], [ -76.514030456542969, -12.952638626098633 ], [ -76.513748168945312, -12.952638626098633 ], [ -76.513748168945312, -12.952082633972168 ], [ -76.513473510742131, -12.952082633972168 ], [ -76.513473510742131, -12.951805114746094 ], [ -76.513191223144474, -12.951805114746094 ], [ -76.513191223144474, -12.951526641845703 ], [ -76.512916564941349, -12.951526641845703 ], [ -76.512916564941349, -12.951249122619629 ], [ -76.512641906738168, -12.951251029968205 ], [ -76.512641906738168, -12.950972557067814 ], [ -76.512359619140625, -12.950972557067814 ], [ -76.512359619140625, -12.950693130493164 ], [ -76.5120849609375, -12.950695037841797 ], [ -76.5120849609375, -12.950416564941349 ], [ -76.511802673339844, -12.950416564941349 ], [ -76.511802673339844, -12.950275421142578 ], [ -76.511802673339844, -12.950139045715332 ], [ -76.511528015136719, -12.950139045715332 ], [ -76.511528015136719, -12.949860572814941 ], [ -76.511253356933594, -12.949860572814941 ], [ -76.511253356933594, -12.949304580688477 ], [ -76.510971069335938, -12.949304580688477 ], [ -76.510971069335938, -12.948751449584904 ], [ -76.510231018066349, -12.948751449584904 ], [ -76.509307861328125, -12.948751449584904 ], [ -76.509307861328125, -12.948470115661621 ], [ -76.509025573730469, -12.948472976684513 ], [ -76.509025573730469, -12.948312759399414 ], [ -76.509025573730469, -12.948195457458439 ], [ -76.508613586425724, -12.948195457458439 ], [ -76.508468627929688, -12.948195457458439 ], [ -76.508468627929688, -12.947916984558049 ], [ -76.508193969726562, -12.947916984558049 ], [ -76.508193969726562, -12.947637557983285 ], [ -76.507637023925781, -12.947637557983285 ], [ -76.507637023925781, -12.947360038757267 ], [ -76.507362365722599, -12.947360038757267 ], [ -76.507362365722599, -12.947081565856877 ], [ -76.506805419921818, -12.947081565856877 ], [ -76.506805419921818, -12.946804046630803 ], [ -76.506530761718693, -12.946804046630803 ], [ -76.506530761718693, -12.945137977600098 ], [ -76.506248474121037, -12.945137977600098 ], [ -76.506248474121037, -12.943194389343262 ], [ -76.506530761718693, -12.943194389343262 ], [ -76.506530761718693, -12.942640304565373 ], [ -76.506805419921818, -12.942638397216797 ], [ -76.506805419921818, -12.941249847412109 ], [ -76.507080078124943, -12.941249847412109 ], [ -76.507080078124943, -12.939688682556152 ], [ -76.507080078124943, -12.939027786254826 ], [ -76.506805419921818, -12.939027786254826 ], [ -76.506805419921818, -12.937806129455566 ], [ -76.506805419921818, -12.937082290649414 ], [ -76.506530761718693, -12.93708419799799 ], [ -76.506530761718693, -12.935695648193359 ], [ -76.506805419921818, -12.935695648193359 ], [ -76.506805419921818, -12.93458366394043 ], [ -76.506637573242188, -12.93458366394043 ], [ -76.506530761718693, -12.93458366394043 ], [ -76.506530761718693, -12.933975219726562 ], [ -76.506530761718693, -12.933747291564885 ], [ -76.506248474121037, -12.933747291564885 ], [ -76.506248474121037, -12.932637214660531 ], [ -76.505973815917969, -12.932639122009277 ], [ -76.505973815917969, -12.932099342346191 ], [ -76.505973815917969, -12.931953430175781 ], [ -76.505973815917969, -12.930561065673828 ], [ -76.505973815917969, -12.930415153503418 ], [ -76.505691528320312, -12.930415153503418 ], [ -76.505691528320312, -12.927083015441838 ], [ -76.505416870117188, -12.927083015441838 ], [ -76.505416870117188, -12.925531387329102 ], [ -76.505416870117188, -12.925139427185002 ], [ -76.505691528320312, -12.925139427185002 ], [ -76.505691528320312, -12.924583435058537 ], [ -76.505416870117188, -12.924583435058537 ], [ -76.505416870117188, -12.924214363098088 ], [ -76.505416870117188, -12.924027442932072 ], [ -76.505554199218693, -12.924027442932072 ], [ -76.505691528320312, -12.924027442932072 ], [ -76.505691528320312, -12.923851013183594 ], [ -76.505691528320312, -12.923473358154297 ], [ -76.505912780761719, -12.923473358154297 ], [ -76.505973815917969, -12.922917366027832 ], [ -76.506248474121037, -12.922917366027832 ], [ -76.506248474121037, -12.922373771667424 ], [ -76.506248474121037, -12.920415878295898 ], [ -76.506530761718693, -12.920415878295898 ], [ -76.506530761718693, -12.918581962585449 ], [ -76.506530761718693, -12.918193817138615 ], [ -76.506805419921818, -12.918193817138615 ], [ -76.506805419921818, -12.917916297912541 ], [ -76.507919311523438, -12.917916297912541 ], [ -76.507919311523438, -12.918193817138615 ], [ -76.508193969726562, -12.918193817138615 ], [ -76.508193969726562, -12.91763782501215 ], [ -76.508468627929688, -12.91763782501215 ], [ -76.508468627929688, -12.916804313659668 ], [ -76.508750915527344, -12.916806221008187 ], [ -76.508750915527344, -12.915971755981332 ], [ -76.509025573730469, -12.915971755981332 ], [ -76.509025573730469, -12.915415763854924 ], [ -76.508750915527344, -12.915415763854924 ], [ -76.508750915527344, -12.914584159851074 ], [ -76.509025573730469, -12.914584159851074 ], [ -76.509025573730469, -12.914028167724609 ], [ -76.509307861328125, -12.914028167724609 ], [ -76.509307861328125, -12.913472175598031 ], [ -76.509582519531193, -12.913472175598031 ], [ -76.509582519531193, -12.913193702697754 ], [ -76.509864807128849, -12.913193702697754 ], [ -76.509864807128849, -12.912637710571175 ], [ -76.510139465331974, -12.912637710571175 ], [ -76.510139465331974, -12.912360191345158 ], [ -76.510414123535099, -12.912362098693848 ], [ -76.510414123535099, -12.912083625793457 ], [ -76.510139465331974, -12.912083625793457 ], [ -76.510139465331974, -12.911804199218693 ], [ -76.510414123535099, -12.911806106567383 ], [ -76.510414123535099, -12.911527633666992 ], [ -76.510696411132812, -12.911527633666992 ], [ -76.510696411132812, -12.910971641540527 ], [ -76.510971069335938, -12.910971641540527 ], [ -76.510971069335938, -12.910694122314453 ], [ -76.511253356933594, -12.910694122314453 ], [ -76.511253356933594, -12.909861564636174 ], [ -76.510696411132812, -12.909861564636174 ], [ -76.510696411132812, -12.909581184387207 ], [ -76.510414123535099, -12.909581184387207 ], [ -76.510414123535099, -12.909028053283691 ], [ -76.510139465331974, -12.909028053283691 ], [ -76.510139465331974, -12.907915115356445 ], [ -76.510414123535099, -12.907915115356445 ], [ -76.510414123535099, -12.90735912322998 ], [ -76.510696411132812, -12.907361984252873 ], [ -76.510696411132812, -12.907084465026855 ], [ -76.510971069335938, -12.907084465026855 ], [ -76.510971069335938, -12.906805038452092 ], [ -76.511253356933594, -12.906805038452092 ], [ -76.511253356933594, -12.906526565551701 ], [ -76.511528015136719, -12.906526565551701 ], [ -76.511528015136719, -12.906249046325627 ], [ -76.511802673339844, -12.906249046325627 ], [ -76.511802673339844, -12.905974388122502 ], [ -76.5120849609375, -12.905974388122502 ], [ -76.5120849609375, -12.905693054199162 ], [ -76.512359619140625, -12.905693054199162 ], [ -76.512359619140625, -12.905417442321777 ], [ -76.512641906738168, -12.905417442321777 ], [ -76.512641906738168, -12.904861450195199 ], [ -76.512916564941349, -12.904861450195199 ], [ -76.512916564941349, -12.903470993041935 ], [ -76.512641906738168, -12.903470993041935 ], [ -76.512641906738168, -12.903195381164551 ], [ -76.512359619140625, -12.903195381164551 ], [ -76.512359619140625, -12.902639389038086 ], [ -76.5120849609375, -12.902639389038086 ], [ -76.5120849609375, -12.902083396911621 ], [ -76.511528015136719, -12.902083396911621 ], [ -76.511528015136719, -12.90180492401123 ], [ -76.510971069335938, -12.90180492401123 ], [ -76.510971069335938, -12.901248931884766 ], [ -76.510696411132812, -12.901248931884766 ], [ -76.510696411132812, -12.900694847106934 ], [ -76.510971069335938, -12.900694847106934 ], [ -76.510971069335938, -12.899582862854004 ], [ -76.511253356933594, -12.899582862854004 ], [ -76.511253356933594, -12.898751258850041 ], [ -76.511528015136719, -12.898751258850041 ], [ -76.511528015136719, -12.89847278594965 ], [ -76.511802673339844, -12.89847278594965 ], [ -76.511802673339844, -12.898195266723633 ], [ -76.5120849609375, -12.898195266723633 ], [ -76.5120849609375, -12.897916793823185 ], [ -76.512359619140625, -12.897916793823185 ], [ -76.512359619140625, -12.897639274597168 ], [ -76.512641906738168, -12.897639274597168 ], [ -76.512641906738168, -12.897083282470703 ], [ -76.512916564941349, -12.897083282470703 ], [ -76.512916564941349, -12.896529197692814 ], [ -76.513191223144474, -12.896527290344238 ], [ -76.513191223144474, -12.895417213439885 ], [ -76.512916564941349, -12.895419120788574 ], [ -76.512916564941349, -12.894304275512638 ], [ -76.513191223144474, -12.894304275512638 ], [ -76.513191223144474, -12.894028663635254 ], [ -76.513473510742131, -12.894028663635254 ], [ -76.513473510742131, -12.893748283386174 ], [ -76.513748168945312, -12.893751144409066 ], [ -76.513748168945312, -12.893472671508789 ], [ -76.514030456542969, -12.893472671508789 ], [ -76.514030456542969, -12.893192291259709 ], [ -76.513748168945312, -12.893194198608398 ], [ -76.513748168945312, -12.892915725708008 ], [ -76.514030456542969, -12.892915725708008 ], [ -76.514030456542969, -12.891526222228947 ], [ -76.514305114746094, -12.891528129577637 ], [ -76.514305114746094, -12.891249656677246 ], [ -76.514579772949219, -12.891249656677246 ], [ -76.514579772949219, -12.890693664550781 ], [ -76.514862060546875, -12.890693664550781 ], [ -76.514862060546875, -12.889027595519963 ], [ -76.51513671875, -12.889027595519963 ], [ -76.51513671875, -12.888471603393498 ], [ -76.516525268554631, -12.888471603393498 ], [ -76.516525268554631, -12.88819408416748 ], [ -76.517082214355469, -12.88819408416748 ], [ -76.517082214355469, -12.887361526489144 ], [ -76.517364501953125, -12.887361526489144 ], [ -76.517364501953125, -12.887082099914551 ], [ -76.517082214355469, -12.887084007263127 ], [ -76.517082214355469, -12.886249542236271 ], [ -76.516807556152287, -12.886249542236271 ], [ -76.516807556152287, -12.885972023010197 ], [ -76.516525268554631, -12.885972023010197 ], [ -76.516525268554631, -12.885693550109806 ], [ -76.516250610351506, -12.885693550109806 ], [ -76.516250610351506, -12.885416030883789 ], [ -76.515975952148381, -12.885416030883789 ], [ -76.515975952148381, -12.884860038757324 ], [ -76.516250610351506, -12.884861946105843 ], [ -76.516250610351506, -12.884584426879826 ], [ -76.516525268554631, -12.884584426879826 ], [ -76.516525268554631, -12.883193969726506 ], [ -76.515975952148381, -12.883193969726506 ], [ -76.515975952148381, -12.882916450500431 ], [ -76.515419006347656, -12.882916450500431 ], [ -76.515419006347656, -12.881527900695801 ], [ -76.515693664550668, -12.881527900695801 ], [ -76.515693664550668, -12.88097095489502 ], [ -76.515975952148381, -12.88097095489502 ], [ -76.515975952148381, -12.880693435668945 ], [ -76.516250610351506, -12.880693435668945 ], [ -76.516250610351506, -12.88014030456543 ], [ -76.516525268554631, -12.880137443542367 ], [ -76.516525268554631, -12.879027366638184 ], [ -76.516250610351506, -12.879027366638184 ], [ -76.516250610351506, -12.878471374511719 ], [ -76.516525268554631, -12.878471374511719 ], [ -76.516525268554631, -12.878194808959904 ], [ -76.516807556152287, -12.878194808959904 ], [ -76.516807556152287, -12.87791728973383 ], [ -76.517082214355469, -12.87791728973383 ], [ -76.517082214355469, -12.877638816833439 ], [ -76.516807556152287, -12.877638816833439 ], [ -76.516807556152287, -12.876805305480957 ], [ -76.516525268554631, -12.876805305480957 ], [ -76.516525268554631, -12.87652683258051 ], [ -76.516807556152287, -12.87652683258051 ], [ -76.516807556152287, -12.876249313354492 ], [ -76.517364501953125, -12.876251220703011 ], [ -76.517364501953125, -12.875970840454102 ], [ -76.517082214355469, -12.875970840454102 ], [ -76.517082214355469, -12.875139236450138 ], [ -76.517364501953125, -12.875139236450138 ], [ -76.517364501953125, -12.874860763549748 ], [ -76.517913818359375, -12.874860763549748 ], [ -76.517913818359375, -12.874304771423283 ], [ -76.518196105957031, -12.874304771423283 ], [ -76.518196105957031, -12.874029159545898 ], [ -76.517913818359375, -12.874029159545898 ], [ -76.517913818359375, -12.873471260070801 ], [ -76.518196105957031, -12.873471260070801 ], [ -76.518196105957031, -12.871805191039982 ], [ -76.518470764160156, -12.871805191039982 ], [ -76.518470764160156, -12.870972633361816 ], [ -76.518753051757812, -12.870972633361816 ], [ -76.518753051757812, -12.869860649108887 ], [ -76.518470764160156, -12.869860649108887 ], [ -76.518470764160156, -12.868470191955566 ], [ -76.518196105957031, -12.868473052978516 ], [ -76.518196105957031, -12.868194580078125 ], [ -76.518470764160156, -12.868194580078125 ], [ -76.518470764160156, -12.86736011505127 ], [ -76.518753051757812, -12.86736011505127 ], [ -76.518753051757812, -12.867081642150879 ], [ -76.518470764160156, -12.867081642150879 ], [ -76.518470764160156, -12.86652946472168 ], [ -76.518196105957031, -12.86652946472168 ], [ -76.518196105957031, -12.86624813079834 ], [ -76.517913818359375, -12.866250991821232 ], [ -76.517913818359375, -12.865971565246525 ], [ -76.517364501953125, -12.865971565246525 ], [ -76.517364501953125, -12.865692138671875 ], [ -76.517082214355469, -12.865692138671875 ], [ -76.517082214355469, -12.864582061767521 ], [ -76.516807556152287, -12.864582061767521 ], [ -76.516807556152287, -12.864306449890023 ], [ -76.516525268554631, -12.864306449890023 ], [ -76.516525268554631, -12.864026069641113 ], [ -76.516250610351506, -12.864026069641113 ], [ -76.516250610351506, -12.863470077514648 ], [ -76.515975952148381, -12.863471984863168 ], [ -76.515975952148381, -12.86319446563715 ], [ -76.515693664550668, -12.86319446563715 ], [ -76.515693664550668, -12.86291599273676 ], [ -76.515419006347656, -12.86291599273676 ], [ -76.515419006347656, -12.862360000610295 ], [ -76.51513671875, -12.862360000610295 ], [ -76.51513671875, -12.86180400848383 ], [ -76.514976501464844, -12.86180591583252 ], [ -76.514862060546875, -12.86180591583252 ], [ -76.514862060546875, -12.86069393157959 ], [ -76.514579772949219, -12.86069393157959 ], [ -76.514579772949219, -12.859862327575684 ], [ -76.514823913574162, -12.859862327575684 ], [ -76.516250610351506, -12.859862327575684 ], [ -76.516250610351506, -12.859306335449219 ], [ -76.516525268554631, -12.859306335449219 ], [ -76.516525268554631, -12.858750343322754 ], [ -76.516807556152287, -12.858750343322754 ], [ -76.516807556152287, -12.858471870422363 ], [ -76.517082214355469, -12.858471870422363 ], [ -76.517082214355469, -12.858194351196289 ], [ -76.517364501953125, -12.858194351196289 ], [ -76.517364501953125, -12.857915878295898 ], [ -76.51763916015625, -12.857915878295898 ], [ -76.51763916015625, -12.857640266418457 ], [ -76.517913818359375, -12.857640266418457 ], [ -76.517913818359375, -12.857084274291992 ], [ -76.518196105957031, -12.857084274291992 ], [ -76.518196105957031, -12.856528282165527 ], [ -76.518470764160156, -12.856528282165527 ], [ -76.518470764160156, -12.855972290039062 ], [ -76.518753051757812, -12.855972290039062 ], [ -76.518753051757812, -12.855416297912598 ], [ -76.519027709960881, -12.855416297912598 ], [ -76.519027709960881, -12.854583740234318 ], [ -76.519302368164006, -12.854583740234318 ], [ -76.519302368164006, -12.853747367858887 ], [ -76.519584655761662, -12.853747367858887 ], [ -76.519584655761662, -12.852637290954533 ], [ -76.519859313964787, -12.852640151977482 ], [ -76.519859313964787, -12.852083206176758 ], [ -76.519584655761662, -12.852083206176758 ], [ -76.519584655761662, -12.851804733276367 ], [ -76.519302368164006, -12.851804733276367 ], [ -76.519302368164006, -12.851527214050179 ], [ -76.519027709960881, -12.851527214050179 ], [ -76.519027709960881, -12.851248741149902 ], [ -76.518905639648381, -12.851248741149902 ], [ -76.518753051757812, -12.851248741149902 ], [ -76.518753051757812, -12.850971221923771 ], [ -76.519302368164006, -12.850971221923771 ], [ -76.519302368164006, -12.85069465637207 ], [ -76.519584655761662, -12.85069465637207 ], [ -76.519584655761662, -12.850415229797306 ], [ -76.519859313964787, -12.850415229797306 ], [ -76.519859313964787, -12.849859237670842 ], [ -76.520141601562443, -12.849861145019531 ], [ -76.520141601562443, -12.849582672119141 ], [ -76.520416259765625, -12.849582672119141 ], [ -76.520416259765625, -12.849303245544377 ], [ -76.52069091796875, -12.849303245544377 ], [ -76.52069091796875, -12.848749160766602 ], [ -76.520973205566406, -12.848749160766602 ], [ -76.520973205566406, -12.848472595214787 ], [ -76.521247863769531, -12.848472595214787 ], [ -76.521247863769531, -12.848193168640023 ], [ -76.521530151367188, -12.848193168640023 ], [ -76.521530151367188, -12.847639083862305 ], [ -76.521804809570312, -12.847639083862305 ], [ -76.521804809570312, -12.847360610961914 ], [ -76.522087097167969, -12.847360610961914 ], [ -76.522087097167969, -12.84708309173584 ], [ -76.522361755371037, -12.84708309173584 ], [ -76.522361755371037, -12.846527099609375 ], [ -76.522636413574162, -12.846529006957951 ], [ -76.522636413574162, -12.846248626708984 ], [ -76.522918701171818, -12.846248626708984 ], [ -76.522918701171818, -12.84597110748291 ], [ -76.523193359374943, -12.84597110748291 ], [ -76.523193359374943, -12.845417022705021 ], [ -76.523475646972656, -12.845417022705021 ], [ -76.523475646972656, -12.845138549804631 ], [ -76.523750305175781, -12.845138549804631 ], [ -76.523750305175781, -12.844861030578613 ], [ -76.524024963378906, -12.844861030578613 ], [ -76.524024963378906, -12.844582557678166 ], [ -76.524581909179688, -12.844582557678166 ], [ -76.524581909179688, -12.844305038452148 ], [ -76.524864196777344, -12.844306945800668 ], [ -76.524864196777344, -12.844026565551758 ], [ -76.525138854980469, -12.844026565551758 ], [ -76.525138854980469, -12.843749046325684 ], [ -76.525413513183537, -12.84375095367426 ], [ -76.525413513183537, -12.843473434448185 ], [ -76.525970458984318, -12.843473434448185 ], [ -76.525970458984318, -12.843193054199219 ], [ -76.526252746581974, -12.843194961547795 ], [ -76.526252746581974, -12.842917442321721 ], [ -76.526527404785156, -12.842917442321721 ], [ -76.526527404785156, -12.84263896942133 ], [ -76.526802062988281, -12.84263896942133 ], [ -76.526802062988281, -12.842361450195256 ], [ -76.527084350585938, -12.842361450195256 ], [ -76.527084350585938, -12.842082977294865 ], [ -76.527641296386719, -12.842082977294865 ], [ -76.527641296386719, -12.841805458068848 ], [ -76.527915954589844, -12.841805458068848 ], [ -76.527915954589844, -12.841526031494084 ], [ -76.528190612792969, -12.84152889251709 ], [ -76.5281982421875, -12.841251373290902 ], [ -76.528472900390511, -12.841251373290902 ], [ -76.528472900390511, -12.840970039367619 ], [ -76.529029846191349, -12.840972900390625 ], [ -76.529029846191349, -12.840695381164494 ], [ -76.529304504394474, -12.840695381164494 ], [ -76.529304504394474, -12.840416908264046 ], [ -76.529586791992131, -12.840416908264046 ], [ -76.529586791992131, -12.84013843536377 ], [ -76.529861450195312, -12.84013843536377 ], [ -76.529861450195312, -12.839859962463379 ], [ -76.530136108398438, -12.839859962463379 ], [ -76.530136108398438, -12.839582443237191 ], [ -76.530693054199219, -12.839582443237191 ], [ -76.530693054199219, -12.839306831359863 ], [ -76.530975341796875, -12.839306831359863 ], [ -76.530975341796875, -12.839029312133789 ], [ -76.53125, -12.839029312133789 ], [ -76.53125, -12.838749885559082 ], [ -76.531524658203011, -12.838749885559082 ], [ -76.531524658203011, -12.838472366333008 ], [ -76.532081604003849, -12.838472366333008 ], [ -76.532081604003849, -12.838193893432617 ], [ -76.532363891601506, -12.838193893432617 ], [ -76.532363891601506, -12.837916374206543 ], [ -76.532638549804631, -12.837916374206543 ], [ -76.532638549804631, -12.837637901306152 ], [ -76.532913208007812, -12.837637901306152 ], [ -76.532913208007812, -12.837360382080078 ], [ -76.533195495605469, -12.837360382080078 ], [ -76.533195495605469, -12.837081909179688 ], [ -76.53375244140625, -12.837081909179688 ], [ -76.53375244140625, -12.836806297302189 ], [ -76.534027099609375, -12.836806297302189 ], [ -76.534027099609375, -12.836527824401799 ], [ -76.5343017578125, -12.836527824401799 ], [ -76.5343017578125, -12.836250305175781 ], [ -76.534584045410156, -12.836250305175781 ], [ -76.534584045410156, -12.835971832275334 ], [ -76.534858703613224, -12.835971832275334 ], [ -76.534858703613224, -12.835694313049316 ], [ -76.535415649414006, -12.835694313049316 ], [ -76.535415649414006, -12.835415840148926 ], [ -76.535697937011662, -12.835415840148926 ], [ -76.535697937011662, -12.835140228271428 ], [ -76.535972595214787, -12.835140228271428 ], [ -76.535972595214787, -12.834859848022461 ], [ -76.536247253417969, -12.834859848022461 ], [ -76.536247253417969, -12.834584236144963 ], [ -76.536529541015625, -12.834584236144963 ], [ -76.536529541015625, -12.834305763244572 ], [ -76.537086486816406, -12.834305763244572 ], [ -76.537086486816406, -12.834028244018498 ], [ -76.537361145019531, -12.834028244018498 ], [ -76.537361145019531, -12.833749771118107 ], [ -76.537635803222656, -12.833749771118107 ], [ -76.537635803222656, -12.833472251892033 ], [ -76.537918090820312, -12.833472251892033 ], [ -76.537918090820312, -12.833193778991642 ], [ -76.538192749023381, -12.833193778991642 ], [ -76.538192749023381, -12.832916259765625 ], [ -76.538749694824162, -12.832916259765625 ], [ -76.538749694824162, -12.832637786865178 ], [ -76.539024353027287, -12.832637786865178 ], [ -76.539024353027287, -12.83236026763916 ], [ -76.539306640625, -12.832362174987679 ], [ -76.539306640625, -12.832083702087402 ], [ -76.539863586425781, -12.832083702087402 ], [ -76.539863586425781, -12.831804275512695 ], [ -76.540138244628906, -12.831806182861271 ], [ -76.540138244628906, -12.831527709960824 ], [ -76.540695190429688, -12.831527709960824 ], [ -76.540695190429688, -12.831250190734806 ], [ -76.540969848632812, -12.831250190734806 ], [ -76.540969848632812, -12.830971717834416 ], [ -76.541526794433537, -12.830971717834416 ], [ -76.541526794433537, -12.830694198608342 ], [ -76.541809082031193, -12.830694198608342 ], [ -76.541809082031193, -12.830415725707951 ], [ -76.5423583984375, -12.830415725707951 ], [ -76.5423583984375, -12.830140113830566 ], [ -76.542915344238281, -12.830140113830566 ], [ -76.542915344238281, -12.829859733581486 ], [ -76.543197631835938, -12.829859733581486 ], [ -76.543197631835938, -12.829584121704102 ], [ -76.543746948242188, -12.829584121704102 ], [ -76.543746948242188, -12.829305648803711 ], [ -76.544029235839844, -12.829305648803711 ], [ -76.544029235839844, -12.829028129577637 ], [ -76.544586181640568, -12.829028129577637 ], [ -76.544586181640568, -12.828749656677246 ], [ -76.544860839843693, -12.828749656677246 ], [ -76.544860839843693, -12.828469276428166 ], [ -76.545417785644474, -12.828472137451058 ], [ -76.545417785644474, -12.828193664550781 ], [ -76.545974731445312, -12.828193664550781 ], [ -76.545974731445312, -12.827915191650391 ], [ -76.546249389648438, -12.82791805267334 ], [ -76.546249389648438, -12.827639579772949 ], [ -76.546806335449219, -12.827639579772949 ], [ -76.546806335449219, -12.827359199523926 ], [ -76.54736328125, -12.827362060546875 ], [ -76.54736328125, -12.827083587646484 ], [ -76.547637939453068, -12.827083587646484 ], [ -76.547637939453068, -12.826803207397347 ], [ -76.548194885253849, -12.82680606842041 ], [ -76.548194885253849, -12.826526641845703 ], [ -76.548751831054631, -12.826526641845703 ], [ -76.548751831054631, -12.826249122619629 ], [ -76.549308776855469, -12.826249122619629 ], [ -76.549308776855469, -12.825974464416504 ], [ -76.549583435058594, -12.825974464416504 ], [ -76.549583435058594, -12.825693130493164 ], [ -76.550140380859375, -12.825693130493164 ], [ -76.550140380859375, -12.825418472290039 ], [ -76.550697326660156, -12.825418472290039 ], [ -76.550697326660156, -12.825137138366699 ], [ -76.550971984863224, -12.825139045715275 ], [ -76.550971984863224, -12.824860572814885 ], [ -76.551528930664006, -12.824860572814885 ], [ -76.551528930664006, -12.824581146240234 ], [ -76.552085876464844, -12.82458305358881 ], [ -76.552085876464844, -12.82430458068842 ], [ -76.552360534667969, -12.82430458068842 ], [ -76.552360534667969, -12.824027061462346 ], [ -76.55291748046875, -12.824027061462346 ], [ -76.55291748046875, -12.823748588561955 ], [ -76.553474426269531, -12.823748588561955 ], [ -76.553474426269531, -12.823471069335938 ], [ -76.554031372070199, -12.823471069335938 ], [ -76.554031372070199, -12.823195457458439 ], [ -76.554306030273381, -12.823195457458439 ], [ -76.554306030273381, -12.822915077209473 ], [ -76.554862976074162, -12.822916984557992 ], [ -76.554862976074162, -12.822639465331974 ], [ -76.555419921875, -12.822639465331974 ], [ -76.555419921875, -12.822359085083008 ], [ -76.555694580078125, -12.822360992431584 ], [ -76.555694580078125, -12.82208347320551 ], [ -76.556251525878906, -12.82208347320551 ], [ -76.556251525878906, -12.821805000305119 ], [ -76.556411743164006, -12.821805000305119 ], [ -76.557083129882699, -12.821805000305119 ], [ -76.557083129882699, -12.821526527404728 ], [ -76.557510375976562, -12.821526527404728 ], [ -76.557914733886662, -12.821526527404728 ], [ -76.557914733886662, -12.821249008178654 ], [ -76.5584716796875, -12.821249008178654 ], [ -76.5584716796875, -12.82097339630127 ], [ -76.558822631835938, -12.82097339630127 ], [ -76.559303283691406, -12.82097339630127 ], [ -76.559303283691406, -12.820438385009709 ], [ -76.559303283691406, -12.820138931274414 ], [ -76.559516906738281, -12.820138931274414 ], [ -76.559585571289062, -12.818751335144043 ], [ -76.559860229492188, -12.818751335144043 ], [ -76.559860229492188, -12.817083358764648 ], [ -76.560142517089844, -12.817083358764648 ], [ -76.560142517089844, -12.815138816833496 ], [ -76.560417175292912, -12.815138816833496 ], [ -76.560417175292912, -12.813472747802678 ], [ -76.560142517089844, -12.813472747802678 ], [ -76.560142517089844, -12.812359809875431 ], [ -76.559860229492188, -12.812359809875431 ], [ -76.559860229492188, -12.811249732971191 ], [ -76.560142517089844, -12.811249732971191 ], [ -76.560142517089844, -12.809415817260685 ], [ -76.560142517089844, -12.808748245239201 ], [ -76.560417175292912, -12.808750152587891 ], [ -76.560417175292912, -12.8084716796875 ], [ -76.560691833496037, -12.8084716796875 ], [ -76.560691833496037, -12.808194160461426 ], [ -76.560974121093693, -12.808194160461426 ], [ -76.560974121093693, -12.807915687561035 ], [ -76.561248779296818, -12.807915687561035 ], [ -76.561248779296818, -12.807638168334847 ], [ -76.561531066894474, -12.807638168334847 ], [ -76.561531066894474, -12.80735969543457 ], [ -76.561805725097656, -12.80735969543457 ], [ -76.561805725097656, -12.806805610656738 ], [ -76.562080383300781, -12.806805610656738 ], [ -76.562080383300781, -12.806528091430664 ], [ -76.562362670898438, -12.806528091430664 ], [ -76.562362670898438, -12.806249618530273 ], [ -76.562637329101562, -12.806249618530273 ], [ -76.562637329101562, -12.805972099304199 ], [ -76.562919616699219, -12.805972099304199 ], [ -76.562919616699219, -12.805693626403809 ], [ -76.563194274902344, -12.805693626403809 ], [ -76.563194274902344, -12.805416107177734 ], [ -76.563751220703068, -12.80541801452631 ], [ -76.563751220703068, -12.805137634277344 ], [ -76.564025878906193, -12.805137634277344 ], [ -76.564025878906193, -12.80486011505127 ], [ -76.564582824706974, -12.804862022399846 ], [ -76.564582824706974, -12.804583549499455 ], [ -76.564857482910156, -12.804583549499455 ], [ -76.564857482910156, -12.804306030273438 ], [ -76.565414428710938, -12.804306030273438 ], [ -76.565414428710938, -12.80402755737299 ], [ -76.565696716308594, -12.80402755737299 ], [ -76.565696716308594, -12.803750038146973 ], [ -76.566253662109375, -12.803750038146973 ], [ -76.566253662109375, -12.803471565246582 ], [ -76.5665283203125, -12.803471565246582 ], [ -76.5665283203125, -12.803194046020508 ], [ -76.567085266113224, -12.803194046020508 ], [ -76.567085266113224, -12.802915573120117 ], [ -76.567359924316349, -12.802915573120117 ], [ -76.567359924316349, -12.802638053894043 ], [ -76.567916870117188, -12.802639961242619 ], [ -76.567916870117188, -12.802362442016545 ], [ -76.568191528320312, -12.802362442016545 ], [ -76.568191528320312, -12.802081108093262 ], [ -76.568748474121094, -12.802083969116154 ], [ -76.568748474121094, -12.80180644989008 ], [ -76.56903076171875, -12.80180644989008 ], [ -76.56903076171875, -12.801527976989689 ], [ -76.569580078125, -12.801527976989689 ], [ -76.569580078125, -12.801250457763672 ], [ -76.569862365722543, -12.801250457763672 ], [ -76.569862365722543, -12.800971984863224 ], [ -76.570137023925724, -12.800971984863224 ], [ -76.570137023925724, -12.800692558288517 ], [ -76.570693969726506, -12.800692558288517 ], [ -76.570693969726506, -12.800415039062443 ], [ -76.570968627929688, -12.800417900085449 ], [ -76.570968627929688, -12.800136566162053 ], [ -76.571525573730469, -12.800136566162053 ], [ -76.571525573730469, -12.799859046935978 ], [ -76.571807861328125, -12.799861907958871 ], [ -76.571807861328125, -12.799584388732853 ], [ -76.57208251953125, -12.799584388732853 ], [ -76.57208251953125, -12.799304962158203 ], [ -76.572639465332031, -12.799304962158203 ], [ -76.572639465332031, -12.799027442932015 ], [ -76.572914123535043, -12.799027442932015 ], [ -76.572914123535043, -12.798748970031738 ], [ -76.573471069335881, -12.798748970031738 ], [ -76.573471069335881, -12.798471450805607 ], [ -76.573753356933537, -12.798471450805607 ], [ -76.573753356933537, -12.798195838928223 ], [ -76.574302673339844, -12.798195838928223 ], [ -76.574302673339844, -12.797917366027832 ], [ -76.5745849609375, -12.797917366027832 ], [ -76.5745849609375, -12.797636985778752 ], [ -76.575141906738281, -12.797638893127441 ], [ -76.575141906738281, -12.797361373901367 ], [ -76.575416564941406, -12.797361373901367 ], [ -76.575416564941406, -12.797080993652287 ], [ -76.575973510742188, -12.797082901000977 ], [ -76.575973510742188, -12.796805381774902 ], [ -76.576248168945256, -12.796805381774902 ], [ -76.576248168945256, -12.796526908874512 ], [ -76.576805114746037, -12.796526908874512 ], [ -76.576805114746037, -12.796251296997013 ], [ -76.577079772949162, -12.796251296997013 ], [ -76.577079772949162, -12.795970916748047 ], [ -76.577362060546818, -12.795970916748047 ], [ -76.577362060546818, -12.795695304870605 ], [ -76.577919006347656, -12.795695304870605 ], [ -76.577919006347656, -12.795416831970158 ], [ -76.578193664550781, -12.795416831970158 ], [ -76.578193664550781, -12.795139312744141 ], [ -76.578750610351562, -12.795139312744141 ], [ -76.578750610351562, -12.79486083984375 ], [ -76.579025268554688, -12.79486083984375 ], [ -76.579025268554688, -12.794583320617676 ], [ -76.579582214355412, -12.794583320617676 ], [ -76.579582214355412, -12.794304847717285 ], [ -76.579864501953068, -12.794304847717285 ], [ -76.579864501953068, -12.794027328491211 ], [ -76.580413818359318, -12.794027328491211 ], [ -76.580413818359318, -12.79374885559082 ], [ -76.580696105957031, -12.79374885559082 ], [ -76.580696105957031, -12.793473243713322 ], [ -76.581253051757812, -12.793473243713322 ], [ -76.581253051757812, -12.793194770812931 ], [ -76.581527709960938, -12.793194770812931 ], [ -76.581527709960938, -12.792917251586857 ], [ -76.582084655761719, -12.792917251586857 ], [ -76.582084655761719, -12.792638778686467 ], [ -76.582359313964844, -12.792638778686467 ], [ -76.582359313964844, -12.792361259460449 ], [ -76.582916259765568, -12.792361259460449 ], [ -76.582916259765568, -12.792082786560002 ], [ -76.583190917968693, -12.792082786560002 ], [ -76.583190917968693, -12.791805267333984 ], [ -76.583473205566349, -12.791805267333984 ], [ -76.583473205566349, -12.791526794433594 ], [ -76.584030151367188, -12.791526794433594 ], [ -76.584030151367188, -12.79124927520752 ], [ -76.584304809570312, -12.791251182556096 ], [ -76.584304809570312, -12.790970802307129 ], [ -76.584861755371094, -12.790970802307129 ], [ -76.584861755371094, -12.790693283081055 ], [ -76.585136413574219, -12.790695190429631 ], [ -76.585136413574219, -12.79041671752924 ], [ -76.585693359374886, -12.79041671752924 ], [ -76.585693359374886, -12.790139198303166 ], [ -76.585975646972599, -12.790139198303166 ], [ -76.585975646972599, -12.789860725402775 ], [ -76.586524963378849, -12.789860725402775 ], [ -76.586524963378849, -12.789580345153809 ], [ -76.586807250976506, -12.789583206176701 ], [ -76.586807250976506, -12.78930473327631 ], [ -76.587364196777344, -12.78930473327631 ], [ -76.587364196777344, -12.789029121398926 ], [ -76.587638854980469, -12.789029121398926 ], [ -76.587638854980469, -12.788750648498535 ], [ -76.58819580078125, -12.788750648498535 ], [ -76.58819580078125, -12.788473129272461 ], [ -76.588470458984375, -12.788473129272461 ], [ -76.588470458984375, -12.78819465637207 ], [ -76.588752746582031, -12.78819465637207 ], [ -76.588752746582031, -12.78791427612299 ], [ -76.589302062988224, -12.787917137145882 ], [ -76.589302062988224, -12.787638664245605 ], [ -76.589584350585881, -12.787638664245605 ], [ -76.589584350585881, -12.787358283996525 ], [ -76.590141296386662, -12.787361145019474 ], [ -76.590141296386662, -12.787084579467773 ], [ -76.590415954589844, -12.787084579467773 ], [ -76.590415954589844, -12.786802291870117 ], [ -76.590972900390625, -12.78680419921875 ], [ -76.590972900390625, -12.786528587341309 ], [ -76.59124755859375, -12.786528587341309 ], [ -76.59124755859375, -12.786248207092171 ], [ -76.591529846191406, -12.786251068115234 ], [ -76.591529846191406, -12.785972595214844 ], [ -76.592086791992188, -12.785972595214844 ], [ -76.592086791992188, -12.785692214965763 ], [ -76.592361450195256, -12.785694122314453 ], [ -76.592361450195256, -12.785415649414062 ], [ -76.592918395996037, -12.785415649414062 ], [ -76.592918395996037, -12.785138130187988 ], [ -76.593193054199162, -12.785138130187988 ], [ -76.593193054199162, -12.784863471984863 ], [ -76.593475341796875, -12.784859657287598 ], [ -76.593475341796875, -12.784582138061523 ], [ -76.594024658203125, -12.784582138061523 ], [ -76.594024658203125, -12.784305572509709 ], [ -76.594306945800781, -12.784305572509709 ], [ -76.594306945800781, -12.784026145935059 ], [ -76.594764709472656, -12.784028053283635 ], [ -76.594863891601562, -12.784028053283635 ], [ -76.594863891601562, -12.783749580383244 ], [ -76.595123291015568, -12.783749580383244 ], [ -76.595138549804688, -12.783470153808594 ], [ -76.595481872558537, -12.78347206115717 ], [ -76.595695495605412, -12.78347206115717 ], [ -76.595695495605412, -12.78330135345459 ], [ -76.595695495605412, -12.783193588256779 ], [ -76.595832824707031, -12.783193588256779 ], [ -76.595970153808537, -12.783193588256779 ], [ -76.595970153808537, -12.783088684082031 ], [ -76.595970153808537, -12.782916069030762 ], [ -76.596252441406193, -12.782916069030762 ], [ -76.596252441406193, -12.782637596130314 ], [ -76.596549987792912, -12.782637596130314 ], [ -76.5968017578125, -12.782637596130314 ], [ -76.5968017578125, -12.782463073730469 ], [ -76.596855163574219, -12.782409667968636 ], [ -76.597084045410156, -12.782360076904297 ], [ -76.597084045410156, -12.782220840454102 ], [ -76.597084045410156, -12.782084465026799 ], [ -76.597259521484375, -12.782084465026799 ], [ -76.597640991210938, -12.782084465026799 ], [ -76.597640991210938, -12.781804084777832 ], [ -76.597915649414062, -12.781805992126408 ], [ -76.597915649414062, -12.781528472900334 ], [ -76.598747253417912, -12.781528472900334 ], [ -76.598747253417912, -12.78125 ], [ -76.599304199218693, -12.78125 ], [ -76.599304199218693, -12.780971527099553 ], [ -76.599861145019531, -12.780971527099553 ], [ -76.599861145019531, -12.780694007873478 ], [ -76.600418090820312, -12.780694007873478 ], [ -76.600418090820312, -12.780415534973088 ], [ -76.600975036621094, -12.780415534973088 ], [ -76.600975036621094, -12.780226707458496 ], [ -76.600975036621094, -12.780138015747013 ], [ -76.60152435302723, -12.780138015747013 ], [ -76.60152435302723, -12.779862403869515 ], [ -76.602081298828068, -12.779862403869515 ], [ -76.602081298828068, -12.779582023620605 ], [ -76.602638244628849, -12.779583930969238 ], [ -76.602638244628849, -12.779306411743107 ], [ -76.603195190429688, -12.779306411743107 ], [ -76.603195190429688, -12.77902793884266 ], [ -76.603752136230469, -12.77902793884266 ], [ -76.603752136230469, -12.778750419616642 ], [ -76.60430908203125, -12.778750419616642 ], [ -76.60430908203125, -12.778471946716252 ], [ -76.604583740234375, -12.778471946716252 ], [ -76.604583740234375, -12.778194427490178 ], [ -76.605140686035099, -12.778194427490178 ], [ -76.605140686035099, -12.777915954589787 ], [ -76.607238769531193, -12.777915954589787 ], [ -76.60736083984375, -12.777915954589787 ], [ -76.60736083984375, -12.777638435363713 ], [ -76.607635498046875, -12.777638435363713 ], [ -76.607635498046875, -12.777084350585938 ], [ -76.607917785644531, -12.777084350585938 ], [ -76.607917785644531, -12.776528358459473 ], [ -76.608192443847599, -12.776528358459473 ], [ -76.608192443847599, -12.776249885559082 ], [ -76.608474731445256, -12.776249885559082 ], [ -76.608474731445256, -12.77569580078125 ], [ -76.608749389648381, -12.77569580078125 ], [ -76.608749389648381, -12.775139808654785 ], [ -76.609024047851506, -12.775139808654785 ], [ -76.609024047851506, -12.77458381652832 ], [ -76.609306335449219, -12.77458381652832 ], [ -76.609306335449219, -12.774027824401855 ], [ -76.609580993652344, -12.774027824401855 ], [ -76.609580993652344, -12.772917747497502 ], [ -76.60986328125, -12.772917747497502 ], [ -76.60986328125, -12.772083282470646 ], [ -76.610137939453125, -12.772083282470646 ], [ -76.610137939453125, -12.770971298217773 ], [ -76.610420227050781, -12.770971298217773 ], [ -76.610420227050781, -12.770415306091309 ], [ -76.610694885253906, -12.770417213439828 ], [ -76.610694885253906, -12.769859313964844 ], [ -76.610969543457031, -12.76986122131342 ], [ -76.610969543457031, -12.769638061523438 ], [ -76.610969543457031, -12.769305229186955 ], [ -76.611076354980469, -12.769305229186955 ], [ -76.611251831054574, -12.769305229186955 ], [ -76.611251831054574, -12.768960952758789 ], [ -76.611251831054574, -12.76874923706049 ], [ -76.611404418945312, -12.76874923706049 ], [ -76.611526489257756, -12.76874923706049 ], [ -76.611526489257756, -12.768577575683537 ], [ -76.611526489257756, -12.768193244934025 ], [ -76.611808776855412, -12.768195152282715 ], [ -76.611808776855412, -12.767916679382324 ], [ -76.612083435058537, -12.767916679382324 ], [ -76.612083435058537, -12.767801284790039 ], [ -76.612083435058537, -12.767360687255859 ], [ -76.612358093261719, -12.767360687255859 ], [ -76.612358093261719, -12.767083168029671 ], [ -76.612594604492188, -12.767083168029671 ], [ -76.612640380859375, -12.766527175903263 ], [ -76.6129150390625, -12.766529083251953 ], [ -76.6129150390625, -12.766248703002816 ], [ -76.613197326660156, -12.766248703002816 ], [ -76.613197326660156, -12.765971183776799 ], [ -76.613471984863281, -12.765971183776799 ], [ -76.613471984863281, -12.765417098999023 ], [ -76.613746643066406, -12.765417098999023 ], [ -76.613746643066406, -12.765138626098633 ], [ -76.614028930664062, -12.765138626098633 ], [ -76.614028930664062, -12.764582633972168 ], [ -76.614303588867074, -12.764582633972168 ], [ -76.614303588867074, -12.764305114746094 ], [ -76.614585876464787, -12.764305114746094 ], [ -76.614585876464787, -12.763749122619629 ], [ -76.614860534667912, -12.763751029968262 ], [ -76.614860534667912, -12.763472557067814 ], [ -76.615135192871037, -12.763472557067814 ], [ -76.615135192871037, -12.762916564941406 ], [ -76.615417480468693, -12.762916564941406 ], [ -76.615417480468693, -12.762639045715332 ], [ -76.615692138671875, -12.762639045715332 ], [ -76.615692138671875, -12.762083053588867 ], [ -76.615974426269531, -12.762083053588867 ], [ -76.615974426269531, -12.761804580688477 ], [ -76.616249084472656, -12.761804580688477 ], [ -76.616249084472656, -12.761527061462402 ], [ -76.616531372070312, -12.761527061462402 ], [ -76.616531372070312, -12.760970115661621 ], [ -76.616806030273438, -12.760972976684513 ], [ -76.616806030273438, -12.760695457458496 ], [ -76.617080688476562, -12.760695457458496 ], [ -76.617080688476562, -12.760139465332031 ], [ -76.617362976074219, -12.760139465332031 ], [ -76.617362976074219, -12.759860038757267 ], [ -76.617637634277287, -12.759860038757267 ], [ -76.617637634277287, -12.759304046630803 ], [ -76.617919921874943, -12.759306907653695 ], [ -76.617919921874943, -12.759029388427678 ], [ -76.618194580078068, -12.759029388427678 ], [ -76.618194580078068, -12.758748054504338 ], [ -76.618469238281193, -12.758748054504338 ], [ -76.618469238281193, -12.75819206237793 ], [ -76.618751525878849, -12.758193969726562 ], [ -76.618751525878849, -12.757916450500431 ], [ -76.619026184082031, -12.757916450500431 ], [ -76.619026184082031, -12.757637977599984 ], [ -76.619308471679688, -12.757637977599984 ], [ -76.619308471679688, -12.757081985473576 ], [ -76.619583129882812, -12.757081985473576 ], [ -76.619583129882812, -12.756806373596191 ], [ -76.619857788085938, -12.756806373596191 ], [ -76.619857788085938, -12.756525993347111 ], [ -76.620140075683594, -12.756527900695801 ], [ -76.620140075683594, -12.756250381469727 ], [ -76.620414733886719, -12.756250381469727 ], [ -76.620414733886719, -12.755970001220646 ], [ -76.620697021484375, -12.755971908569336 ], [ -76.620697021484375, -12.755694389343262 ], [ -76.620971679687443, -12.755694389343262 ], [ -76.620971679687443, -12.755415916442871 ], [ -76.621246337890568, -12.755415916442871 ], [ -76.621246337890568, -12.75514030456543 ], [ -76.621528625488224, -12.755138397216683 ], [ -76.621528625488224, -12.754859924316406 ], [ -76.621803283691349, -12.754859924316406 ], [ -76.621803283691349, -12.754584312438965 ], [ -76.622360229492188, -12.754584312438965 ], [ -76.622360229492188, -12.754305839538574 ], [ -76.622642517089844, -12.754305839538574 ], [ -76.622642517089844, -12.7540283203125 ], [ -76.622917175292969, -12.7540283203125 ], [ -76.622917175292969, -12.753749847412109 ], [ -76.623191833496094, -12.753749847412109 ], [ -76.623191833496094, -12.753472328186035 ], [ -76.62347412109375, -12.753472328186035 ], [ -76.62347412109375, -12.753193855285645 ], [ -76.623748779296875, -12.753193855285645 ], [ -76.623748779296875, -12.75291633605957 ], [ -76.624031066894418, -12.75291633605957 ], [ -76.624031066894418, -12.75263786315918 ], [ -76.624305725097599, -12.75263786315918 ], [ -76.624305725097599, -12.752362251281681 ], [ -76.624580383300724, -12.752362251281681 ], [ -76.624580383300724, -12.752083778381291 ], [ -76.624862670898381, -12.752083778381291 ], [ -76.624862670898381, -12.751806259155273 ], [ -76.625137329101562, -12.751806259155273 ], [ -76.625137329101562, -12.751527786254826 ], [ -76.625694274902344, -12.751527786254826 ], [ -76.625694274902344, -12.751250267028809 ], [ -76.625968933105469, -12.751250267028809 ], [ -76.625968933105469, -12.750971794128418 ], [ -76.626251220703125, -12.750971794128418 ], [ -76.626251220703125, -12.750694274902344 ], [ -76.62652587890625, -12.750694274902344 ], [ -76.62652587890625, -12.750415802001953 ], [ -76.626808166503906, -12.750415802001953 ], [ -76.626808166503906, -12.750138282775879 ], [ -76.627082824706918, -12.750140190124455 ], [ -76.627082824706918, -12.749859809875488 ], [ -76.627609252929688, -12.749859809875488 ], [ -76.627639770507756, -12.749582290649414 ], [ -76.627914428710881, -12.74958419799799 ], [ -76.627914428710881, -12.749305725097599 ], [ -76.628189086914062, -12.749305725097599 ], [ -76.628196716308537, -12.749025344848633 ], [ -76.628471374511719, -12.749028205871525 ], [ -76.628471374511719, -12.748749732971135 ], [ -76.628753662109375, -12.748749732971135 ], [ -76.628753662109375, -12.74847221374506 ], [ -76.629058837890568, -12.74847221374506 ], [ -76.629302978515625, -12.74847221374506 ], [ -76.629302978515625, -12.74819374084467 ], [ -76.629585266113281, -12.74819374084467 ], [ -76.629585266113281, -12.747969627380371 ], [ -76.629859924316406, -12.747916221618652 ], [ -76.629859924316406, -12.747639656066895 ], [ -76.630142211914062, -12.747639656066895 ], [ -76.630142211914062, -12.747475624084473 ], [ -76.630142211914062, -12.747362136840707 ], [ -76.630241394042969, -12.747359275817814 ], [ -76.630691528320256, -12.747362136840707 ], [ -76.630691528320256, -12.74708366394043 ], [ -76.630973815917912, -12.74708366394043 ], [ -76.630973815917912, -12.746803283691349 ], [ -76.631248474121037, -12.746806144714299 ], [ -76.631248474121037, -12.746527671813851 ], [ -76.631530761718693, -12.746527671813851 ], [ -76.631530761718693, -12.746247291564941 ], [ -76.632080078125, -12.746249198913574 ], [ -76.632080078125, -12.745973587036133 ], [ -76.632362365722656, -12.745973587036133 ], [ -76.632362365722656, -12.745693206786996 ], [ -76.632637023925781, -12.745693206786996 ], [ -76.632637023925781, -12.745417594909668 ], [ -76.633193969726562, -12.745417594909668 ], [ -76.633193969726562, -12.745137214660588 ], [ -76.633468627929631, -12.745140075683594 ], [ -76.633468627929631, -12.744860649108887 ], [ -76.634025573730412, -12.744860649108887 ], [ -76.634025573730412, -12.744581222534123 ], [ -76.634307861328068, -12.744583129882812 ], [ -76.634307861328068, -12.744304656982422 ], [ -76.634582519531193, -12.744304656982422 ], [ -76.634582519531193, -12.744027137756348 ], [ -76.635139465332031, -12.744027137756348 ], [ -76.635139465332031, -12.743748664855957 ], [ -76.635971069335938, -12.743748664855957 ], [ -76.635971069335938, -12.744027137756348 ], [ -76.636253356933594, -12.744027137756348 ], [ -76.636253356933594, -12.744304656982422 ], [ -76.636802673339787, -12.744304656982422 ], [ -76.636802673339787, -12.744583129882812 ], [ -76.637084960937443, -12.744581222534123 ], [ -76.637084960937443, -12.744860649108887 ], [ -76.637359619140568, -12.744860649108887 ], [ -76.637359619140568, -12.745417594909668 ], [ -76.637641906738224, -12.745417594909668 ], [ -76.637641906738224, -12.745693206786996 ], [ -76.637916564941406, -12.745693206786996 ], [ -76.637916564941406, -12.745973587036133 ], [ -76.638191223144531, -12.745973587036133 ], [ -76.638191223144531, -12.745693206786996 ], [ -76.638748168945312, -12.745693206786996 ], [ -76.638748168945312, -12.745417594909668 ], [ -76.639030456542969, -12.745417594909668 ], [ -76.639030456542969, -12.744860649108887 ], [ -76.638748168945312, -12.744860649108887 ], [ -76.638748168945312, -12.744581222534123 ], [ -76.638473510742188, -12.744583129882812 ], [ -76.638473510742188, -12.744304656982422 ], [ -76.638191223144531, -12.744304656982422 ], [ -76.638191223144531, -12.743748664855957 ], [ -76.637916564941406, -12.743748664855957 ], [ -76.637916564941406, -12.743194580078068 ], [ -76.637641906738224, -12.743194580078068 ], [ -76.637641906738224, -12.742915153503418 ], [ -76.637359619140568, -12.742915153503418 ], [ -76.637359619140568, -12.741805076599121 ], [ -76.637641906738224, -12.741805076599121 ], [ -76.637641906738224, -12.74152660369873 ], [ -76.638473510742188, -12.74152660369873 ], [ -76.638473510742188, -12.741249084472656 ], [ -76.638748168945312, -12.741249084472656 ], [ -76.638748168945312, -12.739860534667912 ], [ -76.638473510742188, -12.739860534667912 ], [ -76.638473510742188, -12.739583015441838 ], [ -76.637359619140568, -12.739583015441838 ], [ -76.637359619140568, -12.739304542541447 ], [ -76.636528015136719, -12.739304542541447 ], [ -76.636528015136719, -12.737916946411076 ], [ -76.636802673339787, -12.737916946411076 ], [ -76.636802673339787, -12.737639427185002 ], [ -76.637084960937443, -12.737639427185002 ], [ -76.637084960937443, -12.737083435058537 ], [ -76.637359619140568, -12.737083435058537 ], [ -76.637359619140568, -12.735694885253906 ], [ -76.637084960937443, -12.735694885253906 ], [ -76.637084960937443, -12.735417366027718 ], [ -76.636802673339787, -12.735417366027718 ], [ -76.636802673339787, -12.735138893127441 ], [ -76.635414123535156, -12.735138893127441 ], [ -76.635414123535156, -12.734028816223145 ], [ -76.635139465332031, -12.734028816223145 ], [ -76.635139465332031, -12.732916831970215 ], [ -76.635414123535156, -12.732916831970215 ], [ -76.635414123535156, -12.731806755065861 ], [ -76.635139465332031, -12.731806755065861 ], [ -76.635139465332031, -12.73124980926508 ], [ -76.634582519531193, -12.73124980926508 ], [ -76.634582519531193, -12.730972290039006 ], [ -76.634307861328068, -12.730972290039006 ], [ -76.634307861328068, -12.730693817138615 ], [ -76.634025573730412, -12.730693817138615 ], [ -76.634025573730412, -12.730416297912598 ], [ -76.633750915527287, -12.730416297912598 ], [ -76.633750915527287, -12.73013782501215 ], [ -76.633468627929631, -12.73013782501215 ], [ -76.633468627929631, -12.729583740234375 ], [ -76.633193969726562, -12.729583740234375 ], [ -76.633193969726562, -12.729304313659668 ], [ -76.632637023925781, -12.729306221008244 ], [ -76.632637023925781, -12.729027748107796 ], [ -76.632362365722656, -12.729027748107796 ], [ -76.632362365722656, -12.728750228881779 ], [ -76.632080078125, -12.728750228881779 ], [ -76.632080078125, -12.728471755981388 ], [ -76.631805419921875, -12.728471755981388 ], [ -76.631805419921875, -12.728194236755314 ], [ -76.631530761718693, -12.728194236755314 ], [ -76.631530761718693, -12.727638244628849 ], [ -76.630973815917912, -12.727640151977539 ], [ -76.630973815917912, -12.726528167724496 ], [ -76.630691528320256, -12.726528167724496 ], [ -76.630691528320256, -12.726249694824219 ], [ -76.630416870117131, -12.726249694824219 ], [ -76.630416870117131, -12.725972175598088 ], [ -76.630142211914062, -12.725972175598088 ], [ -76.630142211914062, -12.724583625793457 ], [ -76.630416870117131, -12.724583625793457 ], [ -76.630416870117131, -12.724304199218693 ], [ -76.630691528320256, -12.724306106567383 ], [ -76.630691528320256, -12.724027633666992 ], [ -76.630973815917912, -12.724027633666992 ], [ -76.630973815917912, -12.723471641540527 ], [ -76.631248474121037, -12.723471641540527 ], [ -76.631248474121037, -12.722638130187875 ], [ -76.630973815917912, -12.722640037536621 ], [ -76.630973815917912, -12.72154426574707 ], [ -76.631248474121037, -12.721528053283691 ], [ -76.631248474121037, -12.720972061157227 ], [ -76.630973815917912, -12.720972061157227 ], [ -76.630973815917912, -12.720693588256836 ], [ -76.631248474121037, -12.720693588256836 ], [ -76.631248474121037, -12.720136642456055 ], [ -76.631530761718693, -12.720136642456055 ], [ -76.631530761718693, -12.719584465026855 ], [ -76.631805419921875, -12.719584465026855 ], [ -76.631805419921875, -12.719026565551701 ], [ -76.632080078125, -12.719026565551701 ], [ -76.632080078125, -12.718470573425236 ], [ -76.632362365722656, -12.718470573425236 ], [ -76.632362365722656, -12.718193054199162 ], [ -76.632637023925781, -12.718193054199162 ], [ -76.632637023925781, -12.717637062072754 ], [ -76.632919311523438, -12.717637062072754 ], [ -76.632919311523438, -12.717081069946289 ], [ -76.633193969726562, -12.717081069946289 ], [ -76.633193969726562, -12.7165269851684 ], [ -76.633468627929631, -12.7165269851684 ], [ -76.633468627929631, -12.715970993041935 ], [ -76.633750915527287, -12.715970993041935 ], [ -76.633750915527287, -12.715695381164551 ], [ -76.634025573730412, -12.715695381164551 ], [ -76.634025573730412, -12.715415000915471 ], [ -76.634582519531193, -12.71541690826416 ], [ -76.634582519531193, -12.715139389038086 ], [ -76.634864807128906, -12.715139389038086 ], [ -76.634864807128906, -12.714859008789006 ], [ -76.635414123535156, -12.714860916137695 ], [ -76.635414123535156, -12.714583396911507 ], [ -76.635696411132812, -12.714583396911507 ], [ -76.635696411132812, -12.71430492401123 ], [ -76.635971069335938, -12.71430492401123 ], [ -76.635971069335938, -12.714027404785099 ], [ -76.636528015136719, -12.714027404785099 ], [ -76.636528015136719, -12.713748931884652 ], [ -76.636802673339787, -12.713748931884652 ], [ -76.636802673339787, -12.713473320007324 ], [ -76.637084960937443, -12.713473320007324 ], [ -76.637084960937443, -12.713194847106934 ], [ -76.637359619140568, -12.713194847106934 ], [ -76.637359619140568, -12.712917327880859 ], [ -76.637641906738224, -12.712917327880859 ], [ -76.637641906738224, -12.712638854980469 ], [ -76.637916564941406, -12.712638854980469 ], [ -76.637916564941406, -12.712361335754395 ], [ -76.638473510742188, -12.712361335754395 ], [ -76.638473510742188, -12.712082862854004 ], [ -76.638748168945312, -12.712082862854004 ], [ -76.638748168945312, -12.71180534362793 ], [ -76.638473510742188, -12.71180534362793 ], [ -76.638473510742188, -12.711526870727539 ], [ -76.638748168945312, -12.711526870727539 ], [ -76.638748168945312, -12.711251258850098 ], [ -76.639030456542969, -12.711251258850098 ], [ -76.639030456542969, -12.710970878601074 ], [ -76.639305114746094, -12.710970878601074 ], [ -76.639305114746094, -12.710695266723633 ], [ -76.639579772949219, -12.710695266723633 ], [ -76.639579772949219, -12.710139274597168 ], [ -76.639862060546761, -12.710139274597168 ], [ -76.639862060546761, -12.709860801696777 ], [ -76.640136718749943, -12.709860801696777 ], [ -76.640136718749943, -12.709583282470703 ], [ -76.640419006347599, -12.709583282470703 ], [ -76.640419006347599, -12.709304809570312 ], [ -76.640693664550724, -12.709304809570312 ], [ -76.640693664550724, -12.709029197692814 ], [ -76.641250610351562, -12.709027290344238 ], [ -76.641250610351562, -12.708750724792424 ], [ -76.641525268554688, -12.708750724792424 ], [ -76.641525268554688, -12.708471298217773 ], [ -76.641807556152344, -12.708473205566349 ], [ -76.641807556152344, -12.708194732665959 ], [ -76.642364501953125, -12.708194732665959 ], [ -76.642364501953125, -12.707917213439885 ], [ -76.64263916015625, -12.707917213439885 ], [ -76.64263916015625, -12.707638740539494 ], [ -76.642913818359261, -12.707638740539494 ], [ -76.642913818359261, -12.707361221313477 ], [ -76.643470764160099, -12.707361221313477 ], [ -76.643470764160099, -12.707084655761719 ], [ -76.643753051757756, -12.707084655761719 ], [ -76.643753051757756, -12.706804275512638 ], [ -76.644302368164062, -12.706804275512638 ], [ -76.644302368164062, -12.706528663635254 ], [ -76.644584655761719, -12.706528663635254 ], [ -76.644584655761719, -12.706248283386174 ], [ -76.644859313964844, -12.706251144409123 ], [ -76.644859313964844, -12.705972671508675 ], [ -76.645416259765625, -12.705972671508675 ], [ -76.645416259765625, -12.705692291259766 ], [ -76.64569091796875, -12.705695152282658 ], [ -76.64569091796875, -12.705415725708008 ], [ -76.645973205566406, -12.705415725708008 ], [ -76.645973205566406, -12.70513820648182 ], [ -76.646530151367131, -12.70513820648182 ], [ -76.646530151367131, -12.704859733581543 ], [ -76.646804809570256, -12.704859733581543 ], [ -76.646804809570256, -12.704582214355412 ], [ -76.647087097167912, -12.704582214355412 ], [ -76.647087097167912, -12.704306602478027 ], [ -76.647636413574219, -12.704306602478027 ], [ -76.647636413574219, -12.704026222228947 ], [ -76.647918701171875, -12.704028129577637 ], [ -76.647918701171875, -12.703749656677246 ], [ -76.648193359375, -12.703749656677246 ], [ -76.648193359375, -12.703470230102482 ], [ -76.648475646972656, -12.703472137451172 ], [ -76.648475646972656, -12.703193664550781 ], [ -76.649024963378906, -12.703193664550781 ], [ -76.649024963378906, -12.702916145324707 ], [ -76.649307250976562, -12.702916145324707 ], [ -76.649307250976562, -12.702637672424316 ], [ -76.649581909179631, -12.702637672424316 ], [ -76.649581909179631, -12.702360153198242 ], [ -76.649864196777287, -12.702360153198242 ], [ -76.649864196777287, -12.702083587646428 ], [ -76.650413513183537, -12.702083587646428 ], [ -76.650413513183537, -12.701804161071664 ], [ -76.65069580078125, -12.701804161071664 ], [ -76.65069580078125, -12.701527595519963 ], [ -76.650970458984375, -12.701527595519963 ], [ -76.650970458984375, -12.701250076293945 ], [ -76.651527404785156, -12.701250076293945 ], [ -76.651527404785156, -12.700971603393555 ], [ -76.652084350585938, -12.700971603393555 ], [ -76.652084350585938, -12.70069408416748 ], [ -76.652641296386605, -12.70069408416748 ], [ -76.652641296386605, -12.70041561126709 ], [ -76.653472900390568, -12.70041561126709 ], [ -76.653472900390568, -12.700138092041016 ], [ -76.654029846191406, -12.700138092041016 ], [ -76.654029846191406, -12.699861526489201 ], [ -76.655136108398438, -12.699861526489201 ], [ -76.655136108398438, -12.699582099914551 ], [ -76.656524658203068, -12.699584007263127 ], [ -76.656524658203068, -12.698749542236271 ], [ -76.656806945800724, -12.698749542236271 ], [ -76.656806945800724, -12.697916030883789 ], [ -76.656524658203068, -12.697916030883789 ], [ -76.656524658203068, -12.696528434753361 ], [ -76.656806945800724, -12.696528434753361 ], [ -76.656806945800724, -12.695416450500488 ], [ -76.657081604003906, -12.695416450500488 ], [ -76.657081604003906, -12.695137977600041 ], [ -76.657638549804688, -12.695137977600041 ], [ -76.657638549804688, -12.695416450500488 ], [ -76.658195495605469, -12.695416450500488 ], [ -76.658195495605469, -12.695137977600041 ], [ -76.658470153808594, -12.69513988494873 ], [ -76.658470153808594, -12.694306373596135 ], [ -76.658195495605469, -12.694306373596135 ], [ -76.658195495605469, -12.693193435668832 ], [ -76.657913208007812, -12.693193435668832 ], [ -76.657913208007812, -12.692917823791504 ], [ -76.657081604003906, -12.692917823791504 ], [ -76.657081604003906, -12.69264030456543 ], [ -76.656806945800724, -12.69264030456543 ], [ -76.656806945800724, -12.692917823791504 ], [ -76.656524658203068, -12.692917823791504 ], [ -76.656524658203068, -12.692361831665039 ], [ -76.655975341796818, -12.692361831665039 ], [ -76.655975341796818, -12.692084312438965 ], [ -76.655693054199105, -12.692084312438965 ], [ -76.655693054199105, -12.691248893737793 ], [ -76.655418395996094, -12.691248893737793 ], [ -76.655418395996094, -12.690138816833439 ], [ -76.655693054199105, -12.690138816833439 ], [ -76.655693054199105, -12.688193321228027 ], [ -76.655975341796818, -12.688195228576603 ], [ -76.655975341796818, -12.687360763549748 ], [ -76.65625, -12.687360763549748 ], [ -76.65625, -12.686804771423283 ], [ -76.656524658203068, -12.686804771423283 ], [ -76.656524658203068, -12.686248779296818 ], [ -76.656806945800724, -12.686248779296818 ], [ -76.656806945800724, -12.68597316741932 ], [ -76.657081604003906, -12.68597316741932 ], [ -76.657081604003906, -12.685694694519043 ], [ -76.657363891601562, -12.685694694519043 ], [ -76.657363891601562, -12.685415267944336 ], [ -76.657913208007812, -12.685417175292912 ], [ -76.657913208007812, -12.685138702392464 ], [ -76.658195495605469, -12.685138702392464 ], [ -76.658195495605469, -12.684859275817871 ], [ -76.658470153808594, -12.684861183166447 ], [ -76.658470153808594, -12.684582710266056 ], [ -76.659027099609318, -12.684582710266056 ], [ -76.659027099609318, -12.684861183166447 ], [ -76.659301757812443, -12.684861183166447 ], [ -76.659301757812443, -12.684582710266056 ], [ -76.660140991210881, -12.684582710266056 ], [ -76.660140991210881, -12.684305191039982 ], [ -76.660415649414062, -12.684305191039982 ], [ -76.660415649414062, -12.684026718139592 ], [ -76.661247253417969, -12.684026718139592 ], [ -76.661247253417969, -12.684305191039982 ], [ -76.661529541015625, -12.684305191039982 ], [ -76.661529541015625, -12.683749198913517 ], [ -76.661247253417969, -12.683751106262207 ], [ -76.661247253417969, -12.683472633361816 ], [ -76.661529541015625, -12.683472633361816 ], [ -76.661529541015625, -12.682916641235352 ], [ -76.661247253417969, -12.682916641235352 ], [ -76.661247253417969, -12.682360649108887 ], [ -76.661529541015625, -12.682360649108887 ], [ -76.661529541015625, -12.680417060852051 ], [ -76.66180419921875, -12.680417060852051 ], [ -76.66180419921875, -12.679861068725586 ], [ -76.661529541015625, -12.679861068725586 ], [ -76.661529541015625, -12.67902946472168 ], [ -76.661247253417969, -12.67902946472168 ], [ -76.661247253417969, -12.67791557312006 ], [ -76.661529541015625, -12.67791557312006 ], [ -76.661529541015625, -12.677410125732308 ], [ -76.66180419921875, -12.677363395690861 ], [ -76.66180419921875, -12.67680644989008 ], [ -76.662086486816406, -12.67680644989008 ], [ -76.662086486816406, -12.67569446563715 ], [ -76.662361145019474, -12.67569446563715 ], [ -76.662361145019474, -12.675138473510685 ], [ -76.662635803222599, -12.675138473510685 ], [ -76.662635803222599, -12.67430400848383 ], [ -76.662918090820256, -12.67430591583252 ], [ -76.662918090820256, -12.674028396606332 ], [ -76.663192749023381, -12.674028396606332 ], [ -76.663192749023381, -12.673748016357422 ], [ -76.663749694824219, -12.673749923706055 ], [ -76.663749694824219, -12.673472404479924 ], [ -76.664024353027344, -12.673472404479924 ], [ -76.664024353027344, -12.673193931579476 ], [ -76.664306640625, -12.673193931579476 ], [ -76.664306640625, -12.672916412353459 ], [ -76.665138244628906, -12.672916412353459 ], [ -76.665138244628906, -12.672081947326603 ], [ -76.665412902831974, -12.672081947326603 ], [ -76.665412902831974, -12.671250343322754 ], [ -76.665695190429631, -12.671250343322754 ], [ -76.665695190429631, -12.670694351196289 ], [ -76.665969848632756, -12.670694351196289 ], [ -76.665969848632756, -12.669861793518066 ], [ -76.666252136230412, -12.669861793518066 ], [ -76.666252136230412, -12.669305801391602 ], [ -76.666526794433594, -12.669305801391602 ], [ -76.666526794433594, -12.669028282165527 ], [ -76.66680908203125, -12.669028282165527 ], [ -76.66680908203125, -12.668472290039062 ], [ -76.667083740234375, -12.668472290039062 ], [ -76.667083740234375, -12.668193817138672 ], [ -76.6673583984375, -12.668193817138672 ], [ -76.6673583984375, -12.667916297912598 ], [ -76.667640686035156, -12.667916297912598 ], [ -76.667640686035156, -12.667639732360783 ], [ -76.667915344238281, -12.667639732360783 ], [ -76.667915344238281, -12.667359352111816 ], [ -76.668197631835938, -12.667362213134709 ], [ -76.668197631835938, -12.667083740234318 ], [ -76.668472290038949, -12.667083740234318 ], [ -76.668472290038949, -12.666803359985352 ], [ -76.668746948242131, -12.666806221008301 ], [ -76.668746948242131, -12.666527748107853 ], [ -76.669029235839787, -12.666527748107853 ], [ -76.669029235839787, -12.666250228881836 ], [ -76.669303894042912, -12.666250228881836 ], [ -76.669303894042912, -12.665693283080998 ], [ -76.669586181640568, -12.665693283080998 ], [ -76.669586181640568, -12.6654176712035 ], [ -76.66986083984375, -12.6654176712035 ], [ -76.66986083984375, -12.66513729095459 ], [ -76.670417785644531, -12.665140151977482 ], [ -76.670417785644531, -12.664861679077092 ], [ -76.670692443847656, -12.664861679077092 ], [ -76.670692443847656, -12.664583206176644 ], [ -76.670974731445312, -12.664583206176644 ], [ -76.670974731445312, -12.664304733276367 ], [ -76.671524047851449, -12.664304733276367 ], [ -76.671524047851449, -12.664027214050236 ], [ -76.671806335449162, -12.664027214050236 ], [ -76.671806335449162, -12.663748741149789 ], [ -76.672080993652287, -12.663748741149789 ], [ -76.672080993652287, -12.663471221923771 ], [ -76.672363281249943, -12.663471221923771 ], [ -76.672363281249943, -12.661803245544434 ], [ -76.672637939453068, -12.661805152893066 ], [ -76.672637939453068, -12.661526679992676 ], [ -76.672920227050724, -12.661526679992676 ], [ -76.672920227050724, -12.659860610961914 ], [ -76.673194885253906, -12.659860610961914 ], [ -76.673194885253906, -12.65958309173584 ], [ -76.672920227050724, -12.65958309173584 ], [ -76.672920227050724, -12.659304618835449 ], [ -76.672637939453068, -12.659304618835449 ], [ -76.672637939453068, -12.659027099609375 ], [ -76.672363281249943, -12.659027099609375 ], [ -76.672363281249943, -12.65847110748291 ], [ -76.672080993652287, -12.658473014831486 ], [ -76.672080993652287, -12.658194541931096 ], [ -76.671806335449162, -12.658194541931096 ], [ -76.671806335449162, -12.657917022705078 ], [ -76.671524047851449, -12.657917022705078 ], [ -76.671524047851449, -12.657638549804631 ], [ -76.671249389648438, -12.657638549804631 ], [ -76.671249389648438, -12.657361030578613 ], [ -76.670974731445312, -12.657361030578613 ], [ -76.670974731445312, -12.656249046325684 ], [ -76.671249389648438, -12.65625095367426 ], [ -76.671249389648438, -12.655973434448185 ], [ -76.671524047851449, -12.655973434448185 ], [ -76.671524047851449, -12.655693054199219 ], [ -76.671806335449162, -12.655694961547795 ], [ -76.671806335449162, -12.655417442321721 ], [ -76.672080993652287, -12.655417442321721 ], [ -76.672080993652287, -12.65513896942133 ], [ -76.672363281249943, -12.65513896942133 ], [ -76.672363281249943, -12.654861450195312 ], [ -76.672637939453068, -12.654861450195312 ], [ -76.672637939453068, -12.654582977294865 ], [ -76.672920227050724, -12.654582977294865 ], [ -76.672920227050724, -12.654026985168457 ], [ -76.673194885253906, -12.65402889251709 ], [ -76.673194885253906, -12.653751373290959 ], [ -76.673469543457031, -12.653751373290959 ], [ -76.673469543457031, -12.653470039367619 ], [ -76.673751831054688, -12.653472900390511 ], [ -76.673751831054688, -12.653195381164494 ], [ -76.674308776855469, -12.653195381164494 ], [ -76.674308776855469, -12.652359962463379 ], [ -76.674583435058594, -12.652359962463379 ], [ -76.674583435058594, -12.650416374206543 ], [ -76.674308776855469, -12.650416374206543 ], [ -76.674308776855469, -12.650137901306152 ], [ -76.674026489257812, -12.650137901306152 ], [ -76.674026489257812, -12.648750305175781 ], [ -76.673751831054688, -12.648750305175781 ], [ -76.673751831054688, -12.648471832275391 ], [ -76.673194885253906, -12.648471832275391 ], [ -76.673194885253906, -12.648194313049316 ], [ -76.672920227050724, -12.648194313049316 ], [ -76.672920227050724, -12.647640228271428 ], [ -76.671249389648438, -12.647640228271428 ], [ -76.671249389648438, -12.647359848022461 ], [ -76.670974731445312, -12.647359848022461 ], [ -76.670974731445312, -12.64486026763916 ], [ -76.671249389648438, -12.64486026763916 ], [ -76.671249389648438, -12.644304275512695 ], [ -76.670974731445312, -12.644306182861271 ], [ -76.670974731445312, -12.644027709960881 ], [ -76.670692443847656, -12.644027709960881 ], [ -76.670692443847656, -12.643750190734806 ], [ -76.670974731445312, -12.643750190734806 ], [ -76.670974731445312, -12.643471717834416 ], [ -76.670417785644531, -12.643471717834416 ], [ -76.670417785644531, -12.643194198608342 ], [ -76.670692443847656, -12.643194198608342 ], [ -76.670692443847656, -12.642915725707951 ], [ -76.670974731445312, -12.642915725707951 ], [ -76.670974731445312, -12.639303207397404 ], [ -76.671249389648438, -12.639303207397404 ], [ -76.671249389648438, -12.637081146240234 ], [ -76.671524047851449, -12.637081146240234 ], [ -76.671524047851449, -12.634859085083008 ], [ -76.671806335449162, -12.634859085083008 ], [ -76.671806335449162, -12.633193016052246 ], [ -76.672080993652287, -12.633193016052246 ], [ -76.672080993652287, -12.632082939147892 ], [ -76.672363281249943, -12.632082939147892 ], [ -76.672363281249943, -12.631251335144043 ], [ -76.672637939453068, -12.631251335144043 ], [ -76.672637939453068, -12.630695343017578 ], [ -76.672920227050724, -12.630695343017578 ], [ -76.672920227050724, -12.630139350891113 ], [ -76.673194885253906, -12.630139350891113 ], [ -76.673194885253906, -12.629583358764535 ], [ -76.673469543457031, -12.629583358764535 ], [ -76.673469543457031, -12.629027366638127 ], [ -76.673751831054688, -12.629027366638127 ], [ -76.673751831054688, -12.628473281860352 ], [ -76.674026489257812, -12.628473281860352 ], [ -76.674026489257812, -12.627917289733887 ], [ -76.674308776855469, -12.627917289733887 ], [ -76.674308776855469, -12.627638816833496 ], [ -76.675140380859318, -12.627638816833496 ], [ -76.675140380859318, -12.627084732055607 ], [ -76.675415039062443, -12.627084732055607 ], [ -76.675415039062443, -12.626805305480957 ], [ -76.675697326660099, -12.626805305480957 ], [ -76.675697326660099, -12.626528739929142 ], [ -76.675971984863224, -12.626528739929142 ], [ -76.675971984863224, -12.626251220703125 ], [ -76.677360534667969, -12.626251220703125 ], [ -76.677360534667969, -12.62569522857666 ], [ -76.677635192871094, -12.62569522857666 ], [ -76.677635192871094, -12.624582290649414 ], [ -76.677360534667969, -12.624582290649414 ], [ -76.677360534667969, -12.624029159545842 ], [ -76.677085876464844, -12.624029159545842 ], [ -76.677085876464844, -12.623193740844613 ], [ -76.677360534667969, -12.623193740844613 ], [ -76.677360534667969, -12.622637748718205 ], [ -76.677635192871094, -12.622637748718205 ], [ -76.677635192871094, -12.62208366394043 ], [ -76.678192138671818, -12.62208366394043 ], [ -76.678192138671818, -12.621804237365666 ], [ -76.678749084472599, -12.621804237365666 ], [ -76.678749084472599, -12.621527671813965 ], [ -76.679306030273438, -12.621527671813965 ], [ -76.679306030273438, -12.621248245239258 ], [ -76.679862976074219, -12.621250152587891 ], [ -76.679862976074219, -12.6209716796875 ], [ -76.681251525878793, -12.6209716796875 ], [ -76.681251525878793, -12.620694160461312 ], [ -76.681526184081974, -12.620694160461312 ], [ -76.681526184081974, -12.620415687561035 ], [ -76.681808471679631, -12.620415687561035 ], [ -76.681808471679631, -12.620138168334904 ], [ -76.682083129882756, -12.620138168334904 ], [ -76.682083129882756, -12.619859695434457 ], [ -76.682357788085938, -12.619859695434457 ], [ -76.682357788085938, -12.619582176208439 ], [ -76.682640075683594, -12.619582176208439 ], [ -76.682640075683594, -12.619028091430664 ], [ -76.683197021484375, -12.619028091430664 ], [ -76.683197021484375, -12.618749618530273 ], [ -76.6834716796875, -12.618749618530273 ], [ -76.6834716796875, -12.618472099304199 ], [ -76.683746337890625, -12.618472099304199 ], [ -76.683746337890625, -12.618193626403809 ], [ -76.684028625488281, -12.618193626403809 ], [ -76.684028625488281, -12.617916107177734 ], [ -76.684303283691293, -12.617916107177734 ], [ -76.684303283691293, -12.618193626403809 ], [ -76.684860229492131, -12.618193626403809 ], [ -76.684860229492131, -12.617916107177734 ], [ -76.685142517089787, -12.61791801452631 ], [ -76.685142517089787, -12.616527557373047 ], [ -76.685417175292912, -12.616527557373047 ], [ -76.685417175292912, -12.615971565246582 ], [ -76.685691833496094, -12.615971565246582 ], [ -76.685691833496094, -12.615415573120117 ], [ -76.68597412109375, -12.615415573120117 ], [ -76.68597412109375, -12.615138053894043 ], [ -76.686531066894531, -12.615139961242619 ], [ -76.686531066894531, -12.614306449890137 ], [ -76.686805725097656, -12.614306449890137 ], [ -76.686805725097656, -12.613471984863281 ], [ -76.687080383300781, -12.613471984863281 ], [ -76.687080383300781, -12.612915039062443 ], [ -76.687362670898438, -12.612915039062443 ], [ -76.687362670898438, -12.612359046935978 ], [ -76.687637329101506, -12.612361907958928 ], [ -76.687637329101506, -12.612084388732853 ], [ -76.688194274902287, -12.612084388732853 ], [ -76.688194274902287, -12.611805915832463 ], [ -76.688468933105412, -12.611805915832463 ], [ -76.688468933105412, -12.611527442932072 ], [ -76.688751220703068, -12.611527442932072 ], [ -76.688751220703068, -12.611248970031625 ], [ -76.688468933105412, -12.611248970031625 ], [ -76.688468933105412, -12.610971450805607 ], [ -76.688751220703068, -12.610971450805607 ], [ -76.688751220703068, -12.610695838928223 ], [ -76.68902587890625, -12.610695838928223 ], [ -76.68902587890625, -12.610418319702035 ], [ -76.689308166503906, -12.610418319702035 ], [ -76.689308166503906, -12.609861373901367 ], [ -76.689582824707031, -12.609861373901367 ], [ -76.689582824707031, -12.609580993652287 ], [ -76.689857482910156, -12.609582901000977 ], [ -76.689857482910156, -12.609305381774902 ], [ -76.690139770507812, -12.609305381774902 ], [ -76.690139770507812, -12.609026908874512 ], [ -76.690414428710938, -12.609026908874512 ], [ -76.690414428710938, -12.608749389648324 ], [ -76.690696716308594, -12.608749389648324 ], [ -76.690696716308594, -12.608195304870605 ], [ -76.690971374511662, -12.608195304870605 ], [ -76.690971374511662, -12.607916831970215 ], [ -76.691253662109318, -12.607916831970215 ], [ -76.691253662109318, -12.607639312744141 ], [ -76.691528320312443, -12.607639312744141 ], [ -76.691528320312443, -12.60736083984375 ], [ -76.691802978515568, -12.60736083984375 ], [ -76.691802978515568, -12.607083320617676 ], [ -76.692085266113281, -12.607083320617676 ], [ -76.692085266113281, -12.606804847717285 ], [ -76.692359924316406, -12.606804847717285 ], [ -76.692359924316406, -12.606527328491211 ], [ -76.692642211914062, -12.606527328491211 ], [ -76.692642211914062, -12.60624885559082 ], [ -76.692916870117188, -12.60624885559082 ], [ -76.692916870117188, -12.605973243713322 ], [ -76.693191528320312, -12.605973243713322 ], [ -76.693191528320312, -12.605694770812931 ], [ -76.693473815917969, -12.605694770812931 ], [ -76.693473815917969, -12.605415344238281 ], [ -76.693748474121094, -12.605415344238281 ], [ -76.693748474121094, -12.604861259460449 ], [ -76.694305419921818, -12.604861259460449 ], [ -76.694305419921818, -12.604582786560059 ], [ -76.694580078124943, -12.604582786560059 ], [ -76.694580078124943, -12.604305267333984 ], [ -76.694862365722599, -12.604305267333984 ], [ -76.694862365722599, -12.604026794433594 ], [ -76.695137023925781, -12.604026794433594 ], [ -76.695137023925781, -12.60374927520752 ], [ -76.695693969726562, -12.603751182556096 ], [ -76.695693969726562, -12.603470802307129 ], [ -76.696250915527344, -12.603470802307129 ], [ -76.696250915527344, -12.603195190429631 ], [ -76.697914123535099, -12.603195190429631 ], [ -76.697914123535099, -12.60291671752924 ], [ -76.698196411132756, -12.60291671752924 ], [ -76.698196411132756, -12.602639198303166 ], [ -76.698471069335938, -12.602639198303166 ], [ -76.698471069335938, -12.602360725402775 ], [ -76.698753356933594, -12.602360725402775 ], [ -76.698753356933594, -12.602080345153809 ], [ -76.699028015136719, -12.602083206176701 ], [ -76.699028015136719, -12.60180473327631 ], [ -76.699302673339844, -12.60180473327631 ], [ -76.699302673339844, -12.601529121398926 ], [ -76.6995849609375, -12.601529121398926 ], [ -76.6995849609375, -12.601248741149846 ], [ -76.699302673339844, -12.601248741149846 ], [ -76.699302673339844, -12.600973129272347 ], [ -76.699028015136719, -12.600973129272347 ], [ -76.699028015136719, -12.60069465637207 ], [ -76.699302673339844, -12.60069465637207 ], [ -76.699302673339844, -12.60041427612299 ], [ -76.699859619140625, -12.600417137145939 ], [ -76.699859619140625, -12.600138664245492 ], [ -76.700141906738281, -12.600138664245492 ], [ -76.700141906738281, -12.599858283996582 ], [ -76.700416564941349, -12.599861145019474 ], [ -76.700416564941349, -12.599582672119084 ], [ -76.700691223144474, -12.599582672119084 ], [ -76.700691223144474, -12.599302291870117 ], [ -76.700973510742131, -12.599304199218636 ], [ -76.700973510742131, -12.599028587341309 ], [ -76.701248168945256, -12.599028587341309 ], [ -76.701248168945256, -12.598748207092228 ], [ -76.701530456542912, -12.598751068115234 ], [ -76.701530456542912, -12.598472595214844 ], [ -76.701805114746094, -12.598472595214844 ], [ -76.701805114746094, -12.598192214965763 ], [ -76.702079772949219, -12.59819507598877 ], [ -76.702079772949219, -12.597915649414062 ], [ -76.702362060546875, -12.597915649414062 ], [ -76.702362060546875, -12.597638130187988 ], [ -76.70263671875, -12.597638130187988 ], [ -76.70263671875, -12.597363471984863 ], [ -76.702919006347656, -12.597359657287598 ], [ -76.702919006347656, -12.597082138061523 ], [ -76.704864501953125, -12.597082138061523 ], [ -76.704864501953125, -12.596806526184082 ], [ -76.70513916015625, -12.596806526184082 ], [ -76.70513916015625, -12.596249580383244 ], [ -76.705413818359375, -12.596249580383244 ], [ -76.705413818359375, -12.595693588256779 ], [ -76.705696105957031, -12.595693588256779 ], [ -76.705696105957031, -12.595137596130371 ], [ -76.705970764160156, -12.595137596130371 ], [ -76.705970764160156, -12.594860076904297 ], [ -76.706253051757812, -12.594860076904297 ], [ -76.706253051757812, -12.594584465026799 ], [ -76.706527709960938, -12.594584465026799 ], [ -76.706527709960938, -12.594028472900334 ], [ -76.706802368164006, -12.594028472900334 ], [ -76.706802368164006, -12.593748092651367 ], [ -76.707084655761662, -12.59375 ], [ -76.707084655761662, -12.593471527099553 ], [ -76.709030151367188, -12.593471527099553 ], [ -76.709030151367188, -12.592362403869572 ], [ -76.708747863769531, -12.592362403869572 ], [ -76.708747863769531, -12.591806411743107 ], [ -76.708473205566406, -12.591806411743107 ], [ -76.708473205566406, -12.591527938842717 ], [ -76.707916259765625, -12.591527938842717 ], [ -76.707916259765625, -12.590971946716252 ], [ -76.707641601562443, -12.590971946716252 ], [ -76.707641601562443, -12.590694427490178 ], [ -76.707916259765625, -12.590694427490178 ], [ -76.707916259765625, -12.590415954589787 ], [ -76.70819091796875, -12.590415954589787 ], [ -76.70819091796875, -12.590138435363713 ], [ -76.708473205566406, -12.590138435363713 ], [ -76.708473205566406, -12.589859962463322 ], [ -76.709030151367188, -12.589861869812012 ], [ -76.709030151367188, -12.589305877685547 ], [ -76.708747863769531, -12.589305877685547 ], [ -76.708747863769531, -12.588749885559082 ], [ -76.708473205566406, -12.588749885559082 ], [ -76.708473205566406, -12.588472366332951 ], [ -76.70819091796875, -12.588472366332951 ], [ -76.70819091796875, -12.58819580078125 ], [ -76.707641601562443, -12.58819580078125 ], [ -76.707641601562443, -12.587916374206486 ], [ -76.705970764160156, -12.587916374206486 ], [ -76.705970764160156, -12.58708381652832 ], [ -76.705696105957031, -12.58708381652832 ], [ -76.705696105957031, -12.586806297302246 ], [ -76.705413818359375, -12.586806297302246 ], [ -76.705413818359375, -12.586527824401855 ], [ -76.70513916015625, -12.586527824401855 ], [ -76.70513916015625, -12.585693359375 ], [ -76.705413818359375, -12.585693359375 ], [ -76.705413818359375, -12.584304809570256 ], [ -76.705696105957031, -12.584304809570256 ], [ -76.705696105957031, -12.583471298217773 ], [ -76.705970764160156, -12.583471298217773 ], [ -76.705970764160156, -12.58236122131342 ], [ -76.706253051757812, -12.58236122131342 ], [ -76.706253051757812, -12.581805229186955 ], [ -76.706527709960938, -12.581805229186955 ], [ -76.706527709960938, -12.58124923706049 ], [ -76.706802368164006, -12.58124923706049 ], [ -76.706802368164006, -12.580972671508789 ], [ -76.707084655761662, -12.580970764160099 ], [ -76.707084655761662, -12.580416679382324 ], [ -76.707359313964787, -12.580416679382324 ], [ -76.707359313964787, -12.580139160156136 ], [ -76.707641601562443, -12.580139160156136 ], [ -76.707641601562443, -12.579860687255859 ], [ -76.70819091796875, -12.579860687255859 ], [ -76.70819091796875, -12.579304695129281 ], [ -76.708473205566406, -12.579304695129281 ], [ -76.708473205566406, -12.579027175903263 ], [ -76.708747863769531, -12.579027175903263 ], [ -76.708747863769531, -12.578471183776799 ], [ -76.709030151367188, -12.578471183776799 ], [ -76.709030151367188, -12.577917098999023 ], [ -76.709304809570312, -12.577917098999023 ], [ -76.709304809570312, -12.577638626098633 ], [ -76.709587097167969, -12.577638626098633 ], [ -76.709587097167969, -12.577082633972168 ], [ -76.70986175537098, -12.577082633972168 ], [ -76.70986175537098, -12.576805114746094 ], [ -76.710136413574162, -12.576805114746094 ], [ -76.710136413574162, -12.576526641845703 ], [ -76.710418701171818, -12.576526641845703 ], [ -76.710418701171818, -12.575972557067871 ], [ -76.710693359374943, -12.575972557067871 ], [ -76.710693359374943, -12.575416564941406 ], [ -76.710975646972599, -12.575416564941406 ], [ -76.710975646972599, -12.575139045715332 ], [ -76.711524963378906, -12.575139045715332 ], [ -76.711524963378906, -12.574860572814941 ], [ -76.711807250976562, -12.574860572814941 ], [ -76.711807250976562, -12.574583053588867 ], [ -76.712364196777344, -12.574583053588867 ], [ -76.712364196777344, -12.574027061462402 ], [ -76.712638854980469, -12.574028968810978 ], [ -76.712638854980469, -12.573748588562012 ], [ -76.71291351318348, -12.573748588562012 ], [ -76.71291351318348, -12.573470115661621 ], [ -76.713195800781193, -12.573472976684513 ], [ -76.713195800781193, -12.573195457458496 ], [ -76.713470458984318, -12.573195457458496 ], [ -76.713470458984318, -12.572916984558105 ], [ -76.713752746581974, -12.572916984558105 ], [ -76.713752746581974, -12.572639465332031 ], [ -76.714027404785099, -12.572639465332031 ], [ -76.714027404785099, -12.572360992431641 ], [ -76.714302062988281, -12.572360992431641 ], [ -76.714302062988281, -12.572081565856877 ], [ -76.714584350585938, -12.572081565856877 ], [ -76.714584350585938, -12.571525573730412 ], [ -76.714859008789062, -12.571525573730412 ], [ -76.714859008789062, -12.570973396301213 ], [ -76.715141296386719, -12.570973396301213 ], [ -76.715141296386719, -12.570416450500431 ], [ -76.715415954589844, -12.570416450500431 ], [ -76.715415954589844, -12.570137977600041 ], [ -76.715690612792969, -12.570137977600041 ], [ -76.7156982421875, -12.569860458373967 ], [ -76.715972900390625, -12.569860458373967 ], [ -76.715972900390625, -12.569581985473576 ], [ -76.716247558593693, -12.569581985473576 ], [ -76.716247558593693, -12.569307327270451 ], [ -76.716529846191349, -12.569307327270451 ], [ -76.716529846191349, -12.569025993347111 ], [ -76.716804504394474, -12.569027900695801 ], [ -76.716804504394474, -12.568750381469727 ], [ -76.717086791992131, -12.568750381469727 ], [ -76.717086791992131, -12.568470001220646 ], [ -76.717361450195256, -12.568471908569336 ], [ -76.717361450195256, -12.568194389343148 ], [ -76.717636108398438, -12.568194389343148 ], [ -76.717636108398438, -12.567915916442871 ], [ -76.718193054199219, -12.567915916442871 ], [ -76.718193054199219, -12.56764030456543 ], [ -76.718475341796875, -12.56763839721674 ], [ -76.718475341796875, -12.567359924316293 ], [ -76.71875, -12.567359924316293 ], [ -76.71875, -12.567084312438965 ], [ -76.719024658203125, -12.567084312438965 ], [ -76.719024658203125, -12.566805839538574 ], [ -76.719581604003849, -12.566805839538574 ], [ -76.719581604003849, -12.5665283203125 ], [ -76.719863891601506, -12.5665283203125 ], [ -76.719863891601506, -12.566249847412109 ], [ -76.720138549804631, -12.566249847412109 ], [ -76.720138549804631, -12.565972328186035 ], [ -76.720695495605469, -12.565972328186035 ], [ -76.720695495605469, -12.565693855285645 ], [ -76.72125244140625, -12.565693855285645 ], [ -76.72125244140625, -12.56541633605957 ], [ -76.721527099609375, -12.56541633605957 ], [ -76.721527099609375, -12.56513786315918 ], [ -76.722084045410156, -12.56513786315918 ], [ -76.722084045410156, -12.564860343933105 ], [ -76.722640991210824, -12.564862251281738 ], [ -76.722640991210824, -12.564583778381291 ], [ -76.725135803222656, -12.564583778381291 ], [ -76.725135803222656, -12.564306259155273 ], [ -76.725418090820312, -12.564306259155273 ], [ -76.725418090820312, -12.564027786254883 ], [ -76.725975036621037, -12.564027786254883 ], [ -76.725975036621037, -12.563750267028809 ], [ -76.726249694824162, -12.563750267028809 ], [ -76.726249694824162, -12.563471794128418 ], [ -76.726524353027287, -12.563471794128418 ], [ -76.726524353027287, -12.562915802001953 ], [ -76.726806640624943, -12.562915802001953 ], [ -76.726806640624943, -12.562638282775879 ], [ -76.727081298828125, -12.562638282775879 ], [ -76.727081298828125, -12.562082290649414 ], [ -76.726806640624943, -12.562056541442814 ], [ -76.726806640624943, -12.561526298522949 ], [ -76.726524353027287, -12.561526298522949 ], [ -76.726524353027287, -12.560969352722168 ], [ -76.726249694824162, -12.560972213745117 ], [ -76.726249694824162, -12.560139656066895 ], [ -76.726524353027287, -12.560139656066895 ], [ -76.726524353027287, -12.559583663940316 ], [ -76.726806640624943, -12.559583663940316 ], [ -76.726806640624943, -12.558780670166016 ], [ -76.727081298828125, -12.558750152587834 ], [ -76.727081298828125, -12.558612823486328 ], [ -76.727081298828125, -12.558193206787053 ], [ -76.727638244628906, -12.558193206787053 ], [ -76.727638244628906, -12.557917594909668 ], [ -76.728034973144531, -12.557917594909668 ], [ -76.728195190429688, -12.557917594909668 ], [ -76.728195190429688, -12.557771682739144 ], [ -76.728195190429688, -12.557637214660588 ], [ -76.728340148925724, -12.557640075683594 ], [ -76.728469848632812, -12.557640075683594 ], [ -76.728469848632812, -12.557520866394043 ], [ -76.728469848632812, -12.557361602783203 ], [ -76.728645324706974, -12.557361602783203 ], [ -76.729026794433537, -12.557361602783203 ], [ -76.729026794433537, -12.557081222534123 ], [ -76.729858398437443, -12.557083129882812 ], [ -76.729858398437443, -12.556804656982422 ], [ -76.732635498046818, -12.556804656982422 ], [ -76.732635498046818, -12.556527137756348 ], [ -76.732917785644474, -12.556527137756348 ], [ -76.732917785644474, -12.556804656982422 ], [ -76.734580993652344, -12.556804656982422 ], [ -76.734580993652344, -12.556527137756348 ], [ -76.73486328125, -12.556527137756348 ], [ -76.73486328125, -12.556804656982422 ], [ -76.735137939453125, -12.556804656982422 ], [ -76.735137939453125, -12.556527137756348 ], [ -76.735420227050668, -12.556527137756348 ], [ -76.735420227050668, -12.556248664855957 ], [ -76.735969543456974, -12.556248664855957 ], [ -76.735969543456974, -12.555971145629883 ], [ -76.736526489257812, -12.555971145629883 ], [ -76.736526489257812, -12.555138587951603 ], [ -76.736808776855469, -12.555138587951603 ], [ -76.736808776855469, -12.554582595825195 ], [ -76.736526489257812, -12.554582595825195 ], [ -76.736526489257812, -12.552916526794377 ], [ -76.736251831054631, -12.552916526794377 ], [ -76.736251831054631, -12.552360534667912 ], [ -76.735969543456974, -12.552360534667912 ], [ -76.735969543456974, -12.552083015441895 ], [ -76.736251831054631, -12.552083015441895 ], [ -76.736251831054631, -12.551804542541447 ], [ -76.736526489257812, -12.551804542541447 ], [ -76.736526489257812, -12.551251411437931 ], [ -76.736251831054631, -12.551251411437931 ], [ -76.736251831054631, -12.550695419311467 ], [ -76.735969543456974, -12.550695419311467 ], [ -76.735969543456974, -12.550416946411076 ], [ -76.736251831054631, -12.550416946411076 ], [ -76.736251831054631, -12.550139427185002 ], [ -76.736526489257812, -12.550139427185002 ], [ -76.736526489257812, -12.549860954284611 ], [ -76.736808776855469, -12.549860954284611 ], [ -76.736808776855469, -12.549583435058537 ], [ -76.737083435058594, -12.549583435058537 ], [ -76.737083435058594, -12.549304962158146 ], [ -76.737358093261719, -12.549304962158146 ], [ -76.737358093261719, -12.549027442932129 ], [ -76.737640380859375, -12.549027442932129 ], [ -76.737640380859375, -12.548748970031681 ], [ -76.738197326660156, -12.548750877380371 ], [ -76.738197326660156, -12.548473358154183 ], [ -76.738471984863168, -12.548473358154183 ], [ -76.738471984863168, -12.548194885253906 ], [ -76.738746643066349, -12.548194885253906 ], [ -76.738746643066349, -12.547917366027775 ], [ -76.739028930664006, -12.547917366027775 ], [ -76.739028930664006, -12.547638893127328 ], [ -76.739303588867131, -12.547638893127328 ], [ -76.739303588867131, -12.54736137390131 ], [ -76.739585876464787, -12.54736137390131 ], [ -76.739585876464787, -12.54708290100092 ], [ -76.739860534667969, -12.54708290100092 ], [ -76.739860534667969, -12.546805381774846 ], [ -76.74041748046875, -12.546805381774846 ], [ -76.74041748046875, -12.546528816223145 ], [ -76.740692138671875, -12.546528816223145 ], [ -76.740692138671875, -12.54625129699707 ], [ -76.741249084472656, -12.54625129699707 ], [ -76.741249084472656, -12.54597282409668 ], [ -76.741531372070312, -12.54597282409668 ], [ -76.741531372070312, -12.545695304870605 ], [ -76.742080688476506, -12.545695304870605 ], [ -76.742080688476506, -12.545416831970215 ], [ -76.742362976074162, -12.545416831970215 ], [ -76.742362976074162, -12.545139312744027 ], [ -76.742919921874943, -12.545139312744027 ], [ -76.742919921874943, -12.544859886169434 ], [ -76.74346923828125, -12.544859886169434 ], [ -76.74346923828125, -12.544582366943359 ], [ -76.743751525878906, -12.544582366943359 ], [ -76.743751525878906, -12.544306755065918 ], [ -76.744308471679688, -12.544306755065918 ], [ -76.744308471679688, -12.544026374816895 ], [ -76.744583129882812, -12.544026374816895 ], [ -76.744583129882812, -12.543750762939453 ], [ -76.744857788085881, -12.543750762939453 ], [ -76.744857788085881, -12.543472290039062 ], [ -76.745414733886662, -12.543472290039062 ], [ -76.745414733886662, -12.543193817138615 ], [ -76.745697021484318, -12.543193817138615 ], [ -76.745697021484318, -12.542916297912598 ], [ -76.745971679687443, -12.542916297912598 ], [ -76.745971679687443, -12.542637825012207 ], [ -76.746246337890625, -12.542637825012207 ], [ -76.746246337890625, -12.542360305786133 ], [ -76.746803283691406, -12.542360305786133 ], [ -76.746803283691406, -12.542084693908635 ], [ -76.747085571289062, -12.542084693908635 ], [ -76.747085571289062, -12.541804313659668 ], [ -76.747360229492188, -12.541804313659668 ], [ -76.747360229492188, -12.541527748107853 ], [ -76.747642517089844, -12.541527748107853 ], [ -76.747642517089844, -12.541248321533203 ], [ -76.748191833496037, -12.541250228881779 ], [ -76.748191833496037, -12.540971755981388 ], [ -76.748474121093693, -12.540971755981388 ], [ -76.748474121093693, -12.540694236755314 ], [ -76.748748779296818, -12.540694236755314 ], [ -76.748748779296818, -12.540415763854924 ], [ -76.749305725097656, -12.540415763854924 ], [ -76.749305725097656, -12.540138244628906 ], [ -76.749862670898438, -12.540138244628906 ], [ -76.749862670898438, -12.539859771728459 ], [ -76.750137329101562, -12.539859771728459 ], [ -76.750137329101562, -12.539584159850961 ], [ -76.750694274902344, -12.539584159850961 ], [ -76.750694274902344, -12.539305686950684 ], [ -76.752082824706974, -12.539305686950684 ], [ -76.752082824706974, -12.539028167724553 ], [ -76.752357482910156, -12.539028167724553 ], [ -76.752357482910156, -12.538472175598088 ], [ -76.752639770507812, -12.538472175598088 ], [ -76.752639770507812, -12.538193702697697 ], [ -76.753196716308594, -12.538193702697697 ], [ -76.753196716308594, -12.537916183471623 ], [ -76.753753662109375, -12.537916183471623 ], [ -76.753753662109375, -12.537637710571232 ], [ -76.754302978515511, -12.537637710571232 ], [ -76.754302978515511, -12.537360191345158 ], [ -76.755416870117131, -12.537362098693848 ], [ -76.755416870117131, -12.537083625793457 ], [ -76.755691528320312, -12.537083625793457 ], [ -76.755691528320312, -12.536804199218693 ], [ -76.755973815917969, -12.536806106567383 ], [ -76.755973815917969, -12.536527633666992 ], [ -76.75653076171875, -12.536527633666992 ], [ -76.75653076171875, -12.536250114440918 ], [ -76.756805419921875, -12.536250114440918 ], [ -76.756805419921875, -12.535971641540527 ], [ -76.757080078125, -12.535971641540527 ], [ -76.757080078125, -12.535694122314339 ], [ -76.757637023925724, -12.535694122314339 ], [ -76.757637023925724, -12.535415649414062 ], [ -76.757919311523381, -12.535415649414062 ], [ -76.757919311523381, -12.535138130187931 ], [ -76.759025573730469, -12.535140037536621 ], [ -76.759025573730469, -12.53486156463623 ], [ -76.759307861328125, -12.534859657287484 ], [ -76.759307861328125, -12.534305572509766 ], [ -76.75958251953125, -12.534305572509766 ], [ -76.75958251953125, -12.534028053283691 ], [ -76.760139465332031, -12.534028053283691 ], [ -76.760139465332031, -12.533749580383301 ], [ -76.760971069335881, -12.533749580383301 ], [ -76.760971069335881, -12.533472061157227 ], [ -76.761802673339787, -12.533472061157227 ], [ -76.761802673339787, -12.533193588256836 ], [ -76.761528015136662, -12.533193588256836 ], [ -76.761528015136662, -12.532916069030762 ], [ -76.761802673339787, -12.532917976379338 ], [ -76.761802673339787, -12.532636642456055 ], [ -76.7620849609375, -12.532636642456055 ], [ -76.7620849609375, -12.53235912322998 ], [ -76.762641906738281, -12.53236198425293 ], [ -76.762641906738281, -12.532084465026855 ], [ -76.762916564941406, -12.532084465026855 ], [ -76.762916564941406, -12.531805992126465 ], [ -76.763191223144531, -12.531805992126465 ], [ -76.763191223144531, -12.531528472900391 ], [ -76.763748168945312, -12.531528472900391 ], [ -76.763748168945312, -12.531249046325627 ], [ -76.764030456542855, -12.531249046325627 ], [ -76.764030456542855, -12.530970573425236 ], [ -76.764579772949162, -12.530970573425236 ], [ -76.764579772949162, -12.530693054199219 ], [ -76.764862060546818, -12.530693054199219 ], [ -76.764862060546818, -12.530418395996037 ], [ -76.765419006347656, -12.530418395996037 ], [ -76.765419006347656, -12.530137062072754 ], [ -76.765693664550781, -12.530139923095646 ], [ -76.765693664550781, -12.529861450195256 ], [ -76.766250610351562, -12.529861450195256 ], [ -76.766250610351562, -12.529581069946289 ], [ -76.766525268554688, -12.529582977294865 ], [ -76.766525268554688, -12.529305458068791 ], [ -76.767082214355355, -12.529305458068791 ], [ -76.767082214355355, -12.5290269851684 ], [ -76.767364501953068, -12.5290269851684 ], [ -76.767364501953068, -12.528749465942326 ], [ -76.767913818359318, -12.528749465942326 ], [ -76.767913818359318, -12.528470993041935 ], [ -76.768196105956974, -12.528470993041935 ], [ -76.768196105956974, -12.528195381164551 ], [ -76.768753051757812, -12.528195381164551 ], [ -76.768753051757812, -12.527915000915471 ], [ -76.769302368164062, -12.52791690826416 ], [ -76.769302368164062, -12.527639389037972 ], [ -76.769859313964844, -12.527639389037972 ], [ -76.769859313964844, -12.527359008789062 ], [ -76.7701416015625, -12.527360916137695 ], [ -76.7701416015625, -12.527083396911564 ], [ -76.770690917968693, -12.527083396911564 ], [ -76.770690917968693, -12.526804924011117 ], [ -76.771247863769474, -12.526804924011117 ], [ -76.771247863769474, -12.526527404785099 ], [ -76.771804809570312, -12.526527404785099 ], [ -76.771804809570312, -12.526248931884709 ], [ -76.772361755371094, -12.526248931884709 ], [ -76.772361755371094, -12.525973320007324 ], [ -76.772636413574219, -12.525973320007324 ], [ -76.772636413574219, -12.525694847106934 ], [ -76.773193359375, -12.525694847106934 ], [ -76.773193359375, -12.525417327880859 ], [ -76.773750305175724, -12.525417327880859 ], [ -76.773750305175724, -12.525138854980469 ], [ -76.774307250976506, -12.525138854980469 ], [ -76.774307250976506, -12.524861335754395 ], [ -76.774581909179631, -12.524861335754395 ], [ -76.774581909179631, -12.524582862854004 ], [ -76.775138854980469, -12.524582862854004 ], [ -76.775138854980469, -12.52430534362793 ], [ -76.77569580078125, -12.52430534362793 ], [ -76.77569580078125, -12.524026870727539 ], [ -76.777084350585881, -12.524026870727539 ], [ -76.777084350585881, -12.523751258850098 ], [ -76.777359008789006, -12.523751258850098 ], [ -76.777359008789006, -12.523470878601074 ], [ -76.777915954589844, -12.523470878601074 ], [ -76.777915954589844, -12.523195266723633 ], [ -76.778190612792969, -12.523195266723633 ], [ -76.7781982421875, -12.522916793823242 ], [ -76.77874755859375, -12.522916793823242 ], [ -76.77874755859375, -12.522639274597168 ], [ -76.779029846191406, -12.522639274597168 ], [ -76.779029846191406, -12.522360801696777 ], [ -76.779586791992188, -12.522360801696777 ], [ -76.779586791992188, -12.522083282470703 ], [ -76.779861450195199, -12.522083282470703 ], [ -76.779861450195199, -12.521804809570312 ], [ -76.780418395996037, -12.521804809570312 ], [ -76.780418395996037, -12.521527290344238 ], [ -76.780693054199162, -12.521527290344238 ], [ -76.780693054199162, -12.521248817443848 ], [ -76.780975341796818, -12.521248817443848 ], [ -76.780975341796818, -12.520971298217773 ], [ -76.781524658203125, -12.520973205566349 ], [ -76.781524658203125, -12.520694732665959 ], [ -76.781806945800781, -12.520694732665959 ], [ -76.781806945800781, -12.520414352416992 ], [ -76.782363891601562, -12.520417213439941 ], [ -76.782363891601562, -12.520138740539494 ], [ -76.782638549804688, -12.520138740539494 ], [ -76.782638549804688, -12.519861221313477 ], [ -76.783752441406193, -12.519861221313477 ], [ -76.78399658203125, -12.519143104553223 ], [ -76.784568786621094, -12.516583442687988 ], [ -76.786003112792969, -12.513083457946777 ], [ -76.787322998046875, -12.510724067687931 ], [ -76.790786743164062, -12.50556755065918 ], [ -76.790672302246094, -12.505152702331429 ], [ -76.788841247558594, -12.503420829772892 ], [ -76.787963867187443, -12.503090858459416 ], [ -76.787178039550724, -12.500837326049691 ], [ -76.786735534667969, -12.500350952148438 ], [ -76.783889770507812, -12.499565124511719 ], [ -76.780136108398381, -12.49730396270752 ], [ -76.778083801269531, -12.497297286987248 ], [ -76.777267456054631, -12.49708080291748 ], [ -76.773788452148438, -12.494931221008301 ], [ -76.773048400878906, -12.493979454040471 ], [ -76.772308349609318, -12.491786003112736 ], [ -76.770782470703068, -12.490169525146428 ], [ -76.765106201171875, -12.484811782836857 ], [ -76.759696960449219, -12.480816841125488 ], [ -76.758369445800724, -12.479513168334961 ], [ -76.756126403808594, -12.477855682373047 ], [ -76.754478454589787, -12.47608757019043 ], [ -76.75384521484375, -12.474859237670898 ], [ -76.753326416015568, -12.470849990844727 ], [ -76.752288818359318, -12.467604637145996 ], [ -76.750999450683594, -12.464938163757324 ], [ -76.751602172851506, -12.462004661560059 ], [ -76.756790161132812, -12.444026947021428 ], [ -76.755508422851506, -12.437979698181096 ], [ -76.752983093261719, -12.431126594543457 ], [ -76.752952575683537, -12.429652214050293 ], [ -76.753387451171875, -12.428764343261662 ], [ -76.753273010253906, -12.428062438964844 ], [ -76.753623962402287, -12.424850463867131 ], [ -76.753723144531193, -12.420519828796387 ], [ -76.756072998046875, -12.409619331359806 ], [ -76.756011962890568, -12.401602745056152 ], [ -76.755485534667969, -12.397747039794922 ], [ -76.755760192871094, -12.39674186706543 ], [ -76.753280639648438, -12.396386146545296 ], [ -76.746742248535099, -12.396356582641602 ], [ -76.744735717773381, -12.396794319152832 ], [ -76.742835998535099, -12.397537231445312 ], [ -76.741355895996094, -12.397765159606877 ], [ -76.740280151367131, -12.397463798522892 ], [ -76.738960266113281, -12.396443367004395 ], [ -76.735626220703125, -12.396528244018555 ], [ -76.733375549316406, -12.395674705505257 ], [ -76.732254028320256, -12.395736694335938 ], [ -76.731468200683594, -12.396222114562988 ], [ -76.730621337890568, -12.396306037902832 ], [ -76.729408264160099, -12.395834922790471 ], [ -76.72735595703125, -12.395756721496582 ], [ -76.725814819335938, -12.394954681396484 ], [ -76.722450256347543, -12.395707130432072 ], [ -76.7200927734375, -12.393772125244084 ], [ -76.7197265625, -12.393219947814885 ], [ -76.719535827636719, -12.392354011535588 ], [ -76.71749114990223, -12.392709732055664 ], [ -76.715835571289006, -12.392079353332463 ], [ -76.715599060058594, -12.391800880432072 ], [ -76.715393066406136, -12.390618324279785 ], [ -76.715034484863281, -12.390187263488656 ], [ -76.713607788085938, -12.389760971069336 ], [ -76.712562561035156, -12.388837814331055 ], [ -76.710533142089844, -12.38862133026123 ], [ -76.708457946777344, -12.387189865112305 ], [ -76.706977844238224, -12.386629104614258 ], [ -76.704048156738281, -12.385004043579102 ], [ -76.70367431640625, -12.384979248046818 ], [ -76.701812744140625, -12.38358211517334 ], [ -76.700218200683537, -12.381655693054086 ], [ -76.698013305664006, -12.380459785461312 ], [ -76.696823120117188, -12.380228996276855 ], [ -76.694023132324162, -12.380204200744629 ], [ -76.690902709960938, -12.379228591918888 ], [ -76.689140319824162, -12.379057884216252 ], [ -76.685615539550724, -12.379558563232365 ], [ -76.68463134765625, -12.379810333251953 ], [ -76.683174133300781, -12.380633354187012 ], [ -76.682167053222656, -12.380682945251408 ], [ -76.677345275878906, -12.377178192138615 ], [ -76.674171447753849, -12.373671531677246 ], [ -76.67376708984375, -12.369200706481934 ], [ -76.667816162109375, -12.36247730255127 ], [ -76.667533874511719, -12.36151123046875 ], [ -76.667922973632812, -12.360089302062988 ], [ -76.674957275390511, -12.359420776367131 ], [ -76.676773071289062, -12.357848167419434 ], [ -76.677375793457031, -12.356216430663949 ], [ -76.678573608398381, -12.354924201965332 ], [ -76.67919921875, -12.354721069335938 ], [ -76.681526184081974, -12.354778289794865 ], [ -76.682518005371094, -12.353707313537598 ], [ -76.682640075683594, -12.352423667907715 ], [ -76.681922912597656, -12.350042343139592 ], [ -76.68194580078125, -12.347084045410156 ], [ -76.681259155273438, -12.345073699951172 ], [ -76.681068420410156, -12.343058586120605 ], [ -76.680572509765568, -12.342067718505803 ], [ -76.677963256835938, -12.338802337646484 ], [ -76.677665710449219, -12.338125228881779 ], [ -76.677665710449219, -12.336832046508789 ], [ -76.677307128906193, -12.336087226867619 ], [ -76.677337646484318, -12.335631370544434 ], [ -76.678886413574219, -12.333110809326115 ], [ -76.677749633789062, -12.330813407897892 ], [ -76.677055358886605, -12.326730728149414 ], [ -76.675926208496094, -12.324288368224984 ], [ -76.674163818359318, -12.319228172302246 ], [ -76.673416137695256, -12.318870544433594 ], [ -76.672264099121037, -12.319690704345589 ], [ -76.671737670898438, -12.319821357727051 ], [ -76.670127868652344, -12.319314956665039 ], [ -76.668731689453068, -12.317824363708439 ], [ -76.667259216308594, -12.315800666808968 ], [ -76.666091918945312, -12.313085556030273 ], [ -76.664863586425781, -12.311573028564396 ], [ -76.664199829101562, -12.309651374816895 ], [ -76.663444519042969, -12.308490753173828 ], [ -76.66241455078125, -12.30786228179926 ], [ -76.660942077636719, -12.30786228179926 ], [ -76.659263610839844, -12.307388305663949 ], [ -76.655883789062386, -12.305074691772461 ], [ -76.654525756835881, -12.303736686706429 ], [ -76.654075622558594, -12.303016662597656 ], [ -76.653816223144531, -12.302322387695256 ], [ -76.653785705566293, -12.299843788146916 ], [ -76.653450012207031, -12.298879623413086 ], [ -76.653450012207031, -12.297588348388672 ], [ -76.653099060058537, -12.295963287353516 ], [ -76.653083801269474, -12.291180610656681 ], [ -76.652191162109375, -12.287126541137695 ], [ -76.651100158691349, -12.284774780273381 ], [ -76.649703979492188, -12.28371524810791 ], [ -76.646743774414062, -12.283571243286076 ], [ -76.644699096679631, -12.282894134521484 ], [ -76.643386840820256, -12.282180786132756 ], [ -76.641151428222656, -12.281524658203068 ], [ -76.637443542480412, -12.279115676879883 ], [ -76.636405944824162, -12.278053283691406 ], [ -76.633766174316406, -12.271544456481934 ], [ -76.632331848144531, -12.268750190734806 ], [ -76.632087707519531, -12.264439582824707 ], [ -76.630836486816406, -12.262284278869572 ], [ -76.629829406738224, -12.26107215881342 ], [ -76.629112243652344, -12.259071350097656 ], [ -76.628311157226506, -12.257935523986816 ], [ -76.628189086914062, -12.25711536407465 ], [ -76.626640319824219, -12.253960609436035 ], [ -76.625770568847656, -12.251036643981934 ], [ -76.625526428222599, -12.250764846801701 ], [ -76.625411987304688, -12.248370170593262 ], [ -76.626174926757812, -12.246006965637207 ], [ -76.6259765625, -12.2442626953125 ], [ -76.622169494628906, -12.239360809326115 ], [ -76.621513366699219, -12.237544059753361 ], [ -76.621482849121094, -12.233777046203556 ], [ -76.6220703125, -12.231638908386117 ], [ -76.622283935546818, -12.231447219848633 ], [ -76.622352600097656, -12.230173110961857 ], [ -76.621734619140568, -12.226262092590332 ], [ -76.623092651367188, -12.224492073059082 ], [ -76.624015808105412, -12.223718643188477 ], [ -76.626205444335881, -12.222775459289551 ], [ -76.629005432128906, -12.222088813781738 ], [ -76.631965637207031, -12.220182418823242 ], [ -76.633064270019474, -12.219940185546875 ], [ -76.635299682617188, -12.219999313354492 ], [ -76.637435913085938, -12.219082832336369 ], [ -76.638641357421875, -12.21795463562006 ], [ -76.640716552734318, -12.213630676269474 ], [ -76.642982482910099, -12.212009429931584 ], [ -76.645027160644531, -12.211101531982422 ], [ -76.645851135253849, -12.21095085144043 ], [ -76.64666748046875, -12.210476875305176 ], [ -76.648101806640625, -12.209148406982365 ], [ -76.649856567382756, -12.205898284912053 ], [ -76.650901794433537, -12.202549934387207 ], [ -76.651702880859375, -12.199047088622933 ], [ -76.651672363281193, -12.196201324462891 ], [ -76.652366638183594, -12.194993019104004 ], [ -76.652908325195256, -12.19246673583973 ], [ -76.656387329101562, -12.18928337097168 ], [ -76.657508850097656, -12.186844825744572 ], [ -76.658462524414062, -12.183953285217285 ], [ -76.660346984863224, -12.18190956115717 ], [ -76.662055969238224, -12.178952217101937 ], [ -76.662826538085881, -12.178297996520939 ], [ -76.6629638671875, -12.177356719970703 ], [ -76.662078857421818, -12.176512718200627 ], [ -76.661972045898381, -12.176059722900334 ], [ -76.661262512207031, -12.175470352172852 ], [ -76.660942077636719, -12.174900054931584 ], [ -76.66094970703125, -12.173065185546875 ], [ -76.661247253417969, -12.172819137573242 ], [ -76.663116455078068, -12.1728258132934 ], [ -76.663787841796818, -12.172497749328613 ], [ -76.664520263671875, -12.172601699829102 ], [ -76.665863037109318, -12.172312736511174 ], [ -76.669349670410156, -12.17332935333252 ], [ -76.670265197753849, -12.172720909118652 ], [ -76.670684814453125, -12.171904563903752 ], [ -76.671844482421875, -12.171697616577092 ], [ -76.672927856445256, -12.170968055725098 ], [ -76.673614501953068, -12.169671058654728 ], [ -76.674583435058594, -12.16868877410883 ], [ -76.674903869628906, -12.166499137878361 ], [ -76.676261901855412, -12.164935111999512 ], [ -76.677688598632756, -12.163806915283203 ], [ -76.680068969726562, -12.163421630859375 ], [ -76.681823730468636, -12.160799026489258 ], [ -76.683013916015625, -12.159625053405705 ], [ -76.684410095214844, -12.157439231872502 ], [ -76.685737609863281, -12.154702186584416 ], [ -76.687576293945312, -12.152521133422795 ], [ -76.688385009765568, -12.150651931762582 ], [ -76.688583374023381, -12.149187088012638 ], [ -76.689674377441406, -12.145952224731388 ], [ -76.691757202148438, -12.143254280090275 ], [ -76.692047119140625, -12.141147613525334 ], [ -76.691459655761719, -12.13979434967041 ], [ -76.689002990722656, -12.137813568115178 ], [ -76.686569213867131, -12.135260581970215 ], [ -76.683784484863281, -12.133579254150391 ], [ -76.682426452636719, -12.132446289062443 ], [ -76.681015014648438, -12.13171482086176 ], [ -76.679954528808594, -12.13020133972168 ], [ -76.680099487304631, -12.129732131957951 ], [ -76.680519104003906, -12.129366874694824 ], [ -76.682327270507812, -12.129373550414982 ], [ -76.683074951171875, -12.129091262817326 ], [ -76.686767578124943, -12.126126289367676 ], [ -76.688674926757756, -12.125683784484863 ], [ -76.691139221191349, -12.124629020690861 ], [ -76.691932678222543, -12.123377799987736 ], [ -76.692390441894474, -12.121992111206055 ], [ -76.693328857421818, -12.120747566223088 ], [ -76.694389343261662, -12.118579864501953 ], [ -76.697860717773438, -12.115521430969181 ], [ -76.701286315917969, -12.115139007568359 ], [ -76.70147705078125, -12.114929199218693 ], [ -76.703704833984375, -12.114344596862793 ], [ -76.707992553710938, -12.114457130432072 ], [ -76.709121704101562, -12.113997459411621 ], [ -76.70989990234375, -12.11334037780756 ], [ -76.713249206542969, -12.109060287475529 ], [ -76.713775634765625, -12.10767745971674 ], [ -76.715309143066406, -12.104936599731388 ], [ -76.71551513671875, -12.102748870849609 ], [ -76.716072082519531, -12.102122306823674 ], [ -76.7166748046875, -12.100481033325138 ], [ -76.717170715331974, -12.099944114685059 ], [ -76.716789245605412, -12.098827362060547 ], [ -76.714073181152344, -12.09537220001215 ], [ -76.708656311035156, -12.09017276763916 ], [ -76.706962585449219, -12.089078903198242 ], [ -76.705619812011719, -12.086158752441406 ], [ -76.702476501464844, -12.086113929748535 ], [ -76.701766967773438, -12.086345672607422 ], [ -76.700828552246094, -12.08631420135498 ], [ -76.6978759765625, -12.087679862976074 ], [ -76.69586181640625, -12.088034629821777 ], [ -76.692886352538949, -12.087745666503849 ], [ -76.688804626464844, -12.086684226989632 ], [ -76.68731689453125, -12.088021278381348 ], [ -76.686592102050668, -12.088137626647949 ], [ -76.686080932617131, -12.08791446685791 ], [ -76.685478210449219, -12.087340354919377 ], [ -76.684661865234318, -12.085582733154297 ], [ -76.681053161621037, -12.08223915100092 ], [ -76.678955078124943, -12.078431129455453 ], [ -76.676986694335938, -12.076461791992188 ], [ -76.67486572265625, -12.073898315429631 ], [ -76.673934936523438, -12.072131156921387 ], [ -76.674453735351506, -12.070961952209416 ], [ -76.674934387206974, -12.068428039550781 ], [ -76.675308227539006, -12.06218147277832 ], [ -76.67629241943348, -12.060193061828556 ], [ -76.676887512207031, -12.057877540588379 ], [ -76.677940368652344, -12.056136131286564 ], [ -76.67852783203125, -12.053717613220215 ], [ -76.679847717285156, -12.051088333129769 ], [ -76.680633544921875, -12.050296783447266 ], [ -76.683830261230469, -12.048234939575195 ], [ -76.687484741210938, -12.044822692871037 ], [ -76.689430236816349, -12.043763160705566 ], [ -76.690338134765625, -12.042708396911564 ], [ -76.6912841796875, -12.041110038757324 ], [ -76.693122863769531, -12.039860725402832 ], [ -76.694526672363281, -12.037910461425781 ], [ -76.697906494140568, -12.03496074676508 ], [ -76.699905395507812, -12.033780097961369 ], [ -76.700553894042969, -12.033696174621525 ], [ -76.701080322265568, -12.033025741577092 ], [ -76.703849792480412, -12.033025741577092 ], [ -76.704582214355412, -12.032451629638672 ], [ -76.704826354980469, -12.031674385070744 ], [ -76.705314636230469, -12.031118392944279 ], [ -76.706680297851506, -12.030928611755371 ], [ -76.707237243652344, -12.030439376831055 ], [ -76.708419799804631, -12.028053283691293 ], [ -76.70867919921875, -12.026976585388127 ], [ -76.710357666015625, -12.024091720580998 ], [ -76.710578918457031, -12.019416809082031 ], [ -76.712287902832031, -12.013911247253361 ], [ -76.713706970214844, -12.010367393493596 ], [ -76.719223022460938, -12.004139900207406 ], [ -76.719322204589844, -12.003244400024414 ], [ -76.720237731933537, -12.001369476318359 ], [ -76.720634460449162, -11.999931335449219 ], [ -76.718795776367131, -11.996035575866699 ], [ -76.715782165527344, -11.99304294586176 ], [ -76.715095520019474, -11.992090225219727 ], [ -76.714401245117188, -11.99256420135498 ], [ -76.713127136230469, -11.992644309997502 ], [ -76.7091064453125, -11.991990089416504 ], [ -76.700889587402287, -11.987736701965218 ], [ -76.698905944824219, -11.986465454101506 ], [ -76.694847106933594, -11.986977577209359 ], [ -76.691665649414062, -11.986926078796273 ], [ -76.689353942871037, -11.987997055053711 ], [ -76.686988830566406, -11.989845275878906 ], [ -76.686119079589844, -11.9898681640625 ], [ -76.684799194335938, -11.989497184753361 ], [ -76.682556152343693, -11.988452911376896 ], [ -76.680503845214844, -11.98655891418457 ], [ -76.678276062011662, -11.985811233520508 ], [ -76.675666809082031, -11.983306884765568 ], [ -76.673301696777287, -11.981521606445312 ], [ -76.671257019042969, -11.981057167053166 ], [ -76.669631958007812, -11.981841087341252 ], [ -76.668182373046818, -11.981949806213379 ], [ -76.665451049804688, -11.979886054992619 ], [ -76.66314697265625, -11.979033470153809 ], [ -76.660026550292969, -11.978445053100586 ], [ -76.658935546874886, -11.976608276367188 ], [ -76.656478881835938, -11.975094795227051 ], [ -76.654998779296818, -11.973504066467228 ], [ -76.654335021972599, -11.972034454345703 ], [ -76.652793884277344, -11.970778465270939 ], [ -76.650924682617074, -11.969668388366586 ], [ -76.649581909179631, -11.969440460205078 ], [ -76.645729064941406, -11.96815013885498 ], [ -76.646430969238224, -11.966377258300781 ], [ -76.648284912109375, -11.963562011718693 ], [ -76.648422241210881, -11.962866783142033 ], [ -76.648109436035156, -11.96203517913807 ], [ -76.646095275878906, -11.959952354431152 ], [ -76.645118713378906, -11.958112716674805 ], [ -76.644760131835938, -11.956830024719181 ], [ -76.645240783691406, -11.955678939819336 ], [ -76.648345947265568, -11.951804161071721 ], [ -76.653450012207031, -11.947604179382267 ], [ -76.655097961425724, -11.945144653320256 ], [ -76.660682678222656, -11.939172744750977 ], [ -76.662376403808594, -11.93781661987299 ], [ -76.664382934570312, -11.936591148376465 ], [ -76.667343139648438, -11.934061050414982 ], [ -76.669021606445256, -11.931927680969181 ], [ -76.669830322265625, -11.930423736572266 ], [ -76.6700439453125, -11.929553031921387 ], [ -76.669929504394531, -11.928738594055176 ], [ -76.6678466796875, -11.924638748168945 ], [ -76.667762756347656, -11.924125671386719 ], [ -76.668159484863224, -11.922442436218205 ], [ -76.667732238769531, -11.921168327331543 ], [ -76.668182373046818, -11.92049598693842 ], [ -76.668655395507756, -11.920249938964844 ], [ -76.67108154296875, -11.919802665710449 ], [ -76.673416137695256, -11.919652938842717 ], [ -76.674957275390511, -11.918144226074219 ], [ -76.675781249999943, -11.917758941650391 ], [ -76.677421569824162, -11.917721748351994 ], [ -76.6795654296875, -11.918457984924316 ], [ -76.680358886718693, -11.918265342712289 ], [ -76.680961608886662, -11.917393684387207 ], [ -76.681175231933594, -11.914545059204102 ], [ -76.682548522949219, -11.910929679870605 ], [ -76.683303833007812, -11.909938812255859 ], [ -76.685356140136719, -11.908282279968262 ], [ -76.68902587890625, -11.906704902648926 ], [ -76.691963195800781, -11.903694152831918 ], [ -76.6934814453125, -11.901155471801701 ], [ -76.694282531738224, -11.896738052368164 ], [ -76.694671630859318, -11.895942687988224 ], [ -76.697006225585938, -11.894235610961914 ], [ -76.700286865234375, -11.892681121826172 ], [ -76.703048706054688, -11.891751289367676 ], [ -76.705177307128849, -11.891283988952637 ], [ -76.707717895507812, -11.891505241394043 ], [ -76.709457397460881, -11.8920640945434 ], [ -76.710899353027287, -11.891846656799316 ], [ -76.716087341308594, -11.887223243713265 ], [ -76.717353820800781, -11.88651180267334 ], [ -76.719650268554631, -11.885647773742676 ], [ -76.721328735351562, -11.88457012176508 ], [ -76.723358154296875, -11.882635116577092 ], [ -76.724624633789006, -11.880880355834961 ], [ -76.725547790527344, -11.878263473510685 ], [ -76.725837707519531, -11.875331878662109 ], [ -76.726760864257812, -11.873996734619141 ], [ -76.727645874023438, -11.873929023742619 ], [ -76.729347229003906, -11.875535011291504 ], [ -76.731178283691406, -11.878535270690918 ], [ -76.734054565429631, -11.885270118713379 ], [ -76.736083984374943, -11.889281272888184 ], [ -76.737838745117188, -11.891456604003849 ], [ -76.739418029785099, -11.892812728881836 ], [ -76.741081237792969, -11.893742561340332 ], [ -76.742790222167969, -11.894371986389046 ], [ -76.744850158691349, -11.894721031188965 ], [ -76.747856140136719, -11.894766807556096 ], [ -76.75042724609375, -11.895683288574105 ], [ -76.753242492675724, -11.897807121276855 ], [ -76.755340576171818, -11.9007310867309 ], [ -76.756454467773438, -11.901790618896371 ], [ -76.758583068847599, -11.903008460998535 ], [ -76.761138916015568, -11.903561592102051 ], [ -76.771270751953068, -11.911044120788574 ], [ -76.774490356445256, -11.913681030273381 ], [ -76.775749206542912, -11.914208412170296 ], [ -76.777648925781193, -11.914430618286133 ], [ -76.780021667480412, -11.915078163146973 ], [ -76.78314208984375, -11.916557312011662 ], [ -76.784324645996037, -11.917651176452637 ], [ -76.787292480468693, -11.921175003051701 ], [ -76.790519714355412, -11.924084663391113 ], [ -76.791473388671818, -11.926013946533089 ], [ -76.792533874511662, -11.926838874816895 ], [ -76.793563842773381, -11.927193641662598 ], [ -76.796524047851506, -11.927581787109375 ], [ -76.806541442871037, -11.927696228027287 ], [ -76.809120178222599, -11.927165031433105 ], [ -76.813400268554631, -11.927337646484318 ], [ -76.815902709960881, -11.926499366760197 ], [ -76.817031860351506, -11.926374435424805 ], [ -76.817718505859318, -11.926514625549203 ], [ -76.819915771484261, -11.928533554077092 ], [ -76.823341369628849, -11.931069374084416 ], [ -76.824844360351506, -11.932632446289062 ], [ -76.825088500976562, -11.933209419250488 ], [ -76.82550048828125, -11.9364976882934 ], [ -76.828163146972656, -11.942293167114258 ], [ -76.828308105468636, -11.943196296691838 ], [ -76.82879638671875, -11.943696975707951 ], [ -76.829925537109318, -11.944278717041016 ], [ -76.832160949707031, -11.944244384765625 ], [ -76.837074279785099, -11.942096710205021 ], [ -76.842330932617188, -11.938729286193848 ], [ -76.844245910644531, -11.936691284179574 ], [ -76.845252990722599, -11.935943603515625 ], [ -76.847129821777344, -11.934990882873478 ], [ -76.848396301269474, -11.935017585754395 ], [ -76.850296020507812, -11.935395240783691 ], [ -76.852066040039062, -11.936033248901367 ], [ -76.852996826171818, -11.937158584594727 ], [ -76.854843139648438, -11.940136909484806 ], [ -76.856353759765625, -11.941438674926758 ], [ -76.870437622070256, -11.946651458740234 ], [ -76.87923431396473, -11.950624465942383 ], [ -76.882362365722599, -11.951164245605412 ], [ -76.885887145996037, -11.952412605285645 ], [ -76.886390686035156, -11.952771186828613 ], [ -76.888168334960881, -11.95501804351801 ], [ -76.891197204589844, -11.956672668457031 ], [ -76.892814636230469, -11.956969261169377 ], [ -76.895637512206918, -11.956985473632756 ], [ -76.897125244140625, -11.957418441772404 ], [ -76.898841857910156, -11.95760536193842 ], [ -76.900070190429688, -11.957261085510254 ], [ -76.901916503906193, -11.955965995788574 ], [ -76.903076171874886, -11.955434799194222 ], [ -76.906242370605469, -11.955285072326603 ], [ -76.909660339355469, -11.954060554504338 ], [ -76.910659790039062, -11.954008102416992 ], [ -76.913551330566349, -11.955551147460881 ], [ -76.916900634765568, -11.959480285644474 ], [ -76.918197631835938, -11.959903717041016 ], [ -76.919479370117074, -11.959452629089299 ], [ -76.920944213867188, -11.957751274108887 ], [ -76.921150207519531, -11.956513404846191 ], [ -76.921096801757756, -11.953729629516602 ], [ -76.922737121582031, -11.950628280639592 ], [ -76.923561096191349, -11.948345184326172 ], [ -76.924797058105412, -11.946354866027832 ], [ -76.926811218261662, -11.944165229797363 ], [ -76.931297302246037, -11.942035675048714 ], [ -76.929061889648438, -11.937586784362736 ], [ -76.928703308105412, -11.934740066528207 ], [ -76.927658081054631, -11.93348217010498 ], [ -76.926315307617131, -11.932399749755746 ], [ -76.924644470214844, -11.931479454040527 ], [ -76.917518615722656, -11.928716659545842 ], [ -76.915176391601506, -11.927006721496582 ], [ -76.913803100585938, -11.925344467163086 ], [ -76.913650512695256, -11.924530029296875 ], [ -76.913955688476562, -11.923588752746582 ], [ -76.917678833007812, -11.920181274414006 ], [ -76.918411254882756, -11.919038772583008 ], [ -76.918426513671818, -11.918134689330998 ], [ -76.918014526367131, -11.916853904724121 ], [ -76.916847229003906, -11.914820671081486 ], [ -76.916252136230469, -11.912564277648869 ], [ -76.916526794433594, -11.911243438720703 ], [ -76.917984008789062, -11.909082412719613 ], [ -76.917922973632756, -11.906850814819336 ], [ -76.914588928222599, -11.898447036743164 ], [ -76.914054870605469, -11.895441055297795 ], [ -76.914039611816349, -11.893461227416992 ], [ -76.913719177246094, -11.891610145568734 ], [ -76.912910461425781, -11.889529228210392 ], [ -76.911575317382812, -11.888353347778263 ], [ -76.910369873046875, -11.88797473907465 ], [ -76.905349731445256, -11.887205123901367 ], [ -76.904205322265568, -11.886297225952148 ], [ -76.903556823730469, -11.884820938110352 ], [ -76.90264892578125, -11.883940696716309 ], [ -76.901229858398381, -11.883127212524357 ], [ -76.896751403808537, -11.881385803222656 ], [ -76.896446228027344, -11.879534721374455 ], [ -76.896621704101562, -11.878566741943359 ], [ -76.897338867187443, -11.876915931701603 ], [ -76.898567199706974, -11.875028610229435 ], [ -76.8988037109375, -11.87353420257557 ], [ -76.898597717285156, -11.872117042541447 ], [ -76.897529602050724, -11.868860244750977 ], [ -76.897087097167969, -11.868086814880314 ], [ -76.895660400390625, -11.866559982299805 ], [ -76.895401000976562, -11.865900993347111 ], [ -76.895431518554631, -11.865152359008789 ], [ -76.895751953125, -11.864518165588322 ], [ -76.896507263183594, -11.864034652709904 ], [ -76.897834777832031, -11.864185333251896 ], [ -76.900459289550781, -11.863862037658691 ], [ -76.903762817382812, -11.864816665649357 ], [ -76.905479431152344, -11.864569664001351 ], [ -76.908332824707031, -11.864559173583928 ], [ -76.913589477539062, -11.865049362182617 ], [ -76.916267395019531, -11.8656005859375 ], [ -76.918289184570312, -11.86679744720459 ], [ -76.920402526855412, -11.867624282836914 ], [ -76.92205810546875, -11.868560791015625 ], [ -76.923881530761719, -11.869126319885254 ], [ -76.924972534179688, -11.869780540466252 ], [ -76.928123474121037, -11.870635032653809 ], [ -76.931098937988224, -11.870236396789494 ], [ -76.934104919433594, -11.870134353637695 ], [ -76.935150146484375, -11.869844436645508 ], [ -76.936141967773381, -11.869213104248047 ], [ -76.939582824706974, -11.865628242492676 ], [ -76.940216064453125, -11.864748001098633 ], [ -76.941093444824162, -11.862591743469181 ], [ -76.94219970703125, -11.860730171203613 ], [ -76.941749572753906, -11.859784126281738 ], [ -76.941581726074162, -11.858729362487736 ], [ -76.939491271972599, -11.854648590087834 ], [ -76.935043334960938, -11.848090171813965 ], [ -76.933952331542912, -11.844951629638558 ], [ -76.933792114257812, -11.843615531921387 ], [ -76.933929443359375, -11.84200477600092 ], [ -76.934501647949219, -11.840022087097168 ], [ -76.934745788574219, -11.838159561157227 ], [ -76.935592651367131, -11.836363792419434 ], [ -76.936027526855469, -11.834725379943848 ], [ -76.935989379882812, -11.833648681640625 ], [ -76.935737609863281, -11.833170890808049 ], [ -76.935157775878906, -11.8328857421875 ], [ -76.932823181152287, -11.834274291992188 ], [ -76.931510925292969, -11.834638595581055 ], [ -76.930503845214844, -11.834670066833496 ], [ -76.928207397460938, -11.834107398986816 ], [ -76.923980712890625, -11.832013130187988 ], [ -76.921134948730469, -11.82988166809082 ], [ -76.917991638183594, -11.829378128051758 ], [ -76.912361145019531, -11.827084541320801 ], [ -76.909362792968693, -11.827141761779671 ], [ -76.90822601318348, -11.826823234558105 ], [ -76.907386779785156, -11.826288223266545 ], [ -76.90484619140625, -11.823835372924805 ], [ -76.9024658203125, -11.822966575622502 ], [ -76.900909423828125, -11.822046279907227 ], [ -76.90093994140625, -11.820959091186467 ], [ -76.904090881347599, -11.817984580993652 ], [ -76.905082702636719, -11.816576004028207 ], [ -76.905456542968693, -11.815570831298771 ], [ -76.905731201171818, -11.812802314758244 ], [ -76.906127929687386, -11.811054229736328 ], [ -76.906227111816406, -11.804067611694279 ], [ -76.907188415527344, -11.802442550659123 ], [ -76.907173156738224, -11.801095962524357 ], [ -76.906494140624943, -11.797133445739689 ], [ -76.904403686523381, -11.794716835021859 ], [ -76.901565551757812, -11.793922424316349 ], [ -76.896415710449219, -11.793087959289494 ], [ -76.894584655761662, -11.793073654174805 ], [ -76.892501831054688, -11.793350219726506 ], [ -76.887451171875, -11.795379638671875 ], [ -76.886123657226562, -11.795669555664062 ], [ -76.883636474609375, -11.795151710510254 ], [ -76.881866455078125, -11.793773651123047 ], [ -76.879806518554574, -11.793416023254395 ], [ -76.878860473632812, -11.793754577636719 ], [ -76.875495910644474, -11.795892715454102 ], [ -76.872566223144531, -11.796897888183594 ], [ -76.856506347656193, -11.798061370849609 ], [ -76.854499816894474, -11.798047065734806 ], [ -76.85162353515625, -11.797513961791992 ], [ -76.8486328125, -11.795808792114258 ], [ -76.84686279296875, -11.793306350707894 ], [ -76.844459533691406, -11.788278579711914 ], [ -76.840278625488281, -11.784155845642033 ], [ -76.837654113769418, -11.781171798705998 ], [ -76.836563110351562, -11.780356407165471 ], [ -76.834251403808594, -11.779302597045898 ], [ -76.825721740722599, -11.776450157165414 ], [ -76.821128845214787, -11.774182319641056 ], [ -76.819511413574162, -11.773173332214299 ], [ -76.817916870117188, -11.771345138549748 ], [ -76.814971923828125, -11.767234802246094 ], [ -76.813179016113281, -11.76521110534668 ], [ -76.81182861328125, -11.763184547424316 ], [ -76.806968688964844, -11.758208274841252 ], [ -76.804695129394531, -11.756568908691406 ], [ -76.805915832519531, -11.753669738769474 ], [ -76.807388305664006, -11.752359390258732 ], [ -76.810325622558594, -11.751381874084416 ], [ -76.814498901367188, -11.749394416809025 ], [ -76.817687988281193, -11.748325347900334 ], [ -76.827384948730469, -11.746573448181096 ], [ -76.832595825195256, -11.744712829589787 ], [ -76.840469360351562, -11.746190071105957 ], [ -76.848197937011719, -11.746411323547363 ], [ -76.858848571777344, -11.749134063720703 ], [ -76.860588073730469, -11.74914360046381 ], [ -76.862091064453125, -11.748805999755803 ], [ -76.86859130859375, -11.745465278625488 ], [ -76.8743896484375, -11.743935585021973 ], [ -76.875961303710881, -11.742869377136174 ], [ -76.876579284667969, -11.742094039916879 ], [ -76.877136230468636, -11.740483283996582 ], [ -76.879173278808594, -11.736600875854492 ], [ -76.880058288574162, -11.733223915100098 ], [ -76.880371093749943, -11.732768058776799 ], [ -76.881439208984375, -11.732763290405273 ], [ -76.8826904296875, -11.73432731628418 ], [ -76.883422851562443, -11.734809875488281 ], [ -76.884956359863168, -11.735142707824707 ], [ -76.886329650878906, -11.735124588012638 ], [ -76.887893676757756, -11.734680175781193 ], [ -76.892982482910156, -11.731311798095703 ], [ -76.895240783691349, -11.730375289916992 ], [ -76.898826599121094, -11.729763984680119 ], [ -76.902374267578068, -11.729640960693303 ], [ -76.903915405273381, -11.729686737060547 ], [ -76.905509948730469, -11.730080604553223 ], [ -76.908454895019531, -11.731254577636662 ], [ -76.913261413574162, -11.732651710510254 ], [ -76.914710998535043, -11.733399391174316 ], [ -76.914955139160156, -11.734537124633732 ], [ -76.914123535156193, -11.738663673400879 ], [ -76.913955688476562, -11.741893768310547 ], [ -76.914070129394531, -11.743048667907658 ], [ -76.914527893066406, -11.743723869323674 ], [ -76.916641235351562, -11.745678901672306 ], [ -76.918365478515625, -11.746844291687012 ], [ -76.921760559081974, -11.750770568847656 ], [ -76.926612854003849, -11.752807617187443 ], [ -76.928520202636662, -11.753400802612305 ], [ -76.930587768554688, -11.753722190856877 ], [ -76.931983947753906, -11.755366325378361 ], [ -76.933021545410043, -11.75563907623291 ], [ -76.934913635253849, -11.754568099975529 ], [ -76.937431335449219, -11.751740455627441 ], [ -76.938537597656193, -11.750946044921875 ], [ -76.940887451171875, -11.750242233276367 ], [ -76.945510864257756, -11.75029468536377 ], [ -76.946601867675781, -11.749481201171818 ], [ -76.948394775390625, -11.747562408447209 ], [ -76.950454711914006, -11.74610328674305 ], [ -76.95247650146473, -11.743910789489689 ], [ -76.953613281249943, -11.742292404174805 ], [ -76.95477294921875, -11.739030838012638 ], [ -76.955047607421818, -11.736364364623967 ], [ -76.957839965820312, -11.735529899597111 ], [ -76.959243774414006, -11.73471736907959 ], [ -76.960220336914062, -11.733199119567871 ], [ -76.960731506347656, -11.731236457824707 ], [ -76.961685180664062, -11.729926109313965 ], [ -76.964752197265568, -11.728557586669922 ], [ -76.969284057617188, -11.725255966186523 ], [ -76.970848083496037, -11.724558830261174 ], [ -76.972953796386662, -11.724527359008732 ], [ -76.974388122558537, -11.725049018859863 ], [ -76.975685119628906, -11.725075721740666 ], [ -76.976676940917912, -11.726189613342285 ], [ -76.978195190429631, -11.726992607116699 ], [ -76.979721069335881, -11.726737022399846 ], [ -76.980964660644474, -11.725684165954533 ], [ -76.981025695800781, -11.724270820617676 ], [ -76.980331420898438, -11.723209381103516 ], [ -76.980033874511662, -11.721935272216797 ], [ -76.977394104003906, -11.717852592468262 ], [ -76.977027893066406, -11.716643333435002 ], [ -76.974525451660156, -11.712276458740178 ], [ -76.973899841308537, -11.710221290588265 ], [ -76.974197387695256, -11.708085060119572 ], [ -76.97503662109375, -11.705431938171387 ], [ -76.978210449218693, -11.699542999267578 ], [ -76.979034423828125, -11.697593688964787 ], [ -76.978973388671818, -11.696581840515137 ], [ -76.978614807128906, -11.695571899414006 ], [ -76.977973937988281, -11.69490909576416 ], [ -76.976997375488281, -11.694435119628849 ], [ -76.976516723632812, -11.693770408630257 ], [ -76.976325988769531, -11.690563201904297 ], [ -76.974800109863281, -11.688774108886719 ], [ -76.974349975585938, -11.687711715698185 ], [ -76.97454833984375, -11.68667030334467 ], [ -76.976959228515568, -11.68521595001215 ], [ -76.977363586425724, -11.684481620788517 ], [ -76.979705810546875, -11.685261726379395 ], [ -76.981391906738281, -11.685214042663574 ], [ -76.983230590820312, -11.684389114379826 ], [ -76.984794616699162, -11.682632446288949 ], [ -76.985984802246094, -11.682392120361328 ], [ -76.988800048828068, -11.683769226074162 ], [ -76.994529724121037, -11.687544822692814 ], [ -76.995857238769474, -11.687834739685002 ], [ -76.999542236328125, -11.68591117858881 ], [ -77.000610351562443, -11.685747146606445 ], [ -77.001884460449219, -11.68587493896473 ], [ -77.004333496093693, -11.685063362121582 ], [ -77.006523132324162, -11.684992790222054 ], [ -77.007690429687443, -11.68464183807373 ], [ -77.010986328125, -11.682983398437443 ], [ -77.013839721679688, -11.680486679077035 ], [ -77.015678405761662, -11.679607391357422 ], [ -77.016914367675724, -11.679542541503906 ], [ -77.018722534179631, -11.680163383483887 ], [ -77.024688720703125, -11.680888175964299 ], [ -77.025123596191349, -11.676314353942757 ], [ -77.025642395019531, -11.674112319946289 ], [ -77.027221679687443, -11.67157077789301 ], [ -77.029388427734375, -11.669155120849553 ], [ -77.029891967773381, -11.668036460876465 ], [ -77.030082702636662, -11.664942741393986 ], [ -77.029739379882812, -11.663237571716252 ], [ -77.029708862304631, -11.661349296569824 ], [ -77.030532836914062, -11.657448768615666 ], [ -77.031242370605412, -11.656484603881836 ], [ -77.035110473632812, -11.652868270874023 ], [ -77.035247802734318, -11.65203857421875 ], [ -77.034317016601562, -11.650418281555119 ], [ -77.032577514648381, -11.64813232421875 ], [ -77.027450561523438, -11.643686294555664 ], [ -77.022544860839787, -11.637456893920842 ], [ -77.021354675292969, -11.636344909667912 ], [ -77.018890380859375, -11.634662628173714 ], [ -77.016143798828125, -11.631671905517521 ], [ -77.01495361328125, -11.629548072814941 ], [ -77.014694213867188, -11.628511428832894 ], [ -77.014694213867188, -11.622870445251465 ], [ -77.014480590820312, -11.622085571289062 ], [ -77.012672424316406, -11.620253562927246 ], [ -77.01080322265625, -11.619146347045842 ], [ -77.005592346191349, -11.614997863769474 ], [ -77.00506591796875, -11.614386558532658 ], [ -77.004806518554631, -11.613341331481877 ], [ -77.008285522460938, -11.609546661376896 ], [ -77.010200500488281, -11.607826232910156 ], [ -77.011428833007812, -11.606975555419865 ], [ -77.012962341308594, -11.606369018554688 ], [ -77.016258239746037, -11.604448318481388 ], [ -77.0191650390625, -11.602439880371094 ], [ -77.021148681640625, -11.599704742431641 ], [ -77.022109985351562, -11.597193717956543 ], [ -77.023887634277287, -11.595130920410156 ], [ -77.026756286621037, -11.593610763549691 ], [ -77.033882141113281, -11.590413093566838 ], [ -77.037284851074219, -11.588482856750488 ], [ -77.038490295410099, -11.587382316589355 ], [ -77.040664672851506, -11.584753990173283 ], [ -77.041496276855469, -11.582915306091252 ], [ -77.042533874511719, -11.581830024719181 ], [ -77.044052124023438, -11.580699920654297 ], [ -77.049224853515625, -11.578248977661076 ], [ -77.050918579101562, -11.576681137084961 ], [ -77.052436828613281, -11.575766563415471 ], [ -77.054588317871037, -11.575887680053711 ], [ -77.060249328613281, -11.577881813049316 ], [ -77.062026977539006, -11.578286170959473 ], [ -77.063346862792969, -11.578329086303654 ], [ -77.063972473144531, -11.577964782714844 ], [ -77.064262390136719, -11.57750225067133 ], [ -77.064483642578125, -11.574931144714299 ], [ -77.064918518066406, -11.573843955993652 ], [ -77.066238403320256, -11.572877883911076 ], [ -77.067611694335938, -11.573039054870605 ], [ -77.068496704101562, -11.573410987854004 ], [ -77.070175170898438, -11.574767112731934 ], [ -77.075248718261719, -11.575848579406625 ], [ -77.076988220214844, -11.576634407043457 ], [ -77.077484130859318, -11.577108383178597 ], [ -77.077758789062443, -11.578134536743107 ], [ -77.077575683593693, -11.582033157348576 ], [ -77.078018188476562, -11.584542274475098 ], [ -77.079772949218693, -11.589083671569824 ], [ -77.081222534179574, -11.591967582702637 ], [ -77.081680297851506, -11.592623710632324 ], [ -77.083229064941406, -11.593969345092717 ], [ -77.084152221679631, -11.595616340637207 ], [ -77.084587097167969, -11.597861289978027 ], [ -77.085357666015625, -11.599881172180062 ], [ -77.085258483886719, -11.603028297424203 ], [ -77.085990905761605, -11.605770111083871 ], [ -77.087661743164062, -11.60699558258051 ], [ -77.090736389160099, -11.608472824096623 ], [ -77.094581604003906, -11.610804557800293 ], [ -77.09735107421875, -11.612771034240723 ], [ -77.100044250488281, -11.615066528320312 ], [ -77.102401733398438, -11.617708206176701 ], [ -77.102783203125, -11.618544578552246 ], [ -77.103218078613224, -11.620673179626465 ], [ -77.103897094726506, -11.621999740600529 ], [ -77.105735778808594, -11.624361038208008 ], [ -77.107620239257756, -11.626299858093262 ], [ -77.109634399414006, -11.62772274017334 ], [ -77.112930297851562, -11.629026412963867 ], [ -77.115974426269531, -11.629817008972168 ], [ -77.118576049804631, -11.62993335723877 ], [ -77.121360778808537, -11.629316329956055 ], [ -77.122611999511605, -11.628260612487793 ], [ -77.124984741210881, -11.627229690551758 ], [ -77.125915527343693, -11.626437187194711 ], [ -77.128738403320312, -11.625304222106934 ], [ -77.130805969238224, -11.626022338867188 ], [ -77.132812499999943, -11.627191543579102 ], [ -77.134628295898324, -11.629003524780273 ], [ -77.13665771484375, -11.631725311279297 ], [ -77.137191772460881, -11.632960319519043 ], [ -77.137619018554688, -11.635088920593205 ], [ -77.137435913085938, -11.636138916015625 ], [ -77.136909484863224, -11.637281417846623 ], [ -77.136215209960881, -11.638065338134709 ], [ -77.133926391601506, -11.638532638549805 ], [ -77.132507324218693, -11.639203071594238 ], [ -77.131782531738281, -11.639806747436523 ], [ -77.131111145019531, -11.642042160034123 ], [ -77.130775451660156, -11.647730827331543 ], [ -77.130149841308594, -11.648296356201115 ], [ -77.128463745117188, -11.64919376373291 ], [ -77.1260986328125, -11.651026725768986 ], [ -77.122825622558594, -11.654458999633789 ], [ -77.122344970703125, -11.655259132385197 ], [ -77.121978759765625, -11.657284736633244 ], [ -77.122085571289062, -11.657925605773869 ], [ -77.122535705566406, -11.658438682556152 ], [ -77.123634338378849, -11.659006118774357 ], [ -77.124992370605412, -11.659188270568791 ], [ -77.13018798828125, -11.658027648925668 ], [ -77.132110595703125, -11.657996177673283 ], [ -77.133995056152344, -11.658263206481877 ], [ -77.135368347167912, -11.658922195434513 ], [ -77.136627197265568, -11.659952163696232 ], [ -77.137588500976562, -11.661090850830078 ], [ -77.138374328613281, -11.662856101989689 ], [ -77.139198303222599, -11.663112640380859 ], [ -77.140327453613224, -11.662997245788574 ], [ -77.141593933105469, -11.662515640258789 ], [ -77.145103454589787, -11.65971660614008 ], [ -77.146461486816406, -11.659063339233398 ], [ -77.150123596191406, -11.658665657043457 ], [ -77.153274536132812, -11.658614158630371 ], [ -77.156295776367188, -11.658791542053166 ], [ -77.158699035644531, -11.659260749816838 ], [ -77.163650512695312, -11.66154670715332 ], [ -77.171401977539062, -11.66456031799305 ], [ -77.173179626464844, -11.666255950927734 ], [ -77.177253723144474, -11.671250343322754 ], [ -77.179244995117131, -11.672969818115178 ], [ -77.183425903320256, -11.673897743225098 ], [ -77.185951232910156, -11.675493240356388 ], [ -77.188407897949162, -11.676685333251896 ], [ -77.193763732910156, -11.678276062011719 ], [ -77.194862365722656, -11.678750038146859 ], [ -77.195137023925781, -11.678750038146859 ], [ -77.195137023925781, -11.678194046020451 ], [ -77.195419311523438, -11.678194046020451 ], [ -77.195419311523438, -11.677915573120004 ], [ -77.195693969726562, -11.677915573120004 ], [ -77.195693969726562, -11.677638053893986 ], [ -77.195968627929688, -11.677638053893986 ], [ -77.195968627929688, -11.677362442016602 ], [ -77.196250915527344, -11.677362442016602 ], [ -77.196250915527344, -11.677082061767521 ], [ -77.196525573730469, -11.677083969116211 ], [ -77.196525573730469, -11.676806449890137 ], [ -77.196807861328011, -11.676806449890137 ], [ -77.196807861328011, -11.676527976989746 ], [ -77.197082519531193, -11.676527976989746 ], [ -77.197082519531193, -11.676250457763672 ], [ -77.197364807128849, -11.676250457763672 ], [ -77.197364807128849, -11.675971984863281 ], [ -77.197639465331974, -11.675971984863281 ], [ -77.197639465331974, -11.675694465637093 ], [ -77.197914123535156, -11.675694465637093 ], [ -77.197914123535156, -11.675415992736816 ], [ -77.198196411132812, -11.675415992736816 ], [ -77.198196411132812, -11.675138473510685 ], [ -77.198471069335938, -11.675138473510685 ], [ -77.198471069335938, -11.674860000610238 ], [ -77.198753356933594, -11.674861907958984 ], [ -77.198753356933594, -11.67458438873291 ], [ -77.199028015136719, -11.67458438873291 ], [ -77.199028015136719, -11.674028396606445 ], [ -77.199302673339844, -11.674028396606445 ], [ -77.199302673339844, -11.67347240447998 ], [ -77.1995849609375, -11.67347240447998 ], [ -77.1995849609375, -11.672637939453125 ], [ -77.199859619140511, -11.672637939453125 ], [ -77.199859619140511, -11.672080993652344 ], [ -77.200141906738224, -11.672083854675236 ], [ -77.200141906738224, -11.671527862548828 ], [ -77.200416564941349, -11.671527862548828 ], [ -77.200416564941349, -11.670693397521973 ], [ -77.200691223144474, -11.670693397521973 ], [ -77.200691223144474, -11.670137405395508 ], [ -77.200973510742131, -11.6701402664184 ], [ -77.200973510742131, -11.669584274291935 ], [ -77.201248168945312, -11.669584274291935 ], [ -77.201248168945312, -11.667638778686523 ], [ -77.201530456542969, -11.667638778686523 ], [ -77.201530456542969, -11.666805267333871 ], [ -77.201248168945312, -11.666805267333871 ], [ -77.201248168945312, -11.666249275207463 ], [ -77.200973510742131, -11.666249275207463 ], [ -77.200973510742131, -11.665834426879883 ], [ -77.200973510742131, -11.665693283080998 ], [ -77.201248168945312, -11.665695190429688 ], [ -77.201248168945312, -11.665416717529297 ], [ -77.201530456542969, -11.665416717529297 ], [ -77.201530456542969, -11.665139198303223 ], [ -77.201805114746094, -11.665139198303223 ], [ -77.201805114746094, -11.664860725402832 ], [ -77.202079772949219, -11.664860725402832 ], [ -77.202079772949219, -11.664583206176758 ], [ -77.202362060546875, -11.664583206176758 ], [ -77.202362060546875, -11.664304733276367 ], [ -77.20263671875, -11.664304733276367 ], [ -77.20263671875, -11.664029121398869 ], [ -77.203193664550724, -11.664029121398869 ], [ -77.203193664550724, -11.663748741149902 ], [ -77.203475952148381, -11.663748741149902 ], [ -77.203475952148381, -11.663473129272461 ], [ -77.203750610351506, -11.663473129272461 ], [ -77.203750610351506, -11.663194656372013 ], [ -77.204582214355469, -11.663194656372013 ], [ -77.204582214355469, -11.662638664245605 ], [ -77.204864501953125, -11.662638664245605 ], [ -77.204864501953125, -11.662082672119141 ], [ -77.20513916015625, -11.662082672119141 ], [ -77.20513916015625, -11.661249160766602 ], [ -77.205413818359375, -11.661249160766602 ], [ -77.205413818359375, -11.660139083862248 ], [ -77.205696105957031, -11.660139083862248 ], [ -77.205696105957031, -11.659860610961857 ], [ -77.205970764160156, -11.659860610961857 ], [ -77.205970764160156, -11.659027099609375 ], [ -77.206253051757812, -11.659029006957894 ], [ -77.206253051757812, -11.658194541931039 ], [ -77.206527709960881, -11.658194541931039 ], [ -77.206527709960881, -11.657881736755314 ], [ -77.206527709960881, -11.657638549804631 ], [ -77.206802368164006, -11.657638549804631 ], [ -77.206802368164006, -11.657081604003906 ], [ -77.207084655761662, -11.657081604003906 ], [ -77.207084655761662, -11.656529426574593 ], [ -77.207359313964787, -11.656529426574593 ], [ -77.207359313964787, -11.655973434448185 ], [ -77.2076416015625, -11.655973434448185 ], [ -77.2076416015625, -11.655415534973145 ], [ -77.207916259765625, -11.655415534973145 ], [ -77.207916259765625, -11.654863357543945 ], [ -77.20819091796875, -11.654863357543945 ], [ -77.20819091796875, -11.654306411743164 ], [ -77.208473205566406, -11.654306411743164 ], [ -77.208473205566406, -11.654026031494027 ], [ -77.208747863769531, -11.654027938842773 ], [ -77.208747863769531, -11.653750419616699 ], [ -77.208473205566406, -11.653750419616699 ], [ -77.208473205566406, -11.653470039367619 ], [ -77.20819091796875, -11.653471946716309 ], [ -77.20819091796875, -11.652084350585881 ], [ -77.208473205566406, -11.652084350585881 ], [ -77.208473205566406, -11.65180587768549 ], [ -77.208747863769531, -11.65180587768549 ], [ -77.208747863769531, -11.651528358459473 ], [ -77.209861755371037, -11.651528358459473 ], [ -77.209861755371037, -11.650972366333008 ], [ -77.210136413574162, -11.650972366333008 ], [ -77.210136413574162, -11.650416374206543 ], [ -77.210418701171818, -11.650416374206543 ], [ -77.210418701171818, -11.649027824401799 ], [ -77.210136413574162, -11.649027824401799 ], [ -77.210136413574162, -11.648750305175724 ], [ -77.210418701171818, -11.648750305175724 ], [ -77.210418701171818, -11.648471832275334 ], [ -77.210693359375, -11.648471832275334 ], [ -77.210693359375, -11.647640228271484 ], [ -77.210975646972656, -11.647640228271484 ], [ -77.210975646972656, -11.647361755371094 ], [ -77.211807250976562, -11.647361755371094 ], [ -77.211807250976562, -11.646805763244629 ], [ -77.212364196777344, -11.646805763244629 ], [ -77.212364196777344, -11.645972251892033 ], [ -77.212638854980355, -11.645972251892033 ], [ -77.212638854980355, -11.645416259765568 ], [ -77.212913513183537, -11.645416259765568 ], [ -77.212913513183537, -11.645139694213867 ], [ -77.214027404785156, -11.645139694213867 ], [ -77.214027404785156, -11.644859313964787 ], [ -77.214302062988281, -11.644859313964787 ], [ -77.214302062988281, -11.644303321838322 ], [ -77.214584350585938, -11.644303321838322 ], [ -77.214584350585938, -11.64375019073475 ], [ -77.215141296386719, -11.64375019073475 ], [ -77.215141296386719, -11.643473625183049 ], [ -77.216529846191349, -11.643470764160156 ], [ -77.216529846191349, -11.643193244934082 ], [ -77.217361450195312, -11.643193244934082 ], [ -77.217361450195312, -11.643470764160156 ], [ -77.217636108398438, -11.643470764160156 ], [ -77.217636108398438, -11.642640113830566 ], [ -77.217361450195312, -11.642640113830566 ], [ -77.217361450195312, -11.642083168029785 ], [ -77.217636108398438, -11.642083168029785 ], [ -77.217636108398438, -11.641804695129338 ], [ -77.217918395996094, -11.641804695129338 ], [ -77.217918395996094, -11.64152717590332 ], [ -77.218193054199219, -11.64152717590332 ], [ -77.218193054199219, -11.64124870300293 ], [ -77.218475341796875, -11.64124870300293 ], [ -77.218475341796875, -11.640971183776855 ], [ -77.21875, -11.640971183776855 ], [ -77.21875, -11.640415191650391 ], [ -77.219581604003849, -11.640417098998967 ], [ -77.219581604003849, -11.640138626098576 ], [ -77.220138549804631, -11.640138626098576 ], [ -77.220138549804631, -11.638749122619629 ], [ -77.220413208007812, -11.638749122619629 ], [ -77.220413208007812, -11.638193130493164 ], [ -77.220695495605469, -11.638193130493164 ], [ -77.220695495605469, -11.637916564941406 ], [ -77.220970153808594, -11.637916564941406 ], [ -77.220970153808594, -11.637639045715275 ], [ -77.2218017578125, -11.637639045715275 ], [ -77.2218017578125, -11.637360572814828 ], [ -77.222358703613224, -11.637360572814828 ], [ -77.222358703613224, -11.63680458068842 ], [ -77.222640991210881, -11.63680458068842 ], [ -77.222640991210881, -11.636527061462346 ], [ -77.223197937011662, -11.636527061462346 ], [ -77.223197937011662, -11.636248588561955 ], [ -77.223472595214844, -11.636248588561955 ], [ -77.223472595214844, -11.635971069335881 ], [ -77.223747253417969, -11.635971069335881 ], [ -77.223747253417969, -11.635416984558105 ], [ -77.224029541015625, -11.635416984558105 ], [ -77.224029541015625, -11.635139465331918 ], [ -77.224586486816406, -11.635139465331918 ], [ -77.224586486816406, -11.634860992431641 ], [ -77.224861145019531, -11.634860992431641 ], [ -77.224861145019531, -11.63458347320551 ], [ -77.225692749023381, -11.63458347320551 ], [ -77.225692749023381, -11.634305000305062 ], [ -77.225975036621037, -11.634305000305062 ], [ -77.225975036621037, -11.633749008178654 ], [ -77.226524353027344, -11.633750915527344 ], [ -77.226524353027344, -11.63347339630127 ], [ -77.226806640625, -11.63347339630127 ], [ -77.226806640625, -11.633750915527344 ], [ -77.227081298828125, -11.633750915527344 ], [ -77.227081298828125, -11.63347339630127 ], [ -77.227363586425781, -11.63347339630127 ], [ -77.227363586425781, -11.633193016052189 ], [ -77.227638244628906, -11.633194923400879 ], [ -77.227638244628906, -11.632917404174805 ], [ -77.228195190429688, -11.632917404174805 ], [ -77.228195190429688, -11.632638931274414 ], [ -77.228469848632699, -11.632638931274414 ], [ -77.228469848632699, -11.632082939147949 ], [ -77.229026794433537, -11.632082939147949 ], [ -77.229026794433537, -11.631805419921761 ], [ -77.229309082031193, -11.631805419921761 ], [ -77.229309082031193, -11.631526947021484 ], [ -77.229583740234318, -11.63152885437006 ], [ -77.229583740234318, -11.631251335144043 ], [ -77.2298583984375, -11.631251335144043 ], [ -77.2298583984375, -11.630970001220703 ], [ -77.230697631835938, -11.630972862243652 ], [ -77.230697631835938, -11.630416870117188 ], [ -77.231529235839844, -11.630416870117188 ], [ -77.231529235839844, -11.630139350891113 ], [ -77.231803894042912, -11.630139350891113 ], [ -77.231803894042912, -11.629582405090332 ], [ -77.232635498046818, -11.629582405090332 ], [ -77.232635498046818, -11.629026412963867 ], [ -77.232917785644474, -11.629026412963867 ], [ -77.232917785644474, -11.628750801086369 ], [ -77.233192443847656, -11.628750801086369 ], [ -77.233192443847656, -11.628472328185978 ], [ -77.233749389648438, -11.628472328185978 ], [ -77.233749389648438, -11.627916336059513 ], [ -77.234306335449219, -11.627916336059513 ], [ -77.234306335449219, -11.627637863159123 ], [ -77.235137939453068, -11.627637863159123 ], [ -77.235137939453068, -11.627360343933049 ], [ -77.235420227050724, -11.627360343933049 ], [ -77.235420227050724, -11.627083778381348 ], [ -77.236526489257812, -11.627083778381348 ], [ -77.236526489257812, -11.626804351806641 ], [ -77.237083435058594, -11.626806259155273 ], [ -77.237083435058594, -11.626527786254883 ], [ -77.237358093261719, -11.626527786254883 ], [ -77.237358093261719, -11.625971794128418 ], [ -77.2379150390625, -11.625971794128418 ], [ -77.2379150390625, -11.625694274902287 ], [ -77.238197326660043, -11.625694274902287 ], [ -77.238197326660043, -11.624859809875431 ], [ -77.238471984863224, -11.624859809875431 ], [ -77.238471984863224, -11.624582290649357 ], [ -77.238746643066349, -11.624584197998047 ], [ -77.238746643066349, -11.624305725097656 ], [ -77.239028930664006, -11.624305725097656 ], [ -77.239028930664006, -11.624028205871582 ], [ -77.239303588867188, -11.624028205871582 ], [ -77.239303588867188, -11.624305725097656 ], [ -77.239585876464844, -11.624305725097656 ], [ -77.239585876464844, -11.624028205871582 ], [ -77.239860534667969, -11.624028205871582 ], [ -77.239860534667969, -11.623470306396428 ], [ -77.24041748046875, -11.623472213745117 ], [ -77.24041748046875, -11.623193740844727 ], [ -77.240974426269531, -11.623193740844727 ], [ -77.240974426269531, -11.62291431427002 ], [ -77.241249084472543, -11.622916221618652 ], [ -77.241249084472543, -11.622637748718262 ], [ -77.241806030273381, -11.622637748718262 ], [ -77.241806030273381, -11.62208366394043 ], [ -77.242080688476506, -11.62208366394043 ], [ -77.242080688476506, -11.621804237365666 ], [ -77.242919921875, -11.621806144714355 ], [ -77.242919921875, -11.621527671813965 ], [ -77.243194580078125, -11.621527671813965 ], [ -77.243194580078125, -11.621248245239201 ], [ -77.24346923828125, -11.621250152587891 ], [ -77.24346923828125, -11.6209716796875 ], [ -77.245140075683537, -11.6209716796875 ], [ -77.245140075683537, -11.620138168334961 ], [ -77.245414733886662, -11.620140075683537 ], [ -77.245414733886662, -11.61985969543457 ], [ -77.245697021484318, -11.61985969543457 ], [ -77.245697021484318, -11.619582176208496 ], [ -77.2459716796875, -11.619584083557072 ], [ -77.2459716796875, -11.619305610656681 ], [ -77.246246337890625, -11.619305610656681 ], [ -77.246246337890625, -11.619028091430664 ], [ -77.246528625488281, -11.619028091430664 ], [ -77.246528625488281, -11.618749618530217 ], [ -77.247085571289062, -11.618749618530217 ], [ -77.247085571289062, -11.618472099304199 ], [ -77.247360229492188, -11.618472099304199 ], [ -77.247360229492188, -11.618193626403809 ], [ -77.247642517089844, -11.618193626403809 ], [ -77.247642517089844, -11.617916107177734 ], [ -77.247917175292912, -11.61791801452631 ], [ -77.247917175292912, -11.617636680602971 ], [ -77.248191833496037, -11.617636680602971 ], [ -77.248191833496037, -11.617359161376953 ], [ -77.248474121093693, -11.617362022399846 ], [ -77.248474121093693, -11.617083549499455 ], [ -77.248748779296818, -11.617083549499455 ], [ -77.248748779296818, -11.616806030273381 ], [ -77.249305725097656, -11.616803169250488 ], [ -77.249305725097656, -11.616249084472599 ], [ -77.249580383300781, -11.616249084472599 ], [ -77.249580383300781, -11.615970611572152 ], [ -77.249862670898438, -11.615970611572152 ], [ -77.249862670898438, -11.615693092346135 ], [ -77.250694274902344, -11.615693092346135 ], [ -77.250694274902344, -11.61541843414301 ], [ -77.250968933105412, -11.61541843414301 ], [ -77.250968933105412, -11.61513710021967 ], [ -77.251251220703068, -11.615139961242562 ], [ -77.251251220703068, -11.614860534667969 ], [ -77.251525878906193, -11.614860534667969 ], [ -77.251525878906193, -11.614587783813363 ], [ -77.251808166503849, -11.614583015441895 ], [ -77.251808166503849, -11.614304542541504 ], [ -77.252082824707031, -11.614304542541504 ], [ -77.252082824707031, -11.61402702331543 ], [ -77.252639770507812, -11.61402702331543 ], [ -77.252639770507812, -11.613752365112305 ], [ -77.253196716308594, -11.613748550415039 ], [ -77.253196716308594, -11.613471031188851 ], [ -77.253471374511719, -11.613471031188851 ], [ -77.253471374511719, -11.613195419311523 ], [ -77.253753662109375, -11.613195419311523 ], [ -77.253753662109375, -11.612359046935978 ], [ -77.254028320312386, -11.612360954284668 ], [ -77.254028320312386, -11.612083435058594 ], [ -77.254302978515568, -11.612083435058594 ], [ -77.254302978515568, -11.611527442932129 ], [ -77.254585266113224, -11.611527442932129 ], [ -77.254585266113224, -11.610973358154297 ], [ -77.254859924316349, -11.610973358154297 ], [ -77.254859924316349, -11.610694885253849 ], [ -77.255691528320312, -11.610694885253849 ], [ -77.255691528320312, -11.610417366027832 ], [ -77.256248474121094, -11.610417366027832 ], [ -77.256248474121094, -11.610136985778809 ], [ -77.25653076171875, -11.610136985778809 ], [ -77.25653076171875, -11.609582901000977 ], [ -77.256805419921875, -11.609582901000977 ], [ -77.256805419921875, -11.609305381774902 ], [ -77.257080078124886, -11.609305381774902 ], [ -77.257080078124886, -11.609026908874512 ], [ -77.256248474121094, -11.609026908874512 ], [ -77.256248474121094, -11.608751296997013 ], [ -77.255973815917969, -11.608751296997013 ], [ -77.255973815917969, -11.608470916748047 ], [ -77.25653076171875, -11.608470916748047 ], [ -77.25653076171875, -11.608751296997013 ], [ -77.257080078124886, -11.608751296997013 ], [ -77.257080078124886, -11.608470916748047 ], [ -77.257637023925724, -11.608470916748047 ], [ -77.257637023925724, -11.608751296997013 ], [ -77.258750915527344, -11.608751296997013 ], [ -77.258750915527344, -11.608195304870549 ], [ -77.259025573730469, -11.608195304870549 ], [ -77.259025573730469, -11.607360839843693 ], [ -77.258750915527344, -11.607360839843693 ], [ -77.258750915527344, -11.607083320617676 ], [ -77.259025573730469, -11.607083320617676 ], [ -77.259025573730469, -11.606804847717228 ], [ -77.259307861328125, -11.606804847717228 ], [ -77.259307861328125, -11.606527328491211 ], [ -77.260414123535099, -11.606527328491211 ], [ -77.260414123535099, -11.606804847717228 ], [ -77.260696411132756, -11.606804847717228 ], [ -77.260696411132756, -11.606527328491211 ], [ -77.261253356933537, -11.606527328491211 ], [ -77.261253356933537, -11.606250762939453 ], [ -77.261528015136662, -11.606250762939453 ], [ -77.261528015136662, -11.605971336364746 ], [ -77.262641906738281, -11.605973243713322 ], [ -77.262641906738281, -11.605694770812875 ], [ -77.262916564941406, -11.605694770812875 ], [ -77.262916564941406, -11.605417251586857 ], [ -77.263191223144531, -11.605417251586857 ], [ -77.263191223144531, -11.605138778686467 ], [ -77.263473510742188, -11.605138778686467 ], [ -77.263473510742188, -11.604584693908691 ], [ -77.263748168945256, -11.604584693908691 ], [ -77.263748168945256, -11.604028701782227 ], [ -77.264305114746037, -11.604028701782227 ], [ -77.264305114746037, -11.603472709655762 ], [ -77.264579772949162, -11.603472709655762 ], [ -77.264579772949162, -11.603192329406681 ], [ -77.264862060546875, -11.603195190429574 ], [ -77.264862060546875, -11.602916717529297 ], [ -77.265419006347656, -11.602916717529297 ], [ -77.265419006347656, -11.602636337280217 ], [ -77.265693664550781, -11.602638244628906 ], [ -77.265693664550781, -11.601806640625 ], [ -77.265975952148438, -11.601806640625 ], [ -77.265975952148438, -11.601529121398926 ], [ -77.266525268554688, -11.601529121398926 ], [ -77.266525268554688, -11.601249694824162 ], [ -77.267082214355412, -11.601249694824162 ], [ -77.267082214355412, -11.600972175598145 ], [ -77.267364501953068, -11.600972175598145 ], [ -77.267364501953068, -11.60041618347168 ], [ -77.267639160156193, -11.60041618347168 ], [ -77.267639160156193, -11.600137710571289 ], [ -77.268196105957031, -11.600137710571289 ], [ -77.268196105957031, -11.599860191345215 ], [ -77.268470764160156, -11.599860191345215 ], [ -77.268470764160156, -11.5995836257934 ], [ -77.268753051757812, -11.5995836257934 ], [ -77.268753051757812, -11.599027633666935 ], [ -77.269584655761719, -11.599027633666935 ], [ -77.269584655761719, -11.598750114440861 ], [ -77.270141601562443, -11.598750114440861 ], [ -77.270141601562443, -11.598471641540471 ], [ -77.270416259765568, -11.598471641540471 ], [ -77.270416259765568, -11.598194122314453 ], [ -77.270973205566349, -11.598194122314453 ], [ -77.270973205566349, -11.598471641540471 ], [ -77.271247863769531, -11.598471641540471 ], [ -77.271247863769531, -11.597915649414006 ], [ -77.271530151367188, -11.597915649414006 ], [ -77.271530151367188, -11.597638130187988 ], [ -77.271804809570312, -11.597638130187988 ], [ -77.271804809570312, -11.59736156463623 ], [ -77.272087097167969, -11.597359657287598 ], [ -77.272087097167969, -11.596528053283635 ], [ -77.272361755371094, -11.596528053283635 ], [ -77.272361755371094, -11.596249580383244 ], [ -77.272918701171875, -11.596249580383244 ], [ -77.272918701171875, -11.59597206115717 ], [ -77.273475646972599, -11.59597206115717 ], [ -77.273475646972599, -11.595693588256779 ], [ -77.273750305175724, -11.595693588256779 ], [ -77.273750305175724, -11.595416069030705 ], [ -77.274307250976506, -11.595416069030705 ], [ -77.274307250976506, -11.59486007690424 ], [ -77.274581909179688, -11.59486198425293 ], [ -77.274581909179688, -11.594584465026742 ], [ -77.274864196777344, -11.594584465026742 ], [ -77.274864196777344, -11.594305992126465 ], [ -77.275138854980469, -11.594305992126465 ], [ -77.275138854980469, -11.594028472900334 ], [ -77.27569580078125, -11.594028472900334 ], [ -77.27569580078125, -11.593194007873478 ], [ -77.275970458984375, -11.593194007873478 ], [ -77.275970458984375, -11.592638015747013 ], [ -77.276252746582031, -11.592639923095703 ], [ -77.276252746582031, -11.592362403869629 ], [ -77.276527404785099, -11.592362403869629 ], [ -77.276527404785099, -11.592082023620549 ], [ -77.276802062988224, -11.592082023620549 ], [ -77.276802062988224, -11.591527938842773 ], [ -77.277084350585881, -11.591527938842773 ], [ -77.277084350585881, -11.591250419616586 ], [ -77.277359008789006, -11.591250419616586 ], [ -77.277359008789006, -11.590971946716309 ], [ -77.277641296386719, -11.590971946716309 ], [ -77.277641296386719, -11.590596199035588 ], [ -77.277641296386719, -11.590415000915527 ], [ -77.277870178222543, -11.590415000915527 ], [ -77.278190612792969, -11.590417861938477 ], [ -77.2781982421875, -11.590136528015137 ], [ -77.27874755859375, -11.590136528015137 ], [ -77.27874755859375, -11.589584350585938 ], [ -77.279029846191406, -11.589584350585938 ], [ -77.279029846191406, -11.589305877685547 ], [ -77.279586791992074, -11.589305877685547 ], [ -77.279586791992074, -11.588748931884766 ], [ -77.279861450195256, -11.588748931884766 ], [ -77.279861450195256, -11.588471412658691 ], [ -77.280136108398381, -11.588471412658691 ], [ -77.280136108398381, -11.588195800781193 ], [ -77.280418395996037, -11.588195800781193 ], [ -77.280418395996037, -11.587915420532227 ], [ -77.280693054199219, -11.587915420532227 ], [ -77.280693054199219, -11.588195800781193 ], [ -77.280975341796875, -11.588195800781193 ], [ -77.280975341796875, -11.587915420532227 ], [ -77.283195495605412, -11.587915420532227 ], [ -77.283195495605412, -11.587638854980412 ], [ -77.283470153808537, -11.587638854980412 ], [ -77.283470153808537, -11.586526870727482 ], [ -77.283195495605412, -11.586526870727482 ], [ -77.283195495605412, -11.586249351501465 ], [ -77.282913208007756, -11.586249351501465 ], [ -77.282913208007756, -11.585970878601017 ], [ -77.283195495605412, -11.585970878601017 ], [ -77.283195495605412, -11.584860801696664 ], [ -77.282638549804574, -11.584860801696664 ], [ -77.282638549804574, -11.584583282470646 ], [ -77.282081604003906, -11.584583282470646 ], [ -77.282081604003906, -11.584304809570256 ], [ -77.281806945800781, -11.584304809570256 ], [ -77.281806945800781, -11.584583282470646 ], [ -77.279586791992074, -11.584583282470646 ], [ -77.279586791992074, -11.584973335266056 ], [ -77.279586791992074, -11.585139274597111 ], [ -77.279472351074162, -11.585139274597111 ], [ -77.27874755859375, -11.585139274597111 ], [ -77.27874755859375, -11.585695266723519 ], [ -77.278472900390625, -11.585695266723519 ], [ -77.278472900390625, -11.585970878601017 ], [ -77.276802062988224, -11.585970878601017 ], [ -77.276802062988224, -11.585695266723519 ], [ -77.276252746582031, -11.585695266723519 ], [ -77.276252746582031, -11.584860801696664 ], [ -77.275970458984375, -11.584860801696664 ], [ -77.275970458984375, -11.584027290344181 ], [ -77.274024963378849, -11.584029197692871 ], [ -77.274024963378849, -11.583748817443791 ], [ -77.273475646972599, -11.583748817443791 ], [ -77.273475646972599, -11.583473205566406 ], [ -77.273193359374943, -11.583473205566406 ], [ -77.273193359374943, -11.583194732666016 ], [ -77.272636413574219, -11.583194732666016 ], [ -77.272636413574219, -11.582915306091252 ], [ -77.272361755371094, -11.582917213439941 ], [ -77.272361755371094, -11.582638740539551 ], [ -77.271804809570312, -11.582638740539551 ], [ -77.271804809570312, -11.582359313964844 ], [ -77.271530151367188, -11.582359313964844 ], [ -77.271530151367188, -11.581805229186898 ], [ -77.271247863769531, -11.581805229186898 ], [ -77.271247863769531, -11.581526756286621 ], [ -77.271530151367188, -11.581526756286621 ], [ -77.271530151367188, -11.58124923706049 ], [ -77.271804809570312, -11.58125114440918 ], [ -77.271804809570312, -11.580972671508789 ], [ -77.271530151367188, -11.580972671508789 ], [ -77.271530151367188, -11.580416679382324 ], [ -77.271247863769531, -11.580416679382324 ], [ -77.271247863769531, -11.58013916015625 ], [ -77.271530151367188, -11.58013916015625 ], [ -77.271530151367188, -11.579860687255859 ], [ -77.271247863769531, -11.579860687255859 ], [ -77.271247863769531, -11.579304695129395 ], [ -77.271530151367188, -11.579304695129395 ], [ -77.271530151367188, -11.578471183776742 ], [ -77.271804809570312, -11.578471183776742 ], [ -77.271804809570312, -11.577917098999023 ], [ -77.272087097167969, -11.577917098999023 ], [ -77.272087097167969, -11.577361106872559 ], [ -77.272361755371094, -11.577361106872559 ], [ -77.272361755371094, -11.576528549194279 ], [ -77.272636413574219, -11.576528549194279 ], [ -77.272636413574219, -11.575972557067814 ], [ -77.272918701171875, -11.575972557067814 ], [ -77.272918701171875, -11.575692176818848 ], [ -77.272636413574219, -11.57569503784174 ], [ -77.272636413574219, -11.575415611266976 ], [ -77.272918701171875, -11.575415611266976 ], [ -77.272918701171875, -11.575138092040959 ], [ -77.272636413574219, -11.575138092040959 ], [ -77.272636413574219, -11.574863433837834 ], [ -77.272918701171875, -11.574863433837834 ], [ -77.272918701171875, -11.574026107788029 ], [ -77.273193359374943, -11.574026107788029 ], [ -77.273193359374943, -11.572360038757267 ], [ -77.273475646972599, -11.572360038757267 ], [ -77.273475646972599, -11.571528434753418 ], [ -77.273750305175724, -11.571528434753418 ], [ -77.273750305175724, -11.570972442626953 ], [ -77.274024963378849, -11.570972442626953 ], [ -77.274024963378849, -11.569306373596191 ], [ -77.273475646972599, -11.569306373596191 ], [ -77.273475646972599, -11.569027900695801 ], [ -77.273750305175724, -11.569027900695801 ], [ -77.273750305175724, -11.568194389343262 ], [ -77.274024963378849, -11.568194389343262 ], [ -77.274024963378849, -11.567640304565373 ], [ -77.274581909179688, -11.567638397216797 ], [ -77.274581909179688, -11.566249847412053 ], [ -77.275138854980469, -11.566249847412053 ], [ -77.275138854980469, -11.565972328186035 ], [ -77.275413513183594, -11.565972328186035 ], [ -77.275413513183594, -11.56541633605957 ], [ -77.27569580078125, -11.56541633605957 ], [ -77.27569580078125, -11.565139770507699 ], [ -77.275413513183594, -11.565139770507699 ], [ -77.275413513183594, -11.563471794128361 ], [ -77.27569580078125, -11.563471794128361 ], [ -77.27569580078125, -11.562917709350586 ], [ -77.275970458984375, -11.562917709350586 ], [ -77.275970458984375, -11.561527252197266 ], [ -77.276252746582031, -11.561530113220215 ], [ -77.276252746582031, -11.560971260070687 ], [ -77.276527404785099, -11.560971260070687 ], [ -77.276527404785099, -11.559582710266113 ], [ -77.276802062988224, -11.559582710266113 ], [ -77.276802062988224, -11.559303283691349 ], [ -77.277084350585881, -11.559305191040039 ], [ -77.277084350585881, -11.55847263336176 ], [ -77.277641296386719, -11.55847263336176 ], [ -77.277641296386719, -11.558193206787109 ], [ -77.277915954589844, -11.558193206787109 ], [ -77.277915954589844, -11.557916641235295 ], [ -77.278472900390625, -11.557916641235295 ], [ -77.278472900390625, -11.557639122009277 ], [ -77.27874755859375, -11.557639122009277 ], [ -77.27874755859375, -11.55736064910883 ], [ -77.279029846191406, -11.55736064910883 ], [ -77.279029846191406, -11.557083129882812 ], [ -77.279304504394531, -11.557083129882812 ], [ -77.279304504394531, -11.556248664855957 ], [ -77.279586791992074, -11.556248664855957 ], [ -77.279586791992074, -11.555971145629883 ], [ -77.279861450195256, -11.555973052978459 ], [ -77.279861450195256, -11.555694580078068 ], [ -77.280136108398381, -11.555694580078068 ], [ -77.280136108398381, -11.555417060851994 ], [ -77.280693054199219, -11.555417060851994 ], [ -77.280693054199219, -11.555138587951603 ], [ -77.280975341796875, -11.555138587951603 ], [ -77.280975341796875, -11.554582595825138 ], [ -77.280418395996037, -11.554582595825138 ], [ -77.280418395996037, -11.553749084472656 ], [ -77.280693054199219, -11.553750991821289 ], [ -77.280693054199219, -11.552977561950627 ], [ -77.280693054199219, -11.552639007568303 ], [ -77.280975341796875, -11.552639007568303 ], [ -77.280975341796875, -11.552360534667855 ], [ -77.281120300292969, -11.552360534667855 ], [ -77.281524658203125, -11.552360534667855 ], [ -77.281524658203125, -11.552083015441838 ], [ -77.281806945800781, -11.552083015441838 ], [ -77.281806945800781, -11.551804542541447 ], [ -77.282081604003906, -11.551804542541447 ], [ -77.282081604003906, -11.551527023315373 ], [ -77.282913208007756, -11.551528930664062 ], [ -77.282913208007756, -11.551251411437988 ], [ -77.283752441406193, -11.551248550414982 ], [ -77.283752441406193, -11.55069541931141 ], [ -77.284027099609375, -11.55069541931141 ], [ -77.284027099609375, -11.550139427185002 ], [ -77.2843017578125, -11.550139427185002 ], [ -77.2843017578125, -11.549304008483887 ], [ -77.284584045410156, -11.549304008483887 ], [ -77.284584045410156, -11.548748016357422 ], [ -77.284858703613281, -11.548750877380371 ], [ -77.284858703613281, -11.548473358154297 ], [ -77.285140991210938, -11.548473358154297 ], [ -77.285140991210938, -11.547916412353516 ], [ -77.285415649414062, -11.547916412353516 ], [ -77.285415649414062, -11.547637939453125 ], [ -77.285697937011719, -11.547637939453125 ], [ -77.285697937011719, -11.547360420227051 ], [ -77.285972595214787, -11.547360420227051 ], [ -77.285972595214787, -11.54708194732666 ], [ -77.286247253417912, -11.54708194732666 ], [ -77.286247253417912, -11.546806335449162 ], [ -77.286529541015568, -11.546806335449162 ], [ -77.286529541015568, -11.546250343322697 ], [ -77.286804199218693, -11.546250343322697 ], [ -77.286804199218693, -11.545971870422306 ], [ -77.287086486816349, -11.545971870422306 ], [ -77.287086486816349, -11.545694351196289 ], [ -77.289024353027287, -11.545694351196289 ], [ -77.289024353027287, -11.545415878295842 ], [ -77.289863586425724, -11.545415878295842 ], [ -77.289863586425724, -11.545140266418343 ], [ -77.290412902832031, -11.545140266418343 ], [ -77.290412902832031, -11.544584274291935 ], [ -77.290695190429688, -11.544584274291935 ], [ -77.290695190429688, -11.543472290039006 ], [ -77.290969848632812, -11.543472290039006 ], [ -77.290969848632812, -11.542916297912541 ], [ -77.291252136230469, -11.542916297912541 ], [ -77.291252136230469, -11.54263782501215 ], [ -77.291526794433594, -11.54263782501215 ], [ -77.291526794433594, -11.542360305786076 ], [ -77.292083740234375, -11.542362213134766 ], [ -77.292083740234375, -11.542083740234375 ], [ -77.292358398437443, -11.542083740234375 ], [ -77.292358398437443, -11.541804313659668 ], [ -77.292640686035099, -11.541806221008301 ], [ -77.292640686035099, -11.54152774810791 ], [ -77.292915344238224, -11.54152774810791 ], [ -77.292915344238224, -11.541250228881722 ], [ -77.293197631835881, -11.541250228881722 ], [ -77.293197631835881, -11.540971755981445 ], [ -77.293746948242188, -11.540971755981445 ], [ -77.293746948242188, -11.540694236755314 ], [ -77.294029235839844, -11.540694236755314 ], [ -77.294029235839844, -11.540415763854867 ], [ -77.294303894042969, -11.540415763854867 ], [ -77.294303894042969, -11.540138244628849 ], [ -77.294586181640625, -11.540140151977539 ], [ -77.294586181640625, -11.539859771728459 ], [ -77.295135498046875, -11.539859771728459 ], [ -77.295135498046875, -11.539582252502385 ], [ -77.295417785644418, -11.539584159851074 ], [ -77.295417785644418, -11.539305686950684 ], [ -77.295692443847599, -11.539305686950684 ], [ -77.295692443847599, -11.539028167724609 ], [ -77.296249389648381, -11.539028167724609 ], [ -77.296249389648381, -11.538749694824219 ], [ -77.296524047851562, -11.538749694824219 ], [ -77.296524047851562, -11.538472175598145 ], [ -77.296806335449219, -11.538472175598145 ], [ -77.296806335449219, -11.538193702697754 ], [ -77.297080993652344, -11.538193702697754 ], [ -77.297080993652344, -11.537916183471566 ], [ -77.297637939453125, -11.537916183471566 ], [ -77.297637939453125, -11.535693168640137 ], [ -77.297920227050781, -11.535693168640137 ], [ -77.297920227050781, -11.535137176513672 ], [ -77.298194885253906, -11.535137176513672 ], [ -77.298194885253906, -11.534581184387207 ], [ -77.298469543456918, -11.534583091735783 ], [ -77.298469543456918, -11.533748626708928 ], [ -77.298751831054631, -11.533748626708928 ], [ -77.298751831054631, -11.532082557678223 ], [ -77.298469543456918, -11.532082557678223 ], [ -77.298469543456918, -11.531526565551644 ], [ -77.298194885253906, -11.531526565551644 ], [ -77.298194885253906, -11.530693054199162 ], [ -77.29736328125, -11.530693054199162 ], [ -77.29736328125, -11.530417442321777 ], [ -77.297080993652344, -11.530417442321777 ], [ -77.297080993652344, -11.530138969421387 ], [ -77.296806335449219, -11.530138969421387 ], [ -77.296806335449219, -11.529582977294922 ], [ -77.297080993652344, -11.529582977294922 ], [ -77.297080993652344, -11.52791690826416 ], [ -77.29736328125, -11.52791690826416 ], [ -77.29736328125, -11.527360916137695 ], [ -77.297637939453125, -11.527360916137695 ], [ -77.297637939453125, -11.52680492401123 ], [ -77.297920227050781, -11.52680492401123 ], [ -77.297920227050781, -11.526250839233342 ], [ -77.298194885253906, -11.526250839233342 ], [ -77.298194885253906, -11.525973320007324 ], [ -77.298469543456918, -11.525973320007324 ], [ -77.298469543456918, -11.525694847106877 ], [ -77.298751831054631, -11.525694847106877 ], [ -77.298751831054631, -11.524582862854004 ], [ -77.299026489257756, -11.524582862854004 ], [ -77.299026489257756, -11.52430534362793 ], [ -77.299308776855412, -11.52430534362793 ], [ -77.299308776855412, -11.523751258850041 ], [ -77.299583435058537, -11.523751258850041 ], [ -77.299583435058537, -11.522916793823185 ], [ -77.299858093261719, -11.522916793823185 ], [ -77.299858093261719, -11.522359848022404 ], [ -77.300140380859375, -11.522359848022404 ], [ -77.300140380859375, -11.52208232879633 ], [ -77.3004150390625, -11.52208232879633 ], [ -77.3004150390625, -11.52097225189209 ], [ -77.300971984863281, -11.52097225189209 ], [ -77.300971984863281, -11.520693778991699 ], [ -77.301246643066406, -11.520693778991699 ], [ -77.301246643066406, -11.520416259765511 ], [ -77.301528930664062, -11.520416259765511 ], [ -77.301528930664062, -11.519860267639103 ], [ -77.301803588867131, -11.519860267639103 ], [ -77.301803588867131, -11.519583702087402 ], [ -77.302085876464787, -11.519583702087402 ], [ -77.302085876464787, -11.519027709960938 ], [ -77.302360534667912, -11.519027709960938 ], [ -77.302360534667912, -11.518471717834473 ], [ -77.302635192871037, -11.518471717834473 ], [ -77.302635192871037, -11.517915725708008 ], [ -77.302917480468693, -11.517915725708008 ], [ -77.302917480468693, -11.517638206481934 ], [ -77.303192138671875, -11.517638206481934 ], [ -77.303192138671875, -11.517359733581543 ], [ -77.303749084472656, -11.517359733581543 ], [ -77.303749084472656, -11.516805648803654 ], [ -77.304031372070312, -11.516805648803654 ], [ -77.304031372070312, -11.516528129577637 ], [ -77.304580688476562, -11.516528129577637 ], [ -77.304580688476562, -11.516249656677246 ], [ -77.304862976074219, -11.516249656677246 ], [ -77.304862976074219, -11.515970230102482 ], [ -77.305137634277287, -11.515970230102482 ], [ -77.305137634277287, -11.515416145324707 ], [ -77.305419921874943, -11.515418052673283 ], [ -77.305419921874943, -11.515137672424316 ], [ -77.305694580078068, -11.515137672424316 ], [ -77.305694580078068, -11.514583587646428 ], [ -77.305969238281193, -11.514583587646428 ], [ -77.305969238281193, -11.514862060546818 ], [ -77.306251525878906, -11.514862060546818 ], [ -77.306251525878906, -11.514583587646428 ], [ -77.306526184082031, -11.514583587646428 ], [ -77.306526184082031, -11.514304161071777 ], [ -77.307357788085938, -11.514306068420353 ], [ -77.307357788085938, -11.514027595519963 ], [ -77.307914733886719, -11.514027595519963 ], [ -77.307914733886719, -11.513750076293888 ], [ -77.308471679687443, -11.513750076293888 ], [ -77.308471679687443, -11.51319408416748 ], [ -77.308746337890568, -11.51319408416748 ], [ -77.308746337890568, -11.512915611267033 ], [ -77.309028625488224, -11.512915611267033 ], [ -77.309028625488224, -11.512361526489258 ], [ -77.309303283691406, -11.512361526489258 ], [ -77.309303283691406, -11.511805534362679 ], [ -77.309585571289062, -11.511805534362679 ], [ -77.309585571289062, -11.511528015136662 ], [ -77.309860229492188, -11.511528015136662 ], [ -77.309860229492188, -11.511249542236271 ], [ -77.310142517089844, -11.511249542236271 ], [ -77.310142517089844, -11.510972023010197 ], [ -77.310417175292969, -11.510972023010197 ], [ -77.310417175292969, -11.510693550109806 ], [ -77.310691833496094, -11.510693550109806 ], [ -77.310691833496094, -11.510136604308968 ], [ -77.311248779296761, -11.510136604308968 ], [ -77.311248779296761, -11.509859085082951 ], [ -77.311531066894474, -11.509861946105957 ], [ -77.311531066894474, -11.509584426879826 ], [ -77.312080383300724, -11.509584426879826 ], [ -77.312080383300724, -11.509305953979379 ], [ -77.312362670898381, -11.509305953979379 ], [ -77.312362670898381, -11.508749008178711 ], [ -77.312919616699219, -11.508749008178711 ], [ -77.312919616699219, -11.50847053527832 ], [ -77.313194274902344, -11.50847053527832 ], [ -77.313194274902344, -11.508193016052246 ], [ -77.313468933105469, -11.508193016052246 ], [ -77.313468933105469, -11.507918357849121 ], [ -77.31402587890625, -11.507918357849121 ], [ -77.31402587890625, -11.50736141204834 ], [ -77.314582824706974, -11.50736141204834 ], [ -77.314582824706974, -11.50708103179926 ], [ -77.315139770507756, -11.507082939147949 ], [ -77.315139770507756, -11.506805419921875 ], [ -77.315971374511719, -11.506805419921875 ], [ -77.315971374511719, -11.506526947021484 ], [ -77.316253662109375, -11.506526947021484 ], [ -77.316253662109375, -11.50597095489502 ], [ -77.3165283203125, -11.50597095489502 ], [ -77.3165283203125, -11.505695343017521 ], [ -77.316802978515625, -11.505695343017521 ], [ -77.316802978515625, -11.505416870117131 ], [ -77.317085266113281, -11.505416870117131 ], [ -77.317085266113281, -11.504860877990666 ], [ -77.317642211914062, -11.504860877990666 ], [ -77.317642211914062, -11.504583358764648 ], [ -77.317916870117131, -11.504583358764648 ], [ -77.317916870117131, -11.504304885864258 ], [ -77.318191528320256, -11.504304885864258 ], [ -77.318191528320256, -11.504027366638184 ], [ -77.318473815917912, -11.504027366638184 ], [ -77.318473815917912, -11.503748893737793 ], [ -77.31903076171875, -11.503748893737793 ], [ -77.31903076171875, -11.504027366638184 ], [ -77.319305419921875, -11.504027366638184 ], [ -77.319305419921875, -11.503748893737793 ], [ -77.319862365722656, -11.503748893737793 ], [ -77.319862365722656, -11.503473281860295 ], [ -77.320419311523438, -11.503473281860295 ], [ -77.320419311523438, -11.503194808959904 ], [ -77.320968627929631, -11.503194808959904 ], [ -77.320968627929631, -11.50291728973383 ], [ -77.321250915527287, -11.50291728973383 ], [ -77.321250915527287, -11.502638816833439 ], [ -77.321807861328068, -11.502638816833439 ], [ -77.321807861328068, -11.502082824706974 ], [ -77.32208251953125, -11.502082824706974 ], [ -77.32208251953125, -11.50152683258051 ], [ -77.322639465332031, -11.50152683258051 ], [ -77.322639465332031, -11.501249313354492 ], [ -77.322914123535156, -11.501251220703125 ], [ -77.322914123535156, -11.500970840454045 ], [ -77.323471069335938, -11.500970840454045 ], [ -77.323471069335938, -11.500695228576546 ], [ -77.324028015136605, -11.500695228576546 ], [ -77.324028015136605, -11.50041675567627 ], [ -77.324302673339787, -11.50041675567627 ], [ -77.324302673339787, -11.500139236450138 ], [ -77.324859619140568, -11.500139236450138 ], [ -77.324859619140568, -11.499860763549691 ], [ -77.325416564941406, -11.499860763549691 ], [ -77.325416564941406, -11.499027252197209 ], [ -77.325691223144531, -11.499029159545898 ], [ -77.325691223144531, -11.498748779296818 ], [ -77.325973510742188, -11.498748779296818 ], [ -77.325973510742188, -11.498471260070744 ], [ -77.326530456542969, -11.498471260070744 ], [ -77.326530456542969, -11.497914314269963 ], [ -77.327079772949105, -11.497917175292969 ], [ -77.327079772949105, -11.497638702392578 ], [ -77.327362060546818, -11.497638702392578 ], [ -77.327362060546818, -11.49736118316639 ], [ -77.329025268554688, -11.49736118316639 ], [ -77.329025268554688, -11.496805191039982 ], [ -77.329307556152344, -11.496805191039982 ], [ -77.329307556152344, -11.496248245239258 ], [ -77.329582214355469, -11.496251106262207 ], [ -77.329582214355469, -11.495695114135742 ], [ -77.33013916015625, -11.495695114135742 ], [ -77.33013916015625, -11.495416641235352 ], [ -77.330696105956974, -11.495416641235352 ], [ -77.330696105956974, -11.495138168334961 ], [ -77.331253051757756, -11.495138168334961 ], [ -77.331253051757756, -11.49485969543457 ], [ -77.331527709960881, -11.49485969543457 ], [ -77.331527709960881, -11.494582176208496 ], [ -77.331802368164062, -11.494582176208496 ], [ -77.331802368164062, -11.494306564330998 ], [ -77.332359313964844, -11.494306564330998 ], [ -77.332359313964844, -11.494026184082031 ], [ -77.3326416015625, -11.49402904510498 ], [ -77.3326416015625, -11.493749618530217 ], [ -77.332916259765625, -11.493749618530217 ], [ -77.332916259765625, -11.493470191955566 ], [ -77.33319091796875, -11.493472099304142 ], [ -77.33319091796875, -11.493193626403752 ], [ -77.333473205566406, -11.493193626403752 ], [ -77.333473205566406, -11.492916107177678 ], [ -77.334030151367131, -11.492916107177678 ], [ -77.334030151367131, -11.492637634277287 ], [ -77.334304809570256, -11.492637634277287 ], [ -77.334304809570256, -11.49236011505127 ], [ -77.334861755371094, -11.49236011505127 ], [ -77.334861755371094, -11.492083549499512 ], [ -77.335136413574219, -11.492083549499512 ], [ -77.335136413574219, -11.491804122924805 ], [ -77.335418701171875, -11.491804122924805 ], [ -77.335418701171875, -11.491527557373047 ], [ -77.336250305175781, -11.491527557373047 ], [ -77.336250305175781, -11.490971565246468 ], [ -77.336524963378906, -11.490971565246468 ], [ -77.336524963378906, -11.490694046020451 ], [ -77.337364196777287, -11.490694046020451 ], [ -77.337364196777287, -11.49041557312006 ], [ -77.337913513183594, -11.49041557312006 ], [ -77.337913513183594, -11.490138053893986 ], [ -77.339027404785156, -11.490138053893986 ], [ -77.339027404785156, -11.489862442016602 ], [ -77.339302062988281, -11.489862442016602 ], [ -77.339302062988281, -11.489582061767521 ], [ -77.340690612792912, -11.489582061767521 ], [ -77.340698242187443, -11.489306449890137 ], [ -77.34124755859375, -11.489306449890137 ], [ -77.34124755859375, -11.489027976989746 ], [ -77.342361450195312, -11.489027976989746 ], [ -77.342361450195312, -11.488750457763558 ], [ -77.342636108398438, -11.488750457763558 ], [ -77.342636108398438, -11.488471984863281 ], [ -77.343193054199162, -11.488471984863281 ], [ -77.343193054199162, -11.48819446563715 ], [ -77.343475341796818, -11.48819446563715 ], [ -77.343475341796818, -11.487360000610295 ], [ -77.34375, -11.487360000610295 ], [ -77.34375, -11.48680591583252 ], [ -77.344306945800724, -11.48680591583252 ], [ -77.344306945800724, -11.486528396606445 ], [ -77.344581604003906, -11.486528396606445 ], [ -77.344581604003906, -11.48597240447998 ], [ -77.344863891601562, -11.48597240447998 ], [ -77.344863891601562, -11.485416412353402 ], [ -77.345138549804688, -11.485416412353402 ], [ -77.345138549804688, -11.484862327575684 ], [ -77.345413208007812, -11.484862327575684 ], [ -77.345413208007812, -11.484306335449219 ], [ -77.345695495605469, -11.484306335449219 ], [ -77.345695495605469, -11.483750343322754 ], [ -77.345413208007812, -11.483750343322754 ], [ -77.345413208007812, -11.483194351196289 ], [ -77.344863891601562, -11.483194351196289 ], [ -77.344863891601562, -11.482917785644474 ], [ -77.344581604003906, -11.482917785644474 ], [ -77.344581604003906, -11.4826402664184 ], [ -77.344024658203068, -11.4826402664184 ], [ -77.344024658203068, -11.48236179351801 ], [ -77.34375, -11.48236179351801 ], [ -77.34375, -11.481805801391545 ], [ -77.343475341796818, -11.481805801391545 ], [ -77.343475341796818, -11.480971336364689 ], [ -77.34375, -11.480971336364689 ], [ -77.34375, -11.480138778686523 ], [ -77.344024658203068, -11.480138778686523 ], [ -77.344024658203068, -11.479859352111816 ], [ -77.344306945800724, -11.479861259460336 ], [ -77.344306945800724, -11.478749275207463 ], [ -77.344581604003906, -11.478749275207463 ], [ -77.344581604003906, -11.477360725402832 ], [ -77.344306945800724, -11.477360725402832 ], [ -77.344306945800724, -11.476527214050293 ], [ -77.344863891601562, -11.476527214050293 ], [ -77.344863891601562, -11.476248741149902 ], [ -77.345138549804688, -11.476248741149902 ], [ -77.345138549804688, -11.475973129272461 ], [ -77.345695495605469, -11.475973129272461 ], [ -77.345695495605469, -11.47569465637207 ], [ -77.345970153808594, -11.47569465637207 ], [ -77.345970153808594, -11.475415229797306 ], [ -77.34625244140625, -11.475417137145996 ], [ -77.34625244140625, -11.475138664245605 ], [ -77.346527099609318, -11.475138664245605 ], [ -77.346527099609318, -11.474582672119141 ], [ -77.346801757812443, -11.474582672119141 ], [ -77.346801757812443, -11.474303245544377 ], [ -77.347084045410099, -11.474305152893066 ], [ -77.347084045410099, -11.474026679992676 ], [ -77.347640991210938, -11.474026679992676 ], [ -77.347640991210938, -11.473749160766602 ], [ -77.348747253417969, -11.473749160766602 ], [ -77.348747253417969, -11.473193168640137 ], [ -77.348197937011719, -11.473195075988713 ], [ -77.348197937011719, -11.472916603088322 ], [ -77.348747253417969, -11.472916603088322 ], [ -77.348747253417969, -11.472639083862305 ], [ -77.349029541015625, -11.472639083862305 ], [ -77.349029541015625, -11.472360610961857 ], [ -77.349586486816293, -11.472360610961857 ], [ -77.349586486816293, -11.47208309173584 ], [ -77.349861145019474, -11.47208309173584 ], [ -77.349861145019474, -11.471804618835449 ], [ -77.350418090820256, -11.471804618835449 ], [ -77.350418090820256, -11.471527099609375 ], [ -77.350975036621094, -11.471529006957951 ], [ -77.350975036621094, -11.471248626708984 ], [ -77.351249694824219, -11.471248626708984 ], [ -77.351249694824219, -11.47097110748291 ], [ -77.351806640625, -11.470973014831486 ], [ -77.351806640625, -11.470694541931096 ], [ -77.352081298828125, -11.470694541931096 ], [ -77.352081298828125, -11.470417022705021 ], [ -77.352638244628793, -11.470417022705021 ], [ -77.352638244628793, -11.470138549804631 ], [ -77.353195190429631, -11.470138549804631 ], [ -77.353195190429631, -11.469861030578556 ], [ -77.353469848632756, -11.469861030578556 ], [ -77.353469848632756, -11.469582557678166 ], [ -77.354026794433594, -11.469582557678166 ], [ -77.354026794433594, -11.469304084777775 ], [ -77.35430908203125, -11.469306945800781 ], [ -77.35430908203125, -11.469025611877385 ], [ -77.3548583984375, -11.469025611877385 ], [ -77.3548583984375, -11.46874809265131 ], [ -77.355415344238281, -11.468750953674203 ], [ -77.355415344238281, -11.468473434448185 ], [ -77.355697631835938, -11.468473434448185 ], [ -77.355697631835938, -11.468192100524846 ], [ -77.356246948242131, -11.468194961547795 ], [ -77.356246948242131, -11.467915534973145 ], [ -77.356529235839787, -11.467915534973145 ], [ -77.356529235839787, -11.46763801574707 ], [ -77.357086181640568, -11.46763801574707 ], [ -77.357086181640568, -11.46735954284668 ], [ -77.35736083984375, -11.46735954284668 ], [ -77.35736083984375, -11.467082023620492 ], [ -77.357917785644531, -11.467082023620492 ], [ -77.357917785644531, -11.46680736541748 ], [ -77.358192443847656, -11.46680736541748 ], [ -77.358192443847656, -11.466526031494084 ], [ -77.358474731445312, -11.466527938842773 ], [ -77.358474731445312, -11.466250419616699 ], [ -77.358749389648438, -11.466250419616699 ], [ -77.358749389648438, -11.465970039367619 ], [ -77.359306335449162, -11.465971946716309 ], [ -77.359306335449162, -11.465694427490234 ], [ -77.359580993652287, -11.465694427490234 ], [ -77.359580993652287, -11.465415954589844 ], [ -77.359863281249943, -11.465415954589844 ], [ -77.359863281249943, -11.46513843536377 ], [ -77.360420227050781, -11.46513843536377 ], [ -77.360420227050781, -11.464859962463379 ], [ -77.360694885253906, -11.464859962463379 ], [ -77.360694885253906, -11.464584350585938 ], [ -77.360969543457031, -11.464584350585938 ], [ -77.360969543457031, -11.46430587768549 ], [ -77.361251831054688, -11.46430587768549 ], [ -77.361251831054688, -11.464028358459473 ], [ -77.361808776855469, -11.464028358459473 ], [ -77.361808776855469, -11.463749885559082 ], [ -77.362083435058594, -11.463749885559082 ], [ -77.362083435058594, -11.463472366333008 ], [ -77.362640380859318, -11.463472366333008 ], [ -77.362640380859318, -11.463193893432617 ], [ -77.362915039062443, -11.463193893432617 ], [ -77.362915039062443, -11.462916374206543 ], [ -77.363471984863281, -11.462916374206543 ], [ -77.363471984863281, -11.462637901306152 ], [ -77.364028930664062, -11.462637901306152 ], [ -77.364028930664062, -11.462362289428654 ], [ -77.364303588867188, -11.462362289428654 ], [ -77.364303588867188, -11.462081909179688 ], [ -77.364860534667969, -11.462081909179688 ], [ -77.364860534667969, -11.461806297302189 ], [ -77.365135192871094, -11.461806297302189 ], [ -77.365135192871094, -11.461527824401799 ], [ -77.365692138671818, -11.461527824401799 ], [ -77.365692138671818, -11.460971832275334 ], [ -77.365974426269474, -11.460971832275334 ], [ -77.365974426269474, -11.460415840148869 ], [ -77.366249084472599, -11.460415840148869 ], [ -77.366249084472599, -11.459859848022461 ], [ -77.366531372070256, -11.459859848022461 ], [ -77.366531372070256, -11.459305763244515 ], [ -77.366806030273438, -11.459305763244515 ], [ -77.366806030273438, -11.459026336669922 ], [ -77.367362976074219, -11.459028244018498 ], [ -77.367362976074219, -11.458749771118107 ], [ -77.367637634277344, -11.458749771118107 ], [ -77.367637634277344, -11.458472251892033 ], [ -77.368194580078125, -11.458472251892033 ], [ -77.368194580078125, -11.458193778991642 ], [ -77.368469238281136, -11.458193778991642 ], [ -77.368469238281136, -11.457916259765568 ], [ -77.368751525878849, -11.457916259765568 ], [ -77.368751525878849, -11.457639694213867 ], [ -77.369308471679631, -11.457639694213867 ], [ -77.369308471679631, -11.45736026763916 ], [ -77.369583129882756, -11.457362174987793 ], [ -77.369583129882756, -11.457083702087402 ], [ -77.370140075683594, -11.457083702087402 ], [ -77.370140075683594, -11.456803321838322 ], [ -77.370414733886719, -11.456806182861214 ], [ -77.370414733886719, -11.456527709960938 ], [ -77.3709716796875, -11.456527709960938 ], [ -77.3709716796875, -11.456250190734806 ], [ -77.371246337890625, -11.456250190734806 ], [ -77.371246337890625, -11.455973625183105 ], [ -77.371528625488281, -11.455971717834359 ], [ -77.371528625488281, -11.455691337585449 ], [ -77.372085571289006, -11.455693244934082 ], [ -77.372085571289006, -11.455417633056641 ], [ -77.372360229492131, -11.455417633056641 ], [ -77.372360229492131, -11.455140113830566 ], [ -77.372917175292912, -11.455140113830566 ], [ -77.372917175292912, -11.454861640930176 ], [ -77.373191833496094, -11.454861640930176 ], [ -77.373191833496094, -11.454584121704102 ], [ -77.373748779296875, -11.454584121704102 ], [ -77.373748779296875, -11.454304695129395 ], [ -77.374305725097656, -11.454304695129395 ], [ -77.374305725097656, -11.45402717590332 ], [ -77.374862670898438, -11.45402717590332 ], [ -77.374862670898438, -11.45374870300293 ], [ -77.375419616699162, -11.45374870300293 ], [ -77.375419616699162, -11.453471183776855 ], [ -77.376251220703125, -11.453471183776855 ], [ -77.376251220703125, -11.453195571899357 ], [ -77.376808166503906, -11.453195571899357 ], [ -77.376808166503906, -11.452915191650391 ], [ -77.377357482910156, -11.452917098998967 ], [ -77.377357482910156, -11.452638626098576 ], [ -77.377914428710938, -11.452638626098576 ], [ -77.377914428710938, -11.452359199523926 ], [ -77.378471374511662, -11.452361106872502 ], [ -77.378471374511662, -11.452082633972111 ], [ -77.379028320312443, -11.452082633972111 ], [ -77.379028320312443, -11.451805114746094 ], [ -77.379302978515625, -11.451805114746094 ], [ -77.379302978515625, -11.451526641845646 ], [ -77.379859924316406, -11.451526641845646 ], [ -77.379859924316406, -11.451249122619629 ], [ -77.380142211914062, -11.451249122619629 ], [ -77.380142211914062, -11.450972557067871 ], [ -77.380691528320312, -11.450972557067871 ], [ -77.380691528320312, -11.450693130493164 ], [ -77.380973815917969, -11.450693130493164 ], [ -77.380973815917969, -11.450416564941293 ], [ -77.38124847412098, -11.450416564941293 ], [ -77.38124847412098, -11.450139045715275 ], [ -77.381530761718693, -11.450139045715275 ], [ -77.381530761718693, -11.449860572814885 ], [ -77.382080078124943, -11.449860572814885 ], [ -77.382080078124943, -11.44958305358881 ], [ -77.382362365722599, -11.44958305358881 ], [ -77.382362365722599, -11.44930458068842 ], [ -77.382637023925781, -11.44930458068842 ], [ -77.382637023925781, -11.449027061462346 ], [ -77.382843017578068, -11.449027061462346 ], [ -77.383193969726562, -11.449027061462346 ], [ -77.383193969726562, -11.448748588561955 ], [ -77.384025573730469, -11.448748588561955 ], [ -77.384025573730469, -11.448471069335881 ], [ -77.384582519531193, -11.448471069335881 ], [ -77.384582519531193, -11.448195457458382 ], [ -77.385139465331974, -11.448195457458382 ], [ -77.385139465331974, -11.447916984558105 ], [ -77.385414123535099, -11.447916984558105 ], [ -77.385414123535099, -11.447639465331974 ], [ -77.385971069335938, -11.447639465331974 ], [ -77.385971069335938, -11.447360992431527 ], [ -77.386253356933594, -11.447360992431527 ], [ -77.386253356933594, -11.44708347320551 ], [ -77.386802673339844, -11.44708347320551 ], [ -77.386802673339844, -11.446805000305119 ], [ -77.3870849609375, -11.446805000305119 ], [ -77.3870849609375, -11.446526527404671 ], [ -77.387916564941349, -11.446526527404671 ], [ -77.387916564941349, -11.446249008178654 ], [ -77.388473510742131, -11.446250915527344 ], [ -77.388473510742131, -11.44597339630127 ], [ -77.389305114746094, -11.44597339630127 ], [ -77.389305114746094, -11.445693016052189 ], [ -77.389862060546875, -11.445694923400879 ], [ -77.389862060546875, -11.445417404174805 ], [ -77.39013671875, -11.445417404174805 ], [ -77.39013671875, -11.444861412048226 ], [ -77.390419006347656, -11.444861412048226 ], [ -77.390419006347656, -11.444305419921818 ], [ -77.390693664550781, -11.444305419921818 ], [ -77.390693664550781, -11.443751335144043 ], [ -77.391250610351506, -11.443751335144043 ], [ -77.391250610351506, -11.443470001220703 ], [ -77.391525268554631, -11.443472862243652 ], [ -77.391525268554631, -11.443195343017578 ], [ -77.392082214355469, -11.443195343017578 ], [ -77.392082214355469, -11.442916870117188 ], [ -77.392364501953125, -11.442916870117188 ], [ -77.392364501953125, -11.442639350891113 ], [ -77.392913818359375, -11.442639350891113 ], [ -77.392913818359375, -11.442360877990723 ], [ -77.393196105957031, -11.442360877990723 ], [ -77.393196105957031, -11.442082405090332 ], [ -77.393753051757812, -11.442082405090332 ], [ -77.393753051757812, -11.441806793212834 ], [ -77.394027709960824, -11.441806793212834 ], [ -77.394027709960824, -11.441526412963867 ], [ -77.394584655761662, -11.441526412963867 ], [ -77.394584655761662, -11.441250801086369 ], [ -77.394859313964787, -11.441250801086369 ], [ -77.394859313964787, -11.440973281860352 ], [ -77.395416259765625, -11.440973281860352 ], [ -77.395416259765625, -11.440693855285588 ], [ -77.395973205566406, -11.440693855285588 ], [ -77.395973205566406, -11.440416336059513 ], [ -77.396247863769531, -11.440416336059513 ], [ -77.396247863769531, -11.440137863159123 ], [ -77.396804809570312, -11.440137863159123 ], [ -77.396804809570312, -11.439860343933105 ], [ -77.397361755371037, -11.439860343933105 ], [ -77.397361755371037, -11.439584732055607 ], [ -77.397918701171818, -11.439584732055607 ], [ -77.397918701171818, -11.439304351806641 ], [ -77.398193359374943, -11.439304351806641 ], [ -77.398193359374943, -11.439027786254883 ], [ -77.398750305175781, -11.439027786254883 ], [ -77.398750305175781, -11.438750267028752 ], [ -77.399307250976562, -11.438750267028752 ], [ -77.399307250976562, -11.438471794128304 ], [ -77.399864196777344, -11.438471794128304 ], [ -77.399864196777344, -11.438194274902287 ], [ -77.400138854980469, -11.438194274902287 ], [ -77.400138854980469, -11.437915802001896 ], [ -77.400695800781193, -11.437915802001896 ], [ -77.400695800781193, -11.437638282775822 ], [ -77.401252746581974, -11.437638282775822 ], [ -77.401252746581974, -11.437359809875431 ], [ -77.402084350585938, -11.437359809875431 ], [ -77.402084350585938, -11.437082290649357 ], [ -77.402641296386719, -11.437084197998047 ], [ -77.402641296386719, -11.436528205871582 ], [ -77.402915954589844, -11.436528205871582 ], [ -77.402915954589844, -11.436249732971191 ], [ -77.403472900390625, -11.436249732971191 ], [ -77.403472900390625, -11.435972213745117 ], [ -77.403747558593693, -11.435972213745117 ], [ -77.403747558593693, -11.435693740844727 ], [ -77.404304504394474, -11.435693740844727 ], [ -77.404304504394474, -11.43541431427002 ], [ -77.404586791992131, -11.435416221618539 ], [ -77.404586791992131, -11.435137748718262 ], [ -77.405136108398438, -11.435137748718262 ], [ -77.405136108398438, -11.434860229492131 ], [ -77.405418395996094, -11.43486213684082 ], [ -77.405418395996094, -11.43458366394043 ], [ -77.405975341796875, -11.43458366394043 ], [ -77.405975341796875, -11.434304237365666 ], [ -77.40625, -11.434306144714355 ], [ -77.40625, -11.434027671813965 ], [ -77.406806945800668, -11.434027671813965 ], [ -77.406806945800668, -11.433748245239201 ], [ -77.407081604003849, -11.433750152587891 ], [ -77.407081604003849, -11.4334716796875 ], [ -77.407638549804631, -11.4334716796875 ], [ -77.407638549804631, -11.433194160461426 ], [ -77.407913208007812, -11.433194160461426 ], [ -77.407913208007812, -11.432915687561035 ], [ -77.408470153808594, -11.432915687561035 ], [ -77.408470153808594, -11.432638168334961 ], [ -77.409027099609375, -11.432640075683537 ], [ -77.409027099609375, -11.43235969543457 ], [ -77.4093017578125, -11.43235969543457 ], [ -77.4093017578125, -11.432082176208382 ], [ -77.409858703613168, -11.432084083557129 ], [ -77.409858703613168, -11.431805610656681 ], [ -77.410140991210881, -11.431805610656681 ], [ -77.410140991210881, -11.431528091430664 ], [ -77.410697937011662, -11.431528091430664 ], [ -77.410697937011662, -11.431249618530273 ], [ -77.410972595214787, -11.431249618530273 ], [ -77.410972595214787, -11.430972099304199 ], [ -77.411529541015625, -11.430972099304199 ], [ -77.411529541015625, -11.430693626403809 ], [ -77.41180419921875, -11.430693626403809 ], [ -77.41180419921875, -11.430416107177734 ], [ -77.412361145019531, -11.43041801452631 ], [ -77.412361145019531, -11.430137634277344 ], [ -77.412635803222656, -11.430137634277344 ], [ -77.412635803222656, -11.429859161376953 ], [ -77.413192749023381, -11.429862022399846 ], [ -77.413192749023381, -11.429583549499455 ], [ -77.413475036621037, -11.429583549499455 ], [ -77.413475036621037, -11.429306030273381 ], [ -77.414024353027287, -11.429306030273381 ], [ -77.414024353027287, -11.42902755737299 ], [ -77.414306640624943, -11.42902755737299 ], [ -77.414306640624943, -11.428750038146973 ], [ -77.414581298828125, -11.428750038146973 ], [ -77.414581298828125, -11.428470611572209 ], [ -77.415138244628906, -11.428470611572209 ], [ -77.415138244628906, -11.428193092346135 ], [ -77.415412902832031, -11.428193092346135 ], [ -77.415412902832031, -11.42791843414301 ], [ -77.415969848632812, -11.42791843414301 ], [ -77.415969848632812, -11.42763710021967 ], [ -77.416252136230469, -11.427639961242619 ], [ -77.416252136230469, -11.427362442016545 ], [ -77.416526794433537, -11.427362442016545 ], [ -77.416526794433537, -11.427081108093262 ], [ -77.417083740234318, -11.427083015441895 ], [ -77.417083740234318, -11.426804542541504 ], [ -77.417358398437443, -11.426804542541504 ], [ -77.417358398437443, -11.426527023315316 ], [ -77.417640686035156, -11.426527023315316 ], [ -77.417640686035156, -11.426252365112305 ], [ -77.418197631835938, -11.426248550415039 ], [ -77.418197631835938, -11.425971031188908 ], [ -77.418472290039062, -11.425971031188908 ], [ -77.418472290039062, -11.425695419311523 ], [ -77.419029235839844, -11.425695419311523 ], [ -77.419029235839844, -11.425415039062443 ], [ -77.419303894042969, -11.425416946411133 ], [ -77.419303894042969, -11.425139427185059 ], [ -77.419860839843693, -11.425139427185059 ], [ -77.419860839843693, -11.424859046935978 ], [ -77.420417785644474, -11.424860954284668 ], [ -77.420417785644474, -11.424583435058594 ], [ -77.420692443847656, -11.424583435058594 ], [ -77.420692443847656, -11.424304962158203 ], [ -77.421249389648438, -11.424304962158203 ], [ -77.421249389648438, -11.424027442932129 ], [ -77.423194885253849, -11.424027442932129 ], [ -77.423194885253849, -11.423748970031738 ], [ -77.423469543456974, -11.423748970031738 ], [ -77.423469543456974, -11.423473358154297 ], [ -77.424026489257812, -11.423473358154297 ], [ -77.424026489257812, -11.423194885253906 ], [ -77.424308776855469, -11.423194885253906 ], [ -77.424308776855469, -11.422917366027832 ], [ -77.424858093261719, -11.422917366027832 ], [ -77.424858093261719, -11.422636985778695 ], [ -77.425140380859375, -11.422638893127441 ], [ -77.425140380859375, -11.422361373901367 ], [ -77.425697326660156, -11.422361373901367 ], [ -77.425697326660156, -11.422082901000977 ], [ -77.425971984863224, -11.422082901000977 ], [ -77.425971984863224, -11.421805381774902 ], [ -77.426528930664006, -11.421805381774902 ], [ -77.426528930664006, -11.421526908874512 ], [ -77.426803588867131, -11.421526908874512 ], [ -77.426803588867131, -11.421251296997013 ], [ -77.427360534667969, -11.421251296997013 ], [ -77.427360534667969, -11.420970916748047 ], [ -77.427635192871094, -11.420970916748047 ], [ -77.427635192871094, -11.420695304870549 ], [ -77.428192138671875, -11.420695304870549 ], [ -77.428192138671875, -11.420416831970158 ], [ -77.428474426269531, -11.420416831970158 ], [ -77.428474426269531, -11.420139312744141 ], [ -77.429031372070312, -11.420139312744141 ], [ -77.429031372070312, -11.419860839843693 ], [ -77.429306030273381, -11.419860839843693 ], [ -77.429306030273381, -11.419583320617676 ], [ -77.429580688476506, -11.419583320617676 ], [ -77.429580688476506, -11.419304847717285 ], [ -77.430137634277287, -11.419304847717285 ], [ -77.430137634277287, -11.419027328491211 ], [ -77.430419921875, -11.419027328491211 ], [ -77.430419921875, -11.41874885559082 ], [ -77.43096923828125, -11.41874885559082 ], [ -77.43096923828125, -11.418471336364746 ], [ -77.431251525878906, -11.418473243713322 ], [ -77.431251525878906, -11.418194770812931 ], [ -77.431808471679688, -11.418194770812931 ], [ -77.431808471679688, -11.417917251586857 ], [ -77.432357788085881, -11.417917251586857 ], [ -77.432357788085881, -11.417638778686467 ], [ -77.432914733886662, -11.417638778686467 ], [ -77.432914733886662, -11.417361259460392 ], [ -77.433197021484318, -11.417361259460392 ], [ -77.433197021484318, -11.417082786560002 ], [ -77.433746337890625, -11.417082786560002 ], [ -77.433746337890625, -11.416805267333984 ], [ -77.434303283691406, -11.416805267333984 ], [ -77.434303283691406, -11.416528701782227 ], [ -77.434860229492188, -11.416528701782227 ], [ -77.434860229492188, -11.416251182556039 ], [ -77.435417175292855, -11.416251182556039 ], [ -77.435417175292855, -11.415972709655762 ], [ -77.435974121093693, -11.415972709655762 ], [ -77.435974121093693, -11.415695190429631 ], [ -77.436531066894474, -11.415695190429631 ], [ -77.436531066894474, -11.415416717529183 ], [ -77.436805725097656, -11.415416717529183 ], [ -77.436805725097656, -11.415136337280273 ], [ -77.437362670898438, -11.415139198303166 ], [ -77.437362670898438, -11.414859771728516 ], [ -77.437919616699219, -11.414859771728516 ], [ -77.437919616699219, -11.414582252502328 ], [ -77.438468933105355, -11.414582252502328 ], [ -77.438468933105355, -11.414306640625 ], [ -77.439025878906193, -11.414306640625 ], [ -77.439025878906193, -11.414029121398926 ], [ -77.439582824706974, -11.414029121398926 ], [ -77.439582824706974, -11.413750648498535 ], [ -77.440139770507812, -11.413750648498535 ], [ -77.440139770507812, -11.413472175598145 ], [ -77.440414428710938, -11.413472175598145 ], [ -77.440414428710938, -11.413193702697754 ], [ -77.440971374511719, -11.413193702697754 ], [ -77.440971374511719, -11.41291427612299 ], [ -77.4415283203125, -11.41291618347168 ], [ -77.4415283203125, -11.412637710571289 ], [ -77.442085266113224, -11.412637710571289 ], [ -77.442085266113224, -11.412360191345215 ], [ -77.442642211914006, -11.412360191345215 ], [ -77.442642211914006, -11.4120836257934 ], [ -77.443191528320312, -11.4120836257934 ], [ -77.443191528320312, -11.41180419921875 ], [ -77.443748474121094, -11.41180419921875 ], [ -77.443748474121094, -11.411527633666935 ], [ -77.44403076171875, -11.411527633666935 ], [ -77.44403076171875, -11.411248207092285 ], [ -77.444580078125, -11.411250114440918 ], [ -77.444580078125, -11.410971641540471 ], [ -77.445137023925724, -11.410971641540471 ], [ -77.445137023925724, -11.410694122314453 ], [ -77.445693969726506, -11.410694122314453 ], [ -77.445693969726506, -11.410415649414062 ], [ -77.446250915527344, -11.410415649414062 ], [ -77.446250915527344, -11.410138130187988 ], [ -77.446525573730469, -11.410138130187988 ], [ -77.446525573730469, -11.409861564636117 ], [ -77.44708251953125, -11.409859657287598 ], [ -77.44708251953125, -11.409582138061523 ], [ -77.447364807128906, -11.409582138061523 ], [ -77.447364807128906, -11.409305572509709 ], [ -77.447914123535156, -11.409305572509709 ], [ -77.447914123535156, -11.409028053283635 ], [ -77.448196411132699, -11.409028053283635 ], [ -77.448196411132699, -11.408749580383244 ], [ -77.448753356933537, -11.408749580383244 ], [ -77.448753356933537, -11.40847206115717 ], [ -77.449028015136662, -11.40847206115717 ], [ -77.449028015136662, -11.408193588256779 ], [ -77.450416564941406, -11.408193588256779 ], [ -77.450416564941406, -11.407916069030705 ], [ -77.450691223144531, -11.407916069030705 ], [ -77.450691223144531, -11.407637596130314 ], [ -77.451248168945199, -11.407637596130314 ], [ -77.451248168945199, -11.407360076904297 ], [ -77.451530456542912, -11.40736198425293 ], [ -77.451530456542912, -11.407084465026799 ], [ -77.451805114746037, -11.407084465026799 ], [ -77.451805114746037, -11.406805992126351 ], [ -77.452079772949162, -11.406805992126351 ], [ -77.452079772949162, -11.406528472900334 ], [ -77.45263671875, -11.406528472900334 ], [ -77.45263671875, -11.40625 ], [ -77.452919006347656, -11.40625 ], [ -77.452919006347656, -11.405971527099496 ], [ -77.453193664550781, -11.405971527099496 ], [ -77.453193664550781, -11.405694007873478 ], [ -77.453475952148438, -11.405694007873478 ], [ -77.453475952148438, -11.405415534973088 ], [ -77.454025268554688, -11.405415534973088 ], [ -77.454025268554688, -11.405138015747013 ], [ -77.454307556152344, -11.405139923095703 ], [ -77.454307556152344, -11.404862403869629 ], [ -77.454582214355412, -11.404862403869629 ], [ -77.454582214355412, -11.404582023620549 ], [ -77.454864501953068, -11.404583930969238 ], [ -77.454864501953068, -11.40430641174305 ], [ -77.455413818359318, -11.40430641174305 ], [ -77.455413818359318, -11.404027938842773 ], [ -77.455696105956974, -11.404027938842773 ], [ -77.455696105956974, -11.403750419616642 ], [ -77.455970764160156, -11.403750419616642 ], [ -77.455970764160156, -11.403471946716195 ], [ -77.456802368164062, -11.403471946716195 ], [ -77.456802368164062, -11.403194427490178 ], [ -77.457359313964844, -11.403194427490178 ], [ -77.457359313964844, -11.402915954589787 ], [ -77.458190917968693, -11.402917861938477 ], [ -77.458190917968693, -11.402636528015137 ], [ -77.458747863769474, -11.402636528015137 ], [ -77.458747863769474, -11.402359008789062 ], [ -77.459304809570312, -11.402361869812012 ], [ -77.459304809570312, -11.402084350585938 ], [ -77.459861755371094, -11.402084350585938 ], [ -77.459861755371094, -11.401805877685547 ], [ -77.460418701171875, -11.401805877685547 ], [ -77.460418701171875, -11.401528358459473 ], [ -77.460975646972543, -11.401528358459473 ], [ -77.460975646972543, -11.401248931884766 ], [ -77.461250305175724, -11.401248931884766 ], [ -77.461250305175724, -11.400971412658691 ], [ -77.461807250976506, -11.400971412658691 ], [ -77.461807250976506, -11.400695800781193 ], [ -77.462081909179688, -11.400695800781193 ], [ -77.462081909179688, -11.400415420532227 ], [ -77.462638854980469, -11.400415420532227 ], [ -77.462638854980469, -11.400139808654785 ], [ -77.462913513183594, -11.400139808654785 ], [ -77.462913513183594, -11.399861335754338 ], [ -77.46319580078125, -11.399861335754338 ], [ -77.46319580078125, -11.400139808654785 ], [ -77.463470458984375, -11.400139808654785 ], [ -77.463470458984375, -11.399582862853947 ], [ -77.464027404785043, -11.399582862853947 ], [ -77.464027404785043, -11.39930534362793 ], [ -77.464302062988224, -11.39930534362793 ], [ -77.464302062988224, -11.399026870727482 ], [ -77.464859008789006, -11.399026870727482 ], [ -77.464859008789006, -11.398749351501465 ], [ -77.465415954589844, -11.398749351501465 ], [ -77.465415954589844, -11.398470878601074 ], [ -77.465690612792969, -11.398470878601074 ], [ -77.4656982421875, -11.398195266723576 ], [ -77.46624755859375, -11.398195266723576 ], [ -77.46624755859375, -11.397916793823129 ], [ -77.466804504394531, -11.397916793823129 ], [ -77.466804504394531, -11.397639274597111 ], [ -77.467086791992188, -11.397639274597111 ], [ -77.467086791992188, -11.397360801696721 ], [ -77.467636108398381, -11.397360801696721 ], [ -77.467636108398381, -11.397083282470646 ], [ -77.468193054199162, -11.397083282470646 ], [ -77.468193054199162, -11.396804809570256 ], [ -77.46875, -11.396804809570256 ], [ -77.46875, -11.396527290344181 ], [ -77.469024658203125, -11.396527290344181 ], [ -77.469024658203125, -11.396248817443791 ], [ -77.469581604003906, -11.396248817443791 ], [ -77.469581604003906, -11.395973205566406 ], [ -77.470138549804688, -11.395973205566406 ], [ -77.470138549804688, -11.395694732666016 ], [ -77.470413208007756, -11.395694732666016 ], [ -77.470413208007756, -11.395417213439941 ], [ -77.470970153808537, -11.395417213439941 ], [ -77.470970153808537, -11.395138740539551 ], [ -77.471527099609318, -11.395138740539551 ], [ -77.471527099609318, -11.394859313964844 ], [ -77.4718017578125, -11.394861221313363 ], [ -77.4718017578125, -11.394582748413086 ], [ -77.472358703613281, -11.394582748413086 ], [ -77.472358703613281, -11.394305229186955 ], [ -77.472915649414062, -11.394305229186955 ], [ -77.472915649414062, -11.394026756286507 ], [ -77.473197937011719, -11.394026756286507 ], [ -77.473197937011719, -11.39374923706049 ], [ -77.473747253417912, -11.39375114440918 ], [ -77.473747253417912, -11.393472671508789 ], [ -77.474304199218693, -11.393470764160099 ], [ -77.474304199218693, -11.393193244934025 ], [ -77.474586486816349, -11.393195152282715 ], [ -77.474586486816349, -11.392916679382324 ], [ -77.475135803222656, -11.392916679382324 ], [ -77.475135803222656, -11.39263916015625 ], [ -77.475692749023438, -11.39263916015625 ], [ -77.475692749023438, -11.392360687255859 ], [ -77.476249694824219, -11.392360687255859 ], [ -77.476249694824219, -11.392083168029785 ], [ -77.476524353027344, -11.392083168029785 ], [ -77.476524353027344, -11.391804695129395 ], [ -77.477081298828068, -11.391804695129395 ], [ -77.477081298828068, -11.391527175903207 ], [ -77.477638244628849, -11.391529083251953 ], [ -77.477638244628849, -11.39124870300293 ], [ -77.477912902832031, -11.39124870300293 ], [ -77.477912902832031, -11.390971183776799 ], [ -77.478469848632812, -11.390973091125488 ], [ -77.478469848632812, -11.390694618225098 ], [ -77.479026794433594, -11.390694618225098 ], [ -77.479026794433594, -11.390417098999023 ], [ -77.47930908203125, -11.390417098999023 ], [ -77.47930908203125, -11.390138626098633 ], [ -77.479858398437386, -11.390138626098633 ], [ -77.479858398437386, -11.389861106872559 ], [ -77.480415344238224, -11.389861106872559 ], [ -77.480415344238224, -11.389582633972168 ], [ -77.480972290039006, -11.389582633972168 ], [ -77.480972290039006, -11.389305114746094 ], [ -77.481529235839844, -11.389305114746094 ], [ -77.481529235839844, -11.389025688171387 ], [ -77.48236083984375, -11.389025688171387 ], [ -77.48236083984375, -11.388748168945312 ], [ -77.482917785644531, -11.388751029968205 ], [ -77.482917785644531, -11.388472557067814 ], [ -77.483474731445256, -11.388472557067814 ], [ -77.483474731445256, -11.388192176818848 ], [ -77.484024047851506, -11.388195037841797 ], [ -77.484024047851506, -11.387916564941349 ], [ -77.484580993652344, -11.387916564941349 ], [ -77.484580993652344, -11.387638092040959 ], [ -77.485137939453125, -11.387638092040959 ], [ -77.485137939453125, -11.387359619140568 ], [ -77.485694885253906, -11.387359619140568 ], [ -77.485694885253906, -11.387082099914494 ], [ -77.485969543457031, -11.387082099914494 ], [ -77.485969543457031, -11.386807441711369 ], [ -77.486526489257756, -11.386807441711369 ], [ -77.486526489257756, -11.386526107788086 ], [ -77.487083435058537, -11.386528968810978 ], [ -77.487083435058537, -11.386249542236328 ], [ -77.487358093261662, -11.386249542236328 ], [ -77.487358093261662, -11.385970115661621 ], [ -77.4879150390625, -11.38597202301014 ], [ -77.4879150390625, -11.385693550109863 ], [ -77.488197326660156, -11.385693550109863 ], [ -77.488197326660156, -11.385416030883732 ], [ -77.489028930664062, -11.385416030883732 ], [ -77.489028930664062, -11.385137557983285 ], [ -77.48958587646473, -11.385137557983285 ], [ -77.48958587646473, -11.384584426879883 ], [ -77.490135192871037, -11.384584426879883 ], [ -77.490135192871037, -11.384304046630803 ], [ -77.490692138671875, -11.384304046630803 ], [ -77.490692138671875, -11.383748054504338 ], [ -77.491249084472656, -11.383748054504338 ], [ -77.491249084472656, -11.384028434753418 ], [ -77.491531372070312, -11.384028434753418 ], [ -77.491531372070312, -11.383748054504338 ], [ -77.491806030273438, -11.383749961853027 ], [ -77.491806030273438, -11.383472442626953 ], [ -77.492362976074219, -11.383472442626953 ], [ -77.492362976074219, -11.383192062377873 ], [ -77.492919921874943, -11.383193969726562 ], [ -77.492919921874943, -11.382916450500375 ], [ -77.493469238281193, -11.382916450500375 ], [ -77.493469238281193, -11.382637977600098 ], [ -77.493751525878849, -11.382637977600098 ], [ -77.493751525878849, -11.382362365722656 ], [ -77.494308471679688, -11.382362365722656 ], [ -77.494308471679688, -11.382081985473519 ], [ -77.494583129882812, -11.382081985473519 ], [ -77.494583129882812, -11.381525993347111 ], [ -77.495140075683594, -11.381527900695801 ], [ -77.495140075683594, -11.381250381469727 ], [ -77.495697021484375, -11.381250381469727 ], [ -77.495697021484375, -11.380971908569336 ], [ -77.496246337890568, -11.380971908569336 ], [ -77.496246337890568, -11.380694389343262 ], [ -77.497085571289006, -11.380694389343262 ], [ -77.497085571289006, -11.380415916442871 ], [ -77.497360229492188, -11.380415916442871 ], [ -77.497360229492188, -11.380140304565373 ], [ -77.497642517089844, -11.380138397216797 ], [ -77.497642517089844, -11.379859924316406 ], [ -77.497917175292969, -11.379859924316406 ], [ -77.497917175292969, -11.379584312438965 ], [ -77.498191833496094, -11.379584312438965 ], [ -77.498191833496094, -11.379305839538517 ], [ -77.49847412109375, -11.379305839538517 ], [ -77.49847412109375, -11.3790283203125 ], [ -77.499031066894531, -11.3790283203125 ], [ -77.499031066894531, -11.379305839538517 ], [ -77.499580383300724, -11.379305839538517 ], [ -77.499580383300724, -11.3790283203125 ], [ -77.500137329101506, -11.3790283203125 ], [ -77.500137329101506, -11.378749847412109 ], [ -77.500694274902344, -11.378749847412109 ], [ -77.500694274902344, -11.378472328186035 ], [ -77.501251220703125, -11.378472328186035 ], [ -77.501251220703125, -11.378193855285645 ], [ -77.501808166503906, -11.378193855285645 ], [ -77.501808166503906, -11.37791633605957 ], [ -77.502082824707031, -11.37791633605957 ], [ -77.502082824707031, -11.377639770507756 ], [ -77.502639770507756, -11.377639770507756 ], [ -77.502639770507756, -11.377362251281681 ], [ -77.503196716308537, -11.377362251281681 ], [ -77.503196716308537, -11.377083778381291 ], [ -77.503753662109375, -11.377083778381291 ], [ -77.503753662109375, -11.376806259155217 ], [ -77.504302978515625, -11.376806259155217 ], [ -77.504302978515625, -11.376527786254826 ], [ -77.504859924316406, -11.376527786254826 ], [ -77.504859924316406, -11.376250267028809 ], [ -77.505416870117074, -11.376250267028809 ], [ -77.505416870117074, -11.375971794128361 ], [ -77.505973815917912, -11.375971794128361 ], [ -77.505973815917912, -11.375694274902344 ], [ -77.506248474121037, -11.375694274902344 ], [ -77.506248474121037, -11.375417709350586 ], [ -77.506805419921875, -11.375417709350586 ], [ -77.506805419921875, -11.375137329101506 ], [ -77.507362365722656, -11.375140190124455 ], [ -77.507362365722656, -11.374861717224007 ], [ -77.507919311523438, -11.374861717224007 ], [ -77.507919311523438, -11.374581336975098 ], [ -77.508468627929574, -11.37458419799799 ], [ -77.508468627929574, -11.374305725097599 ], [ -77.509025573730412, -11.374305725097599 ], [ -77.509025573730412, -11.374025344848633 ], [ -77.509307861328068, -11.374027252197152 ], [ -77.509307861328068, -11.373748779296875 ], [ -77.509582519531193, -11.373748779296875 ], [ -77.509582519531193, -11.373195648193359 ], [ -77.510139465332031, -11.373195648193359 ], [ -77.510139465332031, -11.372915267944279 ], [ -77.510414123535156, -11.372915267944279 ], [ -77.510414123535156, -11.372638702392578 ], [ -77.510971069335938, -11.372638702392578 ], [ -77.510971069335938, -11.372359275817814 ], [ -77.511528015136719, -11.372361183166504 ], [ -77.511528015136719, -11.372082710266113 ], [ -77.511802673339787, -11.372082710266113 ], [ -77.511802673339787, -11.371803283691349 ], [ -77.512359619140568, -11.371805191040039 ], [ -77.512359619140568, -11.371526718139648 ], [ -77.512916564941349, -11.371526718139648 ], [ -77.512916564941349, -11.371805191040039 ], [ -77.513191223144531, -11.371803283691349 ], [ -77.513191223144531, -11.371249198913574 ], [ -77.514579772949219, -11.371249198913574 ], [ -77.514579772949219, -11.37097263336176 ], [ -77.515136718749943, -11.37097263336176 ], [ -77.515136718749943, -11.370693206787109 ], [ -77.515419006347599, -11.370693206787109 ], [ -77.515419006347599, -11.370416641235295 ], [ -77.515693664550724, -11.370416641235295 ], [ -77.515693664550724, -11.370139122009277 ], [ -77.516250610351562, -11.370139122009277 ], [ -77.516250610351562, -11.369860649108887 ], [ -77.516525268554688, -11.369860649108887 ], [ -77.516525268554688, -11.369583129882812 ], [ -77.517364501953125, -11.369583129882812 ], [ -77.517364501953125, -11.369027137756348 ], [ -77.51763916015625, -11.369027137756348 ], [ -77.51763916015625, -11.368748664855957 ], [ -77.518753051757756, -11.368748664855957 ], [ -77.518753051757756, -11.368471145629883 ], [ -77.519027709960881, -11.368471145629883 ], [ -77.519027709960881, -11.368748664855957 ], [ -77.519302368164062, -11.368748664855957 ], [ -77.519302368164062, -11.368471145629883 ], [ -77.519859313964844, -11.368473052978459 ], [ -77.519859313964844, -11.368194580078068 ], [ -77.520416259765625, -11.368194580078068 ], [ -77.520416259765625, -11.367917060851994 ], [ -77.52069091796875, -11.367917060851994 ], [ -77.52069091796875, -11.367361068725529 ], [ -77.521804809570256, -11.367361068725529 ], [ -77.521804809570256, -11.367082595825138 ], [ -77.522361755371037, -11.367082595825138 ], [ -77.522361755371037, -11.366805076599121 ], [ -77.522918701171875, -11.366805076599121 ], [ -77.522918701171875, -11.366526603698674 ], [ -77.523475646972656, -11.366526603698674 ], [ -77.523475646972656, -11.366249084472656 ], [ -77.524024963378906, -11.366250991821175 ], [ -77.524024963378906, -11.365973472595158 ], [ -77.524581909179631, -11.365973472595158 ], [ -77.524581909179631, -11.365693092346191 ], [ -77.525138854980412, -11.365694999694767 ], [ -77.525138854980412, -11.36541652679432 ], [ -77.525695800781193, -11.36541652679432 ], [ -77.525695800781193, -11.365139007568303 ], [ -77.526252746582031, -11.365139007568303 ], [ -77.526252746582031, -11.364860534667912 ], [ -77.526527404785156, -11.364860534667912 ], [ -77.526527404785156, -11.364583015441838 ], [ -77.527359008789062, -11.364583015441838 ], [ -77.527359008789062, -11.364304542541447 ], [ -77.527915954589787, -11.364304542541447 ], [ -77.527915954589787, -11.364027023315373 ], [ -77.528472900390568, -11.364028930664062 ], [ -77.528472900390568, -11.363751411437875 ], [ -77.529029846191406, -11.363748550414982 ], [ -77.529029846191406, -11.363471031188965 ], [ -77.529586791992188, -11.363472938537598 ], [ -77.529586791992188, -11.363195419311467 ], [ -77.530136108398438, -11.363195419311467 ], [ -77.530136108398438, -11.362916946411019 ], [ -77.530693054199219, -11.362916946411019 ], [ -77.530693054199219, -11.362639427185002 ], [ -77.53125, -11.362639427185002 ], [ -77.53125, -11.362360954284611 ], [ -77.531806945800724, -11.362360954284611 ], [ -77.531806945800724, -11.362083435058537 ], [ -77.532363891601562, -11.362083435058537 ], [ -77.532363891601562, -11.361804008483887 ], [ -77.532913208007812, -11.361806869506836 ], [ -77.532913208007812, -11.361525535583496 ], [ -77.533470153808594, -11.361525535583496 ], [ -77.533470153808594, -11.361248016357308 ], [ -77.534027099609261, -11.361250877380371 ], [ -77.534027099609261, -11.360973358154297 ], [ -77.534584045410099, -11.360973358154297 ], [ -77.534584045410099, -11.360694885253906 ], [ -77.535140991210881, -11.360694885253906 ], [ -77.535140991210881, -11.360416412353516 ], [ -77.535697937011719, -11.360416412353516 ], [ -77.535697937011719, -11.359860420227051 ], [ -77.536247253417969, -11.359860420227051 ], [ -77.536247253417969, -11.35958194732666 ], [ -77.53680419921875, -11.35958194732666 ], [ -77.53680419921875, -11.359304428100586 ], [ -77.537361145019474, -11.359304428100586 ], [ -77.537361145019474, -11.359027862548771 ], [ -77.538192749023381, -11.359027862548771 ], [ -77.538192749023381, -11.358471870422306 ], [ -77.538475036621037, -11.358471870422306 ], [ -77.538475036621037, -11.358194351196289 ], [ -77.539306640625, -11.358194351196289 ], [ -77.539306640625, -11.357915878295898 ], [ -77.540695190429631, -11.357915878295898 ], [ -77.540695190429631, -11.357638359069824 ], [ -77.541252136230412, -11.357638359069824 ], [ -77.541252136230412, -11.357359886169434 ], [ -77.54180908203125, -11.357359886169434 ], [ -77.54180908203125, -11.357084274291935 ], [ -77.542083740234375, -11.357084274291935 ], [ -77.542083740234375, -11.356805801391545 ], [ -77.542640686035156, -11.356805801391545 ], [ -77.542640686035156, -11.356528282165471 ], [ -77.543197631835938, -11.356528282165471 ], [ -77.543197631835938, -11.35624980926508 ], [ -77.543746948242131, -11.35624980926508 ], [ -77.543746948242131, -11.355416297912541 ], [ -77.544586181640568, -11.355416297912541 ], [ -77.544586181640568, -11.35513782501215 ], [ -77.545417785644531, -11.35513782501215 ], [ -77.545417785644531, -11.354862213134766 ], [ -77.545692443847656, -11.354862213134766 ], [ -77.545692443847656, -11.354583740234375 ], [ -77.546806335449105, -11.354583740234375 ], [ -77.546806335449105, -11.354304313659668 ], [ -77.547080993652287, -11.354306221008187 ], [ -77.547080993652287, -11.35402774810791 ], [ -77.547920227050724, -11.35402774810791 ], [ -77.547920227050724, -11.353471755981332 ], [ -77.548469543457031, -11.353471755981332 ], [ -77.548469543457031, -11.353194236755314 ], [ -77.549308776855469, -11.353194236755314 ], [ -77.549308776855469, -11.352915763854924 ], [ -77.549858093261605, -11.352915763854924 ], [ -77.549858093261605, -11.352638244628849 ], [ -77.550415039062443, -11.352640151977539 ], [ -77.550415039062443, -11.352359771728459 ], [ -77.550971984863224, -11.352359771728459 ], [ -77.550971984863224, -11.352082252502385 ], [ -77.551246643066406, -11.352084159851074 ], [ -77.551246643066406, -11.351805686950684 ], [ -77.551803588867188, -11.351805686950684 ], [ -77.551803588867188, -11.351528167724609 ], [ -77.552085876464844, -11.351528167724609 ], [ -77.552085876464844, -11.351249694824219 ], [ -77.552635192871094, -11.351249694824219 ], [ -77.552635192871094, -11.350972175598031 ], [ -77.553192138671818, -11.350972175598031 ], [ -77.553192138671818, -11.350693702697754 ], [ -77.553474426269474, -11.350693702697754 ], [ -77.553474426269474, -11.350416183471623 ], [ -77.553749084472599, -11.350416183471623 ], [ -77.553749084472599, -11.350137710571175 ], [ -77.554580688476562, -11.350137710571175 ], [ -77.554580688476562, -11.349860191345158 ], [ -77.554862976074219, -11.349862098693848 ], [ -77.554862976074219, -11.349583625793457 ], [ -77.555137634277344, -11.349583625793457 ], [ -77.555137634277344, -11.349862098693848 ], [ -77.555419921875, -11.349862098693848 ], [ -77.555419921875, -11.349583625793457 ], [ -77.555694580078125, -11.349583625793457 ], [ -77.555694580078125, -11.34930324554432 ], [ -77.556526184081974, -11.349306106567383 ], [ -77.556526184081974, -11.349027633666992 ], [ -77.556808471679631, -11.349027633666992 ], [ -77.556808471679631, -11.348750114440918 ], [ -77.557640075683594, -11.348750114440918 ], [ -77.557640075683594, -11.348471641540527 ], [ -77.558197021484375, -11.348471641540527 ], [ -77.558197021484375, -11.348193168640137 ], [ -77.558746337890625, -11.348193168640137 ], [ -77.558746337890625, -11.347917556762638 ], [ -77.559303283691406, -11.347917556762638 ], [ -77.559303283691406, -11.347637176513672 ], [ -77.559585571288949, -11.347640037536621 ], [ -77.559585571288949, -11.347361564636174 ], [ -77.560417175292912, -11.347361564636174 ], [ -77.560417175292912, -11.347081184387207 ], [ -77.560691833496094, -11.347084045410156 ], [ -77.560691833496094, -11.346804618835392 ], [ -77.561248779296875, -11.346804618835392 ], [ -77.561248779296875, -11.346527099609318 ], [ -77.561805725097656, -11.346527099609318 ], [ -77.561805725097656, -11.346248626708928 ], [ -77.562362670898438, -11.346248626708928 ], [ -77.562362670898438, -11.34597110748291 ], [ -77.562919616699162, -11.34597110748291 ], [ -77.562919616699162, -11.345696449279728 ], [ -77.563468933105412, -11.345696449279728 ], [ -77.563468933105412, -11.345415115356445 ], [ -77.56402587890625, -11.345417022704964 ], [ -77.56402587890625, -11.345138549804688 ], [ -77.564308166503906, -11.345138549804688 ], [ -77.564308166503906, -11.34485912322998 ], [ -77.564857482910156, -11.344861030578556 ], [ -77.564857482910156, -11.344582557678109 ], [ -77.565414428710938, -11.344582557678109 ], [ -77.565414428710938, -11.344305038452092 ], [ -77.565971374511662, -11.344305038452092 ], [ -77.565971374511662, -11.344026565551701 ], [ -77.566528320312443, -11.344026565551701 ], [ -77.566528320312443, -11.343749046325627 ], [ -77.567085266113224, -11.343749046325627 ], [ -77.567085266113224, -11.343473434448242 ], [ -77.567642211914062, -11.343473434448242 ], [ -77.567642211914062, -11.342917442321777 ], [ -77.567916870117188, -11.342917442321777 ], [ -77.567916870117188, -11.342637062072697 ], [ -77.56903076171875, -11.342638969421387 ], [ -77.56903076171875, -11.342361450195199 ], [ -77.569580078124943, -11.342361450195199 ], [ -77.569580078124943, -11.342082977294922 ], [ -77.570137023925724, -11.342082977294922 ], [ -77.570137023925724, -11.341805458068791 ], [ -77.570693969726562, -11.341805458068791 ], [ -77.570693969726562, -11.341526985168343 ], [ -77.571250915527344, -11.341526985168343 ], [ -77.571250915527344, -11.341251373291016 ], [ -77.571525573730469, -11.341251373291016 ], [ -77.571525573730469, -11.340970993041935 ], [ -77.571807861328125, -11.340970993041935 ], [ -77.571807861328125, -11.341251373291016 ], [ -77.57208251953125, -11.341251373291016 ], [ -77.57208251953125, -11.340970993041935 ], [ -77.572364807128793, -11.340970993041935 ], [ -77.572364807128793, -11.340695381164551 ], [ -77.572914123535099, -11.340695381164551 ], [ -77.572914123535099, -11.34041690826416 ], [ -77.573753356933594, -11.34041690826416 ], [ -77.573753356933594, -11.340139389038086 ], [ -77.574028015136719, -11.340139389038086 ], [ -77.574028015136719, -11.339860916137695 ], [ -77.5745849609375, -11.339860916137695 ], [ -77.5745849609375, -11.339583396911621 ], [ -77.574859619140625, -11.339583396911621 ], [ -77.574859619140625, -11.33930492401123 ], [ -77.575416564941293, -11.33930492401123 ], [ -77.575416564941293, -11.339027404785043 ], [ -77.575973510742131, -11.339027404785043 ], [ -77.575973510742131, -11.338750839233342 ], [ -77.576530456542912, -11.338750839233342 ], [ -77.576530456542912, -11.338473320007324 ], [ -77.577079772949219, -11.338473320007324 ], [ -77.577079772949219, -11.338194847106934 ], [ -77.57763671875, -11.338194847106934 ], [ -77.57763671875, -11.337917327880859 ], [ -77.578193664550781, -11.337917327880859 ], [ -77.578193664550781, -11.337638854980469 ], [ -77.578475952148438, -11.337638854980469 ], [ -77.578475952148438, -11.337361335754395 ], [ -77.579025268554631, -11.337361335754395 ], [ -77.579025268554631, -11.337082862854004 ], [ -77.579582214355412, -11.337082862854004 ], [ -77.579582214355412, -11.33680534362793 ], [ -77.58013916015625, -11.33680534362793 ], [ -77.58013916015625, -11.336528778076115 ], [ -77.580696105957031, -11.336528778076115 ], [ -77.580696105957031, -11.336251258850041 ], [ -77.581253051757812, -11.336251258850041 ], [ -77.581253051757812, -11.33597278594965 ], [ -77.581802368164006, -11.33597278594965 ], [ -77.581802368164006, -11.335695266723633 ], [ -77.582084655761662, -11.335695266723633 ], [ -77.582084655761662, -11.335416793823185 ], [ -77.582916259765568, -11.335416793823185 ], [ -77.582916259765568, -11.335139274597168 ], [ -77.58319091796875, -11.335139274597168 ], [ -77.58319091796875, -11.334860801696777 ], [ -77.584030151367188, -11.334860801696777 ], [ -77.584030151367188, -11.33458232879633 ], [ -77.584587097167969, -11.33458232879633 ], [ -77.584587097167969, -11.334306716918832 ], [ -77.585136413574162, -11.334306716918832 ], [ -77.585136413574162, -11.334029197692814 ], [ -77.585693359374943, -11.334026336669922 ], [ -77.585693359374943, -11.333750724792424 ], [ -77.586250305175781, -11.333750724792424 ], [ -77.586250305175781, -11.333470344543457 ], [ -77.586807250976562, -11.333473205566349 ], [ -77.586807250976562, -11.333193778991699 ], [ -77.587364196777344, -11.333193778991699 ], [ -77.587364196777344, -11.332916259765568 ], [ -77.587913513183594, -11.332916259765568 ], [ -77.587913513183594, -11.332637786865121 ], [ -77.588470458984318, -11.332637786865121 ], [ -77.588470458984318, -11.332360267639103 ], [ -77.589027404785099, -11.332360267639103 ], [ -77.589027404785099, -11.332084655761719 ], [ -77.589302062988281, -11.332084655761719 ], [ -77.589302062988281, -11.331804275512638 ], [ -77.589859008789062, -11.331804275512638 ], [ -77.589859008789062, -11.331527709960938 ], [ -77.590141296386719, -11.331527709960938 ], [ -77.590141296386719, -11.331248283386174 ], [ -77.590415954589844, -11.331250190734863 ], [ -77.590415954589844, -11.330971717834473 ], [ -77.5906982421875, -11.330971717834473 ], [ -77.5906982421875, -11.331250190734863 ], [ -77.590972900390625, -11.331250190734863 ], [ -77.590972900390625, -11.330971717834473 ], [ -77.591529846191349, -11.330971717834473 ], [ -77.591529846191349, -11.330692291259709 ], [ -77.592086791992131, -11.330694198608398 ], [ -77.592086791992131, -11.330415725708008 ], [ -77.592636108398438, -11.330415725708008 ], [ -77.592636108398438, -11.330138206481934 ], [ -77.593193054199219, -11.330138206481934 ], [ -77.593193054199219, -11.329859733581543 ], [ -77.59375, -11.329859733581543 ], [ -77.59375, -11.329582214355355 ], [ -77.594306945800781, -11.329582214355355 ], [ -77.594306945800781, -11.329305648803711 ], [ -77.594863891601506, -11.329305648803711 ], [ -77.594863891601506, -11.329028129577637 ], [ -77.595413208007756, -11.329028129577637 ], [ -77.595413208007756, -11.328749656677246 ], [ -77.595970153808594, -11.328749656677246 ], [ -77.595970153808594, -11.328470230102482 ], [ -77.596527099609375, -11.328472137451172 ], [ -77.596527099609375, -11.328193664550781 ], [ -77.597084045410156, -11.328193664550781 ], [ -77.597084045410156, -11.327916145324707 ], [ -77.597640991210938, -11.327916145324707 ], [ -77.597640991210938, -11.327637672424316 ], [ -77.598197937011662, -11.327637672424316 ], [ -77.598197937011662, -11.327360153198242 ], [ -77.598747253417912, -11.327362060546818 ], [ -77.598747253417912, -11.327083587646428 ], [ -77.59930419921875, -11.327083587646428 ], [ -77.59930419921875, -11.326804161071777 ], [ -77.599586486816406, -11.326806068420353 ], [ -77.599586486816406, -11.326527595519963 ], [ -77.600135803222656, -11.326527595519963 ], [ -77.600135803222656, -11.326250076293945 ], [ -77.600692749023438, -11.326250076293945 ], [ -77.600692749023438, -11.325971603393498 ], [ -77.601249694824162, -11.325971603393498 ], [ -77.601249694824162, -11.32569408416748 ], [ -77.601806640624943, -11.32569408416748 ], [ -77.601806640624943, -11.32541561126709 ], [ -77.602363586425781, -11.32541561126709 ], [ -77.602363586425781, -11.325138092041016 ], [ -77.602912902832031, -11.325139999389592 ], [ -77.602912902832031, -11.324861526489144 ], [ -77.603469848632812, -11.324861526489144 ], [ -77.603469848632812, -11.324582099914551 ], [ -77.604309082031193, -11.324584007263127 ], [ -77.604309082031193, -11.324305534362736 ], [ -77.604583740234318, -11.324305534362736 ], [ -77.604583740234318, -11.324028015136662 ], [ -77.605140686035099, -11.324028015136662 ], [ -77.605140686035099, -11.323749542236271 ], [ -77.605697631835938, -11.323749542236271 ], [ -77.605697631835938, -11.323472023010197 ], [ -77.606246948242188, -11.323472023010197 ], [ -77.606246948242188, -11.323193550109806 ], [ -77.606803894042969, -11.323193550109806 ], [ -77.606803894042969, -11.322916030883789 ], [ -77.607360839843693, -11.322917938232422 ], [ -77.607360839843693, -11.322637557983342 ], [ -77.607917785644474, -11.322637557983342 ], [ -77.607917785644474, -11.322359085082951 ], [ -77.608474731445256, -11.322361946105843 ], [ -77.608474731445256, -11.322084426879826 ], [ -77.609024047851562, -11.322084426879826 ], [ -77.609024047851562, -11.321805953979435 ], [ -77.609580993652344, -11.321805953979435 ], [ -77.609580993652344, -11.321528434753361 ], [ -77.610137939453125, -11.321528434753361 ], [ -77.610137939453125, -11.321249961852971 ], [ -77.610694885253849, -11.321249961852971 ], [ -77.610694885253849, -11.32097053527832 ], [ -77.611251831054631, -11.32097053527832 ], [ -77.611251831054631, -11.320693016052132 ], [ -77.611808776855469, -11.320693016052132 ], [ -77.611808776855469, -11.320414543151855 ], [ -77.612358093261719, -11.320414543151855 ], [ -77.612358093261719, -11.320137023925724 ], [ -77.6129150390625, -11.32013988494873 ], [ -77.6129150390625, -11.319862365722656 ], [ -77.613471984863281, -11.319862365722656 ], [ -77.613471984863281, -11.31958103179926 ], [ -77.614028930664006, -11.319582939147949 ], [ -77.614028930664006, -11.319305419921875 ], [ -77.614585876464787, -11.319305419921875 ], [ -77.614585876464787, -11.319026947021484 ], [ -77.615135192871094, -11.319026947021484 ], [ -77.615135192871094, -11.31874942779541 ], [ -77.615692138671875, -11.31874942779541 ], [ -77.615692138671875, -11.31847095489502 ], [ -77.616249084472656, -11.31847095489502 ], [ -77.616249084472656, -11.318195343017578 ], [ -77.616806030273324, -11.318195343017578 ], [ -77.616806030273324, -11.317916870117131 ], [ -77.617362976074162, -11.317916870117131 ], [ -77.617362976074162, -11.317639350891113 ], [ -77.617919921874943, -11.317639350891113 ], [ -77.617919921874943, -11.317360877990723 ], [ -77.61846923828125, -11.317360877990723 ], [ -77.61846923828125, -11.317083358764648 ], [ -77.619026184082031, -11.317083358764648 ], [ -77.619026184082031, -11.316804885864258 ], [ -77.619583129882812, -11.316804885864258 ], [ -77.619583129882812, -11.316527366638184 ], [ -77.620140075683537, -11.316527366638184 ], [ -77.620140075683537, -11.316248893737793 ], [ -77.620414733886662, -11.316248893737793 ], [ -77.620414733886662, -11.315973281860295 ], [ -77.620971679687443, -11.315973281860295 ], [ -77.620971679687443, -11.315694808959904 ], [ -77.621528625488281, -11.315694808959904 ], [ -77.621528625488281, -11.31541728973383 ], [ -77.622085571289062, -11.31541728973383 ], [ -77.622085571289062, -11.315138816833439 ], [ -77.622642517089844, -11.315138816833439 ], [ -77.622642517089844, -11.314861297607365 ], [ -77.623191833496037, -11.314861297607365 ], [ -77.623191833496037, -11.314582824706974 ], [ -77.623748779296818, -11.314582824706974 ], [ -77.623748779296818, -11.314305305480957 ], [ -77.624305725097599, -11.314305305480957 ], [ -77.624305725097599, -11.31402683258051 ], [ -77.624862670898438, -11.31402683258051 ], [ -77.624862670898438, -11.313749313354492 ], [ -77.625419616699219, -11.313751220703011 ], [ -77.625419616699219, -11.313470840454102 ], [ -77.625968933105469, -11.313470840454102 ], [ -77.625968933105469, -11.313195228576603 ], [ -77.626525878906193, -11.313195228576603 ], [ -77.626525878906193, -11.312916755676156 ], [ -77.627082824706974, -11.312916755676156 ], [ -77.627082824706974, -11.312639236450138 ], [ -77.627639770507812, -11.312639236450138 ], [ -77.627639770507812, -11.312360763549748 ], [ -77.628196716308594, -11.312360763549748 ], [ -77.628196716308594, -11.312083244323674 ], [ -77.628753662109375, -11.312083244323674 ], [ -77.628753662109375, -11.311804771423283 ], [ -77.629302978515625, -11.311804771423283 ], [ -77.629302978515625, -11.311527252197209 ], [ -77.629859924316349, -11.311529159545898 ], [ -77.629859924316349, -11.311248779296818 ], [ -77.630416870117131, -11.311248779296818 ], [ -77.630416870117131, -11.310971260070801 ], [ -77.630973815917969, -11.310973167419434 ], [ -77.630973815917969, -11.310694694519043 ], [ -77.631805419921875, -11.310694694519043 ], [ -77.631805419921875, -11.310415267944336 ], [ -77.632080078125, -11.310417175292855 ], [ -77.632080078125, -11.310138702392578 ], [ -77.632637023925668, -11.310138702392578 ], [ -77.632637023925668, -11.309858322143498 ], [ -77.632919311523381, -11.309861183166447 ], [ -77.632919311523381, -11.309582710266 ], [ -77.633468627929631, -11.309582710266 ], [ -77.633468627929631, -11.309305191039982 ], [ -77.633750915527287, -11.309305191039982 ], [ -77.633750915527287, -11.309028625488281 ], [ -77.634307861328125, -11.309028625488281 ], [ -77.634307861328125, -11.308748245239144 ], [ -77.634864807128906, -11.308751106262207 ], [ -77.634864807128906, -11.308472633361816 ], [ -77.635414123535156, -11.308472633361816 ], [ -77.635414123535156, -11.308195114135742 ], [ -77.637084960937443, -11.308195114135742 ], [ -77.637084960937443, -11.307916641235352 ], [ -77.637916564941406, -11.307916641235352 ], [ -77.637916564941406, -11.307639122009277 ], [ -77.638473510742188, -11.307639122009277 ], [ -77.638473510742188, -11.30735969543457 ], [ -77.638748168945312, -11.30735969543457 ], [ -77.638748168945312, -11.307082176208496 ], [ -77.639305114746037, -11.307082176208496 ], [ -77.639305114746037, -11.306806564330998 ], [ -77.639862060546818, -11.306806564330998 ], [ -77.639862060546818, -11.306526184082031 ], [ -77.640419006347656, -11.30652904510498 ], [ -77.640419006347656, -11.30625057220459 ], [ -77.640975952148438, -11.30625057220459 ], [ -77.640975952148438, -11.305970191955566 ], [ -77.641250610351562, -11.305972099304142 ], [ -77.641250610351562, -11.305693626403752 ], [ -77.641807556152344, -11.305693626403752 ], [ -77.641807556152344, -11.305416107177734 ], [ -77.642082214355469, -11.305416107177734 ], [ -77.642082214355469, -11.305137634277287 ], [ -77.642639160156193, -11.305137634277287 ], [ -77.642639160156193, -11.30486011505127 ], [ -77.642913818359318, -11.30486011505127 ], [ -77.642913818359318, -11.304583549499512 ], [ -77.643196105956974, -11.304583549499512 ], [ -77.643196105956974, -11.304304122924805 ], [ -77.643470764160156, -11.304304122924805 ], [ -77.643470764160156, -11.304027557372933 ], [ -77.643684387206974, -11.304027557372933 ], [ -77.6451416015625, -11.304027557372933 ], [ -77.6451416015625, -11.304583549499512 ], [ -77.645416259765511, -11.304583549499512 ], [ -77.645416259765511, -11.30486011505127 ], [ -77.645973205566349, -11.30486011505127 ], [ -77.645973205566349, -11.305137634277287 ], [ -77.646247863769474, -11.305137634277287 ], [ -77.646247863769474, -11.30486011505127 ], [ -77.646530151367131, -11.30486011505127 ], [ -77.646530151367131, -11.304583549499512 ], [ -77.647361755371094, -11.304583549499512 ], [ -77.647361755371094, -11.304304122924805 ], [ -77.647918701171875, -11.304304122924805 ], [ -77.647918701171875, -11.304027557372933 ], [ -77.648193359375, -11.304027557372933 ], [ -77.648193359375, -11.30374813079834 ], [ -77.648475646972656, -11.303750038146916 ], [ -77.648475646972656, -11.303471565246525 ], [ -77.648750305175724, -11.303471565246525 ], [ -77.648750305175724, -11.303194046020451 ], [ -77.649024963378849, -11.303194046020451 ], [ -77.649024963378849, -11.302362442016602 ], [ -77.649307250976506, -11.302362442016602 ], [ -77.649307250976506, -11.300971984863168 ], [ -77.649581909179631, -11.300971984863168 ], [ -77.649581909179631, -11.29958438873291 ], [ -77.649307250976506, -11.29958438873291 ], [ -77.649307250976506, -11.298472404479867 ], [ -77.649024963378849, -11.298472404479867 ], [ -77.649024963378849, -11.297081947326603 ], [ -77.648750305175724, -11.297083854675293 ], [ -77.648750305175724, -11.295694351196289 ], [ -77.649024963378849, -11.295694351196289 ], [ -77.649024963378849, -11.295140266418457 ], [ -77.649307250976506, -11.295140266418457 ], [ -77.649307250976506, -11.29486179351801 ], [ -77.649581909179631, -11.29486179351801 ], [ -77.649581909179631, -11.294584274291992 ], [ -77.649864196777287, -11.294584274291992 ], [ -77.649864196777287, -11.294305801391602 ], [ -77.650138854980469, -11.294305801391602 ], [ -77.650138854980469, -11.294028282165527 ], [ -77.650382995605469, -11.294028282165527 ], [ -77.651802062988224, -11.294028282165527 ], [ -77.651802062988224, -11.293748855590763 ], [ -77.652084350585881, -11.293748855590763 ], [ -77.652084350585881, -11.293471336364746 ], [ -77.652641296386662, -11.293471336364746 ], [ -77.652641296386662, -11.293195724487248 ], [ -77.65374755859375, -11.293195724487248 ], [ -77.65374755859375, -11.293471336364746 ], [ -77.654586791992188, -11.293471336364746 ], [ -77.654586791992188, -11.292915344238281 ], [ -77.654861450195312, -11.292915344238281 ], [ -77.654861450195312, -11.292639732360783 ], [ -77.655136108398381, -11.292639732360783 ], [ -77.655136108398381, -11.292359352111816 ], [ -77.655418395996037, -11.292361259460392 ], [ -77.655418395996037, -11.292082786559945 ], [ -77.655693054199162, -11.292082786559945 ], [ -77.655693054199162, -11.291526794433537 ], [ -77.655975341796818, -11.291526794433537 ], [ -77.655975341796818, -11.291249275207463 ], [ -77.65625, -11.291249275207463 ], [ -77.65625, -11.290970802307072 ], [ -77.656524658203125, -11.290970802307072 ], [ -77.656524658203125, -11.290416717529297 ], [ -77.656806945800781, -11.290416717529297 ], [ -77.656806945800781, -11.290137290954533 ], [ -77.657081604003906, -11.290139198303223 ], [ -77.657081604003906, -11.289583206176758 ], [ -77.657363891601562, -11.289583206176758 ], [ -77.657363891601562, -11.289027214050179 ], [ -77.655975341796818, -11.289027214050179 ], [ -77.655975341796818, -11.289304733276367 ], [ -77.6531982421875, -11.289304733276367 ], [ -77.6531982421875, -11.289583206176758 ], [ -77.648475646972656, -11.289583206176758 ], [ -77.648475646972656, -11.289304733276367 ], [ -77.648193359375, -11.289304733276367 ], [ -77.648193359375, -11.289027214050179 ], [ -77.647918701171875, -11.289027214050179 ], [ -77.647918701171875, -11.288748741149902 ], [ -77.647636413574219, -11.288748741149902 ], [ -77.647636413574219, -11.288473129272461 ], [ -77.647087097167969, -11.288473129272461 ], [ -77.647087097167969, -11.28819465637207 ], [ -77.646804809570312, -11.28819465637207 ], [ -77.646804809570312, -11.287915229797306 ], [ -77.646530151367131, -11.287917137145996 ], [ -77.646530151367131, -11.287638664245605 ], [ -77.646247863769474, -11.287638664245605 ], [ -77.646247863769474, -11.287359237670842 ], [ -77.645973205566349, -11.287359237670842 ], [ -77.645973205566349, -11.286803245544377 ], [ -77.645690917968693, -11.286803245544377 ], [ -77.645690917968693, -11.286249160766602 ], [ -77.645416259765511, -11.286249160766602 ], [ -77.645416259765511, -11.285693168640023 ], [ -77.6451416015625, -11.28569507598877 ], [ -77.6451416015625, -11.284860610961914 ], [ -77.644859313964844, -11.284860610961914 ], [ -77.644859313964844, -11.284304618835449 ], [ -77.644584655761719, -11.284304618835449 ], [ -77.644584655761719, -11.283748626708984 ], [ -77.644302368164062, -11.283748626708984 ], [ -77.644302368164062, -11.282917022705021 ], [ -77.644027709960938, -11.282917022705021 ], [ -77.644027709960938, -11.282361030578613 ], [ -77.643753051757812, -11.282361030578613 ], [ -77.643753051757812, -11.281805038452148 ], [ -77.643470764160156, -11.281805038452148 ], [ -77.643470764160156, -11.279026031494084 ], [ -77.643196105956974, -11.27902889251709 ], [ -77.643196105956974, -11.274862289428654 ], [ -77.642913818359318, -11.274862289428654 ], [ -77.642913818359318, -11.273750305175781 ], [ -77.642639160156193, -11.273750305175781 ], [ -77.642639160156193, -11.273471832275334 ], [ -77.642364501953011, -11.273471832275334 ], [ -77.642364501953011, -11.273194313049316 ], [ -77.642639160156193, -11.273194313049316 ], [ -77.642639160156193, -11.272084236144963 ], [ -77.642913818359318, -11.272084236144963 ], [ -77.642913818359318, -11.271805763244572 ], [ -77.643196105956974, -11.271805763244572 ], [ -77.643196105956974, -11.270416259765625 ], [ -77.643470764160156, -11.270416259765625 ], [ -77.643470764160156, -11.269027709960824 ], [ -77.643753051757812, -11.269027709960824 ], [ -77.643753051757812, -11.267917633056641 ], [ -77.644027709960938, -11.267917633056641 ], [ -77.644027709960938, -11.267361640930176 ], [ -77.644302368164062, -11.267361640930176 ], [ -77.644302368164062, -11.26652717590332 ], [ -77.644584655761719, -11.26652717590332 ], [ -77.644584655761719, -11.265969276428166 ], [ -77.644859313964844, -11.265971183776855 ], [ -77.644859313964844, -11.265138626098576 ], [ -77.6451416015625, -11.265138626098576 ], [ -77.6451416015625, -11.264582633972111 ], [ -77.645416259765511, -11.264582633972111 ], [ -77.645416259765511, -11.264026641845703 ], [ -77.645690917968693, -11.264026641845703 ], [ -77.645690917968693, -11.263472557067757 ], [ -77.645973205566349, -11.263472557067757 ], [ -77.645973205566349, -11.262916564941349 ], [ -77.646247863769474, -11.262916564941349 ], [ -77.646247863769474, -11.262360572814885 ], [ -77.646530151367131, -11.262360572814885 ], [ -77.646530151367131, -11.26180458068842 ], [ -77.646804809570312, -11.26180458068842 ], [ -77.646804809570312, -11.261248588561955 ], [ -77.647087097167969, -11.261248588561955 ], [ -77.647087097167969, -11.260971069335938 ], [ -77.646804809570312, -11.260971069335938 ], [ -77.646804809570312, -11.260139465331974 ], [ -77.647087097167969, -11.260139465331974 ], [ -77.647087097167969, -11.259860992431584 ], [ -77.646804809570312, -11.259860992431584 ], [ -77.646804809570312, -11.259305000305119 ], [ -77.647087097167969, -11.259305000305119 ], [ -77.647087097167969, -11.25847339630127 ], [ -77.647361755371094, -11.25847339630127 ], [ -77.647361755371094, -11.258193016052189 ], [ -77.647636413574219, -11.258194923400879 ], [ -77.647636413574219, -11.257917404174691 ], [ -77.647918701171875, -11.257917404174691 ], [ -77.647918701171875, -11.257082939147836 ], [ -77.648193359375, -11.257082939147836 ], [ -77.648193359375, -11.255970954894963 ], [ -77.648475646972656, -11.255972862243652 ], [ -77.648475646972656, -11.255139350891113 ], [ -77.649307250976506, -11.255139350891113 ], [ -77.649307250976506, -11.254860877990723 ], [ -77.649864196777287, -11.254860877990723 ], [ -77.649864196777287, -11.253750801086426 ], [ -77.650138854980469, -11.253750801086426 ], [ -77.650138854980469, -11.252084732055607 ], [ -77.649864196777287, -11.252084732055607 ], [ -77.649864196777287, -11.250971794128361 ], [ -77.648750305175724, -11.250971794128361 ], [ -77.648750305175724, -11.250415802001896 ], [ -77.648475646972656, -11.250415802001896 ], [ -77.648475646972656, -11.249305725097656 ], [ -77.648750305175724, -11.249305725097656 ], [ -77.648750305175724, -11.248749732971191 ], [ -77.649024963378849, -11.248749732971191 ], [ -77.649024963378849, -11.248193740844727 ], [ -77.649307250976506, -11.248193740844727 ], [ -77.649307250976506, -11.247637748718148 ], [ -77.649581909179631, -11.247637748718148 ], [ -77.649581909179631, -11.24708366394043 ], [ -77.649864196777287, -11.24708366394043 ], [ -77.649864196777287, -11.246527671813965 ], [ -77.650138854980469, -11.246527671813965 ], [ -77.650138854980469, -11.2459716796875 ], [ -77.650413513183594, -11.2459716796875 ], [ -77.650413513183594, -11.245415687561035 ], [ -77.65069580078125, -11.245415687561035 ], [ -77.65069580078125, -11.24485969543457 ], [ -77.650970458984375, -11.24485969543457 ], [ -77.650970458984375, -11.244305610656738 ], [ -77.651252746582031, -11.244305610656738 ], [ -77.651252746582031, -11.240693092346135 ], [ -77.651527404785156, -11.240693092346135 ], [ -77.651527404785156, -11.236804962158203 ], [ -77.649024963378849, -11.236804962158203 ], [ -77.649024963378849, -11.237083435058594 ], [ -77.647636413574219, -11.237083435058594 ], [ -77.647636413574219, -11.236804962158203 ], [ -77.647361755371094, -11.236804962158203 ], [ -77.647361755371094, -11.236527442932015 ], [ -77.646804809570312, -11.236527442932015 ], [ -77.646804809570312, -11.235973358154297 ], [ -77.647361755371094, -11.235973358154297 ], [ -77.647361755371094, -11.235694885253906 ], [ -77.647087097167969, -11.235694885253906 ], [ -77.647087097167969, -11.235136985778752 ], [ -77.646804809570312, -11.235138893127441 ], [ -77.646804809570312, -11.232639312744141 ], [ -77.646530151367131, -11.232639312744141 ], [ -77.646530151367131, -11.226529121398926 ], [ -77.646804809570312, -11.226529121398926 ], [ -77.646804809570312, -11.225973129272461 ], [ -77.647087097167969, -11.225973129272461 ], [ -77.647087097167969, -11.225693702697754 ], [ -77.647361755371094, -11.225693702697754 ], [ -77.647361755371094, -11.22541427612299 ], [ -77.647636413574219, -11.22541618347168 ], [ -77.647636413574219, -11.225137710571289 ], [ -77.647918701171875, -11.225137710571289 ], [ -77.647918701171875, -11.224584579467773 ], [ -77.648193359375, -11.224584579467773 ], [ -77.648193359375, -11.223748207092171 ], [ -77.648475646972656, -11.223750114440918 ], [ -77.648475646972656, -11.223471641540527 ], [ -77.648750305175724, -11.223471641540527 ], [ -77.648750305175724, -11.222915649414062 ], [ -77.649024963378849, -11.222915649414062 ], [ -77.649024963378849, -11.222361564636174 ], [ -77.649307250976506, -11.222359657287598 ], [ -77.649307250976506, -11.221805572509709 ], [ -77.649581909179631, -11.221805572509709 ], [ -77.649581909179631, -11.22097206115717 ], [ -77.649024963378849, -11.22097206115717 ], [ -77.649024963378849, -11.220693588256779 ], [ -77.648475646972656, -11.220693588256779 ], [ -77.648475646972656, -11.220416069030762 ], [ -77.647918701171875, -11.220416069030762 ], [ -77.647918701171875, -11.220137596130314 ], [ -77.647636413574219, -11.220137596130314 ], [ -77.647636413574219, -11.219860076904297 ], [ -77.647087097167969, -11.219860076904297 ], [ -77.647087097167969, -11.219584465026799 ], [ -77.646804809570312, -11.219584465026799 ], [ -77.646804809570312, -11.219305992126408 ], [ -77.646247863769474, -11.219305992126408 ], [ -77.646247863769474, -11.219028472900334 ], [ -77.645973205566349, -11.219028472900334 ], [ -77.645973205566349, -11.21875 ], [ -77.645416259765511, -11.21875 ], [ -77.645416259765511, -11.218471527099553 ], [ -77.6451416015625, -11.218471527099553 ], [ -77.6451416015625, -11.218194007873478 ], [ -77.644859313964844, -11.218194007873478 ], [ -77.644859313964844, -11.217638015747013 ], [ -77.644584655761719, -11.217638015747013 ], [ -77.644584655761719, -11.217082023620605 ], [ -77.644302368164062, -11.217082023620605 ], [ -77.644302368164062, -11.21652793884266 ], [ -77.644027709960938, -11.21652793884266 ], [ -77.644027709960938, -11.215971946716252 ], [ -77.643753051757812, -11.215971946716252 ], [ -77.643753051757812, -11.215694427490178 ], [ -77.643470764160156, -11.215694427490178 ], [ -77.643470764160156, -11.215415954589787 ], [ -77.643196105956974, -11.215415954589787 ], [ -77.643196105956974, -11.214859008788949 ], [ -77.642913818359318, -11.214861869812012 ], [ -77.642913818359318, -11.214584350585938 ], [ -77.642639160156193, -11.214584350585938 ], [ -77.642639160156193, -11.214028358459473 ], [ -77.642364501953011, -11.214028358459473 ], [ -77.642364501953011, -11.213749885559082 ], [ -77.640136718749943, -11.213749885559082 ], [ -77.640136718749943, -11.214028358459473 ], [ -77.635971069335881, -11.214028358459473 ], [ -77.635971069335881, -11.213749885559082 ], [ -77.635696411132812, -11.213749885559082 ], [ -77.635696411132812, -11.21319580078125 ], [ -77.635414123535156, -11.21319580078125 ], [ -77.635414123535156, -11.212915420532227 ], [ -77.635139465332031, -11.212915420532227 ], [ -77.635139465332031, -11.212639808654785 ], [ -77.634864807128906, -11.212639808654785 ], [ -77.634864807128906, -11.212362289428711 ], [ -77.634307861328125, -11.212362289428711 ], [ -77.634307861328125, -11.212082862853947 ], [ -77.634025573730469, -11.212082862853947 ], [ -77.634025573730469, -11.21180534362793 ], [ -77.633750915527287, -11.21180534362793 ], [ -77.633750915527287, -11.211526870727539 ], [ -77.633193969726506, -11.211526870727539 ], [ -77.633193969726506, -11.211249351501465 ], [ -77.632919311523381, -11.211249351501465 ], [ -77.632919311523381, -11.210970878601074 ], [ -77.631248474121094, -11.210970878601074 ], [ -77.631248474121094, -11.211249351501465 ], [ -77.630416870117131, -11.211249351501465 ], [ -77.630416870117131, -11.211526870727539 ], [ -77.629585266113168, -11.211526870727539 ], [ -77.629585266113168, -11.21180534362793 ], [ -77.628753662109375, -11.21180534362793 ], [ -77.628753662109375, -11.212082862853947 ], [ -77.6290283203125, -11.212082862853947 ], [ -77.6290283203125, -11.212639808654785 ], [ -77.629302978515625, -11.212639808654785 ], [ -77.629302978515625, -11.21319580078125 ], [ -77.629585266113168, -11.21319580078125 ], [ -77.629585266113168, -11.214305877685547 ], [ -77.629859924316349, -11.214305877685547 ], [ -77.629859924316349, -11.214932441711426 ], [ -77.629859924316349, -11.215417861938477 ], [ -77.629585266113168, -11.215415954589787 ], [ -77.629585266113168, -11.215694427490178 ], [ -77.629302978515625, -11.215694427490178 ], [ -77.629302978515625, -11.215971946716252 ], [ -77.628868103027344, -11.215971946716252 ], [ -77.628753662109375, -11.215971946716252 ], [ -77.628753662109375, -11.216072082519474 ], [ -77.628753662109375, -11.216250419616642 ], [ -77.628471374511719, -11.216250419616642 ], [ -77.628471374511719, -11.21652793884266 ], [ -77.628265380859375, -11.21652793884266 ], [ -77.627639770507812, -11.21652793884266 ], [ -77.627639770507812, -11.216806411743107 ], [ -77.627082824706974, -11.216806411743107 ], [ -77.627082824706974, -11.217083930969238 ], [ -77.623748779296818, -11.217083930969238 ], [ -77.623748779296818, -11.216806411743107 ], [ -77.622917175292969, -11.216806411743107 ], [ -77.622917175292969, -11.21652793884266 ], [ -77.622085571289062, -11.21652793884266 ], [ -77.622085571289062, -11.216250419616642 ], [ -77.621246337890625, -11.216250419616642 ], [ -77.621246337890625, -11.215971946716252 ], [ -77.620697021484318, -11.215971946716252 ], [ -77.620697021484318, -11.215694427490178 ], [ -77.620414733886662, -11.215694427490178 ], [ -77.620414733886662, -11.215415954589787 ], [ -77.619308471679688, -11.215415954589787 ], [ -77.619308471679688, -11.215694427490178 ], [ -77.61846923828125, -11.215694427490178 ], [ -77.61846923828125, -11.215971946716252 ], [ -77.617080688476506, -11.215971946716252 ], [ -77.617080688476506, -11.215694427490178 ], [ -77.616806030273324, -11.215694427490178 ], [ -77.616806030273324, -11.215415954589787 ], [ -77.616249084472656, -11.215417861938477 ], [ -77.616249084472656, -11.215140342712402 ], [ -77.615974426269531, -11.215138435363713 ], [ -77.615974426269531, -11.214584350585938 ], [ -77.615692138671875, -11.214584350585938 ], [ -77.615692138671875, -11.214028358459473 ], [ -77.61541748046875, -11.214028358459473 ], [ -77.61541748046875, -11.213749885559082 ], [ -77.614860534667969, -11.213749885559082 ], [ -77.614860534667969, -11.213471412658691 ], [ -77.614585876464787, -11.213471412658691 ], [ -77.614585876464787, -11.21319580078125 ], [ -77.614028930664006, -11.21319580078125 ], [ -77.614028930664006, -11.212915420532227 ], [ -77.613746643066349, -11.212915420532227 ], [ -77.613746643066349, -11.212639808654785 ], [ -77.613197326660156, -11.212639808654785 ], [ -77.613197326660156, -11.212362289428711 ], [ -77.6129150390625, -11.212362289428711 ], [ -77.6129150390625, -11.212082862853947 ], [ -77.612358093261719, -11.212082862853947 ], [ -77.612358093261719, -11.21180534362793 ], [ -77.611251831054631, -11.21180534362793 ], [ -77.611251831054631, -11.212082862853947 ], [ -77.610694885253849, -11.212082862853947 ], [ -77.610694885253849, -11.212362289428711 ], [ -77.610420227050781, -11.212362289428711 ], [ -77.610420227050781, -11.212639808654785 ], [ -77.610275268554688, -11.212639808654785 ], [ -77.60986328125, -11.212639808654785 ], [ -77.60986328125, -11.212776184082031 ], [ -77.60986328125, -11.212915420532227 ], [ -77.609580993652344, -11.212915420532227 ], [ -77.609580993652344, -11.21319580078125 ], [ -77.608612060546875, -11.21319580078125 ], [ -77.608474731445256, -11.21319580078125 ], [ -77.608474731445256, -11.213471412658691 ], [ -77.607086181640625, -11.213471412658691 ], [ -77.607086181640625, -11.214028358459473 ], [ -77.606803894042969, -11.214028358459473 ], [ -77.606803894042969, -11.214584350585938 ], [ -77.606529235839844, -11.214584350585938 ], [ -77.606529235839844, -11.214861869812012 ], [ -77.605415344238281, -11.214861869812012 ], [ -77.604583740234318, -11.214861869812012 ], [ -77.604583740234318, -11.214584350585938 ], [ -77.604309082031193, -11.214584350585938 ], [ -77.604309082031193, -11.214305877685547 ], [ -77.60402679443348, -11.214305877685547 ], [ -77.60402679443348, -11.214028358459473 ], [ -77.603752136230469, -11.214028358459473 ], [ -77.603752136230469, -11.213749885559082 ], [ -77.603469848632812, -11.213749885559082 ], [ -77.603469848632812, -11.213471412658691 ], [ -77.603195190429688, -11.213471412658691 ], [ -77.603195190429688, -11.21319580078125 ], [ -77.602912902832031, -11.21319580078125 ], [ -77.602912902832031, -11.212915420532227 ], [ -77.602638244628906, -11.212915420532227 ], [ -77.602638244628906, -11.212639808654785 ], [ -77.602363586425781, -11.212639808654785 ], [ -77.602363586425781, -11.212362289428711 ], [ -77.602081298828125, -11.212362289428711 ], [ -77.602081298828125, -11.212082862853947 ], [ -77.601806640624943, -11.212082862853947 ], [ -77.601806640624943, -11.21180534362793 ], [ -77.601524353027287, -11.21180534362793 ], [ -77.601524353027287, -11.211526870727539 ], [ -77.601249694824162, -11.211526870727539 ], [ -77.601249694824162, -11.211249351501465 ], [ -77.60097503662098, -11.211249351501465 ], [ -77.60097503662098, -11.210970878601074 ], [ -77.600692749023438, -11.210970878601074 ], [ -77.600692749023438, -11.210693359375 ], [ -77.600418090820312, -11.210693359375 ], [ -77.600418090820312, -11.210139274597111 ], [ -77.600135803222656, -11.210139274597111 ], [ -77.600135803222656, -11.209583282470646 ], [ -77.599861145019531, -11.209583282470646 ], [ -77.599861145019531, -11.209027290344181 ], [ -77.599586486816406, -11.209027290344181 ], [ -77.599586486816406, -11.208473205566406 ], [ -77.59930419921875, -11.208473205566406 ], [ -77.59930419921875, -11.207917213439828 ], [ -77.599029541015625, -11.207917213439828 ], [ -77.599029541015625, -11.207359313964844 ], [ -77.598747253417912, -11.207359313964844 ], [ -77.598747253417912, -11.206805229186955 ], [ -77.598472595214787, -11.206805229186955 ], [ -77.598472595214787, -11.205693244934025 ], [ -77.598197937011662, -11.205695152282715 ], [ -77.598197937011662, -11.205416679382324 ], [ -77.597915649414006, -11.205416679382324 ], [ -77.597915649414006, -11.20513916015625 ], [ -77.597640991210938, -11.20513916015625 ], [ -77.597640991210938, -11.203471183776799 ], [ -77.597358703613281, -11.203473091125488 ], [ -77.597358703613281, -11.202638626098633 ], [ -77.597084045410156, -11.202638626098633 ], [ -77.597084045410156, -11.202082633972168 ], [ -77.596527099609375, -11.202082633972168 ], [ -77.596527099609375, -11.201248168945312 ], [ -77.59625244140625, -11.201248168945312 ], [ -77.59625244140625, -11.200139045715332 ], [ -77.595970153808594, -11.200139045715332 ], [ -77.595970153808594, -11.199026107788086 ], [ -77.595695495605412, -11.199026107788086 ], [ -77.595695495605412, -11.197916030883732 ], [ -77.595413208007756, -11.197916030883732 ], [ -77.595413208007756, -11.196804046630803 ], [ -77.595138549804631, -11.196804046630803 ], [ -77.595138549804631, -11.195693969726562 ], [ -77.594863891601506, -11.19569206237793 ], [ -77.594863891601506, -11.194581985473576 ], [ -77.594581604003849, -11.194581985473576 ], [ -77.594581604003849, -11.19264030456543 ], [ -77.594306945800781, -11.19264030456543 ], [ -77.594306945800781, -11.189862251281681 ], [ -77.594024658203125, -11.189862251281681 ], [ -77.594024658203125, -11.187081336975098 ], [ -77.59375, -11.18708419799799 ], [ -77.59375, -11.183473587036133 ], [ -77.594024658203125, -11.183473587036133 ], [ -77.594024658203125, -11.179861068725586 ], [ -77.594306945800781, -11.179861068725586 ], [ -77.594306945800781, -11.177916526794377 ], [ -77.594024658203125, -11.177916526794377 ], [ -77.594024658203125, -11.177639007568303 ], [ -77.594306945800781, -11.177639007568303 ], [ -77.594306945800781, -11.177083015441838 ], [ -77.594024658203125, -11.177083015441838 ], [ -77.594024658203125, -11.176251411437931 ], [ -77.594306945800781, -11.176248550414982 ], [ -77.594306945800781, -11.174860954284611 ], [ -77.594581604003849, -11.174860954284611 ], [ -77.594581604003849, -11.174583435058537 ], [ -77.594863891601506, -11.174583435058537 ], [ -77.594863891601506, -11.174025535583496 ], [ -77.595138549804631, -11.174025535583496 ], [ -77.595138549804631, -11.17125129699707 ], [ -77.594863891601506, -11.17125129699707 ], [ -77.594863891601506, -11.170971870422363 ], [ -77.595138549804631, -11.170971870422363 ], [ -77.595138549804631, -11.170694351196289 ], [ -77.594863891601506, -11.170694351196289 ], [ -77.594863891601506, -11.170415878295898 ], [ -77.595138549804631, -11.170415878295898 ], [ -77.595138549804631, -11.170138359069824 ], [ -77.595413208007756, -11.170138359069824 ], [ -77.595413208007756, -11.169859886169434 ], [ -77.595695495605412, -11.169859886169434 ], [ -77.595695495605412, -11.169028282165471 ], [ -77.595413208007756, -11.169028282165471 ], [ -77.595413208007756, -11.168472290039006 ], [ -77.595695495605412, -11.168472290039006 ], [ -77.595695495605412, -11.168193817138615 ], [ -77.595970153808594, -11.168193817138615 ], [ -77.595970153808594, -11.16763782501215 ], [ -77.59625244140625, -11.16763782501215 ], [ -77.59625244140625, -11.166527748107796 ], [ -77.596527099609375, -11.166527748107796 ], [ -77.596527099609375, -11.165694236755314 ], [ -77.5968017578125, -11.165694236755314 ], [ -77.5968017578125, -11.164859771728459 ], [ -77.597084045410156, -11.164859771728459 ], [ -77.597084045410156, -11.164028167724496 ], [ -77.597358703613281, -11.164028167724496 ], [ -77.597358703613281, -11.16319370269764 ], [ -77.597640991210938, -11.16319370269764 ], [ -77.597640991210938, -11.162360191345158 ], [ -77.597915649414006, -11.162362098693848 ], [ -77.597915649414006, -11.161527633666992 ], [ -77.598197937011662, -11.161527633666992 ], [ -77.598197937011662, -11.160694122314453 ], [ -77.598472595214787, -11.160694122314453 ], [ -77.598472595214787, -11.160137176513672 ], [ -77.598747253417912, -11.160137176513672 ], [ -77.598747253417912, -11.159581184387207 ], [ -77.599029541015625, -11.159581184387207 ], [ -77.599029541015625, -11.159027099609375 ], [ -77.59930419921875, -11.159027099609375 ], [ -77.59930419921875, -11.15847110748291 ], [ -77.599586486816406, -11.15847110748291 ], [ -77.599586486816406, -11.157915115356445 ], [ -77.599861145019531, -11.157915115356445 ], [ -77.599861145019531, -11.15735912322998 ], [ -77.600135803222656, -11.15735912322998 ], [ -77.600135803222656, -11.156805038452092 ], [ -77.600418090820312, -11.156805038452092 ], [ -77.600418090820312, -11.156249046325627 ], [ -77.600692749023438, -11.156249046325627 ], [ -77.600692749023438, -11.155693054199162 ], [ -77.60097503662098, -11.155693054199162 ], [ -77.60097503662098, -11.155137062072754 ], [ -77.601249694824162, -11.155137062072754 ], [ -77.601249694824162, -11.154581069946289 ], [ -77.601524353027287, -11.154581069946289 ], [ -77.601524353027287, -11.1540269851684 ], [ -77.601806640624943, -11.1540269851684 ], [ -77.601806640624943, -11.153470993041935 ], [ -77.602363586425781, -11.153470993041935 ], [ -77.602363586425781, -11.153195381164551 ], [ -77.602638244628906, -11.153195381164551 ], [ -77.602638244628906, -11.152915000915471 ], [ -77.603195190429688, -11.15291690826416 ], [ -77.603195190429688, -11.152639389038086 ], [ -77.603469848632812, -11.152639389038086 ], [ -77.603469848632812, -11.152083396911507 ], [ -77.603752136230469, -11.152083396911507 ], [ -77.603752136230469, -11.150138854980469 ], [ -77.60402679443348, -11.150138854980469 ], [ -77.60402679443348, -11.149861335754395 ], [ -77.604309082031193, -11.149861335754395 ], [ -77.604309082031193, -11.14930534362793 ], [ -77.604583740234318, -11.14930534362793 ], [ -77.604583740234318, -11.149028778076115 ], [ -77.605140686035099, -11.149028778076115 ], [ -77.605140686035099, -11.148751258850098 ], [ -77.605415344238281, -11.148751258850098 ], [ -77.605415344238281, -11.148195266723633 ], [ -77.605697631835938, -11.148195266723633 ], [ -77.605697631835938, -11.147916793823242 ], [ -77.605972290039062, -11.147916793823242 ], [ -77.605972290039062, -11.147639274597168 ], [ -77.606246948242188, -11.147639274597168 ], [ -77.606246948242188, -11.147360801696777 ], [ -77.605697631835938, -11.147360801696777 ], [ -77.605697631835938, -11.147083282470703 ], [ -77.605972290039062, -11.147083282470703 ], [ -77.605972290039062, -11.145970344543457 ], [ -77.606246948242188, -11.145973205566349 ], [ -77.606246948242188, -11.145416259765568 ], [ -77.607360839843693, -11.145416259765568 ], [ -77.607360839843693, -11.145137786865178 ], [ -77.607635498046818, -11.145137786865178 ], [ -77.607635498046818, -11.144584655761719 ], [ -77.607917785644474, -11.144584655761719 ], [ -77.607917785644474, -11.144304275512638 ], [ -77.608192443847599, -11.144304275512638 ], [ -77.608192443847599, -11.143748283386174 ], [ -77.608474731445256, -11.143750190734863 ], [ -77.608474731445256, -11.143471717834473 ], [ -77.608749389648438, -11.143471717834473 ], [ -77.608749389648438, -11.143192291259766 ], [ -77.609024047851562, -11.143194198608398 ], [ -77.609024047851562, -11.14263820648182 ], [ -77.609306335449219, -11.14263820648182 ], [ -77.609306335449219, -11.141805648803711 ], [ -77.609580993652344, -11.141805648803711 ], [ -77.609580993652344, -11.140970230102482 ], [ -77.610137939453125, -11.140972137451172 ], [ -77.610137939453125, -11.140693664550781 ], [ -77.610420227050781, -11.140693664550781 ], [ -77.610420227050781, -11.140137672424316 ], [ -77.610694885253849, -11.140137672424316 ], [ -77.610694885253849, -11.139583587646428 ], [ -77.610969543456974, -11.139583587646428 ], [ -77.610969543456974, -11.139027595519963 ], [ -77.611251831054631, -11.139027595519963 ], [ -77.611251831054631, -11.138750076293945 ], [ -77.611526489257756, -11.138750076293945 ], [ -77.611526489257756, -11.138471603393555 ], [ -77.611808776855469, -11.138471603393555 ], [ -77.611808776855469, -11.13819408416748 ], [ -77.612083435058594, -11.13819408416748 ], [ -77.612083435058594, -11.137638092041016 ], [ -77.612358093261719, -11.137638092041016 ], [ -77.612358093261719, -11.137082099914551 ], [ -77.6129150390625, -11.137084007263127 ], [ -77.6129150390625, -11.136805534362736 ], [ -77.613197326660156, -11.136805534362736 ], [ -77.613197326660156, -11.136528015136662 ], [ -77.613471984863281, -11.136528015136662 ], [ -77.613471984863281, -11.136249542236271 ], [ -77.613746643066349, -11.136249542236271 ], [ -77.613746643066349, -11.135693550109806 ], [ -77.614028930664006, -11.135693550109806 ], [ -77.614028930664006, -11.135416030883789 ], [ -77.614303588867131, -11.135417938232308 ], [ -77.614303588867131, -11.135137557983398 ], [ -77.614585876464787, -11.135137557983398 ], [ -77.614585876464787, -11.134860038757324 ], [ -77.615135192871094, -11.1348619461059 ], [ -77.615135192871094, -11.134584426879826 ], [ -77.61541748046875, -11.134584426879826 ], [ -77.61541748046875, -11.134028434753361 ], [ -77.615692138671875, -11.134028434753361 ], [ -77.615692138671875, -11.133749961852971 ], [ -77.615974426269531, -11.133749961852971 ], [ -77.615974426269531, -11.133193016052189 ], [ -77.616249084472656, -11.133193016052189 ], [ -77.616249084472656, -11.132914543151742 ], [ -77.616531372070312, -11.132914543151742 ], [ -77.616531372070312, -11.132362365722543 ], [ -77.616806030273324, -11.132362365722543 ], [ -77.616806030273324, -11.13208103179926 ], [ -77.617362976074162, -11.132083892822266 ], [ -77.617362976074162, -11.131805419921875 ], [ -77.617919921874943, -11.131805419921875 ], [ -77.617919921874943, -11.131526947021484 ], [ -77.618194580078125, -11.131526947021484 ], [ -77.618194580078125, -11.130693435668832 ], [ -77.618751525878906, -11.130693435668832 ], [ -77.618751525878906, -11.130139350891113 ], [ -77.619026184082031, -11.130139350891113 ], [ -77.619026184082031, -11.128473281860295 ], [ -77.619308471679688, -11.128473281860295 ], [ -77.619308471679688, -11.127638816833439 ], [ -77.619583129882812, -11.127638816833439 ], [ -77.619583129882812, -11.127361297607422 ], [ -77.619857788085824, -11.127361297607422 ], [ -77.619857788085824, -11.127082824706974 ], [ -77.620140075683537, -11.127082824706974 ], [ -77.620140075683537, -11.126379013061467 ], [ -77.620140075683537, -11.12554931640625 ], [ -77.620140075683537, -11.125416755676213 ], [ -77.619964599609375, -11.125416755676213 ], [ -77.619857788085824, -11.125416755676213 ], [ -77.619857788085824, -11.124860763549748 ], [ -77.619583129882812, -11.124860763549748 ], [ -77.619583129882812, -11.124304771423283 ], [ -77.619308471679688, -11.124304771423283 ], [ -77.619308471679688, -11.12420463562006 ], [ -77.619308471679688, -11.124029159545898 ], [ -77.61846923828125, -11.124029159545898 ], [ -77.61846923828125, -11.123748779296818 ], [ -77.617637634277287, -11.123748779296818 ], [ -77.617637634277287, -11.123471260070801 ], [ -77.616806030273324, -11.12347316741932 ], [ -77.616806030273324, -11.123194694519043 ], [ -77.616401672363224, -11.123194694519043 ], [ -77.614906311035156, -11.123194694519043 ], [ -77.614585876464787, -11.123194694519043 ], [ -77.614585876464787, -11.122917175292912 ], [ -77.614303588867131, -11.122917175292912 ], [ -77.614303588867131, -11.122638702392464 ], [ -77.613746643066349, -11.122638702392464 ], [ -77.613746643066349, -11.122358322143555 ], [ -77.613471984863281, -11.122361183166447 ], [ -77.613471984863281, -11.122082710266056 ], [ -77.613197326660156, -11.122082710266056 ], [ -77.613197326660156, -11.121805191039982 ], [ -77.6129150390625, -11.121805191039982 ], [ -77.6129150390625, -11.121249198913517 ], [ -77.612640380859375, -11.121251106262207 ], [ -77.612640380859375, -11.120767593383732 ], [ -77.612640380859375, -11.120139122009277 ], [ -77.612358093261719, -11.120139122009277 ], [ -77.612358093261719, -11.118470191955566 ], [ -77.612640380859375, -11.118473052978516 ], [ -77.612640380859375, -11.117085456848145 ], [ -77.6129150390625, -11.117085456848145 ], [ -77.6129150390625, -11.11624813079834 ], [ -77.613197326660156, -11.116250038146916 ], [ -77.613197326660156, -11.115971565246525 ], [ -77.613471984863281, -11.115971565246525 ], [ -77.613471984863281, -11.115692138671875 ], [ -77.613746643066349, -11.115694046020451 ], [ -77.613746643066349, -11.11541557312006 ], [ -77.614028930664006, -11.11541557312006 ], [ -77.614028930664006, -11.114862442016488 ], [ -77.614303588867131, -11.114862442016488 ], [ -77.614303588867131, -11.11430644989008 ], [ -77.614585876464787, -11.11430644989008 ], [ -77.614585876464787, -11.114026069641113 ], [ -77.614860534667969, -11.114026069641113 ], [ -77.614860534667969, -11.113471984863224 ], [ -77.614585876464787, -11.113471984863224 ], [ -77.614585876464787, -11.11291599273676 ], [ -77.614860534667969, -11.11291599273676 ], [ -77.614860534667969, -11.11319446563715 ], [ -77.61541748046875, -11.11319446563715 ], [ -77.61541748046875, -11.112638473510685 ], [ -77.615692138671875, -11.112638473510685 ], [ -77.615692138671875, -11.11208438873291 ], [ -77.615974426269531, -11.11208438873291 ], [ -77.615974426269531, -11.111528396606332 ], [ -77.616249084472656, -11.111528396606332 ], [ -77.616249084472656, -11.110693931579476 ], [ -77.616531372070312, -11.110693931579476 ], [ -77.616531372070312, -11.110137939453068 ], [ -77.616806030273324, -11.110137939453068 ], [ -77.616806030273324, -11.109581947326603 ], [ -77.617080688476506, -11.109583854675293 ], [ -77.617080688476506, -11.109306335449219 ], [ -77.617362976074162, -11.109306335449219 ], [ -77.617362976074162, -11.109027862548828 ], [ -77.617637634277287, -11.109027862548828 ], [ -77.617637634277287, -11.108750343322754 ], [ -77.617919921874943, -11.108750343322754 ], [ -77.617919921874943, -11.109027862548828 ], [ -77.618194580078125, -11.109027862548828 ], [ -77.618194580078125, -11.108750343322754 ], [ -77.61846923828125, -11.108750343322754 ], [ -77.61846923828125, -11.108485221862736 ], [ -77.618751525878906, -11.108471870422363 ], [ -77.618751525878906, -11.108194351196289 ], [ -77.619026184082031, -11.108194351196289 ], [ -77.619026184082031, -11.107917785644474 ], [ -77.619308471679688, -11.107917785644474 ], [ -77.619308471679688, -11.107640266418457 ], [ -77.619583129882812, -11.107640266418457 ], [ -77.619583129882812, -11.107361793518066 ], [ -77.619857788085824, -11.107361793518066 ], [ -77.619857788085824, -11.107084274291992 ], [ -77.620140075683537, -11.107084274291992 ], [ -77.620140075683537, -11.106805801391602 ], [ -77.620697021484318, -11.106805801391602 ], [ -77.620697021484318, -11.106528282165527 ], [ -77.620971679687443, -11.106528282165527 ], [ -77.620971679687443, -11.106249809265137 ], [ -77.621246337890625, -11.106249809265137 ], [ -77.621246337890625, -11.105695724487248 ], [ -77.621528625488281, -11.105695724487248 ], [ -77.621528625488281, -11.105139732360783 ], [ -77.621803283691406, -11.105139732360783 ], [ -77.621803283691406, -11.104862213134709 ], [ -77.622085571289062, -11.104862213134709 ], [ -77.622085571289062, -11.104583740234318 ], [ -77.622360229492188, -11.104583740234318 ], [ -77.622360229492188, -11.104026794433537 ], [ -77.623191833496037, -11.104026794433537 ], [ -77.623191833496037, -11.103749275207463 ], [ -77.623474121093693, -11.103749275207463 ], [ -77.623474121093693, -11.103470802307072 ], [ -77.623748779296818, -11.103470802307072 ], [ -77.623748779296818, -11.103193283080998 ], [ -77.624305725097599, -11.103193283080998 ], [ -77.624305725097599, -11.10263729095459 ], [ -77.624862670898438, -11.102639198303223 ], [ -77.624862670898438, -11.102360725402832 ], [ -77.625419616699219, -11.102360725402832 ], [ -77.625419616699219, -11.102083206176644 ], [ -77.625968933105469, -11.102083206176644 ], [ -77.625968933105469, -11.101527214050236 ], [ -77.626251220703125, -11.101527214050236 ], [ -77.626251220703125, -11.101248741149789 ], [ -77.626525878906193, -11.101248741149789 ], [ -77.626525878906193, -11.10069465637207 ], [ -77.626808166503849, -11.10069465637207 ], [ -77.626823425292969, -11.100138664245605 ], [ -77.627082824706974, -11.100138664245605 ], [ -77.627082824706974, -11.099859237670842 ], [ -77.627357482910099, -11.099861145019531 ], [ -77.627357482910099, -11.099582672119141 ], [ -77.627639770507812, -11.099582672119141 ], [ -77.627639770507812, -11.099303245544434 ], [ -77.627914428710938, -11.099305152893066 ], [ -77.627914428710938, -11.099026679992676 ], [ -77.628196716308594, -11.099026679992676 ], [ -77.628196716308594, -11.098749160766488 ], [ -77.628471374511719, -11.098751068115234 ], [ -77.628471374511719, -11.098472595214787 ], [ -77.628753662109375, -11.098472595214787 ], [ -77.628753662109375, -11.097916603088379 ], [ -77.6290283203125, -11.097916603088379 ], [ -77.6290283203125, -11.097360610961914 ], [ -77.629302978515625, -11.097360610961914 ], [ -77.629302978515625, -11.096804618835449 ], [ -77.629585266113168, -11.096804618835449 ], [ -77.629585266113168, -11.096527099609375 ], [ -77.629859924316349, -11.096529006957951 ], [ -77.629859924316349, -11.096248626708984 ], [ -77.630142211914006, -11.096248626708984 ], [ -77.630142211914006, -11.09597110748291 ], [ -77.630416870117131, -11.095973014831486 ], [ -77.630416870117131, -11.095694541931096 ], [ -77.630691528320312, -11.095694541931096 ], [ -77.630691528320312, -11.095973014831486 ], [ -77.630973815917969, -11.095973014831486 ], [ -77.630973815917969, -11.095694541931096 ], [ -77.631248474121094, -11.095694541931096 ], [ -77.631248474121094, -11.095417022705078 ], [ -77.632080078125, -11.095417022705078 ], [ -77.632080078125, -11.095138549804631 ], [ -77.632637023925668, -11.095138549804631 ], [ -77.632637023925668, -11.094861030578613 ], [ -77.633468627929631, -11.094861030578613 ], [ -77.633468627929631, -11.094582557678223 ], [ -77.633750915527287, -11.094582557678223 ], [ -77.633750915527287, -11.094305038452148 ], [ -77.63458251953125, -11.094305038452148 ], [ -77.63458251953125, -11.093748092651367 ], [ -77.635139465332031, -11.09375095367426 ], [ -77.635139465332031, -11.093473434448185 ], [ -77.635414123535156, -11.093473434448185 ], [ -77.635414123535156, -11.09263896942133 ], [ -77.635139465332031, -11.09263896942133 ], [ -77.635139465332031, -11.092082023620549 ], [ -77.634864807128906, -11.092082023620549 ], [ -77.634864807128906, -11.090138435363656 ], [ -77.633750915527287, -11.090138435363656 ], [ -77.633750915527287, -11.090415954589844 ], [ -77.632362365722656, -11.090415954589844 ], [ -77.632362365722656, -11.090138435363656 ], [ -77.630691528320312, -11.090138435363656 ], [ -77.630691528320312, -11.089859962463379 ], [ -77.630416870117131, -11.089859962463379 ], [ -77.630416870117131, -11.088749885559082 ], [ -77.630142211914006, -11.088749885559082 ], [ -77.630142211914006, -11.087362289428654 ], [ -77.629859924316349, -11.087362289428654 ], [ -77.629859924316349, -11.085694313049316 ], [ -77.630142211914006, -11.085694313049316 ], [ -77.630142211914006, -11.085140228271428 ], [ -77.630691528320312, -11.085140228271428 ], [ -77.630691528320312, -11.084361076354924 ], [ -77.630973815917969, -11.084305763244572 ], [ -77.630973815917969, -11.083193778991642 ], [ -77.631248474121094, -11.083193778991642 ], [ -77.631248474121094, -11.082083702087289 ], [ -77.63153076171875, -11.082083702087289 ], [ -77.63153076171875, -11.080971717834416 ], [ -77.631805419921875, -11.080971717834416 ], [ -77.631805419921875, -11.080415725707951 ], [ -77.632080078125, -11.080415725707951 ], [ -77.632080078125, -11.080140113830566 ], [ -77.632362365722656, -11.080140113830566 ], [ -77.632362365722656, -11.079584121704102 ], [ -77.632637023925668, -11.079584121704102 ], [ -77.632637023925668, -11.079305648803711 ], [ -77.632919311523381, -11.079305648803711 ], [ -77.632919311523381, -11.079028129577523 ], [ -77.633468627929631, -11.079028129577523 ], [ -77.633468627929631, -11.078749656677246 ], [ -77.633750915527287, -11.078749656677246 ], [ -77.633750915527287, -11.078469276428166 ], [ -77.634307861328125, -11.078469276428166 ], [ -77.634307861328125, -11.077915191650391 ], [ -77.63458251953125, -11.077915191650391 ], [ -77.63458251953125, -11.077359199523812 ], [ -77.634864807128906, -11.077362060546875 ], [ -77.634864807128906, -11.077082633972168 ], [ -77.635139465332031, -11.077082633972168 ], [ -77.635139465332031, -11.076526641845703 ], [ -77.635414123535156, -11.076526641845703 ], [ -77.635414123535156, -11.075974464416504 ], [ -77.635696411132812, -11.075974464416504 ], [ -77.635696411132812, -11.075693130493164 ], [ -77.635971069335881, -11.075693130493164 ], [ -77.635971069335881, -11.075137138366699 ], [ -77.636253356933537, -11.075139045715275 ], [ -77.636253356933537, -11.074860572814885 ], [ -77.636528015136662, -11.074860572814885 ], [ -77.636528015136662, -11.07430458068842 ], [ -77.636802673339787, -11.07430458068842 ], [ -77.636802673339787, -11.073748588561955 ], [ -77.637359619140625, -11.073748588561955 ], [ -77.637359619140625, -11.073471069335938 ], [ -77.637641906738281, -11.073471069335938 ], [ -77.637641906738281, -11.072915077209473 ], [ -77.638191223144531, -11.072916984558049 ], [ -77.638191223144531, -11.072639465331974 ], [ -77.638748168945312, -11.072639465331974 ], [ -77.638748168945312, -11.072360992431584 ], [ -77.639579772949162, -11.072360992431584 ], [ -77.639579772949162, -11.07208347320551 ], [ -77.639862060546818, -11.07208347320551 ], [ -77.639862060546818, -11.071805000305119 ], [ -77.640136718749943, -11.071805000305119 ], [ -77.640136718749943, -11.071249008178654 ], [ -77.639862060546818, -11.071249008178654 ], [ -77.639862060546818, -11.070973396301156 ], [ -77.639579772949162, -11.070973396301156 ], [ -77.639579772949162, -11.070694923400879 ], [ -77.639305114746037, -11.070693016052246 ], [ -77.639305114746037, -11.0701389312743 ], [ -77.639030456542969, -11.0701389312743 ], [ -77.639030456542969, -11.069582939147892 ], [ -77.638748168945312, -11.069582939147892 ], [ -77.638748168945312, -11.068470954894963 ], [ -77.638473510742188, -11.068472862243652 ], [ -77.638473510742188, -11.066250801086426 ], [ -77.638748168945312, -11.066250801086426 ], [ -77.638748168945312, -11.065973281860352 ], [ -77.638191223144531, -11.065973281860352 ], [ -77.638191223144531, -11.065694808959961 ], [ -77.637641906738281, -11.065694808959961 ], [ -77.637641906738281, -11.065417289733887 ], [ -77.637359619140625, -11.065417289733887 ], [ -77.637359619140625, -11.065138816833496 ], [ -77.637084960937443, -11.065138816833496 ], [ -77.637084960937443, -11.064860343933105 ], [ -77.636802673339787, -11.064860343933105 ], [ -77.636802673339787, -11.064304351806641 ], [ -77.636528015136662, -11.064304351806641 ], [ -77.636528015136662, -11.063751220703125 ], [ -77.636253356933537, -11.063751220703125 ], [ -77.636253356933537, -11.063194274902287 ], [ -77.635971069335881, -11.063194274902287 ], [ -77.635971069335881, -11.062082290649414 ], [ -77.635696411132812, -11.062082290649414 ], [ -77.635696411132812, -11.061805725097656 ], [ -77.635414123535156, -11.061805725097656 ], [ -77.635414123535156, -11.061249732971191 ], [ -77.635696411132812, -11.061249732971191 ], [ -77.635696411132812, -11.060137748718205 ], [ -77.636253356933537, -11.060137748718205 ], [ -77.636253356933537, -11.059860229492131 ], [ -77.636802673339787, -11.05986213684082 ], [ -77.636802673339787, -11.05958366394043 ], [ -77.637084960937443, -11.05958366394043 ], [ -77.637084960937443, -11.059304237365666 ], [ -77.637641906738281, -11.059306144714355 ], [ -77.637641906738281, -11.057915687561035 ], [ -77.637916564941406, -11.057915687561035 ], [ -77.637916564941406, -11.057359695434457 ], [ -77.638191223144531, -11.057359695434457 ], [ -77.638191223144531, -11.056249618530273 ], [ -77.638473510742188, -11.056249618530273 ], [ -77.638473510742188, -11.055137634277344 ], [ -77.638748168945312, -11.055137634277344 ], [ -77.638748168945312, -11.054306030273438 ], [ -77.638473510742188, -11.054306030273438 ], [ -77.638473510742188, -11.054583549499455 ], [ -77.638191223144531, -11.054583549499455 ], [ -77.638191223144531, -11.054862022399902 ], [ -77.637359619140625, -11.054862022399902 ], [ -77.637359619140625, -11.054583549499455 ], [ -77.637084960937443, -11.054583549499455 ], [ -77.637084960937443, -11.053750038146973 ], [ -77.637641906738281, -11.053750038146973 ], [ -77.637641906738281, -11.053471565246582 ], [ -77.638473510742188, -11.053471565246582 ], [ -77.638473510742188, -11.053194046020508 ], [ -77.639030456542969, -11.053194046020508 ], [ -77.639030456542969, -11.052914619445744 ], [ -77.639579772949162, -11.052914619445744 ], [ -77.639579772949162, -11.052637100219727 ], [ -77.639862060546818, -11.052637100219727 ], [ -77.639862060546818, -11.052081108093262 ], [ -77.640136718749943, -11.052081108093262 ], [ -77.640136718749943, -11.051527976989689 ], [ -77.640693664550781, -11.051527976989689 ], [ -77.640693664550781, -11.051248550414982 ], [ -77.641250610351562, -11.051248550414982 ], [ -77.641250610351562, -11.050692558288517 ], [ -77.641807556152344, -11.050692558288517 ], [ -77.641807556152344, -11.050415039062443 ], [ -77.642082214355469, -11.050415039062443 ], [ -77.642082214355469, -11.049859046935978 ], [ -77.642364501953011, -11.049859046935978 ], [ -77.642364501953011, -11.049304962158203 ], [ -77.642639160156193, -11.049304962158203 ], [ -77.642639160156193, -11.049027442932072 ], [ -77.642913818359318, -11.049027442932072 ], [ -77.642913818359318, -11.048194885253906 ], [ -77.642639160156193, -11.048194885253906 ], [ -77.642639160156193, -11.047636985778752 ], [ -77.642364501953011, -11.047638893127441 ], [ -77.642364501953011, -11.046526908874512 ], [ -77.642639160156193, -11.046526908874512 ], [ -77.642639160156193, -11.045416831970215 ], [ -77.642913818359318, -11.045416831970215 ], [ -77.642913818359318, -11.04486083984375 ], [ -77.642639160156193, -11.04486083984375 ], [ -77.642639160156193, -11.044583320617676 ], [ -77.642364501953011, -11.044583320617676 ], [ -77.642364501953011, -11.044304847717285 ], [ -77.642639160156193, -11.044304847717285 ], [ -77.642639160156193, -11.044027328491211 ], [ -77.642913818359318, -11.044027328491211 ], [ -77.642913818359318, -11.04374885559082 ], [ -77.643196105956974, -11.04374885559082 ], [ -77.643196105956974, -11.042917251586914 ], [ -77.643470764160156, -11.042917251586914 ], [ -77.643470764160156, -11.042361259460449 ], [ -77.643753051757812, -11.042361259460449 ], [ -77.643753051757812, -11.041805267333984 ], [ -77.644027709960938, -11.041805267333984 ], [ -77.644027709960938, -11.041526794433594 ], [ -77.643753051757812, -11.041526794433594 ], [ -77.643753051757812, -11.040695190429631 ], [ -77.643470764160156, -11.040695190429631 ], [ -77.643470764160156, -11.04041671752924 ], [ -77.643753051757812, -11.04041671752924 ], [ -77.643753051757812, -11.039860725402775 ], [ -77.643470764160156, -11.039860725402775 ], [ -77.643470764160156, -11.039580345153809 ], [ -77.643753051757812, -11.039583206176701 ], [ -77.643753051757812, -11.038473129272347 ], [ -77.644027709960938, -11.038473129272347 ], [ -77.644027709960938, -11.03819465637207 ], [ -77.644302368164062, -11.03819465637207 ], [ -77.644302368164062, -11.037637710571289 ], [ -77.644584655761719, -11.037637710571289 ], [ -77.644584655761719, -11.037084579467773 ], [ -77.644859313964844, -11.037084579467773 ], [ -77.644859313964844, -11.036804199218636 ], [ -77.6451416015625, -11.036804199218636 ], [ -77.6451416015625, -11.036528587341309 ], [ -77.645416259765511, -11.036528587341309 ], [ -77.645416259765511, -11.035971641540527 ], [ -77.645973205566349, -11.035971641540527 ], [ -77.645973205566349, -11.035415649414062 ], [ -77.646247863769474, -11.035415649414062 ], [ -77.646247863769474, -11.034861564636174 ], [ -77.646530151367131, -11.034859657287598 ], [ -77.646530151367131, -11.034305572509709 ], [ -77.646804809570312, -11.034305572509709 ], [ -77.646804809570312, -11.034026145935059 ], [ -77.647087097167969, -11.034028053283635 ], [ -77.647087097167969, -11.033749580383244 ], [ -77.647636413574219, -11.033749580383244 ], [ -77.647636413574219, -11.033472061157227 ], [ -77.647918701171875, -11.033472061157227 ], [ -77.647918701171875, -11.032916069030762 ], [ -77.648193359375, -11.032916069030762 ], [ -77.648193359375, -11.032360076904297 ], [ -77.648475646972656, -11.032360076904297 ], [ -77.648475646972656, -11.031805992126408 ], [ -77.648750305175724, -11.031805992126408 ], [ -77.648750305175724, -11.031528472900334 ], [ -77.649024963378849, -11.031528472900334 ], [ -77.649024963378849, -11.03125 ], [ -77.649307250976506, -11.03125 ], [ -77.649307250976506, -11.030694007873478 ], [ -77.649864196777287, -11.030694007873478 ], [ -77.649864196777287, -11.03013801574707 ], [ -77.650138854980469, -11.030139923095703 ], [ -77.650138854980469, -11.029862403869572 ], [ -77.650413513183594, -11.029862403869572 ], [ -77.650413513183594, -11.029306411743107 ], [ -77.65069580078125, -11.029306411743107 ], [ -77.65069580078125, -11.029027938842717 ], [ -77.650970458984375, -11.029027938842717 ], [ -77.650970458984375, -11.028471946716252 ], [ -77.651252746582031, -11.028471946716252 ], [ -77.651252746582031, -11.028194427490178 ], [ -77.651527404785156, -11.028194427490178 ], [ -77.651527404785156, -11.027638435363713 ], [ -77.652084350585881, -11.027638435363713 ], [ -77.652084350585881, -11.027084350585938 ], [ -77.652359008789006, -11.027084350585938 ], [ -77.652359008789006, -11.026249885559082 ], [ -77.652641296386662, -11.026249885559082 ], [ -77.652641296386662, -11.025972366332951 ], [ -77.652915954589787, -11.025972366332951 ], [ -77.652915954589787, -11.025415420532227 ], [ -77.653190612792969, -11.025415420532227 ], [ -77.6531982421875, -11.025139808654785 ], [ -77.653472900390625, -11.025139808654785 ], [ -77.653472900390625, -11.02458381652832 ], [ -77.65374755859375, -11.02458381652832 ], [ -77.65374755859375, -11.023749351501465 ], [ -77.654029846191406, -11.023749351501465 ], [ -77.654029846191406, -11.023470878601074 ], [ -77.654304504394531, -11.023470878601074 ], [ -77.654304504394531, -11.023193359375 ], [ -77.654586791992188, -11.023193359375 ], [ -77.654586791992188, -11.022917747497502 ], [ -77.654861450195312, -11.022917747497502 ], [ -77.654861450195312, -11.022360801696721 ], [ -77.655136108398381, -11.022360801696721 ], [ -77.655136108398381, -11.021527290344238 ], [ -77.655418395996037, -11.021527290344238 ], [ -77.655418395996037, -11.020971298217773 ], [ -77.655693054199162, -11.020971298217773 ], [ -77.655693054199162, -11.020694732666016 ], [ -77.655975341796818, -11.020694732666016 ], [ -77.655975341796818, -11.020971298217773 ], [ -77.65625, -11.020971298217773 ], [ -77.65625, -11.020417213439885 ], [ -77.656524658203125, -11.020417213439885 ], [ -77.656524658203125, -11.020138740539437 ], [ -77.656806945800781, -11.020138740539437 ], [ -77.656806945800781, -11.019859313964844 ], [ -77.657363891601562, -11.01986122131342 ], [ -77.657363891601562, -11.019582748413029 ], [ -77.657638549804688, -11.019582748413029 ], [ -77.657638549804688, -11.019026756286564 ], [ -77.657913208007812, -11.019026756286564 ], [ -77.657913208007812, -11.018472671508789 ], [ -77.658195495605355, -11.018470764160099 ], [ -77.658195495605355, -11.017639160156136 ], [ -77.658752441406193, -11.017639160156136 ], [ -77.658752441406193, -11.017360687255859 ], [ -77.659027099609318, -11.017360687255859 ], [ -77.659027099609318, -11.017083168029728 ], [ -77.6593017578125, -11.017083168029728 ], [ -77.6593017578125, -11.016804695129281 ], [ -77.659584045410156, -11.016804695129281 ], [ -77.659584045410156, -11.016527175903263 ], [ -77.659858703613281, -11.016529083251953 ], [ -77.659858703613281, -11.016248703002873 ], [ -77.660140991210938, -11.016248703002873 ], [ -77.660140991210938, -11.015971183776799 ], [ -77.660415649414062, -11.015973091125488 ], [ -77.660415649414062, -11.015694618225098 ], [ -77.660972595214844, -11.015694618225098 ], [ -77.660972595214844, -11.015138626098633 ], [ -77.661247253417855, -11.015138626098633 ], [ -77.661247253417855, -11.014861106872559 ], [ -77.661529541015568, -11.014861106872559 ], [ -77.661529541015568, -11.014582633972168 ], [ -77.661804199218693, -11.014582633972168 ], [ -77.661804199218693, -11.014305114746094 ], [ -77.662086486816349, -11.014305114746094 ], [ -77.662086486816349, -11.014026641845703 ], [ -77.662361145019474, -11.014026641845703 ], [ -77.662361145019474, -11.013472557067871 ], [ -77.662635803222656, -11.013472557067871 ], [ -77.662635803222656, -11.012639045715332 ], [ -77.662361145019474, -11.012639045715332 ], [ -77.662361145019474, -11.011526107788086 ], [ -77.661804199218693, -11.011526107788086 ], [ -77.661804199218693, -11.010970115661621 ], [ -77.661529541015568, -11.010972976684513 ], [ -77.661529541015568, -11.010695457458496 ], [ -77.661247253417855, -11.010695457458496 ], [ -77.661247253417855, -11.009860038757267 ], [ -77.660972595214844, -11.009860038757267 ], [ -77.660972595214844, -11.009585380554142 ], [ -77.660697937011719, -11.009585380554142 ], [ -77.660697937011719, -11.009304046630803 ], [ -77.660415649414062, -11.009304046630803 ], [ -77.660415649414062, -11.008748054504395 ], [ -77.659858703613281, -11.008749961853027 ], [ -77.659858703613281, -11.008472442626896 ], [ -77.659584045410156, -11.008472442626896 ], [ -77.659584045410156, -11.007916450500431 ], [ -77.6593017578125, -11.007916450500431 ], [ -77.6593017578125, -11.007637977600041 ], [ -77.659027099609318, -11.007637977600041 ], [ -77.659027099609318, -11.006806373596191 ], [ -77.658752441406193, -11.006806373596191 ], [ -77.658752441406193, -11.006250381469727 ], [ -77.659027099609318, -11.006250381469727 ], [ -77.659027099609318, -11.004859924316293 ], [ -77.658752441406193, -11.004859924316293 ], [ -77.658752441406193, -11.004584312438965 ], [ -77.658195495605355, -11.004584312438965 ], [ -77.658195495605355, -11.004859924316293 ], [ -77.657913208007812, -11.004859924316293 ], [ -77.657913208007812, -11.00514030456543 ], [ -77.657638549804688, -11.00514030456543 ], [ -77.657638549804688, -11.005415916442871 ], [ -77.657081604003906, -11.005415916442871 ], [ -77.657081604003906, -11.005694389343148 ], [ -77.654861450195312, -11.005694389343148 ], [ -77.654861450195312, -11.005971908569336 ], [ -77.654586791992188, -11.005971908569336 ], [ -77.654586791992188, -11.005694389343148 ], [ -77.65374755859375, -11.005694389343148 ], [ -77.65374755859375, -11.005415916442871 ], [ -77.652641296386662, -11.005415916442871 ], [ -77.652641296386662, -11.00514030456543 ], [ -77.652084350585881, -11.00514030456543 ], [ -77.652084350585881, -11.004859924316293 ], [ -77.651802062988224, -11.004859924316293 ], [ -77.651802062988224, -11.004584312438965 ], [ -77.651252746582031, -11.004584312438965 ], [ -77.651252746582031, -11.004305839538574 ], [ -77.650970458984375, -11.004305839538574 ], [ -77.650970458984375, -11.003749847412109 ], [ -77.65069580078125, -11.003749847412109 ], [ -77.65069580078125, -11.003193855285645 ], [ -77.650413513183594, -11.003193855285645 ], [ -77.650413513183594, -11.00263786315918 ], [ -77.650138854980469, -11.00263786315918 ], [ -77.650138854980469, -11.002362251281738 ], [ -77.650413513183594, -11.002362251281738 ], [ -77.650413513183594, -11.002083778381291 ], [ -77.650138854980469, -11.002083778381291 ], [ -77.650138854980469, -11.001250267028809 ], [ -77.649864196777287, -11.001250267028809 ], [ -77.649864196777287, -11.000417709350529 ], [ -77.649581909179631, -11.000417709350529 ], [ -77.649581909179631, -11.000138282775879 ], [ -77.649307250976506, -11.000140190124455 ], [ -77.649307250976506, -10.999861717224064 ], [ -77.649307250976506, -10.998195648193359 ], [ -77.649024963378849, -10.998195648193359 ], [ -77.649024963378849, -10.995416641235352 ], [ -77.649307250976506, -10.995416641235352 ], [ -77.649307250976506, -10.994304656982422 ], [ -77.649581909179631, -10.994304656982422 ], [ -77.649581909179631, -10.993194580078068 ], [ -77.649864196777287, -10.993194580078068 ], [ -77.649864196777287, -10.992082595825195 ], [ -77.650138854980469, -10.992082595825195 ], [ -77.650138854980469, -10.990973472595158 ], [ -77.650413513183594, -10.990973472595158 ], [ -77.650413513183594, -10.989860534667912 ], [ -77.65069580078125, -10.989860534667912 ], [ -77.65069580078125, -10.988471031188965 ], [ -77.650970458984375, -10.988471031188965 ], [ -77.650970458984375, -10.986804962158146 ], [ -77.651252746582031, -10.986806869506836 ], [ -77.651252746582031, -10.985694885253906 ], [ -77.651527404785156, -10.985694885253906 ], [ -77.651527404785156, -10.985138893127328 ], [ -77.651802062988224, -10.985138893127328 ], [ -77.651802062988224, -10.98458194732666 ], [ -77.652084350585881, -10.98458194732666 ], [ -77.652084350585881, -10.984304428100472 ], [ -77.652359008789006, -10.984304428100472 ], [ -77.652359008789006, -10.98375129699707 ], [ -77.652641296386662, -10.98375129699707 ], [ -77.652641296386662, -10.98347282409668 ], [ -77.652915954589787, -10.98347282409668 ], [ -77.652915954589787, -10.982915878295898 ], [ -77.653190612792969, -10.982915878295898 ], [ -77.6531982421875, -10.982638359069824 ], [ -77.653472900390625, -10.982638359069824 ], [ -77.653472900390625, -10.982082366943359 ], [ -77.65374755859375, -10.982082366943359 ], [ -77.65374755859375, -10.981528282165471 ], [ -77.654029846191406, -10.981528282165471 ], [ -77.654029846191406, -10.980972290039062 ], [ -77.654304504394531, -10.980972290039062 ], [ -77.654304504394531, -10.980137825012207 ], [ -77.654586791992188, -10.980137825012207 ], [ -77.654586791992188, -10.979583740234261 ], [ -77.654861450195312, -10.979583740234261 ], [ -77.654861450195312, -10.979027748107853 ], [ -77.655136108398381, -10.979027748107853 ], [ -77.655136108398381, -10.978194236755314 ], [ -77.655418395996037, -10.978194236755314 ], [ -77.655418395996037, -10.977638244628906 ], [ -77.655693054199162, -10.977640151977539 ], [ -77.655693054199162, -10.976805686950684 ], [ -77.655975341796818, -10.976805686950684 ], [ -77.655975341796818, -10.976249694824105 ], [ -77.65625, -10.976249694824105 ], [ -77.65625, -10.975693702697697 ], [ -77.656524658203125, -10.975693702697697 ], [ -77.656524658203125, -10.974860191345158 ], [ -77.656806945800781, -10.974860191345158 ], [ -77.656806945800781, -10.974304199218693 ], [ -77.657081604003906, -10.974306106567383 ], [ -77.657081604003906, -10.973471641540527 ], [ -77.657363891601562, -10.973471641540527 ], [ -77.657363891601562, -10.972638130187931 ], [ -77.657638549804688, -10.972640037536621 ], [ -77.657638549804688, -10.971805572509766 ], [ -77.657913208007812, -10.971805572509766 ], [ -77.657913208007812, -10.970696449279785 ], [ -77.658195495605355, -10.970696449279785 ], [ -77.658195495605355, -10.96985912322998 ], [ -77.658470153808537, -10.96986198425293 ], [ -77.658470153808537, -10.969026565551701 ], [ -77.658752441406193, -10.969026565551701 ], [ -77.658752441406193, -10.968474388122502 ], [ -77.6593017578125, -10.968474388122502 ], [ -77.6593017578125, -10.968193054199219 ], [ -77.659584045410156, -10.968193054199219 ], [ -77.659584045410156, -10.967917442321721 ], [ -77.660140991210938, -10.967917442321721 ], [ -77.660140991210938, -10.967637062072754 ], [ -77.660415649414062, -10.967637062072754 ], [ -77.660415649414062, -10.967081069946289 ], [ -77.660697937011719, -10.967081069946289 ], [ -77.660697937011719, -10.9665269851684 ], [ -77.660972595214844, -10.9665269851684 ], [ -77.660972595214844, -10.965695381164551 ], [ -77.661247253417855, -10.965695381164551 ], [ -77.661247253417855, -10.965139389037972 ], [ -77.661529541015568, -10.965139389037972 ], [ -77.661529541015568, -10.964860916137695 ], [ -77.661804199218693, -10.964860916137695 ], [ -77.661804199218693, -10.964304924011117 ], [ -77.662086486816349, -10.964304924011117 ], [ -77.662086486816349, -10.964027404785099 ], [ -77.662361145019474, -10.964027404785099 ], [ -77.662361145019474, -10.963473320007324 ], [ -77.662635803222656, -10.963473320007324 ], [ -77.662635803222656, -10.963194847106934 ], [ -77.662918090820312, -10.963194847106934 ], [ -77.662918090820312, -10.962638854980469 ], [ -77.663192749023438, -10.962638854980469 ], [ -77.663192749023438, -10.96180534362793 ], [ -77.663475036621094, -10.96180534362793 ], [ -77.663475036621094, -10.961251258850098 ], [ -77.663749694824219, -10.961251258850098 ], [ -77.663749694824219, -10.960416793823242 ], [ -77.664024353027344, -10.960416793823242 ], [ -77.664024353027344, -10.959860801696777 ], [ -77.664306640625, -10.959860801696777 ], [ -77.664306640625, -10.959564208984375 ], [ -77.664306640625, -10.959306716918888 ], [ -77.664566040039006, -10.959306716918888 ], [ -77.664581298828068, -10.957360267639103 ], [ -77.664306640625, -10.957360267639103 ], [ -77.664306640625, -10.956804275512638 ], [ -77.664024353027344, -10.956804275512638 ], [ -77.664024353027344, -10.95652866363514 ], [ -77.663749694824219, -10.95652866363514 ], [ -77.663749694824219, -10.956325531005859 ], [ -77.663749694824219, -10.955971717834473 ], [ -77.663475036621094, -10.955971717834473 ], [ -77.663475036621094, -10.955692291259766 ], [ -77.662086486816349, -10.955694198608285 ], [ -77.662086486816349, -10.955415725708008 ], [ -77.661804199218693, -10.955415725708008 ], [ -77.661804199218693, -10.955138206481877 ], [ -77.661529541015568, -10.955138206481877 ], [ -77.661529541015568, -10.954859733581429 ], [ -77.661247253417855, -10.954859733581429 ], [ -77.661247253417855, -10.951250076293945 ], [ -77.661529541015568, -10.951250076293945 ], [ -77.661529541015568, -10.949861526489201 ], [ -77.661804199218693, -10.949861526489201 ], [ -77.661804199218693, -10.949305534362736 ], [ -77.662086486816349, -10.949305534362736 ], [ -77.662086486816349, -10.948472023010254 ], [ -77.662361145019474, -10.948472023010254 ], [ -77.662361145019474, -10.947916030883789 ], [ -77.662635803222656, -10.947917938232365 ], [ -77.662635803222656, -10.947637557983398 ], [ -77.662918090820312, -10.947637557983398 ], [ -77.662918090820312, -10.947360038757324 ], [ -77.663192749023438, -10.9473619461059 ], [ -77.663192749023438, -10.947084426879826 ], [ -77.663475036621094, -10.947084426879826 ], [ -77.663475036621094, -10.946805953979435 ], [ -77.663749694824219, -10.946805953979435 ], [ -77.663749694824219, -10.946528434753361 ], [ -77.664024353027344, -10.946528434753361 ], [ -77.664024353027344, -10.945972442626953 ], [ -77.664306640625, -10.945972442626953 ], [ -77.664306640625, -10.945416450500488 ], [ -77.664581298828068, -10.945416450500488 ], [ -77.664581298828068, -10.944862365722599 ], [ -77.664863586425724, -10.944862365722599 ], [ -77.664863586425724, -10.944306373596135 ], [ -77.665138244628849, -10.944306373596135 ], [ -77.665138244628849, -10.943749427795296 ], [ -77.665412902831974, -10.943749427795296 ], [ -77.665412902831974, -10.943193435668888 ], [ -77.665695190429631, -10.943193435668888 ], [ -77.665695190429631, -10.942917823791504 ], [ -77.665969848632812, -10.942917823791504 ], [ -77.665969848632812, -10.942360877990723 ], [ -77.666252136230469, -10.942360877990723 ], [ -77.666252136230469, -10.942083358764648 ], [ -77.666526794433594, -10.942083358764648 ], [ -77.666526794433594, -10.941804885864258 ], [ -77.66680908203125, -10.941804885864258 ], [ -77.66680908203125, -10.941527366638184 ], [ -77.667083740234375, -10.941527366638184 ], [ -77.667083740234375, -10.941248893737793 ], [ -77.6673583984375, -10.941248893737793 ], [ -77.6673583984375, -10.940694808959904 ], [ -77.667640686035156, -10.940694808959904 ], [ -77.667640686035156, -10.940138816833439 ], [ -77.667915344238224, -10.940138816833439 ], [ -77.667915344238224, -10.939305305480957 ], [ -77.668197631835881, -10.939305305480957 ], [ -77.668197631835881, -10.938470840454102 ], [ -77.668472290039006, -10.938470840454102 ], [ -77.668472290039006, -10.937916755676213 ], [ -77.668746948242131, -10.937916755676213 ], [ -77.668746948242131, -10.93708324432373 ], [ -77.669029235839844, -10.93708324432373 ], [ -77.669029235839844, -10.936248779296875 ], [ -77.669303894042969, -10.936248779296875 ], [ -77.669303894042969, -10.935415267944336 ], [ -77.669586181640625, -10.935417175292912 ], [ -77.669586181640625, -10.934582710266056 ], [ -77.66986083984375, -10.934582710266056 ], [ -77.66986083984375, -10.933749198913517 ], [ -77.670135498046875, -10.933751106262207 ], [ -77.670135498046875, -10.933195114135742 ], [ -77.670417785644531, -10.933195114135742 ], [ -77.670417785644531, -10.932360649108887 ], [ -77.670692443847656, -10.932360649108887 ], [ -77.670692443847656, -10.931804656982308 ], [ -77.670974731445199, -10.931804656982308 ], [ -77.670974731445199, -10.93125057220459 ], [ -77.671249389648381, -10.93125057220459 ], [ -77.671249389648381, -10.930694580078125 ], [ -77.671524047851506, -10.930694580078125 ], [ -77.671524047851506, -10.92986011505127 ], [ -77.671806335449162, -10.92986011505127 ], [ -77.671806335449162, -10.929304122924805 ], [ -77.672080993652344, -10.929304122924805 ], [ -77.672080993652344, -10.928471565246525 ], [ -77.67236328125, -10.928471565246525 ], [ -77.67236328125, -10.927638053894043 ], [ -77.672637939453125, -10.927638053894043 ], [ -77.672637939453125, -10.927082061767578 ], [ -77.672920227050781, -10.927082061767578 ], [ -77.672920227050781, -10.926250457763615 ], [ -77.673194885253906, -10.926250457763615 ], [ -77.673194885253906, -10.92569446563715 ], [ -77.673469543457031, -10.92569446563715 ], [ -77.673469543457031, -10.925138473510742 ], [ -77.673751831054688, -10.925138473510742 ], [ -77.673751831054688, -10.924584388732796 ], [ -77.674026489257699, -10.924584388732796 ], [ -77.674026489257699, -10.924304008483887 ], [ -77.674308776855412, -10.924304008483887 ], [ -77.674308776855412, -10.923749923705941 ], [ -77.674583435058537, -10.923749923705941 ], [ -77.674583435058537, -10.923193931579533 ], [ -77.674858093261662, -10.923193931579533 ], [ -77.674858093261662, -10.922916412353459 ], [ -77.675140380859318, -10.922916412353459 ], [ -77.675140380859318, -10.922362327575684 ], [ -77.6754150390625, -10.922362327575684 ], [ -77.6754150390625, -10.921806335449219 ], [ -77.675697326660156, -10.921806335449219 ], [ -77.675697326660156, -10.921527862548828 ], [ -77.675971984863281, -10.921527862548828 ], [ -77.675971984863281, -10.920971870422363 ], [ -77.676246643066406, -10.920971870422363 ], [ -77.676246643066406, -10.920417785644531 ], [ -77.676528930664062, -10.920417785644531 ], [ -77.676528930664062, -10.919305801391602 ], [ -77.676803588867188, -10.919305801391602 ], [ -77.676803588867188, -10.918749809265137 ], [ -77.677085876464844, -10.918749809265137 ], [ -77.677085876464844, -10.918195724487248 ], [ -77.677360534667912, -10.918195724487248 ], [ -77.677360534667912, -10.917639732360783 ], [ -77.677635192871037, -10.917639732360783 ], [ -77.677635192871037, -10.917083740234318 ], [ -77.677917480468693, -10.917083740234318 ], [ -77.677917480468693, -10.916526794433537 ], [ -77.678192138671818, -10.916526794433537 ], [ -77.678192138671818, -10.915970802307072 ], [ -77.678474426269474, -10.915970802307072 ], [ -77.678474426269474, -10.915417671203556 ], [ -77.678749084472656, -10.915417671203556 ], [ -77.678749084472656, -10.91513729095459 ], [ -77.679031372070312, -10.915139198303109 ], [ -77.679031372070312, -10.914583206176701 ], [ -77.679306030273438, -10.914583206176701 ], [ -77.679306030273438, -10.914304733276254 ], [ -77.679580688476562, -10.914304733276254 ], [ -77.679580688476562, -10.914027214050236 ], [ -77.679862976074219, -10.914027214050236 ], [ -77.679862976074219, -10.913748741149846 ], [ -77.680137634277344, -10.913748741149846 ], [ -77.680137634277344, -10.913471221923771 ], [ -77.680419921875, -10.913471221923771 ], [ -77.680419921875, -10.912915229797306 ], [ -77.680694580078068, -10.912917137145996 ], [ -77.680694580078068, -10.912638664245605 ], [ -77.680969238281193, -10.912638664245605 ], [ -77.680969238281193, -10.912359237670898 ], [ -77.681251525878849, -10.912359237670898 ], [ -77.681251525878849, -10.911803245544434 ], [ -77.681526184081974, -10.911805152892953 ], [ -77.681526184081974, -10.911526679992676 ], [ -77.681808471679688, -10.911526679992676 ], [ -77.681808471679688, -10.911249160766545 ], [ -77.682083129882812, -10.911249160766545 ], [ -77.682083129882812, -10.91069316864008 ], [ -77.682357788085938, -10.91069507598877 ], [ -77.682357788085938, -10.910416603088379 ], [ -77.682640075683594, -10.910416603088379 ], [ -77.682640075683594, -10.909860610961914 ], [ -77.682914733886719, -10.909860610961914 ], [ -77.682914733886719, -10.90958309173584 ], [ -77.683197021484375, -10.90958309173584 ], [ -77.683197021484375, -10.909027099609375 ], [ -77.6834716796875, -10.909029006957951 ], [ -77.6834716796875, -10.908748626708984 ], [ -77.683746337890568, -10.908748626708984 ], [ -77.683746337890568, -10.90847110748291 ], [ -77.684028625488224, -10.90847110748291 ], [ -77.684028625488224, -10.907917022705078 ], [ -77.684303283691349, -10.907917022705078 ], [ -77.684303283691349, -10.907638549804688 ], [ -77.684585571289006, -10.907638549804688 ], [ -77.684585571289006, -10.907082557678223 ], [ -77.684860229492188, -10.907082557678223 ], [ -77.684860229492188, -10.906526565551758 ], [ -77.685142517089844, -10.906526565551758 ], [ -77.685142517089844, -10.905973434448185 ], [ -77.685417175292969, -10.905973434448185 ], [ -77.685417175292969, -10.905417442321777 ], [ -77.686248779296875, -10.905417442321777 ], [ -77.686248779296875, -10.90513896942133 ], [ -77.686531066894531, -10.90513896942133 ], [ -77.686531066894531, -10.904861450195312 ], [ -77.686805725097543, -10.904861450195312 ], [ -77.686805725097543, -10.904582977294922 ], [ -77.686531066894531, -10.904582977294922 ], [ -77.686531066894531, -10.904026031494084 ], [ -77.686248779296875, -10.904028892516976 ], [ -77.686248779296875, -10.903751373290959 ], [ -77.686531066894531, -10.903751373290959 ], [ -77.686531066894531, -10.903470039367619 ], [ -77.686805725097543, -10.903472900390568 ], [ -77.686805725097543, -10.903195381164494 ], [ -77.687080383300724, -10.903195381164494 ], [ -77.687080383300724, -10.902915954589844 ], [ -77.687637329101506, -10.902915954589844 ], [ -77.687637329101506, -10.902638435363713 ], [ -77.688194274902344, -10.902638435363713 ], [ -77.688194274902344, -10.902359962463265 ], [ -77.688468933105469, -10.902359962463265 ], [ -77.688468933105469, -10.902082443237248 ], [ -77.688751220703125, -10.902082443237248 ], [ -77.688751220703125, -10.901249885559082 ], [ -77.68902587890625, -10.901249885559082 ], [ -77.68902587890625, -10.900693893432617 ], [ -77.689308166503906, -10.900693893432617 ], [ -77.689308166503906, -10.900137901306152 ], [ -77.689582824707031, -10.900137901306152 ], [ -77.689582824707031, -10.899581909179688 ], [ -77.689857482910043, -10.899581909179688 ], [ -77.689857482910043, -10.899027824401855 ], [ -77.690139770507756, -10.899027824401855 ], [ -77.690139770507756, -10.898750305175781 ], [ -77.690414428710881, -10.898750305175781 ], [ -77.690414428710881, -10.898194313049316 ], [ -77.690971374511662, -10.898194313049316 ], [ -77.690971374511662, -10.897915840148926 ], [ -77.691253662109318, -10.897915840148926 ], [ -77.691253662109318, -10.897640228271428 ], [ -77.691802978515625, -10.897640228271428 ], [ -77.691802978515625, -10.897359848022461 ], [ -77.692359924316406, -10.897359848022461 ], [ -77.692359924316406, -10.897084236144963 ], [ -77.692642211914062, -10.897084236144963 ], [ -77.692642211914062, -10.896805763244572 ], [ -77.692916870117188, -10.896805763244572 ], [ -77.692916870117188, -10.896528244018555 ], [ -77.693191528320256, -10.896528244018555 ], [ -77.693191528320256, -10.896249771118107 ], [ -77.692916870117188, -10.896249771118107 ], [ -77.692916870117188, -10.895693778991699 ], [ -77.693191528320256, -10.895693778991699 ], [ -77.693191528320256, -10.895416259765625 ], [ -77.693473815917912, -10.895416259765625 ], [ -77.693473815917912, -10.895137786865234 ], [ -77.693748474121037, -10.895137786865234 ], [ -77.693748474121037, -10.89486026763916 ], [ -77.694030761718693, -10.894862174987736 ], [ -77.694030761718693, -10.894583702087346 ], [ -77.694305419921818, -10.894583702087346 ], [ -77.694305419921818, -10.894027709960881 ], [ -77.694580078125, -10.894027709960881 ], [ -77.694580078125, -10.893750190734806 ], [ -77.694862365722656, -10.893750190734806 ], [ -77.694862365722656, -10.893471717834416 ], [ -77.695137023925781, -10.893471717834416 ], [ -77.695137023925781, -10.892915725707951 ], [ -77.695419311523438, -10.892915725707951 ], [ -77.695419311523438, -10.892640113830566 ], [ -77.695693969726562, -10.892640113830566 ], [ -77.695693969726562, -10.892084121703988 ], [ -77.695968627929688, -10.892084121703988 ], [ -77.695968627929688, -10.891805648803711 ], [ -77.696250915527344, -10.891805648803711 ], [ -77.696250915527344, -10.89152812957758 ], [ -77.696525573730412, -10.89152812957758 ], [ -77.696525573730412, -10.890969276428223 ], [ -77.696807861328068, -10.890972137451115 ], [ -77.696807861328068, -10.890695571899414 ], [ -77.697082519531193, -10.890695571899414 ], [ -77.697082519531193, -10.890139579772949 ], [ -77.697364807128849, -10.890139579772949 ], [ -77.697364807128849, -10.889583587646484 ], [ -77.697639465332031, -10.889583587646484 ], [ -77.697639465332031, -10.889303207397404 ], [ -77.697914123535156, -10.889305114746094 ], [ -77.697914123535156, -10.889026641845703 ], [ -77.698196411132812, -10.889026641845703 ], [ -77.698196411132812, -10.888749122619629 ], [ -77.698471069335938, -10.888749122619629 ], [ -77.698471069335938, -10.888474464416504 ], [ -77.699584960937386, -10.888474464416504 ], [ -77.699584960937386, -10.888193130493164 ], [ -77.700416564941349, -10.888193130493164 ], [ -77.700416564941349, -10.887916564941349 ], [ -77.700973510742188, -10.887916564941349 ], [ -77.700973510742188, -10.887637138366699 ], [ -77.701530456542969, -10.887639045715275 ], [ -77.701530456542969, -10.887360572814885 ], [ -77.702362060546875, -10.887360572814885 ], [ -77.702362060546875, -10.887081146240121 ], [ -77.702919006347599, -10.887083053588867 ], [ -77.702919006347599, -10.88680458068842 ], [ -77.703475952148381, -10.88680458068842 ], [ -77.703475952148381, -10.886650085449219 ], [ -77.703475952148381, -10.886527061462402 ], [ -77.704025268554688, -10.886527061462402 ], [ -77.704025268554688, -10.885971069335938 ], [ -77.703750610351506, -10.885971069335938 ], [ -77.703750610351506, -10.885695457458439 ], [ -77.703475952148381, -10.885695457458439 ], [ -77.703475952148381, -10.885415077209473 ], [ -77.703193664550724, -10.885416984558049 ], [ -77.703193664550724, -10.885139465331974 ], [ -77.703475952148381, -10.885139465331974 ], [ -77.703475952148381, -10.884860992431584 ], [ -77.703750610351506, -10.884860992431584 ], [ -77.703750610351506, -10.884583473205566 ], [ -77.704025268554688, -10.884583473205566 ], [ -77.704025268554688, -10.884305000305119 ], [ -77.704582214355469, -10.884305000305119 ], [ -77.704582214355469, -10.883749008178711 ], [ -77.704307556152344, -10.883749008178711 ], [ -77.704307556152344, -10.883194923400765 ], [ -77.703750610351506, -10.883194923400765 ], [ -77.703750610351506, -10.883473396301213 ], [ -77.702079772949219, -10.883473396301213 ], [ -77.702079772949219, -10.882082939147892 ], [ -77.702362060546875, -10.882082939147892 ], [ -77.702362060546875, -10.881805419921818 ], [ -77.702919006347599, -10.881805419921818 ], [ -77.702919006347599, -10.881526947021428 ], [ -77.703193664550724, -10.881526947021428 ], [ -77.703193664550724, -10.881251335144043 ], [ -77.703475952148381, -10.881251335144043 ], [ -77.703475952148381, -10.880416870117188 ], [ -77.703193664550724, -10.880416870117188 ], [ -77.703193664550724, -10.879027366638127 ], [ -77.702919006347599, -10.879027366638127 ], [ -77.702919006347599, -10.877638816833496 ], [ -77.703193664550724, -10.877638816833496 ], [ -77.703193664550724, -10.877361297607422 ], [ -77.705970764160099, -10.877361297607422 ], [ -77.705970764160099, -10.877084732055607 ], [ -77.706253051757756, -10.877084732055607 ], [ -77.706253051757756, -10.876804351806641 ], [ -77.706527709960881, -10.876804351806641 ], [ -77.706527709960881, -10.876251220703125 ], [ -77.706802368164006, -10.876251220703125 ], [ -77.706802368164006, -10.875692367553711 ], [ -77.706527709960881, -10.875692367553711 ], [ -77.706527709960881, -10.875138282775879 ], [ -77.706253051757756, -10.875138282775879 ], [ -77.706253051757756, -10.874582290649414 ], [ -77.705970764160099, -10.874582290649414 ], [ -77.705970764160099, -10.874305725097656 ], [ -77.706527709960881, -10.874305725097656 ], [ -77.706527709960881, -10.874028205871525 ], [ -77.707084655761662, -10.874028205871525 ], [ -77.707084655761662, -10.873749732971078 ], [ -77.707359313964844, -10.873749732971078 ], [ -77.707359313964844, -10.87347221374506 ], [ -77.707916259765625, -10.87347221374506 ], [ -77.707916259765625, -10.87319374084467 ], [ -77.70819091796875, -10.87319374084467 ], [ -77.70819091796875, -10.87291431427002 ], [ -77.708473205566406, -10.872916221618596 ], [ -77.708473205566406, -10.872637748718205 ], [ -77.708747863769531, -10.872637748718205 ], [ -77.708747863769531, -10.87208366394043 ], [ -77.709030151367188, -10.87208366394043 ], [ -77.709030151367188, -10.871804237365723 ], [ -77.709304809570256, -10.871804237365723 ], [ -77.709304809570256, -10.871248245239258 ], [ -77.709030151367188, -10.871250152587777 ], [ -77.709030151367188, -10.869861602783203 ], [ -77.708473205566406, -10.869861602783203 ], [ -77.708473205566406, -10.870140075683594 ], [ -77.707916259765625, -10.870138168334904 ], [ -77.707916259765625, -10.870415687560921 ], [ -77.707580566406193, -10.870415687560921 ], [ -77.706527709960881, -10.870415687560921 ], [ -77.706527709960881, -10.870140075683594 ], [ -77.706367492675781, -10.870140075683594 ], [ -77.706253051757756, -10.870140075683594 ], [ -77.706253051757756, -10.869867324828988 ], [ -77.706253051757756, -10.869305610656738 ], [ -77.706527709960881, -10.869305610656738 ], [ -77.706527709960881, -10.868749618530273 ], [ -77.706802368164006, -10.868749618530273 ], [ -77.706802368164006, -10.868193626403809 ], [ -77.70819091796875, -10.868193626403809 ], [ -77.70819091796875, -10.868472099304199 ], [ -77.708473205566406, -10.868472099304199 ], [ -77.708473205566406, -10.868749618530273 ], [ -77.709587097167912, -10.868749618530273 ], [ -77.709587097167912, -10.868472099304199 ], [ -77.709304809570256, -10.868472099304199 ], [ -77.709304809570256, -10.868193626403809 ], [ -77.709030151367188, -10.868193626403809 ], [ -77.709030151367188, -10.867637634277344 ], [ -77.708747863769531, -10.867637634277344 ], [ -77.708747863769531, -10.863750457763672 ], [ -77.708473205566406, -10.863750457763672 ], [ -77.708473205566406, -10.864027976989746 ], [ -77.706985473632812, -10.864027976989746 ], [ -77.706802368164006, -10.864027976989746 ], [ -77.706802368164006, -10.863750457763672 ], [ -77.706253051757756, -10.863750457763672 ], [ -77.706253051757756, -10.863471031188908 ], [ -77.705970764160099, -10.863471031188908 ], [ -77.705970764160099, -10.862995147705078 ], [ -77.705970764160099, -10.862917900085392 ], [ -77.705696105957031, -10.862917900085392 ], [ -77.705696105957031, -10.862732887268066 ], [ -77.705696105957031, -10.862359046936035 ], [ -77.705413818359375, -10.862359046936035 ], [ -77.705413818359375, -10.860136985778752 ], [ -77.705696105957031, -10.860136985778752 ], [ -77.705696105957031, -10.859580993652287 ], [ -77.705970764160099, -10.859582901000977 ], [ -77.705970764160099, -10.85875129699707 ], [ -77.706253051757756, -10.85875129699707 ], [ -77.706253051757756, -10.858195304870605 ], [ -77.706527709960881, -10.858195304870605 ], [ -77.706527709960881, -10.85736083984375 ], [ -77.706802368164006, -10.85736083984375 ], [ -77.706802368164006, -10.856804847717285 ], [ -77.707084655761662, -10.856804847717285 ], [ -77.707084655761662, -10.855973243713379 ], [ -77.707359313964844, -10.855973243713379 ], [ -77.707359313964844, -10.855138778686523 ], [ -77.7076416015625, -10.855138778686523 ], [ -77.7076416015625, -10.854582786560059 ], [ -77.707916259765625, -10.854582786560059 ], [ -77.707916259765625, -10.85374927520752 ], [ -77.70819091796875, -10.853751182556096 ], [ -77.70819091796875, -10.853195190429631 ], [ -77.708473205566406, -10.853195190429631 ], [ -77.708473205566406, -10.852639198303166 ], [ -77.709030151367188, -10.852639198303166 ], [ -77.709030151367188, -10.852360725402775 ], [ -77.709304809570256, -10.852360725402775 ], [ -77.709304809570256, -10.852080345153809 ], [ -77.709861755371037, -10.852083206176758 ], [ -77.709861755371037, -10.85180473327631 ], [ -77.710136413574162, -10.85180473327631 ], [ -77.710136413574162, -10.851529121398812 ], [ -77.710693359375, -10.851529121398812 ], [ -77.710693359375, -10.851250648498535 ], [ -77.710975646972656, -10.851250648498535 ], [ -77.710975646972656, -10.850973129272404 ], [ -77.711250305175781, -10.850973129272404 ], [ -77.711250305175781, -10.850694656371957 ], [ -77.711524963378906, -10.850694656371957 ], [ -77.711524963378906, -10.850414276123047 ], [ -77.711807250976562, -10.850417137145939 ], [ -77.711807250976562, -10.850138664245549 ], [ -77.71236419677723, -10.850138664245549 ], [ -77.71236419677723, -10.849858283996582 ], [ -77.712638854980412, -10.849860191345101 ], [ -77.712638854980412, -10.849584579467773 ], [ -77.712913513183537, -10.849584579467773 ], [ -77.712913513183537, -10.849304199218693 ], [ -77.713195800781193, -10.849304199218693 ], [ -77.713195800781193, -10.849028587341309 ], [ -77.713470458984375, -10.849028587341309 ], [ -77.713470458984375, -10.848748207092228 ], [ -77.713752746582031, -10.848751068115234 ], [ -77.713752746582031, -10.848471641540527 ], [ -77.714027404785156, -10.848471641540527 ], [ -77.714027404785156, -10.848192214965763 ], [ -77.714584350585938, -10.848194122314453 ], [ -77.714584350585938, -10.847915649414062 ], [ -77.714859008789062, -10.847915649414062 ], [ -77.714859008789062, -10.847638130187988 ], [ -77.715141296386719, -10.847638130187988 ], [ -77.715141296386719, -10.847363471984863 ], [ -77.71541595458973, -10.847359657287598 ], [ -77.71541595458973, -10.847082138061523 ], [ -77.715690612792912, -10.847082138061523 ], [ -77.715698242187443, -10.846805572509709 ], [ -77.715972900390568, -10.846805572509709 ], [ -77.715972900390568, -10.846249580383244 ], [ -77.716247558593693, -10.846249580383244 ], [ -77.716247558593693, -10.845970153808537 ], [ -77.716529846191349, -10.845972061157227 ], [ -77.716529846191349, -10.845693588256836 ], [ -77.716804504394531, -10.845693588256836 ], [ -77.716804504394531, -10.845137596130371 ], [ -77.717086791992188, -10.845137596130371 ], [ -77.717086791992188, -10.844860076904297 ], [ -77.717361450195312, -10.844860076904297 ], [ -77.717361450195312, -10.844584465026799 ], [ -77.717918395996094, -10.844584465026799 ], [ -77.717918395996094, -10.844304084777832 ], [ -77.718193054199219, -10.844305992126408 ], [ -77.718193054199219, -10.844028472900391 ], [ -77.71875, -10.844028472900391 ], [ -77.71875, -10.84375 ], [ -77.719306945800724, -10.84375 ], [ -77.719306945800724, -10.843471527099553 ], [ -77.719581604003849, -10.843471527099553 ], [ -77.719581604003849, -10.843194007873535 ], [ -77.719863891601506, -10.843194007873535 ], [ -77.719863891601506, -10.842915534973088 ], [ -77.720413208007812, -10.842915534973088 ], [ -77.720413208007812, -10.84263801574707 ], [ -77.720695495605469, -10.84263801574707 ], [ -77.720695495605469, -10.842362403869572 ], [ -77.720970153808594, -10.842362403869572 ], [ -77.720970153808594, -10.842082023620605 ], [ -77.72125244140625, -10.842083930969181 ], [ -77.72125244140625, -10.841806411743107 ], [ -77.721527099609375, -10.841806411743107 ], [ -77.721527099609375, -10.841527938842717 ], [ -77.722084045410099, -10.841527938842717 ], [ -77.722084045410099, -10.841250419616642 ], [ -77.722358703613224, -10.841250419616642 ], [ -77.722358703613224, -10.840971946716252 ], [ -77.722640991210881, -10.840971946716252 ], [ -77.722640991210881, -10.840694427490178 ], [ -77.723197937011719, -10.840694427490178 ], [ -77.723197937011719, -10.840415954589787 ], [ -77.723472595214844, -10.840417861938477 ], [ -77.723472595214844, -10.84013843536377 ], [ -77.723747253417969, -10.84013843536377 ], [ -77.723747253417969, -10.839584350585824 ], [ -77.724029541015625, -10.839584350585824 ], [ -77.724029541015625, -10.839028358459416 ], [ -77.72430419921875, -10.839028358459416 ], [ -77.72430419921875, -10.838749885558968 ], [ -77.724861145019531, -10.838749885558968 ], [ -77.724861145019531, -10.838472366332951 ], [ -77.725418090820256, -10.838472366332951 ], [ -77.725418090820256, -10.83819580078125 ], [ -77.725975036621037, -10.83819580078125 ], [ -77.725975036621037, -10.837916374206486 ], [ -77.726249694824219, -10.837916374206486 ], [ -77.726249694824219, -10.837639808654785 ], [ -77.726524353027344, -10.837639808654785 ], [ -77.726524353027344, -10.837362289428711 ], [ -77.726806640625, -10.837362289428711 ], [ -77.726806640625, -10.83708381652832 ], [ -77.727081298828125, -10.83708381652832 ], [ -77.727081298828125, -10.836806297302246 ], [ -77.727363586425781, -10.836806297302246 ], [ -77.727363586425781, -10.836249351501465 ], [ -77.727638244628906, -10.836249351501465 ], [ -77.727638244628906, -10.835970878601074 ], [ -77.727912902832031, -10.835970878601074 ], [ -77.727912902832031, -10.835693359375 ], [ -77.728195190429574, -10.835693359375 ], [ -77.728195190429574, -10.835417747497559 ], [ -77.728469848632756, -10.835417747497559 ], [ -77.728469848632756, -10.835137367248535 ], [ -77.728752136230412, -10.835140228271484 ], [ -77.728752136230412, -10.834860801696721 ], [ -77.729026794433537, -10.834860801696721 ], [ -77.729026794433537, -10.834583282470703 ], [ -77.729309082031193, -10.834583282470703 ], [ -77.729309082031193, -10.834304809570256 ], [ -77.7298583984375, -10.834304809570256 ], [ -77.7298583984375, -10.834027290344238 ], [ -77.730140686035156, -10.834027290344238 ], [ -77.730140686035156, -10.833748817443848 ], [ -77.730415344238281, -10.833748817443848 ], [ -77.730415344238281, -10.833471298217773 ], [ -77.730697631835938, -10.833471298217773 ], [ -77.730697631835938, -10.833194732665902 ], [ -77.730972290039062, -10.833194732665902 ], [ -77.730972290039062, -10.832917213439885 ], [ -77.731246948242074, -10.832917213439885 ], [ -77.731246948242074, -10.832638740539494 ], [ -77.731803894042912, -10.832638740539494 ], [ -77.731803894042912, -10.832359313964844 ], [ -77.732086181640568, -10.83236122131342 ], [ -77.732086181640568, -10.832082748413029 ], [ -77.732360839843693, -10.832082748413029 ], [ -77.732360839843693, -10.831805229186955 ], [ -77.732635498046875, -10.831805229186955 ], [ -77.732635498046875, -10.831526756286564 ], [ -77.732917785644531, -10.831526756286564 ], [ -77.732917785644531, -10.831249237060547 ], [ -77.733474731445312, -10.83125114440918 ], [ -77.733474731445312, -10.830972671508789 ], [ -77.733749389648438, -10.830970764160099 ], [ -77.733749389648438, -10.830693244934082 ], [ -77.734306335449219, -10.830695152282601 ], [ -77.734306335449219, -10.830416679382324 ], [ -77.734580993652287, -10.830416679382324 ], [ -77.734580993652287, -10.830139160156193 ], [ -77.734863281249943, -10.830139160156193 ], [ -77.734863281249943, -10.829860687255746 ], [ -77.735420227050724, -10.829860687255746 ], [ -77.735420227050724, -10.829583168029728 ], [ -77.735694885253849, -10.829583168029728 ], [ -77.735694885253849, -10.829304695129338 ], [ -77.736251831054688, -10.829304695129338 ], [ -77.736251831054688, -10.829027175903263 ], [ -77.736526489257812, -10.829029083251953 ], [ -77.736526489257812, -10.828748703002873 ], [ -77.737083435058594, -10.828748703002873 ], [ -77.737083435058594, -10.828471183776799 ], [ -77.737358093261719, -10.828473091125488 ], [ -77.737358093261719, -10.828194618225098 ], [ -77.737915039062443, -10.828194618225098 ], [ -77.737915039062443, -10.827917098999023 ], [ -77.738197326660099, -10.827917098999023 ], [ -77.738197326660099, -10.827638626098633 ], [ -77.738471984863224, -10.827638626098633 ], [ -77.738471984863224, -10.827361106872559 ], [ -77.738746643066349, -10.827361106872559 ], [ -77.738746643066349, -10.827082633972168 ], [ -77.739303588867188, -10.827082633972168 ], [ -77.739303588867188, -10.82680511474598 ], [ -77.739585876464844, -10.82680511474598 ], [ -77.739585876464844, -10.826526641845703 ], [ -77.739860534667969, -10.826526641845703 ], [ -77.739860534667969, -10.826249122619572 ], [ -77.740135192871094, -10.826251029968262 ], [ -77.740135192871094, -10.825972557067871 ], [ -77.740692138671875, -10.825972557067871 ], [ -77.740692138671875, -10.825693130493107 ], [ -77.740974426269418, -10.825695037841797 ], [ -77.740974426269418, -10.825416564941406 ], [ -77.741249084472599, -10.825416564941406 ], [ -77.741249084472599, -10.825139045715332 ], [ -77.741531372070256, -10.825139045715332 ], [ -77.741531372070256, -10.824860572814941 ], [ -77.741806030273381, -10.824860572814941 ], [ -77.741806030273381, -10.824583053588867 ], [ -77.742362976074219, -10.824583053588867 ], [ -77.742362976074219, -10.824304580688477 ], [ -77.742637634277344, -10.824304580688477 ], [ -77.742637634277344, -10.824026107788086 ], [ -77.742919921875, -10.824028968810978 ], [ -77.742919921875, -10.823747634887695 ], [ -77.74346923828125, -10.823747634887695 ], [ -77.74346923828125, -10.823470115661621 ], [ -77.744026184081918, -10.82347297668457 ], [ -77.744026184081918, -10.823195457458496 ], [ -77.744583129882756, -10.823195457458496 ], [ -77.744583129882756, -10.822916984558105 ], [ -77.744857788085881, -10.822916984558105 ], [ -77.744857788085881, -10.822637557983342 ], [ -77.745414733886719, -10.822637557983342 ], [ -77.745414733886719, -10.822360038757267 ], [ -77.7459716796875, -10.822360038757267 ], [ -77.7459716796875, -10.822081565856877 ], [ -77.746528625488281, -10.822081565856877 ], [ -77.746528625488281, -10.821804046630859 ], [ -77.746803283691406, -10.821804046630859 ], [ -77.746803283691406, -10.821248054504395 ], [ -77.747085571289062, -10.821249961852914 ], [ -77.747085571289062, -10.820972442626896 ], [ -77.747360229492131, -10.820972442626896 ], [ -77.747360229492131, -10.82069206237793 ], [ -77.747642517089787, -10.820693969726506 ], [ -77.747642517089787, -10.820416450500431 ], [ -77.747917175292912, -10.820416450500431 ], [ -77.747917175292912, -10.820137977600041 ], [ -77.748191833496037, -10.820137977600041 ], [ -77.748191833496037, -10.819862365722656 ], [ -77.748474121093693, -10.819862365722656 ], [ -77.748474121093693, -10.819581985473576 ], [ -77.748748779296875, -10.819581985473576 ], [ -77.748748779296875, -10.819306373596191 ], [ -77.749031066894531, -10.819306373596191 ], [ -77.749031066894531, -10.819025993347111 ], [ -77.749862670898438, -10.819025993347111 ], [ -77.749862670898438, -10.819306373596191 ], [ -77.750419616699219, -10.819306373596191 ], [ -77.750419616699219, -10.819581985473576 ], [ -77.750968933105412, -10.819581985473576 ], [ -77.750968933105412, -10.819862365722656 ], [ -77.751525878906193, -10.819862365722656 ], [ -77.751525878906193, -10.819306373596191 ], [ -77.751808166503906, -10.819306373596191 ], [ -77.751808166503906, -10.818470001220703 ], [ -77.751525878906193, -10.818471908569336 ], [ -77.751525878906193, -10.817915916442757 ], [ -77.751251220703068, -10.817915916442757 ], [ -77.751251220703068, -10.817359924316349 ], [ -77.750968933105412, -10.817359924316349 ], [ -77.750968933105412, -10.817084312438965 ], [ -77.750694274902287, -10.817084312438965 ], [ -77.750694274902287, -10.8165283203125 ], [ -77.750419616699219, -10.8165283203125 ], [ -77.750419616699219, -10.815972328186035 ], [ -77.750694274902287, -10.815972328186035 ], [ -77.750694274902287, -10.81513786315918 ], [ -77.750968933105412, -10.81513786315918 ], [ -77.750968933105412, -10.814583778381348 ], [ -77.751251220703068, -10.814583778381348 ], [ -77.751251220703068, -10.814306259155273 ], [ -77.751525878906193, -10.814306259155273 ], [ -77.751525878906193, -10.814027786254883 ], [ -77.751808166503906, -10.814027786254883 ], [ -77.751808166503906, -10.813750267028809 ], [ -77.752357482910156, -10.813750267028809 ], [ -77.752357482910156, -10.813471794128418 ], [ -77.752639770507812, -10.813471794128418 ], [ -77.752639770507812, -10.812915802001953 ], [ -77.752914428710938, -10.812915802001953 ], [ -77.752914428710938, -10.812361717224064 ], [ -77.753196716308594, -10.812361717224064 ], [ -77.753196716308594, -10.811805725097599 ], [ -77.752914428710938, -10.811805725097599 ], [ -77.752914428710938, -10.811525344848633 ], [ -77.752639770507812, -10.811528205871582 ], [ -77.752639770507812, -10.811249732971135 ], [ -77.752357482910156, -10.811249732971135 ], [ -77.752357482910156, -10.810972213745117 ], [ -77.751808166503906, -10.810972213745117 ], [ -77.751808166503906, -10.810695648193359 ], [ -77.751525878906193, -10.810695648193359 ], [ -77.751525878906193, -10.810415267944279 ], [ -77.750968933105412, -10.810415267944279 ], [ -77.750968933105412, -10.809026718139648 ], [ -77.751251220703068, -10.809026718139648 ], [ -77.751251220703068, -10.808473587036133 ], [ -77.751525878906193, -10.808473587036133 ], [ -77.751525878906193, -10.808193206787053 ], [ -77.751808166503906, -10.808193206787053 ], [ -77.751808166503906, -10.807637214660588 ], [ -77.752082824707031, -10.807639122009277 ], [ -77.752082824707031, -10.807360649108887 ], [ -77.752357482910156, -10.807360649108887 ], [ -77.752357482910156, -10.807081222534123 ], [ -77.752914428710938, -10.807083129882812 ], [ -77.752914428710938, -10.806804656982422 ], [ -77.753196716308594, -10.806804656982422 ], [ -77.753196716308594, -10.806527137756348 ], [ -77.753471374511719, -10.806527137756348 ], [ -77.753471374511719, -10.806248664855957 ], [ -77.753753662109261, -10.806248664855957 ], [ -77.753753662109261, -10.805971145629769 ], [ -77.754302978515568, -10.805971145629769 ], [ -77.754302978515568, -10.805694580078068 ], [ -77.754585266113224, -10.805694580078068 ], [ -77.754585266113224, -10.805415153503361 ], [ -77.754859924316406, -10.805415153503361 ], [ -77.754859924316406, -10.804861068725586 ], [ -77.755142211914062, -10.804861068725586 ], [ -77.755142211914062, -10.804582595825195 ], [ -77.755416870117188, -10.804582595825195 ], [ -77.755416870117188, -10.80402660369873 ], [ -77.755142211914062, -10.80402660369873 ], [ -77.755142211914062, -10.803473472595215 ], [ -77.754310607910099, -10.803473472595215 ], [ -77.754028320312443, -10.803473472595215 ], [ -77.754028320312443, -10.803193092346191 ], [ -77.753471374511719, -10.803194999694767 ], [ -77.753471374511719, -10.802916526794377 ], [ -77.752914428710938, -10.802916526794377 ], [ -77.752914428710938, -10.802639007568359 ], [ -77.752639770507812, -10.802639007568359 ], [ -77.752639770507812, -10.802360534667912 ], [ -77.752082824707031, -10.802360534667912 ], [ -77.752082824707031, -10.802186012268066 ], [ -77.752082824707031, -10.802083015441895 ], [ -77.751808166503906, -10.802083015441895 ], [ -77.751808166503906, -10.801804542541504 ], [ -77.751525878906193, -10.801804542541504 ], [ -77.751525878906193, -10.801251411437931 ], [ -77.751251220703068, -10.801251411437931 ], [ -77.751251220703068, -10.800971031188965 ], [ -77.750968933105412, -10.800972938537541 ], [ -77.750968933105412, -10.800695419311467 ], [ -77.750694274902287, -10.800695419311467 ], [ -77.750694274902287, -10.800972938537541 ], [ -77.750289916992131, -10.800972938537541 ], [ -77.750137329101562, -10.800971031188965 ], [ -77.750137329101562, -10.801251411437931 ], [ -77.749031066894531, -10.801251411437931 ], [ -77.749031066894531, -10.801528930664006 ], [ -77.747085571289062, -10.801528930664006 ], [ -77.747085571289062, -10.800620079040471 ], [ -77.747085571289062, -10.800139427185002 ], [ -77.746803283691406, -10.800139427185002 ], [ -77.746803283691406, -10.799860954284611 ], [ -77.746246337890625, -10.799860954284611 ], [ -77.746246337890625, -10.800139427185002 ], [ -77.745552062988168, -10.800139427185002 ], [ -77.744857788085881, -10.800139427185002 ], [ -77.744857788085881, -10.799583435058594 ], [ -77.744583129882756, -10.799583435058594 ], [ -77.744583129882756, -10.799027442932129 ], [ -77.744857788085881, -10.799027442932129 ], [ -77.744857788085881, -10.798194885253793 ], [ -77.745140075683537, -10.798194885253793 ], [ -77.745140075683537, -10.795415878295898 ], [ -77.745414733886719, -10.795415878295898 ], [ -77.745414733886719, -10.794859886169434 ], [ -77.745697021484375, -10.794859886169434 ], [ -77.745697021484375, -10.794026374816781 ], [ -77.7459716796875, -10.794026374816781 ], [ -77.7459716796875, -10.792083740234318 ], [ -77.745697021484375, -10.792083740234318 ], [ -77.745697021484375, -10.791527748107853 ], [ -77.7459716796875, -10.791527748107853 ], [ -77.7459716796875, -10.790971755981388 ], [ -77.746246337890625, -10.790971755981388 ], [ -77.746246337890625, -10.790138244628906 ], [ -77.746528625488281, -10.790140151977425 ], [ -77.746528625488281, -10.789584159851017 ], [ -77.746803283691406, -10.789584159851017 ], [ -77.746803283691406, -10.789028167724553 ], [ -77.747085571289062, -10.789028167724553 ], [ -77.747085571289062, -10.788472175598088 ], [ -77.747360229492131, -10.788472175598088 ], [ -77.747360229492131, -10.788193702697697 ], [ -77.747642517089787, -10.788193702697697 ], [ -77.747642517089787, -10.787637710571232 ], [ -77.747917175292912, -10.787637710571232 ], [ -77.747917175292912, -10.787360191345158 ], [ -77.748191833496037, -10.787360191345158 ], [ -77.748191833496037, -10.78680419921875 ], [ -77.748474121093693, -10.786806106567383 ], [ -77.748474121093693, -10.786527633666992 ], [ -77.748748779296875, -10.786527633666992 ], [ -77.748748779296875, -10.785971641540527 ], [ -77.749031066894531, -10.785971641540527 ], [ -77.749031066894531, -10.785694122314396 ], [ -77.749580383300781, -10.785694122314396 ], [ -77.749580383300781, -10.785415649413949 ], [ -77.750137329101562, -10.785415649413949 ], [ -77.750137329101562, -10.785138130187931 ], [ -77.750419616699219, -10.785140037536621 ], [ -77.750419616699219, -10.78486156463623 ], [ -77.750968933105412, -10.784859657287541 ], [ -77.750968933105412, -10.784581184387093 ], [ -77.751251220703068, -10.784563064575195 ], [ -77.751251220703068, -10.784305572509766 ], [ -77.751525878906193, -10.784305572509766 ], [ -77.751525878906193, -10.784028053283691 ], [ -77.751808166503906, -10.784028053283691 ], [ -77.751808166503906, -10.783749580383301 ], [ -77.752082824707031, -10.783749580383301 ], [ -77.752082824707031, -10.783472061157227 ], [ -77.752357482910156, -10.783472061157227 ], [ -77.752357482910156, -10.78319263458252 ], [ -77.752639770507812, -10.78319263458252 ], [ -77.752639770507812, -10.782915115356445 ], [ -77.752914428710938, -10.782915115356445 ], [ -77.752914428710938, -10.78235912322998 ], [ -77.753196716308594, -10.78236198425293 ], [ -77.753196716308594, -10.782084465026855 ], [ -77.753471374511719, -10.782084465026855 ], [ -77.753471374511719, -10.781805038452092 ], [ -77.753753662109261, -10.781805038452092 ], [ -77.753753662109261, -10.781249046325684 ], [ -77.754028320312443, -10.781249046325684 ], [ -77.754028320312443, -10.780974388122502 ], [ -77.754302978515568, -10.780974388122502 ], [ -77.754302978515568, -10.780693054199219 ], [ -77.754585266113224, -10.780693054199219 ], [ -77.754585266113224, -10.780137062072754 ], [ -77.754859924316406, -10.78013896942133 ], [ -77.754859924316406, -10.779861450195256 ], [ -77.755142211914062, -10.779861450195256 ], [ -77.755142211914062, -10.779581069946289 ], [ -77.755416870117188, -10.779581069946289 ], [ -77.755416870117188, -10.7790269851684 ], [ -77.755691528320312, -10.7790269851684 ], [ -77.755691528320312, -10.778751373291016 ], [ -77.755973815917969, -10.778751373291016 ], [ -77.755973815917969, -10.778470993041935 ], [ -77.756248474121094, -10.778470993041935 ], [ -77.756248474121094, -10.777915000915527 ], [ -77.75653076171875, -10.77791690826416 ], [ -77.75653076171875, -10.777639389038029 ], [ -77.756805419921761, -10.777639389038029 ], [ -77.756805419921761, -10.777359008789062 ], [ -77.757362365722599, -10.777360916137582 ], [ -77.757362365722599, -10.777083396911564 ], [ -77.757637023925724, -10.777083396911564 ], [ -77.757637023925724, -10.776804924011174 ], [ -77.757919311523381, -10.776804924011174 ], [ -77.757919311523381, -10.776527404785099 ], [ -77.758468627929688, -10.776527404785099 ], [ -77.758468627929688, -10.776248931884709 ], [ -77.758750915527344, -10.776248931884709 ], [ -77.758750915527344, -10.775973320007324 ], [ -77.759025573730469, -10.775973320007324 ], [ -77.759025573730469, -10.775694847106934 ], [ -77.75958251953125, -10.775694847106934 ], [ -77.75958251953125, -10.775417327880859 ], [ -77.759864807128906, -10.775417327880859 ], [ -77.759864807128906, -10.775138854980469 ], [ -77.761253356933537, -10.775138854980469 ], [ -77.761253356933537, -10.774582862854004 ], [ -77.761528015136719, -10.774582862854004 ], [ -77.761528015136719, -10.774305343627816 ], [ -77.762359619140625, -10.774305343627816 ], [ -77.762359619140625, -10.774582862854004 ], [ -77.763473510742131, -10.774582862854004 ], [ -77.763473510742131, -10.774305343627816 ], [ -77.764030456542912, -10.774305343627816 ], [ -77.764030456542912, -10.774026870727539 ], [ -77.764305114746037, -10.774026870727539 ], [ -77.764305114746037, -10.773751258850098 ], [ -77.764862060546875, -10.773751258850098 ], [ -77.764862060546875, -10.773472785949707 ], [ -77.76513671875, -10.773472785949707 ], [ -77.76513671875, -10.773195266723633 ], [ -77.765693664550781, -10.773195266723633 ], [ -77.765693664550781, -10.772916793823242 ], [ -77.765975952148438, -10.772916793823242 ], [ -77.765975952148438, -10.772360801696777 ], [ -77.766250610351562, -10.772360801696777 ], [ -77.766250610351562, -10.771804809570312 ], [ -77.766525268554631, -10.771804809570312 ], [ -77.766525268554631, -10.771250724792424 ], [ -77.766807556152287, -10.771250724792424 ], [ -77.766807556152287, -10.770417213439941 ], [ -77.765975952148438, -10.770417213439941 ], [ -77.765975952148438, -10.770138740539551 ], [ -77.765693664550781, -10.770138740539551 ], [ -77.765693664550781, -10.769584655761605 ], [ -77.765419006347656, -10.769584655761605 ], [ -77.765419006347656, -10.769028663635197 ], [ -77.76513671875, -10.769028663635197 ], [ -77.76513671875, -10.768472671508732 ], [ -77.764862060546875, -10.768472671508732 ], [ -77.764862060546875, -10.767915725707894 ], [ -77.764579772949219, -10.767915725707894 ], [ -77.764579772949219, -10.767359733581486 ], [ -77.763099670410043, -10.767359733581486 ], [ -77.7620849609375, -10.767359733581486 ], [ -77.7620849609375, -10.767082214355412 ], [ -77.761802673339844, -10.767082214355412 ], [ -77.761802673339844, -10.766522407531681 ], [ -77.761802673339844, -10.765137672424316 ], [ -77.7620849609375, -10.765137672424316 ], [ -77.7620849609375, -10.764860153198185 ], [ -77.762359619140625, -10.764860153198185 ], [ -77.762359619140625, -10.764304161071721 ], [ -77.762641906738281, -10.764304161071721 ], [ -77.762641906738281, -10.76402759552002 ], [ -77.762916564941406, -10.76402759552002 ], [ -77.762916564941406, -10.763750076293945 ], [ -77.763191223144474, -10.763750076293945 ], [ -77.763191223144474, -10.763471603393555 ], [ -77.763473510742131, -10.763471603393555 ], [ -77.763473510742131, -10.76319408416748 ], [ -77.763748168945256, -10.76319408416748 ], [ -77.763748168945256, -10.762638092041016 ], [ -77.764030456542912, -10.762638092041016 ], [ -77.764030456542912, -10.762361526489201 ], [ -77.764305114746037, -10.762361526489201 ], [ -77.764305114746037, -10.762082099914551 ], [ -77.764862060546875, -10.762084007263184 ], [ -77.764862060546875, -10.761805534362736 ], [ -77.76513671875, -10.761805534362736 ], [ -77.76513671875, -10.760693550109863 ], [ -77.765419006347656, -10.760693550109863 ], [ -77.765419006347656, -10.760137557983398 ], [ -77.765693664550781, -10.760137557983398 ], [ -77.765693664550781, -10.759860038757324 ], [ -77.766525268554631, -10.7598619461059 ], [ -77.766525268554631, -10.759584426879826 ], [ -77.766807556152287, -10.759584426879826 ], [ -77.766807556152287, -10.759305953979435 ], [ -77.768753051757812, -10.759305953979435 ], [ -77.768753051757812, -10.759028434753418 ], [ -77.769027709960938, -10.759028434753418 ], [ -77.769027709960938, -10.758749961852971 ], [ -77.769302368164062, -10.758749961852971 ], [ -77.769302368164062, -10.758472442626953 ], [ -77.769859313964787, -10.758472442626953 ], [ -77.769859313964787, -10.758193969726562 ], [ -77.770141601562443, -10.758193969726562 ], [ -77.770141601562443, -10.757916450500488 ], [ -77.770416259765568, -10.757916450500488 ], [ -77.770416259765568, -10.757637977600098 ], [ -77.77069091796875, -10.757637977600098 ], [ -77.77069091796875, -10.75708103179926 ], [ -77.770973205566406, -10.75708103179926 ], [ -77.770973205566406, -10.756527900695744 ], [ -77.771247863769531, -10.756527900695744 ], [ -77.771247863769531, -10.755693435668888 ], [ -77.771530151367188, -10.755693435668888 ], [ -77.771530151367188, -10.755140304565316 ], [ -77.771804809570312, -10.755137443542424 ], [ -77.771804809570312, -10.754583358764648 ], [ -77.772636413574105, -10.754583358764648 ], [ -77.772636413574105, -10.754304885864258 ], [ -77.772918701171818, -10.754304885864258 ], [ -77.772918701171818, -10.754027366638184 ], [ -77.773193359374943, -10.754027366638184 ], [ -77.773193359374943, -10.753471374511605 ], [ -77.773475646972599, -10.753471374511605 ], [ -77.773475646972599, -10.753194808959904 ], [ -77.773750305175724, -10.753194808959904 ], [ -77.773750305175724, -10.752917289733887 ], [ -77.774024963378906, -10.752917289733887 ], [ -77.774024963378906, -10.752361297607422 ], [ -77.774307250976562, -10.752361297607422 ], [ -77.774307250976562, -10.751249313354492 ], [ -77.774864196777344, -10.751251220703068 ], [ -77.774864196777344, -10.750695228576603 ], [ -77.775138854980469, -10.750695228576603 ], [ -77.775138854980469, -10.750416755676213 ], [ -77.775413513183594, -10.750416755676213 ], [ -77.775413513183594, -10.749860763549748 ], [ -77.777359008789062, -10.749860763549748 ], [ -77.777359008789062, -10.74958324432373 ], [ -77.777915954589844, -10.74958324432373 ], [ -77.777915954589844, -10.74930477142334 ], [ -77.778190612792969, -10.74930477142334 ], [ -77.7781982421875, -10.749029159545842 ], [ -77.778472900390625, -10.749029159545842 ], [ -77.778472900390625, -10.748748779296875 ], [ -77.77874755859375, -10.748748779296875 ], [ -77.77874755859375, -10.748471260070801 ], [ -77.779029846191406, -10.748473167419377 ], [ -77.779029846191406, -10.748194694518986 ], [ -77.779304504394474, -10.748194694518986 ], [ -77.779304504394474, -10.747915267944336 ], [ -77.779861450195256, -10.747917175292912 ], [ -77.779861450195256, -10.747638702392521 ], [ -77.780136108398381, -10.747638702392521 ], [ -77.780136108398381, -10.747359275817871 ], [ -77.780693054199219, -10.747361183166447 ], [ -77.780693054199219, -10.747082710266056 ], [ -77.780975341796875, -10.747082710266056 ], [ -77.780975341796875, -10.746805191039982 ], [ -77.781524658203125, -10.746805191039982 ], [ -77.781524658203125, -10.746526718139592 ], [ -77.781806945800781, -10.746526718139592 ], [ -77.781806945800781, -10.746249198913574 ], [ -77.782363891601449, -10.746251106262207 ], [ -77.782363891601449, -10.745972633361816 ], [ -77.782638549804631, -10.745972633361816 ], [ -77.782638549804631, -10.745695114135629 ], [ -77.782913208007756, -10.745695114135629 ], [ -77.782913208007756, -10.745416641235352 ], [ -77.783470153808594, -10.745416641235352 ], [ -77.783470153808594, -10.745139122009221 ], [ -77.78375244140625, -10.745139122009221 ], [ -77.78375244140625, -10.744860649108773 ], [ -77.784027099609375, -10.744860649108773 ], [ -77.784027099609375, -10.744583129882756 ], [ -77.7843017578125, -10.744583129882756 ], [ -77.7843017578125, -10.744027137756291 ], [ -77.785140991210938, -10.74402904510498 ], [ -77.785140991210938, -10.74375057220459 ], [ -77.785415649413949, -10.74375057220459 ], [ -77.785415649413949, -10.74347019195551 ], [ -77.785972595214787, -10.743473052978516 ], [ -77.785972595214787, -10.743194580078125 ], [ -77.786247253417912, -10.743194580078125 ], [ -77.786247253417912, -10.742917060852051 ], [ -77.786529541015568, -10.742917060852051 ], [ -77.786529541015568, -10.74263858795166 ], [ -77.78680419921875, -10.74263858795166 ], [ -77.78680419921875, -10.74236011505127 ], [ -77.787086486816406, -10.74236011505127 ], [ -77.787086486816406, -10.742081642150879 ], [ -77.787361145019531, -10.742081642150879 ], [ -77.787361145019531, -10.741804122924805 ], [ -77.787918090820312, -10.741804122924805 ], [ -77.787918090820312, -10.74152946472168 ], [ -77.788475036621094, -10.74152946472168 ], [ -77.788475036621094, -10.74124813079834 ], [ -77.788749694824162, -10.741250991821289 ], [ -77.788749694824162, -10.740971565246525 ], [ -77.789306640624943, -10.740971565246525 ], [ -77.789306640624943, -10.740692138671761 ], [ -77.789581298828068, -10.740694046020508 ], [ -77.789581298828068, -10.74041557312006 ], [ -77.789863586425724, -10.74041557312006 ], [ -77.789863586425724, -10.740138053894043 ], [ -77.790138244628906, -10.740138053894043 ], [ -77.790138244628906, -10.739863395690918 ], [ -77.790695190429688, -10.739863395690918 ], [ -77.790695190429688, -10.739582061767578 ], [ -77.790969848632812, -10.739582061767578 ], [ -77.790969848632812, -10.73930644989008 ], [ -77.791252136230469, -10.73930644989008 ], [ -77.791252136230469, -10.739026069641113 ], [ -77.791526794433594, -10.739027976989689 ], [ -77.791526794433594, -10.738750457763615 ], [ -77.792083740234318, -10.738750457763615 ], [ -77.792083740234318, -10.738470077514648 ], [ -77.792358398437443, -10.738471984863224 ], [ -77.792358398437443, -10.738194465637207 ], [ -77.792640686035099, -10.738194465637207 ], [ -77.792640686035099, -10.73791599273676 ], [ -77.792915344238224, -10.73791599273676 ], [ -77.792915344238224, -10.737638473510742 ], [ -77.793472290039062, -10.737638473510742 ], [ -77.793472290039062, -10.737360000610352 ], [ -77.793746948242188, -10.737360000610352 ], [ -77.793746948242188, -10.737084388732853 ], [ -77.794029235839844, -10.737084388732853 ], [ -77.794029235839844, -10.736804008483887 ], [ -77.794303894042969, -10.736805915832406 ], [ -77.794303894042969, -10.736528396606388 ], [ -77.79486083984375, -10.736528396606388 ], [ -77.79486083984375, -10.736364364624023 ], [ -77.79486083984375, -10.736249923705998 ], [ -77.795135498046818, -10.736249923705998 ], [ -77.795135498046818, -10.735972404479924 ], [ -77.795417785644474, -10.735972404479924 ], [ -77.795417785644474, -10.735693931579533 ], [ -77.795974731445256, -10.735693931579533 ], [ -77.795974731445256, -10.735416412353459 ], [ -77.796249389648438, -10.735416412353459 ], [ -77.796249389648438, -10.735137939453068 ], [ -77.796524047851562, -10.735137939453068 ], [ -77.796524047851562, -10.734581947326603 ], [ -77.796806335449219, -10.734581947326603 ], [ -77.796806335449219, -10.734306335449219 ], [ -77.797080993652344, -10.734306335449219 ], [ -77.797080993652344, -10.734027862548828 ], [ -77.797637939453125, -10.734027862548828 ], [ -77.797637939453125, -10.73375034332264 ], [ -77.797920227050781, -10.73375034332264 ], [ -77.797920227050781, -10.733471870422363 ], [ -77.798469543456974, -10.733471870422363 ], [ -77.798469543456974, -10.733194351196232 ], [ -77.798751831054631, -10.733194351196232 ], [ -77.798751831054631, -10.732915878295785 ], [ -77.799026489257756, -10.732915878295785 ], [ -77.799026489257756, -10.732640266418457 ], [ -77.799583435058594, -10.732640266418457 ], [ -77.799583435058594, -10.732361793518066 ], [ -77.799858093261719, -10.732361793518066 ], [ -77.799858093261719, -10.732082366943303 ], [ -77.800140380859375, -10.732084274291992 ], [ -77.800140380859375, -10.731528282165527 ], [ -77.8004150390625, -10.731528282165527 ], [ -77.8004150390625, -10.730972290039062 ], [ -77.800697326660156, -10.730972290039062 ], [ -77.800697326660156, -10.730695724487248 ], [ -77.800971984863281, -10.730695724487248 ], [ -77.800971984863281, -10.730416297912484 ], [ -77.801246643066293, -10.730416297912484 ], [ -77.801246643066293, -10.729859352111816 ], [ -77.801528930664006, -10.729862213134766 ], [ -77.801528930664006, -10.729583740234375 ], [ -77.801803588867131, -10.729583740234375 ], [ -77.801803588867131, -10.729306221008301 ], [ -77.802085876464787, -10.729306221008301 ], [ -77.802085876464787, -10.72902774810791 ], [ -77.802360534667912, -10.72902774810791 ], [ -77.802360534667912, -10.72874927520752 ], [ -77.802635192871094, -10.72874927520752 ], [ -77.802635192871094, -10.728470802307072 ], [ -77.80291748046875, -10.728470802307072 ], [ -77.80291748046875, -10.728193283081055 ], [ -77.803192138671875, -10.728193283081055 ], [ -77.803192138671875, -10.727917671203556 ], [ -77.803474426269531, -10.727917671203556 ], [ -77.803474426269531, -10.72763729095459 ], [ -77.803749084472656, -10.727640151977482 ], [ -77.803749084472656, -10.727083206176701 ], [ -77.804031372070312, -10.727083206176701 ], [ -77.804031372070312, -10.72680473327631 ], [ -77.804306030273438, -10.72680473327631 ], [ -77.804306030273438, -10.726527214050236 ], [ -77.804580688476506, -10.726527214050236 ], [ -77.804580688476506, -10.726248741149846 ], [ -77.804862976074162, -10.726248741149846 ], [ -77.804862976074162, -10.725971221923771 ], [ -77.805137634277287, -10.725971221923771 ], [ -77.805137634277287, -10.72569465637207 ], [ -77.805419921874943, -10.72569465637207 ], [ -77.805419921874943, -10.724859237670898 ], [ -77.805694580078068, -10.724861145019418 ], [ -77.805694580078068, -10.724026679992562 ], [ -77.805419921874943, -10.724026679992562 ], [ -77.805419921874943, -10.723749160766545 ], [ -77.805137634277287, -10.723749160766545 ], [ -77.805137634277287, -10.722639083862305 ], [ -77.805419921874943, -10.722639083862305 ], [ -77.805419921874943, -10.721804618835449 ], [ -77.805694580078068, -10.721804618835449 ], [ -77.805694580078068, -10.720694541931152 ], [ -77.80596923828125, -10.720694541931152 ], [ -77.80596923828125, -10.719861030578613 ], [ -77.805694580078068, -10.719861030578613 ], [ -77.805694580078068, -10.717082977294922 ], [ -77.80596923828125, -10.717082977294922 ], [ -77.80596923828125, -10.716526031494084 ], [ -77.806251525878906, -10.716528892517033 ], [ -77.806251525878906, -10.715695381164494 ], [ -77.806526184082031, -10.715695381164494 ], [ -77.806526184082031, -10.712916374206429 ], [ -77.806808471679688, -10.712916374206429 ], [ -77.806808471679688, -10.710694313049316 ], [ -77.807083129882812, -10.710694313049316 ], [ -77.807083129882812, -10.709028244018555 ], [ -77.807357788085938, -10.709028244018555 ], [ -77.807357788085938, -10.707916259765625 ], [ -77.807640075683594, -10.707916259765625 ], [ -77.807640075683594, -10.707083702087346 ], [ -77.807914733886662, -10.707083702087346 ], [ -77.807914733886662, -10.706250190734806 ], [ -77.808197021484318, -10.706250190734806 ], [ -77.808197021484318, -10.705415725707951 ], [ -77.808471679687443, -10.705415725707951 ], [ -77.808471679687443, -10.704859733581543 ], [ -77.808746337890568, -10.704859733581543 ], [ -77.808746337890568, -10.704584121704045 ], [ -77.809028625488281, -10.704584121704045 ], [ -77.809028625488281, -10.70402812957758 ], [ -77.809303283691406, -10.70402812957758 ], [ -77.809303283691406, -10.703749656677189 ], [ -77.809585571289062, -10.703749656677189 ], [ -77.809585571289062, -10.703469276428223 ], [ -77.809860229492188, -10.703469276428223 ], [ -77.809860229492188, -10.702915191650334 ], [ -77.810142517089844, -10.70291805267334 ], [ -77.810142517089844, -10.702639579772949 ], [ -77.810417175292969, -10.702639579772949 ], [ -77.810417175292969, -10.702083587646484 ], [ -77.810691833496094, -10.702083587646484 ], [ -77.810691833496094, -10.701526641845703 ], [ -77.810974121093636, -10.701526641845703 ], [ -77.810974121093636, -10.700974464416504 ], [ -77.811248779296818, -10.700974464416504 ], [ -77.811248779296818, -10.700418472290039 ], [ -77.811531066894474, -10.700418472290039 ], [ -77.811531066894474, -10.699860572814885 ], [ -77.811805725097599, -10.699860572814885 ], [ -77.811805725097599, -10.699304580688477 ], [ -77.812080383300781, -10.699304580688477 ], [ -77.812080383300781, -10.699027061462402 ], [ -77.812362670898438, -10.699027061462402 ], [ -77.812362670898438, -10.698748588562012 ], [ -77.812637329101562, -10.698748588562012 ], [ -77.812637329101562, -10.698471069335938 ], [ -77.812919616699219, -10.698471069335938 ], [ -77.812919616699219, -10.698195457458439 ], [ -77.813194274902344, -10.698195457458439 ], [ -77.813194274902344, -10.697915077209473 ], [ -77.813468933105469, -10.697916984558049 ], [ -77.813468933105469, -10.697639465332031 ], [ -77.814025878906136, -10.697639465332031 ], [ -77.814025878906136, -10.697359085083008 ], [ -77.814308166503849, -10.697360992431584 ], [ -77.814308166503849, -10.697083473205566 ], [ -77.814582824706974, -10.697083473205566 ], [ -77.814582824706974, -10.696805000305176 ], [ -77.814857482910099, -10.696805000305176 ], [ -77.814857482910099, -10.696526527404728 ], [ -77.815139770507756, -10.696526527404728 ], [ -77.815139770507756, -10.696249008178711 ], [ -77.815414428710938, -10.696249008178711 ], [ -77.815414428710938, -10.695973396301213 ], [ -77.815696716308594, -10.695973396301213 ], [ -77.815696716308594, -10.695693016052246 ], [ -77.815971374511719, -10.695693016052246 ], [ -77.815971374511719, -10.695417404174748 ], [ -77.816253662109375, -10.695417404174748 ], [ -77.816253662109375, -10.695138931274357 ], [ -77.8165283203125, -10.695138931274357 ], [ -77.8165283203125, -10.694861412048283 ], [ -77.817085266113281, -10.694861412048283 ], [ -77.817085266113281, -10.694582939147892 ], [ -77.817359924316349, -10.694582939147892 ], [ -77.817359924316349, -10.694305419921818 ], [ -77.817642211914006, -10.694305419921818 ], [ -77.817642211914006, -10.694038391113224 ], [ -77.817916870117131, -10.694026947021428 ], [ -77.817916870117131, -10.693751335144043 ], [ -77.818473815917912, -10.693751335144043 ], [ -77.818473815917912, -10.693470954894963 ], [ -77.818748474121094, -10.693472862243652 ], [ -77.818748474121094, -10.693195343017464 ], [ -77.81903076171875, -10.693195343017464 ], [ -77.81903076171875, -10.692916870117188 ], [ -77.819305419921875, -10.692916870117188 ], [ -77.819305419921875, -10.692639350891056 ], [ -77.819862365722656, -10.692639350891056 ], [ -77.819862365722656, -10.692360877990609 ], [ -77.820137023925781, -10.692360877990609 ], [ -77.820137023925781, -10.692083358764592 ], [ -77.820419311523438, -10.692083358764592 ], [ -77.820419311523438, -10.691806793212891 ], [ -77.820693969726506, -10.691806793212891 ], [ -77.820693969726506, -10.691527366638127 ], [ -77.820968627929631, -10.691527366638127 ], [ -77.820968627929631, -10.691250801086426 ], [ -77.821250915527287, -10.691250801086426 ], [ -77.821250915527287, -10.690973281860352 ], [ -77.821525573730412, -10.690973281860352 ], [ -77.821525573730412, -10.690694808959961 ], [ -77.821807861328125, -10.690694808959961 ], [ -77.821807861328125, -10.690417289733887 ], [ -77.82208251953125, -10.690417289733887 ], [ -77.82208251953125, -10.690138816833496 ], [ -77.822364807128906, -10.690138816833496 ], [ -77.822364807128906, -10.689861297607308 ], [ -77.822639465332031, -10.689861297607308 ], [ -77.822639465332031, -10.689584732055607 ], [ -77.822914123535156, -10.689584732055607 ], [ -77.822914123535156, -10.689304351806641 ], [ -77.823196411132812, -10.689304351806641 ], [ -77.823196411132812, -10.689028739929199 ], [ -77.823471069335938, -10.689028739929199 ], [ -77.823471069335938, -10.688751220703125 ], [ -77.82375335693348, -10.688751220703125 ], [ -77.82375335693348, -10.688472747802734 ], [ -77.824028015136662, -10.688472747802734 ], [ -77.824028015136662, -10.68819522857666 ], [ -77.824302673339787, -10.68819522857666 ], [ -77.824302673339787, -10.687915802001896 ], [ -77.824584960937443, -10.687915802001896 ], [ -77.824584960937443, -10.687638282775879 ], [ -77.824859619140625, -10.687638282775879 ], [ -77.824859619140625, -10.687359809875488 ], [ -77.825141906738281, -10.687359809875488 ], [ -77.825141906738281, -10.687082290649414 ], [ -77.825691223144531, -10.687082290649414 ], [ -77.825691223144531, -10.686806678771916 ], [ -77.825973510742188, -10.686806678771916 ], [ -77.825973510742188, -10.686528205871525 ], [ -77.826248168945312, -10.686528205871525 ], [ -77.826248168945312, -10.686249732971135 ], [ -77.826530456542969, -10.686249732971135 ], [ -77.826530456542969, -10.68597221374506 ], [ -77.82680511474598, -10.68597221374506 ], [ -77.82680511474598, -10.68569374084467 ], [ -77.827079772949162, -10.68569374084467 ], [ -77.827079772949162, -10.685416221618596 ], [ -77.827362060546818, -10.685416221618596 ], [ -77.827362060546818, -10.685137748718205 ], [ -77.827636718749943, -10.685137748718205 ], [ -77.827636718749943, -10.684860229492188 ], [ -77.827919006347599, -10.684860229492188 ], [ -77.827919006347599, -10.68458366394043 ], [ -77.828193664550781, -10.68458366394043 ], [ -77.828193664550781, -10.684304237365723 ], [ -77.828750610351562, -10.684306144714242 ], [ -77.828750610351562, -10.684027671813965 ], [ -77.829025268554688, -10.684027671813965 ], [ -77.829025268554688, -10.683471679687386 ], [ -77.829307556152344, -10.683471679687386 ], [ -77.829307556152344, -10.683194160461369 ], [ -77.829864501953125, -10.683194160461369 ], [ -77.829864501953125, -10.682915687560978 ], [ -77.830139160156193, -10.682915687560978 ], [ -77.830139160156193, -10.682638168334904 ], [ -77.830413818359318, -10.682638168334904 ], [ -77.830413818359318, -10.682359695434513 ], [ -77.830696105956974, -10.682359695434513 ], [ -77.830696105956974, -10.682082176208439 ], [ -77.831253051757756, -10.682082176208439 ], [ -77.831253051757756, -10.681528091430664 ], [ -77.831527709960938, -10.681528091430664 ], [ -77.831527709960938, -10.681249618530273 ], [ -77.832084655761719, -10.681249618530273 ], [ -77.832084655761719, -10.680972099304199 ], [ -77.832359313964844, -10.680972099304199 ], [ -77.832359313964844, -10.680693626403809 ], [ -77.8326416015625, -10.680693626403809 ], [ -77.8326416015625, -10.680416107177621 ], [ -77.832916259765625, -10.680418014526367 ], [ -77.832916259765625, -10.680137634277344 ], [ -77.833190917968693, -10.680137634277344 ], [ -77.833190917968693, -10.679860115051213 ], [ -77.833473205566349, -10.679862022399902 ], [ -77.833473205566349, -10.679583549499512 ], [ -77.833747863769474, -10.679583549499512 ], [ -77.833747863769474, -10.679306030273438 ], [ -77.834030151367131, -10.679306030273438 ], [ -77.834030151367131, -10.679027557373047 ], [ -77.834304809570256, -10.679027557373047 ], [ -77.834304809570256, -10.678750038146973 ], [ -77.834587097167969, -10.678750038146973 ], [ -77.834587097167969, -10.678471565246582 ], [ -77.834861755371094, -10.678471565246582 ], [ -77.834861755371094, -10.678194046020508 ], [ -77.835136413574219, -10.678194046020508 ], [ -77.835136413574219, -10.677915573120117 ], [ -77.835418701171875, -10.677915573120117 ], [ -77.835418701171875, -10.677638053894043 ], [ -77.835693359375, -10.677638053894043 ], [ -77.835693359375, -10.677081108093262 ], [ -77.835975646972656, -10.677083969116211 ], [ -77.835975646972656, -10.676806449890137 ], [ -77.836250305175781, -10.676806449890137 ], [ -77.836250305175781, -10.676527976989746 ], [ -77.836524963378849, -10.676527976989746 ], [ -77.836524963378849, -10.676250457763672 ], [ -77.836807250976506, -10.676250457763672 ], [ -77.836807250976506, -10.675971984863281 ], [ -77.837081909179631, -10.675971984863281 ], [ -77.837081909179631, -10.675692558288517 ], [ -77.837364196777287, -10.675692558288517 ], [ -77.837364196777287, -10.6754150390625 ], [ -77.837638854980469, -10.675417900085392 ], [ -77.837638854980469, -10.675136566162053 ], [ -77.837913513183594, -10.675136566162053 ], [ -77.837913513183594, -10.674859046936035 ], [ -77.83819580078125, -10.674861907958928 ], [ -77.83819580078125, -10.67458438873291 ], [ -77.838470458984375, -10.67458438873291 ], [ -77.838470458984375, -10.674304962158146 ], [ -77.838752746582031, -10.674304962158146 ], [ -77.838752746582031, -10.674027442932072 ], [ -77.839027404785156, -10.674027442932072 ], [ -77.839027404785156, -10.673748970031681 ], [ -77.839302062988281, -10.673748970031681 ], [ -77.839302062988281, -10.673471450805607 ], [ -77.839584350585824, -10.673471450805607 ], [ -77.839584350585824, -10.673195838928109 ], [ -77.840141296386662, -10.673195838928109 ], [ -77.840141296386662, -10.672917366027832 ], [ -77.840415954589787, -10.672917366027832 ], [ -77.840415954589787, -10.672636985778752 ], [ -77.840690612792969, -10.672638893127441 ], [ -77.840698242187443, -10.672361373901254 ], [ -77.840972900390625, -10.672361373901254 ], [ -77.840972900390625, -10.672080993652344 ], [ -77.841529846191406, -10.672082901000977 ], [ -77.841529846191406, -10.671805381774846 ], [ -77.841804504394531, -10.671805381774846 ], [ -77.841804504394531, -10.671526908874398 ], [ -77.842086791992188, -10.671526908874398 ], [ -77.842086791992188, -10.67125129699707 ], [ -77.842361450195312, -10.67125129699707 ], [ -77.842361450195312, -10.67097091674799 ], [ -77.842636108398324, -10.67097091674799 ], [ -77.842636108398324, -10.670695304870605 ], [ -77.842918395996037, -10.670695304870605 ], [ -77.842918395996037, -10.670416831970215 ], [ -77.843193054199162, -10.670416831970215 ], [ -77.843193054199162, -10.670139312744141 ], [ -77.843475341796818, -10.670139312744141 ], [ -77.843475341796818, -10.66986083984375 ], [ -77.84375, -10.66986083984375 ], [ -77.84375, -10.669304847717285 ], [ -77.844024658203125, -10.669304847717285 ], [ -77.844024658203125, -10.669027328491211 ], [ -77.844306945800781, -10.669027328491211 ], [ -77.844306945800781, -10.66874885559082 ], [ -77.844581604003906, -10.66874885559082 ], [ -77.844581604003906, -10.668473243713379 ], [ -77.844863891601562, -10.668473243713379 ], [ -77.844863891601562, -10.668194770812988 ], [ -77.845138549804688, -10.668194770812988 ], [ -77.845138549804688, -10.667915344238224 ], [ -77.845413208007812, -10.667917251586914 ], [ -77.845413208007812, -10.667638778686523 ], [ -77.845695495605469, -10.667638778686523 ], [ -77.845695495605469, -10.667361259460449 ], [ -77.845970153808537, -10.667361259460449 ], [ -77.845970153808537, -10.666805267333984 ], [ -77.846252441406193, -10.666805267333984 ], [ -77.846252441406193, -10.666526794433594 ], [ -77.846527099609318, -10.666526794433594 ], [ -77.846527099609318, -10.66624927520752 ], [ -77.846801757812443, -10.666251182556096 ], [ -77.846801757812443, -10.665970802307129 ], [ -77.847084045410099, -10.665970802307129 ], [ -77.847084045410099, -10.665695190429631 ], [ -77.847358703613281, -10.665695190429631 ], [ -77.847358703613281, -10.66541671752924 ], [ -77.847640991210938, -10.66541671752924 ], [ -77.847640991210938, -10.664860725402775 ], [ -77.847915649414062, -10.664860725402775 ], [ -77.847915649414062, -10.664580345153809 ], [ -77.848197937011719, -10.664583206176758 ], [ -77.848197937011719, -10.664304733276367 ], [ -77.848472595214844, -10.664304733276367 ], [ -77.848472595214844, -10.664029121398869 ], [ -77.848747253417969, -10.664029121398869 ], [ -77.848747253417969, -10.663473129272404 ], [ -77.849029541015625, -10.663473129272404 ], [ -77.849029541015625, -10.663194656372013 ], [ -77.849304199218693, -10.663194656372013 ], [ -77.849304199218693, -10.662914276123047 ], [ -77.849586486816349, -10.662914276123047 ], [ -77.849586486816349, -10.662358283996582 ], [ -77.849861145019474, -10.662361145019474 ], [ -77.849861145019474, -10.662084579467773 ], [ -77.850135803222599, -10.662084579467773 ], [ -77.850135803222599, -10.661528587341309 ], [ -77.850418090820312, -10.661528587341309 ], [ -77.850418090820312, -10.661248207092228 ], [ -77.850692749023438, -10.661251068115121 ], [ -77.850692749023438, -10.660972595214844 ], [ -77.850975036621094, -10.660972595214844 ], [ -77.850975036621094, -10.660692214965763 ], [ -77.851249694824219, -10.660692214965763 ], [ -77.851249694824219, -10.660138130187988 ], [ -77.851524353027344, -10.660138130187988 ], [ -77.851524353027344, -10.659863471984863 ], [ -77.851806640625, -10.659859657287598 ], [ -77.851806640625, -10.65958213806141 ], [ -77.852081298828125, -10.65958213806141 ], [ -77.852081298828125, -10.659305572509709 ], [ -77.852363586425668, -10.659305572509709 ], [ -77.852363586425668, -10.659026145935002 ], [ -77.852638244628849, -10.659026145935002 ], [ -77.852638244628849, -10.658470153808537 ], [ -77.852912902831974, -10.658472061157227 ], [ -77.852912902831974, -10.658193588256836 ], [ -77.853195190429631, -10.658193588256836 ], [ -77.853195190429631, -10.657916069030762 ], [ -77.853469848632812, -10.657916069030762 ], [ -77.853469848632812, -10.657637596130371 ], [ -77.853752136230469, -10.657637596130371 ], [ -77.853752136230469, -10.657360076904297 ], [ -77.854026794433594, -10.657360076904297 ], [ -77.854026794433594, -10.656804084777832 ], [ -77.85430908203125, -10.656805992126408 ], [ -77.85430908203125, -10.656528472900391 ], [ -77.854583740234375, -10.656528472900391 ], [ -77.854583740234375, -10.65625 ], [ -77.8548583984375, -10.65625 ], [ -77.8548583984375, -10.655971527099553 ], [ -77.855140686035156, -10.655971527099553 ], [ -77.855140686035156, -10.655694007873535 ], [ -77.855415344238168, -10.655694007873535 ], [ -77.855415344238168, -10.65513801574707 ], [ -77.855697631835881, -10.65513801574707 ], [ -77.855697631835881, -10.654862403869572 ], [ -77.855972290039006, -10.654862403869572 ], [ -77.855972290039006, -10.654582023620605 ], [ -77.856246948242131, -10.654582023620605 ], [ -77.856246948242131, -10.654027938842717 ], [ -77.856529235839787, -10.654027938842717 ], [ -77.856529235839787, -10.653750419616642 ], [ -77.856803894042969, -10.653750419616642 ], [ -77.856803894042969, -10.653471946716252 ], [ -77.857086181640625, -10.653471946716252 ], [ -77.857086181640625, -10.652932167053223 ], [ -77.85736083984375, -10.652915954589787 ], [ -77.85736083984375, -10.65263843536377 ], [ -77.857635498046875, -10.65263843536377 ], [ -77.857635498046875, -10.652359962463379 ], [ -77.857917785644531, -10.652361869812012 ], [ -77.857917785644531, -10.651805877685433 ], [ -77.858192443847656, -10.651805877685433 ], [ -77.858192443847656, -10.651528358459416 ], [ -77.858474731445312, -10.651528358459416 ], [ -77.858474731445312, -10.651249885559025 ], [ -77.858749389648381, -10.651249885559025 ], [ -77.858749389648381, -10.65069580078125 ], [ -77.859024047851506, -10.65069580078125 ], [ -77.859024047851506, -10.650416374206486 ], [ -77.859306335449162, -10.650416374206486 ], [ -77.859306335449162, -10.650139808654785 ], [ -77.859580993652287, -10.650139808654785 ], [ -77.859580993652287, -10.64958381652832 ], [ -77.859863281249943, -10.64958381652832 ], [ -77.859863281249943, -10.649306297302132 ], [ -77.860137939453125, -10.649306297302132 ], [ -77.860137939453125, -10.649027824401855 ], [ -77.860420227050781, -10.649027824401855 ], [ -77.860420227050781, -10.648470878601074 ], [ -77.860694885253906, -10.648470878601074 ], [ -77.860694885253906, -10.648193359375 ], [ -77.860969543457031, -10.648193359375 ], [ -77.860969543457031, -10.647917747497559 ], [ -77.861251831054688, -10.647917747497559 ], [ -77.861251831054688, -10.647361755371094 ], [ -77.861526489257812, -10.647361755371094 ], [ -77.861526489257812, -10.647083282470703 ], [ -77.861808776855469, -10.647083282470703 ], [ -77.861808776855469, -10.646804809570312 ], [ -77.862083435058537, -10.646804809570312 ], [ -77.862083435058537, -10.646248817443848 ], [ -77.862358093261662, -10.646248817443848 ], [ -77.862358093261662, -10.645971298217773 ], [ -77.862640380859318, -10.645971298217773 ], [ -77.862640380859318, -10.645694732665959 ], [ -77.862915039062443, -10.645694732665959 ], [ -77.862915039062443, -10.645415306091309 ], [ -77.863197326660156, -10.645415306091309 ], [ -77.863197326660156, -10.645138740539494 ], [ -77.863471984863281, -10.645138740539494 ], [ -77.863471984863281, -10.644582748413029 ], [ -77.863746643066406, -10.644582748413029 ], [ -77.863746643066406, -10.644303321838379 ], [ -77.864028930664062, -10.644305229187012 ], [ -77.864028930664062, -10.644026756286564 ], [ -77.864303588867188, -10.644026756286564 ], [ -77.864303588867188, -10.643749237060547 ], [ -77.864585876464844, -10.643749237060547 ], [ -77.864585876464844, -10.643472671508789 ], [ -77.864860534667969, -10.643470764160156 ], [ -77.864860534667969, -10.642916679382211 ], [ -77.865135192871037, -10.642916679382211 ], [ -77.865135192871037, -10.642639160156193 ], [ -77.865417480468693, -10.642639160156193 ], [ -77.865417480468693, -10.642360687255803 ], [ -77.865692138671818, -10.642360687255803 ], [ -77.865692138671818, -10.642083168029728 ], [ -77.865974426269474, -10.642083168029728 ], [ -77.865974426269474, -10.641804695129338 ], [ -77.866249084472656, -10.641804695129338 ], [ -77.866249084472656, -10.641248703002873 ], [ -77.866531372070312, -10.641248703002873 ], [ -77.866531372070312, -10.640138626098633 ], [ -77.866806030273438, -10.640138626098633 ], [ -77.866806030273438, -10.639861106872445 ], [ -77.867080688476562, -10.639861106872445 ], [ -77.867080688476562, -10.639582633972168 ], [ -77.867637634277344, -10.639582633972168 ], [ -77.867637634277344, -10.639026641845589 ], [ -77.867919921875, -10.639026641845589 ], [ -77.867919921875, -10.638472557067871 ], [ -77.868194580078011, -10.638472557067871 ], [ -77.868194580078011, -10.637916564941406 ], [ -77.868469238281193, -10.637916564941406 ], [ -77.868469238281193, -10.637639045715332 ], [ -77.869308471679631, -10.637639045715332 ], [ -77.869308471679631, -10.637360572814941 ], [ -77.869583129882812, -10.637360572814941 ], [ -77.869583129882812, -10.637083053588867 ], [ -77.869857788085938, -10.637083053588867 ], [ -77.869857788085938, -10.636804580688477 ], [ -77.870140075683594, -10.636804580688477 ], [ -77.870140075683594, -10.636527061462289 ], [ -77.870414733886719, -10.636528968811035 ], [ -77.870414733886719, -10.636247634887695 ], [ -77.870697021484375, -10.636247634887695 ], [ -77.870697021484375, -10.635970115661621 ], [ -77.8709716796875, -10.63597297668457 ], [ -77.8709716796875, -10.635139465332031 ], [ -77.871246337890511, -10.635139465332031 ], [ -77.871246337890511, -10.634581565856877 ], [ -77.871528625488224, -10.634581565856877 ], [ -77.871528625488224, -10.634304046630859 ], [ -77.872085571289006, -10.634306907653752 ], [ -77.872085571289006, -10.634029388427734 ], [ -77.872360229492131, -10.634029388427734 ], [ -77.872360229492131, -10.633748054504395 ], [ -77.872642517089787, -10.633750915527287 ], [ -77.872642517089787, -10.632916450500431 ], [ -77.872917175292969, -10.632916450500431 ], [ -77.872917175292969, -10.632363319396916 ], [ -77.873748779296875, -10.632363319396916 ], [ -77.873748779296875, -10.630970001220703 ], [ -77.874305725097656, -10.630971908569222 ], [ -77.874305725097656, -10.630694389343205 ], [ -77.874580383300724, -10.630694389343205 ], [ -77.874580383300724, -10.630415916442814 ], [ -77.874862670898381, -10.630415916442814 ], [ -77.874862670898381, -10.629859924316349 ], [ -77.875137329101506, -10.629859924316349 ], [ -77.875137329101506, -10.629584312438965 ], [ -77.875419616699162, -10.629584312438965 ], [ -77.875419616699162, -10.629305839538574 ], [ -77.875694274902287, -10.629305839538574 ], [ -77.875694274902287, -10.628749847412109 ], [ -77.875968933105469, -10.628749847412109 ], [ -77.875968933105469, -10.628472328186035 ], [ -77.876251220703125, -10.628472328186035 ], [ -77.876251220703125, -10.628193855285645 ], [ -77.87652587890625, -10.628193855285645 ], [ -77.87652587890625, -10.627916336059457 ], [ -77.876808166503906, -10.627916336059457 ], [ -77.876808166503906, -10.627360343933049 ], [ -77.877082824707031, -10.627362251281738 ], [ -77.877082824707031, -10.627083778381348 ], [ -77.877357482910156, -10.627083778381348 ], [ -77.877357482910156, -10.626806259155273 ], [ -77.877639770507812, -10.626806259155273 ], [ -77.877639770507812, -10.626250267028809 ], [ -77.877914428710881, -10.626250267028809 ], [ -77.877914428710881, -10.625694274902344 ], [ -77.878196716308537, -10.625694274902344 ], [ -77.878196716308537, -10.625138282775879 ], [ -77.878471374511662, -10.625138282775879 ], [ -77.878471374511662, -10.6245822906493 ], [ -77.878753662109318, -10.624584197998047 ], [ -77.878753662109318, -10.624305725097599 ], [ -77.8790283203125, -10.624305725097599 ], [ -77.8790283203125, -10.624025344848633 ], [ -77.879302978515625, -10.624028205871582 ], [ -77.879302978515625, -10.623749732971191 ], [ -77.879585266113281, -10.623749732971191 ], [ -77.879585266113281, -10.623472213745117 ], [ -77.879859924316406, -10.623472213745117 ], [ -77.879859924316406, -10.622916221618652 ], [ -77.880142211914062, -10.622916221618652 ], [ -77.880142211914062, -10.622359275817871 ], [ -77.880416870117188, -10.622362136840763 ], [ -77.880416870117188, -10.622083663940373 ], [ -77.880691528320312, -10.622083663940373 ], [ -77.880691528320312, -10.621803283691406 ], [ -77.880973815917855, -10.621806144714299 ], [ -77.880973815917855, -10.621527671813908 ], [ -77.881530761718693, -10.621527671813908 ], [ -77.881530761718693, -10.620973587036133 ], [ -77.881805419921818, -10.620973587036133 ], [ -77.881805419921818, -10.620693206787053 ], [ -77.882080078125, -10.620693206787053 ], [ -77.882080078125, -10.619860649108887 ], [ -77.882362365722656, -10.619860649108887 ], [ -77.882362365722656, -10.619027137756234 ], [ -77.882637023925781, -10.619027137756234 ], [ -77.882637023925781, -10.618194580078125 ], [ -77.882919311523438, -10.618194580078125 ], [ -77.882919311523438, -10.61763858795166 ], [ -77.883193969726562, -10.61763858795166 ], [ -77.883193969726562, -10.617359161376896 ], [ -77.883468627929688, -10.617361068725586 ], [ -77.883468627929688, -10.617082595825195 ], [ -77.883750915527344, -10.617082595825195 ], [ -77.883750915527344, -10.616805076599121 ], [ -77.884025573730355, -10.616805076599121 ], [ -77.884025573730355, -10.61652660369873 ], [ -77.884307861328068, -10.61652660369873 ], [ -77.884307861328068, -10.615973472595215 ], [ -77.884582519531193, -10.615973472595215 ], [ -77.884582519531193, -10.615693092346191 ], [ -77.884864807128849, -10.615693092346191 ], [ -77.884864807128849, -10.615416526794377 ], [ -77.885139465331974, -10.615416526794377 ], [ -77.885139465331974, -10.615139007568359 ], [ -77.885414123535156, -10.615139007568359 ], [ -77.885414123535156, -10.614860534667969 ], [ -77.885696411132812, -10.614860534667969 ], [ -77.885696411132812, -10.614304542541504 ], [ -77.885971069335938, -10.614304542541504 ], [ -77.885971069335938, -10.613751411437931 ], [ -77.886253356933594, -10.613748550415039 ], [ -77.886253356933594, -10.613195419311467 ], [ -77.886528015136719, -10.613195419311467 ], [ -77.886528015136719, -10.612360954284611 ], [ -77.886253356933594, -10.612360954284611 ], [ -77.886253356933594, -10.611527442932129 ], [ -77.885971069335938, -10.611527442932129 ], [ -77.885650634765625, -10.611519813537598 ], [ -77.884910583496094, -10.611508369445801 ], [ -77.883255004882756, -10.610870361328068 ], [ -77.879852294921875, -10.60840892791748 ], [ -77.876380920410099, -10.605191230773869 ], [ -77.872558593749943, -10.600978851318246 ], [ -77.869132995605412, -10.596121788024902 ], [ -77.864677429199219, -10.590862274169865 ], [ -77.863067626953125, -10.58728981018055 ], [ -77.859207153320256, -10.580631256103459 ], [ -77.857475280761719, -10.57805347442627 ], [ -77.855903625488281, -10.576369285583496 ], [ -77.853797912597656, -10.574887275695801 ], [ -77.848991394042912, -10.573424339294434 ], [ -77.847015380859318, -10.572565078735352 ], [ -77.843238830566406, -10.569482803344727 ], [ -77.839973449707031, -10.567794799804688 ], [ -77.836967468261719, -10.566946983337402 ], [ -77.834259033203125, -10.566727638244572 ], [ -77.831069946289006, -10.567424774169922 ], [ -77.829124450683594, -10.568641662597599 ], [ -77.827911376953125, -10.570098876953125 ], [ -77.825996398925781, -10.572873115539551 ], [ -77.824806213378906, -10.575313568115178 ], [ -77.82379150390625, -10.576359748840275 ], [ -77.819915771484318, -10.579124450683537 ], [ -77.814743041992188, -10.581146240234375 ], [ -77.81298828125, -10.582178115844727 ], [ -77.812309265136605, -10.582262992858773 ], [ -77.810722351074219, -10.581915855407715 ], [ -77.807876586914062, -10.583493232727051 ], [ -77.8031005859375, -10.58452129364008 ], [ -77.799003601074219, -10.58382606506342 ], [ -77.793800354003849, -10.584088325500431 ], [ -77.792510986328125, -10.58394718170166 ], [ -77.789093017578125, -10.580239295959473 ], [ -77.788619995117188, -10.578831672668457 ], [ -77.787277221679688, -10.576486587524357 ], [ -77.786018371582031, -10.573075294494629 ], [ -77.784881591796875, -10.571917533874512 ], [ -77.783821105957031, -10.571974754333496 ], [ -77.780487060546875, -10.573483467102051 ], [ -77.776969909667969, -10.573759078979492 ], [ -77.776069641113168, -10.573442459106388 ], [ -77.772697448730412, -10.57141208648676 ], [ -77.77069091796875, -10.569603919982853 ], [ -77.770698547363224, -10.56879997253418 ], [ -77.77362060546875, -10.56638240814209 ], [ -77.774147033691349, -10.565444946289062 ], [ -77.774421691894474, -10.55925464630127 ], [ -77.775009155273381, -10.555120468139592 ], [ -77.7747802734375, -10.552983283996582 ], [ -77.773895263671875, -10.551922798156738 ], [ -77.773567199706974, -10.550617218017521 ], [ -77.773651123046818, -10.549684524536076 ], [ -77.774444580078068, -10.548269271850529 ], [ -77.774482727050781, -10.547580718994141 ], [ -77.773384094238224, -10.54605579376215 ], [ -77.773056030273438, -10.545173645019474 ], [ -77.773147583007812, -10.543285369873047 ], [ -77.773735046386719, -10.541931152343693 ], [ -77.773826599121094, -10.541129112243596 ], [ -77.772712707519474, -10.53765964508051 ], [ -77.772743225097656, -10.535508155822754 ], [ -77.773933410644531, -10.533097267150765 ], [ -77.774093627929688, -10.532307624816838 ], [ -77.772239685058537, -10.527374267578125 ], [ -77.771797180175781, -10.525552749633732 ], [ -77.771858215331974, -10.522443771362191 ], [ -77.77276611328125, -10.51823711395258 ], [ -77.771949768066349, -10.515939712524357 ], [ -77.771751403808537, -10.513944625854435 ], [ -77.772529602050724, -10.512664794921761 ], [ -77.773223876953125, -10.512017250060978 ], [ -77.77685546875, -10.510519981384221 ], [ -77.778091430664062, -10.510339736938477 ], [ -77.778923034667912, -10.509959220886174 ], [ -77.781608581542969, -10.506912231445256 ], [ -77.782516479492188, -10.504961013793888 ], [ -77.782630920410099, -10.503017425537053 ], [ -77.783363342285156, -10.499839782714844 ], [ -77.783660888671875, -10.49540901184082 ], [ -77.784408569335938, -10.494274139404297 ], [ -77.786064147949162, -10.493166923522892 ], [ -77.786254882812443, -10.490338325500431 ], [ -77.786819458007756, -10.488959312438908 ], [ -77.788108825683594, -10.487591743469181 ], [ -77.790939331054631, -10.485481262206974 ], [ -77.793487548828068, -10.484564781188965 ], [ -77.794586181640625, -10.484626770019418 ], [ -77.796028137207031, -10.483628273010254 ], [ -77.797637939453125, -10.479225158691406 ], [ -77.798812866210938, -10.477569580078011 ], [ -77.799095153808594, -10.476837158203125 ], [ -77.798645019531193, -10.475856781005746 ], [ -77.797920227050781, -10.475248336791992 ], [ -77.795867919921875, -10.474190711975098 ], [ -77.793159484863281, -10.473282814025822 ], [ -77.791961669921818, -10.472002983093205 ], [ -77.791145324707031, -10.469300270080453 ], [ -77.789962768554631, -10.466888427734261 ], [ -77.790031433105469, -10.465397834777832 ], [ -77.790634155273381, -10.462635040283203 ], [ -77.790534973144474, -10.461716651916504 ], [ -77.789505004882756, -10.459504127502441 ], [ -77.787460327148438, -10.45698070526123 ], [ -77.785964965820256, -10.455595016479492 ], [ -77.784683227539062, -10.454848289489632 ], [ -77.783248901367188, -10.454443931579533 ], [ -77.781478881835881, -10.45429611206049 ], [ -77.780769348144531, -10.453914642333928 ], [ -77.779678344726506, -10.452369689941349 ], [ -77.778724670410099, -10.449857711791935 ], [ -77.775588989257756, -10.44573783874506 ], [ -77.773857116699162, -10.444280624389648 ], [ -77.772811889648381, -10.443675041198674 ], [ -77.767173767089787, -10.440923690795898 ], [ -77.765144348144531, -10.438738822937012 ], [ -77.764625549316293, -10.43692684173584 ], [ -77.764778137207031, -10.435713768005371 ], [ -77.765106201171875, -10.434844017028809 ], [ -77.766502380371037, -10.433386802673283 ], [ -77.767555236816349, -10.43165016174305 ], [ -77.768203735351562, -10.430027961730957 ], [ -77.768257141113281, -10.428827285766602 ], [ -77.767448425292969, -10.428101539611703 ], [ -77.766685485839844, -10.42781925201416 ], [ -77.765121459960938, -10.428265571594181 ], [ -77.762680053710938, -10.428252220153809 ], [ -77.760551452636719, -10.429018020629883 ], [ -77.759826660156193, -10.428737640380803 ], [ -77.758987426757756, -10.426785469055176 ], [ -77.758689880371037, -10.421671867370605 ], [ -77.758132934570256, -10.419872283935433 ], [ -77.758338928222656, -10.414772987365723 ], [ -77.756729125976562, -10.412945747375488 ], [ -77.755950927734375, -10.411233901977482 ], [ -77.754882812499943, -10.409807205200138 ], [ -77.754035949706974, -10.409173965454102 ], [ -77.751968383789062, -10.408493995666504 ], [ -77.7510986328125, -10.407608032226562 ], [ -77.750572204589787, -10.406682968139648 ], [ -77.750656127929688, -10.40558910369873 ], [ -77.751861572265625, -10.403031349182129 ], [ -77.752342224121094, -10.400930404663029 ], [ -77.752471923828125, -10.398246765136719 ], [ -77.751861572265625, -10.395351409912053 ], [ -77.753257751464787, -10.391724586486816 ], [ -77.7529296875, -10.38850212097168 ], [ -77.753219604492188, -10.387795448303223 ], [ -77.754356384277344, -10.386384963989258 ], [ -77.755516052246094, -10.383881568908691 ], [ -77.755416870117188, -10.382951736450195 ], [ -77.754562377929688, -10.380819320678597 ], [ -77.753807067871094, -10.380255699157658 ], [ -77.753211975097656, -10.379340171813965 ], [ -77.753318786621094, -10.376255989074707 ], [ -77.751983642578125, -10.373017311096191 ], [ -77.751762390136719, -10.370996475219613 ], [ -77.752021789550724, -10.369140624999886 ], [ -77.753242492675724, -10.366428375244141 ], [ -77.753402709960938, -10.365633010864201 ], [ -77.752235412597656, -10.362481117248478 ], [ -77.752044677734375, -10.361397743225098 ], [ -77.755226135253906, -10.355021476745605 ], [ -77.755210876464844, -10.354205131530705 ], [ -77.754623413085938, -10.352279663085938 ], [ -77.754669189453125, -10.350930213928166 ], [ -77.755271911621037, -10.349011421203556 ], [ -77.756698608398381, -10.346722602844181 ], [ -77.757080078124943, -10.345246315002441 ], [ -77.756935119628906, -10.344099998474064 ], [ -77.755950927734375, -10.3427734375 ], [ -77.755119323730469, -10.340773582458439 ], [ -77.754241943359375, -10.336553573608342 ], [ -77.753822326660099, -10.333224296569767 ], [ -77.754196166992131, -10.330817222595215 ], [ -77.755767822265625, -10.32914924621582 ], [ -77.756240844726562, -10.328006744384709 ], [ -77.755607604980469, -10.327065467834473 ], [ -77.753929138183537, -10.325381278991699 ], [ -77.752815246582031, -10.322037696838322 ], [ -77.75225830078125, -10.321690559387207 ], [ -77.750747680664062, -10.321765899658203 ], [ -77.749366760253793, -10.322283744811955 ], [ -77.747291564941406, -10.323592185974064 ], [ -77.744796752929688, -10.325673103332406 ], [ -77.7437744140625, -10.326053619384766 ], [ -77.741378784179688, -10.32558631896967 ], [ -77.738807678222656, -10.324017524719181 ], [ -77.737533569335881, -10.323666572570744 ], [ -77.732215881347656, -10.323505401611328 ], [ -77.726119995117188, -10.324000358581486 ], [ -77.725105285644531, -10.323711395263615 ], [ -77.722801208496094, -10.322455406188908 ], [ -77.720382690429688, -10.322078704833984 ], [ -77.717277526855469, -10.32237529754633 ], [ -77.714263916015568, -10.32392692565918 ], [ -77.712318420410156, -10.324538230895996 ], [ -77.707992553710938, -10.325045585632267 ], [ -77.704879760742188, -10.325063705444336 ], [ -77.701438903808594, -10.324222564697152 ], [ -77.699577331542912, -10.322649002075082 ], [ -77.698371887207031, -10.322029113769418 ], [ -77.695793151855469, -10.322121620178166 ], [ -77.693367004394474, -10.320914268493652 ], [ -77.692283630371094, -10.320786476135197 ], [ -77.690086364746094, -10.321834564208871 ], [ -77.686798095703068, -10.324220657348633 ], [ -77.684028625488224, -10.325646400451603 ], [ -77.681976318359375, -10.326375007629395 ], [ -77.679679870605469, -10.326573371887207 ], [ -77.678352355957031, -10.326910972595215 ], [ -77.67340087890625, -10.331685066223031 ], [ -77.669776916503906, -10.334039688110352 ], [ -77.66815185546875, -10.336825370788574 ], [ -77.666419982910156, -10.338529586791992 ], [ -77.665534973144474, -10.338908195495605 ], [ -77.662185668945256, -10.339449882507267 ], [ -77.660049438476562, -10.341807365417424 ], [ -77.659088134765625, -10.342421531677246 ], [ -77.658058166503906, -10.342581748962346 ], [ -77.654449462890568, -10.342522621154728 ], [ -77.653755187988281, -10.342862129211426 ], [ -77.652435302734375, -10.344118118286133 ], [ -77.651535034179688, -10.344362258911076 ], [ -77.650276184081974, -10.343892097473031 ], [ -77.647140502929688, -10.340682983398381 ], [ -77.646957397460938, -10.340036392211914 ], [ -77.6470947265625, -10.338698387145996 ], [ -77.646522521972656, -10.337862014770508 ], [ -77.642082214355469, -10.334654808044377 ], [ -77.640113830566406, -10.332865715026799 ], [ -77.639488220214787, -10.33185863494873 ], [ -77.638275146484375, -10.328667640686035 ], [ -77.635978698730469, -10.326563835143986 ], [ -77.634025573730469, -10.323787689208984 ], [ -77.632781982421875, -10.322796821594181 ], [ -77.630691528320312, -10.322080612182617 ], [ -77.629310607910156, -10.322108268737793 ], [ -77.627418518066406, -10.324013710021973 ], [ -77.625442504882812, -10.325447082519474 ], [ -77.622489929199219, -10.326809883117619 ], [ -77.620147705078125, -10.327378273010197 ], [ -77.619232177734375, -10.32820987701416 ], [ -77.617950439453011, -10.330433845519963 ], [ -77.617530822753906, -10.331709861755314 ], [ -77.617172241210881, -10.334650039672795 ], [ -77.616859436035156, -10.335548400878849 ], [ -77.615135192871094, -10.337442398071289 ], [ -77.614448547363281, -10.339035987854004 ], [ -77.611106872558594, -10.342757225036564 ], [ -77.606758117675724, -10.350356101989746 ], [ -77.600265502929688, -10.35989856719965 ], [ -77.598701477050781, -10.363017082214355 ], [ -77.597801208496037, -10.365988731384277 ], [ -77.597702026367131, -10.367325782775822 ], [ -77.598472595214787, -10.372787475585938 ], [ -77.598030090332031, -10.380716323852482 ], [ -77.599052429199162, -10.382430076599064 ], [ -77.599266052246094, -10.383216857910099 ], [ -77.599632263183537, -10.383936882019043 ], [ -77.602508544921875, -10.386985778808594 ], [ -77.603378295898438, -10.388516426086369 ], [ -77.604637145996094, -10.390122413635197 ], [ -77.606391906738224, -10.391996383666992 ], [ -77.610145568847656, -10.394151687622013 ], [ -77.615005493164062, -10.398466110229379 ], [ -77.6199951171875, -10.401481628417969 ], [ -77.621871948242188, -10.403606414794922 ], [ -77.626625061035099, -10.406973838806039 ], [ -77.62799072265625, -10.407585144042969 ], [ -77.631294250488224, -10.408352851867619 ], [ -77.632522583007756, -10.409436225891113 ], [ -77.633293151855412, -10.410687446594238 ], [ -77.635154724121094, -10.411601066589355 ], [ -77.636306762695312, -10.411917686462346 ], [ -77.63800048828125, -10.411424636840763 ], [ -77.643135070800781, -10.408383369445801 ], [ -77.643959045410099, -10.408178329467717 ], [ -77.644508361816406, -10.408297538757267 ], [ -77.648269653320256, -10.412081718444824 ], [ -77.653724670410156, -10.415623664855957 ], [ -77.656303405761719, -10.416468620300293 ], [ -77.660369873046818, -10.41672420501709 ], [ -77.662132263183594, -10.41746711730957 ], [ -77.662910461425781, -10.418210029602051 ], [ -77.663475036621094, -10.419146537780705 ], [ -77.664703369140625, -10.423555374145508 ], [ -77.666961669921818, -10.426264762878418 ], [ -77.671623229980412, -10.428104400634766 ], [ -77.673347473144474, -10.430013656616154 ], [ -77.675323486328125, -10.430891990661564 ], [ -77.678375244140625, -10.431589126586914 ], [ -77.682121276855412, -10.430926322937012 ], [ -77.683616638183594, -10.431020736694336 ], [ -77.685020446777344, -10.431568145751896 ], [ -77.686820983886719, -10.433407783508244 ], [ -77.68795013427723, -10.435980796813965 ], [ -77.690505981445256, -10.439998626708871 ], [ -77.690773010253906, -10.441387176513672 ], [ -77.689971923828125, -10.444575309753418 ], [ -77.687538146972599, -10.448868751525822 ], [ -77.687385559082031, -10.449935913085938 ], [ -77.687561035156193, -10.450611114501953 ], [ -77.691375732421818, -10.454616546630859 ], [ -77.691955566406136, -10.457657814025822 ], [ -77.6932373046875, -10.459218978881836 ], [ -77.694671630859375, -10.462713241577092 ], [ -77.695304870605469, -10.463212013244629 ], [ -77.697586059570312, -10.464096069335881 ], [ -77.698348999023438, -10.464876174926758 ], [ -77.699508666992188, -10.468038558959961 ], [ -77.702430725097599, -10.473958015441838 ], [ -77.703826904296875, -10.478167533874512 ], [ -77.705215454101562, -10.481242179870549 ], [ -77.705833435058594, -10.482124328613224 ], [ -77.707740783691406, -10.48393440246582 ], [ -77.708290100097656, -10.484794616699162 ], [ -77.708305358886719, -10.486422538757324 ], [ -77.707710266113281, -10.488506317138615 ], [ -77.707847595214787, -10.492667198181152 ], [ -77.707489013671818, -10.494387626647949 ], [ -77.706802368164006, -10.495992660522404 ], [ -77.706672668457031, -10.497475624084473 ], [ -77.706886291503906, -10.498250961303711 ], [ -77.707740783691406, -10.499111175537053 ], [ -77.708709716796818, -10.499698638915902 ], [ -77.712944030761719, -10.501372337341252 ], [ -77.716361999511662, -10.503481864929142 ], [ -77.720893859863281, -10.509063720703125 ], [ -77.72314453125, -10.512596130371094 ], [ -77.724037170410156, -10.512930870056039 ], [ -77.728469848632756, -10.513579368591252 ], [ -77.732025146484375, -10.515826225280762 ], [ -77.734703063964844, -10.518692970275822 ], [ -77.740524291992188, -10.524163246154785 ], [ -77.742523193359375, -10.526711463928109 ], [ -77.743240356445256, -10.528012275695744 ], [ -77.744247436523438, -10.529007911682129 ], [ -77.745674133300781, -10.53130054473877 ], [ -77.745620727539006, -10.533992767333928 ], [ -77.744598388671761, -10.537626266479492 ], [ -77.743698120117188, -10.54388427734375 ], [ -77.742591857910099, -10.547913551330566 ], [ -77.741897583007756, -10.549521446227971 ], [ -77.739578247070312, -10.553315162658578 ], [ -77.737945556640625, -10.557747840881348 ], [ -77.737632751464787, -10.560279846191406 ], [ -77.737556457519531, -10.566072463989258 ], [ -77.737213134765625, -10.568009376525879 ], [ -77.732009887695199, -10.566164970397949 ], [ -77.725357055664062, -10.561850547790414 ], [ -77.721366882324219, -10.55982398986805 ], [ -77.716217041015625, -10.559779167175293 ], [ -77.714096069335938, -10.559290885925293 ], [ -77.712852478027344, -10.558724403381291 ], [ -77.710830688476506, -10.556212425231877 ], [ -77.710601806640625, -10.554623603820744 ], [ -77.709640502929688, -10.551811218261719 ], [ -77.708938598632812, -10.550506591796818 ], [ -77.707611083984375, -10.548787117004395 ], [ -77.705184936523381, -10.547595024108887 ], [ -77.702308654785156, -10.544927597045842 ], [ -77.696861267089844, -10.541360855102539 ], [ -77.690338134765625, -10.53608512878418 ], [ -77.688690185546818, -10.536147117614746 ], [ -77.686134338378849, -10.537685394287109 ], [ -77.684577941894474, -10.538112640380803 ], [ -77.682151794433594, -10.537747383117619 ], [ -77.679176330566293, -10.536424636840763 ], [ -77.677543640136662, -10.53653621673584 ], [ -77.67574310302723, -10.537113189697266 ], [ -77.673210144042969, -10.539148330688477 ], [ -77.671722412109318, -10.539315223693848 ], [ -77.670776367187443, -10.539187431335449 ], [ -77.669570922851562, -10.538556098937988 ], [ -77.663841247558594, -10.532613754272404 ], [ -77.662948608398381, -10.531987190246582 ], [ -77.659454345703125, -10.530879020690918 ], [ -77.654754638671818, -10.530811309814453 ], [ -77.653701782226506, -10.530657768249455 ], [ -77.652832031249943, -10.530257225036564 ], [ -77.651321411132756, -10.529079437255859 ], [ -77.650459289550724, -10.528046607971078 ], [ -77.649627685546875, -10.525901794433537 ], [ -77.649612426757699, -10.524836540222111 ], [ -77.648040771484375, -10.523574829101562 ], [ -77.64642333984375, -10.522722244262638 ], [ -77.646133422851562, -10.525090217590218 ], [ -77.645507812499943, -10.526560783386174 ], [ -77.644012451171875, -10.538979530334416 ], [ -77.642196655273438, -10.545040130615234 ], [ -77.641838073730469, -10.551817893981877 ], [ -77.64019775390625, -10.558229446411133 ], [ -77.639656066894531, -10.561394691467228 ], [ -77.639190673828068, -10.575031280517521 ], [ -77.638351440429631, -10.582258224487305 ], [ -77.638397216796875, -10.59666919708252 ], [ -77.637924194335938, -10.601083755493107 ], [ -77.637374877929631, -10.601854324340763 ], [ -77.633308410644531, -10.601815223693848 ], [ -77.628486633300781, -10.601015090942326 ], [ -77.625770568847543, -10.600885391235352 ], [ -77.619308471679688, -10.599260330200195 ], [ -77.615943908691349, -10.597797393798771 ], [ -77.611343383789006, -10.595185279846078 ], [ -77.606697082519418, -10.590456008911133 ], [ -77.605194091796875, -10.58929443359375 ], [ -77.603347778320256, -10.588438987731877 ], [ -77.599372863769531, -10.587117195129395 ], [ -77.595886230468693, -10.585295677185002 ], [ -77.594161987304688, -10.584919929504395 ], [ -77.592681884765625, -10.584201812744141 ], [ -77.590408325195312, -10.583975791931039 ], [ -77.585906982421761, -10.583957672119141 ], [ -77.583900451660099, -10.58360481262207 ], [ -77.577644348144531, -10.583709716796818 ], [ -77.576583862304688, -10.58348369598383 ], [ -77.575172424316406, -10.585121154785099 ], [ -77.57373046875, -10.587564468383732 ], [ -77.572677612304688, -10.592009544372559 ], [ -77.571807861328125, -10.601113319396973 ], [ -77.571807861328125, -10.604468345642033 ], [ -77.572174072265511, -10.607672691345215 ], [ -77.57318115234375, -10.613664627075195 ], [ -77.574287414550781, -10.616557121276799 ], [ -77.575347900390625, -10.618044853210449 ], [ -77.576408386230469, -10.619103431701603 ], [ -77.580780029296875, -10.621832847595158 ], [ -77.5823974609375, -10.624331474304199 ], [ -77.5828857421875, -10.625591278076172 ], [ -77.583412170410099, -10.627972602844181 ], [ -77.583442687988281, -10.629310607910156 ], [ -77.582984924316406, -10.635537147521973 ], [ -77.58306884765625, -10.638328552246037 ], [ -77.583496093749943, -10.63971042633051 ], [ -77.585342407226562, -10.643226623535043 ], [ -77.585647583007812, -10.644408226013127 ], [ -77.584518432617188, -10.647281646728516 ], [ -77.583137512206974, -10.649597167968693 ], [ -77.575965881347599, -10.65803241729725 ], [ -77.57476806640625, -10.66060829162592 ], [ -77.574653625488168, -10.661521911621037 ], [ -77.574089050292969, -10.662602424621525 ], [ -77.573738098144531, -10.664729118347111 ], [ -77.573806762695312, -10.67374324798584 ], [ -77.573402404785099, -10.67911434173584 ], [ -77.573440551757812, -10.683832168579102 ], [ -77.573875427246037, -10.688390731811523 ], [ -77.574058532714787, -10.694169998168888 ], [ -77.573837280273438, -10.703995704650765 ], [ -77.574600219726562, -10.711776733398381 ], [ -77.575775146484318, -10.717035293579102 ], [ -77.575881958007756, -10.722680091857853 ], [ -77.576339721679631, -10.725234985351506 ], [ -77.576339721679631, -10.726030349731388 ], [ -77.577392578124943, -10.729228019714355 ], [ -77.577667236328125, -10.731649398803654 ], [ -77.580474853515625, -10.736720085143986 ], [ -77.582794189453125, -10.742040634155217 ], [ -77.585105895996094, -10.752015113830566 ], [ -77.586265563964787, -10.754147529601994 ], [ -77.588218688964844, -10.756580352783146 ], [ -77.58917236328125, -10.75734806060791 ], [ -77.589927673339844, -10.757658004760742 ], [ -77.593589782714844, -10.757710456848145 ], [ -77.5968017578125, -10.759182929992619 ], [ -77.601173400878906, -10.760680198669377 ], [ -77.609649658203068, -10.762480735778752 ], [ -77.610733032226562, -10.763141632080078 ], [ -77.611198425292969, -10.763743400573617 ], [ -77.610992431640625, -10.764566421508732 ], [ -77.610038757324219, -10.766036033630257 ], [ -77.603019714355469, -10.773531913757267 ], [ -77.599929809570312, -10.777291297912598 ], [ -77.596366882324162, -10.782706260681096 ], [ -77.594520568847656, -10.787462234497013 ], [ -77.593658447265625, -10.788328170776254 ], [ -77.592758178710881, -10.788654327392521 ], [ -77.590568542480412, -10.787044525146484 ], [ -77.578132629394531, -10.772575378417969 ], [ -77.576911926269474, -10.771709442138672 ], [ -77.569313049316293, -10.764568328857422 ], [ -77.561019897460938, -10.757797241210938 ], [ -77.558082580566406, -10.755599975585938 ], [ -77.556541442871094, -10.754735946655217 ], [ -77.547981262207031, -10.752556800842285 ], [ -77.544006347656193, -10.7503404617309 ], [ -77.538948059082031, -10.746684074401855 ], [ -77.533683776855469, -10.742212295532227 ], [ -77.52764892578125, -10.736169815063477 ], [ -77.526313781738281, -10.73523998260498 ], [ -77.524688720703125, -10.734550476074162 ], [ -77.521247863769418, -10.733763694763127 ], [ -77.519195556640625, -10.733871459960938 ], [ -77.515182495117188, -10.734590530395508 ], [ -77.513969421386662, -10.734472274780273 ], [ -77.512176513671818, -10.733830451965275 ], [ -77.509849548339844, -10.733783721923828 ], [ -77.508232116699219, -10.733986854553223 ], [ -77.506690979003906, -10.734495162963867 ], [ -77.504188537597656, -10.73589038848877 ], [ -77.503349304199219, -10.736943244934082 ], [ -77.501640319824219, -10.7406005859375 ], [ -77.500648498535043, -10.741538047790527 ], [ -77.497421264648438, -10.743552207946777 ], [ -77.494758605957031, -10.744560241699219 ], [ -77.491317749023438, -10.745418548583984 ], [ -77.489013671874886, -10.745428085327148 ], [ -77.485771179199105, -10.744956016540414 ], [ -77.483787536621094, -10.744476318359318 ], [ -77.479965209960938, -10.743041992187443 ], [ -77.477325439453125, -10.741300582885685 ], [ -77.476112365722599, -10.740788459777775 ], [ -77.473388671875, -10.7406005859375 ], [ -77.469909667968693, -10.741000175476074 ], [ -77.468902587890625, -10.740236282348576 ], [ -77.466003417968693, -10.736838340759221 ], [ -77.465248107910099, -10.736284255981445 ], [ -77.462791442871094, -10.736149787902832 ], [ -77.460899353027344, -10.736886024475041 ], [ -77.459785461425781, -10.736479759216309 ], [ -77.4591064453125, -10.735634803771916 ], [ -77.458518981933594, -10.734267234802189 ], [ -77.457046508789006, -10.732671737670898 ], [ -77.452301025390625, -10.729267120361328 ], [ -77.449844360351562, -10.727801322937012 ], [ -77.447898864746037, -10.727240562438965 ], [ -77.444503784179688, -10.726922035217285 ], [ -77.441268920898438, -10.726333618164062 ], [ -77.440025329589844, -10.725836753845215 ], [ -77.437652587890625, -10.724229812622013 ], [ -77.436477661132812, -10.72383975982666 ], [ -77.434188842773438, -10.724164009094238 ], [ -77.432441711425724, -10.724892616271973 ], [ -77.430320739746094, -10.726119041442871 ], [ -77.427825927734375, -10.728670120239258 ], [ -77.427230834960938, -10.728981971740609 ], [ -77.425468444824162, -10.729178428649902 ], [ -77.423431396484375, -10.728404998779297 ], [ -77.421546936035156, -10.728167533874455 ], [ -77.420646667480469, -10.72849178314209 ], [ -77.416786193847599, -10.730752944946289 ], [ -77.416000366210938, -10.730759620666447 ], [ -77.414138793945256, -10.730133056640625 ], [ -77.412445068359375, -10.729260444641056 ], [ -77.408378601074219, -10.726320266723576 ], [ -77.401939392089787, -10.722789764404297 ], [ -77.396270751953125, -10.720927238464242 ], [ -77.395339965820256, -10.719930648803654 ], [ -77.39404296875, -10.716957092285156 ], [ -77.391555786132812, -10.713418006896916 ], [ -77.389343261718693, -10.709712028503418 ], [ -77.388160705566406, -10.70878887176508 ], [ -77.386619567871094, -10.708232879638615 ], [ -77.38568115234375, -10.708123207092285 ], [ -77.384201049804631, -10.708413124084473 ], [ -77.384071350097656, -10.707945823669377 ], [ -77.384361267089787, -10.707337379455453 ], [ -77.385635375976449, -10.705538749694767 ], [ -77.386558532714787, -10.704789161682129 ], [ -77.388641357421875, -10.703851699829102 ], [ -77.392166137695312, -10.702704429626408 ], [ -77.395751953125, -10.702090263366699 ], [ -77.396842956542969, -10.701429367065373 ], [ -77.398391723632756, -10.699638366699219 ], [ -77.401679992675781, -10.694397926330566 ], [ -77.403472900390625, -10.688375473022404 ], [ -77.403717041015625, -10.684497833251896 ], [ -77.403480529785156, -10.681805610656738 ], [ -77.403030395507812, -10.680109977722054 ], [ -77.400306701660099, -10.675288200378418 ], [ -77.39794921875, -10.670289993286133 ], [ -77.395248413085881, -10.665765762329045 ], [ -77.392570495605412, -10.65942478179926 ], [ -77.391853332519531, -10.658609390258732 ], [ -77.387428283691349, -10.655677795410156 ], [ -77.386764526367131, -10.654524803161564 ], [ -77.385673522949219, -10.651608467101994 ], [ -77.383285522460938, -10.648487091064453 ], [ -77.382225036621094, -10.646031379699707 ], [ -77.380897521972656, -10.642044067382756 ], [ -77.380584716796875, -10.640230178833008 ], [ -77.379913330078011, -10.638908386230412 ], [ -77.379226684570256, -10.638217926025391 ], [ -77.378463745117131, -10.63805103302002 ], [ -77.377204895019531, -10.63857460021967 ], [ -77.372238159179688, -10.639372825622502 ], [ -77.370185852050668, -10.640074729919434 ], [ -77.368133544921875, -10.639366149902344 ], [ -77.366165161132756, -10.637926101684513 ], [ -77.365127563476506, -10.636345863342228 ], [ -77.364120483398438, -10.63312816619873 ], [ -77.361991882324219, -10.629673004150334 ], [ -77.360939025878906, -10.624258041381779 ], [ -77.360237121581974, -10.622501373290959 ], [ -77.35809326171875, -10.619707107543888 ], [ -77.352951049804688, -10.614322662353459 ], [ -77.351814270019531, -10.612487792968693 ], [ -77.34735107421875, -10.606872558593693 ], [ -77.345451354980412, -10.607602119445801 ], [ -77.344741821289062, -10.60833835601801 ], [ -77.343360900878849, -10.60785007476801 ], [ -77.342720031738168, -10.607134819030705 ], [ -77.342475891113281, -10.604479789733773 ], [ -77.341934204101506, -10.602531433105469 ], [ -77.341079711914006, -10.600993156433105 ], [ -77.340171813964844, -10.598458290100098 ], [ -77.33852386474598, -10.596664428710881 ], [ -77.337059020996037, -10.595680236816406 ], [ -77.335128784179688, -10.594998359680176 ], [ -77.330116271972599, -10.594719886779785 ], [ -77.327552795410099, -10.593799591064396 ], [ -77.326095581054631, -10.592805862426701 ], [ -77.322273254394531, -10.588958740234261 ], [ -77.3212890625, -10.588504791259766 ], [ -77.320465087890568, -10.587796211242676 ], [ -77.317222595214787, -10.583780288696289 ], [ -77.315528869628849, -10.581189155578613 ], [ -77.313751220703125, -10.576666831970215 ], [ -77.313461303710938, -10.574572563171387 ], [ -77.313087463378906, -10.57342624664301 ], [ -77.312255859375, -10.571735382080078 ], [ -77.309783935546818, -10.568516731262207 ], [ -77.307220458984318, -10.566094398498421 ], [ -77.302276611328068, -10.56420707702631 ], [ -77.298828124999943, -10.561168670654297 ], [ -77.292015075683594, -10.556699752807617 ], [ -77.290992736816406, -10.556319236755257 ], [ -77.2900390625, -10.556342124938965 ], [ -77.287963867187443, -10.557885169982853 ], [ -77.286224365234375, -10.558224678039551 ], [ -77.283843994140568, -10.557724952697754 ], [ -77.279067993164062, -10.556071281433105 ], [ -77.277763366699162, -10.556214332580566 ], [ -77.276794433593693, -10.556701660156193 ], [ -77.274574279785156, -10.559067726135254 ], [ -77.273262023925724, -10.560033798217773 ], [ -77.271278381347599, -10.560491561889535 ], [ -77.270217895507756, -10.559892654418888 ], [ -77.269821166992188, -10.559967994689885 ], [ -77.269500732421875, -10.559711456298828 ], [ -77.268630981445312, -10.557737350463867 ], [ -77.268524169921761, -10.556660652160645 ], [ -77.269012451171875, -10.554840087890625 ], [ -77.269020080566406, -10.553629875183049 ], [ -77.268638610839844, -10.552195549011174 ], [ -77.267379760742074, -10.550785064697209 ], [ -77.265914916992131, -10.55007362365717 ], [ -77.262199401855412, -10.549233436584473 ], [ -77.259193420410156, -10.547644615173226 ], [ -77.256317138671761, -10.546409606933537 ], [ -77.253829956054631, -10.545676231384277 ], [ -77.250755310058537, -10.545140266418457 ], [ -77.249542236328068, -10.545329093933049 ], [ -77.243972778320312, -10.547526359558049 ], [ -77.24249267578125, -10.547808647155705 ], [ -77.240676879882699, -10.54728889465332 ], [ -77.238265991210881, -10.54554557800293 ], [ -77.236274719238224, -10.544654846191406 ], [ -77.232208251953125, -10.544763565063477 ], [ -77.228416442871094, -10.54584884643549 ], [ -77.225852966308594, -10.546172142028809 ], [ -77.224266052246037, -10.546737670898438 ], [ -77.222251892089787, -10.548341751098633 ], [ -77.221023559570256, -10.550735473632812 ], [ -77.220062255859318, -10.551690101623478 ], [ -77.218086242675781, -10.552591323852539 ], [ -77.215827941894531, -10.553103446960449 ], [ -77.214248657226506, -10.553900718688908 ], [ -77.210998535156193, -10.554167747497559 ], [ -77.208953857421875, -10.555176734924316 ], [ -77.207328796386719, -10.554881095886174 ], [ -77.2061767578125, -10.555277824401855 ], [ -77.205223083496094, -10.555330276489201 ], [ -77.200736999511719, -10.554238319396916 ], [ -77.199378967285099, -10.554384231567326 ], [ -77.198005676269531, -10.554989814758301 ], [ -77.197441101074162, -10.554677963256722 ], [ -77.196632385253906, -10.553526878356877 ], [ -77.196197509765625, -10.553241729736328 ], [ -77.192344665527344, -10.552337646484261 ], [ -77.191200256347656, -10.55157566070551 ], [ -77.190330505371094, -10.54875469207758 ], [ -77.188858032226506, -10.547163963317757 ], [ -77.189285278320312, -10.543292045593262 ], [ -77.189033508300781, -10.542372703552189 ], [ -77.188652038574219, -10.541995048522892 ], [ -77.18865966796875, -10.541588783264046 ], [ -77.187950134277344, -10.540770530700627 ], [ -77.184875488281193, -10.539038658142033 ], [ -77.183692932128906, -10.538100242614689 ], [ -77.182838439941406, -10.535565376281681 ], [ -77.181198120117188, -10.533425331115723 ], [ -77.18121337890625, -10.532205581665039 ], [ -77.181716918945256, -10.53052806854248 ], [ -77.181365966796875, -10.52772140502924 ], [ -77.181655883789062, -10.526408195495605 ], [ -77.181510925292969, -10.524520874023438 ], [ -77.180747985839844, -10.523604393005314 ], [ -77.179634094238224, -10.522772789001465 ], [ -77.17669677734375, -10.521344184875431 ], [ -77.174919128417969, -10.518809318542424 ], [ -77.172805786132812, -10.517594337463379 ], [ -77.172050476074219, -10.516821861267033 ], [ -77.171348571777344, -10.515659332275391 ], [ -77.170845031738224, -10.513278007507267 ], [ -77.16900634765625, -10.509975433349553 ], [ -77.168670654296818, -10.507987976074162 ], [ -77.168037414550781, -10.506943702697697 ], [ -77.168243408203125, -10.503498077392521 ], [ -77.168960571288949, -10.501749992370549 ], [ -77.168998718261719, -10.499488830566349 ], [ -77.169364929199219, -10.498772621154785 ], [ -77.169380187988281, -10.497563362121582 ], [ -77.170028686523438, -10.496086120605469 ], [ -77.169075012207031, -10.494338035583496 ], [ -77.169342041015511, -10.492827415466309 ], [ -77.172538757324219, -10.486304283142033 ], [ -77.173759460449219, -10.485223770141545 ], [ -77.176681518554631, -10.483259201049805 ], [ -77.177795410156193, -10.482418060302678 ], [ -77.17718505859375, -10.480842590332031 ], [ -77.177192687988281, -10.479902267455998 ], [ -77.176139831542969, -10.475443840026799 ], [ -77.175407409667969, -10.469700813293457 ], [ -77.175369262695312, -10.467280387878418 ], [ -77.174697875976562, -10.465368270874023 ], [ -77.169181823730469, -10.460363388061523 ], [ -77.164131164550781, -10.456493377685433 ], [ -77.159866333007756, -10.454676628112793 ], [ -77.153755187988281, -10.452810287475529 ], [ -77.152763366699219, -10.452113151550293 ], [ -77.152046203613224, -10.451296806335392 ], [ -77.150741577148381, -10.448486328124886 ], [ -77.150436401367131, -10.446605682373047 ], [ -77.150123596191406, -10.445877075195256 ], [ -77.147987365722656, -10.44503116607666 ], [ -77.146324157714787, -10.444085121154728 ], [ -77.145050048828125, -10.442884445190373 ], [ -77.144081115722656, -10.441561698913517 ], [ -77.142234802246037, -10.436222076416016 ], [ -77.141067504882812, -10.433942794799691 ], [ -77.139671325683537, -10.429859161376896 ], [ -77.138343811035099, -10.427064895629826 ], [ -77.135513305664062, -10.425195693969727 ], [ -77.12847900390625, -10.422332763671818 ], [ -77.128005981445312, -10.42149543762207 ], [ -77.127815246582031, -10.420022010803223 ], [ -77.127365112304631, -10.418908119201603 ], [ -77.124969482421818, -10.416328430175724 ], [ -77.119079589843693, -10.411332130432129 ], [ -77.118354797363281, -10.410199165344238 ], [ -77.117897033691406, -10.408077239990234 ], [ -77.117248535156193, -10.407193183898869 ], [ -77.116172790527344, -10.406678199768066 ], [ -77.113433837890568, -10.406442642211857 ], [ -77.111846923828125, -10.404997825622559 ], [ -77.11090087890625, -10.40322303771967 ], [ -77.110305786132756, -10.401286125183105 ], [ -77.11004638671875, -10.398628234863281 ], [ -77.110084533691349, -10.396342277526855 ], [ -77.111068725585881, -10.393562316894531 ], [ -77.110801696777344, -10.391972541809082 ], [ -77.108581542968693, -10.390972137451115 ], [ -77.105041503906193, -10.387246131896916 ], [ -77.096710205078125, -10.380973815917969 ], [ -77.093002319335938, -10.376153945922852 ], [ -77.089576721191406, -10.372659683227539 ], [ -77.088859558105469, -10.370385169982853 ], [ -77.088691711425781, -10.367143630981445 ], [ -77.088844299316349, -10.365398406982365 ], [ -77.089653015136719, -10.361974716186523 ], [ -77.089523315429688, -10.360964775085449 ], [ -77.088912963867131, -10.360019683837891 ], [ -77.088302612304688, -10.359750747680664 ], [ -77.086334228515625, -10.360931396484318 ], [ -77.085388183593693, -10.360944747924805 ], [ -77.084068298339787, -10.359816551208496 ], [ -77.08123779296875, -10.35881233215332 ], [ -77.080001831054688, -10.3580322265625 ], [ -77.079345703125, -10.357160568237248 ], [ -77.075401306152287, -10.34979343414301 ], [ -77.073822021484375, -10.347598075866699 ], [ -77.071853637695256, -10.342007637023926 ], [ -77.07149505615223, -10.339452743530273 ], [ -77.071136474609375, -10.338342666625977 ], [ -77.069244384765625, -10.337550163268929 ], [ -77.067207336425781, -10.337752342224121 ], [ -77.066154479980355, -10.337560653686523 ], [ -77.064437866210824, -10.336712837219181 ], [ -77.063125610351562, -10.335346221923771 ], [ -77.062309265136662, -10.335289001464844 ], [ -77.06085205078125, -10.335697174072266 ], [ -77.060012817382812, -10.336550712585449 ], [ -77.056884765624943, -10.337863922119141 ], [ -77.053977966308594, -10.340069770812931 ], [ -77.052230834960824, -10.340785980224553 ], [ -77.050392150878849, -10.339920043945256 ], [ -77.048065185546875, -10.339610099792424 ], [ -77.047218322753906, -10.339290618896371 ], [ -77.046531677246094, -10.338253974914494 ], [ -77.046508789062386, -10.336384773254395 ], [ -77.045333862304631, -10.335425376892033 ], [ -77.044570922851506, -10.335194587707463 ], [ -77.043334960937443, -10.335292816162109 ], [ -77.040779113769474, -10.336565017700138 ], [ -77.039596557617188, -10.336663246154785 ], [ -77.039253234863224, -10.336230278015137 ], [ -77.039276123046875, -10.334757804870549 ], [ -77.038352966308594, -10.333948135375977 ], [ -77.037071228027344, -10.333515167236328 ], [ -77.035514831542912, -10.332424163818246 ], [ -77.033905029296818, -10.332424163818246 ], [ -77.032485961914006, -10.33197021484375 ], [ -77.028984069824219, -10.328982353210449 ], [ -77.02545166015625, -10.328365325927734 ], [ -77.024505615234375, -10.327973365783691 ], [ -77.023658752441406, -10.327072143554631 ], [ -77.022979736328125, -10.325702667236328 ], [ -77.022613525390625, -10.322380065917912 ], [ -77.022232055664062, -10.322190284729004 ], [ -77.021171569824219, -10.32221508026123 ], [ -77.018142700195312, -10.320137023925781 ], [ -77.017257690429688, -10.319123268127441 ], [ -77.016044616699219, -10.316806793212891 ], [ -77.015411376953068, -10.316006660461369 ], [ -77.014160156249943, -10.315842628478947 ], [ -77.013259887695312, -10.316172599792424 ], [ -77.012779235839844, -10.315934181213322 ], [ -77.010971069335938, -10.309030532836914 ], [ -77.010223388671875, -10.308428764343205 ], [ -77.008499145507812, -10.30795860290516 ], [ -77.008399963378906, -10.30701828002924 ], [ -77.008682250976562, -10.304207801818791 ], [ -77.007392883300724, -10.300374984741211 ], [ -77.006973266601562, -10.297584533691349 ], [ -77.007255554199219, -10.292618751525879 ], [ -77.006980895996094, -10.288591384887638 ], [ -77.007293701171818, -10.287556648254395 ], [ -77.006820678710881, -10.285805702209416 ], [ -77.006088256835938, -10.284834861755371 ], [ -77.005050659179688, -10.283965110778809 ], [ -77.003273010253849, -10.283171653747502 ], [ -77.001800537109375, -10.283017158508244 ], [ -77.000968933105469, -10.283246994018498 ], [ -76.999946594238224, -10.283832550048828 ], [ -76.999496459960938, -10.284514427185002 ], [ -76.999404907226562, -10.289776802062988 ], [ -76.998970031738281, -10.290582656860295 ], [ -76.998069763183594, -10.291274070739689 ], [ -76.997138977050781, -10.291472434997502 ], [ -76.994972229003906, -10.29122161865223 ], [ -76.993309020996094, -10.291803359985352 ], [ -76.992637634277344, -10.292474746704045 ], [ -76.991523742675781, -10.294471740722656 ], [ -76.990600585937443, -10.295316696166992 ], [ -76.989761352539006, -10.295757293701172 ], [ -76.986640930175781, -10.295845985412598 ], [ -76.98443603515625, -10.296872138976937 ], [ -76.981330871582031, -10.296495437622013 ], [ -76.979705810546875, -10.29680347442627 ], [ -76.978805541992188, -10.297584533691349 ], [ -76.977890014648438, -10.298792839050236 ], [ -76.977096557617188, -10.300930976867676 ], [ -76.975860595703125, -10.302701950073185 ], [ -76.973869323730469, -10.304115295410156 ], [ -76.970672607421818, -10.304732322692814 ], [ -76.966072082519531, -10.304568290710449 ], [ -76.964714050292969, -10.304099082946777 ], [ -76.963333129882756, -10.302543640136662 ], [ -76.96221923828125, -10.299983024597168 ], [ -76.962081909179631, -10.297949790954533 ], [ -76.961418151855412, -10.297067642211857 ], [ -76.960853576660099, -10.296726226806584 ], [ -76.9593505859375, -10.296736717224121 ], [ -76.958297729492188, -10.296454429626465 ], [ -76.955535888671875, -10.294048309326115 ], [ -76.953163146972656, -10.29379940032959 ], [ -76.952201843261719, -10.292666435241699 ], [ -76.951171875, -10.289872169494629 ], [ -76.950370788574162, -10.288908004760742 ], [ -76.949211120605412, -10.288725852966309 ], [ -76.946174621581974, -10.288825988769474 ], [ -76.944984436035156, -10.288606643676758 ], [ -76.9425048828125, -10.28746318817133 ], [ -76.939880371093693, -10.285778999328556 ], [ -76.939056396484375, -10.284872055053654 ], [ -76.93792724609375, -10.283007621765137 ], [ -76.937469482421818, -10.279270172119084 ], [ -76.937080383300781, -10.278711318969727 ], [ -76.931976318359375, -10.277286529540959 ], [ -76.928314208984318, -10.277000427246037 ], [ -76.924903869628849, -10.276081085205078 ], [ -76.921401977539062, -10.275607109069824 ], [ -76.920188903808594, -10.275710105895996 ], [ -76.918754577636719, -10.276161193847656 ], [ -76.918067932128906, -10.27660083770752 ], [ -76.916763305664062, -10.277963638305664 ], [ -76.915695190429688, -10.278078079223576 ], [ -76.914710998535043, -10.277579307556152 ], [ -76.912635803222656, -10.27525615692133 ], [ -76.908615112304688, -10.272488594055176 ], [ -76.905914306640568, -10.269972801208496 ], [ -76.906501770019474, -10.272880554199162 ], [ -76.906448364257812, -10.274045944213867 ], [ -76.9052734375, -10.277173042297363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-LOR", "NAME_0": "Peru", "ID_1": 17, "NAME_1": "Loreto", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.0, -0.148129001259747 ], [ -74.99468994140625, -0.148341000080109 ], [ -74.98919677734375, -0.148039996623993 ], [ -74.986717224121094, -0.148120000958443 ], [ -74.984336853027344, -0.148939996957722 ], [ -74.982933044433537, -0.14971099793911 ], [ -74.982269287109318, -0.150349006056786 ], [ -74.980216979980469, -0.153159007430077 ], [ -74.979248046875, -0.154980003833771 ], [ -74.978187561035156, -0.160630002617836 ], [ -74.97705078125, -0.163929998874607 ], [ -74.975761413574162, -0.16579000651825 ], [ -74.972312927246094, -0.169170007109642 ], [ -74.971046447753906, -0.170810997486115 ], [ -74.967460632324219, -0.181261003017426 ], [ -74.965301513671818, -0.185859993100166 ], [ -74.962722778320256, -0.190470993518773 ], [ -74.961860656738224, -0.191540002822876 ], [ -74.960296630859375, -0.192909002303963 ], [ -74.956756591796875, -0.195420995354596 ], [ -74.953765869140511, -0.196539998054504 ], [ -74.948806762695199, -0.197378993034306 ], [ -74.947227478027344, -0.198278993368149 ], [ -74.945846557617131, -0.199551001191139 ], [ -74.944183349609375, -0.202270001173019 ], [ -74.942840576171875, -0.206000998616162 ], [ -74.942558288574219, -0.207329005002975 ], [ -74.942466735839844, -0.210109993815365 ], [ -74.941642761230412, -0.213980004191342 ], [ -74.940567016601562, -0.215689003467503 ], [ -74.937973022460938, -0.218348994851112 ], [ -74.935340881347599, -0.219199001789093 ], [ -74.932350158691406, -0.219440996646824 ], [ -74.930618286132812, -0.21906000375742 ], [ -74.929122924804688, -0.217899993062019 ], [ -74.92852783203125, -0.216949999332371 ], [ -74.928092956542912, -0.215369999408665 ], [ -74.92767333984375, -0.209139004349652 ], [ -74.926757812499943, -0.204128995537758 ], [ -74.925605773925724, -0.201609000563622 ], [ -74.924377441406193, -0.200259998440742 ], [ -74.923507690429631, -0.199949994683209 ], [ -74.922363281249943, -0.200130000710487 ], [ -74.919631958007812, -0.201340004801693 ], [ -74.917938232421875, -0.202491000294685 ], [ -74.91632080078125, -0.20411999523634 ], [ -74.913352966308594, -0.207929000258332 ], [ -74.908187866210938, -0.216920003294888 ], [ -74.90582275390625, -0.222139000892639 ], [ -74.905563354492188, -0.223470002412739 ], [ -74.905387878417912, -0.226788997650146 ], [ -74.904266357421818, -0.23030099272728 ], [ -74.902999877929631, -0.23298999667162 ], [ -74.900382995605469, -0.236190006136837 ], [ -74.899826049804688, -0.236608996987286 ], [ -74.898750305175781, -0.236959993839264 ], [ -74.896247863769474, -0.237158998847008 ], [ -74.893402099609375, -0.236169993877354 ], [ -74.892326354980412, -0.236068993806839 ], [ -74.889556884765568, -0.237209007143974 ], [ -74.881027221679688, -0.238709002733231 ], [ -74.878440856933594, -0.239600002765656 ], [ -74.871841430664006, -0.239939004182816 ], [ -74.867630004882756, -0.239039003848973 ], [ -74.864097595214787, -0.237399995326939 ], [ -74.8634033203125, -0.237460002303123 ], [ -74.862297058105412, -0.236700996756554 ], [ -74.859848022460938, -0.234578996896687 ], [ -74.857887268066349, -0.232328996062279 ], [ -74.8568115234375, -0.230579003691673 ], [ -74.855293273925781, -0.226960003376007 ], [ -74.8507080078125, -0.221828997135106 ], [ -74.847457885742188, -0.216011002659798 ], [ -74.845146179199219, -0.213149994611626 ], [ -74.841171264648438, -0.209330007433834 ], [ -74.839218139648381, -0.208179995417481 ], [ -74.833602905273324, -0.205549001693726 ], [ -74.83184814453125, -0.204490005969944 ], [ -74.830360412597543, -0.203089997172356 ], [ -74.827766418456974, -0.199518993496838 ], [ -74.826210021972656, -0.196430996060315 ], [ -74.825950622558537, -0.194881007075253 ], [ -74.826393127441406, -0.189788997173252 ], [ -74.826972961425781, -0.187799006700516 ], [ -74.828346252441349, -0.18464100360859 ], [ -74.828018188476562, -0.180968999862614 ], [ -74.827072143554688, -0.179900005459785 ], [ -74.825302124023381, -0.179840996861401 ], [ -74.823692321777344, -0.180151000618821 ], [ -74.822860717773438, -0.180528998374939 ], [ -74.816558837890625, -0.186520993709507 ], [ -74.814682006835938, -0.187820002436581 ], [ -74.81024169921875, -0.190170004963818 ], [ -74.80438232421875, -0.19205899536604 ], [ -74.795616149902287, -0.193528994917813 ], [ -74.794113159179631, -0.194040000438576 ], [ -74.792091369628849, -0.195150002837181 ], [ -74.789627075195256, -0.197190001606941 ], [ -74.788398742675668, -0.198570996522847 ], [ -74.787437438964787, -0.199839994311333 ], [ -74.785118103027344, -0.204079002141953 ], [ -74.7845458984375, -0.204720005393028 ], [ -74.780166625976506, -0.214420005679131 ], [ -74.779685974121037, -0.22520899772644 ], [ -74.777839660644531, -0.233011007308846 ], [ -74.775260925292969, -0.253199011087304 ], [ -74.776367187499943, -0.263999998569489 ], [ -74.779998779296818, -0.268830001354218 ], [ -74.786811828613281, -0.275510013103485 ], [ -74.794776916503849, -0.277370005845967 ], [ -74.800003051757756, -0.283349990844727 ], [ -74.801116943359375, -0.289788991212845 ], [ -74.794952392578068, -0.294360011816025 ], [ -74.78765869140625, -0.295260995626393 ], [ -74.772598266601562, -0.301409989595413 ], [ -74.761177062988281, -0.306418985128346 ], [ -74.752067565917969, -0.307541012763977 ], [ -74.7486572265625, -0.305698990821782 ], [ -74.741355895996037, -0.304989993572235 ], [ -74.733070373535099, -0.306129992008152 ], [ -74.731559753417855, -0.306329995393753 ], [ -74.72540283203125, -0.309529989957753 ], [ -74.710296630859375, -0.326238989830017 ], [ -74.704818725585938, -0.328981012105885 ], [ -74.700950622558594, -0.329589009284916 ], [ -74.699119567871037, -0.329881012439728 ], [ -74.686477661132812, -0.330430001020432 ], [ -74.684303283691406, -0.330518990754967 ], [ -74.680198669433594, -0.330740004777851 ], [ -74.679748535156193, -0.330280005931854 ], [ -74.677009582519418, -0.330500990152359 ], [ -74.674049377441349, -0.330489009618702 ], [ -74.669807434082031, -0.330240994691735 ], [ -74.665618896484375, -0.329998999834061 ], [ -74.659461975097543, -0.331589996814728 ], [ -74.65602874755848, -0.335020005702916 ], [ -74.64892578125, -0.347169995307922 ], [ -74.641601562499943, -0.354488998651391 ], [ -74.639419555664006, -0.356171011924744 ], [ -74.6326904296875, -0.361348986625671 ], [ -74.624465942382812, -0.365691006183624 ], [ -74.619392395019474, -0.365929991006851 ], [ -74.619583129882756, -0.367060005664769 ], [ -74.619636535644531, -0.371228992938939 ], [ -74.619537353515625, -0.37259000539774 ], [ -74.619071960449219, -0.374139010906163 ], [ -74.617317199707031, -0.376538991927987 ], [ -74.616401672363281, -0.378930002450886 ], [ -74.613578796386662, -0.38086000084877 ], [ -74.611846923828068, -0.381568998098317 ], [ -74.610328674316349, -0.381920009851399 ], [ -74.606460571289062, -0.382149994373322 ], [ -74.605720520019531, -0.382129997014999 ], [ -74.607528686523438, -0.387679994106293 ], [ -74.605461120605412, -0.39203101396555 ], [ -74.599533081054688, -0.39569100737566 ], [ -74.594070434570312, -0.395929992198887 ], [ -74.581253051757756, -0.396508991718235 ], [ -74.580596923828125, -0.396539002656937 ], [ -74.578407287597656, -0.397819995880013 ], [ -74.575119018554688, -0.399740993976593 ], [ -74.573448181152344, -0.40182900428772 ], [ -74.571456909179688, -0.404320001602116 ], [ -74.570732116699219, -0.407440006732884 ], [ -74.56752777099598, -0.421299010515099 ], [ -74.56295013427723, -0.426109999418259 ], [ -74.559486389160099, -0.426849007606506 ], [ -74.557701110839787, -0.427239000797215 ], [ -74.551078796386719, -0.432040989398899 ], [ -74.547225952148438, -0.437269002199173 ], [ -74.54534912109375, -0.439828991889897 ], [ -74.533409118652344, -0.46390101313591 ], [ -74.52825927734375, -0.469828993082047 ], [ -74.519912719726506, -0.479470014572144 ], [ -74.515800476074219, -0.480830013751927 ], [ -74.506698608398438, -0.475059002637863 ], [ -74.503738403320312, -0.474171012639999 ], [ -74.497367858886719, -0.472270011901742 ], [ -74.493698120117131, -0.476848989725056 ], [ -74.494377136230412, -0.479149997234288 ], [ -74.494132995605469, -0.482589989900589 ], [ -74.495040893554631, -0.484889000654164 ], [ -74.495101928710938, -0.485588997602463 ], [ -74.495697021484318, -0.49224001169199 ], [ -74.492721557617188, -0.495678991079217 ], [ -74.480667114257812, -0.485529989004135 ], [ -74.470863342285156, -0.489170014858189 ], [ -74.4605712890625, -0.497408986091614 ], [ -74.453727722167912, -0.500138998031616 ], [ -74.450759887695312, -0.499900013208389 ], [ -74.443222045898438, -0.50583899021143 ], [ -74.437973022460938, -0.50765997171402 ], [ -74.431808471679631, -0.508329987525826 ], [ -74.430671691894474, -0.508319020271244 ], [ -74.427467346191406, -0.509850025176945 ], [ -74.425422668456974, -0.510829985141754 ], [ -74.421302795410099, -0.515408992767277 ], [ -74.423500061035099, -0.535860002040806 ], [ -74.421623229980469, -0.552160024642944 ], [ -74.421669006347656, -0.553250014781895 ], [ -74.422042846679688, -0.560199022293091 ], [ -74.418601989746094, -0.565931022167206 ], [ -74.417228698730355, -0.567300975322667 ], [ -74.4119873046875, -0.566820025443917 ], [ -74.404487609863281, -0.560130000114441 ], [ -74.401321411132812, -0.554149985313416 ], [ -74.395858764648381, -0.553209006786346 ], [ -74.393112182617188, -0.555038988590184 ], [ -74.392211914062443, -0.557148993015232 ], [ -74.390350341796875, -0.561459004878998 ], [ -74.388259887695312, -0.571790993213597 ], [ -74.388710021972599, -0.581018984317723 ], [ -74.388900756835881, -0.584879994392395 ], [ -74.389846801757756, -0.592208981513977 ], [ -74.385513305664062, -0.597519993782043 ], [ -74.3836669921875, -0.600709974765778 ], [ -74.382415771484318, -0.602329015731812 ], [ -74.379127502441406, -0.605509996414185 ], [ -74.373786926269531, -0.608609974384251 ], [ -74.370796203613281, -0.611769020557347 ], [ -74.369560241699219, -0.61396998167038 ], [ -74.368446350097656, -0.616760015487671 ], [ -74.367706298828068, -0.619410991668644 ], [ -74.367385864257812, -0.623570024967194 ], [ -74.367881774902344, -0.626020014285984 ], [ -74.368469238281193, -0.627201020717507 ], [ -74.365463256835938, -0.632800996303502 ], [ -74.363838195800781, -0.639449000358582 ], [ -74.364509582519531, -0.644051015377045 ], [ -74.370376586914006, -0.656700015067997 ], [ -74.371269226074219, -0.659770011901855 ], [ -74.369766235351562, -0.661239981651306 ], [ -74.367889404296818, -0.662558972835484 ], [ -74.364830017089844, -0.664129972457886 ], [ -74.353729248046875, -0.668289005756378 ], [ -74.353073120117188, -0.66891998052597 ], [ -74.345947265625, -0.672049999237004 ], [ -74.344223022460938, -0.673590004444122 ], [ -74.343246459960938, -0.674860000610352 ], [ -74.342666625976562, -0.67634999752039 ], [ -74.342376708984375, -0.677950024604741 ], [ -74.342185974121094, -0.683718979358559 ], [ -74.342369079589844, -0.686019003391209 ], [ -74.3436279296875, -0.691399991512242 ], [ -74.344047546386662, -0.692519009113312 ], [ -74.342201232910156, -0.69519001245493 ], [ -74.341262817382812, -0.700700998306161 ], [ -74.342140197753849, -0.709429979324341 ], [ -74.3450927734375, -0.715409994125366 ], [ -74.354156494140568, -0.725780010223389 ], [ -74.37261962890625, -0.730439007282257 ], [ -74.375999450683537, -0.732590019702911 ], [ -74.374977111816349, -0.733810007572117 ], [ -74.372138977050781, -0.736440002918243 ], [ -74.371658325195312, -0.736398994922581 ], [ -74.370346069335938, -0.737658977508488 ], [ -74.367866516113281, -0.738798975944519 ], [ -74.366607666015625, -0.740139007568359 ], [ -74.365142822265568, -0.740759015083313 ], [ -74.362106323242074, -0.743551015853882 ], [ -74.356979370117188, -0.749409973621368 ], [ -74.352729797363224, -0.753611028194371 ], [ -74.350158691406193, -0.755849003791752 ], [ -74.348617553710938, -0.756219983100891 ], [ -74.346786499023438, -0.757598996162415 ], [ -74.345466613769531, -0.75788897275919 ], [ -74.343620300292969, -0.757929980754852 ], [ -74.340492248535156, -0.757288992404824 ], [ -74.337081909179688, -0.755979001522007 ], [ -74.336082458496094, -0.755060017108917 ], [ -74.334098815917969, -0.754490971565247 ], [ -74.33331298828125, -0.753669977188054 ], [ -74.331459045410099, -0.752749025821686 ], [ -74.327056884765625, -0.751538991928101 ], [ -74.322708129882756, -0.751358985900765 ], [ -74.319511413574219, -0.751589000225067 ], [ -74.317558288574162, -0.752099990844727 ], [ -74.315826416015568, -0.753331005573273 ], [ -74.31463623046875, -0.754980981349945 ], [ -74.314010620117131, -0.757009029388428 ], [ -74.313987731933594, -0.759748995304051 ], [ -74.314407348632756, -0.762750029563904 ], [ -74.314949035644531, -0.764730989933014 ], [ -74.315910339355469, -0.766849994659424 ], [ -74.316917419433594, -0.768651008605957 ], [ -74.318618774413949, -0.770838975906372 ], [ -74.319786071777344, -0.772898972034454 ], [ -74.318641662597656, -0.772970020771027 ], [ -74.314979553222599, -0.777320981025696 ], [ -74.314956665039062, -0.782379984855652 ], [ -74.316429138183594, -0.791809022426492 ], [ -74.316192626953125, -0.791880011558476 ], [ -74.311637878417912, -0.792110025882607 ], [ -74.308799743652344, -0.791230022907143 ], [ -74.306480407714787, -0.789749026298523 ], [ -74.30462646484375, -0.787419974803925 ], [ -74.301017761230469, -0.777719974517709 ], [ -74.299179077148438, -0.775361001491547 ], [ -74.297225952148381, -0.773748993873596 ], [ -74.295310974121094, -0.773039996623936 ], [ -74.292831420898438, -0.772610008716526 ], [ -74.29168701171875, -0.77267998456955 ], [ -74.289543151855469, -0.773438990116063 ], [ -74.287506103515568, -0.775278985500279 ], [ -74.284698486328125, -0.778679013252258 ], [ -74.284210205078125, -0.779929995536804 ], [ -74.283859252929688, -0.782949984073639 ], [ -74.284072875976506, -0.784990012645721 ], [ -74.284660339355412, -0.786481022834664 ], [ -74.286537170410156, -0.789139986038208 ], [ -74.289787292480412, -0.792370021343231 ], [ -74.290550231933537, -0.793819010257664 ], [ -74.290771484374886, -0.794929027557373 ], [ -74.290733337402344, -0.796088993549347 ], [ -74.290672302246037, -0.797940015792733 ], [ -74.290145874023438, -0.799468994140568 ], [ -74.289962768554688, -0.802950024604797 ], [ -74.290069580078068, -0.80501002073288 ], [ -74.290702819824219, -0.807430028915348 ], [ -74.29286956787098, -0.812299013137817 ], [ -74.293540954589844, -0.814799010753575 ], [ -74.293380737304688, -0.815669000148773 ], [ -74.292633056640625, -0.817039012908936 ], [ -74.289382934570312, -0.820971012115479 ], [ -74.289268493652344, -0.821069002151489 ], [ -74.285476684570312, -0.824509978294373 ], [ -74.28424072265625, -0.825160026550293 ], [ -74.282478332519531, -0.825519979000092 ], [ -74.278129577636719, -0.82546097040165 ], [ -74.276649475097599, -0.825169026851597 ], [ -74.268417358398438, -0.820661008358002 ], [ -74.266448974609318, -0.820109009742737 ], [ -74.263870239257756, -0.817839026450997 ], [ -74.26275634765625, -0.817559003829899 ], [ -74.261627197265625, -0.816430985927525 ], [ -74.259277343749943, -0.815549015998783 ], [ -74.257408142089844, -0.814161002635956 ], [ -74.256599426269474, -0.813809990882874 ], [ -74.254112243652344, -0.813688993453923 ], [ -74.250930786132812, -0.814198970794621 ], [ -74.249008178710938, -0.815429985523167 ], [ -74.247451782226506, -0.817101001739502 ], [ -74.247161865234318, -0.818948984146061 ], [ -74.247276306152287, -0.820088982582092 ], [ -74.24871826171875, -0.822440981864872 ], [ -74.253402709960938, -0.826470017433167 ], [ -74.257102966308537, -0.829200983047429 ], [ -74.26190185546875, -0.832300007343292 ], [ -74.264495849609375, -0.834541022777501 ], [ -74.266670227050781, -0.836920022964478 ], [ -74.268577575683594, -0.839509010314941 ], [ -74.270347595214787, -0.842469990253335 ], [ -74.271530151367188, -0.845070004463196 ], [ -74.271575927734318, -0.845188975334167 ], [ -74.272293090820312, -0.847389996051731 ], [ -74.272651672363168, -0.849439024925232 ], [ -74.272796630859375, -0.852881014347076 ], [ -74.272636413574162, -0.856571018695831 ], [ -74.272132873535156, -0.858089029788914 ], [ -74.270797729492188, -0.859979987144413 ], [ -74.269058227539062, -0.863479018211365 ], [ -74.268325805664006, -0.865651011466923 ], [ -74.267936706542969, -0.868420004844609 ], [ -74.268142700195256, -0.870221018791142 ], [ -74.269447326660156, -0.874179005622864 ], [ -74.271156311035156, -0.876929998397827 ], [ -74.271896362304688, -0.877768993377629 ], [ -74.274032592773438, -0.879100024700051 ], [ -74.276649475097599, -0.879930019378548 ], [ -74.279792785644474, -0.879279971122685 ], [ -74.285636901855469, -0.87489998340601 ], [ -74.290611267089844, -0.869508981704712 ], [ -74.293876647949219, -0.867030024528447 ], [ -74.297950744628906, -0.864919006824493 ], [ -74.300102233886662, -0.864139974117279 ], [ -74.303237915039006, -0.863659024238586 ], [ -74.305763244628906, -0.863730013370514 ], [ -74.310028076171818, -0.864499986171666 ], [ -74.313758850097656, -0.865589022636414 ], [ -74.316070556640625, -0.867058992385807 ], [ -74.317947387695256, -0.868750989437046 ], [ -74.319572448730355, -0.87152898311615 ], [ -74.320701599121037, -0.87265902757639 ], [ -74.322067260742188, -0.875599026679936 ], [ -74.322715759277287, -0.878728985786324 ], [ -74.322822570800781, -0.882668972015324 ], [ -74.322547912597656, -0.88472002744669 ], [ -74.321746826171818, -0.88687002658844 ], [ -74.317192077636719, -0.89172899723053 ], [ -74.315727233886662, -0.892769992351475 ], [ -74.314956665039062, -0.893310010433197 ], [ -74.312828063964844, -0.894128978252354 ], [ -74.311027526855469, -0.894279003143197 ], [ -74.307243347167912, -0.893378973007088 ], [ -74.305160522460881, -0.892409980297089 ], [ -74.303810119628849, -0.892288982868138 ], [ -74.300216674804688, -0.892920970916691 ], [ -74.298126220703125, -0.893818974494934 ], [ -74.294937133789006, -0.894089996814728 ], [ -74.29254150390625, -0.894769012928009 ], [ -74.288436889648438, -0.896200001239777 ], [ -74.285438537597656, -0.898211002349854 ], [ -74.282012939453125, -0.901570022106171 ], [ -74.278526306152344, -0.905869007110596 ], [ -74.27761077880848, -0.907149016857147 ], [ -74.276596069335938, -0.909188985824585 ], [ -74.275520324707031, -0.912970006465855 ], [ -74.274978637695312, -0.916370987892151 ], [ -74.274909973144474, -0.918919026851597 ], [ -74.275550842285156, -0.923931002616882 ], [ -74.274528503417912, -0.927249014377594 ], [ -74.273323059082031, -0.929158985614663 ], [ -74.268417358398438, -0.934310019016266 ], [ -74.265197753906193, -0.938480973243657 ], [ -74.264152526855412, -0.940801024436951 ], [ -74.263786315917969, -0.943789005279541 ], [ -74.264053344726506, -0.945819020271301 ], [ -74.265457153320312, -0.948459029197693 ], [ -74.267295837402287, -0.950529992580414 ], [ -74.270812988281193, -0.953840017318726 ], [ -74.266830444335881, -0.96116000413889 ], [ -74.263603210449219, -0.970111012458688 ], [ -74.265861511230412, -0.975399971008301 ], [ -74.269271850585938, -0.978860020637512 ], [ -74.270988464355469, -0.979768991470337 ], [ -74.268035888671875, -0.981779992580414 ], [ -74.265708923339844, -0.983209013938904 ], [ -74.262336730956974, -0.984631001949253 ], [ -74.259117126464844, -0.986570000648442 ], [ -74.253868103027344, -0.988829016685429 ], [ -74.250869750976562, -0.990469992160797 ], [ -74.246788024902287, -0.993008971214181 ], [ -74.239852905273438, -0.99785000085825 ], [ -74.235649108886605, -1.000079035758915 ], [ -74.231559753417969, -1.002398967742863 ], [ -74.227867126464844, -1.005409955978394 ], [ -74.224586486816293, -1.00721001625061 ], [ -74.219139099121037, -1.009271025657654 ], [ -74.214431762695312, -1.010280013084355 ], [ -74.204917907714787, -1.010480999946594 ], [ -74.204360961914006, -1.010179996490479 ], [ -74.203636169433594, -1.010239005088749 ], [ -74.203346252441406, -1.010050058364811 ], [ -74.201148986816406, -1.009819984436035 ], [ -74.200202941894531, -1.009469032287598 ], [ -74.19287109375, -1.008538961410409 ], [ -74.186042785644474, -1.0085209608078 ], [ -74.183601379394531, -1.008718967437744 ], [ -74.183311462402344, -1.008509039878845 ], [ -74.182907104492131, -1.008600950241089 ], [ -74.181747436523381, -1.008270025253239 ], [ -74.180892944335881, -1.007801055908203 ], [ -74.17999267578125, -1.007680058479309 ], [ -74.177207946777344, -1.006239056587219 ], [ -74.175277709960881, -1.005789995193425 ], [ -74.171463012695256, -1.005841016769295 ], [ -74.16845703125, -1.006598949432316 ], [ -74.165550231933537, -1.007650017738229 ], [ -74.164497375488224, -1.008378982543888 ], [ -74.163726806640568, -1.008569002151489 ], [ -74.163406372070312, -1.008898973464966 ], [ -74.163063049316349, -1.008919954299927 ], [ -74.159782409667969, -1.010499000549316 ], [ -74.154487609863224, -1.013849020004216 ], [ -74.150337219238281, -1.016000986099243 ], [ -74.145141601562443, -1.020159959793091 ], [ -74.138618469238281, -1.02658998966217 ], [ -74.137077331542969, -1.027709007263184 ], [ -74.134651184081974, -1.028998970985413 ], [ -74.133270263671875, -1.029438972473088 ], [ -74.126213073730469, -1.030678987503052 ], [ -74.115318298339844, -1.035719990730229 ], [ -74.113845825195256, -1.036219000816288 ], [ -74.110649108886719, -1.03685998916626 ], [ -74.108016967773381, -1.037009954452515 ], [ -74.10585784912098, -1.037668943405151 ], [ -74.102256774902344, -1.039199948310852 ], [ -74.098846435546875, -1.04131102561945 ], [ -74.096366882324219, -1.042459011077881 ], [ -74.093299865722656, -1.043578028678837 ], [ -74.091232299804631, -1.043720006942749 ], [ -74.090232849121094, -1.04416894912714 ], [ -74.087326049804631, -1.044880032539311 ], [ -74.079132080078068, -1.048619985580444 ], [ -74.072006225585938, -1.051288962364197 ], [ -74.065582275390568, -1.052850008010807 ], [ -74.060516357421875, -1.053298950195312 ], [ -74.058715820312443, -1.053239941596928 ], [ -74.056449890136662, -1.052579045295715 ], [ -74.053237915039062, -1.050868988037053 ], [ -74.051338195800781, -1.0495409965514 ], [ -74.051078796386662, -1.049360990524235 ], [ -74.047187805175724, -1.045248985290527 ], [ -74.041023254394531, -1.037160038948059 ], [ -74.039497375488281, -1.035598993301392 ], [ -74.037742614746037, -1.034279942512512 ], [ -74.036293029785156, -1.03227794170374 ], [ -74.036163330078125, -1.031569957733154 ], [ -74.036666870117188, -1.028010010719299 ], [ -74.036720275878906, -1.027830004691964 ], [ -74.037452697753849, -1.025279045104924 ], [ -74.037628173828125, -1.022150039672852 ], [ -74.037322998046875, -1.018200039863473 ], [ -74.036796569824162, -1.01426899433136 ], [ -74.035713195800781, -1.010138988494816 ], [ -74.033699035644531, -1.00721001625061 ], [ -74.031692504882812, -1.005221009254456 ], [ -74.028022766113224, -1.003479003906193 ], [ -74.026123046874943, -1.003159999847412 ], [ -74.025039672851562, -1.003198981285038 ], [ -74.022796630859375, -1.004148960113525 ], [ -74.021720886230412, -1.00481903553009 ], [ -74.018417358398438, -1.007910013198853 ], [ -74.016967773437443, -1.009660005569401 ], [ -74.015823364257756, -1.011659026145935 ], [ -74.014869689941349, -1.014539957046452 ], [ -74.014816284179688, -1.019340038299561 ], [ -74.015129089355412, -1.023000001907292 ], [ -74.015609741210881, -1.024181008338871 ], [ -74.018898010253906, -1.029790043830872 ], [ -74.021827697753849, -1.037029981613045 ], [ -74.022659301757756, -1.040789008140507 ], [ -74.022880554199162, -1.04364001750946 ], [ -74.023208618164062, -1.044980049133244 ], [ -74.023277282714844, -1.050600051879883 ], [ -74.02081298828125, -1.056519031524601 ], [ -74.019226074218693, -1.062098979949894 ], [ -74.018791198730469, -1.06554901599884 ], [ -74.018463134765568, -1.066509008407593 ], [ -74.0184326171875, -1.067878961563054 ], [ -74.017982482910156, -1.069628953933716 ], [ -74.017936706542969, -1.074419975280648 ], [ -74.017601013183594, -1.075649976730233 ], [ -74.017402648925781, -1.078219056129399 ], [ -74.016990661621094, -1.079718947410527 ], [ -74.015975952148438, -1.082298994064274 ], [ -74.015968322753906, -1.082759022712708 ], [ -74.013572692871094, -1.087730050086975 ], [ -74.012336730957031, -1.089779019355774 ], [ -74.00905609130848, -1.094318985938912 ], [ -74.006240844726562, -1.097458958625737 ], [ -74.000717163085938, -1.102149963378906 ], [ -73.997238159179688, -1.104089021682739 ], [ -73.987236022949219, -1.10775005817402 ], [ -73.985252380371094, -1.108119010925293 ], [ -73.983177185058537, -1.107789039611816 ], [ -73.981117248535043, -1.106860995292664 ], [ -73.977890014648438, -1.104429006576538 ], [ -73.976516723632756, -1.102689981460571 ], [ -73.975646972656193, -1.100669026374703 ], [ -73.974868774414062, -1.098091006278992 ], [ -73.974403381347599, -1.094249963760376 ], [ -73.973670959472599, -1.091591000556946 ], [ -73.972763061523438, -1.08987903594965 ], [ -73.970626831054574, -1.087520003318787 ], [ -73.966232299804631, -1.084560036659184 ], [ -73.96319580078125, -1.083588957786503 ], [ -73.9605712890625, -1.083600044250431 ], [ -73.959182739257699, -1.084048986434937 ], [ -73.958152770996094, -1.084638953208923 ], [ -73.957000732421875, -1.086398959159794 ], [ -73.955390930175781, -1.088148951530457 ], [ -73.952682495117131, -1.09315896034235 ], [ -73.952026367187386, -1.096119046211129 ], [ -73.952407836913949, -1.098950028419495 ], [ -73.953666687011719, -1.101719021797123 ], [ -73.955406188964844, -1.103708982467595 ], [ -73.9600830078125, -1.108050942420959 ], [ -73.958282470703125, -1.111150026321411 ], [ -73.957122802734375, -1.116659045219421 ], [ -73.960052490234375, -1.123108983039799 ], [ -73.962181091308594, -1.128280043601933 ], [ -73.960052490234375, -1.130579948425236 ], [ -73.957351684570256, -1.131890058517399 ], [ -73.953399658203125, -1.133008956909123 ], [ -73.950019836425724, -1.133720993995667 ], [ -73.948722839355469, -1.133759021758976 ], [ -73.944206237792855, -1.133198976516724 ], [ -73.943069458007812, -1.132858991622868 ], [ -73.935989379882756, -1.132418990135193 ], [ -73.934188842773381, -1.131770014762822 ], [ -73.932037353515625, -1.130378961562997 ], [ -73.925506591796818, -1.123180031776371 ], [ -73.923286437988224, -1.121399998664799 ], [ -73.920501708984375, -1.119840979576054 ], [ -73.918388366699219, -1.118970036506653 ], [ -73.916770935058594, -1.118680953979492 ], [ -73.916313171386719, -1.11837100982666 ], [ -73.914405822753906, -1.118199944496155 ], [ -73.913612365722656, -1.118330001830998 ], [ -73.911407470703125, -1.119230031967106 ], [ -73.909072875976562, -1.120650053024292 ], [ -73.906646728515625, -1.123270988464355 ], [ -73.903099060058537, -1.129490017890873 ], [ -73.901992797851562, -1.132799983024597 ], [ -73.900360107421875, -1.140908956527596 ], [ -73.897018432617188, -1.149839043617192 ], [ -73.896652221679688, -1.151931047439575 ], [ -73.896553039550781, -1.154139041900635 ], [ -73.896736145019531, -1.15735995769495 ], [ -73.897232055664062, -1.16074895858759 ], [ -73.897293090820312, -1.164350032806396 ], [ -73.896575927734375, -1.167490005493164 ], [ -73.895927429199162, -1.169299960136357 ], [ -73.894096374511719, -1.172798991203308 ], [ -73.890235900878906, -1.178259015083256 ], [ -73.883132934570312, -1.185109972953796 ], [ -73.879417419433537, -1.18891000747675 ], [ -73.877487182617188, -1.191208958625737 ], [ -73.874290466308537, -1.194358944892883 ], [ -73.872520446777344, -1.196629047393799 ], [ -73.870277404785099, -1.200309991836548 ], [ -73.868659973144474, -1.204409956932068 ], [ -73.867706298828068, -1.210669040679875 ], [ -73.867660522460938, -1.216560006141663 ], [ -73.868156433105469, -1.220939040184021 ], [ -73.867958068847656, -1.222210049629211 ], [ -73.866806030273438, -1.224720001220646 ], [ -73.865310668945256, -1.226680040359383 ], [ -73.862876892089844, -1.229040980338993 ], [ -73.860733032226506, -1.230599999427739 ], [ -73.85943603515625, -1.231269955635071 ], [ -73.855369567871094, -1.23284900188446 ], [ -73.847007751464787, -1.234578967094365 ], [ -73.842247009277287, -1.235859990119934 ], [ -73.838096618652344, -1.236350059509164 ], [ -73.832450866699219, -1.23635900020588 ], [ -73.829917907714844, -1.236148953437805 ], [ -73.824729919433594, -1.237108945846558 ], [ -73.822410583496037, -1.238360047340336 ], [ -73.820198059081974, -1.240120053291207 ], [ -73.818458557128906, -1.242009043693542 ], [ -73.815238952636662, -1.246238946914616 ], [ -73.813400268554688, -1.248010039329472 ], [ -73.811470031738281, -1.249029040336609 ], [ -73.807617187499943, -1.249778985977059 ], [ -73.801437377929631, -1.249598979949894 ], [ -73.800277709960881, -1.249429941177311 ], [ -73.798271179199162, -1.248538970947266 ], [ -73.796447753906193, -1.247310042381287 ], [ -73.793746948242188, -1.243268966674748 ], [ -73.791770935058594, -1.241230010986271 ], [ -73.789726257324219, -1.239989995956421 ], [ -73.789016723632756, -1.239879965782109 ], [ -73.787742614746094, -1.240079045295715 ], [ -73.784255981445256, -1.241610050201416 ], [ -73.782180786132699, -1.243420004844552 ], [ -73.781188964843693, -1.244948983192387 ], [ -73.780998229980412, -1.248069047927856 ], [ -73.782318115234375, -1.252470016479492 ], [ -73.784111022949219, -1.25619900226593 ], [ -73.784210205078125, -1.257140040397644 ], [ -73.78375244140625, -1.257990002632084 ], [ -73.782989501953125, -1.258728981018066 ], [ -73.78143310546875, -1.259498953819218 ], [ -73.779228210449219, -1.260059952735844 ], [ -73.773612976074219, -1.260658979415837 ], [ -73.766731262206918, -1.260738968849182 ], [ -73.765151977539062, -1.26003897190094 ], [ -73.764427185058537, -1.259469985961857 ], [ -73.762817382812386, -1.257480025291386 ], [ -73.761146545410156, -1.253489017486515 ], [ -73.760246276855355, -1.25022101402277 ], [ -73.758911132812386, -1.24688899517048 ], [ -73.757308959960938, -1.243688941001892 ], [ -73.7568359375, -1.242969036102295 ], [ -73.755119323730469, -1.240290999412537 ], [ -73.752967834472599, -1.235131025314331 ], [ -73.752555847167969, -1.231369972229004 ], [ -73.75274658203125, -1.223270058631897 ], [ -73.752662658691406, -1.221511006355286 ], [ -73.752616882324105, -1.220510005950928 ], [ -73.753166198730412, -1.216130018234139 ], [ -73.753456115722599, -1.208770036697388 ], [ -73.753448486328068, -1.205919027328434 ], [ -73.753067016601506, -1.204300999641418 ], [ -73.752037048339787, -1.202919960021916 ], [ -73.74965667724598, -1.201060056686401 ], [ -73.746818542480469, -1.199808955192566 ], [ -73.744293212890568, -1.199679017066956 ], [ -73.743026733398438, -1.200839042663517 ], [ -73.742675781249943, -1.20284903049469 ], [ -73.742729187011719, -1.203580975532532 ], [ -73.743751525878906, -1.205940008163452 ], [ -73.744331359863281, -1.208179950714111 ], [ -73.744361877441406, -1.212041020393372 ], [ -73.743827819824162, -1.21596097946167 ], [ -73.742523193359375, -1.218968987464848 ], [ -73.741401672363281, -1.223148941993657 ], [ -73.741256713867131, -1.226449012756291 ], [ -73.741516113281193, -1.228829026222229 ], [ -73.741531372070256, -1.232139945030156 ], [ -73.740791320800668, -1.236668944358712 ], [ -73.740013122558537, -1.238499045372009 ], [ -73.738960266113224, -1.240010023117065 ], [ -73.733886718749943, -1.245280027389526 ], [ -73.731842041015625, -1.246799945831299 ], [ -73.728813171386719, -1.248458981513977 ], [ -73.721893310546818, -1.251008987426701 ], [ -73.716590881347656, -1.252359032630864 ], [ -73.713066101074219, -1.252738952636719 ], [ -73.711502075195256, -1.253219962119999 ], [ -73.707901000976562, -1.253659963607788 ], [ -73.705017089843693, -1.253690004348698 ], [ -73.702133178710881, -1.253309011459294 ], [ -73.700027465820312, -1.252738952636719 ], [ -73.696876525878906, -1.251060009002686 ], [ -73.690711975097599, -1.244680047035217 ], [ -73.686500549316349, -1.241451025009098 ], [ -73.682952880859375, -1.239588975906372 ], [ -73.680061340332031, -1.239269971847477 ], [ -73.677581787109375, -1.239889979362488 ], [ -73.675506591796875, -1.240828990936222 ], [ -73.670883178710824, -1.243999004364014 ], [ -73.667892456054631, -1.245761036872864 ], [ -73.665092468261719, -1.247810006141606 ], [ -73.661117553710938, -1.25196897983551 ], [ -73.656478881835881, -1.259560942649728 ], [ -73.652763366699105, -1.26361095905304 ], [ -73.649101257324219, -1.265789985656738 ], [ -73.645370483398438, -1.267498970031738 ], [ -73.639129638671761, -1.26875901222229 ], [ -73.636222839355469, -1.268720984458866 ], [ -73.63275146484375, -1.268319010734444 ], [ -73.629478454589787, -1.266950011253357 ], [ -73.626663208007812, -1.264600038528442 ], [ -73.622261047363281, -1.260458946227971 ], [ -73.621139526367188, -1.260411024093628 ], [ -73.620475769042969, -1.260630011558419 ], [ -73.619857788085881, -1.261559963226262 ], [ -73.619445800781193, -1.262678980827332 ], [ -73.618629455566406, -1.266929030418339 ], [ -73.618309020996037, -1.269860029220581 ], [ -73.617767333984261, -1.272101044654789 ], [ -73.61757659912098, -1.287739992141667 ], [ -73.616287231445312, -1.293930053710938 ], [ -73.615966796875, -1.298889994621277 ], [ -73.614860534667969, -1.306910037994271 ], [ -73.613662719726449, -1.311998963356018 ], [ -73.612457275390625, -1.315659046173096 ], [ -73.611289978027344, -1.318380951881295 ], [ -73.610397338867131, -1.319630026817322 ], [ -73.607505798339844, -1.322440028190499 ], [ -73.603736877441349, -1.325170040130558 ], [ -73.598960876464787, -1.327829957008362 ], [ -73.595863342285156, -1.328881025314331 ], [ -73.59249114990223, -1.328768968582153 ], [ -73.588981628417969, -1.327800035476685 ], [ -73.585891723632756, -1.326028943061829 ], [ -73.584236145019531, -1.324458956718388 ], [ -73.580421447753906, -1.321599006652832 ], [ -73.577262878417969, -1.319929957389775 ], [ -73.574836730956974, -1.319118976593018 ], [ -73.573486328124943, -1.319038987159729 ], [ -73.571540832519531, -1.31955003738392 ], [ -73.569892883300668, -1.321109056472778 ], [ -73.568946838378906, -1.322579026222229 ], [ -73.568511962890625, -1.324839949607735 ], [ -73.568817138671818, -1.326159000396672 ], [ -73.573051452636719, -1.331820964813176 ], [ -73.577735900878906, -1.335909962654057 ], [ -73.578956604003906, -1.337960958480835 ], [ -73.579483032226562, -1.339629054069519 ], [ -73.579498291015568, -1.340010046958923 ], [ -73.579551696777344, -1.34109902381897 ], [ -73.578666687011605, -1.345149040222111 ], [ -73.578361511230412, -1.34824895858759 ], [ -73.578186035156136, -1.357830047607422 ], [ -73.577995300292855, -1.35971999168396 ], [ -73.577766418457031, -1.360430955886841 ], [ -73.575889587402287, -1.362920045852661 ], [ -73.5711669921875, -1.367380023002625 ], [ -73.568176269531136, -1.3698890209198 ], [ -73.566459655761605, -1.371669054031372 ], [ -73.563758850097599, -1.374889969825631 ], [ -73.560836791992188, -1.379291057586613 ], [ -73.560371398925781, -1.380581021308842 ], [ -73.55999755859375, -1.380990982055607 ], [ -73.558998107910099, -1.383149027824402 ], [ -73.558341979980412, -1.38391900062561 ], [ -73.557762145996037, -1.385449051856938 ], [ -73.553466796874943, -1.393540024757385 ], [ -73.552772521972656, -1.395239949226323 ], [ -73.551597595214844, -1.398519992828369 ], [ -73.550521850585881, -1.402510046958866 ], [ -73.550369262695312, -1.407088994979802 ], [ -73.551078796386662, -1.410410046577454 ], [ -73.552619934081974, -1.413650989532414 ], [ -73.554649353027344, -1.416010022163334 ], [ -73.555328369140625, -1.416470050811768 ], [ -73.552078247070312, -1.429059982299748 ], [ -73.552085876464844, -1.429219961166382 ], [ -73.548988342285099, -1.429249048232975 ], [ -73.540283203125, -1.430680990219116 ], [ -73.537910461425724, -1.431589961051941 ], [ -73.536079406738281, -1.432628989219552 ], [ -73.533927917480412, -1.434299945831299 ], [ -73.532478332519474, -1.435958981513977 ], [ -73.53167724609375, -1.437600016593819 ], [ -73.531227111816406, -1.439270973205566 ], [ -73.530776977539006, -1.44235897064209 ], [ -73.53082275390625, -1.452669978141785 ], [ -73.5306396484375, -1.456519007682743 ], [ -73.529777526855469, -1.460950016975403 ], [ -73.528388977050724, -1.465518951415959 ], [ -73.526252746582031, -1.468709945678654 ], [ -73.520057678222656, -1.475069046020508 ], [ -73.518020629882812, -1.477761030197144 ], [ -73.515701293945256, -1.47983002662653 ], [ -73.513359069824219, -1.481258988380432 ], [ -73.510818481445312, -1.482229948043766 ], [ -73.506576538085938, -1.483299016952458 ], [ -73.503677368164006, -1.483649969100952 ], [ -73.501686096191349, -1.483620047569218 ], [ -73.493392944335881, -1.482028961181584 ], [ -73.492286682128906, -1.481979012489319 ], [ -73.490776062011719, -1.482310056686345 ], [ -73.489311218261719, -1.483669996261597 ], [ -73.487503051757812, -1.487290024757328 ], [ -73.486045837402287, -1.491729021072388 ], [ -73.485671997070256, -1.494369029998779 ], [ -73.485877990722656, -1.495921015739441 ], [ -73.486587524414062, -1.497998952865601 ], [ -73.488937377929688, -1.502158999443054 ], [ -73.491142272949219, -1.504449009895325 ], [ -73.493438720703125, -1.505939960479736 ], [ -73.494346618652287, -1.507091045379582 ], [ -73.495086669921818, -1.509060025215035 ], [ -73.494972229003906, -1.51056003570551 ], [ -73.493949890136662, -1.512570023536625 ], [ -73.492668151855469, -1.514358997344914 ], [ -73.490386962890625, -1.516330003738403 ], [ -73.489875793456918, -1.516579031944275 ], [ -73.487701416015625, -1.517680048942566 ], [ -73.481849670410099, -1.518949031829777 ], [ -73.479957580566293, -1.52020001411438 ], [ -73.479103088378793, -1.521410942077637 ], [ -73.478675842285156, -1.52262103557581 ], [ -73.478569030761719, -1.527308940887394 ], [ -73.478660583496094, -1.529880046844426 ], [ -73.479248046875, -1.533009052276611 ], [ -73.481925964355412, -1.541708946227971 ], [ -73.482933044433594, -1.544270038604736 ], [ -73.484451293945312, -1.547320008277893 ], [ -73.484939575195312, -1.548660039901733 ], [ -73.482337951660099, -1.55217003822321 ], [ -73.481620788574219, -1.558611035346985 ], [ -73.48635101318348, -1.571038961410522 ], [ -73.487266540527287, -1.572939991950989 ], [ -73.486839294433594, -1.573320031166077 ], [ -73.484107971191406, -1.574339032173043 ], [ -73.478546142578125, -1.574659943580627 ], [ -73.474983215331974, -1.573989987373295 ], [ -73.473716735839844, -1.573279023170414 ], [ -73.469841003417912, -1.569499969482422 ], [ -73.468643188476562, -1.568668961524907 ], [ -73.466438293457031, -1.567559003829842 ], [ -73.463783264160156, -1.566920042037907 ], [ -73.461135864257756, -1.567100048065072 ], [ -73.459121704101562, -1.568140029907227 ], [ -73.458267211914062, -1.569241046905518 ], [ -73.457267761230469, -1.57318997383112 ], [ -73.457412719726562, -1.577249050140324 ], [ -73.458862304687443, -1.58092999458313 ], [ -73.462997436523438, -1.588029980659485 ], [ -73.466567993164062, -1.592579007148686 ], [ -73.468643188476562, -1.594650983810425 ], [ -73.471740722656193, -1.596920967102051 ], [ -73.471847534179631, -1.59703004360199 ], [ -73.472778320312443, -1.597951054573002 ], [ -73.474792480468693, -1.5990309715271 ], [ -73.474967956542912, -1.599141001701298 ], [ -73.476699829101506, -1.60043096542347 ], [ -73.479209899902344, -1.602298974990845 ], [ -73.480369567871094, -1.603060960769596 ], [ -73.493766784667912, -1.61191999912262 ], [ -73.496246337890568, -1.614248991012573 ], [ -73.498435974121037, -1.616709947586003 ], [ -73.503646850585938, -1.623530030250492 ], [ -73.505081176757812, -1.626260042190552 ], [ -73.506446838378849, -1.628211021423283 ], [ -73.506599426269531, -1.628831028938237 ], [ -73.507972717285099, -1.630658984184265 ], [ -73.509117126464787, -1.634250998497009 ], [ -73.509361267089844, -1.637179017066899 ], [ -73.509262084960938, -1.637909054756165 ], [ -73.508453369140568, -1.639758944511414 ], [ -73.508270263671818, -1.642791032791138 ], [ -73.508247375488224, -1.646929025649968 ], [ -73.508537292480412, -1.648370027542114 ], [ -73.509941101074219, -1.651260018348694 ], [ -73.510910034179688, -1.652709007263127 ], [ -73.512046813964844, -1.655218958854675 ], [ -73.51434326171875, -1.658769965171757 ], [ -73.514442443847656, -1.659330010414124 ], [ -73.517021179199162, -1.664608955383301 ], [ -73.517478942871094, -1.666010022163391 ], [ -73.518638610839844, -1.667659997940007 ], [ -73.522277832031193, -1.671229958534184 ], [ -73.525421142578068, -1.673738956451416 ], [ -73.527137756347599, -1.67540001869196 ], [ -73.532157897949219, -1.679219961166325 ], [ -73.535423278808594, -1.682018995285034 ], [ -73.538246154785156, -1.685138940811157 ], [ -73.539016723632812, -1.686810016631966 ], [ -73.5396728515625, -1.692819952964726 ], [ -73.539703369140625, -1.695399999618473 ], [ -73.539459228515568, -1.69749903678894 ], [ -73.538963317871037, -1.698789000511113 ], [ -73.537330627441406, -1.701449036598149 ], [ -73.534889221191293, -1.704048991203251 ], [ -73.533531188964787, -1.705870032310429 ], [ -73.529426574706974, -1.709509968757629 ], [ -73.528541564941406, -1.709959030151367 ], [ -73.526771545410099, -1.711310029029846 ], [ -73.526588439941349, -1.711459040641785 ], [ -73.523986816406193, -1.712798953056279 ], [ -73.521270751953125, -1.714938998222351 ], [ -73.517417907714787, -1.717010974883976 ], [ -73.513076782226562, -1.719709038734436 ], [ -73.510482788085938, -1.720999002456665 ], [ -73.501426696777344, -1.728968977928105 ], [ -73.500106811523438, -1.729539036750737 ], [ -73.498062133789006, -1.730350017547551 ], [ -73.496086120605469, -1.730769991874695 ], [ -73.491188049316349, -1.730970025062561 ], [ -73.487297058105412, -1.732269048690796 ], [ -73.483200073242074, -1.732349038124084 ], [ -73.4813232421875, -1.732079982757568 ], [ -73.478591918945256, -1.732349038124084 ], [ -73.472816467285156, -1.734019994735661 ], [ -73.469512939453125, -1.734719038009587 ], [ -73.467140197753906, -1.734709978103638 ], [ -73.464523315429688, -1.734370946884155 ], [ -73.462608337402344, -1.73445999622345 ], [ -73.460556030273438, -1.735239028930664 ], [ -73.457817077636662, -1.737169981002694 ], [ -73.454277038574162, -1.741130948066711 ], [ -73.453323364257756, -1.742898941039982 ], [ -73.452529907226562, -1.745131015777588 ], [ -73.450820922851562, -1.747410058975106 ], [ -73.439163208007812, -1.758219957351628 ], [ -73.437149047851562, -1.760480999946537 ], [ -73.436019897460938, -1.762459039688054 ], [ -73.435516357421761, -1.763659954071045 ], [ -73.435173034667969, -1.765369057655278 ], [ -73.435127258300724, -1.771059989929142 ], [ -73.435386657714787, -1.777029037475529 ], [ -73.435012817382756, -1.779760003089905 ], [ -73.433609008788949, -1.784610033035278 ], [ -73.431816101074219, -1.787930011749268 ], [ -73.430427551269474, -1.789489030838013 ], [ -73.429389953613224, -1.789819955825806 ], [ -73.428207397460938, -1.789899945259094 ], [ -73.424606323242188, -1.789859056472778 ], [ -73.422019958496094, -1.789320945739746 ], [ -73.416366577148438, -1.787490963935852 ], [ -73.411628723144531, -1.786528944969177 ], [ -73.409637451171818, -1.78587901592249 ], [ -73.407951354980412, -1.784639000892639 ], [ -73.406143188476449, -1.782340049743652 ], [ -73.404136657714787, -1.781139016151428 ], [ -73.402229309081974, -1.779428958892765 ], [ -73.397056579589787, -1.775979042053166 ], [ -73.394416809081918, -1.774938941001835 ], [ -73.391647338867074, -1.774440050125065 ], [ -73.388557434082031, -1.774659037590027 ], [ -73.385589599609375, -1.77521097660059 ], [ -73.379592895507812, -1.777379989624023 ], [ -73.373703002929631, -1.780509948730412 ], [ -73.370231628417969, -1.782879948615914 ], [ -73.36181640625, -1.790058970451298 ], [ -73.358383178710938, -1.792309045791569 ], [ -73.354629516601506, -1.794379949569645 ], [ -73.351409912109375, -1.79591000080103 ], [ -73.347778320312386, -1.797111034393254 ], [ -73.345352172851562, -1.798171043395996 ], [ -73.340530395507699, -1.799780011177006 ], [ -73.339813232421875, -1.799788951873722 ], [ -73.336112976074162, -1.800719022750854 ], [ -73.334480285644531, -1.801349997520447 ], [ -73.332801818847599, -1.802891016006413 ], [ -73.329612731933594, -1.808109998703003 ], [ -73.328048706054688, -1.811329960823059 ], [ -73.326271057128906, -1.816249012947083 ], [ -73.322677612304631, -1.822849035263062 ], [ -73.319862365722656, -1.825189948081913 ], [ -73.317428588867131, -1.82620894908905 ], [ -73.314506530761719, -1.826998949050846 ], [ -73.311157226562386, -1.827170014381295 ], [ -73.309165954589844, -1.827509999275208 ], [ -73.306266784667912, -1.827299952506962 ], [ -73.304298400878906, -1.826148986816406 ], [ -73.304145812988281, -1.826040029525757 ], [ -73.305686950683537, -1.818689942359924 ], [ -73.305259704589844, -1.814321041107121 ], [ -73.303749084472656, -1.8123699426651 ], [ -73.305152893066293, -1.810451030731144 ], [ -73.306816101074219, -1.80751097202301 ], [ -73.308349609375, -1.80357897281641 ], [ -73.308609008789062, -1.801669001579285 ], [ -73.308341979980469, -1.796440958976689 ], [ -73.309013366699219, -1.791519999504089 ], [ -73.308761596679631, -1.787479043006897 ], [ -73.307197570800781, -1.783969044685307 ], [ -73.303565979003906, -1.780089974403381 ], [ -73.301689147949162, -1.778789043426457 ], [ -73.298202514648438, -1.777130007743835 ], [ -73.290161132812443, -1.775488972663766 ], [ -73.28704833984375, -1.776028990745544 ], [ -73.280952453613281, -1.779149055480957 ], [ -73.277946472167912, -1.780208945274296 ], [ -73.274551391601562, -1.781790018081551 ], [ -73.271865844726449, -1.782279968261719 ], [ -73.268142700195256, -1.782150983810425 ], [ -73.255043029785156, -1.780320048332158 ], [ -73.250480651855412, -1.780370950698853 ], [ -73.249397277832031, -1.78059804439539 ], [ -73.247695922851562, -1.781468987464905 ], [ -73.246719360351562, -1.782279968261719 ], [ -73.24462890625, -1.784579992294255 ], [ -73.243919372558537, -1.78656101226801 ], [ -73.244026184082031, -1.788571000099125 ], [ -73.245208740234375, -1.790750026702824 ], [ -73.247352600097599, -1.792719006538334 ], [ -73.250236511230469, -1.79387903213501 ], [ -73.253929138183537, -1.794859051704407 ], [ -73.255287170410156, -1.795629024505558 ], [ -73.256538391113281, -1.796718955039921 ], [ -73.257270812988224, -1.798288941383362 ], [ -73.257431030273381, -1.800127983093205 ], [ -73.257301330566406, -1.801499962806702 ], [ -73.256896972656136, -1.802531003952026 ], [ -73.256187438964844, -1.803590059280339 ], [ -73.254776000976506, -1.804528951644897 ], [ -73.253829956054631, -1.805160999297982 ], [ -73.2510986328125, -1.806079030036869 ], [ -73.248367309570312, -1.806208968162537 ], [ -73.247116088867188, -1.805920004844666 ], [ -73.246940612792912, -1.805840015411377 ], [ -73.241996765136662, -1.803709030151367 ], [ -73.237808227539006, -1.802870035171509 ], [ -73.235816955566293, -1.801748991012573 ], [ -73.233177185058594, -1.79882895946497 ], [ -73.231269836425781, -1.794888973236084 ], [ -73.231033325195256, -1.794389963150024 ], [ -73.230178833007756, -1.792068958282414 ], [ -73.229476928710938, -1.788840055465641 ], [ -73.229507446289006, -1.782678961753845 ], [ -73.2301025390625, -1.779649972915649 ], [ -73.230300903320312, -1.77862894535059 ], [ -73.230606079101562, -1.773398995399418 ], [ -73.231880187988224, -1.766749978065491 ], [ -73.231842041015625, -1.759950041770821 ], [ -73.231422424316349, -1.757318973541203 ], [ -73.230712890625, -1.755321025848332 ], [ -73.230270385742131, -1.754588961601257 ], [ -73.226478576660156, -1.75101101398468 ], [ -73.223312377929631, -1.749001026153564 ], [ -73.221496582031193, -1.748340010642949 ], [ -73.216659545898438, -1.749109983444214 ], [ -73.214622497558537, -1.750319957733154 ], [ -73.213340759277344, -1.751479983329773 ], [ -73.211875915527287, -1.753260016441345 ], [ -73.211120605468636, -1.754701018333378 ], [ -73.210212707519531, -1.75574004650116 ], [ -73.208549499511719, -1.75822901725769 ], [ -73.206298828125, -1.76294898986805 ], [ -73.203742980956974, -1.766520023345947 ], [ -73.203002929687443, -1.768779039382935 ], [ -73.201416015625, -1.77209997177124 ], [ -73.201103210449105, -1.773349046707153 ], [ -73.199867248535043, -1.775990009307861 ], [ -73.199417114257812, -1.777590036392098 ], [ -73.197189331054631, -1.783089995384159 ], [ -73.193466186523381, -1.790251016616764 ], [ -73.192687988281193, -1.791260004043522 ], [ -73.189178466796818, -1.800099015235844 ], [ -73.189086914062386, -1.80119001865387 ], [ -73.187911987304631, -1.805819034576416 ], [ -73.187461853027287, -1.80682897567749 ], [ -73.186599731445256, -1.807888984680176 ], [ -73.185691833496094, -1.808328986167794 ], [ -73.184432983398438, -1.808411002159119 ], [ -73.179489135742188, -1.807590007781926 ], [ -73.175277709960938, -1.80558001995081 ], [ -73.171173095703125, -1.802531003952026 ], [ -73.169830322265625, -1.801959037780705 ], [ -73.165000915527344, -1.801789999008122 ], [ -73.157806396484261, -1.801928997039795 ], [ -73.156539916992131, -1.80171895027155 ], [ -73.156272888183537, -1.80148005485529 ], [ -73.150306701660156, -1.800801038742009 ], [ -73.149421691894531, -1.80098104476923 ], [ -73.148361206054631, -1.80171895027155 ], [ -73.14760589599598, -1.80272901058197 ], [ -73.146820068359318, -1.804608941078129 ], [ -73.145927429199219, -1.809399962425232 ], [ -73.145286560058537, -1.811108946800232 ], [ -73.145301818847599, -1.813868999481201 ], [ -73.144943237304688, -1.817428946494999 ], [ -73.144737243652287, -1.823129057884216 ], [ -73.144805908203068, -1.825608968734684 ], [ -73.145767211914006, -1.829720973968506 ], [ -73.146171569824105, -1.830409049987793 ], [ -73.142585754394531, -1.833968997001648 ], [ -73.139801025390625, -1.84476101398468 ], [ -73.139739990234375, -1.853899955749512 ], [ -73.139747619628849, -1.854650020599308 ], [ -73.141510009765625, -1.868370056152287 ], [ -73.139167785644531, -1.869719982147217 ], [ -73.136268615722656, -1.871000051498413 ], [ -73.132865905761719, -1.87208104133606 ], [ -73.128807067871037, -1.87260901927948 ], [ -73.125831604003849, -1.872228980064392 ], [ -73.120277404785156, -1.870880007743835 ], [ -73.117996215820312, -1.870700001716614 ], [ -73.11474609375, -1.871101021766663 ], [ -73.113311767578125, -1.871628999710083 ], [ -73.111648559570199, -1.87306094169611 ], [ -73.110130310058594, -1.875448942184335 ], [ -73.1094970703125, -1.876989960670471 ], [ -73.108581542968693, -1.880319952964726 ], [ -73.1077880859375, -1.885341048240662 ], [ -73.107666015625, -1.891041040420532 ], [ -73.107406616210938, -1.893391013145447 ], [ -73.107841491699219, -1.894489049911499 ], [ -73.108497619628849, -1.895388960838261 ], [ -73.108535766601562, -1.896021008491516 ], [ -73.109306335449219, -1.897261023521423 ], [ -73.111648559570199, -1.900439977645817 ], [ -73.112518310546875, -1.901249051094055 ], [ -73.114006042480412, -1.903619050979557 ], [ -73.114196777343693, -1.90385901927948 ], [ -73.116302490234318, -1.90647995471943 ], [ -73.117523193359375, -1.908949971199036 ], [ -73.118659973144531, -1.912238955497742 ], [ -73.118736267089844, -1.914729952812195 ], [ -73.118476867675781, -1.916919946670532 ], [ -73.117576599121094, -1.919911026954537 ], [ -73.116401672363224, -1.922181010246277 ], [ -73.11566162109375, -1.924929022788945 ], [ -73.114662170410156, -1.926959991455078 ], [ -73.113571166992188, -1.931319952011108 ], [ -73.112701416015511, -1.938969016075134 ], [ -73.112739562988281, -1.944939970970097 ], [ -73.113227844238281, -1.950700044631958 ], [ -73.114868164062443, -1.9617600440979 ], [ -73.115486145019531, -1.964519977569466 ], [ -73.116516113281136, -1.967561006546021 ], [ -73.11663818359375, -1.96875 ], [ -73.116867065429631, -1.969400048255864 ], [ -73.118919372558594, -1.972249031066838 ], [ -73.121170043945256, -1.975020051002502 ], [ -73.123466491699162, -1.979900002479553 ], [ -73.123779296875, -1.981649994850102 ], [ -73.123672485351562, -1.9843989610672 ], [ -73.123252868652287, -1.986650943756104 ], [ -73.122268676757812, -1.989989995956364 ], [ -73.121986389160156, -1.993088960647526 ], [ -73.122261047363281, -1.996099948883 ], [ -73.123649597167912, -2.000108957290649 ], [ -73.123657226562443, -2.001759052276611 ], [ -73.123069763183537, -2.003438949584904 ], [ -73.123046875, -2.005830049514771 ], [ -73.121932983398381, -2.0103600025177 ], [ -73.121322631835938, -2.011801004409733 ], [ -73.118751525878906, -2.015538930892944 ], [ -73.116676330566349, -2.017468929290658 ], [ -73.112152099609375, -2.020359039306584 ], [ -73.112052917480469, -2.020421028137207 ], [ -73.102256774902344, -2.024848937988224 ], [ -73.099922180175668, -2.026279926299992 ], [ -73.097618103027287, -2.028059959411564 ], [ -73.096153259277344, -2.029908895492497 ], [ -73.094642639160099, -2.032211065292358 ], [ -73.093826293945312, -2.034648895263672 ], [ -73.09356689453125, -2.036931037902832 ], [ -73.093627929687386, -2.039589881896973 ], [ -73.094535827636719, -2.042860984802189 ], [ -73.095466613769531, -2.045260906219426 ], [ -73.098060607910156, -2.049149036407471 ], [ -73.10182952880848, -2.053529977798462 ], [ -73.103385925292969, -2.055639982223511 ], [ -73.102828979492188, -2.056330919265747 ], [ -73.093917846679688, -2.056519985198975 ], [ -73.092079162597599, -2.058350086212101 ], [ -73.086585998535156, -2.061769008636475 ], [ -73.085876464843693, -2.065439939498901 ], [ -73.08648681640625, -2.080158948898202 ], [ -73.088920593261662, -2.084480047225952 ], [ -73.087890624999943, -2.084450960159245 ], [ -73.074691772460938, -2.081578969955387 ], [ -73.073066711425781, -2.081758975982609 ], [ -73.070632934570256, -2.083009958267212 ], [ -73.070213317871094, -2.083508968353271 ], [ -73.069686889648324, -2.085540056228581 ], [ -73.069946289062443, -2.092449903488102 ], [ -73.07064056396473, -2.096999883651677 ], [ -73.071479797363224, -2.100759983062744 ], [ -73.072196960449219, -2.102658987045231 ], [ -73.073959350585881, -2.105220079421997 ], [ -73.075736999511719, -2.10680890083313 ], [ -73.081016540527287, -2.109760046005192 ], [ -73.084739685058537, -2.111268997192383 ], [ -73.086456298828068, -2.112788915634155 ], [ -73.090995788574219, -2.115309953689462 ], [ -73.091087341308594, -2.115360021591187 ], [ -73.095252990722656, -2.11851000785822 ], [ -73.097976684570256, -2.120198965072575 ], [ -73.102462768554631, -2.121989965438786 ], [ -73.107215881347656, -2.123348951339665 ], [ -73.108306884765568, -2.123828887939396 ], [ -73.111099243164062, -2.125391006469727 ], [ -73.112342834472656, -2.126631021499577 ], [ -73.114349365234375, -2.130330085754395 ], [ -73.117233276367188, -2.138679981231689 ], [ -73.119026184082031, -2.142790079116821 ], [ -73.119331359863281, -2.144431114196721 ], [ -73.121299743652344, -2.151408910751343 ], [ -73.121803283691406, -2.156711101531982 ], [ -73.122772216796818, -2.163358926773071 ], [ -73.123748779296818, -2.167738914489746 ], [ -73.125221252441406, -2.171408891677856 ], [ -73.12835693359375, -2.17818903923029 ], [ -73.129226684570312, -2.179569959640503 ], [ -73.131668090820256, -2.182209968566895 ], [ -73.133560180664006, -2.183640956878662 ], [ -73.139129638671875, -2.186430931091309 ], [ -73.141227722167969, -2.187060117721558 ], [ -73.143760681152287, -2.187439918518066 ], [ -73.146759033203125, -2.187529087066594 ], [ -73.149116516113224, -2.187299013137817 ], [ -73.152687072753906, -2.186578989028931 ], [ -73.155967712402287, -2.186338901519775 ], [ -73.158966064453125, -2.185580015182438 ], [ -73.163482666015625, -2.185631036758423 ], [ -73.166282653808537, -2.186450958251953 ], [ -73.167182922363281, -2.186908960342407 ], [ -73.170738220214844, -2.189990997314453 ], [ -73.171340942382756, -2.190900087356567 ], [ -73.171806335449162, -2.192500114440861 ], [ -73.172157287597656, -2.194299936294556 ], [ -73.172279357910099, -2.196599960327148 ], [ -73.170639038085938, -2.204689025878906 ], [ -73.17059326171875, -2.209189891815129 ], [ -73.169830322265625, -2.215569019317627 ], [ -73.169715881347599, -2.218139886855965 ], [ -73.168846130371037, -2.223388910293465 ], [ -73.167030334472599, -2.230437994003296 ], [ -73.164588928222656, -2.237251043319702 ], [ -73.161758422851562, -2.243299961090031 ], [ -73.158821105956974, -2.248889923095589 ], [ -73.155311584472599, -2.254129886627197 ], [ -73.155052185058594, -2.254519939422607 ], [ -73.153297424316349, -2.257529973983765 ], [ -73.152046203613281, -2.259320020675602 ], [ -73.150436401367131, -2.260940074920654 ], [ -73.144828796386662, -2.265300035476628 ], [ -73.138442993164006, -2.271159887313843 ], [ -73.136482238769531, -2.272670984268132 ], [ -73.134506225585881, -2.273618936538696 ], [ -73.129051208496094, -2.275070905685368 ], [ -73.125129699707031, -2.277189970016479 ], [ -73.12396240234375, -2.278178930282536 ], [ -73.120307922363224, -2.28226995468134 ], [ -73.117767333984375, -2.286288976669255 ], [ -73.116050720214844, -2.289558887481689 ], [ -73.114517211914062, -2.293780088424683 ], [ -73.114448547363281, -2.29581093788147 ], [ -73.114692687988224, -2.297240018844548 ], [ -73.115547180175724, -2.299078941345215 ], [ -73.116661071777344, -2.300770044326782 ], [ -73.121368408203068, -2.305910110473633 ], [ -73.122772216796818, -2.30784010887146 ], [ -73.124122619628849, -2.31076002120966 ], [ -73.124862670898438, -2.313318967819214 ], [ -73.120162963867188, -2.319031000137272 ], [ -73.113906860351506, -2.326549053192139 ], [ -73.112419128417969, -2.326658964157104 ], [ -73.111183166503906, -2.326318979263249 ], [ -73.109275817871094, -2.326200962066537 ], [ -73.104049682617188, -2.325319051742554 ], [ -73.102066040039062, -2.324630022048893 ], [ -73.100357055664062, -2.324371099471932 ], [ -73.098396301269418, -2.323379039764404 ], [ -73.094551086425724, -2.320439100265503 ], [ -73.087509155273381, -2.312999963760319 ], [ -73.085708618163949, -2.311748981475716 ], [ -73.083351135253906, -2.310739040374756 ], [ -73.080886840820312, -2.310549974441528 ], [ -73.074485778808594, -2.311470985412541 ], [ -73.072547912597543, -2.312069892883301 ], [ -73.070602416992188, -2.313088893890324 ], [ -73.068153381347599, -2.31483006477356 ], [ -73.066085815429688, -2.317019939422607 ], [ -73.065032958984375, -2.320719003677368 ], [ -73.064743041992188, -2.32299900054926 ], [ -73.064796447753849, -2.32584095001215 ], [ -73.0654296875, -2.329380035400277 ], [ -73.066818237304631, -2.332870006561222 ], [ -73.069122314453125, -2.337270975112858 ], [ -73.069999694824219, -2.340260982513371 ], [ -73.070236206054631, -2.344650030136052 ], [ -73.06964111328125, -2.348370075225716 ], [ -73.068801879882756, -2.350548982620239 ], [ -73.067871093749943, -2.352360963821411 ], [ -73.06646728515625, -2.355099916458073 ], [ -73.063766479492131, -2.358078956603947 ], [ -73.063018798828125, -2.358598947525024 ], [ -73.058601379394474, -2.360318899154663 ], [ -73.056976318359318, -2.360579013824463 ], [ -73.056030273437443, -2.360579013824463 ], [ -73.055068969726506, -2.3605699539184 ], [ -73.051200866699219, -2.359489917755127 ], [ -73.049873352050781, -2.3588609695434 ], [ -73.047515869140625, -2.356969118118286 ], [ -73.046646118164062, -2.355909109115601 ], [ -73.044807434082031, -2.352509021759033 ], [ -73.043823242187443, -2.348880052566528 ], [ -73.043502807617188, -2.346518993377629 ], [ -73.044006347656193, -2.341120004653817 ], [ -73.043960571289062, -2.334419012069702 ], [ -73.044296264648381, -2.330298900604191 ], [ -73.043708801269531, -2.327609062194767 ], [ -73.042060852050781, -2.322150945663395 ], [ -73.041839599609261, -2.320599079132023 ], [ -73.040863037109318, -2.318119049072209 ], [ -73.037040710449162, -2.314290046691895 ], [ -73.035331726074162, -2.313399076461792 ], [ -73.033721923828068, -2.313189029693604 ], [ -73.031280517578125, -2.313510894775391 ], [ -73.028495788574219, -2.314419984817505 ], [ -73.02691650390625, -2.315489053726196 ], [ -73.024017333984375, -2.318520069122201 ], [ -73.021247863769531, -2.3242089748382 ], [ -73.0205078125, -2.326658964157104 ], [ -73.019859313964844, -2.329618930816594 ], [ -73.018791198730469, -2.337949991226139 ], [ -73.017745971679688, -2.341840028762761 ], [ -73.016693115234375, -2.343868970870972 ], [ -73.015296936035099, -2.345907926559448 ], [ -73.007843017578125, -2.354199886321965 ], [ -73.004638671874943, -2.357178926467839 ], [ -73.002426147460881, -2.358459949493351 ], [ -73.001022338867074, -2.35851001739502 ], [ -72.997062683105469, -2.357860088348332 ], [ -72.995460510253849, -2.357211112976074 ], [ -72.993576049804631, -2.35608005523676 ], [ -72.992301940917969, -2.354891061782837 ], [ -72.989257812499943, -2.349970102310124 ], [ -72.986892700195256, -2.347049951553288 ], [ -72.985839843749943, -2.344999074935856 ], [ -72.984649658203125, -2.343260049819946 ], [ -72.982696533203068, -2.340949058532715 ], [ -72.980308532714787, -2.339088916778508 ], [ -72.977310180664062, -2.338289022445679 ], [ -72.975677490234375, -2.338268995285034 ], [ -72.972259521484375, -2.339240074157658 ], [ -72.971588134765625, -2.339838981628361 ], [ -72.971092224121094, -2.340718984603825 ], [ -72.970466613769531, -2.343118906021004 ], [ -72.970382690429631, -2.346250057220459 ], [ -72.970626831054688, -2.347609043121338 ], [ -72.970657348632812, -2.350450992584229 ], [ -72.969833374023381, -2.355639934539795 ], [ -72.968177795410156, -2.359431028366032 ], [ -72.966468811035099, -2.362349987029972 ], [ -72.964027404785156, -2.365679979324341 ], [ -72.959197998046875, -2.371299982070809 ], [ -72.958045959472656, -2.373378992080632 ], [ -72.957786560058537, -2.374650955200195 ], [ -72.957679748535156, -2.378149032592717 ], [ -72.957168579101562, -2.383709907531738 ], [ -72.956306457519531, -2.388609886169434 ], [ -72.954727172851562, -2.393510103225651 ], [ -72.952537536621094, -2.398360013961792 ], [ -72.950508117675781, -2.402268886566105 ], [ -72.947967529296818, -2.405170917510986 ], [ -72.945556640625, -2.406939029693547 ], [ -72.942817687988224, -2.408210992812997 ], [ -72.939689636230412, -2.4091699123382 ], [ -72.936492919921875, -2.410989046096745 ], [ -72.934799194335938, -2.412270069122201 ], [ -72.928543090820199, -2.413409948348942 ], [ -72.926437377929631, -2.414319038391113 ], [ -72.925315856933594, -2.415249109268132 ], [ -72.924186706542969, -2.416570901870728 ], [ -72.923255920410156, -2.418050050735417 ], [ -72.922653198242188, -2.41959095001215 ], [ -72.922409057617131, -2.421588897705021 ], [ -72.922500610351506, -2.423249006271362 ], [ -72.922782897949219, -2.424408912658691 ], [ -72.923683166503793, -2.426338911056405 ], [ -72.926612854003849, -2.430829048156738 ], [ -72.935661315917912, -2.440049886703491 ], [ -72.937217712402287, -2.442450046539193 ], [ -72.937828063964844, -2.444020986557007 ], [ -72.9376220703125, -2.444561004638615 ], [ -72.93255615234375, -2.450059890747013 ], [ -72.926498413085938, -2.453378915786743 ], [ -72.922172546386719, -2.450309038162175 ], [ -72.917709350585938, -2.446819067001229 ], [ -72.911529541015625, -2.443270921707096 ], [ -72.906211853027287, -2.439559936523438 ], [ -72.902023315429631, -2.437119007110596 ], [ -72.899932861328011, -2.435628890991211 ], [ -72.895088195800781, -2.433500051498356 ], [ -72.891555786132812, -2.433219909667912 ], [ -72.889328002929631, -2.433599948883057 ], [ -72.88555908203125, -2.434590101242065 ], [ -72.881889343261662, -2.435959100723153 ], [ -72.877616882324105, -2.436901092529297 ], [ -72.874107360839844, -2.438141107559147 ], [ -72.86962890625, -2.43877911567688 ], [ -72.865608215332031, -2.438709974288884 ], [ -72.86163330078125, -2.438299894332829 ], [ -72.858222961425724, -2.437269926071167 ], [ -72.854843139648438, -2.43654108047474 ], [ -72.850997924804631, -2.43523907661438 ], [ -72.847686767578125, -2.43353009223938 ], [ -72.843582153320312, -2.430990934371948 ], [ -72.841293334960938, -2.428998947143555 ], [ -72.838699340820256, -2.427129983901921 ], [ -72.831130981445312, -2.420459032058659 ], [ -72.828781127929631, -2.418729066848755 ], [ -72.826347351074219, -2.417258977889901 ], [ -72.823951721191406, -2.416140079498291 ], [ -72.821083068847656, -2.415210008621159 ], [ -72.816452026367131, -2.414889097213745 ], [ -72.811386108398438, -2.414020061492863 ], [ -72.807823181152344, -2.412619113922119 ], [ -72.805023193359318, -2.411088943481445 ], [ -72.801986694335881, -2.408719062805119 ], [ -72.798576354980469, -2.405519008636361 ], [ -72.79486083984375, -2.400178909301701 ], [ -72.791763305664006, -2.396668910980225 ], [ -72.790237426757756, -2.394490957260075 ], [ -72.785331726074219, -2.389168977737427 ], [ -72.782997131347599, -2.387388944625854 ], [ -72.779701232910156, -2.385499000549316 ], [ -72.778488159179688, -2.385200977325439 ], [ -72.763542175292912, -2.392158985137939 ], [ -72.760879516601506, -2.395570993423348 ], [ -72.759048461914006, -2.398948907852116 ], [ -72.757987976074219, -2.401988983154297 ], [ -72.757789611816406, -2.40444993972767 ], [ -72.757843017578125, -2.411259889602604 ], [ -72.756996154785156, -2.416810035705566 ], [ -72.756256103515625, -2.419359922409058 ], [ -72.755561828613281, -2.420759916305428 ], [ -72.754051208496094, -2.422828912734985 ], [ -72.7515869140625, -2.425420999526864 ], [ -72.749946594238281, -2.426379919052067 ], [ -72.746162414550781, -2.426531076431218 ], [ -72.743949890136719, -2.425990104675293 ], [ -72.741912841796761, -2.425179004669189 ], [ -72.739730834960938, -2.424040079116821 ], [ -72.738105773925781, -2.422539949417001 ], [ -72.737190246582031, -2.421958923339787 ], [ -72.735298156738224, -2.419960021972599 ], [ -72.733230590820199, -2.41506910324091 ], [ -72.733062744140625, -2.412848949432373 ], [ -72.732337951660099, -2.409548997879028 ], [ -72.7322998046875, -2.405509948730469 ], [ -72.732551574706974, -2.403508901596069 ], [ -72.732421875, -2.40132999420166 ], [ -72.712600708007756, -2.407599925994873 ], [ -72.687522888183537, -2.420239925384521 ], [ -72.687393188476562, -2.420890092849731 ], [ -72.686988830566406, -2.424169063568115 ], [ -72.687149047851506, -2.426469087600708 ], [ -72.688079833984375, -2.429358959197998 ], [ -72.688377380371037, -2.430069923400879 ], [ -72.685432434081974, -2.432838916778508 ], [ -72.68450927734375, -2.435359954833984 ], [ -72.679443359374886, -2.441310882568303 ], [ -72.679656982421875, -2.444529056549015 ], [ -72.677749633789062, -2.449378967285156 ], [ -72.674041748046875, -2.447091102599984 ], [ -72.669036865234318, -2.44307899475092 ], [ -72.667816162109375, -2.44170093536377 ], [ -72.665367126464844, -2.436160087585392 ], [ -72.664932250976506, -2.43484902381897 ], [ -72.664222717285156, -2.430429935455265 ], [ -72.664169311523381, -2.426469087600708 ], [ -72.664466857910099, -2.424779891967717 ], [ -72.654296875, -2.425698995590096 ], [ -72.626167297363281, -2.427809000015145 ], [ -72.624267578125, -2.422138929367009 ], [ -72.624526977539062, -2.415240049362183 ], [ -72.628471374511719, -2.406070947647095 ], [ -72.627571105957031, -2.403990030288696 ], [ -72.6280517578125, -2.399169921874943 ], [ -72.626686096191349, -2.398010015487671 ], [ -72.618927001953125, -2.395659923553467 ], [ -72.618247985839844, -2.395659923553467 ], [ -72.602256774902287, -2.395340919494629 ], [ -72.597007751464844, -2.394850969314575 ], [ -72.58648681640625, -2.397319078445435 ], [ -72.574546813964844, -2.406909942626896 ], [ -72.568336486816349, -2.413539886474609 ], [ -72.565437316894531, -2.416529893875122 ], [ -72.561897277832031, -2.420170068740845 ], [ -72.558212280273381, -2.425668954849243 ], [ -72.554092407226562, -2.426109075546208 ], [ -72.546310424804574, -2.429279088973999 ], [ -72.536476135253849, -2.43084001541132 ], [ -72.52984619140625, -2.430799007415771 ], [ -72.518409729003906, -2.43280100822443 ], [ -72.513847351074219, -2.432089090347233 ], [ -72.498771667480469, -2.430850028991699 ], [ -72.495567321777287, -2.432209968566781 ], [ -72.490310668945256, -2.432409048080444 ], [ -72.485748291015568, -2.431459903716984 ], [ -72.467002868652344, -2.433190107345524 ], [ -72.453758239746094, -2.431499004363957 ], [ -72.451347351074219, -2.431489944458008 ], [ -72.438896179199162, -2.431410074233952 ], [ -72.430656433105469, -2.435509920120126 ], [ -72.427482604980355, -2.437130928039551 ], [ -72.423545837402287, -2.439138889312744 ], [ -72.420578002929688, -2.439820051193237 ], [ -72.409370422363281, -2.441359043121338 ], [ -72.404808044433594, -2.439719915390015 ], [ -72.397521972656193, -2.43438005447382 ], [ -72.397109985351562, -2.434941053390503 ], [ -72.395622253417912, -2.43654990196228 ], [ -72.388031005859375, -2.442960977554264 ], [ -72.381416320800724, -2.451141119003296 ], [ -72.379310607910099, -2.454969882965088 ], [ -72.378318786621094, -2.45809888839716 ], [ -72.378402709960938, -2.461788892745915 ], [ -72.37896728515625, -2.465039014816227 ], [ -72.381156921386719, -2.4714000225066 ], [ -72.381439208984375, -2.47330999374384 ], [ -72.381446838378906, -2.476810932159367 ], [ -72.380706787109375, -2.48002910614008 ], [ -72.378997802734375, -2.483779907226449 ], [ -72.378143310546818, -2.485079050064087 ], [ -72.376129150390625, -2.486949920654297 ], [ -72.374717712402287, -2.487940073013306 ], [ -72.372467041015625, -2.488970041275024 ], [ -72.371101379394474, -2.48918890953064 ], [ -72.367576599121037, -2.489170074462891 ], [ -72.364852905273438, -2.488970041275024 ], [ -72.362548828125, -2.488379955291748 ], [ -72.359222412109375, -2.486820936203003 ], [ -72.353691101074219, -2.482850074767953 ], [ -72.353347778320256, -2.484719038009644 ], [ -72.346000671386719, -2.490431070327702 ], [ -72.341430664062443, -2.490169048309326 ], [ -72.336875915527287, -2.487838983535653 ], [ -72.326393127441293, -2.484098911285344 ], [ -72.31402587890625, -2.482599973678589 ], [ -72.310409545898438, -2.48216009140009 ], [ -72.295593261718636, -2.477009057998657 ], [ -72.284606933593693, -2.477628946304321 ], [ -72.279373168945256, -2.47599005699152 ], [ -72.273002624511719, -2.470889091491699 ], [ -72.26869964599598, -2.464430093765145 ], [ -72.264488220214787, -2.459979057311955 ], [ -72.262123107910156, -2.457489967346191 ], [ -72.257781982421875, -2.456540107727051 ], [ -72.257606506347599, -2.456610918044987 ], [ -72.247695922851506, -2.460619926452637 ], [ -72.24267578125, -2.460129976272583 ], [ -72.238838195800724, -2.454119920730534 ], [ -72.239097595214787, -2.4492990970611 ], [ -72.240928649902287, -2.44815993309021 ], [ -72.241867065429631, -2.442869901657048 ], [ -72.241447448730469, -2.438270092010441 ], [ -72.240089416503793, -2.436880111694279 ], [ -72.235755920410156, -2.435611009597778 ], [ -72.232109069824219, -2.434530019760075 ], [ -72.221153259277344, -2.433089971542245 ], [ -72.206253051757812, -2.439888954162598 ], [ -72.198600769042855, -2.441169977188054 ], [ -72.198249816894531, -2.441220045089608 ], [ -72.192749023437443, -2.443720102310124 ], [ -72.184059143066406, -2.444360017776432 ], [ -72.177429199218636, -2.442209005355835 ], [ -72.176078796386662, -2.441780090332031 ], [ -72.171310424804631, -2.43668889999384 ], [ -72.167510986328011, -2.433290958404484 ], [ -72.162002563476562, -2.428349018096867 ], [ -72.155380249023381, -2.427160024642944 ], [ -72.153076171874943, -2.42966890335083 ], [ -72.149192810058537, -2.430799007415771 ], [ -72.146423339843693, -2.433999061584416 ], [ -72.143638610839787, -2.44110989570612 ], [ -72.144050598144418, -2.447549104690552 ], [ -72.145362854003849, -2.456528902053833 ], [ -72.142608642578068, -2.46533989906311 ], [ -72.142562866210938, -2.465478897094727 ], [ -72.139579772949219, -2.468460083007812 ], [ -72.135917663574162, -2.469348907470646 ], [ -72.125640869140568, -2.468369007110596 ], [ -72.120880126953011, -2.462589025497437 ], [ -72.116378784179631, -2.451519012451115 ], [ -72.116645812988224, -2.446228981017953 ], [ -72.117599487304631, -2.44025993347168 ], [ -72.114669799804631, -2.43356895446766 ], [ -72.115859985351562, -2.425990104675293 ], [ -72.114746093749943, -2.421610116958504 ], [ -72.109100341796875, -2.411919116973877 ], [ -72.102752685546818, -2.403830051422005 ], [ -72.090492248535156, -2.392019987106266 ], [ -72.079795837402344, -2.384819984436035 ], [ -72.065483093261719, -2.373230934143066 ], [ -72.049858093261719, -2.351979970931893 ], [ -72.042167663574162, -2.339968919753971 ], [ -72.039428710937443, -2.336539030075016 ], [ -72.035148620605469, -2.331181049346867 ], [ -72.031501770019474, -2.329778909683228 ], [ -72.025550842285156, -2.331579923629704 ], [ -72.020286560058594, -2.332700967788639 ], [ -72.012916564941349, -2.340009927749634 ], [ -72.006027221679631, -2.345719099044743 ], [ -72.003730773925724, -2.348918914794865 ], [ -72.000289916992188, -2.3507399559021 ], [ -71.996368408203125, -2.355999946594181 ], [ -71.990638732910156, -2.359179973602295 ], [ -71.983757019042969, -2.363739967346078 ], [ -71.979415893554631, -2.364758968353271 ], [ -71.977119445800781, -2.365310907363892 ], [ -71.974601745605469, -2.365449905395451 ], [ -71.973457336425781, -2.365509033203068 ], [ -71.961822509765625, -2.36313891410822 ], [ -71.950210571289062, -2.357538938522339 ], [ -71.948036193847599, -2.356729984283447 ], [ -71.93768310546875, -2.352859973907471 ], [ -71.933570861816349, -2.352139949798584 ], [ -71.932197570800781, -2.35260009765625 ], [ -71.928298950195256, -2.353949069976693 ], [ -71.925537109374943, -2.356919050216675 ], [ -71.918579101562443, -2.370028972625732 ], [ -71.918357849121094, -2.370439052581787 ], [ -71.913986206054688, -2.374780893325692 ], [ -71.911941528320312, -2.374999046325684 ], [ -71.907150268554631, -2.373361110687199 ], [ -71.905326843261662, -2.371740102767944 ], [ -71.901947021484375, -2.364820957183724 ], [ -71.903366088867188, -2.357470989227238 ], [ -71.911697387695312, -2.341649055480957 ], [ -71.919113159179688, -2.327209949493408 ], [ -71.921226501464844, -2.318490028381348 ], [ -71.918991088867188, -2.311568975448552 ], [ -71.916175842285156, -2.309779882430917 ], [ -71.915908813476506, -2.309608936309814 ], [ -71.91461181640625, -2.309859037399292 ], [ -71.910766601562443, -2.311320066452026 ], [ -71.907890319824162, -2.312150001525879 ], [ -71.900062561035156, -2.313410043716431 ], [ -71.897880554199162, -2.31328892707819 ], [ -71.893707275390568, -2.313719987869263 ], [ -71.88934326171875, -2.313519954681396 ], [ -71.886436462402287, -2.312659978866577 ], [ -71.884162902831974, -2.310818910598755 ], [ -71.882347106933537, -2.308979988098088 ], [ -71.875831604003906, -2.309448957443237 ], [ -71.868766784667969, -2.307099103927555 ], [ -71.861038208007812, -2.300379991531372 ], [ -71.851821899414006, -2.278698921203613 ], [ -71.849380493164062, -2.267879962921029 ], [ -71.841590881347656, -2.237930059432927 ], [ -71.830337524414062, -2.212331056594792 ], [ -71.828552246093693, -2.207950115203801 ], [ -71.827247619628906, -2.197830915450993 ], [ -71.823371887207031, -2.189338922500497 ], [ -71.822532653808537, -2.187510967254639 ], [ -71.822296142578125, -2.186980009078923 ], [ -71.817970275878849, -2.185349941253662 ], [ -71.81317138671875, -2.185308933258 ], [ -71.806739807128793, -2.190099954605103 ], [ -71.798027038574162, -2.195100069046021 ], [ -71.794532775878793, -2.195080041885376 ], [ -71.79437255859375, -2.195080041885376 ], [ -71.783729553222599, -2.182359933853149 ], [ -71.776252746582031, -2.174030065536499 ], [ -71.773880004882812, -2.172559976577759 ], [ -71.771018981933594, -2.170770883560124 ], [ -71.770500183105355, -2.170809030532837 ], [ -71.768035888671875, -2.170979976653996 ], [ -71.765998840331974, -2.169359922409001 ], [ -71.762123107910156, -2.168869972228947 ], [ -71.758926391601506, -2.167010068893433 ], [ -71.751419067382756, -2.164429903030396 ], [ -71.745971679687443, -2.159337997436523 ], [ -71.741889953613168, -2.15470910072321 ], [ -71.740142822265568, -2.14342999458313 ], [ -71.738693237304688, -2.141259908676147 ], [ -71.736747741699219, -2.138350009918213 ], [ -71.730628967285099, -2.131639957427922 ], [ -71.721519470214844, -2.128360033035221 ], [ -71.717170715331974, -2.129019021987801 ], [ -71.710746765136719, -2.133570909500122 ], [ -71.708427429199219, -2.137010097503662 ], [ -71.705596923828125, -2.150089979171753 ], [ -71.704841613769531, -2.160900115966797 ], [ -71.705291748046875, -2.162360906600952 ], [ -71.714447021484375, -2.192239999771061 ], [ -71.7164306640625, -2.202141046524048 ], [ -71.714569091796875, -2.207870006561166 ], [ -71.706756591796818, -2.214258909225407 ], [ -71.698959350585881, -2.217889070510864 ], [ -71.694168090820256, -2.217159986495972 ], [ -71.688308715820312, -2.215858936309814 ], [ -71.687782287597599, -2.215739965438786 ], [ -71.686721801757812, -2.214458942413273 ], [ -71.685302734374943, -2.212728977203369 ], [ -71.662338256835881, -2.196479082107544 ], [ -71.648658752441406, -2.192939996719304 ], [ -71.633827209472599, -2.190758943557682 ], [ -71.631927490234261, -2.190740108489933 ], [ -71.628341674804688, -2.190720081329289 ], [ -71.617797851562443, -2.195939064025879 ], [ -71.6063232421875, -2.204600095748901 ], [ -71.592292785644531, -2.216459989547673 ], [ -71.573036193847656, -2.225290060043335 ], [ -71.564346313476562, -2.226378917694092 ], [ -71.559997558593693, -2.2291100025177 ], [ -71.556571960449162, -2.229089021682739 ], [ -71.548332214355469, -2.231328964233398 ], [ -71.541465759277344, -2.23127889633173 ], [ -71.537117004394474, -2.232630968093872 ], [ -71.522232055664006, -2.238969087600708 ], [ -71.507606506347656, -2.238399028778076 ], [ -71.500259399414062, -2.24456000328064 ], [ -71.498596191406193, -2.252830982208252 ], [ -71.499702453613281, -2.258809089660588 ], [ -71.499977111816406, -2.283879995346012 ], [ -71.500556945800781, -2.297679901123047 ], [ -71.497001647949219, -2.315830945968628 ], [ -71.4932861328125, -2.324538946151677 ], [ -71.483596801757756, -2.336430072784367 ], [ -71.479866027832031, -2.338088989257812 ], [ -71.479019165039006, -2.338469028472844 ], [ -71.475357055664062, -2.338210105895939 ], [ -71.468536376953068, -2.333559989929199 ], [ -71.466972351074219, -2.331609010696411 ], [ -71.462196350097656, -2.325699090957585 ], [ -71.46734619140625, -2.310559034347477 ], [ -71.474517822265625, -2.298419952392578 ], [ -71.477066040039062, -2.291539907455444 ], [ -71.478271484374943, -2.284188985824585 ], [ -71.476303100585938, -2.272449970245304 ], [ -71.473518371581974, -2.269609928131047 ], [ -71.470413208007812, -2.266418933868351 ], [ -71.464027404785156, -2.263619899749756 ], [ -71.457870483398381, -2.262660980224609 ], [ -71.455596923828011, -2.261029005050659 ], [ -71.449195861816349, -2.260529994964543 ], [ -71.444160461425781, -2.263478994369393 ], [ -71.441390991210938, -2.267138957977295 ], [ -71.428726196289062, -2.279930114746094 ], [ -71.420196533203068, -2.290899038314819 ], [ -71.416481018066349, -2.299159049987793 ], [ -71.411392211914062, -2.307630062103271 ], [ -71.405715942382699, -2.311739921569824 ], [ -71.401260375976562, -2.318130016326904 ], [ -71.395973205566349, -2.323839902877751 ], [ -71.391349792480469, -2.330708980560303 ], [ -71.376152038574105, -2.346468925476074 ], [ -71.376136779785099, -2.348310947418156 ], [ -71.376548767089844, -2.354979038238469 ], [ -71.378562927246094, -2.361198902130127 ], [ -71.384391784667969, -2.375509977340698 ], [ -71.385948181152287, -2.381038904190063 ], [ -71.383590698242074, -2.391370058059692 ], [ -71.381050109863281, -2.395030975341797 ], [ -71.376892089843693, -2.396848917007446 ], [ -71.374847412109375, -2.397749900817871 ], [ -71.366401672363224, -2.398138999938965 ], [ -71.348457336425781, -2.383289098739567 ], [ -71.345039367675724, -2.382580041885376 ], [ -71.342277526855412, -2.37995004653925 ], [ -71.341636657714844, -2.379338979721012 ], [ -71.339363098144531, -2.378859996795597 ], [ -71.330009460449219, -2.376029968261719 ], [ -71.318145751953068, -2.376158952713013 ], [ -71.305107116699105, -2.376310110092163 ], [ -71.298309326171818, -2.368669986724854 ], [ -71.294486999511662, -2.358748912811279 ], [ -71.291839599609318, -2.347700119018555 ], [ -71.284469604492131, -2.338561058044434 ], [ -71.279701232910099, -2.33804988861084 ], [ -71.27960205078125, -2.338009119033757 ], [ -71.270668029785099, -2.337191104888916 ], [ -71.266021728515625, -2.337660074233952 ], [ -71.264266967773381, -2.337829113006535 ], [ -71.252876281738281, -2.344599962234497 ], [ -71.249351501464844, -2.346689939498901 ], [ -71.247520446777344, -2.347599983215275 ], [ -71.246368408203125, -2.348278999328556 ], [ -71.244308471679688, -2.348959922790527 ], [ -71.242660522460938, -2.349139928817692 ], [ -71.236526489257756, -2.349818944930973 ], [ -71.233116149902344, -2.34795093536377 ], [ -71.224189758300781, -2.343609094619694 ], [ -71.220146179199219, -2.341649055480957 ], [ -71.213287353515625, -2.340909957885742 ], [ -71.207572937011719, -2.343389987945557 ], [ -71.202972412109375, -2.347038984298706 ], [ -71.190956115722656, -2.363739967346078 ], [ -71.1859130859375, -2.368299007415715 ], [ -71.174430847167912, -2.374419927596989 ], [ -71.172348022460881, -2.374710083007812 ], [ -71.164833068847656, -2.375729084014836 ], [ -71.158920288085938, -2.371320962905827 ], [ -71.157119750976562, -2.367400884628296 ], [ -71.154266357421875, -2.351969003677311 ], [ -71.151832580566349, -2.341829061508179 ], [ -71.146949768066349, -2.337668895721322 ], [ -71.146392822265568, -2.337191104888916 ], [ -71.140457153320312, -2.335989952087402 ], [ -71.132461547851506, -2.336160898208504 ], [ -71.129638671875, -2.338129997253304 ], [ -71.126258850097599, -2.340488910675049 ], [ -71.123382568359375, -2.340660095214844 ], [ -71.122833251953068, -2.340688943862915 ], [ -71.118949890136605, -2.340198993682861 ], [ -71.1148681640625, -2.336030960083008 ], [ -71.113090515136719, -2.329808950424194 ], [ -71.117988586425724, -2.316509962081909 ], [ -71.124916076660156, -2.30574989318842 ], [ -71.127937316894531, -2.300251007080078 ], [ -71.126159667968693, -2.293339967727661 ], [ -71.120727539062443, -2.287089109420776 ], [ -71.117996215820199, -2.284539937972966 ], [ -71.113677978515568, -2.282898902893066 ], [ -71.104316711425781, -2.282371044158936 ], [ -71.099777221679574, -2.278649091720581 ], [ -71.093170166015568, -2.276529073715153 ], [ -71.084953308105469, -2.27554893493641 ], [ -71.0836181640625, -2.275180101394653 ], [ -71.078109741210881, -2.273659944534245 ], [ -71.073577880859375, -2.269489049911499 ], [ -71.068786621093636, -2.268759965896493 ], [ -71.065147399902287, -2.26642990112299 ], [ -71.056938171386662, -2.264298915863037 ], [ -71.051689147949162, -2.263570070266724 ], [ -71.046195983886719, -2.263988971710205 ], [ -71.035896301269531, -2.266669988632088 ], [ -71.027442932128906, -2.267988920211792 ], [ -71.020561218261719, -2.271151065826359 ], [ -71.007888793945312, -2.284849882125798 ], [ -70.998123168945312, -2.293458938598576 ], [ -70.993400573730469, -2.297620058059692 ], [ -70.985626220703011, -2.297559022903442 ], [ -70.980636596679631, -2.292918920516968 ], [ -70.978599548339844, -2.290839910507202 ], [ -70.977500915527287, -2.28531098365778 ], [ -70.978691101074219, -2.279799938201904 ], [ -70.983360290527344, -2.266729116439819 ], [ -70.988693237304688, -2.258029937744084 ], [ -70.993110656738281, -2.247261047363224 ], [ -70.997268676757812, -2.241309881210327 ], [ -71.002128601074219, -2.233299016952515 ], [ -71.003768920898438, -2.227790117263794 ], [ -71.002227783203125, -2.220649003982544 ], [ -70.999076843261719, -2.214651107788086 ], [ -70.995368957519531, -2.208879947662297 ], [ -70.99298095703125, -2.20516991615284 ], [ -70.987052917480355, -2.204210042953491 ], [ -70.979125976562443, -2.204808950424137 ], [ -70.967849731445256, -2.205668926238957 ], [ -70.959838867187443, -2.207909107208252 ], [ -70.951316833496094, -2.216578960418701 ], [ -70.942947387695312, -2.234910011291504 ], [ -70.937652587890511, -2.240159034729004 ], [ -70.928016662597599, -2.245368957519531 ], [ -70.919792175292912, -2.24576997756958 ], [ -70.915206909179631, -2.244518995285034 ], [ -70.911132812499943, -2.243400096893311 ], [ -70.899299621581974, -2.237099885940552 ], [ -70.897506713867074, -2.233640909194833 ], [ -70.888687133789062, -2.222069025039673 ], [ -70.8861083984375, -2.220791101455632 ], [ -70.883918762207031, -2.220921039581299 ], [ -70.881278991699162, -2.220791101455632 ], [ -70.878326416015568, -2.221298933029061 ], [ -70.874526977539062, -2.222249031066895 ], [ -70.869239807128849, -2.224900007247868 ], [ -70.864112854003849, -2.226999044418335 ], [ -70.862121582031136, -2.228120088577271 ], [ -70.860336303710938, -2.229700088500977 ], [ -70.858802795410156, -2.231618881225586 ], [ -70.856666564941349, -2.233758926391545 ], [ -70.855178833007812, -2.235840082168579 ], [ -70.853233337402287, -2.242059946060181 ], [ -70.851760864257812, -2.245429992675724 ], [ -70.850250244140625, -2.249748945236206 ], [ -70.846946716308537, -2.260940074920654 ], [ -70.845916748046875, -2.263689041137638 ], [ -70.843902587890568, -2.272099018096924 ], [ -70.84185791015625, -2.278199911117554 ], [ -70.840629577636662, -2.280869007110596 ], [ -70.839431762695312, -2.282819986343327 ], [ -70.836631774902287, -2.286569118499699 ], [ -70.834922790527287, -2.288340091705209 ], [ -70.831588745117131, -2.290241003036499 ], [ -70.828292846679688, -2.291548967361337 ], [ -70.823516845703125, -2.292758941650277 ], [ -70.819229125976562, -2.293450117111206 ], [ -70.816322326660099, -2.293190002441406 ], [ -70.8128662109375, -2.293229103088322 ], [ -70.810806274414006, -2.292918920516968 ], [ -70.803619384765625, -2.292788982391357 ], [ -70.797126770019531, -2.291599035263062 ], [ -70.795112609863281, -2.290910959243774 ], [ -70.788536071777344, -2.290730953216553 ], [ -70.786888122558594, -2.290349960327148 ], [ -70.781227111816349, -2.289060115814152 ], [ -70.772117614746094, -2.286228895187321 ], [ -70.766403198242188, -2.286639928817749 ], [ -70.762962341308594, -2.288687944412118 ], [ -70.754661560058594, -2.298048973083439 ], [ -70.746772766113281, -2.314079999923649 ], [ -70.740989685058537, -2.321629047393799 ], [ -70.733650207519474, -2.325480937957764 ], [ -70.725616455078068, -2.329778909683228 ], [ -70.721733093261662, -2.330209970474186 ], [ -70.716911315917969, -2.332470893859863 ], [ -70.713706970214787, -2.332220077514648 ], [ -70.706619262695312, -2.334229946136475 ], [ -70.702735900878849, -2.333509922027531 ], [ -70.697456359863281, -2.335768938064518 ], [ -70.688552856445199, -2.337529897689819 ], [ -70.683273315429631, -2.339559078216553 ], [ -70.674346923828011, -2.340409040450993 ], [ -70.667472839355412, -2.344949007034302 ], [ -70.658271789550781, -2.351089000701847 ], [ -70.656417846679574, -2.354518890380859 ], [ -70.655220031738281, -2.360721111297551 ], [ -70.656295776367131, -2.368088960647583 ], [ -70.658561706542969, -2.37133002281189 ], [ -70.664642333984375, -2.382189989089966 ], [ -70.668891906738224, -2.392798900604248 ], [ -70.667236328125, -2.398998975753784 ], [ -70.659858703613281, -2.407449960708618 ], [ -70.655502319335938, -2.409940958023014 ], [ -70.651382446289062, -2.410368919372559 ], [ -70.649040222167912, -2.410610914230347 ], [ -70.645210266113281, -2.411010026931706 ], [ -70.6392822265625, -2.409120082855168 ], [ -70.626342773437443, -2.399718999862671 ], [ -70.622932434081974, -2.397259950637761 ], [ -70.619941711425781, -2.39976000785822 ], [ -70.618759155273438, -2.404580116271973 ], [ -70.619155883789062, -2.412178993225041 ], [ -70.623756408691406, -2.434748888015747 ], [ -70.628616333007812, -2.454569101333561 ], [ -70.627891540527287, -2.460540056228524 ], [ -70.625076293945312, -2.467879056930542 ], [ -70.619781494140568, -2.473819971084481 ], [ -70.610603332519474, -2.478339910507202 ], [ -70.608299255371094, -2.480618953704834 ], [ -70.597518920898438, -2.483089923858586 ], [ -70.595710754394531, -2.483509063720703 ], [ -70.584182739257812, -2.484488964080811 ], [ -70.583358764648381, -2.484560012817326 ], [ -70.577888488769531, -2.482670068740788 ], [ -70.567886352539006, -2.477300882339364 ], [ -70.5628662109375, -2.476339101791268 ], [ -70.560356140136662, -2.475399971008244 ], [ -70.559906005859261, -2.474478960037231 ], [ -70.555580139160099, -2.473289012908936 ], [ -70.550582885742188, -2.4704909324646 ], [ -70.549896240234375, -2.469561100006104 ], [ -70.549018859863224, -2.464729070663395 ], [ -70.550880432128906, -2.459110975265446 ], [ -70.551826477050781, -2.456238985061646 ], [ -70.557388305664006, -2.448009014129525 ], [ -70.565910339355355, -2.44025993347168 ], [ -70.5726318359375, -2.436640977859497 ], [ -70.581047058105412, -2.432099103927612 ], [ -70.583831787109318, -2.427979946136475 ], [ -70.583625793456974, -2.425220012664795 ], [ -70.578659057617131, -2.41874098777771 ], [ -70.573867797851562, -2.417320966720581 ], [ -70.573341369628849, -2.41723895072937 ], [ -70.561996459960881, -2.415390014648381 ], [ -70.555603027343693, -2.41648006439209 ], [ -70.548477172851562, -2.419639110565186 ], [ -70.537452697753906, -2.427369117736816 ], [ -70.531890869140625, -2.436758995056152 ], [ -70.525199890136719, -2.444979906082096 ], [ -70.522621154785156, -2.451858997344971 ], [ -70.515235900878849, -2.460078954696542 ], [ -70.508117675781136, -2.464849948883 ], [ -70.495742797851562, -2.469578981399536 ], [ -70.492218017578125, -2.469360113143921 ], [ -70.487289428710938, -2.469049930572453 ], [ -70.474571228027344, -2.460429906845036 ], [ -70.470001220703125, -2.455308914184513 ], [ -70.469818115234375, -2.455100059509277 ], [ -70.465705871582031, -2.453689098358154 ], [ -70.46112060546875, -2.456409931182804 ], [ -70.453041076660156, -2.465770006179753 ], [ -70.444702148437386, -2.479729890823307 ], [ -70.440727233886719, -2.488668918609562 ], [ -70.440910339355469, -2.495569944381714 ], [ -70.438056945800781, -2.507039070129338 ], [ -70.433906555175724, -2.512989997863656 ], [ -70.427909851074162, -2.519150018692017 ], [ -70.417572021484375, -2.525269985198918 ], [ -70.412322998046875, -2.524310111999512 ], [ -70.407546997070312, -2.521279096603394 ], [ -70.393486022949105, -2.509350061416626 ], [ -70.393180847167912, -2.509089946746826 ], [ -70.393035888671875, -2.508969068527222 ], [ -70.387359619140568, -2.504090070724487 ], [ -70.373039245605469, -2.495918989181519 ], [ -70.366203308105412, -2.493560075759888 ], [ -70.353866577148438, -2.493459939956665 ], [ -70.346755981445199, -2.495688915252572 ], [ -70.332099914550781, -2.49993896484375 ], [ -70.331832885742188, -2.499979972839355 ], [ -70.322998046874943, -2.502728939056396 ], [ -70.315330505371094, -2.503281116485596 ], [ -70.314361572265625, -2.503180027008 ], [ -70.313117980957031, -2.502649068832341 ], [ -70.310836791992188, -2.502711057662964 ], [ -70.309417724609375, -2.502109050750732 ], [ -70.307411193847656, -2.50200891494751 ], [ -70.305320739746094, -2.501430034637451 ], [ -70.303962707519531, -2.501619100570679 ], [ -70.3026123046875, -2.502041101455632 ], [ -70.301216125488281, -2.503360033035165 ], [ -70.301193237304688, -2.506119966506958 ], [ -70.297943115234375, -2.51183891296381 ], [ -70.298110961914006, -2.519429922103825 ], [ -70.299507141113281, -2.523938894271851 ], [ -70.300216674804574, -2.524871110916138 ], [ -70.300857543945256, -2.526070117950439 ], [ -70.301307678222656, -2.526499986648503 ], [ -70.302375793456974, -2.527059078216553 ], [ -70.307098388671875, -2.530929088592529 ], [ -70.314170837402344, -2.534480094909611 ], [ -70.326522827148381, -2.53668999671936 ], [ -70.330192565917969, -2.535109043121338 ], [ -70.331718444824219, -2.53524994850153 ], [ -70.335899353027344, -2.535619020461979 ], [ -70.338661193847656, -2.537240028381348 ], [ -70.339706420898438, -2.537410974502507 ], [ -70.342506408691406, -2.537060022354126 ], [ -70.350479125976449, -2.541038990020752 ], [ -70.352737426757756, -2.543610095977783 ], [ -70.356590270996094, -2.547990083694458 ], [ -70.35748291015625, -2.551211118698063 ], [ -70.356971740722656, -2.556958913803101 ], [ -70.350486755371094, -2.566800117492676 ], [ -70.342208862304688, -2.572940111160278 ], [ -70.332809448242131, -2.575850009918156 ], [ -70.316360473632812, -2.575479030609131 ], [ -70.306793212890568, -2.572860002517643 ], [ -70.286788940429688, -2.55935001373291 ], [ -70.274612426757812, -2.546428918838501 ], [ -70.27410888671875, -2.545900106430054 ], [ -70.27001953125, -2.543569087982178 ], [ -70.263618469238281, -2.54374003410328 ], [ -70.260841369628906, -2.543777942657357 ], [ -70.259582519531193, -2.544059038162175 ], [ -70.253448486328125, -2.546390056610051 ], [ -70.248359680175781, -2.548949956893864 ], [ -70.247459411621037, -2.549741029739323 ], [ -70.246841430664062, -2.549889087677002 ], [ -70.245269775390568, -2.551290035247803 ], [ -70.242156982421875, -2.553509950637817 ], [ -70.240242004394531, -2.555730104446354 ], [ -70.239456176757756, -2.557288885116577 ], [ -70.239006042480469, -2.557759046554452 ], [ -70.237762451171875, -2.56105899810791 ], [ -70.236671447753849, -2.563278913497868 ], [ -70.233856201171875, -2.567249059677067 ], [ -70.23175048828125, -2.569659948348999 ], [ -70.230392456054631, -2.572129011154118 ], [ -70.229988098144531, -2.573807954788208 ], [ -70.228996276855469, -2.581861019134521 ], [ -70.227142333984318, -2.592068910598698 ], [ -70.22564697265625, -2.600229978561345 ], [ -70.226249694824219, -2.609428882598877 ], [ -70.225967407226562, -2.615869998931885 ], [ -70.224037170410156, -2.626429080963135 ], [ -70.2191162109375, -2.640420913696175 ], [ -70.213546752929688, -2.650028944015503 ], [ -70.207122802734318, -2.6529700756073 ], [ -70.201171875, -2.653840065002385 ], [ -70.197746276855469, -2.652889966964722 ], [ -70.192298889160156, -2.649389028549194 ], [ -70.188240051269474, -2.643609046935978 ], [ -70.185577392578068, -2.633920907974243 ], [ -70.181282043456974, -2.629280090331974 ], [ -70.177856445312443, -2.629019975662175 ], [ -70.172805786132699, -2.630361080169621 ], [ -70.165672302246094, -2.636509895324707 ], [ -70.163818359374943, -2.639709949493351 ], [ -70.16375732421875, -2.639909982681274 ], [ -70.158859252929631, -2.657380104064941 ], [ -70.159255981445256, -2.663589954376221 ], [ -70.162216186523381, -2.675971031188965 ], [ -70.163452148437443, -2.68110990524292 ], [ -70.163269042968636, -2.684108972549325 ], [ -70.162918090820312, -2.689851045608407 ], [ -70.159866333007812, -2.697870969772282 ], [ -70.156867980956974, -2.701289892196655 ], [ -70.150207519531136, -2.704920053481999 ], [ -70.141983032226506, -2.705770015716553 ], [ -70.133308410644474, -2.703849077224731 ], [ -70.126708984374943, -2.700568914413395 ], [ -70.119667053222599, -2.695219993591309 ], [ -70.115386962890568, -2.688509941100961 ], [ -70.109779357910156, -2.676729917526131 ], [ -70.104721069335938, -2.654380083084106 ], [ -70.102256774902344, -2.648370027542001 ], [ -70.099761962890625, -2.646280050277596 ], [ -70.092926025390625, -2.6441490650177 ], [ -70.090736389160156, -2.646109104156494 ], [ -70.088088989257756, -2.648479938507023 ], [ -70.078521728515625, -2.659209966659546 ], [ -70.078369140624943, -2.659498929977417 ], [ -70.076683044433594, -2.66156005859375 ], [ -70.075119018554631, -2.664259910583439 ], [ -70.074501037597656, -2.665070056915226 ], [ -70.072128295898438, -2.669729948043766 ], [ -70.0706787109375, -2.678458929061833 ], [ -70.070816040039062, -2.687200069427433 ], [ -70.071441650390625, -2.694798946380615 ], [ -70.072448730468693, -2.710448980331421 ], [ -70.071380615234375, -2.719659090042114 ], [ -70.070960998535156, -2.723310947418099 ], [ -70.069046020507699, -2.732270002365055 ], [ -70.065361022949219, -2.736140012740975 ], [ -70.062141418457031, -2.738188982009888 ], [ -70.053871154785099, -2.74271106719965 ], [ -70.047225952148438, -2.744491100311222 ], [ -70.034156799316406, -2.741878986358643 ], [ -70.034095764160156, -2.760510921478271 ], [ -70.052932739257699, -2.792200088500977 ], [ -70.110176086425781, -2.880860090255624 ], [ -70.182632446288949, -2.992269039154053 ], [ -70.221946716308594, -3.052419900894165 ], [ -70.271568298339844, -3.128109931945687 ], [ -70.291557312011719, -3.158240079879647 ], [ -70.299919128417912, -3.170833587646484 ], [ -70.3170166015625, -3.196599960327092 ], [ -70.375022888183594, -3.28668999671936 ], [ -70.419769287109375, -3.355118989944401 ], [ -70.440055847167969, -3.386148929595947 ], [ -70.474998474121037, -3.441638946533146 ], [ -70.484848022460824, -3.456540107726994 ], [ -70.487792968749943, -3.460248947143555 ], [ -70.493659973144531, -3.469729900360107 ], [ -70.504501342773438, -3.486608982086125 ], [ -70.510597229003793, -3.495630025863647 ], [ -70.548446655273381, -3.554069042205754 ], [ -70.550819396972599, -3.557740926742554 ], [ -70.610008239746094, -3.649188995361328 ], [ -70.677085876464787, -3.752358913421574 ], [ -70.690872192382812, -3.774328947067261 ], [ -70.693367004394531, -3.777570009231567 ], [ -70.697647094726562, -3.785429000854492 ], [ -70.699470520019531, -3.786818981170654 ], [ -70.701736450195312, -3.79148888587946 ], [ -70.703292846679688, -3.794671058654785 ], [ -70.701522827148324, -3.794658899307137 ], [ -70.694610595703125, -3.792581081390381 ], [ -70.683952331542912, -3.794298887252808 ], [ -70.681388854980412, -3.795669078826904 ], [ -70.678428649902287, -3.798190116882267 ], [ -70.67608642578125, -3.801289081573429 ], [ -70.670738220214844, -3.809288978576603 ], [ -70.666671752929688, -3.814539909362793 ], [ -70.660575866699162, -3.82135891914362 ], [ -70.655662536621094, -3.825449943542424 ], [ -70.652847290039062, -3.827029943466187 ], [ -70.652626037597656, -3.827399015426579 ], [ -70.647338867187443, -3.830108880996647 ], [ -70.645462036132812, -3.830070018768197 ], [ -70.636627197265625, -3.830670118331909 ], [ -70.633247375488281, -3.831201076507568 ], [ -70.630142211914062, -3.831950902938843 ], [ -70.628150939941349, -3.833079099655151 ], [ -70.624397277832031, -3.836750030517521 ], [ -70.621902465820312, -3.838388919830322 ], [ -70.620429992675724, -3.83899998664856 ], [ -70.618370056152344, -3.839009046554509 ], [ -70.615119934081918, -3.8421790599823 ], [ -70.612030029296875, -3.843400955200195 ], [ -70.607231140136719, -3.841751098632812 ], [ -70.599708557128906, -3.838238954544011 ], [ -70.591972351074219, -3.833111047744751 ], [ -70.586029052734318, -3.831908941268864 ], [ -70.581878662109375, -3.832278966903687 ], [ -70.578987121582031, -3.833111047744751 ], [ -70.574691772460938, -3.834678888320866 ], [ -70.570358276367131, -3.836750030517521 ], [ -70.56756591796875, -3.838710069656372 ], [ -70.562149047851562, -3.843800067901554 ], [ -70.55792236328125, -3.84692907333374 ], [ -70.551551818847656, -3.852960109710693 ], [ -70.55078125, -3.853888988494816 ], [ -70.538566589355469, -3.868568897247314 ], [ -70.5284423828125, -3.875610113143864 ], [ -70.518325805663949, -3.880820035934391 ], [ -70.507766723632812, -3.883500099182072 ], [ -70.496551513671818, -3.883860111236572 ], [ -70.485328674316293, -3.884690046310368 ], [ -70.479156494140625, -3.883949041366577 ], [ -70.466361999511719, -3.881540060043278 ], [ -70.454498291015568, -3.876610040664673 ], [ -70.437416076660099, -3.8663489818573 ], [ -70.433563232421875, -3.862919092178288 ], [ -70.432197570800724, -3.861700057983285 ], [ -70.4244384765625, -3.859338998794499 ], [ -70.417800903320256, -3.859280109405404 ], [ -70.408676147460938, -3.854370117187443 ], [ -70.401397705078068, -3.8499400615691 ], [ -70.395057678222656, -3.841599941253662 ], [ -70.385772705078125, -3.831859111785832 ], [ -70.378746032714844, -3.82282900810236 ], [ -70.371482849121094, -3.815181016921997 ], [ -70.362617492675781, -3.808660030364877 ], [ -70.358062744140625, -3.806550025939828 ], [ -70.349151611328125, -3.804409027099553 ], [ -70.340911865234318, -3.804111003875676 ], [ -70.326896667480412, -3.805310010910034 ], [ -70.312637329101562, -3.810870885848999 ], [ -70.306343078613281, -3.814150094985905 ], [ -70.303909301757756, -3.815829992294312 ], [ -70.299217224121094, -3.820178985595703 ], [ -70.293746948242188, -3.826678991317692 ], [ -70.289520263671818, -3.832570075988713 ], [ -70.286003112792912, -3.837471008300781 ], [ -70.281936645507812, -3.844909906387272 ], [ -70.2734375, -3.857429027557316 ], [ -70.269371032714844, -3.864610910415536 ], [ -70.268096923828125, -3.867559909820557 ], [ -70.267143249511719, -3.870868921279907 ], [ -70.265151977539062, -3.874768972396794 ], [ -70.262817382812443, -3.877561092376709 ], [ -70.257652282714787, -3.882591009140015 ], [ -70.245399475097656, -3.889480113983097 ], [ -70.230659484863224, -3.896219968795776 ], [ -70.222702026367188, -3.899080038070679 ], [ -70.210426330566406, -3.902661085128784 ], [ -70.206436157226506, -3.903569936752262 ], [ -70.203903198242188, -3.90352010726923 ], [ -70.203231811523324, -3.904098987579232 ], [ -70.201667785644474, -3.903809070587101 ], [ -70.194046020507756, -3.905250072479248 ], [ -70.193382263183537, -3.905869960784912 ], [ -70.191802978515625, -3.906208992004281 ], [ -70.190589904785156, -3.906790018081665 ], [ -70.187286376953068, -3.910330057144165 ], [ -70.186012268066406, -3.912729978561401 ], [ -70.184951782226562, -3.916160106658879 ], [ -70.182128906249943, -3.928248882293701 ], [ -70.178672790527344, -3.939681053161621 ], [ -70.177879333496094, -3.947220087051335 ], [ -70.176460266113281, -3.954448938369751 ], [ -70.176483154296875, -3.956969976425171 ], [ -70.174797058105412, -3.965321063995304 ], [ -70.17437744140625, -3.971298933029175 ], [ -70.174499511718693, -3.976119995117188 ], [ -70.174896240234318, -3.978368997573796 ], [ -70.176338195800668, -3.983259916305428 ], [ -70.176666259765625, -3.985979080200195 ], [ -70.174392700195256, -4.005959987640324 ], [ -70.173789978027344, -4.008389949798584 ], [ -70.173690795898438, -4.009671211242619 ], [ -70.173599243164062, -4.01094913482666 ], [ -70.17205810546875, -4.014679908752441 ], [ -70.17083740234375, -4.018730163574219 ], [ -70.168106079101506, -4.024761199951172 ], [ -70.165901184082031, -4.03183984756464 ], [ -70.163536071777287, -4.037028789520264 ], [ -70.159843444824219, -4.042658805847168 ], [ -70.156272888183537, -4.046589851379281 ], [ -70.153282165527344, -4.049289226531926 ], [ -70.149772644042969, -4.051609039306584 ], [ -70.145301818847656, -4.055098056793156 ], [ -70.142723083496094, -4.056669235229492 ], [ -70.139839172363281, -4.058020114898682 ], [ -70.135566711425781, -4.059078216552734 ], [ -70.130012512207031, -4.059429168701115 ], [ -70.126441955566349, -4.059490203857422 ], [ -70.118843078613281, -4.059101104736328 ], [ -70.116867065429688, -4.059470176696777 ], [ -70.104080200195312, -4.059089183807373 ], [ -70.101325988769531, -4.059268951416016 ], [ -70.098518371581918, -4.060029983520451 ], [ -70.092681884765568, -4.062870025634709 ], [ -70.089698791503906, -4.063782215118408 ], [ -70.087615966796818, -4.064739227294922 ], [ -70.079040527343693, -4.067440032958928 ], [ -70.076683044433594, -4.068449974060002 ], [ -70.075309753417912, -4.06935882568348 ], [ -70.071357727050781, -4.07290077209467 ], [ -70.066963195800781, -4.077068805694523 ], [ -70.064033508300781, -4.080210208892822 ], [ -70.062362670898381, -4.08273983001709 ], [ -70.060737609863224, -4.0860400199889 ], [ -70.059051513671875, -4.090701103210336 ], [ -70.058929443359318, -4.091518878936768 ], [ -70.057952880859318, -4.093699932098389 ], [ -70.057899475097656, -4.094750881195012 ], [ -70.057319641113168, -4.095569133758488 ], [ -70.0567626953125, -4.097510814666748 ], [ -70.053405761718636, -4.104959011077824 ], [ -70.046432495117131, -4.116169929504395 ], [ -70.038978576660099, -4.126020908355713 ], [ -70.034599304199162, -4.133308887481689 ], [ -70.031326293945312, -4.137389183044434 ], [ -70.027290344238281, -4.141879081726017 ], [ -70.024169921875, -4.146850109100285 ], [ -70.022956848144474, -4.149429798126221 ], [ -70.0211181640625, -4.15529823303217 ], [ -70.019866943359375, -4.162639141082764 ], [ -70.019111633300781, -4.165760040283146 ], [ -70.018142700195312, -4.168728828430119 ], [ -70.01654052734375, -4.172338962554932 ], [ -70.015258789062386, -4.174779891967717 ], [ -70.011047363281193, -4.181120872497559 ], [ -70.007530212402287, -4.187739849090576 ], [ -70.001228332519474, -4.197380065917969 ], [ -69.996353149414006, -4.202219009399357 ], [ -69.993621826171875, -4.204228878021183 ], [ -69.989952087402287, -4.207428932189941 ], [ -69.986442565917912, -4.2095689773559 ], [ -69.983917236328125, -4.210440158843937 ], [ -69.980728149414006, -4.210690021514836 ], [ -69.978523254394474, -4.211289882659855 ], [ -69.975326538085938, -4.211660861968994 ], [ -69.967857360839787, -4.213449954986572 ], [ -69.961921691894474, -4.215559005737305 ], [ -69.957801818847656, -4.21751880645752 ], [ -69.957450866699162, -4.217680931091309 ], [ -69.956367492675781, -4.218338966369572 ], [ -69.951797485351562, -4.222459793090763 ], [ -69.950607299804688, -4.224069118499699 ], [ -69.949569702148438, -4.226429939269963 ], [ -69.949546813964787, -4.226698875427246 ], [ -69.949440002441349, -4.22842884063715 ], [ -69.949432373046818, -4.228620052337646 ], [ -69.948982238769418, -4.230501174926758 ], [ -69.948677062988224, -4.234519004821777 ], [ -69.948722839355469, -4.239299774169865 ], [ -69.948959350585881, -4.241490840911865 ], [ -69.949409484863281, -4.242689132690316 ], [ -69.949729919433537, -4.244540214538574 ], [ -69.950210571289006, -4.247300148010254 ], [ -69.950721740722656, -4.250189781188965 ], [ -69.95074462890625, -4.251023769378662 ], [ -69.950767517089787, -4.252089023590088 ], [ -69.95088958740223, -4.256360054016113 ], [ -69.950576782226506, -4.261858940124455 ], [ -69.950820922851562, -4.26350021362299 ], [ -69.950859069824162, -4.267809867858887 ], [ -69.95111083984375, -4.269580841064453 ], [ -69.951217651367188, -4.270359992980957 ], [ -69.951301574707031, -4.274590969085637 ], [ -69.952316284179574, -4.279990196227971 ], [ -69.953529357910099, -4.289538860320988 ], [ -69.954116821289006, -4.292509078979492 ], [ -69.955497741699219, -4.296819210052433 ], [ -69.956398010253849, -4.29892015457142 ], [ -69.963058471679631, -4.309780120849496 ], [ -69.963760375976449, -4.311379909515381 ], [ -69.965606689453125, -4.314579963684082 ], [ -69.972068786621094, -4.328339099884033 ], [ -69.974342346191349, -4.334049224853516 ], [ -69.975410461425781, -4.337738990783635 ], [ -69.976272583007812, -4.345129966735783 ], [ -69.976257324218636, -4.348058223724252 ], [ -69.975997924804688, -4.350158214569092 ], [ -69.974571228027344, -4.3555588722229 ], [ -69.972480773925781, -4.359010219573918 ], [ -69.970809936523381, -4.362589836120492 ], [ -69.967697143554688, -4.366679191589299 ], [ -69.965911865234375, -4.369668960571289 ], [ -69.956710815429688, -4.380650043487435 ], [ -69.955757141113281, -4.382410049438477 ], [ -69.955551147460881, -4.383578777313176 ], [ -69.955520629882812, -4.385160923004094 ], [ -69.956016540527287, -4.38591909408558 ], [ -69.956916809082031, -4.386550903320199 ], [ -69.959716796875, -4.387158870696908 ], [ -69.962562561035156, -4.387138843536377 ], [ -69.967666625976506, -4.386259078979492 ], [ -69.97027587890625, -4.385391235351506 ], [ -69.9739990234375, -4.383611202239933 ], [ -69.980018615722656, -4.380139827728271 ], [ -69.983116149902287, -4.378601074218693 ], [ -69.991142272949219, -4.37578010559082 ], [ -69.995697021484318, -4.374800205230713 ], [ -70.004730224609375, -4.373830795288086 ], [ -70.006317138671875, -4.373488903045654 ], [ -70.011886596679631, -4.373400211334229 ], [ -70.018676757812443, -4.372559070587158 ], [ -70.022956848144474, -4.371199131011963 ], [ -70.0257568359375, -4.369680881500244 ], [ -70.027153015136662, -4.368629932403508 ], [ -70.029289245605469, -4.366640090942326 ], [ -70.032402038574162, -4.362921237945557 ], [ -70.039253234863281, -4.351278781890869 ], [ -70.040206909179688, -4.348068237304688 ], [ -70.040412902831974, -4.341629028320256 ], [ -70.041046142578125, -4.337919235229492 ], [ -70.042007446289062, -4.335128784179631 ], [ -70.043502807617188, -4.331759929656982 ], [ -70.044136047363224, -4.33076000213623 ], [ -70.04693603515625, -4.328138828277531 ], [ -70.048919677734318, -4.326639175415039 ], [ -70.051918029785156, -4.325290203094426 ], [ -70.054702758789062, -4.324738025665226 ], [ -70.058708190917969, -4.324759006500244 ], [ -70.065208435058537, -4.324159145355225 ], [ -70.068016052246094, -4.323389053344727 ], [ -70.07232666015625, -4.321818828582764 ], [ -70.074386596679574, -4.320659160614014 ], [ -70.076393127441293, -4.31889009475708 ], [ -70.077720642089787, -4.317269802093506 ], [ -70.07891845703125, -4.314579963684082 ], [ -70.079086303710938, -4.310911178588867 ], [ -70.078506469726562, -4.308578968048096 ], [ -70.076995849609375, -4.306519031524601 ], [ -70.075332641601506, -4.305048942565861 ], [ -70.074096679687443, -4.304459095001221 ], [ -70.073989868164006, -4.304440021514836 ], [ -70.072082519531193, -4.304096221923828 ], [ -70.071662902832031, -4.304020881652832 ], [ -70.068740844726506, -4.303988933563232 ], [ -70.063781738281193, -4.305249214172363 ], [ -70.061408996581974, -4.30551815032959 ], [ -70.060066223144474, -4.305668830871525 ], [ -70.058830261230412, -4.306011199951172 ], [ -70.056678771972656, -4.305990219116154 ], [ -70.053627014160156, -4.305961132049561 ], [ -70.050216674804688, -4.305259227752629 ], [ -70.047317504882812, -4.304130077362004 ], [ -70.044715881347599, -4.302779197692814 ], [ -70.043136596679688, -4.301680088043213 ], [ -70.041267395019474, -4.299919128417969 ], [ -70.040382385253906, -4.298189163207951 ], [ -70.040222167968693, -4.297290802001839 ], [ -70.040496826171818, -4.295470237731934 ], [ -70.041839599609318, -4.292750835418701 ], [ -70.043121337890625, -4.291731834411507 ], [ -70.04638671875, -4.291470050811711 ], [ -70.049674987792912, -4.292451858520451 ], [ -70.050697326660156, -4.292759895324707 ], [ -70.051612854003906, -4.293338775634766 ], [ -70.056427001953068, -4.295100212097168 ], [ -70.057685852050724, -4.295319080352783 ], [ -70.059700012206918, -4.295239925384521 ], [ -70.062286376953125, -4.294319152831974 ], [ -70.064926147460881, -4.292679786682129 ], [ -70.068527221679688, -4.290019989013615 ], [ -70.072517395019531, -4.286368846893254 ], [ -70.07448577880848, -4.285618782043457 ], [ -70.076454162597599, -4.285209178924561 ], [ -70.078742980956974, -4.2852587699889 ], [ -70.080551147460881, -4.285549163818303 ], [ -70.082756042480412, -4.286849975585938 ], [ -70.086471557617131, -4.288160800933781 ], [ -70.088752746581974, -4.289339065551758 ], [ -70.089981079101562, -4.289669036865234 ], [ -70.091262817382756, -4.289550781249943 ], [ -70.093772888183594, -4.288400173187256 ], [ -70.095642089843693, -4.287969112396183 ], [ -70.096771240234318, -4.287199020385685 ], [ -70.098777770996037, -4.285060882568303 ], [ -70.099830627441349, -4.283030033111515 ], [ -70.100273132324219, -4.277979850768986 ], [ -70.100326538085824, -4.266018867492619 ], [ -70.100700378417912, -4.263919830322266 ], [ -70.101310729980469, -4.262189865112305 ], [ -70.102226257324162, -4.260610103607064 ], [ -70.103652954101506, -4.259048938751164 ], [ -70.106491088867131, -4.256899833679142 ], [ -70.108802795410099, -4.256158828735352 ], [ -70.109016418457031, -4.256091117858887 ], [ -70.110755920410156, -4.255949974060002 ], [ -70.11163330078125, -4.256138801574707 ], [ -70.113090515136662, -4.256940841674805 ], [ -70.114410400390568, -4.258090019226074 ], [ -70.114730834960824, -4.258591175079346 ], [ -70.114936828613281, -4.258910179138127 ], [ -70.115310668945312, -4.260112762451172 ], [ -70.115615844726562, -4.261129856109619 ], [ -70.115760803222599, -4.263609886169434 ], [ -70.114677429199219, -4.268485069274902 ], [ -70.114517211914006, -4.269179821014404 ], [ -70.113616943359375, -4.271571159362793 ], [ -70.113410949707031, -4.274240016937199 ], [ -70.113693237304688, -4.275959968566895 ], [ -70.114837646484375, -4.279369831085091 ], [ -70.117385864257756, -4.283189773559513 ], [ -70.118492126464844, -4.284149169921875 ], [ -70.120681762695312, -4.285090923309326 ], [ -70.124130249023438, -4.285581111907902 ], [ -70.12603759765625, -4.285329818725586 ], [ -70.127609252929688, -4.284831047058049 ], [ -70.131782531738224, -4.282021045684758 ], [ -70.132736206054631, -4.281050205230713 ], [ -70.133026123046818, -4.280818939208984 ], [ -70.140632629394474, -4.27482080459589 ], [ -70.1431884765625, -4.27341890335083 ], [ -70.146553039550724, -4.271969795227051 ], [ -70.148345947265625, -4.271670818328857 ], [ -70.14910888671875, -4.271328926086426 ], [ -70.151580810546875, -4.271409034729004 ], [ -70.154472351074162, -4.272539138793832 ], [ -70.155891418456974, -4.273379802703857 ], [ -70.157699584960938, -4.275209903716984 ], [ -70.158157348632812, -4.276044845580998 ], [ -70.158401489257756, -4.276497840881291 ], [ -70.159416198730469, -4.279931068420353 ], [ -70.160591125488224, -4.287088871002197 ], [ -70.160964965820256, -4.28817892074585 ], [ -70.16131591796875, -4.289190769195557 ], [ -70.162796020507699, -4.291490077972355 ], [ -70.166618347167969, -4.295080184936523 ], [ -70.167747497558537, -4.296140193939209 ], [ -70.168449401855469, -4.297120094299203 ], [ -70.170806884765511, -4.302820205688477 ], [ -70.170890808105412, -4.304948806762638 ], [ -70.170906066894531, -4.305378913879395 ], [ -70.170722961425781, -4.306200027465763 ], [ -70.170486450195256, -4.307188987731934 ], [ -70.169952392578125, -4.308340072631836 ], [ -70.167037963867188, -4.310978889465332 ], [ -70.160041809082031, -4.314898967742863 ], [ -70.156150817871094, -4.316750049591008 ], [ -70.154212951660043, -4.31839990615839 ], [ -70.152397155761605, -4.320368766784668 ], [ -70.151817321777287, -4.322198867797795 ], [ -70.151702880859318, -4.324499130248967 ], [ -70.151908874511662, -4.326878070831299 ], [ -70.152458190917912, -4.328639984130803 ], [ -70.1539306640625, -4.331089973449707 ], [ -70.156539916992188, -4.332590103149357 ], [ -70.161979675292969, -4.333360195159855 ], [ -70.169250488281193, -4.332909107208252 ], [ -70.172012329101506, -4.333559036254826 ], [ -70.173919677734318, -4.334409236907902 ], [ -70.175758361816349, -4.335240840911865 ], [ -70.176795959472599, -4.336419105529785 ], [ -70.176956176757812, -4.336841106414738 ], [ -70.177589416503906, -4.338479042053166 ], [ -70.178115844726506, -4.345169067382812 ], [ -70.178352355957031, -4.348079204559269 ], [ -70.17877197265625, -4.349348068237305 ], [ -70.17962646484375, -4.352011203765869 ], [ -70.182792663574162, -4.356650829315186 ], [ -70.184669494628906, -4.358398914337101 ], [ -70.187705993652344, -4.359630107879582 ], [ -70.190345764160099, -4.360249996185246 ], [ -70.194007873535156, -4.360128879547119 ], [ -70.197540283203125, -4.359219074249268 ], [ -70.2003173828125, -4.357480049133244 ], [ -70.200942993163949, -4.356790065765381 ], [ -70.201705932617074, -4.354929924011174 ], [ -70.201911926269531, -4.352078914642334 ], [ -70.201316833496037, -4.349958896636906 ], [ -70.201080322265625, -4.348049163818359 ], [ -70.200439453124943, -4.346118927001839 ], [ -70.2003173828125, -4.343550205230713 ], [ -70.201171875, -4.339690208435002 ], [ -70.202796936035156, -4.335240840911865 ], [ -70.203361511230469, -4.333109855651799 ], [ -70.203842163085938, -4.329918861389103 ], [ -70.203948974609375, -4.325779914855957 ], [ -70.204452514648381, -4.323838233947754 ], [ -70.205589294433537, -4.321838855743408 ], [ -70.2069091796875, -4.32020092010498 ], [ -70.210372924804631, -4.316658973693791 ], [ -70.211608886718693, -4.314520835876408 ], [ -70.212165832519474, -4.311719894409123 ], [ -70.211517333984318, -4.305869102478027 ], [ -70.211692810058537, -4.301910877227783 ], [ -70.212257385253849, -4.299889087677002 ], [ -70.212776184082031, -4.299020767211857 ], [ -70.213478088378906, -4.298368930816594 ], [ -70.213722229003793, -4.298150062560978 ], [ -70.214736938476506, -4.297778129577637 ], [ -70.216293334960824, -4.297820091247502 ], [ -70.217269897460938, -4.298338890075684 ], [ -70.217689514160099, -4.298859119415283 ], [ -70.217910766601506, -4.299129962921143 ], [ -70.218376159667912, -4.300411224365178 ], [ -70.218437194824219, -4.301919937133789 ], [ -70.218498229980469, -4.303188800811711 ], [ -70.218437194824219, -4.304190158843937 ], [ -70.217987060546818, -4.305589199066105 ], [ -70.217987060546818, -4.307339191436768 ], [ -70.217987060546818, -4.307989120483342 ], [ -70.218208312988281, -4.309868812560978 ], [ -70.21877288818348, -4.311698913574219 ], [ -70.219726562499886, -4.313478946685791 ], [ -70.221199035644531, -4.314990997314396 ], [ -70.22249603271473, -4.315841197967472 ], [ -70.225196838378906, -4.316739082336369 ], [ -70.228118896484261, -4.316679000854435 ], [ -70.231071472167912, -4.316030025482178 ], [ -70.232437133789062, -4.315559864044189 ], [ -70.234222412109261, -4.314589023590031 ], [ -70.239006042480469, -4.312880039215031 ], [ -70.248466491699219, -4.311879158019963 ], [ -70.256706237792912, -4.31010913848877 ], [ -70.259086608886662, -4.309110164642334 ], [ -70.260215759277344, -4.308361053466797 ], [ -70.264785766601562, -4.303490161895695 ], [ -70.266609191894531, -4.30072116851801 ], [ -70.268409729003906, -4.296798229217416 ], [ -70.268486022949219, -4.295151233673096 ], [ -70.267959594726506, -4.294188976287785 ], [ -70.265907287597656, -4.293179035186711 ], [ -70.261932373046875, -4.292530059814453 ], [ -70.260848999023438, -4.292358875274658 ], [ -70.258087158203125, -4.29222917556757 ], [ -70.255599975585938, -4.291669845581055 ], [ -70.253646850585881, -4.290888786315918 ], [ -70.251358032226506, -4.289978981018066 ], [ -70.249900817871094, -4.289011001586857 ], [ -70.24884033203125, -4.288300037383976 ], [ -70.246887207031193, -4.286368846893254 ], [ -70.245773315429688, -4.283839225769043 ], [ -70.245132446289062, -4.281451225280762 ], [ -70.245048522949219, -4.278590202331543 ], [ -70.245071411132756, -4.27849006652832 ], [ -70.245689392089844, -4.27515983581543 ], [ -70.246879577636662, -4.27341890335083 ], [ -70.249221801757812, -4.271518230438176 ], [ -70.251846313476506, -4.27045822143549 ], [ -70.253479003906193, -4.270239830017033 ], [ -70.2547607421875, -4.270339965820312 ], [ -70.256790161132756, -4.27086877822876 ], [ -70.260047912597599, -4.272569179534912 ], [ -70.263496398925724, -4.275469779968262 ], [ -70.266777038574219, -4.277639865875244 ], [ -70.267822265625, -4.277999877929631 ], [ -70.270881652832031, -4.279650211334229 ], [ -70.274246215820256, -4.280848979949894 ], [ -70.277359008789062, -4.283409118652344 ], [ -70.281745910644531, -4.286079883575439 ], [ -70.284179687499943, -4.287138938903752 ], [ -70.287300109863281, -4.287879943847656 ], [ -70.288856506347599, -4.287999153137207 ], [ -70.290390014648381, -4.287758827209416 ], [ -70.291442871093636, -4.287240028381348 ], [ -70.292106628417912, -4.286579132080021 ], [ -70.292579650878849, -4.285799026489144 ], [ -70.292526245117188, -4.285129070281926 ], [ -70.291313171386662, -4.28376913070673 ], [ -70.289680480957031, -4.282569885253849 ], [ -70.286628723144531, -4.28032922744751 ], [ -70.285972595214787, -4.27983903884882 ], [ -70.28497314453125, -4.278789043426514 ], [ -70.284896850585938, -4.278619766235295 ], [ -70.283927917480469, -4.276430130004826 ], [ -70.283882141113224, -4.273939132690373 ], [ -70.283958435058594, -4.27341890335083 ], [ -70.284156799316406, -4.272119998931885 ], [ -70.285499572753849, -4.270608901977482 ], [ -70.28662109375, -4.269849777221623 ], [ -70.29559326171875, -4.266679763793945 ], [ -70.300453186035156, -4.264029026031437 ], [ -70.30242919921875, -4.26271915435791 ], [ -70.305320739746094, -4.260330200195312 ], [ -70.307228088378906, -4.258339881896973 ], [ -70.308296203613224, -4.256518840789738 ], [ -70.309341430664006, -4.25377082824707 ], [ -70.309486389160156, -4.252040863037109 ], [ -70.309371948242074, -4.248791217803955 ], [ -70.309013366699219, -4.247581005096379 ], [ -70.307342529296818, -4.245369911193848 ], [ -70.305900573730469, -4.244089126586857 ], [ -70.305610656738281, -4.243908882141 ], [ -70.303199768066406, -4.242339134216309 ], [ -70.300086975097599, -4.240579128265267 ], [ -70.297660827636719, -4.239490032196045 ], [ -70.292503356933594, -4.237918853759766 ], [ -70.292167663574219, -4.237868785858154 ], [ -70.289749145507812, -4.237520217895451 ], [ -70.285026550292912, -4.236369132995605 ], [ -70.282958984374886, -4.235661029815617 ], [ -70.282241821289062, -4.235289096832275 ], [ -70.281227111816349, -4.234780788421631 ], [ -70.280029296875, -4.233938217163086 ], [ -70.278900146484375, -4.232380867004395 ], [ -70.278480529785156, -4.230958938598519 ], [ -70.278366088867131, -4.228469848632812 ], [ -70.278762817382699, -4.226469039916935 ], [ -70.280609130859375, -4.217199802398682 ], [ -70.282997131347656, -4.211039066314584 ], [ -70.285797119140568, -4.205359935760498 ], [ -70.286766052246037, -4.202939033508301 ], [ -70.287483215332031, -4.19983005523676 ], [ -70.288497924804688, -4.189870834350586 ], [ -70.287811279296818, -4.180049896240178 ], [ -70.287033081054631, -4.17654895782465 ], [ -70.285713195800724, -4.172820091247559 ], [ -70.286087036132756, -4.168989181518555 ], [ -70.286468505859318, -4.167660236358586 ], [ -70.290817260742188, -4.161428928375187 ], [ -70.292778015136605, -4.159779071807748 ], [ -70.294242858886719, -4.15923023223877 ], [ -70.295936584472656, -4.158911228179932 ], [ -70.299133300781193, -4.158820152282715 ], [ -70.303939819335824, -4.158178806304875 ], [ -70.305717468261662, -4.157719135284424 ], [ -70.308036804199105, -4.156659126281738 ], [ -70.312141418456918, -4.152739048004094 ], [ -70.313369750976506, -4.15093803405756 ], [ -70.314186096191406, -4.149300098419189 ], [ -70.315483093261719, -4.147871017455998 ], [ -70.316986083984318, -4.145459175109806 ], [ -70.318122863769474, -4.144239902496338 ], [ -70.319915771484375, -4.142858982086182 ], [ -70.321533203125, -4.142199993133488 ], [ -70.322441101074105, -4.142069816589299 ], [ -70.324348449706918, -4.142230033874512 ], [ -70.326416015624943, -4.143209934234562 ], [ -70.326652526855469, -4.143439769744816 ], [ -70.328056335449162, -4.144810199737435 ], [ -70.329292297363224, -4.147678852081299 ], [ -70.329391479492131, -4.151158809661865 ], [ -70.329261779785156, -4.15156078338623 ], [ -70.32916259765625, -4.151858806610107 ], [ -70.328956604003906, -4.154610157012883 ], [ -70.32855224609375, -4.15595006942749 ], [ -70.328262329101562, -4.156900882720947 ], [ -70.327796936035156, -4.159979820251465 ], [ -70.327682495117074, -4.1662402153014 ], [ -70.327850341796818, -4.166668891906738 ], [ -70.328018188476562, -4.167129039764404 ], [ -70.328163146972543, -4.168959140777531 ], [ -70.328987121581974, -4.171020030975342 ], [ -70.330726623535099, -4.174149036407414 ], [ -70.333030700683594, -4.176401138305607 ], [ -70.336425781249943, -4.178780078887939 ], [ -70.337097167968693, -4.178980827331486 ], [ -70.338760375976562, -4.178959846496468 ], [ -70.341957092285099, -4.178131103515625 ], [ -70.34375, -4.177218914031982 ], [ -70.347572326660156, -4.174530029296818 ], [ -70.352859497070199, -4.169609069824219 ], [ -70.354469299316349, -4.167728900909424 ], [ -70.358528137207031, -4.161949157714787 ], [ -70.36067962646473, -4.157818794250488 ], [ -70.361709594726506, -4.155468940734806 ], [ -70.362670898437443, -4.152399063110352 ], [ -70.363265991210938, -4.149329185485783 ], [ -70.364006042480412, -4.147251129150334 ], [ -70.366203308105412, -4.143528938293457 ], [ -70.369049072265568, -4.140310764312744 ], [ -70.371429443359318, -4.138309955596867 ], [ -70.374557495117188, -4.13608980178833 ], [ -70.378852844238281, -4.133659839630127 ], [ -70.380790710449162, -4.133100032806283 ], [ -70.382881164550724, -4.133090019226074 ], [ -70.385482788085938, -4.133958816528263 ], [ -70.389602661132812, -4.135989189147892 ], [ -70.391822814941406, -4.136800765991154 ], [ -70.395545959472656, -4.137228965759221 ], [ -70.398757934570312, -4.137208938598576 ], [ -70.408882141113281, -4.135770797729435 ], [ -70.414268493652287, -4.135550022125244 ], [ -70.417877197265568, -4.135049819946289 ], [ -70.42230224609375, -4.133868217468205 ], [ -70.428100585937443, -4.13165903091425 ], [ -70.431648254394531, -4.13103008270258 ], [ -70.433647155761719, -4.131010055541935 ], [ -70.436676025390568, -4.132260799407959 ], [ -70.438690185546761, -4.1336989402771 ], [ -70.439613342285099, -4.13459920883173 ], [ -70.440467834472599, -4.135770797729435 ], [ -70.441688537597656, -4.137400150299015 ], [ -70.442497253417912, -4.14031982421875 ], [ -70.442070007324219, -4.141718864440804 ], [ -70.441383361816406, -4.142929077148438 ], [ -70.440879821777287, -4.143799781799316 ], [ -70.437232971191349, -4.147398948669434 ], [ -70.434432983398438, -4.150158882141 ], [ -70.433486938476562, -4.151519775390625 ], [ -70.433418273925724, -4.15185022354126 ], [ -70.433036804199162, -4.153571128845215 ], [ -70.432586669921761, -4.154370784759408 ], [ -70.432266235351506, -4.157019138336182 ], [ -70.432556152343693, -4.159299850463867 ], [ -70.433456420898438, -4.160880088806096 ], [ -70.43450927734375, -4.161931037902832 ], [ -70.436111450195256, -4.16283988952631 ], [ -70.437576293945312, -4.163319110870361 ], [ -70.439132690429631, -4.163479804992619 ], [ -70.441276550292969, -4.162740230560246 ], [ -70.444763183593693, -4.160368919372559 ], [ -70.447853088378906, -4.158588886260986 ], [ -70.451103210449219, -4.158170223236027 ], [ -70.453971862792969, -4.158749103546143 ], [ -70.454826354980469, -4.159440040588379 ], [ -70.455657958984318, -4.160540103912354 ], [ -70.456550598144531, -4.16314077377308 ], [ -70.457069396972599, -4.166308879852238 ], [ -70.457931518554631, -4.168448925018311 ], [ -70.458671569824219, -4.171290874481144 ], [ -70.459640502929631, -4.173281192779541 ], [ -70.460556030273438, -4.174311161041203 ], [ -70.461936950683537, -4.17519998550415 ], [ -70.464309692382756, -4.175879001617432 ], [ -70.465408325195312, -4.175798892974854 ], [ -70.466361999511719, -4.175459861755314 ], [ -70.468482971191406, -4.173439979553223 ], [ -70.470550537109375, -4.169981002807617 ], [ -70.472320556640568, -4.165550231933537 ], [ -70.473129272460938, -4.164449214935246 ], [ -70.473800659179688, -4.162949085235596 ], [ -70.475166320800781, -4.16146993637085 ], [ -70.477676391601506, -4.160160064697266 ], [ -70.479957580566349, -4.159920215606689 ], [ -70.481773376464787, -4.160068988799935 ], [ -70.485206604003849, -4.161029815673828 ], [ -70.48699951171875, -4.162569046020451 ], [ -70.487846374511719, -4.163649082183838 ], [ -70.488555908203068, -4.165248870849609 ], [ -70.489242553710938, -4.167829036712646 ], [ -70.490196228027344, -4.173180103302002 ], [ -70.491043090820256, -4.185759067535344 ], [ -70.492851257324162, -4.192501068115234 ], [ -70.493896484374943, -4.194460868835336 ], [ -70.49603271484375, -4.196889877319279 ], [ -70.497550964355469, -4.198018074035588 ], [ -70.500137329101562, -4.199240207672119 ], [ -70.502746582031193, -4.20006084442133 ], [ -70.50634765625, -4.199709892272949 ], [ -70.507392883300781, -4.199419975280648 ], [ -70.508758544921818, -4.198599815368652 ], [ -70.51177978515625, -4.196438789367676 ], [ -70.512878417968693, -4.195359230041447 ], [ -70.514099121093693, -4.193189144134521 ], [ -70.514312744140568, -4.191948890686035 ], [ -70.514190673828068, -4.189819812774545 ], [ -70.513557434081918, -4.188189029693604 ], [ -70.510520935058594, -4.184179782867432 ], [ -70.507026672363281, -4.179568767547551 ], [ -70.506095886230412, -4.177900791168213 ], [ -70.505477905273438, -4.176351070404053 ], [ -70.504615783691406, -4.173439979553223 ], [ -70.503288269042969, -4.168959140777531 ], [ -70.502937316894474, -4.167760848999023 ], [ -70.502731323242188, -4.164369106292668 ], [ -70.503799438476506, -4.159531116485596 ], [ -70.505279541015625, -4.155720233917236 ], [ -70.506782531738168, -4.152789115905762 ], [ -70.508827209472656, -4.14985990524292 ], [ -70.514411926269418, -4.144340038299561 ], [ -70.521553039550724, -4.137939929962045 ], [ -70.523017883300781, -4.136970043182373 ], [ -70.5245361328125, -4.136940002441349 ], [ -70.525947570800724, -4.138258934020939 ], [ -70.528572082519531, -4.142250061035156 ], [ -70.530609130859318, -4.144491195678711 ], [ -70.532356262207031, -4.14568901062006 ], [ -70.533477783203068, -4.145989894866943 ], [ -70.535285949706974, -4.14568901062006 ], [ -70.536491394042969, -4.145239830017033 ], [ -70.541831970214844, -4.14100980758667 ], [ -70.543571472167912, -4.139628887176457 ], [ -70.544158935546818, -4.139280796051025 ], [ -70.544662475585938, -4.138970851898193 ], [ -70.54705810546875, -4.137848854064885 ], [ -70.548896789550781, -4.13732004165638 ], [ -70.549057006835938, -4.13732004165638 ], [ -70.551261901855469, -4.137400150299015 ], [ -70.551956176757756, -4.137639999389648 ], [ -70.552947998046875, -4.138699054717961 ], [ -70.553207397460881, -4.139789104461613 ], [ -70.55316162109375, -4.140621185302734 ], [ -70.552490234375, -4.141809940338135 ], [ -70.551666259765568, -4.142679214477539 ], [ -70.550743103027287, -4.143679141998234 ], [ -70.549285888671818, -4.14454984664917 ], [ -70.545318603515625, -4.146359920501595 ], [ -70.543571472167912, -4.147719860076847 ], [ -70.542633056640568, -4.148449897766113 ], [ -70.541709899902344, -4.149169921874943 ], [ -70.541122436523438, -4.150410175323429 ], [ -70.540832519531136, -4.151679039001465 ], [ -70.540779113769531, -4.155090808868351 ], [ -70.541122436523438, -4.156398773193303 ], [ -70.542793273925781, -4.158510208129883 ], [ -70.544273376464844, -4.159568786621037 ], [ -70.545478820800724, -4.160049915313664 ], [ -70.547302246093693, -4.16077995300293 ], [ -70.551712036132812, -4.161529064178467 ], [ -70.553810119628906, -4.162408828735352 ], [ -70.554519653320312, -4.163119792938232 ], [ -70.556007385253906, -4.16461086273182 ], [ -70.557762145996094, -4.167409896850529 ], [ -70.558197021484375, -4.169379234313851 ], [ -70.558181762695256, -4.172039031982365 ], [ -70.557212829589787, -4.175580024719238 ], [ -70.555831909179688, -4.178679943084717 ], [ -70.554786682128906, -4.180388927459717 ], [ -70.553970336914006, -4.183019161224365 ], [ -70.553451538085938, -4.184689998626652 ], [ -70.552581787109375, -4.188858985900822 ], [ -70.552490234375, -4.189280033111515 ], [ -70.552490234375, -4.193389892578125 ], [ -70.553039550781136, -4.197020053863412 ], [ -70.554862976074219, -4.201828956603947 ], [ -70.555686950683537, -4.20337009429926 ], [ -70.557090759277344, -4.205419063568115 ], [ -70.558197021484375, -4.206639766693115 ], [ -70.561569213867188, -4.209300041198674 ], [ -70.563766479492188, -4.210428237914982 ], [ -70.566108703613281, -4.211218833923283 ], [ -70.570976257324219, -4.211528778076115 ], [ -70.572738647460938, -4.211080074310246 ], [ -70.57415771484375, -4.21044921875 ], [ -70.575286865234375, -4.20897912979126 ], [ -70.575576782226562, -4.206809043884277 ], [ -70.575241088867131, -4.204730033874455 ], [ -70.573837280273438, -4.201539993286133 ], [ -70.572563171386662, -4.199459075927734 ], [ -70.571823120117074, -4.198239803314095 ], [ -70.567321777343693, -4.192790031433105 ], [ -70.565788269042912, -4.19028997421259 ], [ -70.564140319824219, -4.188189029693604 ], [ -70.563377380371094, -4.186620235443115 ], [ -70.563278198242188, -4.186298847198486 ], [ -70.562606811523438, -4.184088230133057 ], [ -70.562477111816293, -4.1803297996521 ], [ -70.562797546386719, -4.177959918975773 ], [ -70.563346862792969, -4.176559925079289 ], [ -70.563667297363281, -4.175748825073242 ], [ -70.564796447753906, -4.174718856811523 ], [ -70.566291809081918, -4.1738600730896 ], [ -70.568305969238281, -4.173281192779541 ], [ -70.569580078125, -4.173231124877873 ], [ -70.569908142089787, -4.17336988449091 ], [ -70.572425842285156, -4.174428939819336 ], [ -70.576461791992131, -4.17746114730835 ], [ -70.580268859863281, -4.181430816650391 ], [ -70.583526611328068, -4.184360027313119 ], [ -70.585693359375, -4.185908794403076 ], [ -70.588096618652287, -4.186998844146672 ], [ -70.590438842773438, -4.187429904937744 ], [ -70.594535827636719, -4.18747091293335 ], [ -70.597152709960938, -4.187828063964844 ], [ -70.602470397949219, -4.189459800720215 ], [ -70.604690551757756, -4.189908981323242 ], [ -70.612297058105469, -4.192739963531494 ], [ -70.616806030273381, -4.193599224090519 ], [ -70.619087219238281, -4.193480968475285 ], [ -70.621742248535156, -4.192539215087834 ], [ -70.623588562011662, -4.191189765930176 ], [ -70.628585815429688, -4.186520099639893 ], [ -70.631362915039062, -4.183339118957463 ], [ -70.633331298828068, -4.180490016937199 ], [ -70.634742736816349, -4.177179813384953 ], [ -70.634742736816349, -4.173708915710449 ], [ -70.634407043457031, -4.171518802642822 ], [ -70.632026672363281, -4.165558815002441 ], [ -70.6319580078125, -4.165409088134766 ], [ -70.629150390625, -4.159908771514893 ], [ -70.624603271484375, -4.15185022354126 ], [ -70.624252319335881, -4.151089191436711 ], [ -70.622161865234318, -4.146519184112492 ], [ -70.620033264160156, -4.142698764801025 ], [ -70.618736267089787, -4.13984823226923 ], [ -70.616981506347656, -4.134611129760685 ], [ -70.61669921875, -4.133079051971436 ], [ -70.616851806640625, -4.130050182342529 ], [ -70.616889953613281, -4.12995004653925 ], [ -70.617233276367188, -4.129199981689453 ], [ -70.618446350097599, -4.12772083282465 ], [ -70.619369506835938, -4.127119064331055 ], [ -70.62042236328125, -4.126839160919189 ], [ -70.64363861083973, -4.127181053161621 ], [ -70.645233154296818, -4.127548217773438 ], [ -70.646316528320312, -4.128539085388127 ], [ -70.649375915527344, -4.133439064025822 ], [ -70.649887084960938, -4.135159969329834 ], [ -70.650032043457031, -4.135650157928467 ], [ -70.650901794433594, -4.141438961029053 ], [ -70.651008605957031, -4.150350093841496 ], [ -70.650878906249943, -4.151020050048828 ], [ -70.650466918945256, -4.15324878692627 ], [ -70.650390624999943, -4.157198905944824 ], [ -70.65032958984375, -4.157719135284424 ], [ -70.649826049804631, -4.162421226501465 ], [ -70.649917602539006, -4.163319110870361 ], [ -70.650466918945256, -4.164050102233887 ], [ -70.651298522949219, -4.164429187774601 ], [ -70.652023315429631, -4.16441011428833 ], [ -70.653251647949162, -4.163479804992619 ], [ -70.653930664062443, -4.162399768829346 ], [ -70.654617309570312, -4.16011905670166 ], [ -70.655296325683594, -4.156039237976074 ], [ -70.656883239746037, -4.150869846343994 ], [ -70.657119750976562, -4.150070190429688 ], [ -70.658851623535156, -4.146941184997502 ], [ -70.66033935546875, -4.14496898651123 ], [ -70.661270141601506, -4.14421892166132 ], [ -70.662590026855412, -4.14362907409668 ], [ -70.664512634277287, -4.143021106719971 ], [ -70.665702819824219, -4.142879009246712 ], [ -70.666412353515568, -4.142789840698242 ], [ -70.668746948242188, -4.14323902130127 ], [ -70.670158386230469, -4.144429206848088 ], [ -70.670516967773381, -4.146100044250488 ], [ -70.670242309570199, -4.148210048675537 ], [ -70.669509887695312, -4.150559902191162 ], [ -70.669136047363281, -4.151729106903019 ], [ -70.667793273925781, -4.154730796813965 ], [ -70.666412353515568, -4.159879207611027 ], [ -70.666175842285156, -4.161520004272404 ], [ -70.666168212890625, -4.162589073181096 ], [ -70.666107177734318, -4.165839195251408 ], [ -70.666336059570199, -4.1662402153014 ], [ -70.667106628417969, -4.171969890594482 ], [ -70.667686462402344, -4.173809051513672 ], [ -70.667816162109375, -4.174499988555908 ], [ -70.668533325195312, -4.17801904678339 ], [ -70.66890716552723, -4.179928779602051 ], [ -70.669479370117074, -4.182030200958252 ], [ -70.670539855957031, -4.185880184173584 ], [ -70.670669555664062, -4.186749935150146 ], [ -70.671058654785156, -4.189431190490666 ], [ -70.672737121582031, -4.196300029754639 ], [ -70.677001953124943, -4.203168869018555 ], [ -70.678581237792969, -4.20507907867426 ], [ -70.680168151855469, -4.206459999084473 ], [ -70.681510925292969, -4.207269191741887 ], [ -70.68255615234375, -4.207499980926457 ], [ -70.683746337890625, -4.20729923248291 ], [ -70.684883117675781, -4.206398963928166 ], [ -70.685661315917912, -4.204840183257943 ], [ -70.686203002929688, -4.201108932495004 ], [ -70.686302185058594, -4.19661903381342 ], [ -70.687660217285099, -4.192039966583252 ], [ -70.688629150390568, -4.189929962158203 ], [ -70.690567016601562, -4.18812894821167 ], [ -70.692306518554688, -4.18759822845459 ], [ -70.697418212890568, -4.186749935150146 ], [ -70.699356079101562, -4.187199115753174 ], [ -70.705825805664062, -4.18759822845459 ], [ -70.712051391601562, -4.188468933105412 ], [ -70.715415954589787, -4.18858098983759 ], [ -70.717185974121094, -4.18828010559082 ], [ -70.719551086425668, -4.187518119812012 ], [ -70.720832824707031, -4.187479972839299 ], [ -70.722747802734375, -4.18689918518055 ], [ -70.728363037109375, -4.183831214904785 ], [ -70.7313232421875, -4.181398868560791 ], [ -70.735427856445312, -4.176740169525146 ], [ -70.735893249511719, -4.175839900970459 ], [ -70.736907958984261, -4.174660205840951 ], [ -70.739143371582031, -4.170660018920842 ], [ -70.742927551269531, -4.165160179138127 ], [ -70.746070861816406, -4.161969184875431 ], [ -70.748329162597599, -4.160419940948429 ], [ -70.751182556152287, -4.159309864044189 ], [ -70.753036499023438, -4.158829212188607 ], [ -70.757575988769474, -4.158740043640137 ], [ -70.761726379394531, -4.15966081619257 ], [ -70.766311645507812, -4.161478996276855 ], [ -70.770637512206974, -4.165709018707219 ], [ -70.773117065429631, -4.168509960174504 ], [ -70.775543212890625, -4.172318935394287 ], [ -70.779502868652287, -4.177138805389404 ], [ -70.782402038574219, -4.182249069213867 ], [ -70.783889770507756, -4.183859825134221 ], [ -70.785896301269474, -4.185470104217472 ], [ -70.787528991699162, -4.186281204223633 ], [ -70.789131164550724, -4.186629772186222 ], [ -70.792121887206918, -4.186169147491398 ], [ -70.794273376464844, -4.185169219970703 ], [ -70.796417236328011, -4.182838916778508 ], [ -70.798126220703068, -4.181609153747559 ], [ -70.799201965332031, -4.181398868560791 ], [ -70.800941467285156, -4.181879997253418 ], [ -70.801780700683594, -4.182600021362248 ], [ -70.802276611328125, -4.183669090270939 ], [ -70.803558349609318, -4.191211223602238 ], [ -70.804496765136662, -4.193490028381348 ], [ -70.805839538574162, -4.19488000869751 ], [ -70.807212829589844, -4.195639133453369 ], [ -70.811790466308594, -4.196259021759033 ], [ -70.816223144531193, -4.197229862213135 ], [ -70.817298889160043, -4.197729110717773 ], [ -70.818672180175781, -4.198809146881047 ], [ -70.819450378417969, -4.199819087982178 ], [ -70.819587707519418, -4.19999885559082 ], [ -70.819786071777344, -4.200259208679142 ], [ -70.820381164550781, -4.201330184936523 ], [ -70.820716857910099, -4.20195913314808 ], [ -70.820907592773381, -4.202641010284424 ], [ -70.821990966796875, -4.206558227539006 ], [ -70.822921752929631, -4.208859920501709 ], [ -70.824172973632812, -4.210908889770451 ], [ -70.824935913085938, -4.211669921875 ], [ -70.825798034667969, -4.212509155273324 ], [ -70.827369689941406, -4.213610172271672 ], [ -70.829147338867188, -4.214338779449463 ], [ -70.83001708984375, -4.214360237121582 ], [ -70.835151672363281, -4.214468955993596 ], [ -70.835258483886719, -4.214489936828613 ], [ -70.83709716796875, -4.214889049530029 ], [ -70.841079711914062, -4.216491222381535 ], [ -70.843505859374943, -4.217848777770996 ], [ -70.844657897949162, -4.218970775604191 ], [ -70.84527587890625, -4.219570159912109 ], [ -70.846206665039062, -4.221059799194336 ], [ -70.846900939941406, -4.222770214080754 ], [ -70.847221374511662, -4.224968910217285 ], [ -70.847160339355469, -4.22661018371582 ], [ -70.846656799316349, -4.227978229522705 ], [ -70.845596313476506, -4.229719161987191 ], [ -70.844963073730469, -4.230380058288517 ], [ -70.843467712402344, -4.231288909912053 ], [ -70.841941833496094, -4.231449127197209 ], [ -70.841529846191406, -4.231490135192871 ], [ -70.840415954589844, -4.231200218200684 ], [ -70.839523315429574, -4.23045110702509 ], [ -70.834838867187443, -4.225240230560303 ], [ -70.832206726074219, -4.22310018539423 ], [ -70.830360412597599, -4.221270084381104 ], [ -70.826972961425781, -4.219649791717416 ], [ -70.825271606445312, -4.219429016113281 ], [ -70.822807312011662, -4.219628810882568 ], [ -70.819786071777344, -4.220650196075439 ], [ -70.818595886230469, -4.221499919891357 ], [ -70.816482543945312, -4.223879814147949 ], [ -70.816268920898438, -4.224319934844914 ], [ -70.816040039062443, -4.224789142608586 ], [ -70.8157958984375, -4.226709842681885 ], [ -70.816810607910099, -4.23015022277832 ], [ -70.818557739257812, -4.23213005065918 ], [ -70.822120666503906, -4.23514986038208 ], [ -70.824043273925724, -4.237491130828857 ], [ -70.824440002441349, -4.23829984664917 ], [ -70.825920104980469, -4.241370201110783 ], [ -70.826103210449219, -4.242098808288574 ], [ -70.826568603515625, -4.244050025939941 ], [ -70.827178955078125, -4.246539115905762 ], [ -70.827842712402344, -4.248071193695068 ], [ -70.829032897949105, -4.24993896484375 ], [ -70.832290649414062, -4.253088951110783 ], [ -70.834396362304688, -4.254378795623779 ], [ -70.836723327636662, -4.255139827728215 ], [ -70.838356018066349, -4.254999160766602 ], [ -70.839569091796875, -4.254478931426888 ], [ -70.842292785644531, -4.253318786621037 ], [ -70.847068786621094, -4.249361038207951 ], [ -70.849678039550781, -4.247509956359806 ], [ -70.850830078125, -4.246990203857422 ], [ -70.852172851562443, -4.246700763702393 ], [ -70.852439880371094, -4.246638774871712 ], [ -70.855598449707031, -4.246341228485051 ], [ -70.858383178710881, -4.246860027313232 ], [ -70.860252380371094, -4.247581005096379 ], [ -70.862556457519531, -4.249780178070068 ], [ -70.864402770996037, -4.252529144287053 ], [ -70.864662170410099, -4.253499031066895 ], [ -70.864585876464787, -4.256339073181096 ], [ -70.863830566406193, -4.258649826049805 ], [ -70.863471984863281, -4.259300231933537 ], [ -70.862075805664062, -4.261769771575928 ], [ -70.860572814941349, -4.263719081878605 ], [ -70.856689453124886, -4.267848968505859 ], [ -70.855171203613281, -4.26882886886591 ], [ -70.854927062988281, -4.26898813247675 ], [ -70.849258422851562, -4.271509170532227 ], [ -70.848075866699162, -4.2723388671875 ], [ -70.847557067871094, -4.272879123687744 ], [ -70.846305847167969, -4.27419900894165 ], [ -70.845886230468693, -4.275219917297363 ], [ -70.845687866210881, -4.278069019317627 ], [ -70.845863342285156, -4.279708862304631 ], [ -70.846572875976506, -4.280789852142277 ], [ -70.848526000976562, -4.282149791717529 ], [ -70.850723266601562, -4.282741069793701 ], [ -70.855293273925781, -4.282830238342285 ], [ -70.857162475585824, -4.283148765563851 ], [ -70.859596252441406, -4.284328937530404 ], [ -70.862373352050724, -4.286579132080021 ], [ -70.864227294921875, -4.287559032440186 ], [ -70.8656005859375, -4.288081169128361 ], [ -70.870040893554574, -4.289068222045898 ], [ -70.872833251953125, -4.290200233459473 ], [ -70.874847412109375, -4.291490077972355 ], [ -70.875137329101562, -4.291679859161377 ], [ -70.87835693359375, -4.295059204101506 ], [ -70.879402160644531, -4.298010826110783 ], [ -70.879356384277287, -4.302249908447152 ], [ -70.879356384277287, -4.302501201629582 ], [ -70.878585815429631, -4.305429935455265 ], [ -70.875999450683594, -4.313059806823674 ], [ -70.87542724609375, -4.316449165344181 ], [ -70.875007629394531, -4.318929195404053 ], [ -70.875183105468693, -4.32039022445673 ], [ -70.875602722167969, -4.321411132812443 ], [ -70.876457214355469, -4.322719097137394 ], [ -70.876640319824219, -4.322898864746094 ], [ -70.877822875976506, -4.324100017547607 ], [ -70.878852844238281, -4.324660778045654 ], [ -70.879577636718636, -4.325059890747013 ], [ -70.881652832031193, -4.325328826904183 ], [ -70.884185791015625, -4.325059890747013 ], [ -70.890388488769531, -4.323581218719426 ], [ -70.89276123046875, -4.323630809783936 ], [ -70.895362854003906, -4.3241090774535 ], [ -70.898071289062443, -4.325190067291203 ], [ -70.900253295898381, -4.326940059661865 ], [ -70.900497436523438, -4.327140808105355 ], [ -70.901802062988281, -4.328559875488224 ], [ -70.903343200683594, -4.331388950347844 ], [ -70.903816223144531, -4.332661151885929 ], [ -70.905509948730412, -4.33715105056757 ], [ -70.906410217285156, -4.339550018310547 ], [ -70.908081054687443, -4.344808101653996 ], [ -70.908920288085881, -4.348158836364689 ], [ -70.910499572753906, -4.354440212249699 ], [ -70.911979675292912, -4.357198238372746 ], [ -70.915283203125, -4.361009120941105 ], [ -70.916732788085881, -4.361749172210693 ], [ -70.917442321777344, -4.361649036407414 ], [ -70.919616699218693, -4.360329151153508 ], [ -70.921997070312443, -4.357669830322266 ], [ -70.924057006835938, -4.355868816375732 ], [ -70.925025939941406, -4.355198860168343 ], [ -70.926559448242131, -4.35460901260376 ], [ -70.92864990234375, -4.354771137237492 ], [ -70.930686950683537, -4.355570793151855 ], [ -70.932037353515625, -4.356497764587402 ], [ -70.932548522949219, -4.357019901275578 ], [ -70.933532714843693, -4.357988834381047 ], [ -70.934127807617074, -4.359139919281006 ], [ -70.934822082519531, -4.361720085143986 ], [ -70.935356140136662, -4.365450859069711 ], [ -70.935462951660043, -4.36775016784668 ], [ -70.935432434081974, -4.368638992309513 ], [ -70.935317993164062, -4.372800827026367 ], [ -70.934318542480355, -4.376801013946476 ], [ -70.934066772460938, -4.378929138183594 ], [ -70.933853149414062, -4.380801200866642 ], [ -70.934181213378906, -4.381840229034424 ], [ -70.934837341308594, -4.382840156555119 ], [ -70.936210632324162, -4.384059906005803 ], [ -70.936782836914006, -4.384290218353215 ], [ -70.938056945800781, -4.384290218353215 ], [ -70.93865966796875, -4.384050846099854 ], [ -70.945213317871094, -4.377949237823429 ], [ -70.947135925292969, -4.377179145812988 ], [ -70.949417114257812, -4.377129077911377 ], [ -70.950950622558594, -4.377340793609562 ], [ -70.95424652099598, -4.378400802612305 ], [ -70.959419250488281, -4.380478858947754 ], [ -70.965522766113281, -4.380320072174072 ], [ -70.967269897460938, -4.379838943481445 ], [ -70.9688720703125, -4.378980159759521 ], [ -70.970542907714787, -4.377258777618408 ], [ -70.971099853515568, -4.376029968261662 ], [ -70.972023010253906, -4.370829105377197 ], [ -70.97222900390625, -4.366269111633301 ], [ -70.972297668457031, -4.364780902862549 ], [ -70.972572326660156, -4.363050937652531 ], [ -70.973617553710938, -4.36050891876215 ], [ -70.975196838378849, -4.358049869537354 ], [ -70.976806640625, -4.356170177459717 ], [ -70.977401733398381, -4.355478763580322 ], [ -70.980049133300781, -4.353549003601074 ], [ -70.984596252441406, -4.348940849304142 ], [ -70.986892700195312, -4.347449779510498 ], [ -70.987747192382812, -4.346620082855168 ], [ -70.990341186523438, -4.345520019531193 ], [ -70.993148803710881, -4.34473991394043 ], [ -70.995361328125, -4.345019817352238 ], [ -70.99578857421875, -4.345070838928166 ], [ -70.997482299804688, -4.346109867095947 ], [ -70.998489379882756, -4.347538948059025 ], [ -70.998626708984375, -4.349999904632568 ], [ -70.997360229492188, -4.35233020782465 ], [ -70.991149902343693, -4.358650207519531 ], [ -70.989433288574162, -4.360919952392578 ], [ -70.98934173583973, -4.36110877990717 ], [ -70.988922119140625, -4.36198902130127 ], [ -70.988471984863224, -4.36414909362793 ], [ -70.988418579101562, -4.365229129791203 ], [ -70.988265991210881, -4.368189811706486 ], [ -70.987792968749943, -4.371088981628418 ], [ -70.987663269042969, -4.374589920043945 ], [ -70.987579345703125, -4.376910209655762 ], [ -70.987792968749943, -4.380001068115234 ], [ -70.989051818847599, -4.382150173187256 ], [ -70.991340637206974, -4.383971214294434 ], [ -70.995635986328011, -4.386599063873234 ], [ -70.999771118164062, -4.387899875640869 ], [ -71.000541687011719, -4.387879848480225 ], [ -71.004081726074219, -4.387208938598633 ], [ -71.010032653808537, -4.385300159454289 ], [ -71.012626647949219, -4.383769989013615 ], [ -71.0155029296875, -4.381079196929818 ], [ -71.016693115234318, -4.380239963531494 ], [ -71.017852783203068, -4.379960060119572 ], [ -71.019126892089844, -4.380118846893254 ], [ -71.020187377929688, -4.381600856780949 ], [ -71.021553039550724, -4.387589931488037 ], [ -71.023719787597656, -4.390569210052433 ], [ -71.031402587890511, -4.395699024200383 ], [ -71.034187316894531, -4.398018836974984 ], [ -71.036666870117188, -4.399409770965519 ], [ -71.039115905761662, -4.399580955505314 ], [ -71.042266845703068, -4.39861011505127 ], [ -71.044113159179688, -4.396979808807373 ], [ -71.045310974121037, -4.394928932189941 ], [ -71.045898437499886, -4.392998218536377 ], [ -71.046218872070312, -4.390909194946289 ], [ -71.046211242675781, -4.387598991394043 ], [ -71.045730590820312, -4.385179042816162 ], [ -71.044113159179688, -4.380788803100586 ], [ -71.043395996093693, -4.377840042114258 ], [ -71.04345703125, -4.373898983001652 ], [ -71.043937683105469, -4.372701168060303 ], [ -71.045066833496094, -4.370930194854736 ], [ -71.046752929687386, -4.369450092315674 ], [ -71.048301696777344, -4.368090152740422 ], [ -71.049552917480469, -4.36761999130249 ], [ -71.050827026367131, -4.367469787597599 ], [ -71.051368713378906, -4.367399215698185 ], [ -71.05267333984375, -4.367808818817139 ], [ -71.054046630859375, -4.369159221649113 ], [ -71.054885864257812, -4.370460033416748 ], [ -71.055488586425781, -4.373798847198486 ], [ -71.055557250976562, -4.37415885925293 ], [ -71.055641174316406, -4.377209186553898 ], [ -71.055786132812443, -4.382790088653564 ], [ -71.056251525878906, -4.384298801422062 ], [ -71.056968688964844, -4.385358810424691 ], [ -71.060279846191349, -4.388209819793701 ], [ -71.063209533691406, -4.389910221099854 ], [ -71.068511962890625, -4.391318798065186 ], [ -71.074470520019474, -4.394120216369629 ], [ -71.076950073242131, -4.394820213317814 ], [ -71.079490661621094, -4.394659996032715 ], [ -71.080963134765568, -4.394139766693115 ], [ -71.083099365234375, -4.391629219055062 ], [ -71.083656311035099, -4.390379905700684 ], [ -71.082916259765625, -4.388608932495117 ], [ -71.079421997070312, -4.384650230407715 ], [ -71.07855224609375, -4.383660793304443 ], [ -71.078178405761719, -4.383238792419434 ], [ -71.077476501464844, -4.382050037383976 ], [ -71.076927185058594, -4.380499839782658 ], [ -71.076911926269531, -4.380329132080021 ], [ -71.076736450195312, -4.379209995269775 ], [ -71.076622009277344, -4.378400802612305 ], [ -71.076705932617188, -4.376750946044922 ], [ -71.077140808105412, -4.376149177551213 ], [ -71.077659606933594, -4.374690055847111 ], [ -71.079536437988224, -4.3730788230896 ], [ -71.081321716308594, -4.372701168060303 ], [ -71.082221984863224, -4.372249126434326 ], [ -71.085243225097656, -4.372130870819035 ], [ -71.088356018066406, -4.372179031372013 ], [ -71.093742370605412, -4.372800827026367 ], [ -71.104377746582031, -4.375457763671818 ], [ -71.107147216796875, -4.376709938049316 ], [ -71.107299804687443, -4.376780033111515 ], [ -71.108161926269474, -4.377449989318848 ], [ -71.1092529296875, -4.378939151763916 ], [ -71.109840393066406, -4.381069183349609 ], [ -71.109970092773381, -4.383268833160344 ], [ -71.109413146972543, -4.38633918762207 ], [ -71.108985900878906, -4.387431144714355 ], [ -71.106361389160043, -4.394189834594727 ], [ -71.106101989746094, -4.396839141845646 ], [ -71.106262207031136, -4.398768901824951 ], [ -71.106323242187443, -4.398990154266357 ], [ -71.106849670410156, -4.401181221008301 ], [ -71.10809326171875, -4.404409885406437 ], [ -71.109336853027344, -4.405999183654728 ], [ -71.110969543457031, -4.406830787658691 ], [ -71.113777160644474, -4.407639980316105 ], [ -71.116432189941349, -4.407649040222168 ], [ -71.118400573730469, -4.407240867614746 ], [ -71.120872497558594, -4.404930114746037 ], [ -71.122673034667969, -4.402278900146428 ], [ -71.128387451171761, -4.390890121459847 ], [ -71.131156921386605, -4.38784122467041 ], [ -71.132072448730412, -4.387208938598633 ], [ -71.137687683105469, -4.383309841155949 ], [ -71.143325805664006, -4.381161212921143 ], [ -71.145927429199162, -4.380528926849365 ], [ -71.147407531738281, -4.380558967590275 ], [ -71.148117065429631, -4.380569934844971 ], [ -71.148727416992188, -4.380760192871094 ], [ -71.150680541992131, -4.382141113281193 ], [ -71.151641845703068, -4.383800029754639 ], [ -71.151885986328125, -4.385910034179688 ], [ -71.151802062988281, -4.386699199676457 ], [ -71.15175628662098, -4.387100219726506 ], [ -71.149200439453125, -4.393089771270752 ], [ -71.148696899414006, -4.394979000091439 ], [ -71.148429870605469, -4.396018028259277 ], [ -71.148086547851562, -4.398660182952881 ], [ -71.148323059081918, -4.399929046630859 ], [ -71.149063110351506, -4.400979995727482 ], [ -71.150947570800781, -4.402969837188721 ], [ -71.152496337890568, -4.403779029846191 ], [ -71.153579711914062, -4.40394115447998 ], [ -71.155410766601562, -4.403748989105168 ], [ -71.156166076660156, -4.403120040893555 ], [ -71.156806945800668, -4.402090072631836 ], [ -71.157371520996037, -4.400720119476318 ], [ -71.15753173828125, -4.39955997467041 ], [ -71.157066345214787, -4.395430088043213 ], [ -71.157287597656136, -4.392691135406437 ], [ -71.157752990722599, -4.391879081726074 ], [ -71.159179687499943, -4.390890121459847 ], [ -71.161811828613281, -4.390970230102482 ], [ -71.166572570800781, -4.393290042877197 ], [ -71.167816162109375, -4.393618106842041 ], [ -71.171195983886662, -4.393739223480111 ], [ -71.1759033203125, -4.393040180206242 ], [ -71.178916931152287, -4.393098831176758 ], [ -71.183021545410099, -4.393949031829834 ], [ -71.184066772460881, -4.394499778747559 ], [ -71.18438720703125, -4.394680023193359 ], [ -71.185226440429574, -4.395540237426701 ], [ -71.185768127441349, -4.396490097045842 ], [ -71.186386108398438, -4.399271011352482 ], [ -71.186386108398438, -4.40031909942627 ], [ -71.186386108398438, -4.401759147643986 ], [ -71.185920715332031, -4.405460834503174 ], [ -71.185668945312443, -4.40746879577631 ], [ -71.185592651367131, -4.411809921264648 ], [ -71.185646057128906, -4.413730144500732 ], [ -71.185661315917969, -4.414181232452393 ], [ -71.186576843261719, -4.417260169982853 ], [ -71.187492370605412, -4.418609142303467 ], [ -71.189476013183594, -4.420539855957031 ], [ -71.191932678222656, -4.422140121459904 ], [ -71.194282531738224, -4.423089981079045 ], [ -71.195472717285156, -4.422880172729492 ], [ -71.197479248046875, -4.421809196472111 ], [ -71.198478698730412, -4.420720100402832 ], [ -71.199737548828125, -4.418700218200684 ], [ -71.200302124023438, -4.417339801788273 ], [ -71.201026916503849, -4.413280963897705 ], [ -71.202140808105469, -4.40949010848999 ], [ -71.203697204589787, -4.40585088729847 ], [ -71.204017639160043, -4.405100822448674 ], [ -71.206275939941349, -4.40090894699091 ], [ -71.20654296875, -4.400030136108342 ], [ -71.206230163574219, -4.39745903015131 ], [ -71.204940795898381, -4.394979000091439 ], [ -71.203536987304574, -4.393458843231201 ], [ -71.202445983886719, -4.392281055450383 ], [ -71.200126647949219, -4.38919019699091 ], [ -71.198776245117188, -4.387009143829289 ], [ -71.198143005371094, -4.385080814361515 ], [ -71.198165893554631, -4.383059024810734 ], [ -71.198867797851449, -4.380780220031738 ], [ -71.20025634765625, -4.37883996963501 ], [ -71.20143890380848, -4.377829074859562 ], [ -71.204666137695256, -4.376780033111515 ], [ -71.212776184081974, -4.376429080963135 ], [ -71.214363098144531, -4.377110958099308 ], [ -71.215866088867188, -4.378719806671086 ], [ -71.216293334960881, -4.379510879516545 ], [ -71.217582702636719, -4.381868839263916 ], [ -71.219100952148438, -4.389319896697998 ], [ -71.219192504882812, -4.38976001739502 ], [ -71.219276428222543, -4.392609119415283 ], [ -71.218505859374943, -4.39769983291626 ], [ -71.218498229980412, -4.398589134216309 ], [ -71.218467712402344, -4.401541233062744 ], [ -71.219490051269531, -4.403909206390324 ], [ -71.220512390136605, -4.405088901519719 ], [ -71.221771240234375, -4.40585088729847 ], [ -71.221916198730412, -4.405939102172795 ], [ -71.223793029785156, -4.406391143798828 ], [ -71.225051879882812, -4.406130790710449 ], [ -71.2255859375, -4.40585088729847 ], [ -71.226898193359318, -4.405169010162354 ], [ -71.227691650390625, -4.404400825500431 ], [ -71.228546142578125, -4.403079032897949 ], [ -71.228736877441406, -4.401918888092041 ], [ -71.228507995605412, -4.40064001083374 ], [ -71.227096557617074, -4.398268222808838 ], [ -71.225875854492188, -4.394699096679688 ], [ -71.225631713867131, -4.391248226165715 ], [ -71.226097106933594, -4.388720989227238 ], [ -71.2261962890625, -4.388168811798039 ], [ -71.227302551269531, -4.386169910430851 ], [ -71.229248046875, -4.384098052978516 ], [ -71.231376647949162, -4.382829189300537 ], [ -71.233360290527287, -4.382389068603516 ], [ -71.234931945800781, -4.382761001586857 ], [ -71.236289978027344, -4.383728981018066 ], [ -71.241249084472656, -4.388160228729134 ], [ -71.242378234863281, -4.38916015625 ], [ -71.244598388671875, -4.390019893646127 ], [ -71.2462158203125, -4.390450000762883 ], [ -71.247406005859261, -4.39050102233881 ], [ -71.250236511230412, -4.389830112457219 ], [ -71.25399017333973, -4.388000011444092 ], [ -71.254676818847656, -4.38765811920166 ], [ -71.259490966796818, -4.384850978851262 ], [ -71.2628173828125, -4.383570194244385 ], [ -71.265991210937443, -4.383230209350529 ], [ -71.270881652832031, -4.38390922546381 ], [ -71.273468017578125, -4.38450908660883 ], [ -71.275260925292969, -4.385419845580998 ], [ -71.27691650390625, -4.386710166931096 ], [ -71.278266906738281, -4.388461112976074 ], [ -71.279167175292855, -4.390469074249211 ], [ -71.279228210449162, -4.39073991775507 ], [ -71.279525756835881, -4.392079830169678 ], [ -71.279541015624943, -4.394749164581242 ], [ -71.279167175292855, -4.397018909454289 ], [ -71.278236389160156, -4.398470878601074 ], [ -71.277397155761719, -4.3988099098205 ], [ -71.276512145996094, -4.398668766021729 ], [ -71.272048950195312, -4.394979000091439 ], [ -71.270767211914006, -4.39391899108881 ], [ -71.267585754394531, -4.391980171203556 ], [ -71.265373229980469, -4.39185905456543 ], [ -71.262786865234375, -4.392469882965088 ], [ -71.261596679687443, -4.393139839172306 ], [ -71.261001586914062, -4.393780231475773 ], [ -71.260116577148438, -4.394740104675293 ], [ -71.260017395019531, -4.396669864654541 ], [ -71.260360717773381, -4.3974289894104 ], [ -71.261901855468636, -4.399250030517578 ], [ -71.262748718261662, -4.399919986724854 ], [ -71.265106201171875, -4.401810169219914 ], [ -71.267196655273438, -4.404599189758187 ], [ -71.267700195312443, -4.40609884262085 ], [ -71.268173217773381, -4.407518863677979 ], [ -71.268318176269531, -4.408899784088078 ], [ -71.267982482910099, -4.410768985748291 ], [ -71.266822814941406, -4.413390159606877 ], [ -71.264060974121037, -4.416800022125244 ], [ -71.263122558593693, -4.418478965759277 ], [ -71.262290954589844, -4.421218872070312 ], [ -71.261856079101562, -4.422599792480355 ], [ -71.261787414550724, -4.425640106201115 ], [ -71.262252807617131, -4.427450180053711 ], [ -71.263580322265625, -4.428728103637638 ], [ -71.265083312988281, -4.429749965667725 ], [ -71.2674560546875, -4.430960178375244 ], [ -71.270256042480469, -4.432869911193848 ], [ -71.273773193359375, -4.436349868774357 ], [ -71.278266906738281, -4.439818859100285 ], [ -71.281410217285156, -4.441489219665527 ], [ -71.283271789550781, -4.441648960113525 ], [ -71.288681030273381, -4.439969062805119 ], [ -71.291496276855469, -4.438448905944824 ], [ -71.292922973632812, -4.43743896484375 ], [ -71.295036315917969, -4.435558795928898 ], [ -71.297172546386662, -4.43245887756342 ], [ -71.298500061035099, -4.428709983825684 ], [ -71.299736022949162, -4.425199985504094 ], [ -71.301055908203125, -4.422369956970158 ], [ -71.302520751953068, -4.4200501441955 ], [ -71.303962707519418, -4.418260097503662 ], [ -71.306388854980469, -4.41602897644043 ], [ -71.308609008789006, -4.414730072021484 ], [ -71.310775756835938, -4.413821220397949 ], [ -71.313179016113224, -4.413679122924748 ], [ -71.315116882324105, -4.41421985626215 ], [ -71.316047668456974, -4.414659023284912 ], [ -71.318588256835938, -4.415870189666748 ], [ -71.319236755371094, -4.416370868682861 ], [ -71.319839477539062, -4.417298793792725 ], [ -71.320549011230412, -4.419868946075439 ], [ -71.320648193359261, -4.423161029815617 ], [ -71.319847106933594, -4.425599098205566 ], [ -71.318290710449219, -4.428208827972412 ], [ -71.316711425781193, -4.430088996887207 ], [ -71.315032958984375, -4.43165922164917 ], [ -71.310760498046875, -4.434797763824463 ], [ -71.308731079101449, -4.435918807983398 ], [ -71.306419372558537, -4.438330173492432 ], [ -71.304039001464787, -4.440810203552246 ], [ -71.302162170410156, -4.441958904266357 ], [ -71.301376342773381, -4.443079948425179 ], [ -71.301017761230469, -4.444378852844238 ], [ -71.301048278808594, -4.448959827423096 ], [ -71.301567077636662, -4.450930118560791 ], [ -71.303115844726562, -4.454770088195801 ], [ -71.303977966308594, -4.456240177154541 ], [ -71.304702758789006, -4.457458972930908 ], [ -71.308578491210938, -4.462581157684326 ], [ -71.309547424316406, -4.46307992935175 ], [ -71.310012817382812, -4.463040828704777 ], [ -71.310806274414006, -4.462430000305176 ], [ -71.311668395996037, -4.460508823394719 ], [ -71.311737060546875, -4.459039211273137 ], [ -71.311531066894531, -4.457119941711369 ], [ -71.310111999511719, -4.45303821563715 ], [ -71.310241699218693, -4.450418949127197 ], [ -71.311073303222656, -4.446840763092041 ], [ -71.312255859374886, -4.444768905639592 ], [ -71.313339233398438, -4.443520069122314 ], [ -71.314537048339787, -4.442520141601506 ], [ -71.31488037109375, -4.442230224609318 ], [ -71.317276000976506, -4.44088077545166 ], [ -71.320350646972599, -4.440010070800781 ], [ -71.324272155761605, -4.439750194549504 ], [ -71.331413269042912, -4.43972110748291 ], [ -71.338195800781136, -4.440689086914006 ], [ -71.340003967285099, -4.440148830413762 ], [ -71.341056823730355, -4.43942022323597 ], [ -71.341728210449105, -4.438539981842041 ], [ -71.3411865234375, -4.433289051055851 ], [ -71.341621398925724, -4.431408882141113 ], [ -71.342247009277344, -4.428639888763371 ], [ -71.342987060546875, -4.427379131317139 ], [ -71.343971252441406, -4.426411151885929 ], [ -71.344818115234375, -4.425869941711426 ], [ -71.346038818359375, -4.425509929656926 ], [ -71.348106384277287, -4.425741195678711 ], [ -71.349777221679688, -4.426680088043213 ], [ -71.35150146484375, -4.427909851074162 ], [ -71.354286193847599, -4.430951118469238 ], [ -71.355735778808537, -4.432069778442326 ], [ -71.358291625976506, -4.433351039886475 ], [ -71.360626220703125, -4.433640003204289 ], [ -71.362930297851562, -4.433460235595646 ], [ -71.364402770996037, -4.432979106903019 ], [ -71.372909545898324, -4.427269935607853 ], [ -71.377761840820256, -4.42460823059082 ], [ -71.381072998046875, -4.423929214477539 ], [ -71.383979797363281, -4.424108982086182 ], [ -71.385528564453125, -4.424648761749268 ], [ -71.386543273925724, -4.424739837646484 ], [ -71.389717102050781, -4.426370143890381 ], [ -71.392578125, -4.428668975830021 ], [ -71.396087646484261, -4.432300090789738 ], [ -71.397010803222599, -4.433479785919133 ], [ -71.397331237792969, -4.433899879455566 ], [ -71.398056030273381, -4.435420036315861 ], [ -71.398506164550781, -4.436379909515381 ], [ -71.399169921875, -4.438459873199406 ], [ -71.3995361328125, -4.439630031585693 ], [ -71.399871826171818, -4.44218921661377 ], [ -71.400428771972656, -4.44334888458252 ], [ -71.401527404785156, -4.444449901580811 ], [ -71.4027099609375, -4.445149898529053 ], [ -71.405548095703125, -4.445848941802979 ], [ -71.406906127929688, -4.446559906005859 ], [ -71.409523010253849, -4.44927883148182 ], [ -71.411346435546761, -4.452359199523869 ], [ -71.41156005859375, -4.453258991241455 ], [ -71.413696289062443, -4.457308769226074 ], [ -71.416236877441406, -4.461588859558105 ], [ -71.417945861816406, -4.463950157165471 ], [ -71.421531677246037, -4.467279911041203 ], [ -71.425628662109318, -4.470048904418945 ], [ -71.427879333496094, -4.472209930419922 ], [ -71.430870056152287, -4.474638938903752 ], [ -71.434226989746037, -4.476499080657902 ], [ -71.435707092285156, -4.476640224456787 ], [ -71.436813354492188, -4.47618913650507 ], [ -71.438850402832031, -4.473719120025635 ], [ -71.438987731933537, -4.47189998626709 ], [ -71.438262939453125, -4.470519065856877 ], [ -71.437217712402344, -4.469750881195068 ], [ -71.436332702636605, -4.469638824462891 ], [ -71.434219360351506, -4.469789028167725 ], [ -71.431716918945256, -4.470349788665771 ], [ -71.430625915527344, -4.470308780670109 ], [ -71.427963256835938, -4.469140052795353 ], [ -71.427299499511719, -4.46835994720459 ], [ -71.427017211914062, -4.467481136322021 ], [ -71.427001953125, -4.466038227081299 ], [ -71.426986694335824, -4.465270042419377 ], [ -71.427192687988281, -4.464288234710637 ], [ -71.427642822265568, -4.463829040527344 ], [ -71.427780151367188, -4.463689804077148 ], [ -71.429122924804688, -4.462329864501953 ], [ -71.429573059082031, -4.462019920349121 ], [ -71.431541442871037, -4.460689067840576 ], [ -71.433250427246037, -4.45776891708374 ], [ -71.433486938476562, -4.45382022857666 ], [ -71.433349609374943, -4.452260971069336 ], [ -71.432029724121037, -4.44826078414917 ], [ -71.430862426757756, -4.445950031280461 ], [ -71.430473327636719, -4.445438861846924 ], [ -71.430130004882699, -4.445011138915902 ], [ -71.429222106933594, -4.444229125976506 ], [ -71.427742004394474, -4.443509101867562 ], [ -71.426345825195312, -4.443029880523682 ], [ -71.425437927246037, -4.44297981262207 ], [ -71.425102233886719, -4.442678928375187 ], [ -71.423286437988281, -4.442389965057316 ], [ -71.41900634765625, -4.442399024963379 ], [ -71.417381286621094, -4.442121028900146 ], [ -71.415802001953068, -4.441659927368164 ], [ -71.414833068847656, -4.441141128539982 ], [ -71.414581298828068, -4.440960884094238 ], [ -71.412971496582031, -4.439780235290527 ], [ -71.412040710449219, -4.438741207122746 ], [ -71.411460876464844, -4.437530994415283 ], [ -71.411651611328125, -4.436241149902344 ], [ -71.412567138671818, -4.435328960418701 ], [ -71.413459777832031, -4.43488883972168 ], [ -71.414833068847656, -4.434739112854004 ], [ -71.416969299316293, -4.435190200805664 ], [ -71.420867919921818, -4.437180042266789 ], [ -71.422882080078011, -4.437280178070068 ], [ -71.424392700195256, -4.43694877624506 ], [ -71.426956176757756, -4.434179782867375 ], [ -71.427879333496094, -4.432479858398438 ], [ -71.430862426757756, -4.428911209106388 ], [ -71.432167053222656, -4.427758216857853 ], [ -71.434013366699162, -4.427210807800293 ], [ -71.435432434082031, -4.427529811859131 ], [ -71.435859680175781, -4.427710056304875 ], [ -71.437309265136719, -4.428299903869629 ], [ -71.438652038574219, -4.42959022521967 ], [ -71.439002990722543, -4.430678844451847 ], [ -71.438949584960938, -4.432919979095402 ], [ -71.438499450683537, -4.434330940246525 ], [ -71.438331604003793, -4.434589862823486 ], [ -71.437187194824105, -4.436439037322998 ], [ -71.434692382812443, -4.43943977355957 ], [ -71.4344482421875, -4.439730167388802 ], [ -71.433570861816406, -4.44300985336298 ], [ -71.433456420898381, -4.444949150085449 ], [ -71.433586120605469, -4.445759773254395 ], [ -71.43463134765625, -4.447498798370304 ], [ -71.435676574707031, -4.448509216308537 ], [ -71.437507629394531, -4.449209213256836 ], [ -71.44696044921875, -4.448369979858342 ], [ -71.448799133300724, -4.447859764099121 ], [ -71.449760437011662, -4.447309970855713 ], [ -71.451416015625, -4.44559907913208 ], [ -71.451797485351562, -4.444660186767578 ], [ -71.451843261718693, -4.442999839782715 ], [ -71.450851440429688, -4.440128803253117 ], [ -71.449676513671818, -4.438159942626953 ], [ -71.449592590332031, -4.437479972839355 ], [ -71.449409484863281, -4.43615818023676 ], [ -71.449440002441406, -4.435810089111328 ], [ -71.449638366699219, -4.433419227600098 ], [ -71.450256347656136, -4.431880950927734 ], [ -71.450332641601506, -4.431800842285156 ], [ -71.450958251953125, -4.431159973144474 ], [ -71.452049255371037, -4.431179046630803 ], [ -71.453422546386719, -4.431919097900334 ], [ -71.455146789550781, -4.433690071105957 ], [ -71.456237792968693, -4.43527889251709 ], [ -71.458290100097656, -4.437388896942139 ], [ -71.459938049316406, -4.438849925994873 ], [ -71.461212158203068, -4.43956995010376 ], [ -71.461540222167969, -4.439750194549504 ], [ -71.461723327636719, -4.439730167388802 ], [ -71.462989807128906, -4.43956995010376 ], [ -71.464256286621037, -4.439039230346623 ], [ -71.472152709960881, -4.433899879455566 ], [ -71.473976135253849, -4.433319091796875 ], [ -71.475189208984375, -4.433279991149902 ], [ -71.476257324218693, -4.433249950408879 ], [ -71.477447509765625, -4.433690071105957 ], [ -71.478866577148324, -4.434560775756779 ], [ -71.479240417480412, -4.434979915618896 ], [ -71.479347229003906, -4.435588836669922 ], [ -71.477439880371094, -4.441808223724365 ], [ -71.477043151855412, -4.444449901580811 ], [ -71.477043151855412, -4.445178985595646 ], [ -71.477043151855412, -4.446658134460449 ], [ -71.477371215820312, -4.44790077209467 ], [ -71.477386474609375, -4.448099136352482 ], [ -71.477806091308537, -4.451919078826904 ], [ -71.478675842285043, -4.453538894653263 ], [ -71.480316162109375, -4.45552921295166 ], [ -71.482360839843693, -4.45690822601307 ], [ -71.484992980957031, -4.456708908081055 ], [ -71.487457275390625, -4.45513916015625 ], [ -71.489875793457031, -4.45251989364624 ], [ -71.490158081054688, -4.452139854431039 ], [ -71.493522644042912, -4.447578907012883 ], [ -71.502700805664006, -4.43821907043457 ], [ -71.503837585449162, -4.437459945678711 ], [ -71.505065917968693, -4.437099933624211 ], [ -71.505889892578125, -4.437069892883301 ], [ -71.506080627441406, -4.437129020690918 ], [ -71.507125854492188, -4.437450885772705 ], [ -71.507499694824219, -4.437789916992188 ], [ -71.508796691894474, -4.438980102539006 ], [ -71.509277343749943, -4.439990043640137 ], [ -71.509407043457031, -4.441091060638428 ], [ -71.509086608886662, -4.442598819732666 ], [ -71.507919311523381, -4.444419860839787 ], [ -71.506912231445312, -4.446000099182129 ], [ -71.505805969238281, -4.449209213256836 ], [ -71.505706787109375, -4.45160007476801 ], [ -71.506523132324105, -4.455268859863281 ], [ -71.506362915039062, -4.457369804382267 ], [ -71.505950927734261, -4.458300113677922 ], [ -71.504928588867188, -4.459480762481689 ], [ -71.504539489746094, -4.45975923538208 ], [ -71.499969482421875, -4.46304988861084 ], [ -71.496513366699219, -4.466848850250244 ], [ -71.495697021484375, -4.468080043792725 ], [ -71.494781494140568, -4.470569133758545 ], [ -71.492973327636662, -4.474278926849365 ], [ -71.492469787597599, -4.47652006149292 ], [ -71.492446899414062, -4.478868961334229 ], [ -71.492439270019531, -4.480009078979492 ], [ -71.493232727050724, -4.483789920806771 ], [ -71.493690490722656, -4.484889030456543 ], [ -71.494392395019474, -4.485879898071289 ], [ -71.495040893554631, -4.486169815063477 ], [ -71.496147155761719, -4.486180782318115 ], [ -71.498275756835938, -4.484939098358097 ], [ -71.499610900878906, -4.482849121093693 ], [ -71.5003662109375, -4.480628967285156 ], [ -71.501235961914062, -4.479128837585336 ], [ -71.502693176269474, -4.477361202239933 ], [ -71.504287719726562, -4.47596979141224 ], [ -71.506042480468636, -4.475221157073975 ], [ -71.512039184570256, -4.473680019378662 ], [ -71.515121459960938, -4.471690177917367 ], [ -71.516799926757756, -4.470009803771916 ], [ -71.517059326171875, -4.469328880310059 ], [ -71.516876220703125, -4.466860771179199 ], [ -71.516326904296818, -4.465490818023682 ], [ -71.515388488769418, -4.464118957519531 ], [ -71.515182495117131, -4.46323919296259 ], [ -71.515228271484375, -4.46284008026123 ], [ -71.515327453613281, -4.461960792541504 ], [ -71.515556335449162, -4.461730003356934 ], [ -71.515701293945312, -4.461588859558105 ], [ -71.516181945800781, -4.46111011505127 ], [ -71.517143249511719, -4.46077823638916 ], [ -71.518226623535099, -4.460900783538818 ], [ -71.519966125488168, -4.461909770965576 ], [ -71.522842407226562, -4.464050769805908 ], [ -71.525016784667912, -4.46475887298584 ], [ -71.52789306640625, -4.464310169219971 ], [ -71.531227111816406, -4.463028907775822 ], [ -71.532646179199162, -4.46248006820673 ], [ -71.535476684570256, -4.462288856506291 ], [ -71.536788940429688, -4.462501049041748 ], [ -71.537010192871037, -4.462528228759709 ], [ -71.538047790527344, -4.463129997253418 ], [ -71.538681030273438, -4.463921070098877 ], [ -71.539382934570312, -4.465818881988525 ], [ -71.539619445800781, -4.468029975891113 ], [ -71.539276123046875, -4.469908237457275 ], [ -71.538948059081918, -4.470408916473389 ], [ -71.537811279296875, -4.472159862518254 ], [ -71.536926269531193, -4.473508834838867 ], [ -71.535575866699162, -4.47662878036499 ], [ -71.535377502441406, -4.47825908660883 ], [ -71.535247802734375, -4.479359149932861 ], [ -71.535469055175781, -4.480150222778263 ], [ -71.536087036132699, -4.481069087982121 ], [ -71.537239074707031, -4.481959819793701 ], [ -71.538337707519474, -4.481959819793701 ], [ -71.538932800292912, -4.481729984283447 ], [ -71.5400390625, -4.480908870697021 ], [ -71.540916442871037, -4.479529857635498 ], [ -71.542846679687443, -4.477428913116398 ], [ -71.543663024902344, -4.476839065551758 ], [ -71.545082092285156, -4.476428985595703 ], [ -71.545326232910099, -4.476359844207707 ], [ -71.545608520507756, -4.476318836212158 ], [ -71.548187255859318, -4.475941181182861 ], [ -71.55230712890625, -4.475868225097656 ], [ -71.555412292480412, -4.47626876831049 ], [ -71.556579589843693, -4.476620197296143 ], [ -71.558280944824162, -4.477130889892521 ], [ -71.559486389160156, -4.478748798370304 ], [ -71.559700012206974, -4.480138778686467 ], [ -71.55938720703125, -4.480850219726506 ], [ -71.558471679687443, -4.481289863586426 ], [ -71.554000854492131, -4.481119155883789 ], [ -71.553306579589844, -4.481268882751465 ], [ -71.552742004394474, -4.481420040130615 ], [ -71.551902770996037, -4.482099056243896 ], [ -71.55120849609375, -4.482970237731934 ], [ -71.551033020019474, -4.483200073242188 ], [ -71.550727844238281, -4.483950138091984 ], [ -71.55072021484375, -4.484808921813965 ], [ -71.551132202148381, -4.485588073730469 ], [ -71.55224609375, -4.486570835113525 ], [ -71.557716369628849, -4.489208221435547 ], [ -71.559837341308594, -4.490618228912354 ], [ -71.56069183349598, -4.491929054260197 ], [ -71.562370300292912, -4.495601177215576 ], [ -71.564292907714787, -4.501148223876896 ], [ -71.566497802734318, -4.50474023818964 ], [ -71.567558288574105, -4.506009101867676 ], [ -71.572509765624943, -4.509879112243652 ], [ -71.577087402343693, -4.513460159301758 ], [ -71.585792541503906, -4.519408226013184 ], [ -71.591232299804688, -4.524329185485783 ], [ -71.593116760253793, -4.525619029998779 ], [ -71.594802856445256, -4.526569843292236 ], [ -71.597473144531193, -4.527429103851262 ], [ -71.60040283203125, -4.527739048004094 ], [ -71.603706359863281, -4.528419971466064 ], [ -71.613250732421875, -4.52839994430542 ], [ -71.617218017578068, -4.527599811553898 ], [ -71.619667053222656, -4.526589870452881 ], [ -71.622940063476506, -4.524199008941594 ], [ -71.624786376953125, -4.52318000793457 ], [ -71.629570007324219, -4.518589973449707 ], [ -71.631477355957031, -4.515998840332031 ], [ -71.632690429687386, -4.514729022979679 ], [ -71.633987426757812, -4.512189865112248 ], [ -71.634391784667912, -4.510808944702148 ], [ -71.634452819824219, -4.508601188659668 ], [ -71.633895874023381, -4.507881164550781 ], [ -71.63262939453125, -4.507140159606877 ], [ -71.629470825195312, -4.506379127502441 ], [ -71.628616333007812, -4.506179809570312 ], [ -71.625877380371094, -4.504899024963322 ], [ -71.624588012695199, -4.503940105438232 ], [ -71.622856140136662, -4.502658843994141 ], [ -71.620040893554688, -4.499488830566406 ], [ -71.618232727050781, -4.494509220123291 ], [ -71.616386413574105, -4.489490032196045 ], [ -71.613777160644474, -4.48484992980957 ], [ -71.613327026367131, -4.483681201934814 ], [ -71.611709594726449, -4.479438781738168 ], [ -71.6109619140625, -4.475850105285645 ], [ -71.610786437988281, -4.473558902740422 ], [ -71.611000061035156, -4.470899105072021 ], [ -71.612052917480469, -4.468280792236214 ], [ -71.613220214843693, -4.467238903045654 ], [ -71.615417480468693, -4.46635913848877 ], [ -71.616966247558594, -4.466309070587158 ], [ -71.618568420410099, -4.46677923202509 ], [ -71.620452880859318, -4.467979907989445 ], [ -71.621742248535156, -4.468800067901611 ], [ -71.623466491699219, -4.47015905380249 ], [ -71.625938415527344, -4.472750186920166 ], [ -71.627326965331974, -4.474689960479736 ], [ -71.62738037109375, -4.476058959960938 ], [ -71.627426147460881, -4.477270126342717 ], [ -71.627166748046875, -4.478699207305908 ], [ -71.626388549804631, -4.480369091033879 ], [ -71.624946594238224, -4.482489109039307 ], [ -71.624221801757812, -4.484389781951904 ], [ -71.623886108398381, -4.485230922698975 ], [ -71.623832702636719, -4.486248970031738 ], [ -71.624382019042912, -4.487409114837646 ], [ -71.625610351562443, -4.488648891448975 ], [ -71.627647399902344, -4.490068912506047 ], [ -71.631141662597599, -4.491160869598389 ], [ -71.634185791015568, -4.492660999298096 ], [ -71.639358520507756, -4.497000217437744 ], [ -71.640029907226506, -4.497560977935791 ], [ -71.641197204589844, -4.498279094695988 ], [ -71.642570495605469, -4.499730110168457 ], [ -71.646636962890625, -4.501889228820801 ], [ -71.648422241210881, -4.502579212188721 ], [ -71.650337219238168, -4.502749919891357 ], [ -71.650962829589844, -4.502520084381104 ], [ -71.651412963867188, -4.502068996429387 ], [ -71.6514892578125, -4.501529216766301 ], [ -71.651321411132812, -4.500720024108887 ], [ -71.649139404296875, -4.495759963989201 ], [ -71.648612976074162, -4.494099140167236 ], [ -71.648422241210881, -4.492740154266357 ], [ -71.647148132324219, -4.483748912811279 ], [ -71.646919250488281, -4.479208946227971 ], [ -71.646896362304631, -4.478798866271973 ], [ -71.647796630859375, -4.47678899765009 ], [ -71.649642944335881, -4.474049091339111 ], [ -71.652107238769531, -4.471610069274902 ], [ -71.654159545898438, -4.470399856567326 ], [ -71.655769348144418, -4.470330238342285 ], [ -71.657081604003849, -4.470270156860352 ], [ -71.658065795898438, -4.470479965209961 ], [ -71.659851074218693, -4.471599102020207 ], [ -71.660697937011662, -4.473099231719971 ], [ -71.660858154296875, -4.47448015213007 ], [ -71.660697937011662, -4.476669788360539 ], [ -71.657913208007812, -4.479330062866211 ], [ -71.656639099121094, -4.480879783630371 ], [ -71.655509948730469, -4.483150005340576 ], [ -71.655288696289006, -4.483590126037598 ], [ -71.6546630859375, -4.485799789428711 ], [ -71.654067993164062, -4.48970890045166 ], [ -71.654067993164062, -4.490080833435002 ], [ -71.654083251953125, -4.492828845977783 ], [ -71.654678344726562, -4.494190216064396 ], [ -71.655929565429631, -4.497029781341553 ], [ -71.6572265625, -4.499139785766602 ], [ -71.659011840820199, -4.500949859619141 ], [ -71.659622192382812, -4.501359939575195 ], [ -71.664390563964844, -4.50324010848999 ], [ -71.668800354003849, -4.50403976440424 ], [ -71.672401428222656, -4.505620002746582 ], [ -71.673507690429574, -4.505640029907227 ], [ -71.674446105956974, -4.504899024963322 ], [ -71.674911499023381, -4.501729011535645 ], [ -71.676681518554688, -4.499868869781494 ], [ -71.678817749023381, -4.498859882354736 ], [ -71.681343078613281, -4.498398780822754 ], [ -71.686576843261605, -4.496769905090332 ], [ -71.688583374023438, -4.49669885635376 ], [ -71.690696716308594, -4.497289180755558 ], [ -71.693321228027287, -4.498788833618164 ], [ -71.694358825683537, -4.499719142913818 ], [ -71.695053100585881, -4.501029968261719 ], [ -71.696037292480469, -4.502240180969181 ], [ -71.700286865234318, -4.505740165710449 ], [ -71.704788208007699, -4.508899211883545 ], [ -71.707038879394531, -4.509939193725586 ], [ -71.707870483398438, -4.509939193725586 ], [ -71.709350585937443, -4.509449005126896 ], [ -71.712150573730469, -4.507520198822021 ], [ -71.717689514160156, -4.504631042480469 ], [ -71.718437194824219, -4.503818988800049 ], [ -71.719688415527344, -4.501880168914795 ], [ -71.720542907714844, -4.499600887298584 ], [ -71.721847534179631, -4.498299121856633 ], [ -71.722702026367131, -4.497819900512695 ], [ -71.725067138671818, -4.497038841247502 ], [ -71.726676940917969, -4.496748924255314 ], [ -71.730339050292912, -4.496719837188721 ], [ -71.733596801757812, -4.497129917144719 ], [ -71.735733032226562, -4.496560096740723 ], [ -71.736923217773381, -4.495709896087646 ], [ -71.738456726074105, -4.493888854980469 ], [ -71.739418029785156, -4.492018222808838 ], [ -71.739738464355469, -4.489380836486703 ], [ -71.7392578125, -4.484468936920166 ], [ -71.739387512206974, -4.482539176940861 ], [ -71.740036010742188, -4.480779170989933 ], [ -71.741371154785156, -4.477210044860783 ], [ -71.743415832519418, -4.472498893737793 ], [ -71.744590759277344, -4.470920085906926 ], [ -71.744796752929688, -4.470709800720158 ], [ -71.747131347656136, -4.468410968780518 ], [ -71.749839782714844, -4.467070102691594 ], [ -71.75164794921875, -4.466860771179199 ], [ -71.752738952636662, -4.467059135437012 ], [ -71.753486633300724, -4.467589855194035 ], [ -71.753799438476506, -4.468348979949894 ], [ -71.753906249999886, -4.469649791717529 ], [ -71.753746032714844, -4.470449924468994 ], [ -71.753059387207031, -4.471869945526066 ], [ -71.749252319335938, -4.476678848266602 ], [ -71.748672485351562, -4.478789806365967 ], [ -71.748298645019531, -4.48291015625 ], [ -71.748359680175724, -4.484769821166992 ], [ -71.7484130859375, -4.486131191253605 ], [ -71.749443054199219, -4.48974084854126 ], [ -71.750129699707031, -4.492119789123478 ], [ -71.75142669677723, -4.494218826293945 ], [ -71.754936218261662, -4.497389793395996 ], [ -71.756683349609375, -4.498439788818359 ], [ -71.760955810546818, -4.50005912780756 ], [ -71.766250610351562, -4.50272083282465 ], [ -71.769042968749943, -4.503290176391602 ], [ -71.769660949707031, -4.502968788146973 ], [ -71.770286560058537, -4.502038955688477 ], [ -71.770751953124943, -4.499989986419678 ], [ -71.769386291503906, -4.496159076690674 ], [ -71.769493103027344, -4.492401123046818 ], [ -71.770019531249886, -4.490169048309269 ], [ -71.770767211914006, -4.488908767700138 ], [ -71.771102905273438, -4.48854923248291 ], [ -71.772132873535156, -4.487419128417912 ], [ -71.775459289550668, -4.484790802001953 ], [ -71.777626037597599, -4.483689785003662 ], [ -71.77889251708973, -4.483321189880314 ], [ -71.779106140136719, -4.483248233795166 ], [ -71.783660888671761, -4.482500076293945 ], [ -71.78704833984375, -4.482439041137638 ], [ -71.787628173828068, -4.482618808746281 ], [ -71.788009643554631, -4.482738971710205 ], [ -71.788986206054631, -4.483580112457219 ], [ -71.789146423339844, -4.485859870910645 ], [ -71.78875732421875, -4.486588954925537 ], [ -71.787452697753849, -4.488008975982666 ], [ -71.787055969238224, -4.488309860229492 ], [ -71.784660339355469, -4.49022912979126 ], [ -71.783248901367131, -4.491895198822021 ], [ -71.782867431640568, -4.493589878082219 ], [ -71.782699584960881, -4.494509220123291 ], [ -71.783416748046875, -4.495480060577393 ], [ -71.784683227539006, -4.496209144592285 ], [ -71.78656005859375, -4.496578216552678 ], [ -71.789939880371037, -4.496239185333252 ], [ -71.791610717773438, -4.495810031890869 ], [ -71.793128967285156, -4.494579792022648 ], [ -71.793640136718693, -4.493151187896729 ], [ -71.793731689453068, -4.491580009460449 ], [ -71.792526245117074, -4.486780166625977 ], [ -71.792396545410099, -4.485039234161377 ], [ -71.792503356933537, -4.484219074249154 ], [ -71.792816162109261, -4.483631134033146 ], [ -71.793487548828125, -4.483429908752441 ], [ -71.794418334960881, -4.483479976653939 ], [ -71.795242309570312, -4.483909130096322 ], [ -71.796806335449162, -4.486289978027287 ], [ -71.798973083496094, -4.488130092620793 ], [ -71.799949645996037, -4.488460063934269 ], [ -71.800346374511605, -4.488598823547306 ], [ -71.803810119628906, -4.488958835601807 ], [ -71.807327270507812, -4.490001201629582 ], [ -71.809356689453125, -4.491250038146973 ], [ -71.810440063476506, -4.492229938506966 ], [ -71.811050415039062, -4.493238925933838 ], [ -71.811073303222656, -4.494248867034855 ], [ -71.807609558105469, -4.497629165649414 ], [ -71.807319641113281, -4.498478889465332 ], [ -71.806480407714844, -4.500899791717529 ], [ -71.806602478027344, -4.502729892730713 ], [ -71.807266235351562, -4.503639221191349 ], [ -71.80792236328125, -4.504099845886174 ], [ -71.808578491210938, -4.504110813140869 ], [ -71.809417724609375, -4.503750801086369 ], [ -71.811866760253849, -4.501520156860352 ], [ -71.813346862792969, -4.500799179077148 ], [ -71.814888000488281, -4.500559806823674 ], [ -71.819282531738281, -4.500648975372314 ], [ -71.820999145507812, -4.500329971313477 ], [ -71.822181701660099, -4.499730110168457 ], [ -71.825332641601449, -4.496778964996338 ], [ -71.827400207519474, -4.495629787445068 ], [ -71.830551147460881, -4.495099067687931 ], [ -71.831748962402344, -4.495278835296574 ], [ -71.832801818847656, -4.495790004730225 ], [ -71.833389282226562, -4.496379852294865 ], [ -71.833801269531193, -4.497210025787297 ], [ -71.834129333496094, -4.500178813934326 ], [ -71.833839416503906, -4.500820159912109 ], [ -71.833702087402287, -4.50110912322998 ], [ -71.832809448242188, -4.502038955688477 ], [ -71.830589294433594, -4.503109931945744 ], [ -71.830352783203068, -4.503308773040715 ], [ -71.829307556152287, -4.50416088104248 ], [ -71.829078674316406, -4.504468917846623 ], [ -71.828163146972599, -4.505718231201172 ], [ -71.82757568359375, -4.507470130920353 ], [ -71.827949523925781, -4.510389804840031 ], [ -71.829055786132699, -4.512928962707463 ], [ -71.830307006835938, -4.51471996307373 ], [ -71.831596374511662, -4.515749931335336 ], [ -71.833580017089844, -4.516170024871826 ], [ -71.834953308105412, -4.515649795532227 ], [ -71.835823059081918, -4.51484823226923 ], [ -71.836082458496037, -4.51416015625 ], [ -71.836166381835938, -4.509499073028564 ], [ -71.83642578125, -4.507500171661377 ], [ -71.83660888671875, -4.507198810577336 ], [ -71.8372802734375, -4.506101131439209 ], [ -71.838691711425781, -4.505058765411377 ], [ -71.839447021484261, -4.504798889160099 ], [ -71.840187072753849, -4.504970073699894 ], [ -71.841537475585881, -4.505908966064453 ], [ -71.843116760253906, -4.507441043853646 ], [ -71.844680786132756, -4.50812911987299 ], [ -71.848922729492188, -4.508978843688851 ], [ -71.851837158203068, -4.510508060455322 ], [ -71.852951049804688, -4.510719776153508 ], [ -71.855987548828125, -4.511290073394775 ], [ -71.857406616210938, -4.512119770050049 ], [ -71.858177185058594, -4.513029098510685 ], [ -71.859130859375, -4.514708995819035 ], [ -71.859352111816349, -4.515699863433838 ], [ -71.860237121581918, -4.519569873809758 ], [ -71.860305786132756, -4.519888877868652 ], [ -71.862159729003906, -4.524081230163574 ], [ -71.863693237304688, -4.525790214538574 ], [ -71.866027832031193, -4.526828765869084 ], [ -71.867568969726506, -4.526658058166447 ], [ -71.868896484374943, -4.525869846343994 ], [ -71.871513366699219, -4.520530223846322 ], [ -71.873992919921875, -4.518289089202767 ], [ -71.876266479492188, -4.51692008972168 ], [ -71.878326416015568, -4.516139984130803 ], [ -71.8795166015625, -4.515699863433838 ], [ -71.883438110351562, -4.51547908782959 ], [ -71.884376525878906, -4.515580177307072 ], [ -71.885208129882756, -4.516069889068604 ], [ -71.885513305663949, -4.51648902893055 ], [ -71.885459899902344, -4.516911029815617 ], [ -71.884971618652344, -4.518009185791016 ], [ -71.884033203125, -4.520108222961426 ], [ -71.883781433105412, -4.520668983459473 ], [ -71.884773254394531, -4.521849155426025 ], [ -71.88580322265625, -4.522227764129582 ], [ -71.886497497558594, -4.522079944610482 ], [ -71.886657714843636, -4.521928787231445 ], [ -71.887123107910099, -4.52150106430048 ], [ -71.888832092285099, -4.518468856811467 ], [ -71.890037536621094, -4.51694917678833 ], [ -71.890312194824219, -4.516610145568848 ], [ -71.891426086425668, -4.515658855438176 ], [ -71.892433166503906, -4.515199184417725 ], [ -71.894401550292969, -4.51475000381464 ], [ -71.897148132324105, -4.514839172363281 ], [ -71.900627136230469, -4.514949798583984 ], [ -71.903816223144474, -4.514619827270508 ], [ -71.90509033203125, -4.51475000381464 ], [ -71.906745910644474, -4.515231132507324 ], [ -71.90850830078125, -4.517209053039494 ], [ -71.908401489257699, -4.519309997558594 ], [ -71.907531738281193, -4.520480155944824 ], [ -71.904937744140568, -4.522040843963566 ], [ -71.902626037597656, -4.522850036621094 ], [ -71.901725769042855, -4.523159980773926 ], [ -71.900436401367188, -4.523129940032902 ], [ -71.897537231445312, -4.522008895873967 ], [ -71.896080017089787, -4.521958827972412 ], [ -71.894752502441349, -4.522350788116398 ], [ -71.893196105957031, -4.523460865020752 ], [ -71.891532897949219, -4.525330066680908 ], [ -71.890449523925724, -4.526539802551213 ], [ -71.88655853271473, -4.53000879287714 ], [ -71.885490417480412, -4.531369209289551 ], [ -71.884742736816349, -4.533911228179932 ], [ -71.884857177734375, -4.536910057067814 ], [ -71.885566711425781, -4.538199901580811 ], [ -71.886627197265568, -4.538910865783691 ], [ -71.888359069824162, -4.539539813995361 ], [ -71.8892822265625, -4.539598941802979 ], [ -71.890258789062443, -4.53938102722168 ], [ -71.891983032226506, -4.537610054016056 ], [ -71.893608093261662, -4.533339023590088 ], [ -71.894271850585881, -4.532139778137207 ], [ -71.896537780761662, -4.529990196228027 ], [ -71.896659851074162, -4.52987003326416 ], [ -71.897850036621094, -4.529370784759521 ], [ -71.899826049804688, -4.529229164123478 ], [ -71.900917053222656, -4.529149055480843 ], [ -71.908546447753906, -4.530438899993896 ], [ -71.912742614746094, -4.530099868774357 ], [ -71.917121887207031, -4.528759956359806 ], [ -71.918670654296818, -4.528960227966309 ], [ -71.920227050781136, -4.531310081481934 ], [ -71.920951843261662, -4.533749103546143 ], [ -71.921760559082031, -4.535579204559269 ], [ -71.921928405761662, -4.536658763885498 ], [ -71.921836853027287, -4.537300109863224 ], [ -71.921401977539062, -4.537748813629094 ], [ -71.919258117675724, -4.538539886474553 ], [ -71.918876647949162, -4.539080142974797 ], [ -71.918846130371094, -4.539639949798527 ], [ -71.919876098632812, -4.540769100189152 ], [ -71.922332763671875, -4.541199207305908 ], [ -71.924079895019531, -4.542159080505314 ], [ -71.926300048828068, -4.544439792633 ], [ -71.927238464355469, -4.54629993438715 ], [ -71.927169799804631, -4.547589778900146 ], [ -71.926727294921875, -4.548240184783936 ], [ -71.925308227539062, -4.549190044403076 ], [ -71.923011779785156, -4.549788951873722 ], [ -71.921722412109318, -4.551208972930908 ], [ -71.921623229980412, -4.552188873290959 ], [ -71.92138671875, -4.552490234374886 ], [ -71.921356201171818, -4.554399967193604 ], [ -71.921340942382756, -4.555618762969914 ], [ -71.921333312988224, -4.556038856506291 ], [ -71.920906066894531, -4.557730197906494 ], [ -71.920616149902344, -4.558588981628418 ], [ -71.919219970703125, -4.560829162597656 ], [ -71.919067382812443, -4.562308788299561 ], [ -71.919532775878849, -4.563379764556885 ], [ -71.920387268066349, -4.564330101013184 ], [ -71.921401977539062, -4.564418792724609 ], [ -71.922340393066406, -4.563590049743596 ], [ -71.925247192382756, -4.561029911041203 ], [ -71.925857543945312, -4.560908794403076 ], [ -71.92775726318348, -4.56052923202509 ], [ -71.928947448730469, -4.560619831085205 ], [ -71.929885864257812, -4.560979843139648 ], [ -71.931938171386662, -4.562520980834904 ], [ -71.932289123535156, -4.563379764556885 ], [ -71.932289123535156, -4.564468860626221 ], [ -71.931236267089844, -4.565599918365422 ], [ -71.930282592773438, -4.566090106964111 ], [ -71.929611206054688, -4.566429138183594 ], [ -71.928291320800781, -4.567580223083496 ], [ -71.927482604980469, -4.568689823150635 ], [ -71.927467346191349, -4.568809032440186 ], [ -71.927368164062443, -4.569691181182861 ], [ -71.928192138671875, -4.57089900970459 ], [ -71.931182861328068, -4.572498798370304 ], [ -71.931793212890625, -4.573318958282471 ], [ -71.933212280273438, -4.576220035552979 ], [ -71.934219360351506, -4.577439785003662 ], [ -71.935661315917912, -4.578320026397648 ], [ -71.936210632324162, -4.578649997711125 ], [ -71.938041687011662, -4.578818798065186 ], [ -71.939727783203125, -4.578700065612793 ], [ -71.940330505371037, -4.578659057617188 ], [ -71.943901062011719, -4.577799797058049 ], [ -71.947387695312443, -4.57781982421875 ], [ -71.949249267578125, -4.578800201415959 ], [ -71.950813293456974, -4.580749034881592 ], [ -71.950996398925724, -4.582199096679688 ], [ -71.949569702148381, -4.586379051208496 ], [ -71.944236755371037, -4.591780185699463 ], [ -71.943466186523381, -4.592919826507568 ], [ -71.943161010742188, -4.593379974365178 ], [ -71.942916870117131, -4.594169139862061 ], [ -71.943046569824219, -4.594979763031006 ], [ -71.943946838378849, -4.596018791198674 ], [ -71.945510864257812, -4.596569061279297 ], [ -71.947166442871094, -4.596378803253174 ], [ -71.948532104492131, -4.596601009368896 ], [ -71.949935913085938, -4.59745979309082 ], [ -71.950675964355469, -4.598619937896729 ], [ -71.950782775878906, -4.601280212402344 ], [ -71.950538635253849, -4.602049827575627 ], [ -71.947769165039006, -4.605158805847168 ], [ -71.946876525878906, -4.606150150299072 ], [ -71.946678161621094, -4.607038974761963 ], [ -71.946952819824219, -4.607628822326603 ], [ -71.948379516601562, -4.608621120452881 ], [ -71.953399658203068, -4.609200000762939 ], [ -71.95458984375, -4.609148979187012 ], [ -71.955726623535156, -4.608729839324894 ], [ -71.956436157226506, -4.608169078826847 ], [ -71.957847595214844, -4.606729030609131 ], [ -71.959396362304631, -4.605158805847168 ], [ -71.960647583007756, -4.604829788208008 ], [ -71.960739135742131, -4.604909896850586 ], [ -71.962028503417969, -4.606009006500244 ], [ -71.963066101074219, -4.607690811157227 ], [ -71.964530944824219, -4.610058784484863 ], [ -71.965843200683594, -4.610899925231877 ], [ -71.966445922851506, -4.611080169677734 ], [ -71.966957092285043, -4.610929012298584 ], [ -71.969642639160156, -4.608559131622258 ], [ -71.970878601074219, -4.607968807220459 ], [ -71.975112915039062, -4.610819816589299 ], [ -71.977386474609375, -4.611048221588135 ], [ -71.977508544921818, -4.611009120941162 ], [ -71.979103088378906, -4.610451221466008 ], [ -71.979881286621094, -4.609680175781193 ], [ -71.980690002441293, -4.608559131622258 ], [ -71.981239318847599, -4.606908798217773 ], [ -71.981590270996094, -4.605869770050049 ], [ -71.982147216796875, -4.604918956756535 ], [ -71.98358154296875, -4.603629112243652 ], [ -71.984092712402287, -4.603439807891846 ], [ -71.984382629394474, -4.603448867797795 ], [ -71.985015869140625, -4.603478908538818 ], [ -71.986312866210824, -4.604760169982853 ], [ -71.98726654052723, -4.605299949645882 ], [ -71.989242553710881, -4.607059001922607 ], [ -71.991188049316406, -4.607830047607422 ], [ -71.992813110351562, -4.608139991760254 ], [ -71.994468688964844, -4.609128952026367 ], [ -71.995361328124943, -4.610078811645508 ], [ -71.995651245117131, -4.610720157623234 ], [ -71.995697021484375, -4.61192083358759 ], [ -71.994972229003849, -4.613269805908203 ], [ -71.993782043457031, -4.613920211791935 ], [ -71.992858886718693, -4.613799095153809 ], [ -71.990249633789062, -4.612470149993896 ], [ -71.988639831542969, -4.612131118774357 ], [ -71.98726654052723, -4.612209796905518 ], [ -71.986717224121094, -4.612508773803654 ], [ -71.986236572265625, -4.61276912689209 ], [ -71.985900878906193, -4.613409042358398 ], [ -71.986251831054688, -4.615180015563965 ], [ -71.985816955566349, -4.618270874023381 ], [ -71.985000610351562, -4.619689941406193 ], [ -71.982986450195312, -4.621559143066406 ], [ -71.982398986816349, -4.622429847717285 ], [ -71.982269287109375, -4.622631072998047 ], [ -71.981613159179631, -4.624519824981689 ], [ -71.981826782226506, -4.626480102539006 ], [ -71.982582092285099, -4.627299785614014 ], [ -71.983428955078068, -4.627678871154785 ], [ -71.984657287597599, -4.627418994903564 ], [ -71.987159729003849, -4.626459121704102 ], [ -71.98879241943348, -4.626159191131592 ], [ -71.991355895996037, -4.626090049743539 ], [ -71.991752624511605, -4.626159191131592 ], [ -71.992156982421875, -4.626241207122746 ], [ -71.994689941406193, -4.627288818359375 ], [ -71.998817443847656, -4.627449035644418 ], [ -72.000221252441349, -4.628099918365479 ], [ -72.001502990722656, -4.62862920761097 ], [ -72.002342224121094, -4.629349231719914 ], [ -72.004356384277344, -4.632850170135441 ], [ -72.00531005859375, -4.636280059814453 ], [ -72.005081176757756, -4.638289928436222 ], [ -72.004249572753906, -4.641380786895695 ], [ -72.004158020019531, -4.643589019775391 ], [ -72.004516601562443, -4.644430160522461 ], [ -72.005012512207031, -4.644858837127629 ], [ -72.006378173828125, -4.645018100738525 ], [ -72.008201599121094, -4.643979072570801 ], [ -72.012657165527344, -4.639129161834717 ], [ -72.013031005859375, -4.638189792632943 ], [ -72.013236999511719, -4.635810852050724 ], [ -72.013648986816349, -4.634300231933537 ], [ -72.014389038085938, -4.632830142974797 ], [ -72.015747070312443, -4.631339073181152 ], [ -72.018463134765625, -4.630270004272461 ], [ -72.020637512206974, -4.630008220672551 ], [ -72.022636413574162, -4.629440784454289 ], [ -72.025856018066349, -4.627909183502197 ], [ -72.027687072753849, -4.627350807189885 ], [ -72.033126831054631, -4.624979972839355 ], [ -72.036590576171875, -4.624069213867188 ], [ -72.037269592285156, -4.623740196228027 ], [ -72.038421630859375, -4.623158931732121 ], [ -72.040191650390568, -4.622270107269287 ], [ -72.041542053222656, -4.62201976776123 ], [ -72.042221069335938, -4.622239112854004 ], [ -72.042846679687443, -4.623188972473145 ], [ -72.043067932128906, -4.623530864715576 ], [ -72.043083190917969, -4.623770236968937 ], [ -72.043106079101562, -4.624730110168457 ], [ -72.041900634765568, -4.629051208496037 ], [ -72.040428161621094, -4.632300853729134 ], [ -72.036743164062443, -4.637180805206242 ], [ -72.036842346191349, -4.640139102935791 ], [ -72.037773132324219, -4.642440795898438 ], [ -72.0386962890625, -4.643529891967773 ], [ -72.039848327636719, -4.644100189208984 ], [ -72.041412353515568, -4.64418888092041 ], [ -72.043998718261662, -4.64302921295166 ], [ -72.0447998046875, -4.643169879913273 ], [ -72.045486450195312, -4.643619060516301 ], [ -72.045768737792969, -4.644089221954346 ], [ -72.045928955078125, -4.645180225372258 ], [ -72.045112609863281, -4.648289203643799 ], [ -72.045150756835881, -4.651600837707406 ], [ -72.045700073242131, -4.653059005737305 ], [ -72.046569824218693, -4.653749942779541 ], [ -72.047920227050668, -4.654001235961857 ], [ -72.049217224121094, -4.653660774230957 ], [ -72.05049896240223, -4.652829170226994 ], [ -72.054412841796875, -4.649159908294678 ], [ -72.055679321289062, -4.648670196533203 ], [ -72.056961059570256, -4.648760795593205 ], [ -72.058319091796761, -4.649290084838867 ], [ -72.059738159179631, -4.650320053100586 ], [ -72.06195068359375, -4.653130054473877 ], [ -72.063308715820312, -4.654339790344181 ], [ -72.065437316894474, -4.656249999999886 ], [ -72.067977905273438, -4.65900993347168 ], [ -72.068016052246037, -4.660019874572754 ], [ -72.067070007324162, -4.661468982696533 ], [ -72.063278198242074, -4.664790153503361 ], [ -72.060997009277344, -4.666289806365967 ], [ -72.059730529785099, -4.667738914489689 ], [ -72.059089660644531, -4.669858932495117 ], [ -72.059036254882812, -4.670021057128906 ], [ -72.059066772460881, -4.672039985656738 ], [ -72.059593200683594, -4.673120021820068 ], [ -72.061126708984375, -4.674948215484619 ], [ -72.062255859375, -4.675730228424015 ], [ -72.063041687011719, -4.67604923248291 ], [ -72.063446044921818, -4.676219940185547 ], [ -72.064727783203125, -4.676119804382324 ], [ -72.065422058105469, -4.675519943237305 ], [ -72.066101074218693, -4.674201011657715 ], [ -72.066421508788949, -4.673569202423096 ], [ -72.066360473632812, -4.66897010803217 ], [ -72.066902160644418, -4.666169166564885 ], [ -72.06781005859375, -4.664719104766789 ], [ -72.068161010742188, -4.6641588211059 ], [ -72.069442749023381, -4.663131237030029 ], [ -72.070976257324162, -4.663118839263916 ], [ -72.072608947753849, -4.6637282371521 ], [ -72.076576232910156, -4.666830062866211 ], [ -72.079566955566349, -4.668429851531926 ], [ -72.08074951171875, -4.669699192047119 ], [ -72.081306457519531, -4.670969009399357 ], [ -72.081428527832031, -4.673530101776123 ], [ -72.081253051757812, -4.673958778381348 ], [ -72.080673217773438, -4.674529075622502 ], [ -72.080398559570312, -4.674799919128361 ], [ -72.077766418456974, -4.675838947296143 ], [ -72.076400756835881, -4.677040100097543 ], [ -72.076080322265625, -4.677928924560547 ], [ -72.076026916503849, -4.678958892822266 ], [ -72.0765380859375, -4.680311203002873 ], [ -72.077690124511719, -4.681358814239502 ], [ -72.080780029296875, -4.683519840240479 ], [ -72.082008361816406, -4.683849811553955 ], [ -72.083168029785156, -4.683638095855713 ], [ -72.084220886230412, -4.683050155639648 ], [ -72.086166381835824, -4.681119918823242 ], [ -72.086738586425668, -4.680819034576302 ], [ -72.087158203125, -4.680779933929387 ], [ -72.088279724121094, -4.68068885803217 ], [ -72.089027404785043, -4.681039810180664 ], [ -72.089408874511605, -4.681459903716984 ], [ -72.089523315429688, -4.681589126586914 ], [ -72.089660644531193, -4.68195915222168 ], [ -72.09002685546875, -4.682980060577393 ], [ -72.089988708496094, -4.683498859405518 ], [ -72.089653015136719, -4.687099933624268 ], [ -72.089828491210938, -4.688361167907658 ], [ -72.090286254882812, -4.689669132232609 ], [ -72.091140747070312, -4.69097995758051 ], [ -72.092300415039062, -4.692280769348145 ], [ -72.098686218261719, -4.697638988494873 ], [ -72.099456787109375, -4.699510097503662 ], [ -72.100090026855355, -4.703399181365967 ], [ -72.100509643554688, -4.70444917678833 ], [ -72.101753234863281, -4.706179141998234 ], [ -72.102210998535156, -4.706480026245117 ], [ -72.103919982910156, -4.706618785858154 ], [ -72.105491638183537, -4.706489086151066 ], [ -72.106407165527344, -4.706019878387337 ], [ -72.107086181640625, -4.70567083358759 ], [ -72.108978271484375, -4.705310821533203 ], [ -72.110809326171875, -4.705239772796631 ], [ -72.112327575683594, -4.705571174621525 ], [ -72.11358642578125, -4.706679821014347 ], [ -72.114273071289006, -4.707728862762394 ], [ -72.114006042480412, -4.708919048309326 ], [ -72.112846374511662, -4.710869789123535 ], [ -72.112907409667969, -4.711878776550293 ], [ -72.113258361816406, -4.712318897247258 ], [ -72.114143371582031, -4.712499141693115 ], [ -72.115310668945256, -4.712210178375244 ], [ -72.117958068847656, -4.711559772491398 ], [ -72.121200561523438, -4.713949203491211 ], [ -72.123870849609375, -4.715548992156926 ], [ -72.124771118164006, -4.716819763183594 ], [ -72.12481689453125, -4.718558788299561 ], [ -72.123756408691406, -4.720829010009766 ], [ -72.1236572265625, -4.721049785614014 ], [ -72.120475769042912, -4.725529193878174 ], [ -72.120208740234261, -4.726880073547363 ], [ -72.120216369628906, -4.728169918060246 ], [ -72.120323181152344, -4.728388786315861 ], [ -72.120773315429631, -4.729419231414795 ], [ -72.122642517089844, -4.731810092925969 ], [ -72.123901367187443, -4.733008861541634 ], [ -72.125862121582031, -4.734370231628418 ], [ -72.127899169921818, -4.73491907119751 ], [ -72.130630493164062, -4.734960079193058 ], [ -72.131362915039006, -4.734549999237061 ], [ -72.132606506347543, -4.733380794525146 ], [ -72.133079528808537, -4.732039928436222 ], [ -72.133338928222599, -4.731308937072697 ], [ -72.133308410644531, -4.730379104614201 ], [ -72.133003234863281, -4.729519844055176 ], [ -72.131126403808594, -4.726788997650146 ], [ -72.129402160644531, -4.725440025329533 ], [ -72.127296447753906, -4.724548816680908 ], [ -72.126502990722543, -4.723111152648869 ], [ -72.126716613769531, -4.721951007842961 ], [ -72.128250122070312, -4.720648765563965 ], [ -72.131462097167855, -4.719920158386174 ], [ -72.132316589355412, -4.719399929046574 ], [ -72.133407592773438, -4.717929840087834 ], [ -72.135337829589787, -4.715950012206918 ], [ -72.136405944824162, -4.71484899520874 ], [ -72.136749267578125, -4.713949203491211 ], [ -72.137397766113281, -4.712201118469238 ], [ -72.138130187988224, -4.711221218109131 ], [ -72.138648986816406, -4.710898876190186 ], [ -72.139312744140625, -4.710928916931152 ], [ -72.140663146972656, -4.711878776550293 ], [ -72.14111328125, -4.712570190429688 ], [ -72.141189575195199, -4.712971210479679 ], [ -72.141868591308594, -4.71631908416748 ], [ -72.142280578613281, -4.718310832977238 ], [ -72.145210266113281, -4.722868919372502 ], [ -72.146026611328068, -4.723740100860596 ], [ -72.146919250488281, -4.724380016326904 ], [ -72.148567199707031, -4.724958896636906 ], [ -72.15358734130848, -4.725139141082764 ], [ -72.154022216796875, -4.725359916686955 ], [ -72.156280517578125, -4.726529121398869 ], [ -72.159416198730469, -4.727509975433293 ], [ -72.160499572753906, -4.728192806243783 ], [ -72.161270141601562, -4.72943115234375 ], [ -72.161293029785099, -4.730358123779297 ], [ -72.160629272460881, -4.731588840484619 ], [ -72.160301208496094, -4.732209205627441 ], [ -72.15850830078125, -4.734029769897461 ], [ -72.158515930175724, -4.734609127044678 ], [ -72.159095764160099, -4.735320091247559 ], [ -72.160629272460881, -4.73586893081665 ], [ -72.164710998535099, -4.735350131988469 ], [ -72.166877746582031, -4.734378814697266 ], [ -72.167999267578125, -4.734068870544434 ], [ -72.168457031249943, -4.733948230743408 ], [ -72.172027587890625, -4.734051227569523 ], [ -72.173416137695256, -4.734779834747314 ], [ -72.174285888671761, -4.73523998260498 ], [ -72.17572021484375, -4.736538887023869 ], [ -72.176193237304574, -4.736828804016056 ], [ -72.178138732910156, -4.738039016723633 ], [ -72.180206298828125, -4.739700794219914 ], [ -72.184226989746094, -4.741489887237492 ], [ -72.187171936035156, -4.743308067321777 ], [ -72.190452575683594, -4.744200229644775 ], [ -72.191848754882812, -4.744890213012638 ], [ -72.192581176757756, -4.745238780975342 ], [ -72.192909240722656, -4.745648860931396 ], [ -72.193328857421818, -4.746189117431641 ], [ -72.193222045898438, -4.746799945831299 ], [ -72.193077087402344, -4.746928215026855 ], [ -72.192749023437443, -4.74724006652832 ], [ -72.191802978515568, -4.747559070587158 ], [ -72.191619873046818, -4.747570037841797 ], [ -72.190650939941349, -4.74764776229847 ], [ -72.189247131347599, -4.747768878936768 ], [ -72.188232421875, -4.748160839080754 ], [ -72.187438964843693, -4.749289035797062 ], [ -72.187232971191349, -4.751039028167725 ], [ -72.187667846679688, -4.752500057220402 ], [ -72.189636230468636, -4.756680011749211 ], [ -72.190849304199162, -4.760449886322021 ], [ -72.191719055175724, -4.762050151824951 ], [ -72.192642211914062, -4.762808799743652 ], [ -72.193878173828125, -4.763298988342285 ], [ -72.194778442382756, -4.763179779052734 ], [ -72.195343017578068, -4.76285886764515 ], [ -72.195739746093636, -4.761548042297306 ], [ -72.195365905761719, -4.760340213775578 ], [ -72.192352294921875, -4.75724983215332 ], [ -72.192253112792969, -4.756529808044377 ], [ -72.192626953125, -4.75570011138916 ], [ -72.193450927734261, -4.755290031433049 ], [ -72.194442749023438, -4.755349159240666 ], [ -72.196037292480469, -4.756031036376953 ], [ -72.198097229003849, -4.757740020751953 ], [ -72.199539184570256, -4.757618904113713 ], [ -72.200126647949105, -4.756898880004826 ], [ -72.200546264648438, -4.753519058227539 ], [ -72.201301574707031, -4.751558780670109 ], [ -72.202896118163949, -4.750039100646973 ], [ -72.204948425292969, -4.748669147491398 ], [ -72.206306457519474, -4.748110771179199 ], [ -72.207305908203125, -4.747311115264836 ], [ -72.208656311035156, -4.747210025787354 ], [ -72.209953308105355, -4.748520851135254 ], [ -72.210807800292855, -4.752278804779053 ], [ -72.211730957031193, -4.753308773040771 ], [ -72.212356567382812, -4.753399848937988 ], [ -72.213172912597599, -4.753519058227539 ], [ -72.216140747070256, -4.752819061279297 ], [ -72.218597412109318, -4.752920150756836 ], [ -72.220787048339787, -4.753640174865666 ], [ -72.221977233886719, -4.75501012802124 ], [ -72.222206115722656, -4.75580978393549 ], [ -72.222045898437443, -4.756989955902043 ], [ -72.221305847167969, -4.75803899765009 ], [ -72.220718383789006, -4.758460044860726 ], [ -72.218650817871094, -4.758850097656193 ], [ -72.217201232910043, -4.758540153503361 ], [ -72.2156982421875, -4.758230209350529 ], [ -72.214073181152344, -4.758159160613957 ], [ -72.212806701660099, -4.758889198303109 ], [ -72.212699890136662, -4.759029865264893 ], [ -72.212257385253906, -4.759628772735539 ], [ -72.212036132812443, -4.760440826416016 ], [ -72.212142944335824, -4.762100219726506 ], [ -72.212593078613224, -4.763289928436279 ], [ -72.2130126953125, -4.763959884643498 ], [ -72.214149475097543, -4.765799045562744 ], [ -72.215682983398438, -4.767758846282902 ], [ -72.218376159667969, -4.769559860229435 ], [ -72.221626281738281, -4.771719932556152 ], [ -72.222717285156193, -4.772160053253174 ], [ -72.22381591796875, -4.772059917449951 ], [ -72.22503662109375, -4.771089076995793 ], [ -72.225585937499943, -4.769538879394474 ], [ -72.226646423339844, -4.768390178680306 ], [ -72.227996826171875, -4.768490791320744 ], [ -72.229011535644474, -4.769239902496338 ], [ -72.229270935058594, -4.769790172576847 ], [ -72.229209899902287, -4.771279811859074 ], [ -72.229057312011719, -4.771728992462101 ], [ -72.228691101074219, -4.77285099029541 ], [ -72.228668212890625, -4.773768901824951 ], [ -72.229118347167855, -4.77508020401001 ], [ -72.229728698730469, -4.775890827178955 ], [ -72.230949401855469, -4.776259899139404 ], [ -72.233711242675781, -4.775059223174992 ], [ -72.236076354980412, -4.775269031524601 ], [ -72.236717224121037, -4.77567005157465 ], [ -72.237480163574162, -4.776130199432373 ], [ -72.239830017089844, -4.778709888458195 ], [ -72.241561889648438, -4.780230045318604 ], [ -72.242523193359375, -4.780758857727051 ], [ -72.244659423828068, -4.781089782714844 ], [ -72.245841979980469, -4.780600070953369 ], [ -72.247093200683594, -4.779529094695988 ], [ -72.248336791992188, -4.777278900146484 ], [ -72.248573303222543, -4.776309967040959 ], [ -72.248756408691349, -4.770141124725342 ], [ -72.249153137207031, -4.768349170684814 ], [ -72.249420166015568, -4.767728805541992 ], [ -72.249656677246094, -4.767168998718262 ], [ -72.250282287597599, -4.766608238220215 ], [ -72.251228332519474, -4.765759944915715 ], [ -72.253036499023381, -4.764880180358887 ], [ -72.254127502441406, -4.764729976654053 ], [ -72.255126953124943, -4.764880180358887 ], [ -72.256813049316406, -4.766011238098088 ], [ -72.257537841796761, -4.767049789428711 ], [ -72.258132934570312, -4.76918983459467 ], [ -72.2584228515625, -4.775149822235051 ], [ -72.259407043457031, -4.777019023895264 ], [ -72.261482238769531, -4.779351234436035 ], [ -72.261756896972656, -4.780799865722543 ], [ -72.261436462402287, -4.78154993057251 ], [ -72.260597229003906, -4.78252983093256 ], [ -72.259231567382756, -4.783449172973633 ], [ -72.256622314453125, -4.784549236297607 ], [ -72.25582122802723, -4.785360813140869 ], [ -72.255126953124943, -4.786048889160156 ], [ -72.254539489746094, -4.787078857421818 ], [ -72.253959655761719, -4.789019107818604 ], [ -72.253852844238281, -4.790219783782959 ], [ -72.254158020019531, -4.791179180145207 ], [ -72.255447387695312, -4.791999816894531 ], [ -72.256919860839844, -4.791850090026855 ], [ -72.258056640625, -4.790538787841797 ], [ -72.259231567382756, -4.788159847259465 ], [ -72.260772705078068, -4.786458969116154 ], [ -72.26107025146473, -4.786320209503117 ], [ -72.262611389160156, -4.785638809204102 ], [ -72.262847900390568, -4.785630226135254 ], [ -72.263610839843693, -4.785589218139592 ], [ -72.265052795410099, -4.785849094390869 ], [ -72.265968322753906, -4.786479949951172 ], [ -72.266899108886719, -4.787610054016113 ], [ -72.267807006835881, -4.79040002822876 ], [ -72.268142700195312, -4.793138980865422 ], [ -72.269126892089844, -4.796380043029785 ], [ -72.270523071289062, -4.797979831695557 ], [ -72.272003173828068, -4.79866886138916 ], [ -72.27655029296875, -4.79791879653925 ], [ -72.282386779785156, -4.797749996185303 ], [ -72.283439636230469, -4.797169208526611 ], [ -72.284248352050781, -4.795860767364445 ], [ -72.284233093261662, -4.795011043548527 ], [ -72.283866882324219, -4.79417896270752 ], [ -72.282867431640625, -4.793109893798828 ], [ -72.279052734375, -4.791590213775635 ], [ -72.277336120605469, -4.790338039398137 ], [ -72.276863098144474, -4.789051055908203 ], [ -72.277297973632812, -4.781898975372314 ], [ -72.276878356933537, -4.779648780822697 ], [ -72.276702880859318, -4.774678230285645 ], [ -72.277267456054631, -4.772190093994084 ], [ -72.277938842773381, -4.771300792694092 ], [ -72.278656005859375, -4.770940780639648 ], [ -72.280311584472599, -4.770978927612305 ], [ -72.281349182128849, -4.772240161895752 ], [ -72.281517028808594, -4.773709774017334 ], [ -72.281028747558594, -4.776309967040959 ], [ -72.281646728515568, -4.778129100799561 ], [ -72.282127380371037, -4.782049179077148 ], [ -72.282379150390625, -4.782649040222111 ], [ -72.283187866210881, -4.783398151397705 ], [ -72.284187316894531, -4.783238887786865 ], [ -72.286460876464844, -4.7809801101684 ], [ -72.287582397460824, -4.780189037322941 ], [ -72.292526245117131, -4.778269767761174 ], [ -72.296836853027344, -4.776051044464111 ], [ -72.299919128417969, -4.775199890136719 ], [ -72.301200866699162, -4.775259971618652 ], [ -72.301696777343636, -4.775498867034912 ], [ -72.302162170410099, -4.775959014892578 ], [ -72.302536010742131, -4.77678918838501 ], [ -72.303207397460881, -4.778999805450326 ], [ -72.303726196289062, -4.781618118286133 ], [ -72.303802490234375, -4.781969070434513 ], [ -72.304069519042912, -4.785050868988037 ], [ -72.304161071777287, -4.786098957061768 ], [ -72.304641723632756, -4.788418769836369 ], [ -72.305335998535156, -4.789608955383301 ], [ -72.306266784667912, -4.790319919586182 ], [ -72.308456420898381, -4.790079116821232 ], [ -72.310287475585938, -4.789248943328801 ], [ -72.312393188476562, -4.787578105926514 ], [ -72.3134765625, -4.786018848419189 ], [ -72.313446044921875, -4.785270214080697 ], [ -72.313140869140511, -4.784678936004582 ], [ -72.312973022460938, -4.784359931945801 ], [ -72.310089111328011, -4.782240867614746 ], [ -72.309776306152287, -4.782010078430176 ], [ -72.308631896972599, -4.780478954315129 ], [ -72.308380126953125, -4.778547763824406 ], [ -72.3084716796875, -4.777459144592228 ], [ -72.309089660644531, -4.775819778442383 ], [ -72.310249328613224, -4.774409770965576 ], [ -72.311889648437443, -4.774289131164551 ], [ -72.31447601318348, -4.775431156158447 ], [ -72.318496704101562, -4.777198791503906 ], [ -72.323570251464844, -4.778439044952393 ], [ -72.325653076171875, -4.779150009155273 ], [ -72.327026367187443, -4.780210018157959 ], [ -72.328453063964844, -4.781779766082764 ], [ -72.3289794921875, -4.783158779144287 ], [ -72.329086303710938, -4.784839153289795 ], [ -72.328842163085881, -4.785779953002873 ], [ -72.327682495117188, -4.786839962005558 ], [ -72.326103210449162, -4.787559986114445 ], [ -72.324752807617131, -4.787849903106633 ], [ -72.322517395019531, -4.787740230560303 ], [ -72.321296691894531, -4.787679195403996 ], [ -72.320549011230412, -4.78800010681141 ], [ -72.320396423339844, -4.788510799407959 ], [ -72.320426940917969, -4.789230823516846 ], [ -72.322769165038949, -4.793249130249023 ], [ -72.323272705078125, -4.795869827270508 ], [ -72.323143005371037, -4.800090789794922 ], [ -72.321899414062443, -4.804320812225285 ], [ -72.321830749511719, -4.80689001083374 ], [ -72.322212219238281, -4.810268878936711 ], [ -72.322967529296875, -4.81174898147583 ], [ -72.324386596679631, -4.813199996948242 ], [ -72.325286865234375, -4.813330173492432 ], [ -72.326072692871037, -4.812859058380127 ], [ -72.326522827148438, -4.812069892883244 ], [ -72.326187133789006, -4.810440063476506 ], [ -72.324287414550724, -4.807169914245549 ], [ -72.323677062988281, -4.805641174316406 ], [ -72.323883056640568, -4.80334997177124 ], [ -72.325042724609318, -4.802168846130371 ], [ -72.326789855957031, -4.801659107208252 ], [ -72.32861328125, -4.80173921585083 ], [ -72.332710266113281, -4.803129196166935 ], [ -72.336036682128906, -4.80461311340332 ], [ -72.338226318359375, -4.804941177368107 ], [ -72.339157104492131, -4.804379940032902 ], [ -72.339363098144418, -4.803500175476074 ], [ -72.339096069335938, -4.802340030670166 ], [ -72.338478088378849, -4.801000118255615 ], [ -72.338081359863281, -4.800498962402344 ], [ -72.336647033691406, -4.798688888549805 ], [ -72.336280822753849, -4.796888828277588 ], [ -72.3365478515625, -4.795550823211613 ], [ -72.336875915527287, -4.794909954071045 ], [ -72.337059020996037, -4.794569015502873 ], [ -72.337417602539062, -4.79417896270752 ], [ -72.337882995605469, -4.793688774108887 ], [ -72.338768005371037, -4.793231010437012 ], [ -72.341361999511662, -4.793758869171086 ], [ -72.342422485351562, -4.794990062713566 ], [ -72.34320068359375, -4.797690868377686 ], [ -72.343368530273324, -4.804338932037354 ], [ -72.344558715820312, -4.806199073791504 ], [ -72.345596313476562, -4.8067688941955 ], [ -72.347152709960881, -4.806809902191162 ], [ -72.349845886230412, -4.805699825286808 ], [ -72.351280212402287, -4.805368900298959 ], [ -72.352508544921818, -4.805398941040039 ], [ -72.35455322265625, -4.805919170379639 ], [ -72.354721069335824, -4.805960178375244 ], [ -72.356719970703011, -4.805928230285645 ], [ -72.357391357421761, -4.805909156799316 ], [ -72.359016418457031, -4.805210113525334 ], [ -72.362770080566406, -4.803609848022404 ], [ -72.36590576171875, -4.802659034728947 ], [ -72.366928100585824, -4.802730083465576 ], [ -72.369003295898381, -4.803500175476074 ], [ -72.370277404785156, -4.804359912872258 ], [ -72.371940612792969, -4.80610990524292 ], [ -72.372306823730469, -4.807429790496826 ], [ -72.372138977050724, -4.808319091796875 ], [ -72.36895751953125, -4.811629772186279 ], [ -72.368263244628793, -4.812358856201115 ], [ -72.367828369140625, -4.81328010559082 ], [ -72.367546081542969, -4.81472110748291 ], [ -72.366477966308594, -4.816208839416504 ], [ -72.365592956542855, -4.816829204559269 ], [ -72.360992431640568, -4.818910121917725 ], [ -72.359756469726506, -4.82020902633667 ], [ -72.359649658203068, -4.821589946746769 ], [ -72.359550476074162, -4.822959899902344 ], [ -72.359947204589787, -4.823699951171818 ], [ -72.360801696777287, -4.824650764465332 ], [ -72.361183166503849, -4.825069904327393 ], [ -72.362457275390625, -4.825959205627441 ], [ -72.363250732421875, -4.826138973236084 ], [ -72.364700317382756, -4.825900077819824 ], [ -72.367652893066349, -4.823890209197941 ], [ -72.371566772460881, -4.821778774261475 ], [ -72.3743896484375, -4.821800231933537 ], [ -72.378433227539006, -4.822988986968937 ], [ -72.382148742675724, -4.824759960174561 ], [ -72.382476806640625, -4.825300216674805 ], [ -72.382400512695312, -4.826398849487248 ], [ -72.381858825683594, -4.826879978179932 ], [ -72.380439758300724, -4.827528953552246 ], [ -72.373588562011662, -4.829178810119629 ], [ -72.372886657714844, -4.829598903656006 ], [ -72.372177124023438, -4.830440044403019 ], [ -72.371978759765511, -4.831638813018742 ], [ -72.372169494628793, -4.832129001617432 ], [ -72.372962951660156, -4.832839965820256 ], [ -72.374420166015625, -4.83280086517334 ], [ -72.37603759765625, -4.832518100738469 ], [ -72.380737304687443, -4.831038951873722 ], [ -72.38385009765625, -4.830979824066105 ], [ -72.386886596679688, -4.831658840179387 ], [ -72.388206481933594, -4.832300186157227 ], [ -72.389472961425781, -4.833250045776367 ], [ -72.389678955078125, -4.834129810333252 ], [ -72.389518737792912, -4.83492994308466 ], [ -72.38861083984375, -4.83597993850708 ], [ -72.387702941894474, -4.836390972137451 ], [ -72.385330200195199, -4.836429119110107 ], [ -72.382270812988224, -4.835478782653809 ], [ -72.380622863769474, -4.835360050201416 ], [ -72.378952026367188, -4.83489990234375 ], [ -72.377166748046875, -4.835608959197941 ], [ -72.375907897949219, -4.836780071258545 ], [ -72.375801086425781, -4.838900089263916 ], [ -72.376518249511719, -4.840490818023682 ], [ -72.37789154052723, -4.841969966888428 ], [ -72.382263183593693, -4.845701217651367 ], [ -72.383003234863281, -4.847080230712777 ], [ -72.384033203125, -4.85023021697998 ], [ -72.384323120117188, -4.85175895690918 ], [ -72.384330749511719, -4.853529930114689 ], [ -72.384117126464844, -4.854389190673771 ], [ -72.383308410644474, -4.855410099029484 ], [ -72.380912780761662, -4.857261180877629 ], [ -72.380706787109375, -4.857849121093693 ], [ -72.380752563476449, -4.858780860900879 ], [ -72.381340026855469, -4.859360218048039 ], [ -72.382575988769531, -4.85969877243042 ], [ -72.385803222656193, -4.859439849853516 ], [ -72.387008666992188, -4.859670162200871 ], [ -72.389129638671818, -4.860998153686523 ], [ -72.389785766601506, -4.861909866332894 ], [ -72.389923095703125, -4.862609863281193 ], [ -72.389678955078125, -4.86368989944458 ], [ -72.387725830078125, -4.86575984954834 ], [ -72.383811950683594, -4.867238998413029 ], [ -72.381896972656136, -4.868800163268929 ], [ -72.381568908691406, -4.869759082794133 ], [ -72.381538391113281, -4.870679855346623 ], [ -72.382415771484375, -4.872398853302002 ], [ -72.384376525878793, -4.874248981475773 ], [ -72.386268615722599, -4.874189853668156 ], [ -72.387039184570256, -4.873398780822697 ], [ -72.388931274414006, -4.869128227233887 ], [ -72.389869689941406, -4.868528842926025 ], [ -72.390380859374943, -4.868449211120605 ], [ -72.390609741210938, -4.868419170379582 ], [ -72.391311645507756, -4.86857891082758 ], [ -72.392181396484318, -4.869110107421761 ], [ -72.393997192382756, -4.871530055999642 ], [ -72.395339965820256, -4.872778892517033 ], [ -72.396438598632812, -4.873249053955078 ], [ -72.399406433105469, -4.873799800872746 ], [ -72.40032958984375, -4.874228954315129 ], [ -72.401771545410156, -4.875749111175537 ], [ -72.402442932128906, -4.877550125121957 ], [ -72.402313232421875, -4.879580020904541 ], [ -72.401573181152344, -4.883459091186467 ], [ -72.401863098144531, -4.885348796844482 ], [ -72.402687072753793, -4.886579990386963 ], [ -72.404037475585938, -4.887699127197209 ], [ -72.406288146972599, -4.888539791107178 ], [ -72.40643310546875, -4.888598918914795 ], [ -72.407516479492131, -4.888460159301758 ], [ -72.408660888671818, -4.887930870056152 ], [ -72.408821105957031, -4.88785982131958 ], [ -72.410568237304631, -4.885868072509709 ], [ -72.4110107421875, -4.883989810943604 ], [ -72.4110107421875, -4.879669189453068 ], [ -72.411819458007756, -4.877119064331055 ], [ -72.412559509277344, -4.876089096069279 ], [ -72.413619995117131, -4.875359058380127 ], [ -72.414970397949162, -4.874769210815373 ], [ -72.417121887207031, -4.874379158019906 ], [ -72.419937133789006, -4.874680042266846 ], [ -72.421913146972656, -4.875807762145996 ], [ -72.423103332519531, -4.877219200134277 ], [ -72.423736572265568, -4.878440856933537 ], [ -72.423828124999943, -4.880009174346924 ], [ -72.423393249511719, -4.881209850311166 ], [ -72.422492980956974, -4.882491111755371 ], [ -72.421127319335938, -4.883730888366699 ], [ -72.418312072753849, -4.88502120971674 ], [ -72.415435791015568, -4.887290954589787 ], [ -72.415657043456918, -4.888539791107178 ], [ -72.418212890624943, -4.891869068145752 ], [ -72.418266296386719, -4.89317083358759 ], [ -72.417816162109318, -4.894248962402344 ], [ -72.415870666503906, -4.896439075469971 ], [ -72.415122985839844, -4.897809028625431 ], [ -72.41510009765625, -4.900139808654785 ], [ -72.415756225585824, -4.9009108543396 ], [ -72.417037963867188, -4.901070117950326 ], [ -72.417732238769474, -4.900889873504639 ], [ -72.419349670410099, -4.89985990524292 ], [ -72.423828124999943, -4.899719238281193 ], [ -72.426200866699219, -4.900421142578125 ], [ -72.429176330566349, -4.902050018310547 ], [ -72.429931640624943, -4.902719974517765 ], [ -72.430267333984375, -4.903470039367676 ], [ -72.430023193359318, -4.905739784240666 ], [ -72.43017578125, -4.909609794616642 ], [ -72.430641174316406, -4.910309791564885 ], [ -72.431526184082031, -4.910859107971191 ], [ -72.433731079101562, -4.910769939422551 ], [ -72.435432434082031, -4.910439968109017 ], [ -72.436859130859375, -4.909829139709416 ], [ -72.437499999999886, -4.909808158874398 ], [ -72.438682556152344, -4.908960819244385 ], [ -72.439346313476562, -4.907748222351074 ], [ -72.439750671386662, -4.906149864196721 ], [ -72.440422058105412, -4.904938220977783 ], [ -72.441627502441406, -4.899738788604736 ], [ -72.443077087402344, -4.898230075836125 ], [ -72.446907043456974, -4.898398876190186 ], [ -72.447906494140625, -4.898880004882812 ], [ -72.449836730957031, -4.900289058685303 ], [ -72.451126098632756, -4.900728225708008 ], [ -72.452941894531193, -4.901070117950326 ], [ -72.454307556152344, -4.900990009307861 ], [ -72.454902648925781, -4.900749206542912 ], [ -72.455596923828068, -4.899779796600285 ], [ -72.455673217773438, -4.898591041564885 ], [ -72.454986572265625, -4.89668083190918 ], [ -72.454277038574162, -4.895709991455021 ], [ -72.453567504882812, -4.894118785858154 ], [ -72.453788757324162, -4.892289161682072 ], [ -72.454261779785099, -4.891729831695557 ], [ -72.455299377441349, -4.891390800476017 ], [ -72.456001281738168, -4.89145898818964 ], [ -72.456123352050781, -4.891470909118596 ], [ -72.458869934082031, -4.893020153045597 ], [ -72.461692810058537, -4.893468856811467 ], [ -72.462837219238224, -4.893218994140568 ], [ -72.467628479003849, -4.890758991241398 ], [ -72.470100402831974, -4.890810012817383 ], [ -72.471382141113281, -4.891569137573129 ], [ -72.471649169921875, -4.892309188842717 ], [ -72.471450805663949, -4.893509864807129 ], [ -72.470436096191406, -4.894558906555176 ], [ -72.468528747558594, -4.895840167999268 ], [ -72.467758178710938, -4.897069931030217 ], [ -72.467765808105469, -4.899639129638672 ], [ -72.469619750976506, -4.903319835662785 ], [ -72.469596862792969, -4.904519081115723 ], [ -72.469146728515568, -4.905209064483643 ], [ -72.468536376953125, -4.905590057373047 ], [ -72.467781066894531, -4.905610084533691 ], [ -72.464965820312386, -4.902871131896916 ], [ -72.464172363281193, -4.902649879455566 ], [ -72.463546752929688, -4.902809143066406 ], [ -72.463127136230412, -4.903169155120793 ], [ -72.462852478027287, -4.90384912490839 ], [ -72.462867736816293, -4.904500007629338 ], [ -72.462966918945312, -4.908781051635742 ], [ -72.462112426757812, -4.910169124603271 ], [ -72.460983276367188, -4.910958766937256 ], [ -72.460197448730355, -4.911190032958984 ], [ -72.456336975097656, -4.911068916320744 ], [ -72.454460144042912, -4.911231040954533 ], [ -72.452941894531193, -4.912089824676457 ], [ -72.4520263671875, -4.913249969482365 ], [ -72.451782226562443, -4.913839817047119 ], [ -72.451736450195312, -4.91533088684082 ], [ -72.452133178710938, -4.915918827056885 ], [ -72.453102111816349, -4.916489124298039 ], [ -72.456207275390625, -4.916608810424805 ], [ -72.457099914550781, -4.917078971862793 ], [ -72.457626342773438, -4.918058872222844 ], [ -72.457443237304688, -4.922749042510986 ], [ -72.458023071289062, -4.923699855804443 ], [ -72.458656311035099, -4.924199104309082 ], [ -72.46002197265625, -4.924240112304688 ], [ -72.462882995605469, -4.923318862914982 ], [ -72.464813232421875, -4.922698974609318 ], [ -72.467971801757812, -4.922170162200814 ], [ -72.470901489257812, -4.922159194946232 ], [ -72.472572326660099, -4.923109054565373 ], [ -72.473876953125, -4.924419879913273 ], [ -72.475852966308594, -4.927080154418945 ], [ -72.477172851562386, -4.930469036102295 ], [ -72.477241516113224, -4.9320387840271 ], [ -72.477012634277344, -4.933309078216496 ], [ -72.476593017578068, -4.934329986572209 ], [ -72.475227355956974, -4.936298847198486 ], [ -72.474472045898381, -4.938078880310059 ], [ -72.474197387695256, -4.94047021865839 ], [ -72.474502563476449, -4.942159175872803 ], [ -72.475692749023438, -4.943581104278508 ], [ -72.479850769042969, -4.947598934173527 ], [ -72.482215881347599, -4.950419902801457 ], [ -72.483047485351506, -4.951011180877629 ], [ -72.484977722167912, -4.951848983764648 ], [ -72.485862731933594, -4.952070236206055 ], [ -72.486961364746037, -4.951889991760197 ], [ -72.487663269042855, -4.951280117034912 ], [ -72.488021850585881, -4.950559139251652 ], [ -72.487998962402344, -4.949629783630371 ], [ -72.487556457519474, -4.948610782623177 ], [ -72.485969543457031, -4.946148872375488 ], [ -72.484016418456974, -4.942601203918457 ], [ -72.484207153320256, -4.938748836517277 ], [ -72.485168457031193, -4.93566989898676 ], [ -72.486587524414006, -4.934409141540471 ], [ -72.488540649414062, -4.933169841766301 ], [ -72.489532470703068, -4.933010101318359 ], [ -72.490936279296875, -4.933420181274357 ], [ -72.492073059082031, -4.934359073638916 ], [ -72.492523193359261, -4.935050010681096 ], [ -72.493431091308594, -4.939369201660099 ], [ -72.495651245117131, -4.944318771362305 ], [ -72.495697021484375, -4.945700168609619 ], [ -72.495269775390568, -4.947199821472168 ], [ -72.495246887207031, -4.948888778686523 ], [ -72.495872497558594, -4.949720859527531 ], [ -72.497047424316406, -4.950030803680363 ], [ -72.497848510742131, -4.949839115142765 ], [ -72.501480102539006, -4.947679042816162 ], [ -72.504356384277344, -4.947249889373779 ], [ -72.505729675292969, -4.946508884429875 ], [ -72.506927490234261, -4.945260047912598 ], [ -72.507202148437443, -4.944368839263916 ], [ -72.507072448730469, -4.943549156188908 ], [ -72.504379272460938, -4.940539836883545 ], [ -72.503982543945312, -4.93980884552002 ], [ -72.504096984863281, -4.936509132385254 ], [ -72.504776000976562, -4.9353990554809 ], [ -72.505180358886662, -4.935229778289795 ], [ -72.505912780761719, -4.935338973998967 ], [ -72.507057189941406, -4.937211036682072 ], [ -72.507911682128906, -4.937788963317871 ], [ -72.508605957031193, -4.937899112701359 ], [ -72.509452819824219, -4.937479019165039 ], [ -72.510871887207031, -4.935929775238037 ], [ -72.511856079101506, -4.935499191284123 ], [ -72.513488769531193, -4.935249805450439 ], [ -72.514747619628793, -4.934678077697754 ], [ -72.516937255859261, -4.934518814086914 ], [ -72.518157958984318, -4.933880805969181 ], [ -72.519638061523438, -4.932659149169922 ], [ -72.520599365234375, -4.932378768920842 ], [ -72.521621704101562, -4.932448863983154 ], [ -72.522247314453068, -4.932980060577393 ], [ -72.522537231445256, -4.934049129486084 ], [ -72.521507263183537, -4.939539909362736 ], [ -72.5218505859375, -4.940759181976262 ], [ -72.523193359375, -4.943280220031738 ], [ -72.523582458496037, -4.945270061492863 ], [ -72.522926330566349, -4.95378923416132 ], [ -72.521842956542969, -4.957678794860783 ], [ -72.521957397460881, -4.958949089050293 ], [ -72.522537231445256, -4.959690093994084 ], [ -72.523429870605469, -4.959819793701172 ], [ -72.52423095703125, -4.958818912506104 ], [ -72.524192810058594, -4.956350803375244 ], [ -72.525100708007812, -4.953879833221322 ], [ -72.526138305664062, -4.953110218048039 ], [ -72.527610778808537, -4.953129768371525 ], [ -72.528167724609318, -4.953440189361515 ], [ -72.528793334960938, -4.95422887802124 ], [ -72.529876708984318, -4.957448959350529 ], [ -72.531433105468636, -4.959609985351506 ], [ -72.535552978515625, -4.962968826293888 ], [ -72.537620544433537, -4.963709831237793 ], [ -72.538726806640625, -4.963718891143742 ], [ -72.539993286132756, -4.96320915222168 ], [ -72.54107666015625, -4.961988925933838 ], [ -72.540817260742188, -4.961289882659912 ], [ -72.538482666015568, -4.958960056304932 ], [ -72.536666870117131, -4.956418991088754 ], [ -72.536346435546875, -4.954608917236328 ], [ -72.537147521972599, -4.953390121459961 ], [ -72.538948059081974, -4.952700138091984 ], [ -72.54168701171875, -4.95267915725708 ], [ -72.549346923828068, -4.954140186309814 ], [ -72.55206298828125, -4.954989910125676 ], [ -72.552963256835881, -4.956099987030029 ], [ -72.552970886230412, -4.957579135894775 ], [ -72.552497863769474, -4.958539009094238 ], [ -72.552131652831918, -4.960249900817814 ], [ -72.552146911621094, -4.961628913879338 ], [ -72.552658081054688, -4.963509082794133 ], [ -72.553672790527344, -4.964678764343262 ], [ -72.556427001953125, -4.966429233550969 ], [ -72.558761596679688, -4.968519210815373 ], [ -72.564765930175781, -4.972559928893929 ], [ -72.567977905273438, -4.975759983062687 ], [ -72.568717956542912, -4.97723913192749 ], [ -72.568977355956974, -4.978390216827336 ], [ -72.568862915039062, -4.979680061340332 ], [ -72.567916870117188, -4.982160091400146 ], [ -72.568557739257812, -4.983389854431152 ], [ -72.569740295410099, -4.983759880065918 ], [ -72.574226379394474, -4.983410835266113 ], [ -72.576622009277287, -4.982479095458928 ], [ -72.577438354492188, -4.982368946075439 ], [ -72.579437255859375, -4.981249809265137 ], [ -72.581001281738224, -4.980731010436955 ], [ -72.582748413085938, -4.980788230895996 ], [ -72.583847045898438, -4.981439113616943 ], [ -72.584381103515625, -4.983369827270508 ], [ -72.583778381347599, -4.987268924713135 ], [ -72.584297180175781, -4.991109848022404 ], [ -72.584136962890568, -4.991888999938908 ], [ -72.583206176757756, -4.99379920959467 ], [ -72.583076477050781, -4.995368957519474 ], [ -72.583312988281136, -4.996349811553955 ], [ -72.584220886230469, -4.997371196746826 ], [ -72.585609436035156, -4.997860908508244 ], [ -72.587356567382812, -4.997739791870117 ], [ -72.589073181152344, -4.996671199798584 ], [ -72.590629577636662, -4.994988918304443 ], [ -72.590797424316406, -4.992979049682617 ], [ -72.589576721191349, -4.989039897918644 ], [ -72.589767456054631, -4.986369132995549 ], [ -72.590263366699162, -4.985389232635498 ], [ -72.591873168945256, -4.983899116516113 ], [ -72.593246459960938, -4.983160018920898 ], [ -72.595069885253906, -4.982570171356144 ], [ -72.596549987792912, -4.982611179351807 ], [ -72.598121643066406, -4.983109951019173 ], [ -72.598976135253906, -4.983779907226562 ], [ -72.599899291992131, -4.985289096832275 ], [ -72.599769592285156, -4.987209796905518 ], [ -72.598503112792969, -4.990260124206543 ], [ -72.597938537597656, -4.992391109466553 ], [ -72.59796142578125, -4.993480205535889 ], [ -72.598648071289006, -4.994338989257812 ], [ -72.599243164062386, -4.994610786437931 ], [ -72.600158691406193, -4.994619846343994 ], [ -72.603416442871037, -4.99366903305048 ], [ -72.606056213378906, -4.992639064788762 ], [ -72.607063293456918, -4.992490768432617 ], [ -72.608451843261719, -4.992751121520939 ], [ -72.609550476074219, -4.993579864501953 ], [ -72.610420227050781, -4.994970798492432 ], [ -72.610527038574219, -4.996931076049748 ], [ -72.610122680664062, -4.997589111328125 ], [ -72.609146118164006, -4.998348236083984 ], [ -72.607803344726506, -4.998878955841064 ], [ -72.606040954589844, -4.999009132385197 ], [ -72.602302551269531, -4.998509883880615 ], [ -72.600120544433594, -4.998530864715576 ], [ -72.599319458007756, -4.999269008636475 ], [ -72.599288940429688, -4.999748229980412 ], [ -72.599555969238281, -5.000359058380127 ], [ -72.602180480956974, -5.002879142761174 ], [ -72.602592468261719, -5.009089946746769 ], [ -72.603431701660099, -5.010470867156982 ], [ -72.60479736328125, -5.01131010055542 ], [ -72.607498168945312, -5.011720180511361 ], [ -72.611152648925724, -5.013049125671387 ], [ -72.612541198730469, -5.013868808746338 ], [ -72.613960266113281, -5.015419006347656 ], [ -72.614196777343693, -5.018199920654297 ], [ -72.613739013671761, -5.019989013671875 ], [ -72.612541198730469, -5.021869182586613 ], [ -72.608856201171818, -5.026359081268197 ], [ -72.607307434082031, -5.029949188232422 ], [ -72.607215881347599, -5.035060882568359 ], [ -72.607391357421875, -5.037099838256722 ], [ -72.607666015625, -5.038159847259521 ], [ -72.609161376953011, -5.039299964904785 ], [ -72.60986328125, -5.039199829101562 ], [ -72.610603332519531, -5.038311004638672 ], [ -72.610961914062443, -5.037239074706974 ], [ -72.610916137695312, -5.032629013061523 ], [ -72.611106872558594, -5.03220891952509 ], [ -72.611686706542969, -5.031760215759221 ], [ -72.613052368164006, -5.031707763671818 ], [ -72.614410400390625, -5.032059192657471 ], [ -72.615997314453068, -5.032949924468994 ], [ -72.617828369140568, -5.034360885620117 ], [ -72.619155883789006, -5.035940170288029 ], [ -72.620292663574162, -5.038969039916992 ], [ -72.620780944824162, -5.04905891418457 ], [ -72.621292114257812, -5.049849987030029 ], [ -72.623832702636662, -5.052240848541203 ], [ -72.624397277831974, -5.052468776702881 ], [ -72.624870300292912, -5.052249908447266 ], [ -72.62542724609375, -5.051469802856388 ], [ -72.626091003417969, -5.050559043884221 ], [ -72.626121520996037, -5.048539161682129 ], [ -72.626197814941349, -5.044289112091008 ], [ -72.626213073730412, -5.043651103973389 ], [ -72.626472473144531, -5.041537761688232 ], [ -72.626953125, -5.040059089660645 ], [ -72.627670288085938, -5.039219856262207 ], [ -72.629127502441406, -5.038379192352295 ], [ -72.630043029785043, -5.038180828094426 ], [ -72.631126403808594, -5.038449764251709 ], [ -72.63189697265625, -5.039359092712402 ], [ -72.632217407226506, -5.040689945220947 ], [ -72.631988525390625, -5.041830062866211 ], [ -72.63037109375, -5.045629024505615 ], [ -72.630386352539062, -5.048191070556584 ], [ -72.630386352539062, -5.048689842224121 ], [ -72.630706787109318, -5.049318790435677 ], [ -72.632667541503906, -5.053238868713379 ], [ -72.634613037109318, -5.056610107421875 ], [ -72.636642456054688, -5.059110164642277 ], [ -72.640151977538949, -5.062430858612061 ], [ -72.642242431640568, -5.063378810882512 ], [ -72.643188476562443, -5.063439846038818 ], [ -72.643806457519531, -5.063228130340576 ], [ -72.644500732421875, -5.062310218811035 ], [ -72.644386291503906, -5.061150074005127 ], [ -72.643753051757756, -5.059420108795109 ], [ -72.641609191894531, -5.055830001831055 ], [ -72.641387939453068, -5.055220127105656 ], [ -72.641227722167969, -5.054800033569336 ], [ -72.641258239746094, -5.05400896072382 ], [ -72.641288757324162, -5.05341911315918 ], [ -72.641937255859318, -5.050460815429688 ], [ -72.642707824706974, -5.048048973083496 ], [ -72.643196105956974, -5.04753923416132 ], [ -72.644737243652344, -5.047831058502197 ], [ -72.646041870117131, -5.048358917236328 ], [ -72.650146484374943, -5.051279067993107 ], [ -72.652687072753906, -5.051469802856388 ], [ -72.653701782226562, -5.052011013031006 ], [ -72.654106140136719, -5.052600860595703 ], [ -72.654228210449219, -5.053249835967961 ], [ -72.654472351074219, -5.05810022354126 ], [ -72.655227661132812, -5.060228824615479 ], [ -72.655403137206974, -5.060698986053467 ], [ -72.655982971191293, -5.061710834503174 ], [ -72.657150268554688, -5.06282997131342 ], [ -72.658462524413949, -5.06377983093256 ], [ -72.659309387206974, -5.064060211181641 ], [ -72.660667419433594, -5.063809871673584 ], [ -72.661277770996094, -5.063361167907715 ], [ -72.661598205566349, -5.062758922576847 ], [ -72.661567687988281, -5.061999797820988 ], [ -72.661552429199219, -5.061429977416992 ], [ -72.661087036132812, -5.059340000152588 ], [ -72.660140991210938, -5.057259082794133 ], [ -72.660209655761719, -5.055419921875 ], [ -72.660858154296875, -5.055290222167969 ], [ -72.661766052246037, -5.055520057678223 ], [ -72.663192749023438, -5.056890010833683 ], [ -72.664886474609375, -5.058548927307129 ], [ -72.666267395019474, -5.058739185333252 ], [ -72.667427062988168, -5.058548927307129 ], [ -72.668930053710881, -5.05715894699091 ], [ -72.669982910156193, -5.05560922622675 ], [ -72.670486450195312, -5.054119110107365 ], [ -72.671257019042969, -5.049549102783203 ], [ -72.671920776367188, -5.048308849334717 ], [ -72.67291259765625, -5.047420024871769 ], [ -72.673858642578125, -5.047521114349365 ], [ -72.67462158203125, -5.048388957977181 ], [ -72.674392700195199, -5.051379203796387 ], [ -72.674690246582031, -5.051928997039795 ], [ -72.675346374511605, -5.052320957183838 ], [ -72.67669677734375, -5.052460193634033 ], [ -72.679069519042969, -5.051579952239933 ], [ -72.682037353515625, -5.051379203796387 ], [ -72.684059143066406, -5.051660060882512 ], [ -72.686141967773438, -5.052680969238224 ], [ -72.687995910644474, -5.055029869079533 ], [ -72.688789367675668, -5.057418823242188 ], [ -72.689399719238281, -5.058388233184814 ], [ -72.69110107421875, -5.060278892517033 ], [ -72.692527770996094, -5.060998916625977 ], [ -72.695960998535156, -5.060849189758301 ], [ -72.698509216308537, -5.059860229492188 ], [ -72.701553344726506, -5.057810783386174 ], [ -72.704231262206974, -5.055650234222355 ], [ -72.708518981933537, -5.051508903503361 ], [ -72.7100830078125, -5.050489902496338 ], [ -72.711326599121094, -5.049989223480225 ], [ -72.712959289550781, -5.050000190734863 ], [ -72.713737487792969, -5.050389766693115 ], [ -72.714706420898381, -5.051990032195988 ], [ -72.714576721191406, -5.054599761962777 ], [ -72.714820861816349, -5.055410861968937 ], [ -72.716476440429688, -5.057369232177734 ], [ -72.718376159667969, -5.058578968048096 ], [ -72.720466613769531, -5.058290004730225 ], [ -72.722557067871094, -5.057360172271729 ], [ -72.723899841308594, -5.056458950042725 ], [ -72.726997375488224, -5.053750038146916 ], [ -72.728179931640511, -5.053038120269662 ], [ -72.729721069335938, -5.052588939666748 ], [ -72.731086730957031, -5.052680969238224 ], [ -72.731582641601506, -5.053188800811768 ], [ -72.731590270996037, -5.05410099029541 ], [ -72.727142333984375, -5.058720111846924 ], [ -72.727081298828125, -5.060560226440316 ], [ -72.727386474609318, -5.062620162963867 ], [ -72.727790832519474, -5.063199043273869 ], [ -72.728546142578068, -5.063729763031006 ], [ -72.729438781738281, -5.063899040222111 ], [ -72.73036956787098, -5.063759803771916 ], [ -72.731903076171875, -5.062778949737492 ], [ -72.734207153320312, -5.060799121856633 ], [ -72.735557556152344, -5.060060024261418 ], [ -72.736236572265625, -5.059980869293156 ], [ -72.737602233886662, -5.060340881347656 ], [ -72.738487243652344, -5.060568809509221 ], [ -72.739845275878906, -5.062286853790283 ], [ -72.74019622802723, -5.063029766082764 ], [ -72.740325927734375, -5.06466007232666 ], [ -72.740158081054631, -5.065779209136963 ], [ -72.739707946777287, -5.066689968109131 ], [ -72.739547729492188, -5.067029953002873 ], [ -72.738639831542912, -5.068068981170654 ], [ -72.737136840820256, -5.069179058074837 ], [ -72.736076354980412, -5.06951904296875 ], [ -72.733757019042969, -5.069780826568604 ], [ -72.732803344726562, -5.070319175720215 ], [ -72.731918334960938, -5.071709156036377 ], [ -72.731918334960938, -5.074019908904972 ], [ -72.732429504394531, -5.075790882110596 ], [ -72.733291625976506, -5.076910018920898 ], [ -72.734237670898438, -5.077499866485482 ], [ -72.735603332519474, -5.077300071716309 ], [ -72.7384033203125, -5.075331211090031 ], [ -72.739669799804688, -5.075389862060433 ], [ -72.740219116210938, -5.075850009918213 ], [ -72.740516662597656, -5.083889007568359 ], [ -72.740669250488168, -5.084788799285832 ], [ -72.741386413574219, -5.086489200591984 ], [ -72.741355895996094, -5.088139057159424 ], [ -72.741851806640625, -5.088829994201603 ], [ -72.743148803710824, -5.089759826660099 ], [ -72.744743347167912, -5.089529991149902 ], [ -72.746841430664006, -5.088169097900277 ], [ -72.751449584960824, -5.084358215332031 ], [ -72.754127502441406, -5.081849098205566 ], [ -72.756370544433537, -5.078410148620549 ], [ -72.757789611816406, -5.077639102935734 ], [ -72.758689880371037, -5.07774019241333 ], [ -72.759132385253906, -5.078279972076359 ], [ -72.75921630859375, -5.079201221466008 ], [ -72.759101867675781, -5.080339908599854 ], [ -72.758247375488281, -5.082209110259953 ], [ -72.758346557617188, -5.083398818969727 ], [ -72.758712768554688, -5.084218978881836 ], [ -72.759918212890568, -5.084888935089111 ], [ -72.762947082519531, -5.084949016571045 ], [ -72.764030456542912, -5.085148811340332 ], [ -72.764762878417912, -5.08571004867548 ], [ -72.765457153320256, -5.086949825286808 ], [ -72.765151977539006, -5.088309764862061 ], [ -72.762870788574162, -5.090889930725098 ], [ -72.762672424316349, -5.092259883880615 ], [ -72.762931823730469, -5.093629837036076 ], [ -72.763946533203125, -5.094601154327393 ], [ -72.766647338867188, -5.095351219177246 ], [ -72.767433166503849, -5.095760822296143 ], [ -72.768325805663949, -5.096741199493351 ], [ -72.770256042480469, -5.099669933319035 ], [ -72.771087646484318, -5.100460052490178 ], [ -72.7728271484375, -5.10096883773798 ], [ -72.773971557617188, -5.100699901580811 ], [ -72.775398254394531, -5.099949836730957 ], [ -72.776466369628906, -5.099091053009033 ], [ -72.780197143554688, -5.094668865203857 ], [ -72.781455993652287, -5.093760013580209 ], [ -72.782798767089787, -5.093420028686523 ], [ -72.783988952636719, -5.093390941619816 ], [ -72.784652709960938, -5.093459129333439 ], [ -72.78521728515625, -5.093869209289551 ], [ -72.785736083984375, -5.095870018005257 ], [ -72.785606384277344, -5.097930908203125 ], [ -72.784286499023438, -5.100628852844238 ], [ -72.782089233398438, -5.102628231048584 ], [ -72.781967163085824, -5.103559970855656 ], [ -72.783119201660156, -5.104969024658203 ], [ -72.78521728515625, -5.105830192565918 ], [ -72.785957336425724, -5.106429100036564 ], [ -72.786666870117188, -5.111878871917725 ], [ -72.787338256835938, -5.11279106140131 ], [ -72.7886962890625, -5.113669872283936 ], [ -72.789833068847656, -5.113318920135441 ], [ -72.790847778320312, -5.112449169158879 ], [ -72.791236877441406, -5.111098766326904 ], [ -72.791572570800724, -5.106269836425724 ], [ -72.792228698730412, -5.105340003967228 ], [ -72.792816162109318, -5.104979991912842 ], [ -72.793952941894474, -5.105069160461369 ], [ -72.794738769531193, -5.105528831481934 ], [ -72.796310424804688, -5.108599185943604 ], [ -72.797798156738168, -5.110109806060791 ], [ -72.802627563476506, -5.112188816070557 ], [ -72.80513763427723, -5.112380027770996 ], [ -72.806442260742131, -5.111939907073918 ], [ -72.809280395507812, -5.109999179840088 ], [ -72.816879272460938, -5.102701187133732 ], [ -72.818176269531193, -5.10224008560175 ], [ -72.820007324218693, -5.102291107177734 ], [ -72.820747375488224, -5.102798938751221 ], [ -72.821617126464787, -5.103959083557129 ], [ -72.822135925292969, -5.105730056762638 ], [ -72.822189331054631, -5.107150077819824 ], [ -72.821533203124943, -5.109049797058105 ], [ -72.819297790527344, -5.112878799438477 ], [ -72.818756103515568, -5.11460018157959 ], [ -72.818580627441349, -5.11667013168335 ], [ -72.818672180175724, -5.11945915222168 ], [ -72.819252014160043, -5.120429992675781 ], [ -72.819473266601562, -5.122529029846191 ], [ -72.819221496581974, -5.124559879302922 ], [ -72.816940307617131, -5.127729892730713 ], [ -72.815719604492131, -5.131700992584172 ], [ -72.8155517578125, -5.133288860321045 ], [ -72.815795898437443, -5.135130882263127 ], [ -72.816513061523438, -5.137100219726562 ], [ -72.817451477050781, -5.138429164886418 ], [ -72.81878662109375, -5.138959884643555 ], [ -72.819229125976506, -5.138871192932129 ], [ -72.819847106933594, -5.13831901550293 ], [ -72.821395874023438, -5.135671138763371 ], [ -72.821876525878906, -5.133139133453312 ], [ -72.822357177734375, -5.132150173187199 ], [ -72.824012756347599, -5.13083887100214 ], [ -72.825149536132756, -5.130629062652588 ], [ -72.826255798339844, -5.13139104843134 ], [ -72.826812744140625, -5.132659912109375 ], [ -72.826705932617188, -5.134520053863525 ], [ -72.825347900390568, -5.137179851531982 ], [ -72.825096130371094, -5.139259815216064 ], [ -72.825447082519474, -5.141499042510986 ], [ -72.826751708984318, -5.142849922180176 ], [ -72.827667236328125, -5.143218994140625 ], [ -72.828536987304688, -5.143068790435791 ], [ -72.831459045410043, -5.139520168304443 ], [ -72.832786560058537, -5.138610839843693 ], [ -72.834068298339844, -5.138130187988224 ], [ -72.835189819335938, -5.138390064239502 ], [ -72.836219787597599, -5.138920783996525 ], [ -72.840187072753906, -5.142720222473088 ], [ -72.841331481933594, -5.142799854278508 ], [ -72.844451904296875, -5.142519950866699 ], [ -72.847785949707031, -5.143349170684814 ], [ -72.850860595703125, -5.144848823547363 ], [ -72.852043151855412, -5.144909858703556 ], [ -72.852668762207031, -5.144698143005257 ], [ -72.853179931640568, -5.144198894500676 ], [ -72.853385925292912, -5.14284086227417 ], [ -72.851371765136662, -5.138979911804199 ], [ -72.851142883300781, -5.137619018554688 ], [ -72.851280212402287, -5.136229038238525 ], [ -72.851905822753906, -5.135589122772217 ], [ -72.853858947753849, -5.13532018661499 ], [ -72.854446411132699, -5.136229038238525 ], [ -72.855178833007756, -5.136719226837101 ], [ -72.857147216796875, -5.137360095977726 ], [ -72.859657287597599, -5.137629032134896 ], [ -72.861549377441406, -5.138929843902531 ], [ -72.862342834472599, -5.139760017394963 ], [ -72.862899780273381, -5.140759944915771 ], [ -72.863288879394474, -5.14185905456543 ], [ -72.863258361816406, -5.142790794372445 ], [ -72.863479614257756, -5.143411159515324 ], [ -72.864273071289062, -5.144588947296143 ], [ -72.864929199218693, -5.145170211791992 ], [ -72.865821838378906, -5.144919872283936 ], [ -72.868820190429631, -5.142430782318115 ], [ -72.869529724121094, -5.142381191253662 ], [ -72.870162963867131, -5.142650127410889 ], [ -72.87075042724598, -5.143370151519775 ], [ -72.870872497558594, -5.144521236419678 ], [ -72.870635986328068, -5.145648956298771 ], [ -72.869239807128906, -5.148550033569279 ], [ -72.869247436523438, -5.149731159210205 ], [ -72.869689941406193, -5.150509834289551 ], [ -72.870452880859318, -5.151089191436711 ], [ -72.871559143066406, -5.151411056518498 ], [ -72.872436523437443, -5.151309967041016 ], [ -72.874313354492188, -5.150448799133244 ], [ -72.876815795898438, -5.150908946990853 ], [ -72.878356933593693, -5.152571201324406 ], [ -72.881622314453011, -5.156809806823617 ], [ -72.883201599121094, -5.158430099487305 ], [ -72.884529113769531, -5.159259796142578 ], [ -72.887359619140625, -5.160270214080811 ], [ -72.888236999511719, -5.160579204559326 ], [ -72.888946533203068, -5.161170005798283 ], [ -72.889808654785099, -5.162789821624756 ], [ -72.890068054199219, -5.165328979492188 ], [ -72.889961242675781, -5.16624116897583 ], [ -72.888603210449219, -5.170380115508976 ], [ -72.886917114257812, -5.173919200897217 ], [ -72.886070251464787, -5.174768924713135 ], [ -72.885429382324162, -5.174959182739258 ], [ -72.882896423339844, -5.172591209411621 ], [ -72.88210296630848, -5.172289848327637 ], [ -72.880790710449219, -5.172848224639836 ], [ -72.879997253417912, -5.173709869384709 ], [ -72.879928588867188, -5.175310134887695 ], [ -72.880546569824162, -5.176780223846436 ], [ -72.880516052246094, -5.179400920867863 ], [ -72.880516052246094, -5.180008888244572 ], [ -72.882110595703125, -5.183568954467717 ], [ -72.882057189941406, -5.18451976776123 ], [ -72.881446838378906, -5.185520172119084 ], [ -72.880867004394531, -5.185880184173584 ], [ -72.880470275878849, -5.185860157012939 ], [ -72.879142761230355, -5.185298919677734 ], [ -72.87652587890625, -5.181809902191162 ], [ -72.876441955566349, -5.180650234222412 ], [ -72.876602172851562, -5.179978847503662 ], [ -72.877120971679631, -5.178928852081299 ], [ -72.877716064453011, -5.177700042724553 ], [ -72.877693176269474, -5.177010059356689 ], [ -72.87744140625, -5.176620006561279 ], [ -72.876350402831974, -5.176319122314453 ], [ -72.875923156738281, -5.176418781280518 ], [ -72.875450134277344, -5.176950931549072 ], [ -72.8731689453125, -5.176959991455078 ], [ -72.872756958007699, -5.177159786224308 ], [ -72.872215270996094, -5.178239822387638 ], [ -72.872222900390625, -5.178878784179688 ], [ -72.873725891113281, -5.180859088897648 ], [ -72.874290466308594, -5.185658931732121 ], [ -72.874786376953125, -5.186160087585392 ], [ -72.876266479492131, -5.186299800872803 ], [ -72.877029418945256, -5.18674898147583 ], [ -72.878257751464787, -5.188629150390625 ], [ -72.878326416015625, -5.190701007842904 ], [ -72.878242492675781, -5.19182014465332 ], [ -72.877868652343693, -5.192150115966797 ], [ -72.875602722167912, -5.192430019378605 ], [ -72.872817993164006, -5.193910121917725 ], [ -72.871665954589844, -5.1949782371521 ], [ -72.871330261230469, -5.195718765258789 ], [ -72.871162414550781, -5.197021007537842 ], [ -72.871726989746094, -5.201070785522461 ], [ -72.87227630615223, -5.201808929443359 ], [ -72.873146057128906, -5.202088832855225 ], [ -72.873832702636719, -5.201950073242188 ], [ -72.874931335449162, -5.20110893249506 ], [ -72.876281738281136, -5.200819969177246 ], [ -72.876846313476506, -5.201169013976994 ], [ -72.87744140625, -5.201930046081543 ], [ -72.877586364746037, -5.202879905700684 ], [ -72.875602722167912, -5.204740047454777 ], [ -72.873756408691406, -5.205619812011719 ], [ -72.871437072753906, -5.205719947814941 ], [ -72.871009826660099, -5.205519199371281 ], [ -72.870208740234375, -5.205130100250187 ], [ -72.869003295898381, -5.204990863799992 ], [ -72.86837005615223, -5.20513916015625 ], [ -72.867675781249943, -5.205699920654297 ], [ -72.866752624511719, -5.207109928131104 ], [ -72.866378784179688, -5.209229946136475 ], [ -72.866691589355469, -5.210709095001164 ], [ -72.867301940917912, -5.210938930511418 ], [ -72.868339538574162, -5.210909843444824 ], [ -72.869293212890568, -5.210349082946777 ], [ -72.869667053222599, -5.210669994354191 ], [ -72.869796752929574, -5.214109897613469 ], [ -72.871070861816406, -5.215779781341496 ], [ -72.87127685546875, -5.216639041900635 ], [ -72.870819091796818, -5.217940807342472 ], [ -72.869003295898381, -5.219099044799805 ], [ -72.868568420410156, -5.219800949096623 ], [ -72.868415832519531, -5.221380233764648 ], [ -72.868667602539062, -5.223519802093449 ], [ -72.869491577148381, -5.224898815154972 ], [ -72.86962890625, -5.226049900054932 ], [ -72.867347717285156, -5.230539798736572 ], [ -72.866851806640625, -5.232638835906869 ], [ -72.867179870605469, -5.233638763427734 ], [ -72.868766784667969, -5.234728813171387 ], [ -72.869300842285099, -5.23543119430542 ], [ -72.869506835937443, -5.236760139465275 ], [ -72.869529724121094, -5.239880084991398 ], [ -72.869888305664006, -5.241160869598389 ], [ -72.870826721191349, -5.242378234863168 ], [ -72.872558593749943, -5.24393892288208 ], [ -72.874313354492188, -5.245509147644043 ], [ -72.874717712402344, -5.246321201324406 ], [ -72.874809265136719, -5.247289180755615 ], [ -72.874671936035156, -5.248188972473088 ], [ -72.874549865722599, -5.248310089111328 ], [ -72.874160766601506, -5.248738765716553 ], [ -72.873527526855469, -5.248859882354679 ], [ -72.871932983398438, -5.24855899810791 ], [ -72.871597290039006, -5.248738765716553 ], [ -72.871307373046818, -5.248909950256348 ], [ -72.871047973632812, -5.249320030212402 ], [ -72.870719909667912, -5.254119873046875 ], [ -72.870758056640625, -5.258978843688965 ], [ -72.871597290039006, -5.261299133300781 ], [ -72.870246887206974, -5.262588977813664 ], [ -72.867729187011719, -5.26642894744873 ], [ -72.867027282714787, -5.266998767852783 ], [ -72.865928649902344, -5.267270088195744 ], [ -72.864707946777287, -5.268360137939453 ], [ -72.864082336425781, -5.269289970397949 ], [ -72.863861083984318, -5.270730018615723 ], [ -72.864273071289062, -5.271439075469971 ], [ -72.865325927734375, -5.272058963775635 ], [ -72.866218566894531, -5.27223014831543 ], [ -72.868751525878793, -5.272139072418213 ], [ -72.869606018066293, -5.272909164428654 ], [ -72.869720458984375, -5.274290084838867 ], [ -72.8682861328125, -5.276070117950439 ], [ -72.868072509765568, -5.277229785919189 ], [ -72.86846923828125, -5.278268814086857 ], [ -72.870773315429688, -5.280879020690861 ], [ -72.871307373046818, -5.28187084197998 ], [ -72.8714599609375, -5.284191131591797 ], [ -72.870536804199162, -5.286269187927246 ], [ -72.870552062988224, -5.287660121917725 ], [ -72.871536254882812, -5.288690090179443 ], [ -72.872383117675781, -5.289091110229492 ], [ -72.873222351074162, -5.289029121398869 ], [ -72.876068115234318, -5.287940025329476 ], [ -72.877037048339787, -5.288190841674748 ], [ -72.877456665039062, -5.288640022277775 ], [ -72.877388000488281, -5.289559841156006 ], [ -72.876876831054688, -5.290628910064697 ], [ -72.876136779785156, -5.291187763214054 ], [ -72.874443054199162, -5.291810035705566 ], [ -72.873832702636719, -5.292809963226318 ], [ -72.873626708984375, -5.293970108032227 ], [ -72.874031066894531, -5.294769763946533 ], [ -72.874755859374886, -5.295388221740723 ], [ -72.877487182617131, -5.295549869537297 ], [ -72.878005981445312, -5.29597806930542 ], [ -72.877990722656193, -5.2989501953125 ], [ -72.877456665039062, -5.299419879913216 ], [ -72.877342224121094, -5.30010986328125 ], [ -72.877578735351562, -5.301669120788517 ], [ -72.878219604492188, -5.302029132843018 ], [ -72.880287170410043, -5.301729202270451 ], [ -72.880912780761719, -5.301878929138184 ], [ -72.881477355957031, -5.302649021148682 ], [ -72.881767272949219, -5.304931163787842 ], [ -72.883087158203125, -5.305829048156738 ], [ -72.883537292480469, -5.305718898773137 ], [ -72.885482788085938, -5.304049015045166 ], [ -72.88671875, -5.303578853607178 ], [ -72.888786315917969, -5.303819179534855 ], [ -72.889739990234375, -5.304860115051213 ], [ -72.890411376953125, -5.306879043579045 ], [ -72.890617370605469, -5.308219909667969 ], [ -72.890480041503849, -5.308618068695068 ], [ -72.889785766601562, -5.30893087387085 ], [ -72.887939453125, -5.307569980621281 ], [ -72.886749267578068, -5.307290077209473 ], [ -72.885696411132756, -5.307528972625732 ], [ -72.885353088378906, -5.308450222015381 ], [ -72.885368347167969, -5.308969020843449 ], [ -72.885696411132756, -5.309488773345947 ], [ -72.888442993164062, -5.311339855194092 ], [ -72.889091491699219, -5.31219911575306 ], [ -72.888870239257699, -5.313619136810246 ], [ -72.887435913085881, -5.315399169921818 ], [ -72.887481689453125, -5.317489147186222 ], [ -72.887916564941293, -5.318019866943359 ], [ -72.88873291015625, -5.318399906158447 ], [ -72.889312744140568, -5.318019866943359 ], [ -72.891265869140625, -5.315789222717285 ], [ -72.892196655273381, -5.31564998626709 ], [ -72.893066406249886, -5.315899848937931 ], [ -72.893508911132756, -5.316739082336426 ], [ -72.893592834472656, -5.317940235137939 ], [ -72.893196105957031, -5.318429946899357 ], [ -72.891616821289006, -5.319459915161076 ], [ -72.890663146972599, -5.320469856262207 ], [ -72.890281677246037, -5.321279048919621 ], [ -72.890373229980412, -5.322451114654427 ], [ -72.891403198242188, -5.324248790740967 ], [ -72.892379760742131, -5.325170040130558 ], [ -72.893760681152344, -5.325319766998291 ], [ -72.895233154296818, -5.323859214782658 ], [ -72.897079467773438, -5.323800086975098 ], [ -72.898170471191406, -5.324069023132267 ], [ -72.90045166015625, -5.325650215148869 ], [ -72.900566101074162, -5.325768947601318 ], [ -72.90193939208973, -5.327091217041016 ], [ -72.902297973632756, -5.327649116516056 ], [ -72.902420043945312, -5.32806921005249 ], [ -72.902946472167969, -5.329868793487549 ], [ -72.904762268066349, -5.331661224365234 ], [ -72.906547546386719, -5.334090232849064 ], [ -72.907127380371094, -5.33577919006342 ], [ -72.907112121582031, -5.337440013885441 ], [ -72.906837463378906, -5.338521003723088 ], [ -72.906089782714844, -5.339110851287842 ], [ -72.905387878417969, -5.339128971099797 ], [ -72.904617309570312, -5.338651180267334 ], [ -72.903282165527344, -5.337369918823242 ], [ -72.902778625488224, -5.336610794067383 ], [ -72.902221679687386, -5.335279941558838 ], [ -72.902061462402344, -5.334898948669434 ], [ -72.901550292968693, -5.332368850708008 ], [ -72.901077270507699, -5.331388950347844 ], [ -72.89959716796875, -5.330700874328556 ], [ -72.899452209472599, -5.330700874328556 ], [ -72.898651123046875, -5.330700874328556 ], [ -72.898040771484375, -5.330978870391789 ], [ -72.897636413574162, -5.332058906555176 ], [ -72.897621154785099, -5.33220100402832 ], [ -72.897529602050724, -5.332980155944824 ], [ -72.897476196289062, -5.333458900451603 ], [ -72.897605895996094, -5.334111213684025 ], [ -72.898826599121094, -5.335559844970703 ], [ -72.899009704589844, -5.336180210113469 ], [ -72.898635864257812, -5.339941024780273 ], [ -72.898689270019474, -5.340319156646729 ], [ -72.898773193359318, -5.340989112853947 ], [ -72.900047302246094, -5.341659069061279 ], [ -72.902137756347656, -5.341590881347656 ], [ -72.903038024902344, -5.342148780822697 ], [ -72.904479980468693, -5.34430980682373 ], [ -72.904937744140625, -5.346449851989746 ], [ -72.904876708984318, -5.347139835357609 ], [ -72.904777526855412, -5.34722900390625 ], [ -72.903999328613224, -5.347929000854492 ], [ -72.901947021484375, -5.348628997802734 ], [ -72.900382995605412, -5.348299980163517 ], [ -72.899887084960938, -5.347959041595402 ], [ -72.899826049804631, -5.3473801612854 ], [ -72.898483276367131, -5.345529079437256 ], [ -72.898376464843693, -5.343039989471379 ], [ -72.89794921875, -5.342840194702092 ], [ -72.897216796875, -5.342848777770939 ], [ -72.89642333984375, -5.343709945678711 ], [ -72.896156311035156, -5.344829082489014 ], [ -72.892990112304688, -5.347471237182617 ], [ -72.892066955566406, -5.348509788513184 ], [ -72.891502380371094, -5.349759101867619 ], [ -72.891601562499943, -5.350910186767578 ], [ -72.892631530761719, -5.351489067077637 ], [ -72.896316528320312, -5.349209785461369 ], [ -72.899459838867074, -5.348779201507568 ], [ -72.901641845703068, -5.349479198455811 ], [ -72.906387329101506, -5.352670192718506 ], [ -72.907913208007756, -5.354680061340332 ], [ -72.911407470703125, -5.361149787902832 ], [ -72.91131591796875, -5.361828804016113 ], [ -72.910362243652344, -5.362868785858154 ], [ -72.907867431640625, -5.362959861755314 ], [ -72.907302856445312, -5.363349914550781 ], [ -72.906761169433594, -5.364109039306641 ], [ -72.906776428222599, -5.365260124206486 ], [ -72.907928466796818, -5.366700172424316 ], [ -72.907913208007756, -5.368309020996094 ], [ -72.908493041992131, -5.369820117950439 ], [ -72.909027099609375, -5.370339870452881 ], [ -72.909431457519531, -5.370398998260498 ], [ -72.910659790039062, -5.369329929351807 ], [ -72.911598205566406, -5.369088172912598 ], [ -72.912307739257756, -5.369150161743107 ], [ -72.912811279296761, -5.369749069213867 ], [ -72.913375854492131, -5.371600151062012 ], [ -72.913986206054688, -5.372320175170898 ], [ -72.917381286621037, -5.372710227966252 ], [ -72.919853210449162, -5.374000072479248 ], [ -72.922019958496094, -5.375649929046631 ], [ -72.922142028808537, -5.376129150390625 ], [ -72.921882629394531, -5.376799106597844 ], [ -72.919082641601506, -5.378829956054631 ], [ -72.918296813964844, -5.379629135131779 ], [ -72.917877197265625, -5.381219863891602 ], [ -72.917930603027287, -5.38238000869751 ], [ -72.918418884277287, -5.383169174194279 ], [ -72.918998718261662, -5.383578777313176 ], [ -72.921958923339787, -5.383619785308838 ], [ -72.922706604003849, -5.384190082549992 ], [ -72.923049926757812, -5.385970115661564 ], [ -72.923149108886719, -5.388529777526799 ], [ -72.923080444335881, -5.38991117477417 ], [ -72.922576904296875, -5.392219066619873 ], [ -72.922607421874943, -5.39330005645752 ], [ -72.923110961913949, -5.394067764282227 ], [ -72.924026489257756, -5.39484977722168 ], [ -72.925727844238281, -5.395540237426758 ], [ -72.926651000976562, -5.396210193633976 ], [ -72.927536010742188, -5.397270202636719 ], [ -72.928329467773381, -5.398690223693791 ], [ -72.928756713867188, -5.400230884552002 ], [ -72.928916931152287, -5.402090072631836 ], [ -72.92877197265625, -5.402958869934082 ], [ -72.928009033203125, -5.404410839080811 ], [ -72.927841186523381, -5.40562105178833 ], [ -72.927986145019531, -5.406259059906006 ], [ -72.931686401367131, -5.409688949584904 ], [ -72.932159423828068, -5.410500049591008 ], [ -72.934112548828125, -5.413859844207764 ], [ -72.938247680664006, -5.417109966278076 ], [ -72.9393310546875, -5.417960166931152 ], [ -72.939537048339844, -5.420360088348389 ], [ -72.939308166503849, -5.421700000762939 ], [ -72.938720703124943, -5.422239780426025 ], [ -72.936607360839844, -5.423048973083439 ], [ -72.936492919921875, -5.423099040985107 ], [ -72.935859680175724, -5.423768997192383 ], [ -72.935806274414062, -5.424429893493652 ], [ -72.936630249023381, -5.424939155578613 ], [ -72.937179565429688, -5.425281047820931 ], [ -72.939231872558594, -5.425290107726994 ], [ -72.940681457519531, -5.426751136779785 ], [ -72.940658569335824, -5.428829193115234 ], [ -72.939788818359318, -5.431199073791447 ], [ -72.939788818359318, -5.432369232177734 ], [ -72.940933227539006, -5.434089183807373 ], [ -72.941192626953068, -5.435668945312443 ], [ -72.941909790039062, -5.43736886978138 ], [ -72.943122863769474, -5.439068794250488 ], [ -72.944152832031193, -5.439479827880803 ], [ -72.944816589355412, -5.439300060272103 ], [ -72.945838928222656, -5.438348770141602 ], [ -72.946731567382756, -5.438230991363525 ], [ -72.948898315429688, -5.43992900848383 ], [ -72.949256896972656, -5.440208911895752 ], [ -72.9515380859375, -5.44127082824707 ], [ -72.953071594238281, -5.442959785461312 ], [ -72.952888488769531, -5.443869113922119 ], [ -72.952201843261719, -5.444509983062687 ], [ -72.948547363281193, -5.444530010223332 ], [ -72.947837829589844, -5.444681167602482 ], [ -72.947296142578068, -5.445090770721379 ], [ -72.947135925292912, -5.445950031280518 ], [ -72.947296142578068, -5.447390079498291 ], [ -72.948165893554631, -5.449250221252385 ], [ -72.947860717773438, -5.451749801635685 ], [ -72.947822570800781, -5.452060222625676 ], [ -72.947921752929688, -5.452830791473332 ], [ -72.948020935058594, -5.453568935394287 ], [ -72.949317932128849, -5.455231189727726 ], [ -72.950729370117131, -5.456419944763127 ], [ -72.955039978027287, -5.459469795227051 ], [ -72.957733154296875, -5.462059020996094 ], [ -72.959701538085881, -5.46451997756958 ], [ -72.959411621093693, -5.46547079086298 ], [ -72.957832336425781, -5.465479850768986 ], [ -72.957229614257756, -5.465789794921818 ], [ -72.956932067871037, -5.467188835144043 ], [ -72.957412719726506, -5.467909812927246 ], [ -72.959342956542912, -5.4693408012389 ], [ -72.959976196289062, -5.470209121704102 ], [ -72.960136413574219, -5.471280097961369 ], [ -72.959953308105469, -5.474369049072266 ], [ -72.960533142089844, -5.475611209869271 ], [ -72.960823059082031, -5.477469921112061 ], [ -72.960762023925724, -5.479489803314152 ], [ -72.959716796874943, -5.480429172515869 ], [ -72.959236145019474, -5.480539798736515 ], [ -72.957283020019531, -5.477718830108643 ], [ -72.956336975097656, -5.477048873901367 ], [ -72.954978942871094, -5.476830005645752 ], [ -72.953620910644474, -5.477039813995361 ], [ -72.951957702636719, -5.477940082549992 ], [ -72.950813293457031, -5.479039192199707 ], [ -72.950607299804688, -5.47990894317627 ], [ -72.950942993164006, -5.481298923492375 ], [ -72.951797485351506, -5.482099056243896 ], [ -72.955680847167969, -5.483489990234375 ], [ -72.956779479980469, -5.484307765960693 ], [ -72.95794677734375, -5.48655986785883 ], [ -72.957931518554688, -5.49025917053217 ], [ -72.958122253417969, -5.491119861602783 ], [ -72.958892822265625, -5.491690158843994 ], [ -72.961601257324162, -5.492188930511475 ], [ -72.962387084960881, -5.49298000335682 ], [ -72.962890625, -5.494060039520264 ], [ -72.962867736816349, -5.495109081268311 ], [ -72.960662841796818, -5.496900081634521 ], [ -72.960159301757812, -5.498048782348633 ], [ -72.960578918456974, -5.499699115753174 ], [ -72.962966918945256, -5.502160072326603 ], [ -72.963371276855469, -5.502998828887883 ], [ -72.963493347167969, -5.503908157348576 ], [ -72.963417053222599, -5.505340099334717 ], [ -72.963096618652344, -5.506168842315617 ], [ -72.959808349609318, -5.510001182556152 ], [ -72.959487915039062, -5.510859966278076 ], [ -72.959480285644531, -5.515459060668888 ], [ -72.960746765136662, -5.51789999008173 ], [ -72.961135864257756, -5.519508838653508 ], [ -72.961158752441293, -5.519989967346135 ], [ -72.961196899414062, -5.520849227905273 ], [ -72.960487365722599, -5.521820068359375 ], [ -72.956840515136662, -5.521560192108154 ], [ -72.956207275390625, -5.521759033203125 ], [ -72.955497741699162, -5.522740840911865 ], [ -72.954948425292912, -5.529379844665471 ], [ -72.951988220214787, -5.535860061645451 ], [ -72.952178955078068, -5.537220001220646 ], [ -72.953300476074219, -5.53802919387806 ], [ -72.954277038574162, -5.539868831634521 ], [ -72.954505920410156, -5.542180061340332 ], [ -72.954017639160156, -5.543138980865479 ], [ -72.952606201171875, -5.543997764587346 ], [ -72.951446533203125, -5.543960094451904 ], [ -72.950599670410156, -5.543679237365723 ], [ -72.949821472167969, -5.542519092559814 ], [ -72.949546813964844, -5.539999008178711 ], [ -72.949119567871037, -5.539449214935246 ], [ -72.948471069335881, -5.539138793945256 ], [ -72.945297241210881, -5.539239883422852 ], [ -72.941177368164062, -5.539730072021428 ], [ -72.940277099609261, -5.540099143981934 ], [ -72.939987182617074, -5.540719032287598 ], [ -72.94000244140625, -5.541409015655518 ], [ -72.940399169921875, -5.542209148406982 ], [ -72.940650939941349, -5.542490005493164 ], [ -72.943008422851506, -5.545189857482853 ], [ -72.943817138671875, -5.545499801635685 ], [ -72.946823120117131, -5.545479774474984 ], [ -72.948776245117188, -5.546158790588379 ], [ -72.953620910644474, -5.550761222839299 ], [ -72.956993103027344, -5.554779052734318 ], [ -72.957443237304574, -5.55613899230957 ], [ -72.957542419433594, -5.557730197906494 ], [ -72.956939697265568, -5.558090209960938 ], [ -72.954719543457031, -5.557529926300049 ], [ -72.954170227050724, -5.557929039001465 ], [ -72.953826904296875, -5.558559894561768 ], [ -72.953536987304688, -5.559899806976318 ], [ -72.951522827148381, -5.561729907989502 ], [ -72.951599121093693, -5.562681198120117 ], [ -72.952461242675724, -5.563569068908635 ], [ -72.953826904296875, -5.563920021057129 ], [ -72.954887390136719, -5.564750194549561 ], [ -72.958602905273438, -5.568268775939885 ], [ -72.960830688476562, -5.570818901062012 ], [ -72.960922241210938, -5.57200908660883 ], [ -72.960700988769531, -5.572659015655518 ], [ -72.959861755371094, -5.573509216308594 ], [ -72.959457397460938, -5.573649883270207 ], [ -72.958099365234318, -5.573339939117375 ], [ -72.95672607421875, -5.57352876663208 ], [ -72.955360412597656, -5.574409008026066 ], [ -72.954948425292912, -5.575191020965519 ], [ -72.955062866210938, -5.575900077819824 ], [ -72.955848693847656, -5.576758861541748 ], [ -72.956466674804631, -5.576700210571289 ], [ -72.95880126953125, -5.576489925384521 ], [ -72.960227966308594, -5.577299118041992 ], [ -72.960647583007756, -5.578299045562687 ], [ -72.960372924804631, -5.579469203948975 ], [ -72.960037231445312, -5.580100059509277 ], [ -72.959388732910156, -5.580678939819279 ], [ -72.95794677734375, -5.581100940704289 ], [ -72.956459045410099, -5.580519199371338 ], [ -72.953941345214844, -5.580531120300293 ], [ -72.953369140625, -5.580930233001709 ], [ -72.953025817871037, -5.581550121307373 ], [ -72.953018188476506, -5.582258224487305 ], [ -72.953163146972656, -5.582688808441162 ], [ -72.953697204589787, -5.583119869232178 ], [ -72.955520629882756, -5.582818984985352 ], [ -72.956382751464787, -5.583189964294377 ], [ -72.957046508789006, -5.585838794708252 ], [ -72.957618713378849, -5.587090015411377 ], [ -72.958740234374943, -5.588829040527287 ], [ -72.959953308105469, -5.58990907669056 ], [ -72.963577270507812, -5.589700222015381 ], [ -72.964225769042969, -5.589930057525578 ], [ -72.964752197265568, -5.590439796447754 ], [ -72.965110778808594, -5.591300010681096 ], [ -72.965141296386662, -5.592240810394287 ], [ -72.964027404785156, -5.593369007110596 ], [ -72.963935852050781, -5.594758987426758 ], [ -72.965682983398438, -5.596869945526123 ], [ -72.967849731445312, -5.601678848266602 ], [ -72.971778869628906, -5.605869770050049 ], [ -72.972312927246037, -5.608110904693604 ], [ -72.973770141601562, -5.61044883728016 ], [ -72.973953247070312, -5.61161994934082 ], [ -72.973815917968693, -5.612549781799316 ], [ -72.973358154296818, -5.61329984664917 ], [ -72.971771240234375, -5.614999771118107 ], [ -72.971755981445312, -5.616148948669434 ], [ -72.972892761230355, -5.617289066314697 ], [ -72.974006652831974, -5.617559909820557 ], [ -72.974517822265625, -5.618000030517521 ], [ -72.975570678710938, -5.619248867034912 ], [ -72.975906372070256, -5.620099067687988 ], [ -72.975746154785099, -5.620789051055851 ], [ -72.97503662109375, -5.621689796447754 ], [ -72.974136352539062, -5.622429847717228 ], [ -72.973457336425724, -5.622629165649357 ], [ -72.972816467285156, -5.622401237487793 ], [ -72.971511840820312, -5.620489120483398 ], [ -72.970092773437443, -5.619330883026066 ], [ -72.968971252441349, -5.619569778442326 ], [ -72.968193054199162, -5.620429039001465 ], [ -72.967765808105469, -5.624528884887638 ], [ -72.966499328613168, -5.626460075378361 ], [ -72.966201782226506, -5.627799987792969 ], [ -72.966476440429631, -5.629378795623779 ], [ -72.967765808105469, -5.631309986114502 ], [ -72.967971801757812, -5.632959842681828 ], [ -72.967430114746037, -5.633910179138127 ], [ -72.964851379394474, -5.63628101348877 ], [ -72.964385986328068, -5.637788772582951 ], [ -72.964759826660099, -5.639609813690186 ], [ -72.966445922851562, -5.64089822769165 ], [ -72.966827392578125, -5.641440868377686 ], [ -72.967247009277287, -5.643479824066162 ], [ -72.966461181640625, -5.6443190574646 ], [ -72.964660644531193, -5.644649982452279 ], [ -72.963546752929574, -5.645468235015869 ], [ -72.963569641113281, -5.646849155426025 ], [ -72.963142395019474, -5.647618770599308 ], [ -72.962463378906193, -5.648849964141846 ], [ -72.962142944335938, -5.650660037994385 ], [ -72.960166931152344, -5.653768062591553 ], [ -72.959999084472599, -5.654440879821777 ], [ -72.960159301757812, -5.655599117279053 ], [ -72.961288452148438, -5.65700006484974 ], [ -72.962638854980469, -5.657259941101074 ], [ -72.963218688964844, -5.657679080963135 ], [ -72.963272094726562, -5.659140110015869 ], [ -72.963310241699219, -5.660180091857853 ], [ -72.963630676269474, -5.660820007324162 ], [ -72.964218139648438, -5.661118984222412 ], [ -72.965118408203125, -5.660950183868351 ], [ -72.966720581054688, -5.659299850463867 ], [ -72.969161987304631, -5.658780097961426 ], [ -72.971443176269474, -5.656459808349553 ], [ -72.972427368164062, -5.655959129333439 ], [ -72.973426818847599, -5.656468868255558 ], [ -72.976097106933537, -5.659389019012394 ], [ -72.977447509765568, -5.660189151763916 ], [ -72.980888366699162, -5.66071081161499 ], [ -72.984550476074219, -5.660449028015137 ], [ -72.985649108886662, -5.660719871520939 ], [ -72.986221313476506, -5.661150932312012 ], [ -72.986511230468693, -5.661749839782658 ], [ -72.986541748046875, -5.66359806060791 ], [ -72.987281799316349, -5.665059089660588 ], [ -72.987861633300668, -5.66533088684082 ], [ -72.989273071289006, -5.665268898010254 ], [ -72.990142822265568, -5.666018962860107 ], [ -72.990882873535099, -5.669439792633057 ], [ -72.991065979003906, -5.672159194946289 ], [ -72.990798950195256, -5.672770023345947 ], [ -72.989982604980469, -5.673329830169678 ], [ -72.987632751464844, -5.673210144042969 ], [ -72.987022399902344, -5.673368930816594 ], [ -72.985076904296818, -5.675940036773682 ], [ -72.983039855957031, -5.676238059997559 ], [ -72.982460021972656, -5.676949977874756 ], [ -72.982368469238281, -5.677699089050236 ], [ -72.982597351074162, -5.67805004119873 ], [ -72.986366271972656, -5.68042087554926 ], [ -72.987129211425781, -5.681180000305119 ], [ -72.987350463867131, -5.681778907775879 ], [ -72.987022399902344, -5.683939933776855 ], [ -72.985679626464844, -5.686628818511906 ], [ -72.985282897949162, -5.687940120696965 ], [ -72.984916687011719, -5.690339088439885 ], [ -72.985130310058594, -5.692069053649902 ], [ -72.985671997070199, -5.692729949951172 ], [ -72.987052917480469, -5.693379878997746 ], [ -72.988388061523438, -5.693610191345158 ], [ -72.992523193359318, -5.693748950958195 ], [ -72.993118286132812, -5.694079875946045 ], [ -72.993576049804631, -5.694661140441895 ], [ -72.993858337402287, -5.695549964904785 ], [ -72.993759155273381, -5.696249008178654 ], [ -72.991249084472656, -5.698660850524846 ], [ -72.990676879882812, -5.699809074401799 ], [ -72.991043090820312, -5.702619075775146 ], [ -72.991989135742188, -5.704198837280273 ], [ -72.992622375488224, -5.704500198364258 ], [ -72.99334716796875, -5.704479217529297 ], [ -72.993911743164062, -5.703578948974609 ], [ -72.994979858398381, -5.700960159301758 ], [ -72.995628356933594, -5.700000762939453 ], [ -72.996910095214787, -5.699029922485295 ], [ -72.998481750488281, -5.698630809783936 ], [ -72.999557495117131, -5.699038982391357 ], [ -73.000236511230412, -5.699690818786621 ], [ -73.000938415527344, -5.703048229217529 ], [ -73.003456115722656, -5.705819129943848 ], [ -73.003486633300724, -5.707430839538517 ], [ -73.003097534179631, -5.708038806915226 ], [ -73.002700805664062, -5.708088874816895 ], [ -73.001167297363281, -5.707529067993107 ], [ -72.999397277831974, -5.707880020141545 ], [ -72.999427795410156, -5.708620071411133 ], [ -73.000022888183594, -5.709599971771183 ], [ -73.000656127929688, -5.710659980773926 ], [ -73.000892639160099, -5.711440086364689 ], [ -73.000602722167969, -5.711839199066162 ], [ -72.999938964843693, -5.712160110473633 ], [ -72.997650146484318, -5.711850166320801 ], [ -72.997032165527344, -5.712139129638615 ], [ -72.996772766113281, -5.714179039001465 ], [ -72.996810913085881, -5.71697998046875 ], [ -72.996971130371094, -5.718099117278996 ], [ -72.997680664062443, -5.718749046325684 ], [ -73.003082275390625, -5.717930793762207 ], [ -73.003509521484375, -5.71851921081543 ], [ -73.004142761230412, -5.721199035644474 ], [ -73.004997253417912, -5.722270011901855 ], [ -73.005897521972656, -5.722488880157471 ], [ -73.008636474609318, -5.722199916839543 ], [ -73.009422302246094, -5.72261905670166 ], [ -73.010330200195312, -5.723711013793888 ], [ -73.010940551757699, -5.72544002532959 ], [ -73.010429382324162, -5.726601123809814 ], [ -73.009872436523381, -5.726819038391113 ], [ -73.006652832031136, -5.726229190826359 ], [ -73.005569458007756, -5.72641992568964 ], [ -73.004707336425724, -5.727268218994141 ], [ -73.004508972167969, -5.727909088134766 ], [ -73.00457763671875, -5.72887992858881 ], [ -73.0048828125, -5.72947883605957 ], [ -73.006256103515568, -5.730760097503605 ], [ -73.007339477539062, -5.73098087310791 ], [ -73.008728027343693, -5.730730056762695 ], [ -73.011512756347543, -5.729671001434269 ], [ -73.014480590820312, -5.72947883605957 ], [ -73.018371582031193, -5.729700088500977 ], [ -73.021629333496094, -5.730810165405273 ], [ -73.024368286132756, -5.730799198150578 ], [ -73.025901794433537, -5.731368064880314 ], [ -73.027359008789062, -5.732398986816406 ], [ -73.027336120605412, -5.732898235321045 ], [ -73.026969909667969, -5.733509063720646 ], [ -73.024246215820312, -5.733889102935791 ], [ -73.023628234863168, -5.734479904174805 ], [ -73.022117614746094, -5.736841201782227 ], [ -73.020095825195199, -5.737151145935059 ], [ -73.019737243652344, -5.738298892974854 ], [ -73.020126342773438, -5.739329814910889 ], [ -73.021896362304631, -5.74088811874384 ], [ -73.024147033691406, -5.742019176483154 ], [ -73.026336669921875, -5.745130062103271 ], [ -73.027259826660156, -5.746009826660099 ], [ -73.028091430664006, -5.746140003204346 ], [ -73.030448913574219, -5.74573802947998 ], [ -73.031272888183594, -5.747130870819035 ], [ -73.032768249511662, -5.748538970947266 ], [ -73.034576416015568, -5.74993896484375 ], [ -73.036659240722599, -5.750938892364502 ], [ -73.038223266601562, -5.751278877258244 ], [ -73.042327880859375, -5.751521110534554 ], [ -73.043037414550781, -5.75232982635498 ], [ -73.042976379394474, -5.754199028015137 ], [ -73.043281555175781, -5.755030155181828 ], [ -73.04384613037098, -5.755458831787109 ], [ -73.046272277832031, -5.756178855895939 ], [ -73.047256469726506, -5.756749153137207 ], [ -73.047676086425781, -5.758110046386662 ], [ -73.047676086425781, -5.758789062499943 ], [ -73.045646667480412, -5.761819839477539 ], [ -73.045562744140511, -5.763689041137638 ], [ -73.046279907226562, -5.765079021453857 ], [ -73.046989440917855, -5.76568078994751 ], [ -73.048255920410156, -5.76626014709467 ], [ -73.048927307128906, -5.766870975494385 ], [ -73.049140930175781, -5.767519950866642 ], [ -73.049118041992188, -5.768919944763184 ], [ -73.048660278320312, -5.770229816436711 ], [ -73.047798156738281, -5.771318912506047 ], [ -73.047218322753906, -5.771658897399902 ], [ -73.045837402343693, -5.771830081939697 ], [ -73.044799804687386, -5.772390842437687 ], [ -73.044456481933594, -5.772940158843937 ], [ -73.044403076171818, -5.773909091949406 ], [ -73.044715881347656, -5.774711132049561 ], [ -73.045677185058594, -5.775328159332219 ], [ -73.049072265624943, -5.774750232696533 ], [ -73.05133056640625, -5.775888919830265 ], [ -73.051681518554688, -5.775788784027043 ], [ -73.052467346191406, -5.774808883666992 ], [ -73.053726196289006, -5.774179935455265 ], [ -73.054588317871037, -5.774418830871582 ], [ -73.055076599121037, -5.774950027465763 ], [ -73.055366516113224, -5.77642917633051 ], [ -73.055175781249943, -5.777269840240479 ], [ -73.054496765136662, -5.777560234069824 ], [ -73.05206298828125, -5.777719020843506 ], [ -73.051666259765511, -5.77829980850214 ], [ -73.051651000976506, -5.779430866241455 ], [ -73.050460815429688, -5.780550003051701 ], [ -73.0501708984375, -5.781160831451359 ], [ -73.050399780273381, -5.781798839569092 ], [ -73.0528564453125, -5.784231185913086 ], [ -73.0531005859375, -5.786289215087891 ], [ -73.053398132324219, -5.786909103393555 ], [ -73.054016113281193, -5.78714990615839 ], [ -73.055412292480469, -5.787099838256836 ], [ -73.056037902831974, -5.78774976730341 ], [ -73.05605316162098, -5.788448810577336 ], [ -73.054008483886719, -5.792038917541504 ], [ -73.053947448730412, -5.793440818786621 ], [ -73.054786682128849, -5.794768810272217 ], [ -73.056076049804688, -5.795738220214844 ], [ -73.057037353515625, -5.795899868011418 ], [ -73.057937622070256, -5.795791149139404 ], [ -73.060401916503849, -5.792799949645939 ], [ -73.061515808105469, -5.79249906539917 ], [ -73.06268310546875, -5.792579174041748 ], [ -73.063285827636662, -5.793029785156136 ], [ -73.063468933105412, -5.793428897857666 ], [ -73.062629699706918, -5.794810771942082 ], [ -73.062545776367188, -5.796229839324894 ], [ -73.065811157226562, -5.797190189361459 ], [ -73.069206237792912, -5.800609111785889 ], [ -73.069686889648324, -5.800650119781494 ], [ -73.070877075195312, -5.799549102783203 ], [ -73.070899963378849, -5.797491073608398 ], [ -73.071098327636662, -5.79709005355835 ], [ -73.071861267089787, -5.796528816223145 ], [ -73.072349548339787, -5.796470165252686 ], [ -73.073448181152344, -5.797319889068604 ], [ -73.073760986328068, -5.79793119430542 ], [ -73.073776245117131, -5.799280166625977 ], [ -73.073501586913949, -5.802288055419922 ], [ -73.07427978515625, -5.803141117095947 ], [ -73.075431823730469, -5.803238868713322 ], [ -73.077262878417969, -5.800498962402344 ], [ -73.077888488769418, -5.799950122833252 ], [ -73.078781127929688, -5.799870014190674 ], [ -73.079757690429688, -5.800150871276799 ], [ -73.080741882324162, -5.800728797912598 ], [ -73.081970214843693, -5.802409172058105 ], [ -73.082939147949162, -5.805729866027775 ], [ -73.085952758789062, -5.808539867401066 ], [ -73.086135864257812, -5.809950828552189 ], [ -73.0850830078125, -5.811429977416992 ], [ -73.084556579589787, -5.81187915802002 ], [ -73.083892822265568, -5.812079906463566 ], [ -73.081367492675781, -5.811840057373047 ], [ -73.078697204589844, -5.810081005096379 ], [ -73.07781982421875, -5.810081005096379 ], [ -73.077476501464787, -5.809797763824463 ], [ -73.077262878417969, -5.81017017364502 ], [ -73.077529907226562, -5.810649871826115 ], [ -73.077247619628906, -5.812930107116642 ], [ -73.077957153320256, -5.814148902893066 ], [ -73.079048156738281, -5.814990043640137 ], [ -73.080368041992074, -5.815299987792969 ], [ -73.083152770996094, -5.815098762512207 ], [ -73.086219787597656, -5.814109802246094 ], [ -73.088958740234375, -5.814229011535645 ], [ -73.091606140136662, -5.815010070800781 ], [ -73.093490600585938, -5.815869808197021 ], [ -73.094963073730355, -5.816949844360352 ], [ -73.096771240234261, -5.819048881530762 ], [ -73.096679687499886, -5.82020902633667 ], [ -73.096359252929631, -5.820569038391113 ], [ -73.095718383789006, -5.820769786834603 ], [ -73.094818115234375, -5.820610046386719 ], [ -73.092201232910156, -5.819048881530762 ], [ -73.0911865234375, -5.818658828735352 ], [ -73.090248107910156, -5.818849086761475 ], [ -73.089492797851506, -5.819349765777588 ], [ -73.089447021484375, -5.819869995117188 ], [ -73.089698791503849, -5.820250034332219 ], [ -73.092109680175781, -5.82165002822876 ], [ -73.092720031738281, -5.822379112243539 ], [ -73.092536926269531, -5.823299884796143 ], [ -73.090705871582031, -5.82623100280756 ], [ -73.090736389160099, -5.827229022979736 ], [ -73.091133117675724, -5.82797002792347 ], [ -73.092117309570312, -5.827898979186955 ], [ -73.093589782714787, -5.826148986816406 ], [ -73.095001220703125, -5.825339794158879 ], [ -73.096107482910043, -5.825310230255127 ], [ -73.097976684570256, -5.825588226318359 ], [ -73.099761962890625, -5.825859069824219 ], [ -73.100166320800781, -5.825749874114933 ], [ -73.101066589355355, -5.824978828430119 ], [ -73.1015625, -5.824879169464054 ], [ -73.102096557617131, -5.82521915435791 ], [ -73.103927612304574, -5.827889919281006 ], [ -73.105087280273438, -5.827929019927979 ], [ -73.106666564941349, -5.827010154724121 ], [ -73.108299255371037, -5.826910018920842 ], [ -73.111923217773381, -5.829419136047363 ], [ -73.114410400390568, -5.831768989562931 ], [ -73.11480712890625, -5.832548141479435 ], [ -73.114852905273438, -5.834009170532227 ], [ -73.114646911621094, -5.83490085601801 ], [ -73.113647460937443, -5.836740016937199 ], [ -73.113517761230469, -5.838609218597412 ], [ -73.113868713378906, -5.839410781860295 ], [ -73.115615844726562, -5.841268062591553 ], [ -73.116157531738281, -5.843039035797062 ], [ -73.116302490234318, -5.844668865203857 ], [ -73.115768432617188, -5.847579002380371 ], [ -73.113983154296875, -5.853149890899658 ], [ -73.113616943359318, -5.857778072357178 ], [ -73.113990783691406, -5.859029769897461 ], [ -73.116302490234318, -5.861370086669922 ], [ -73.117919921874943, -5.862249851226807 ], [ -73.119041442871094, -5.862299919128418 ], [ -73.119636535644474, -5.861880779266357 ], [ -73.119827270507756, -5.861249923705998 ], [ -73.11968994140625, -5.860540866851807 ], [ -73.118858337402344, -5.859448909759521 ], [ -73.118797302246037, -5.858698844909611 ], [ -73.119056701660099, -5.857799053192139 ], [ -73.120246887207031, -5.85732889175415 ], [ -73.121208190917969, -5.857200145721322 ], [ -73.122856140136719, -5.857200145721322 ], [ -73.123977661132812, -5.857539176940861 ], [ -73.124687194824162, -5.858078956603947 ], [ -73.12664794921875, -5.860358238220215 ], [ -73.128639221191406, -5.860918998718262 ], [ -73.129447937011662, -5.861730098724252 ], [ -73.129379272460881, -5.862389087677002 ], [ -73.127548217773381, -5.863850116729736 ], [ -73.127311706542969, -5.86536979675293 ], [ -73.127822875976562, -5.867679119110051 ], [ -73.128433227538949, -5.868399143218937 ], [ -73.129646301269474, -5.869081020355225 ], [ -73.130332946777287, -5.868929862976074 ], [ -73.131813049316406, -5.867509841918945 ], [ -73.133232116699219, -5.865680217742863 ], [ -73.1337890625, -5.864140033721924 ], [ -73.134338378906193, -5.863449096679688 ], [ -73.136917114257756, -5.861939907073975 ], [ -73.137771606445256, -5.862238883972111 ], [ -73.138381958007812, -5.863540172576904 ], [ -73.137809753417969, -5.864439964294434 ], [ -73.13543701171875, -5.86699104309082 ], [ -73.135513305664062, -5.868151187896729 ], [ -73.136016845703125, -5.86863899230957 ], [ -73.138801574706974, -5.868659019470215 ], [ -73.140586853027344, -5.868349075317383 ], [ -73.141136169433594, -5.8680100440979 ], [ -73.142379760742188, -5.866590023040715 ], [ -73.143638610839844, -5.865920066833496 ], [ -73.144477844238281, -5.865768909454346 ], [ -73.144912719726506, -5.866350173950195 ], [ -73.145187377929631, -5.868879795074406 ], [ -73.145919799804688, -5.869571208953801 ], [ -73.146827697753849, -5.869810104370117 ], [ -73.147422790527344, -5.869310855865479 ], [ -73.148681640625, -5.867199897766113 ], [ -73.149276733398438, -5.866549015045166 ], [ -73.150199890136719, -5.866418838500977 ], [ -73.150909423828068, -5.866599082946721 ], [ -73.152648925781193, -5.867741107940674 ], [ -73.15303802490223, -5.868268966674805 ], [ -73.153221130371037, -5.869190216064453 ], [ -73.155380249023438, -5.871269226074219 ], [ -73.157150268554688, -5.876490116119385 ], [ -73.158210754394531, -5.877949237823486 ], [ -73.160316467285156, -5.880009174346867 ], [ -73.161262512207031, -5.881528854370117 ], [ -73.161827087402344, -5.883719921112061 ], [ -73.161796569824162, -5.884499073028451 ], [ -73.160820007324219, -5.884749889373722 ], [ -73.160316467285156, -5.884368896484318 ], [ -73.159530639648438, -5.882898807525578 ], [ -73.159828186035156, -5.881540775299072 ], [ -73.159683227539006, -5.880709171295109 ], [ -73.158576965332031, -5.879629135131836 ], [ -73.157470703125, -5.879468917846623 ], [ -73.156723022460881, -5.879989147186222 ], [ -73.156440734863224, -5.882278919219914 ], [ -73.155006408691349, -5.884620189666748 ], [ -73.1549072265625, -5.886010169982853 ], [ -73.156066894531193, -5.887410163879395 ], [ -73.158493041992188, -5.889198780059814 ], [ -73.1666259765625, -5.893439769744759 ], [ -73.16748046875, -5.894299030303898 ], [ -73.167892456054631, -5.895070075988713 ], [ -73.167366027832031, -5.895870208740234 ], [ -73.165802001953068, -5.896129131317139 ], [ -73.165199279785156, -5.896469116210881 ], [ -73.164855957031193, -5.897850036621094 ], [ -73.165298461914062, -5.898829936981201 ], [ -73.167922973632812, -5.901109218597355 ], [ -73.168212890625, -5.901789188384953 ], [ -73.168197631835881, -5.902488231658879 ], [ -73.167640686035156, -5.90316104888916 ], [ -73.166786193847656, -5.903659820556641 ], [ -73.163436889648324, -5.904329776763916 ], [ -73.162712097167969, -5.905230045318547 ], [ -73.162773132324219, -5.905700206756592 ], [ -73.163612365722599, -5.906599998474121 ], [ -73.164207458496094, -5.906829833984375 ], [ -73.166915893554688, -5.905638217926025 ], [ -73.167617797851506, -5.905679225921574 ], [ -73.16815185546875, -5.906138896942139 ], [ -73.168266296386662, -5.907979011535645 ], [ -73.167091369628906, -5.910199165344238 ], [ -73.166847229003849, -5.911399841308594 ], [ -73.166938781738224, -5.912330150604248 ], [ -73.167648315429688, -5.91309118270874 ], [ -73.170127868652344, -5.914478778839111 ], [ -73.170387268066349, -5.9150390625 ], [ -73.170547485351562, -5.916928768157902 ], [ -73.172821044921875, -5.919198989868164 ], [ -73.172981262207031, -5.919888973236027 ], [ -73.172828674316406, -5.920588970184269 ], [ -73.171195983886719, -5.922218799591064 ], [ -73.170982360839844, -5.923098087310791 ], [ -73.171249389648381, -5.923738956451359 ], [ -73.172592163085824, -5.92531776428217 ], [ -73.174667358398381, -5.929228782653809 ], [ -73.175453186035043, -5.929519176483154 ], [ -73.176261901855469, -5.928998947143555 ], [ -73.176216125488168, -5.92507886886591 ], [ -73.176521301269531, -5.924229145050049 ], [ -73.176940917968693, -5.924039840698242 ], [ -73.1788330078125, -5.924068927764836 ], [ -73.180702209472656, -5.925388813018742 ], [ -73.180839538574219, -5.925828933715707 ], [ -73.180572509765568, -5.930661201476994 ], [ -73.181106567382812, -5.931410789489746 ], [ -73.181159973144474, -5.93208122253418 ], [ -73.180892944335938, -5.93851900100708 ], [ -73.181297302246094, -5.938720226287785 ], [ -73.182998657226562, -5.938330173492375 ], [ -73.183532714843693, -5.938500881194955 ], [ -73.184272766113281, -5.940959930419922 ], [ -73.186653137207031, -5.942790031433105 ], [ -73.18701171875, -5.943329811096135 ], [ -73.18682861328125, -5.944009780883732 ], [ -73.185478210449219, -5.945600032806396 ], [ -73.185691833496094, -5.949009895324707 ], [ -73.184745788574219, -5.949709892272949 ], [ -73.182281494140568, -5.950259208679142 ], [ -73.181411743164062, -5.951310157775879 ], [ -73.18170166015625, -5.951920032501164 ], [ -73.185089111328125, -5.955639839172306 ], [ -73.185600280761719, -5.957440853118896 ], [ -73.185516357421875, -5.958798885345402 ], [ -73.184791564941349, -5.959699153900146 ], [ -73.183769226074219, -5.960279941558838 ], [ -73.180549621582031, -5.960250854492188 ], [ -73.179771423339844, -5.960700035095215 ], [ -73.17938232421875, -5.961558818817139 ], [ -73.179481506347656, -5.962261199951172 ], [ -73.182022094726506, -5.964219093322697 ], [ -73.182373046875, -5.964849948883057 ], [ -73.182350158691406, -5.965528964996338 ], [ -73.181503295898438, -5.966320037841797 ], [ -73.179702758789062, -5.966031074523869 ], [ -73.177886962890625, -5.966420173644963 ], [ -73.177558898925781, -5.966760158538818 ], [ -73.17730712890625, -5.968159198760986 ], [ -73.177436828613224, -5.969309806823674 ], [ -73.177787780761719, -5.969860076904297 ], [ -73.180892944335938, -5.972770214080754 ], [ -73.181800842285156, -5.974019050598145 ], [ -73.18206787109375, -5.975290775299072 ], [ -73.181800842285156, -5.978390216827393 ], [ -73.181922912597599, -5.979499816894531 ], [ -73.182670593261662, -5.980100154876709 ], [ -73.184722900390625, -5.98038911819458 ], [ -73.185241699218693, -5.98085880279541 ], [ -73.185310363769531, -5.985448837280273 ], [ -73.185722351074162, -5.986789226531926 ], [ -73.186286926269474, -5.98776912689209 ], [ -73.187591552734375, -5.988728046417179 ], [ -73.188446044921875, -5.988430023193303 ], [ -73.189048767089844, -5.984569072723389 ], [ -73.189521789550781, -5.984048843383789 ], [ -73.190391540527287, -5.983789920806828 ], [ -73.191658020019474, -5.986230850219727 ], [ -73.192672729492188, -5.987178802490178 ], [ -73.193031311035156, -5.988058090209961 ], [ -73.192886352539006, -5.98868989944458 ], [ -73.192352294921875, -5.989200115203857 ], [ -73.190345764160156, -5.989019870758057 ], [ -73.189727783203068, -5.989429950714111 ], [ -73.189567565917855, -5.990591049194336 ], [ -73.190452575683594, -5.991889953613281 ], [ -73.190437316894531, -5.993041038513184 ], [ -73.186431884765625, -5.997560024261475 ], [ -73.185707092285156, -5.99901008605957 ], [ -73.185478210449219, -6.000278949737549 ], [ -73.18585205078125, -6.001008033752441 ], [ -73.186515808105355, -6.001270771026611 ], [ -73.191459655761662, -6.000400066375732 ], [ -73.191848754882756, -6.001008033752441 ], [ -73.191879272460938, -6.003310203552246 ], [ -73.192390441894474, -6.004148960113525 ], [ -73.192947387695312, -6.004419803619328 ], [ -73.194107055664006, -6.004109859466496 ], [ -73.196372985839844, -6.001179218292236 ], [ -73.196891784667912, -6.00078105926508 ], [ -73.197616577148438, -6.000638961791992 ], [ -73.198326110839787, -6.000807762145939 ], [ -73.198806762695256, -6.001238822937012 ], [ -73.201187133789006, -6.004428863525334 ], [ -73.202178955078125, -6.005300045013428 ], [ -73.203369140624943, -6.005140781402588 ], [ -73.205017089843636, -6.00386905670166 ], [ -73.205856323242131, -6.003479003906193 ], [ -73.207206726074105, -6.003460884094238 ], [ -73.208183288574219, -6.004490852355957 ], [ -73.208160400390511, -6.007280826568547 ], [ -73.208427429199162, -6.008110046386719 ], [ -73.209236145019531, -6.00862979888916 ], [ -73.211479187011662, -6.00917911529541 ], [ -73.212471008300781, -6.009718894958496 ], [ -73.214691162109375, -6.011448860168457 ], [ -73.215950012206974, -6.013029098510742 ], [ -73.215972900390568, -6.01465988159174 ], [ -73.215187072753849, -6.01555776596058 ], [ -73.214332580566349, -6.015839099884033 ], [ -73.212020874023438, -6.016018867492619 ], [ -73.210632324218693, -6.01669979095459 ], [ -73.210800170898381, -6.017309188842773 ], [ -73.211563110351506, -6.018169879913273 ], [ -73.213981628417855, -6.019938945770264 ], [ -73.215560913085938, -6.020370006561222 ], [ -73.216407775878906, -6.019838809966984 ], [ -73.218002319335938, -6.01766920089716 ], [ -73.218658447265625, -6.01708984375 ], [ -73.219306945800724, -6.017039775848389 ], [ -73.220466613769418, -6.017458915710449 ], [ -73.221237182617188, -6.018319129943848 ], [ -73.221466064453125, -6.019449234008732 ], [ -73.220306396484375, -6.020880222320557 ], [ -73.218070983886662, -6.022019863128605 ], [ -73.218017578125, -6.022730827331486 ], [ -73.21868896484375, -6.023700237274113 ], [ -73.219947814941406, -6.024138927459717 ], [ -73.225036621093693, -6.024378776550293 ], [ -73.226547241210881, -6.024750232696476 ], [ -73.227272033691406, -6.025689125061035 ], [ -73.227378845214844, -6.026389122009277 ], [ -73.227149963378906, -6.02701997756958 ], [ -73.226448059081974, -6.02764892578125 ], [ -73.226242065429688, -6.028839111328068 ], [ -73.226348876953068, -6.029530048370304 ], [ -73.227546691894531, -6.030869960784912 ], [ -73.22933197021473, -6.031989097595158 ], [ -73.229766845703125, -6.03203010559082 ], [ -73.230445861816349, -6.031729221343994 ], [ -73.231857299804688, -6.030190944671631 ], [ -73.232650756835881, -6.029829978942871 ], [ -73.234275817871037, -6.030179023742676 ], [ -73.235610961914006, -6.031070232391357 ], [ -73.235809326171818, -6.031690120697021 ], [ -73.235679626464844, -6.032679080963135 ], [ -73.234573364257756, -6.034140110015869 ], [ -73.234367370605412, -6.035299777984562 ], [ -73.234809875488281, -6.036070823669377 ], [ -73.236557006835881, -6.037621021270752 ], [ -73.237022399902287, -6.038389205932617 ], [ -73.237159729003906, -6.039811134338379 ], [ -73.236709594726562, -6.040639877319279 ], [ -73.23610687255848, -6.040859222412053 ], [ -73.234848022460881, -6.040300846099854 ], [ -73.232170104980412, -6.038060188293457 ], [ -73.230659484863224, -6.037100791931152 ], [ -73.229759216308594, -6.036880016326904 ], [ -73.228363037109318, -6.036889076232853 ], [ -73.227935791015625, -6.037038803100586 ], [ -73.227668762207031, -6.037460803985539 ], [ -73.227691650390568, -6.039518833160287 ], [ -73.228851318359318, -6.040949821472111 ], [ -73.22955322265625, -6.043159008026066 ], [ -73.2301025390625, -6.043488979339543 ], [ -73.232246398925781, -6.042630195617562 ], [ -73.23297119140625, -6.042729854583683 ], [ -73.233741760253906, -6.04417085647583 ], [ -73.234046936035156, -6.045539855956974 ], [ -73.233779907226506, -6.046350002288762 ], [ -73.232826232910099, -6.047150135040283 ], [ -73.231971740722599, -6.047278881072998 ], [ -73.22918701171875, -6.046969890594426 ], [ -73.228652954101506, -6.047419071197453 ], [ -73.228446960449162, -6.049038887023926 ], [ -73.228637695312443, -6.05016899108881 ], [ -73.231491088867131, -6.054348945617619 ], [ -73.23152923583973, -6.055270195007324 ], [ -73.232887268066406, -6.057398796081543 ], [ -73.233100891113281, -6.058080196380558 ], [ -73.232666015624943, -6.05883884429926 ], [ -73.229019165039006, -6.062670230865422 ], [ -73.227966308593693, -6.065968036651554 ], [ -73.227935791015625, -6.068500995635986 ], [ -73.227127075195256, -6.069889068603516 ], [ -73.226982116699219, -6.071060180664062 ], [ -73.22735595703125, -6.071868896484318 ], [ -73.2281494140625, -6.072819232940617 ], [ -73.228736877441349, -6.073139190673828 ], [ -73.229591369628849, -6.073270797729492 ], [ -73.231437683105469, -6.073208808898869 ], [ -73.233757019042969, -6.072819232940617 ], [ -73.23696136474598, -6.07158899307251 ], [ -73.237892150878849, -6.071630001068058 ], [ -73.23848724365223, -6.072019100189209 ], [ -73.238647460937443, -6.073878765106201 ], [ -73.238372802734318, -6.075000762939396 ], [ -73.236579895019418, -6.07734823226923 ], [ -73.231346130371094, -6.083219051361084 ], [ -73.230842590331974, -6.083960056304818 ], [ -73.230751037597599, -6.084979057312012 ], [ -73.230979919433594, -6.085568904876709 ], [ -73.231880187988224, -6.085861206054688 ], [ -73.232780456542969, -6.08564901351923 ], [ -73.235191345214844, -6.084279060363713 ], [ -73.236198425292855, -6.084859848022461 ], [ -73.236442565917969, -6.085690021514836 ], [ -73.236396789550781, -6.088018894195557 ], [ -73.237312316894474, -6.090199947357121 ], [ -73.23696136474598, -6.09089994430542 ], [ -73.235015869140625, -6.092679977416992 ], [ -73.234848022460881, -6.093358993530217 ], [ -73.234992980957031, -6.094308853149357 ], [ -73.235458374023438, -6.094799041748047 ], [ -73.236152648925781, -6.094979763030949 ], [ -73.237236022949162, -6.094150066375732 ], [ -73.238426208496094, -6.094049930572453 ], [ -73.238739013671818, -6.096299171447697 ], [ -73.239166259765625, -6.097169876098576 ], [ -73.239906311035099, -6.097600936889648 ], [ -73.242675781249943, -6.097579956054688 ], [ -73.243148803710881, -6.098359107971191 ], [ -73.243392944335938, -6.100389957427979 ], [ -73.242561340331974, -6.102039813995361 ], [ -73.24273681640625, -6.103468894958496 ], [ -73.243270874023438, -6.103699207305908 ], [ -73.244247436523438, -6.103661060333252 ], [ -73.244949340820256, -6.103509902954102 ], [ -73.245925903320199, -6.102950096130257 ], [ -73.246658325195256, -6.103099822998047 ], [ -73.247001647949219, -6.103629112243652 ], [ -73.246879577636605, -6.104370117187443 ], [ -73.244560241699162, -6.105889797210693 ], [ -73.244132995605469, -6.106680870056152 ], [ -73.244346618652344, -6.10732984542841 ], [ -73.246353149414062, -6.107879161834717 ], [ -73.2471923828125, -6.109270095825195 ], [ -73.246940612792912, -6.110389232635441 ], [ -73.245185852050781, -6.112209796905461 ], [ -73.245101928710938, -6.113339900970459 ], [ -73.245651245117188, -6.115371227264404 ], [ -73.247390747070312, -6.117320060729924 ], [ -73.247810363769474, -6.118079185485783 ], [ -73.247886657714844, -6.119400024414062 ], [ -73.247322082519474, -6.124029159545898 ], [ -73.248306274414006, -6.125339984893799 ], [ -73.248527526855469, -6.125979900360107 ], [ -73.248207092285099, -6.127108097076416 ], [ -73.245948791503906, -6.127408981323185 ], [ -73.244941711425724, -6.128099918365422 ], [ -73.244499206542855, -6.128879070281926 ], [ -73.2451171875, -6.133449077606144 ], [ -73.244766235351506, -6.134260177612305 ], [ -73.243476867675781, -6.13594913482666 ], [ -73.243316650390568, -6.136849880218449 ], [ -73.243431091308537, -6.137539863586426 ], [ -73.244026184082031, -6.138508796691895 ], [ -73.244018554687386, -6.141510009765625 ], [ -73.245452880859261, -6.142659187316838 ], [ -73.245590209960938, -6.143589019775334 ], [ -73.243759155273438, -6.145619869232121 ], [ -73.242637634277344, -6.148499965667611 ], [ -73.242050170898438, -6.149380207061768 ], [ -73.239761352539062, -6.149661064147892 ], [ -73.238677978515511, -6.150528907775879 ], [ -73.238380432128849, -6.151140213012695 ], [ -73.238418579101562, -6.153680801391602 ], [ -73.2362060546875, -6.155348777770996 ], [ -73.235931396484375, -6.156449794769287 ], [ -73.235359191894531, -6.157178878784123 ], [ -73.234039306640625, -6.158059120178223 ], [ -73.231956481933594, -6.157758235931396 ], [ -73.231117248535099, -6.15802001953125 ], [ -73.230682373046875, -6.158839225769043 ], [ -73.230690002441406, -6.161149978637695 ], [ -73.229209899902287, -6.163478851318359 ], [ -73.227867126464787, -6.16473913192749 ], [ -73.225875854492131, -6.16589879989624 ], [ -73.222518920898438, -6.16935920715332 ], [ -73.221153259277344, -6.16959810256958 ], [ -73.218246459960881, -6.172579765319824 ], [ -73.217216491699162, -6.174099922180176 ], [ -73.215476989746037, -6.178329944610596 ], [ -73.213752746581974, -6.183828830718994 ], [ -73.213623046875, -6.185989856719971 ], [ -73.214157104492131, -6.186849117279053 ], [ -73.214958190917969, -6.187368869781494 ], [ -73.216339111328068, -6.18782901763916 ], [ -73.221710205078125, -6.187678813934326 ], [ -73.222892761230469, -6.187948226928711 ], [ -73.222969055175781, -6.189218997955265 ], [ -73.222747802734318, -6.189609050750732 ], [ -73.222167968749943, -6.19005823135376 ], [ -73.220382690429688, -6.190398216247502 ], [ -73.2198486328125, -6.190869808197021 ], [ -73.220062255859318, -6.1940598487854 ], [ -73.219680786132756, -6.194369792938232 ], [ -73.218772888183594, -6.194458961486816 ], [ -73.216957092285156, -6.192708969116211 ], [ -73.215881347656193, -6.192300796508789 ], [ -73.214736938476506, -6.192169189453125 ], [ -73.214096069335938, -6.192470073699951 ], [ -73.210105895996094, -6.196259975433293 ], [ -73.210006713867188, -6.196737766265869 ], [ -73.210212707519531, -6.197159767150879 ], [ -73.212150573730412, -6.198790073394775 ], [ -73.212318420410156, -6.199870109558105 ], [ -73.212753295898438, -6.200239181518555 ], [ -73.214096069335938, -6.20048999786377 ], [ -73.214675903320312, -6.200900077819824 ], [ -73.214752197265625, -6.203889846801701 ], [ -73.217765808105412, -6.207308769226074 ], [ -73.217742919921875, -6.208728790283146 ], [ -73.216087341308594, -6.211228847503605 ], [ -73.215843200683594, -6.212419033050537 ], [ -73.216293334960938, -6.213109016418457 ], [ -73.217887878417855, -6.213719844818058 ], [ -73.218376159667969, -6.214109897613469 ], [ -73.218490600585938, -6.214829921722412 ], [ -73.218292236328125, -6.215499877929631 ], [ -73.217071533203125, -6.216149806976318 ], [ -73.213348388671875, -6.22022008895874 ], [ -73.21254730224598, -6.220739841461182 ], [ -73.21169281005848, -6.220970153808594 ], [ -73.210556030273438, -6.220580101013184 ], [ -73.210212707519531, -6.220028877258301 ], [ -73.210487365722656, -6.219399929046631 ], [ -73.211746215820312, -6.218690872192326 ], [ -73.212127685546875, -6.21819877624506 ], [ -73.212165832519418, -6.217238903045654 ], [ -73.211761474609318, -6.216169834136963 ], [ -73.210617065429631, -6.214990139007568 ], [ -73.210006713867188, -6.214659214019775 ], [ -73.208381652832031, -6.214538097381535 ], [ -73.20733642578125, -6.214879989623967 ], [ -73.206596374511719, -6.215809822082463 ], [ -73.206092834472656, -6.217098236083928 ], [ -73.206077575683594, -6.223320007324162 ], [ -73.205390930175724, -6.225279808044377 ], [ -73.204910278320256, -6.225829124450684 ], [ -73.204498291015625, -6.225938796997013 ], [ -73.202476501464844, -6.225499153137207 ], [ -73.201766967773381, -6.225689888000488 ], [ -73.201332092285156, -6.226568222045898 ], [ -73.200813293456974, -6.22947978973383 ], [ -73.200279235839844, -6.230759143829289 ], [ -73.1978759765625, -6.232560157775879 ], [ -73.197036743164062, -6.234769821166992 ], [ -73.196647644042969, -6.235260009765625 ], [ -73.193977355957031, -6.236031055450439 ], [ -73.192726135253906, -6.237249851226807 ], [ -73.193061828613224, -6.24022912979126 ], [ -73.192199707031193, -6.241559982299748 ], [ -73.191802978515625, -6.246368885040283 ], [ -73.190811157226562, -6.247691154479924 ], [ -73.189697265625, -6.248490810394287 ], [ -73.187522888183594, -6.247849941253605 ], [ -73.186836242675781, -6.24793004989624 ], [ -73.186309814453068, -6.248379230499268 ], [ -73.186203002929631, -6.249300003051701 ], [ -73.187660217285043, -6.250761032104492 ], [ -73.187850952148324, -6.2519211769104 ], [ -73.187561035156136, -6.252749919891301 ], [ -73.186256408691406, -6.253739833831787 ], [ -73.185676574707031, -6.255480766296387 ], [ -73.184150695800781, -6.256700038909912 ], [ -73.183547973632756, -6.256888866424561 ], [ -73.182960510253849, -6.256777763366586 ], [ -73.181320190429688, -6.2553391456604 ], [ -73.180328369140625, -6.253408908843937 ], [ -73.179977416992188, -6.253179073333683 ], [ -73.179527282714787, -6.253668785095215 ], [ -73.178657531738224, -6.255649089813232 ], [ -73.178062438964844, -6.256329059600773 ], [ -73.177047729492131, -6.25652885437006 ], [ -73.174179077148381, -6.256110191345101 ], [ -73.173072814941406, -6.256248950958252 ], [ -73.17254638671875, -6.257040023803597 ], [ -73.172927856445312, -6.25875997543335 ], [ -73.172836303710938, -6.259309768676701 ], [ -73.17059326171875, -6.25987005233759 ], [ -73.170051574707031, -6.260331153869572 ], [ -73.169998168945256, -6.26341009140009 ], [ -73.169486999511719, -6.264540195465088 ], [ -73.166656494140568, -6.266209125518799 ], [ -73.164886474609375, -6.267998218536377 ], [ -73.161247253417969, -6.269429206848145 ], [ -73.159896850585881, -6.270689010620117 ], [ -73.159523010253793, -6.271770000457764 ], [ -73.159477233886719, -6.272959232330265 ], [ -73.160728454589787, -6.275378227233887 ], [ -73.161041259765568, -6.276800155639648 ], [ -73.160980224609375, -6.278129100799504 ], [ -73.160575866699105, -6.278709888458252 ], [ -73.159530639648438, -6.279248237609863 ], [ -73.157546997070312, -6.27839994430542 ], [ -73.157150268554688, -6.278539180755615 ], [ -73.15643310546875, -6.282210826873779 ], [ -73.156181335449162, -6.284689903259221 ], [ -73.156509399414062, -6.285368919372502 ], [ -73.157112121581974, -6.285579204559269 ], [ -73.159111022949162, -6.283978939056396 ], [ -73.160308837890625, -6.283668994903564 ], [ -73.160942077636662, -6.284139156341553 ], [ -73.161186218261719, -6.28538990020752 ], [ -73.160530090332031, -6.286478996276855 ], [ -73.157608032226506, -6.288819789886475 ], [ -73.157379150390625, -6.29019021987915 ], [ -73.155677795410099, -6.291790008544865 ], [ -73.155220031738224, -6.292798995971623 ], [ -73.155189514160156, -6.293769836425724 ], [ -73.15545654296875, -6.294639110565129 ], [ -73.157409667968693, -6.296359062194824 ], [ -73.157852172851562, -6.297548770904484 ], [ -73.157379150390625, -6.299869060516301 ], [ -73.156326293945312, -6.301119804382267 ], [ -73.155036926269474, -6.303839206695557 ], [ -73.154838562011662, -6.304948806762695 ], [ -73.154960632324219, -6.307960033416748 ], [ -73.154090881347543, -6.309829235076904 ], [ -73.154342651367131, -6.311658859252873 ], [ -73.155403137206974, -6.312910079955998 ], [ -73.155616760253793, -6.31351900100708 ], [ -73.155769348144474, -6.315838813781681 ], [ -73.155532836914062, -6.317899227142334 ], [ -73.154953002929688, -6.319419860839844 ], [ -73.153999328613281, -6.320999145507812 ], [ -73.152946472167855, -6.321939945220947 ], [ -73.151885986328068, -6.322329998016357 ], [ -73.150978088378906, -6.322171211242676 ], [ -73.150253295898381, -6.32157993316639 ], [ -73.149780273437443, -6.320788860321045 ], [ -73.149391174316349, -6.319199085235596 ], [ -73.148956298828125, -6.318698883056641 ], [ -73.147537231445312, -6.317908763885441 ], [ -73.146530151367131, -6.317999839782658 ], [ -73.146072387695256, -6.318350791931096 ], [ -73.146186828613281, -6.320010185241699 ], [ -73.147987365722543, -6.323479175567627 ], [ -73.148422241210938, -6.324789047241211 ], [ -73.148925781249943, -6.331280231475773 ], [ -73.148757934570312, -6.332579135894719 ], [ -73.14813232421875, -6.333341121673584 ], [ -73.147102355956974, -6.333818912506047 ], [ -73.145538330078125, -6.333358764648381 ], [ -73.144866943359375, -6.332398891448975 ], [ -73.144515991210881, -6.330598831176758 ], [ -73.143547058105469, -6.329650878906193 ], [ -73.143119812011605, -6.329370021820068 ], [ -73.141410827636719, -6.328248977661076 ], [ -73.140975952148438, -6.32839918136591 ], [ -73.139892578125, -6.329588890075684 ], [ -73.139938354492131, -6.330070018768311 ], [ -73.141921997070312, -6.332001209259033 ], [ -73.142112731933594, -6.332658767700138 ], [ -73.141807556152344, -6.333529949188176 ], [ -73.140571594238281, -6.335209846496525 ], [ -73.14019775390625, -6.336628913879338 ], [ -73.140396118164062, -6.337429046630859 ], [ -73.141487121581974, -6.338078975677433 ], [ -73.137886047363281, -6.35019922256464 ], [ -73.137748718261662, -6.352499008178654 ], [ -73.135536193847656, -6.35191822052002 ], [ -73.134757995605469, -6.352088928222656 ], [ -73.132682800292969, -6.354599952697754 ], [ -73.131332397460938, -6.354999065399113 ], [ -73.130790710449162, -6.355368137359562 ], [ -73.129837036132756, -6.356958866119385 ], [ -73.12982177734375, -6.357669830322209 ], [ -73.130561828613281, -6.358580112457275 ], [ -73.132591247558594, -6.358328819274846 ], [ -73.133178710937443, -6.358638763427678 ], [ -73.133598327636719, -6.361138820648137 ], [ -73.134757995605469, -6.362860202789307 ], [ -73.134857177734375, -6.364019870758 ], [ -73.134628295898381, -6.36466121673584 ], [ -73.134239196777287, -6.364939212799072 ], [ -73.132606506347599, -6.364879131317139 ], [ -73.131988525390625, -6.365070819854736 ], [ -73.131111145019531, -6.365880012512207 ], [ -73.130699157714787, -6.366689205169621 ], [ -73.130783081054631, -6.368109226226807 ], [ -73.13275146484375, -6.369410037994385 ], [ -73.133270263671818, -6.370309829711857 ], [ -73.133377075195256, -6.371718883514404 ], [ -73.133132934570312, -6.373369216918888 ], [ -73.132301330566406, -6.374489784240666 ], [ -73.131958007812443, -6.374780178070012 ], [ -73.131469726562443, -6.374771118163949 ], [ -73.130706787109318, -6.37391805648798 ], [ -73.129981994628906, -6.372728824615422 ], [ -73.129737854003849, -6.371129035949707 ], [ -73.128807067871037, -6.369938850402832 ], [ -73.128456115722656, -6.369900226592961 ], [ -73.127922058105412, -6.370199203491211 ], [ -73.126846313476562, -6.371569156646672 ], [ -73.126739501953125, -6.373418807983398 ], [ -73.127006530761605, -6.374289989471436 ], [ -73.12799072265625, -6.375860214233342 ], [ -73.128143310546818, -6.379089832305908 ], [ -73.127471923828068, -6.382229804992619 ], [ -73.1260986328125, -6.385678768157845 ], [ -73.125183105468693, -6.387248992919865 ], [ -73.124557495117188, -6.387680053710938 ], [ -73.123939514160099, -6.387709140777588 ], [ -73.123176574706974, -6.386791229248047 ], [ -73.122589111328068, -6.384799003601074 ], [ -73.121810913085938, -6.38394021987915 ], [ -73.121070861816349, -6.383429050445557 ], [ -73.120613098144418, -6.383459091186523 ], [ -73.11946868896473, -6.38231897354126 ], [ -73.118782043456974, -6.382309913635197 ], [ -73.118103027343693, -6.38257884979248 ], [ -73.115470886230469, -6.385159015655461 ], [ -73.112976074218693, -6.389808177947941 ], [ -73.104782104492074, -6.398499011993351 ], [ -73.103157043456974, -6.400441169738713 ], [ -73.101905822753849, -6.402639865875244 ], [ -73.101898193359318, -6.406319141387883 ], [ -73.102806091308594, -6.409879207611027 ], [ -73.102806091308594, -6.411819934844971 ], [ -73.103469848632812, -6.41404914855957 ], [ -73.1041259765625, -6.415478229522648 ], [ -73.104637145996094, -6.415970802307072 ], [ -73.105667114257812, -6.416470050811768 ], [ -73.107078552246094, -6.416399002075082 ], [ -73.107826232910099, -6.415870189666748 ], [ -73.108711242675781, -6.415719985961857 ], [ -73.110328674316406, -6.415800094604435 ], [ -73.111633300781193, -6.416281223297062 ], [ -73.112792968749886, -6.417408943176213 ], [ -73.113227844238281, -6.418209075927734 ], [ -73.113296508789062, -6.42011022567749 ], [ -73.113533020019474, -6.420720100402832 ], [ -73.115905761718693, -6.422519207000676 ], [ -73.117057800292912, -6.424249172210693 ], [ -73.117927551269474, -6.426139831542912 ], [ -73.117881774902344, -6.426848888397217 ], [ -73.116569519042969, -6.428410053253174 ], [ -73.115173339843693, -6.429649829864502 ], [ -73.113136291503906, -6.430819034576416 ], [ -73.112876892089787, -6.431599140167179 ], [ -73.113105773925781, -6.433340072631779 ], [ -73.112991333007812, -6.433948993682861 ], [ -73.111320495605469, -6.434760093688965 ], [ -73.110481262206974, -6.435861110687256 ], [ -73.110191345214787, -6.438829898834229 ], [ -73.109367370605469, -6.440481185913086 ], [ -73.109207153320312, -6.441679000854492 ], [ -73.109512329101562, -6.4424791336059 ], [ -73.11102294921875, -6.443610191345215 ], [ -73.111312866210938, -6.444268226623535 ], [ -73.109123229980469, -6.446279048919678 ], [ -73.108627319335938, -6.447028160095158 ], [ -73.108612060546875, -6.450059890747013 ], [ -73.108917236328125, -6.452778816223088 ], [ -73.109481811523438, -6.453208923339844 ], [ -73.110382080078068, -6.453170776367188 ], [ -73.110870361328068, -6.452660083770752 ], [ -73.111267089843636, -6.450419902801514 ], [ -73.112236022949219, -6.449749946594181 ], [ -73.113128662109375, -6.449979782104492 ], [ -73.113731384277287, -6.451710224151554 ], [ -73.113830566406193, -6.455438137054443 ], [ -73.114089965820312, -6.456991195678654 ], [ -73.115287780761719, -6.459499835968018 ], [ -73.116943359375, -6.461680889129639 ], [ -73.118080139160156, -6.461609840393066 ], [ -73.118110656738224, -6.45884990692133 ], [ -73.118812561035156, -6.458269119262695 ], [ -73.119522094726562, -6.458308219909668 ], [ -73.121246337890568, -6.459838867187386 ], [ -73.122100830078125, -6.460140228271484 ], [ -73.122978210449162, -6.459859848022404 ], [ -73.125450134277287, -6.458199024200383 ], [ -73.126388549804688, -6.458189010620117 ], [ -73.127006530761605, -6.458460807800236 ], [ -73.127426147460938, -6.459279060363713 ], [ -73.127586364746094, -6.460439205169621 ], [ -73.126716613769418, -6.462570190429631 ], [ -73.126663208007812, -6.464199066162053 ], [ -73.127906799316406, -6.466629028320312 ], [ -73.1282958984375, -6.468489170074463 ], [ -73.12786865234375, -6.46946907043457 ], [ -73.126235961914006, -6.471179962158146 ], [ -73.126106262207031, -6.472118854522648 ], [ -73.127571105956974, -6.473828792572021 ], [ -73.131149291992188, -6.477220058441105 ], [ -73.133552551269474, -6.478579044341984 ], [ -73.135841369628849, -6.47859001159668 ], [ -73.136466979980469, -6.478899955749512 ], [ -73.136619567871037, -6.479319095611515 ], [ -73.136276245117188, -6.481208801269531 ], [ -73.136367797851562, -6.481838226318303 ], [ -73.138328552246037, -6.483459949493408 ], [ -73.138946533203125, -6.484419822692757 ], [ -73.139602661132812, -6.48638916015625 ], [ -73.139106750488224, -6.487158775329533 ], [ -73.138442993164006, -6.487329959869328 ], [ -73.137847900390568, -6.487030029296875 ], [ -73.136047363281193, -6.485219955444279 ], [ -73.135307312011719, -6.485178947448674 ], [ -73.135002136230412, -6.485719203948861 ], [ -73.134918212890511, -6.48646879196167 ], [ -73.135139465332031, -6.487089157104492 ], [ -73.136177062988281, -6.488629817962646 ], [ -73.136177062988281, -6.489580154418945 ], [ -73.135902404785156, -6.490188121795654 ], [ -73.135513305664062, -6.490438938140869 ], [ -73.134796142578068, -6.490468978881779 ], [ -73.133277893066349, -6.489480018615723 ], [ -73.131187438964787, -6.48937892913807 ], [ -73.130302429199219, -6.490011215209904 ], [ -73.129753112792912, -6.491549015045109 ], [ -73.129837036132756, -6.492469787597656 ], [ -73.130416870117131, -6.493060111999512 ], [ -73.132568359375, -6.493169784545785 ], [ -73.133155822753906, -6.493629932403564 ], [ -73.132926940917969, -6.494588851928654 ], [ -73.131477355956974, -6.495749950408879 ], [ -73.1307373046875, -6.496658802032414 ], [ -73.130470275878906, -6.497288227081299 ], [ -73.130332946777287, -6.499598979949951 ], [ -73.130516052246037, -6.500979900360107 ], [ -73.131683349609375, -6.502998828887939 ], [ -73.131622314453125, -6.505440235137939 ], [ -73.131988525390625, -6.506840229034367 ], [ -73.133087158203068, -6.508809089660645 ], [ -73.135482788085881, -6.511991024017334 ], [ -73.136451721191406, -6.512800216674748 ], [ -73.138778686523438, -6.513850212097168 ], [ -73.140426635742131, -6.514138221740723 ], [ -73.141067504882812, -6.51386022567749 ], [ -73.141571044921818, -6.513168811798096 ], [ -73.141578674316349, -6.512059211730957 ], [ -73.139923095703125, -6.508059024810677 ], [ -73.139610290527344, -6.506499767303467 ], [ -73.139732360839844, -6.505709171295166 ], [ -73.140640258788949, -6.504778861999512 ], [ -73.141181945800724, -6.504679203033447 ], [ -73.141891479492188, -6.50485897064209 ], [ -73.14388275146473, -6.506508827209473 ], [ -73.147491455078068, -6.510550022125244 ], [ -73.148429870605412, -6.511909008026123 ], [ -73.1505126953125, -6.515909194946289 ], [ -73.150810241699162, -6.516989231109562 ], [ -73.150871276855469, -6.52361011505127 ], [ -73.151336669921875, -6.525299072265625 ], [ -73.151939392089844, -6.526340007781982 ], [ -73.152313232421875, -6.526590824127197 ], [ -73.152778625488281, -6.526549816131535 ], [ -73.1568603515625, -6.52455997467041 ], [ -73.160507202148438, -6.524789810180664 ], [ -73.161750793457031, -6.525599002838078 ], [ -73.163536071777344, -6.526000976562443 ], [ -73.164115905761719, -6.526459217071533 ], [ -73.164131164550781, -6.527009963989201 ], [ -73.163108825683594, -6.528748989105225 ], [ -73.162910461425781, -6.529579162597656 ], [ -73.163146972656136, -6.530340194702092 ], [ -73.164009094238168, -6.531048774719238 ], [ -73.165046691894474, -6.531109809875488 ], [ -73.165672302246094, -6.530809879302979 ], [ -73.166900634765625, -6.529288768768311 ], [ -73.167198181152344, -6.528429985046387 ], [ -73.166717529296875, -6.527248859405461 ], [ -73.164299011230469, -6.525289058685246 ], [ -73.163528442382699, -6.524128913879338 ], [ -73.166931152343693, -6.520979881286621 ], [ -73.169776916503906, -6.517529010772648 ], [ -73.170616149902344, -6.517460823059025 ], [ -73.171279907226562, -6.517730236053467 ], [ -73.1727294921875, -6.519148826599121 ], [ -73.173179626464844, -6.519960880279484 ], [ -73.173286437988281, -6.521490097045842 ], [ -73.171516418456974, -6.523229122161865 ], [ -73.171310424804688, -6.524418830871525 ], [ -73.171432495117131, -6.525218963623047 ], [ -73.171928405761719, -6.526119232177621 ], [ -73.173370361328125, -6.527239799499398 ], [ -73.174369812011662, -6.527190208435059 ], [ -73.175003051757812, -6.526830196380615 ], [ -73.176322937011719, -6.525539875030461 ], [ -73.177062988281193, -6.524479866027832 ], [ -73.178543090820312, -6.523569107055607 ], [ -73.18017578125, -6.523349761962834 ], [ -73.181365966796761, -6.522890090942326 ], [ -73.18575286865223, -6.522398948669434 ], [ -73.187408447265625, -6.52193021774292 ], [ -73.188148498535156, -6.522050857543888 ], [ -73.188232421874886, -6.522360801696721 ], [ -73.187812805175724, -6.523149013519287 ], [ -73.187599182128906, -6.52515983581543 ], [ -73.187973022460938, -6.527328968048096 ], [ -73.187828063964787, -6.528209209442139 ], [ -73.186332702636719, -6.528820037841797 ], [ -73.180648803710938, -6.528999805450439 ], [ -73.179672241210938, -6.529269218444824 ], [ -73.176856994628849, -6.532158851623535 ], [ -73.176033020019531, -6.533679008483887 ], [ -73.175827026367131, -6.534658908843937 ], [ -73.176750183105412, -6.535429000854492 ], [ -73.179443359374943, -6.537000179290715 ], [ -73.179840087890511, -6.537711143493596 ], [ -73.180313110351449, -6.539409160614014 ], [ -73.180671691894474, -6.539801120758 ], [ -73.181777954101562, -6.539930820465088 ], [ -73.1839599609375, -6.538969039916992 ], [ -73.185043334960938, -6.53885889053339 ], [ -73.186470031738281, -6.539219856262207 ], [ -73.187156677246037, -6.539959907531681 ], [ -73.187393188476562, -6.540740013122559 ], [ -73.186889648437443, -6.541598796844482 ], [ -73.185302734375, -6.542479038238469 ], [ -73.181877136230469, -6.543848037719727 ], [ -73.181541442871037, -6.544359207153263 ], [ -73.18157958984375, -6.544830799102783 ], [ -73.181877136230469, -6.545190811157227 ], [ -73.183601379394531, -6.54528903961176 ], [ -73.186836242675781, -6.544119834899789 ], [ -73.188468933105469, -6.544048786163273 ], [ -73.189178466796818, -6.544651031494141 ], [ -73.190505981445256, -6.547679901123047 ], [ -73.191230773925781, -6.54827880859375 ], [ -73.191963195800781, -6.548319816589355 ], [ -73.192413330078068, -6.547880172729435 ], [ -73.193016052246094, -6.546469211578312 ], [ -73.193046569824219, -6.544549942016545 ], [ -73.192626953125, -6.542678833007756 ], [ -73.193008422851562, -6.541950225829964 ], [ -73.194046020507699, -6.541609764099064 ], [ -73.19500732421875, -6.542719841003418 ], [ -73.195518493652344, -6.54617977142334 ], [ -73.196037292480412, -6.547280788421631 ], [ -73.196929931640625, -6.547268867492676 ], [ -73.198982238769474, -6.546109199523926 ], [ -73.199668884277287, -6.546268939971924 ], [ -73.199768066406136, -6.547060012817383 ], [ -73.198013305664062, -6.549048900604248 ], [ -73.196647644042969, -6.549810886383 ], [ -73.194740295410156, -6.550459861755371 ], [ -73.193519592285156, -6.551469802856445 ], [ -73.193412780761719, -6.552999019622803 ], [ -73.194389343261719, -6.554749965667668 ], [ -73.195487976074219, -6.555449008941594 ], [ -73.196609497070256, -6.555788993835449 ], [ -73.197532653808594, -6.555708885192871 ], [ -73.197990417480469, -6.555409908294621 ], [ -73.200042724609318, -6.552818775176945 ], [ -73.201477050781193, -6.551700115203857 ], [ -73.202392578125, -6.55173921585083 ], [ -73.203262329101506, -6.552689075469971 ], [ -73.203598022460938, -6.553939819335881 ], [ -73.203659057617131, -6.555869102478027 ], [ -73.203559875488224, -6.557619094848576 ], [ -73.203071594238224, -6.559200763702336 ], [ -73.202606201171818, -6.559659004211426 ], [ -73.200202941894531, -6.560500144958439 ], [ -73.199447631835881, -6.561048984527531 ], [ -73.198272705078125, -6.561039924621525 ], [ -73.196876525878849, -6.561369895935002 ], [ -73.196571350097656, -6.561829090118408 ], [ -73.196502685546818, -6.562739849090576 ], [ -73.197113037109375, -6.56476879119873 ], [ -73.197372436523381, -6.565031051635742 ], [ -73.198371887207031, -6.565079212188721 ], [ -73.198722839355355, -6.565508842468262 ], [ -73.198890686035099, -6.56777906417841 ], [ -73.199516296386719, -6.568910121917725 ], [ -73.200119018554631, -6.569279193878174 ], [ -73.201141357421875, -6.569240093231201 ], [ -73.201911926269531, -6.568910121917725 ], [ -73.202476501464844, -6.569190025329533 ], [ -73.20263671875, -6.569809913635197 ], [ -73.202049255371037, -6.571229934692383 ], [ -73.202278137207031, -6.572209835052433 ], [ -73.202598571777287, -6.572370052337646 ], [ -73.205352783203125, -6.572280883789062 ], [ -73.205841064453068, -6.572558879852295 ], [ -73.206138610839787, -6.573119163513184 ], [ -73.206169128417969, -6.573881149291992 ], [ -73.205528259277344, -6.575301170349064 ], [ -73.206298828125, -6.576070785522461 ], [ -73.207038879394531, -6.57643985748291 ], [ -73.209869384765568, -6.576129913330078 ], [ -73.211875915527287, -6.576381206512451 ], [ -73.212707519531193, -6.576088905334416 ], [ -73.215232849121094, -6.571808815002385 ], [ -73.217262268066406, -6.569341182708683 ], [ -73.217239379882812, -6.56640005111683 ], [ -73.217742919921875, -6.564818859100285 ], [ -73.219383239746037, -6.563480854034367 ], [ -73.220260620117131, -6.563389778137207 ], [ -73.222221374511719, -6.563919067382812 ], [ -73.223220825195256, -6.564879894256592 ], [ -73.223953247070312, -6.566359043121338 ], [ -73.225021362304631, -6.567499160766602 ], [ -73.226432800292969, -6.568671226501465 ], [ -73.229141235351449, -6.570229053497314 ], [ -73.230178833007756, -6.571518898010197 ], [ -73.230339050292969, -6.573719024658203 ], [ -73.231010437011719, -6.575469017028752 ], [ -73.230827331542912, -6.580059051513672 ], [ -73.23004150390625, -6.581199169158879 ], [ -73.226737976074162, -6.584239006042424 ], [ -73.226409912109375, -6.58616113662714 ], [ -73.226615905761719, -6.58705902099598 ], [ -73.228202819824219, -6.5882887840271 ], [ -73.229652404785156, -6.588350772857609 ], [ -73.230880737304688, -6.587590217590332 ], [ -73.231636047363281, -6.586538791656437 ], [ -73.231948852539062, -6.585590839385986 ], [ -73.232719421386719, -6.5850892066955 ], [ -73.233886718749943, -6.584838867187443 ], [ -73.2371826171875, -6.584718227386475 ], [ -73.241111755371094, -6.58318901062006 ], [ -73.241943359375, -6.583300113677922 ], [ -73.242500305175781, -6.583769798278752 ], [ -73.242362976074162, -6.585060119628906 ], [ -73.242942810058537, -6.585859775543156 ], [ -73.242835998535156, -6.586409091949463 ], [ -73.241790771484318, -6.587439060211182 ], [ -73.237777709960938, -6.589650154113713 ], [ -73.237106323242188, -6.590520858764592 ], [ -73.237213134765568, -6.591061115264836 ], [ -73.237762451171875, -6.5916810035705 ], [ -73.239776611328125, -6.592481136322021 ], [ -73.240325927734375, -6.592389106750431 ], [ -73.241378784179688, -6.59138011932373 ], [ -73.243751525878906, -6.587659835815373 ], [ -73.244941711425724, -6.584670066833496 ], [ -73.245613098144474, -6.58367919921875 ], [ -73.248466491699162, -6.581699848174992 ], [ -73.250312805175668, -6.580848217010384 ], [ -73.251502990722656, -6.580619812011719 ], [ -73.251930236816349, -6.580669879913273 ], [ -73.252059936523438, -6.581018924713135 ], [ -73.251701354980469, -6.582250118255615 ], [ -73.251708984374943, -6.583259105682373 ], [ -73.252487182617131, -6.583748817443848 ], [ -73.253150939941349, -6.583839893341064 ], [ -73.253730773925724, -6.583628177642822 ], [ -73.254547119140625, -6.582879066467228 ], [ -73.254760742187443, -6.582259178161564 ], [ -73.255256652831974, -6.58174991607666 ], [ -73.255638122558537, -6.58188009262085 ], [ -73.256278991699219, -6.585309982299805 ], [ -73.256698608398381, -6.586019039153996 ], [ -73.258186340332031, -6.58636999130249 ], [ -73.260688781738224, -6.586558818817082 ], [ -73.261436462402287, -6.586060047149658 ], [ -73.261833190917912, -6.585140228271428 ], [ -73.262550354003906, -6.585010051727238 ], [ -73.265525817871094, -6.586819171905518 ], [ -73.266616821289006, -6.58696985244751 ], [ -73.26806640625, -6.587560176849308 ], [ -73.268707275390568, -6.588859081268197 ], [ -73.268257141113281, -6.590909957885685 ], [ -73.267662048339787, -6.591958999633732 ], [ -73.267562866210881, -6.592619895935059 ], [ -73.267822265625, -6.593160152435303 ], [ -73.268417358398381, -6.593420028686523 ], [ -73.268951416015625, -6.593248844146729 ], [ -73.269569396972599, -6.592559814453068 ], [ -73.269729614257812, -6.589540958404541 ], [ -73.269340515136719, -6.587320804595947 ], [ -73.2694091796875, -6.586898803710938 ], [ -73.269889831542969, -6.586239814758301 ], [ -73.270767211914062, -6.585700035095101 ], [ -73.2716064453125, -6.585629940032902 ], [ -73.272247314453011, -6.586409091949463 ], [ -73.272979736328068, -6.586609840393066 ], [ -73.27496337890625, -6.584858894348088 ], [ -73.275650024414006, -6.584650039672852 ], [ -73.275856018066349, -6.584939002990723 ], [ -73.275756835937443, -6.586688995361328 ], [ -73.275978088378906, -6.587090015411377 ], [ -73.276397705078125, -6.587299823760986 ], [ -73.276870727539062, -6.586739063262939 ], [ -73.276756286621094, -6.585268974304199 ], [ -73.277107238769474, -6.584849834442082 ], [ -73.277656555175724, -6.584759235382023 ], [ -73.279197692871037, -6.586459159851017 ], [ -73.279731750488281, -6.586571216583195 ], [ -73.280296325683594, -6.586110115051213 ], [ -73.280532836914006, -6.584870815277043 ], [ -73.281227111816406, -6.584129810333252 ], [ -73.28173828125, -6.583899974822884 ], [ -73.282112121582031, -6.584159851074219 ], [ -73.282196044921875, -6.584700107574406 ], [ -73.281471252441349, -6.585959911346436 ], [ -73.281295776367131, -6.58689022064209 ], [ -73.282379150390625, -6.58784008026123 ], [ -73.282936096191406, -6.587609767913818 ], [ -73.282463073730469, -6.586609840393066 ], [ -73.282676696777344, -6.586120128631592 ], [ -73.285606384277344, -6.585909843444824 ], [ -73.285812377929688, -6.586110115051213 ], [ -73.285575866699162, -6.586799144744873 ], [ -73.285797119140625, -6.587338924407959 ], [ -73.287857055664006, -6.586588859558105 ], [ -73.288307189941406, -6.586781024932804 ], [ -73.289726257324219, -6.588219165802002 ], [ -73.290397644042969, -6.588159084320068 ], [ -73.291358947753906, -6.587659835815373 ], [ -73.292671203613281, -6.588049888610783 ], [ -73.294715881347656, -6.590880870819092 ], [ -73.295242309570312, -6.59311914443964 ], [ -73.295822143554688, -6.594069004058781 ], [ -73.295806884765511, -6.59462118148798 ], [ -73.296478271484375, -6.596610069274902 ], [ -73.296821594238224, -6.596980094909668 ], [ -73.297737121582031, -6.596879005432072 ], [ -73.299148559570312, -6.595860958099308 ], [ -73.300621032714844, -6.59447002410883 ], [ -73.301872253417912, -6.592669963836613 ], [ -73.302986145019531, -6.591869831085205 ], [ -73.304176330566349, -6.591660022735596 ], [ -73.305366516113281, -6.591798782348633 ], [ -73.307136535644474, -6.593268871307373 ], [ -73.30853271484375, -6.593759059905949 ], [ -73.309150695800724, -6.593658924102783 ], [ -73.309883117675724, -6.592699050903263 ], [ -73.310501098632812, -6.592589855194092 ], [ -73.313217163085938, -6.594110012054443 ], [ -73.313713073730412, -6.593619823455754 ], [ -73.313491821289062, -6.592720031738281 ], [ -73.313591003417969, -6.592270851135254 ], [ -73.314537048339844, -6.591061115264836 ], [ -73.315292358398438, -6.590529918670654 ], [ -73.316146850585938, -6.591320991516113 ], [ -73.317230224609318, -6.592920780181828 ], [ -73.317115783691406, -6.59335994720459 ], [ -73.315849304199219, -6.594408988952637 ], [ -73.315879821777344, -6.594799041748047 ], [ -73.31630706787098, -6.595139980316162 ], [ -73.316757202148381, -6.595048904418945 ], [ -73.317619323730412, -6.594229221343994 ], [ -73.317901611328068, -6.594489097595215 ], [ -73.317932128906136, -6.595139980316162 ], [ -73.31817626953125, -6.595399856567326 ], [ -73.318870544433537, -6.595640182495117 ], [ -73.320259094238281, -6.595668792724609 ], [ -73.320648193359375, -6.595449924468994 ], [ -73.320808410644531, -6.594738960266113 ], [ -73.321189880371094, -6.594509124755859 ], [ -73.321739196777287, -6.594530105590763 ], [ -73.322669982910099, -6.595119953155518 ], [ -73.323143005371037, -6.595039844512939 ], [ -73.324501037597599, -6.593520164489632 ], [ -73.325172424316349, -6.593860149383545 ], [ -73.324562072753906, -6.594759941100961 ], [ -73.324752807617188, -6.59519100189209 ], [ -73.325073242187443, -6.59519100189209 ], [ -73.325965881347656, -6.594459056854191 ], [ -73.327156066894474, -6.594600200653076 ], [ -73.327682495117188, -6.595408916473332 ], [ -73.327018737792969, -6.595718860626164 ], [ -73.326499938964787, -6.596339225769043 ], [ -73.326705932617074, -6.596658229827881 ], [ -73.328208923339787, -6.596959114074707 ], [ -73.328910827636719, -6.597691059112549 ], [ -73.328811645507812, -6.598499774932804 ], [ -73.327812194824162, -6.599459171295166 ], [ -73.327507019042969, -6.600430011749268 ], [ -73.327781677246094, -6.60089111328125 ], [ -73.328590393066349, -6.601049900054932 ], [ -73.329612731933594, -6.600710868835449 ], [ -73.331398010253906, -6.59824895858759 ], [ -73.331779479980469, -6.597218990325928 ], [ -73.331886291503906, -6.594658851623535 ], [ -73.332412719726506, -6.594009876251164 ], [ -73.333366394042912, -6.593479156494141 ], [ -73.336357116699219, -6.593069076538086 ], [ -73.337982177734375, -6.592130184173527 ], [ -73.338096618652344, -6.594408988952637 ], [ -73.338417053222599, -6.594649791717472 ], [ -73.33892822265625, -6.594608783721924 ], [ -73.339179992675724, -6.594128131866341 ], [ -73.339179992675724, -6.5932102203368 ], [ -73.339927673339787, -6.592270851135254 ], [ -73.340843200683594, -6.592300891876164 ], [ -73.341682434082031, -6.593490123748779 ], [ -73.342216491699162, -6.593619823455754 ], [ -73.342498779296818, -6.593399047851562 ], [ -73.342536926269418, -6.591928958892822 ], [ -73.343170166015568, -6.591738224029541 ], [ -73.343986511230469, -6.592689990997258 ], [ -73.344161987304688, -6.593490123748779 ], [ -73.345802307128906, -6.594278812408447 ], [ -73.344711303710881, -6.597269058227539 ], [ -73.345092773437443, -6.597679138183594 ], [ -73.345947265624943, -6.597771167755127 ], [ -73.346656799316406, -6.597498893737736 ], [ -73.348587036132812, -6.595768928527832 ], [ -73.350723266601506, -6.594968795776367 ], [ -73.351806640625, -6.593729972839355 ], [ -73.352508544921875, -6.593490123748779 ], [ -73.353141784667969, -6.593619823455754 ], [ -73.353538513183594, -6.594328880310059 ], [ -73.353080749511719, -6.595789909362736 ], [ -73.353126525878906, -6.596528053283691 ], [ -73.353401184081974, -6.597009181976262 ], [ -73.354019165039062, -6.597560882568359 ], [ -73.355628967285156, -6.597420215606689 ], [ -73.357215881347599, -6.598710060119572 ], [ -73.357215881347599, -6.599898815154972 ], [ -73.358108520507812, -6.602109909057617 ], [ -73.357429504394531, -6.603529930114689 ], [ -73.357482910156193, -6.60391092300415 ], [ -73.35817718505848, -6.603848934173527 ], [ -73.359016418456974, -6.603329181671143 ], [ -73.358932495117131, -6.602529048919621 ], [ -73.359519958496094, -6.601980209350529 ], [ -73.360076904296818, -6.601769924163762 ], [ -73.360488891601562, -6.60221004486084 ], [ -73.361160278320312, -6.603701114654484 ], [ -73.362449645996037, -6.604559898376408 ], [ -73.362586975097656, -6.605700016021672 ], [ -73.363037109374886, -6.606139183044434 ], [ -73.364089965820199, -6.606389999389648 ], [ -73.364967346191406, -6.60512113571167 ], [ -73.36590576171875, -6.60529804229725 ], [ -73.366760253906136, -6.6059889793396 ], [ -73.366668701171875, -6.607269763946476 ], [ -73.367446899414062, -6.60880804061884 ], [ -73.366943359374943, -6.609239101409912 ], [ -73.365951538085938, -6.609498977661076 ], [ -73.365692138671818, -6.610060214996338 ], [ -73.366180419921818, -6.610469818115234 ], [ -73.366889953613281, -6.61060905456543 ], [ -73.367317199706974, -6.611058235168457 ], [ -73.367523193359261, -6.612898826599121 ], [ -73.368156433105412, -6.613790988922062 ], [ -73.369132995605412, -6.614318847656193 ], [ -73.370018005371094, -6.613889217376652 ], [ -73.370597839355469, -6.611040115356388 ], [ -73.370582580566406, -6.608099937438908 ], [ -73.37127685546875, -6.607358932495117 ], [ -73.372741699218693, -6.607328891754094 ], [ -73.373367309570312, -6.608438968658447 ], [ -73.373741149902344, -6.61021900177002 ], [ -73.374557495117131, -6.610109806060791 ], [ -73.374786376953125, -6.610390186309814 ], [ -73.374755859374943, -6.611040115356388 ], [ -73.37420654296875, -6.612518787383976 ], [ -73.374336242675781, -6.613389015197697 ], [ -73.37548828125, -6.613988876342717 ], [ -73.376731872558594, -6.61509895324707 ], [ -73.377311706542912, -6.616028785705566 ], [ -73.377586364746094, -6.61707878112793 ], [ -73.378433227539062, -6.618078231811467 ], [ -73.380287170410099, -6.619029998779297 ], [ -73.381095886230469, -6.619218826293888 ], [ -73.382827758789062, -6.620429992675724 ], [ -73.383270263671875, -6.62151908874506 ], [ -73.383056640624943, -6.622778892517033 ], [ -73.382492065429574, -6.623398780822697 ], [ -73.381248474121037, -6.623449802398625 ], [ -73.380989074707031, -6.623671054840088 ], [ -73.381233215331974, -6.624438762664795 ], [ -73.382392883300724, -6.625878810882512 ], [ -73.382476806640568, -6.626389980316162 ], [ -73.381568908691406, -6.626839160919076 ], [ -73.380210876464844, -6.626740932464543 ], [ -73.379753112792969, -6.627628803253174 ], [ -73.380043029785156, -6.627989768981934 ], [ -73.381683349609375, -6.627819061279297 ], [ -73.382186889648381, -6.628550052642822 ], [ -73.380912780761719, -6.63149881362915 ], [ -73.379516601562443, -6.632948875427246 ], [ -73.379463195800781, -6.634049892425537 ], [ -73.38006591796875, -6.63585901260376 ], [ -73.380470275878849, -6.635820865631047 ], [ -73.382148742675781, -6.634549140930119 ], [ -73.385292053222656, -6.633258819580078 ], [ -73.386566162109318, -6.633358955383301 ], [ -73.387145996093693, -6.634200096130371 ], [ -73.387321472167912, -6.638120174407959 ], [ -73.387672424316406, -6.638208866119328 ], [ -73.388626098632812, -6.637370109558049 ], [ -73.389686584472656, -6.638329982757568 ], [ -73.390708923339844, -6.638258934020996 ], [ -73.3916015625, -6.637790203094482 ], [ -73.392295837402287, -6.638208866119328 ], [ -73.391548156738224, -6.638990879058781 ], [ -73.391548156738224, -6.640000820159855 ], [ -73.390510559082031, -6.640769004821777 ], [ -73.390701293945312, -6.641369819641113 ], [ -73.391769409179688, -6.641468048095703 ], [ -73.392356872558594, -6.640907764434814 ], [ -73.393638610839787, -6.641030788421631 ], [ -73.394355773925781, -6.640470027923527 ], [ -73.396636962890625, -6.640738964080697 ], [ -73.3975830078125, -6.641320228576603 ], [ -73.397491455078125, -6.643410205841008 ], [ -73.398139953613281, -6.643908977508545 ], [ -73.398506164550724, -6.643849849700928 ], [ -73.399070739746037, -6.643239021301213 ], [ -73.399642944335881, -6.64094877243042 ], [ -73.402023315429631, -6.639610767364445 ], [ -73.402656555175781, -6.639938831329346 ], [ -73.402549743652344, -6.640759944915715 ], [ -73.402816772460938, -6.641250133514404 ], [ -73.404472351074219, -6.641170024871826 ], [ -73.404823303222656, -6.641468048095703 ], [ -73.404617309570199, -6.641970157623291 ], [ -73.403617858886719, -6.64205884933466 ], [ -73.403129577636719, -6.642479896545353 ], [ -73.403221130371094, -6.643569946289062 ], [ -73.403816223144531, -6.64401912689209 ], [ -73.404800415039006, -6.643829822540283 ], [ -73.406646728515625, -6.641668796539193 ], [ -73.407485961914062, -6.641320228576603 ], [ -73.409591674804688, -6.641341209411621 ], [ -73.410476684570312, -6.641589164733887 ], [ -73.414306640625, -6.641860008239689 ], [ -73.415626525878906, -6.643009185790959 ], [ -73.416496276855469, -6.644519805908203 ], [ -73.416366577148438, -6.645129203796387 ], [ -73.415458679199162, -6.646028995513859 ], [ -73.415733337402344, -6.646909236907959 ], [ -73.417366027831974, -6.646829128265381 ], [ -73.4185791015625, -6.648190021514836 ], [ -73.418930053710938, -6.648079872131348 ], [ -73.419326782226562, -6.647449016571045 ], [ -73.419860839843693, -6.647359848022404 ], [ -73.420745849609375, -6.647599220275879 ], [ -73.421531677246094, -6.648629188537598 ], [ -73.422492980957031, -6.647959232330265 ], [ -73.42311859130848, -6.648149013519287 ], [ -73.423271179199219, -6.648529052734375 ], [ -73.423072814941406, -6.649180889129639 ], [ -73.422660827636719, -6.649549961090031 ], [ -73.421867370605412, -6.649669170379582 ], [ -73.421463012695256, -6.650609970092717 ], [ -73.422386169433594, -6.651481151580754 ], [ -73.422515869140568, -6.653110027313176 ], [ -73.423927307128906, -6.654420852661076 ], [ -73.424880981445312, -6.654429912567139 ], [ -73.425582885742131, -6.654039859771672 ], [ -73.426193237304688, -6.653090000152531 ], [ -73.42608642578125, -6.652188777923584 ], [ -73.4268798828125, -6.651788234710693 ], [ -73.427452087402344, -6.65254020690918 ], [ -73.427963256835881, -6.652690887451172 ], [ -73.428596496582031, -6.65255880355835 ], [ -73.430122375488281, -6.651699066162053 ], [ -73.431297302246037, -6.651800155639648 ], [ -73.4320068359375, -6.651348114013672 ], [ -73.432739257812443, -6.650269985198975 ], [ -73.433372497558594, -6.649800777435303 ], [ -73.434677124023438, -6.651020050048771 ], [ -73.436767578125, -6.650819778442383 ], [ -73.437187194824219, -6.651339054107666 ], [ -73.438926696777287, -6.651238918304443 ], [ -73.439781188964787, -6.652880191802979 ], [ -73.441200256347656, -6.652880191802979 ], [ -73.442138671875, -6.653748035430908 ], [ -73.443138122558537, -6.655310153961182 ], [ -73.443443298339844, -6.656929969787598 ], [ -73.443710327148381, -6.657349109649601 ], [ -73.444099426269418, -6.657218933105412 ], [ -73.444252014160156, -6.656599998474121 ], [ -73.444915771484375, -6.655998229980412 ], [ -73.445281982421875, -6.656269073486271 ], [ -73.445388793945312, -6.657760143280029 ], [ -73.445747375488281, -6.658668994903508 ], [ -73.446319580078125, -6.658480167388916 ], [ -73.447486877441406, -6.657289981841984 ], [ -73.448036193847656, -6.657400131225586 ], [ -73.448272705078068, -6.658299922943058 ], [ -73.447662353515625, -6.659090995788574 ], [ -73.447769165039062, -6.659729003906136 ], [ -73.448646545410099, -6.660540103912297 ], [ -73.449630737304574, -6.660479068756104 ], [ -73.450447082519531, -6.661910057067871 ], [ -73.450782775878906, -6.662089824676457 ], [ -73.451217651367131, -6.661990165710392 ], [ -73.45147705078125, -6.660740852355957 ], [ -73.4520263671875, -6.66044902801508 ], [ -73.452857971191349, -6.661050796508789 ], [ -73.452926635742188, -6.66248893737793 ], [ -73.453559875488281, -6.662818908691406 ], [ -73.454048156738281, -6.662148952484017 ], [ -73.453987121581974, -6.660889148712158 ], [ -73.454505920410156, -6.660728931427002 ], [ -73.454971313476449, -6.661410808563176 ], [ -73.455406188964844, -6.663078784942513 ], [ -73.456016540527287, -6.663518905639648 ], [ -73.456901550292969, -6.663749217987061 ], [ -73.457740783691293, -6.664858818054199 ], [ -73.457916259765568, -6.665379047393799 ], [ -73.457687377929688, -6.666439056396484 ], [ -73.458335876464844, -6.667089939117432 ], [ -73.458816528320312, -6.666919231414795 ], [ -73.458831787109375, -6.665989875793457 ], [ -73.459190368652344, -6.665558815002385 ], [ -73.461273193359375, -6.66556978225708 ], [ -73.461830139160099, -6.666039943695012 ], [ -73.461746215820199, -6.667028903961125 ], [ -73.46270751953125, -6.667379856109619 ], [ -73.4638671875, -6.668790817260742 ], [ -73.4647216796875, -6.668997764587402 ], [ -73.465156555175724, -6.668769836425724 ], [ -73.465972900390625, -6.66740894317627 ], [ -73.467796325683594, -6.667438983917179 ], [ -73.467781066894531, -6.666738986968937 ], [ -73.468070983886719, -6.666521072387638 ], [ -73.468406677246037, -6.666588783264103 ], [ -73.469245910644474, -6.667459964752197 ], [ -73.469596862792969, -6.667469024658203 ], [ -73.470191955566406, -6.666530132293701 ], [ -73.470390319824162, -6.664929866790771 ], [ -73.470947265625, -6.664188861846867 ], [ -73.471488952636719, -6.664121150970402 ], [ -73.471931457519474, -6.664410114288273 ], [ -73.471939086914006, -6.665869235992375 ], [ -73.472869873046818, -6.666810035705453 ], [ -73.473571777343636, -6.667191028594971 ], [ -73.474906921386605, -6.666860103607178 ], [ -73.47637939453125, -6.668251037597656 ], [ -73.476898193359318, -6.668099880218506 ], [ -73.476829528808594, -6.667109012603703 ], [ -73.477096557617074, -6.666860103607178 ], [ -73.478340148925668, -6.667099952697754 ], [ -73.479560852050724, -6.668209075927678 ], [ -73.479827880859318, -6.66814994812006 ], [ -73.480293273925781, -6.667459964752197 ], [ -73.480842590332031, -6.667379856109619 ], [ -73.483619689941406, -6.670180797576847 ], [ -73.483612060546875, -6.671380043029728 ], [ -73.482910156249943, -6.672338962554932 ], [ -73.482887268066349, -6.672779083251896 ], [ -73.484107971191406, -6.673649787902775 ], [ -73.485191345214787, -6.674109935760441 ], [ -73.48602294921875, -6.673960208892822 ], [ -73.487236022949219, -6.672859191894474 ], [ -73.487640380859375, -6.672779083251896 ], [ -73.488082885742188, -6.672689914703369 ], [ -73.488876342773438, -6.673380851745605 ], [ -73.489906311035156, -6.674931049346924 ], [ -73.490547180175668, -6.675119876861515 ], [ -73.492347717285099, -6.67319917678833 ], [ -73.493103027343693, -6.673169136047306 ], [ -73.493736267089844, -6.673529148101807 ], [ -73.494712829589787, -6.673139095306396 ], [ -73.494911193847599, -6.672891139984074 ], [ -73.494789123535156, -6.672229766845703 ], [ -73.495300292968693, -6.671969890594482 ], [ -73.495521545410156, -6.67225980758667 ], [ -73.495582580566349, -6.673939228057804 ], [ -73.495986938476562, -6.674328804016056 ], [ -73.496452331542912, -6.674389839172363 ], [ -73.497589111328068, -6.673230171203613 ], [ -73.498001098632812, -6.671719074249268 ], [ -73.498847961425781, -6.671029090881348 ], [ -73.499206542968693, -6.671070098876896 ], [ -73.499397277831974, -6.671579837799015 ], [ -73.498428344726506, -6.67267894744873 ], [ -73.498489379882812, -6.672949790954533 ], [ -73.499549865722656, -6.672958850860596 ], [ -73.500106811523438, -6.673189163207951 ], [ -73.500946044921875, -6.673988819122314 ], [ -73.501510620117074, -6.673740863799992 ], [ -73.50128173828125, -6.672460079193115 ], [ -73.501586914062443, -6.672300815582275 ], [ -73.502441406249943, -6.673139095306396 ], [ -73.503616333007812, -6.673208236694279 ], [ -73.504356384277287, -6.674800872802734 ], [ -73.505088806152344, -6.675128936767578 ], [ -73.505493164062443, -6.674931049346924 ], [ -73.505546569824219, -6.674369812011719 ], [ -73.504676818847656, -6.672958850860596 ], [ -73.505287170410156, -6.672560214996281 ], [ -73.506095886230469, -6.672729015350342 ], [ -73.507347106933594, -6.673809051513615 ], [ -73.508316040039062, -6.675128936767578 ], [ -73.509162902832031, -6.675229072570801 ], [ -73.510307312011719, -6.675010204315186 ], [ -73.512229919433594, -6.675908088684082 ], [ -73.512901306152344, -6.676778793334961 ], [ -73.512397766113281, -6.677750110626164 ], [ -73.512367248535099, -6.678209781646729 ], [ -73.512809753417969, -6.678569793701172 ], [ -73.513778686523381, -6.678339958190918 ], [ -73.514472961425724, -6.678569793701172 ], [ -73.514678955078125, -6.678980827331543 ], [ -73.514579772949105, -6.680250167846623 ], [ -73.515296936035156, -6.680819988250732 ], [ -73.515830993652344, -6.680689811706543 ], [ -73.516311645507812, -6.68011999130249 ], [ -73.516487121581918, -6.678209781646729 ], [ -73.5169677734375, -6.677399158477783 ], [ -73.519317626953068, -6.676670074462834 ], [ -73.521148681640568, -6.676661014556828 ], [ -73.521476745605469, -6.677159786224365 ], [ -73.520111083984261, -6.678468227386475 ], [ -73.520187377929631, -6.678851127624455 ], [ -73.521377563476562, -6.679849147796631 ], [ -73.522918701171875, -6.679638862609863 ], [ -73.524246215820312, -6.679928779602051 ], [ -73.524406433105469, -6.680370807647705 ], [ -73.523811340331974, -6.681278228759709 ], [ -73.523841857910156, -6.681719779968205 ], [ -73.524162292480469, -6.682051181793213 ], [ -73.524986267089844, -6.682068824767953 ], [ -73.525627136230412, -6.681418895721436 ], [ -73.527450561523324, -6.680809020996094 ], [ -73.528450012207031, -6.680829048156625 ], [ -73.528877258300724, -6.681099891662541 ], [ -73.528518676757812, -6.68169116973877 ], [ -73.527023315429688, -6.682411193847599 ], [ -73.526679992675724, -6.682919025421143 ], [ -73.527046203613224, -6.684040069580021 ], [ -73.527717590331974, -6.684460163116455 ], [ -73.528060913085938, -6.684669017791691 ], [ -73.528701782226562, -6.684749126434326 ], [ -73.529083251953125, -6.684488773345834 ], [ -73.529342651367131, -6.684120178222599 ], [ -73.529327392578068, -6.683471202850342 ], [ -73.529739379882699, -6.683110237121525 ], [ -73.530548095703125, -6.683160781860352 ], [ -73.531272888183594, -6.684339046478215 ], [ -73.531967163085938, -6.684689998626709 ], [ -73.533668518066406, -6.684240818023682 ], [ -73.535667419433594, -6.682960033416691 ], [ -73.536468505859375, -6.683060169219971 ], [ -73.536537170410156, -6.683409214019719 ], [ -73.535957336425781, -6.684219837188664 ], [ -73.536239624023438, -6.684589862823486 ], [ -73.537109375, -6.684869766235352 ], [ -73.537429809570256, -6.685210227966309 ], [ -73.537406921386719, -6.6857590675354 ], [ -73.537010192871094, -6.686369895935059 ], [ -73.537170410156193, -6.686889171600285 ], [ -73.538261413574219, -6.68683910369873 ], [ -73.53961181640625, -6.686038970947209 ], [ -73.540336608886719, -6.686520099639836 ], [ -73.540206909179631, -6.686968803405705 ], [ -73.539482116699219, -6.687768936157227 ], [ -73.540283203125, -6.689431190490723 ], [ -73.540176391601562, -6.689758777618351 ], [ -73.539382934570312, -6.690360069274902 ], [ -73.539421081542969, -6.69064998626709 ], [ -73.540122985839787, -6.691189765930119 ], [ -73.539405822753906, -6.692389011383 ], [ -73.539405822753906, -6.693239212036076 ], [ -73.539657592773324, -6.693698883056641 ], [ -73.540641784667969, -6.694430828094369 ], [ -73.541961669921875, -6.694788932800236 ], [ -73.542266845703125, -6.696471214294434 ], [ -73.543823242187443, -6.696520805358887 ], [ -73.544319152831974, -6.696749210357666 ], [ -73.544868469238224, -6.697618961334172 ], [ -73.544990539550724, -6.69890022277832 ], [ -73.545257568359318, -6.699289798736572 ], [ -73.546485900878906, -6.699289798736572 ], [ -73.547348022460881, -6.700597763061523 ], [ -73.547637939453068, -6.700569152832031 ], [ -73.548233032226506, -6.699989795684814 ], [ -73.548606872558537, -6.699948787689209 ], [ -73.548759460449219, -6.700170040130558 ], [ -73.549797058105469, -6.701660156249943 ], [ -73.550743103027344, -6.701271057128906 ], [ -73.551361083984318, -6.701409816741887 ], [ -73.551750183105412, -6.703139781951904 ], [ -73.5540771484375, -6.704239845275879 ], [ -73.554191589355469, -6.704848766326904 ], [ -73.553672790527287, -6.706019878387451 ], [ -73.554328918456974, -6.707100868225098 ], [ -73.553359985351506, -6.708059787750244 ], [ -73.553367614746037, -6.708779811859074 ], [ -73.555969238281136, -6.709889888763428 ], [ -73.556976318359375, -6.711540222167969 ], [ -73.55806732177723, -6.712009906768799 ], [ -73.558509826660099, -6.712479114532357 ], [ -73.558486938476562, -6.71284008026123 ], [ -73.557777404785043, -6.713438987731934 ], [ -73.557846069335881, -6.713890075683537 ], [ -73.559967041015568, -6.715788841247559 ], [ -73.560966491699219, -6.715909957885742 ], [ -73.561576843261662, -6.716209888458252 ], [ -73.561096191406193, -6.717148780822697 ], [ -73.561470031738224, -6.717648029327393 ], [ -73.561813354492188, -6.718799114227295 ], [ -73.562271118164062, -6.719380855560303 ], [ -73.561897277832031, -6.720800876617375 ], [ -73.562072753906136, -6.721970081329346 ], [ -73.562690734863281, -6.72215890884388 ], [ -73.563140869140625, -6.721710205078068 ], [ -73.563697814941406, -6.721639156341496 ], [ -73.564903259277287, -6.7223801612854 ], [ -73.565559387207031, -6.722400188446045 ], [ -73.566352844238224, -6.721798896789551 ], [ -73.567543029785156, -6.721929073333683 ], [ -73.568237304687443, -6.721701145172119 ], [ -73.56951904296875, -6.722910881042424 ], [ -73.569786071777287, -6.723369121551514 ], [ -73.569847106933594, -6.72429895401001 ], [ -73.570350646972599, -6.724520206451359 ], [ -73.570899963378906, -6.724459171295166 ], [ -73.571533203125, -6.7239089012146 ], [ -73.573165893554688, -6.724009990692139 ], [ -73.574462890624943, -6.723419189453068 ], [ -73.575958251953068, -6.723879814147892 ], [ -73.576896667480469, -6.724709033966064 ], [ -73.577186584472656, -6.724968910217228 ], [ -73.578186035156136, -6.725078105926514 ], [ -73.578781127929688, -6.724839210510254 ], [ -73.579696655273381, -6.723920822143555 ], [ -73.580596923828125, -6.723830223083496 ], [ -73.581398010253849, -6.724449157714787 ], [ -73.582191467285043, -6.72579908370966 ], [ -73.582839965820256, -6.726288795471135 ], [ -73.583351135253906, -6.725910186767521 ], [ -73.583457946777344, -6.724989891052246 ], [ -73.583686828613224, -6.724699974060059 ], [ -73.585227966308537, -6.724449157714787 ], [ -73.586402893066406, -6.723289012908936 ], [ -73.586936950683537, -6.723238945007324 ], [ -73.587326049804631, -6.723509788513184 ], [ -73.587432861328068, -6.72406005859375 ], [ -73.586776733398438, -6.725358963012638 ], [ -73.586898803710938, -6.726069927215519 ], [ -73.587432861328068, -6.72615909576416 ], [ -73.588127136230469, -6.72576904296875 ], [ -73.588958740234318, -6.725849151611328 ], [ -73.589241027831974, -6.727278232574406 ], [ -73.589836120605469, -6.727698802947941 ], [ -73.590377807617131, -6.7276291847229 ], [ -73.591026306152287, -6.727138996124211 ], [ -73.592025756835938, -6.727698802947941 ], [ -73.592750549316349, -6.727189064025879 ], [ -73.593101501464844, -6.727278232574406 ], [ -73.593452453613281, -6.727880001068115 ], [ -73.592987060546875, -6.729098796844482 ], [ -73.592979431152344, -6.730191230773926 ], [ -73.593620300292912, -6.7306809425354 ], [ -73.594482421874943, -6.729728221893311 ], [ -73.595367431640625, -6.729619026184082 ], [ -73.595840454101562, -6.730079174041691 ], [ -73.595336914062443, -6.731469154357796 ], [ -73.595611572265568, -6.732230186462402 ], [ -73.596702575683594, -6.73218917846674 ], [ -73.597496032714844, -6.731320858001709 ], [ -73.598838806152344, -6.730710029602051 ], [ -73.600585937499943, -6.730699062347355 ], [ -73.6015625, -6.73091983795166 ], [ -73.602798461914062, -6.732038974761963 ], [ -73.602691650390568, -6.734179019927979 ], [ -73.604026794433537, -6.734580039978027 ], [ -73.604629516601562, -6.735410213470459 ], [ -73.606796264648324, -6.735280036926213 ], [ -73.606948852539062, -6.735619068145695 ], [ -73.606666564941349, -6.737399101257267 ], [ -73.607101440429688, -6.737608909606877 ], [ -73.608222961425724, -6.737500190734863 ], [ -73.608985900878849, -6.737679958343392 ], [ -73.610076904296875, -6.739929199218693 ], [ -73.610733032226562, -6.740570068359318 ], [ -73.611968994140625, -6.741189956664982 ], [ -73.613136291503906, -6.741378784179688 ], [ -73.61590576171875, -6.740418910980168 ], [ -73.616859436035156, -6.740599155426025 ], [ -73.617172241210881, -6.741478919982853 ], [ -73.618202209472656, -6.742081165313721 ], [ -73.618171691894531, -6.742368221282959 ], [ -73.617340087890625, -6.743208885192871 ], [ -73.617523193359375, -6.743828773498535 ], [ -73.618865966796875, -6.743749141693058 ], [ -73.619445800781193, -6.744209766387883 ], [ -73.620635986328125, -6.743958950042668 ], [ -73.621688842773438, -6.745429039001408 ], [ -73.623786926269531, -6.745429039001408 ], [ -73.624229431152287, -6.746530055999699 ], [ -73.624816894531193, -6.747119903564453 ], [ -73.624809265136662, -6.747681140899658 ], [ -73.624298095703125, -6.748208999633789 ], [ -73.622940063476562, -6.748939037322998 ], [ -73.622383117675781, -6.749670028686523 ], [ -73.622276306152344, -6.750131130218506 ], [ -73.622467041015625, -6.750538825988713 ], [ -73.624282836914062, -6.750409126281738 ], [ -73.624221801757756, -6.752159118652344 ], [ -73.624656677246094, -6.75262880325306 ], [ -73.62542724609375, -6.752610206603947 ], [ -73.625701904296875, -6.752019882202148 ], [ -73.625740051269474, -6.751200199127197 ], [ -73.625946044921818, -6.75101995468134 ], [ -73.626319885253849, -6.751039981841984 ], [ -73.626930236816406, -6.751358985900879 ], [ -73.628562927246094, -6.752230167388916 ], [ -73.629310607910156, -6.752130031585693 ], [ -73.630172729492188, -6.751039981841984 ], [ -73.630661010742188, -6.750848770141545 ], [ -73.632209777832031, -6.751779079437199 ], [ -73.634376525878906, -6.75153923034668 ], [ -73.63494873046875, -6.752789974212646 ], [ -73.635513305664062, -6.753389835357666 ], [ -73.636383056640625, -6.753708839416504 ], [ -73.638175964355355, -6.753889083862248 ], [ -73.638313293457031, -6.754340171813965 ], [ -73.637931823730469, -6.755408763885498 ], [ -73.638893127441406, -6.756009101867676 ], [ -73.638542175292912, -6.75725078582758 ], [ -73.638755798339844, -6.757949829101506 ], [ -73.639266967773438, -6.758328914642334 ], [ -73.639846801757812, -6.758360862731934 ], [ -73.640541076660099, -6.757209777832031 ], [ -73.641250610351562, -6.75721883773798 ], [ -73.641441345214844, -6.75770902633667 ], [ -73.641212463378849, -6.759438991546631 ], [ -73.642768859863281, -6.760849952697754 ], [ -73.643127441406193, -6.762379169464111 ], [ -73.644142150878906, -6.763471126556396 ], [ -73.643531799316406, -6.764560222625732 ], [ -73.644256591796818, -6.765829086303711 ], [ -73.644256591796818, -6.766281127929688 ], [ -73.643547058105469, -6.767350196838379 ], [ -73.643913269042969, -6.76787805557251 ], [ -73.643798828124886, -6.769979953765869 ], [ -73.644638061523381, -6.77170991897583 ], [ -73.643569946289062, -6.773849964141846 ], [ -73.643547058105469, -6.774569988250732 ], [ -73.64422607421875, -6.775420188903809 ], [ -73.646217346191406, -6.776070117950383 ], [ -73.646537780761662, -6.776529788970947 ], [ -73.64642333984375, -6.777990818023682 ], [ -73.64656829833973, -6.778219223022404 ], [ -73.647109985351506, -6.778251171112004 ], [ -73.648300170898438, -6.776860237121525 ], [ -73.649772644042912, -6.776889801025391 ], [ -73.650596618652344, -6.777469158172551 ], [ -73.650756835937443, -6.778359889984131 ], [ -73.651237487792855, -6.778859138488713 ], [ -73.651885986328068, -6.778728961944523 ], [ -73.652366638183537, -6.779018878936711 ], [ -73.652816772460938, -6.780600070953312 ], [ -73.652732849121037, -6.783541202545109 ], [ -73.653076171875, -6.783979892730713 ], [ -73.653976440429631, -6.784158229827881 ], [ -73.654228210449219, -6.784530162811222 ], [ -73.653495788574162, -6.785778999328613 ], [ -73.653678894042969, -6.786690235137939 ], [ -73.65423583984375, -6.786959171295166 ], [ -73.655212402343693, -6.786690235137939 ], [ -73.655921936035156, -6.786819934844971 ], [ -73.656028747558594, -6.787269115447998 ], [ -73.655532836913949, -6.78835916519165 ], [ -73.655670166015625, -6.788801193237248 ], [ -73.656471252441349, -6.788898944854736 ], [ -73.657485961914062, -6.788558959960881 ], [ -73.657752990722656, -6.788859844207764 ], [ -73.657402038574162, -6.789910793304387 ], [ -73.657661437988281, -6.790891170501652 ], [ -73.658081054687443, -6.791079998016357 ], [ -73.659271240234375, -6.790970802307072 ], [ -73.660133361816406, -6.791759014129639 ], [ -73.660423278808594, -6.792750835418644 ], [ -73.659576416015625, -6.793970108032227 ], [ -73.6605224609375, -6.794858932495117 ], [ -73.663246154785099, -6.794699192047062 ], [ -73.663467407226562, -6.795021057128849 ], [ -73.6632080078125, -6.79580020904541 ], [ -73.663368225097656, -6.796409130096436 ], [ -73.664482116699162, -6.797239780426025 ], [ -73.665527343749943, -6.797550201416016 ], [ -73.665756225585938, -6.797769069671631 ], [ -73.665863037109375, -6.799159049987793 ], [ -73.666915893554688, -6.799880027770939 ], [ -73.666870117187443, -6.800708770751953 ], [ -73.666206359863224, -6.80170822143549 ], [ -73.665962219238281, -6.802779197692871 ], [ -73.665992736816349, -6.804259777069035 ], [ -73.66644287109375, -6.805261135101262 ], [ -73.666976928710824, -6.805600166320801 ], [ -73.667877197265625, -6.805759906768799 ], [ -73.668296813964787, -6.806731224060002 ], [ -73.669448852539006, -6.806810855865422 ], [ -73.670692443847543, -6.808388233184758 ], [ -73.671882629394531, -6.808138847351074 ], [ -73.673492431640625, -6.809638977050724 ], [ -73.675392150878906, -6.809638977050724 ], [ -73.675819396972599, -6.810120105743351 ], [ -73.675949096679688, -6.811669826507512 ], [ -73.676506042480412, -6.812290191650334 ], [ -73.678588867187443, -6.812559127807617 ], [ -73.68099212646473, -6.814408779144287 ], [ -73.682060241699219, -6.814189910888615 ], [ -73.683280944824105, -6.815460205078068 ], [ -73.684486389160099, -6.816180229186955 ], [ -73.684410095214787, -6.818819046020451 ], [ -73.684883117675724, -6.819599151611328 ], [ -73.684776306152287, -6.82144021987915 ], [ -73.685310363769531, -6.821938991546631 ], [ -73.686996459960881, -6.821599960327092 ], [ -73.687828063964787, -6.822329044342041 ], [ -73.687698364257812, -6.823329925537109 ], [ -73.687248229980469, -6.823900222778263 ], [ -73.687255859374943, -6.824560165405217 ], [ -73.687461853027287, -6.824870109558049 ], [ -73.68817138671875, -6.825008869171086 ], [ -73.688652038574219, -6.825419902801514 ], [ -73.688407897949162, -6.826428890228271 ], [ -73.688491821289006, -6.827259063720646 ], [ -73.689659118652287, -6.828568935394287 ], [ -73.689796447753906, -6.830018997192383 ], [ -73.691192626953068, -6.831480026245117 ], [ -73.690460205078125, -6.832728862762451 ], [ -73.690452575683594, -6.833290100097599 ], [ -73.691207885742188, -6.834090232849121 ], [ -73.694549560546875, -6.835609912872314 ], [ -73.695518493652344, -6.836521148681584 ], [ -73.695610046386719, -6.838889122009221 ], [ -73.696395874023438, -6.84004020690918 ], [ -73.696708679199162, -6.8401198387146 ], [ -73.697273254394474, -6.839780807495117 ], [ -73.697570800781193, -6.838829994201603 ], [ -73.698127746581974, -6.838369846343994 ], [ -73.698593139648438, -6.838398933410645 ], [ -73.700256347656136, -6.839320182800293 ], [ -73.700447082519418, -6.8384108543396 ], [ -73.699836730957031, -6.837409973144531 ], [ -73.700248718261662, -6.837019920349121 ], [ -73.701461791992131, -6.83741903305048 ], [ -73.702301025390625, -6.839039802551213 ], [ -73.703529357910156, -6.839839935302734 ], [ -73.704666137695312, -6.839179039001408 ], [ -73.706382751464844, -6.840069770812931 ], [ -73.708198547363281, -6.839018821716309 ], [ -73.708839416503793, -6.838960170745736 ], [ -73.709976196289006, -6.839320182800293 ], [ -73.710830688476506, -6.84004020690918 ], [ -73.711097717285099, -6.840619087219238 ], [ -73.711067199707031, -6.841639995574951 ], [ -73.711921691894531, -6.842709064483643 ], [ -73.711311340331974, -6.843840122222844 ], [ -73.711257934570312, -6.844399929046631 ], [ -73.71209716796875, -6.84568977355957 ], [ -73.71209716796875, -6.84626913070673 ], [ -73.711700439453011, -6.847198963165226 ], [ -73.712440490722599, -6.848099231719971 ], [ -73.712226867675781, -6.849919795989933 ], [ -73.713989257812386, -6.851630210876465 ], [ -73.712562561035043, -6.852920055389347 ], [ -73.712516784667969, -6.853939056396484 ], [ -73.713195800781193, -6.854399204254094 ], [ -73.714027404785156, -6.854440212249756 ], [ -73.715187072753906, -6.856308937072754 ], [ -73.716949462890511, -6.857779026031494 ], [ -73.716636657714787, -6.858469009399414 ], [ -73.715286254882812, -6.857978820800724 ], [ -73.714591979980469, -6.858469009399414 ], [ -73.714248657226506, -6.858980178832951 ], [ -73.714317321777344, -6.860007762908936 ], [ -73.714385986328125, -6.861090183258 ], [ -73.714736938476506, -6.861538887023869 ], [ -73.715690612792912, -6.861861228942814 ], [ -73.715888977050724, -6.862150192260742 ], [ -73.715141296386719, -6.863479137420654 ], [ -73.715476989746094, -6.863768100738469 ], [ -73.716850280761605, -6.863669872283936 ], [ -73.717079162597656, -6.863819122314453 ], [ -73.717109680175724, -6.864358901977539 ], [ -73.716293334960938, -6.865349769592228 ], [ -73.716400146484375, -6.865730762481633 ], [ -73.718917846679631, -6.865681171417236 ], [ -73.719299316406193, -6.865715026855412 ], [ -73.720039367675781, -6.866401195526123 ], [ -73.720458984374943, -6.867218971252441 ], [ -73.720306396484375, -6.867590904235783 ], [ -73.719696044921818, -6.869178771972656 ], [ -73.72088623046875, -6.870569229125977 ], [ -73.720497131347656, -6.872079849243164 ], [ -73.721107482910099, -6.873421192169189 ], [ -73.721160888671875, -6.874240875244141 ], [ -73.720916748046818, -6.87503004074091 ], [ -73.719619750976449, -6.876330852508545 ], [ -73.719619750976449, -6.876910209655762 ], [ -73.720291137695312, -6.877651214599609 ], [ -73.720771789550781, -6.877610206604004 ], [ -73.721351623535156, -6.877161026000977 ], [ -73.721755981445312, -6.877270221710148 ], [ -73.722023010253906, -6.878530025482121 ], [ -73.723060607910156, -6.879108905792236 ], [ -73.723167419433594, -6.880030155181885 ], [ -73.724693298339844, -6.881488800048828 ], [ -73.724555969238224, -6.88201999664301 ], [ -73.7236328125, -6.882568836212158 ], [ -73.723602294921818, -6.883288860321045 ], [ -73.722908020019531, -6.883900165557861 ], [ -73.723121643066349, -6.884389877319336 ], [ -73.724090576171818, -6.884650230407658 ], [ -73.723793029785099, -6.885829925537053 ], [ -73.723999023437443, -6.886488914489632 ], [ -73.725067138671875, -6.887249946594238 ], [ -73.727333068847599, -6.887498855590763 ], [ -73.727630615234261, -6.887989044189453 ], [ -73.727516174316349, -6.888899803161621 ], [ -73.727722167968636, -6.889810085296631 ], [ -73.728607177734375, -6.890429973602295 ], [ -73.729202270507812, -6.890039920806885 ], [ -73.729621887206974, -6.890200138092041 ], [ -73.730369567871037, -6.891778945922795 ], [ -73.731178283691406, -6.892381191253662 ], [ -73.730827331542969, -6.893130779266357 ], [ -73.730987548828125, -6.893949031829834 ], [ -73.732086181640568, -6.893850803375244 ], [ -73.732559204101506, -6.894111156463566 ], [ -73.732803344726562, -6.894508838653508 ], [ -73.732803344726562, -6.895439147949219 ], [ -73.733146667480412, -6.89608907699585 ], [ -73.733558654785156, -6.896300792694035 ], [ -73.735198974609375, -6.896189212799015 ], [ -73.735771179199219, -6.897348880767709 ], [ -73.736938476562443, -6.897600173950138 ], [ -73.738471984863224, -6.898910045623779 ], [ -73.739639282226506, -6.898890018463135 ], [ -73.739875793457031, -6.899188041687012 ], [ -73.73974609375, -6.900199890136719 ], [ -73.740699768066406, -6.900720119476318 ], [ -73.741065979003849, -6.901938915252629 ], [ -73.741737365722599, -6.902439117431527 ], [ -73.74273681640625, -6.902538776397648 ], [ -73.744766235351506, -6.904418945312443 ], [ -73.745132446289062, -6.904838085174561 ], [ -73.745170593261662, -6.904988765716553 ], [ -73.745506286621094, -6.906168937683105 ], [ -73.746986389160043, -6.906519889831543 ], [ -73.747200012207031, -6.907958984374943 ], [ -73.746841430664062, -6.90975904464716 ], [ -73.746986389160043, -6.910869121551514 ], [ -73.747245788574162, -6.911349773406982 ], [ -73.748252868652344, -6.912158966064396 ], [ -73.748619079589844, -6.912888050079346 ], [ -73.747810363769474, -6.915328979492188 ], [ -73.747917175292912, -6.915860176086426 ], [ -73.748680114746037, -6.916639804840088 ], [ -73.748252868652344, -6.918788909912109 ], [ -73.748703002929574, -6.919139862060547 ], [ -73.749443054199162, -6.919130802154541 ], [ -73.750106811523381, -6.919488906860352 ], [ -73.7503662109375, -6.92192983627308 ], [ -73.754066467285156, -6.926609039306641 ], [ -73.754417419433537, -6.928948879241943 ], [ -73.754913330078125, -6.929180145263672 ], [ -73.75567626953125, -6.928699016571045 ], [ -73.756042480468693, -6.92874002456665 ], [ -73.756683349609318, -6.929279804229736 ], [ -73.757156372070256, -6.930469989776554 ], [ -73.757522583007812, -6.930728912353459 ], [ -73.758369445800781, -6.931328773498478 ], [ -73.759277343749943, -6.93372917175293 ], [ -73.760261535644531, -6.934830188751221 ], [ -73.760955810546875, -6.936030864715576 ], [ -73.7615966796875, -6.937829017639103 ], [ -73.761657714843693, -6.93848991394043 ], [ -73.760536193847656, -6.94045877456665 ], [ -73.760421752929631, -6.942008972167912 ], [ -73.759429931640625, -6.94297981262207 ], [ -73.759201049804688, -6.944048881530762 ], [ -73.758171081542969, -6.946000099182129 ], [ -73.75701904296875, -6.947050094604492 ], [ -73.755859374999886, -6.947528839111271 ], [ -73.755172729492131, -6.9486207962035 ], [ -73.753517150878906, -6.950058937072754 ], [ -73.753250122070256, -6.950948238372803 ], [ -73.753143310546875, -6.951088905334416 ], [ -73.752861022949219, -6.951448917388916 ], [ -73.750396728515568, -6.953379154205322 ], [ -73.750205993652287, -6.954740047454834 ], [ -73.749298095703125, -6.956328868865967 ], [ -73.749450683593693, -6.958099842071533 ], [ -73.74920654296875, -6.958950042724609 ], [ -73.748542785644531, -6.959619998931828 ], [ -73.746299743652287, -6.960689067840519 ], [ -73.745170593261662, -6.96163892745966 ], [ -73.744499206542912, -6.962829113006592 ], [ -73.744186401367131, -6.964269161224308 ], [ -73.744239807128906, -6.966210842132568 ], [ -73.744827270507812, -6.967029094696045 ], [ -73.746650695800781, -6.968708992004338 ], [ -73.747650146484318, -6.969190120697021 ], [ -73.748550415039062, -6.9692702293396 ], [ -73.750999450683594, -6.970911026000977 ], [ -73.752532958984375, -6.972369194030762 ], [ -73.753776550292969, -6.973959922790527 ], [ -73.756187438964844, -6.974489212036019 ], [ -73.759666442871037, -6.974549770355168 ], [ -73.760131835937443, -6.974881172180176 ], [ -73.760627746581918, -6.976499080657959 ], [ -73.761337280273438, -6.976900100708008 ], [ -73.761451721191349, -6.976959228515625 ], [ -73.761566162109318, -6.977460861206055 ], [ -73.761512756347656, -6.977671146392822 ], [ -73.760078430175781, -6.980490207672062 ], [ -73.760078430175781, -6.98343896865839 ], [ -73.758010864257812, -6.985629081726074 ], [ -73.756828308105469, -6.98613977432251 ], [ -73.753723144531193, -6.988271236419621 ], [ -73.747650146484318, -6.991520881652775 ], [ -73.743492126464844, -6.993188858032227 ], [ -73.740066528320312, -6.993920803070012 ], [ -73.738716125488281, -6.993888854980412 ], [ -73.735916137695256, -6.994339942932129 ], [ -73.734542846679688, -6.994839191436711 ], [ -73.733482360839844, -6.995550155639592 ], [ -73.730079650878849, -6.995879173278809 ], [ -73.729026794433537, -6.996188163757324 ], [ -73.72698974609375, -6.997900009155273 ], [ -73.725669860839844, -6.999639034271183 ], [ -73.725616455078068, -7.000749111175537 ], [ -73.727340698242074, -7.004500865936279 ], [ -73.727508544921818, -7.017388820648137 ], [ -73.726936340331974, -7.019540786743164 ], [ -73.726799011230469, -7.021920204162598 ], [ -73.726966857910156, -7.023100852966309 ], [ -73.727951049804688, -7.025719165802002 ], [ -73.727706909179631, -7.026100158691349 ], [ -73.72735595703125, -7.029839992523193 ], [ -73.726539611816406, -7.032999038696289 ], [ -73.726547241210881, -7.034749031066895 ], [ -73.726905822753906, -7.035268783569336 ], [ -73.733322143554631, -7.040800094604492 ], [ -73.734832763671875, -7.041700839996281 ], [ -73.736526489257812, -7.041810035705566 ], [ -73.740409851074105, -7.041608810424748 ], [ -73.742706298828125, -7.04095983505249 ], [ -73.749938964843693, -7.036109924316349 ], [ -73.753128051757812, -7.034489154815674 ], [ -73.754371643066406, -7.034191131591797 ], [ -73.756027221679631, -7.034430027008057 ], [ -73.7576904296875, -7.035859107971135 ], [ -73.758605957031193, -7.037759780883789 ], [ -73.757102966308594, -7.043041229248047 ], [ -73.758888244628849, -7.051778793334961 ], [ -73.762077331542969, -7.057079792022705 ], [ -73.773040771484375, -7.068618774414062 ], [ -73.788757324218636, -7.093969821929875 ], [ -73.789146423339844, -7.09467887878418 ], [ -73.794296264648438, -7.104168891906738 ], [ -73.795677185058594, -7.113588809967041 ], [ -73.791229248046818, -7.117219924926701 ], [ -73.787528991699219, -7.120240211486816 ], [ -73.786262512206974, -7.120910167694035 ], [ -73.785476684570312, -7.121319770812931 ], [ -73.777153015136719, -7.131339073181152 ], [ -73.766311645507756, -7.140258789062443 ], [ -73.762290954589844, -7.144498825073185 ], [ -73.755920410156193, -7.15123987197876 ], [ -73.753341674804631, -7.157238960266113 ], [ -73.750801086425668, -7.163159847259521 ], [ -73.746589660644474, -7.179910182952881 ], [ -73.740089416503849, -7.194349765777588 ], [ -73.730377197265568, -7.205789089202881 ], [ -73.714462280273381, -7.220189094543457 ], [ -73.708671569824219, -7.229121208190861 ], [ -73.706565856933594, -7.23691987991333 ], [ -73.706031799316406, -7.247600078582764 ], [ -73.705299377441349, -7.262397766113281 ], [ -73.702499389648438, -7.272729873657227 ], [ -73.6953125, -7.285559177398625 ], [ -73.689056396484375, -7.296779155731201 ], [ -73.688102722167969, -7.304129123687744 ], [ -73.69036865234375, -7.310569763183594 ], [ -73.692649841308594, -7.313790798187199 ], [ -73.700439453124943, -7.320479869842529 ], [ -73.705116271972599, -7.324679851531926 ], [ -73.730712890625, -7.336459159851074 ], [ -73.737129211425724, -7.338088035583496 ], [ -73.740463256835938, -7.337749004363957 ], [ -73.745635986328068, -7.337209224700928 ], [ -73.75347900390625, -7.334679126739502 ], [ -73.760238647460881, -7.332499980926457 ], [ -73.760520935058537, -7.333110809326115 ], [ -73.761070251464787, -7.333718776702824 ], [ -73.761985778808594, -7.33436918258667 ], [ -73.763191223144474, -7.334770202636719 ], [ -73.765525817871094, -7.334949970245361 ], [ -73.769996643066406, -7.335909843444824 ], [ -73.771575927734318, -7.335909843444824 ], [ -73.778556823730355, -7.334858894348031 ], [ -73.781791687011662, -7.335539817810002 ], [ -73.785057067871094, -7.336750984191838 ], [ -73.786293029785156, -7.33696889877308 ], [ -73.793777465820256, -7.336638927459717 ], [ -73.798049926757812, -7.337209224700928 ], [ -73.809303283691406, -7.337928771972656 ], [ -73.809539794921818, -7.337940216064453 ], [ -73.811790466308594, -7.337948799133301 ], [ -73.820571899414062, -7.337989807128906 ], [ -73.828842163085938, -7.340320110320988 ], [ -73.834266662597656, -7.343490123748722 ], [ -73.837211608886719, -7.34817981719965 ], [ -73.841026306152344, -7.353490829467773 ], [ -73.842582702636719, -7.356318950653076 ], [ -73.843193054199162, -7.357119083404541 ], [ -73.84564208984375, -7.358580112457275 ], [ -73.848548889160099, -7.359950065612793 ], [ -73.849670410156193, -7.360358238220158 ], [ -73.851486206054631, -7.362919807434082 ], [ -73.858818054199162, -7.370759963989258 ], [ -73.867759704589844, -7.374470233917236 ], [ -73.869155883788949, -7.374508857726994 ], [ -73.877189636230469, -7.374739170074406 ], [ -73.888916015625, -7.370878219604492 ], [ -73.897453308105412, -7.366781234741211 ], [ -73.907127380371094, -7.361540794372559 ], [ -73.912193298339844, -7.359720230102539 ], [ -73.918800354003906, -7.357981204986572 ], [ -73.921623229980469, -7.357240200042725 ], [ -73.933227539062443, -7.354128837585449 ], [ -73.936813354492188, -7.35315990447998 ], [ -73.937728881835938, -7.352529048919678 ], [ -73.945343017578068, -7.34722995758051 ], [ -73.953392028808594, -7.346108913421574 ], [ -73.953987121582031, -7.348780155181885 ], [ -73.954521179199219, -7.351171016693058 ], [ -73.954032897949105, -7.360349178314209 ], [ -73.949600219726562, -7.372959136962834 ], [ -73.936172485351506, -7.39586877822876 ], [ -73.925041198730355, -7.416720867156926 ], [ -73.917610168457031, -7.434829235076847 ], [ -73.915946960449162, -7.446990013122559 ], [ -73.91705322265625, -7.45894002914423 ], [ -73.919677734374943, -7.464789867401066 ], [ -73.920455932617131, -7.46652889251709 ], [ -73.924308776855469, -7.473598957061711 ], [ -73.926841735839787, -7.478260040283146 ], [ -73.934371948242131, -7.496440887451172 ], [ -73.934272766113224, -7.497879028320256 ], [ -73.934661865234318, -7.500769138336182 ], [ -73.937469482421875, -7.504010200500431 ], [ -73.937591552734318, -7.504199028015137 ], [ -73.938873291015625, -7.507300853729248 ], [ -73.93994140625, -7.509881019592285 ], [ -73.940368652343693, -7.509998798370361 ], [ -73.940910339355469, -7.512229919433594 ], [ -73.941352844238281, -7.514019966125431 ], [ -73.941825866699105, -7.515221118927002 ], [ -73.942039489746094, -7.516769886016846 ], [ -73.943191528320312, -7.51987886428833 ], [ -73.944602966308594, -7.522879123687744 ], [ -73.946846008300724, -7.525680065155029 ], [ -73.948638916015625, -7.527120113372746 ], [ -73.952049255371094, -7.528329849243164 ], [ -73.962722778320312, -7.529269218444824 ], [ -73.964225769042912, -7.529669761657715 ], [ -73.967025756835938, -7.530839920043888 ], [ -73.973480224609318, -7.532559871673527 ], [ -73.976982116699162, -7.532790184020939 ], [ -73.9788818359375, -7.532589912414551 ], [ -73.982131958007756, -7.531070232391301 ], [ -73.983322143554688, -7.530738830566406 ], [ -73.983718872070312, -7.530630111694336 ], [ -73.9853515625, -7.530869007110596 ], [ -73.98760986328125, -7.531781196594181 ], [ -73.988876342773438, -7.530428886413574 ], [ -73.98956298828125, -7.529129981994629 ], [ -73.991371154785156, -7.527191162109261 ], [ -73.993186950683594, -7.524599075317383 ], [ -73.999176025390625, -7.518421173095703 ], [ -74.000038146972656, -7.518040180206242 ], [ -74.006179809570256, -7.517029762268066 ], [ -74.009368896484375, -7.515850067138672 ], [ -74.018707275390625, -7.510320186614933 ], [ -74.023826599121037, -7.506427764892578 ], [ -74.025520324706974, -7.505469799041748 ], [ -74.030265808105469, -7.502129077911377 ], [ -74.033203125, -7.49951076507557 ], [ -74.035781860351562, -7.496708869934082 ], [ -74.038810729980355, -7.49255895614624 ], [ -74.040756225585938, -7.48943901062006 ], [ -74.042091369628906, -7.487809181213322 ], [ -74.046516418456974, -7.483939170837346 ], [ -74.049362182617131, -7.482490062713623 ], [ -74.054817199706974, -7.479209899902287 ], [ -74.063468933105469, -7.475638866424561 ], [ -74.069602966308537, -7.472339153289738 ], [ -74.077018737792912, -7.469710826873779 ], [ -74.082046508789062, -7.46668004989624 ], [ -74.084053039550781, -7.465750217437744 ], [ -74.090759277343693, -7.464280128479004 ], [ -74.103927612304631, -7.463521003723145 ], [ -74.112762451171875, -7.464669227600098 ], [ -74.121559143066349, -7.46652889251709 ], [ -74.128677368164062, -7.467169761657658 ], [ -74.134010314941406, -7.468120098113957 ], [ -74.137863159179631, -7.468338966369572 ], [ -74.143898010253849, -7.468290805816594 ], [ -74.150497436523438, -7.468729019165039 ], [ -74.15460205078125, -7.468320846557617 ], [ -74.166236877441406, -7.467889785766545 ], [ -74.170768737792912, -7.467260837554875 ], [ -74.173896789550781, -7.466578960418701 ], [ -74.177040100097656, -7.465599060058594 ], [ -74.180656433105469, -7.46497917175293 ], [ -74.186721801757756, -7.463521003723145 ], [ -74.189392089843693, -7.462309837341252 ], [ -74.193153381347656, -7.459919929504395 ], [ -74.196762084960938, -7.456929206848031 ], [ -74.20436859130848, -7.449479103088322 ], [ -74.208892822265625, -7.443789958953857 ], [ -74.213279724121094, -7.43755912780756 ], [ -74.216842651367131, -7.433010101318359 ], [ -74.219978332519474, -7.429518222808838 ], [ -74.223442077636605, -7.424428939819279 ], [ -74.227706909179631, -7.419510841369572 ], [ -74.230171203613281, -7.416069030761662 ], [ -74.237556457519418, -7.407900810241699 ], [ -74.241096496582031, -7.404308795928955 ], [ -74.242706298828011, -7.402188777923527 ], [ -74.244789123535099, -7.400119781494141 ], [ -74.246017456054631, -7.398398876190129 ], [ -74.24981689453125, -7.394039154052678 ], [ -74.255340576171875, -7.388518810272217 ], [ -74.258689880371094, -7.385799884796143 ], [ -74.259361267089787, -7.385480880737305 ], [ -74.260406494140625, -7.384448051452637 ], [ -74.262008666992188, -7.383609771728516 ], [ -74.265266418457031, -7.381250858306885 ], [ -74.269439697265625, -7.37872123718256 ], [ -74.273010253906193, -7.376879215240479 ], [ -74.279975891113224, -7.373829841613713 ], [ -74.282691955566406, -7.372971057891789 ], [ -74.284416198730469, -7.372140884399357 ], [ -74.289611816406193, -7.37060022354126 ], [ -74.293533325195256, -7.368598937988281 ], [ -74.294868469238224, -7.368279933929443 ], [ -74.295387268066406, -7.367910861968994 ], [ -74.304885864257699, -7.364490032196045 ], [ -74.308937072753906, -7.362538814544678 ], [ -74.313156127929631, -7.361019134521484 ], [ -74.320487976074219, -7.357389926910344 ], [ -74.329826354980469, -7.354488849639836 ], [ -74.336807250976506, -7.351058959960938 ], [ -74.339889526367188, -7.350168228149414 ], [ -74.341621398925781, -7.349310874938965 ], [ -74.345489501953068, -7.347890853881836 ], [ -74.355728149414062, -7.345419883728027 ], [ -74.363426208496037, -7.342480182647705 ], [ -74.365959167480469, -7.340818881988525 ], [ -74.370376586914006, -7.337228775024414 ], [ -74.382186889648438, -7.324039936065617 ], [ -74.386520385742074, -7.320329189300537 ], [ -74.389122009277344, -7.319001197814885 ], [ -74.393890380859375, -7.317338943481445 ], [ -74.400642395019531, -7.316020011901799 ], [ -74.404296875, -7.314799785614014 ], [ -74.406906127929631, -7.314370155334473 ], [ -74.409439086914062, -7.313339233398438 ], [ -74.416511535644531, -7.311480045318604 ], [ -74.418312072753906, -7.310819149017277 ], [ -74.422378540038949, -7.310268878936768 ], [ -74.426902770996094, -7.308468818664551 ], [ -74.430686950683594, -7.307378768920898 ], [ -74.437759399414062, -7.305859088897705 ], [ -74.440406799316406, -7.305778980255127 ], [ -74.442329406738281, -7.305118083953857 ], [ -74.445106506347656, -7.304528236389103 ], [ -74.450866699218693, -7.302441120147705 ], [ -74.455436706542912, -7.300518989562931 ], [ -74.456626892089844, -7.300500869750977 ], [ -74.460479736328125, -7.301410198211613 ], [ -74.461853027343693, -7.301469802856388 ], [ -74.463722229003906, -7.301050186157227 ], [ -74.467582702636605, -7.299560070037842 ], [ -74.47292327880848, -7.298261165618896 ], [ -74.475936889648438, -7.298069000244141 ], [ -74.479309082031193, -7.298179149627629 ], [ -74.484786987304688, -7.297749996185246 ], [ -74.488227844238281, -7.296800136566105 ], [ -74.496429443359375, -7.292930126190129 ], [ -74.497001647949219, -7.293210029602051 ], [ -74.499832153320312, -7.296350955963078 ], [ -74.501556396484375, -7.299190044403076 ], [ -74.503898620605412, -7.300640106201172 ], [ -74.505355834960938, -7.300748825073242 ], [ -74.506309509277344, -7.300401210784912 ], [ -74.507575988769531, -7.300268173217773 ], [ -74.509902954101506, -7.299388885498047 ], [ -74.511726379394474, -7.299200057983342 ], [ -74.513442993164006, -7.299530029296818 ], [ -74.516586303710881, -7.300590038299561 ], [ -74.519279479980469, -7.30196905136097 ], [ -74.523239135742188, -7.306509017944336 ], [ -74.524147033691406, -7.308011054992676 ], [ -74.525810241699219, -7.311700820922795 ], [ -74.527549743652287, -7.313849925994873 ], [ -74.532562255859375, -7.318880081176758 ], [ -74.535598754882812, -7.321539878845158 ], [ -74.538436889648381, -7.323429107666016 ], [ -74.540542602539062, -7.324090003967285 ], [ -74.540908813476506, -7.32443904876709 ], [ -74.541267395019474, -7.32528018951416 ], [ -74.542572021484375, -7.326959133148193 ], [ -74.543296813964787, -7.32866001129139 ], [ -74.545303344726506, -7.331960201263428 ], [ -74.546592712402344, -7.335089206695557 ], [ -74.54931640625, -7.339570045471191 ], [ -74.551071166992188, -7.343820095062199 ], [ -74.552398681640625, -7.345920085906982 ], [ -74.552772521972656, -7.347071170806828 ], [ -74.560157775878849, -7.354518890380859 ], [ -74.56195068359375, -7.355940818786621 ], [ -74.564537048339787, -7.359379768371582 ], [ -74.565933227539062, -7.362400054931641 ], [ -74.567352294921875, -7.364649772643986 ], [ -74.568649291992131, -7.368000030517521 ], [ -74.572563171386662, -7.374350070953312 ], [ -74.574546813964844, -7.379699230194092 ], [ -74.576431274414062, -7.383709907531738 ], [ -74.577186584472656, -7.38588905334467 ], [ -74.577629089355412, -7.388150215148869 ], [ -74.577552795410156, -7.391621112823486 ], [ -74.579048156738224, -7.39529895782465 ], [ -74.580818176269531, -7.397288799285775 ], [ -74.584892272949219, -7.40057992935175 ], [ -74.588088989257812, -7.40398979187006 ], [ -74.594985961914006, -7.415390014648381 ], [ -74.595878601074219, -7.418108940124512 ], [ -74.597450256347599, -7.420810222625676 ], [ -74.599822998046818, -7.425798892974854 ], [ -74.603202819824219, -7.430959224700928 ], [ -74.604446411132812, -7.433379173278809 ], [ -74.605583190917969, -7.434840202331486 ], [ -74.606727600097656, -7.437257766723633 ], [ -74.611549377441406, -7.444950103759709 ], [ -74.612236022949162, -7.446848869323674 ], [ -74.612358093261719, -7.450419902801514 ], [ -74.612922668456918, -7.45452976226801 ], [ -74.612953186035156, -7.456917762756291 ], [ -74.614006042480469, -7.460928916931152 ], [ -74.617652893066406, -7.467860221862793 ], [ -74.618476867675781, -7.470298767089844 ], [ -74.620231628417912, -7.473740100860596 ], [ -74.623191833496037, -7.478519916534424 ], [ -74.627250671386719, -7.483419895172119 ], [ -74.628067016601506, -7.484139919281006 ], [ -74.631523132324219, -7.486149787902832 ], [ -74.635757446289062, -7.490230083465576 ], [ -74.637351989746094, -7.49249076843256 ], [ -74.641502380371037, -7.49936914443964 ], [ -74.642608642578125, -7.503139019012394 ], [ -74.642738342285099, -7.504329204559326 ], [ -74.641517639160099, -7.508470058441162 ], [ -74.641456604003906, -7.510580062866211 ], [ -74.641990661621037, -7.51145076751709 ], [ -74.645317077636662, -7.514328956603947 ], [ -74.645851135253906, -7.515799999237004 ], [ -74.644302368164062, -7.521759033203125 ], [ -74.643516540527287, -7.526069164276123 ], [ -74.641197204589844, -7.533238887786865 ], [ -74.640792846679688, -7.538027763366642 ], [ -74.640838623046818, -7.540870189666748 ], [ -74.641456604003906, -7.543378829956055 ], [ -74.642478942871037, -7.54617977142334 ], [ -74.646171569824162, -7.554110050201359 ], [ -74.647468566894531, -7.558720111846924 ], [ -74.647926330566406, -7.559408187866211 ], [ -74.647857666015625, -7.56282901763916 ], [ -74.647590637207031, -7.564529895782471 ], [ -74.646408081054688, -7.567449092864933 ], [ -74.64459228515625, -7.570950031280461 ], [ -74.644157409667969, -7.572739124298096 ], [ -74.64382171630848, -7.575579166412297 ], [ -74.643249511718636, -7.576729774475098 ], [ -74.64111328125, -7.578468799591064 ], [ -74.632759094238168, -7.581289768218937 ], [ -74.630332946777344, -7.582379817962646 ], [ -74.626747131347599, -7.58526086807251 ], [ -74.62551116943348, -7.586600780487061 ], [ -74.622642517089787, -7.590740203857422 ], [ -74.621070861816406, -7.592528820037842 ], [ -74.617973327636662, -7.596758842468205 ], [ -74.611930847167969, -7.603309154510498 ], [ -74.608963012695312, -7.608288764953613 ], [ -74.607559204101506, -7.60998010635376 ], [ -74.606216430664006, -7.611098766326847 ], [ -74.603363037109318, -7.612770080566406 ], [ -74.600288391113281, -7.615668773651066 ], [ -74.599220275878906, -7.615979194641056 ], [ -74.5965576171875, -7.615970134735107 ], [ -74.595657348632756, -7.616628170013428 ], [ -74.595275878906193, -7.617920875549316 ], [ -74.595382690429688, -7.62161111831665 ], [ -74.594932556152344, -7.623208045959473 ], [ -74.594017028808537, -7.624811172485352 ], [ -74.5908203125, -7.628589153289795 ], [ -74.589256286621037, -7.629849910736084 ], [ -74.586631774902344, -7.630290031433105 ], [ -74.585266113281136, -7.630838871002197 ], [ -74.581512451171818, -7.634459972381535 ], [ -74.580093383789006, -7.63510084152216 ], [ -74.578117370605469, -7.635609149932804 ], [ -74.577133178710881, -7.636300086975041 ], [ -74.576828002929688, -7.642168045043945 ], [ -74.574310302734375, -7.647290229797363 ], [ -74.573722839355412, -7.649119853973332 ], [ -74.573318481445256, -7.656838893890381 ], [ -74.571586608886719, -7.6663498878479 ], [ -74.571662902832031, -7.671150207519531 ], [ -74.572586059570312, -7.674328804016113 ], [ -74.575141906738224, -7.678909778594914 ], [ -74.576477050781193, -7.679739952087346 ], [ -74.578956604003849, -7.679549217224064 ], [ -74.580009460449162, -7.679811000823918 ], [ -74.581840515136719, -7.681758880615178 ], [ -74.583335876464787, -7.684188842773438 ], [ -74.583831787109318, -7.685880184173584 ], [ -74.583641052246037, -7.694990158080941 ], [ -74.584327697753906, -7.697199821472111 ], [ -74.584457397460938, -7.698488235473576 ], [ -74.584251403808594, -7.700209140777588 ], [ -74.583900451660099, -7.701159000396729 ], [ -74.582206726074162, -7.705238819122258 ], [ -74.580726623535156, -7.706980228424072 ], [ -74.578506469726562, -7.708610057830811 ], [ -74.575965881347656, -7.711090087890625 ], [ -74.574279785156193, -7.71439886093134 ], [ -74.573127746581974, -7.71751880645752 ], [ -74.572738647460881, -7.719219207763672 ], [ -74.572357177734318, -7.721399784088078 ], [ -74.572158813476562, -7.725358963012695 ], [ -74.571662902832031, -7.727880001068002 ], [ -74.570686340332031, -7.73016977310175 ], [ -74.569160461425781, -7.731880187988281 ], [ -74.56829833984375, -7.732570171356144 ], [ -74.565345764160156, -7.734060764312744 ], [ -74.563346862792969, -7.735381126403809 ], [ -74.558280944824219, -7.740439891815186 ], [ -74.556808471679688, -7.741580009460449 ], [ -74.555206298828068, -7.741730213165283 ], [ -74.549873352050724, -7.740579128265381 ], [ -74.548477172851562, -7.740570068359375 ], [ -74.547492980956974, -7.741048812866154 ], [ -74.546920776367131, -7.741970062255859 ], [ -74.54656982421875, -7.74397087097168 ], [ -74.546272277832031, -7.748829841613713 ], [ -74.54541015625, -7.750969886779785 ], [ -74.544067382812386, -7.752230167388916 ], [ -74.541427612304688, -7.753490924835148 ], [ -74.538040161132756, -7.754370212554932 ], [ -74.534027099609318, -7.754809856414738 ], [ -74.532028198242131, -7.754740238189697 ], [ -74.527900695800781, -7.755070209503174 ], [ -74.526176452636719, -7.755720138549748 ], [ -74.524276733398438, -7.756838798522949 ], [ -74.519950866699219, -7.7600998878479 ], [ -74.518806457519531, -7.761290073394775 ], [ -74.518325805664062, -7.762441158294678 ], [ -74.518440246582031, -7.765281200408879 ], [ -74.519111633300781, -7.766609191894531 ], [ -74.521286010742188, -7.76898002624506 ], [ -74.52252197265625, -7.77068901062006 ], [ -74.523506164550781, -7.77257776260376 ], [ -74.524620056152344, -7.775909900665226 ], [ -74.524696350097599, -7.776840209960881 ], [ -74.524421691894418, -7.777791023254395 ], [ -74.521812438964787, -7.780669212341309 ], [ -74.521553039550724, -7.781418800354004 ], [ -74.521575927734375, -7.782110214233398 ], [ -74.522712707519531, -7.784319877624512 ], [ -74.523796081542969, -7.785820007324162 ], [ -74.525032043457031, -7.786618232727051 ], [ -74.526199340820256, -7.786859035491943 ], [ -74.530426025390568, -7.786977767944336 ], [ -74.533447265624943, -7.787320137023926 ], [ -74.539962768554631, -7.788818836212158 ], [ -74.540718078613224, -7.789169788360539 ], [ -74.542076110839844, -7.78928899765009 ], [ -74.54769134521473, -7.790979862213135 ], [ -74.549263000488281, -7.792660236358643 ], [ -74.550537109374943, -7.796807765960637 ], [ -74.551033020019531, -7.797790050506592 ], [ -74.551918029785156, -7.798590183258057 ], [ -74.554550170898381, -7.799650192260742 ], [ -74.557449340820312, -7.804688930511475 ], [ -74.560691833496094, -7.808930873870793 ], [ -74.565277099609375, -7.813329219818002 ], [ -74.568710327148438, -7.815720081329346 ], [ -74.569419860839787, -7.81731986999506 ], [ -74.570381164550724, -7.820870876312256 ], [ -74.572097778320256, -7.825098991394043 ], [ -74.575241088867131, -7.831138134002686 ], [ -74.576866149902287, -7.833609104156494 ], [ -74.579940795898438, -7.837289810180664 ], [ -74.58184814453125, -7.841478824615422 ], [ -74.585609436035156, -7.846609115600529 ], [ -74.588821411132812, -7.852519035339355 ], [ -74.590766906738224, -7.855269908905029 ], [ -74.592948913574219, -7.859130859374943 ], [ -74.595619201660156, -7.863099098205453 ], [ -74.603073120117131, -7.873239040374756 ], [ -74.608772277832031, -7.882581233978271 ], [ -74.612327575683537, -7.88704776763916 ], [ -74.613792419433594, -7.889400005340576 ], [ -74.616477966308594, -7.892579078674316 ], [ -74.617759704589787, -7.89491081237793 ], [ -74.621322631835938, -7.900069236755371 ], [ -74.623870849609318, -7.904239177703801 ], [ -74.628219604492188, -7.910638809204102 ], [ -74.629577636718693, -7.912269115447941 ], [ -74.631698608398381, -7.91572904586792 ], [ -74.633247375488281, -7.917779922485352 ], [ -74.634262084960881, -7.919649124145451 ], [ -74.641136169433537, -7.92828893661499 ], [ -74.648086547851506, -7.938549995422363 ], [ -74.654510498046875, -7.945679187774658 ], [ -74.662528991699219, -7.952169895172119 ], [ -74.667900085449219, -7.95720911026001 ], [ -74.671897888183594, -7.959838867187443 ], [ -74.676528930664006, -7.963779926299992 ], [ -74.683158874511719, -7.968910217285099 ], [ -74.687026977539062, -7.971389770507756 ], [ -74.693267822265625, -7.974559783935433 ], [ -74.701339721679688, -7.979170799255371 ], [ -74.701972961425724, -7.979310035705566 ], [ -74.705039978027287, -7.980909824371281 ], [ -74.716506958007812, -7.985159873962402 ], [ -74.731658935546875, -7.988979816436768 ], [ -74.742881774902287, -7.993218898773193 ], [ -74.758552551269531, -8.000838279724064 ], [ -74.760871887207031, -8.001659393310547 ], [ -74.770118713378906, -8.007669448852482 ], [ -74.773429870605469, -8.009071350097599 ], [ -74.776260375976506, -8.009629249572754 ], [ -74.780349731445312, -8.0085191726684 ], [ -74.783042907714787, -8.007548332214355 ], [ -74.789398193359375, -8.006059646606388 ], [ -74.793998718261662, -8.006048202514592 ], [ -74.798271179199219, -8.006649971008301 ], [ -74.801620483398381, -8.007648468017521 ], [ -74.802978515624943, -8.008419036865234 ], [ -74.804901123046875, -8.009058952331429 ], [ -74.80853271484375, -8.010739326477051 ], [ -74.810646057128906, -8.011328697204533 ], [ -74.812126159667912, -8.012100219726506 ], [ -74.814971923828068, -8.01312065124506 ], [ -74.822006225585938, -8.016778945922852 ], [ -74.831001281738224, -8.022148132324105 ], [ -74.837860107421818, -8.025178909301758 ], [ -74.846176147460881, -8.027910232543888 ], [ -74.853881835937443, -8.029858589172363 ], [ -74.861557006835938, -8.030758857727051 ], [ -74.869117736816406, -8.030838966369572 ], [ -74.875228881835938, -8.030050277709961 ], [ -74.87728118896473, -8.029509544372559 ], [ -74.880111694335881, -8.029168128967285 ], [ -74.8902587890625, -8.026769638061467 ], [ -74.895988464355469, -8.025839805602971 ], [ -74.904762268066406, -8.023049354553223 ], [ -74.910102844238281, -8.022249221801758 ], [ -74.914901733398438, -8.020990371704102 ], [ -74.917182922363281, -8.020668983459473 ], [ -74.919998168945256, -8.019809722900391 ], [ -74.92431640625, -8.018930435180607 ], [ -74.927139282226506, -8.018030166625977 ], [ -74.932601928710938, -8.016749382018986 ], [ -74.939582824707031, -8.014679908752441 ], [ -74.946197509765568, -8.01356029510498 ], [ -74.954536437988281, -8.011408805847111 ], [ -74.960441589355355, -8.010398864746037 ], [ -74.96502685546875, -8.009089469909668 ], [ -74.966300964355469, -8.008529663085938 ], [ -74.967903137207031, -8.008209228515568 ], [ -74.976409912109375, -8.004980087280273 ], [ -74.983695983886662, -8.002778053283635 ], [ -74.985450744628906, -8.001959800720215 ], [ -74.987167358398438, -8.000738143920785 ], [ -74.989219665527287, -7.999928951263371 ], [ -74.996757507324162, -7.995668888091984 ], [ -75.003532409667912, -7.991339206695557 ], [ -75.005897521972599, -7.990328788757324 ], [ -75.012779235839787, -7.988080024719238 ], [ -75.020149230957031, -7.986161231994629 ], [ -75.026008605957031, -7.985189914703312 ], [ -75.034729003906193, -7.982978820800781 ], [ -75.037986755371094, -7.982510089874268 ], [ -75.042228698730469, -7.981509208679199 ], [ -75.053886413574162, -7.979498863220215 ], [ -75.060768127441293, -7.979078769683781 ], [ -75.065437316894474, -7.979188919067383 ], [ -75.069313049316406, -7.98002099990839 ], [ -75.076026916503793, -7.982500076293888 ], [ -75.077926635742131, -7.98340988159174 ], [ -75.081512451171875, -7.984609127044564 ], [ -75.082489013671818, -7.985130786895695 ], [ -75.085830688476506, -7.985768795013428 ], [ -75.090881347656193, -7.98746919631958 ], [ -75.101997375488281, -7.992000102996712 ], [ -75.106666564941406, -7.994558811187744 ], [ -75.117973327636662, -8.00010871887207 ], [ -75.123573303222656, -8.002769470214787 ], [ -75.143218994140625, -8.010829925537109 ], [ -75.150833129882812, -8.013478279113713 ], [ -75.156112670898381, -8.015649795532227 ], [ -75.162742614746094, -8.017837524414006 ], [ -75.164398193359318, -8.018850326538029 ], [ -75.170539855957031, -8.021759033203068 ], [ -75.180877685546875, -8.024740219116154 ], [ -75.182907104492131, -8.02616024017334 ], [ -75.188682556152344, -8.028809547424316 ], [ -75.191452026367188, -8.03029823303217 ], [ -75.197349548339844, -8.03405857086176 ], [ -75.200782775878906, -8.037137985229435 ], [ -75.203453063964844, -8.040168762206974 ], [ -75.205223083496037, -8.042649269103947 ], [ -75.206672668456974, -8.045409202575684 ], [ -75.207809448242131, -8.048419952392578 ], [ -75.208717346191406, -8.051998138427621 ], [ -75.209022521972656, -8.054649353027287 ], [ -75.209136962890568, -8.058979034423828 ], [ -75.209938049316406, -8.066860198974553 ], [ -75.209800720214787, -8.075460433959961 ], [ -75.21051025390625, -8.084429740905762 ], [ -75.213462829589844, -8.09496021270752 ], [ -75.214958190917912, -8.098719596862793 ], [ -75.216377258300724, -8.101308822631836 ], [ -75.217041015624943, -8.103420257568359 ], [ -75.21746826171875, -8.116308212280217 ], [ -75.217796325683594, -8.11830997467041 ], [ -75.218246459960938, -8.11951732635498 ], [ -75.219245910644474, -8.12117862701416 ], [ -75.220207214355412, -8.1222887039184 ], [ -75.223716735839787, -8.125288009643441 ], [ -75.226058959960938, -8.128470420837402 ], [ -75.228279113769531, -8.132088661193848 ], [ -75.229606628417969, -8.135129928588867 ], [ -75.230407714843693, -8.137579917907658 ], [ -75.23065185546875, -8.139598846435547 ], [ -75.230659484863281, -8.14290809631342 ], [ -75.231292724609375, -8.145228385925236 ], [ -75.233070373535099, -8.148109436035099 ], [ -75.235031127929688, -8.15009880065918 ], [ -75.235786437988281, -8.150428771972656 ], [ -75.237701416015625, -8.150208473205566 ], [ -75.240791320800724, -8.151058197021428 ], [ -75.242317199706974, -8.150769233703613 ], [ -75.243431091308594, -8.151228904724064 ], [ -75.245597839355469, -8.150910377502385 ], [ -75.251686096191349, -8.152938842773438 ], [ -75.255027770996037, -8.152819633483887 ], [ -75.257125854492131, -8.152230262756291 ], [ -75.260307312011719, -8.149429321289006 ], [ -75.262077331542912, -8.147320747375488 ], [ -75.264556884765568, -8.142169952392578 ], [ -75.265579223632812, -8.140558242797852 ], [ -75.267631530761719, -8.138829231262207 ], [ -75.271926879882812, -8.136558532714787 ], [ -75.273017883300781, -8.135180473327637 ], [ -75.273567199707031, -8.133719444274902 ], [ -75.274200439453011, -8.132909774780217 ], [ -75.275482177734375, -8.132419586181641 ], [ -75.276947021484318, -8.132378578186035 ], [ -75.279823303222599, -8.131791114807129 ], [ -75.281272888183594, -8.130660057067871 ], [ -75.283943176269531, -8.129238128662053 ], [ -75.2847900390625, -8.128398895263672 ], [ -75.285316467285156, -8.127459526062012 ], [ -75.288398742675724, -8.126250267028752 ], [ -75.290657043457031, -8.124528884887695 ], [ -75.29290771484375, -8.124038696289062 ], [ -75.295356750488224, -8.122998237609863 ], [ -75.297920227050724, -8.123228073120117 ], [ -75.300765991210938, -8.123100280761719 ], [ -75.304168701171875, -8.123867988586426 ], [ -75.310882568359318, -8.12401008605957 ], [ -75.314628601074162, -8.124397277832031 ], [ -75.31826019287098, -8.124968528747559 ], [ -75.321250915527344, -8.125909805297852 ], [ -75.321952819824162, -8.126480102538949 ], [ -75.322669982910156, -8.126619338989201 ], [ -75.327476501464787, -8.130338668823185 ], [ -75.332443237304631, -8.132550239562988 ], [ -75.335327148437443, -8.134480476379338 ], [ -75.339912414550781, -8.139139175415039 ], [ -75.342651367187443, -8.14098930358881 ], [ -75.346595764160156, -8.143199920654297 ], [ -75.350410461425781, -8.146388053893929 ], [ -75.354042053222656, -8.148508071899414 ], [ -75.357063293456974, -8.149367332458496 ], [ -75.359550476074162, -8.150751113891488 ], [ -75.365898132324219, -8.151748657226506 ], [ -75.368141174316406, -8.152809143066406 ], [ -75.371086120605412, -8.154680252075195 ], [ -75.374229431152287, -8.156020164489632 ], [ -75.376266479492188, -8.156490325927678 ], [ -75.378379821777344, -8.156528472900391 ], [ -75.380012512207031, -8.158148765563965 ], [ -75.380928039550781, -8.158760070800781 ], [ -75.383537292480469, -8.159309387207031 ], [ -75.387123107910156, -8.15950870513916 ], [ -75.388931274414062, -8.159867286682072 ], [ -75.390632629394474, -8.161169052124023 ], [ -75.392967224121094, -8.163998603820801 ], [ -75.396125793457031, -8.165888786315918 ], [ -75.400146484374943, -8.166080474853516 ], [ -75.404281616210824, -8.167010307312012 ], [ -75.411605834960881, -8.169629096984863 ], [ -75.415039062499943, -8.171680450439396 ], [ -75.415992736816349, -8.172380447387638 ], [ -75.421897888183537, -8.183699607849121 ], [ -75.423599243164062, -8.186339378356877 ], [ -75.424186706542912, -8.186770439147949 ], [ -75.425018310546875, -8.18683910369873 ], [ -75.425849914550781, -8.187419891357308 ], [ -75.429389953613281, -8.18842887878418 ], [ -75.432952880859318, -8.189908981323242 ], [ -75.436279296875, -8.192391395568791 ], [ -75.440849304199219, -8.193799018859806 ], [ -75.443572998046761, -8.196529388427734 ], [ -75.445716857910156, -8.197339057922306 ], [ -75.446907043456974, -8.198861122131291 ], [ -75.447639465331974, -8.200650215148926 ], [ -75.449043273925781, -8.203018188476562 ], [ -75.449249267578125, -8.205039978027287 ], [ -75.448883056640568, -8.206048965454045 ], [ -75.448921203613281, -8.206589698791447 ], [ -75.449722290039062, -8.207360267639103 ], [ -75.452102661132812, -8.208339691162109 ], [ -75.453742980956974, -8.209989547729492 ], [ -75.454078674316406, -8.210079193115234 ], [ -75.455154418945312, -8.211209297180176 ], [ -75.455436706542969, -8.212045669555607 ], [ -75.455596923828125, -8.212519645690918 ], [ -75.457229614257812, -8.214959144592285 ], [ -75.457687377929574, -8.216360092163029 ], [ -75.457809448242188, -8.218480110168457 ], [ -75.458450317382699, -8.221235275268555 ], [ -75.459770202636662, -8.223957061767578 ], [ -75.461204528808537, -8.22526741027832 ], [ -75.462936401367188, -8.226140022277775 ], [ -75.463508605957031, -8.226428985595703 ], [ -75.466072082519474, -8.227151870727539 ], [ -75.471343994140625, -8.227750778198242 ], [ -75.473358154296875, -8.228645324707031 ], [ -75.4742431640625, -8.229275703430119 ], [ -75.475303649902287, -8.230034828186035 ], [ -75.476493835449219, -8.231126785278263 ], [ -75.476959228515625, -8.231553077697754 ], [ -75.478630065917969, -8.233594894409123 ], [ -75.4788818359375, -8.233900070190373 ], [ -75.481056213378906, -8.237318992614746 ], [ -75.481742858886719, -8.238125801086426 ], [ -75.482368469238224, -8.238862037658691 ], [ -75.484390258788949, -8.24188232421875 ], [ -75.484771728515511, -8.242451667785588 ], [ -75.484970092773438, -8.242600440979004 ], [ -75.486312866210938, -8.243597984313965 ], [ -75.486442565917969, -8.243602752685547 ], [ -75.487052917480412, -8.243618965148926 ], [ -75.487525939941349, -8.243366241455021 ], [ -75.487815856933537, -8.243206024169865 ], [ -75.488784790039062, -8.243550300598145 ], [ -75.490837097167969, -8.246370315551701 ], [ -75.493530273437443, -8.248858451843262 ], [ -75.495841979980469, -8.250999450683537 ], [ -75.498428344726562, -8.25514030456543 ], [ -75.499977111816406, -8.256698608398438 ], [ -75.500633239746094, -8.257959365844727 ], [ -75.508316040039006, -8.267119407653752 ], [ -75.510581970214787, -8.269469261169434 ], [ -75.510711669921761, -8.269713401794434 ], [ -75.511459350585881, -8.27115535736084 ], [ -75.512168884277344, -8.273218154907227 ], [ -75.512397766113224, -8.276201248168945 ], [ -75.512214660644474, -8.277708053588867 ], [ -75.512199401855469, -8.277810096740723 ], [ -75.511329650878906, -8.279800415039006 ], [ -75.511032104492188, -8.281949043273869 ], [ -75.51123046875, -8.288470268249455 ], [ -75.511138916015625, -8.290612220764103 ], [ -75.510826110839844, -8.297945976257324 ], [ -75.511085510253849, -8.300367355346623 ], [ -75.511352539062443, -8.302811622619572 ], [ -75.511360168456974, -8.304091453552189 ], [ -75.511375427246037, -8.305795669555607 ], [ -75.511085510253849, -8.307753562927246 ], [ -75.510902404785043, -8.309008598327637 ], [ -75.509666442871094, -8.312527656555176 ], [ -75.509368896484318, -8.313371658325195 ], [ -75.50885009765625, -8.313998222351074 ], [ -75.507209777832031, -8.314977645874023 ], [ -75.506645202636719, -8.315591812133789 ], [ -75.506477355957031, -8.315769195556584 ], [ -75.505836486816349, -8.316707611083928 ], [ -75.504020690917912, -8.319373130798283 ], [ -75.502983093261662, -8.321880340576115 ], [ -75.502151489257812, -8.323191642761174 ], [ -75.501655578613281, -8.323971748352051 ], [ -75.500083923339844, -8.325654029846191 ], [ -75.499183654785156, -8.326616287231445 ], [ -75.497451782226506, -8.329402923583928 ], [ -75.496192932128849, -8.330327987670785 ], [ -75.495903015136662, -8.331684112548771 ], [ -75.495521545410099, -8.332324981689453 ], [ -75.495338439941349, -8.332626342773438 ], [ -75.494277954101506, -8.333748817443848 ], [ -75.493759155273438, -8.334300994873047 ], [ -75.491401672363281, -8.33604907989502 ], [ -75.490608215332031, -8.336383819579964 ], [ -75.488517761230469, -8.33726596832264 ], [ -75.486587524414062, -8.33775615692133 ], [ -75.484863281249943, -8.338191032409668 ], [ -75.483497619628849, -8.338950157165527 ], [ -75.482276916503849, -8.340778350830078 ], [ -75.479568481445312, -8.343390464782658 ], [ -75.477432250976562, -8.346829414367676 ], [ -75.475540161132812, -8.349190711975098 ], [ -75.475166320800781, -8.350727081298828 ], [ -75.474998474121094, -8.351420402526799 ], [ -75.474891662597656, -8.351685523986816 ], [ -75.474174499511662, -8.353472709655762 ], [ -75.474266052246037, -8.355938911437931 ], [ -75.474357604980412, -8.356076240539551 ], [ -75.474845886230412, -8.356784820556584 ], [ -75.475654602050781, -8.357488632202092 ], [ -75.475860595703125, -8.357668876647949 ], [ -75.47695159912098, -8.357913017272836 ], [ -75.477745056152344, -8.358091354370117 ], [ -75.478309631347656, -8.358505249023381 ], [ -75.47967529296875, -8.359500885009766 ], [ -75.480514526367188, -8.361612319946289 ], [ -75.480819702148438, -8.362375259399414 ], [ -75.480735778808537, -8.363603591918888 ], [ -75.480690002441406, -8.36421012878418 ], [ -75.479393005371094, -8.365628242492676 ], [ -75.479248046875, -8.366046905517578 ], [ -75.479156494140625, -8.366320610046387 ], [ -75.479263305664062, -8.36778354644764 ], [ -75.479331970214787, -8.368806838989258 ], [ -75.480354309081974, -8.371496200561467 ], [ -75.480438232421875, -8.371726989746094 ], [ -75.480377197265568, -8.376774787902832 ], [ -75.479248046875, -8.378676414489689 ], [ -75.478683471679688, -8.379165649414062 ], [ -75.478492736816406, -8.379329681396484 ], [ -75.477142333984261, -8.379647254943848 ], [ -75.476730346679631, -8.379470825195256 ], [ -75.476562499999943, -8.379398345947266 ], [ -75.475433349609375, -8.379318237304688 ], [ -75.473564147949219, -8.381604194641056 ], [ -75.473121643066349, -8.382146835327148 ], [ -75.472663879394531, -8.382382392883301 ], [ -75.470588684082031, -8.383443832397404 ], [ -75.469398498535099, -8.3843736648559 ], [ -75.468269348144474, -8.385255813598576 ], [ -75.465240478515625, -8.386589050292969 ], [ -75.461975097656193, -8.387617111205998 ], [ -75.458900451660099, -8.387692451476994 ], [ -75.458206176757812, -8.387709617614746 ], [ -75.456550598144531, -8.38712024688715 ], [ -75.456138610839787, -8.38677978515625 ], [ -75.455696105957031, -8.386420249938908 ], [ -75.455200195312443, -8.386264801025391 ], [ -75.454826354980355, -8.386149406433105 ], [ -75.454666137695312, -8.386024475097656 ], [ -75.454246520996037, -8.385698318481445 ], [ -75.452377319335938, -8.385046005248967 ], [ -75.450698852539006, -8.384462356567326 ], [ -75.449874877929688, -8.384403228759766 ], [ -75.449050903320312, -8.384346008300724 ], [ -75.448165893554688, -8.384578704833984 ], [ -75.447357177734318, -8.384793281555176 ], [ -75.446235656738224, -8.385321617126465 ], [ -75.444358825683594, -8.386205673217717 ], [ -75.444046020507756, -8.386517524719238 ], [ -75.443580627441406, -8.386984825134221 ], [ -75.442665100097656, -8.388667106628418 ], [ -75.44195556640625, -8.389980316161996 ], [ -75.440597534179631, -8.391600608825684 ], [ -75.438560485839844, -8.393009185790959 ], [ -75.435592651367188, -8.394219398498535 ], [ -75.434967041015568, -8.394630432128849 ], [ -75.433982849121094, -8.39606761932373 ], [ -75.433700561523438, -8.39708232879633 ], [ -75.433639526367131, -8.397310256958008 ], [ -75.433555603027287, -8.40457820892334 ], [ -75.433036804199219, -8.408563613891602 ], [ -75.432632446289062, -8.411690711975098 ], [ -75.43255615234375, -8.415730476379338 ], [ -75.432685852050724, -8.416069030761719 ], [ -75.432975769042912, -8.416855812072754 ], [ -75.434860229492131, -8.420296669006291 ], [ -75.435188293457031, -8.42089653015131 ], [ -75.435234069824219, -8.421029090881348 ], [ -75.435935974121037, -8.423064231872559 ], [ -75.435325622558594, -8.426012992858887 ], [ -75.435592651367188, -8.427236557006836 ], [ -75.435813903808537, -8.428249359130859 ], [ -75.438026428222599, -8.432242393493652 ], [ -75.439338684082031, -8.434602737426758 ], [ -75.440475463867188, -8.436219215393066 ], [ -75.441680908203125, -8.437348365783691 ], [ -75.442893981933537, -8.438480377197266 ], [ -75.445854187011662, -8.440510749816895 ], [ -75.447517395019531, -8.441287994384652 ], [ -75.449264526367131, -8.441819190979004 ], [ -75.449752807617131, -8.441864967346135 ], [ -75.451370239257756, -8.442020416259709 ], [ -75.453117370605469, -8.441760063171387 ], [ -75.454277038574219, -8.44158935546875 ], [ -75.457695007324219, -8.441558837890568 ], [ -75.461090087890568, -8.441530227661133 ], [ -75.465126037597543, -8.440690994262695 ], [ -75.466583251953125, -8.440389633178711 ], [ -75.476943969726506, -8.44011211395258 ], [ -75.482711791992188, -8.439958572387695 ], [ -75.483283996582031, -8.439864158630371 ], [ -75.48480224609375, -8.439607620239201 ], [ -75.486717224121094, -8.438920021057072 ], [ -75.487663269042969, -8.438581466674805 ], [ -75.488212585449219, -8.43856239318842 ], [ -75.492530822753906, -8.438429832458496 ], [ -75.493545532226449, -8.438270568847656 ], [ -75.494003295898381, -8.438199996948242 ], [ -75.494415283203125, -8.438037872314396 ], [ -75.496047973632812, -8.437399864196777 ], [ -75.498992919921875, -8.435179710388184 ], [ -75.500297546386662, -8.434590339660645 ], [ -75.504173278808594, -8.430788040161133 ], [ -75.505928039550724, -8.42855167388916 ], [ -75.506385803222599, -8.427968978881779 ], [ -75.5086669921875, -8.425578117370605 ], [ -75.510261535644531, -8.424187660217285 ], [ -75.511451721191349, -8.423708915710392 ], [ -75.512977600097599, -8.42351055145258 ], [ -75.513458251953068, -8.42344856262207 ], [ -75.515571594238224, -8.423528671264648 ], [ -75.516357421875, -8.423762321472168 ], [ -75.520866394042969, -8.423803329467773 ], [ -75.522148132324162, -8.423579216003418 ], [ -75.523422241210938, -8.423356056213322 ], [ -75.528472900390625, -8.421965599060002 ], [ -75.533882141113224, -8.420919418334904 ], [ -75.534713745117131, -8.420538902282658 ], [ -75.535636901855469, -8.420117378234806 ], [ -75.538932800292912, -8.419258117675668 ], [ -75.544578552246094, -8.417329788208008 ], [ -75.548019409179688, -8.415532112121525 ], [ -75.549331665039006, -8.414694786071777 ], [ -75.550346374511719, -8.414048194885254 ], [ -75.553459167480469, -8.412698745727482 ], [ -75.554954528808537, -8.412566184997559 ], [ -75.557106018066406, -8.412380218505803 ], [ -75.559776306152344, -8.411670684814453 ], [ -75.562461853027287, -8.40944862365717 ], [ -75.564292907714787, -8.408466339111271 ], [ -75.565048217773381, -8.408058166503906 ], [ -75.566291809081974, -8.408025741577092 ], [ -75.567596435546875, -8.407990455627441 ], [ -75.568298339843693, -8.407656669616699 ], [ -75.569335937499943, -8.407164573669434 ], [ -75.572830200195312, -8.406347274780273 ], [ -75.577606201171875, -8.406467437744084 ], [ -75.578872680664006, -8.406244277954102 ], [ -75.579978942871094, -8.406269073486271 ], [ -75.580192565917969, -8.406270980834961 ], [ -75.580619812011719, -8.406281471252385 ], [ -75.583511352539062, -8.405360221862793 ], [ -75.587463378906193, -8.405229568481445 ], [ -75.591201782226449, -8.403999328613168 ], [ -75.594306945800781, -8.404430389404297 ], [ -75.596092224121094, -8.404902458190861 ], [ -75.596916198730412, -8.405117988586426 ], [ -75.597663879394474, -8.405179977416935 ], [ -75.599029541015625, -8.405288696289062 ], [ -75.601722717285156, -8.404709815979004 ], [ -75.603248596191406, -8.404642105102539 ], [ -75.604011535644531, -8.404607772827092 ], [ -75.606666564941406, -8.403899192810059 ], [ -75.612739562988224, -8.403817176818791 ], [ -75.618507385253906, -8.40496635437006 ], [ -75.622749328613224, -8.407328605651855 ], [ -75.624404907226562, -8.40782356262207 ], [ -75.627769470214844, -8.408830642700195 ], [ -75.628730773925781, -8.408832550048771 ], [ -75.630157470703125, -8.408836364746037 ], [ -75.633216857910156, -8.408208847045842 ], [ -75.633949279785156, -8.40817928314209 ], [ -75.635147094726506, -8.408128738403263 ], [ -75.636947631835881, -8.408181190490723 ], [ -75.638175964355469, -8.408220291137638 ], [ -75.640586853027287, -8.408464431762695 ], [ -75.645599365234375, -8.408974647521916 ], [ -75.652626037597656, -8.411150932312012 ], [ -75.655708312988281, -8.412429809570312 ], [ -75.65618896484375, -8.412628173828125 ], [ -75.662048339843693, -8.414545059204102 ], [ -75.664390563964844, -8.414976119995117 ], [ -75.669532775878906, -8.416389465331974 ], [ -75.674110412597656, -8.416777610778809 ], [ -75.676177978515625, -8.417140960693303 ], [ -75.677825927734375, -8.41742992401123 ], [ -75.680534362792912, -8.418302536010742 ], [ -75.682922363281193, -8.419574737548828 ], [ -75.684303283691406, -8.420610427856388 ], [ -75.688224792480469, -8.423544883728027 ], [ -75.692962646484375, -8.428438186645451 ], [ -75.693634033203125, -8.429315567016545 ], [ -75.694023132324219, -8.430246353149357 ], [ -75.695396423339844, -8.431635856628418 ], [ -75.69573974609375, -8.432683944702148 ], [ -75.696670532226506, -8.433931350708008 ], [ -75.699859619140625, -8.440048217773324 ], [ -75.702308654785156, -8.44637489318842 ], [ -75.702598571777344, -8.446961402893066 ], [ -75.703765869140625, -8.449349403381348 ], [ -75.71197509765625, -8.462004661560059 ], [ -75.712295532226506, -8.46260929107666 ], [ -75.712783813476506, -8.463541984558105 ], [ -75.713096618652344, -8.464508056640625 ], [ -75.713356018066349, -8.465296745300179 ], [ -75.714279174804688, -8.466726303100586 ], [ -75.714859008789006, -8.4676256179809 ], [ -75.714881896972599, -8.467840194702092 ], [ -75.714973449706974, -8.468873023986703 ], [ -75.714591979980412, -8.470288276672306 ], [ -75.714782714843693, -8.472208976745605 ], [ -75.715476989746094, -8.473809242248478 ], [ -75.716636657714844, -8.475470542907658 ], [ -75.717002868652344, -8.476510047912598 ], [ -75.716865539550724, -8.477252960205078 ], [ -75.71673583984375, -8.477933883666935 ], [ -75.716987609863224, -8.480400085449219 ], [ -75.716705322265511, -8.481093406677189 ], [ -75.715484619140625, -8.484048843383732 ], [ -75.715583801269531, -8.485062599182072 ], [ -75.715972900390625, -8.485799789428711 ], [ -75.71661376953125, -8.486150741577092 ], [ -75.71759033203125, -8.486685752868652 ], [ -75.720420837402287, -8.486907005310059 ], [ -75.722137451171818, -8.487808227539006 ], [ -75.723678588867188, -8.488069534301758 ], [ -75.727203369140625, -8.489398002624455 ], [ -75.730735778808594, -8.489888191223145 ], [ -75.733985900878906, -8.48925876617426 ], [ -75.734794616699162, -8.489266395568791 ], [ -75.735198974609318, -8.48926830291748 ], [ -75.736984252929631, -8.490557670593205 ], [ -75.73895263671875, -8.492970466613713 ], [ -75.740829467773381, -8.493968009948674 ], [ -75.741928100585938, -8.494289398193303 ], [ -75.743537902832031, -8.494216918945199 ], [ -75.743949890136662, -8.494197845458928 ], [ -75.745445251464844, -8.494659423828068 ], [ -75.74658203125, -8.494761466979924 ], [ -75.748374938964844, -8.494922637939453 ], [ -75.750831604003849, -8.495443344116211 ], [ -75.752265930175724, -8.495747566223088 ], [ -75.753562927246094, -8.49573898315424 ], [ -75.754447937011662, -8.495624542236271 ], [ -75.75518798828125, -8.495529174804631 ], [ -75.756912231445312, -8.494669914245492 ], [ -75.758491516113281, -8.494169235229379 ], [ -75.758934020996037, -8.494128227233887 ], [ -75.760498046875, -8.493986129760742 ], [ -75.762756347656193, -8.494599342346135 ], [ -75.763542175292969, -8.494811058044434 ], [ -75.763870239257812, -8.49494552612299 ], [ -75.765403747558537, -8.495576858520451 ], [ -75.766136169433594, -8.496347427368107 ], [ -75.767112731933594, -8.497370719909668 ], [ -75.768272399902287, -8.498129844665527 ], [ -75.769142150878849, -8.498390197753849 ], [ -75.771080017089844, -8.498529434204045 ], [ -75.773445129394474, -8.498369216918945 ], [ -75.775848388671875, -8.498207092285099 ], [ -75.779129028320312, -8.498618125915527 ], [ -75.779556274414062, -8.498669624328613 ], [ -75.780715942382812, -8.499371528625431 ], [ -75.782699584960824, -8.501229286193848 ], [ -75.782981872558537, -8.501952171325684 ], [ -75.783782958984375, -8.503961563110295 ], [ -75.784423828125, -8.504630088806152 ], [ -75.785057067871037, -8.50528621673584 ], [ -75.785224914550781, -8.505409240722656 ], [ -75.786552429199219, -8.506360054016113 ], [ -75.792503356933537, -8.509510040283203 ], [ -75.793609619140625, -8.510878562927189 ], [ -75.793640136718693, -8.51113224029541 ], [ -75.793769836425781, -8.512144088745117 ], [ -75.793060302734318, -8.513209342956543 ], [ -75.792366027832031, -8.514830589294434 ], [ -75.791969299316406, -8.515745162963867 ], [ -75.789710998535156, -8.516004562377873 ], [ -75.788619995117188, -8.516383171081486 ], [ -75.787620544433594, -8.516732215881291 ], [ -75.7867431640625, -8.51738166809082 ], [ -75.785697937011719, -8.518157005310059 ], [ -75.783935546874943, -8.520041465759277 ], [ -75.783638000488224, -8.521571159362793 ], [ -75.782928466796875, -8.52374267578125 ], [ -75.781951904296875, -8.526719093322754 ], [ -75.780471801757756, -8.529780387878418 ], [ -75.779411315917969, -8.532770156860295 ], [ -75.779624938964787, -8.534765243530217 ], [ -75.779640197753849, -8.537089347839299 ], [ -75.779655456542969, -8.538916587829533 ], [ -75.779525756835881, -8.539745330810547 ], [ -75.779441833496037, -8.540264129638615 ], [ -75.778472900390568, -8.543338775634766 ], [ -75.7784423828125, -8.545078277587891 ], [ -75.779190063476562, -8.546472549438477 ], [ -75.77996826171875, -8.547924041748047 ], [ -75.780776977539006, -8.550752639770508 ], [ -75.781593322753906, -8.55191516876215 ], [ -75.782104492187443, -8.552641868591252 ], [ -75.783897399902344, -8.555849075317326 ], [ -75.784530639648438, -8.557574272155762 ], [ -75.785835266113224, -8.558432579040527 ], [ -75.786666870117188, -8.558979988098088 ], [ -75.789085388183537, -8.562249183654785 ], [ -75.789237976074219, -8.563046455383301 ], [ -75.788818359375, -8.564258575439453 ], [ -75.788833618164062, -8.564661979675236 ], [ -75.788871765136662, -8.565452575683537 ], [ -75.791046142578125, -8.568758010864258 ], [ -75.792022705078068, -8.571043968200627 ], [ -75.791351318359318, -8.574000358581486 ], [ -75.793571472167855, -8.578989028930664 ], [ -75.793663024902287, -8.580558776855469 ], [ -75.793991088867188, -8.581804275512638 ], [ -75.794158935546875, -8.585471153259277 ], [ -75.794258117675781, -8.58768177032465 ], [ -75.795249938964844, -8.590435028076115 ], [ -75.79541015625, -8.59088134765625 ], [ -75.795509338378906, -8.591038703918343 ], [ -75.796623229980355, -8.592831611633244 ], [ -75.799911499023438, -8.597160339355469 ], [ -75.800674438476562, -8.598936080932617 ], [ -75.801078796386662, -8.600546836853027 ], [ -75.80169677734375, -8.601669311523381 ], [ -75.805068969726562, -8.605077743530217 ], [ -75.806655883789062, -8.606023788452092 ], [ -75.807327270507812, -8.606602668762207 ], [ -75.807701110839844, -8.606926918029785 ], [ -75.808486938476562, -8.607363700866642 ], [ -75.809875488281193, -8.608135223388672 ], [ -75.811309814453011, -8.609442710876465 ], [ -75.81268310546875, -8.611239433288574 ], [ -75.812820434570256, -8.611420631408635 ], [ -75.814956665039062, -8.615288734436035 ], [ -75.817283630371037, -8.618030548095703 ], [ -75.819190979003849, -8.621164321899357 ], [ -75.819297790527287, -8.621335029601994 ], [ -75.819480895996037, -8.621866226196175 ], [ -75.820091247558594, -8.623596191406193 ], [ -75.820144653320256, -8.624291419982853 ], [ -75.820198059082031, -8.624971389770508 ], [ -75.819427490234375, -8.63005542755127 ], [ -75.818946838378906, -8.631367683410588 ], [ -75.818778991699219, -8.632938385009766 ], [ -75.818740844726506, -8.633287429809513 ], [ -75.81793212890625, -8.636470794677678 ], [ -75.818260192871037, -8.638938903808594 ], [ -75.818397521972656, -8.639425277709961 ], [ -75.81884765625, -8.641054153442383 ], [ -75.820747375488224, -8.641972541809082 ], [ -75.821907043457031, -8.642131805419808 ], [ -75.823020935058537, -8.642285346984863 ], [ -75.825317382812443, -8.642975807189941 ], [ -75.828567504882756, -8.644576072692814 ], [ -75.829452514648438, -8.645010948181152 ], [ -75.830978393554688, -8.64509105682373 ], [ -75.832496643066406, -8.645168304443303 ], [ -75.8341064453125, -8.644828796386719 ], [ -75.835487365722656, -8.644192695617676 ], [ -75.835777282714844, -8.644058227539062 ], [ -75.83917236328125, -8.641660690307617 ], [ -75.840126037597656, -8.641239166259709 ], [ -75.840850830078068, -8.64091968536377 ], [ -75.841224670410099, -8.640576362609863 ], [ -75.842956542968693, -8.638989448547306 ], [ -75.844520568847656, -8.638869285583496 ], [ -75.845176696777344, -8.63905143737793 ], [ -75.845672607421875, -8.639189720153809 ], [ -75.846847534179631, -8.639792442321721 ], [ -75.84698486328125, -8.639862060546875 ], [ -75.847175598144531, -8.64006519317627 ], [ -75.847686767578125, -8.64061164855957 ], [ -75.849311828613281, -8.643351554870605 ], [ -75.850601196288949, -8.64551734924305 ], [ -75.852294921874943, -8.647212982177734 ], [ -75.852638244628906, -8.647456169128418 ], [ -75.854026794433537, -8.648439407348576 ], [ -75.855239868164006, -8.648892402648869 ], [ -75.857131958007812, -8.649599075317326 ], [ -75.857658386230355, -8.649592399597168 ], [ -75.860366821289062, -8.649559974670353 ], [ -75.861801147460938, -8.65001106262207 ], [ -75.862297058105412, -8.650169372558594 ], [ -75.862663269042969, -8.650370597839299 ], [ -75.864456176757812, -8.651365280151367 ], [ -75.868705749511662, -8.655018806457463 ], [ -75.869781494140625, -8.65518665313715 ], [ -75.871627807617188, -8.655479431152287 ], [ -75.873497009277344, -8.655110359191838 ], [ -75.875167846679688, -8.655190467834416 ], [ -75.882339477539006, -8.656889915466195 ], [ -75.885589599609318, -8.657893180847168 ], [ -75.887100219726506, -8.658359527587891 ], [ -75.888092041015625, -8.658841133117619 ], [ -75.888504028320312, -8.659041404724121 ], [ -75.890335083007756, -8.660456657409668 ], [ -75.890747070312443, -8.660915374755803 ], [ -75.891250610351562, -8.661478042602539 ], [ -75.892204284667969, -8.663382530212402 ], [ -75.89276123046875, -8.66552543640131 ], [ -75.892898559570312, -8.666058540344181 ], [ -75.898345947265568, -8.671807289123478 ], [ -75.898635864257756, -8.672470092773438 ], [ -75.899093627929688, -8.673498153686523 ], [ -75.899459838867188, -8.675576210021973 ], [ -75.900169372558537, -8.676914215087834 ], [ -75.900451660156193, -8.67745399475092 ], [ -75.903228759765568, -8.679709434509277 ], [ -75.904182434081974, -8.680115699768066 ], [ -75.905776977539062, -8.680797576904297 ], [ -75.913528442382756, -8.681818962097168 ], [ -75.914001464843693, -8.682058334350586 ], [ -75.916481018066349, -8.683320999145508 ], [ -75.919387817382812, -8.685592651367131 ], [ -75.920555114746094, -8.686505317687988 ], [ -75.922065734863281, -8.687061309814453 ], [ -75.923316955566406, -8.687519073486271 ], [ -75.924842834472656, -8.68866062164301 ], [ -75.926124572753849, -8.689620018005371 ], [ -75.926406860351506, -8.689693450927678 ], [ -75.9296875, -8.690552711486816 ], [ -75.930900573730355, -8.690703392028809 ], [ -75.931968688964844, -8.690834999084473 ], [ -75.932723999023438, -8.691169738769531 ], [ -75.933822631835881, -8.691656112670842 ], [ -75.936386108398438, -8.692382812499943 ], [ -75.938240051269474, -8.693769454955998 ], [ -75.939720153808594, -8.695979118347111 ], [ -75.941535949707031, -8.697369575500431 ], [ -75.944625854492131, -8.698299407958928 ], [ -75.946640014648438, -8.698409080505371 ], [ -75.947761535644474, -8.698468208312988 ], [ -75.950180053710938, -8.699065208435059 ], [ -75.952735900878849, -8.6990966796875 ], [ -75.953498840331974, -8.6994371414184 ], [ -75.953849792480412, -8.699898719787598 ], [ -75.954513549804688, -8.699788093566895 ], [ -75.955589294433537, -8.700175285339299 ], [ -75.956161499023381, -8.700380325317383 ], [ -75.958282470703125, -8.700510025024357 ], [ -75.95916748046875, -8.700713157653809 ], [ -75.960624694824162, -8.701047897338867 ], [ -75.960746765136662, -8.70103931427002 ], [ -75.961357116699219, -8.70098876953125 ], [ -75.965499877929631, -8.698968887329102 ], [ -75.96661376953125, -8.698166847229004 ], [ -75.969200134277344, -8.697518348693848 ], [ -75.970451354980412, -8.696738243102971 ], [ -75.971229553222599, -8.695819854736271 ], [ -75.971397399902287, -8.695109367370549 ], [ -75.971321105956974, -8.694645881652832 ], [ -75.971298217773438, -8.694479942321777 ], [ -75.970329284667969, -8.692382812499943 ], [ -75.969711303710881, -8.691048622131291 ], [ -75.969917297363281, -8.688109397888184 ], [ -75.970672607421875, -8.686559677124023 ], [ -75.970664978027287, -8.686064720153752 ], [ -75.970657348632756, -8.68572998046875 ], [ -75.970367431640568, -8.685149192810059 ], [ -75.969284057617188, -8.683952331542969 ], [ -75.968711853027344, -8.683319091796818 ], [ -75.967712402343636, -8.68036937713623 ], [ -75.967170715332031, -8.679391860961914 ], [ -75.967041015624943, -8.679159164428654 ], [ -75.966743469238224, -8.677427291870117 ], [ -75.968223571777344, -8.674384117126465 ], [ -75.968605041503906, -8.671101570129395 ], [ -75.971153259277344, -8.668201446533203 ], [ -75.972610473632812, -8.665257453918457 ], [ -75.972908020019531, -8.664648056030273 ], [ -75.972984313964844, -8.664559364318791 ], [ -75.974777221679688, -8.662409782409611 ], [ -75.975967407226562, -8.660449981689453 ], [ -75.976272583007756, -8.659290313720646 ], [ -75.976661682128849, -8.65526008605957 ], [ -75.97711181640625, -8.654248237609806 ], [ -75.978469848632756, -8.652759552001953 ], [ -75.978569030761662, -8.65214729309082 ], [ -75.978797912597656, -8.65077018737793 ], [ -75.978378295898381, -8.648418426513615 ], [ -75.978004455566349, -8.647643089294434 ], [ -75.977859497070312, -8.647339820861816 ], [ -75.976905822753906, -8.646050453185978 ], [ -75.976600646972656, -8.64564037322998 ], [ -75.976249694824219, -8.64400577545166 ], [ -75.976119995117188, -8.643389701843262 ], [ -75.975875854492188, -8.639689445495549 ], [ -75.976509094238281, -8.637598991393986 ], [ -75.977851867675781, -8.634449005126953 ], [ -75.977951049804688, -8.633907318115178 ], [ -75.978096008300724, -8.633089065551701 ], [ -75.976806640625, -8.626910209655705 ], [ -75.976036071777344, -8.625749588012638 ], [ -75.975006103515625, -8.625408172607365 ], [ -75.974136352539062, -8.624209403991699 ], [ -75.974128723144531, -8.623551368713322 ], [ -75.974128723144531, -8.623379707336426 ], [ -75.975517272949162, -8.620678901672306 ], [ -75.975837707519531, -8.619473457336426 ], [ -75.976036071777344, -8.618739128112736 ], [ -75.975807189941349, -8.618071556091252 ], [ -75.975357055664062, -8.616728782653752 ], [ -75.974647521972599, -8.615688323974553 ], [ -75.973747253417969, -8.614375114440918 ], [ -75.972526550292969, -8.611259460449219 ], [ -75.972496032714844, -8.608957290649357 ], [ -75.973396301269531, -8.60588264465332 ], [ -75.973098754882812, -8.604349136352539 ], [ -75.972091674804631, -8.602450370788574 ], [ -75.972023010253906, -8.602199554443359 ], [ -75.971855163574219, -8.601591110229492 ], [ -75.971916198730469, -8.596712112426758 ], [ -75.972259521484318, -8.595540046691895 ], [ -75.972251892089844, -8.594618797302246 ], [ -75.970718383789062, -8.592850685119515 ], [ -75.966506958007812, -8.589449882507267 ], [ -75.966117858886719, -8.588973999023438 ], [ -75.965995788574105, -8.588828086853027 ], [ -75.965797424316349, -8.588198661804142 ], [ -75.965835571289062, -8.586578369140625 ], [ -75.965881347656193, -8.58478927612299 ], [ -75.966667175292969, -8.581870079040527 ], [ -75.9664306640625, -8.579392433166447 ], [ -75.966262817382756, -8.577580451965275 ], [ -75.967056274414062, -8.573902130126953 ], [ -75.966697692871094, -8.571670532226562 ], [ -75.966712951660156, -8.569882392883301 ], [ -75.966720581054688, -8.568989753723088 ], [ -75.966560363769474, -8.568251609802246 ], [ -75.966369628906193, -8.567378997802734 ], [ -75.966392517089844, -8.566178321838379 ], [ -75.966659545898381, -8.565737724304199 ], [ -75.966873168945312, -8.565388679504395 ], [ -75.967407226562443, -8.564935684204102 ], [ -75.969329833984318, -8.563310623168832 ], [ -75.969581604003906, -8.562148094177246 ], [ -75.968841552734318, -8.561029434204102 ], [ -75.968215942382812, -8.560088157653752 ], [ -75.968299865722656, -8.557779312133675 ], [ -75.96795654296875, -8.555873870849609 ], [ -75.966522216796875, -8.553640365600586 ], [ -75.965621948242188, -8.55223560333252 ], [ -75.965560913085938, -8.551049232482853 ], [ -75.965950012207031, -8.549830436706543 ], [ -75.965797424316349, -8.548640251159611 ], [ -75.965263366699219, -8.547677993774414 ], [ -75.963668823242188, -8.54576587677002 ], [ -75.963386535644474, -8.544419288635254 ], [ -75.963600158691349, -8.543830871582031 ], [ -75.963821411132812, -8.543219566345215 ], [ -75.9658203125, -8.540929794311523 ], [ -75.966133117675781, -8.539381980895939 ], [ -75.966239929199219, -8.538868904113713 ], [ -75.966392517089844, -8.538516044616642 ], [ -75.967117309570256, -8.536858558654728 ], [ -75.967514038085881, -8.534242630004883 ], [ -75.967796325683537, -8.53239917755127 ], [ -75.968154907226506, -8.531084060668945 ], [ -75.968597412109375, -8.529438018798828 ], [ -75.96868896484375, -8.52803897857666 ], [ -75.968765258789062, -8.526869773864689 ], [ -75.969512939453068, -8.52354907989502 ], [ -75.969261169433594, -8.520559310913029 ], [ -75.969161987304688, -8.519328117370605 ], [ -75.9703369140625, -8.517161369323674 ], [ -75.969886779785099, -8.514890670776367 ], [ -75.9703369140625, -8.513541221618596 ], [ -75.970466613769474, -8.513154029846191 ], [ -75.970596313476562, -8.511507987976074 ], [ -75.970359802246037, -8.510841369628906 ], [ -75.969917297363281, -8.509589195251465 ], [ -75.969306945800724, -8.508575439453125 ], [ -75.969116210937443, -8.508249282836857 ], [ -75.968696594238281, -8.507870674133244 ], [ -75.966445922851506, -8.505848884582463 ], [ -75.965263366699219, -8.505051612854004 ], [ -75.964607238769531, -8.504609107971135 ], [ -75.961921691894531, -8.503634452819711 ], [ -75.960823059081974, -8.5033922195434 ], [ -75.960578918457031, -8.503339767456055 ], [ -75.960037231445312, -8.503449440002441 ], [ -75.959327697753906, -8.503362655639648 ], [ -75.956489562988281, -8.503019332885685 ], [ -75.956260681152287, -8.50267219543457 ], [ -75.956031799316406, -8.502319335937443 ], [ -75.955780029296818, -8.501441001891976 ], [ -75.955436706542969, -8.500258445739746 ], [ -75.955612182617188, -8.498353004455566 ], [ -75.955772399902287, -8.49668025970459 ], [ -75.956680297851562, -8.492880821228027 ], [ -75.956642150878849, -8.492751121520939 ], [ -75.9561767578125, -8.491029739379883 ], [ -75.955940246582031, -8.488739967346191 ], [ -75.955955505371037, -8.488546371459961 ], [ -75.956016540527344, -8.487730026245117 ], [ -75.956367492675781, -8.486991882324219 ], [ -75.956451416015568, -8.486818313598576 ], [ -75.956512451171875, -8.486160278320312 ], [ -75.955680847167912, -8.484857559204102 ], [ -75.955612182617188, -8.484207153320312 ], [ -75.956626892089787, -8.482930183410645 ], [ -75.956939697265625, -8.481198310852051 ], [ -75.957557678222656, -8.479460716247559 ], [ -75.9598388671875, -8.477084159851074 ], [ -75.962379455566406, -8.472929000854492 ], [ -75.963935852050781, -8.467551231384221 ], [ -75.964569091796875, -8.462568283080998 ], [ -75.964698791503906, -8.462423324584961 ], [ -75.965316772460881, -8.461730003356934 ], [ -75.966583251953125, -8.461015701293945 ], [ -75.967002868652344, -8.46077919006342 ], [ -75.967201232910099, -8.460289001464844 ], [ -75.967239379882812, -8.460188865661621 ], [ -75.9659423828125, -8.458678245544434 ], [ -75.965476989746094, -8.453739166259766 ], [ -75.965003967285156, -8.452230453491211 ], [ -75.964653015136662, -8.451100349426213 ], [ -75.963958740234318, -8.450359344482422 ], [ -75.963851928710938, -8.450323104858398 ], [ -75.9632568359375, -8.450119972229004 ], [ -75.960594177246094, -8.448291778564453 ], [ -75.960456848144474, -8.448198318481388 ], [ -75.958808898925724, -8.446484565734863 ], [ -75.957588195800724, -8.444098472595158 ], [ -75.957466125488281, -8.443660736083928 ], [ -75.956703186035156, -8.44091892242426 ], [ -75.956344604492131, -8.440432548522949 ], [ -75.955986022949219, -8.439948081970215 ], [ -75.954734802246037, -8.438849449157658 ], [ -75.954132080078125, -8.438321113586369 ], [ -75.952186584472656, -8.433839797973633 ], [ -75.951171875, -8.432768821716252 ], [ -75.95086669921875, -8.432450294494629 ], [ -75.950576782226562, -8.431797981262207 ], [ -75.950225830078068, -8.431009292602482 ], [ -75.948356628417969, -8.429690361022892 ], [ -75.94692230224598, -8.429359436035099 ], [ -75.945289611816349, -8.428590774536133 ], [ -75.944671630859375, -8.428298950195256 ], [ -75.943679809570199, -8.42720985412592 ], [ -75.943496704101562, -8.426019668579102 ], [ -75.943565368652287, -8.425775527954045 ], [ -75.943656921386662, -8.425420761108398 ], [ -75.944061279296761, -8.424874305725041 ], [ -75.944259643554688, -8.424599647521916 ], [ -75.944671630859375, -8.42332935333252 ], [ -75.9453125, -8.421349525451603 ], [ -75.945571899414006, -8.412899017333984 ], [ -75.945579528808537, -8.412718772888127 ], [ -75.946426391601506, -8.40735912322998 ], [ -75.946464538574219, -8.404726028442383 ], [ -75.946502685546875, -8.402118682861328 ], [ -75.946617126464787, -8.401359558105469 ], [ -75.946823120117131, -8.399929046630859 ], [ -75.947784423828125, -8.397072792053223 ], [ -75.948020935058594, -8.396360397338867 ], [ -75.948463439941406, -8.394429206848145 ], [ -75.949028015136719, -8.391969680786133 ], [ -75.949195861816349, -8.391657829284611 ], [ -75.949996948242188, -8.390169143676758 ], [ -75.950836181640625, -8.387828826904297 ], [ -75.951919555664062, -8.385690689086914 ], [ -75.95208740234375, -8.385359764099064 ], [ -75.952667236328125, -8.384551048278809 ], [ -75.955841064453125, -8.380139350891113 ], [ -75.957092285156193, -8.376989364624023 ], [ -75.958610534667969, -8.375259399414006 ], [ -75.960189819335938, -8.372904777526855 ], [ -75.961418151855355, -8.371068000793457 ], [ -75.961601257324162, -8.370036125183105 ], [ -75.961830139160156, -8.368729591369572 ], [ -75.963493347167912, -8.365469932556152 ], [ -75.965965270996037, -8.360627174377385 ], [ -75.967681884765568, -8.358349800109863 ], [ -75.969497680664006, -8.3572998046875 ], [ -75.970237731933594, -8.356478691101017 ], [ -75.970664978027287, -8.355372428894043 ], [ -75.971397399902287, -8.353480339050293 ], [ -75.971641540527344, -8.350325584411621 ], [ -75.971717834472543, -8.349279403686467 ], [ -75.971916198730469, -8.348520278930607 ], [ -75.972312927246094, -8.346970558166447 ], [ -75.973464965820312, -8.344456672668457 ], [ -75.973999023437443, -8.343290328979435 ], [ -75.974411010742188, -8.342660903930664 ], [ -75.975959777832031, -8.340288162231445 ], [ -75.976455688476506, -8.339301109313908 ], [ -75.977447509765625, -8.337339401245117 ], [ -75.978118896484375, -8.336765289306527 ], [ -75.978286743164006, -8.336619377136174 ], [ -75.980796813964844, -8.335519790649414 ], [ -75.982086181640568, -8.334286689758244 ], [ -75.982261657714844, -8.334120750427246 ], [ -75.982345581054688, -8.334001541137695 ], [ -75.983810424804631, -8.331949234008675 ], [ -75.985610961914006, -8.32997989654541 ], [ -75.985900878906193, -8.327718734741154 ], [ -75.986228942871094, -8.327059745788574 ], [ -75.986808776855469, -8.326470375060978 ], [ -75.988761901855412, -8.325260162353516 ], [ -75.990531921386719, -8.323399543762207 ], [ -75.990608215332031, -8.32329273223877 ], [ -75.991455078124943, -8.322136878967285 ], [ -75.993118286132812, -8.319067001342717 ], [ -75.9937744140625, -8.318273544311523 ], [ -75.994056701660156, -8.317934036254883 ], [ -75.993011474609375, -8.31651496887207 ], [ -75.992202758789006, -8.315418243408203 ], [ -75.992149353027344, -8.314772605895939 ], [ -75.992073059082031, -8.313950538635254 ], [ -75.991310119628906, -8.311469078063851 ], [ -75.991050720214787, -8.310608863830566 ], [ -75.99072265625, -8.308448791503906 ], [ -75.990386962890568, -8.307689666748047 ], [ -75.989570617675781, -8.306782722473145 ], [ -75.989341735839787, -8.30652999877924 ], [ -75.988639831542969, -8.306170463562012 ], [ -75.987701416015625, -8.30568885803217 ], [ -75.98626708984375, -8.305554389953613 ], [ -75.984878540038949, -8.305421829223576 ], [ -75.983062744140568, -8.304765701293888 ], [ -75.979934692382812, -8.303634643554688 ], [ -75.973793029785099, -8.297825813293457 ], [ -75.972785949707031, -8.297187805175668 ], [ -75.970207214355469, -8.296107292175236 ], [ -75.968330383300781, -8.295886039733887 ], [ -75.966339111328125, -8.297246932983398 ], [ -75.964439392089787, -8.297586441039982 ], [ -75.962913513183537, -8.296102523803711 ], [ -75.962409973144531, -8.295610427856388 ], [ -75.960166931152287, -8.292379379272461 ], [ -75.957275390625, -8.290963172912598 ], [ -75.954727172851506, -8.290579795837346 ], [ -75.953910827636719, -8.289800643920898 ], [ -75.953559875488281, -8.288098335266113 ], [ -75.953231811523438, -8.287885665893498 ], [ -75.952713012695256, -8.287549018859806 ], [ -75.951972961425724, -8.287440299987793 ], [ -75.949630737304688, -8.287949562072697 ], [ -75.948608398437443, -8.287512779235783 ], [ -75.947563171386662, -8.286469459533691 ], [ -75.947380065917912, -8.286219596862793 ], [ -75.94476318359375, -8.282729148864689 ], [ -75.944473266601562, -8.282546043395939 ], [ -75.943511962890625, -8.281940460205078 ], [ -75.941421508789062, -8.281007766723576 ], [ -75.940750122070312, -8.280709266662541 ], [ -75.932548522949219, -8.27446460723877 ], [ -75.93206787109375, -8.274248123168888 ], [ -75.931709289550781, -8.274085998535099 ], [ -75.9256591796875, -8.269758224487248 ], [ -75.923835754394474, -8.268876075744572 ], [ -75.922882080078068, -8.268159866333008 ], [ -75.919082641601562, -8.266407966613656 ], [ -75.918106079101506, -8.265958786010742 ], [ -75.916641235351562, -8.26434326171875 ], [ -75.915573120117188, -8.26315975189209 ], [ -75.913818359374943, -8.26199817657465 ], [ -75.9130859375, -8.260498046875 ], [ -75.912971496581918, -8.259730339050293 ], [ -75.91290283203125, -8.259238243103027 ], [ -75.912986755371094, -8.258433341979924 ], [ -75.9130859375, -8.257397651672363 ], [ -75.91510009765625, -8.251588821411133 ], [ -75.917327880859318, -8.247810363769531 ], [ -75.919525146484318, -8.242171287536621 ], [ -75.920661926269474, -8.23924732208252 ], [ -75.920928955078125, -8.238778114318848 ], [ -75.921989440917969, -8.236927032470703 ], [ -75.923408508300781, -8.23500823974598 ], [ -75.92425537109375, -8.232781410217285 ], [ -75.924537658691406, -8.230059623718262 ], [ -75.924385070800724, -8.228947639465332 ], [ -75.924171447753906, -8.227338790893555 ], [ -75.924423217773438, -8.223288536071777 ], [ -75.924186706542969, -8.221871376037484 ], [ -75.924087524414062, -8.22129917144764 ], [ -75.924095153808537, -8.220402717590332 ], [ -75.924102783203068, -8.219091415405273 ], [ -75.923736572265568, -8.217667579650822 ], [ -75.923789978027344, -8.216189384460392 ], [ -75.924148559570312, -8.215348243713379 ], [ -75.92596435546875, -8.214583396911621 ], [ -75.927276611328011, -8.214029312133789 ], [ -75.927360534667912, -8.21394157409668 ], [ -75.927726745605412, -8.213536262512207 ], [ -75.927886962890625, -8.21293926239008 ], [ -75.927734374999943, -8.212342262268066 ], [ -75.9276123046875, -8.211858749389592 ], [ -75.926239013671875, -8.210740089416504 ], [ -75.926040649414062, -8.210463523864689 ], [ -75.925697326660156, -8.209989547729492 ], [ -75.925460815429631, -8.208608627319279 ], [ -75.925636291503849, -8.207639694213867 ], [ -75.926513671874886, -8.206330299377441 ], [ -75.92681884765625, -8.205866813659611 ], [ -75.928329467773438, -8.204815864562988 ], [ -75.929885864257812, -8.204738616943359 ], [ -75.932731628417969, -8.205140113830566 ], [ -75.934257507324219, -8.205089569091797 ], [ -75.934829711914062, -8.204832077026367 ], [ -75.935775756835938, -8.204410552978516 ], [ -75.936538696289062, -8.203738212585449 ], [ -75.936637878417969, -8.203533172607365 ], [ -75.936965942382812, -8.202839851379395 ], [ -75.937332153320312, -8.201030731201115 ], [ -75.937080383300724, -8.198518753051701 ], [ -75.936706542968693, -8.197199821472111 ], [ -75.936859130859375, -8.194810867309457 ], [ -75.93695068359375, -8.194527626037598 ], [ -75.937248229980469, -8.193589210510254 ], [ -75.939270019531193, -8.18997859954834 ], [ -75.939582824707031, -8.18896293640131 ], [ -75.940505981445256, -8.185940742492676 ], [ -75.940597534179631, -8.184807777404785 ], [ -75.940666198730469, -8.184009552001953 ], [ -75.940444946289062, -8.182895660400391 ], [ -75.940147399902287, -8.181398391723633 ], [ -75.940277099609375, -8.17782020568842 ], [ -75.939598083496094, -8.175132751464844 ], [ -75.939529418945312, -8.174868583679142 ], [ -75.939010620117188, -8.173630714416504 ], [ -75.938400268554631, -8.172169685363713 ], [ -75.938438415527344, -8.171574592590332 ], [ -75.938575744628906, -8.169148445129395 ], [ -75.937828063964787, -8.167359352111816 ], [ -75.935577392578125, -8.164450645446777 ], [ -75.934745788574219, -8.160959243774414 ], [ -75.934982299804631, -8.158632278442326 ], [ -75.935226440429688, -8.156289100646973 ], [ -75.93471527099598, -8.153634071350098 ], [ -75.934669494628906, -8.153408050537109 ], [ -75.935142517089844, -8.151350021362305 ], [ -75.935249328613281, -8.148688316345215 ], [ -75.935317993164062, -8.147032737731877 ], [ -75.936088562011719, -8.145169258117619 ], [ -75.936149597167969, -8.144439697265625 ], [ -75.936058044433594, -8.144193649291992 ], [ -75.935646057128849, -8.143058776855412 ], [ -75.935272216796818, -8.141304016113281 ], [ -75.934883117675724, -8.139469146728516 ], [ -75.9337158203125, -8.137179374694824 ], [ -75.933540344238224, -8.13579082489008 ], [ -75.933563232421818, -8.135689735412598 ], [ -75.933807373046875, -8.134659767150879 ], [ -75.934249877929688, -8.13392162322998 ], [ -75.934806823730412, -8.132980346679688 ], [ -75.935379028320256, -8.13084888458252 ], [ -75.935935974121037, -8.129999160766602 ], [ -75.936203002929688, -8.124771118164062 ], [ -75.936416625976506, -8.123761177062988 ], [ -75.936508178710881, -8.12332630157465 ], [ -75.937416076660156, -8.121519088745117 ], [ -75.939468383789006, -8.118928909301758 ], [ -75.940376281738281, -8.117229461669808 ], [ -75.940742492675781, -8.115648269653263 ], [ -75.940742492675781, -8.113530158996525 ], [ -75.939666748046818, -8.111088752746582 ], [ -75.938606262206974, -8.109756469726506 ], [ -75.937843322753849, -8.108798980712891 ], [ -75.937232971191406, -8.108269691467228 ], [ -75.936378479003906, -8.107528686523438 ], [ -75.935661315917912, -8.107126235961914 ], [ -75.934318542480412, -8.106369018554688 ], [ -75.932968139648381, -8.105909347534123 ], [ -75.932846069335938, -8.10587024688715 ], [ -75.931945800781193, -8.105232238769531 ], [ -75.931800842285156, -8.105129241943359 ], [ -75.929946899413949, -8.103469848632756 ], [ -75.92816162109375, -8.100798606872502 ], [ -75.927062988281193, -8.09727954864502 ], [ -75.926849365234375, -8.096080780029297 ], [ -75.926506042480412, -8.094207763671875 ], [ -75.926628112792969, -8.092438697814885 ], [ -75.927436828613224, -8.090378761291504 ], [ -75.927696228027344, -8.088468551635685 ], [ -75.927932739257756, -8.088059425353947 ], [ -75.927742004394474, -8.085111618041935 ], [ -75.9276123046875, -8.083099365234375 ], [ -75.927986145019531, -8.081298828125 ], [ -75.927825927734318, -8.080208778381348 ], [ -75.927291870117188, -8.078349113464355 ], [ -75.926918029785156, -8.077939033508244 ], [ -75.924697875976506, -8.076669692993164 ], [ -75.924079895019531, -8.076172828674316 ], [ -75.922477722167912, -8.074880599975586 ], [ -75.921852111816406, -8.074096679687443 ], [ -75.920593261718693, -8.072519302368107 ], [ -75.917396545410156, -8.071619033813477 ], [ -75.916725158691406, -8.071557998657227 ], [ -75.915298461914062, -8.071432113647461 ], [ -75.912689208984375, -8.07195854187006 ], [ -75.910964965820256, -8.072553634643555 ], [ -75.909820556640568, -8.072945594787598 ], [ -75.909233093261662, -8.072967529296818 ], [ -75.908256530761719, -8.073004722595215 ], [ -75.905708312988224, -8.072199821472168 ], [ -75.904022216796875, -8.071666717529297 ], [ -75.902877807617188, -8.071578025817871 ], [ -75.900657653808537, -8.072279930114689 ], [ -75.900093078613224, -8.072583198547363 ], [ -75.899597167968693, -8.072850227355957 ], [ -75.899185180664062, -8.072922706604004 ], [ -75.898689270019531, -8.073006629943848 ], [ -75.898361206054631, -8.072963714599553 ], [ -75.897689819335881, -8.072873115539494 ], [ -75.895996093749886, -8.071920394897461 ], [ -75.895095825195312, -8.071789741516113 ], [ -75.890167236328068, -8.073168754577637 ], [ -75.888732910156193, -8.073987007141113 ], [ -75.887870788574162, -8.074026107788086 ], [ -75.886528015136662, -8.074090003967285 ], [ -75.885581970214787, -8.073455810546761 ], [ -75.884407043457031, -8.072669982910099 ], [ -75.881706237792969, -8.071489334106388 ], [ -75.879196166992131, -8.068808555603027 ], [ -75.877029418945312, -8.067429542541504 ], [ -75.875717163085938, -8.067020416259766 ], [ -75.872856140136719, -8.067070007324219 ], [ -75.872627258300724, -8.067263603210449 ], [ -75.8709716796875, -8.068635940551701 ], [ -75.870147705078068, -8.068988800048828 ], [ -75.869956970214787, -8.069068908691293 ], [ -75.867607116699219, -8.068088531494084 ], [ -75.861526489257812, -8.068498611450195 ], [ -75.859832763671818, -8.068419456481934 ], [ -75.858177185058594, -8.066935539245549 ], [ -75.857757568359375, -8.066558837890568 ], [ -75.856857299804688, -8.065311431884766 ], [ -75.854576110839787, -8.06215763092041 ], [ -75.854400634765568, -8.061848640441895 ], [ -75.853965759277344, -8.061059951782227 ], [ -75.853538513183537, -8.059382438659611 ], [ -75.853286743164062, -8.058380126953068 ], [ -75.852493286132756, -8.05761814117426 ], [ -75.850738525390625, -8.057538986206055 ], [ -75.848457336425781, -8.058259010314941 ], [ -75.847816467285099, -8.058759689331055 ], [ -75.847175598144531, -8.059001922607422 ], [ -75.846611022949219, -8.059218406677189 ], [ -75.846199035644474, -8.059290885925236 ], [ -75.845245361328068, -8.059465408325138 ], [ -75.844551086425781, -8.059329986572209 ], [ -75.844459533691406, -8.059188842773438 ], [ -75.844245910644531, -8.058860778808537 ], [ -75.843215942382812, -8.055610656738224 ], [ -75.842582702636662, -8.05360031127924 ], [ -75.842811584472656, -8.051409721374512 ], [ -75.843490600585938, -8.049408912658691 ], [ -75.843521118164006, -8.043889045715275 ], [ -75.842987060546875, -8.040760040283203 ], [ -75.841621398925724, -8.036171913146916 ], [ -75.841178894042969, -8.034679412841797 ], [ -75.841423034667912, -8.03119945526123 ], [ -75.841392517089844, -8.02717399597168 ], [ -75.841346740722599, -8.022189140319767 ], [ -75.841972351074219, -8.016990661621037 ], [ -75.8421630859375, -8.016329765319824 ], [ -75.842308044433594, -8.015839576721191 ], [ -75.842391967773381, -8.013832092285099 ], [ -75.842430114746094, -8.012799263000431 ], [ -75.843040466308537, -8.007689476013127 ], [ -75.844856262206974, -7.999848842620793 ], [ -75.846061706542969, -7.998159885406437 ], [ -75.846237182617188, -7.996409893035889 ], [ -75.84576416015625, -7.995780944824219 ], [ -75.844917297363281, -7.994659900665226 ], [ -75.844581604003849, -7.99353122711176 ], [ -75.843887329101562, -7.991209030151367 ], [ -75.839202880859375, -7.982019901275635 ], [ -75.838813781738281, -7.98054313659668 ], [ -75.838447570800781, -7.979158878326416 ], [ -75.838073730468693, -7.978343009948674 ], [ -75.837516784667912, -7.977130889892521 ], [ -75.837142944335881, -7.975449085235596 ], [ -75.836860656738224, -7.968369960784855 ], [ -75.836952209472599, -7.965438842773438 ], [ -75.837203979492188, -7.964852809905949 ], [ -75.837608337402287, -7.963919162750187 ], [ -75.837699890136662, -7.963154792785645 ], [ -75.837821960449105, -7.962180137634277 ], [ -75.838157653808594, -7.961538791656437 ], [ -75.838066101074219, -7.960459232330322 ], [ -75.837905883789006, -7.958518981933537 ], [ -75.837966918945312, -7.958123207092285 ], [ -75.838035583496094, -7.957689762115479 ], [ -75.83966064453125, -7.956078052520752 ], [ -75.83984375, -7.955983161926213 ], [ -75.840629577636719, -7.955558776855412 ], [ -75.841323852539006, -7.954920768737793 ], [ -75.842041015625, -7.954259872436467 ], [ -75.842575073242131, -7.953968048095703 ], [ -75.843086242675781, -7.953690052032471 ], [ -75.844085693359318, -7.952154159545898 ], [ -75.844207763671818, -7.949769973754883 ], [ -75.843299865722656, -7.946586132049504 ], [ -75.843521118164006, -7.945406913757324 ], [ -75.844177246093693, -7.945082187652588 ], [ -75.847953796386719, -7.941464900970459 ], [ -75.848747253417969, -7.941001892089844 ], [ -75.850151062011719, -7.939424991607609 ], [ -75.850234985351562, -7.938401222229004 ], [ -75.849281311035156, -7.936624050140324 ], [ -75.849220275878906, -7.935881137847844 ], [ -75.850059509277344, -7.93374490737915 ], [ -75.850173950195312, -7.932550907134953 ], [ -75.851516723632812, -7.930044174194279 ], [ -75.851821899414006, -7.927573204040527 ], [ -75.852653503417969, -7.925047874450684 ], [ -75.853950500488281, -7.923616886138916 ], [ -75.855216979980469, -7.922709941864014 ], [ -75.856735229492188, -7.922054767608643 ], [ -75.858131408691349, -7.921156883239746 ], [ -75.859588623046875, -7.920981884002686 ], [ -75.861602783203125, -7.922251224517765 ], [ -75.864021301269474, -7.924942970275879 ], [ -75.866210937499943, -7.926601886749154 ], [ -75.868301391601562, -7.92681694030756 ], [ -75.870292663574219, -7.925870895385685 ], [ -75.8712158203125, -7.92585897445673 ], [ -75.871803283691406, -7.926437854766846 ], [ -75.873619079589844, -7.927329063415414 ], [ -75.874542236328125, -7.928232192993107 ], [ -75.876083374023438, -7.929034233093205 ], [ -75.878433227539006, -7.931098937988281 ], [ -75.883331298828125, -7.934063911437988 ], [ -75.886138916015568, -7.93451976776123 ], [ -75.886337280273381, -7.93431282043457 ], [ -75.886077880859261, -7.933018207550049 ], [ -75.886215209960938, -7.932538986205998 ], [ -75.886886596679688, -7.931985855102539 ], [ -75.887680053710881, -7.931750774383545 ], [ -75.888397216796875, -7.931910037994385 ], [ -75.890434265136662, -7.933632850646973 ], [ -75.891517639160156, -7.934145927429199 ], [ -75.892257690429631, -7.934145927429199 ], [ -75.893806457519531, -7.933618068695068 ], [ -75.895095825195312, -7.93375921249384 ], [ -75.896080017089787, -7.934416770935059 ], [ -75.896926879882756, -7.936413764953556 ], [ -75.897567749023438, -7.936946868896484 ], [ -75.898338317871094, -7.93722486495966 ], [ -75.899124145507756, -7.93801212310791 ], [ -75.899574279785156, -7.938117027282715 ], [ -75.901084899902344, -7.937771797180062 ], [ -75.902053833007812, -7.93805980682373 ], [ -75.903396606445312, -7.93902397155756 ], [ -75.905677795410156, -7.939923763275146 ], [ -75.909904479980412, -7.943330764770508 ], [ -75.911407470703125, -7.943781852722168 ], [ -75.912704467773438, -7.944475173950195 ], [ -75.914993286132812, -7.944569110870361 ], [ -75.918052673339844, -7.946454048156738 ], [ -75.919822692871037, -7.946944236755314 ], [ -75.920562744140625, -7.947756767272949 ], [ -75.920646667480469, -7.949603080749512 ], [ -75.921272277832031, -7.950725078582764 ], [ -75.921623229980412, -7.951952934265137 ], [ -75.922172546386719, -7.952458858489933 ], [ -75.923538208007756, -7.953014850616398 ], [ -75.924430847167969, -7.953691959381104 ], [ -75.925125122070312, -7.955471992492676 ], [ -75.926094055175781, -7.956600189208928 ], [ -75.926696777343693, -7.956987857818604 ], [ -75.928245544433594, -7.957283973693848 ], [ -75.929275512695256, -7.956240177154541 ], [ -75.930778503417912, -7.955813884735107 ], [ -75.931358337402287, -7.955367088317757 ], [ -75.932243347167969, -7.953855991363525 ], [ -75.933280944824162, -7.950913906097355 ], [ -75.936210632324162, -7.948006153106689 ], [ -75.937545776367131, -7.945713043212891 ], [ -75.938995361328068, -7.944479942321721 ], [ -75.939682006835938, -7.944733142852783 ], [ -75.941062927246094, -7.946574211120549 ], [ -75.942329406738224, -7.947511196136361 ], [ -75.94525146484375, -7.948293209075928 ], [ -75.947662353515568, -7.948170185089111 ], [ -75.95086669921875, -7.946586132049504 ], [ -75.953628540039062, -7.947206020355168 ], [ -75.954421997070256, -7.947980880737248 ], [ -75.954925537109318, -7.949724197387695 ], [ -75.956016540527344, -7.951223850250187 ], [ -75.959587097167912, -7.954525947570744 ], [ -75.960372924804688, -7.956703186035099 ], [ -75.960830688476506, -7.957153797149658 ], [ -75.961341857910156, -7.958239078521729 ], [ -75.962150573730412, -7.958860874175969 ], [ -75.964241027832031, -7.95915508270258 ], [ -75.965156555175781, -7.960037231445256 ], [ -75.965667724609375, -7.960245132446289 ], [ -75.966949462890511, -7.960351943969727 ], [ -75.968124389648438, -7.9598708152771 ], [ -75.974754333496037, -7.959827899932861 ], [ -75.97735595703125, -7.95893383026123 ], [ -75.978096008300724, -7.959004878997803 ], [ -75.979660034179688, -7.959706783294621 ], [ -75.983139038085881, -7.95933818817133 ], [ -75.985725402831974, -7.958155155181885 ], [ -75.986831665039062, -7.957057952880859 ], [ -75.990982055663949, -7.955574989318791 ], [ -75.993118286132812, -7.954139232635384 ], [ -75.993858337402344, -7.952988147735539 ], [ -75.994171142578125, -7.949687957763672 ], [ -75.993087768554688, -7.948705196380615 ], [ -75.992462158203125, -7.947159767150879 ], [ -75.992507934570199, -7.944771766662598 ], [ -75.992233276367188, -7.943614006042424 ], [ -75.991119384765625, -7.942397117614632 ], [ -75.988700866699219, -7.941803932189941 ], [ -75.988143920898438, -7.941452980041504 ], [ -75.987892150878906, -7.939411163330078 ], [ -75.986114501953068, -7.938663959503174 ], [ -75.985397338867188, -7.937508106231689 ], [ -75.98541259765625, -7.935799121856689 ], [ -75.986671447753849, -7.932548999786377 ], [ -75.986358642578125, -7.931563854217529 ], [ -75.985107421875, -7.929985046386719 ], [ -75.984535217285156, -7.928132057189885 ], [ -75.985023498535156, -7.922901153564453 ], [ -75.986206054687443, -7.919326782226506 ], [ -75.986091613769474, -7.917664051055908 ], [ -75.985610961914006, -7.916560173034668 ], [ -75.984260559082031, -7.915460109710637 ], [ -75.980690002441406, -7.915325164794865 ], [ -75.979377746582031, -7.914892196655217 ], [ -75.978515625, -7.913937091827393 ], [ -75.977813720703068, -7.912030220031738 ], [ -75.977066040039062, -7.910873889923096 ], [ -75.975242614746037, -7.909638881683293 ], [ -75.973526000976506, -7.909326076507568 ], [ -75.970687866210938, -7.908229827880859 ], [ -75.970283508300724, -7.907867908477783 ], [ -75.969940185546875, -7.906992912292424 ], [ -75.969947814941406, -7.905879974365178 ], [ -75.970710754394531, -7.903473854064941 ], [ -75.971298217773438, -7.902838230133057 ], [ -75.972908020019531, -7.901775836944523 ], [ -75.9759521484375, -7.901081085205078 ], [ -75.980133056640625, -7.899724006652832 ], [ -75.984130859375, -7.899453163146973 ], [ -75.984565734863224, -7.898591995239201 ], [ -75.985008239746094, -7.895751953124943 ], [ -75.984909057617188, -7.894865036010685 ], [ -75.984161376953125, -7.893256187438908 ], [ -75.984260559082031, -7.89260721206665 ], [ -75.986366271972656, -7.892691135406437 ], [ -75.988235473632812, -7.891711235046387 ], [ -75.988960266113224, -7.891571998596191 ], [ -75.992187499999943, -7.892850875854435 ], [ -75.993576049804688, -7.892764091491699 ], [ -75.995307922363281, -7.892199039459172 ], [ -75.997322082519531, -7.892275810241699 ], [ -75.998527526855469, -7.892689228057861 ], [ -75.999954223632812, -7.893590927124023 ], [ -76.001052856445312, -7.895027160644531 ], [ -76.001823425292912, -7.895503997802734 ], [ -76.002365112304688, -7.8954758644104 ], [ -76.002655029296875, -7.894949913024902 ], [ -76.00274658203125, -7.893393039703369 ], [ -76.003280639648381, -7.892117023468018 ], [ -76.004219055175724, -7.891102790832463 ], [ -76.005569458007756, -7.89054012298584 ], [ -76.006317138671818, -7.889857769012394 ], [ -76.007011413574219, -7.888780117034912 ], [ -76.007652282714787, -7.886951923370361 ], [ -76.007682800292969, -7.885224819183293 ], [ -76.00714111328125, -7.882729053497258 ], [ -76.005683898925781, -7.878166198730469 ], [ -76.004974365234318, -7.876776218414307 ], [ -76.003387451171875, -7.875386238098088 ], [ -76.002952575683594, -7.874175071716252 ], [ -76.00311279296875, -7.871957778930607 ], [ -76.003456115722599, -7.870816230773869 ], [ -76.004135131835881, -7.869831085205021 ], [ -76.00490570068348, -7.869575977325439 ], [ -76.005485534667969, -7.868995189666748 ], [ -76.006057739257812, -7.867874145507812 ], [ -76.006240844726449, -7.864218235015869 ], [ -76.007293701171875, -7.863158226013184 ], [ -76.008094787597656, -7.862739086151123 ], [ -76.008560180664062, -7.861951828002873 ], [ -76.008583068847656, -7.860848903656006 ], [ -76.008117675781193, -7.858887195587101 ], [ -76.008216857910099, -7.856680870056152 ], [ -76.008514404296818, -7.855547904968262 ], [ -76.010360717773438, -7.85373592376709 ], [ -76.012344360351449, -7.852818012237549 ], [ -76.013908386230469, -7.851401805877629 ], [ -76.015296936035099, -7.849934101104736 ], [ -76.016914367675724, -7.847704887390137 ], [ -76.017997741699219, -7.846706867218018 ], [ -76.018844604492188, -7.846370220184269 ], [ -76.019676208496037, -7.845635890960637 ], [ -76.020370483398438, -7.843978881835881 ], [ -76.022567749023438, -7.843015193939209 ], [ -76.022659301757812, -7.842155933380127 ], [ -76.022293090820312, -7.840132236480656 ], [ -76.021530151367188, -7.838902950286865 ], [ -76.021675109863224, -7.836725234985352 ], [ -76.022712707519474, -7.836098194122201 ], [ -76.023361206054688, -7.836104869842529 ], [ -76.023841857910156, -7.835697174072209 ], [ -76.024452209472599, -7.834762096405029 ], [ -76.025032043457031, -7.832283020019531 ], [ -76.025733947753906, -7.831095218658447 ], [ -76.026252746581974, -7.829638957977295 ], [ -76.029914855957031, -7.826039791107178 ], [ -76.031608581542855, -7.822779178619328 ], [ -76.036575317382812, -7.818010807037297 ], [ -76.037597656249943, -7.816705226898193 ], [ -76.038322448730469, -7.814813137054443 ], [ -76.038444519042912, -7.81196403503418 ], [ -76.038131713867188, -7.810809135437012 ], [ -76.037216186523381, -7.80977821350092 ], [ -76.037216186523381, -7.807843208312988 ], [ -76.036819458007756, -7.807002067565918 ], [ -76.038772583007812, -7.805515766143799 ], [ -76.039848327636719, -7.804049015045166 ], [ -76.040328979492188, -7.802563190460205 ], [ -76.040077209472599, -7.800212860107365 ], [ -76.044097900390568, -7.791574954986515 ], [ -76.046569824218693, -7.788990020751953 ], [ -76.047515869140568, -7.78699779510498 ], [ -76.048904418945312, -7.785719871520996 ], [ -76.048988342285156, -7.784978866577148 ], [ -76.049392700195312, -7.78460788726801 ], [ -76.050865173339787, -7.785027027130127 ], [ -76.053329467773381, -7.786793231963998 ], [ -76.054885864257812, -7.787596225738469 ], [ -76.059318542480469, -7.788462162017709 ], [ -76.060104370117131, -7.788331985473576 ], [ -76.060997009277344, -7.787271976470947 ], [ -76.061592102050781, -7.78602123260498 ], [ -76.061653137207031, -7.784276962280273 ], [ -76.061393737792969, -7.782741069793644 ], [ -76.062507629394418, -7.780432224273625 ], [ -76.062301635742131, -7.777962207794189 ], [ -76.06256103515625, -7.776706218719482 ], [ -76.063491821289062, -7.774911880493164 ], [ -76.065750122070199, -7.772500991821232 ], [ -76.066688537597599, -7.770228862762451 ], [ -76.068244934082031, -7.769083976745549 ], [ -76.069793701171875, -7.769162178039437 ], [ -76.071739196777287, -7.7676100730896 ], [ -76.074569702148438, -7.767804145812931 ], [ -76.07666015625, -7.765690803527832 ], [ -76.081016540527344, -7.765145778655949 ], [ -76.081977844238281, -7.763922214508 ], [ -76.082031249999943, -7.763361930847111 ], [ -76.081512451171875, -7.762739181518555 ], [ -76.081634521484375, -7.762303829193058 ], [ -76.082611083984318, -7.761460781097412 ], [ -76.084053039550724, -7.760687828063908 ], [ -76.08477783203125, -7.760670185089111 ], [ -76.085205078124886, -7.760286808013916 ], [ -76.085105895996037, -7.758090019226074 ], [ -76.08544921875, -7.75713920593256 ], [ -76.08551025390625, -7.756127834320068 ], [ -76.085105895996037, -7.75399208068842 ], [ -76.086135864257756, -7.74963188171381 ], [ -76.086891174316349, -7.747666835784912 ], [ -76.086791992187443, -7.746653079986572 ], [ -76.086082458496094, -7.74477481842041 ], [ -76.086616516113224, -7.74273777008051 ], [ -76.086204528808594, -7.739186763763428 ], [ -76.086585998535156, -7.736924171447697 ], [ -76.086585998535156, -7.733694076538029 ], [ -76.087043762207031, -7.731912136077881 ], [ -76.086959838867188, -7.729613780975285 ], [ -76.08770751953125, -7.728943824768066 ], [ -76.090431213378849, -7.727861881256104 ], [ -76.094520568847599, -7.727043151855469 ], [ -76.096481323242188, -7.725267887115479 ], [ -76.098030090332031, -7.725135803222656 ], [ -76.098907470703068, -7.724836826324406 ], [ -76.100875854492188, -7.723328113555908 ], [ -76.101951599121094, -7.721526145934945 ], [ -76.101882934570256, -7.720686912536621 ], [ -76.100814819335881, -7.718863964080754 ], [ -76.100540161132756, -7.717685222625732 ], [ -76.101394653320256, -7.71536111831665 ], [ -76.101760864257812, -7.713459968566838 ], [ -76.101913452148438, -7.70960807800293 ], [ -76.10260009765625, -7.707128047943115 ], [ -76.102729797363224, -7.705654144287109 ], [ -76.102355957031193, -7.704133987426701 ], [ -76.098464965820312, -7.698057174682617 ], [ -76.098152160644474, -7.69719123840332 ], [ -76.098152160644474, -7.695725917816105 ], [ -76.098701477050781, -7.693499088287354 ], [ -76.099067687988281, -7.690107822418156 ], [ -76.099044799804688, -7.687347888946533 ], [ -76.097846984863281, -7.68004322052002 ], [ -76.097923278808594, -7.678849220275765 ], [ -76.098457336425724, -7.67689323425293 ], [ -76.098449707031193, -7.676153182983398 ], [ -76.097869873046818, -7.674798965454102 ], [ -76.096504211425781, -7.673182964324894 ], [ -76.093521118164062, -7.671047210693359 ], [ -76.089462280273381, -7.667594909667969 ], [ -76.083282470703068, -7.664145946502686 ], [ -76.081321716308594, -7.663373947143555 ], [ -76.07550048828125, -7.662637233734074 ], [ -76.073158264160099, -7.661929130554199 ], [ -76.071891784667969, -7.660737037658691 ], [ -76.070259094238281, -7.65715217590332 ], [ -76.070510864257756, -7.655422210693359 ], [ -76.072303771972599, -7.652875900268555 ], [ -76.072761535644531, -7.650813102722168 ], [ -76.073219299316406, -7.650234222412109 ], [ -76.073577880859375, -7.64881420135498 ], [ -76.074615478515568, -7.646458148956299 ], [ -76.0748291015625, -7.643428802490178 ], [ -76.075279235839787, -7.641663074493408 ], [ -76.075286865234261, -7.637520790100041 ], [ -76.075668334960824, -7.635891914367676 ], [ -76.076454162597656, -7.634570121765137 ], [ -76.078125, -7.632594108581543 ], [ -76.081443786621094, -7.629720211028996 ], [ -76.083457946777287, -7.62733602523798 ], [ -76.084831237792969, -7.624430179595834 ], [ -76.086044311523381, -7.619732856750488 ], [ -76.086257934570312, -7.613979816436711 ], [ -76.086723327636662, -7.612395763397217 ], [ -76.086746215820312, -7.611564159393254 ], [ -76.086387634277344, -7.610326766967773 ], [ -76.086105346679688, -7.607495784759465 ], [ -76.084388732910156, -7.604451179504338 ], [ -76.083526611328125, -7.60175895690918 ], [ -76.083671569824162, -7.599264144897461 ], [ -76.084365844726562, -7.59630298614502 ], [ -76.084304809570312, -7.594569206237736 ], [ -76.084548950195312, -7.592548847198486 ], [ -76.086082458496094, -7.591000080108586 ], [ -76.086280822753906, -7.590104103088379 ], [ -76.086067199707031, -7.588828086853027 ], [ -76.085548400878906, -7.588088989257812 ], [ -76.084770202636719, -7.585818767547551 ], [ -76.084442138671761, -7.582528114318734 ], [ -76.083259582519531, -7.579736232757568 ], [ -76.082771301269531, -7.576383113861084 ], [ -76.082801818847599, -7.573805809020996 ], [ -76.083694458007812, -7.570528030395451 ], [ -76.083831787109375, -7.567591190338021 ], [ -76.084274291992188, -7.56657600402832 ], [ -76.086318969726506, -7.564743995666504 ], [ -76.088272094726562, -7.563545227050781 ], [ -76.091140747070312, -7.562335014343205 ], [ -76.0926513671875, -7.561933994293156 ], [ -76.09515380859375, -7.55991888046259 ], [ -76.096931457519474, -7.559254169464111 ], [ -76.100997924804688, -7.556587219238281 ], [ -76.104812622070312, -7.553129196166992 ], [ -76.106918334960881, -7.551514148712101 ], [ -76.110603332519531, -7.549652099609375 ], [ -76.111907958984261, -7.548644065856934 ], [ -76.114448547363224, -7.547362804412785 ], [ -76.11614990234375, -7.546110153198185 ], [ -76.118652343749943, -7.544755935668888 ], [ -76.120002746581974, -7.543660163879395 ], [ -76.122299194335881, -7.54127311706543 ], [ -76.123832702636719, -7.539099216461182 ], [ -76.124839782714844, -7.535851001739445 ], [ -76.125762939453125, -7.533957004547119 ], [ -76.127799987792912, -7.530135154724121 ], [ -76.130714416503906, -7.525598049163762 ], [ -76.133735656738224, -7.518951892852783 ], [ -76.134925842285156, -7.517437934875488 ], [ -76.139518737792969, -7.512940883636475 ], [ -76.142082214355469, -7.508693218231201 ], [ -76.144065856933594, -7.504533767700138 ], [ -76.144805908203068, -7.50348520278925 ], [ -76.146034240722599, -7.502721786498967 ], [ -76.150054931640511, -7.501708030700684 ], [ -76.151687622070312, -7.501468181610107 ], [ -76.155082702636662, -7.50140380859375 ], [ -76.156524658203068, -7.500832080841064 ], [ -76.162849426269531, -7.495397090911865 ], [ -76.168975830078125, -7.4894118309021 ], [ -76.171195983886662, -7.486485004425049 ], [ -76.17352294921875, -7.482283115386963 ], [ -76.177665710449219, -7.478093147277775 ], [ -76.178962707519531, -7.476425170898381 ], [ -76.179275512695312, -7.475193977355957 ], [ -76.181335449218636, -7.470180034637451 ], [ -76.183631896972656, -7.466502189636174 ], [ -76.185569763183594, -7.464162826538086 ], [ -76.186019897460938, -7.463048934936467 ], [ -76.186187744140568, -7.46158313751215 ], [ -76.186561584472599, -7.460542201995793 ], [ -76.188972473144531, -7.457415103912297 ], [ -76.19024658203125, -7.455062866210881 ], [ -76.191047668456974, -7.453104972839355 ], [ -76.191131591796818, -7.450619220733586 ], [ -76.191490173339844, -7.4495592117309 ], [ -76.194442749023438, -7.446033000946045 ], [ -76.196891784667969, -7.441181182861328 ], [ -76.2000732421875, -7.436333179473877 ], [ -76.201797485351562, -7.432682037353402 ], [ -76.205055236816349, -7.427998065948429 ], [ -76.205398559570312, -7.426947116851807 ], [ -76.205856323242188, -7.423564910888672 ], [ -76.208702087402287, -7.418719768524113 ], [ -76.209808349609375, -7.416401863098145 ], [ -76.211311340332031, -7.411359786987248 ], [ -76.212471008300781, -7.408461093902588 ], [ -76.212623596191406, -7.406073093414307 ], [ -76.213363647460881, -7.405494213104248 ], [ -76.215057373046875, -7.405162811279297 ], [ -76.216308593749943, -7.403322219848576 ], [ -76.216873168945256, -7.401776790618896 ], [ -76.216842651367188, -7.40003776550293 ], [ -76.216278076171875, -7.398087024688721 ], [ -76.216606140136662, -7.393682956695557 ], [ -76.215942382812443, -7.392345905303898 ], [ -76.215454101562443, -7.390664100646973 ], [ -76.214164733886719, -7.388523101806584 ], [ -76.213554382324162, -7.386999130249023 ], [ -76.213310241699219, -7.385532855987549 ], [ -76.213378906249886, -7.381501197814941 ], [ -76.210960388183537, -7.375222206115723 ], [ -76.209503173828125, -7.367518901824894 ], [ -76.208648681640625, -7.365378856658936 ], [ -76.206062316894531, -7.360483169555664 ], [ -76.205169677734318, -7.356081962585449 ], [ -76.202728271484375, -7.350308895111027 ], [ -76.202445983886719, -7.348394870758057 ], [ -76.202522277832031, -7.346549034118652 ], [ -76.201133728027344, -7.344491004943734 ], [ -76.198417663574219, -7.33814811706543 ], [ -76.196601867675781, -7.336073875427246 ], [ -76.193748474121094, -7.333584785461369 ], [ -76.193054199218693, -7.332076072692871 ], [ -76.193016052246094, -7.331424236297607 ], [ -76.193267822265625, -7.330745220184326 ], [ -76.195579528808594, -7.326860904693547 ], [ -76.195724487304631, -7.32355880737299 ], [ -76.196220397949219, -7.321875095367432 ], [ -76.199600219726562, -7.318376064300537 ], [ -76.200820922851562, -7.31548881530756 ], [ -76.201232910156193, -7.313125133514404 ], [ -76.201606750488281, -7.312183856964111 ], [ -76.201713562011662, -7.310800075531006 ], [ -76.201309204101562, -7.307970046997013 ], [ -76.199996948242131, -7.304428100585938 ], [ -76.199996948242131, -7.303967952728215 ], [ -76.197807312011662, -7.300483226776066 ], [ -76.196006774902287, -7.298263072967472 ], [ -76.194915771484375, -7.296348094940186 ], [ -76.192657470703068, -7.291471004486027 ], [ -76.191505432128849, -7.287106037139893 ], [ -76.189620971679631, -7.283609867095947 ], [ -76.186019897460938, -7.280047893524113 ], [ -76.185455322265625, -7.279242992401123 ], [ -76.184654235839787, -7.278785228729248 ], [ -76.181777954101506, -7.276233196258488 ], [ -76.177093505859375, -7.271533012390137 ], [ -76.172943115234261, -7.268478870391846 ], [ -76.170547485351506, -7.266314029693547 ], [ -76.167991638183594, -7.263164043426514 ], [ -76.166183471679688, -7.260156154632568 ], [ -76.164154052734318, -7.257430076599121 ], [ -76.159461975097599, -7.252223968505803 ], [ -76.157356262207031, -7.249208927154541 ], [ -76.155975341796875, -7.246391773223877 ], [ -76.155586242675668, -7.245097160339355 ], [ -76.155426025390625, -7.242621898651123 ], [ -76.155929565429688, -7.240938186645451 ], [ -76.159324645996094, -7.236126899719181 ], [ -76.159591674804574, -7.233648777008057 ], [ -76.159317016601562, -7.231650829315186 ], [ -76.158485412597656, -7.229897975921631 ], [ -76.154975891113281, -7.224824905395451 ], [ -76.152786254882756, -7.222721099853516 ], [ -76.149574279785099, -7.218905925750732 ], [ -76.145820617675781, -7.215649127960205 ], [ -76.144897460937443, -7.21374320983881 ], [ -76.144767761230469, -7.212178230285645 ], [ -76.144203186035099, -7.210137844085693 ], [ -76.141983032226562, -7.206778049468994 ], [ -76.141166687011662, -7.203957080841064 ], [ -76.140472412109375, -7.202649116516056 ], [ -76.13800048828125, -7.200167179107666 ], [ -76.135826110839787, -7.198797225952148 ], [ -76.133041381835938, -7.195612907409668 ], [ -76.131782531738281, -7.195035934448242 ], [ -76.128677368164006, -7.194674015045109 ], [ -76.127471923828125, -7.194198131561279 ], [ -76.122901916503906, -7.189785003662109 ], [ -76.118865966796818, -7.186874866485596 ], [ -76.114303588867188, -7.182869911193848 ], [ -76.112831115722599, -7.181906223297062 ], [ -76.111282348632812, -7.182000160217285 ], [ -76.111167907714844, -7.182705879211426 ], [ -76.111549377441406, -7.183925151824894 ], [ -76.110580444335938, -7.185592174530029 ], [ -76.110473632812443, -7.186786174774113 ], [ -76.110176086425724, -7.187564849853459 ], [ -76.109352111816406, -7.188434123992806 ], [ -76.107696533203068, -7.188626766204834 ], [ -76.105987548828068, -7.188010215759221 ], [ -76.102584838867188, -7.185810089111328 ], [ -76.099273681640625, -7.182354927062931 ], [ -76.097328186035156, -7.181772232055664 ], [ -76.094032287597656, -7.181681156158447 ], [ -76.091812133789062, -7.181078910827523 ], [ -76.0906982421875, -7.18041276931757 ], [ -76.089401245117074, -7.179111957549935 ], [ -76.083938598632756, -7.174866199493408 ], [ -76.082046508789006, -7.173730850219727 ], [ -76.079322814941406, -7.172606945037842 ], [ -76.077682495117188, -7.172392845153752 ], [ -76.074188232421875, -7.172502040863037 ], [ -76.062637329101562, -7.17514181137085 ], [ -76.060340881347656, -7.175012111663762 ], [ -76.0592041015625, -7.175267219543457 ], [ -76.058097839355412, -7.175232887268066 ], [ -76.054595947265625, -7.174282073974609 ], [ -76.051330566406193, -7.173765182495117 ], [ -76.048988342285156, -7.172767162322941 ], [ -76.047378540039062, -7.172345161437931 ], [ -76.042915344238281, -7.169778823852482 ], [ -76.039131164550724, -7.16685676574707 ], [ -76.036529541015625, -7.165932178497258 ], [ -76.031082153320312, -7.1632399559021 ], [ -76.026161193847599, -7.161713123321533 ], [ -76.025131225585938, -7.161127090454102 ], [ -76.023956298828068, -7.160080909729004 ], [ -76.022621154785099, -7.158328056335449 ], [ -76.021865844726506, -7.156441211700439 ], [ -76.019187927246037, -7.153794765472412 ], [ -76.018539428710881, -7.152170181274414 ], [ -76.017623901367188, -7.14821815490717 ], [ -76.013534545898438, -7.14122819900507 ], [ -76.01100921630848, -7.135590076446476 ], [ -76.010719299316349, -7.133953094482422 ], [ -76.010772705078125, -7.132569789886418 ], [ -76.011215209960938, -7.131158828735295 ], [ -76.012184143066406, -7.129301071166992 ], [ -76.011444091796875, -7.127015113830566 ], [ -76.008758544921875, -7.123158931732178 ], [ -76.008377075195312, -7.121738910675049 ], [ -76.007926940917912, -7.120936870574951 ], [ -76.007926940917912, -7.120011806488037 ], [ -76.008613586425724, -7.118102073669377 ], [ -76.008735656738281, -7.116818904876709 ], [ -76.009178161621037, -7.115351200103703 ], [ -76.009803771972656, -7.114446163177433 ], [ -76.01019287109375, -7.113306045532227 ], [ -76.011749267578068, -7.111495018005371 ], [ -76.012504577636662, -7.109910964965707 ], [ -76.012969970703125, -7.107748031616211 ], [ -76.013420104980469, -7.102971076965332 ], [ -76.014350891113281, -7.102073192596436 ], [ -76.016441345214787, -7.102077007293701 ], [ -76.017051696777344, -7.101270198822021 ], [ -76.017417907714844, -7.10031080245966 ], [ -76.016548156738281, -7.097599029541016 ], [ -76.014579772949219, -7.093642234802246 ], [ -76.013984680175781, -7.090558052062988 ], [ -76.013954162597599, -7.085957050323486 ], [ -76.012168884277344, -7.083833217620793 ], [ -76.011711120605469, -7.081857204437199 ], [ -76.011703491210938, -7.08076000213623 ], [ -76.012069702148438, -7.07905101776123 ], [ -76.011611938476562, -7.076701164245605 ], [ -76.01171875, -7.074403762817326 ], [ -76.012191772460938, -7.072638034820557 ], [ -76.013664245605412, -7.06935977935791 ], [ -76.014183044433594, -7.06645679473877 ], [ -76.014068603515625, -7.063589096069336 ], [ -76.013023376464844, -7.060715198516846 ], [ -76.012840270996094, -7.059187889099064 ], [ -76.013633728027344, -7.050078868865967 ], [ -76.012985229492131, -7.049563884735051 ], [ -76.011756896972599, -7.050136089324894 ], [ -76.010871887207031, -7.049342155456486 ], [ -76.010726928710938, -7.047768115997258 ], [ -76.011215209960938, -7.045804977416935 ], [ -76.011238098144531, -7.044232845306396 ], [ -76.01092529296875, -7.043172836303711 ], [ -76.009971618652344, -7.041593074798527 ], [ -76.009750366210881, -7.040590763091927 ], [ -76.010139465331974, -7.039167881011963 ], [ -76.010894775390568, -7.037583827972355 ], [ -76.010917663574219, -7.037033081054688 ], [ -76.009986877441406, -7.035017967224121 ], [ -76.008110046386719, -7.032997131347543 ], [ -76.006614685058537, -7.030774116516113 ], [ -76.00616455078125, -7.029272079467773 ], [ -76.006210327148381, -7.027066230773926 ], [ -76.006805419921818, -7.024841785430908 ], [ -76.006233215331974, -7.022807121276855 ], [ -76.006240844726449, -7.021331787109318 ], [ -76.006561279296875, -7.020274162292424 ], [ -76.008255004882812, -7.017113208770752 ], [ -76.008499145507756, -7.015275955200138 ], [ -76.008445739746094, -7.013893127441349 ], [ -76.007186889648381, -7.010135173797607 ], [ -76.003509521484375, -7.00299596786499 ], [ -76.002868652343693, -7.000881195068359 ], [ -76.002830505371094, -6.999804973602295 ], [ -76.003097534179688, -6.998338222503662 ], [ -76.004035949706974, -6.995668888091984 ], [ -76.003623962402344, -6.992287158965951 ], [ -76.003677368164062, -6.988499164581299 ], [ -76.004432678222656, -6.982761859893799 ], [ -76.005264282226506, -6.981565952301025 ], [ -76.007453918456974, -6.980231761932316 ], [ -76.008537292480469, -6.979108810424805 ], [ -76.008705139160099, -6.978302001953125 ], [ -76.008415222167912, -6.976775169372502 ], [ -76.008491516113281, -6.975209236144963 ], [ -76.010383605957031, -6.97288179397583 ], [ -76.010261535644531, -6.971977233886719 ], [ -76.008583068847656, -6.970407009124756 ], [ -76.007850646972599, -6.96913290023798 ], [ -76.007614135742188, -6.966292858123722 ], [ -76.007972717285156, -6.965352058410645 ], [ -76.007934570312443, -6.963778972625732 ], [ -76.007278442382756, -6.96226978302002 ], [ -76.005813598632812, -6.960382938384953 ], [ -76.005668640136605, -6.95902490615839 ], [ -76.006782531738224, -6.954951763153019 ], [ -76.007385253906136, -6.954147815704346 ], [ -76.008590698242131, -6.953493118286076 ], [ -76.011528015136719, -6.95337009429926 ], [ -76.013214111328125, -6.952182769775391 ], [ -76.014129638671818, -6.951176166534367 ], [ -76.014495849609375, -6.949838161468449 ], [ -76.015625, -6.947834014892464 ], [ -76.015533447265625, -6.945086002349854 ], [ -76.016029357910099, -6.943111896514893 ], [ -76.018524169921818, -6.939381122589111 ], [ -76.019859313964787, -6.936664104461556 ], [ -76.021331787109375, -6.934671878814697 ], [ -76.022598266601562, -6.933600902557316 ], [ -76.024665832519531, -6.933298110961914 ], [ -76.026382446289062, -6.932400226593018 ], [ -76.026885986328125, -6.931647777557373 ], [ -76.027984619140511, -6.928327083587646 ], [ -76.029983520507756, -6.925916194915715 ], [ -76.031822204589844, -6.924256801605225 ], [ -76.035369873046875, -6.922142028808594 ], [ -76.037910461425781, -6.920175075531006 ], [ -76.037925720214844, -6.91851806640625 ], [ -76.037513732910099, -6.91791391372675 ], [ -76.033271789550781, -6.915717124938965 ], [ -76.031425476074219, -6.915149211883545 ], [ -76.027122497558537, -6.91201114654541 ], [ -76.025993347167969, -6.910892009735051 ], [ -76.022994995117131, -6.906956195831299 ], [ -76.022079467773438, -6.906044006347599 ], [ -76.017677307128849, -6.899151802062988 ], [ -76.016281127929688, -6.89794397354126 ], [ -76.013504028320312, -6.896329879760742 ], [ -76.011833190917912, -6.894488811492863 ], [ -76.011383056640568, -6.893513202667236 ], [ -76.012077331542969, -6.892924785614014 ], [ -76.013450622558594, -6.892814159393311 ], [ -76.015327453613281, -6.892056941986027 ], [ -76.020996093749943, -6.887685775756779 ], [ -76.030570983886719, -6.877653121948242 ], [ -76.031860351562443, -6.875987052917424 ], [ -76.033737182617188, -6.872200965881291 ], [ -76.035491943359318, -6.869286060333252 ], [ -76.035987854003849, -6.867711067199707 ], [ -76.036331176757812, -6.864418029785156 ], [ -76.036384582519531, -6.859904766082764 ], [ -76.035865783691349, -6.85145902633667 ], [ -76.036376953124886, -6.848473072051888 ], [ -76.037284851074219, -6.845974922180119 ], [ -76.038917541503849, -6.843420028686467 ], [ -76.044174194335881, -6.837710857391357 ], [ -76.050056457519531, -6.834911823272648 ], [ -76.051773071289062, -6.833878040313664 ], [ -76.057479858398438, -6.829405784606934 ], [ -76.060089111328068, -6.826824188232422 ], [ -76.061180114746094, -6.824921131134033 ], [ -76.062583923339787, -6.821300983428955 ], [ -76.062660217285156, -6.819933891296387 ], [ -76.064407348632756, -6.812034130096436 ], [ -76.064369201660156, -6.809745788574219 ], [ -76.063346862792912, -6.8091721534729 ], [ -76.061340332031193, -6.809391021728516 ], [ -76.057342529296818, -6.808838844299316 ], [ -76.054840087890625, -6.807931900024414 ], [ -76.053215026855469, -6.807662963867188 ], [ -76.052009582519474, -6.80721378326416 ], [ -76.050544738769531, -6.807108879089299 ], [ -76.049697875976506, -6.806748867034912 ], [ -76.047317504882756, -6.806528091430607 ], [ -76.046722412109375, -6.806293010711613 ], [ -76.045440673828125, -6.806242942810059 ], [ -76.041900634765568, -6.806748867034912 ], [ -76.037933349609375, -6.808411121368351 ], [ -76.033073425292969, -6.808549880981332 ], [ -76.030906677246037, -6.808136940002385 ], [ -76.027244567871094, -6.806072235107422 ], [ -76.024131774902344, -6.805953979492188 ], [ -76.023048400878906, -6.806162834167424 ], [ -76.021118164062386, -6.806159019470158 ], [ -76.019851684570256, -6.806621074676514 ], [ -76.019119262695312, -6.806632995605469 ], [ -76.017997741699219, -6.806220054626465 ], [ -76.016891479492131, -6.805253982543945 ], [ -76.015747070312443, -6.804640769958439 ], [ -76.013366699218693, -6.804681777954102 ], [ -76.012367248535156, -6.804078102111816 ], [ -76.0113525390625, -6.802217960357666 ], [ -76.010459899902344, -6.799228191375676 ], [ -76.010650634765625, -6.793716907501164 ], [ -76.009872436523438, -6.789658069610596 ], [ -76.009780883789062, -6.786719799041691 ], [ -76.008682250976562, -6.781682968139648 ], [ -76.005638122558537, -6.774590015411377 ], [ -76.004470825195312, -6.770748138427734 ], [ -76.00360107421875, -6.76892185211176 ], [ -76.00274658203125, -6.765921115875187 ], [ -76.002288818359375, -6.765118122100773 ], [ -76.002067565917969, -6.7637619972229 ], [ -76.001091003417855, -6.760897159576416 ], [ -76.001541137695256, -6.75558519363392 ], [ -76.000793457031193, -6.751708030700627 ], [ -76.000732421875, -6.750424861907902 ], [ -76.001457214355412, -6.746160030364933 ], [ -76.001693725585938, -6.74129676818842 ], [ -76.002326965331974, -6.736935138702393 ], [ -76.001907348632812, -6.735352993011475 ], [ -76.001167297363224, -6.730163097381535 ], [ -76.000122070312443, -6.727026939392033 ], [ -75.999610900878906, -6.724567890167179 ], [ -75.998641967773438, -6.7240891456604 ], [ -75.995872497558594, -6.721699237823429 ], [ -75.994606018066293, -6.720036983489877 ], [ -75.993995666503906, -6.718799114227295 ], [ -75.993125915527344, -6.718122959136906 ], [ -75.991729736328068, -6.717421054840088 ], [ -75.990180969238281, -6.717215061187744 ], [ -75.988990783691406, -6.717263221740723 ], [ -75.986640930175781, -6.71803617477417 ], [ -75.984992980957031, -6.718165874481144 ], [ -75.983253479003849, -6.717582225799504 ], [ -75.981460571289062, -6.716472148895264 ], [ -75.98004150390625, -6.717099189758301 ], [ -75.978157043457031, -6.71863317489624 ], [ -75.976028442382812, -6.717198848724365 ], [ -75.973770141601562, -6.716814041137695 ], [ -75.971611022949162, -6.717126846313477 ], [ -75.970352172851506, -6.717708110809326 ], [ -75.969032287597599, -6.718669891357422 ], [ -75.967475891113281, -6.718589782714844 ], [ -75.966369628906193, -6.717650890350342 ], [ -75.964561462402287, -6.716967105865479 ], [ -75.961662292480469, -6.717398166656494 ], [ -75.959945678710938, -6.718413829803467 ], [ -75.958770751953125, -6.718598842620793 ], [ -75.95684814453125, -6.718548774719238 ], [ -75.954643249511662, -6.717919826507512 ], [ -75.950286865234375, -6.717792034149113 ], [ -75.949066162109375, -6.718229770660344 ], [ -75.947608947753906, -6.719353199005127 ], [ -75.94677734375, -6.719696998596191 ], [ -75.941909790039062, -6.720602035522404 ], [ -75.940025329589787, -6.721365928649902 ], [ -75.938285827636719, -6.722382068633976 ], [ -75.935279846191349, -6.724948883056584 ], [ -75.934226989746037, -6.725502014160099 ], [ -75.933891296386719, -6.726443767547551 ], [ -75.933403015136719, -6.726994991302433 ], [ -75.931304931640625, -6.727913856506291 ], [ -75.9306640625, -6.727931976318359 ], [ -75.930267333984375, -6.727687835693359 ], [ -75.929649353027287, -6.726280212402287 ], [ -75.927337646484318, -6.725398063659611 ], [ -75.926429748535156, -6.725524902343693 ], [ -75.924278259277344, -6.727058887481633 ], [ -75.92236328125, -6.725884914398193 ], [ -75.920822143554688, -6.725735187530404 ], [ -75.919692993164062, -6.726522922515812 ], [ -75.919273376464844, -6.727745056152344 ], [ -75.918304443359318, -6.728887081146183 ], [ -75.916748046875, -6.730128765106201 ], [ -75.915084838867188, -6.729969024658203 ], [ -75.913108825683594, -6.730346202850342 ], [ -75.911224365234318, -6.730076789855957 ], [ -75.910324096679688, -6.730240821838379 ], [ -75.909706115722599, -6.73091983795166 ], [ -75.909393310546875, -6.731788158416691 ], [ -75.907989501953068, -6.732968807220459 ], [ -75.90765380859375, -6.73430681228632 ], [ -75.906951904296818, -6.735050201415959 ], [ -75.906303405761719, -6.735295772552377 ], [ -75.905830383300781, -6.735249996185303 ], [ -75.904342651367188, -6.734168052673283 ], [ -75.903572082519531, -6.733880043029785 ], [ -75.902961730957031, -6.73405122756958 ], [ -75.901817321777344, -6.735123157501221 ], [ -75.900917053222656, -6.735070228576603 ], [ -75.900360107421818, -6.734013080596867 ], [ -75.900321960449219, -6.731581211090031 ], [ -75.900016784667969, -6.730794906616154 ], [ -75.898292541503906, -6.729836940765324 ], [ -75.896316528320312, -6.728050231933594 ], [ -75.893074035644531, -6.727549076080322 ], [ -75.892364501953068, -6.726048946380615 ], [ -75.891700744628849, -6.725302219390812 ], [ -75.890960693359375, -6.725319862365723 ], [ -75.889587402343693, -6.724815845489502 ], [ -75.88848876953125, -6.724862098693791 ], [ -75.887702941894531, -6.725343227386418 ], [ -75.886260986328068, -6.726885795593262 ], [ -75.885231018066406, -6.727265834808293 ], [ -75.88409423828125, -6.72693395614624 ], [ -75.882598876953125, -6.725306034088021 ], [ -75.879852294921818, -6.725187778472844 ], [ -75.877517700195312, -6.723752021789551 ], [ -75.876480102539062, -6.724098205566349 ], [ -75.875587463378793, -6.725916862487793 ], [ -75.874778747558594, -6.726343154907113 ], [ -75.873077392578068, -6.72527885437006 ], [ -75.87215423583973, -6.724965095519963 ], [ -75.871551513671818, -6.723257064819279 ], [ -75.870765686035156, -6.722623825073129 ], [ -75.868133544921818, -6.722962856292668 ], [ -75.867607116699219, -6.72331714630127 ], [ -75.866279602050781, -6.723662853240967 ], [ -75.865737915039006, -6.723528861999512 ], [ -75.864295959472656, -6.722266197204476 ], [ -75.863655090331974, -6.722339153289738 ], [ -75.862693786621037, -6.723044872283936 ], [ -75.862220764160099, -6.723091125488281 ], [ -75.862098693847656, -6.722014904022217 ], [ -75.8634033203125, -6.719579219818115 ], [ -75.86370849609375, -6.718432903289738 ], [ -75.863502502441406, -6.717155933380127 ], [ -75.862648010253906, -6.716226100921631 ], [ -75.861831665039006, -6.71643590927124 ], [ -75.861175537109318, -6.717070102691594 ], [ -75.859718322753906, -6.717851161956787 ], [ -75.857749938964787, -6.719318866729679 ], [ -75.857009887695312, -6.719212055206299 ], [ -75.856376647949219, -6.718831062316895 ], [ -75.855384826660156, -6.717432022094727 ], [ -75.854667663574162, -6.717506885528508 ], [ -75.853630065917912, -6.718277931213322 ], [ -75.853439331054631, -6.720184803008976 ], [ -75.853034973144531, -6.720729827880803 ], [ -75.852546691894531, -6.720928192138615 ], [ -75.849983215332031, -6.721186161041203 ], [ -75.848831176757812, -6.720846176147461 ], [ -75.84774017333973, -6.720955848693791 ], [ -75.846504211425781, -6.72060489654541 ], [ -75.84576416015625, -6.71887016296381 ], [ -75.8463134765625, -6.716254234313908 ], [ -75.845611572265568, -6.714971065521183 ], [ -75.84503173828125, -6.714511871337891 ], [ -75.844093322753849, -6.714213848114014 ], [ -75.843475341796875, -6.712696075439453 ], [ -75.842231750488281, -6.711585998535099 ], [ -75.839141845703068, -6.711716175079232 ], [ -75.838180541992131, -6.711022853851318 ], [ -75.8382568359375, -6.709558010101318 ], [ -75.839347839355355, -6.708227157592773 ], [ -75.838783264160156, -6.706678867340031 ], [ -75.840469360351506, -6.704640865325928 ], [ -75.840194702148381, -6.70358419418335 ], [ -75.839195251464844, -6.702898025512695 ], [ -75.836585998535156, -6.702468872070312 ], [ -75.834892272949219, -6.701216220855713 ], [ -75.834342956542969, -6.70048189163208 ], [ -75.833930969238281, -6.698873043060303 ], [ -75.832878112792969, -6.696432113647461 ], [ -75.82647705078125, -6.696506977081299 ], [ -75.825080871582031, -6.695713996887207 ], [ -75.823860168457031, -6.693336963653564 ], [ -75.822608947753906, -6.693385124206543 ], [ -75.820541381835881, -6.692990779876709 ], [ -75.819862365722599, -6.692112922668457 ], [ -75.819709777832031, -6.691489219665527 ], [ -75.8201904296875, -6.689255237579346 ], [ -75.820137023925781, -6.687970161437931 ], [ -75.817245483398438, -6.6852707862854 ], [ -75.814437866210881, -6.683374881744385 ], [ -75.813262939453125, -6.682083129882812 ], [ -75.814552307128793, -6.680696964263916 ], [ -75.8154296875, -6.679079055786133 ], [ -75.815948486328068, -6.676091194152832 ], [ -75.817054748535156, -6.673467159271183 ], [ -75.817771911621037, -6.670525074005127 ], [ -75.819343566894531, -6.667926788330021 ], [ -75.821197509765568, -6.666141986846924 ], [ -75.822257995605412, -6.665418148040771 ], [ -75.822746276855412, -6.664104938507023 ], [ -75.822448730468693, -6.663328170776367 ], [ -75.821441650390625, -6.662251949310303 ], [ -75.820503234863281, -6.661674976348877 ], [ -75.813629150390625, -6.659777164459172 ], [ -75.807762145996037, -6.657200813293457 ], [ -75.803413391113281, -6.657760143280029 ], [ -75.798423767089787, -6.658898830413762 ], [ -75.7967529296875, -6.658459186553955 ], [ -75.795989990234375, -6.65754508972168 ], [ -75.794807434081974, -6.655250072479248 ], [ -75.794395446777287, -6.652157783508301 ], [ -75.793663024902287, -6.649979114532414 ], [ -75.790878295898381, -6.646671772003117 ], [ -75.789573669433594, -6.644674777984619 ], [ -75.788139343261719, -6.645293235778752 ], [ -75.785911560058537, -6.64785718917841 ], [ -75.784454345703125, -6.650093078613224 ], [ -75.782234191894531, -6.654284000396729 ], [ -75.779899597167912, -6.65700101852417 ], [ -75.778945922851506, -6.658793926239014 ], [ -75.778205871581974, -6.659717082977181 ], [ -75.776077270507812, -6.661746025085449 ], [ -75.774276733398381, -6.662826061248779 ], [ -75.773338317871037, -6.664185047149658 ], [ -75.77288818359375, -6.665297031402531 ], [ -75.771842956542969, -6.666457176208439 ], [ -75.771186828613281, -6.666773796081543 ], [ -75.7696533203125, -6.667022228240967 ], [ -75.768890380859375, -6.667692184448129 ], [ -75.768539428710938, -6.669211864471436 ], [ -75.768882751464844, -6.669870853424015 ], [ -75.769035339355412, -6.670976161956787 ], [ -75.770599365234375, -6.672879219055119 ], [ -75.771057128906193, -6.673992156982422 ], [ -75.770660400390568, -6.675505161285344 ], [ -75.769462585449219, -6.677686214446965 ], [ -75.769355773925781, -6.678771018981877 ], [ -75.769943237304688, -6.680607795715275 ], [ -75.771492004394531, -6.682413101196289 ], [ -75.771659851074219, -6.683055877685547 ], [ -75.768218994140625, -6.686995983123779 ], [ -75.764739990234318, -6.689188957214355 ], [ -75.763801574706974, -6.69031286239624 ], [ -75.762321472167969, -6.693172931671143 ], [ -75.762237548828125, -6.6944580078125 ], [ -75.761436462402344, -6.696520805358887 ], [ -75.760726928710938, -6.699462890624943 ], [ -75.758888244628906, -6.702088832855168 ], [ -75.75762939453125, -6.704857826232853 ], [ -75.756721496582031, -6.706342220306396 ], [ -75.756271362304631, -6.707934856414795 ], [ -75.751968383789006, -6.713776111602783 ], [ -75.750755310058594, -6.717260837554875 ], [ -75.75042724609375, -6.719260215759277 ], [ -75.75008392333973, -6.720109939575138 ], [ -75.748123168945312, -6.722421169280892 ], [ -75.747192382812443, -6.723886013031006 ], [ -75.744613647460881, -6.726343154907113 ], [ -75.744560241699219, -6.727002143859863 ], [ -75.744796752929688, -6.727272987365609 ], [ -75.745132446289062, -6.72880315780634 ], [ -75.745101928710881, -6.731841087341309 ], [ -75.744087219238281, -6.734203815460148 ], [ -75.743408203124886, -6.736592769622803 ], [ -75.74249267578125, -6.738076210021973 ], [ -75.741012573242131, -6.741671085357666 ], [ -75.740005493164062, -6.742721080780029 ], [ -75.738761901855469, -6.7433180809021 ], [ -75.736869812011719, -6.745313167572021 ], [ -75.736328124999943, -6.745412826538029 ], [ -75.735778808593636, -6.745912075042725 ], [ -75.735702514648438, -6.746735095977783 ], [ -75.736579895019531, -6.748009204864502 ], [ -75.736457824707031, -6.748913764953556 ], [ -75.735557556152287, -6.749964237213135 ], [ -75.734390258789062, -6.750127792358398 ], [ -75.73388671875, -6.750535964965763 ], [ -75.733764648437443, -6.751323223114014 ], [ -75.732978820800724, -6.752562999725342 ], [ -75.7330322265625, -6.75383186340332 ], [ -75.731536865234375, -6.754393100738412 ], [ -75.730224609374943, -6.755951881408635 ], [ -75.729759216308537, -6.757046222686768 ], [ -75.728759765625, -6.75836801528925 ], [ -75.726791381835881, -6.760008811950627 ], [ -75.725418090820312, -6.761620044708252 ], [ -75.724411010742131, -6.762273788452092 ], [ -75.724235534667912, -6.763233184814453 ], [ -75.72271728515625, -6.763452053070068 ], [ -75.722999572753793, -6.764762878417969 ], [ -75.722419738769474, -6.765072822570801 ], [ -75.72186279296875, -6.765063762664738 ], [ -75.72149658203125, -6.765461921691895 ], [ -75.721504211425781, -6.765751838684082 ], [ -75.722236633300668, -6.766553878784123 ], [ -75.721580505371094, -6.767650127410832 ], [ -75.720359802246094, -6.767951011657715 ], [ -75.719459533691349, -6.768740177154541 ], [ -75.718376159667969, -6.768877029418832 ], [ -75.717010498046875, -6.769955158233586 ], [ -75.716583251953068, -6.77000904083252 ], [ -75.715812683105412, -6.769067764282113 ], [ -75.71533203125, -6.768908977508488 ], [ -75.714218139648381, -6.769063949584904 ], [ -75.71331787109375, -6.769526004791203 ], [ -75.711227416992188, -6.769320964813232 ], [ -75.709335327148381, -6.770255088806152 ], [ -75.708686828613224, -6.770221233367863 ], [ -75.707801818847599, -6.769822120666504 ], [ -75.705787658691406, -6.770432949066162 ], [ -75.704742431640625, -6.769854068756104 ], [ -75.702293395996037, -6.770183086395264 ], [ -75.701446533203011, -6.769615173339844 ], [ -75.700279235839787, -6.769372940063477 ], [ -75.698867797851506, -6.768696784973145 ], [ -75.694290161132756, -6.768795013427678 ], [ -75.693504333496037, -6.768559932708683 ], [ -75.692489624023438, -6.768568992614746 ], [ -75.691757202148438, -6.768208980560303 ], [ -75.690437316894531, -6.767053127288705 ], [ -75.689178466796875, -6.764946937561035 ], [ -75.687164306640625, -6.764976978302002 ], [ -75.686264038085881, -6.76451921463007 ], [ -75.685493469238224, -6.764817237853947 ], [ -75.684700012207031, -6.765570163726807 ], [ -75.683067321777344, -6.766158103942871 ], [ -75.681694030761662, -6.767236232757512 ], [ -75.680351257324162, -6.767501831054688 ], [ -75.678840637206974, -6.768163204193058 ], [ -75.676834106445256, -6.768057823181152 ], [ -75.676040649414062, -6.767481803894043 ], [ -75.672874450683594, -6.766536235809326 ], [ -75.671867370605412, -6.766427040100098 ], [ -75.670509338378906, -6.766611099243164 ], [ -75.6695556640625, -6.767128944396916 ], [ -75.667350769042969, -6.769211769103947 ], [ -75.6658935546875, -6.771638870239201 ], [ -75.662055969238224, -6.773081779479924 ], [ -75.661018371582031, -6.774123191833439 ], [ -75.660217285156193, -6.774577140808105 ], [ -75.655807495117188, -6.779105186462289 ], [ -75.652359008789062, -6.780972003936768 ], [ -75.649368286132756, -6.781781196594238 ], [ -75.648475646972656, -6.782334804534912 ], [ -75.648406982421818, -6.786911010742188 ], [ -75.64794921875, -6.789544105529728 ], [ -75.648063659667969, -6.793045043945256 ], [ -75.647834777831974, -6.793416023254395 ], [ -75.647567749023438, -6.795323848724365 ], [ -75.647933959960881, -6.796825885772705 ], [ -75.647628784179631, -6.797196865081787 ], [ -75.646476745605469, -6.797723770141602 ], [ -75.646308898925724, -6.799822807312012 ], [ -75.645469665527344, -6.801025867462158 ], [ -75.644622802734375, -6.803651809692326 ], [ -75.642837524414062, -6.806953907012883 ], [ -75.642349243164062, -6.808817863464355 ], [ -75.642433166503906, -6.813422203063908 ], [ -75.642059326171875, -6.815972805023137 ], [ -75.642318725585824, -6.817690849304199 ], [ -75.642135620117188, -6.820631027221623 ], [ -75.6416015625, -6.822676181793099 ], [ -75.640357971191406, -6.824704170226994 ], [ -75.640472412109318, -6.826080799102783 ], [ -75.6416015625, -6.82764196395874 ], [ -75.642219543456974, -6.829280853271428 ], [ -75.642074584960938, -6.830011844634953 ], [ -75.641258239746037, -6.831334114074707 ], [ -75.641014099121094, -6.834646224975529 ], [ -75.640373229980469, -6.835415840148869 ], [ -75.637985229492188, -6.837271213531494 ], [ -75.635604858398438, -6.840023994445801 ], [ -75.634574890136662, -6.841662883758488 ], [ -75.63421630859375, -6.843047142028809 ], [ -75.633003234863281, -6.843239784240609 ], [ -75.631561279296875, -6.842987060546875 ], [ -75.630386352539006, -6.843061923980656 ], [ -75.627418518066349, -6.842133045196533 ], [ -75.624984741210938, -6.841668128967285 ], [ -75.621223449706974, -6.83912181854248 ], [ -75.620590209960938, -6.839293003082275 ], [ -75.618072509765568, -6.840798854827881 ], [ -75.616928100585881, -6.841125011444092 ], [ -75.616111755371094, -6.841018199920654 ], [ -75.612060546874943, -6.838990211486816 ], [ -75.60906982421875, -6.838729858398381 ], [ -75.607955932617131, -6.837745189666691 ], [ -75.605308532714787, -6.83669900894165 ], [ -75.601394653320256, -6.834487915039062 ], [ -75.600151062011662, -6.834146976470947 ], [ -75.597114562988168, -6.832619190216008 ], [ -75.593940734863224, -6.831730842590332 ], [ -75.593154907226562, -6.831241130828857 ], [ -75.592697143554631, -6.830673217773438 ], [ -75.592269897460938, -6.827552795410099 ], [ -75.591758728027287, -6.82647705078125 ], [ -75.588539123535156, -6.824525833129883 ], [ -75.586296081542969, -6.822502136230412 ], [ -75.584327697753849, -6.821773052215576 ], [ -75.58343505859375, -6.821105003356934 ], [ -75.582756042480469, -6.820851802825928 ], [ -75.580696105956974, -6.82122611999506 ], [ -75.578598022460881, -6.820991039276123 ], [ -75.575469970703125, -6.819640159606934 ], [ -75.574211120605412, -6.818873882293644 ], [ -75.573631286621037, -6.818258762359562 ], [ -75.573318481445312, -6.81751823425293 ], [ -75.572944641113281, -6.815220832824707 ], [ -75.57232666015625, -6.8135728836059 ], [ -75.571441650390568, -6.81295108795166 ], [ -75.570556640625, -6.812663078308049 ], [ -75.567550659179574, -6.812357902526799 ], [ -75.566055297851562, -6.811645030975342 ], [ -75.564575195312443, -6.810407161712646 ], [ -75.563186645507812, -6.808248996734562 ], [ -75.559616088867131, -6.805819034576416 ], [ -75.559013366699219, -6.805583953857422 ], [ -75.558006286621037, -6.805586814880314 ], [ -75.557350158691406, -6.805243015289307 ], [ -75.55633544921875, -6.805378913879281 ], [ -75.554634094238281, -6.803589820861816 ], [ -75.550590515136719, -6.801894187927189 ], [ -75.546775817871094, -6.799510002136174 ], [ -75.543678283691349, -6.799704074859619 ], [ -75.541435241699219, -6.799254894256592 ], [ -75.540344238281193, -6.798142910003548 ], [ -75.539268493652344, -6.797636985778809 ], [ -75.536949157714844, -6.795269012451172 ], [ -75.535354614257812, -6.794196128845215 ], [ -75.534263610839787, -6.794014930725041 ], [ -75.531242370605469, -6.794108867645264 ], [ -75.529098510742131, -6.793089866638127 ], [ -75.527366638183537, -6.792992115020752 ], [ -75.523567199706974, -6.79059886932373 ], [ -75.519424438476562, -6.789816856384277 ], [ -75.517433166503906, -6.78901290893549 ], [ -75.513031005859375, -6.786567211151123 ], [ -75.5103759765625, -6.784146785736084 ], [ -75.507637023925724, -6.780250072479191 ], [ -75.507133483886719, -6.778286933898869 ], [ -75.506996154785156, -6.776731014251709 ], [ -75.5072021484375, -6.774624824523926 ], [ -75.507804870605469, -6.772885799407959 ], [ -75.510261535644531, -6.770540237426758 ], [ -75.512687683105412, -6.768892765045166 ], [ -75.515678405761719, -6.767296791076603 ], [ -75.519104003906136, -6.7659912109375 ], [ -75.520561218261719, -6.764595985412598 ], [ -75.521614074707031, -6.7620530128479 ], [ -75.522926330566406, -6.752473831176644 ], [ -75.523361206054631, -6.750690937042179 ], [ -75.523818969726562, -6.750119209289551 ], [ -75.525505065917969, -6.749041080474797 ], [ -75.526313781738281, -6.749094009399414 ], [ -75.527214050292969, -6.748316764831543 ], [ -75.528518676757756, -6.747707843780518 ], [ -75.529701232910156, -6.746431827545166 ], [ -75.530059814453068, -6.745093822479248 ], [ -75.530021667480469, -6.74270486831665 ], [ -75.529197692871037, -6.739206790924015 ], [ -75.528900146484318, -6.736645221710205 ], [ -75.526962280273438, -6.730788230895996 ], [ -75.525337219238281, -6.722945213317871 ], [ -75.524299621582031, -6.719508171081543 ], [ -75.523971557617188, -6.716760158538762 ], [ -75.524322509765568, -6.712726116180363 ], [ -75.524322509765568, -6.710065841674805 ], [ -75.524093627929688, -6.709368228912297 ], [ -75.524101257324219, -6.708229064941406 ], [ -75.523742675781193, -6.707479000091553 ], [ -75.52313232421875, -6.704243183135929 ], [ -75.522613525390568, -6.699295043945256 ], [ -75.522628784179631, -6.697449207305908 ], [ -75.522041320800724, -6.695033073425293 ], [ -75.522056579589787, -6.693840980529785 ], [ -75.521308898925781, -6.689480781555119 ], [ -75.521194458007756, -6.687182903289681 ], [ -75.521644592285099, -6.682135105133057 ], [ -75.522903442382756, -6.677519798278752 ], [ -75.52294921875, -6.674589157104492 ], [ -75.523445129394531, -6.672437191009465 ], [ -75.523902893066406, -6.671422958374023 ], [ -75.52425384521473, -6.66795015335083 ], [ -75.525825500488281, -6.662645816802922 ], [ -75.5260009765625, -6.659616947174072 ], [ -75.526596069335938, -6.655707836151066 ], [ -75.528739929199219, -6.652748107910099 ], [ -75.528999328613224, -6.649853229522705 ], [ -75.529296874999943, -6.648705005645752 ], [ -75.530220031738281, -6.64689302444458 ], [ -75.531280517578068, -6.645743846893311 ], [ -75.533874511718693, -6.644394874572697 ], [ -75.536048889160099, -6.642409801483154 ], [ -75.536491394042969, -6.641839981079045 ], [ -75.537055969238281, -6.640292167663574 ], [ -75.541091918945312, -6.636281013488713 ], [ -75.541587829589787, -6.634624004363957 ], [ -75.541755676269531, -6.633159160614014 ], [ -75.541511535644474, -6.631330966949463 ], [ -75.539100646972599, -6.626359939575195 ], [ -75.537834167480469, -6.62061691284174 ], [ -75.536369323730469, -6.618718147277775 ], [ -75.532691955566406, -6.615828037261963 ], [ -75.532470703125, -6.615294933319092 ], [ -75.532546997070256, -6.614192008972111 ], [ -75.5343017578125, -6.611845970153809 ], [ -75.539939880371094, -6.607769012451172 ], [ -75.541748046875, -6.606873035430851 ], [ -75.543609619140568, -6.606408119201603 ], [ -75.546913146972656, -6.60443210601801 ], [ -75.547996520996037, -6.604234218597355 ], [ -75.548957824707031, -6.604783058166504 ], [ -75.549964904785156, -6.604773998260441 ], [ -75.550445556640568, -6.604374885559082 ], [ -75.550666809081974, -6.603768825530949 ], [ -75.550621032714844, -6.601301193237248 ], [ -75.548164367675724, -6.596977233886605 ], [ -75.546905517578125, -6.592936038970834 ], [ -75.546035766601562, -6.591979026794377 ], [ -75.545608520507756, -6.590794086456299 ], [ -75.544471740722543, -6.589357852935791 ], [ -75.541320800781193, -6.586275100708008 ], [ -75.539627075195312, -6.583646774291935 ], [ -75.538063049316349, -6.581738948821965 ], [ -75.537895202636719, -6.579721927642822 ], [ -75.53668212890625, -6.576240062713566 ], [ -75.536758422851562, -6.57164478302002 ], [ -75.536529541015568, -6.56971883773798 ], [ -75.536796569824219, -6.560237884521428 ], [ -75.536911010742131, -6.558682918548584 ], [ -75.537620544433594, -6.555822849273625 ], [ -75.537704467773438, -6.552140235900879 ], [ -75.536979675292969, -6.54900407791132 ], [ -75.535202026367131, -6.546328067779541 ], [ -75.535186767578068, -6.545966148376465 ], [ -75.533004760742131, -6.544221878051758 ], [ -75.531982421875, -6.541964054107666 ], [ -75.529563903808537, -6.540689945220947 ], [ -75.527992248535156, -6.539245128631535 ], [ -75.526916503906193, -6.53787899017334 ], [ -75.52569580078125, -6.534985065460148 ], [ -75.525222778320312, -6.533113956451359 ], [ -75.524085998535156, -6.530799865722656 ], [ -75.52410888671875, -6.528601169586182 ], [ -75.523590087890625, -6.52722692489624 ], [ -75.520469665527344, -6.524328231811467 ], [ -75.519332885742188, -6.523721218109131 ], [ -75.517929077148381, -6.522548198699894 ], [ -75.515892028808594, -6.521292209625187 ], [ -75.515632629394531, -6.520923137664738 ], [ -75.511848449706974, -6.518482208251896 ], [ -75.511215209960938, -6.517814159393311 ], [ -75.509841918945256, -6.515308856964111 ], [ -75.508926391601562, -6.513093948364201 ], [ -75.508674621581974, -6.511365890502873 ], [ -75.508781433105412, -6.50713396072382 ], [ -75.509872436523438, -6.502284049987793 ], [ -75.509971618652344, -6.500112056732121 ], [ -75.509773254394531, -6.497607231140137 ], [ -75.511497497558594, -6.492946147918701 ], [ -75.512985229492131, -6.489896774291935 ], [ -75.519218444824219, -6.483043193817139 ], [ -75.524055480956974, -6.476354122161808 ], [ -75.524230957031193, -6.475177764892521 ], [ -75.523994445800781, -6.474318981170597 ], [ -75.521507263183594, -6.471308231353703 ], [ -75.520477294921875, -6.469346046447754 ], [ -75.520248413085824, -6.468090057373047 ], [ -75.520629882812386, -6.466108798980713 ], [ -75.5211181640625, -6.464803218841496 ], [ -75.522911071777287, -6.461284160614014 ], [ -75.524818420410099, -6.459564208984375 ], [ -75.525810241699219, -6.459118843078613 ], [ -75.526634216308537, -6.458006858825684 ], [ -75.526588439941406, -6.456993103027344 ], [ -75.524955749511719, -6.455023765563908 ], [ -75.524772644042969, -6.453838825225773 ], [ -75.525856018066349, -6.452599048614445 ], [ -75.528427124023381, -6.451003074645996 ], [ -75.529685974121037, -6.449538230895996 ], [ -75.5299072265625, -6.447165012359619 ], [ -75.529014587402287, -6.444263935089111 ], [ -75.529380798339787, -6.443041801452637 ], [ -75.530364990234375, -6.441765785217285 ], [ -75.530433654785099, -6.439748764038029 ], [ -75.531837463378906, -6.438589096069279 ], [ -75.532554626464844, -6.43852519989008 ], [ -75.534873962402344, -6.4390931129455 ], [ -75.535125732421761, -6.438973903655949 ], [ -75.536071777343693, -6.43809700012207 ], [ -75.536834716796818, -6.435823917388916 ], [ -75.538360595703068, -6.433426856994572 ], [ -75.538444519042912, -6.432784080505371 ], [ -75.537940979003906, -6.431797027587834 ], [ -75.536209106445312, -6.430623054504395 ], [ -75.535133361816406, -6.429043769836369 ], [ -75.535942077636719, -6.425079822540283 ], [ -75.536697387695312, -6.423016071319523 ], [ -75.537498474121037, -6.422012805938721 ], [ -75.539329528808594, -6.42048978805542 ], [ -75.54144287109375, -6.418315887451172 ], [ -75.54364013671875, -6.416830062866211 ], [ -75.544975280761719, -6.415318965911808 ], [ -75.545593261718693, -6.414068222045898 ], [ -75.545783996581974, -6.412071228027344 ], [ -75.545303344726506, -6.408976078033447 ], [ -75.54409027099598, -6.406681060791016 ], [ -75.542053222656193, -6.403960227966309 ], [ -75.541915893554688, -6.402785778045597 ], [ -75.542388916015625, -6.401111125946045 ], [ -75.543144226074219, -6.399844169616699 ], [ -75.545013427734318, -6.397698879241943 ], [ -75.546195983886719, -6.395625114440861 ], [ -75.548263549804631, -6.393533229827881 ], [ -75.548828124999943, -6.391688823699951 ], [ -75.548896789550781, -6.388658046722412 ], [ -75.54866790771473, -6.387572765350342 ], [ -75.548049926757812, -6.38634204864502 ], [ -75.545387268066406, -6.382699966430607 ], [ -75.544509887695312, -6.38100004196167 ], [ -75.543983459472599, -6.379036903381348 ], [ -75.543899536132699, -6.376648902893066 ], [ -75.542724609374943, -6.373067855834904 ], [ -75.542869567871094, -6.370878219604435 ], [ -75.543449401855469, -6.370155811309814 ], [ -75.544639587402287, -6.369511127471867 ], [ -75.545097351074219, -6.368361949920597 ], [ -75.544952392578125, -6.366806983947754 ], [ -75.543914794921875, -6.364247798919678 ], [ -75.543708801269418, -6.36285495758051 ], [ -75.543930053710938, -6.362194061279297 ], [ -75.545173645019531, -6.360573768615666 ], [ -75.545410156249943, -6.359388828277588 ], [ -75.544975280761719, -6.357526779174748 ], [ -75.543228149414006, -6.353157997131348 ], [ -75.543159484863281, -6.350860118865967 ], [ -75.543678283691349, -6.349575042724553 ], [ -75.545379638671875, -6.347774028778076 ], [ -75.54595947265625, -6.346833229064885 ], [ -75.548011779785156, -6.345483779907227 ], [ -75.549087524414062, -6.343355178833008 ], [ -75.550048828125, -6.342196941375732 ], [ -75.552772521972656, -6.339968204498291 ], [ -75.553085327148438, -6.337498188018799 ], [ -75.552787780761719, -6.332333087921086 ], [ -75.551742553710938, -6.328536033630371 ], [ -75.5499267578125, -6.324421882629338 ], [ -75.546028137207031, -6.319659233093262 ], [ -75.541862487792912, -6.315927982330322 ], [ -75.539138793945312, -6.314067840576172 ], [ -75.532051086425724, -6.310229778289795 ], [ -75.529998779296875, -6.30962610244751 ], [ -75.52425384521473, -6.307226181030273 ], [ -75.517997741699219, -6.305496215820312 ], [ -75.513206481933594, -6.303192138671875 ], [ -75.512184143066406, -6.302435874938908 ], [ -75.509864807128906, -6.300102233886719 ], [ -75.505363464355412, -6.294642925262394 ], [ -75.503562927246094, -6.29165077209467 ], [ -75.50189208984375, -6.287970066070557 ], [ -75.499404907226562, -6.285213947296086 ], [ -75.496757507324162, -6.279291152954102 ], [ -75.496002197265568, -6.276270866394043 ], [ -75.495819091796818, -6.272789001464787 ], [ -75.495849609375, -6.263154983520508 ], [ -75.496627807617188, -6.259564876556396 ], [ -75.498802185058594, -6.254304885864258 ], [ -75.499977111816406, -6.252178192138672 ], [ -75.502143859863281, -6.250369071960392 ], [ -75.505592346191406, -6.246918201446533 ], [ -75.508453369140625, -6.24286413192749 ], [ -75.511466979980412, -6.240056037902832 ], [ -75.513351440429631, -6.236471176147461 ], [ -75.515472412109318, -6.233356952667236 ], [ -75.515907287597656, -6.232373237609863 ], [ -75.518157958984375, -6.229365825653076 ], [ -75.52178955078125, -6.225101947784424 ], [ -75.524856567382812, -6.220520973205566 ], [ -75.526924133300668, -6.217940807342472 ], [ -75.531776428222599, -6.212555885314885 ], [ -75.539535522460938, -6.205410003662109 ], [ -75.54345703125, -6.203225135803166 ], [ -75.546913146972656, -6.202027797698975 ], [ -75.557533264160099, -6.199592113494873 ], [ -75.559898376464787, -6.19929122924799 ], [ -75.561630249023381, -6.199316024780217 ], [ -75.565963745117188, -6.198489189147892 ], [ -75.568923950195312, -6.197282791137695 ], [ -75.569595336914062, -6.196793079376164 ], [ -75.573059082031193, -6.193126201629639 ], [ -75.577346801757756, -6.185523033142033 ], [ -75.580986022949162, -6.180669784545898 ], [ -75.588775634765625, -6.172892093658447 ], [ -75.593696594238281, -6.166481018066349 ], [ -75.595909118652344, -6.164200782775822 ], [ -75.60113525390625, -6.157824039459229 ], [ -75.603431701660156, -6.155570030212346 ], [ -75.606986999511719, -6.151017189025879 ], [ -75.610359191894474, -6.147503852844181 ], [ -75.612052917480412, -6.146110057830811 ], [ -75.615447998046875, -6.14449405670166 ], [ -75.618026733398438, -6.143894195556641 ], [ -75.620872497558594, -6.142878055572453 ], [ -75.622940063476506, -6.142477035522404 ], [ -75.626754760742131, -6.142419815063477 ], [ -75.635055541992131, -6.143159866332951 ], [ -75.636337280273438, -6.143094062805176 ], [ -75.63720703125, -6.142814159393254 ], [ -75.641876220703125, -6.139913082122746 ], [ -75.648574829101562, -6.133382797241211 ], [ -75.654212951660099, -6.128265857696533 ], [ -75.659660339355412, -6.124334812164307 ], [ -75.661590576171875, -6.123552799224854 ], [ -75.664474487304688, -6.123096942901554 ], [ -75.669509887695312, -6.122992038726807 ], [ -75.674720764160099, -6.124658107757455 ], [ -75.678276062011719, -6.125449180602971 ], [ -75.681526184082031, -6.126032829284668 ], [ -75.682624816894474, -6.12605094909668 ], [ -75.685356140136719, -6.126808166503849 ], [ -75.689376831054688, -6.127065181732178 ], [ -75.691650390625, -6.126752853393498 ], [ -75.692367553710881, -6.126881122589111 ], [ -75.692634582519531, -6.126644134521484 ], [ -75.695541381835938, -6.125833988189697 ], [ -75.698692321777344, -6.124358177185059 ], [ -75.700859069824162, -6.124009132385254 ], [ -75.702011108398381, -6.123447895050049 ], [ -75.708206176757756, -6.124000072479248 ], [ -75.708755493164006, -6.124234199523869 ], [ -75.709632873535099, -6.125020980834904 ], [ -75.70965576171875, -6.125645160675049 ], [ -75.710960388183537, -6.12664604187006 ], [ -75.711662292480469, -6.128635883331242 ], [ -75.712776184081974, -6.129864215850773 ], [ -75.712661743164062, -6.130760192871094 ], [ -75.711769104003906, -6.13145923614502 ], [ -75.711738586425724, -6.133169174194336 ], [ -75.712310791015568, -6.133763790130615 ], [ -75.7122802734375, -6.134507179260254 ], [ -75.712509155273324, -6.134921073913574 ], [ -75.713890075683594, -6.135373115539551 ], [ -75.714408874511662, -6.13614988327015 ], [ -75.715057373046818, -6.136464118957463 ], [ -75.715942382812386, -6.137405872344914 ], [ -75.716712951660156, -6.137586116790771 ], [ -75.716926574707031, -6.138741016387883 ], [ -75.717262268066349, -6.139067173004094 ], [ -75.718391418456974, -6.138929843902588 ], [ -75.718719482421875, -6.140006065368652 ], [ -75.719596862792969, -6.140700817108097 ], [ -75.720191955566406, -6.140718936920166 ], [ -75.721069335937443, -6.140329837799072 ], [ -75.721046447753906, -6.139161109924316 ], [ -75.721229553222656, -6.138941764831543 ], [ -75.722877502441349, -6.138950824737549 ], [ -75.723571777343636, -6.140124797820988 ], [ -75.724159240722656, -6.139655113220158 ], [ -75.724807739257756, -6.139664173126221 ], [ -75.726097106933594, -6.140847206115666 ], [ -75.72637939453125, -6.142094135284424 ], [ -75.727516174316406, -6.143394947051945 ], [ -75.72894287109375, -6.142814159393254 ], [ -75.729721069335938, -6.143085002899113 ], [ -75.730636596679688, -6.143109798431396 ], [ -75.731338500976562, -6.143689155578556 ], [ -75.732620239257756, -6.143587112426758 ], [ -75.733375549316349, -6.143857955932617 ], [ -75.733787536621094, -6.143495082855225 ], [ -75.734748840332031, -6.143548011779785 ], [ -75.735549926757812, -6.1422438621521 ], [ -75.736305236816406, -6.142478942871094 ], [ -75.736801147460881, -6.142260074615479 ], [ -75.737617492675781, -6.142267227172852 ], [ -75.738410949707031, -6.14143514633173 ], [ -75.738883972167969, -6.141488075256348 ], [ -75.739456176757812, -6.142076015472355 ], [ -75.740219116210938, -6.141740798950082 ], [ -75.743148803710938, -6.141771793365479 ], [ -75.74383544921875, -6.142024993896484 ], [ -75.746101379394531, -6.142230987548771 ], [ -75.74639892578125, -6.142609119415283 ], [ -75.74639892578125, -6.143432140350342 ], [ -75.746711730956974, -6.144011020660344 ], [ -75.748077392578068, -6.14391899108881 ], [ -75.749053955078125, -6.144404888153076 ], [ -75.750892639160156, -6.144402980804443 ], [ -75.75299072265625, -6.145667076110783 ], [ -75.754318237304688, -6.145266056060734 ], [ -75.755142211914062, -6.144687175750732 ], [ -75.755210876464787, -6.144152164459229 ], [ -75.754615783691406, -6.14347505569458 ], [ -75.754776000976562, -6.142849922180119 ], [ -75.7552490234375, -6.142859935760498 ], [ -75.755943298339844, -6.142415046691895 ], [ -75.756591796875, -6.142433166503849 ], [ -75.757171630859375, -6.143135070800781 ], [ -75.757537841796875, -6.143118858337402 ], [ -75.757957458496094, -6.141471862792912 ], [ -75.758705139160156, -6.141108989715462 ], [ -75.759361267089844, -6.141377925872803 ], [ -75.760612487792969, -6.142607212066594 ], [ -75.761894226074162, -6.14263200759882 ], [ -75.762161254882756, -6.142902851104736 ], [ -75.762702941894531, -6.144450187683105 ], [ -75.763877868652287, -6.144600868225098 ], [ -75.764846801757756, -6.145568847656193 ], [ -75.766204833984375, -6.145774841308537 ], [ -75.767486572265625, -6.147085189819336 ], [ -75.768188476562443, -6.147319793701058 ], [ -75.76873779296875, -6.147216796874943 ], [ -75.769943237304688, -6.145768165588379 ], [ -75.770248413085938, -6.145940780639648 ], [ -75.770881652832031, -6.147087097167969 ], [ -75.771286010742188, -6.147287845611572 ], [ -75.772102355956974, -6.14657020568842 ], [ -75.772636413574219, -6.145701885223389 ], [ -75.773406982421875, -6.145458221435547 ], [ -75.773757934570312, -6.144949913024902 ], [ -75.773582458496094, -6.144216060638428 ], [ -75.772422790527344, -6.142917156219426 ], [ -75.772186279296818, -6.141676902770996 ], [ -75.772407531738281, -6.141497135162354 ], [ -75.773956298828125, -6.141493797302246 ], [ -75.775199890136719, -6.140414237976017 ], [ -75.775184631347656, -6.14011812210083 ], [ -75.774757385253849, -6.139667034149113 ], [ -75.774391174316349, -6.139594078063965 ], [ -75.773345947265568, -6.138382911682129 ], [ -75.773239135742131, -6.138093948364201 ], [ -75.773582458496094, -6.137722015380859 ], [ -75.773567199707031, -6.137015819549561 ], [ -75.772682189941349, -6.137082099914551 ], [ -75.771820068359318, -6.137597084045353 ], [ -75.771255493163949, -6.137399196624756 ], [ -75.771369934082031, -6.137121200561523 ], [ -75.77197265625, -6.136847019195557 ], [ -75.772178649902287, -6.136429786682129 ], [ -75.772239685058594, -6.135662078857365 ], [ -75.772041320800781, -6.135218143463135 ], [ -75.771461486816406, -6.135300159454289 ], [ -75.770942687988224, -6.135701179504338 ], [ -75.770729064941406, -6.135988235473576 ], [ -75.770736694335938, -6.13664007186884 ], [ -75.770103454589787, -6.136868000030518 ], [ -75.769630432128849, -6.136453151702824 ], [ -75.769378662109375, -6.1354660987854 ], [ -75.768348693847656, -6.135440826416016 ], [ -75.768272399902287, -6.132492065429688 ], [ -75.767921447753906, -6.132085800170842 ], [ -75.7679443359375, -6.131626129150391 ], [ -75.768226623535156, -6.131398200988713 ], [ -75.770027160644531, -6.131042003631592 ], [ -75.770401000976562, -6.130454063415527 ], [ -75.770164489746094, -6.12995719909668 ], [ -75.769340515136662, -6.129940986633301 ], [ -75.768913269042969, -6.129478931426945 ], [ -75.769393920898438, -6.128674030303955 ], [ -75.7684326171875, -6.12784481048584 ], [ -75.768203735351449, -6.127220153808594 ], [ -75.768722534179688, -6.126720905303898 ], [ -75.770004272460881, -6.126728057861328 ], [ -75.770660400390568, -6.126375198364201 ], [ -75.770721435546875, -6.125959873199463 ], [ -75.7701416015625, -6.125280857086182 ], [ -75.770355224609375, -6.124673843383789 ], [ -75.771080017089844, -6.124656200408936 ], [ -75.772308349609375, -6.125268936157227 ], [ -75.773284912109375, -6.124460220336857 ], [ -75.774101257324162, -6.124588012695256 ], [ -75.775115966796875, -6.124216079711914 ], [ -75.775741577148438, -6.124513149261475 ], [ -75.776092529296818, -6.124457836151123 ], [ -75.776611328125, -6.123933792114258 ], [ -75.776657104492131, -6.123362064361572 ], [ -75.776046752929688, -6.122729778289795 ], [ -75.776283264160099, -6.122214794158879 ], [ -75.776283264160099, -6.121480941772461 ], [ -75.775505065917969, -6.120570182800236 ], [ -75.775711059570256, -6.120353221893311 ], [ -75.7762451171875, -6.120478153228703 ], [ -75.77679443359375, -6.12004280090332 ], [ -75.77679443359375, -6.119390964508057 ], [ -75.777229309081974, -6.11894702911377 ], [ -75.778999328613281, -6.119794845580998 ], [ -75.779319763183594, -6.118329048156681 ], [ -75.780158996582031, -6.117812156677189 ], [ -75.781181335449219, -6.117918968200627 ], [ -75.781951904296875, -6.118433952331543 ], [ -75.782051086425781, -6.119137763977051 ], [ -75.781578063964844, -6.119811058044377 ], [ -75.781639099121037, -6.120244026184025 ], [ -75.782157897949219, -6.120912075042668 ], [ -75.78302001953125, -6.121453762054443 ], [ -75.783195495605469, -6.122529983520508 ], [ -75.783683776855469, -6.122891902923584 ], [ -75.784118652343693, -6.122537136077824 ], [ -75.784233093261719, -6.122113227844238 ], [ -75.783843994140511, -6.120503902435303 ], [ -75.783973693847656, -6.120059013366699 ], [ -75.785011291503906, -6.120212078094426 ], [ -75.785598754882812, -6.119513988494873 ], [ -75.786575317382756, -6.120137214660588 ], [ -75.786727905273438, -6.119794845580998 ], [ -75.786628723144531, -6.1183180809021 ], [ -75.78680419921875, -6.118101119995117 ], [ -75.78790283203125, -6.118099212646484 ], [ -75.788558959960938, -6.118459224700814 ], [ -75.78900146484375, -6.117502212524357 ], [ -75.789848327636662, -6.117554187774601 ], [ -75.790496826171818, -6.117908000945988 ], [ -75.79095458984375, -6.117607116699219 ], [ -75.791046142578125, -6.117162227630615 ], [ -75.79168701171875, -6.117116928100529 ], [ -75.792274475097656, -6.117352008819523 ], [ -75.79248046875, -6.11705303192133 ], [ -75.792388916015625, -6.115397930145264 ], [ -75.792640686035156, -6.114838123321533 ], [ -75.793174743652287, -6.114737033843937 ], [ -75.79433441162098, -6.11519813537592 ], [ -75.794685363769474, -6.114952087402344 ], [ -75.794715881347543, -6.114571094512939 ], [ -75.793716430664062, -6.113388061523438 ], [ -75.793769836425781, -6.112918853759766 ], [ -75.794761657714844, -6.111849784851074 ], [ -75.794662475585938, -6.111316204071045 ], [ -75.79400634765625, -6.110673904418945 ], [ -75.79522705078125, -6.109741210937443 ], [ -75.795219421386719, -6.109352111816349 ], [ -75.794670104980469, -6.109018802642765 ], [ -75.794578552246094, -6.108646869659424 ], [ -75.795669555663949, -6.10785007476801 ], [ -75.795562744140568, -6.107017993927002 ], [ -75.795989990234375, -6.106445789337158 ], [ -75.797500610351562, -6.105648040771484 ], [ -75.797966003417969, -6.105675220489502 ], [ -75.798683166503906, -6.106109142303353 ], [ -75.79913330078125, -6.105593204498234 ], [ -75.79913330078125, -6.104941844940129 ], [ -75.799392700195312, -6.104560852050724 ], [ -75.800544738769531, -6.104440212249642 ], [ -75.802413940429631, -6.102953910827637 ], [ -75.803062438964844, -6.102962970733586 ], [ -75.804061889648324, -6.103360176086369 ], [ -75.8079833984375, -6.101606845855713 ], [ -75.808746337890625, -6.102058887481689 ], [ -75.809013366699162, -6.103325843811035 ], [ -75.809341430664062, -6.103649139404297 ], [ -75.810546874999886, -6.102534770965576 ], [ -75.811935424804688, -6.102063179016113 ], [ -75.813026428222543, -6.101970195770264 ], [ -75.814208984375, -6.101156234741211 ], [ -75.815132141113281, -6.101914882659912 ], [ -75.815498352050724, -6.10275411605835 ], [ -75.816925048828068, -6.111020088195801 ], [ -75.817001342773381, -6.112412929534912 ], [ -75.817871093749943, -6.116381168365422 ], [ -75.819015502929631, -6.118795871734619 ], [ -75.819129943847543, -6.119890213012638 ], [ -75.820228576660156, -6.123795032501221 ], [ -75.822097778320312, -6.12778997421259 ], [ -75.824966430664062, -6.135447978973332 ], [ -75.826751708984318, -6.138230800628662 ], [ -75.829521179199162, -6.141310214996338 ], [ -75.831275939941406, -6.142484188079777 ], [ -75.835327148437443, -6.144207000732422 ], [ -75.837165832519531, -6.144755840301514 ], [ -75.840896606445312, -6.145236968994141 ], [ -75.844566345214787, -6.145285129547119 ], [ -75.847190856933594, -6.144865036010685 ], [ -75.852340698242188, -6.14298486709589 ], [ -75.861907958984375, -6.13843822479248 ], [ -75.867881774902344, -6.136131763458252 ], [ -75.871879577636719, -6.135147094726562 ], [ -75.875625610351562, -6.134942054748478 ], [ -75.879707336425781, -6.133561134338379 ], [ -75.882469177246094, -6.133230209350529 ], [ -75.887306213378849, -6.133555889129582 ], [ -75.892608642578125, -6.133511066436768 ], [ -75.894332885742188, -6.133772850036621 ], [ -75.899185180664062, -6.133809089660645 ], [ -75.902664184570256, -6.134572982788029 ], [ -75.904304504394531, -6.134712219238224 ], [ -75.907234191894474, -6.135785102844181 ], [ -75.909294128417969, -6.136178970336857 ], [ -75.911155700683537, -6.136962890625 ], [ -75.913650512695312, -6.138659000396729 ], [ -75.915939331054688, -6.139614105224609 ], [ -75.917434692382756, -6.140832901000977 ], [ -75.918449401855469, -6.140776157379094 ], [ -75.919647216796761, -6.140323162078801 ], [ -75.921195983886719, -6.140220165252629 ], [ -75.922859191894474, -6.139700889587402 ], [ -75.924354553222656, -6.138812065124512 ], [ -75.926055908203125, -6.138185024261418 ], [ -75.930297851562443, -6.135999202728215 ], [ -75.935272216796818, -6.132361888885498 ], [ -75.938499450683537, -6.129094123840275 ], [ -75.940673828125, -6.12625598907465 ], [ -75.944412231445256, -6.120008945464974 ], [ -75.949928283691406, -6.109516143798828 ], [ -75.954673767089844, -6.102759838104191 ], [ -75.959510803222543, -6.097848892211857 ], [ -75.961021423339787, -6.096826076507568 ], [ -75.964019775390625, -6.095471858978215 ], [ -75.965843200683594, -6.094900131225529 ], [ -75.971694946289006, -6.094607830047607 ], [ -75.975570678710938, -6.09565877914423 ], [ -75.979217529296818, -6.096032142639103 ], [ -75.980003356933537, -6.096501827239933 ], [ -75.985427856445256, -6.097839832305908 ], [ -75.989898681640568, -6.098011016845646 ], [ -75.990394592285099, -6.098255157470703 ], [ -75.993736267089787, -6.098755836486816 ], [ -75.99575042724598, -6.098805904388371 ], [ -75.997840881347599, -6.098557949066162 ], [ -75.998764038085938, -6.098195075988713 ], [ -75.999542236328068, -6.097740173339844 ], [ -76.001258850097599, -6.095728874206543 ], [ -76.002479553222656, -6.095184803009033 ], [ -76.004501342773381, -6.095189094543457 ], [ -76.007316589355469, -6.095536231994572 ], [ -76.013275146484318, -6.09543514251709 ], [ -76.015731811523438, -6.095213890075627 ], [ -76.019683837890568, -6.094373226165771 ], [ -76.022155761718693, -6.094377994537354 ], [ -76.022476196289062, -6.094034194946232 ], [ -76.023475646972599, -6.094484806060791 ], [ -76.027107238769474, -6.094965934753418 ], [ -76.031059265136719, -6.09673023223877 ], [ -76.032135009765625, -6.097027778625488 ], [ -76.032890319824219, -6.096773147583008 ], [ -76.034629821777287, -6.095114231109562 ], [ -76.035362243652344, -6.094751834869385 ], [ -76.039772033691406, -6.094760894775334 ], [ -76.042861938476449, -6.095046043395996 ], [ -76.045478820800781, -6.095919132232666 ], [ -76.047431945800724, -6.096943855285645 ], [ -76.05068206787098, -6.097897052764836 ], [ -76.053604125976506, -6.100268840789738 ], [ -76.056892395019531, -6.101097106933594 ], [ -76.058143615722656, -6.100856781005803 ], [ -76.059333801269474, -6.099346160888615 ], [ -76.060661315917912, -6.099051952361947 ], [ -76.061897277832031, -6.097964763641357 ], [ -76.062423706054688, -6.097818851470947 ], [ -76.063583374023438, -6.09782600402832 ], [ -76.0648193359375, -6.098167896270752 ], [ -76.066932678222656, -6.099455833435059 ], [ -76.068229675292855, -6.099915981292725 ], [ -76.069053649902287, -6.099798202514648 ], [ -76.070121765136662, -6.098934173583928 ], [ -76.070983886718693, -6.098635196685734 ], [ -76.071975708007812, -6.098831176757812 ], [ -76.073181152343693, -6.099660873413029 ], [ -76.074966430664006, -6.10005521774292 ], [ -76.076026916503849, -6.100787162780762 ], [ -76.079421997070312, -6.104522228240967 ], [ -76.081092834472599, -6.105804920196533 ], [ -76.083580017089787, -6.108629226684513 ], [ -76.085235595703125, -6.109604835510254 ], [ -76.086456298828125, -6.1107239723205 ], [ -76.087516784667969, -6.112557888031006 ], [ -76.091033935546875, -6.117280960083008 ], [ -76.095664978027287, -6.127871990203857 ], [ -76.098716735839787, -6.13192701339716 ], [ -76.099258422851562, -6.132024765014648 ], [ -76.100395202636719, -6.133072853088379 ], [ -76.103691101074162, -6.134872913360596 ], [ -76.105079650878906, -6.135350227355957 ], [ -76.106651306152287, -6.136304855346566 ], [ -76.110542297363224, -6.13795280456543 ], [ -76.111679077148438, -6.138700008392334 ], [ -76.116424560546875, -6.140914916992131 ], [ -76.120918273925781, -6.143736839294377 ], [ -76.124725341796875, -6.145358085632267 ], [ -76.126182556152287, -6.146312236785889 ], [ -76.128013610839787, -6.147167205810547 ], [ -76.129409790039062, -6.148231983184814 ], [ -76.131980895996094, -6.147720813751221 ], [ -76.135978698730469, -6.148662090301514 ], [ -76.139442443847599, -6.148355007171631 ], [ -76.144142150878793, -6.148355007171631 ], [ -76.1451416015625, -6.148253917694035 ], [ -76.146072387695312, -6.147671222686768 ], [ -76.148078918457031, -6.147007942199707 ], [ -76.152458190917969, -6.146626949310303 ], [ -76.155441284179688, -6.146104812622013 ], [ -76.158294677734375, -6.145132064819336 ], [ -76.164077758789062, -6.14374399185175 ], [ -76.166923522949162, -6.142724990844727 ], [ -76.171249389648438, -6.141965866088867 ], [ -76.183792114257756, -6.141530990600529 ], [ -76.186958312988224, -6.141640186309814 ], [ -76.190773010253849, -6.142185211181641 ], [ -76.192695617675781, -6.1422438621521 ], [ -76.195320129394474, -6.141866207122803 ], [ -76.202102661132756, -6.141626834869328 ], [ -76.205062866210881, -6.141032218933105 ], [ -76.210189819335938, -6.140855789184513 ], [ -76.213829040527287, -6.140387058258 ], [ -76.218757629394531, -6.138675212860107 ], [ -76.222503662109318, -6.137791156768742 ], [ -76.224754333496094, -6.136763095855656 ], [ -76.230461120605469, -6.134805202484131 ], [ -76.234909057617131, -6.133727073669377 ], [ -76.237968444824162, -6.132047176361084 ], [ -76.239410400390568, -6.131790161132812 ], [ -76.241569519042969, -6.131034851074219 ], [ -76.247810363769531, -6.127963066101074 ], [ -76.249969482421818, -6.127191066741943 ], [ -76.252487182617188, -6.126705169677678 ], [ -76.258064270019531, -6.126356124877873 ], [ -76.268356323242188, -6.124668121337891 ], [ -76.2723388671875, -6.123476028442383 ], [ -76.27386474609375, -6.122639179229736 ], [ -76.276763916015568, -6.121520042419377 ], [ -76.280342102050781, -6.119439125061035 ], [ -76.282798767089787, -6.117191791534367 ], [ -76.285400390625, -6.113974094390812 ], [ -76.290077209472656, -6.109188079833984 ], [ -76.293678283691293, -6.103644847869873 ], [ -76.294715881347599, -6.102375030517521 ], [ -76.298332214355412, -6.098731040954533 ], [ -76.307304382324162, -6.092080116271973 ], [ -76.308967590332031, -6.090503215789795 ], [ -76.312065124511662, -6.088723182678223 ], [ -76.315299987792912, -6.086163997650146 ], [ -76.318473815917855, -6.08414888381958 ], [ -76.319450378417969, -6.082717895507812 ], [ -76.322517395019531, -6.076642036437931 ], [ -76.327247619628793, -6.069874763488713 ], [ -76.329017639160156, -6.068278789520264 ], [ -76.333694458007812, -6.065048217773438 ], [ -76.339126586914062, -6.059454917907658 ], [ -76.340446472167969, -6.058691024780273 ], [ -76.342147827148438, -6.057023048400822 ], [ -76.344284057617131, -6.054503917694035 ], [ -76.344841003417969, -6.052764892578125 ], [ -76.344314575195256, -6.050723075866699 ], [ -76.343551635742131, -6.049919128417912 ], [ -76.341056823730412, -6.048215866088867 ], [ -76.339881896972656, -6.046564102172738 ], [ -76.339065551757756, -6.044703960418701 ], [ -76.338668823242131, -6.040019989013615 ], [ -76.337493896484375, -6.034922122955265 ], [ -76.337135314941349, -6.032364845275879 ], [ -76.337142944335881, -6.030338764190674 ], [ -76.33758544921875, -6.026240825653076 ], [ -76.337509155273438, -6.023474216461125 ], [ -76.337059020996037, -6.021883010864258 ], [ -76.336082458496037, -6.020347118377629 ], [ -76.335777282714844, -6.018430233001709 ], [ -76.33612060546875, -6.016621112823486 ], [ -76.336814880371094, -6.014920234680176 ], [ -76.341133117675781, -6.008433818817082 ], [ -76.342597961425724, -6.00369119644165 ], [ -76.342842102050781, -6.003419876098633 ], [ -76.343696594238281, -6.000123977661133 ], [ -76.344680786132756, -5.994487762451172 ], [ -76.34503173828125, -5.990407943725586 ], [ -76.345077514648381, -5.978074073791504 ], [ -76.345512390136719, -5.968430995941105 ], [ -76.345161437988224, -5.961168766021729 ], [ -76.344436645507812, -5.956622123718205 ], [ -76.344161987304688, -5.950174808502197 ], [ -76.343307495117188, -5.943684101104736 ], [ -76.341377258300781, -5.93666219711298 ], [ -76.340690612792912, -5.93294715881342 ], [ -76.339889526367188, -5.930596828460693 ], [ -76.339324951171818, -5.927332878112793 ], [ -76.338027954101562, -5.922426223754883 ], [ -76.33740234375, -5.918049812316838 ], [ -76.335624694824162, -5.910348892211857 ], [ -76.335731506347599, -5.909244060516301 ], [ -76.336189270019474, -5.909253120422363 ], [ -76.340774536132756, -5.911042213439941 ], [ -76.344024658203068, -5.913421154022217 ], [ -76.347213745117188, -5.915160179138127 ], [ -76.352104187011662, -5.918385028839111 ], [ -76.3582763671875, -5.921779155731201 ], [ -76.362747192382812, -5.924643993377686 ], [ -76.368270874023438, -5.92751502990717 ], [ -76.376335144042912, -5.932425022125244 ], [ -76.382354736328068, -5.936524868011475 ], [ -76.387664794921875, -5.939750194549561 ], [ -76.389358520507812, -5.940431118011475 ], [ -76.391853332519531, -5.942115783691406 ], [ -76.39508056640625, -5.943635940551701 ], [ -76.406303405761662, -5.948084831237793 ], [ -76.410438537597656, -5.950343132018986 ], [ -76.411811828613224, -5.950819969177189 ], [ -76.420806884765625, -5.956486225128117 ], [ -76.427444458007756, -5.959505081176758 ], [ -76.436340332031193, -5.96451282501215 ], [ -76.451011657714787, -5.971330165863037 ], [ -76.457695007324162, -5.974728107452393 ], [ -76.462463378906193, -5.976578235626221 ], [ -76.465812683105412, -5.978631973266545 ], [ -76.469535827636605, -5.980585098266602 ], [ -76.469894409179631, -5.980591773986816 ], [ -76.473739624023438, -5.982843875884953 ], [ -76.482788085937443, -5.986987113952637 ], [ -76.485816955566349, -5.988814830780029 ], [ -76.487907409667912, -5.989749908447209 ], [ -76.491378784179688, -5.992128849029541 ], [ -76.496894836425724, -5.996382236480656 ], [ -76.499351501464787, -5.999495029449463 ], [ -76.501304626464844, -6.00147819519043 ], [ -76.504287719726562, -6.004229068756047 ], [ -76.505409240722656, -6.005003929138127 ], [ -76.50677490234375, -6.005587100982666 ], [ -76.508926391601562, -6.006068229675293 ], [ -76.513328552246094, -6.006156921386662 ], [ -76.517372131347656, -6.00444507598877 ], [ -76.518867492675781, -6.004214763641357 ], [ -76.519462585449219, -6.004350185394287 ], [ -76.523475646972656, -6.007575035095158 ], [ -76.524383544921875, -6.008132934570312 ], [ -76.528968811035156, -6.010028839111328 ], [ -76.533668518066406, -6.012547969818115 ], [ -76.536102294921761, -6.014350891113224 ], [ -76.538070678710881, -6.015347003936768 ], [ -76.547584533691406, -6.021586894988957 ], [ -76.550224304199219, -6.02308177947998 ], [ -76.551261901855412, -6.02400016784668 ], [ -76.556449890136719, -6.020884990692139 ], [ -76.561897277832031, -6.018960952758789 ], [ -76.56337738037098, -6.018061161041146 ], [ -76.568252563476562, -6.016193866729679 ], [ -76.571044921875, -6.014846801757756 ], [ -76.575485229492131, -6.013696193695068 ], [ -76.580718994140568, -6.012794017791748 ], [ -76.586128234863281, -6.01076078414917 ], [ -76.589347839355469, -6.008662223815918 ], [ -76.59084320068348, -6.00654220581049 ], [ -76.592056274414006, -6.003980159759521 ], [ -76.592826843261662, -6.003191947936955 ], [ -76.593833923339844, -6.003079891204834 ], [ -76.596038818359375, -6.003715991973877 ], [ -76.598518371582031, -6.005290985107365 ], [ -76.60125732421875, -6.006595134735107 ], [ -76.603675842285156, -6.008278846740666 ], [ -76.610443115234375, -6.010907173156738 ], [ -76.613304138183594, -6.012564182281494 ], [ -76.615051269531193, -6.013325214385929 ], [ -76.619796752929688, -6.013646125793457 ], [ -76.622215270996037, -6.014553070068303 ], [ -76.625328063964844, -6.016333103179875 ], [ -76.627693176269531, -6.016679763793888 ], [ -76.628974914550724, -6.016557216644287 ], [ -76.629913330078068, -6.016202926635685 ], [ -76.632217407226506, -6.014098167419434 ], [ -76.633163452148381, -6.013544082641545 ], [ -76.634994506835881, -6.012915134429932 ], [ -76.636825561523438, -6.012891769409123 ], [ -76.638305664062443, -6.012379169464054 ], [ -76.642547607421875, -6.009177207946721 ], [ -76.649757385253849, -6.004820823669434 ], [ -76.652023315429688, -6.004262924194336 ], [ -76.657073974609375, -6.004493236541748 ], [ -76.658515930175781, -6.003547191619873 ], [ -76.659645080566406, -6.003255844116154 ], [ -76.661285400390568, -6.003395080566349 ], [ -76.662933349609318, -6.00397777557373 ], [ -76.667167663574219, -6.006576061248779 ], [ -76.669334411621094, -6.008416175842285 ], [ -76.671943664550781, -6.011138916015625 ], [ -76.673294067382812, -6.012889862060547 ], [ -76.674514770507812, -6.015253067016545 ], [ -76.676101684570199, -6.018675804138184 ], [ -76.676605224609375, -6.019949913024846 ], [ -76.676979064941406, -6.021749019622746 ], [ -76.677543640136719, -6.022739887237549 ], [ -76.678443908691406, -6.023523807525635 ], [ -76.680892944335938, -6.026618957519531 ], [ -76.683494567871094, -6.029087066650391 ], [ -76.685195922851562, -6.030494213104248 ], [ -76.688819885253906, -6.032660961151066 ], [ -76.6912841796875, -6.032907009124699 ], [ -76.693550109863224, -6.032638072967529 ], [ -76.695571899414062, -6.031591892242375 ], [ -76.699012756347656, -6.028298854827881 ], [ -76.702018737792912, -6.024717807769719 ], [ -76.706932067871094, -6.018065929412785 ], [ -76.707809448242188, -6.016451835632211 ], [ -76.711166381835881, -6.012327194213754 ], [ -76.713638305664062, -6.007627010345402 ], [ -76.715270996093693, -6.005632877349797 ], [ -76.716514587402287, -6.003712177276611 ], [ -76.718673706054688, -6.000187873840275 ], [ -76.719169616699219, -5.998793125152531 ], [ -76.721580505371037, -5.995313167571965 ], [ -76.722618103027287, -5.992391109466553 ], [ -76.725982666015625, -5.985724925994816 ], [ -76.726478576660156, -5.985188961029053 ], [ -76.727203369140568, -5.983407020568734 ], [ -76.732429504394474, -5.975161075592041 ], [ -76.734245300292912, -5.97184514999384 ], [ -76.736076354980412, -5.969426155090332 ], [ -76.737884521484318, -5.965894222259521 ], [ -76.740119934082031, -5.962741851806641 ], [ -76.74078369140625, -5.961326122283879 ], [ -76.746253967285156, -5.953028202056885 ], [ -76.750534057617188, -5.944975852966309 ], [ -76.751617431640568, -5.943499088287354 ], [ -76.751678466796875, -5.943064212799072 ], [ -76.752342224121094, -5.942419052123967 ], [ -76.752578735351506, -5.941596031188965 ], [ -76.753028869628849, -5.94113302230835 ], [ -76.754158020019531, -5.938933849334717 ], [ -76.762527465820312, -5.926032066345158 ], [ -76.762832641601562, -5.924962997436467 ], [ -76.763786315917969, -5.923494815826416 ], [ -76.764045715332031, -5.922516822814941 ], [ -76.764945983886719, -5.921021938323918 ], [ -76.764945983886719, -5.92047119140625 ], [ -76.766464233398438, -5.917619228363037 ], [ -76.768234252929688, -5.912186145782471 ], [ -76.769866943359375, -5.906123161315918 ], [ -76.771049499511719, -5.903117179870605 ], [ -76.772369384765625, -5.898322105407715 ], [ -76.773292541503906, -5.8958420753479 ], [ -76.772781372070256, -5.893410205841064 ], [ -76.771324157714844, -5.89128208160389 ], [ -76.771209716796875, -5.88989782333374 ], [ -76.771934509277287, -5.888838768005314 ], [ -76.774795532226506, -5.886693954467717 ], [ -76.776931762695312, -5.88440990447998 ], [ -76.776817321777344, -5.88294506072998 ], [ -76.776405334472599, -5.881905078887883 ], [ -76.774421691894474, -5.878259181976318 ], [ -76.772506713867131, -5.875553131103516 ], [ -76.771827697753849, -5.874128818511906 ], [ -76.771781921386719, -5.872200965881291 ], [ -76.7723388671875, -5.869676113128662 ], [ -76.773330688476562, -5.86771106719965 ], [ -76.775405883789062, -5.865759849548283 ], [ -76.777626037597656, -5.864921092987004 ], [ -76.780158996582031, -5.8644700050354 ], [ -76.7823486328125, -5.86447191238392 ], [ -76.783035278320312, -5.864208221435547 ], [ -76.786384582519531, -5.861792087554932 ], [ -76.788101196289062, -5.859273910522461 ], [ -76.788223266601506, -5.858304977416935 ], [ -76.790451049804688, -5.854102134704533 ], [ -76.791023254394531, -5.852057933807373 ], [ -76.79046630859375, -5.849536895751953 ], [ -76.789161682128906, -5.846603870391789 ], [ -76.7890625, -5.844840049743652 ], [ -76.789131164550781, -5.841884136199951 ], [ -76.789558410644474, -5.838581085205021 ], [ -76.790031433105412, -5.836978912353459 ], [ -76.791191101074162, -5.834797859191838 ], [ -76.793174743652344, -5.832121849060059 ], [ -76.801322937011719, -5.823515892028752 ], [ -76.803787231445256, -5.821944236755371 ], [ -76.804489135742188, -5.821715831756535 ], [ -76.807044982910156, -5.819076061248779 ], [ -76.807868957519474, -5.816940784454346 ], [ -76.808166503906193, -5.8109450340271 ], [ -76.808433532714844, -5.809576988220158 ], [ -76.809020996093693, -5.808228015899658 ], [ -76.810455322265568, -5.806190013885498 ], [ -76.811531066894531, -5.805335998535156 ], [ -76.813522338867131, -5.804624080657959 ], [ -76.81787109375, -5.802441120147705 ], [ -76.819473266601562, -5.800806999206486 ], [ -76.820465087890568, -5.798427104949894 ], [ -76.821418762206974, -5.796959877014103 ], [ -76.821723937988224, -5.792980194091797 ], [ -76.822044372558594, -5.791578769683838 ], [ -76.823341369628849, -5.789980888366699 ], [ -76.824478149414006, -5.789227008819466 ], [ -76.825576782226562, -5.788112163543701 ], [ -76.826461791992131, -5.785703182220402 ], [ -76.826423645019531, -5.782106876373234 ], [ -76.826980590820312, -5.780539035797119 ], [ -76.827606201171818, -5.779514789581299 ], [ -76.830131530761719, -5.776722908019963 ], [ -76.831520080566349, -5.775993824005127 ], [ -76.833480834960938, -5.774332046508789 ], [ -76.8370361328125, -5.772261142730713 ], [ -76.840248107910156, -5.771158218383789 ], [ -76.843475341796875, -5.770493984222412 ], [ -76.844764709472656, -5.770572185516301 ], [ -76.8460693359375, -5.771018981933594 ], [ -76.849891662597656, -5.77339315414423 ], [ -76.852760314941406, -5.774614810943604 ], [ -76.856918334960824, -5.775396823883057 ], [ -76.858749389648438, -5.775411128997746 ], [ -76.859329223632812, -5.77512788772583 ], [ -76.859642028808594, -5.775424003601017 ], [ -76.86181640625, -5.775780200958138 ], [ -76.867103576660099, -5.776013851165771 ], [ -76.871559143066406, -5.776579856872502 ], [ -76.872695922851562, -5.776918888092041 ], [ -76.878822326660099, -5.777205944061279 ], [ -76.880828857421818, -5.77704477310175 ], [ -76.883323669433537, -5.776394844055176 ], [ -76.886436462402344, -5.774819850921574 ], [ -76.889991760253849, -5.771500110626221 ], [ -76.891044616699162, -5.769615173339844 ], [ -76.893302917480469, -5.763315200805607 ], [ -76.894599914550781, -5.757932186126709 ], [ -76.895141601562443, -5.754185199737549 ], [ -76.896308898925781, -5.750493049621525 ], [ -76.899505615234375, -5.743874073028564 ], [ -76.901252746581974, -5.741553783416748 ], [ -76.903602600097656, -5.739212989807129 ], [ -76.905532836914006, -5.737832069396916 ], [ -76.911453247070256, -5.734514236450138 ], [ -76.91729736328125, -5.733454227447453 ], [ -76.919044494628906, -5.732271194458008 ], [ -76.920166015625, -5.731870174407959 ], [ -76.921485900878906, -5.73087215423584 ], [ -76.924995422363224, -5.729276180267334 ], [ -76.929031372070312, -5.725800991058293 ], [ -76.932723999023381, -5.723591804504338 ], [ -76.933517456054688, -5.723361968994141 ], [ -76.935340881347656, -5.7219557762146 ], [ -76.939476013183537, -5.720223903656006 ], [ -76.942115783691406, -5.719898223876953 ], [ -76.944107055664062, -5.717848777770939 ], [ -76.944908142089787, -5.717411041259766 ], [ -76.947288513183594, -5.717222213745117 ], [ -76.9537353515625, -5.718691825866642 ], [ -76.954811096191406, -5.718525886535645 ], [ -76.958023071289062, -5.717438220977783 ], [ -76.961013793945312, -5.717907905578613 ], [ -76.963508605956974, -5.717926025390625 ], [ -76.966560363769474, -5.716469764709416 ], [ -76.967994689941349, -5.715334892272949 ], [ -76.969253540039006, -5.712871074676514 ], [ -76.971954345703125, -5.710247993469181 ], [ -76.973289489746094, -5.709639072418156 ], [ -76.976005554199162, -5.709230899810734 ], [ -76.976844787597656, -5.708867073059082 ], [ -76.977455139160099, -5.708312988281193 ], [ -76.979789733886719, -5.70477819442749 ], [ -76.981491088867188, -5.700197219848633 ], [ -76.983482360839844, -5.696990013122559 ], [ -76.985687255859375, -5.692635059356689 ], [ -76.987693786621094, -5.69035816192627 ], [ -76.988906860351449, -5.689703941345158 ], [ -76.993461608886662, -5.685682773590031 ], [ -76.994819641113168, -5.684945106506348 ], [ -76.997039794921875, -5.684316158294621 ], [ -76.999870300292912, -5.684023857116699 ], [ -77.001152038574219, -5.684553146362305 ], [ -77.002784729003906, -5.68465518951416 ], [ -77.00588226318348, -5.684301853179932 ], [ -77.008705139160156, -5.683558940887451 ], [ -77.010772705078125, -5.682577133178711 ], [ -77.017913818359375, -5.678365230560303 ], [ -77.020744323730412, -5.676184177398682 ], [ -77.02423095703125, -5.673072814941406 ], [ -77.025459289550781, -5.671620845794678 ], [ -77.026657104492131, -5.669340133666992 ], [ -77.027603149414006, -5.664940834045353 ], [ -77.028572082519474, -5.662065029144287 ], [ -77.031654357910156, -5.656854152679387 ], [ -77.034614562988281, -5.65083122253418 ], [ -77.036003112792912, -5.649118900299072 ], [ -77.037536621093693, -5.647819995880127 ], [ -77.039131164550724, -5.647118091583195 ], [ -77.041778564453125, -5.646603107452393 ], [ -77.042434692382812, -5.646942138671875 ], [ -77.044166564941406, -5.647075176238957 ], [ -77.047103881835938, -5.647777080535889 ], [ -77.05133056640625, -5.649273872375488 ], [ -77.053321838378906, -5.6495361328125 ], [ -77.057838439941349, -5.65129280090332 ], [ -77.060218811035099, -5.651400089263916 ], [ -77.060829162597656, -5.651191234588566 ], [ -77.062545776367188, -5.64982080459589 ], [ -77.065521240234375, -5.647911071777344 ], [ -77.070549011230469, -5.645090103149414 ], [ -77.073104858398381, -5.644095897674561 ], [ -77.075691223144418, -5.643425941467285 ], [ -77.077972412109318, -5.64227914810175 ], [ -77.080101013183594, -5.641712188720703 ], [ -77.082916259765568, -5.641457080841064 ], [ -77.085830688476562, -5.641691207885742 ], [ -77.087821960449219, -5.642388820648193 ], [ -77.090560913085881, -5.643878936767578 ], [ -77.092620849609375, -5.644279956817627 ], [ -77.094001770019418, -5.644227981567383 ], [ -77.095062255859375, -5.643375873565617 ], [ -77.096145629882812, -5.641147136688232 ], [ -77.098602294921875, -5.637485980987492 ], [ -77.099426269531193, -5.636762142181396 ], [ -77.100914001464844, -5.636041164398193 ], [ -77.104965209960881, -5.634832859039307 ], [ -77.107666015625, -5.634379863739014 ], [ -77.112686157226506, -5.63401985168457 ], [ -77.113174438476562, -5.633790016174203 ], [ -77.120933532714844, -5.63405179977417 ], [ -77.12255859375, -5.633495807647705 ], [ -77.127571105956918, -5.628785133361816 ], [ -77.130149841308594, -5.625483989715576 ], [ -77.13189697265625, -5.621437072753849 ], [ -77.132484436035156, -5.617719173431396 ], [ -77.134429931640568, -5.614503860473633 ], [ -77.13922119140625, -5.612026214599609 ], [ -77.141571044921818, -5.611285209655762 ], [ -77.144218444824219, -5.611130237579346 ], [ -77.148025512695312, -5.610573768615723 ], [ -77.15313720703125, -5.610799789428654 ], [ -77.157241821289062, -5.609880924224797 ], [ -77.1591796875, -5.610390186309758 ], [ -77.160743713378849, -5.611532211303711 ], [ -77.162162780761662, -5.615413188934269 ], [ -77.164070129394474, -5.617646217346135 ], [ -77.166259765624943, -5.618987083435059 ], [ -77.169700622558537, -5.619444847106934 ], [ -77.171226501464787, -5.620052814483643 ], [ -77.174713134765625, -5.623702049255314 ], [ -77.178085327148381, -5.6267991065979 ], [ -77.179649353027344, -5.627542018890381 ], [ -77.182121276855355, -5.62760591506958 ], [ -77.186813354492188, -5.626846790313721 ], [ -77.189643859863224, -5.626628875732422 ], [ -77.194290161132812, -5.625626087188721 ], [ -77.196632385253906, -5.62458610534668 ], [ -77.198432922363281, -5.62346696853632 ], [ -77.204963684082031, -5.616139888763371 ], [ -77.208099365234375, -5.613053798675537 ], [ -77.210845947265625, -5.611795902252084 ], [ -77.214942932128906, -5.611996173858643 ], [ -77.216163635253849, -5.611396789550781 ], [ -77.217048645019531, -5.610334873199406 ], [ -77.2183837890625, -5.607203006744328 ], [ -77.220024108886719, -5.604990005493107 ], [ -77.230758666992074, -5.595856189727783 ], [ -77.240592956542969, -5.58598518371582 ], [ -77.241821289062386, -5.584259033203068 ], [ -77.244773864746037, -5.578971862792969 ], [ -77.246795654296875, -5.576123237609863 ], [ -77.252067565917969, -5.570634841918945 ], [ -77.254959106445256, -5.568553924560547 ], [ -77.256324768066406, -5.568667888641357 ], [ -77.257934570312443, -5.569718837738037 ], [ -77.261512756347656, -5.574179172515869 ], [ -77.262512207031193, -5.575125217437744 ], [ -77.267555236816349, -5.577709197998047 ], [ -77.275482177734318, -5.581111907958928 ], [ -77.279167175292969, -5.582201004028263 ], [ -77.287933349609375, -5.583540916442871 ], [ -77.295654296875, -5.585498809814396 ], [ -77.299598693847599, -5.586215019226017 ], [ -77.309165954589844, -5.589034080505371 ], [ -77.312271118164006, -5.588976860046387 ], [ -77.3226318359375, -5.584597110748234 ], [ -77.325241088867131, -5.584073066711369 ], [ -77.326889038085824, -5.584128856658879 ], [ -77.32891845703125, -5.585360050201359 ], [ -77.330474853515625, -5.587043762207031 ], [ -77.330833435058594, -5.588189125060978 ], [ -77.331176757812443, -5.591760158538818 ], [ -77.332054138183594, -5.59408712387085 ], [ -77.332817077636719, -5.595449924468994 ], [ -77.333869934082031, -5.596476078033447 ], [ -77.335556030273381, -5.597056865692139 ], [ -77.3369140625, -5.597231864929199 ], [ -77.338706970214787, -5.596591949462891 ], [ -77.342254638671875, -5.593839168548527 ], [ -77.345611572265625, -5.591611862182617 ], [ -77.350708007812443, -5.58726978302002 ], [ -77.353218078613281, -5.585444927215576 ], [ -77.355918884277344, -5.584067821502572 ], [ -77.360008239746094, -5.583473205566349 ], [ -77.363616943359375, -5.582147121429443 ], [ -77.369819641113281, -5.576310157775879 ], [ -77.372451782226506, -5.574817180633431 ], [ -77.376831054687443, -5.572994232177678 ], [ -77.382827758789062, -5.567753791809082 ], [ -77.385444641113168, -5.566096782684326 ], [ -77.387687683105469, -5.565329074859562 ], [ -77.388778686523381, -5.565189838409367 ], [ -77.393623352050724, -5.565303802490234 ], [ -77.397499084472656, -5.56600379943842 ], [ -77.400711059570312, -5.567111015319824 ], [ -77.404113769531193, -5.568895816802979 ], [ -77.40692138671875, -5.570800781249943 ], [ -77.408767700195312, -5.572591781616211 ], [ -77.410110473632756, -5.574330806732178 ], [ -77.411941528320256, -5.575868129730225 ], [ -77.417388916015568, -5.577733993530217 ], [ -77.419586181640511, -5.577743053436222 ], [ -77.42584228515625, -5.576026916503906 ], [ -77.433708190917969, -5.575959205627441 ], [ -77.435592651367131, -5.575625896453857 ], [ -77.437110900878849, -5.574996948242131 ], [ -77.439895629882756, -5.572789192199707 ], [ -77.443603515624943, -5.568994045257568 ], [ -77.445228576660099, -5.566883087158146 ], [ -77.447151184082031, -5.563866138458195 ], [ -77.449554443359375, -5.557701110839844 ], [ -77.451698303222599, -5.554065227508545 ], [ -77.453155517578011, -5.552171230316162 ], [ -77.456466674804631, -5.548731803894043 ], [ -77.459030151367188, -5.546669960021973 ], [ -77.461151123046818, -5.545910835266113 ], [ -77.463775634765625, -5.545512199401799 ], [ -77.466331481933594, -5.545581817626953 ], [ -77.469871520996094, -5.546057224273625 ], [ -77.471450805664006, -5.546518802642822 ], [ -77.474845886230469, -5.54813098907465 ], [ -77.477172851562443, -5.548600196838322 ], [ -77.479858398437386, -5.549530029296818 ], [ -77.481109619140625, -5.550455093383732 ], [ -77.483108520507812, -5.551358222961369 ], [ -77.485488891601562, -5.552063941955566 ], [ -77.488540649414062, -5.552601814269963 ], [ -77.490982055664006, -5.552303791046086 ], [ -77.493202209472599, -5.55023193359375 ], [ -77.494422912597599, -5.548392772674504 ], [ -77.495475769042912, -5.545848846435547 ], [ -77.495948791503849, -5.542204856872559 ], [ -77.495841979980469, -5.540948867797852 ], [ -77.495140075683594, -5.538753986358643 ], [ -77.493270874023381, -5.535274028778076 ], [ -77.492973327636719, -5.534210205078125 ], [ -77.489921569824219, -5.528030872344971 ], [ -77.489051818847656, -5.525404930114632 ], [ -77.488677978515625, -5.522397041320744 ], [ -77.489173889160099, -5.514576911926213 ], [ -77.489639282226562, -5.511311054229679 ], [ -77.490829467773438, -5.508413791656437 ], [ -77.492546081542969, -5.50591421127308 ], [ -77.492919921874943, -5.504168033599854 ], [ -77.492866516113281, -5.502541065216008 ], [ -77.492584228515625, -5.501468181610051 ], [ -77.492752075195312, -5.499693870544434 ], [ -77.492607116699162, -5.494461059570312 ], [ -77.492271423339844, -5.493515968322754 ], [ -77.49169921875, -5.489693164825439 ], [ -77.491584777831974, -5.486947059631348 ], [ -77.492446899413949, -5.484150886535588 ], [ -77.494422912597599, -5.480780124664307 ], [ -77.497749328613281, -5.477106094360295 ], [ -77.498146057128849, -5.476968765258789 ], [ -77.499893188476562, -5.475450992584229 ], [ -77.509445190429688, -5.46325778961176 ], [ -77.512336730957031, -5.460099220275822 ], [ -77.518272399902287, -5.454244136810303 ], [ -77.522254943847656, -5.450866222381592 ], [ -77.524673461914006, -5.446978092193547 ], [ -77.525650024414062, -5.44628715515131 ], [ -77.527458190917969, -5.445655822753906 ], [ -77.528999328613281, -5.444664955139103 ], [ -77.535018920898438, -5.438629150390568 ], [ -77.537811279296818, -5.43671989440918 ], [ -77.539497375488281, -5.43477821350092 ], [ -77.541893005371094, -5.431242942810002 ], [ -77.544868469238224, -5.42865610122675 ], [ -77.553009033203125, -5.420477867126408 ], [ -77.554367065429688, -5.419532775878906 ], [ -77.557914733886719, -5.417846202850342 ], [ -77.564170837402344, -5.411674022674561 ], [ -77.564697265625, -5.411508083343506 ], [ -77.567695617675781, -5.411523818969727 ], [ -77.568634033203068, -5.410949230194035 ], [ -77.571083068847656, -5.408481121063176 ], [ -77.572181701660156, -5.407817840576115 ], [ -77.574241638183537, -5.407357215881291 ], [ -77.578056335449162, -5.406997203826904 ], [ -77.581550598144531, -5.405688762664795 ], [ -77.585098266601562, -5.402375221252441 ], [ -77.589118957519474, -5.397144794464054 ], [ -77.591751098632812, -5.394340991973877 ], [ -77.596817016601562, -5.390233993530217 ], [ -77.600410461425781, -5.387715816497803 ], [ -77.60369873046875, -5.385921955108643 ], [ -77.606063842773438, -5.38522481918335 ], [ -77.608055114746094, -5.384934902191162 ], [ -77.610786437988224, -5.384951114654541 ], [ -77.616424560546761, -5.386119842529297 ], [ -77.62115478515625, -5.388267040252629 ], [ -77.624504089355412, -5.389500141143799 ], [ -77.630416870117131, -5.391418933868351 ], [ -77.635833740234375, -5.392749786376896 ], [ -77.638214111328125, -5.393997192382756 ], [ -77.646125793457031, -5.399129867553711 ], [ -77.648689270019531, -5.40034008026123 ], [ -77.650817871093693, -5.400881767272949 ], [ -77.656387329101562, -5.400876045226994 ], [ -77.658912658691406, -5.401278972625732 ], [ -77.661857604980469, -5.402269840240422 ], [ -77.667694091796875, -5.403800010681096 ], [ -77.672966003417912, -5.406134128570557 ], [ -77.679115295410156, -5.408069133758545 ], [ -77.684486389160099, -5.409199237823486 ], [ -77.687309265136719, -5.409224033355656 ], [ -77.689933776855412, -5.408853054046631 ], [ -77.693496704101562, -5.410733222961426 ], [ -77.694450378417969, -5.411045074462891 ], [ -77.694801330566349, -5.410935878753662 ], [ -77.694541931152344, -5.403456211090088 ], [ -77.694648742675781, -5.395349025726262 ], [ -77.695144653320312, -5.391424179077148 ], [ -77.696296691894531, -5.387642860412541 ], [ -77.696388244628906, -5.385354995727482 ], [ -77.696144104003849, -5.379445075988656 ], [ -77.695365905761662, -5.376132965087891 ], [ -77.693061828613281, -5.370079994201603 ], [ -77.691490173339844, -5.36171817779541 ], [ -77.690185546875, -5.357116222381592 ], [ -77.687713623046875, -5.35008716583252 ], [ -77.684906005859375, -5.343700885772705 ], [ -77.683502197265625, -5.339517116546631 ], [ -77.681274414062386, -5.334464073181096 ], [ -77.679000854492188, -5.327752113342228 ], [ -77.67852783203125, -5.325068950653076 ], [ -77.677940368652344, -5.319207191467285 ], [ -77.677719116210881, -5.318593978881779 ], [ -77.678237915039062, -5.303227901458683 ], [ -77.677528381347599, -5.295062065124455 ], [ -77.677604675292969, -5.285510063171387 ], [ -77.677986145019531, -5.28242015838623 ], [ -77.678901672363281, -5.277904987335205 ], [ -77.681488037109375, -5.268603801727295 ], [ -77.681663513183594, -5.2670578956604 ], [ -77.683219909667969, -5.260708808898869 ], [ -77.684600830078068, -5.257511138915959 ], [ -77.684600830078068, -5.25705099105835 ], [ -77.685058593749943, -5.256470203399601 ], [ -77.68719482421875, -5.251492023468018 ], [ -77.68947601318348, -5.245164871215763 ], [ -77.692054748535156, -5.235304832458496 ], [ -77.692550659179688, -5.232554912567139 ], [ -77.693855285644474, -5.228628158569336 ], [ -77.696197509765625, -5.218423843383789 ], [ -77.698150634765568, -5.213066101074162 ], [ -77.698974609375, -5.209854125976506 ], [ -77.701766967773381, -5.203064918518066 ], [ -77.702651977539062, -5.20035982131958 ], [ -77.703689575195312, -5.19625282287592 ], [ -77.704132080078068, -5.192689895629883 ], [ -77.70458984375, -5.191170215606633 ], [ -77.705146789550781, -5.18771505355835 ], [ -77.706047058105412, -5.184162139892578 ], [ -77.706291198730469, -5.183887958526611 ], [ -77.707229614257812, -5.180713176727295 ], [ -77.708518981933537, -5.17487001419056 ], [ -77.710189819335938, -5.17022705078125 ], [ -77.710990905761719, -5.167295932769775 ], [ -77.712570190429688, -5.158606052398625 ], [ -77.714698791503906, -5.14356803894043 ], [ -77.714790344238281, -5.135832786560059 ], [ -77.715789794921818, -5.123167037963867 ], [ -77.715507507324162, -5.108810901641846 ], [ -77.715736389160156, -5.108538150787297 ], [ -77.715309143066349, -5.106986045837402 ], [ -77.715087890625, -5.103860855102539 ], [ -77.715003967285099, -5.094470977783203 ], [ -77.715248107910156, -5.088398933410645 ], [ -77.717010498046818, -5.078152179717961 ], [ -77.717102050781193, -5.075305938720703 ], [ -77.71734619140625, -5.074419021606445 ], [ -77.717979431152287, -5.066256999969482 ], [ -77.71923828125, -5.058191776275635 ], [ -77.719230651855355, -5.056807994842529 ], [ -77.71990966796875, -5.052070140838623 ], [ -77.720115661621094, -5.048211097717228 ], [ -77.720558166503849, -5.045949935913029 ], [ -77.720993041992188, -5.037398815154972 ], [ -77.722175598144474, -5.029081821441594 ], [ -77.72357177734375, -5.023942947387695 ], [ -77.725364685058594, -5.020221233367863 ], [ -77.726676940917969, -5.016492843627873 ], [ -77.727600097656193, -5.011890888214111 ], [ -77.727851867675781, -5.008128166198674 ], [ -77.728302001953125, -5.005218029022217 ], [ -77.728935241699162, -5.002622127532959 ], [ -77.729995727539006, -4.999888896942139 ], [ -77.730308532714844, -4.997104167938232 ], [ -77.731529235839787, -4.992101192474365 ], [ -77.732612609863281, -4.990561008453312 ], [ -77.733512878417912, -4.989797115325928 ], [ -77.735847473144531, -4.988650798797607 ], [ -77.737174987792969, -4.987306118011361 ], [ -77.739654541015625, -4.987007141113281 ], [ -77.740097045898381, -4.98593807220459 ], [ -77.740707397460938, -4.985167980194092 ], [ -77.740425109863281, -4.983940124511719 ], [ -77.737388610839844, -4.979689121246281 ], [ -77.736602783203125, -4.977090835571232 ], [ -77.735481262207031, -4.970866203308105 ], [ -77.735137939453068, -4.970471858978271 ], [ -77.735145568847599, -4.969314098358097 ], [ -77.734024047851562, -4.966066837310791 ], [ -77.733886718749943, -4.956715106964111 ], [ -77.735404968261719, -4.950366020202637 ], [ -77.736480712890568, -4.948417186737004 ], [ -77.738609313964844, -4.94610404968256 ], [ -77.7412109375, -4.943833827972412 ], [ -77.746788024902287, -4.939726829528752 ], [ -77.749176025390511, -4.938388824462891 ], [ -77.75274658203125, -4.936848163604736 ], [ -77.754547119140625, -4.93654012680048 ], [ -77.757270812988224, -4.934867858886719 ], [ -77.759765625, -4.932515144348145 ], [ -77.763740539550724, -4.927457809448242 ], [ -77.765602111816406, -4.923564910888558 ], [ -77.768402099609375, -4.915266990661621 ], [ -77.769729614257812, -4.912107944488525 ], [ -77.771232604980469, -4.909553050994873 ], [ -77.774765014648438, -4.90472412109375 ], [ -77.776405334472656, -4.901996135711613 ], [ -77.777572631835881, -4.898015975952148 ], [ -77.777549743652344, -4.896469116210881 ], [ -77.778282165527344, -4.894299030303841 ], [ -77.779090881347599, -4.892921924591064 ], [ -77.781646728515625, -4.889684200286865 ], [ -77.783248901367188, -4.885875225067082 ], [ -77.793243408203125, -4.873651981353646 ], [ -77.796852111816349, -4.868089199066105 ], [ -77.801010131835938, -4.860428810119572 ], [ -77.801895141601506, -4.857820987701302 ], [ -77.804397583007812, -4.853445053100586 ], [ -77.8046875, -4.851169109344369 ], [ -77.805534362792912, -4.850080966949406 ], [ -77.80584716796875, -4.848036766052246 ], [ -77.806381225585881, -4.84728479385376 ], [ -77.806907653808594, -4.845294952392578 ], [ -77.807258605957031, -4.84325122833252 ], [ -77.807441711425724, -4.839111804962158 ], [ -77.807304382324219, -4.832201957702637 ], [ -77.806404113769531, -4.826793193817139 ], [ -77.80511474609375, -4.821881771087646 ], [ -77.802947998046818, -4.815087795257568 ], [ -77.801277160644531, -4.81102800369257 ], [ -77.799201965332031, -4.807475090026799 ], [ -77.79278564453125, -4.799089908599854 ], [ -77.790878295898438, -4.794218063354492 ], [ -77.790458679199162, -4.791988849639893 ], [ -77.790245056152287, -4.787362098693848 ], [ -77.790580749511719, -4.783466815948429 ], [ -77.791252136230469, -4.781068801879883 ], [ -77.793228149414006, -4.776381015777588 ], [ -77.794197082519531, -4.773068904876709 ], [ -77.794692993164062, -4.770366191863957 ], [ -77.794822692871037, -4.764383792877197 ], [ -77.794326782226562, -4.758872985839844 ], [ -77.793724060058594, -4.756906032562256 ], [ -77.791648864746094, -4.75206279754633 ], [ -77.787635803222656, -4.744029045104924 ], [ -77.78560638427723, -4.740429878234863 ], [ -77.780769348144531, -4.73317813873291 ], [ -77.775070190429688, -4.726287841796875 ], [ -77.769859313964787, -4.716828823089543 ], [ -77.767608642578125, -4.713386058807373 ], [ -77.764678955078125, -4.710471153259221 ], [ -77.757247924804631, -4.705121994018498 ], [ -77.7520751953125, -4.700904846191406 ], [ -77.749053955078068, -4.697790145874023 ], [ -77.743362426757812, -4.691180229187012 ], [ -77.738212585449219, -4.686285018920898 ], [ -77.733802795410099, -4.680428981781006 ], [ -77.731063842773438, -4.676183223724308 ], [ -77.727340698242188, -4.669582843780461 ], [ -77.723823547363281, -4.665341854095402 ], [ -77.721595764160099, -4.663016796112061 ], [ -77.719764709472656, -4.661297798156681 ], [ -77.718009948730469, -4.660220146179142 ], [ -77.715080261230469, -4.658903121948242 ], [ -77.711380004882756, -4.657733917236328 ], [ -77.70684814453125, -4.657255172729492 ], [ -77.695907592773438, -4.657442092895394 ], [ -77.693862915038949, -4.65715312957758 ], [ -77.692123413085881, -4.656580924987736 ], [ -77.689064025878849, -4.654983043670597 ], [ -77.686904907226562, -4.653292179107666 ], [ -77.684204101562443, -4.65021276473999 ], [ -77.679328918457031, -4.643787860870361 ], [ -77.675712585449162, -4.636931896209717 ], [ -77.672187805175724, -4.631568908691406 ], [ -77.670379638671818, -4.628368854522705 ], [ -77.665756225585938, -4.619384765625 ], [ -77.66357421875, -4.614323139190674 ], [ -77.661933898925781, -4.611836910247746 ], [ -77.657173156738281, -4.599139213562012 ], [ -77.655746459960938, -4.596785068511906 ], [ -77.654891967773438, -4.592974185943547 ], [ -77.654357910156193, -4.592506885528564 ], [ -77.653854370117188, -4.58519792556757 ], [ -77.653594970703068, -4.577364921569824 ], [ -77.653961181640625, -4.565423965454102 ], [ -77.653411865234318, -4.563429832458439 ], [ -77.653396606445256, -4.560680866241398 ], [ -77.652870178222656, -4.559400081634521 ], [ -77.652885437011719, -4.557105064392033 ], [ -77.652313232421875, -4.555850028991699 ], [ -77.652076721191349, -4.54896688461298 ], [ -77.650688171386719, -4.544101238250732 ], [ -77.650169372558537, -4.538382053375244 ], [ -77.648841857910099, -4.532429218292236 ], [ -77.64837646484375, -4.52416276931757 ], [ -77.647804260253906, -4.520767211914062 ], [ -77.646987915039062, -4.517643928527832 ], [ -77.6456298828125, -4.513735771179142 ], [ -77.643188476562443, -4.508295059204102 ], [ -77.64202880859375, -4.506556034088078 ], [ -77.640907287597599, -4.505403041839543 ], [ -77.63885498046875, -4.503964900970402 ], [ -77.636627197265568, -4.502742767333984 ], [ -77.634315490722656, -4.501766204833984 ], [ -77.631912231445312, -4.501060962677002 ], [ -77.628334045410099, -4.500279903411865 ], [ -77.62628173828125, -4.500249862670842 ], [ -77.623809814453125, -4.499825954437256 ], [ -77.620704650878849, -4.499087810516357 ], [ -77.617668151855469, -4.498021125793457 ], [ -77.614799499511662, -4.496640205383301 ], [ -77.612892150878849, -4.49465894699091 ], [ -77.606903076171875, -4.491309165954533 ], [ -77.603782653808594, -4.488988876342717 ], [ -77.600173950195312, -4.485452175140324 ], [ -77.596931457519531, -4.481892108917236 ], [ -77.596076965331974, -4.480838775634709 ], [ -77.595634460449105, -4.479275226593018 ], [ -77.593490600585938, -4.476880073547306 ], [ -77.592498779296875, -4.473114967346191 ], [ -77.585578918457031, -4.458608150482178 ], [ -77.585670471191406, -4.457487106323242 ], [ -77.584678649902344, -4.456459045410156 ], [ -77.582946777343693, -4.453219890594482 ], [ -77.57656097412098, -4.437716960906926 ], [ -77.575454711914062, -4.433690071105957 ], [ -77.575416564941293, -4.432089805602971 ], [ -77.571640014648438, -4.42002010345459 ], [ -77.570320129394531, -4.414909839630127 ], [ -77.568695068359375, -4.406085014343262 ], [ -77.567680358886662, -4.397178173065186 ], [ -77.567695617675781, -4.393725872039795 ], [ -77.568084716796875, -4.388906955718994 ], [ -77.568672180175781, -4.387677192687988 ], [ -77.56878662109375, -4.347900867462158 ], [ -77.569366455078125, -4.345467090606689 ], [ -77.571594238281193, -4.339431762695256 ], [ -77.573005676269474, -4.332260131835881 ], [ -77.576210021972656, -4.321965217590332 ], [ -77.57745361328125, -4.31519079208374 ], [ -77.578338623046818, -4.31258583068842 ], [ -77.581649780273438, -4.290557861328125 ], [ -77.582923889160099, -4.276609897613525 ], [ -77.583496093749943, -4.275124073028564 ], [ -77.583259582519531, -4.269153118133545 ], [ -77.583610534667912, -4.260213851928654 ], [ -77.582794189453125, -4.258055210113412 ], [ -77.582809448242188, -4.255760192871094 ], [ -77.582229614257812, -4.255083084106388 ], [ -77.58148193359375, -4.250793933868408 ], [ -77.579055786132812, -4.227260112762394 ], [ -77.579353332519531, -4.225612163543701 ], [ -77.579177856445312, -4.222866058349553 ], [ -77.576904296875, -4.212317943572998 ], [ -77.5736083984375, -4.20265007019043 ], [ -77.572448730468693, -4.197266101837158 ], [ -77.5677490234375, -4.185063838958683 ], [ -77.566001892089844, -4.179846763610783 ], [ -77.564285278320312, -4.173641204833984 ], [ -77.563728332519531, -4.170708179473877 ], [ -77.563339233398438, -4.167056083679142 ], [ -77.562438964843693, -4.153992176055908 ], [ -77.561965942382756, -4.149203777313232 ], [ -77.561393737792912, -4.145805835723877 ], [ -77.558830261230469, -4.134374141693115 ], [ -77.555992126464844, -4.125632762908936 ], [ -77.554039001464787, -4.120235919952393 ], [ -77.552635192871094, -4.117348194122314 ], [ -77.551940917968693, -4.115162849426156 ], [ -77.548606872558537, -4.10224723815918 ], [ -77.547653198242131, -4.097987174987793 ], [ -77.545730590820256, -4.086668968200627 ], [ -77.544441223144531, -4.082496166229191 ], [ -77.543342590331974, -4.077322006225472 ], [ -77.540779113769474, -4.059804916381836 ], [ -77.540222167968693, -4.054096221923771 ], [ -77.540000915527287, -4.047677993774414 ], [ -77.540496826171818, -4.034572124481201 ], [ -77.540214538574162, -4.018486022949219 ], [ -77.539360046386662, -4.009099006652775 ], [ -77.538703918457031, -4.004788875579834 ], [ -77.537887573242188, -4.002630233764592 ], [ -77.537979125976562, -4.000823020935059 ], [ -77.538726806640625, -3.9978830814361 ], [ -77.542335510253906, -3.986646890640202 ], [ -77.543243408203068, -3.982368946075383 ], [ -77.54388427734375, -3.977586984634343 ], [ -77.545028686523438, -3.962923049926758 ], [ -77.544967651367131, -3.943383932113647 ], [ -77.545196533203125, -3.936929941177368 ], [ -77.545967102050781, -3.930792093276921 ], [ -77.547454833984318, -3.925725936889648 ], [ -77.549179077148381, -3.920967102050668 ], [ -77.55169677734375, -3.915056943893376 ], [ -77.551986694335938, -3.913006067275944 ], [ -77.553939819335881, -3.907610893249512 ], [ -77.553932189941349, -3.90646505355835 ], [ -77.554992675781193, -3.90366792678833 ], [ -77.559082031249943, -3.896488904952946 ], [ -77.561393737792912, -3.89308404922474 ], [ -77.566871643066406, -3.887219905853215 ], [ -77.568550109863168, -3.885072946548462 ], [ -77.570892333984375, -3.880338907241764 ], [ -77.572761535644531, -3.877728939056396 ], [ -77.576278686523438, -3.87026309967041 ], [ -77.581619262695312, -3.86198711395258 ], [ -77.582199096679688, -3.860250949859562 ], [ -77.583496093749943, -3.858076095580941 ], [ -77.591476440429688, -3.849883079528752 ], [ -77.597702026367131, -3.844160079956055 ], [ -77.603782653808594, -3.83934211730957 ], [ -77.616355895996094, -3.830185890197697 ], [ -77.619140625, -3.827375888824349 ], [ -77.621391296386719, -3.824206113815308 ], [ -77.6285400390625, -3.817109107971135 ], [ -77.631645202636719, -3.812577962875366 ], [ -77.633758544921818, -3.808486938476562 ], [ -77.635116577148324, -3.804848909378052 ], [ -77.636459350585938, -3.799724102020207 ], [ -77.638092041015625, -3.79593110084528 ], [ -77.639022827148381, -3.789799928665104 ], [ -77.640365600585938, -3.786878108978271 ], [ -77.641212463378849, -3.782835006713867 ], [ -77.642341613769474, -3.780066013336125 ], [ -77.642593383789062, -3.776631116867009 ], [ -77.642601013183594, -3.773613929748478 ], [ -77.642356872558537, -3.771101951599064 ], [ -77.640937805175781, -3.765547990798837 ], [ -77.639060974121094, -3.760085105895996 ], [ -77.637123107910156, -3.755419015884286 ], [ -77.636222839355469, -3.751617908477783 ], [ -77.633087158203068, -3.74395489692688 ], [ -77.630790710449162, -3.737001895904541 ], [ -77.629600524902344, -3.73068189620966 ], [ -77.627876281738281, -3.724721908569279 ], [ -77.627883911132812, -3.723337888717651 ], [ -77.62615966796875, -3.717369079589844 ], [ -77.6260986328125, -3.715082883834782 ], [ -77.625251770019531, -3.711498022079468 ], [ -77.624511718749943, -3.70186710357666 ], [ -77.62420654296875, -3.691293954849186 ], [ -77.624267578125, -3.678648948669434 ], [ -77.624801635742131, -3.67270302772522 ], [ -77.625366210937443, -3.670892953872624 ], [ -77.625343322753906, -3.666980028152466 ], [ -77.625595092773438, -3.664239883422852 ], [ -77.627555847167912, -3.652441024780217 ], [ -77.628517150878849, -3.649888992309457 ], [ -77.630332946777287, -3.646675109863224 ], [ -77.631027221679688, -3.643783092498722 ], [ -77.634002685546875, -3.638885021209717 ], [ -77.636390686035156, -3.63317608833313 ], [ -77.642608642578125, -3.621427059173527 ], [ -77.647529602050781, -3.607839107513428 ], [ -77.653221130371037, -3.596327066421452 ], [ -77.656890869140625, -3.58741307258606 ], [ -77.659736633300781, -3.58191990852356 ], [ -77.660537719726562, -3.579052925109863 ], [ -77.664001464843693, -3.572065114974976 ], [ -77.669227600097599, -3.567090034484863 ], [ -77.672348022460938, -3.565670013427734 ], [ -77.676986694335938, -3.562340021133366 ], [ -77.677650451660043, -3.562273979187012 ], [ -77.68157958984375, -3.559144973754883 ], [ -77.683914184570256, -3.558234930038338 ], [ -77.699996948242188, -3.547370910644531 ], [ -77.704803466796818, -3.544744968414307 ], [ -77.708175659179688, -3.542395114898625 ], [ -77.712646484374943, -3.538136005401611 ], [ -77.718017578125, -3.532505989074707 ], [ -77.719978332519474, -3.530280113220215 ], [ -77.722267150878849, -3.526566982269173 ], [ -77.723701477050724, -3.525099039077702 ], [ -77.725402832031193, -3.521595954894906 ], [ -77.727424621581974, -3.51501202583313 ], [ -77.730300903320312, -3.500833034515381 ], [ -77.731376647949219, -3.497566938400212 ], [ -77.733230590820256, -3.494399070739746 ], [ -77.738868713378849, -3.487253904342538 ], [ -77.740104675292912, -3.484802007675057 ], [ -77.744621276855469, -3.478462934494019 ], [ -77.753128051757812, -3.465143918991089 ], [ -77.757034301757812, -3.457866907119751 ], [ -77.760108947753849, -3.451206922531128 ], [ -77.762168884277344, -3.445610046386719 ], [ -77.763618469238281, -3.440768957138062 ], [ -77.765457153320256, -3.43199896812439 ], [ -77.769630432128906, -3.41848611831665 ], [ -77.771636962890625, -3.409282922744637 ], [ -77.771896362304688, -3.404467105865479 ], [ -77.772743225097656, -3.40018892288208 ], [ -77.772438049316349, -3.398139953613224 ], [ -77.772994995117131, -3.394973993301278 ], [ -77.772964477539062, -3.388766050338745 ], [ -77.774337768554631, -3.375740051269474 ], [ -77.774528503417912, -3.368611097335815 ], [ -77.776237487792912, -3.359587907791138 ], [ -77.776985168457031, -3.352040052413884 ], [ -77.777427673339844, -3.340101957321053 ], [ -77.777259826660156, -3.323087930679264 ], [ -77.776100158691406, -3.316375970840397 ], [ -77.776046752929631, -3.307874917984009 ], [ -77.77630615234375, -3.29913401603693 ], [ -77.776649475097656, -3.293395042419377 ], [ -77.777145385742188, -3.289525032043457 ], [ -77.778305053710938, -3.283423900604134 ], [ -77.779617309570312, -3.279262065887451 ], [ -77.7803955078125, -3.273803949356079 ], [ -77.780433654785099, -3.267595052719059 ], [ -77.779853820800724, -3.250581979751587 ], [ -77.779800415039062, -3.2430100440979 ], [ -77.780082702636719, -3.239576101303101 ], [ -77.7808837890625, -3.234340906143132 ], [ -77.781455993652344, -3.232839107513428 ], [ -77.781990051269531, -3.223664999008179 ], [ -77.782546997070256, -3.221008062362614 ], [ -77.782470703125, -3.205374956130981 ], [ -77.783012390136662, -3.200809955596924 ], [ -77.782989501953125, -3.195749998092651 ], [ -77.782646179199162, -3.191169023513794 ], [ -77.781219482421761, -3.182780027389526 ], [ -77.781150817871094, -3.178641080856266 ], [ -77.781761169433537, -3.170833587646484 ], [ -77.781814575195312, -3.170152902603149 ], [ -77.782600402832031, -3.163311004638672 ], [ -77.783187866210881, -3.162071943283024 ], [ -77.784523010253849, -3.153446912765503 ], [ -77.785102844238224, -3.151945114135685 ], [ -77.786743164062443, -3.135478973388672 ], [ -77.788360595703068, -3.126898050308228 ], [ -77.78839111328125, -3.124367952346802 ], [ -77.789222717285099, -3.121257066726685 ], [ -77.789535522460938, -3.119230985641366 ], [ -77.789451599121094, -3.114161968231201 ], [ -77.79052734375, -3.10093092918396 ], [ -77.7908935546875, -3.061162948608342 ], [ -77.791717529296875, -3.056406021118107 ], [ -77.791671752929688, -3.053875923156681 ], [ -77.792694091796875, -3.048460960388184 ], [ -77.799079895019531, -3.030011892318669 ], [ -77.801048278808537, -3.0251429080962 ], [ -77.804351806640625, -3.020745038986149 ], [ -77.805183410644531, -3.019114971160889 ], [ -77.806266784667912, -3.016074895858765 ], [ -77.807144165039006, -3.011581897735596 ], [ -77.807945251464844, -3.004975080490112 ], [ -77.807846069335938, -3.003539085388184 ], [ -77.806983947753906, -3.000415086746102 ], [ -77.807548522949219, -2.998398065567017 ], [ -77.80731201171875, -2.995534896850529 ], [ -77.808174133300724, -2.994021892547607 ], [ -77.810676574706974, -2.9914870262146 ], [ -77.812431335449219, -2.988934993743896 ], [ -77.810989379882812, -2.98843598365778 ], [ -77.812911987304688, -2.984379053115845 ], [ -77.788619995117188, -2.975858926773014 ], [ -77.751060485839787, -2.96267390251154 ], [ -77.594879150390625, -2.907696962356567 ], [ -77.593353271484375, -2.907161951065007 ], [ -77.590576171874943, -2.906183958053475 ], [ -77.499343872070312, -2.873297929763794 ], [ -77.41217041015625, -2.848361968994084 ], [ -77.409675598144531, -2.847646951675415 ], [ -77.391609191894474, -2.842473030090275 ], [ -77.375122070312443, -2.837750911712646 ], [ -77.367538452148438, -2.835577964782715 ], [ -77.324256896972656, -2.821023941039982 ], [ -77.188018798828068, -2.775099039077702 ], [ -77.182273864746094, -2.773161888122502 ], [ -77.162208557128906, -2.76639795303339 ], [ -77.020652770996037, -2.717165946960449 ], [ -76.964408874511719, -2.69756293296814 ], [ -76.905143737792912, -2.676884889602547 ], [ -76.705360412597599, -2.605681896209717 ], [ -76.704879760742131, -2.605506896972656 ], [ -76.702651977539062, -2.604711055755558 ], [ -76.689712524414006, -2.600081920623722 ], [ -76.678092956542912, -2.595921039581242 ], [ -76.661216735839787, -2.589875936508179 ], [ -76.651924133300781, -2.586637973785344 ], [ -76.648033142089787, -2.585274934768677 ], [ -76.644561767578125, -2.584064006805363 ], [ -76.631362915039006, -2.577845096588078 ], [ -76.624839782714844, -2.570895910262948 ], [ -76.623748779296875, -2.569725990295353 ], [ -76.623222351074219, -2.569165945053101 ], [ -76.622230529785156, -2.568113088607788 ], [ -76.620819091796875, -2.566608905792236 ], [ -76.620277404785099, -2.566030025482178 ], [ -76.618782043456974, -2.564429998397827 ], [ -76.613655090332031, -2.558953046798706 ], [ -76.604827880859318, -2.552290916442814 ], [ -76.542900085449219, -2.505361080169621 ], [ -76.459381103515625, -2.442066907882634 ], [ -76.3935546875, -2.392010927200261 ], [ -76.388298034667969, -2.388082027435303 ], [ -76.356986999511662, -2.364679098129272 ], [ -76.326652526855412, -2.342001914978027 ], [ -76.318588256835938, -2.335971117019596 ], [ -76.248992919921875, -2.283816099166756 ], [ -76.211692810058594, -2.255779981613159 ], [ -76.211479187011719, -2.255618095397892 ], [ -76.210281372070312, -2.254715919494572 ], [ -76.208885192871037, -2.253667116165161 ], [ -76.190383911132756, -2.2397620677948 ], [ -76.163970947265568, -2.219903945922852 ], [ -76.129516601562443, -2.193938016891479 ], [ -76.055496215820312, -2.136936902999878 ], [ -75.858642578125, -1.906221985816899 ], [ -75.85994720458973, -1.906015038490182 ], [ -75.8612060546875, -1.905815958976689 ], [ -75.861679077148438, -1.905861973762512 ], [ -75.862319946289006, -1.905923962593022 ], [ -75.862548828125, -1.905720949172917 ], [ -75.862533569335938, -1.90561401844019 ], [ -75.862442016601562, -1.905019044876099 ], [ -75.860870361328068, -1.903049945831299 ], [ -75.82470703125, -1.859882950782776 ], [ -75.823944091796875, -1.858970999717712 ], [ -75.800132751464787, -1.830549955368042 ], [ -75.798553466796875, -1.828585982322693 ], [ -75.792831420898438, -1.821449995040894 ], [ -75.763290405273438, -1.786180019378605 ], [ -75.760597229003906, -1.782919049263 ], [ -75.751808166503906, -1.771381974220276 ], [ -75.717018127441406, -1.72573101520527 ], [ -75.660362243652344, -1.652351975440979 ], [ -75.611717224121094, -1.589349031448364 ], [ -75.607002258300724, -1.583690047264099 ], [ -75.60174560546875, -1.577502012252751 ], [ -75.601631164550781, -1.577363014221191 ], [ -75.601394653320256, -1.577075958251953 ], [ -75.601013183593693, -1.576635956764108 ], [ -75.589439392089844, -1.562950015067997 ], [ -75.589790344238281, -1.562394022941589 ], [ -75.589874267578125, -1.561388969421387 ], [ -75.589584350585938, -1.560148954391423 ], [ -75.589477539062443, -1.559700012207031 ], [ -75.588821411132812, -1.558612942695561 ], [ -75.588050842285099, -1.557338953018075 ], [ -75.586189270019531, -1.555328965187073 ], [ -75.583984375, -1.554046034812927 ], [ -75.583305358886719, -1.553091049194336 ], [ -75.582908630371094, -1.552535057067871 ], [ -75.582855224609375, -1.552250027656498 ], [ -75.582733154296875, -1.551648020744267 ], [ -75.582893371581974, -1.547775983810425 ], [ -75.582344055175781, -1.546918988227844 ], [ -75.581558227539006, -1.546445012092533 ], [ -75.580200195312443, -1.546519994735661 ], [ -75.577728271484318, -1.548992991447449 ], [ -75.575614929199219, -1.546471953392029 ], [ -75.569778442382812, -1.539523005485535 ], [ -75.569671630859375, -1.539391040802002 ], [ -75.568489074706974, -1.538231015205326 ], [ -75.56842041015625, -1.538133025169373 ], [ -75.5682373046875, -1.537879943847656 ], [ -75.567817687988224, -1.53727996349329 ], [ -75.566246032714844, -1.537139058113041 ], [ -75.564628601074219, -1.537598967552185 ], [ -75.562751770019474, -1.539875984191895 ], [ -75.562049865722656, -1.540730953216439 ], [ -75.559967041015625, -1.543249011039734 ], [ -75.559059143066349, -1.543722987174988 ], [ -75.558723449707031, -1.543899059295597 ], [ -75.558303833007812, -1.543836951255741 ], [ -75.557228088378849, -1.54367995262146 ], [ -75.555259704589844, -1.54341995716095 ], [ -75.554824829101562, -1.543684959411564 ], [ -75.553665161132812, -1.544386982917729 ], [ -75.553237915039006, -1.545902013778687 ], [ -75.553199768066406, -1.546249032020569 ], [ -75.553024291992131, -1.547994017601013 ], [ -75.552978515625, -1.548833012580815 ], [ -75.552925109863224, -1.549803972244263 ], [ -75.552055358886719, -1.551812052726689 ], [ -75.551658630371094, -1.552194952964783 ], [ -75.550437927246094, -1.553365945815983 ], [ -75.549606323242131, -1.553575992584229 ], [ -75.549331665039006, -1.553630948066711 ], [ -75.548698425292969, -1.553753972053528 ], [ -75.548248291015625, -1.553845047950745 ], [ -75.548080444335881, -1.55387902259821 ], [ -75.546600341796875, -1.552317976951599 ], [ -75.546478271484375, -1.552189946174508 ], [ -75.546409606933594, -1.552111029624939 ], [ -75.545913696289062, -1.550940990447998 ], [ -75.545242309570312, -1.549339056015015 ], [ -75.544052124023438, -1.544778943061829 ], [ -75.54376220703125, -1.543668985366821 ], [ -75.542182922363168, -1.53757905960083 ], [ -75.533187866210881, -1.502609968185311 ], [ -75.515373229980412, -1.43352901935566 ], [ -75.514518737792912, -1.430235981941166 ], [ -75.511238098144531, -1.41755998134613 ], [ -75.446052551269418, -1.1680810451507 ], [ -75.446006774902344, -1.167888998985177 ], [ -75.445777893066406, -1.167032003402653 ], [ -75.445449829101506, -1.165799021720773 ], [ -75.442398071289006, -1.154248952865544 ], [ -75.414970397949219, -1.051429986953735 ], [ -75.392639160156193, -0.967748999595585 ], [ -75.390792846679688, -0.961148977279663 ], [ -75.388862609863281, -0.954289019107819 ], [ -75.388397216796875, -0.952679991722107 ], [ -75.388137817382756, -0.951728999614716 ], [ -75.387840270996094, -0.950698971748352 ], [ -75.387351989746094, -0.948989987373352 ], [ -75.385971069335824, -0.944079995155278 ], [ -75.385643005371094, -0.942900002002602 ], [ -75.384979248046875, -0.940539002418404 ], [ -75.384727478027287, -0.94071900844574 ], [ -75.380851745605469, -0.942409992218018 ], [ -75.380699157714787, -0.942469000816288 ], [ -75.376129150390568, -0.94477999210352 ], [ -75.365768432617188, -0.94999897480011 ], [ -75.343215942382756, -0.964359998702889 ], [ -75.340400695800781, -0.966199994087219 ], [ -75.328727722167912, -0.973819017410278 ], [ -75.321472167968693, -0.979389011859894 ], [ -75.321212768554631, -0.979598999023438 ], [ -75.320411682128906, -0.979959011077824 ], [ -75.314468383789062, -0.982630014419556 ], [ -75.312217712402287, -0.983301997184697 ], [ -75.306228637695256, -0.985089004039651 ], [ -75.291351318359318, -0.986621022224426 ], [ -75.289390563964844, -0.986819028854256 ], [ -75.286026000976449, -0.986630022525787 ], [ -75.285079956054688, -0.986580014228821 ], [ -75.282730102539062, -0.985728979110718 ], [ -75.270652770996037, -0.981369018554688 ], [ -75.260536193847599, -0.978228986263218 ], [ -75.250961303710938, -0.976670026779175 ], [ -75.247520446777344, -0.976109027862492 ], [ -75.241950988769474, -0.975969970226231 ], [ -75.233222961425781, -0.975769996643066 ], [ -75.220176696777344, -0.974931001663151 ], [ -75.201126098632756, -0.973699986934605 ], [ -75.200042724609375, -0.972360014915466 ], [ -75.200073242187443, -0.971369028091431 ], [ -75.200210571289062, -0.964368999004364 ], [ -75.200401306152344, -0.963841021060944 ], [ -75.201606750488224, -0.960591018199921 ], [ -75.205886840820256, -0.956771016120911 ], [ -75.214546203613281, -0.953199028968697 ], [ -75.215850830078125, -0.952378988265991 ], [ -75.216361999511719, -0.952068984508458 ], [ -75.218376159667912, -0.950789988040867 ], [ -75.219642639160099, -0.950008988380375 ], [ -75.227790832519531, -0.942959010601044 ], [ -75.233612060546875, -0.936060011386814 ], [ -75.235847473144474, -0.929790019989014 ], [ -75.235893249511719, -0.929220974445343 ], [ -75.235908508300781, -0.928969979286194 ], [ -75.236129760742131, -0.925840973854008 ], [ -75.234512329101506, -0.921468973159733 ], [ -75.23095703125, -0.915040016174316 ], [ -75.226615905761719, -0.906131029128971 ], [ -75.225158691406193, -0.900660991668644 ], [ -75.225822448730412, -0.888478994369507 ], [ -75.22589111328125, -0.887199997901917 ], [ -75.2259521484375, -0.886098980903625 ], [ -75.227203369140625, -0.879279971122685 ], [ -75.225967407226562, -0.870069980621338 ], [ -75.226119995117131, -0.866900026798248 ], [ -75.226242065429688, -0.866469025611877 ], [ -75.2269287109375, -0.864081025123596 ], [ -75.227241516113281, -0.863039016723576 ], [ -75.230140686035043, -0.858578979969025 ], [ -75.230438232421875, -0.858280003070831 ], [ -75.233787536621094, -0.854820013046208 ], [ -75.237548828124943, -0.853029012680054 ], [ -75.245918273925781, -0.846800029277802 ], [ -75.248329162597599, -0.843060016632023 ], [ -75.25048828125, -0.837000012397766 ], [ -75.250701904296875, -0.836220026016235 ], [ -75.251548767089844, -0.833490014076176 ], [ -75.251739501953125, -0.832890987396183 ], [ -75.251800537109375, -0.829930007457733 ], [ -75.250617980956974, -0.825809001922494 ], [ -75.249572753906193, -0.822198987007141 ], [ -75.248878479003906, -0.819819986820221 ], [ -75.247802734375, -0.816088974475747 ], [ -75.244476318359375, -0.805989980697632 ], [ -75.244209289550781, -0.802519023418427 ], [ -75.244819641113224, -0.79985898733139 ], [ -75.245162963867188, -0.798358976840973 ], [ -75.245941162109318, -0.795979976653996 ], [ -75.248245239257756, -0.794173002242928 ], [ -75.251327514648438, -0.792439997196084 ], [ -75.252418518066406, -0.791821002960205 ], [ -75.254486083984375, -0.790979981422367 ], [ -75.255653381347656, -0.790518999099731 ], [ -75.260070800781193, -0.79097002744669 ], [ -75.263168334960938, -0.789810001850128 ], [ -75.267608642578068, -0.786679029464665 ], [ -75.268218994140625, -0.786338984966278 ], [ -75.270111083984375, -0.785288989543915 ], [ -75.270462036132756, -0.785090029239598 ], [ -75.271797180175724, -0.782398998737335 ], [ -75.271629333496094, -0.779101014137268 ], [ -75.269088745117188, -0.775721013545933 ], [ -75.261756896972656, -0.769509971141815 ], [ -75.25811767578125, -0.764488995075226 ], [ -75.258056640624943, -0.761510014533997 ], [ -75.258926391601506, -0.759530007839203 ], [ -75.261619567871094, -0.757539987563973 ], [ -75.261787414550724, -0.757409989833775 ], [ -75.26519775390625, -0.754630029201508 ], [ -75.267250061035156, -0.752950012683868 ], [ -75.267860412597656, -0.75244802236557 ], [ -75.272232055664062, -0.748580992221832 ], [ -75.272392272949219, -0.748359978199005 ], [ -75.273582458496094, -0.746689021587372 ], [ -75.274986267089844, -0.744710981845856 ], [ -75.275489807128906, -0.74363100528717 ], [ -75.276908874511719, -0.740531027317047 ], [ -75.278266906738224, -0.7358700037002 ], [ -75.279792785644474, -0.729009985923767 ], [ -75.280082702636662, -0.725399971008244 ], [ -75.279907226562443, -0.720969021320286 ], [ -75.279418945312443, -0.71660000085825 ], [ -75.2784423828125, -0.712409019470215 ], [ -75.275001525878906, -0.708099007606506 ], [ -75.272491455078125, -0.705820024013462 ], [ -75.269187927246094, -0.702829003333989 ], [ -75.266876220703125, -0.701321005821171 ], [ -75.265007019042969, -0.700919985771122 ], [ -75.262367248535099, -0.700990021228733 ], [ -75.259689331054631, -0.700459003448486 ], [ -75.259529113769531, -0.70037001371378 ], [ -75.256881713867188, -0.69901001453394 ], [ -75.256446838378849, -0.69841897487629 ], [ -75.255729675292969, -0.697418987751007 ], [ -75.255203247070256, -0.694939017295781 ], [ -75.254966735839844, -0.691680014133453 ], [ -75.255287170410099, -0.689800024032593 ], [ -75.256233215332031, -0.688731014728489 ], [ -75.257087707519531, -0.687931001186314 ], [ -75.258140563964844, -0.6875 ], [ -75.261062622070312, -0.686398983001652 ], [ -75.262031555175781, -0.685449004173165 ], [ -75.264030456542969, -0.683480024337712 ], [ -75.270698547363281, -0.676178991794472 ], [ -75.274467468261662, -0.671500027179604 ], [ -75.274787902832031, -0.671099007129612 ], [ -75.274848937988224, -0.670780003070831 ], [ -75.274978637695312, -0.670068979263249 ], [ -75.27545166015625, -0.667559981346074 ], [ -75.275543212890625, -0.665009021758976 ], [ -75.275230407714787, -0.661989986896515 ], [ -75.274131774902344, -0.660359978675842 ], [ -75.270401000976562, -0.656899988651219 ], [ -75.267776489257756, -0.654949009418488 ], [ -75.267181396484375, -0.654500007629395 ], [ -75.263229370117131, -0.652159988880157 ], [ -75.262771606445312, -0.65172898769373 ], [ -75.26239013671875, -0.651368975639343 ], [ -75.261299133300724, -0.650358974933624 ], [ -75.261108398437443, -0.648478984832764 ], [ -75.261260986328125, -0.647809028625488 ], [ -75.261322021484318, -0.647539973258972 ], [ -75.261489868164006, -0.646770000457707 ], [ -75.26336669921875, -0.644469976425057 ], [ -75.263107299804631, -0.644318997859955 ], [ -75.26116943359375, -0.644670009613037 ], [ -75.260108947753906, -0.645420014858132 ], [ -75.259635925292969, -0.645190000534001 ], [ -75.258071899414006, -0.644439995288792 ], [ -75.258293151855469, -0.643431007862034 ], [ -75.258438110351506, -0.642731010913735 ], [ -75.259201049804631, -0.642170011997166 ], [ -75.259719848632812, -0.641789972782135 ], [ -75.259689331054631, -0.641228973865395 ], [ -75.259681701660099, -0.64103102684021 ], [ -75.25897216796875, -0.639880001544952 ], [ -75.257362365722656, -0.638899981975555 ], [ -75.255508422851449, -0.637539029121399 ], [ -75.254356384277287, -0.637139976024628 ], [ -75.252586364746094, -0.637879014015141 ], [ -75.251686096191349, -0.638059020042419 ], [ -75.251457214355469, -0.63890898227686 ], [ -75.251129150390625, -0.640148997306824 ], [ -75.251022338867131, -0.642049014568272 ], [ -75.250160217285099, -0.642799019813481 ], [ -75.249267578125, -0.642979025840702 ], [ -75.248497009277344, -0.641629993915558 ], [ -75.248237609863224, -0.641358971595764 ], [ -75.247009277343693, -0.640088975429478 ], [ -75.245231628417969, -0.640819013118687 ], [ -75.244918823242131, -0.642530024051666 ], [ -75.243927001953125, -0.644218981265908 ], [ -75.243316650390625, -0.644980013370514 ], [ -75.241508483886719, -0.644950985908508 ], [ -75.239906311035156, -0.644729971885681 ], [ -75.239212036132812, -0.644528985023499 ], [ -75.239158630371094, -0.644110023975315 ], [ -75.239036560058594, -0.643189013004303 ], [ -75.239402770996094, -0.641879022121429 ], [ -75.239517211914062, -0.641480028629303 ], [ -75.240272521972656, -0.640509009361267 ], [ -75.24053955078125, -0.640169024467468 ], [ -75.241439819335938, -0.638999998569489 ], [ -75.241996765136719, -0.638288974761849 ], [ -75.241859436035099, -0.637120008468571 ], [ -75.241172790527287, -0.636749982833805 ], [ -75.241058349609375, -0.635419011115914 ], [ -75.239028930664062, -0.634050011634827 ], [ -75.239860534667912, -0.631968975067139 ], [ -75.237319946289062, -0.630779027938843 ], [ -75.236480712890625, -0.629240989684945 ], [ -75.235481262206918, -0.628789007663727 ], [ -75.235176086425724, -0.628650009632111 ], [ -75.232826232910156, -0.628220021724701 ], [ -75.229896545410156, -0.62760001420969 ], [ -75.227989196777344, -0.627569973468781 ], [ -75.227310180664062, -0.627569973468781 ], [ -75.226669311523438, -0.627559006214142 ], [ -75.226539611816406, -0.626850008964482 ], [ -75.226486206054631, -0.626519024372044 ], [ -75.22637939453125, -0.625840008258763 ], [ -75.227188110351562, -0.625450015068054 ], [ -75.227935791015568, -0.625469028949738 ], [ -75.228630065917969, -0.625479996204376 ], [ -75.22943115234375, -0.624918997287637 ], [ -75.229690551757812, -0.624350011348724 ], [ -75.227729797363224, -0.62431097030634 ], [ -75.226539611816406, -0.623919010162354 ], [ -75.226272583007812, -0.622569978237152 ], [ -75.226150512695312, -0.622188985347748 ], [ -75.227310180664062, -0.620849013328552 ], [ -75.228851318359375, -0.619738996028843 ], [ -75.227920532226506, -0.617978990077916 ], [ -75.229400634765625, -0.616878986358529 ], [ -75.232063293457031, -0.616559982299805 ], [ -75.233612060546875, -0.615450024604797 ], [ -75.233970642089844, -0.614780008792877 ], [ -75.234420776367131, -0.613941013813019 ], [ -75.235931396484318, -0.612820029258671 ], [ -75.237411499023438, -0.612089991569519 ], [ -75.237449645996037, -0.610939025878849 ], [ -75.236808776855412, -0.609399020671844 ], [ -75.236862182617188, -0.608439028263092 ], [ -75.238105773925781, -0.606939017772675 ], [ -75.238372802734375, -0.606180012226105 ], [ -75.237510681152344, -0.605019986629372 ], [ -75.235939025878849, -0.604789972305241 ], [ -75.233329772949219, -0.604909002780857 ], [ -75.231376647949162, -0.605219006538391 ], [ -75.230422973632756, -0.604779005050659 ], [ -75.231491088867188, -0.603290021419525 ], [ -75.233268737792912, -0.602218985557556 ], [ -75.234809875488224, -0.600929021835327 ], [ -75.23797607421875, -0.601399004459267 ], [ -75.240676879882812, -0.601449012756348 ], [ -75.242507934570256, -0.600920021533966 ], [ -75.244102478027344, -0.600950002670288 ], [ -75.245681762695256, -0.600978970527649 ], [ -75.245491027831974, -0.599250018596649 ], [ -75.244430541992131, -0.597899973392487 ], [ -75.244010925292969, -0.597130000591278 ], [ -75.243682861328011, -0.596819996833744 ], [ -75.24359130859375, -0.596740007400456 ], [ -75.244949340820312, -0.596000015735626 ], [ -75.246078491210938, -0.595449984073639 ], [ -75.246368408203125, -0.594479024410191 ], [ -75.246589660644531, -0.59375 ], [ -75.246658325195312, -0.592028975486699 ], [ -75.246749877929688, -0.590130984783173 ], [ -75.246360778808594, -0.589160025119781 ], [ -75.24468994140625, -0.588559985160771 ], [ -75.244293212890625, -0.588171005249023 ], [ -75.244132995605412, -0.58740001916874 ], [ -75.243240356445312, -0.585659027099553 ], [ -75.242622375488224, -0.584999978542328 ], [ -75.242256164550781, -0.585101008415222 ], [ -75.241943359374943, -0.584939002990666 ], [ -75.241600036621094, -0.584549009799957 ], [ -75.2412109375, -0.584439992904549 ], [ -75.240776062011719, -0.584670007228851 ], [ -75.240287780761719, -0.584708988666478 ], [ -75.239906311035156, -0.584599018096924 ], [ -75.239906311035156, -0.584200024604741 ], [ -75.240577697753906, -0.583438992500305 ], [ -75.240959167480469, -0.583109021186829 ], [ -75.241477966308537, -0.582880973815861 ], [ -75.241836547851506, -0.582889974117279 ], [ -75.242118835449219, -0.58289897441864 ], [ -75.242752075195312, -0.58266901969904 ], [ -75.243278503417912, -0.582489013671875 ], [ -75.243621826171875, -0.582099020480996 ], [ -75.244071960449219, -0.581670999526921 ], [ -75.244697570800724, -0.581591010093632 ], [ -75.245452880859375, -0.581260025501194 ], [ -75.24578857421875, -0.580879986286163 ], [ -75.245903015136719, -0.580289006233158 ], [ -75.245750427246037, -0.579559981822911 ], [ -75.245697021484375, -0.578970015048981 ], [ -75.245773315429631, -0.578229010105076 ], [ -75.2464599609375, -0.577369987964573 ], [ -75.246688842773438, -0.577080011367798 ], [ -75.247489929199162, -0.576659023761749 ], [ -75.247520446777344, -0.576279997825623 ], [ -75.247406005859375, -0.575770020484924 ], [ -75.247406005859375, -0.57528901100153 ], [ -75.247650146484375, -0.574760019779148 ], [ -75.248016357421875, -0.574669003486633 ], [ -75.248458862304688, -0.574819028377533 ], [ -75.248756408691406, -0.574928998947144 ], [ -75.249267578125, -0.574940025806427 ], [ -75.249977111816293, -0.574509978294316 ], [ -75.25018310546875, -0.573830008506718 ], [ -75.249755859374943, -0.573390007019043 ], [ -75.249351501464844, -0.573378980159703 ], [ -75.249046325683594, -0.573270022869053 ], [ -75.248779296875, -0.57292997837061 ], [ -75.24806976318348, -0.572951018810215 ], [ -75.247291564941349, -0.573279023170358 ], [ -75.246742248535156, -0.573849022388401 ], [ -75.245857238769474, -0.575250029563904 ], [ -75.244812011718693, -0.576699972152653 ], [ -75.244369506835938, -0.577659010887146 ], [ -75.244499206542969, -0.578790009021759 ], [ -75.244308471679688, -0.579668998718262 ], [ -75.244132995605412, -0.580489993095341 ], [ -75.243499755859375, -0.580779016017914 ], [ -75.243057250976562, -0.580669999122506 ], [ -75.242698669433537, -0.580268979072514 ], [ -75.242767333984375, -0.579630970954895 ], [ -75.242973327636719, -0.579189002513885 ], [ -75.243103027343693, -0.578651010990086 ], [ -75.243171691894474, -0.578308999538422 ], [ -75.242820739746037, -0.577558994293213 ], [ -75.242813110351506, -0.577369987964573 ], [ -75.242767333984375, -0.576529026031494 ], [ -75.24249267578125, -0.575829029083252 ], [ -75.242019653320312, -0.575318992137795 ], [ -75.241462707519474, -0.574949026107788 ], [ -75.241432189941406, -0.574290990829468 ], [ -75.241188049316349, -0.573539018630981 ], [ -75.240211486816406, -0.573530018329507 ], [ -75.239486694335824, -0.573930978774968 ], [ -75.239028930664062, -0.574438989162331 ], [ -75.236480712890625, -0.577340006828308 ], [ -75.234298706054688, -0.578359007835388 ], [ -75.232490539550724, -0.577148973941746 ], [ -75.230789184570256, -0.575429975986481 ], [ -75.229866027832031, -0.573049008846226 ], [ -75.229118347167969, -0.570559978485107 ], [ -75.227386474609375, -0.569010019302368 ], [ -75.228126525878849, -0.56733900308609 ], [ -75.228408813476506, -0.566709995269775 ], [ -75.230209350585881, -0.566191017627659 ], [ -75.231163024902287, -0.56597900390625 ], [ -75.231292724609375, -0.565609991550389 ], [ -75.232208251953068, -0.563030004501229 ], [ -75.234458923339844, -0.561719000339451 ], [ -75.235877990722656, -0.55957901477808 ], [ -75.233688354492188, -0.558839976787567 ], [ -75.233108520507812, -0.558858990669194 ], [ -75.230842590332031, -0.558879017829838 ], [ -75.229560852050724, -0.556949019432068 ], [ -75.230728149414062, -0.554678976535797 ], [ -75.231300354003906, -0.554388999938965 ], [ -75.23333740234375, -0.553389012813568 ], [ -75.233146667480469, -0.552209973335266 ], [ -75.232933044433594, -0.550840973854008 ], [ -75.233230590820312, -0.550791025161743 ], [ -75.235580444335938, -0.550388991832676 ], [ -75.237991333007812, -0.549588978290501 ], [ -75.240058898925668, -0.548009991645813 ], [ -75.243103027343693, -0.546939015388432 ], [ -75.245918273925781, -0.546259999275208 ], [ -75.247962951660099, -0.544610023498535 ], [ -75.246299743652344, -0.543689012527466 ], [ -75.246017456054688, -0.543541014194489 ], [ -75.243766784667912, -0.542741000652313 ], [ -75.243507385253906, -0.541740000247898 ], [ -75.243362426757756, -0.541100025177002 ], [ -75.243286132812443, -0.540831029415074 ], [ -75.24285888671875, -0.539340019226074 ], [ -75.242752075195312, -0.538900017738285 ], [ -75.245231628417969, -0.537410020828247 ], [ -75.245323181152344, -0.537351012229919 ], [ -75.245040893554688, -0.537029027938843 ], [ -75.244758605957031, -0.536669015884286 ], [ -75.244041442871037, -0.535730004310608 ], [ -75.244506835937443, -0.535340011119843 ], [ -75.244789123535156, -0.535109996795597 ], [ -75.246002197265625, -0.534069001674652 ], [ -75.246307373046875, -0.53193998336792 ], [ -75.246330261230412, -0.531830012798309 ], [ -75.246437072753849, -0.529808998107853 ], [ -75.245758056640568, -0.529188990592957 ], [ -75.244796752929631, -0.528299987316075 ], [ -75.245307922363281, -0.527638971805573 ], [ -75.246238708496037, -0.526428997516632 ], [ -75.247161865234375, -0.526280999183655 ], [ -75.248977661132812, -0.525970995426178 ], [ -75.249176025390625, -0.524371027946415 ], [ -75.249298095703068, -0.523530006408578 ], [ -75.249389648437443, -0.522050976753121 ], [ -75.249443054199219, -0.521229982376099 ], [ -75.249481201171818, -0.520581007003727 ], [ -75.249526977539062, -0.519529998302403 ], [ -75.250198364257812, -0.519659996032658 ], [ -75.250602722167969, -0.519819021224976 ], [ -75.250877380371094, -0.519928991794529 ], [ -75.251838684082031, -0.519860029220581 ], [ -75.251869201660099, -0.519279003143254 ], [ -75.251716613769531, -0.518428981304112 ], [ -75.252540588378849, -0.517799973487797 ], [ -75.253227233886719, -0.517719984054509 ], [ -75.253936767578125, -0.518450021743718 ], [ -75.254180908203125, -0.519209027290344 ], [ -75.255332946777344, -0.519668996334076 ], [ -75.256378173828125, -0.51999902725214 ], [ -75.257431030273438, -0.520271003246307 ], [ -75.257865905761662, -0.521340012550297 ], [ -75.258270263671818, -0.522010028362217 ], [ -75.259330749511719, -0.522408008575439 ], [ -75.260787963867188, -0.522499978542271 ], [ -75.261322021484318, -0.523630023002625 ], [ -75.262161254882756, -0.524389028549194 ], [ -75.262977600097656, -0.525089025497437 ], [ -75.263130187988224, -0.525799989700317 ], [ -75.263977050781193, -0.526619970798436 ], [ -75.265487670898381, -0.527378976344949 ], [ -75.266693115234375, -0.527369976043644 ], [ -75.267631530761719, -0.527378976344949 ], [ -75.267768859863281, -0.528358995914459 ], [ -75.267349243164062, -0.529020011425018 ], [ -75.267066955566406, -0.529779016971531 ], [ -75.267250061035156, -0.53021901845932 ], [ -75.267288208007812, -0.530340015888214 ], [ -75.268257141113224, -0.53064101934433 ], [ -75.269088745117188, -0.530628979206085 ], [ -75.269546508789062, -0.530461013317051 ], [ -75.270172119140568, -0.530229985713959 ], [ -75.27020263671875, -0.529959022998696 ], [ -75.270256042480412, -0.529188990592957 ], [ -75.270446777343693, -0.528358995914459 ], [ -75.270500183105469, -0.528099000453892 ], [ -75.270561218261662, -0.527738988399506 ], [ -75.271469116210938, -0.527279019355774 ], [ -75.271759033203125, -0.526880025863647 ], [ -75.272079467773381, -0.526458978652954 ], [ -75.271858215332031, -0.525959014892521 ], [ -75.271148681640511, -0.52557897567749 ], [ -75.270072937011662, -0.525108993053379 ], [ -75.268600463867188, -0.524770021438599 ], [ -75.268478393554574, -0.524618983268738 ], [ -75.268013000488281, -0.523970007896423 ], [ -75.268013000488281, -0.523039996623993 ], [ -75.268867492675781, -0.522050976753121 ], [ -75.269699096679631, -0.521870970725956 ], [ -75.269866943359375, -0.521960020065251 ], [ -75.270782470703125, -0.522399008273965 ], [ -75.271728515625, -0.522540986537933 ], [ -75.272636413574219, -0.5222190022468 ], [ -75.272659301757756, -0.521489977836552 ], [ -75.272956848144474, -0.520969986915475 ], [ -75.274040222167969, -0.520770013332367 ], [ -75.274139404296875, -0.520748972892761 ], [ -75.274581909179574, -0.520020008087158 ], [ -75.274276733398381, -0.519450008869114 ], [ -75.273918151855469, -0.519010007381439 ], [ -75.273796081542912, -0.518850982189122 ], [ -75.273788452148381, -0.517780005931854 ], [ -75.274330139160156, -0.517168998718205 ], [ -75.274467468261662, -0.517059028148594 ], [ -75.275047302246037, -0.516598999500275 ], [ -75.275566101074219, -0.51596999168396 ], [ -75.275657653808594, -0.515848994255066 ], [ -75.275436401367131, -0.515190005302429 ], [ -75.274963378906136, -0.514289975166321 ], [ -75.274909973144531, -0.513449013233128 ], [ -75.274620056152344, -0.512849986553135 ], [ -75.274192810058537, -0.512399017810822 ], [ -75.273345947265625, -0.512648999690953 ], [ -75.272872924804688, -0.513209998607635 ], [ -75.272140502929688, -0.513719975948334 ], [ -75.271881103515568, -0.513670027255955 ], [ -75.271446228027344, -0.513599991798344 ], [ -75.271423339843693, -0.512728989124298 ], [ -75.272071838378849, -0.511699020862579 ], [ -75.272216796875, -0.511460006236973 ], [ -75.272132873535156, -0.511029005050659 ], [ -75.271949768066406, -0.510299026966095 ], [ -75.271186828613281, -0.509939014911652 ], [ -75.270606994628906, -0.509688973426705 ], [ -75.270347595214844, -0.509579002857151 ], [ -75.269851684570312, -0.509298980236053 ], [ -75.269668579101562, -0.509199023246708 ], [ -75.2696533203125, -0.508431017398834 ], [ -75.269828796386719, -0.508158981800079 ], [ -75.270210266113281, -0.507598996162358 ], [ -75.271881103515568, -0.507219970226231 ], [ -75.271751403808594, -0.506898999214172 ], [ -75.271621704101506, -0.506588995456639 ], [ -75.270851135253849, -0.506290018558389 ], [ -75.269821166992188, -0.506228983402252 ], [ -75.269569396972656, -0.506080985069275 ], [ -75.269378662109375, -0.505959987640324 ], [ -75.270118713378906, -0.50533998012537 ], [ -75.27130126953125, -0.505060017108804 ], [ -75.272109985351562, -0.503979027271271 ], [ -75.272911071777344, -0.50294899940485 ], [ -75.273307800292912, -0.502198994159585 ], [ -75.274070739746037, -0.501968979835453 ], [ -75.274757385253849, -0.501990020275059 ], [ -75.274803161621094, -0.502990007400513 ], [ -75.274810791015625, -0.503208994865417 ], [ -75.274818420410156, -0.503309011459351 ], [ -75.274681091308594, -0.504419028759003 ], [ -75.275039672851506, -0.505088984966164 ], [ -75.275222778320256, -0.505069017410278 ], [ -75.275886535644474, -0.504999995231628 ], [ -75.276481628417912, -0.504639983177185 ], [ -75.276580810546818, -0.504514992237091 ], [ -75.276527404785156, -0.503690004348755 ], [ -75.276679992675668, -0.503140985965729 ], [ -75.277496337890625, -0.502430021762848 ], [ -75.278076171874943, -0.501990020275059 ], [ -75.279426574706974, -0.501860022544804 ], [ -75.279762268066406, -0.50129002332676 ], [ -75.280326843261719, -0.500599026679993 ], [ -75.280532836914062, -0.499238997697773 ], [ -75.280937194824162, -0.498739987611714 ], [ -75.280899047851562, -0.497729986905995 ], [ -75.281517028808537, -0.496169000864029 ], [ -75.282371520996037, -0.495999991893768 ], [ -75.283149719238224, -0.496259987354222 ], [ -75.283599853515625, -0.497000992298126 ], [ -75.283882141113281, -0.497680008411407 ], [ -75.284721374511719, -0.497689008712712 ], [ -75.285728454589787, -0.497130990028381 ], [ -75.287231445312443, -0.496600002050343 ], [ -75.289749145507812, -0.496381014585495 ], [ -75.289993286132812, -0.496910005807877 ], [ -75.28936767578125, -0.497491002082768 ], [ -75.289253234863224, -0.497599989175797 ], [ -75.28900146484375, -0.498488992452565 ], [ -75.289276123046875, -0.498831003904343 ], [ -75.289657592773438, -0.499280005693436 ], [ -75.290229797363281, -0.499929010868016 ], [ -75.290229797363281, -0.500100016593876 ], [ -75.290222167968636, -0.50108897685999 ], [ -75.290321350097656, -0.502449989318734 ], [ -75.291229248046875, -0.502740025520268 ], [ -75.291641235351506, -0.502601027488708 ], [ -75.292457580566406, -0.502328991889954 ], [ -75.293281555175781, -0.50194901227951 ], [ -75.294517517089844, -0.501829981803894 ], [ -75.296180725097656, -0.502129018306732 ], [ -75.296981811523381, -0.50263899564743 ], [ -75.297187805175781, -0.502768993377629 ], [ -75.297538757324162, -0.503140985965729 ], [ -75.298057556152344, -0.503678977489415 ], [ -75.298255920410156, -0.503699004650059 ], [ -75.299087524414006, -0.503760993480682 ], [ -75.299606323242188, -0.503678977489415 ], [ -75.299880981445312, -0.503300011157933 ], [ -75.300338745117188, -0.502680003643036 ], [ -75.300109863281193, -0.502219974994603 ], [ -75.299896240234375, -0.501829981803894 ], [ -75.299797058105469, -0.501649975776672 ], [ -75.299720764160156, -0.500899970531464 ], [ -75.299690246582031, -0.500690996646767 ], [ -75.299728393554631, -0.500519990921021 ], [ -75.299842834472599, -0.499940991401672 ], [ -75.300903320312386, -0.498869985341912 ], [ -75.300971984863224, -0.497500002384186 ], [ -75.300987243652287, -0.495330005884171 ], [ -75.301567077636662, -0.494430005550328 ], [ -75.302871704101506, -0.494249999523106 ], [ -75.304420471191349, -0.494139999151173 ], [ -75.304649353027344, -0.493730008602142 ], [ -75.304916381835938, -0.493248999118748 ], [ -75.304359436035156, -0.492570012807846 ], [ -75.303977966308594, -0.492260009050369 ], [ -75.303642272949162, -0.491988986730576 ], [ -75.303649902343693, -0.491351008415222 ], [ -75.304550170898438, -0.491209000349045 ], [ -75.304786682128849, -0.49131000041956 ], [ -75.305358886718693, -0.491548985242787 ], [ -75.305717468261719, -0.491679012775421 ], [ -75.306320190429631, -0.491890996694565 ], [ -75.30712890625, -0.492229998111725 ], [ -75.308586120605469, -0.491899996995869 ], [ -75.308609008789006, -0.491019994020405 ], [ -75.309181213378849, -0.490660011768284 ], [ -75.310066223144531, -0.490610003471318 ], [ -75.31063079833973, -0.490969985723495 ], [ -75.311508178710938, -0.491890996694565 ], [ -75.312217712402287, -0.492720007896366 ], [ -75.312767028808594, -0.492918998003006 ], [ -75.313316345214844, -0.492529004812184 ], [ -75.313583374023381, -0.49233099818224 ], [ -75.314315795898381, -0.491728991270008 ], [ -75.314468383789062, -0.491728991270008 ], [ -75.315437316894531, -0.491719990968704 ], [ -75.315773010253849, -0.491719990968704 ], [ -75.316085815429688, -0.491710990667343 ], [ -75.316810607910099, -0.49167001247406 ], [ -75.317207336425724, -0.491329997777825 ], [ -75.317451477050781, -0.491109013557377 ], [ -75.317451477050781, -0.490449994802418 ], [ -75.317436218261719, -0.489998996257782 ], [ -75.316749572753906, -0.489497989416009 ], [ -75.316108703613281, -0.489098995923996 ], [ -75.315727233886719, -0.488299012184086 ], [ -75.317062377929688, -0.487468987703323 ], [ -75.318046569824162, -0.487188994884434 ], [ -75.318443298339787, -0.487080007791462 ], [ -75.318710327148381, -0.485920011997223 ], [ -75.318687438964844, -0.485080987215042 ], [ -75.318641662597543, -0.484775006771031 ], [ -75.318000793457031, -0.483900010585728 ], [ -75.317115783691293, -0.483548998832646 ], [ -75.316047668456974, -0.48361998796463 ], [ -75.315818786621094, -0.483639985322895 ], [ -75.315193176269474, -0.483121007680893 ], [ -75.315048217773438, -0.482748985290471 ], [ -75.314971923828125, -0.482549011707306 ], [ -75.31494140625, -0.482109010219574 ], [ -75.314903259277287, -0.481739997863713 ], [ -75.315505981445312, -0.481040000915414 ], [ -75.31640625, -0.480410993099156 ], [ -75.316528320312443, -0.479658991098404 ], [ -75.316383361816406, -0.479099988937321 ], [ -75.316223144531193, -0.479039013385773 ], [ -75.315498352050781, -0.478841006755829 ], [ -75.31494140625, -0.478628993034249 ], [ -75.314453125, -0.478267997503281 ], [ -75.314231872558537, -0.478109002113342 ], [ -75.314239501953068, -0.477450013160706 ], [ -75.314659118652344, -0.477099001407623 ], [ -75.315483093261662, -0.477039992809239 ], [ -75.316276550292969, -0.477389007806778 ], [ -75.316749572753906, -0.47707000374794 ], [ -75.316947937011719, -0.476940006017685 ], [ -75.316650390625, -0.47613999247551 ], [ -75.316177368164062, -0.475679010152817 ], [ -75.316162109374886, -0.47529000043869 ], [ -75.316131591796818, -0.474629014730453 ], [ -75.316711425781193, -0.474339008331299 ], [ -75.317611694335938, -0.474189013242665 ], [ -75.318557739257812, -0.473470985889378 ], [ -75.318702697753849, -0.473370999097824 ], [ -75.318717956542912, -0.472478985786438 ], [ -75.31781005859375, -0.472140014171543 ], [ -75.31707763671875, -0.472081005573273 ], [ -75.316802978515568, -0.472059994935989 ], [ -75.31646728515625, -0.471444994211197 ], [ -75.316352844238168, -0.470809012651443 ], [ -75.3167724609375, -0.469958990812302 ], [ -75.316917419433537, -0.469857990741673 ], [ -75.317619323730469, -0.469408988952523 ], [ -75.318206787109375, -0.469359010457936 ], [ -75.318389892578125, -0.469350010156631 ], [ -75.319320678710938, -0.468378990888596 ], [ -75.320068359374943, -0.467348992824554 ], [ -75.320938110351562, -0.467189997434616 ], [ -75.322219848632812, -0.466758996248245 ], [ -75.3232421875, -0.466030001640263 ], [ -75.323570251464787, -0.465590000152588 ], [ -75.325180053710938, -0.46489900350565 ], [ -75.325942993164062, -0.464199006557408 ], [ -75.326370239257812, -0.463268995284977 ], [ -75.328025817871094, -0.46200901269907 ], [ -75.330223083496094, -0.460341006517353 ], [ -75.330612182617188, -0.460040003061238 ], [ -75.331001281738281, -0.459708988666421 ], [ -75.331436157226562, -0.459349006414413 ], [ -75.331413269042912, -0.459239989519062 ], [ -75.331169128417969, -0.458348989486637 ], [ -75.330963134765625, -0.458088994026184 ], [ -75.330833435058537, -0.457872003316879 ], [ -75.330741882324162, -0.457350999116841 ], [ -75.330696105957031, -0.456829011440277 ], [ -75.330482482910156, -0.455650001764184 ], [ -75.330429077148438, -0.454771012067795 ], [ -75.330535888671818, -0.454248994588852 ], [ -75.330650329589787, -0.453878998756295 ], [ -75.3323974609375, -0.452935993671417 ], [ -75.333992004394474, -0.452760010957718 ], [ -75.335296630859318, -0.452560007572174 ], [ -75.335418701171818, -0.452551007270813 ], [ -75.336990356445312, -0.452470988035202 ], [ -75.337326049804631, -0.452450007200184 ], [ -75.338218688964844, -0.452749013900757 ], [ -75.3385009765625, -0.45320001244545 ], [ -75.338890075683594, -0.453869998454991 ], [ -75.3388671875, -0.454129993915444 ], [ -75.33880615234375, -0.454919010400658 ], [ -75.338531494140625, -0.455289989709797 ], [ -75.338066101074162, -0.455918997526112 ], [ -75.337928771972656, -0.457809001207295 ], [ -75.338470458984318, -0.458691000938416 ], [ -75.339691162109318, -0.459428995847702 ], [ -75.340522766113281, -0.460229009389877 ], [ -75.342163085937443, -0.460299998521805 ], [ -75.342979431152344, -0.460328996181431 ], [ -75.344108581542969, -0.460568994283619 ], [ -75.3447265625, -0.461690008640232 ], [ -75.345230102539006, -0.462879985570851 ], [ -75.3455810546875, -0.463198989629745 ], [ -75.3460693359375, -0.463609009981099 ], [ -75.346488952636605, -0.463800996541977 ], [ -75.347869873046875, -0.464219987392426 ], [ -75.348167419433594, -0.463869005441666 ], [ -75.349761962890625, -0.463519990444127 ], [ -75.351127624511662, -0.462969005107823 ], [ -75.352111816406193, -0.462478995323181 ], [ -75.352203369140568, -0.462300986051503 ], [ -75.352752685546818, -0.461221009492817 ], [ -75.353080749511719, -0.460209012031441 ], [ -75.353179931640625, -0.459919005632344 ], [ -75.353240966796818, -0.45983898639679 ], [ -75.353736877441293, -0.459169000387192 ], [ -75.353950500488281, -0.459001004695835 ], [ -75.35455322265625, -0.458519995212498 ], [ -75.355201721191406, -0.457639992237034 ], [ -75.355201721191406, -0.457498997449875 ], [ -75.355262756347543, -0.456589013338089 ], [ -75.355361938476562, -0.455419987440052 ], [ -75.355857849121094, -0.453949987888279 ], [ -75.356361389160156, -0.452778995037079 ], [ -75.356941223144531, -0.451308995485306 ], [ -75.357467651367188, -0.449431002139931 ], [ -75.357696533203125, -0.448740005493164 ], [ -75.3577880859375, -0.448480010032654 ], [ -75.358047485351562, -0.447650998830738 ], [ -75.358421325683594, -0.447320014238358 ], [ -75.358856201171818, -0.446938991546574 ], [ -75.359710693359318, -0.446550011634827 ], [ -75.360412597656136, -0.44681000709528 ], [ -75.361381530761719, -0.446390002965927 ], [ -75.362342834472656, -0.446489989757481 ], [ -75.363449096679631, -0.446570008993092 ], [ -75.364097595214787, -0.446830004453545 ], [ -75.364669799804631, -0.44699901342392 ], [ -75.365798950195312, -0.447068989276829 ], [ -75.36676025390625, -0.447048991918507 ], [ -75.368057250976562, -0.446328997612 ], [ -75.369369506835881, -0.4457890093326 ], [ -75.37017822265625, -0.445030003786087 ], [ -75.370887756347599, -0.444330006837845 ], [ -75.371070861816349, -0.443919986486435 ], [ -75.371170043945256, -0.443709999322834 ], [ -75.371459960937443, -0.442528992891255 ], [ -75.372039794921818, -0.44178000092495 ], [ -75.372566223144531, -0.441276013851166 ], [ -75.373580932617188, -0.44113901257515 ], [ -75.373771667480469, -0.441121011972371 ], [ -75.3743896484375, -0.441038995981216 ], [ -75.374687194824162, -0.440858989953995 ], [ -75.374839782714844, -0.440739989280701 ], [ -75.375350952148381, -0.439799010753575 ], [ -75.375648498535099, -0.438479006290436 ], [ -75.375991821289062, -0.437620013952255 ], [ -75.376350402832031, -0.437279999256134 ], [ -75.376762390136719, -0.437379002571106 ], [ -75.377418518066406, -0.437510997056961 ], [ -75.377632141113281, -0.437570005655289 ], [ -75.378440856933594, -0.437779992818776 ], [ -75.379547119140568, -0.437519997358322 ], [ -75.380256652832031, -0.437110006809178 ], [ -75.380699157714787, -0.436850011348724 ], [ -75.381469726562443, -0.435649007558823 ], [ -75.381958007812443, -0.434801012277603 ], [ -75.382476806640625, -0.434118986129761 ], [ -75.383140563964844, -0.43401899933815 ], [ -75.384338378906193, -0.434199005365372 ], [ -75.384819030761662, -0.434340000152588 ], [ -75.38543701171875, -0.434500008821487 ], [ -75.386627197265568, -0.434549987316075 ], [ -75.386741638183594, -0.434459000825825 ], [ -75.387161254882812, -0.434118986129761 ], [ -75.388099670410156, -0.433340013027134 ], [ -75.388671875, -0.432260006666183 ], [ -75.388832092285043, -0.431389003992081 ], [ -75.388931274414062, -0.430738985538369 ], [ -75.389610290527344, -0.429901003837529 ], [ -75.389923095703125, -0.429019004106522 ], [ -75.390579223632812, -0.428418993949833 ], [ -75.390541076660099, -0.427208989858627 ], [ -75.391372680664006, -0.426559001207352 ], [ -75.391555786132812, -0.426178991794586 ], [ -75.391777038574162, -0.425779998302403 ], [ -75.391799926757812, -0.42524001002306 ], [ -75.391799926757812, -0.425051003694534 ], [ -75.391700744628906, -0.424888998269978 ], [ -75.391410827636719, -0.424409985542297 ], [ -75.391021728515568, -0.423568993806839 ], [ -75.391082763671875, -0.422998994588852 ], [ -75.391296386718693, -0.422039985656681 ], [ -75.39154052734375, -0.420780003070774 ], [ -75.3916015625, -0.419890999794006 ], [ -75.391746520996094, -0.418749004602432 ], [ -75.391952514648381, -0.417780011892262 ], [ -75.392158508300724, -0.416709005832615 ], [ -75.392509460449219, -0.415639996528625 ], [ -75.392807006835881, -0.414718985557556 ], [ -75.393379211425724, -0.41389000415802 ], [ -75.3939208984375, -0.413098990917092 ], [ -75.394439697265568, -0.41260901093483 ], [ -75.394927978515568, -0.412378996610585 ], [ -75.395172119140625, -0.412339985370579 ], [ -75.395866394042912, -0.41223099827755 ], [ -75.396369934082031, -0.411599010229054 ], [ -75.396530151367131, -0.411390006542206 ], [ -75.397148132324219, -0.410320997238159 ], [ -75.397148132324219, -0.410010993480682 ], [ -75.397148132324219, -0.409579992294198 ], [ -75.397689819335881, -0.408901005983353 ], [ -75.398139953613281, -0.408448994159585 ], [ -75.398246765136662, -0.408419996500015 ], [ -75.399101257324162, -0.408160001039391 ], [ -75.399780273437443, -0.408089011907578 ], [ -75.400611877441406, -0.408089011907578 ], [ -75.401069641113281, -0.407678991556111 ], [ -75.401145935058594, -0.407440006732884 ], [ -75.401390075683537, -0.406740009784698 ], [ -75.402023315429688, -0.405979007482529 ], [ -75.402519226074219, -0.405010014772358 ], [ -75.402587890625, -0.403820991516056 ], [ -75.402442932128849, -0.403250992298126 ], [ -75.402366638183537, -0.402599006891194 ], [ -75.402763366699219, -0.402179986238423 ], [ -75.403060913085938, -0.401879012584629 ], [ -75.403266906738281, -0.401300013065338 ], [ -75.403198242187443, -0.400638997554779 ], [ -75.403167724609375, -0.399821013212204 ], [ -75.40325927734375, -0.399168998003006 ], [ -75.403610229492131, -0.398869991302433 ], [ -75.404037475585938, -0.398799985647202 ], [ -75.405021667480412, -0.399260014295521 ], [ -75.405662536621094, -0.399257987737599 ], [ -75.406730651855412, -0.399020999670029 ], [ -75.407180786132812, -0.398559987545013 ], [ -75.408157348632756, -0.398589998483658 ], [ -75.40850830078125, -0.398559987545013 ], [ -75.408805847167969, -0.398530989885273 ], [ -75.408920288085881, -0.398589998483658 ], [ -75.409996032714787, -0.399188995361328 ], [ -75.410560607910099, -0.399318993091526 ], [ -75.411087036132812, -0.399309992790222 ], [ -75.411270141601562, -0.398820012807846 ], [ -75.411605834960881, -0.398438990116119 ], [ -75.412345886230469, -0.398389011621475 ], [ -75.412696838378906, -0.39787000417698 ], [ -75.413047790527287, -0.397206008434239 ], [ -75.413368225097656, -0.396759986877385 ], [ -75.4139404296875, -0.396719008684101 ], [ -75.414070129394474, -0.396710008382797 ], [ -75.414741516113224, -0.396999001502991 ], [ -75.415267944335938, -0.396919012069702 ], [ -75.415679931640625, -0.396391004323903 ], [ -75.41583251953125, -0.396090000867787 ], [ -75.416030883789062, -0.395658999681473 ], [ -75.416130065917969, -0.394769996404648 ], [ -75.416030883789062, -0.39368999004364 ], [ -75.415962219238281, -0.392910003662053 ], [ -75.416481018066349, -0.391829997301102 ], [ -75.417037963867131, -0.391281008720341 ], [ -75.417556762695312, -0.391169011592865 ], [ -75.417869567871094, -0.391110002994424 ], [ -75.41796875, -0.391088992357254 ], [ -75.417945861816406, -0.390899986028558 ], [ -75.417907714843693, -0.390590012073517 ], [ -75.417800903320256, -0.389770001173019 ], [ -75.417938232421875, -0.38821101188654 ], [ -75.417930603027344, -0.387948989868164 ], [ -75.417922973632812, -0.387309998273849 ], [ -75.417892456054631, -0.386348992586079 ], [ -75.41815185546875, -0.385509997606277 ], [ -75.418586730956918, -0.384898990392685 ], [ -75.419502258300781, -0.383810013532525 ], [ -75.419662475585938, -0.38363000750536 ], [ -75.420257568359375, -0.382950007915497 ], [ -75.420906066894531, -0.382108986377659 ], [ -75.421646118164062, -0.381740003824234 ], [ -75.422271728515568, -0.381799012422448 ], [ -75.423042297363224, -0.381648987531605 ], [ -75.423751831054688, -0.381469011306763 ], [ -75.424118041992074, -0.381009012460709 ], [ -75.424407958984375, -0.380468010902405 ], [ -75.424507141113281, -0.380019009113255 ], [ -75.424552917480469, -0.379168987274113 ], [ -75.424873352050724, -0.378560990095025 ], [ -75.4249267578125, -0.378461003303528 ], [ -75.425315856933594, -0.377849996089935 ], [ -75.425697326660156, -0.377119988202992 ], [ -75.425621032714787, -0.376219987869263 ], [ -75.425086975097656, -0.375270009040776 ], [ -75.424682617187443, -0.374379009008351 ], [ -75.424301147460881, -0.373250007629395 ], [ -75.424270629882812, -0.372229009866714 ], [ -75.424530029296875, -0.370730012655258 ], [ -75.424842834472656, -0.370059996843281 ], [ -75.424896240234375, -0.369938999414387 ], [ -75.425552368164062, -0.369749993085861 ], [ -75.426521301269531, -0.370038986206055 ], [ -75.427299499511719, -0.369958996772766 ], [ -75.427711486816349, -0.369599014520645 ], [ -75.428169250488281, -0.369120985269547 ], [ -75.428611755371094, -0.369049996137619 ], [ -75.429206848144531, -0.36897000670433 ], [ -75.429672241210938, -0.368488997220993 ], [ -75.430099487304631, -0.367709994316044 ], [ -75.430458068847656, -0.36680099368084 ], [ -75.430740356445312, -0.366140007972717 ], [ -75.43121337890625, -0.365720003843194 ], [ -75.431159973144474, -0.365218997001648 ], [ -75.430908203125, -0.363559991121178 ], [ -75.430892944335938, -0.363420993089676 ], [ -75.430816650390625, -0.362540990114212 ], [ -75.430839538574219, -0.361640989780426 ], [ -75.430969238281193, -0.36055999994278 ], [ -75.431190490722656, -0.359840005636102 ], [ -75.431671142578125, -0.359349995851517 ], [ -75.431900024414062, -0.35911101102829 ], [ -75.432518005371094, -0.358500003814697 ], [ -75.433113098144531, -0.357708990573826 ], [ -75.434326171875, -0.356429994106236 ], [ -75.438766479492188, -0.35212999582285 ], [ -75.440940856933594, -0.348100006580353 ], [ -75.442398071289006, -0.342258989810887 ], [ -75.443489074707031, -0.338970005512181 ], [ -75.446762084960938, -0.336410999298096 ], [ -75.447250366210938, -0.335548996925297 ], [ -75.447563171386662, -0.335009008645955 ], [ -75.448219299316349, -0.333840012550297 ], [ -75.449668884277287, -0.330929011106491 ], [ -75.450942993164062, -0.328900992870331 ], [ -75.451492309570312, -0.328000992536488 ], [ -75.453132629394531, -0.326498985290527 ], [ -75.453659057617131, -0.326029002666417 ], [ -75.453819274902344, -0.325881004333382 ], [ -75.455490112304631, -0.324348986148777 ], [ -75.458030700683594, -0.320688992738667 ], [ -75.459846496581974, -0.31666898727417 ], [ -75.460105895996094, -0.316069006919861 ], [ -75.461341857910156, -0.313241004943734 ], [ -75.462387084960938, -0.310820013284683 ], [ -75.462547302246037, -0.310180008411407 ], [ -75.462806701660099, -0.309141010046005 ], [ -75.463493347167912, -0.306418985128346 ], [ -75.463569641113224, -0.304710000753346 ], [ -75.463607788085938, -0.303889989852848 ], [ -75.463783264160099, -0.3004390001297 ], [ -75.463851928710881, -0.298738986253738 ], [ -75.468215942382812, -0.29509899020195 ], [ -75.469230651855469, -0.294079989194813 ], [ -75.471488952636662, -0.291810005903244 ], [ -75.471649169921875, -0.291018992662316 ], [ -75.471687316894474, -0.290809988975525 ], [ -75.472061157226506, -0.288919985294285 ], [ -75.472206115722656, -0.288141012191772 ], [ -75.472206115722656, -0.288028985261803 ], [ -75.471519470214844, -0.279760003089905 ], [ -75.471199035644474, -0.27383899688715 ], [ -75.473777770996037, -0.268741011619454 ], [ -75.475677490234318, -0.26568898558611 ], [ -75.476860046386719, -0.263796985149384 ], [ -75.47735595703125, -0.263009011745396 ], [ -75.477447509765625, -0.26284900307644 ], [ -75.477958679199219, -0.259041011333352 ], [ -75.478050231933594, -0.258388996124211 ], [ -75.478317260742188, -0.256260007619801 ], [ -75.478599548339844, -0.254200011491719 ], [ -75.477859497070312, -0.251468986272698 ], [ -75.476325988769531, -0.24796000123024 ], [ -75.474861145019531, -0.245111003518105 ], [ -75.475296020507756, -0.244038999080601 ], [ -75.476028442382812, -0.24227100610733 ], [ -75.476486206054688, -0.241668999195099 ], [ -75.478271484374943, -0.239348992705345 ], [ -75.480232238769531, -0.237899005413055 ], [ -75.483833312988281, -0.234158992767277 ], [ -75.485618591308537, -0.232668995857239 ], [ -75.485862731933594, -0.232289999723378 ], [ -75.486228942871094, -0.231689006090107 ], [ -75.487709045410099, -0.229308992624283 ], [ -75.488739013671875, -0.226759001612663 ], [ -75.490615844726562, -0.225418999791145 ], [ -75.491081237792969, -0.225099995732251 ], [ -75.493492126464844, -0.223379001021328 ], [ -75.496017456054631, -0.219779998063984 ], [ -75.497978210449219, -0.217008993029594 ], [ -75.49951171875, -0.214838996529579 ], [ -75.499603271484375, -0.214720994234085 ], [ -75.507698059082031, -0.199939996004105 ], [ -75.516136169433537, -0.190659999847412 ], [ -75.51959228515625, -0.18467000126833 ], [ -75.524612426757756, -0.175989001989365 ], [ -75.525482177734318, -0.174380004405918 ], [ -75.527931213378906, -0.169818997383118 ], [ -75.532699584960938, -0.164068996906281 ], [ -75.5411376953125, -0.156459003686848 ], [ -75.549179077148438, -0.151940003037453 ], [ -75.552902221679688, -0.141971006989479 ], [ -75.551902770996037, -0.131530001759415 ], [ -75.551956176757812, -0.12420900166029 ], [ -75.551742553710938, -0.123196996748334 ], [ -75.551597595214787, -0.123126998543739 ], [ -75.551338195800668, -0.1231340020895 ], [ -75.550918579101562, -0.123144999146461 ], [ -75.549690246581974, -0.123718999326115 ], [ -75.548606872558594, -0.123350001871586 ], [ -75.547218322753849, -0.12194199860096 ], [ -75.5469970703125, -0.121720001101494 ], [ -75.546806335449219, -0.12100899964571 ], [ -75.546516418457031, -0.119929000735226 ], [ -75.546211242675781, -0.119428001344204 ], [ -75.545898437499943, -0.118909999728203 ], [ -75.545402526855412, -0.118509002029839 ], [ -75.544692993164062, -0.118419997394028 ], [ -75.544029235839844, -0.118638999760151 ], [ -75.542243957519474, -0.120411999523583 ], [ -75.541763305664062, -0.120237000286522 ], [ -75.541603088378849, -0.120180003344956 ], [ -75.540992736816406, -0.119479998946133 ], [ -75.540519714355469, -0.116520002484265 ], [ -75.540016174316406, -0.115681000053883 ], [ -75.539375305175781, -0.115138001739922 ], [ -75.539039611816406, -0.115263998508397 ], [ -75.538261413574162, -0.115555003285408 ], [ -75.536849975585938, -0.116700001060906 ], [ -75.534027099609375, -0.117531001567841 ], [ -75.533119201660099, -0.117798000574112 ], [ -75.532035827636719, -0.118657000362816 ], [ -75.531684875488224, -0.11871200054884 ], [ -75.531158447265625, -0.118794001638832 ], [ -75.530197143554688, -0.118701003491879 ], [ -75.529388427734318, -0.118340998887959 ], [ -75.528358459472656, -0.117301002144757 ], [ -75.526947021484375, -0.115878999233246 ], [ -75.526046752929631, -0.115941002964917 ], [ -75.524971008300781, -0.116791002452317 ], [ -75.524276733398438, -0.116888999938965 ], [ -75.523902893066406, -0.116772003471795 ], [ -75.523635864257812, -0.116690002381802 ], [ -75.521957397460881, -0.115438997745457 ], [ -75.521293640136662, -0.115230001509133 ], [ -75.520149230956974, -0.115383997559547 ], [ -75.517578124999886, -0.118638999760151 ], [ -75.516914367675781, -0.119181998073998 ], [ -75.516731262207031, -0.119329996407032 ], [ -75.515556335449162, -0.119158998131695 ], [ -75.515327453613281, -0.118955999612808 ], [ -75.514167785644531, -0.117930002510491 ], [ -75.513328552246094, -0.117550000548363 ], [ -75.511978149414062, -0.117569997906685 ], [ -75.511581420898438, -0.11786200106144 ], [ -75.511016845703125, -0.118279002606869 ], [ -75.510841369628906, -0.118597999215126 ], [ -75.510704040527287, -0.118858002126217 ], [ -75.510543823242188, -0.121183000504971 ], [ -75.509689331054688, -0.122809998691082 ], [ -75.509475708007812, -0.123079001903477 ], [ -75.508819580078125, -0.123897001147213 ], [ -75.507621765136719, -0.124935999512672 ], [ -75.506050109863281, -0.125896006822586 ], [ -75.502861022949162, -0.127127006649914 ], [ -75.501266479492131, -0.12873600423336 ], [ -75.500450134277344, -0.129561007022801 ], [ -75.499534606933537, -0.1297319978475 ], [ -75.496627807617188, -0.129188999533653 ], [ -75.494819641113281, -0.13023799657816 ], [ -75.494712829589844, -0.1302600055933 ], [ -75.494178771972599, -0.130370005965233 ], [ -75.489616394042912, -0.129821002483368 ], [ -75.489082336425781, -0.130131006240788 ], [ -75.488212585449219, -0.131358996033669 ], [ -75.487655639648438, -0.131613999605179 ], [ -75.486389160156193, -0.131249994039536 ], [ -75.485580444335938, -0.131016999483109 ], [ -75.485321044921818, -0.131031006574574 ], [ -75.484954833984318, -0.131053999066353 ], [ -75.4842529296875, -0.131509006023407 ], [ -75.483848571777344, -0.131926000118142 ], [ -75.482429504394531, -0.133396998047829 ], [ -75.481414794921818, -0.133838996291161 ], [ -75.480972290039062, -0.134029999375343 ], [ -75.47906494140625, -0.13601100444788 ], [ -75.475936889648438, -0.137390002608242 ], [ -75.475059509277344, -0.138448998331967 ], [ -75.474571228027344, -0.139789000153485 ], [ -75.471595764160099, -0.13999900221819 ], [ -75.47052001953125, -0.140327006578389 ], [ -75.470306396484375, -0.140733003616333 ], [ -75.470481872558594, -0.141652002930584 ], [ -75.470611572265625, -0.142325997352543 ], [ -75.470451354980412, -0.143315002322197 ], [ -75.470428466796875, -0.143474996089878 ], [ -75.467521667480469, -0.146248996257668 ], [ -75.466789245605469, -0.146947994828224 ], [ -75.466575622558594, -0.14732900261879 ], [ -75.466499328613281, -0.148282006382885 ], [ -75.466461181640511, -0.148748993873596 ], [ -75.465293884277287, -0.149869993328991 ], [ -75.46466064453125, -0.150030001997891 ], [ -75.463264465332031, -0.150022998452073 ], [ -75.462135314941349, -0.150015994906425 ], [ -75.461982727050781, -0.150124996900502 ], [ -75.460105895996094, -0.151479005813599 ], [ -75.459342956542969, -0.150909006595612 ], [ -75.458816528320256, -0.149158999323845 ], [ -75.458595275878906, -0.148996993899289 ], [ -75.458450317382699, -0.148890003561974 ], [ -75.457740783691406, -0.148828998208046 ], [ -75.455642700195312, -0.150930002331734 ], [ -75.455207824706918, -0.150833994150048 ], [ -75.454055786132756, -0.15004999935627 ], [ -75.453659057617131, -0.150115996599197 ], [ -75.453170776367131, -0.150196000933647 ], [ -75.452957153320312, -0.150475993752366 ], [ -75.452751159667969, -0.150749996304455 ], [ -75.452514648437443, -0.152115002274513 ], [ -75.451591491699219, -0.152964994311333 ], [ -75.451316833496094, -0.153218001127186 ], [ -75.450874328613281, -0.153282001614514 ], [ -75.450675964355469, -0.153309002518597 ], [ -75.449073791503849, -0.15302899479866 ], [ -75.448501586914006, -0.15327300131321 ], [ -75.446342468261719, -0.154195994138661 ], [ -75.443954467773324, -0.153744995594025 ], [ -75.443656921386662, -0.153689995408001 ], [ -75.437568664550781, -0.153001993894577 ], [ -75.436454772949219, -0.152973994612637 ], [ -75.435302734375, -0.152946993708554 ], [ -75.434188842773438, -0.153097003698349 ], [ -75.43341064453125, -0.153200000524521 ], [ -75.432579040527287, -0.153840005397797 ], [ -75.432228088378906, -0.154513001441899 ], [ -75.431388854980469, -0.156105995178223 ], [ -75.431228637695312, -0.156286001205444 ], [ -75.43084716796875, -0.156700998544693 ], [ -75.429733276367131, -0.15582500398159 ], [ -75.429260253906193, -0.155814006924629 ], [ -75.428970336914006, -0.155807003378811 ], [ -75.428359985351562, -0.1560879945755 ], [ -75.428390502929631, -0.158603996038437 ], [ -75.427742004394418, -0.159494996070862 ], [ -75.427116394042969, -0.159461006522179 ], [ -75.425277709960938, -0.158411994576397 ], [ -75.424774169921818, -0.158400997519436 ], [ -75.424110412597599, -0.158384993672314 ], [ -75.423240661621037, -0.158629000186863 ], [ -75.422920227050781, -0.159461006522179 ], [ -75.423019409179688, -0.162710994481984 ], [ -75.422248840332031, -0.16355200111866 ], [ -75.421707153320256, -0.163568004965782 ], [ -75.419349670410043, -0.162009000778198 ], [ -75.418121337890625, -0.16184900701046 ], [ -75.41796875, -0.162012994289398 ], [ -75.417755126953125, -0.162239000201168 ], [ -75.417648315429688, -0.164167001843396 ], [ -75.417366027832031, -0.164596006274223 ], [ -75.417144775390568, -0.164934992790165 ], [ -75.414337158203125, -0.16584900021553 ], [ -75.413314819335881, -0.166429996490479 ], [ -75.410919189453125, -0.16779500246048 ], [ -75.409660339355469, -0.168190002441406 ], [ -75.409042358398381, -0.16813699901104 ], [ -75.408256530761662, -0.168069005012512 ], [ -75.407745361328125, -0.167842999100685 ], [ -75.406990051269531, -0.167511001229173 ], [ -75.404510498046875, -0.164789006114006 ], [ -75.40370941162098, -0.164298996329251 ], [ -75.402839660644474, -0.164089992642346 ], [ -75.401687622070256, -0.164180994033757 ], [ -75.400726318359318, -0.164780005812588 ], [ -75.399620056152344, -0.164508998393956 ], [ -75.399108886718693, -0.164683997631016 ], [ -75.397895812988281, -0.165098994970265 ], [ -75.393768310546818, -0.164819002151489 ], [ -75.393440246582031, -0.164844006299916 ], [ -75.392219543457031, -0.16494399309147 ], [ -75.390785217285156, -0.165885999798775 ], [ -75.390548706054574, -0.166041001677399 ], [ -75.389915466308594, -0.166699007153454 ], [ -75.388641357421761, -0.168029993772507 ], [ -75.386871337890625, -0.168670997023526 ], [ -75.385955810546818, -0.168011993169728 ], [ -75.385375976562443, -0.166170001029911 ], [ -75.385261535644531, -0.166041001677399 ], [ -75.384986877441349, -0.165730997919979 ], [ -75.383377075195256, -0.165907993912697 ], [ -75.382820129394474, -0.166163995862007 ], [ -75.382339477539006, -0.1664099991321 ], [ -75.382011413574219, -0.166381999850273 ], [ -75.380699157714787, -0.16627100110054 ], [ -75.380355834960938, -0.165781006216946 ], [ -75.3798828125, -0.163690999150219 ], [ -75.378524780273381, -0.161952003836632 ], [ -75.378326416015568, -0.161698997020665 ], [ -75.377655029296818, -0.161579996347371 ], [ -75.376762390136719, -0.161649003624859 ], [ -75.373794555664062, -0.161879003047943 ], [ -75.373443603515568, -0.161601006984711 ], [ -75.373062133789006, -0.161300003528595 ], [ -75.3721923828125, -0.158678993582669 ], [ -75.372459411621094, -0.15707899630064 ], [ -75.372459411621094, -0.154980003833771 ], [ -75.372047424316293, -0.152270004153195 ], [ -75.369819641113224, -0.149049997329712 ], [ -75.369651794433537, -0.147953003644943 ], [ -75.369361877441349, -0.147630006074905 ], [ -75.36871337890625, -0.146896004676762 ], [ -75.367767333984375, -0.146317005157414 ], [ -75.366592407226506, -0.146434992551747 ], [ -75.366294860839787, -0.146596997976303 ], [ -75.366500854492131, -0.146706998348236 ], [ -75.366683959960881, -0.146805003285351 ], [ -75.366607666015568, -0.147124007344189 ], [ -75.366455078125, -0.147747993469181 ], [ -75.366432189941406, -0.147866994142476 ], [ -75.366302490234318, -0.148028999567032 ], [ -75.365211486816406, -0.149400994181576 ], [ -75.364784240722599, -0.149736002087593 ], [ -75.363510131835938, -0.150736004114151 ], [ -75.362297058105412, -0.151136994361877 ], [ -75.361785888671875, -0.151207998394966 ], [ -75.361625671386662, -0.154659003019333 ], [ -75.362785339355412, -0.155453994870186 ], [ -75.363105773925781, -0.15630599856371 ], [ -75.363830566406193, -0.156459003686848 ], [ -75.364151000976562, -0.158105000853539 ], [ -75.363662719726562, -0.158785998821145 ], [ -75.361656188964844, -0.160239994525853 ], [ -75.359642028808537, -0.161256998777333 ], [ -75.357498168945312, -0.16233900189394 ], [ -75.357398986816406, -0.162359997630119 ], [ -75.356613159179688, -0.162522003054562 ], [ -75.35565185546875, -0.162410005927086 ], [ -75.355094909667969, -0.162138998508453 ], [ -75.353820800781193, -0.161519005894661 ], [ -75.351257324218636, -0.159490004181805 ], [ -75.350006103515568, -0.158499002456665 ], [ -75.349311828613281, -0.157775998115483 ], [ -75.347610473632756, -0.155999004840851 ], [ -75.347061157226449, -0.155654996633473 ], [ -75.346481323242131, -0.155289992690086 ], [ -75.343490600585938, -0.154929995536804 ], [ -75.341239929199162, -0.155089005827904 ], [ -75.340492248535156, -0.155980005860329 ], [ -75.340522766113281, -0.15707899630064 ], [ -75.339302062988224, -0.158221006393433 ], [ -75.338539123535099, -0.158059000968933 ], [ -75.337936401367188, -0.157538995146751 ], [ -75.337066650390625, -0.156790003180447 ], [ -75.336853027343693, -0.156347006559372 ], [ -75.336051940917969, -0.154699996113777 ], [ -75.335823059082031, -0.154507994651738 ], [ -75.335731506347656, -0.154431000351906 ], [ -75.334838867187443, -0.154719993472099 ], [ -75.333473205566406, -0.155990004539433 ], [ -75.333267211914062, -0.155980005860329 ], [ -75.332603454589844, -0.155953004956132 ], [ -75.331504821777287, -0.155610993504524 ], [ -75.330947875976562, -0.155438005924168 ], [ -75.330131530761719, -0.155508995056152 ], [ -75.329704284667855, -0.155893996357861 ], [ -75.329498291015568, -0.156081005930844 ], [ -75.329254150390625, -0.156424999236947 ], [ -75.328231811523438, -0.15786300599575 ], [ -75.327667236328068, -0.15820899605751 ], [ -75.326759338378906, -0.15802900493145 ], [ -75.325462341308594, -0.156714007258358 ], [ -75.32513427734375, -0.156705006957054 ], [ -75.324806213378849, -0.156696006655693 ], [ -75.324005126953125, -0.157527998089734 ], [ -75.324043273925724, -0.158800005912781 ], [ -75.324050903320256, -0.159145995974541 ], [ -75.323883056640568, -0.159545004367828 ], [ -75.322959899902344, -0.160261005163193 ], [ -75.322052001953068, -0.160449996590557 ], [ -75.321861267089787, -0.160352006554604 ], [ -75.320838928222656, -0.159833997488022 ], [ -75.319740295410156, -0.158629000186863 ], [ -75.319000244140568, -0.157817006111145 ], [ -75.318161010742131, -0.157881006598473 ], [ -75.318054199218693, -0.157890006899777 ], [ -75.316963195800781, -0.158739998936596 ], [ -75.316558837890625, -0.158690005540791 ], [ -75.3157958984375, -0.158079996704998 ], [ -75.315719604492188, -0.156260997056847 ], [ -75.31561279296875, -0.156154006719532 ], [ -75.315093994140568, -0.155617997050285 ], [ -75.314895629882756, -0.155626997351646 ], [ -75.313957214355412, -0.155663996934891 ], [ -75.312843322753906, -0.156802996993065 ], [ -75.312660217285156, -0.156627997756004 ], [ -75.311363220214787, -0.155365005135479 ], [ -75.310409545898381, -0.155559003353119 ], [ -75.309761047363224, -0.155690997838974 ], [ -75.30914306640625, -0.155559003353119 ], [ -75.308563232421875, -0.154799997806549 ], [ -75.308609008789006, -0.153391003608704 ], [ -75.308631896972656, -0.1526889950037 ], [ -75.308441162109375, -0.152069002389908 ], [ -75.307533264160156, -0.150979995727539 ], [ -75.306396484375, -0.150209993124008 ], [ -75.306228637695256, -0.150234997272435 ], [ -75.305656433105412, -0.150316998362541 ], [ -75.305335998535156, -0.150615006685257 ], [ -75.305145263671875, -0.152471005916539 ], [ -75.304786682128849, -0.153086006641388 ], [ -75.304222106933537, -0.153457000851574 ], [ -75.303634643554631, -0.153365999460163 ], [ -75.303268432617131, -0.153309002518597 ], [ -75.302680969238224, -0.152328997850418 ], [ -75.302421569824162, -0.151657000183945 ], [ -75.301261901855412, -0.148600995540562 ], [ -75.300361633300781, -0.14767099916935 ], [ -75.300132751464787, -0.14763900637621 ], [ -75.299827575683537, -0.147599995136204 ], [ -75.298751831054688, -0.147918999195099 ], [ -75.295829772949162, -0.149494007229691 ], [ -75.29571533203125, -0.149742007255554 ], [ -75.295646667480412, -0.149902001023293 ], [ -75.295654296874943, -0.151443004608097 ], [ -75.295661926269531, -0.152199000120163 ], [ -75.295486450195312, -0.152416005730629 ], [ -75.295349121093693, -0.152588993310872 ], [ -75.294929504394531, -0.152695998549405 ], [ -75.294166564941406, -0.152584999799672 ], [ -75.293991088867188, -0.152558997273388 ], [ -75.293266296386662, -0.152037993073463 ], [ -75.291641235351506, -0.150070995092335 ], [ -75.291221618652344, -0.149239003658295 ], [ -75.290740966796875, -0.143279001116753 ], [ -75.290519714355469, -0.14237900078291 ], [ -75.290298461914006, -0.141460001468658 ], [ -75.289100646972656, -0.140119999647084 ], [ -75.287109375, -0.1383920013904 ], [ -75.286102294921818, -0.137519001960698 ], [ -75.285682678222656, -0.13703599572176 ], [ -75.282630920410156, -0.133520007133484 ], [ -75.280876159667855, -0.13201999664301 ], [ -75.278923034667969, -0.130818992853165 ], [ -75.276992797851562, -0.130169004201832 ], [ -75.269424438476506, -0.128378003835678 ], [ -75.266792297363281, -0.12695799767971 ], [ -75.264892578125, -0.125441998243332 ], [ -75.264785766601562, -0.125356003642025 ], [ -75.263580322265568, -0.12397900223732 ], [ -75.262817382812443, -0.122089996933937 ], [ -75.262046813964844, -0.118409000337067 ], [ -75.261161804199219, -0.116810999810696 ], [ -75.260971069335938, -0.116460002958718 ], [ -75.259796142578068, -0.115339003503323 ], [ -75.258567810058594, -0.114454999566078 ], [ -75.257713317871094, -0.113839000463429 ], [ -75.253532409667969, -0.111828997731152 ], [ -75.251373291015568, -0.109860002994481 ], [ -75.238166809082031, -0.09015899896616 ], [ -75.236747741699219, -0.088361002504769 ], [ -75.232803344726506, -0.084160000085831 ], [ -75.230201721191349, -0.080629996955338 ], [ -75.228256225585938, -0.077500998973733 ], [ -75.226882934570256, -0.074579000472966 ], [ -75.225563049316293, -0.070880003273487 ], [ -75.224266052246094, -0.065269000828266 ], [ -75.222816467285156, -0.061629001051188 ], [ -75.22247314453125, -0.058649998158216 ], [ -75.220703125, -0.054110001772585 ], [ -75.216476440429631, -0.050209999084416 ], [ -75.20556640625, -0.042948998510838 ], [ -75.199302673339787, -0.039579998701754 ], [ -75.195877075195256, -0.038219999521971 ], [ -75.19281005859375, -0.037470001727343 ], [ -75.188690185546875, -0.037918999791145 ], [ -75.182426452636662, -0.039259001612663 ], [ -75.177459716796875, -0.040950000286102 ], [ -75.172080993652344, -0.043480001389923 ], [ -75.168426513671818, -0.046229001134634 ], [ -75.167129516601562, -0.046638999134302 ], [ -75.161926269531193, -0.051470998674517 ], [ -75.151336669921818, -0.059459000825882 ], [ -75.150238037109375, -0.059739001095181 ], [ -75.142929077148438, -0.064860999584084 ], [ -75.139396667480469, -0.066959999501705 ], [ -75.134529113769531, -0.069499000906887 ], [ -75.130767822265511, -0.071139998733941 ], [ -75.122459411621037, -0.073858998715821 ], [ -75.115669250488224, -0.074770003557148 ], [ -75.110443115234318, -0.075218997895661 ], [ -75.096527099609318, -0.075699999928474 ], [ -75.091720581054688, -0.077150002121869 ], [ -75.085342407226506, -0.080228999257088 ], [ -75.082557678222656, -0.082199998199883 ], [ -75.079437255859318, -0.084918998181763 ], [ -75.066917419433594, -0.09731999784708 ], [ -75.063407897949162, -0.099880002439022 ], [ -75.0609130859375, -0.101019002497196 ], [ -75.059013366699219, -0.103000000119209 ], [ -75.056632995605412, -0.104359999298993 ], [ -75.053840637207031, -0.106719002127647 ], [ -75.047721862792969, -0.112908996641636 ], [ -75.036750793457031, -0.124578997492733 ], [ -75.036453247070312, -0.125469997525158 ], [ -75.029441833496094, -0.133319005370083 ], [ -75.021568298339787, -0.141179993748551 ], [ -75.015296936035156, -0.144468992948475 ], [ -75.0115966796875, -0.145631000399533 ], [ -75.010246276855469, -0.146478995680809 ], [ -75.002555847167969, -0.14801000058651 ], [ -75.0, -0.148129001259747 ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-MDD", "NAME_0": "Peru", "ID_1": 18, "NAME_1": "Madre de Dios", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.627227783203068, -10.71923923492426 ], [ -70.627861022949219, -11.003930091857796 ], [ -70.622047424316349, -11.000409126281738 ], [ -70.618362426757699, -10.997749328613281 ], [ -70.618041992187443, -10.997449874877873 ], [ -70.615447998046875, -10.995109558105412 ], [ -70.612022399902344, -10.991360664367676 ], [ -70.609016418456918, -10.98753833770752 ], [ -70.607063293457031, -10.984409332275391 ], [ -70.606391906738281, -10.982979774475098 ], [ -70.605682373046761, -10.979339599609375 ], [ -70.605110168456918, -10.977849960327148 ], [ -70.603507995605469, -10.974529266357308 ], [ -70.601432800292969, -10.970939636230469 ], [ -70.597816467285156, -10.966459274291935 ], [ -70.592247009277344, -10.961938858032227 ], [ -70.5870361328125, -10.958990097045898 ], [ -70.574638366699219, -10.952778816223088 ], [ -70.568977355957031, -10.949210166931096 ], [ -70.565322875976506, -10.946258544921875 ], [ -70.562606811523438, -10.944507598876953 ], [ -70.559700012206974, -10.943088531494141 ], [ -70.552825927734318, -10.940348625183049 ], [ -70.55108642578125, -10.939208984374943 ], [ -70.54412841796875, -10.937488555908203 ], [ -70.543617248535156, -10.937040328979492 ], [ -70.536216735839787, -10.936921119689941 ], [ -70.532546997070312, -10.937429428100586 ], [ -70.529373168945256, -10.938359260559082 ], [ -70.525657653808537, -10.939449310302734 ], [ -70.523162841796818, -10.940600395202637 ], [ -70.519332885742188, -10.94320011138916 ], [ -70.518646240234375, -10.943249702453556 ], [ -70.515029907226562, -10.946120262145996 ], [ -70.508720397949219, -10.951728820800724 ], [ -70.504173278808537, -10.957268714904728 ], [ -70.500183105468693, -10.958639144897404 ], [ -70.496459960937443, -10.96021842956543 ], [ -70.495262145996094, -10.96176815032959 ], [ -70.494941711425724, -10.961959838867188 ], [ -70.493759155273438, -10.962650299072266 ], [ -70.491477966308594, -10.96508884429926 ], [ -70.489921569824219, -10.965690612792969 ], [ -70.484596252441406, -10.96621036529541 ], [ -70.482986450195312, -10.966748237609863 ], [ -70.479866027831974, -10.967988014221191 ], [ -70.475517272949219, -10.971369743347168 ], [ -70.473457336425781, -10.974268913269043 ], [ -70.471496582031136, -10.979109764099121 ], [ -70.470176696777344, -10.980681419372502 ], [ -70.469680786132756, -10.982298851013127 ], [ -70.468032836914006, -10.985468864440861 ], [ -70.466880798339844, -10.986679077148438 ], [ -70.463546752929631, -10.988389015197754 ], [ -70.461830139160099, -10.989740371703988 ], [ -70.458656311035156, -10.990988731384221 ], [ -70.457389831542969, -10.99202823638916 ], [ -70.456138610839787, -10.99341869354248 ], [ -70.454261779785156, -10.996381759643498 ], [ -70.451507568359375, -10.999910354614201 ], [ -70.450569152832031, -11.000821113586426 ], [ -70.446586608886662, -11.008760452270508 ], [ -70.444763183593693, -11.015000343322754 ], [ -70.443557739257699, -11.017128944396973 ], [ -70.442092895507756, -11.01884937286377 ], [ -70.440345764160156, -11.023319244384766 ], [ -70.438262939453125, -11.026809692382812 ], [ -70.438507080078125, -11.028350830078125 ], [ -70.441482543945312, -11.032009124755803 ], [ -70.441848754882812, -11.032840728759766 ], [ -70.441947937011719, -11.033909797668457 ], [ -70.441680908203125, -11.03579044342041 ], [ -70.441177368164062, -11.036858558654785 ], [ -70.439826965331974, -11.038440704345703 ], [ -70.437576293945312, -11.04042816162098 ], [ -70.436737060546875, -11.040748596191406 ], [ -70.433090209960938, -11.040590286254883 ], [ -70.431610107421818, -11.040139198303166 ], [ -70.428565979003849, -11.038470268249455 ], [ -70.426681518554688, -11.038249015808105 ], [ -70.42584228515625, -11.038588523864689 ], [ -70.424797058105469, -11.039478302001839 ], [ -70.423347473144531, -11.039991378784123 ], [ -70.422218322753906, -11.039870262145996 ], [ -70.420066833496037, -11.040590286254883 ], [ -70.416336059570312, -11.040549278259277 ], [ -70.414237976074219, -11.041979789733887 ], [ -70.412857055664062, -11.042220115661507 ], [ -70.411697387695256, -11.043340682983285 ], [ -70.410263061523381, -11.045939445495492 ], [ -70.408287048339844, -11.04755973815918 ], [ -70.407608032226562, -11.047569274902287 ], [ -70.40582275390625, -11.04701042175293 ], [ -70.402847290039062, -11.04755973815918 ], [ -70.401817321777344, -11.046977996826115 ], [ -70.399276733398381, -11.047228813171387 ], [ -70.394889831542912, -11.046580314636174 ], [ -70.393112182617188, -11.046930313110295 ], [ -70.388717651367074, -11.048540115356445 ], [ -70.38360595703125, -11.048808097839355 ], [ -70.382728576660156, -11.049560546874943 ], [ -70.381492614746094, -11.051529884338379 ], [ -70.381072998046818, -11.054709434509164 ], [ -70.379966735839844, -11.057738304138127 ], [ -70.378631591796875, -11.059288024902287 ], [ -70.376052856445312, -11.061309814453068 ], [ -70.375022888183594, -11.06182861328125 ], [ -70.374351501464844, -11.061859130859318 ], [ -70.373519897460881, -11.061409950256291 ], [ -70.372222900390511, -11.060078620910588 ], [ -70.369979858398438, -11.059458732604924 ], [ -70.368591308593693, -11.059617996215763 ], [ -70.365013122558594, -11.06061935424799 ], [ -70.360122680664062, -11.059968948364258 ], [ -70.354537963867188, -11.060049057006836 ], [ -70.352958679199105, -11.061428070068359 ], [ -70.351966857910099, -11.062679290771484 ], [ -70.351387023925781, -11.065140724182072 ], [ -70.350906372070312, -11.065888404846135 ], [ -70.349411010742131, -11.067019462585449 ], [ -70.347877502441349, -11.067590713500977 ], [ -70.342300415039062, -11.067830085754395 ], [ -70.340797424316406, -11.067218780517521 ], [ -70.339363098144531, -11.067118644714355 ], [ -70.338783264160156, -11.067408561706543 ], [ -70.337501525878849, -11.068799018859863 ], [ -70.336616516113224, -11.06902027130127 ], [ -70.332496643066406, -11.066888809204045 ], [ -70.329986572265625, -11.066080093383789 ], [ -70.328376770019531, -11.065909385681152 ], [ -70.326866149902344, -11.066288948059025 ], [ -70.322418212890568, -11.06842041015625 ], [ -70.321289062499943, -11.06851768493641 ], [ -70.318908691406136, -11.068120002746582 ], [ -70.317802429199219, -11.068140029907227 ], [ -70.316497802734318, -11.069459915161076 ], [ -70.315689086914062, -11.069899559020996 ], [ -70.3140869140625, -11.07023906707758 ], [ -70.310859680175781, -11.070639610290414 ], [ -70.309165954589787, -11.070038795471191 ], [ -70.306053161621094, -11.070210456848031 ], [ -70.304946899414062, -11.070068359374943 ], [ -70.304039001464844, -11.069488525390568 ], [ -70.302536010742188, -11.067569732666016 ], [ -70.301666259765625, -11.066841125488224 ], [ -70.300598144531136, -11.066570281982422 ], [ -70.297943115234375, -11.066619873046818 ], [ -70.296829223632812, -11.066428184509221 ], [ -70.295227050781193, -11.064737319946289 ], [ -70.290290832519474, -11.062669754028263 ], [ -70.28717041015625, -11.0589599609375 ], [ -70.285606384277287, -11.058579444885254 ], [ -70.284278869628849, -11.057669639587289 ], [ -70.282867431640625, -11.057351112365723 ], [ -70.281745910644531, -11.057469367980957 ], [ -70.280090332031193, -11.058218955993596 ], [ -70.276641845703068, -11.06022930145258 ], [ -70.274787902832031, -11.060258865356445 ], [ -70.271530151367188, -11.058479309082031 ], [ -70.269241333007812, -11.058699607849064 ], [ -70.267761230468693, -11.057999610900765 ], [ -70.267127990722543, -11.057318687438965 ], [ -70.266822814941349, -11.056447982788086 ], [ -70.267166137695312, -11.053679466247559 ], [ -70.266838073730355, -11.053158760070801 ], [ -70.265998840332031, -11.052618980407715 ], [ -70.264846801757812, -11.05236911773676 ], [ -70.262413024902344, -11.053199768066349 ], [ -70.260528564453068, -11.05333042144764 ], [ -70.259140014648438, -11.053199768066349 ], [ -70.255401611328125, -11.051369667053223 ], [ -70.253448486328125, -11.051031112670842 ], [ -70.251960754394418, -11.05077075958252 ], [ -70.249465942382756, -11.049050331115723 ], [ -70.245338439941406, -11.049560546874943 ], [ -70.243232727050781, -11.048279762268066 ], [ -70.242431640625, -11.048109054565316 ], [ -70.24151611328125, -11.048581123352051 ], [ -70.239601135253906, -11.050449371337891 ], [ -70.238632202148438, -11.051098823547306 ], [ -70.237251281738224, -11.051589012145996 ], [ -70.236648559570312, -11.051810264587402 ], [ -70.234809875488281, -11.052089691162109 ], [ -70.234321594238168, -11.052169799804688 ], [ -70.232620239257812, -11.052220344543457 ], [ -70.231338500976506, -11.051969528198242 ], [ -70.231071472167912, -11.051400184631291 ], [ -70.230537414550781, -11.05026912689209 ], [ -70.229637145996037, -11.050098419189453 ], [ -70.228752136230412, -11.050408363342285 ], [ -70.228210449218693, -11.050809860229492 ], [ -70.226676940917912, -11.051939964294377 ], [ -70.225868225097656, -11.052300453186035 ], [ -70.224220275878906, -11.05215930938715 ], [ -70.221305847167969, -11.051320075988713 ], [ -70.219680786132812, -11.051178932189941 ], [ -70.218528747558594, -11.051289558410588 ], [ -70.217765808105469, -11.05181884765625 ], [ -70.216629028320312, -11.052097320556641 ], [ -70.214317321777344, -11.05236911773676 ], [ -70.212936401367131, -11.051539421081486 ], [ -70.210845947265568, -11.051320075988713 ], [ -70.209487915039006, -11.051589012145996 ], [ -70.206367492675724, -11.053150177001953 ], [ -70.203826904296875, -11.053610801696777 ], [ -70.201301574706974, -11.053628921508732 ], [ -70.198982238769531, -11.052530288696289 ], [ -70.198501586914062, -11.05247974395752 ], [ -70.195289611816349, -11.052138328552132 ], [ -70.192626953124943, -11.051219940185547 ], [ -70.191673278808537, -11.050579071044922 ], [ -70.191116333007699, -11.049799919128418 ], [ -70.191017150878849, -11.048940658569279 ], [ -70.191337585449219, -11.047328948974609 ], [ -70.190956115722656, -11.046740531921387 ], [ -70.180023193359318, -11.044528007507324 ], [ -70.178886413574162, -11.043409347534123 ], [ -70.178550720214844, -11.041848182678166 ], [ -70.178039550781193, -11.041357994079476 ], [ -70.176879882812443, -11.041339874267578 ], [ -70.176712036132756, -11.041489601135197 ], [ -70.175857543945199, -11.042248725891056 ], [ -70.174476623535156, -11.042499542236271 ], [ -70.173080444335881, -11.042449951171875 ], [ -70.171485900878906, -11.041569709777775 ], [ -70.16845703125, -11.042158126830998 ], [ -70.167709350585938, -11.041838645934945 ], [ -70.166427612304688, -11.040088653564453 ], [ -70.165466308593636, -11.039890289306641 ], [ -70.164688110351506, -11.040288925170785 ], [ -70.163642883300724, -11.041889190673828 ], [ -70.162956237792912, -11.042458534240609 ], [ -70.161758422851562, -11.042720794677621 ], [ -70.160896301269531, -11.04246807098383 ], [ -70.159835815429574, -11.041538238525334 ], [ -70.158966064453068, -11.040182113647404 ], [ -70.158866882324162, -11.038768768310547 ], [ -70.159172058105355, -11.036028861999512 ], [ -70.158897399902344, -11.035419464111328 ], [ -70.158218383788949, -11.034760475158691 ], [ -70.157173156738281, -11.034239768981934 ], [ -70.155799865722599, -11.034508705139103 ], [ -70.155113220214844, -11.034379005432129 ], [ -70.152786254882812, -11.03245830535883 ], [ -70.15069580078125, -11.031438827514648 ], [ -70.145606994628849, -11.030689239501896 ], [ -70.144088745117131, -11.030238151550293 ], [ -70.142768859863168, -11.029290199279728 ], [ -70.141326904296818, -11.027739524841309 ], [ -70.140892028808594, -11.026688575744572 ], [ -70.140769958496094, -11.025779724121094 ], [ -70.140663146972599, -11.024868011474553 ], [ -70.140388488769531, -11.024459838867188 ], [ -70.139518737792912, -11.024197578430176 ], [ -70.135879516601506, -11.023778915405217 ], [ -70.134880065917969, -11.023670196533203 ], [ -70.133537292480469, -11.023239135742131 ], [ -70.132987976074219, -11.022929191589299 ], [ -70.132316589355469, -11.022550582885629 ], [ -70.131149291992188, -11.021450042724496 ], [ -70.130012512207031, -11.019968032836857 ], [ -70.129791259765568, -11.019518852233773 ], [ -70.128196716308594, -11.016258239746094 ], [ -70.125846862792969, -11.013697624206486 ], [ -70.124336242675724, -11.012639045715332 ], [ -70.12264251708973, -11.011850357055607 ], [ -70.120048522949162, -11.011198043823129 ], [ -70.11859130859375, -11.010828971862736 ], [ -70.118461608886719, -11.01072883605957 ], [ -70.117279052734318, -11.009810447692871 ], [ -70.116889953613224, -11.009269714355469 ], [ -70.116943359375, -11.008725166320801 ], [ -70.118118286132812, -11.007759094238281 ], [ -70.118263244628906, -11.006829261779785 ], [ -70.117759704589787, -11.006091117858887 ], [ -70.116676330566406, -11.005158424377385 ], [ -70.114761352539062, -11.004299163818359 ], [ -70.112747192382812, -11.003989219665527 ], [ -70.112319946289006, -11.004599571228027 ], [ -70.111923217773438, -11.00604057312006 ], [ -70.111335754394531, -11.00811862945551 ], [ -70.110130310058537, -11.008801460266113 ], [ -70.109390258788949, -11.008528709411564 ], [ -70.109031677246094, -11.008390426635742 ], [ -70.107887268066406, -11.007180213928223 ], [ -70.107559204101506, -11.005899429321289 ], [ -70.107719421386719, -11.003328323364258 ], [ -70.107948303222599, -11.002849578857365 ], [ -70.108322143554631, -11.002108573913574 ], [ -70.108406066894474, -10.999458312988281 ], [ -70.107688903808594, -10.997649192810002 ], [ -70.107841491699162, -10.995860099792424 ], [ -70.107276916503849, -10.994378089904728 ], [ -70.105926513671818, -10.993159294128418 ], [ -70.102462768554688, -10.992018699645939 ], [ -70.102241516113281, -10.991998672485295 ], [ -70.100166320800781, -10.991770744323617 ], [ -70.098861694335881, -10.992180824279728 ], [ -70.098480224609318, -10.992559432983398 ], [ -70.097908020019474, -10.993128776550293 ], [ -70.097763061523438, -10.994501113891545 ], [ -70.098854064941406, -10.995814323425293 ], [ -70.099105834960938, -10.995909690856934 ], [ -70.101371765136662, -10.994610786437988 ], [ -70.101997375488281, -10.994248390197754 ], [ -70.102378845214844, -10.994230270385742 ], [ -70.102737426757812, -10.994430541992131 ], [ -70.103912353515625, -10.995942115783691 ], [ -70.104698181152287, -10.997598648071289 ], [ -70.104690551757756, -10.998779296875 ], [ -70.104156494140625, -10.999689102172852 ], [ -70.103523254394531, -10.99993896484375 ], [ -70.102333068847543, -10.99993896484375 ], [ -70.096900939941406, -10.998038291931096 ], [ -70.096687316894474, -10.997969627380257 ], [ -70.095703125, -10.997439384460449 ], [ -70.094779968261662, -10.996409416198674 ], [ -70.094451904296875, -10.995330810546875 ], [ -70.094429016113281, -10.994430541992131 ], [ -70.094802856445312, -10.992890357971191 ], [ -70.094551086425781, -10.99131965637207 ], [ -70.094650268554688, -10.990109443664551 ], [ -70.094558715820312, -10.989529609680062 ], [ -70.093727111816349, -10.988430023193303 ], [ -70.092521667480469, -10.987738609313908 ], [ -70.091407775878906, -10.987600326538086 ], [ -70.09027099609375, -10.987859725952148 ], [ -70.090019226074162, -10.987998962402344 ], [ -70.089279174804688, -10.988389015197754 ], [ -70.087539672851506, -10.989891052246094 ], [ -70.085906982421818, -10.990068435668945 ], [ -70.0855712890625, -10.989730834960938 ], [ -70.08516693115223, -10.989330291748047 ], [ -70.084358215332031, -10.986908912658691 ], [ -70.083976745605469, -10.98621940612793 ], [ -70.083801269531193, -10.985899925231934 ], [ -70.082916259765625, -10.98517990112299 ], [ -70.081802368164006, -10.984889984130803 ], [ -70.080986022949219, -10.985329627990609 ], [ -70.080429077148438, -10.98607063293457 ], [ -70.080772399902287, -10.988630294799805 ], [ -70.080726623535156, -10.989299774169865 ], [ -70.080490112304574, -10.989519119262638 ], [ -70.077690124511662, -10.989119529724121 ], [ -70.07611083984375, -10.989230155944824 ], [ -70.073455810546875, -10.989978790283089 ], [ -70.071556091308594, -10.9914293289184 ], [ -70.068572998046761, -10.9931383132934 ], [ -70.067466735839844, -10.993330001830998 ], [ -70.065147399902344, -10.993169784545842 ], [ -70.063949584960938, -10.992408752441406 ], [ -70.063507080078068, -10.991677284240723 ], [ -70.064857482910156, -10.988789558410645 ], [ -70.064987182617188, -10.98753833770752 ], [ -70.064819335937443, -10.986968994140625 ], [ -70.064002990722656, -10.986929893493652 ], [ -70.060836791992131, -10.987910270690918 ], [ -70.059158325195312, -10.987939834594727 ], [ -70.058532714843693, -10.987949371337834 ], [ -70.055519104003906, -10.985959053039551 ], [ -70.050506591796875, -10.983748435974064 ], [ -70.049209594726449, -10.982830047607308 ], [ -70.047630310058594, -10.981198310851994 ], [ -70.045516967773438, -10.977328300476074 ], [ -70.045089721679631, -10.97687911987299 ], [ -70.044517517089787, -10.976889610290414 ], [ -70.043182373046818, -10.977519035339355 ], [ -70.041831970214787, -10.977849960327148 ], [ -70.040679931640625, -10.977749824523926 ], [ -70.039833068847599, -10.97736930847168 ], [ -70.039367675781193, -10.976659774780217 ], [ -70.038619995117131, -10.974529266357308 ], [ -70.038002014160156, -10.972758293151799 ], [ -70.037452697753849, -10.972048759460449 ], [ -70.036666870117188, -10.971538543701115 ], [ -70.035797119140625, -10.971249580383301 ], [ -70.034896850585881, -10.971349716186523 ], [ -70.033515930175781, -10.972048759460449 ], [ -70.032447814941406, -10.972590446472111 ], [ -70.027641296386662, -10.973979949951172 ], [ -70.024116516113224, -10.972941398620605 ], [ -70.019866943359375, -10.971259117126408 ], [ -70.016609191894531, -10.969629287719727 ], [ -70.015083312988281, -10.969079971313477 ], [ -70.011878967285156, -10.967928886413461 ], [ -70.007812499999943, -10.965008735656681 ], [ -70.004798889160156, -10.963409423828125 ], [ -70.003669738769531, -10.961979866027832 ], [ -70.002410888671875, -10.961409568786564 ], [ -70.001663208007812, -10.96151065826416 ], [ -70.001121520996037, -10.961979866027832 ], [ -70.000396728515625, -10.965041160583439 ], [ -69.999008178710938, -10.96466064453125 ], [ -69.997268676757812, -10.96317005157465 ], [ -69.995346069335938, -10.958970069885254 ], [ -69.995018005371037, -10.957168579101506 ], [ -69.995498657226506, -10.955618858337346 ], [ -69.996101379394531, -10.953700065612736 ], [ -69.995498657226506, -10.951389312744141 ], [ -69.994430541992188, -10.950249671936035 ], [ -69.993232727050668, -10.950379371643066 ], [ -69.989822387695312, -10.953630447387695 ], [ -69.98974609375, -10.953700065612736 ], [ -69.988349914550724, -10.954749107360783 ], [ -69.986618041992131, -10.955410003662109 ], [ -69.984931945800668, -10.955489158630371 ], [ -69.983909606933594, -10.954818725585938 ], [ -69.983551025390625, -10.954069137573185 ], [ -69.983551025390625, -10.95320987701416 ], [ -69.983535766601562, -10.951789855957031 ], [ -69.983848571777287, -10.950369834899846 ], [ -69.984222412109375, -10.948687553405762 ], [ -69.984230041503849, -10.947308540344238 ], [ -69.983879089355412, -10.945968627929688 ], [ -69.983047485351562, -10.944331169128418 ], [ -69.983070373535156, -10.943678855895939 ], [ -69.982292175292969, -10.942740440368596 ], [ -69.981369018554631, -10.94276046752924 ], [ -69.980445861816349, -10.943380355834904 ], [ -69.979156494140625, -10.946368217468205 ], [ -69.979110717773381, -10.946499824523869 ], [ -69.977172851562443, -10.948718070983887 ], [ -69.975952148437443, -10.949169158935547 ], [ -69.974662780761719, -10.949039459228459 ], [ -69.973457336425724, -10.948360443115234 ], [ -69.971557617187443, -10.946719169616642 ], [ -69.969886779785156, -10.945999145507756 ], [ -69.969772338867074, -10.945948600769043 ], [ -69.96923828125, -10.945219993591252 ], [ -69.968681335449219, -10.94320011138916 ], [ -69.965606689453125, -10.941650390625 ], [ -69.96380615234375, -10.940059661865234 ], [ -69.961708068847656, -10.93964862823475 ], [ -69.958908081054688, -10.940838813781738 ], [ -69.958091735839844, -10.940608978271484 ], [ -69.957595825195312, -10.939958572387582 ], [ -69.957740783691349, -10.939159393310547 ], [ -69.960876464843693, -10.937580108642578 ], [ -69.961135864257812, -10.937288284301644 ], [ -69.961891174316406, -10.936478614807072 ], [ -69.961875915527344, -10.935729026794434 ], [ -69.960762023925781, -10.934651374816895 ], [ -69.958946228027344, -10.9343004226684 ], [ -69.958312988281193, -10.934869766235295 ], [ -69.957992553710938, -10.935770034790039 ], [ -69.957862854003906, -10.936160087585392 ], [ -69.956947326660156, -10.937450408935547 ], [ -69.956268310546875, -10.937688827514648 ], [ -69.955535888671818, -10.937299728393555 ], [ -69.953956604003906, -10.935138702392521 ], [ -69.953468322753906, -10.934069633483773 ], [ -69.953079223632699, -10.933208465576115 ], [ -69.953109741210938, -10.93274974822998 ], [ -69.953216552734375, -10.931198120117131 ], [ -69.954048156738281, -10.930010795593262 ], [ -69.954452514648438, -10.928730010986271 ], [ -69.953598022460938, -10.928001403808594 ], [ -69.95021820068348, -10.92625904083252 ], [ -69.947792053222656, -10.925309181213322 ], [ -69.947158813476506, -10.925368309020939 ], [ -69.945632934570256, -10.926040649414062 ], [ -69.943908691406193, -10.926421165466252 ], [ -69.941719055175724, -10.926909446716252 ], [ -69.941307067871094, -10.927000045776367 ], [ -69.938941955566349, -10.925571441650334 ], [ -69.937171936035156, -10.924500465393066 ], [ -69.936569213867131, -10.923959732055664 ], [ -69.934951782226506, -10.922531127929631 ], [ -69.934013366699219, -10.92218017578125 ], [ -69.931838989257812, -10.923000335693303 ], [ -69.930267333984318, -10.923230171203556 ], [ -69.929466247558594, -10.923489570617676 ], [ -69.928337097167969, -10.923858642578068 ], [ -69.925926208496094, -10.924000740051213 ], [ -69.925048828125, -10.924310684204045 ], [ -69.923736572265625, -10.925389289855957 ], [ -69.923286437988281, -10.926230430602971 ], [ -69.924087524413949, -10.929569244384766 ], [ -69.92427825927723, -10.931670188903752 ], [ -69.923919677734375, -10.932419776916504 ], [ -69.923072814941406, -10.933279037475529 ], [ -69.922531127929631, -10.933480262756348 ], [ -69.921707153320199, -10.933792114257756 ], [ -69.92059326171875, -10.933780670165959 ], [ -69.91876220703125, -10.933338165283203 ], [ -69.917633056640625, -10.932269096374512 ], [ -69.917312622070256, -10.931419372558537 ], [ -69.917327880859375, -10.930758476257324 ], [ -69.917892456054574, -10.92814922332758 ], [ -69.917861938476506, -10.926690101623535 ], [ -69.917488098144474, -10.92593955993641 ], [ -69.916519165039006, -10.92494010925293 ], [ -69.915908813476562, -10.92460918426508 ], [ -69.914047241210881, -10.923618316650391 ], [ -69.912841796875, -10.923230171203556 ], [ -69.909538269042969, -10.923700332641602 ], [ -69.906288146972656, -10.923520088195744 ], [ -69.903861999511662, -10.922369003295898 ], [ -69.902442932128793, -10.920680046081543 ], [ -69.901237487792969, -10.920458793640137 ], [ -69.900276184082031, -10.920698165893441 ], [ -69.896247863769531, -10.922619819641113 ], [ -69.890266418457031, -10.92339038848877 ], [ -69.887359619140568, -10.924348831176758 ], [ -69.884811401367188, -10.924899101257267 ], [ -69.883049011230412, -10.924989700317269 ], [ -69.882667541503849, -10.924738883972168 ], [ -69.880386352539006, -10.924289703369141 ], [ -69.87835693359375, -10.924500465393066 ], [ -69.877456665038949, -10.925169944763127 ], [ -69.87697601318348, -10.92584037780756 ], [ -69.875602722167969, -10.929610252380371 ], [ -69.874740600585938, -10.930589675903263 ], [ -69.874046325683594, -10.930999755859375 ], [ -69.872276306152287, -10.930447578430176 ], [ -69.869506835937443, -10.927968978881836 ], [ -69.867828369140625, -10.927008628845158 ], [ -69.865615844726506, -10.926309585571232 ], [ -69.864059448242188, -10.926468849182072 ], [ -69.862251281738281, -10.92743968963623 ], [ -69.861351013183594, -10.928459167480412 ], [ -69.860870361328125, -10.929840087890625 ], [ -69.860527038574219, -10.932868957519531 ], [ -69.859802246093693, -10.933849334716797 ], [ -69.859207153320256, -10.934200286865234 ], [ -69.858360290527287, -10.934138298034611 ], [ -69.857955932617188, -10.933898925781193 ], [ -69.857788085937443, -10.933800697326603 ], [ -69.857086181640625, -10.932839393615723 ], [ -69.856163024902287, -10.930540084838867 ], [ -69.855590820312443, -10.928338050842285 ], [ -69.855300903320256, -10.927239418029728 ], [ -69.854469299316293, -10.925799369812012 ], [ -69.853378295898438, -10.924810409545898 ], [ -69.851539611816406, -10.924538612365723 ], [ -69.845787048339787, -10.924738883972168 ], [ -69.843795776367188, -10.925140380859375 ], [ -69.842391967773438, -10.926339149475098 ], [ -69.841751098632756, -10.927659034729004 ], [ -69.841232299804688, -10.928718566894474 ], [ -69.84002685546875, -10.929610252380371 ], [ -69.838180541992188, -10.929390907287598 ], [ -69.836837768554688, -10.928918838500977 ], [ -69.83447265625, -10.92798900604248 ], [ -69.832916259765511, -10.928180694579964 ], [ -69.832389831542969, -10.928730010986271 ], [ -69.832176208496094, -10.929928779602051 ], [ -69.832260131835938, -10.930109024047795 ], [ -69.83339691162098, -10.932579040527344 ], [ -69.83339691162098, -10.933320045471135 ], [ -69.832801818847599, -10.933728218078556 ], [ -69.823898315429688, -10.933590888977051 ], [ -69.823059082031193, -10.933149337768555 ], [ -69.821632385253849, -10.93187141418457 ], [ -69.816726684570312, -10.930748939514103 ], [ -69.814559936523438, -10.929958343505803 ], [ -69.813117980957031, -10.928800582885629 ], [ -69.812736511230469, -10.927859306335392 ], [ -69.812606811523324, -10.926309585571232 ], [ -69.811836242675724, -10.92584037780756 ], [ -69.809341430664006, -10.926568984985352 ], [ -69.80731201171875, -10.926858901977482 ], [ -69.803062438964787, -10.926639556884709 ], [ -69.800750732421818, -10.926790237426701 ], [ -69.799987792968693, -10.927578926086426 ], [ -69.799186706542969, -10.930028915405217 ], [ -69.797958374023438, -10.932181358337402 ], [ -69.79677581787098, -10.933229446411133 ], [ -69.794548034667912, -10.934089660644474 ], [ -69.793121337890568, -10.933441162109375 ], [ -69.79229736328125, -10.932329177856332 ], [ -69.791496276855412, -10.93126010894764 ], [ -69.790237426757812, -10.930168151855412 ], [ -69.789009094238281, -10.929538726806641 ], [ -69.787986755371037, -10.929518699645996 ], [ -69.787109374999943, -10.9298095703125 ], [ -69.785057067871094, -10.931079864501953 ], [ -69.781295776367131, -10.93513011932373 ], [ -69.779838562011719, -10.935430526733398 ], [ -69.778442382812443, -10.935318946838379 ], [ -69.775337219238281, -10.934348106384221 ], [ -69.773086547851506, -10.932419776916504 ], [ -69.772315979003906, -10.931288719177189 ], [ -69.771186828613224, -10.93018913269043 ], [ -69.770111083984375, -10.929958343505803 ], [ -69.769256591796875, -10.930309295654297 ], [ -69.768386840820312, -10.93113899230957 ], [ -69.768150329589787, -10.932050704956055 ], [ -69.768226623535099, -10.932860374450684 ], [ -69.769210815429574, -10.933728218078556 ], [ -69.770637512206974, -10.934229850768986 ], [ -69.771492004394474, -10.934530258178711 ], [ -69.772293090820312, -10.935171127319279 ], [ -69.772819519042912, -10.935920715332031 ], [ -69.77398681640625, -10.938698768615609 ], [ -69.773857116699162, -10.939469337463379 ], [ -69.772857666015625, -10.940299034118652 ], [ -69.771339416503906, -10.940938949584961 ], [ -69.771141052246094, -10.94102954864502 ], [ -69.765357971191406, -10.942168235778752 ], [ -69.764472961425781, -10.942129135131779 ], [ -69.76373291015625, -10.941788673400879 ], [ -69.763092041015568, -10.940079689025879 ], [ -69.762870788574219, -10.939838409423828 ], [ -69.762290954589844, -10.939188957214299 ], [ -69.761253356933594, -10.939139366149902 ], [ -69.760391235351562, -10.939590454101506 ], [ -69.759590148925781, -10.940520286560002 ], [ -69.759162902831974, -10.941638946533203 ], [ -69.75795745849598, -10.943388938903752 ], [ -69.756828308105469, -10.945028305053711 ], [ -69.755882263183594, -10.945910453796387 ], [ -69.754417419433537, -10.946709632873421 ], [ -69.753219604492188, -10.947729110717773 ], [ -69.752120971679631, -10.948960304260197 ], [ -69.751556396484318, -10.950439453125 ], [ -69.751052856445312, -10.951199531555176 ], [ -69.748672485351506, -10.952778816223088 ], [ -69.747268676757756, -10.954239845275765 ], [ -69.746368408203125, -10.956751823425236 ], [ -69.746376037597656, -10.959778785705566 ], [ -69.745376586914062, -10.961528778076115 ], [ -69.744049072265625, -10.962519645690918 ], [ -69.741096496582031, -10.964078903198185 ], [ -69.739585876464844, -10.965549468994084 ], [ -69.73964691162098, -10.966218948364258 ], [ -69.740699768066293, -10.968170166015625 ], [ -69.741386413574219, -10.970259666442871 ], [ -69.741371154785156, -10.972358703613281 ], [ -69.740631103515625, -10.973740577697754 ], [ -69.739288330078125, -10.974868774414062 ], [ -69.738265991210938, -10.974989891052246 ], [ -69.735916137695256, -10.974209785461426 ], [ -69.733589172363281, -10.972518920898381 ], [ -69.732460021972599, -10.972169876098576 ], [ -69.731460571289062, -10.971869468688965 ], [ -69.729278564453125, -10.970378875732422 ], [ -69.728088378906193, -10.969570159911996 ], [ -69.727386474609375, -10.969329833984375 ], [ -69.724716186523438, -10.96675968170166 ], [ -69.723587036132812, -10.964959144592285 ], [ -69.722763061523381, -10.964450836181641 ], [ -69.721893310546818, -10.964838027954045 ], [ -69.720687866210938, -10.965849876403809 ], [ -69.719512939453068, -10.967709541320801 ], [ -69.719100952148438, -10.969160079956055 ], [ -69.718887329101562, -10.96992111206049 ], [ -69.71875, -10.973961830139103 ], [ -69.718498229980469, -10.97467041015625 ], [ -69.717689514160099, -10.975541114807129 ], [ -69.717262268066406, -10.975721359252816 ], [ -69.716423034667969, -10.975760459899902 ], [ -69.7149658203125, -10.975149154662972 ], [ -69.713630676269531, -10.974950790405217 ], [ -69.713317871093693, -10.974909782409668 ], [ -69.711692810058537, -10.974320411682129 ], [ -69.70965576171875, -10.972709655761662 ], [ -69.707611083984375, -10.97019004821766 ], [ -69.706047058105412, -10.968268394470215 ], [ -69.703163146972656, -10.96675968170166 ], [ -69.701408386230355, -10.965398788452092 ], [ -69.700660705566406, -10.965279579162541 ], [ -69.69970703125, -10.965839385986271 ], [ -69.699386596679631, -10.966469764709473 ], [ -69.699386596679631, -10.96760082244873 ], [ -69.699546813964844, -10.968158721923828 ], [ -69.699859619140568, -10.969280242919865 ], [ -69.699623107910156, -10.971190452575684 ], [ -69.698722839355412, -10.972371101379395 ], [ -69.697875976562386, -10.972459793090763 ], [ -69.697113037109261, -10.971669197082463 ], [ -69.697036743164062, -10.971039772033691 ], [ -69.696701049804631, -10.970360755920296 ], [ -69.69647216796875, -10.969888687133732 ], [ -69.6962890625, -10.968619346618652 ], [ -69.695541381835938, -10.967920303344727 ], [ -69.692901611328068, -10.965460777282715 ], [ -69.692047119140568, -10.964029312133789 ], [ -69.691520690917969, -10.963550567626896 ], [ -69.691238403320312, -10.963291168212891 ], [ -69.690299987792969, -10.963250160217285 ], [ -69.688606262206974, -10.96454906463623 ], [ -69.687347412109375, -10.964739799499512 ], [ -69.686355590820312, -10.964191436767578 ], [ -69.685287475585824, -10.963209152221623 ], [ -69.682228088378849, -10.961600303649846 ], [ -69.681442260742131, -10.961179733276367 ], [ -69.681282043456918, -10.961151123046818 ], [ -69.680259704589844, -10.960929870605469 ], [ -69.676345825195312, -10.959419250488281 ], [ -69.673942565917855, -10.959860801696777 ], [ -69.673812866210881, -10.959880828857422 ], [ -69.670219421386605, -10.961600303649846 ], [ -69.668556213378906, -10.961809158325195 ], [ -69.6676025390625, -10.961128234863281 ], [ -69.667488098144531, -10.960980415344181 ], [ -69.667030334472656, -10.960309982299805 ], [ -69.666023254394418, -10.958840370178223 ], [ -69.664642333984375, -10.957478523254338 ], [ -69.663146972656193, -10.956398963928166 ], [ -69.660285949706974, -10.953009605407715 ], [ -69.65966796875, -10.952588081359806 ], [ -69.658607482910156, -10.952288627624398 ], [ -69.654067993164006, -10.952130317687931 ], [ -69.650917053222656, -10.952930450439453 ], [ -69.647682189941349, -10.953240394592285 ], [ -69.644996643066406, -10.953960418701172 ], [ -69.638061523437443, -10.956589698791447 ], [ -69.635116577148381, -10.957168579101506 ], [ -69.633750915527344, -10.957219123840332 ], [ -69.633003234863224, -10.956669807434082 ], [ -69.631256103515625, -10.9560289382934 ], [ -69.629226684570312, -10.954559326171875 ], [ -69.626228332519474, -10.953329086303711 ], [ -69.623809814453125, -10.950778007507324 ], [ -69.623100280761662, -10.950297355651855 ], [ -69.621780395507812, -10.949848175048828 ], [ -69.619728088378906, -10.949848175048828 ], [ -69.618865966796875, -10.950179100036564 ], [ -69.617851257324162, -10.95004940032959 ], [ -69.616119384765568, -10.950899124145451 ], [ -69.612457275390625, -10.957059860229492 ], [ -69.611938476562443, -10.957410812377816 ], [ -69.610893249511662, -10.957379341125431 ], [ -69.609916687011662, -10.956868171691895 ], [ -69.609573364257812, -10.955799102783203 ], [ -69.611526489257812, -10.953558921813965 ], [ -69.611976623535156, -10.95259857177723 ], [ -69.612030029296818, -10.951149940490723 ], [ -69.611763000488168, -10.94844913482666 ], [ -69.611236572265625, -10.947078704833984 ], [ -69.609840393066349, -10.945738792419434 ], [ -69.608078002929688, -10.94511890411377 ], [ -69.605690002441406, -10.944770812988224 ], [ -69.602928161621094, -10.943949699401855 ], [ -69.601760864257812, -10.943388938903752 ], [ -69.599838256835824, -10.941940307617188 ], [ -69.598709106445312, -10.941499710083008 ], [ -69.597709655761662, -10.941630363464355 ], [ -69.59674072265625, -10.942191123962402 ], [ -69.594009399414006, -10.945059776306152 ], [ -69.592590332031136, -10.946081161499023 ], [ -69.591560363769531, -10.946038246154671 ], [ -69.589637756347543, -10.945328712463379 ], [ -69.58843994140625, -10.945381164550781 ], [ -69.587661743164062, -10.945699691772461 ], [ -69.585418701171818, -10.947468757629281 ], [ -69.584030151367188, -10.947970390319767 ], [ -69.583282470703125, -10.947607994079533 ], [ -69.583023071289006, -10.947250366210881 ], [ -69.583030700683537, -10.946128845214844 ], [ -69.583282470703125, -10.945539474487305 ], [ -69.58400726318348, -10.944579124450684 ], [ -69.585906982421818, -10.943649291992188 ], [ -69.588066101074219, -10.94204044342041 ], [ -69.588417053222656, -10.941399574279785 ], [ -69.588462829589787, -10.940779685974121 ], [ -69.587562561035156, -10.940290451049805 ], [ -69.582077026367131, -10.940340042114144 ], [ -69.579322814941349, -10.940768241882324 ], [ -69.576988220214844, -10.941399574279785 ], [ -69.57637786865223, -10.94180965423584 ], [ -69.574508666992188, -10.944879531860352 ], [ -69.573516845703011, -10.945838928222656 ], [ -69.573516845703011, -10.946468353271428 ], [ -69.574195861816406, -10.947468757629281 ], [ -69.574790954589844, -10.948919296264592 ], [ -69.574897766113281, -10.949739456176758 ], [ -69.574661254882699, -10.950148582458496 ], [ -69.574043273925781, -10.950261116027832 ], [ -69.57318115234375, -10.949898719787598 ], [ -69.571571350097656, -10.948970794677621 ], [ -69.569717407226562, -10.947429656982365 ], [ -69.569206237792912, -10.947607994079533 ], [ -69.568901062011719, -10.94805908203125 ], [ -69.568740844726506, -10.948880195617619 ], [ -69.568862915039062, -10.950718879699707 ], [ -69.56915283203125, -10.951199531555176 ], [ -69.570320129394531, -10.952198028564396 ], [ -69.567726135253906, -10.951840400695744 ], [ -69.566032409667969, -10.9543199539184 ], [ -69.565177917480469, -10.955497741699219 ], [ -69.565254211425781, -10.955569267272949 ], [ -69.558631896972599, -10.96625804901123 ], [ -69.554580688476562, -10.972810745239258 ], [ -69.533370971679574, -11.007059097290039 ], [ -69.512527465820312, -11.040690422057992 ], [ -69.499786376953068, -11.059068679809513 ], [ -69.497802734375, -11.064778327941895 ], [ -69.485778808593636, -11.082988739013672 ], [ -69.47100830078125, -11.105348587036133 ], [ -69.464080810546875, -11.115838050842285 ], [ -69.453262329101449, -11.132208824157658 ], [ -69.444351196289062, -11.146629333496094 ], [ -69.43060302734375, -11.168839454650879 ], [ -69.363792419433537, -11.276769638061467 ], [ -69.350868225097656, -11.29761886596674 ], [ -69.332267761230469, -11.326909065246525 ], [ -69.328018188476506, -11.331459999084473 ], [ -69.327316284179688, -11.332199096679688 ], [ -69.327247619628849, -11.332281112670842 ], [ -69.326782226562443, -11.332779884338379 ], [ -69.326591491699162, -11.333189964294434 ], [ -69.321891784667969, -11.343268394470158 ], [ -69.318962097167912, -11.348099708557072 ], [ -69.30023193359375, -11.378959655761662 ], [ -69.284393310546875, -11.405069351196175 ], [ -69.282882690429688, -11.406268119812012 ], [ -69.281295776367131, -11.407530784606934 ], [ -69.274330139160099, -11.419749259948674 ], [ -69.268196105957031, -11.430500030517578 ], [ -69.262870788574162, -11.438940048217773 ], [ -69.255577087402344, -11.450483322143555 ], [ -69.248260498046875, -11.462070465087891 ], [ -69.246131896972656, -11.460509300231934 ], [ -69.220420837402344, -11.500188827514648 ], [ -69.104530334472656, -11.679409027099609 ], [ -69.000396728515625, -11.859109878539925 ], [ -68.970222473144418, -11.912639617919865 ], [ -68.952926635742131, -11.944308280944824 ], [ -68.95147705078125, -11.947068214416504 ], [ -68.928787231445312, -11.983589172363224 ], [ -68.923797607421875, -11.991619110107365 ], [ -68.905113220214844, -12.028457641601562 ], [ -68.902847290039062, -12.03715801239008 ], [ -68.895851135253906, -12.050148963928223 ], [ -68.888679504394474, -12.062491416931152 ], [ -68.887329101562443, -12.065138816833496 ], [ -68.879768371582031, -12.080010414123535 ], [ -68.659538269042969, -12.488909721374455 ], [ -68.656883239746094, -12.493837356567383 ], [ -68.653396606445256, -12.50031852722168 ], [ -68.653236389160156, -12.500919342041016 ], [ -68.653350830078125, -12.501680374145451 ], [ -68.653106689453068, -12.502070426940861 ], [ -68.653106689453068, -12.503728866577148 ], [ -68.653587341308537, -12.505509376525879 ], [ -68.653861999511662, -12.508620262145996 ], [ -68.6544189453125, -12.510479927062988 ], [ -68.655136108398438, -12.511439323425236 ], [ -68.657310485839787, -12.513030052185059 ], [ -68.659820556640625, -12.515498161315918 ], [ -68.660957336425781, -12.517408370971623 ], [ -68.661293029785099, -12.519228935241699 ], [ -68.660972595214844, -12.520050048828068 ], [ -68.658515930175781, -12.521759033203068 ], [ -68.657020568847599, -12.523138046264592 ], [ -68.65545654296875, -12.525918960571175 ], [ -68.654937744140511, -12.527759552001896 ], [ -68.65474700927723, -12.530989646911564 ], [ -68.655036926269418, -12.532209396362248 ], [ -68.656227111816406, -12.534420013427678 ], [ -68.657463073730469, -12.535550117492676 ], [ -68.659500122070256, -12.53626823425293 ], [ -68.660957336425781, -12.536209106445312 ], [ -68.661697387695256, -12.535599708557072 ], [ -68.662208557128906, -12.533939361572266 ], [ -68.66192626953125, -12.531378746032601 ], [ -68.66204833984375, -12.529909133911076 ], [ -68.664146423339844, -12.52540111541748 ], [ -68.664649963378849, -12.524717330932617 ], [ -68.665367126464844, -12.524269104003906 ], [ -68.666656494140568, -12.52423000335682 ], [ -68.671249389648324, -12.525130271911621 ], [ -68.673217773437443, -12.525027275085449 ], [ -68.674026489257812, -12.524810791015568 ], [ -68.677062988281136, -12.523170471191349 ], [ -68.678497314453011, -12.522880554199162 ], [ -68.67987060546875, -12.523200035095215 ], [ -68.680915832519531, -12.523989677429199 ], [ -68.682418823242188, -12.525750160217285 ], [ -68.682319641113281, -12.526289939880314 ], [ -68.681076049804688, -12.527400016784668 ], [ -68.680046081542969, -12.527829170227051 ], [ -68.677223205566349, -12.528368949890137 ], [ -68.675697326660099, -12.529628753662109 ], [ -68.674896240234375, -12.531639099121094 ], [ -68.674781799316406, -12.536420822143555 ], [ -68.673255920410156, -12.540669441223088 ], [ -68.673088073730469, -12.541938781738281 ], [ -68.675346374511605, -12.552448272705021 ], [ -68.67610931396473, -12.553359031677246 ], [ -68.679298400878906, -12.554660797119084 ], [ -68.686737060546875, -12.555298805236816 ], [ -68.690658569335938, -12.55621147155756 ], [ -68.691719055175724, -12.556779861450195 ], [ -68.692337036132812, -12.55790901184082 ], [ -68.692337036132812, -12.562310218810978 ], [ -68.69281005859375, -12.563779830932504 ], [ -68.694526672363281, -12.565839767456055 ], [ -68.697921752929631, -12.568989753723088 ], [ -68.699829101562443, -12.571408271789551 ], [ -68.700111389160099, -12.572257995605469 ], [ -68.699897766113281, -12.573739051818791 ], [ -68.697586059570312, -12.577839851379338 ], [ -68.696319580078068, -12.579419136047363 ], [ -68.693916320800724, -12.580780029296818 ], [ -68.693122863769531, -12.581931114196777 ], [ -68.693107604980469, -12.58328914642334 ], [ -68.693862915039062, -12.585178375244084 ], [ -68.695426940917969, -12.587239265441895 ], [ -68.696159362792969, -12.587808609008732 ], [ -68.697608947753906, -12.588418960571289 ], [ -68.698455810546875, -12.58804988861084 ], [ -68.69903564453125, -12.587442398071289 ], [ -68.699302673339844, -12.586668968200627 ], [ -68.699996948242188, -12.580539703369141 ], [ -68.700599670410099, -12.579519271850472 ], [ -68.701705932617188, -12.578848838806096 ], [ -68.702552795410156, -12.579950332641602 ], [ -68.702896118164006, -12.583518981933594 ], [ -68.703437805175781, -12.584799766540527 ], [ -68.705886840820312, -12.587070465087834 ], [ -68.709976196289062, -12.589630126953125 ], [ -68.712142944335881, -12.59264945983881 ], [ -68.713172912597599, -12.594730377197152 ], [ -68.713539123535156, -12.596050262451115 ], [ -68.713645935058594, -12.601570129394474 ], [ -68.714126586914006, -12.603070259094238 ], [ -68.714813232421818, -12.603938102722111 ], [ -68.717048645019531, -12.60508918762207 ], [ -68.719093322753849, -12.605120658874512 ], [ -68.720657348632812, -12.604518890380803 ], [ -68.723022460937443, -12.602440834045353 ], [ -68.724227905273438, -12.601750373840332 ], [ -68.724693298339844, -12.601729393005314 ], [ -68.725372314453125, -12.602239608764648 ], [ -68.725692749023381, -12.602788925170785 ], [ -68.725837707519531, -12.605510711669922 ], [ -68.726089477539062, -12.606409072875863 ], [ -68.727256774902344, -12.607078552246094 ], [ -68.728446960449162, -12.60735034942627 ], [ -68.731033325195256, -12.608448028564396 ], [ -68.732139587402344, -12.60930061340332 ], [ -68.732887268066406, -12.610340118408146 ], [ -68.733451843261719, -12.612470626831055 ], [ -68.733467102050781, -12.617980003356934 ], [ -68.733917236328125, -12.619391441345158 ], [ -68.734901428222656, -12.621158599853516 ], [ -68.735069274902344, -12.624710083007812 ], [ -68.735939025878906, -12.626038551330566 ], [ -68.739059448242188, -12.629349708557072 ], [ -68.741127014160099, -12.632289886474553 ], [ -68.741737365722656, -12.63372898101801 ], [ -68.74090576171875, -12.635780334472656 ], [ -68.735870361328068, -12.640949249267521 ], [ -68.735099792480469, -12.641981124877816 ], [ -68.733383178710938, -12.645648002624512 ], [ -68.732559204101506, -12.649329185485783 ], [ -68.731842041015625, -12.651118278503418 ], [ -68.731849670410156, -12.652138710021916 ], [ -68.732780456542969, -12.6533203125 ], [ -68.736427307128906, -12.655540466308537 ], [ -68.737510681152287, -12.656729698181152 ], [ -68.733787536621037, -12.655368804931584 ], [ -68.731887817382756, -12.659369468688965 ], [ -68.730644226074162, -12.661990165710449 ], [ -68.730278015136605, -12.661600112914982 ], [ -68.729286193847656, -12.661080360412598 ], [ -68.727210998535099, -12.660549163818359 ], [ -68.725997924804688, -12.66046142578125 ], [ -68.723739624023438, -12.661039352416935 ], [ -68.720565795898438, -12.660929679870605 ], [ -68.720001220703125, -12.661540985107422 ], [ -68.719841003417969, -12.662810325622559 ], [ -68.720382690429688, -12.663669586181584 ], [ -68.721076965332031, -12.664269447326603 ], [ -68.722221374511719, -12.664719581603947 ], [ -68.726791381835938, -12.664628982543945 ], [ -68.727966308593693, -12.665307998657227 ], [ -68.728569030761719, -12.666119575500488 ], [ -68.728637695312443, -12.666219711303711 ], [ -68.727279663085938, -12.669089317321664 ], [ -68.727569580078125, -12.669518470764046 ], [ -68.728195190429688, -12.670442581176758 ], [ -68.727699279785099, -12.671491622924805 ], [ -68.728668212890625, -12.67292308807373 ], [ -68.728042602539062, -12.673721313476562 ], [ -68.726730346679631, -12.673739433288517 ], [ -68.726066589355412, -12.672828674316349 ], [ -68.725929260253906, -12.669448852539062 ], [ -68.72564697265625, -12.668558120727482 ], [ -68.725166320800781, -12.667900085449219 ], [ -68.722946166992188, -12.66674900054926 ], [ -68.720809936523381, -12.666790008544865 ], [ -68.720252990722599, -12.667539596557504 ], [ -68.719657897949162, -12.672839164733887 ], [ -68.718681335449219, -12.675498008728027 ], [ -68.717613220214844, -12.677240371704045 ], [ -68.716911315917912, -12.677960395812988 ], [ -68.716140747070256, -12.678479194641056 ], [ -68.713623046875, -12.679430007934513 ], [ -68.713127136230469, -12.680010795593262 ], [ -68.713119506835938, -12.680927276611271 ], [ -68.715179443359318, -12.683039665222168 ], [ -68.716827392578068, -12.684348106384164 ], [ -68.721015930175724, -12.686917304992676 ], [ -68.722579956054688, -12.687529563903809 ], [ -68.726776123046875, -12.687808036804199 ], [ -68.729057312011719, -12.688259124755803 ], [ -68.731536865234375, -12.690089225769043 ], [ -68.734146118164062, -12.691099166870004 ], [ -68.735443115234375, -12.692020416259766 ], [ -68.735870361328068, -12.692609786987248 ], [ -68.736335754394531, -12.694109916687012 ], [ -68.736076354980412, -12.695289611816406 ], [ -68.734832763671818, -12.696237564086857 ], [ -68.733360290527344, -12.69635009765625 ], [ -68.73223876953125, -12.695689201354924 ], [ -68.731178283691406, -12.694070816040039 ], [ -68.730812072753906, -12.693118095397892 ], [ -68.728950500488281, -12.690818786621094 ], [ -68.727882385253849, -12.690459251403809 ], [ -68.727317810058537, -12.690479278564339 ], [ -68.725746154785156, -12.692168235778695 ], [ -68.725570678710881, -12.692790031433105 ], [ -68.725585937499943, -12.695000648498535 ], [ -68.726226806640625, -12.697409629821721 ], [ -68.727996826171875, -12.699110031127816 ], [ -68.728919982910099, -12.699588775634766 ], [ -68.732727050781193, -12.700819015502873 ], [ -68.733802795410099, -12.701400756835938 ], [ -68.736549377441349, -12.704270362854004 ], [ -68.738113403320312, -12.704834938049316 ], [ -68.738243103027344, -12.705120086669922 ], [ -68.740547180175724, -12.706489562988224 ], [ -68.743331909179631, -12.70813083648676 ], [ -68.743408203124943, -12.708868980407715 ], [ -68.742927551269474, -12.710549354553223 ], [ -68.742111206054688, -12.711879730224609 ], [ -68.741050720214787, -12.712909698486328 ], [ -68.739936828613281, -12.712759971618596 ], [ -68.738487243652344, -12.711458206176758 ], [ -68.737426757812443, -12.710088729858398 ], [ -68.736633300781193, -12.709598541259766 ], [ -68.735527038574105, -12.709329605102539 ], [ -68.731407165527287, -12.710988998413086 ], [ -68.7298583984375, -12.711358070373478 ], [ -68.728767395019531, -12.712359428405705 ], [ -68.728797912597656, -12.712919235229435 ], [ -68.729637145996094, -12.713642120361271 ], [ -68.733177185058594, -12.714850425720158 ], [ -68.734367370605412, -12.716010093688851 ], [ -68.735092163085938, -12.716379165649414 ], [ -68.737068176269531, -12.716958045959473 ], [ -68.738372802734318, -12.716849327087346 ], [ -68.740310668945312, -12.717079162597599 ], [ -68.7415771484375, -12.717678070068359 ], [ -68.742080688476506, -12.718258857727051 ], [ -68.742095947265568, -12.723218917846623 ], [ -68.742576599121037, -12.724798202514648 ], [ -68.74310302734375, -12.725580215454102 ], [ -68.746376037597599, -12.72870922088623 ], [ -68.747650146484375, -12.73019981384266 ], [ -68.749122619628906, -12.730788230895939 ], [ -68.751831054687386, -12.730798721313477 ], [ -68.752738952636719, -12.73102855682373 ], [ -68.755882263183594, -12.734048843383789 ], [ -68.759925842285099, -12.735909461975098 ], [ -68.762191772460881, -12.737689018249512 ], [ -68.765296936035156, -12.740750312805119 ], [ -68.767868041992188, -12.742149353027287 ], [ -68.768989562988224, -12.742129325866642 ], [ -68.76959228515625, -12.74170017242426 ], [ -68.77008056640625, -12.740809440612679 ], [ -68.770599365234318, -12.738477706909123 ], [ -68.771629333496094, -12.737420082092171 ], [ -68.772811889648324, -12.737260818481445 ], [ -68.776435852050668, -12.737709999084359 ], [ -68.777557373046818, -12.737549781799316 ], [ -68.778388977050781, -12.737159729003906 ], [ -68.778861999511719, -12.736349105834961 ], [ -68.778991699218693, -12.73395824432373 ], [ -68.779525756835938, -12.732390403747502 ], [ -68.780197143554688, -12.731529235839844 ], [ -68.781097412109318, -12.73173809051508 ], [ -68.78143310546875, -12.732060432434025 ], [ -68.781776428222543, -12.73301887512207 ], [ -68.781806945800781, -12.737059593200627 ], [ -68.78363037109375, -12.73903846740717 ], [ -68.784523010253849, -12.740758895873967 ], [ -68.784233093261662, -12.743769645690918 ], [ -68.784461975097656, -12.745320320129338 ], [ -68.787399291992131, -12.74944877624506 ], [ -68.787811279296875, -12.750679969787484 ], [ -68.787948608398381, -12.754520416259766 ], [ -68.788642883300668, -12.756019592285156 ], [ -68.790420532226506, -12.758528709411564 ], [ -68.791976928710881, -12.759480476379395 ], [ -68.793319702148324, -12.75994873046875 ], [ -68.794059753417912, -12.75993824005127 ], [ -68.794822692871037, -12.759417533874512 ], [ -68.796478271484375, -12.757308006286507 ], [ -68.7999267578125, -12.756540298461914 ], [ -68.802040100097656, -12.754886627197266 ], [ -68.803337097167969, -12.755110740661507 ], [ -68.804786682128906, -12.756250381469727 ], [ -68.805488586425724, -12.75774955749506 ], [ -68.804092407226449, -12.76104831695551 ], [ -68.804069519042912, -12.762050628662109 ], [ -68.804359436035099, -12.763408660888615 ], [ -68.805473327636719, -12.764528274536019 ], [ -68.806396484375, -12.764979362487793 ], [ -68.808982849121094, -12.765228271484318 ], [ -68.809356689453125, -12.765628814697152 ], [ -68.809486389160156, -12.766268730163461 ], [ -68.808891296386719, -12.767378807067814 ], [ -68.80648040771473, -12.768349647521973 ], [ -68.805046081542855, -12.769890785217285 ], [ -68.805313110351506, -12.771248817443791 ], [ -68.806137084960938, -12.771840095519963 ], [ -68.807998657226506, -12.773799896240178 ], [ -68.809196472167969, -12.77543830871582 ], [ -68.809432983398324, -12.776238441467171 ], [ -68.809410095214787, -12.777619361877441 ], [ -68.809143066406193, -12.778688430786133 ], [ -68.805892944335881, -12.782099723815804 ], [ -68.805709838867131, -12.783550262451115 ], [ -68.806381225585824, -12.784439086914062 ], [ -68.807762145996094, -12.784749031066895 ], [ -68.808647155761662, -12.784578323364258 ], [ -68.810501098632812, -12.783658981323242 ], [ -68.812255859375, -12.783450126647949 ], [ -68.817909240722599, -12.788550376892033 ], [ -68.818656921386662, -12.789708137512207 ], [ -68.818809509277344, -12.790348052978516 ], [ -68.818862915039006, -12.792369842529297 ], [ -68.818046569824219, -12.794729232788029 ], [ -68.816963195800724, -12.796759605407658 ], [ -68.815727233886605, -12.797768592834416 ], [ -68.813423156738224, -12.798189163207951 ], [ -68.812530517578125, -12.798648834228516 ], [ -68.811515808105412, -12.799867630004883 ], [ -68.8099365234375, -12.802539825439453 ], [ -68.809089660644531, -12.804478645324707 ], [ -68.808586120605469, -12.80720043182373 ], [ -68.808769226074105, -12.808389663696232 ], [ -68.809921264648438, -12.809169769287109 ], [ -68.810768127441293, -12.809220314025822 ], [ -68.811386108398438, -12.808869361877441 ], [ -68.814170837402287, -12.805258750915471 ], [ -68.815299987792969, -12.804439544677621 ], [ -68.817993164062443, -12.804330825805664 ], [ -68.819976806640625, -12.805340766906738 ], [ -68.821533203124943, -12.805688858032227 ], [ -68.824577331542912, -12.804140090942383 ], [ -68.825248718261662, -12.804439544677621 ], [ -68.825706481933537, -12.805129051208496 ], [ -68.825721740722599, -12.806318283081055 ], [ -68.825286865234375, -12.8089599609375 ], [ -68.825408935546875, -12.811050415039062 ], [ -68.825996398925724, -12.812318801879883 ], [ -68.826828002929688, -12.813090324401799 ], [ -68.827598571777344, -12.813379287719727 ], [ -68.828407287597599, -12.813220024108887 ], [ -68.830360412597656, -12.81050968170166 ], [ -68.831886291503906, -12.809329032897949 ], [ -68.8326416015625, -12.809258460998535 ], [ -68.833786010742188, -12.809659957885742 ], [ -68.834815979003906, -12.810677528381348 ], [ -68.835281372070199, -12.811481475830021 ], [ -68.83551025390625, -12.81228065490717 ], [ -68.835426330566406, -12.81687068939209 ], [ -68.836158752441406, -12.818400382995549 ], [ -68.838012695312443, -12.820348739624023 ], [ -68.839881896972656, -12.822780609130859 ], [ -68.840209960937443, -12.823528289794922 ], [ -68.840126037597599, -12.824259757995605 ], [ -68.839126586914062, -12.825550079345703 ], [ -68.838447570800781, -12.825919151306152 ], [ -68.835807800292969, -12.825968742370492 ], [ -68.835540771484318, -12.825935363769531 ], [ -68.833488464355469, -12.825668334960938 ], [ -68.831809997558537, -12.826178550720215 ], [ -68.830871582031193, -12.826799392700138 ], [ -68.830276489257812, -12.827509880065918 ], [ -68.830337524414062, -12.829620361328011 ], [ -68.831619262695256, -12.830819129943848 ], [ -68.832817077636719, -12.830868721008244 ], [ -68.835197448730469, -12.829807281494027 ], [ -68.836898803710824, -12.828679084777775 ], [ -68.838607788085881, -12.828248023986816 ], [ -68.839256286621037, -12.828338623046875 ], [ -68.839981079101562, -12.828790664672795 ], [ -68.84027099609375, -12.829620361328011 ], [ -68.839317321777344, -12.83107852935791 ], [ -68.836410522460881, -12.832528114318848 ], [ -68.834632873535156, -12.834529876708984 ], [ -68.834075927734375, -12.835809707641602 ], [ -68.833900451660156, -12.838370323181039 ], [ -68.833236694335938, -12.839638710021916 ], [ -68.831932067871037, -12.841058731079102 ], [ -68.83197021484375, -12.842361450195256 ], [ -68.833137512207031, -12.843508720397892 ], [ -68.835067749023381, -12.843810081481934 ], [ -68.836349487304688, -12.843521118164006 ], [ -68.838951110839844, -12.84203910827631 ], [ -68.840286254882812, -12.841799736022836 ], [ -68.841682434082031, -12.842109680175668 ], [ -68.842407226562443, -12.842698097228947 ], [ -68.842636108398438, -12.843291282653752 ], [ -68.842567443847656, -12.844120025634766 ], [ -68.842201232910156, -12.844879150390511 ], [ -68.839630126953068, -12.847148895263615 ], [ -68.838951110839844, -12.848140716552734 ], [ -68.838127136230412, -12.851158142089787 ], [ -68.836601257324162, -12.853578567504826 ], [ -68.835929870605412, -12.855087280273438 ], [ -68.835548400878849, -12.857078552246037 ], [ -68.835937499999943, -12.857999801635742 ], [ -68.837142944335938, -12.858670234680176 ], [ -68.838447570800781, -12.858478546142521 ], [ -68.840797424316349, -12.857359886169434 ], [ -68.842666625976562, -12.856731414794922 ], [ -68.8438720703125, -12.856760025024414 ], [ -68.844963073730469, -12.857088088989258 ], [ -68.84615325927723, -12.858219146728459 ], [ -68.846946716308594, -12.861407279968262 ], [ -68.848106384277344, -12.863630294799805 ], [ -68.850296020507812, -12.865628242492676 ], [ -68.851051330566406, -12.866000175476017 ], [ -68.852088928222656, -12.866100311279297 ], [ -68.8531494140625, -12.86580753326416 ], [ -68.854438781738224, -12.864739418029671 ], [ -68.855957031249943, -12.862330436706543 ], [ -68.856956481933594, -12.859169006347599 ], [ -68.857933044433594, -12.858330726623478 ], [ -68.858688354492188, -12.858186721801758 ], [ -68.858833312988168, -12.858160018920842 ], [ -68.859611511230469, -12.858859062194767 ], [ -68.859992980957031, -12.863160133361816 ], [ -68.860382080078125, -12.863999366760254 ], [ -68.861076354980469, -12.864748954772892 ], [ -68.870185852050668, -12.868101119995004 ], [ -68.871353149414062, -12.869388580322152 ], [ -68.871696472167912, -12.870241165161133 ], [ -68.87164306640625, -12.870980262756348 ], [ -68.870941162109318, -12.871848106384277 ], [ -68.869316101074162, -12.872179031372013 ], [ -68.866142272949162, -12.87224006652832 ], [ -68.865577697753849, -12.872579574584847 ], [ -68.86517333984375, -12.873188018798771 ], [ -68.865020751953068, -12.874489784240723 ], [ -68.86590576171875, -12.876789093017521 ], [ -68.867477416992131, -12.879830360412598 ], [ -68.868415832519531, -12.880990028381348 ], [ -68.871810913085938, -12.884160041809025 ], [ -68.873031616210881, -12.885780334472599 ], [ -68.873466491699219, -12.887008666992131 ], [ -68.873611450195256, -12.888479232788029 ], [ -68.873077392578125, -12.889437675476074 ], [ -68.872520446777344, -12.889919281005859 ], [ -68.869537353515625, -12.890769004821777 ], [ -68.8682861328125, -12.891528129577637 ], [ -68.867332458496094, -12.892548561096135 ], [ -68.867050170898438, -12.894399642944279 ], [ -68.867256164550781, -12.895258903503418 ], [ -68.868446350097599, -12.896560668945256 ], [ -68.872032165527344, -12.89761829376215 ], [ -68.872718811035156, -12.89807033538807 ], [ -68.873298645019474, -12.898911476135254 ], [ -68.873306274414006, -12.899840354919434 ], [ -68.872962951660156, -12.900368690490666 ], [ -68.870796203613281, -12.901209831237736 ], [ -68.869522094726562, -12.902290344238168 ], [ -68.869018554687443, -12.903169631957951 ], [ -68.868911743164006, -12.904169082641602 ], [ -68.873207092285099, -12.909469604492188 ], [ -68.873931884765625, -12.912409782409668 ], [ -68.875785827636662, -12.916530609130859 ], [ -68.875869750976506, -12.918349266052189 ], [ -68.875289916992188, -12.919508934020939 ], [ -68.874076843261662, -12.920369148254395 ], [ -68.86907958984375, -12.921909332275334 ], [ -68.865547180175781, -12.922388076782227 ], [ -68.864166259765568, -12.922929763793888 ], [ -68.863189697265568, -12.923480033874512 ], [ -68.862327575683537, -12.924349784851074 ], [ -68.8621826171875, -12.925909042358398 ], [ -68.862548828124943, -12.927048683166504 ], [ -68.863082885742188, -12.927809715270939 ], [ -68.863929748535156, -12.928380012512207 ], [ -68.865036010742074, -12.928529739379826 ], [ -68.866638183593693, -12.927998542785645 ], [ -68.869102478027287, -12.925900459289551 ], [ -68.870910644531193, -12.924938201904297 ], [ -68.871932983398438, -12.924798965454102 ], [ -68.873901367187386, -12.924969673156738 ], [ -68.87599945068348, -12.925697326660156 ], [ -68.877342224121094, -12.926879882812443 ], [ -68.877670288085938, -12.927919387817383 ], [ -68.876541137695256, -12.930039405822697 ], [ -68.875938415527344, -12.930448532104435 ], [ -68.874946594238224, -12.930720329284668 ], [ -68.871658325195312, -12.929360389709416 ], [ -68.870269775390568, -12.92920017242426 ], [ -68.868499755859375, -12.929779052734375 ], [ -68.867080688476562, -12.930869102477971 ], [ -68.866783142089844, -12.931400299072266 ], [ -68.866790771484375, -12.932079315185547 ], [ -68.867385864257756, -12.933009147644043 ], [ -68.86810302734375, -12.933618545532113 ], [ -68.871437072753906, -12.934478759765625 ], [ -68.874107360839844, -12.936010360717773 ], [ -68.874572753906136, -12.936790466308537 ], [ -68.874336242675781, -12.93937873840332 ], [ -68.873687744140568, -12.940149307250977 ], [ -68.872650146484318, -12.940790176391602 ], [ -68.868797302246094, -12.941418647766113 ], [ -68.867294311523381, -12.941938400268555 ], [ -68.864456176757756, -12.943529129028263 ], [ -68.862449645996037, -12.945037841796875 ], [ -68.861480712890568, -12.946159362792855 ], [ -68.861167907714844, -12.947319030761719 ], [ -68.86126708984375, -12.948130607604924 ], [ -68.861640930175781, -12.948558807373047 ], [ -68.862319946289062, -12.948860168457031 ], [ -68.864067077636662, -12.948968887328988 ], [ -68.870628356933537, -12.946578979492188 ], [ -68.873207092285099, -12.944619178771916 ], [ -68.874397277832031, -12.943340301513672 ], [ -68.875717163085824, -12.94143009185791 ], [ -68.876861572265511, -12.940328598022461 ], [ -68.877677917480469, -12.939919471740723 ], [ -68.878509521484375, -12.940049171447697 ], [ -68.879478454589844, -12.940629959106445 ], [ -68.879913330078011, -12.941141128539982 ], [ -68.879806518554631, -12.942679405212346 ], [ -68.875877380371037, -12.946219444274846 ], [ -68.875526428222543, -12.947079658508301 ], [ -68.875427246093636, -12.94817924499506 ], [ -68.876617431640625, -12.950678825378361 ], [ -68.878067016601506, -12.953058242797795 ], [ -68.878921508789006, -12.953789710998478 ], [ -68.881576538085938, -12.955309867858887 ], [ -68.882972717285156, -12.956508636474609 ], [ -68.882667541503849, -12.957569122314396 ], [ -68.882041931152344, -12.958120346069279 ], [ -68.881401062011662, -12.958138465881348 ], [ -68.880729675292969, -12.958469390869141 ], [ -68.879325866699162, -12.958348274230957 ], [ -68.878028869628906, -12.958530426025334 ], [ -68.877098083496094, -12.959259986877441 ], [ -68.876846313476506, -12.959758758544865 ], [ -68.87652587890625, -12.961100578308049 ], [ -68.876502990722656, -12.963300704956055 ], [ -68.875251770019531, -12.967629432678166 ], [ -68.875480651855469, -12.970568656921387 ], [ -68.876739501953068, -12.976888656616154 ], [ -68.876541137695256, -12.97853946685791 ], [ -68.875801086425724, -12.979610443115178 ], [ -68.874237060546875, -12.980179786682129 ], [ -68.873069763183594, -12.980169296264648 ], [ -68.871246337890625, -12.978739738464299 ], [ -68.871101379394474, -12.977027893066349 ], [ -68.871559143066406, -12.975932121276855 ], [ -68.871917724609375, -12.97356986999506 ], [ -68.871788024902287, -12.973128318786621 ], [ -68.870849609374886, -12.972219467163029 ], [ -68.867340087890625, -12.971429824829102 ], [ -68.865837097167969, -12.971419334411621 ], [ -68.865097045898381, -12.971970558166504 ], [ -68.86456298828125, -12.972818374633789 ], [ -68.864746093749886, -12.976840972900334 ], [ -68.864295959472656, -12.978059768676644 ], [ -68.863418579101562, -12.979469299316406 ], [ -68.863090515136662, -12.980991363525391 ], [ -68.863319396972543, -12.98262977600092 ], [ -68.864143371581974, -12.983879089355469 ], [ -68.865097045898381, -12.984610557556152 ], [ -68.867813110351562, -12.985492706298828 ], [ -68.871261596679688, -12.985458374023438 ], [ -68.873466491699219, -12.985079765319824 ], [ -68.875617980956918, -12.985159873962402 ], [ -68.877182006835938, -12.98597145080555 ], [ -68.877487182617188, -12.986391067504883 ], [ -68.877777099609318, -12.986799240112248 ], [ -68.878067016601506, -12.98766899108881 ], [ -68.877876281738224, -12.988738059997502 ], [ -68.877166748046875, -12.989520072936955 ], [ -68.876602172851562, -12.989780426025391 ], [ -68.875473022460938, -12.989739418029728 ], [ -68.87361907958973, -12.988869667053166 ], [ -68.871681213378849, -12.988531112670842 ], [ -68.870307922363281, -12.988800048828125 ], [ -68.869293212890568, -12.989628791809082 ], [ -68.868186950683594, -12.992950439453068 ], [ -68.867828369140625, -12.994559288024846 ], [ -68.867782592773381, -12.996220588684025 ], [ -68.868171691894474, -12.997460365295353 ], [ -68.869636535644531, -12.999880790710449 ], [ -68.870613098144531, -13.000329971313477 ], [ -68.946510314941406, -13.036160469055176 ], [ -68.988479614257812, -13.055970191955566 ], [ -68.997550964355469, -13.062488555908146 ], [ -69.502067565917912, -13.299649238586426 ], [ -69.628509521484318, -13.361788749694824 ], [ -70.000762939453011, -13.240659713745117 ], [ -70.090133666992188, -13.21058464050293 ], [ -70.40155029296875, -13.110074996948242 ], [ -70.401496887206918, -13.10752010345459 ], [ -70.401489257812443, -13.107218742370605 ], [ -70.402236938476506, -13.102510452270394 ], [ -70.402366638183594, -13.100408554077092 ], [ -70.40228271484375, -13.099040985107422 ], [ -70.402236938476506, -13.098212242126408 ], [ -70.40179443359375, -13.097161293029785 ], [ -70.401603698730469, -13.096705436706486 ], [ -70.401847839355412, -13.096213340759221 ], [ -70.4012451171875, -13.094182014465275 ], [ -70.401443481445312, -13.090316772460881 ], [ -70.401908874511719, -13.088632583618164 ], [ -70.403518676757812, -13.085946083068848 ], [ -70.40716552734375, -13.081774711608887 ], [ -70.415275573730469, -13.074434280395508 ], [ -70.419258117675781, -13.071401596069279 ], [ -70.420852661132756, -13.07089900970459 ], [ -70.423568725585938, -13.070820808410588 ], [ -70.430778503417855, -13.071670532226562 ], [ -70.433578491210938, -13.071783065795842 ], [ -70.434303283691293, -13.072004318237305 ], [ -70.438301086425724, -13.071704864501953 ], [ -70.443756103515625, -13.069836616516056 ], [ -70.445198059082031, -13.068985939025822 ], [ -70.446380615234318, -13.06794261932373 ], [ -70.447708129882812, -13.067244529724064 ], [ -70.456939697265625, -13.065902709960881 ], [ -70.460212707519474, -13.06669807434082 ], [ -70.463386535644474, -13.068222999572697 ], [ -70.466598510742131, -13.068767547607365 ], [ -70.468841552734375, -13.069421768188363 ], [ -70.470603942871037, -13.069579124450684 ], [ -70.475746154785156, -13.069462776184025 ], [ -70.480583190917969, -13.070187568664551 ], [ -70.484664916992188, -13.072439193725529 ], [ -70.487159729003906, -13.07420635223383 ], [ -70.489547729492188, -13.076674461364689 ], [ -70.491508483886662, -13.079249382018986 ], [ -70.492668151855355, -13.081246376037598 ], [ -70.493408203124943, -13.083025932312012 ], [ -70.493568420410156, -13.084587097167969 ], [ -70.493087768554688, -13.086556434631291 ], [ -70.490493774414062, -13.088970184326172 ], [ -70.490036010742188, -13.089612960815373 ], [ -70.489944458007812, -13.09016227722168 ], [ -70.490119934082031, -13.091371536254883 ], [ -70.491516113281193, -13.094724655151367 ], [ -70.493057250976562, -13.09696102142334 ], [ -70.4954833984375, -13.09857177734375 ], [ -70.49688720703125, -13.099191665649414 ], [ -70.500572204589787, -13.099499702453556 ], [ -70.502342224121094, -13.100260734558105 ], [ -70.504203796386662, -13.102287292480469 ], [ -70.505462646484375, -13.103032112121525 ], [ -70.505599975585938, -13.103653907775879 ], [ -70.506431579589844, -13.10451602935791 ], [ -70.507499694824219, -13.107575416564941 ], [ -70.508323669433594, -13.10867977142334 ], [ -70.509674072265625, -13.109560012817326 ], [ -70.512359619140625, -13.109861373901367 ], [ -70.515426635742131, -13.111239433288574 ], [ -70.516632080078125, -13.113813400268555 ], [ -70.516944885253906, -13.115260124206543 ], [ -70.518104553222599, -13.11599063873291 ], [ -70.519317626953125, -13.115949630737248 ], [ -70.523033142089844, -13.114986419677734 ], [ -70.525337219238281, -13.114640235900879 ], [ -70.528411865234318, -13.114701271057129 ], [ -70.530776977539062, -13.115229606628418 ], [ -70.532554626464844, -13.115286827087346 ], [ -70.535408020019531, -13.114416122436467 ], [ -70.543083190917912, -13.11324310302723 ], [ -70.546768188476562, -13.111439704894963 ], [ -70.554244995117131, -13.110983848571777 ], [ -70.555801391601449, -13.110639572143555 ], [ -70.561294555664062, -13.110122680664062 ], [ -70.563636779785156, -13.109251976013184 ], [ -70.570953369140568, -13.107302665710336 ], [ -70.573104858398438, -13.106005668640137 ], [ -70.575386047363281, -13.105170249938908 ], [ -70.577072143554574, -13.104937553405762 ], [ -70.581184387207031, -13.105016708374023 ], [ -70.584312438964787, -13.104458808898869 ], [ -70.590995788574105, -13.101380348205566 ], [ -70.593742370605412, -13.100777626037598 ], [ -70.594490051269474, -13.100798606872502 ], [ -70.595970153808594, -13.100231170654297 ], [ -70.597999572753906, -13.099884986877385 ], [ -70.599952697753849, -13.099027633666992 ], [ -70.601470947265568, -13.100223541259766 ], [ -70.604125976562443, -13.101108551025334 ], [ -70.607391357421818, -13.101181983947754 ], [ -70.608589172363281, -13.100941658019963 ], [ -70.611045837402344, -13.099494934081974 ], [ -70.615791320800668, -13.099070549011174 ], [ -70.616493225097656, -13.098614692687988 ], [ -70.618453979492131, -13.096626281738224 ], [ -70.621620178222656, -13.095895767211857 ], [ -70.625480651855412, -13.093140602111703 ], [ -70.63079833984375, -13.091695785522461 ], [ -70.63470458984375, -13.091320037841797 ], [ -70.637229919433537, -13.090624809265137 ], [ -70.639823913574105, -13.090903282165414 ], [ -70.642013549804574, -13.090505599975586 ], [ -70.643920898437386, -13.091313362121525 ], [ -70.646484374999943, -13.091843605041504 ], [ -70.649246215820256, -13.093209266662541 ], [ -70.652580261230412, -13.093544006347656 ], [ -70.655143737792912, -13.092666625976562 ], [ -70.657379150390625, -13.090864181518498 ], [ -70.658020019531193, -13.09068584442133 ], [ -70.660041809081918, -13.088286399841309 ], [ -70.661613464355469, -13.088004112243596 ], [ -70.663261413574162, -13.089188575744629 ], [ -70.667991638183594, -13.089836120605469 ], [ -70.669898986816406, -13.090328216552678 ], [ -70.671928405761662, -13.091633796691895 ], [ -70.673530578613281, -13.093437194824219 ], [ -70.675292968749943, -13.094016075134221 ], [ -70.676956176757812, -13.095759391784611 ], [ -70.678321838378849, -13.096096992492562 ], [ -70.680381774902344, -13.096213340759221 ], [ -70.682144165039006, -13.096917152404785 ], [ -70.683723449707031, -13.098360061645508 ], [ -70.684745788574219, -13.100001335144043 ], [ -70.686515808105412, -13.102149963378849 ], [ -70.687461853027344, -13.10304069519043 ], [ -70.689125061035043, -13.103873252868539 ], [ -70.693382263183537, -13.105008125305176 ], [ -70.696800231933594, -13.10551643371582 ], [ -70.698196411132812, -13.105332374572697 ], [ -70.701690673828068, -13.104317665100098 ], [ -70.704864501953011, -13.104540824890023 ], [ -70.70745849609375, -13.105810165405273 ], [ -70.710311889648438, -13.108584403991699 ], [ -70.712020874023438, -13.109169960021973 ], [ -70.721748352050781, -13.106951713562012 ], [ -70.722808837890625, -13.106049537658691 ], [ -70.723594665527344, -13.10573768615717 ], [ -70.727142333984318, -13.105525970458984 ], [ -70.7296142578125, -13.105035781860352 ], [ -70.734474182128906, -13.104780197143498 ], [ -70.744285583496094, -13.10338306427002 ], [ -70.747177124023381, -13.103522300720215 ], [ -70.751983642578125, -13.105035781860352 ], [ -70.755203247070256, -13.105640411376953 ], [ -70.758010864257812, -13.105855941772461 ], [ -70.761024475097599, -13.107085227966252 ], [ -70.766090393066293, -13.106674194335938 ], [ -70.7691650390625, -13.105552673339844 ], [ -70.773696899414006, -13.103176116943359 ], [ -70.776634216308594, -13.102246284484863 ], [ -70.779579162597656, -13.099734306335392 ], [ -70.784111022949105, -13.097571372985783 ], [ -70.790008544921818, -13.093517303466797 ], [ -70.792427062988281, -13.092122077941895 ], [ -70.797294616699219, -13.091282844543457 ], [ -70.800529479980469, -13.089838027954102 ], [ -70.801147460937443, -13.089035987853947 ], [ -70.802665710449219, -13.085884094238281 ], [ -70.804374694824219, -13.083811759948674 ], [ -70.806556701660156, -13.081800460815373 ], [ -70.810867309570312, -13.079055786132812 ], [ -70.812179565429688, -13.077752113342228 ], [ -70.814018249511719, -13.073939323425293 ], [ -70.814056396484261, -13.072548866271973 ], [ -70.818130493164006, -13.069657325744572 ], [ -70.818885803222599, -13.069848060607853 ], [ -70.820648193359375, -13.069761276245117 ], [ -70.821846008300724, -13.070022583007756 ], [ -70.823707580566406, -13.069160461425724 ], [ -70.826583862304688, -13.06879997253418 ], [ -70.828865051269531, -13.067747116088867 ], [ -70.829956054687443, -13.067465782165527 ], [ -70.832450866699162, -13.067814826965332 ], [ -70.837409973144474, -13.067882537841797 ], [ -70.8389892578125, -13.06815242767334 ], [ -70.841171264648438, -13.067124366760254 ], [ -70.843193054199219, -13.066796302795353 ], [ -70.844314575195312, -13.067293167114201 ], [ -70.850105285644418, -13.071491241455078 ], [ -70.850936889648381, -13.076094627380314 ], [ -70.85201263427723, -13.07816028594965 ], [ -70.852867126464787, -13.079003334045353 ], [ -70.856681823730412, -13.079362869262695 ], [ -70.857093811035156, -13.079584121704102 ], [ -70.862052917480469, -13.079539299011174 ], [ -70.864730834960938, -13.079915046691895 ], [ -70.867416381835938, -13.079543113708439 ], [ -70.869194030761719, -13.078950881957951 ], [ -70.871688842773438, -13.077691078185921 ], [ -70.873947143554574, -13.076391220092773 ], [ -70.875251770019474, -13.075357437133789 ], [ -70.87939453125, -13.073900222778207 ], [ -70.883209228515625, -13.070802688598633 ], [ -70.884391784667969, -13.070504188537541 ], [ -70.885772705078011, -13.07061767578125 ], [ -70.887336730957031, -13.069795608520451 ], [ -70.888244628906193, -13.069564819335824 ], [ -70.890113830566406, -13.069795608520451 ], [ -70.892036437988224, -13.07044506072998 ], [ -70.892593383789062, -13.070420265197697 ], [ -70.893203735351506, -13.069446563720646 ], [ -70.893760681152287, -13.066650390625 ], [ -70.896430969238224, -13.063949584960938 ], [ -70.897140502929688, -13.062662124633789 ], [ -70.898246765136662, -13.061543464660588 ], [ -70.899925231933594, -13.06096363067627 ], [ -70.903533935546875, -13.060453414916879 ], [ -70.905364990234375, -13.059336662292367 ], [ -70.907752990722656, -13.058525085449219 ], [ -70.908721923828068, -13.05753231048584 ], [ -70.909889221191349, -13.056748390197754 ], [ -70.914085388183537, -13.056471824645882 ], [ -70.918563842773381, -13.05460071563715 ], [ -70.921119689941349, -13.054092407226506 ], [ -70.921813964843693, -13.053333282470646 ], [ -70.922714233398438, -13.051382064819279 ], [ -70.923942565917969, -13.050241470336857 ], [ -70.926742553710938, -13.049228668212834 ], [ -70.931678771972656, -13.046416282653809 ], [ -70.936630249023438, -13.046072006225586 ], [ -70.939041137695312, -13.045351982116699 ], [ -70.941818237304631, -13.044937133789006 ], [ -70.942993164062386, -13.044376373290959 ], [ -70.945167541503849, -13.043796539306584 ], [ -70.947196960449219, -13.042655944824162 ], [ -70.948081970214844, -13.042372703552246 ], [ -70.951507568359375, -13.041949272155705 ], [ -70.955436706542969, -13.042001724243164 ], [ -70.958976745605469, -13.039934158325138 ], [ -70.96038818359375, -13.039435386657715 ], [ -70.964302062988281, -13.039676666259709 ], [ -70.965179443359318, -13.039437294006291 ], [ -70.967803955078125, -13.039558410644531 ], [ -70.969329833984375, -13.038933753967285 ], [ -70.972541809081974, -13.036419868469238 ], [ -70.975494384765568, -13.03374195098877 ], [ -70.976852416992074, -13.031769752502441 ], [ -70.978256225585881, -13.028571128845215 ], [ -70.979537963867188, -13.027380943298283 ], [ -70.980499267578125, -13.027774810790959 ], [ -70.982589721679688, -13.030368804931527 ], [ -70.984542846679631, -13.031950950622502 ], [ -70.985336303710824, -13.032994270324707 ], [ -70.987266540527344, -13.033255577087402 ], [ -70.9888916015625, -13.033958435058537 ], [ -70.990203857421761, -13.033961296081486 ], [ -70.994056701660156, -13.033199310302678 ], [ -70.996299743652287, -13.03334999084467 ], [ -70.998855590820256, -13.03247165679926 ], [ -71.001113891601562, -13.032415390014535 ], [ -71.005241394042912, -13.031062126159668 ], [ -71.010856628417969, -13.030068397521916 ], [ -71.018943786621094, -13.026980400085392 ], [ -71.020416259765568, -13.026172637939339 ], [ -71.021781921386719, -13.025065422058049 ], [ -71.025871276855355, -13.023250579833984 ], [ -71.0299072265625, -13.022363662719727 ], [ -71.032882690429688, -13.022212028503361 ], [ -71.036254882812443, -13.020242691040039 ], [ -71.039009094238224, -13.019401550292855 ], [ -71.041770935058537, -13.018875122070312 ], [ -71.043228149413949, -13.019103050231934 ], [ -71.046218872070312, -13.019150733947754 ], [ -71.050430297851562, -13.020334243774414 ], [ -71.051216125488224, -13.021103858947697 ], [ -71.052902221679688, -13.021815299987793 ], [ -71.054580688476562, -13.021903991699219 ], [ -71.055961608886719, -13.02223014831543 ], [ -71.057449340820312, -13.022950172424203 ], [ -71.058670043945256, -13.024575233459359 ], [ -71.058692932128906, -13.025774002075195 ], [ -71.057983398437443, -13.026954650878906 ], [ -71.057907104492131, -13.02772045135498 ], [ -71.058914184570312, -13.028330802917424 ], [ -71.060035705566406, -13.028402328491154 ], [ -71.060882568359375, -13.02768611907959 ], [ -71.062370300292912, -13.025693893432617 ], [ -71.063484191894531, -13.023463249206486 ], [ -71.063629150390568, -13.02098560333252 ], [ -71.063331604003849, -13.019014358520508 ], [ -71.063713073730412, -13.017305374145508 ], [ -71.064956665039006, -13.01710033416748 ], [ -71.067001342773438, -13.017391204833928 ], [ -71.067718505859318, -13.017067909240723 ], [ -71.06783294677723, -13.016782760620117 ], [ -71.067588806152344, -13.015857696533146 ], [ -71.067817687988224, -13.015346527099609 ], [ -71.067810058593693, -13.014326095581055 ], [ -71.069023132324219, -13.013063430786133 ], [ -71.070701599121094, -13.01226806640625 ], [ -71.071273803710938, -13.011771202087402 ], [ -71.071350097656193, -13.011240005493107 ], [ -71.071014404296875, -13.010918617248478 ], [ -71.070999145507812, -13.010388374328613 ], [ -71.071205139160156, -13.00956916809082 ], [ -71.071701049804688, -13.008988380432129 ], [ -71.072242736816406, -13.008662223815861 ], [ -71.072990417480469, -13.00859355926508 ], [ -71.073814392089787, -13.008769035339299 ], [ -71.074974060058537, -13.009383201599121 ], [ -71.076370239257812, -13.009503364562875 ], [ -71.07940673828125, -13.007535934448242 ], [ -71.080696105956974, -13.007474899291992 ], [ -71.081588745117188, -13.007958412170353 ], [ -71.081779479980469, -13.009042739868107 ], [ -71.082435607910156, -13.010362625122013 ], [ -71.082496643066349, -13.012473106384221 ], [ -71.082939147949219, -13.014348983764648 ], [ -71.084098815917969, -13.015946388244629 ], [ -71.084854125976562, -13.016418457031193 ], [ -71.086463928222656, -13.01644134521473 ], [ -71.087051391601562, -13.016144752502385 ], [ -71.088722229003906, -13.014291763305607 ], [ -71.089340209960938, -13.012450218200684 ], [ -71.090011596679688, -13.011343002319222 ], [ -71.090797424316349, -13.010893821716309 ], [ -71.091667175292912, -13.011157989501953 ], [ -71.091880798339844, -13.011469841003418 ], [ -71.091835021972599, -13.012128829956055 ], [ -71.090492248535099, -13.013255119323674 ], [ -71.090370178222656, -13.013954162597599 ], [ -71.091026306152344, -13.014740943908635 ], [ -71.092475891113281, -13.015116691589355 ], [ -71.093177795410099, -13.015711784362793 ], [ -71.093170166015568, -13.017156600952035 ], [ -71.093894958496094, -13.018132209777832 ], [ -71.094535827636605, -13.01848316192627 ], [ -71.096023559570256, -13.018678665161076 ], [ -71.096412658691349, -13.018955230712891 ], [ -71.096549987792969, -13.019759178161507 ], [ -71.095848083496037, -13.020606994628849 ], [ -71.095809936523438, -13.020966529846191 ], [ -71.096519470214787, -13.021565437316895 ], [ -71.096992492675724, -13.022961616516113 ], [ -71.097824096679688, -13.02381420135498 ], [ -71.098152160644474, -13.025162696838379 ], [ -71.098724365234318, -13.025595664978027 ], [ -71.099693298339844, -13.025321006774902 ], [ -71.100204467773438, -13.024786949157658 ], [ -71.100601196289006, -13.023755073547363 ], [ -71.101234436035156, -13.023386001586914 ], [ -71.101814270019531, -13.023376464843693 ], [ -71.102378845214844, -13.023666381835881 ], [ -71.103073120117188, -13.024552345275822 ], [ -71.103340148925781, -13.026079177856445 ], [ -71.102836608886719, -13.028778076171875 ], [ -71.1026611328125, -13.031449317932129 ], [ -71.102935791015625, -13.032218933105469 ], [ -71.103950500488224, -13.033163070678654 ], [ -71.104637145996037, -13.033436775207463 ], [ -71.1060791015625, -13.033420562744027 ], [ -71.10675048828125, -13.033204078674316 ], [ -71.10736083984375, -13.032484054565373 ], [ -71.108207702636719, -13.030747413635197 ], [ -71.108985900878906, -13.030234336852971 ], [ -71.111488342285099, -13.030977249145451 ], [ -71.113906860351562, -13.032689094543457 ], [ -71.11446380615223, -13.032789230346623 ], [ -71.114692687988281, -13.03228759765625 ], [ -71.114402770996094, -13.030134201049805 ], [ -71.115562438964844, -13.029486656188851 ], [ -71.1171875, -13.029637336730957 ], [ -71.11773681640625, -13.029437065124512 ], [ -71.119606018066349, -13.025195121765023 ], [ -71.122642517089787, -13.022203445434513 ], [ -71.125541687011719, -13.01976203918457 ], [ -71.12957763671875, -13.018261909484806 ], [ -71.132438659667969, -13.015723228454533 ], [ -71.134757995605412, -13.01423263549799 ], [ -71.140754699706974, -13.011894226074219 ], [ -71.142211914062443, -13.010589599609318 ], [ -71.144409179687386, -13.009387016296387 ], [ -71.147567749023438, -13.006653785705566 ], [ -71.149757385253906, -13.005244255065861 ], [ -71.152725219726562, -13.003896713256779 ], [ -71.158668518066406, -13.002278327941895 ], [ -71.162017822265568, -13.000587463378849 ], [ -71.164642333984375, -12.999833106994629 ], [ -71.166839599609375, -12.997781753539982 ], [ -71.171867370605412, -12.994182586669922 ], [ -71.177223205566406, -12.991580009460449 ], [ -71.180046081542912, -12.989961624145451 ], [ -71.182991027832031, -12.988803863525391 ], [ -71.188385009765625, -12.985689163207894 ], [ -71.191398620605412, -12.984443664550781 ], [ -71.193733215332031, -12.983801841735726 ], [ -71.20318603515625, -12.978812217712346 ], [ -71.204216003417969, -12.978710174560547 ], [ -71.205673217773438, -12.979317665100098 ], [ -71.207069396972543, -12.979356765747013 ], [ -71.2103271484375, -12.977050781249943 ], [ -71.214042663574219, -12.977140426635742 ], [ -71.21875, -12.975402832031193 ], [ -71.221183776855355, -12.974220275878906 ], [ -71.224212646484318, -12.973307609558049 ], [ -71.225799560546875, -12.972526550292969 ], [ -71.229019165039062, -12.972000122070199 ], [ -71.231384277343636, -12.970919609069767 ], [ -71.2335205078125, -12.970256805419865 ], [ -71.236885070800724, -12.969502449035645 ], [ -71.240318298339787, -12.969100952148438 ], [ -71.2418212890625, -12.968625068664551 ], [ -71.244796752929631, -12.968380928039494 ], [ -71.246185302734375, -12.967831611633187 ], [ -71.247108459472599, -12.967718124389648 ], [ -71.254783630371094, -12.963948249816895 ], [ -71.258499145507812, -12.961465835571175 ], [ -71.258903503417969, -12.961634635925293 ], [ -71.259963989257756, -12.962833404540959 ], [ -71.260459899902287, -12.962992668151799 ], [ -71.263053894042969, -12.962434768676758 ], [ -71.265541076660156, -12.961196899414006 ], [ -71.266563415527287, -12.961249351501465 ], [ -71.268173217773381, -12.961685180664006 ], [ -71.270118713378906, -12.961406707763615 ], [ -71.271903991699162, -12.959943771362305 ], [ -71.273849487304688, -12.95965576171875 ], [ -71.274871826171761, -12.959027290344181 ], [ -71.275711059570256, -12.957815170288029 ], [ -71.276710510253906, -12.955022811889648 ], [ -71.277359008789062, -12.95389461517334 ], [ -71.277938842773438, -12.953694343566838 ], [ -71.278602600097656, -12.953830718994141 ], [ -71.279335021972599, -12.954299926757812 ], [ -71.279876708984375, -12.954227447509709 ], [ -71.280738830566406, -12.952507019042969 ], [ -71.281364440917969, -12.951964378356934 ], [ -71.281929016113168, -12.952028274536133 ], [ -71.28271484375, -12.952814102172852 ], [ -71.283172607421761, -12.952784538268986 ], [ -71.283920288085881, -12.951839447021484 ], [ -71.283729553222599, -12.950293540954533 ], [ -71.283988952636719, -12.949919700622502 ], [ -71.286834716796875, -12.949355125427189 ], [ -71.289726257324162, -12.949232101440373 ], [ -71.291481018066406, -12.948634147644043 ], [ -71.292472839355469, -12.94764518737793 ], [ -71.293296813964844, -12.94520378112793 ], [ -71.293685913085938, -12.944973945617676 ], [ -71.294914245605469, -12.945111274719181 ], [ -71.296783447265568, -12.943205833435059 ], [ -71.29791259765625, -12.943166732788086 ], [ -71.299827575683537, -12.94387054443348 ], [ -71.301567077636662, -12.943481445312443 ], [ -71.302925109863281, -12.942090988159123 ], [ -71.303871154785156, -12.94073295593256 ], [ -71.306365966796875, -12.934478759765625 ], [ -71.307403564453125, -12.933040618896484 ], [ -71.308410644531193, -12.932655334472656 ], [ -71.309257507324219, -12.932711601257324 ], [ -71.310195922851562, -12.933152198791504 ], [ -71.310836791992188, -12.933168411254883 ], [ -71.311515808105469, -12.932863235473633 ], [ -71.312744140625, -12.931256294250488 ], [ -71.313011169433537, -12.929075241088867 ], [ -71.314262390136605, -12.928127288818303 ], [ -71.315010070800724, -12.928166389465332 ], [ -71.317466735839787, -12.929841041564885 ], [ -71.318046569824162, -12.92979717254633 ], [ -71.318496704101562, -12.929496765136719 ], [ -71.319465637207031, -12.927704811096191 ], [ -71.320259094238224, -12.923274993896484 ], [ -71.320854187011719, -12.922932624816895 ], [ -71.321945190429688, -12.923398017883301 ], [ -71.323600769042912, -12.923130989074707 ], [ -71.324394226074219, -12.922086715698242 ], [ -71.324050903320256, -12.920295715331974 ], [ -71.324607849121094, -12.919256210327148 ], [ -71.325569152832031, -12.918700218200684 ], [ -71.327056884765625, -12.918631553649846 ], [ -71.329093933105469, -12.91798210144043 ], [ -71.329856872558594, -12.917463302612248 ], [ -71.332237243652344, -12.914859771728459 ], [ -71.333580017089844, -12.912875175476074 ], [ -71.335105895996094, -12.909720420837402 ], [ -71.336166381835881, -12.905906677246037 ], [ -71.336784362792969, -12.904544830322209 ], [ -71.339828491210938, -12.900362014770508 ], [ -71.341156005859261, -12.899081230163517 ], [ -71.344696044921875, -12.896521568298283 ], [ -71.352157592773438, -12.891996383666992 ], [ -71.353561401367188, -12.890398025512638 ], [ -71.355804443359318, -12.886487007141113 ], [ -71.357139587402287, -12.885450363159123 ], [ -71.358619689941406, -12.884656906127873 ], [ -71.359596252441406, -12.884435653686523 ], [ -71.361946105956918, -12.884443283081055 ], [ -71.363090515136605, -12.88483715057373 ], [ -71.364372253417969, -12.886165618896428 ], [ -71.366012573242131, -12.890509605407658 ], [ -71.367622375488281, -12.892111778259277 ], [ -71.371536254882812, -12.894684791564828 ], [ -71.376182556152344, -12.896383285522461 ], [ -71.378448486328125, -12.898146629333439 ], [ -71.380683898925781, -12.89927959442133 ], [ -71.381774902343693, -12.899420738220215 ], [ -71.383552551269531, -12.899291038513127 ], [ -71.384902954101506, -12.898876190185547 ], [ -71.387191772460881, -12.897169113159123 ], [ -71.388526916503849, -12.895642280578613 ], [ -71.391784667968693, -12.889956474304142 ], [ -71.393165588378906, -12.888809204101506 ], [ -71.393768310546818, -12.888836860656681 ], [ -71.396217346191406, -12.889881134033146 ], [ -71.400421142578125, -12.892818450927678 ], [ -71.401756286621094, -12.893125534057617 ], [ -71.403732299804688, -12.893151283264103 ], [ -71.404510498046875, -12.89264965057373 ], [ -71.405548095703125, -12.891462326049691 ], [ -71.407295227050781, -12.888030052185002 ], [ -71.408264160156193, -12.8873033523559 ], [ -71.410583496093636, -12.886611938476506 ], [ -71.412269592285099, -12.885616302490234 ], [ -71.413665771484375, -12.884145736694336 ], [ -71.4149169921875, -12.881987571716309 ], [ -71.416893005371094, -12.880326271057129 ], [ -71.418937683105412, -12.880165100097543 ], [ -71.421379089355469, -12.880721092224121 ], [ -71.425483703613281, -12.882492065429688 ], [ -71.426651000976562, -12.882464408874512 ], [ -71.4276123046875, -12.881908416748047 ], [ -71.429420471191406, -12.878079414367619 ], [ -71.429550170898381, -12.877079010009709 ], [ -71.429405212402344, -12.875605583190918 ], [ -71.428314208984318, -12.872773170471191 ], [ -71.428375244140625, -12.872035026550179 ], [ -71.428756713867188, -12.871507644653263 ], [ -71.429534912109318, -12.871129989623967 ], [ -71.430152893066406, -12.871164321899414 ], [ -71.432533264160156, -12.87264442443842 ], [ -71.433349609374943, -12.872835159301701 ], [ -71.434463500976562, -12.872712135314885 ], [ -71.436790466308537, -12.871767997741699 ], [ -71.438499450683537, -12.872884750366211 ], [ -71.439949035644474, -12.873527526855469 ], [ -71.442558288574219, -12.873499870300293 ], [ -71.443260192871037, -12.87309455871582 ], [ -71.443870544433594, -12.872153282165527 ], [ -71.444229125976506, -12.868586540222111 ], [ -71.444931030273438, -12.867087364196777 ], [ -71.448104858398438, -12.864529609680119 ], [ -71.450401306152344, -12.863866806030217 ], [ -71.451530456542969, -12.863250732421818 ], [ -71.453025817871094, -12.860390663146973 ], [ -71.4537353515625, -12.858009338378849 ], [ -71.45391845703125, -12.856358528137207 ], [ -71.453498840331918, -12.855559349060059 ], [ -71.451408386230469, -12.853590011596623 ], [ -71.451110839843636, -12.852529525756779 ], [ -71.451095581054631, -12.85094165802002 ], [ -71.451759338378849, -12.849929809570199 ], [ -71.453170776367188, -12.848593711853027 ], [ -71.455253601074219, -12.847809791564941 ], [ -71.455718994140625, -12.847319602966252 ], [ -71.455322265625, -12.846169471740723 ], [ -71.455467224121037, -12.845656394958496 ], [ -71.455886840820312, -12.845271110534668 ], [ -71.456802368164006, -12.845141410827523 ], [ -71.457862854003849, -12.84550762176508 ], [ -71.458366394042969, -12.845911979675293 ], [ -71.45855712890625, -12.847376823425293 ], [ -71.457695007324105, -12.849701881408691 ], [ -71.457870483398381, -12.850707054138184 ], [ -71.458778381347656, -12.850638389587346 ], [ -71.460693359375, -12.848388671874943 ], [ -71.461410522460824, -12.848217964172306 ], [ -71.462448120117131, -12.848819732666016 ], [ -71.463432312011719, -12.851097106933594 ], [ -71.463768005371037, -12.851338386535645 ], [ -71.464973449707031, -12.851489067077637 ], [ -71.466934204101506, -12.849943161010685 ], [ -71.467636108398438, -12.849728584289494 ], [ -71.470603942871094, -12.85264873504633 ], [ -71.471534729003906, -12.852894783019963 ], [ -71.472579956054688, -12.85239315032959 ], [ -71.475059509277344, -12.850433349609375 ], [ -71.476661682128849, -12.849697113037109 ], [ -71.479598999023381, -12.849159240722599 ], [ -71.48592376708973, -12.848893165588322 ], [ -71.487068176269418, -12.8477783203125 ], [ -71.489257812499886, -12.847355842590275 ], [ -71.492042541503906, -12.844161033630314 ], [ -71.493835449218636, -12.844132423400822 ], [ -71.494209289550724, -12.843242645263615 ], [ -71.494186401367131, -12.842501640319824 ], [ -71.494483947753849, -12.842009544372559 ], [ -71.496391296386662, -12.841799736022836 ], [ -71.497970581054688, -12.84025859832758 ], [ -71.498634338378906, -12.840305328369141 ], [ -71.500190734863224, -12.841743469238281 ], [ -71.50238037109375, -12.839776039123535 ], [ -71.504219055175724, -12.839113235473633 ], [ -71.50732421875, -12.837223052978459 ], [ -71.508239746093636, -12.837173461914062 ], [ -71.509033203125, -12.838203430175668 ], [ -71.509757995605412, -12.838303565978947 ], [ -71.510200500488281, -12.837594985961914 ], [ -71.510101318359375, -12.835391044616642 ], [ -71.510734558105469, -12.834841728210336 ], [ -71.511909484863281, -12.834584236144963 ], [ -71.514030456542912, -12.834586143493652 ], [ -71.514877319335881, -12.834200859069824 ], [ -71.516151428222543, -12.832865715026855 ], [ -71.516838073730469, -12.832600593566781 ], [ -71.517776489257699, -12.832514762878361 ], [ -71.518920898437386, -12.832893371582031 ], [ -71.519752502441349, -12.832768440246525 ], [ -71.520896911621037, -12.8311767578125 ], [ -71.521713256835938, -12.830427169799691 ], [ -71.522476196289062, -12.830230712890625 ], [ -71.5242919921875, -12.830238342285156 ], [ -71.524871826171875, -12.82994556427002 ], [ -71.528419494628849, -12.825939178466797 ], [ -71.531723022460938, -12.823120117187443 ], [ -71.532447814941349, -12.82292366027832 ], [ -71.534400939941406, -12.823049545288029 ], [ -71.535400390624943, -12.82282829284668 ], [ -71.53668212890625, -12.822256088256836 ], [ -71.537727355957031, -12.821349143981934 ], [ -71.539268493652344, -12.820990562438908 ], [ -71.541221618652287, -12.81892204284668 ], [ -71.543785095214787, -12.818386077880859 ], [ -71.547073364257812, -12.816670417785531 ], [ -71.548133850097656, -12.816324234008789 ], [ -71.549552917480469, -12.814518928527832 ], [ -71.550682067871094, -12.813584327697697 ], [ -71.552085876464787, -12.813467979431096 ], [ -71.553329467773381, -12.813828468322754 ], [ -71.554122924804688, -12.813566207885742 ], [ -71.554519653320312, -12.813166618347111 ], [ -71.554679870605355, -12.812185287475529 ], [ -71.555984497070256, -12.810747146606388 ], [ -71.557350158691293, -12.809953689575195 ], [ -71.559654235839844, -12.810020446777344 ], [ -71.56002044677723, -12.80958175659174 ], [ -71.560127258300781, -12.808978080749455 ], [ -71.560859680175724, -12.808381080627441 ], [ -71.562530517578125, -12.808451652526855 ], [ -71.564643859863281, -12.809415817260685 ], [ -71.565948486328125, -12.809524536132812 ], [ -71.566543579101562, -12.808943748474121 ], [ -71.566688537597599, -12.808323860168457 ], [ -71.56768798828125, -12.807849884033146 ], [ -71.5704345703125, -12.808707237243539 ], [ -71.573493957519531, -12.808547019958496 ], [ -71.574966430664006, -12.809153556823674 ], [ -71.576911926269531, -12.810434341430664 ], [ -71.579483032226562, -12.811750411987305 ], [ -71.581611633300781, -12.8119020462035 ], [ -71.58465576171875, -12.811491966247559 ], [ -71.588020324707031, -12.809901237487793 ], [ -71.596145629882756, -12.807576179504338 ], [ -71.5980224609375, -12.806772232055607 ], [ -71.599235534667969, -12.80665111541748 ], [ -71.601837158203125, -12.805919647216797 ], [ -71.603317260742074, -12.805828094482422 ], [ -71.610031127929688, -12.806249618530273 ], [ -71.612380981445199, -12.80684852600092 ], [ -71.614219665527344, -12.807738304138127 ], [ -71.614845275878849, -12.808666229248047 ], [ -71.616180419921818, -12.811717987060547 ], [ -71.617050170898324, -12.812893867492676 ], [ -71.619895935058537, -12.815009117126465 ], [ -71.622863769531193, -12.816562652587891 ], [ -71.624710083007812, -12.816793441772347 ], [ -71.627220153808537, -12.816617965698242 ], [ -71.629783630371094, -12.81575870513916 ], [ -71.631683349609375, -12.814789772033691 ], [ -71.633293151855469, -12.814358711242619 ], [ -71.635253906249943, -12.814292907714844 ], [ -71.636505126953011, -12.814678192138672 ], [ -71.638008117675724, -12.81591606140131 ], [ -71.639167785644474, -12.816519737243596 ], [ -71.643936157226506, -12.821575164794865 ], [ -71.648422241210881, -12.827706336975041 ], [ -71.650840759277344, -12.833767890930176 ], [ -71.653930664062443, -12.837923049926758 ], [ -71.655738830566349, -12.839780807495117 ], [ -71.660339355468693, -12.842773437499943 ], [ -71.662055969238224, -12.84345531463623 ], [ -71.664405822753906, -12.844963073730412 ], [ -71.667884826660043, -12.846753120422363 ], [ -71.669967651367131, -12.847273826599121 ], [ -71.670494079589844, -12.847640991210824 ], [ -71.674270629882699, -12.848258972167969 ], [ -71.677825927734375, -12.850082397460938 ], [ -71.681083679199219, -12.850900650024357 ], [ -71.683891296386662, -12.850710868835449 ], [ -71.687637329101562, -12.849332809448242 ], [ -71.692146301269531, -12.846235275268498 ], [ -71.698951721191349, -12.84083366394043 ], [ -71.704467773437443, -12.837398529052734 ], [ -71.706626892089844, -12.836858749389648 ], [ -71.710464477539062, -12.83751106262207 ], [ -71.712348937988281, -12.836758613586369 ], [ -71.713928222656193, -12.834728240966797 ], [ -71.714393615722599, -12.832865715026855 ], [ -71.715446472167912, -12.830819129943848 ], [ -71.716178894042969, -12.83011531829834 ], [ -71.719429016113281, -12.828628540039006 ], [ -71.7208251953125, -12.826470375060978 ], [ -71.722267150878906, -12.825297355651799 ], [ -71.723800659179688, -12.823574066162053 ], [ -71.726654052734375, -12.821216583251896 ], [ -71.727851867675724, -12.819812774658203 ], [ -71.727851867675724, -12.819353103637638 ], [ -71.727142333984375, -12.817846298217773 ], [ -71.726943969726562, -12.816180229187012 ], [ -71.725975036621094, -12.815068244934082 ], [ -71.725463867187443, -12.813697814941406 ], [ -71.723953247070256, -12.812072753906136 ], [ -71.723854064941349, -12.811736106872502 ], [ -71.724090576171875, -12.81044769287098 ], [ -71.724784851074162, -12.809599876403809 ], [ -71.726325988769474, -12.808389663696232 ], [ -71.728096008300781, -12.807861328124943 ], [ -71.728431701660099, -12.807539939880314 ], [ -71.728790283203068, -12.805549621581974 ], [ -71.728553771972656, -12.803722381591797 ], [ -71.729484558105412, -12.802822113036996 ], [ -71.729827880859375, -12.801960945129338 ], [ -71.729492187499886, -12.799878120422306 ], [ -71.729492187499886, -12.798679351806641 ], [ -71.729843139648381, -12.797417640686035 ], [ -71.729843139648381, -12.793742179870605 ], [ -71.731307983398438, -12.790339469909668 ], [ -71.731086730956974, -12.788196563720646 ], [ -71.731346130371094, -12.787397384643498 ], [ -71.732612609863224, -12.786562919616642 ], [ -71.733848571777287, -12.786659240722656 ], [ -71.73626708984375, -12.788370132446175 ], [ -71.738456726074105, -12.790616989135742 ], [ -71.739418029785156, -12.790674209594727 ], [ -71.740615844726506, -12.790192604064941 ], [ -71.741775512695256, -12.791571617126465 ], [ -71.744155883789006, -12.791428565979004 ], [ -71.745613098144531, -12.792810440063477 ], [ -71.748199462890625, -12.793048858642578 ], [ -71.749755859375, -12.794350624084416 ], [ -71.75067138671875, -12.794425964355355 ], [ -71.754020690917969, -12.793609619140625 ], [ -71.755699157714787, -12.793719291686955 ], [ -71.756782531738281, -12.79344367980957 ], [ -71.758247375488281, -12.79191875457758 ], [ -71.759674072265625, -12.791287422180119 ], [ -71.760169982910099, -12.790724754333496 ], [ -71.760406494140625, -12.790032386779728 ], [ -71.762252807617188, -12.788347244262638 ], [ -71.762588500976562, -12.786184310913086 ], [ -71.763420104980412, -12.784867286682129 ], [ -71.7633056640625, -12.781640052795353 ], [ -71.763786315917912, -12.780851364135742 ], [ -71.763999938964787, -12.779764175414982 ], [ -71.763778686523438, -12.776835441589299 ], [ -71.764579772949162, -12.776069641113281 ], [ -71.76519775390625, -12.774531364440861 ], [ -71.766532897949219, -12.77288818359375 ], [ -71.766845703124943, -12.767752647399902 ], [ -71.767501831054688, -12.766757011413574 ], [ -71.769424438476506, -12.76708984375 ], [ -71.770385742187443, -12.766369819641113 ], [ -71.771507263183594, -12.763854026794377 ], [ -71.771469116210938, -12.761471748352051 ], [ -71.772079467773438, -12.758777618408203 ], [ -71.772689819335824, -12.757637977599984 ], [ -71.773475646972656, -12.756998062133675 ], [ -71.774574279785099, -12.757001876831055 ], [ -71.775932312011605, -12.758518218994141 ], [ -71.776260375976562, -12.759380340576172 ], [ -71.776359558105469, -12.761122703552132 ], [ -71.776718139648438, -12.762655258178711 ], [ -71.777679443359375, -12.7645006179809 ], [ -71.77874755859375, -12.765000343322754 ], [ -71.782096862792912, -12.765203475952148 ], [ -71.784286499023438, -12.764885902404671 ], [ -71.786766052246094, -12.764067649841252 ], [ -71.789329528808594, -12.76361179351801 ], [ -71.790122985839787, -12.763837814330998 ], [ -71.793106079101562, -12.765581130981332 ], [ -71.793998718261719, -12.765835762023869 ], [ -71.797813415527344, -12.764336585998535 ], [ -71.800872802734375, -12.764554977416992 ], [ -71.801689147949219, -12.764113426208496 ], [ -71.802970886230469, -12.762639045715332 ], [ -71.803230285644531, -12.759554862976074 ], [ -71.804405212402344, -12.757662773132267 ], [ -71.805152893066406, -12.755684852600098 ], [ -71.807075500488281, -12.752429962158146 ], [ -71.807266235351562, -12.751640319824219 ], [ -71.80706787109375, -12.750263214111271 ], [ -71.805618286132812, -12.7479248046875 ], [ -71.805267333984375, -12.744715690612679 ], [ -71.804222106933537, -12.743202209472599 ], [ -71.803779602050668, -12.741969108581543 ], [ -71.804039001464787, -12.740545272827148 ], [ -71.805404663085824, -12.737520217895451 ], [ -71.804374694824219, -12.735060691833439 ], [ -71.804191589355469, -12.733866691589355 ], [ -71.804252624511662, -12.733236312866154 ], [ -71.804695129394531, -12.732526779174805 ], [ -71.805412292480469, -12.730439186096135 ], [ -71.806549072265511, -12.729109764099121 ], [ -71.807136535644531, -12.727950096130371 ], [ -71.809532165527344, -12.725921630859318 ], [ -71.814155578613224, -12.723592758178654 ], [ -71.821243286132812, -12.719026565551701 ], [ -71.825317382812443, -12.71733379364008 ], [ -71.828125, -12.716707229614258 ], [ -71.833412170410099, -12.716192245483398 ], [ -71.834861755371037, -12.716543197631779 ], [ -71.837646484375, -12.716805458068791 ], [ -71.841606140136662, -12.717863082885685 ], [ -71.844306945800724, -12.717235565185547 ], [ -71.846725463867188, -12.717164993286133 ], [ -71.847541809081974, -12.716931343078613 ], [ -71.852378845214844, -12.717233657836914 ], [ -71.856643676757812, -12.71821212768549 ], [ -71.863296508789062, -12.719050407409611 ], [ -71.867454528808537, -12.719867706298828 ], [ -71.871170043945256, -12.720237731933594 ], [ -71.876251220703068, -12.72142505645752 ], [ -71.879501342773324, -12.722556114196721 ], [ -71.883445739746094, -12.723235130310002 ], [ -71.889808654785156, -12.725358963012695 ], [ -71.894851684570256, -12.726277351379395 ], [ -71.897430419921761, -12.727092742919865 ], [ -71.899101257324219, -12.727220535278263 ], [ -71.899772644042969, -12.727562904357853 ], [ -71.900321960449219, -12.727551460266113 ], [ -71.90814208984375, -12.729647636413461 ], [ -71.90826416015625, -12.727121353149357 ], [ -71.908721923828125, -12.725878715515137 ], [ -71.909576416015625, -12.725030899047795 ], [ -71.913528442382756, -12.722990989685059 ], [ -71.915481567382812, -12.72243690490717 ], [ -71.918693542480412, -12.721921920776367 ], [ -71.920425415039062, -12.720479011535645 ], [ -71.921028137207031, -12.719672203063965 ], [ -71.921348571777287, -12.718640327453613 ], [ -71.921562194824105, -12.716239929199219 ], [ -71.92120361328125, -12.713779449462891 ], [ -71.919662475585938, -12.708099365234318 ], [ -71.919448852539006, -12.705430030822754 ], [ -71.920272827148438, -12.702424049377328 ], [ -71.922615051269531, -12.699816703796387 ], [ -71.924293518066349, -12.698517799377441 ], [ -71.928878784179631, -12.695707321166992 ], [ -71.933624267578125, -12.69370174407959 ], [ -71.936347961425781, -12.693083763122559 ], [ -71.939262390136662, -12.691889762878418 ], [ -71.944633483886662, -12.691302299499455 ], [ -71.948287963867188, -12.689689636230412 ], [ -71.951812744140625, -12.688538551330566 ], [ -71.955192565917912, -12.68660926818842 ], [ -71.958808898925781, -12.683851242065316 ], [ -71.960693359375, -12.682680130004826 ], [ -71.962669372558594, -12.680745124816838 ], [ -71.963455200195312, -12.67735576629633 ], [ -71.964469909667912, -12.674595832824707 ], [ -71.964942932128849, -12.67225265502924 ], [ -71.964981079101562, -12.668574333190918 ], [ -71.96441650390625, -12.665055274963379 ], [ -71.963691711425724, -12.66279220581049 ], [ -71.962181091308537, -12.660055160522461 ], [ -71.961174011230469, -12.658842086791935 ], [ -71.959617614746094, -12.656016349792424 ], [ -71.958351135253849, -12.654305458068848 ], [ -71.957534790039062, -12.65235424041748 ], [ -71.955474853515568, -12.649060249328613 ], [ -71.954399108886719, -12.646321296691838 ], [ -71.954490661621094, -12.642094612121582 ], [ -71.956954956054688, -12.62830638885498 ], [ -71.956909179687443, -12.621168136596623 ], [ -71.957183837890625, -12.619627952575684 ], [ -71.957183837890625, -12.61806583404541 ], [ -71.9580078125, -12.613832473754826 ], [ -71.958724975585881, -12.612548828124943 ], [ -71.960365295410099, -12.610660552978516 ], [ -71.961891174316349, -12.608031272888127 ], [ -71.968605041503906, -12.601543426513672 ], [ -71.970916748046875, -12.598424911499023 ], [ -71.972297668456918, -12.596147537231445 ], [ -71.974601745605469, -12.593255996704102 ], [ -71.976264953613224, -12.588597297668457 ], [ -71.978446960449219, -12.585721015930176 ], [ -71.981735229492074, -12.579960823059025 ], [ -71.983612060546818, -12.57756233215332 ], [ -71.986259460449219, -12.575116157531738 ], [ -71.989028930664062, -12.573415756225472 ], [ -71.994216918945256, -12.571667671203556 ], [ -71.998580932617131, -12.569873809814453 ], [ -71.999404907226562, -12.569467544555607 ], [ -72.000015258789006, -12.568814277648812 ], [ -72.001426696777344, -12.565505027770939 ], [ -72.001914978027344, -12.563173294067326 ], [ -72.000930786132812, -12.554121017455998 ], [ -72.00103759765625, -12.550905227661019 ], [ -72.001441955566349, -12.548924446105957 ], [ -72.002227783203068, -12.546955108642578 ], [ -72.0030517578125, -12.545617103576603 ], [ -72.010299682617188, -12.538490295410156 ], [ -72.011466979980412, -12.536229133605957 ], [ -72.011451721191406, -12.53300666809082 ], [ -72.010612487792912, -12.527739524841252 ], [ -72.009948730468693, -12.525337219238281 ], [ -72.009918212890625, -12.522953033447266 ], [ -72.010498046875, -12.519781112670842 ], [ -72.011886596679688, -12.516787528991586 ], [ -72.014846801757812, -12.513731956481877 ], [ -72.016365051269531, -12.512685775756836 ], [ -72.018821716308537, -12.512223243713322 ], [ -72.020050048828068, -12.511776924133244 ], [ -72.023521423339844, -12.511281967163086 ], [ -72.024650573730355, -12.51085376739502 ], [ -72.027252197265625, -12.510672569274846 ], [ -72.029281616210938, -12.510803222656136 ], [ -72.033058166503906, -12.510258674621468 ], [ -72.035003662109375, -12.51020622253418 ], [ -72.0391845703125, -12.510534286498967 ], [ -72.041915893554574, -12.511088371276855 ], [ -72.044517517089844, -12.511277198791447 ], [ -72.046554565429631, -12.510660171508675 ], [ -72.047927856445312, -12.509420394897347 ], [ -72.048904418945312, -12.50886154174799 ], [ -72.05499267578125, -12.508369445800781 ], [ -72.057823181152287, -12.50756931304926 ], [ -72.061241149902287, -12.505889892578125 ], [ -72.063636779785099, -12.504289627075195 ], [ -72.064338684082031, -12.503458023071289 ], [ -72.065582275390625, -12.501285552978516 ], [ -72.067481994628906, -12.499663352966309 ], [ -72.068153381347656, -12.497718811035099 ], [ -72.06880950927723, -12.496829986572266 ], [ -72.0704345703125, -12.495186805724984 ], [ -72.072593688964787, -12.4937486648559 ], [ -72.074272155761719, -12.49232006072998 ], [ -72.075515747070312, -12.490374565124398 ], [ -72.075782775878906, -12.489221572875977 ], [ -72.076179504394531, -12.488601684570312 ], [ -72.075866699218636, -12.486935615539551 ], [ -72.075111389160156, -12.485601425170898 ], [ -72.072120666503849, -12.482794761657715 ], [ -72.070022583007756, -12.481561660766545 ], [ -72.068382263183594, -12.479972839355412 ], [ -72.066650390625, -12.47786808013916 ], [ -72.06256103515625, -12.471219062805119 ], [ -72.060501098632756, -12.467386245727539 ], [ -72.060089111328125, -12.4658203125 ], [ -72.060043334960938, -12.464653015136719 ], [ -72.061599731445312, -12.458132743835392 ], [ -72.061523437499943, -12.452811241149902 ], [ -72.060806274414062, -12.449667930603027 ], [ -72.05965423583973, -12.447162628173771 ], [ -72.058876037597599, -12.444806098937931 ], [ -72.058578491210881, -12.442988395690918 ], [ -72.057891845703125, -12.441082000732365 ], [ -72.057411193847656, -12.438864707946721 ], [ -72.056945800781193, -12.438174247741642 ], [ -72.055335998535099, -12.434138298034668 ], [ -72.054382324218693, -12.432456016540471 ], [ -72.049217224121094, -12.42689037322998 ], [ -72.047439575195256, -12.42441463470459 ], [ -72.045043945312443, -12.4200439453125 ], [ -72.04193115234375, -12.41285514831543 ], [ -72.038261413574162, -12.406664848327637 ], [ -72.034797668457031, -12.404180526733398 ], [ -72.031715393066406, -12.4037570953368 ], [ -72.029792785644474, -12.404026031494141 ], [ -72.026924133300724, -12.404844284057617 ], [ -72.023880004882756, -12.405179023742676 ], [ -72.020011901855469, -12.406512260436955 ], [ -72.017181396484318, -12.40709400177002 ], [ -72.015419006347656, -12.407009124755803 ], [ -72.013923645019531, -12.406508445739689 ], [ -72.012001037597656, -12.405076980590763 ], [ -72.010078430175781, -12.402462005615178 ], [ -72.008735656738281, -12.399739265441895 ], [ -72.007026672363281, -12.394580841064453 ], [ -72.005287170410099, -12.391960144042912 ], [ -72.004135131835881, -12.39063835144043 ], [ -72.001281738281193, -12.388277053832951 ], [ -72.000228881835881, -12.387893676757812 ], [ -71.995025634765625, -12.387086868286133 ], [ -71.993545532226506, -12.38658428192133 ], [ -71.991950988769531, -12.385517120361328 ], [ -71.989669799804688, -12.383044242858887 ], [ -71.988182067871094, -12.380861282348576 ], [ -71.986534118652344, -12.379279136657715 ], [ -71.983383178710938, -12.37326717376709 ], [ -71.979660034179688, -12.368692398071289 ], [ -71.977630615234318, -12.364433288574219 ], [ -71.976219177246094, -12.362213134765568 ], [ -71.974761962890568, -12.358316421508789 ], [ -71.971244812011605, -12.354707717895451 ], [ -71.969322204589787, -12.350422859191781 ], [ -71.96795654296875, -12.348276138305664 ], [ -71.961944580078125, -12.341805458068791 ], [ -71.960807800292969, -12.340907096862736 ], [ -71.957801818847543, -12.339167594909668 ], [ -71.955177307128906, -12.336139678955078 ], [ -71.953598022460881, -12.334757804870605 ], [ -71.951469421386662, -12.329008102416992 ], [ -71.949729919433594, -12.326913833618164 ], [ -71.945075988769531, -12.323129653930664 ], [ -71.944328308105412, -12.321758270263615 ], [ -71.944221496581974, -12.320692062377816 ], [ -71.945075988769531, -12.314615249633789 ], [ -71.944694519042969, -12.311367988586426 ], [ -71.944427490234318, -12.310622215270996 ], [ -71.943283081054631, -12.309192657470646 ], [ -71.941993713378906, -12.306397438049316 ], [ -71.938064575195312, -12.302334785461369 ], [ -71.935333251953125, -12.300715446472168 ], [ -71.932632446289062, -12.298397064208928 ], [ -71.93080902099598, -12.29612922668457 ], [ -71.928886413574162, -12.293045997619629 ], [ -71.927177429199162, -12.291040420532227 ], [ -71.927833557128849, -12.289998054504395 ], [ -71.928482055664062, -12.288968086242619 ], [ -71.930427551269418, -12.286508560180664 ], [ -71.931137084960938, -12.285609245300236 ], [ -71.932601928710881, -12.284560203552189 ], [ -71.933586120605469, -12.284195899963379 ], [ -71.9349365234375, -12.283699035644474 ], [ -71.936576843261719, -12.28328895568842 ], [ -71.937690734863281, -12.283011436462346 ], [ -71.944038391113224, -12.282034873962402 ], [ -71.947273254394474, -12.281538009643555 ], [ -71.950630187988224, -12.281252861022949 ], [ -71.952919006347599, -12.281060218810978 ], [ -71.953437805175781, -12.281203269958439 ], [ -71.954780578613281, -12.28157901763916 ], [ -71.956314086914062, -12.281731605529728 ], [ -71.95660400390625, -12.28176212310791 ], [ -71.959884643554631, -12.283161163329964 ], [ -71.962966918945312, -12.285127639770508 ], [ -71.963348388671875, -12.285506248474064 ], [ -71.964157104492131, -12.286306381225586 ], [ -71.965400695800724, -12.286725997924748 ], [ -71.968269348144474, -12.286949157714787 ], [ -71.970848083496037, -12.286869049072209 ], [ -71.974685668945312, -12.286114692687931 ], [ -71.976341247558594, -12.285788536071721 ], [ -71.980209350585824, -12.284648895263672 ], [ -71.984237670898438, -12.283138275146428 ], [ -71.991012573242188, -12.278725624084473 ], [ -71.996551513671875, -12.276086807250977 ], [ -72.000205993652287, -12.27464580535883 ], [ -72.006362915039062, -12.272899627685547 ], [ -72.008575439453125, -12.271900177001896 ], [ -72.008888244628849, -12.271759033203125 ], [ -72.009353637695312, -12.271487236022892 ], [ -72.011917114257812, -12.269977569580021 ], [ -72.012557983398438, -12.269421577453556 ], [ -72.013862609863224, -12.268289566040039 ], [ -72.01666259765625, -12.264178276062012 ], [ -72.018173217773438, -12.26243877410883 ], [ -72.021705627441406, -12.258989334106332 ], [ -72.022331237792912, -12.258379936218262 ], [ -72.025321960449105, -12.256771087646484 ], [ -72.027946472167969, -12.255359649658203 ], [ -72.028335571289006, -12.255203247070256 ], [ -72.029586791992131, -12.254708290100098 ], [ -72.031227111816349, -12.254345893859863 ], [ -72.039863586425781, -12.25474739074707 ], [ -72.044212341308594, -12.2543687820434 ], [ -72.050094604492131, -12.254270553588867 ], [ -72.053092956542969, -12.254897117614689 ], [ -72.056434631347656, -12.25628757476801 ], [ -72.056678771972599, -12.256269454956055 ], [ -72.058113098144474, -12.256149291992131 ], [ -72.059036254882812, -12.255800247192383 ], [ -72.059501647949219, -12.255626678466797 ], [ -72.063140869140625, -12.253116607665959 ], [ -72.066429138183594, -12.251419067382812 ], [ -72.067451477050724, -12.250808715820256 ], [ -72.071342468261719, -12.248478889465332 ], [ -72.072052001953011, -12.247615814208984 ], [ -72.072280883789062, -12.247340202331486 ], [ -72.07271575927723, -12.246474266052246 ], [ -72.073532104492188, -12.244865417480469 ], [ -72.074256896972656, -12.243905067443848 ], [ -72.075088500976506, -12.243349075317269 ], [ -72.076469421386719, -12.242807388305664 ], [ -72.077430725097656, -12.242430686950684 ], [ -72.078689575195256, -12.241350173950195 ], [ -72.079299926757699, -12.239736557006836 ], [ -72.080177307128906, -12.237419128417969 ], [ -72.080406188964787, -12.237043380737248 ], [ -72.080802917480412, -12.236399650573674 ], [ -72.08172607421875, -12.235600471496468 ], [ -72.083320617675781, -12.234800338745117 ], [ -72.084953308105469, -12.234579086303711 ], [ -72.088226318359318, -12.234587669372502 ], [ -72.0931396484375, -12.234599113464242 ], [ -72.094139099121037, -12.234148025512695 ], [ -72.095771789550724, -12.233409881591797 ], [ -72.096725463867131, -12.232619285583496 ], [ -72.097198486328068, -12.232227325439396 ], [ -72.097808837890625, -12.231429100036564 ], [ -72.098953247070312, -12.228359222412109 ], [ -72.099388122558537, -12.227641105651855 ], [ -72.100242614746037, -12.226240158080998 ], [ -72.101531982421875, -12.223090171813965 ], [ -72.10170745849598, -12.222158432006779 ], [ -72.102066040039006, -12.220199584960881 ], [ -72.10247802734375, -12.219226837158203 ], [ -72.102638244628849, -12.218838691711426 ], [ -72.104263305664006, -12.211970329284611 ], [ -72.104438781738224, -12.21051120758051 ], [ -72.104537963867131, -12.209686279296875 ], [ -72.104339599609375, -12.207039833068848 ], [ -72.103126525878849, -12.203858375549316 ], [ -72.098503112792969, -12.198940277099553 ], [ -72.097640991210938, -12.19759464263916 ], [ -72.097023010253849, -12.196628570556584 ], [ -72.095909118652344, -12.193289756774846 ], [ -72.095016479492131, -12.188869476318359 ], [ -72.095138549804688, -12.18623161315918 ], [ -72.097328186035156, -12.181158065795842 ], [ -72.097862243652287, -12.180228233337346 ], [ -72.099746704101562, -12.176931381225586 ], [ -72.099845886230469, -12.175874710083008 ], [ -72.099868774414006, -12.175649642944336 ], [ -72.100280761718636, -12.174770355224609 ], [ -72.100799560546875, -12.173650741577148 ], [ -72.10076904296875, -12.173069953918457 ], [ -72.100502014160156, -12.168399810790959 ], [ -72.100173950195256, -12.166630744934025 ], [ -72.100028991699219, -12.165877342224121 ], [ -72.098861694335938, -12.163370132446289 ], [ -72.098182678222543, -12.162266731262207 ], [ -72.095718383789062, -12.158260345458984 ], [ -72.095176696777344, -12.157179832458496 ], [ -72.094642639160099, -12.156110763549805 ], [ -72.091400146484318, -12.151858329772949 ], [ -72.089401245117131, -12.148008346557617 ], [ -72.088821411132756, -12.146381378173771 ], [ -72.088439941406193, -12.145310401916504 ], [ -72.088401794433594, -12.145107269287109 ], [ -72.088226318359318, -12.144138336181641 ], [ -72.088455200195199, -12.143069267272949 ], [ -72.088752746582031, -12.141709327697754 ], [ -72.092155456542912, -12.134468078613224 ], [ -72.093482971191349, -12.130179405212402 ], [ -72.093582153320256, -12.127762794494629 ], [ -72.093696594238168, -12.124819755554142 ], [ -72.094177246093636, -12.120808601379395 ], [ -72.094711303710881, -12.107589721679574 ], [ -72.095062255859375, -12.105164527893066 ], [ -72.095169067382812, -12.104411125183049 ], [ -72.095207214355412, -12.103814125061035 ], [ -72.095947265625, -12.092209815979004 ], [ -72.096794128417969, -12.088438987731934 ], [ -72.097137451171875, -12.086930274963379 ], [ -72.098258972167912, -12.084929466247502 ], [ -72.098617553710938, -12.084549903869629 ], [ -72.098968505859375, -12.084178924560547 ], [ -72.101997375488168, -12.082089424133301 ], [ -72.106170654296818, -12.080589294433537 ], [ -72.108467102050724, -12.080243110656625 ], [ -72.109298706054688, -12.080117225646916 ], [ -72.110366821289006, -12.079857826232853 ], [ -72.112541198730469, -12.079321861267033 ], [ -72.116905212402344, -12.079331398010254 ], [ -72.118194580078068, -12.079048156738224 ], [ -72.120529174804688, -12.078537940979004 ], [ -72.126251220703125, -12.075886726379395 ], [ -72.127677917480469, -12.074718475341797 ], [ -72.131492614746094, -12.072634696960392 ], [ -72.134033203124943, -12.071768760681096 ], [ -72.134979248046818, -12.071294784545842 ], [ -72.135643005371037, -12.07096004486084 ], [ -72.13747406005848, -12.070709228515625 ], [ -72.137863159179688, -12.070758819580021 ], [ -72.140426635742074, -12.071089744567871 ], [ -72.143302917480469, -12.070919036865234 ], [ -72.145652770996037, -12.070059776306096 ], [ -72.148040771484318, -12.069630622863713 ], [ -72.148208618164062, -12.069599151611271 ], [ -72.152023315429688, -12.068419456481934 ], [ -72.157936096191406, -12.067270278930607 ], [ -72.159828186035156, -12.066470146179199 ], [ -72.161949157714787, -12.06557559967041 ], [ -72.165336608886719, -12.063326835632324 ], [ -72.168182373046761, -12.062355995178223 ], [ -72.16876220703125, -12.062159538268986 ], [ -72.170051574706974, -12.062162399291992 ], [ -72.171791076660099, -12.061818122863713 ], [ -72.173049926757812, -12.060901641845703 ], [ -72.174339294433594, -12.060363769531193 ], [ -72.176651000976506, -12.060450553893986 ], [ -72.176834106445256, -12.060529708862191 ], [ -72.178733825683537, -12.06136512756342 ], [ -72.179985046386662, -12.061644554138184 ], [ -72.18072509765625, -12.061811447143555 ], [ -72.182327270507812, -12.06190013885498 ], [ -72.185356140136719, -12.062068939208928 ], [ -72.186386108398381, -12.06182956695551 ], [ -72.186897277832031, -12.061709403991699 ], [ -72.189506530761662, -12.060148239135629 ], [ -72.190078735351506, -12.060088157653809 ], [ -72.192008972167912, -12.059869766235352 ], [ -72.197135925292912, -12.060819625854492 ], [ -72.197738647460881, -12.060850143432617 ], [ -72.199645996093693, -12.06095027923584 ], [ -72.202133178710824, -12.061553955078125 ], [ -72.20379638671875, -12.0619602203368 ], [ -72.205673217773438, -12.061777114868164 ], [ -72.207221984863281, -12.061627388000431 ], [ -72.208282470703125, -12.061978340148926 ], [ -72.20919036865223, -12.061965942382812 ], [ -72.212654113769531, -12.061916351318359 ], [ -72.220939636230469, -12.063597679138127 ], [ -72.222824096679574, -12.063525199890137 ], [ -72.223831176757812, -12.063488960266113 ], [ -72.2275390625, -12.06265926361084 ], [ -72.231018066406193, -12.063190460205078 ], [ -72.232872009277344, -12.062677383422852 ], [ -72.23431396484375, -12.062275886535645 ], [ -72.237739562988281, -12.062844276428223 ], [ -72.241806030273324, -12.063517570495605 ], [ -72.246513366699219, -12.062928199768066 ], [ -72.249519348144474, -12.061898231506291 ], [ -72.251342773437386, -12.060989379882812 ], [ -72.254829406738281, -12.060409545898438 ], [ -72.257865905761719, -12.059288024902344 ], [ -72.263847351074219, -12.056539535522461 ], [ -72.267356872558537, -12.055330276489258 ], [ -72.268486022949162, -12.054538726806584 ], [ -72.269302368164062, -12.053684234619084 ], [ -72.270011901855412, -12.052939414978027 ], [ -72.270339965820312, -12.051724433898869 ], [ -72.2711181640625, -12.048850059509277 ], [ -72.271202087402344, -12.048027038574219 ], [ -72.271392822265625, -12.046190261840763 ], [ -72.271171569824162, -12.042628288269043 ], [ -72.270301818847599, -12.04047870635975 ], [ -72.269050598144474, -12.038286209106388 ], [ -72.268287658691349, -12.036948204040527 ], [ -72.268127441406136, -12.035758972167912 ], [ -72.268257141113281, -12.03484916687006 ], [ -72.268417358398438, -12.034624099731445 ], [ -72.268890380859261, -12.033952713012695 ], [ -72.269691467285156, -12.033329010009766 ], [ -72.274520874023438, -12.030780792236328 ], [ -72.275672912597656, -12.029458999633789 ], [ -72.276023864746037, -12.02865028381342 ], [ -72.27632904052723, -12.027938842773381 ], [ -72.276321411132756, -12.027778625488281 ], [ -72.276283264160156, -12.027020454406681 ], [ -72.274200439453068, -12.023520469665471 ], [ -72.273857116699219, -12.02216815948475 ], [ -72.274291992187443, -12.020980834960881 ], [ -72.275108337402344, -12.019977569580078 ], [ -72.276336669921875, -12.01848030090332 ], [ -72.276939392089844, -12.01714038848877 ], [ -72.276992797851449, -12.016500473022461 ], [ -72.276611328124886, -12.015159606933537 ], [ -72.276481628417912, -12.01471996307373 ], [ -72.274192810058537, -12.010490417480412 ], [ -72.273895263671875, -12.008315086364746 ], [ -72.273818969726506, -12.007767677307015 ], [ -72.273948669433594, -12.006497383117619 ], [ -72.274009704589787, -12.005937576293945 ], [ -72.274406433105412, -12.004776000976506 ], [ -72.27471923828125, -12.003848075866699 ], [ -72.275230407714844, -12.002791404724121 ], [ -72.2760009765625, -12.001189231872559 ], [ -72.276702880859318, -12.000471115112305 ], [ -72.277198791503906, -11.999863624572754 ], [ -72.278236389160043, -11.998600006103516 ], [ -72.278785705566349, -11.997567176818848 ], [ -72.279052734375, -11.9970703125 ], [ -72.280410766601506, -11.991906166076603 ], [ -72.280899047851506, -11.99003887176508 ], [ -72.281410217285156, -11.98907470703125 ], [ -72.283271789550724, -11.985569953918457 ], [ -72.283157348632756, -11.982898712158203 ], [ -72.283920288085881, -11.980458259582463 ], [ -72.286422729492131, -11.975849151611328 ], [ -72.287124633789062, -11.975147247314453 ], [ -72.287933349609318, -11.974340438842773 ], [ -72.288772583007812, -11.973805427551213 ], [ -72.289016723632812, -11.973649978637582 ], [ -72.28973388671875, -11.973413467407227 ], [ -72.291656494140568, -11.972779273986816 ], [ -72.294998168945256, -11.972439765930176 ], [ -72.296905517578068, -11.97245979309082 ], [ -72.299461364746094, -11.972490310668888 ], [ -72.307304382324162, -11.972077369689885 ], [ -72.310913085937443, -11.971890449523869 ], [ -72.315826416015625, -11.972279548644963 ], [ -72.31842041015625, -11.972170829772949 ], [ -72.320259094238224, -11.972418785095158 ], [ -72.32415771484375, -11.972260475158635 ], [ -72.328857421874943, -11.971150398254395 ], [ -72.334777832031193, -11.969268798828125 ], [ -72.337509155273438, -11.967789649963322 ], [ -72.338867187499943, -11.966529846191349 ], [ -72.339653015136605, -11.965542793273926 ], [ -72.340019226074162, -11.965080261230412 ], [ -72.340065002441406, -11.964795112609863 ], [ -72.340301513671818, -11.963369369506836 ], [ -72.339912414550724, -11.961935043334961 ], [ -72.338623046875, -11.957148551940861 ], [ -72.338516235351562, -11.954646110534668 ], [ -72.338432312011719, -11.952738761901855 ], [ -72.339500427246094, -11.949319839477482 ], [ -72.342536926269531, -11.943229675292969 ], [ -72.342536926269531, -11.942708015441838 ], [ -72.342536926269531, -11.942398071289006 ], [ -72.342781066894474, -11.941731452941895 ], [ -72.342880249023381, -11.941450119018555 ], [ -72.342887878417912, -11.940490722656193 ], [ -72.342903137207031, -11.93666934967041 ], [ -72.343582153320312, -11.934800148010197 ], [ -72.344032287597599, -11.933568954467717 ], [ -72.344490051269474, -11.931520462036133 ], [ -72.344596862792912, -11.929676055908203 ], [ -72.346168518066406, -11.924769401550293 ], [ -72.346458435058594, -11.922209739685059 ], [ -72.345985412597656, -11.919599533081055 ], [ -72.344451904296875, -11.916978836059513 ], [ -72.343734741210881, -11.914789199829045 ], [ -72.343048095703068, -11.912690162658691 ], [ -72.342987060546761, -11.912160873413086 ], [ -72.342697143554631, -11.909499168395996 ], [ -72.343093872070312, -11.903282165527287 ], [ -72.343109130859375, -11.902984619140625 ], [ -72.344535827636719, -11.897766113281193 ], [ -72.345291137695312, -11.896088600158578 ], [ -72.345466613769418, -11.895342826843205 ], [ -72.346046447753906, -11.892868041992188 ], [ -72.346282958984375, -11.888648986816406 ], [ -72.345947265624886, -11.887208938598576 ], [ -72.345924377441349, -11.886228561401367 ], [ -72.34588623046875, -11.884268760681152 ], [ -72.346115112304631, -11.881928443908691 ], [ -72.346168518066406, -11.881348609924316 ], [ -72.350349426269531, -11.874188423156738 ], [ -72.351829528808537, -11.869650840759277 ], [ -72.35247802734375, -11.868427276611328 ], [ -72.353935241699162, -11.861992835998535 ], [ -72.354240417480355, -11.860628128051701 ], [ -72.354354858398438, -11.858695030212402 ], [ -72.355308532714844, -11.85450267791748 ], [ -72.355583190917969, -11.853836059570312 ], [ -72.356826782226562, -11.850850105285588 ], [ -72.359176635742131, -11.84783744812006 ], [ -72.360466003417969, -11.846188545226994 ], [ -72.366691589355469, -11.840268135070744 ], [ -72.368476867675781, -11.839139938354492 ], [ -72.368698120117188, -11.838907241821289 ], [ -72.369300842285099, -11.838280677795353 ], [ -72.37017822265625, -11.837252616882324 ], [ -72.370925903320256, -11.836381912231388 ], [ -72.37298583984375, -11.833238601684513 ], [ -72.374099731445312, -11.831992149353027 ], [ -72.375633239746094, -11.830279350280762 ], [ -72.381889343261662, -11.820189476013127 ], [ -72.384796142578125, -11.816149711608887 ], [ -72.386322021484375, -11.81442928314209 ], [ -72.389251708984375, -11.811908721923828 ], [ -72.390739440917912, -11.810270309448185 ], [ -72.391548156738281, -11.808865547180176 ], [ -72.392257690429631, -11.807640075683537 ], [ -72.392303466796875, -11.807115554809513 ], [ -72.392372131347599, -11.80635929107666 ], [ -72.392707824707031, -11.80558872222889 ], [ -72.392944335937443, -11.805385589599609 ], [ -72.393615722656193, -11.804806709289494 ], [ -72.396415710449219, -11.803189277648869 ], [ -72.398590087890511, -11.801239967346191 ], [ -72.399971008300781, -11.796659469604492 ], [ -72.400772094726506, -11.795763015747013 ], [ -72.402175903320256, -11.794187545776367 ], [ -72.402915954589844, -11.792929649352971 ], [ -72.402946472167912, -11.791756629943734 ], [ -72.402961730956974, -11.791199684143066 ], [ -72.40252685546875, -11.789580345153752 ], [ -72.402214050292855, -11.789034843444767 ], [ -72.4019775390625, -11.788629531860295 ], [ -72.401878356933594, -11.787877082824707 ], [ -72.403839111328125, -11.785010337829533 ], [ -72.404037475585938, -11.784390449523869 ], [ -72.403968811035156, -11.783359527587891 ], [ -72.403930664062386, -11.782840728759709 ], [ -72.403617858886662, -11.782509803771859 ], [ -72.403099060058594, -11.781963348388672 ], [ -72.401519775390568, -11.781200408935547 ], [ -72.400337219238281, -11.779767990112191 ], [ -72.399566650390625, -11.778298377990666 ], [ -72.399070739746094, -11.776909828186035 ], [ -72.398536682128906, -11.775428771972543 ], [ -72.397842407226562, -11.774394035339355 ], [ -72.395507812499943, -11.770930290222168 ], [ -72.395408630371037, -11.769920349121094 ], [ -72.394760131835881, -11.768051147460881 ], [ -72.394561767578068, -11.767478942871037 ], [ -72.394424438476562, -11.7666015625 ], [ -72.394248962402344, -11.765478134155273 ], [ -72.393798828124943, -11.764507293701172 ], [ -72.393470764160156, -11.763800621032715 ], [ -72.393196105957031, -11.761239051818734 ], [ -72.392356872558537, -11.759884834289494 ], [ -72.391685485839787, -11.758809089660645 ], [ -72.39129638671875, -11.75757884979248 ], [ -72.389945983886719, -11.754955291748047 ], [ -72.389938354492188, -11.751459121704102 ], [ -72.389816284179574, -11.750513076782227 ], [ -72.389205932617131, -11.745619773864689 ], [ -72.389091491699219, -11.740929603576546 ], [ -72.38924407958973, -11.73973274230957 ], [ -72.389556884765625, -11.737290382385197 ], [ -72.389595031738224, -11.735897064208984 ], [ -72.389656066894531, -11.733968734741154 ], [ -72.390121459960938, -11.731820106506348 ], [ -72.390007019042855, -11.729507446289062 ], [ -72.389999389648381, -11.729339599609318 ], [ -72.390571594238224, -11.724780082702637 ], [ -72.390480041503793, -11.72392463684082 ], [ -72.390335083007812, -11.722489356994572 ], [ -72.389816284179574, -11.720964431762695 ], [ -72.388687133789062, -11.718976974487305 ], [ -72.386581420898438, -11.716038703918343 ], [ -72.38552093505848, -11.715010643005314 ], [ -72.382797241210938, -11.712369918823242 ], [ -72.380790710449219, -11.711087226867676 ], [ -72.379432678222656, -11.710221290588265 ], [ -72.372947692871094, -11.706819534301758 ], [ -72.369132995605469, -11.704352378845101 ], [ -72.364402770996094, -11.700919151306039 ], [ -72.363792419433594, -11.700295448303166 ], [ -72.36297607421875, -11.699458122253361 ], [ -72.361427307128906, -11.696860313415527 ], [ -72.360260009765625, -11.693565368652287 ], [ -72.359069824218693, -11.687458992004395 ], [ -72.359260559081974, -11.683979034423828 ], [ -72.359001159667912, -11.682998657226506 ], [ -72.35845947265625, -11.682029724121037 ], [ -72.357414245605469, -11.681044578552246 ], [ -72.356437683105355, -11.680129051208382 ], [ -72.355636596679631, -11.678998947143555 ], [ -72.352462768554688, -11.675530433654785 ], [ -72.351432800292969, -11.673558235168457 ], [ -72.351058959960881, -11.672259330749512 ], [ -72.350822448730469, -11.671439170837346 ], [ -72.350921630859375, -11.669879913330078 ], [ -72.351257324218693, -11.669169425964355 ], [ -72.351669311523324, -11.668299674987736 ], [ -72.353805541992188, -11.665855407714844 ], [ -72.356101989746094, -11.663228988647347 ], [ -72.359275817871037, -11.658048629760685 ], [ -72.360015869140625, -11.655770301818848 ], [ -72.360687255859375, -11.654781341552678 ], [ -72.361061096191406, -11.653640747070199 ], [ -72.361198425292912, -11.653209686279297 ], [ -72.361686706542969, -11.652482986450195 ], [ -72.362121582031193, -11.651828765869027 ], [ -72.362251281738168, -11.65113639831543 ], [ -72.362426757812443, -11.650198936462402 ], [ -72.362792968749943, -11.649304389953613 ], [ -72.3634033203125, -11.647820472717228 ], [ -72.363471984863224, -11.646438598632812 ], [ -72.363365173339787, -11.646074295043945 ], [ -72.363082885742131, -11.645110130310002 ], [ -72.362548828125, -11.644508361816406 ], [ -72.362342834472599, -11.644268989562988 ], [ -72.360771179199219, -11.643468856811467 ], [ -72.360260009765625, -11.642527580261174 ], [ -72.359840393066349, -11.641759872436467 ], [ -72.359786987304688, -11.641215324401799 ], [ -72.359718322753906, -11.640499114990234 ], [ -72.359779357910156, -11.639683723449707 ], [ -72.359962463378793, -11.637269973754826 ], [ -72.359161376953125, -11.634719848632812 ], [ -72.359199523925668, -11.633801460266056 ], [ -72.359275817871037, -11.632063865661507 ], [ -72.359046936035156, -11.629866600036564 ], [ -72.358535766601449, -11.628680229187012 ], [ -72.357467651367131, -11.627660751342773 ], [ -72.356117248535099, -11.62637805938715 ], [ -72.354476928710938, -11.625789642333928 ], [ -72.353446960449162, -11.625789642333928 ], [ -72.351295471191406, -11.625405311584416 ], [ -72.3492431640625, -11.625040054321289 ], [ -72.346572875976562, -11.623570442199707 ], [ -72.343193054199219, -11.619528770446777 ], [ -72.342247009277344, -11.617628097534123 ], [ -72.340568542480412, -11.616530418395996 ], [ -72.339530944824162, -11.615851402282601 ], [ -72.338417053222656, -11.615363121032658 ], [ -72.336799621582031, -11.614659309387093 ], [ -72.334991455078125, -11.61354923248291 ], [ -72.329658508300781, -11.606599807739258 ], [ -72.328697204589844, -11.605827331542912 ], [ -72.327781677246094, -11.60508918762207 ], [ -72.326812744140625, -11.604610443115178 ], [ -72.326187133789006, -11.604299545288086 ], [ -72.32421875, -11.602918624877873 ], [ -72.318840026855412, -11.597275733947697 ], [ -72.317306518554631, -11.595668792724609 ], [ -72.317222595214787, -11.595534324645939 ], [ -72.3167724609375, -11.594819068908635 ], [ -72.31658935546875, -11.593938827514648 ], [ -72.316345214843693, -11.592738151550236 ], [ -72.315757751464844, -11.58495044708252 ], [ -72.315643310546875, -11.584606170654297 ], [ -72.315193176269531, -11.583309173583984 ], [ -72.314529418945312, -11.579065322875977 ], [ -72.31414794921875, -11.576620101928654 ], [ -72.313629150390625, -11.575019836425781 ], [ -72.312393188476562, -11.571208953857365 ], [ -72.311752319335938, -11.56813907623291 ], [ -72.3116455078125, -11.565849304199219 ], [ -72.311546325683594, -11.563559532165471 ], [ -72.311775207519474, -11.561843872070312 ], [ -72.312126159667969, -11.560916900634709 ], [ -72.311866760253849, -11.558529853820801 ], [ -72.311653137207031, -11.558090209960938 ], [ -72.311256408691406, -11.557288169860783 ], [ -72.309440612792969, -11.554842948913574 ], [ -72.30828857421875, -11.553283691406193 ], [ -72.307723999023438, -11.552201271057129 ], [ -72.307350158691406, -11.551475524902287 ], [ -72.306159973144474, -11.547408103942871 ], [ -72.305702209472543, -11.543848037719727 ], [ -72.305465698242188, -11.543008804321289 ], [ -72.305007934570256, -11.541373252868539 ], [ -72.305229187011719, -11.539215087890625 ], [ -72.307838439941406, -11.531949043273869 ], [ -72.307907104492188, -11.530652046203613 ], [ -72.307991027831918, -11.52910041809082 ], [ -72.308761596679688, -11.524678230285645 ], [ -72.308853149414062, -11.519148826599007 ], [ -72.30889892578125, -11.516489028930664 ], [ -72.309020996093693, -11.514843940734863 ], [ -72.309150695800781, -11.513200759887638 ], [ -72.309051513671875, -11.51137733459467 ], [ -72.308715820312443, -11.505306243896484 ], [ -72.307456970214844, -11.503968238830566 ], [ -72.306999206542912, -11.502552032470646 ], [ -72.305335998535156, -11.499188423156738 ], [ -72.302757263183594, -11.494939804077148 ], [ -72.300636291503849, -11.493203163146973 ], [ -72.299667358398381, -11.492409706115723 ], [ -72.298225402831974, -11.491558074951172 ], [ -72.29400634765625, -11.489068984985295 ], [ -72.292053222656193, -11.486858367919922 ], [ -72.291076660156193, -11.484860420226994 ], [ -72.289833068847599, -11.480239868164006 ], [ -72.289665222167912, -11.478144645690804 ], [ -72.289176940917912, -11.476458549499512 ], [ -72.288978576660099, -11.473890304565373 ], [ -72.288803100585881, -11.473152160644531 ], [ -72.288307189941349, -11.471120834350529 ], [ -72.288223266601506, -11.466799736022949 ], [ -72.288902282714787, -11.465279579162541 ], [ -72.289993286132812, -11.463718414306641 ], [ -72.290382385253906, -11.462578773498535 ], [ -72.290573120117188, -11.458008766174316 ], [ -72.290863037109375, -11.455825805664006 ], [ -72.290908813476506, -11.455450057983398 ], [ -72.29095458984375, -11.455286026000977 ], [ -72.29144287109375, -11.453400611877441 ], [ -72.292633056640511, -11.450519561767578 ], [ -72.29248046875, -11.44951152801508 ], [ -72.291168212890568, -11.445970535278263 ], [ -72.291122436523438, -11.445693016052189 ], [ -72.29091644287098, -11.444420814514103 ], [ -72.291175842285099, -11.443449974060059 ], [ -72.291618347167969, -11.442987442016545 ], [ -72.292457580566406, -11.442105293273869 ], [ -72.292411804199162, -11.44038200378418 ], [ -72.293342590332031, -11.439019203186035 ], [ -72.292343139648381, -11.436758041381836 ], [ -72.292770385742188, -11.435090065002441 ], [ -72.292739868164062, -11.434870719909668 ], [ -72.292655944824219, -11.434178352355957 ], [ -72.292137145996037, -11.433189392089844 ], [ -72.289405822753906, -11.430450439453068 ], [ -72.288810729980412, -11.428768157958871 ], [ -72.288352966308594, -11.427471160888672 ], [ -72.287811279296875, -11.423919677734375 ], [ -72.286231994628849, -11.422638893127441 ], [ -72.284835815429688, -11.422094345092773 ], [ -72.283210754394531, -11.421459197998047 ], [ -72.282722473144531, -11.421026229858398 ], [ -72.281959533691406, -11.420349121093693 ], [ -72.281417846679688, -11.419271469116154 ], [ -72.280479431152344, -11.414769172668343 ], [ -72.279701232910156, -11.413329124450684 ], [ -72.279212951660156, -11.412420272827148 ], [ -72.278373718261719, -11.41120719909668 ], [ -72.276527404785156, -11.408539772033635 ], [ -72.275741577148381, -11.407632827758732 ], [ -72.273796081542969, -11.405400276184025 ], [ -72.272735595703125, -11.403926849365234 ], [ -72.271797180175781, -11.402630805969181 ], [ -72.267547607421818, -11.398678779602051 ], [ -72.26708984375, -11.397980690002385 ], [ -72.265525817871037, -11.394049644470215 ], [ -72.265266418456918, -11.393703460693359 ], [ -72.264961242675724, -11.393300056457463 ], [ -72.264678955078068, -11.393139839172363 ], [ -72.263862609863281, -11.392680168151799 ], [ -72.260643005371094, -11.392969131469727 ], [ -72.257507324218693, -11.3919801712035 ], [ -72.257240295410099, -11.391779899597168 ], [ -72.256195068359318, -11.390995979309025 ], [ -72.253486633300781, -11.388198852539006 ], [ -72.252792358398438, -11.388057708740234 ], [ -72.250137329101562, -11.387519836425781 ], [ -72.249343872070312, -11.386109352111816 ], [ -72.248970031738281, -11.385451316833496 ], [ -72.247756958007812, -11.38501071929926 ], [ -72.247131347656193, -11.384420394897461 ], [ -72.247291564941406, -11.382519721984806 ], [ -72.247398376464787, -11.381248474121037 ], [ -72.246208190917969, -11.379379272460938 ], [ -72.245872497558537, -11.378230094909668 ], [ -72.246070861816349, -11.37742805480957 ], [ -72.246513366699219, -11.375650405883789 ], [ -72.246429443359375, -11.374932289123535 ], [ -72.246391296386719, -11.374641418457031 ], [ -72.246284484863168, -11.374505996704102 ], [ -72.245872497558537, -11.373989105224553 ], [ -72.244171142578068, -11.373279571533203 ], [ -72.242652893066349, -11.372049331664982 ], [ -72.242195129394531, -11.371124267578125 ], [ -72.241188049316406, -11.369084358215275 ], [ -72.241317749023381, -11.368138313293343 ], [ -72.241889953613224, -11.36695480346674 ], [ -72.243026733398381, -11.364589691162109 ], [ -72.243133544921818, -11.363245010375977 ], [ -72.243148803710938, -11.363031387329102 ], [ -72.240798950195312, -11.355380058288517 ], [ -72.240585327148438, -11.353886604309082 ], [ -72.240310668945312, -11.35200023651123 ], [ -72.240287780761719, -11.351197242736816 ], [ -72.240173339843693, -11.347678184509164 ], [ -72.238449096679631, -11.343012809753418 ], [ -72.238372802734261, -11.342606544494629 ], [ -72.23822021484375, -11.341746330261174 ], [ -72.238174438476506, -11.339062690734863 ], [ -72.239860534667912, -11.333632469177189 ], [ -72.239944458007812, -11.329954147338867 ], [ -72.240409851074219, -11.328370094299203 ], [ -72.240531921386662, -11.326997756958008 ], [ -72.242927551269474, -11.324538230895996 ], [ -72.242630004882756, -11.324128150939941 ], [ -72.242523193359375, -11.323209762573185 ], [ -72.243438720703125, -11.320699691772461 ], [ -72.243438720703125, -11.31895923614502 ], [ -72.241577148437443, -11.31704044342041 ], [ -72.241470336914062, -11.314020156860352 ], [ -72.239402770996037, -11.311299324035531 ], [ -72.237960815429631, -11.308730125427246 ], [ -72.236991882324219, -11.305740356445199 ], [ -72.236251831054631, -11.302328109741154 ], [ -72.235221862792855, -11.299759864807015 ], [ -72.233558654785156, -11.298439979553223 ], [ -72.232643127441349, -11.297969818115234 ], [ -72.229339599609375, -11.297490119934082 ], [ -72.227806091308594, -11.298130035400391 ], [ -72.225769042968693, -11.300009727478027 ], [ -72.224006652832031, -11.300819396972656 ], [ -72.222717285156193, -11.300869941711369 ], [ -72.221626281738281, -11.30059814453125 ], [ -72.219551086425724, -11.299199104309082 ], [ -72.218437194824105, -11.297518730163461 ], [ -72.215911865234375, -11.292680740356445 ], [ -72.212677001953125, -11.289909362792855 ], [ -72.211700439453125, -11.288689613342228 ], [ -72.211196899414062, -11.28748893737793 ], [ -72.211036682128906, -11.284829139709473 ], [ -72.210372924804688, -11.282720565795898 ], [ -72.20941162109375, -11.281139373779183 ], [ -72.206016540527287, -11.277000427246037 ], [ -72.205329895019531, -11.274798393249455 ], [ -72.203025817871094, -11.270438194274902 ], [ -72.201927185058537, -11.266349792480412 ], [ -72.201156616210881, -11.26508903503418 ], [ -72.199966430664062, -11.263811111450138 ], [ -72.200080871582031, -11.262709617614632 ], [ -72.201866149902344, -11.260248184204102 ], [ -72.202102661132756, -11.25825023651123 ], [ -72.201316833496094, -11.256489753723145 ], [ -72.199501037597656, -11.253750801086426 ], [ -72.198188781738224, -11.250709533691349 ], [ -72.19631195068348, -11.24462985992426 ], [ -72.195892333984375, -11.242929458618107 ], [ -72.195816040039006, -11.241458892822209 ], [ -72.195968627929688, -11.240269660949707 ], [ -72.196548461914062, -11.239118576049748 ], [ -72.197372436523438, -11.238259315490723 ], [ -72.197792053222656, -11.23655891418457 ], [ -72.197257995605412, -11.232780456542912 ], [ -72.197273254394531, -11.228738784790039 ], [ -72.1978759765625, -11.225199699401799 ], [ -72.198257446289062, -11.220898628234863 ], [ -72.199172973632699, -11.217720031738168 ], [ -72.199760437011719, -11.214268684387207 ], [ -72.200447082519531, -11.212569236755371 ], [ -72.201011657714844, -11.210378646850586 ], [ -72.201026916503906, -11.207630157470703 ], [ -72.200782775878849, -11.205428123474121 ], [ -72.199356079101506, -11.200760841369572 ], [ -72.199356079101506, -11.199379920959473 ], [ -72.198432922363281, -11.195718765258732 ], [ -72.197761535644531, -11.19429874420166 ], [ -72.196510314941406, -11.192819595336914 ], [ -72.195686340332031, -11.192378044128418 ], [ -72.193511962890568, -11.191889762878418 ], [ -72.185989379882756, -11.191869735717773 ], [ -72.184570312499943, -11.191448211669922 ], [ -72.183341979980355, -11.190328598022461 ], [ -72.183219909667912, -11.189608573913574 ], [ -72.183403015136662, -11.188608169555664 ], [ -72.185577392578125, -11.184328079223633 ], [ -72.185676574707031, -11.182598114013615 ], [ -72.184806823730469, -11.179698944091797 ], [ -72.182876586914062, -11.175200462341309 ], [ -72.182662963867131, -11.173500061035156 ], [ -72.1826171875, -11.168788909912053 ], [ -72.182037353515625, -11.166468620300236 ], [ -72.181022644042912, -11.165027618408203 ], [ -72.178192138671761, -11.163649559020996 ], [ -72.175247192382812, -11.163318634033203 ], [ -72.171638488769531, -11.163398742675781 ], [ -72.168678283691406, -11.16259860992426 ], [ -72.167060852050781, -11.161689758300781 ], [ -72.161552429199219, -11.156899452209359 ], [ -72.157051086425781, -11.155428886413574 ], [ -72.155197143554631, -11.155368804931641 ], [ -72.153633117675781, -11.154919624328613 ], [ -72.149070739746037, -11.152619361877441 ], [ -72.145393371582031, -11.149820327758789 ], [ -72.142318725585881, -11.146750450134277 ], [ -72.138893127441349, -11.142749786376896 ], [ -72.137435913085881, -11.140829086303711 ], [ -72.135749816894474, -11.137968063354492 ], [ -72.133132934570312, -11.134738922119084 ], [ -72.130889892578011, -11.132528305053711 ], [ -72.127548217773381, -11.129758834838867 ], [ -72.122383117675724, -11.124458312988281 ], [ -72.120391845703068, -11.121210098266602 ], [ -72.118316650390625, -11.116879463195801 ], [ -72.118118286132812, -11.115530014037972 ], [ -72.118370056152287, -11.113129615783691 ], [ -72.120750427246037, -11.109098434448242 ], [ -72.120925903320312, -11.104149818420353 ], [ -72.121551513671875, -11.102399826049805 ], [ -72.122543334960938, -11.101328849792424 ], [ -72.1236572265625, -11.100899696350041 ], [ -72.127281188964844, -11.101030349731388 ], [ -72.129692077636719, -11.100079536437988 ], [ -72.130966186523381, -11.099020004272404 ], [ -72.132736206054688, -11.096549987792969 ], [ -72.134376525878906, -11.095209121704045 ], [ -72.137687683105469, -11.094318389892578 ], [ -72.142829895019531, -11.092219352722168 ], [ -72.143692016601562, -11.091130256652832 ], [ -72.145187377929631, -11.08828067779541 ], [ -72.147026062011719, -11.0868883132934 ], [ -72.148773193359375, -11.086729049682504 ], [ -72.154586791992188, -11.088918685913029 ], [ -72.159721374511719, -11.090159416198674 ], [ -72.164077758788949, -11.089899063110352 ], [ -72.166397094726562, -11.087800025939941 ], [ -72.167633056640625, -11.085838317871094 ], [ -72.168190002441406, -11.084299087524414 ], [ -72.169181823730469, -11.077288627624455 ], [ -72.170196533203125, -11.075098037719613 ], [ -72.174110412597656, -11.070210456848031 ], [ -72.177177429199219, -11.067838668823185 ], [ -72.1790771484375, -11.066088676452637 ], [ -72.181106567382812, -11.064660072326603 ], [ -72.182662963867131, -11.062279701232853 ], [ -72.183006286621094, -11.060960769653263 ], [ -72.183479309082031, -11.055998802185059 ], [ -72.18316650390625, -11.053558349609318 ], [ -72.181488037109375, -11.05058765411377 ], [ -72.180107116699219, -11.049329757690373 ], [ -72.178115844726562, -11.047969818115234 ], [ -72.176986694335938, -11.046389579772892 ], [ -72.176048278808594, -11.04331111907959 ], [ -72.17547607421875, -11.039029121398926 ], [ -72.175315856933537, -11.034990310668945 ], [ -72.173942565917969, -11.031289100646916 ], [ -72.173637390136719, -11.029470443725586 ], [ -72.173995971679574, -11.027669906616154 ], [ -72.175186157226562, -11.024979591369572 ], [ -72.175651550292969, -11.023388862609863 ], [ -72.176643371581974, -11.0213108062743 ], [ -72.179046630859318, -11.017768859863281 ], [ -72.181930541992188, -11.015168190002385 ], [ -72.183990478515568, -11.012809753417969 ], [ -72.185600280761662, -11.011949539184513 ], [ -72.186836242675724, -11.010469436645508 ], [ -72.185577392578125, -11.009320259094238 ], [ -72.18257904052723, -11.00747013092041 ], [ -72.181076049804688, -11.006099700927621 ], [ -72.179771423339844, -11.004219055175781 ], [ -72.176956176757699, -10.999009132385254 ], [ -72.174942016601506, -10.996649742126465 ], [ -72.173660278320312, -10.996370315551758 ], [ -72.172477722167969, -10.99684906005848 ], [ -72.168670654296875, -11.000878334045296 ], [ -72.166030883789062, -11.002567291259652 ], [ -72.163436889648438, -11.002799987792969 ], [ -72.160270690917969, -11.004010200500431 ], [ -72.158607482910099, -11.004049301147347 ], [ -72.157485961914006, -11.003800392150822 ], [ -72.156883239746094, -11.003398895263615 ], [ -72.155403137206918, -11.001580238342285 ], [ -72.155372619628849, -10.999107360839787 ], [ -72.154891967773381, -10.99811840057373 ], [ -72.154891967773381, -10.994819641113224 ], [ -72.154319763183537, -10.99396800994873 ], [ -72.152946472167969, -10.993399620056152 ], [ -72.149589538574219, -10.992728233337402 ], [ -72.147781372070312, -10.99198055267334 ], [ -72.144638061523438, -10.990118026733342 ], [ -72.142295837402344, -10.987290382385254 ], [ -72.139518737792969, -10.986260414123478 ], [ -72.136886596679631, -10.985690116882324 ], [ -72.135421752929688, -10.985870361328068 ], [ -72.134811401367188, -10.986280441284123 ], [ -72.133460998535099, -10.986650466918945 ], [ -72.131637573242131, -10.987748146057129 ], [ -72.129417419433594, -10.98776912689209 ], [ -72.127662658691406, -10.989268302917424 ], [ -72.125633239746037, -10.991998672485295 ], [ -72.122940063476506, -10.994528770446721 ], [ -72.119041442871037, -10.99623966217041 ], [ -72.117279052734375, -10.996780395507812 ], [ -72.115150451660099, -10.997039794921761 ], [ -72.11238861083973, -10.996229171752816 ], [ -72.109527587890511, -10.996019363403263 ], [ -72.108352661132756, -10.995139122009277 ], [ -72.107460021972656, -10.993869781494084 ], [ -72.105590820312443, -10.99297046661377 ], [ -72.104530334472656, -10.99297046661377 ], [ -72.102737426757756, -10.993559837341252 ], [ -72.101615905761605, -10.99368953704834 ], [ -72.100471496581918, -10.994269371032715 ], [ -72.098663330078125, -10.995978355407715 ], [ -72.096817016601506, -10.998400688171387 ], [ -72.095832824707031, -11.000099182128906 ], [ -72.093597412109318, -11.002900123596191 ], [ -72.092460632324105, -11.003679275512695 ], [ -72.091217041015511, -11.004038810729924 ], [ -72.088333129882756, -11.004000663757324 ], [ -72.087738037109375, -11.00375938415516 ], [ -72.083297729492131, -10.998371124267464 ], [ -72.08056640625, -10.996319770812988 ], [ -72.076171875, -10.991928100585938 ], [ -72.073677062988281, -10.990719795227051 ], [ -72.072219848632756, -10.990440368652287 ], [ -72.070365905761719, -10.990468978881779 ], [ -72.067726135253849, -10.991370201110783 ], [ -72.065452575683537, -10.991780281066838 ], [ -72.064430236816406, -10.99170017242426 ], [ -72.0623779296875, -10.991119384765568 ], [ -72.061073303222599, -10.991088867187443 ], [ -72.057579040527344, -10.991998672485295 ], [ -72.056213378906193, -10.991739273071232 ], [ -72.0540771484375, -10.990859031677246 ], [ -72.053138732910099, -10.990918159484863 ], [ -72.051567077636719, -10.99147891998291 ], [ -72.050582885742131, -10.991228103637695 ], [ -72.050132751464844, -10.990260124206543 ], [ -72.049102783203125, -10.989870071411133 ], [ -72.048393249511662, -10.989137649536076 ], [ -72.048233032226562, -10.988218307495004 ], [ -72.04888916015625, -10.987149238586426 ], [ -72.050880432128793, -10.986039161682129 ], [ -72.051956176757812, -10.984430313110352 ], [ -72.052085876464787, -10.983529090881348 ], [ -72.051666259765625, -10.98173809051508 ], [ -72.051292419433594, -10.981059074401799 ], [ -72.05059814453125, -10.980480194091797 ], [ -72.049575805664062, -10.980480194091797 ], [ -72.04901123046875, -10.980710029602051 ], [ -72.047607421874943, -10.982000350952092 ], [ -72.046646118164006, -10.981428146362248 ], [ -72.046012878417855, -10.981319427490234 ], [ -72.045379638671875, -10.981459617614689 ], [ -72.043899536132756, -10.982428550720215 ], [ -72.042266845703068, -10.981728553771973 ], [ -72.041542053222656, -10.981908798217717 ], [ -72.040740966796818, -10.982659339904671 ], [ -72.040176391601506, -10.983609199523869 ], [ -72.040168762206974, -10.985980033874512 ], [ -72.039970397949162, -10.98649883270258 ], [ -72.039405822753849, -10.986980438232422 ], [ -72.038116455078125, -10.987098693847599 ], [ -72.037345886230469, -10.987639427185002 ], [ -72.035713195800668, -10.991518020629826 ], [ -72.035270690917969, -10.99202823638916 ], [ -72.034782409667969, -10.992178916931152 ], [ -72.033836364746094, -10.991969108581543 ], [ -72.032989501953125, -10.99160003662098 ], [ -72.032386779785156, -10.990789413452035 ], [ -72.032485961914062, -10.987668037414551 ], [ -72.032333374023438, -10.986669540405217 ], [ -72.031295776367131, -10.985509872436467 ], [ -72.029808044433594, -10.984978675842285 ], [ -72.029342651367188, -10.984539031982365 ], [ -72.028526306152287, -10.980788230895939 ], [ -72.027915954589844, -10.979878425598088 ], [ -72.026206970214844, -10.979119300842228 ], [ -72.023345947265625, -10.97907829284668 ], [ -72.021842956542969, -10.978189468383732 ], [ -72.020606994628906, -10.976938247680607 ], [ -72.019882202148324, -10.976749420166016 ], [ -72.019172668457031, -10.977328300476074 ], [ -72.01904296875, -10.979709625244141 ], [ -72.018447875976506, -10.980669021606388 ], [ -72.017723083496094, -10.980898857116586 ], [ -72.016769409179688, -10.980330467224121 ], [ -72.015922546386719, -10.979220390319824 ], [ -72.015975952148324, -10.976119995117131 ], [ -72.014022827148438, -10.973920822143555 ], [ -72.014091491699219, -10.972159385681152 ], [ -72.013259887695312, -10.970729827880859 ], [ -72.013351440429688, -10.968350410461369 ], [ -72.012687683105469, -10.96663856506342 ], [ -72.008247375488168, -10.961100578308105 ], [ -72.005355834960881, -10.958978652954102 ], [ -72.00372314453125, -10.956648826599064 ], [ -72.001373291015568, -10.954570770263615 ], [ -72.000686645507756, -10.954260826110783 ], [ -72.000137329101506, -10.953578948974609 ], [ -71.994293212890568, -10.951560020446777 ], [ -71.988800048828125, -10.950220108032227 ], [ -71.983589172363281, -10.949249267578068 ], [ -71.973747253417969, -10.947870254516545 ], [ -71.97052001953125, -10.947649002075138 ], [ -71.966102600097656, -10.947690010070801 ], [ -71.955062866210938, -10.949039459228459 ], [ -71.952186584472656, -10.949939727783203 ], [ -71.948486328125, -10.949649810791016 ], [ -71.943862915039006, -10.949918746948242 ], [ -71.941513061523438, -10.949009895324707 ], [ -71.93605804443348, -10.947840690612793 ], [ -71.932647705078125, -10.94640922546381 ], [ -71.930557250976562, -10.946389198303166 ], [ -71.929206848144531, -10.945818901062012 ], [ -71.926170349121094, -10.946081161499023 ], [ -71.924629211425781, -10.94645881652832 ], [ -71.921279907226562, -10.948549270629883 ], [ -71.915489196777344, -10.951478004455453 ], [ -71.911293029785156, -10.953431129455566 ], [ -71.909706115722599, -10.953788757324219 ], [ -71.90576171875, -10.953909873962289 ], [ -71.903221130371037, -10.953700065612736 ], [ -71.894607543945312, -10.951849937438965 ], [ -71.890907287597656, -10.951448440551758 ], [ -71.88580322265625, -10.951309204101562 ], [ -71.882575988769531, -10.951478004455453 ], [ -71.879913330078125, -10.952319145202637 ], [ -71.869087219238224, -10.957059860229492 ], [ -71.863937377929631, -10.958450317382812 ], [ -71.861763000488168, -10.959238052368164 ], [ -71.857231140136719, -10.961559295654183 ], [ -71.855796813964844, -10.962730407714844 ], [ -71.851821899414006, -10.9669189453125 ], [ -71.847686767578125, -10.969888687133732 ], [ -71.845993041992131, -10.97145938873291 ], [ -71.844558715820312, -10.973269462585336 ], [ -71.842826843261719, -10.97653865814209 ], [ -71.840827941894531, -10.978779792785645 ], [ -71.839012145996094, -10.980209350585938 ], [ -71.834571838378849, -10.982708930969238 ], [ -71.830909729003906, -10.986560821533203 ], [ -71.829277038574219, -10.987038612365666 ], [ -71.827430725097543, -10.987998962402344 ], [ -71.825492858886662, -10.98962211608881 ], [ -71.822853088378793, -10.990479469299203 ], [ -71.821250915527344, -10.99181938171381 ], [ -71.818992614746094, -10.993011474609318 ], [ -71.816520690917969, -10.993579864501896 ], [ -71.811737060546875, -10.995898246765137 ], [ -71.806793212890625, -10.997078895568848 ], [ -71.806472778320312, -10.99773979187006 ], [ -71.805870056152287, -10.998008728027344 ], [ -71.802886962890568, -10.998648643493652 ], [ -71.794548034667969, -10.998679161071777 ], [ -71.787612915039062, -10.998208999633732 ], [ -71.768989562988281, -10.995658874511719 ], [ -71.763893127441349, -10.995599746704102 ], [ -71.762359619140568, -10.995051383972168 ], [ -71.757301330566349, -10.994368553161621 ], [ -71.754302978515625, -10.994109153747559 ], [ -71.749198913574162, -10.994099617004338 ], [ -71.746078491210881, -10.993239402770996 ], [ -71.741218566894418, -10.992929458618164 ], [ -71.737861633300724, -10.99202823638916 ], [ -71.734840393066406, -10.99202823638916 ], [ -71.733589172363168, -10.991439819335938 ], [ -71.731040954589844, -10.9914293289184 ], [ -71.725357055664006, -10.990268707275277 ], [ -71.718818664550781, -10.989919662475529 ], [ -71.707786560058594, -10.988430023193303 ], [ -71.701759338378906, -10.988400459289551 ], [ -71.699127197265568, -10.987518310546875 ], [ -71.691482543945312, -10.987180709838867 ], [ -71.6878662109375, -10.986310005187988 ], [ -71.681877136230412, -10.985577583312988 ], [ -71.67840576171875, -10.985350608825627 ], [ -71.672157287597599, -10.985357284545785 ], [ -71.655967712402344, -10.984128952026367 ], [ -71.652938842773438, -10.984089851379281 ], [ -71.648780822753849, -10.984389305114689 ], [ -71.64308929443348, -10.985499382019043 ], [ -71.640998840332031, -10.985450744628906 ], [ -71.636337280273438, -10.986859321594125 ], [ -71.630569458007756, -10.987399101257324 ], [ -71.628166198730469, -10.988259315490666 ], [ -71.621681213378906, -10.988530158996582 ], [ -71.616188049316349, -10.989410400390511 ], [ -71.609237670898438, -10.989609718322697 ], [ -71.584877014160099, -10.989178657531738 ], [ -71.582168579101562, -10.988579750061035 ], [ -71.573822021484318, -10.988249778747559 ], [ -71.571823120117131, -10.987659454345646 ], [ -71.549827575683594, -10.986359596252385 ], [ -71.541191101074219, -10.984619140624943 ], [ -71.522422790527287, -10.983868598937931 ], [ -71.516777038574219, -10.982499122619629 ], [ -71.507316589355469, -10.981728553771973 ], [ -71.502403259277287, -10.980330467224121 ], [ -71.499153137206974, -10.980339050292912 ], [ -71.497093200683594, -10.979739189147892 ], [ -71.490615844726562, -10.979140281677246 ], [ -71.486442565917969, -10.979140281677246 ], [ -71.480369567871037, -10.977638244628906 ], [ -71.475982666015568, -10.977269172668457 ], [ -71.472206115722656, -10.976138114929199 ], [ -71.466888427734375, -10.975668907165527 ], [ -71.464378356933594, -10.975260734558049 ], [ -71.446487426757812, -10.970819473266602 ], [ -71.444183349609375, -10.97080135345459 ], [ -71.439453124999943, -10.969598770141545 ], [ -71.434829711914062, -10.969319343566895 ], [ -71.427047729492131, -10.968020439147836 ], [ -71.421356201171761, -10.967399597167969 ], [ -71.416687011718636, -10.967458724975586 ], [ -71.415077209472656, -10.967768669128418 ], [ -71.40814208984375, -10.968209266662598 ], [ -71.403320312499943, -10.967538833618164 ], [ -71.389183044433537, -10.967559814453068 ], [ -71.386016845703125, -10.966910362243652 ], [ -71.38067626953125, -10.967128753662109 ], [ -71.378990173339787, -10.967910766601562 ], [ -71.3782958984375, -10.967928886413461 ], [ -71.371116638183594, -10.967630386352539 ], [ -71.364875793456974, -10.967069625854492 ], [ -71.361045837402344, -10.966139793395996 ], [ -71.357147216796818, -10.96466064453125 ], [ -71.352439880371094, -10.962189674377441 ], [ -71.347152709960881, -10.958868980407601 ], [ -71.344200134277287, -10.956640243530217 ], [ -71.34181976318348, -10.954439163207951 ], [ -71.336853027343693, -10.951040267944336 ], [ -71.333366394042969, -10.948018074035588 ], [ -71.329795837402287, -10.944398880004883 ], [ -71.325416564941293, -10.939038276672363 ], [ -71.3250732421875, -10.938090324401855 ], [ -71.322982788085938, -10.936248779296875 ], [ -71.322212219238281, -10.934848785400334 ], [ -71.313957214355412, -10.925809860229435 ], [ -71.308715820312443, -10.91741943359375 ], [ -71.301612854003906, -10.908920288085824 ], [ -71.301033020019531, -10.90742015838623 ], [ -71.297019958496094, -10.902069091796875 ], [ -71.295021057128906, -10.897927284240723 ], [ -71.291877746582031, -10.893649101257324 ], [ -71.291511535644531, -10.892338752746525 ], [ -71.289871215820312, -10.890390396118164 ], [ -71.285438537597599, -10.882320404052734 ], [ -71.281417846679631, -10.877558708190918 ], [ -71.273216247558537, -10.865579605102539 ], [ -71.270957946777287, -10.863280296325627 ], [ -71.269538879394531, -10.861470222473145 ], [ -71.263969421386662, -10.85164737701416 ], [ -71.261207580566349, -10.848428726196289 ], [ -71.259925842285156, -10.846540451049805 ], [ -71.254997253417969, -10.835630416870004 ], [ -71.249916076660156, -10.826328277587777 ], [ -71.248298645019531, -10.82252025604248 ], [ -71.246482849121094, -10.817558288574105 ], [ -71.243629455566406, -10.808560371398926 ], [ -71.243156433105469, -10.804908752441406 ], [ -71.240280151367188, -10.79689979553217 ], [ -71.239631652832031, -10.793039321899414 ], [ -71.239181518554631, -10.786389350891056 ], [ -71.238410949706974, -10.783260345458984 ], [ -71.238418579101506, -10.772450447082463 ], [ -71.238166809082031, -10.769259452819767 ], [ -71.237075805664006, -10.762439727783203 ], [ -71.236869812011719, -10.743358612060433 ], [ -71.236351013183594, -10.740497589111214 ], [ -71.236312866210881, -10.730149269104004 ], [ -71.235549926757756, -10.722608566284123 ], [ -71.235511779785156, -10.715469360351562 ], [ -71.234039306640568, -10.701750755310002 ], [ -71.232177734375, -10.689949035644474 ], [ -71.230110168456974, -10.682168006896973 ], [ -71.227439880371037, -10.674557685852051 ], [ -71.2255859375, -10.671639442443791 ], [ -71.219146728515568, -10.657629013061523 ], [ -71.213172912597543, -10.647129058837834 ], [ -71.21148681640625, -10.64495944976801 ], [ -71.203598022460881, -10.636858940124512 ], [ -71.191818237304688, -10.6220703125 ], [ -71.182472229003906, -10.605419158935547 ], [ -71.177520751953125, -10.598200798034668 ], [ -71.173950195312443, -10.593968391418457 ], [ -71.171035766601562, -10.587960243225098 ], [ -71.168907165527287, -10.584398269653263 ], [ -71.166137695312443, -10.580438613891602 ], [ -71.161056518554688, -10.574469566345215 ], [ -71.158500671386662, -10.570359230041447 ], [ -71.156692504882756, -10.567970275878849 ], [ -71.150146484375, -10.559920310974064 ], [ -71.146308898925724, -10.556260108947697 ], [ -71.142768859863224, -10.551708221435547 ], [ -71.138786315917855, -10.547229766845703 ], [ -71.130706787109375, -10.538369178771973 ], [ -71.127326965331974, -10.535150527954102 ], [ -71.121917724609375, -10.530829429626408 ], [ -71.111785888671818, -10.523550033569279 ], [ -71.109016418456974, -10.522398948669434 ], [ -71.103736877441406, -10.51908016204834 ], [ -71.101325988769531, -10.51823902130127 ], [ -71.090591430664006, -10.512840270996037 ], [ -71.084556579589844, -10.50940990447998 ], [ -71.079933166503849, -10.506379127502385 ], [ -71.077728271484318, -10.504698753356877 ], [ -71.072608947753906, -10.500028610229379 ], [ -71.066352844238281, -10.496088027954045 ], [ -71.060752868652287, -10.491999626159668 ], [ -71.057411193847599, -10.488828659057617 ], [ -71.051391601562443, -10.482439041137695 ], [ -71.045150756835938, -10.477080345153809 ], [ -71.035926818847656, -10.470149993896484 ], [ -71.029876708984261, -10.465889930725098 ], [ -71.017837524414006, -10.45856857299799 ], [ -71.015922546386662, -10.457290649414062 ], [ -71.01290130615223, -10.454448699951172 ], [ -71.00823974609375, -10.451889038085881 ], [ -71.005516052246094, -10.44904899597168 ], [ -70.993896484374943, -10.439928054809513 ], [ -70.991333007812443, -10.436989784240723 ], [ -70.979171752929688, -10.42598915100092 ], [ -70.976829528808537, -10.423450469970703 ], [ -70.970260620117131, -10.41427040100092 ], [ -70.965263366699219, -10.408529281616211 ], [ -70.958282470703125, -10.402970314025879 ], [ -70.95465087890625, -10.40040111541748 ], [ -70.949409484863281, -10.39727878570551 ], [ -70.93865966796875, -10.391419410705566 ], [ -70.928718566894531, -10.383029937744084 ], [ -70.923622131347599, -10.379079818725529 ], [ -70.918716430664062, -10.375788688659554 ], [ -70.908531188964787, -10.369568824768066 ], [ -70.897171020507812, -10.358988761901799 ], [ -70.894332885742131, -10.3560791015625 ], [ -70.891380310058537, -10.352568626403809 ], [ -70.889717102050781, -10.349800109863281 ], [ -70.8861083984375, -10.341909408569222 ], [ -70.878311157226506, -10.329998970031738 ], [ -70.867546081542912, -10.312308311462402 ], [ -70.862358093261719, -10.298410415649357 ], [ -70.855972290039062, -10.283529281616154 ], [ -70.855079650878906, -10.272369384765625 ], [ -70.854179382324162, -10.267868995666447 ], [ -70.853889465331974, -10.261440277099553 ], [ -70.853019714355469, -10.258588790893555 ], [ -70.852996826171875, -10.251008033752441 ], [ -70.852279663085881, -10.245538711547852 ], [ -70.852066040039062, -10.241868972778207 ], [ -70.852043151855469, -10.222808837890568 ], [ -70.851470947265625, -10.216629981994629 ], [ -70.850631713867188, -10.212579727172795 ], [ -70.850418090820312, -10.202469825744629 ], [ -70.850532531738281, -10.187789916992188 ], [ -70.851112365722656, -10.186809539794922 ], [ -70.850532531738281, -10.184508323669434 ], [ -70.850776672363168, -10.169818878173771 ], [ -70.850189208984318, -10.16808032989502 ], [ -70.850196838378849, -10.166240692138672 ], [ -70.849136352539006, -10.160829544067383 ], [ -70.843795776367131, -10.143479347229004 ], [ -70.842697143554688, -10.136910438537541 ], [ -70.839996337890511, -10.128849029541016 ], [ -70.838577270507812, -10.122358322143498 ], [ -70.834815979003849, -10.112488746643066 ], [ -70.830406188964844, -10.101868629455566 ], [ -70.828422546386662, -10.09822940826416 ], [ -70.828399658203125, -10.097308158874455 ], [ -70.826927185058537, -10.095271110534668 ], [ -70.826019287109375, -10.092908859252816 ], [ -70.823501586913949, -10.089609146118164 ], [ -70.823478698730412, -10.088700294494629 ], [ -70.821357727050781, -10.086270332336369 ], [ -70.819046020507812, -10.081768989562988 ], [ -70.817787170410156, -10.079848289489689 ], [ -70.816329956054631, -10.078048706054631 ], [ -70.811737060546818, -10.073199272155762 ], [ -70.809028625488281, -10.070719718933105 ], [ -70.807212829589844, -10.069719314575138 ], [ -70.796379089355412, -10.060408592224064 ], [ -70.791961669921875, -10.056359291076546 ], [ -70.782646179199162, -10.047109603881779 ], [ -70.775199890136719, -10.041689872741642 ], [ -70.771110534667912, -10.037929534911996 ], [ -70.761672973632756, -10.030550003051758 ], [ -70.744316101074162, -10.015069961547795 ], [ -70.741142272949219, -10.012769699096623 ], [ -70.736259460449219, -10.008208274841309 ], [ -70.735427856445312, -10.008000373840275 ], [ -70.731048583984375, -10.003899574279728 ], [ -70.730377197265625, -10.003829002380314 ], [ -70.729560852050668, -10.002718925476074 ], [ -70.726608276367074, -10.00032901763916 ], [ -70.719062805175724, -9.994868278503361 ], [ -70.713462829589844, -9.991180419921818 ], [ -70.704116821289062, -9.98378944396967 ], [ -70.6959228515625, -9.978968620300179 ], [ -70.690299987792969, -9.975939750671387 ], [ -70.684127807617188, -9.973189353942871 ], [ -70.673362731933537, -9.969549179077148 ], [ -70.672805786132756, -9.96837139129633 ], [ -70.670242309570199, -9.965728759765568 ], [ -70.669357299804631, -9.964109420776367 ], [ -70.668266296386719, -9.962860107421818 ], [ -70.667343139648438, -9.962258338928223 ], [ -70.664779663085881, -9.961448669433594 ], [ -70.662696838378849, -9.96006965637207 ], [ -70.660026550292912, -9.957939147949219 ], [ -70.655899047851562, -9.95396900177002 ], [ -70.655418395996094, -9.953219413757211 ], [ -70.654602050781136, -9.951958656311035 ], [ -70.652862548828068, -9.947999954223633 ], [ -70.652511596679688, -9.946288108825684 ], [ -70.652290344238224, -9.943070411682129 ], [ -70.652763366699162, -9.940840721130371 ], [ -70.652908325195312, -9.938369750976562 ], [ -70.653656005859375, -9.936779022216797 ], [ -70.654487609863224, -9.933389663696289 ], [ -70.654678344726506, -9.932880401611328 ], [ -70.655616760253849, -9.93040943145752 ], [ -70.655731201171818, -9.927469253540039 ], [ -70.655250549316349, -9.92560863494873 ], [ -70.654373168945312, -9.924199104309082 ], [ -70.651588439941406, -9.919768333435059 ], [ -70.650253295898438, -9.918350219726562 ], [ -70.649551391601449, -9.916879653930664 ], [ -70.648941040039006, -9.915219306945801 ], [ -70.648750305175724, -9.911848068237305 ], [ -70.648376464843693, -9.909860610961914 ], [ -70.647476196289062, -9.906769752502441 ], [ -70.645446777343636, -9.903160095214787 ], [ -70.643707275390568, -9.901020050048828 ], [ -70.641471862792969, -9.896679878234806 ], [ -70.640968322753793, -9.890269279479924 ], [ -70.640617370605469, -9.888919830322266 ], [ -70.639938354492188, -9.887639045715275 ], [ -70.637672424316406, -9.884828567504883 ], [ -70.635086059570312, -9.882888793945312 ], [ -70.631690979003849, -9.881199836730957 ], [ -70.626747131347599, -9.879849433898926 ], [ -70.627128601074162, -10.000150680541992 ], [ -70.627098083496094, -10.072278976440373 ], [ -70.627090454101562, -10.078268051147461 ], [ -70.626960754394531, -10.366289138793888 ], [ -70.626960754394531, -10.372919082641602 ], [ -70.627319335937443, -10.58047962188715 ], [ -70.627220153808537, -10.710538864135742 ], [ -70.626792907714844, -10.710969924926701 ], [ -70.627220153808537, -10.712829589843693 ], [ -70.627227783203068, -10.71923923492426 ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-MOQ", "NAME_0": "Peru", "ID_1": 19, "NAME_1": "Moquegua", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.384864807128906, -17.709304809570312 ], [ -71.384864807128906, -17.709863662719727 ], [ -71.38458251953125, -17.709863662719727 ], [ -71.38458251953125, -17.710973739624023 ], [ -71.384864807128906, -17.710973739624023 ], [ -71.384864807128906, -17.711805343627873 ], [ -71.38458251953125, -17.711805343627873 ], [ -71.38458251953125, -17.712085723876953 ], [ -71.385414123535156, -17.712085723876953 ], [ -71.385414123535156, -17.712360382080078 ], [ -71.386253356933537, -17.712360382080078 ], [ -71.386253356933537, -17.712638854980469 ], [ -71.386802673339787, -17.712638854980469 ], [ -71.386802673339787, -17.712917327880859 ], [ -71.387084960937443, -17.712917327880859 ], [ -71.387084960937443, -17.713195800781136 ], [ -71.387916564941406, -17.713195800781136 ], [ -71.387916564941406, -17.712917327880859 ], [ -71.388473510742188, -17.712917327880859 ], [ -71.388473510742188, -17.712638854980469 ], [ -71.388748168945312, -17.712638854980469 ], [ -71.388748168945312, -17.712360382080078 ], [ -71.389030456542855, -17.712360382080078 ], [ -71.389030456542855, -17.712085723876953 ], [ -71.389305114746037, -17.712085723876953 ], [ -71.389305114746037, -17.711805343627873 ], [ -71.389579772949162, -17.711805343627873 ], [ -71.389579772949162, -17.711526870727425 ], [ -71.389305114746037, -17.711526870727425 ], [ -71.389305114746037, -17.710973739624023 ], [ -71.389030456542855, -17.710973739624023 ], [ -71.389030456542855, -17.710695266723633 ], [ -71.388748168945312, -17.710695266723633 ], [ -71.388748168945312, -17.710416793823242 ], [ -71.388191223144531, -17.710416793823242 ], [ -71.388191223144531, -17.710138320922852 ], [ -71.387641906738281, -17.710138320922852 ], [ -71.387641906738281, -17.709863662719727 ], [ -71.387359619140625, -17.709863662719727 ], [ -71.387359619140625, -17.709581375122013 ], [ -71.387084960937443, -17.709581375122013 ], [ -71.387084960937443, -17.709304809570312 ], [ -71.384864807128906, -17.709304809570312 ] ] ], [ [ [ -70.794708251953125, -15.987208366393929 ], [ -70.79547119140625, -15.98868465423584 ], [ -70.795707702636719, -15.990547180175724 ], [ -70.795547485351506, -15.991497039794865 ], [ -70.794563293457031, -15.992650032043457 ], [ -70.792808532714844, -15.993717193603402 ], [ -70.789871215820312, -15.996483802795353 ], [ -70.788848876953068, -15.999979972839299 ], [ -70.78680419921875, -16.002286911010742 ], [ -70.784370422363224, -16.003419876098633 ], [ -70.7808837890625, -16.006498336791992 ], [ -70.779350280761719, -16.009057998657227 ], [ -70.778900146484375, -16.011159896850586 ], [ -70.777786254882756, -16.012535095214844 ], [ -70.776473999023381, -16.013311386108342 ], [ -70.77471923828125, -16.013828277587834 ], [ -70.774085998535099, -16.013679504394531 ], [ -70.77266693115223, -16.012758255004883 ], [ -70.771705627441349, -16.012857437133789 ], [ -70.769622802734375, -16.014457702636719 ], [ -70.769493103027287, -16.014915466308594 ], [ -70.769783020019474, -16.016164779663029 ], [ -70.769584655761662, -16.016530990600529 ], [ -70.769248962402344, -16.016759872436523 ], [ -70.768531799316349, -16.016717910766545 ], [ -70.767707824706918, -16.017198562622013 ], [ -70.766731262206974, -16.017061233520508 ], [ -70.765487670898381, -16.017589569091797 ], [ -70.764808654785156, -16.017465591430664 ], [ -70.763931274414062, -16.016807556152344 ], [ -70.762664794921875, -16.016927719116154 ], [ -70.761482238769474, -16.016000747680664 ], [ -70.760429382324162, -16.015655517578011 ], [ -70.759803771972656, -16.014930725097656 ], [ -70.758743286132699, -16.014585494995117 ], [ -70.757652282714844, -16.013509750366097 ], [ -70.757064819335938, -16.013254165649414 ], [ -70.755668640136662, -16.013513565063477 ], [ -70.753303527831974, -16.014667510986271 ], [ -70.751907348632812, -16.015901565551758 ], [ -70.750663757324219, -16.01603889465332 ], [ -70.749534606933594, -16.01654052734375 ], [ -70.748855590820312, -16.01644325256342 ], [ -70.748062133788949, -16.015626907348633 ], [ -70.744148254394474, -16.015584945678654 ], [ -70.742134094238224, -16.015977859497013 ], [ -70.741645812988224, -16.016384124755803 ], [ -70.740806579589787, -16.017702102661019 ], [ -70.740371704101562, -16.017675399780217 ], [ -70.739540100097599, -16.018163681030217 ], [ -70.738227844238224, -16.019365310668945 ], [ -70.737136840820312, -16.019947052001839 ], [ -70.736137390136662, -16.021234512328988 ], [ -70.735488891601562, -16.021511077880859 ], [ -70.735321044921875, -16.022148132324219 ], [ -70.734344482421875, -16.023101806640625 ], [ -70.733734130859318, -16.025037765502873 ], [ -70.731971740722656, -16.026933670043888 ], [ -70.73138427734375, -16.028734207153263 ], [ -70.730041503906136, -16.030826568603516 ], [ -70.729637145996037, -16.031089782714787 ], [ -70.728347778320312, -16.031026840209904 ], [ -70.727462768554574, -16.031902313232422 ], [ -70.726554870605469, -16.03219032287592 ], [ -70.725593566894531, -16.033353805541992 ], [ -70.724708557128906, -16.033687591552734 ], [ -70.722915649414062, -16.034057617187386 ], [ -70.721710205078068, -16.033365249633789 ], [ -70.718994140625, -16.033906936645451 ], [ -70.718223571777344, -16.032449722289982 ], [ -70.717292785644531, -16.032493591308594 ], [ -70.716743469238281, -16.031715393066406 ], [ -70.716079711914006, -16.031946182250977 ], [ -70.714736938476562, -16.031757354736271 ], [ -70.714385986328068, -16.032199859619141 ], [ -70.7142333984375, -16.033128738403263 ], [ -70.713516235351506, -16.033527374267578 ], [ -70.711082458496094, -16.032945632934513 ], [ -70.709297180175781, -16.031890869140625 ], [ -70.706260681152287, -16.031694412231388 ], [ -70.705017089843693, -16.030803680419865 ], [ -70.703880310058537, -16.029445648193303 ], [ -70.702972412109375, -16.029142379760685 ], [ -70.702323913574219, -16.028207778930664 ], [ -70.699310302734318, -16.028362274169922 ], [ -70.69793701171875, -16.027433395385629 ], [ -70.69671630859375, -16.02721977233881 ], [ -70.696159362792912, -16.026603698730412 ], [ -70.695457458496094, -16.025154113769474 ], [ -70.694053649902287, -16.024307250976506 ], [ -70.693328857421875, -16.023012161254826 ], [ -70.691802978515625, -16.021810531616211 ], [ -70.689880371093693, -16.021625518798771 ], [ -70.688430786132756, -16.020523071289062 ], [ -70.687667846679631, -16.020309448242131 ], [ -70.685432434082031, -16.020599365234318 ], [ -70.683570861816349, -16.021129608154297 ], [ -70.682998657226506, -16.021062850952148 ], [ -70.681915283203125, -16.019668579101562 ], [ -70.681098937988224, -16.017534255981445 ], [ -70.680061340331974, -16.016441345214844 ], [ -70.679420471191406, -16.016166687011719 ], [ -70.677497863769531, -16.016136169433594 ], [ -70.675918579101562, -16.015329360961914 ], [ -70.674751281738281, -16.013963699340763 ], [ -70.674629211425668, -16.012489318847599 ], [ -70.674316406249943, -16.011869430541935 ], [ -70.673133850097656, -16.011753082275391 ], [ -70.67236328125, -16.012985229492074 ], [ -70.66949462890625, -16.013540267944336 ], [ -70.667625427246094, -16.011718749999943 ], [ -70.667167663574162, -16.009336471557617 ], [ -70.666687011718693, -16.008369445800724 ], [ -70.665824890136662, -16.007497787475472 ], [ -70.664894104003849, -16.007305145263672 ], [ -70.664207458496037, -16.006290435790959 ], [ -70.662712097167855, -16.0062255859375 ], [ -70.662574768066406, -16.005527496337834 ], [ -70.662818908691406, -16.005044937133789 ], [ -70.662147521972656, -16.003986358642521 ], [ -70.661689758300781, -16.00383186340332 ], [ -70.660537719726562, -16.003988265991211 ], [ -70.6597900390625, -16.003639221191293 ], [ -70.658546447753906, -16.003749847412109 ], [ -70.656280517578125, -16.002748489379883 ], [ -70.65606689453125, -16.001607894897461 ], [ -70.653709411621037, -15.999504089355412 ], [ -70.653434753417912, -15.997415542602539 ], [ -70.651618957519474, -15.996692657470703 ], [ -70.65130615234375, -15.996234893798828 ], [ -70.65118408203125, -15.995412826538086 ], [ -70.650794982910156, -15.995009422302189 ], [ -70.649230957031193, -15.994669914245605 ], [ -70.646965026855412, -15.995307922363224 ], [ -70.645919799804631, -15.994847297668457 ], [ -70.645439147949162, -15.992814064025879 ], [ -70.643890380859318, -15.991341590881291 ], [ -70.643653869628906, -15.98928165435791 ], [ -70.64296722412098, -15.990042686462346 ], [ -70.641098022460938, -15.98949146270752 ], [ -70.641494750976562, -15.98745155334467 ], [ -70.641181945800781, -15.986884117126465 ], [ -70.639762878417969, -15.987343788146916 ], [ -70.639190673828125, -15.989188194274846 ], [ -70.637413024902287, -15.99152660369873 ], [ -70.636428833007812, -15.992379188537541 ], [ -70.635398864746037, -15.99284553527832 ], [ -70.634788513183594, -15.993853569030705 ], [ -70.634170532226506, -15.994056701660156 ], [ -70.633010864257812, -15.99538516998291 ], [ -70.632293701171875, -15.995613098144474 ], [ -70.631057739257812, -15.997006416320801 ], [ -70.630020141601562, -15.997616767883244 ], [ -70.629539489746094, -15.998400688171387 ], [ -70.629028320312443, -16.000219345092717 ], [ -70.628684997558594, -16.000627517700138 ], [ -70.627662658691406, -16.001264572143498 ], [ -70.625831604003906, -16.001543045043945 ], [ -70.620613098144531, -16.001157760620117 ], [ -70.619476318359318, -16.000738143920898 ], [ -70.618385314941406, -15.99959659576416 ], [ -70.617546081542969, -15.998145103454533 ], [ -70.615447998046875, -15.99764442443842 ], [ -70.614112854003906, -15.995524406433105 ], [ -70.613067626953125, -15.995067596435547 ], [ -70.61181640625, -15.994097709655762 ], [ -70.610389709472656, -15.99399471282959 ], [ -70.609344482421875, -15.993577957153207 ], [ -70.608879089355469, -15.993630409240666 ], [ -70.60854339599598, -15.993965148925781 ], [ -70.607963562011662, -15.994000434875431 ], [ -70.607009887695256, -15.993249893188477 ], [ -70.605789184570312, -15.993288040161019 ], [ -70.604789733886662, -15.992313385009766 ], [ -70.603706359863281, -15.991946220397892 ], [ -70.600570678710938, -15.991683959960881 ], [ -70.599754333496037, -15.991903305053711 ], [ -70.598037719726506, -15.991911888122559 ], [ -70.596153259277344, -15.991403579711914 ], [ -70.593116760253906, -15.991351127624512 ], [ -70.591178894042912, -15.990193367004338 ], [ -70.589187622070312, -15.989583015441895 ], [ -70.588531494140625, -15.988922119140568 ], [ -70.58807373046875, -15.987930297851562 ], [ -70.587432861328068, -15.98749923706049 ], [ -70.585075378417912, -15.987705230712834 ], [ -70.583473205566406, -15.98826789855957 ], [ -70.581008911132812, -15.988404273986703 ], [ -70.578018188476506, -15.990898132324219 ], [ -70.577148437499943, -15.990696907043457 ], [ -70.575706481933537, -15.989666938781738 ], [ -70.572296142578068, -15.989839553832951 ], [ -70.571609497070256, -15.989094734191895 ], [ -70.569923400878906, -15.988981246948185 ], [ -70.568435668945312, -15.987081527709904 ], [ -70.565040588378849, -15.985696792602539 ], [ -70.564041137695312, -15.984575271606388 ], [ -70.563682556152287, -15.983629226684513 ], [ -70.563224792480412, -15.983297348022461 ], [ -70.56195068359375, -15.984676361083984 ], [ -70.5616455078125, -15.986383438110352 ], [ -70.560546874999943, -15.987875938415414 ], [ -70.557563781738281, -15.990139007568359 ], [ -70.555946350097656, -15.990647315979004 ], [ -70.553329467773438, -15.99402904510498 ], [ -70.552818298339787, -15.994422912597656 ], [ -70.551971435546818, -15.994542121887207 ], [ -70.551315307617131, -15.994891166687012 ], [ -70.549232482910156, -15.995009422302189 ], [ -70.547126770019418, -15.996415138244515 ], [ -70.546714782714787, -15.996920585632267 ], [ -70.546142578124943, -15.998576164245605 ], [ -70.544609069824162, -16.000646591186523 ], [ -70.542068481445199, -16.005752563476562 ], [ -70.539024353027344, -16.010259628295842 ], [ -70.537559509277287, -16.011898040771428 ], [ -70.535240173339844, -16.013389587402344 ], [ -70.533592224121094, -16.014139175414982 ], [ -70.532546997070312, -16.014408111572209 ], [ -70.530593872070256, -16.014213562011662 ], [ -70.52923583984375, -16.015159606933537 ], [ -70.528900146484318, -16.016189575195256 ], [ -70.528953552246094, -16.021158218383789 ], [ -70.528236389160099, -16.02349662780756 ], [ -70.522613525390511, -16.029071807861271 ], [ -70.521087646484261, -16.031147003173828 ], [ -70.519561767578011, -16.032314300537053 ], [ -70.517852783203125, -16.033243179321232 ], [ -70.517433166503849, -16.033279418945256 ], [ -70.513458251953011, -16.030807495117131 ], [ -70.512985229492074, -16.029985427856388 ], [ -70.51226806640625, -16.02932167053217 ], [ -70.511482238769531, -16.028963088989258 ], [ -70.510955810546818, -16.028976440429631 ], [ -70.509704589843693, -16.030061721801758 ], [ -70.508811950683594, -16.031881332397404 ], [ -70.50823974609375, -16.034099578857422 ], [ -70.508216857910043, -16.03692626953125 ], [ -70.508041381835938, -16.037456512451115 ], [ -70.50750732421875, -16.03795051574707 ], [ -70.503158569335824, -16.037263870239258 ], [ -70.500465393066349, -16.038614273071289 ], [ -70.498542785644531, -16.039844512939396 ], [ -70.494247436523438, -16.040960311889592 ], [ -70.491073608398438, -16.04041671752924 ], [ -70.482009887695312, -16.03947639465332 ], [ -70.481040954589844, -16.040332794189396 ], [ -70.479827880859375, -16.042524337768555 ], [ -70.478874206542969, -16.043550491332894 ], [ -70.478302001953125, -16.043889999389648 ], [ -70.476623535156193, -16.044071197509652 ], [ -70.475006103515568, -16.045053482055607 ], [ -70.473426818847656, -16.046365737915039 ], [ -70.470771789550781, -16.049247741699219 ], [ -70.469276428222599, -16.049846649169922 ], [ -70.465156555175781, -16.050472259521484 ], [ -70.464599609374943, -16.050315856933594 ], [ -70.463645935058537, -16.049421310424805 ], [ -70.461723327636719, -16.048227310180664 ], [ -70.458572387695312, -16.044897079467773 ], [ -70.457359313964787, -16.044364929199219 ], [ -70.456420898437443, -16.043598175048714 ], [ -70.454055786132812, -16.041175842285099 ], [ -70.453018188476562, -16.039312362670898 ], [ -70.450210571289006, -16.037254333496094 ], [ -70.44765472412098, -16.034275054931641 ], [ -70.446739196777344, -16.033788681030217 ], [ -70.445442199706974, -16.033447265625 ], [ -70.444114685058537, -16.033590316772461 ], [ -70.443435668945256, -16.034051895141602 ], [ -70.4407958984375, -16.036006927490234 ], [ -70.43975830078125, -16.037210464477539 ], [ -70.439239501953068, -16.038183212280217 ], [ -70.438873291015568, -16.042692184448129 ], [ -70.438163757324219, -16.045148849487248 ], [ -70.436752319335881, -16.048416137695312 ], [ -70.43634033203125, -16.051719665527344 ], [ -70.435638427734261, -16.05427169799799 ], [ -70.43544769287098, -16.058784484863281 ], [ -70.434623718261719, -16.061410903930664 ], [ -70.433609008789006, -16.062240600585938 ], [ -70.430587768554574, -16.062990188598576 ], [ -70.429733276367188, -16.063575744628906 ], [ -70.428070068359318, -16.067840576171875 ], [ -70.42696380615223, -16.068971633911133 ], [ -70.42620849609375, -16.068973541259766 ], [ -70.424247741699219, -16.069515228271428 ], [ -70.422073364257756, -16.069702148437443 ], [ -70.420585632324219, -16.070537567138672 ], [ -70.417633056640625, -16.073404312133789 ], [ -70.415985107421818, -16.076084136962834 ], [ -70.41534423828125, -16.076141357421875 ], [ -70.414306640625, -16.075687408447266 ], [ -70.412361145019474, -16.075248718261662 ], [ -70.411300659179631, -16.075162887573242 ], [ -70.410697937011719, -16.075365066528263 ], [ -70.409820556640625, -16.076471328735352 ], [ -70.407928466796875, -16.080282211303711 ], [ -70.404640197753849, -16.084556579589844 ], [ -70.403060913085938, -16.088338851928654 ], [ -70.402748107910156, -16.090709686279183 ], [ -70.403129577636719, -16.091737747192383 ], [ -70.405792236328011, -16.096113204956055 ], [ -70.406379699707031, -16.098163604736328 ], [ -70.407051086425781, -16.099584579467773 ], [ -70.406974792480469, -16.100971221923771 ], [ -70.407005310058537, -16.101512908935547 ], [ -70.405212402343693, -16.102537155151367 ], [ -70.404472351074219, -16.102685928344727 ], [ -70.402374267578125, -16.102584838867188 ], [ -70.4017333984375, -16.103355407714787 ], [ -70.401855468749943, -16.104736328125 ], [ -70.402259826660043, -16.106143951415959 ], [ -70.404418945312443, -16.110454559326172 ], [ -70.40460205078125, -16.113298416137695 ], [ -70.40560150146473, -16.116853713989201 ], [ -70.40667724609375, -16.118814468383789 ], [ -70.408447265624943, -16.120737075805664 ], [ -70.40865325927723, -16.121334075927734 ], [ -70.408180236816406, -16.123491287231445 ], [ -70.406738281249943, -16.126064300537053 ], [ -70.406936645507699, -16.129648208618107 ], [ -70.406784057617188, -16.130744934081974 ], [ -70.404556274414062, -16.136106491088867 ], [ -70.403503417968636, -16.139455795288029 ], [ -70.403114318847599, -16.14207649230957 ], [ -70.402809143066349, -16.147245407104492 ], [ -70.402488708496094, -16.148502349853402 ], [ -70.401145935058594, -16.150600433349496 ], [ -70.399436950683594, -16.151924133300724 ], [ -70.397605895996094, -16.152904510498047 ], [ -70.394546508789062, -16.153560638427734 ], [ -70.392883300781193, -16.154226303100586 ], [ -70.390624999999886, -16.155412673950082 ], [ -70.388923645019531, -16.156879425048771 ], [ -70.387420654296875, -16.158994674682617 ], [ -70.386589050292912, -16.163619995117188 ], [ -70.385238647460938, -16.166051864624023 ], [ -70.382789611816349, -16.168739318847656 ], [ -70.379997253417969, -16.17137336730957 ], [ -70.373428344726506, -16.176378250122013 ], [ -70.372909545898438, -16.177070617675781 ], [ -70.372184753417912, -16.178964614868107 ], [ -70.370018005371037, -16.181631088256779 ], [ -70.368698120117188, -16.184776306152344 ], [ -70.368621826171875, -16.186893463134766 ], [ -70.368377685546818, -16.187284469604492 ], [ -70.367713928222599, -16.191633224487248 ], [ -70.368339538574219, -16.19545936584467 ], [ -70.369087219238281, -16.197305679321289 ], [ -70.369277954101562, -16.198518753051644 ], [ -70.369148254394474, -16.199138641357308 ], [ -70.368095397949162, -16.200746536254883 ], [ -70.365905761718693, -16.203330993652287 ], [ -70.364372253417912, -16.20440673828125 ], [ -70.361457824707031, -16.207174301147404 ], [ -70.360519409179688, -16.207614898681584 ], [ -70.358940124511662, -16.208885192871094 ], [ -70.355567932128906, -16.207775115966797 ], [ -70.352371215820256, -16.206144332885685 ], [ -70.349601745605412, -16.20516395568842 ], [ -70.347946166992188, -16.204244613647347 ], [ -70.34600830078125, -16.202762603759652 ], [ -70.343109130859318, -16.202262878417912 ], [ -70.339622497558594, -16.201032638549805 ], [ -70.338493347167969, -16.201009750366211 ], [ -70.33544921875, -16.201725006103516 ], [ -70.333831787109375, -16.201816558837891 ], [ -70.332420349121037, -16.2025146484375 ], [ -70.33083343505848, -16.203336715698242 ], [ -70.33050537109375, -16.203908920288086 ], [ -70.330268859863281, -16.206182479858398 ], [ -70.329048156738281, -16.210437774658203 ], [ -70.324951171875, -16.216873168945256 ], [ -70.324150085449162, -16.218746185302734 ], [ -70.324073791503906, -16.219766616821232 ], [ -70.324363708496094, -16.220529556274357 ], [ -70.327285766601506, -16.223451614379883 ], [ -70.328376770019531, -16.225061416625977 ], [ -70.327667236328068, -16.227039337158203 ], [ -70.327285766601506, -16.229030609130859 ], [ -70.327362060546818, -16.231891632080078 ], [ -70.327713012695312, -16.233322143554688 ], [ -70.329917907714844, -16.235481262207031 ], [ -70.332275390625, -16.236225128173771 ], [ -70.334602355957031, -16.236639022827092 ], [ -70.335517883300781, -16.237125396728516 ], [ -70.336128234863281, -16.238716125488168 ], [ -70.336242675781193, -16.241390228271371 ], [ -70.336463928222656, -16.241575241088867 ], [ -70.336822509765568, -16.243574142456055 ], [ -70.337478637695256, -16.245166778564396 ], [ -70.338356018066349, -16.246124267578068 ], [ -70.339729309082031, -16.248453140258789 ], [ -70.342170715331974, -16.250192642211857 ], [ -70.342819213867131, -16.251785278320199 ], [ -70.34515380859375, -16.254360198974496 ], [ -70.345695495605412, -16.255416870117188 ], [ -70.345649719238281, -16.256904602050724 ], [ -70.345039367675668, -16.258548736572209 ], [ -70.344963073730469, -16.260837554931584 ], [ -70.343971252441349, -16.262834548950195 ], [ -70.343711853027344, -16.263910293579045 ], [ -70.3424072265625, -16.266052246093693 ], [ -70.341995239257812, -16.267181396484375 ], [ -70.340950012207031, -16.268720626831055 ], [ -70.340690612792969, -16.269973754882756 ], [ -70.341407775878849, -16.27216911315918 ], [ -70.342933654785099, -16.274711608886719 ], [ -70.343284606933594, -16.276521682739201 ], [ -70.343391418456974, -16.279100418090763 ], [ -70.343955993652287, -16.280765533447209 ], [ -70.343963623046818, -16.282152175903263 ], [ -70.344558715820256, -16.284664154052678 ], [ -70.345672607421818, -16.287176132202092 ], [ -70.348716735839844, -16.291048049926758 ], [ -70.348121643066406, -16.292196273803711 ], [ -70.344680786132812, -16.296493530273381 ], [ -70.344436645507756, -16.297201156616154 ], [ -70.344657897949105, -16.297998428344727 ], [ -70.346488952636719, -16.29963493347168 ], [ -70.347572326660156, -16.301254272460881 ], [ -70.347526550292969, -16.303012847900391 ], [ -70.3468017578125, -16.305301666259766 ], [ -70.346572875976562, -16.306846618652344 ], [ -70.345779418945256, -16.308624267578011 ], [ -70.343551635742188, -16.311243057250863 ], [ -70.343200683593693, -16.312200546264535 ], [ -70.343292236328068, -16.315320968627873 ], [ -70.342208862304688, -16.31740760803217 ], [ -70.339508056640511, -16.32000732421875 ], [ -70.339332580566406, -16.321878433227539 ], [ -70.340415954589844, -16.326625823974553 ], [ -70.342041015625, -16.329446792602482 ], [ -70.3441162109375, -16.335868835449162 ], [ -70.346900939941406, -16.33845138549799 ], [ -70.345893859863224, -16.341800689697209 ], [ -70.345848083496094, -16.346317291259766 ], [ -70.346084594726506, -16.347864151000863 ], [ -70.346595764160156, -16.349109649658203 ], [ -70.348083496093693, -16.351369857788029 ], [ -70.348213195800781, -16.354022979736328 ], [ -70.348617553710938, -16.355051040649414 ], [ -70.350540161132756, -16.356843948364258 ], [ -70.353164672851562, -16.358440399169922 ], [ -70.357406616210881, -16.362276077270508 ], [ -70.3575439453125, -16.363739013671818 ], [ -70.35687255859375, -16.365068435668945 ], [ -70.356719970703125, -16.365974426269531 ], [ -70.356971740722656, -16.367485046386719 ], [ -70.358642578124943, -16.368171691894531 ], [ -70.361297607421875, -16.3680419921875 ], [ -70.364517211914062, -16.368326187133789 ], [ -70.368438720703125, -16.368288040161133 ], [ -70.371017456054688, -16.368726730346623 ], [ -70.371406555175781, -16.36951637268055 ], [ -70.37158203125, -16.373388290405217 ], [ -70.37203216552723, -16.374588012695256 ], [ -70.374801635742188, -16.377264022827148 ], [ -70.376579284667912, -16.380638122558594 ], [ -70.377792358398438, -16.382179260253906 ], [ -70.380081176757812, -16.383825302124023 ], [ -70.381019592285156, -16.384269714355469 ], [ -70.381797790527344, -16.384370803832951 ], [ -70.382766723632812, -16.385110855102539 ], [ -70.38275146484375, -16.385398864746094 ], [ -70.382186889648438, -16.386009216308594 ], [ -70.380805969238168, -16.387006759643555 ], [ -70.378273010253906, -16.387418746948185 ], [ -70.374504089355412, -16.389724731445312 ], [ -70.37091064453125, -16.390583038330078 ], [ -70.368644714355469, -16.391759872436523 ], [ -70.367179870605469, -16.392160415649414 ], [ -70.363784790039062, -16.394815444946289 ], [ -70.362297058105412, -16.395648956298828 ], [ -70.359710693359318, -16.397663116455021 ], [ -70.358840942382756, -16.398033142089844 ], [ -70.3564453125, -16.400251388549805 ], [ -70.355789184570256, -16.401679992675724 ], [ -70.355789184570256, -16.402986526489144 ], [ -70.356063842773438, -16.403751373291016 ], [ -70.358657836914006, -16.406602859497013 ], [ -70.361488342285156, -16.408466339111271 ], [ -70.362335205078125, -16.409954071044922 ], [ -70.361656188964844, -16.410472869872933 ], [ -70.360198974609318, -16.410882949829045 ], [ -70.35762786865223, -16.412269592285099 ], [ -70.355667114257812, -16.412973403930607 ], [ -70.354148864746094, -16.413930892944279 ], [ -70.34991455078125, -16.415008544921875 ], [ -70.345054626464844, -16.415054321288949 ], [ -70.341873168945256, -16.414558410644474 ], [ -70.338554382324105, -16.413412094116211 ], [ -70.333602905273438, -16.411247253417969 ], [ -70.333030700683594, -16.411272048950138 ], [ -70.33172607421875, -16.41182899475092 ], [ -70.329673767089787, -16.413467407226562 ], [ -70.327934265136662, -16.415763854980469 ], [ -70.325714111328125, -16.417644500732422 ], [ -70.322090148925781, -16.422151565551701 ], [ -70.321128845214844, -16.423616409301758 ], [ -70.319412231445312, -16.427509307861271 ], [ -70.317642211914006, -16.429786682128906 ], [ -70.316238403320199, -16.432088851928711 ], [ -70.316223144531193, -16.435298919677734 ], [ -70.317268371581974, -16.439666748046875 ], [ -70.317626953125, -16.442594528198242 ], [ -70.317184448242131, -16.444667816162109 ], [ -70.316047668456918, -16.445634841918945 ], [ -70.31463623046875, -16.446186065673828 ], [ -70.307121276855469, -16.446279525756779 ], [ -70.306526184082031, -16.446735382080078 ], [ -70.306221008300724, -16.447414398193359 ], [ -70.306037902831918, -16.449502944946232 ], [ -70.307037353515625, -16.451688766479435 ], [ -70.310890197753849, -16.456714630126896 ], [ -70.313819885253849, -16.461088180541992 ], [ -70.31390380859375, -16.46173095703125 ], [ -70.315567016601506, -16.464633941650334 ], [ -70.316215515136662, -16.466470718383732 ], [ -70.317138671875, -16.471187591552678 ], [ -70.317207336425781, -16.472190856933594 ], [ -70.316925048828125, -16.472669601440373 ], [ -70.314552307128906, -16.472625732421818 ], [ -70.311111450195312, -16.471565246582031 ], [ -70.308258056640625, -16.471673965454102 ], [ -70.306495666503849, -16.473211288452148 ], [ -70.303291320800781, -16.476978302001953 ], [ -70.301368713378906, -16.478477478027344 ], [ -70.299697875976562, -16.479160308837891 ], [ -70.297111511230469, -16.479742050170842 ], [ -70.292800903320312, -16.481853485107422 ], [ -70.290504455566406, -16.482423782348576 ], [ -70.283134460449162, -16.487928390502873 ], [ -70.278099060058594, -16.489591598510742 ], [ -70.27459716796875, -16.491447448730469 ], [ -70.272422790527344, -16.492301940917855 ], [ -70.2703857421875, -16.492759704589787 ], [ -70.266021728515625, -16.49454307556141 ], [ -70.264732360839787, -16.495325088500977 ], [ -70.262611389160099, -16.495872497558594 ], [ -70.258926391601449, -16.497962951660156 ], [ -70.256492614746094, -16.498374938964787 ], [ -70.254730224609261, -16.499263763427621 ], [ -70.253509521484375, -16.499496459960938 ], [ -70.252204895019531, -16.500171661376953 ], [ -70.247665405273381, -16.501176834106445 ], [ -70.245918273925724, -16.502101898193303 ], [ -70.243927001953068, -16.502307891845646 ], [ -70.243240356445312, -16.503528594970646 ], [ -70.242652893066406, -16.503963470458984 ], [ -70.241050720214844, -16.50419807434082 ], [ -70.240119934081974, -16.504634857177734 ], [ -70.236724853515625, -16.504144668579045 ], [ -70.235549926757756, -16.504476547241211 ], [ -70.233474731445312, -16.504365921020394 ], [ -70.230545043945312, -16.505678176879826 ], [ -70.227622985839787, -16.508037567138558 ], [ -70.225494384765625, -16.510736465454045 ], [ -70.2203369140625, -16.513385772705078 ], [ -70.218414306640625, -16.516117095947209 ], [ -70.21728515625, -16.520013809204102 ], [ -70.215904235839787, -16.522432327270508 ], [ -70.214271545410099, -16.52452278137207 ], [ -70.208412170410156, -16.530300140380859 ], [ -70.206436157226506, -16.532516479492131 ], [ -70.204109191894531, -16.535770416259709 ], [ -70.203102111816349, -16.536739349365121 ], [ -70.202316284179688, -16.538316726684457 ], [ -70.201583862304631, -16.538885116577035 ], [ -70.199996948242188, -16.539236068725529 ], [ -70.1976318359375, -16.538639068603459 ], [ -70.193252563476562, -16.538711547851506 ], [ -70.190422058105412, -16.53740119934082 ], [ -70.187118530273438, -16.537092208862305 ], [ -70.185882568359375, -16.536657333373967 ], [ -70.185630798339844, -16.537128448486328 ], [ -70.185386657714787, -16.537591934204102 ], [ -70.184547424316406, -16.538534164428711 ], [ -70.183151245117188, -16.54010009765625 ], [ -70.182136535644474, -16.542289733886719 ], [ -70.181770324706918, -16.545480728149414 ], [ -70.181755065917912, -16.546390533447266 ], [ -70.181716918945312, -16.549249649047795 ], [ -70.181228637695312, -16.551870346069336 ], [ -70.181327819824219, -16.555370330810547 ], [ -70.181053161621094, -16.556718826293832 ], [ -70.180030822753849, -16.558135986328125 ], [ -70.178543090820312, -16.559291839599609 ], [ -70.176277160644531, -16.561050415039006 ], [ -70.176353454589844, -16.566095352172852 ], [ -70.176368713378906, -16.567039489746037 ], [ -70.177139282226562, -16.569982528686523 ], [ -70.177169799804631, -16.571447372436523 ], [ -70.176795959472599, -16.57371711730957 ], [ -70.175697326660156, -16.576360702514592 ], [ -70.175300598144531, -16.580389022827148 ], [ -70.174873352050724, -16.582923889160156 ], [ -70.174057006835938, -16.587760925292855 ], [ -70.1744384765625, -16.589540481567383 ], [ -70.174598693847599, -16.589860916137695 ], [ -70.175216674804688, -16.591129302978516 ], [ -70.176628112792969, -16.593109130859375 ], [ -70.176948547363281, -16.593769073486214 ], [ -70.176933288574219, -16.594318389892521 ], [ -70.175270080566349, -16.596061706542855 ], [ -70.174232482910099, -16.596733093261719 ], [ -70.171318054199219, -16.598625183105412 ], [ -70.170120239257756, -16.599920272827035 ], [ -70.169769287109375, -16.600969314575082 ], [ -70.169509887695312, -16.603088378906193 ], [ -70.169647216796818, -16.608877182006779 ], [ -70.169059753417912, -16.609928131103516 ], [ -70.168647766113281, -16.610670089721623 ], [ -70.166946411132812, -16.612091064453125 ], [ -70.165916442871037, -16.612949371337891 ], [ -70.162139892578125, -16.61504936218256 ], [ -70.159431457519474, -16.616039276123047 ], [ -70.15765380859375, -16.616067886352539 ], [ -70.156097412109318, -16.616090774536133 ], [ -70.153366088867188, -16.615369796752816 ], [ -70.151878356933594, -16.614980697631779 ], [ -70.151176452636719, -16.615110397338867 ], [ -70.150299072265511, -16.615270614623967 ], [ -70.148826599121094, -16.616279602050668 ], [ -70.144966125488281, -16.619691848754883 ], [ -70.144157409667969, -16.620870590209904 ], [ -70.144088745117131, -16.621156692504826 ], [ -70.143547058105469, -16.623300552368164 ], [ -70.142990112304688, -16.624227523803654 ], [ -70.139312744140568, -16.626546859741211 ], [ -70.136695861816406, -16.628818511962891 ], [ -70.135894775390568, -16.62922477722168 ], [ -70.135353088378906, -16.629499435424805 ], [ -70.133628845214844, -16.630922317504883 ], [ -70.132247924804631, -16.632059097289925 ], [ -70.129776000976506, -16.633441925048714 ], [ -70.129287719726506, -16.633623123168945 ], [ -70.127319335937386, -16.634359359741211 ], [ -70.123649597167969, -16.636421203613281 ], [ -70.122245788574162, -16.637208938598519 ], [ -70.12111663818348, -16.637502670288086 ], [ -70.119400024413949, -16.637948989868107 ], [ -70.11865234375, -16.637943267822266 ], [ -70.117408752441406, -16.637939453125 ], [ -70.116096496582031, -16.638450622558594 ], [ -70.115547180175781, -16.638967514038086 ], [ -70.113845825195256, -16.640560150146428 ], [ -70.112129211425724, -16.641534805297852 ], [ -70.110321044921818, -16.642559051513672 ], [ -70.108322143554631, -16.645120620727482 ], [ -70.107933044433537, -16.645397186279297 ], [ -70.107215881347656, -16.645910263061523 ], [ -70.106117248535099, -16.646572113037053 ], [ -70.105133056640625, -16.64716911315918 ], [ -70.103919982910099, -16.647520065307617 ], [ -70.102760314941406, -16.647859573364201 ], [ -70.101898193359375, -16.648244857788029 ], [ -70.101028442382812, -16.648630142211857 ], [ -70.100196838378849, -16.649356842040959 ], [ -70.099266052246037, -16.650169372558594 ], [ -70.098457336425781, -16.651519775390625 ], [ -70.098106384277287, -16.651782989501953 ], [ -70.097183227538949, -16.652477264404297 ], [ -70.091217041015625, -16.65431022644043 ], [ -70.088088989257756, -16.654409408569336 ], [ -70.087265014648324, -16.654190063476562 ], [ -70.086875915527287, -16.653970718383732 ], [ -70.0859375, -16.653440475463867 ], [ -70.085365295410156, -16.652746200561467 ], [ -70.084281921386662, -16.651437759399414 ], [ -70.083831787109261, -16.649999618530273 ], [ -70.083206176757812, -16.647994995117188 ], [ -70.081672668457031, -16.646003723144474 ], [ -70.08013916015625, -16.644750595092773 ], [ -70.076438903808594, -16.642824172973576 ], [ -70.074729919433594, -16.641504287719613 ], [ -70.073249816894531, -16.640880584716683 ], [ -70.072463989257756, -16.640548706054688 ], [ -70.071983337402287, -16.64021110534668 ], [ -70.071388244628906, -16.639793395996094 ], [ -70.068962097167969, -16.638933181762695 ], [ -70.067733764648438, -16.638740539550781 ], [ -70.067466735839844, -16.638698577880859 ], [ -70.066192626953125, -16.638832092285156 ], [ -70.063873291015568, -16.639078140258789 ], [ -70.060348510742131, -16.639030456542969 ], [ -70.059051513671875, -16.63926887512207 ], [ -70.058303833007812, -16.639131546020508 ], [ -70.057853698730412, -16.639047622680664 ], [ -70.056961059570312, -16.638225555419922 ], [ -70.055915832519531, -16.637262344360352 ], [ -70.054534912109318, -16.634160995483285 ], [ -70.054222106933594, -16.633453369140625 ], [ -70.054084777832031, -16.633216857910099 ], [ -70.0528564453125, -16.631124496459961 ], [ -70.05092620849598, -16.628639221191349 ], [ -70.05007171630848, -16.627920150756836 ], [ -70.048851013183594, -16.627779006958008 ], [ -70.047172546386662, -16.628110885620117 ], [ -70.043228149414062, -16.629589080810547 ], [ -70.04091644287098, -16.630168914794865 ], [ -70.040420532226506, -16.630437850952035 ], [ -70.038009643554688, -16.631729125976449 ], [ -70.037246704101562, -16.632678985595589 ], [ -70.035713195800781, -16.633899688720646 ], [ -70.033599853515625, -16.63447189331049 ], [ -70.032310485839787, -16.634506225585938 ], [ -70.031692504882812, -16.634527206420842 ], [ -70.030380249023438, -16.634315490722656 ], [ -70.028587341308537, -16.633274078369141 ], [ -70.027275085449105, -16.632511138916016 ], [ -70.024108886718693, -16.631208419799805 ], [ -70.023330688476506, -16.633371353149357 ], [ -70.022567749023381, -16.634723663330078 ], [ -70.021286010742188, -16.636089324951115 ], [ -70.017868041992188, -16.638719558715763 ], [ -70.014518737792969, -16.640037536621094 ], [ -70.013641357421761, -16.640735626220703 ], [ -70.012702941894531, -16.642019271850586 ], [ -70.011604309081974, -16.645145416259709 ], [ -70.010726928710938, -16.646667480468693 ], [ -70.008949279785099, -16.648057937622013 ], [ -70.006294250488168, -16.64929008483881 ], [ -70.005172729492188, -16.650180816650391 ], [ -70.004730224609375, -16.650964736938477 ], [ -70.0040283203125, -16.653362274169865 ], [ -70.00209808349598, -16.655376434326058 ], [ -70.001701354980412, -16.658199310302734 ], [ -70.001113891601506, -16.659543991088867 ], [ -70.000991821289062, -16.661386489868164 ], [ -70.000167846679631, -16.664703369140568 ], [ -70.000053405761719, -16.668754577636719 ], [ -69.998878479003906, -16.672927856445199 ], [ -69.998947143554631, -16.674308776855469 ], [ -70.002677917480469, -16.678829193115178 ], [ -70.007720947265568, -16.684169769287053 ], [ -70.008827209472656, -16.684709548950195 ], [ -70.010299682617074, -16.686023712158203 ], [ -70.011711120605412, -16.686788558959904 ], [ -70.012298583984318, -16.68824577331543 ], [ -70.012176513671818, -16.690448760986271 ], [ -70.011917114257756, -16.692001342773324 ], [ -70.011322021484318, -16.693140029907227 ], [ -70.010574340820256, -16.696746826171818 ], [ -70.010658264160099, -16.69969367980957 ], [ -70.01043701171875, -16.700380325317383 ], [ -70.008537292480469, -16.701759338378906 ], [ -70.006637573242188, -16.701749801635685 ], [ -70.005912780761605, -16.701982498168945 ], [ -70.003471374511719, -16.704412460327092 ], [ -70.002754211425724, -16.704708099365234 ], [ -70.0010986328125, -16.704696655273438 ], [ -70.000205993652344, -16.705883026123047 ], [ -69.998176574706974, -16.707698822021428 ], [ -69.996261596679631, -16.710355758666879 ], [ -69.995811462402344, -16.711822509765568 ], [ -69.995513916015568, -16.714399337768555 ], [ -69.995529174804688, -16.719394683837891 ], [ -69.995162963867188, -16.721015930175781 ], [ -69.995376586914062, -16.726634979248047 ], [ -69.994956970214844, -16.728256225585938 ], [ -69.99505615234375, -16.728879928588867 ], [ -69.996253967285099, -16.730052947997933 ], [ -69.997947692871094, -16.730627059936523 ], [ -69.999076843261719, -16.730680465698242 ], [ -69.999801635742131, -16.731121063232422 ], [ -70.002563476562443, -16.734476089477482 ], [ -70.006271362304631, -16.738315582275334 ], [ -70.008651733398381, -16.740148544311523 ], [ -70.010276794433537, -16.741115570068246 ], [ -70.013465881347656, -16.741670608520508 ], [ -70.017837524413949, -16.741716384887638 ], [ -70.020759582519474, -16.74040412902832 ], [ -70.025894165039062, -16.740106582641545 ], [ -70.027999877929688, -16.740581512451172 ], [ -70.031158447265568, -16.742088317871094 ], [ -70.034294128417969, -16.742336273193303 ], [ -70.035766601562386, -16.742984771728459 ], [ -70.036399841308537, -16.744514465331974 ], [ -70.036247253417969, -16.745510101318359 ], [ -70.032188415527344, -16.74971961975092 ], [ -70.031425476074219, -16.752197265625 ], [ -70.031486511230469, -16.752740859985352 ], [ -70.031814575195312, -16.753036499023324 ], [ -70.035263061523381, -16.754093170166016 ], [ -70.037124633789062, -16.755903244018555 ], [ -70.040359497070312, -16.756658554077148 ], [ -70.041198730468636, -16.757804870605355 ], [ -70.042182922363281, -16.760784149169922 ], [ -70.043510437011719, -16.762239456176644 ], [ -70.044380187988281, -16.762620925903207 ], [ -70.047958374023381, -16.76308631896967 ], [ -70.051551818847656, -16.764326095580998 ], [ -70.053436279296875, -16.765867233276367 ], [ -70.056632995605412, -16.76928520202631 ], [ -70.057144165039062, -16.770858764648381 ], [ -70.05584716796875, -16.772663116455021 ], [ -70.054809570312443, -16.774948120117131 ], [ -70.054328918456974, -16.776910781860295 ], [ -70.054061889648381, -16.779668807983342 ], [ -70.05464935302723, -16.780603408813477 ], [ -70.056427001953068, -16.78162765502924 ], [ -70.057182312011719, -16.78248405456543 ], [ -70.057533264160156, -16.786321640014648 ], [ -70.058021545410156, -16.787612915039062 ], [ -70.059211730956974, -16.788669586181584 ], [ -70.062232971191406, -16.792472839355469 ], [ -70.064056396484318, -16.793687820434513 ], [ -70.0655517578125, -16.795101165771484 ], [ -70.068984985351562, -16.796699523925724 ], [ -70.070327758789062, -16.798013687133789 ], [ -70.071708679199162, -16.798368453979435 ], [ -70.073799133300724, -16.798284530639535 ], [ -70.075981140136662, -16.798471450805607 ], [ -70.079414367675724, -16.800914764404297 ], [ -70.080795288085938, -16.801290512084961 ], [ -70.082405090332031, -16.801380157470646 ], [ -70.0833740234375, -16.801784515380859 ], [ -70.083724975585881, -16.802831649780217 ], [ -70.083297729492188, -16.804323196411133 ], [ -70.083267211914062, -16.805692672729435 ], [ -70.083839416503906, -16.80706787109375 ], [ -70.087135314941349, -16.810058593749943 ], [ -70.089271545410156, -16.811235427856388 ], [ -70.0904541015625, -16.811588287353402 ], [ -70.09149169921875, -16.812540054321289 ], [ -70.09234619140625, -16.81610107421875 ], [ -70.09212493896473, -16.818117141723576 ], [ -70.090888977050668, -16.821491241455021 ], [ -70.090736389160156, -16.823894500732308 ], [ -70.090873718261662, -16.825168609619141 ], [ -70.091705322265625, -16.827623367309513 ], [ -70.091880798339844, -16.829187393188363 ], [ -70.091804504394474, -16.83028411865223 ], [ -70.09112548828125, -16.831710815429574 ], [ -70.091018676757812, -16.832887649536076 ], [ -70.091148376464787, -16.838521957397404 ], [ -70.092056274414062, -16.842573165893555 ], [ -70.091667175292969, -16.846790313720703 ], [ -70.092292785644474, -16.848426818847656 ], [ -70.091560363769531, -16.851346969604492 ], [ -70.091659545898438, -16.852449417114201 ], [ -70.092079162597656, -16.853612899780273 ], [ -70.091789245605469, -16.858400344848633 ], [ -70.092102050781193, -16.859920501708928 ], [ -70.094100952148381, -16.863906860351562 ], [ -70.092597961425724, -16.86756706237793 ], [ -70.092414855956918, -16.871139526367188 ], [ -70.093299865722656, -16.873773574829102 ], [ -70.095069885253849, -16.875583648681527 ], [ -70.095542907714787, -16.876693725585881 ], [ -70.095527648925724, -16.880929946899414 ], [ -70.095291137695312, -16.881526947021484 ], [ -70.095268249511662, -16.884105682373047 ], [ -70.095016479492188, -16.885278701782227 ], [ -70.095367431640511, -16.886232376098633 ], [ -70.096076965332031, -16.89126014709467 ], [ -70.09670257568348, -16.892168045043945 ], [ -70.097679138183594, -16.892923355102539 ], [ -70.098976135253849, -16.893213272094727 ], [ -70.100891113281193, -16.894348144531193 ], [ -70.102142333984261, -16.894794464111328 ], [ -70.105804443359375, -16.897060394287109 ], [ -70.107360839843693, -16.898561477661133 ], [ -70.109176635742131, -16.901481628417969 ], [ -70.109298706054688, -16.902202606201172 ], [ -70.110183715820312, -16.904151916503906 ], [ -70.111656188964787, -16.909738540649357 ], [ -70.113471984863224, -16.913944244384766 ], [ -70.114608764648381, -16.917848587036076 ], [ -70.116966247558594, -16.921537399291992 ], [ -70.119094848632756, -16.923904418945256 ], [ -70.120590209960938, -16.925039291381836 ], [ -70.123649597167969, -16.926742553710938 ], [ -70.124893188476562, -16.927980422973576 ], [ -70.129119873046818, -16.930496215820256 ], [ -70.135108947753849, -16.934938430786076 ], [ -70.137512207031193, -16.935861587524414 ], [ -70.139381408691406, -16.936203002929631 ], [ -70.139945983886719, -16.936540603637638 ], [ -70.147613525390568, -16.938644409179688 ], [ -70.148040771484375, -16.93812179565424 ], [ -70.148368835449162, -16.936407089233398 ], [ -70.149597167968693, -16.934230804443246 ], [ -70.150558471679631, -16.933629989624023 ], [ -70.153129577636662, -16.932981491088867 ], [ -70.153495788574219, -16.932212829589787 ], [ -70.15230560302723, -16.930454254150391 ], [ -70.150978088378906, -16.929611206054688 ], [ -70.150291442871037, -16.928279876708984 ], [ -70.149551391601562, -16.927433013915959 ], [ -70.148872375488168, -16.925741195678711 ], [ -70.148895263671875, -16.924001693725586 ], [ -70.1497802734375, -16.921878814697266 ], [ -70.151535034179631, -16.921190261840763 ], [ -70.15435791015625, -16.920707702636719 ], [ -70.156219482421875, -16.919780731201172 ], [ -70.157882690429688, -16.919382095336857 ], [ -70.159835815429574, -16.918231964111328 ], [ -70.162864685058537, -16.917909622192383 ], [ -70.165374755859375, -16.917238235473633 ], [ -70.166084289550781, -16.916784286499023 ], [ -70.167892456054688, -16.916917800903263 ], [ -70.169830322265568, -16.916513442993107 ], [ -70.172485351562443, -16.914890289306641 ], [ -70.173713684082031, -16.913026809692383 ], [ -70.175209045410156, -16.912998199462891 ], [ -70.178237915039006, -16.915512084960881 ], [ -70.17913818359375, -16.916879653930664 ], [ -70.179298400878906, -16.919467926025391 ], [ -70.180503845214787, -16.921766281127873 ], [ -70.180862426757812, -16.923011779785156 ], [ -70.180900573730412, -16.924671173095646 ], [ -70.180404663085881, -16.927669525146484 ], [ -70.18084716796875, -16.929220199584904 ], [ -70.184379577636719, -16.932720184326172 ], [ -70.186637878417855, -16.934413909912053 ], [ -70.188552856445312, -16.937162399291992 ], [ -70.191032409667969, -16.938680648803711 ], [ -70.19403076171875, -16.941240310668832 ], [ -70.196868896484375, -16.942325592040959 ], [ -70.200187683105469, -16.943033218383732 ], [ -70.204093933105469, -16.943090438842773 ], [ -70.205497741699162, -16.942861557006722 ], [ -70.208442687988224, -16.943010330200195 ], [ -70.210357666015568, -16.943832397460881 ], [ -70.216064453125, -16.948005676269531 ], [ -70.218841552734318, -16.950664520263672 ], [ -70.220687866210938, -16.953241348266545 ], [ -70.221427917480412, -16.955043792724609 ], [ -70.222282409667912, -16.956369400024357 ], [ -70.223220825195256, -16.959646224975472 ], [ -70.224075317382812, -16.960531234741211 ], [ -70.224693298339844, -16.960788726806641 ], [ -70.229156494140568, -16.960819244384709 ], [ -70.229728698730412, -16.960483551025391 ], [ -70.232002258300724, -16.960275650024414 ], [ -70.235015869140625, -16.959407806396371 ], [ -70.239181518554574, -16.957576751708928 ], [ -70.241088867187386, -16.956991195678711 ], [ -70.246894836425724, -16.953657150268555 ], [ -70.248710632324162, -16.95231819152832 ], [ -70.251106262206918, -16.949697494506779 ], [ -70.252044677734318, -16.94831466674799 ], [ -70.253814697265625, -16.944749832153263 ], [ -70.254898071289006, -16.941999435424748 ], [ -70.255386352539006, -16.939750671386662 ], [ -70.253890991210938, -16.935890197753906 ], [ -70.253280639648381, -16.934749603271484 ], [ -70.251304626464844, -16.932512283325195 ], [ -70.251136779785156, -16.931507110595703 ], [ -70.251319885253906, -16.930875778198242 ], [ -70.251861572265568, -16.930246353149357 ], [ -70.253814697265625, -16.928930282592717 ], [ -70.259033203125, -16.923877716064453 ], [ -70.258895874023381, -16.919712066650334 ], [ -70.256759643554688, -16.914775848388558 ], [ -70.256271362304688, -16.912620544433594 ], [ -70.256408691406193, -16.910251617431641 ], [ -70.256675720214844, -16.909185409545842 ], [ -70.258979797363281, -16.9039306640625 ], [ -70.260009765625, -16.902097702026367 ], [ -70.259696960449219, -16.901035308837834 ], [ -70.257408142089844, -16.898693084716797 ], [ -70.255859374999943, -16.895727157592717 ], [ -70.255294799804631, -16.893398284912053 ], [ -70.253959655761662, -16.890140533447209 ], [ -70.253379821777287, -16.887899398803654 ], [ -70.252952575683594, -16.88148117065424 ], [ -70.251556396484318, -16.878042221069336 ], [ -70.250732421875, -16.875209808349609 ], [ -70.249336242675781, -16.87178993225092 ], [ -70.248901367187443, -16.871175765991211 ], [ -70.248664855957031, -16.869630813598633 ], [ -70.247512817382812, -16.867256164550724 ], [ -70.246788024902287, -16.86439132690424 ], [ -70.245849609374943, -16.862415313720646 ], [ -70.245155334472599, -16.86011886596674 ], [ -70.243820190429631, -16.858095169067383 ], [ -70.241912841796818, -16.856159210205078 ], [ -70.241195678710938, -16.855693817138672 ], [ -70.238563537597656, -16.854890823364258 ], [ -70.237518310546875, -16.854938507080078 ], [ -70.235206604003906, -16.856021881103459 ], [ -70.233146667480412, -16.856357574462891 ], [ -70.2325439453125, -16.856813430786076 ], [ -70.230308532714787, -16.857564926147461 ], [ -70.228408813476449, -16.857448577880803 ], [ -70.22784423828125, -16.857784271240234 ], [ -70.22707366943348, -16.857858657836857 ], [ -70.225959777832031, -16.857671737670842 ], [ -70.224075317382812, -16.856807708740234 ], [ -70.223281860351562, -16.855886459350472 ], [ -70.222831726074219, -16.851875305175781 ], [ -70.2220458984375, -16.849422454833928 ], [ -70.220863342285099, -16.847303390502816 ], [ -70.218353271484375, -16.844306945800781 ], [ -70.217063903808594, -16.843114852905273 ], [ -70.2119140625, -16.840604782104435 ], [ -70.209648132324219, -16.840354919433537 ], [ -70.208572387695199, -16.839761734008732 ], [ -70.206680297851562, -16.839519500732365 ], [ -70.205024719238224, -16.83880424499506 ], [ -70.203292846679631, -16.839231491088867 ], [ -70.20068359375, -16.841064453125 ], [ -70.199417114257699, -16.841493606567383 ], [ -70.198356628417912, -16.841423034667912 ], [ -70.195182800292912, -16.838645935058537 ], [ -70.192146301269474, -16.837104797363281 ], [ -70.189254760742188, -16.834829330444336 ], [ -70.187393188476506, -16.834552764892521 ], [ -70.185249328613281, -16.833356857299748 ], [ -70.184700012206974, -16.832504272460938 ], [ -70.183387756347599, -16.829139709472543 ], [ -70.183181762695256, -16.824970245361328 ], [ -70.183570861816349, -16.821123123168945 ], [ -70.183349609375, -16.820035934448242 ], [ -70.182876586914062, -16.819122314453011 ], [ -70.182891845703068, -16.818206787109375 ], [ -70.182647705078125, -16.817512512207031 ], [ -70.183113098144531, -16.816650390625 ], [ -70.184173583984375, -16.815828323364201 ], [ -70.186836242675781, -16.815683364868164 ], [ -70.189399719238168, -16.816337585449162 ], [ -70.192459106445312, -16.817861557006836 ], [ -70.194465637207031, -16.817907333373967 ], [ -70.197525024414062, -16.815168380737191 ], [ -70.200523376464787, -16.812894821166992 ], [ -70.202247619628849, -16.809743881225586 ], [ -70.20355224609375, -16.808404922485352 ], [ -70.204338073730412, -16.808069229125977 ], [ -70.205772399902287, -16.807924270629883 ], [ -70.207962036132756, -16.809011459350586 ], [ -70.209976196289006, -16.80937385559082 ], [ -70.211311340331974, -16.809856414794865 ], [ -70.212173461914006, -16.809877395629883 ], [ -70.212867736816406, -16.810199737548828 ], [ -70.219429016113224, -16.810352325439339 ], [ -70.223213195800781, -16.809953689575195 ], [ -70.225700378417912, -16.809326171875 ], [ -70.229560852050781, -16.80754280090332 ], [ -70.230995178222656, -16.807052612304688 ], [ -70.2315673828125, -16.807064056396484 ], [ -70.233024597167969, -16.806459426879826 ], [ -70.234970092773381, -16.806009292602425 ], [ -70.239601135253906, -16.805404663085938 ], [ -70.240791320800724, -16.804836273193359 ], [ -70.245429992675781, -16.803602218627873 ], [ -70.249824523925781, -16.801630020141602 ], [ -70.251846313476506, -16.800252914428654 ], [ -70.254676818847656, -16.797452926635742 ], [ -70.253738403320256, -16.794744491577092 ], [ -70.254043579101506, -16.793895721435547 ], [ -70.254081726074219, -16.788650512695312 ], [ -70.254554748535156, -16.787750244140511 ], [ -70.255424499511719, -16.786779403686523 ], [ -70.257041931152344, -16.785760879516545 ], [ -70.257850646972599, -16.785644531249943 ], [ -70.259590148925668, -16.785818099975586 ], [ -70.261360168457031, -16.785606384277344 ], [ -70.262893676757756, -16.784923553466797 ], [ -70.263305664062443, -16.784553527832031 ], [ -70.263946533203068, -16.783224105834961 ], [ -70.266136169433537, -16.781356811523324 ], [ -70.266639709472599, -16.780267715454102 ], [ -70.267341613769531, -16.779401779174691 ], [ -70.267532348632812, -16.778486251831055 ], [ -70.267402648925724, -16.777688980102425 ], [ -70.265365600585938, -16.775587081909066 ], [ -70.264938354492188, -16.774793624877873 ], [ -70.264755249023438, -16.772832870483398 ], [ -70.265411376953011, -16.771839141845703 ], [ -70.268486022949219, -16.770231246948185 ], [ -70.269432067871094, -16.770208358764648 ], [ -70.270660400390625, -16.770500183105469 ], [ -70.272537231445256, -16.771398544311523 ], [ -70.275733947753906, -16.773735046386719 ], [ -70.277694702148381, -16.77468109130848 ], [ -70.279350280761719, -16.776071548461914 ], [ -70.280738830566349, -16.77687835693348 ], [ -70.286170959472599, -16.778598785400391 ], [ -70.287536621093636, -16.779441833496037 ], [ -70.291580200195312, -16.780427932739201 ], [ -70.293655395507812, -16.78010368347168 ], [ -70.298782348632756, -16.777914047241211 ], [ -70.302032470703011, -16.777313232421875 ], [ -70.304855346679631, -16.775592803955078 ], [ -70.307807922363281, -16.772846221923771 ], [ -70.311492919921875, -16.773101806640625 ], [ -70.318061828613281, -16.775091171264592 ], [ -70.318695068359318, -16.775907516479492 ], [ -70.318115234374943, -16.776939392089787 ], [ -70.318206787109318, -16.778781890869027 ], [ -70.321670532226506, -16.78155517578125 ], [ -70.323867797851449, -16.782794952392578 ], [ -70.328170776367188, -16.78370475769043 ], [ -70.332252502441349, -16.784103393554631 ], [ -70.335014343261662, -16.784835815429688 ], [ -70.336868286132812, -16.786235809326172 ], [ -70.338935852050668, -16.786930084228516 ], [ -70.340187072753906, -16.78778076171875 ], [ -70.341949462890625, -16.788478851318303 ], [ -70.343681335449162, -16.790357589721623 ], [ -70.345123291015568, -16.791265487670898 ], [ -70.349151611328125, -16.791049957275334 ], [ -70.351303100585881, -16.789539337158146 ], [ -70.352668762206918, -16.789146423339787 ], [ -70.354187011718693, -16.789279937744141 ], [ -70.355262756347656, -16.789871215820312 ], [ -70.356277465820256, -16.790056228637638 ], [ -70.359046936035099, -16.791507720947266 ], [ -70.359512329101506, -16.792455673217717 ], [ -70.359382629394531, -16.795480728149414 ], [ -70.360359191894474, -16.796377182006722 ], [ -70.361564636230469, -16.796846389770451 ], [ -70.36492919921875, -16.797462463378849 ], [ -70.368957519531193, -16.798898696899414 ], [ -70.370086669921818, -16.798751831054688 ], [ -70.371513366699219, -16.79783821105957 ], [ -70.372299194335881, -16.797729492187443 ], [ -70.372993469238281, -16.797977447509766 ], [ -70.376762390136662, -16.801227569580078 ], [ -70.378227233886605, -16.80303764343256 ], [ -70.378692626953068, -16.804256439208984 ], [ -70.378921508789062, -16.805433273315373 ], [ -70.378860473632756, -16.809299468994027 ], [ -70.379646301269474, -16.810760498046875 ], [ -70.381057739257756, -16.812385559082031 ], [ -70.385414123535156, -16.815666198730412 ], [ -70.387565612792912, -16.816535949706974 ], [ -70.390411376953068, -16.817203521728459 ], [ -70.393829345703125, -16.817188262939396 ], [ -70.395912170410156, -16.818084716796875 ], [ -70.399879455566293, -16.818597793578988 ], [ -70.401000976562443, -16.819026947021371 ], [ -70.401786804199105, -16.819831848144531 ], [ -70.401885986328125, -16.821456909179688 ], [ -70.403556823730469, -16.823232650756836 ], [ -70.40478515625, -16.825317382812443 ], [ -70.407569885253849, -16.828342437744084 ], [ -70.407829284667969, -16.828935623168945 ], [ -70.408859252929688, -16.829769134521428 ], [ -70.409584045410099, -16.829984664916992 ], [ -70.411643981933594, -16.829290390014648 ], [ -70.414497375488281, -16.829208374023381 ], [ -70.415679931640568, -16.829572677612305 ], [ -70.417579650878849, -16.830625534057617 ], [ -70.421005249023438, -16.830799102783203 ], [ -70.425674438476562, -16.833093643188363 ], [ -70.427322387695256, -16.835573196411019 ], [ -70.432792663574219, -16.839643478393498 ], [ -70.434944152831974, -16.840133666992188 ], [ -70.436126708984375, -16.839565277099609 ], [ -70.437423706054631, -16.839315414428711 ], [ -70.439804077148381, -16.839494705200195 ], [ -70.440879821777287, -16.83984184265131 ], [ -70.441787719726562, -16.841026306152287 ], [ -70.441757202148438, -16.841953277587891 ], [ -70.442352294921875, -16.843509674072209 ], [ -70.442428588867188, -16.845159530639648 ], [ -70.442909240722656, -16.846233367919922 ], [ -70.442794799804574, -16.847513198852539 ], [ -70.443153381347599, -16.848556518554631 ], [ -70.443016052246094, -16.850492477416992 ], [ -70.443374633789062, -16.851238250732365 ], [ -70.443450927734318, -16.852899551391545 ], [ -70.443977355957031, -16.854192733764648 ], [ -70.445030212402344, -16.855613708496037 ], [ -70.446701049804574, -16.857263565063477 ], [ -70.450553894042969, -16.860116958618164 ], [ -70.451095581054688, -16.86088752746582 ], [ -70.451156616210881, -16.861610412597656 ], [ -70.450881958007756, -16.86511039733881 ], [ -70.450653076171875, -16.865556716918945 ], [ -70.45037841796875, -16.868038177490178 ], [ -70.448493957519474, -16.871845245361271 ], [ -70.447937011718693, -16.873926162719727 ], [ -70.448699951171818, -16.87696266174305 ], [ -70.450302124023381, -16.879901885986328 ], [ -70.450225830078068, -16.880819320678711 ], [ -70.448753356933594, -16.882608413696289 ], [ -70.445037841796875, -16.885454177856332 ], [ -70.442626953125, -16.887790679931527 ], [ -70.441947937011719, -16.890001296997013 ], [ -70.441757202148438, -16.892198562622013 ], [ -70.442214965820256, -16.892919540405273 ], [ -70.445533752441349, -16.895969390869084 ], [ -70.446792602539006, -16.896656036376839 ], [ -70.447921752929631, -16.896806716918945 ], [ -70.448249816894531, -16.897138595581055 ], [ -70.44940185546875, -16.897588729858398 ], [ -70.451004028320312, -16.898786544799748 ], [ -70.451934814453068, -16.899799346923771 ], [ -70.452156066894531, -16.902673721313477 ], [ -70.451118469238281, -16.906236648559513 ], [ -70.451881408691406, -16.912914276123047 ], [ -70.452774047851506, -16.914646148681584 ], [ -70.454994201660099, -16.917781829833984 ], [ -70.459373474121037, -16.922531127929688 ], [ -70.458518981933537, -16.923107147216797 ], [ -70.457130432128906, -16.923416137695312 ], [ -70.455947875976506, -16.924627304077092 ], [ -70.454933166503906, -16.926624298095703 ], [ -70.454330444335824, -16.928361892700138 ], [ -70.4544677734375, -16.930942535400391 ], [ -70.455307006835938, -16.932060241699219 ], [ -70.456695556640568, -16.933029174804688 ], [ -70.458221435546818, -16.933549880981445 ], [ -70.46038818359375, -16.93385124206543 ], [ -70.461013793945312, -16.934270858764592 ], [ -70.461677551269418, -16.936574935913086 ], [ -70.462661743164062, -16.938373565673828 ], [ -70.464111328125, -16.942182540893498 ], [ -70.464645385742188, -16.943050384521484 ], [ -70.464912414550724, -16.94548225402832 ], [ -70.462265014648438, -16.948274612426701 ], [ -70.455741882324162, -16.954023361205941 ], [ -70.454849243164062, -16.954309463500863 ], [ -70.450500488281193, -16.957864761352539 ], [ -70.447853088378906, -16.959337234497013 ], [ -70.445953369140625, -16.959943771362305 ], [ -70.444686889648381, -16.960781097412109 ], [ -70.44366455078125, -16.961847305297852 ], [ -70.443389892578125, -16.964069366455021 ], [ -70.4449462890625, -16.967098236083928 ], [ -70.4451904296875, -16.971242904663086 ], [ -70.445617675781193, -16.972658157348633 ], [ -70.446182250976562, -16.973726272582951 ], [ -70.449058532714787, -16.976936340331974 ], [ -70.449836730956974, -16.978431701660156 ], [ -70.450180053710938, -16.982381820678711 ], [ -70.450630187988281, -16.983768463134766 ], [ -70.452217102050724, -16.986194610595646 ], [ -70.456260681152344, -16.991172790527344 ], [ -70.457984924316406, -16.992769241333008 ], [ -70.459518432617188, -16.994661331176758 ], [ -70.460998535156193, -16.996913909912109 ], [ -70.460968017578125, -16.997676849365234 ], [ -70.461555480956974, -16.999141693115178 ], [ -70.461624145507812, -17.000539779663029 ], [ -70.462562561035156, -17.001895904541016 ], [ -70.463569641113224, -17.004793167114258 ], [ -70.463722229003906, -17.009025573730469 ], [ -70.463172912597599, -17.011629104614258 ], [ -70.4617919921875, -17.01404953002924 ], [ -70.460838317871094, -17.015209197998047 ], [ -70.459388732910043, -17.015863418579102 ], [ -70.457534790039062, -17.016271591186467 ], [ -70.456169128417969, -17.017278671264648 ], [ -70.455078124999943, -17.017597198486328 ], [ -70.454246520996094, -17.018478393554688 ], [ -70.4539794921875, -17.019266128540039 ], [ -70.454185485839844, -17.023021697997933 ], [ -70.453277587890568, -17.023992538452092 ], [ -70.4521484375, -17.024202346801701 ], [ -70.451400756835938, -17.024602890014648 ], [ -70.449996948242188, -17.025966644287053 ], [ -70.44985198974598, -17.028451919555664 ], [ -70.448654174804688, -17.031444549560547 ], [ -70.448951721191406, -17.035039901733398 ], [ -70.448463439941406, -17.035974502563477 ], [ -70.446868896484318, -17.037643432617188 ], [ -70.446151733398438, -17.038719177246037 ], [ -70.445732116699162, -17.040800094604435 ], [ -70.444915771484375, -17.042360305786133 ], [ -70.444267272949219, -17.045419692993164 ], [ -70.442604064941293, -17.047426223754883 ], [ -70.439826965331974, -17.049087524414062 ], [ -70.43939208984375, -17.050159454345703 ], [ -70.439521789550724, -17.051263809204045 ], [ -70.439918518066349, -17.051912307739258 ], [ -70.442733764648438, -17.054544448852539 ], [ -70.444145202636719, -17.056514739990234 ], [ -70.445327758789062, -17.058624267578125 ], [ -70.445579528808594, -17.059793472290039 ], [ -70.447120666503906, -17.062955856323242 ], [ -70.447280883789062, -17.064798355102539 ], [ -70.446578979492131, -17.06617164611805 ], [ -70.446449279785156, -17.069107055664062 ], [ -70.446784973144474, -17.069765090942326 ], [ -70.448150634765625, -17.07119178771967 ], [ -70.448432922363281, -17.071876525878906 ], [ -70.448791503906193, -17.075641632080021 ], [ -70.448341369628906, -17.077568054199105 ], [ -70.448722839355469, -17.079381942749023 ], [ -70.449600219726562, -17.080591201782227 ], [ -70.451316833496094, -17.081758499145508 ], [ -70.454704284667912, -17.082538604736328 ], [ -70.454994201660099, -17.082769393920785 ], [ -70.456802368164006, -17.082664489746094 ], [ -70.458580017089844, -17.082002639770394 ], [ -70.459426879882812, -17.081903457641545 ], [ -70.461349487304688, -17.082010269165039 ], [ -70.462135314941349, -17.0826416015625 ], [ -70.463661193847599, -17.08289909362793 ], [ -70.465507507324219, -17.084737777709904 ], [ -70.467323303222656, -17.087661743164006 ], [ -70.468788146972656, -17.088659286498967 ], [ -70.470787048339844, -17.088487625121957 ], [ -70.472412109375, -17.087549209594727 ], [ -70.474716186523381, -17.086645126342717 ], [ -70.477005004882756, -17.086696624755803 ], [ -70.478813171386662, -17.085710525512638 ], [ -70.481086730957031, -17.085472106933537 ], [ -70.485336303710938, -17.087089538574162 ], [ -70.48773193359375, -17.087728500366097 ], [ -70.490386962890625, -17.089466094970646 ], [ -70.491081237792969, -17.090211868286133 ], [ -70.491600036621037, -17.091304779052621 ], [ -70.491744995117188, -17.095256805419922 ], [ -70.492691040039062, -17.098352432250977 ], [ -70.493453979492188, -17.10270881652832 ], [ -70.494041442871094, -17.104461669921761 ], [ -70.494064331054631, -17.106489181518498 ], [ -70.494537353515625, -17.109104156494084 ], [ -70.495033264160099, -17.110198974609375 ], [ -70.496795654296875, -17.11305046081543 ], [ -70.498924255371094, -17.114910125732422 ], [ -70.499687194824219, -17.116369247436523 ], [ -70.502227783203125, -17.118625640869141 ], [ -70.5040283203125, -17.126102447509709 ], [ -70.505249023437443, -17.127033233642521 ], [ -70.506072998046875, -17.128025054931641 ], [ -70.507637023925724, -17.131496429443359 ], [ -70.509422302246037, -17.13365364074707 ], [ -70.510604858398438, -17.135654449462891 ], [ -70.51361083984375, -17.138444900512638 ], [ -70.514259338378906, -17.139656066894418 ], [ -70.517059326171818, -17.142650604248047 ], [ -70.518127441406193, -17.146064758300781 ], [ -70.519073486328068, -17.151260375976506 ], [ -70.520019531249943, -17.152435302734261 ], [ -70.520736694335938, -17.154272079467717 ], [ -70.521331787109375, -17.158027648925724 ], [ -70.523002624511719, -17.160264968872013 ], [ -70.525924682617131, -17.166217803955078 ], [ -70.527458190917912, -17.168281555175781 ], [ -70.528800964355412, -17.169906616210938 ], [ -70.530319213867131, -17.171003341674805 ], [ -70.532966613769531, -17.172082901000977 ], [ -70.535537719726562, -17.172544479370117 ], [ -70.536521911621037, -17.173196792602539 ], [ -70.537773132324162, -17.174577713012638 ], [ -70.538139343261662, -17.176265716552678 ], [ -70.538536071777287, -17.17683029174799 ], [ -70.540153503417912, -17.17782020568842 ], [ -70.542526245117131, -17.180255889892521 ], [ -70.544227600097599, -17.181329727172852 ], [ -70.546211242675781, -17.183483123779297 ], [ -70.548248291015568, -17.184097290038949 ], [ -70.549896240234375, -17.185026168823242 ], [ -70.550270080566293, -17.186243057250863 ], [ -70.550140380859318, -17.189693450927678 ], [ -70.550300598144531, -17.190822601318359 ], [ -70.552429199218693, -17.192800521850529 ], [ -70.553970336914006, -17.195529937744084 ], [ -70.554985046386719, -17.196660995483398 ], [ -70.556617736816406, -17.197391510009766 ], [ -70.557563781738281, -17.197357177734375 ], [ -70.561035156249943, -17.195829391479492 ], [ -70.566001892089787, -17.194505691528263 ], [ -70.569107055664062, -17.194557189941349 ], [ -70.570594787597656, -17.195058822631836 ], [ -70.571754455566406, -17.196807861328125 ], [ -70.572822570800781, -17.197542190551758 ], [ -70.57497406005848, -17.197580337524357 ], [ -70.576950073242131, -17.197198867797795 ], [ -70.578819274902344, -17.197565078735295 ], [ -70.58013916015625, -17.198549270629883 ], [ -70.580963134765568, -17.199956893920842 ], [ -70.581886291503906, -17.20101356506342 ], [ -70.584808349609375, -17.203395843505859 ], [ -70.587043762207031, -17.204328536987248 ], [ -70.589195251464844, -17.204385757446289 ], [ -70.591079711914006, -17.205129623413086 ], [ -70.592491149902287, -17.205970764160156 ], [ -70.594871520996037, -17.2080783843993 ], [ -70.597221374511719, -17.208906173705998 ], [ -70.599365234374943, -17.210170745849609 ], [ -70.600067138671875, -17.210304260253849 ], [ -70.602912902831918, -17.210069656372013 ], [ -70.605552673339787, -17.210819244384766 ], [ -70.607955932617131, -17.213207244873047 ], [ -70.610191345214844, -17.214294433593693 ], [ -70.61114501953125, -17.21430587768549 ], [ -70.612983703613281, -17.213291168212891 ], [ -70.614410400390625, -17.211896896362191 ], [ -70.616500854492188, -17.210365295410156 ], [ -70.617149353027344, -17.208774566650334 ], [ -70.617675781249943, -17.208560943603516 ], [ -70.619064331054688, -17.208959579467773 ], [ -70.623680114746037, -17.211395263671875 ], [ -70.626899719238281, -17.212295532226506 ], [ -70.628852844238168, -17.213401794433594 ], [ -70.630233764648438, -17.213766098022404 ], [ -70.631088256835938, -17.213657379150277 ], [ -70.631660461425781, -17.213291168212891 ], [ -70.632339477539062, -17.212324142456055 ], [ -70.632461547851506, -17.211416244506722 ], [ -70.632942199706974, -17.211027145385685 ], [ -70.637359619140625, -17.211160659790039 ], [ -70.639015197753906, -17.210943222045785 ], [ -70.640182495117131, -17.211185455322266 ], [ -70.642097473144474, -17.211217880248967 ], [ -70.647628784179631, -17.210338592529297 ], [ -70.651298522949219, -17.209299087524357 ], [ -70.652610778808594, -17.209291458129826 ], [ -70.655158996581974, -17.210283279418945 ], [ -70.657852172851562, -17.211767196655217 ], [ -70.659446716308537, -17.212261199951172 ], [ -70.661911010742131, -17.213685989379826 ], [ -70.663452148437443, -17.213890075683594 ], [ -70.665962219238281, -17.213800430297738 ], [ -70.666648864746094, -17.213996887207031 ], [ -70.667892456054688, -17.215076446533146 ], [ -70.668327331542912, -17.216510772705021 ], [ -70.669174194335881, -17.217475891113168 ], [ -70.669418334960938, -17.218227386474553 ], [ -70.670127868652287, -17.218858718871957 ], [ -70.671333312988281, -17.219587326049748 ], [ -70.674064636230469, -17.219818115234375 ], [ -70.675102233886662, -17.220111846923771 ], [ -70.676033020019474, -17.220815658569336 ], [ -70.677101135253849, -17.222209930419865 ], [ -70.678375244140625, -17.222850799560547 ], [ -70.681480407714787, -17.222772598266602 ], [ -70.684089660644531, -17.22307014465332 ], [ -70.684249877929631, -17.223499298095703 ], [ -70.684089660644531, -17.22418022155756 ], [ -70.682853698730469, -17.225597381591797 ], [ -70.682647705078125, -17.226106643676644 ], [ -70.682601928710938, -17.227170944213867 ], [ -70.683059692382812, -17.228605270385742 ], [ -70.68341064453125, -17.22919845581049 ], [ -70.68487548828125, -17.230367660522404 ], [ -70.685470581054631, -17.231876373290902 ], [ -70.687095642089787, -17.233867645263615 ], [ -70.687004089355412, -17.236391067504826 ], [ -70.687820434570312, -17.238187789916935 ], [ -70.688140869140568, -17.23952674865717 ], [ -70.688690185546875, -17.239980697631836 ], [ -70.689529418945312, -17.239980697631836 ], [ -70.691726684570312, -17.240665435791016 ], [ -70.692832946777287, -17.241367340087891 ], [ -70.694618225097656, -17.244743347167912 ], [ -70.697212219238224, -17.247728347778263 ], [ -70.697914123535156, -17.249322891235352 ], [ -70.698493957519531, -17.249904632568359 ], [ -70.700080871581974, -17.252616882324219 ], [ -70.701393127441349, -17.25439262390131 ], [ -70.702308654785156, -17.256637573242131 ], [ -70.702423095703125, -17.258247375488281 ], [ -70.702896118164062, -17.259304046630803 ], [ -70.702949523925724, -17.260675430297852 ], [ -70.703384399414062, -17.261632919311523 ], [ -70.703826904296875, -17.262029647827092 ], [ -70.704017639160156, -17.265659332275391 ], [ -70.704483032226449, -17.266994476318359 ], [ -70.705238342285099, -17.26771354675293 ], [ -70.707595825195256, -17.269243240356445 ], [ -70.709365844726562, -17.26933479309082 ], [ -70.710334777832031, -17.269798278808537 ], [ -70.71221923828125, -17.270046234130859 ], [ -70.713592529296875, -17.270463943481445 ], [ -70.714637756347656, -17.271406173705941 ], [ -70.715362548828125, -17.272611618041935 ], [ -70.715713500976506, -17.273954391479435 ], [ -70.71575927734375, -17.27580451965332 ], [ -70.714485168456974, -17.278633117675781 ], [ -70.714241027832031, -17.280000686645508 ], [ -70.713813781738224, -17.280675888061523 ], [ -70.713645935058594, -17.283891677856388 ], [ -70.71307373046875, -17.285646438598633 ], [ -70.71230316162098, -17.28666877746582 ], [ -70.711097717285156, -17.287616729736328 ], [ -70.708709716796875, -17.288322448730412 ], [ -70.708229064941406, -17.288665771484375 ], [ -70.707153320312386, -17.28866004943842 ], [ -70.705825805664062, -17.289190292358398 ], [ -70.705650329589844, -17.290206909179631 ], [ -70.705848693847656, -17.290969848632756 ], [ -70.708061218261719, -17.294277191162109 ], [ -70.716064453125, -17.301557540893555 ], [ -70.716186523437443, -17.304643630981445 ], [ -70.717399597167969, -17.30751991271967 ], [ -70.718460083007812, -17.308244705200195 ], [ -70.719879150390625, -17.309961318969727 ], [ -70.721656799316406, -17.311668395996037 ], [ -70.726860046386662, -17.315839767455998 ], [ -70.729881286621094, -17.318635940551758 ], [ -70.731369018554631, -17.32012748718256 ], [ -70.732658386230469, -17.322067260742131 ], [ -70.735176086425724, -17.324998855590707 ], [ -70.735397338867188, -17.325777053833008 ], [ -70.738304138183537, -17.330404281616154 ], [ -70.739913940429688, -17.334144592285156 ], [ -70.740142822265568, -17.335393905639535 ], [ -70.741439819335938, -17.337333679199162 ], [ -70.743049621582031, -17.340732574462891 ], [ -70.743438720703125, -17.341686248779297 ], [ -70.743927001953068, -17.344762802124023 ], [ -70.745307922363281, -17.347190856933594 ], [ -70.745681762695199, -17.348995208740234 ], [ -70.746467590332031, -17.350534439086857 ], [ -70.747314453125, -17.354827880859375 ], [ -70.748077392578125, -17.356891632080021 ], [ -70.748397827148438, -17.358936309814453 ], [ -70.748992919921818, -17.360446929931641 ], [ -70.750373840332031, -17.365932464599553 ], [ -70.750961303710938, -17.367063522338867 ], [ -70.751335144042969, -17.368982315063477 ], [ -70.751876831054574, -17.370275497436467 ], [ -70.752098083496094, -17.37429237365717 ], [ -70.752876281738281, -17.377059936523438 ], [ -70.752799987792912, -17.378440856933537 ], [ -70.752235412597599, -17.380086898803654 ], [ -70.751724243164062, -17.380849838256779 ], [ -70.7501220703125, -17.384565353393555 ], [ -70.747879028320312, -17.388027191162109 ], [ -70.742683410644531, -17.394004821777344 ], [ -70.741401672363281, -17.395212173461914 ], [ -70.739128112792969, -17.398311614990234 ], [ -70.735443115234318, -17.400857925415039 ], [ -70.735382080078011, -17.401287078857422 ], [ -70.736343383789062, -17.40294075012207 ], [ -70.735755920410099, -17.404308319091797 ], [ -70.735633850097599, -17.405136108398381 ], [ -70.735794067382812, -17.405536651611214 ], [ -70.736679077148381, -17.406150817871094 ], [ -70.736572265625, -17.40754508972168 ], [ -70.738822937011719, -17.409738540649414 ], [ -70.73909759521473, -17.411207199096623 ], [ -70.741661071777287, -17.41290283203125 ], [ -70.743232727050781, -17.415218353271484 ], [ -70.745460510253849, -17.416763305664006 ], [ -70.746597290039006, -17.418258666992188 ], [ -70.746231079101506, -17.420497894287053 ], [ -70.746284484863281, -17.421182632446289 ], [ -70.74664306640625, -17.421775817871094 ], [ -70.746566772460938, -17.42901611328125 ], [ -70.748336791992131, -17.430578231811523 ], [ -70.751853942871037, -17.432012557983398 ], [ -70.752548217773324, -17.433599472045842 ], [ -70.752647399902344, -17.43452072143549 ], [ -70.754722595214787, -17.436082839965763 ], [ -70.7564697265625, -17.437814712524357 ], [ -70.75848388671875, -17.438838958740234 ], [ -70.760253906249943, -17.438625335693303 ], [ -70.761688232421818, -17.439203262329102 ], [ -70.763488769531193, -17.439325332641545 ], [ -70.764511108398438, -17.440284729003906 ], [ -70.765602111816349, -17.440713882446289 ], [ -70.766372680663949, -17.441963195800724 ], [ -70.766799926757812, -17.444562911987248 ], [ -70.767692565917912, -17.445466995239258 ], [ -70.768768310546875, -17.445949554443303 ], [ -70.770164489746037, -17.447828292846623 ], [ -70.771415710449162, -17.448070526122933 ], [ -70.776336669921875, -17.448104858398438 ], [ -70.778579711913949, -17.448890686035156 ], [ -70.781158447265511, -17.451452255248967 ], [ -70.781768798828125, -17.45270919799799 ], [ -70.781990051269474, -17.454078674316293 ], [ -70.785957336425781, -17.458978652954045 ], [ -70.786666870117131, -17.459415435790959 ], [ -70.787956237792969, -17.459640502929688 ], [ -70.788307189941293, -17.459991455078011 ], [ -70.789581298828125, -17.460262298583928 ], [ -70.790885925292855, -17.461263656616154 ], [ -70.791557312011719, -17.462621688842773 ], [ -70.792121887206918, -17.465095520019531 ], [ -70.793045043945256, -17.466449737548771 ], [ -70.796073913574219, -17.468696594238281 ], [ -70.798934936523438, -17.471481323242188 ], [ -70.801162719726506, -17.472843170165959 ], [ -70.802322387695256, -17.473844528198185 ], [ -70.803169250488224, -17.47523307800293 ], [ -70.804397583007756, -17.478839874267521 ], [ -70.805679321289062, -17.480354309082031 ], [ -70.808403015136662, -17.48277473449707 ], [ -70.810371398925781, -17.485811233520508 ], [ -70.813972473144531, -17.487510681152344 ], [ -70.816711425781193, -17.490409851074162 ], [ -70.818679809570312, -17.491262435913086 ], [ -70.819961547851506, -17.492633819580078 ], [ -70.821121215820312, -17.493244171142521 ], [ -70.821960449218693, -17.494047164916992 ], [ -70.823532104492188, -17.496099472045898 ], [ -70.824104309082031, -17.497238159179688 ], [ -70.826301574707031, -17.499378204345589 ], [ -70.826858520507812, -17.500392913818303 ], [ -70.828201293945312, -17.501708984375 ], [ -70.828880310058594, -17.503093719482365 ], [ -70.832283020019531, -17.50745773315424 ], [ -70.833030700683537, -17.508844375610295 ], [ -70.835617065429688, -17.511434555053654 ], [ -70.835952758789062, -17.512289047241154 ], [ -70.836006164550781, -17.514762878417969 ], [ -70.836936950683537, -17.516792297363281 ], [ -70.837783813476506, -17.517675399780273 ], [ -70.838897705078125, -17.518203735351562 ], [ -70.841545104980469, -17.520614624023381 ], [ -70.842834472656193, -17.522209167480469 ], [ -70.844314575195312, -17.524675369262638 ], [ -70.845878601074162, -17.525882720947209 ], [ -70.848190307617131, -17.526758193969727 ], [ -70.848915100097656, -17.527507781982365 ], [ -70.849494934082031, -17.52877235412592 ], [ -70.850067138671875, -17.529237747192383 ], [ -70.851608276367131, -17.529781341552678 ], [ -70.854354858398438, -17.530172348022461 ], [ -70.856048583984375, -17.53120040893549 ], [ -70.856826782226562, -17.532253265380803 ], [ -70.857002258300781, -17.534357070922852 ], [ -70.857345581054631, -17.535034179687443 ], [ -70.85919189453125, -17.535558700561467 ], [ -70.860374450683537, -17.536151885986328 ], [ -70.862739562988281, -17.537736892700138 ], [ -70.864143371582031, -17.539117813110352 ], [ -70.864593505859318, -17.54003715515131 ], [ -70.865005493164062, -17.543870925903207 ], [ -70.868873596191349, -17.547306060791016 ], [ -70.870246887207031, -17.549528121948242 ], [ -70.872047424316406, -17.551559448242188 ], [ -70.872978210449162, -17.552209854125977 ], [ -70.874755859375, -17.552902221679688 ], [ -70.876815795898438, -17.554397583007756 ], [ -70.879150390625, -17.554882049560433 ], [ -70.880233764648381, -17.555627822875977 ], [ -70.88067626953125, -17.556852340698242 ], [ -70.881980895996094, -17.558881759643555 ], [ -70.882972717285099, -17.561771392822266 ], [ -70.881683349609375, -17.56561279296875 ], [ -70.881553649902287, -17.568740844726562 ], [ -70.881690979003906, -17.569744110107365 ], [ -70.882217407226506, -17.570829391479435 ], [ -70.884063720703125, -17.572814941406136 ], [ -70.884498596191349, -17.57374382019043 ], [ -70.884498596191349, -17.576675415039062 ], [ -70.884086608886719, -17.577680587768555 ], [ -70.884368896484375, -17.57855033874506 ], [ -70.884246826171761, -17.581027984619141 ], [ -70.884407043456974, -17.582212448120117 ], [ -70.885169982910099, -17.583372116088867 ], [ -70.889190673828068, -17.587200164794865 ], [ -70.889938354492131, -17.588272094726562 ], [ -70.890655517578125, -17.589872360229492 ], [ -70.892738342285043, -17.591785430908146 ], [ -70.893699645996094, -17.592958450317326 ], [ -70.894561767578125, -17.598396301269531 ], [ -70.896583557128906, -17.603536605834904 ], [ -70.896636962890568, -17.605287551879769 ], [ -70.896171569824105, -17.606306076049748 ], [ -70.896148681640568, -17.607486724853516 ], [ -70.896270751953125, -17.609573364257812 ], [ -70.896965026855469, -17.611959457397347 ], [ -70.898872375488281, -17.614650726318303 ], [ -70.90228271484375, -17.618383407592773 ], [ -70.903823852539062, -17.621454238891602 ], [ -70.904891967773438, -17.628368377685547 ], [ -70.904846191406136, -17.629638671874943 ], [ -70.904228210449219, -17.632152557373047 ], [ -70.904098510742188, -17.634550094604435 ], [ -70.904708862304688, -17.63965988159174 ], [ -70.904693603515625, -17.641597747802734 ], [ -70.905303955078068, -17.643241882324219 ], [ -70.907081604003906, -17.645524978637638 ], [ -70.907424926757699, -17.646913528442383 ], [ -70.907722473144531, -17.647207260131836 ], [ -70.908622741699219, -17.649173736572209 ], [ -70.908805847167969, -17.650829315185547 ], [ -70.909645080566406, -17.652488708496094 ], [ -70.909881591796818, -17.654243469238224 ], [ -70.909477233886719, -17.655723571777344 ], [ -70.907577514648381, -17.659147262573185 ], [ -70.9073486328125, -17.661153793334904 ], [ -70.90899658203125, -17.663055419921875 ], [ -70.910118103027344, -17.665098190307617 ], [ -70.910179138183537, -17.667409896850586 ], [ -70.909446716308594, -17.668899536132812 ], [ -70.909408569335881, -17.669546127319279 ], [ -70.909683227539006, -17.670518875121957 ], [ -70.909866333007756, -17.673454284667969 ], [ -70.910369873046818, -17.675313949584961 ], [ -70.910491943359375, -17.678258895874023 ], [ -70.91107177734375, -17.679622650146371 ], [ -70.911079406738281, -17.68127250671381 ], [ -70.912033081054688, -17.683277130126953 ], [ -70.912353515624943, -17.686126708984375 ], [ -70.912666320800668, -17.686674118041992 ], [ -70.913307189941349, -17.687091827392578 ], [ -70.91748046875, -17.688045501708984 ], [ -70.921600341796818, -17.687969207763672 ], [ -70.924224853515625, -17.6875 ], [ -70.927398681640625, -17.688127517700138 ], [ -70.93135833740223, -17.687494277953988 ], [ -70.933364868163949, -17.686868667602539 ], [ -70.934005737304631, -17.686330795288029 ], [ -70.934867858886662, -17.686220169067326 ], [ -70.935729980468693, -17.685646057128906 ], [ -70.938240051269531, -17.68508338928217 ], [ -70.941314697265625, -17.683061599731445 ], [ -70.943077087402287, -17.682332992553654 ], [ -70.945259094238224, -17.680692672729435 ], [ -70.947074890136662, -17.680179595947209 ], [ -70.949043273925781, -17.679019927978459 ], [ -70.950843811035156, -17.678396224975529 ], [ -70.954856872558594, -17.67628288269043 ], [ -70.955513000488281, -17.676141738891488 ], [ -70.957046508789062, -17.676162719726506 ], [ -70.958244323730412, -17.675899505615178 ], [ -70.960281372070312, -17.676183700561523 ], [ -70.966018676757812, -17.676067352294865 ], [ -70.968002319335938, -17.677001953125 ], [ -70.971130371093636, -17.679969787597599 ], [ -70.972900390625, -17.680402755737248 ], [ -70.974586486816406, -17.68145751953125 ], [ -70.976882934570312, -17.68212890625 ], [ -70.978538513183537, -17.68321418762207 ], [ -70.979393005371037, -17.683343887329102 ], [ -70.981285095214844, -17.684282302856445 ], [ -70.982368469238224, -17.684576034545898 ], [ -70.983322143554631, -17.684413909912109 ], [ -70.985244750976449, -17.683542251586914 ], [ -70.986083984374943, -17.682830810546818 ], [ -70.988258361816349, -17.680240631103516 ], [ -70.989852905273438, -17.679044723510742 ], [ -70.991622924804631, -17.678756713867131 ], [ -70.9931640625, -17.678905487060547 ], [ -70.997100830078125, -17.680591583251953 ], [ -70.999275207519531, -17.681257247924748 ], [ -71.003517150878849, -17.683483123779297 ], [ -71.004318237304574, -17.684852600097599 ], [ -71.004760742187443, -17.6863498687743 ], [ -71.004882812499943, -17.690862655639648 ], [ -71.00531005859375, -17.692386627197209 ], [ -71.008064270019531, -17.695310592651254 ], [ -71.009559631347543, -17.698705673217773 ], [ -71.010314941406193, -17.699867248535156 ], [ -71.012550354003906, -17.702032089233398 ], [ -71.013984680175781, -17.702936172485295 ], [ -71.015060424804631, -17.705396652221623 ], [ -71.016044616699105, -17.706758499145394 ], [ -71.016799926757756, -17.708551406860295 ], [ -71.017280578613224, -17.708993911743164 ], [ -71.018402099609318, -17.709215164184513 ], [ -71.020393371582031, -17.708568572998047 ], [ -71.021507263183594, -17.707681655883732 ], [ -71.024482727050781, -17.704574584960881 ], [ -71.025596618652344, -17.70402717590332 ], [ -71.027076721191349, -17.703664779663086 ], [ -71.028762817382812, -17.704507827758789 ], [ -71.030601501464787, -17.706123352050724 ], [ -71.034271240234375, -17.708795547485352 ], [ -71.035949707031193, -17.709442138671818 ], [ -71.037109374999943, -17.709440231323242 ], [ -71.038322448730469, -17.708915710449219 ], [ -71.040008544921875, -17.708560943603516 ], [ -71.04632568359375, -17.708400726318303 ], [ -71.048606872558594, -17.70864295959467 ], [ -71.05257415771473, -17.712368011474609 ], [ -71.05450439453125, -17.714418411254883 ], [ -71.056144714355469, -17.716579437255859 ], [ -71.059555053710938, -17.71992301940918 ], [ -71.061225891113224, -17.719623565673828 ], [ -71.063438415527287, -17.717466354370117 ], [ -71.065597534179688, -17.716228485107365 ], [ -71.067893981933537, -17.715923309326115 ], [ -71.070625305175781, -17.714138031005803 ], [ -71.073638916015568, -17.713539123535099 ], [ -71.079277038574105, -17.71497726440424 ], [ -71.082359313964844, -17.716464996337891 ], [ -71.08349609375, -17.71730995178217 ], [ -71.084320068359318, -17.718435287475586 ], [ -71.084930419921875, -17.719583511352539 ], [ -71.085166931152287, -17.721067428588867 ], [ -71.084098815917969, -17.722480773925781 ], [ -71.083847045898381, -17.725589752197152 ], [ -71.082183837890625, -17.729400634765568 ], [ -71.082450866699219, -17.731504440307617 ], [ -71.082160949707031, -17.733772277831974 ], [ -71.082344055175781, -17.73439979553217 ], [ -71.083114624023438, -17.735586166381836 ], [ -71.084327697753793, -17.735801696777344 ], [ -71.088653564453125, -17.733442306518498 ], [ -71.089828491210881, -17.733060836791935 ], [ -71.0919189453125, -17.73274040222168 ], [ -71.094398498535156, -17.733026504516602 ], [ -71.096450805664062, -17.734210968017578 ], [ -71.09767913818348, -17.7352294921875 ], [ -71.101303100585824, -17.739280700683594 ], [ -71.102310180664062, -17.741464614868107 ], [ -71.102638244628793, -17.743373870849609 ], [ -71.103187561035099, -17.744857788085824 ], [ -71.103057861328125, -17.747955322265625 ], [ -71.102569580078125, -17.749454498291016 ], [ -71.10247802734375, -17.75119590759266 ], [ -71.102722167968693, -17.753021240234318 ], [ -71.103309631347543, -17.755062103271371 ], [ -71.104377746582031, -17.756698608398438 ], [ -71.106216430664062, -17.760343551635685 ], [ -71.108375549316406, -17.762676239013615 ], [ -71.109779357910099, -17.764898300170842 ], [ -71.110313415527344, -17.766153335571232 ], [ -71.110603332519531, -17.768911361694279 ], [ -71.111946105957031, -17.771762847900391 ], [ -71.11480712890625, -17.77556037902832 ], [ -71.116058349609318, -17.777824401855412 ], [ -71.11962890625, -17.781801223754826 ], [ -71.121231079101506, -17.783979415893498 ], [ -71.121772766113224, -17.785055160522347 ], [ -71.121696472167912, -17.792415618896428 ], [ -71.121261596679688, -17.795970916747933 ], [ -71.121841430664062, -17.799509048461914 ], [ -71.121719360351562, -17.801069259643498 ], [ -71.122032165527344, -17.803800582885742 ], [ -71.122444152831974, -17.805315017700195 ], [ -71.12353515625, -17.807149887084904 ], [ -71.125106811523438, -17.808353424072209 ], [ -71.126205444335938, -17.809864044189396 ], [ -71.127861022949219, -17.813949584960938 ], [ -71.129333496093693, -17.814825057983398 ], [ -71.131538391113168, -17.816745758056584 ], [ -71.132469177246037, -17.817205429077148 ], [ -71.135856628417969, -17.81962776184082 ], [ -71.139305114746094, -17.821405410766602 ], [ -71.142105102539006, -17.822639465331974 ], [ -71.143753051757812, -17.822639465331974 ], [ -71.143753051757812, -17.822360992431584 ], [ -71.145416259765625, -17.822360992431584 ], [ -71.145416259765625, -17.822082519531193 ], [ -71.146247863769531, -17.822082519531193 ], [ -71.146247863769531, -17.821804046630803 ], [ -71.147087097167969, -17.821804046630803 ], [ -71.147087097167969, -17.821527481079102 ], [ -71.147636413574162, -17.821527481079102 ], [ -71.147636413574162, -17.821250915527344 ], [ -71.148475646972599, -17.821250915527344 ], [ -71.148475646972599, -17.820972442626953 ], [ -71.149307250976562, -17.820972442626953 ], [ -71.149307250976562, -17.820695877075138 ], [ -71.152641296386719, -17.820695877075138 ], [ -71.152641296386719, -17.820417404174748 ], [ -71.153190612792969, -17.820417404174748 ], [ -71.1531982421875, -17.820138931274357 ], [ -71.153747558593693, -17.820138931274357 ], [ -71.153747558593693, -17.81986045837391 ], [ -71.154304504394474, -17.81986045837391 ], [ -71.154304504394474, -17.819585800170898 ], [ -71.154861450195312, -17.819585800170898 ], [ -71.154861450195312, -17.819305419921818 ], [ -71.155418395996094, -17.819305419921818 ], [ -71.155418395996094, -17.819026947021428 ], [ -71.155693054199219, -17.819026947021428 ], [ -71.155693054199219, -17.818750381469727 ], [ -71.15625, -17.818750381469727 ], [ -71.15625, -17.818473815917912 ], [ -71.157081604003849, -17.818473815917912 ], [ -71.157081604003849, -17.818195343017464 ], [ -71.157638549804631, -17.818195343017464 ], [ -71.157638549804631, -17.817916870117188 ], [ -71.159027099609375, -17.817916870117188 ], [ -71.159027099609375, -17.817638397216797 ], [ -71.160140991210881, -17.817638397216797 ], [ -71.160140991210881, -17.817363739013672 ], [ -71.162918090820312, -17.817363739013672 ], [ -71.162918090820312, -17.817081451416016 ], [ -71.163192749023381, -17.817081451416016 ], [ -71.163192749023381, -17.8165283203125 ], [ -71.163475036621037, -17.8165283203125 ], [ -71.163475036621037, -17.816251754760742 ], [ -71.163749694824162, -17.816251754760742 ], [ -71.163749694824162, -17.814582824707031 ], [ -71.164581298828125, -17.814582824707031 ], [ -71.164581298828125, -17.814306259155217 ], [ -71.164863586425781, -17.814306259155217 ], [ -71.164863586425781, -17.814027786254826 ], [ -71.165138244628906, -17.814027786254826 ], [ -71.165138244628906, -17.813749313354435 ], [ -71.165412902832031, -17.813749313354435 ], [ -71.165412902832031, -17.813472747802734 ], [ -71.165695190429688, -17.813472747802734 ], [ -71.165695190429688, -17.813194274902344 ], [ -71.165969848632812, -17.813194274902344 ], [ -71.165969848632812, -17.812915802001896 ], [ -71.166252136230355, -17.812915802001896 ], [ -71.166252136230355, -17.812637329101506 ], [ -71.167358398437443, -17.812637329101506 ], [ -71.167358398437443, -17.812360763549805 ], [ -71.167640686035156, -17.812360763549805 ], [ -71.167640686035156, -17.81208419799799 ], [ -71.168472290039062, -17.81208419799799 ], [ -71.168472290039062, -17.812360763549805 ], [ -71.169029235839844, -17.812360763549805 ], [ -71.169029235839844, -17.81208419799799 ], [ -71.169586181640511, -17.81208419799799 ], [ -71.169586181640511, -17.811805725097543 ], [ -71.169860839843693, -17.811805725097543 ], [ -71.169860839843693, -17.811250686645451 ], [ -71.170135498046818, -17.811250686645451 ], [ -71.170135498046818, -17.809305191040039 ], [ -71.170417785644474, -17.809305191040039 ], [ -71.170417785644474, -17.807638168334904 ], [ -71.170692443847656, -17.807638168334904 ], [ -71.170692443847656, -17.807083129882812 ], [ -71.170974731445312, -17.807083129882812 ], [ -71.170974731445312, -17.806528091430664 ], [ -71.171524047851562, -17.806528091430664 ], [ -71.171524047851562, -17.806249618530273 ], [ -71.171806335449219, -17.806249618530273 ], [ -71.171806335449219, -17.805973052978459 ], [ -71.17236328125, -17.805973052978459 ], [ -71.17236328125, -17.805694580078068 ], [ -71.172920227050724, -17.805694580078068 ], [ -71.172920227050724, -17.805416107177621 ], [ -71.173469543456974, -17.805416107177621 ], [ -71.173469543456974, -17.80513954162592 ], [ -71.174026489257812, -17.80513954162592 ], [ -71.174026489257812, -17.804861068725529 ], [ -71.174583435058594, -17.804861068725529 ], [ -71.174583435058594, -17.804584503173828 ], [ -71.175140380859375, -17.804584503173828 ], [ -71.175140380859375, -17.804306030273438 ], [ -71.175697326660156, -17.804306030273438 ], [ -71.175697326660156, -17.804027557373047 ], [ -71.176246643066349, -17.804027557373047 ], [ -71.176246643066349, -17.803749084472656 ], [ -71.176528930664006, -17.803749084472656 ], [ -71.176528930664006, -17.803470611572209 ], [ -71.176803588867131, -17.803470611572209 ], [ -71.176803588867131, -17.803192138671818 ], [ -71.177085876464787, -17.803192138671818 ], [ -71.177085876464787, -17.802917480468693 ], [ -71.176803588867131, -17.802917480468693 ], [ -71.176803588867131, -17.802640914916992 ], [ -71.176246643066349, -17.802640914916992 ], [ -71.176246643066349, -17.802082061767578 ], [ -71.175971984863224, -17.802082061767578 ], [ -71.175971984863224, -17.801803588867188 ], [ -71.175971984863224, -17.801527023315373 ], [ -71.175697326660156, -17.801527023315373 ], [ -71.175697326660156, -17.801029205322152 ], [ -71.175697326660156, -17.80069541931141 ], [ -71.1754150390625, -17.800693511962891 ], [ -71.1754150390625, -17.800579071044922 ], [ -71.1754150390625, -17.800138473510742 ], [ -71.175140380859375, -17.800138473510742 ], [ -71.175140380859375, -17.800003051757812 ], [ -71.175140380859375, -17.799583435058537 ], [ -71.1754150390625, -17.799583435058537 ], [ -71.1754150390625, -17.799304962158146 ], [ -71.175697326660156, -17.799304962158146 ], [ -71.175697326660156, -17.799028396606445 ], [ -71.175971984863224, -17.799028396606445 ], [ -71.175971984863224, -17.798749923705998 ], [ -71.176246643066349, -17.798749923705998 ], [ -71.176246643066349, -17.798471450805607 ], [ -71.176528930664006, -17.798471450805607 ], [ -71.176528930664006, -17.798194885253906 ], [ -71.176803588867131, -17.798194885253906 ], [ -71.176803588867131, -17.797916412353516 ], [ -71.177085876464787, -17.797916412353516 ], [ -71.177085876464787, -17.797361373901367 ], [ -71.177360534667969, -17.797361373901367 ], [ -71.177360534667969, -17.796527862548771 ], [ -71.177635192871094, -17.796527862548771 ], [ -71.177635192871094, -17.795694351196289 ], [ -71.17791748046875, -17.795694351196289 ], [ -71.17791748046875, -17.79486083984375 ], [ -71.178192138671875, -17.79486083984375 ], [ -71.178192138671875, -17.792360305786076 ], [ -71.178474426269531, -17.792360305786076 ], [ -71.178474426269531, -17.790138244628849 ], [ -71.179031372070199, -17.790138244628849 ], [ -71.179031372070199, -17.789863586425724 ], [ -71.181251525878906, -17.789863586425724 ], [ -71.181251525878906, -17.789304733276367 ], [ -71.181526184082031, -17.789304733276367 ], [ -71.181526184082031, -17.788751602172795 ], [ -71.181808471679688, -17.788751602172795 ], [ -71.181808471679688, -17.787916183471566 ], [ -71.182083129882699, -17.787916183471566 ], [ -71.182083129882699, -17.787082672119084 ], [ -71.182357788085881, -17.787082672119084 ], [ -71.182357788085881, -17.786527633666992 ], [ -71.182640075683537, -17.786527633666992 ], [ -71.182640075683537, -17.785972595214844 ], [ -71.182914733886662, -17.785972595214844 ], [ -71.182914733886662, -17.785694122314453 ], [ -71.183197021484318, -17.785694122314453 ], [ -71.183197021484318, -17.785417556762638 ], [ -71.1834716796875, -17.785417556762638 ], [ -71.1834716796875, -17.7848606109618 ], [ -71.183746337890625, -17.7848606109618 ], [ -71.183746337890625, -17.784584045410156 ], [ -71.184028625488281, -17.784584045410156 ], [ -71.184028625488281, -17.784305572509709 ], [ -71.184303283691406, -17.784305572509709 ], [ -71.184303283691406, -17.784027099609318 ], [ -71.184585571289062, -17.784027099609318 ], [ -71.184585571289062, -17.783750534057617 ], [ -71.184860229492188, -17.783750534057617 ], [ -71.184860229492188, -17.783193588256836 ], [ -71.185142517089844, -17.783193588256836 ], [ -71.185142517089844, -17.782915115356445 ], [ -71.185417175292855, -17.782915115356445 ], [ -71.185417175292855, -17.782638549804688 ], [ -71.185974121093693, -17.782638549804688 ], [ -71.185974121093693, -17.782361984252873 ], [ -71.186531066894474, -17.782361984252873 ], [ -71.186531066894474, -17.782083511352482 ], [ -71.187080383300781, -17.782083511352482 ], [ -71.187080383300781, -17.781806945800781 ], [ -71.187637329101562, -17.781806945800781 ], [ -71.187637329101562, -17.781528472900391 ], [ -71.188194274902344, -17.781528472900391 ], [ -71.188194274902344, -17.78125 ], [ -71.188751220703068, -17.78125 ], [ -71.188751220703068, -17.780971527099553 ], [ -71.189308166503849, -17.780971527099553 ], [ -71.189308166503849, -17.780696868896428 ], [ -71.189582824706974, -17.780696868896428 ], [ -71.189582824706974, -17.780416488647461 ], [ -71.190139770507812, -17.780416488647461 ], [ -71.190139770507812, -17.78013801574707 ], [ -71.190414428710938, -17.78013801574707 ], [ -71.190414428710938, -17.779861450195312 ], [ -71.191253662109375, -17.779861450195312 ], [ -71.191253662109375, -17.779584884643498 ], [ -71.192085266113224, -17.779584884643498 ], [ -71.192085266113224, -17.779306411743107 ], [ -71.193191528320312, -17.779306411743107 ], [ -71.193191528320312, -17.779584884643498 ], [ -71.193473815917969, -17.779584884643498 ], [ -71.193473815917969, -17.779861450195312 ], [ -71.193748474121094, -17.779861450195312 ], [ -71.193748474121094, -17.780416488647461 ], [ -71.19403076171875, -17.780416488647461 ], [ -71.19403076171875, -17.780696868896428 ], [ -71.194305419921875, -17.780696868896428 ], [ -71.194305419921875, -17.78125 ], [ -71.194580078125, -17.78125 ], [ -71.194580078125, -17.781528472900391 ], [ -71.194862365722543, -17.781528472900391 ], [ -71.194862365722543, -17.781806945800781 ], [ -71.195137023925724, -17.781806945800781 ], [ -71.195137023925724, -17.782361984252873 ], [ -71.195419311523381, -17.782361984252873 ], [ -71.195419311523381, -17.782638549804688 ], [ -71.195693969726506, -17.782638549804688 ], [ -71.195693969726506, -17.783193588256836 ], [ -71.195968627929631, -17.783193588256836 ], [ -71.195968627929631, -17.783750534057617 ], [ -71.196250915527344, -17.783750534057617 ], [ -71.196250915527344, -17.784584045410156 ], [ -71.196525573730469, -17.784584045410156 ], [ -71.196525573730469, -17.7848606109618 ], [ -71.196807861328125, -17.7848606109618 ], [ -71.196807861328125, -17.785137176513672 ], [ -71.19708251953125, -17.785137176513672 ], [ -71.19708251953125, -17.785417556762638 ], [ -71.197364807128906, -17.785417556762638 ], [ -71.197364807128906, -17.785972595214844 ], [ -71.197639465332031, -17.785972595214844 ], [ -71.197639465332031, -17.786527633666992 ], [ -71.197914123535043, -17.786527633666992 ], [ -71.197914123535043, -17.787082672119084 ], [ -71.198196411132699, -17.787082672119084 ], [ -71.198196411132699, -17.787359237670898 ], [ -71.198471069335881, -17.787359237670898 ], [ -71.198471069335881, -17.787641525268555 ], [ -71.199302673339844, -17.787641525268555 ], [ -71.199302673339844, -17.787359237670898 ], [ -71.1995849609375, -17.787359237670898 ], [ -71.1995849609375, -17.787082672119084 ], [ -71.199859619140625, -17.787082672119084 ], [ -71.199859619140625, -17.785972595214844 ], [ -71.199302673339844, -17.785972595214844 ], [ -71.199302673339844, -17.785694122314453 ], [ -71.199028015136662, -17.785694122314453 ], [ -71.199028015136662, -17.785417556762638 ], [ -71.198753356933537, -17.785417556762638 ], [ -71.198753356933537, -17.785137176513672 ], [ -71.198471069335881, -17.785137176513672 ], [ -71.198471069335881, -17.7848606109618 ], [ -71.198196411132699, -17.7848606109618 ], [ -71.198196411132699, -17.784027099609318 ], [ -71.197914123535043, -17.784027099609318 ], [ -71.197914123535043, -17.783472061157227 ], [ -71.197639465332031, -17.783472061157227 ], [ -71.197639465332031, -17.783193588256836 ], [ -71.197364807128906, -17.783193588256836 ], [ -71.197364807128906, -17.782638549804688 ], [ -71.19708251953125, -17.782638549804688 ], [ -71.19708251953125, -17.782361984252873 ], [ -71.196807861328125, -17.782361984252873 ], [ -71.196807861328125, -17.781806945800781 ], [ -71.196525573730469, -17.781806945800781 ], [ -71.196525573730469, -17.781528472900391 ], [ -71.196250915527344, -17.781528472900391 ], [ -71.196250915527344, -17.780971527099553 ], [ -71.195968627929631, -17.780971527099553 ], [ -71.195968627929631, -17.780696868896428 ], [ -71.195693969726506, -17.780696868896428 ], [ -71.195693969726506, -17.78013801574707 ], [ -71.195419311523381, -17.78013801574707 ], [ -71.195419311523381, -17.779861450195312 ], [ -71.195137023925724, -17.779861450195312 ], [ -71.195137023925724, -17.779306411743107 ], [ -71.194862365722543, -17.779306411743107 ], [ -71.194862365722543, -17.779027938842717 ], [ -71.194580078125, -17.779027938842717 ], [ -71.194580078125, -17.778474807739144 ], [ -71.194305419921875, -17.778474807739144 ], [ -71.194305419921875, -17.778194427490234 ], [ -71.195137023925724, -17.778194427490234 ], [ -71.195137023925724, -17.777915954589787 ], [ -71.195419311523381, -17.777915954589787 ], [ -71.195419311523381, -17.777639389038086 ], [ -71.195693969726506, -17.777639389038086 ], [ -71.195693969726506, -17.777362823486271 ], [ -71.195968627929631, -17.777362823486271 ], [ -71.195968627929631, -17.777080535888615 ], [ -71.196250915527344, -17.777080535888615 ], [ -71.196250915527344, -17.776805877685433 ], [ -71.196525573730469, -17.776805877685433 ], [ -71.196525573730469, -17.776252746582031 ], [ -71.196807861328125, -17.776252746582031 ], [ -71.196807861328125, -17.775970458984375 ], [ -71.19708251953125, -17.775970458984375 ], [ -71.19708251953125, -17.77569389343256 ], [ -71.197364807128906, -17.77569389343256 ], [ -71.197364807128906, -17.775417327880859 ], [ -71.197639465332031, -17.775417327880859 ], [ -71.197639465332031, -17.775140762329102 ], [ -71.197914123535043, -17.775140762329102 ], [ -71.197914123535043, -17.774860382080021 ], [ -71.198471069335881, -17.774860382080021 ], [ -71.198471069335881, -17.77458381652832 ], [ -71.199302673339844, -17.77458381652832 ], [ -71.199302673339844, -17.77430534362793 ], [ -71.199859619140625, -17.77430534362793 ], [ -71.199859619140625, -17.774026870727539 ], [ -71.200416564941406, -17.774026870727539 ], [ -71.200416564941406, -17.773748397827148 ], [ -71.201248168945199, -17.773748397827148 ], [ -71.201248168945199, -17.773471832275391 ], [ -71.201805114746037, -17.773471832275391 ], [ -71.201805114746037, -17.773195266723576 ], [ -71.20263671875, -17.773195266723576 ], [ -71.20263671875, -17.772916793823185 ], [ -71.203193664550781, -17.772916793823185 ], [ -71.203193664550781, -17.772638320922795 ], [ -71.203750610351562, -17.772638320922795 ], [ -71.203750610351562, -17.772361755371094 ], [ -71.204307556152344, -17.772361755371094 ], [ -71.204307556152344, -17.772083282470703 ], [ -71.204864501953068, -17.772083282470703 ], [ -71.204864501953068, -17.771804809570312 ], [ -71.205413818359318, -17.771804809570312 ], [ -71.205413818359318, -17.771528244018555 ], [ -71.205970764160156, -17.771528244018555 ], [ -71.205970764160156, -17.771249771118164 ], [ -71.206253051757812, -17.771249771118164 ], [ -71.206253051757812, -17.770971298217773 ], [ -71.206527709960938, -17.770971298217773 ], [ -71.206527709960938, -17.770694732665959 ], [ -71.206802368164062, -17.770694732665959 ], [ -71.206802368164062, -17.770416259765511 ], [ -71.207084655761719, -17.770416259765511 ], [ -71.207084655761719, -17.77013969421381 ], [ -71.207641601562386, -17.77013969421381 ], [ -71.207641601562386, -17.76986122131342 ], [ -71.207916259765568, -17.76986122131342 ], [ -71.207916259765568, -17.769582748413029 ], [ -71.208190917968693, -17.769582748413029 ], [ -71.208190917968693, -17.769306182861328 ], [ -71.208473205566349, -17.769306182861328 ], [ -71.208473205566349, -17.769027709960938 ], [ -71.208747863769474, -17.769027709960938 ], [ -71.208747863769474, -17.768749237060547 ], [ -71.209304809570312, -17.768749237060547 ], [ -71.209304809570312, -17.768472671508789 ], [ -71.209861755371094, -17.768472671508789 ], [ -71.209861755371094, -17.768194198608398 ], [ -71.210136413574219, -17.768194198608398 ], [ -71.210136413574219, -17.767915725708008 ], [ -71.210693359374886, -17.767915725708008 ], [ -71.210693359374886, -17.767639160156193 ], [ -71.211250305175724, -17.767639160156193 ], [ -71.211250305175724, -17.767360687255746 ], [ -71.211807250976506, -17.767360687255746 ], [ -71.211807250976506, -17.767084121704102 ], [ -71.212081909179688, -17.767084121704102 ], [ -71.212081909179688, -17.766805648803654 ], [ -71.212638854980469, -17.766805648803654 ], [ -71.212638854980469, -17.766527175903263 ], [ -71.21319580078125, -17.766527175903263 ], [ -71.21319580078125, -17.766250610351562 ], [ -71.213752746582031, -17.766250610351562 ], [ -71.213752746582031, -17.765972137451172 ], [ -71.214027404785043, -17.765972137451172 ], [ -71.214027404785043, -17.7656955718993 ], [ -71.214584350585881, -17.7656955718993 ], [ -71.214584350585881, -17.765417098999023 ], [ -71.215141296386662, -17.765417098999023 ], [ -71.215141296386662, -17.765138626098633 ], [ -71.215690612792969, -17.765138626098633 ], [ -71.2156982421875, -17.764862060546818 ], [ -71.21624755859375, -17.764860153198242 ], [ -71.21624755859375, -17.764583587646428 ], [ -71.217086791992188, -17.764583587646428 ], [ -71.217086791992188, -17.764305114746037 ], [ -71.217636108398381, -17.764305114746037 ], [ -71.217636108398381, -17.764028549194336 ], [ -71.218193054199162, -17.764028549194336 ], [ -71.218193054199162, -17.763750076293888 ], [ -71.21875, -17.763750076293888 ], [ -71.21875, -17.763473510742188 ], [ -71.219581604003906, -17.763473510742188 ], [ -71.219581604003906, -17.763195037841797 ], [ -71.220138549804688, -17.763195037841797 ], [ -71.220138549804688, -17.762916564941406 ], [ -71.220695495605412, -17.762916564941406 ], [ -71.220695495605412, -17.762638092041016 ], [ -71.220970153808537, -17.762638092041016 ], [ -71.220970153808537, -17.762359619140625 ], [ -71.221252441406193, -17.762359619140625 ], [ -71.221252441406193, -17.762081146240178 ], [ -71.2218017578125, -17.762081146240178 ], [ -71.2218017578125, -17.761806488037053 ], [ -71.222084045410156, -17.761804580688477 ], [ -71.222084045410156, -17.761529922485352 ], [ -71.222358703613281, -17.761529922485352 ], [ -71.222358703613281, -17.761249542236271 ], [ -71.222640991210938, -17.761249542236271 ], [ -71.222640991210938, -17.760971069335824 ], [ -71.223197937011719, -17.760971069335824 ], [ -71.223197937011719, -17.76069450378418 ], [ -71.22347259521473, -17.76069450378418 ], [ -71.22347259521473, -17.760416030883732 ], [ -71.223747253417912, -17.760416030883732 ], [ -71.223747253417912, -17.760141372680607 ], [ -71.224586486816349, -17.760141372680607 ], [ -71.224586486816349, -17.759859085082951 ], [ -71.225418090820312, -17.759859085082951 ], [ -71.225418090820312, -17.75958251953125 ], [ -71.226249694824219, -17.75958251953125 ], [ -71.226249694824219, -17.759305953979379 ], [ -71.227081298828068, -17.759305953979379 ], [ -71.227081298828068, -17.759027481079102 ], [ -71.227638244628849, -17.759027481079102 ], [ -71.227638244628849, -17.758750915527287 ], [ -71.227912902832031, -17.758750915527287 ], [ -71.227912902832031, -17.758472442626896 ], [ -71.228469848632812, -17.758472442626896 ], [ -71.228469848632812, -17.758193969726506 ], [ -71.228752136230469, -17.758193969726506 ], [ -71.228752136230469, -17.757917404174805 ], [ -71.22930908203125, -17.757917404174805 ], [ -71.22930908203125, -17.757638931274414 ], [ -71.229583740234375, -17.757638931274414 ], [ -71.229583740234375, -17.757360458373967 ], [ -71.230415344238224, -17.757360458373967 ], [ -71.230415344238224, -17.757083892822266 ], [ -71.230972290039006, -17.757083892822266 ], [ -71.230972290039006, -17.756805419921875 ], [ -71.231529235839844, -17.756805419921875 ], [ -71.231529235839844, -17.756526947021484 ], [ -71.232086181640625, -17.756526947021484 ], [ -71.232086181640625, -17.756250381469613 ], [ -71.232635498046875, -17.756250381469613 ], [ -71.232635498046875, -17.755971908569336 ], [ -71.233192443847599, -17.755971908569336 ], [ -71.233192443847599, -17.755695343017521 ], [ -71.233474731445256, -17.755695343017521 ], [ -71.233474731445256, -17.755416870117131 ], [ -71.234024047851506, -17.755416870117131 ], [ -71.234024047851506, -17.75513839721674 ], [ -71.234306335449162, -17.75513839721674 ], [ -71.234306335449162, -17.754861831665039 ], [ -71.234580993652344, -17.754861831665039 ], [ -71.234580993652344, -17.754583358764648 ], [ -71.23486328125, -17.754583358764648 ], [ -71.23486328125, -17.754306793212891 ], [ -71.235420227050781, -17.754306793212891 ], [ -71.235420227050781, -17.7540283203125 ], [ -71.235694885253906, -17.7540283203125 ], [ -71.235694885253906, -17.753749847412109 ], [ -71.236526489257756, -17.753749847412109 ], [ -71.236526489257756, -17.753471374511719 ], [ -71.237083435058537, -17.753471374511719 ], [ -71.237083435058537, -17.753194808959904 ], [ -71.2379150390625, -17.753194808959904 ], [ -71.2379150390625, -17.752916336059457 ], [ -71.238746643066406, -17.752916336059457 ], [ -71.238746643066406, -17.752639770507756 ], [ -71.239303588867074, -17.752639770507756 ], [ -71.239303588867074, -17.752361297607365 ], [ -71.240135192871037, -17.752361297607365 ], [ -71.240135192871037, -17.752084732055664 ], [ -71.240692138671875, -17.752084732055664 ], [ -71.240692138671875, -17.751806259155273 ], [ -71.241531372070312, -17.751806259155273 ], [ -71.241531372070312, -17.751527786254883 ], [ -71.242080688476562, -17.751527786254883 ], [ -71.242080688476562, -17.751249313354492 ], [ -71.242362976074219, -17.751249313354492 ], [ -71.242362976074219, -17.75097465515131 ], [ -71.24263763427723, -17.75097465515131 ], [ -71.24263763427723, -17.750694274902344 ], [ -71.242919921874943, -17.750694274902344 ], [ -71.242919921874943, -17.750415802001953 ], [ -71.243194580078068, -17.750415802001953 ], [ -71.243194580078068, -17.750139236450138 ], [ -71.243469238281193, -17.750139236450138 ], [ -71.243469238281193, -17.749862670898438 ], [ -71.243751525878849, -17.749862670898438 ], [ -71.243751525878849, -17.749584197998047 ], [ -71.244026184082031, -17.749584197998047 ], [ -71.244026184082031, -17.749416351318303 ], [ -71.244026184082031, -17.749305725097599 ], [ -71.244308471679688, -17.749305725097599 ], [ -71.244308471679688, -17.749027252197209 ], [ -71.244583129882812, -17.749027252197209 ], [ -71.245140075683594, -17.749027252197209 ], [ -71.245140075683594, -17.748752593994084 ], [ -71.245971679687443, -17.748752593994084 ], [ -71.245971679687443, -17.748470306396428 ], [ -71.246528625488224, -17.748470306396428 ], [ -71.246528625488224, -17.748193740844727 ], [ -71.247360229492188, -17.748193740844727 ], [ -71.247360229492188, -17.747917175292969 ], [ -71.247917175292969, -17.747917175292969 ], [ -71.247917175292969, -17.747638702392578 ], [ -71.24847412109375, -17.747638702392578 ], [ -71.24847412109375, -17.747358322143498 ], [ -71.248748779296875, -17.747358322143498 ], [ -71.248748779296875, -17.747083663940373 ], [ -71.249305725097599, -17.747083663940373 ], [ -71.249305725097599, -17.746805191039982 ], [ -71.249862670898381, -17.746805191039982 ], [ -71.249862670898381, -17.746530532836914 ], [ -71.250419616699219, -17.746530532836914 ], [ -71.250419616699219, -17.746248245239258 ], [ -71.250694274902344, -17.746248245239258 ], [ -71.250694274902344, -17.745971679687443 ], [ -71.251251220703125, -17.745971679687443 ], [ -71.251251220703125, -17.745695114135742 ], [ -71.251808166503906, -17.745695114135742 ], [ -71.251808166503906, -17.745416641235352 ], [ -71.252357482910099, -17.745416641235352 ], [ -71.252357482910099, -17.745138168334961 ], [ -71.252639770507756, -17.745138168334961 ], [ -71.252639770507756, -17.744981765747013 ], [ -71.252639770507756, -17.744861602783203 ], [ -71.252838134765568, -17.744861602783203 ], [ -71.253196716308537, -17.744861602783203 ], [ -71.253196716308537, -17.744583129882812 ], [ -71.253753662109375, -17.744583129882812 ], [ -71.253753662109375, -17.744304656982422 ], [ -71.254302978515625, -17.744304656982422 ], [ -71.254302978515625, -17.744026184082031 ], [ -71.254859924316406, -17.744026184082031 ], [ -71.254859924316406, -17.743749618530217 ], [ -71.255416870117074, -17.743749618530217 ], [ -71.255416870117074, -17.743473052978516 ], [ -71.255973815917912, -17.743473052978516 ], [ -71.255973815917912, -17.743194580078125 ], [ -71.256530761718693, -17.743194580078125 ], [ -71.256530761718693, -17.742916107177678 ], [ -71.256805419921875, -17.742916107177678 ], [ -71.256805419921875, -17.742639541625977 ], [ -71.257362365722656, -17.742639541625977 ], [ -71.257362365722656, -17.742361068725586 ], [ -71.257637023925781, -17.742361068725586 ], [ -71.257637023925781, -17.742082595825195 ], [ -71.258193969726562, -17.742082595825195 ], [ -71.258193969726562, -17.74180793762207 ], [ -71.258468627929574, -17.74180793762207 ], [ -71.258468627929574, -17.741527557373047 ], [ -71.259025573730412, -17.741527557373047 ], [ -71.259025573730412, -17.741249084472656 ], [ -71.259307861328068, -17.741249084472656 ], [ -71.259307861328068, -17.741121292114258 ], [ -71.259307861328068, -17.740972518920842 ], [ -71.259628295898438, -17.740972518920842 ], [ -71.259864807128849, -17.740972518920842 ], [ -71.259864807128849, -17.740863800048828 ], [ -71.259864807128849, -17.740695953369141 ], [ -71.260139465332031, -17.740695953369141 ], [ -71.260139465332031, -17.74041748046875 ], [ -71.260826110839787, -17.74041748046875 ], [ -71.260971069335938, -17.74041748046875 ], [ -71.260971069335938, -17.740139007568359 ], [ -71.261428833007699, -17.740139007568359 ], [ -71.261802673339787, -17.740139007568359 ], [ -71.261802673339787, -17.739860534667912 ], [ -71.262359619140568, -17.739860534667912 ], [ -71.262359619140568, -17.739585876464787 ], [ -71.262916564941349, -17.739585876464787 ], [ -71.262916564941349, -17.73930549621582 ], [ -71.263191223144531, -17.73930549621582 ], [ -71.263191223144531, -17.73902702331543 ], [ -71.263748168945312, -17.73902702331543 ], [ -71.263748168945312, -17.738750457763558 ], [ -71.264305114746094, -17.738750457763558 ], [ -71.264305114746094, -17.738473892211914 ], [ -71.264579772949219, -17.738473892211914 ], [ -71.264579772949219, -17.738351821899414 ], [ -71.264579772949219, -17.738191604614201 ], [ -71.264938354492131, -17.738191604614201 ], [ -71.265136718749943, -17.738191604614201 ], [ -71.265136718749943, -17.737916946411076 ], [ -71.265556335449219, -17.737916946411076 ], [ -71.265693664550724, -17.737916946411076 ], [ -71.265693664550724, -17.737638473510685 ], [ -71.266250610351562, -17.737638473510685 ], [ -71.266250610351562, -17.73736381530756 ], [ -71.266807556152344, -17.73736381530756 ], [ -71.267082214355469, -17.73736381530756 ], [ -71.267082214355469, -17.737237930297795 ], [ -71.267082214355469, -17.737083435058594 ], [ -71.267433166503793, -17.737083435058594 ], [ -71.26763916015625, -17.737083435058594 ], [ -71.26763916015625, -17.73680305480957 ], [ -71.268013000488281, -17.73680305480957 ], [ -71.268196105956918, -17.73680305480957 ], [ -71.268196105956918, -17.736700057983285 ], [ -71.268196105956918, -17.736528396606445 ], [ -71.268486022949105, -17.736528396606445 ], [ -71.268753051757756, -17.736528396606445 ], [ -71.268753051757756, -17.736370086669808 ], [ -71.268753051757756, -17.736251831054631 ], [ -71.268959045410043, -17.736251831054631 ], [ -71.269584655761719, -17.736251831054631 ], [ -71.269584655761719, -17.73597335815424 ], [ -71.2701416015625, -17.73597335815424 ], [ -71.2701416015625, -17.735694885253849 ], [ -71.27069091796875, -17.735694885253849 ], [ -71.27069091796875, -17.735416412353402 ], [ -71.271530151367131, -17.735416412353402 ], [ -71.271530151367131, -17.735137939453125 ], [ -71.272087097167912, -17.735137939453125 ], [ -71.272087097167912, -17.734859466552734 ], [ -71.272918701171875, -17.734859466552734 ], [ -71.272918701171875, -17.73458290100092 ], [ -71.273475646972656, -17.73458290100092 ], [ -71.273475646972656, -17.734306335449219 ], [ -71.273750305175781, -17.734306335449219 ], [ -71.273750305175781, -17.734027862548828 ], [ -71.274024963378906, -17.734027862548828 ], [ -71.274024963378906, -17.73347282409668 ], [ -71.274307250976562, -17.73347282409668 ], [ -71.274307250976562, -17.733194351196289 ], [ -71.274581909179631, -17.733194351196289 ], [ -71.274581909179631, -17.732915878295898 ], [ -71.275138854980412, -17.732915878295898 ], [ -71.275138854980412, -17.732637405395508 ], [ -71.275390625, -17.732637405395508 ], [ -71.275970458984375, -17.732637405395508 ], [ -71.275970458984375, -17.732360839843636 ], [ -71.276115417480355, -17.732360839843636 ], [ -71.276527404785156, -17.732360839843636 ], [ -71.276527404785156, -17.732204437255859 ], [ -71.276527404785156, -17.732084274291992 ], [ -71.276840209960881, -17.732082366943359 ], [ -71.277084350585938, -17.732082366943359 ], [ -71.277084350585938, -17.731805801391545 ], [ -71.277641296386605, -17.731805801391545 ], [ -71.277641296386605, -17.731527328491154 ], [ -71.278236389160156, -17.731527328491154 ], [ -71.278472900390568, -17.731527328491154 ], [ -71.278472900390568, -17.731357574462891 ], [ -71.278472900390568, -17.731250762939453 ], [ -71.278617858886719, -17.731250762939453 ], [ -71.279029846191406, -17.731250762939453 ], [ -71.279029846191406, -17.730972290039062 ], [ -71.279586791992188, -17.730972290039062 ], [ -71.279586791992188, -17.730693817138672 ], [ -71.280136108398438, -17.730693817138672 ], [ -71.280136108398438, -17.730417251586914 ], [ -71.280693054199105, -17.730417251586914 ], [ -71.280693054199105, -17.730138778686523 ], [ -71.28125, -17.730138778686523 ], [ -71.28125, -17.729860305786133 ], [ -71.281806945800724, -17.729860305786133 ], [ -71.281806945800724, -17.729583740234318 ], [ -71.282363891601562, -17.729583740234318 ], [ -71.282363891601562, -17.729305267333928 ], [ -71.282913208007812, -17.729305267333928 ], [ -71.282913208007812, -17.729028701782227 ], [ -71.28375244140625, -17.729028701782227 ], [ -71.28375244140625, -17.728750228881779 ], [ -71.284584045410099, -17.728750228881779 ], [ -71.284584045410099, -17.728471755981388 ], [ -71.286247253417969, -17.728471755981388 ], [ -71.286247253417969, -17.728750228881779 ], [ -71.28680419921875, -17.728750228881779 ], [ -71.28680419921875, -17.728471755981388 ], [ -71.287086486816406, -17.728471755981388 ], [ -71.287086486816406, -17.728195190429688 ], [ -71.287635803222599, -17.728195190429688 ], [ -71.287635803222599, -17.727916717529297 ], [ -71.287918090820256, -17.727916717529297 ], [ -71.287918090820256, -17.727638244628906 ], [ -71.288192749023381, -17.727638244628906 ], [ -71.288192749023381, -17.727361679077148 ], [ -71.288475036621037, -17.727361679077148 ], [ -71.288475036621037, -17.727083206176758 ], [ -71.289024353027344, -17.727083206176758 ], [ -71.289024353027344, -17.726804733276367 ], [ -71.289581298828125, -17.726804733276367 ], [ -71.289581298828125, -17.726528167724553 ], [ -71.290138244628906, -17.726528167724553 ], [ -71.290138244628906, -17.726249694824162 ], [ -71.292083740234375, -17.726249694824162 ], [ -71.292083740234375, -17.725973129272461 ], [ -71.292915344238281, -17.725973129272461 ], [ -71.292915344238281, -17.72569465637207 ], [ -71.293472290038949, -17.72569465637207 ], [ -71.293472290038949, -17.725416183471623 ], [ -71.293197631835938, -17.725416183471623 ], [ -71.293197631835938, -17.724861145019531 ], [ -71.292915344238281, -17.724861145019531 ], [ -71.292915344238281, -17.724306106567269 ], [ -71.293472290038949, -17.724306106567269 ], [ -71.293472290038949, -17.724027633666992 ], [ -71.294303894042912, -17.724027633666992 ], [ -71.294303894042912, -17.723749160766602 ], [ -71.29486083984375, -17.723749160766602 ], [ -71.29486083984375, -17.723472595214787 ], [ -71.295135498046875, -17.723472595214787 ], [ -71.295135498046875, -17.72319221496582 ], [ -71.295692443847656, -17.72319221496582 ], [ -71.295692443847656, -17.722917556762695 ], [ -71.295974731445312, -17.722917556762695 ], [ -71.295974731445312, -17.722639083862305 ], [ -71.296249389648438, -17.722639083862305 ], [ -71.296249389648438, -17.722362518310547 ], [ -71.296806335449105, -17.722362518310547 ], [ -71.296806335449105, -17.722084045410156 ], [ -71.297080993652287, -17.722084045410156 ], [ -71.297080993652287, -17.721805572509766 ], [ -71.297363281249943, -17.721805572509766 ], [ -71.297363281249943, -17.721527099609375 ], [ -71.297637939453068, -17.721527099609375 ], [ -71.297637939453068, -17.72125244140625 ], [ -71.298194885253906, -17.72125244140625 ], [ -71.298194885253906, -17.720970153808594 ], [ -71.298469543457031, -17.720970153808594 ], [ -71.298469543457031, -17.720693588256836 ], [ -71.298751831054688, -17.720693588256836 ], [ -71.298751831054688, -17.720417022705021 ], [ -71.299308776855469, -17.720417022705021 ], [ -71.299308776855469, -17.720138549804631 ], [ -71.299858093261605, -17.720138549804631 ], [ -71.299858093261605, -17.71986007690424 ], [ -71.300415039062443, -17.71986007690424 ], [ -71.300415039062443, -17.719583511352539 ], [ -71.300971984863224, -17.719583511352539 ], [ -71.300971984863224, -17.719305038452148 ], [ -71.301528930664062, -17.719305038452148 ], [ -71.301528930664062, -17.719028472900391 ], [ -71.302360534667969, -17.719028472900391 ], [ -71.302360534667969, -17.71874809265131 ], [ -71.303192138671818, -17.71874809265131 ], [ -71.303192138671818, -17.718471527099609 ], [ -71.303749084472599, -17.718471527099609 ], [ -71.303749084472599, -17.718194961547795 ], [ -71.304306030273381, -17.718194961547795 ], [ -71.304306030273381, -17.717916488647347 ], [ -71.304580688476562, -17.717916488647347 ], [ -71.304580688476562, -17.717636108398438 ], [ -71.304862976074219, -17.717636108398438 ], [ -71.304862976074219, -17.717361450195256 ], [ -71.305137634277344, -17.717361450195256 ], [ -71.305137634277344, -17.717082977294865 ], [ -71.305694580078125, -17.717082977294865 ], [ -71.305694580078125, -17.716806411743164 ], [ -71.30596923828125, -17.716806411743164 ], [ -71.30596923828125, -17.716527938842773 ], [ -71.306526184081974, -17.716527938842773 ], [ -71.306526184081974, -17.716249465942383 ], [ -71.307083129882756, -17.716249465942383 ], [ -71.307083129882756, -17.715972900390625 ], [ -71.307640075683594, -17.715972900390625 ], [ -71.307640075683594, -17.715694427490234 ], [ -71.308197021484375, -17.715694427490234 ], [ -71.308197021484375, -17.71541786193842 ], [ -71.308746337890625, -17.71541786193842 ], [ -71.308746337890625, -17.715139389038029 ], [ -71.309303283691293, -17.715139389038029 ], [ -71.309303283691293, -17.714860916137582 ], [ -71.309585571288949, -17.714860916137582 ], [ -71.309585571288949, -17.714582443237305 ], [ -71.310142517089787, -17.714582443237305 ], [ -71.310142517089787, -17.71430587768549 ], [ -71.310691833496094, -17.71430587768549 ], [ -71.310691833496094, -17.714027404785099 ], [ -71.310798645019474, -17.714027404785099 ], [ -71.311805725097656, -17.714027404785099 ], [ -71.311805725097656, -17.713750839233398 ], [ -71.312080383300781, -17.713750839233398 ], [ -71.312080383300781, -17.713472366333008 ], [ -71.312637329101449, -17.713472366333008 ], [ -71.312637329101449, -17.713195800781136 ], [ -71.312919616699162, -17.713195800781136 ], [ -71.312919616699162, -17.712917327880859 ], [ -71.313194274902287, -17.712917327880859 ], [ -71.313194274902287, -17.712638854980469 ], [ -71.313308715820199, -17.712638854980469 ], [ -71.313468933105412, -17.712638854980469 ], [ -71.313468933105412, -17.712522506713867 ], [ -71.313468933105412, -17.712360382080078 ], [ -71.313751220703068, -17.712360382080078 ], [ -71.313751220703068, -17.712085723876953 ], [ -71.31402587890625, -17.712085723876953 ], [ -71.31402587890625, -17.711805343627873 ], [ -71.314460754394531, -17.711805343627873 ], [ -71.314582824707031, -17.711805343627873 ], [ -71.314582824707031, -17.711526870727425 ], [ -71.314842224121094, -17.711526870727425 ], [ -71.315414428710938, -17.711526870727425 ], [ -71.315414428710938, -17.711250305175724 ], [ -71.315971374511662, -17.711250305175724 ], [ -71.315971374511662, -17.710973739624023 ], [ -71.316528320312443, -17.710973739624023 ], [ -71.316528320312443, -17.710695266723633 ], [ -71.317085266113224, -17.710695266723633 ], [ -71.317085266113224, -17.710416793823242 ], [ -71.317916870117188, -17.710416793823242 ], [ -71.317916870117188, -17.710138320922852 ], [ -71.318473815917969, -17.710138320922852 ], [ -71.318473815917969, -17.709863662719727 ], [ -71.319030761718636, -17.709863662719727 ], [ -71.319030761718636, -17.709581375122013 ], [ -71.319305419921818, -17.709581375122013 ], [ -71.319305419921818, -17.709413528442326 ], [ -71.319305419921818, -17.709304809570312 ], [ -71.319473266601506, -17.709304809570312 ], [ -71.319862365722599, -17.709304809570312 ], [ -71.319862365722599, -17.709028244018498 ], [ -71.320137023925724, -17.709028244018498 ], [ -71.320137023925724, -17.708879470825195 ], [ -71.320137023925724, -17.708751678466797 ], [ -71.320343017578068, -17.708751678466797 ], [ -71.320693969726562, -17.708751678466797 ], [ -71.320693969726562, -17.708469390869141 ], [ -71.321250915527344, -17.708469390869141 ], [ -71.321250915527344, -17.708194732666016 ], [ -71.321525573730469, -17.708194732666016 ], [ -71.321525573730469, -17.707916259765568 ], [ -71.322082519531136, -17.707916259765568 ], [ -71.322082519531136, -17.707641601562443 ], [ -71.322639465331974, -17.707641601562443 ], [ -71.322639465331974, -17.707359313964787 ], [ -71.323196411132756, -17.707359313964787 ], [ -71.323196411132756, -17.707082748413086 ], [ -71.323471069335938, -17.707082748413086 ], [ -71.323471069335938, -17.706806182861214 ], [ -71.323921203613281, -17.706806182861214 ], [ -71.324028015136719, -17.706806182861214 ], [ -71.324028015136719, -17.706527709960938 ], [ -71.324317932128906, -17.706527709960938 ], [ -71.326248168945256, -17.706527709960938 ], [ -71.326248168945256, -17.706249237060547 ], [ -71.326805114746094, -17.706249237060547 ], [ -71.326805114746094, -17.705972671508732 ], [ -71.327079772949219, -17.705972671508732 ], [ -71.327079772949219, -17.705694198608342 ], [ -71.32763671875, -17.705694198608342 ], [ -71.32763671875, -17.705415725707951 ], [ -71.327919006347656, -17.705415725707951 ], [ -71.327919006347656, -17.705137252807504 ], [ -71.328475952148438, -17.705137252807504 ], [ -71.328475952148438, -17.704860687255803 ], [ -71.329025268554631, -17.704860687255803 ], [ -71.329025268554631, -17.704584121704102 ], [ -71.329307556152287, -17.704584121704102 ], [ -71.329307556152287, -17.704305648803711 ], [ -71.329864501953068, -17.704305648803711 ], [ -71.329864501953068, -17.70402717590332 ], [ -71.33013916015625, -17.70402717590332 ], [ -71.33013916015625, -17.703750610351449 ], [ -71.330696105957031, -17.703750610351449 ], [ -71.330696105957031, -17.703472137451172 ], [ -71.332359313964787, -17.703472137451172 ], [ -71.332359313964787, -17.703193664550781 ], [ -71.33319091796875, -17.703193664550781 ], [ -71.33319091796875, -17.702915191650391 ], [ -71.333747863769531, -17.702915191650391 ], [ -71.333747863769531, -17.702638626098576 ], [ -71.334587097167969, -17.702638626098576 ], [ -71.334587097167969, -17.702362060546875 ], [ -71.335136413574162, -17.702360153198185 ], [ -71.335136413574162, -17.702083587646484 ], [ -71.335418701171818, -17.702083587646484 ], [ -71.335418701171818, -17.701805114746094 ], [ -71.335693359374943, -17.701805114746094 ], [ -71.335693359374943, -17.701528549194336 ], [ -71.336250305175781, -17.701528549194336 ], [ -71.336250305175781, -17.701250076293945 ], [ -71.336524963378906, -17.701250076293945 ], [ -71.336524963378906, -17.700971603393555 ], [ -71.336807250976562, -17.700971603393555 ], [ -71.336807250976562, -17.70069694519043 ], [ -71.337638854980469, -17.70069694519043 ], [ -71.337638854980469, -17.700416564941293 ], [ -71.338195800781136, -17.700416564941293 ], [ -71.338195800781136, -17.700138092041016 ], [ -71.339027404785099, -17.700138092041016 ], [ -71.339027404785099, -17.699861526489201 ], [ -71.339584350585938, -17.699861526489201 ], [ -71.339584350585938, -17.69958305358881 ], [ -71.340415954589844, -17.69958305358881 ], [ -71.340415954589844, -17.699306488037109 ], [ -71.340972900390625, -17.69930458068842 ], [ -71.340972900390625, -17.699028015136719 ], [ -71.341529846191349, -17.699028015136719 ], [ -71.341529846191349, -17.698749542236328 ], [ -71.342086791992131, -17.698749542236328 ], [ -71.342086791992131, -17.698474884033146 ], [ -71.342636108398438, -17.698474884033146 ], [ -71.342636108398438, -17.69819450378418 ], [ -71.343193054199219, -17.69819450378418 ], [ -71.343193054199219, -17.697916030883789 ], [ -71.34375, -17.697916030883789 ], [ -71.34375, -17.697639465331974 ], [ -71.345138549804631, -17.697639465331974 ], [ -71.345138549804631, -17.697362899780273 ], [ -71.345413208007756, -17.697362899780273 ], [ -71.345413208007756, -17.697080612182617 ], [ -71.345695495605412, -17.697080612182617 ], [ -71.345695495605412, -17.696805953979435 ], [ -71.345970153808594, -17.696805953979435 ], [ -71.345970153808594, -17.696527481079045 ], [ -71.346527099609375, -17.696527481079045 ], [ -71.346527099609375, -17.69625282287592 ], [ -71.347084045410156, -17.69625282287592 ], [ -71.347084045410156, -17.695970535278263 ], [ -71.347640991210824, -17.695970535278263 ], [ -71.347640991210824, -17.695692062377816 ], [ -71.348197937011662, -17.695692062377816 ], [ -71.348197937011662, -17.695417404174805 ], [ -71.348747253417912, -17.695417404174805 ], [ -71.348747253417912, -17.69514083862299 ], [ -71.34930419921875, -17.69514083862299 ], [ -71.34930419921875, -17.694862365722599 ], [ -71.349586486816406, -17.694862365722599 ], [ -71.349586486816406, -17.694583892822209 ], [ -71.351806640624943, -17.694583892822209 ], [ -71.351806640624943, -17.694305419921818 ], [ -71.352081298828125, -17.694305419921818 ], [ -71.352081298828125, -17.694026947021371 ], [ -71.352638244628906, -17.694026947021371 ], [ -71.352638244628906, -17.693748474121094 ], [ -71.354583740234318, -17.693748474121094 ], [ -71.354583740234318, -17.693471908569279 ], [ -71.355140686035099, -17.693471908569279 ], [ -71.355140686035099, -17.693195343017578 ], [ -71.355697631835938, -17.693195343017578 ], [ -71.355697631835938, -17.692916870117188 ], [ -71.357360839843693, -17.692916870117188 ], [ -71.357360839843693, -17.692638397216797 ], [ -71.360137939453125, -17.692638397216797 ], [ -71.360137939453125, -17.692916870117188 ], [ -71.361808776855469, -17.692916870117188 ], [ -71.361808776855469, -17.693195343017578 ], [ -71.362640380859375, -17.693195343017578 ], [ -71.362640380859375, -17.693471908569279 ], [ -71.363197326660156, -17.693471908569279 ], [ -71.363197326660156, -17.693748474121094 ], [ -71.364028930664006, -17.693748474121094 ], [ -71.364028930664006, -17.694026947021371 ], [ -71.364303588867131, -17.694026947021371 ], [ -71.364303588867131, -17.694583892822209 ], [ -71.364585876464787, -17.694583892822209 ], [ -71.364585876464787, -17.69514083862299 ], [ -71.364860534667969, -17.69514083862299 ], [ -71.364860534667969, -17.695970535278263 ], [ -71.365135192871094, -17.695970535278263 ], [ -71.365135192871094, -17.697080612182617 ], [ -71.36541748046875, -17.697080612182617 ], [ -71.36541748046875, -17.69819450378418 ], [ -71.365135192871094, -17.69819450378418 ], [ -71.365135192871094, -17.698749542236328 ], [ -71.364860534667969, -17.698749542236328 ], [ -71.364860534667969, -17.699306488037109 ], [ -71.364585876464787, -17.699306488037109 ], [ -71.364585876464787, -17.700138092041016 ], [ -71.364860534667969, -17.700138092041016 ], [ -71.364860534667969, -17.70069694519043 ], [ -71.365135192871094, -17.70069694519043 ], [ -71.365135192871094, -17.701528549194336 ], [ -71.364860534667969, -17.701528549194336 ], [ -71.364860534667969, -17.702360153198185 ], [ -71.365135192871094, -17.702362060546875 ], [ -71.365135192871094, -17.702915191650391 ], [ -71.36541748046875, -17.702915191650391 ], [ -71.36541748046875, -17.703193664550781 ], [ -71.365692138671875, -17.703193664550781 ], [ -71.365692138671875, -17.703472137451172 ], [ -71.366249084472656, -17.703472137451172 ], [ -71.366249084472656, -17.703750610351449 ], [ -71.366531372070312, -17.703750610351449 ], [ -71.366531372070312, -17.70402717590332 ], [ -71.366806030273324, -17.70402717590332 ], [ -71.366806030273324, -17.704305648803711 ], [ -71.367080688476506, -17.704305648803711 ], [ -71.367080688476506, -17.704584121704102 ], [ -71.367362976074162, -17.704584121704102 ], [ -71.367362976074162, -17.704860687255803 ], [ -71.367637634277287, -17.704860687255803 ], [ -71.367637634277287, -17.705137252807504 ], [ -71.367919921874943, -17.705137252807504 ], [ -71.367919921874943, -17.705415725707951 ], [ -71.368194580078125, -17.705415725707951 ], [ -71.368194580078125, -17.705694198608342 ], [ -71.36846923828125, -17.705694198608342 ], [ -71.36846923828125, -17.705972671508732 ], [ -71.368751525878906, -17.705972671508732 ], [ -71.368751525878906, -17.706249237060547 ], [ -71.369026184082031, -17.706249237060547 ], [ -71.369026184082031, -17.706527709960938 ], [ -71.369308471679688, -17.706527709960938 ], [ -71.369308471679688, -17.706806182861214 ], [ -71.370140075683537, -17.706806182861214 ], [ -71.370140075683537, -17.707082748413086 ], [ -71.371803283691406, -17.707082748413086 ], [ -71.371803283691406, -17.707359313964787 ], [ -71.372085571289062, -17.707359313964787 ], [ -71.372085571289062, -17.707641601562443 ], [ -71.372360229492188, -17.707641601562443 ], [ -71.372360229492188, -17.707916259765568 ], [ -71.372642517089844, -17.707916259765568 ], [ -71.372642517089844, -17.708194732666016 ], [ -71.372917175292969, -17.708194732666016 ], [ -71.372917175292969, -17.708469390869141 ], [ -71.373748779296818, -17.708469390869141 ], [ -71.373748779296818, -17.708194732666016 ], [ -71.374580383300781, -17.708194732666016 ], [ -71.374580383300781, -17.707916259765568 ], [ -71.375419616699219, -17.707916259765568 ], [ -71.375419616699219, -17.707641601562443 ], [ -71.375694274902344, -17.707641601562443 ], [ -71.375694274902344, -17.707359313964787 ], [ -71.375968933105469, -17.707359313964787 ], [ -71.375968933105469, -17.707082748413086 ], [ -71.376251220703011, -17.707082748413086 ], [ -71.376251220703011, -17.706806182861214 ], [ -71.376525878906193, -17.706806182861214 ], [ -71.376525878906193, -17.706527709960938 ], [ -71.377082824706974, -17.706527709960938 ], [ -71.377082824706974, -17.706249237060547 ], [ -71.377357482910099, -17.706249237060547 ], [ -71.377357482910099, -17.705972671508732 ], [ -71.378196716308594, -17.705972671508732 ], [ -71.378196716308594, -17.706527709960938 ], [ -71.378471374511719, -17.706527709960938 ], [ -71.378471374511719, -17.707082748413086 ], [ -71.378753662109375, -17.707082748413086 ], [ -71.378753662109375, -17.707641601562443 ], [ -71.3790283203125, -17.707641601562443 ], [ -71.3790283203125, -17.708194732666016 ], [ -71.379302978515511, -17.708194732666016 ], [ -71.379302978515511, -17.710138320922852 ], [ -71.379585266113168, -17.710138320922852 ], [ -71.379585266113168, -17.709863662719727 ], [ -71.379859924316349, -17.709863662719727 ], [ -71.379859924316349, -17.709581375122013 ], [ -71.380416870117131, -17.709581375122013 ], [ -71.380416870117131, -17.709304809570312 ], [ -71.380691528320312, -17.709304809570312 ], [ -71.380691528320312, -17.709028244018498 ], [ -71.38153076171875, -17.709028244018498 ], [ -71.38153076171875, -17.708751678466797 ], [ -71.382080078125, -17.708751678466797 ], [ -71.382080078125, -17.707916259765568 ], [ -71.382362365722656, -17.707916259765568 ], [ -71.382362365722656, -17.706806182861214 ], [ -71.382080078125, -17.706806182861214 ], [ -71.382080078125, -17.706249237060547 ], [ -71.381805419921875, -17.706249237060547 ], [ -71.381805419921875, -17.705936431884709 ], [ -71.381805419921875, -17.705415725707951 ], [ -71.382080078125, -17.705415725707951 ], [ -71.382080078125, -17.701805114746094 ], [ -71.381805419921875, -17.701805114746094 ], [ -71.381805419921875, -17.701528549194336 ], [ -71.381248474121094, -17.701528549194336 ], [ -71.381248474121094, -17.701250076293945 ], [ -71.380973815917969, -17.701250076293945 ], [ -71.380973815917969, -17.700971603393555 ], [ -71.380691528320312, -17.700971603393555 ], [ -71.380691528320312, -17.70069694519043 ], [ -71.380416870117131, -17.70069694519043 ], [ -71.380416870117131, -17.700416564941293 ], [ -71.380142211914006, -17.700416564941293 ], [ -71.380142211914006, -17.700138092041016 ], [ -71.379859924316349, -17.700138092041016 ], [ -71.379859924316349, -17.699861526489201 ], [ -71.379585266113168, -17.699861526489201 ], [ -71.379585266113168, -17.699306488037109 ], [ -71.379302978515511, -17.699306488037109 ], [ -71.379302978515511, -17.699028015136719 ], [ -71.378753662109375, -17.699028015136719 ], [ -71.378753662109375, -17.698749542236328 ], [ -71.378196716308594, -17.698749542236328 ], [ -71.378196716308594, -17.698474884033146 ], [ -71.377914428710938, -17.698474884033146 ], [ -71.377914428710938, -17.69819450378418 ], [ -71.377464294433537, -17.69819450378418 ], [ -71.377357482910099, -17.69819450378418 ], [ -71.377357482910099, -17.697916030883789 ], [ -71.376808166503849, -17.697916030883789 ], [ -71.376808166503849, -17.697639465331974 ], [ -71.376525878906193, -17.697639465331974 ], [ -71.376525878906193, -17.697362899780273 ], [ -71.376251220703011, -17.697362899780273 ], [ -71.376251220703011, -17.697080612182617 ], [ -71.375968933105469, -17.697080612182617 ], [ -71.375968933105469, -17.696805953979435 ], [ -71.375694274902344, -17.696805953979435 ], [ -71.375694274902344, -17.696527481079045 ], [ -71.375419616699219, -17.696527481079045 ], [ -71.375419616699219, -17.695970535278263 ], [ -71.375137329101562, -17.695970535278263 ], [ -71.375137329101562, -17.695417404174805 ], [ -71.374862670898438, -17.695417404174805 ], [ -71.374862670898438, -17.694862365722599 ], [ -71.374580383300781, -17.694862365722599 ], [ -71.374580383300781, -17.694583892822209 ], [ -71.374305725097599, -17.694583892822209 ], [ -71.374305725097599, -17.694305419921818 ], [ -71.374031066894474, -17.694305419921818 ], [ -71.374031066894474, -17.694026947021371 ], [ -71.373748779296818, -17.694026947021371 ], [ -71.373748779296818, -17.693748474121094 ], [ -71.373458862304631, -17.693748474121094 ], [ -71.373191833496037, -17.693748474121094 ], [ -71.373191833496037, -17.693471908569279 ], [ -71.372917175292969, -17.693471908569279 ], [ -71.372917175292969, -17.693195343017578 ], [ -71.372695922851506, -17.693195343017578 ], [ -71.372360229492188, -17.693195343017578 ], [ -71.372360229492188, -17.69297981262207 ], [ -71.372360229492188, -17.692361831665039 ], [ -71.372085571289062, -17.692361831665039 ], [ -71.372085571289062, -17.691106796264592 ], [ -71.372085571289062, -17.690971374511605 ], [ -71.372360229492188, -17.690971374511605 ], [ -71.372360229492188, -17.690416336059513 ], [ -71.372642517089844, -17.690416336059513 ], [ -71.372642517089844, -17.689582824707031 ], [ -71.372917175292969, -17.689582824707031 ], [ -71.372917175292969, -17.689027786254883 ], [ -71.373191833496037, -17.689027786254883 ], [ -71.373191833496037, -17.688749313354492 ], [ -71.373474121093693, -17.688749313354492 ], [ -71.373474121093693, -17.688472747802678 ], [ -71.373748779296818, -17.688472747802678 ], [ -71.373748779296818, -17.688194274902287 ], [ -71.374031066894474, -17.688194274902287 ], [ -71.374031066894474, -17.687915802001896 ], [ -71.374305725097599, -17.687915802001896 ], [ -71.374305725097599, -17.686805725097656 ], [ -71.374031066894474, -17.686805725097656 ], [ -71.374031066894474, -17.685138702392521 ], [ -71.373748779296818, -17.685138702392521 ], [ -71.373748779296818, -17.683616638183537 ], [ -71.373748779296818, -17.683473587036076 ], [ -71.373474121093693, -17.683473587036076 ], [ -71.373474121093693, -17.682634353637695 ], [ -71.373474121093693, -17.681804656982365 ], [ -71.373191833496037, -17.681804656982365 ], [ -71.373191833496037, -17.680694580078125 ], [ -71.372917175292969, -17.680694580078125 ], [ -71.372917175292969, -17.680416107177734 ], [ -71.372360229492188, -17.680416107177734 ], [ -71.372360229492188, -17.680141448974609 ], [ -71.372085571289062, -17.680141448974609 ], [ -71.372085571289062, -17.679859161376953 ], [ -71.371803283691406, -17.679859161376953 ], [ -71.371803283691406, -17.679582595825195 ], [ -71.371147155761719, -17.679582595825195 ], [ -71.370414733886662, -17.679582595825195 ], [ -71.370414733886662, -17.679275512695312 ], [ -71.370414733886662, -17.67902755737299 ], [ -71.370140075683537, -17.67902755737299 ], [ -71.370140075683537, -17.678472518920898 ], [ -71.369857788085824, -17.678472518920898 ], [ -71.369857788085824, -17.67791748046875 ], [ -71.369583129882812, -17.67791748046875 ], [ -71.369583129882812, -17.676528930664062 ], [ -71.369857788085824, -17.676528930664062 ], [ -71.369857788085824, -17.675416946411133 ], [ -71.369583129882812, -17.675416946411133 ], [ -71.369583129882812, -17.675138473510742 ], [ -71.369308471679688, -17.675138473510742 ], [ -71.369308471679688, -17.674861907958984 ], [ -71.369026184082031, -17.674861907958984 ], [ -71.369026184082031, -17.674583435058594 ], [ -71.368751525878906, -17.674583435058594 ], [ -71.368751525878906, -17.674306869506779 ], [ -71.36846923828125, -17.674306869506779 ], [ -71.36846923828125, -17.673749923705998 ], [ -71.368194580078125, -17.673749923705998 ], [ -71.368194580078125, -17.673194885253906 ], [ -71.367919921874943, -17.673194885253906 ], [ -71.367919921874943, -17.672916412353459 ], [ -71.367637634277287, -17.672916412353459 ], [ -71.367637634277287, -17.672639846801758 ], [ -71.367362976074162, -17.672637939453068 ], [ -71.367362976074162, -17.672084808349553 ], [ -71.367080688476506, -17.672084808349553 ], [ -71.367080688476506, -17.671806335449105 ], [ -71.366806030273324, -17.671806335449105 ], [ -71.366806030273324, -17.671527862548828 ], [ -71.366531372070312, -17.671527862548828 ], [ -71.366531372070312, -17.671249389648438 ], [ -71.365974426269531, -17.671249389648438 ], [ -71.365974426269531, -17.670974731445312 ], [ -71.365692138671875, -17.670974731445312 ], [ -71.365692138671875, -17.670694351196232 ], [ -71.364585876464787, -17.670694351196232 ], [ -71.364585876464787, -17.670415878295842 ], [ -71.363471984863168, -17.670415878295842 ], [ -71.363471984863168, -17.670139312744141 ], [ -71.3629150390625, -17.670139312744141 ], [ -71.3629150390625, -17.669305801391602 ], [ -71.362640380859375, -17.669305801391602 ], [ -71.362640380859375, -17.667640686035156 ], [ -71.362358093261719, -17.667640686035156 ], [ -71.362358093261719, -17.666248321533146 ], [ -71.3629150390625, -17.666248321533146 ], [ -71.3629150390625, -17.665971755981445 ], [ -71.362640380859375, -17.665971755981445 ], [ -71.362640380859375, -17.665695190429631 ], [ -71.362358093261719, -17.665695190429631 ], [ -71.362358093261719, -17.665138244628906 ], [ -71.362083435058594, -17.665138244628906 ], [ -71.362083435058594, -17.664861679077092 ], [ -71.361808776855469, -17.664861679077092 ], [ -71.361808776855469, -17.664583206176701 ], [ -71.361526489257756, -17.664583206176701 ], [ -71.361526489257756, -17.66430473327631 ], [ -71.361251831054631, -17.66430473327631 ], [ -71.361251831054631, -17.66402626037592 ], [ -71.360694885253849, -17.66402626037592 ], [ -71.360694885253849, -17.663749694824219 ], [ -71.360420227050668, -17.663749694824219 ], [ -71.360420227050668, -17.663473129272461 ], [ -71.360137939453125, -17.663473129272461 ], [ -71.360137939453125, -17.66319465637207 ], [ -71.35986328125, -17.66319465637207 ], [ -71.35986328125, -17.662639617919865 ], [ -71.359580993652344, -17.662639617919865 ], [ -71.359580993652344, -17.661249160766545 ], [ -71.359451293945256, -17.661249160766545 ], [ -71.359306335449219, -17.661249160766545 ], [ -71.359306335449219, -17.660139083862305 ], [ -71.359024047851562, -17.660139083862305 ], [ -71.359024047851562, -17.659860610961914 ], [ -71.358749389648438, -17.659860610961914 ], [ -71.358749389648438, -17.659585952758789 ], [ -71.358474731445256, -17.659585952758789 ], [ -71.358474731445256, -17.659305572509709 ], [ -71.358192443847599, -17.659305572509709 ], [ -71.358192443847599, -17.65875053405756 ], [ -71.357917785644474, -17.65875053405756 ], [ -71.357917785644474, -17.658517837524414 ], [ -71.357917785644474, -17.657917022705078 ], [ -71.357635498046818, -17.657917022705078 ], [ -71.357635498046818, -17.657638549804688 ], [ -71.357086181640625, -17.657638549804688 ], [ -71.357086181640625, -17.657363891601562 ], [ -71.356803894042969, -17.657363891601562 ], [ -71.356803894042969, -17.657083511352539 ], [ -71.356246948242188, -17.657083511352539 ], [ -71.356246948242188, -17.656805038452148 ], [ -71.355697631835938, -17.656805038452148 ], [ -71.355697631835938, -17.656528472900334 ], [ -71.35555267333973, -17.656528472900334 ], [ -71.355415344238281, -17.656528472900334 ], [ -71.355415344238281, -17.656251907348633 ], [ -71.354858398437443, -17.656251907348633 ], [ -71.354858398437443, -17.655973434448242 ], [ -71.354583740234318, -17.655973434448242 ], [ -71.354583740234318, -17.655694961547852 ], [ -71.354309082031193, -17.655694961547852 ], [ -71.354309082031193, -17.655416488647404 ], [ -71.35402679443348, -17.655416488647404 ], [ -71.35402679443348, -17.655044555664062 ], [ -71.35402679443348, -17.654859542846623 ], [ -71.353752136230469, -17.654859542846623 ], [ -71.353752136230469, -17.654029846191349 ], [ -71.353469848632812, -17.654029846191349 ], [ -71.353469848632812, -17.653472900390568 ], [ -71.353195190429688, -17.653472900390568 ], [ -71.353195190429688, -17.652915954589787 ], [ -71.352912902832031, -17.652915954589787 ], [ -71.352912902832031, -17.652360916137638 ], [ -71.352363586425781, -17.652360916137638 ], [ -71.352363586425781, -17.652082443237248 ], [ -71.351524353027287, -17.652082443237248 ], [ -71.351524353027287, -17.651805877685547 ], [ -71.35097503662098, -17.651805877685547 ], [ -71.35097503662098, -17.651250839233285 ], [ -71.350692749023324, -17.651250839233285 ], [ -71.350692749023324, -17.650999069213867 ], [ -71.350692749023324, -17.650693893432617 ], [ -71.350418090820312, -17.650693893432617 ], [ -71.350418090820312, -17.649860382080021 ], [ -71.350135803222656, -17.649860382080021 ], [ -71.350135803222656, -17.64930534362793 ], [ -71.349861145019531, -17.64930534362793 ], [ -71.349861145019531, -17.648471832275391 ], [ -71.349586486816406, -17.648471832275391 ], [ -71.349586486816406, -17.647794723510685 ], [ -71.349586486816406, -17.647638320922852 ], [ -71.34930419921875, -17.647638320922852 ], [ -71.34930419921875, -17.647062301635742 ], [ -71.34930419921875, -17.646806716918945 ], [ -71.349029541015625, -17.646806716918945 ], [ -71.349029541015625, -17.646249771118164 ], [ -71.348747253417912, -17.646249771118164 ], [ -71.348747253417912, -17.645694732666016 ], [ -71.348472595214787, -17.645694732666016 ], [ -71.348472595214787, -17.645360946655273 ], [ -71.348472595214787, -17.64513969421381 ], [ -71.348197937011662, -17.64513969421381 ], [ -71.348197937011662, -17.644584655761719 ], [ -71.347915649414006, -17.644584655761719 ], [ -71.347915649414006, -17.644027709960881 ], [ -71.347640991210824, -17.644027709960881 ], [ -71.347640991210824, -17.643472671508789 ], [ -71.347358703613281, -17.643472671508789 ], [ -71.347358703613281, -17.643194198608398 ], [ -71.3468017578125, -17.643194198608398 ], [ -71.3468017578125, -17.642917633056641 ], [ -71.34625244140625, -17.642915725708008 ], [ -71.34625244140625, -17.64263916015625 ], [ -71.345970153808594, -17.64263916015625 ], [ -71.345970153808594, -17.642362594604435 ], [ -71.345413208007756, -17.642362594604435 ], [ -71.345413208007756, -17.642084121704045 ], [ -71.344581604003849, -17.642084121704045 ], [ -71.344581604003849, -17.641805648803654 ], [ -71.344322204589844, -17.641805648803654 ], [ -71.344024658203125, -17.641805648803654 ], [ -71.344024658203125, -17.640922546386719 ], [ -71.344024658203125, -17.640138626098633 ], [ -71.34375, -17.640138626098633 ], [ -71.34375, -17.638471603393441 ], [ -71.343475341796875, -17.638471603393441 ], [ -71.343475341796875, -17.638195037841797 ], [ -71.343193054199219, -17.638195037841797 ], [ -71.343193054199219, -17.637916564941349 ], [ -71.342918395996094, -17.637916564941349 ], [ -71.342918395996094, -17.637636184692383 ], [ -71.342636108398438, -17.637636184692383 ], [ -71.342636108398438, -17.637361526489258 ], [ -71.342361450195256, -17.637361526489258 ], [ -71.342361450195256, -17.637083053588867 ], [ -71.342086791992131, -17.637083053588867 ], [ -71.342086791992131, -17.636806488036996 ], [ -71.342361450195256, -17.636804580688477 ], [ -71.342361450195256, -17.636526107788086 ], [ -71.342636108398438, -17.636526107788086 ], [ -71.342636108398438, -17.636249542236328 ], [ -71.342918395996094, -17.636249542236328 ], [ -71.342918395996094, -17.635972976684513 ], [ -71.343193054199219, -17.635972976684513 ], [ -71.343193054199219, -17.635417938232422 ], [ -71.343475341796875, -17.635417938232422 ], [ -71.343475341796875, -17.635139465332031 ], [ -71.34375, -17.635139465332031 ], [ -71.34375, -17.634860992431584 ], [ -71.344024658203125, -17.634860992431584 ], [ -71.344024658203125, -17.634304046630803 ], [ -71.344306945800781, -17.634304046630803 ], [ -71.344306945800781, -17.633472442626953 ], [ -71.344581604003849, -17.633472442626953 ], [ -71.344581604003849, -17.632917404174748 ], [ -71.344306945800781, -17.632917404174748 ], [ -71.344306945800781, -17.632360458373967 ], [ -71.344024658203125, -17.632360458373967 ], [ -71.344024658203125, -17.631805419921875 ], [ -71.344306945800781, -17.631805419921875 ], [ -71.344306945800781, -17.631250381469727 ], [ -71.344581604003849, -17.631250381469727 ], [ -71.344581604003849, -17.630416870117074 ], [ -71.344863891601506, -17.630416870117074 ], [ -71.344863891601506, -17.629304885864201 ], [ -71.344581604003849, -17.629304885864201 ], [ -71.344581604003849, -17.628469467163086 ], [ -71.345413208007756, -17.628469467163086 ], [ -71.345413208007756, -17.628194808959961 ], [ -71.34625244140625, -17.628194808959961 ], [ -71.34625244140625, -17.62791633605957 ], [ -71.347084045410156, -17.62791633605957 ], [ -71.347084045410156, -17.627641677856445 ], [ -71.347358703613281, -17.627641677856445 ], [ -71.347358703613281, -17.627082824707031 ], [ -71.347640991210824, -17.627082824707031 ], [ -71.347640991210824, -17.626527786254826 ], [ -71.347915649414006, -17.626527786254826 ], [ -71.347915649414006, -17.625415802001953 ], [ -71.347640991210824, -17.625415802001953 ], [ -71.347640991210824, -17.624305725097599 ], [ -71.344581604003849, -17.624305725097599 ], [ -71.344581604003849, -17.624027252197152 ], [ -71.344306945800781, -17.624027252197152 ], [ -71.344306945800781, -17.62319374084467 ], [ -71.344024658203125, -17.62319374084467 ], [ -71.344024658203125, -17.622915267944279 ], [ -71.343475341796875, -17.622915267944279 ], [ -71.343475341796875, -17.622638702392578 ], [ -71.343193054199219, -17.622638702392578 ], [ -71.343193054199219, -17.622360229492188 ], [ -71.343475341796875, -17.622360229492188 ], [ -71.343475341796875, -17.621805191040039 ], [ -71.34375, -17.621805191040039 ], [ -71.34375, -17.621290206909123 ], [ -71.344024658203125, -17.621250152587834 ], [ -71.344024658203125, -17.620695114135742 ], [ -71.344306945800781, -17.620695114135742 ], [ -71.344306945800781, -17.620138168334904 ], [ -71.344581604003849, -17.620138168334904 ], [ -71.344581604003849, -17.619304656982422 ], [ -71.344863891601506, -17.619304656982422 ], [ -71.344863891601506, -17.618473052978459 ], [ -71.345138549804631, -17.618473052978459 ], [ -71.345138549804631, -17.617639541625977 ], [ -71.345413208007756, -17.617639541625977 ], [ -71.345413208007756, -17.616249084472656 ], [ -71.345695495605412, -17.616249084472656 ], [ -71.345695495605412, -17.61430549621582 ], [ -71.345970153808594, -17.61430549621582 ], [ -71.345970153808594, -17.613193511962891 ], [ -71.34625244140625, -17.613193511962891 ], [ -71.34625244140625, -17.611804962158146 ], [ -71.346527099609375, -17.611804962158146 ], [ -71.346527099609375, -17.610971450805607 ], [ -71.3468017578125, -17.610971450805607 ], [ -71.3468017578125, -17.610694885253906 ], [ -71.347084045410156, -17.610694885253906 ], [ -71.347084045410156, -17.610416412353516 ], [ -71.347358703613281, -17.610416412353516 ], [ -71.347358703613281, -17.610137939453125 ], [ -71.347640991210824, -17.610137939453125 ], [ -71.347640991210824, -17.609861373901254 ], [ -71.347915649414006, -17.609861373901254 ], [ -71.347915649414006, -17.609582901000977 ], [ -71.348197937011662, -17.609582901000977 ], [ -71.348197937011662, -17.609306335449162 ], [ -71.348472595214787, -17.609306335449162 ], [ -71.348472595214787, -17.609027862548771 ], [ -71.348747253417912, -17.609027862548771 ], [ -71.348747253417912, -17.60847282409668 ], [ -71.349029541015625, -17.60847282409668 ], [ -71.349029541015625, -17.608194351196289 ], [ -71.34930419921875, -17.608194351196289 ], [ -71.34930419921875, -17.607639312744141 ], [ -71.349586486816406, -17.607639312744141 ], [ -71.349586486816406, -17.606527328491097 ], [ -71.349861145019531, -17.606527328491097 ], [ -71.349861145019531, -17.605695724487305 ], [ -71.350135803222656, -17.605695724487305 ], [ -71.350135803222656, -17.605138778686523 ], [ -71.350418090820312, -17.605138778686523 ], [ -71.350418090820312, -17.604583740234375 ], [ -71.350692749023324, -17.604583740234375 ], [ -71.350692749023324, -17.60402870178217 ], [ -71.35097503662098, -17.60402870178217 ], [ -71.35097503662098, -17.603473663330078 ], [ -71.351249694824162, -17.603473663330078 ], [ -71.351249694824162, -17.60291671752924 ], [ -71.351524353027287, -17.60291671752924 ], [ -71.351524353027287, -17.602638244628849 ], [ -71.352363586425781, -17.602638244628849 ], [ -71.352363586425781, -17.602363586425724 ], [ -71.352638244628906, -17.602363586425724 ], [ -71.352638244628906, -17.602081298828068 ], [ -71.352363586425781, -17.602081298828068 ], [ -71.352363586425781, -17.601804733276367 ], [ -71.352638244628906, -17.601804733276367 ], [ -71.352638244628906, -17.600973129272404 ], [ -71.352912902832031, -17.600973129272404 ], [ -71.352912902832031, -17.600694656372013 ], [ -71.353195190429688, -17.600694656372013 ], [ -71.353195190429688, -17.599859237670898 ], [ -71.353469848632812, -17.599859237670898 ], [ -71.353469848632812, -17.599582672119084 ], [ -71.353752136230469, -17.599582672119084 ], [ -71.353752136230469, -17.599027633666992 ], [ -71.35402679443348, -17.599027633666992 ], [ -71.35402679443348, -17.598747253417912 ], [ -71.354309082031193, -17.598747253417912 ], [ -71.354309082031193, -17.598472595214844 ], [ -71.354583740234318, -17.598472595214844 ], [ -71.354583740234318, -17.597917556762638 ], [ -71.354858398437443, -17.597917556762638 ], [ -71.354858398437443, -17.597515106201058 ], [ -71.354858398437443, -17.597360610961857 ], [ -71.355140686035099, -17.597360610961857 ], [ -71.355140686035099, -17.597084045410156 ], [ -71.355415344238281, -17.597084045410156 ], [ -71.355415344238281, -17.596527099609318 ], [ -71.355140686035099, -17.596527099609318 ], [ -71.355140686035099, -17.595317840576058 ], [ -71.355140686035099, -17.594861984252873 ], [ -71.355415344238281, -17.594861984252873 ], [ -71.355415344238281, -17.594743728637695 ], [ -71.355415344238281, -17.594028472900391 ], [ -71.355697631835938, -17.594028472900391 ], [ -71.355697631835938, -17.593471527099553 ], [ -71.355972290039062, -17.593471527099553 ], [ -71.355972290039062, -17.593193054199162 ], [ -71.356246948242188, -17.593193054199162 ], [ -71.356246948242188, -17.592916488647461 ], [ -71.356529235839844, -17.592916488647461 ], [ -71.356529235839844, -17.592361450195199 ], [ -71.356803894042969, -17.592361450195199 ], [ -71.356803894042969, -17.592084884643555 ], [ -71.357086181640625, -17.592084884643555 ], [ -71.357086181640625, -17.591806411743107 ], [ -71.357360839843693, -17.591806411743107 ], [ -71.357360839843693, -17.591249465942326 ], [ -71.357635498046818, -17.591249465942326 ], [ -71.357635498046818, -17.590974807739201 ], [ -71.357917785644474, -17.590974807739201 ], [ -71.357917785644474, -17.590694427490234 ], [ -71.358047485351562, -17.590694427490234 ], [ -71.358192443847599, -17.590694427490234 ], [ -71.358192443847599, -17.59057426452631 ], [ -71.358192443847599, -17.590139389038086 ], [ -71.358474731445256, -17.590139389038086 ], [ -71.358474731445256, -17.589862823486271 ], [ -71.358749389648438, -17.589862823486271 ], [ -71.358749389648438, -17.58930587768549 ], [ -71.359024047851562, -17.58930587768549 ], [ -71.359024047851562, -17.58913612365717 ], [ -71.359024047851562, -17.588752746582031 ], [ -71.359306335449219, -17.588752746582031 ], [ -71.359306335449219, -17.58819389343256 ], [ -71.359024047851562, -17.58819389343256 ], [ -71.359024047851562, -17.587917327880859 ], [ -71.358390808105412, -17.587917327880859 ], [ -71.358192443847599, -17.587917327880859 ], [ -71.358192443847599, -17.587640762328988 ], [ -71.357917785644474, -17.587640762328988 ], [ -71.357917785644474, -17.587358474731332 ], [ -71.357635498046818, -17.587358474731332 ], [ -71.357635498046818, -17.586248397827148 ], [ -71.357360839843693, -17.586248397827148 ], [ -71.357360839843693, -17.582916259765568 ], [ -71.357635498046818, -17.582916259765568 ], [ -71.357635498046818, -17.582809448242131 ], [ -71.357635498046818, -17.58236122131342 ], [ -71.357917785644474, -17.58236122131342 ], [ -71.357917785644474, -17.582082748413029 ], [ -71.358360290527344, -17.582082748413029 ], [ -71.358474731445256, -17.582082748413029 ], [ -71.358474731445256, -17.581968307495117 ], [ -71.358474731445256, -17.581806182861328 ], [ -71.358634948730469, -17.581806182861328 ], [ -71.359306335449219, -17.581806182861328 ], [ -71.359306335449219, -17.581527709960938 ], [ -71.359580993652344, -17.581527709960938 ], [ -71.359580993652344, -17.580417633056584 ], [ -71.359306335449219, -17.580415725708008 ], [ -71.359306335449219, -17.580139160156193 ], [ -71.358749389648438, -17.580139160156193 ], [ -71.358749389648438, -17.579305648803711 ], [ -71.358474731445256, -17.579305648803711 ], [ -71.358474731445256, -17.579027175903263 ], [ -71.358352661132812, -17.579027175903263 ], [ -71.357917785644474, -17.579027175903263 ], [ -71.357917785644474, -17.577638626098633 ], [ -71.358192443847599, -17.577638626098633 ], [ -71.358192443847599, -17.575138092041016 ], [ -71.358474731445256, -17.575138092041016 ], [ -71.358474731445256, -17.57319450378418 ], [ -71.358192443847599, -17.57319450378418 ], [ -71.358192443847599, -17.569305419921875 ], [ -71.358474731445256, -17.569305419921875 ], [ -71.358474731445256, -17.569131851196232 ], [ -71.358474731445256, -17.567083358764648 ], [ -71.358749389648438, -17.567083358764648 ], [ -71.358749389648438, -17.565694808959904 ], [ -71.359024047851562, -17.565694808959904 ], [ -71.359024047851562, -17.565139770507812 ], [ -71.359306335449219, -17.565139770507812 ], [ -71.359306335449219, -17.564584732055664 ], [ -71.359580993652344, -17.564584732055664 ], [ -71.359580993652344, -17.564027786254883 ], [ -71.35986328125, -17.564027786254883 ], [ -71.35986328125, -17.563472747802734 ], [ -71.360000610351506, -17.563472747802734 ], [ -71.360137939453125, -17.563472747802734 ], [ -71.360137939453125, -17.563194274902344 ], [ -71.360420227050668, -17.563194274902344 ], [ -71.360420227050668, -17.562639236450138 ], [ -71.360694885253849, -17.562639236450138 ], [ -71.360694885253849, -17.562084197998047 ], [ -71.360969543456974, -17.562084197998047 ], [ -71.360969543456974, -17.561805725097656 ], [ -71.361251831054631, -17.561805725097656 ], [ -71.361251831054631, -17.561252593994084 ], [ -71.361526489257756, -17.561252593994084 ], [ -71.361526489257756, -17.56098747253418 ], [ -71.361526489257756, -17.560693740844727 ], [ -71.361808776855469, -17.560693740844727 ], [ -71.361808776855469, -17.560394287109318 ], [ -71.361808776855469, -17.560140609741154 ], [ -71.362083435058594, -17.560140609741154 ], [ -71.362083435058594, -17.559305191039982 ], [ -71.362358093261719, -17.559305191039982 ], [ -71.362358093261719, -17.558195114135742 ], [ -71.362640380859375, -17.558195114135742 ], [ -71.362640380859375, -17.557916641235352 ], [ -71.3629150390625, -17.557916641235352 ], [ -71.3629150390625, -17.557361602783089 ], [ -71.363197326660156, -17.557361602783089 ], [ -71.363197326660156, -17.557083129882812 ], [ -71.3629150390625, -17.557083129882812 ], [ -71.3629150390625, -17.556526184082031 ], [ -71.363197326660156, -17.556526184082031 ], [ -71.363197326660156, -17.555973052978516 ], [ -71.363471984863168, -17.555973052978516 ], [ -71.363471984863168, -17.555416107177734 ], [ -71.363746643066349, -17.555416107177734 ], [ -71.363746643066349, -17.554582595825195 ], [ -71.363471984863168, -17.554582595825195 ], [ -71.363471984863168, -17.554027557372933 ], [ -71.363197326660156, -17.554027557372933 ], [ -71.363197326660156, -17.553195953369141 ], [ -71.363471984863168, -17.553195953369141 ], [ -71.363471984863168, -17.552085876464787 ], [ -71.363746643066349, -17.552085876464787 ], [ -71.363746643066349, -17.550138473510685 ], [ -71.364028930664006, -17.550138473510685 ], [ -71.364028930664006, -17.548469543456974 ], [ -71.364303588867131, -17.548469543456974 ], [ -71.364303588867131, -17.547916412353459 ], [ -71.364585876464787, -17.547916412353459 ], [ -71.364585876464787, -17.547637939453011 ], [ -71.365531921386662, -17.547637939453011 ], [ -71.365692138671875, -17.547637939453011 ], [ -71.365692138671875, -17.547195434570312 ], [ -71.365692138671875, -17.546806335449219 ], [ -71.365974426269531, -17.546806335449219 ], [ -71.365974426269531, -17.546186447143555 ], [ -71.365974426269531, -17.545694351196289 ], [ -71.366249084472656, -17.545694351196289 ], [ -71.366249084472656, -17.544651031494084 ], [ -71.366249084472656, -17.544305801391602 ], [ -71.366531372070312, -17.544305801391602 ], [ -71.366531372070312, -17.543472290039062 ], [ -71.364860534667969, -17.543472290039062 ], [ -71.364860534667969, -17.543750762939453 ], [ -71.364028930664006, -17.543750762939453 ], [ -71.364028930664006, -17.543472290039062 ], [ -71.363746643066349, -17.543472290039062 ], [ -71.363746643066349, -17.543193817138672 ], [ -71.363471984863168, -17.543193817138672 ], [ -71.363471984863168, -17.5429172515868 ], [ -71.363311767578125, -17.5429172515868 ], [ -71.363197326660156, -17.5429172515868 ], [ -71.363197326660156, -17.542814254760685 ], [ -71.363197326660156, -17.542638778686523 ], [ -71.3629150390625, -17.542638778686523 ], [ -71.3629150390625, -17.542360305786133 ], [ -71.362640380859375, -17.542360305786133 ], [ -71.362640380859375, -17.541528701782227 ], [ -71.362358093261719, -17.541528701782227 ], [ -71.362358093261719, -17.540695190429688 ], [ -71.362083435058594, -17.540695190429688 ], [ -71.362083435058594, -17.540416717529297 ], [ -71.361808776855469, -17.540416717529297 ], [ -71.361808776855469, -17.539583206176758 ], [ -71.361526489257756, -17.539583206176758 ], [ -71.361526489257756, -17.538473129272461 ], [ -71.361808776855469, -17.538473129272461 ], [ -71.361808776855469, -17.537361145019531 ], [ -71.362083435058594, -17.537361145019531 ], [ -71.362083435058594, -17.536806106567326 ], [ -71.362358093261719, -17.536806106567326 ], [ -71.362358093261719, -17.536527633666879 ], [ -71.362640380859375, -17.536527633666879 ], [ -71.362640380859375, -17.535972595214787 ], [ -71.3629150390625, -17.535972595214787 ], [ -71.3629150390625, -17.535139083862305 ], [ -71.363197326660156, -17.535139083862305 ], [ -71.363197326660156, -17.533470153808594 ], [ -71.363471984863168, -17.533470153808594 ], [ -71.363471984863168, -17.532083511352539 ], [ -71.363746643066349, -17.532083511352539 ], [ -71.363746643066349, -17.53124809265131 ], [ -71.364028930664006, -17.53124809265131 ], [ -71.364028930664006, -17.530136108398438 ], [ -71.364303588867131, -17.530136108398438 ], [ -71.364303588867131, -17.529306411743164 ], [ -71.364585876464787, -17.529306411743164 ], [ -71.364585876464787, -17.528472900390625 ], [ -71.364860534667969, -17.528472900390625 ], [ -71.364860534667969, -17.527914047241154 ], [ -71.365135192871094, -17.527914047241154 ], [ -71.365135192871094, -17.527360916137638 ], [ -71.36541748046875, -17.527360916137638 ], [ -71.36541748046875, -17.526250839233398 ], [ -71.365692138671875, -17.526250839233398 ], [ -71.365692138671875, -17.525417327880746 ], [ -71.365974426269531, -17.525417327880746 ], [ -71.365974426269531, -17.525138854980469 ], [ -71.366249084472656, -17.525138854980469 ], [ -71.366249084472656, -17.524860382080078 ], [ -71.366531372070312, -17.524860382080078 ], [ -71.366531372070312, -17.524583816528263 ], [ -71.366806030273324, -17.524583816528263 ], [ -71.366806030273324, -17.524305343627873 ], [ -71.367080688476506, -17.524305343627873 ], [ -71.367080688476506, -17.524026870727482 ], [ -71.367362976074162, -17.524026870727482 ], [ -71.367362976074162, -17.523750305175781 ], [ -71.367637634277287, -17.523750305175781 ], [ -71.367637634277287, -17.523473739624023 ], [ -71.367782592773438, -17.523473739624023 ], [ -71.367919921874943, -17.523473739624023 ], [ -71.367919921874943, -17.522916793823242 ], [ -71.368194580078125, -17.522916793823242 ], [ -71.368194580078125, -17.522542953491211 ], [ -71.368194580078125, -17.522363662719727 ], [ -71.368354797363281, -17.522363662719727 ], [ -71.36846923828125, -17.522363662719727 ], [ -71.36846923828125, -17.52223014831543 ], [ -71.36846923828125, -17.521528244018498 ], [ -71.368751525878906, -17.521528244018498 ], [ -71.368751525878906, -17.520694732666016 ], [ -71.36846923828125, -17.520694732666016 ], [ -71.36846923828125, -17.519781112670898 ], [ -71.36846923828125, -17.519582748413086 ], [ -71.368194580078125, -17.519582748413086 ], [ -71.368194580078125, -17.518747329711914 ], [ -71.367919921874943, -17.518747329711914 ], [ -71.367919921874943, -17.518472671508732 ], [ -71.367637634277287, -17.518472671508732 ], [ -71.367637634277287, -17.517919540405217 ], [ -71.367362976074162, -17.517915725707951 ], [ -71.367362976074162, -17.51763725280756 ], [ -71.367080688476506, -17.51763725280756 ], [ -71.367080688476506, -17.514583587646484 ], [ -71.366806030273324, -17.514583587646484 ], [ -71.366806030273324, -17.514028549194336 ], [ -71.366607666015568, -17.514028549194336 ], [ -71.366249084472656, -17.514028549194336 ], [ -71.366249084472656, -17.513921737670785 ], [ -71.366249084472656, -17.513750076293945 ], [ -71.3660888671875, -17.513750076293945 ], [ -71.365692138671875, -17.513750076293945 ], [ -71.365692138671875, -17.513471603393555 ], [ -71.36541748046875, -17.513471603393555 ], [ -71.36541748046875, -17.51319694519043 ], [ -71.364860534667969, -17.51319694519043 ], [ -71.364860534667969, -17.512916564941349 ], [ -71.364585876464787, -17.512916564941349 ], [ -71.364585876464787, -17.512638092040902 ], [ -71.364303588867131, -17.512638092040902 ], [ -71.364303588867131, -17.512361526489201 ], [ -71.364028930664006, -17.512361526489201 ], [ -71.364028930664006, -17.511806488037109 ], [ -71.363471984863168, -17.511806488037109 ], [ -71.363471984863168, -17.511528015136719 ], [ -71.363197326660156, -17.511528015136719 ], [ -71.363197326660156, -17.511249542236328 ], [ -71.3629150390625, -17.511249542236328 ], [ -71.3629150390625, -17.510974884033203 ], [ -71.362640380859375, -17.510974884033203 ], [ -71.362640380859375, -17.51069450378418 ], [ -71.362358093261719, -17.51069450378418 ], [ -71.362358093261719, -17.510416030883789 ], [ -71.362083435058594, -17.510416030883789 ], [ -71.362083435058594, -17.509862899780273 ], [ -71.361808776855469, -17.509862899780273 ], [ -71.361808776855469, -17.509580612182617 ], [ -71.361526489257756, -17.509580612182617 ], [ -71.361526489257756, -17.509027481079045 ], [ -71.361808776855469, -17.509027481079045 ], [ -71.361808776855469, -17.50875282287592 ], [ -71.361251831054631, -17.50875282287592 ], [ -71.361251831054631, -17.50764083862299 ], [ -71.361526489257756, -17.50764083862299 ], [ -71.361526489257756, -17.504026412963867 ], [ -71.361808776855469, -17.504026412963867 ], [ -71.361808776855469, -17.502639770507812 ], [ -71.362083435058594, -17.502639770507812 ], [ -71.362083435058594, -17.501806259155217 ], [ -71.362358093261719, -17.501806259155217 ], [ -71.362358093261719, -17.501249313354492 ], [ -71.362533569335938, -17.501249313354492 ], [ -71.362640380859375, -17.501249313354492 ], [ -71.362640380859375, -17.500694274902287 ], [ -71.3629150390625, -17.500694274902287 ], [ -71.3629150390625, -17.500139236450195 ], [ -71.363197326660156, -17.500139236450195 ], [ -71.363197326660156, -17.499584197998047 ], [ -71.363471984863168, -17.499584197998047 ], [ -71.363471984863168, -17.499305725097656 ], [ -71.363746643066349, -17.499305725097656 ], [ -71.363746643066349, -17.499027252197266 ], [ -71.364028930664006, -17.499027252197266 ], [ -71.364028930664006, -17.498472213745004 ], [ -71.364303588867131, -17.498472213745004 ], [ -71.364303588867131, -17.497917175292912 ], [ -71.364585876464787, -17.497917175292912 ], [ -71.364585876464787, -17.497360229492131 ], [ -71.364860534667969, -17.497360229492131 ], [ -71.364860534667969, -17.496805191040039 ], [ -71.365135192871094, -17.496805191040039 ], [ -71.365135192871094, -17.496337890625 ], [ -71.365135192871094, -17.495973587036076 ], [ -71.36541748046875, -17.495973587036076 ], [ -71.36541748046875, -17.495138168334847 ], [ -71.365135192871094, -17.495138168334847 ], [ -71.365135192871094, -17.494861602783146 ], [ -71.364860534667969, -17.494861602783146 ], [ -71.364860534667969, -17.494304656982365 ], [ -71.364303588867131, -17.494304656982365 ], [ -71.364303588867131, -17.493925094604492 ], [ -71.364303588867131, -17.493751525878793 ], [ -71.364143371582031, -17.493751525878793 ], [ -71.364028930664006, -17.493751525878793 ], [ -71.364028930664006, -17.493452072143555 ], [ -71.364028930664006, -17.493194580078125 ], [ -71.364303588867131, -17.493194580078125 ], [ -71.364303588867131, -17.492916107177734 ], [ -71.364028930664006, -17.492916107177734 ], [ -71.364028930664006, -17.492641448974609 ], [ -71.363746643066349, -17.492641448974609 ], [ -71.363746643066349, -17.492359161376953 ], [ -71.363609313964844, -17.492359161376953 ], [ -71.363471984863168, -17.492359161376953 ], [ -71.363471984863168, -17.492082595825082 ], [ -71.363746643066349, -17.492082595825082 ], [ -71.363746643066349, -17.491247177124023 ], [ -71.363471984863168, -17.491247177124023 ], [ -71.363471984863168, -17.490972518920898 ], [ -71.363746643066349, -17.490972518920898 ], [ -71.363746643066349, -17.489025115966797 ], [ -71.364028930664006, -17.489025115966797 ], [ -71.364028930664006, -17.487916946411133 ], [ -71.364303588867131, -17.487916946411133 ], [ -71.364303588867131, -17.487361907958871 ], [ -71.364585876464787, -17.487361907958871 ], [ -71.364585876464787, -17.486806869506779 ], [ -71.364860534667969, -17.486806869506779 ], [ -71.364860534667969, -17.486249923705998 ], [ -71.365135192871094, -17.486249923705998 ], [ -71.365135192871094, -17.485416412353516 ], [ -71.365692138671875, -17.485416412353516 ], [ -71.365692138671875, -17.484861373901367 ], [ -71.365974426269531, -17.484861373901367 ], [ -71.365974426269531, -17.484584808349553 ], [ -71.366249084472656, -17.484584808349553 ], [ -71.366249084472656, -17.484306335449162 ], [ -71.366531372070312, -17.484306335449162 ], [ -71.366531372070312, -17.483749389648438 ], [ -71.366806030273324, -17.483749389648438 ], [ -71.366806030273324, -17.483472824096623 ], [ -71.367080688476506, -17.483472824096623 ], [ -71.367080688476506, -17.482915878295842 ], [ -71.367362976074162, -17.482915878295842 ], [ -71.367362976074162, -17.482362747192383 ], [ -71.367637634277287, -17.482362747192383 ], [ -71.367637634277287, -17.482084274291992 ], [ -71.368194580078125, -17.482080459594727 ], [ -71.368194580078125, -17.481527328491211 ], [ -71.36846923828125, -17.481527328491211 ], [ -71.36846923828125, -17.481252670288086 ], [ -71.368751525878906, -17.481252670288086 ], [ -71.368751525878906, -17.48097038269043 ], [ -71.369026184082031, -17.48097038269043 ], [ -71.369026184082031, -17.480693817138672 ], [ -71.369308471679688, -17.480693817138672 ], [ -71.369308471679688, -17.480417251586857 ], [ -71.369583129882812, -17.480417251586857 ], [ -71.369583129882812, -17.480140686035156 ], [ -71.369857788085824, -17.480140686035156 ], [ -71.369857788085824, -17.4798583984375 ], [ -71.370140075683537, -17.4798583984375 ], [ -71.370140075683537, -17.479583740234375 ], [ -71.370414733886662, -17.479583740234375 ], [ -71.370414733886662, -17.479305267333984 ], [ -71.370697021484318, -17.479305267333984 ], [ -71.370697021484318, -17.479030609130803 ], [ -71.370971679687443, -17.479030609130803 ], [ -71.370971679687443, -17.478748321533146 ], [ -71.371246337890625, -17.478748321533146 ], [ -71.371246337890625, -17.478195190429631 ], [ -71.371528625488281, -17.478195190429631 ], [ -71.371528625488281, -17.47791671752924 ], [ -71.371803283691406, -17.47791671752924 ], [ -71.371803283691406, -17.477638244628793 ], [ -71.372360229492188, -17.477638244628793 ], [ -71.372360229492188, -17.477083206176701 ], [ -71.372642517089844, -17.477083206176701 ], [ -71.372642517089844, -17.47680473327631 ], [ -71.372917175292969, -17.47680473327631 ], [ -71.372917175292969, -17.476249694824219 ], [ -71.373191833496037, -17.476249694824219 ], [ -71.373191833496037, -17.475973129272461 ], [ -71.373474121093693, -17.475973129272461 ], [ -71.373474121093693, -17.474861145019474 ], [ -71.373748779296818, -17.474861145019474 ], [ -71.373748779296818, -17.474027633666935 ], [ -71.374031066894474, -17.474027633666935 ], [ -71.374031066894474, -17.472085952758789 ], [ -71.374305725097599, -17.472085952758789 ], [ -71.374305725097599, -17.471805572509709 ], [ -71.374031066894474, -17.471805572509709 ], [ -71.374031066894474, -17.47097206115717 ], [ -71.374305725097599, -17.47097206115717 ], [ -71.374305725097599, -17.469583511352539 ], [ -71.374580383300781, -17.469583511352539 ], [ -71.374580383300781, -17.469028472900334 ], [ -71.374305725097599, -17.469028472900334 ], [ -71.374305725097599, -17.468469619750977 ], [ -71.374031066894474, -17.468469619750977 ], [ -71.374031066894474, -17.467359542846623 ], [ -71.374305725097599, -17.467359542846623 ], [ -71.374305725097599, -17.466806411743107 ], [ -71.374862670898438, -17.466806411743107 ], [ -71.374862670898438, -17.465694427490178 ], [ -71.375137329101562, -17.465694427490178 ], [ -71.375137329101562, -17.464860916137695 ], [ -71.375419616699219, -17.464860916137695 ], [ -71.375419616699219, -17.463750839233342 ], [ -71.375694274902344, -17.463750839233342 ], [ -71.375694274902344, -17.463193893432617 ], [ -71.375968933105469, -17.463193893432617 ], [ -71.375968933105469, -17.462917327880803 ], [ -71.376251220703011, -17.462917327880803 ], [ -71.376251220703011, -17.46208381652832 ], [ -71.376525878906193, -17.46208381652832 ], [ -71.376525878906193, -17.461526870727539 ], [ -71.376808166503849, -17.461526870727539 ], [ -71.376808166503849, -17.460695266723576 ], [ -71.377082824706974, -17.460695266723576 ], [ -71.377082824706974, -17.460138320922738 ], [ -71.377357482910099, -17.460138320922738 ], [ -71.377357482910099, -17.459583282470646 ], [ -71.377639770507812, -17.459583282470646 ], [ -71.377639770507812, -17.458471298217773 ], [ -71.377914428710938, -17.458471298217773 ], [ -71.377914428710938, -17.457916259765625 ], [ -71.378196716308594, -17.457916259765625 ], [ -71.378196716308594, -17.45763969421381 ], [ -71.378471374511719, -17.45763969421381 ], [ -71.378471374511719, -17.457084655761719 ], [ -71.378753662109375, -17.457084655761719 ], [ -71.378753662109375, -17.456806182861328 ], [ -71.3790283203125, -17.456806182861328 ], [ -71.3790283203125, -17.45513916015625 ], [ -71.379585266113168, -17.45513916015625 ], [ -71.379585266113168, -17.454862594604435 ], [ -71.380142211914006, -17.454862594604435 ], [ -71.380142211914006, -17.454584121704045 ], [ -71.380691528320312, -17.454584121704045 ], [ -71.380691528320312, -17.454027175903263 ], [ -71.380973815917969, -17.454027175903263 ], [ -71.380973815917969, -17.453193664550724 ], [ -71.381248474121094, -17.453193664550724 ], [ -71.381248474121094, -17.451805114746094 ], [ -71.38153076171875, -17.451805114746094 ], [ -71.38153076171875, -17.450971603393498 ], [ -71.381805419921875, -17.450971603393498 ], [ -71.381805419921875, -17.447639465332031 ], [ -71.382080078125, -17.447639465332031 ], [ -71.382080078125, -17.446527481079102 ], [ -71.382362365722656, -17.446527481079102 ], [ -71.382362365722656, -17.445695877075195 ], [ -71.382637023925668, -17.445695877075195 ], [ -71.382637023925668, -17.444860458373967 ], [ -71.382919311523381, -17.444860458373967 ], [ -71.382919311523381, -17.443750381469727 ], [ -71.383193969726506, -17.443750381469727 ], [ -71.383193969726506, -17.442363739013672 ], [ -71.382919311523381, -17.442363739013672 ], [ -71.382919311523381, -17.440694808959961 ], [ -71.383193969726506, -17.440694808959961 ], [ -71.383193969726506, -17.439306259155273 ], [ -71.383468627929631, -17.439306259155273 ], [ -71.383468627929631, -17.438747406005859 ], [ -71.383750915527287, -17.438747406005859 ], [ -71.383750915527287, -17.438472747802734 ], [ -71.384025573730469, -17.438472747802734 ], [ -71.384025573730469, -17.437915802001953 ], [ -71.384307861328125, -17.437915802001953 ], [ -71.384307861328125, -17.437637329101562 ], [ -71.38458251953125, -17.437637329101562 ], [ -71.38458251953125, -17.437360763549805 ], [ -71.384864807128906, -17.437360763549805 ], [ -71.384864807128906, -17.436527252197209 ], [ -71.385139465332031, -17.436527252197209 ], [ -71.385139465332031, -17.43597221374506 ], [ -71.385414123535156, -17.43597221374506 ], [ -71.385414123535156, -17.43569374084467 ], [ -71.385696411132812, -17.43569374084467 ], [ -71.385696411132812, -17.434860229492188 ], [ -71.385971069335881, -17.434860229492188 ], [ -71.385971069335881, -17.43458366394043 ], [ -71.386253356933537, -17.43458366394043 ], [ -71.386253356933537, -17.433750152587834 ], [ -71.386802673339787, -17.433750152587834 ], [ -71.386802673339787, -17.433195114135742 ], [ -71.387084960937443, -17.433195114135742 ], [ -71.387084960937443, -17.432638168334904 ], [ -71.387359619140625, -17.432638168334904 ], [ -71.387359619140625, -17.43152809143055 ], [ -71.387641906738281, -17.43152809143055 ], [ -71.387641906738281, -17.429582595825138 ], [ -71.387359619140625, -17.429582595825138 ], [ -71.387359619140625, -17.429306030273438 ], [ -71.387641906738281, -17.429306030273438 ], [ -71.387641906738281, -17.428472518920785 ], [ -71.387359619140625, -17.428472518920785 ], [ -71.387359619140625, -17.428039550781193 ], [ -71.387359619140625, -17.427917480468693 ], [ -71.388473510742188, -17.427917480468693 ], [ -71.388473510742188, -17.427362442016602 ], [ -71.389305114746037, -17.427362442016602 ], [ -71.389305114746037, -17.42652702331543 ], [ -71.389030456542855, -17.42652702331543 ], [ -71.389030456542855, -17.425693511962891 ], [ -71.389579772949162, -17.425693511962891 ], [ -71.389579772949162, -17.424861907958928 ], [ -71.389305114746037, -17.424861907958928 ], [ -71.389305114746037, -17.424026489257756 ], [ -71.388748168945312, -17.424026489257756 ], [ -71.388748168945312, -17.424304962158146 ], [ -71.388191223144531, -17.424304962158146 ], [ -71.388191223144531, -17.424026489257756 ], [ -71.387359619140625, -17.424026489257756 ], [ -71.387359619140625, -17.424304962158146 ], [ -71.387084960937443, -17.424304962158146 ], [ -71.387084960937443, -17.424861907958928 ], [ -71.386802673339787, -17.424861907958928 ], [ -71.386802673339787, -17.425138473510629 ], [ -71.385917663574219, -17.425138473510629 ], [ -71.385696411132812, -17.425138473510629 ], [ -71.385696411132812, -17.424861907958928 ], [ -71.385414123535156, -17.424861907958928 ], [ -71.385414123535156, -17.424583435058537 ], [ -71.385139465332031, -17.424583435058537 ], [ -71.385139465332031, -17.424026489257756 ], [ -71.384864807128906, -17.424026489257756 ], [ -71.384864807128906, -17.423471450805664 ], [ -71.38458251953125, -17.423471450805664 ], [ -71.38458251953125, -17.422639846801701 ], [ -71.384307861328125, -17.422637939453125 ], [ -71.384307861328125, -17.421249389648381 ], [ -71.384025573730469, -17.421249389648381 ], [ -71.384025573730469, -17.42097282409668 ], [ -71.384307861328125, -17.42097282409668 ], [ -71.384307861328125, -17.420753479003906 ], [ -71.384307861328125, -17.420415878295898 ], [ -71.384025573730469, -17.420415878295898 ], [ -71.384025573730469, -17.420139312744141 ], [ -71.384147644042912, -17.420139312744141 ], [ -71.384307861328125, -17.420139312744141 ], [ -71.384307861328125, -17.419305801391545 ], [ -71.38458251953125, -17.419305801391545 ], [ -71.38458251953125, -17.419027328491154 ], [ -71.384864807128906, -17.419027328491154 ], [ -71.384864807128906, -17.418472290039006 ], [ -71.385139465332031, -17.418472290039006 ], [ -71.385139465332031, -17.417917251586914 ], [ -71.385414123535156, -17.417917251586914 ], [ -71.385414123535156, -17.416873931884709 ], [ -71.385414123535156, -17.415872573852482 ], [ -71.385414123535156, -17.415416717529297 ], [ -71.385696411132812, -17.415416717529297 ], [ -71.385696411132812, -17.415138244628849 ], [ -71.386528015136662, -17.415138244628849 ], [ -71.386528015136662, -17.414861679077148 ], [ -71.387641906738281, -17.414861679077148 ], [ -71.387641906738281, -17.414583206176758 ], [ -71.387916564941406, -17.414583206176758 ], [ -71.387916564941406, -17.414028167724496 ], [ -71.387641906738281, -17.414028167724496 ], [ -71.387641906738281, -17.413751602172795 ], [ -71.387084960937443, -17.413751602172795 ], [ -71.387084960937443, -17.412916183471623 ], [ -71.386802673339787, -17.412916183471623 ], [ -71.386802673339787, -17.411247253417912 ], [ -71.386528015136662, -17.411247253417912 ], [ -71.386528015136662, -17.410419464111328 ], [ -71.386802673339787, -17.410419464111328 ], [ -71.386802673339787, -17.410137176513672 ], [ -71.386528015136662, -17.410137176513672 ], [ -71.386528015136662, -17.40974235534668 ], [ -71.386528015136662, -17.409305572509766 ], [ -71.386253356933537, -17.409305572509766 ], [ -71.386253356933537, -17.408750534057617 ], [ -71.386528015136662, -17.408750534057617 ], [ -71.386528015136662, -17.407659530639592 ], [ -71.386528015136662, -17.407361984252873 ], [ -71.386802673339787, -17.407361984252873 ], [ -71.386802673339787, -17.407083511352482 ], [ -71.387084960937443, -17.407083511352482 ], [ -71.387084960937443, -17.406528472900391 ], [ -71.387359619140625, -17.406528472900391 ], [ -71.387359619140625, -17.405971527099609 ], [ -71.387641906738281, -17.405971527099609 ], [ -71.387641906738281, -17.40513801574707 ], [ -71.387916564941406, -17.40513801574707 ], [ -71.387916564941406, -17.403749465942326 ], [ -71.388191223144531, -17.403749465942326 ], [ -71.388191223144531, -17.402915954589844 ], [ -71.388473510742188, -17.402915954589844 ], [ -71.388473510742188, -17.402362823486271 ], [ -71.389305114746037, -17.402362823486271 ], [ -71.389305114746037, -17.402080535888615 ], [ -71.389862060546818, -17.402080535888615 ], [ -71.389862060546818, -17.40180587768549 ], [ -71.390136718749943, -17.40180587768549 ], [ -71.390136718749943, -17.401527404785099 ], [ -71.390693664550781, -17.401527404785099 ], [ -71.390693664550781, -17.400417327880859 ], [ -71.390419006347656, -17.400417327880859 ], [ -71.390419006347656, -17.399858474731388 ], [ -71.390693664550781, -17.399858474731388 ], [ -71.390693664550781, -17.398748397827148 ], [ -71.391250610351562, -17.398748397827148 ], [ -71.391250610351562, -17.398471832275334 ], [ -71.391525268554688, -17.398471832275334 ], [ -71.391525268554688, -17.398195266723633 ], [ -71.392082214355355, -17.398195266723633 ], [ -71.392082214355355, -17.397916793823242 ], [ -71.392639160156193, -17.397916793823242 ], [ -71.392639160156193, -17.397638320922795 ], [ -71.392913818359318, -17.397638320922795 ], [ -71.392913818359318, -17.397916793823242 ], [ -71.393196105956974, -17.397916793823242 ], [ -71.393196105956974, -17.397638320922795 ], [ -71.393470764160156, -17.397638320922795 ], [ -71.393470764160156, -17.397361755371094 ], [ -71.393753051757812, -17.397361755371094 ], [ -71.393753051757812, -17.397083282470703 ], [ -71.393470764160156, -17.397083282470703 ], [ -71.393470764160156, -17.396804809570312 ], [ -71.393753051757812, -17.396804809570312 ], [ -71.393753051757812, -17.395694732665959 ], [ -71.394027709960938, -17.395694732665959 ], [ -71.394027709960938, -17.395416259765568 ], [ -71.394302368164062, -17.395416259765568 ], [ -71.394302368164062, -17.394027709960938 ], [ -71.394584655761719, -17.394027709960938 ], [ -71.394584655761719, -17.393472671508675 ], [ -71.394859313964844, -17.393472671508675 ], [ -71.394859313964844, -17.392639160156193 ], [ -71.3951416015625, -17.392639160156193 ], [ -71.3951416015625, -17.39152717590332 ], [ -71.395416259765511, -17.39152717590332 ], [ -71.395416259765511, -17.390972137451172 ], [ -71.395690917968693, -17.390972137451172 ], [ -71.395690917968693, -17.390138626098519 ], [ -71.395973205566349, -17.390138626098519 ], [ -71.395973205566349, -17.389862060546818 ], [ -71.396247863769474, -17.389860153198242 ], [ -71.396247863769474, -17.389583587646428 ], [ -71.396804809570312, -17.389583587646428 ], [ -71.396804809570312, -17.389028549194336 ], [ -71.397636413574219, -17.389028549194336 ], [ -71.397636413574219, -17.388750076293945 ], [ -71.398475646972656, -17.388750076293945 ], [ -71.398475646972656, -17.388195037841797 ], [ -71.399581909179631, -17.388195037841797 ], [ -71.399581909179631, -17.387916564941406 ], [ -71.399864196777287, -17.387916564941406 ], [ -71.399864196777287, -17.387638092041016 ], [ -71.400413513183594, -17.387638092041016 ], [ -71.400413513183594, -17.387361526489201 ], [ -71.40069580078125, -17.387361526489201 ], [ -71.40069580078125, -17.386529922485352 ], [ -71.400970458984375, -17.386529922485352 ], [ -71.400970458984375, -17.38597297668457 ], [ -71.401527404785156, -17.38597297668457 ], [ -71.401527404785156, -17.38569450378418 ], [ -71.401802062988224, -17.38569450378418 ], [ -71.401802062988224, -17.385416030883789 ], [ -71.402084350585881, -17.385416030883789 ], [ -71.402084350585881, -17.38569450378418 ], [ -71.402359008789006, -17.38569450378418 ], [ -71.402359008789006, -17.385416030883789 ], [ -71.402915954589787, -17.385416030883789 ], [ -71.402915954589787, -17.38569450378418 ], [ -71.40374755859375, -17.38569450378418 ], [ -71.40374755859375, -17.38597297668457 ], [ -71.404029846191406, -17.38597297668457 ], [ -71.404029846191406, -17.386251449584961 ], [ -71.404304504394531, -17.386251449584961 ], [ -71.404304504394531, -17.386529922485352 ], [ -71.404586791992188, -17.386529922485352 ], [ -71.404586791992188, -17.386804580688477 ], [ -71.404861450195199, -17.386806488037109 ], [ -71.404861450195199, -17.387081146240234 ], [ -71.405418395996037, -17.387081146240234 ], [ -71.405418395996037, -17.387361526489201 ], [ -71.405975341796818, -17.387361526489201 ], [ -71.405975341796818, -17.387081146240234 ], [ -71.40625, -17.387081146240234 ], [ -71.40625, -17.38597297668457 ], [ -71.405975341796818, -17.38597297668457 ], [ -71.405975341796818, -17.385137557983398 ], [ -71.405693054199162, -17.385137557983398 ], [ -71.405693054199162, -17.38497352600092 ], [ -71.405693054199162, -17.384305953979435 ], [ -71.405418395996037, -17.384305953979435 ], [ -71.405418395996037, -17.384027481079045 ], [ -71.405136108398381, -17.384027481079045 ], [ -71.405136108398381, -17.383750915527344 ], [ -71.405418395996037, -17.383750915527344 ], [ -71.405418395996037, -17.383193969726506 ], [ -71.406112670898438, -17.383193969726506 ], [ -71.406524658203125, -17.383193969726506 ], [ -71.406524658203125, -17.383472442626896 ], [ -71.406806945800781, -17.383472442626896 ], [ -71.406806945800781, -17.383750915527344 ], [ -71.407081604003906, -17.383750915527344 ], [ -71.407081604003906, -17.383193969726506 ], [ -71.407363891601562, -17.383193969726506 ], [ -71.407363891601562, -17.382919311523381 ], [ -71.408752441406193, -17.382919311523381 ], [ -71.408752441406193, -17.382638931274414 ], [ -71.4093017578125, -17.382638931274414 ], [ -71.4093017578125, -17.381526947021484 ], [ -71.409858703613281, -17.381526947021484 ], [ -71.409858703613281, -17.380971908569279 ], [ -71.410140991210938, -17.380971908569279 ], [ -71.410140991210938, -17.380695343017578 ], [ -71.411247253417855, -17.380695343017578 ], [ -71.411247253417855, -17.380971908569279 ], [ -71.412361145019474, -17.380971908569279 ], [ -71.412361145019474, -17.38125038146967 ], [ -71.412918090820312, -17.38125038146967 ], [ -71.412918090820312, -17.381526947021484 ], [ -71.413192749023438, -17.381526947021484 ], [ -71.413192749023438, -17.38125038146967 ], [ -71.413475036621094, -17.38125038146967 ], [ -71.413475036621094, -17.380416870117188 ], [ -71.413749694824219, -17.380416870117188 ], [ -71.413749694824219, -17.379583358764648 ], [ -71.414024353027344, -17.379583358764648 ], [ -71.414024353027344, -17.379028320312386 ], [ -71.414306640625, -17.379028320312386 ], [ -71.414306640625, -17.378749847412109 ], [ -71.414581298828068, -17.378749847412109 ], [ -71.414581298828068, -17.377916336059513 ], [ -71.414863586425724, -17.377916336059513 ], [ -71.414863586425724, -17.377084732055664 ], [ -71.415138244628849, -17.377084732055664 ], [ -71.415138244628849, -17.376806259155273 ], [ -71.415412902831974, -17.376806259155273 ], [ -71.415412902831974, -17.377084732055664 ], [ -71.416252136230469, -17.377084732055664 ], [ -71.416252136230469, -17.376806259155273 ], [ -71.416526794433594, -17.376806259155273 ], [ -71.416526794433594, -17.377084732055664 ], [ -71.41680908203125, -17.377084732055664 ], [ -71.41680908203125, -17.377361297607422 ], [ -71.417640686035043, -17.377361297607422 ], [ -71.417640686035043, -17.377639770507812 ], [ -71.417915344238224, -17.377639770507812 ], [ -71.417915344238224, -17.377916336059513 ], [ -71.418472290039006, -17.377916336059513 ], [ -71.418472290039006, -17.378194808959904 ], [ -71.418746948242131, -17.378194808959904 ], [ -71.418746948242131, -17.377916336059513 ], [ -71.419303894042969, -17.377916336059513 ], [ -71.419303894042969, -17.376380920410156 ], [ -71.419303894042969, -17.374862670898438 ], [ -71.419479370117188, -17.374862670898438 ], [ -71.419586181640625, -17.374862670898438 ], [ -71.419586181640625, -17.373737335205078 ], [ -71.419586181640625, -17.373470306396428 ], [ -71.41986083984375, -17.373470306396428 ], [ -71.41986083984375, -17.373193740844727 ], [ -71.420135498046875, -17.373193740844727 ], [ -71.420135498046875, -17.372640609741211 ], [ -71.420417785644531, -17.372640609741211 ], [ -71.420417785644531, -17.371805191039982 ], [ -71.420974731445199, -17.371805191039982 ], [ -71.420974731445199, -17.371530532836857 ], [ -71.421249389648381, -17.371530532836857 ], [ -71.421249389648381, -17.371248245239201 ], [ -71.421806335449162, -17.371248245239201 ], [ -71.421806335449162, -17.371530532836857 ], [ -71.423194885253906, -17.371530532836857 ], [ -71.423194885253906, -17.371248245239201 ], [ -71.423469543457031, -17.371248245239201 ], [ -71.423469543457031, -17.370416641235352 ], [ -71.423751831054688, -17.370416641235352 ], [ -71.423751831054688, -17.369861602783146 ], [ -71.423469543457031, -17.369861602783146 ], [ -71.423469543457031, -17.369304656982422 ], [ -71.423194885253906, -17.369304656982422 ], [ -71.423194885253906, -17.368881225585881 ], [ -71.423194885253906, -17.367916107177734 ], [ -71.422920227050781, -17.367916107177734 ], [ -71.422920227050781, -17.366804122924805 ], [ -71.423194885253906, -17.366804122924805 ], [ -71.423194885253906, -17.366252899169922 ], [ -71.423194885253906, -17.365972518920842 ], [ -71.423469543457031, -17.365972518920842 ], [ -71.423469543457031, -17.365695953369141 ], [ -71.424026489257699, -17.365695953369141 ], [ -71.424026489257699, -17.365139007568359 ], [ -71.424308776855412, -17.365139007568359 ], [ -71.424308776855412, -17.364860534667969 ], [ -71.424583435058537, -17.364860534667969 ], [ -71.424583435058537, -17.364582061767578 ], [ -71.424858093261662, -17.364582061767578 ], [ -71.424858093261662, -17.36430549621582 ], [ -71.425140380859318, -17.36430549621582 ], [ -71.425140380859318, -17.364582061767578 ], [ -71.4254150390625, -17.364582061767578 ], [ -71.4254150390625, -17.364860534667969 ], [ -71.425971984863281, -17.364860534667969 ], [ -71.425971984863281, -17.365139007568359 ], [ -71.426246643066406, -17.365139007568359 ], [ -71.426246643066406, -17.36541748046875 ], [ -71.426803588867188, -17.36541748046875 ], [ -71.426803588867188, -17.365695953369141 ], [ -71.427917480468693, -17.365695953369141 ], [ -71.427917480468693, -17.366249084472543 ], [ -71.428749084472656, -17.366249084472543 ], [ -71.428749084472656, -17.36652755737299 ], [ -71.429580688476562, -17.36652755737299 ], [ -71.429580688476562, -17.366804122924805 ], [ -71.429862976074219, -17.366804122924805 ], [ -71.429862976074219, -17.367082595825195 ], [ -71.430419921874886, -17.367082595825195 ], [ -71.430419921874886, -17.367916107177734 ], [ -71.431526184081974, -17.367916107177734 ], [ -71.431526184081974, -17.367639541625977 ], [ -71.432083129882812, -17.367639541625977 ], [ -71.432083129882812, -17.367361068725586 ], [ -71.432640075683594, -17.367361068725586 ], [ -71.432640075683594, -17.366804122924805 ], [ -71.432914733886719, -17.366804122924805 ], [ -71.432914733886719, -17.36652755737299 ], [ -71.433197021484375, -17.36652755737299 ], [ -71.433197021484375, -17.366249084472543 ], [ -71.433471679687386, -17.366249084472543 ], [ -71.433471679687386, -17.36536788940424 ], [ -71.433471679687386, -17.364582061767578 ], [ -71.433197021484375, -17.364582061767578 ], [ -71.433197021484375, -17.36430549621582 ], [ -71.432914733886719, -17.36430549621582 ], [ -71.432914733886719, -17.363439559936523 ], [ -71.432914733886719, -17.362743377685547 ], [ -71.432914733886719, -17.36236381530756 ], [ -71.433197021484375, -17.36236381530756 ], [ -71.433197021484375, -17.362083435058594 ], [ -71.432357788085938, -17.362083435058594 ], [ -71.432357788085938, -17.361804962158203 ], [ -71.432083129882812, -17.361804962158203 ], [ -71.432083129882812, -17.361528396606332 ], [ -71.432357788085938, -17.361528396606332 ], [ -71.432357788085938, -17.361251831054631 ], [ -71.432083129882812, -17.361251831054631 ], [ -71.432083129882812, -17.360694885253849 ], [ -71.432357788085938, -17.360694885253849 ], [ -71.432357788085938, -17.360139846801758 ], [ -71.432640075683594, -17.360139846801758 ], [ -71.432640075683594, -17.360416412353459 ], [ -71.433197021484375, -17.360416412353459 ], [ -71.433197021484375, -17.360126495361271 ], [ -71.433197021484375, -17.359859466552621 ], [ -71.432914733886719, -17.359859466552621 ], [ -71.432914733886719, -17.359739303588867 ], [ -71.432914733886719, -17.35958290100092 ], [ -71.433197021484375, -17.35958290100092 ], [ -71.433197021484375, -17.359029769897404 ], [ -71.433746337890568, -17.359029769897404 ], [ -71.433746337890568, -17.359306335449219 ], [ -71.434028625488224, -17.359306335449219 ], [ -71.434028625488224, -17.358472824096566 ], [ -71.433746337890568, -17.358472824096566 ], [ -71.433746337890568, -17.357915878295898 ], [ -71.434028625488224, -17.357915878295898 ], [ -71.434028625488224, -17.357637405395508 ], [ -71.433746337890568, -17.357637405395508 ], [ -71.433746337890568, -17.357112884521484 ], [ -71.433746337890568, -17.356805801391602 ], [ -71.433471679687386, -17.356805801391602 ], [ -71.433471679687386, -17.356527328491211 ], [ -71.433197021484375, -17.356527328491211 ], [ -71.433197021484375, -17.356250762939453 ], [ -71.432914733886719, -17.356250762939453 ], [ -71.432914733886719, -17.355749130249023 ], [ -71.432914733886719, -17.355415344238281 ], [ -71.432640075683594, -17.355415344238281 ], [ -71.432640075683594, -17.354305267333928 ], [ -71.432914733886719, -17.354305267333928 ], [ -71.432914733886719, -17.353471755981445 ], [ -71.432640075683594, -17.353471755981445 ], [ -71.432640075683594, -17.353195190429688 ], [ -71.432357788085938, -17.353195190429688 ], [ -71.432357788085938, -17.351528167724553 ], [ -71.432640075683594, -17.351528167724553 ], [ -71.432640075683594, -17.350139617919922 ], [ -71.432914733886719, -17.350139617919922 ], [ -71.432914733886719, -17.349861145019531 ], [ -71.433197021484375, -17.349861145019531 ], [ -71.433197021484375, -17.348194122314396 ], [ -71.433471679687386, -17.348194122314396 ], [ -71.433471679687386, -17.347917556762695 ], [ -71.433746337890568, -17.347917556762695 ], [ -71.433746337890568, -17.347084045410156 ], [ -71.434028625488224, -17.347084045410156 ], [ -71.434028625488224, -17.346805572509766 ], [ -71.434303283691349, -17.346805572509766 ], [ -71.434303283691349, -17.346527099609375 ], [ -71.434585571289006, -17.346527099609375 ], [ -71.434585571289006, -17.346248626708984 ], [ -71.434860229492188, -17.346248626708984 ], [ -71.434860229492188, -17.345970153808594 ], [ -71.435142517089844, -17.345970153808594 ], [ -71.435142517089844, -17.345418930053711 ], [ -71.435417175292969, -17.345418930053711 ], [ -71.435417175292969, -17.34486007690424 ], [ -71.435691833496094, -17.34486007690424 ], [ -71.435691833496094, -17.344583511352539 ], [ -71.43597412109375, -17.344583511352539 ], [ -71.43597412109375, -17.343194961547795 ], [ -71.436248779296875, -17.343194961547795 ], [ -71.436248779296875, -17.342082977294865 ], [ -71.436531066894531, -17.342082977294865 ], [ -71.436531066894531, -17.340972900390511 ], [ -71.436805725097543, -17.340972900390511 ], [ -71.436805725097543, -17.340414047241154 ], [ -71.437080383300724, -17.340414047241154 ], [ -71.437080383300724, -17.340139389038029 ], [ -71.437362670898381, -17.340139389038029 ], [ -71.437362670898381, -17.339860916137638 ], [ -71.439308166503906, -17.339860916137638 ], [ -71.439308166503906, -17.340139389038029 ], [ -71.439857482910043, -17.340139389038029 ], [ -71.439857482910043, -17.340414047241154 ], [ -71.440414428710881, -17.340414047241154 ], [ -71.440414428710881, -17.340139389038029 ], [ -71.441802978515625, -17.340139389038029 ], [ -71.441802978515625, -17.339582443237248 ], [ -71.442085266113281, -17.339582443237248 ], [ -71.442085266113281, -17.339027404785156 ], [ -71.442642211914062, -17.339027404785156 ], [ -71.442642211914062, -17.338750839233398 ], [ -71.443191528320256, -17.338750839233398 ], [ -71.443191528320256, -17.338472366333008 ], [ -71.443473815917912, -17.338472366333008 ], [ -71.443473815917912, -17.338195800781193 ], [ -71.444305419921818, -17.338195800781193 ], [ -71.444305419921818, -17.337638854980355 ], [ -71.444862365722656, -17.337638854980355 ], [ -71.444862365722656, -17.337360382080078 ], [ -71.445137023925781, -17.337360382080078 ], [ -71.445137023925781, -17.336526870727482 ], [ -71.445419311523438, -17.336526870727482 ], [ -71.445419311523438, -17.335695266723633 ], [ -71.445693969726562, -17.335695266723633 ], [ -71.445693969726562, -17.335138320922852 ], [ -71.445419311523438, -17.335138320922852 ], [ -71.445419311523438, -17.333469390869141 ], [ -71.446525573730412, -17.333469390869141 ], [ -71.446525573730412, -17.333751678466797 ], [ -71.446807861328068, -17.333751678466797 ], [ -71.446807861328068, -17.334028244018498 ], [ -71.447364807128849, -17.334028244018498 ], [ -71.447364807128849, -17.334304809570312 ], [ -71.447639465332031, -17.334304809570312 ], [ -71.447639465332031, -17.334583282470589 ], [ -71.447914123535156, -17.334583282470589 ], [ -71.447914123535156, -17.334861755371037 ], [ -71.448196411132812, -17.334861755371037 ], [ -71.448196411132812, -17.335416793823242 ], [ -71.449028015136719, -17.335416793823242 ], [ -71.449028015136719, -17.335138320922852 ], [ -71.44930267333973, -17.335138320922852 ], [ -71.44930267333973, -17.335416793823242 ], [ -71.449859619140568, -17.335416793823242 ], [ -71.449859619140568, -17.335138320922852 ], [ -71.450416564941349, -17.335138320922852 ], [ -71.450416564941349, -17.334861755371037 ], [ -71.450691223144531, -17.334861755371037 ], [ -71.450691223144531, -17.335138320922852 ], [ -71.450973510742188, -17.335138320922852 ], [ -71.450973510742188, -17.334861755371037 ], [ -71.451248168945312, -17.334861755371037 ], [ -71.451248168945312, -17.334583282470589 ], [ -71.453193664550724, -17.334583282470589 ], [ -71.453193664550724, -17.334304809570312 ], [ -71.453750610351506, -17.334304809570312 ], [ -71.453750610351506, -17.333751678466797 ], [ -71.454025268554688, -17.333751678466797 ], [ -71.454025268554688, -17.333469390869141 ], [ -71.454582214355469, -17.333469390869141 ], [ -71.454582214355469, -17.333194732666016 ], [ -71.45513916015625, -17.333194732666016 ], [ -71.45513916015625, -17.333469390869141 ], [ -71.455970764160099, -17.333469390869141 ], [ -71.455970764160099, -17.332916259765625 ], [ -71.456253051757756, -17.332916259765625 ], [ -71.456253051757756, -17.332641601562443 ], [ -71.456802368164006, -17.332641601562443 ], [ -71.456802368164006, -17.332916259765625 ], [ -71.457916259765625, -17.332916259765625 ], [ -71.457916259765625, -17.332359313964787 ], [ -71.45819091796875, -17.332359313964787 ], [ -71.45819091796875, -17.332082748413086 ], [ -71.458747863769531, -17.332082748413086 ], [ -71.458747863769531, -17.331806182861271 ], [ -71.459030151367074, -17.331806182861271 ], [ -71.459030151367074, -17.330972671508732 ], [ -71.458747863769531, -17.330972671508732 ], [ -71.458747863769531, -17.330415725707951 ], [ -71.459030151367074, -17.330415725707951 ], [ -71.459030151367074, -17.329860687255859 ], [ -71.459304809570256, -17.329860687255859 ], [ -71.459304809570256, -17.329584121704102 ], [ -71.459587097167912, -17.329584121704102 ], [ -71.459587097167912, -17.329025268554631 ], [ -71.459861755371037, -17.329025268554631 ], [ -71.459861755371037, -17.328750610351506 ], [ -71.460418701171875, -17.328750610351506 ], [ -71.460418701171875, -17.328472137451115 ], [ -71.460693359375, -17.328472137451115 ], [ -71.460693359375, -17.328193664550668 ], [ -71.461250305175781, -17.328193664550668 ], [ -71.461250305175781, -17.327638626098576 ], [ -71.461807250976562, -17.327638626098576 ], [ -71.461807250976562, -17.327362060546875 ], [ -71.46236419677723, -17.327360153198185 ], [ -71.46236419677723, -17.327083587646484 ], [ -71.463195800781193, -17.327083587646484 ], [ -71.463195800781193, -17.327360153198185 ], [ -71.464027404785156, -17.327360153198185 ], [ -71.464027404785156, -17.327083587646484 ], [ -71.465141296386719, -17.327083587646484 ], [ -71.465141296386719, -17.326805114746094 ], [ -71.465690612792912, -17.326805114746094 ], [ -71.465698242187443, -17.326250076293945 ], [ -71.466529846191349, -17.326250076293945 ], [ -71.466529846191349, -17.325693130493164 ], [ -71.466804504394531, -17.325693130493164 ], [ -71.466804504394531, -17.325416564941349 ], [ -71.467636108398438, -17.325416564941349 ], [ -71.467636108398438, -17.325138092040959 ], [ -71.467918395996094, -17.325138092040959 ], [ -71.467918395996094, -17.32458305358881 ], [ -71.468193054199219, -17.32458305358881 ], [ -71.468193054199219, -17.324306488037109 ], [ -71.468475341796875, -17.32430458068842 ], [ -71.468475341796875, -17.323051452636719 ], [ -71.468475341796875, -17.322916030883789 ], [ -71.468597412109375, -17.322916030883789 ], [ -71.46875, -17.322916030883789 ], [ -71.46875, -17.322742462158146 ], [ -71.46875, -17.322362899780273 ], [ -71.469024658203068, -17.322362899780273 ], [ -71.469024658203068, -17.322082519531193 ], [ -71.469306945800724, -17.322082519531193 ], [ -71.469306945800724, -17.320648193359318 ], [ -71.469306945800724, -17.320417404174748 ], [ -71.469581604003849, -17.320417404174748 ], [ -71.469581604003849, -17.319305419921818 ], [ -71.469863891601506, -17.319305419921818 ], [ -71.469863891601506, -17.319026947021428 ], [ -71.470138549804688, -17.319026947021428 ], [ -71.470138549804688, -17.319858551025391 ], [ -71.469863891601506, -17.319858551025391 ], [ -71.469863891601506, -17.320972442626953 ], [ -71.470413208007812, -17.320972442626953 ], [ -71.470413208007812, -17.32125282287592 ], [ -71.471801757812443, -17.32125282287592 ], [ -71.471801757812443, -17.320972442626953 ], [ -71.473197937011719, -17.320972442626953 ], [ -71.473197937011719, -17.32125282287592 ], [ -71.473747253417969, -17.32125282287592 ], [ -71.473747253417969, -17.321805953979492 ], [ -71.474029541015625, -17.321805953979492 ], [ -71.474029541015625, -17.322362899780273 ], [ -71.47430419921875, -17.322362899780273 ], [ -71.47430419921875, -17.322916030883789 ], [ -71.474586486816406, -17.322916030883789 ], [ -71.474586486816406, -17.32319450378418 ], [ -71.475135803222599, -17.32319450378418 ], [ -71.475135803222599, -17.323474884033203 ], [ -71.475418090820256, -17.323474884033203 ], [ -71.475418090820256, -17.323749542236328 ], [ -71.477081298828125, -17.323749542236328 ], [ -71.477081298828125, -17.32319450378418 ], [ -71.476806640625, -17.32319450378418 ], [ -71.476806640625, -17.322916030883789 ], [ -71.477363586425781, -17.322916030883789 ], [ -71.477363586425781, -17.322639465331974 ], [ -71.476806640625, -17.322639465331974 ], [ -71.476806640625, -17.322362899780273 ], [ -71.477081298828125, -17.322362899780273 ], [ -71.477081298828125, -17.321752548217717 ], [ -71.477081298828125, -17.321527481079102 ], [ -71.476806640625, -17.321527481079102 ], [ -71.476806640625, -17.320972442626953 ], [ -71.476524353027344, -17.320972442626953 ], [ -71.476524353027344, -17.320693969726562 ], [ -71.476806640625, -17.320693969726562 ], [ -71.476806640625, -17.320140838623047 ], [ -71.476524353027344, -17.320140838623047 ], [ -71.476524353027344, -17.319305419921818 ], [ -71.476806640625, -17.319305419921818 ], [ -71.476806640625, -17.319583892822209 ], [ -71.477363586425781, -17.319583892822209 ], [ -71.477363586425781, -17.319026947021428 ], [ -71.477081298828125, -17.319026947021428 ], [ -71.477081298828125, -17.318748474121037 ], [ -71.476806640625, -17.318748474121037 ], [ -71.476806640625, -17.317918777465763 ], [ -71.476524353027344, -17.317918777465763 ], [ -71.476524353027344, -17.317638397216797 ], [ -71.476806640625, -17.317638397216797 ], [ -71.476806640625, -17.31698036193842 ], [ -71.476806640625, -17.316804885864258 ], [ -71.477081298828125, -17.316804885864258 ], [ -71.477081298828125, -17.315971374511662 ], [ -71.476806640625, -17.315971374511662 ], [ -71.476806640625, -17.315134048461914 ], [ -71.476806640625, -17.314701080322266 ], [ -71.476806640625, -17.314304351806641 ], [ -71.476524353027344, -17.314304351806641 ], [ -71.476524353027344, -17.314027786254826 ], [ -71.476249694824219, -17.314027786254826 ], [ -71.476249694824219, -17.313194274902287 ], [ -71.475975036621037, -17.313194274902287 ], [ -71.475975036621037, -17.312639236450195 ], [ -71.475692749023381, -17.312639236450195 ], [ -71.475692749023381, -17.311805725097656 ], [ -71.475418090820256, -17.311805725097656 ], [ -71.475418090820256, -17.311527252197266 ], [ -71.475135803222599, -17.311527252197266 ], [ -71.475135803222599, -17.310417175292969 ], [ -71.474861145019418, -17.310417175292969 ], [ -71.474861145019418, -17.310138702392521 ], [ -71.474586486816406, -17.310138702392521 ], [ -71.474586486816406, -17.309097290039006 ], [ -71.474586486816406, -17.308750152587891 ], [ -71.474418640136719, -17.308750152587891 ], [ -71.47430419921875, -17.308750152587891 ], [ -71.47430419921875, -17.308473587036076 ], [ -71.474586486816406, -17.308473587036076 ], [ -71.474586486816406, -17.307638168334904 ], [ -71.47430419921875, -17.307638168334904 ], [ -71.47430419921875, -17.306251525878849 ], [ -71.474029541015625, -17.306251525878849 ], [ -71.474029541015625, -17.305973052978402 ], [ -71.473472595214844, -17.305973052978402 ], [ -71.473472595214844, -17.305694580078125 ], [ -71.472915649414006, -17.305694580078125 ], [ -71.472915649414006, -17.305416107177734 ], [ -71.472640991210881, -17.305416107177734 ], [ -71.472640991210881, -17.305694580078125 ], [ -71.472358703613224, -17.305694580078125 ], [ -71.472358703613224, -17.305416107177734 ], [ -71.472160339355412, -17.305416107177734 ], [ -71.471527099609375, -17.305416107177734 ], [ -71.471527099609375, -17.305137634277344 ], [ -71.47125244140625, -17.305137634277344 ], [ -71.47125244140625, -17.304710388183537 ], [ -71.47125244140625, -17.30402946472168 ], [ -71.471527099609375, -17.30402946472168 ], [ -71.471527099609375, -17.302637100219727 ], [ -71.471801757812443, -17.302637100219727 ], [ -71.471801757812443, -17.301805496215763 ], [ -71.472084045410099, -17.301805496215763 ], [ -71.472084045410099, -17.301525115966797 ], [ -71.472358703613224, -17.301525115966797 ], [ -71.472358703613224, -17.300971984863281 ], [ -71.472640991210881, -17.300971984863281 ], [ -71.472640991210881, -17.300138473510742 ], [ -71.472915649414006, -17.300138473510742 ], [ -71.472915649414006, -17.299861907958928 ], [ -71.472640991210881, -17.299861907958928 ], [ -71.472640991210881, -17.299686431884766 ], [ -71.472640991210881, -17.298194885253906 ], [ -71.472930908203068, -17.298194885253906 ], [ -71.473197937011719, -17.298194885253906 ], [ -71.473197937011719, -17.297916412353516 ], [ -71.473747253417969, -17.297916412353516 ], [ -71.473747253417969, -17.297361373901367 ], [ -71.474029541015625, -17.297361373901367 ], [ -71.474029541015625, -17.297084808349553 ], [ -71.47430419921875, -17.297084808349553 ], [ -71.47430419921875, -17.296806335449162 ], [ -71.474861145019418, -17.296806335449162 ], [ -71.474861145019418, -17.296527862548771 ], [ -71.475135803222599, -17.296527862548771 ], [ -71.475135803222599, -17.296249389648324 ], [ -71.475418090820256, -17.296249389648324 ], [ -71.475418090820256, -17.295972824096623 ], [ -71.476249694824219, -17.295972824096623 ], [ -71.476249694824219, -17.295415878295842 ], [ -71.477638244628906, -17.295415878295842 ], [ -71.477638244628906, -17.295139312744141 ], [ -71.478195190429574, -17.295139312744141 ], [ -71.478195190429574, -17.294862747192269 ], [ -71.478469848632756, -17.294862747192269 ], [ -71.478469848632756, -17.294584274291992 ], [ -71.478752136230412, -17.294580459594613 ], [ -71.478752136230412, -17.294305801391602 ], [ -71.479309082031193, -17.294305801391602 ], [ -71.479309082031193, -17.293752670288086 ], [ -71.4798583984375, -17.293752670288086 ], [ -71.4798583984375, -17.293472290039006 ], [ -71.481529235839787, -17.293472290039006 ], [ -71.481529235839787, -17.293193817138558 ], [ -71.481803894042912, -17.293193817138558 ], [ -71.481803894042912, -17.2923583984375 ], [ -71.482086181640568, -17.2923583984375 ], [ -71.482086181640568, -17.291805267333984 ], [ -71.482360839843693, -17.291805267333984 ], [ -71.482360839843693, -17.291248321533203 ], [ -71.482635498046875, -17.291248321533203 ], [ -71.482635498046875, -17.290971755981445 ], [ -71.482917785644531, -17.290971755981445 ], [ -71.482917785644531, -17.290695190429631 ], [ -71.483192443847656, -17.290695190429631 ], [ -71.483192443847656, -17.29041862487793 ], [ -71.483749389648438, -17.29041862487793 ], [ -71.483749389648438, -17.290136337280273 ], [ -71.484024047851562, -17.290136337280273 ], [ -71.484024047851562, -17.289861679077148 ], [ -71.484580993652287, -17.289861679077148 ], [ -71.484580993652287, -17.28930473327631 ], [ -71.484863281249943, -17.28930473327631 ], [ -71.484863281249943, -17.28902626037592 ], [ -71.485420227050724, -17.28902626037592 ], [ -71.485420227050724, -17.288749694824219 ], [ -71.485969543457031, -17.288749694824219 ], [ -71.485969543457031, -17.288473129272347 ], [ -71.486526489257812, -17.288473129272347 ], [ -71.486526489257812, -17.28819465637207 ], [ -71.487358093261719, -17.28819465637207 ], [ -71.487358093261719, -17.28791618347168 ], [ -71.488197326660099, -17.28791618347168 ], [ -71.488197326660099, -17.287639617919865 ], [ -71.488746643066349, -17.287639617919865 ], [ -71.488746643066349, -17.287361145019474 ], [ -71.489303588867188, -17.287361145019474 ], [ -71.489303588867188, -17.287082672119084 ], [ -71.489585876464844, -17.287082672119084 ], [ -71.489585876464844, -17.286804199218636 ], [ -71.489860534667969, -17.286804199218636 ], [ -71.489860534667969, -17.286527633666992 ], [ -71.49041748046875, -17.286527633666992 ], [ -71.49041748046875, -17.286249160766545 ], [ -71.490974426269418, -17.286249160766545 ], [ -71.490974426269418, -17.285972595214844 ], [ -71.492057800292969, -17.285972595214844 ], [ -71.492156982421875, -17.285877227783203 ], [ -71.491744995117188, -17.285366058349553 ], [ -71.490928649902344, -17.284494400024414 ], [ -71.48919677734375, -17.282766342163086 ], [ -71.487197875976562, -17.281732559204102 ], [ -71.484519958496094, -17.278829574584904 ], [ -71.483909606933537, -17.277296066284123 ], [ -71.482696533203125, -17.275749206542969 ], [ -71.482025146484375, -17.27336311340332 ], [ -71.480110168457031, -17.270063400268498 ], [ -71.477165222167969, -17.267448425292855 ], [ -71.474464416503849, -17.266290664672852 ], [ -71.471847534179688, -17.264421463012638 ], [ -71.471313476562443, -17.262561798095646 ], [ -71.470069885253849, -17.260284423828068 ], [ -71.469947814941406, -17.258106231689453 ], [ -71.468475341796875, -17.256645202636662 ], [ -71.464057922363224, -17.253896713256836 ], [ -71.46051025390625, -17.252851486206055 ], [ -71.457832336425781, -17.252777099609375 ], [ -71.456039428710881, -17.252473831176758 ], [ -71.452346801757756, -17.252878189086857 ], [ -71.448806762695256, -17.252670288085938 ], [ -71.447227478027344, -17.252300262451172 ], [ -71.444633483886719, -17.251142501831055 ], [ -71.442398071289006, -17.250732421874943 ], [ -71.43902587890625, -17.248102188110295 ], [ -71.43798828125, -17.246450424194336 ], [ -71.436813354492188, -17.243831634521484 ], [ -71.434814453125, -17.241962432861271 ], [ -71.433692932128906, -17.241302490234318 ], [ -71.425895690917969, -17.238348007202148 ], [ -71.423652648925781, -17.236368179321232 ], [ -71.420547485351562, -17.232404708862305 ], [ -71.418663024902287, -17.228473663330078 ], [ -71.417198181152344, -17.225992202758732 ], [ -71.414642333984375, -17.219440460205021 ], [ -71.411590576171875, -17.214332580566406 ], [ -71.407272338867188, -17.210020065307617 ], [ -71.405563354492188, -17.207590103149357 ], [ -71.402282714843636, -17.204103469848633 ], [ -71.399765014648438, -17.202434539794922 ], [ -71.398078918456974, -17.20161056518549 ], [ -71.394180297851449, -17.198490142822209 ], [ -71.393280029296875, -17.197298049926701 ], [ -71.391601562499886, -17.19375038146967 ], [ -71.390457153320199, -17.192314147949219 ], [ -71.387870788574162, -17.189867019653207 ], [ -71.380409240722599, -17.183767318725586 ], [ -71.374954223632812, -17.178218841552734 ], [ -71.371223449707031, -17.173765182495117 ], [ -71.362655639648438, -17.162305831909066 ], [ -71.359039306640625, -17.157926559448242 ], [ -71.356872558593693, -17.154882431030273 ], [ -71.35555267333973, -17.152538299560547 ], [ -71.351730346679631, -17.14781379699707 ], [ -71.350189208984318, -17.146430969238281 ], [ -71.348602294921875, -17.145572662353516 ], [ -71.344383239746037, -17.144401550292912 ], [ -71.340927124023381, -17.142871856689396 ], [ -71.337318420410099, -17.140783309936523 ], [ -71.332107543945312, -17.13904953002924 ], [ -71.328872680664062, -17.137083053588867 ], [ -71.32659912109375, -17.135238647460881 ], [ -71.325736999511719, -17.134138107299748 ], [ -71.323883056640568, -17.129034042358398 ], [ -71.323173522949219, -17.128398895263558 ], [ -71.321929931640625, -17.126363754272461 ], [ -71.320045471191349, -17.124805450439453 ], [ -71.317108154296818, -17.124002456665039 ], [ -71.316062927246037, -17.123044967651367 ], [ -71.314613342285099, -17.119670867919922 ], [ -71.3150634765625, -17.118253707885742 ], [ -71.316520690917912, -17.116004943847543 ], [ -71.316612243652287, -17.115365982055607 ], [ -71.31640625, -17.114650726318303 ], [ -71.314132690429631, -17.112171173095646 ], [ -71.312782287597656, -17.110063552856445 ], [ -71.308372497558594, -17.105714797973576 ], [ -71.306396484375, -17.102890014648438 ], [ -71.305450439453068, -17.100381851196232 ], [ -71.305427551269531, -17.099460601806641 ], [ -71.305061340332031, -17.098218917846566 ], [ -71.305084228515568, -17.095178604125977 ], [ -71.305427551269531, -17.094236373901367 ], [ -71.307189941406193, -17.091939926147461 ], [ -71.307540893554688, -17.09088134765625 ], [ -71.308883666992131, -17.088542938232422 ], [ -71.309013366699105, -17.085521697998047 ], [ -71.309562683105412, -17.084051132202148 ], [ -71.310699462890568, -17.082817077636605 ], [ -71.311721801757812, -17.081150054931641 ], [ -71.314559936523438, -17.079900741577092 ], [ -71.315216064453011, -17.079128265380859 ], [ -71.315719604492188, -17.078018188476506 ], [ -71.315925598144531, -17.076570510864144 ], [ -71.315223693847656, -17.074769973754883 ], [ -71.315269470214844, -17.07099723815918 ], [ -71.314979553222656, -17.069856643676701 ], [ -71.315155029296875, -17.068857192993164 ], [ -71.315811157226562, -17.067850112915039 ], [ -71.316307067871094, -17.066072463989201 ], [ -71.318237304687443, -17.063680648803654 ], [ -71.319389343261662, -17.061779022216797 ], [ -71.321434020996094, -17.061004638671875 ], [ -71.323226928710824, -17.060749053955021 ], [ -71.323989868163949, -17.060220718383789 ], [ -71.325431823730469, -17.058134078979435 ], [ -71.325973510742131, -17.056186676025334 ], [ -71.324462890624886, -17.052730560302734 ], [ -71.324470520019531, -17.052078247070256 ], [ -71.319129943847656, -17.04400634765625 ], [ -71.3189697265625, -17.042623519897461 ], [ -71.319198608398381, -17.041246414184513 ], [ -71.320533752441349, -17.03980827331543 ], [ -71.326438903808537, -17.036378860473633 ], [ -71.331375122070312, -17.033084869384766 ], [ -71.336669921874886, -17.027566909790039 ], [ -71.338272094726506, -17.025167465209847 ], [ -71.340179443359318, -17.02165412902832 ], [ -71.340744018554631, -17.021043777465763 ], [ -71.341613769531193, -17.020978927612305 ], [ -71.342819213867188, -17.021297454833928 ], [ -71.344146728515625, -17.022161483764648 ], [ -71.34576416015625, -17.022739410400391 ], [ -71.347198486328125, -17.023630142211857 ], [ -71.351707458496037, -17.02484130859375 ], [ -71.353515624999943, -17.024955749511719 ], [ -71.356719970703125, -17.024063110351506 ], [ -71.357948303222656, -17.023916244506779 ], [ -71.361473083496094, -17.02227592468256 ], [ -71.363510131835938, -17.020469665527344 ], [ -71.364875793456974, -17.017938613891602 ], [ -71.36541748046875, -17.014204025268555 ], [ -71.365997314453125, -17.013628005981332 ], [ -71.3682861328125, -17.01429176330555 ], [ -71.370079040527344, -17.015668869018555 ], [ -71.371971130371094, -17.016738891601562 ], [ -71.373481750488168, -17.018011093139535 ], [ -71.376251220703011, -17.019180297851506 ], [ -71.383621215820312, -17.020772933959904 ], [ -71.385055541992188, -17.020673751830998 ], [ -71.386009216308594, -17.019941329956055 ], [ -71.38665771484375, -17.018615722656193 ], [ -71.386825561523381, -17.016788482665959 ], [ -71.387863159179631, -17.015253067016602 ], [ -71.387855529785099, -17.013410568237248 ], [ -71.387550354003906, -17.012161254882812 ], [ -71.387474060058537, -17.010248184204102 ], [ -71.388809204101506, -17.006696701049805 ], [ -71.388847351074219, -17.003683090209904 ], [ -71.389259338378906, -17.001895904541016 ], [ -71.392860412597656, -16.997663497924748 ], [ -71.394386291503906, -16.994792938232308 ], [ -71.394859313964844, -16.992925643920842 ], [ -71.394844055175668, -16.991083145141545 ], [ -71.394561767578011, -16.989543914794808 ], [ -71.395584106445256, -16.986684799194336 ], [ -71.395599365234318, -16.985673904418888 ], [ -71.395271301269531, -16.98480033874506 ], [ -71.393417358398324, -16.982828140258789 ], [ -71.393013000488224, -16.981222152709961 ], [ -71.391921997070312, -16.979597091674805 ], [ -71.392082214355355, -16.976615905761719 ], [ -71.39337158203125, -16.974676132202148 ], [ -71.394462585449105, -16.97352409362793 ], [ -71.397697448730412, -16.971588134765568 ], [ -71.398681640625, -16.970596313476562 ], [ -71.401565551757812, -16.968828201293945 ], [ -71.402191162109261, -16.968126296997013 ], [ -71.403121948242131, -16.966520309448242 ], [ -71.403213500976506, -16.96581840515131 ], [ -71.402847290039006, -16.964176177978402 ], [ -71.402130126953125, -16.962957382202092 ], [ -71.402030944824219, -16.960302352905217 ], [ -71.402191162109261, -16.958646774291992 ], [ -71.402778625488281, -16.957582473754883 ], [ -71.403907775878793, -16.956598281860238 ], [ -71.406173706054631, -16.955438613891545 ], [ -71.409263610839844, -16.954824447631836 ], [ -71.410369873046818, -16.953851699829102 ], [ -71.412284851074162, -16.953985214233342 ], [ -71.414955139160099, -16.954671859741154 ], [ -71.416946411132756, -16.954435348510742 ], [ -71.418319702148438, -16.9539279937743 ], [ -71.419845581054688, -16.954442977905273 ], [ -71.421546936035043, -16.954689025878906 ], [ -71.424324035644531, -16.95648193359375 ], [ -71.426422119140625, -16.957084655761662 ], [ -71.427711486816349, -16.958442687988224 ], [ -71.429977416992188, -16.95980262756342 ], [ -71.431472778320312, -16.960250854492131 ], [ -71.433433532714787, -16.959798812866211 ], [ -71.435989379882812, -16.959545135498047 ], [ -71.436592102050724, -16.959085464477539 ], [ -71.437583923339844, -16.957616806030217 ], [ -71.43817138671875, -16.957155227661076 ], [ -71.439323425292969, -16.956705093383789 ], [ -71.44036865234375, -16.956661224365234 ], [ -71.441810607910156, -16.955919265747013 ], [ -71.442726135253906, -16.955781936645508 ], [ -71.445739746093693, -16.956329345703068 ], [ -71.446411132812443, -16.956993103027287 ], [ -71.446937561035156, -16.957155227661076 ], [ -71.448509216308537, -16.958896636962834 ], [ -71.450408935546818, -16.959751129150391 ], [ -71.453155517578125, -16.959978103637695 ], [ -71.4544677734375, -16.960489273071232 ], [ -71.456947326660156, -16.960399627685547 ], [ -71.461402893066349, -16.959394454956055 ], [ -71.462600708007812, -16.958356857299805 ], [ -71.463027954101506, -16.958274841308594 ], [ -71.463706970214844, -16.957265853881722 ], [ -71.463989257812386, -16.955646514892578 ], [ -71.465675354003849, -16.953535079955998 ], [ -71.465812683105469, -16.951055526733342 ], [ -71.466407775878906, -16.950227737426758 ], [ -71.466194152832031, -16.949510574340763 ], [ -71.465057373046875, -16.948156356811523 ], [ -71.464645385742131, -16.947221755981388 ], [ -71.460433959960881, -16.943075180053711 ], [ -71.460136413574162, -16.941165924072209 ], [ -71.460556030273324, -16.939704895019531 ], [ -71.460426330566349, -16.939086914062443 ], [ -71.46002197265625, -16.938558578491154 ], [ -71.459907531738281, -16.937553405761662 ], [ -71.459297180175724, -16.936721801757812 ], [ -71.459159851074219, -16.936004638671875 ], [ -71.456092834472656, -16.933010101318359 ], [ -71.454551696777344, -16.932270050048828 ], [ -71.452804565429631, -16.932582855224553 ], [ -71.450805664062443, -16.932575225830021 ], [ -71.450164794921875, -16.932453155517578 ], [ -71.449356079101562, -16.931961059570312 ], [ -71.448226928710881, -16.931781768798828 ], [ -71.446067810058594, -16.932735443115234 ], [ -71.445350646972656, -16.932487487792912 ], [ -71.443283081054631, -16.932487487792912 ], [ -71.442550659179688, -16.9322509765625 ], [ -71.441963195800781, -16.931789398193359 ], [ -71.441741943359318, -16.931171417236271 ], [ -71.44171142578125, -16.929979324340763 ], [ -71.442070007324219, -16.928361892700138 ], [ -71.441680908203125, -16.927841186523324 ], [ -71.440536499023438, -16.927423477172852 ], [ -71.435287475585938, -16.927513122558594 ], [ -71.431243896484318, -16.925872802734375 ], [ -71.429351806640568, -16.924312591552621 ], [ -71.428199768066349, -16.922731399536076 ], [ -71.425758361816406, -16.920398712158146 ], [ -71.425430297851506, -16.919631958007756 ], [ -71.425308227539062, -16.918350219726562 ], [ -71.424842834472656, -16.917438507080021 ], [ -71.424949645996037, -16.914588928222543 ], [ -71.425399780273438, -16.913459777832031 ], [ -71.425491333007812, -16.909599304199162 ], [ -71.424911499023438, -16.908559799194336 ], [ -71.425025939941406, -16.905790328979492 ], [ -71.424652099609375, -16.904972076416016 ], [ -71.424751281738281, -16.902673721313477 ], [ -71.424430847167969, -16.901321411132756 ], [ -71.423095703125, -16.899087905883675 ], [ -71.423057556152287, -16.898544311523381 ], [ -71.422576904296818, -16.897645950317326 ], [ -71.422340393066406, -16.895889282226506 ], [ -71.422454833984375, -16.894329071044922 ], [ -71.423301696777344, -16.892520904540959 ], [ -71.42388916015625, -16.892232894897461 ], [ -71.425437927246037, -16.890609741210938 ], [ -71.427131652832031, -16.889970779418945 ], [ -71.428810119628906, -16.888908386230412 ], [ -71.431983947753906, -16.885616302490234 ], [ -71.432632446289062, -16.883506774902344 ], [ -71.433860778808594, -16.881885528564453 ], [ -71.434455871582031, -16.879087448120117 ], [ -71.4361572265625, -16.874650955200138 ], [ -71.436180114746094, -16.874107360839844 ], [ -71.436897277831974, -16.872703552246037 ], [ -71.437576293945312, -16.870117187499943 ], [ -71.438934326171875, -16.867902755737191 ], [ -71.439933776855412, -16.863994598388672 ], [ -71.440513610839787, -16.862533569335938 ], [ -71.440864562988281, -16.860067367553654 ], [ -71.440711975097599, -16.855840682983398 ], [ -71.441162109374943, -16.853078842163086 ], [ -71.441276550292912, -16.848937988281193 ], [ -71.441513061523438, -16.848140716552734 ], [ -71.441268920898381, -16.846878051757699 ], [ -71.441490173339844, -16.844032287597656 ], [ -71.441375732421818, -16.841899871826115 ], [ -71.440788269042912, -16.840473175048771 ], [ -71.438552856445312, -16.838754653930664 ], [ -71.438011169433537, -16.837671279907113 ], [ -71.437065124511662, -16.83723068237299 ], [ -71.436103820800724, -16.836341857910156 ], [ -71.435554504394474, -16.83556938171381 ], [ -71.435401916503906, -16.834739685058537 ], [ -71.436470031738281, -16.833240509033089 ], [ -71.437835693359318, -16.832622528076172 ], [ -71.438499450683537, -16.832067489624023 ], [ -71.4388427734375, -16.829833984375 ], [ -71.439369201660099, -16.829599380493164 ], [ -71.441169738769474, -16.829685211181584 ], [ -71.442031860351506, -16.828681945800781 ], [ -71.442535400390625, -16.82758903503418 ], [ -71.443145751953125, -16.824512481689453 ], [ -71.443138122558594, -16.818899154663086 ], [ -71.443702697753906, -16.817165374755859 ], [ -71.443984985351562, -16.815158843994141 ], [ -71.444328308105412, -16.809362411499023 ], [ -71.444129943847599, -16.806613922119084 ], [ -71.443450927734318, -16.805610656738281 ], [ -71.443069458007756, -16.803617477416935 ], [ -71.441955566406136, -16.801477432250977 ], [ -71.441490173339844, -16.799962997436523 ], [ -71.437469482421818, -16.796300888061523 ], [ -71.436714172363168, -16.795347213745117 ], [ -71.436683654785099, -16.794527053833008 ], [ -71.437080383300724, -16.793306350707951 ], [ -71.436943054199219, -16.791923522949162 ], [ -71.435592651367188, -16.790149688720703 ], [ -71.435111999511719, -16.79015922546381 ], [ -71.434654235839844, -16.789817810058537 ], [ -71.434425354003793, -16.788927078247013 ], [ -71.433685302734375, -16.788202285766602 ], [ -71.433662414550668, -16.787111282348576 ], [ -71.433082580566349, -16.786367416381722 ], [ -71.432960510253849, -16.784166336059513 ], [ -71.433311462402344, -16.783720016479492 ], [ -71.433662414550668, -16.78257942199707 ], [ -71.433547973632756, -16.780721664428654 ], [ -71.431739807128849, -16.776943206787053 ], [ -71.431152343749943, -16.77601242065424 ], [ -71.429191589355469, -16.774002075195256 ], [ -71.428741455078125, -16.772974014282227 ], [ -71.428482055664006, -16.770965576171761 ], [ -71.428718566894531, -16.770265579223633 ], [ -71.428718566894531, -16.768976211547795 ], [ -71.428001403808537, -16.767492294311523 ], [ -71.427780151367188, -16.766033172607422 ], [ -71.428497314453068, -16.763755798339844 ], [ -71.430313110351506, -16.759716033935547 ], [ -71.43032073974598, -16.758335113525391 ], [ -71.429595947265625, -16.754539489746037 ], [ -71.429840087890568, -16.751043319702092 ], [ -71.429237365722599, -16.749319076538086 ], [ -71.427566528320312, -16.746709823608398 ], [ -71.42726898193348, -16.744060516357365 ], [ -71.426055908203125, -16.742414474487305 ], [ -71.425590515136719, -16.740726470947209 ], [ -71.424751281738281, -16.739925384521484 ], [ -71.424247741699219, -16.739051818847656 ], [ -71.423210144042969, -16.738241195678711 ], [ -71.420928955078125, -16.737703323364201 ], [ -71.418693542480469, -16.73809814453125 ], [ -71.417747497558594, -16.737874984741211 ], [ -71.41473388671875, -16.734682083129883 ], [ -71.412406921386719, -16.732629776000977 ], [ -71.410171508789006, -16.731218338012638 ], [ -71.406372070312443, -16.729293823242188 ], [ -71.404792785644531, -16.72894096374506 ], [ -71.403083801269531, -16.728956222534066 ], [ -71.399642944335938, -16.730474472045842 ], [ -71.398391723632812, -16.730922698974609 ], [ -71.397331237792969, -16.731021881103516 ], [ -71.393981933593693, -16.730358123779297 ], [ -71.392181396484375, -16.72974967956543 ], [ -71.388534545898381, -16.727943420410099 ], [ -71.383247375488281, -16.726776123046818 ], [ -71.381729125976562, -16.725812911987305 ], [ -71.379295349121037, -16.724758148193359 ], [ -71.376640319824219, -16.722528457641545 ], [ -71.373886108398438, -16.721254348754883 ], [ -71.372589111328068, -16.720308303833008 ], [ -71.370712280273381, -16.719364166259709 ], [ -71.369911193847656, -16.719142913818303 ], [ -71.367538452148381, -16.71916389465332 ], [ -71.365486145019531, -16.719581604003906 ], [ -71.363487243652344, -16.7208251953125 ], [ -71.36187744140625, -16.721382141113281 ], [ -71.358818054199219, -16.722873687744084 ], [ -71.358345031738281, -16.722873687744084 ], [ -71.356094360351506, -16.724260330200138 ], [ -71.353355407714787, -16.725023269653263 ], [ -71.351768493652344, -16.726097106933594 ], [ -71.351318359375, -16.727243423461914 ], [ -71.351074218749886, -16.729927062988224 ], [ -71.350418090820312, -16.73105430603016 ], [ -71.349952697753906, -16.7325439453125 ], [ -71.348869323730412, -16.73406791687006 ], [ -71.348670959472599, -16.735706329345703 ], [ -71.346771240234318, -16.741113662719727 ], [ -71.346122741699219, -16.742212295532113 ], [ -71.345115661621094, -16.742925643920898 ], [ -71.344169616699162, -16.743965148925724 ], [ -71.340812683105469, -16.745620727539062 ], [ -71.337493896484318, -16.745941162109318 ], [ -71.33624267578125, -16.74639701843256 ], [ -71.332740783691349, -16.74681282043457 ], [ -71.330932617187443, -16.748298645019531 ], [ -71.330528259277344, -16.749019622802678 ], [ -71.327781677246037, -16.752174377441293 ], [ -71.327056884765625, -16.752414703369141 ], [ -71.326049804687443, -16.752080917358398 ], [ -71.324905395507756, -16.752079010009652 ], [ -71.324188232421875, -16.751811981201172 ], [ -71.321105957031193, -16.749204635620117 ], [ -71.318016052246094, -16.745828628539982 ], [ -71.317031860351562, -16.745260238647347 ], [ -71.315101623535099, -16.74473762512207 ], [ -71.314079284667969, -16.743898391723576 ], [ -71.313316345214844, -16.74232292175293 ], [ -71.313034057617188, -16.739765167236271 ], [ -71.311882019042969, -16.738311767578068 ], [ -71.31036376953125, -16.737741470336914 ], [ -71.309127807617188, -16.737739562988224 ], [ -71.305557250976506, -16.735635757446289 ], [ -71.304138183593693, -16.73567962646473 ], [ -71.302330017089787, -16.735105514526367 ], [ -71.301101684570199, -16.734397888183594 ], [ -71.299217224121094, -16.732578277587891 ], [ -71.298370361328125, -16.732238769531193 ], [ -71.296943664550781, -16.732257843017578 ], [ -71.296119689941349, -16.731990814208984 ], [ -71.294082641601562, -16.730058670043945 ], [ -71.291717529296818, -16.728672027587891 ], [ -71.290252685546875, -16.727497100830078 ], [ -71.289245605468693, -16.726253509521484 ], [ -71.288986206054574, -16.725381851196289 ], [ -71.288955688476506, -16.723901748657113 ], [ -71.289428710937443, -16.722511291503849 ], [ -71.289245605468693, -16.71966552734375 ], [ -71.288177490234375, -16.717058181762695 ], [ -71.286460876464844, -16.715204238891545 ], [ -71.286338806152344, -16.713922500610352 ], [ -71.286727905273438, -16.713529586791992 ], [ -71.287948608398438, -16.713396072387638 ], [ -71.28912353515625, -16.712636947631779 ], [ -71.293197631835938, -16.712236404418888 ], [ -71.296173095703125, -16.71063232421875 ], [ -71.297096252441293, -16.709701538085881 ], [ -71.297828674316349, -16.708007812499943 ], [ -71.298034667968693, -16.706821441650391 ], [ -71.29913330078125, -16.704692840576172 ], [ -71.298995971679631, -16.703769683837891 ], [ -71.297904968261719, -16.701719284057617 ], [ -71.297508239746094, -16.700305938720703 ], [ -71.297798156738281, -16.698486328124886 ], [ -71.298980712890568, -16.696596145629826 ], [ -71.298965454101506, -16.696315765380859 ], [ -71.298400878906193, -16.69483566284174 ], [ -71.296455383300781, -16.69257926940918 ], [ -71.296188354492188, -16.691986083984318 ], [ -71.292953491210938, -16.688997268676644 ], [ -71.288787841796818, -16.687110900878849 ], [ -71.286941528320312, -16.685831069946232 ], [ -71.284599304199105, -16.681837081909123 ], [ -71.284561157226562, -16.680364608764648 ], [ -71.285125732421875, -16.677099227905273 ], [ -71.285224914550781, -16.674890518188477 ], [ -71.284889221191293, -16.666809082031193 ], [ -71.283905029296818, -16.662693023681584 ], [ -71.282455444335938, -16.659753799438477 ], [ -71.28118896484375, -16.6579074859618 ], [ -71.280799865722656, -16.656583786010742 ], [ -71.281013488769531, -16.652074813842717 ], [ -71.280136108398438, -16.648494720458928 ], [ -71.280158996582031, -16.645273208618164 ], [ -71.279777526855469, -16.642913818359375 ], [ -71.279609680175724, -16.638025283813477 ], [ -71.279731750488224, -16.635736465454102 ], [ -71.280677795410099, -16.632162094116211 ], [ -71.280838012695312, -16.630054473876953 ], [ -71.279808044433537, -16.624250411987305 ], [ -71.279312133789062, -16.61562538146967 ], [ -71.278480529785099, -16.614391326904297 ], [ -71.277671813964844, -16.611164093017578 ], [ -71.275238037109318, -16.608142852783146 ], [ -71.274330139160156, -16.607315063476449 ], [ -71.273330688476506, -16.606817245483398 ], [ -71.270599365234375, -16.606426239013615 ], [ -71.263969421386662, -16.607534408569279 ], [ -71.26165771484375, -16.606464385986328 ], [ -71.260589599609375, -16.605047225952092 ], [ -71.26009368896473, -16.60224723815918 ], [ -71.260437011718693, -16.598583221435547 ], [ -71.260414123535156, -16.589559555053711 ], [ -71.260719299316406, -16.588680267333928 ], [ -71.261703491210881, -16.587821960449162 ], [ -71.261955261230469, -16.586742401123047 ], [ -71.262992858886719, -16.585535049438477 ], [ -71.262992858886719, -16.584714889526367 ], [ -71.260826110839787, -16.582365036010685 ], [ -71.26009368896473, -16.578653335571175 ], [ -71.259490966796818, -16.577198028564453 ], [ -71.257278442382812, -16.57563591003418 ], [ -71.25592041015625, -16.573326110839787 ], [ -71.254043579101562, -16.571884155273438 ], [ -71.253608703613168, -16.571298599243107 ], [ -71.251998901367188, -16.566947937011662 ], [ -71.249259948730469, -16.563901901245117 ], [ -71.248199462890625, -16.560644149780273 ], [ -71.247650146484375, -16.55323600769043 ], [ -71.247032165527344, -16.550355911254883 ], [ -71.246902465820256, -16.548610687255859 ], [ -71.246658325195312, -16.5482177734375 ], [ -71.246292114257812, -16.544368743896371 ], [ -71.244895935058537, -16.537645339965707 ], [ -71.244697570800781, -16.53148078918457 ], [ -71.244064331054631, -16.52461051940918 ], [ -71.243659973144474, -16.523187637329102 ], [ -71.242088317871094, -16.519739151000977 ], [ -71.240417480468693, -16.509105682373047 ], [ -71.239944458007756, -16.508420944213867 ], [ -71.239730834960938, -16.507234573364258 ], [ -71.238136291503849, -16.50455284118641 ], [ -71.237747192382756, -16.502607345581055 ], [ -71.239082336425724, -16.499778747558594 ], [ -71.2413330078125, -16.49682426452631 ], [ -71.243515014648438, -16.491880416870117 ], [ -71.246627807617131, -16.488346099853516 ], [ -71.247192382812443, -16.487110137939453 ], [ -71.2491455078125, -16.48472785949707 ], [ -71.249496459960881, -16.482162475585881 ], [ -71.249153137207031, -16.481353759765625 ], [ -71.246231079101506, -16.477909088134766 ], [ -71.244865417480469, -16.47536659240717 ], [ -71.244461059570312, -16.47370719909668 ], [ -71.244384765625, -16.472164154052678 ], [ -71.246490478515625, -16.46859169006342 ], [ -71.246658325195312, -16.46771049499506 ], [ -71.245437622070312, -16.465385437011662 ], [ -71.242805480956974, -16.462486267089844 ], [ -71.239280700683537, -16.464763641357422 ], [ -71.236976623535099, -16.465442657470703 ], [ -71.235397338867188, -16.464944839477482 ], [ -71.233261108398381, -16.464998245239258 ], [ -71.23262786865223, -16.464822769165039 ], [ -71.231346130371094, -16.463537216186467 ], [ -71.229194641113168, -16.460720062255803 ], [ -71.228500366210881, -16.460273742675781 ], [ -71.225288391113281, -16.459817886352482 ], [ -71.222511291503849, -16.460058212280273 ], [ -71.214591979980412, -16.461971282958871 ], [ -71.21282958984375, -16.462707519531193 ], [ -71.210243225097656, -16.462957382202092 ], [ -71.208831787109375, -16.46336555480957 ], [ -71.204345703125, -16.465549468994141 ], [ -71.201812744140568, -16.467775344848633 ], [ -71.20058441162098, -16.468404769897404 ], [ -71.198028564453125, -16.470756530761719 ], [ -71.195915222167969, -16.471639633178654 ], [ -71.191459655761719, -16.47169303894043 ], [ -71.186996459960938, -16.472515106201172 ], [ -71.184707641601562, -16.472166061401367 ], [ -71.1793212890625, -16.471851348876953 ], [ -71.175682067871037, -16.471170425414982 ], [ -71.169898986816406, -16.472005844116154 ], [ -71.1654052734375, -16.470586776733342 ], [ -71.162567138671875, -16.471029281616211 ], [ -71.159553527831974, -16.470495223998967 ], [ -71.158241271972543, -16.470941543579102 ], [ -71.155769348144531, -16.472202301025391 ], [ -71.154121398925724, -16.472553253173771 ], [ -71.153648376464787, -16.472850799560547 ], [ -71.148200988769474, -16.47340011596674 ], [ -71.146926879882812, -16.473934173583984 ], [ -71.142311096191293, -16.474365234374943 ], [ -71.140327453613281, -16.474807739257812 ], [ -71.139579772949219, -16.474758148193359 ], [ -71.138648986816406, -16.474361419677678 ], [ -71.137382507324219, -16.47304725646967 ], [ -71.137176513671875, -16.471645355224609 ], [ -71.137596130371094, -16.469614028930607 ], [ -71.137168884277344, -16.468542098999023 ], [ -71.136520385742188, -16.468240737915039 ], [ -71.134201049804631, -16.467937469482422 ], [ -71.133338928222599, -16.467613220214844 ], [ -71.131607055664006, -16.466245651245117 ], [ -71.130020141601562, -16.464258193969727 ], [ -71.128639221191349, -16.463520050048828 ], [ -71.126220703125, -16.461427688598576 ], [ -71.125274658203125, -16.461040496826172 ], [ -71.123794555664006, -16.46102142333973 ], [ -71.121688842773381, -16.461458206176758 ], [ -71.118896484375, -16.462644577026367 ], [ -71.114112854003906, -16.464107513427734 ], [ -71.11126708984375, -16.465688705444336 ], [ -71.110343933105412, -16.465978622436523 ], [ -71.109161376953125, -16.465604782104492 ], [ -71.108001708984375, -16.464706420898381 ], [ -71.106941223144531, -16.463335037231388 ], [ -71.106155395507756, -16.461515426635685 ], [ -71.105667114257756, -16.46110725402832 ], [ -71.105285644531193, -16.46112060546875 ], [ -71.1048583984375, -16.461463928222599 ], [ -71.104438781738224, -16.462738037109261 ], [ -71.103919982910156, -16.463388442993164 ], [ -71.100265502929688, -16.464048385620117 ], [ -71.098716735839787, -16.463947296142521 ], [ -71.097305297851562, -16.463226318359375 ], [ -71.095085144042912, -16.462572097778263 ], [ -71.094406127929631, -16.461954116821289 ], [ -71.093803405761719, -16.459951400756836 ], [ -71.092208862304631, -16.457294464111271 ], [ -71.091697692871094, -16.456789016723633 ], [ -71.089752197265568, -16.456779479980469 ], [ -71.086921691894531, -16.458124160766602 ], [ -71.085823059081974, -16.458320617675724 ], [ -71.084358215332031, -16.458032608032227 ], [ -71.082572937011719, -16.456752777099609 ], [ -71.081451416015568, -16.456588745117188 ], [ -71.080329895019531, -16.457143783569279 ], [ -71.078468322753906, -16.45867919921875 ], [ -71.077064514160099, -16.461702346801701 ], [ -71.076179504394531, -16.462614059448242 ], [ -71.075401306152344, -16.464702606201115 ], [ -71.074028015136605, -16.46565055847168 ], [ -71.072731018066406, -16.465688705444336 ], [ -71.0699462890625, -16.464176177978516 ], [ -71.066146850585938, -16.46249961853016 ], [ -71.064376831054631, -16.461339950561467 ], [ -71.063209533691406, -16.461038589477482 ], [ -71.060806274414062, -16.46097373962391 ], [ -71.057983398437443, -16.461540222167969 ], [ -71.056709289550781, -16.462076187133789 ], [ -71.055244445800668, -16.461933135986328 ], [ -71.054115295410156, -16.461126327514592 ], [ -71.049224853515568, -16.456071853637638 ], [ -71.047988891601506, -16.45527267456049 ], [ -71.0469970703125, -16.455451965331974 ], [ -71.046981811523438, -16.456445693969727 ], [ -71.048065185546818, -16.458612442016602 ], [ -71.048263549804631, -16.459707260131779 ], [ -71.048141479492188, -16.460472106933594 ], [ -71.047019958496037, -16.461578369140568 ], [ -71.044853210449219, -16.462404251098519 ], [ -71.043754577636719, -16.463058471679688 ], [ -71.042358398437443, -16.464738845825195 ], [ -71.041786193847599, -16.466352462768555 ], [ -71.041801452636719, -16.4671630859375 ], [ -71.042076110839787, -16.467601776122933 ], [ -71.044143676757756, -16.468452453613224 ], [ -71.044761657714844, -16.46900558471674 ], [ -71.045097351074162, -16.469743728637582 ], [ -71.045188903808594, -16.470636367797852 ], [ -71.043510437011605, -16.47363090515131 ], [ -71.042533874511662, -16.477714538574219 ], [ -71.0411376953125, -16.478464126586914 ], [ -71.039009094238224, -16.478559494018555 ], [ -71.037841796875, -16.479927062988281 ], [ -71.037322998046875, -16.481361389160156 ], [ -71.037422180175781, -16.483697891235352 ], [ -71.0377197265625, -16.485067367553654 ], [ -71.037216186523324, -16.485355377197266 ], [ -71.036750793457031, -16.485355377197266 ], [ -71.034927368163949, -16.484725952148438 ], [ -71.031974792480355, -16.485101699828988 ], [ -71.029617309570312, -16.485145568847543 ], [ -71.027687072753906, -16.485778808593693 ], [ -71.026145935058537, -16.486797332763672 ], [ -71.025627136230469, -16.486921310424805 ], [ -71.024032592773381, -16.486881256103516 ], [ -71.021621704101562, -16.48623085021967 ], [ -71.020103454589844, -16.48632621765131 ], [ -71.019096374511605, -16.486677169799805 ], [ -71.017234802246094, -16.489675521850472 ], [ -71.017135620117188, -16.492181777954102 ], [ -71.016830444335938, -16.49359130859375 ], [ -71.015571594238168, -16.494758605956974 ], [ -71.015426635742188, -16.495559692382812 ], [ -71.014701843261662, -16.496601104736328 ], [ -71.013984680175781, -16.498823165893498 ], [ -71.013458251953068, -16.499301910400391 ], [ -71.012725830078125, -16.499170303344727 ], [ -71.011688232421875, -16.49827766418457 ], [ -71.009635925292912, -16.497024536132812 ], [ -71.008148193359375, -16.495698928833008 ], [ -71.006500244140568, -16.49598312377924 ], [ -71.004615783691406, -16.49677658081049 ], [ -71.003402709960938, -16.498233795166016 ], [ -71.001968383789062, -16.499235153198242 ], [ -71.001365661621094, -16.498167037963754 ], [ -70.999191284179688, -16.497621536254883 ], [ -70.996826171875, -16.497367858886719 ], [ -70.995941162109375, -16.496946334838867 ], [ -70.994171142578068, -16.496639251708984 ], [ -70.992561340331974, -16.495346069335881 ], [ -70.991493225097656, -16.495000839233342 ], [ -70.991134643554631, -16.494615554809513 ], [ -70.98907470703125, -16.491716384887695 ], [ -70.986434936523438, -16.488758087158146 ], [ -70.985816955566293, -16.487403869628849 ], [ -70.985816955566293, -16.486457824706974 ], [ -70.984054565429688, -16.484737396240178 ], [ -70.983283996582031, -16.483297348022461 ], [ -70.980560302734318, -16.480995178222656 ], [ -70.980140686035156, -16.481016159057617 ], [ -70.979026794433537, -16.480184555053711 ], [ -70.9775390625, -16.479850769042969 ], [ -70.974319458007812, -16.479812622070312 ], [ -70.971611022949219, -16.480438232421818 ], [ -70.969802856445312, -16.480520248412972 ], [ -70.967262268066406, -16.480344772338867 ], [ -70.965568542480412, -16.479843139648438 ], [ -70.961669921874943, -16.476726531982365 ], [ -70.959152221679688, -16.47316932678217 ], [ -70.957595825195312, -16.472572326660156 ], [ -70.956840515136719, -16.47197151184082 ], [ -70.954765319824219, -16.468772888183594 ], [ -70.954093933105469, -16.467136383056641 ], [ -70.953720092773438, -16.464721679687443 ], [ -70.953590393066406, -16.461751937866211 ], [ -70.953948974609318, -16.459781646728402 ], [ -70.955223083496094, -16.456901550292912 ], [ -70.95635986328125, -16.455923080444336 ], [ -70.95796966552723, -16.453716278076172 ], [ -70.961311340332031, -16.45176887512207 ], [ -70.962776184082031, -16.450515747070256 ], [ -70.963722229003906, -16.449199676513672 ], [ -70.965255737304688, -16.446317672729492 ], [ -70.965499877929574, -16.443397521972656 ], [ -70.966094970703125, -16.442026138305664 ], [ -70.966194152832031, -16.441091537475586 ], [ -70.964736938476449, -16.43587684631342 ], [ -70.964813232421818, -16.434658050537109 ], [ -70.965385437011662, -16.433559417724609 ], [ -70.966041564941349, -16.432861328124943 ], [ -70.969665527343693, -16.431137084960881 ], [ -70.971855163574162, -16.428707122802734 ], [ -70.974311828613281, -16.424018859863168 ], [ -70.974441528320256, -16.422262191772461 ], [ -70.975715637207031, -16.418388366699105 ], [ -70.975738525390625, -16.414049148559457 ], [ -70.975212097167912, -16.410331726074219 ], [ -70.974205017089844, -16.409780502319336 ], [ -70.97017669677723, -16.408655166625977 ], [ -70.968246459960881, -16.407293319702148 ], [ -70.966865539550781, -16.405597686767521 ], [ -70.96551513671875, -16.403362274169922 ], [ -70.964775085449219, -16.401760101318303 ], [ -70.964103698730469, -16.399402618408146 ], [ -70.964698791503906, -16.398485183715763 ], [ -70.964706420898381, -16.397672653198242 ], [ -70.965080261230469, -16.397274017333984 ], [ -70.969131469726562, -16.395818710327092 ], [ -70.973052978515625, -16.393514633178654 ], [ -70.973907470703125, -16.392454147338867 ], [ -70.974884033203125, -16.389921188354379 ], [ -70.975189208984375, -16.38776969909668 ], [ -70.975059509277344, -16.38548469543457 ], [ -70.973617553710938, -16.381235122680607 ], [ -70.972679138183594, -16.377004623413086 ], [ -70.969551086425781, -16.372198104858398 ], [ -70.969520568847656, -16.370052337646484 ], [ -70.970413208007812, -16.36793136596674 ], [ -70.973701477050668, -16.363763809204045 ], [ -70.975852966308594, -16.36046028137207 ], [ -70.975563049316406, -16.358396530151367 ], [ -70.973533630371094, -16.354234695434513 ], [ -70.9732666015625, -16.352741241455021 ], [ -70.973915100097656, -16.35177040100092 ], [ -70.976745605468693, -16.349128723144474 ], [ -70.978401184082031, -16.346469879150334 ], [ -70.979042053222543, -16.344686508178654 ], [ -70.979423522949105, -16.34222221374506 ], [ -70.979194641113281, -16.338321685791016 ], [ -70.979446411132812, -16.336187362670898 ], [ -70.979095458984375, -16.335027694702148 ], [ -70.979057312011719, -16.333671569824162 ], [ -70.980659484863224, -16.329929351806641 ], [ -70.982330322265625, -16.326833724975586 ], [ -70.984451293945256, -16.324888229370117 ], [ -70.986183166503849, -16.322126388549805 ], [ -70.986190795898381, -16.32145881652832 ], [ -70.985260009765625, -16.318778991699219 ], [ -70.985061645507812, -16.314273834228516 ], [ -70.985496520996037, -16.312297821044922 ], [ -70.986640930175724, -16.310451507568359 ], [ -70.986518859863281, -16.309637069702148 ], [ -70.985595703124943, -16.308826446533203 ], [ -70.984275817871037, -16.308412551879883 ], [ -70.980163574218693, -16.309198379516602 ], [ -70.978790283203125, -16.309282302856445 ], [ -70.9759521484375, -16.307878494262638 ], [ -70.973480224609318, -16.309074401855412 ], [ -70.964187622070312, -16.308246612548828 ], [ -70.960151672363224, -16.308313369750977 ], [ -70.956008911132812, -16.308837890625 ], [ -70.954780578613281, -16.30860710144043 ], [ -70.953094482421818, -16.308692932128849 ], [ -70.952026367187443, -16.308942794799748 ], [ -70.951042175292969, -16.309465408325195 ], [ -70.945945739746037, -16.313850402831974 ], [ -70.944725036621094, -16.314277648925781 ], [ -70.943931579589787, -16.314208984375 ], [ -70.942893981933537, -16.313692092895451 ], [ -70.942337036132812, -16.313095092773381 ], [ -70.940620422363281, -16.309408187866154 ], [ -70.940177917480469, -16.307432174682504 ], [ -70.940101623535099, -16.30528450012207 ], [ -70.939407348632812, -16.302537918090763 ], [ -70.939384460449219, -16.299749374389648 ], [ -70.939109802246094, -16.299005508422795 ], [ -70.937072753906193, -16.297225952148438 ], [ -70.932601928710824, -16.293937683105355 ], [ -70.930366516113281, -16.292856216430664 ], [ -70.928230285644531, -16.291120529174691 ], [ -70.921394348144531, -16.286964416503849 ], [ -70.919754028320312, -16.285129547119084 ], [ -70.915740966796875, -16.282020568847656 ], [ -70.914131164550781, -16.281564712524357 ], [ -70.912734985351506, -16.281484603881779 ], [ -70.912139892578125, -16.281129837036133 ], [ -70.908866882324219, -16.280443191528207 ], [ -70.904029846191406, -16.277761459350529 ], [ -70.9027099609375, -16.277383804321232 ], [ -70.897994995117188, -16.278654098510742 ], [ -70.893592834472543, -16.280330657958984 ], [ -70.891479492187443, -16.281621932983398 ], [ -70.888153076171818, -16.284107208251896 ], [ -70.886932373046875, -16.284700393676701 ], [ -70.88372802734375, -16.285060882568303 ], [ -70.882301330566406, -16.28486251831049 ], [ -70.881263732910099, -16.284454345703125 ], [ -70.877944946289006, -16.282169342040959 ], [ -70.876708984374943, -16.280755996704102 ], [ -70.875770568847656, -16.278961181640511 ], [ -70.874641418457031, -16.27589035034174 ], [ -70.874435424804688, -16.272270202636662 ], [ -70.873535156249943, -16.269447326660156 ], [ -70.872695922851506, -16.268365859985352 ], [ -70.868263244628906, -16.264102935791016 ], [ -70.864356994628906, -16.256349563598633 ], [ -70.861381530761719, -16.252296447753906 ], [ -70.859924316406193, -16.248947143554688 ], [ -70.856918334960938, -16.243938446044865 ], [ -70.855682373046875, -16.242668151855469 ], [ -70.854057312011719, -16.241590499877873 ], [ -70.84832763671875, -16.239162445068303 ], [ -70.845527648925668, -16.23684120178217 ], [ -70.844642639160099, -16.235687255859375 ], [ -70.844619750976562, -16.234054565429688 ], [ -70.84576416015625, -16.231723785400334 ], [ -70.847557067871094, -16.229864120483342 ], [ -70.849624633789006, -16.228254318237248 ], [ -70.852195739746037, -16.227212905883732 ], [ -70.854911804199219, -16.226625442504826 ], [ -70.865036010742188, -16.225822448730412 ], [ -70.866615295410156, -16.225275039672852 ], [ -70.867172241210881, -16.224655151367188 ], [ -70.867034912109375, -16.220359802246094 ], [ -70.866424560546875, -16.218280792236271 ], [ -70.862678527831974, -16.214302062988168 ], [ -70.858612060546875, -16.211027145385742 ], [ -70.858352661132812, -16.209571838378906 ], [ -70.857803344726506, -16.208488464355355 ], [ -70.855422973632756, -16.206466674804631 ], [ -70.854598999023438, -16.205060958862305 ], [ -70.85406494140625, -16.202291488647461 ], [ -70.85406494140625, -16.196491241455078 ], [ -70.854301452636605, -16.192607879638672 ], [ -70.854988098144531, -16.189437866210938 ], [ -70.856552124023438, -16.184263229370117 ], [ -70.857505798339844, -16.181892395019531 ], [ -70.85870361328125, -16.179912567138672 ], [ -70.86183929443348, -16.176113128662109 ], [ -70.865272521972543, -16.172605514526367 ], [ -70.86627197265625, -16.172086715698185 ], [ -70.868125915527287, -16.171571731567383 ], [ -70.870758056640625, -16.17119026184082 ], [ -70.873558044433537, -16.171127319335938 ], [ -70.874481201171875, -16.17083740234375 ], [ -70.877090454101506, -16.168994903564396 ], [ -70.878211975097599, -16.167800903320312 ], [ -70.878761291503906, -16.166421890258789 ], [ -70.878662109375, -16.165216445922795 ], [ -70.878097534179688, -16.163955688476562 ], [ -70.876487731933537, -16.162298202514648 ], [ -70.872291564941349, -16.158735275268498 ], [ -70.871459960937443, -16.157682418823185 ], [ -70.869880676269531, -16.154657363891602 ], [ -70.86865234375, -16.153190612792969 ], [ -70.86794281005848, -16.151292800903263 ], [ -70.867645263671818, -16.148704528808594 ], [ -70.867729187011662, -16.146993637084904 ], [ -70.867919921874943, -16.146518707275391 ], [ -70.872322082519474, -16.143148422241211 ], [ -70.872688293456974, -16.141721725463867 ], [ -70.8717041015625, -16.137798309326115 ], [ -70.871726989746037, -16.134035110473576 ], [ -70.868637084960938, -16.130422592163029 ], [ -70.867759704589844, -16.128593444824219 ], [ -70.867866516113281, -16.127124786376896 ], [ -70.868972778320256, -16.126106262207031 ], [ -70.870750427246094, -16.126106262207031 ], [ -70.87530517578125, -16.124887466430607 ], [ -70.877616882324219, -16.123632431030217 ], [ -70.886245727539006, -16.117927551269531 ], [ -70.888343811035099, -16.115604400634766 ], [ -70.889610290527344, -16.1121826171875 ], [ -70.890464782714844, -16.110620498657227 ], [ -70.895713806152344, -16.106851577758732 ], [ -70.896003723144531, -16.106370925903263 ], [ -70.895584106445256, -16.104837417602482 ], [ -70.894729614257756, -16.103441238403207 ], [ -70.892723083496037, -16.101554870605412 ], [ -70.891159057617188, -16.100433349609261 ], [ -70.887466430664006, -16.099109649658203 ], [ -70.886917114257699, -16.099412918090763 ], [ -70.885658264160099, -16.10072135925293 ], [ -70.884979248046818, -16.100711822509709 ], [ -70.882904052734318, -16.099596023559513 ], [ -70.880043029785099, -16.097034454345703 ], [ -70.87677001953125, -16.095537185668945 ], [ -70.875228881835938, -16.094388961791992 ], [ -70.874855041503906, -16.093235015869141 ], [ -70.87490081787098, -16.091621398925781 ], [ -70.876106262206974, -16.087476730346623 ], [ -70.877891540527344, -16.083253860473633 ], [ -70.878189086914062, -16.082061767578125 ], [ -70.877998352050781, -16.081226348876953 ], [ -70.873435974121037, -16.081283569335938 ], [ -70.870254516601562, -16.080968856811523 ], [ -70.867507934570312, -16.079986572265625 ], [ -70.865951538085938, -16.078657150268555 ], [ -70.865730285644474, -16.078012466430664 ], [ -70.866104125976506, -16.074811935424748 ], [ -70.866111755371037, -16.071977615356445 ], [ -70.865715026855412, -16.069471359252873 ], [ -70.8646240234375, -16.067129135131836 ], [ -70.860496520996037, -16.061550140380859 ], [ -70.859718322753849, -16.059675216674805 ], [ -70.858558654785099, -16.057830810546875 ], [ -70.857528686523381, -16.05656623840332 ], [ -70.856712341308594, -16.05602836608881 ], [ -70.851478576660156, -16.055322647094727 ], [ -70.850425720214844, -16.054977416992188 ], [ -70.847648620605469, -16.054969787597656 ], [ -70.844772338867188, -16.055488586425724 ], [ -70.841995239257756, -16.055418014526367 ], [ -70.840202331542969, -16.05517578125 ], [ -70.837394714355412, -16.054389953613281 ], [ -70.834754943847543, -16.054285049438477 ], [ -70.833129882812386, -16.053909301757812 ], [ -70.830207824707031, -16.053888320922852 ], [ -70.826217651367188, -16.053298950195256 ], [ -70.820945739746094, -16.053609848022461 ], [ -70.812316894531193, -16.053548812866154 ], [ -70.810394287109375, -16.053869247436523 ], [ -70.806724548339844, -16.055397033691349 ], [ -70.805328369140625, -16.055440902709904 ], [ -70.804687499999943, -16.054941177368164 ], [ -70.804252624511719, -16.053634643554688 ], [ -70.804290771484375, -16.052850723266602 ], [ -70.805198669433594, -16.050296783447266 ], [ -70.806816101074219, -16.042102813720703 ], [ -70.807533264160156, -16.040637969970589 ], [ -70.810035705566349, -16.03830528259266 ], [ -70.813461303710881, -16.036251068115121 ], [ -70.815635681152344, -16.035392761230355 ], [ -70.81878662109375, -16.033172607421818 ], [ -70.820297241210938, -16.031425476074219 ], [ -70.821121215820312, -16.029556274414006 ], [ -70.821136474609375, -16.028484344482422 ], [ -70.819877624511605, -16.025789260864201 ], [ -70.819076538085881, -16.023077011108398 ], [ -70.816246032714787, -16.01994514465332 ], [ -70.815109252929574, -16.017623901367131 ], [ -70.814163208007812, -16.014808654785156 ], [ -70.813957214355412, -16.012811660766545 ], [ -70.814193725585938, -16.00958061218256 ], [ -70.816726684570199, -16.002565383911133 ], [ -70.817932128906193, -16.001461029052734 ], [ -70.820030212402287, -16.000690460205078 ], [ -70.827621459960938, -16.000396728515511 ], [ -70.828254699706974, -15.999957084655705 ], [ -70.829139709472656, -15.998451232910099 ], [ -70.829269409179688, -15.995295524597111 ], [ -70.828422546386662, -15.990867614746094 ], [ -70.827705383300781, -15.988960266113281 ], [ -70.825561523437443, -15.986149787902832 ], [ -70.824684143066406, -15.983615875244141 ], [ -70.82391357421875, -15.982130050659066 ], [ -70.821006774902287, -15.978412628173828 ], [ -70.820091247558594, -15.978448867797852 ], [ -70.817932128906193, -15.979634284973145 ], [ -70.810661315917969, -15.986869812011719 ], [ -70.8089599609375, -15.987485885620117 ], [ -70.807731628417912, -15.987597465515137 ], [ -70.806243896484375, -15.986810684204102 ], [ -70.805557250976506, -15.986020088195687 ], [ -70.805175781249943, -15.985183715820312 ], [ -70.804481506347656, -15.981653213500863 ], [ -70.804397583007756, -15.978340148925724 ], [ -70.804054260253906, -15.97626781463623 ], [ -70.803581237792969, -15.974995613098145 ], [ -70.802803039550668, -15.974475860595703 ], [ -70.801773071289062, -15.974267005920353 ], [ -70.801124572753906, -15.974344253540039 ], [ -70.800155639648438, -15.974884033203125 ], [ -70.798995971679688, -15.975972175598088 ], [ -70.797637939453068, -15.977847099304142 ], [ -70.795997619628849, -15.979630470275765 ], [ -70.794578552246037, -15.982405662536564 ], [ -70.794265747070312, -15.985511779785099 ], [ -70.794708251953125, -15.987208366393929 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-PAS", "NAME_0": "Peru", "ID_1": 20, "NAME_1": "Pasco", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.566841125488224, -9.579389572143555 ], [ -74.560890197753906, -9.580569267272949 ], [ -74.559883117675724, -9.580458641052246 ], [ -74.558158874511662, -9.58080959320057 ], [ -74.556877136230469, -9.580698966979924 ], [ -74.556739807128849, -9.580707550048771 ], [ -74.551918029785156, -9.580969810485783 ], [ -74.550445556640568, -9.581398010253849 ], [ -74.549522399902344, -9.581669807434082 ], [ -74.548843383789062, -9.581986427307072 ], [ -74.546928405761605, -9.582883834838754 ], [ -74.545143127441406, -9.584193229675293 ], [ -74.541557312011662, -9.587668418884221 ], [ -74.540756225585938, -9.58812427520752 ], [ -74.538909912109318, -9.589179039001408 ], [ -74.537834167480412, -9.590082168579102 ], [ -74.535301208496094, -9.592210769653263 ], [ -74.533615112304688, -9.593199729919377 ], [ -74.533065795898381, -9.593521118164062 ], [ -74.531158447265568, -9.594264030456543 ], [ -74.530662536621094, -9.594459533691349 ], [ -74.525917053222599, -9.595157623291016 ], [ -74.521888732910156, -9.596798896789551 ], [ -74.520362854003906, -9.597420692443791 ], [ -74.518829345703125, -9.598320960998535 ], [ -74.514328002929688, -9.600969314575138 ], [ -74.510780334472599, -9.602510452270451 ], [ -74.507560729980469, -9.603908538818303 ], [ -74.504936218261662, -9.605278968811035 ], [ -74.503776550292969, -9.605990409851074 ], [ -74.5035400390625, -9.606295585632324 ], [ -74.503273010253906, -9.606639862060547 ], [ -74.503013610839844, -9.606680870056152 ], [ -74.502830505371094, -9.606710433959904 ], [ -74.501785278320256, -9.607694625854492 ], [ -74.501220703124943, -9.608230590820312 ], [ -74.501037597656193, -9.60863018035883 ], [ -74.500373840331974, -9.609078407287541 ], [ -74.499961853027344, -9.609358787536621 ], [ -74.498291015624886, -9.609786987304688 ], [ -74.496452331542912, -9.610815048217717 ], [ -74.495475769042969, -9.611057281494084 ], [ -74.492317199707031, -9.613884925842285 ], [ -74.489997863769531, -9.615477561950684 ], [ -74.489280700683594, -9.615970611572266 ], [ -74.488578796386719, -9.616669654846191 ], [ -74.486808776855469, -9.618438720703125 ], [ -74.48583984375, -9.619072914123478 ], [ -74.48480224609375, -9.619749069213867 ], [ -74.483581542968693, -9.620849609375 ], [ -74.482337951660099, -9.621969223022404 ], [ -74.480628967285099, -9.623046874999943 ], [ -74.479278564453068, -9.624547004699707 ], [ -74.478446960449162, -9.626399993896428 ], [ -74.478332519531193, -9.627426147460938 ], [ -74.478271484375, -9.627961158752385 ], [ -74.479782104492131, -9.633259773254395 ], [ -74.479339599609375, -9.637919425964299 ], [ -74.479385375976506, -9.639858245849553 ], [ -74.480316162109375, -9.644149780273381 ], [ -74.481842041015625, -9.647698402404728 ], [ -74.482032775878906, -9.649628639221191 ], [ -74.481498718261662, -9.650656700134277 ], [ -74.4813232421875, -9.650999069213867 ], [ -74.479759216308537, -9.651655197143555 ], [ -74.47894287109375, -9.651999473571777 ], [ -74.477485656738224, -9.653268814086914 ], [ -74.477073669433594, -9.654018402099609 ], [ -74.476547241210824, -9.654959678649902 ], [ -74.475692749023438, -9.657770156860352 ], [ -74.475402832031136, -9.663891792297306 ], [ -74.475227355957031, -9.667689323425179 ], [ -74.475227355957031, -9.66862773895258 ], [ -74.475227355957031, -9.670989036560059 ], [ -74.475585937499943, -9.673909187316838 ], [ -74.475349426269531, -9.677210807800236 ], [ -74.475227355957031, -9.678850173950195 ], [ -74.475227355957031, -9.680282592773381 ], [ -74.475227355957031, -9.683899879455566 ], [ -74.475753784179631, -9.687359809875431 ], [ -74.475997924804688, -9.688989639282227 ], [ -74.476104736328125, -9.69064903259266 ], [ -74.476272583007812, -9.693127632141113 ], [ -74.475936889648438, -9.694560050964299 ], [ -74.474327087402287, -9.698768615722599 ], [ -74.474403381347656, -9.710269927978516 ], [ -74.473724365234375, -9.713936805725098 ], [ -74.4732666015625, -9.716409683227539 ], [ -74.473167419433594, -9.721378326415959 ], [ -74.47265625, -9.722452163696289 ], [ -74.472251892089787, -9.722883224487191 ], [ -74.471511840820312, -9.723669052124023 ], [ -74.470069885253906, -9.724489212036076 ], [ -74.469833374023438, -9.72453498840332 ], [ -74.469451904296875, -9.724610328674316 ], [ -74.469131469726562, -9.724938392639103 ], [ -74.467979431152344, -9.725323677062931 ], [ -74.467391967773324, -9.725517272949219 ], [ -74.466690063476506, -9.726094245910588 ], [ -74.464836120605469, -9.727060317993107 ], [ -74.4622802734375, -9.728388786315918 ], [ -74.460639953613281, -9.730266571044865 ], [ -74.460037231445256, -9.730959892272949 ], [ -74.458992004394474, -9.732619285583439 ], [ -74.458518981933537, -9.733368873596191 ], [ -74.456520080566293, -9.737909317016602 ], [ -74.455726623535099, -9.740810394287109 ], [ -74.455116271972656, -9.746020317077637 ], [ -74.454818725585938, -9.747486114501953 ], [ -74.454536437988281, -9.748889923095703 ], [ -74.453208923339844, -9.752716064453125 ], [ -74.449615478515625, -9.759865760803223 ], [ -74.44818115234375, -9.763366699218636 ], [ -74.447242736816349, -9.765650749206543 ], [ -74.445602416992188, -9.7715806961059 ], [ -74.445480346679688, -9.77424144744873 ], [ -74.445762634277344, -9.779209136962891 ], [ -74.446281433105412, -9.782088279724121 ], [ -74.446281433105412, -9.783200263976994 ], [ -74.446563720703125, -9.784507751464787 ], [ -74.446907043457031, -9.786068916320744 ], [ -74.447319030761719, -9.790210723876953 ], [ -74.447341918945256, -9.792791366577148 ], [ -74.447425842285099, -9.803370475768986 ], [ -74.447647094726506, -9.805774688720646 ], [ -74.447669982910156, -9.806020736694279 ], [ -74.447647094726506, -9.806586265563965 ], [ -74.44732666015625, -9.815580368041879 ], [ -74.447746276855355, -9.819401741027832 ], [ -74.448165893554688, -9.823248863220215 ], [ -74.448089599609375, -9.825395584106388 ], [ -74.448013305664006, -9.827489852905217 ], [ -74.447792053222656, -9.829531669616699 ], [ -74.447517395019531, -9.832059860229435 ], [ -74.447921752929631, -9.837499618530217 ], [ -74.447898864746094, -9.838535308837891 ], [ -74.447853088378906, -9.840629577636719 ], [ -74.446647644042969, -9.847869873046875 ], [ -74.445777893066406, -9.849673271179199 ], [ -74.442413330078125, -9.856650352478027 ], [ -74.434173583984318, -9.869023323059025 ], [ -74.433746337890625, -9.869659423828125 ], [ -74.43292236328125, -9.871440887451172 ], [ -74.429733276367188, -9.878329277038517 ], [ -74.42803955078125, -9.881288528442269 ], [ -74.426307678222656, -9.883428573608398 ], [ -74.419151306152344, -9.891098976135254 ], [ -74.418525695800781, -9.891983032226506 ], [ -74.416946411132812, -9.894219398498478 ], [ -74.413932800292969, -9.897822380065918 ], [ -74.413558959960938, -9.898270606994629 ], [ -74.412918090820256, -9.899165153503418 ], [ -74.410469055175781, -9.90259933471674 ], [ -74.409065246582031, -9.905497550964355 ], [ -74.406852722167969, -9.911349296569767 ], [ -74.405578613281193, -9.916618347167912 ], [ -74.405235290527344, -9.918373107910156 ], [ -74.40460205078125, -9.921660423278809 ], [ -74.404373168945312, -9.924309730529785 ], [ -74.403671264648381, -9.927439689636174 ], [ -74.402397155761719, -9.931770324706974 ], [ -74.400993347167912, -9.935681343078613 ], [ -74.400337219238224, -9.937508583068791 ], [ -74.398475646972656, -9.945381164550781 ], [ -74.398017883300781, -9.951519012451115 ], [ -74.397453308105412, -9.955989837646428 ], [ -74.397293090820256, -9.963859558105469 ], [ -74.397087097167912, -9.973739624023381 ], [ -74.396400451660156, -9.978569984436035 ], [ -74.396171569824219, -9.98292064666748 ], [ -74.396240234374943, -9.98533916473383 ], [ -74.396278381347656, -9.986598968505803 ], [ -74.396369934082031, -9.987351417541504 ], [ -74.396797180175724, -9.990708351135254 ], [ -74.396942138671875, -9.99419975280756 ], [ -74.396575927734375, -9.9996080398559 ], [ -74.396690368652287, -10.003080368041992 ], [ -74.396232604980412, -10.006619453430176 ], [ -74.3955078125, -10.009230613708496 ], [ -74.394805908203068, -10.011768341064396 ], [ -74.3939208984375, -10.013377189636174 ], [ -74.393226623535156, -10.01418304443348 ], [ -74.390861511230469, -10.016929626464787 ], [ -74.387008666992188, -10.019781112670898 ], [ -74.386680603027287, -10.020259857177678 ], [ -74.386276245117188, -10.0208482742309 ], [ -74.385826110839787, -10.022331237792969 ], [ -74.385917663574162, -10.023728370666447 ], [ -74.386093139648438, -10.024271011352539 ], [ -74.386512756347599, -10.025559425354004 ], [ -74.390602111816349, -10.032899856567326 ], [ -74.392387390136719, -10.037520408630314 ], [ -74.393257141113224, -10.040329933166447 ], [ -74.393470764160099, -10.043089866638184 ], [ -74.393226623535156, -10.044329643249512 ], [ -74.392837524414062, -10.04627799987793 ], [ -74.392478942871094, -10.047491073608342 ], [ -74.391853332519474, -10.049580574035588 ], [ -74.390098571777344, -10.054219245910645 ], [ -74.389869689941406, -10.054818153381291 ], [ -74.387702941894531, -10.058417320251465 ], [ -74.386642456054688, -10.060170173644963 ], [ -74.386054992675781, -10.061616897582951 ], [ -74.384956359863281, -10.064329147338867 ], [ -74.384429931640625, -10.065088272094727 ], [ -74.383026123046875, -10.066300392150879 ], [ -74.378509521484261, -10.069188117980957 ], [ -74.3751220703125, -10.072136878967285 ], [ -74.374061584472656, -10.073058128356934 ], [ -74.368118286132812, -10.077574729919377 ], [ -74.355331420898381, -10.084506034851017 ], [ -74.349769592285099, -10.08887767791748 ], [ -74.348266601562443, -10.090058326721191 ], [ -74.347648620605469, -10.090888023376465 ], [ -74.344642639160099, -10.094928741455021 ], [ -74.342567443847656, -10.098679542541447 ], [ -74.340232849121037, -10.102890014648438 ], [ -74.339332580566406, -10.105282783508187 ], [ -74.338287353515625, -10.108058929443359 ], [ -74.335670471191349, -10.11754035949707 ], [ -74.334877014160156, -10.119219779968205 ], [ -74.330093383789062, -10.124597549438477 ], [ -74.321327209472656, -10.131340026855469 ], [ -74.314369201660156, -10.138430595397949 ], [ -74.313606262207031, -10.139808654785156 ], [ -74.311996459960938, -10.144365310668945 ], [ -74.311798095703125, -10.144919395446777 ], [ -74.308570861816349, -10.149389266967773 ], [ -74.306236267089844, -10.153999328613281 ], [ -74.304519653320312, -10.156613349914551 ], [ -74.303306579589844, -10.158448219299316 ], [ -74.300430297851562, -10.16143798828125 ], [ -74.299079895019531, -10.162487030029297 ], [ -74.293373107910156, -10.166919708251953 ], [ -74.289840698242188, -10.17011547088623 ], [ -74.288520812988281, -10.171309471130314 ], [ -74.28631591796875, -10.172746658325195 ], [ -74.285667419433594, -10.173169136047306 ], [ -74.283378601074219, -10.174359321594238 ], [ -74.27783203125, -10.178580284118652 ], [ -74.27532958984375, -10.181330680847111 ], [ -74.274841308593693, -10.181868553161621 ], [ -74.271461486816406, -10.186235427856388 ], [ -74.267227172851562, -10.190340042114201 ], [ -74.26226806640625, -10.197269439697209 ], [ -74.259819030761719, -10.199631690979004 ], [ -74.255447387695312, -10.203850746154785 ], [ -74.253517150878906, -10.206540107726994 ], [ -74.251007080078125, -10.208998680114746 ], [ -74.248741149902344, -10.212079048156681 ], [ -74.247276306152287, -10.214079856872559 ], [ -74.247650146484318, -10.215119361877385 ], [ -74.248039245605412, -10.21562671661377 ], [ -74.248489379882756, -10.216219902038517 ], [ -74.249176025390568, -10.217618942260685 ], [ -74.250694274902287, -10.219416618347168 ], [ -74.253166198730412, -10.222348213195801 ], [ -74.254585266113281, -10.223587989807129 ], [ -74.256782531738281, -10.225508689880371 ], [ -74.261238098144531, -10.228354454040414 ], [ -74.264022827148438, -10.230129241943359 ], [ -74.266342163085881, -10.231049537658635 ], [ -74.266693115234375, -10.23118877410883 ], [ -74.275543212890625, -10.233889579772949 ], [ -74.277877807617131, -10.234416007995605 ], [ -74.278602600097656, -10.234578132629338 ], [ -74.284339904785156, -10.236449241638127 ], [ -74.288261413574162, -10.237098693847656 ], [ -74.290550231933537, -10.237707138061523 ], [ -74.296569824218693, -10.239310264587346 ], [ -74.302825927734375, -10.241278648376465 ], [ -74.304420471191406, -10.24217510223383 ], [ -74.305549621581974, -10.242810249328613 ], [ -74.307991027832031, -10.24462890625 ], [ -74.310104370117131, -10.246596336364746 ], [ -74.310562133789062, -10.247019767761174 ], [ -74.317550659179631, -10.255728721618652 ], [ -74.321983337402344, -10.260038375854492 ], [ -74.322257995605469, -10.260202407836914 ], [ -74.323631286621094, -10.261020660400391 ], [ -74.325485229492074, -10.261633872985726 ], [ -74.328117370605469, -10.262509346008244 ], [ -74.329338073730469, -10.263114929199219 ], [ -74.330352783203125, -10.263619422912598 ], [ -74.330993652343693, -10.26411056518549 ], [ -74.332992553710881, -10.26563835144043 ], [ -74.334175109863281, -10.266804695129338 ], [ -74.335357666015625, -10.267970085144043 ], [ -74.338264465331918, -10.270464897155762 ], [ -74.339141845703125, -10.271222114562875 ], [ -74.341873168945256, -10.272950172424316 ], [ -74.342109680175781, -10.273038864135685 ], [ -74.344482421875, -10.273929595947209 ], [ -74.3514404296875, -10.274519920349121 ], [ -74.356597900390625, -10.274959564208984 ], [ -74.358207702636719, -10.274688720703068 ], [ -74.361427307128849, -10.273050308227482 ], [ -74.363128662109318, -10.272632598876953 ], [ -74.366050720214844, -10.270918846130371 ], [ -74.368461608886662, -10.269506454467717 ], [ -74.378868103027287, -10.258980751037541 ], [ -74.379150390624943, -10.258816719055119 ], [ -74.381179809570199, -10.257636070251465 ], [ -74.383361816406193, -10.256858825683537 ], [ -74.384307861328068, -10.256519317626953 ], [ -74.387863159179688, -10.255840301513558 ], [ -74.389785766601562, -10.255840301513558 ], [ -74.392951965332031, -10.256879806518555 ], [ -74.395378112792912, -10.258408546447697 ], [ -74.397064208984375, -10.25977611541748 ], [ -74.397232055664062, -10.259910583496037 ], [ -74.398666381835938, -10.26183032989502 ], [ -74.399444580078125, -10.264252662658635 ], [ -74.39959716796875, -10.264738082885685 ], [ -74.399658203124943, -10.265425682067814 ], [ -74.399856567382756, -10.267668724060059 ], [ -74.399490356445199, -10.270110130310002 ], [ -74.398170471191406, -10.272537231445312 ], [ -74.3980712890625, -10.272767066955566 ], [ -74.395576477050724, -10.278408050537053 ], [ -74.395217895507812, -10.281338691711426 ], [ -74.395011901855469, -10.282978057861328 ], [ -74.395370483398381, -10.286369323730469 ], [ -74.397293090820256, -10.290598869323674 ], [ -74.402000427246094, -10.297636985778809 ], [ -74.402931213378906, -10.299030303955021 ], [ -74.404777526855469, -10.302498817443734 ], [ -74.405807495117188, -10.303977966308537 ], [ -74.406410217285156, -10.304850578308105 ], [ -74.406967163085938, -10.305986404418945 ], [ -74.408363342285156, -10.308818817138672 ], [ -74.409317016601562, -10.312296867370605 ], [ -74.409561157226562, -10.313179016113281 ], [ -74.409797668457031, -10.314461708068848 ], [ -74.410087585449219, -10.316068649291879 ], [ -74.410057067871037, -10.317481994628906 ], [ -74.409996032714844, -10.320309638976994 ], [ -74.409416198730469, -10.323380470275822 ], [ -74.408500671386719, -10.325907707214299 ], [ -74.408256530761662, -10.326580047607365 ], [ -74.407455444335938, -10.328154563903809 ], [ -74.404975891113281, -10.333019256591797 ], [ -74.401878356933594, -10.337527275085392 ], [ -74.401069641113281, -10.338700294494629 ], [ -74.400711059570256, -10.339126586914062 ], [ -74.398460388183594, -10.341799736022949 ], [ -74.393913269042969, -10.346219062805176 ], [ -74.392379760742188, -10.347709655761719 ], [ -74.390518188476506, -10.348550796508732 ], [ -74.389785766601562, -10.348878860473633 ], [ -74.382331848144531, -10.355278968811035 ], [ -74.381820678710881, -10.355718612670842 ], [ -74.378211975097599, -10.357987403869572 ], [ -74.373863220214844, -10.360718727111816 ], [ -74.373115539550781, -10.361083984375 ], [ -74.370941162109318, -10.362148284912053 ], [ -74.365997314453068, -10.363907814025822 ], [ -74.363571166992188, -10.364258766174316 ], [ -74.360427856445312, -10.364709854125977 ], [ -74.358779907226562, -10.365323066711369 ], [ -74.358627319335938, -10.36538028717041 ], [ -74.356056213378906, -10.367010116577148 ], [ -74.355758666992188, -10.367112159729004 ], [ -74.353881835937443, -10.367750167846623 ], [ -74.352439880371037, -10.367953300476017 ], [ -74.349769592285099, -10.368329048156738 ], [ -74.345611572265625, -10.368610382080078 ], [ -74.344963073730469, -10.36884689331049 ], [ -74.344657897949219, -10.368961334228516 ], [ -74.343505859374943, -10.369047164916992 ], [ -74.343086242675781, -10.369078636169377 ], [ -74.341880798339787, -10.369519233703556 ], [ -74.335128784179688, -10.370608329772892 ], [ -74.333900451660156, -10.37071514129633 ], [ -74.328590393066406, -10.37117958068842 ], [ -74.326148986816349, -10.371224403381291 ], [ -74.323699951171875, -10.371269226074219 ], [ -74.319572448730355, -10.37260913848877 ], [ -74.313232421875, -10.375824928283635 ], [ -74.31109619140625, -10.376910209655705 ], [ -74.309608459472656, -10.378197669982853 ], [ -74.309272766113168, -10.378490447998047 ], [ -74.308425903320312, -10.379678726196175 ], [ -74.306625366210938, -10.383515357971191 ], [ -74.305496215820312, -10.385929107666016 ], [ -74.303077697753906, -10.394589424133244 ], [ -74.302406311035043, -10.398216247558537 ], [ -74.302169799804688, -10.403628349304142 ], [ -74.302085876464787, -10.403988838195801 ], [ -74.301567077636719, -10.406329154968262 ], [ -74.300727844238281, -10.408664703369141 ], [ -74.299812316894474, -10.410135269165039 ], [ -74.299072265625, -10.411320686340332 ], [ -74.295227050781193, -10.415028572082463 ], [ -74.294258117675781, -10.416975021362305 ], [ -74.294158935546875, -10.417168617248535 ], [ -74.293952941894531, -10.417455673217773 ], [ -74.292282104492131, -10.419790267944279 ], [ -74.288650512695256, -10.423040390014592 ], [ -74.285331726074162, -10.424639701843262 ], [ -74.283798217773381, -10.425080299377441 ], [ -74.278747558593693, -10.426538467407227 ], [ -74.275482177734318, -10.427083015441895 ], [ -74.274192810058594, -10.427300453185978 ], [ -74.270217895507812, -10.429039001464844 ], [ -74.269096374511662, -10.429129600524902 ], [ -74.268829345703068, -10.429149627685547 ], [ -74.267089843749943, -10.42887020111084 ], [ -74.265625, -10.428890228271484 ], [ -74.265052795410156, -10.428899765014648 ], [ -74.256790161132756, -10.430887222289925 ], [ -74.2554931640625, -10.431324958801213 ], [ -74.253387451171761, -10.432040214538517 ], [ -74.251930236816349, -10.432832717895508 ], [ -74.250228881835881, -10.433758735656738 ], [ -74.249237060546875, -10.434158325195256 ], [ -74.248428344726449, -10.434478759765625 ], [ -74.241981506347656, -10.436417579650879 ], [ -74.239028930664062, -10.436956405639592 ], [ -74.235755920410156, -10.437548637390137 ], [ -74.233818054199162, -10.438166618347168 ], [ -74.228630065917969, -10.440291404724121 ], [ -74.226730346679688, -10.441069602966309 ], [ -74.21868896484375, -10.445949554443359 ], [ -74.217658996582031, -10.446913719177189 ], [ -74.216178894042912, -10.448300361633244 ], [ -74.214263916015568, -10.450588226318359 ], [ -74.213287353515625, -10.451749801635685 ], [ -74.211906433105469, -10.453040122985726 ], [ -74.211723327636719, -10.453208923339844 ], [ -74.211433410644531, -10.453403472900391 ], [ -74.210350036621037, -10.454119682312012 ], [ -74.208221435546875, -10.455057144165039 ], [ -74.207130432128849, -10.455539703369027 ], [ -74.206321716308594, -10.455765724182129 ], [ -74.205703735351449, -10.455939292907715 ], [ -74.199722290039062, -10.456393241882324 ], [ -74.198913574218693, -10.456618309020996 ], [ -74.197731018066406, -10.456536293029785 ], [ -74.196182250976562, -10.456846237182617 ], [ -74.195869445800724, -10.457035064697209 ], [ -74.193283081054631, -10.458599090576172 ], [ -74.193000793456974, -10.458853721618539 ], [ -74.191299438476506, -10.460409164428711 ], [ -74.189079284667912, -10.463107109069824 ], [ -74.188255310058594, -10.464935302734375 ], [ -74.187629699707031, -10.466308593749943 ], [ -74.185440063476562, -10.47438907623291 ], [ -74.182662963867188, -10.487330436706543 ], [ -74.182281494140625, -10.489618301391545 ], [ -74.182128906249943, -10.490509033203068 ], [ -74.181915283203125, -10.492665290832406 ], [ -74.181236267089844, -10.499529838562012 ], [ -74.181671142578011, -10.500720024108773 ], [ -74.181724548339844, -10.502470016479492 ], [ -74.181816101074219, -10.505449295043888 ], [ -74.179840087890568, -10.508888244628906 ], [ -74.179565429687443, -10.509537696838322 ], [ -74.178352355957031, -10.512358665466195 ], [ -74.176956176757812, -10.515192031860238 ], [ -74.174896240234318, -10.519370079040527 ], [ -74.173713684082031, -10.521567344665527 ], [ -74.171920776367131, -10.524879455566406 ], [ -74.16961669921875, -10.531068801879883 ], [ -74.168617248535156, -10.53229904174799 ], [ -74.164817810058594, -10.535909652709961 ], [ -74.164138793945312, -10.536775588989258 ], [ -74.162948608398381, -10.538299560546818 ], [ -74.160949707031193, -10.541475296020508 ], [ -74.160690307617074, -10.541888236999455 ], [ -74.158287048339787, -10.548159599304199 ], [ -74.157485961914062, -10.54959774017334 ], [ -74.157119750976562, -10.550250053405762 ], [ -74.156288146972599, -10.552486419677734 ], [ -74.155838012695312, -10.555025100707951 ], [ -74.155647277832031, -10.561299324035588 ], [ -74.155639648437386, -10.561650276184082 ], [ -74.154106140136662, -10.566768646240234 ], [ -74.151130676269474, -10.572230339050236 ], [ -74.149551391601562, -10.573800086975041 ], [ -74.148811340332031, -10.574344635009709 ], [ -74.147026062011662, -10.575659751892033 ], [ -74.144386291503793, -10.579388618469238 ], [ -74.144012451171875, -10.57991981506342 ], [ -74.141708374023381, -10.584119796752873 ], [ -74.1405029296875, -10.589409828186035 ], [ -74.138381958007812, -10.593250274658089 ], [ -74.136970520019531, -10.595060348510742 ], [ -74.136802673339844, -10.595634460449105 ], [ -74.136405944824219, -10.59700870513916 ], [ -74.135597229003849, -10.598002433776855 ], [ -74.134666442871094, -10.599140167236271 ], [ -74.134407043457031, -10.600426673889046 ], [ -74.134185791015625, -10.60148906707758 ], [ -74.133644104003906, -10.602989196777344 ], [ -74.133216857910099, -10.604179382324219 ], [ -74.133201599121037, -10.604635238647404 ], [ -74.133186340332031, -10.60491943359375 ], [ -74.133483886718693, -10.605819702148381 ], [ -74.133560180664062, -10.606049537658635 ], [ -74.133720397949219, -10.606237411498967 ], [ -74.134346008300724, -10.60697078704834 ], [ -74.134544372558537, -10.607103347778263 ], [ -74.135108947753849, -10.607489585876465 ], [ -74.137702941894474, -10.608509063720589 ], [ -74.138206481933594, -10.609081268310433 ], [ -74.138786315917969, -10.609740257263184 ], [ -74.138900756835938, -10.61238956451416 ], [ -74.140251159667912, -10.615009307861328 ], [ -74.140266418456974, -10.616939544677734 ], [ -74.140037536621094, -10.618822097778263 ], [ -74.139907836914062, -10.619858741760197 ], [ -74.139923095703125, -10.623931884765568 ], [ -74.139930725097656, -10.626029014587346 ], [ -74.139251708984375, -10.628600120544377 ], [ -74.138908386230469, -10.62896728515625 ], [ -74.137992858886605, -10.629948616027832 ], [ -74.137512207031193, -10.630812644958496 ], [ -74.137046813964844, -10.631661415100098 ], [ -74.137062072753906, -10.634320259094238 ], [ -74.136451721191349, -10.636159896850586 ], [ -74.135940551757812, -10.63714599609375 ], [ -74.135215759277287, -10.638539314269963 ], [ -74.134910583496037, -10.639674186706429 ], [ -74.134902954101562, -10.646039962768441 ], [ -74.133224487304574, -10.649437904357853 ], [ -74.133026123046818, -10.64983940124506 ], [ -74.132843017578011, -10.650867462158203 ], [ -74.132553100585881, -10.652468681335449 ], [ -74.131561279296875, -10.654039382934513 ], [ -74.131401062011662, -10.654828071594238 ], [ -74.131767272949162, -10.657020568847599 ], [ -74.133537292480469, -10.661759376525879 ], [ -74.135581970214787, -10.664628028869629 ], [ -74.137466430664062, -10.666889190673828 ], [ -74.138526916503906, -10.667269706726074 ], [ -74.1387939453125, -10.667236328124943 ], [ -74.139549255371094, -10.667140007018929 ], [ -74.141487121581974, -10.664934158325195 ], [ -74.142005920410156, -10.664047241210938 ], [ -74.143135070800724, -10.659834861755371 ], [ -74.143913269042969, -10.656945228576603 ], [ -74.144844055175724, -10.655357360839844 ], [ -74.14544677734375, -10.654873847961369 ], [ -74.145843505859375, -10.65455436706543 ], [ -74.147850036621094, -10.653619766235352 ], [ -74.157035827636662, -10.650520324707031 ], [ -74.158493041992131, -10.648990631103516 ], [ -74.158851623535099, -10.648198127746525 ], [ -74.158988952636719, -10.64789867401123 ], [ -74.159423828124943, -10.646015167236328 ], [ -74.159530639648381, -10.645565986633301 ], [ -74.159706115722599, -10.64280986785883 ], [ -74.160308837890511, -10.641383171081486 ], [ -74.161376953125, -10.640602111816406 ], [ -74.162765502929631, -10.639580726623535 ], [ -74.164680480956974, -10.638718605041504 ], [ -74.166122436523381, -10.638070106506291 ], [ -74.169372558593636, -10.637310981750431 ], [ -74.170448303222656, -10.637060165405217 ], [ -74.172943115234375, -10.636980056762582 ], [ -74.174850463867188, -10.637168884277344 ], [ -74.177009582519531, -10.637383460998535 ], [ -74.181526184082031, -10.636561393737793 ], [ -74.183021545410156, -10.636286735534668 ], [ -74.185028076171875, -10.636527061462289 ], [ -74.189872741699105, -10.638375282287541 ], [ -74.194511413574162, -10.638595581054688 ], [ -74.196044921874943, -10.638237953186035 ], [ -74.199867248535099, -10.635843276977539 ], [ -74.201560974121094, -10.635704040527344 ], [ -74.202896118164062, -10.635597229003793 ], [ -74.203536987304688, -10.635894775390625 ], [ -74.204986572265625, -10.636569976806641 ], [ -74.209503173828068, -10.637983322143555 ], [ -74.210975646972656, -10.638580322265625 ], [ -74.212432861328125, -10.63916969299305 ], [ -74.213996887206974, -10.63916969299305 ], [ -74.215522766113224, -10.638718605041504 ], [ -74.216255187988224, -10.638952255248967 ], [ -74.217010498046875, -10.639190673828068 ], [ -74.217849731445312, -10.639208793640137 ], [ -74.219078063964844, -10.638998985290471 ], [ -74.219490051269531, -10.63892936706543 ], [ -74.220672607421818, -10.638201713562012 ], [ -74.222206115722656, -10.635812759399357 ], [ -74.222656249999943, -10.635112762451115 ], [ -74.224212646484375, -10.633436203002873 ], [ -74.224754333496037, -10.633262634277344 ], [ -74.225517272949162, -10.633009910583496 ], [ -74.2264404296875, -10.633147239685059 ], [ -74.227546691894531, -10.633308410644418 ], [ -74.229431152343693, -10.63450908660883 ], [ -74.230331420898438, -10.635605812072697 ], [ -74.230606079101562, -10.63593864440918 ], [ -74.232048034667969, -10.640696525573674 ], [ -74.234016418456974, -10.643252372741699 ], [ -74.235710144042912, -10.644549369812012 ], [ -74.236358642578125, -10.64459228515625 ], [ -74.239036560058594, -10.644779205322266 ], [ -74.240402221679631, -10.645485877990723 ], [ -74.241256713867131, -10.645930290222111 ], [ -74.241615295410156, -10.646622657775879 ], [ -74.242095947265625, -10.647550582885685 ], [ -74.242782592773381, -10.647952079772892 ], [ -74.2432861328125, -10.648249626159611 ], [ -74.244209289550724, -10.649164199829045 ], [ -74.245033264160156, -10.650910377502441 ], [ -74.246353149414062, -10.652220726013184 ], [ -74.247138977050781, -10.653483390808049 ], [ -74.247566223144474, -10.654169082641602 ], [ -74.248367309570312, -10.654665946960449 ], [ -74.249740600585881, -10.65551853179926 ], [ -74.251106262207031, -10.657489776611328 ], [ -74.252922058105469, -10.659326553344727 ], [ -74.256370544433594, -10.662820816039925 ], [ -74.258209228515625, -10.665918350219727 ], [ -74.258956909179688, -10.667909622192383 ], [ -74.259880065917969, -10.668992996215763 ], [ -74.260772705078125, -10.670039176940918 ], [ -74.2608642578125, -10.672774314880371 ], [ -74.260932922363281, -10.674898147582951 ], [ -74.261283874511662, -10.675271987915039 ], [ -74.261695861816406, -10.675708770751896 ], [ -74.263076782226562, -10.676219940185433 ], [ -74.26387786865223, -10.676213264465275 ], [ -74.264396667480469, -10.67620944976801 ], [ -74.265190124511662, -10.675458908081055 ], [ -74.26580810546875, -10.674118995666447 ], [ -74.266532897949162, -10.673728942871037 ], [ -74.268615722656193, -10.673827171325684 ], [ -74.268920898437443, -10.673843383789062 ], [ -74.270790100097656, -10.673929214477539 ], [ -74.273117065429631, -10.675768852233887 ], [ -74.274208068847656, -10.676090240478459 ], [ -74.274787902832031, -10.675944328308105 ], [ -74.275169372558594, -10.675848007202148 ], [ -74.277328491210938, -10.674383163452148 ], [ -74.278297424316406, -10.674239158630371 ], [ -74.278663635253906, -10.674186706542912 ], [ -74.280838012695256, -10.673318862915039 ], [ -74.281837463378906, -10.672917366027832 ], [ -74.284538269042912, -10.672969818115178 ], [ -74.286407470703125, -10.673757553100529 ], [ -74.286834716796818, -10.674262046813908 ], [ -74.287010192871094, -10.674469947814941 ], [ -74.287330627441349, -10.675518035888615 ], [ -74.287345886230469, -10.678378105163517 ], [ -74.287071228027344, -10.679835319519043 ], [ -74.2869873046875, -10.680270195007267 ], [ -74.286979675292969, -10.680951118469238 ], [ -74.286972045898438, -10.681659698486214 ], [ -74.287445068359375, -10.682892799377385 ], [ -74.287956237792969, -10.684228897094727 ], [ -74.288818359375, -10.685422897338754 ], [ -74.289962768554688, -10.687008857726994 ], [ -74.291023254394474, -10.68822193145752 ], [ -74.293975830078125, -10.69159984588623 ], [ -74.296310424804688, -10.695713043212891 ], [ -74.296752929687443, -10.696499824523926 ], [ -74.298576354980412, -10.698339462280273 ], [ -74.300140380859375, -10.700410842895508 ], [ -74.301902770996037, -10.701588630676213 ], [ -74.302803039550781, -10.701821327209473 ], [ -74.304122924804574, -10.70215892791748 ], [ -74.304603576660156, -10.702603340148926 ], [ -74.305023193359375, -10.70299053192133 ], [ -74.305809020996037, -10.706757545471135 ], [ -74.306068420410156, -10.707980155944824 ], [ -74.307533264160099, -10.709498405456543 ], [ -74.309471130371094, -10.71150970458973 ], [ -74.310623168945312, -10.713608741760197 ], [ -74.311370849609261, -10.714144706726017 ], [ -74.312316894531193, -10.714818954467773 ], [ -74.315345764160099, -10.715371131896973 ], [ -74.315673828125, -10.715512275695744 ], [ -74.316429138183594, -10.715840339660645 ], [ -74.316947937011719, -10.71644210815424 ], [ -74.317413330078125, -10.71697998046875 ], [ -74.318473815917969, -10.718855857849121 ], [ -74.318962097167969, -10.719710350036621 ], [ -74.320404052734318, -10.72114372253418 ], [ -74.321144104003906, -10.721666336059457 ], [ -74.322311401367131, -10.722489356994572 ], [ -74.32501220703125, -10.723090171813908 ], [ -74.325721740722656, -10.723505020141602 ], [ -74.326461791992188, -10.72393798828125 ], [ -74.327156066894531, -10.725101470947266 ], [ -74.327941894531193, -10.727910995483398 ], [ -74.328079223632812, -10.728398323059025 ], [ -74.329071044921875, -10.729839324951172 ], [ -74.330917358398381, -10.7310791015625 ], [ -74.333381652831974, -10.731910705566349 ], [ -74.334426879882756, -10.732499122619572 ], [ -74.336242675781193, -10.734142303466797 ], [ -74.336982727050781, -10.734809875488281 ], [ -74.337547302246094, -10.735566139221078 ], [ -74.338417053222656, -10.736728668212891 ], [ -74.340309143066406, -10.738194465637207 ], [ -74.341491699218693, -10.739108085632267 ], [ -74.345687866210881, -10.741999626159554 ], [ -74.347785949706974, -10.744326591491699 ], [ -74.348747253417912, -10.746626853942871 ], [ -74.349555969238281, -10.752985954284668 ], [ -74.350296020507812, -10.754611015319824 ], [ -74.351486206054631, -10.757229804992676 ], [ -74.353462219238281, -10.759798049926701 ], [ -74.353752136230469, -10.760293006896973 ], [ -74.355583190917969, -10.763379096984806 ], [ -74.356185913085881, -10.763797760009766 ], [ -74.35687255859375, -10.764269828796387 ], [ -74.360496520996094, -10.765028953552246 ], [ -74.363197326660156, -10.766050338745117 ], [ -74.36611175537098, -10.76785945892334 ], [ -74.368217468261719, -10.768851280212402 ], [ -74.369194030761719, -10.769707679748421 ], [ -74.3702392578125, -10.77063083648676 ], [ -74.370666503906193, -10.772029876708928 ], [ -74.370597839355469, -10.774381637573185 ], [ -74.370567321777287, -10.77534008026123 ], [ -74.370796203613281, -10.777365684509221 ], [ -74.37310791015625, -10.782072067260742 ], [ -74.373100280761719, -10.782427787780705 ], [ -74.373100280761719, -10.782619476318303 ], [ -74.373497009277344, -10.783916473388672 ], [ -74.373939514160156, -10.785359382629395 ], [ -74.373977661132812, -10.785584449768066 ], [ -74.374465942382812, -10.788728713989258 ], [ -74.374893188476562, -10.790046691894531 ], [ -74.375236511230412, -10.791088104248047 ], [ -74.376815795898438, -10.793588638305664 ], [ -74.379302978515625, -10.796525955200082 ], [ -74.381362915039006, -10.79896068572998 ], [ -74.382232666015625, -10.800697326660156 ], [ -74.382942199707031, -10.802947044372559 ], [ -74.383178710937443, -10.803689956665039 ], [ -74.384078979492188, -10.805191993713379 ], [ -74.387031555175781, -10.807689666748047 ], [ -74.388076782226562, -10.810128211975041 ], [ -74.389381408691293, -10.811669349670296 ], [ -74.390602111816349, -10.812324523925781 ], [ -74.392967224121094, -10.8135986328125 ], [ -74.394828796386719, -10.813758850097656 ], [ -74.394966125488281, -10.81373405456543 ], [ -74.396293640136719, -10.813489913940373 ], [ -74.396820068359261, -10.813235282897892 ], [ -74.397537231445312, -10.812886238098088 ], [ -74.398696899414006, -10.811964988708439 ], [ -74.404235839843693, -10.806535720825138 ], [ -74.405158996582031, -10.805628776550293 ], [ -74.406227111816349, -10.80536937713623 ], [ -74.407882690429574, -10.805770874023438 ], [ -74.410720825195256, -10.806459426879883 ], [ -74.413719177246094, -10.808129310607853 ], [ -74.415084838867188, -10.808614730834904 ], [ -74.415573120117131, -10.808788299560547 ], [ -74.416374206542969, -10.809490203857422 ], [ -74.417510986328068, -10.810479164123535 ], [ -74.420440673828068, -10.813711166381836 ], [ -74.422592163085938, -10.814798355102539 ], [ -74.423377990722656, -10.814883232116699 ], [ -74.423507690429631, -10.814899444580078 ], [ -74.423713684081918, -10.814864158630257 ], [ -74.425071716308594, -10.814620018005371 ], [ -74.428939819335881, -10.812619209289437 ], [ -74.429580688476562, -10.812289237975961 ], [ -74.431419372558537, -10.812346458435002 ], [ -74.433929443359375, -10.813778877258301 ], [ -74.435478210449219, -10.816188812255803 ], [ -74.436180114746037, -10.81679534912098 ], [ -74.436714172363281, -10.816974639892521 ], [ -74.436882019042969, -10.817031860351562 ], [ -74.437355041503906, -10.816986083984261 ], [ -74.438095092773381, -10.816916465759277 ], [ -74.439079284667969, -10.817089080810547 ], [ -74.439720153808537, -10.817651748657227 ], [ -74.440116882324105, -10.818668365478459 ], [ -74.44061279296875, -10.819089889526367 ], [ -74.444038391113281, -10.819891929626408 ], [ -74.448699951171761, -10.822750091552734 ], [ -74.451271057128849, -10.823821067810002 ], [ -74.455429077148438, -10.826070785522404 ], [ -74.458900451660099, -10.828858375549316 ], [ -74.460319519042912, -10.830326080322209 ], [ -74.461280822753849, -10.831319808959904 ], [ -74.461868286132812, -10.831736564636174 ], [ -74.463249206542969, -10.832718849182072 ], [ -74.466987609863224, -10.836418151855412 ], [ -74.468826293945312, -10.836821556091309 ], [ -74.471336364746094, -10.83685111999506 ], [ -74.473846435546818, -10.83622932434082 ], [ -74.477859497070256, -10.834778785705566 ], [ -74.479164123535156, -10.834778785705566 ], [ -74.479812622070312, -10.834778785705566 ], [ -74.481216430664006, -10.835267066955566 ], [ -74.485496520996037, -10.838521957397461 ], [ -74.489295959472599, -10.840639114379883 ], [ -74.489692687988224, -10.841183662414551 ], [ -74.490066528320256, -10.841690063476562 ], [ -74.490646362304631, -10.843048095703125 ], [ -74.490913391113224, -10.844732284545898 ], [ -74.490959167480469, -10.845028877258244 ], [ -74.491897583007756, -10.847929954528752 ], [ -74.491249084472656, -10.84954833984375 ], [ -74.487678527831974, -10.853521347045842 ], [ -74.487052917480469, -10.855740547180176 ], [ -74.487228393554574, -10.857668876647892 ], [ -74.4874267578125, -10.85821342468256 ], [ -74.488082885742131, -10.860007286071777 ], [ -74.490547180175724, -10.863459587097168 ], [ -74.491516113281193, -10.865601539611816 ], [ -74.4915771484375, -10.865738868713265 ], [ -74.491851806640625, -10.866194725036621 ], [ -74.49395751953125, -10.869688987731877 ], [ -74.494476318359261, -10.87165355682373 ], [ -74.495376586914062, -10.875097274780217 ], [ -74.498367309570256, -10.882258415222111 ], [ -74.49886322021473, -10.886999130248967 ], [ -74.498512268066406, -10.892699241638184 ], [ -74.499229431152287, -10.895369529724121 ], [ -74.499298095703125, -10.895529747009221 ], [ -74.499465942382812, -10.895929336547852 ], [ -74.500022888183594, -10.896444320678654 ], [ -74.501487731933594, -10.897369384765568 ], [ -74.502792358398438, -10.897615432739144 ], [ -74.504890441894531, -10.896885871887207 ], [ -74.507148742675724, -10.896933555603027 ], [ -74.509437561035099, -10.896979331970215 ], [ -74.513778686523438, -10.896592140197754 ], [ -74.51751708984375, -10.895359039306584 ], [ -74.519401550292969, -10.894737243652344 ], [ -74.521766662597656, -10.894289970397892 ], [ -74.523231506347656, -10.893680572509766 ], [ -74.525787353515625, -10.892619132995605 ], [ -74.527023315429688, -10.893009185791016 ], [ -74.530532836914062, -10.893058776855412 ], [ -74.532417297363224, -10.893479347228947 ], [ -74.534149169921761, -10.893865585327092 ], [ -74.536918640136719, -10.893799781799316 ], [ -74.537673950195256, -10.893781661987248 ], [ -74.538139343261662, -10.893668174743652 ], [ -74.538932800292969, -10.893475532531681 ], [ -74.539505004882812, -10.893214225769043 ], [ -74.540702819824162, -10.89266300201416 ], [ -74.542724609374943, -10.89076042175293 ], [ -74.542861938476562, -10.890315055847168 ], [ -74.542945861816406, -10.890052795410156 ], [ -74.543769836425724, -10.88907527923584 ], [ -74.544853210449219, -10.888398170471191 ], [ -74.545730590820312, -10.887850761413574 ], [ -74.546150207519474, -10.887815475463867 ], [ -74.547203063964787, -10.887725830078068 ], [ -74.552169799804631, -10.888127326965275 ], [ -74.552665710449219, -10.888168334960938 ], [ -74.553024291992131, -10.888273239135629 ], [ -74.554542541503849, -10.888708114624023 ], [ -74.556907653808537, -10.889668464660588 ], [ -74.557998657226562, -10.890110015869084 ], [ -74.559555053710938, -10.89092826843256 ], [ -74.560127258300781, -10.891228675842285 ], [ -74.561546325683594, -10.892369270324707 ], [ -74.565696716308537, -10.896500587463379 ], [ -74.567520141601506, -10.89756965637207 ], [ -74.568336486816406, -10.898048400878793 ], [ -74.570167541503849, -10.898711204528809 ], [ -74.5711669921875, -10.899538993835392 ], [ -74.571632385253906, -10.900382041931096 ], [ -74.572113037109375, -10.901249885559082 ], [ -74.572418212890625, -10.902384757995549 ], [ -74.572540283203125, -10.902838706970215 ], [ -74.572624206542969, -10.906285285949707 ], [ -74.572708129882812, -10.90972900390625 ], [ -74.573127746581974, -10.910770416259766 ], [ -74.574249267578125, -10.911631584167424 ], [ -74.576629638671875, -10.911237716674748 ], [ -74.579780578613281, -10.911206245422306 ], [ -74.584381103515568, -10.910613059997445 ], [ -74.585563659667969, -10.910840988159123 ], [ -74.590484619140568, -10.910711288452148 ], [ -74.591667175292969, -10.910923004150277 ], [ -74.594841003417969, -10.912446022033635 ], [ -74.595962524414062, -10.912349700927621 ], [ -74.597709655761719, -10.910867691039982 ], [ -74.599174499511662, -10.910055160522461 ], [ -74.6009521484375, -10.909542083740234 ], [ -74.602798461914006, -10.909373283386117 ], [ -74.604911804199105, -10.908690452575627 ], [ -74.607086181640568, -10.907777786254883 ], [ -74.610702514648381, -10.905549049377441 ], [ -74.614128112792912, -10.904404640197754 ], [ -74.615043640136719, -10.903646469116211 ], [ -74.616523742675724, -10.901738166809082 ], [ -74.617378234863224, -10.900321006774902 ], [ -74.618232727050724, -10.897788047790527 ], [ -74.618919372558537, -10.896487236022892 ], [ -74.621116638183537, -10.894002914428711 ], [ -74.624145507812443, -10.89159107208252 ], [ -74.62945556640625, -10.889239311218205 ], [ -74.631393432617131, -10.887984275817814 ], [ -74.632705688476562, -10.886636734008732 ], [ -74.633384704589844, -10.885343551635742 ], [ -74.634109497070312, -10.883047103881836 ], [ -74.633995056152287, -10.879739761352539 ], [ -74.634254455566349, -10.877271652221623 ], [ -74.635612487792912, -10.874874114990121 ], [ -74.63739013671875, -10.872526168823185 ], [ -74.638908386230469, -10.871053695678711 ], [ -74.6405029296875, -10.87011528015131 ], [ -74.643020629882812, -10.868941307067871 ], [ -74.646133422851562, -10.868032455444279 ], [ -74.650756835937443, -10.867993354797306 ], [ -74.652816772460938, -10.868547439575195 ], [ -74.653549194335824, -10.868962287902775 ], [ -74.656890869140625, -10.87241268157959 ], [ -74.658760070800724, -10.873788833618164 ], [ -74.659835815429631, -10.874287605285588 ], [ -74.661903381347656, -10.87437915802002 ], [ -74.662666320800781, -10.874039649963265 ], [ -74.665855407714844, -10.87353610992426 ], [ -74.667327880859375, -10.873690605163517 ], [ -74.668563842773438, -10.874108314514103 ], [ -74.674598693847599, -10.877884864807129 ], [ -74.677604675292969, -10.878821372985783 ], [ -74.678871154785156, -10.879751205444279 ], [ -74.679069519042969, -10.880170822143555 ], [ -74.678985595703068, -10.883949279785156 ], [ -74.679214477539062, -10.885495185852051 ], [ -74.679969787597656, -10.887069702148381 ], [ -74.681411743164062, -10.888501167297306 ], [ -74.682914733886662, -10.888944625854492 ], [ -74.6864013671875, -10.888496398925724 ], [ -74.689537048339844, -10.888811111450138 ], [ -74.693611145019531, -10.890105247497445 ], [ -74.696792602539062, -10.892178535461426 ], [ -74.699066162109375, -10.890149116516056 ], [ -74.7008056640625, -10.885002136230469 ], [ -74.702606201171875, -10.88257980346674 ], [ -74.702537536621037, -10.880546569824219 ], [ -74.700363159179631, -10.878190040588379 ], [ -74.699821472167969, -10.876607894897404 ], [ -74.6998291015625, -10.875034332275334 ], [ -74.701484680175724, -10.873072624206543 ], [ -74.702468872070256, -10.870903968811035 ], [ -74.706184387206974, -10.867072105407715 ], [ -74.706535339355469, -10.866243362426644 ], [ -74.707107543945312, -10.863446235656681 ], [ -74.708930969238224, -10.859831809997559 ], [ -74.709854125976562, -10.85656833648676 ], [ -74.710388183593636, -10.855491638183537 ], [ -74.712547302246037, -10.853503227233887 ], [ -74.714561462402287, -10.852395057678223 ], [ -74.716537475585938, -10.851635932922363 ], [ -74.719718933105412, -10.848311424255314 ], [ -74.721336364746037, -10.847905158996468 ], [ -74.725311279296875, -10.847646713256722 ], [ -74.726531982421875, -10.847232818603516 ], [ -74.727447509765568, -10.846590042114201 ], [ -74.728538513183594, -10.845461845397892 ], [ -74.729484558105469, -10.843889236450138 ], [ -74.730255126953125, -10.842106819152832 ], [ -74.731529235839787, -10.83807468414301 ], [ -74.732299804687443, -10.836709976196289 ], [ -74.736053466796875, -10.832751274108887 ], [ -74.737052917480469, -10.832716941833496 ], [ -74.739570617675668, -10.835747718811035 ], [ -74.740493774414006, -10.836182594299316 ], [ -74.741043090820312, -10.836129188537598 ], [ -74.741867065429688, -10.835698127746468 ], [ -74.743354797363224, -10.834314346313477 ], [ -74.745513916015625, -10.833059310913086 ], [ -74.746719360351506, -10.832074165344125 ], [ -74.750236511230412, -10.830972671508789 ], [ -74.752052307128849, -10.829283714294434 ], [ -74.754478454589844, -10.827595710754281 ], [ -74.757247924804688, -10.826864242553711 ], [ -74.758918762206974, -10.826150894164982 ], [ -74.761772155761662, -10.826587677001896 ], [ -74.764884948730469, -10.827792167663574 ], [ -74.766288757324219, -10.828861236572266 ], [ -74.767860412597599, -10.829648971557617 ], [ -74.769790649414006, -10.829840660095215 ], [ -74.771003723144531, -10.829470634460449 ], [ -74.773986816406193, -10.827999114990234 ], [ -74.77679443359375, -10.825613021850472 ], [ -74.777946472167969, -10.825252532958928 ], [ -74.783958435058594, -10.828143119812012 ], [ -74.786788940429688, -10.829019546508732 ], [ -74.788436889648438, -10.829870223998967 ], [ -74.790931701660156, -10.830750465393066 ], [ -74.793060302734318, -10.83059024810791 ], [ -74.794769287109318, -10.8296861648559 ], [ -74.796089172363224, -10.828143119812012 ], [ -74.797294616699219, -10.826080322265625 ], [ -74.798744201660156, -10.824525833129883 ], [ -74.799896240234375, -10.822861671447754 ], [ -74.803138732910156, -10.820150375366154 ], [ -74.805946350097543, -10.816967964172363 ], [ -74.807868957519531, -10.814165115356388 ], [ -74.811531066894531, -10.810759544372445 ], [ -74.812210083007756, -10.809583663940373 ], [ -74.813690185546875, -10.805505752563477 ], [ -74.815399169921875, -10.803445816040039 ], [ -74.816062927246094, -10.801978111267033 ], [ -74.817901611328125, -10.7999267578125 ], [ -74.821189880371037, -10.793862342834473 ], [ -74.824607849121037, -10.789982795715275 ], [ -74.827857971191349, -10.784341812133789 ], [ -74.830810546874943, -10.781440734863281 ], [ -74.832069396972599, -10.779841423034611 ], [ -74.832786560058594, -10.778247833251896 ], [ -74.833915710449219, -10.774459838867188 ], [ -74.836875915527344, -10.770345687866211 ], [ -74.838531494140568, -10.765960693359261 ], [ -74.840583801269531, -10.76325798034668 ], [ -74.841468811035156, -10.757533073425236 ], [ -74.842933654785099, -10.754668235778752 ], [ -74.844100952148438, -10.751367568969727 ], [ -74.844795227050781, -10.75017261505127 ], [ -74.845840454101562, -10.74735164642334 ], [ -74.846794128417969, -10.745462417602539 ], [ -74.847946166992188, -10.741102218627873 ], [ -74.84981536865223, -10.736030578613281 ], [ -74.851371765136719, -10.733535766601449 ], [ -74.85345458984375, -10.730951309204102 ], [ -74.856079101562443, -10.728363990783691 ], [ -74.857345581054631, -10.727668762207031 ], [ -74.858253479003906, -10.726755142211914 ], [ -74.860061645507812, -10.722235679626408 ], [ -74.861534118652287, -10.719249725341797 ], [ -74.863174438476562, -10.717170715332031 ], [ -74.865608215332031, -10.715028762817383 ], [ -74.866989135742188, -10.714495658874512 ], [ -74.867744445800668, -10.714839935302678 ], [ -74.868148803710938, -10.715336799621525 ], [ -74.868797302246094, -10.720989227294922 ], [ -74.869583129882812, -10.724480628967228 ], [ -74.870155334472656, -10.725900650024414 ], [ -74.870742797851562, -10.729537963867188 ], [ -74.870651245117188, -10.731092453002873 ], [ -74.870010375976506, -10.733777046203613 ], [ -74.869918823242131, -10.735433578491211 ], [ -74.869445800781193, -10.736635208129769 ], [ -74.868797302246094, -10.739929199218636 ], [ -74.868927001953125, -10.745364189147949 ], [ -74.869598388671875, -10.748409271240178 ], [ -74.869522094726506, -10.750336647033635 ], [ -74.869003295898438, -10.752390861511174 ], [ -74.866378784179631, -10.75712871551508 ], [ -74.865730285644474, -10.761505126953125 ], [ -74.866172790527344, -10.76194953918457 ], [ -74.866989135742188, -10.762129783630371 ], [ -74.871711730957031, -10.762141227722168 ], [ -74.876617431640625, -10.763545036315861 ], [ -74.881881713867188, -10.763484001159668 ], [ -74.883071899414006, -10.764532089233398 ], [ -74.88338470458973, -10.765609741210938 ], [ -74.884246826171875, -10.767111778259277 ], [ -74.885971069335938, -10.768648147582951 ], [ -74.886886596679631, -10.76906681060791 ], [ -74.888687133789062, -10.769581794738713 ], [ -74.891166687011719, -10.769392967224121 ], [ -74.892814636230412, -10.768551826476994 ], [ -74.895606994628906, -10.766590118408203 ], [ -74.896903991699162, -10.765568733215275 ], [ -74.898269653320312, -10.764060020446777 ], [ -74.899337768554688, -10.762451171875 ], [ -74.902023315429688, -10.759937286376896 ], [ -74.903060913085938, -10.757477760314885 ], [ -74.903686523437443, -10.756689071655273 ], [ -74.905235290527344, -10.755696296691895 ], [ -74.907646179199219, -10.753281593322697 ], [ -74.911270141601562, -10.751654624938965 ], [ -74.9127197265625, -10.74964714050293 ], [ -74.913688659667912, -10.74878978729248 ], [ -74.91424560546875, -10.748824119567871 ], [ -74.914772033691406, -10.749196052551213 ], [ -74.916748046874943, -10.751992225646973 ], [ -74.918266296386662, -10.753474235534668 ], [ -74.91925048828125, -10.754134178161621 ], [ -74.920265197753849, -10.754143714904728 ], [ -74.922836303710881, -10.752482414245549 ], [ -74.923675537109375, -10.752238273620605 ], [ -74.925064086914062, -10.752589225768929 ], [ -74.927711486816349, -10.75371265411377 ], [ -74.929573059082031, -10.75371265411377 ], [ -74.930442810058594, -10.753209114074593 ], [ -74.931022644042969, -10.751379013061523 ], [ -74.931976318359375, -10.75051116943348 ], [ -74.93341064453125, -10.750178337097111 ], [ -74.936668395996037, -10.750306129455566 ], [ -74.938346862792969, -10.749799728393441 ], [ -74.939476013183594, -10.749148368835392 ], [ -74.940132141113281, -10.748522758483887 ], [ -74.943367004394474, -10.743686676025391 ], [ -74.944473266601562, -10.742446899414062 ], [ -74.945472717285156, -10.741977691650391 ], [ -74.948165893554688, -10.741812705993539 ], [ -74.949302673339844, -10.741461753845215 ], [ -74.950660705566406, -10.740339279174748 ], [ -74.951438903808594, -10.738985061645451 ], [ -74.952514648437443, -10.737846374511719 ], [ -74.953521728515625, -10.737031936645508 ], [ -74.954589843749943, -10.736597061157227 ], [ -74.955986022949219, -10.73663330078125 ], [ -74.957832336425724, -10.737238883972168 ], [ -74.965904235839844, -10.742486000061035 ], [ -74.969131469726562, -10.743309020996094 ], [ -74.974029541015625, -10.745923042297306 ], [ -74.976928710937443, -10.746567726135254 ], [ -74.978561401367074, -10.747225761413517 ], [ -74.979484558105412, -10.747835159301758 ], [ -74.981521606445312, -10.749850273132324 ], [ -74.982231140136719, -10.750321388244572 ], [ -74.982872009277344, -10.750336647033635 ], [ -74.983406066894474, -10.750004768371582 ], [ -74.984626770019531, -10.748258590698185 ], [ -74.987396240234318, -10.745562553405762 ], [ -74.988685607910156, -10.743762016296387 ], [ -74.98870849609375, -10.742207527160588 ], [ -74.987678527832031, -10.738191604614258 ], [ -74.987861633300781, -10.736083984374943 ], [ -74.989288330078125, -10.733707427978459 ], [ -74.994613647460938, -10.72655200958252 ], [ -74.995491027832031, -10.725095748901254 ], [ -74.995712280273381, -10.718847274780273 ], [ -74.997451782226562, -10.715609550476074 ], [ -74.9976806640625, -10.714805603027344 ], [ -74.997703552246037, -10.709927558898926 ], [ -74.996231079101562, -10.704784393310547 ], [ -74.996047973632812, -10.703516960144043 ], [ -74.996208190917969, -10.69688701629633 ], [ -74.997161865234375, -10.693913459777832 ], [ -74.997154235839787, -10.692438125610352 ], [ -74.997589111328125, -10.69036865234375 ], [ -74.997528076171818, -10.683005332946777 ], [ -74.998237609863281, -10.678230285644531 ], [ -74.998756408691349, -10.676790237426758 ], [ -75.000633239746094, -10.674160003662109 ], [ -75.002479553222599, -10.672920227050781 ], [ -75.004013061523381, -10.672298431396428 ], [ -75.006973266601506, -10.672079086303711 ], [ -75.009300231933594, -10.671475410461312 ], [ -75.011154174804631, -10.671536445617619 ], [ -75.013412475585938, -10.672633171081486 ], [ -75.01806640625, -10.676593780517521 ], [ -75.020614624023381, -10.677715301513615 ], [ -75.02313232421875, -10.679757118225041 ], [ -75.024276733398438, -10.680399894714355 ], [ -75.030479431152344, -10.680381774902287 ], [ -75.032188415527344, -10.680806159973088 ], [ -75.034309387207031, -10.681954383850041 ], [ -75.035804748535156, -10.681916236877441 ], [ -75.037467956542912, -10.680941581726017 ], [ -75.038787841796875, -10.679304122924748 ], [ -75.038795471191406, -10.678103446960336 ], [ -75.038124084472656, -10.67668342590332 ], [ -75.0380859375, -10.676039695739746 ], [ -75.038543701171818, -10.674068450927734 ], [ -75.039688110351506, -10.671833038329964 ], [ -75.040603637695312, -10.670792579650822 ], [ -75.042472839355469, -10.669616699218693 ], [ -75.046768188476562, -10.66504955291748 ], [ -75.048545837402287, -10.664053916931096 ], [ -75.048995971679688, -10.663594245910645 ], [ -75.050186157226562, -10.663068771362305 ], [ -75.051033020019474, -10.662344932556096 ], [ -75.0516357421875, -10.661540031433105 ], [ -75.053436279296875, -10.657505989074707 ], [ -75.054351806640568, -10.656348228454533 ], [ -75.055099487304688, -10.65582370758051 ], [ -75.057312011718693, -10.655641555786076 ], [ -75.060523986816406, -10.654727935790959 ], [ -75.064056396484375, -10.652745246887207 ], [ -75.065330505371037, -10.652780532836857 ], [ -75.068168640136719, -10.65686130523676 ], [ -75.069618225097599, -10.658170700073242 ], [ -75.070938110351506, -10.658589363098088 ], [ -75.071365356445312, -10.65894889831543 ], [ -75.0726318359375, -10.662504196166935 ], [ -75.074417114257812, -10.665523529052678 ], [ -75.074485778808537, -10.667160034179574 ], [ -75.073783874511719, -10.672017097473088 ], [ -75.073005676269531, -10.674079895019531 ], [ -75.07147216796875, -10.676152229308968 ], [ -75.071403503417969, -10.676892280578556 ], [ -75.071601867675781, -10.677410125732422 ], [ -75.072189331054631, -10.678007125854492 ], [ -75.074493408203068, -10.679470062255859 ], [ -75.078155517578125, -10.681042671203613 ], [ -75.080398559570256, -10.682977676391602 ], [ -75.083602905273438, -10.682533264160156 ], [ -75.085838317871037, -10.682523727416992 ], [ -75.087730407714787, -10.68298435211176 ], [ -75.088523864746094, -10.683508872985783 ], [ -75.088645935058594, -10.684468269348145 ], [ -75.088081359863281, -10.685732841491586 ], [ -75.088218688964787, -10.687841415405273 ], [ -75.088088989257812, -10.689387321472168 ], [ -75.090690612792912, -10.692134857177678 ], [ -75.090995788574162, -10.695138931274357 ], [ -75.091857910156136, -10.696864128112736 ], [ -75.092628479003906, -10.697544097900391 ], [ -75.095558166503849, -10.698953628539982 ], [ -75.096214294433537, -10.699487686157227 ], [ -75.096405029296818, -10.703619956970215 ], [ -75.097206115722656, -10.706151962280273 ], [ -75.098876953125, -10.709128379821777 ], [ -75.099891662597656, -10.710329055786133 ], [ -75.101661682128849, -10.713142395019531 ], [ -75.107246398925781, -10.719044685363713 ], [ -75.110511779785156, -10.724081993103027 ], [ -75.111312866210824, -10.724562644958496 ], [ -75.113410949706918, -10.724966049194279 ], [ -75.115386962890568, -10.725770950317383 ], [ -75.117477416992131, -10.727596282958928 ], [ -75.119552612304688, -10.730057716369629 ], [ -75.121025085449162, -10.729982376098633 ], [ -75.123138427734261, -10.72904109954834 ], [ -75.125, -10.728481292724496 ], [ -75.131385803222656, -10.728142738342285 ], [ -75.133865356445312, -10.726379394531193 ], [ -75.135955810546875, -10.725626945495605 ], [ -75.140655517578068, -10.725173950195312 ], [ -75.143684387207031, -10.723788261413461 ], [ -75.145545959472599, -10.723236083984261 ], [ -75.147216796875, -10.723216056823617 ], [ -75.148468017578125, -10.722862243652344 ], [ -75.150970458984318, -10.722970008850041 ], [ -75.154701232910099, -10.721125602722168 ], [ -75.159309387207031, -10.720815658569336 ], [ -75.161178588867131, -10.719610214233398 ], [ -75.162124633789006, -10.719229698181152 ], [ -75.163490295410156, -10.719183921813908 ], [ -75.167854309081974, -10.719949722289925 ], [ -75.1751708984375, -10.720353126525879 ], [ -75.176376342773438, -10.719864845275879 ], [ -75.178504943847656, -10.718262672424316 ], [ -75.182487487792969, -10.718106269836369 ], [ -75.184829711914006, -10.718675613403263 ], [ -75.186927795410099, -10.718264579772949 ], [ -75.190505981445312, -10.715986251831055 ], [ -75.192665100097656, -10.715167999267578 ], [ -75.194984436035156, -10.715250015258732 ], [ -75.197723388671875, -10.716143608093205 ], [ -75.202438354492188, -10.715879440307617 ], [ -75.203964233398438, -10.716276168823242 ], [ -75.207389831542969, -10.715033531188965 ], [ -75.208572387695256, -10.714815139770508 ], [ -75.211166381835938, -10.714786529541016 ], [ -75.213302612304688, -10.716097831726074 ], [ -75.213920593261662, -10.71741771697998 ], [ -75.215850830078125, -10.71954154968256 ], [ -75.216209411621037, -10.721053123474121 ], [ -75.215820312499943, -10.722352027893066 ], [ -75.215789794921875, -10.724570274353027 ], [ -75.216804504394531, -10.727028846740723 ], [ -75.216926574707031, -10.727943420410156 ], [ -75.2176513671875, -10.728891372680607 ], [ -75.219139099121037, -10.732063293457031 ], [ -75.220710754394531, -10.733990669250488 ], [ -75.224052429199219, -10.740263938903752 ], [ -75.227378845214844, -10.745029449462891 ], [ -75.229087829589787, -10.746590614318791 ], [ -75.229560852050724, -10.748263359069767 ], [ -75.230171203613281, -10.749122619628906 ], [ -75.231826782226506, -10.74904727935791 ], [ -75.23455810546875, -10.74642372131342 ], [ -75.235260009765568, -10.745428085327148 ], [ -75.236953735351562, -10.745157241821289 ], [ -75.240341186523381, -10.745162010192871 ], [ -75.242843627929688, -10.745883941650391 ], [ -75.244613647460881, -10.746889114379883 ], [ -75.245925903320312, -10.748440742492562 ], [ -75.247047424316406, -10.750258445739746 ], [ -75.247009277343693, -10.751333236694336 ], [ -75.245933532714844, -10.75425815582264 ], [ -75.243659973144474, -10.756518363952637 ], [ -75.244277954101562, -10.757541656494084 ], [ -75.244331359863224, -10.759927749633789 ], [ -75.244583129882812, -10.76060676574707 ], [ -75.244621276855412, -10.7629137039184 ], [ -75.244270324707031, -10.764142036437931 ], [ -75.2442626953125, -10.767552375793457 ], [ -75.244926452636719, -10.77012920379633 ], [ -75.244956970214844, -10.773384094238224 ], [ -75.245559692382756, -10.775491714477539 ], [ -75.244438171386662, -10.777490615844727 ], [ -75.243820190429688, -10.779618263244572 ], [ -75.243690490722656, -10.784202575683594 ], [ -75.242965698242188, -10.786563873290902 ], [ -75.243095397949162, -10.788870811462402 ], [ -75.243904113769531, -10.79082202911377 ], [ -75.246711730956974, -10.795161247253418 ], [ -75.246978759765625, -10.796337127685547 ], [ -75.246986389160099, -10.797991752624512 ], [ -75.247459411621094, -10.799195289611816 ], [ -75.247863769531193, -10.802386283874512 ], [ -75.248184204101562, -10.803045272827148 ], [ -75.249023437499886, -10.80404090881342 ], [ -75.253639221191406, -10.808017730712777 ], [ -75.255355834960938, -10.808947563171273 ], [ -75.257011413574162, -10.809182167053166 ], [ -75.257682800292912, -10.80984973907465 ], [ -75.258445739746037, -10.813358306884652 ], [ -75.260856628417969, -10.816539764404297 ], [ -75.260726928710881, -10.819821357727051 ], [ -75.261985778808537, -10.822607040405273 ], [ -75.262825012206974, -10.826185226440316 ], [ -75.264785766601562, -10.828284263610783 ], [ -75.265914916992188, -10.829107284545842 ], [ -75.266845703124943, -10.829484939575195 ], [ -75.268066406249943, -10.829546928405648 ], [ -75.268745422363224, -10.829302787780762 ], [ -75.269866943359375, -10.829255104064941 ], [ -75.271888732910099, -10.829922676086426 ], [ -75.275741577148438, -10.833527565002441 ], [ -75.279891967773381, -10.836147308349553 ], [ -75.280662536621037, -10.837079048156738 ], [ -75.281959533691406, -10.839527130126953 ], [ -75.283256530761662, -10.840846061706543 ], [ -75.284164428710938, -10.841370582580566 ], [ -75.285682678222656, -10.84174919128418 ], [ -75.288650512695312, -10.841773986816349 ], [ -75.289146423339787, -10.841211318969727 ], [ -75.289253234863224, -10.840298652648926 ], [ -75.290069580078125, -10.839069366455078 ], [ -75.290702819824219, -10.838651657104435 ], [ -75.291183471679688, -10.838815689086914 ], [ -75.291740417480412, -10.839473724365178 ], [ -75.292274475097656, -10.841517448425293 ], [ -75.293693542480469, -10.843795776367188 ], [ -75.293952941894531, -10.845432281494141 ], [ -75.294723510742188, -10.847322463989201 ], [ -75.295448303222599, -10.848369598388672 ], [ -75.2969970703125, -10.849715232849121 ], [ -75.299468994140568, -10.850970268249455 ], [ -75.300193786621094, -10.851945877075195 ], [ -75.300773620605412, -10.853302001953068 ], [ -75.301689147949219, -10.854225158691406 ], [ -75.304687499999943, -10.855875015258789 ], [ -75.306442260742188, -10.85650634765625 ], [ -75.311058044433594, -10.859080314636174 ], [ -75.311721801757812, -10.859848022460938 ], [ -75.312698364257756, -10.861739158630371 ], [ -75.31378173828125, -10.862749099731445 ], [ -75.314445495605355, -10.863083839416504 ], [ -75.316398620605469, -10.862980842590332 ], [ -75.322578430175781, -10.861083030700627 ], [ -75.326553344726506, -10.860791206359863 ], [ -75.327728271484375, -10.861081123352051 ], [ -75.328697204589844, -10.861620903015137 ], [ -75.329910278320312, -10.863636016845703 ], [ -75.330787658691406, -10.864503860473576 ], [ -75.331443786621094, -10.864766120910588 ], [ -75.333038330078068, -10.864754676818791 ], [ -75.335517883300724, -10.864362716674805 ], [ -75.337326049804631, -10.865066528320312 ], [ -75.340156555175781, -10.865615844726506 ], [ -75.346466064453068, -10.865490913391113 ], [ -75.350250244140625, -10.865153312683105 ], [ -75.353530883789006, -10.863664627075082 ], [ -75.354888916015625, -10.8622789382934 ], [ -75.355934143066406, -10.859964370727539 ], [ -75.357124328613281, -10.858559608459416 ], [ -75.357673645019531, -10.857192039489689 ], [ -75.360031127929574, -10.853899002075195 ], [ -75.361557006835824, -10.851075172424316 ], [ -75.362831115722656, -10.849996566772404 ], [ -75.364105224609318, -10.849245071411076 ], [ -75.365242004394474, -10.848846435546875 ], [ -75.366386413574162, -10.848846435546875 ], [ -75.368904113769531, -10.849782943725586 ], [ -75.372444152832031, -10.852003097534123 ], [ -75.377670288085881, -10.854600906372013 ], [ -75.378944396972656, -10.85554027557373 ], [ -75.379562377929631, -10.856451988220215 ], [ -75.379959106445256, -10.858341217040959 ], [ -75.380805969238224, -10.860494613647404 ], [ -75.383453369140625, -10.862796783447266 ], [ -75.384178161621094, -10.863754272460938 ], [ -75.384735107421875, -10.865217208862305 ], [ -75.385238647460938, -10.867596626281738 ], [ -75.386795043945256, -10.868654251098633 ], [ -75.39031982421875, -10.868747711181584 ], [ -75.391090393066349, -10.868421554565373 ], [ -75.392959594726562, -10.86662769317627 ], [ -75.393836975097656, -10.866110801696777 ], [ -75.396705627441406, -10.865946769714299 ], [ -75.400032043457031, -10.866323471069279 ], [ -75.404708862304688, -10.864858627319336 ], [ -75.408920288085881, -10.865033149719238 ], [ -75.409317016601506, -10.864879608154297 ], [ -75.409759521484375, -10.863957405090332 ], [ -75.410537719726562, -10.863411903381348 ], [ -75.411163330078125, -10.86379337310791 ], [ -75.413238525390568, -10.866032600402832 ], [ -75.414627075195312, -10.866945266723633 ], [ -75.414894104003906, -10.867739677429199 ], [ -75.415046691894474, -10.869945526123047 ], [ -75.415534973144418, -10.870641708374023 ], [ -75.416191101074162, -10.870920181274414 ], [ -75.418418884277344, -10.871164321899357 ], [ -75.419586181640625, -10.87208175659174 ], [ -75.420394897460881, -10.873745918273869 ], [ -75.420822143554688, -10.875717163085881 ], [ -75.422073364257812, -10.877658843994141 ], [ -75.422607421875, -10.879134178161564 ], [ -75.423088073730469, -10.879702568054142 ], [ -75.423942565917969, -10.880054473876953 ], [ -75.424964904785099, -10.880080223083439 ], [ -75.427772521972656, -10.879478454589844 ], [ -75.430290222167912, -10.878580093383789 ], [ -75.435768127441406, -10.878762245178223 ], [ -75.438140869140625, -10.880006790161133 ], [ -75.440406799316349, -10.882317543029728 ], [ -75.441627502441406, -10.883168220519963 ], [ -75.444168090820312, -10.885470390319824 ], [ -75.447586059570312, -10.887290954589844 ], [ -75.448242187499943, -10.888186454772892 ], [ -75.449188232421818, -10.89087963104248 ], [ -75.449195861816349, -10.89335823059082 ], [ -75.449821472167969, -10.895951271057072 ], [ -75.450927734375, -10.897658348083496 ], [ -75.453643798828125, -10.900088310241642 ], [ -75.454826354980355, -10.900031089782715 ], [ -75.458145141601506, -10.900913238525391 ], [ -75.459983825683594, -10.901145935058594 ], [ -75.463111877441349, -10.901159286499023 ], [ -75.464057922363224, -10.900778770446721 ], [ -75.464973449707031, -10.900703430175724 ], [ -75.465576171874943, -10.901508331298828 ], [ -75.465850830078125, -10.904076576232796 ], [ -75.466331481933537, -10.904816627502385 ], [ -75.467636108398438, -10.904943466186467 ], [ -75.468673706054688, -10.904623985290527 ], [ -75.470474243164062, -10.903643608093205 ], [ -75.472579956054688, -10.901984214782715 ], [ -75.475990295410099, -10.90034294128418 ], [ -75.478843688964787, -10.897868156433105 ], [ -75.481117248535099, -10.896836280822754 ], [ -75.483703613281193, -10.894201278686523 ], [ -75.485755920410156, -10.892594337463379 ], [ -75.486297607421761, -10.891872406005859 ], [ -75.487358093261719, -10.8885240554809 ], [ -75.488815307617188, -10.885429382324162 ], [ -75.489250183105412, -10.883954048156625 ], [ -75.489013671875, -10.882399559020996 ], [ -75.487518310546818, -10.880178451538086 ], [ -75.486732482910156, -10.878005981445256 ], [ -75.487327575683537, -10.875979423522892 ], [ -75.487869262695312, -10.871786117553711 ], [ -75.489028930664006, -10.868090629577637 ], [ -75.488952636718693, -10.867078781127873 ], [ -75.488281249999943, -10.866192817687931 ], [ -75.487991333007756, -10.86524486541748 ], [ -75.488349914550781, -10.863625526428166 ], [ -75.488319396972656, -10.861598014831543 ], [ -75.488769531249943, -10.860294342041016 ], [ -75.48883056640625, -10.856985092163029 ], [ -75.4892578125, -10.855095863342285 ], [ -75.489967346191406, -10.853302001953068 ], [ -75.493064880371037, -10.850540161132756 ], [ -75.493637084960881, -10.84901046752924 ], [ -75.493316650390625, -10.847772598266602 ], [ -75.490745544433537, -10.844981193542424 ], [ -75.489295959472656, -10.840327262878304 ], [ -75.48956298828125, -10.837298393249512 ], [ -75.491043090820256, -10.833233833312988 ], [ -75.491348266601506, -10.831613540649357 ], [ -75.491142272949162, -10.827192306518555 ], [ -75.490745544433537, -10.823899269104004 ], [ -75.489044189453068, -10.818350791931152 ], [ -75.487159729003906, -10.81474590301508 ], [ -75.486351013183594, -10.813624382018929 ], [ -75.485511779785099, -10.811581611633301 ], [ -75.481155395507812, -10.806092262268066 ], [ -75.479759216308594, -10.80473613739008 ], [ -75.477859497070312, -10.803580284118596 ], [ -75.476310729980469, -10.801504135131836 ], [ -75.475128173828068, -10.800330162048283 ], [ -75.473548889160156, -10.799049377441349 ], [ -75.470069885253849, -10.79777812957758 ], [ -75.469047546386719, -10.795717239379883 ], [ -75.465347290039062, -10.792350769042912 ], [ -75.463935852050781, -10.790192604064885 ], [ -75.461883544921761, -10.788187026977539 ], [ -75.4609375, -10.786922454833928 ], [ -75.459640502929688, -10.786263465881291 ], [ -75.459091186523381, -10.785396575927678 ], [ -75.459014892578068, -10.783559799194222 ], [ -75.459289550781193, -10.78018665313715 ], [ -75.459632873535156, -10.779045104980469 ], [ -75.460380554199219, -10.777769088745117 ], [ -75.460929870605355, -10.774504661560002 ], [ -75.462745666503906, -10.772105216979924 ], [ -75.466430664062443, -10.768484115600529 ], [ -75.467956542968693, -10.766483306884766 ], [ -75.468238830566349, -10.766852378845215 ], [ -75.4683837890625, -10.767936706542912 ], [ -75.46917724609375, -10.769906044006348 ], [ -75.469406127929631, -10.775325775146484 ], [ -75.470298767089844, -10.77684211730957 ], [ -75.472167968749943, -10.778864860534668 ], [ -75.472785949707031, -10.77923679351801 ], [ -75.473983764648381, -10.779487609863224 ], [ -75.475311279296818, -10.780469894409123 ], [ -75.477066040039062, -10.780656814575195 ], [ -75.479072570800781, -10.780237197875977 ], [ -75.480842590331974, -10.779123306274414 ], [ -75.481712341308537, -10.778026580810547 ], [ -75.482147216796875, -10.777104377746582 ], [ -75.482231140136719, -10.776201248168888 ], [ -75.481910705566293, -10.774471282958984 ], [ -75.481994628906193, -10.771931648254395 ], [ -75.481689453124943, -10.769561767578068 ], [ -75.482437133789062, -10.766106605529785 ], [ -75.482475280761662, -10.76508617401123 ], [ -75.483543395996094, -10.76518440246582 ], [ -75.484008789062386, -10.764520645141602 ], [ -75.485107421875, -10.764429092407227 ], [ -75.485771179199219, -10.763941764831543 ], [ -75.486579895019474, -10.761849403381291 ], [ -75.488922119140625, -10.759991645812988 ], [ -75.489242553710881, -10.756654739379826 ], [ -75.491363525390625, -10.75611686706543 ], [ -75.493629455566349, -10.754838943481388 ], [ -75.494781494140568, -10.755378723144418 ], [ -75.495498657226562, -10.756826400756779 ], [ -75.496826171875, -10.758115768432617 ], [ -75.498298645019474, -10.757561683654728 ], [ -75.499000549316406, -10.755645751953068 ], [ -75.500152587890625, -10.754927635192871 ], [ -75.500663757324162, -10.755388259887638 ], [ -75.500984191894418, -10.756944656372013 ], [ -75.501480102539062, -10.75780200958252 ], [ -75.501792907714844, -10.75812816619873 ], [ -75.5025634765625, -10.75831413269043 ], [ -75.506317138671818, -10.755632400512695 ], [ -75.509033203125, -10.754091262817269 ], [ -75.511871337890625, -10.755929946899414 ], [ -75.513343811035156, -10.756424903869572 ], [ -75.51416015625, -10.756126403808537 ], [ -75.515678405761719, -10.754658699035645 ], [ -75.516349792480469, -10.754260063171387 ], [ -75.517578124999886, -10.754247665405217 ], [ -75.519744873046818, -10.754696846008244 ], [ -75.521095275878849, -10.754450798034668 ], [ -75.52264404296875, -10.753389358520451 ], [ -75.526115417480469, -10.749936103820744 ], [ -75.528167724609375, -10.74923038482666 ], [ -75.529487609863224, -10.748258590698185 ], [ -75.530029296875, -10.747174263000431 ], [ -75.530113220214844, -10.745157241821289 ], [ -75.530731201171818, -10.743609428405705 ], [ -75.531028747558594, -10.743499755859375 ], [ -75.532424926757756, -10.743760108947697 ], [ -75.535835266113281, -10.74208927154541 ], [ -75.5380859375, -10.742545127868596 ], [ -75.539108276367131, -10.742112159728947 ], [ -75.540489196777344, -10.741023063659611 ], [ -75.541275024414062, -10.74077033996582 ], [ -75.542640686035099, -10.740785598754883 ], [ -75.544586181640625, -10.741451263427621 ], [ -75.545600891113224, -10.742317199707031 ], [ -75.547500610351506, -10.744627952575684 ], [ -75.549140930175724, -10.745631217956543 ], [ -75.55059814453125, -10.745698928832894 ], [ -75.55279541015625, -10.745334625244084 ], [ -75.55477142333973, -10.744453430175781 ], [ -75.556243896484375, -10.744196891784554 ], [ -75.556785583496094, -10.74359130859375 ], [ -75.557212829589844, -10.742305755615178 ], [ -75.559188842773438, -10.7410888671875 ], [ -75.559310913085938, -10.740365982055664 ], [ -75.559104919433594, -10.737996101379395 ], [ -75.560989379882812, -10.735361099243107 ], [ -75.561996459960881, -10.731417655944711 ], [ -75.5625, -10.730194091796818 ], [ -75.56396484375, -10.728955268859806 ], [ -75.565994262695256, -10.728163719177189 ], [ -75.567390441894531, -10.727094650268498 ], [ -75.567703247070312, -10.727219581604004 ], [ -75.567665100097656, -10.731136322021428 ], [ -75.568244934082031, -10.733071327209416 ], [ -75.568557739257812, -10.736577987670898 ], [ -75.569122314453125, -10.737770080566406 ], [ -75.5709228515625, -10.740191459655648 ], [ -75.571617126464787, -10.741492271423283 ], [ -75.572708129882812, -10.744547843933049 ], [ -75.5738525390625, -10.748858451843205 ], [ -75.574203491210881, -10.753968238830453 ], [ -75.574272155761719, -10.760171890258732 ], [ -75.573509216308594, -10.764858245849609 ], [ -75.573455810546818, -10.767815589904785 ], [ -75.573814392089787, -10.769054412841797 ], [ -75.5753173828125, -10.77137374877924 ], [ -75.575637817382756, -10.772541046142464 ], [ -75.575782775878906, -10.774964332580566 ], [ -75.575309753417969, -10.77706336975092 ], [ -75.575187683105469, -10.778972625732422 ], [ -75.575355529785099, -10.781105995178223 ], [ -75.577102661132812, -10.784458160400334 ], [ -75.57769775390625, -10.786102294921875 ], [ -75.578781127929631, -10.789600372314396 ], [ -75.579391479492188, -10.793606758117619 ], [ -75.581611633300781, -10.796838760375977 ], [ -75.582389831542969, -10.800400733947697 ], [ -75.583404541015625, -10.8021240234375 ], [ -75.584571838378906, -10.803083419799748 ], [ -75.587188720703068, -10.804233551025391 ], [ -75.588706970214787, -10.805415153503361 ], [ -75.589187622070256, -10.806039810180607 ], [ -75.589439392089844, -10.807386398315373 ], [ -75.589988708496094, -10.808626174926701 ], [ -75.59210205078125, -10.811117172241097 ], [ -75.593406677246094, -10.811764717101937 ], [ -75.598243713378849, -10.813284873962402 ], [ -75.600669860839844, -10.814517974853516 ], [ -75.603790283203011, -10.81877326965332 ], [ -75.605384826660099, -10.822050094604435 ], [ -75.606460571288949, -10.823306083679199 ], [ -75.607437133789062, -10.823991775512582 ], [ -75.608406066894531, -10.824124336242619 ], [ -75.612205505371094, -10.823702812194767 ], [ -75.614936828613224, -10.823689460754395 ], [ -75.622428894042969, -10.824703216552678 ], [ -75.632759094238224, -10.826754570007267 ], [ -75.63739013671875, -10.82656288146967 ], [ -75.644752502441406, -10.82513427734375 ], [ -75.649528503417969, -10.824983596801758 ], [ -75.654808044433537, -10.825496673583984 ], [ -75.66192626953125, -10.826828002929688 ], [ -75.665267944335881, -10.827968597412109 ], [ -75.669845581054631, -10.831450462341252 ], [ -75.671737670898438, -10.833317756652718 ], [ -75.671752929687443, -10.834430694580021 ], [ -75.672088623046875, -10.835162162780705 ], [ -75.672798156738281, -10.836326599121037 ], [ -75.67401123046875, -10.837616920471191 ], [ -75.675056457519531, -10.838230133056584 ], [ -75.676818847656193, -10.838515281677132 ], [ -75.678001403808594, -10.839445114135629 ], [ -75.678909301757756, -10.839660644531193 ], [ -75.686073303222599, -10.837448120117188 ], [ -75.688385009765625, -10.83724308013916 ], [ -75.690238952636719, -10.836787223815861 ], [ -75.692169189453068, -10.83574104309082 ], [ -75.692939758300724, -10.835019111633244 ], [ -75.693389892578125, -10.834073066711369 ], [ -75.693260192871094, -10.832846641540527 ], [ -75.689552307128906, -10.829109191894531 ], [ -75.689025878906193, -10.827980995178223 ], [ -75.688789367675781, -10.82680511474598 ], [ -75.689224243164006, -10.825510025024357 ], [ -75.690834045410099, -10.822387695312443 ], [ -75.691612243652287, -10.818978309631291 ], [ -75.693374633789062, -10.816920280456543 ], [ -75.694969177246094, -10.816598892211914 ], [ -75.700706481933594, -10.816697120666447 ], [ -75.704673767089787, -10.816280364990178 ], [ -75.70735931396473, -10.815749168395996 ], [ -75.710220336913949, -10.814620018005371 ], [ -75.7156982421875, -10.810990333557072 ], [ -75.71978759765625, -10.809527397155762 ], [ -75.723823547363224, -10.808809280395451 ], [ -75.727775573730469, -10.809098243713379 ], [ -75.731986999511719, -10.80879020690918 ], [ -75.732917785644418, -10.809104919433594 ], [ -75.734062194824105, -10.810116767883244 ], [ -75.73635101318348, -10.813430786132756 ], [ -75.74017333984375, -10.81727123260498 ], [ -75.741065979003906, -10.81939506530756 ], [ -75.741683959960881, -10.820269584655705 ], [ -75.743301391601506, -10.821740150451603 ], [ -75.746589660644531, -10.823659896850586 ], [ -75.752029418945312, -10.825436592102051 ], [ -75.755340576171875, -10.827816963195801 ], [ -75.760391235351562, -10.830180168151799 ], [ -75.762840270996037, -10.830194473266488 ], [ -75.765556335449219, -10.828947067260685 ], [ -75.768226623535156, -10.828381538391113 ], [ -75.771331787109318, -10.826367378234863 ], [ -75.773262023925781, -10.825955390930119 ], [ -75.778358459472656, -10.825977325439453 ], [ -75.779815673828068, -10.825647354125977 ], [ -75.782409667968693, -10.82567024230957 ], [ -75.787544250488224, -10.825021743774357 ], [ -75.789314270019531, -10.825752258300724 ], [ -75.792274475097656, -10.827823638915959 ], [ -75.797393798828125, -10.832466125488281 ], [ -75.799545288085881, -10.834089279174748 ], [ -75.804740905761719, -10.837321281433105 ], [ -75.808189392089844, -10.841156005859375 ], [ -75.812339782714787, -10.844220161437988 ], [ -75.81427001953125, -10.846122741699219 ], [ -75.814979553222656, -10.847116470336914 ], [ -75.816413879394531, -10.850466728210449 ], [ -75.818489074707031, -10.854284286498967 ], [ -75.819076538085938, -10.857377052307129 ], [ -75.819000244140568, -10.858854293823242 ], [ -75.818283081054688, -10.860182762145996 ], [ -75.816658020019531, -10.861579895019474 ], [ -75.814132690429688, -10.862915039062443 ], [ -75.813262939453125, -10.863062858581543 ], [ -75.813072204589844, -10.863452911376953 ], [ -75.813407897949105, -10.866327285766545 ], [ -75.816329956054631, -10.870712280273438 ], [ -75.819122314453068, -10.873663902282715 ], [ -75.820121765136719, -10.874106407165527 ], [ -75.82135009765625, -10.874067306518555 ], [ -75.82366943359375, -10.872965812683105 ], [ -75.826217651367188, -10.873565673828125 ], [ -75.831153869628906, -10.878388404846135 ], [ -75.833671569824219, -10.881230354309082 ], [ -75.835220336914006, -10.883939743041992 ], [ -75.836601257324219, -10.885023117065373 ], [ -75.837982177734318, -10.885431289672852 ], [ -75.841209411621094, -10.88482666015625 ], [ -75.847015380859375, -10.881863594055176 ], [ -75.848342895507812, -10.88158130645752 ], [ -75.849678039550781, -10.880907058715763 ], [ -75.850456237792969, -10.87995433807373 ], [ -75.850471496581974, -10.877260208129883 ], [ -75.850700378417969, -10.875740051269531 ], [ -75.851074218749943, -10.874890327453556 ], [ -75.855148315429631, -10.871289253234863 ], [ -75.860198974609318, -10.867647171020451 ], [ -75.860862731933594, -10.867963790893555 ], [ -75.861633300781193, -10.869233131408635 ], [ -75.863105773925781, -10.872594833373967 ], [ -75.863647460937443, -10.87523365020752 ], [ -75.864387512207031, -10.876417160034123 ], [ -75.865028381347656, -10.876811027526855 ], [ -75.865867614746094, -10.876638412475472 ], [ -75.867012023925781, -10.875892639160099 ], [ -75.873214721679688, -10.869075775146484 ], [ -75.874603271484318, -10.868229866027832 ], [ -75.875267028808537, -10.868059158325195 ], [ -75.8787841796875, -10.868445396423283 ], [ -75.880210876464844, -10.869247436523324 ], [ -75.881355285644531, -10.870282173156681 ], [ -75.882698059082031, -10.87014198303217 ], [ -75.885780334472599, -10.86868762969965 ], [ -75.887924194335938, -10.868111610412541 ], [ -75.889198303222599, -10.868396759033203 ], [ -75.891746520996094, -10.869782447814941 ], [ -75.892776489257812, -10.870121955871525 ], [ -75.893577575683537, -10.869976043701115 ], [ -75.894706726074219, -10.869233131408635 ], [ -75.897552490234375, -10.869610786437988 ], [ -75.904800415039062, -10.869247436523324 ], [ -75.907081604003906, -10.869492530822754 ], [ -75.910575866699162, -10.871336936950684 ], [ -75.914421081542969, -10.872727394104004 ], [ -75.916305541992131, -10.874041557312012 ], [ -75.917304992675781, -10.875179290771484 ], [ -75.917938232421875, -10.876353263854924 ], [ -75.918968200683537, -10.880962371826115 ], [ -75.920272827148438, -10.882168769836426 ], [ -75.9215087890625, -10.882743835449219 ], [ -75.922714233398438, -10.88302040100092 ], [ -75.92913818359375, -10.882809638976937 ], [ -75.931152343749943, -10.88295841217041 ], [ -75.933525085449219, -10.884026527404728 ], [ -75.9354248046875, -10.885777473449707 ], [ -75.937385559081918, -10.884116172790527 ], [ -75.937995910644531, -10.883063316345215 ], [ -75.938346862792969, -10.881887435913086 ], [ -75.938423156738224, -10.876226425170842 ], [ -75.937728881835938, -10.871689796447754 ], [ -75.938011169433594, -10.870240211486816 ], [ -75.939491271972656, -10.869044303894043 ], [ -75.944549560546875, -10.867019653320256 ], [ -75.947753906249943, -10.865236282348633 ], [ -75.951484680175724, -10.862078666687012 ], [ -75.955879211425724, -10.857662200927734 ], [ -75.957275390625, -10.855830192565918 ], [ -75.958274841308594, -10.854046821594238 ], [ -75.958023071289062, -10.849625587463265 ], [ -75.958732604980412, -10.847587585449162 ], [ -75.960647583007756, -10.845908164978027 ], [ -75.961807250976562, -10.845235824584904 ], [ -75.963401794433537, -10.844825744628849 ], [ -75.967720031738281, -10.84426116943348 ], [ -75.971054077148438, -10.842713356018066 ], [ -75.973228454589787, -10.840481758117676 ], [ -75.975997924804631, -10.835380554199162 ], [ -75.978256225585938, -10.832336425781136 ], [ -75.980209350585938, -10.830457687377873 ], [ -75.983352661132699, -10.828323364257756 ], [ -75.989471435546875, -10.822360038757267 ], [ -75.99117279052723, -10.821234703063908 ], [ -75.992568969726506, -10.820706367492619 ], [ -75.994209289550724, -10.82073783874506 ], [ -75.995330810546875, -10.821221351623535 ], [ -75.996017456054631, -10.82122802734375 ], [ -75.9964599609375, -10.82154369354248 ], [ -75.997238159179688, -10.823123931884766 ], [ -75.998283386230469, -10.824420928954964 ], [ -76.001007080078125, -10.825996398925781 ], [ -76.002067565917969, -10.827221870422363 ], [ -76.002067565917969, -10.827539443969727 ], [ -76.003570556640511, -10.827299118041935 ], [ -76.004623413085938, -10.827404022216797 ], [ -76.006340026855469, -10.828274726867676 ], [ -76.007102966308594, -10.829058647155705 ], [ -76.007766723632699, -10.83067512512207 ], [ -76.007919311523438, -10.83740329742426 ], [ -76.00836181640625, -10.838377952575684 ], [ -76.009193420410099, -10.839071273803711 ], [ -76.011528015136719, -10.839822769164925 ], [ -76.013389587402287, -10.840975761413517 ], [ -76.016990661621037, -10.845547676086426 ], [ -76.01934814453125, -10.847989082336369 ], [ -76.021865844726506, -10.852005004882812 ], [ -76.023468017578068, -10.854026794433594 ], [ -76.031051635742188, -10.859989166259709 ], [ -76.035362243652344, -10.864321708679142 ], [ -76.041305541992131, -10.872050285339299 ], [ -76.0418701171875, -10.87342357635498 ], [ -76.042892456054688, -10.874869346618652 ], [ -76.043685913085881, -10.876873016357308 ], [ -76.043891906738224, -10.878208160400277 ], [ -76.044883728027344, -10.879318237304631 ], [ -76.048942565917912, -10.881818771362305 ], [ -76.051521301269474, -10.882714271545296 ], [ -76.0526123046875, -10.882801055908203 ], [ -76.054214477539062, -10.882460594177189 ], [ -76.055984497070312, -10.88258171081543 ], [ -76.05645751953125, -10.882345199584904 ], [ -76.05755615234375, -10.88232231140131 ], [ -76.059722900390568, -10.883147239684945 ], [ -76.0618896484375, -10.883393287658691 ], [ -76.063247680664006, -10.884528160095215 ], [ -76.064720153808594, -10.885265350341683 ], [ -76.067703247070312, -10.8854722976684 ], [ -76.068756103515625, -10.886297225952148 ], [ -76.07110595703125, -10.88928318023676 ], [ -76.073181152343693, -10.891031265258732 ], [ -76.077186584472599, -10.892753601074219 ], [ -76.080551147460938, -10.893340110778752 ], [ -76.082046508789006, -10.894209861755257 ], [ -76.082244873046818, -10.89478683471674 ], [ -76.08209228515625, -10.895992279052734 ], [ -76.082260131835938, -10.89659595489502 ], [ -76.083061218261719, -10.897182464599553 ], [ -76.084236145019474, -10.897448539733773 ], [ -76.084587097167969, -10.897870063781681 ], [ -76.084564208984375, -10.898832321166935 ], [ -76.084831237792969, -10.899271965026855 ], [ -76.085601806640625, -10.899867057800293 ], [ -76.086555480957031, -10.90003585815424 ], [ -76.087333679199219, -10.902764320373535 ], [ -76.088211059570312, -10.90443229675293 ], [ -76.089118957519531, -10.905261993408146 ], [ -76.091041564941406, -10.905941009521428 ], [ -76.091461181640625, -10.906474113464299 ], [ -76.0924072265625, -10.909363746643066 ], [ -76.092300415039062, -10.910168647766056 ], [ -76.091728210449219, -10.910931587219181 ], [ -76.091743469238281, -10.912141799926758 ], [ -76.093124389648438, -10.914770126342717 ], [ -76.093246459960938, -10.916387557983342 ], [ -76.094200134277344, -10.917134284973088 ], [ -76.094734191894474, -10.920181274414062 ], [ -76.095985412597656, -10.92222785949707 ], [ -76.097953796386662, -10.922600746154785 ], [ -76.098777770996094, -10.923854827880803 ], [ -76.098854064941406, -10.924531936645508 ], [ -76.098503112792969, -10.92525672912592 ], [ -76.098335266113224, -10.927824974060059 ], [ -76.098686218261719, -10.929715156555119 ], [ -76.099708557128906, -10.930578231811467 ], [ -76.102668762207031, -10.931742668151855 ], [ -76.10345458984375, -10.932491302490234 ], [ -76.104415893554688, -10.933972358703613 ], [ -76.105133056640568, -10.937142372131291 ], [ -76.105606079101506, -10.938234329223576 ], [ -76.106948852538949, -10.939603805541992 ], [ -76.109512329101506, -10.941620826721135 ], [ -76.109603881835881, -10.945905685424805 ], [ -76.114166259765568, -10.948357582092285 ], [ -76.117454528808594, -10.951420783996582 ], [ -76.118515014648438, -10.952980041503793 ], [ -76.121040344238224, -10.959093093872013 ], [ -76.121978759765625, -10.960256576538029 ], [ -76.123420715331974, -10.961110115051156 ], [ -76.124404907226562, -10.960611343383789 ], [ -76.124374389648381, -10.959921836853027 ], [ -76.121925354003906, -10.958003044128361 ], [ -76.120826721191406, -10.956443786621094 ], [ -76.12042236328125, -10.955307006835938 ], [ -76.120559692382756, -10.954511642456055 ], [ -76.121856689453125, -10.953329086303711 ], [ -76.122016906738168, -10.952253341674748 ], [ -76.122543334960938, -10.951466560363713 ], [ -76.123954772949219, -10.95106315612793 ], [ -76.125511169433537, -10.949990272521973 ], [ -76.126060485839844, -10.950076103210392 ], [ -76.127243041992131, -10.950987815856934 ], [ -76.127662658691406, -10.950922012329045 ], [ -76.130004882812443, -10.948870658874512 ], [ -76.132148742675781, -10.94881629943842 ], [ -76.132553100585938, -10.948254585266113 ], [ -76.132606506347656, -10.946887969970703 ], [ -76.133575439453125, -10.946233749389592 ], [ -76.135360717773381, -10.945802688598633 ], [ -76.136306762695256, -10.945935249328556 ], [ -76.137321472167969, -10.946643829345703 ], [ -76.138763427734375, -10.949378967285156 ], [ -76.139633178710881, -10.949801445007267 ], [ -76.141098022460938, -10.94914436340332 ], [ -76.142593383789006, -10.948119163513184 ], [ -76.144195556640625, -10.945743560791016 ], [ -76.14483642578125, -10.945404052734375 ], [ -76.1475830078125, -10.945946693420296 ], [ -76.149429321289062, -10.947747230529728 ], [ -76.15045166015625, -10.94847583770752 ], [ -76.151458740234318, -10.948862075805664 ], [ -76.155937194824162, -10.94840145111084 ], [ -76.157211303710938, -10.948631286621094 ], [ -76.158447265624886, -10.949187278747559 ], [ -76.160079956054688, -10.949308395385629 ], [ -76.161460876464844, -10.948734283447266 ], [ -76.164680480957031, -10.948160171508675 ], [ -76.167160034179688, -10.947029113769474 ], [ -76.167839050292969, -10.946990013122559 ], [ -76.16937255859375, -10.947872161865234 ], [ -76.169784545898381, -10.949315071105957 ], [ -76.169609069824219, -10.950213432312012 ], [ -76.168205261230469, -10.951473236083984 ], [ -76.167999267578125, -10.952407836913949 ], [ -76.168388366699219, -10.953039169311523 ], [ -76.169342041015625, -10.952257156372013 ], [ -76.170425415039062, -10.952965736389103 ], [ -76.171524047851562, -10.95173263549799 ], [ -76.172073364257756, -10.951712608337289 ], [ -76.172431945800724, -10.952109336853027 ], [ -76.172447204589787, -10.953057289123535 ], [ -76.172866821289062, -10.953780174255314 ], [ -76.174690246582031, -10.953519821166992 ], [ -76.175300598144474, -10.954268455505314 ], [ -76.176666259765625, -10.954137802123967 ], [ -76.177337646484375, -10.954287528991586 ], [ -76.178359985351506, -10.955368041992188 ], [ -76.179267883300781, -10.955563545226994 ], [ -76.179977416992131, -10.956727027893066 ], [ -76.181694030761662, -10.958060264587402 ], [ -76.182929992675724, -10.958037376403809 ], [ -76.183982849121037, -10.95887374877924 ], [ -76.185630798339844, -10.95884895324707 ], [ -76.187522888183537, -10.960151672363281 ], [ -76.188461303710881, -10.95995903015131 ], [ -76.188934326171818, -10.959134101867676 ], [ -76.189735412597656, -10.958967208862305 ], [ -76.190864562988224, -10.959416389465332 ], [ -76.191490173339844, -10.959142684936523 ], [ -76.191665649414062, -10.958762168884221 ], [ -76.191551208496094, -10.95624828338623 ], [ -76.192497253417969, -10.956066131591797 ], [ -76.19366455078125, -10.9564208984375 ], [ -76.194526672363281, -10.956281661987305 ], [ -76.19451904296875, -10.952150344848576 ], [ -76.195549011230469, -10.951225280761662 ], [ -76.197738647460824, -10.951143264770508 ], [ -76.198341369628906, -10.950797080993652 ], [ -76.198654174804688, -10.946635246276799 ], [ -76.199600219726562, -10.944687843322697 ], [ -76.201774597167969, -10.943514823913461 ], [ -76.203445434570256, -10.942964553833008 ], [ -76.20709228515625, -10.943241119384709 ], [ -76.209655761718693, -10.940282821655273 ], [ -76.209922790527287, -10.939476013183594 ], [ -76.209861755371094, -10.938808441162109 ], [ -76.208259582519531, -10.936786651611328 ], [ -76.208175659179688, -10.936244010925236 ], [ -76.211692810058594, -10.933482170104924 ], [ -76.212356567382812, -10.932458877563477 ], [ -76.212684631347599, -10.931434631347656 ], [ -76.212409973144474, -10.930839538574162 ], [ -76.208656311035156, -10.928882598876953 ], [ -76.207893371582031, -10.927783966064396 ], [ -76.207977294921875, -10.926824569702148 ], [ -76.208900451660156, -10.925176620483285 ], [ -76.208763122558594, -10.922372817993164 ], [ -76.209030151367188, -10.919947624206486 ], [ -76.209770202636719, -10.918642044067383 ], [ -76.210517883300668, -10.918080329894963 ], [ -76.213577270507812, -10.917343139648438 ], [ -76.214393615722599, -10.91743183135975 ], [ -76.215629577636719, -10.917998313903809 ], [ -76.216728210449219, -10.918010711669922 ], [ -76.217994689941406, -10.917208671569824 ], [ -76.218788146972599, -10.917044639587402 ], [ -76.219711303710938, -10.916245460510254 ], [ -76.220901489257756, -10.915995597839355 ], [ -76.222007751464844, -10.914986610412598 ], [ -76.223937988281193, -10.914463043212891 ], [ -76.22705078125, -10.915761947631836 ], [ -76.228141784667912, -10.915821075439453 ], [ -76.229782104492074, -10.915255546569767 ], [ -76.22979736328125, -10.918209075927734 ], [ -76.230758666992188, -10.918966293334904 ], [ -76.231170654296875, -10.919020652770996 ], [ -76.231941223144474, -10.918464660644531 ], [ -76.233024597167855, -10.918333053588867 ], [ -76.234870910644531, -10.917521476745605 ], [ -76.235588073730412, -10.918195724487248 ], [ -76.236953735351562, -10.918182373046875 ], [ -76.237670898437443, -10.918991088867131 ], [ -76.240722656249943, -10.919692993163949 ], [ -76.243141174316406, -10.920960426330453 ], [ -76.245429992675781, -10.921008110046273 ], [ -76.245941162109375, -10.921480178833008 ], [ -76.246063232421818, -10.922286987304688 ], [ -76.246734619140568, -10.923177719116097 ], [ -76.249137878417912, -10.923023223876896 ], [ -76.249229431152287, -10.923583984374943 ], [ -76.249588012695256, -10.924043655395508 ], [ -76.254898071289062, -10.921952247619629 ], [ -76.255516052246037, -10.922101974487248 ], [ -76.256439208984375, -10.92290210723877 ], [ -76.259376525878906, -10.92049503326416 ], [ -76.260818481445312, -10.919748306274414 ], [ -76.261505126953068, -10.919816017150765 ], [ -76.263336181640568, -10.920722961425724 ], [ -76.264930725097656, -10.920363426208496 ], [ -76.266967773437443, -10.920527458190804 ], [ -76.268241882324219, -10.921029090881291 ], [ -76.269599914550781, -10.921919822692871 ], [ -76.270713806152344, -10.920955657958984 ], [ -76.271949768066406, -10.920885086059457 ], [ -76.272430419921875, -10.920668601989746 ], [ -76.275215148925781, -10.91871261596674 ], [ -76.276802062988281, -10.918469429016056 ], [ -76.276901245117188, -10.919672966003304 ], [ -76.278549194335938, -10.921644210815373 ], [ -76.2789306640625, -10.92364311218256 ], [ -76.278648376464844, -10.926998138427734 ], [ -76.276092529296875, -10.932352066040039 ], [ -76.276268005371094, -10.933156013488713 ], [ -76.277671813964844, -10.935934066772404 ], [ -76.278076171875, -10.939387321472111 ], [ -76.278373718261719, -10.943155288696289 ], [ -76.277587890625, -10.9460191726684 ], [ -76.277145385742131, -10.949887275695801 ], [ -76.276123046874943, -10.950546264648438 ], [ -76.273994445800781, -10.949639320373478 ], [ -76.273170471191349, -10.949688911437988 ], [ -76.272560119628906, -10.949990272521973 ], [ -76.271804809570256, -10.950771331787053 ], [ -76.271614074706974, -10.951991081237736 ], [ -76.272918701171875, -10.954201698303223 ], [ -76.273170471191349, -10.955113410949707 ], [ -76.273056030273381, -10.955584526062012 ], [ -76.272575378417912, -10.955912590026742 ], [ -76.27215576171875, -10.955904006958008 ], [ -76.270355224609375, -10.954672813415414 ], [ -76.269531249999943, -10.954549789428597 ], [ -76.2674560546875, -10.956259727477971 ], [ -76.265663146972656, -10.958290100097599 ], [ -76.265609741210881, -10.959240913391113 ], [ -76.266258239746094, -10.960116386413574 ], [ -76.268676757812443, -10.960513114929199 ], [ -76.270492553710881, -10.961382865905762 ], [ -76.2705078125, -10.962348937988281 ], [ -76.270133972167969, -10.963086128234806 ], [ -76.269256591796818, -10.963730812072754 ], [ -76.268104553222599, -10.964103698730412 ], [ -76.267799377441349, -10.964992523193246 ], [ -76.268203735351506, -10.965667724609375 ], [ -76.269027709960938, -10.966405868530273 ], [ -76.271072387695256, -10.967103958129826 ], [ -76.271148681640568, -10.967807769775391 ], [ -76.270683288574162, -10.968289375305176 ], [ -76.270706176757812, -10.969086647033635 ], [ -76.271026611328125, -10.969471931457463 ], [ -76.273300170898438, -10.969516754150391 ], [ -76.272865295410099, -10.97196102142334 ], [ -76.272003173828068, -10.973329544067326 ], [ -76.270759582519474, -10.974570274352971 ], [ -76.269378662109375, -10.975175857543945 ], [ -76.268760681152287, -10.975721359252816 ], [ -76.268798828125, -10.976516723632756 ], [ -76.269813537597599, -10.977950096130371 ], [ -76.269783020019531, -10.978853225707951 ], [ -76.269294738769531, -10.979138374328613 ], [ -76.266975402831918, -10.979073524475098 ], [ -76.266227722167969, -10.979608535766545 ], [ -76.2662353515625, -10.980839729309025 ], [ -76.267196655273438, -10.983792304992619 ], [ -76.267074584960938, -10.984598159790039 ], [ -76.265884399414062, -10.987759590148926 ], [ -76.265838623046875, -10.988435745239258 ], [ -76.266746520996094, -10.990719795227051 ], [ -76.266792297363281, -10.992039680480957 ], [ -76.266082763671818, -10.99282169342041 ], [ -76.263633728027287, -10.994179725646916 ], [ -76.263198852539062, -10.994632720947209 ], [ -76.263221740722599, -10.995609283447152 ], [ -76.264297485351506, -10.997150421142578 ], [ -76.264144897460938, -10.997846603393441 ], [ -76.26348876953125, -10.998510360717717 ], [ -76.262321472167969, -10.999282836914062 ], [ -76.261306762695312, -10.99958610534668 ], [ -76.259933471679688, -10.999376296996957 ], [ -76.259445190429688, -10.998897552490234 ], [ -76.258590698242188, -10.998738288879395 ], [ -76.257011413574219, -11.000381469726562 ], [ -76.256294250488168, -11.001742362976074 ], [ -76.256736755371037, -11.003682136535645 ], [ -76.258918762207031, -11.004695892333984 ], [ -76.259346008300668, -11.005217552184945 ], [ -76.259445190429688, -11.005886077880803 ], [ -76.259086608886719, -11.006755828857365 ], [ -76.256614685058594, -11.009632110595703 ], [ -76.256370544433537, -11.01109790802002 ], [ -76.257118225097599, -11.01189136505127 ], [ -76.258049011230469, -11.01198673248291 ], [ -76.259498596191406, -11.012731552124023 ], [ -76.259757995605469, -11.013354301452637 ], [ -76.259735107421875, -11.014167785644474 ], [ -76.2589111328125, -11.016007423400822 ], [ -76.255760192871094, -11.018788337707463 ], [ -76.255355834960938, -11.019638061523324 ], [ -76.253715515136662, -11.021245002746582 ], [ -76.253608703613224, -11.022061347961426 ], [ -76.254127502441406, -11.022834777832031 ], [ -76.259033203124943, -11.024859428405648 ], [ -76.259536743163949, -11.025662422180119 ], [ -76.259567260742188, -11.026764869689941 ], [ -76.258186340331974, -11.02875900268549 ], [ -76.256645202636662, -11.030285835266113 ], [ -76.253890991210881, -11.031138420104924 ], [ -76.252151489257812, -11.030954360961914 ], [ -76.251121520996037, -11.031619071960392 ], [ -76.251091003417969, -11.032286643981877 ], [ -76.252082824706974, -11.035067558288461 ], [ -76.251556396484375, -11.037022590637093 ], [ -76.250358581542912, -11.039642333984318 ], [ -76.249420166015568, -11.040016174316349 ], [ -76.247207641601506, -11.04015922546381 ], [ -76.243461608886719, -11.041387557983398 ], [ -76.243202209472599, -11.042140007019043 ], [ -76.244682312011719, -11.044393539428711 ], [ -76.244606018066406, -11.045613288879395 ], [ -76.243560791015625, -11.046397209167424 ], [ -76.241081237792969, -11.046007156371957 ], [ -76.240371704101562, -11.046120643615723 ], [ -76.239753723144531, -11.048112869262695 ], [ -76.239593505859318, -11.049713134765625 ], [ -76.239997863769531, -11.050064086913949 ], [ -76.240913391113224, -11.050214767456055 ], [ -76.241218566894474, -11.050990104675179 ], [ -76.241661071777344, -11.051305770874023 ], [ -76.241455078125, -11.052092552185059 ], [ -76.240028381347656, -11.053138732910156 ], [ -76.239845275878906, -11.053817749023438 ], [ -76.241722106933594, -11.05537223815918 ], [ -76.241889953613224, -11.056493759155217 ], [ -76.241775512695256, -11.060734748840275 ], [ -76.242744445800724, -11.063405990600586 ], [ -76.243400573730412, -11.066578865051213 ], [ -76.244300842285156, -11.067598342895508 ], [ -76.244606018066406, -11.06848239898676 ], [ -76.24468994140625, -11.070381164550781 ], [ -76.243995666503906, -11.071388244628849 ], [ -76.243934631347656, -11.072290420532227 ], [ -76.244102478027344, -11.074868202209416 ], [ -76.244544982910099, -11.077115058898926 ], [ -76.245811462402344, -11.079815864562931 ], [ -76.248153686523381, -11.082454681396428 ], [ -76.248039245605469, -11.085140228271428 ], [ -76.250244140625, -11.089010238647404 ], [ -76.250205993652344, -11.090097427368164 ], [ -76.251716613769418, -11.098183631896973 ], [ -76.251617431640568, -11.101012229919434 ], [ -76.251152038574219, -11.103995323181096 ], [ -76.250236511230469, -11.106089591979924 ], [ -76.2467041015625, -11.110057830810547 ], [ -76.246170043945256, -11.110828399658203 ], [ -76.245712280273438, -11.112105369567814 ], [ -76.244514465332031, -11.113383293151855 ], [ -76.242622375488224, -11.114937782287484 ], [ -76.240226745605469, -11.114467620849609 ], [ -76.238639831542912, -11.114836692810059 ], [ -76.236679077148438, -11.116708755493164 ], [ -76.235061645507812, -11.119509696960449 ], [ -76.231788635253906, -11.121918678283691 ], [ -76.230659484863281, -11.123758316040039 ], [ -76.229660034179631, -11.127404212951603 ], [ -76.229148864746094, -11.128256797790527 ], [ -76.228721618652287, -11.128387451171875 ], [ -76.227973937988281, -11.127946853637695 ], [ -76.227485656738224, -11.128166198730355 ], [ -76.225990295410156, -11.128045082092285 ], [ -76.225646972656193, -11.128271102905273 ], [ -76.225372314453068, -11.129440307617188 ], [ -76.224685668945312, -11.130291938781625 ], [ -76.225013732910043, -11.133366584777832 ], [ -76.224639892578125, -11.135075569152832 ], [ -76.223663330078068, -11.136199951171875 ], [ -76.220985412597599, -11.136591911315918 ], [ -76.219451904296818, -11.138161659240723 ], [ -76.218544006347656, -11.138727188110352 ], [ -76.218536376953125, -11.142621994018555 ], [ -76.217834472656193, -11.143621444702148 ], [ -76.217323303222656, -11.145710945129338 ], [ -76.215164184570256, -11.147754669189453 ], [ -76.214767456054688, -11.149781227111816 ], [ -76.215675354003906, -11.150050163268986 ], [ -76.218391418457031, -11.149804115295353 ], [ -76.219184875488224, -11.149988174438477 ], [ -76.222824096679688, -11.152126312255859 ], [ -76.226112365722656, -11.154763221740666 ], [ -76.227302551269418, -11.154956817626896 ], [ -76.229270935058537, -11.1540269851684 ], [ -76.234069824218693, -11.149243354797306 ], [ -76.23553466796875, -11.148928642272892 ], [ -76.236717224121037, -11.148254394531193 ], [ -76.241317749023381, -11.143110275268555 ], [ -76.242073059081974, -11.142772674560547 ], [ -76.244659423828011, -11.142661094665527 ], [ -76.245155334472656, -11.142866134643498 ], [ -76.246109008789062, -11.143830299377328 ], [ -76.248741149902287, -11.145238876342773 ], [ -76.24981689453125, -11.146465301513615 ], [ -76.251396179199162, -11.149145126342773 ], [ -76.252647399902287, -11.149978637695256 ], [ -76.254730224609375, -11.150991439819279 ], [ -76.258834838867131, -11.150911331176644 ], [ -76.260765075683537, -11.150314331054688 ], [ -76.263748168945312, -11.148628234863281 ], [ -76.27337646484375, -11.141339302062931 ], [ -76.276741027832031, -11.140229225158691 ], [ -76.280288696289062, -11.137964248657227 ], [ -76.281112670898438, -11.137886047363224 ], [ -76.284912109375, -11.138376235961914 ], [ -76.286499023437443, -11.138161659240723 ], [ -76.2884521484375, -11.137475967407227 ], [ -76.29058837890625, -11.136290550231934 ], [ -76.293113708496094, -11.133829116821232 ], [ -76.2940673828125, -11.13331222534174 ], [ -76.296379089355469, -11.13316631317133 ], [ -76.302513122558537, -11.133410453796387 ], [ -76.304817199706974, -11.13320255279541 ], [ -76.305824279785156, -11.132781028747502 ], [ -76.307846069335938, -11.132536888122559 ], [ -76.308944702148438, -11.131328582763672 ], [ -76.310600280761719, -11.126766204833984 ], [ -76.311065673828125, -11.126093864440918 ], [ -76.311515808105469, -11.123986244201603 ], [ -76.315559387207031, -11.11634635925293 ], [ -76.316291809082031, -11.113890647888184 ], [ -76.317825317382812, -11.110297203063908 ], [ -76.318412780761719, -11.107381820678711 ], [ -76.318687438964844, -11.103220939636174 ], [ -76.319679260253849, -11.096553802490234 ], [ -76.319450378417969, -11.094411849975586 ], [ -76.3182373046875, -11.092437744140625 ], [ -76.318016052246094, -11.091517448425236 ], [ -76.319015502929631, -11.090435028076172 ], [ -76.320243835449219, -11.089554786682072 ], [ -76.326309204101562, -11.086786270141602 ], [ -76.327514648437443, -11.085912704467773 ], [ -76.329925537109375, -11.084980964660588 ], [ -76.33184814453125, -11.08347225189209 ], [ -76.334266662597656, -11.083037376403695 ], [ -76.335456848144531, -11.082405090332031 ], [ -76.336685180664006, -11.082357406616211 ], [ -76.337745666503906, -11.082612991332951 ], [ -76.341339111328068, -11.084549903869629 ], [ -76.34283447265625, -11.086297988891602 ], [ -76.34527587890625, -11.090662956237679 ], [ -76.346473693847656, -11.09196758270258 ], [ -76.348663330078125, -11.093578338623047 ], [ -76.34967041015625, -11.093962669372559 ], [ -76.350906372070312, -11.094064712524357 ], [ -76.351409912109375, -11.0938463211059 ], [ -76.352394104003849, -11.092909812927246 ], [ -76.353477478027344, -11.091222763061523 ], [ -76.357337951660156, -11.088431358337402 ], [ -76.3592529296875, -11.087418556213379 ], [ -76.363311767578125, -11.086232185363656 ], [ -76.364524841308537, -11.086109161376839 ], [ -76.365768432617131, -11.085561752319279 ], [ -76.372077941894531, -11.083815574645996 ], [ -76.375015258789006, -11.082391738891602 ], [ -76.376724243164006, -11.081270217895451 ], [ -76.378936767578011, -11.080404281616154 ], [ -76.381782531738224, -11.080156326293945 ], [ -76.382835388183537, -11.079815864562931 ], [ -76.383499145507756, -11.079151153564339 ], [ -76.383674621581974, -11.078500747680607 ], [ -76.382720947265568, -11.075857162475472 ], [ -76.382812499999943, -11.074769973754883 ], [ -76.383293151855412, -11.073953628539925 ], [ -76.386100769042969, -11.072032928466797 ], [ -76.389434814453125, -11.070860862731934 ], [ -76.392288208007699, -11.070296287536621 ], [ -76.393791198730412, -11.070770263671875 ], [ -76.395057678222656, -11.072201728820744 ], [ -76.396530151367188, -11.075104713439941 ], [ -76.397163391113281, -11.075634002685547 ], [ -76.397933959960938, -11.075894355773869 ], [ -76.39984130859375, -11.076040267944279 ], [ -76.405548095703125, -11.075596809387207 ], [ -76.413322448730469, -11.07569503784174 ], [ -76.416481018066349, -11.076504707336312 ], [ -76.418388366699162, -11.076522827148438 ], [ -76.420928955078125, -11.076998710632267 ], [ -76.422134399414006, -11.07675838470459 ], [ -76.42462158203125, -11.075652122497559 ], [ -76.425849914550724, -11.07551097869873 ], [ -76.427742004394474, -11.075909614562931 ], [ -76.428985595703068, -11.076436042785645 ], [ -76.430114746093693, -11.077362060546875 ], [ -76.432060241699219, -11.079487800598145 ], [ -76.433601379394531, -11.079966545104924 ], [ -76.434814453124943, -11.079754829406738 ], [ -76.435401916503906, -11.079407691955566 ], [ -76.440933227539062, -11.074407577514592 ], [ -76.443283081054631, -11.073040008544865 ], [ -76.446319580078125, -11.07171630859375 ], [ -76.447242736816406, -11.072416305541935 ], [ -76.448394775390625, -11.073795318603459 ], [ -76.449386596679631, -11.076148986816406 ], [ -76.450538635253849, -11.077300071716252 ], [ -76.451263427734375, -11.078907012939453 ], [ -76.451858520507756, -11.079682350158691 ], [ -76.452453613281193, -11.079922676086369 ], [ -76.453163146972656, -11.079828262329045 ], [ -76.455284118652344, -11.078118324279728 ], [ -76.456207275390625, -11.078131675720215 ], [ -76.458694458007812, -11.080253601074219 ], [ -76.460281372070256, -11.083148002624512 ], [ -76.46114349365223, -11.084003448486271 ], [ -76.464286804199162, -11.084477424621525 ], [ -76.469825744628906, -11.084574699401855 ], [ -76.471702575683537, -11.084239959716797 ], [ -76.4737548828125, -11.084258079528752 ], [ -76.476661682128849, -11.083095550537109 ], [ -76.477462768554688, -11.082975387573185 ], [ -76.479240417480412, -11.083669662475529 ], [ -76.480438232421875, -11.084958076476994 ], [ -76.481559753417969, -11.085748672485295 ], [ -76.485206604003906, -11.086109161376839 ], [ -76.489059448242131, -11.087808609008789 ], [ -76.491149902343693, -11.08931827545166 ], [ -76.493461608886662, -11.088472366333008 ], [ -76.497512817382812, -11.085983276367131 ], [ -76.498786926269474, -11.084580421447697 ], [ -76.500839233398438, -11.081050872802678 ], [ -76.501495361328125, -11.080558776855412 ], [ -76.503204345703125, -11.079953193664551 ], [ -76.505241394042969, -11.078000068664494 ], [ -76.508941650390625, -11.075278282165471 ], [ -76.51116943359375, -11.073079109191895 ], [ -76.514617919921818, -11.068587303161621 ], [ -76.517570495605412, -11.064060211181584 ], [ -76.519935607910156, -11.059055328369141 ], [ -76.520843505859261, -11.057572364807129 ], [ -76.523590087890568, -11.054401397705078 ], [ -76.526313781738281, -11.05195426940918 ], [ -76.52667236328125, -11.05010986328125 ], [ -76.527023315429631, -11.046545028686467 ], [ -76.527717590332031, -11.044942855834904 ], [ -76.528152465820256, -11.042968749999943 ], [ -76.531242370605469, -11.035938262939396 ], [ -76.532928466796818, -11.034006118774414 ], [ -76.533943176269531, -11.033581733703556 ], [ -76.535728454589844, -11.033644676208496 ], [ -76.541007995605469, -11.030320167541447 ], [ -76.546905517578125, -11.028672218322754 ], [ -76.548011779785099, -11.027932167053166 ], [ -76.549919128417912, -11.026151657104435 ], [ -76.552635192871094, -11.024418830871525 ], [ -76.55633544921875, -11.022726058959904 ], [ -76.560142517089844, -11.021704673767033 ], [ -76.564437866210938, -11.022342681884766 ], [ -76.564971923828068, -11.021535873413086 ], [ -76.566062927246094, -11.018068313598519 ], [ -76.56805419921875, -11.014748573303223 ], [ -76.569190979003849, -11.013359069824219 ], [ -76.570274353027344, -11.013713836669865 ], [ -76.572563171386719, -11.015177726745605 ], [ -76.576889038085881, -11.016401290893555 ], [ -76.578781127929688, -11.013941764831543 ], [ -76.579582214355412, -11.011524200439396 ], [ -76.580093383789062, -11.010717391967717 ], [ -76.580207824707031, -11.009928703308105 ], [ -76.580154418945256, -11.007759094238281 ], [ -76.579673767089787, -11.005538940429688 ], [ -76.580276489257812, -11.002397537231388 ], [ -76.578964233398438, -11.000061988830566 ], [ -76.578498840332031, -10.998693466186467 ], [ -76.578094482421875, -10.996436119079533 ], [ -76.578247070312443, -10.99482345581049 ], [ -76.578620910644474, -10.993674278259164 ], [ -76.579841613769474, -10.992067337036133 ], [ -76.580993652343693, -10.989909172058105 ], [ -76.582000732421875, -10.98757266998291 ], [ -76.582130432128849, -10.986521720886117 ], [ -76.58154296875, -10.98486328125 ], [ -76.580047607421818, -10.981966018676758 ], [ -76.579566955566349, -10.981454849243164 ], [ -76.576492309570312, -10.981136322021484 ], [ -76.574478149414062, -10.979755401611271 ], [ -76.573745727539006, -10.97831916809082 ], [ -76.573898315429688, -10.975101470947152 ], [ -76.569847106933537, -10.971712112426701 ], [ -76.568267822265625, -10.969036102294922 ], [ -76.564933776855469, -10.965121269226074 ], [ -76.564895629882756, -10.964524269103947 ], [ -76.567146301269531, -10.958222389221135 ], [ -76.566780090331974, -10.954921722412109 ], [ -76.566902160644474, -10.953927993774414 ], [ -76.567481994628906, -10.953111648559513 ], [ -76.569862365722543, -10.951028823852539 ], [ -76.569671630859261, -10.950484275817871 ], [ -76.568763732910156, -10.949479103088379 ], [ -76.569786071777344, -10.945486068725529 ], [ -76.568595886230412, -10.943350791931152 ], [ -76.568435668945312, -10.942545890808049 ], [ -76.568656921386719, -10.941940307617188 ], [ -76.569915771484375, -10.940340042114144 ], [ -76.570205688476562, -10.939272880554199 ], [ -76.569915771484375, -10.938723564147892 ], [ -76.568382263183594, -10.937140464782715 ], [ -76.568130493164006, -10.935694694518929 ], [ -76.569465637206974, -10.932189941406136 ], [ -76.569915771484375, -10.92928409576416 ], [ -76.570503234863224, -10.927644729614201 ], [ -76.570610046386662, -10.925637245178223 ], [ -76.571533203125, -10.923544883727971 ], [ -76.571151733398438, -10.918211936950627 ], [ -76.571876525878906, -10.916780471801701 ], [ -76.575187683105412, -10.913064956664925 ], [ -76.575469970703068, -10.91053295135498 ], [ -76.575363159179631, -10.907586097717228 ], [ -76.575630187988281, -10.906418800354004 ], [ -76.576530456542912, -10.904327392578068 ], [ -76.578460693359375, -10.901730537414551 ], [ -76.578613281249943, -10.898653984069767 ], [ -76.579933166503906, -10.895855903625431 ], [ -76.579307556152344, -10.894022941589355 ], [ -76.579216003417969, -10.892008781433049 ], [ -76.580070495605469, -10.886561393737736 ], [ -76.580345153808537, -10.879841804504338 ], [ -76.581115722656136, -10.872479438781681 ], [ -76.5809326171875, -10.86737060546875 ], [ -76.581100463867131, -10.86577129364008 ], [ -76.581939697265568, -10.863062858581543 ], [ -76.582901000976506, -10.861602783203068 ], [ -76.583236694335938, -10.85771369934082 ], [ -76.584182739257812, -10.853503227233887 ], [ -76.584892272949219, -10.851919174194279 ], [ -76.587074279785156, -10.848338127136117 ], [ -76.587753295898438, -10.845873832702637 ], [ -76.588134765625, -10.845319747924748 ], [ -76.58831787109375, -10.840889930725098 ], [ -76.5892333984375, -10.83765792846674 ], [ -76.590194702148438, -10.836032867431584 ], [ -76.592315673828125, -10.833400726318359 ], [ -76.596611022949219, -10.826751708984375 ], [ -76.597518920898324, -10.824324607849121 ], [ -76.597679138183537, -10.822018623352051 ], [ -76.598007202148438, -10.821166038513184 ], [ -76.598648071289006, -10.820639610290527 ], [ -76.60009765625, -10.820259094238281 ], [ -76.6011962890625, -10.819650650024414 ], [ -76.601287841796875, -10.816828727722111 ], [ -76.601905822753793, -10.815513610839844 ], [ -76.602813720703125, -10.814677238464355 ], [ -76.603446960449219, -10.814447402954045 ], [ -76.605911254882699, -10.8144273757934 ], [ -76.608604431152344, -10.814864158630257 ], [ -76.611091613769531, -10.816225051879883 ], [ -76.612838745117131, -10.816541671752873 ], [ -76.614868164062443, -10.816530227661076 ], [ -76.6158447265625, -10.816003799438477 ], [ -76.618125915527344, -10.814009666442871 ], [ -76.620201110839787, -10.811566352844181 ], [ -76.620536804199219, -10.810454368591252 ], [ -76.620864868164006, -10.807576179504395 ], [ -76.62261962890625, -10.80334568023676 ], [ -76.623352050781193, -10.80222225189209 ], [ -76.625747680663949, -10.799468994140625 ], [ -76.626266479492188, -10.798373222351074 ], [ -76.626411437988224, -10.796627044677734 ], [ -76.625022888183594, -10.793857574462891 ], [ -76.625038146972656, -10.792908668518066 ], [ -76.625343322753849, -10.791975021362305 ], [ -76.626274108886719, -10.790678024291935 ], [ -76.627685546875, -10.789369583129826 ], [ -76.630996704101562, -10.787552833557129 ], [ -76.632797241210881, -10.785182952880859 ], [ -76.63262939453125, -10.783775329589787 ], [ -76.630592346191349, -10.782185554504338 ], [ -76.630126953124943, -10.781537055969238 ], [ -76.629806518554688, -10.779251098632812 ], [ -76.63006591796875, -10.777449607849064 ], [ -76.629806518554688, -10.775425910949593 ], [ -76.627838134765568, -10.773603439330998 ], [ -76.626396179199162, -10.771637916564941 ], [ -76.625953674316406, -10.770355224609375 ], [ -76.625946044921875, -10.769282341003418 ], [ -76.628295898437443, -10.765516281127873 ], [ -76.629653930664006, -10.760030746459961 ], [ -76.630805969238281, -10.757746696472168 ], [ -76.633773803710938, -10.754412651062012 ], [ -76.634887695312443, -10.753658294677621 ], [ -76.638816833496094, -10.750129699706918 ], [ -76.640815734863168, -10.748128890991211 ], [ -76.641815185546875, -10.746813774108887 ], [ -76.64227294921875, -10.74571514129633 ], [ -76.642303466796875, -10.743276596069279 ], [ -76.645004272460881, -10.73908519744873 ], [ -76.646102905273438, -10.734639167785645 ], [ -76.648017883300781, -10.731392860412598 ], [ -76.648124694824162, -10.730731964111328 ], [ -76.648628234863224, -10.730016708374023 ], [ -76.649765014648381, -10.724621772766113 ], [ -76.649635314941406, -10.723411560058537 ], [ -76.648918151855412, -10.721814155578556 ], [ -76.648948669433594, -10.720603942871094 ], [ -76.649703979492188, -10.719325065612793 ], [ -76.652580261230469, -10.716279983520508 ], [ -76.653823852539062, -10.71373462677002 ], [ -76.654182434082031, -10.712014198303223 ], [ -76.6541748046875, -10.710928916931152 ], [ -76.653343200683594, -10.708230018615723 ], [ -76.653411865234375, -10.706486701965332 ], [ -76.653938293457031, -10.705704689025822 ], [ -76.656791687011719, -10.70301342010498 ], [ -76.657402038574162, -10.701963424682617 ], [ -76.659149169921875, -10.695181846618652 ], [ -76.659393310546818, -10.693046569824219 ], [ -76.659248352050781, -10.690081596374512 ], [ -76.659835815429688, -10.687559127807617 ], [ -76.6607666015625, -10.68630313873291 ], [ -76.663208007812443, -10.684527397155762 ], [ -76.667114257812443, -10.683007240295353 ], [ -76.668411254882812, -10.682293891906738 ], [ -76.67018890380848, -10.680242538452092 ], [ -76.670791625976562, -10.678766250610352 ], [ -76.670547485351506, -10.676884651184025 ], [ -76.669944763183594, -10.675667762756291 ], [ -76.668296813964844, -10.67387866973877 ], [ -76.665237426757812, -10.671408653259221 ], [ -76.662437438964787, -10.667427062988224 ], [ -76.660507202148438, -10.664019584655762 ], [ -76.660102844238281, -10.662459373474064 ], [ -76.65985107421875, -10.65760612487793 ], [ -76.659347534179688, -10.655238151550293 ], [ -76.658615112304631, -10.653931617736703 ], [ -76.656097412109375, -10.651883125305176 ], [ -76.655097961425724, -10.650280952453556 ], [ -76.655204772949162, -10.648795127868596 ], [ -76.656120300292969, -10.647299766540414 ], [ -76.656158447265568, -10.646776199340763 ], [ -76.658050537109318, -10.644387245178166 ], [ -76.660438537597599, -10.639113426208496 ], [ -76.662872314453125, -10.635375976562443 ], [ -76.667617797851562, -10.630017280578613 ], [ -76.672042846679688, -10.625456809997502 ], [ -76.673149108886719, -10.624481201171875 ], [ -76.675430297851506, -10.623213768005371 ], [ -76.676033020019531, -10.622542381286621 ], [ -76.676361083984318, -10.621065139770508 ], [ -76.676216125488281, -10.619856834411621 ], [ -76.675094604492188, -10.617392539978027 ], [ -76.673934936523438, -10.61591911315918 ], [ -76.673149108886719, -10.613815307617131 ], [ -76.672996520996094, -10.612334251403809 ], [ -76.673210144042912, -10.611147880554142 ], [ -76.674758911132756, -10.60683631896967 ], [ -76.675178527832031, -10.603904724121037 ], [ -76.675918579101562, -10.602943420410099 ], [ -76.676605224609375, -10.602313995361214 ], [ -76.678565979003849, -10.601372718810978 ], [ -76.680702209472656, -10.599706649780273 ], [ -76.681404113769531, -10.598401069641056 ], [ -76.681739807128906, -10.596429824829045 ], [ -76.682281494140568, -10.595793724060002 ], [ -76.683227539062443, -10.595272064208984 ], [ -76.685737609863281, -10.594709396362248 ], [ -76.689002990722656, -10.594662666320801 ], [ -76.691230773925724, -10.595311164855957 ], [ -76.692298889160099, -10.595903396606445 ], [ -76.693908691406193, -10.596164703369141 ], [ -76.694869995117131, -10.596675872802678 ], [ -76.696105957031193, -10.596805572509766 ], [ -76.698028564453068, -10.595864295959473 ], [ -76.701026916503906, -10.593740463256779 ], [ -76.703056335449162, -10.591559410095215 ], [ -76.703895568847656, -10.590164184570256 ], [ -76.704147338867188, -10.588722229003906 ], [ -76.703567504882699, -10.587072372436467 ], [ -76.702865600585881, -10.58092021942133 ], [ -76.703102111816406, -10.576217651367188 ], [ -76.704147338867188, -10.571763038635254 ], [ -76.704132080078068, -10.570008277892953 ], [ -76.704597473144474, -10.568052291870117 ], [ -76.706047058105355, -10.564864158630371 ], [ -76.707168579101506, -10.561404228210449 ], [ -76.708763122558594, -10.559508323669434 ], [ -76.709465026855412, -10.557749748229867 ], [ -76.709602355957031, -10.55439567565918 ], [ -76.710884094238224, -10.549028396606388 ], [ -76.71075439453125, -10.542165756225529 ], [ -76.710960388183594, -10.540283203125 ], [ -76.711616516113281, -10.538969993591309 ], [ -76.714309692382756, -10.535086631774902 ], [ -76.716598510742131, -10.530355453491097 ], [ -76.716903686523381, -10.529178619384766 ], [ -76.716712951660099, -10.523404121398926 ], [ -76.717254638671875, -10.521998405456543 ], [ -76.718711853027287, -10.520408630371094 ], [ -76.721557617187443, -10.519534111022949 ], [ -76.722236633300724, -10.51911544799799 ], [ -76.725097656249943, -10.514217376708984 ], [ -76.729309082031193, -10.510198593139592 ], [ -76.729965209960881, -10.509354591369515 ], [ -76.730293273925781, -10.508455276489258 ], [ -76.730422973632812, -10.507525444030762 ], [ -76.730186462402344, -10.505656242370549 ], [ -76.728950500488281, -10.502279281616211 ], [ -76.729125976562386, -10.495138168334904 ], [ -76.728561401367188, -10.492366790771484 ], [ -76.728897094726562, -10.489290237426758 ], [ -76.72821044921875, -10.487648963928223 ], [ -76.726478576660156, -10.485750198364258 ], [ -76.726203918457031, -10.484991073608398 ], [ -76.724250793456974, -10.484823226928711 ], [ -76.723243713378906, -10.483696937560921 ], [ -76.723083496093693, -10.481304168701172 ], [ -76.723236083984375, -10.480091094970703 ], [ -76.723808288574219, -10.478720664978027 ], [ -76.723915100097656, -10.477511405944767 ], [ -76.723739624023438, -10.475901603698674 ], [ -76.722679138183594, -10.471612930297738 ], [ -76.72206878662098, -10.470432281494141 ], [ -76.720893859863224, -10.468938827514535 ], [ -76.71923828125, -10.465827941894474 ], [ -76.716789245605412, -10.462885856628418 ], [ -76.715446472167969, -10.461798667907658 ], [ -76.713600158691406, -10.461221694946289 ], [ -76.708709716796818, -10.461336135864258 ], [ -76.706390380859375, -10.460573196411133 ], [ -76.70379638671875, -10.461347579956055 ], [ -76.702438354492188, -10.46138858795166 ], [ -76.701377868652344, -10.460825920104924 ], [ -76.698898315429688, -10.457105636596623 ], [ -76.697822570800724, -10.455086708068734 ], [ -76.697723388671818, -10.45333194732666 ], [ -76.699295043945312, -10.450963973999023 ], [ -76.699569702148438, -10.450040817260685 ], [ -76.698471069335938, -10.448392868041992 ], [ -76.698539733886719, -10.445425987243652 ], [ -76.697044372558594, -10.44317626953125 ], [ -76.69586181640625, -10.442520141601562 ], [ -76.69415283203125, -10.441986083984318 ], [ -76.691314697265625, -10.441758155822754 ], [ -76.687545776367074, -10.440188407897949 ], [ -76.679107666015625, -10.437564849853516 ], [ -76.677696228027287, -10.437671661376896 ], [ -76.674415588378906, -10.438980102539062 ], [ -76.670578002929688, -10.439850807189941 ], [ -76.669097900390625, -10.439678192138615 ], [ -76.666160583496037, -10.438565254211369 ], [ -76.664482116699219, -10.437408447265568 ], [ -76.663589477539006, -10.436397552490234 ], [ -76.663360595703125, -10.434673309326172 ], [ -76.663833618164062, -10.432980537414551 ], [ -76.663833618164062, -10.431748390197754 ], [ -76.661369323730469, -10.428363800048714 ], [ -76.660140991210881, -10.422845840454045 ], [ -76.659126281738168, -10.421394348144474 ], [ -76.658264160156193, -10.420730590820199 ], [ -76.655181884765568, -10.420576095580998 ], [ -76.652130126953068, -10.419985771179199 ], [ -76.651367187499943, -10.419195175170898 ], [ -76.650558471679688, -10.417471885681152 ], [ -76.649734497070312, -10.416410446166992 ], [ -76.648895263671818, -10.415717124938908 ], [ -76.647125244140625, -10.415021896362248 ], [ -76.642768859863281, -10.414972305297852 ], [ -76.6395263671875, -10.414590835571289 ], [ -76.637123107910156, -10.415017127990666 ], [ -76.635787963867188, -10.414644241332951 ], [ -76.634880065917912, -10.415102005004883 ], [ -76.633232116699219, -10.41688156127924 ], [ -76.632301330566349, -10.417104721069336 ], [ -76.628318786621037, -10.41508960723877 ], [ -76.626808166503906, -10.415134429931641 ], [ -76.625549316406193, -10.415664672851506 ], [ -76.624465942382812, -10.415760040283146 ], [ -76.621421813964787, -10.414980888366642 ], [ -76.619094848632812, -10.413926124572754 ], [ -76.617828369140568, -10.412676811218205 ], [ -76.617164611816293, -10.411640167236271 ], [ -76.612838745117131, -10.409364700317383 ], [ -76.609466552734375, -10.406425476074105 ], [ -76.6072998046875, -10.405035018920842 ], [ -76.606781005859375, -10.404333114624023 ], [ -76.605812072753849, -10.403902053832894 ], [ -76.596084594726506, -10.401111602783203 ], [ -76.593826293945312, -10.400971412658691 ], [ -76.592071533203068, -10.401178359985352 ], [ -76.590782165527344, -10.400723457336369 ], [ -76.590675354003906, -10.400217056274414 ], [ -76.590927124023381, -10.399574279785156 ], [ -76.593605041503849, -10.396162033080998 ], [ -76.594215393066406, -10.394532203674203 ], [ -76.594184875488281, -10.389540672302246 ], [ -76.593299865722599, -10.387121200561523 ], [ -76.591545104980469, -10.385258674621525 ], [ -76.589515686035156, -10.384474754333496 ], [ -76.588569641113281, -10.384650230407658 ], [ -76.586761474609375, -10.385807991027832 ], [ -76.5858154296875, -10.385929107666016 ], [ -76.585021972656193, -10.385707855224553 ], [ -76.583831787109375, -10.384248733520451 ], [ -76.583183288574162, -10.381078720092717 ], [ -76.582588195800781, -10.380004882812443 ], [ -76.580131530761662, -10.377882957458439 ], [ -76.578681945800781, -10.377121925354004 ], [ -76.576606750488224, -10.376408576965218 ], [ -76.575012207031136, -10.376543045043945 ], [ -76.573936462402287, -10.377181053161621 ], [ -76.569610595703125, -10.382546424865723 ], [ -76.568855285644531, -10.383120536804142 ], [ -76.567581176757812, -10.383604049682617 ], [ -76.566665649414062, -10.384406089782715 ], [ -76.561752319335881, -10.390615463256779 ], [ -76.560821533203125, -10.391378402709904 ], [ -76.559623718261662, -10.39166259765625 ], [ -76.557739257812443, -10.391483306884766 ], [ -76.556869506835881, -10.391134262084961 ], [ -76.553718566894474, -10.388138771057015 ], [ -76.551628112792912, -10.385643959045353 ], [ -76.550270080566406, -10.38501930236805 ], [ -76.548782348632756, -10.385106086730957 ], [ -76.544448852539062, -10.386729240417424 ], [ -76.541732788085938, -10.387077331542969 ], [ -76.540534973144531, -10.386918067932129 ], [ -76.537803649902287, -10.385729789733887 ], [ -76.536018371582031, -10.385801315307617 ], [ -76.532791137695312, -10.386331558227482 ], [ -76.530052185058594, -10.385514259338379 ], [ -76.52838134765625, -10.3841295242309 ], [ -76.527267456054688, -10.382779121398869 ], [ -76.525718688964844, -10.379622459411621 ], [ -76.525207519531193, -10.377653121948185 ], [ -76.524635314941349, -10.377257347106934 ], [ -76.521797180175668, -10.377776145935002 ], [ -76.519882202148381, -10.378455162048283 ], [ -76.517799377441406, -10.380762100219727 ], [ -76.515556335449219, -10.381767272949219 ], [ -76.511085510253849, -10.381390571594238 ], [ -76.510047912597599, -10.381728172302246 ], [ -76.508537292480412, -10.381780624389648 ], [ -76.504890441894474, -10.380288124084416 ], [ -76.503570556640568, -10.380078315734863 ], [ -76.501770019531136, -10.380681991577148 ], [ -76.500152587890625, -10.380481719970646 ], [ -76.498855590820312, -10.380768775939885 ], [ -76.497589111328125, -10.380683898925781 ], [ -76.497123718261719, -10.380911827087346 ], [ -76.493545532226506, -10.380425453186035 ], [ -76.492324829101506, -10.37982273101801 ], [ -76.491508483886719, -10.379112243652344 ], [ -76.490776062011662, -10.377959251403752 ], [ -76.490638732910156, -10.376873970031681 ], [ -76.490814208984375, -10.376185417175293 ], [ -76.492256164550781, -10.373584747314396 ], [ -76.491973876953125, -10.371064186096135 ], [ -76.490501403808537, -10.369498252868539 ], [ -76.486892700195199, -10.367217063903809 ], [ -76.48626708984375, -10.36644172668457 ], [ -76.486274719238281, -10.363260269164982 ], [ -76.486427307128906, -10.362953186035156 ], [ -76.486129760742074, -10.361904144287109 ], [ -76.485824584960881, -10.355080604553223 ], [ -76.4854736328125, -10.353208541870117 ], [ -76.484764099121037, -10.351062774658203 ], [ -76.484138488769531, -10.350187301635685 ], [ -76.482620239257812, -10.348883628845158 ], [ -76.478721618652344, -10.348086357116699 ], [ -76.476806640625, -10.347083091735726 ], [ -76.476593017578011, -10.34656810760498 ], [ -76.476608276367188, -10.344680786132812 ], [ -76.476348876953125, -10.343549728393555 ], [ -76.474182128906193, -10.340459823608342 ], [ -76.472602844238281, -10.337129592895451 ], [ -76.472579956054631, -10.336532592773438 ], [ -76.473594665527344, -10.334638595580998 ], [ -76.477745056152344, -10.332414627075195 ], [ -76.479568481445312, -10.329438209533691 ], [ -76.482460021972656, -10.327121734619141 ], [ -76.48406982421875, -10.323615074157658 ], [ -76.486839294433594, -10.318981170654297 ], [ -76.489356994628849, -10.31580734252924 ], [ -76.49359130859375, -10.311257362365666 ], [ -76.493904113769531, -10.310414314269906 ], [ -76.492698669433537, -10.310275077819711 ], [ -76.49017333984375, -10.310494422912541 ], [ -76.486640930175781, -10.312101364135742 ], [ -76.485298156738281, -10.312308311462402 ], [ -76.481483459472656, -10.31157398223877 ], [ -76.478050231933594, -10.311481475830078 ], [ -76.473632812499943, -10.310470581054631 ], [ -76.470924377441406, -10.310365676879883 ], [ -76.46929931640625, -10.310544013977051 ], [ -76.467231750488224, -10.311196327209473 ], [ -76.463722229003906, -10.313735008239746 ], [ -76.461082458496094, -10.314906120300293 ], [ -76.457580566406193, -10.315361976623478 ], [ -76.452384948730469, -10.31462574005127 ], [ -76.448753356933594, -10.315347671508789 ], [ -76.447914123535156, -10.316265106201172 ], [ -76.447647094726562, -10.317567825317326 ], [ -76.446762084960938, -10.31933498382557 ], [ -76.445266723632812, -10.319930076599121 ], [ -76.441558837890568, -10.320063591003361 ], [ -76.440139770507756, -10.319745063781681 ], [ -76.43865966796875, -10.319061279296818 ], [ -76.436134338378849, -10.318967819213867 ], [ -76.434112548828125, -10.318452835082894 ], [ -76.431312561035156, -10.319025039672738 ], [ -76.426971435546818, -10.318854331970101 ], [ -76.425529479980469, -10.318979263305664 ], [ -76.423065185546818, -10.317849159240666 ], [ -76.420639038085938, -10.315979957580566 ], [ -76.415756225585938, -10.314302444458008 ], [ -76.411750793457031, -10.312411308288574 ], [ -76.406181335449162, -10.308730125427189 ], [ -76.405532836914006, -10.308497428894043 ], [ -76.40283203125, -10.308627128601017 ], [ -76.402214050292969, -10.308274269104004 ], [ -76.396041870117188, -10.302297592163029 ], [ -76.389442443847656, -10.291892051696777 ], [ -76.386878967285156, -10.289109230041504 ], [ -76.379150390625, -10.292043685913086 ], [ -76.373992919921875, -10.292654991149902 ], [ -76.372367858886719, -10.293059349060059 ], [ -76.371109008789006, -10.293940544128361 ], [ -76.367324829101562, -10.297592163085881 ], [ -76.366050720214787, -10.298266410827637 ], [ -76.364784240722656, -10.298425674438363 ], [ -76.361320495605469, -10.297417640685978 ], [ -76.358070373535156, -10.297323226928711 ], [ -76.357078552246037, -10.297500610351506 ], [ -76.355583190917969, -10.296910285949707 ], [ -76.352439880371094, -10.294760704040527 ], [ -76.350219726562443, -10.292148590087834 ], [ -76.347366333007756, -10.289521217346135 ], [ -76.345565795898438, -10.28725624084467 ], [ -76.344558715820312, -10.286503791809082 ], [ -76.343009948730469, -10.285994529724121 ], [ -76.337425231933537, -10.28627967834467 ], [ -76.33642578125, -10.285877227783146 ], [ -76.334823608398438, -10.287943840026799 ], [ -76.333648681640625, -10.289983749389648 ], [ -76.33306884765625, -10.293966293334961 ], [ -76.332115173339844, -10.296293258666935 ], [ -76.330490112304574, -10.298669815063477 ], [ -76.326385498046818, -10.303333282470589 ], [ -76.325851440429688, -10.305053710937386 ], [ -76.325836181640625, -10.307016372680664 ], [ -76.32720947265625, -10.309858322143498 ], [ -76.329605102539006, -10.312778472900277 ], [ -76.330451965332031, -10.315341949462834 ], [ -76.328903198242188, -10.31627178192133 ], [ -76.327468872070312, -10.317644119262695 ], [ -76.322982788085938, -10.323820114135742 ], [ -76.321533203125, -10.327107429504281 ], [ -76.320388793945312, -10.329146385192814 ], [ -76.319419860839787, -10.331753730773869 ], [ -76.319198608398438, -10.333353996276742 ], [ -76.319221496581974, -10.335697174072266 ], [ -76.317245483398438, -10.341083526611271 ], [ -76.317451477050781, -10.344058990478402 ], [ -76.317901611328011, -10.345710754394531 ], [ -76.319396972656193, -10.345661163330021 ], [ -76.320175170898381, -10.346299171447754 ], [ -76.320777893066406, -10.347199440002385 ], [ -76.320777893066406, -10.348121643066349 ], [ -76.3199462890625, -10.349303245544434 ], [ -76.319808959960824, -10.350639343261605 ], [ -76.320671081542969, -10.352596282958984 ], [ -76.323371887207031, -10.355744361877441 ], [ -76.323478698730469, -10.358519554138127 ], [ -76.322280883789006, -10.360739707946777 ], [ -76.319915771484375, -10.363189697265568 ], [ -76.31976318359375, -10.367785453796387 ], [ -76.319412231445256, -10.368988037109375 ], [ -76.319931030273438, -10.371056556701603 ], [ -76.319061279296875, -10.372190475463867 ], [ -76.318542480468693, -10.373730659484806 ], [ -76.316429138183594, -10.377074241638184 ], [ -76.313491821289006, -10.382520675659123 ], [ -76.313117980956974, -10.384556770324707 ], [ -76.313117980956974, -10.386979103088322 ], [ -76.312767028808594, -10.387615203857365 ], [ -76.311897277832031, -10.388397216796818 ], [ -76.311500549316349, -10.391301155090332 ], [ -76.309783935546818, -10.395366668701058 ], [ -76.309234619140625, -10.397358894348088 ], [ -76.308540344238224, -10.39871692657465 ], [ -76.308837890624943, -10.40185546875 ], [ -76.309349060058594, -10.402800559997559 ], [ -76.309646606445312, -10.403931617736816 ], [ -76.309539794921875, -10.405894279479924 ], [ -76.30877685546875, -10.407624244689941 ], [ -76.307693481445256, -10.408241271972543 ], [ -76.307060241699219, -10.409005165100041 ], [ -76.306571960449219, -10.410263061523438 ], [ -76.306404113769531, -10.411594390869141 ], [ -76.305320739746094, -10.413714408874455 ], [ -76.303855895996037, -10.413249015808049 ], [ -76.299766540527287, -10.41092395782465 ], [ -76.298690795898438, -10.410774230957031 ], [ -76.287841796874943, -10.41630744934082 ], [ -76.286140441894474, -10.416250228881836 ], [ -76.285026550292969, -10.41533184051508 ], [ -76.283943176269474, -10.413464546203613 ], [ -76.279335021972656, -10.407903671264535 ], [ -76.277526855468693, -10.40471076965332 ], [ -76.276878356933537, -10.401801109313908 ], [ -76.277732849121037, -10.396254539489746 ], [ -76.277656555175668, -10.393732070922852 ], [ -76.276031494140568, -10.391706466674805 ], [ -76.274505615234318, -10.390574455261117 ], [ -76.273773193359375, -10.389117240905705 ], [ -76.274314880371037, -10.386216163635197 ], [ -76.275062561035099, -10.384295463562012 ], [ -76.275192260742188, -10.382685661315918 ], [ -76.274864196777287, -10.381944656372013 ], [ -76.273628234863224, -10.380727767944222 ], [ -76.273292541503906, -10.380114555358887 ], [ -76.272575378417912, -10.377323150634709 ], [ -76.271041870117131, -10.373568534851017 ], [ -76.270515441894531, -10.370649337768555 ], [ -76.269187927246094, -10.369742393493652 ], [ -76.267738342285043, -10.369802474975586 ], [ -76.264854431152287, -10.370861053466797 ], [ -76.263519287109318, -10.37109375 ], [ -76.262290954589787, -10.371677398681584 ], [ -76.258941650390568, -10.37217903137207 ], [ -76.256019592285156, -10.374975204467717 ], [ -76.249244689941406, -10.378933906555176 ], [ -76.245719909667969, -10.382167816162053 ], [ -76.242752075195199, -10.384365081787053 ], [ -76.237846374511719, -10.386673927307072 ], [ -76.233428955078125, -10.387639999389648 ], [ -76.232528686523381, -10.38909912109375 ], [ -76.232322692871037, -10.39106369018549 ], [ -76.232055664062443, -10.39173412322998 ], [ -76.228569030761719, -10.396078109741097 ], [ -76.227348327636719, -10.396777153015137 ], [ -76.226730346679574, -10.396617889404297 ], [ -76.226348876953011, -10.396114349365178 ], [ -76.226348876953011, -10.393238067626896 ], [ -76.228218078613281, -10.38444995880127 ], [ -76.231094360351506, -10.37548828125 ], [ -76.231307983398324, -10.373525619506836 ], [ -76.230842590332031, -10.371672630310002 ], [ -76.228118896484375, -10.372659683227539 ], [ -76.223960876464787, -10.374637603759709 ], [ -76.217437744140625, -10.376126289367562 ], [ -76.213943481445256, -10.376629829406738 ], [ -76.208419799804574, -10.376693725585938 ], [ -76.205352783203068, -10.376442909240723 ], [ -76.204124450683537, -10.376746177673226 ], [ -76.203842163085824, -10.37741756439209 ], [ -76.203880310058594, -10.37804126739502 ], [ -76.205932617187443, -10.380675315856934 ], [ -76.207649230956974, -10.384038925170842 ], [ -76.207778930664062, -10.386001586914006 ], [ -76.208015441894474, -10.386678695678711 ], [ -76.207923889160099, -10.388631820678654 ], [ -76.207168579101506, -10.389277458190918 ], [ -76.206275939941406, -10.38941574096674 ], [ -76.205276489257812, -10.389384269714355 ], [ -76.203430175781193, -10.388930320739689 ], [ -76.202323913574219, -10.388951301574707 ], [ -76.197921752929631, -10.392359733581486 ], [ -76.19366455078125, -10.392464637756348 ], [ -76.189971923828125, -10.394331932067871 ], [ -76.188713073730469, -10.394510269165039 ], [ -76.186912536621094, -10.394282341003361 ], [ -76.186408996582031, -10.394489288330021 ], [ -76.185127258300724, -10.395717620849553 ], [ -76.183807373046818, -10.398072242736816 ], [ -76.1824951171875, -10.400845527648926 ], [ -76.181289672851562, -10.404782295227051 ], [ -76.179412841796818, -10.407103538513184 ], [ -76.177879333496037, -10.408328056335449 ], [ -76.175102233886662, -10.409877777099609 ], [ -76.173988342285099, -10.410232543945256 ], [ -76.172454833984318, -10.411361694335881 ], [ -76.17010498046875, -10.412019729614258 ], [ -76.167251586914062, -10.413152694702035 ], [ -76.164131164550781, -10.413534164428597 ], [ -76.1578369140625, -10.412219047546273 ], [ -76.154266357421875, -10.410694122314396 ], [ -76.151344299316406, -10.408434867858887 ], [ -76.1502685546875, -10.40852165222168 ], [ -76.1484375, -10.409659385681152 ], [ -76.146804809570256, -10.4097642898559 ], [ -76.143714904785156, -10.408291816711426 ], [ -76.141921997070256, -10.408369064330998 ], [ -76.14111328125, -10.409095764160043 ], [ -76.140304565429631, -10.410681724548283 ], [ -76.139518737792969, -10.413921356201172 ], [ -76.138435363769531, -10.416266441345215 ], [ -76.136810302734375, -10.417448997497502 ], [ -76.133865356445312, -10.418816566467228 ], [ -76.132606506347656, -10.420330047607365 ], [ -76.132072448730469, -10.421669960021973 ], [ -76.131874084472656, -10.423814773559513 ], [ -76.131187438964844, -10.425572395324707 ], [ -76.1307373046875, -10.429055213928109 ], [ -76.130363464355469, -10.429760932922363 ], [ -76.1298828125, -10.430023193359375 ], [ -76.128074645996094, -10.429496765136662 ], [ -76.123260498046875, -10.42863655090332 ], [ -76.122451782226562, -10.428232192993164 ], [ -76.121192932128906, -10.427060127258301 ], [ -76.119682312011719, -10.426750183105469 ], [ -76.116256713867188, -10.427556991577148 ], [ -76.114723205566406, -10.428340911865178 ], [ -76.11041259765625, -10.428790092468205 ], [ -76.109169006347656, -10.429526329040527 ], [ -76.108299255371094, -10.430444717407227 ], [ -76.107170104980469, -10.433052062988281 ], [ -76.106353759765568, -10.43433761596674 ], [ -76.105293273925724, -10.435173988342285 ], [ -76.10418701171875, -10.43544960021967 ], [ -76.103378295898438, -10.435026168823242 ], [ -76.102584838867188, -10.433620452880859 ], [ -76.102210998535156, -10.433366775512582 ], [ -76.100852966308594, -10.43337345123291 ], [ -76.099952697753849, -10.434496879577637 ], [ -76.099113464355412, -10.434371948242074 ], [ -76.098045349121037, -10.433906555175781 ], [ -76.097305297851506, -10.433394432067757 ], [ -76.096511840820312, -10.432391166687012 ], [ -76.095809936523438, -10.430759429931641 ], [ -76.095222473144531, -10.429937362670785 ], [ -76.094429016113224, -10.429559707641602 ], [ -76.092979431152344, -10.429303169250431 ], [ -76.091011047363224, -10.429580688476506 ], [ -76.089584350585881, -10.430362701415902 ], [ -76.086807250976506, -10.433168411254826 ], [ -76.086036682128849, -10.43363094329834 ], [ -76.084335327148381, -10.433961868286133 ], [ -76.080711364746037, -10.433665275573674 ], [ -76.079261779785099, -10.434104919433594 ], [ -76.077461242675724, -10.435336112976074 ], [ -76.076171875, -10.436836242675724 ], [ -76.074676513671875, -10.439393043518066 ], [ -76.074218749999943, -10.440650939941349 ], [ -76.074394226074162, -10.441510200500431 ], [ -76.07509613037098, -10.442784309387093 ], [ -76.075424194335938, -10.444990158080998 ], [ -76.076271057128906, -10.446685791015625 ], [ -76.077644348144474, -10.448553085327148 ], [ -76.078277587890625, -10.449952125549316 ], [ -76.078369140625, -10.451509475708008 ], [ -76.077133178710938, -10.452416419982796 ], [ -76.073234558105469, -10.452508926391545 ], [ -76.072433471679688, -10.452703475952092 ], [ -76.070846557617188, -10.454281806945801 ], [ -76.069488525390625, -10.45638370513916 ], [ -76.063087463378906, -10.459643363952637 ], [ -76.059898376464787, -10.4621324539184 ], [ -76.058708190917969, -10.464332580566406 ], [ -76.057945251464844, -10.46511268615717 ], [ -76.055892944335881, -10.465796470642033 ], [ -76.054039001464844, -10.465403556823674 ], [ -76.051101684570312, -10.463995933532658 ], [ -76.050079345703068, -10.462967872619572 ], [ -76.048767089843693, -10.46052265167225 ], [ -76.046707153320312, -10.458125114440918 ], [ -76.044425964355469, -10.456501960754338 ], [ -76.040374755859318, -10.454489707946777 ], [ -76.038230895996094, -10.454216003417969 ], [ -76.035308837890568, -10.455629348754883 ], [ -76.034233093261719, -10.455814361572209 ], [ -76.033615112304688, -10.455742835998478 ], [ -76.03271484375, -10.455129623413086 ], [ -76.032073974609318, -10.45515060424799 ], [ -76.031692504882756, -10.45595741271967 ], [ -76.031425476074219, -10.458272933959961 ], [ -76.030975341796875, -10.459251403808537 ], [ -76.030601501464844, -10.463638305664006 ], [ -76.030258178710881, -10.465329170227051 ], [ -76.029533386230469, -10.466191291809082 ], [ -76.02783203125, -10.467434883117676 ], [ -76.026405334472656, -10.467775344848576 ], [ -76.025680541992131, -10.467506408691406 ], [ -76.024703979492188, -10.466532707214355 ], [ -76.023094177246037, -10.462151527404785 ], [ -76.022102355957031, -10.460852622985783 ], [ -76.019828796386719, -10.459403991699219 ], [ -76.017776489257756, -10.458715438842717 ], [ -76.012588500976562, -10.453740119934025 ], [ -76.01141357421875, -10.45355319976801 ], [ -76.010940551757812, -10.453817367553711 ], [ -76.010452270507812, -10.454850196838379 ], [ -76.010208129882812, -10.459243774414006 ], [ -76.009735107421818, -10.461434364318848 ], [ -76.009719848632812, -10.463054656982365 ], [ -76.009330749511719, -10.465261459350586 ], [ -76.009361267089787, -10.472439765930119 ], [ -76.009056091308594, -10.474575996398926 ], [ -76.00848388671875, -10.47589111328125 ], [ -76.003898620605469, -10.480469703674316 ], [ -76.003364562988224, -10.483011245727539 ], [ -76.003646850585881, -10.487849235534554 ], [ -76.002342224121094, -10.489462852477971 ], [ -76.001655578613224, -10.490704536437988 ], [ -76.000038146972599, -10.490312576293945 ], [ -75.99727630615223, -10.488421440124398 ], [ -75.991859436035156, -10.485500335693359 ], [ -75.987823486328068, -10.484127998352051 ], [ -75.985954284667969, -10.483210563659668 ], [ -75.984886169433594, -10.482990264892521 ], [ -75.983184814453125, -10.482001304626408 ], [ -75.979080200195312, -10.480555534362793 ], [ -75.9771728515625, -10.479350090026799 ], [ -75.973617553710881, -10.476404190063477 ], [ -75.967041015624943, -10.469722747802678 ], [ -75.96307373046875, -10.463659286498967 ], [ -75.962646484374943, -10.462647438049316 ], [ -75.961654663085938, -10.461872100830078 ], [ -75.961532592773438, -10.46115779876709 ], [ -75.960594177246094, -10.460310935974121 ], [ -75.959320068359261, -10.457819938659668 ], [ -75.957862854003849, -10.455870628356877 ], [ -75.957542419433594, -10.454832077026367 ], [ -75.957588195800724, -10.452851295471191 ], [ -75.956291198730469, -10.451472282409668 ], [ -75.955802917480469, -10.450216293334904 ], [ -75.954330444335881, -10.448158264160156 ], [ -75.953628540039062, -10.44531154632557 ], [ -75.952880859375, -10.444284439086914 ], [ -75.951545715332031, -10.44338321685791 ], [ -75.950775146484375, -10.44097900390625 ], [ -75.948974609375, -10.439193725585938 ], [ -75.948928833007812, -10.437948226928597 ], [ -75.947418212890625, -10.437408447265568 ], [ -75.947059631347656, -10.436008453369141 ], [ -75.946228027343693, -10.434952735900822 ], [ -75.945655822753849, -10.43267631530756 ], [ -75.943412780761719, -10.43046760559082 ], [ -75.9432373046875, -10.429227828979492 ], [ -75.942848205566406, -10.428316116332894 ], [ -75.941581726074105, -10.427187919616642 ], [ -75.940399169921875, -10.426984786987305 ], [ -75.939964294433594, -10.426705360412598 ], [ -75.936035156249943, -10.422439575195256 ], [ -75.933525085449219, -10.420377731323185 ], [ -75.930892944335881, -10.417760848999023 ], [ -75.930038452148381, -10.416389465332031 ], [ -75.929275512695256, -10.414447784423828 ], [ -75.928634643554688, -10.41046142578125 ], [ -75.928001403808594, -10.408203124999943 ], [ -75.927238464355469, -10.407427787780705 ], [ -75.925804138183594, -10.407168388366586 ], [ -75.925064086914006, -10.406528472900391 ], [ -75.924842834472656, -10.405561447143555 ], [ -75.924194335937443, -10.404377937316895 ], [ -75.925498962402344, -10.401944160461369 ], [ -75.925132751464844, -10.400107383727914 ], [ -75.926803588867188, -10.396812438964844 ], [ -75.931404113769531, -10.389661788940373 ], [ -75.931358337402287, -10.388399124145508 ], [ -75.932525634765625, -10.384035110473576 ], [ -75.932487487792912, -10.382243156433049 ], [ -75.932868957519474, -10.381429672241211 ], [ -75.933059692382756, -10.379537582397461 ], [ -75.934143066406136, -10.377275466918888 ], [ -75.934509277343693, -10.374940872192383 ], [ -75.933448791503849, -10.373053550720215 ], [ -75.933052062988281, -10.370539665222111 ], [ -75.932632446289062, -10.369285583496094 ], [ -75.930580139160099, -10.366634368896428 ], [ -75.929771423339844, -10.365015029907227 ], [ -75.928520202636719, -10.36398983001709 ], [ -75.927810668945312, -10.363827705383301 ], [ -75.927200317382812, -10.363297462463379 ], [ -75.9261474609375, -10.363010406494084 ], [ -75.925819396972599, -10.362704277038517 ], [ -75.925384521484375, -10.361330032348576 ], [ -75.925041198730469, -10.357027053833008 ], [ -75.924476623535099, -10.35589694976801 ], [ -75.923721313476506, -10.35524940490717 ], [ -75.922477722167912, -10.355026245117074 ], [ -75.920806884765625, -10.354329109191895 ], [ -75.919075012206918, -10.351581573486271 ], [ -75.917907714843693, -10.350329399108773 ], [ -75.916854858398381, -10.349905014038029 ], [ -75.914863586425724, -10.349576950073242 ], [ -75.91387939453125, -10.34893608093256 ], [ -75.913444519042912, -10.348260879516602 ], [ -75.912513732910156, -10.34525108337391 ], [ -75.911544799804688, -10.344305038452148 ], [ -75.909141540527287, -10.343083381652832 ], [ -75.908454895019474, -10.341809272766113 ], [ -75.908348083496094, -10.340200424194336 ], [ -75.905426025390568, -10.336878776550179 ], [ -75.903633117675781, -10.334072113037109 ], [ -75.900199890136719, -10.331125259399357 ], [ -75.899635314941406, -10.330105781555176 ], [ -75.898368835449162, -10.328679084777832 ], [ -75.895927429199219, -10.327312469482422 ], [ -75.8951416015625, -10.325894355773926 ], [ -75.89459228515625, -10.325307846069279 ], [ -75.890647888183537, -10.322714805603027 ], [ -75.886016845703125, -10.320809364318734 ], [ -75.885078430175781, -10.31937313079834 ], [ -75.883529663085938, -10.317859649658203 ], [ -75.882942199707031, -10.31675910949707 ], [ -75.880935668945312, -10.315532684326115 ], [ -75.878578186035156, -10.313558578491154 ], [ -75.876022338867188, -10.313023567199707 ], [ -75.873519897460938, -10.311247825622559 ], [ -75.872436523437443, -10.311668395996094 ], [ -75.871421813964844, -10.311570167541504 ], [ -75.869461059570256, -10.309224128723145 ], [ -75.866943359375, -10.308246612548828 ], [ -75.863128662109375, -10.305506706237679 ], [ -75.860023498535099, -10.302738189697209 ], [ -75.859123229980469, -10.302289009094181 ], [ -75.857330322265625, -10.302013397216797 ], [ -75.856643676757812, -10.30156230926508 ], [ -75.855674743652344, -10.299348831176701 ], [ -75.853492736816406, -10.297320365905762 ], [ -75.852867126464787, -10.294817924499455 ], [ -75.850761413574162, -10.292940139770508 ], [ -75.849159240722599, -10.29044246673584 ], [ -75.848709106445312, -10.287504196166992 ], [ -75.849189758300781, -10.28575611114502 ], [ -75.848258972167969, -10.284439086914006 ], [ -75.848480224609318, -10.282584190368596 ], [ -75.847824096679631, -10.281609535217228 ], [ -75.84747314453125, -10.280406951904297 ], [ -75.846153259277344, -10.278248786926213 ], [ -75.845298767089844, -10.27634334564209 ], [ -75.843833923339844, -10.275254249572754 ], [ -75.843803405761662, -10.272024154663086 ], [ -75.844100952148381, -10.268749237060547 ], [ -75.844490051269474, -10.267284393310433 ], [ -75.843559265136719, -10.265341758727971 ], [ -75.841888427734318, -10.26445102691639 ], [ -75.841438293456974, -10.263892173767033 ], [ -75.841552734375, -10.26336765289301 ], [ -75.842742919921875, -10.262124061584416 ], [ -75.842727661132812, -10.261691093444824 ], [ -75.842124938964844, -10.261050224304142 ], [ -75.839607238769474, -10.261012077331543 ], [ -75.839027404785099, -10.260117530822754 ], [ -75.839538574218636, -10.258570671081486 ], [ -75.840194702148381, -10.257944107055664 ], [ -75.840072631835938, -10.257411003112736 ], [ -75.839004516601562, -10.25658130645752 ], [ -75.837928771972656, -10.256558418273926 ], [ -75.835685729980469, -10.254599571228027 ], [ -75.834030151367188, -10.253647804260197 ], [ -75.832168579101506, -10.253308296203613 ], [ -75.828704833984375, -10.25124454498291 ], [ -75.827690124511662, -10.250117301940918 ], [ -75.827308654785099, -10.24871826171875 ], [ -75.826934814453068, -10.248211860656681 ], [ -75.826210021972656, -10.247842788696232 ], [ -75.824844360351506, -10.247747421264592 ], [ -75.822761535644531, -10.248285293579102 ], [ -75.820777893066406, -10.248264312744141 ], [ -75.819648742675781, -10.24767875671381 ], [ -75.818092346191406, -10.246452331542969 ], [ -75.815109252929631, -10.245699882507267 ], [ -75.8118896484375, -10.244071006774846 ], [ -75.808418273925724, -10.24582576751709 ], [ -75.808044433593693, -10.246685028076058 ], [ -75.807357788085938, -10.247129440307617 ], [ -75.802848815917969, -10.24810886383051 ], [ -75.799041748046875, -10.249992370605412 ], [ -75.79400634765625, -10.250673294067383 ], [ -75.7911376953125, -10.250446319580078 ], [ -75.789031982421875, -10.250983238220215 ], [ -75.787277221679574, -10.25192928314209 ], [ -75.784835815429688, -10.252077102661019 ], [ -75.781707763671875, -10.25019454956049 ], [ -75.778709411621094, -10.249487876892033 ], [ -75.772590637206918, -10.24675273895258 ], [ -75.771011352539062, -10.245030403137207 ], [ -75.768692016601562, -10.243318557739258 ], [ -75.765220642089787, -10.241552352905217 ], [ -75.759902954101506, -10.237892150878849 ], [ -75.757575988769531, -10.237764358520451 ], [ -75.756828308105412, -10.238659858703613 ], [ -75.755271911621094, -10.239133834838867 ], [ -75.754463195800724, -10.239850044250488 ], [ -75.753028869628849, -10.239909172058105 ], [ -75.752540588378849, -10.240299224853402 ], [ -75.752174377441349, -10.240299224853402 ], [ -75.750785827636719, -10.239841461181641 ], [ -75.749298095703068, -10.238380432128849 ], [ -75.747413635253793, -10.237751007080078 ], [ -75.746147155761662, -10.236332893371582 ], [ -75.744026184082031, -10.235553741455078 ], [ -75.74249267578125, -10.233538627624512 ], [ -75.741241455078125, -10.232636451721191 ], [ -75.738540649414006, -10.232743263244629 ], [ -75.737510681152344, -10.232428550720158 ], [ -75.736343383789006, -10.232631683349553 ], [ -75.734878540039062, -10.233087539672795 ], [ -75.732772827148438, -10.234436988830566 ], [ -75.731887817382812, -10.234133720397892 ], [ -75.730720520019474, -10.233139991760197 ], [ -75.729461669921818, -10.232943534851074 ], [ -75.728569030761719, -10.23193359375 ], [ -75.726058959960938, -10.230148315429688 ], [ -75.721580505371094, -10.226349830627441 ], [ -75.720497131347599, -10.22408294677723 ], [ -75.718711853027344, -10.223507881164494 ], [ -75.717536926269474, -10.221088409423828 ], [ -75.716156005859375, -10.220703125 ], [ -75.715248107910099, -10.219816207885685 ], [ -75.714187622070312, -10.217423439025822 ], [ -75.711097717285156, -10.216154098510742 ], [ -75.709609985351562, -10.214945793151855 ], [ -75.707313537597656, -10.209760665893555 ], [ -75.70367431640625, -10.206294059753361 ], [ -75.703605651855412, -10.204295158386174 ], [ -75.702308654785156, -10.203068733215332 ], [ -75.702491760253849, -10.202352523803654 ], [ -75.702445983886719, -10.20029258728016 ], [ -75.70135498046875, -10.19813346862793 ], [ -75.700881958007812, -10.195648193359318 ], [ -75.701362609863281, -10.193863868713322 ], [ -75.701507568359318, -10.191179275512695 ], [ -75.701873779296875, -10.190256118774357 ], [ -75.701934814453125, -10.188988685607853 ], [ -75.701263427734375, -10.187334060668945 ], [ -75.700614929199219, -10.179912567138615 ], [ -75.699081420898438, -10.175494194030705 ], [ -75.699272155761719, -10.172904968261719 ], [ -75.698944091796818, -10.171398162841797 ], [ -75.699348449706918, -10.170228958129826 ], [ -75.700523376464844, -10.168191909790039 ], [ -75.700767517089787, -10.165958404541016 ], [ -75.703025817871094, -10.163908958435059 ], [ -75.704879760742074, -10.160314559936467 ], [ -75.705009460449219, -10.159138679504338 ], [ -75.704811096191406, -10.158280372619572 ], [ -75.703903198242131, -10.156815528869629 ], [ -75.702980041503906, -10.155957221984863 ], [ -75.702796936035156, -10.155352592468262 ], [ -75.703140258789006, -10.154350280761662 ], [ -75.704505920410156, -10.153479576110783 ], [ -75.704841613769531, -10.152844429016056 ], [ -75.705047607421818, -10.149965286254883 ], [ -75.704872131347599, -10.147517204284668 ], [ -75.704566955566349, -10.14659404754633 ], [ -75.704582214355412, -10.144442558288574 ], [ -75.703941345214844, -10.143050193786621 ], [ -75.703361511230469, -10.140972137451172 ], [ -75.702301025390568, -10.138686180114689 ], [ -75.700080871581974, -10.131274223327637 ], [ -75.698234558105469, -10.127471923828068 ], [ -75.69744873046875, -10.124506950378418 ], [ -75.697441101074105, -10.123343467712346 ], [ -75.696586608886719, -10.121061325073242 ], [ -75.694816589355469, -10.118860244750977 ], [ -75.693878173828068, -10.118318557739258 ], [ -75.692535400390625, -10.117101669311467 ], [ -75.690513610839844, -10.113606452941895 ], [ -75.690002441406136, -10.112070083618107 ], [ -75.690109252929688, -10.111095428466797 ], [ -75.691024780273381, -10.109880447387638 ], [ -75.695083618164062, -10.106786727905273 ], [ -75.696418762207031, -10.105120658874455 ], [ -75.695968627929688, -10.102434158325138 ], [ -75.694709777832031, -10.099979400634709 ], [ -75.694168090820256, -10.097158432006836 ], [ -75.693153381347656, -10.094942092895508 ], [ -75.69281005859375, -10.092972755432072 ], [ -75.691947937011719, -10.091390609741211 ], [ -75.691291809082031, -10.090653419494629 ], [ -75.690040588378906, -10.089605331420898 ], [ -75.688644409179631, -10.088973045349121 ], [ -75.687789916992131, -10.088298797607422 ], [ -75.686141967773438, -10.085932731628418 ], [ -75.684707641601562, -10.083125114440918 ], [ -75.683982849121037, -10.079425811767578 ], [ -75.683296203613224, -10.077472686767521 ], [ -75.683250427246094, -10.073794364929199 ], [ -75.682250976562443, -10.068668365478516 ], [ -75.681602478027287, -10.067087173461914 ], [ -75.67913818359375, -10.063420295715332 ], [ -75.678184509277344, -10.060798645019474 ], [ -75.677543640136719, -10.059613227844238 ], [ -75.677322387695312, -10.058476448059082 ], [ -75.677375793457031, -10.054262161254826 ], [ -75.676612854003906, -10.052534103393498 ], [ -75.674957275390625, -10.051000595092773 ], [ -75.668708801269474, -10.047187805175781 ], [ -75.666511535644474, -10.045166015624943 ], [ -75.661758422851506, -10.041712760925236 ], [ -75.658416748046818, -10.038806915283203 ], [ -75.656082153320312, -10.03641414642334 ], [ -75.651268005371037, -10.032455444335938 ], [ -75.648513793945256, -10.03089427947998 ], [ -75.644706726074219, -10.030159950256348 ], [ -75.643524169921818, -10.030625343322754 ], [ -75.641815185546818, -10.030763626098633 ], [ -75.639480590820312, -10.030026435851994 ], [ -75.636947631835881, -10.030094146728459 ], [ -75.627662658691406, -10.028403282165527 ], [ -75.622703552246094, -10.02795219421381 ], [ -75.61517333984375, -10.027804374694824 ], [ -75.610206604003906, -10.028282165527287 ], [ -75.607322692871094, -10.02733039855957 ], [ -75.605354309082031, -10.026048660278263 ], [ -75.599670410156193, -10.020515441894531 ], [ -75.597122192382812, -10.017019271850586 ], [ -75.595817565917969, -10.013781547546387 ], [ -75.595588684081918, -10.011739730834904 ], [ -75.595809936523438, -10.008872985839844 ], [ -75.596687316894531, -10.005957603454476 ], [ -75.596549987792969, -10.001691818237305 ], [ -75.597877502441293, -9.998279571533203 ], [ -75.598007202148438, -9.99653244018549 ], [ -75.597633361816406, -9.994453430175781 ], [ -75.596015930175781, -9.991054534912109 ], [ -75.595634460449219, -9.988696098327523 ], [ -75.596084594726562, -9.983666419982853 ], [ -75.59749603271473, -9.978507995605412 ], [ -75.597900390625, -9.97607421875 ], [ -75.597740173339844, -9.973127365112191 ], [ -75.596572875976562, -9.970444679260254 ], [ -75.596267700195312, -9.96889686584467 ], [ -75.596443176269474, -9.962737083435002 ], [ -75.597480773925724, -9.958839416503849 ], [ -75.596923828124886, -9.956043243408203 ], [ -75.594963073730469, -9.951370239257812 ], [ -75.594001770019531, -9.946805000305176 ], [ -75.593475341796818, -9.946969032287541 ], [ -75.592536926269418, -9.947857856750488 ], [ -75.588478088378906, -9.953454017639103 ], [ -75.585479736328011, -9.956833839416504 ], [ -75.580604553222599, -9.960623741149846 ], [ -75.579551696777287, -9.961302757263127 ], [ -75.576675415039006, -9.96257209777832 ], [ -75.569801330566406, -9.964756011962834 ], [ -75.563972473144531, -9.967552185058594 ], [ -75.563140869140568, -9.9681396484375 ], [ -75.561851501464844, -9.969462394714355 ], [ -75.558364868164006, -9.974549293518066 ], [ -75.557266235351562, -9.975541114807129 ], [ -75.554214477539062, -9.97762393951416 ], [ -75.552360534667912, -9.98056602478016 ], [ -75.551116943359318, -9.981807708740234 ], [ -75.550086975097599, -9.98243522644043 ], [ -75.546318054199219, -9.982747077941895 ], [ -75.540466308593636, -9.981762886047306 ], [ -75.539405822753849, -9.981421470642033 ], [ -75.536544799804631, -9.981254577636662 ], [ -75.530433654785099, -9.982275962829533 ], [ -75.529335021972656, -9.982150077819824 ], [ -75.52740478515625, -9.981493949890137 ], [ -75.525726318359375, -9.981280326843262 ], [ -75.524749755859375, -9.981461524963322 ], [ -75.522468566894531, -9.982499122619629 ], [ -75.520896911621037, -9.982669830322266 ], [ -75.517082214355412, -9.981936454772949 ], [ -75.50899505615223, -9.979558944702148 ], [ -75.505477905273438, -9.979392051696777 ], [ -75.503684997558594, -9.979857444763184 ], [ -75.499977111816406, -9.981346130371037 ], [ -75.49884033203125, -9.981492042541447 ], [ -75.496925354003906, -9.982427597045898 ], [ -75.491142272949162, -9.984606742858887 ], [ -75.481285095214844, -9.99202823638916 ], [ -75.47882080078125, -9.993442535400391 ], [ -75.476554870605412, -9.994404792785645 ], [ -75.472846984863224, -9.995567321777287 ], [ -75.468734741210881, -9.99614429473877 ], [ -75.466934204101506, -9.99577522277832 ], [ -75.464332580566349, -9.994186401367188 ], [ -75.466842651367074, -9.991615295410156 ], [ -75.470619201660156, -9.988525390624943 ], [ -75.472190856933594, -9.986721992492619 ], [ -75.473548889160156, -9.984750747680607 ], [ -75.474800109863281, -9.981908798217773 ], [ -75.476402282714844, -9.976369857787972 ], [ -75.476516723632812, -9.974734306335449 ], [ -75.476341247558594, -9.972155570983887 ], [ -75.472648620605412, -9.968172073364258 ], [ -75.471130371093693, -9.965541839599553 ], [ -75.470321655273438, -9.963383674621582 ], [ -75.470069885253849, -9.959710121154785 ], [ -75.469635009765625, -9.95812797546381 ], [ -75.469047546386719, -9.957414627075195 ], [ -75.467773437499943, -9.956640243530273 ], [ -75.464935302734261, -9.957040786743164 ], [ -75.462081909179688, -9.956899642944279 ], [ -75.458663940429688, -9.956100463867131 ], [ -75.457412719726562, -9.955304145812988 ], [ -75.455596923828125, -9.952872276306152 ], [ -75.454307556152344, -9.948760986328011 ], [ -75.45343017578125, -9.947252273559513 ], [ -75.451576232910099, -9.944948196411133 ], [ -75.449172973632756, -9.940187454223633 ], [ -75.448402404785099, -9.939156532287598 ], [ -75.446670532226562, -9.937782287597599 ], [ -75.442268371582031, -9.936721801757756 ], [ -75.438957214355469, -9.936944007873478 ], [ -75.434822082519531, -9.93826961517334 ], [ -75.432014465331974, -9.94002723693842 ], [ -75.430030822753793, -9.941006660461426 ], [ -75.427253723144474, -9.941660881042424 ], [ -75.423744201660156, -9.942906379699707 ], [ -75.421630859374943, -9.942972183227482 ], [ -75.421012878417969, -9.94277381896967 ], [ -75.419082641601562, -9.941191673278752 ], [ -75.415901184081974, -9.937859535217285 ], [ -75.415229797363224, -9.93686580657959 ], [ -75.414085388183537, -9.934263229370117 ], [ -75.411041259765568, -9.930908203124943 ], [ -75.409721374511719, -9.930268287658635 ], [ -75.406585693359375, -9.930335998535099 ], [ -75.405265808105469, -9.929486274719181 ], [ -75.404571533203125, -9.928403854370117 ], [ -75.404151916503849, -9.925963401794434 ], [ -75.402854919433594, -9.922815322875977 ], [ -75.401435852050781, -9.920775413513127 ], [ -75.398674011230469, -9.918055534362793 ], [ -75.396392822265625, -9.913436889648438 ], [ -75.396064758300724, -9.912479400634766 ], [ -75.39599609375, -9.911203384399357 ], [ -75.397491455078068, -9.90798282623291 ], [ -75.398551940917912, -9.906831741332951 ], [ -75.40020751953125, -9.90565299987793 ], [ -75.405128479003849, -9.903812408447209 ], [ -75.40869140625, -9.90330982208252 ], [ -75.410118103027344, -9.902458190917969 ], [ -75.410301208496094, -9.902132034301758 ], [ -75.410362243652287, -9.900751113891602 ], [ -75.410102844238281, -9.899700164794922 ], [ -75.409980773925724, -9.896940231323242 ], [ -75.410362243652287, -9.895169258117619 ], [ -75.410354614257756, -9.893692016601562 ], [ -75.406005859375, -9.88939380645752 ], [ -75.403160095214844, -9.887351989746094 ], [ -75.398391723632812, -9.883001327514592 ], [ -75.397171020507812, -9.881608009338379 ], [ -75.395736694335938, -9.879359245300293 ], [ -75.394309997558594, -9.87818527221674 ], [ -75.390846252441406, -9.876053810119629 ], [ -75.387405395507812, -9.874964714050293 ], [ -75.375183105468693, -9.873854637145939 ], [ -75.373580932617188, -9.873406410217285 ], [ -75.372108459472599, -9.873252868652344 ], [ -75.367347717285099, -9.871747016906738 ], [ -75.364761352539062, -9.871233940124512 ], [ -75.362358093261719, -9.871137619018555 ], [ -75.361366271972543, -9.871365547180176 ], [ -75.35748291015625, -9.871468544006348 ], [ -75.351051330566349, -9.87082576751709 ], [ -75.345848083496094, -9.869230270385742 ], [ -75.344024658203125, -9.869518280029297 ], [ -75.3424072265625, -9.870868682861328 ], [ -75.34033203125, -9.871642112731934 ], [ -75.337837219238281, -9.871760368347111 ], [ -75.336280822753849, -9.871527671813965 ], [ -75.335891723632756, -9.871291160583439 ], [ -75.334762573242188, -9.871383666992131 ], [ -75.331962585449162, -9.874018669128418 ], [ -75.329910278320312, -9.874851226806527 ], [ -75.326263427734318, -9.875136375427246 ], [ -75.323493957519474, -9.874851226806527 ], [ -75.319770812988224, -9.875883102416992 ], [ -75.314872741699219, -9.875717163085938 ], [ -75.308227539062443, -9.876129150390625 ], [ -75.305610656738281, -9.8766832351684 ], [ -75.301200866699219, -9.878054618835392 ], [ -75.298896789550724, -9.878009796142578 ], [ -75.297943115234318, -9.87835597991932 ], [ -75.296653747558594, -9.878446578979492 ], [ -75.295524597167969, -9.877777099609318 ], [ -75.294807434082031, -9.877063751220703 ], [ -75.293876647949219, -9.873519897460938 ], [ -75.292839050292969, -9.872239112854004 ], [ -75.291786193847656, -9.871332168579102 ], [ -75.290863037109318, -9.870889663696232 ], [ -75.288757324218693, -9.871047019958496 ], [ -75.28851318359375, -9.870747566223088 ], [ -75.288070678710938, -9.867926597595158 ], [ -75.2874755859375, -9.866786956787109 ], [ -75.286964416503849, -9.866399765014592 ], [ -75.284378051757756, -9.865496635437012 ], [ -75.282981872558594, -9.864774703979435 ], [ -75.281341552734318, -9.86315727233881 ], [ -75.279426574706974, -9.859584808349553 ], [ -75.278236389160156, -9.856590270996094 ], [ -75.276626586914062, -9.853792190551701 ], [ -75.276199340820256, -9.852497100830078 ], [ -75.276176452636662, -9.85164737701416 ], [ -75.277275085449219, -9.847767829894963 ], [ -75.281646728515625, -9.83927059173584 ], [ -75.283500671386719, -9.834286689758301 ], [ -75.284889221191406, -9.831561088562012 ], [ -75.286445617675781, -9.827084541320744 ], [ -75.288505554199105, -9.823609352111816 ], [ -75.292457580566406, -9.81807804107666 ], [ -75.295051574706974, -9.812414169311467 ], [ -75.296134948730355, -9.808806419372502 ], [ -75.297142028808594, -9.806750297546387 ], [ -75.297927856445256, -9.803728103637638 ], [ -75.297950744628906, -9.801161766052246 ], [ -75.297531127929631, -9.797878265380803 ], [ -75.29730224609375, -9.797490119934082 ], [ -75.297195434570312, -9.79499435424799 ], [ -75.297180175781193, -9.794340133666992 ], [ -75.298141479492188, -9.790814399719238 ], [ -75.298126220703068, -9.787956237792912 ], [ -75.297698974609375, -9.786093711853027 ], [ -75.296211242675724, -9.783001899719181 ], [ -75.294891357421818, -9.781021118164062 ], [ -75.293014526367188, -9.779502868652344 ], [ -75.291191101074219, -9.778600692749023 ], [ -75.287521362304631, -9.777354240417424 ], [ -75.284469604492131, -9.777141571044922 ], [ -75.283378601074219, -9.77733325958252 ], [ -75.276992797851562, -9.779997825622502 ], [ -75.270233154296875, -9.78219032287592 ], [ -75.26790618896473, -9.78320407867426 ], [ -75.263542175292969, -9.784384727477971 ], [ -75.260787963867188, -9.785453796386719 ], [ -75.259330749511719, -9.785670280456543 ], [ -75.254981994628906, -9.785558700561523 ], [ -75.251991271972656, -9.786140441894474 ], [ -75.244949340820312, -9.789364814758301 ], [ -75.243240356445312, -9.789754867553711 ], [ -75.241142272949219, -9.790704727172852 ], [ -75.235946655273381, -9.792327880859318 ], [ -75.2298583984375, -9.795407295226994 ], [ -75.226356506347656, -9.796657562255859 ], [ -75.220802307128906, -9.799365997314453 ], [ -75.216835021972656, -9.801719665527344 ], [ -75.213844299316406, -9.804019927978516 ], [ -75.205970764160156, -9.812262535095158 ], [ -75.201988220214787, -9.816081047057992 ], [ -75.198532104492188, -9.818691253662109 ], [ -75.191230773925668, -9.825015068054142 ], [ -75.189353942871094, -9.826346397399846 ], [ -75.183265686035156, -9.829985618591252 ], [ -75.180595397949219, -9.830990791320744 ], [ -75.176445007324162, -9.831932067871037 ], [ -75.173637390136719, -9.832839012145939 ], [ -75.161026000976562, -9.839150428771973 ], [ -75.156990051269474, -9.840162277221623 ], [ -75.150344848632812, -9.840495109557992 ], [ -75.142463684081974, -9.842803955078068 ], [ -75.139633178710881, -9.843889236450138 ], [ -75.137596130371094, -9.843737602233773 ], [ -75.135017395019531, -9.842717170715275 ], [ -75.132614135742188, -9.8426256179809 ], [ -75.131111145019531, -9.843070983886662 ], [ -75.128128051757812, -9.844527244567871 ], [ -75.126045227050781, -9.844855308532658 ], [ -75.124458312988224, -9.844375610351562 ], [ -75.12152099609375, -9.842459678649902 ], [ -75.119071960449219, -9.842007637023926 ], [ -75.116966247558594, -9.842325210571289 ], [ -75.112724304199162, -9.843835830688477 ], [ -75.110214233398438, -9.844478607177734 ], [ -75.104698181152287, -9.845032691955566 ], [ -75.101432800292969, -9.844490051269474 ], [ -75.097747802734318, -9.844266891479435 ], [ -75.095985412597656, -9.843688011169434 ], [ -75.090965270996037, -9.842892646789494 ], [ -75.087112426757812, -9.84178256988514 ], [ -75.081924438476506, -9.840091705322266 ], [ -75.080162048339844, -9.839071273803711 ], [ -75.077255249023381, -9.837887763977051 ], [ -75.074989318847656, -9.836467742919922 ], [ -75.072296142578068, -9.835490226745605 ], [ -75.070541381835938, -9.834288597106877 ], [ -75.069145202636662, -9.832823753356934 ], [ -75.067771911621094, -9.829014778137207 ], [ -75.066612243652344, -9.827025413513127 ], [ -75.065589904785156, -9.824664115905648 ], [ -75.062591552734375, -9.821943283080998 ], [ -75.060302734375, -9.819413185119629 ], [ -75.059051513671761, -9.819124221801758 ], [ -75.058174133300724, -9.819374084472656 ], [ -75.055770874023438, -9.820933341979924 ], [ -75.052772521972656, -9.82336521148676 ], [ -75.051254272460938, -9.824044227599984 ], [ -75.046989440917969, -9.825236320495492 ], [ -75.043708801269531, -9.827084541320744 ], [ -75.040939331054688, -9.827309608459473 ], [ -75.039566040039006, -9.827843666076603 ], [ -75.035949707031193, -9.828632354736328 ], [ -75.031867980956974, -9.830088615417424 ], [ -75.02834320068348, -9.830801963806152 ], [ -75.025382995605412, -9.830947875976506 ], [ -75.022506713867131, -9.830305099487305 ], [ -75.020126342773381, -9.830621719360295 ], [ -75.01519775390625, -9.832694053649902 ], [ -75.009712219238224, -9.835949897766056 ], [ -75.009246826171818, -9.835949897766056 ], [ -75.00750732421875, -9.835090637207031 ], [ -75.004806518554688, -9.832720756530762 ], [ -75.003105163574219, -9.830088615417424 ], [ -75.000411987304688, -9.82460975646967 ], [ -74.994895935058594, -9.820095062255803 ], [ -74.991790771484318, -9.817191123962346 ], [ -74.988685607910156, -9.813421249389648 ], [ -74.985794067382756, -9.809249877929688 ], [ -74.9815673828125, -9.80499076843256 ], [ -74.976547241210881, -9.800783157348576 ], [ -74.972152709960881, -9.797880172729492 ], [ -74.969924926757812, -9.795663833618164 ], [ -74.965858459472599, -9.792888641357422 ], [ -74.960784912109375, -9.788318634033146 ], [ -74.955291748046761, -9.784095764160156 ], [ -74.952911376953125, -9.781300544738713 ], [ -74.951408386230469, -9.779933929443303 ], [ -74.950431823730469, -9.778505325317383 ], [ -74.946731567382812, -9.775312423705998 ], [ -74.944091796875, -9.772497177124023 ], [ -74.9417724609375, -9.770662307739144 ], [ -74.939651489257699, -9.768484115600586 ], [ -74.935600280761719, -9.76527023315424 ], [ -74.927589416503906, -9.758294105529785 ], [ -74.92535400390625, -9.755536079406681 ], [ -74.923233032226506, -9.753491401672363 ], [ -74.917610168456974, -9.749311447143555 ], [ -74.912132263183594, -9.746271133422852 ], [ -74.909347534179688, -9.745259284973088 ], [ -74.907455444335938, -9.744824409484863 ], [ -74.905494689941349, -9.74380970001215 ], [ -74.902801513671875, -9.74310302734375 ], [ -74.897911071777344, -9.742304801940918 ], [ -74.893302917480355, -9.741888046264648 ], [ -74.884689331054631, -9.742165565490723 ], [ -74.883087158203068, -9.74251747131342 ], [ -74.880310058593693, -9.742617607116642 ], [ -74.875518798828125, -9.743483543395939 ], [ -74.870269775390625, -9.744855880737305 ], [ -74.865959167480469, -9.745343208312931 ], [ -74.863250732421818, -9.745941162109375 ], [ -74.861320495605412, -9.746064186096191 ], [ -74.855857849121094, -9.746974945068359 ], [ -74.829574584960881, -9.748066902160645 ], [ -74.823501586914062, -9.747502326965332 ], [ -74.821426391601562, -9.747032165527287 ], [ -74.8184814453125, -9.745944976806641 ], [ -74.815444946289062, -9.743111610412598 ], [ -74.814735412597656, -9.741738319396916 ], [ -74.814186096191406, -9.741230010986271 ], [ -74.813125610351562, -9.736753463745117 ], [ -74.812622070312386, -9.731433868408203 ], [ -74.812843322753906, -9.729743003845158 ], [ -74.812950134277344, -9.724407196044922 ], [ -74.814231872558537, -9.713454246520939 ], [ -74.81427001953125, -9.709773063659668 ], [ -74.813919067382812, -9.702601432800293 ], [ -74.812217712402287, -9.69311332702631 ], [ -74.810050964355469, -9.686454772949219 ], [ -74.808906555175781, -9.683793067932129 ], [ -74.805526733398438, -9.67755126953125 ], [ -74.802886962890568, -9.673890113830566 ], [ -74.801254272460881, -9.672267913818303 ], [ -74.797073364257756, -9.665635108947697 ], [ -74.790779113769474, -9.656785011291504 ], [ -74.789535522460881, -9.653411865234375 ], [ -74.787651062011719, -9.649927139282113 ], [ -74.784355163574219, -9.642762184143066 ], [ -74.782920837402344, -9.640291213989201 ], [ -74.781936645507812, -9.637226104736328 ], [ -74.778488159179688, -9.629779815673828 ], [ -74.777000427246094, -9.624551773071232 ], [ -74.775093078613281, -9.619999885559082 ], [ -74.774513244628906, -9.617016792297363 ], [ -74.77386474609375, -9.61568641662592 ], [ -74.773719787597656, -9.614689826965275 ], [ -74.771392822265568, -9.609489440917969 ], [ -74.770553588867131, -9.608404159545898 ], [ -74.768478393554688, -9.606500625610295 ], [ -74.7664794921875, -9.605549812316838 ], [ -74.761596679687443, -9.604127883911076 ], [ -74.760467529296875, -9.603348731994572 ], [ -74.759132385253906, -9.601819038391056 ], [ -74.758583068847656, -9.600444793701115 ], [ -74.758087158203125, -9.597640037536621 ], [ -74.757743835449219, -9.58662223815918 ], [ -74.757385253906193, -9.584751129150391 ], [ -74.756690979003906, -9.583357810974064 ], [ -74.754516601562443, -9.580489158630314 ], [ -74.753166198730469, -9.579900741577092 ], [ -74.752067565917969, -9.579067230224609 ], [ -74.750076293945312, -9.578314781188908 ], [ -74.748291015625, -9.577998161315918 ], [ -74.745986938476562, -9.577054023742676 ], [ -74.743965148925781, -9.576781272888127 ], [ -74.741767883300781, -9.575433731079045 ], [ -74.739494323730469, -9.573268890380803 ], [ -74.737869262695312, -9.569162368774414 ], [ -74.737411499023438, -9.565797805786076 ], [ -74.737068176269474, -9.564945220947266 ], [ -74.737594604492188, -9.558424949645996 ], [ -74.738029479980412, -9.557413101196232 ], [ -74.739379882812386, -9.555550575256291 ], [ -74.740814208984375, -9.551191329955998 ], [ -74.744499206542912, -9.545452117919808 ], [ -74.745384216308537, -9.543334960937443 ], [ -74.746177673339844, -9.542087554931584 ], [ -74.748397827148438, -9.535054206848088 ], [ -74.748191833496094, -9.531661033630314 ], [ -74.748535156249886, -9.530049324035645 ], [ -74.748367309570312, -9.526469230651855 ], [ -74.747573852539006, -9.52288627624506 ], [ -74.746742248535156, -9.520543098449707 ], [ -74.746620178222599, -9.519359588623047 ], [ -74.746040344238224, -9.517910957336369 ], [ -74.745681762695312, -9.515171051025391 ], [ -74.745086669921818, -9.513435363769531 ], [ -74.744491577148438, -9.508213043212891 ], [ -74.744010925292969, -9.506442070007324 ], [ -74.744216918945256, -9.503413200378418 ], [ -74.744064331054688, -9.502878189086914 ], [ -74.743446350097599, -9.50207328796381 ], [ -74.741363525390568, -9.500705718994084 ], [ -74.74072265625, -9.500028610229492 ], [ -74.739151000976562, -9.495673179626465 ], [ -74.736274719238281, -9.492831230163574 ], [ -74.733634948730412, -9.488715171813965 ], [ -74.731781005859375, -9.482782363891602 ], [ -74.731132507324219, -9.475806236267033 ], [ -74.729530334472599, -9.471879005432129 ], [ -74.725990295410156, -9.467510223388615 ], [ -74.724296569824162, -9.464912414550781 ], [ -74.716728210449219, -9.456214904785156 ], [ -74.714096069335881, -9.453760147094727 ], [ -74.704864501953125, -9.446986198425236 ], [ -74.693733215332031, -9.439887046813965 ], [ -74.690429687499943, -9.438257217407227 ], [ -74.686744689941406, -9.436759948730469 ], [ -74.685493469238224, -9.436543464660588 ], [ -74.678802490234318, -9.433650970458928 ], [ -74.675613403320312, -9.432701110839787 ], [ -74.672676086425781, -9.432342529296818 ], [ -74.672294616699219, -9.432106018066406 ], [ -74.671058654785156, -9.433211326599121 ], [ -74.667388916015625, -9.437358856201172 ], [ -74.665756225585824, -9.438686370849609 ], [ -74.656295776367131, -9.447979927062931 ], [ -74.654747009277344, -9.449110984802246 ], [ -74.652870178222599, -9.450480461120605 ], [ -74.651573181152344, -9.451158523559513 ], [ -74.645767211914062, -9.45420932769764 ], [ -74.639106750488281, -9.456359863281193 ], [ -74.634742736816349, -9.45805835723877 ], [ -74.633796691894474, -9.458237648010254 ], [ -74.632827758789006, -9.458420753479004 ], [ -74.627189636230469, -9.460127830505371 ], [ -74.624420166015625, -9.460777282714844 ], [ -74.6236572265625, -9.460841178894043 ], [ -74.622962951660156, -9.460898399352971 ], [ -74.620643615722599, -9.461516380310059 ], [ -74.620101928710938, -9.46165943145752 ], [ -74.618873596191406, -9.46185111999506 ], [ -74.609809875488281, -9.4632692337035 ], [ -74.607772827148324, -9.464110374450684 ], [ -74.604217529296818, -9.465099334716797 ], [ -74.601966857910156, -9.466160774230957 ], [ -74.600593566894474, -9.466541290283203 ], [ -74.598869323730412, -9.467020034790039 ], [ -74.594039916992074, -9.468936920165959 ], [ -74.592079162597656, -9.469964981079045 ], [ -74.590164184570312, -9.471236228942871 ], [ -74.590011596679631, -9.471339225769043 ], [ -74.583259582519474, -9.477718353271428 ], [ -74.582649230957031, -9.47856426239008 ], [ -74.581855773925781, -9.479660034179688 ], [ -74.580528259277344, -9.481059074401855 ], [ -74.579231262206974, -9.482428550720215 ], [ -74.576927185058594, -9.485239028930664 ], [ -74.571952819824219, -9.49248027801508 ], [ -74.571258544921875, -9.493839263915959 ], [ -74.570396423339844, -9.495538711547852 ], [ -74.569999694824162, -9.497167587280273 ], [ -74.569770812988281, -9.498088836669922 ], [ -74.569732666015625, -9.498667716979924 ], [ -74.569625854492074, -9.500420570373535 ], [ -74.570449829101506, -9.502763748168888 ], [ -74.570724487304688, -9.503206253051758 ], [ -74.571456909179688, -9.504408836364689 ], [ -74.572067260742188, -9.505949974060059 ], [ -74.572700500488281, -9.511428833007812 ], [ -74.573242187499943, -9.513759613037053 ], [ -74.573753356933594, -9.514949798583984 ], [ -74.574096679687443, -9.517219543456974 ], [ -74.574546813964844, -9.518230438232422 ], [ -74.57550048828125, -9.521679878234863 ], [ -74.575759887695312, -9.522277832031136 ], [ -74.577217102050781, -9.52565956115717 ], [ -74.578048706054688, -9.527216911315918 ], [ -74.578872680664006, -9.528750419616699 ], [ -74.581489562988281, -9.531597137451115 ], [ -74.582611083984375, -9.532818794250488 ], [ -74.583106994628906, -9.53437328338623 ], [ -74.583808898925724, -9.53655910491932 ], [ -74.58416748046875, -9.541128158569336 ], [ -74.584075927734375, -9.542551040649414 ], [ -74.583847045898438, -9.546078681945801 ], [ -74.584701538085938, -9.551628112792912 ], [ -74.583801269531193, -9.558180809020939 ], [ -74.581855773925781, -9.564120292663461 ], [ -74.580177307128849, -9.567060470581055 ], [ -74.578880310058594, -9.570366859435921 ], [ -74.578666687011662, -9.570910453796387 ], [ -74.577445983886605, -9.572640419006291 ], [ -74.576980590820312, -9.573929786682129 ], [ -74.576316833496094, -9.574746131896916 ], [ -74.574913024902344, -9.576028823852539 ], [ -74.572547912597599, -9.577298164367619 ], [ -74.566841125488224, -9.579389572143555 ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-PIU", "NAME_0": "Peru", "ID_1": 21, "NAME_1": "Piura", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.864585876464844, -6.381249904632568 ], [ -80.864585876464844, -6.381527900695801 ], [ -80.864028930664006, -6.381527900695801 ], [ -80.864028930664006, -6.381805896758976 ], [ -80.863746643066349, -6.381805896758976 ], [ -80.863746643066349, -6.382084846496582 ], [ -80.863471984863224, -6.382084846496582 ], [ -80.863471984863224, -6.382637977600098 ], [ -80.863197326660099, -6.382637977600098 ], [ -80.863197326660099, -6.38291597366333 ], [ -80.862915039062443, -6.38291597366333 ], [ -80.862915039062443, -6.383471965789795 ], [ -80.862640380859375, -6.383471965789795 ], [ -80.862640380859375, -6.384028911590576 ], [ -80.862358093261719, -6.384028911590576 ], [ -80.862358093261719, -6.384860038757324 ], [ -80.862640380859375, -6.384860038757324 ], [ -80.862640380859375, -6.385138988494816 ], [ -80.862915039062443, -6.385138988494816 ], [ -80.862915039062443, -6.385416984558049 ], [ -80.863197326660099, -6.385416984558049 ], [ -80.863197326660099, -6.385138988494816 ], [ -80.863746643066349, -6.385138988494816 ], [ -80.863746643066349, -6.384860038757324 ], [ -80.864028930664006, -6.384860038757324 ], [ -80.864028930664006, -6.384582042693978 ], [ -80.864303588867188, -6.384582042693978 ], [ -80.864303588867188, -6.384304046630803 ], [ -80.864585876464844, -6.384304046630803 ], [ -80.864585876464844, -6.384028911590576 ], [ -80.864860534667969, -6.384028911590576 ], [ -80.864860534667969, -6.383750915527344 ], [ -80.86541748046875, -6.383750915527344 ], [ -80.86541748046875, -6.382084846496582 ], [ -80.865135192871094, -6.382084846496582 ], [ -80.865135192871094, -6.381527900695801 ], [ -80.864860534667969, -6.381527900695801 ], [ -80.864860534667969, -6.381249904632568 ], [ -80.864585876464844, -6.381249904632568 ] ] ], [ [ [ -80.848197937011662, -6.379305839538517 ], [ -80.848197937011662, -6.37958383560175 ], [ -80.847640991210881, -6.37958383560175 ], [ -80.847640991210881, -6.379859924316406 ], [ -80.847358703613224, -6.379859924316406 ], [ -80.847358703613224, -6.380137920379639 ], [ -80.847084045410099, -6.380137920379639 ], [ -80.847084045410099, -6.380415916442871 ], [ -80.846801757812386, -6.380415916442871 ], [ -80.846801757812386, -6.380693912506104 ], [ -80.846527099609375, -6.380693912506104 ], [ -80.846527099609375, -6.381805896758976 ], [ -80.84625244140625, -6.381805896758976 ], [ -80.84625244140625, -6.382084846496582 ], [ -80.845695495605469, -6.382084846496582 ], [ -80.845695495605469, -6.382359981536865 ], [ -80.845138549804688, -6.382359981536865 ], [ -80.845138549804688, -6.382637977600098 ], [ -80.844581604003849, -6.382637977600098 ], [ -80.844581604003849, -6.383471965789795 ], [ -80.844863891601506, -6.383471965789795 ], [ -80.844863891601506, -6.384028911590576 ], [ -80.845138549804688, -6.384028911590576 ], [ -80.845138549804688, -6.384860038757324 ], [ -80.845413208007812, -6.384860038757324 ], [ -80.845413208007812, -6.385416984558049 ], [ -80.845695495605469, -6.385416984558049 ], [ -80.845695495605469, -6.385694980621281 ], [ -80.845970153808594, -6.385694980621281 ], [ -80.845970153808594, -6.386250972747689 ], [ -80.84625244140625, -6.386248111724797 ], [ -80.84625244140625, -6.386805057525635 ], [ -80.846527099609375, -6.386805057525635 ], [ -80.846527099609375, -6.387083053588867 ], [ -80.846801757812386, -6.387083053588867 ], [ -80.846801757812386, -6.387361049652043 ], [ -80.847084045410099, -6.387361049652043 ], [ -80.847084045410099, -6.387639045715275 ], [ -80.847358703613224, -6.387639045715275 ], [ -80.847358703613224, -6.387917041778508 ], [ -80.847640991210881, -6.387917041778508 ], [ -80.847640991210881, -6.38819503784174 ], [ -80.847915649414006, -6.38819503784174 ], [ -80.847915649414006, -6.388473033904972 ], [ -80.848197937011662, -6.388471126556396 ], [ -80.848197937011662, -6.389027118682861 ], [ -80.848472595214844, -6.389027118682861 ], [ -80.848472595214844, -6.389861106872559 ], [ -80.848197937011662, -6.389861106872559 ], [ -80.848197937011662, -6.390139102935791 ], [ -80.848472595214844, -6.390139102935791 ], [ -80.848472595214844, -6.390695095062256 ], [ -80.848747253417969, -6.390695095062256 ], [ -80.848747253417969, -6.390973091125431 ], [ -80.849029541015625, -6.390971183776855 ], [ -80.849029541015625, -6.391249179840088 ], [ -80.84930419921875, -6.391249179840088 ], [ -80.84930419921875, -6.39152717590332 ], [ -80.849586486816406, -6.39152717590332 ], [ -80.849586486816406, -6.391805171966553 ], [ -80.849861145019531, -6.391805171966553 ], [ -80.849861145019531, -6.392083168029785 ], [ -80.850135803222599, -6.392083168029785 ], [ -80.850135803222599, -6.39263916015625 ], [ -80.850418090820256, -6.39263916015625 ], [ -80.850418090820256, -6.393195152282715 ], [ -80.850692749023381, -6.393195152282715 ], [ -80.850692749023381, -6.393749237060433 ], [ -80.851249694824162, -6.393749237060433 ], [ -80.851249694824162, -6.394027233123779 ], [ -80.851524353027344, -6.394027233123779 ], [ -80.851524353027344, -6.394305229187012 ], [ -80.851806640625, -6.394305229187012 ], [ -80.851806640625, -6.395417213439941 ], [ -80.852081298828125, -6.395417213439941 ], [ -80.852081298828125, -6.397362232208195 ], [ -80.852363586425781, -6.397362232208195 ], [ -80.852363586425781, -6.398192882537785 ], [ -80.852638244628906, -6.398192882537785 ], [ -80.852638244628906, -6.398749828338623 ], [ -80.852912902832031, -6.398749828338623 ], [ -80.852912902832031, -6.399305820465031 ], [ -80.853469848632756, -6.399305820465031 ], [ -80.853469848632756, -6.399583816528263 ], [ -80.853752136230412, -6.399583816528263 ], [ -80.853752136230412, -6.399861812591496 ], [ -80.854309082031193, -6.399861812591496 ], [ -80.854309082031193, -6.400139808654728 ], [ -80.854583740234375, -6.400139808654728 ], [ -80.854583740234375, -6.400417804717961 ], [ -80.855140686035156, -6.400417804717961 ], [ -80.855140686035156, -6.400693893432617 ], [ -80.855697631835938, -6.400693893432617 ], [ -80.855697631835938, -6.40097188949585 ], [ -80.855140686035156, -6.40097188949585 ], [ -80.855140686035156, -6.402083873748779 ], [ -80.855415344238281, -6.402083873748779 ], [ -80.855415344238281, -6.403193950653076 ], [ -80.855140686035156, -6.403193950653076 ], [ -80.855140686035156, -6.403749942779541 ], [ -80.8548583984375, -6.403749942779541 ], [ -80.8548583984375, -6.404027938842773 ], [ -80.854583740234375, -6.404027938842773 ], [ -80.854583740234375, -6.404305934906006 ], [ -80.854309082031193, -6.404305934906006 ], [ -80.854309082031193, -6.404583930969238 ], [ -80.853752136230412, -6.404583930969238 ], [ -80.853752136230412, -6.405138015747013 ], [ -80.853469848632756, -6.405138015747013 ], [ -80.853469848632756, -6.40625 ], [ -80.853195190429574, -6.40625 ], [ -80.853195190429574, -6.406527996063232 ], [ -80.853469848632756, -6.406527996063232 ], [ -80.853469848632756, -6.407083988189697 ], [ -80.853752136230412, -6.407083988189697 ], [ -80.853752136230412, -6.40736007690424 ], [ -80.854309082031193, -6.40736007690424 ], [ -80.854309082031193, -6.407638072967472 ], [ -80.855697631835938, -6.407638072967472 ], [ -80.855697631835938, -6.40736007690424 ], [ -80.85652923583973, -6.40736007690424 ], [ -80.85652923583973, -6.407638072967472 ], [ -80.857635498046875, -6.407638072967472 ], [ -80.857635498046875, -6.40736007690424 ], [ -80.857917785644531, -6.40736007690424 ], [ -80.857917785644531, -6.407638072967472 ], [ -80.858192443847656, -6.407638072967472 ], [ -80.858192443847656, -6.409028053283635 ], [ -80.857086181640568, -6.409028053283635 ], [ -80.857086181640568, -6.409307003021183 ], [ -80.856803894042912, -6.409307003021183 ], [ -80.856803894042912, -6.409582138061523 ], [ -80.85652923583973, -6.409584999084416 ], [ -80.85652923583973, -6.409860134124756 ], [ -80.856246948242074, -6.409860134124756 ], [ -80.856246948242074, -6.410973072052002 ], [ -80.855972290039062, -6.410973072052002 ], [ -80.855972290039062, -6.411251068115234 ], [ -80.856246948242074, -6.411251068115234 ], [ -80.856246948242074, -6.411529064178467 ], [ -80.85652923583973, -6.411529064178467 ], [ -80.85652923583973, -6.411251068115234 ], [ -80.857086181640568, -6.411251068115234 ], [ -80.857086181640568, -6.412082195281982 ], [ -80.856803894042912, -6.412082195281982 ], [ -80.856803894042912, -6.412361145019531 ], [ -80.85652923583973, -6.412361145019531 ], [ -80.85652923583973, -6.412917137145996 ], [ -80.856246948242074, -6.412917137145996 ], [ -80.856246948242074, -6.413751125335693 ], [ -80.85652923583973, -6.413751125335693 ], [ -80.85652923583973, -6.414583206176701 ], [ -80.856246948242074, -6.414583206176701 ], [ -80.856246948242074, -6.414861202239877 ], [ -80.855972290039062, -6.414861202239877 ], [ -80.855972290039062, -6.415139198303223 ], [ -80.855140686035156, -6.415139198303223 ], [ -80.855140686035156, -6.415417194366455 ], [ -80.8548583984375, -6.415417194366455 ], [ -80.8548583984375, -6.415695190429688 ], [ -80.854583740234375, -6.41569280624384 ], [ -80.854583740234375, -6.415970802307072 ], [ -80.854309082031193, -6.415970802307072 ], [ -80.854309082031193, -6.416248798370304 ], [ -80.853752136230412, -6.416251182556152 ], [ -80.853752136230412, -6.416526794433537 ], [ -80.853469848632756, -6.416526794433537 ], [ -80.853469848632756, -6.417916774749756 ], [ -80.853195190429574, -6.417916774749756 ], [ -80.853195190429574, -6.418194770812988 ], [ -80.852638244628906, -6.418194770812988 ], [ -80.852638244628906, -6.417916774749756 ], [ -80.852363586425781, -6.417916774749756 ], [ -80.852363586425781, -6.41763877868641 ], [ -80.852081298828125, -6.41763877868641 ], [ -80.852081298828125, -6.417360782623234 ], [ -80.850975036621037, -6.417360782623234 ], [ -80.850975036621037, -6.41763877868641 ], [ -80.850692749023381, -6.41763877868641 ], [ -80.850692749023381, -6.418194770812988 ], [ -80.850418090820256, -6.418194770812988 ], [ -80.850418090820256, -6.418472766876221 ], [ -80.850692749023381, -6.418472766876221 ], [ -80.850692749023381, -6.419026851653996 ], [ -80.850975036621037, -6.419026851653996 ], [ -80.850975036621037, -6.419582843780461 ], [ -80.850692749023381, -6.419582843780461 ], [ -80.850692749023381, -6.419860839843693 ], [ -80.850418090820256, -6.419860839843693 ], [ -80.850418090820256, -6.420138835906926 ], [ -80.850135803222599, -6.420138835906926 ], [ -80.850135803222599, -6.421804904937744 ], [ -80.84930419921875, -6.421804904937744 ], [ -80.84930419921875, -6.422082901000977 ], [ -80.848747253417969, -6.422082901000977 ], [ -80.848747253417969, -6.422638893127385 ], [ -80.848472595214844, -6.422638893127385 ], [ -80.848472595214844, -6.42291784286499 ], [ -80.848197937011662, -6.42291784286499 ], [ -80.848197937011662, -6.424026966094971 ], [ -80.847915649414006, -6.424026966094971 ], [ -80.847915649414006, -6.424861907958984 ], [ -80.847640991210881, -6.424861907958984 ], [ -80.847640991210881, -6.425137042999154 ], [ -80.847358703613224, -6.425137042999154 ], [ -80.847358703613224, -6.425971984863224 ], [ -80.847084045410099, -6.425971984863224 ], [ -80.847084045410099, -6.426805973052865 ], [ -80.846527099609375, -6.426805973052865 ], [ -80.846527099609375, -6.427083969116211 ], [ -80.845970153808594, -6.427083969116211 ], [ -80.845970153808594, -6.427361965179443 ], [ -80.845695495605469, -6.427360057830811 ], [ -80.845695495605469, -6.427638053894043 ], [ -80.845138549804688, -6.427638053894043 ], [ -80.845138549804688, -6.427916049957219 ], [ -80.844306945800724, -6.427916049957219 ], [ -80.844306945800724, -6.428194046020451 ], [ -80.843749999999886, -6.428194046020451 ], [ -80.843749999999886, -6.428472042083683 ], [ -80.843475341796875, -6.428472042083683 ], [ -80.843475341796875, -6.428750038146916 ], [ -80.843193054199219, -6.428750038146916 ], [ -80.843193054199219, -6.429028034210148 ], [ -80.841804504394531, -6.429028034210148 ], [ -80.841804504394531, -6.429306030273381 ], [ -80.841529846191349, -6.429306030273381 ], [ -80.841529846191349, -6.429584026336613 ], [ -80.841247558593693, -6.429584026336613 ], [ -80.841247558593693, -6.430140018463078 ], [ -80.841529846191349, -6.430138111114502 ], [ -80.841529846191349, -6.430416107177734 ], [ -80.841804504394531, -6.430416107177734 ], [ -80.841804504394531, -6.430694103240967 ], [ -80.842086791992188, -6.430694103240967 ], [ -80.842086791992188, -6.431250095367432 ], [ -80.842361450195312, -6.431250095367432 ], [ -80.842361450195312, -6.432916164398193 ], [ -80.842636108398438, -6.432916164398193 ], [ -80.842636108398438, -6.433194160461426 ], [ -80.844024658203068, -6.433194160461426 ], [ -80.844024658203068, -6.433472156524658 ], [ -80.843475341796875, -6.433472156524658 ], [ -80.843475341796875, -6.433750152587891 ], [ -80.843193054199219, -6.433750152587891 ], [ -80.843193054199219, -6.434025764465332 ], [ -80.842636108398438, -6.434025764465332 ], [ -80.842636108398438, -6.434582233428955 ], [ -80.842361450195312, -6.434582233428955 ], [ -80.842361450195312, -6.434860229492188 ], [ -80.841804504394531, -6.434860229492188 ], [ -80.841804504394531, -6.43513822555542 ], [ -80.841529846191349, -6.43513822555542 ], [ -80.841529846191349, -6.435416221618652 ], [ -80.841247558593693, -6.435416221618652 ], [ -80.841247558593693, -6.435694217681885 ], [ -80.841529846191349, -6.435694217681885 ], [ -80.841529846191349, -6.43625020980835 ], [ -80.841247558593693, -6.43625020980835 ], [ -80.841247558593693, -6.436807155609131 ], [ -80.840698242187386, -6.436807155609131 ], [ -80.840690612792912, -6.437359809875488 ], [ -80.84041595458973, -6.437359809875488 ], [ -80.84041595458973, -6.438195228576603 ], [ -80.840972900390568, -6.438195228576603 ], [ -80.840972900390568, -6.438473224639836 ], [ -80.841529846191349, -6.438473224639836 ], [ -80.841529846191349, -6.438751220703068 ], [ -80.841804504394531, -6.438751220703068 ], [ -80.841804504394531, -6.439029216766301 ], [ -80.841529846191349, -6.439029216766301 ], [ -80.841529846191349, -6.439860820770207 ], [ -80.841804504394531, -6.439860820770207 ], [ -80.841804504394531, -6.440138816833439 ], [ -80.842086791992188, -6.440138816833439 ], [ -80.842086791992188, -6.440416812896672 ], [ -80.843749999999886, -6.440416812896672 ], [ -80.843749999999886, -6.440138816833439 ], [ -80.844024658203068, -6.440138816833439 ], [ -80.844024658203068, -6.439860820770207 ], [ -80.844306945800724, -6.439860820770207 ], [ -80.844306945800724, -6.439582824707031 ], [ -80.845138549804688, -6.439582824707031 ], [ -80.845138549804688, -6.440416812896672 ], [ -80.844863891601506, -6.440416812896672 ], [ -80.844863891601506, -6.440694808959904 ], [ -80.844581604003849, -6.440694808959904 ], [ -80.844581604003849, -6.440972805023137 ], [ -80.844306945800724, -6.440972805023137 ], [ -80.844306945800724, -6.441250801086369 ], [ -80.844024658203068, -6.441250801086369 ], [ -80.844024658203068, -6.441804885864258 ], [ -80.844306945800724, -6.441804885864258 ], [ -80.844306945800724, -6.44208288192749 ], [ -80.844581604003849, -6.44208288192749 ], [ -80.844581604003849, -6.442360877990723 ], [ -80.844863891601506, -6.442360877990723 ], [ -80.844863891601506, -6.442638874053955 ], [ -80.845138549804688, -6.442638874053955 ], [ -80.845138549804688, -6.442360877990723 ], [ -80.845413208007812, -6.442360877990723 ], [ -80.845413208007812, -6.442638874053955 ], [ -80.846527099609375, -6.442638874053955 ], [ -80.846527099609375, -6.442916870117188 ], [ -80.846801757812386, -6.442916870117188 ], [ -80.846801757812386, -6.443472862243596 ], [ -80.845970153808594, -6.443472862243596 ], [ -80.845970153808594, -6.443748950958252 ], [ -80.845413208007812, -6.443748950958252 ], [ -80.845413208007812, -6.444026947021484 ], [ -80.845138549804688, -6.444026947021484 ], [ -80.845138549804688, -6.444582939147949 ], [ -80.844863891601506, -6.444582939147949 ], [ -80.844863891601506, -6.445138931274414 ], [ -80.844581604003849, -6.445138931274414 ], [ -80.844581604003849, -6.446249008178597 ], [ -80.844306945800724, -6.446249008178597 ], [ -80.844306945800724, -6.446527004241943 ], [ -80.844024658203068, -6.446527004241943 ], [ -80.844024658203068, -6.446805000305176 ], [ -80.843193054199219, -6.446805000305176 ], [ -80.843193054199219, -6.446527004241943 ], [ -80.842636108398438, -6.446527004241943 ], [ -80.842636108398438, -6.446805000305176 ], [ -80.842086791992188, -6.446805000305176 ], [ -80.842086791992188, -6.447082996368408 ], [ -80.841804504394531, -6.447082996368408 ], [ -80.841804504394531, -6.447638988494873 ], [ -80.841529846191349, -6.447638988494873 ], [ -80.841529846191349, -6.447916984558105 ], [ -80.841247558593693, -6.447916984558105 ], [ -80.841247558593693, -6.448749065399113 ], [ -80.840972900390568, -6.448749065399113 ], [ -80.840972900390568, -6.449027061462346 ], [ -80.840698242187386, -6.449027061462346 ], [ -80.840690612792912, -6.449305057525578 ], [ -80.84041595458973, -6.449305057525578 ], [ -80.84041595458973, -6.44958305358881 ], [ -80.840141296386719, -6.44958305358881 ], [ -80.840141296386719, -6.449861049651986 ], [ -80.84041595458973, -6.449861049651986 ], [ -80.84041595458973, -6.450417995452824 ], [ -80.840972900390568, -6.450417995452824 ], [ -80.840972900390568, -6.450695991516056 ], [ -80.841804504394531, -6.450695991516056 ], [ -80.841804504394531, -6.45097112655634 ], [ -80.842636108398438, -6.45097112655634 ], [ -80.842636108398438, -6.451249122619572 ], [ -80.842918395996094, -6.451249122619572 ], [ -80.842918395996094, -6.452362060546875 ], [ -80.843193054199219, -6.452362060546875 ], [ -80.843193054199219, -6.452640056610051 ], [ -80.844024658203068, -6.452640056610051 ], [ -80.844024658203068, -6.452362060546875 ], [ -80.844863891601506, -6.452362060546875 ], [ -80.844863891601506, -6.452640056610051 ], [ -80.845138549804688, -6.452640056610051 ], [ -80.845138549804688, -6.454306125640869 ], [ -80.844863891601506, -6.454306125640869 ], [ -80.844863891601506, -6.455416202545052 ], [ -80.844581604003849, -6.455416202545052 ], [ -80.844581604003849, -6.456250190734863 ], [ -80.844306945800724, -6.456250190734863 ], [ -80.844306945800724, -6.456528186798096 ], [ -80.843193054199219, -6.456528186798096 ], [ -80.843193054199219, -6.456806182861328 ], [ -80.842918395996094, -6.456806182861328 ], [ -80.842918395996094, -6.456528186798096 ], [ -80.842361450195312, -6.456528186798096 ], [ -80.842361450195312, -6.456250190734863 ], [ -80.841804504394531, -6.456250190734863 ], [ -80.841804504394531, -6.455972194671631 ], [ -80.841529846191349, -6.455972194671631 ], [ -80.841529846191349, -6.455694198608398 ], [ -80.84041595458973, -6.455694198608398 ], [ -80.84041595458973, -6.455972194671631 ], [ -80.840141296386719, -6.455972194671631 ], [ -80.840141296386719, -6.456250190734863 ], [ -80.839859008789062, -6.456250190734863 ], [ -80.839859008789062, -6.457081794738713 ], [ -80.839584350585938, -6.457081794738713 ], [ -80.839584350585938, -6.457362174987793 ], [ -80.839859008789062, -6.457362174987793 ], [ -80.839859008789062, -6.45791578292841 ], [ -80.840141296386719, -6.45791578292841 ], [ -80.840141296386719, -6.458749771118164 ], [ -80.84041595458973, -6.458749771118164 ], [ -80.84041595458973, -6.459305763244629 ], [ -80.840690612792912, -6.459305763244629 ], [ -80.840698242187386, -6.45958423614502 ], [ -80.840972900390568, -6.45958423614502 ], [ -80.840972900390568, -6.459862232208252 ], [ -80.841529846191349, -6.459862232208252 ], [ -80.841529846191349, -6.460137844085637 ], [ -80.842086791992188, -6.460137844085637 ], [ -80.842086791992188, -6.460693836212101 ], [ -80.842361450195312, -6.460693836212101 ], [ -80.842361450195312, -6.461249828338566 ], [ -80.842636108398438, -6.461249828338566 ], [ -80.842636108398438, -6.461527824401799 ], [ -80.842918395996094, -6.461527824401799 ], [ -80.842918395996094, -6.46208381652832 ], [ -80.843193054199219, -6.46208381652832 ], [ -80.843193054199219, -6.462637901306152 ], [ -80.843475341796875, -6.462637901306152 ], [ -80.843475341796875, -6.46319389343256 ], [ -80.843193054199219, -6.46319389343256 ], [ -80.843193054199219, -6.463749885559025 ], [ -80.842918395996094, -6.463749885559025 ], [ -80.842918395996094, -6.464581966400146 ], [ -80.842636108398438, -6.464581966400146 ], [ -80.842636108398438, -6.464859962463379 ], [ -80.842361450195312, -6.464859962463379 ], [ -80.842361450195312, -6.465137958526611 ], [ -80.841804504394531, -6.465137958526611 ], [ -80.841804504394531, -6.46541690826416 ], [ -80.84041595458973, -6.46541690826416 ], [ -80.84041595458973, -6.465137958526611 ], [ -80.839859008789062, -6.465137958526611 ], [ -80.839859008789062, -6.46541690826416 ], [ -80.839584350585938, -6.46541690826416 ], [ -80.839584350585938, -6.465694904327393 ], [ -80.839302062988281, -6.465694904327393 ], [ -80.839302062988281, -6.46652889251709 ], [ -80.839584350585938, -6.466526031494141 ], [ -80.839584350585938, -6.466806888580322 ], [ -80.839302062988281, -6.466804981231633 ], [ -80.839302062988281, -6.467082977294865 ], [ -80.839584350585938, -6.467082977294865 ], [ -80.839584350585938, -6.467360973358041 ], [ -80.839859008789062, -6.467360973358041 ], [ -80.839859008789062, -6.467638969421387 ], [ -80.840141296386719, -6.467638969421387 ], [ -80.840141296386719, -6.468471050262394 ], [ -80.839859008789062, -6.468471050262394 ], [ -80.839859008789062, -6.469305038452092 ], [ -80.839584350585938, -6.469305038452092 ], [ -80.839584350585938, -6.469583034515324 ], [ -80.838752746582031, -6.469583034515324 ], [ -80.838752746582031, -6.469861030578556 ], [ -80.838470458984318, -6.469861030578556 ], [ -80.838470458984318, -6.469583034515324 ], [ -80.838195800781193, -6.469583034515324 ], [ -80.838195800781193, -6.469861030578556 ], [ -80.837638854980412, -6.469861030578556 ], [ -80.837638854980412, -6.470139026641789 ], [ -80.837081909179688, -6.470139026641789 ], [ -80.837081909179688, -6.47097110748291 ], [ -80.836807250976562, -6.47097110748291 ], [ -80.836807250976562, -6.471805095672607 ], [ -80.836524963378906, -6.471805095672607 ], [ -80.836524963378906, -6.472361087799015 ], [ -80.836250305175781, -6.472361087799015 ], [ -80.836250305175781, -6.473195075988713 ], [ -80.836524963378906, -6.473195075988713 ], [ -80.836524963378906, -6.473749160766602 ], [ -80.836807250976562, -6.473749160766602 ], [ -80.836807250976562, -6.474027156829834 ], [ -80.837081909179688, -6.474027156829834 ], [ -80.837081909179688, -6.474305152893066 ], [ -80.837638854980412, -6.474305152893066 ], [ -80.837638854980412, -6.474583148956299 ], [ -80.838470458984318, -6.474580764770508 ], [ -80.838470458984318, -6.474859237670785 ], [ -80.839302062988281, -6.474859237670785 ], [ -80.839302062988281, -6.474580764770508 ], [ -80.839859008789062, -6.474583148956299 ], [ -80.839859008789062, -6.474027156829834 ], [ -80.840141296386719, -6.474027156829834 ], [ -80.840141296386719, -6.473471164703369 ], [ -80.839859008789062, -6.473471164703369 ], [ -80.839859008789062, -6.473195075988713 ], [ -80.840141296386719, -6.473195075988713 ], [ -80.840141296386719, -6.471805095672607 ], [ -80.84041595458973, -6.471805095672607 ], [ -80.84041595458973, -6.471249103546143 ], [ -80.840972900390568, -6.471249103546143 ], [ -80.840972900390568, -6.47097110748291 ], [ -80.841529846191349, -6.470973014831429 ], [ -80.841529846191349, -6.470695018768254 ], [ -80.842086791992188, -6.470695018768254 ], [ -80.842086791992188, -6.470417022705021 ], [ -80.842361450195312, -6.470417022705021 ], [ -80.842361450195312, -6.470139026641789 ], [ -80.842636108398438, -6.470139026641789 ], [ -80.842636108398438, -6.469861030578556 ], [ -80.842918395996094, -6.469861030578556 ], [ -80.842918395996094, -6.469583034515324 ], [ -80.843193054199219, -6.469583034515324 ], [ -80.843193054199219, -6.469305038452092 ], [ -80.843475341796875, -6.469305038452092 ], [ -80.843475341796875, -6.469027042388859 ], [ -80.843749999999886, -6.469027042388859 ], [ -80.843749999999886, -6.468749046325627 ], [ -80.845138549804688, -6.468749046325627 ], [ -80.845138549804688, -6.469027042388859 ], [ -80.845413208007812, -6.469027042388859 ], [ -80.845413208007812, -6.469583034515324 ], [ -80.845695495605469, -6.469583034515324 ], [ -80.845695495605469, -6.470139026641789 ], [ -80.845970153808594, -6.470139026641789 ], [ -80.845970153808594, -6.470695018768254 ], [ -80.84625244140625, -6.470695018768254 ], [ -80.84625244140625, -6.471805095672607 ], [ -80.846801757812386, -6.471805095672607 ], [ -80.846801757812386, -6.472083091735783 ], [ -80.847084045410099, -6.472083091735783 ], [ -80.847084045410099, -6.472361087799015 ], [ -80.847358703613224, -6.472361087799015 ], [ -80.847358703613224, -6.473195075988713 ], [ -80.847084045410099, -6.473195075988713 ], [ -80.847084045410099, -6.473471164703369 ], [ -80.846801757812386, -6.473471164703369 ], [ -80.846801757812386, -6.474027156829834 ], [ -80.846527099609375, -6.474027156829834 ], [ -80.846527099609375, -6.474583148956299 ], [ -80.84625244140625, -6.474580764770508 ], [ -80.84625244140625, -6.475415229797363 ], [ -80.846527099609375, -6.475415229797363 ], [ -80.846527099609375, -6.475693225860596 ], [ -80.846801757812386, -6.475693225860596 ], [ -80.846801757812386, -6.475971221923828 ], [ -80.847640991210881, -6.475971221923828 ], [ -80.847640991210881, -6.475693225860596 ], [ -80.848472595214844, -6.475693225860596 ], [ -80.848472595214844, -6.475415229797363 ], [ -80.849029541015625, -6.475415229797363 ], [ -80.849029541015625, -6.475693225860596 ], [ -80.84930419921875, -6.475693225860596 ], [ -80.84930419921875, -6.475971221923828 ], [ -80.850692749023381, -6.475971221923828 ], [ -80.850692749023381, -6.475693225860596 ], [ -80.850975036621037, -6.475693225860596 ], [ -80.850975036621037, -6.475415229797363 ], [ -80.851249694824162, -6.475415229797363 ], [ -80.851249694824162, -6.474859237670785 ], [ -80.851524353027344, -6.474859237670785 ], [ -80.851524353027344, -6.474580764770508 ], [ -80.851806640625, -6.474580764770508 ], [ -80.851806640625, -6.473749160766602 ], [ -80.852081298828125, -6.473749160766602 ], [ -80.852081298828125, -6.473471164703369 ], [ -80.852363586425781, -6.473471164703369 ], [ -80.852363586425781, -6.473195075988713 ], [ -80.852912902832031, -6.473195075988713 ], [ -80.852912902832031, -6.47291707992548 ], [ -80.853195190429574, -6.47291707992548 ], [ -80.853195190429574, -6.473195075988713 ], [ -80.853469848632756, -6.473195075988713 ], [ -80.853469848632756, -6.474027156829834 ], [ -80.853752136230412, -6.474027156829834 ], [ -80.853752136230412, -6.474305152893066 ], [ -80.855972290039062, -6.474305152893066 ], [ -80.855972290039062, -6.474027156829834 ], [ -80.856246948242074, -6.474027156829834 ], [ -80.856246948242074, -6.472639083862248 ], [ -80.85652923583973, -6.472639083862248 ], [ -80.85652923583973, -6.472083091735783 ], [ -80.857635498046875, -6.472083091735783 ], [ -80.857635498046875, -6.472361087799015 ], [ -80.858192443847656, -6.472361087799015 ], [ -80.858192443847656, -6.473195075988713 ], [ -80.857917785644531, -6.473195075988713 ], [ -80.857917785644531, -6.473471164703369 ], [ -80.857635498046875, -6.473471164703369 ], [ -80.857635498046875, -6.474027156829834 ], [ -80.857360839843693, -6.474027156829834 ], [ -80.857360839843693, -6.475417137145996 ], [ -80.858749389648438, -6.475415229797363 ], [ -80.858749389648438, -6.475693225860596 ], [ -80.859024047851562, -6.475693225860596 ], [ -80.859024047851562, -6.476249217987061 ], [ -80.859306335449219, -6.476249217987061 ], [ -80.859306335449219, -6.476527214050293 ], [ -80.860137939453068, -6.476527214050293 ], [ -80.860137939453068, -6.476805210113525 ], [ -80.860694885253849, -6.476805210113525 ], [ -80.860694885253849, -6.476527214050293 ], [ -80.860969543457031, -6.476527214050293 ], [ -80.860969543457031, -6.476249217987061 ], [ -80.861251831054688, -6.476249217987061 ], [ -80.861251831054688, -6.475137233734131 ], [ -80.861526489257812, -6.475137233734131 ], [ -80.861526489257812, -6.474580764770508 ], [ -80.861808776855469, -6.474583148956299 ], [ -80.861808776855469, -6.474305152893066 ], [ -80.862358093261719, -6.474305152893066 ], [ -80.862358093261719, -6.474027156829834 ], [ -80.862640380859375, -6.474027156829834 ], [ -80.862640380859375, -6.473471164703369 ], [ -80.863471984863224, -6.473471164703369 ], [ -80.863471984863224, -6.473195075988713 ], [ -80.864028930664006, -6.473195075988713 ], [ -80.864028930664006, -6.47291707992548 ], [ -80.864303588867188, -6.47291707992548 ], [ -80.864303588867188, -6.472639083862248 ], [ -80.864860534667969, -6.472639083862248 ], [ -80.864860534667969, -6.471527099609375 ], [ -80.864585876464844, -6.471527099609375 ], [ -80.864585876464844, -6.471249103546143 ], [ -80.863746643066349, -6.471249103546143 ], [ -80.863746643066349, -6.47097110748291 ], [ -80.863471984863224, -6.470973014831429 ], [ -80.863471984863224, -6.470417022705021 ], [ -80.863746643066349, -6.470417022705021 ], [ -80.863746643066349, -6.470139026641789 ], [ -80.864303588867188, -6.470139026641789 ], [ -80.864303588867188, -6.469861030578556 ], [ -80.864585876464844, -6.469861030578556 ], [ -80.864585876464844, -6.469027042388859 ], [ -80.864860534667969, -6.469028949737549 ], [ -80.864860534667969, -6.468194961547852 ], [ -80.865135192871094, -6.468194961547852 ], [ -80.865135192871094, -6.467082977294865 ], [ -80.864860534667969, -6.467084884643555 ], [ -80.864860534667969, -6.466526031494141 ], [ -80.865135192871094, -6.466526031494141 ], [ -80.865135192871094, -6.466248035430908 ], [ -80.86541748046875, -6.466250896453857 ], [ -80.86541748046875, -6.46541690826416 ], [ -80.864585876464844, -6.46541690826416 ], [ -80.864585876464844, -6.465137958526611 ], [ -80.864303588867188, -6.465137958526611 ], [ -80.864303588867188, -6.463749885559025 ], [ -80.864028930664006, -6.463749885559025 ], [ -80.864028930664006, -6.46235990524292 ], [ -80.863471984863224, -6.46235990524292 ], [ -80.863471984863224, -6.461805820464974 ], [ -80.863746643066349, -6.461805820464974 ], [ -80.863746643066349, -6.461527824401799 ], [ -80.864303588867188, -6.461527824401799 ], [ -80.864303588867188, -6.461249828338566 ], [ -80.864585876464844, -6.461249828338566 ], [ -80.864585876464844, -6.45958423614502 ], [ -80.864028930664006, -6.45958423614502 ], [ -80.864028930664006, -6.459305763244629 ], [ -80.863197326660099, -6.459305763244629 ], [ -80.863197326660099, -6.459027767181396 ], [ -80.862083435058594, -6.459027767181396 ], [ -80.862083435058594, -6.458471775054932 ], [ -80.861808776855469, -6.458471775054932 ], [ -80.861808776855469, -6.45791578292841 ], [ -80.862083435058594, -6.45791578292841 ], [ -80.862083435058594, -6.456250190734863 ], [ -80.861808776855469, -6.456250190734863 ], [ -80.861808776855469, -6.455972194671631 ], [ -80.85958099365223, -6.455972194671631 ], [ -80.85958099365223, -6.456250190734863 ], [ -80.859306335449219, -6.456250190734863 ], [ -80.859306335449219, -6.456528186798096 ], [ -80.858749389648438, -6.456528186798096 ], [ -80.858749389648438, -6.456806182861328 ], [ -80.858474731445312, -6.456806182861328 ], [ -80.858474731445312, -6.456528186798096 ], [ -80.858192443847656, -6.456528186798096 ], [ -80.858192443847656, -6.456250190734863 ], [ -80.857917785644531, -6.456250190734863 ], [ -80.857917785644531, -6.455694198608398 ], [ -80.858192443847656, -6.455694198608398 ], [ -80.858192443847656, -6.454860210418644 ], [ -80.858474731445312, -6.454860210418644 ], [ -80.858474731445312, -6.454584121704102 ], [ -80.858749389648438, -6.454584121704102 ], [ -80.858749389648438, -6.454028129577637 ], [ -80.859024047851562, -6.454028129577637 ], [ -80.859024047851562, -6.453194141387939 ], [ -80.858749389648438, -6.453194141387939 ], [ -80.858749389648438, -6.452640056610051 ], [ -80.858474731445312, -6.452640056610051 ], [ -80.858474731445312, -6.451527118682804 ], [ -80.859024047851562, -6.451527118682804 ], [ -80.859024047851562, -6.451249122619572 ], [ -80.858749389648438, -6.451249122619572 ], [ -80.858749389648438, -6.450417995452824 ], [ -80.858474731445312, -6.450417995452824 ], [ -80.858474731445312, -6.44958305358881 ], [ -80.858192443847656, -6.44958305358881 ], [ -80.858192443847656, -6.449305057525578 ], [ -80.858474731445312, -6.449305057525578 ], [ -80.858474731445312, -6.448749065399113 ], [ -80.859024047851562, -6.448749065399113 ], [ -80.859024047851562, -6.448471069335881 ], [ -80.859306335449219, -6.448471069335881 ], [ -80.859306335449219, -6.448749065399113 ], [ -80.85958099365223, -6.448749065399113 ], [ -80.85958099365223, -6.447916984558105 ], [ -80.859863281249943, -6.447916984558105 ], [ -80.859863281249943, -6.447082996368408 ], [ -80.860137939453068, -6.447082996368408 ], [ -80.860137939453068, -6.447360992431641 ], [ -80.860420227050724, -6.447360992431641 ], [ -80.860420227050724, -6.447638988494873 ], [ -80.860694885253849, -6.447638988494873 ], [ -80.860694885253849, -6.448194980621338 ], [ -80.860969543457031, -6.448194980621338 ], [ -80.860969543457031, -6.448471069335881 ], [ -80.861251831054688, -6.448471069335881 ], [ -80.861251831054688, -6.448749065399113 ], [ -80.861808776855469, -6.448749065399113 ], [ -80.861808776855469, -6.449027061462346 ], [ -80.862083435058594, -6.449027061462346 ], [ -80.862083435058594, -6.449305057525578 ], [ -80.863197326660099, -6.449305057525578 ], [ -80.863197326660099, -6.449027061462346 ], [ -80.863746643066349, -6.449027061462346 ], [ -80.863746643066349, -6.448749065399113 ], [ -80.864303588867188, -6.448749065399113 ], [ -80.864303588867188, -6.448471069335881 ], [ -80.864585876464844, -6.448471069335881 ], [ -80.864585876464844, -6.447638988494873 ], [ -80.864860534667969, -6.447638988494873 ], [ -80.864860534667969, -6.447082996368408 ], [ -80.865692138671875, -6.447082996368408 ], [ -80.865692138671875, -6.446805000305176 ], [ -80.865974426269418, -6.446805000305176 ], [ -80.865974426269418, -6.446527004241943 ], [ -80.866531372070256, -6.446527004241943 ], [ -80.866531372070256, -6.447082996368408 ], [ -80.867080688476506, -6.447082996368408 ], [ -80.867080688476506, -6.446805000305176 ], [ -80.867637634277344, -6.446805000305176 ], [ -80.867637634277344, -6.446527004241943 ], [ -80.867919921875, -6.446527004241943 ], [ -80.867919921875, -6.446249008178597 ], [ -80.868194580078125, -6.446249008178597 ], [ -80.868194580078125, -6.445972919464111 ], [ -80.86846923828125, -6.445972919464111 ], [ -80.86846923828125, -6.445416927337646 ], [ -80.869026184081918, -6.445416927337646 ], [ -80.869026184081918, -6.445138931274414 ], [ -80.869308471679574, -6.445138931274414 ], [ -80.869308471679574, -6.444582939147949 ], [ -80.871246337890625, -6.444582939147949 ], [ -80.871246337890625, -6.444026947021484 ], [ -80.871528625488281, -6.444026947021484 ], [ -80.871528625488281, -6.442916870117188 ], [ -80.871246337890625, -6.442916870117188 ], [ -80.871246337890625, -6.441804885864258 ], [ -80.8709716796875, -6.441804885864258 ], [ -80.8709716796875, -6.441528797149601 ], [ -80.868751525878906, -6.441528797149601 ], [ -80.868751525878906, -6.440416812896672 ], [ -80.869026184081918, -6.440416812896672 ], [ -80.869026184081918, -6.439582824707031 ], [ -80.868751525878906, -6.439582824707031 ], [ -80.868751525878906, -6.439029216766301 ], [ -80.86846923828125, -6.439029216766301 ], [ -80.86846923828125, -6.437359809875488 ], [ -80.868751525878906, -6.437363147735596 ], [ -80.868751525878906, -6.437081813812142 ], [ -80.869026184081918, -6.437081813812142 ], [ -80.869026184081918, -6.436807155609131 ], [ -80.869308471679574, -6.436807155609131 ], [ -80.869308471679574, -6.436528205871582 ], [ -80.8709716796875, -6.436528205871582 ], [ -80.8709716796875, -6.436807155609131 ], [ -80.871246337890625, -6.436807155609131 ], [ -80.871246337890625, -6.437081813812142 ], [ -80.871528625488281, -6.437081813812142 ], [ -80.871528625488281, -6.437363147735596 ], [ -80.872642517089787, -6.437363147735596 ], [ -80.872642517089787, -6.437081813812142 ], [ -80.872917175292912, -6.437081813812142 ], [ -80.872917175292912, -6.436807155609131 ], [ -80.873191833496037, -6.436807155609131 ], [ -80.873191833496037, -6.436528205871582 ], [ -80.873474121093693, -6.436528205871582 ], [ -80.873474121093693, -6.43625020980835 ], [ -80.874862670898438, -6.43625020980835 ], [ -80.874862670898438, -6.435972213745117 ], [ -80.875419616699219, -6.435972213745117 ], [ -80.875419616699219, -6.435694217681885 ], [ -80.877914428710938, -6.435694217681885 ], [ -80.877914428710938, -6.435972213745117 ], [ -80.879585266113224, -6.435972213745117 ], [ -80.879585266113224, -6.435694217681885 ], [ -80.880142211914062, -6.435694217681885 ], [ -80.880142211914062, -6.435972213745117 ], [ -80.881805419921761, -6.435972213745117 ], [ -80.881805419921761, -6.435416221618652 ], [ -80.88153076171875, -6.435416221618652 ], [ -80.88153076171875, -6.43513822555542 ], [ -80.881248474121094, -6.43513822555542 ], [ -80.881248474121094, -6.434860229492188 ], [ -80.880973815917969, -6.434860229492188 ], [ -80.880973815917969, -6.434582233428955 ], [ -80.878471374511719, -6.434582233428955 ], [ -80.878471374511719, -6.434304237365609 ], [ -80.878196716308594, -6.434304237365609 ], [ -80.878196716308594, -6.434025764465332 ], [ -80.877914428710938, -6.434028148651123 ], [ -80.877914428710938, -6.432916164398193 ], [ -80.877639770507812, -6.432916164398193 ], [ -80.877639770507812, -6.432638168334961 ], [ -80.877357482910156, -6.432638168334961 ], [ -80.877357482910156, -6.432360172271729 ], [ -80.875968933105412, -6.432360172271729 ], [ -80.875968933105412, -6.432638168334961 ], [ -80.874305725097656, -6.432638168334961 ], [ -80.874305725097656, -6.432360172271729 ], [ -80.873474121093693, -6.432360172271729 ], [ -80.873474121093693, -6.432082176208496 ], [ -80.873191833496037, -6.432084083557072 ], [ -80.873191833496037, -6.431528091430607 ], [ -80.872917175292912, -6.431528091430607 ], [ -80.872917175292912, -6.430694103240967 ], [ -80.872360229492074, -6.430694103240967 ], [ -80.872360229492074, -6.430416107177734 ], [ -80.872085571289062, -6.430416107177734 ], [ -80.872085571289062, -6.430138111114502 ], [ -80.871528625488281, -6.430140018463078 ], [ -80.871528625488281, -6.429584026336613 ], [ -80.871246337890625, -6.429584026336613 ], [ -80.871246337890625, -6.429306030273381 ], [ -80.8709716796875, -6.429306030273381 ], [ -80.8709716796875, -6.429584026336613 ], [ -80.870414733886719, -6.429584026336613 ], [ -80.870414733886719, -6.429306030273381 ], [ -80.870140075683537, -6.429306030273381 ], [ -80.870140075683537, -6.429028034210148 ], [ -80.869583129882756, -6.429028034210148 ], [ -80.869583129882756, -6.428194046020451 ], [ -80.869308471679574, -6.428194046020451 ], [ -80.869308471679574, -6.427638053894043 ], [ -80.868751525878906, -6.427638053894043 ], [ -80.868751525878906, -6.427360057830811 ], [ -80.86846923828125, -6.427360057830811 ], [ -80.86846923828125, -6.427638053894043 ], [ -80.867637634277344, -6.427638053894043 ], [ -80.867637634277344, -6.427916049957219 ], [ -80.867362976074219, -6.427916049957219 ], [ -80.867362976074219, -6.428194046020451 ], [ -80.866806030273381, -6.428194046020451 ], [ -80.866806030273381, -6.427638053894043 ], [ -80.867080688476506, -6.427638053894043 ], [ -80.867080688476506, -6.427360057830811 ], [ -80.867362976074219, -6.427360057830811 ], [ -80.867362976074219, -6.426249980926457 ], [ -80.867637634277344, -6.426249980926457 ], [ -80.867637634277344, -6.425693035125732 ], [ -80.867919921875, -6.425693035125732 ], [ -80.867919921875, -6.424583911895752 ], [ -80.867637634277344, -6.424583911895752 ], [ -80.867637634277344, -6.424304962158203 ], [ -80.867080688476506, -6.424304962158203 ], [ -80.867080688476506, -6.424583911895752 ], [ -80.866806030273381, -6.424583911895752 ], [ -80.866806030273381, -6.424861907958984 ], [ -80.866531372070256, -6.424861907958984 ], [ -80.866531372070256, -6.4254150390625 ], [ -80.866249084472599, -6.4254150390625 ], [ -80.866249084472599, -6.425693035125732 ], [ -80.865974426269418, -6.425693035125732 ], [ -80.865974426269418, -6.425971984863224 ], [ -80.865692138671875, -6.425971984863224 ], [ -80.865692138671875, -6.426249980926457 ], [ -80.865135192871094, -6.426249980926457 ], [ -80.865135192871094, -6.426527976989689 ], [ -80.864585876464844, -6.426527976989689 ], [ -80.864585876464844, -6.425971984863224 ], [ -80.864860534667969, -6.425971984863224 ], [ -80.864860534667969, -6.424861907958984 ], [ -80.865135192871094, -6.424861907958984 ], [ -80.865135192871094, -6.422638893127385 ], [ -80.864860534667969, -6.422638893127385 ], [ -80.864860534667969, -6.422360897064152 ], [ -80.864585876464844, -6.422360897064152 ], [ -80.864585876464844, -6.422082901000977 ], [ -80.864028930664006, -6.422082901000977 ], [ -80.864028930664006, -6.421804904937744 ], [ -80.863746643066349, -6.421804904937744 ], [ -80.863746643066349, -6.420972824096623 ], [ -80.864028930664006, -6.420972824096623 ], [ -80.864028930664006, -6.419582843780461 ], [ -80.864303588867188, -6.419582843780461 ], [ -80.864303588867188, -6.419304847717228 ], [ -80.864585876464844, -6.419304847717228 ], [ -80.864585876464844, -6.419026851653996 ], [ -80.865135192871094, -6.419026851653996 ], [ -80.865135192871094, -6.418748855590763 ], [ -80.865692138671875, -6.418748855590763 ], [ -80.865692138671875, -6.41763877868641 ], [ -80.86541748046875, -6.41763877868641 ], [ -80.86541748046875, -6.417360782623234 ], [ -80.865135192871094, -6.417360782623234 ], [ -80.865135192871094, -6.417082786560002 ], [ -80.864303588867188, -6.417082786560002 ], [ -80.864303588867188, -6.416804790496769 ], [ -80.864028930664006, -6.416804790496769 ], [ -80.864028930664006, -6.416526794433537 ], [ -80.863471984863224, -6.416526794433537 ], [ -80.863471984863224, -6.416248798370304 ], [ -80.863197326660099, -6.416248798370304 ], [ -80.863197326660099, -6.415970802307072 ], [ -80.862640380859375, -6.415970802307072 ], [ -80.862640380859375, -6.41569280624384 ], [ -80.861526489257812, -6.415695190429688 ], [ -80.861526489257812, -6.414027214050236 ], [ -80.861808776855469, -6.414027214050236 ], [ -80.861808776855469, -6.413751125335693 ], [ -80.862358093261719, -6.413751125335693 ], [ -80.862358093261719, -6.413473129272461 ], [ -80.863197326660099, -6.413473129272461 ], [ -80.863197326660099, -6.412917137145996 ], [ -80.863471984863224, -6.412917137145996 ], [ -80.863471984863224, -6.412639141082764 ], [ -80.863746643066349, -6.412639141082764 ], [ -80.863746643066349, -6.412361145019531 ], [ -80.864028930664006, -6.412361145019531 ], [ -80.864028930664006, -6.412082195281982 ], [ -80.864860534667969, -6.412082195281982 ], [ -80.864860534667969, -6.411807060241699 ], [ -80.865692138671875, -6.411807060241699 ], [ -80.865692138671875, -6.411529064178467 ], [ -80.865974426269418, -6.411529064178467 ], [ -80.865974426269418, -6.410973072052002 ], [ -80.866249084472599, -6.410973072052002 ], [ -80.866249084472599, -6.410416126251164 ], [ -80.866531372070256, -6.410416126251164 ], [ -80.866531372070256, -6.409028053283635 ], [ -80.866249084472599, -6.409028053283635 ], [ -80.866249084472599, -6.408750057220402 ], [ -80.865974426269418, -6.408750057220402 ], [ -80.865974426269418, -6.408194065093937 ], [ -80.866531372070256, -6.408194065093937 ], [ -80.866531372070256, -6.407916069030705 ], [ -80.866806030273381, -6.407916069030705 ], [ -80.866806030273381, -6.407638072967472 ], [ -80.868751525878906, -6.407638072967472 ], [ -80.868751525878906, -6.40736007690424 ], [ -80.869308471679574, -6.40736007690424 ], [ -80.869308471679574, -6.407083988189697 ], [ -80.869583129882756, -6.407083988189697 ], [ -80.869583129882756, -6.406805992126465 ], [ -80.869857788085881, -6.406805992126465 ], [ -80.869857788085881, -6.406527996063232 ], [ -80.870140075683537, -6.406527996063232 ], [ -80.870140075683537, -6.405694007873421 ], [ -80.870414733886719, -6.405694007873421 ], [ -80.870414733886719, -6.405416011810246 ], [ -80.870697021484375, -6.405416011810246 ], [ -80.870697021484375, -6.404583930969238 ], [ -80.8709716796875, -6.404583930969238 ], [ -80.8709716796875, -6.404027938842773 ], [ -80.870697021484375, -6.404027938842773 ], [ -80.870697021484375, -6.403471946716309 ], [ -80.869583129882756, -6.403471946716309 ], [ -80.869583129882756, -6.403193950653076 ], [ -80.869026184081918, -6.403193950653076 ], [ -80.869026184081918, -6.402915954589844 ], [ -80.867919921875, -6.402915954589844 ], [ -80.867919921875, -6.403193950653076 ], [ -80.867637634277344, -6.403193950653076 ], [ -80.867637634277344, -6.403471946716309 ], [ -80.867080688476506, -6.403471946716309 ], [ -80.867080688476506, -6.404305934906006 ], [ -80.866531372070256, -6.404305934906006 ], [ -80.866531372070256, -6.405138015747013 ], [ -80.866249084472599, -6.405138015747013 ], [ -80.866249084472599, -6.405416011810246 ], [ -80.865974426269418, -6.405416011810246 ], [ -80.865974426269418, -6.405694007873421 ], [ -80.865692138671875, -6.405694007873421 ], [ -80.865692138671875, -6.405972003936768 ], [ -80.86541748046875, -6.405972003936768 ], [ -80.86541748046875, -6.40625 ], [ -80.865135192871094, -6.40625 ], [ -80.865135192871094, -6.406527996063232 ], [ -80.864860534667969, -6.406527996063232 ], [ -80.864860534667969, -6.406805992126465 ], [ -80.864585876464844, -6.406805992126465 ], [ -80.864585876464844, -6.406527996063232 ], [ -80.863197326660099, -6.406527996063232 ], [ -80.863197326660099, -6.406805992126465 ], [ -80.862915039062443, -6.406805992126465 ], [ -80.862915039062443, -6.407083988189697 ], [ -80.861808776855469, -6.407083988189697 ], [ -80.861808776855469, -6.406527996063232 ], [ -80.861526489257812, -6.406527996063232 ], [ -80.861526489257812, -6.405416011810246 ], [ -80.861251831054688, -6.405416011810246 ], [ -80.861251831054688, -6.405138015747013 ], [ -80.860969543457031, -6.405138015747013 ], [ -80.860969543457031, -6.404305934906006 ], [ -80.860694885253849, -6.404305934906006 ], [ -80.860694885253849, -6.403471946716309 ], [ -80.860420227050724, -6.403471946716309 ], [ -80.860420227050724, -6.403193950653076 ], [ -80.859863281249943, -6.403193950653076 ], [ -80.859863281249943, -6.402915954589844 ], [ -80.85958099365223, -6.402915954589844 ], [ -80.85958099365223, -6.401805877685547 ], [ -80.859306335449219, -6.401805877685547 ], [ -80.859306335449219, -6.401249885559082 ], [ -80.859024047851562, -6.401249885559082 ], [ -80.859024047851562, -6.399861812591496 ], [ -80.858749389648438, -6.399861812591496 ], [ -80.858749389648438, -6.399583816528263 ], [ -80.858474731445312, -6.399583816528263 ], [ -80.858474731445312, -6.399305820465031 ], [ -80.858192443847656, -6.399305820465031 ], [ -80.858192443847656, -6.399027824401855 ], [ -80.858474731445312, -6.399027824401855 ], [ -80.858474731445312, -6.398192882537785 ], [ -80.858749389648438, -6.398192882537785 ], [ -80.858749389648438, -6.397640228271428 ], [ -80.859024047851562, -6.397640228271428 ], [ -80.859024047851562, -6.397362232208195 ], [ -80.85958099365223, -6.397362232208195 ], [ -80.85958099365223, -6.397082805633545 ], [ -80.860137939453068, -6.397082805633545 ], [ -80.860137939453068, -6.396804809570312 ], [ -80.860420227050724, -6.396804809570312 ], [ -80.860420227050724, -6.396248817443791 ], [ -80.860694885253849, -6.396248817443791 ], [ -80.860694885253849, -6.395692825317326 ], [ -80.860420227050724, -6.39569616317749 ], [ -80.860420227050724, -6.394861221313477 ], [ -80.860137939453068, -6.394861221313477 ], [ -80.860137939453068, -6.394583225250244 ], [ -80.859863281249943, -6.394583225250244 ], [ -80.859863281249943, -6.394305229187012 ], [ -80.85958099365223, -6.394305229187012 ], [ -80.85958099365223, -6.394027233123779 ], [ -80.859024047851562, -6.394027233123779 ], [ -80.859024047851562, -6.392917156219482 ], [ -80.859306335449219, -6.392917156219482 ], [ -80.859306335449219, -6.39263916015625 ], [ -80.85958099365223, -6.39263916015625 ], [ -80.85958099365223, -6.392083168029785 ], [ -80.859306335449219, -6.392083168029785 ], [ -80.859306335449219, -6.391805171966553 ], [ -80.858749389648438, -6.391805171966553 ], [ -80.858749389648438, -6.39152717590332 ], [ -80.858192443847656, -6.39152717590332 ], [ -80.858192443847656, -6.390971183776855 ], [ -80.857917785644531, -6.390973091125431 ], [ -80.857917785644531, -6.390417098999023 ], [ -80.858192443847656, -6.390417098999023 ], [ -80.858192443847656, -6.390139102935791 ], [ -80.858474731445312, -6.390139102935791 ], [ -80.858474731445312, -6.389861106872559 ], [ -80.858749389648438, -6.389861106872559 ], [ -80.858749389648438, -6.389027118682861 ], [ -80.858474731445312, -6.389027118682861 ], [ -80.858474731445312, -6.388749122619629 ], [ -80.857917785644531, -6.388749122619629 ], [ -80.857917785644531, -6.388471126556396 ], [ -80.857635498046875, -6.388473033904972 ], [ -80.857635498046875, -6.387917041778508 ], [ -80.857360839843693, -6.387917041778508 ], [ -80.857360839843693, -6.387639045715275 ], [ -80.856246948242074, -6.387639045715275 ], [ -80.856246948242074, -6.387361049652043 ], [ -80.855972290039062, -6.387361049652043 ], [ -80.855972290039062, -6.387083053588867 ], [ -80.855697631835938, -6.387083053588867 ], [ -80.855697631835938, -6.385694980621281 ], [ -80.855415344238281, -6.385694980621281 ], [ -80.855415344238281, -6.385416984558049 ], [ -80.855140686035156, -6.385416984558049 ], [ -80.855140686035156, -6.385138988494816 ], [ -80.854583740234375, -6.385138988494816 ], [ -80.854583740234375, -6.384860038757324 ], [ -80.854309082031193, -6.384860038757324 ], [ -80.854309082031193, -6.383750915527344 ], [ -80.854026794433537, -6.383750915527344 ], [ -80.854026794433537, -6.383471965789795 ], [ -80.853752136230412, -6.383471965789795 ], [ -80.853752136230412, -6.383193969726562 ], [ -80.853469848632756, -6.383193969726562 ], [ -80.853469848632756, -6.38291597366333 ], [ -80.852912902832031, -6.38291597366333 ], [ -80.852912902832031, -6.382637977600098 ], [ -80.852638244628906, -6.382637977600098 ], [ -80.852638244628906, -6.382084846496582 ], [ -80.852363586425781, -6.382084846496582 ], [ -80.852363586425781, -6.381249904632568 ], [ -80.852081298828125, -6.381249904632568 ], [ -80.852081298828125, -6.380415916442871 ], [ -80.851806640625, -6.380415916442871 ], [ -80.851806640625, -6.380137920379639 ], [ -80.851249694824162, -6.380137920379639 ], [ -80.851249694824162, -6.380415916442871 ], [ -80.850692749023381, -6.380415916442871 ], [ -80.850692749023381, -6.380693912506104 ], [ -80.850135803222599, -6.380693912506104 ], [ -80.850135803222599, -6.380415916442871 ], [ -80.849861145019531, -6.380415916442871 ], [ -80.849861145019531, -6.380137920379639 ], [ -80.849586486816406, -6.380137920379639 ], [ -80.849586486816406, -6.379859924316406 ], [ -80.849029541015625, -6.379859924316406 ], [ -80.849029541015625, -6.37958383560175 ], [ -80.848747253417969, -6.37958383560175 ], [ -80.848747253417969, -6.379305839538517 ], [ -80.848197937011662, -6.379305839538517 ] ] ], [ [ [ -81.208473205566406, -5.200973033904972 ], [ -81.208473205566406, -5.201251029968148 ], [ -81.207916259765625, -5.201251029968148 ], [ -81.207916259765625, -5.202639102935734 ], [ -81.206802368164006, -5.202639102935734 ], [ -81.206802368164006, -5.204305171966553 ], [ -81.206253051757812, -5.204305171966553 ], [ -81.206253051757812, -5.205417156219482 ], [ -81.205970764160156, -5.205417156219482 ], [ -81.205970764160156, -5.206527233123779 ], [ -81.205696105957031, -5.206527233123779 ], [ -81.205696105957031, -5.207083225250244 ], [ -81.205413818359375, -5.207083225250244 ], [ -81.205413818359375, -5.207639217376709 ], [ -81.20513916015625, -5.207639217376709 ], [ -81.20513916015625, -5.207917213439941 ], [ -81.204864501953125, -5.207917213439941 ], [ -81.204864501953125, -5.208473205566406 ], [ -81.204307556152287, -5.208473205566406 ], [ -81.204307556152287, -5.208748817443848 ], [ -81.204025268554631, -5.208748817443848 ], [ -81.204025268554631, -5.20902681350708 ], [ -81.202362060546875, -5.20902681350708 ], [ -81.202362060546875, -5.209304809570312 ], [ -81.202079772949219, -5.209304809570312 ], [ -81.202079772949219, -5.21013879776001 ], [ -81.201805114746094, -5.21013879776001 ], [ -81.201805114746094, -5.210972785949707 ], [ -81.201530456542969, -5.210972785949707 ], [ -81.201530456542969, -5.211526870727425 ], [ -81.201248168945256, -5.211526870727425 ], [ -81.201248168945256, -5.211804866790771 ], [ -81.200973510742131, -5.211804866790771 ], [ -81.200973510742131, -5.212082862854004 ], [ -81.201805114746094, -5.212082862854004 ], [ -81.201805114746094, -5.212917804717961 ], [ -81.202362060546875, -5.212917804717961 ], [ -81.202362060546875, -5.213748931884709 ], [ -81.20263671875, -5.213748931884709 ], [ -81.20263671875, -5.21430587768549 ], [ -81.203475952148324, -5.21430587768549 ], [ -81.203475952148324, -5.213470935821476 ], [ -81.203750610351506, -5.213470935821476 ], [ -81.203750610351506, -5.213748931884709 ], [ -81.204025268554631, -5.213748931884709 ], [ -81.204025268554631, -5.21430587768549 ], [ -81.204307556152287, -5.21430587768549 ], [ -81.204307556152287, -5.214861869811955 ], [ -81.205696105957031, -5.214861869811955 ], [ -81.205696105957031, -5.214583873748722 ], [ -81.206253051757812, -5.214583873748722 ], [ -81.206253051757812, -5.214026927947941 ], [ -81.206527709960824, -5.214026927947941 ], [ -81.206527709960824, -5.213470935821476 ], [ -81.206802368164006, -5.213470935821476 ], [ -81.206802368164006, -5.212917804717961 ], [ -81.209030151367188, -5.212917804717961 ], [ -81.209030151367188, -5.212360858917236 ], [ -81.209304809570312, -5.212360858917236 ], [ -81.209304809570312, -5.212082862854004 ], [ -81.208747863769531, -5.212082862854004 ], [ -81.208747863769531, -5.211526870727425 ], [ -81.209030151367188, -5.211526870727425 ], [ -81.209030151367188, -5.210972785949707 ], [ -81.209304809570312, -5.210972785949707 ], [ -81.209304809570312, -5.21013879776001 ], [ -81.209587097167969, -5.21013879776001 ], [ -81.209587097167969, -5.207917213439941 ], [ -81.210418701171818, -5.207917213439941 ], [ -81.210418701171818, -5.207639217376709 ], [ -81.210693359374943, -5.207639217376709 ], [ -81.210693359374943, -5.207083225250244 ], [ -81.210975646972599, -5.207083225250244 ], [ -81.210975646972599, -5.206805229187012 ], [ -81.211524963378906, -5.206805229187012 ], [ -81.211524963378906, -5.206527233123779 ], [ -81.211807250976562, -5.206527233123779 ], [ -81.211807250976562, -5.206249237060547 ], [ -81.212364196777344, -5.206249237060547 ], [ -81.212364196777344, -5.205970764160156 ], [ -81.212638854980469, -5.20597314834589 ], [ -81.212638854980469, -5.205695152282715 ], [ -81.214027404785099, -5.205695152282715 ], [ -81.214027404785099, -5.20513916015625 ], [ -81.214302062988281, -5.20513916015625 ], [ -81.214302062988281, -5.204583168029785 ], [ -81.214584350585938, -5.204583168029785 ], [ -81.214584350585938, -5.20402717590332 ], [ -81.214859008789062, -5.20402717590332 ], [ -81.214859008789062, -5.203749179840088 ], [ -81.214302062988281, -5.203749179840088 ], [ -81.214302062988281, -5.203471183776855 ], [ -81.214027404785099, -5.203473091125431 ], [ -81.214027404785099, -5.203195095062199 ], [ -81.212913513183537, -5.203195095062199 ], [ -81.212913513183537, -5.203751087188664 ], [ -81.212638854980469, -5.203749179840088 ], [ -81.212638854980469, -5.20402717590332 ], [ -81.212081909179688, -5.20402717590332 ], [ -81.212081909179688, -5.203749179840088 ], [ -81.211807250976562, -5.203749179840088 ], [ -81.211807250976562, -5.203471183776855 ], [ -81.211250305175781, -5.203473091125431 ], [ -81.211250305175781, -5.203195095062199 ], [ -81.210975646972599, -5.203195095062199 ], [ -81.210975646972599, -5.202917098998967 ], [ -81.210693359374943, -5.202917098998967 ], [ -81.210693359374943, -5.202639102935734 ], [ -81.210136413574162, -5.202639102935734 ], [ -81.210136413574162, -5.202361106872502 ], [ -81.209587097167969, -5.202361106872502 ], [ -81.209587097167969, -5.201804161071721 ], [ -81.209861755371037, -5.201804161071721 ], [ -81.209861755371037, -5.201251029968148 ], [ -81.209304809570312, -5.201251029968148 ], [ -81.209304809570312, -5.200973033904972 ], [ -81.208473205566406, -5.200973033904972 ] ] ], [ [ [ -80.484542846679688, -4.084662914276123 ], [ -80.482948303222599, -4.085745811462402 ], [ -80.482109069824162, -4.086588859558049 ], [ -80.481857299804688, -4.087075233459473 ], [ -80.481201171875, -4.088350772857666 ], [ -80.481063842773381, -4.088941097259465 ], [ -80.480903625488281, -4.0890917778014 ], [ -80.480628967285156, -4.089828014373722 ], [ -80.480812072753906, -4.090736865997201 ], [ -80.480926513671875, -4.090856075286752 ], [ -80.48150634765625, -4.093031883239746 ], [ -80.481460571289062, -4.09341287612915 ], [ -80.481269836425781, -4.093543052673283 ], [ -80.480758666992131, -4.093901157379094 ], [ -80.479202270507812, -4.095207214355355 ], [ -80.478546142578125, -4.095115184783936 ], [ -80.47747802734375, -4.095877170562744 ], [ -80.477096557617188, -4.096644878387451 ], [ -80.476913452148438, -4.097849845886117 ], [ -80.476783752441406, -4.098114967346191 ], [ -80.476371765136662, -4.099676132202148 ], [ -80.4749755859375, -4.101945877075195 ], [ -80.472839355468693, -4.104337215423584 ], [ -80.471549987792969, -4.105340003967171 ], [ -80.468658447265568, -4.108420848846379 ], [ -80.466903686523438, -4.109963893890381 ], [ -80.465156555175781, -4.112036228179875 ], [ -80.463027954101506, -4.115501880645695 ], [ -80.462646484374943, -4.1167311668396 ], [ -80.462722778320256, -4.117574214935303 ], [ -80.462501525878906, -4.118577003478947 ], [ -80.462806701660156, -4.120106220245248 ], [ -80.463493347167912, -4.121026992797852 ], [ -80.464820861816349, -4.122299194335938 ], [ -80.464843749999943, -4.122725009918156 ], [ -80.465042114257756, -4.123372077941895 ], [ -80.465568542480469, -4.123878002166691 ], [ -80.46624755859375, -4.124219894409123 ], [ -80.466705322265625, -4.124503135681152 ], [ -80.466819763183594, -4.124576091766357 ], [ -80.467384338378906, -4.126162052154427 ], [ -80.466850280761662, -4.127696037292424 ], [ -80.466011047363281, -4.128692150115967 ], [ -80.465560913085938, -4.128929138183537 ], [ -80.4647216796875, -4.128925800323486 ], [ -80.461898803710824, -4.128252029418832 ], [ -80.459991455078011, -4.126492023467961 ], [ -80.458694458007812, -4.124807834625187 ], [ -80.456794738769531, -4.12389421463007 ], [ -80.456031799316406, -4.123818874359074 ], [ -80.455116271972599, -4.124049186706486 ], [ -80.454048156738224, -4.12482213973999 ], [ -80.453468322753906, -4.125021934509221 ], [ -80.453140258789062, -4.124514102935734 ], [ -80.451873779296818, -4.122600078582764 ], [ -80.451438903808594, -4.122107028961182 ], [ -80.450004577636719, -4.12065315246582 ], [ -80.448982238769531, -4.120069980621338 ], [ -80.448333740234318, -4.119922161102295 ], [ -80.447639465332031, -4.120038032531738 ], [ -80.447113037109318, -4.120086193084603 ], [ -80.446807861328068, -4.120396137237435 ], [ -80.446578979492188, -4.122467041015568 ], [ -80.447494506835881, -4.12376880645752 ], [ -80.447944641113224, -4.124096870422306 ], [ -80.448638916015568, -4.12511301040638 ], [ -80.448867797851562, -4.125473976135254 ], [ -80.448875427246094, -4.126063823699894 ], [ -80.449485778808537, -4.127986907958928 ], [ -80.449485778808537, -4.128518104553223 ], [ -80.448646545410043, -4.12967920303339 ], [ -80.448554992675781, -4.198537826537972 ], [ -80.448135375976506, -4.207210063934326 ], [ -80.4481201171875, -4.207747936248779 ], [ -80.446708679199162, -4.206494808197021 ], [ -80.445587158203068, -4.205508232116642 ], [ -80.444938659667969, -4.204926013946533 ], [ -80.444595336914062, -4.204523086547795 ], [ -80.444496154785156, -4.203844070434513 ], [ -80.44378662109375, -4.202569961547852 ], [ -80.4432373046875, -4.202033996582031 ], [ -80.442108154296875, -4.201605796813908 ], [ -80.440910339355412, -4.200201988220215 ], [ -80.439132690429688, -4.198675155639648 ], [ -80.435813903808594, -4.196684837341309 ], [ -80.435356140136662, -4.19652080535883 ], [ -80.435279846191349, -4.196450233459473 ], [ -80.434059143066406, -4.19589185714716 ], [ -80.433357238769474, -4.195783138275146 ], [ -80.432914733886719, -4.195637226104623 ], [ -80.431945800781193, -4.195580005645752 ], [ -80.430778503417912, -4.195794105529785 ], [ -80.429962158203125, -4.196046829223576 ], [ -80.429084777831974, -4.196412086486703 ], [ -80.428627014160156, -4.196895122528076 ], [ -80.427955627441406, -4.197615146636963 ], [ -80.427818298339787, -4.1977858543396 ], [ -80.424560546875, -4.200056076049748 ], [ -80.422256469726562, -4.201252937316838 ], [ -80.420326232910156, -4.201616764068604 ], [ -80.418685913085881, -4.202448844909611 ], [ -80.418190002441349, -4.2034912109375 ], [ -80.417778015136719, -4.203896045684814 ], [ -80.417144775390568, -4.205426216125488 ], [ -80.416954040527287, -4.206189155578613 ], [ -80.416801452636719, -4.207264900207463 ], [ -80.416557312011719, -4.207676887512207 ], [ -80.416503906249886, -4.209362030029183 ], [ -80.416465759277344, -4.209658145904541 ], [ -80.416160583496094, -4.210690021514836 ], [ -80.415908813476506, -4.211095809936467 ], [ -80.414894104003906, -4.212112903594914 ], [ -80.414619445800781, -4.213150024414006 ], [ -80.414299011230412, -4.213425159454346 ], [ -80.413009643554688, -4.214108943939209 ], [ -80.412513732910156, -4.21461296081543 ], [ -80.412223815917969, -4.21464204788208 ], [ -80.410881042480355, -4.215129852294922 ], [ -80.410461425781193, -4.215601921081486 ], [ -80.410140991210938, -4.217006206512451 ], [ -80.408531188964844, -4.217206001281625 ], [ -80.407806396484318, -4.21712684631342 ], [ -80.407569885253906, -4.217008113861027 ], [ -80.406822204589844, -4.216409206390381 ], [ -80.405532836914006, -4.215779781341496 ], [ -80.404830932617188, -4.21485710144043 ], [ -80.403900146484318, -4.21416187286377 ], [ -80.401138305664006, -4.212685108184758 ], [ -80.400138854980469, -4.211531162261963 ], [ -80.393180847167969, -4.206075191497803 ], [ -80.389350891113281, -4.20377779006958 ], [ -80.388191223144531, -4.202661037445068 ], [ -80.387565612792969, -4.202674865722599 ], [ -80.386543273925724, -4.20323991775507 ], [ -80.386329650878906, -4.203525066375676 ], [ -80.386222839355469, -4.203551769256592 ], [ -80.385757446289062, -4.204170227050781 ], [ -80.385368347167969, -4.204782962799072 ], [ -80.385246276855469, -4.204942226409912 ], [ -80.383659362792969, -4.206558227539006 ], [ -80.382781982421875, -4.207164764404183 ], [ -80.382095336914062, -4.207205772399846 ], [ -80.380485534667969, -4.206380844116211 ], [ -80.378471374511719, -4.204872131347599 ], [ -80.376853942871094, -4.203314781188908 ], [ -80.376037597656193, -4.202952861785832 ], [ -80.375129699707031, -4.201895236968994 ], [ -80.374717712402287, -4.200926780700627 ], [ -80.370857238769531, -4.197548866271916 ], [ -80.369667053222599, -4.197671890258732 ], [ -80.368988037109318, -4.197352886199951 ], [ -80.366752624511719, -4.19855880737299 ], [ -80.365676879882699, -4.199511051177979 ], [ -80.365333557128906, -4.200136184692326 ], [ -80.364791870117131, -4.201373100280762 ], [ -80.364372253417969, -4.203203201293888 ], [ -80.364234924316349, -4.204456806182861 ], [ -80.364616394042912, -4.205534934997559 ], [ -80.36456298828125, -4.206525802612248 ], [ -80.362770080566406, -4.207990169525146 ], [ -80.361236572265625, -4.210188865661564 ], [ -80.359130859375, -4.211698055267334 ], [ -80.358573913574219, -4.212621212005558 ], [ -80.35760498046875, -4.215132236480656 ], [ -80.356834411621094, -4.215758800506592 ], [ -80.355499267578125, -4.216217041015568 ], [ -80.354995727538949, -4.217175006866398 ], [ -80.354949951171875, -4.2182297706604 ], [ -80.354354858398438, -4.218648910522404 ], [ -80.353584289550781, -4.218833923339844 ], [ -80.353317260742188, -4.220141887664795 ], [ -80.3525390625, -4.220561027526799 ], [ -80.351707458496094, -4.219872951507512 ], [ -80.350448608398438, -4.219441890716553 ], [ -80.349861145019531, -4.218337059020996 ], [ -80.349517822265625, -4.218089103698674 ], [ -80.348884582519474, -4.217956066131592 ], [ -80.347663879394531, -4.218262195587158 ], [ -80.347358703613224, -4.218130111694336 ], [ -80.347023010253906, -4.217740058898869 ], [ -80.34710693359375, -4.216183185577393 ], [ -80.347358703613224, -4.214105129241943 ], [ -80.346733093261719, -4.212914943695012 ], [ -80.345939636230469, -4.212313175201416 ], [ -80.345878601074219, -4.21196889877308 ], [ -80.343864440917969, -4.2104811668396 ], [ -80.343070983886605, -4.210457801818848 ], [ -80.341987609863224, -4.210015773773193 ], [ -80.340400695800668, -4.208584785461369 ], [ -80.339675903320312, -4.208546161651611 ], [ -80.339103698730469, -4.208809852599984 ], [ -80.337898254394474, -4.210475921630803 ], [ -80.334960937499943, -4.212819099426156 ], [ -80.333656311035156, -4.212621212005558 ], [ -80.332763671874943, -4.213827133178711 ], [ -80.330268859863224, -4.213832855224553 ], [ -80.329277038574219, -4.214058876037484 ], [ -80.327926635742188, -4.212433815002328 ], [ -80.327392578125, -4.211787223815861 ], [ -80.326499938964844, -4.210531234741154 ], [ -80.323371887207031, -4.206335067748967 ], [ -80.323150634765625, -4.206075191497803 ], [ -80.319480895996037, -4.20173978805542 ], [ -80.318313598632812, -4.200798988342171 ], [ -80.317703247070199, -4.20030403137207 ], [ -80.316070556640568, -4.199442863464355 ], [ -80.315528869628906, -4.199155807495117 ], [ -80.313041687011719, -4.197981834411564 ], [ -80.312950134277344, -4.197936058044434 ], [ -80.31246185302723, -4.19770622253418 ], [ -80.311286926269474, -4.198563098907414 ], [ -80.311119079589787, -4.198841094970646 ], [ -80.31093597412098, -4.199140071868896 ], [ -80.310813903808537, -4.199886798858643 ], [ -80.310882568359375, -4.200215816497746 ], [ -80.310913085937443, -4.200539112091064 ], [ -80.3101806640625, -4.202610969543343 ], [ -80.310066223144474, -4.202928066253662 ], [ -80.309967041015568, -4.20490121841425 ], [ -80.31048583984375, -4.206320762634277 ], [ -80.311454772949219, -4.207729816436711 ], [ -80.314064025878849, -4.210305213928166 ], [ -80.316078186035099, -4.212714195251465 ], [ -80.318351745605412, -4.214303016662598 ], [ -80.319702148437443, -4.215627193450928 ], [ -80.3211669921875, -4.21560001373291 ], [ -80.324142456054688, -4.218594074249211 ], [ -80.326332092285156, -4.222031116485539 ], [ -80.32704925537098, -4.222567081451359 ], [ -80.327484130859375, -4.222599029540959 ], [ -80.330741882324162, -4.225389003753605 ], [ -80.333747863769531, -4.229835033416691 ], [ -80.334793090820312, -4.232016086578312 ], [ -80.336883544921875, -4.234352111816406 ], [ -80.337532043456974, -4.236511230468693 ], [ -80.340713500976562, -4.239514827728215 ], [ -80.342056274414062, -4.242441177368164 ], [ -80.344970703124943, -4.245357990264893 ], [ -80.346893310546875, -4.248164176940918 ], [ -80.348037719726562, -4.249174118041879 ], [ -80.349861145019531, -4.250114917755127 ], [ -80.350662231445312, -4.25152587890625 ], [ -80.351715087890568, -4.252538204193115 ], [ -80.351860046386719, -4.252771854400635 ], [ -80.352531433105469, -4.255134105682373 ], [ -80.352180480957031, -4.256216049194279 ], [ -80.352714538574219, -4.257069110870361 ], [ -80.352294921874943, -4.257979869842472 ], [ -80.352394104003849, -4.258718967437687 ], [ -80.353607177734375, -4.25966215133667 ], [ -80.353614807128906, -4.260280132293701 ], [ -80.353630065917912, -4.26116418838501 ], [ -80.354049682617188, -4.26179122924799 ], [ -80.354377746582031, -4.262012004852295 ], [ -80.354743957519531, -4.262259960174504 ], [ -80.35528564453125, -4.262622833251953 ], [ -80.356147766113281, -4.263066768646183 ], [ -80.358146667480469, -4.263947010040283 ], [ -80.359413146972656, -4.264689922332764 ], [ -80.363311767578125, -4.26805400848383 ], [ -80.364517211914006, -4.268819808959847 ], [ -80.365943908691349, -4.269341945648193 ], [ -80.36639404296875, -4.26976299285883 ], [ -80.366706848144474, -4.271203994750863 ], [ -80.366439819335824, -4.273702144622803 ], [ -80.366264343261719, -4.275090217590218 ], [ -80.366180419921875, -4.27578687667841 ], [ -80.366233825683537, -4.276491165161133 ], [ -80.366249084472543, -4.27663516998291 ], [ -80.36627197265625, -4.277003765106201 ], [ -80.366378784179688, -4.278219223022461 ], [ -80.366561889648438, -4.279035091400146 ], [ -80.366874694824219, -4.279606819152832 ], [ -80.366767883300781, -4.280315876007023 ], [ -80.367080688476506, -4.281610012054443 ], [ -80.367454528808537, -4.281813144683838 ], [ -80.367744445800724, -4.282970905303898 ], [ -80.367881774902344, -4.283155918121338 ], [ -80.368209838867188, -4.283605098724365 ], [ -80.369369506835881, -4.284644126892033 ], [ -80.371452331542969, -4.28631687164301 ], [ -80.372901916503849, -4.287174224853459 ], [ -80.375366210937443, -4.288598060607853 ], [ -80.375511169433594, -4.288680076599007 ], [ -80.379203796386662, -4.291406154632512 ], [ -80.379798889160156, -4.291852951049805 ], [ -80.380851745605469, -4.292141914367619 ], [ -80.38165283203125, -4.292134761810303 ], [ -80.383216857910099, -4.292005062103271 ], [ -80.384147644042912, -4.292466163635254 ], [ -80.384666442871094, -4.293042182922363 ], [ -80.384780883789062, -4.293166160583382 ], [ -80.385894775390511, -4.295423984527531 ], [ -80.386772155761719, -4.296301841735783 ], [ -80.387687683105412, -4.297220230102482 ], [ -80.389724731445312, -4.300693035125676 ], [ -80.392166137695256, -4.302012920379582 ], [ -80.393600463867131, -4.302641868591309 ], [ -80.395111083984318, -4.303684234619141 ], [ -80.395744323730469, -4.304265022277775 ], [ -80.398178100585881, -4.30767917633051 ], [ -80.399276733398438, -4.308666229248047 ], [ -80.402389526367074, -4.309812068939152 ], [ -80.404594421386719, -4.311792850494385 ], [ -80.404701232910156, -4.311892986297607 ], [ -80.405227661132756, -4.31252908706665 ], [ -80.406959533691349, -4.314959049224797 ], [ -80.408859252929631, -4.316352844238224 ], [ -80.410194396972599, -4.317328929901123 ], [ -80.411293029785156, -4.318601131439209 ], [ -80.411453247070199, -4.318862915039062 ], [ -80.411750793457031, -4.319355010986328 ], [ -80.413482666015625, -4.322202205657902 ], [ -80.413688659667969, -4.322546005249023 ], [ -80.415794372558594, -4.326154232025146 ], [ -80.41729736328125, -4.32940578460682 ], [ -80.419433593749943, -4.331610202789307 ], [ -80.42012786865223, -4.332127094268799 ], [ -80.422836303710938, -4.335667133331299 ], [ -80.426292419433537, -4.339552879333496 ], [ -80.427040100097656, -4.34076976776123 ], [ -80.427696228027344, -4.342196941375619 ], [ -80.42842864990223, -4.343791961669865 ], [ -80.428604125976506, -4.344612121582031 ], [ -80.429008483886719, -4.346247196197453 ], [ -80.429069519042912, -4.349109172821045 ], [ -80.428894042968693, -4.350052833557015 ], [ -80.428619384765511, -4.35179615020752 ], [ -80.429885864257812, -4.353117942810002 ], [ -80.430221557617131, -4.353360176086369 ], [ -80.431266784667912, -4.354094028472787 ], [ -80.431404113769531, -4.354191780090332 ], [ -80.431838989257756, -4.354761123657227 ], [ -80.431983947753906, -4.357543945312443 ], [ -80.432434082031136, -4.358290195464974 ], [ -80.432662963867188, -4.358732223510685 ], [ -80.433197021484261, -4.359729766845646 ], [ -80.433753967285099, -4.361515045166016 ], [ -80.434112548828068, -4.361945152282715 ], [ -80.434852600097656, -4.362832069396859 ], [ -80.436225891113224, -4.364078998565674 ], [ -80.437263488769474, -4.364694118499756 ], [ -80.439437866210938, -4.365983963012638 ], [ -80.440780639648438, -4.366466999053955 ], [ -80.443283081054631, -4.367856979370117 ], [ -80.443931579589844, -4.368597984313851 ], [ -80.444236755371037, -4.369290828704777 ], [ -80.444488525390625, -4.371673107147217 ], [ -80.444992065429631, -4.37328577041626 ], [ -80.445930480957031, -4.374360084533635 ], [ -80.447547912597656, -4.377284049987793 ], [ -80.448532104492131, -4.378355026245117 ], [ -80.4488525390625, -4.378646850585938 ], [ -80.451202392578068, -4.380835056304932 ], [ -80.451728820800781, -4.381575107574463 ], [ -80.452392578125, -4.383130073547306 ], [ -80.452766418457031, -4.384743213653508 ], [ -80.452789306640625, -4.385440826416016 ], [ -80.452728271484318, -4.387474060058537 ], [ -80.452453613281193, -4.388850212097168 ], [ -80.450523376464787, -4.390062808990479 ], [ -80.449394226074162, -4.391567230224609 ], [ -80.44826507568348, -4.392592906951904 ], [ -80.446098327636719, -4.393075942993107 ], [ -80.445663452148381, -4.393710136413574 ], [ -80.446182250976562, -4.394581794738713 ], [ -80.446136474609318, -4.394895076751709 ], [ -80.446121215820312, -4.395598888397103 ], [ -80.446258544921761, -4.396397113800049 ], [ -80.446548461913949, -4.397140026092529 ], [ -80.447174072265625, -4.39730787277216 ], [ -80.447525024414062, -4.397251129150391 ], [ -80.447784423828011, -4.397212982177678 ], [ -80.448226928710881, -4.396852970123291 ], [ -80.448677062988281, -4.396341800689697 ], [ -80.448928833007699, -4.39560079574585 ], [ -80.449424743652344, -4.395188808441162 ], [ -80.450111389160156, -4.395165920257512 ], [ -80.450523376464787, -4.395678997039738 ], [ -80.450607299804688, -4.395785808563176 ], [ -80.450897216796818, -4.39647912979126 ], [ -80.451416015625, -4.39776611328125 ], [ -80.451698303222543, -4.398479938507023 ], [ -80.451454162597656, -4.398972034454346 ], [ -80.447586059570256, -4.402450084686222 ], [ -80.447410583496094, -4.402991771697998 ], [ -80.448638916015568, -4.403657913207951 ], [ -80.447731018066406, -4.404467105865479 ], [ -80.447265625, -4.405165195465088 ], [ -80.447341918945312, -4.405902862548771 ], [ -80.447753906249943, -4.406415939330998 ], [ -80.448440551757756, -4.40674877166748 ], [ -80.451576232910099, -4.407790184020939 ], [ -80.452606201171875, -4.408147811889592 ], [ -80.453117370605412, -4.408651828765869 ], [ -80.453330993652344, -4.40894603729248 ], [ -80.452621459960881, -4.411500930786133 ], [ -80.4515380859375, -4.413200855255127 ], [ -80.450767517089844, -4.415116786956787 ], [ -80.449218749999886, -4.417424201965332 ], [ -80.448699951171875, -4.419147014617863 ], [ -80.449050903320312, -4.420255184173584 ], [ -80.449401855468693, -4.420337200164795 ], [ -80.449874877929631, -4.421675205230656 ], [ -80.450119018554688, -4.422354221343937 ], [ -80.450111389160156, -4.422476768493596 ], [ -80.449958801269474, -4.423541069030762 ], [ -80.4498291015625, -4.423922061920166 ], [ -80.449867248535099, -4.424133777618351 ], [ -80.449577331542912, -4.425461769103947 ], [ -80.449630737304688, -4.426558971404972 ], [ -80.449714660644531, -4.427958011627197 ], [ -80.449783325195256, -4.428641796112061 ], [ -80.449806213378906, -4.428904056549072 ], [ -80.449653625488281, -4.429271221160889 ], [ -80.449859619140568, -4.429428100585938 ], [ -80.449989318847656, -4.43075513839716 ], [ -80.45001220703125, -4.430995941162109 ], [ -80.449653625488281, -4.431680202484074 ], [ -80.449371337890568, -4.431941986083928 ], [ -80.449226379394531, -4.431969165802002 ], [ -80.448600769042969, -4.432666778564453 ], [ -80.448493957519531, -4.432768821716252 ], [ -80.447753906249943, -4.43333721160883 ], [ -80.447731018066406, -4.433701992034912 ], [ -80.447654724121037, -4.434865951538086 ], [ -80.447624206542969, -4.43545389175415 ], [ -80.447731018066406, -4.43698787689209 ], [ -80.447372436523381, -4.437689781188965 ], [ -80.446578979492188, -4.438196182250977 ], [ -80.445861816406193, -4.438430786132699 ], [ -80.445686340331918, -4.438416957855225 ], [ -80.445075988769531, -4.438541889190674 ], [ -80.444618225097599, -4.439095973968506 ], [ -80.444351196288949, -4.439651966094914 ], [ -80.444252014160099, -4.439857959747258 ], [ -80.444328308105412, -4.44059419631958 ], [ -80.444580078125, -4.441188812255803 ], [ -80.446304321289062, -4.442859172821045 ], [ -80.4466552734375, -4.443309783935547 ], [ -80.447067260742188, -4.443834781646729 ], [ -80.447166442871094, -4.444283962249642 ], [ -80.447219848632812, -4.444530010223389 ], [ -80.446662902832031, -4.446492195129395 ], [ -80.446586608886719, -4.446770191192627 ], [ -80.446670532226562, -4.44748592376709 ], [ -80.44561767578125, -4.446612834930363 ], [ -80.443840026855412, -4.446455955505371 ], [ -80.443504333496094, -4.447343826293888 ], [ -80.442886352539006, -4.446263790130558 ], [ -80.44216156005848, -4.446612834930363 ], [ -80.441535949707031, -4.447060108184814 ], [ -80.4405517578125, -4.448403835296631 ], [ -80.440078735351562, -4.449243068694955 ], [ -80.439186096191349, -4.452004909515324 ], [ -80.438529968261662, -4.456017017364502 ], [ -80.438117980956974, -4.45668888092041 ], [ -80.43743896484375, -4.457171916961613 ], [ -80.436233520507756, -4.456606864929142 ], [ -80.434623718261605, -4.456591129302922 ], [ -80.432846069335938, -4.457397937774601 ], [ -80.432395935058537, -4.457390785217285 ], [ -80.429550170898381, -4.458438873290959 ], [ -80.424514770507699, -4.459170818328857 ], [ -80.423942565917855, -4.459606170654297 ], [ -80.423881530761719, -4.459877014160099 ], [ -80.424209594726506, -4.460198879241887 ], [ -80.423896789550781, -4.46059513092041 ], [ -80.423919677734318, -4.460900783538818 ], [ -80.423965454101562, -4.461523056030217 ], [ -80.424163818359375, -4.463105201721191 ], [ -80.423782348632812, -4.463895797729492 ], [ -80.422866821289006, -4.464361190795898 ], [ -80.421585083007812, -4.46573877334589 ], [ -80.419181823730469, -4.466983795166016 ], [ -80.418586730956974, -4.46677923202509 ], [ -80.418380737304631, -4.466222763061467 ], [ -80.418464660644531, -4.465692043304443 ], [ -80.419486999511719, -4.463809013366699 ], [ -80.419410705566406, -4.461297035217285 ], [ -80.418388366699162, -4.459928035736084 ], [ -80.417686462402344, -4.459536075591984 ], [ -80.416069030761719, -4.459989070892277 ], [ -80.415199279785156, -4.460896015167236 ], [ -80.414802551269531, -4.462297916412297 ], [ -80.414566040039006, -4.462543964385929 ], [ -80.414344787597656, -4.462853908538762 ], [ -80.413742065429574, -4.463719844818058 ], [ -80.411262512206918, -4.464059829711914 ], [ -80.409584045410156, -4.465253829955998 ], [ -80.409149169921818, -4.465283870697021 ], [ -80.408157348632812, -4.466055870056096 ], [ -80.407302856445312, -4.466322898864689 ], [ -80.407043457031193, -4.466783046722355 ], [ -80.406913757324219, -4.468037128448486 ], [ -80.406593322753906, -4.46848821640009 ], [ -80.406654357910099, -4.468591213226262 ], [ -80.406364440917912, -4.468804836273193 ], [ -80.406257629394531, -4.468886852264404 ], [ -80.405715942382756, -4.469281196594238 ], [ -80.405494689941406, -4.469445228576603 ], [ -80.404640197753906, -4.46976900100708 ], [ -80.404457092285099, -4.469837188720703 ], [ -80.403694152831974, -4.470009803771916 ], [ -80.401649475097656, -4.47136402130127 ], [ -80.399818420410043, -4.473390102386475 ], [ -80.399200439453125, -4.474298000335637 ], [ -80.397598266601506, -4.475633144378605 ], [ -80.396705627441406, -4.47637414932251 ], [ -80.396507263183594, -4.478531837463379 ], [ -80.396499633789062, -4.478871822357121 ], [ -80.396492004394531, -4.47939395904541 ], [ -80.396484375, -4.480127811431885 ], [ -80.396263122558537, -4.48089599609375 ], [ -80.395401000976506, -4.481841087341309 ], [ -80.395210266113224, -4.482052803039551 ], [ -80.394607543945312, -4.48260498046875 ], [ -80.394302368164062, -4.482834815979004 ], [ -80.394004821777344, -4.483054161071777 ], [ -80.390838623046818, -4.48537015914917 ], [ -80.390182495117074, -4.485435962676945 ], [ -80.389518737792855, -4.485346794128418 ], [ -80.388870239257812, -4.485092163085938 ], [ -80.386466979980355, -4.483074188232422 ], [ -80.385658264160156, -4.482058048248234 ], [ -80.385231018066406, -4.481403827667236 ], [ -80.383049011230469, -4.477902889251709 ], [ -80.381813049316406, -4.477087020873967 ], [ -80.380119323730469, -4.476667881011963 ], [ -80.379074096679688, -4.476514816284123 ], [ -80.378417968749943, -4.476529121398926 ], [ -80.377700805664062, -4.476766109466553 ], [ -80.377365112304688, -4.477443218231201 ], [ -80.3770751953125, -4.477697849273682 ], [ -80.37664794921875, -4.47808122634882 ], [ -80.375930786132812, -4.478297233581543 ], [ -80.375083923339787, -4.478552818298283 ], [ -80.374565124511719, -4.478710174560547 ], [ -80.374053955078068, -4.478862762451115 ], [ -80.371681213378793, -4.479591846466064 ], [ -80.371276855468693, -4.479679107666016 ], [ -80.368812561035099, -4.480212211608887 ], [ -80.365409851074219, -4.480761051177979 ], [ -80.363632202148438, -4.480560779571476 ], [ -80.362899780273381, -4.480341911315861 ], [ -80.362312316894474, -4.479966163635254 ], [ -80.360504150390568, -4.478813171386719 ], [ -80.359825134277287, -4.477966785430908 ], [ -80.359184265136662, -4.476654052734318 ], [ -80.358558654785156, -4.47504711151123 ], [ -80.358436584472656, -4.474728107452393 ], [ -80.356994628906136, -4.47301197052002 ], [ -80.356185913085938, -4.472838878631535 ], [ -80.354408264160099, -4.472709178924561 ], [ -80.352737426757812, -4.472579002380371 ], [ -80.352043151855469, -4.4722900390625 ], [ -80.351470947265625, -4.471888065338135 ], [ -80.349967956542969, -4.47147607803339 ], [ -80.349685668945312, -4.471418857574463 ], [ -80.348533630371094, -4.471181869506779 ], [ -80.34588623046875, -4.469641208648625 ], [ -80.343727111816349, -4.467870235443115 ], [ -80.343246459960881, -4.467473983764648 ], [ -80.342613220214844, -4.46718692779541 ], [ -80.340072631835938, -4.467535018920842 ], [ -80.339553833007812, -4.467606067657414 ], [ -80.338935852050724, -4.467472076416016 ], [ -80.338752746581974, -4.467432975769043 ], [ -80.337890624999943, -4.467141151428166 ], [ -80.337203979492188, -4.466688156127873 ], [ -80.336288452148381, -4.465559005737248 ], [ -80.336021423339844, -4.465107917785645 ], [ -80.334526062011719, -4.462636947631836 ], [ -80.333328247070256, -4.461670875549316 ], [ -80.332695007324219, -4.461389064788818 ], [ -80.331260681152344, -4.460868835449219 ], [ -80.330520629882812, -4.460362911224365 ], [ -80.329895019531193, -4.459797859191838 ], [ -80.328239440917969, -4.457879066467228 ], [ -80.324134826660156, -4.453318119049072 ], [ -80.322250366210881, -4.45174503326416 ], [ -80.319923400878906, -4.450444221496525 ], [ -80.319122314453068, -4.450163841247559 ], [ -80.316841125488224, -4.4501051902771 ], [ -80.314323425292969, -4.449650764465332 ], [ -80.313018798828068, -4.449036121368408 ], [ -80.312339782714787, -4.448640823364258 ], [ -80.310234069824162, -4.447356224060002 ], [ -80.307907104492188, -4.445895195007324 ], [ -80.306205749511719, -4.44461011886591 ], [ -80.305755615234318, -4.443995952606201 ], [ -80.305419921875, -4.443377017974854 ], [ -80.305419921875, -4.442704200744629 ], [ -80.305473327636662, -4.441238880157471 ], [ -80.305114746093636, -4.440618991851807 ], [ -80.304595947265625, -4.440114974975586 ], [ -80.303237915039062, -4.439557075500488 ], [ -80.301605224609375, -4.439394950866699 ], [ -80.298110961914062, -4.439083099365178 ], [ -80.296691894531193, -4.438745021820012 ], [ -80.294219970703068, -4.437795162200871 ], [ -80.294082641601562, -4.437745094299316 ], [ -80.293464660644474, -4.437300205230713 ], [ -80.292793273925724, -4.436575889587346 ], [ -80.292404174804631, -4.435904979705754 ], [ -80.292045593261662, -4.435119152069092 ], [ -80.2918701171875, -4.43441915512085 ], [ -80.291839599609318, -4.434182167053223 ], [ -80.291770935058594, -4.433703899383545 ], [ -80.292373657226562, -4.432320117950383 ], [ -80.294227600097599, -4.431469917297306 ], [ -80.294876098632756, -4.431282997131291 ], [ -80.29534912109375, -4.430861949920597 ], [ -80.295494079589844, -4.430740833282471 ], [ -80.295829772949162, -4.4301438331604 ], [ -80.295860290527287, -4.429312229156437 ], [ -80.295692443847656, -4.428922176361027 ], [ -80.295249938964844, -4.427840232849121 ], [ -80.294906616210881, -4.427196979522705 ], [ -80.294647216796875, -4.425717830657959 ], [ -80.294525146484318, -4.425008773803654 ], [ -80.294715881347599, -4.423419952392578 ], [ -80.294479370117188, -4.423261165618896 ], [ -80.293418884277344, -4.422537803649902 ], [ -80.290290832519531, -4.421232223510742 ], [ -80.290153503417969, -4.42117786407465 ], [ -80.288787841796818, -4.420352935791016 ], [ -80.287078857421818, -4.418352127075138 ], [ -80.286865234374943, -4.418103218078613 ], [ -80.285903930664062, -4.416739940643254 ], [ -80.285224914550781, -4.41549110412592 ], [ -80.284744262695312, -4.414560794830322 ], [ -80.283065795898381, -4.411358833312931 ], [ -80.281585693359375, -4.409615993499756 ], [ -80.280319213867074, -4.408113956451416 ], [ -80.278701782226449, -4.406460762023926 ], [ -80.277160644531193, -4.404880046844482 ], [ -80.274971008300724, -4.403663158416748 ], [ -80.274322509765625, -4.403562068939095 ], [ -80.274192810058537, -4.403542041778564 ], [ -80.273231506347599, -4.403651237487793 ], [ -80.272377014160099, -4.403976917266846 ], [ -80.271125793457031, -4.405096054077092 ], [ -80.269973754882812, -4.406329154968205 ], [ -80.26898193359375, -4.407615184783822 ], [ -80.268447875976562, -4.408298015594482 ], [ -80.267890930175724, -4.408998012542611 ], [ -80.267333984374943, -4.409341812133789 ], [ -80.265487670898438, -4.410449981689453 ], [ -80.264610290527344, -4.410813808441162 ], [ -80.263824462890511, -4.410852909088135 ], [ -80.263511657714787, -4.410808086395264 ], [ -80.261940002441406, -4.410582065582275 ], [ -80.261383056640625, -4.410298824310246 ], [ -80.261276245117188, -4.410220146179199 ], [ -80.260818481445312, -4.409770965576172 ], [ -80.259613037109318, -4.407751083373967 ], [ -80.259010314941406, -4.406277179717961 ], [ -80.258827209472599, -4.405346870422306 ], [ -80.258277893066349, -4.402530193328801 ], [ -80.257873535156193, -4.401771068572941 ], [ -80.257293701171875, -4.401431083679199 ], [ -80.256431579589844, -4.401340007781982 ], [ -80.256088256835881, -4.40144681930542 ], [ -80.255027770996037, -4.401774883270207 ], [ -80.254821777343693, -4.401838779449406 ], [ -80.252754211425724, -4.40247106552124 ], [ -80.251396179199162, -4.402616024017334 ], [ -80.250839233398381, -4.402586936950684 ], [ -80.24993896484375, -4.402327060699406 ], [ -80.249267578125, -4.401675224304142 ], [ -80.248703002929688, -4.400959968566838 ], [ -80.247756958007812, -4.398794174194279 ], [ -80.247528076171875, -4.397246837615967 ], [ -80.247634887695312, -4.394340991973877 ], [ -80.247322082519418, -4.392542839050293 ], [ -80.247222900390568, -4.391930103302002 ], [ -80.247039794921761, -4.39140510559082 ], [ -80.246932983398381, -4.391088962554875 ], [ -80.246528625488224, -4.390536785125676 ], [ -80.246009826660156, -4.390048980712834 ], [ -80.244926452636662, -4.389064788818359 ], [ -80.243721008300781, -4.388593196868896 ], [ -80.242095947265625, -4.388534069061222 ], [ -80.241401672363224, -4.388619899749756 ], [ -80.240623474121037, -4.388737201690617 ], [ -80.238876342773438, -4.388998985290471 ], [ -80.238059997558537, -4.389122009277287 ], [ -80.237716674804688, -4.388716220855713 ], [ -80.236946105957031, -4.387802124023438 ], [ -80.236862182617188, -4.387653827667236 ], [ -80.236595153808594, -4.387187004089299 ], [ -80.236000061035156, -4.384664058685246 ], [ -80.235603332519531, -4.38280200958252 ], [ -80.234657287597656, -4.380566120147705 ], [ -80.234466552734375, -4.380262851715088 ], [ -80.234107971191406, -4.379672050476074 ], [ -80.233856201171818, -4.377173900604191 ], [ -80.233566284179631, -4.374526023864746 ], [ -80.233482360839787, -4.37377214431757 ], [ -80.232818603515568, -4.373167991638127 ], [ -80.232009887695312, -4.372852802276611 ], [ -80.231254577636719, -4.372645854949951 ], [ -80.230400085449219, -4.372621059417725 ], [ -80.2296142578125, -4.372988224029541 ], [ -80.228958129882812, -4.373578071594181 ], [ -80.228553771972656, -4.37416410446167 ], [ -80.228240966796818, -4.376851081848145 ], [ -80.228050231933537, -4.380112171173096 ], [ -80.227684020996094, -4.380753040313721 ], [ -80.226936340332031, -4.381292819976807 ], [ -80.226318359374943, -4.381383895874023 ], [ -80.225975036621094, -4.381424903869515 ], [ -80.225250244140625, -4.381202220916748 ], [ -80.224449157714844, -4.380818843841553 ], [ -80.223937988281193, -4.380379199981689 ], [ -80.223457336425724, -4.379767894744759 ], [ -80.223258972167912, -4.379389762878418 ], [ -80.223136901855469, -4.379164218902531 ], [ -80.222770690917969, -4.378392219543457 ], [ -80.222732543945312, -4.378075122833138 ], [ -80.222412109374943, -4.375909805297795 ], [ -80.222412109374943, -4.375106811523324 ], [ -80.222824096679688, -4.373611927032471 ], [ -80.223152160644531, -4.37302923202509 ], [ -80.225135803222656, -4.370788097381535 ], [ -80.225204467773438, -4.370514869689941 ], [ -80.225311279296875, -4.370100021362191 ], [ -80.225166320800724, -4.369366168975773 ], [ -80.224655151367188, -4.368810176849365 ], [ -80.223335266113281, -4.368397235870361 ], [ -80.221572875976449, -4.367800235748234 ], [ -80.22100830078125, -4.367609024047795 ], [ -80.219955444335824, -4.36632585525507 ], [ -80.219581604003906, -4.365595817565918 ], [ -80.219429016113281, -4.365198135375977 ], [ -80.219200134277344, -4.36458683013916 ], [ -80.219429016113281, -4.36366415023798 ], [ -80.221038818359375, -4.361055850982552 ], [ -80.221511840820312, -4.360288143157959 ], [ -80.221809387207031, -4.358795166015568 ], [ -80.221786499023438, -4.358049869537354 ], [ -80.220695495605412, -4.355112075805607 ], [ -80.220184326171875, -4.354563236236515 ], [ -80.2196044921875, -4.354179859161377 ], [ -80.218643188476562, -4.353918075561523 ], [ -80.218238830566293, -4.353951930999699 ], [ -80.217697143554688, -4.353998184204102 ], [ -80.217025756835938, -4.354534149169922 ], [ -80.216590881347599, -4.355064868926945 ], [ -80.216087341308594, -4.356217861175537 ], [ -80.215957641601562, -4.356512069702148 ], [ -80.214530944824219, -4.359803199768066 ], [ -80.213859558105469, -4.360165119171143 ], [ -80.212928771972656, -4.360072135925293 ], [ -80.212036132812386, -4.359583854675293 ], [ -80.211616516113281, -4.359023094177246 ], [ -80.211532592773381, -4.358820915222168 ], [ -80.211128234863281, -4.357771873474121 ], [ -80.210723876953125, -4.35670804977417 ], [ -80.20989990234375, -4.35411882400507 ], [ -80.209510803222656, -4.352858066558838 ], [ -80.209030151367188, -4.352235794067326 ], [ -80.20855712890625, -4.351946830749512 ], [ -80.206893920898438, -4.350923061370736 ], [ -80.20672607421875, -4.3508620262146 ], [ -80.2061767578125, -4.350656986236459 ], [ -80.203956604003906, -4.350604057312012 ], [ -80.203742980956918, -4.350690841674805 ], [ -80.203269958496094, -4.35087776184082 ], [ -80.202445983886719, -4.351212978363037 ], [ -80.199958801269531, -4.352358818054142 ], [ -80.198921203613281, -4.352584838867131 ], [ -80.198226928710938, -4.352584838867131 ], [ -80.197235107421818, -4.35236120223999 ], [ -80.196586608886605, -4.351966857910156 ], [ -80.19635009765625, -4.351737022399902 ], [ -80.195976257324219, -4.351356029510498 ], [ -80.195709228515568, -4.350468158721924 ], [ -80.195869445800781, -4.348852157592773 ], [ -80.196136474609375, -4.347962856292611 ], [ -80.196540832519531, -4.347383975982609 ], [ -80.197059631347599, -4.34679985046381 ], [ -80.198455810546875, -4.346025943756104 ], [ -80.199752807617188, -4.345521926879883 ], [ -80.202056884765625, -4.344625949859562 ], [ -80.205032348632812, -4.343463897705078 ], [ -80.207458496093636, -4.341677188873234 ], [ -80.207672119140625, -4.341515064239445 ], [ -80.20794677734375, -4.340713024139404 ], [ -80.207763671875, -4.339927196502686 ], [ -80.207511901855469, -4.339247226715088 ], [ -80.206275939941406, -4.338481903076115 ], [ -80.205795288085938, -4.338315010070744 ], [ -80.20550537109375, -4.338216781616154 ], [ -80.205398559570312, -4.338222026824951 ], [ -80.203346252441349, -4.338326930999699 ], [ -80.2030029296875, -4.338343143463078 ], [ -80.197792053222599, -4.338716030120736 ], [ -80.196632385253906, -4.338682174682617 ], [ -80.19573974609375, -4.338656902313176 ], [ -80.192626953125, -4.338522911071721 ], [ -80.19097900390625, -4.338067054748535 ], [ -80.190361022949162, -4.337783813476506 ], [ -80.190261840820256, -4.3377428054809 ], [ -80.188957214355355, -4.336759090423584 ], [ -80.188362121581974, -4.336268901824894 ], [ -80.187881469726506, -4.335363864898625 ], [ -80.187324523925724, -4.334312915802002 ], [ -80.187164306640625, -4.333424091339054 ], [ -80.186935424804631, -4.332172870635929 ], [ -80.186935424804631, -4.331373214721623 ], [ -80.187332153320256, -4.33067083358759 ], [ -80.188003540038949, -4.328322887420654 ], [ -80.188156127929688, -4.326607227325439 ], [ -80.187469482421875, -4.324182033538762 ], [ -80.187164306640625, -4.323568820953312 ], [ -80.186836242675724, -4.322997093200627 ], [ -80.185577392578125, -4.320761203765869 ], [ -80.1851806640625, -4.319564819335938 ], [ -80.184928894042912, -4.318709850311222 ], [ -80.184738159179631, -4.318071842193604 ], [ -80.184059143066349, -4.314930915832463 ], [ -80.182914733886662, -4.312113761901799 ], [ -80.182510375976562, -4.311382770538273 ], [ -80.182083129882756, -4.310620784759521 ], [ -80.181747436523438, -4.310049057006836 ], [ -80.180961608886719, -4.308726787567139 ], [ -80.180488586425781, -4.307920932769719 ], [ -80.180366516113224, -4.307216167449951 ], [ -80.180358886718693, -4.306332111358586 ], [ -80.180992126464844, -4.304306030273438 ], [ -80.181114196777287, -4.303886890411377 ], [ -80.181816101074219, -4.302094936370736 ], [ -80.181694030761662, -4.301333904266357 ], [ -80.180931091308537, -4.299818038940316 ], [ -80.179725646972656, -4.299055099487191 ], [ -80.17903900146473, -4.298622131347543 ], [ -80.176979064941406, -4.297483921051025 ], [ -80.176445007324162, -4.296956062316895 ], [ -80.176231384277344, -4.296698093414307 ], [ -80.175971984863224, -4.296380996703988 ], [ -80.173004150390568, -4.291567802429199 ], [ -80.172279357910156, -4.291212081909123 ], [ -80.172058105468693, -4.291104793548527 ], [ -80.171127319335824, -4.290876865386963 ], [ -80.168769836425781, -4.291395187377873 ], [ -80.167884826660043, -4.291768074035588 ], [ -80.167510986328125, -4.292091846466064 ], [ -80.167304992675724, -4.292264938354435 ], [ -80.166770935058594, -4.293108940124512 ], [ -80.166358947753793, -4.293953895568791 ], [ -80.166191101074219, -4.294799804687443 ], [ -80.166717529296818, -4.297439098358097 ], [ -80.167297363281193, -4.300434112548714 ], [ -80.167236328125, -4.301520824432373 ], [ -80.166900634765568, -4.302772045135441 ], [ -80.166404724121094, -4.303302764892578 ], [ -80.165626525878906, -4.303757190704289 ], [ -80.160636901855355, -4.305147171020451 ], [ -80.158607482910099, -4.306502819061222 ], [ -80.157890319824219, -4.307170867919865 ], [ -80.157058715820312, -4.307453155517578 ], [ -80.156356811523438, -4.307476043701115 ], [ -80.155670166015568, -4.30731201171875 ], [ -80.154083251953125, -4.305065155029297 ], [ -80.153877258300781, -4.304626941680851 ], [ -80.152999877929631, -4.302691936492863 ], [ -80.152503967285099, -4.301414012908936 ], [ -80.152252197265625, -4.300764083862248 ], [ -80.151741027831974, -4.300006866455078 ], [ -80.150581359863281, -4.299049854278564 ], [ -80.14959716796875, -4.298411846160832 ], [ -80.149017333984375, -4.297650814056396 ], [ -80.1485595703125, -4.296778202056771 ], [ -80.147476196288949, -4.294342041015625 ], [ -80.144218444824162, -4.290068149566594 ], [ -80.142570495605469, -4.287950992584229 ], [ -80.14215087890625, -4.287426948547363 ], [ -80.141654968261605, -4.287051200866642 ], [ -80.141387939453125, -4.286855220794678 ], [ -80.14089202880848, -4.286612987518311 ], [ -80.140220642089787, -4.286330223083496 ], [ -80.139144897460881, -4.286149978637638 ], [ -80.137794494628906, -4.28598594665516 ], [ -80.137619018554631, -4.285963058471623 ], [ -80.1368408203125, -4.286032199859619 ], [ -80.13623046875, -4.286142826080322 ], [ -80.135597229003906, -4.286421775817871 ], [ -80.134605407714844, -4.287881851196232 ], [ -80.134254455566406, -4.288602828979492 ], [ -80.134262084960938, -4.289021968841496 ], [ -80.134254455566406, -4.289330005645752 ], [ -80.13433837890625, -4.289803981781006 ], [ -80.134422302246094, -4.290249824523869 ], [ -80.136138916015625, -4.293086051940918 ], [ -80.136268615722656, -4.293292999267578 ], [ -80.137603759765625, -4.29471302032465 ], [ -80.138168334960938, -4.295314788818359 ], [ -80.138282775878849, -4.296116828918457 ], [ -80.137969970703125, -4.296485900878906 ], [ -80.1376953125, -4.296816825866699 ], [ -80.136886596679574, -4.297579765319824 ], [ -80.136772155761662, -4.297588825225716 ], [ -80.133941650390625, -4.297814846038818 ], [ -80.133132934570256, -4.297715187072754 ], [ -80.130577087402287, -4.296895980834961 ], [ -80.127967834472656, -4.296004772186222 ], [ -80.124557495117131, -4.295388221740666 ], [ -80.123626708984318, -4.295407772064152 ], [ -80.122741699218693, -4.295923233032227 ], [ -80.121414184570256, -4.296687126159611 ], [ -80.121299743652344, -4.296710014343262 ], [ -80.1197509765625, -4.297035217285156 ], [ -80.119003295898438, -4.297064781188908 ], [ -80.118278503417912, -4.296965122222787 ], [ -80.117324829101506, -4.296827793121338 ], [ -80.11651611328125, -4.296978950500488 ], [ -80.1123046875, -4.299713134765625 ], [ -80.110755920410043, -4.299900054931641 ], [ -80.109786987304631, -4.299870967864933 ], [ -80.108970642089844, -4.299609184265137 ], [ -80.108665466308594, -4.299458026885929 ], [ -80.108207702636719, -4.29923486709589 ], [ -80.107833862304688, -4.298435211181527 ], [ -80.107765197753849, -4.298279762268066 ], [ -80.107650756835938, -4.296058177947998 ], [ -80.107749938964844, -4.295041084289551 ], [ -80.107894897460824, -4.294106960296631 ], [ -80.10791015625, -4.294006824493408 ], [ -80.107978820800724, -4.293528079986515 ], [ -80.107887268066349, -4.293101787567139 ], [ -80.107780456542912, -4.292595863342285 ], [ -80.107307434081974, -4.292027950286865 ], [ -80.106040954589844, -4.291594982147217 ], [ -80.105873107910099, -4.2915358543396 ], [ -80.105125427246037, -4.291576862335091 ], [ -80.103469848632812, -4.29168176651001 ], [ -80.103317260742074, -4.291695117950439 ], [ -80.102394104003906, -4.291839122772103 ], [ -80.101036071777344, -4.292463779449406 ], [ -80.100418090820312, -4.292922019958496 ], [ -80.099380493164006, -4.293797016143799 ], [ -80.098968505859375, -4.294143199920654 ], [ -80.097625732421875, -4.294485092163086 ], [ -80.097434997558594, -4.294532775878906 ], [ -80.096389770507812, -4.295938968658447 ], [ -80.095405578613168, -4.297411918640137 ], [ -80.09511566162098, -4.297623157501221 ], [ -80.0948486328125, -4.297814846038818 ], [ -80.094123840332031, -4.298327922820931 ], [ -80.093559265136662, -4.298592090606689 ], [ -80.093391418456974, -4.298672199249268 ], [ -80.092987060546818, -4.299102783203011 ], [ -80.092842102050781, -4.299254894256535 ], [ -80.091728210449219, -4.299837112426758 ], [ -80.091537475585938, -4.299934864044133 ], [ -80.090766906738281, -4.300340175628605 ], [ -80.089172363281193, -4.300779819488412 ], [ -80.086380004882812, -4.300908088684025 ], [ -80.083999633789062, -4.301404953002873 ], [ -80.081619262695312, -4.302298069000187 ], [ -80.078193664550781, -4.304076194763184 ], [ -80.076057434082031, -4.305501937866154 ], [ -80.0740966796875, -4.306976795196533 ], [ -80.073814392089787, -4.307188987731934 ], [ -80.072616577148438, -4.308088779449406 ], [ -80.07159423828125, -4.308599948882943 ], [ -80.071121215820312, -4.308633804321289 ], [ -80.070281982421875, -4.308700084686222 ], [ -80.068984985351449, -4.308797836303711 ], [ -80.065345764160099, -4.308932781219482 ], [ -80.064849853515568, -4.309114933013916 ], [ -80.063194274902344, -4.309726238250732 ], [ -80.061653137207031, -4.310465812683105 ], [ -80.060440063476562, -4.311620235443058 ], [ -80.060234069824219, -4.311909198760986 ], [ -80.059906005859318, -4.312374114990234 ], [ -80.059379577636719, -4.313302040100041 ], [ -80.059303283691406, -4.313508987426758 ], [ -80.059089660644531, -4.314113140106201 ], [ -80.058967590331974, -4.31468677520752 ], [ -80.058883666992188, -4.315053939819279 ], [ -80.058631896972656, -4.316229820251408 ], [ -80.058189392089787, -4.318308830261174 ], [ -80.057975769042969, -4.318758010864201 ], [ -80.057785034179688, -4.319174766540471 ], [ -80.057205200195312, -4.319808959960938 ], [ -80.056472778320256, -4.320444107055664 ], [ -80.05633544921875, -4.320562839508057 ], [ -80.05511474609375, -4.321368217468205 ], [ -80.054298400878793, -4.32263708114624 ], [ -80.054252624511719, -4.323042869567871 ], [ -80.054115295410156, -4.324268817901554 ], [ -80.054008483886662, -4.325260162353516 ], [ -80.0538330078125, -4.328220844268799 ], [ -80.053794860839787, -4.328345775604191 ], [ -80.053237915039006, -4.328957080841008 ], [ -80.052825927734375, -4.329309940338135 ], [ -80.052436828613281, -4.329648017883301 ], [ -80.052024841308594, -4.330008029937744 ], [ -80.051216125488224, -4.330588817596436 ], [ -80.050346374511719, -4.330985069274902 ], [ -80.049415588378849, -4.331273078918457 ], [ -80.048294067382699, -4.331461906433105 ], [ -80.0469970703125, -4.331680774688721 ], [ -80.046684265136719, -4.331733226776123 ], [ -80.046180725097599, -4.331820011138916 ], [ -80.044029235839844, -4.333551883697453 ], [ -80.042579650878906, -4.334352016448975 ], [ -80.041824340820312, -4.33457708358759 ], [ -80.040557861328068, -4.335456848144531 ], [ -80.04022216796875, -4.335751056671143 ], [ -80.040008544921875, -4.335943222045842 ], [ -80.039932250976562, -4.336019992828369 ], [ -80.039321899414006, -4.336589813232422 ], [ -80.039093017578125, -4.3381028175354 ], [ -80.039093017578125, -4.338418006896859 ], [ -80.039031982421818, -4.341712951660099 ], [ -80.038284301757812, -4.343275070190373 ], [ -80.037643432617188, -4.34407901763916 ], [ -80.037124633789006, -4.344540119171143 ], [ -80.036483764648438, -4.345004081726074 ], [ -80.035034179687386, -4.345689773559457 ], [ -80.035095214843693, -4.34638595581049 ], [ -80.0352783203125, -4.34708118438715 ], [ -80.035331726074219, -4.347775936126595 ], [ -80.034927368164006, -4.348473072052002 ], [ -80.034408569335938, -4.348934173583984 ], [ -80.033592224121037, -4.349387168884277 ], [ -80.033020019531193, -4.349309921264535 ], [ -80.03102874755848, -4.349036216735783 ], [ -80.029350280761719, -4.34858322143549 ], [ -80.028579711914062, -4.348676204681396 ], [ -80.027763366699162, -4.349141120910645 ], [ -80.027244567871094, -4.349600791931096 ], [ -80.024490356445312, -4.352666854858398 ], [ -80.024322509765568, -4.352798938751164 ], [ -80.022827148437386, -4.35370397567749 ], [ -80.022178649902344, -4.353939056396371 ], [ -80.021308898925781, -4.354258060455265 ], [ -80.020156860351449, -4.354674816131535 ], [ -80.017425537109375, -4.355586051940918 ], [ -80.014190673828125, -4.35663890838623 ], [ -80.013931274414006, -4.356728076934814 ], [ -80.013114929199219, -4.357247829437256 ], [ -80.012702941894474, -4.357941150665226 ], [ -80.012825012207031, -4.359809875488281 ], [ -80.012435913085824, -4.360315799713135 ], [ -80.012252807617188, -4.360564231872502 ], [ -80.010231018066349, -4.361861228942871 ], [ -80.010169982910156, -4.362016201019287 ], [ -80.009895324707031, -4.362686157226506 ], [ -80.009346008300724, -4.365046977996769 ], [ -80.009239196777344, -4.365871906280518 ], [ -80.008712768554574, -4.36643123626709 ], [ -80.008148193359375, -4.366868019104004 ], [ -80.007408142089844, -4.367521762847844 ], [ -80.004707336425668, -4.370271205902043 ], [ -80.002647399902344, -4.372361183166447 ], [ -80.001739501953068, -4.372947216033936 ], [ -80.001091003417969, -4.373365879058838 ], [ -79.999420166015625, -4.374515056610051 ], [ -79.999114990234375, -4.374720096588135 ], [ -79.995536804199162, -4.375701904296875 ], [ -79.993644714355412, -4.377306938171387 ], [ -79.992279052734318, -4.379594802856445 ], [ -79.990493774414006, -4.381372928619385 ], [ -79.9898681640625, -4.381840229034424 ], [ -79.989120483398438, -4.382199764251595 ], [ -79.988426208496094, -4.382214069366455 ], [ -79.986000061035099, -4.381730079650879 ], [ -79.9844970703125, -4.381234169006234 ], [ -79.98211669921875, -4.380338191986084 ], [ -79.980216979980469, -4.380074024200383 ], [ -79.978660583496037, -4.380262851715088 ], [ -79.977905273437443, -4.380502223968506 ], [ -79.976531982421875, -4.381577968597412 ], [ -79.973892211914006, -4.383727073669377 ], [ -79.972640991210881, -4.38491678237915 ], [ -79.972358703613224, -4.3852858543396 ], [ -79.971267700195312, -4.386672019958496 ], [ -79.970985412597656, -4.387032032012883 ], [ -79.969505310058537, -4.388909816741943 ], [ -79.969390869140568, -4.389064788818359 ], [ -79.968414306640625, -4.38944482803339 ], [ -79.966575622558594, -4.39016580581665 ], [ -79.965995788574219, -4.390645980834961 ], [ -79.965652465820312, -4.391081809997502 ], [ -79.965484619140568, -4.391294002532959 ], [ -79.965087890625, -4.391941070556641 ], [ -79.964805603027344, -4.392586231231689 ], [ -79.963775634765568, -4.393777847290039 ], [ -79.961662292480469, -4.395557880401611 ], [ -79.961196899414006, -4.395744800567627 ], [ -79.960174560546761, -4.396156787872314 ], [ -79.959259033203125, -4.39634895324707 ], [ -79.958396911621094, -4.39641284942627 ], [ -79.957656860351562, -4.396218776702767 ], [ -79.955833435058594, -4.394755840301514 ], [ -79.952529907226506, -4.391303062438965 ], [ -79.951789855957031, -4.391110897064209 ], [ -79.951118469238281, -4.391218185424805 ], [ -79.949951171874943, -4.392433166503849 ], [ -79.949485778808537, -4.393247127532902 ], [ -79.949317932128906, -4.393669128417912 ], [ -79.949134826660156, -4.394126892089844 ], [ -79.948532104492131, -4.394820213317814 ], [ -79.947334289550781, -4.39584493637085 ], [ -79.946731567382812, -4.396300792694092 ], [ -79.945236206054688, -4.396725177764893 ], [ -79.94378662109375, -4.396985054016113 ], [ -79.942939758300781, -4.396962165832463 ], [ -79.941741943359318, -4.396903038024846 ], [ -79.939384460449105, -4.396783828735295 ], [ -79.937606811523438, -4.396695137023926 ], [ -79.936241149902344, -4.396626949310303 ], [ -79.934379577636719, -4.395583152770939 ], [ -79.934173583984375, -4.395466804504395 ], [ -79.932266235351562, -4.393958091735783 ], [ -79.931770324707031, -4.393906116485482 ], [ -79.930809020996094, -4.393803119659367 ], [ -79.930076599121094, -4.393962860107365 ], [ -79.929107666015625, -4.393736839294434 ], [ -79.928665161132812, -4.393633842468262 ], [ -79.927345275878849, -4.392960071563721 ], [ -79.925338745117131, -4.391321182250977 ], [ -79.924751281738281, -4.390754222869873 ], [ -79.923568725585938, -4.389616012573185 ], [ -79.921096801757812, -4.38723182678217 ], [ -79.920463562011719, -4.386620998382568 ], [ -79.919837951660156, -4.386248111724854 ], [ -79.919097900390625, -4.385999202728215 ], [ -79.918312072753906, -4.386102199554387 ], [ -79.916915893554688, -4.386537075042725 ], [ -79.916549682617188, -4.386733055114746 ], [ -79.916252136230469, -4.386889934539738 ], [ -79.914680480956974, -4.387724876403809 ], [ -79.914291381835881, -4.388016223907471 ], [ -79.913505554199162, -4.388613224029427 ], [ -79.912124633789062, -4.389668941497803 ], [ -79.910423278808594, -4.39093112945551 ], [ -79.907730102539062, -4.392930030822697 ], [ -79.907608032226506, -4.392972946166935 ], [ -79.906784057617188, -4.393262863159123 ], [ -79.906105041503906, -4.39336109161377 ], [ -79.904922485351506, -4.393189907073975 ], [ -79.903831481933594, -4.393034934997559 ], [ -79.902320861816406, -4.39353609085083 ], [ -79.901481628417969, -4.393990039825383 ], [ -79.900650024414006, -4.394556999206543 ], [ -79.898925781249943, -4.395815849304199 ], [ -79.896514892578125, -4.396770000457764 ], [ -79.894676208496094, -4.398024082183781 ], [ -79.893005371093693, -4.399287223815861 ], [ -79.892112731933594, -4.399965763092041 ], [ -79.890907287597599, -4.400879859924203 ], [ -79.890579223632812, -4.401212215423584 ], [ -79.888885498046875, -4.4029221534729 ], [ -79.888626098632756, -4.40318584442133 ], [ -79.887344360351562, -4.404488086700383 ], [ -79.886894226074219, -4.405025005340519 ], [ -79.886238098144474, -4.405805110931396 ], [ -79.885963439941349, -4.4061598777771 ], [ -79.884132385253849, -4.408513069152832 ], [ -79.883644104003906, -4.409136772155762 ], [ -79.882858276367188, -4.409649848937931 ], [ -79.882049560546818, -4.409955024719238 ], [ -79.881881713867188, -4.410018920898438 ], [ -79.880783081054688, -4.410429000854435 ], [ -79.880332946777287, -4.410603046417236 ], [ -79.872535705566406, -4.411733150482121 ], [ -79.871017456054688, -4.412356853485051 ], [ -79.869003295898324, -4.413487911224365 ], [ -79.868827819824219, -4.41362190246582 ], [ -79.868171691894531, -4.414116859435978 ], [ -79.867019653320312, -4.415322780609131 ], [ -79.866363525390625, -4.41606616973877 ], [ -79.865943908691349, -4.416745185852051 ], [ -79.865509033203125, -4.417453765869141 ], [ -79.863616943359375, -4.420533180236816 ], [ -79.863502502441406, -4.420716762542668 ], [ -79.863418579101562, -4.420992851257324 ], [ -79.86322021484375, -4.421624183654785 ], [ -79.862724304199219, -4.423211097717285 ], [ -79.862586975097599, -4.42364597320551 ], [ -79.861717224121094, -4.424962997436523 ], [ -79.861160278320256, -4.425646781921387 ], [ -79.8607177734375, -4.426198959350586 ], [ -79.859779357910156, -4.427169799804631 ], [ -79.859046936035156, -4.42793083190918 ], [ -79.858154296875, -4.429234027862549 ], [ -79.858001708984318, -4.429546833038273 ], [ -79.857818603515568, -4.429913997650146 ], [ -79.856719970703125, -4.432219982147103 ], [ -79.8555908203125, -4.434597015380803 ], [ -79.855209350585938, -4.435400009155217 ], [ -79.855361938476506, -4.4371337890625 ], [ -79.855491638183594, -4.438351154327393 ], [ -79.856109619140568, -4.440701007842961 ], [ -79.857620239257756, -4.445696830749512 ], [ -79.857559204101449, -4.446462154388371 ], [ -79.857543945312443, -4.446640014648438 ], [ -79.857360839843693, -4.447362899780273 ], [ -79.856712341308594, -4.448523044586182 ], [ -79.855232238769531, -4.450310230255127 ], [ -79.854888916015511, -4.450698852539006 ], [ -79.854446411132812, -4.451075077056828 ], [ -79.853599548339844, -4.451796054840088 ], [ -79.852943420410156, -4.452322006225586 ], [ -79.852272033691406, -4.452865123748779 ], [ -79.851623535156193, -4.453380107879582 ], [ -79.851478576660156, -4.453535079955998 ], [ -79.850250244140625, -4.454829216003418 ], [ -79.8477783203125, -4.45779895782465 ], [ -79.846061706542969, -4.459984779357853 ], [ -79.842773437499943, -4.463757038116455 ], [ -79.841262817382812, -4.4654860496521 ], [ -79.840347290039062, -4.466409206390267 ], [ -79.838661193847599, -4.468101024627686 ], [ -79.837638854980469, -4.469130992889404 ], [ -79.837326049804631, -4.469419956207275 ], [ -79.836494445800781, -4.469686985015869 ], [ -79.835365295410156, -4.470054149627629 ], [ -79.83526611328125, -4.470086097717228 ], [ -79.833992004394474, -4.470499992370605 ], [ -79.832435607910156, -4.471942901611328 ], [ -79.827247619628906, -4.476772785186711 ], [ -79.826995849609375, -4.47696399688715 ], [ -79.826446533203068, -4.477389812469426 ], [ -79.822639465331974, -4.48035812377924 ], [ -79.820732116699162, -4.48186016082758 ], [ -79.819213867187443, -4.483397960662785 ], [ -79.819122314453068, -4.483498096466064 ], [ -79.818641662597599, -4.48410177230835 ], [ -79.817131042480469, -4.486002922058105 ], [ -79.816566467285156, -4.486725807189941 ], [ -79.816329956054631, -4.487029075622502 ], [ -79.81524658203125, -4.488671779632568 ], [ -79.815116882324162, -4.488859176635742 ], [ -79.814918518066349, -4.488915920257455 ], [ -79.814384460449219, -4.489061832427979 ], [ -79.812713623046818, -4.489152908325195 ], [ -79.810279846191406, -4.488693237304688 ], [ -79.803916931152344, -4.488760948181039 ], [ -79.802581787109375, -4.488730907440186 ], [ -79.802246093749886, -4.488687992095947 ], [ -79.801948547363224, -4.488654136657658 ], [ -79.801116943359375, -4.48854923248291 ], [ -79.799468994140568, -4.488344192504826 ], [ -79.798233032226506, -4.488719940185547 ], [ -79.798072814941406, -4.488852024078369 ], [ -79.796188354492188, -4.490419864654541 ], [ -79.796096801757812, -4.490618228912354 ], [ -79.795982360839844, -4.49090576171875 ], [ -79.795356750488224, -4.492056846618652 ], [ -79.793243408203125, -4.492053985595703 ], [ -79.791374206542855, -4.491643905639648 ], [ -79.78900146484375, -4.490973949432373 ], [ -79.788032531738224, -4.490664005279541 ], [ -79.781501770019531, -4.488288879394474 ], [ -79.779197692871094, -4.487665176391545 ], [ -79.775955200195312, -4.487112998962346 ], [ -79.772911071777344, -4.486959934234619 ], [ -79.770210266113281, -4.486967086791992 ], [ -79.765045166015568, -4.487036228179932 ], [ -79.761672973632812, -4.486611843109074 ], [ -79.76019287109375, -4.48596715927124 ], [ -79.759582519531193, -4.485528945922852 ], [ -79.756210327148438, -4.482961177825928 ], [ -79.754653930664006, -4.482463836669865 ], [ -79.753715515136719, -4.482164859771672 ], [ -79.752891540527344, -4.482079029083252 ], [ -79.751419067382812, -4.48200607299799 ], [ -79.749771118164006, -4.482103824615479 ], [ -79.749061584472656, -4.481781959533691 ], [ -79.748611450195312, -4.481529235839787 ], [ -79.748283386230469, -4.481347084045353 ], [ -79.747520446777344, -4.481313228607178 ], [ -79.747245788574219, -4.481360912322998 ], [ -79.745880126953068, -4.481585979461613 ], [ -79.745246887207031, -4.481116771697941 ], [ -79.744247436523381, -4.480041027069092 ], [ -79.743270874023438, -4.478807926177922 ], [ -79.743103027343693, -4.478727817535344 ], [ -79.741897583007812, -4.478165149688721 ], [ -79.741500854492188, -4.478151798248234 ], [ -79.741073608398438, -4.478136062622013 ], [ -79.740608215331974, -4.477962017059269 ], [ -79.738525390624943, -4.477182865142765 ], [ -79.736259460449219, -4.476160049438477 ], [ -79.734642028808594, -4.475480079650879 ], [ -79.73321533203125, -4.474881172180119 ], [ -79.731033325195312, -4.473962783813477 ], [ -79.729652404785099, -4.473200798034611 ], [ -79.727439880371094, -4.471591949462834 ], [ -79.724555969238281, -4.469351768493652 ], [ -79.723854064941293, -4.46902418136591 ], [ -79.723083496093693, -4.468811988830566 ], [ -79.722373962402344, -4.468839168548584 ], [ -79.721328735351562, -4.469334125518742 ], [ -79.721031188964844, -4.469474792480469 ], [ -79.719848632812386, -4.469404220581055 ], [ -79.719139099121094, -4.469188213348332 ], [ -79.718505859374943, -4.468983173370361 ], [ -79.717552185058537, -4.468667984008789 ], [ -79.716888427734318, -4.468449115753117 ], [ -79.715248107910099, -4.469281196594238 ], [ -79.714546203613281, -4.469716072082463 ], [ -79.713447570800724, -4.470823764801025 ], [ -79.712760925292912, -4.470836162567082 ], [ -79.711021423339844, -4.470853805541992 ], [ -79.709648132324219, -4.470967769622746 ], [ -79.7081298828125, -4.47109317779541 ], [ -79.70550537109375, -4.471035957336369 ], [ -79.704887390136719, -4.470763206481934 ], [ -79.702552795410099, -4.468451976776066 ], [ -79.699653625488281, -4.464753150939885 ], [ -79.697731018066406, -4.463640213012638 ], [ -79.696434020996094, -4.463212013244629 ], [ -79.694114685058594, -4.462407112121582 ], [ -79.690040588378906, -4.460431098937988 ], [ -79.689247131347656, -4.459877014160099 ], [ -79.688796997070312, -4.459362030029297 ], [ -79.687812805175781, -4.457074165344238 ], [ -79.686782836914062, -4.454193115234375 ], [ -79.685867309570256, -4.452824115753117 ], [ -79.685409545898381, -4.45231819152832 ], [ -79.684913635253849, -4.451808929443359 ], [ -79.684700012207031, -4.45158576965332 ], [ -79.684616088867188, -4.4515061378479 ], [ -79.684432983398381, -4.451312065124512 ], [ -79.683143615722656, -4.449993133544922 ], [ -79.682571411132812, -4.449610233306885 ], [ -79.681785583496037, -4.449224948883057 ], [ -79.680709838867188, -4.449065208435002 ], [ -79.679267883300781, -4.448845863342228 ], [ -79.678955078125, -4.448799133300724 ], [ -79.67742919921875, -4.44857120513916 ], [ -79.67694091796875, -4.448655128478947 ], [ -79.676589965820312, -4.44871711730957 ], [ -79.675178527832031, -4.448530197143555 ], [ -79.67437744140625, -4.448272228240967 ], [ -79.673843383789062, -4.447882175445557 ], [ -79.673530578613281, -4.44766092300415 ], [ -79.671524047851562, -4.445869922637883 ], [ -79.670753479003906, -4.445181846618652 ], [ -79.670455932617188, -4.444919109344482 ], [ -79.669555664062443, -4.444546222686654 ], [ -79.667411804199219, -4.444162845611572 ], [ -79.664619445800724, -4.441536903381348 ], [ -79.663993835449219, -4.44127082824707 ], [ -79.66314697265625, -4.441182136535645 ], [ -79.662513732910099, -4.441252231597844 ], [ -79.661491394042969, -4.441361904144287 ], [ -79.6610107421875, -4.441085815429631 ], [ -79.660896301269474, -4.441012859344482 ], [ -79.660705566406193, -4.440892219543457 ], [ -79.659637451171818, -4.440215110778752 ], [ -79.659011840820312, -4.439663887023869 ], [ -79.657417297363281, -4.438038825988713 ], [ -79.655487060546875, -4.436771869659424 ], [ -79.654159545898438, -4.436179161071721 ], [ -79.653335571289062, -4.435811996459961 ], [ -79.652542114257812, -4.435728073120117 ], [ -79.651573181152344, -4.43597221374506 ], [ -79.651130676269531, -4.436086177825928 ], [ -79.649436950683537, -4.436737060546875 ], [ -79.647911071777287, -4.436972141265869 ], [ -79.64717864990223, -4.436892032623291 ], [ -79.644569396972599, -4.435090065002385 ], [ -79.643829345703068, -4.434946060180607 ], [ -79.642753601074219, -4.435035228729248 ], [ -79.642616271972656, -4.435084819793701 ], [ -79.642478942871037, -4.435132980346623 ], [ -79.641998291015568, -4.435304164886418 ], [ -79.641342163085881, -4.435776233673096 ], [ -79.641090393066406, -4.436325073242131 ], [ -79.640701293945312, -4.437140941619873 ], [ -79.640548706054688, -4.4375901222229 ], [ -79.640174865722656, -4.438667774200439 ], [ -79.639724731445256, -4.439288139343262 ], [ -79.639114379882812, -4.439624786376953 ], [ -79.636161804199219, -4.439773082733154 ], [ -79.634605407714844, -4.439692974090576 ], [ -79.632949829101506, -4.439605236053467 ], [ -79.631645202636719, -4.439926147460881 ], [ -79.629722595214787, -4.440402030944767 ], [ -79.625572204589844, -4.442768096923828 ], [ -79.618576049804688, -4.44709587097168 ], [ -79.617469787597656, -4.448295116424561 ], [ -79.616462707519474, -4.450470924377328 ], [ -79.615921020507812, -4.451141834259033 ], [ -79.615814208984375, -4.451271057128849 ], [ -79.615028381347599, -4.451605796813965 ], [ -79.613601684570256, -4.451760768890381 ], [ -79.613121032714787, -4.451799869537354 ], [ -79.612991333007812, -4.451814174652043 ], [ -79.611297607421818, -4.451992034912109 ], [ -79.610885620117188, -4.45252513885498 ], [ -79.610542297363224, -4.453910827636719 ], [ -79.610382080078125, -4.455134868621826 ], [ -79.610275268554688, -4.455986976623478 ], [ -79.609169006347656, -4.456757068634033 ], [ -79.608322143554688, -4.457349777221623 ], [ -79.607620239257812, -4.457490921020508 ], [ -79.607078552246094, -4.457602977752686 ], [ -79.606124877929688, -4.457797050476074 ], [ -79.605941772460938, -4.457835197448674 ], [ -79.605705261230469, -4.457767009735051 ], [ -79.604866027832031, -4.457533836364746 ], [ -79.604614257812443, -4.457464218139648 ], [ -79.603157043457031, -4.456921100616398 ], [ -79.602989196777287, -4.456916809081974 ], [ -79.60247802734375, -4.45690822601307 ], [ -79.601799011230469, -4.457180976867676 ], [ -79.601188659667912, -4.457757949829102 ], [ -79.600975036621094, -4.459434986114502 ], [ -79.600700378417912, -4.461108207702637 ], [ -79.600090026855469, -4.461685180664006 ], [ -79.599761962890568, -4.461919784545842 ], [ -79.599533081054688, -4.462079048156681 ], [ -79.597785949707031, -4.462454795837402 ], [ -79.597038269042969, -4.462615013122502 ], [ -79.596878051757812, -4.463193893432617 ], [ -79.596832275390625, -4.463368892669678 ], [ -79.597084045410099, -4.464443206787053 ], [ -79.597183227539006, -4.464885234832764 ], [ -79.597442626953125, -4.465575218200627 ], [ -79.598342895507756, -4.466723918914738 ], [ -79.598457336425781, -4.466867923736572 ], [ -79.599288940429631, -4.467677116393986 ], [ -79.599021911621094, -4.468371868133545 ], [ -79.598640441894531, -4.468945980072021 ], [ -79.598030090331974, -4.469223976135197 ], [ -79.596641540527344, -4.468811988830566 ], [ -79.596412658691349, -4.468678951263371 ], [ -79.59600830078125, -4.468451976776066 ], [ -79.59521484375, -4.468677043914795 ], [ -79.594627380371037, -4.468874931335449 ], [ -79.593078613281193, -4.469397068023682 ], [ -79.592514038085881, -4.469796180725041 ], [ -79.592201232910156, -4.470545768737679 ], [ -79.592239379882756, -4.471532821655273 ], [ -79.592506408691349, -4.472515106201172 ], [ -79.593086242675724, -4.474312782287484 ], [ -79.593116760253906, -4.475122928619385 ], [ -79.592979431152287, -4.47598218917841 ], [ -79.591567993164006, -4.47799015045166 ], [ -79.590110778808594, -4.479994773864746 ], [ -79.589958190917855, -4.4807448387146 ], [ -79.589920043945312, -4.481429100036621 ], [ -79.589546203613224, -4.482056140899658 ], [ -79.58905029296875, -4.48257303237915 ], [ -79.588157653808594, -4.483086109161377 ], [ -79.587158203124943, -4.483543872833195 ], [ -79.583518981933594, -4.48486423492426 ], [ -79.582603454589787, -4.486133098602295 ], [ -79.581962585449219, -4.487473011016846 ], [ -79.581832885742131, -4.48795223236084 ], [ -79.581748962402287, -4.488264083862305 ], [ -79.581680297851562, -4.489296913146973 ], [ -79.581848144531193, -4.490138053894043 ], [ -79.582031249999943, -4.490490913391056 ], [ -79.582168579101562, -4.490753173828068 ], [ -79.582443237304688, -4.491285800933838 ], [ -79.58294677734375, -4.492246150970402 ], [ -79.582572937011719, -4.494032859802246 ], [ -79.582008361816349, -4.496655941009521 ], [ -79.581329345703125, -4.498085021972656 ], [ -79.580848693847656, -4.498738765716439 ], [ -79.578788757324162, -4.500852108001709 ], [ -79.576629638671875, -4.503554821014291 ], [ -79.573539733886662, -4.505459785461426 ], [ -79.57275390625, -4.505249977111816 ], [ -79.572067260742188, -4.504748821258545 ], [ -79.571968078613281, -4.504677772521973 ], [ -79.571533203124943, -4.504162788391 ], [ -79.570808410644531, -4.504080772399846 ], [ -79.570678710937443, -4.504065036773682 ], [ -79.569335937499943, -4.50463676452631 ], [ -79.568801879882812, -4.505187034606934 ], [ -79.568321228027344, -4.505847930908146 ], [ -79.56817626953125, -4.506556034088078 ], [ -79.568519592285156, -4.50995922088623 ], [ -79.568382263183537, -4.510719776153508 ], [ -79.568138122558594, -4.511434078216553 ], [ -79.567329406738224, -4.511288166046086 ], [ -79.566291809081974, -4.510538101196289 ], [ -79.566093444824162, -4.510392189025879 ], [ -79.565544128417855, -4.509646892547551 ], [ -79.565223693847599, -4.508838176727295 ], [ -79.564468383789006, -4.508972167968693 ], [ -79.564002990722599, -4.510085105895996 ], [ -79.563591003417969, -4.511085033416691 ], [ -79.563529968261662, -4.511240005493107 ], [ -79.563102722167969, -4.514010906219426 ], [ -79.562614440917969, -4.514789104461613 ], [ -79.562194824218693, -4.515063762664738 ], [ -79.561843872070312, -4.51528787612915 ], [ -79.561141967773381, -4.515604972839355 ], [ -79.560905456542969, -4.51559495925892 ], [ -79.560394287109261, -4.515580177307072 ], [ -79.559646606445312, -4.515140056610107 ], [ -79.558967590332031, -4.514570236205998 ], [ -79.558357238769474, -4.514016151428223 ], [ -79.556198120117074, -4.513923168182316 ], [ -79.555389404296875, -4.513887882232666 ], [ -79.554267883300724, -4.514210224151611 ], [ -79.553039550781193, -4.514563083648625 ], [ -79.55096435546875, -4.515511035919189 ], [ -79.550445556640568, -4.515748023986816 ], [ -79.547355651855469, -4.517903804778996 ], [ -79.546806335449219, -4.518574237823486 ], [ -79.545501708984318, -4.520957946777344 ], [ -79.544624328613224, -4.522857189178467 ], [ -79.544357299804631, -4.523835182189941 ], [ -79.543655395507812, -4.526334762573242 ], [ -79.543235778808594, -4.527173042297363 ], [ -79.542739868164006, -4.527750015258789 ], [ -79.541481018066349, -4.528175830841008 ], [ -79.541221618652287, -4.528132915496769 ], [ -79.538597106933594, -4.5276842117309 ], [ -79.537712097167969, -4.527772903442383 ], [ -79.536323547363281, -4.528310775756779 ], [ -79.535621643066406, -4.528735160827637 ], [ -79.534759521484375, -4.528501987457219 ], [ -79.534072875976449, -4.528369903564453 ], [ -79.5333251953125, -4.528147220611572 ], [ -79.531517028808594, -4.527936935424805 ], [ -79.531044006347656, -4.527884960174561 ], [ -79.530220031738281, -4.528035163879395 ], [ -79.529609680175781, -4.528306007385254 ], [ -79.527145385742188, -4.529983997344914 ], [ -79.52655029296875, -4.530155181884709 ], [ -79.526428222656193, -4.530192852020264 ], [ -79.524658203125, -4.528390884399357 ], [ -79.524093627929688, -4.527606964111328 ], [ -79.52349853515625, -4.527215003967228 ], [ -79.522148132324162, -4.527052879333496 ], [ -79.521965026855469, -4.527028083801213 ], [ -79.521728515625, -4.526662826538029 ], [ -79.521652221679631, -4.526542186737061 ], [ -79.520690917968693, -4.525061130523625 ], [ -79.520584106445312, -4.524871826171875 ], [ -79.519912719726562, -4.523656845092773 ], [ -79.519256591796818, -4.523200988769474 ], [ -79.517753601074162, -4.522681236267033 ], [ -79.517585754394531, -4.522652149200326 ], [ -79.517181396484318, -4.522579193115234 ], [ -79.517066955566349, -4.522561073303166 ], [ -79.515869140625, -4.521484851837101 ], [ -79.513809204101562, -4.51883411407465 ], [ -79.513343811035099, -4.518243789672852 ], [ -79.512481689453125, -4.517765045165959 ], [ -79.511657714843693, -4.518153190612793 ], [ -79.511444091796818, -4.518252849578857 ], [ -79.511131286621094, -4.518393993377686 ], [ -79.50958251953125, -4.519060134887638 ], [ -79.509223937988281, -4.519215106964054 ], [ -79.508979797363224, -4.519282817840519 ], [ -79.508232116699219, -4.519505977630558 ], [ -79.507476806640625, -4.519728183746281 ], [ -79.504325866699219, -4.520657062530518 ], [ -79.502822875976562, -4.520407199859562 ], [ -79.500701904296875, -4.520661830902043 ], [ -79.499732971191349, -4.520534038543701 ], [ -79.498542785644531, -4.520374774932861 ], [ -79.495223999023381, -4.521059036254826 ], [ -79.494750976562443, -4.521487236022949 ], [ -79.494010925292912, -4.52390718460083 ], [ -79.493011474609375, -4.524768829345703 ], [ -79.492279052734318, -4.525352001190186 ], [ -79.4920654296875, -4.52552318572998 ], [ -79.491691589355469, -4.525570869445801 ], [ -79.491477966308594, -4.525599002838135 ], [ -79.489707946777287, -4.525874137878418 ], [ -79.488800048828125, -4.526449203491211 ], [ -79.488174438476506, -4.527050018310547 ], [ -79.487800598144474, -4.527496814727726 ], [ -79.4871826171875, -4.528632164001465 ], [ -79.486984252929688, -4.52920389175415 ], [ -79.484100341796761, -4.53748703002924 ], [ -79.484001159667912, -4.539358139038029 ], [ -79.484046936035156, -4.542235851287842 ], [ -79.4837646484375, -4.54386377334589 ], [ -79.483291625976562, -4.545944213867188 ], [ -79.483192443847656, -4.548052787780705 ], [ -79.482872009277344, -4.552955150604134 ], [ -79.482330322265625, -4.554787158966008 ], [ -79.481437683105469, -4.557809829711914 ], [ -79.481010437011719, -4.558850765228271 ], [ -79.480033874511719, -4.561219215393066 ], [ -79.479446411132812, -4.562651157379094 ], [ -79.479217529296818, -4.563815116882211 ], [ -79.479095458984375, -4.565041065216064 ], [ -79.479034423828068, -4.567849159240666 ], [ -79.478691101074219, -4.569155216217041 ], [ -79.47833251953125, -4.569600105285645 ], [ -79.478248596191349, -4.570153236389103 ], [ -79.478385925292969, -4.570318222045898 ], [ -79.478607177734375, -4.570581912994385 ], [ -79.479133605956974, -4.570937156677189 ], [ -79.4793701171875, -4.571096897125244 ], [ -79.480133056640625, -4.571608066558781 ], [ -79.481071472167969, -4.572334766387883 ], [ -79.48138427734375, -4.572498798370304 ], [ -79.482765197753793, -4.573236942291203 ], [ -79.483200073242188, -4.573460102081242 ], [ -79.484283447265568, -4.57401704788208 ], [ -79.48748779296875, -4.575662136077881 ], [ -79.490501403808594, -4.576494216918945 ], [ -79.491004943847656, -4.576638221740666 ], [ -79.491592407226562, -4.576974868774414 ], [ -79.492340087890625, -4.577401161193791 ], [ -79.494316101074219, -4.579170227050724 ], [ -79.495697021484375, -4.581491947174072 ], [ -79.495735168456918, -4.582202911376953 ], [ -79.495460510253906, -4.583587169647217 ], [ -79.4951171875, -4.585114002227726 ], [ -79.494842529296818, -4.585779190063477 ], [ -79.494461059570256, -4.586203098297062 ], [ -79.493370056152344, -4.587369918823242 ], [ -79.493087768554688, -4.587985038757324 ], [ -79.492912292480469, -4.588534832000732 ], [ -79.491630554199162, -4.593400955200195 ], [ -79.4910888671875, -4.596352100372258 ], [ -79.490936279296818, -4.598434925079289 ], [ -79.49078369140625, -4.601247787475529 ], [ -79.490135192871094, -4.605109214782601 ], [ -79.490097045898381, -4.608808040618896 ], [ -79.490333557128906, -4.610834121704102 ], [ -79.489990234374943, -4.616436004638672 ], [ -79.489952087402344, -4.616700172424316 ], [ -79.489906311035099, -4.617157936096135 ], [ -79.489700317382756, -4.619009017944222 ], [ -79.489631652831918, -4.619607925415039 ], [ -79.489570617675781, -4.620125770568791 ], [ -79.489028930664006, -4.622634887695312 ], [ -79.489044189453068, -4.624121189117432 ], [ -79.489173889160156, -4.626484870910588 ], [ -79.488952636718693, -4.62703180313099 ], [ -79.488128662109375, -4.62812614440918 ], [ -79.485206604003906, -4.630576133728027 ], [ -79.483604431152287, -4.631647109985352 ], [ -79.483375549316406, -4.631906986236572 ], [ -79.481353759765625, -4.634259223937988 ], [ -79.481086730957031, -4.634571075439396 ], [ -79.480697631835938, -4.634799003601074 ], [ -79.480545043945256, -4.634884834289494 ], [ -79.479522705078011, -4.635347843170166 ], [ -79.479057312011719, -4.634994983672982 ], [ -79.478569030761605, -4.635532855987492 ], [ -79.477951049804688, -4.636463165283203 ], [ -79.477470397949219, -4.636782169342041 ], [ -79.476341247558537, -4.637012004852295 ], [ -79.475860595703125, -4.637331008911133 ], [ -79.474838256835881, -4.637965202331543 ], [ -79.472763061523438, -4.640361785888672 ], [ -79.47125244140625, -4.641538143157959 ], [ -79.471008300781193, -4.642033100128117 ], [ -79.470146179199162, -4.643511772155705 ], [ -79.467971801757756, -4.647642135620117 ], [ -79.467491149902287, -4.648131847381478 ], [ -79.466827392578068, -4.648612976074162 ], [ -79.465606689453125, -4.650259971618652 ], [ -79.464805603027287, -4.651963233947697 ], [ -79.464729309081974, -4.652581214904785 ], [ -79.464569091796875, -4.655095100402775 ], [ -79.464530944824162, -4.655546188354492 ], [ -79.464569091796875, -4.655745983123722 ], [ -79.464836120605355, -4.65750789642334 ], [ -79.465095520019474, -4.65880012512207 ], [ -79.464927673339787, -4.660159111022949 ], [ -79.464553833007812, -4.661241054534855 ], [ -79.463966369628849, -4.661342144012451 ], [ -79.463829040527344, -4.661599159240666 ], [ -79.463043212890625, -4.663043975830078 ], [ -79.462753295898438, -4.665565013885441 ], [ -79.462654113769531, -4.666385173797607 ], [ -79.461540222167969, -4.6684250831604 ], [ -79.461418151855469, -4.671256065368652 ], [ -79.461380004882756, -4.671886920928898 ], [ -79.461387634277287, -4.675841808319092 ], [ -79.460968017578125, -4.67622709274292 ], [ -79.460769653320312, -4.676775932312012 ], [ -79.45916748046875, -4.677910804748478 ], [ -79.458915710449162, -4.678408145904484 ], [ -79.4583740234375, -4.683080196380558 ], [ -79.458610534667912, -4.684055805206299 ], [ -79.458839416503906, -4.684988021850529 ], [ -79.458869934082031, -4.686101913452148 ], [ -79.458671569824219, -4.686610221862793 ], [ -79.458419799804631, -4.689107894897461 ], [ -79.458030700683537, -4.69041919708252 ], [ -79.457908630371094, -4.690828800201359 ], [ -79.457740783691406, -4.69266414642334 ], [ -79.457839965820256, -4.69645881652832 ], [ -79.457862854003849, -4.697508811950627 ], [ -79.457870483398381, -4.69791316986084 ], [ -79.457191467285099, -4.701247215270996 ], [ -79.457054138183594, -4.701513767242318 ], [ -79.456962585449219, -4.701686859130859 ], [ -79.456642150878906, -4.702301979064885 ], [ -79.456207275390625, -4.703015804290658 ], [ -79.455284118652287, -4.704028129577637 ], [ -79.454872131347656, -4.704487800598145 ], [ -79.454505920410099, -4.705310821533203 ], [ -79.453651428222599, -4.707213878631592 ], [ -79.453018188476562, -4.707968235015812 ], [ -79.451660156249943, -4.709581851959229 ], [ -79.451156616210938, -4.709991931915283 ], [ -79.450653076171875, -4.710400104522648 ], [ -79.450393676757812, -4.711566925048828 ], [ -79.449554443359318, -4.713442802429142 ], [ -79.448753356933594, -4.715225219726562 ], [ -79.448432922363168, -4.715813159942627 ], [ -79.447807312011719, -4.716938972473145 ], [ -79.447647094726506, -4.717230796813908 ], [ -79.447578430175781, -4.717353820800724 ], [ -79.447502136230469, -4.717496871948185 ], [ -79.445701599121094, -4.719592094421387 ], [ -79.444686889648381, -4.720633029937744 ], [ -79.444099426269531, -4.720962047576847 ], [ -79.44140625, -4.722624778747559 ], [ -79.440391540527287, -4.723258972167912 ], [ -79.43890380859375, -4.724411964416504 ], [ -79.433929443359318, -4.728866100311279 ], [ -79.43035888671875, -4.732624053955021 ], [ -79.428489685058537, -4.735628128051701 ], [ -79.428016662597599, -4.73830604553217 ], [ -79.428054809570312, -4.739261150360107 ], [ -79.428199768066349, -4.739761829376221 ], [ -79.428871154785099, -4.742006778717041 ], [ -79.429283142089844, -4.743368148803597 ], [ -79.429771423339844, -4.746699810028076 ], [ -79.430717468261719, -4.748660087585449 ], [ -79.432678222656193, -4.750346183776799 ], [ -79.432792663574105, -4.750692844390812 ], [ -79.433212280273438, -4.751948833465576 ], [ -79.433013916015625, -4.753498077392521 ], [ -79.431495666503906, -4.755856990814209 ], [ -79.430511474609375, -4.757504940032959 ], [ -79.429626464843693, -4.758997917175236 ], [ -79.429756164550781, -4.760419845580998 ], [ -79.430839538574219, -4.762316226959229 ], [ -79.432090759277287, -4.764224052429199 ], [ -79.434616088867188, -4.766765117645207 ], [ -79.436676025390568, -4.768674850463867 ], [ -79.43798828125, -4.770977020263558 ], [ -79.438491821289006, -4.773262977600041 ], [ -79.438613891601562, -4.77508020401001 ], [ -79.437919616699162, -4.77696704864502 ], [ -79.437088012695312, -4.777666091918888 ], [ -79.435050964355412, -4.77837085723877 ], [ -79.432357788085938, -4.779295921325684 ], [ -79.42779541015625, -4.780688762664738 ], [ -79.417808532714787, -4.784786224365178 ], [ -79.416213989257812, -4.786571025848332 ], [ -79.415611267089787, -4.788021087646428 ], [ -79.415420532226506, -4.789791107177734 ], [ -79.416694641113281, -4.801198959350586 ], [ -79.416374206542912, -4.80632209777832 ], [ -79.414276123046818, -4.816366195678711 ], [ -79.414314270019531, -4.818667888641357 ], [ -79.414558410644474, -4.821931838989201 ], [ -79.415596008300724, -4.823905944824105 ], [ -79.415885925292912, -4.825195789337158 ], [ -79.415237426757756, -4.826969146728516 ], [ -79.413658142089844, -4.829957008361816 ], [ -79.412406921386719, -4.831442832946777 ], [ -79.411178588867188, -4.831936836242619 ], [ -79.409721374511719, -4.831901073455754 ], [ -79.408035278320312, -4.831711769104004 ], [ -79.406196594238281, -4.830975055694466 ], [ -79.405212402343693, -4.830244064330998 ], [ -79.404685974121094, -4.829229831695557 ], [ -79.403953552246094, -4.827159881591797 ], [ -79.403465270996094, -4.824405193328857 ], [ -79.402641296386662, -4.823071002960205 ], [ -79.401123046874943, -4.822291851043701 ], [ -79.400817871093693, -4.822388172149601 ], [ -79.400413513183594, -4.82251501083374 ], [ -79.399810791015625, -4.822703838348389 ], [ -79.39935302734375, -4.822847843170166 ], [ -79.398101806640625, -4.823851108550969 ], [ -79.396522521972599, -4.826284885406494 ], [ -79.395484924316349, -4.828997135162297 ], [ -79.394828796386662, -4.83094406127924 ], [ -79.394050598144474, -4.831904888152962 ], [ -79.393348693847656, -4.832335948944092 ], [ -79.390602111816406, -4.833802223205566 ], [ -79.389213562011719, -4.834377765655461 ], [ -79.389099121093693, -4.834427833557129 ], [ -79.387763977050724, -4.834597110748291 ], [ -79.38531494140625, -4.834554195404053 ], [ -79.382530212402287, -4.834319114685059 ], [ -79.380455017089844, -4.833924770355168 ], [ -79.377723693847656, -4.83331823348999 ], [ -79.375534057617188, -4.832811832427922 ], [ -79.374809265136605, -4.832643985748177 ], [ -79.372291564941406, -4.832332134246826 ], [ -79.370346069335938, -4.83250188827509 ], [ -79.368293762206974, -4.833201885223389 ], [ -79.365585327148438, -4.834451198577881 ], [ -79.363166809081974, -4.83604907989502 ], [ -79.362236022949219, -4.836954116821289 ], [ -79.362014770507756, -4.837472915649357 ], [ -79.362098693847599, -4.838778972625732 ], [ -79.361564636230469, -4.839656829833984 ], [ -79.360977172851506, -4.8418288230896 ], [ -79.360794067382812, -4.842495918273869 ], [ -79.360183715820256, -4.842835903167725 ], [ -79.359161376953068, -4.844421863555795 ], [ -79.358909606933594, -4.845472812652588 ], [ -79.358840942382812, -4.84594011306757 ], [ -79.358772277831974, -4.846479892730713 ], [ -79.358695983886719, -4.847747802734261 ], [ -79.357963562011719, -4.849713802337646 ], [ -79.357643127441293, -4.853100776672306 ], [ -79.356636047363281, -4.855946063995304 ], [ -79.355209350585938, -4.858197212219238 ], [ -79.353828430175668, -4.859129905700684 ], [ -79.352851867675724, -4.86116886138916 ], [ -79.352111816406136, -4.863665103912354 ], [ -79.351081848144531, -4.865299224853516 ], [ -79.350639343261719, -4.866651058196965 ], [ -79.350608825683594, -4.867270946502629 ], [ -79.350601196289062, -4.869256019592285 ], [ -79.350761413574162, -4.87074422836298 ], [ -79.351058959960881, -4.871280193328801 ], [ -79.351043701171818, -4.872793197631836 ], [ -79.350318908691406, -4.874547958374023 ], [ -79.348648071289006, -4.876086235046387 ], [ -79.348129272460938, -4.87656307220459 ], [ -79.347640991210938, -4.876718044281006 ], [ -79.345672607421875, -4.877342224121094 ], [ -79.3450927734375, -4.877412796020508 ], [ -79.342269897460881, -4.878520011901799 ], [ -79.340965270996094, -4.878753185272217 ], [ -79.339912414550781, -4.87928390502924 ], [ -79.339134216308537, -4.879333972930908 ], [ -79.337799072265568, -4.87919282913208 ], [ -79.337242126464844, -4.879143238067627 ], [ -79.336723327636662, -4.87886905670166 ], [ -79.336585998535156, -4.878767013549748 ], [ -79.33624267578125, -4.878527164459229 ], [ -79.335510253906193, -4.878612041473332 ], [ -79.334259033203068, -4.878639221191349 ], [ -79.334144592285156, -4.878613948822021 ], [ -79.333663940429688, -4.87851095199585 ], [ -79.332771301269531, -4.878768920898438 ], [ -79.332473754882812, -4.878856182098389 ], [ -79.3311767578125, -4.879244804382324 ], [ -79.330741882324162, -4.879640102386475 ], [ -79.330497741699219, -4.882431030273381 ], [ -79.330223083496094, -4.882895946502629 ], [ -79.329261779785156, -4.884318828582764 ], [ -79.327667236328068, -4.886446952819824 ], [ -79.327079772949219, -4.886868953704777 ], [ -79.326026916503906, -4.887415885925293 ], [ -79.324104309082031, -4.887910842895451 ], [ -79.322036743164006, -4.889311790466309 ], [ -79.320381164550781, -4.890857219696045 ], [ -79.320022583007812, -4.891416072845459 ], [ -79.319427490234375, -4.892601013183594 ], [ -79.319290161132756, -4.893278121948185 ], [ -79.318824768066349, -4.893653869628906 ], [ -79.318122863769531, -4.894030094146672 ], [ -79.316902160644474, -4.893980026245117 ], [ -79.311225891113281, -4.893537998199463 ], [ -79.310531616210824, -4.893205165863037 ], [ -79.309318542480469, -4.892498016357422 ], [ -79.307670593261605, -4.89149093627924 ], [ -79.306877136230412, -4.891569137573129 ], [ -79.306243896484375, -4.891823768615666 ], [ -79.304756164550781, -4.893153190612793 ], [ -79.304061889648438, -4.894261837005615 ], [ -79.303642272949162, -4.896454811096191 ], [ -79.302612304687443, -4.89870023727417 ], [ -79.302146911621094, -4.899206161499023 ], [ -79.301170349121037, -4.901647090911808 ], [ -79.299758911132812, -4.903542995452824 ], [ -79.299217224121094, -4.904829025268555 ], [ -79.298942565917969, -4.906258106231689 ], [ -79.298927307128906, -4.907098770141545 ], [ -79.298828125, -4.910924911498967 ], [ -79.298469543457031, -4.914641857147217 ], [ -79.298095703125, -4.915918827056885 ], [ -79.297431945800724, -4.917194843292236 ], [ -79.295654296874886, -4.919873237609863 ], [ -79.294052124023438, -4.922243118286076 ], [ -79.292640686035156, -4.926270961761361 ], [ -79.292564392089844, -4.927045822143441 ], [ -79.292121887206974, -4.928078174591064 ], [ -79.291831970214787, -4.928771018981877 ], [ -79.290397644042912, -4.931406021118107 ], [ -79.289787292480469, -4.933028221130371 ], [ -79.289657592773438, -4.933374881744385 ], [ -79.289474487304688, -4.933844089508057 ], [ -79.289230346679631, -4.93480110168457 ], [ -79.285308837890625, -4.940130233764648 ], [ -79.284263610839844, -4.940804958343506 ], [ -79.283607482910099, -4.941971778869572 ], [ -79.281013488769531, -4.944348812103271 ], [ -79.278747558593693, -4.948019981384221 ], [ -79.277389526367188, -4.949294090270996 ], [ -79.274879455566406, -4.951175212860051 ], [ -79.27423095703125, -4.952035903930664 ], [ -79.273872375488281, -4.952632904052678 ], [ -79.273094177246094, -4.953765869140568 ], [ -79.271385192871094, -4.957495212554932 ], [ -79.269950866699219, -4.959438800811768 ], [ -79.268203735351562, -4.962662220001164 ], [ -79.267005920410156, -4.964291095733586 ], [ -79.266815185546875, -4.964888095855656 ], [ -79.265380859375, -4.966864109039307 ], [ -79.261947631835938, -4.970729827880859 ], [ -79.258010864257812, -4.970462799072209 ], [ -79.255302429199162, -4.969769954681396 ], [ -79.248748779296875, -4.967445850372201 ], [ -79.242866516113281, -4.965735912322998 ], [ -79.239479064941349, -4.964993000030518 ], [ -79.231521606445312, -4.963531970977726 ], [ -79.225471496582031, -4.962451934814396 ], [ -79.224906921386719, -4.962228775024357 ], [ -79.224403381347599, -4.962035179138127 ], [ -79.223793029785156, -4.961739063262939 ], [ -79.222846984863281, -4.960639953613224 ], [ -79.221572875976562, -4.960384845733586 ], [ -79.220901489257812, -4.960289001464844 ], [ -79.219779968261719, -4.960361957549992 ], [ -79.217941284179688, -4.960632801055908 ], [ -79.213447570800668, -4.962173938751164 ], [ -79.210441589355469, -4.968182086944523 ], [ -79.210418701171875, -4.96955585479725 ], [ -79.211662292480469, -4.975770950317326 ], [ -79.214408874511719, -4.980040073394775 ], [ -79.214981079101562, -4.981768131256047 ], [ -79.215614318847599, -4.982891082763672 ], [ -79.216743469238281, -4.98422908782959 ], [ -79.217597961425781, -4.984745979309082 ], [ -79.219024658203125, -4.986252784729004 ], [ -79.219711303710881, -4.988729953765812 ], [ -79.220756530761662, -4.989599227905217 ], [ -79.226005554199162, -4.991586208343449 ], [ -79.229293823242188, -4.993404865264893 ], [ -79.232215881347599, -4.995479106903076 ], [ -79.234901428222599, -4.996860027313176 ], [ -79.236747741699219, -4.999032020568848 ], [ -79.237037658691406, -4.999914169311523 ], [ -79.237075805664006, -5.001601219177246 ], [ -79.237617492675781, -5.005034923553467 ], [ -79.240432739257756, -5.015717983245793 ], [ -79.242309570312443, -5.022181034088135 ], [ -79.245307922363281, -5.02897310256958 ], [ -79.245658874511662, -5.031371116638127 ], [ -79.247001647949162, -5.034881114959717 ], [ -79.247520446777344, -5.040381908416748 ], [ -79.247047424316406, -5.047088146209717 ], [ -79.247611999511719, -5.048312187194824 ], [ -79.247665405273381, -5.052532196044922 ], [ -79.248023986816406, -5.054444789886361 ], [ -79.248794555664006, -5.055078029632512 ], [ -79.249557495117131, -5.0552721023559 ], [ -79.250358581542969, -5.055115222930908 ], [ -79.251274108886662, -5.054312229156494 ], [ -79.253273010253906, -5.050357818603516 ], [ -79.254463195800781, -5.048870086669865 ], [ -79.2569580078125, -5.044559955596924 ], [ -79.258293151855469, -5.042882919311467 ], [ -79.260055541992131, -5.0412278175354 ], [ -79.261344909667969, -5.04051685333252 ], [ -79.264686584472656, -5.040764808654728 ], [ -79.269210815429631, -5.040211200713998 ], [ -79.270523071289062, -5.039275169372559 ], [ -79.272048950195312, -5.037071228027344 ], [ -79.272850036621037, -5.036868095397949 ], [ -79.273475646972656, -5.037027835845947 ], [ -79.274604797363281, -5.03961706161499 ], [ -79.278755187988224, -5.043830871582031 ], [ -79.279029846191349, -5.044432163238469 ], [ -79.279144287109318, -5.047661781310921 ], [ -79.277473449707031, -5.052210807800293 ], [ -79.276779174804688, -5.056735038757267 ], [ -79.2783203125, -5.062289237976017 ], [ -79.278816223144531, -5.06324386596674 ], [ -79.279212951660156, -5.065486907958984 ], [ -79.277717590331974, -5.067203044891357 ], [ -79.277198791503906, -5.068296909332162 ], [ -79.276725769042969, -5.070403099060002 ], [ -79.276679992675781, -5.072819232940617 ], [ -79.280815124511719, -5.086325168609619 ], [ -79.285552978515625, -5.096685886383 ], [ -79.288894653320312, -5.10205078125 ], [ -79.290672302246037, -5.105528831481934 ], [ -79.292381286621037, -5.108295917510929 ], [ -79.293693542480469, -5.109811782836914 ], [ -79.294532775878906, -5.110447883605957 ], [ -79.297904968261719, -5.112174987792912 ], [ -79.299057006835881, -5.112544059753361 ], [ -79.3006591796875, -5.112714767455998 ], [ -79.303627014160156, -5.113543033599854 ], [ -79.311111450195312, -5.114096164703369 ], [ -79.314224243164006, -5.114933013915959 ], [ -79.315040588378906, -5.11540699005127 ], [ -79.319526672363281, -5.116233825683594 ], [ -79.325630187988281, -5.119331836700383 ], [ -79.328544616699162, -5.121710777282658 ], [ -79.332435607910099, -5.127358913421631 ], [ -79.335601806640568, -5.134184837341252 ], [ -79.337493896484318, -5.13646221160883 ], [ -79.340896606445312, -5.139903068542424 ], [ -79.341224670410099, -5.140504837036133 ], [ -79.341590881347599, -5.156116962432861 ], [ -79.341995239257756, -5.160418033599797 ], [ -79.341880798339787, -5.16200590133667 ], [ -79.341278076171875, -5.163065910339355 ], [ -79.342353820800724, -5.164429187774658 ], [ -79.34698486328125, -5.1668701171875 ], [ -79.349472045898438, -5.167437076568604 ], [ -79.354415893554688, -5.167930126190186 ], [ -79.355934143066406, -5.168448925018254 ], [ -79.357475280761719, -5.169540882110596 ], [ -79.359977722167969, -5.172526836395207 ], [ -79.3619384765625, -5.174153804779053 ], [ -79.365150451660099, -5.174115180969181 ], [ -79.365905761718693, -5.174397945403996 ], [ -79.3681640625, -5.17631196975708 ], [ -79.369781494140625, -5.178114891052246 ], [ -79.370483398437443, -5.17925500869751 ], [ -79.371368408203068, -5.181512832641602 ], [ -79.372177124023438, -5.182581901550293 ], [ -79.372406005859318, -5.183500766754037 ], [ -79.373168945312443, -5.184360027313176 ], [ -79.374374389648438, -5.185813903808537 ], [ -79.375762939453011, -5.186299800872803 ], [ -79.376449584960938, -5.186934947967472 ], [ -79.377372741699162, -5.18842601776123 ], [ -79.377647399902287, -5.189741134643555 ], [ -79.376678466796875, -5.192120075225773 ], [ -79.373741149902287, -5.195224761962891 ], [ -79.3729248046875, -5.197494983673096 ], [ -79.372055053710938, -5.198684215545597 ], [ -79.372100830078125, -5.200965881347599 ], [ -79.370933532714844, -5.20411300659174 ], [ -79.370620727539062, -5.208669185638428 ], [ -79.369941711425724, -5.21098518371582 ], [ -79.368850708007812, -5.212532043457031 ], [ -79.367156982421818, -5.214260101318359 ], [ -79.3656005859375, -5.215542793273926 ], [ -79.363311767578125, -5.216947078704777 ], [ -79.362205505371037, -5.218624114990178 ], [ -79.360488891601506, -5.220341205596867 ], [ -79.355010986328125, -5.224175930023137 ], [ -79.354248046875, -5.225461959838867 ], [ -79.353538513183537, -5.22735404968256 ], [ -79.349571228027344, -5.231910228729248 ], [ -79.349121093749943, -5.233039855957031 ], [ -79.347885131835881, -5.234799861907959 ], [ -79.347610473632756, -5.237345218658447 ], [ -79.348541259765625, -5.242090225219727 ], [ -79.348617553710938, -5.245591163635254 ], [ -79.348159790039062, -5.24783182144165 ], [ -79.346511840820312, -5.251667022705078 ], [ -79.346214294433594, -5.254203796386605 ], [ -79.346565246581974, -5.257133007049504 ], [ -79.347297668457031, -5.259043216705322 ], [ -79.347900390624943, -5.25953292846674 ], [ -79.3497314453125, -5.262189865112305 ], [ -79.35205078125, -5.264212131500244 ], [ -79.352554321289006, -5.266176223754883 ], [ -79.353431701660099, -5.267856121063232 ], [ -79.357658386230469, -5.271389007568359 ], [ -79.360275268554688, -5.274256229400578 ], [ -79.36041259765625, -5.275880813598576 ], [ -79.359992980956974, -5.277994155883732 ], [ -79.359161376953068, -5.279983043670654 ], [ -79.357582092285156, -5.281989097595215 ], [ -79.357376098632812, -5.283605098724308 ], [ -79.357749938964844, -5.284749031066895 ], [ -79.358375549316349, -5.28565597534174 ], [ -79.361312866210938, -5.287519931793156 ], [ -79.362197875976506, -5.288361072540283 ], [ -79.361930847167912, -5.289059162139893 ], [ -79.359123229980469, -5.289205074310246 ], [ -79.357101440429688, -5.289904117584172 ], [ -79.356002807617131, -5.29091215133667 ], [ -79.353477478027344, -5.292446136474496 ], [ -79.3524169921875, -5.293257236480656 ], [ -79.351043701171818, -5.294744968414307 ], [ -79.349937438964844, -5.296737194061279 ], [ -79.345703124999943, -5.300042152404785 ], [ -79.344734191894474, -5.302114009857064 ], [ -79.344520568847656, -5.306690216064453 ], [ -79.344093322753849, -5.307720184326172 ], [ -79.342979431152344, -5.308189868926945 ], [ -79.339508056640568, -5.308502197265625 ], [ -79.337181091308594, -5.309536933898869 ], [ -79.334739685058537, -5.309708118438664 ], [ -79.333877563476506, -5.309975147247258 ], [ -79.330749511718636, -5.312949180603027 ], [ -79.327827453613281, -5.316467761993351 ], [ -79.327499389648381, -5.317778110504037 ], [ -79.327545166015625, -5.318997859954834 ], [ -79.329826354980469, -5.323481082916203 ], [ -79.330284118652344, -5.324850082397461 ], [ -79.330413818359375, -5.326417922973576 ], [ -79.330184936523438, -5.328575134277287 ], [ -79.329170227050781, -5.333364963531494 ], [ -79.32525634765625, -5.341493129730168 ], [ -79.325004577636662, -5.342775821685791 ], [ -79.325340270996094, -5.345497131347656 ], [ -79.325202941894474, -5.346814155578556 ], [ -79.322326660156193, -5.352772235870361 ], [ -79.321083068847599, -5.358410835266113 ], [ -79.3192138671875, -5.361705780029297 ], [ -79.317466735839787, -5.363369941711426 ], [ -79.314750671386719, -5.364517211914006 ], [ -79.31219482421875, -5.364452838897648 ], [ -79.310913085937386, -5.364815235137883 ], [ -79.308784484863224, -5.365965843200684 ], [ -79.308113098144474, -5.367163181304875 ], [ -79.309654235839787, -5.371302127838135 ], [ -79.309829711914006, -5.373573780059814 ], [ -79.309661865234318, -5.376008033752385 ], [ -79.308860778808594, -5.377847194671631 ], [ -79.306205749511662, -5.382240772247314 ], [ -79.305358886718693, -5.384492874145451 ], [ -79.304878234863224, -5.387940883636418 ], [ -79.3045654296875, -5.39347314834589 ], [ -79.304702758789006, -5.395358085632324 ], [ -79.305152893066406, -5.396481037139836 ], [ -79.305206298828125, -5.397556781768799 ], [ -79.303672790527344, -5.40327787399292 ], [ -79.30340576171875, -5.405156135559082 ], [ -79.303550720214787, -5.406210899353027 ], [ -79.304679870605412, -5.408358097076359 ], [ -79.305130004882812, -5.409770965576172 ], [ -79.305503845214844, -5.411888122558594 ], [ -79.304862976074219, -5.41450023651123 ], [ -79.304946899414062, -5.424728870391789 ], [ -79.304534912109375, -5.42753887176508 ], [ -79.30426025390625, -5.428568840026855 ], [ -79.303848266601506, -5.429096221923771 ], [ -79.300987243652287, -5.430585861205941 ], [ -79.298515319824105, -5.433047771453857 ], [ -79.295364379882756, -5.437239170074406 ], [ -79.29461669921875, -5.439400196075383 ], [ -79.296073913574219, -5.450195789337045 ], [ -79.296104431152287, -5.454373836517334 ], [ -79.296508789062443, -5.455634117126465 ], [ -79.297805786132812, -5.458168029785099 ], [ -79.297950744628906, -5.459493160247803 ], [ -79.296836853027344, -5.462234020233154 ], [ -79.295494079589844, -5.46473503112793 ], [ -79.291435241699162, -5.46956205368042 ], [ -79.291053771972599, -5.470856189727726 ], [ -79.290946960449162, -5.472271919250488 ], [ -79.288681030273381, -5.476546764373779 ], [ -79.288200378417912, -5.478517055511418 ], [ -79.287490844726562, -5.479948043823242 ], [ -79.285705566406193, -5.480599880218506 ], [ -79.28436279296875, -5.481910228729191 ], [ -79.282745361328068, -5.482876777648926 ], [ -79.280456542968693, -5.485499858856201 ], [ -79.280540466308594, -5.486447811126652 ], [ -79.282081604003849, -5.489440917968693 ], [ -79.282203674316349, -5.490522861480713 ], [ -79.281501770019531, -5.492393970489502 ], [ -79.2796630859375, -5.494853019714299 ], [ -79.27801513671875, -5.499438762664795 ], [ -79.277984619140568, -5.501028060913029 ], [ -79.279197692871094, -5.503507137298527 ], [ -79.279029846191349, -5.50458288192749 ], [ -79.278701782226562, -5.505351066589299 ], [ -79.277671813964844, -5.506504058837891 ], [ -79.276313781738281, -5.507750988006535 ], [ -79.275199890136719, -5.508388996124268 ], [ -79.274375915527287, -5.509253025054875 ], [ -79.274284362792912, -5.513565063476562 ], [ -79.273246765136719, -5.515296936035099 ], [ -79.271659851074219, -5.516903877258301 ], [ -79.271934509277344, -5.517776966094914 ], [ -79.272872924804688, -5.518917083740178 ], [ -79.275955200195312, -5.52053689956665 ], [ -79.279289245605469, -5.523805141448975 ], [ -79.282829284667969, -5.525854110717717 ], [ -79.284584045410099, -5.526391983032227 ], [ -79.286140441894531, -5.526397228240967 ], [ -79.288574218749943, -5.525966167449894 ], [ -79.290313720703011, -5.526078224182129 ], [ -79.291709899902287, -5.525634765625 ], [ -79.293724060058537, -5.525433063507023 ], [ -79.296157836914062, -5.524169921874943 ], [ -79.300048828125, -5.523124217987004 ], [ -79.301803588867188, -5.523498058319035 ], [ -79.305274963378849, -5.52326488494873 ], [ -79.307350158691349, -5.522331237792969 ], [ -79.309501647949219, -5.5204758644104 ], [ -79.311164855956974, -5.520497798919621 ], [ -79.312393188476562, -5.521156787872314 ], [ -79.312988281249943, -5.522857189178467 ], [ -79.314765930175781, -5.524151802062988 ], [ -79.314964294433594, -5.5252428054809 ], [ -79.315330505371094, -5.525772094726562 ], [ -79.315528869628906, -5.527403831481877 ], [ -79.317298889160099, -5.529403209686222 ], [ -79.320259094238168, -5.531077861785889 ], [ -79.322227478027287, -5.532587051391602 ], [ -79.324546813964787, -5.533428192138615 ], [ -79.32745361328125, -5.535201072692814 ], [ -79.331024169921818, -5.535960197448674 ], [ -79.332420349121094, -5.535500049591064 ], [ -79.333747863769531, -5.534514904022217 ], [ -79.334465026855412, -5.53367900848383 ], [ -79.335151672363281, -5.531797885894775 ], [ -79.335861206054688, -5.531170845031681 ], [ -79.336708068847656, -5.530848026275635 ], [ -79.339286804199219, -5.530820846557617 ], [ -79.340423583984375, -5.531083106994629 ], [ -79.343681335449219, -5.530562877654972 ], [ -79.346527099609375, -5.530433177947998 ], [ -79.347770690917969, -5.529116153717041 ], [ -79.350601196289062, -5.528879165649357 ], [ -79.351974487304688, -5.528155803680363 ], [ -79.353240966796818, -5.527939796447754 ], [ -79.353874206542969, -5.527997016906681 ], [ -79.355552673339844, -5.528717041015625 ], [ -79.3580322265625, -5.528112888336182 ], [ -79.359214782714844, -5.528275012969914 ], [ -79.359489440917969, -5.528507232666016 ], [ -79.362403869628849, -5.528838157653695 ], [ -79.363983154296875, -5.529341220855713 ], [ -79.364715576171875, -5.529362201690674 ], [ -79.365287780761719, -5.52971076965332 ], [ -79.366752624511719, -5.529644012451172 ], [ -79.367958068847656, -5.529201984405518 ], [ -79.370689392089787, -5.526909828186035 ], [ -79.372650146484375, -5.5261549949646 ], [ -79.374191284179688, -5.525160789489746 ], [ -79.375724792480469, -5.524915218353271 ], [ -79.376571655273438, -5.524359226226807 ], [ -79.378387451171875, -5.524578094482422 ], [ -79.381385803222599, -5.523240089416447 ], [ -79.38625335693348, -5.52335882186884 ], [ -79.386932373046875, -5.523117065429631 ], [ -79.388031005859318, -5.523147106170654 ], [ -79.389122009277344, -5.523824214935246 ], [ -79.390853881835938, -5.525966167449894 ], [ -79.393180847167912, -5.527907848358154 ], [ -79.395118713378849, -5.530814170837346 ], [ -79.39727783203125, -5.533333778381291 ], [ -79.398178100585938, -5.535050868988037 ], [ -79.398635864257756, -5.535505771636963 ], [ -79.398925781249943, -5.53584623336792 ], [ -79.398910522460881, -5.538623809814453 ], [ -79.398773193359375, -5.539031982421818 ], [ -79.397987365722656, -5.539823055267334 ], [ -79.398040771484375, -5.542022228240967 ], [ -79.396911621093693, -5.54335784912098 ], [ -79.396881103515625, -5.545740127563477 ], [ -79.395980834960824, -5.546682834625244 ], [ -79.394424438476506, -5.547634124755803 ], [ -79.393379211425724, -5.548902988433838 ], [ -79.393363952636719, -5.549643993377686 ], [ -79.394042968749943, -5.550965785980225 ], [ -79.393821716308594, -5.552329063415527 ], [ -79.392448425292912, -5.553790092468205 ], [ -79.392127990722656, -5.554450988769531 ], [ -79.389633178710938, -5.557048797607422 ], [ -79.3883056640625, -5.560072898864746 ], [ -79.38592529296875, -5.561407089233342 ], [ -79.385475158691349, -5.561861991882324 ], [ -79.384872436523438, -5.562867164611816 ], [ -79.384506225585881, -5.564358234405518 ], [ -79.382675170898438, -5.567618846893311 ], [ -79.382583618164062, -5.569540977477971 ], [ -79.380226135253849, -5.577153205871582 ], [ -79.380180358886719, -5.581204891204834 ], [ -79.3790283203125, -5.583414077758789 ], [ -79.378860473632812, -5.584117889404297 ], [ -79.379020690917969, -5.58502721786499 ], [ -79.3795166015625, -5.585935115814209 ], [ -79.380790710449162, -5.586647987365666 ], [ -79.381431579589844, -5.587338924407902 ], [ -79.381515502929688, -5.588681221008187 ], [ -79.381301879882812, -5.590630054473877 ], [ -79.380325317382756, -5.591846942901611 ], [ -79.378936767578125, -5.592732906341553 ], [ -79.377220153808594, -5.594268798828068 ], [ -79.375823974609318, -5.597239017486572 ], [ -79.375213623046875, -5.597630977630558 ], [ -79.373443603515568, -5.598168849945068 ], [ -79.372871398925724, -5.598622798919678 ], [ -79.372459411621094, -5.599248886108398 ], [ -79.372322082519474, -5.60032320022583 ], [ -79.373001098632812, -5.604611873626652 ], [ -79.375328063964844, -5.606371879577523 ], [ -79.37628173828125, -5.60805082321167 ], [ -79.376571655273438, -5.610601902008057 ], [ -79.376037597656193, -5.612527847289982 ], [ -79.37677001953125, -5.614713191986027 ], [ -79.376541137695312, -5.61588716506958 ], [ -79.376602172851506, -5.617734909057617 ], [ -79.377586364746094, -5.61960411071766 ], [ -79.377830505371037, -5.620776176452637 ], [ -79.378410339355412, -5.621601104736328 ], [ -79.378372192382812, -5.623342037200928 ], [ -79.37921142578125, -5.624877929687443 ], [ -79.378486633300781, -5.626824855804387 ], [ -79.379379272460881, -5.628430843353215 ], [ -79.380058288574219, -5.629182815551758 ], [ -79.380783081054631, -5.630983829498291 ], [ -79.381011962890625, -5.634823799133244 ], [ -79.380889892578068, -5.636474132537842 ], [ -79.380195617675781, -5.639540195465031 ], [ -79.377922058105412, -5.642035007476807 ], [ -79.378265380859375, -5.642971992492676 ], [ -79.378364562988281, -5.646749019622746 ], [ -79.378890991210881, -5.647829055786076 ], [ -79.380935668945312, -5.649680137634277 ], [ -79.381469726562443, -5.651020050048771 ], [ -79.382888793945256, -5.652462959289494 ], [ -79.383079528808537, -5.653091907501221 ], [ -79.382835388183594, -5.655212879180851 ], [ -79.382949829101562, -5.655996799468994 ], [ -79.383682250976562, -5.65709114074707 ], [ -79.385421752929688, -5.658775806427002 ], [ -79.385124206542969, -5.659534931182861 ], [ -79.384376525878906, -5.659873962402287 ], [ -79.383842468261662, -5.66051006317133 ], [ -79.383773803710824, -5.662062168121338 ], [ -79.383323669433594, -5.663040161132756 ], [ -79.383491516113281, -5.664401054382324 ], [ -79.384483337402344, -5.666069030761662 ], [ -79.384895324706974, -5.667284011840763 ], [ -79.384796142578068, -5.668394088745117 ], [ -79.383644104003849, -5.669668197631779 ], [ -79.383514404296875, -5.670299053192139 ], [ -79.384002685546875, -5.670952796935978 ], [ -79.385101318359318, -5.671062946319523 ], [ -79.385406494140625, -5.671267986297607 ], [ -79.385711669921875, -5.672900199890137 ], [ -79.386962890625, -5.674928188323975 ], [ -79.387115478515625, -5.677135944366398 ], [ -79.386512756347599, -5.67835807800293 ], [ -79.386360168457031, -5.68140983581543 ], [ -79.386444091796761, -5.682310104370117 ], [ -79.386978149414062, -5.683297157287598 ], [ -79.386863708496094, -5.684769153594914 ], [ -79.387443542480469, -5.686315059661808 ], [ -79.387451171875, -5.687606811523438 ], [ -79.388931274414062, -5.688830852508545 ], [ -79.389747619628849, -5.689933776855412 ], [ -79.390533447265568, -5.690216064453068 ], [ -79.391777038574162, -5.691705226898193 ], [ -79.392509460449219, -5.692041873931885 ], [ -79.393539428710938, -5.694008827209473 ], [ -79.393646240234375, -5.69500017166132 ], [ -79.394119262695312, -5.696008205413818 ], [ -79.395950317382756, -5.697391033172607 ], [ -79.398002624511719, -5.699522018432504 ], [ -79.397880554199162, -5.701227188110295 ], [ -79.399040222167969, -5.703437805175781 ], [ -79.399604797363168, -5.705290794372559 ], [ -79.39886474609375, -5.708120822906494 ], [ -79.399742126464844, -5.711044788360596 ], [ -79.399787902831974, -5.712225914001408 ], [ -79.399124145507756, -5.714242935180664 ], [ -79.398094177246094, -5.716082096099854 ], [ -79.397041320800781, -5.720745086669922 ], [ -79.397300720214787, -5.723773956298771 ], [ -79.398567199707031, -5.726425170898438 ], [ -79.3985595703125, -5.726993083953801 ], [ -79.399238586425781, -5.728494167327824 ], [ -79.399253845214844, -5.731163024902344 ], [ -79.40008544921875, -5.732583045959416 ], [ -79.399925231933594, -5.733126163482666 ], [ -79.399391174316349, -5.733509063720646 ], [ -79.399291992187443, -5.734033107757455 ], [ -79.400093078613281, -5.736776828765869 ], [ -79.399116516113224, -5.738433837890625 ], [ -79.398796081542969, -5.73939323425293 ], [ -79.399139404296875, -5.741112232208252 ], [ -79.399139404296875, -5.744053840637207 ], [ -79.399589538574162, -5.745169162750244 ], [ -79.399734497070312, -5.748298168182373 ], [ -79.400863647460938, -5.749352931976262 ], [ -79.401138305664062, -5.74993705749506 ], [ -79.400436401367131, -5.750763893127441 ], [ -79.400321960449219, -5.751278877258244 ], [ -79.400405883789062, -5.752127170562744 ], [ -79.400962829589844, -5.753482818603516 ], [ -79.400871276855469, -5.755514144897461 ], [ -79.400169372558537, -5.757413864135742 ], [ -79.400070190429631, -5.75842380523676 ], [ -79.399093627929631, -5.759488105773926 ], [ -79.399589538574162, -5.761847019195557 ], [ -79.399627685546875, -5.76322603225708 ], [ -79.399291992187443, -5.764474868774414 ], [ -79.398216247558594, -5.765835762023926 ], [ -79.398338317871037, -5.768801212310791 ], [ -79.398757934570312, -5.769936084747258 ], [ -79.398788452148438, -5.770747184753418 ], [ -79.398551940917912, -5.771839141845646 ], [ -79.397979736328068, -5.772881031036377 ], [ -79.397781372070256, -5.774164199829045 ], [ -79.39715576171875, -5.774954795837346 ], [ -79.395973205566349, -5.775612831115723 ], [ -79.392738342285043, -5.779479026794434 ], [ -79.392372131347656, -5.781341075897217 ], [ -79.392250061035099, -5.784924030303898 ], [ -79.391761779785099, -5.786118030548096 ], [ -79.390678405761719, -5.787605762481576 ], [ -79.390083312988281, -5.790297985076904 ], [ -79.388664245605469, -5.792852878570557 ], [ -79.386421203613224, -5.794880867004395 ], [ -79.386047363281193, -5.795722007751465 ], [ -79.384925842285156, -5.796798229217472 ], [ -79.384483337402344, -5.796944141387883 ], [ -79.382392883300781, -5.796707153320312 ], [ -79.381698608398438, -5.796929836273193 ], [ -79.380332946777287, -5.797714233398438 ], [ -79.379188537597599, -5.798762798309326 ], [ -79.378280639648438, -5.798788070678654 ], [ -79.377349853515568, -5.79918193817133 ], [ -79.376754760742188, -5.80041313171381 ], [ -79.376091003417969, -5.801176071166935 ], [ -79.375518798828125, -5.804499149322453 ], [ -79.375762939453011, -5.806509017944279 ], [ -79.376190185546875, -5.807535171508789 ], [ -79.37628173828125, -5.808463096618652 ], [ -79.376152038574219, -5.809175968170109 ], [ -79.375511169433594, -5.810409069061279 ], [ -79.375495910644531, -5.811058044433594 ], [ -79.375801086425781, -5.811507225036507 ], [ -79.377487182617188, -5.811963081359863 ], [ -79.377716064453125, -5.813322067260742 ], [ -79.377105712890625, -5.815383911132812 ], [ -79.374977111816349, -5.819028854370117 ], [ -79.374923706054688, -5.821237087249756 ], [ -79.375183105468693, -5.823049068450928 ], [ -79.374931335449219, -5.823925971984806 ], [ -79.373748779296818, -5.825792789459172 ], [ -79.3724365234375, -5.826560974121094 ], [ -79.372474670410156, -5.828751087188721 ], [ -79.371505737304688, -5.830303192138615 ], [ -79.371345520019474, -5.831404209136906 ], [ -79.370613098144418, -5.833286762237435 ], [ -79.369461059570256, -5.835172176361084 ], [ -79.368972778320256, -5.83558177947998 ], [ -79.367218017578125, -5.836325168609619 ], [ -79.365676879882812, -5.839449882507211 ], [ -79.363716125488224, -5.840727806091309 ], [ -79.361686706542969, -5.842845916748047 ], [ -79.361076354980355, -5.843011856079102 ], [ -79.359443664550724, -5.842744827270451 ], [ -79.358398437499943, -5.843358039855957 ], [ -79.358139038085938, -5.843702793121281 ], [ -79.358070373535156, -5.844460964202824 ], [ -79.358673095703068, -5.846594810485783 ], [ -79.358665466308537, -5.847603797912484 ], [ -79.358078002929688, -5.848420143127441 ], [ -79.356330871582031, -5.848506927490178 ], [ -79.355812072753849, -5.848880767822209 ], [ -79.35565185546875, -5.849685192108154 ], [ -79.356300354003849, -5.850760936737061 ], [ -79.355850219726562, -5.851667881011963 ], [ -79.354118347167969, -5.853005886077881 ], [ -79.352592468261719, -5.853640079498234 ], [ -79.350463867187443, -5.854164123535156 ], [ -79.349861145019531, -5.854878902435303 ], [ -79.349685668945312, -5.855891227722168 ], [ -79.350067138671875, -5.856602191925049 ], [ -79.351966857910156, -5.857541084289551 ], [ -79.353866577148438, -5.857844829559269 ], [ -79.354515075683594, -5.859164237976017 ], [ -79.354583740234318, -5.860833168029728 ], [ -79.352195739746037, -5.864846229553166 ], [ -79.352005004882756, -5.865750789642334 ], [ -79.352012634277287, -5.867276191711426 ], [ -79.353332519531193, -5.869691848754883 ], [ -79.352966308593693, -5.872346878051758 ], [ -79.352043151855469, -5.87334680557251 ], [ -79.350677490234318, -5.873249053955078 ], [ -79.349418640136662, -5.873801231384277 ], [ -79.347549438476562, -5.875419139862061 ], [ -79.346504211425781, -5.877033233642521 ], [ -79.344810485839844, -5.877380847930908 ], [ -79.342124938964844, -5.880261898040771 ], [ -79.341011047363281, -5.88069295883173 ], [ -79.339431762695312, -5.881851196289062 ], [ -79.339141845703011, -5.882468223571777 ], [ -79.339096069335938, -5.883422851562443 ], [ -79.340263366699162, -5.887979030609131 ], [ -79.340454101562443, -5.889819145202637 ], [ -79.340141296386719, -5.891174793243295 ], [ -79.339599609374943, -5.892008781433105 ], [ -79.33868408203125, -5.892790794372559 ], [ -79.337692260742131, -5.892989158630371 ], [ -79.336433410644531, -5.893909931182804 ], [ -79.335090637207031, -5.894233226776123 ], [ -79.334579467773438, -5.894590854644775 ], [ -79.339179992675781, -5.899119853973389 ], [ -79.341316223144474, -5.900193214416504 ], [ -79.341926574707031, -5.901434898376408 ], [ -79.3436279296875, -5.902692794799805 ], [ -79.345069885253906, -5.90460300445551 ], [ -79.34625244140625, -5.905316829681396 ], [ -79.347633361816406, -5.905817985534611 ], [ -79.348556518554631, -5.906469821929875 ], [ -79.349678039550781, -5.908743858337402 ], [ -79.35186767578125, -5.909906864166203 ], [ -79.352531433105469, -5.910678863525334 ], [ -79.352798461914062, -5.911361217498722 ], [ -79.3546142578125, -5.913070201873722 ], [ -79.354995727539062, -5.914293766021672 ], [ -79.354774475097599, -5.91490983963007 ], [ -79.354827880859375, -5.915558815002441 ], [ -79.35577392578125, -5.916677951812687 ], [ -79.356819152832031, -5.917040824890137 ], [ -79.357307434082031, -5.917695045471135 ], [ -79.357276916503906, -5.918344020843449 ], [ -79.356941223144474, -5.918898105621338 ], [ -79.357055664062443, -5.919346809387207 ], [ -79.357902526855412, -5.919909954071045 ], [ -79.359451293945256, -5.920051097869873 ], [ -79.359817504882756, -5.920309066772461 ], [ -79.359809875488224, -5.920868873596191 ], [ -79.359474182128906, -5.921185970306396 ], [ -79.358665466308537, -5.923395156860352 ], [ -79.359214782714844, -5.924147129058838 ], [ -79.359939575195312, -5.924332141876164 ], [ -79.361305236816406, -5.925134181976262 ], [ -79.361793518066406, -5.925795078277588 ], [ -79.361808776855412, -5.927093982696476 ], [ -79.360984802246094, -5.928192138671875 ], [ -79.360885620117074, -5.928734779357853 ], [ -79.361915588378849, -5.93056678771967 ], [ -79.361869812011719, -5.931497097015381 ], [ -79.361534118652287, -5.932075977325383 ], [ -79.36187744140625, -5.932713985443115 ], [ -79.364189147949162, -5.933172225952035 ], [ -79.364532470703125, -5.933740139007568 ], [ -79.364723205566406, -5.934910774230957 ], [ -79.368438720703125, -5.938218116760254 ], [ -79.372451782226562, -5.939568042755127 ], [ -79.3782958984375, -5.94009876251215 ], [ -79.380905151367131, -5.940914154052678 ], [ -79.38372802734375, -5.942238807678223 ], [ -79.391326904296875, -5.947012901306096 ], [ -79.394142150878849, -5.948169231414738 ], [ -79.398292541503906, -5.950382232665959 ], [ -79.404998779296875, -5.956274032592773 ], [ -79.407623291015625, -5.959708213806039 ], [ -79.410392761230469, -5.962806224822998 ], [ -79.412437438964844, -5.964377880096379 ], [ -79.416282653808537, -5.968344211578312 ], [ -79.419685363769531, -5.971110820770264 ], [ -79.422851562499943, -5.968894958496094 ], [ -79.425643920898438, -5.965850830078125 ], [ -79.42718505859375, -5.963573932647705 ], [ -79.428314208984375, -5.962790012359619 ], [ -79.429855346679688, -5.962199211120605 ], [ -79.434020996093693, -5.957934856414795 ], [ -79.435035705566406, -5.957258224487305 ], [ -79.438041687011719, -5.954304218292179 ], [ -79.441619873046875, -5.952887058258057 ], [ -79.443328857421875, -5.951808929443303 ], [ -79.447151184082031, -5.950026035308838 ], [ -79.449516296386719, -5.949828147888184 ], [ -79.451484680175668, -5.948856830596867 ], [ -79.456642150878906, -5.947554111480656 ], [ -79.458297729492188, -5.94677209854126 ], [ -79.461036682128906, -5.946011066436654 ], [ -79.462089538574219, -5.945452213287297 ], [ -79.462837219238281, -5.944743156433105 ], [ -79.463264465332031, -5.943953037261906 ], [ -79.463493347167912, -5.940911769866943 ], [ -79.464683532714844, -5.93966817855835 ], [ -79.464195251464844, -5.937335968017578 ], [ -79.465461730957031, -5.936044216156006 ], [ -79.465560913085938, -5.933553218841553 ], [ -79.466285705566406, -5.932835102081242 ], [ -79.467933654785156, -5.931820869445801 ], [ -79.468162536621037, -5.930305004119873 ], [ -79.468620300292912, -5.929769992828369 ], [ -79.469779968261662, -5.928983211517334 ], [ -79.472572326660156, -5.927815914153996 ], [ -79.474250793456974, -5.92670202255249 ], [ -79.480186462402287, -5.923623085021973 ], [ -79.483337402343636, -5.923038959503174 ], [ -79.484092712402287, -5.922706127166691 ], [ -79.485282897949219, -5.922815799713135 ], [ -79.486221313476562, -5.921967983245793 ], [ -79.48687744140625, -5.922251224517822 ], [ -79.487396240234375, -5.921896934509277 ], [ -79.488212585449219, -5.921881198883057 ], [ -79.488914489746094, -5.921279907226506 ], [ -79.489662170410156, -5.919704914093018 ], [ -79.490287780761662, -5.919004917144775 ], [ -79.491813659667912, -5.918822765350342 ], [ -79.497390747070312, -5.91653919219965 ], [ -79.498313903808594, -5.916405200958252 ], [ -79.498916625976562, -5.916797161102238 ], [ -79.499397277832031, -5.918749809265137 ], [ -79.499839782714844, -5.919079780578613 ], [ -79.500602722167969, -5.918805122375488 ], [ -79.502021789550724, -5.917540073394719 ], [ -79.503074645996037, -5.91717004776001 ], [ -79.504417419433594, -5.917131900787297 ], [ -79.506301879882756, -5.917856216430664 ], [ -79.506965637206974, -5.917254924774113 ], [ -79.507629394531193, -5.917088031768742 ], [ -79.508926391601562, -5.917997837066594 ], [ -79.510086059570312, -5.916913032531681 ], [ -79.511001586914062, -5.916683197021484 ], [ -79.512245178222656, -5.917915821075439 ], [ -79.51226806640625, -5.919654846191349 ], [ -79.512741088867188, -5.920781135559082 ], [ -79.513816833496094, -5.921348094940129 ], [ -79.515480041503906, -5.920279026031437 ], [ -79.516754150390625, -5.920475006103516 ], [ -79.517013549804688, -5.920338153839054 ], [ -79.517173767089787, -5.919074058532658 ], [ -79.517753601074162, -5.918169021606388 ], [ -79.517768859863281, -5.917084217071476 ], [ -79.518112182617131, -5.916062831878605 ], [ -79.519119262695312, -5.91413497924799 ], [ -79.520126342773381, -5.913073062896729 ], [ -79.521736145019474, -5.912994861602726 ], [ -79.523216247558594, -5.913632869720459 ], [ -79.524200439453125, -5.913246154785156 ], [ -79.525909423828125, -5.913600921630859 ], [ -79.526679992675781, -5.913053989410344 ], [ -79.527069091796875, -5.913015842437744 ], [ -79.528190612792969, -5.913518905639592 ], [ -79.529220581054688, -5.914384841918832 ], [ -79.530036926269474, -5.917084217071476 ], [ -79.53057861328125, -5.917710781097298 ], [ -79.530982971191406, -5.918023109436035 ], [ -79.53192138671875, -5.91804313659668 ], [ -79.532608032226506, -5.918704032897949 ], [ -79.532630920410099, -5.919101238250732 ], [ -79.531700134277344, -5.920409202575627 ], [ -79.531829833984375, -5.921217918395996 ], [ -79.532089233398438, -5.92155122756958 ], [ -79.534233093261662, -5.921597003936654 ], [ -79.535560607910156, -5.922731876373291 ], [ -79.536399841308594, -5.922966003417969 ], [ -79.536781311035156, -5.922719955444336 ], [ -79.537254333496094, -5.921525955200138 ], [ -79.537612915039062, -5.921170234680176 ], [ -79.5391845703125, -5.920716762542725 ], [ -79.539718627929688, -5.920822143554574 ], [ -79.540802001953125, -5.922848224639893 ], [ -79.540718078613224, -5.923219203948918 ], [ -79.539825439453125, -5.924220085143986 ], [ -79.540069580078068, -5.925687789916992 ], [ -79.541267395019531, -5.926272869110107 ], [ -79.54193115234375, -5.926121234893799 ], [ -79.542701721191406, -5.925576210021973 ], [ -79.543487548828068, -5.925748825073242 ], [ -79.543869018554631, -5.926115989685002 ], [ -79.54461669921875, -5.927993774414062 ], [ -79.5452880859375, -5.928448200225773 ], [ -79.546669006347656, -5.930429935455322 ], [ -79.547653198242188, -5.930891036987305 ], [ -79.549613952636662, -5.931038856506291 ], [ -79.550376892089787, -5.931410789489746 ], [ -79.551170349121094, -5.9324951171875 ], [ -79.551795959472599, -5.9340500831604 ], [ -79.551773071289062, -5.936205863952637 ], [ -79.552116394042969, -5.937375068664551 ], [ -79.552719116210938, -5.938090801239014 ], [ -79.553710937499943, -5.938535213470459 ], [ -79.555198669433594, -5.938485145568791 ], [ -79.55792236328125, -5.936524868011475 ], [ -79.560188293456974, -5.936281204223633 ], [ -79.562530517578125, -5.93495512008667 ], [ -79.563690185546875, -5.934600830078125 ], [ -79.565757751464844, -5.935188770294189 ], [ -79.569152832031193, -5.937369823455754 ], [ -79.571731567382756, -5.938158988952637 ], [ -79.572525024414062, -5.93799877166748 ], [ -79.573234558105412, -5.93720006942749 ], [ -79.574844360351562, -5.937341213226262 ], [ -79.575637817382756, -5.937162876129094 ], [ -79.576759338378906, -5.936205863952637 ], [ -79.577102661132812, -5.935184955596924 ], [ -79.578094482421875, -5.934706211090031 ], [ -79.579429626464844, -5.936011791229248 ], [ -79.581184387206918, -5.936007976531982 ], [ -79.581687927246094, -5.936192035675049 ], [ -79.583686828613281, -5.938195228576603 ], [ -79.585411071777344, -5.938651084899902 ], [ -79.587074279785099, -5.938707828521672 ], [ -79.588142395019474, -5.938394069671574 ], [ -79.589469909667912, -5.936776161193848 ], [ -79.591331481933594, -5.935444831848145 ], [ -79.593276977539006, -5.934518814086914 ], [ -79.594970703125, -5.934115886688232 ], [ -79.596427917480412, -5.934393882751465 ], [ -79.597801208496094, -5.935274124145508 ], [ -79.598274230957031, -5.935900211334229 ], [ -79.598991394042912, -5.937662124633789 ], [ -79.600234985351506, -5.939050197601262 ], [ -79.601081848144474, -5.937636852264404 ], [ -79.604476928710938, -5.933632850646973 ], [ -79.606369018554688, -5.929469108581486 ], [ -79.608734130859318, -5.926533222198429 ], [ -79.610458374023381, -5.92333793640131 ], [ -79.610466003417969, -5.921984195709229 ], [ -79.609619140625, -5.919276237487793 ], [ -79.609458923339844, -5.91804313659668 ], [ -79.609756469726562, -5.917336940765381 ], [ -79.611335754394531, -5.915647983551025 ], [ -79.611854553222656, -5.914396762847787 ], [ -79.612159729003849, -5.908211231231633 ], [ -79.612823486328068, -5.905456066131478 ], [ -79.612716674804631, -5.904797077178898 ], [ -79.611961364746037, -5.903522968292236 ], [ -79.611900329589844, -5.902440071105843 ], [ -79.612686157226562, -5.900298118591309 ], [ -79.612815856933537, -5.898016929626465 ], [ -79.613693237304631, -5.895041942596379 ], [ -79.615043640136719, -5.893362998962402 ], [ -79.617378234863281, -5.891756057739201 ], [ -79.618484497070312, -5.891276836395264 ], [ -79.62123870849598, -5.89062309265131 ], [ -79.623283386230469, -5.889116764068547 ], [ -79.625831604003906, -5.888826847076359 ], [ -79.626731872558594, -5.88818883895874 ], [ -79.626983642578125, -5.886868953704834 ], [ -79.625747680664062, -5.884788990020752 ], [ -79.626464843749943, -5.88067722320551 ], [ -79.625694274902287, -5.876160144805908 ], [ -79.626029968261719, -5.875408172607365 ], [ -79.626846313476506, -5.87493991851801 ], [ -79.627670288085938, -5.874031066894531 ], [ -79.6280517578125, -5.871260166168156 ], [ -79.629737854003906, -5.869515895843449 ], [ -79.629859924316406, -5.868215084075814 ], [ -79.629653930664062, -5.865296840667725 ], [ -79.629844665527344, -5.86401176452631 ], [ -79.631851196289062, -5.861807823181152 ], [ -79.632537841796875, -5.859904766082764 ], [ -79.6331787109375, -5.858982086181641 ], [ -79.633880615234375, -5.858733177185059 ], [ -79.635932922363281, -5.858833789825383 ], [ -79.637245178222599, -5.858444213867131 ], [ -79.637634277343693, -5.857304096221867 ], [ -79.637664794921875, -5.855653762817383 ], [ -79.636161804199219, -5.854556083679199 ], [ -79.635955810546875, -5.853078842163086 ], [ -79.63555908203125, -5.852516174316349 ], [ -79.633010864257812, -5.852481842041016 ], [ -79.632293701171818, -5.852128028869629 ], [ -79.630180358886662, -5.852235794067383 ], [ -79.629882812499943, -5.849966049194336 ], [ -79.628662109374943, -5.846810817718506 ], [ -79.628479003906193, -5.84576511383051 ], [ -79.628448486328125, -5.840266227722168 ], [ -79.629402160644531, -5.837309837341309 ], [ -79.631324768066349, -5.835083007812443 ], [ -79.631523132324162, -5.833216190338078 ], [ -79.63128662109375, -5.831612110137939 ], [ -79.632232666015625, -5.829692840576172 ], [ -79.631538391113168, -5.829022884368896 ], [ -79.629806518554631, -5.828307151794434 ], [ -79.627792358398381, -5.826132774353027 ], [ -79.625839233398438, -5.825588226318359 ], [ -79.625114440917912, -5.825008869171143 ], [ -79.623893737792912, -5.82290077209467 ], [ -79.622962951660156, -5.820517063140869 ], [ -79.622222900390625, -5.815995216369629 ], [ -79.620559692382756, -5.811583042144719 ], [ -79.620590209960938, -5.807688236236572 ], [ -79.619720458984375, -5.803458213806152 ], [ -79.619834899902344, -5.802391052246094 ], [ -79.620536804199162, -5.800635814666691 ], [ -79.621910095214844, -5.798487186431885 ], [ -79.62335205078125, -5.797763824462834 ], [ -79.625877380371037, -5.798267841339054 ], [ -79.627609252929631, -5.798993110656738 ], [ -79.629997253417912, -5.800963878631592 ], [ -79.631011962890625, -5.801271915435734 ], [ -79.631423950195256, -5.801971912383976 ], [ -79.631729125976449, -5.803981781005803 ], [ -79.633331298828068, -5.805609226226807 ], [ -79.634460449218693, -5.808835983276367 ], [ -79.637214660644531, -5.810256004333439 ], [ -79.639175415039062, -5.812304973602295 ], [ -79.642211914062443, -5.812379837036133 ], [ -79.645065307617131, -5.81390476226801 ], [ -79.647636413574162, -5.816094875335693 ], [ -79.650154113769531, -5.816343784332219 ], [ -79.651435852050724, -5.816820144653263 ], [ -79.653045654296875, -5.818602085113525 ], [ -79.654670715332031, -5.820940971374455 ], [ -79.656227111816349, -5.824075222015381 ], [ -79.6580810546875, -5.825844764709416 ], [ -79.659568786621037, -5.827783107757568 ], [ -79.660148620605355, -5.829121112823486 ], [ -79.660896301269474, -5.832692146301213 ], [ -79.661842346191349, -5.834018230438176 ], [ -79.66278076171875, -5.834788799285775 ], [ -79.664154052734261, -5.835379123687744 ], [ -79.666549682617188, -5.835081100463867 ], [ -79.668037414550724, -5.835148811340332 ], [ -79.67047119140625, -5.836246967315674 ], [ -79.673080444335938, -5.837938785552979 ], [ -79.677398681640568, -5.84158992767334 ], [ -79.678657531738281, -5.842057228088322 ], [ -79.680282592773438, -5.84407377243042 ], [ -79.683021545410099, -5.84632396697998 ], [ -79.68450927734375, -5.847157955169678 ], [ -79.687339782714844, -5.847422122955265 ], [ -79.688369750976506, -5.848072052001953 ], [ -79.689025878906193, -5.848192214965763 ], [ -79.690750122070256, -5.847455978393555 ], [ -79.694381713867131, -5.847461223602238 ], [ -79.696876525878906, -5.84689998626709 ], [ -79.698371887206974, -5.846292018890381 ], [ -79.700325012207031, -5.845095157623291 ], [ -79.702392578124943, -5.842895984649601 ], [ -79.703330993652287, -5.842194080352783 ], [ -79.7052001953125, -5.841565132141056 ], [ -79.710395812988224, -5.840538978576603 ], [ -79.711555480957031, -5.839852809906006 ], [ -79.713279724121094, -5.838350772857666 ], [ -79.714408874511662, -5.837909221649113 ], [ -79.715621948242131, -5.837853908538762 ], [ -79.718154907226562, -5.838725090026855 ], [ -79.722824096679688, -5.839333057403564 ], [ -79.724296569824162, -5.839223861694279 ], [ -79.725181579589787, -5.838891029357853 ], [ -79.731483459472543, -5.839288234710637 ], [ -79.732116699218693, -5.839057922363224 ], [ -79.735069274902344, -5.838969230651799 ], [ -79.736564636230469, -5.838532924652043 ], [ -79.737213134765625, -5.838122844695988 ], [ -79.737617492675781, -5.837236881256047 ], [ -79.737869262695256, -5.835377216339054 ], [ -79.73895263671875, -5.833672046661377 ], [ -79.738960266113281, -5.831102848052979 ], [ -79.738014221191406, -5.828441143035889 ], [ -79.737960815429631, -5.826945781707707 ], [ -79.739669799804631, -5.823000907897949 ], [ -79.74178314208973, -5.819384098052922 ], [ -79.742034912109318, -5.818220138549748 ], [ -79.741996765136719, -5.815769195556641 ], [ -79.741493225097599, -5.813797950744629 ], [ -79.738723754882756, -5.810872077941838 ], [ -79.738243103027287, -5.809470176696721 ], [ -79.73828125, -5.808533191680908 ], [ -79.73907470703125, -5.807093143463078 ], [ -79.739212036132812, -5.806451797485352 ], [ -79.739242553710938, -5.802663803100586 ], [ -79.738891601562443, -5.798917770385742 ], [ -79.737907409667969, -5.797789096832275 ], [ -79.734649658203125, -5.795645236968937 ], [ -79.733390808105355, -5.794067859649601 ], [ -79.733200073242074, -5.793285846710205 ], [ -79.733291625976506, -5.791930198669377 ], [ -79.733589172363281, -5.790486812591496 ], [ -79.734870910644531, -5.786851882934513 ], [ -79.734527587890568, -5.786582946777344 ], [ -79.733596801757812, -5.786446094512883 ], [ -79.732597351074162, -5.785761833190918 ], [ -79.732185363769531, -5.785782814025822 ], [ -79.731216430664062, -5.785079002380314 ], [ -79.728805541992131, -5.782583236694279 ], [ -79.728233337402287, -5.782650947570744 ], [ -79.727676391601562, -5.782304763793945 ], [ -79.7265625, -5.780607223510742 ], [ -79.725799560546875, -5.775592803955078 ], [ -79.724296569824162, -5.774073123931885 ], [ -79.723731994628849, -5.77299690246582 ], [ -79.723304748535156, -5.770610809326115 ], [ -79.722297668456974, -5.768113136291504 ], [ -79.722221374511662, -5.765552997589054 ], [ -79.721206665039062, -5.762765884399414 ], [ -79.721115112304688, -5.760478019714299 ], [ -79.719429016113281, -5.757253170013428 ], [ -79.718032836914006, -5.753038883209229 ], [ -79.718116760253849, -5.750476837158146 ], [ -79.719619750976562, -5.748244762420654 ], [ -79.719741821289006, -5.747037887573242 ], [ -79.717239379882756, -5.743711948394775 ], [ -79.716567993164062, -5.741228103637695 ], [ -79.716751098632812, -5.740172863006535 ], [ -79.717109680175781, -5.7395920753479 ], [ -79.719848632812386, -5.737207889556885 ], [ -79.721778869628906, -5.734613895416203 ], [ -79.723960876464844, -5.733585834503174 ], [ -79.726943969726562, -5.730667114257812 ], [ -79.728233337402287, -5.729952812194767 ], [ -79.735458374023381, -5.722716808319035 ], [ -79.736885070800724, -5.721947193145752 ], [ -79.739234924316406, -5.721370220184269 ], [ -79.741165161132812, -5.720415115356445 ], [ -79.742614746093693, -5.720096111297607 ], [ -79.743682861328068, -5.719303131103459 ], [ -79.744277954101562, -5.718396186828613 ], [ -79.744491577148438, -5.717483997344914 ], [ -79.74383544921875, -5.71460485458374 ], [ -79.743911743164062, -5.713252067565861 ], [ -79.744728088378849, -5.711839199066162 ], [ -79.745414733886719, -5.711472034454289 ], [ -79.747314453124886, -5.7113938331604 ], [ -79.748069763183537, -5.711153030395451 ], [ -79.7486572265625, -5.710579872131348 ], [ -79.749320983886719, -5.709249019622803 ], [ -79.750457763671818, -5.708294868469238 ], [ -79.75399017333973, -5.707488059997559 ], [ -79.756568908691406, -5.706340789794808 ], [ -79.758392333984375, -5.704748153686467 ], [ -79.759140014648324, -5.703317165374699 ], [ -79.76165771484375, -5.700699806213379 ], [ -79.761421203613224, -5.699646949768066 ], [ -79.759323120117131, -5.697175025939885 ], [ -79.757209777831974, -5.69602108001709 ], [ -79.755416870117131, -5.693646907806396 ], [ -79.754455566406193, -5.692743778228703 ], [ -79.751434326171875, -5.691227912902832 ], [ -79.74908447265625, -5.689435005187988 ], [ -79.746826171874943, -5.687307834625187 ], [ -79.7447509765625, -5.684898853302002 ], [ -79.744056701660099, -5.683002948760986 ], [ -79.743904113769531, -5.680715084075871 ], [ -79.744033813476562, -5.678153038024846 ], [ -79.744621276855412, -5.676362037658691 ], [ -79.74517822265625, -5.675753116607609 ], [ -79.74676513671875, -5.675469875335637 ], [ -79.748435974121037, -5.675934791564885 ], [ -79.750587463378906, -5.675970077514648 ], [ -79.753349304199219, -5.676570892333928 ], [ -79.754539489746037, -5.676335811614877 ], [ -79.755386352539006, -5.675868988037109 ], [ -79.761276245117188, -5.669969081878662 ], [ -79.764396667480469, -5.664723873138428 ], [ -79.766159057617188, -5.662527084350586 ], [ -79.769447326660156, -5.660426139831486 ], [ -79.770706176757812, -5.659946918487549 ], [ -79.775321960449162, -5.659053802490234 ], [ -79.778533935546875, -5.658763885498047 ], [ -79.780067443847656, -5.658183097839355 ], [ -79.780555725097656, -5.657765865325928 ], [ -79.781120300292969, -5.656670093536377 ], [ -79.781608581542969, -5.654276847839355 ], [ -79.784225463867188, -5.651406764984131 ], [ -79.786064147949219, -5.648118019104004 ], [ -79.787635803222599, -5.647086143493596 ], [ -79.789932250976506, -5.646347999572697 ], [ -79.793434143066406, -5.646217823028564 ], [ -79.797012329101562, -5.646829128265381 ], [ -79.801689147949219, -5.646401882171631 ], [ -79.804878234863281, -5.646838188171387 ], [ -79.809181213378849, -5.651288986206055 ], [ -79.810096740722656, -5.651861190795898 ], [ -79.811775207519474, -5.653611183166447 ], [ -79.812263488769531, -5.654572963714543 ], [ -79.812469482421875, -5.655906200408936 ], [ -79.813468933105412, -5.656808853149414 ], [ -79.813804626464844, -5.657390117645207 ], [ -79.813896179199219, -5.659958839416504 ], [ -79.815963745117131, -5.663268089294434 ], [ -79.816390991210938, -5.665780067443848 ], [ -79.817108154296818, -5.666403770446777 ], [ -79.818069458007756, -5.666450023651066 ], [ -79.819091796874943, -5.665388107299805 ], [ -79.819763183593693, -5.664202213287354 ], [ -79.8201904296875, -5.660861015319824 ], [ -79.821098327636662, -5.658041954040471 ], [ -79.822006225585938, -5.656864166259766 ], [ -79.824745178222599, -5.65427923202509 ], [ -79.825462341308594, -5.653289794921818 ], [ -79.826156616210881, -5.648499011993408 ], [ -79.827056884765625, -5.645696163177433 ], [ -79.828422546386719, -5.644567966461125 ], [ -79.829978942871037, -5.644077777862435 ], [ -79.833175659179688, -5.645746231079102 ], [ -79.833587646484318, -5.645595073699951 ], [ -79.833770751953125, -5.641431808471623 ], [ -79.834083557128849, -5.639986991882324 ], [ -79.835418701171818, -5.637342929840031 ], [ -79.837440490722656, -5.635170936584473 ], [ -79.83795166015625, -5.631569862365666 ], [ -79.839118957519474, -5.630280017852783 ], [ -79.8394775390625, -5.630023956298771 ], [ -79.840957641601506, -5.627154827117863 ], [ -79.843063354492074, -5.624342918395996 ], [ -79.843498229980469, -5.622959136962834 ], [ -79.843994140624943, -5.619729995727539 ], [ -79.844482421874943, -5.618346214294434 ], [ -79.846382141113224, -5.614768028259277 ], [ -79.847579956054688, -5.612812042236328 ], [ -79.848983764648438, -5.611177921295166 ], [ -79.849380493164062, -5.610336780548096 ], [ -79.851089477539062, -5.605788230895939 ], [ -79.852188110351506, -5.603622913360539 ], [ -79.853652954101562, -5.598987102508545 ], [ -79.853652954101562, -5.598185062408447 ], [ -79.852828979492188, -5.596352100372314 ], [ -79.853019714355469, -5.594342231750488 ], [ -79.854637145996094, -5.591544151306152 ], [ -79.857093811035156, -5.588341236114502 ], [ -79.858100891113224, -5.586266994476318 ], [ -79.858924865722656, -5.579861164092961 ], [ -79.860198974609318, -5.576298236846924 ], [ -79.860420227050668, -5.575116157531681 ], [ -79.860206604003849, -5.57391881942749 ], [ -79.858833312988281, -5.571280002593994 ], [ -79.858627319335938, -5.570209026336613 ], [ -79.861122131347656, -5.567223072052002 ], [ -79.862258911132812, -5.565084934234619 ], [ -79.864234924316293, -5.563257217407227 ], [ -79.864799499511662, -5.562036037445068 ], [ -79.864639282226562, -5.557727813720646 ], [ -79.863281249999886, -5.553907871246224 ], [ -79.863067626953068, -5.552692890167179 ], [ -79.863304138183594, -5.55095195770258 ], [ -79.864204406738224, -5.549448013305664 ], [ -79.864166259765625, -5.548151016235295 ], [ -79.861457824706974, -5.543837070465088 ], [ -79.861503601074219, -5.542213916778508 ], [ -79.861289978027344, -5.541566848754826 ], [ -79.858787536621037, -5.539127826690674 ], [ -79.856071472167969, -5.534479141235352 ], [ -79.854423522949219, -5.532896995544434 ], [ -79.854103088378849, -5.531730175018311 ], [ -79.854141235351562, -5.530782222747746 ], [ -79.855163574218693, -5.529213905334473 ], [ -79.858779907226506, -5.526453971862679 ], [ -79.860855102539062, -5.523307800292912 ], [ -79.861717224121094, -5.522462844848633 ], [ -79.864250183105469, -5.520926952362004 ], [ -79.868309020996037, -5.519982814788818 ], [ -79.869155883789062, -5.519561767578125 ], [ -79.871780395507812, -5.514573097228947 ], [ -79.873474121093693, -5.513226032257023 ], [ -79.875381469726506, -5.51223611831665 ], [ -79.876998901367131, -5.510618209838867 ], [ -79.877311706542969, -5.509859085083008 ], [ -79.877380371093693, -5.508083820342904 ], [ -79.878028869628849, -5.505228042602482 ], [ -79.878631591796818, -5.500358104705811 ], [ -79.879066467285156, -5.498827934265137 ], [ -79.881210327148324, -5.496424198150635 ], [ -79.881538391113281, -5.495536804199219 ], [ -79.883148193359375, -5.493730068206787 ], [ -79.883644104003906, -5.492481231689453 ], [ -79.885398864746037, -5.490423202514648 ], [ -79.887901306152344, -5.489155769348145 ], [ -79.889221191406136, -5.487279891967773 ], [ -79.892570495605469, -5.484782218933105 ], [ -79.894912719726506, -5.482013225555363 ], [ -79.896080017089787, -5.481093883514404 ], [ -79.897468566894531, -5.480613231658936 ], [ -79.901481628417969, -5.480987071990967 ], [ -79.901535034179688, -5.486980915069523 ], [ -79.902481079101562, -5.489524841308594 ], [ -79.903617858886662, -5.491813182830754 ], [ -79.904792785644531, -5.493101119995117 ], [ -79.905685424804631, -5.493418216705265 ], [ -79.907150268554574, -5.493198871612492 ], [ -79.907669067382812, -5.493338108062687 ], [ -79.912590026855469, -5.496614933013916 ], [ -79.914367675781193, -5.497231006622314 ], [ -79.917617797851506, -5.499125003814697 ], [ -79.91998291015625, -5.500098228454533 ], [ -79.921295166015625, -5.501473903656006 ], [ -79.921554565429688, -5.50341796875 ], [ -79.922943115234375, -5.50506591796875 ], [ -79.925056457519474, -5.505282878875676 ], [ -79.926277160644531, -5.505812168121281 ], [ -79.929336547851506, -5.506381034851074 ], [ -79.930244445800781, -5.506303787231388 ], [ -79.931427001953125, -5.505636215209904 ], [ -79.932083129882812, -5.505802154541016 ], [ -79.932701110839787, -5.509148120880127 ], [ -79.933433532714844, -5.510928153991699 ], [ -79.9359130859375, -5.515358924865723 ], [ -79.9378662109375, -5.517047882080078 ], [ -79.939170837402287, -5.517333030700684 ], [ -79.941452026367131, -5.516520977020207 ], [ -79.942924499511719, -5.51649808883667 ], [ -79.943351745605469, -5.516153812408447 ], [ -79.946151733398381, -5.515635013580265 ], [ -79.94677734375, -5.51616096496582 ], [ -79.947441101074219, -5.517523765563965 ], [ -79.948081970214844, -5.520902156829834 ], [ -79.9488525390625, -5.523048877716008 ], [ -79.951240539550781, -5.526938915252629 ], [ -79.952072143554688, -5.530077934265023 ], [ -79.952644348144531, -5.530991077423096 ], [ -79.952621459960881, -5.532751083374023 ], [ -79.953140258789062, -5.534839153289738 ], [ -79.955047607421875, -5.53957891464222 ], [ -79.955642700195312, -5.542620182037297 ], [ -79.955650329589844, -5.544235229492188 ], [ -79.955421447753906, -5.544542789459172 ], [ -79.95562744140625, -5.548173904418832 ], [ -79.956291198730469, -5.550692081451416 ], [ -79.957649230957031, -5.55392408370966 ], [ -79.957633972167969, -5.559305191039982 ], [ -79.958061218261662, -5.560005187988281 ], [ -79.958831787109318, -5.564387798309269 ], [ -79.961341857910156, -5.572774887084904 ], [ -79.961288452148381, -5.573722839355469 ], [ -79.9610595703125, -5.574030876159611 ], [ -79.961151123046875, -5.576183795928955 ], [ -79.960716247558537, -5.577178001403752 ], [ -79.960655212402344, -5.577989101409855 ], [ -79.961471557617188, -5.57887601852417 ], [ -79.964019775390625, -5.578898906707707 ], [ -79.965293884277287, -5.579331874847355 ], [ -79.966842651367131, -5.580399036407471 ], [ -79.968452453613224, -5.58227014541626 ], [ -79.96990966796875, -5.587728023528996 ], [ -79.969879150390568, -5.590297222137451 ], [ -79.970314025878906, -5.591283798217773 ], [ -79.97052001953125, -5.592885971069279 ], [ -79.970611572265625, -5.600024223327637 ], [ -79.972816467285156, -5.61099100112915 ], [ -79.973335266113168, -5.6145920753479 ], [ -79.973464965820312, -5.620123863220215 ], [ -79.973258972167969, -5.626174926757812 ], [ -79.973823547363281, -5.631946086883545 ], [ -79.974189758300724, -5.632810115814209 ], [ -79.974494934082031, -5.637103080749512 ], [ -79.974716186523438, -5.63759803771967 ], [ -79.974777221679688, -5.640023231506348 ], [ -79.974655151367131, -5.644062042236271 ], [ -79.973846435546875, -5.647332191467171 ], [ -79.974037170410156, -5.64932918548584 ], [ -79.972763061523324, -5.651387214660645 ], [ -79.969711303710824, -5.653766155242863 ], [ -79.969497680664006, -5.656020164489746 ], [ -79.970413208007812, -5.657806873321476 ], [ -79.973670959472656, -5.66140079498291 ], [ -79.974967956542969, -5.663443088531494 ], [ -79.975631713867188, -5.664917945861816 ], [ -79.975631713867188, -5.667259216308594 ], [ -79.976119995117188, -5.668787956237793 ], [ -79.9776611328125, -5.671947002410889 ], [ -79.98089599609375, -5.676749229431096 ], [ -79.981826782226562, -5.678554058074894 ], [ -79.982231140136719, -5.680108070373478 ], [ -79.982429504394531, -5.682668209075928 ], [ -79.982757568359318, -5.683557033538762 ], [ -79.982284545898381, -5.687158107757568 ], [ -79.982292175292912, -5.690535068511906 ], [ -79.982536315917969, -5.691572189330998 ], [ -79.983482360839844, -5.693519115447941 ], [ -79.984024047851562, -5.695478916168213 ], [ -79.984466552734318, -5.700981140136662 ], [ -79.985145568847599, -5.703446865081787 ], [ -79.9854736328125, -5.706200122833252 ], [ -79.988121032714844, -5.713126182556152 ], [ -79.988952636718693, -5.714352130889836 ], [ -79.990287780761662, -5.717441082000732 ], [ -79.992446899414062, -5.71983814239502 ], [ -79.992805480957031, -5.721288204193115 ], [ -79.994606018066406, -5.725345134735107 ], [ -79.994613647460938, -5.728038787841797 ], [ -79.99346923828125, -5.731122016906738 ], [ -79.993415832519531, -5.73248291015625 ], [ -79.996086120605469, -5.738625049591064 ], [ -79.994674682617131, -5.744262218475285 ], [ -79.994056701660156, -5.749946117401123 ], [ -79.994155883789062, -5.751132965087834 ], [ -79.994834899902344, -5.752398014068604 ], [ -79.997039794921875, -5.755180835723763 ], [ -79.998031616210881, -5.756784915924072 ], [ -79.999000549316406, -5.758869171142521 ], [ -80.000007629394474, -5.762077808380127 ], [ -80.001907348632756, -5.764609813690186 ], [ -80.004615783691293, -5.765010833740234 ], [ -80.007698059082031, -5.766406059265137 ], [ -80.016189575195312, -5.770936965942326 ], [ -80.018890380859318, -5.772688865661564 ], [ -80.020225524902287, -5.774703979492131 ], [ -80.023017883300668, -5.77723217010498 ], [ -80.028060913085881, -5.783078193664551 ], [ -80.029884338378793, -5.784892082214299 ], [ -80.032844543456918, -5.787209987640381 ], [ -80.033447265625, -5.789655208587646 ], [ -80.034370422363168, -5.791891098022461 ], [ -80.037185668945312, -5.793595790863037 ], [ -80.037796020507756, -5.796113967895451 ], [ -80.03839111328125, -5.796912193298283 ], [ -80.039512634277287, -5.797612190246525 ], [ -80.040626525878849, -5.80006217956543 ], [ -80.041641235351562, -5.801540851593018 ], [ -80.043556213378906, -5.802687168121281 ], [ -80.046127319335938, -5.804645061492863 ], [ -80.049034118652287, -5.807692050933838 ], [ -80.052734375, -5.810991764068547 ], [ -80.054817199707031, -5.814454078674316 ], [ -80.055374145507812, -5.815773963928223 ], [ -80.057083129882812, -5.817352771758976 ], [ -80.057128906249943, -5.818568229675293 ], [ -80.058807373046875, -5.819455146789494 ], [ -80.063232421874943, -5.820588111877385 ], [ -80.065658569335938, -5.822250843048096 ], [ -80.066925048828125, -5.823527812957707 ], [ -80.068298339843693, -5.82604789733881 ], [ -80.069992065429688, -5.828131198883057 ], [ -80.072105407714787, -5.829940795898438 ], [ -80.073974609375, -5.830828189849797 ], [ -80.075401306152344, -5.83205604553217 ], [ -80.075630187988224, -5.832531929016056 ], [ -80.07562255859375, -5.833703994750863 ], [ -80.076042175292855, -5.834403991699162 ], [ -80.0770263671875, -5.835025787353516 ], [ -80.078277587890625, -5.835049152374268 ], [ -80.079780578613281, -5.835648059844914 ], [ -80.082832336425781, -5.839296817779541 ], [ -80.084678649902344, -5.841001987457275 ], [ -80.085739135742131, -5.841688156127873 ], [ -80.0865478515625, -5.843283176422119 ], [ -80.088912963867131, -5.845523834228516 ], [ -80.090675354003906, -5.849849224090519 ], [ -80.091567993164006, -5.851410865783635 ], [ -80.092575073242188, -5.85229301452631 ], [ -80.095085144042912, -5.853477954864445 ], [ -80.096412658691406, -5.856421947479191 ], [ -80.09735107421875, -5.857718944549561 ], [ -80.098670959472656, -5.858654022216797 ], [ -80.101196289062443, -5.85982704162592 ], [ -80.101921081542969, -5.860363006591797 ], [ -80.102844238281136, -5.861895084381104 ], [ -80.103851318359375, -5.86459112167347 ], [ -80.105438232421875, -5.866549015045166 ], [ -80.106704711914062, -5.867383003234863 ], [ -80.108436584472599, -5.86813306808466 ], [ -80.10951995849598, -5.868159770965519 ], [ -80.11037445068348, -5.867946147918644 ], [ -80.111671447753906, -5.868293762207031 ], [ -80.115814208984261, -5.871110916137695 ], [ -80.117378234863281, -5.871502876281738 ], [ -80.118988037109375, -5.871452808380127 ], [ -80.12078857421875, -5.872310161590576 ], [ -80.121894836425724, -5.875615119934025 ], [ -80.122352600097656, -5.879981994628849 ], [ -80.123931884765625, -5.884191036224365 ], [ -80.124130249023438, -5.889210224151611 ], [ -80.124572753906193, -5.890196800231934 ], [ -80.124580383300724, -5.890907764434814 ], [ -80.124862670898381, -5.891274929046574 ], [ -80.127815246581974, -5.891347885131836 ], [ -80.136444091796875, -5.890349864959717 ], [ -80.141387939453125, -5.889511108398381 ], [ -80.145416259765625, -5.888302803039494 ], [ -80.146820068359375, -5.888244152069092 ], [ -80.149673461914062, -5.889280796050969 ], [ -80.155761718749943, -5.889468193054199 ], [ -80.157760620117131, -5.889988899230957 ], [ -80.158287048339844, -5.89031791687006 ], [ -80.163650512695256, -5.890069007873535 ], [ -80.174095153808594, -5.891701221466064 ], [ -80.182968139648438, -5.8919358253479 ], [ -80.188575744628793, -5.891666889190674 ], [ -80.192245483398438, -5.891839981079102 ], [ -80.195457458496094, -5.892629146575814 ], [ -80.204116821289006, -5.893369197845402 ], [ -80.222023010253849, -5.895984172820988 ], [ -80.226585388183594, -5.896906852722168 ], [ -80.236381530761719, -5.900111198425293 ], [ -80.238929748535043, -5.901419162750187 ], [ -80.246109008789062, -5.903983116149846 ], [ -80.256996154785156, -5.909132003784123 ], [ -80.258621215820312, -5.909646987915039 ], [ -80.266326904296875, -5.913052082061768 ], [ -80.270668029785099, -5.915397167205811 ], [ -80.274070739746094, -5.916788101196289 ], [ -80.276664733886662, -5.918213844299316 ], [ -80.285461425781193, -5.922391891479435 ], [ -80.295204162597656, -5.926741123199463 ], [ -80.298866271972656, -5.929172039031926 ], [ -80.303596496582031, -5.931919097900391 ], [ -80.3077392578125, -5.935212135314885 ], [ -80.311386108398381, -5.937664031982422 ], [ -80.317718505859375, -5.94313383102417 ], [ -80.330642700195256, -5.95288181304926 ], [ -80.341163635253793, -5.962498188018742 ], [ -80.34527587890625, -5.96713399887085 ], [ -80.348800659179688, -5.970279216766301 ], [ -80.349906921386662, -5.972231864929199 ], [ -80.351341247558537, -5.974134922027588 ], [ -80.351829528808537, -5.975193023681641 ], [ -80.354904174804688, -5.97930717468256 ], [ -80.358078002929688, -5.984339237213135 ], [ -80.360076904296875, -5.986660957336426 ], [ -80.362060546875, -5.989558219909554 ], [ -80.364692687988224, -5.992523193359318 ], [ -80.368179321289062, -5.998633861541748 ], [ -80.371902465820312, -6.003424167633057 ], [ -80.376312255859375, -6.009929180145264 ], [ -80.38250732421875, -6.020134925842285 ], [ -80.510345458984261, -6.204720020294133 ], [ -80.539169311523438, -6.24744176864624 ], [ -80.624832153320312, -6.372485160827637 ], [ -80.626739501953125, -6.374859809875431 ], [ -80.626808166503906, -6.374584197998047 ], [ -80.627357482910099, -6.374584197998047 ], [ -80.627357482910099, -6.374306201934701 ], [ -80.627914428710881, -6.374306201934701 ], [ -80.627914428710881, -6.374028205871525 ], [ -80.628471374511662, -6.374028205871525 ], [ -80.628471374511662, -6.373750209808293 ], [ -80.6290283203125, -6.373750209808293 ], [ -80.6290283203125, -6.373194217681828 ], [ -80.629302978515625, -6.373194217681828 ], [ -80.629302978515625, -6.372918128967285 ], [ -80.630691528320256, -6.372918128967285 ], [ -80.630691528320256, -6.372640132904053 ], [ -80.631248474121037, -6.372640132904053 ], [ -80.631248474121037, -6.37236213684082 ], [ -80.631805419921875, -6.37236213684082 ], [ -80.631805419921875, -6.372084140777588 ], [ -80.632080078125, -6.372084140777588 ], [ -80.632080078125, -6.371806144714355 ], [ -80.632637023925781, -6.371806144714355 ], [ -80.632637023925781, -6.371528148651123 ], [ -80.633193969726562, -6.371528148651123 ], [ -80.633193969726562, -6.371249198913574 ], [ -80.63375091552723, -6.371249198913574 ], [ -80.63375091552723, -6.370971202850342 ], [ -80.634307861328068, -6.370971202850342 ], [ -80.634307861328068, -6.370696067810059 ], [ -80.634864807128849, -6.370696067810059 ], [ -80.634864807128849, -6.370418071746826 ], [ -80.635414123535156, -6.370418071746826 ], [ -80.635414123535156, -6.370140075683594 ], [ -80.635971069335938, -6.370140075683594 ], [ -80.635971069335938, -6.369859218597412 ], [ -80.636528015136719, -6.369859218597412 ], [ -80.636528015136719, -6.36958122253418 ], [ -80.637084960937443, -6.369583129882812 ], [ -80.637084960937443, -6.36930513381958 ], [ -80.637641906738224, -6.36930513381958 ], [ -80.637641906738224, -6.369027137756348 ], [ -80.638191223144531, -6.369027137756348 ], [ -80.638191223144531, -6.368749141693115 ], [ -80.638748168945312, -6.368749141693115 ], [ -80.638748168945312, -6.368471145629883 ], [ -80.639305114746094, -6.368471145629883 ], [ -80.639305114746094, -6.368195056915226 ], [ -80.639862060546875, -6.368195056915226 ], [ -80.639862060546875, -6.367917060851994 ], [ -80.640419006347599, -6.367917060851994 ], [ -80.640419006347599, -6.367639064788762 ], [ -80.641250610351506, -6.367639064788762 ], [ -80.641250610351506, -6.367361068725529 ], [ -80.641807556152344, -6.367361068725529 ], [ -80.641807556152344, -6.367083072662297 ], [ -80.642364501953125, -6.367083072662297 ], [ -80.642364501953125, -6.366805076599064 ], [ -80.64263916015625, -6.366805076599064 ], [ -80.64263916015625, -6.366527080535832 ], [ -80.643196105956918, -6.366527080535832 ], [ -80.643196105956918, -6.366249084472599 ], [ -80.644027709960881, -6.366249084472599 ], [ -80.644027709960881, -6.365971088409424 ], [ -80.644584655761719, -6.365971088409424 ], [ -80.644584655761719, -6.365694999694824 ], [ -80.6451416015625, -6.365694999694824 ], [ -80.6451416015625, -6.365417003631592 ], [ -80.64569091796875, -6.365417003631592 ], [ -80.64569091796875, -6.365139007568246 ], [ -80.646530151367074, -6.365139007568246 ], [ -80.646530151367074, -6.36486101150507 ], [ -80.647087097167912, -6.36486101150507 ], [ -80.647087097167912, -6.364583015441838 ], [ -80.647636413574219, -6.364583015441838 ], [ -80.647636413574219, -6.364305019378605 ], [ -80.647918701171875, -6.364305019378605 ], [ -80.647918701171875, -6.364027023315373 ], [ -80.648475646972656, -6.364027023315373 ], [ -80.648475646972656, -6.36374902725214 ], [ -80.648750305175781, -6.36374902725214 ], [ -80.648750305175781, -6.363471031188908 ], [ -80.649307250976562, -6.363472938537598 ], [ -80.649307250976562, -6.363194942474365 ], [ -80.649581909179574, -6.363194942474365 ], [ -80.649581909179574, -6.362916946411133 ], [ -80.649864196777287, -6.362916946411133 ], [ -80.649864196777287, -6.3626389503479 ], [ -80.650413513183537, -6.3626389503479 ], [ -80.650413513183537, -6.362360954284668 ], [ -80.650695800781193, -6.362360954284668 ], [ -80.650695800781193, -6.362082958221436 ], [ -80.650970458984375, -6.362082958221436 ], [ -80.650970458984375, -6.361804962158203 ], [ -80.651252746582031, -6.361804962158203 ], [ -80.651252746582031, -6.361528873443604 ], [ -80.651802062988281, -6.361528873443604 ], [ -80.651802062988281, -6.361250877380371 ], [ -80.652084350585938, -6.361250877380371 ], [ -80.652084350585938, -6.360972881317139 ], [ -80.652359008789062, -6.360972881317139 ], [ -80.652359008789062, -6.360694885253906 ], [ -80.652641296386719, -6.360694885253906 ], [ -80.652641296386719, -6.360416889190674 ], [ -80.653190612792912, -6.360416889190674 ], [ -80.653198242187443, -6.360138893127441 ], [ -80.653472900390568, -6.360138893127441 ], [ -80.653472900390568, -6.359860897064209 ], [ -80.653747558593693, -6.359860897064209 ], [ -80.653747558593693, -6.359582901000977 ], [ -80.654304504394531, -6.359582901000977 ], [ -80.654304504394531, -6.359304904937744 ], [ -80.655136108398438, -6.359304904937744 ], [ -80.655136108398438, -6.359028816223088 ], [ -80.655693054199219, -6.359028816223088 ], [ -80.655693054199219, -6.358750820159855 ], [ -80.65625, -6.358750820159855 ], [ -80.65625, -6.35847282409668 ], [ -80.657081604003849, -6.35847282409668 ], [ -80.657081604003849, -6.358194828033447 ], [ -80.657638549804688, -6.358194828033447 ], [ -80.657638549804688, -6.357916831970215 ], [ -80.658470153808594, -6.357916831970215 ], [ -80.658470153808594, -6.357637882232609 ], [ -80.659027099609261, -6.357637882232609 ], [ -80.659027099609261, -6.357359886169377 ], [ -80.659584045410099, -6.357359886169377 ], [ -80.659584045410099, -6.357081890106144 ], [ -80.660415649414062, -6.357081890106144 ], [ -80.660415649414062, -6.356803894042969 ], [ -80.660972595214844, -6.356803894042969 ], [ -80.660972595214844, -6.356529235839787 ], [ -80.661529541015625, -6.356529235839787 ], [ -80.661529541015625, -6.356250762939396 ], [ -80.662361145019418, -6.356250762939396 ], [ -80.662361145019418, -6.355971813201791 ], [ -80.662918090820256, -6.355971813201791 ], [ -80.662918090820256, -6.355693817138615 ], [ -80.663475036621037, -6.355693817138615 ], [ -80.663475036621037, -6.355415821075383 ], [ -80.664024353027344, -6.355415821075383 ], [ -80.664024353027344, -6.35513782501215 ], [ -80.664581298828125, -6.35513782501215 ], [ -80.664581298828125, -6.354859828948918 ], [ -80.665138244628906, -6.354859828948918 ], [ -80.665138244628906, -6.354581832885685 ], [ -80.665412902831918, -6.354581832885685 ], [ -80.665412902831918, -6.354306221008301 ], [ -80.665969848632756, -6.354306221008301 ], [ -80.665969848632756, -6.354028224945068 ], [ -80.666526794433537, -6.354028224945068 ], [ -80.666526794433537, -6.353750228881836 ], [ -80.667083740234375, -6.353750228881836 ], [ -80.667083740234375, -6.353472232818604 ], [ -80.667640686035156, -6.353472232818604 ], [ -80.667640686035156, -6.353194236755257 ], [ -80.668197631835938, -6.353194236755257 ], [ -80.668197631835938, -6.35291576385498 ], [ -80.668746948242131, -6.35291576385498 ], [ -80.668746948242131, -6.352637767791748 ], [ -80.669303894042912, -6.352637767791748 ], [ -80.669303894042912, -6.352359771728402 ], [ -80.669586181640568, -6.352359771728402 ], [ -80.669586181640568, -6.352081775665226 ], [ -80.669860839843693, -6.352084159851074 ], [ -80.669860839843693, -6.351806163787842 ], [ -80.670135498046875, -6.351806163787842 ], [ -80.670135498046875, -6.351528167724609 ], [ -80.671249389648438, -6.351528167724609 ], [ -80.671249389648438, -6.351250171661377 ], [ -80.671806335449105, -6.351250171661377 ], [ -80.671806335449105, -6.350972175598145 ], [ -80.672363281249943, -6.350972175598145 ], [ -80.672363281249943, -6.350694179534912 ], [ -80.672637939453068, -6.350694179534912 ], [ -80.672637939453068, -6.35041618347168 ], [ -80.673194885253906, -6.35041618347168 ], [ -80.673194885253906, -6.350138187408447 ], [ -80.673751831054688, -6.350138187408447 ], [ -80.673751831054688, -6.349860191345215 ], [ -80.674308776855469, -6.349860191345215 ], [ -80.674308776855469, -6.349582195281869 ], [ -80.674583435058594, -6.349584102630615 ], [ -80.674583435058594, -6.349306106567383 ], [ -80.675140380859261, -6.349306106567383 ], [ -80.675140380859261, -6.34902811050415 ], [ -80.675697326660099, -6.34902811050415 ], [ -80.675697326660099, -6.348750114440918 ], [ -80.676528930664062, -6.348750114440918 ], [ -80.676528930664062, -6.348472118377686 ], [ -80.677085876464844, -6.348472118377686 ], [ -80.677085876464844, -6.348194122314453 ], [ -80.677635192871094, -6.348194122314453 ], [ -80.677635192871094, -6.347916126251221 ], [ -80.678474426269474, -6.347916126251221 ], [ -80.678474426269474, -6.347638130187988 ], [ -80.679031372070256, -6.347638130187988 ], [ -80.679031372070256, -6.347360134124756 ], [ -80.679862976074219, -6.347362041473332 ], [ -80.679862976074219, -6.347084045410099 ], [ -80.680419921875, -6.347084045410099 ], [ -80.680419921875, -6.346806049346867 ], [ -80.68096923828125, -6.346806049346867 ], [ -80.68096923828125, -6.346528053283691 ], [ -80.681526184081974, -6.346528053283691 ], [ -80.681526184081974, -6.346250057220459 ], [ -80.682357788085881, -6.346250057220459 ], [ -80.682357788085881, -6.345972061157227 ], [ -80.682914733886719, -6.345972061157227 ], [ -80.682914733886719, -6.345694065093994 ], [ -80.683197021484375, -6.345694065093994 ], [ -80.683197021484375, -6.345415115356388 ], [ -80.683746337890625, -6.345415115356388 ], [ -80.683746337890625, -6.345137119293156 ], [ -80.684303283691406, -6.345137119293156 ], [ -80.684303283691406, -6.344861984252873 ], [ -80.684860229492131, -6.344861984252873 ], [ -80.684860229492131, -6.344305992126408 ], [ -80.685142517089787, -6.344305992126408 ], [ -80.685142517089787, -6.344027042388802 ], [ -80.685417175292912, -6.344027042388802 ], [ -80.685417175292912, -6.343749046325627 ], [ -80.68597412109375, -6.343749046325627 ], [ -80.68597412109375, -6.343471050262394 ], [ -80.686248779296875, -6.343471050262394 ], [ -80.686248779296875, -6.343195915222168 ], [ -80.686805725097656, -6.343195915222168 ], [ -80.686805725097656, -6.342917919158936 ], [ -80.687080383300781, -6.342917919158936 ], [ -80.687080383300781, -6.342639923095703 ], [ -80.687919616699105, -6.342639923095703 ], [ -80.687919616699105, -6.342360973358154 ], [ -80.688468933105412, -6.342360973358154 ], [ -80.688468933105412, -6.342082977294922 ], [ -80.689857482910156, -6.342082977294922 ], [ -80.689857482910156, -6.341804981231689 ], [ -80.690971374511605, -6.341804981231689 ], [ -80.690971374511605, -6.341526985168457 ], [ -80.691528320312443, -6.341526985168457 ], [ -80.691528320312443, -6.341248989105225 ], [ -80.692085266113224, -6.341248989105225 ], [ -80.692085266113224, -6.340972900390625 ], [ -80.692642211914062, -6.340972900390625 ], [ -80.692642211914062, -6.340694904327393 ], [ -80.693191528320312, -6.340694904327393 ], [ -80.693191528320312, -6.34041690826416 ], [ -80.693748474121094, -6.34041690826416 ], [ -80.693748474121094, -6.340138912200928 ], [ -80.694305419921818, -6.340138912200928 ], [ -80.694305419921818, -6.339860916137695 ], [ -80.694580078124943, -6.339860916137695 ], [ -80.694580078124943, -6.339582920074463 ], [ -80.694862365722599, -6.339582920074463 ], [ -80.694862365722599, -6.33930492401123 ], [ -80.695137023925724, -6.33930492401123 ], [ -80.695137023925724, -6.339026927947998 ], [ -80.695419311523381, -6.339026927947998 ], [ -80.695419311523381, -6.338748931884766 ], [ -80.695693969726562, -6.338748931884766 ], [ -80.695693969726562, -6.338472843170109 ], [ -80.695968627929688, -6.338472843170109 ], [ -80.695968627929688, -6.338194847106877 ], [ -80.696525573730469, -6.338194847106877 ], [ -80.696525573730469, -6.337916851043644 ], [ -80.696807861328125, -6.337916851043644 ], [ -80.696807861328125, -6.337638854980412 ], [ -80.69708251953125, -6.337638854980412 ], [ -80.69708251953125, -6.337360858917236 ], [ -80.698753356933594, -6.337360858917236 ], [ -80.698753356933594, -6.337082862854004 ], [ -80.6995849609375, -6.337082862854004 ], [ -80.6995849609375, -6.336804866790771 ], [ -80.700691223144474, -6.336804866790771 ], [ -80.700691223144474, -6.336526870727539 ], [ -80.701530456542912, -6.336526870727539 ], [ -80.701530456542912, -6.336248874664307 ], [ -80.701805114746094, -6.336248874664307 ], [ -80.701805114746094, -6.33597278594965 ], [ -80.702079772949219, -6.33597278594965 ], [ -80.702079772949219, -6.335694789886418 ], [ -80.70263671875, -6.335694789886418 ], [ -80.70263671875, -6.335416793823185 ], [ -80.702919006347656, -6.335416793823185 ], [ -80.702919006347656, -6.335138797759953 ], [ -80.703193664550781, -6.335138797759953 ], [ -80.703193664550781, -6.334860801696721 ], [ -80.704307556152287, -6.334860801696721 ], [ -80.704307556152287, -6.334582805633488 ], [ -80.70513916015625, -6.334582805633488 ], [ -80.70513916015625, -6.334304809570256 ], [ -80.706253051757812, -6.334304809570256 ], [ -80.706253051757812, -6.334026813507023 ], [ -80.706527709960938, -6.334026813507023 ], [ -80.706527709960938, -6.333751201629525 ], [ -80.706802368163949, -6.333751201629525 ], [ -80.706802368163949, -6.333473205566349 ], [ -80.707084655761662, -6.333473205566349 ], [ -80.707084655761662, -6.333195209503117 ], [ -80.707359313964787, -6.333195209503117 ], [ -80.707359313964787, -6.332917213439885 ], [ -80.709861755371094, -6.332917213439885 ], [ -80.709861755371094, -6.332639217376652 ], [ -80.710693359374943, -6.332639217376652 ], [ -80.710693359374943, -6.33236122131342 ], [ -80.711250305175724, -6.33236122131342 ], [ -80.711250305175724, -6.332083225250187 ], [ -80.711807250976562, -6.332083225250187 ], [ -80.711807250976562, -6.331807136535645 ], [ -80.712913513183594, -6.331807136535645 ], [ -80.712913513183594, -6.331529140472412 ], [ -80.713470458984318, -6.331529140472412 ], [ -80.713470458984318, -6.33125114440918 ], [ -80.713752746581974, -6.33125114440918 ], [ -80.713752746581974, -6.330973148345947 ], [ -80.714859008789062, -6.330973148345947 ], [ -80.714859008789062, -6.330695152282715 ], [ -80.715690612792969, -6.330695152282715 ], [ -80.7156982421875, -6.330417156219482 ], [ -80.716529846191293, -6.330417156219482 ], [ -80.716529846191293, -6.330138206481934 ], [ -80.716804504394474, -6.330138206481934 ], [ -80.716804504394474, -6.329860210418701 ], [ -80.717086791992131, -6.329860210418701 ], [ -80.717086791992131, -6.329582214355469 ], [ -80.717918395996094, -6.329582214355469 ], [ -80.717918395996094, -6.329304218292236 ], [ -80.718475341796875, -6.329304218292236 ], [ -80.718475341796875, -6.329026222229004 ], [ -80.71875, -6.329026222229004 ], [ -80.71875, -6.328748226165771 ], [ -80.719581604003793, -6.328748226165771 ], [ -80.719581604003793, -6.329026222229004 ], [ -80.720138549804631, -6.329026222229004 ], [ -80.720138549804631, -6.328748226165771 ], [ -80.720413208007756, -6.328748226165771 ], [ -80.720413208007756, -6.328470230102425 ], [ -80.720970153808594, -6.328472137451172 ], [ -80.720970153808594, -6.328194141387939 ], [ -80.722084045410156, -6.328194141387939 ], [ -80.722084045410156, -6.327916145324707 ], [ -80.722640991210938, -6.327916145324707 ], [ -80.722640991210938, -6.327638149261475 ], [ -80.723197937011662, -6.327638149261475 ], [ -80.723197937011662, -6.327360153198242 ], [ -80.723747253417912, -6.327360153198242 ], [ -80.723747253417912, -6.32708215713501 ], [ -80.72430419921875, -6.32708215713501 ], [ -80.72430419921875, -6.326806068420353 ], [ -80.725135803222656, -6.326806068420353 ], [ -80.725135803222656, -6.326528072357121 ], [ -80.725692749023438, -6.326528072357121 ], [ -80.725692749023438, -6.326250076293888 ], [ -80.726249694824162, -6.326250076293888 ], [ -80.726249694824162, -6.325972080230656 ], [ -80.726806640624943, -6.325972080230656 ], [ -80.726806640624943, -6.325694084167424 ], [ -80.727363586425781, -6.325694084167424 ], [ -80.727363586425781, -6.325416088104248 ], [ -80.727912902832031, -6.325416088104248 ], [ -80.727912902832031, -6.325138092041016 ], [ -80.72902679443348, -6.325138092041016 ], [ -80.72902679443348, -6.324860095977783 ], [ -80.730415344238281, -6.324860095977783 ], [ -80.730415344238281, -6.32458400726307 ], [ -80.730972290039062, -6.32458400726307 ], [ -80.730972290039062, -6.324306011199894 ], [ -80.732360839843636, -6.324306011199894 ], [ -80.732360839843636, -6.324028015136662 ], [ -80.732635498046818, -6.324028015136662 ], [ -80.732635498046818, -6.323750019073429 ], [ -80.733192443847599, -6.323750019073429 ], [ -80.733192443847599, -6.323472023010197 ], [ -80.733474731445256, -6.323472023010197 ], [ -80.733474731445256, -6.323750019073429 ], [ -80.733749389648438, -6.323750019073429 ], [ -80.733749389648438, -6.323472023010197 ], [ -80.734024047851562, -6.323472023010197 ], [ -80.734024047851562, -6.323194026946965 ], [ -80.735137939453125, -6.323194026946965 ], [ -80.735137939453125, -6.322916030883732 ], [ -80.735694885253849, -6.322916030883732 ], [ -80.735694885253849, -6.3226380348205 ], [ -80.736251831054631, -6.3226380348205 ], [ -80.736251831054631, -6.322360038757267 ], [ -80.736526489257756, -6.322361946105957 ], [ -80.736526489257756, -6.322083950042725 ], [ -80.737083435058594, -6.322083950042725 ], [ -80.737083435058594, -6.321805953979492 ], [ -80.737640380859375, -6.321805953979492 ], [ -80.737640380859375, -6.32152795791626 ], [ -80.738471984863281, -6.32152795791626 ], [ -80.738471984863281, -6.321249961853027 ], [ -80.739585876464787, -6.321249961853027 ], [ -80.739585876464787, -6.320973873138428 ], [ -80.740135192871094, -6.320971965789681 ], [ -80.740135192871094, -6.320693969726506 ], [ -80.74041748046875, -6.320693969726506 ], [ -80.74041748046875, -6.320415973663273 ], [ -80.741249084472656, -6.320415973663273 ], [ -80.741249084472656, -6.32013988494873 ], [ -80.742080688476506, -6.32013988494873 ], [ -80.742080688476506, -6.319861888885498 ], [ -80.742919921874943, -6.319861888885498 ], [ -80.742919921874943, -6.319583892822266 ], [ -80.743194580078125, -6.319583892822266 ], [ -80.743194580078125, -6.319305896759033 ], [ -80.74346923828125, -6.319305896759033 ], [ -80.74346923828125, -6.319027900695801 ], [ -80.744308471679688, -6.319027900695801 ], [ -80.744308471679688, -6.318749904632568 ], [ -80.744583129882812, -6.318749904632568 ], [ -80.744583129882812, -6.318192958831787 ], [ -80.74514007568348, -6.318192958831787 ], [ -80.74514007568348, -6.317917823791504 ], [ -80.745414733886662, -6.317917823791504 ], [ -80.745414733886662, -6.318192958831787 ], [ -80.746803283691406, -6.318192958831787 ], [ -80.746803283691406, -6.317917823791504 ], [ -80.747360229492188, -6.317917823791504 ], [ -80.747360229492188, -6.317639827728271 ], [ -80.747642517089844, -6.317639827728271 ], [ -80.747642517089844, -6.317361831665039 ], [ -80.747917175292969, -6.317361831665039 ], [ -80.747917175292969, -6.317083835601807 ], [ -80.748474121093693, -6.317083835601807 ], [ -80.748474121093693, -6.316805839538574 ], [ -80.749305725097599, -6.316805839538574 ], [ -80.749305725097599, -6.316526889800969 ], [ -80.749862670898438, -6.316526889800969 ], [ -80.749862670898438, -6.316248893737793 ], [ -80.752082824706974, -6.316248893737793 ], [ -80.752082824706974, -6.316526889800969 ], [ -80.752357482910099, -6.316526889800969 ], [ -80.752357482910099, -6.315970897674561 ], [ -80.752914428710938, -6.315970897674561 ], [ -80.752914428710938, -6.315692901611328 ], [ -80.753196716308594, -6.315692901611328 ], [ -80.753196716308594, -6.315417766570988 ], [ -80.753753662109375, -6.315417766570988 ], [ -80.753753662109375, -6.315138816833439 ], [ -80.754302978515625, -6.315138816833439 ], [ -80.754302978515625, -6.314860820770207 ], [ -80.755142211914006, -6.314860820770207 ], [ -80.755142211914006, -6.314582824706974 ], [ -80.755691528320256, -6.314582824706974 ], [ -80.755691528320256, -6.314304828643742 ], [ -80.756248474121094, -6.314304828643742 ], [ -80.756248474121094, -6.31402683258051 ], [ -80.757080078125, -6.31402683258051 ], [ -80.757080078125, -6.313748836517277 ], [ -80.757637023925668, -6.313748836517277 ], [ -80.757637023925668, -6.313473224639893 ], [ -80.758193969726506, -6.313473224639893 ], [ -80.758193969726506, -6.31319522857666 ], [ -80.759025573730469, -6.31319522857666 ], [ -80.759025573730469, -6.312917232513428 ], [ -80.75958251953125, -6.312917232513428 ], [ -80.75958251953125, -6.312639236450082 ], [ -80.760139465332031, -6.312639236450082 ], [ -80.760139465332031, -6.312360763549805 ], [ -80.760971069335824, -6.312360763549805 ], [ -80.760971069335824, -6.312082767486572 ], [ -80.761528015136662, -6.312082767486572 ], [ -80.761528015136662, -6.311804771423226 ], [ -80.762359619140625, -6.311804771423226 ], [ -80.762359619140625, -6.311526775360051 ], [ -80.762916564941406, -6.311526775360051 ], [ -80.762916564941406, -6.311248779296818 ], [ -80.763473510742188, -6.311248779296818 ], [ -80.763473510742188, -6.310970783233586 ], [ -80.764305114746037, -6.310970783233586 ], [ -80.764305114746037, -6.310692787170353 ], [ -80.764862060546818, -6.310695171356201 ], [ -80.764862060546818, -6.310417175292969 ], [ -80.765419006347599, -6.310417175292969 ], [ -80.765419006347599, -6.310139179229736 ], [ -80.765975952148438, -6.310139179229736 ], [ -80.765975952148438, -6.309861183166504 ], [ -80.766525268554688, -6.309861183166504 ], [ -80.766525268554688, -6.309583187103271 ], [ -80.767082214355469, -6.309583187103271 ], [ -80.767082214355469, -6.309305191040039 ], [ -80.767639160156193, -6.309305191040039 ], [ -80.767639160156193, -6.309027194976693 ], [ -80.768196105956974, -6.309027194976693 ], [ -80.768196105956974, -6.308749198913517 ], [ -80.768753051757812, -6.308749198913517 ], [ -80.768753051757812, -6.308471202850285 ], [ -80.769302368164062, -6.308473110198975 ], [ -80.769302368164062, -6.308195114135742 ], [ -80.769859313964844, -6.308195114135742 ], [ -80.769859313964844, -6.30791711807251 ], [ -80.770416259765511, -6.30791711807251 ], [ -80.770416259765511, -6.307639122009277 ], [ -80.770973205566349, -6.307639122009277 ], [ -80.770973205566349, -6.307361125946045 ], [ -80.771804809570312, -6.307361125946045 ], [ -80.771804809570312, -6.307083129882812 ], [ -80.772361755371094, -6.307083129882812 ], [ -80.772361755371094, -6.30680513381958 ], [ -80.772918701171875, -6.30680513381958 ], [ -80.772918701171875, -6.306527137756348 ], [ -80.773475646972656, -6.306527137756348 ], [ -80.773475646972656, -6.306249141693115 ], [ -80.774024963378849, -6.306249141693115 ], [ -80.774024963378849, -6.305970191955566 ], [ -80.774581909179631, -6.305973052978516 ], [ -80.774581909179631, -6.305695056915283 ], [ -80.774864196777287, -6.305695056915283 ], [ -80.774864196777287, -6.305417060852051 ], [ -80.775413513183594, -6.305417060852051 ], [ -80.775413513183594, -6.305139064788818 ], [ -80.775970458984375, -6.305139064788818 ], [ -80.775970458984375, -6.304861068725586 ], [ -80.776527404785156, -6.304861068725586 ], [ -80.776527404785156, -6.30458211898798 ], [ -80.776802062988168, -6.30458211898798 ], [ -80.776802062988168, -6.304304122924805 ], [ -80.777359008789006, -6.304304122924805 ], [ -80.777359008789006, -6.304028987884465 ], [ -80.777915954589787, -6.304028987884465 ], [ -80.777915954589787, -6.303750991821232 ], [ -80.778472900390625, -6.303750991821232 ], [ -80.778472900390625, -6.303472995758 ], [ -80.77874755859375, -6.303472995758 ], [ -80.77874755859375, -6.303194999694767 ], [ -80.779304504394531, -6.303194999694767 ], [ -80.779304504394531, -6.302916049957219 ], [ -80.779861450195312, -6.302916049957219 ], [ -80.779861450195312, -6.302638053893986 ], [ -80.780136108398381, -6.302638053893986 ], [ -80.780136108398381, -6.302360057830754 ], [ -80.780693054199162, -6.302360057830754 ], [ -80.780693054199162, -6.302084922790527 ], [ -80.78125, -6.302084922790527 ], [ -80.78125, -6.301806926727295 ], [ -80.781806945800781, -6.301806926727295 ], [ -80.781806945800781, -6.301527976989746 ], [ -80.782081604003906, -6.301527976989746 ], [ -80.782081604003906, -6.301249980926514 ], [ -80.782638549804688, -6.301249980926514 ], [ -80.782638549804688, -6.300971984863281 ], [ -80.783195495605355, -6.300971984863281 ], [ -80.783195495605355, -6.300693988800049 ], [ -80.783470153808537, -6.300693988800049 ], [ -80.783470153808537, -6.300415992736816 ], [ -80.784027099609318, -6.300415992736816 ], [ -80.784027099609318, -6.300137996673584 ], [ -80.784584045410156, -6.300137996673584 ], [ -80.784584045410156, -6.299860000610238 ], [ -80.785140991210938, -6.299860000610238 ], [ -80.785140991210938, -6.299583911895752 ], [ -80.785697937011719, -6.299583911895752 ], [ -80.785697937011719, -6.29930591583252 ], [ -80.785972595214844, -6.29930591583252 ], [ -80.785972595214844, -6.299027919769287 ], [ -80.786529541015511, -6.299027919769287 ], [ -80.786529541015511, -6.298749923706055 ], [ -80.787086486816349, -6.298749923706055 ], [ -80.787086486816349, -6.298471927642822 ], [ -80.787635803222656, -6.298471927642822 ], [ -80.787635803222656, -6.29819393157959 ], [ -80.788192749023438, -6.29819393157959 ], [ -80.788192749023438, -6.297915935516357 ], [ -80.788749694824219, -6.297915935516357 ], [ -80.788749694824219, -6.297637939453125 ], [ -80.789024353027344, -6.297637939453125 ], [ -80.789024353027344, -6.297359943389893 ], [ -80.789581298828011, -6.297359943389893 ], [ -80.789581298828011, -6.297083854675236 ], [ -80.790138244628849, -6.297083854675236 ], [ -80.790138244628849, -6.296805858612061 ], [ -80.790695190429631, -6.296805858612061 ], [ -80.790695190429631, -6.296527862548828 ], [ -80.790969848632812, -6.296527862548828 ], [ -80.790969848632812, -6.296249866485596 ], [ -80.791526794433594, -6.296249866485596 ], [ -80.791526794433594, -6.295971870422363 ], [ -80.79180908203125, -6.295971870422363 ], [ -80.79180908203125, -6.295693874359131 ], [ -80.7923583984375, -6.295693874359131 ], [ -80.7923583984375, -6.295415878295898 ], [ -80.792640686035156, -6.295415878295898 ], [ -80.792640686035156, -6.295137882232666 ], [ -80.793197631835881, -6.295137882232666 ], [ -80.793197631835881, -6.29486179351801 ], [ -80.793472290039006, -6.29486179351801 ], [ -80.793472290039006, -6.294583797454777 ], [ -80.794029235839787, -6.294583797454777 ], [ -80.794029235839787, -6.294305801391545 ], [ -80.794303894042969, -6.294305801391545 ], [ -80.794303894042969, -6.294027805328312 ], [ -80.794586181640625, -6.294027805328312 ], [ -80.794586181640625, -6.29374980926508 ], [ -80.79486083984375, -6.29374980926508 ], [ -80.79486083984375, -6.293471813201847 ], [ -80.795135498046875, -6.293471813201847 ], [ -80.795135498046875, -6.293193817138672 ], [ -80.795417785644531, -6.293193817138672 ], [ -80.795417785644531, -6.292918205261174 ], [ -80.795692443847656, -6.292918205261174 ], [ -80.795692443847656, -6.292640209197941 ], [ -80.795974731445199, -6.292640209197941 ], [ -80.795974731445199, -6.292362213134709 ], [ -80.796249389648381, -6.292362213134709 ], [ -80.796249389648381, -6.292084217071476 ], [ -80.796524047851506, -6.292084217071476 ], [ -80.796524047851506, -6.291806221008244 ], [ -80.796806335449162, -6.291806221008244 ], [ -80.796806335449162, -6.291528224945012 ], [ -80.79736328125, -6.291528224945012 ], [ -80.79736328125, -6.291250228881779 ], [ -80.797637939453125, -6.291250228881779 ], [ -80.797637939453125, -6.290970802307129 ], [ -80.797920227050781, -6.290970802307129 ], [ -80.797920227050781, -6.290692806243783 ], [ -80.798194885253906, -6.290692806243783 ], [ -80.798194885253906, -6.290418148040771 ], [ -80.798469543457031, -6.290418148040771 ], [ -80.798469543457031, -6.290140151977539 ], [ -80.799026489257699, -6.290140151977539 ], [ -80.799026489257699, -6.289862155914307 ], [ -80.799308776855355, -6.289862155914307 ], [ -80.799308776855355, -6.289584159850961 ], [ -80.799858093261662, -6.289584159850961 ], [ -80.799858093261662, -6.289305210113525 ], [ -80.800140380859318, -6.289305210113525 ], [ -80.800140380859318, -6.289027214050293 ], [ -80.800697326660156, -6.289027214050293 ], [ -80.800697326660156, -6.288749217987061 ], [ -80.800971984863281, -6.288749217987061 ], [ -80.800971984863281, -6.288471221923828 ], [ -80.801528930664062, -6.288471221923828 ], [ -80.801528930664062, -6.288193225860596 ], [ -80.801803588867188, -6.288193225860596 ], [ -80.801803588867188, -6.28791522979725 ], [ -80.802360534667855, -6.28791522979725 ], [ -80.802360534667855, -6.287637233734074 ], [ -80.802635192871037, -6.287637233734074 ], [ -80.802635192871037, -6.287359237670842 ], [ -80.803192138671818, -6.287359237670842 ], [ -80.803192138671818, -6.287080764770394 ], [ -80.803474426269474, -6.287083148956299 ], [ -80.803474426269474, -6.286527156829834 ], [ -80.803749084472656, -6.286527156829834 ], [ -80.803749084472656, -6.286249160766602 ], [ -80.804031372070312, -6.286249160766602 ], [ -80.804031372070312, -6.285971164703369 ], [ -80.804306030273438, -6.285971164703369 ], [ -80.804306030273438, -6.285695075988713 ], [ -80.804580688476562, -6.285695075988713 ], [ -80.804580688476562, -6.28541707992548 ], [ -80.804862976074219, -6.28541707992548 ], [ -80.804862976074219, -6.285139083862248 ], [ -80.805419921875, -6.285139083862248 ], [ -80.805419921875, -6.284861087799072 ], [ -80.805694580078068, -6.284861087799072 ], [ -80.805694580078068, -6.284305095672607 ], [ -80.806251525878849, -6.284305095672607 ], [ -80.806251525878849, -6.283749103546143 ], [ -80.806808471679631, -6.283749103546143 ], [ -80.806808471679631, -6.28347110748291 ], [ -80.807083129882812, -6.283473014831486 ], [ -80.807083129882812, -6.282917022705021 ], [ -80.807357788085938, -6.282917022705021 ], [ -80.807357788085938, -6.282639026641789 ], [ -80.807640075683594, -6.282639026641789 ], [ -80.807640075683594, -6.282361030578556 ], [ -80.807914733886719, -6.282361030578556 ], [ -80.807914733886719, -6.282083034515324 ], [ -80.8084716796875, -6.282083034515324 ], [ -80.8084716796875, -6.281805038452092 ], [ -80.809028625488224, -6.281805038452092 ], [ -80.809028625488224, -6.281528949737549 ], [ -80.809303283691349, -6.281527042388859 ], [ -80.809303283691349, -6.281249046325684 ], [ -80.809585571289006, -6.281250953674316 ], [ -80.809585571289006, -6.280694961547852 ], [ -80.809860229492131, -6.280694961547852 ], [ -80.809860229492131, -6.280416965484505 ], [ -80.810142517089844, -6.280416965484505 ], [ -80.810142517089844, -6.28013896942133 ], [ -80.810417175292969, -6.28013896942133 ], [ -80.810417175292969, -6.279860973358097 ], [ -80.810691833496094, -6.279860973358097 ], [ -80.810691833496094, -6.279582977294865 ], [ -80.81097412109375, -6.279582977294865 ], [ -80.81097412109375, -6.279304981231633 ], [ -80.811248779296875, -6.279306888580322 ], [ -80.811248779296875, -6.278748035430795 ], [ -80.811531066894531, -6.278750896453857 ], [ -80.811531066894531, -6.278194904327393 ], [ -80.812080383300724, -6.278194904327393 ], [ -80.812080383300724, -6.27791690826416 ], [ -80.812637329101506, -6.27791690826416 ], [ -80.812637329101506, -6.277638912200928 ], [ -80.812919616699162, -6.277638912200928 ], [ -80.812919616699162, -6.277081966400146 ], [ -80.813194274902344, -6.277081966400146 ], [ -80.813194274902344, -6.276803970336914 ], [ -80.813468933105469, -6.276803970336914 ], [ -80.813468933105469, -6.276528835296631 ], [ -80.813751220703125, -6.276528835296631 ], [ -80.813751220703125, -6.276250839233398 ], [ -80.815139770507699, -6.276250839233398 ], [ -80.815139770507699, -6.275693893432617 ], [ -80.815696716308537, -6.275693893432617 ], [ -80.815696716308537, -6.275415897369385 ], [ -80.815971374511662, -6.275415897369385 ], [ -80.815971374511662, -6.274305820465031 ], [ -80.816253662109318, -6.274305820465031 ], [ -80.816253662109318, -6.274027824401799 ], [ -80.816802978515625, -6.274027824401799 ], [ -80.816802978515625, -6.273471832275334 ], [ -80.817085266113281, -6.273471832275334 ], [ -80.817085266113281, -6.272915840148869 ], [ -80.817642211914062, -6.272915840148869 ], [ -80.817642211914062, -6.272637844085637 ], [ -80.818191528320199, -6.272637844085637 ], [ -80.818191528320199, -6.272084236144906 ], [ -80.818473815917912, -6.272084236144906 ], [ -80.818473815917912, -6.271527767181396 ], [ -80.818748474121037, -6.271527767181396 ], [ -80.818748474121037, -6.270971775054875 ], [ -80.819030761718693, -6.270971775054875 ], [ -80.819030761718693, -6.269859790801945 ], [ -80.819305419921818, -6.269859790801945 ], [ -80.819305419921818, -6.269581794738713 ], [ -80.819862365722656, -6.269584178924561 ], [ -80.819862365722656, -6.269306182861328 ], [ -80.820419311523438, -6.269306182861328 ], [ -80.820419311523438, -6.269028186798096 ], [ -80.820968627929688, -6.269028186798096 ], [ -80.820968627929688, -6.268750190734863 ], [ -80.821250915527344, -6.268750190734863 ], [ -80.821250915527344, -6.268472194671517 ], [ -80.821807861328068, -6.268472194671517 ], [ -80.821807861328068, -6.268194198608342 ], [ -80.822639465331974, -6.268194198608342 ], [ -80.822639465331974, -6.266806125640869 ], [ -80.822914123535156, -6.266806125640869 ], [ -80.822914123535156, -6.266528129577637 ], [ -80.823471069335938, -6.266528129577637 ], [ -80.823471069335938, -6.266250133514404 ], [ -80.823753356933594, -6.266250133514404 ], [ -80.823753356933594, -6.265972137451172 ], [ -80.824028015136719, -6.265972137451172 ], [ -80.824028015136719, -6.265694141387939 ], [ -80.824584960937386, -6.265694141387939 ], [ -80.824584960937386, -6.265416145324707 ], [ -80.824859619140568, -6.265416145324707 ], [ -80.824859619140568, -6.264862060546875 ], [ -80.825416564941349, -6.264862060546875 ], [ -80.825416564941349, -6.264584064483643 ], [ -80.825973510742188, -6.264584064483643 ], [ -80.825973510742188, -6.26430606842041 ], [ -80.826248168945312, -6.26430606842041 ], [ -80.826248168945312, -6.264028072357178 ], [ -80.826530456542969, -6.264028072357178 ], [ -80.826530456542969, -6.263750076293945 ], [ -80.827362060546875, -6.263750076293945 ], [ -80.827362060546875, -6.263471126556396 ], [ -80.827636718749886, -6.263471126556396 ], [ -80.827636718749886, -6.263195991516056 ], [ -80.828193664550724, -6.263195991516056 ], [ -80.828193664550724, -6.262917995452824 ], [ -80.828475952148381, -6.262917995452824 ], [ -80.828475952148381, -6.262362003326359 ], [ -80.828750610351506, -6.262362003326359 ], [ -80.828750610351506, -6.26208305358881 ], [ -80.829025268554688, -6.26208305358881 ], [ -80.829025268554688, -6.261527061462346 ], [ -80.829307556152344, -6.261527061462346 ], [ -80.829307556152344, -6.261249065399113 ], [ -80.829582214355469, -6.261249065399113 ], [ -80.829582214355469, -6.260971069335881 ], [ -80.829864501953125, -6.260971069335881 ], [ -80.829864501953125, -6.260694980621338 ], [ -80.83013916015625, -6.260694980621338 ], [ -80.83013916015625, -6.260416984558105 ], [ -80.830413818359375, -6.260416984558105 ], [ -80.830413818359375, -6.260138988494873 ], [ -80.830696105957031, -6.260138988494873 ], [ -80.830696105957031, -6.259860992431641 ], [ -80.830970764160043, -6.259860992431641 ], [ -80.830970764160043, -6.259305000305062 ], [ -80.831253051757756, -6.259305000305062 ], [ -80.831253051757756, -6.259027004241887 ], [ -80.831527709960881, -6.259027004241887 ], [ -80.831527709960881, -6.258749008178654 ], [ -80.831802368164006, -6.258749008178654 ], [ -80.831802368164006, -6.258194923400879 ], [ -80.832084655761662, -6.258194923400879 ], [ -80.832084655761662, -6.257916927337646 ], [ -80.832359313964844, -6.257916927337646 ], [ -80.832359313964844, -6.257360935211182 ], [ -80.8326416015625, -6.257360935211182 ], [ -80.8326416015625, -6.257082939147949 ], [ -80.83319091796875, -6.257082939147949 ], [ -80.83319091796875, -6.256804943084717 ], [ -80.833473205566406, -6.256804943084717 ], [ -80.833473205566406, -6.256526947021484 ], [ -80.833747863769531, -6.256526947021484 ], [ -80.833747863769531, -6.255972862243652 ], [ -80.834030151367188, -6.255972862243652 ], [ -80.834030151367188, -6.25569486618042 ], [ -80.834304809570256, -6.25569486618042 ], [ -80.834304809570256, -6.255416870117188 ], [ -80.834587097167912, -6.255416870117188 ], [ -80.834587097167912, -6.254860877990723 ], [ -80.834861755371037, -6.254860877990723 ], [ -80.834861755371037, -6.25458288192749 ], [ -80.835136413574162, -6.25458288192749 ], [ -80.835136413574162, -6.254304885864258 ], [ -80.835418701171818, -6.254304885864258 ], [ -80.835418701171818, -6.254026889801025 ], [ -80.835693359375, -6.254026889801025 ], [ -80.835693359375, -6.253750801086369 ], [ -80.835975646972656, -6.253750801086369 ], [ -80.835975646972656, -6.253194808959904 ], [ -80.836250305175781, -6.253194808959904 ], [ -80.836250305175781, -6.252916812896672 ], [ -80.836524963378906, -6.252916812896672 ], [ -80.836524963378906, -6.252638816833496 ], [ -80.836807250976562, -6.252638816833496 ], [ -80.836807250976562, -6.252360820770264 ], [ -80.837081909179688, -6.252360820770264 ], [ -80.837081909179688, -6.252082824707031 ], [ -80.83736419677723, -6.252082824707031 ], [ -80.83736419677723, -6.251807212829533 ], [ -80.837638854980412, -6.251804828643799 ], [ -80.837638854980412, -6.251529216766301 ], [ -80.837913513183537, -6.251529216766301 ], [ -80.837913513183537, -6.251251220703068 ], [ -80.838195800781193, -6.251251220703068 ], [ -80.838195800781193, -6.250973224639836 ], [ -80.838470458984318, -6.250973224639836 ], [ -80.838470458984318, -6.250695228576603 ], [ -80.838752746582031, -6.250695228576603 ], [ -80.838752746582031, -6.250417232513371 ], [ -80.839027404785156, -6.250417232513371 ], [ -80.839027404785156, -6.250139236450138 ], [ -80.839302062988281, -6.250139236450138 ], [ -80.839302062988281, -6.249859809875431 ], [ -80.839584350585938, -6.249863147735596 ], [ -80.839584350585938, -6.249581813812199 ], [ -80.839859008789062, -6.249581813812199 ], [ -80.839859008789062, -6.249307155609131 ], [ -80.840141296386719, -6.249307155609131 ], [ -80.840141296386719, -6.249029159545785 ], [ -80.84041595458973, -6.249029159545785 ], [ -80.84041595458973, -6.248751163482609 ], [ -80.840690612792912, -6.248751163482609 ], [ -80.840698242187386, -6.248472213745117 ], [ -80.840972900390568, -6.248472213745117 ], [ -80.840972900390568, -6.248194217681885 ], [ -80.841247558593693, -6.248194217681885 ], [ -80.841247558593693, -6.247916221618652 ], [ -80.841529846191349, -6.247916221618652 ], [ -80.841529846191349, -6.24763822555542 ], [ -80.841804504394531, -6.24763822555542 ], [ -80.841804504394531, -6.247360229492074 ], [ -80.842086791992188, -6.247360229492074 ], [ -80.842086791992188, -6.247082233428898 ], [ -80.842361450195312, -6.247082233428898 ], [ -80.842361450195312, -6.246804237365666 ], [ -80.842636108398438, -6.246804237365666 ], [ -80.842636108398438, -6.246525764465218 ], [ -80.842918395996094, -6.246525764465218 ], [ -80.842918395996094, -6.246250152587891 ], [ -80.843193054199219, -6.246250152587891 ], [ -80.843193054199219, -6.245972156524658 ], [ -80.843475341796875, -6.245972156524658 ], [ -80.843475341796875, -6.245694160461426 ], [ -80.843749999999886, -6.245694160461426 ], [ -80.843749999999886, -6.245416164398193 ], [ -80.844024658203068, -6.245416164398193 ], [ -80.844024658203068, -6.245138168334961 ], [ -80.844306945800724, -6.245138168334961 ], [ -80.844306945800724, -6.244860172271729 ], [ -80.844581604003849, -6.244860172271729 ], [ -80.844581604003849, -6.244582176208496 ], [ -80.844863891601506, -6.244584083557072 ], [ -80.844863891601506, -6.244306087493896 ], [ -80.845138549804688, -6.244306087493896 ], [ -80.845138549804688, -6.244028091430664 ], [ -80.845413208007812, -6.244028091430664 ], [ -80.845413208007812, -6.243472099304199 ], [ -80.845695495605469, -6.243472099304199 ], [ -80.845695495605469, -6.243194103240967 ], [ -80.845970153808594, -6.243194103240967 ], [ -80.845970153808594, -6.242640018463078 ], [ -80.84625244140625, -6.242640018463078 ], [ -80.84625244140625, -6.242498874664307 ], [ -80.84625244140625, -6.24236011505127 ], [ -80.846427917480469, -6.242362022399846 ], [ -80.846801757812386, -6.242362022399846 ], [ -80.846801757812386, -6.242084026336613 ], [ -80.847358703613224, -6.242084026336613 ], [ -80.847358703613224, -6.241806030273381 ], [ -80.847640991210881, -6.241806030273381 ], [ -80.847640991210881, -6.241528034210148 ], [ -80.848197937011662, -6.241528034210148 ], [ -80.848197937011662, -6.241250038146916 ], [ -80.848472595214844, -6.241250038146916 ], [ -80.848472595214844, -6.240972042083683 ], [ -80.848747253417969, -6.240972042083683 ], [ -80.848747253417969, -6.240694046020508 ], [ -80.84930419921875, -6.240694046020508 ], [ -80.84930419921875, -6.240416049957275 ], [ -80.849586486816406, -6.240416049957275 ], [ -80.849586486816406, -6.240138053894043 ], [ -80.849861145019531, -6.240138053894043 ], [ -80.849861145019531, -6.239860057830811 ], [ -80.850135803222599, -6.23986196517933 ], [ -80.850135803222599, -6.239583969116154 ], [ -80.850692749023381, -6.239583969116154 ], [ -80.850692749023381, -6.239305973052922 ], [ -80.850975036621037, -6.239305973052922 ], [ -80.850975036621037, -6.239027976989689 ], [ -80.851249694824162, -6.239027976989689 ], [ -80.851249694824162, -6.238749980926457 ], [ -80.851524353027344, -6.238749980926457 ], [ -80.851524353027344, -6.238471984863224 ], [ -80.852081298828125, -6.238471984863224 ], [ -80.852081298828125, -6.238193988799992 ], [ -80.852363586425781, -6.238193988799992 ], [ -80.852363586425781, -6.23791599273676 ], [ -80.852638244628906, -6.23791599273676 ], [ -80.852638244628906, -6.237637042999211 ], [ -80.852912902832031, -6.237637042999211 ], [ -80.852912902832031, -6.237359046935978 ], [ -80.853195190429574, -6.237361907958984 ], [ -80.853195190429574, -6.237083911895752 ], [ -80.853752136230412, -6.237083911895752 ], [ -80.853752136230412, -6.23680591583252 ], [ -80.854026794433537, -6.23680591583252 ], [ -80.854026794433537, -6.236527919769287 ], [ -80.854309082031193, -6.236527919769287 ], [ -80.854309082031193, -6.236248970031738 ], [ -80.854583740234375, -6.236248970031738 ], [ -80.854583740234375, -6.235970973968506 ], [ -80.8548583984375, -6.235970973968506 ], [ -80.8548583984375, -6.235692977905273 ], [ -80.855415344238281, -6.235692977905273 ], [ -80.855415344238281, -6.23541784286499 ], [ -80.855697631835938, -6.235414981842041 ], [ -80.855697631835938, -6.235139846801758 ], [ -80.855972290039062, -6.235139846801758 ], [ -80.855972290039062, -6.234860897064209 ], [ -80.85652923583973, -6.234860897064209 ], [ -80.85652923583973, -6.234582901000977 ], [ -80.856803894042912, -6.234582901000977 ], [ -80.856803894042912, -6.234304904937744 ], [ -80.857360839843693, -6.234304904937744 ], [ -80.857360839843693, -6.234026908874512 ], [ -80.857635498046875, -6.234026908874512 ], [ -80.857635498046875, -6.233748912811279 ], [ -80.857917785644531, -6.233748912811279 ], [ -80.857917785644531, -6.233472824096623 ], [ -80.858474731445312, -6.233472824096623 ], [ -80.858474731445312, -6.23319482803339 ], [ -80.858749389648438, -6.23319482803339 ], [ -80.858749389648438, -6.232638835906926 ], [ -80.859024047851562, -6.232638835906926 ], [ -80.859024047851562, -6.232360839843693 ], [ -80.85958099365223, -6.232360839843693 ], [ -80.85958099365223, -6.232082843780461 ], [ -80.859863281249943, -6.232082843780461 ], [ -80.859863281249943, -6.231804847717228 ], [ -80.860420227050724, -6.231804847717228 ], [ -80.860420227050724, -6.231526851654053 ], [ -80.860969543457031, -6.231526851654053 ], [ -80.860969543457031, -6.23124885559082 ], [ -80.861251831054688, -6.23124885559082 ], [ -80.861251831054688, -6.230972766876221 ], [ -80.861526489257812, -6.230972766876221 ], [ -80.861526489257812, -6.230694770812875 ], [ -80.861808776855469, -6.230694770812875 ], [ -80.861808776855469, -6.230138778686467 ], [ -80.862083435058594, -6.230138778686467 ], [ -80.862083435058594, -6.229860782623234 ], [ -80.862358093261719, -6.229860782623234 ], [ -80.862358093261719, -6.229582786560002 ], [ -80.862640380859375, -6.229582786560002 ], [ -80.862640380859375, -6.229304790496769 ], [ -80.862915039062443, -6.229304790496769 ], [ -80.862915039062443, -6.229026794433537 ], [ -80.863197326660099, -6.229026794433537 ], [ -80.863197326660099, -6.228751182556152 ], [ -80.863471984863224, -6.228748798370304 ], [ -80.863471984863224, -6.228470802307072 ], [ -80.864028930664006, -6.22847318649292 ], [ -80.864028930664006, -6.227917194366341 ], [ -80.864860534667969, -6.227917194366341 ], [ -80.864860534667969, -6.227361202239933 ], [ -80.86541748046875, -6.227361202239933 ], [ -80.86541748046875, -6.227083206176701 ], [ -80.865692138671875, -6.227083206176701 ], [ -80.865692138671875, -6.226805210113469 ], [ -80.865974426269418, -6.226805210113469 ], [ -80.865974426269418, -6.226527214050236 ], [ -80.866249084472599, -6.226527214050236 ], [ -80.866249084472599, -6.226249217987004 ], [ -80.866531372070256, -6.226249217987004 ], [ -80.866531372070256, -6.225695133209229 ], [ -80.866806030273381, -6.225695133209229 ], [ -80.866806030273381, -6.224583148956299 ], [ -80.867637634277344, -6.224583148956299 ], [ -80.867637634277344, -6.224861145019531 ], [ -80.867919921875, -6.224861145019531 ], [ -80.867919921875, -6.224583148956299 ], [ -80.86846923828125, -6.224583148956299 ], [ -80.86846923828125, -6.224305152892953 ], [ -80.869026184081918, -6.224305152892953 ], [ -80.869026184081918, -6.224029064178467 ], [ -80.870140075683537, -6.224029064178467 ], [ -80.870140075683537, -6.223751068115234 ], [ -80.870414733886719, -6.223751068115234 ], [ -80.870414733886719, -6.223473072052002 ], [ -80.870697021484375, -6.223473072052002 ], [ -80.870697021484375, -6.22319507598877 ], [ -80.8709716796875, -6.22319507598877 ], [ -80.8709716796875, -6.222917079925537 ], [ -80.871246337890625, -6.222917079925537 ], [ -80.871246337890625, -6.222638130187988 ], [ -80.871803283691406, -6.222638130187988 ], [ -80.871803283691406, -6.222084999084416 ], [ -80.872085571289062, -6.222082138061523 ], [ -80.872085571289062, -6.221529006957951 ], [ -80.872360229492074, -6.221529006957951 ], [ -80.872360229492074, -6.220694065093937 ], [ -80.872642517089787, -6.220694065093937 ], [ -80.872642517089787, -6.220138072967472 ], [ -80.874031066894531, -6.220138072967472 ], [ -80.874031066894531, -6.220416069030705 ], [ -80.874305725097656, -6.220416069030705 ], [ -80.874305725097656, -6.220138072967472 ], [ -80.874862670898438, -6.220138072967472 ], [ -80.874862670898438, -6.21986007690424 ], [ -80.875137329101562, -6.21986007690424 ], [ -80.875137329101562, -6.219583988189697 ], [ -80.875419616699219, -6.219583988189697 ], [ -80.875419616699219, -6.219027996063232 ], [ -80.875968933105412, -6.219027996063232 ], [ -80.875968933105412, -6.218749999999886 ], [ -80.876525878906193, -6.218749999999886 ], [ -80.876525878906193, -6.218472003936711 ], [ -80.876808166503849, -6.218472003936711 ], [ -80.876808166503849, -6.218194007873478 ], [ -80.877082824707031, -6.218194007873478 ], [ -80.877082824707031, -6.217916011810246 ], [ -80.877357482910156, -6.217916011810246 ], [ -80.877357482910156, -6.217638015747013 ], [ -80.877639770507812, -6.217638015747013 ], [ -80.877639770507812, -6.217360019683781 ], [ -80.877914428710938, -6.217360019683781 ], [ -80.877914428710938, -6.217083930969238 ], [ -80.878196716308594, -6.217083930969238 ], [ -80.878196716308594, -6.216805934906006 ], [ -80.878471374511719, -6.216805934906006 ], [ -80.878471374511719, -6.216527938842773 ], [ -80.880142211914062, -6.216527938842773 ], [ -80.880142211914062, -6.216249942779541 ], [ -80.880691528320312, -6.216249942779541 ], [ -80.880691528320312, -6.215971946716309 ], [ -80.881248474121094, -6.215971946716309 ], [ -80.881248474121094, -6.215415954589844 ], [ -80.88153076171875, -6.215415954589844 ], [ -80.88153076171875, -6.215137958526498 ], [ -80.881805419921761, -6.215137958526498 ], [ -80.881805419921761, -6.214861869812012 ], [ -80.882080078124943, -6.214861869812012 ], [ -80.882080078124943, -6.214583873748779 ], [ -80.882362365722599, -6.214583873748779 ], [ -80.882362365722599, -6.214305877685547 ], [ -80.882637023925724, -6.214305877685547 ], [ -80.882637023925724, -6.213749885559082 ], [ -80.882919311523381, -6.213749885559082 ], [ -80.882919311523381, -6.21347188949585 ], [ -80.883468627929688, -6.21347188949585 ], [ -80.883468627929688, -6.212917804717961 ], [ -80.883750915527344, -6.212917804717961 ], [ -80.883750915527344, -6.212639808654728 ], [ -80.88458251953125, -6.212639808654728 ], [ -80.88458251953125, -6.212361812591496 ], [ -80.885139465331918, -6.212361812591496 ], [ -80.885139465331918, -6.21208381652832 ], [ -80.885414123535099, -6.21208381652832 ], [ -80.885414123535099, -6.211805820465088 ], [ -80.885971069335881, -6.211805820465088 ], [ -80.885971069335881, -6.211527824401855 ], [ -80.886528015136719, -6.211527824401855 ], [ -80.886528015136719, -6.211249828338623 ], [ -80.886802673339844, -6.211249828338623 ], [ -80.886802673339844, -6.210971832275391 ], [ -80.887359619140625, -6.210971832275391 ], [ -80.887359619140625, -6.210693836212158 ], [ -80.887641906738281, -6.210693836212158 ], [ -80.887641906738281, -6.21041822433466 ], [ -80.888191223144418, -6.21041822433466 ], [ -80.888191223144418, -6.210140228271428 ], [ -80.888473510742131, -6.210140228271428 ], [ -80.888473510742131, -6.209862232208195 ], [ -80.889030456542912, -6.209862232208195 ], [ -80.889030456542912, -6.209584236144963 ], [ -80.889305114746037, -6.209584236144963 ], [ -80.889305114746037, -6.209305763244572 ], [ -80.889862060546875, -6.209305763244572 ], [ -80.889862060546875, -6.208470821380558 ], [ -80.89013671875, -6.208470821380558 ], [ -80.89013671875, -6.208192825317326 ], [ -80.890419006347656, -6.208192825317326 ], [ -80.890419006347656, -6.207918167114201 ], [ -80.891250610351562, -6.207918167114201 ], [ -80.891250610351562, -6.208192825317326 ], [ -80.891525268554631, -6.208192825317326 ], [ -80.891525268554631, -6.207918167114201 ], [ -80.892082214355412, -6.207918167114201 ], [ -80.892082214355412, -6.207639217376709 ], [ -80.892364501953068, -6.207639217376709 ], [ -80.892364501953068, -6.207361221313477 ], [ -80.892639160156193, -6.207361221313477 ], [ -80.892639160156193, -6.207083225250244 ], [ -80.892913818359375, -6.207083225250244 ], [ -80.892913818359375, -6.206805229186898 ], [ -80.893753051757812, -6.206805229186898 ], [ -80.893753051757812, -6.206527233123722 ], [ -80.894027709960938, -6.206527233123722 ], [ -80.894027709960938, -6.20624923706049 ], [ -80.894302368164062, -6.20624923706049 ], [ -80.894302368164062, -6.205970764160043 ], [ -80.894584655761605, -6.205970764160043 ], [ -80.894584655761605, -6.205695152282715 ], [ -80.894859313964787, -6.205692768096867 ], [ -80.894859313964787, -6.205417156219482 ], [ -80.895416259765568, -6.205417156219482 ], [ -80.895416259765568, -6.20513916015625 ], [ -80.895973205566406, -6.20513916015625 ], [ -80.895973205566406, -6.204861164093018 ], [ -80.896247863769531, -6.204861164093018 ], [ -80.896247863769531, -6.204305171966553 ], [ -80.896530151367188, -6.204305171966553 ], [ -80.896530151367188, -6.20402717590332 ], [ -80.896804809570312, -6.20402717590332 ], [ -80.896804809570312, -6.203749179840088 ], [ -80.897087097167969, -6.203749179840088 ], [ -80.897087097167969, -6.203471183776855 ], [ -80.897361755371094, -6.203473091125488 ], [ -80.897361755371094, -6.203195095062256 ], [ -80.897636413574105, -6.203195095062256 ], [ -80.897636413574105, -6.202917098999023 ], [ -80.897918701171761, -6.202917098999023 ], [ -80.897918701171761, -6.202361106872559 ], [ -80.898475646972599, -6.202361106872559 ], [ -80.898475646972599, -6.201527118682861 ], [ -80.898750305175724, -6.201527118682861 ], [ -80.898750305175724, -6.201249122619629 ], [ -80.899024963378906, -6.201249122619629 ], [ -80.899024963378906, -6.200971126556396 ], [ -80.899307250976562, -6.200973033904972 ], [ -80.899307250976562, -6.20069503784174 ], [ -80.900970458984261, -6.20069503784174 ], [ -80.900970458984261, -6.200139045715332 ], [ -80.901252746581974, -6.200139045715332 ], [ -80.901252746581974, -6.1998610496521 ], [ -80.901527404785099, -6.1998610496521 ], [ -80.901527404785099, -6.199583053588867 ], [ -80.901802062988224, -6.199583053588867 ], [ -80.901802062988224, -6.199305057525635 ], [ -80.902641296386719, -6.199305057525635 ], [ -80.902641296386719, -6.199028968810978 ], [ -80.903190612792969, -6.199027061462402 ], [ -80.9031982421875, -6.19874906539917 ], [ -80.903472900390625, -6.19874906539917 ], [ -80.903472900390625, -6.198471069335938 ], [ -80.90374755859375, -6.198472976684513 ], [ -80.90374755859375, -6.198194980621281 ], [ -80.904586791992131, -6.198194980621281 ], [ -80.904586791992131, -6.198472976684513 ], [ -80.904861450195256, -6.198471069335938 ], [ -80.904861450195256, -6.19874906539917 ], [ -80.905136108398381, -6.19874906539917 ], [ -80.905136108398381, -6.198471069335938 ], [ -80.905418395996037, -6.198472976684513 ], [ -80.905418395996037, -6.198194980621281 ], [ -80.905693054199219, -6.198194980621281 ], [ -80.905693054199219, -6.197916984558049 ], [ -80.90625, -6.197916984558049 ], [ -80.90625, -6.197638988494816 ], [ -80.906524658203125, -6.197638988494816 ], [ -80.906524658203125, -6.19652605056757 ], [ -80.907913208007756, -6.19652605056757 ], [ -80.907913208007756, -6.196250915527344 ], [ -80.908195495605412, -6.196250915527344 ], [ -80.908195495605412, -6.195972919464111 ], [ -80.908470153808537, -6.195972919464111 ], [ -80.908470153808537, -6.195694923400765 ], [ -80.90875244140625, -6.195694923400765 ], [ -80.90875244140625, -6.19541597366333 ], [ -80.909027099609375, -6.19541597366333 ], [ -80.909027099609375, -6.195137977600098 ], [ -80.9093017578125, -6.195137977600098 ], [ -80.9093017578125, -6.194859981536865 ], [ -80.909584045410156, -6.194859981536865 ], [ -80.909584045410156, -6.19430685043335 ], [ -80.909858703613281, -6.19430685043335 ], [ -80.909858703613281, -6.193749904632568 ], [ -80.912086486816406, -6.193749904632568 ], [ -80.912086486816406, -6.193471908569336 ], [ -80.912635803222656, -6.193471908569336 ], [ -80.912635803222656, -6.193193912506104 ], [ -80.912918090820312, -6.193193912506104 ], [ -80.912918090820312, -6.192915916442871 ], [ -80.913475036621094, -6.192915916442871 ], [ -80.913475036621094, -6.192637920379639 ], [ -80.913749694824105, -6.192637920379639 ], [ -80.913749694824105, -6.192359924316406 ], [ -80.914024353027287, -6.192359924316406 ], [ -80.914024353027287, -6.19208383560175 ], [ -80.914306640624943, -6.19208383560175 ], [ -80.914306640624943, -6.191805839538517 ], [ -80.914581298828068, -6.191805839538517 ], [ -80.914581298828068, -6.191527843475285 ], [ -80.914863586425724, -6.191527843475285 ], [ -80.914863586425724, -6.191249847412053 ], [ -80.915138244628906, -6.191249847412053 ], [ -80.915138244628906, -6.190971851348877 ], [ -80.915412902832031, -6.190971851348877 ], [ -80.915412902832031, -6.190693855285645 ], [ -80.915695190429688, -6.190693855285645 ], [ -80.915695190429688, -6.190415859222412 ], [ -80.915969848632812, -6.190415859222412 ], [ -80.915969848632812, -6.189861774444523 ], [ -80.916252136230469, -6.189861774444523 ], [ -80.916252136230469, -6.189583778381291 ], [ -80.916526794433594, -6.189583778381291 ], [ -80.916526794433594, -6.189305782318058 ], [ -80.91680908203125, -6.189305782318058 ], [ -80.91680908203125, -6.189027786254826 ], [ -80.917640686035099, -6.189027786254826 ], [ -80.917640686035099, -6.188749790191594 ], [ -80.918197631835881, -6.188749790191594 ], [ -80.918197631835881, -6.188471794128361 ], [ -80.919029235839844, -6.188471794128361 ], [ -80.919029235839844, -6.188193798065129 ], [ -80.919586181640625, -6.188193798065129 ], [ -80.919586181640625, -6.187915802001896 ], [ -80.91986083984375, -6.187915802001896 ], [ -80.91986083984375, -6.187637805938664 ], [ -80.920417785644474, -6.187637805938664 ], [ -80.920417785644474, -6.187359809875488 ], [ -80.920692443847599, -6.187362194061166 ], [ -80.920692443847599, -6.18708419799799 ], [ -80.921249389648381, -6.18708419799799 ], [ -80.921249389648381, -6.186806201934758 ], [ -80.921524047851562, -6.186806201934758 ], [ -80.921524047851562, -6.186528205871525 ], [ -80.922080993652344, -6.186528205871525 ], [ -80.922080993652344, -6.186250209808293 ], [ -80.92236328125, -6.186250209808293 ], [ -80.92236328125, -6.18597221374506 ], [ -80.922637939453125, -6.18597221374506 ], [ -80.922637939453125, -6.185140132904053 ], [ -80.922920227050781, -6.185140132904053 ], [ -80.922920227050781, -6.18486213684082 ], [ -80.923194885253793, -6.18486213684082 ], [ -80.923194885253793, -6.185140132904053 ], [ -80.923751831054631, -6.185140132904053 ], [ -80.923751831054631, -6.185416221618596 ], [ -80.924583435058594, -6.185416221618596 ], [ -80.924583435058594, -6.185140132904053 ], [ -80.925140380859375, -6.185140132904053 ], [ -80.925140380859375, -6.18486213684082 ], [ -80.9254150390625, -6.18486213684082 ], [ -80.9254150390625, -6.185140132904053 ], [ -80.925697326660156, -6.185140132904053 ], [ -80.925697326660156, -6.18486213684082 ], [ -80.925971984863281, -6.18486213684082 ], [ -80.925971984863281, -6.184584140777588 ], [ -80.926528930663949, -6.184584140777588 ], [ -80.926528930663949, -6.184306144714355 ], [ -80.927635192871094, -6.184306144714355 ], [ -80.927635192871094, -6.184028148651123 ], [ -80.92791748046875, -6.184028148651123 ], [ -80.92791748046875, -6.183750152587777 ], [ -80.928192138671875, -6.183750152587777 ], [ -80.928192138671875, -6.183472156524601 ], [ -80.928474426269531, -6.183472156524601 ], [ -80.928474426269531, -6.183196067810059 ], [ -80.928749084472656, -6.183196067810059 ], [ -80.928749084472656, -6.182918071746826 ], [ -80.929306030273438, -6.182918071746826 ], [ -80.929306030273438, -6.182640075683594 ], [ -80.929580688476449, -6.182640075683594 ], [ -80.929580688476449, -6.182081222534066 ], [ -80.929862976074162, -6.182084083557129 ], [ -80.929862976074162, -6.18180513381958 ], [ -80.930419921874943, -6.18180513381958 ], [ -80.930419921874943, -6.181527137756348 ], [ -80.931251525878906, -6.181527137756348 ], [ -80.931251525878906, -6.181249141693115 ], [ -80.931526184082031, -6.181249141693115 ], [ -80.931526184082031, -6.180971145629883 ], [ -80.931808471679688, -6.180971145629883 ], [ -80.931808471679688, -6.1806960105896 ], [ -80.932083129882812, -6.1806960105896 ], [ -80.932083129882812, -6.180417060851994 ], [ -80.932357788085938, -6.180417060851994 ], [ -80.932357788085938, -6.180139064788762 ], [ -80.932640075683594, -6.180139064788762 ], [ -80.932640075683594, -6.179861068725529 ], [ -80.932914733886662, -6.179861068725529 ], [ -80.932914733886662, -6.179583072662297 ], [ -80.933746337890568, -6.179583072662297 ], [ -80.933746337890568, -6.179305076599064 ], [ -80.934028625488224, -6.179305076599064 ], [ -80.934028625488224, -6.178749084472656 ], [ -80.934303283691406, -6.178749084472656 ], [ -80.934303283691406, -6.178471088409424 ], [ -80.934585571289062, -6.178471088409424 ], [ -80.934585571289062, -6.178194999694711 ], [ -80.934860229492188, -6.178194999694711 ], [ -80.934860229492188, -6.177917003631535 ], [ -80.935417175292969, -6.177917003631535 ], [ -80.935417175292969, -6.177639007568303 ], [ -80.935691833496094, -6.177639007568303 ], [ -80.935691833496094, -6.17736101150507 ], [ -80.936248779296818, -6.17736101150507 ], [ -80.936248779296818, -6.177083015441838 ], [ -80.936531066894474, -6.177083015441838 ], [ -80.936531066894474, -6.176805019378605 ], [ -80.936805725097599, -6.176805019378605 ], [ -80.936805725097599, -6.17624902725214 ], [ -80.937080383300724, -6.17624902725214 ], [ -80.937080383300724, -6.175971031188908 ], [ -80.937362670898438, -6.175971031188908 ], [ -80.937362670898438, -6.175694942474365 ], [ -80.938194274902344, -6.175694942474365 ], [ -80.938194274902344, -6.175416946411133 ], [ -80.938751220703125, -6.175416946411133 ], [ -80.938751220703125, -6.175694942474365 ], [ -80.939308166503793, -6.175694942474365 ], [ -80.939308166503793, -6.175416946411133 ], [ -80.939857482910099, -6.175416946411133 ], [ -80.939857482910099, -6.1751389503479 ], [ -80.940971374511719, -6.1751389503479 ], [ -80.940971374511719, -6.174860954284668 ], [ -80.941253662109375, -6.174860954284668 ], [ -80.941253662109375, -6.174582958221322 ], [ -80.9415283203125, -6.174582958221322 ], [ -80.9415283203125, -6.174304962158146 ], [ -80.942359924316293, -6.174304962158146 ], [ -80.942359924316293, -6.174028873443604 ], [ -80.942916870117131, -6.174028873443604 ], [ -80.942916870117131, -6.173750877380371 ], [ -80.943473815917912, -6.173750877380371 ], [ -80.943473815917912, -6.173472881317139 ], [ -80.943748474121094, -6.173472881317139 ], [ -80.943748474121094, -6.173194885253906 ], [ -80.944305419921875, -6.173194885253906 ], [ -80.944305419921875, -6.172916889190674 ], [ -80.944580078125, -6.172916889190674 ], [ -80.944580078125, -6.172360897064209 ], [ -80.944862365722656, -6.172360897064209 ], [ -80.944862365722656, -6.172082901000977 ], [ -80.945137023925781, -6.172082901000977 ], [ -80.945137023925781, -6.171804904937744 ], [ -80.945419311523438, -6.171804904937744 ], [ -80.945419311523438, -6.171250820159912 ], [ -80.945693969726506, -6.171250820159912 ], [ -80.945693969726506, -6.17097282409668 ], [ -80.945968627929631, -6.17097282409668 ], [ -80.945968627929631, -6.170694828033447 ], [ -80.946250915527287, -6.170694828033447 ], [ -80.946250915527287, -6.170138835906982 ], [ -80.946525573730412, -6.170138835906982 ], [ -80.946525573730412, -6.16986083984375 ], [ -80.94708251953125, -6.16986083984375 ], [ -80.94708251953125, -6.169581890106201 ], [ -80.947639465332031, -6.169581890106201 ], [ -80.947639465332031, -6.169303894042969 ], [ -80.947914123535156, -6.169303894042969 ], [ -80.947914123535156, -6.169029235839787 ], [ -80.948471069335938, -6.169029235839787 ], [ -80.948471069335938, -6.168750762939396 ], [ -80.950691223144531, -6.168750762939396 ], [ -80.950691223144531, -6.168472766876164 ], [ -80.951530456542969, -6.168472766876164 ], [ -80.951530456542969, -6.168193817138615 ], [ -80.952079772949162, -6.168193817138615 ], [ -80.952079772949162, -6.167915821075383 ], [ -80.952919006347599, -6.167915821075383 ], [ -80.952919006347599, -6.16763782501215 ], [ -80.953475952148438, -6.16763782501215 ], [ -80.953475952148438, -6.167359828948918 ], [ -80.954307556152344, -6.167359828948918 ], [ -80.954307556152344, -6.167081832885685 ], [ -80.954864501953125, -6.167081832885685 ], [ -80.954864501953125, -6.166806221008301 ], [ -80.955413818359318, -6.166806221008301 ], [ -80.955413818359318, -6.166528224945068 ], [ -80.955696105956974, -6.166528224945068 ], [ -80.955696105956974, -6.166250228881722 ], [ -80.956253051757756, -6.166250228881722 ], [ -80.956253051757756, -6.165972232818547 ], [ -80.956527709960938, -6.165972232818547 ], [ -80.956527709960938, -6.165415763854867 ], [ -80.956802368164062, -6.165415763854867 ], [ -80.956802368164062, -6.165137767791691 ], [ -80.957084655761719, -6.165137767791691 ], [ -80.957084655761719, -6.164859771728459 ], [ -80.957359313964844, -6.164859771728459 ], [ -80.957359313964844, -6.164306163787842 ], [ -80.9576416015625, -6.164306163787842 ], [ -80.9576416015625, -6.164028167724609 ], [ -80.958473205566349, -6.164028167724609 ], [ -80.958473205566349, -6.163750171661377 ], [ -80.959030151367131, -6.163750171661377 ], [ -80.959030151367131, -6.163472175598145 ], [ -80.959861755371094, -6.163472175598145 ], [ -80.959861755371094, -6.163194179534912 ], [ -80.960418701171875, -6.163194179534912 ], [ -80.960418701171875, -6.16291618347168 ], [ -80.961250305175781, -6.16291618347168 ], [ -80.961250305175781, -6.162638187408334 ], [ -80.961524963378849, -6.162638187408334 ], [ -80.961524963378849, -6.162360191345158 ], [ -80.961807250976506, -6.162360191345158 ], [ -80.961807250976506, -6.162082195281926 ], [ -80.962638854980412, -6.162082195281926 ], [ -80.962638854980412, -6.162360191345158 ], [ -80.962913513183594, -6.162360191345158 ], [ -80.962913513183594, -6.162082195281926 ], [ -80.963752746582031, -6.162084102630615 ], [ -80.963752746582031, -6.161806106567383 ], [ -80.964027404785156, -6.161806106567383 ], [ -80.964027404785156, -6.16152811050415 ], [ -80.964302062988281, -6.16152811050415 ], [ -80.964302062988281, -6.161250114440918 ], [ -80.964584350585824, -6.161250114440918 ], [ -80.964584350585824, -6.160972118377686 ], [ -80.96624755859375, -6.160972118377686 ], [ -80.96624755859375, -6.160694122314453 ], [ -80.966804504394531, -6.160694122314453 ], [ -80.966804504394531, -6.160416126251221 ], [ -80.967361450195312, -6.160416126251221 ], [ -80.967361450195312, -6.160138130187988 ], [ -80.96791839599598, -6.160138130187988 ], [ -80.96791839599598, -6.159860134124756 ], [ -80.968193054199162, -6.159862041473332 ], [ -80.968193054199162, -6.159584045410156 ], [ -80.968475341796818, -6.159584045410156 ], [ -80.968475341796818, -6.159306049346924 ], [ -80.96875, -6.159306049346924 ], [ -80.96875, -6.159028053283691 ], [ -80.969306945800781, -6.159028053283691 ], [ -80.969306945800781, -6.158750057220459 ], [ -80.969581604003906, -6.158750057220459 ], [ -80.969581604003906, -6.158472061157227 ], [ -80.969863891601562, -6.158472061157227 ], [ -80.969863891601562, -6.158194065093994 ], [ -80.970413208007812, -6.158194065093994 ], [ -80.970413208007812, -6.157916069030762 ], [ -80.97097015380848, -6.157916069030762 ], [ -80.97097015380848, -6.157638072967529 ], [ -80.971527099609318, -6.157638072967529 ], [ -80.971527099609318, -6.15735912322998 ], [ -80.972084045410099, -6.157361984252873 ], [ -80.972084045410099, -6.156805992126408 ], [ -80.972358703613281, -6.156805992126408 ], [ -80.972358703613281, -6.156527996063176 ], [ -80.972640991210938, -6.156527996063176 ], [ -80.972640991210938, -6.156805992126408 ], [ -80.972915649414062, -6.156805992126408 ], [ -80.972915649414062, -6.156527996063176 ], [ -80.973197937011719, -6.156527996063176 ], [ -80.973197937011719, -6.15625 ], [ -80.974029541015625, -6.15625 ], [ -80.974029541015625, -6.155971050262394 ], [ -80.974304199218693, -6.155971050262394 ], [ -80.974304199218693, -6.155693054199162 ], [ -80.974586486816349, -6.155693054199162 ], [ -80.974586486816349, -6.155139923095589 ], [ -80.974861145019474, -6.155139923095589 ], [ -80.974861145019474, -6.154861927032414 ], [ -80.975135803222599, -6.154861927032414 ], [ -80.975135803222599, -6.154026985168457 ], [ -80.975692749023438, -6.154026985168457 ], [ -80.975692749023438, -6.153748989105225 ], [ -80.976249694824219, -6.153748989105225 ], [ -80.976249694824219, -6.153473854064941 ], [ -80.977081298828125, -6.153473854064941 ], [ -80.977081298828125, -6.153748989105225 ], [ -80.977912902831974, -6.153748989105225 ], [ -80.977912902831974, -6.153473854064941 ], [ -80.978469848632756, -6.153473854064941 ], [ -80.978469848632756, -6.153194904327393 ], [ -80.979026794433594, -6.153194904327393 ], [ -80.979026794433594, -6.15291690826416 ], [ -80.97930908203125, -6.15291690826416 ], [ -80.97930908203125, -6.152638912200928 ], [ -80.9798583984375, -6.152638912200928 ], [ -80.9798583984375, -6.152360916137695 ], [ -80.980415344238168, -6.152360916137695 ], [ -80.980415344238168, -6.15180492401123 ], [ -80.980697631835824, -6.15180492401123 ], [ -80.980697631835824, -6.151526927947998 ], [ -80.981246948242131, -6.151526927947998 ], [ -80.981246948242131, -6.151248931884766 ], [ -80.981529235839787, -6.151248931884766 ], [ -80.981529235839787, -6.150972843170109 ], [ -80.981803894042969, -6.150972843170109 ], [ -80.981803894042969, -6.150694847106877 ], [ -80.982086181640625, -6.150694847106877 ], [ -80.982086181640625, -6.150416851043701 ], [ -80.982917785644531, -6.150416851043701 ], [ -80.982917785644531, -6.150138854980469 ], [ -80.983474731445312, -6.150138854980469 ], [ -80.983474731445312, -6.149860858917236 ], [ -80.983749389648324, -6.149860858917236 ], [ -80.983749389648324, -6.149582862854004 ], [ -80.984024047851506, -6.149582862854004 ], [ -80.984024047851506, -6.149304866790771 ], [ -80.984306335449162, -6.149304866790771 ], [ -80.984306335449162, -6.148748874664307 ], [ -80.984580993652287, -6.148748874664307 ], [ -80.984580993652287, -6.148194789886418 ], [ -80.988746643066406, -6.148194789886418 ], [ -80.988746643066406, -6.147916793823185 ], [ -80.989303588867188, -6.147916793823185 ], [ -80.989303588867188, -6.147638797759953 ], [ -80.989585876464844, -6.147638797759953 ], [ -80.989585876464844, -6.147360801696721 ], [ -80.989860534667969, -6.147360801696721 ], [ -80.989860534667969, -6.147082805633488 ], [ -80.990135192871037, -6.147082805633488 ], [ -80.990135192871037, -6.146804809570312 ], [ -80.990417480468693, -6.146804809570312 ], [ -80.990417480468693, -6.146248817443848 ], [ -80.990692138671818, -6.146248817443848 ], [ -80.990692138671818, -6.145973205566349 ], [ -80.990974426269474, -6.145973205566349 ], [ -80.990974426269474, -6.145695209503117 ], [ -80.991249084472599, -6.145695209503117 ], [ -80.991249084472599, -6.145417213439885 ], [ -80.991531372070312, -6.145417213439885 ], [ -80.991531372070312, -6.145139217376652 ], [ -80.992080688476562, -6.145139217376652 ], [ -80.992080688476562, -6.14486122131342 ], [ -80.992919921875, -6.14486122131342 ], [ -80.992919921875, -6.144583225250187 ], [ -80.993469238281193, -6.144583225250187 ], [ -80.993469238281193, -6.144307136535645 ], [ -80.994026184081974, -6.144307136535645 ], [ -80.994026184081974, -6.144029140472412 ], [ -80.994583129882812, -6.144029140472412 ], [ -80.994583129882812, -6.14375114440918 ], [ -80.995414733886719, -6.14375114440918 ], [ -80.995414733886719, -6.143473148345947 ], [ -80.9959716796875, -6.143473148345947 ], [ -80.9959716796875, -6.143195152282601 ], [ -80.996528625488168, -6.143195152282601 ], [ -80.996528625488168, -6.142917156219426 ], [ -80.996803283691349, -6.142917156219426 ], [ -80.996803283691349, -6.142639160156193 ], [ -80.997360229492131, -6.142639160156193 ], [ -80.997360229492131, -6.142082214355469 ], [ -80.998191833496094, -6.142082214355469 ], [ -80.998191833496094, -6.141804218292236 ], [ -80.999305725097656, -6.141804218292236 ], [ -80.999305725097656, -6.14152622222889 ], [ -80.999580383300668, -6.14152622222889 ], [ -80.999580383300668, -6.141248226165715 ], [ -80.999862670898381, -6.141251087188721 ], [ -80.999862670898381, -6.140694141387939 ], [ -81.000137329101506, -6.140694141387939 ], [ -81.000694274902287, -6.140694141387939 ], [ -81.000694274902287, -6.140138149261475 ], [ -81.000968933105469, -6.140138149261475 ], [ -81.000968933105469, -6.13958215713501 ], [ -81.00152587890625, -6.13958215713501 ], [ -81.00152587890625, -6.139306068420353 ], [ -81.001808166503906, -6.139306068420353 ], [ -81.001808166503906, -6.139028072357121 ], [ -81.002357482910156, -6.139028072357121 ], [ -81.002357482910156, -6.138750076293888 ], [ -81.002639770507812, -6.138750076293888 ], [ -81.002639770507812, -6.138472080230713 ], [ -81.002914428710881, -6.138472080230713 ], [ -81.002914428710881, -6.13819408416748 ], [ -81.003753662109318, -6.13819408416748 ], [ -81.003753662109318, -6.137916088104248 ], [ -81.004302978515625, -6.137916088104248 ], [ -81.004302978515625, -6.137638092041016 ], [ -81.005973815917855, -6.137638092041016 ], [ -81.005973815917855, -6.137360095977783 ], [ -81.006248474121037, -6.137360095977783 ], [ -81.006248474121037, -6.137084007263127 ], [ -81.006530761718693, -6.137084007263127 ], [ -81.006530761718693, -6.137360095977783 ], [ -81.007080078124943, -6.137360095977783 ], [ -81.007080078124943, -6.137084007263127 ], [ -81.008193969726562, -6.137084007263127 ], [ -81.008193969726562, -6.136528015136662 ], [ -81.008468627929688, -6.136528015136662 ], [ -81.008468627929688, -6.136250019073429 ], [ -81.008750915527344, -6.136250019073429 ], [ -81.008750915527344, -6.135972023010197 ], [ -81.009025573730355, -6.135972023010197 ], [ -81.009025573730355, -6.135694026946965 ], [ -81.009582519531193, -6.135694026946965 ], [ -81.009582519531193, -6.135416030883732 ], [ -81.010696411132812, -6.135416030883732 ], [ -81.010696411132812, -6.1351380348205 ], [ -81.010971069335938, -6.1351380348205 ], [ -81.010971069335938, -6.134860038757324 ], [ -81.011253356933594, -6.134860038757324 ], [ -81.011253356933594, -6.1351380348205 ], [ -81.011802673339844, -6.1351380348205 ], [ -81.011802673339844, -6.134860038757324 ], [ -81.0120849609375, -6.134861946105957 ], [ -81.0120849609375, -6.134583950042725 ], [ -81.012641906738224, -6.134583950042725 ], [ -81.012641906738224, -6.134305953979492 ], [ -81.013191223144474, -6.134305953979492 ], [ -81.013191223144474, -6.134027957916146 ], [ -81.013748168945312, -6.134027957916146 ], [ -81.013748168945312, -6.133749961852971 ], [ -81.014030456542969, -6.133749961852971 ], [ -81.014030456542969, -6.133471965789738 ], [ -81.014579772949219, -6.133471965789738 ], [ -81.014579772949219, -6.133193969726506 ], [ -81.01513671875, -6.133193969726506 ], [ -81.01513671875, -6.132915973663273 ], [ -81.015419006347656, -6.132915973663273 ], [ -81.015419006347656, -6.13263988494873 ], [ -81.015975952148381, -6.13263988494873 ], [ -81.015975952148381, -6.132361888885498 ], [ -81.016250610351506, -6.132361888885498 ], [ -81.016250610351506, -6.131527900695801 ], [ -81.016525268554631, -6.131527900695801 ], [ -81.016525268554631, -6.131249904632568 ], [ -81.016807556152287, -6.131249904632568 ], [ -81.016807556152287, -6.130693912506104 ], [ -81.017082214355469, -6.130693912506104 ], [ -81.017082214355469, -6.130417823791504 ], [ -81.01763916015625, -6.130417823791504 ], [ -81.01763916015625, -6.130139827728271 ], [ -81.018753051757699, -6.130139827728271 ], [ -81.018753051757699, -6.129861831665039 ], [ -81.0201416015625, -6.129861831665039 ], [ -81.0201416015625, -6.129583835601807 ], [ -81.02069091796875, -6.129583835601807 ], [ -81.02069091796875, -6.129305839538574 ], [ -81.021530151367188, -6.129305839538574 ], [ -81.021530151367188, -6.129027843475342 ], [ -81.021804809570199, -6.129027843475342 ], [ -81.021804809570199, -6.128748893737793 ], [ -81.022361755371037, -6.128748893737793 ], [ -81.022361755371037, -6.128470897674561 ], [ -81.022636413574162, -6.128470897674561 ], [ -81.022636413574162, -6.128192901611328 ], [ -81.023193359375, -6.128192901611328 ], [ -81.023193359375, -6.127917766570988 ], [ -81.023750305175781, -6.127917766570988 ], [ -81.023750305175781, -6.127639770507756 ], [ -81.024307250976562, -6.127639770507756 ], [ -81.024307250976562, -6.127360820770207 ], [ -81.024864196777344, -6.127360820770207 ], [ -81.024864196777344, -6.127082824706974 ], [ -81.026802062988281, -6.127082824706974 ], [ -81.026802062988281, -6.126804828643742 ], [ -81.028472900390568, -6.126804828643742 ], [ -81.028472900390568, -6.12652683258051 ], [ -81.029861450195312, -6.12652683258051 ], [ -81.029861450195312, -6.126248836517277 ], [ -81.030418395996094, -6.126248836517277 ], [ -81.030418395996094, -6.125692844390869 ], [ -81.030693054199219, -6.125692844390869 ], [ -81.030693054199219, -6.125417232513371 ], [ -81.030975341796875, -6.125417232513371 ], [ -81.030975341796875, -6.124860763549691 ], [ -81.03125, -6.124860763549691 ], [ -81.03125, -6.124304771423283 ], [ -81.031524658203068, -6.124304771423283 ], [ -81.031524658203068, -6.124026775360051 ], [ -81.031806945800724, -6.124026775360051 ], [ -81.031806945800724, -6.123748779296818 ], [ -81.032363891601506, -6.123748779296818 ], [ -81.032363891601506, -6.123470783233586 ], [ -81.032638549804631, -6.123470783233586 ], [ -81.032638549804631, -6.123192787170353 ], [ -81.033195495605469, -6.123195171356201 ], [ -81.033195495605469, -6.122917175292969 ], [ -81.033470153808594, -6.122917175292969 ], [ -81.033470153808594, -6.122639179229736 ], [ -81.034027099609375, -6.122639179229736 ], [ -81.034027099609375, -6.122361183166504 ], [ -81.034858703613224, -6.122361183166504 ], [ -81.034858703613224, -6.122083187103158 ], [ -81.035140991210881, -6.122083187103158 ], [ -81.035140991210881, -6.121805191039982 ], [ -81.035697937011662, -6.121805191039982 ], [ -81.035697937011662, -6.12152719497675 ], [ -81.036247253417969, -6.12152719497675 ], [ -81.036247253417969, -6.121249198913517 ], [ -81.03680419921875, -6.121249198913517 ], [ -81.03680419921875, -6.120971202850285 ], [ -81.037086486816406, -6.120973110198975 ], [ -81.037086486816406, -6.120695114135742 ], [ -81.037635803222543, -6.120695114135742 ], [ -81.037635803222543, -6.12041711807251 ], [ -81.038192749023381, -6.12041711807251 ], [ -81.038192749023381, -6.120139122009277 ], [ -81.038749694824162, -6.120139122009277 ], [ -81.038749694824162, -6.119861125946045 ], [ -81.039024353027344, -6.119861125946045 ], [ -81.039024353027344, -6.119583129882812 ], [ -81.039581298828125, -6.119583129882812 ], [ -81.039581298828125, -6.119027137756348 ], [ -81.039863586425781, -6.119027137756348 ], [ -81.039863586425781, -6.118471145629769 ], [ -81.040695190429688, -6.118473052978516 ], [ -81.040695190429688, -6.118195056915283 ], [ -81.041526794433537, -6.118195056915283 ], [ -81.041526794433537, -6.117917060852051 ], [ -81.041809082031193, -6.117917060852051 ], [ -81.041809082031193, -6.117639064788818 ], [ -81.042083740234318, -6.117639064788818 ], [ -81.042083740234318, -6.117361068725586 ], [ -81.044029235839844, -6.117361068725586 ], [ -81.044029235839844, -6.117083072662354 ], [ -81.044860839843693, -6.117083072662354 ], [ -81.044860839843693, -6.116805076599121 ], [ -81.045417785644474, -6.116805076599121 ], [ -81.045417785644474, -6.116250991821232 ], [ -81.045974731445312, -6.116250991821232 ], [ -81.045974731445312, -6.115972995758 ], [ -81.046249389648438, -6.115972995758 ], [ -81.046249389648438, -6.115694999694767 ], [ -81.046524047851562, -6.115694999694767 ], [ -81.046524047851562, -6.115417003631592 ], [ -81.046806335449219, -6.115417003631592 ], [ -81.046806335449219, -6.114860057830754 ], [ -81.047363281249886, -6.114860057830754 ], [ -81.047363281249886, -6.114582061767521 ], [ -81.048194885253849, -6.114582061767521 ], [ -81.048194885253849, -6.114306926727238 ], [ -81.048469543456974, -6.114306926727238 ], [ -81.048469543456974, -6.113193988800049 ], [ -81.048751831054688, -6.113193988800049 ], [ -81.048751831054688, -6.112637996673527 ], [ -81.049026489257812, -6.112637996673527 ], [ -81.049026489257812, -6.112360000610295 ], [ -81.049308776855469, -6.112360000610295 ], [ -81.049308776855469, -6.112083911895752 ], [ -81.049583435058594, -6.112083911895752 ], [ -81.049583435058594, -6.11180591583252 ], [ -81.050140380859375, -6.11180591583252 ], [ -81.050140380859375, -6.111527919769287 ], [ -81.050415039062386, -6.111527919769287 ], [ -81.050415039062386, -6.11069393157959 ], [ -81.050697326660043, -6.11069393157959 ], [ -81.050697326660043, -6.110137939453125 ], [ -81.051528930664006, -6.110137939453125 ], [ -81.051528930664006, -6.110971927642822 ], [ -81.051803588867188, -6.110971927642822 ], [ -81.051803588867188, -6.11180591583252 ], [ -81.051528930664006, -6.11180591583252 ], [ -81.051528930664006, -6.112360000610295 ], [ -81.051246643066349, -6.112360000610295 ], [ -81.051246643066349, -6.113193988800049 ], [ -81.051528930664006, -6.113193988800049 ], [ -81.051528930664006, -6.113471984863281 ], [ -81.052085876464844, -6.113471984863281 ], [ -81.052085876464844, -6.113193988800049 ], [ -81.052635192871094, -6.113193988800049 ], [ -81.052635192871094, -6.112915992736703 ], [ -81.05291748046875, -6.112915992736703 ], [ -81.05291748046875, -6.112637996673527 ], [ -81.053474426269531, -6.112637996673527 ], [ -81.053474426269531, -6.112083911895752 ], [ -81.053749084472543, -6.112083911895752 ], [ -81.053749084472543, -6.11180591583252 ], [ -81.054306030273381, -6.11180591583252 ], [ -81.054306030273381, -6.111249923706055 ], [ -81.054580688476506, -6.111249923706055 ], [ -81.054580688476506, -6.11069393157959 ], [ -81.054862976074162, -6.11069393157959 ], [ -81.054862976074162, -6.110137939453125 ], [ -81.055137634277344, -6.110137939453125 ], [ -81.055137634277344, -6.109859943389893 ], [ -81.055694580078125, -6.109859943389893 ], [ -81.055694580078125, -6.109583854675293 ], [ -81.056251525878906, -6.109583854675293 ], [ -81.056251525878906, -6.109305858612061 ], [ -81.056526184082031, -6.109305858612061 ], [ -81.056526184082031, -6.109027862548828 ], [ -81.057083129882756, -6.109027862548828 ], [ -81.057083129882756, -6.108749866485596 ], [ -81.057640075683537, -6.108749866485596 ], [ -81.057640075683537, -6.108471870422363 ], [ -81.057914733886662, -6.108471870422363 ], [ -81.057914733886662, -6.108193874359131 ], [ -81.0584716796875, -6.108193874359131 ], [ -81.0584716796875, -6.107915878295898 ], [ -81.058746337890625, -6.107915878295898 ], [ -81.058746337890625, -6.107637882232666 ], [ -81.059028625488281, -6.107637882232666 ], [ -81.059028625488281, -6.10736179351801 ], [ -81.059585571289062, -6.10736179351801 ], [ -81.059585571289062, -6.107083797454777 ], [ -81.059860229492188, -6.107083797454777 ], [ -81.059860229492188, -6.106249809265137 ], [ -81.06014251708973, -6.106249809265137 ], [ -81.06014251708973, -6.105693817138672 ], [ -81.060417175292912, -6.105693817138672 ], [ -81.060417175292912, -6.105415821075439 ], [ -81.060691833496037, -6.105415821075439 ], [ -81.060691833496037, -6.104862213134709 ], [ -81.060974121093693, -6.104862213134709 ], [ -81.060974121093693, -6.104584217071476 ], [ -81.061531066894531, -6.104584217071476 ], [ -81.061531066894531, -6.104862213134709 ], [ -81.062080383300781, -6.104862213134709 ], [ -81.062080383300781, -6.105140209197941 ], [ -81.062362670898438, -6.105140209197941 ], [ -81.062362670898438, -6.104584217071476 ], [ -81.062919616699219, -6.104584217071476 ], [ -81.062919616699219, -6.104306221008244 ], [ -81.063468933105412, -6.104306221008244 ], [ -81.063468933105412, -6.104028224945012 ], [ -81.064025878906193, -6.104028224945012 ], [ -81.064025878906193, -6.103750228881779 ], [ -81.065414428710938, -6.103750228881779 ], [ -81.065414428710938, -6.103472232818604 ], [ -81.065696716308594, -6.103472232818604 ], [ -81.065696716308594, -6.103194236755371 ], [ -81.066253662109375, -6.103194236755371 ], [ -81.066253662109375, -6.102918148040771 ], [ -81.066528320312386, -6.102918148040771 ], [ -81.066528320312386, -6.102640151977425 ], [ -81.066802978515568, -6.102640151977425 ], [ -81.066802978515568, -6.10236215591425 ], [ -81.067359924316349, -6.10236215591425 ], [ -81.067359924316349, -6.102084159851017 ], [ -81.067642211914006, -6.102084159851017 ], [ -81.067642211914006, -6.101806163787785 ], [ -81.067916870117188, -6.101806163787785 ], [ -81.067916870117188, -6.101249217987061 ], [ -81.068191528320312, -6.101249217987061 ], [ -81.068191528320312, -6.100971221923714 ], [ -81.068748474121094, -6.100971221923714 ], [ -81.068748474121094, -6.100693225860539 ], [ -81.069580078124886, -6.100693225860539 ], [ -81.069580078124886, -6.100415229797306 ], [ -81.071250915527344, -6.100415229797306 ], [ -81.071250915527344, -6.099859237670842 ], [ -81.071525573730469, -6.099861145019531 ], [ -81.071525573730469, -6.099305152893066 ], [ -81.07208251953125, -6.099305152893066 ], [ -81.07208251953125, -6.099027156829834 ], [ -81.072914123535099, -6.099027156829834 ], [ -81.072914123535099, -6.098749160766602 ], [ -81.073471069335881, -6.098749160766602 ], [ -81.073471069335881, -6.098471164703369 ], [ -81.074028015136662, -6.098471164703369 ], [ -81.074028015136662, -6.098195075988713 ], [ -81.074302673339844, -6.098195075988713 ], [ -81.074302673339844, -6.097917079925537 ], [ -81.0745849609375, -6.097917079925537 ], [ -81.0745849609375, -6.097639083862305 ], [ -81.075141906738281, -6.097639083862305 ], [ -81.075141906738281, -6.097361087799072 ], [ -81.075416564941406, -6.097361087799072 ], [ -81.075416564941406, -6.09708309173584 ], [ -81.075691223144531, -6.09708309173584 ], [ -81.075691223144531, -6.096805095672607 ], [ -81.076248168945256, -6.096805095672607 ], [ -81.076248168945256, -6.09597110748291 ], [ -81.076530456542912, -6.09597110748291 ], [ -81.076530456542912, -6.095139026641789 ], [ -81.076805114746037, -6.095139026641789 ], [ -81.076805114746037, -6.094861030578556 ], [ -81.078750610351562, -6.094861030578556 ], [ -81.078750610351562, -6.094583034515324 ], [ -81.07930755615223, -6.094583034515324 ], [ -81.07930755615223, -6.094305038452148 ], [ -81.079582214355412, -6.094305038452148 ], [ -81.079582214355412, -6.094028949737549 ], [ -81.079864501953068, -6.094027042388916 ], [ -81.079864501953068, -6.093749046325684 ], [ -81.080413818359375, -6.093749046325684 ], [ -81.080413818359375, -6.093471050262451 ], [ -81.080696105957031, -6.09347295761097 ], [ -81.080696105957031, -6.093194961547795 ], [ -81.081253051757812, -6.093194961547795 ], [ -81.081253051757812, -6.092916965484562 ], [ -81.082084655761719, -6.092916965484562 ], [ -81.082084655761719, -6.09263896942133 ], [ -81.082641601562443, -6.09263896942133 ], [ -81.082641601562443, -6.092360973358097 ], [ -81.082916259765568, -6.092360973358097 ], [ -81.082916259765568, -6.092082977294865 ], [ -81.083747863769531, -6.092084884643555 ], [ -81.083747863769531, -6.0915269851684 ], [ -81.084030151367188, -6.0915269851684 ], [ -81.084030151367188, -6.091248989105168 ], [ -81.084304809570312, -6.091250896453857 ], [ -81.084304809570312, -6.090694904327393 ], [ -81.084587097167969, -6.090694904327393 ], [ -81.084587097167969, -6.090138912200928 ], [ -81.084861755371094, -6.090138912200928 ], [ -81.084861755371094, -6.089582920074406 ], [ -81.085136413574219, -6.089582920074406 ], [ -81.085136413574219, -6.088194847106934 ], [ -81.085975646972599, -6.088194847106934 ], [ -81.085975646972599, -6.088472843170166 ], [ -81.086524963378849, -6.088472843170166 ], [ -81.086524963378849, -6.088750839233398 ], [ -81.088752746581918, -6.088750839233398 ], [ -81.088752746581918, -6.088472843170166 ], [ -81.089027404785099, -6.088472843170166 ], [ -81.089027404785099, -6.088194847106934 ], [ -81.089584350585881, -6.088194847106934 ], [ -81.089584350585881, -6.087915897369385 ], [ -81.090141296386719, -6.087915897369385 ], [ -81.090141296386719, -6.08735990524292 ], [ -81.090415954589844, -6.08735990524292 ], [ -81.090415954589844, -6.087081909179688 ], [ -81.090690612792969, -6.087081909179688 ], [ -81.0906982421875, -6.086527824401799 ], [ -81.090972900390625, -6.086527824401799 ], [ -81.090972900390625, -6.086249828338566 ], [ -81.091529846191406, -6.086249828338566 ], [ -81.091529846191406, -6.085693836212101 ], [ -81.091804504394418, -6.085693836212101 ], [ -81.091804504394418, -6.085137844085693 ], [ -81.092086791992074, -6.085137844085693 ], [ -81.092086791992074, -6.084584236144963 ], [ -81.092361450195256, -6.084584236144963 ], [ -81.092361450195256, -6.08402776718134 ], [ -81.092636108398381, -6.08402776718134 ], [ -81.092636108398381, -6.083471775054875 ], [ -81.092918395996037, -6.083471775054875 ], [ -81.092918395996037, -6.083193778991642 ], [ -81.093193054199219, -6.083193778991642 ], [ -81.093193054199219, -6.08291578292841 ], [ -81.09375, -6.08291578292841 ], [ -81.09375, -6.082637786865178 ], [ -81.094024658203125, -6.082637786865178 ], [ -81.094024658203125, -6.082362174987793 ], [ -81.094863891601562, -6.082362174987793 ], [ -81.094863891601562, -6.082081794738713 ], [ -81.095138549804574, -6.082084178924561 ], [ -81.095138549804574, -6.081806182861328 ], [ -81.095413208007756, -6.081806182861328 ], [ -81.095413208007756, -6.081528186797982 ], [ -81.095695495605412, -6.081528186797982 ], [ -81.095695495605412, -6.081250190734806 ], [ -81.095970153808537, -6.081250190734806 ], [ -81.095970153808537, -6.081528186797982 ], [ -81.096252441406193, -6.081528186797982 ], [ -81.096252441406193, -6.080972194671574 ], [ -81.0968017578125, -6.080972194671574 ], [ -81.0968017578125, -6.080694198608342 ], [ -81.097084045410156, -6.080694198608342 ], [ -81.097084045410156, -6.080416202545109 ], [ -81.097640991210938, -6.080416202545109 ], [ -81.097640991210938, -6.080138206481877 ], [ -81.098197937011719, -6.080138206481877 ], [ -81.098197937011719, -6.079860210418644 ], [ -81.098747253417912, -6.079860210418644 ], [ -81.098747253417912, -6.079304218292179 ], [ -81.099029541015568, -6.079304218292179 ], [ -81.099029541015568, -6.079028129577637 ], [ -81.099304199218693, -6.079028129577637 ], [ -81.099304199218693, -6.078750133514404 ], [ -81.099586486816349, -6.078750133514404 ], [ -81.099586486816349, -6.078472137451172 ], [ -81.099861145019531, -6.078472137451172 ], [ -81.099861145019531, -6.078194141387939 ], [ -81.100135803222656, -6.078194141387939 ], [ -81.100135803222656, -6.077916145324593 ], [ -81.100418090820312, -6.077916145324593 ], [ -81.100418090820312, -6.077360153198185 ], [ -81.100692749023438, -6.077360153198185 ], [ -81.100692749023438, -6.077084064483643 ], [ -81.100975036621094, -6.077084064483643 ], [ -81.100975036621094, -6.07680606842041 ], [ -81.101249694824219, -6.07680606842041 ], [ -81.101249694824219, -6.076528072357178 ], [ -81.101524353027287, -6.076528072357178 ], [ -81.101524353027287, -6.075972080230713 ], [ -81.102081298828068, -6.075972080230713 ], [ -81.102081298828068, -6.075693130493164 ], [ -81.102363586425724, -6.075693130493164 ], [ -81.102363586425724, -6.075139999389592 ], [ -81.102638244628849, -6.075139999389592 ], [ -81.102638244628849, -6.074584007263184 ], [ -81.102912902832031, -6.074584007263184 ], [ -81.102912902832031, -6.074305057525578 ], [ -81.103469848632812, -6.074305057525578 ], [ -81.103469848632812, -6.073749065399113 ], [ -81.104026794433594, -6.073749065399113 ], [ -81.104026794433594, -6.073195934295597 ], [ -81.10430908203125, -6.073195934295597 ], [ -81.10430908203125, -6.072916984558105 ], [ -81.104583740234261, -6.072916984558105 ], [ -81.104583740234261, -6.072638988494873 ], [ -81.104858398437443, -6.072638988494873 ], [ -81.104858398437443, -6.071805000305119 ], [ -81.105415344238224, -6.071805000305119 ], [ -81.105415344238224, -6.071249008178654 ], [ -81.105697631835881, -6.071249008178654 ], [ -81.105697631835881, -6.070694923400879 ], [ -81.106246948242188, -6.070694923400879 ], [ -81.106246948242188, -6.070138931274414 ], [ -81.106529235839844, -6.070138931274414 ], [ -81.106529235839844, -6.069582939147949 ], [ -81.107086181640625, -6.069582939147949 ], [ -81.107086181640625, -6.069304943084717 ], [ -81.10736083984375, -6.069304943084717 ], [ -81.10736083984375, -6.068748950958138 ], [ -81.107917785644418, -6.068748950958138 ], [ -81.107917785644418, -6.068472862243652 ], [ -81.108192443847599, -6.068472862243652 ], [ -81.108192443847599, -6.067916870117188 ], [ -81.108474731445256, -6.067916870117188 ], [ -81.108474731445256, -6.067638874053955 ], [ -81.108749389648381, -6.067638874053955 ], [ -81.108749389648381, -6.067360877990723 ], [ -81.109024047851562, -6.067360877990723 ], [ -81.109024047851562, -6.06708288192749 ], [ -81.109306335449219, -6.06708288192749 ], [ -81.109306335449219, -6.066526889801025 ], [ -81.109580993652344, -6.066526889801025 ], [ -81.109580993652344, -6.065972805023137 ], [ -81.10986328125, -6.065972805023137 ], [ -81.10986328125, -6.065416812896729 ], [ -81.110137939453125, -6.065416812896729 ], [ -81.110137939453125, -6.065138816833496 ], [ -81.110420227050781, -6.065138816833496 ], [ -81.110420227050781, -6.064582824707031 ], [ -81.110694885253906, -6.064582824707031 ], [ -81.110694885253906, -6.064029216766301 ], [ -81.110969543456918, -6.064029216766301 ], [ -81.110969543456918, -6.063473224639836 ], [ -81.111251831054631, -6.063473224639836 ], [ -81.111251831054631, -6.062917232513428 ], [ -81.112083435058537, -6.062917232513428 ], [ -81.112083435058537, -6.062639236450195 ], [ -81.112640380859375, -6.062639236450195 ], [ -81.112640380859375, -6.061807155609074 ], [ -81.1129150390625, -6.061807155609074 ], [ -81.1129150390625, -6.060694217681885 ], [ -81.113197326660156, -6.060694217681885 ], [ -81.113197326660156, -6.060416221618539 ], [ -81.113746643066406, -6.060416221618539 ], [ -81.113746643066406, -6.060138225555363 ], [ -81.114028930664062, -6.060138225555363 ], [ -81.114028930664062, -6.059582233428898 ], [ -81.114303588867131, -6.059582233428898 ], [ -81.114303588867131, -6.058472156524658 ], [ -81.114585876464787, -6.058472156524658 ], [ -81.114585876464787, -6.057360172271729 ], [ -81.114860534667912, -6.057360172271729 ], [ -81.114860534667912, -6.057082176208496 ], [ -81.115417480468693, -6.057082176208496 ], [ -81.115417480468693, -6.056528091430664 ], [ -81.115692138671875, -6.056528091430664 ], [ -81.115692138671875, -6.055972099304199 ], [ -81.115974426269531, -6.055972099304199 ], [ -81.115974426269531, -6.055694103240967 ], [ -81.116249084472656, -6.055694103240967 ], [ -81.116249084472656, -6.055138111114502 ], [ -81.116531372070312, -6.055138111114502 ], [ -81.116531372070312, -6.054584026336613 ], [ -81.116806030273438, -6.054584026336613 ], [ -81.116806030273438, -6.052916049957275 ], [ -81.116531372070312, -6.052916049957275 ], [ -81.116531372070312, -6.052360057830811 ], [ -81.116249084472656, -6.052361965179387 ], [ -81.116249084472656, -6.052083969116154 ], [ -81.115974426269531, -6.052083969116154 ], [ -81.115974426269531, -6.052361965179387 ], [ -81.115692138671875, -6.052361965179387 ], [ -81.115692138671875, -6.052083969116154 ], [ -81.115417480468693, -6.052083969116154 ], [ -81.115417480468693, -6.051805973052922 ], [ -81.115135192871037, -6.051805973052922 ], [ -81.115135192871037, -6.049583911895752 ], [ -81.115417480468693, -6.049583911895752 ], [ -81.115417480468693, -6.04902791976923 ], [ -81.115692138671875, -6.04902791976923 ], [ -81.115692138671875, -6.048470973968506 ], [ -81.115974426269531, -6.048470973968506 ], [ -81.115974426269531, -6.048192977905273 ], [ -81.115692138671875, -6.048192977905273 ], [ -81.115692138671875, -6.04791784286499 ], [ -81.115974426269531, -6.047914981842041 ], [ -81.115974426269531, -6.047361850738525 ], [ -81.116249084472656, -6.047361850738525 ], [ -81.116249084472656, -6.047082901000977 ], [ -81.116531372070312, -6.047082901000977 ], [ -81.116531372070312, -6.046526908874512 ], [ -81.116806030273438, -6.046526908874512 ], [ -81.116806030273438, -6.046248912811279 ], [ -81.117080688476562, -6.046248912811279 ], [ -81.117080688476562, -6.04569482803339 ], [ -81.117637634277287, -6.04569482803339 ], [ -81.117637634277287, -6.045416831970158 ], [ -81.118751525878906, -6.045416831970158 ], [ -81.118751525878906, -6.045138835906926 ], [ -81.119583129882812, -6.045138835906926 ], [ -81.119583129882812, -6.044582843780518 ], [ -81.119857788085938, -6.044582843780518 ], [ -81.119857788085938, -6.044026851654053 ], [ -81.120140075683594, -6.044026851654053 ], [ -81.120140075683594, -6.04374885559082 ], [ -81.120414733886605, -6.04374885559082 ], [ -81.120414733886605, -6.043472766876164 ], [ -81.120140075683594, -6.043472766876164 ], [ -81.120140075683594, -6.042916774749699 ], [ -81.120414733886605, -6.042916774749699 ], [ -81.120414733886605, -6.042638778686467 ], [ -81.120697021484261, -6.042638778686467 ], [ -81.120697021484261, -6.042082786560002 ], [ -81.120971679687443, -6.042082786560002 ], [ -81.120971679687443, -6.041804790496769 ], [ -81.121246337890568, -6.041804790496769 ], [ -81.121246337890568, -6.041526794433537 ], [ -81.121803283691406, -6.041526794433537 ], [ -81.121803283691406, -6.041251182556152 ], [ -81.122360229492188, -6.041248798370304 ], [ -81.122360229492188, -6.040692806243896 ], [ -81.122642517089844, -6.040695190429631 ], [ -81.122642517089844, -6.040139198303166 ], [ -81.124031066894474, -6.040139198303166 ], [ -81.124031066894474, -6.039305210113469 ], [ -81.12347412109375, -6.039305210113469 ], [ -81.12347412109375, -6.038471221923771 ], [ -81.123191833496094, -6.038471221923771 ], [ -81.123191833496094, -6.037917137145996 ], [ -81.12347412109375, -6.037917137145996 ], [ -81.12347412109375, -6.037639141082764 ], [ -81.123748779296761, -6.037639141082764 ], [ -81.123748779296761, -6.037361145019418 ], [ -81.125137329101562, -6.037361145019418 ], [ -81.125137329101562, -6.037639141082764 ], [ -81.125419616699219, -6.037639141082764 ], [ -81.125419616699219, -6.037917137145996 ], [ -81.126251220703125, -6.037917137145996 ], [ -81.126251220703125, -6.037639141082764 ], [ -81.127082824706974, -6.037639141082764 ], [ -81.127082824706974, -6.037083148956242 ], [ -81.127639770507756, -6.037083148956242 ], [ -81.127639770507756, -6.03680515289301 ], [ -81.128196716308537, -6.03680515289301 ], [ -81.128196716308537, -6.036527156829777 ], [ -81.1290283203125, -6.036527156829777 ], [ -81.1290283203125, -6.036251068115234 ], [ -81.129302978515625, -6.036251068115234 ], [ -81.129302978515625, -6.035973072052002 ], [ -81.129585266113281, -6.035973072052002 ], [ -81.129585266113281, -6.034860134124756 ], [ -81.129859924316406, -6.034860134124756 ], [ -81.129859924316406, -6.034029006958008 ], [ -81.130142211913949, -6.034029006958008 ], [ -81.130142211913949, -6.032916069030705 ], [ -81.130416870117131, -6.032916069030705 ], [ -81.130416870117131, -6.032360076904297 ], [ -81.130691528320256, -6.032360076904297 ], [ -81.130691528320256, -6.031805992126351 ], [ -81.130973815917912, -6.031805992126351 ], [ -81.130973815917912, -6.031527996063176 ], [ -81.131248474121037, -6.031527996063176 ], [ -81.131248474121037, -6.030972003936711 ], [ -81.13153076171875, -6.030972003936711 ], [ -81.13153076171875, -6.030416011810246 ], [ -81.131805419921875, -6.030416011810246 ], [ -81.131805419921875, -6.029860019683781 ], [ -81.132080078125, -6.029860019683781 ], [ -81.132080078125, -6.029583930969238 ], [ -81.132362365722656, -6.029583930969238 ], [ -81.132362365722656, -6.029027938842773 ], [ -81.132637023925781, -6.029027938842773 ], [ -81.132637023925781, -6.028471946716309 ], [ -81.132919311523438, -6.028471946716309 ], [ -81.132919311523438, -6.027915954589787 ], [ -81.133193969726449, -6.027915954589787 ], [ -81.133193969726449, -6.027637958526554 ], [ -81.133468627929631, -6.027637958526554 ], [ -81.133468627929631, -6.027083873748779 ], [ -81.133750915527287, -6.027083873748779 ], [ -81.133750915527287, -6.026805877685547 ], [ -81.134025573730412, -6.026805877685547 ], [ -81.134025573730412, -6.026249885559082 ], [ -81.134307861328068, -6.026249885559082 ], [ -81.134307861328068, -6.025693893432617 ], [ -81.13458251953125, -6.025693893432617 ], [ -81.13458251953125, -6.025415897369385 ], [ -81.134864807128906, -6.025415897369385 ], [ -81.134864807128906, -6.024861812591553 ], [ -81.135139465332031, -6.024861812591553 ], [ -81.135139465332031, -6.02458381652832 ], [ -81.135414123535156, -6.02458381652832 ], [ -81.135414123535156, -6.024027824401855 ], [ -81.135696411132812, -6.024027824401855 ], [ -81.135696411132812, -6.023471832275391 ], [ -81.135971069335938, -6.023471832275391 ], [ -81.135971069335938, -6.023193836212158 ], [ -81.136253356933594, -6.023193836212158 ], [ -81.136253356933594, -6.022640228271428 ], [ -81.136528015136605, -6.022640228271428 ], [ -81.136528015136605, -6.02208423614502 ], [ -81.136802673339787, -6.02208423614502 ], [ -81.136802673339787, -6.021527767181396 ], [ -81.137084960937443, -6.021527767181396 ], [ -81.137084960937443, -6.020970821380558 ], [ -81.137359619140568, -6.020970821380558 ], [ -81.137359619140568, -6.020692825317326 ], [ -81.137641906738224, -6.020692825317326 ], [ -81.137641906738224, -6.020140171050969 ], [ -81.137916564941406, -6.020140171050969 ], [ -81.137916564941406, -6.019583225250187 ], [ -81.138191223144531, -6.019583225250187 ], [ -81.138191223144531, -6.019027233123722 ], [ -81.138473510742188, -6.019027233123722 ], [ -81.138473510742188, -6.018470764160099 ], [ -81.138748168945312, -6.018470764160099 ], [ -81.138748168945312, -6.018195152282715 ], [ -81.139030456542969, -6.018192768096867 ], [ -81.139030456542969, -6.01763916015625 ], [ -81.139305114746094, -6.01763916015625 ], [ -81.139305114746094, -6.017083168029785 ], [ -81.139579772949105, -6.017083168029785 ], [ -81.139579772949105, -6.01652717590332 ], [ -81.139862060546818, -6.01652717590332 ], [ -81.139862060546818, -6.015971183776799 ], [ -81.140136718749943, -6.015973091125488 ], [ -81.140136718749943, -6.015695095062256 ], [ -81.140419006347599, -6.015695095062256 ], [ -81.140419006347599, -6.015139102935791 ], [ -81.140693664550724, -6.015139102935791 ], [ -81.140693664550724, -6.014583110809326 ], [ -81.140975952148381, -6.014583110809326 ], [ -81.140975952148381, -6.014027118682861 ], [ -81.141250610351562, -6.014027118682861 ], [ -81.141250610351562, -6.013471126556396 ], [ -81.141525268554688, -6.013473033904972 ], [ -81.141525268554688, -6.013195037841797 ], [ -81.141807556152344, -6.013195037841797 ], [ -81.141807556152344, -6.012639045715332 ], [ -81.142082214355469, -6.012639045715332 ], [ -81.142082214355469, -6.012083053588867 ], [ -81.142364501953125, -6.012083053588867 ], [ -81.142364501953125, -6.011528968810978 ], [ -81.14263916015625, -6.011527061462402 ], [ -81.14263916015625, -6.010971069335938 ], [ -81.142913818359318, -6.010972976684513 ], [ -81.142913818359318, -6.010416984558049 ], [ -81.143196105956974, -6.010416984558049 ], [ -81.143196105956974, -6.009860992431584 ], [ -81.143470764160099, -6.009860992431584 ], [ -81.143470764160099, -6.009305000305176 ], [ -81.143753051757756, -6.009305000305176 ], [ -81.143753051757756, -6.008748054504338 ], [ -81.144027709960881, -6.00875091552723 ], [ -81.144027709960881, -6.008194923400822 ], [ -81.144302368164062, -6.008194923400822 ], [ -81.144302368164062, -6.007637977600098 ], [ -81.144584655761719, -6.007637977600098 ], [ -81.144584655761719, -6.007081985473519 ], [ -81.144859313964844, -6.007081985473519 ], [ -81.144859313964844, -6.006528854370117 ], [ -81.1451416015625, -6.006528854370117 ], [ -81.1451416015625, -6.005971908569336 ], [ -81.145416259765625, -6.005971908569336 ], [ -81.145416259765625, -6.005415916442871 ], [ -81.14569091796875, -6.005415916442871 ], [ -81.14569091796875, -6.00458383560175 ], [ -81.145973205566293, -6.00458383560175 ], [ -81.145973205566293, -6.002915859222412 ], [ -81.146247863769474, -6.002915859222412 ], [ -81.146247863769474, -6.000415802001953 ], [ -81.146530151367131, -6.000415802001953 ], [ -81.146530151367131, -6.000137805938721 ], [ -81.146530151367131, -5.999859809875488 ], [ -81.146804809570256, -5.999862194061222 ], [ -81.146804809570256, -5.999306201934758 ], [ -81.147087097167912, -5.999306201934758 ], [ -81.147087097167912, -5.99847221374506 ], [ -81.147361755371094, -5.99847221374506 ], [ -81.147361755371094, -5.997084140777588 ], [ -81.147636413574219, -5.997084140777588 ], [ -81.147636413574219, -5.996528148651066 ], [ -81.147918701171875, -5.996528148651066 ], [ -81.147918701171875, -5.995972156524601 ], [ -81.148193359375, -5.995972156524601 ], [ -81.148193359375, -5.995418071746826 ], [ -81.148475646972656, -5.995418071746826 ], [ -81.148475646972656, -5.9931960105896 ], [ -81.148750305175781, -5.9931960105896 ], [ -81.148750305175781, -5.992918014526367 ], [ -81.149024963378793, -5.992918014526367 ], [ -81.149024963378793, -5.991805076599121 ], [ -81.149307250976449, -5.991805076599121 ], [ -81.149307250976449, -5.990971088409424 ], [ -81.149024963378793, -5.990971088409424 ], [ -81.149024963378793, -5.990417003631535 ], [ -81.149307250976449, -5.990417003631535 ], [ -81.149307250976449, -5.98986101150507 ], [ -81.149581909179631, -5.98986101150507 ], [ -81.149581909179631, -5.989305019378605 ], [ -81.149864196777287, -5.989305019378605 ], [ -81.149864196777287, -5.988471031188965 ], [ -81.150138854980412, -5.988471031188965 ], [ -81.150138854980412, -5.987916946411133 ], [ -81.150413513183594, -5.987916946411133 ], [ -81.150413513183594, -5.987360954284611 ], [ -81.15069580078125, -5.987360954284611 ], [ -81.15069580078125, -5.987082958221379 ], [ -81.150970458984375, -5.987082958221379 ], [ -81.150970458984375, -5.986250877380371 ], [ -81.15069580078125, -5.986250877380371 ], [ -81.15069580078125, -5.985972881317139 ], [ -81.150413513183594, -5.985972881317139 ], [ -81.150413513183594, -5.984304904937744 ], [ -81.150138854980412, -5.984304904937744 ], [ -81.150138854980412, -5.983194828033447 ], [ -81.150413513183594, -5.983194828033447 ], [ -81.150413513183594, -5.982638835906982 ], [ -81.15069580078125, -5.982638835906982 ], [ -81.15069580078125, -5.982082843780518 ], [ -81.150970458984375, -5.982082843780518 ], [ -81.150970458984375, -5.980972766876221 ], [ -81.151252746582031, -5.980972766876221 ], [ -81.151252746582031, -5.97930717468256 ], [ -81.151527404785156, -5.97930717468256 ], [ -81.151527404785156, -5.978750228881779 ], [ -81.151802062988281, -5.978750228881779 ], [ -81.151802062988281, -5.978194236755314 ], [ -81.152084350585938, -5.978194236755314 ], [ -81.152084350585938, -5.977637767791691 ], [ -81.152359008788949, -5.977637767791691 ], [ -81.152359008788949, -5.976806163787842 ], [ -81.152084350585938, -5.976806163787842 ], [ -81.152084350585938, -5.976250171661377 ], [ -81.151802062988281, -5.976250171661377 ], [ -81.151802062988281, -5.975972175598145 ], [ -81.151252746582031, -5.975972175598145 ], [ -81.151252746582031, -5.975694179534798 ], [ -81.150970458984375, -5.975694179534798 ], [ -81.150970458984375, -5.975416183471623 ], [ -81.15069580078125, -5.975416183471623 ], [ -81.15069580078125, -5.97513818740839 ], [ -81.150413513183594, -5.97513818740839 ], [ -81.150413513183594, -5.974860191345158 ], [ -81.150138854980412, -5.974860191345158 ], [ -81.150138854980412, -5.974582195281926 ], [ -81.149864196777287, -5.974582195281926 ], [ -81.149864196777287, -5.973750114440918 ], [ -81.149581909179631, -5.973750114440918 ], [ -81.149581909179631, -5.972084045410156 ], [ -81.149307250976449, -5.972084045410156 ], [ -81.149307250976449, -5.971528053283691 ], [ -81.149024963378793, -5.971528053283691 ], [ -81.149024963378793, -5.970416069030762 ], [ -81.148750305175781, -5.970416069030762 ], [ -81.148750305175781, -5.970138072967529 ], [ -81.148475646972656, -5.970138072967529 ], [ -81.148475646972656, -5.970416069030762 ], [ -81.148193359375, -5.970416069030762 ], [ -81.148193359375, -5.970138072967529 ], [ -81.147918701171875, -5.970138072967529 ], [ -81.147918701171875, -5.969027996063232 ], [ -81.147636413574219, -5.969027996063232 ], [ -81.147636413574219, -5.967915058135929 ], [ -81.147361755371094, -5.967915058135929 ], [ -81.147361755371094, -5.966804981231689 ], [ -81.147636413574219, -5.966804981231689 ], [ -81.147636413574219, -5.965970993041935 ], [ -81.147918701171875, -5.965970993041935 ], [ -81.147918701171875, -5.965138912200928 ], [ -81.148193359375, -5.965138912200928 ], [ -81.148193359375, -5.964026927947998 ], [ -81.148475646972656, -5.964026927947998 ], [ -81.148475646972656, -5.963748931884766 ], [ -81.148750305175781, -5.963748931884766 ], [ -81.148750305175781, -5.962638854980469 ], [ -81.149024963378793, -5.962638854980469 ], [ -81.149024963378793, -5.962360858917236 ], [ -81.148750305175781, -5.962360858917236 ], [ -81.148750305175781, -5.961804866790771 ], [ -81.149024963378793, -5.961804866790771 ], [ -81.149024963378793, -5.961526870727539 ], [ -81.148750305175781, -5.961526870727539 ], [ -81.148750305175781, -5.960694789886418 ], [ -81.149024963378793, -5.960694789886418 ], [ -81.149024963378793, -5.958751201629582 ], [ -81.148750305175781, -5.958748817443848 ], [ -81.148750305175781, -5.957639217376652 ], [ -81.149024963378793, -5.957639217376652 ], [ -81.149024963378793, -5.95736122131342 ], [ -81.149307250976449, -5.95736122131342 ], [ -81.149307250976449, -5.957639217376652 ], [ -81.150138854980412, -5.957639217376652 ], [ -81.150138854980412, -5.953748226165715 ], [ -81.150413513183594, -5.953748226165715 ], [ -81.150413513183594, -5.952638149261475 ], [ -81.15069580078125, -5.952638149261475 ], [ -81.15069580078125, -5.951528072357178 ], [ -81.150970458984375, -5.951528072357178 ], [ -81.150970458984375, -5.950416088104248 ], [ -81.151252746582031, -5.950416088104248 ], [ -81.151252746582031, -5.949306011199894 ], [ -81.151527404785156, -5.949306011199894 ], [ -81.151527404785156, -5.948194026946965 ], [ -81.151802062988281, -5.948194026946965 ], [ -81.151802062988281, -5.947083950042611 ], [ -81.152084350585938, -5.947083950042611 ], [ -81.152084350585938, -5.946249961852971 ], [ -81.151802062988281, -5.946249961852971 ], [ -81.151802062988281, -5.945971965789738 ], [ -81.151527404785156, -5.945971965789738 ], [ -81.151527404785156, -5.945693969726506 ], [ -81.150970458984375, -5.945693969726506 ], [ -81.150970458984375, -5.945415973663273 ], [ -81.15069580078125, -5.945415973663273 ], [ -81.15069580078125, -5.94513988494873 ], [ -81.150413513183594, -5.94513988494873 ], [ -81.150413513183594, -5.944861888885498 ], [ -81.150138854980412, -5.944861888885498 ], [ -81.150138854980412, -5.944027900695801 ], [ -81.150413513183594, -5.944027900695801 ], [ -81.150413513183594, -5.942917823791504 ], [ -81.15069580078125, -5.942917823791504 ], [ -81.15069580078125, -5.941527843475342 ], [ -81.150970458984375, -5.941527843475342 ], [ -81.150970458984375, -5.940417766571045 ], [ -81.151252746582031, -5.940417766571045 ], [ -81.151252746582031, -5.939582824706974 ], [ -81.15069580078125, -5.939582824706974 ], [ -81.15069580078125, -5.939304828643742 ], [ -81.150413513183594, -5.939304828643742 ], [ -81.150413513183594, -5.93902683258051 ], [ -81.150138854980412, -5.93902683258051 ], [ -81.150138854980412, -5.938748836517334 ], [ -81.149581909179631, -5.938748836517334 ], [ -81.149581909179631, -5.938470840454102 ], [ -81.149307250976449, -5.938470840454102 ], [ -81.149307250976449, -5.938192844390869 ], [ -81.149024963378793, -5.938192844390869 ], [ -81.149024963378793, -5.937917232513371 ], [ -81.148475646972656, -5.937917232513371 ], [ -81.148475646972656, -5.937639236450138 ], [ -81.148193359375, -5.937639236450138 ], [ -81.148193359375, -5.936526775360051 ], [ -81.147918701171875, -5.936526775360051 ], [ -81.147918701171875, -5.934861183166447 ], [ -81.147636413574219, -5.934861183166447 ], [ -81.147636413574219, -5.93291711807251 ], [ -81.147361755371094, -5.93291711807251 ], [ -81.147361755371094, -5.931249141693058 ], [ -81.147087097167912, -5.931251049041748 ], [ -81.147087097167912, -5.929583072662354 ], [ -81.147361755371094, -5.929583072662354 ], [ -81.147361755371094, -5.928194999694824 ], [ -81.147636413574219, -5.928194999694824 ], [ -81.147636413574219, -5.926804065704346 ], [ -81.147918701171875, -5.926804065704346 ], [ -81.147918701171875, -5.925137996673527 ], [ -81.148193359375, -5.925137996673527 ], [ -81.148193359375, -5.923749923706055 ], [ -81.148475646972656, -5.923749923706055 ], [ -81.148475646972656, -5.922359943389779 ], [ -81.148750305175781, -5.922359943389779 ], [ -81.148750305175781, -5.921527862548828 ], [ -81.149024963378793, -5.921527862548828 ], [ -81.149024963378793, -5.920971870422363 ], [ -81.149307250976449, -5.920971870422363 ], [ -81.149307250976449, -5.920415878295898 ], [ -81.149581909179631, -5.920415878295898 ], [ -81.149581909179631, -5.91986179351801 ], [ -81.149864196777287, -5.91986179351801 ], [ -81.149864196777287, -5.919305801391602 ], [ -81.149581909179631, -5.919305801391602 ], [ -81.149581909179631, -5.918749809265137 ], [ -81.149307250976449, -5.918749809265137 ], [ -81.149307250976449, -5.918193817138672 ], [ -81.149024963378793, -5.918193817138672 ], [ -81.149024963378793, -5.917362213134709 ], [ -81.148750305175781, -5.917362213134709 ], [ -81.148750305175781, -5.916250228881836 ], [ -81.148475646972656, -5.916250228881836 ], [ -81.148475646972656, -5.91486215591425 ], [ -81.148193359375, -5.91486215591425 ], [ -81.148193359375, -5.913193225860539 ], [ -81.147918701171875, -5.913196086883545 ], [ -81.147918701171875, -5.911527156829834 ], [ -81.147636413574219, -5.911527156829834 ], [ -81.147636413574219, -5.909861087799072 ], [ -81.147361755371094, -5.909861087799072 ], [ -81.147361755371094, -5.908195018768254 ], [ -81.147087097167912, -5.908195018768254 ], [ -81.147087097167912, -5.906805038452148 ], [ -81.147361755371094, -5.906805038452148 ], [ -81.147361755371094, -5.905694961547795 ], [ -81.147636413574219, -5.905694961547795 ], [ -81.147636413574219, -5.904582977294865 ], [ -81.147918701171875, -5.904582977294865 ], [ -81.147918701171875, -5.903472900390625 ], [ -81.148193359375, -5.903472900390625 ], [ -81.148193359375, -5.902638912200871 ], [ -81.148475646972656, -5.902638912200871 ], [ -81.148475646972656, -5.901528835296631 ], [ -81.148750305175781, -5.901528835296631 ], [ -81.148750305175781, -5.900416851043701 ], [ -81.149024963378793, -5.900416851043701 ], [ -81.149024963378793, -5.899303913116455 ], [ -81.149307250976449, -5.899303913116455 ], [ -81.149307250976449, -5.898193836212158 ], [ -81.149581909179631, -5.898193836212158 ], [ -81.149581909179631, -5.897359848022461 ], [ -81.149864196777287, -5.897359848022461 ], [ -81.149864196777287, -5.896805763244572 ], [ -81.150138854980412, -5.896805763244572 ], [ -81.150138854980412, -5.895971775054875 ], [ -81.150413513183594, -5.895971775054875 ], [ -81.150413513183594, -5.895137786865178 ], [ -81.15069580078125, -5.895137786865178 ], [ -81.15069580078125, -5.89458179473877 ], [ -81.150970458984375, -5.89458179473877 ], [ -81.150970458984375, -5.893750190734806 ], [ -81.151252746582031, -5.893750190734806 ], [ -81.151252746582031, -5.893194198608342 ], [ -81.151527404785156, -5.893194198608342 ], [ -81.151527404785156, -5.892360210418644 ], [ -81.151802062988281, -5.892360210418644 ], [ -81.151802062988281, -5.891526222229004 ], [ -81.152084350585938, -5.891526222229004 ], [ -81.152084350585938, -5.890972137451058 ], [ -81.152359008788949, -5.890972137451058 ], [ -81.152359008788949, -5.889584064483643 ], [ -81.151802062988281, -5.889584064483643 ], [ -81.151802062988281, -5.88930606842041 ], [ -81.150970458984375, -5.88930606842041 ], [ -81.150970458984375, -5.889028072357178 ], [ -81.15069580078125, -5.889028072357178 ], [ -81.15069580078125, -5.888750076293945 ], [ -81.150413513183594, -5.888750076293945 ], [ -81.150413513183594, -5.88819408416748 ], [ -81.150138854980412, -5.88819408416748 ], [ -81.150138854980412, -5.887362003326416 ], [ -81.149864196777287, -5.887362003326416 ], [ -81.149864196777287, -5.886806011199951 ], [ -81.149581909179631, -5.886806011199951 ], [ -81.149581909179631, -5.88624906539917 ], [ -81.149307250976449, -5.88624906539917 ], [ -81.149307250976449, -5.885417938232365 ], [ -81.149024963378793, -5.885417938232365 ], [ -81.149024963378793, -5.884860992431584 ], [ -81.148750305175781, -5.884860992431584 ], [ -81.148750305175781, -5.884305000305119 ], [ -81.148475646972656, -5.884305000305119 ], [ -81.148475646972656, -5.884027004241887 ], [ -81.148193359375, -5.884027004241887 ], [ -81.148193359375, -5.883749008178654 ], [ -81.147918701171875, -5.883749008178654 ], [ -81.147918701171875, -5.883472919464111 ], [ -81.147636413574219, -5.883472919464111 ], [ -81.147636413574219, -5.883194923400879 ], [ -81.147361755371094, -5.883194923400879 ], [ -81.147361755371094, -5.882916927337646 ], [ -81.147087097167912, -5.882916927337646 ], [ -81.147087097167912, -5.882638931274414 ], [ -81.146804809570256, -5.882638931274414 ], [ -81.146804809570256, -5.882360935211182 ], [ -81.146530151367131, -5.882360935211182 ], [ -81.146530151367131, -5.882082939147949 ], [ -81.146247863769474, -5.882082939147949 ], [ -81.146247863769474, -5.881804943084603 ], [ -81.14569091796875, -5.881804943084603 ], [ -81.14569091796875, -5.881526947021428 ], [ -81.145416259765625, -5.881526947021428 ], [ -81.145416259765625, -5.881248950958195 ], [ -81.1451416015625, -5.881248950958195 ], [ -81.1451416015625, -5.880972862243652 ], [ -81.144859313964844, -5.880972862243652 ], [ -81.144859313964844, -5.88069486618042 ], [ -81.144584655761719, -5.88069486618042 ], [ -81.144584655761719, -5.880416870117188 ], [ -81.144302368164062, -5.880416870117188 ], [ -81.144302368164062, -5.880138874053955 ], [ -81.144027709960881, -5.880138874053955 ], [ -81.144027709960881, -5.879860877990723 ], [ -81.143753051757756, -5.879860877990723 ], [ -81.143753051757756, -5.87958288192749 ], [ -81.143470764160099, -5.87958288192749 ], [ -81.143470764160099, -5.879304885864258 ], [ -81.141250610351562, -5.879304885864258 ], [ -81.141250610351562, -5.87958288192749 ], [ -81.139656066894474, -5.87958288192749 ], [ -81.139030456542969, -5.87958288192749 ], [ -81.139030456542969, -5.879304885864258 ], [ -81.138473510742188, -5.879304885864258 ], [ -81.138473510742188, -5.879026889801025 ], [ -81.138191223144531, -5.879026889801025 ], [ -81.138191223144531, -5.878472805023193 ], [ -81.137916564941406, -5.878472805023193 ], [ -81.137916564941406, -5.877638816833496 ], [ -81.137641906738224, -5.877638816833496 ], [ -81.137641906738224, -5.877048969268742 ], [ -81.137641906738224, -5.876804828643799 ], [ -81.137428283691406, -5.876804828643799 ], [ -81.137359619140568, -5.875973224639893 ], [ -81.137084960937443, -5.875973224639893 ], [ -81.137084960937443, -5.875139236450195 ], [ -81.136802673339787, -5.875139236450195 ], [ -81.136802673339787, -5.874307155609074 ], [ -81.136528015136605, -5.874307155609074 ], [ -81.136528015136605, -5.873751163482609 ], [ -81.136253356933594, -5.873751163482609 ], [ -81.136253356933594, -5.873195171356144 ], [ -81.135971069335938, -5.873195171356144 ], [ -81.135971069335938, -5.872638225555363 ], [ -81.135696411132812, -5.872638225555363 ], [ -81.135696411132812, -5.872360229492131 ], [ -81.135414123535156, -5.872360229492131 ], [ -81.135414123535156, -5.871804237365666 ], [ -81.135139465332031, -5.871804237365666 ], [ -81.135139465332031, -5.871250152587891 ], [ -81.134864807128906, -5.871250152587891 ], [ -81.134864807128906, -5.870694160461426 ], [ -81.13458251953125, -5.870694160461426 ], [ -81.13458251953125, -5.867638111114502 ], [ -81.134307861328068, -5.867638111114502 ], [ -81.134307861328068, -5.867084026336613 ], [ -81.134025573730412, -5.867084026336613 ], [ -81.134025573730412, -5.866528034210205 ], [ -81.133750915527287, -5.866528034210205 ], [ -81.133750915527287, -5.86597204208374 ], [ -81.133468627929631, -5.86597204208374 ], [ -81.133468627929631, -5.865416049957275 ], [ -81.133193969726449, -5.865416049957275 ], [ -81.133193969726449, -5.864860057830811 ], [ -81.132919311523438, -5.864861965179387 ], [ -81.132919311523438, -5.864305973052922 ], [ -81.132637023925781, -5.864305973052922 ], [ -81.132637023925781, -5.863749980926457 ], [ -81.132362365722656, -5.863749980926457 ], [ -81.132362365722656, -5.863193988800049 ], [ -81.132080078125, -5.863193988800049 ], [ -81.132080078125, -5.862637996673584 ], [ -81.131805419921875, -5.862639904022217 ], [ -81.131805419921875, -5.862083911895695 ], [ -81.13153076171875, -5.862083911895695 ], [ -81.13153076171875, -5.86152791976923 ], [ -81.131248474121037, -5.86152791976923 ], [ -81.131248474121037, -5.860971927642765 ], [ -81.130973815917912, -5.860971927642765 ], [ -81.130973815917912, -5.860139846801758 ], [ -81.130691528320256, -5.860139846801758 ], [ -81.130691528320256, -5.859583854675293 ], [ -81.130416870117131, -5.859583854675293 ], [ -81.130416870117131, -5.859026908874512 ], [ -81.130142211913949, -5.859026908874512 ], [ -81.130142211913949, -5.858470916748047 ], [ -81.129859924316406, -5.858470916748047 ], [ -81.129859924316406, -5.857916831970158 ], [ -81.129585266113281, -5.857916831970158 ], [ -81.129585266113281, -5.857082843780518 ], [ -81.129302978515625, -5.857082843780518 ], [ -81.129302978515625, -5.856526851654053 ], [ -81.1290283203125, -5.856526851654053 ], [ -81.1290283203125, -5.855972766876164 ], [ -81.128753662109375, -5.855972766876164 ], [ -81.128753662109375, -5.855416774749699 ], [ -81.128471374511719, -5.855416774749699 ], [ -81.128471374511719, -5.854860782623234 ], [ -81.128196716308537, -5.854860782623234 ], [ -81.128196716308537, -5.854026794433594 ], [ -81.127914428710881, -5.854026794433594 ], [ -81.127914428710881, -5.853470802307129 ], [ -81.127639770507756, -5.853473186492863 ], [ -81.127639770507756, -5.852917194366398 ], [ -81.127357482910099, -5.852917194366398 ], [ -81.127357482910099, -5.852361202239933 ], [ -81.127082824706974, -5.852361202239933 ], [ -81.127082824706974, -5.851805210113469 ], [ -81.126808166503906, -5.851805210113469 ], [ -81.126808166503906, -5.850415229797363 ], [ -81.12652587890625, -5.850417137145882 ], [ -81.12652587890625, -5.84819507598877 ], [ -81.126251220703125, -5.84819507598877 ], [ -81.126251220703125, -5.845973014831543 ], [ -81.125968933105469, -5.845973014831543 ], [ -81.125968933105469, -5.842638015747013 ], [ -81.126251220703125, -5.842638015747013 ], [ -81.126251220703125, -5.840415954589787 ], [ -81.125694274902344, -5.840415954589787 ], [ -81.125694274902344, -5.840137958526554 ], [ -81.125137329101562, -5.840137958526554 ], [ -81.125137329101562, -5.839859962463322 ], [ -81.124580383300724, -5.839859962463322 ], [ -81.124580383300724, -5.839583873748779 ], [ -81.124305725097599, -5.839583873748779 ], [ -81.124305725097599, -5.839305877685547 ], [ -81.123748779296761, -5.839305877685547 ], [ -81.123748779296761, -5.839027881622314 ], [ -81.123191833496094, -5.839027881622314 ], [ -81.123191833496094, -5.838749885559082 ], [ -81.1129150390625, -5.838749885559082 ], [ -81.1129150390625, -5.839027881622314 ], [ -81.112640380859375, -5.839027881622314 ], [ -81.112640380859375, -5.839305877685547 ], [ -81.112358093261719, -5.839305877685547 ], [ -81.112358093261719, -5.839583873748779 ], [ -81.112083435058537, -5.839583873748779 ], [ -81.112083435058537, -5.839859962463322 ], [ -81.111808776855412, -5.839859962463322 ], [ -81.111808776855412, -5.840137958526554 ], [ -81.111526489257756, -5.840137958526554 ], [ -81.111526489257756, -5.840415954589787 ], [ -81.111251831054631, -5.840415954589787 ], [ -81.111251831054631, -5.840693950653019 ], [ -81.110969543456918, -5.840693950653019 ], [ -81.110969543456918, -5.840971946716252 ], [ -81.110694885253906, -5.840971946716252 ], [ -81.110694885253906, -5.841249942779427 ], [ -81.110420227050781, -5.841249942779427 ], [ -81.110420227050781, -5.841527938842773 ], [ -81.110137939453125, -5.841527938842773 ], [ -81.110137939453125, -5.841805934906006 ], [ -81.10986328125, -5.841805934906006 ], [ -81.10986328125, -5.842083930969238 ], [ -81.109580993652344, -5.842083930969238 ], [ -81.109580993652344, -5.842360019683781 ], [ -81.105415344238224, -5.842360019683781 ], [ -81.105415344238224, -5.842083930969238 ], [ -81.101249694824219, -5.842083930969238 ], [ -81.101249694824219, -5.841805934906006 ], [ -81.100975036621094, -5.841805934906006 ], [ -81.100975036621094, -5.841527938842773 ], [ -81.100692749023438, -5.841527938842773 ], [ -81.100692749023438, -5.840971946716252 ], [ -81.100418090820312, -5.840971946716252 ], [ -81.100418090820312, -5.840693950653019 ], [ -81.100135803222656, -5.840693950653019 ], [ -81.100135803222656, -5.840415954589787 ], [ -81.099861145019531, -5.840415954589787 ], [ -81.099861145019531, -5.840137958526554 ], [ -81.099586486816349, -5.840137958526554 ], [ -81.099586486816349, -5.839859962463322 ], [ -81.099304199218693, -5.839859962463322 ], [ -81.099304199218693, -5.839305877685547 ], [ -81.099029541015568, -5.839305877685547 ], [ -81.099029541015568, -5.839027881622314 ], [ -81.098747253417912, -5.839027881622314 ], [ -81.098747253417912, -5.838749885559082 ], [ -81.098472595214787, -5.838749885559082 ], [ -81.098472595214787, -5.83847188949585 ], [ -81.098197937011719, -5.83847188949585 ], [ -81.098197937011719, -5.837915897369385 ], [ -81.097915649414062, -5.837915897369385 ], [ -81.097915649414062, -5.837637901306039 ], [ -81.097640991210938, -5.837637901306039 ], [ -81.097640991210938, -5.837361812591553 ], [ -81.097358703613281, -5.837361812591553 ], [ -81.097358703613281, -5.83708381652832 ], [ -81.097084045410156, -5.83708381652832 ], [ -81.097084045410156, -5.836527824401855 ], [ -81.0968017578125, -5.836527824401855 ], [ -81.0968017578125, -5.836249828338623 ], [ -81.096527099609375, -5.836249828338623 ], [ -81.096527099609375, -5.835971832275391 ], [ -81.096252441406193, -5.835971832275391 ], [ -81.096252441406193, -5.835693836212158 ], [ -81.095970153808537, -5.835693836212158 ], [ -81.095970153808537, -5.835418224334717 ], [ -81.095695495605412, -5.835418224334717 ], [ -81.095695495605412, -5.834862232208252 ], [ -81.095413208007756, -5.834862232208252 ], [ -81.095413208007756, -5.83458423614502 ], [ -81.095138549804574, -5.83458423614502 ], [ -81.095138549804574, -5.834027767181396 ], [ -81.094863891601562, -5.834027767181396 ], [ -81.094863891601562, -5.833470821380558 ], [ -81.094581604003906, -5.833470821380558 ], [ -81.094581604003906, -5.832640171050969 ], [ -81.094306945800781, -5.832640171050969 ], [ -81.094306945800781, -5.832083225250187 ], [ -81.094024658203125, -5.832083225250187 ], [ -81.094024658203125, -5.83124923706049 ], [ -81.09375, -5.83124923706049 ], [ -81.09375, -5.830417156219482 ], [ -81.093475341796875, -5.830417156219482 ], [ -81.093475341796875, -5.829861164093018 ], [ -81.093193054199219, -5.829861164093018 ], [ -81.093193054199219, -5.826805114746094 ], [ -81.093475341796875, -5.826805114746094 ], [ -81.093475341796875, -5.826527118682861 ], [ -81.09375, -5.826527118682861 ], [ -81.09375, -5.825139045715332 ], [ -81.094024658203125, -5.825139045715332 ], [ -81.094024658203125, -5.824028968810978 ], [ -81.094306945800781, -5.824027061462402 ], [ -81.094306945800781, -5.822360992431641 ], [ -81.094581604003906, -5.822360992431641 ], [ -81.094581604003906, -5.821805000305176 ], [ -81.094306945800781, -5.821805000305176 ], [ -81.094306945800781, -5.821248054504338 ], [ -81.094024658203125, -5.821250915527287 ], [ -81.094024658203125, -5.82041692733759 ], [ -81.093193054199219, -5.82041692733759 ], [ -81.093193054199219, -5.820694923400822 ], [ -81.092636108398381, -5.820694923400822 ], [ -81.092636108398381, -5.820972919464054 ], [ -81.092086791992074, -5.820972919464054 ], [ -81.092086791992074, -5.821250915527287 ], [ -81.091529846191406, -5.821250915527287 ], [ -81.091529846191406, -5.820972919464054 ], [ -81.09124755859375, -5.820972919464054 ], [ -81.09124755859375, -5.82041692733759 ], [ -81.090972900390625, -5.82041692733759 ], [ -81.090972900390625, -5.820138931274357 ], [ -81.0906982421875, -5.820138931274357 ], [ -81.090690612792969, -5.818471908569336 ], [ -81.090415954589844, -5.818471908569336 ], [ -81.090415954589844, -5.817915916442871 ], [ -81.089859008789006, -5.817915916442871 ], [ -81.089859008789006, -5.817637920379639 ], [ -81.089584350585881, -5.817637920379639 ], [ -81.089584350585881, -5.817359924316406 ], [ -81.089302062988224, -5.817359924316406 ], [ -81.089302062988224, -5.817083835601807 ], [ -81.089027404785099, -5.817083835601807 ], [ -81.089027404785099, -5.816805839538574 ], [ -81.088752746581918, -5.816805839538574 ], [ -81.088752746581918, -5.816527843475342 ], [ -81.088470458984375, -5.816527843475342 ], [ -81.088470458984375, -5.816249847412109 ], [ -81.08819580078125, -5.816249847412109 ], [ -81.08819580078125, -5.815693855285645 ], [ -81.087638854980469, -5.815693855285645 ], [ -81.087638854980469, -5.815415859222412 ], [ -81.087364196777344, -5.815415859222412 ], [ -81.087364196777344, -5.814583778381291 ], [ -81.087081909179688, -5.814583778381291 ], [ -81.087081909179688, -5.813471794128418 ], [ -81.086807250976506, -5.813471794128418 ], [ -81.086807250976506, -5.812359809875488 ], [ -81.086524963378849, -5.812362194061222 ], [ -81.086524963378849, -5.810694217681885 ], [ -81.086250305175724, -5.810694217681885 ], [ -81.086250305175724, -5.809306144714299 ], [ -81.085975646972599, -5.809306144714299 ], [ -81.085975646972599, -5.807640075683594 ], [ -81.085693359374943, -5.807640075683594 ], [ -81.085693359374943, -5.806249141693115 ], [ -81.085136413574219, -5.806249141693115 ], [ -81.085136413574219, -5.805418014526367 ], [ -81.085418701171875, -5.805418014526367 ], [ -81.085418701171875, -5.805140018463135 ], [ -81.085136413574219, -5.805140018463135 ], [ -81.085136413574219, -5.804583072662354 ], [ -81.084861755371094, -5.804583072662354 ], [ -81.084861755371094, -5.804305076599121 ], [ -81.085136413574219, -5.804305076599121 ], [ -81.085136413574219, -5.804027080535889 ], [ -81.084861755371094, -5.804027080535889 ], [ -81.084861755371094, -5.803749084472656 ], [ -81.084587097167969, -5.803749084472656 ], [ -81.084587097167969, -5.802917003631535 ], [ -81.084304809570312, -5.802917003631535 ], [ -81.084304809570312, -5.80152702331543 ], [ -81.084587097167969, -5.80152702331543 ], [ -81.084587097167969, -5.799582958221379 ], [ -81.084861755371094, -5.799582958221379 ], [ -81.084861755371094, -5.797916889190674 ], [ -81.085136413574219, -5.797916889190674 ], [ -81.085136413574219, -5.796250820159912 ], [ -81.085418701171875, -5.796250820159912 ], [ -81.085418701171875, -5.79486083984375 ], [ -81.085693359374943, -5.79486083984375 ], [ -81.085693359374943, -5.793194770812988 ], [ -81.085975646972599, -5.793194770812988 ], [ -81.085975646972599, -5.792359828948975 ], [ -81.085693359374943, -5.792359828948975 ], [ -81.085693359374943, -5.79180717468256 ], [ -81.085418701171875, -5.79180717468256 ], [ -81.085418701171875, -5.791529178619328 ], [ -81.085136413574219, -5.791529178619328 ], [ -81.085136413574219, -5.790972232818547 ], [ -81.084861755371094, -5.790972232818547 ], [ -81.084861755371094, -5.790694236755314 ], [ -81.084587097167969, -5.790694236755314 ], [ -81.084587097167969, -5.790137767791691 ], [ -81.084304809570312, -5.790137767791691 ], [ -81.084304809570312, -5.789859771728459 ], [ -81.084030151367188, -5.789859771728459 ], [ -81.084030151367188, -5.789581775665226 ], [ -81.083747863769531, -5.789581775665226 ], [ -81.083747863769531, -5.789306163787842 ], [ -81.083473205566349, -5.789306163787842 ], [ -81.083473205566349, -5.789028167724609 ], [ -81.083190917968693, -5.789028167724609 ], [ -81.083190917968693, -5.788750171661263 ], [ -81.082916259765568, -5.788750171661263 ], [ -81.082916259765568, -5.789028167724609 ], [ -81.08235931396473, -5.789028167724609 ], [ -81.08235931396473, -5.789306163787842 ], [ -81.082084655761719, -5.789306163787842 ], [ -81.082084655761719, -5.789028167724609 ], [ -81.081802368164062, -5.789028167724609 ], [ -81.081802368164062, -5.788472175598088 ], [ -81.081253051757812, -5.788472175598088 ], [ -81.081253051757812, -5.788194179534855 ], [ -81.080696105957031, -5.788194179534855 ], [ -81.080696105957031, -5.787916183471623 ], [ -81.080139160156193, -5.787916183471623 ], [ -81.080139160156193, -5.78763818740839 ], [ -81.079582214355412, -5.78763818740839 ], [ -81.079582214355412, -5.787360191345158 ], [ -81.079025268554574, -5.787360191345158 ], [ -81.079025268554574, -5.787082195281926 ], [ -81.078475952148438, -5.787084102630615 ], [ -81.078475952148438, -5.786806106567383 ], [ -81.077919006347656, -5.786806106567383 ], [ -81.077919006347656, -5.78652811050415 ], [ -81.077362060546875, -5.78652811050415 ], [ -81.077362060546875, -5.786250114440918 ], [ -81.076805114746037, -5.786250114440918 ], [ -81.076805114746037, -5.785972118377686 ], [ -81.076248168945256, -5.785972118377686 ], [ -81.076248168945256, -5.785694122314453 ], [ -81.075973510742074, -5.785694122314453 ], [ -81.075973510742074, -5.785416126251221 ], [ -81.075691223144531, -5.785416126251221 ], [ -81.075691223144531, -5.785138130187875 ], [ -81.073196411132756, -5.785138130187875 ], [ -81.073196411132756, -5.784860134124699 ], [ -81.072914123535099, -5.784862041473389 ], [ -81.072914123535099, -5.784584045410156 ], [ -81.072639465332031, -5.784584045410156 ], [ -81.072639465332031, -5.783750057220459 ], [ -81.07208251953125, -5.783750057220459 ], [ -81.07208251953125, -5.783472061157227 ], [ -81.071807861328125, -5.783472061157227 ], [ -81.071807861328125, -5.783194065093994 ], [ -81.06903076171875, -5.783194065093994 ], [ -81.06903076171875, -5.782916069030762 ], [ -81.068473815917969, -5.782916069030762 ], [ -81.068473815917969, -5.783194065093994 ], [ -81.067359924316349, -5.783194065093994 ], [ -81.067359924316349, -5.783750057220459 ], [ -81.067085266113224, -5.783750057220459 ], [ -81.067085266113224, -5.784306049346924 ], [ -81.066802978515568, -5.784306049346924 ], [ -81.066802978515568, -5.784584045410156 ], [ -81.066528320312386, -5.784584045410156 ], [ -81.066528320312386, -5.785140037536621 ], [ -81.066253662109375, -5.785138130187875 ], [ -81.066253662109375, -5.785416126251221 ], [ -81.065971374511719, -5.785416126251221 ], [ -81.065971374511719, -5.785694122314453 ], [ -81.065414428710938, -5.785694122314453 ], [ -81.065414428710938, -5.785972118377686 ], [ -81.064857482910156, -5.785972118377686 ], [ -81.064857482910156, -5.786250114440918 ], [ -81.064025878906193, -5.786250114440918 ], [ -81.064025878906193, -5.786806106567383 ], [ -81.063468933105412, -5.786806106567383 ], [ -81.063468933105412, -5.787084102630615 ], [ -81.062919616699219, -5.787082195281926 ], [ -81.062919616699219, -5.78763818740839 ], [ -81.062080383300781, -5.78763818740839 ], [ -81.062080383300781, -5.787916183471623 ], [ -81.061805725097656, -5.787916183471623 ], [ -81.061805725097656, -5.788194179534855 ], [ -81.061531066894531, -5.788194179534855 ], [ -81.061531066894531, -5.788472175598088 ], [ -81.060691833496037, -5.788472175598088 ], [ -81.060691833496037, -5.788750171661263 ], [ -81.060417175292912, -5.788750171661263 ], [ -81.060417175292912, -5.789306163787842 ], [ -81.059860229492188, -5.789306163787842 ], [ -81.059860229492188, -5.789581775665226 ], [ -81.059585571289062, -5.789581775665226 ], [ -81.059585571289062, -5.790137767791691 ], [ -81.059303283691406, -5.790137767791691 ], [ -81.059303283691406, -5.790415763854924 ], [ -81.058746337890625, -5.790415763854924 ], [ -81.058746337890625, -5.790694236755314 ], [ -81.0584716796875, -5.790694236755314 ], [ -81.0584716796875, -5.790972232818547 ], [ -81.058746337890625, -5.790972232818547 ], [ -81.058746337890625, -5.791250228881779 ], [ -81.0584716796875, -5.791250228881779 ], [ -81.0584716796875, -5.79180717468256 ], [ -81.058197021484318, -5.79180717468256 ], [ -81.058197021484318, -5.792081832885742 ], [ -81.057914733886662, -5.792081832885742 ], [ -81.057914733886662, -5.792359828948975 ], [ -81.057640075683537, -5.792359828948975 ], [ -81.057640075683537, -5.79263782501215 ], [ -81.057357788085881, -5.79263782501215 ], [ -81.057357788085881, -5.792916774749756 ], [ -81.057083129882756, -5.792916774749756 ], [ -81.057083129882756, -5.793194770812988 ], [ -81.056808471679688, -5.793194770812988 ], [ -81.056808471679688, -5.793472766876221 ], [ -81.056526184082031, -5.793472766876221 ], [ -81.056526184082031, -5.793750762939453 ], [ -81.056251525878906, -5.793750762939453 ], [ -81.056251525878906, -5.794029235839844 ], [ -81.05596923828125, -5.794029235839844 ], [ -81.05596923828125, -5.794304847717285 ], [ -81.055694580078125, -5.794307231903076 ], [ -81.055694580078125, -5.794582843780518 ], [ -81.055419921875, -5.794582843780518 ], [ -81.055419921875, -5.79486083984375 ], [ -81.055137634277344, -5.79486083984375 ], [ -81.055137634277344, -5.795416831970215 ], [ -81.054862976074162, -5.795416831970215 ], [ -81.054862976074162, -5.795694828033447 ], [ -81.054580688476506, -5.795694828033447 ], [ -81.054580688476506, -5.79597282409668 ], [ -81.054306030273381, -5.79597282409668 ], [ -81.054306030273381, -5.796250820159912 ], [ -81.054031372070256, -5.796250820159912 ], [ -81.054031372070256, -5.796528816223145 ], [ -81.053749084472543, -5.796528816223145 ], [ -81.053749084472543, -5.796804904937687 ], [ -81.053474426269531, -5.796804904937687 ], [ -81.053474426269531, -5.797082901000863 ], [ -81.053192138671875, -5.797082901000863 ], [ -81.053192138671875, -5.796804904937687 ], [ -81.05291748046875, -5.796804904937687 ], [ -81.05291748046875, -5.797360897064209 ], [ -81.052635192871094, -5.797360897064209 ], [ -81.052635192871094, -5.797638893127441 ], [ -81.052360534667969, -5.797638893127441 ], [ -81.052360534667969, -5.798194885253906 ], [ -81.052085876464844, -5.798194885253906 ], [ -81.052085876464844, -5.798748970031681 ], [ -81.051803588867188, -5.798748970031681 ], [ -81.051803588867188, -5.799304962158146 ], [ -81.051528930664006, -5.799304962158146 ], [ -81.051528930664006, -5.800138950347844 ], [ -81.050971984863224, -5.800138950347844 ], [ -81.050971984863224, -5.800416946411076 ], [ -81.050697326660043, -5.800416946411076 ], [ -81.050697326660043, -5.800971031188965 ], [ -81.050415039062386, -5.800972938537598 ], [ -81.050415039062386, -5.80152702331543 ], [ -81.050140380859375, -5.80152702331543 ], [ -81.050140380859375, -5.802083015441838 ], [ -81.049858093261719, -5.802083015441838 ], [ -81.049858093261719, -5.80236101150507 ], [ -81.049583435058594, -5.80236101150507 ], [ -81.049583435058594, -5.802917003631535 ], [ -81.049308776855469, -5.802917003631535 ], [ -81.049308776855469, -5.803471088409424 ], [ -81.048751831054688, -5.803471088409424 ], [ -81.048751831054688, -5.804027080535889 ], [ -81.048469543456974, -5.804027080535889 ], [ -81.048469543456974, -5.804305076599121 ], [ -81.048194885253849, -5.804305076599121 ], [ -81.048194885253849, -5.804583072662354 ], [ -81.047920227050724, -5.804583072662354 ], [ -81.047920227050724, -5.805140018463135 ], [ -81.047637939453068, -5.805140018463135 ], [ -81.047637939453068, -5.805971145629883 ], [ -81.047363281249886, -5.805971145629883 ], [ -81.047363281249886, -5.806249141693115 ], [ -81.047080993652344, -5.806249141693115 ], [ -81.047080993652344, -5.807081222534123 ], [ -81.046524047851562, -5.807081222534123 ], [ -81.046524047851562, -5.807916164398137 ], [ -81.045974731445312, -5.807916164398137 ], [ -81.045974731445312, -5.808194160461369 ], [ -81.044586181640568, -5.808194160461369 ], [ -81.044586181640568, -5.808472156524601 ], [ -81.044303894042912, -5.808472156524601 ], [ -81.044303894042912, -5.808750152587834 ], [ -81.043472290039062, -5.808750152587834 ], [ -81.043472290039062, -5.809028148651066 ], [ -81.042915344238281, -5.809028148651066 ], [ -81.042915344238281, -5.809306144714299 ], [ -81.042640686035156, -5.809306144714299 ], [ -81.042640686035156, -5.809582233428955 ], [ -81.0423583984375, -5.809582233428955 ], [ -81.0423583984375, -5.809860229492188 ], [ -81.042640686035156, -5.809860229492188 ], [ -81.042640686035156, -5.81013822555542 ], [ -81.0423583984375, -5.81013822555542 ], [ -81.0423583984375, -5.810416221618652 ], [ -81.042083740234318, -5.810416221618652 ], [ -81.042083740234318, -5.814305782318058 ], [ -81.041809082031193, -5.814305782318058 ], [ -81.041809082031193, -5.814583778381291 ], [ -81.041526794433537, -5.814583778381291 ], [ -81.041526794433537, -5.81513786315918 ], [ -81.041252136230412, -5.81513786315918 ], [ -81.041252136230412, -5.815693855285645 ], [ -81.040695190429688, -5.815693855285645 ], [ -81.040695190429688, -5.815971851348877 ], [ -81.040412902832031, -5.815971851348877 ], [ -81.040412902832031, -5.816527843475342 ], [ -81.039863586425781, -5.816527843475342 ], [ -81.039863586425781, -5.816805839538574 ], [ -81.039581298828125, -5.816805839538574 ], [ -81.039581298828125, -5.817083835601807 ], [ -81.039024353027344, -5.817083835601807 ], [ -81.039024353027344, -5.817359924316406 ], [ -81.038749694824162, -5.817359924316406 ], [ -81.038749694824162, -5.817637920379639 ], [ -81.038192749023381, -5.817637920379639 ], [ -81.038192749023381, -5.817915916442871 ], [ -81.038475036621037, -5.817915916442871 ], [ -81.038475036621037, -5.818471908569336 ], [ -81.038192749023381, -5.818471908569336 ], [ -81.038192749023381, -5.818750858306885 ], [ -81.037918090820199, -5.818750858306885 ], [ -81.037918090820199, -5.819028854370117 ], [ -81.037635803222543, -5.819028854370117 ], [ -81.037635803222543, -5.819303989410344 ], [ -81.037086486816406, -5.819303989410344 ], [ -81.037086486816406, -5.819581985473576 ], [ -81.03680419921875, -5.819581985473576 ], [ -81.03680419921875, -5.819859981536808 ], [ -81.036529541015625, -5.819859981536808 ], [ -81.036529541015625, -5.820138931274357 ], [ -81.036247253417969, -5.820138931274357 ], [ -81.036247253417969, -5.82041692733759 ], [ -81.035972595214844, -5.82041692733759 ], [ -81.035972595214844, -5.820694923400822 ], [ -81.035415649414006, -5.820694923400822 ], [ -81.035415649414006, -5.820972919464054 ], [ -81.035140991210881, -5.820972919464054 ], [ -81.035140991210881, -5.821250915527287 ], [ -81.034858703613224, -5.821248054504338 ], [ -81.034858703613224, -5.821527004241943 ], [ -81.034584045410043, -5.821527004241943 ], [ -81.034584045410043, -5.821805000305176 ], [ -81.034309387207031, -5.821805000305176 ], [ -81.0343017578125, -5.822082996368408 ], [ -81.03375244140625, -5.822082996368408 ], [ -81.03375244140625, -5.822360992431641 ], [ -81.033470153808594, -5.822360992431641 ], [ -81.033470153808594, -5.822638988494873 ], [ -81.03125, -5.822638988494873 ], [ -81.03125, -5.822916984558049 ], [ -81.030693054199219, -5.822916984558049 ], [ -81.030693054199219, -5.823472976684513 ], [ -81.030136108398438, -5.823471069335938 ], [ -81.030136108398438, -5.82374906539917 ], [ -81.029586791992131, -5.82374906539917 ], [ -81.029586791992131, -5.824305057525635 ], [ -81.029304504394474, -5.824305057525635 ], [ -81.029304504394474, -5.8248610496521 ], [ -81.028747558593693, -5.8248610496521 ], [ -81.028747558593693, -5.825139045715332 ], [ -81.028472900390568, -5.825139045715332 ], [ -81.028472900390568, -5.825417041778564 ], [ -81.0281982421875, -5.825417041778564 ], [ -81.0281982421875, -5.825695037841797 ], [ -81.027915954589844, -5.825695037841797 ], [ -81.027915954589844, -5.825973033905029 ], [ -81.027359008789062, -5.825971126556396 ], [ -81.027359008789062, -5.826249122619629 ], [ -81.027084350585938, -5.826249122619629 ], [ -81.027084350585938, -5.826527118682861 ], [ -81.026527404785156, -5.826527118682861 ], [ -81.026527404785156, -5.826805114746094 ], [ -81.025970458984318, -5.826805114746094 ], [ -81.025970458984318, -5.827083110809326 ], [ -81.025695800781193, -5.827083110809326 ], [ -81.025695800781193, -5.827361106872559 ], [ -81.025138854980355, -5.827361106872559 ], [ -81.025138854980355, -5.827917098999023 ], [ -81.024307250976562, -5.827917098999023 ], [ -81.024307250976562, -5.828195095062256 ], [ -81.023750305175781, -5.828195095062256 ], [ -81.023750305175781, -5.828471183776799 ], [ -81.022918701171818, -5.828471183776799 ], [ -81.022918701171818, -5.828749179840031 ], [ -81.022087097167855, -5.828749179840031 ], [ -81.022087097167855, -5.829027175903263 ], [ -81.02069091796875, -5.829027175903263 ], [ -81.02069091796875, -5.829305171966439 ], [ -81.016525268554631, -5.829305171966439 ], [ -81.016525268554631, -5.829583168029785 ], [ -81.016250610351506, -5.829583168029785 ], [ -81.016250610351506, -5.829305171966439 ], [ -81.015693664550724, -5.829305171966439 ], [ -81.015693664550724, -5.829027175903263 ], [ -81.014862060546875, -5.829027175903263 ], [ -81.014862060546875, -5.828749179840031 ], [ -81.014442443847599, -5.828749179840031 ], [ -81.014305114746094, -5.828749179840031 ], [ -81.014305114746094, -5.828579902648926 ], [ -81.014305114746094, -5.828195095062256 ], [ -81.014579772949219, -5.828195095062256 ], [ -81.014579772949219, -5.827639102935791 ], [ -81.014030456542969, -5.827639102935791 ], [ -81.014030456542969, -5.827361106872559 ], [ -81.013473510742131, -5.827361106872559 ], [ -81.013473510742131, -5.827083110809326 ], [ -81.013191223144474, -5.827083110809326 ], [ -81.013191223144474, -5.826805114746094 ], [ -81.012641906738224, -5.826805114746094 ], [ -81.012641906738224, -5.826527118682861 ], [ -81.011802673339844, -5.826527118682861 ], [ -81.011802673339844, -5.829305171966439 ], [ -81.011528015136719, -5.829305171966439 ], [ -81.011528015136719, -5.829861164093018 ], [ -81.010971069335938, -5.829861164093018 ], [ -81.010971069335938, -5.83013916015625 ], [ -81.010139465331974, -5.83013916015625 ], [ -81.010139465331974, -5.830417156219482 ], [ -81.009025573730355, -5.830417156219482 ], [ -81.009025573730355, -5.830970764160099 ], [ -81.008193969726562, -5.830970764160099 ], [ -81.008193969726562, -5.830695152282715 ], [ -81.006530761718693, -5.830695152282715 ], [ -81.006530761718693, -5.830970764160099 ], [ -81.006248474121037, -5.830970764160099 ], [ -81.006248474121037, -5.83124923706049 ], [ -81.005416870117188, -5.83124923706049 ], [ -81.005416870117188, -5.831805229186955 ], [ -81.005142211914062, -5.831805229186955 ], [ -81.005142211914062, -5.832362174987736 ], [ -81.004859924316406, -5.832362174987736 ], [ -81.004859924316406, -5.832918167114201 ], [ -81.004302978515625, -5.832918167114201 ], [ -81.004302978515625, -5.833192825317326 ], [ -81.003753662109318, -5.833192825317326 ], [ -81.003753662109318, -5.833470821380558 ], [ -81.003196716308537, -5.833470821380558 ], [ -81.003196716308537, -5.834027767181396 ], [ -81.001640319824219, -5.834027767181396 ], [ -81.001426696777344, -5.835601806640625 ], [ -80.999313354492188, -5.835112094879094 ], [ -80.997207641601562, -5.834290027618408 ], [ -80.99493408203125, -5.833720207214299 ], [ -80.9925537109375, -5.832630157470703 ], [ -80.991844177246037, -5.832726001739502 ], [ -80.991447448730412, -5.832938194274846 ], [ -80.991195678710938, -5.833409786224365 ], [ -80.990753173828125, -5.833476066589355 ], [ -80.990440368652344, -5.833786010742188 ], [ -80.990203857421818, -5.836551189422607 ], [ -80.989608764648438, -5.837449073791504 ], [ -80.988883972167912, -5.837967872619572 ], [ -80.987312316894531, -5.838353157043343 ], [ -80.984512329101449, -5.838356018066406 ], [ -80.982826232910156, -5.838644981384277 ], [ -80.97607421875, -5.838202953338566 ], [ -80.975379943847656, -5.83843803405756 ], [ -80.974029541015625, -5.839873790740967 ], [ -80.970039367675781, -5.841553211212101 ], [ -80.969642639160156, -5.842141151428166 ], [ -80.9698486328125, -5.843371868133431 ], [ -80.968582153320256, -5.844349861144963 ], [ -80.966964721679574, -5.844366073608342 ], [ -80.963897705078068, -5.843597888946533 ], [ -80.962097167968693, -5.843570232391357 ], [ -80.960617065429688, -5.843289852142277 ], [ -80.960121154785156, -5.844250202178898 ], [ -80.958580017089844, -5.845174789428711 ], [ -80.957748413085938, -5.84552621841425 ], [ -80.955696105956974, -5.845853805541992 ], [ -80.951370239257812, -5.846142768859806 ], [ -80.94842529296875, -5.845821857452393 ], [ -80.945449829101562, -5.845935821533146 ], [ -80.943572998046818, -5.845694065093994 ], [ -80.937431335449219, -5.843563079833928 ], [ -80.933525085449219, -5.841483116149902 ], [ -80.930961608886719, -5.840610027313232 ], [ -80.929779052734375, -5.839955806732121 ], [ -80.925354003906193, -5.838706970214787 ], [ -80.923690795898438, -5.837616920471191 ], [ -80.920631408691406, -5.836064815521183 ], [ -80.916961669921818, -5.833134174346924 ], [ -80.91298675537098, -5.830802917480469 ], [ -80.910629272460938, -5.828981876373291 ], [ -80.909248352050724, -5.827432155609131 ], [ -80.906837463378906, -5.826006889343262 ], [ -80.903182983398438, -5.822786808013916 ], [ -80.900634765625, -5.819736957549992 ], [ -80.896835327148381, -5.816123008728027 ], [ -80.894065856933594, -5.812786102294922 ], [ -80.891929626464844, -5.81058406829834 ], [ -80.888778686523438, -5.805408000945988 ], [ -80.886611938476562, -5.80083179473877 ], [ -80.884719848632812, -5.797873973846379 ], [ -80.883285522460938, -5.793587207794133 ], [ -80.882568359374886, -5.790146827697754 ], [ -80.881446838378906, -5.786804199218693 ], [ -80.879524230957031, -5.783024787902775 ], [ -80.878997802734375, -5.781201839447021 ], [ -80.877723693847656, -5.779236793518066 ], [ -80.876991271972656, -5.776347160339355 ], [ -80.875892639160043, -5.774693012237549 ], [ -80.874847412109375, -5.77378511428833 ], [ -80.872978210449219, -5.771050930023193 ], [ -80.871139526367188, -5.769062995910645 ], [ -80.869392395019474, -5.765499114990234 ], [ -80.867538452148438, -5.764070034027043 ], [ -80.867004394531193, -5.763344764709473 ], [ -80.865806579589844, -5.760227203369141 ], [ -80.865219116210938, -5.759430885314941 ], [ -80.863540649414062, -5.75593090057373 ], [ -80.862426757812443, -5.753079891204777 ], [ -80.86177825927723, -5.75062894821167 ], [ -80.860527038574162, -5.748231887817326 ], [ -80.860336303710881, -5.747162818908635 ], [ -80.859695434570312, -5.745666027069092 ], [ -80.858520507812443, -5.740420818328857 ], [ -80.858009338378906, -5.736205101013184 ], [ -80.857490539550781, -5.734951019286996 ], [ -80.856140136718693, -5.732816219329834 ], [ -80.855766296386605, -5.731422901153508 ], [ -80.855323791503906, -5.725921154022217 ], [ -80.854896545410099, -5.724666118621826 ], [ -80.854522705078068, -5.722274780273438 ], [ -80.854179382324219, -5.71730804443348 ], [ -80.853546142578068, -5.715832233428955 ], [ -80.853492736816406, -5.710854053497314 ], [ -80.852958679199219, -5.708484172821045 ], [ -80.853134155273438, -5.704874038696289 ], [ -80.852600097656193, -5.703153133392334 ], [ -80.852775573730412, -5.698399066925049 ], [ -80.851432800292969, -5.693326950073242 ], [ -80.851181030273381, -5.691449165344238 ], [ -80.851280212402287, -5.68665885925293 ], [ -80.851058959960881, -5.683142185211182 ], [ -80.85150146484375, -5.678016185760498 ], [ -80.851425170898438, -5.677027225494271 ], [ -80.850936889648438, -5.675764083862248 ], [ -80.850410461425724, -5.673104763031006 ], [ -80.850837707519531, -5.669888973236084 ], [ -80.850852966308594, -5.667630195617619 ], [ -80.850212097167912, -5.664908885955754 ], [ -80.850028991699162, -5.662569999694824 ], [ -80.850448608398438, -5.659803867340088 ], [ -80.8504638671875, -5.656132221221924 ], [ -80.851165771484318, -5.652496814727783 ], [ -80.85109710693348, -5.647340774536076 ], [ -80.851715087890625, -5.64332103729248 ], [ -80.85150146484375, -5.639803886413574 ], [ -80.852050781249886, -5.637620925903263 ], [ -80.852020263671818, -5.635450839996338 ], [ -80.853271484374943, -5.633056163787785 ], [ -80.853607177734375, -5.631287097930851 ], [ -80.854263305664062, -5.629695892333984 ], [ -80.854881286621037, -5.625226974487248 ], [ -80.855522155761719, -5.624238014221135 ], [ -80.856437683105355, -5.62188100814808 ], [ -80.857765197753849, -5.619626998901367 ], [ -80.859382629394474, -5.615876197814941 ], [ -80.860076904296875, -5.613348007202148 ], [ -80.861465454101506, -5.610618114471436 ], [ -80.862442016601449, -5.607986927032471 ], [ -80.862625122070256, -5.604936122894287 ], [ -80.863975524902344, -5.602184772491398 ], [ -80.864395141601562, -5.599877834320068 ], [ -80.865219116210938, -5.597873210906926 ], [ -80.866035461425724, -5.590051174163818 ], [ -80.867591857910043, -5.587524890899545 ], [ -80.868095397949219, -5.585153102874699 ], [ -80.869430541992188, -5.582602024078312 ], [ -80.87066650390625, -5.576576232910156 ], [ -80.871871948242131, -5.573856830596867 ], [ -80.872253417968693, -5.571468830108586 ], [ -80.872856140136719, -5.570363998413029 ], [ -80.874603271484375, -5.568412780761662 ], [ -80.875701904296761, -5.566547870635986 ], [ -80.876945495605469, -5.56277418136591 ], [ -80.877403259277287, -5.560654163360596 ], [ -80.878326416015625, -5.55910682678217 ], [ -80.878829956054631, -5.55718278884882 ], [ -80.881263732910156, -5.551533222198486 ], [ -80.881767272949162, -5.548693180084229 ], [ -80.882308959960938, -5.547763824462891 ], [ -80.883308410644474, -5.546843051910344 ], [ -80.883918762207031, -5.546279907226506 ], [ -80.884292602539062, -5.545564174652043 ], [ -80.885787963867131, -5.54063701629633 ], [ -80.888336181640625, -5.534852027893066 ], [ -80.890541076660099, -5.53091382980341 ], [ -80.892074584960881, -5.528676033019963 ], [ -80.893249511718636, -5.525641918182373 ], [ -80.895637512207031, -5.521180152893066 ], [ -80.897422790527287, -5.513990879058838 ], [ -80.897590637207031, -5.510650157928467 ], [ -80.898109436035043, -5.507999897003174 ], [ -80.901130676269474, -5.503190994262695 ], [ -80.90297698974598, -5.500779151916504 ], [ -80.904403686523324, -5.497984886169434 ], [ -80.905952453613281, -5.496008872985783 ], [ -80.907691955566406, -5.492562770843392 ], [ -80.909416198730469, -5.49037504196167 ], [ -80.910514831542969, -5.487439155578613 ], [ -80.911750793456918, -5.485033035278263 ], [ -80.913032531738281, -5.483670234680119 ], [ -80.914680480956974, -5.480783939361572 ], [ -80.918243408203125, -5.476169109344482 ], [ -80.919403076171875, -5.474051952362061 ], [ -80.921218872070312, -5.471711158752441 ], [ -80.923835754394474, -5.466899871826172 ], [ -80.925224304199219, -5.465028762817383 ], [ -80.9267578125, -5.463512897491398 ], [ -80.928985595703068, -5.459414958953801 ], [ -80.930793762206974, -5.456634998321533 ], [ -80.933807373046875, -5.452637195587158 ], [ -80.936599731445312, -5.449838161468392 ], [ -80.938682556152344, -5.446280956268311 ], [ -80.941589355468693, -5.443100929260254 ], [ -80.943161010742188, -5.440701007843018 ], [ -80.946739196777287, -5.436564922332764 ], [ -80.950187683105469, -5.431976795196476 ], [ -80.955871582031193, -5.42649316787714 ], [ -80.958366394042912, -5.422995090484619 ], [ -80.959159851074219, -5.422269821166935 ], [ -80.963020324706974, -5.419991016387939 ], [ -80.967300415039062, -5.416004180908203 ], [ -80.970397949218636, -5.4137282371521 ], [ -80.973617553710881, -5.410870075225773 ], [ -80.975006103515625, -5.409216880798283 ], [ -80.976226806640625, -5.406919956207219 ], [ -80.979682922363281, -5.403790950775146 ], [ -80.980377197265568, -5.402641773223877 ], [ -80.981590270996094, -5.40130615234375 ], [ -80.984680175781193, -5.399009227752686 ], [ -80.987449645996037, -5.394934177398682 ], [ -80.989540100097599, -5.393095016479435 ], [ -80.993835449218693, -5.38864278793335 ], [ -80.994537353515625, -5.388374805450383 ], [ -80.995132446289062, -5.387838840484562 ], [ -80.997261047363224, -5.385054111480713 ], [ -80.999557495117131, -5.382449150085336 ], [ -81.00054931640625, -5.383193969726562 ], [ -81.000968933105469, -5.383193969726562 ], [ -81.000968933105469, -5.38291597366333 ], [ -81.001251220703125, -5.38291597366333 ], [ -81.001251220703125, -5.382637977600098 ], [ -81.001808166503906, -5.382637977600098 ], [ -81.001808166503906, -5.382359981536865 ], [ -81.002082824707031, -5.382359981536865 ], [ -81.002082824707031, -5.382083892822209 ], [ -81.002357482910156, -5.382083892822209 ], [ -81.002357482910156, -5.381805896758976 ], [ -81.002914428710881, -5.381805896758976 ], [ -81.002914428710881, -5.381527900695744 ], [ -81.003196716308537, -5.381527900695744 ], [ -81.003196716308537, -5.381249904632512 ], [ -81.003471374511662, -5.381249904632512 ], [ -81.003471374511662, -5.380971908569279 ], [ -81.004028320312443, -5.380971908569279 ], [ -81.004028320312443, -5.380693912506047 ], [ -81.004302978515625, -5.380693912506047 ], [ -81.004302978515625, -5.380415916442814 ], [ -81.004585266113281, -5.380415916442814 ], [ -81.004585266113281, -5.380139827728271 ], [ -81.004859924316406, -5.380139827728271 ], [ -81.004859924316406, -5.379861831665039 ], [ -81.005416870117188, -5.379861831665039 ], [ -81.005416870117188, -5.379583835601807 ], [ -81.005691528320312, -5.379583835601807 ], [ -81.005691528320312, -5.379305839538574 ], [ -81.005973815917855, -5.379305839538574 ], [ -81.005973815917855, -5.379027843475228 ], [ -81.006530761718693, -5.379027843475228 ], [ -81.006530761718693, -5.378749847412053 ], [ -81.006805419921818, -5.378749847412053 ], [ -81.006805419921818, -5.37847185134882 ], [ -81.007080078124943, -5.37847185134882 ], [ -81.007080078124943, -5.378193855285588 ], [ -81.007637023925781, -5.378193855285588 ], [ -81.007637023925781, -5.377917766571045 ], [ -81.007919311523438, -5.377917766571045 ], [ -81.007919311523438, -5.377639770507812 ], [ -81.008193969726562, -5.377639770507812 ], [ -81.008193969726562, -5.37736177444458 ], [ -81.008750915527344, -5.37736177444458 ], [ -81.008750915527344, -5.377083778381348 ], [ -81.009025573730355, -5.377083778381348 ], [ -81.009025573730355, -5.376805782318115 ], [ -81.009307861328011, -5.376805782318115 ], [ -81.009307861328011, -5.37624979019165 ], [ -81.009582519531193, -5.37624979019165 ], [ -81.009582519531193, -5.375692844390869 ], [ -81.009864807128849, -5.375692844390869 ], [ -81.009864807128849, -5.375418186187744 ], [ -81.010139465331974, -5.375418186187744 ], [ -81.010139465331974, -5.374862194061279 ], [ -81.010414123535156, -5.374862194061279 ], [ -81.010414123535156, -5.374582767486515 ], [ -81.010696411132812, -5.374582767486515 ], [ -81.010696411132812, -5.374026775360107 ], [ -81.010971069335938, -5.374026775360107 ], [ -81.010971069335938, -5.373470783233643 ], [ -81.011253356933594, -5.373470783233643 ], [ -81.011253356933594, -5.37319278717041 ], [ -81.011528015136719, -5.37319278717041 ], [ -81.011528015136719, -5.372639179229679 ], [ -81.011802673339844, -5.372639179229679 ], [ -81.011802673339844, -5.372361183166447 ], [ -81.0120849609375, -5.372361183166447 ], [ -81.0120849609375, -5.371805191039982 ], [ -81.012359619140511, -5.371805191039982 ], [ -81.012359619140511, -5.371249198913574 ], [ -81.012641906738224, -5.371249198913574 ], [ -81.012641906738224, -5.370971202850342 ], [ -81.013191223144474, -5.370971202850342 ], [ -81.013191223144474, -5.370695114135629 ], [ -81.013748168945312, -5.370695114135629 ], [ -81.013748168945312, -5.370417118072453 ], [ -81.014305114746094, -5.370417118072453 ], [ -81.014305114746094, -5.370139122009221 ], [ -81.014579772949219, -5.370139122009221 ], [ -81.014579772949219, -5.369861125945988 ], [ -81.014862060546875, -5.369861125945988 ], [ -81.014862060546875, -5.369583129882756 ], [ -81.01513671875, -5.369583129882756 ], [ -81.01513671875, -5.369305133819523 ], [ -81.015419006347656, -5.369305133819523 ], [ -81.015419006347656, -5.369027137756291 ], [ -81.015693664550724, -5.369027137756291 ], [ -81.015693664550724, -5.368751049041748 ], [ -81.015975952148381, -5.368751049041748 ], [ -81.015975952148381, -5.368473052978516 ], [ -81.016250610351506, -5.368473052978516 ], [ -81.016250610351506, -5.368195056915283 ], [ -81.016525268554631, -5.368195056915283 ], [ -81.016525268554631, -5.367917060852051 ], [ -81.016807556152287, -5.367917060852051 ], [ -81.016807556152287, -5.367639064788818 ], [ -81.017082214355469, -5.367639064788818 ], [ -81.017082214355469, -5.367361068725586 ], [ -81.017364501953125, -5.367361068725586 ], [ -81.017364501953125, -5.36708307266224 ], [ -81.01763916015625, -5.36708307266224 ], [ -81.01763916015625, -5.366805076599064 ], [ -81.017913818359375, -5.366805076599064 ], [ -81.017913818359375, -5.366527080535832 ], [ -81.018196105957031, -5.366527080535832 ], [ -81.018196105957031, -5.366250991821289 ], [ -81.018470764160156, -5.366250991821289 ], [ -81.018470764160156, -5.365972995758057 ], [ -81.018753051757699, -5.365972995758057 ], [ -81.018753051757699, -5.365694999694824 ], [ -81.019027709960881, -5.365694999694824 ], [ -81.019027709960881, -5.365417003631592 ], [ -81.019302368164006, -5.365417003631592 ], [ -81.019302368164006, -5.365139007568359 ], [ -81.019859313964787, -5.365139007568359 ], [ -81.019859313964787, -5.364861011505127 ], [ -81.0201416015625, -5.364861011505127 ], [ -81.0201416015625, -5.364583015441895 ], [ -81.020416259765625, -5.364583015441895 ], [ -81.020416259765625, -5.364305019378662 ], [ -81.02069091796875, -5.364305019378662 ], [ -81.02069091796875, -5.364028930664062 ], [ -81.020973205566406, -5.364028930664062 ], [ -81.020973205566406, -5.364305019378662 ], [ -81.021247863769531, -5.364305019378662 ], [ -81.021247863769531, -5.364028930664062 ], [ -81.021530151367188, -5.364028930664062 ], [ -81.021530151367188, -5.36375093460083 ], [ -81.021804809570199, -5.36375093460083 ], [ -81.021804809570199, -5.363472938537598 ], [ -81.021530151367188, -5.363472938537598 ], [ -81.021530151367188, -5.363194942474365 ], [ -81.021804809570199, -5.363194942474365 ], [ -81.021804809570199, -5.362916946411133 ], [ -81.022087097167855, -5.362916946411133 ], [ -81.022087097167855, -5.3626389503479 ], [ -81.022361755371037, -5.3626389503479 ], [ -81.022361755371037, -5.362360000610352 ], [ -81.022636413574162, -5.362360000610352 ], [ -81.022636413574162, -5.362082004547119 ], [ -81.022918701171818, -5.362082004547119 ], [ -81.022918701171818, -5.361804008483887 ], [ -81.023193359375, -5.361804008483887 ], [ -81.023193359375, -5.361528873443547 ], [ -81.023475646972656, -5.361528873443547 ], [ -81.023475646972656, -5.361250877380314 ], [ -81.023750305175781, -5.361250877380314 ], [ -81.023750305175781, -5.360971927642765 ], [ -81.024024963378906, -5.360971927642765 ], [ -81.024024963378906, -5.360693931579533 ], [ -81.024307250976562, -5.360693931579533 ], [ -81.024307250976562, -5.360415935516301 ], [ -81.024581909179688, -5.360415935516301 ], [ -81.024581909179688, -5.360137939453068 ], [ -81.024864196777344, -5.360137939453068 ], [ -81.024864196777344, -5.359859943389836 ], [ -81.025138854980355, -5.359859943389836 ], [ -81.025138854980355, -5.359583854675293 ], [ -81.025413513183537, -5.359583854675293 ], [ -81.025413513183537, -5.359305858612061 ], [ -81.025695800781193, -5.359305858612061 ], [ -81.025695800781193, -5.359027862548828 ], [ -81.025970458984318, -5.359027862548828 ], [ -81.025970458984318, -5.358749866485596 ], [ -81.026252746581974, -5.358749866485596 ], [ -81.026252746581974, -5.358471870422363 ], [ -81.026527404785156, -5.358471870422363 ], [ -81.026527404785156, -5.358193874359131 ], [ -81.026802062988281, -5.358193874359131 ], [ -81.026802062988281, -5.357915878295785 ], [ -81.027084350585938, -5.357915878295785 ], [ -81.027084350585938, -5.357637882232609 ], [ -81.027359008789062, -5.357637882232609 ], [ -81.027359008789062, -5.357361793518066 ], [ -81.027641296386719, -5.357361793518066 ], [ -81.027641296386719, -5.357083797454834 ], [ -81.027915954589844, -5.357083797454834 ], [ -81.027915954589844, -5.356805801391602 ], [ -81.028190612792855, -5.356805801391602 ], [ -81.0281982421875, -5.356527805328369 ], [ -81.028472900390568, -5.356527805328369 ], [ -81.028472900390568, -5.356249809265137 ], [ -81.028747558593693, -5.356249809265137 ], [ -81.028747558593693, -5.355971813201904 ], [ -81.029029846191349, -5.355971813201904 ], [ -81.029029846191349, -5.355693817138672 ], [ -81.029304504394474, -5.355693817138672 ], [ -81.029304504394474, -5.355415821075439 ], [ -81.029586791992131, -5.355415821075439 ], [ -81.029586791992131, -5.355137825012207 ], [ -81.029861450195312, -5.355137825012207 ], [ -81.029861450195312, -5.354862213134766 ], [ -81.030418395996094, -5.354862213134766 ], [ -81.030418395996094, -5.354584217071533 ], [ -81.030693054199219, -5.354584217071533 ], [ -81.030693054199219, -5.354306221008301 ], [ -81.030975341796875, -5.354306221008301 ], [ -81.030975341796875, -5.354028224945068 ], [ -81.03125, -5.354028224945068 ], [ -81.03125, -5.353750228881836 ], [ -81.031524658203068, -5.353750228881836 ], [ -81.031524658203068, -5.353472232818604 ], [ -81.031806945800724, -5.353472232818604 ], [ -81.031806945800724, -5.353194236755371 ], [ -81.032081604003849, -5.353194236755371 ], [ -81.032081604003849, -5.35291576385498 ], [ -81.032363891601506, -5.35291576385498 ], [ -81.032363891601506, -5.352637767791748 ], [ -81.032638549804631, -5.352637767791748 ], [ -81.032638549804631, -5.35236215591425 ], [ -81.032913208007812, -5.35236215591425 ], [ -81.032913208007812, -5.352084159851074 ], [ -81.033195495605469, -5.352084159851074 ], [ -81.033195495605469, -5.351806163787842 ], [ -81.033470153808594, -5.351806163787842 ], [ -81.033470153808594, -5.351528167724609 ], [ -81.03375244140625, -5.351528167724609 ], [ -81.03375244140625, -5.351250171661377 ], [ -81.034027099609375, -5.351250171661377 ], [ -81.034027099609375, -5.350972175598145 ], [ -81.0343017578125, -5.350972175598145 ], [ -81.0343017578125, -5.350694179534912 ], [ -81.034584045410043, -5.350694179534912 ], [ -81.034584045410043, -5.350418090820256 ], [ -81.034858703613224, -5.350418090820256 ], [ -81.034858703613224, -5.350140094757023 ], [ -81.035140991210881, -5.350140094757023 ], [ -81.035140991210881, -5.349862098693791 ], [ -81.035415649414006, -5.349862098693791 ], [ -81.035415649414006, -5.349584102630558 ], [ -81.035697937011662, -5.349584102630558 ], [ -81.035697937011662, -5.349306106567326 ], [ -81.035972595214844, -5.349306106567326 ], [ -81.035972595214844, -5.349028110504094 ], [ -81.036247253417969, -5.349028110504094 ], [ -81.036247253417969, -5.348749160766545 ], [ -81.036529541015625, -5.348749160766545 ], [ -81.036529541015625, -5.348471164703312 ], [ -81.03680419921875, -5.348471164703312 ], [ -81.03680419921875, -5.348196029663086 ], [ -81.037086486816406, -5.348196029663086 ], [ -81.037086486816406, -5.347918033599854 ], [ -81.037361145019531, -5.347918033599854 ], [ -81.037361145019531, -5.347640037536507 ], [ -81.037635803222543, -5.347640037536507 ], [ -81.037635803222543, -5.347361087799072 ], [ -81.037918090820199, -5.347361087799072 ], [ -81.037918090820199, -5.34708309173584 ], [ -81.038192749023381, -5.34708309173584 ], [ -81.038192749023381, -5.346805095672607 ], [ -81.038475036621037, -5.346805095672607 ], [ -81.038475036621037, -5.346527099609375 ], [ -81.038749694824162, -5.346527099609375 ], [ -81.038749694824162, -5.346249103546143 ], [ -81.039024353027344, -5.346249103546143 ], [ -81.039024353027344, -5.345971107482796 ], [ -81.039306640625, -5.345971107482796 ], [ -81.039306640625, -5.345695018768311 ], [ -81.039581298828125, -5.345695018768311 ], [ -81.039581298828125, -5.345417022705078 ], [ -81.039863586425781, -5.345417022705078 ], [ -81.039863586425781, -5.345139026641846 ], [ -81.040138244628906, -5.345139026641846 ], [ -81.040138244628906, -5.344861030578613 ], [ -81.040412902832031, -5.344861030578613 ], [ -81.040412902832031, -5.344583034515381 ], [ -81.040695190429688, -5.344583034515381 ], [ -81.040695190429688, -5.344305038452148 ], [ -81.040969848632699, -5.344305038452148 ], [ -81.040969848632699, -5.344027042388916 ], [ -81.041252136230412, -5.344027042388916 ], [ -81.041252136230412, -5.343749046325684 ], [ -81.041526794433537, -5.343749046325684 ], [ -81.041526794433537, -5.343471050262451 ], [ -81.041809082031193, -5.343471050262451 ], [ -81.041809082031193, -5.343194961547795 ], [ -81.042083740234318, -5.343194961547795 ], [ -81.042083740234318, -5.342916965484619 ], [ -81.0423583984375, -5.342916965484619 ], [ -81.0423583984375, -5.342638969421387 ], [ -81.042640686035156, -5.342638969421387 ], [ -81.042640686035156, -5.342360973358154 ], [ -81.042915344238281, -5.342360973358154 ], [ -81.042915344238281, -5.342082977294922 ], [ -81.043197631835938, -5.342082977294922 ], [ -81.043197631835938, -5.341804981231689 ], [ -81.043472290039062, -5.341804981231689 ], [ -81.043472290039062, -5.341526985168457 ], [ -81.043746948242188, -5.341526985168457 ], [ -81.043746948242188, -5.341248989105225 ], [ -81.044029235839844, -5.341248989105225 ], [ -81.044029235839844, -5.340972900390568 ], [ -81.044586181640568, -5.340972900390568 ], [ -81.044586181640568, -5.340694904327336 ], [ -81.044860839843693, -5.340694904327336 ], [ -81.044860839843693, -5.340416908264103 ], [ -81.045135498046818, -5.340416908264103 ], [ -81.045135498046818, -5.340138912200871 ], [ -81.045417785644474, -5.340138912200871 ], [ -81.045417785644474, -5.339860916137638 ], [ -81.045692443847656, -5.339860916137638 ], [ -81.045692443847656, -5.339582920074406 ], [ -81.045974731445312, -5.339582920074406 ], [ -81.045974731445312, -5.33930492401123 ], [ -81.046249389648438, -5.33930492401123 ], [ -81.046249389648438, -5.339028835296631 ], [ -81.046524047851562, -5.339028835296631 ], [ -81.046524047851562, -5.338750839233398 ], [ -81.046806335449219, -5.338750839233398 ], [ -81.046806335449219, -5.338472843170052 ], [ -81.047080993652344, -5.338472843170052 ], [ -81.047080993652344, -5.338194847106877 ], [ -81.047363281249886, -5.338194847106877 ], [ -81.047363281249886, -5.337916851043644 ], [ -81.047637939453068, -5.337916851043644 ], [ -81.047637939453068, -5.337638854980412 ], [ -81.047920227050724, -5.337638854980412 ], [ -81.047920227050724, -5.337360858917179 ], [ -81.048194885253849, -5.337360858917179 ], [ -81.048194885253849, -5.337082862853947 ], [ -81.048469543456974, -5.337082862853947 ], [ -81.048469543456974, -5.336804866790715 ], [ -81.048751831054688, -5.336804866790715 ], [ -81.048751831054688, -5.336528778076172 ], [ -81.049026489257812, -5.336528778076172 ], [ -81.049026489257812, -5.336250782012939 ], [ -81.049308776855469, -5.336250782012939 ], [ -81.049308776855469, -5.335972785949707 ], [ -81.049583435058594, -5.335972785949707 ], [ -81.049583435058594, -5.335694789886475 ], [ -81.049858093261719, -5.335694789886475 ], [ -81.049858093261719, -5.335416793823242 ], [ -81.050140380859375, -5.335416793823242 ], [ -81.050140380859375, -5.335137844085693 ], [ -81.050415039062386, -5.335137844085693 ], [ -81.050415039062386, -5.334859848022461 ], [ -81.050697326660043, -5.334859848022461 ], [ -81.050697326660043, -5.334581851959229 ], [ -81.050971984863224, -5.334581851959229 ], [ -81.050971984863224, -5.334307193756104 ], [ -81.051246643066349, -5.334307193756104 ], [ -81.051246643066349, -5.334029197692871 ], [ -81.051528930664006, -5.334029197692871 ], [ -81.051528930664006, -5.333749771118164 ], [ -81.051803588867188, -5.333749771118164 ], [ -81.051803588867188, -5.333471775054932 ], [ -81.052085876464844, -5.333471775054932 ], [ -81.052085876464844, -5.333193778991699 ], [ -81.052360534667969, -5.333193778991699 ], [ -81.052360534667969, -5.332915782928467 ], [ -81.052635192871094, -5.332915782928467 ], [ -81.052635192871094, -5.332637786865234 ], [ -81.05291748046875, -5.332637786865234 ], [ -81.05291748046875, -5.332359790802002 ], [ -81.053192138671875, -5.332359790802002 ], [ -81.053192138671875, -5.33208179473877 ], [ -81.053474426269531, -5.33208179473877 ], [ -81.053474426269531, -5.331806182861271 ], [ -81.054306030273381, -5.331806182861271 ], [ -81.054306030273381, -5.331250190734806 ], [ -81.054862976074162, -5.331250190734806 ], [ -81.054862976074162, -5.330972194671631 ], [ -81.055419921875, -5.330972194671631 ], [ -81.055419921875, -5.331250190734806 ], [ -81.055694580078125, -5.331250190734806 ], [ -81.055694580078125, -5.330972194671631 ], [ -81.05596923828125, -5.330972194671631 ], [ -81.05596923828125, -5.330694198608398 ], [ -81.056526184082031, -5.330694198608398 ], [ -81.056526184082031, -5.330138206481934 ], [ -81.057083129882756, -5.330138206481934 ], [ -81.057083129882756, -5.329862117767277 ], [ -81.056808471679688, -5.329862117767277 ], [ -81.056808471679688, -5.329584121704045 ], [ -81.057914733886662, -5.329584121704045 ], [ -81.057914733886662, -5.328472137451115 ], [ -81.058197021484318, -5.328472137451115 ], [ -81.058197021484318, -5.328194141387883 ], [ -81.058746337890625, -5.328194141387883 ], [ -81.058746337890625, -5.32791614532465 ], [ -81.059028625488281, -5.32791614532465 ], [ -81.059028625488281, -5.327640056610107 ], [ -81.059303283691406, -5.327638149261418 ], [ -81.059303283691406, -5.327362060546875 ], [ -81.059860229492188, -5.327362060546875 ], [ -81.059860229492188, -5.327084064483643 ], [ -81.06014251708973, -5.327084064483643 ], [ -81.06014251708973, -5.32680606842041 ], [ -81.060417175292912, -5.32680606842041 ], [ -81.060417175292912, -5.326528072357064 ], [ -81.060974121093693, -5.326528072357064 ], [ -81.060974121093693, -5.326250076293888 ], [ -81.061248779296818, -5.326250076293888 ], [ -81.061248779296818, -5.325972080230656 ], [ -81.061531066894531, -5.325972080230656 ], [ -81.061531066894531, -5.325694084167424 ], [ -81.061805725097656, -5.325694084167424 ], [ -81.061805725097656, -5.325416088104191 ], [ -81.062362670898438, -5.325416088104191 ], [ -81.062362670898438, -5.325139999389648 ], [ -81.062637329101562, -5.325139999389648 ], [ -81.062637329101562, -5.324862003326416 ], [ -81.062919616699219, -5.324862003326416 ], [ -81.062919616699219, -5.324584007263184 ], [ -81.063468933105412, -5.324584007263184 ], [ -81.063468933105412, -5.324306011199951 ], [ -81.063751220703068, -5.324306011199951 ], [ -81.063751220703068, -5.324584007263184 ], [ -81.064025878906193, -5.324584007263184 ], [ -81.064025878906193, -5.324306011199951 ], [ -81.064308166503849, -5.324306011199951 ], [ -81.064308166503849, -5.323750019073486 ], [ -81.064857482910156, -5.323750019073486 ], [ -81.064857482910156, -5.323194026947021 ], [ -81.065414428710938, -5.323194026947021 ], [ -81.065414428710938, -5.322915077209473 ], [ -81.065696716308594, -5.322915077209473 ], [ -81.065696716308594, -5.322361946105957 ], [ -81.066802978515568, -5.322361946105957 ], [ -81.066802978515568, -5.322083950042725 ], [ -81.067085266113224, -5.322083950042725 ], [ -81.067085266113224, -5.321805953979492 ], [ -81.067642211914006, -5.321805953979492 ], [ -81.067642211914006, -5.321249008178711 ], [ -81.068191528320312, -5.321249008178711 ], [ -81.068191528320312, -5.320693016052246 ], [ -81.068473815917969, -5.320693016052246 ], [ -81.068473815917969, -5.320417881011906 ], [ -81.06903076171875, -5.320417881011906 ], [ -81.06903076171875, -5.319860935211125 ], [ -81.069305419921875, -5.319860935211125 ], [ -81.069305419921875, -5.319582939147892 ], [ -81.069862365722599, -5.319582939147892 ], [ -81.069862365722599, -5.31930494308466 ], [ -81.070419311523381, -5.31930494308466 ], [ -81.070419311523381, -5.318748950958195 ], [ -81.071807861328125, -5.318748950958195 ], [ -81.071807861328125, -5.318472862243652 ], [ -81.072364807128906, -5.318472862243652 ], [ -81.072364807128906, -5.317916870117188 ], [ -81.072639465332031, -5.317916870117188 ], [ -81.072639465332031, -5.317638874053955 ], [ -81.073196411132756, -5.317638874053955 ], [ -81.073196411132756, -5.317082881927433 ], [ -81.073753356933537, -5.317082881927433 ], [ -81.073753356933537, -5.316804885864201 ], [ -81.074302673339844, -5.316804885864201 ], [ -81.074302673339844, -5.316248893737736 ], [ -81.0745849609375, -5.316248893737736 ], [ -81.0745849609375, -5.315972805023193 ], [ -81.075416564941406, -5.315972805023193 ], [ -81.075416564941406, -5.315416812896729 ], [ -81.075973510742074, -5.315416812896729 ], [ -81.075973510742074, -5.315138816833496 ], [ -81.076248168945256, -5.315138816833496 ], [ -81.076248168945256, -5.314860820770264 ], [ -81.077362060546875, -5.314860820770264 ], [ -81.077362060546875, -5.31374883651722 ], [ -81.07763671875, -5.31374883651722 ], [ -81.07763671875, -5.31319522857666 ], [ -81.077919006347656, -5.31319522857666 ], [ -81.077919006347656, -5.313048839569092 ], [ -81.077919006347656, -5.312639236450195 ], [ -81.078750610351562, -5.312639236450195 ], [ -81.078750610351562, -5.312917232513428 ], [ -81.079864501953068, -5.312917232513428 ], [ -81.079864501953068, -5.31319522857666 ], [ -81.080696105957031, -5.31319522857666 ], [ -81.080696105957031, -5.312917232513428 ], [ -81.080413818359375, -5.312917232513428 ], [ -81.080413818359375, -5.312639236450195 ], [ -81.080696105957031, -5.312639236450195 ], [ -81.080696105957031, -5.312360763549805 ], [ -81.081253051757812, -5.312360763549805 ], [ -81.081253051757812, -5.312082767486572 ], [ -81.081527709960938, -5.312082767486572 ], [ -81.081527709960938, -5.31180477142334 ], [ -81.081802368164062, -5.31180477142334 ], [ -81.081802368164062, -5.311526775360107 ], [ -81.082084655761719, -5.311526775360107 ], [ -81.082084655761719, -5.311363220214844 ], [ -81.082084655761719, -5.311251163482666 ], [ -81.08235931396473, -5.311251163482666 ], [ -81.08235931396473, -5.310973167419434 ], [ -81.082832336425724, -5.310973167419434 ], [ -81.082916259765568, -5.310973167419434 ], [ -81.082916259765568, -5.310695171356201 ], [ -81.083190917968693, -5.310695171356201 ], [ -81.083190917968693, -5.310417175292969 ], [ -81.083747863769531, -5.310417175292969 ], [ -81.084030151367188, -5.310417175292969 ], [ -81.084030151367188, -5.310241222381535 ], [ -81.084030151367188, -5.310139179229736 ], [ -81.084197998046875, -5.310139179229736 ], [ -81.084861755371094, -5.310139179229736 ], [ -81.084861755371094, -5.310417175292969 ], [ -81.085418701171875, -5.310417175292969 ], [ -81.085418701171875, -5.310695171356201 ], [ -81.085975646972599, -5.310695171356201 ], [ -81.085975646972599, -5.310973167419434 ], [ -81.086524963378849, -5.310973167419434 ], [ -81.086524963378849, -5.311251163482666 ], [ -81.087081909179688, -5.311251163482666 ], [ -81.087081909179688, -5.311526775360107 ], [ -81.087638854980469, -5.311526775360107 ], [ -81.087638854980469, -5.31180477142334 ], [ -81.08819580078125, -5.31180477142334 ], [ -81.08819580078125, -5.312082767486572 ], [ -81.088470458984375, -5.312082767486572 ], [ -81.088470458984375, -5.31180477142334 ], [ -81.089027404785099, -5.31180477142334 ], [ -81.089027404785099, -5.311526775360107 ], [ -81.089302062988224, -5.311526775360107 ], [ -81.089302062988224, -5.311251163482666 ], [ -81.089584350585881, -5.311251163482666 ], [ -81.089584350585881, -5.310973167419434 ], [ -81.090141296386719, -5.310973167419434 ], [ -81.090141296386719, -5.310695171356201 ], [ -81.090415954589844, -5.310695171356201 ], [ -81.090415954589844, -5.310417175292969 ], [ -81.090972900390625, -5.310417175292969 ], [ -81.090972900390625, -5.310139179229736 ], [ -81.09124755859375, -5.310139179229736 ], [ -81.09124755859375, -5.309861183166504 ], [ -81.091804504394418, -5.309861183166504 ], [ -81.091804504394418, -5.309583187103271 ], [ -81.092086791992074, -5.309583187103271 ], [ -81.092086791992074, -5.309304237365723 ], [ -81.092361450195256, -5.309304237365723 ], [ -81.092361450195256, -5.309025764465332 ], [ -81.092796325683594, -5.309025764465332 ], [ -81.092918395996037, -5.309025764465332 ], [ -81.092918395996037, -5.30875110626215 ], [ -81.093193054199219, -5.30875110626215 ], [ -81.093193054199219, -5.309025764465332 ], [ -81.093475341796875, -5.309025764465332 ], [ -81.093475341796875, -5.309576034545898 ], [ -81.09375, -5.309583187103271 ], [ -81.09375, -5.309796810150146 ], [ -81.094024658203125, -5.309861183166504 ], [ -81.094024658203125, -5.310019969940186 ], [ -81.094024658203125, -5.310139179229736 ], [ -81.094169616699162, -5.310139179229736 ], [ -81.094306945800781, -5.310139179229736 ], [ -81.094306945800781, -5.310247898101807 ], [ -81.094306945800781, -5.310695171356201 ], [ -81.094581604003906, -5.310695171356201 ], [ -81.094581604003906, -5.310973167419434 ], [ -81.094863891601562, -5.310973167419434 ], [ -81.094863891601562, -5.311526775360107 ], [ -81.097640991210938, -5.311526775360107 ], [ -81.097640991210938, -5.31180477142334 ], [ -81.097915649414062, -5.31180477142334 ], [ -81.097915649414062, -5.312082767486572 ], [ -81.098220825195312, -5.312082767486572 ], [ -81.098472595214787, -5.312082767486572 ], [ -81.098472595214787, -5.312360763549805 ], [ -81.098747253417912, -5.312360763549805 ], [ -81.098747253417912, -5.312501907348576 ], [ -81.098747253417912, -5.312639236450195 ], [ -81.099029541015568, -5.312639236450195 ], [ -81.099029541015568, -5.312917232513428 ], [ -81.099586486816349, -5.312917232513428 ], [ -81.099586486816349, -5.31319522857666 ], [ -81.099861145019531, -5.31319522857666 ], [ -81.099861145019531, -5.313473224639893 ], [ -81.100135803222656, -5.313473224639893 ], [ -81.100135803222656, -5.31374883651722 ], [ -81.100418090820312, -5.31374883651722 ], [ -81.100418090820312, -5.314026832580566 ], [ -81.100692749023438, -5.314026832580566 ], [ -81.100692749023438, -5.314304828643799 ], [ -81.100975036621094, -5.314304828643799 ], [ -81.100975036621094, -5.314582824707031 ], [ -81.101524353027287, -5.314582824707031 ], [ -81.101524353027287, -5.314694881439152 ], [ -81.101524353027287, -5.314860820770264 ], [ -81.101806640624943, -5.314860820770264 ], [ -81.101806640624943, -5.315138816833496 ], [ -81.102081298828068, -5.315138816833496 ], [ -81.102081298828068, -5.315416812896729 ], [ -81.102912902832031, -5.315416812896729 ], [ -81.102912902832031, -5.315694808959961 ], [ -81.103530883788949, -5.315694808959961 ], [ -81.104026794433594, -5.315694808959961 ], [ -81.104026794433594, -5.315802097320557 ], [ -81.104026794433594, -5.315972805023193 ], [ -81.106803894042969, -5.315972805023193 ], [ -81.106803894042969, -5.315694808959961 ], [ -81.109306335449219, -5.315694808959961 ], [ -81.109306335449219, -5.315416812896729 ], [ -81.10986328125, -5.315416812896729 ], [ -81.10986328125, -5.314860820770264 ], [ -81.109580993652344, -5.314860820770264 ], [ -81.109580993652344, -5.314582824707031 ], [ -81.109306335449219, -5.314582824707031 ], [ -81.109306335449219, -5.314304828643799 ], [ -81.109580993652344, -5.314304828643799 ], [ -81.109580993652344, -5.314026832580566 ], [ -81.10986328125, -5.314026832580566 ], [ -81.10986328125, -5.313473224639893 ], [ -81.110137939453125, -5.313473224639893 ], [ -81.110137939453125, -5.31319522857666 ], [ -81.110420227050781, -5.31319522857666 ], [ -81.110420227050781, -5.312917232513428 ], [ -81.110694885253906, -5.312917232513428 ], [ -81.110694885253906, -5.312360763549805 ], [ -81.110969543456918, -5.312360763549805 ], [ -81.110969543456918, -5.312082767486572 ], [ -81.111251831054631, -5.312082767486572 ], [ -81.111251831054631, -5.311526775360107 ], [ -81.111526489257756, -5.311526775360107 ], [ -81.111526489257756, -5.311251163482666 ], [ -81.111808776855412, -5.311251163482666 ], [ -81.111808776855412, -5.310973167419434 ], [ -81.112083435058537, -5.310973167419434 ], [ -81.112083435058537, -5.310417175292969 ], [ -81.112358093261719, -5.310417175292969 ], [ -81.112358093261719, -5.310139179229736 ], [ -81.112640380859375, -5.310139179229736 ], [ -81.112640380859375, -5.309583187103271 ], [ -81.1129150390625, -5.309583187103271 ], [ -81.1129150390625, -5.309304237365723 ], [ -81.113197326660156, -5.309304237365723 ], [ -81.113197326660156, -5.30875110626215 ], [ -81.113471984863281, -5.30875110626215 ], [ -81.113471984863281, -5.305972099304199 ], [ -81.113746643066406, -5.305972099304199 ], [ -81.113746643066406, -5.30458402633667 ], [ -81.114028930664062, -5.30458211898798 ], [ -81.114028930664062, -5.302916049957275 ], [ -81.114303588867131, -5.302916049957275 ], [ -81.114303588867131, -5.301805973052979 ], [ -81.114585876464787, -5.301805973052979 ], [ -81.114585876464787, -5.301249980926514 ], [ -81.114860534667912, -5.301249980926514 ], [ -81.114860534667912, -5.300693988800049 ], [ -81.115135192871037, -5.300693988800049 ], [ -81.115135192871037, -5.300137996673584 ], [ -81.115417480468693, -5.30013990402216 ], [ -81.115417480468693, -5.299583911895695 ], [ -81.115692138671875, -5.299583911895695 ], [ -81.115692138671875, -5.29902791976923 ], [ -81.115974426269531, -5.29902791976923 ], [ -81.115974426269531, -5.298471927642822 ], [ -81.116249084472656, -5.298471927642822 ], [ -81.116249084472656, -5.297639846801701 ], [ -81.116531372070312, -5.297639846801701 ], [ -81.116531372070312, -5.297083854675236 ], [ -81.116806030273438, -5.297083854675236 ], [ -81.116806030273438, -5.296249866485539 ], [ -81.117080688476562, -5.296249866485539 ], [ -81.117080688476562, -5.295692920684758 ], [ -81.117362976074105, -5.295692920684758 ], [ -81.117362976074105, -5.294861793518066 ], [ -81.117637634277287, -5.294861793518066 ], [ -81.117637634277287, -5.294304847717285 ], [ -81.117919921874943, -5.294304847717285 ], [ -81.117919921874943, -5.29374885559082 ], [ -81.118194580078068, -5.29374885559082 ], [ -81.118194580078068, -5.293192863464355 ], [ -81.118469238281193, -5.293192863464355 ], [ -81.118469238281193, -5.292916774749756 ], [ -81.118751525878906, -5.292916774749756 ], [ -81.118751525878906, -5.292360782623291 ], [ -81.119026184082031, -5.292360782623291 ], [ -81.119026184082031, -5.291804790496826 ], [ -81.119308471679688, -5.291804790496826 ], [ -81.119308471679688, -5.291526794433594 ], [ -81.119583129882812, -5.291526794433594 ], [ -81.119583129882812, -5.291248798370361 ], [ -81.119857788085938, -5.291248798370361 ], [ -81.119857788085938, -5.290970802307129 ], [ -81.120140075683594, -5.290973186492863 ], [ -81.120140075683594, -5.290692806243896 ], [ -81.120414733886605, -5.290695190429631 ], [ -81.120414733886605, -5.290417194366455 ], [ -81.120697021484261, -5.290417194366455 ], [ -81.120697021484261, -5.290139198303223 ], [ -81.120971679687443, -5.290139198303223 ], [ -81.120971679687443, -5.28986120223999 ], [ -81.121246337890568, -5.28986120223999 ], [ -81.121246337890568, -5.289305210113525 ], [ -81.121528625488224, -5.289305210113525 ], [ -81.121528625488224, -5.289027214050293 ], [ -81.121803283691406, -5.289027214050293 ], [ -81.121803283691406, -5.288804054260254 ], [ -81.121963500976562, -5.288749217987061 ], [ -81.122085571289062, -5.288749217987061 ], [ -81.122085571289062, -5.288471221923828 ], [ -81.122360229492188, -5.288473129272404 ], [ -81.122360229492188, -5.288274765014592 ], [ -81.122360229492188, -5.288195133209172 ], [ -81.122642517089844, -5.288193225860596 ], [ -81.122642517089844, -5.287915229797363 ], [ -81.122917175292969, -5.287915229797363 ], [ -81.122917175292969, -5.287637233734131 ], [ -81.123191833496094, -5.287637233734131 ], [ -81.123191833496094, -5.287359237670898 ], [ -81.124862670898381, -5.287359237670898 ], [ -81.124862670898381, -5.287080764770508 ], [ -81.126251220703125, -5.287083148956242 ], [ -81.126251220703125, -5.286805152893066 ], [ -81.12652587890625, -5.286805152893066 ], [ -81.12652587890625, -5.286249160766602 ], [ -81.126808166503906, -5.286251068115234 ], [ -81.126808166503906, -5.28541707992548 ], [ -81.12652587890625, -5.28541707992548 ], [ -81.12652587890625, -5.284583091735783 ], [ -81.126251220703125, -5.284583091735783 ], [ -81.126251220703125, -5.283749103546086 ], [ -81.12652587890625, -5.283751010894775 ], [ -81.12652587890625, -5.283195018768311 ], [ -81.126808166503906, -5.283195018768311 ], [ -81.126808166503906, -5.2823610305785 ], [ -81.127082824706974, -5.2823610305785 ], [ -81.127082824706974, -5.281528949737549 ], [ -81.127357482910099, -5.281528949737549 ], [ -81.127357482910099, -5.280972957611084 ], [ -81.127639770507756, -5.280972957611084 ], [ -81.127639770507756, -5.280416011810303 ], [ -81.127914428710881, -5.280416011810303 ], [ -81.127914428710881, -5.28013801574707 ], [ -81.128196716308537, -5.28013801574707 ], [ -81.128196716308537, -5.279860019683838 ], [ -81.128471374511719, -5.279860019683838 ], [ -81.128471374511719, -5.279584884643498 ], [ -81.128753662109375, -5.279584884643498 ], [ -81.128753662109375, -5.279305934905949 ], [ -81.129302978515625, -5.279305934905949 ], [ -81.129302978515625, -5.279027938842717 ], [ -81.129585266113281, -5.279027938842717 ], [ -81.129585266113281, -5.278749942779484 ], [ -81.129859924316406, -5.278749942779484 ], [ -81.129859924316406, -5.278471946716252 ], [ -81.130142211913949, -5.278471946716252 ], [ -81.130142211913949, -5.276527881622258 ], [ -81.130416870117131, -5.276527881622258 ], [ -81.130416870117131, -5.27569389343256 ], [ -81.130691528320256, -5.27569389343256 ], [ -81.130691528320256, -5.274861812591553 ], [ -81.130973815917912, -5.274859905242863 ], [ -81.130973815917912, -5.274027824401855 ], [ -81.131248474121037, -5.274027824401855 ], [ -81.131248474121037, -5.273193836212045 ], [ -81.13153076171875, -5.273193836212045 ], [ -81.13153076171875, -5.272637844085637 ], [ -81.131805419921875, -5.272637844085637 ], [ -81.131805419921875, -5.27208423614502 ], [ -81.132080078125, -5.27208423614502 ], [ -81.132080078125, -5.271805763244629 ], [ -81.132362365722656, -5.271805763244629 ], [ -81.132362365722656, -5.271527767181396 ], [ -81.132637023925781, -5.271527767181396 ], [ -81.132637023925781, -5.270971775054932 ], [ -81.132919311523438, -5.270971775054932 ], [ -81.132919311523438, -5.270693778991699 ], [ -81.133193969726449, -5.270693778991699 ], [ -81.133193969726449, -5.270140171051025 ], [ -81.133468627929631, -5.270140171051025 ], [ -81.133468627929631, -5.269862174987793 ], [ -81.133750915527287, -5.269862174987793 ], [ -81.133750915527287, -5.269584178924561 ], [ -81.134025573730412, -5.269584178924561 ], [ -81.134025573730412, -5.269028186798096 ], [ -81.134307861328068, -5.269028186798096 ], [ -81.134307861328068, -5.268750190734863 ], [ -81.13458251953125, -5.268750190734863 ], [ -81.13458251953125, -5.268196105956974 ], [ -81.134864807128906, -5.268192768096924 ], [ -81.134864807128906, -5.267918109893742 ], [ -81.135139465332031, -5.267918109893742 ], [ -81.135139465332031, -5.26764011383051 ], [ -81.135414123535156, -5.26764011383051 ], [ -81.135414123535156, -5.267083168029728 ], [ -81.135696411132812, -5.267083168029728 ], [ -81.135696411132812, -5.266805171966496 ], [ -81.135971069335938, -5.266805171966496 ], [ -81.135971069335938, -5.266249179840031 ], [ -81.136253356933594, -5.266249179840031 ], [ -81.136253356933594, -5.265971183776799 ], [ -81.136528015136605, -5.265971183776799 ], [ -81.136528015136605, -5.265695095062256 ], [ -81.136802673339787, -5.265695095062256 ], [ -81.136802673339787, -5.265139102935791 ], [ -81.137084960937443, -5.265139102935791 ], [ -81.137084960937443, -5.264861106872445 ], [ -81.137359619140568, -5.264861106872445 ], [ -81.137359619140568, -5.264305114746037 ], [ -81.137641906738224, -5.264305114746037 ], [ -81.137641906738224, -5.264027118682804 ], [ -81.137916564941406, -5.264027118682804 ], [ -81.137916564941406, -5.263749122619572 ], [ -81.138191223144531, -5.263749122619572 ], [ -81.138191223144531, -5.263195037841797 ], [ -81.138473510742188, -5.263195037841797 ], [ -81.138473510742188, -5.262917041778564 ], [ -81.139030456542969, -5.262917041778564 ], [ -81.139030456542969, -5.262639045715332 ], [ -81.139862060546818, -5.262639045715332 ], [ -81.139862060546818, -5.2623610496521 ], [ -81.140419006347599, -5.2623610496521 ], [ -81.140419006347599, -5.262083053588867 ], [ -81.141250610351562, -5.262083053588867 ], [ -81.141250610351562, -5.261805057525635 ], [ -81.141616821289062, -5.261805057525635 ], [ -81.142082214355469, -5.261805057525635 ], [ -81.142082214355469, -5.261527061462402 ], [ -81.142913818359318, -5.261527061462402 ], [ -81.142913818359318, -5.261249065399056 ], [ -81.143753051757756, -5.261249065399056 ], [ -81.143753051757756, -5.260971069335881 ], [ -81.144859313964844, -5.26097297668457 ], [ -81.144859313964844, -5.260694980621338 ], [ -81.14569091796875, -5.260694980621338 ], [ -81.14569091796875, -5.260416984558105 ], [ -81.146804809570256, -5.260416984558105 ], [ -81.146804809570256, -5.260138988494873 ], [ -81.147918701171875, -5.260138988494873 ], [ -81.147918701171875, -5.259860992431641 ], [ -81.149024963378793, -5.259860992431641 ], [ -81.149024963378793, -5.259582996368408 ], [ -81.150138854980412, -5.259582996368408 ], [ -81.150138854980412, -5.259305000305176 ], [ -81.150413513183594, -5.259305000305176 ], [ -81.150413513183594, -5.258472919464054 ], [ -81.15069580078125, -5.258472919464054 ], [ -81.15069580078125, -5.257082939147949 ], [ -81.150970458984375, -5.257082939147949 ], [ -81.150970458984375, -5.256250858306828 ], [ -81.151252746582031, -5.256250858306828 ], [ -81.151252746582031, -5.255972862243596 ], [ -81.151527404785156, -5.255972862243596 ], [ -81.151527404785156, -5.255694866180363 ], [ -81.151802062988281, -5.255694866180363 ], [ -81.151802062988281, -5.255416870117131 ], [ -81.152084350585938, -5.255416870117131 ], [ -81.152084350585938, -5.255138874053898 ], [ -81.152359008788949, -5.255138874053898 ], [ -81.152359008788949, -5.254859924316349 ], [ -81.152641296386662, -5.254859924316349 ], [ -81.152641296386662, -5.254581928253117 ], [ -81.152915954589787, -5.254581928253117 ], [ -81.152915954589787, -5.254303932189885 ], [ -81.153190612792912, -5.254303932189885 ], [ -81.153198242187443, -5.254028797149658 ], [ -81.153472900390568, -5.254028797149658 ], [ -81.153472900390568, -5.253750801086312 ], [ -81.15374755859375, -5.253750801086312 ], [ -81.15374755859375, -5.253471851348877 ], [ -81.154029846191406, -5.253471851348877 ], [ -81.154029846191406, -5.253193855285645 ], [ -81.154304504394531, -5.253193855285645 ], [ -81.154304504394531, -5.252915859222412 ], [ -81.154586791992188, -5.252915859222412 ], [ -81.154586791992188, -5.25263786315918 ], [ -81.154861450195312, -5.25263786315918 ], [ -81.154861450195312, -5.252359867095947 ], [ -81.155136108398438, -5.252359867095947 ], [ -81.155136108398438, -5.252081871032601 ], [ -81.155418395996094, -5.252081871032601 ], [ -81.155418395996094, -5.251805782318115 ], [ -81.155693054199162, -5.251805782318115 ], [ -81.155693054199162, -5.251527786254883 ], [ -81.155975341796818, -5.251527786254883 ], [ -81.155975341796818, -5.25124979019165 ], [ -81.15625, -5.25124979019165 ], [ -81.15625, -5.250971794128418 ], [ -81.156524658203068, -5.250971794128418 ], [ -81.156524658203068, -5.250693798065186 ], [ -81.156806945800724, -5.250693798065186 ], [ -81.156806945800724, -5.250415802001953 ], [ -81.157081604003906, -5.250415802001953 ], [ -81.157081604003906, -5.250137805938721 ], [ -81.157363891601562, -5.250137805938721 ], [ -81.157363891601562, -5.249859809875488 ], [ -81.157638549804688, -5.249859809875488 ], [ -81.157638549804688, -5.249581813812256 ], [ -81.157913208007812, -5.249584197998047 ], [ -81.157913208007812, -5.249306201934814 ], [ -81.158195495605469, -5.249306201934814 ], [ -81.158195495605469, -5.249028205871582 ], [ -81.158470153808594, -5.249028205871582 ], [ -81.158470153808594, -5.24875020980835 ], [ -81.158752441406136, -5.24875020980835 ], [ -81.158752441406136, -5.248472213745117 ], [ -81.159027099609318, -5.248472213745117 ], [ -81.159027099609318, -5.248194217681885 ], [ -81.159301757812443, -5.248194217681885 ], [ -81.159301757812443, -5.247916221618652 ], [ -81.159584045410099, -5.247916221618652 ], [ -81.159584045410099, -5.24763822555542 ], [ -81.159858703613224, -5.24763822555542 ], [ -81.159858703613224, -5.247360229492188 ], [ -81.160140991210938, -5.247360229492188 ], [ -81.160140991210938, -5.247082233428955 ], [ -81.160415649414062, -5.247082233428955 ], [ -81.160415649414062, -5.246804237365723 ], [ -81.160697937011719, -5.246804237365723 ], [ -81.160697937011719, -5.246525764465332 ], [ -81.160972595214844, -5.246525764465332 ], [ -81.160972595214844, -5.246250152587891 ], [ -81.161247253417969, -5.246250152587891 ], [ -81.161247253417969, -5.245972156524658 ], [ -81.161529541015625, -5.245972156524658 ], [ -81.161529541015625, -5.245694160461426 ], [ -81.161804199218636, -5.245694160461426 ], [ -81.161804199218636, -5.245416164398193 ], [ -81.162086486816293, -5.245416164398193 ], [ -81.162086486816293, -5.245140075683537 ], [ -81.162361145019474, -5.245138168334961 ], [ -81.162361145019474, -5.244860172271729 ], [ -81.162635803222599, -5.244860172271729 ], [ -81.162635803222599, -5.244582176208496 ], [ -81.162918090820256, -5.244584083557072 ], [ -81.162918090820256, -5.24430608749384 ], [ -81.163192749023438, -5.24430608749384 ], [ -81.163192749023438, -5.244028091430607 ], [ -81.163475036621094, -5.244028091430607 ], [ -81.163475036621094, -5.243750095367375 ], [ -81.163749694824219, -5.243750095367375 ], [ -81.163749694824219, -5.243472099304142 ], [ -81.164024353027344, -5.243472099304142 ], [ -81.164024353027344, -5.24319410324091 ], [ -81.164306640625, -5.24319410324091 ], [ -81.164306640625, -5.242916107177678 ], [ -81.164581298828125, -5.242916107177678 ], [ -81.164581298828125, -5.242637157440129 ], [ -81.164863586425781, -5.242637157440129 ], [ -81.164863586425781, -5.242362022399902 ], [ -81.165138244628793, -5.242362022399902 ], [ -81.165138244628793, -5.24208402633667 ], [ -81.165412902831974, -5.24208402633667 ], [ -81.165412902831974, -5.241806030273324 ], [ -81.165695190429631, -5.241806030273324 ], [ -81.165695190429631, -5.241528034210148 ], [ -81.165969848632756, -5.241528034210148 ], [ -81.165969848632756, -5.241249084472656 ], [ -81.166252136230412, -5.241249084472656 ], [ -81.166252136230412, -5.240971088409424 ], [ -81.166526794433594, -5.240971088409424 ], [ -81.166526794433594, -5.240695953369141 ], [ -81.16680908203125, -5.240695953369141 ], [ -81.16680908203125, -5.240417957305908 ], [ -81.167083740234375, -5.240417957305908 ], [ -81.167083740234375, -5.240139961242676 ], [ -81.1673583984375, -5.240139961242676 ], [ -81.1673583984375, -5.239861011505127 ], [ -81.167915344238281, -5.239861011505127 ], [ -81.167915344238281, -5.239583015441895 ], [ -81.168197631835938, -5.239583015441895 ], [ -81.168197631835938, -5.239305019378662 ], [ -81.168746948242131, -5.239305019378662 ], [ -81.168746948242131, -5.23902702331543 ], [ -81.169029235839787, -5.23902702331543 ], [ -81.169029235839787, -5.238749027252197 ], [ -81.169586181640568, -5.238749027252197 ], [ -81.169586181640568, -5.238471031188965 ], [ -81.16986083984375, -5.238471031188965 ], [ -81.16986083984375, -5.238194942474308 ], [ -81.170417785644531, -5.238194942474308 ], [ -81.170417785644531, -5.237916946411076 ], [ -81.170692443847656, -5.237916946411076 ], [ -81.170692443847656, -5.237638950347844 ], [ -81.171249389648438, -5.237638950347844 ], [ -81.171249389648438, -5.237082958221436 ], [ -81.171524047851506, -5.237082958221436 ], [ -81.171524047851506, -5.236526966094971 ], [ -81.171806335449162, -5.236526966094971 ], [ -81.171806335449162, -5.235972881317082 ], [ -81.172080993652287, -5.235972881317082 ], [ -81.172080993652287, -5.235416889190617 ], [ -81.172363281249943, -5.235416889190617 ], [ -81.172363281249943, -5.234860897064152 ], [ -81.172637939453068, -5.234860897064152 ], [ -81.172637939453068, -5.23458290100092 ], [ -81.172920227050781, -5.23458290100092 ], [ -81.172920227050781, -5.234304904937687 ], [ -81.173194885253906, -5.234304904937687 ], [ -81.173194885253906, -5.233748912811222 ], [ -81.173751831054688, -5.233748912811222 ], [ -81.173751831054688, -5.234026908874455 ], [ -81.174026489257812, -5.234026908874455 ], [ -81.174026489257812, -5.233748912811222 ], [ -81.174308776855469, -5.233748912811222 ], [ -81.174308776855469, -5.23347282409668 ], [ -81.175140380859318, -5.23347282409668 ], [ -81.175140380859318, -5.233194828033447 ], [ -81.175415039062443, -5.233194828033447 ], [ -81.175415039062443, -5.232638835906869 ], [ -81.175697326660099, -5.232638835906869 ], [ -81.175697326660099, -5.232360839843693 ], [ -81.175971984863281, -5.232360839843693 ], [ -81.175971984863281, -5.232082843780461 ], [ -81.176246643066406, -5.232082843780461 ], [ -81.176246643066406, -5.231804847717228 ], [ -81.176803588867188, -5.231804847717228 ], [ -81.176803588867188, -5.231526851653996 ], [ -81.177360534667969, -5.231526851653996 ], [ -81.177360534667969, -5.230972766876221 ], [ -81.17763519287098, -5.230972766876221 ], [ -81.17763519287098, -5.230694770812988 ], [ -81.177917480468636, -5.230694770812988 ], [ -81.177917480468636, -5.230416774749756 ], [ -81.178474426269474, -5.230416774749756 ], [ -81.178474426269474, -5.230138778686523 ], [ -81.178749084472599, -5.230138778686523 ], [ -81.178749084472599, -5.229582786560059 ], [ -81.179031372070256, -5.229582786560059 ], [ -81.179031372070256, -5.229307174682617 ], [ -81.179306030273438, -5.229307174682617 ], [ -81.179306030273438, -5.229029178619385 ], [ -81.179580688476562, -5.229029178619385 ], [ -81.179580688476562, -5.22847318649292 ], [ -81.179862976074219, -5.22847318649292 ], [ -81.179862976074219, -5.228195190429688 ], [ -81.180137634277344, -5.228195190429688 ], [ -81.180137634277344, -5.227637767791748 ], [ -81.180419921875, -5.227637767791748 ], [ -81.180419921875, -5.227359771728516 ], [ -81.180694580078125, -5.227359771728516 ], [ -81.180694580078125, -5.227081775665283 ], [ -81.180969238281136, -5.227081775665283 ], [ -81.180969238281136, -5.226807117462158 ], [ -81.181251525878849, -5.226807117462158 ], [ -81.181251525878849, -5.226529121398926 ], [ -81.181526184081974, -5.226529121398926 ], [ -81.181526184081974, -5.22625017166132 ], [ -81.181808471679631, -5.22625017166132 ], [ -81.181808471679631, -5.225972175598088 ], [ -81.182083129882756, -5.225972175598088 ], [ -81.182083129882756, -5.225694179534855 ], [ -81.182640075683594, -5.225694179534855 ], [ -81.182640075683594, -5.225416183471623 ], [ -81.182914733886719, -5.225416183471623 ], [ -81.182914733886719, -5.225138187408447 ], [ -81.183197021484375, -5.225138187408447 ], [ -81.183197021484375, -5.224860191345215 ], [ -81.1834716796875, -5.224860191345215 ], [ -81.1834716796875, -5.224582195281982 ], [ -81.183746337890625, -5.224582195281982 ], [ -81.183746337890625, -5.224306106567269 ], [ -81.184028625488281, -5.224306106567269 ], [ -81.184028625488281, -5.224028110504094 ], [ -81.186248779296875, -5.224028110504094 ], [ -81.186248779296875, -5.223750114440861 ], [ -81.186805725097656, -5.223750114440861 ], [ -81.186805725097656, -5.223472118377629 ], [ -81.187362670898324, -5.223472118377629 ], [ -81.187362670898324, -5.223194122314396 ], [ -81.187919616699162, -5.223194122314396 ], [ -81.187919616699162, -5.222916126251164 ], [ -81.188194274902287, -5.222916126251164 ], [ -81.188194274902287, -5.222638130187931 ], [ -81.188468933105412, -5.222638130187931 ], [ -81.188468933105412, -5.222360134124699 ], [ -81.188751220703125, -5.222360134124699 ], [ -81.188751220703125, -5.222084045410156 ], [ -81.18902587890625, -5.222084045410156 ], [ -81.18902587890625, -5.221806049346924 ], [ -81.189308166503906, -5.221806049346924 ], [ -81.189308166503906, -5.221528053283691 ], [ -81.189582824707031, -5.221528053283691 ], [ -81.189582824707031, -5.221250057220459 ], [ -81.189857482910156, -5.221250057220459 ], [ -81.189857482910156, -5.220972061157227 ], [ -81.190139770507812, -5.220972061157227 ], [ -81.190139770507812, -5.22069406509388 ], [ -81.190414428710824, -5.22069406509388 ], [ -81.190414428710824, -5.220416069030705 ], [ -81.19069671630848, -5.220416069030705 ], [ -81.19069671630848, -5.220138072967472 ], [ -81.191253662109318, -5.220138072967472 ], [ -81.191253662109318, -5.21986007690424 ], [ -81.191528320312443, -5.21986198425293 ], [ -81.191528320312443, -5.219583988189697 ], [ -81.191802978515625, -5.219583988189697 ], [ -81.191802978515625, -5.219305992126465 ], [ -81.192085266113281, -5.219305992126465 ], [ -81.192085266113281, -5.219027996063232 ], [ -81.192359924316406, -5.219027996063232 ], [ -81.192359924316406, -5.21875 ], [ -81.192642211914062, -5.21875 ], [ -81.192642211914062, -5.218472003936768 ], [ -81.192916870117188, -5.218472003936768 ], [ -81.192916870117188, -5.218194007873535 ], [ -81.193191528320312, -5.218194007873535 ], [ -81.193191528320312, -5.217916011810303 ], [ -81.193473815917969, -5.217916011810303 ], [ -81.193473815917969, -5.21763801574707 ], [ -81.19374847412098, -5.217639923095703 ], [ -81.19374847412098, -5.217083930969238 ], [ -81.194030761718693, -5.217083930969238 ], [ -81.194030761718693, -5.216527938842773 ], [ -81.194305419921818, -5.216527938842773 ], [ -81.194305419921818, -5.215693950653076 ], [ -81.194580078124943, -5.215693950653076 ], [ -81.194580078124943, -5.215139865875187 ], [ -81.194862365722599, -5.215139865875187 ], [ -81.194862365722599, -5.21430587768549 ], [ -81.195137023925781, -5.21430587768549 ], [ -81.195137023925781, -5.213748931884709 ], [ -81.195419311523438, -5.213748931884709 ], [ -81.195419311523438, -5.212917804717961 ], [ -81.195693969726562, -5.212917804717961 ], [ -81.195693969726562, -5.212082862854004 ], [ -81.195968627929688, -5.212082862854004 ], [ -81.195968627929688, -5.211526870727425 ], [ -81.196250915527344, -5.211526870727425 ], [ -81.196250915527344, -5.209860801696777 ], [ -81.195968627929688, -5.209860801696777 ], [ -81.195968627929688, -5.209582805633545 ], [ -81.195419311523438, -5.209582805633545 ], [ -81.195419311523438, -5.209304809570312 ], [ -81.194580078124943, -5.209304809570312 ], [ -81.194580078124943, -5.20902681350708 ], [ -81.194305419921818, -5.20902681350708 ], [ -81.194305419921818, -5.208748817443848 ], [ -81.194030761718693, -5.208748817443848 ], [ -81.194030761718693, -5.207917213439941 ], [ -81.194305419921818, -5.207917213439941 ], [ -81.194305419921818, -5.207639217376709 ], [ -81.194580078124943, -5.207639217376709 ], [ -81.194580078124943, -5.205970764160156 ], [ -81.194305419921818, -5.20597314834589 ], [ -81.194305419921818, -5.205695152282715 ], [ -81.19374847412098, -5.205695152282715 ], [ -81.19374847412098, -5.205417156219482 ], [ -81.193473815917969, -5.205417156219482 ], [ -81.193473815917969, -5.20513916015625 ], [ -81.193191528320312, -5.20513916015625 ], [ -81.193191528320312, -5.204861164093018 ], [ -81.192642211914062, -5.204861164093018 ], [ -81.192642211914062, -5.204583168029785 ], [ -81.192359924316406, -5.204583168029785 ], [ -81.192359924316406, -5.204305171966553 ], [ -81.192085266113281, -5.204305171966553 ], [ -81.192085266113281, -5.20402717590332 ], [ -81.191848754882812, -5.20402717590332 ], [ -81.191802978515625, -5.203471183776855 ], [ -81.191528320312443, -5.203473091125431 ], [ -81.191528320312443, -5.203195095062199 ], [ -81.19140625, -5.203195095062199 ], [ -81.191253662109318, -5.203195095062199 ], [ -81.191253662109318, -5.202917098998967 ], [ -81.190971374511662, -5.202917098998967 ], [ -81.190971374511662, -5.202639102935734 ], [ -81.19069671630848, -5.202639102935734 ], [ -81.19069671630848, -5.202361106872502 ], [ -81.190414428710824, -5.202361106872502 ], [ -81.190414428710824, -5.201804161071721 ], [ -81.190139770507812, -5.201804161071721 ], [ -81.190139770507812, -5.201529026031494 ], [ -81.189857482910156, -5.201529026031494 ], [ -81.189857482910156, -5.200138092041016 ], [ -81.190139770507812, -5.200138092041016 ], [ -81.190139770507812, -5.199860095977783 ], [ -81.190414428710824, -5.199860095977783 ], [ -81.190414428710824, -5.200138092041016 ], [ -81.19069671630848, -5.200138092041016 ], [ -81.19069671630848, -5.198472023010254 ], [ -81.190414428710824, -5.198472023010254 ], [ -81.190414428710824, -5.198750019073486 ], [ -81.189964294433594, -5.198750019073486 ], [ -81.189857482910156, -5.198750019073486 ], [ -81.189857482910156, -5.198472023010254 ], [ -81.189582824707031, -5.198472023010254 ], [ -81.189582824707031, -5.198194026947021 ], [ -81.189308166503906, -5.198194026947021 ], [ -81.189308166503906, -5.197970867156982 ], [ -81.189308166503906, -5.197360038757324 ], [ -81.189582824707031, -5.197360038757324 ], [ -81.189582824707031, -5.19652795791626 ], [ -81.189857482910156, -5.19652795791626 ], [ -81.189857482910156, -5.195693969726562 ], [ -81.190139770507812, -5.195693969726562 ], [ -81.190139770507812, -5.195137977600098 ], [ -81.189857482910156, -5.195137977600098 ], [ -81.189857482910156, -5.194859981536865 ], [ -81.189582824707031, -5.194859981536865 ], [ -81.189582824707031, -5.194583892822209 ], [ -81.189308166503906, -5.194583892822209 ], [ -81.189308166503906, -5.194305896758976 ], [ -81.18902587890625, -5.194305896758976 ], [ -81.18902587890625, -5.194027900695744 ], [ -81.188751220703125, -5.194027900695744 ], [ -81.188751220703125, -5.193749904632512 ], [ -81.188468933105412, -5.193749904632512 ], [ -81.188468933105412, -5.193471908569279 ], [ -81.188751220703125, -5.193471908569279 ], [ -81.188751220703125, -5.193193912506047 ], [ -81.187919616699162, -5.193193912506047 ], [ -81.187919616699162, -5.193471908569279 ], [ -81.187637329101506, -5.193471908569279 ], [ -81.187637329101506, -5.193749904632512 ], [ -81.187362670898324, -5.193749904632512 ], [ -81.187362670898324, -5.194027900695744 ], [ -81.186531066894531, -5.194027900695744 ], [ -81.186531066894531, -5.194305896758976 ], [ -81.185691833496094, -5.194305896758976 ], [ -81.185691833496094, -5.194027900695744 ], [ -81.185417175292912, -5.194027900695744 ], [ -81.185417175292912, -5.193749904632512 ], [ -81.185142517089787, -5.193749904632512 ], [ -81.185142517089787, -5.193193912506047 ], [ -81.184860229492131, -5.193193912506047 ], [ -81.184860229492131, -5.192361831665039 ], [ -81.184585571289006, -5.192361831665039 ], [ -81.184585571289006, -5.191527843475285 ], [ -81.184303283691349, -5.191527843475285 ], [ -81.184303283691349, -5.19097185134882 ], [ -81.184028625488281, -5.19097185134882 ], [ -81.184028625488281, -5.190417766571045 ], [ -81.183746337890625, -5.190417766571045 ], [ -81.183746337890625, -5.18986177444458 ], [ -81.1834716796875, -5.18986177444458 ], [ -81.1834716796875, -5.189305782318115 ], [ -81.180969238281136, -5.189305782318115 ], [ -81.180969238281136, -5.189583778381348 ], [ -81.180694580078125, -5.189583778381348 ], [ -81.180694580078125, -5.18986177444458 ], [ -81.180137634277344, -5.18986177444458 ], [ -81.180137634277344, -5.190139770507812 ], [ -81.179862976074219, -5.190139770507812 ], [ -81.179862976074219, -5.18986177444458 ], [ -81.179580688476562, -5.18986177444458 ], [ -81.179580688476562, -5.189583778381348 ], [ -81.179176330566406, -5.189583778381348 ], [ -81.179031372070256, -5.189583778381348 ], [ -81.179031372070256, -5.189425945281926 ], [ -81.179031372070256, -5.189305782318115 ], [ -81.178916931152344, -5.189305782318115 ], [ -81.178749084472599, -5.189305782318115 ], [ -81.178749084472599, -5.189027786254883 ], [ -81.178474426269474, -5.189027786254883 ], [ -81.178474426269474, -5.18874979019165 ], [ -81.178192138671818, -5.18874979019165 ], [ -81.178192138671818, -5.188515186309814 ], [ -81.178192138671818, -5.188192844390869 ], [ -81.177917480468636, -5.188192844390869 ], [ -81.177917480468636, -5.187640190124512 ], [ -81.17763519287098, -5.187640190124512 ], [ -81.17763519287098, -5.187084197998047 ], [ -81.177360534667969, -5.187084197998047 ], [ -81.177360534667969, -5.185970783233643 ], [ -81.177085876464844, -5.185970783233643 ], [ -81.177085876464844, -5.185417175292912 ], [ -81.176803588867188, -5.185417175292912 ], [ -81.176803588867188, -5.184861183166447 ], [ -81.176246643066406, -5.184861183166447 ], [ -81.176246643066406, -5.184583187103271 ], [ -81.175697326660099, -5.184583187103271 ], [ -81.175697326660099, -5.184305191040039 ], [ -81.175140380859318, -5.184305191040039 ], [ -81.175140380859318, -5.184027194976807 ], [ -81.174858093261662, -5.184027194976807 ], [ -81.174858093261662, -5.183471202850342 ], [ -81.17458343505848, -5.183471202850342 ], [ -81.17458343505848, -5.182917118072453 ], [ -81.174308776855469, -5.182917118072453 ], [ -81.174308776855469, -5.182359218597412 ], [ -81.174026489257812, -5.182361125945988 ], [ -81.174026489257812, -5.181805133819523 ], [ -81.174308776855469, -5.181805133819523 ], [ -81.174308776855469, -5.180971145629883 ], [ -81.17458343505848, -5.180973052978516 ], [ -81.17458343505848, -5.180417060852051 ], [ -81.174308776855469, -5.180417060852051 ], [ -81.174308776855469, -5.179861068725529 ], [ -81.174026489257812, -5.179861068725529 ], [ -81.174026489257812, -5.179583072662297 ], [ -81.173751831054688, -5.179583072662297 ], [ -81.173751831054688, -5.179027080535832 ], [ -81.173469543457031, -5.179027080535832 ], [ -81.173469543457031, -5.178471088409367 ], [ -81.173194885253906, -5.178472995758057 ], [ -81.173194885253906, -5.178194999694824 ], [ -81.172920227050781, -5.178194999694824 ], [ -81.172920227050781, -5.177639007568359 ], [ -81.171249389648438, -5.177639007568359 ], [ -81.171249389648438, -5.177361011505127 ], [ -81.170974731445312, -5.177361011505127 ], [ -81.170974731445312, -5.177083015441895 ], [ -81.171249389648438, -5.177083015441895 ], [ -81.171249389648438, -5.175970077514648 ], [ -81.171524047851506, -5.175970077514648 ], [ -81.171524047851506, -5.174860954284668 ], [ -81.171806335449162, -5.174860954284668 ], [ -81.171806335449162, -5.174304008483887 ], [ -81.171524047851506, -5.174304008483887 ], [ -81.171524047851506, -5.173750877380314 ], [ -81.171249389648438, -5.173750877380314 ], [ -81.171249389648438, -5.173472881317139 ], [ -81.170974731445312, -5.173472881317139 ], [ -81.170974731445312, -5.173193931579533 ], [ -81.170692443847656, -5.173193931579533 ], [ -81.170692443847656, -5.171805858612061 ], [ -81.170417785644531, -5.171805858612061 ], [ -81.170417785644531, -5.17097187042225 ], [ -81.170135498046875, -5.17097187042225 ], [ -81.170135498046875, -5.170693874359074 ], [ -81.16986083984375, -5.170693874359074 ], [ -81.16986083984375, -5.170415878295842 ], [ -81.169586181640568, -5.170415878295842 ], [ -81.169586181640568, -5.169305801391602 ], [ -81.169303894042912, -5.169305801391602 ], [ -81.169303894042912, -5.168471813201904 ], [ -81.169029235839787, -5.168471813201904 ], [ -81.169029235839787, -5.167362213134766 ], [ -81.168746948242131, -5.167362213134766 ], [ -81.168746948242131, -5.166250228881836 ], [ -81.168472290039006, -5.166250228881836 ], [ -81.168472290039006, -5.158195018768311 ], [ -81.168746948242131, -5.158195018768311 ], [ -81.168746948242131, -5.157361030578613 ], [ -81.168472290039006, -5.157361030578613 ], [ -81.168472290039006, -5.157083034515381 ], [ -81.168746948242131, -5.157083034515381 ], [ -81.168746948242131, -5.156527042388916 ], [ -81.168472290039006, -5.156527042388916 ], [ -81.168472290039006, -5.155416965484619 ], [ -81.168746948242131, -5.155416965484619 ], [ -81.168746948242131, -5.154860973358154 ], [ -81.169029235839787, -5.154860973358154 ], [ -81.169029235839787, -5.154026985168457 ], [ -81.169303894042912, -5.154026985168457 ], [ -81.169303894042912, -5.153472900390568 ], [ -81.169586181640568, -5.153472900390568 ], [ -81.169586181640568, -5.152638912200871 ], [ -81.16986083984375, -5.152638912200871 ], [ -81.16986083984375, -5.152082920074463 ], [ -81.170135498046875, -5.152082920074463 ], [ -81.170135498046875, -5.151250839233342 ], [ -81.170417785644531, -5.151250839233342 ], [ -81.170417785644531, -5.150694847106877 ], [ -81.170692443847656, -5.150694847106877 ], [ -81.170692443847656, -5.149860858917179 ], [ -81.170974731445312, -5.149860858917179 ], [ -81.170974731445312, -5.149304866790715 ], [ -81.171249389648438, -5.149304866790715 ], [ -81.171249389648438, -5.149028778076172 ], [ -81.171524047851506, -5.149028778076172 ], [ -81.171524047851506, -5.148194789886475 ], [ -81.171806335449162, -5.148194789886475 ], [ -81.171806335449162, -5.147638797759953 ], [ -81.172080993652287, -5.147638797759953 ], [ -81.172080993652287, -5.147081851959229 ], [ -81.172363281249943, -5.147081851959229 ], [ -81.172363281249943, -5.146529197692871 ], [ -81.172637939453068, -5.146529197692871 ], [ -81.172637939453068, -5.145971775054932 ], [ -81.172920227050781, -5.145971775054932 ], [ -81.172920227050781, -5.145693778991699 ], [ -81.173469543457031, -5.145693778991699 ], [ -81.173469543457031, -5.145971775054932 ], [ -81.173751831054688, -5.145971775054932 ], [ -81.173751831054688, -5.145693778991699 ], [ -81.174308776855469, -5.145693778991699 ], [ -81.174308776855469, -5.145137786865234 ], [ -81.17458343505848, -5.145137786865234 ], [ -81.17458343505848, -5.143472194671631 ], [ -81.174858093261662, -5.143472194671631 ], [ -81.174858093261662, -5.143194198608398 ], [ -81.175415039062443, -5.143194198608398 ], [ -81.175415039062443, -5.142916202545166 ], [ -81.176246643066406, -5.142916202545166 ], [ -81.176246643066406, -5.142360210418701 ], [ -81.176528930664062, -5.142360210418701 ], [ -81.176528930664062, -5.142082214355469 ], [ -81.176803588867188, -5.142082214355469 ], [ -81.176803588867188, -5.141526222229004 ], [ -81.177085876464844, -5.141526222229004 ], [ -81.177085876464844, -5.141248226165771 ], [ -81.177360534667969, -5.141250133514347 ], [ -81.177360534667969, -5.140694141387883 ], [ -81.17763519287098, -5.140694141387883 ], [ -81.17763519287098, -5.138472080230656 ], [ -81.177917480468636, -5.138472080230656 ], [ -81.177917480468636, -5.138194084167424 ], [ -81.178474426269474, -5.138194084167424 ], [ -81.178474426269474, -5.13597202301014 ], [ -81.178192138671818, -5.13597202301014 ], [ -81.178192138671818, -5.135694026946965 ], [ -81.17763519287098, -5.135694026946965 ], [ -81.17763519287098, -5.135416030883732 ], [ -81.177360534667969, -5.135416030883732 ], [ -81.177360534667969, -5.13513708114624 ], [ -81.17763519287098, -5.13513708114624 ], [ -81.17763519287098, -5.134859085083008 ], [ -81.179306030273438, -5.134859085083008 ], [ -81.179306030273438, -5.13513708114624 ], [ -81.180137634277344, -5.13513708114624 ], [ -81.180137634277344, -5.134859085083008 ], [ -81.180419921875, -5.134861946105957 ], [ -81.180419921875, -5.134583950042725 ], [ -81.180694580078125, -5.134583950042725 ], [ -81.180694580078125, -5.134305953979492 ], [ -81.180969238281136, -5.134305953979492 ], [ -81.180969238281136, -5.133471012115479 ], [ -81.180694580078125, -5.133473873138371 ], [ -81.180694580078125, -5.132360935211125 ], [ -81.180419921875, -5.132360935211125 ], [ -81.180419921875, -5.13180494308466 ], [ -81.180137634277344, -5.13180494308466 ], [ -81.180137634277344, -5.131526947021428 ], [ -81.179031372070256, -5.131526947021428 ], [ -81.179031372070256, -5.131248950958252 ], [ -81.178474426269474, -5.131248950958252 ], [ -81.178474426269474, -5.131526947021428 ], [ -81.178749084472599, -5.131526947021428 ], [ -81.178749084472599, -5.13180494308466 ], [ -81.178474426269474, -5.13180494308466 ], [ -81.178474426269474, -5.131918907165414 ], [ -81.178474426269474, -5.132082939147892 ], [ -81.178237915039062, -5.132082939147892 ], [ -81.177886962890568, -5.132082939147892 ], [ -81.176528930664062, -5.132082939147892 ], [ -81.176528930664062, -5.13180494308466 ], [ -81.175140380859318, -5.13180494308466 ], [ -81.175140380859318, -5.131526947021428 ], [ -81.174858093261662, -5.131526947021428 ], [ -81.174858093261662, -5.131248950958252 ], [ -81.17458343505848, -5.131248950958252 ], [ -81.17458343505848, -5.13069486618042 ], [ -81.174308776855469, -5.13069486618042 ], [ -81.174308776855469, -5.130138874053898 ], [ -81.174026489257812, -5.130138874053898 ], [ -81.174026489257812, -5.129860877990666 ], [ -81.171249389648438, -5.129860877990666 ], [ -81.171249389648438, -5.130416870117074 ], [ -81.170974731445312, -5.130416870117074 ], [ -81.170974731445312, -5.130972862243652 ], [ -81.170692443847656, -5.130972862243652 ], [ -81.170692443847656, -5.131248950958252 ], [ -81.169746398925781, -5.131248950958252 ], [ -81.169303894042912, -5.131248950958252 ], [ -81.169303894042912, -5.130972862243652 ], [ -81.169029235839787, -5.130972862243652 ], [ -81.169029235839787, -5.13069486618042 ], [ -81.168746948242131, -5.13069486618042 ], [ -81.168746948242131, -5.130416870117074 ], [ -81.168472290039006, -5.130416870117074 ], [ -81.168472290039006, -5.130103111267033 ], [ -81.168472290039006, -5.129304885864201 ], [ -81.168746948242131, -5.129304885864201 ], [ -81.168746948242131, -5.128194808959961 ], [ -81.169029235839787, -5.128194808959961 ], [ -81.169029235839787, -5.127638816833496 ], [ -81.168746948242131, -5.127638816833496 ], [ -81.168746948242131, -5.127360820770264 ], [ -81.168472290039006, -5.127360820770264 ], [ -81.168472290039006, -5.127638816833496 ], [ -81.168197631835938, -5.127638816833496 ], [ -81.168197631835938, -5.127916812896729 ], [ -81.167915344238281, -5.127916812896729 ], [ -81.167915344238281, -5.128194808959961 ], [ -81.167083740234375, -5.128194808959961 ], [ -81.167083740234375, -5.127916812896729 ], [ -81.165969848632756, -5.127916812896729 ], [ -81.165969848632756, -5.127638816833496 ], [ -81.165138244628793, -5.127638816833496 ], [ -81.165138244628793, -5.127360820770264 ], [ -81.164863586425781, -5.127360820770264 ], [ -81.164863586425781, -5.127082824707031 ], [ -81.164581298828125, -5.127082824707031 ], [ -81.164581298828125, -5.126804828643685 ], [ -81.164306640625, -5.126804828643685 ], [ -81.164306640625, -5.12652683258051 ], [ -81.164024353027344, -5.12652683258051 ], [ -81.164024353027344, -5.125973224639893 ], [ -81.163749694824219, -5.125973224639893 ], [ -81.163749694824219, -5.12569522857666 ], [ -81.163475036621094, -5.12569522857666 ], [ -81.163475036621094, -5.125417232513428 ], [ -81.162918090820256, -5.125417232513428 ], [ -81.162918090820256, -5.125139236450195 ], [ -81.162208557128906, -5.125139236450195 ], [ -81.161804199218636, -5.125139236450195 ], [ -81.161804199218636, -5.124860763549805 ], [ -81.161247253417969, -5.124860763549805 ], [ -81.161247253417969, -5.124582767486572 ], [ -81.160972595214844, -5.124582767486572 ], [ -81.160972595214844, -5.12430477142334 ], [ -81.160697937011719, -5.12430477142334 ], [ -81.160697937011719, -5.123748779296875 ], [ -81.160415649414062, -5.123748779296875 ], [ -81.160415649414062, -5.123473167419434 ], [ -81.160697937011719, -5.123473167419434 ], [ -81.160697937011719, -5.123195171356201 ], [ -81.160972595214844, -5.123195171356201 ], [ -81.160972595214844, -5.122639179229736 ], [ -81.161247253417969, -5.122639179229736 ], [ -81.161247253417969, -5.121525764465332 ], [ -81.160972595214844, -5.121525764465332 ], [ -81.160972595214844, -5.119582176208439 ], [ -81.160697937011719, -5.119582176208439 ], [ -81.160697937011719, -5.115416049957275 ], [ -81.160972595214844, -5.115416049957275 ], [ -81.160972595214844, -5.11180591583252 ], [ -81.161247253417969, -5.11180591583252 ], [ -81.161247253417969, -5.11069393157959 ], [ -81.161529541015625, -5.11069393157959 ], [ -81.161529541015625, -5.109583854675236 ], [ -81.161804199218636, -5.109583854675236 ], [ -81.161804199218636, -5.108471870422306 ], [ -81.162086486816293, -5.108471870422306 ], [ -81.162086486816293, -5.107361793517953 ], [ -81.162361145019474, -5.107361793517953 ], [ -81.162361145019474, -5.10624885559082 ], [ -81.162635803222599, -5.10624885559082 ], [ -81.162635803222599, -5.105138778686523 ], [ -81.162918090820256, -5.105138778686523 ], [ -81.162918090820256, -5.104026794433594 ], [ -81.163192749023438, -5.104026794433594 ], [ -81.163192749023438, -5.102917194366455 ], [ -81.163475036621094, -5.102917194366455 ], [ -81.163475036621094, -5.10236120223999 ], [ -81.163749694824219, -5.10236120223999 ], [ -81.163749694824219, -5.101805210113525 ], [ -81.164024353027344, -5.101805210113525 ], [ -81.164024353027344, -5.101249217987061 ], [ -81.164306640625, -5.101249217987061 ], [ -81.164306640625, -5.100693225860596 ], [ -81.164581298828125, -5.100693225860596 ], [ -81.164581298828125, -5.099859237670898 ], [ -81.164863586425781, -5.099861145019531 ], [ -81.164863586425781, -5.099305152893066 ], [ -81.165138244628793, -5.099305152893066 ], [ -81.165138244628793, -5.098749160766602 ], [ -81.165412902831974, -5.098751068115178 ], [ -81.165412902831974, -5.098195075988713 ], [ -81.165695190429631, -5.098195075988713 ], [ -81.165695190429631, -5.097639083862248 ], [ -81.165969848632756, -5.097639083862248 ], [ -81.165969848632756, -5.097361087799015 ], [ -81.166252136230412, -5.097361087799015 ], [ -81.166252136230412, -5.097083091735783 ], [ -81.16680908203125, -5.097083091735783 ], [ -81.16680908203125, -5.096805095672551 ], [ -81.167640686035156, -5.096805095672551 ], [ -81.167640686035156, -5.096527099609318 ], [ -81.1673583984375, -5.096527099609318 ], [ -81.1673583984375, -5.095139026641789 ], [ -81.167083740234375, -5.095139026641789 ], [ -81.167083740234375, -5.093472957611084 ], [ -81.1673583984375, -5.093472957611084 ], [ -81.1673583984375, -5.092294216155949 ], [ -81.1673583984375, -5.092082023620605 ], [ -81.167472839355469, -5.092082023620605 ], [ -81.167640686035156, -5.092082023620605 ], [ -81.167640686035156, -5.091806888580322 ], [ -81.167915344238281, -5.091806888580322 ], [ -81.167915344238281, -5.091527938842717 ], [ -81.168472290039006, -5.091527938842717 ], [ -81.168472290039006, -5.091806888580322 ], [ -81.169029235839787, -5.091806888580322 ], [ -81.169029235839787, -5.091527938842717 ], [ -81.169586181640568, -5.091527938842717 ], [ -81.169586181640568, -5.091249942779484 ], [ -81.16986083984375, -5.091249942779484 ], [ -81.16986083984375, -5.090971946716252 ], [ -81.170135498046875, -5.090971946716252 ], [ -81.170135498046875, -5.090415954589844 ], [ -81.170417785644531, -5.090415954589844 ], [ -81.170417785644531, -5.090137958526611 ], [ -81.171524047851506, -5.090137958526611 ], [ -81.171524047851506, -5.089583873748722 ], [ -81.171806335449162, -5.089583873748722 ], [ -81.171806335449162, -5.08930587768549 ], [ -81.172080993652287, -5.08930587768549 ], [ -81.172080993652287, -5.088749885559025 ], [ -81.172363281249943, -5.088749885559025 ], [ -81.172363281249943, -5.088471889495793 ], [ -81.172080993652287, -5.088471889495793 ], [ -81.172080993652287, -5.08819389343256 ], [ -81.171524047851506, -5.08819389343256 ], [ -81.171524047851506, -5.087915897369328 ], [ -81.171249389648438, -5.087915897369328 ], [ -81.171249389648438, -5.087637901306096 ], [ -81.170974731445312, -5.087637901306096 ], [ -81.170974731445312, -5.087361812591553 ], [ -81.170417785644531, -5.087361812591553 ], [ -81.170417785644531, -5.08708381652832 ], [ -81.169586181640568, -5.08708381652832 ], [ -81.169586181640568, -5.086805820465088 ], [ -81.169303894042912, -5.086805820465088 ], [ -81.169303894042912, -5.086249828338509 ], [ -81.169586181640568, -5.086249828338509 ], [ -81.169586181640568, -5.085971832275334 ], [ -81.170135498046875, -5.085971832275334 ], [ -81.170135498046875, -5.085693836212101 ], [ -81.16986083984375, -5.085693836212101 ], [ -81.16986083984375, -5.084862232208252 ], [ -81.169586181640568, -5.084862232208252 ], [ -81.169586181640568, -5.082640171051025 ], [ -81.169303894042912, -5.082640171051025 ], [ -81.169303894042912, -5.081250190734863 ], [ -81.169586181640568, -5.081250190734863 ], [ -81.169586181640568, -5.080418109893799 ], [ -81.169029235839787, -5.080418109893799 ], [ -81.169029235839787, -5.080140113830566 ], [ -81.168472290039006, -5.080140113830566 ], [ -81.168472290039006, -5.079862117767334 ], [ -81.167915344238281, -5.079862117767334 ], [ -81.167915344238281, -5.079584121704102 ], [ -81.1673583984375, -5.079584121704102 ], [ -81.1673583984375, -5.079862117767334 ], [ -81.16680908203125, -5.079862117767334 ], [ -81.16680908203125, -5.080140113830566 ], [ -81.166526794433594, -5.080140113830566 ], [ -81.166526794433594, -5.079862117767334 ], [ -81.166252136230412, -5.079862117767334 ], [ -81.166252136230412, -5.079584121704102 ], [ -81.165969848632756, -5.079584121704102 ], [ -81.165969848632756, -5.079305171966496 ], [ -81.165695190429631, -5.079305171966496 ], [ -81.165695190429631, -5.079027175903263 ], [ -81.165412902831974, -5.079027175903263 ], [ -81.165412902831974, -5.078749179840088 ], [ -81.165138244628793, -5.078749179840088 ], [ -81.165138244628793, -5.078196048736515 ], [ -81.164863586425781, -5.078196048736515 ], [ -81.164863586425781, -5.07791709899891 ], [ -81.164581298828125, -5.07791709899891 ], [ -81.164581298828125, -5.077639102935734 ], [ -81.164306640625, -5.077639102935734 ], [ -81.164306640625, -5.077361106872502 ], [ -81.164024353027344, -5.077361106872502 ], [ -81.164024353027344, -5.076805114746037 ], [ -81.163749694824219, -5.076805114746037 ], [ -81.163749694824219, -5.076249122619572 ], [ -81.163475036621094, -5.076249122619572 ], [ -81.163475036621094, -5.07597112655634 ], [ -81.163192749023438, -5.07597112655634 ], [ -81.163192749023438, -5.075695037841797 ], [ -81.162918090820256, -5.075695037841797 ], [ -81.162918090820256, -5.075139045715332 ], [ -81.162635803222599, -5.075139045715332 ], [ -81.162635803222599, -5.0748610496521 ], [ -81.162918090820256, -5.0748610496521 ], [ -81.162918090820256, -5.074583053588867 ], [ -81.162635803222599, -5.074583053588867 ], [ -81.162635803222599, -5.074305057525521 ], [ -81.162361145019474, -5.074305057525521 ], [ -81.162361145019474, -5.074027061462346 ], [ -81.161804199218636, -5.074027061462346 ], [ -81.161804199218636, -5.073749065399113 ], [ -81.161529541015625, -5.073749065399113 ], [ -81.161529541015625, -5.073471069335881 ], [ -81.161247253417969, -5.073471069335881 ], [ -81.161247253417969, -5.073194980621338 ], [ -81.160972595214844, -5.073194980621338 ], [ -81.160972595214844, -5.072360992431641 ], [ -81.161247253417969, -5.072360992431641 ], [ -81.161247253417969, -5.071527004241943 ], [ -81.160415649414062, -5.071527004241943 ], [ -81.160415649414062, -5.071805000305176 ], [ -81.160140991210938, -5.071805000305176 ], [ -81.160140991210938, -5.072274208068848 ], [ -81.160140991210938, -5.072638988494873 ], [ -81.159858703613224, -5.072638988494873 ], [ -81.159858703613224, -5.072916984558105 ], [ -81.159027099609318, -5.072916984558105 ], [ -81.159027099609318, -5.073194980621338 ], [ -81.158752441406136, -5.073194980621338 ], [ -81.158752441406136, -5.073471069335881 ], [ -81.158470153808594, -5.073471069335881 ], [ -81.158470153808594, -5.073749065399113 ], [ -81.157974243164006, -5.073749065399113 ], [ -81.157913208007812, -5.074027061462346 ], [ -81.157638549804688, -5.074027061462346 ], [ -81.157638549804688, -5.074305057525521 ], [ -81.157081604003906, -5.074305057525521 ], [ -81.157081604003906, -5.074583053588867 ], [ -81.156478881835938, -5.074583053588867 ], [ -81.155975341796818, -5.074583053588867 ], [ -81.155975341796818, -5.0748610496521 ], [ -81.155876159667912, -5.0748610496521 ], [ -81.155418395996094, -5.0748610496521 ], [ -81.155418395996094, -5.075072765350285 ], [ -81.1552734375, -5.075090885162354 ], [ -81.154861450195312, -5.075139045715332 ], [ -81.154861450195312, -5.075494766235352 ], [ -81.154861450195312, -5.075695037841797 ], [ -81.154724121093693, -5.075695037841797 ], [ -81.154586791992188, -5.075695037841797 ], [ -81.154586791992188, -5.075904846191406 ], [ -81.154586791992188, -5.076249122619572 ], [ -81.154350280761662, -5.076249122619572 ], [ -81.154304504394531, -5.076805114746037 ], [ -81.154029846191406, -5.076805114746037 ], [ -81.154029846191406, -5.077083110809269 ], [ -81.15374755859375, -5.077083110809269 ], [ -81.15374755859375, -5.076805114746037 ], [ -81.153472900390568, -5.076805114746037 ], [ -81.153472900390568, -5.076527118682804 ], [ -81.153198242187443, -5.076527118682804 ], [ -81.153198242187443, -5.076805114746037 ], [ -81.152359008788949, -5.076805114746037 ], [ -81.152359008788949, -5.076949119567871 ], [ -81.152359008788949, -5.077083110809269 ], [ -81.151802062988281, -5.077083110809269 ], [ -81.151802062988281, -5.077361106872502 ], [ -81.150970458984375, -5.077361106872502 ], [ -81.150970458984375, -5.077639102935734 ], [ -81.150413513183594, -5.077639102935734 ], [ -81.150413513183594, -5.07791709899891 ], [ -81.150138854980412, -5.07791709899891 ], [ -81.150138854980412, -5.078196048736515 ], [ -81.149864196777287, -5.078196048736515 ], [ -81.149864196777287, -5.078471183776855 ], [ -81.149581909179631, -5.078471183776855 ], [ -81.149581909179631, -5.078749179840088 ], [ -81.149307250976449, -5.078749179840088 ], [ -81.149307250976449, -5.079027175903263 ], [ -81.149024963378793, -5.079027175903263 ], [ -81.149024963378793, -5.079305171966496 ], [ -81.147918701171875, -5.079305171966496 ], [ -81.147918701171875, -5.079027175903263 ], [ -81.147361755371094, -5.079027175903263 ], [ -81.147361755371094, -5.078749179840088 ], [ -81.146530151367131, -5.078749179840088 ], [ -81.146530151367131, -5.078471183776855 ], [ -81.145973205566293, -5.078471183776855 ], [ -81.145973205566293, -5.078196048736515 ], [ -81.145416259765625, -5.078196048736515 ], [ -81.145416259765625, -5.07791709899891 ], [ -81.144584655761719, -5.07791709899891 ], [ -81.144584655761719, -5.077639102935734 ], [ -81.144027709960881, -5.077639102935734 ], [ -81.144027709960881, -5.077361106872502 ], [ -81.143196105956974, -5.077361106872502 ], [ -81.143196105956974, -5.077083110809269 ], [ -81.142913818359318, -5.077083110809269 ], [ -81.142913818359318, -5.076805114746037 ], [ -81.141807556152344, -5.076805114746037 ], [ -81.141807556152344, -5.076249122619572 ], [ -81.140975952148381, -5.076249122619572 ], [ -81.140975952148381, -5.07597112655634 ], [ -81.140419006347599, -5.07597112655634 ], [ -81.140419006347599, -5.075695037841797 ], [ -81.139976501464844, -5.075695037841797 ], [ -81.139862060546818, -5.075695037841797 ], [ -81.139862060546818, -5.075417041778564 ], [ -81.139595031738281, -5.075417041778564 ], [ -81.139579772949105, -5.075139045715332 ], [ -81.13922119140625, -5.075139045715332 ], [ -81.139030456542969, -5.075139045715332 ], [ -81.139030456542969, -5.074995994567871 ], [ -81.139030456542969, -5.0748610496521 ], [ -81.138847351074219, -5.0748610496521 ], [ -81.138473510742188, -5.0748610496521 ], [ -81.138473510742188, -5.074583053588867 ], [ -81.138191223144531, -5.074583053588867 ], [ -81.138191223144531, -5.074394226074219 ], [ -81.138191223144531, -5.074027061462346 ], [ -81.137641906738224, -5.074027061462346 ], [ -81.137641906738224, -5.073749065399113 ], [ -81.137084960937443, -5.073749065399113 ], [ -81.137084960937443, -5.073471069335881 ], [ -81.136528015136605, -5.073471069335881 ], [ -81.136528015136605, -5.073194980621338 ], [ -81.136253356933594, -5.073194980621338 ], [ -81.136253356933594, -5.072638988494873 ], [ -81.135696411132812, -5.072638988494873 ], [ -81.135696411132812, -5.072360992431641 ], [ -81.135414123535156, -5.072360992431641 ], [ -81.135414123535156, -5.071805000305176 ], [ -81.135139465332031, -5.071805000305176 ], [ -81.135139465332031, -5.071527004241943 ], [ -81.134864807128906, -5.071528911590519 ], [ -81.134864807128906, -5.070972919464111 ], [ -81.13458251953125, -5.070972919464111 ], [ -81.13458251953125, -5.070416927337646 ], [ -81.134307861328068, -5.070416927337646 ], [ -81.134307861328068, -5.069860935211182 ], [ -81.134025573730412, -5.069860935211182 ], [ -81.134025573730412, -5.069582939147949 ], [ -81.133750915527287, -5.069582939147949 ], [ -81.133750915527287, -5.06902885437006 ], [ -81.133468627929631, -5.06902885437006 ], [ -81.133468627929631, -5.068750858306828 ], [ -81.132362365722656, -5.068750858306828 ], [ -81.132362365722656, -5.06902885437006 ], [ -81.131805419921875, -5.06902885437006 ], [ -81.131805419921875, -5.069304943084717 ], [ -81.130973815917912, -5.069304943084717 ], [ -81.130973815917912, -5.069582939147949 ], [ -81.130416870117131, -5.069582939147949 ], [ -81.130416870117131, -5.069860935211182 ], [ -81.129859924316406, -5.069860935211182 ], [ -81.129859924316406, -5.069582939147949 ], [ -81.129585266113281, -5.069582939147949 ], [ -81.129585266113281, -5.069860935211182 ], [ -81.128753662109375, -5.069860935211182 ], [ -81.128753662109375, -5.070138931274414 ], [ -81.128501892089787, -5.070138931274414 ], [ -81.127357482910099, -5.070138931274414 ], [ -81.127357482910099, -5.070416927337646 ], [ -81.127082824706974, -5.070416927337646 ], [ -81.127082824706974, -5.070694923400879 ], [ -81.126808166503906, -5.070694923400879 ], [ -81.126808166503906, -5.070866107940674 ], [ -81.126808166503906, -5.070972919464111 ], [ -81.12652587890625, -5.070972919464111 ], [ -81.12652587890625, -5.071250915527344 ], [ -81.126213073730412, -5.071250915527344 ], [ -81.125968933105469, -5.071249008178711 ], [ -81.125968933105469, -5.071527004241943 ], [ -81.125694274902344, -5.071527004241943 ], [ -81.125694274902344, -5.071805000305176 ], [ -81.125419616699219, -5.071805000305176 ], [ -81.125419616699219, -5.072082996368408 ], [ -81.124862670898381, -5.072082996368408 ], [ -81.124862670898381, -5.072360992431641 ], [ -81.124305725097599, -5.072360992431641 ], [ -81.124305725097599, -5.072638988494873 ], [ -81.124031066894474, -5.072638988494873 ], [ -81.124031066894474, -5.072360992431641 ], [ -81.123748779296761, -5.072360992431641 ], [ -81.123748779296761, -5.072638988494873 ], [ -81.12347412109375, -5.072638988494873 ], [ -81.12347412109375, -5.072916984558105 ], [ -81.123191833496094, -5.072916984558105 ], [ -81.123191833496094, -5.073194980621338 ], [ -81.122917175292969, -5.073194980621338 ], [ -81.122917175292969, -5.073471069335881 ], [ -81.122642517089844, -5.073471069335881 ], [ -81.122642517089844, -5.073749065399113 ], [ -81.122360229492188, -5.073749065399113 ], [ -81.122360229492188, -5.074027061462346 ], [ -81.122085571289062, -5.074027061462346 ], [ -81.122085571289062, -5.074305057525521 ], [ -81.121803283691406, -5.074305057525521 ], [ -81.121803283691406, -5.074583053588867 ], [ -81.121528625488224, -5.074583053588867 ], [ -81.121528625488224, -5.0748610496521 ], [ -81.121246337890568, -5.0748610496521 ], [ -81.121246337890568, -5.075417041778564 ], [ -81.120971679687443, -5.075417041778564 ], [ -81.120971679687443, -5.075695037841797 ], [ -81.120697021484261, -5.075695037841797 ], [ -81.120697021484261, -5.07597112655634 ], [ -81.120414733886605, -5.07597112655634 ], [ -81.120414733886605, -5.076805114746037 ], [ -81.120140075683594, -5.076805114746037 ], [ -81.120140075683594, -5.077361106872502 ], [ -81.119857788085938, -5.077361106872502 ], [ -81.119857788085938, -5.077639102935734 ], [ -81.119308471679688, -5.077639102935734 ], [ -81.119308471679688, -5.078196048736515 ], [ -81.119026184082031, -5.078196048736515 ], [ -81.119026184082031, -5.078471183776855 ], [ -81.118751525878906, -5.078471183776855 ], [ -81.118751525878906, -5.078749179840088 ], [ -81.118469238281193, -5.078749179840088 ], [ -81.118469238281193, -5.079027175903263 ], [ -81.118194580078068, -5.079027175903263 ], [ -81.118194580078068, -5.079305171966496 ], [ -81.117637634277287, -5.079305171966496 ], [ -81.117637634277287, -5.079584121704102 ], [ -81.117080688476562, -5.079584121704102 ], [ -81.117080688476562, -5.079862117767334 ], [ -81.116806030273438, -5.079862117767334 ], [ -81.116806030273438, -5.080418109893799 ], [ -81.116531372070312, -5.080418109893799 ], [ -81.116531372070312, -5.080972194671631 ], [ -81.116249084472656, -5.080972194671631 ], [ -81.116249084472656, -5.081528186798096 ], [ -81.115974426269531, -5.081528186798096 ], [ -81.115974426269531, -5.082084178924561 ], [ -81.115692138671875, -5.082084178924561 ], [ -81.115692138671875, -5.082452774047852 ], [ -81.115692138671875, -5.082640171051025 ], [ -81.115417480468693, -5.082640171051025 ], [ -81.115417480468693, -5.083193778991699 ], [ -81.115135192871037, -5.083193778991699 ], [ -81.115135192871037, -5.083471775054932 ], [ -81.114860534667912, -5.083471775054932 ], [ -81.114860534667912, -5.083749771118164 ], [ -81.114585876464787, -5.083749771118164 ], [ -81.114585876464787, -5.084027767181396 ], [ -81.113746643066406, -5.084027767181396 ], [ -81.113746643066406, -5.084305763244629 ], [ -81.113197326660156, -5.084305763244629 ], [ -81.113197326660156, -5.084027767181396 ], [ -81.1129150390625, -5.084027767181396 ], [ -81.1129150390625, -5.084305763244629 ], [ -81.112358093261719, -5.084305763244629 ], [ -81.112358093261719, -5.08458423614502 ], [ -81.112083435058537, -5.08458423614502 ], [ -81.112083435058537, -5.084305763244629 ], [ -81.110969543456918, -5.084305763244629 ], [ -81.110969543456918, -5.08458423614502 ], [ -81.110694885253906, -5.08458423614502 ], [ -81.110694885253906, -5.084862232208252 ], [ -81.108192443847599, -5.084862232208252 ], [ -81.108192443847599, -5.08458423614502 ], [ -81.107086181640625, -5.08458423614502 ], [ -81.107086181640625, -5.084305763244629 ], [ -81.105697631835881, -5.084305763244629 ], [ -81.105697631835881, -5.084027767181396 ], [ -81.10516357421875, -5.084027767181396 ], [ -81.104583740234261, -5.084027767181396 ], [ -81.104583740234261, -5.083749771118164 ], [ -81.104026794433594, -5.083749771118164 ], [ -81.104026794433594, -5.083471775054932 ], [ -81.103469848632812, -5.083471775054932 ], [ -81.103469848632812, -5.083193778991699 ], [ -81.103195190429688, -5.083193778991699 ], [ -81.103195190429688, -5.082915782928467 ], [ -81.102912902832031, -5.082915782928467 ], [ -81.102912902832031, -5.082640171051025 ], [ -81.102790832519531, -5.082640171051025 ], [ -81.102638244628849, -5.082640171051025 ], [ -81.102638244628849, -5.082540035247803 ], [ -81.102638244628849, -5.082362174987793 ], [ -81.102363586425724, -5.082362174987793 ], [ -81.102081298828068, -5.082362174987793 ], [ -81.102081298828068, -5.082174777984619 ], [ -81.102081298828068, -5.082084178924561 ], [ -81.101943969726562, -5.082084178924561 ], [ -81.101806640624943, -5.082084178924561 ], [ -81.101806640624943, -5.081806182861328 ], [ -81.101516723632756, -5.081806182861328 ], [ -81.100440979003906, -5.081806182861328 ], [ -81.099029541015568, -5.081806182861328 ], [ -81.099029541015568, -5.082084178924561 ], [ -81.097915649414062, -5.082084178924561 ], [ -81.097915649414062, -5.082362174987793 ], [ -81.097084045410156, -5.082362174987793 ], [ -81.097084045410156, -5.082084178924561 ], [ -81.09676361083973, -5.082084178924561 ], [ -81.096527099609375, -5.082084178924561 ], [ -81.096527099609375, -5.081806182861328 ], [ -81.095695495605412, -5.081806182861328 ], [ -81.095695495605412, -5.082084178924561 ], [ -81.094947814941293, -5.082084178924561 ], [ -81.094581604003906, -5.082084178924561 ], [ -81.094581604003906, -5.082362174987793 ], [ -81.094306945800781, -5.082362174987793 ], [ -81.094306945800781, -5.082084178924561 ], [ -81.093650817871094, -5.082084178924561 ], [ -81.092918395996037, -5.082084178924561 ], [ -81.092918395996037, -5.081806182861328 ], [ -81.092361450195256, -5.081806182861328 ], [ -81.092361450195256, -5.082084178924561 ], [ -81.09124755859375, -5.082084178924561 ], [ -81.09124755859375, -5.081955909729004 ], [ -81.09124755859375, -5.081806182861328 ], [ -81.090141296386719, -5.081806182861328 ], [ -81.090141296386719, -5.081528186798096 ], [ -81.089859008789006, -5.081528186798096 ], [ -81.089859008789006, -5.081250190734863 ], [ -81.089584350585881, -5.081250190734863 ], [ -81.089584350585881, -5.080972194671631 ], [ -81.089302062988224, -5.080972194671631 ], [ -81.089302062988224, -5.080696105956974 ], [ -81.089027404785099, -5.080696105956974 ], [ -81.089027404785099, -5.080418109893799 ], [ -81.088470458984375, -5.080418109893799 ], [ -81.088470458984375, -5.080140113830566 ], [ -81.086250305175724, -5.080140113830566 ], [ -81.086250305175724, -5.079862117767334 ], [ -81.085975646972599, -5.079862117767334 ], [ -81.085975646972599, -5.079305171966496 ], [ -81.085693359374943, -5.079305171966496 ], [ -81.085693359374943, -5.079027175903263 ], [ -81.085418701171875, -5.079027175903263 ], [ -81.085418701171875, -5.078471183776855 ], [ -81.085136413574219, -5.078471183776855 ], [ -81.085136413574219, -5.078196048736515 ], [ -81.084861755371094, -5.078196048736515 ], [ -81.084861755371094, -5.076805114746037 ], [ -81.084304809570312, -5.076805114746037 ], [ -81.084304809570312, -5.076527118682804 ], [ -81.084030151367188, -5.076527118682804 ], [ -81.084030151367188, -5.076249122619572 ], [ -81.083473205566349, -5.076249122619572 ], [ -81.083473205566349, -5.07597112655634 ], [ -81.082916259765568, -5.07597112655634 ], [ -81.082916259765568, -5.075695037841797 ], [ -81.08235931396473, -5.075695037841797 ], [ -81.08235931396473, -5.075417041778564 ], [ -81.082084655761719, -5.075417041778564 ], [ -81.082084655761719, -5.074583053588867 ], [ -81.081802368164062, -5.074583053588867 ], [ -81.081802368164062, -5.073471069335881 ], [ -81.081527709960938, -5.073471069335881 ], [ -81.081527709960938, -5.072916984558105 ], [ -81.081253051757812, -5.072916984558105 ], [ -81.081253051757812, -5.072638988494873 ], [ -81.080970764160156, -5.072638988494873 ], [ -81.080970764160156, -5.072082996368408 ], [ -81.080696105957031, -5.072082996368408 ], [ -81.080696105957031, -5.071527004241943 ], [ -81.080413818359375, -5.071527004241943 ], [ -81.080413818359375, -5.071249008178711 ], [ -81.079864501953068, -5.071250915527344 ], [ -81.079864501953068, -5.070972919464111 ], [ -81.078987121581974, -5.070972919464111 ], [ -81.078750610351562, -5.070972919464111 ], [ -81.078750610351562, -5.071250915527344 ], [ -81.077507019042969, -5.071250915527344 ], [ -81.076530456542912, -5.071250915527344 ], [ -81.076530456542912, -5.070694923400879 ], [ -81.075691223144531, -5.070694923400879 ], [ -81.075691223144531, -5.070138931274414 ], [ -81.075141906738281, -5.070138931274414 ], [ -81.075141906738281, -5.068750858306828 ], [ -81.074859619140625, -5.068750858306828 ], [ -81.074859619140625, -5.068472862243596 ], [ -81.0745849609375, -5.068472862243596 ], [ -81.0745849609375, -5.067638874053955 ], [ -81.074028015136662, -5.067638874053955 ], [ -81.074028015136662, -5.067916870117131 ], [ -81.073471069335881, -5.067916870117131 ], [ -81.073471069335881, -5.067638874053955 ], [ -81.072914123535099, -5.067638874053955 ], [ -81.072914123535099, -5.067081928253117 ], [ -81.072639465332031, -5.067081928253117 ], [ -81.072639465332031, -5.066250801086369 ], [ -81.072364807128906, -5.066250801086369 ], [ -81.072364807128906, -5.065693855285645 ], [ -81.07208251953125, -5.065693855285645 ], [ -81.07208251953125, -5.06485986709589 ], [ -81.071525573730469, -5.06485986709589 ], [ -81.071525573730469, -5.06430721282959 ], [ -81.071250915527344, -5.06430721282959 ], [ -81.071250915527344, -5.06374979019165 ], [ -81.070693969726506, -5.06374979019165 ], [ -81.070693969726506, -5.063193798065186 ], [ -81.070137023925724, -5.063193798065186 ], [ -81.070137023925724, -5.062637805938721 ], [ -81.069862365722599, -5.062637805938721 ], [ -81.069862365722599, -5.060972213745117 ], [ -81.069580078124886, -5.060972213745117 ], [ -81.069580078124886, -5.060416221618652 ], [ -81.069305419921875, -5.060416221618652 ], [ -81.069305419921875, -5.059304237365723 ], [ -81.06903076171875, -5.059304237365723 ], [ -81.06903076171875, -5.058472156524658 ], [ -81.068748474121094, -5.058472156524658 ], [ -81.068748474121094, -5.057916164398193 ], [ -81.068473815917969, -5.057916164398193 ], [ -81.068473815917969, -5.057360172271729 ], [ -81.068191528320312, -5.057362079620304 ], [ -81.068191528320312, -5.05680608749384 ], [ -81.067916870117188, -5.05680608749384 ], [ -81.067916870117188, -5.056250095367375 ], [ -81.067642211914006, -5.056250095367375 ], [ -81.067642211914006, -5.055694103240967 ], [ -81.067359924316349, -5.055694103240967 ], [ -81.067359924316349, -5.055138111114502 ], [ -81.067085266113224, -5.055140018463135 ], [ -81.067085266113224, -5.054584026336613 ], [ -81.066802978515568, -5.054584026336613 ], [ -81.066802978515568, -5.054028034210148 ], [ -81.066528320312386, -5.054028034210148 ], [ -81.066528320312386, -5.053471088409424 ], [ -81.066253662109375, -5.053471088409424 ], [ -81.066253662109375, -5.052917957305908 ], [ -81.065971374511719, -5.052917957305908 ], [ -81.065971374511719, -5.052639961242676 ], [ -81.065696716308594, -5.052639961242676 ], [ -81.065696716308594, -5.052361965179443 ], [ -81.065139770507812, -5.052361965179443 ], [ -81.065139770507812, -5.052083015441895 ], [ -81.064872741699162, -5.052083015441895 ], [ -81.064582824707031, -5.052083015441895 ], [ -81.064582824707031, -5.051805019378662 ], [ -81.064430236816293, -5.051805019378662 ], [ -81.063751220703068, -5.051805019378662 ], [ -81.063751220703068, -5.05152702331543 ], [ -81.06319427490223, -5.05152702331543 ], [ -81.06319427490223, -5.051249027252197 ], [ -81.062919616699219, -5.051249027252197 ], [ -81.062919616699219, -5.051008224487248 ], [ -81.062637329101562, -5.050971031188965 ], [ -81.062637329101562, -5.050857067108097 ], [ -81.062637329101562, -5.050695896148682 ], [ -81.062362670898438, -5.050682067871037 ], [ -81.062362670898438, -5.049582958221436 ], [ -81.062080383300781, -5.049582958221436 ], [ -81.062080383300781, -5.048472881317082 ], [ -81.061805725097656, -5.048472881317082 ], [ -81.061805725097656, -5.047360897064152 ], [ -81.061531066894531, -5.047360897064152 ], [ -81.061531066894531, -5.045138835906926 ], [ -81.061248779296818, -5.045138835906926 ], [ -81.061248779296818, -5.042360782623291 ], [ -81.060974121093693, -5.042360782623291 ], [ -81.060974121093693, -5.039307117462158 ], [ -81.060691833496037, -5.039307117462158 ], [ -81.060691833496037, -5.036528110504094 ], [ -81.060417175292912, -5.036528110504094 ], [ -81.060417175292912, -5.034028053283691 ], [ -81.060691833496037, -5.034028053283691 ], [ -81.060691833496037, -5.03236007690424 ], [ -81.060974121093693, -5.03236198425293 ], [ -81.060974121093693, -5.030416011810303 ], [ -81.061248779296818, -5.030416011810303 ], [ -81.061248779296818, -5.028749942779541 ], [ -81.061531066894531, -5.028749942779541 ], [ -81.061531066894531, -5.027083873748779 ], [ -81.061805725097656, -5.027083873748779 ], [ -81.061805725097656, -5.025692939758244 ], [ -81.062080383300781, -5.025692939758244 ], [ -81.062080383300781, -5.024026870727482 ], [ -81.062362670898438, -5.024026870727482 ], [ -81.062362670898438, -5.022360801696777 ], [ -81.062637329101562, -5.022360801696777 ], [ -81.062637329101562, -5.021248817443848 ], [ -81.062919616699219, -5.021248817443848 ], [ -81.062919616699219, -5.020417213439941 ], [ -81.06319427490223, -5.020417213439941 ], [ -81.06319427490223, -5.019305229187012 ], [ -81.063468933105412, -5.019305229187012 ], [ -81.063468933105412, -5.018470764160156 ], [ -81.063751220703068, -5.018473148345947 ], [ -81.063751220703068, -5.01763916015625 ], [ -81.064025878906193, -5.01763916015625 ], [ -81.064025878906193, -5.01652717590332 ], [ -81.064308166503849, -5.01652717590332 ], [ -81.064308166503849, -5.015695095062199 ], [ -81.064582824707031, -5.015695095062199 ], [ -81.064582824707031, -5.014861106872559 ], [ -81.064857482910156, -5.014861106872559 ], [ -81.064857482910156, -5.013751029968205 ], [ -81.065139770507812, -5.013751029968205 ], [ -81.065139770507812, -5.012917041778508 ], [ -81.065414428710938, -5.012917041778508 ], [ -81.065414428710938, -5.0120849609375 ], [ -81.065696716308594, -5.0120849609375 ], [ -81.065696716308594, -5.010972023010254 ], [ -81.065971374511719, -5.010972023010254 ], [ -81.065971374511719, -5.010138034820557 ], [ -81.066253662109375, -5.010138034820557 ], [ -81.066253662109375, -5.009305953979492 ], [ -81.066528320312386, -5.009305953979492 ], [ -81.066528320312386, -5.008471965789795 ], [ -81.066802978515568, -5.008471965789795 ], [ -81.066802978515568, -5.00791597366333 ], [ -81.067085266113224, -5.00791597366333 ], [ -81.067085266113224, -5.007083892822209 ], [ -81.067359924316349, -5.007083892822209 ], [ -81.067359924316349, -5.006249904632512 ], [ -81.067642211914006, -5.006249904632512 ], [ -81.067642211914006, -5.005693912506104 ], [ -81.067916870117188, -5.005693912506104 ], [ -81.067916870117188, -5.004859924316406 ], [ -81.068191528320312, -5.004859924316406 ], [ -81.068191528320312, -5.004027843475285 ], [ -81.068473815917969, -5.004027843475285 ], [ -81.068473815917969, -5.003749847412053 ], [ -81.068748474121094, -5.003749847412053 ], [ -81.068748474121094, -5.003193855285588 ], [ -81.06903076171875, -5.003193855285588 ], [ -81.06903076171875, -5.002639770507812 ], [ -81.069305419921875, -5.002639770507812 ], [ -81.069305419921875, -5.000971794128361 ], [ -81.069580078124886, -5.000971794128361 ], [ -81.069580078124886, -5.000418186187744 ], [ -81.070419311523381, -5.000418186187744 ], [ -81.070419311523381, -5.000140190124512 ], [ -81.070693969726506, -5.000140190124512 ], [ -81.070693969726506, -4.999862194061279 ], [ -81.070693969726506, -4.999306201934814 ], [ -81.070968627929688, -4.999306201934814 ], [ -81.070968627929688, -4.99819278717041 ], [ -81.071250915527344, -4.99819278717041 ], [ -81.071250915527344, -4.997640132904053 ], [ -81.071525573730469, -4.997640132904053 ], [ -81.071525573730469, -4.996805191040039 ], [ -81.071807861328125, -4.996805191040039 ], [ -81.071807861328125, -4.995417118072453 ], [ -81.07208251953125, -4.995417118072453 ], [ -81.07208251953125, -4.99458122253418 ], [ -81.072364807128906, -4.99458122253418 ], [ -81.072364807128906, -4.993749141693115 ], [ -81.072639465332031, -4.993749141693115 ], [ -81.072639465332031, -4.99319505691517 ], [ -81.072914123535099, -4.99319505691517 ], [ -81.072914123535099, -4.992917060851994 ], [ -81.073196411132756, -4.992917060851994 ], [ -81.073196411132756, -4.991934776306152 ], [ -81.073196411132756, -4.991805076599064 ], [ -81.073471069335881, -4.991805076599064 ], [ -81.073471069335881, -4.991439819335881 ], [ -81.073471069335881, -4.990971088409367 ], [ -81.073753356933537, -4.990972995758057 ], [ -81.073753356933537, -4.990417003631592 ], [ -81.074028015136662, -4.990417003631592 ], [ -81.074028015136662, -4.989583015441781 ], [ -81.074302673339844, -4.989583015441781 ], [ -81.074302673339844, -4.989027023315373 ], [ -81.0745849609375, -4.989027023315373 ], [ -81.0745849609375, -4.988471031188908 ], [ -81.074859619140625, -4.988472938537598 ], [ -81.074859619140625, -4.988194942474365 ], [ -81.075141906738281, -4.988194942474365 ], [ -81.075141906738281, -4.987082958221436 ], [ -81.075416564941406, -4.987082958221436 ], [ -81.075416564941406, -4.986250877380371 ], [ -81.075691223144531, -4.986250877380371 ], [ -81.075691223144531, -4.985694885253906 ], [ -81.075973510742074, -4.985694885253906 ], [ -81.075973510742074, -4.985137939453068 ], [ -81.076248168945256, -4.985137939453068 ], [ -81.076248168945256, -4.98458194732666 ], [ -81.076530456542912, -4.98458194732666 ], [ -81.076530456542912, -4.984028816223088 ], [ -81.076805114746037, -4.984028816223088 ], [ -81.076805114746037, -4.983471870422306 ], [ -81.077079772949162, -4.983471870422306 ], [ -81.077079772949162, -4.982915878295842 ], [ -81.077362060546875, -4.982915878295842 ], [ -81.077362060546875, -4.982637882232609 ], [ -81.07763671875, -4.982637882232609 ], [ -81.07763671875, -4.982083797454834 ], [ -81.077919006347656, -4.982083797454834 ], [ -81.077919006347656, -4.981527805328369 ], [ -81.078193664550781, -4.981527805328369 ], [ -81.078193664550781, -4.980971813201904 ], [ -81.078475952148438, -4.980971813201904 ], [ -81.078475952148438, -4.980693817138672 ], [ -81.078750610351562, -4.980693817138672 ], [ -81.078750610351562, -4.98013782501215 ], [ -81.079025268554574, -4.98013782501215 ], [ -81.079025268554574, -4.979584217071533 ], [ -81.07930755615223, -4.979584217071533 ], [ -81.07930755615223, -4.979028224945068 ], [ -81.079582214355412, -4.979028224945068 ], [ -81.079582214355412, -4.978472232818604 ], [ -81.079864501953068, -4.978472232818604 ], [ -81.079864501953068, -4.978194236755371 ], [ -81.080139160156193, -4.978194236755371 ], [ -81.080139160156193, -4.977637767791748 ], [ -81.080413818359375, -4.977637767791748 ], [ -81.080413818359375, -4.977470874786377 ], [ -81.080413818359375, -4.977081775665283 ], [ -81.080696105957031, -4.977084159851074 ], [ -81.080696105957031, -4.976528167724609 ], [ -81.080970764160156, -4.976528167724609 ], [ -81.080970764160156, -4.976250171661377 ], [ -81.081245422363281, -4.976250171661377 ], [ -81.081253051757812, -4.975694179534912 ], [ -81.081527709960938, -4.975694179534912 ], [ -81.081527709960938, -4.975138187408447 ], [ -81.081802368164062, -4.975138187408447 ], [ -81.081802368164062, -4.974580764770508 ], [ -81.082084655761719, -4.974584102630615 ], [ -81.082084655761719, -4.97402811050415 ], [ -81.08235931396473, -4.97402811050415 ], [ -81.08235931396473, -4.973472118377686 ], [ -81.082641601562443, -4.973472118377686 ], [ -81.082641601562443, -4.972918033599797 ], [ -81.082916259765568, -4.972918033599797 ], [ -81.082916259765568, -4.972084045410099 ], [ -81.083190917968693, -4.972084045410099 ], [ -81.083190917968693, -4.971527099609318 ], [ -81.083473205566349, -4.971527099609318 ], [ -81.083473205566349, -4.970971107482853 ], [ -81.083747863769531, -4.970971107482853 ], [ -81.083747863769531, -4.970417976379395 ], [ -81.084030151367188, -4.970417976379395 ], [ -81.084030151367188, -4.969861030578613 ], [ -81.084304809570312, -4.969861030578613 ], [ -81.084304809570312, -4.969583034515381 ], [ -81.084587097167969, -4.969583034515381 ], [ -81.084587097167969, -4.969027042388916 ], [ -81.084861755371094, -4.969027042388916 ], [ -81.084861755371094, -4.968471050262337 ], [ -81.085136413574219, -4.968471050262337 ], [ -81.085136413574219, -4.968194961547852 ], [ -81.085418701171875, -4.968194961547852 ], [ -81.085418701171875, -4.967638969421387 ], [ -81.085693359374943, -4.967638969421387 ], [ -81.085693359374943, -4.967360973358154 ], [ -81.085975646972599, -4.967360973358154 ], [ -81.085975646972599, -4.966804981231689 ], [ -81.086250305175724, -4.966804981231689 ], [ -81.086250305175724, -4.966248989105225 ], [ -81.086524963378849, -4.966248989105225 ], [ -81.086524963378849, -4.965972900390568 ], [ -81.086807250976506, -4.965972900390568 ], [ -81.086807250976506, -4.96541690826416 ], [ -81.087081909179688, -4.96541690826416 ], [ -81.087081909179688, -4.964860916137695 ], [ -81.087364196777344, -4.964860916137695 ], [ -81.087364196777344, -4.964582920074463 ], [ -81.087638854980469, -4.964582920074463 ], [ -81.087638854980469, -4.964026927947998 ], [ -81.087913513183594, -4.964026927947998 ], [ -81.087913513183594, -4.963472843170109 ], [ -81.08819580078125, -4.963472843170109 ], [ -81.08819580078125, -4.963194847106877 ], [ -81.088470458984375, -4.963194847106877 ], [ -81.088470458984375, -4.962916851043644 ], [ -81.088752746581918, -4.962916851043644 ], [ -81.088752746581918, -4.962360858917179 ], [ -81.089027404785099, -4.962360858917179 ], [ -81.089027404785099, -4.962082862853947 ], [ -81.089302062988224, -4.962082862853947 ], [ -81.089302062988224, -4.961804866790771 ], [ -81.089584350585881, -4.961804866790771 ], [ -81.089584350585881, -4.961250782012939 ], [ -81.089859008789006, -4.961250782012939 ], [ -81.089859008789006, -4.960972785949593 ], [ -81.090141296386719, -4.960972785949593 ], [ -81.090141296386719, -4.960694789886418 ], [ -81.090415954589844, -4.960694789886418 ], [ -81.090415954589844, -4.960416793823185 ], [ -81.090690612792969, -4.960416793823185 ], [ -81.0906982421875, -4.959860801696721 ], [ -81.090972900390625, -4.959860801696721 ], [ -81.090972900390625, -4.959581851959229 ], [ -81.09124755859375, -4.959581851959229 ], [ -81.09124755859375, -4.959307193756104 ], [ -81.091529846191406, -4.959307193756104 ], [ -81.091529846191406, -4.958751201629639 ], [ -81.091804504394418, -4.958751201629639 ], [ -81.091804504394418, -4.958473205566406 ], [ -81.092086791992074, -4.958473205566406 ], [ -81.092086791992074, -4.95819520950306 ], [ -81.092361450195256, -4.95819520950306 ], [ -81.092361450195256, -4.957915782928467 ], [ -81.092636108398381, -4.957915782928467 ], [ -81.092636108398381, -4.957359790802002 ], [ -81.092918395996037, -4.957359790802002 ], [ -81.092918395996037, -4.95708179473877 ], [ -81.093193054199219, -4.95708179473877 ], [ -81.093193054199219, -4.956807136535645 ], [ -81.093475341796875, -4.956807136535645 ], [ -81.093475341796875, -4.956250190734863 ], [ -81.09375, -4.956250190734863 ], [ -81.09375, -4.955972194671631 ], [ -81.094024658203125, -4.955972194671631 ], [ -81.094024658203125, -4.955694198608398 ], [ -81.094306945800781, -4.955694198608398 ], [ -81.094306945800781, -4.955416202545166 ], [ -81.094581604003906, -4.955416202545166 ], [ -81.094581604003906, -4.954860210418701 ], [ -81.094863891601562, -4.954860210418701 ], [ -81.094863891601562, -4.954582214355469 ], [ -81.095138549804574, -4.954582214355469 ], [ -81.095138549804574, -4.954304218292236 ], [ -81.095413208007756, -4.954304218292236 ], [ -81.095413208007756, -4.953748226165771 ], [ -81.095695495605412, -4.953748226165771 ], [ -81.095695495605412, -4.953470230102539 ], [ -81.095970153808537, -4.953472137451172 ], [ -81.095970153808537, -4.953194141387939 ], [ -81.096252441406193, -4.953194141387939 ], [ -81.096252441406193, -4.952916145324707 ], [ -81.096527099609375, -4.952916145324707 ], [ -81.096527099609375, -4.952360153198242 ], [ -81.0968017578125, -4.952360153198242 ], [ -81.0968017578125, -4.95208215713501 ], [ -81.097084045410156, -4.952084064483586 ], [ -81.097084045410156, -4.951806068420353 ], [ -81.097358703613281, -4.951806068420353 ], [ -81.097358703613281, -4.951250076293888 ], [ -81.097640991210938, -4.951250076293888 ], [ -81.097640991210938, -4.950972080230656 ], [ -81.097915649414062, -4.950972080230656 ], [ -81.097915649414062, -4.950694084167424 ], [ -81.098197937011719, -4.950694084167424 ], [ -81.098197937011719, -4.950416088104191 ], [ -81.098472595214787, -4.950416088104191 ], [ -81.098472595214787, -4.950138092040959 ], [ -81.098747253417912, -4.950138092040959 ], [ -81.098747253417912, -4.949860095977783 ], [ -81.099029541015568, -4.949862003326416 ], [ -81.099029541015568, -4.949584007263184 ], [ -81.099304199218693, -4.949584007263184 ], [ -81.099304199218693, -4.949306011199951 ], [ -81.099586486816349, -4.949306011199951 ], [ -81.099586486816349, -4.949028015136605 ], [ -81.099861145019531, -4.949028015136605 ], [ -81.099861145019531, -4.948750019073429 ], [ -81.100135803222656, -4.948750019073429 ], [ -81.100135803222656, -4.948472023010197 ], [ -81.100418090820312, -4.948472023010197 ], [ -81.100418090820312, -4.948194026946965 ], [ -81.100692749023438, -4.948194026946965 ], [ -81.100692749023438, -4.947916030883732 ], [ -81.100975036621094, -4.947916030883732 ], [ -81.100975036621094, -4.9476380348205 ], [ -81.101249694824219, -4.9476380348205 ], [ -81.101249694824219, -4.947359085082894 ], [ -81.101524353027287, -4.947361946105957 ], [ -81.101524353027287, -4.947083950042725 ], [ -81.101806640624943, -4.947083950042725 ], [ -81.101806640624943, -4.946805953979492 ], [ -81.102081298828068, -4.946805953979492 ], [ -81.102081298828068, -4.94652795791626 ], [ -81.102363586425724, -4.94652795791626 ], [ -81.102363586425724, -4.946249961853027 ], [ -81.102638244628849, -4.946249961853027 ], [ -81.102638244628849, -4.945973873138428 ], [ -81.102912902832031, -4.945971012115479 ], [ -81.102912902832031, -4.945693016052246 ], [ -81.103195190429688, -4.945693016052246 ], [ -81.103195190429688, -4.945415019989014 ], [ -81.103469848632812, -4.945415019989014 ], [ -81.103469848632812, -4.94513988494873 ], [ -81.103752136230469, -4.94513988494873 ], [ -81.103752136230469, -4.944861888885498 ], [ -81.104026794433594, -4.944861888885498 ], [ -81.104026794433594, -4.944583892822266 ], [ -81.10430908203125, -4.944583892822266 ], [ -81.10430908203125, -4.944304943084717 ], [ -81.104583740234261, -4.944304943084717 ], [ -81.104583740234261, -4.944026947021484 ], [ -81.104858398437443, -4.944026947021484 ], [ -81.104858398437443, -4.943748950958252 ], [ -81.105140686035099, -4.943748950958252 ], [ -81.105140686035099, -4.94347095489502 ], [ -81.105415344238224, -4.94347095489502 ], [ -81.105415344238224, -4.943195819854679 ], [ -81.105697631835881, -4.943195819854679 ], [ -81.105697631835881, -4.942638874053898 ], [ -81.105972290039062, -4.942638874053898 ], [ -81.105972290039062, -4.942360877990666 ], [ -81.106246948242188, -4.942360877990666 ], [ -81.106246948242188, -4.942082881927433 ], [ -81.106529235839844, -4.942082881927433 ], [ -81.106529235839844, -4.941804885864201 ], [ -81.106803894042969, -4.941804885864201 ], [ -81.106803894042969, -4.941526889800969 ], [ -81.107086181640625, -4.941526889800969 ], [ -81.107086181640625, -4.941248893737736 ], [ -81.10736083984375, -4.941248893737736 ], [ -81.10736083984375, -4.940972805023193 ], [ -81.107635498046761, -4.940972805023193 ], [ -81.107635498046761, -4.940694808959961 ], [ -81.107917785644418, -4.940694808959961 ], [ -81.107917785644418, -4.940416812896729 ], [ -81.108192443847599, -4.940416812896729 ], [ -81.108192443847599, -4.940138816833496 ], [ -81.108474731445256, -4.940138816833496 ], [ -81.108474731445256, -4.93986082077015 ], [ -81.108749389648381, -4.93986082077015 ], [ -81.108749389648381, -4.939582824706974 ], [ -81.109024047851562, -4.939582824706974 ], [ -81.109024047851562, -4.939304828643742 ], [ -81.109306335449219, -4.939304828643742 ], [ -81.109306335449219, -4.93902683258051 ], [ -81.109580993652344, -4.93902683258051 ], [ -81.109580993652344, -4.938748836517277 ], [ -81.10986328125, -4.938748836517277 ], [ -81.10986328125, -4.938473224639893 ], [ -81.110137939453125, -4.938473224639893 ], [ -81.110137939453125, -4.93819522857666 ], [ -81.110420227050781, -4.93819522857666 ], [ -81.110420227050781, -4.937917232513428 ], [ -81.110694885253906, -4.937917232513428 ], [ -81.110694885253906, -4.937639236450195 ], [ -81.110969543456918, -4.937639236450195 ], [ -81.110969543456918, -4.937360763549805 ], [ -81.111251831054631, -4.937360763549805 ], [ -81.111251831054631, -4.937082767486572 ], [ -81.111526489257756, -4.937082767486572 ], [ -81.111526489257756, -4.93680477142334 ], [ -81.111808776855412, -4.93680477142334 ], [ -81.111808776855412, -4.936526775360107 ], [ -81.112083435058537, -4.936526775360107 ], [ -81.112083435058537, -4.936248779296761 ], [ -81.112358093261719, -4.936248779296761 ], [ -81.112358093261719, -4.935970783233586 ], [ -81.112640380859375, -4.935970783233586 ], [ -81.112640380859375, -4.935695171356201 ], [ -81.1129150390625, -4.935695171356201 ], [ -81.1129150390625, -4.935417175292969 ], [ -81.113197326660156, -4.935417175292969 ], [ -81.113197326660156, -4.934861183166504 ], [ -81.113471984863281, -4.934861183166504 ], [ -81.113471984863281, -4.934583187103271 ], [ -81.114303588867131, -4.934583187103271 ], [ -81.114303588867131, -4.933751106262207 ], [ -81.114585876464787, -4.933751106262207 ], [ -81.114585876464787, -4.933473110198975 ], [ -81.114860534667912, -4.933473110198975 ], [ -81.114860534667912, -4.933195114135742 ], [ -81.115135192871037, -4.933195114135742 ], [ -81.115135192871037, -4.93291711807251 ], [ -81.115417480468693, -4.93291711807251 ], [ -81.115417480468693, -4.932639122009277 ], [ -81.115692138671875, -4.932639122009277 ], [ -81.115692138671875, -4.932361125946045 ], [ -81.115974426269531, -4.932361125946045 ], [ -81.115974426269531, -4.932082176208496 ], [ -81.116249084472656, -4.932082176208496 ], [ -81.116249084472656, -4.931807041168156 ], [ -81.116531372070312, -4.931807041168156 ], [ -81.116531372070312, -4.931529045104924 ], [ -81.116806030273438, -4.931529045104924 ], [ -81.116806030273438, -4.931251049041691 ], [ -81.117080688476562, -4.931251049041691 ], [ -81.117080688476562, -4.930973052978459 ], [ -81.117362976074105, -4.930973052978459 ], [ -81.117362976074105, -4.93069410324091 ], [ -81.117637634277287, -4.93069410324091 ], [ -81.117637634277287, -4.930416107177678 ], [ -81.117919921874943, -4.930416107177678 ], [ -81.117919921874943, -4.930138111114445 ], [ -81.118194580078068, -4.930138111114445 ], [ -81.118194580078068, -4.929860115051213 ], [ -81.118469238281193, -4.929860115051213 ], [ -81.118469238281193, -4.929584980010873 ], [ -81.118751525878906, -4.92958211898798 ], [ -81.118751525878906, -4.929306030273438 ], [ -81.119026184082031, -4.929306030273438 ], [ -81.119026184082031, -4.929028034210205 ], [ -81.119308471679688, -4.929028034210205 ], [ -81.119308471679688, -4.928750038146973 ], [ -81.119583129882812, -4.928750038146973 ], [ -81.119583129882812, -4.92847204208374 ], [ -81.119857788085938, -4.92847204208374 ], [ -81.119857788085938, -4.928194046020508 ], [ -81.120140075683594, -4.928194046020508 ], [ -81.120140075683594, -4.927916049957162 ], [ -81.120414733886605, -4.927916049957162 ], [ -81.120414733886605, -4.927638053893986 ], [ -81.120697021484261, -4.927638053893986 ], [ -81.120697021484261, -4.927360057830754 ], [ -81.120971679687443, -4.927360057830754 ], [ -81.120971679687443, -4.926805973052979 ], [ -81.121246337890568, -4.926805973052979 ], [ -81.121246337890568, -4.926527976989746 ], [ -81.121528625488224, -4.926527976989746 ], [ -81.121528625488224, -4.926249980926514 ], [ -81.121803283691406, -4.926249980926514 ], [ -81.121803283691406, -4.925971984863281 ], [ -81.122085571289062, -4.925971984863281 ], [ -81.122085571289062, -4.925693988800049 ], [ -81.122360229492188, -4.925693988800049 ], [ -81.122360229492188, -4.925415992736816 ], [ -81.122642517089844, -4.925415992736816 ], [ -81.122642517089844, -4.925137996673584 ], [ -81.122917175292969, -4.925137996673584 ], [ -81.122917175292969, -4.924860000610352 ], [ -81.123191833496094, -4.924860000610352 ], [ -81.123191833496094, -4.924583911895752 ], [ -81.12347412109375, -4.924583911895752 ], [ -81.12347412109375, -4.92430591583252 ], [ -81.123748779296761, -4.92430591583252 ], [ -81.123748779296761, -4.924027919769287 ], [ -81.124031066894474, -4.924027919769287 ], [ -81.124031066894474, -4.923749923706055 ], [ -81.124305725097599, -4.923749923706055 ], [ -81.124305725097599, -4.923471927642822 ], [ -81.124580383300724, -4.923471927642822 ], [ -81.124580383300724, -4.92319393157959 ], [ -81.124862670898381, -4.92319393157959 ], [ -81.124862670898381, -4.922915935516357 ], [ -81.125137329101562, -4.922915935516357 ], [ -81.125137329101562, -4.922639846801701 ], [ -81.125419616699219, -4.922639846801701 ], [ -81.125419616699219, -4.922361850738469 ], [ -81.125694274902344, -4.922361850738469 ], [ -81.125694274902344, -4.922083854675236 ], [ -81.125968933105469, -4.922083854675236 ], [ -81.125968933105469, -4.921805858612004 ], [ -81.126251220703125, -4.921805858612004 ], [ -81.126251220703125, -4.921527862548771 ], [ -81.12652587890625, -4.921527862548771 ], [ -81.12652587890625, -4.921249866485596 ], [ -81.126808166503906, -4.921249866485596 ], [ -81.126808166503906, -4.920971870422363 ], [ -81.127082824706974, -4.920971870422363 ], [ -81.127082824706974, -4.920693874359131 ], [ -81.127357482910099, -4.920693874359131 ], [ -81.127357482910099, -4.920417785644418 ], [ -81.127639770507756, -4.920417785644418 ], [ -81.127639770507756, -4.920139789581242 ], [ -81.127914428710881, -4.920139789581242 ], [ -81.127914428710881, -4.91986179351801 ], [ -81.128196716308537, -4.91986179351801 ], [ -81.128196716308537, -4.919583797454777 ], [ -81.128471374511719, -4.919583797454777 ], [ -81.128471374511719, -4.919027805328312 ], [ -81.128753662109375, -4.919027805328312 ], [ -81.128753662109375, -4.91874980926508 ], [ -81.1290283203125, -4.91874980926508 ], [ -81.1290283203125, -4.918470859527531 ], [ -81.129302978515625, -4.918470859527531 ], [ -81.129302978515625, -4.918192863464299 ], [ -81.129585266113281, -4.918192863464299 ], [ -81.129585266113281, -4.91791820526123 ], [ -81.129859924316406, -4.91791820526123 ], [ -81.129859924316406, -4.917640209197884 ], [ -81.130142211913949, -4.917640209197884 ], [ -81.130142211913949, -4.917362213134709 ], [ -81.130416870117131, -4.917362213134709 ], [ -81.130416870117131, -4.917082786560059 ], [ -81.130691528320256, -4.917082786560059 ], [ -81.130691528320256, -4.916804790496826 ], [ -81.130973815917912, -4.916804790496826 ], [ -81.130973815917912, -4.916526794433594 ], [ -81.131248474121037, -4.916526794433594 ], [ -81.131248474121037, -4.916248798370361 ], [ -81.13153076171875, -4.916248798370361 ], [ -81.13153076171875, -4.915970802307129 ], [ -81.131805419921875, -4.915970802307129 ], [ -81.131805419921875, -4.915692806243896 ], [ -81.132080078125, -4.915692806243896 ], [ -81.132080078125, -4.915417194366455 ], [ -81.132362365722656, -4.915417194366455 ], [ -81.132362365722656, -4.915139198303223 ], [ -81.132637023925781, -4.915139198303223 ], [ -81.132637023925781, -4.91486120223999 ], [ -81.132919311523438, -4.91486120223999 ], [ -81.132919311523438, -4.914583206176758 ], [ -81.133193969726449, -4.914583206176758 ], [ -81.133193969726449, -4.914305210113525 ], [ -81.133468627929631, -4.914305210113525 ], [ -81.133468627929631, -4.914027214050293 ], [ -81.133750915527287, -4.914027214050293 ], [ -81.133750915527287, -4.913749217987061 ], [ -81.134025573730412, -4.913749217987061 ], [ -81.134025573730412, -4.913471221923828 ], [ -81.13458251953125, -4.913471221923828 ], [ -81.13458251953125, -4.913193225860596 ], [ -81.134864807128906, -4.913193225860596 ], [ -81.134864807128906, -4.912915229797363 ], [ -81.135139465332031, -4.912915229797363 ], [ -81.135139465332031, -4.912637233734131 ], [ -81.135414123535156, -4.912637233734131 ], [ -81.135414123535156, -4.912359237670785 ], [ -81.135696411132812, -4.912359237670785 ], [ -81.135696411132812, -4.912080764770508 ], [ -81.135971069335938, -4.912083148956299 ], [ -81.135971069335938, -4.911805152893066 ], [ -81.136253356933594, -4.911805152893066 ], [ -81.136253356933594, -4.911249160766602 ], [ -81.136528015136605, -4.911249160766602 ], [ -81.136528015136605, -4.910971164703369 ], [ -81.136802673339787, -4.910971164703369 ], [ -81.136802673339787, -4.910139083862248 ], [ -81.136528015136605, -4.910139083862248 ], [ -81.136528015136605, -4.909583091735783 ], [ -81.136802673339787, -4.909583091735783 ], [ -81.136802673339787, -4.909027099609375 ], [ -81.137084960937443, -4.909027099609375 ], [ -81.137084960937443, -4.908749103546143 ], [ -81.137359619140568, -4.908749103546143 ], [ -81.137359619140568, -4.90847110748291 ], [ -81.137641906738224, -4.908473014831429 ], [ -81.137641906738224, -4.907917022705021 ], [ -81.137916564941406, -4.907917022705021 ], [ -81.137916564941406, -4.907639026641789 ], [ -81.138191223144531, -4.907639026641789 ], [ -81.138191223144531, -4.907361030578556 ], [ -81.138473510742188, -4.907361030578556 ], [ -81.138473510742188, -4.906805038452092 ], [ -81.138748168945312, -4.906805038452092 ], [ -81.138748168945312, -4.906528949737549 ], [ -81.139030456542969, -4.906526088714543 ], [ -81.139030456542969, -4.90624809265131 ], [ -81.139305114746094, -4.90624809265131 ], [ -81.139305114746094, -4.905970096588078 ], [ -81.139579772949105, -4.905972957611084 ], [ -81.139579772949105, -4.905830860137883 ], [ -81.139579772949105, -4.905694961547852 ], [ -81.139862060546818, -4.905694961547852 ], [ -81.139862060546818, -4.905416965484619 ], [ -81.140136718749943, -4.905416965484619 ], [ -81.140136718749943, -4.905138969421387 ], [ -81.140419006347599, -4.905138969421387 ], [ -81.140419006347599, -4.904304027557373 ], [ -81.140693664550724, -4.904304027557373 ], [ -81.140693664550724, -4.903750896453857 ], [ -81.140975952148381, -4.903750896453857 ], [ -81.140975952148381, -4.903471946716309 ], [ -81.141250610351562, -4.903471946716309 ], [ -81.141250610351562, -4.902915954589844 ], [ -81.141525268554688, -4.902915954589844 ], [ -81.141525268554688, -4.902637958526611 ], [ -81.141807556152344, -4.902637958526611 ], [ -81.141807556152344, -4.902359962463379 ], [ -81.142082214355469, -4.902359962463379 ], [ -81.142082214355469, -4.90180587768549 ], [ -81.142364501953125, -4.90180587768549 ], [ -81.142364501953125, -4.901527881622258 ], [ -81.14263916015625, -4.901527881622258 ], [ -81.14263916015625, -4.901249885559025 ], [ -81.142913818359318, -4.901249885559025 ], [ -81.142913818359318, -4.90069389343256 ], [ -81.143196105956974, -4.90069389343256 ], [ -81.143196105956974, -4.900415897369328 ], [ -81.143470764160099, -4.900415897369328 ], [ -81.143470764160099, -4.900137901306152 ], [ -81.143753051757756, -4.900137901306152 ], [ -81.143753051757756, -4.899305820464974 ], [ -81.144027709960881, -4.899305820464974 ], [ -81.144027709960881, -4.899027824401799 ], [ -81.144302368164062, -4.899027824401799 ], [ -81.144302368164062, -4.898749828338566 ], [ -81.144584655761719, -4.898749828338566 ], [ -81.144584655761719, -4.898471832275334 ], [ -81.144859313964844, -4.898471832275334 ], [ -81.144859313964844, -4.898193836212101 ], [ -81.1451416015625, -4.898193836212101 ], [ -81.1451416015625, -4.898049831390381 ], [ -81.1451416015625, -4.897637844085637 ], [ -81.145416259765625, -4.897637844085637 ], [ -81.145416259765625, -4.897362232208252 ], [ -81.145515441894531, -4.897362232208252 ], [ -81.14569091796875, -4.897362232208252 ], [ -81.145675659179631, -4.897072792053166 ], [ -81.145973205566293, -4.89708423614502 ], [ -81.145973205566293, -4.896525859832764 ], [ -81.146247863769474, -4.896527767181396 ], [ -81.146247863769474, -4.896249771118164 ], [ -81.146530151367131, -4.896249771118164 ], [ -81.146537780761662, -4.895659923553467 ], [ -81.146804809570256, -4.895693778991586 ], [ -81.146743774414062, -4.895102977752629 ], [ -81.147087097167912, -4.895137786865178 ], [ -81.147087097167912, -4.894862174987793 ], [ -81.147361755371094, -4.894862174987793 ], [ -81.147361755371094, -4.894306182861328 ], [ -81.147636413574219, -4.894306182861328 ], [ -81.147636413574219, -4.893750190734863 ], [ -81.147918701171875, -4.893750190734863 ], [ -81.147918701171875, -4.893472194671631 ], [ -81.148193359375, -4.893472194671631 ], [ -81.148246765136662, -4.892918109893799 ], [ -81.148475646972656, -4.892918109893799 ], [ -81.148475646972656, -4.892735004425049 ], [ -81.148475646972656, -4.892362117767334 ], [ -81.148750305175781, -4.892362117767334 ], [ -81.148750305175781, -4.891806125640869 ], [ -81.149024963378793, -4.891806125640869 ], [ -81.149024963378793, -4.891528129577637 ], [ -81.149307250976449, -4.891528129577637 ], [ -81.149307250976449, -4.890696048736515 ], [ -81.149581909179631, -4.890696048736515 ], [ -81.149581909179631, -4.890418052673283 ], [ -81.149864196777287, -4.890418052673283 ], [ -81.149864196777287, -4.889583110809269 ], [ -81.150138854980412, -4.889583110809269 ], [ -81.150138854980412, -4.889305114746037 ], [ -81.150413513183594, -4.889305114746037 ], [ -81.150413513183594, -4.888749122619572 ], [ -81.15069580078125, -4.888749122619572 ], [ -81.15069580078125, -4.88847112655634 ], [ -81.150970458984375, -4.88847112655634 ], [ -81.150970458984375, -4.888195037841797 ], [ -81.151527404785156, -4.888195037841797 ], [ -81.151527404785156, -4.887917041778564 ], [ -81.151802062988281, -4.887917041778564 ], [ -81.151802062988281, -4.887639045715332 ], [ -81.152084350585938, -4.887639045715332 ], [ -81.152084350585938, -4.887361049651986 ], [ -81.152641296386662, -4.887361049651986 ], [ -81.152641296386662, -4.88708305358881 ], [ -81.152915954589787, -4.88708305358881 ], [ -81.152915954589787, -4.886805057525578 ], [ -81.153350830078125, -4.886805057525578 ], [ -81.153472900390568, -4.886805057525578 ], [ -81.153472900390568, -4.886527061462346 ], [ -81.15374755859375, -4.886527061462346 ], [ -81.15374755859375, -4.886249065399113 ], [ -81.154029846191406, -4.886249065399113 ], [ -81.154029846191406, -4.885971069335881 ], [ -81.154304504394531, -4.885971069335881 ], [ -81.154304504394531, -4.885694980621338 ], [ -81.154586791992188, -4.885694980621338 ], [ -81.154586791992188, -4.885416984558105 ], [ -81.154861450195312, -4.885416984558105 ], [ -81.154861450195312, -4.885138988494873 ], [ -81.155136108398438, -4.885138988494873 ], [ -81.155136108398438, -4.884860992431641 ], [ -81.155418395996094, -4.884860992431641 ], [ -81.155418395996094, -4.884582996368408 ], [ -81.155693054199162, -4.884582996368408 ], [ -81.155693054199162, -4.884027004241943 ], [ -81.155975341796818, -4.884027004241943 ], [ -81.155975341796818, -4.883472919464111 ], [ -81.15625, -4.883472919464111 ], [ -81.15625, -4.883194923400879 ], [ -81.156524658203068, -4.883194923400879 ], [ -81.156524658203068, -4.882638931274414 ], [ -81.156806945800724, -4.882638931274414 ], [ -81.156806945800724, -4.882360935211182 ], [ -81.157081604003906, -4.882360935211182 ], [ -81.157081604003906, -4.881959915161133 ], [ -81.157081604003906, -4.881804943084717 ], [ -81.157211303710881, -4.881804943084717 ], [ -81.157363891601562, -4.881804943084717 ], [ -81.157363891601562, -4.88152885437006 ], [ -81.157638549804688, -4.88152885437006 ], [ -81.157638549804688, -4.88129186630249 ], [ -81.157638549804688, -4.880972862243596 ], [ -81.157913208007812, -4.880972862243596 ], [ -81.157913208007812, -4.88069486618042 ], [ -81.158195495605469, -4.88069486618042 ], [ -81.158195495605469, -4.880138874053955 ], [ -81.158470153808594, -4.880138874053955 ], [ -81.158470153808594, -4.87958288192749 ], [ -81.158752441406136, -4.87958288192749 ], [ -81.158752441406136, -4.879304885864258 ], [ -81.159027099609318, -4.879304885864258 ], [ -81.159027099609318, -4.878750801086369 ], [ -81.159301757812443, -4.878750801086369 ], [ -81.159301757812443, -4.878472805023137 ], [ -81.159584045410099, -4.878472805023137 ], [ -81.159584045410099, -4.878194808959904 ], [ -81.159858703613224, -4.878194808959904 ], [ -81.159858703613224, -4.877637863159123 ], [ -81.160140991210938, -4.877637863159123 ], [ -81.160140991210938, -4.87735986709589 ], [ -81.160415649414062, -4.87735986709589 ], [ -81.160415649414062, -4.877081871032658 ], [ -81.160697937011719, -4.877081871032658 ], [ -81.160697937011719, -4.876807212829533 ], [ -81.160972595214844, -4.876803874969426 ], [ -81.160972595214844, -4.876529216766301 ], [ -81.161247253417969, -4.876529216766301 ], [ -81.161247253417969, -4.875971794128418 ], [ -81.161529541015625, -4.875971794128418 ], [ -81.161529541015625, -4.875693798065186 ], [ -81.161804199218636, -4.875693798065186 ], [ -81.161804199218636, -4.875415802001953 ], [ -81.162086486816293, -4.875415802001953 ], [ -81.162086486816293, -4.875137805938721 ], [ -81.162361145019474, -4.875137805938721 ], [ -81.162361145019474, -4.874581813812142 ], [ -81.162635803222599, -4.874581813812142 ], [ -81.162635803222599, -4.874306201934814 ], [ -81.162918090820256, -4.874306201934814 ], [ -81.162918090820256, -4.874028205871582 ], [ -81.163192749023438, -4.874028205871582 ], [ -81.163192749023438, -4.87375020980835 ], [ -81.163475036621094, -4.87375020980835 ], [ -81.163475036621094, -4.873472213745117 ], [ -81.163749694824219, -4.873472213745117 ], [ -81.163749694824219, -4.872916221618652 ], [ -81.164024353027344, -4.872916221618652 ], [ -81.164024353027344, -4.87263822555542 ], [ -81.164306640625, -4.87263822555542 ], [ -81.164306640625, -4.872360229492188 ], [ -81.164581298828125, -4.872360229492188 ], [ -81.164581298828125, -4.872082233428955 ], [ -81.164848327636662, -4.872082233428955 ], [ -81.164863586425781, -4.871525764465332 ], [ -81.165138244628793, -4.871525764465332 ], [ -81.165138244628793, -4.871250152587891 ], [ -81.165412902831974, -4.871250152587891 ], [ -81.165412902831974, -4.870972156524658 ], [ -81.165695190429631, -4.870972156524658 ], [ -81.165695190429631, -4.870843887329045 ], [ -81.165695190429631, -4.870694160461426 ], [ -81.165969848632756, -4.870694160461426 ], [ -81.165969848632756, -4.870442867279053 ], [ -81.165969848632756, -4.870140075683537 ], [ -81.166252136230412, -4.870138168334961 ], [ -81.166252136230412, -4.870030879974365 ], [ -81.166252136230412, -4.869860172271729 ], [ -81.166366577148381, -4.869860172271729 ], [ -81.166526794433594, -4.869862079620304 ], [ -81.166526794433594, -4.869629859924316 ], [ -81.16680908203125, -4.869584083557072 ], [ -81.16680908203125, -4.86930608749384 ], [ -81.167083740234375, -4.86930608749384 ], [ -81.167083740234375, -4.869028091430607 ], [ -81.1673583984375, -4.869028091430607 ], [ -81.1673583984375, -4.868472099304199 ], [ -81.167640686035156, -4.868472099304199 ], [ -81.167640686035156, -4.868194103240967 ], [ -81.167915344238281, -4.868194103240967 ], [ -81.167915344238281, -4.867916107177734 ], [ -81.168197631835938, -4.867916107177734 ], [ -81.168197631835938, -4.867638111114502 ], [ -81.168472290039006, -4.867640018463078 ], [ -81.168472290039006, -4.867084026336613 ], [ -81.168746948242131, -4.867084026336613 ], [ -81.168746948242131, -4.866806030273381 ], [ -81.169029235839787, -4.866806030273381 ], [ -81.169029235839787, -4.866528034210148 ], [ -81.169303894042912, -4.866528034210148 ], [ -81.169303894042912, -4.865972042083683 ], [ -81.169586181640568, -4.865972042083683 ], [ -81.169586181640568, -4.865694046020451 ], [ -81.16986083984375, -4.865694046020451 ], [ -81.16986083984375, -4.865415096282902 ], [ -81.170135498046875, -4.865415096282902 ], [ -81.170135498046875, -4.864861965179443 ], [ -81.170417785644531, -4.864861965179443 ], [ -81.170417785644531, -4.864583969116211 ], [ -81.170692443847656, -4.864583969116211 ], [ -81.170692443847656, -4.864305973052865 ], [ -81.170974731445312, -4.864305973052865 ], [ -81.170974731445312, -4.863749027252197 ], [ -81.171249389648438, -4.863749027252197 ], [ -81.171249389648438, -4.863471031188965 ], [ -81.171524047851506, -4.863471031188965 ], [ -81.171524047851506, -4.863195896148682 ], [ -81.171806335449162, -4.863195896148682 ], [ -81.171806335449162, -4.862917900085449 ], [ -81.172080993652287, -4.862917900085449 ], [ -81.172080993652287, -4.862360954284668 ], [ -81.172363281249943, -4.862360954284668 ], [ -81.172363281249943, -4.862082958221436 ], [ -81.172637939453068, -4.862082958221436 ], [ -81.172637939453068, -4.861804962158203 ], [ -81.172920227050781, -4.861804962158203 ], [ -81.172920227050781, -4.861248970031738 ], [ -81.173194885253906, -4.861248970031738 ], [ -81.173194885253906, -4.860972881317082 ], [ -81.173469543457031, -4.860972881317082 ], [ -81.173469543457031, -4.860694885253849 ], [ -81.173751831054688, -4.860694885253849 ], [ -81.173751831054688, -4.860138893127385 ], [ -81.174026489257812, -4.860138893127385 ], [ -81.174026489257812, -4.859860897064152 ], [ -81.174308776855469, -4.859860897064152 ], [ -81.174308776855469, -4.859582901000977 ], [ -81.17458343505848, -4.859582901000977 ], [ -81.17458343505848, -4.859026908874512 ], [ -81.174858093261662, -4.859026908874512 ], [ -81.174858093261662, -4.858748912811279 ], [ -81.175140380859318, -4.858748912811279 ], [ -81.175140380859318, -4.858472824096623 ], [ -81.175415039062443, -4.858472824096623 ], [ -81.175415039062443, -4.857916831970158 ], [ -81.175697326660099, -4.857916831970158 ], [ -81.175697326660099, -4.857638835906926 ], [ -81.175971984863281, -4.857638835906926 ], [ -81.175971984863281, -4.857360839843693 ], [ -81.176246643066406, -4.857360839843693 ], [ -81.176246643066406, -4.857082843780461 ], [ -81.176528930664062, -4.857082843780461 ], [ -81.176528930664062, -4.856526851653996 ], [ -81.176803588867188, -4.856526851653996 ], [ -81.176803588867188, -4.856248855590763 ], [ -81.177085876464844, -4.856248855590763 ], [ -81.177085876464844, -4.855972766876221 ], [ -81.177360534667969, -4.855972766876221 ], [ -81.177360534667969, -4.855416774749756 ], [ -81.17763519287098, -4.855416774749756 ], [ -81.17763519287098, -4.85513877868641 ], [ -81.177917480468636, -4.85513877868641 ], [ -81.177917480468636, -4.854860782623234 ], [ -81.178192138671818, -4.854860782623234 ], [ -81.178192138671818, -4.854304790496769 ], [ -81.178474426269474, -4.854304790496769 ], [ -81.178474426269474, -4.854029178619385 ], [ -81.178749084472599, -4.854029178619385 ], [ -81.178749084472599, -4.853751182556152 ], [ -81.179031372070256, -4.853751182556152 ], [ -81.179031372070256, -4.853206157684326 ], [ -81.179306030273438, -4.853195190429688 ], [ -81.179306030273438, -4.852917194366455 ], [ -81.179580688476562, -4.852917194366455 ], [ -81.179580688476562, -4.852639198303223 ], [ -81.179862976074219, -4.852639198303223 ], [ -81.179862976074219, -4.852361202239877 ], [ -81.180137634277344, -4.852361202239877 ], [ -81.180137634277344, -4.852083206176701 ], [ -81.180419921875, -4.852083206176701 ], [ -81.180419921875, -4.851807117462158 ], [ -81.180694580078125, -4.851807117462158 ], [ -81.180694580078125, -4.851365089416447 ], [ -81.180694580078125, -4.851251125335693 ], [ -81.180801391601562, -4.851251125335693 ], [ -81.180969238281136, -4.851251125335693 ], [ -81.180969238281136, -4.851077079772949 ], [ -81.181022644042969, -4.851014137267953 ], [ -81.181251525878849, -4.850973129272461 ], [ -81.181251525878849, -4.850749015808049 ], [ -81.181526184081974, -4.850695133209229 ], [ -81.181526184081974, -4.85044622421259 ], [ -81.181808471679631, -4.85041618347168 ], [ -81.181808471679631, -4.850138187408447 ], [ -81.182083129882756, -4.850138187408447 ], [ -81.182083129882756, -4.849860191345215 ], [ -81.182357788085938, -4.849860191345215 ], [ -81.182357788085938, -4.849582195281982 ], [ -81.182640075683594, -4.849582195281982 ], [ -81.182640075683594, -4.849307060241699 ], [ -81.182914733886719, -4.849307060241699 ], [ -81.182914733886719, -4.849028110504094 ], [ -81.183197021484375, -4.849028110504094 ], [ -81.183197021484375, -4.848472118377629 ], [ -81.1834716796875, -4.848472118377629 ], [ -81.1834716796875, -4.848194122314396 ], [ -81.183746337890625, -4.848194122314396 ], [ -81.183746337890625, -4.847916126251164 ], [ -81.184028625488281, -4.847916126251164 ], [ -81.184028625488281, -4.847638130187988 ], [ -81.184303283691349, -4.847638130187988 ], [ -81.184303283691349, -4.847360134124756 ], [ -81.184585571289006, -4.847360134124756 ], [ -81.184585571289006, -4.847084045410156 ], [ -81.184860229492131, -4.847082138061523 ], [ -81.184860229492131, -4.84680604934681 ], [ -81.185142517089787, -4.84680604934681 ], [ -81.185142517089787, -4.846528053283635 ], [ -81.185417175292912, -4.846528053283635 ], [ -81.185417175292912, -4.84597206115717 ], [ -81.185691833496094, -4.84597206115717 ], [ -81.185691833496094, -4.845694065093937 ], [ -81.18597412109375, -4.845694065093937 ], [ -81.18597412109375, -4.845416069030705 ], [ -81.186248779296875, -4.845416069030705 ], [ -81.186248779296875, -4.845138072967472 ], [ -81.186531066894531, -4.845138072967472 ], [ -81.186531066894531, -4.84486007690424 ], [ -81.186805725097656, -4.84486007690424 ], [ -81.186805725097656, -4.844583988189697 ], [ -81.187080383300781, -4.844583988189697 ], [ -81.187080383300781, -4.844305992126465 ], [ -81.187362670898324, -4.844305992126465 ], [ -81.187362670898324, -4.844027996063232 ], [ -81.187637329101506, -4.844027996063232 ], [ -81.187637329101506, -4.843472003936768 ], [ -81.187919616699162, -4.843472003936768 ], [ -81.187919616699162, -4.843194007873421 ], [ -81.188194274902287, -4.843194007873421 ], [ -81.188194274902287, -4.842916011810246 ], [ -81.188468933105412, -4.842916011810246 ], [ -81.188468933105412, -4.842638015747013 ], [ -81.188751220703125, -4.842638015747013 ], [ -81.188751220703125, -4.842360019683781 ], [ -81.18902587890625, -4.842361927032471 ], [ -81.18902587890625, -4.842083930969238 ], [ -81.189308166503906, -4.842083930969238 ], [ -81.189308166503906, -4.841805934906006 ], [ -81.189582824707031, -4.841805934906006 ], [ -81.189582824707031, -4.841527938842773 ], [ -81.189857482910156, -4.841527938842773 ], [ -81.189857482910156, -4.841249942779541 ], [ -81.190139770507812, -4.841249942779541 ], [ -81.190139770507812, -4.840693950653076 ], [ -81.190414428710824, -4.840693950653076 ], [ -81.190414428710824, -4.840415954589844 ], [ -81.19069671630848, -4.840415954589844 ], [ -81.19069671630848, -4.840139865875244 ], [ -81.190971374511662, -4.840139865875244 ], [ -81.190971374511662, -4.839861869812012 ], [ -81.191253662109318, -4.839861869812012 ], [ -81.191253662109318, -4.839583873748779 ], [ -81.191528320312443, -4.839583873748779 ], [ -81.191528320312443, -4.839305877685547 ], [ -81.191802978515625, -4.839305877685547 ], [ -81.191802978515625, -4.839027881622314 ], [ -81.192085266113281, -4.839027881622314 ], [ -81.192085266113281, -4.838614940643311 ], [ -81.192085266113281, -4.83847188949585 ], [ -81.192192077636662, -4.83847188949585 ], [ -81.192359924316406, -4.83847188949585 ], [ -81.192359924316406, -4.838192939758301 ], [ -81.192642211914062, -4.838192939758301 ], [ -81.192642211914062, -4.837917804717961 ], [ -81.192916870117188, -4.837917804717961 ], [ -81.192916870117188, -4.837639808654728 ], [ -81.193191528320312, -4.837639808654728 ], [ -81.193191528320312, -4.837361812591496 ], [ -81.193473815917969, -4.837361812591496 ], [ -81.193473815917969, -4.836804866790715 ], [ -81.19374847412098, -4.836804866790715 ], [ -81.19374847412098, -4.836526870727482 ], [ -81.194030761718693, -4.836526870727482 ], [ -81.194030761718693, -4.83624887466425 ], [ -81.194305419921818, -4.83624887466425 ], [ -81.194305419921818, -4.835970878601017 ], [ -81.194580078124943, -4.835970878601017 ], [ -81.194580078124943, -4.835692882537785 ], [ -81.194862365722599, -4.835692882537785 ], [ -81.194862365722599, -4.83513879776001 ], [ -81.195137023925781, -4.83513879776001 ], [ -81.195137023925781, -4.834860801696777 ], [ -81.195419311523438, -4.834860801696777 ], [ -81.195419311523438, -4.834582805633545 ], [ -81.195693969726562, -4.834582805633545 ], [ -81.195693969726562, -4.834304809570312 ], [ -81.195968627929688, -4.834304809570312 ], [ -81.195968627929688, -4.834026813506966 ], [ -81.196250915527344, -4.834026813506966 ], [ -81.196250915527344, -4.833748817443791 ], [ -81.196525573730469, -4.833748817443791 ], [ -81.196525573730469, -4.833195209503174 ], [ -81.196807861328125, -4.833195209503174 ], [ -81.196807861328125, -4.832917213439941 ], [ -81.197082519531193, -4.832917213439941 ], [ -81.197082519531193, -4.832639217376709 ], [ -81.197364807128849, -4.832639217376709 ], [ -81.197364807128849, -4.832361221313477 ], [ -81.197639465331974, -4.832361221313477 ], [ -81.197639465331974, -4.832083225250244 ], [ -81.197914123535099, -4.832083225250244 ], [ -81.197914123535099, -4.831527233123779 ], [ -81.198196411132756, -4.831527233123779 ], [ -81.198196411132756, -4.831249237060433 ], [ -81.198471069335938, -4.831249237060433 ], [ -81.198471069335938, -4.830970764160156 ], [ -81.198753356933594, -4.830973148345947 ], [ -81.198753356933594, -4.830695152282715 ], [ -81.199028015136719, -4.830695152282715 ], [ -81.199028015136719, -4.830417156219482 ], [ -81.199302673339844, -4.830417156219482 ], [ -81.199302673339844, -4.83013916015625 ], [ -81.1995849609375, -4.83013916015625 ], [ -81.1995849609375, -4.829583168029785 ], [ -81.199859619140625, -4.829583168029785 ], [ -81.199859619140625, -4.829305171966553 ], [ -81.200141906738168, -4.829305171966553 ], [ -81.200141906738168, -4.82902717590332 ], [ -81.200416564941349, -4.82902717590332 ], [ -81.200416564941349, -4.828749179840088 ], [ -81.200691223144474, -4.828749179840088 ], [ -81.200691223144474, -4.828471183776855 ], [ -81.200973510742131, -4.828473091125431 ], [ -81.200973510742131, -4.827917098999023 ], [ -81.201248168945256, -4.827917098999023 ], [ -81.201248168945256, -4.827639102935791 ], [ -81.201530456542969, -4.827639102935791 ], [ -81.201530456542969, -4.827361106872559 ], [ -81.201805114746094, -4.827361106872559 ], [ -81.201805114746094, -4.827083110809326 ], [ -81.202079772949219, -4.827083110809326 ], [ -81.202079772949219, -4.826805114746094 ], [ -81.202362060546875, -4.826805114746094 ], [ -81.202362060546875, -4.826357841491642 ], [ -81.202362060546875, -4.826249122619629 ], [ -81.20263671875, -4.826251029968205 ], [ -81.20263671875, -4.826058864593506 ], [ -81.20263671875, -4.825973033904972 ], [ -81.202919006347656, -4.825973033904972 ], [ -81.202919006347656, -4.82569503784174 ], [ -81.203193664550668, -4.82569503784174 ], [ -81.203193664550668, -4.825417041778508 ], [ -81.203475952148324, -4.825417041778508 ], [ -81.203475952148324, -4.825139045715275 ], [ -81.203750610351506, -4.825139045715275 ], [ -81.203750610351506, -4.824861049652043 ], [ -81.204025268554631, -4.824861049652043 ], [ -81.204025268554631, -4.824478149413949 ], [ -81.204025268554631, -4.824304103851262 ], [ -81.204177856445312, -4.824304103851262 ], [ -81.204307556152287, -4.824304103851262 ], [ -81.204307556152287, -4.824159145355225 ], [ -81.204307556152287, -4.824028968811035 ], [ -81.204421997070256, -4.824028968811035 ], [ -81.204582214355469, -4.824028968811035 ], [ -81.204582214355469, -4.823849201202393 ], [ -81.204582214355469, -4.823750972747689 ], [ -81.204864501953125, -4.823750972747689 ], [ -81.204864501953125, -4.823528766632023 ], [ -81.20513916015625, -4.823472976684513 ], [ -81.20513916015625, -4.823194026947021 ], [ -81.205413818359375, -4.823194026947021 ], [ -81.205413818359375, -4.822909832000676 ], [ -81.205413818359375, -4.822638034820557 ], [ -81.205650329589787, -4.822638034820557 ], [ -81.205696105957031, -4.822360038757324 ], [ -81.205902099609375, -4.822360038757324 ], [ -81.205970764160156, -4.822084903717041 ], [ -81.206146240234261, -4.822084903717041 ], [ -81.206253051757812, -4.822084903717041 ], [ -81.206253051757812, -4.821960926055908 ], [ -81.206253051757812, -4.821805953979492 ], [ -81.206390380859375, -4.821805953979492 ], [ -81.206527709960824, -4.821805953979492 ], [ -81.206527709960824, -4.821650981903076 ], [ -81.206527709960824, -4.82152795791626 ], [ -81.206634521484375, -4.82152795791626 ], [ -81.206802368164006, -4.82152795791626 ], [ -81.206802368164006, -4.821339130401554 ], [ -81.206802368164006, -4.820971965789795 ], [ -81.207084655761662, -4.820971965789795 ], [ -81.207084655761662, -4.820693969726562 ], [ -81.207359313964787, -4.820693969726562 ], [ -81.207359313964787, -4.82041597366333 ], [ -81.207641601562443, -4.82041597366333 ], [ -81.207641601562443, -4.820298194885197 ], [ -81.207641601562443, -4.820137977600098 ], [ -81.207771301269418, -4.820137977600098 ], [ -81.207916259765625, -4.820137977600098 ], [ -81.207962036132699, -4.819962978363037 ], [ -81.207984924316406, -4.819859981536865 ], [ -81.20819091796875, -4.819859981536865 ], [ -81.20819091796875, -4.819583892822209 ], [ -81.208473205566406, -4.819583892822209 ], [ -81.208473205566406, -4.819305896758976 ], [ -81.208747863769531, -4.819305896758976 ], [ -81.208747863769531, -4.819027900695801 ], [ -81.209030151367188, -4.819027900695801 ], [ -81.209030151367188, -4.818471908569336 ], [ -81.209304809570312, -4.818471908569336 ], [ -81.209304809570312, -4.818193912506104 ], [ -81.209587097167969, -4.818193912506104 ], [ -81.209587097167969, -4.817915916442871 ], [ -81.209861755371037, -4.817915916442871 ], [ -81.209861755371037, -4.817637920379639 ], [ -81.210136413574162, -4.817637920379639 ], [ -81.210136413574162, -4.817359924316406 ], [ -81.210418701171818, -4.817359924316406 ], [ -81.210418701171818, -4.81708383560175 ], [ -81.210693359374943, -4.81708383560175 ], [ -81.210693359374943, -4.816805839538517 ], [ -81.210975646972599, -4.816805839538517 ], [ -81.210975646972599, -4.816527843475285 ], [ -81.211250305175781, -4.816527843475285 ], [ -81.211250305175781, -4.816249847412053 ], [ -81.211524963378906, -4.816249847412053 ], [ -81.211524963378906, -4.815693855285588 ], [ -81.211807250976562, -4.815693855285588 ], [ -81.211807250976562, -4.815415859222412 ], [ -81.212081909179688, -4.815415859222412 ], [ -81.212081909179688, -4.81513786315918 ], [ -81.212364196777344, -4.81513786315918 ], [ -81.212364196777344, -4.81486177444458 ], [ -81.212638854980469, -4.81486177444458 ], [ -81.212638854980469, -4.814583778381234 ], [ -81.212913513183537, -4.814583778381234 ], [ -81.212913513183537, -4.814305782318058 ], [ -81.213195800781193, -4.814305782318058 ], [ -81.213195800781193, -4.814027786254826 ], [ -81.213470458984318, -4.814027786254826 ], [ -81.213470458984318, -4.813749790191594 ], [ -81.213752746581974, -4.813749790191594 ], [ -81.213752746581974, -4.813471794128361 ], [ -81.214027404785099, -4.813471794128361 ], [ -81.214027404785099, -4.813193798065129 ], [ -81.214302062988281, -4.813193798065129 ], [ -81.214302062988281, -4.812640190124512 ], [ -81.214584350585938, -4.812640190124512 ], [ -81.214584350585938, -4.812362194061279 ], [ -81.214859008789062, -4.812362194061279 ], [ -81.214859008789062, -4.812084197998047 ], [ -81.215141296386719, -4.812084197998047 ], [ -81.215141296386719, -4.811806201934701 ], [ -81.215415954589844, -4.811806201934701 ], [ -81.215415954589844, -4.811528205871525 ], [ -81.215690612792969, -4.811528205871525 ], [ -81.2156982421875, -4.811250209808293 ], [ -81.215972900390511, -4.811250209808293 ], [ -81.215972900390511, -4.810970783233643 ], [ -81.216247558593693, -4.810970783233643 ], [ -81.216247558593693, -4.81069278717041 ], [ -81.216529846191349, -4.81069278717041 ], [ -81.216529846191349, -4.810418128967285 ], [ -81.216804504394474, -4.810418128967285 ], [ -81.216804504394474, -4.809994220733529 ], [ -81.216804504394474, -4.80986213684082 ], [ -81.216941833496094, -4.80986213684082 ], [ -81.217086791992131, -4.80986213684082 ], [ -81.217086791992131, -4.809712886810246 ], [ -81.217086791992131, -4.809583187103271 ], [ -81.217208862304574, -4.809583187103271 ], [ -81.217361450195312, -4.809583187103271 ], [ -81.217361450195312, -4.809416770935059 ], [ -81.217414855957031, -4.809346199035645 ], [ -81.217636108398438, -4.809305191040039 ], [ -81.217636108398438, -4.809071063995361 ], [ -81.217918395996094, -4.809027194976807 ], [ -81.217918395996094, -4.808749198913574 ], [ -81.218193054199219, -4.808749198913574 ], [ -81.218193054199219, -4.808471202850342 ], [ -81.218475341796875, -4.808471202850342 ], [ -81.218475341796875, -4.808195114135685 ], [ -81.21875, -4.808195114135685 ], [ -81.21875, -4.807917118072453 ], [ -81.219024658203011, -4.807917118072453 ], [ -81.219024658203011, -4.807639122009221 ], [ -81.219306945800668, -4.807639122009221 ], [ -81.219306945800668, -4.807359218597412 ], [ -81.219581604003849, -4.807361125945988 ], [ -81.219581604003849, -4.80680513381958 ], [ -81.219863891601506, -4.80680513381958 ], [ -81.219863891601506, -4.806527137756348 ], [ -81.220138549804631, -4.806527137756348 ], [ -81.220138549804631, -4.806249141693115 ], [ -81.220413208007812, -4.806249141693115 ], [ -81.220413208007812, -4.805971145629883 ], [ -81.220695495605469, -4.805971145629883 ], [ -81.220695495605469, -4.805695056915226 ], [ -81.220970153808594, -4.805695056915226 ], [ -81.220970153808594, -4.805417060851994 ], [ -81.22125244140625, -4.805417060851994 ], [ -81.22125244140625, -4.805139064788762 ], [ -81.221527099609375, -4.805139064788762 ], [ -81.221527099609375, -4.804861068725529 ], [ -81.2218017578125, -4.804861068725529 ], [ -81.2218017578125, -4.804583072662297 ], [ -81.222084045410156, -4.804583072662297 ], [ -81.222084045410156, -4.804027080535832 ], [ -81.222358703613168, -4.804027080535832 ], [ -81.222358703613168, -4.803749084472599 ], [ -81.222640991210881, -4.803750991821289 ], [ -81.222640991210881, -4.803477764129582 ], [ -81.222915649414006, -4.803472995758057 ], [ -81.222915649414006, -4.803194999694824 ], [ -81.223197937011662, -4.803194999694824 ], [ -81.223197937011662, -4.802917003631592 ], [ -81.223472595214787, -4.802917003631592 ], [ -81.223472595214787, -4.802684783935547 ], [ -81.223747253417969, -4.802639007568246 ], [ -81.223747253417969, -4.802422046661377 ], [ -81.224029541015625, -4.80236101150507 ], [ -81.224029541015625, -4.802083015441838 ], [ -81.22430419921875, -4.802083015441838 ], [ -81.22430419921875, -4.801805019378605 ], [ -81.224586486816406, -4.801805019378605 ], [ -81.224586486816406, -4.801527023315373 ], [ -81.224861145019531, -4.801528930664062 ], [ -81.224861145019531, -4.801135063171387 ], [ -81.224861145019531, -4.800971031188908 ], [ -81.224990844726562, -4.800971031188908 ], [ -81.225135803222656, -4.800972938537598 ], [ -81.225135803222656, -4.800694942474365 ], [ -81.225418090820312, -4.800694942474365 ], [ -81.225418090820312, -4.800416946411133 ], [ -81.225692749023381, -4.800416946411133 ], [ -81.225692749023381, -4.8001389503479 ], [ -81.225975036621037, -4.8001389503479 ], [ -81.225975036621037, -4.799860954284668 ], [ -81.226249694824162, -4.799860954284668 ], [ -81.226249694824162, -4.799582958221436 ], [ -81.226524353027287, -4.799582958221436 ], [ -81.226524353027287, -4.799304962158203 ], [ -81.226806640624943, -4.799304962158203 ], [ -81.226806640624943, -4.799028873443604 ], [ -81.227081298828125, -4.799028873443604 ], [ -81.227081298828125, -4.798750877380371 ], [ -81.227363586425781, -4.798750877380371 ], [ -81.227363586425781, -4.798194885253906 ], [ -81.227638244628906, -4.798194885253906 ], [ -81.227638244628906, -4.797916889190674 ], [ -81.227912902832031, -4.797916889190674 ], [ -81.227912902832031, -4.797638893127441 ], [ -81.228195190429688, -4.797638893127441 ], [ -81.228195190429688, -4.797359943389893 ], [ -81.228469848632812, -4.797359943389893 ], [ -81.228469848632812, -4.79708194732666 ], [ -81.228752136230355, -4.79708194732666 ], [ -81.228752136230355, -4.796803951263428 ], [ -81.229026794433537, -4.796803951263428 ], [ -81.229026794433537, -4.796630859374886 ], [ -81.229026794433537, -4.796528816223088 ], [ -81.229133605956918, -4.796528816223088 ], [ -81.229309082031193, -4.796528816223088 ], [ -81.229309082031193, -4.796250820159855 ], [ -81.229583740234318, -4.796250820159855 ], [ -81.229583740234318, -4.795971870422306 ], [ -81.229858398437443, -4.795971870422306 ], [ -81.229858398437443, -4.795693874359074 ], [ -81.230140686035156, -4.795693874359074 ], [ -81.230140686035156, -4.795137882232609 ], [ -81.230415344238281, -4.795137882232609 ], [ -81.230415344238281, -4.794859886169377 ], [ -81.230697631835938, -4.794859886169377 ], [ -81.230697631835938, -4.794581890106144 ], [ -81.230972290039062, -4.794581890106144 ], [ -81.230972290039062, -4.794305801391602 ], [ -81.231246948242188, -4.794305801391602 ], [ -81.231246948242188, -4.794027805328369 ], [ -81.231529235839844, -4.794027805328369 ], [ -81.231529235839844, -4.793749809265137 ], [ -81.231803894042855, -4.793749809265137 ], [ -81.231803894042855, -4.793471813201791 ], [ -81.232086181640511, -4.793471813201791 ], [ -81.232086181640511, -4.793193817138615 ], [ -81.232360839843693, -4.793193817138615 ], [ -81.232360839843693, -4.792915821075383 ], [ -81.232635498046818, -4.792915821075383 ], [ -81.232635498046818, -4.792359828948918 ], [ -81.232917785644474, -4.792362213134766 ], [ -81.232917785644474, -4.792084217071533 ], [ -81.233192443847656, -4.792084217071533 ], [ -81.233192443847656, -4.791806221008301 ], [ -81.233474731445312, -4.791806221008301 ], [ -81.233474731445312, -4.791528224945068 ], [ -81.233749389648438, -4.791528224945068 ], [ -81.233749389648438, -4.791250228881836 ], [ -81.234024047851562, -4.791250228881836 ], [ -81.234024047851562, -4.790972232818604 ], [ -81.234306335449219, -4.790972232818604 ], [ -81.234306335449219, -4.790694236755257 ], [ -81.234580993652344, -4.790694236755257 ], [ -81.234580993652344, -4.79041576385498 ], [ -81.23486328125, -4.79041576385498 ], [ -81.23486328125, -4.790137767791748 ], [ -81.235137939453011, -4.790137767791748 ], [ -81.235137939453011, -4.789859771728402 ], [ -81.235420227050724, -4.789862155914307 ], [ -81.235420227050724, -4.789306163787842 ], [ -81.235694885253849, -4.789306163787842 ], [ -81.235694885253849, -4.789028167724609 ], [ -81.235969543456974, -4.789028167724609 ], [ -81.235969543456974, -4.788750171661377 ], [ -81.236251831054631, -4.788750171661377 ], [ -81.236251831054631, -4.788472175598145 ], [ -81.236526489257812, -4.788472175598145 ], [ -81.236526489257812, -4.788194179534912 ], [ -81.236808776855469, -4.788194179534912 ], [ -81.236808776855469, -4.78791618347168 ], [ -81.237083435058594, -4.78791618347168 ], [ -81.237083435058594, -4.787638187408447 ], [ -81.237358093261719, -4.787638187408447 ], [ -81.237358093261719, -4.787360191345215 ], [ -81.237640380859375, -4.787360191345215 ], [ -81.237640380859375, -4.787082195281869 ], [ -81.2379150390625, -4.787084102630615 ], [ -81.2379150390625, -4.786806106567383 ], [ -81.238197326660156, -4.786806106567383 ], [ -81.238197326660156, -4.78652811050415 ], [ -81.238471984863224, -4.78652811050415 ], [ -81.238471984863224, -4.785972118377686 ], [ -81.238746643066349, -4.785972118377686 ], [ -81.238746643066349, -4.785694122314453 ], [ -81.239028930664006, -4.785694122314453 ], [ -81.239028930664006, -4.785416126251221 ], [ -81.239303588867131, -4.785416126251221 ], [ -81.239303588867131, -4.785140037536564 ], [ -81.239585876464787, -4.785140037536564 ], [ -81.239585876464787, -4.784862041473332 ], [ -81.239860534667969, -4.784862041473332 ], [ -81.239860534667969, -4.784584045410099 ], [ -81.240135192871094, -4.784584045410099 ], [ -81.240135192871094, -4.784306049346867 ], [ -81.24041748046875, -4.784306049346867 ], [ -81.24041748046875, -4.784028053283691 ], [ -81.240692138671875, -4.784028053283691 ], [ -81.240692138671875, -4.783749103546086 ], [ -81.240974426269531, -4.783749103546086 ], [ -81.240974426269531, -4.783471107482853 ], [ -81.241249084472656, -4.783471107482853 ], [ -81.241249084472656, -4.783195972442513 ], [ -81.241531372070199, -4.783195972442513 ], [ -81.241531372070199, -4.782639980316105 ], [ -81.241806030273381, -4.782639980316105 ], [ -81.241806030273381, -4.782361030578613 ], [ -81.242080688476506, -4.782361030578613 ], [ -81.242080688476506, -4.782083034515381 ], [ -81.242362976074162, -4.782083034515381 ], [ -81.242362976074162, -4.781805038452148 ], [ -81.242637634277287, -4.781805038452148 ], [ -81.242637634277287, -4.781527042388802 ], [ -81.242919921875, -4.781527042388802 ], [ -81.242919921875, -4.781249046325627 ], [ -81.243194580078125, -4.781249046325627 ], [ -81.243194580078125, -4.780971050262394 ], [ -81.24346923828125, -4.780971050262394 ], [ -81.24346923828125, -4.780694961547852 ], [ -81.243751525878906, -4.780694961547852 ], [ -81.243751525878906, -4.780416965484619 ], [ -81.244026184082031, -4.780416965484619 ], [ -81.244026184082031, -4.780138969421387 ], [ -81.244308471679688, -4.780138969421387 ], [ -81.244308471679688, -4.779582977294922 ], [ -81.244583129882699, -4.779582977294922 ], [ -81.244583129882699, -4.779304981231689 ], [ -81.244857788085881, -4.779304981231689 ], [ -81.244857788085881, -4.779026985168457 ], [ -81.245140075683537, -4.779026985168457 ], [ -81.245140075683537, -4.778748989105225 ], [ -81.245414733886662, -4.778748989105225 ], [ -81.245414733886662, -4.778472900390625 ], [ -81.245697021484318, -4.778472900390625 ], [ -81.245697021484318, -4.778194904327393 ], [ -81.2459716796875, -4.778194904327393 ], [ -81.2459716796875, -4.77791690826416 ], [ -81.246246337890625, -4.77791690826416 ], [ -81.246246337890625, -4.777638912200928 ], [ -81.246528625488281, -4.777638912200928 ], [ -81.246528625488281, -4.777360916137695 ], [ -81.246803283691406, -4.777360916137695 ], [ -81.246803283691406, -4.777082920074463 ], [ -81.247085571289062, -4.777082920074463 ], [ -81.247085571289062, -4.77680492401123 ], [ -81.247360229492188, -4.77680492401123 ], [ -81.247360229492188, -4.776248931884766 ], [ -81.247642517089844, -4.776248931884766 ], [ -81.247642517089844, -4.775972843170109 ], [ -81.247917175292855, -4.775972843170109 ], [ -81.247917175292855, -4.775694847106877 ], [ -81.248191833496037, -4.775694847106877 ], [ -81.248191833496037, -4.775416851043644 ], [ -81.248474121093693, -4.775416851043644 ], [ -81.248474121093693, -4.775138854980412 ], [ -81.248748779296818, -4.775138854980412 ], [ -81.248748779296818, -4.774860858917236 ], [ -81.249031066894474, -4.774860858917236 ], [ -81.249031066894474, -4.774582862854004 ], [ -81.249305725097656, -4.774582862854004 ], [ -81.249305725097656, -4.774028778076058 ], [ -81.249580383300781, -4.774028778076058 ], [ -81.249580383300781, -4.773750782012883 ], [ -81.249862670898438, -4.773750782012883 ], [ -81.249862670898438, -4.77347278594965 ], [ -81.250137329101562, -4.77347278594965 ], [ -81.250137329101562, -4.773194789886418 ], [ -81.250419616699219, -4.773194789886418 ], [ -81.250419616699219, -4.772916793823185 ], [ -81.250694274902344, -4.772916793823185 ], [ -81.250694274902344, -4.772638797759953 ], [ -81.250968933105355, -4.772638797759953 ], [ -81.250968933105355, -4.772360801696721 ], [ -81.251251220703068, -4.772360801696721 ], [ -81.251251220703068, -4.772082805633488 ], [ -81.251525878906193, -4.772082805633488 ], [ -81.251525878906193, -4.771807193756104 ], [ -81.251808166503849, -4.771807193756104 ], [ -81.251808166503849, -4.771529197692871 ], [ -81.252082824706974, -4.771529197692871 ], [ -81.252082824706974, -4.770973205566349 ], [ -81.252357482910156, -4.770973205566349 ], [ -81.252357482910156, -4.770695209503117 ], [ -81.252639770507812, -4.770695209503117 ], [ -81.252639770507812, -4.770417213439885 ], [ -81.252914428710938, -4.770417213439885 ], [ -81.252914428710938, -4.770137786865234 ], [ -81.253196716308594, -4.770137786865234 ], [ -81.253196716308594, -4.769859790802002 ], [ -81.253471374511719, -4.769859790802002 ], [ -81.253471374511719, -4.76958179473877 ], [ -81.253753662109375, -4.76958179473877 ], [ -81.253753662109375, -4.769307136535645 ], [ -81.2540283203125, -4.769307136535645 ], [ -81.2540283203125, -4.769029140472412 ], [ -81.254302978515568, -4.769029140472412 ], [ -81.254302978515568, -4.768750190734863 ], [ -81.254585266113224, -4.768750190734863 ], [ -81.254585266113224, -4.768472194671631 ], [ -81.254859924316349, -4.768472194671631 ], [ -81.254859924316349, -4.767916202545166 ], [ -81.255142211914006, -4.767916202545166 ], [ -81.255142211914006, -4.767638206481934 ], [ -81.255416870117131, -4.767638206481934 ], [ -81.255416870117131, -4.767360210418701 ], [ -81.255691528320312, -4.767360210418701 ], [ -81.255691528320312, -4.767082214355469 ], [ -81.255973815917969, -4.767082214355469 ], [ -81.255973815917969, -4.766804218292236 ], [ -81.256248474121094, -4.766804218292236 ], [ -81.256248474121094, -4.766526222229004 ], [ -81.25653076171875, -4.766526222229004 ], [ -81.25653076171875, -4.766248226165771 ], [ -81.256805419921875, -4.766248226165771 ], [ -81.256805419921875, -4.765970230102425 ], [ -81.257080078125, -4.765972137451172 ], [ -81.257080078125, -4.765694141387939 ], [ -81.257362365722543, -4.765694141387939 ], [ -81.257362365722543, -4.765416145324707 ], [ -81.257637023925724, -4.765416145324707 ], [ -81.257637023925724, -4.764860153198242 ], [ -81.257919311523381, -4.764860153198242 ], [ -81.257919311523381, -4.76458215713501 ], [ -81.258193969726506, -4.764584064483586 ], [ -81.258193969726506, -4.764306068420353 ], [ -81.258468627929631, -4.764306068420353 ], [ -81.258468627929631, -4.764028072357121 ], [ -81.258750915527344, -4.764028072357121 ], [ -81.258750915527344, -4.763750076293888 ], [ -81.259025573730469, -4.763750076293888 ], [ -81.259025573730469, -4.763472080230656 ], [ -81.259307861328125, -4.763472080230656 ], [ -81.259307861328125, -4.763194084167424 ], [ -81.25958251953125, -4.763194084167424 ], [ -81.25958251953125, -4.762916088104248 ], [ -81.259864807128906, -4.762916088104248 ], [ -81.259864807128906, -4.762360095977783 ], [ -81.260139465332031, -4.762362003326416 ], [ -81.260139465332031, -4.761806011199894 ], [ -81.260414123535043, -4.761806011199894 ], [ -81.260414123535043, -4.761528015136662 ], [ -81.260696411132699, -4.761528015136662 ], [ -81.260696411132699, -4.761250019073429 ], [ -81.260971069335881, -4.761250019073429 ], [ -81.260971069335881, -4.760694026946965 ], [ -81.261253356933537, -4.760694026946965 ], [ -81.261253356933537, -4.760416030883732 ], [ -81.261528015136662, -4.760416030883732 ], [ -81.261528015136662, -4.7601380348205 ], [ -81.261802673339844, -4.760139942169189 ], [ -81.261802673339844, -4.759583950042725 ], [ -81.2620849609375, -4.759583950042725 ], [ -81.2620849609375, -4.759305953979492 ], [ -81.262359619140625, -4.759305953979492 ], [ -81.262359619140625, -4.75902795791626 ], [ -81.262641906738281, -4.75902795791626 ], [ -81.262641906738281, -4.758473873138428 ], [ -81.262916564941406, -4.758471965789681 ], [ -81.262916564941406, -4.758193969726506 ], [ -81.263191223144531, -4.758193969726506 ], [ -81.263191223144531, -4.757915019989014 ], [ -81.263473510742188, -4.757917881011963 ], [ -81.263473510742188, -4.757359027862549 ], [ -81.263748168945199, -4.757361888885498 ], [ -81.263748168945199, -4.757083892822266 ], [ -81.264030456542912, -4.757083892822266 ], [ -81.264030456542912, -4.756526947021484 ], [ -81.264305114746037, -4.756526947021484 ], [ -81.264305114746037, -4.756248950958252 ], [ -81.264579772949162, -4.756248950958252 ], [ -81.264579772949162, -4.75597095489502 ], [ -81.264862060546818, -4.75597095489502 ], [ -81.264862060546818, -4.755417823791504 ], [ -81.26513671875, -4.755417823791504 ], [ -81.26513671875, -4.755138874053898 ], [ -81.265419006347656, -4.755138874053898 ], [ -81.265419006347656, -4.754860877990666 ], [ -81.265693664550781, -4.754860877990666 ], [ -81.265693664550781, -4.754304885864201 ], [ -81.265975952148438, -4.754304885864201 ], [ -81.265975952148438, -4.754026889800969 ], [ -81.266250610351562, -4.754026889800969 ], [ -81.266250610351562, -4.753748893737793 ], [ -81.266525268554688, -4.753748893737793 ], [ -81.266525268554688, -4.753394126892033 ], [ -81.266525268554688, -4.753194808959961 ], [ -81.266807556152344, -4.753194808959961 ], [ -81.266807556152344, -4.752916812896615 ], [ -81.267082214355412, -4.752916812896615 ], [ -81.267082214355412, -4.752814769744816 ], [ -81.267082214355412, -4.752638816833439 ], [ -81.267250061035099, -4.752638816833439 ], [ -81.267364501953068, -4.752638816833439 ], [ -81.267364501953068, -4.75252103805542 ], [ -81.267364501953068, -4.752360820770207 ], [ -81.26751708984375, -4.752360820770207 ], [ -81.267639160156193, -4.752360820770207 ], [ -81.267639160156193, -4.752235889434814 ], [ -81.267639160156193, -4.751804828643742 ], [ -81.267913818359318, -4.751804828643742 ], [ -81.267913818359318, -4.75152683258051 ], [ -81.268196105956974, -4.75152683258051 ], [ -81.268196105956974, -4.751248836517277 ], [ -81.268470764160156, -4.751248836517277 ], [ -81.268470764160156, -4.750973224639893 ], [ -81.268753051757812, -4.750973224639893 ], [ -81.268753051757812, -4.75069522857666 ], [ -81.268913269042969, -4.75069522857666 ], [ -81.269027709960938, -4.75069522857666 ], [ -81.269027709960938, -4.750417232513428 ], [ -81.269302368164062, -4.750417232513428 ], [ -81.269302368164062, -4.750139236450082 ], [ -81.269584655761719, -4.750139236450082 ], [ -81.269584655761719, -4.7496080398559 ], [ -81.269859313964844, -4.749582767486572 ], [ -81.269859313964844, -4.749304771423226 ], [ -81.270141601562386, -4.749304771423226 ], [ -81.270141601562386, -4.749026775360051 ], [ -81.270416259765568, -4.749026775360051 ], [ -81.270416259765568, -4.748751163482666 ], [ -81.270690917968693, -4.748751163482666 ], [ -81.270690917968693, -4.748470783233586 ], [ -81.270973205566349, -4.748473167419434 ], [ -81.270973205566349, -4.748195171356201 ], [ -81.271247863769474, -4.748195171356201 ], [ -81.271247863769474, -4.747639179229736 ], [ -81.271530151367188, -4.747639179229736 ], [ -81.271530151367188, -4.747406005859318 ], [ -81.271804809570312, -4.747361183166504 ], [ -81.271804809570312, -4.747100830078068 ], [ -81.272087097167969, -4.747083187103271 ], [ -81.272087097167969, -4.746805191040039 ], [ -81.272361755371094, -4.746805191040039 ], [ -81.272361755371094, -4.746527194976693 ], [ -81.272636413574219, -4.746527194976693 ], [ -81.272636413574219, -4.746249198913517 ], [ -81.272918701171875, -4.746251106262207 ], [ -81.272918701171875, -4.745865821838379 ], [ -81.272918701171875, -4.745695114135742 ], [ -81.273071289062443, -4.745695114135742 ], [ -81.273193359374886, -4.745695114135742 ], [ -81.273193359374886, -4.745560169219971 ], [ -81.273193359374886, -4.74541711807251 ], [ -81.273323059082031, -4.74541711807251 ], [ -81.273475646972543, -4.74541711807251 ], [ -81.273475646972543, -4.745247840881291 ], [ -81.273475646972543, -4.745139122009277 ], [ -81.273750305175724, -4.745139122009277 ], [ -81.273750305175724, -4.744954109191838 ], [ -81.273750305175724, -4.744861125946045 ], [ -81.274024963378849, -4.744861125946045 ], [ -81.274024963378849, -4.744637012481633 ], [ -81.274307250976506, -4.744583129882812 ], [ -81.274307250976506, -4.744307041168156 ], [ -81.274581909179688, -4.744307041168156 ], [ -81.274581909179688, -4.744029045104924 ], [ -81.274864196777344, -4.744029045104924 ], [ -81.274864196777344, -4.743704795837402 ], [ -81.274864196777344, -4.743473052978516 ], [ -81.275138854980469, -4.743473052978516 ], [ -81.275138854980469, -4.743195056915283 ], [ -81.275413513183594, -4.743195056915283 ], [ -81.275413513183594, -4.742916107177678 ], [ -81.275573730468636, -4.742916107177678 ], [ -81.27569580078125, -4.742916107177678 ], [ -81.27569580078125, -4.742782115936279 ], [ -81.27569580078125, -4.742638111114445 ], [ -81.275825500488224, -4.742638111114445 ], [ -81.275970458984375, -4.742638111114445 ], [ -81.275970458984375, -4.742478847503605 ], [ -81.275970458984375, -4.742360115051213 ], [ -81.276077270507812, -4.742360115051213 ], [ -81.276252746582031, -4.742360115051213 ], [ -81.276252746582031, -4.742176055908089 ], [ -81.276252746582031, -4.742084980010929 ], [ -81.276527404785043, -4.74208211898798 ], [ -81.276527404785043, -4.741858959197941 ], [ -81.276527404785043, -4.741528034210205 ], [ -81.276802062988224, -4.741528034210205 ], [ -81.276802062988224, -4.741250038146973 ], [ -81.277076721191349, -4.741250038146973 ], [ -81.277084350585881, -4.740972042083627 ], [ -81.277359008789006, -4.740972042083627 ], [ -81.277359008789006, -4.740694046020451 ], [ -81.277641296386662, -4.740694046020451 ], [ -81.277641296386662, -4.740416049957219 ], [ -81.277786254882812, -4.740416049957219 ], [ -81.277915954589844, -4.740416049957219 ], [ -81.277915954589844, -4.740261077880803 ], [ -81.277915954589844, -4.740138053893986 ], [ -81.278190612792969, -4.740138053893986 ], [ -81.278190612792969, -4.739922046661377 ], [ -81.2781982421875, -4.739583969116211 ], [ -81.278472900390625, -4.739583969116211 ], [ -81.278472900390625, -4.739305973052979 ], [ -81.278701782226506, -4.739305973052979 ], [ -81.27874755859375, -4.739027976989746 ], [ -81.278923034667969, -4.739027976989746 ], [ -81.279029846191406, -4.739027976989746 ], [ -81.279029846191406, -4.738901138305664 ], [ -81.279029846191406, -4.738749980926514 ], [ -81.279151916503906, -4.738749980926514 ], [ -81.279304504394531, -4.738749980926514 ], [ -81.279304504394531, -4.738578796386719 ], [ -81.279380798339787, -4.738471984863281 ], [ -81.279586791992188, -4.738471984863281 ], [ -81.279586791992188, -4.738193988800049 ], [ -81.279861450195256, -4.738193988800049 ], [ -81.279861450195256, -4.737915992736816 ], [ -81.280136108398381, -4.737915992736816 ], [ -81.280136108398381, -4.737548828125 ], [ -81.280136108398381, -4.737360000610238 ], [ -81.280288696289062, -4.737360000610238 ], [ -81.280418395996037, -4.737360000610238 ], [ -81.280418395996037, -4.737205028533822 ], [ -81.280418395996037, -4.737083911895752 ], [ -81.280693054199162, -4.737083911895752 ], [ -81.280693054199162, -4.73680591583252 ], [ -81.280975341796818, -4.73680591583252 ], [ -81.280975341796818, -4.736527919769287 ], [ -81.28125, -4.736527919769287 ], [ -81.28125, -4.736249923706055 ], [ -81.281524658203125, -4.736249923706055 ], [ -81.281524658203125, -4.735971927642822 ], [ -81.281806945800781, -4.735971927642822 ], [ -81.281806945800781, -4.73569393157959 ], [ -81.282081604003906, -4.73569393157959 ], [ -81.282081604003906, -4.735415935516357 ], [ -81.282363891601562, -4.735415935516357 ], [ -81.282363891601562, -4.735137939453125 ], [ -81.282638549804688, -4.735137939453125 ], [ -81.282638549804688, -4.734861850738469 ], [ -81.282913208007756, -4.734861850738469 ], [ -81.282913208007756, -4.734583854675236 ], [ -81.283195495605412, -4.734583854675236 ], [ -81.283195495605412, -4.734305858612061 ], [ -81.283470153808537, -4.734305858612061 ], [ -81.283470153808537, -4.734027862548828 ], [ -81.283752441406193, -4.734027862548828 ], [ -81.283752441406193, -4.733749866485596 ], [ -81.284027099609318, -4.733749866485596 ], [ -81.284027099609318, -4.733471870422363 ], [ -81.2843017578125, -4.733471870422363 ], [ -81.2843017578125, -4.733193874359131 ], [ -81.284584045410156, -4.733193874359131 ], [ -81.284584045410156, -4.732917785644474 ], [ -81.284858703613281, -4.732917785644474 ], [ -81.284858703613281, -4.732639789581242 ], [ -81.285140991210938, -4.732639789581242 ], [ -81.285140991210938, -4.73236179351801 ], [ -81.285415649414062, -4.73236179351801 ], [ -81.285415649414062, -4.732083797454777 ], [ -81.285697937011719, -4.732083797454777 ], [ -81.285697937011719, -4.731805801391545 ], [ -81.28597259521473, -4.731805801391545 ], [ -81.28597259521473, -4.731527805328312 ], [ -81.286247253417912, -4.731527805328312 ], [ -81.286247253417912, -4.73124980926508 ], [ -81.286529541015568, -4.73124980926508 ], [ -81.286529541015568, -4.730692863464299 ], [ -81.286804199218693, -4.730692863464299 ], [ -81.286804199218693, -4.730418205261174 ], [ -81.287086486816349, -4.730418205261174 ], [ -81.287086486816349, -4.730140209197941 ], [ -81.287361145019531, -4.730140209197941 ], [ -81.287361145019531, -4.729862213134709 ], [ -81.287635803222656, -4.729862213134709 ], [ -81.287635803222656, -4.729584217071476 ], [ -81.287918090820312, -4.729584217071476 ], [ -81.287918090820312, -4.729304790496826 ], [ -81.288192749023438, -4.729304790496826 ], [ -81.288192749023438, -4.729026794433594 ], [ -81.288475036621094, -4.729026794433594 ], [ -81.288475036621094, -4.728748798370361 ], [ -81.288749694824219, -4.728748798370361 ], [ -81.288749694824219, -4.728470802307129 ], [ -81.28902435302723, -4.728470802307129 ], [ -81.28902435302723, -4.728192806243783 ], [ -81.289306640624886, -4.728192806243783 ], [ -81.289306640624886, -4.727917194366455 ], [ -81.289581298828068, -4.727917194366455 ], [ -81.289581298828068, -4.727639198303223 ], [ -81.289863586425724, -4.727639198303223 ], [ -81.289863586425724, -4.72736120223999 ], [ -81.290138244628849, -4.72736120223999 ], [ -81.290138244628849, -4.727083206176758 ], [ -81.290412902832031, -4.727083206176758 ], [ -81.290412902832031, -4.726805210113525 ], [ -81.290695190429688, -4.726805210113525 ], [ -81.290695190429688, -4.726527214050293 ], [ -81.290969848632812, -4.726527214050293 ], [ -81.290969848632812, -4.726249217987061 ], [ -81.291252136230469, -4.726249217987061 ], [ -81.291252136230469, -4.725971221923828 ], [ -81.291526794433594, -4.725971221923828 ], [ -81.291526794433594, -4.725693225860596 ], [ -81.29180908203125, -4.725693225860596 ], [ -81.29180908203125, -4.72541522979725 ], [ -81.292083740234375, -4.72541522979725 ], [ -81.292083740234375, -4.725137233734074 ], [ -81.292358398437386, -4.725137233734074 ], [ -81.292358398437386, -4.724859237670842 ], [ -81.292640686035099, -4.724861145019531 ], [ -81.292640686035099, -4.724305152893066 ], [ -81.292915344238224, -4.724305152893066 ], [ -81.292915344238224, -4.724027156829834 ], [ -81.293197631835881, -4.724027156829834 ], [ -81.293197631835881, -4.723749160766602 ], [ -81.293472290039006, -4.723749160766602 ], [ -81.293472290039006, -4.723471164703369 ], [ -81.293746948242188, -4.723473072051945 ], [ -81.293746948242188, -4.723195075988713 ], [ -81.294029235839844, -4.723195075988713 ], [ -81.294029235839844, -4.72291707992548 ], [ -81.294303894042969, -4.72291707992548 ], [ -81.294303894042969, -4.722370147705078 ], [ -81.294586181640625, -4.722361087799072 ], [ -81.294586181640625, -4.722107887268066 ], [ -81.29486083984375, -4.72208309173584 ], [ -81.29486083984375, -4.721805095672607 ], [ -81.295135498046875, -4.721805095672607 ], [ -81.295135498046875, -4.721527099609375 ], [ -81.295417785644531, -4.721527099609375 ], [ -81.295501708984318, -4.721251010894719 ], [ -81.295692443847599, -4.721251010894719 ], [ -81.295692443847599, -4.720973014831486 ], [ -81.295799255371094, -4.720973014831486 ], [ -81.295974731445256, -4.720973014831486 ], [ -81.295974731445256, -4.720807075500431 ], [ -81.295974731445256, -4.720417022705021 ], [ -81.296249389648381, -4.720417022705021 ], [ -81.296249389648381, -4.720139026641789 ], [ -81.296524047851506, -4.720139026641789 ], [ -81.296524047851506, -4.719861030578556 ], [ -81.296806335449162, -4.719861030578556 ], [ -81.296806335449162, -4.719583034515324 ], [ -81.297080993652344, -4.719583034515324 ], [ -81.297080993652344, -4.71946907043457 ], [ -81.297080993652344, -4.719305038452092 ], [ -81.297210693359318, -4.719305038452092 ], [ -81.29736328125, -4.719305038452092 ], [ -81.29736328125, -4.719028949737549 ], [ -81.297637939453125, -4.719027042388859 ], [ -81.297637939453125, -4.718749046325684 ], [ -81.297920227050781, -4.718750953674316 ], [ -81.297920227050781, -4.718377113342285 ], [ -81.297920227050781, -4.718194961547852 ], [ -81.298057556152287, -4.718194961547852 ], [ -81.298194885253906, -4.718194961547852 ], [ -81.298194885253906, -4.718019008636475 ], [ -81.298194885253906, -4.717916965484505 ], [ -81.298469543457031, -4.717916965484505 ], [ -81.298469543457031, -4.717660903930664 ], [ -81.298469543457031, -4.717360973358097 ], [ -81.298751831054574, -4.717360973358097 ], [ -81.298751831054574, -4.717082023620605 ], [ -81.298912048339787, -4.717082023620605 ], [ -81.299308776855412, -4.717082023620605 ], [ -81.299308776855412, -4.716804027557373 ], [ -81.299583435058537, -4.716804027557373 ], [ -81.299583435058537, -4.716250896453857 ], [ -81.299858093261662, -4.716250896453857 ], [ -81.299858093261662, -4.715972900390625 ], [ -81.300140380859375, -4.715972900390625 ], [ -81.300140380859375, -4.715693950653076 ], [ -81.3004150390625, -4.715693950653076 ], [ -81.3004150390625, -4.715415954589844 ], [ -81.300697326660156, -4.715415954589844 ], [ -81.300697326660156, -4.715137958526611 ], [ -81.300971984863281, -4.715137958526611 ], [ -81.300971984863281, -4.714859962463379 ], [ -81.301246643066406, -4.714859962463379 ], [ -81.301246643066406, -4.714528083801213 ], [ -81.301246643066406, -4.71430587768549 ], [ -81.301528930664062, -4.71430587768549 ], [ -81.301528930664062, -4.714027881622258 ], [ -81.301803588867074, -4.714027881622258 ], [ -81.301803588867074, -4.713749885559025 ], [ -81.30208587646473, -4.713749885559025 ], [ -81.30208587646473, -4.713471889495793 ], [ -81.302360534667912, -4.713471889495793 ], [ -81.302360534667912, -4.713193893432617 ], [ -81.302635192871037, -4.713193893432617 ], [ -81.302635192871037, -4.712915897369385 ], [ -81.302917480468693, -4.712915897369385 ], [ -81.302917480468693, -4.712361812591439 ], [ -81.303192138671875, -4.71235990524292 ], [ -81.303192138671875, -4.712083816528263 ], [ -81.303474426269531, -4.712083816528263 ], [ -81.303474426269531, -4.711805820465031 ], [ -81.303749084472656, -4.711805820465031 ], [ -81.303749084472656, -4.711527824401799 ], [ -81.304031372070312, -4.711527824401799 ], [ -81.304031372070312, -4.711249828338566 ], [ -81.304306030273438, -4.711249828338566 ], [ -81.304306030273438, -4.710971832275334 ], [ -81.304580688476562, -4.710971832275334 ], [ -81.304580688476562, -4.710693836212101 ], [ -81.304862976074219, -4.710693836212101 ], [ -81.304862976074219, -4.710415840148869 ], [ -81.30513763427723, -4.710415840148869 ], [ -81.30513763427723, -4.710137844085637 ], [ -81.305297851562443, -4.710137844085637 ], [ -81.305419921874943, -4.710137844085637 ], [ -81.305419921874943, -4.709991931915283 ], [ -81.305419921874943, -4.709862232208252 ], [ -81.305526733398438, -4.709862232208252 ], [ -81.305694580078068, -4.709862232208252 ], [ -81.305694580078068, -4.709584236144906 ], [ -81.305969238281193, -4.709584236144906 ], [ -81.305969238281193, -4.709305763244629 ], [ -81.306251525878849, -4.709305763244629 ], [ -81.306251525878849, -4.709027767181396 ], [ -81.306526184082031, -4.709027767181396 ], [ -81.306526184082031, -4.70874977111805 ], [ -81.306808471679688, -4.70874977111805 ], [ -81.306808471679688, -4.708471775054875 ], [ -81.307083129882812, -4.708471775054875 ], [ -81.307083129882812, -4.708193778991642 ], [ -81.307357788085938, -4.708193778991642 ], [ -81.307357788085938, -4.707637786865178 ], [ -81.307640075683594, -4.707637786865178 ], [ -81.307640075683594, -4.707359790801945 ], [ -81.307914733886719, -4.707359790801945 ], [ -81.307914733886719, -4.707081794738713 ], [ -81.308197021484375, -4.707084178924561 ], [ -81.308197021484375, -4.706806182861328 ], [ -81.308471679687443, -4.706806182861328 ], [ -81.308471679687443, -4.706528186798096 ], [ -81.308746337890568, -4.706528186798096 ], [ -81.308746337890568, -4.706250190734863 ], [ -81.309028625488224, -4.706250190734863 ], [ -81.309028625488224, -4.705972194671517 ], [ -81.309303283691349, -4.705972194671517 ], [ -81.309303283691349, -4.705694198608342 ], [ -81.309585571289006, -4.705694198608342 ], [ -81.309585571289006, -4.705416202545109 ], [ -81.309860229492188, -4.705416202545109 ], [ -81.309860229492188, -4.705140113830566 ], [ -81.310142517089844, -4.705140113830566 ], [ -81.310142517089844, -4.704862117767334 ], [ -81.310417175292969, -4.704862117767334 ], [ -81.310417175292969, -4.704584121704102 ], [ -81.310691833496094, -4.704584121704102 ], [ -81.310691833496094, -4.704306125640869 ], [ -81.31097412109375, -4.704306125640869 ], [ -81.31097412109375, -4.704028129577637 ], [ -81.311248779296875, -4.704028129577637 ], [ -81.311248779296875, -4.703750133514404 ], [ -81.311531066894418, -4.703750133514404 ], [ -81.311531066894418, -4.703471183776855 ], [ -81.311805725097599, -4.703471183776855 ], [ -81.311805725097599, -4.703196048736515 ], [ -81.312080383300724, -4.703196048736515 ], [ -81.312080383300724, -4.70291805267334 ], [ -81.312362670898381, -4.70291805267334 ], [ -81.312362670898381, -4.702640056610107 ], [ -81.312637329101506, -4.702640056610107 ], [ -81.312637329101506, -4.702362060546875 ], [ -81.312919616699219, -4.702362060546875 ], [ -81.312919616699219, -4.702083110809269 ], [ -81.313194274902344, -4.702083110809269 ], [ -81.313194274902344, -4.701805114746037 ], [ -81.313468933105469, -4.701805114746037 ], [ -81.313468933105469, -4.701527118682804 ], [ -81.313751220703125, -4.701527118682804 ], [ -81.313751220703125, -4.701249122619629 ], [ -81.31402587890625, -4.701249122619629 ], [ -81.31402587890625, -4.700971126556396 ], [ -81.314308166503906, -4.700971126556396 ], [ -81.314308166503906, -4.700417041778451 ], [ -81.314582824706918, -4.700417041778451 ], [ -81.314582824706918, -4.700139045715275 ], [ -81.314857482910099, -4.700139045715275 ], [ -81.314857482910099, -4.699861049652043 ], [ -81.315139770507756, -4.699861049652043 ], [ -81.315139770507756, -4.69958305358881 ], [ -81.315414428710881, -4.69958305358881 ], [ -81.315414428710881, -4.699305057525578 ], [ -81.315696716308537, -4.699305057525578 ], [ -81.315696716308537, -4.699027061462346 ], [ -81.315971374511719, -4.699027061462346 ], [ -81.315971374511719, -4.698749065399113 ], [ -81.316253662109375, -4.698749065399113 ], [ -81.316253662109375, -4.698471069335881 ], [ -81.3165283203125, -4.698471069335881 ], [ -81.3165283203125, -4.698194980621338 ], [ -81.316802978515625, -4.698194980621338 ], [ -81.316802978515625, -4.697916984558105 ], [ -81.317085266113281, -4.697916984558105 ], [ -81.317085266113281, -4.697638988494873 ], [ -81.317359924316406, -4.697638988494873 ], [ -81.317359924316406, -4.697360992431641 ], [ -81.317642211914062, -4.697360992431641 ], [ -81.317642211914062, -4.697082996368408 ], [ -81.317916870117074, -4.697082996368408 ], [ -81.317916870117074, -4.696527004241887 ], [ -81.318191528320256, -4.696527004241887 ], [ -81.318191528320256, -4.696249008178654 ], [ -81.318473815917912, -4.696249008178654 ], [ -81.318473815917912, -4.695972919464111 ], [ -81.318748474121037, -4.695971012115422 ], [ -81.318748474121037, -4.695416927337646 ], [ -81.319030761718693, -4.695416927337646 ], [ -81.319030761718693, -4.695138931274414 ], [ -81.319305419921875, -4.695138931274414 ], [ -81.319305419921875, -4.694582939147949 ], [ -81.319580078125, -4.694582939147949 ], [ -81.319580078125, -4.694304943084717 ], [ -81.319862365722656, -4.694304943084717 ], [ -81.319862365722656, -4.69402885437006 ], [ -81.320137023925781, -4.69402885437006 ], [ -81.320137023925781, -4.693472862243652 ], [ -81.320419311523438, -4.693472862243652 ], [ -81.320419311523438, -4.69319486618042 ], [ -81.320693969726562, -4.69319486618042 ], [ -81.320693969726562, -4.692638874053955 ], [ -81.320968627929574, -4.692638874053955 ], [ -81.320968627929574, -4.692360877990723 ], [ -81.321250915527287, -4.692360877990723 ], [ -81.321250915527287, -4.69208288192749 ], [ -81.321525573730412, -4.69208288192749 ], [ -81.321525573730412, -4.691528797149601 ], [ -81.321807861328068, -4.691528797149601 ], [ -81.321807861328068, -4.691250801086369 ], [ -81.322082519531193, -4.691250801086369 ], [ -81.322082519531193, -4.690694808959904 ], [ -81.322364807128849, -4.690694808959904 ], [ -81.322364807128849, -4.690416812896672 ], [ -81.322639465332031, -4.690416812896672 ], [ -81.322639465332031, -4.68985986709589 ], [ -81.322914123535156, -4.68985986709589 ], [ -81.322914123535156, -4.689581871032658 ], [ -81.323196411132812, -4.689581871032658 ], [ -81.323196411132812, -4.689307212829533 ], [ -81.323471069335938, -4.689303874969426 ], [ -81.323471069335938, -4.688751220703068 ], [ -81.323753356933594, -4.688751220703068 ], [ -81.323753356933594, -4.688471794128418 ], [ -81.324028015136719, -4.688471794128418 ], [ -81.324028015136719, -4.687915802001953 ], [ -81.324302673339787, -4.687915802001953 ], [ -81.324302673339787, -4.687637805938607 ], [ -81.324584960937443, -4.687637805938607 ], [ -81.324584960937443, -4.687359809875431 ], [ -81.324859619140568, -4.687359809875431 ], [ -81.324859619140568, -4.686806201934814 ], [ -81.325141906738224, -4.686806201934814 ], [ -81.325141906738224, -4.686528205871582 ], [ -81.325416564941349, -4.686528205871582 ], [ -81.325416564941349, -4.685972213745117 ], [ -81.325691223144531, -4.685972213745117 ], [ -81.325691223144531, -4.685694217681885 ], [ -81.325973510742188, -4.685694217681885 ], [ -81.325973510742188, -4.685416221618652 ], [ -81.326248168945312, -4.685416221618652 ], [ -81.326248168945312, -4.684860229492074 ], [ -81.326530456542969, -4.684860229492074 ], [ -81.326530456542969, -4.684582233428898 ], [ -81.327919006347599, -4.684582233428898 ], [ -81.327919006347599, -4.684304237365666 ], [ -81.328193664550724, -4.684304237365666 ], [ -81.328193664550724, -4.683750152587891 ], [ -81.328475952148381, -4.683750152587891 ], [ -81.328475952148381, -4.683194160461426 ], [ -81.328750610351562, -4.683194160461426 ], [ -81.328750610351562, -4.682360172271729 ], [ -81.329025268554688, -4.682360172271729 ], [ -81.329025268554688, -4.681250095367432 ], [ -81.329307556152344, -4.681250095367432 ], [ -81.329307556152344, -4.680138111114502 ], [ -81.329582214355469, -4.680140018463078 ], [ -81.329582214355469, -4.679306030273381 ], [ -81.329307556152344, -4.679306030273381 ], [ -81.329307556152344, -4.679028034210148 ], [ -81.329025268554688, -4.679028034210148 ], [ -81.329025268554688, -4.679306030273381 ], [ -81.328750610351562, -4.679306030273381 ], [ -81.328750610351562, -4.679584026336613 ], [ -81.328193664550724, -4.679584026336613 ], [ -81.328193664550724, -4.679862022399846 ], [ -81.327919006347599, -4.67986011505127 ], [ -81.327919006347599, -4.680138111114502 ], [ -81.327636718749943, -4.680138111114502 ], [ -81.327636718749943, -4.680416107177734 ], [ -81.327079772949219, -4.680416107177734 ], [ -81.327079772949219, -4.67986011505127 ], [ -81.327362060546761, -4.679862022399846 ], [ -81.327362060546761, -4.679306030273381 ], [ -81.327636718749943, -4.679306030273381 ], [ -81.327636718749943, -4.679028034210148 ], [ -81.327919006347599, -4.679028034210148 ], [ -81.327919006347599, -4.678750038146916 ], [ -81.328193664550724, -4.678750038146916 ], [ -81.328193664550724, -4.678194046020508 ], [ -81.328475952148381, -4.678194046020508 ], [ -81.328475952148381, -4.67763710021967 ], [ -81.328193664550724, -4.67763710021967 ], [ -81.328193664550724, -4.676527976989689 ], [ -81.327919006347599, -4.676527976989689 ], [ -81.327919006347599, -4.675971031188965 ], [ -81.328193664550724, -4.675971031188965 ], [ -81.328193664550724, -4.675417900085449 ], [ -81.328475952148381, -4.675417900085449 ], [ -81.328475952148381, -4.674860954284668 ], [ -81.328750610351562, -4.674860954284668 ], [ -81.328750610351562, -4.674582958221436 ], [ -81.329025268554688, -4.674582958221436 ], [ -81.329025268554688, -4.674304962158203 ], [ -81.329307556152344, -4.674304962158203 ], [ -81.329307556152344, -4.674026966094971 ], [ -81.329582214355469, -4.674026966094971 ], [ -81.329582214355469, -4.673748970031738 ], [ -81.329864501953125, -4.673748970031738 ], [ -81.329864501953125, -4.673472881317082 ], [ -81.33013916015625, -4.673472881317082 ], [ -81.33013916015625, -4.673194885253849 ], [ -81.330413818359261, -4.673194885253849 ], [ -81.330413818359261, -4.672916889190617 ], [ -81.330696105956918, -4.672916889190617 ], [ -81.330696105956918, -4.672082901000977 ], [ -81.330413818359261, -4.672082901000977 ], [ -81.330413818359261, -4.670972824096623 ], [ -81.33013916015625, -4.670972824096623 ], [ -81.33013916015625, -4.670138835906926 ], [ -81.329864501953125, -4.670138835906926 ], [ -81.329864501953125, -4.669582843780461 ], [ -81.329582214355469, -4.669582843780461 ], [ -81.329582214355469, -4.669026851654053 ], [ -81.329307556152344, -4.669026851654053 ], [ -81.329307556152344, -4.668472766876221 ], [ -81.329025268554688, -4.668472766876221 ], [ -81.329025268554688, -4.668194770812875 ], [ -81.326805114746094, -4.668194770812875 ], [ -81.326805114746094, -4.667916774749699 ], [ -81.324302673339787, -4.667916774749699 ], [ -81.324302673339787, -4.667638778686467 ], [ -81.324028015136719, -4.667638778686467 ], [ -81.324028015136719, -4.667360782623234 ], [ -81.323753356933594, -4.667360782623234 ], [ -81.323753356933594, -4.667638778686467 ], [ -81.323471069335938, -4.667638778686467 ], [ -81.323471069335938, -4.667916774749699 ], [ -81.322914123535156, -4.667916774749699 ], [ -81.322914123535156, -4.668194770812875 ], [ -81.322639465332031, -4.668194770812875 ], [ -81.322639465332031, -4.668472766876221 ], [ -81.322364807128849, -4.668472766876221 ], [ -81.322364807128849, -4.66874885559082 ], [ -81.322082519531193, -4.66874885559082 ], [ -81.322082519531193, -4.669304847717228 ], [ -81.321807861328068, -4.669304847717228 ], [ -81.321807861328068, -4.669582843780461 ], [ -81.321525573730412, -4.669582843780461 ], [ -81.321525573730412, -4.669860839843693 ], [ -81.321250915527287, -4.669860839843693 ], [ -81.321250915527287, -4.670138835906926 ], [ -81.320968627929574, -4.670138835906926 ], [ -81.320968627929574, -4.670416831970158 ], [ -81.320693969726562, -4.670416831970158 ], [ -81.320693969726562, -4.67069482803339 ], [ -81.319862365722656, -4.67069482803339 ], [ -81.319862365722656, -4.669980049133244 ], [ -81.319862365722656, -4.669026851654053 ], [ -81.320137023925781, -4.669026851654053 ], [ -81.320137023925781, -4.668472766876221 ], [ -81.320419311523438, -4.668472766876221 ], [ -81.320419311523438, -4.668194770812875 ], [ -81.319862365722656, -4.668194770812875 ], [ -81.319862365722656, -4.667916774749699 ], [ -81.319030761718693, -4.667916774749699 ], [ -81.319030761718693, -4.667638778686467 ], [ -81.316253662109375, -4.667638778686467 ], [ -81.316253662109375, -4.667360782623234 ], [ -81.315971374511719, -4.667360782623234 ], [ -81.315971374511719, -4.667082786560002 ], [ -81.315414428710881, -4.667082786560002 ], [ -81.315414428710881, -4.666804790496769 ], [ -81.314857482910099, -4.666804790496769 ], [ -81.314857482910099, -4.666526794433537 ], [ -81.314582824706918, -4.666526794433537 ], [ -81.314582824706918, -4.666248798370304 ], [ -81.31402587890625, -4.666251182556152 ], [ -81.31402587890625, -4.66597318649292 ], [ -81.313751220703125, -4.66597318649292 ], [ -81.313751220703125, -4.665695190429688 ], [ -81.313194274902344, -4.665695190429688 ], [ -81.313194274902344, -4.665417194366341 ], [ -81.312637329101506, -4.665417194366341 ], [ -81.312637329101506, -4.665139198303166 ], [ -81.312362670898381, -4.665139198303166 ], [ -81.312362670898381, -4.664861202239933 ], [ -81.311805725097599, -4.664861202239933 ], [ -81.311805725097599, -4.664583206176701 ], [ -81.311531066894418, -4.664583206176701 ], [ -81.311531066894418, -4.664029121398926 ], [ -81.311248779296875, -4.664029121398926 ], [ -81.311248779296875, -4.663751125335693 ], [ -81.31097412109375, -4.663751125335693 ], [ -81.31097412109375, -4.663195133209229 ], [ -81.310691833496094, -4.663195133209229 ], [ -81.310691833496094, -4.662917137145996 ], [ -81.310417175292969, -4.662917137145996 ], [ -81.310417175292969, -4.662360191345215 ], [ -81.310142517089844, -4.662360191345215 ], [ -81.310142517089844, -4.662082195281982 ], [ -81.309860229492188, -4.662082195281982 ], [ -81.309860229492188, -4.661529064178467 ], [ -81.309585571289006, -4.661529064178467 ], [ -81.309585571289006, -4.661250114440861 ], [ -81.309303283691349, -4.661250114440861 ], [ -81.309303283691349, -4.660694122314453 ], [ -81.309028625488224, -4.660694122314453 ], [ -81.309028625488224, -4.659860134124756 ], [ -81.308746337890568, -4.659860134124756 ], [ -81.308746337890568, -4.658750057220402 ], [ -81.308471679687443, -4.658750057220402 ], [ -81.308471679687443, -4.657638072967472 ], [ -81.308197021484375, -4.657638072967472 ], [ -81.308197021484375, -4.656527996063232 ], [ -81.307914733886719, -4.656527996063232 ], [ -81.307914733886719, -4.655416011810246 ], [ -81.307640075683594, -4.655416011810246 ], [ -81.307640075683594, -4.654305934906006 ], [ -81.307357788085938, -4.654305934906006 ], [ -81.307357788085938, -4.653193950653076 ], [ -81.307083129882812, -4.653193950653076 ], [ -81.307083129882812, -4.652083873748779 ], [ -81.306808471679688, -4.652083873748779 ], [ -81.306808471679688, -4.650693893432617 ], [ -81.306526184082031, -4.650693893432617 ], [ -81.306526184082031, -4.650458812713623 ], [ -81.306526184082031, -4.649026870727482 ], [ -81.306251525878849, -4.649026870727482 ], [ -81.306251525878849, -4.647360801696777 ], [ -81.305969238281193, -4.647360801696777 ], [ -81.305969238281193, -4.645695209503174 ], [ -81.305694580078068, -4.645695209503174 ], [ -81.305694580078068, -4.644027233123722 ], [ -81.305419921874943, -4.644027233123722 ], [ -81.305419921874943, -4.64263916015625 ], [ -81.30513763427723, -4.64263916015625 ], [ -81.30513763427723, -4.642083168029785 ], [ -81.304862976074219, -4.642083168029785 ], [ -81.304862976074219, -4.641249179840088 ], [ -81.304580688476562, -4.641251087188721 ], [ -81.304580688476562, -4.640417098999023 ], [ -81.304306030273438, -4.640417098999023 ], [ -81.304306030273438, -4.639861106872559 ], [ -81.304031372070312, -4.639861106872559 ], [ -81.304031372070312, -4.639305114746094 ], [ -81.30208587646473, -4.639305114746094 ], [ -81.30208587646473, -4.639027118682861 ], [ -81.301803588867074, -4.639027118682861 ], [ -81.301803588867074, -4.638471126556396 ], [ -81.301528930664062, -4.638473033904972 ], [ -81.301528930664062, -4.637917041778508 ], [ -81.301246643066406, -4.637917041778508 ], [ -81.301246643066406, -4.6373610496521 ], [ -81.300971984863281, -4.6373610496521 ], [ -81.300971984863281, -4.636804103851262 ], [ -81.300697326660156, -4.636804103851262 ], [ -81.300697326660156, -4.636250972747746 ], [ -81.3004150390625, -4.636250972747746 ], [ -81.3004150390625, -4.633471965789795 ], [ -81.300140380859375, -4.633471965789795 ], [ -81.300140380859375, -4.626249790191594 ], [ -81.299858093261662, -4.626249790191594 ], [ -81.299858093261662, -4.625693798065129 ], [ -81.299583435058537, -4.625693798065129 ], [ -81.299583435058537, -4.625140190124512 ], [ -81.299308776855412, -4.625140190124512 ], [ -81.299308776855412, -4.624862194061166 ], [ -81.299026489257756, -4.624862194061166 ], [ -81.299026489257756, -4.62458419799799 ], [ -81.298751831054574, -4.62458419799799 ], [ -81.298751831054574, -4.624306201934758 ], [ -81.298469543457031, -4.624306201934758 ], [ -81.298469543457031, -4.624028205871525 ], [ -81.298751831054574, -4.624028205871525 ], [ -81.298751831054574, -4.62347221374506 ], [ -81.298469543457031, -4.62347221374506 ], [ -81.298469543457031, -4.622918128967285 ], [ -81.298194885253906, -4.622918128967285 ], [ -81.298194885253906, -4.622640132904053 ], [ -81.297920227050781, -4.622640132904053 ], [ -81.297920227050781, -4.622084140777588 ], [ -81.297637939453125, -4.622084140777588 ], [ -81.297637939453125, -4.621527194976807 ], [ -81.29736328125, -4.621527194976807 ], [ -81.29736328125, -4.620971202850342 ], [ -81.297080993652344, -4.620971202850342 ], [ -81.297080993652344, -4.620417118072453 ], [ -81.296806335449162, -4.620417118072453 ], [ -81.296806335449162, -4.619859218597412 ], [ -81.296524047851506, -4.619861125946045 ], [ -81.296524047851506, -4.61930513381958 ], [ -81.296249389648381, -4.61930513381958 ], [ -81.296249389648381, -4.615417003631535 ], [ -81.296524047851506, -4.615417003631535 ], [ -81.296524047851506, -4.608750820159912 ], [ -81.296806335449162, -4.608750820159912 ], [ -81.296806335449162, -4.605693817138615 ], [ -81.296524047851506, -4.605693817138615 ], [ -81.296524047851506, -4.60513782501215 ], [ -81.296249389648381, -4.60513782501215 ], [ -81.296249389648381, -4.604584217071533 ], [ -81.295974731445256, -4.604584217071533 ], [ -81.295974731445256, -4.604028224945068 ], [ -81.295692443847599, -4.604028224945068 ], [ -81.295692443847599, -4.603472232818547 ], [ -81.295417785644531, -4.603472232818547 ], [ -81.295417785644531, -4.602915763854867 ], [ -81.295135498046875, -4.602915763854867 ], [ -81.295135498046875, -4.602359771728459 ], [ -81.29486083984375, -4.602362155914307 ], [ -81.29486083984375, -4.601806163787842 ], [ -81.294586181640625, -4.601806163787842 ], [ -81.294586181640625, -4.600972175598145 ], [ -81.294303894042969, -4.600972175598145 ], [ -81.294303894042969, -4.599584102630615 ], [ -81.294029235839844, -4.599584102630615 ], [ -81.294029235839844, -4.599093914031926 ], [ -81.294029235839844, -4.598194122314453 ], [ -81.293746948242188, -4.598194122314453 ], [ -81.293746948242188, -4.597084045410156 ], [ -81.293472290039006, -4.597084045410156 ], [ -81.293472290039006, -4.595971107482853 ], [ -81.293197631835881, -4.595971107482853 ], [ -81.293197631835881, -4.595139980316105 ], [ -81.292915344238224, -4.595139980316105 ], [ -81.292915344238224, -4.594583034515267 ], [ -81.292640686035099, -4.594583034515267 ], [ -81.292640686035099, -4.594027042388859 ], [ -81.292358398437386, -4.594027042388859 ], [ -81.292358398437386, -4.5934739112854 ], [ -81.292083740234375, -4.593471050262394 ], [ -81.292083740234375, -4.592916965484619 ], [ -81.29180908203125, -4.592916965484619 ], [ -81.29180908203125, -4.592360973358154 ], [ -81.291526794433594, -4.592360973358154 ], [ -81.291526794433594, -4.592082977294922 ], [ -81.290969848632812, -4.592082977294922 ], [ -81.290969848632812, -4.591804981231689 ], [ -81.290695190429688, -4.591804981231689 ], [ -81.290695190429688, -4.591526985168457 ], [ -81.290138244628849, -4.591526985168457 ], [ -81.290138244628849, -4.591248989105225 ], [ -81.289863586425724, -4.591248989105225 ], [ -81.289863586425724, -4.590972900390625 ], [ -81.289581298828068, -4.590972900390625 ], [ -81.289581298828068, -4.59041690826416 ], [ -81.289306640624886, -4.59041690826416 ], [ -81.289306640624886, -4.589860916137695 ], [ -81.28902435302723, -4.589860916137695 ], [ -81.28902435302723, -4.58930492401123 ], [ -81.288749694824219, -4.58930492401123 ], [ -81.288749694824219, -4.589026927947998 ], [ -81.288475036621094, -4.589026927947998 ], [ -81.288475036621094, -4.588472843170109 ], [ -81.288192749023438, -4.588472843170109 ], [ -81.288192749023438, -4.587916851043701 ], [ -81.287918090820312, -4.587916851043701 ], [ -81.287918090820312, -4.587360858917236 ], [ -81.287635803222656, -4.587360858917236 ], [ -81.287635803222656, -4.586804866790771 ], [ -81.287361145019531, -4.586804866790771 ], [ -81.287361145019531, -4.585138797759953 ], [ -81.287086486816349, -4.585138797759953 ], [ -81.287086486816349, -4.581807136535645 ], [ -81.286804199218693, -4.581807136535645 ], [ -81.286804199218693, -4.578470230102482 ], [ -81.286529541015568, -4.578472137451172 ], [ -81.286529541015568, -4.576806068420353 ], [ -81.287086486816349, -4.576806068420353 ], [ -81.287086486816349, -4.576250076293888 ], [ -81.286804199218693, -4.576250076293888 ], [ -81.286804199218693, -4.57569408416748 ], [ -81.287086486816349, -4.57569408416748 ], [ -81.287086486816349, -4.575416088104248 ], [ -81.286804199218693, -4.575416088104248 ], [ -81.286804199218693, -4.575138092041016 ], [ -81.286529541015568, -4.575139999389535 ], [ -81.286529541015568, -4.574584007263127 ], [ -81.286247253417912, -4.574584007263127 ], [ -81.286247253417912, -4.574028015136662 ], [ -81.285697937011719, -4.574028015136662 ], [ -81.285697937011719, -4.573472023010197 ], [ -81.284858703613281, -4.573472023010197 ], [ -81.284858703613281, -4.573194026946965 ], [ -81.2843017578125, -4.573194026946965 ], [ -81.2843017578125, -4.572916030883732 ], [ -81.284027099609318, -4.572916030883732 ], [ -81.284027099609318, -4.5726380348205 ], [ -81.283470153808537, -4.5726380348205 ], [ -81.283470153808537, -4.572360038757324 ], [ -81.282363891601562, -4.572360038757324 ], [ -81.282363891601562, -4.5726380348205 ], [ -81.282081604003906, -4.5726380348205 ], [ -81.282081604003906, -4.572916030883732 ], [ -81.281524658203125, -4.572916030883732 ], [ -81.281524658203125, -4.574306011199894 ], [ -81.281806945800781, -4.574306011199894 ], [ -81.281806945800781, -4.575139999389535 ], [ -81.281524658203125, -4.575138092041016 ], [ -81.281524658203125, -4.575416088104248 ], [ -81.28125, -4.575416088104248 ], [ -81.28125, -4.575972080230713 ], [ -81.280418395996037, -4.575972080230713 ], [ -81.280418395996037, -4.57569408416748 ], [ -81.280136108398381, -4.57569408416748 ], [ -81.280136108398381, -4.575416088104248 ], [ -81.279586791992188, -4.575416088104248 ], [ -81.279586791992188, -4.575138092041016 ], [ -81.279029846191406, -4.575139999389535 ], [ -81.279029846191406, -4.574306011199894 ], [ -81.279304504394531, -4.574306011199894 ], [ -81.279304504394531, -4.574028015136662 ], [ -81.279029846191406, -4.574028015136662 ], [ -81.279029846191406, -4.573194026946965 ], [ -81.279304504394531, -4.573194026946965 ], [ -81.279304504394531, -4.572916030883732 ], [ -81.279029846191406, -4.572916030883732 ], [ -81.279029846191406, -4.572360038757324 ], [ -81.277915954589844, -4.572361946105957 ], [ -81.277915954589844, -4.572083950042725 ], [ -81.27569580078125, -4.572083950042725 ], [ -81.27569580078125, -4.571805953979492 ], [ -81.275413513183594, -4.571805953979492 ], [ -81.275413513183594, -4.571527957916146 ], [ -81.275138854980469, -4.571527957916146 ], [ -81.275138854980469, -4.571249961852971 ], [ -81.274864196777344, -4.571249961852971 ], [ -81.274864196777344, -4.570971965789738 ], [ -81.274581909179688, -4.570971965789738 ], [ -81.274581909179688, -4.570693969726506 ], [ -81.274307250976506, -4.570693969726506 ], [ -81.274307250976506, -4.57013988494873 ], [ -81.274581909179688, -4.57013988494873 ], [ -81.274581909179688, -4.569583892822266 ], [ -81.274864196777344, -4.569583892822266 ], [ -81.274864196777344, -4.569027900695801 ], [ -81.275138854980469, -4.569027900695801 ], [ -81.275138854980469, -4.56847095489502 ], [ -81.275413513183594, -4.56847095489502 ], [ -81.275413513183594, -4.567917823791504 ], [ -81.275970458984375, -4.567917823791504 ], [ -81.275970458984375, -4.567360877990666 ], [ -81.276252746582031, -4.567360877990666 ], [ -81.276252746582031, -4.566804885864258 ], [ -81.276527404785043, -4.566804885864258 ], [ -81.276527404785043, -4.563748836517277 ], [ -81.276802062988224, -4.563748836517277 ], [ -81.276802062988224, -4.563195228576546 ], [ -81.277084350585881, -4.563195228576546 ], [ -81.277084350585881, -4.562639236450138 ], [ -81.277359008789006, -4.562639236450138 ], [ -81.277359008789006, -4.562082767486515 ], [ -81.277641296386662, -4.562082767486515 ], [ -81.277641296386662, -4.561804771423283 ], [ -81.277915954589844, -4.561804771423283 ], [ -81.277915954589844, -4.561248779296818 ], [ -81.278472900390625, -4.561251163482666 ], [ -81.278472900390625, -4.560695171356201 ], [ -81.27874755859375, -4.560695171356201 ], [ -81.27874755859375, -4.560417175292969 ], [ -81.279029846191406, -4.560417175292969 ], [ -81.279029846191406, -4.558749198913517 ], [ -81.279304504394531, -4.558749198913517 ], [ -81.279304504394531, -4.557639122009277 ], [ -81.279586791992188, -4.557639122009277 ], [ -81.279586791992188, -4.557361125946045 ], [ -81.279861450195256, -4.557361125946045 ], [ -81.279861450195256, -4.55680513381958 ], [ -81.280136108398381, -4.55680513381958 ], [ -81.280136108398381, -4.556251049041748 ], [ -81.280418395996037, -4.556251049041748 ], [ -81.280418395996037, -4.555973052978516 ], [ -81.280136108398381, -4.555973052978516 ], [ -81.280136108398381, -4.555695056915283 ], [ -81.280418395996037, -4.555695056915283 ], [ -81.280418395996037, -4.554306983947697 ], [ -81.280136108398381, -4.554306983947697 ], [ -81.280136108398381, -4.552638053893986 ], [ -81.280418395996037, -4.552638053893986 ], [ -81.280418395996037, -4.552083969116211 ], [ -81.280975341796818, -4.552083969116211 ], [ -81.280975341796818, -4.551805973052979 ], [ -81.28125, -4.551805973052979 ], [ -81.28125, -4.551249980926514 ], [ -81.280975341796818, -4.551249980926514 ], [ -81.280975341796818, -4.550415992736703 ], [ -81.280693054199162, -4.550415992736703 ], [ -81.280693054199162, -4.550137996673527 ], [ -81.280975341796818, -4.550137996673527 ], [ -81.280975341796818, -4.549860000610295 ], [ -81.280418395996037, -4.549860000610295 ], [ -81.280418395996037, -4.549583911895752 ], [ -81.279861450195256, -4.549583911895752 ], [ -81.279861450195256, -4.54930591583252 ], [ -81.279586791992188, -4.54930591583252 ], [ -81.279586791992188, -4.548749923706055 ], [ -81.279304504394531, -4.548749923706055 ], [ -81.279304504394531, -4.547637939453125 ], [ -81.279586791992188, -4.547637939453125 ], [ -81.279586791992188, -4.547083854675293 ], [ -81.279304504394531, -4.547083854675293 ], [ -81.279304504394531, -4.545417785644474 ], [ -81.279586791992188, -4.545417785644474 ], [ -81.279586791992188, -4.542640209197941 ], [ -81.279861450195256, -4.542640209197941 ], [ -81.279861450195256, -4.541806221008244 ], [ -81.280418395996037, -4.541806221008244 ], [ -81.280418395996037, -4.541248798370248 ], [ -81.280693054199162, -4.541248798370248 ], [ -81.280693054199162, -4.540970802307072 ], [ -81.280975341796818, -4.540974140167236 ], [ -81.280975341796818, -4.53986120223999 ], [ -81.28125, -4.53986120223999 ], [ -81.28125, -4.539305210113525 ], [ -81.281524658203125, -4.539305210113525 ], [ -81.281524658203125, -4.538749217987061 ], [ -81.281806945800781, -4.538749217987061 ], [ -81.281806945800781, -4.538471221923714 ], [ -81.282081604003906, -4.538471221923714 ], [ -81.282081604003906, -4.537915229797306 ], [ -81.282363891601562, -4.537915229797306 ], [ -81.282363891601562, -4.537359237670842 ], [ -81.282638549804688, -4.537359237670842 ], [ -81.282638549804688, -4.537080764770451 ], [ -81.282913208007756, -4.537080764770451 ], [ -81.282913208007756, -4.536249160766602 ], [ -81.283195495605412, -4.536249160766602 ], [ -81.283195495605412, -4.535971164703369 ], [ -81.283470153808537, -4.535973072051945 ], [ -81.283470153808537, -4.535417079925537 ], [ -81.283752441406193, -4.535417079925537 ], [ -81.283752441406193, -4.534861087799072 ], [ -81.284027099609318, -4.534861087799072 ], [ -81.284027099609318, -4.53458309173584 ], [ -81.2843017578125, -4.53458309173584 ], [ -81.2843017578125, -4.534027099609375 ], [ -81.284584045410156, -4.534027099609375 ], [ -81.284584045410156, -4.533749103546143 ], [ -81.284858703613281, -4.533751010894719 ], [ -81.284858703613281, -4.533195018768254 ], [ -81.285140991210938, -4.533195018768254 ], [ -81.285140991210938, -4.532639026641789 ], [ -81.285697937011719, -4.532639026641789 ], [ -81.285697937011719, -4.532361030578556 ], [ -81.28597259521473, -4.532361030578556 ], [ -81.28597259521473, -4.531805038452148 ], [ -81.286247253417912, -4.531805038452148 ], [ -81.286247253417912, -4.531249046325684 ], [ -81.286529541015568, -4.531249046325684 ], [ -81.286529541015568, -4.530971050262451 ], [ -81.287086486816349, -4.53097295761097 ], [ -81.287086486816349, -4.530416965484562 ], [ -81.287361145019531, -4.530416965484562 ], [ -81.287361145019531, -4.53013896942133 ], [ -81.287635803222656, -4.53013896942133 ], [ -81.287635803222656, -4.529582977294865 ], [ -81.288192749023438, -4.529582977294865 ], [ -81.288192749023438, -4.529304027557259 ], [ -81.287918090820312, -4.529304027557259 ], [ -81.287918090820312, -4.529026031494084 ], [ -81.288192749023438, -4.529026031494084 ], [ -81.288192749023438, -4.528748035430851 ], [ -81.288475036621094, -4.528750896453857 ], [ -81.288475036621094, -4.528194904327393 ], [ -81.288749694824219, -4.528194904327393 ], [ -81.288749694824219, -4.527915954589844 ], [ -81.28902435302723, -4.527915954589844 ], [ -81.28902435302723, -4.527359962463379 ], [ -81.289306640624886, -4.527359962463379 ], [ -81.289306640624886, -4.527081966400146 ], [ -81.289581298828068, -4.527081966400146 ], [ -81.289581298828068, -4.526803970336914 ], [ -81.289863586425724, -4.526803970336914 ], [ -81.289863586425724, -4.526249885559082 ], [ -81.290138244628849, -4.526249885559082 ], [ -81.290138244628849, -4.52597188949585 ], [ -81.290412902832031, -4.52597188949585 ], [ -81.290412902832031, -4.525693893432617 ], [ -81.290695190429688, -4.525693893432617 ], [ -81.290695190429688, -4.525137901306152 ], [ -81.290969848632812, -4.525137901306152 ], [ -81.290969848632812, -4.524861812591496 ], [ -81.291252136230469, -4.52485990524292 ], [ -81.291252136230469, -4.524305820465031 ], [ -81.291526794433594, -4.524305820465031 ], [ -81.291526794433594, -4.523749828338566 ], [ -81.29180908203125, -4.523749828338566 ], [ -81.29180908203125, -4.523471832275334 ], [ -81.292083740234375, -4.523471832275334 ], [ -81.292083740234375, -4.523193836212101 ], [ -81.292358398437386, -4.523193836212101 ], [ -81.292358398437386, -4.522915840148869 ], [ -81.292640686035099, -4.522915840148869 ], [ -81.292640686035099, -4.522362232208195 ], [ -81.292915344238224, -4.522362232208195 ], [ -81.292915344238224, -4.521805763244515 ], [ -81.293197631835881, -4.521805763244515 ], [ -81.293197631835881, -4.521249771118107 ], [ -81.293472290039006, -4.521249771118107 ], [ -81.293472290039006, -4.520693778991642 ], [ -81.293746948242188, -4.520693778991642 ], [ -81.293746948242188, -4.520137786865178 ], [ -81.294029235839844, -4.520137786865178 ], [ -81.294029235839844, -4.519581794738713 ], [ -81.294303894042969, -4.519584178924561 ], [ -81.294303894042969, -4.519028186797982 ], [ -81.294586181640625, -4.519028186797982 ], [ -81.294586181640625, -4.518472194671574 ], [ -81.29486083984375, -4.518472194671574 ], [ -81.29486083984375, -4.517916202545109 ], [ -81.295135498046875, -4.517916202545109 ], [ -81.295135498046875, -4.517084121704102 ], [ -81.295417785644531, -4.517084121704102 ], [ -81.295417785644531, -4.51541805267334 ], [ -81.295692443847599, -4.51541805267334 ], [ -81.295692443847599, -4.515140056610107 ], [ -81.295974731445256, -4.515140056610107 ], [ -81.295974731445256, -4.514305114746094 ], [ -81.296249389648381, -4.514305114746094 ], [ -81.296249389648381, -4.513195991516056 ], [ -81.296524047851506, -4.513195991516056 ], [ -81.296524047851506, -4.511527061462346 ], [ -81.296806335449162, -4.511527061462346 ], [ -81.296806335449162, -4.510416984558105 ], [ -81.297080993652344, -4.510416984558105 ], [ -81.297080993652344, -4.510138988494873 ], [ -81.29736328125, -4.510138988494873 ], [ -81.29736328125, -4.509582996368351 ], [ -81.297080993652344, -4.509582996368351 ], [ -81.297080993652344, -4.509305000305119 ], [ -81.29736328125, -4.509305000305119 ], [ -81.29736328125, -4.508472919464111 ], [ -81.297637939453125, -4.508471012115422 ], [ -81.297637939453125, -4.507916927337646 ], [ -81.297920227050781, -4.507916927337646 ], [ -81.297920227050781, -4.506804943084717 ], [ -81.298194885253906, -4.506804943084717 ], [ -81.298194885253906, -4.505972862243652 ], [ -81.297920227050781, -4.505972862243652 ], [ -81.297920227050781, -4.504860877990723 ], [ -81.297637939453125, -4.504860877990723 ], [ -81.297637939453125, -4.503750801086369 ], [ -81.297920227050781, -4.503750801086369 ], [ -81.297920227050781, -4.502638816833496 ], [ -81.298194885253906, -4.502638816833496 ], [ -81.298194885253906, -4.501807212829533 ], [ -81.298469543457031, -4.501807212829533 ], [ -81.298469543457031, -4.500693798065072 ], [ -81.298751831054574, -4.500693798065072 ], [ -81.298751831054574, -4.499581813812199 ], [ -81.299026489257756, -4.49958515167225 ], [ -81.299026489257756, -4.49875020980835 ], [ -81.299308776855412, -4.49875020980835 ], [ -81.299308776855412, -4.498194217681885 ], [ -81.299583435058537, -4.498194217681885 ], [ -81.299583435058537, -4.497916221618539 ], [ -81.299858093261662, -4.497916221618539 ], [ -81.299858093261662, -4.497360229492131 ], [ -81.300140380859375, -4.497360229492131 ], [ -81.300140380859375, -4.496525764465275 ], [ -81.3004150390625, -4.496525764465275 ], [ -81.3004150390625, -4.496250152587891 ], [ -81.300140380859375, -4.496250152587891 ], [ -81.300140380859375, -4.49604320526123 ], [ -81.3004150390625, -4.495972156524658 ], [ -81.3004150390625, -4.495138168334961 ], [ -81.300697326660156, -4.495138168334961 ], [ -81.300697326660156, -4.494582176208496 ], [ -81.300971984863281, -4.494584083557129 ], [ -81.300971984863281, -4.494028091430664 ], [ -81.301246643066406, -4.494028091430664 ], [ -81.301246643066406, -4.493750095367432 ], [ -81.301528930664062, -4.493750095367432 ], [ -81.301528930664062, -4.492638111114502 ], [ -81.301803588867074, -4.492638111114502 ], [ -81.301803588867074, -4.49236011505127 ], [ -81.30208587646473, -4.492362022399846 ], [ -81.30208587646473, -4.492084026336613 ], [ -81.302635192871037, -4.492084026336613 ], [ -81.302635192871037, -4.491806030273381 ], [ -81.302917480468693, -4.491806030273381 ], [ -81.302917480468693, -4.491250038146973 ], [ -81.303192138671875, -4.491250038146973 ], [ -81.303192138671875, -4.490416049957275 ], [ -81.303474426269531, -4.490416049957275 ], [ -81.303474426269531, -4.489859104156437 ], [ -81.303749084472656, -4.489861965179387 ], [ -81.303749084472656, -4.489305973052922 ], [ -81.304031372070312, -4.489305973052922 ], [ -81.304031372070312, -4.488749980926457 ], [ -81.304306030273438, -4.488749980926457 ], [ -81.304306030273438, -4.488471031188908 ], [ -81.304031372070312, -4.488471031188908 ], [ -81.304031372070312, -4.487082958221436 ], [ -81.303749084472656, -4.487082958221436 ], [ -81.303749084472656, -4.485694885253906 ], [ -81.303474426269531, -4.485694885253906 ], [ -81.303474426269531, -4.485416889190674 ], [ -81.303749084472656, -4.485416889190674 ], [ -81.303749084472656, -4.484582901000977 ], [ -81.304031372070312, -4.484582901000977 ], [ -81.304031372070312, -4.484026908874512 ], [ -81.304306030273438, -4.484026908874512 ], [ -81.304306030273438, -4.483472824096623 ], [ -81.304580688476562, -4.483472824096623 ], [ -81.304580688476562, -4.48319482803339 ], [ -81.304862976074219, -4.48319482803339 ], [ -81.304862976074219, -4.482638835906926 ], [ -81.305419921874943, -4.482638835906926 ], [ -81.305419921874943, -4.482360839843693 ], [ -81.30513763427723, -4.482360839843693 ], [ -81.30513763427723, -4.482082843780518 ], [ -81.305419921874943, -4.482082843780518 ], [ -81.305419921874943, -4.481526851654053 ], [ -81.305694580078068, -4.481526851654053 ], [ -81.305694580078068, -4.48124885559082 ], [ -81.305969238281193, -4.48124885559082 ], [ -81.305969238281193, -4.480138778686467 ], [ -81.306251525878849, -4.480138778686467 ], [ -81.306251525878849, -4.479860782623234 ], [ -81.305969238281193, -4.479860782623234 ], [ -81.305969238281193, -4.479582786560002 ], [ -81.305419921874943, -4.479582786560002 ], [ -81.305419921874943, -4.479304790496769 ], [ -81.30513763427723, -4.479304790496769 ], [ -81.30513763427723, -4.479026794433537 ], [ -81.304862976074219, -4.479026794433537 ], [ -81.304862976074219, -4.478748798370304 ], [ -81.304031372070312, -4.478748798370304 ], [ -81.304031372070312, -4.478470802307129 ], [ -81.303749084472656, -4.478470802307129 ], [ -81.303749084472656, -4.478195190429631 ], [ -81.303474426269531, -4.478195190429631 ], [ -81.303474426269531, -4.477917194366398 ], [ -81.303192138671875, -4.477917194366398 ], [ -81.303192138671875, -4.477639198303166 ], [ -81.302917480468693, -4.477639198303166 ], [ -81.302917480468693, -4.477361202239933 ], [ -81.302635192871037, -4.477361202239933 ], [ -81.302635192871037, -4.476805210113469 ], [ -81.30208587646473, -4.476805210113469 ], [ -81.30208587646473, -4.476251125335693 ], [ -81.302360534667912, -4.476251125335693 ], [ -81.302360534667912, -4.475973129272461 ], [ -81.302635192871037, -4.475973129272461 ], [ -81.302635192871037, -4.474582195281982 ], [ -81.302360534667912, -4.474582195281982 ], [ -81.302360534667912, -4.474307060241699 ], [ -81.301528930664062, -4.474307060241699 ], [ -81.301528930664062, -4.474029064178467 ], [ -81.301246643066406, -4.474029064178467 ], [ -81.301246643066406, -4.473751068115234 ], [ -81.300971984863281, -4.473751068115234 ], [ -81.300971984863281, -4.473472118377686 ], [ -81.300140380859375, -4.473472118377686 ], [ -81.300140380859375, -4.473194122314453 ], [ -81.299499511718693, -4.473194122314453 ], [ -81.299308776855412, -4.473194122314453 ], [ -81.299308776855412, -4.472916126251221 ], [ -81.298751831054574, -4.472916126251221 ], [ -81.298751831054574, -4.472638130187988 ], [ -81.298469543457031, -4.472638130187988 ], [ -81.298469543457031, -4.472084045410099 ], [ -81.298194885253906, -4.472084045410099 ], [ -81.298194885253906, -4.471528053283635 ], [ -81.297920227050781, -4.471528053283635 ], [ -81.297920227050781, -4.47097206115717 ], [ -81.297637939453125, -4.47097206115717 ], [ -81.297637939453125, -4.469305992126351 ], [ -81.297920227050781, -4.469305992126351 ], [ -81.297920227050781, -4.469027996063176 ], [ -81.298194885253906, -4.469027996063176 ], [ -81.298194885253906, -4.46875 ], [ -81.298751831054574, -4.46875 ], [ -81.298751831054574, -4.467916011810246 ], [ -81.298263549804631, -4.467916011810246 ], [ -81.297920227050781, -4.467916011810246 ], [ -81.297920227050781, -4.467083930969238 ], [ -81.297637939453125, -4.467083930969238 ], [ -81.297637939453125, -4.466805934906006 ], [ -81.297920227050781, -4.466805934906006 ], [ -81.297920227050781, -4.466249942779541 ], [ -81.298194885253906, -4.466249942779541 ], [ -81.298194885253906, -4.465971946716309 ], [ -81.297920227050781, -4.465971946716309 ], [ -81.297920227050781, -4.465415954589787 ], [ -81.298194885253906, -4.465415954589787 ], [ -81.298194885253906, -4.464861869812012 ], [ -81.298469543457031, -4.464861869812012 ], [ -81.298469543457031, -4.465139865875244 ], [ -81.298751831054574, -4.465139865875244 ], [ -81.298751831054574, -4.465415954589787 ], [ -81.299026489257756, -4.465415954589787 ], [ -81.299026489257756, -4.464861869812012 ], [ -81.299308776855412, -4.464861869812012 ], [ -81.299308776855412, -4.463193893432617 ], [ -81.299583435058537, -4.463193893432617 ], [ -81.299583435058537, -4.462361812591553 ], [ -81.299858093261662, -4.462361812591553 ], [ -81.299858093261662, -4.461527824401855 ], [ -81.300140380859375, -4.461527824401855 ], [ -81.300140380859375, -4.460959911346436 ], [ -81.300140380859375, -4.460692882537842 ], [ -81.3004150390625, -4.460692882537842 ], [ -81.3004150390625, -4.459860801696721 ], [ -81.300140380859375, -4.459860801696721 ], [ -81.300140380859375, -4.459026813507023 ], [ -81.298469543457031, -4.459026813507023 ], [ -81.298469543457031, -4.458748817443791 ], [ -81.296806335449162, -4.458748817443791 ], [ -81.296806335449162, -4.458192825317326 ], [ -81.295417785644531, -4.458192825317326 ], [ -81.295417785644531, -4.457917213439941 ], [ -81.295135498046875, -4.457917213439941 ], [ -81.295135498046875, -4.457083225250187 ], [ -81.29486083984375, -4.457083225250187 ], [ -81.29486083984375, -4.456805229186955 ], [ -81.293746948242188, -4.456805229186955 ], [ -81.293746948242188, -4.456527233123722 ], [ -81.293472290039006, -4.456527233123722 ], [ -81.293472290039006, -4.455695152282715 ], [ -81.293197631835881, -4.455695152282715 ], [ -81.293197631835881, -4.45513916015625 ], [ -81.292915344238224, -4.45513916015625 ], [ -81.292915344238224, -4.454583168029785 ], [ -81.291252136230469, -4.454583168029785 ], [ -81.291252136230469, -4.45402717590332 ], [ -81.291526794433594, -4.45402717590332 ], [ -81.291526794433594, -4.453471183776799 ], [ -81.29180908203125, -4.453473091125488 ], [ -81.29180908203125, -4.453195095062256 ], [ -81.291252136230469, -4.453195095062256 ], [ -81.291252136230469, -4.452917098999023 ], [ -81.290695190429688, -4.452917098999023 ], [ -81.290695190429688, -4.452639102935791 ], [ -81.290138244628849, -4.452639102935791 ], [ -81.290138244628849, -4.452361106872559 ], [ -81.289695739746094, -4.452361106872559 ], [ -81.28902435302723, -4.452361106872559 ], [ -81.28902435302723, -4.452083110809326 ], [ -81.288749694824219, -4.452083110809326 ], [ -81.288749694824219, -4.451805114746094 ], [ -81.287918090820312, -4.451805114746094 ], [ -81.287918090820312, -4.452639102935791 ], [ -81.288192749023438, -4.452639102935791 ], [ -81.288192749023438, -4.453471183776799 ], [ -81.287918090820312, -4.453473091125488 ], [ -81.287918090820312, -4.453195095062256 ], [ -81.287635803222656, -4.453195095062256 ], [ -81.287635803222656, -4.453473091125488 ], [ -81.287361145019531, -4.453471183776799 ], [ -81.287361145019531, -4.453749179839974 ], [ -81.286804199218693, -4.453749179839974 ], [ -81.286804199218693, -4.45402717590332 ], [ -81.286529541015568, -4.45402717590332 ], [ -81.286529541015568, -4.454305171966553 ], [ -81.285697937011719, -4.454305171966553 ], [ -81.285697937011719, -4.45402717590332 ], [ -81.285415649414062, -4.45402717590332 ], [ -81.285415649414062, -4.453749179839974 ], [ -81.283843994140568, -4.453749179839974 ], [ -81.282363891601562, -4.453749179839974 ], [ -81.282363891601562, -4.453471183776799 ], [ -81.281806945800781, -4.453473091125488 ], [ -81.281806945800781, -4.453195095062256 ], [ -81.281524658203125, -4.453195095062256 ], [ -81.281524658203125, -4.452917098999023 ], [ -81.280975341796818, -4.452917098999023 ], [ -81.280975341796818, -4.452639102935791 ], [ -81.280693054199162, -4.452639102935791 ], [ -81.280693054199162, -4.452361106872559 ], [ -81.280136108398381, -4.452361106872559 ], [ -81.280136108398381, -4.452083110809326 ], [ -81.279861450195256, -4.452083110809326 ], [ -81.279861450195256, -4.451805114746094 ], [ -81.279304504394531, -4.451805114746094 ], [ -81.279304504394531, -4.451527118682861 ], [ -81.279029846191406, -4.451527118682861 ], [ -81.279029846191406, -4.451249122619629 ], [ -81.278472900390625, -4.451249122619629 ], [ -81.278472900390625, -4.450971126556396 ], [ -81.2781982421875, -4.450973033904972 ], [ -81.278190612792969, -4.450695037841797 ], [ -81.277641296386662, -4.450695037841797 ], [ -81.277641296386662, -4.450417041778564 ], [ -81.277359008789006, -4.450417041778564 ], [ -81.277359008789006, -4.449583053588867 ], [ -81.277084350585881, -4.449583053588867 ], [ -81.277084350585881, -4.448194980621281 ], [ -81.276802062988224, -4.448194980621281 ], [ -81.276802062988224, -4.446806907653809 ], [ -81.276527404785043, -4.446806907653809 ], [ -81.276527404785043, -4.445971965789795 ], [ -81.276252746582031, -4.445971965789795 ], [ -81.276252746582031, -4.445693969726562 ], [ -81.27569580078125, -4.445693969726562 ], [ -81.27569580078125, -4.446528911590576 ], [ -81.275520324707031, -4.446528911590576 ], [ -81.275413513183594, -4.446528911590576 ], [ -81.275413513183594, -4.446806907653809 ], [ -81.274581909179688, -4.446806907653809 ], [ -81.274581909179688, -4.446249961853027 ], [ -81.274307250976506, -4.446249961853027 ], [ -81.274307250976506, -4.445693969726562 ], [ -81.274024963378849, -4.445693969726562 ], [ -81.274024963378849, -4.444859981536865 ], [ -81.273750305175724, -4.444859981536865 ], [ -81.273750305175724, -4.444305896759033 ], [ -81.273475646972543, -4.444305896759033 ], [ -81.273475646972543, -4.443471908569336 ], [ -81.273193359374886, -4.443471908569336 ], [ -81.273193359374886, -4.442915916442871 ], [ -81.272918701171875, -4.442915916442871 ], [ -81.272918701171875, -4.441805839538517 ], [ -81.273193359374886, -4.441805839538517 ], [ -81.273193359374886, -4.440693855285645 ], [ -81.273475646972543, -4.440693855285645 ], [ -81.273475646972543, -4.439861774444523 ], [ -81.272918701171875, -4.439861774444523 ], [ -81.272918701171875, -4.439583778381291 ], [ -81.272361755371094, -4.439583778381291 ], [ -81.272361755371094, -4.439305782318058 ], [ -81.272087097167969, -4.439305782318058 ], [ -81.272087097167969, -4.438749790191594 ], [ -81.271804809570312, -4.438749790191594 ], [ -81.271804809570312, -4.438471794128361 ], [ -81.271530151367188, -4.438471794128361 ], [ -81.271530151367188, -4.437915802001953 ], [ -81.271247863769474, -4.437915802001953 ], [ -81.271247863769474, -4.437637805938721 ], [ -81.270973205566349, -4.437637805938721 ], [ -81.270973205566349, -4.43708419799799 ], [ -81.270690917968693, -4.43708419799799 ], [ -81.270690917968693, -4.436806201934758 ], [ -81.270416259765568, -4.436806201934758 ], [ -81.270416259765568, -4.436250209808293 ], [ -81.270141601562386, -4.436250209808293 ], [ -81.270141601562386, -4.43597221374506 ], [ -81.269859313964844, -4.43597221374506 ], [ -81.269859313964844, -4.435418128967285 ], [ -81.269584655761719, -4.435418128967285 ], [ -81.269584655761719, -4.435140132904053 ], [ -81.269454956054631, -4.435140132904053 ], [ -81.269302368164062, -4.435140132904053 ], [ -81.269302368164062, -4.434780120849553 ], [ -81.269302368164062, -4.434584140777588 ], [ -81.269027709960938, -4.434584140777588 ], [ -81.269027709960938, -4.434306144714242 ], [ -81.268753051757812, -4.434306144714242 ], [ -81.268753051757812, -4.433749198913574 ], [ -81.268470764160156, -4.433749198913574 ], [ -81.268470764160156, -4.433500766754094 ], [ -81.268470764160156, -4.433196067810059 ], [ -81.268196105956974, -4.433196067810059 ], [ -81.268196105956974, -4.432637214660531 ], [ -81.267913818359318, -4.432639122009277 ], [ -81.267913818359318, -4.43180513381958 ], [ -81.267639160156193, -4.43180513381958 ], [ -81.267639160156193, -4.430971145629883 ], [ -81.267364501953068, -4.430971145629883 ], [ -81.267364501953068, -4.430417060851994 ], [ -81.267082214355412, -4.430417060851994 ], [ -81.267082214355412, -4.429861068725529 ], [ -81.265693664550781, -4.429861068725529 ], [ -81.265693664550781, -4.427639007568303 ], [ -81.265419006347656, -4.427639007568303 ], [ -81.265419006347656, -4.42736101150507 ], [ -81.26513671875, -4.42736101150507 ], [ -81.26513671875, -4.425138950347787 ], [ -81.264862060546818, -4.425138950347787 ], [ -81.264862060546818, -4.422916889190674 ], [ -81.264579772949162, -4.422916889190674 ], [ -81.264579772949162, -4.422638893127441 ], [ -81.264694213867131, -4.422638893127441 ], [ -81.264862060546818, -4.422638893127441 ], [ -81.264862060546818, -4.422360897064209 ], [ -81.26513671875, -4.422360897064209 ], [ -81.26513671875, -4.422082901000977 ], [ -81.264862060546818, -4.422082901000977 ], [ -81.264862060546818, -4.421250820159912 ], [ -81.264579772949162, -4.421250820159912 ], [ -81.264579772949162, -4.420137882232666 ], [ -81.264305114746037, -4.420137882232666 ], [ -81.264305114746037, -4.419581890106201 ], [ -81.264030456542912, -4.419581890106201 ], [ -81.264030456542912, -4.419027805328312 ], [ -81.263748168945199, -4.419027805328312 ], [ -81.263748168945199, -4.418471813201847 ], [ -81.263473510742188, -4.418471813201847 ], [ -81.263473510742188, -4.417915821075383 ], [ -81.263191223144531, -4.417915821075383 ], [ -81.263191223144531, -4.417359828948918 ], [ -81.262916564941406, -4.417359828948918 ], [ -81.262916564941406, -4.416806221008187 ], [ -81.262641906738281, -4.416806221008187 ], [ -81.262641906738281, -4.416250228881779 ], [ -81.262359619140625, -4.416250228881779 ], [ -81.262359619140625, -4.415137767791691 ], [ -81.2620849609375, -4.415137767791691 ], [ -81.2620849609375, -4.414306163787842 ], [ -81.261802673339844, -4.414306163787842 ], [ -81.261802673339844, -4.413194179534798 ], [ -81.261528015136662, -4.413194179534798 ], [ -81.261528015136662, -4.410416126251221 ], [ -81.261253356933537, -4.410416126251221 ], [ -81.261253356933537, -4.407639980316105 ], [ -81.260971069335881, -4.407639980316105 ], [ -81.260971069335881, -4.40708398818964 ], [ -81.260696411132699, -4.40708398818964 ], [ -81.260696411132699, -4.406958103179932 ], [ -81.260696411132699, -4.406805038452092 ], [ -81.260414123535043, -4.406805038452092 ], [ -81.260414123535043, -4.406561851501465 ], [ -81.260414123535043, -4.406249046325627 ], [ -81.260139465332031, -4.406249046325627 ], [ -81.260139465332031, -4.405695915222054 ], [ -81.259864807128906, -4.405695915222054 ], [ -81.259864807128906, -4.405416965484619 ], [ -81.257362365722543, -4.405416965484619 ], [ -81.257362365722543, -4.405138969421387 ], [ -81.257080078125, -4.405138969421387 ], [ -81.257080078125, -4.404860973358154 ], [ -81.256805419921875, -4.404860973358154 ], [ -81.256805419921875, -4.404582977294922 ], [ -81.256248474121094, -4.404582977294922 ], [ -81.256248474121094, -4.404026985168343 ], [ -81.255973815917969, -4.404026985168343 ], [ -81.255973815917969, -4.403194904327393 ], [ -81.255691528320312, -4.403194904327393 ], [ -81.255691528320312, -4.402360916137695 ], [ -81.255416870117131, -4.402360916137695 ], [ -81.255416870117131, -4.402082920074463 ], [ -81.255142211914006, -4.402082920074463 ], [ -81.255142211914006, -4.401968955993596 ], [ -81.255142211914006, -4.401248931884766 ], [ -81.254859924316349, -4.401248931884766 ], [ -81.254859924316349, -4.400694847106934 ], [ -81.254585266113224, -4.400694847106934 ], [ -81.254585266113224, -4.399582862854004 ], [ -81.254302978515568, -4.399582862854004 ], [ -81.254302978515568, -4.399304866790771 ], [ -81.2540283203125, -4.399304866790771 ], [ -81.2540283203125, -4.398748874664307 ], [ -81.254585266113224, -4.398748874664307 ], [ -81.254585266113224, -4.397638797759953 ], [ -81.254302978515568, -4.397638797759953 ], [ -81.254302978515568, -4.397360801696777 ], [ -81.253753662109375, -4.397360801696777 ], [ -81.253753662109375, -4.396251201629582 ], [ -81.253471374511719, -4.396251201629582 ], [ -81.253471374511719, -4.395695209503117 ], [ -81.253196716308594, -4.395695209503117 ], [ -81.253196716308594, -4.392638206481934 ], [ -81.253471374511719, -4.392638206481934 ], [ -81.253471374511719, -4.391804218292179 ], [ -81.253196716308594, -4.391807079315186 ], [ -81.253196716308594, -4.390694141387939 ], [ -81.252914428710938, -4.390694141387939 ], [ -81.252914428710938, -4.389028072357178 ], [ -81.253196716308594, -4.389028072357178 ], [ -81.253196716308594, -4.388750076293945 ], [ -81.252914428710938, -4.388750076293945 ], [ -81.252914428710938, -4.388472080230713 ], [ -81.252357482910156, -4.388472080230713 ], [ -81.252357482910156, -4.38819408416748 ], [ -81.252082824706974, -4.38819408416748 ], [ -81.252082824706974, -4.387916088104248 ], [ -81.251808166503849, -4.387916088104248 ], [ -81.251808166503849, -4.387638092041016 ], [ -81.252349853515625, -4.387638092041016 ], [ -81.252357482910156, -4.387360095977783 ], [ -81.253196716308594, -4.387360095977783 ], [ -81.253196716308594, -4.386250019073429 ], [ -81.252914428710938, -4.386250019073429 ], [ -81.252914428710938, -4.385972023010197 ], [ -81.252639770507812, -4.385972023010197 ], [ -81.252639770507812, -4.384027957916203 ], [ -81.252357482910156, -4.384027957916203 ], [ -81.252357482910156, -4.38263988494873 ], [ -81.252639770507812, -4.38263988494873 ], [ -81.252639770507812, -4.381805896759033 ], [ -81.252914428710938, -4.381805896759033 ], [ -81.252914428710938, -4.381527900695801 ], [ -81.252639770507812, -4.381527900695801 ], [ -81.252639770507812, -4.380692958831787 ], [ -81.252914428710938, -4.380692958831787 ], [ -81.252914428710938, -4.380417823791504 ], [ -81.252639770507812, -4.380417823791504 ], [ -81.252639770507812, -4.380139827728271 ], [ -81.252914428710938, -4.380139827728271 ], [ -81.252914428710938, -4.378470897674561 ], [ -81.252639770507812, -4.378474235534668 ], [ -81.252639770507812, -4.374582767486515 ], [ -81.252914428710938, -4.374582767486515 ], [ -81.252914428710938, -4.374304771423283 ], [ -81.253196716308594, -4.374304771423283 ], [ -81.253196716308594, -4.374026775360051 ], [ -81.253471374511719, -4.374026775360051 ], [ -81.253471374511719, -4.373748779296818 ], [ -81.253753662109375, -4.373748779296818 ], [ -81.253753662109375, -4.373470783233586 ], [ -81.2540283203125, -4.373470783233586 ], [ -81.2540283203125, -4.372083187103215 ], [ -81.253753662109375, -4.372083187103215 ], [ -81.253753662109375, -4.371805191039982 ], [ -81.253471374511719, -4.371805191039982 ], [ -81.253471374511719, -4.37152719497675 ], [ -81.252914428710938, -4.37152719497675 ], [ -81.252914428710938, -4.371249198913517 ], [ -81.252357482910156, -4.371249198913517 ], [ -81.252357482910156, -4.370971202850285 ], [ -81.251525878906193, -4.370973110198975 ], [ -81.251525878906193, -4.370695114135742 ], [ -81.251251220703068, -4.370695114135742 ], [ -81.251251220703068, -4.369583129882812 ], [ -81.250968933105355, -4.369583129882812 ], [ -81.250968933105355, -4.368473052978516 ], [ -81.250694274902344, -4.368473052978516 ], [ -81.250694274902344, -4.365416049957219 ], [ -81.250968933105355, -4.365416049957219 ], [ -81.250968933105355, -4.362360000610295 ], [ -81.251251220703068, -4.362360000610295 ], [ -81.251251220703068, -4.361249923706055 ], [ -81.251525878906193, -4.361249923706055 ], [ -81.251525878906193, -4.359861850738525 ], [ -81.251251220703068, -4.359859943389779 ], [ -81.251251220703068, -4.358749866485596 ], [ -81.250968933105355, -4.358749866485596 ], [ -81.250968933105355, -4.357083797454777 ], [ -81.250694274902344, -4.357083797454777 ], [ -81.250694274902344, -4.354306221008244 ], [ -81.250419616699219, -4.354306221008244 ], [ -81.250419616699219, -4.351249217987004 ], [ -81.250694274902344, -4.351249217987004 ], [ -81.250694274902344, -4.347917079925537 ], [ -81.250968933105355, -4.347917079925537 ], [ -81.250968933105355, -4.344583034515381 ], [ -81.251251220703068, -4.344583034515381 ], [ -81.251251220703068, -4.341248035430851 ], [ -81.251525878906193, -4.341250896453857 ], [ -81.251525878906193, -4.338750839233398 ], [ -81.251808166503849, -4.338750839233398 ], [ -81.251808166503849, -4.337637901306152 ], [ -81.252082824706974, -4.337637901306152 ], [ -81.252082824706974, -4.336527824401799 ], [ -81.252357482910156, -4.336527824401799 ], [ -81.252357482910156, -4.335137844085693 ], [ -81.252639770507812, -4.335137844085693 ], [ -81.252639770507812, -4.33402776718134 ], [ -81.252914428710938, -4.33402776718134 ], [ -81.252914428710938, -4.33291578292841 ], [ -81.253196716308594, -4.33291578292841 ], [ -81.253196716308594, -4.331806182861271 ], [ -81.253471374511719, -4.331806182861271 ], [ -81.253471374511719, -4.330694198608342 ], [ -81.253753662109375, -4.330694198608342 ], [ -81.253753662109375, -4.329584121704102 ], [ -81.2540283203125, -4.329584121704102 ], [ -81.2540283203125, -4.328472137451058 ], [ -81.254302978515568, -4.328472137451058 ], [ -81.254302978515568, -4.327362060546875 ], [ -81.254585266113224, -4.327362060546875 ], [ -81.254585266113224, -4.326249122619629 ], [ -81.254859924316349, -4.326249122619629 ], [ -81.254859924316349, -4.325139999389648 ], [ -81.255142211914006, -4.325139999389648 ], [ -81.255142211914006, -4.32374906539917 ], [ -81.255416870117131, -4.32374906539917 ], [ -81.255416870117131, -4.322638988494816 ], [ -81.255691528320312, -4.322638988494816 ], [ -81.255691528320312, -4.321249008178654 ], [ -81.255973815917969, -4.321249008178654 ], [ -81.255973815917969, -4.320170879364014 ], [ -81.255973815917969, -4.319860935211182 ], [ -81.256126403808594, -4.319860935211182 ], [ -81.256248474121094, -4.319860935211182 ], [ -81.256248474121094, -4.319619178771916 ], [ -81.256248474121094, -4.318748950958195 ], [ -81.25653076171875, -4.318748950958195 ], [ -81.25653076171875, -4.317638874053955 ], [ -81.256805419921875, -4.317638874053955 ], [ -81.256805419921875, -4.31708288192749 ], [ -81.257080078125, -4.31708288192749 ], [ -81.257080078125, -4.316528797149601 ], [ -81.257362365722543, -4.316528797149601 ], [ -81.257362365722543, -4.315694808959961 ], [ -81.257637023925724, -4.315694808959961 ], [ -81.257637023925724, -4.315138816833496 ], [ -81.257919311523381, -4.315138816833496 ], [ -81.257919311523381, -4.314582824707031 ], [ -81.258193969726506, -4.314582824707031 ], [ -81.258193969726506, -4.314029216766301 ], [ -81.258468627929631, -4.314029216766301 ], [ -81.258468627929631, -4.313473224639893 ], [ -81.258750915527344, -4.313473224639893 ], [ -81.258750915527344, -4.312915802001896 ], [ -81.259025573730469, -4.312915802001896 ], [ -81.259025573730469, -4.312359809875431 ], [ -81.259307861328125, -4.312359809875431 ], [ -81.259307861328125, -4.311807155609074 ], [ -81.259864807128906, -4.311807155609074 ], [ -81.259864807128906, -4.311250209808236 ], [ -81.260139465332031, -4.311250209808236 ], [ -81.260139465332031, -4.310972213745004 ], [ -81.259864807128906, -4.310972213745004 ], [ -81.259864807128906, -4.310694217681828 ], [ -81.260139465332031, -4.310694217681828 ], [ -81.260139465332031, -4.310416221618596 ], [ -81.260414123535043, -4.310416221618596 ], [ -81.260414123535043, -4.310138225555363 ], [ -81.260696411132699, -4.310138225555363 ], [ -81.260696411132699, -4.309860229492131 ], [ -81.260971069335881, -4.309860229492131 ], [ -81.260971069335881, -4.309304237365666 ], [ -81.261528015136662, -4.309304237365666 ], [ -81.261528015136662, -4.309025764465275 ], [ -81.2620849609375, -4.309025764465275 ], [ -81.2620849609375, -4.308750152587891 ], [ -81.261528015136662, -4.308750152587891 ], [ -81.261528015136662, -4.308472156524658 ], [ -81.261253356933537, -4.308472156524658 ], [ -81.261253356933537, -4.308194160461426 ], [ -81.260696411132699, -4.308194160461426 ], [ -81.260696411132699, -4.307916164398193 ], [ -81.260414123535043, -4.307916164398193 ], [ -81.260414123535043, -4.307638168334847 ], [ -81.260139465332031, -4.307638168334847 ], [ -81.260139465332031, -4.307360172271615 ], [ -81.260009765624943, -4.307360172271615 ], [ -81.259864807128906, -4.307360172271615 ], [ -81.259864807128906, -4.307082176208439 ], [ -81.25958251953125, -4.307082176208439 ], [ -81.25958251953125, -4.305972099304199 ], [ -81.259307861328125, -4.305972099304199 ], [ -81.259307861328125, -4.304550170898438 ], [ -81.259307861328125, -4.304028034210205 ], [ -81.259063720703068, -4.304028034210205 ], [ -81.259025573730469, -4.302638053894043 ], [ -81.258750915527344, -4.302639961242619 ], [ -81.258750915527344, -4.302083969116154 ], [ -81.258468627929631, -4.302083969116154 ], [ -81.258468627929631, -4.301249980926457 ], [ -81.258193969726506, -4.301249980926457 ], [ -81.258193969726506, -4.300693035125676 ], [ -81.257919311523381, -4.300693035125676 ], [ -81.257919311523381, -4.299861907958871 ], [ -81.257637023925724, -4.299861907958871 ], [ -81.257637023925724, -4.299305915832463 ], [ -81.257362365722543, -4.299305915832463 ], [ -81.257362365722543, -4.29819297790516 ], [ -81.257080078125, -4.29819297790516 ], [ -81.257080078125, -4.297638893127441 ], [ -81.256805419921875, -4.297638893127441 ], [ -81.256805419921875, -4.297082901000977 ], [ -81.25653076171875, -4.297082901000977 ], [ -81.25653076171875, -4.296526908874512 ], [ -81.256248474121094, -4.296526908874512 ], [ -81.256248474121094, -4.295416831970158 ], [ -81.255973815917969, -4.295416831970158 ], [ -81.255973815917969, -4.29374885559082 ], [ -81.255691528320312, -4.29374885559082 ], [ -81.255691528320312, -4.292082786560002 ], [ -81.255416870117131, -4.292082786560002 ], [ -81.255416870117131, -4.290692806243896 ], [ -81.255142211914006, -4.290695190429631 ], [ -81.255142211914006, -4.289027214050236 ], [ -81.254859924316349, -4.289027214050236 ], [ -81.254859924316349, -4.287361145019474 ], [ -81.254585266113224, -4.287361145019474 ], [ -81.254585266113224, -4.282916069030762 ], [ -81.254302978515568, -4.282916069030762 ], [ -81.254302978515568, -4.280367851257267 ], [ -81.254302978515568, -4.278749942779427 ], [ -81.254585266113224, -4.278749942779427 ], [ -81.254585266113224, -4.278193950653019 ], [ -81.254859924316349, -4.278193950653019 ], [ -81.254859924316349, -4.277915954589787 ], [ -81.255142211914006, -4.277915954589787 ], [ -81.255142211914006, -4.277639865875244 ], [ -81.255416870117131, -4.277639865875244 ], [ -81.255416870117131, -4.277083873748779 ], [ -81.255691528320312, -4.277083873748779 ], [ -81.255691528320312, -4.276805877685547 ], [ -81.255416870117131, -4.276805877685547 ], [ -81.255416870117131, -4.276527881622314 ], [ -81.255142211914006, -4.276527881622314 ], [ -81.255142211914006, -4.27597188949585 ], [ -81.254859924316349, -4.27597188949585 ], [ -81.254859924316349, -4.275139808654785 ], [ -81.254585266113224, -4.275139808654785 ], [ -81.254585266113224, -4.27458381652832 ], [ -81.2540283203125, -4.27458381652832 ], [ -81.2540283203125, -4.273749828338623 ], [ -81.253753662109375, -4.273749828338623 ], [ -81.253753662109375, -4.273192882537842 ], [ -81.253196716308594, -4.273192882537842 ], [ -81.253196716308594, -4.272918224334717 ], [ -81.252914428710938, -4.272918224334717 ], [ -81.252914428710938, -4.272362232208252 ], [ -81.252639770507812, -4.272362232208252 ], [ -81.252639770507812, -4.271804809570256 ], [ -81.252357482910156, -4.271804809570256 ], [ -81.252357482910156, -4.271526813507023 ], [ -81.250694274902344, -4.271526813507023 ], [ -81.250694274902344, -4.271248817443791 ], [ -81.250419616699219, -4.271248817443791 ], [ -81.250419616699219, -4.270692825317326 ], [ -81.250137329101562, -4.270692825317326 ], [ -81.250137329101562, -4.270139217376652 ], [ -81.249862670898438, -4.270139217376652 ], [ -81.249862670898438, -4.26986122131342 ], [ -81.249580383300781, -4.26986122131342 ], [ -81.249580383300781, -4.269305229186955 ], [ -81.249305725097656, -4.269305229186955 ], [ -81.249305725097656, -4.26874923706049 ], [ -81.249031066894474, -4.26874923706049 ], [ -81.249031066894474, -4.268195152282715 ], [ -81.248748779296818, -4.268195152282715 ], [ -81.248748779296818, -4.267083168029671 ], [ -81.248474121093693, -4.267083168029671 ], [ -81.248474121093693, -4.266249179840031 ], [ -81.248191833496037, -4.266251087188721 ], [ -81.248191833496037, -4.265417098999023 ], [ -81.247917175292855, -4.265417098999023 ], [ -81.247917175292855, -4.264305114746094 ], [ -81.247642517089844, -4.264305114746094 ], [ -81.247642517089844, -4.263749122619629 ], [ -81.247360229492188, -4.263749122619629 ], [ -81.247360229492188, -4.263471126556283 ], [ -81.247085571289062, -4.263473033905029 ], [ -81.247085571289062, -4.262917041778564 ], [ -81.246803283691406, -4.262917041778564 ], [ -81.246803283691406, -4.262639045715332 ], [ -81.246528625488281, -4.262639045715332 ], [ -81.246528625488281, -4.2623610496521 ], [ -81.246246337890625, -4.2623610496521 ], [ -81.246246337890625, -4.262083053588867 ], [ -81.2459716796875, -4.262083053588867 ], [ -81.2459716796875, -4.261527061462402 ], [ -81.245697021484318, -4.261527061462402 ], [ -81.245697021484318, -4.261248111724854 ], [ -81.245414733886662, -4.261250972747746 ], [ -81.245414733886662, -4.260694980621281 ], [ -81.245140075683537, -4.260694980621281 ], [ -81.245140075683537, -4.260138988494873 ], [ -81.244857788085881, -4.260138988494873 ], [ -81.244857788085881, -4.259582042694035 ], [ -81.244583129882699, -4.259582042694035 ], [ -81.244583129882699, -4.259028911590519 ], [ -81.244308471679688, -4.259028911590519 ], [ -81.244308471679688, -4.258472919464054 ], [ -81.244026184082031, -4.258472919464054 ], [ -81.244026184082031, -4.257915973663216 ], [ -81.243751525878906, -4.257915973663216 ], [ -81.243751525878906, -4.257359981536808 ], [ -81.24346923828125, -4.257359981536808 ], [ -81.24346923828125, -4.256805896759033 ], [ -81.243194580078125, -4.256805896759033 ], [ -81.243194580078125, -4.256249904632568 ], [ -81.242919921875, -4.256249904632568 ], [ -81.242919921875, -4.255693912506104 ], [ -81.242637634277287, -4.255693912506104 ], [ -81.242637634277287, -4.255415916442871 ], [ -81.242362976074162, -4.255415916442871 ], [ -81.242362976074162, -4.255137920379639 ], [ -81.242080688476506, -4.255137920379639 ], [ -81.242080688476506, -4.254861831664982 ], [ -81.241806030273381, -4.254859924316406 ], [ -81.241806030273381, -4.254583835601807 ], [ -81.241531372070199, -4.254583835601807 ], [ -81.241531372070199, -4.254305839538574 ], [ -81.241249084472656, -4.254305839538574 ], [ -81.241249084472656, -4.254027843475342 ], [ -81.240974426269531, -4.254027843475342 ], [ -81.240974426269531, -4.253749847412109 ], [ -81.240692138671875, -4.253749847412109 ], [ -81.240692138671875, -4.253471851348877 ], [ -81.24041748046875, -4.253471851348877 ], [ -81.24041748046875, -4.253193855285645 ], [ -81.240692138671875, -4.253193855285645 ], [ -81.240692138671875, -4.25263786315918 ], [ -81.24041748046875, -4.25263786315918 ], [ -81.24041748046875, -4.250415802001953 ], [ -81.240135192871094, -4.250415802001953 ], [ -81.240135192871094, -4.250137805938721 ], [ -81.237640380859375, -4.250137805938721 ], [ -81.237640380859375, -4.249859809875488 ], [ -81.237083435058594, -4.249859809875488 ], [ -81.237083435058594, -4.250137805938721 ], [ -81.236526489257812, -4.250137805938721 ], [ -81.236526489257812, -4.250415802001953 ], [ -81.235969543456974, -4.250415802001953 ], [ -81.235969543456974, -4.250693798065186 ], [ -81.234306335449219, -4.250693798065186 ], [ -81.234306335449219, -4.250415802001953 ], [ -81.234016418457031, -4.250415802001953 ], [ -81.233749389648438, -4.250415802001953 ], [ -81.233749389648438, -4.250280857086182 ], [ -81.233749389648438, -4.250137805938721 ], [ -81.233474731445312, -4.250137805938721 ], [ -81.233474731445312, -4.249859809875488 ], [ -81.233192443847656, -4.249862194061222 ], [ -81.233192443847656, -4.24958419799799 ], [ -81.232086181640511, -4.24958419799799 ], [ -81.232086181640511, -4.249306201934758 ], [ -81.230972290039062, -4.249306201934758 ], [ -81.230972290039062, -4.249028205871525 ], [ -81.230697631835938, -4.249028205871525 ], [ -81.230697631835938, -4.24847221374506 ], [ -81.230415344238281, -4.24847221374506 ], [ -81.230415344238281, -4.248750209808293 ], [ -81.229858398437443, -4.248750209808293 ], [ -81.229858398437443, -4.24847221374506 ], [ -81.229583740234318, -4.24847221374506 ], [ -81.229583740234318, -4.248194217681885 ], [ -81.229309082031193, -4.248194217681885 ], [ -81.229309082031193, -4.247640132903939 ], [ -81.229026794433537, -4.247640132903939 ], [ -81.229026794433537, -4.247084140777531 ], [ -81.228469848632812, -4.247084140777531 ], [ -81.228469848632812, -4.246806144714299 ], [ -81.227638244628906, -4.246806144714299 ], [ -81.227638244628906, -4.247084140777531 ], [ -81.227363586425781, -4.247084140777531 ], [ -81.227363586425781, -4.247362136840707 ], [ -81.222915649414006, -4.247362136840707 ], [ -81.222915649414006, -4.247084140777531 ], [ -81.222358703613168, -4.247084140777531 ], [ -81.222358703613168, -4.246806144714299 ], [ -81.2218017578125, -4.246806144714299 ], [ -81.2218017578125, -4.246528148651066 ], [ -81.221527099609375, -4.246528148651066 ], [ -81.221527099609375, -4.246250152587834 ], [ -81.220970153808594, -4.246250152587834 ], [ -81.220970153808594, -4.245971202850228 ], [ -81.220695495605469, -4.245971202850228 ], [ -81.220695495605469, -4.245696067810059 ], [ -81.220138549804631, -4.245696067810059 ], [ -81.220138549804631, -4.245418071746826 ], [ -81.219863891601506, -4.245418071746826 ], [ -81.219863891601506, -4.245137214660588 ], [ -81.219451904296875, -4.245137214660588 ], [ -81.219306945800668, -4.245137214660588 ], [ -81.219306945800668, -4.244859218597355 ], [ -81.219024658203011, -4.244862079620361 ], [ -81.219024658203011, -4.24430513381958 ], [ -81.21875, -4.24430513381958 ], [ -81.21875, -4.244027137756348 ], [ -81.218475341796875, -4.244027137756348 ], [ -81.218475341796875, -4.243749141693115 ], [ -81.218193054199219, -4.243749141693115 ], [ -81.218193054199219, -4.243195056915226 ], [ -81.217918395996094, -4.243195056915226 ], [ -81.217918395996094, -4.242917060851994 ], [ -81.217636108398438, -4.242917060851994 ], [ -81.217636108398438, -4.242639064788818 ], [ -81.217361450195312, -4.242639064788818 ], [ -81.217361450195312, -4.242083072662354 ], [ -81.217086791992131, -4.242083072662354 ], [ -81.217086791992131, -4.241805076599121 ], [ -81.216804504394474, -4.241805076599121 ], [ -81.216804504394474, -4.241527080535889 ], [ -81.216529846191349, -4.241527080535889 ], [ -81.216529846191349, -4.240971088409424 ], [ -81.216247558593693, -4.240971088409424 ], [ -81.216247558593693, -4.240694999694767 ], [ -81.215972900390511, -4.240694999694767 ], [ -81.215972900390511, -4.240417003631535 ], [ -81.2156982421875, -4.240417003631535 ], [ -81.215690612792969, -4.240139007568303 ], [ -81.215415954589844, -4.240139007568303 ], [ -81.215415954589844, -4.239583015441838 ], [ -81.215141296386719, -4.239583015441838 ], [ -81.215141296386719, -4.239305019378605 ], [ -81.214859008789062, -4.239305019378605 ], [ -81.214859008789062, -4.23902702331543 ], [ -81.214584350585938, -4.23902702331543 ], [ -81.214584350585938, -4.238749027252197 ], [ -81.214302062988281, -4.238749027252197 ], [ -81.214302062988281, -4.238472938537484 ], [ -81.214027404785099, -4.238472938537484 ], [ -81.214027404785099, -4.237916946411076 ], [ -81.213752746581974, -4.237916946411076 ], [ -81.213752746581974, -4.237638950347844 ], [ -81.213470458984318, -4.237638950347844 ], [ -81.213470458984318, -4.237082958221379 ], [ -81.213195800781193, -4.237082958221379 ], [ -81.213195800781193, -4.236528873443604 ], [ -81.212913513183537, -4.236528873443604 ], [ -81.212913513183537, -4.235972881317139 ], [ -81.212638854980469, -4.235972881317139 ], [ -81.212638854980469, -4.235416889190674 ], [ -81.212364196777344, -4.235416889190674 ], [ -81.212364196777344, -4.234860897064095 ], [ -81.211807250976562, -4.234860897064095 ], [ -81.211807250976562, -4.234304904937687 ], [ -81.211524963378906, -4.234304904937687 ], [ -81.211524963378906, -4.23347282409668 ], [ -81.211250305175781, -4.23347282409668 ], [ -81.211250305175781, -4.232638835906982 ], [ -81.210975646972599, -4.232638835906982 ], [ -81.210975646972599, -4.231807231903076 ], [ -81.209304809570312, -4.231803894042969 ], [ -81.209304809570312, -4.231529235839844 ], [ -81.209030151367188, -4.231529235839844 ], [ -81.209030151367188, -4.231250762939453 ], [ -81.208747863769531, -4.231250762939453 ], [ -81.208747863769531, -4.230693817138615 ], [ -81.208473205566406, -4.230693817138615 ], [ -81.208473205566406, -4.229859828948975 ], [ -81.20819091796875, -4.229859828948975 ], [ -81.20819091796875, -4.229581832885742 ], [ -81.207916259765625, -4.229581832885742 ], [ -81.207916259765625, -4.229306221008244 ], [ -81.207084655761662, -4.229306221008244 ], [ -81.207084655761662, -4.229028224945012 ], [ -81.206802368164006, -4.229028224945012 ], [ -81.206802368164006, -4.228750228881779 ], [ -81.206527709960824, -4.228750228881779 ], [ -81.206527709960824, -4.228472232818547 ], [ -81.206253051757812, -4.228472232818547 ], [ -81.206253051757812, -4.228194236755314 ], [ -81.205970764160156, -4.228194236755314 ], [ -81.205970764160156, -4.227915763854924 ], [ -81.205413818359375, -4.227915763854924 ], [ -81.205413818359375, -4.227637767791691 ], [ -81.20513916015625, -4.227637767791691 ], [ -81.20513916015625, -4.227359771728459 ], [ -81.204582214355469, -4.227359771728459 ], [ -81.204582214355469, -4.227081775665226 ], [ -81.204307556152287, -4.227084159851074 ], [ -81.204307556152287, -4.226528167724496 ], [ -81.204025268554631, -4.226528167724496 ], [ -81.204025268554631, -4.226250171661263 ], [ -81.202362060546875, -4.226250171661263 ], [ -81.202362060546875, -4.225972175598088 ], [ -81.200973510742131, -4.225972175598088 ], [ -81.200973510742131, -4.225694179534855 ], [ -81.199859619140625, -4.225694179534855 ], [ -81.199859619140625, -4.224860191345158 ], [ -81.199302673339844, -4.224860191345158 ], [ -81.199302673339844, -4.224582195281926 ], [ -81.198471069335938, -4.224584102630615 ], [ -81.198471069335938, -4.224306106567383 ], [ -81.197364807128849, -4.224306106567383 ], [ -81.197364807128849, -4.224584102630615 ], [ -81.197082519531193, -4.224582195281926 ], [ -81.197082519531193, -4.224860191345158 ], [ -81.196807861328125, -4.224860191345158 ], [ -81.196807861328125, -4.224582195281926 ], [ -81.196250915527344, -4.224584102630615 ], [ -81.196250915527344, -4.224306106567383 ], [ -81.195968627929688, -4.224306106567383 ], [ -81.195968627929688, -4.224584102630615 ], [ -81.194305419921818, -4.224584102630615 ], [ -81.194305419921818, -4.224306106567383 ], [ -81.194030761718693, -4.224306106567383 ], [ -81.194030761718693, -4.22402811050415 ], [ -81.193473815917969, -4.22402811050415 ], [ -81.193473815917969, -4.223750114440918 ], [ -81.193191528320312, -4.223750114440918 ], [ -81.193191528320312, -4.223472118377686 ], [ -81.192642211914062, -4.223472118377686 ], [ -81.192642211914062, -4.223194122314453 ], [ -81.192359924316406, -4.223194122314453 ], [ -81.192359924316406, -4.222916126251107 ], [ -81.191802978515625, -4.222916126251107 ], [ -81.191802978515625, -4.222638130187875 ], [ -81.191528320312443, -4.222638130187875 ], [ -81.191528320312443, -4.222360134124699 ], [ -81.190971374511662, -4.222362041473389 ], [ -81.190971374511662, -4.222084045410156 ], [ -81.19069671630848, -4.222084045410156 ], [ -81.19069671630848, -4.221806049346924 ], [ -81.190414428710824, -4.221806049346924 ], [ -81.190414428710824, -4.221528053283691 ], [ -81.190139770507812, -4.221528053283691 ], [ -81.190139770507812, -4.221250057220459 ], [ -81.189857482910156, -4.221250057220459 ], [ -81.189857482910156, -4.220694065093994 ], [ -81.189582824707031, -4.220694065093994 ], [ -81.189582824707031, -4.220415115356445 ], [ -81.189308166503906, -4.220415115356445 ], [ -81.189308166503906, -4.220137119293213 ], [ -81.18902587890625, -4.220137119293213 ], [ -81.18902587890625, -4.219861984252873 ], [ -81.188751220703125, -4.219861984252873 ], [ -81.188751220703125, -4.219583988189697 ], [ -81.188194274902287, -4.219583988189697 ], [ -81.188194274902287, -4.219305992126465 ], [ -81.187919616699162, -4.219305992126465 ], [ -81.187919616699162, -4.219027996063232 ], [ -81.187362670898324, -4.219027996063232 ], [ -81.187362670898324, -4.218749046325627 ], [ -81.186805725097656, -4.218749046325627 ], [ -81.186805725097656, -4.218471050262394 ], [ -81.186531066894531, -4.218471050262394 ], [ -81.186531066894531, -4.218195915222111 ], [ -81.184860229492131, -4.218195915222111 ], [ -81.184860229492131, -4.218471050262394 ], [ -81.184585571289006, -4.218471050262394 ], [ -81.184585571289006, -4.217917919158879 ], [ -81.183746337890625, -4.217917919158879 ], [ -81.183746337890625, -4.217639923095646 ], [ -81.182914733886719, -4.217639923095646 ], [ -81.182914733886719, -4.217917919158879 ], [ -81.182640075683594, -4.217917919158879 ], [ -81.182640075683594, -4.217639923095646 ], [ -81.182083129882756, -4.217639923095646 ], [ -81.182083129882756, -4.217917919158879 ], [ -81.180694580078125, -4.217917919158879 ], [ -81.180694580078125, -4.217639923095646 ], [ -81.179862976074219, -4.217639923095646 ], [ -81.179862976074219, -4.217082977294808 ], [ -81.179580688476562, -4.217082977294808 ], [ -81.179580688476562, -4.216804981231633 ], [ -81.178474426269474, -4.216804981231633 ], [ -81.178474426269474, -4.2165269851684 ], [ -81.177360534667969, -4.2165269851684 ], [ -81.177360534667969, -4.216248989105168 ], [ -81.176803588867188, -4.216248989105168 ], [ -81.176803588867188, -4.215972900390625 ], [ -81.175971984863281, -4.215972900390625 ], [ -81.175971984863281, -4.215694904327393 ], [ -81.175415039062443, -4.215694904327393 ], [ -81.175415039062443, -4.21541690826416 ], [ -81.17458343505848, -4.21541690826416 ], [ -81.17458343505848, -4.215138912200928 ], [ -81.174308776855469, -4.215138912200928 ], [ -81.174308776855469, -4.214860916137695 ], [ -81.174026489257812, -4.214860916137695 ], [ -81.174026489257812, -4.214582920074463 ], [ -81.173751831054688, -4.214582920074463 ], [ -81.173751831054688, -4.21430492401123 ], [ -81.173469543457031, -4.21430492401123 ], [ -81.173469543457031, -4.214026927947998 ], [ -81.172737121581974, -4.214026927947998 ], [ -81.172080993652287, -4.214026927947998 ], [ -81.172080993652287, -4.213748931884652 ], [ -81.172363281249943, -4.213748931884652 ], [ -81.172363281249943, -4.213472843170166 ], [ -81.172080993652287, -4.213472843170166 ], [ -81.172080993652287, -4.213194847106934 ], [ -81.171806335449162, -4.213194847106934 ], [ -81.171806335449162, -4.212916851043701 ], [ -81.171615600585881, -4.212916851043701 ], [ -81.171524047851506, -4.212916851043701 ], [ -81.171524047851506, -4.212082862854004 ], [ -81.170974731445312, -4.212082862854004 ], [ -81.170974731445312, -4.211804866790771 ], [ -81.170692443847656, -4.211804866790771 ], [ -81.170692443847656, -4.211526870727539 ], [ -81.170417785644531, -4.211526870727539 ], [ -81.170417785644531, -4.211248874664307 ], [ -81.170135498046875, -4.211248874664307 ], [ -81.170135498046875, -4.21097278594965 ], [ -81.169586181640568, -4.21097278594965 ], [ -81.169586181640568, -4.210416793823242 ], [ -81.169303894042912, -4.210416793823242 ], [ -81.169303894042912, -4.21013879776001 ], [ -81.169029235839787, -4.21013879776001 ], [ -81.169029235839787, -4.209860801696777 ], [ -81.168746948242131, -4.209860801696777 ], [ -81.168746948242131, -4.209582805633545 ], [ -81.168472290039006, -4.209582805633545 ], [ -81.168472290039006, -4.209304809570312 ], [ -81.168197631835938, -4.209304809570312 ], [ -81.168197631835938, -4.20902681350708 ], [ -81.167915344238281, -4.20902681350708 ], [ -81.167915344238281, -4.208751201629582 ], [ -81.168472290039006, -4.208751201629582 ], [ -81.168472290039006, -4.208473205566349 ], [ -81.168746948242131, -4.208473205566349 ], [ -81.168746948242131, -4.208195209503117 ], [ -81.168472290039006, -4.208195209503117 ], [ -81.168472290039006, -4.207917213439885 ], [ -81.168197631835938, -4.207917213439885 ], [ -81.168197631835938, -4.207639217376709 ], [ -81.167915344238281, -4.207639217376709 ], [ -81.167915344238281, -4.206807136535531 ], [ -81.1673583984375, -4.206807136535531 ], [ -81.1673583984375, -4.206529140472355 ], [ -81.167083740234375, -4.206529140472355 ], [ -81.167083740234375, -4.206251144409123 ], [ -81.1673583984375, -4.206251144409123 ], [ -81.1673583984375, -4.20597314834589 ], [ -81.167083740234375, -4.20597314834589 ], [ -81.167083740234375, -4.205695152282658 ], [ -81.16680908203125, -4.205695152282658 ], [ -81.16680908203125, -4.205417156219426 ], [ -81.166252136230412, -4.205417156219426 ], [ -81.166252136230412, -4.20513820648182 ], [ -81.165969848632756, -4.20513820648182 ], [ -81.165969848632756, -4.204860210418644 ], [ -81.165695190429631, -4.204860210418644 ], [ -81.165695190429631, -4.204582214355412 ], [ -81.165412902831974, -4.204582214355412 ], [ -81.165412902831974, -4.204304218292179 ], [ -81.165138244628793, -4.204304218292179 ], [ -81.165138244628793, -4.204026222228947 ], [ -81.164863586425781, -4.204026222228947 ], [ -81.164863586425781, -4.203748226165715 ], [ -81.164581298828125, -4.203748226165715 ], [ -81.164581298828125, -4.203470230102482 ], [ -81.164306640625, -4.203472137451172 ], [ -81.164306640625, -4.203194141387939 ], [ -81.164024353027344, -4.203194141387939 ], [ -81.164024353027344, -4.202916145324707 ], [ -81.163749694824219, -4.202916145324707 ], [ -81.163749694824219, -4.202638149261475 ], [ -81.163475036621094, -4.202638149261475 ], [ -81.163475036621094, -4.202360153198242 ], [ -81.163192749023438, -4.202360153198242 ], [ -81.163192749023438, -4.20180606842041 ], [ -81.162918090820256, -4.20180606842041 ], [ -81.162918090820256, -4.201528072357178 ], [ -81.162635803222599, -4.201528072357178 ], [ -81.162635803222599, -4.201250076293945 ], [ -81.162361145019474, -4.201250076293945 ], [ -81.162361145019474, -4.200972080230713 ], [ -81.162086486816293, -4.200972080230713 ], [ -81.162086486816293, -4.20069408416748 ], [ -81.161804199218636, -4.20069408416748 ], [ -81.161804199218636, -4.200416088104248 ], [ -81.161529541015625, -4.200416088104248 ], [ -81.161529541015625, -4.200138092041016 ], [ -81.161247253417969, -4.200138092041016 ], [ -81.161247253417969, -4.199860095977783 ], [ -81.160972595214844, -4.199860095977783 ], [ -81.160972595214844, -4.199584007263127 ], [ -81.160697937011719, -4.199584007263127 ], [ -81.160697937011719, -4.199306011199894 ], [ -81.160415649414062, -4.199306011199894 ], [ -81.160415649414062, -4.199028015136662 ], [ -81.160140991210938, -4.199028015136662 ], [ -81.160140991210938, -4.198750019073429 ], [ -81.159858703613224, -4.198750019073429 ], [ -81.159858703613224, -4.198194026947021 ], [ -81.159584045410099, -4.198194026947021 ], [ -81.159584045410099, -4.197638034820557 ], [ -81.159301757812443, -4.197639942169076 ], [ -81.159301757812443, -4.197083950042668 ], [ -81.159027099609318, -4.197083950042668 ], [ -81.159027099609318, -4.196527957916203 ], [ -81.158752441406136, -4.196527957916203 ], [ -81.158752441406136, -4.196249961852971 ], [ -81.158470153808594, -4.196249961852971 ], [ -81.158470153808594, -4.195693969726506 ], [ -81.158195495605469, -4.195693969726506 ], [ -81.158195495605469, -4.19513988494873 ], [ -81.157913208007812, -4.19513988494873 ], [ -81.157913208007812, -4.194583892822266 ], [ -81.157638549804688, -4.194583892822266 ], [ -81.157638549804688, -4.19430589675892 ], [ -81.157363891601562, -4.19430589675892 ], [ -81.157363891601562, -4.193749904632512 ], [ -81.157081604003906, -4.193749904632512 ], [ -81.157081604003906, -4.193193912506047 ], [ -81.156806945800724, -4.193193912506047 ], [ -81.156806945800724, -4.192639827728271 ], [ -81.156524658203068, -4.192639827728271 ], [ -81.156524658203068, -4.192083835601807 ], [ -81.15625, -4.192083835601807 ], [ -81.15625, -4.191805839538574 ], [ -81.155975341796818, -4.191805839538574 ], [ -81.155975341796818, -4.191526889801025 ], [ -81.155693054199162, -4.191526889801025 ], [ -81.155693054199162, -4.191248893737793 ], [ -81.155418395996094, -4.191248893737793 ], [ -81.155418395996094, -4.190692901611328 ], [ -81.155136108398438, -4.190692901611328 ], [ -81.155136108398438, -4.190417766571045 ], [ -81.154861450195312, -4.190417766571045 ], [ -81.154861450195312, -4.190138816833439 ], [ -81.154586791992188, -4.190138816833439 ], [ -81.154586791992188, -4.189860820770207 ], [ -81.154304504394531, -4.189860820770207 ], [ -81.154304504394531, -4.189582824706974 ], [ -81.154029846191406, -4.189582824706974 ], [ -81.154029846191406, -4.189304828643799 ], [ -81.15374755859375, -4.189304828643799 ], [ -81.15374755859375, -4.189026832580566 ], [ -81.153472900390568, -4.189026832580566 ], [ -81.153472900390568, -4.188470840454102 ], [ -81.153198242187443, -4.188470840454102 ], [ -81.153190612792912, -4.188195228576603 ], [ -81.152915954589787, -4.188195228576603 ], [ -81.152915954589787, -4.187917232513371 ], [ -81.152641296386662, -4.187917232513371 ], [ -81.152641296386662, -4.187639236450138 ], [ -81.152359008788949, -4.187639236450138 ], [ -81.152359008788949, -4.187360763549748 ], [ -81.152084350585938, -4.187360763549748 ], [ -81.152084350585938, -4.186804771423283 ], [ -81.151802062988281, -4.186804771423283 ], [ -81.151802062988281, -4.186526775360051 ], [ -81.151527404785156, -4.186526775360051 ], [ -81.151527404785156, -4.186248779296818 ], [ -81.151252746582031, -4.186248779296818 ], [ -81.151252746582031, -4.185970783233586 ], [ -81.150970458984375, -4.18597316741932 ], [ -81.150970458984375, -4.185695171356087 ], [ -81.15069580078125, -4.185695171356087 ], [ -81.15069580078125, -4.185417175292912 ], [ -81.150413513183594, -4.185417175292912 ], [ -81.150413513183594, -4.184861183166447 ], [ -81.150138854980412, -4.184861183166447 ], [ -81.150138854980412, -4.184583187103215 ], [ -81.149864196777287, -4.184583187103215 ], [ -81.149864196777287, -4.184305191039982 ], [ -81.149581909179631, -4.184305191039982 ], [ -81.149581909179631, -4.184134006500187 ], [ -81.149581909179631, -4.18402719497675 ], [ -81.149307250976449, -4.18402719497675 ], [ -81.149307250976449, -4.183755874633675 ], [ -81.149307250976449, -4.183471202850285 ], [ -81.149024963378793, -4.183473110198975 ], [ -81.149024963378793, -4.183365821838379 ], [ -81.149024963378793, -4.18291711807251 ], [ -81.148750305175781, -4.18291711807251 ], [ -81.148750305175781, -4.182361125945931 ], [ -81.149307250976449, -4.182361125945931 ], [ -81.149307250976449, -4.180970191955566 ], [ -81.149024963378793, -4.180973052978516 ], [ -81.149024963378793, -4.180417060852051 ], [ -81.148750305175781, -4.180417060852051 ], [ -81.148750305175781, -4.180139064788818 ], [ -81.148475646972656, -4.180139064788818 ], [ -81.148475646972656, -4.179861068725586 ], [ -81.148193359375, -4.179861068725586 ], [ -81.148193359375, -4.179304122924805 ], [ -81.147918701171875, -4.179304122924805 ], [ -81.147918701171875, -4.179028987884521 ], [ -81.147636413574219, -4.179028987884521 ], [ -81.147636413574219, -4.178472995758057 ], [ -81.147361755371094, -4.178472995758057 ], [ -81.147361755371094, -4.178194999694824 ], [ -81.146804809570256, -4.178194999694824 ], [ -81.146804809570256, -4.177916049957219 ], [ -81.146530151367131, -4.177916049957219 ], [ -81.146530151367131, -4.177638053893986 ], [ -81.146247863769474, -4.177638053893986 ], [ -81.146247863769474, -4.177916049957219 ], [ -81.14569091796875, -4.177916049957219 ], [ -81.14569091796875, -4.178194999694824 ], [ -81.144584655761719, -4.178194999694824 ], [ -81.144584655761719, -4.177916049957219 ], [ -81.144302368164062, -4.177916049957219 ], [ -81.144302368164062, -4.177638053893986 ], [ -81.144027709960881, -4.177638053893986 ], [ -81.144027709960881, -4.177084922790471 ], [ -81.143753051757756, -4.177084922790471 ], [ -81.143753051757756, -4.176249980926457 ], [ -81.143196105956974, -4.176249980926457 ], [ -81.143196105956974, -4.176527976989632 ], [ -81.14263916015625, -4.176527976989632 ], [ -81.14263916015625, -4.177084922790471 ], [ -81.142364501953125, -4.177084922790471 ], [ -81.142364501953125, -4.177638053893986 ], [ -81.142082214355469, -4.177638053893986 ], [ -81.142082214355469, -4.178472995758057 ], [ -81.140609741210881, -4.178472995758057 ], [ -81.140419006347599, -4.178472995758057 ], [ -81.140419006347599, -4.178750991821289 ], [ -81.140327453613224, -4.178750991821289 ], [ -81.139862060546818, -4.178750991821289 ], [ -81.139862060546818, -4.179028987884521 ], [ -81.139030456542969, -4.179028987884521 ], [ -81.139030456542969, -4.179304122924805 ], [ -81.136802673339787, -4.179304122924805 ], [ -81.136802673339787, -4.179028987884521 ], [ -81.135696411132812, -4.179028987884521 ], [ -81.135696411132812, -4.178750991821289 ], [ -81.13458251953125, -4.178750991821289 ], [ -81.13458251953125, -4.178472995758057 ], [ -81.134025573730412, -4.178472995758057 ], [ -81.134025573730412, -4.178194999694824 ], [ -81.133468627929631, -4.178194999694824 ], [ -81.133468627929631, -4.177916049957219 ], [ -81.133193969726449, -4.177916049957219 ], [ -81.133193969726449, -4.177638053893986 ], [ -81.132637023925781, -4.177638053893986 ], [ -81.132637023925781, -4.177360057830811 ], [ -81.132080078125, -4.177360057830811 ], [ -81.132080078125, -4.177084922790471 ], [ -81.13153076171875, -4.177084922790471 ], [ -81.13153076171875, -4.176806926727238 ], [ -81.131248474121037, -4.176806926727238 ], [ -81.131248474121037, -4.176527976989632 ], [ -81.130691528320256, -4.176527976989632 ], [ -81.130691528320256, -4.176249980926457 ], [ -81.130142211913949, -4.176249980926457 ], [ -81.130142211913949, -4.175971984863224 ], [ -81.129585266113281, -4.175971984863224 ], [ -81.129585266113281, -4.175693988799992 ], [ -81.129302978515625, -4.175693988799992 ], [ -81.129302978515625, -4.17541599273676 ], [ -81.128753662109375, -4.17541599273676 ], [ -81.128753662109375, -4.175283908843994 ], [ -81.128753662109375, -4.175137996673527 ], [ -81.128646850585938, -4.175137996673527 ], [ -81.128196716308537, -4.175137996673527 ], [ -81.128196716308537, -4.174860000610295 ], [ -81.127914428710881, -4.174860000610295 ], [ -81.127914428710881, -4.17430591583252 ], [ -81.127639770507756, -4.17430591583252 ], [ -81.127639770507756, -4.173749923706055 ], [ -81.127357482910099, -4.173749923706055 ], [ -81.127357482910099, -4.173538208007812 ], [ -81.127357482910099, -4.173193931579476 ], [ -81.127082824706974, -4.173193931579476 ], [ -81.127082824706974, -4.172915935516244 ], [ -81.126808166503906, -4.172915935516244 ], [ -81.126808166503906, -4.172361850738525 ], [ -81.12652587890625, -4.172359943389836 ], [ -81.12652587890625, -4.171805858612061 ], [ -81.126251220703125, -4.171805858612061 ], [ -81.126251220703125, -4.171249866485596 ], [ -81.125968933105469, -4.171249866485596 ], [ -81.125968933105469, -4.170971870422363 ], [ -81.125694274902344, -4.170971870422363 ], [ -81.125694274902344, -4.170415878295898 ], [ -81.125419616699219, -4.170415878295898 ], [ -81.125419616699219, -4.169861793518066 ], [ -81.125137329101562, -4.169861793518066 ], [ -81.125137329101562, -4.169305801391602 ], [ -81.124862670898381, -4.169305801391602 ], [ -81.124862670898381, -4.169027805328369 ], [ -81.124580383300724, -4.169027805328369 ], [ -81.124580383300724, -4.168471813201904 ], [ -81.124305725097599, -4.168471813201904 ], [ -81.124305725097599, -4.167918205261174 ], [ -81.124031066894474, -4.167918205261174 ], [ -81.124031066894474, -4.167362213134709 ], [ -81.123748779296761, -4.167362213134709 ], [ -81.123748779296761, -4.167084217071533 ], [ -81.12347412109375, -4.167084217071533 ], [ -81.12347412109375, -4.166528224945068 ], [ -81.123191833496094, -4.166528224945068 ], [ -81.123191833496094, -4.165972232818604 ], [ -81.122917175292969, -4.165972232818604 ], [ -81.122917175292969, -4.165418148040715 ], [ -81.122642517089844, -4.165418148040715 ], [ -81.122642517089844, -4.165140151977482 ], [ -81.122360229492188, -4.165140151977482 ], [ -81.122360229492188, -4.164584159851017 ], [ -81.122085571289062, -4.164584159851017 ], [ -81.122085571289062, -4.164305210113469 ], [ -81.121803283691406, -4.164305210113469 ], [ -81.121803283691406, -4.163749217987004 ], [ -81.121528625488224, -4.163749217987004 ], [ -81.121528625488224, -4.163193225860539 ], [ -81.121246337890568, -4.163193225860539 ], [ -81.121246337890568, -4.162915229797306 ], [ -81.120971679687443, -4.162915229797306 ], [ -81.120971679687443, -4.162359237670842 ], [ -81.120697021484261, -4.162359237670842 ], [ -81.120697021484261, -4.162080764770451 ], [ -81.120414733886605, -4.162083148956299 ], [ -81.120414733886605, -4.161527156829834 ], [ -81.120140075683594, -4.161527156829834 ], [ -81.120140075683594, -4.161249160766488 ], [ -81.119857788085938, -4.161249160766488 ], [ -81.119857788085938, -4.16069507598877 ], [ -81.119583129882812, -4.16069507598877 ], [ -81.119583129882812, -4.160417079925537 ], [ -81.119308471679688, -4.160417079925537 ], [ -81.119308471679688, -4.159861087799072 ], [ -81.119026184082031, -4.159861087799072 ], [ -81.119026184082031, -4.159305095672607 ], [ -81.118751525878906, -4.159305095672607 ], [ -81.118751525878906, -4.159027099609375 ], [ -81.118469238281193, -4.159027099609375 ], [ -81.118469238281193, -4.15847110748291 ], [ -81.118194580078068, -4.158473014831486 ], [ -81.118194580078068, -4.158195018768254 ], [ -81.117919921874943, -4.158195018768254 ], [ -81.117919921874943, -4.157639026641846 ], [ -81.117637634277287, -4.157639026641846 ], [ -81.117637634277287, -4.157361030578613 ], [ -81.117362976074105, -4.157361030578613 ], [ -81.117362976074105, -4.156805038452148 ], [ -81.117080688476562, -4.156805038452148 ], [ -81.117080688476562, -4.156249046325684 ], [ -81.116806030273438, -4.15625095367426 ], [ -81.116806030273438, -4.155972957611027 ], [ -81.116531372070312, -4.155972957611027 ], [ -81.116531372070312, -4.155416965484562 ], [ -81.116249084472656, -4.155416965484562 ], [ -81.116249084472656, -4.15513896942133 ], [ -81.115974426269531, -4.15513896942133 ], [ -81.115974426269531, -4.154582977294865 ], [ -81.115692138671875, -4.154584884643555 ], [ -81.115692138671875, -4.154026985168457 ], [ -81.115417480468693, -4.15402889251709 ], [ -81.115417480468693, -4.153472900390511 ], [ -81.115135192871037, -4.153472900390511 ], [ -81.115135192871037, -4.153194904327336 ], [ -81.114860534667912, -4.153194904327336 ], [ -81.114860534667912, -4.152638912200871 ], [ -81.114585876464787, -4.152638912200871 ], [ -81.114585876464787, -4.152081966400033 ], [ -81.114303588867131, -4.152081966400033 ], [ -81.114303588867131, -4.151528835296631 ], [ -81.114028930664062, -4.151528835296631 ], [ -81.114028930664062, -4.151250839233398 ], [ -81.113746643066406, -4.151250839233398 ], [ -81.113746643066406, -4.150693893432617 ], [ -81.113471984863281, -4.150693893432617 ], [ -81.113471984863281, -4.150137901306152 ], [ -81.113197326660156, -4.150137901306152 ], [ -81.113197326660156, -4.14985990524292 ], [ -81.1129150390625, -4.14985990524292 ], [ -81.1129150390625, -4.149305820465031 ], [ -81.112640380859375, -4.149305820465031 ], [ -81.112640380859375, -4.148749828338623 ], [ -81.112358093261719, -4.148749828338623 ], [ -81.112358093261719, -4.148193836212158 ], [ -81.112083435058537, -4.148193836212158 ], [ -81.112083435058537, -4.147915840148926 ], [ -81.111808776855412, -4.147915840148926 ], [ -81.111808776855412, -4.147362232208195 ], [ -81.111526489257756, -4.147362232208195 ], [ -81.111526489257756, -4.146805763244572 ], [ -81.111251831054631, -4.146805763244572 ], [ -81.111251831054631, -4.146249771118107 ], [ -81.110969543456918, -4.146249771118107 ], [ -81.110969543456918, -4.145971775054875 ], [ -81.110694885253906, -4.145971775054875 ], [ -81.110694885253906, -4.14541578292841 ], [ -81.110420227050781, -4.14541578292841 ], [ -81.110420227050781, -4.144862174987736 ], [ -81.110137939453125, -4.144862174987736 ], [ -81.110137939453125, -4.144306182861271 ], [ -81.10986328125, -4.144306182861271 ], [ -81.10986328125, -4.144028186798039 ], [ -81.109580993652344, -4.144028186798039 ], [ -81.109580993652344, -4.143472194671574 ], [ -81.109306335449219, -4.143472194671574 ], [ -81.109306335449219, -4.142916202545109 ], [ -81.109024047851562, -4.142916202545109 ], [ -81.109024047851562, -4.142638206481877 ], [ -81.108749389648381, -4.142638206481877 ], [ -81.108749389648381, -4.142082214355469 ], [ -81.108474731445256, -4.142082214355469 ], [ -81.108474731445256, -4.141528129577523 ], [ -81.108192443847599, -4.141528129577523 ], [ -81.108192443847599, -4.141250133514347 ], [ -81.107917785644418, -4.141250133514347 ], [ -81.107917785644418, -4.140694141387883 ], [ -81.107635498046761, -4.140694141387883 ], [ -81.107635498046761, -4.140138149261418 ], [ -81.10736083984375, -4.140138149261418 ], [ -81.10736083984375, -4.139862060546875 ], [ -81.107086181640625, -4.139862060546875 ], [ -81.107086181640625, -4.13930606842041 ], [ -81.106803894042969, -4.13930606842041 ], [ -81.106803894042969, -4.138750076293945 ], [ -81.106529235839844, -4.138750076293945 ], [ -81.106529235839844, -4.138471126556396 ], [ -81.106246948242188, -4.138471126556396 ], [ -81.106246948242188, -4.137917995452881 ], [ -81.105972290039062, -4.137917995452881 ], [ -81.105972290039062, -4.137362003326416 ], [ -81.105697631835881, -4.137362003326416 ], [ -81.105697631835881, -4.136805057525635 ], [ -81.105415344238224, -4.136805057525635 ], [ -81.105415344238224, -4.13624906539917 ], [ -81.105140686035099, -4.13624906539917 ], [ -81.105140686035099, -4.135694980621281 ], [ -81.104858398437443, -4.135694980621281 ], [ -81.104858398437443, -4.135138988494816 ], [ -81.104583740234261, -4.135138988494816 ], [ -81.104583740234261, -4.134582996368351 ], [ -81.10430908203125, -4.134582996368351 ], [ -81.10430908203125, -4.134027004241887 ], [ -81.104583740234261, -4.134027004241887 ], [ -81.104583740234261, -4.133749008178654 ], [ -81.104026794433594, -4.133749008178654 ], [ -81.104026794433594, -4.133472919464111 ], [ -81.103752136230469, -4.133472919464111 ], [ -81.103752136230469, -4.133194923400879 ], [ -81.103469848632812, -4.133194923400879 ], [ -81.103469848632812, -4.1326389312743 ], [ -81.103195190429688, -4.1326389312743 ], [ -81.103195190429688, -4.132082939147892 ], [ -81.102912902832031, -4.132082939147892 ], [ -81.102912902832031, -4.13069486618042 ], [ -81.102638244628849, -4.13069486618042 ], [ -81.102638244628849, -4.130416870117188 ], [ -81.102363586425724, -4.130416870117188 ], [ -81.102363586425724, -4.12958288192749 ], [ -81.102081298828068, -4.12958288192749 ], [ -81.102081298828068, -4.129026889800912 ], [ -81.101524353027287, -4.129026889800912 ], [ -81.101524353027287, -4.128472805023193 ], [ -81.101249694824219, -4.128472805023193 ], [ -81.101249694824219, -4.128194808959961 ], [ -81.100975036621094, -4.128194808959961 ], [ -81.100975036621094, -4.127638816833496 ], [ -81.100357055664006, -4.127638816833496 ], [ -81.100135803222656, -4.127638816833496 ], [ -81.100135803222656, -4.127360820770264 ], [ -81.099861145019531, -4.127360820770264 ], [ -81.099861145019531, -4.127082824707031 ], [ -81.099304199218693, -4.127082824707031 ], [ -81.099304199218693, -4.126807212829533 ], [ -81.099029541015568, -4.126807212829533 ], [ -81.099029541015568, -4.126251220703125 ], [ -81.098472595214787, -4.126251220703125 ], [ -81.098472595214787, -4.12569522857666 ], [ -81.097915649414062, -4.12569522857666 ], [ -81.097915649414062, -4.125973224639893 ], [ -81.097358703613281, -4.125973224639893 ], [ -81.097358703613281, -4.12569522857666 ], [ -81.0968017578125, -4.12569522857666 ], [ -81.0968017578125, -4.125417232513428 ], [ -81.096252441406193, -4.125417232513428 ], [ -81.096252441406193, -4.125139236450195 ], [ -81.095695495605412, -4.125139236450195 ], [ -81.095695495605412, -4.124859809875431 ], [ -81.095138549804574, -4.124863147735539 ], [ -81.095138549804574, -4.124581813812199 ], [ -81.094863891601562, -4.124581813812199 ], [ -81.094863891601562, -4.124307155609074 ], [ -81.094581604003906, -4.124307155609074 ], [ -81.094581604003906, -4.124029159545842 ], [ -81.094306945800781, -4.124029159545842 ], [ -81.094306945800781, -4.123751163482609 ], [ -81.094024658203125, -4.123751163482609 ], [ -81.094024658203125, -4.12347221374506 ], [ -81.09375, -4.12347221374506 ], [ -81.09375, -4.123194217681828 ], [ -81.093475341796875, -4.123194217681828 ], [ -81.093475341796875, -4.122916221618596 ], [ -81.093193054199219, -4.122916221618596 ], [ -81.093193054199219, -4.122360229492131 ], [ -81.092918395996037, -4.122360229492131 ], [ -81.092918395996037, -4.122082233428898 ], [ -81.092636108398381, -4.122082233428898 ], [ -81.092636108398381, -4.121804237365666 ], [ -81.092361450195256, -4.121804237365666 ], [ -81.092361450195256, -4.121525764465275 ], [ -81.092086791992074, -4.121525764465275 ], [ -81.092086791992074, -4.121250152587891 ], [ -81.091804504394418, -4.121250152587891 ], [ -81.091804504394418, -4.120972156524658 ], [ -81.091529846191406, -4.120972156524658 ], [ -81.091529846191406, -4.12041616439808 ], [ -81.09124755859375, -4.12041616439808 ], [ -81.09124755859375, -4.119582176208439 ], [ -81.090972900390625, -4.119584083557129 ], [ -81.090972900390625, -4.119306087493896 ], [ -81.090415954589844, -4.119306087493896 ], [ -81.090415954589844, -4.119028091430664 ], [ -81.090141296386719, -4.119028091430664 ], [ -81.090141296386719, -4.118750095367432 ], [ -81.089859008789006, -4.118750095367432 ], [ -81.089859008789006, -4.119306087493896 ], [ -81.089584350585881, -4.119306087493896 ], [ -81.089584350585881, -4.119584083557129 ], [ -81.08917236328125, -4.119584083557129 ], [ -81.088752746581918, -4.119584083557129 ], [ -81.088752746581918, -4.119306087493896 ], [ -81.088470458984375, -4.119306087493896 ], [ -81.088470458984375, -4.119028091430664 ], [ -81.08819580078125, -4.119028091430664 ], [ -81.08819580078125, -4.118873119354248 ], [ -81.08819580078125, -4.118750095367432 ], [ -81.087921142578125, -4.118750095367432 ], [ -81.087638854980469, -4.118750095367432 ], [ -81.087638854980469, -4.118619918823129 ], [ -81.087638854980469, -4.118472099304199 ], [ -81.087364196777344, -4.118472099304199 ], [ -81.087364196777344, -4.118194103240967 ], [ -81.087081909179688, -4.118194103240967 ], [ -81.087081909179688, -4.117916107177734 ], [ -81.086807250976506, -4.117916107177734 ], [ -81.086807250976506, -4.117638111114502 ], [ -81.086250305175724, -4.117638111114502 ], [ -81.086250305175724, -4.11736011505127 ], [ -81.085975646972599, -4.117362022399902 ], [ -81.085975646972599, -4.11708402633667 ], [ -81.085693359374943, -4.11708402633667 ], [ -81.085693359374943, -4.116806030273438 ], [ -81.085418701171875, -4.116806030273438 ], [ -81.085418701171875, -4.116528034210205 ], [ -81.084861755371094, -4.116528034210205 ], [ -81.084861755371094, -4.116250038146973 ], [ -81.084587097167969, -4.116250038146973 ], [ -81.084587097167969, -4.11597204208374 ], [ -81.084304809570312, -4.11597204208374 ], [ -81.084304809570312, -4.115694046020508 ], [ -81.084030151367188, -4.115694046020508 ], [ -81.084030151367188, -4.115416049957275 ], [ -81.083473205566349, -4.115416049957275 ], [ -81.083473205566349, -4.115138053894043 ], [ -81.083190917968693, -4.115138053894043 ], [ -81.083190917968693, -4.114860057830811 ], [ -81.082641601562443, -4.114861965179387 ], [ -81.082641601562443, -4.114583969116154 ], [ -81.081527709960938, -4.114583969116154 ], [ -81.081527709960938, -4.114305973052922 ], [ -81.080696105957031, -4.114305973052922 ], [ -81.080696105957031, -4.114027976989689 ], [ -81.078750610351562, -4.114027976989689 ], [ -81.078750610351562, -4.113749980926514 ], [ -81.078475952148438, -4.113749980926514 ], [ -81.078475952148438, -4.113193988800049 ], [ -81.078193664550781, -4.113193988800049 ], [ -81.078193664550781, -4.112637042999211 ], [ -81.077919006347656, -4.11263990402216 ], [ -81.077919006347656, -4.112083911895695 ], [ -81.07763671875, -4.112083911895695 ], [ -81.07763671875, -4.111805915832463 ], [ -81.077362060546875, -4.111805915832463 ], [ -81.077362060546875, -4.11152791976923 ], [ -81.077079772949162, -4.11152791976923 ], [ -81.077079772949162, -4.111248970031625 ], [ -81.076530456542912, -4.111248970031625 ], [ -81.076530456542912, -4.110970973968449 ], [ -81.075973510742074, -4.110970973968449 ], [ -81.075973510742074, -4.110692977905217 ], [ -81.075691223144531, -4.110692977905217 ], [ -81.075691223144531, -4.11041784286499 ], [ -81.075416564941406, -4.11041784286499 ], [ -81.075416564941406, -4.110139846801758 ], [ -81.075141906738281, -4.110139846801758 ], [ -81.075141906738281, -4.109860897064209 ], [ -81.074302673339844, -4.109860897064209 ], [ -81.074302673339844, -4.110139846801758 ], [ -81.074028015136662, -4.110139846801758 ], [ -81.074028015136662, -4.11041784286499 ], [ -81.073753356933537, -4.11041784286499 ], [ -81.073753356933537, -4.110692977905217 ], [ -81.073471069335881, -4.110692977905217 ], [ -81.073471069335881, -4.110970973968449 ], [ -81.072868347167969, -4.110970973968449 ], [ -81.072364807128906, -4.110970973968449 ], [ -81.072364807128906, -4.110692977905217 ], [ -81.07208251953125, -4.110692977905217 ], [ -81.07208251953125, -4.11041784286499 ], [ -81.071250915527344, -4.11041784286499 ], [ -81.071250915527344, -4.110692977905217 ], [ -81.070968627929688, -4.110692977905217 ], [ -81.070968627929688, -4.110827922820988 ], [ -81.070968627929688, -4.110970973968449 ], [ -81.069305419921875, -4.110970973968449 ], [ -81.069305419921875, -4.110692977905217 ], [ -81.068191528320312, -4.110692977905217 ], [ -81.068191528320312, -4.109860897064209 ], [ -81.067916870117188, -4.109860897064209 ], [ -81.067916870117188, -4.109026908874512 ], [ -81.067642211914006, -4.109026908874512 ], [ -81.067642211914006, -4.109304904937744 ], [ -81.067085266113224, -4.109304904937744 ], [ -81.067085266113224, -4.109582901000977 ], [ -81.066528320312386, -4.109582901000977 ], [ -81.066528320312386, -4.109860897064209 ], [ -81.066253662109375, -4.109860897064209 ], [ -81.066253662109375, -4.110139846801758 ], [ -81.065139770507812, -4.110139846801758 ], [ -81.065139770507812, -4.109860897064209 ], [ -81.064857482910156, -4.109860897064209 ], [ -81.064857482910156, -4.109582901000977 ], [ -81.064582824707031, -4.109582901000977 ], [ -81.064582824707031, -4.109304904937744 ], [ -81.064025878906193, -4.109304904937744 ], [ -81.064025878906193, -4.109026908874512 ], [ -81.063751220703068, -4.109026908874512 ], [ -81.063751220703068, -4.107916831970215 ], [ -81.063468933105412, -4.107916831970215 ], [ -81.063468933105412, -4.107638835906982 ], [ -81.062362670898438, -4.107638835906982 ], [ -81.062362670898438, -4.106804847717285 ], [ -81.062080383300781, -4.106804847717285 ], [ -81.062080383300781, -4.106526851654053 ], [ -81.061805725097656, -4.106526851654053 ], [ -81.061805725097656, -4.10624885559082 ], [ -81.060974121093693, -4.10624885559082 ], [ -81.060974121093693, -4.105972766876164 ], [ -81.060417175292912, -4.105972766876164 ], [ -81.060417175292912, -4.105694770812931 ], [ -81.06014251708973, -4.105694770812931 ], [ -81.06014251708973, -4.105416774749699 ], [ -81.059860229492188, -4.105416774749699 ], [ -81.059860229492188, -4.105138778686467 ], [ -81.059585571289062, -4.105138778686467 ], [ -81.059585571289062, -4.104860782623234 ], [ -81.059303283691406, -4.104860782623234 ], [ -81.059303283691406, -4.104582786560059 ], [ -81.059028625488281, -4.104582786560059 ], [ -81.059028625488281, -4.104860782623234 ], [ -81.058746337890625, -4.104860782623234 ], [ -81.058746337890625, -4.105138778686467 ], [ -81.057357788085881, -4.105138778686467 ], [ -81.057357788085881, -4.104860782623234 ], [ -81.056808471679688, -4.104860782623234 ], [ -81.056808471679688, -4.105138778686467 ], [ -81.056526184082031, -4.105138778686467 ], [ -81.056526184082031, -4.105416774749699 ], [ -81.056251525878906, -4.105416774749699 ], [ -81.056251525878906, -4.105694770812931 ], [ -81.055137634277344, -4.105694770812931 ], [ -81.055137634277344, -4.105138778686467 ], [ -81.054862976074162, -4.105138778686467 ], [ -81.054862976074162, -4.104304790496826 ], [ -81.054580688476506, -4.104304790496826 ], [ -81.054580688476506, -4.103748798370361 ], [ -81.054306030273381, -4.103751182556096 ], [ -81.054306030273381, -4.103473186492863 ], [ -81.053749084472543, -4.103473186492863 ], [ -81.053749084472543, -4.103192806243896 ], [ -81.053474426269531, -4.103195190429631 ], [ -81.053474426269531, -4.102917194366398 ], [ -81.053192138671875, -4.102917194366398 ], [ -81.053192138671875, -4.102639198303166 ], [ -81.05291748046875, -4.102639198303166 ], [ -81.05291748046875, -4.102361202239933 ], [ -81.052635192871094, -4.102361202239933 ], [ -81.052635192871094, -4.101249217987061 ], [ -81.052360534667969, -4.101249217987061 ], [ -81.052360534667969, -4.100417137145939 ], [ -81.052085876464844, -4.100417137145939 ], [ -81.052085876464844, -4.099583148956242 ], [ -81.051803588867188, -4.099583148956242 ], [ -81.051803588867188, -4.09930515289301 ], [ -81.051528930664006, -4.09930515289301 ], [ -81.051528930664006, -4.099029064178467 ], [ -81.050971984863224, -4.099029064178467 ], [ -81.050971984863224, -4.098751068115234 ], [ -81.050697326660043, -4.098751068115234 ], [ -81.050697326660043, -4.098473072052002 ], [ -81.050415039062386, -4.098473072052002 ], [ -81.050415039062386, -4.09819507598877 ], [ -81.050140380859375, -4.09819507598877 ], [ -81.050140380859375, -4.097638130187988 ], [ -81.049858093261719, -4.097638130187988 ], [ -81.049858093261719, -4.097360134124756 ], [ -81.049308776855469, -4.097360134124756 ], [ -81.049308776855469, -4.096529006958008 ], [ -81.049026489257812, -4.096529006958008 ], [ -81.049026489257812, -4.095694065093994 ], [ -81.048751831054688, -4.095694065093994 ], [ -81.048751831054688, -4.095138072967529 ], [ -81.048469543456974, -4.095138072967529 ], [ -81.048469543456974, -4.094860076904297 ], [ -81.048194885253849, -4.094860076904297 ], [ -81.048194885253849, -4.094305992126408 ], [ -81.047920227050724, -4.094305992126408 ], [ -81.047920227050724, -4.094027996063176 ], [ -81.047637939453068, -4.094027996063176 ], [ -81.047637939453068, -4.09375 ], [ -81.047920227050724, -4.09375 ], [ -81.047920227050724, -4.093194007873478 ], [ -81.049583435058594, -4.093194007873478 ], [ -81.049583435058594, -4.093472003936711 ], [ -81.049858093261719, -4.093472003936711 ], [ -81.049858093261719, -4.09263801574707 ], [ -81.049583435058594, -4.09263801574707 ], [ -81.049583435058594, -4.092083930969125 ], [ -81.049308776855469, -4.092083930969125 ], [ -81.049308776855469, -4.091249942779484 ], [ -81.048751831054688, -4.091249942779484 ], [ -81.048751831054688, -4.090971946716252 ], [ -81.048469543456974, -4.090971946716252 ], [ -81.048469543456974, -4.090693950653019 ], [ -81.048194885253849, -4.090693950653019 ], [ -81.048194885253849, -4.090415954589787 ], [ -81.047920227050724, -4.090415954589787 ], [ -81.047920227050724, -4.090137958526554 ], [ -81.047637939453068, -4.090137958526554 ], [ -81.047637939453068, -4.089861869812012 ], [ -81.047363281249886, -4.089861869812012 ], [ -81.047363281249886, -4.089583873748779 ], [ -81.047080993652344, -4.089583873748779 ], [ -81.047080993652344, -4.089027881622314 ], [ -81.046806335449219, -4.089027881622314 ], [ -81.046806335449219, -4.088749885559082 ], [ -81.046524047851562, -4.088749885559082 ], [ -81.046524047851562, -4.088193893432504 ], [ -81.045974731445312, -4.088193893432504 ], [ -81.045974731445312, -4.089583873748779 ], [ -81.045417785644474, -4.089583873748779 ], [ -81.045417785644474, -4.089027881622314 ], [ -81.044586181640568, -4.089027881622314 ], [ -81.044586181640568, -4.088471889495736 ], [ -81.043472290039062, -4.088471889495736 ], [ -81.043472290039062, -4.087917804718018 ], [ -81.043197631835938, -4.087917804718018 ], [ -81.043197631835938, -4.087361812591553 ], [ -81.042915344238281, -4.087361812591553 ], [ -81.041007995605469, -4.088599205016976 ], [ -81.040542602539062, -4.089070796966553 ], [ -81.040206909179574, -4.09032487869257 ], [ -81.039146423339787, -4.091763019561711 ], [ -81.039199829101562, -4.093957901000977 ], [ -81.038291931152287, -4.094828128814697 ], [ -81.036323547363281, -4.095427989959717 ], [ -81.035667419433594, -4.095899105071965 ], [ -81.034950256347599, -4.098344802856445 ], [ -81.034317016601562, -4.099726200103703 ], [ -81.03338623046875, -4.101037025451603 ], [ -81.030471801757756, -4.102914810180664 ], [ -81.029388427734375, -4.104963779449406 ], [ -81.02728271484375, -4.106914997100773 ], [ -81.026458740234318, -4.107226848602295 ], [ -81.024581909179688, -4.107250213623047 ], [ -81.022575378417969, -4.108028888702393 ], [ -81.020233154296875, -4.112240791320801 ], [ -81.017501831054631, -4.11496019363392 ], [ -81.015655517578125, -4.115767002105599 ], [ -81.013153076171875, -4.115757942199707 ], [ -81.011428833007812, -4.115346908569279 ], [ -81.009574890136662, -4.115460872650033 ], [ -81.007713317871094, -4.114664077758789 ], [ -81.005996704101562, -4.114262104034367 ], [ -81.003440856933594, -4.113104820251408 ], [ -81.001853942871037, -4.112874031066781 ], [ -81.000701904296818, -4.111622810363713 ], [ -80.999641418456974, -4.111370086669922 ], [ -80.999038696289062, -4.111771106719971 ], [ -80.997520446777344, -4.113554000854435 ], [ -80.995742797851506, -4.114943981170654 ], [ -80.993850708007756, -4.11750602722168 ], [ -80.993011474609375, -4.118285179138184 ], [ -80.990966796874943, -4.118642807006836 ], [ -80.989341735839787, -4.118483066558838 ], [ -80.988143920898438, -4.118115901946965 ], [ -80.987129211425781, -4.118474006652775 ], [ -80.986495971679631, -4.11924505233759 ], [ -80.986160278320312, -4.120829105377197 ], [ -80.985610961914062, -4.121543884277344 ], [ -80.984428405761719, -4.12218523025507 ], [ -80.983108520507812, -4.122336864471379 ], [ -80.981422424316406, -4.123402118682861 ], [ -80.979919433593693, -4.124835014343205 ], [ -80.977920532226506, -4.12772083282465 ], [ -80.976249694824219, -4.128039836883545 ], [ -80.974784851074105, -4.127348899841309 ], [ -80.973617553710881, -4.127205848693848 ], [ -80.972457885742188, -4.127367973327637 ], [ -80.971443176269474, -4.127933025360107 ], [ -80.970932006835938, -4.128692150115967 ], [ -80.970916748046875, -4.129851818084717 ], [ -80.970558166503849, -4.130377769470215 ], [ -80.970191955566349, -4.131965160369873 ], [ -80.967483520507812, -4.136359214782658 ], [ -80.967185974121094, -4.137673854827824 ], [ -80.967399597167969, -4.140927791595459 ], [ -80.965423583984318, -4.141961097717171 ], [ -80.964118957519531, -4.14293384552002 ], [ -80.962226867675781, -4.145359039306584 ], [ -80.961616516113224, -4.147333145141602 ], [ -80.961578369140625, -4.149242877960205 ], [ -80.961791992187443, -4.150391101837158 ], [ -80.963653564453125, -4.155047893524113 ], [ -80.964897155761719, -4.157151222229004 ], [ -80.965736389160156, -4.160277843475342 ], [ -80.96706390380848, -4.162751197814828 ], [ -80.969009399414062, -4.165472030639648 ], [ -80.970306396484261, -4.168034076690674 ], [ -80.97011566162098, -4.169010162353459 ], [ -80.968925476074219, -4.170475006103516 ], [ -80.968498229980469, -4.171378135681039 ], [ -80.966773986816293, -4.173110008239746 ], [ -80.966255187988281, -4.173031806945744 ], [ -80.963752746582031, -4.173367023468018 ], [ -80.960533142089844, -4.174524784088135 ], [ -80.959442138671875, -4.174498081207219 ], [ -80.957214355468693, -4.173542976379395 ], [ -80.953559875488281, -4.172534942626896 ], [ -80.953041076660043, -4.17218017578125 ], [ -80.950492858886719, -4.171273231506348 ], [ -80.949310302734318, -4.170454978942871 ], [ -80.948600769042969, -4.170316219329834 ], [ -80.946014404296875, -4.169030189514103 ], [ -80.94439697265625, -4.168997764587289 ], [ -80.94268798828125, -4.169559001922551 ], [ -80.941184997558537, -4.170857906341496 ], [ -80.939971923828068, -4.172648906707764 ], [ -80.939697265625, -4.17388200759882 ], [ -80.938697814941406, -4.176177024841309 ], [ -80.937461853027287, -4.177373886108398 ], [ -80.936141967773381, -4.177996158599854 ], [ -80.934547424316406, -4.177306175231934 ], [ -80.932876586914062, -4.176914215087834 ], [ -80.931785583496094, -4.176281929016056 ], [ -80.93048095703125, -4.175168037414551 ], [ -80.928825378417969, -4.173020839691162 ], [ -80.92694091796875, -4.171792030334416 ], [ -80.923515319824219, -4.171053886413574 ], [ -80.919555664062443, -4.171210765838623 ], [ -80.917045593261719, -4.173686027526855 ], [ -80.913406372070312, -4.175856113433838 ], [ -80.912101745605412, -4.176207065582219 ], [ -80.906929016113281, -4.176670074462891 ], [ -80.902549743652344, -4.178339958190804 ], [ -80.898719787597656, -4.181760787963867 ], [ -80.896881103515625, -4.183980941772461 ], [ -80.895660400390625, -4.184753894805851 ], [ -80.894515991210938, -4.184908866882267 ], [ -80.892433166503906, -4.184761047363281 ], [ -80.889755249023438, -4.185501098632756 ], [ -80.887825012207031, -4.187397956848145 ], [ -80.887107849121037, -4.188957214355469 ], [ -80.885993957519474, -4.190256118774414 ], [ -80.885398864746037, -4.191465854644719 ], [ -80.884246826171818, -4.191887855529785 ], [ -80.882087707519418, -4.192083835601807 ], [ -80.87856292724598, -4.192794799804688 ], [ -80.875343322753906, -4.192396163940373 ], [ -80.873458862304688, -4.19253492355341 ], [ -80.872116088867188, -4.192402839660588 ], [ -80.868270874023438, -4.1914768218993 ], [ -80.867652893066349, -4.191131114959603 ], [ -80.863624572753906, -4.190530776977539 ], [ -80.861419677734375, -4.189746856689453 ], [ -80.859527587890625, -4.188573837280273 ], [ -80.858238220214787, -4.18821382522583 ], [ -80.856613159179631, -4.188072204589787 ], [ -80.855087280273381, -4.188220024108887 ], [ -80.852691650390568, -4.189255237579346 ], [ -80.851203918457031, -4.18959903717041 ], [ -80.849693298339844, -4.189339160919133 ], [ -80.848030090331974, -4.188263893127441 ], [ -80.847343444824162, -4.187548160552922 ], [ -80.845436096191349, -4.187022209167367 ], [ -80.843994140625, -4.187151908874512 ], [ -80.842422485351562, -4.187828063964844 ], [ -80.840858459472599, -4.188183784484806 ], [ -80.837799072265625, -4.188403129577637 ], [ -80.836311340331918, -4.188054084777832 ], [ -80.830345153808594, -4.185119152069035 ], [ -80.828201293945256, -4.184794902801514 ], [ -80.824409484863281, -4.18480396270752 ], [ -80.822807312011719, -4.184267997741699 ], [ -80.819328308105412, -4.182349205016976 ], [ -80.816436767578125, -4.181344032287484 ], [ -80.814361572265568, -4.180075168609619 ], [ -80.810417175292969, -4.178283214569092 ], [ -80.809913635253906, -4.177875041961556 ], [ -80.807716369628906, -4.177054882049561 ], [ -80.805229187011719, -4.17577600479126 ], [ -80.80401611328125, -4.175434112548828 ], [ -80.802574157714844, -4.175552845001221 ], [ -80.800605773925781, -4.1772780418396 ], [ -80.799598693847543, -4.177879810333195 ], [ -80.798530578613224, -4.178067207336369 ], [ -80.795661926269474, -4.178043842315674 ], [ -80.793136596679688, -4.178719043731689 ], [ -80.790664672851562, -4.179799079894963 ], [ -80.787940979003849, -4.179306983947697 ], [ -80.78558349609375, -4.17817211151123 ], [ -80.784591674804631, -4.178260803222599 ], [ -80.784065246582031, -4.178616046905518 ], [ -80.783309936523438, -4.180034160613957 ], [ -80.782180786132812, -4.180286884307748 ], [ -80.781608581542969, -4.179984092712402 ], [ -80.781387329101562, -4.179580211639347 ], [ -80.7821044921875, -4.176963806152344 ], [ -80.781822204589787, -4.176202774047795 ], [ -80.781265258789006, -4.175611972808838 ], [ -80.779701232910156, -4.175244808196965 ], [ -80.777099609375, -4.176208972930908 ], [ -80.774932861328125, -4.175119876861572 ], [ -80.771781921386719, -4.174996852874756 ], [ -80.770751953125, -4.173971176147461 ], [ -80.76947021484375, -4.173477172851506 ], [ -80.768127441406136, -4.174322128295898 ], [ -80.766426086425781, -4.174229145050049 ], [ -80.764625549316406, -4.175634860992375 ], [ -80.764152526855469, -4.175522804260197 ], [ -80.763259887695199, -4.174852848052979 ], [ -80.762229919433594, -4.174897193908691 ], [ -80.761550903320312, -4.175162792205811 ], [ -80.760299682617131, -4.176558017730713 ], [ -80.760078430175724, -4.178190231323185 ], [ -80.758796691894531, -4.1790452003479 ], [ -80.756309509277344, -4.178866863250732 ], [ -80.755500793456974, -4.179609775543213 ], [ -80.754707336425781, -4.179806232452279 ], [ -80.752227783203125, -4.17816686630249 ], [ -80.751686096191349, -4.178153038024789 ], [ -80.750534057617188, -4.177619934082031 ], [ -80.749649047851562, -4.177556037902832 ], [ -80.74819183349598, -4.177935123443547 ], [ -80.748207092285156, -4.178483963012638 ], [ -80.747901916503849, -4.178819179534912 ], [ -80.746162414550724, -4.179543972015267 ], [ -80.746482849121094, -4.180991172790471 ], [ -80.745330810546761, -4.181745052337646 ], [ -80.745864868164062, -4.183587074279785 ], [ -80.745124816894474, -4.183889865875244 ], [ -80.743949890136719, -4.183880805969238 ], [ -80.743133544921818, -4.183617115020695 ], [ -80.741584777831974, -4.181413173675537 ], [ -80.738815307617131, -4.181099891662598 ], [ -80.737541198730469, -4.180273056030273 ], [ -80.736457824706974, -4.180417060852051 ], [ -80.735855102539006, -4.180232048034611 ], [ -80.735588073730412, -4.179765224456787 ], [ -80.736061096191349, -4.178681850433293 ], [ -80.736000061035156, -4.178242206573486 ], [ -80.734130859375, -4.178561210632324 ], [ -80.733688354492131, -4.178871154785156 ], [ -80.732818603515568, -4.180127143859863 ], [ -80.731689453124943, -4.181036949157715 ], [ -80.731330871582031, -4.181056976318359 ], [ -80.730247497558537, -4.18044376373291 ], [ -80.728912353515568, -4.180947780609074 ], [ -80.728500366210938, -4.181653976440316 ], [ -80.728614807128849, -4.183822154998779 ], [ -80.728141784667912, -4.184589862823486 ], [ -80.7283935546875, -4.185462951660156 ], [ -80.728279113769531, -4.186453819274902 ], [ -80.726776123046875, -4.188119888305607 ], [ -80.725006103515568, -4.189671993255615 ], [ -80.724029541015568, -4.189914226531982 ], [ -80.722503662109318, -4.189773082733097 ], [ -80.721755981445256, -4.190066814422551 ], [ -80.721145629882812, -4.190970897674561 ], [ -80.720596313476506, -4.192972183227482 ], [ -80.719993591308594, -4.193760871887207 ], [ -80.718978881835881, -4.194163799285832 ], [ -80.717170715331974, -4.193195819854736 ], [ -80.714744567871094, -4.193439960479679 ], [ -80.713981628417969, -4.192310810089111 ], [ -80.712738037109375, -4.192150115966797 ], [ -80.711997985839844, -4.191623210906982 ], [ -80.711769104003906, -4.191237926483154 ], [ -80.7119140625, -4.190534114837646 ], [ -80.71160888671875, -4.190086841583195 ], [ -80.710731506347656, -4.189966201782227 ], [ -80.709548950195256, -4.18914794921875 ], [ -80.708114624023381, -4.188924789428711 ], [ -80.706504821777287, -4.189504146575928 ], [ -80.704750061035156, -4.189722061157227 ], [ -80.703567504882812, -4.189263820648137 ], [ -80.702880859374943, -4.188601016998234 ], [ -80.701629638671818, -4.187856197357178 ], [ -80.700759887695256, -4.187664031982422 ], [ -80.699134826660156, -4.187720775604248 ], [ -80.698303222656193, -4.18878793716425 ], [ -80.6973876953125, -4.18951511383051 ], [ -80.695953369140625, -4.190056800842285 ], [ -80.694091796874943, -4.190412998199406 ], [ -80.692863464355412, -4.191161155700684 ], [ -80.692367553710881, -4.191693782806396 ], [ -80.691093444824219, -4.194583892822266 ], [ -80.689506530761662, -4.196190834045353 ], [ -80.684906005859375, -4.197671890258732 ], [ -80.682968139648438, -4.199263095855713 ], [ -80.681465148925781, -4.199893951415959 ], [ -80.680480957031136, -4.200009822845459 ], [ -80.6800537109375, -4.201004028320312 ], [ -80.678695678710938, -4.202688217163086 ], [ -80.678596496582031, -4.204562187194767 ], [ -80.677833557128906, -4.20600700378418 ], [ -80.676864624023438, -4.206490039825383 ], [ -80.67535400390625, -4.206402778625431 ], [ -80.674461364746037, -4.206850051879883 ], [ -80.673957824707031, -4.20747518539423 ], [ -80.673812866210938, -4.20900821685791 ], [ -80.673088073730469, -4.209940910339355 ], [ -80.671974182128849, -4.210712909698486 ], [ -80.669761657714844, -4.211720943450928 ], [ -80.666358947753849, -4.214670181274414 ], [ -80.664955139160156, -4.216204166412354 ], [ -80.664047241210881, -4.216532230377197 ], [ -80.663078308105469, -4.217413902282658 ], [ -80.661506652831918, -4.217837810516244 ], [ -80.660606384277344, -4.217837810516244 ], [ -80.658309936523438, -4.218879222869816 ], [ -80.657447814941406, -4.219804763793832 ], [ -80.657218933105469, -4.22104883193964 ], [ -80.656852722167969, -4.221563816070557 ], [ -80.655647277832031, -4.222518920898324 ], [ -80.654228210449162, -4.223077774047852 ], [ -80.653038024902344, -4.224048137664795 ], [ -80.651786804199219, -4.224561214446908 ], [ -80.649841308593693, -4.224892139434758 ], [ -80.649147033691406, -4.225924015045166 ], [ -80.6485595703125, -4.226362228393498 ], [ -80.646263122558594, -4.226801872253418 ], [ -80.645973205566406, -4.227377891540527 ], [ -80.646080017089844, -4.228980064391976 ], [ -80.645347595214844, -4.22936296463007 ], [ -80.644889831542912, -4.229403972625732 ], [ -80.643539428710881, -4.228908061981201 ], [ -80.642707824706974, -4.229555130004883 ], [ -80.640808105468636, -4.229605197906437 ], [ -80.638465881347656, -4.22871208190918 ], [ -80.636505126953068, -4.228437900543213 ], [ -80.635833740234318, -4.228730201721135 ], [ -80.635505676269531, -4.229570865631104 ], [ -80.635047912597656, -4.229844093322754 ], [ -80.634651184082031, -4.229471206665039 ], [ -80.634445190429688, -4.228445053100529 ], [ -80.633697509765625, -4.228422164916992 ], [ -80.633277893066293, -4.227956771850586 ], [ -80.632415771484261, -4.228226184844914 ], [ -80.631797790527344, -4.228075981140137 ], [ -80.630874633789006, -4.228433132171574 ], [ -80.629768371582031, -4.229361057281494 ], [ -80.627784729003906, -4.229213237762451 ], [ -80.626838684082031, -4.229716777801514 ], [ -80.62451171875, -4.229616165161076 ], [ -80.623817443847599, -4.230206966400146 ], [ -80.623336791992131, -4.231279850006104 ], [ -80.62274169921875, -4.231510162353516 ], [ -80.621704101562443, -4.230814933776855 ], [ -80.620491027831974, -4.229259014129582 ], [ -80.617294311523438, -4.228704929351807 ], [ -80.61602783203125, -4.22783184051508 ], [ -80.614830017089844, -4.227444171905518 ], [ -80.613761901855469, -4.226470947265625 ], [ -80.612464904785099, -4.226084232330265 ], [ -80.611091613769531, -4.225058078765755 ], [ -80.610633850097656, -4.221388816833496 ], [ -80.609359741210938, -4.219542980194035 ], [ -80.608825683593693, -4.217825889587289 ], [ -80.607734680175781, -4.215773105621281 ], [ -80.606704711914062, -4.215229988098145 ], [ -80.605590820312443, -4.215580940246468 ], [ -80.60475921630848, -4.216415882110539 ], [ -80.604370117187443, -4.216347217559814 ], [ -80.604164123535099, -4.216051101684513 ], [ -80.603889465331974, -4.213991165161133 ], [ -80.604629516601506, -4.211483955383187 ], [ -80.604469299316349, -4.210501194000244 ], [ -80.603874206542912, -4.210542201995736 ], [ -80.602409362792969, -4.212272167205754 ], [ -80.601608276367131, -4.212800979614258 ], [ -80.598114013671875, -4.212717056274357 ], [ -80.596817016601506, -4.213959217071533 ], [ -80.596076965331974, -4.214301109313965 ], [ -80.595352172851562, -4.214204788208008 ], [ -80.594596862792969, -4.213321208953801 ], [ -80.594154357910099, -4.213232040405273 ], [ -80.593284606933537, -4.213481903076172 ], [ -80.592788696289062, -4.214017868041992 ], [ -80.591941833496094, -4.214293956756535 ], [ -80.589797973632812, -4.214487075805664 ], [ -80.589561462402287, -4.214211940765381 ], [ -80.589363098144531, -4.213142871856689 ], [ -80.589958190917912, -4.211408138275146 ], [ -80.589393615722599, -4.209880828857422 ], [ -80.589309692382699, -4.2089648246764 ], [ -80.590293884277344, -4.207047939300537 ], [ -80.590316772460938, -4.20659685134882 ], [ -80.589897155761719, -4.205601215362549 ], [ -80.588973999023438, -4.204878807067871 ], [ -80.588928222656136, -4.203618049621582 ], [ -80.588661193847656, -4.203151226043587 ], [ -80.58819580078125, -4.202896118164062 ], [ -80.586845397949219, -4.202905178070012 ], [ -80.586593627929688, -4.202644824981689 ], [ -80.586509704589787, -4.201646804809513 ], [ -80.5867919921875, -4.200050830841064 ], [ -80.586601257324219, -4.198900222778263 ], [ -80.586044311523381, -4.198417186737061 ], [ -80.584831237792855, -4.198074817657471 ], [ -80.58380126953125, -4.19751501083374 ], [ -80.581558227539006, -4.195721149444523 ], [ -80.580223083496037, -4.194262027740479 ], [ -80.5792236328125, -4.194333076477051 ], [ -80.578826904296875, -4.195147037506104 ], [ -80.577987670898438, -4.195874214172363 ], [ -80.577491760253906, -4.195833206176701 ], [ -80.576583862304688, -4.19532394409174 ], [ -80.576225280761662, -4.194859981536865 ], [ -80.577056884765625, -4.193655967712402 ], [ -80.576576232910156, -4.192668914794808 ], [ -80.576667785644531, -4.191055774688664 ], [ -80.576133728027287, -4.190566062927246 ], [ -80.573753356933537, -4.189239025115967 ], [ -80.573211669921875, -4.188324928283691 ], [ -80.573036193847656, -4.186975955963078 ], [ -80.573554992675724, -4.185729026794434 ], [ -80.573043823242188, -4.184788227081299 ], [ -80.572700500488224, -4.183475017547551 ], [ -80.573280334472599, -4.183119773864746 ], [ -80.573547363281193, -4.182469844818058 ], [ -80.57338714599598, -4.182075977325383 ], [ -80.572013854980412, -4.181374073028564 ], [ -80.57122802734375, -4.180651187896729 ], [ -80.568840026855469, -4.179864883422852 ], [ -80.567092895507699, -4.179592132568303 ], [ -80.566459655761719, -4.178271770477295 ], [ -80.565734863281193, -4.178230762481689 ], [ -80.564888000488224, -4.178534030914307 ], [ -80.56414794921875, -4.177224159240666 ], [ -80.562629699707031, -4.176939010620117 ], [ -80.561744689941349, -4.17607307434082 ], [ -80.561103820800781, -4.17592191696167 ], [ -80.560958862304631, -4.174691200256348 ], [ -80.560401916503849, -4.174046039581299 ], [ -80.560333251953125, -4.173505783081055 ], [ -80.560699462890511, -4.172684192657471 ], [ -80.561515808105469, -4.171831130981332 ], [ -80.561798095703125, -4.171073913574219 ], [ -80.561752319335824, -4.169920921325627 ], [ -80.562042236328125, -4.168504238128662 ], [ -80.561737060546818, -4.16728401184082 ], [ -80.561470031738281, -4.166916847228947 ], [ -80.560935974121094, -4.166828155517464 ], [ -80.558807373046875, -4.167745113372803 ], [ -80.557159423828068, -4.167713165283203 ], [ -80.556556701660156, -4.167364120483398 ], [ -80.5562744140625, -4.166601181030273 ], [ -80.556350708007812, -4.165602207183838 ], [ -80.557525634765568, -4.164241790771428 ], [ -80.557891845703125, -4.163518905639592 ], [ -80.557952880859375, -4.162069797515869 ], [ -80.557472229003906, -4.160307884216252 ], [ -80.556205749511662, -4.159309864044189 ], [ -80.553627014160099, -4.158992767333928 ], [ -80.55202484130848, -4.158284187316895 ], [ -80.552093505859318, -4.155790805816594 ], [ -80.551567077636719, -4.153425216674691 ], [ -80.551139831542912, -4.153059959411564 ], [ -80.549880981445312, -4.152608871459961 ], [ -80.548355102539062, -4.151323795318547 ], [ -80.547393798828125, -4.14938402175892 ], [ -80.547050476074162, -4.147424221038818 ], [ -80.545463562011719, -4.146273136138859 ], [ -80.545188903808594, -4.144862174987736 ], [ -80.545730590820199, -4.143454074859619 ], [ -80.544906616210938, -4.141235828399658 ], [ -80.544281005859318, -4.140968799591008 ], [ -80.541305541992131, -4.141197204589844 ], [ -80.540191650390568, -4.140270233154297 ], [ -80.540077209472599, -4.138279914855957 ], [ -80.538398742675781, -4.135913848876896 ], [ -80.53887939453125, -4.133840084075871 ], [ -80.538841247558537, -4.133172035217228 ], [ -80.534500122070312, -4.127315044403019 ], [ -80.533332824706918, -4.12427902221674 ], [ -80.532867431640625, -4.122348785400334 ], [ -80.5322265625, -4.121362209320012 ], [ -80.531318664550724, -4.120349884033146 ], [ -80.530540466308537, -4.119912147521916 ], [ -80.528564453124886, -4.120090007781982 ], [ -80.526817321777287, -4.12119102478016 ], [ -80.526145935058537, -4.120989799499455 ], [ -80.525588989257756, -4.117516994476318 ], [ -80.525962829589787, -4.115100860595646 ], [ -80.526313781738281, -4.114272117614746 ], [ -80.526138305664062, -4.113019943237305 ], [ -80.524421691894531, -4.110006809234619 ], [ -80.523445129394531, -4.106429100036564 ], [ -80.520988464355469, -4.103365898132267 ], [ -80.519477844238224, -4.102557182312012 ], [ -80.518592834472656, -4.10178899765009 ], [ -80.518173217773438, -4.099504947662354 ], [ -80.5174560546875, -4.098258018493652 ], [ -80.516059875488224, -4.097135066986027 ], [ -80.515419006347656, -4.097101211547852 ], [ -80.513969421386605, -4.097821235656738 ], [ -80.513313293457031, -4.097808837890625 ], [ -80.511634826660156, -4.094840049743652 ], [ -80.509567260742131, -4.092692852020207 ], [ -80.507904052734375, -4.092390060424691 ], [ -80.505416870117188, -4.090742111205998 ], [ -80.504547119140625, -4.090575218200627 ], [ -80.504142761230412, -4.090208053588867 ], [ -80.503616333007812, -4.090087890625 ], [ -80.502388000488281, -4.090195178985596 ], [ -80.501365661621037, -4.091272830963135 ], [ -80.500328063964787, -4.091279983520508 ], [ -80.499343872070256, -4.090404033660832 ], [ -80.498847961425781, -4.088212013244629 ], [ -80.498130798339787, -4.087530136108285 ], [ -80.495109558105469, -4.086787223815804 ], [ -80.494323730468636, -4.086351871490479 ], [ -80.493347167968693, -4.0852952003479 ], [ -80.492797851562386, -4.084993839263916 ], [ -80.491821289062443, -4.085043907165471 ], [ -80.490219116210881, -4.08559608459467 ], [ -80.489646911621037, -4.085558891296387 ], [ -80.489387512207031, -4.085543155670166 ], [ -80.489059448242131, -4.085523128509521 ], [ -80.488059997558594, -4.084773063659611 ], [ -80.486900329589844, -4.082970142364502 ], [ -80.486717224121094, -4.083209037780762 ], [ -80.485992431640568, -4.084129810333195 ], [ -80.484542846679688, -4.084662914276123 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-PUN", "NAME_0": "Peru", "ID_1": 22, "NAME_1": "Puno", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.869796752929631, -13.015110015869027 ], [ -68.868148803710881, -13.015428543090763 ], [ -68.864280700683594, -13.013368606567383 ], [ -68.859977722167855, -13.011568069458008 ], [ -68.857749938964787, -13.0098876953125 ], [ -68.855758666992131, -13.009339332580566 ], [ -68.854759216308594, -13.009288787841683 ], [ -68.852706909179631, -13.010770797729379 ], [ -68.851600646972656, -13.012009620666504 ], [ -68.851097106933537, -13.013640403747502 ], [ -68.851387023925724, -13.014319419860726 ], [ -68.854469299316406, -13.016028404235783 ], [ -68.855377197265568, -13.016259193420353 ], [ -68.85675048828125, -13.017599105834904 ], [ -68.857276916503849, -13.019160270690861 ], [ -68.857521057128906, -13.022478103637638 ], [ -68.858009338378906, -13.023541450500488 ], [ -68.85894775390625, -13.02433967590332 ], [ -68.860061645507756, -13.024819374084473 ], [ -68.863517761230469, -13.024788856506348 ], [ -68.864532470703068, -13.02544975280756 ], [ -68.865310668945256, -13.026920318603459 ], [ -68.865272521972656, -13.027907371520996 ], [ -68.865119934081974, -13.028253555297852 ], [ -68.864967346191406, -13.028599739074707 ], [ -68.864143371581974, -13.029730796813965 ], [ -68.86293792724598, -13.030590057373047 ], [ -68.860198974609375, -13.03152942657465 ], [ -68.858802795410099, -13.031558990478516 ], [ -68.8582763671875, -13.031369209289551 ], [ -68.856300354003906, -13.029030799865666 ], [ -68.855087280273381, -13.028130531311035 ], [ -68.853706359863281, -13.027379035949707 ], [ -68.853317260742188, -13.027389526367131 ], [ -68.851020812988281, -13.028199195861703 ], [ -68.849983215332031, -13.02897930145258 ], [ -68.849067687988281, -13.03096961975092 ], [ -68.848678588867188, -13.032490730285531 ], [ -68.848777770996094, -13.034137725830078 ], [ -68.849098205566349, -13.034599304199219 ], [ -68.850616455078068, -13.035529136657715 ], [ -68.852806091308537, -13.036198616027775 ], [ -68.853179931640568, -13.036708831787109 ], [ -68.853286743164006, -13.037528038024902 ], [ -68.852783203125, -13.039389610290471 ], [ -68.848716735839787, -13.043049812316838 ], [ -68.848419189453068, -13.043849945068359 ], [ -68.848663330078125, -13.044399261474609 ], [ -68.849418640136719, -13.044999122619629 ], [ -68.850326538085881, -13.045179367065373 ], [ -68.8536376953125, -13.044850349426213 ], [ -68.856781005859375, -13.04363822937006 ], [ -68.858970642089844, -13.04209041595459 ], [ -68.859466552734318, -13.042154312133789 ], [ -68.859901428222656, -13.042208671569824 ], [ -68.86074066162098, -13.042610168457031 ], [ -68.861717224121094, -13.044369697570801 ], [ -68.862007141113281, -13.04535007476801 ], [ -68.862052917480412, -13.046629905700627 ], [ -68.861732482910156, -13.047521591186523 ], [ -68.860839843749886, -13.050009727478027 ], [ -68.860557556152344, -13.051265716552734 ], [ -68.860282897949219, -13.052519798278809 ], [ -68.858535766601506, -13.054179191589299 ], [ -68.85809326171875, -13.054328918457031 ], [ -68.856590270996094, -13.054468154907227 ], [ -68.855720520019531, -13.054210662841683 ], [ -68.854232788085881, -13.054300308227539 ], [ -68.85296630859375, -13.055379867553654 ], [ -68.852859497070312, -13.056650161743164 ], [ -68.854568481445312, -13.059038162231445 ], [ -68.854743957519531, -13.059453010559025 ], [ -68.854888916015568, -13.059799194335881 ], [ -68.855110168456974, -13.060700416564885 ], [ -68.854988098144474, -13.063808441162053 ], [ -68.855552673339844, -13.065059661865178 ], [ -68.856468200683594, -13.065709114074707 ], [ -68.85888671875, -13.065658569335938 ], [ -68.859596252441293, -13.065918922424316 ], [ -68.860397338867188, -13.066788673400822 ], [ -68.860092163085938, -13.067939758300668 ], [ -68.859359741210938, -13.069119453430176 ], [ -68.8592529296875, -13.069552421569824 ], [ -68.859176635742188, -13.069879531860295 ], [ -68.859260559082031, -13.070210456848145 ], [ -68.859336853027344, -13.070539474487248 ], [ -68.860733032226506, -13.071530342102051 ], [ -68.861785888671818, -13.071879386901855 ], [ -68.863739013671875, -13.073738098144474 ], [ -68.866287231445312, -13.075458526611271 ], [ -68.867431640625, -13.076701164245605 ], [ -68.867851257324219, -13.077509880065918 ], [ -68.867767333984318, -13.078700065612793 ], [ -68.867446899414062, -13.07936954498291 ], [ -68.866737365722599, -13.080108642578125 ], [ -68.864158630371037, -13.081599235534668 ], [ -68.863166809082031, -13.083768844604492 ], [ -68.862632751464787, -13.08582878112793 ], [ -68.859138488769531, -13.089439392089844 ], [ -68.858512878417912, -13.092138290405273 ], [ -68.858612060546818, -13.09341907501215 ], [ -68.858932495117074, -13.094288825988656 ], [ -68.860618591308537, -13.096589088439941 ], [ -68.86163330078125, -13.101460456848145 ], [ -68.861808776855469, -13.101692199706974 ], [ -68.862068176269474, -13.102039337158203 ], [ -68.863456726074219, -13.102979660034123 ], [ -68.864707946777344, -13.104589462280217 ], [ -68.864936828613168, -13.105681419372445 ], [ -68.864860534667969, -13.106869697570744 ], [ -68.864372253417969, -13.107538223266545 ], [ -68.863471984863224, -13.108178138732853 ], [ -68.860733032226506, -13.107269287109375 ], [ -68.859336853027344, -13.107390403747502 ], [ -68.857971191406193, -13.108648300170898 ], [ -68.857856750488224, -13.11029052734375 ], [ -68.858406066894531, -13.110939025878849 ], [ -68.859222412109375, -13.111168861389046 ], [ -68.860481262207031, -13.111960411071721 ], [ -68.862373352050781, -13.112059593200627 ], [ -68.864036560058594, -13.110790252685547 ], [ -68.865882873535099, -13.107930183410645 ], [ -68.866722106933537, -13.107349395751953 ], [ -68.867103576660099, -13.107259750366154 ], [ -68.867271423339844, -13.107218742370605 ], [ -68.869461059570312, -13.107739448547363 ], [ -68.871902465820199, -13.109748840332031 ], [ -68.872817993164006, -13.111359596252328 ], [ -68.873275756835938, -13.112949371337834 ], [ -68.873161315917969, -13.113499641418457 ], [ -68.87209320068348, -13.114519119262638 ], [ -68.870903015136719, -13.114710807800236 ], [ -68.86724853515625, -13.113922119140625 ], [ -68.865928649902344, -13.113969802856445 ], [ -68.864791870117188, -13.114779472351074 ], [ -68.864532470703068, -13.115859031677189 ], [ -68.865028381347599, -13.116718292236328 ], [ -68.867782592773381, -13.118288993835449 ], [ -68.868972778320312, -13.119478225707951 ], [ -68.869728088378906, -13.121149063110352 ], [ -68.870277404785043, -13.124789237976074 ], [ -68.871971130371037, -13.128499031066838 ], [ -68.872589111328125, -13.129030227661133 ], [ -68.875152587890625, -13.130391120910645 ], [ -68.876007080078125, -13.131230354309082 ], [ -68.876663208007756, -13.132570266723633 ], [ -68.876167297363224, -13.134331703185978 ], [ -68.874893188476562, -13.136019706726074 ], [ -68.873901367187386, -13.136540412902832 ], [ -68.872177124023381, -13.136747360229379 ], [ -68.871299743652287, -13.135958671569824 ], [ -68.871307373046818, -13.134948730468693 ], [ -68.871620178222656, -13.134090423583928 ], [ -68.871566772460938, -13.133069038391056 ], [ -68.871047973632812, -13.131698608398438 ], [ -68.870307922363281, -13.130730628967285 ], [ -68.869155883789062, -13.130420684814453 ], [ -68.867347717285156, -13.13035869598383 ], [ -68.865982055664006, -13.130887985229492 ], [ -68.864997863769474, -13.132108688354492 ], [ -68.864830017089787, -13.13301944732666 ], [ -68.864936828613168, -13.134589195251465 ], [ -68.865676879882756, -13.137150764465332 ], [ -68.866470336914062, -13.138400077819824 ], [ -68.868598937988281, -13.14330863952631 ], [ -68.868667602539062, -13.144218444824162 ], [ -68.868392944335938, -13.145679473876953 ], [ -68.86773681640625, -13.146419525146428 ], [ -68.867408752441349, -13.14678859710682 ], [ -68.866172790527287, -13.146609306335449 ], [ -68.865066528320312, -13.145479202270508 ], [ -68.863998413085938, -13.14387035369873 ], [ -68.863265991210938, -13.143649101257324 ], [ -68.861763000488224, -13.144528388976994 ], [ -68.860092163085938, -13.14686012268055 ], [ -68.859161376953125, -13.146968841552678 ], [ -68.8582763671875, -13.146694183349553 ], [ -68.85791015625, -13.146579742431641 ], [ -68.857231140136719, -13.146591186523381 ], [ -68.856521606445256, -13.147268295288086 ], [ -68.856468200683594, -13.148368835449219 ], [ -68.857177734374943, -13.149218559265137 ], [ -68.858016967773438, -13.149269104003849 ], [ -68.859123229980355, -13.14900016784668 ], [ -68.860603332519531, -13.149147987365723 ], [ -68.8619384765625, -13.150289535522347 ], [ -68.864189147949219, -13.153678894042855 ], [ -68.86531829833973, -13.156100273132267 ], [ -68.865379333496037, -13.157938957214299 ], [ -68.864723205566349, -13.160339355468693 ], [ -68.865020751953068, -13.162130355834961 ], [ -68.866287231445312, -13.163220405578556 ], [ -68.868598937988281, -13.163458824157658 ], [ -68.869422912597543, -13.164349555969181 ], [ -68.869422912597543, -13.165088653564396 ], [ -68.868629455566349, -13.165748596191406 ], [ -68.867912292480469, -13.165959358215332 ], [ -68.865768432617131, -13.166058540344238 ], [ -68.863639831542969, -13.167458534240723 ], [ -68.862747192382699, -13.167778015136662 ], [ -68.861251831054688, -13.167830467224064 ], [ -68.858116149902344, -13.166159629821777 ], [ -68.857208251953068, -13.165970802307072 ], [ -68.856712341308537, -13.166054725646973 ], [ -68.856208801269531, -13.166138648986816 ], [ -68.855216979980469, -13.167000770568848 ], [ -68.855171203613281, -13.167930603027344 ], [ -68.855499267578011, -13.168420791625977 ], [ -68.855827331542969, -13.16890811920166 ], [ -68.856323242187443, -13.169199943542367 ], [ -68.858650207519531, -13.169460296630859 ], [ -68.859146118164062, -13.169711112976074 ], [ -68.86065673828125, -13.171089172363281 ], [ -68.86181640625, -13.173088073730469 ], [ -68.861946105956974, -13.173909187316838 ], [ -68.861717224121094, -13.174799919128361 ], [ -68.859542846679688, -13.178318977355957 ], [ -68.859642028808594, -13.179498672485352 ], [ -68.859916687011719, -13.179999351501465 ], [ -68.860542297363224, -13.180388450622559 ], [ -68.861656188964844, -13.180249214172363 ], [ -68.864479064941406, -13.177190780639648 ], [ -68.867675781249943, -13.175490379333382 ], [ -68.8692626953125, -13.175460815429688 ], [ -68.870178222656193, -13.175938606262207 ], [ -68.870620727539062, -13.176618576049805 ], [ -68.87066650390625, -13.177828788757324 ], [ -68.869293212890568, -13.179429054260197 ], [ -68.867721557617188, -13.18026065826416 ], [ -68.867240905761719, -13.180664062499886 ], [ -68.86676025390625, -13.181070327758732 ], [ -68.866172790527287, -13.18231010437006 ], [ -68.865325927734375, -13.185429573059025 ], [ -68.864311218261719, -13.186980247497559 ], [ -68.863258361816406, -13.187520027160588 ], [ -68.860466003417969, -13.187780380249023 ], [ -68.859123229980355, -13.188589096069336 ], [ -68.858833312988168, -13.189647674560547 ], [ -68.858650207519531, -13.193600654602051 ], [ -68.858337402343693, -13.194568634033146 ], [ -68.857620239257812, -13.195639610290527 ], [ -68.854286193847656, -13.198169708251953 ], [ -68.85400390625, -13.198858261108398 ], [ -68.853660583496037, -13.199699401855469 ], [ -68.853538513183594, -13.201260566711369 ], [ -68.853416442871094, -13.201711654663086 ], [ -68.8531494140625, -13.202680587768555 ], [ -68.850669860839844, -13.207509994506722 ], [ -68.850669860839844, -13.210468292236328 ], [ -68.850906372070256, -13.211419105529785 ], [ -68.852241516113224, -13.212729454040527 ], [ -68.853256225585938, -13.212970733642521 ], [ -68.854125976562443, -13.212779045104867 ], [ -68.855247497558594, -13.211770057678166 ], [ -68.856132507324162, -13.209079742431584 ], [ -68.857299804687443, -13.207900047302189 ], [ -68.858222961425781, -13.20773983001709 ], [ -68.860000610351562, -13.208490371704102 ], [ -68.860466003417969, -13.209500312805176 ], [ -68.860382080078125, -13.215289115905762 ], [ -68.861686706542912, -13.219120025634766 ], [ -68.861717224121094, -13.22068977355957 ], [ -68.860893249511719, -13.221999168395939 ], [ -68.860366821289062, -13.222378730773926 ], [ -68.859466552734318, -13.222618103027287 ], [ -68.858688354492188, -13.222140312194824 ], [ -68.857116699218636, -13.218898773193303 ], [ -68.855812072753906, -13.217839241027832 ], [ -68.855079650878849, -13.217708587646484 ], [ -68.854347229003849, -13.217578887939453 ], [ -68.852706909179631, -13.218260765075684 ], [ -68.852645874023438, -13.219598770141545 ], [ -68.853370666503849, -13.223008155822697 ], [ -68.853370666503849, -13.226199150085392 ], [ -68.8560791015625, -13.229738235473633 ], [ -68.85616302490223, -13.231179237365723 ], [ -68.855789184570312, -13.231920242309513 ], [ -68.855010986328068, -13.232560157775822 ], [ -68.852577209472656, -13.232509613037053 ], [ -68.850090026855469, -13.232119560241642 ], [ -68.849517822265625, -13.232263565063477 ], [ -68.849182128906193, -13.232350349426213 ], [ -68.848213195800724, -13.232958793640137 ], [ -68.847961425781136, -13.233519554138184 ], [ -68.847763061523381, -13.236010551452637 ], [ -68.847206115722656, -13.238150596618539 ], [ -68.846244812011605, -13.239937782287598 ], [ -68.844451904296875, -13.241838455200138 ], [ -68.844139099121037, -13.2426500320434 ], [ -68.844291687011719, -13.244049072265568 ], [ -68.845291137695199, -13.24468994140625 ], [ -68.849311828613281, -13.245629310607853 ], [ -68.851470947265568, -13.245924949645996 ], [ -68.8536376953125, -13.246218681335392 ], [ -68.855232238769531, -13.246749877929631 ], [ -68.856109619140625, -13.248050689697266 ], [ -68.856483459472656, -13.249185562133675 ], [ -68.856857299804688, -13.250318527221623 ], [ -68.857513427734375, -13.25151252746582 ], [ -68.858100891113281, -13.252589225769043 ], [ -68.858421325683537, -13.254298210144043 ], [ -68.857307434081918, -13.25580978393549 ], [ -68.856346130371037, -13.256059646606445 ], [ -68.854705810546818, -13.255649566650391 ], [ -68.853302001953011, -13.255731582641545 ], [ -68.852645874023438, -13.255770683288517 ], [ -68.851776123046761, -13.256319999694824 ], [ -68.851478576660099, -13.257079124450684 ], [ -68.851997375488281, -13.258338928222656 ], [ -68.852867126464844, -13.259050369262695 ], [ -68.854080200195312, -13.25955867767334 ], [ -68.856307983398438, -13.259860038757267 ], [ -68.857612609863281, -13.260580062866211 ], [ -68.858673095703125, -13.261979103088379 ], [ -68.858512878417912, -13.26304817199707 ], [ -68.857696533203125, -13.263699531555176 ], [ -68.856292724609375, -13.264201164245605 ], [ -68.853950500488224, -13.264258384704533 ], [ -68.850448608398438, -13.265258789062386 ], [ -68.849159240722656, -13.265368461608887 ], [ -68.848075866699219, -13.265459060668888 ], [ -68.847801208496094, -13.26609992980957 ], [ -68.847770690917855, -13.266939163208008 ], [ -68.848777770996094, -13.268269538879395 ], [ -68.84979248046875, -13.269600868225098 ], [ -68.851020812988281, -13.270540237426701 ], [ -68.851448059082031, -13.270535469055176 ], [ -68.851882934570312, -13.270529747009277 ], [ -68.852600097656193, -13.270258903503361 ], [ -68.855392456054631, -13.267548561096135 ], [ -68.856597900390625, -13.266559600830021 ], [ -68.85723876953125, -13.266380310058537 ], [ -68.857978820800668, -13.266446113586426 ], [ -68.858726501464787, -13.266510009765625 ], [ -68.859390258789006, -13.26685905456543 ], [ -68.860359191894418, -13.267749786376953 ], [ -68.860733032226506, -13.268589019775334 ], [ -68.860687255859375, -13.269228935241642 ], [ -68.857986450195312, -13.274779319763184 ], [ -68.857086181640568, -13.275893211364689 ], [ -68.856590270996094, -13.276509284973088 ], [ -68.854087829589844, -13.278108596801758 ], [ -68.853363037109318, -13.279168128967228 ], [ -68.853340148925781, -13.279685974121094 ], [ -68.853317260742188, -13.280178070068359 ], [ -68.853813171386719, -13.280750274658203 ], [ -68.85809326171875, -13.281040191650391 ], [ -68.859260559082031, -13.2818603515625 ], [ -68.859703063964844, -13.282638549804688 ], [ -68.859619140625, -13.28456974029541 ], [ -68.858802795410099, -13.285458564758301 ], [ -68.858497619628906, -13.2862291336059 ], [ -68.856048583984318, -13.288619995117074 ], [ -68.855552673339844, -13.28981876373291 ], [ -68.855583190917912, -13.290638923644963 ], [ -68.856880187988281, -13.292888641357365 ], [ -68.857643127441406, -13.293390274047852 ], [ -68.858535766601506, -13.293659210205021 ], [ -68.860237121581974, -13.293549537658691 ], [ -68.861709594726562, -13.292560577392578 ], [ -68.863372802734375, -13.291958808898869 ], [ -68.864295959472656, -13.291829109191895 ], [ -68.865219116210881, -13.291999816894531 ], [ -68.866798400878906, -13.293928146362305 ], [ -68.867088317871094, -13.296979904174805 ], [ -68.866065979003849, -13.298360824584904 ], [ -68.865417480468636, -13.298780441284066 ], [ -68.863700866699105, -13.298780441284066 ], [ -68.862426757812443, -13.298190116882324 ], [ -68.861770629882756, -13.298137664794865 ], [ -68.861152648925781, -13.29835033416748 ], [ -68.860076904296761, -13.299269676208439 ], [ -68.859786987304574, -13.299908638000488 ], [ -68.8597412109375, -13.300868034362736 ], [ -68.860466003417969, -13.303509712219181 ], [ -68.859840393066406, -13.304939270019531 ], [ -68.858161926269474, -13.307148933410531 ], [ -68.858078002929688, -13.307978630065918 ], [ -68.861610412597656, -13.311630249023438 ], [ -68.861625671386719, -13.312071800231934 ], [ -68.86163330078125, -13.312478065490666 ], [ -68.861076354980469, -13.31480884552002 ], [ -68.861320495605469, -13.315390586852971 ], [ -68.862213134765625, -13.31635856628418 ], [ -68.863189697265568, -13.316610336303597 ], [ -68.865531921386719, -13.31492805480957 ], [ -68.866241455078068, -13.314700126647892 ], [ -68.867271423339844, -13.314669609069824 ], [ -68.868492126464844, -13.31514930725092 ], [ -68.8692626953125, -13.315939903259221 ], [ -68.8697509765625, -13.317138671874886 ], [ -68.870010375976562, -13.318309783935547 ], [ -68.870056152343693, -13.320249557495117 ], [ -68.870658874511605, -13.321498870849553 ], [ -68.872879028320312, -13.322920799255314 ], [ -68.873405456542912, -13.322945594787541 ], [ -68.874465942382756, -13.322998046875 ], [ -68.875732421875, -13.323358535766545 ], [ -68.877136230468693, -13.324680328369141 ], [ -68.877731323242188, -13.326059341430664 ], [ -68.877876281738224, -13.327038764953613 ], [ -68.877487182617188, -13.328269958496037 ], [ -68.876937866210881, -13.328781127929688 ], [ -68.876487731933594, -13.328940391540414 ], [ -68.875381469726562, -13.328781127929688 ], [ -68.872436523437443, -13.327131271362305 ], [ -68.871528625488281, -13.327007293701172 ], [ -68.870498657226562, -13.327139854431152 ], [ -68.869155883789062, -13.327797889709473 ], [ -68.866950988769531, -13.329919815063477 ], [ -68.866874694824219, -13.330285072326603 ], [ -68.866752624511605, -13.330849647521973 ], [ -68.866966247558594, -13.331290245056096 ], [ -68.867599487304631, -13.33159065246582 ], [ -68.871162414550781, -13.331739425659123 ], [ -68.871780395507756, -13.331938743591309 ], [ -68.872512817382812, -13.332790374755859 ], [ -68.873291015625, -13.334437370300236 ], [ -68.874313354492188, -13.335529327392521 ], [ -68.875282287597656, -13.336080551147461 ], [ -68.876098632812386, -13.336278915405273 ], [ -68.876686096191406, -13.336742401123047 ], [ -68.877700805664006, -13.338710784912109 ], [ -68.877769470214844, -13.340201377868652 ], [ -68.877807617187443, -13.340908050537109 ], [ -68.877136230468693, -13.34180831909174 ], [ -68.876716613769531, -13.342041015625 ], [ -68.875068664550781, -13.34180831909174 ], [ -68.873901367187386, -13.342159271240234 ], [ -68.872398376464844, -13.344420433044434 ], [ -68.871566772460938, -13.345089912414494 ], [ -68.870452880859318, -13.345547676086369 ], [ -68.86956787109375, -13.345584869384766 ], [ -68.868682861328125, -13.345619201660099 ], [ -68.866958618164062, -13.346138000488281 ], [ -68.866279602050781, -13.346590042114258 ], [ -68.865638732910156, -13.347398757934513 ], [ -68.865409851074162, -13.348379135131836 ], [ -68.865753173828125, -13.349010467529297 ], [ -68.867759704589844, -13.350017547607365 ], [ -68.868705749511719, -13.350049018859806 ], [ -68.871017456054631, -13.349320411682129 ], [ -68.872138977050781, -13.349240303039551 ], [ -68.873207092285099, -13.349550247192383 ], [ -68.873832702636719, -13.350227355956918 ], [ -68.874107360839844, -13.351529121398926 ], [ -68.87361907958973, -13.352331161499023 ], [ -68.872329711914062, -13.352928161621094 ], [ -68.871215820312443, -13.352901458740121 ], [ -68.870697021484375, -13.352667808532658 ], [ -68.868637084960881, -13.35277080535883 ], [ -68.867576599121037, -13.353820800781193 ], [ -68.867286682128849, -13.354500770568848 ], [ -68.867279052734375, -13.355238914489689 ], [ -68.867660522460938, -13.355938911437931 ], [ -68.868789672851562, -13.35640811920166 ], [ -68.870841979980412, -13.35636043548584 ], [ -68.872108459472656, -13.356718063354492 ], [ -68.873031616210881, -13.357869148254338 ], [ -68.873031616210881, -13.359527587890625 ], [ -68.873756408691406, -13.360368728637638 ], [ -68.875610351562443, -13.360528945922852 ], [ -68.876571655273324, -13.360353469848576 ], [ -68.877349853515625, -13.360210418701115 ], [ -68.878150939941406, -13.360440254211369 ], [ -68.878639221191349, -13.360879898071289 ], [ -68.878990173339844, -13.361429214477482 ], [ -68.878929138183537, -13.361862182617074 ], [ -68.878883361816406, -13.362199783325082 ], [ -68.87738037109375, -13.364448547363281 ], [ -68.876876831054688, -13.365609169006234 ], [ -68.877006530761719, -13.367280006408691 ], [ -68.87752532958973, -13.368073463439885 ], [ -68.877716064453011, -13.368369102478027 ], [ -68.878410339355469, -13.368570327758732 ], [ -68.879623413085824, -13.368451118469181 ], [ -68.879737854003906, -13.368439674377385 ], [ -68.881050109863224, -13.367737770080566 ], [ -68.882766723632756, -13.366819381713867 ], [ -68.884071350097599, -13.366598129272461 ], [ -68.885726928710824, -13.367230415344125 ], [ -68.887321472167912, -13.368638038635197 ], [ -68.887260437011719, -13.369280815124398 ], [ -68.886695861816406, -13.369900703430062 ], [ -68.883583068847656, -13.372079849243107 ], [ -68.881881713867131, -13.375259399414062 ], [ -68.881820678710824, -13.376097679138184 ], [ -68.881767272949219, -13.376819610595646 ], [ -68.882217407226562, -13.377829551696721 ], [ -68.882652282714787, -13.378149032592773 ], [ -68.883132934570256, -13.378190040588322 ], [ -68.883926391601562, -13.37791919708252 ], [ -68.885498046875, -13.376468658447266 ], [ -68.887168884277344, -13.37633037567133 ], [ -68.889778137207031, -13.377568244934082 ], [ -68.890197753906193, -13.378060340881348 ], [ -68.89031982421875, -13.378508567810002 ], [ -68.89044189453125, -13.378959655761719 ], [ -68.890510559082031, -13.379690170288086 ], [ -68.890365600585881, -13.380113601684513 ], [ -68.890266418457031, -13.380389213562012 ], [ -68.888175964355412, -13.382499694824219 ], [ -68.887611389160099, -13.382780075073185 ], [ -68.886772155761662, -13.382739067077637 ], [ -68.886497497558594, -13.382527351379395 ], [ -68.88604736328125, -13.380569458007812 ], [ -68.8853759765625, -13.379718780517578 ], [ -68.884979248046875, -13.379708290100041 ], [ -68.884162902832031, -13.380229949951172 ], [ -68.884140014648438, -13.384528160095158 ], [ -68.883232116699162, -13.386549949645996 ], [ -68.883087158203125, -13.387819290161076 ], [ -68.884231567382812, -13.393879890441895 ], [ -68.884902954101562, -13.394980430603027 ], [ -68.886100769042912, -13.395508766174316 ], [ -68.886749267578068, -13.395559310913029 ], [ -68.887939453125, -13.395290374755859 ], [ -68.889511108398381, -13.394449234008789 ], [ -68.891571044921875, -13.394277572631836 ], [ -68.892662048339787, -13.394759178161621 ], [ -68.89300537109375, -13.395321846008301 ], [ -68.893432617187443, -13.396019935607853 ], [ -68.893539428710881, -13.396928787231445 ], [ -68.893280029296875, -13.39838981628418 ], [ -68.89251708984375, -13.399649620056152 ], [ -68.891448974609261, -13.400380134582463 ], [ -68.890159606933594, -13.400628089904785 ], [ -68.88775634765625, -13.399189949035645 ], [ -68.886756896972599, -13.398950576782227 ], [ -68.884635925292969, -13.399349212646484 ], [ -68.884239196777344, -13.399990081787053 ], [ -68.8843994140625, -13.401108741760254 ], [ -68.884857177734318, -13.401820182800293 ], [ -68.886138916015625, -13.402528762817326 ], [ -68.888328552246094, -13.404789924621525 ], [ -68.890388488769474, -13.403940200805607 ], [ -68.891540527343693, -13.4039306640625 ], [ -68.89251708984375, -13.40418815612793 ], [ -68.893066406249943, -13.404970169067383 ], [ -68.893852233886719, -13.407320022583008 ], [ -68.894668579101506, -13.407661437988281 ], [ -68.895477294921875, -13.407999038696289 ], [ -68.896141052246094, -13.408768653869629 ], [ -68.896156311035156, -13.409878730773926 ], [ -68.894416809082031, -13.411928176879883 ], [ -68.894081115722656, -13.412679672241211 ], [ -68.893753051757812, -13.413428306579533 ], [ -68.893898010253849, -13.414437294006234 ], [ -68.894912719726562, -13.416818618774357 ], [ -68.894813537597656, -13.417819976806584 ], [ -68.893692016601562, -13.418800354003793 ], [ -68.892868041992131, -13.41895675659174 ], [ -68.891853332519531, -13.419148445129395 ], [ -68.890998840332031, -13.419528961181584 ], [ -68.890289306640568, -13.4201402664184 ], [ -68.889945983886719, -13.420788764953556 ], [ -68.889923095703011, -13.421519279479924 ], [ -68.890052795410156, -13.421942710876465 ], [ -68.890213012695199, -13.422490119934082 ], [ -68.891036987304631, -13.423690795898438 ], [ -68.892341613769531, -13.42559814453125 ], [ -68.892311096191293, -13.42682933807373 ], [ -68.891983032226562, -13.427449226379395 ], [ -68.888755798339787, -13.430178642272949 ], [ -68.888000488281193, -13.431077003479004 ], [ -68.887931823730469, -13.432098388671875 ], [ -68.888648986816349, -13.433069229125977 ], [ -68.889610290527287, -13.433390617370605 ], [ -68.890830993652344, -13.433010101318246 ], [ -68.891242980956974, -13.432269096374512 ], [ -68.89192962646473, -13.429599761962891 ], [ -68.892837524414062, -13.428549766540527 ], [ -68.893768310546875, -13.428139686584416 ], [ -68.894973754882756, -13.428310394287053 ], [ -68.895256042480412, -13.428459167480469 ], [ -68.895812988281193, -13.428750038146973 ], [ -68.899269104003793, -13.431409835815373 ], [ -68.899665832519531, -13.432239532470646 ], [ -68.899063110351506, -13.434169769287109 ], [ -68.896171569824219, -13.437298774719181 ], [ -68.895095825195312, -13.439018249511605 ], [ -68.895126342773438, -13.440238952636662 ], [ -68.895156860351506, -13.441491127014103 ], [ -68.896110534667912, -13.442609786987305 ], [ -68.897605895996094, -13.44269943237299 ], [ -68.899009704589844, -13.441978454589844 ], [ -68.899452209472599, -13.441499710083008 ], [ -68.900436401367188, -13.439318656921387 ], [ -68.90216064453125, -13.437688827514648 ], [ -68.9024658203125, -13.435699462890625 ], [ -68.90216064453125, -13.43447303771967 ], [ -68.901771545410156, -13.432938575744515 ], [ -68.901847839355355, -13.432265281677246 ], [ -68.90193939208973, -13.431498527526855 ], [ -68.902603149414006, -13.431130409240723 ], [ -68.903236389160156, -13.431339263916016 ], [ -68.903923034667912, -13.431980133056641 ], [ -68.904090881347656, -13.432406425476017 ], [ -68.904327392578011, -13.432998657226506 ], [ -68.904129028320256, -13.434500694274846 ], [ -68.903877258300781, -13.43644905090332 ], [ -68.904548645019531, -13.439578056335449 ], [ -68.904609680175668, -13.441978454589844 ], [ -68.904167175292969, -13.444230079650879 ], [ -68.903587341308594, -13.444838523864746 ], [ -68.901817321777287, -13.444969177246094 ], [ -68.901252746581974, -13.44529914855957 ], [ -68.898681640624943, -13.448178291320744 ], [ -68.897422790527287, -13.451130867004338 ], [ -68.897552490234261, -13.452430725097599 ], [ -68.897377014160156, -13.45396900177002 ], [ -68.895721435546818, -13.455828666687012 ], [ -68.894996643066406, -13.458109855651855 ], [ -68.895362854003793, -13.458639144897461 ], [ -68.896209716796818, -13.458990097045842 ], [ -68.896949768066349, -13.459244728088322 ], [ -68.897941589355469, -13.459589004516602 ], [ -68.898872375488224, -13.459500312805176 ], [ -68.899551391601506, -13.458829879760742 ], [ -68.899513244628906, -13.455348014831543 ], [ -68.900001525878849, -13.454249382018929 ], [ -68.900749206542969, -13.45343112945551 ], [ -68.902656555175781, -13.452268600463867 ], [ -68.903495788574219, -13.452189445495605 ], [ -68.904052734375, -13.452548980712834 ], [ -68.90423583984375, -13.453829765319824 ], [ -68.90399169921875, -13.454898834228516 ], [ -68.901512145996094, -13.457399368286133 ], [ -68.900840759277344, -13.4586181640625 ], [ -68.900695800781193, -13.460359573364258 ], [ -68.901176452636605, -13.461641311645451 ], [ -68.901252746581974, -13.462579727172852 ], [ -68.899856567382812, -13.464610099792424 ], [ -68.899620056152287, -13.46569728851307 ], [ -68.899696350097656, -13.466328620910645 ], [ -68.900131225585824, -13.466964721679688 ], [ -68.900390624999943, -13.467341423034668 ], [ -68.901458740234318, -13.467599868774414 ], [ -68.9027099609375, -13.467240333557072 ], [ -68.905288696289062, -13.465418815612793 ], [ -68.906051635742188, -13.465480804443359 ], [ -68.906806945800668, -13.465880393981877 ], [ -68.907119750976562, -13.466620445251408 ], [ -68.906600952148381, -13.467509269714242 ], [ -68.904441833496094, -13.468808174133301 ], [ -68.904083251953125, -13.46923923492426 ], [ -68.904006958007756, -13.470698356628418 ], [ -68.90435791015625, -13.471459388732853 ], [ -68.904800415038949, -13.471919059753418 ], [ -68.907272338867131, -13.473158836364746 ], [ -68.908729553222656, -13.474729537963754 ], [ -68.909706115722656, -13.476610183715763 ], [ -68.910552978515625, -13.477620124816895 ], [ -68.911422729492188, -13.478130340576172 ], [ -68.913932800292912, -13.478960037231445 ], [ -68.915359497070256, -13.480380058288461 ], [ -68.915832519531193, -13.483289718627873 ], [ -68.915435791015625, -13.48401927947998 ], [ -68.915061950683594, -13.484321594238281 ], [ -68.91485595703125, -13.484489440917912 ], [ -68.914398193359318, -13.48453426361084 ], [ -68.913932800292912, -13.484580039977914 ], [ -68.91229248046875, -13.484120368957463 ], [ -68.911087036132756, -13.482169151306096 ], [ -68.910552978515625, -13.48179912567133 ], [ -68.909706115722656, -13.481698989868164 ], [ -68.908622741699219, -13.481949806213322 ], [ -68.907119750976562, -13.482708930969181 ], [ -68.906387329101506, -13.483779907226562 ], [ -68.906311035156193, -13.484719276428109 ], [ -68.906723022460938, -13.485598564147892 ], [ -68.907836914062443, -13.486310005187931 ], [ -68.911582946777344, -13.486268997192269 ], [ -68.912071228027344, -13.486490249633789 ], [ -68.91253662109375, -13.487198829650765 ], [ -68.91265869140625, -13.488039970397949 ], [ -68.912162780761719, -13.488799095153809 ], [ -68.9093017578125, -13.490167617797795 ], [ -68.908058166503906, -13.491429328918457 ], [ -68.907852172851449, -13.492028236389103 ], [ -68.908271789550781, -13.493241310119629 ], [ -68.911231994628906, -13.494259834289437 ], [ -68.912345886230469, -13.495297431945744 ], [ -68.912918090820312, -13.495829582214242 ], [ -68.912902832031193, -13.497298240661621 ], [ -68.911506652832031, -13.498908996581918 ], [ -68.911102294921875, -13.499809265136719 ], [ -68.911560058593693, -13.50114917755127 ], [ -68.912101745605469, -13.501660346984806 ], [ -68.912780761718693, -13.501711845397892 ], [ -68.91351318359375, -13.501769065856934 ], [ -68.91400146484375, -13.502009391784611 ], [ -68.915702819824219, -13.501960754394418 ], [ -68.916816711425668, -13.502409934997445 ], [ -68.9185791015625, -13.503788948059025 ], [ -68.920448303222656, -13.50574874877924 ], [ -68.920631408691293, -13.508048057556152 ], [ -68.920066833496094, -13.508608818054086 ], [ -68.919326782226562, -13.508748054504338 ], [ -68.9168701171875, -13.507619857788029 ], [ -68.914726257324219, -13.507288932800293 ], [ -68.914031982421818, -13.507728576660156 ], [ -68.913635253906193, -13.508474349975529 ], [ -68.913375854492131, -13.50895977020258 ], [ -68.913581848144531, -13.510699272155705 ], [ -68.916206359863281, -13.516281127929688 ], [ -68.917236328125, -13.521059989929199 ], [ -68.917739868164006, -13.521718978881779 ], [ -68.918746948242188, -13.522209167480469 ], [ -68.919136047363281, -13.522268295288086 ], [ -68.919738769531193, -13.5218505859375 ], [ -68.920066833496094, -13.521199226379395 ], [ -68.919990539550781, -13.520259857177678 ], [ -68.919906616210938, -13.51999568939209 ], [ -68.919738769531193, -13.519471168518066 ], [ -68.918540954589844, -13.518019676208439 ], [ -68.918159484863281, -13.517229080200138 ], [ -68.918205261230469, -13.515769958496037 ], [ -68.919647216796818, -13.514320373535099 ], [ -68.920677185058594, -13.513898849487248 ], [ -68.92218017578125, -13.513730049133301 ], [ -68.923950195312443, -13.514011383056641 ], [ -68.925041198730469, -13.514507293701172 ], [ -68.927787780761605, -13.516588211059513 ], [ -68.930191040039062, -13.51763916015625 ], [ -68.930458068847543, -13.517875671386662 ], [ -68.930953979492188, -13.518318176269531 ], [ -68.931640625, -13.519309997558537 ], [ -68.931991577148438, -13.520938873290902 ], [ -68.932296752929688, -13.524679183959904 ], [ -68.933113098144474, -13.525579452514648 ], [ -68.934341430664006, -13.526009559631291 ], [ -68.934921264648381, -13.525730133056641 ], [ -68.935607910156136, -13.524728775024414 ], [ -68.936225891113281, -13.519607543945312 ], [ -68.936607360839844, -13.518979072570801 ], [ -68.93770599365223, -13.518160820007324 ], [ -68.938850402831918, -13.518589019775391 ], [ -68.939506530761662, -13.5191392898559 ], [ -68.9398193359375, -13.521310806274414 ], [ -68.940933227539006, -13.523429870605469 ], [ -68.940986633300781, -13.524351119995117 ], [ -68.940711975097656, -13.525620460510197 ], [ -68.939300537109318, -13.528040885925236 ], [ -68.93878173828125, -13.52856540679926 ], [ -68.938255310058537, -13.529097557067814 ], [ -68.937545776367188, -13.529549598693848 ], [ -68.934799194335938, -13.529998779296761 ], [ -68.934257507324162, -13.530659675598088 ], [ -68.934272766113168, -13.531140327453556 ], [ -68.934967041015625, -13.531748771667424 ], [ -68.938316345214844, -13.531820297241154 ], [ -68.94008636474598, -13.533168792724609 ], [ -68.940879821777344, -13.534760475158635 ], [ -68.941406249999943, -13.535820007324219 ], [ -68.941268920898438, -13.538839340209961 ], [ -68.941986083984318, -13.540328025817871 ], [ -68.942527770996094, -13.542750358581429 ], [ -68.943717956542969, -13.54417896270752 ], [ -68.946838378906193, -13.546369552612305 ], [ -68.948089599609318, -13.547979354858398 ], [ -68.948211669921875, -13.549250602722168 ], [ -68.947647094726562, -13.550429344177246 ], [ -68.945075988769531, -13.553230285644474 ], [ -68.944389343261719, -13.554539680480957 ], [ -68.944259643554631, -13.556269645690861 ], [ -68.944763183593636, -13.559349060058537 ], [ -68.944740295410099, -13.561469078063965 ], [ -68.944412231445312, -13.562909126281681 ], [ -68.944320678710938, -13.564789772033691 ], [ -68.944770812988281, -13.565619468688908 ], [ -68.947029113769474, -13.567218780517578 ], [ -68.947837829589844, -13.568240165710449 ], [ -68.950691223144531, -13.570770263671875 ], [ -68.951736450195312, -13.572069168090763 ], [ -68.952117919921875, -13.573500633239746 ], [ -68.952369689941349, -13.576642990112248 ], [ -68.952598571777344, -13.5795383453368 ], [ -68.953216552734318, -13.580689430236816 ], [ -68.955619812011662, -13.583880424499512 ], [ -68.956710815429688, -13.587309837341309 ], [ -68.956687927246094, -13.588050842285099 ], [ -68.956092834472599, -13.589480400085336 ], [ -68.953727722167855, -13.592798233032113 ], [ -68.951896667480412, -13.596012115478516 ], [ -68.951370239257812, -13.597880363464355 ], [ -68.950798034667969, -13.599028587341309 ], [ -68.950897216796875, -13.600749969482365 ], [ -68.951812744140568, -13.6014404296875 ], [ -68.952842712402287, -13.60148811340332 ], [ -68.956436157226562, -13.600850105285588 ], [ -68.957710266113224, -13.600269317626896 ], [ -68.959297180175781, -13.600109100341797 ], [ -68.960922241210938, -13.60054874420166 ], [ -68.961730957031193, -13.600994110107422 ], [ -68.962547302246094, -13.6014404296875 ], [ -68.965736389160099, -13.601568222045785 ], [ -68.966377258300724, -13.600909233093205 ], [ -68.967010498046875, -13.599569320678597 ], [ -68.968170166015625, -13.598780632019043 ], [ -68.968940734863281, -13.59794902801508 ], [ -68.969268798828011, -13.597867012023926 ], [ -68.969818115234318, -13.59772968292225 ], [ -68.970558166503906, -13.597772598266602 ], [ -68.971351623535099, -13.597819328308105 ], [ -68.973136901855469, -13.599418640136662 ], [ -68.973602294921875, -13.600507736205998 ], [ -68.973457336425724, -13.601509094238224 ], [ -68.972068786621094, -13.603698730468693 ], [ -68.971282958984375, -13.605668067932129 ], [ -68.971260070800724, -13.60740852355957 ], [ -68.971817016601506, -13.608040809631348 ], [ -68.972541809082031, -13.60823917388916 ], [ -68.973335266113224, -13.608147621154785 ], [ -68.973663330078125, -13.608109474182072 ], [ -68.975349426269474, -13.606558799743652 ], [ -68.977912902831974, -13.605799674987793 ], [ -68.978729248046875, -13.606099128723088 ], [ -68.980369567871094, -13.607379913330078 ], [ -68.981636047363224, -13.60795879364008 ], [ -68.985839843749943, -13.608149528503361 ], [ -68.987159729003906, -13.609528541564885 ], [ -68.989158630371094, -13.613368988037109 ], [ -68.990371704101562, -13.614898681640625 ], [ -68.991737365722656, -13.615220069885254 ], [ -68.995796203613281, -13.614239692687988 ], [ -68.997268676757812, -13.614508628845215 ], [ -68.998207092285156, -13.615148544311523 ], [ -68.998466491699219, -13.616108894348088 ], [ -68.997772216796818, -13.617401123046875 ], [ -68.9974365234375, -13.618650436401367 ], [ -68.997543334960938, -13.620009422302246 ], [ -68.998008728027344, -13.620319366455078 ], [ -68.998291015625, -13.62031364440918 ], [ -68.998580932617188, -13.620308876037541 ], [ -69.000236511230412, -13.619270324707031 ], [ -69.001846313476562, -13.622279167175236 ], [ -69.000236511230412, -13.62576961517334 ], [ -68.997657775878849, -13.628348350524902 ], [ -68.996749877929688, -13.628840446472111 ], [ -68.99468994140625, -13.628929138183594 ], [ -68.993667602539006, -13.628510475158635 ], [ -68.992820739746037, -13.628510475158635 ], [ -68.990951538085938, -13.6293687820434 ], [ -68.989128112792969, -13.630938529968205 ], [ -68.989181518554631, -13.631679534912109 ], [ -68.994667053222656, -13.635089874267464 ], [ -68.995346069335938, -13.636480331420898 ], [ -68.993553161621037, -13.639679908752385 ], [ -68.993362426757756, -13.642339706420898 ], [ -68.991546630859375, -13.644329071044865 ], [ -68.991607666015625, -13.64636039733881 ], [ -68.992233276367131, -13.647359848022461 ], [ -68.993751525878849, -13.648789405822754 ], [ -68.994506835937443, -13.649120330810547 ], [ -68.995742797851562, -13.649220466613713 ], [ -68.9970703125, -13.648948669433594 ], [ -68.997756958007756, -13.648810386657715 ], [ -68.999504089355355, -13.649286270141602 ], [ -69.000236511230412, -13.649869918823242 ], [ -69.001953124999943, -13.652877807617188 ], [ -69.002082824707031, -13.653099060058537 ], [ -69.003562927246094, -13.652680397033691 ], [ -69.004539489746037, -13.65202808380127 ], [ -69.004829406738224, -13.651859283447209 ], [ -69.00628662109375, -13.651281356811523 ], [ -69.006446838378849, -13.6512193679809 ], [ -69.006568908691406, -13.65122127532959 ], [ -69.010688781738281, -13.651328086853027 ], [ -69.012458801269474, -13.653218269348088 ], [ -69.013206481933537, -13.653448104858285 ], [ -69.015235900878793, -13.653510093688965 ], [ -69.017295837402344, -13.654189109802246 ], [ -69.017921447753906, -13.65457820892334 ], [ -69.018310546875, -13.655278205871582 ], [ -69.018791198730469, -13.655717849731388 ], [ -69.019279479980469, -13.656160354614258 ], [ -69.020477294921818, -13.656981468200627 ], [ -69.021141052246037, -13.657049179077092 ], [ -69.022247314453125, -13.656099319457951 ], [ -69.024162292480469, -13.653718948364201 ], [ -69.024887084960938, -13.652118682861328 ], [ -69.024963378906136, -13.65179252624506 ], [ -69.026077270507756, -13.651580810546818 ], [ -69.027549743652344, -13.650403022766113 ], [ -69.027893066406193, -13.650719642639103 ], [ -69.0283203125, -13.651299476623478 ], [ -69.029052734374943, -13.652298927307129 ], [ -69.0296630859375, -13.653630256652832 ], [ -69.030296325683537, -13.654310226440316 ], [ -69.031021118164062, -13.654540061950684 ], [ -69.031433105468693, -13.654494285583439 ], [ -69.031852722167969, -13.654449462890511 ], [ -69.033042907714787, -13.653718948364201 ], [ -69.03369140625, -13.652498245239144 ], [ -69.035499572753906, -13.65049934387207 ], [ -69.03594970703125, -13.649058341979924 ], [ -69.037147521972599, -13.647159576416016 ], [ -69.037651062011605, -13.645919799804688 ], [ -69.037208557128906, -13.644688606262207 ], [ -69.035636901855412, -13.643855094909668 ], [ -69.035354614257756, -13.639835357665959 ], [ -69.037330627441349, -13.639340400695801 ], [ -69.037857055664062, -13.639470100402775 ], [ -69.040542602539062, -13.641318321228027 ], [ -69.040908813476562, -13.641569137573242 ], [ -69.044319152831974, -13.642159461975041 ], [ -69.045646667480412, -13.642618179321289 ], [ -69.048027038574162, -13.64446830749506 ], [ -69.048377990722656, -13.64473915100092 ], [ -69.049110412597656, -13.645439147949219 ], [ -69.050460815429688, -13.648599624633789 ], [ -69.052406311035099, -13.651960372924805 ], [ -69.052825927734375, -13.653279304504395 ], [ -69.054428100585881, -13.65507984161377 ], [ -69.057319641113281, -13.655919075012207 ], [ -69.060333251953068, -13.6559801101684 ], [ -69.061531066894531, -13.656218528747502 ], [ -69.06268310546875, -13.657018661499023 ], [ -69.063491821288949, -13.658280372619572 ], [ -69.064262390136719, -13.660160064697209 ], [ -69.064315795898381, -13.662170410156193 ], [ -69.063301086425668, -13.666460037231445 ], [ -69.064186096191406, -13.67227840423584 ], [ -69.064826965331918, -13.673060417175293 ], [ -69.066810607910099, -13.671847343444767 ], [ -69.067176818847599, -13.671889305114746 ], [ -69.067550659179688, -13.671930313110295 ], [ -69.067886352539062, -13.672378540038949 ], [ -69.067779541015568, -13.673570632934457 ], [ -69.066436767578068, -13.676198005676213 ], [ -69.065452575683594, -13.679259300231934 ], [ -69.065666198730412, -13.680259704589787 ], [ -69.066825866699162, -13.682270050048771 ], [ -69.066925048828011, -13.683698654174805 ], [ -69.067001342773381, -13.684828758239689 ], [ -69.067543029785156, -13.685569763183594 ], [ -69.067573547363224, -13.685736656188965 ], [ -69.06658935546875, -13.687438964843693 ], [ -69.066452026367074, -13.687498092651254 ], [ -69.064437866210881, -13.688011169433537 ], [ -69.064033508300724, -13.688114166259652 ], [ -69.063735961914062, -13.688188552856445 ], [ -69.061782836914062, -13.690028190612793 ], [ -69.059852600097599, -13.690428733825684 ], [ -69.058502197265568, -13.692299842834416 ], [ -69.057342529296875, -13.69251537322998 ], [ -69.055915832519531, -13.692778587341309 ], [ -69.055206298828125, -13.693198204040527 ], [ -69.054359436035156, -13.694440841674748 ], [ -69.05419921875, -13.694836616516113 ], [ -69.053886413574219, -13.695628166198617 ], [ -69.053916931152344, -13.699319839477425 ], [ -69.054161071777344, -13.699790000915471 ], [ -69.054695129394474, -13.700241088867188 ], [ -69.05523681640625, -13.700698852539006 ], [ -69.056251525878906, -13.701100349426213 ], [ -69.056381225585938, -13.701539993286133 ], [ -69.055763244628849, -13.701930046081543 ], [ -69.053176879882756, -13.702410697937012 ], [ -69.052207946777287, -13.702886581420898 ], [ -69.051246643066406, -13.70335865020752 ], [ -69.049896240234375, -13.705791473388672 ], [ -69.049522399902344, -13.708939552307129 ], [ -69.047218322753906, -13.709799766540471 ], [ -69.045791625976562, -13.71171855926508 ], [ -69.044692993164006, -13.711959838867074 ], [ -69.043708801269531, -13.712659835815373 ], [ -69.041442871093693, -13.713769912719727 ], [ -69.040969848632756, -13.715585708618164 ], [ -69.040740966796875, -13.716470718383732 ], [ -69.040451049804688, -13.716908454894963 ], [ -69.039619445800724, -13.71735954284668 ], [ -69.039077758788949, -13.717190742492619 ], [ -69.038696289062386, -13.716549873351994 ], [ -69.038803100585938, -13.714159965515137 ], [ -69.038551330566406, -13.713888168334904 ], [ -69.037452697753849, -13.713841438293457 ], [ -69.036689758300724, -13.714779853820801 ], [ -69.035606384277344, -13.715488433837777 ], [ -69.035392761230469, -13.716300010681096 ], [ -69.035346984863224, -13.718399047851562 ], [ -69.034431457519531, -13.719691276550293 ], [ -69.034187316894474, -13.720750808715763 ], [ -69.033287048339844, -13.722129821777287 ], [ -69.033340454101506, -13.722687721252441 ], [ -69.034072875976562, -13.723331451416016 ], [ -69.03369140625, -13.723969459533635 ], [ -69.033126831054688, -13.724068641662541 ], [ -69.032463073730412, -13.724568367004281 ], [ -69.032081604003849, -13.725580215454102 ], [ -69.032012939453068, -13.725769996643066 ], [ -69.032157897949219, -13.726649284362793 ], [ -69.033157348632756, -13.727179527282658 ], [ -69.033988952636662, -13.727218627929574 ], [ -69.034103393554631, -13.72735404968256 ], [ -69.034339904785156, -13.727764129638615 ], [ -69.033706665039006, -13.728438377380371 ], [ -69.03240966796875, -13.728659629821777 ], [ -69.03163909912098, -13.729220390319824 ], [ -69.031257629394418, -13.730996131896973 ], [ -69.031227111816349, -13.731139183044434 ], [ -69.031196594238281, -13.731281280517521 ], [ -69.029556274414062, -13.732319831848145 ], [ -69.028800964355469, -13.734090805053711 ], [ -69.026885986328125, -13.735988616943246 ], [ -69.026397705078011, -13.738409996032658 ], [ -69.025947570800781, -13.738758087158089 ], [ -69.025794982910099, -13.738762855529728 ], [ -69.025566101074219, -13.73876953125 ], [ -69.024436950683594, -13.737639427185059 ], [ -69.022811889648438, -13.737580299377441 ], [ -69.021156311035156, -13.73694896697998 ], [ -69.020500183105469, -13.737078666686955 ], [ -69.019416809081974, -13.738469123840275 ], [ -69.019050598144418, -13.738498687744141 ], [ -69.018272399902287, -13.738149642944336 ], [ -69.016540527343693, -13.736349105834961 ], [ -69.015548706054688, -13.736209869384766 ], [ -69.015396118164006, -13.736671447753906 ], [ -69.015617370605355, -13.738752365112305 ], [ -69.015098571777344, -13.739158630371094 ], [ -69.013977050781193, -13.739359855651855 ], [ -69.013626098632812, -13.739228248596135 ], [ -69.012832641601506, -13.738318443298283 ], [ -69.011917114257812, -13.737831115722656 ], [ -69.010780334472656, -13.737552642822266 ], [ -69.009719848632812, -13.737299919128304 ], [ -69.008049011230412, -13.737250328063965 ], [ -69.007736206054688, -13.737570762634221 ], [ -69.007087707519531, -13.739468574523926 ], [ -69.00628662109375, -13.73997974395752 ], [ -69.005325317382812, -13.740104675292969 ], [ -69.004066467285099, -13.740268707275334 ], [ -69.003585815429631, -13.740818977355957 ], [ -69.003227233886719, -13.742250442504883 ], [ -69.002693176269531, -13.742618560791016 ], [ -69.001152038574219, -13.741350173950138 ], [ -69.000808715820256, -13.74052906036377 ], [ -69.00026702880848, -13.739228248596135 ], [ -68.998939514160156, -13.739339828491154 ], [ -68.997886657714844, -13.739741325378418 ], [ -68.997222900390625, -13.741030693054199 ], [ -68.996421813964787, -13.741678237915039 ], [ -68.995666503906193, -13.741580009460392 ], [ -68.994895935058537, -13.740960121154728 ], [ -68.994026184082031, -13.741009712219238 ], [ -68.992248535156193, -13.742598533630371 ], [ -68.991569519042912, -13.742929458618164 ], [ -68.991180419921818, -13.743949890136719 ], [ -68.9901123046875, -13.744489669799748 ], [ -68.98931884765625, -13.745538711547795 ], [ -68.98797607421875, -13.745738983154297 ], [ -68.988105773925781, -13.747280120849609 ], [ -68.988906860351506, -13.74862003326416 ], [ -68.988632202148324, -13.749390602111816 ], [ -68.987648010253849, -13.749198913574219 ], [ -68.986999511718693, -13.749282836914062 ], [ -68.986335754394474, -13.749369621276855 ], [ -68.984542846679688, -13.750959396362305 ], [ -68.982749938964844, -13.750838279724064 ], [ -68.981521606445312, -13.751258850097656 ], [ -68.978767395019531, -13.75319862365717 ], [ -68.975517272949219, -13.754829406738281 ], [ -68.974792480468693, -13.756020545959416 ], [ -68.972732543945312, -13.757619857788086 ], [ -68.972732543945312, -13.758078575134221 ], [ -68.973098754882812, -13.75850868225092 ], [ -68.974395751953068, -13.758619308471623 ], [ -68.975433349609318, -13.759078979492188 ], [ -68.975990295410156, -13.759799003601017 ], [ -68.976112365722599, -13.760100364685059 ], [ -68.976501464843693, -13.761089324951172 ], [ -68.976669311523438, -13.76204872131342 ], [ -68.976570129394531, -13.763790130615234 ], [ -68.9774169921875, -13.765329360961914 ], [ -68.977783203125, -13.766478538513127 ], [ -68.977516174316406, -13.771499633789062 ], [ -68.977828979492131, -13.775519371032658 ], [ -68.978675842285099, -13.779278755187931 ], [ -68.980606079101506, -13.780890464782715 ], [ -68.982986450195256, -13.781170845031738 ], [ -68.985015869140625, -13.780819892883244 ], [ -68.986335754394474, -13.78009033203125 ], [ -68.987716674804688, -13.778989791870117 ], [ -68.988128662109318, -13.778496742248535 ], [ -68.98883056640625, -13.777651786804199 ], [ -68.993431091308594, -13.782218933105412 ], [ -68.993446350097656, -13.782549858093262 ], [ -68.992660522460938, -13.783709526061955 ], [ -68.989532470703125, -13.785528182983342 ], [ -68.986778259277344, -13.786679267883301 ], [ -68.983642578124943, -13.787658691406193 ], [ -68.981498718261719, -13.788789749145508 ], [ -68.97540283203125, -13.790260314941406 ], [ -68.974906921386719, -13.79069995880127 ], [ -68.974822998046875, -13.791438102722111 ], [ -68.974456787109375, -13.791969299316293 ], [ -68.973716735839787, -13.792559623718262 ], [ -68.973106384277344, -13.792728424072209 ], [ -68.971817016601506, -13.792589187621957 ], [ -68.970672607421818, -13.791500091552734 ], [ -68.969680786132812, -13.790168762207031 ], [ -68.968620300292969, -13.789398193359261 ], [ -68.967025756835938, -13.789238929748535 ], [ -68.965621948242131, -13.789719581604004 ], [ -68.96450042724598, -13.789708137512093 ], [ -68.963150024414006, -13.789319038391056 ], [ -68.961761474609375, -13.788379669189453 ], [ -68.960754394531193, -13.78803634643549 ], [ -68.960090637206974, -13.787810325622502 ], [ -68.958740234375, -13.787592887878418 ], [ -68.957138061523381, -13.787338256835938 ], [ -68.954505920410156, -13.788758277893066 ], [ -68.951156616210938, -13.789620399475098 ], [ -68.951210021972599, -13.790299415588379 ], [ -68.951850891113281, -13.791618347167969 ], [ -68.951705932617131, -13.792889595031738 ], [ -68.950256347656193, -13.795260429382267 ], [ -68.947860717773438, -13.797598838806152 ], [ -68.947067260742188, -13.797897338867188 ], [ -68.945030212402287, -13.798117637634221 ], [ -68.943099975585938, -13.799750328063908 ], [ -68.940933227539006, -13.801170349121094 ], [ -68.938377380371094, -13.802108764648438 ], [ -68.937461853027344, -13.802689552307129 ], [ -68.933372497558594, -13.803290367126408 ], [ -68.930427551269474, -13.804230690002441 ], [ -68.926498413085938, -13.805088043212891 ], [ -68.924819946289006, -13.806109428405762 ], [ -68.920486450195312, -13.807849884033203 ], [ -68.918136596679631, -13.809379577636719 ], [ -68.916236877441349, -13.809748649597111 ], [ -68.914962768554688, -13.810829162597599 ], [ -68.915321350097656, -13.811880111694336 ], [ -68.917640686035099, -13.814018249511719 ], [ -68.9185791015625, -13.815510749816895 ], [ -68.919296264648324, -13.817790031432992 ], [ -68.919563293456974, -13.820059776306096 ], [ -68.920455932617188, -13.822589874267578 ], [ -68.921310424804688, -13.824008941650334 ], [ -68.922187805175781, -13.824979782104435 ], [ -68.925216674804688, -13.826799392700138 ], [ -68.929496765136662, -13.82737827301014 ], [ -68.932090759277344, -13.828460693359318 ], [ -68.936576843261719, -13.831478118896484 ], [ -68.939056396484375, -13.834369659423828 ], [ -68.939476013183594, -13.835489273071232 ], [ -68.939826965332031, -13.837568283080998 ], [ -68.939918518066406, -13.841990470886174 ], [ -68.939552307128906, -13.84340858459467 ], [ -68.939529418945312, -13.844888687133789 ], [ -68.942466735839787, -13.853729248046875 ], [ -68.943572998046875, -13.860990524291992 ], [ -68.943450927734375, -13.86310958862299 ], [ -68.943611145019474, -13.8643798828125 ], [ -68.944801330566406, -13.867279052734318 ], [ -68.946968078613281, -13.87073898315424 ], [ -68.949592590331974, -13.873510360717773 ], [ -68.951568603515625, -13.875199317932129 ], [ -68.954322814941406, -13.875798225402775 ], [ -68.956047058105469, -13.876910209655705 ], [ -68.958023071289062, -13.877008438110352 ], [ -68.958961486816349, -13.877298355102539 ], [ -68.959259033203011, -13.877388954162598 ], [ -68.959526062011662, -13.877682685852051 ], [ -68.959831237792855, -13.878020286560059 ], [ -68.96044921875, -13.879155158996525 ], [ -68.961059570312443, -13.880288124084416 ], [ -68.9630126953125, -13.881580352783146 ], [ -68.96364593505848, -13.881640434265137 ], [ -68.963920593261662, -13.881388664245549 ], [ -68.964942932128849, -13.881168365478516 ], [ -68.966720581054688, -13.879999160766602 ], [ -68.96755218505848, -13.87986946105957 ], [ -68.970352172851562, -13.878787994384766 ], [ -68.971282958984375, -13.87885856628418 ], [ -68.971755981445312, -13.87930965423584 ], [ -68.972366333007812, -13.880758285522461 ], [ -68.973213195800781, -13.881770133972111 ], [ -68.973831176757756, -13.882129669189453 ], [ -68.975242614746037, -13.882369041442871 ], [ -68.975723266601506, -13.8826904296875 ], [ -68.976318359374943, -13.884140014648438 ], [ -68.976417541503849, -13.885130882263184 ], [ -68.977867126464844, -13.887919425964355 ], [ -68.978698730468693, -13.888918876647892 ], [ -68.980476379394531, -13.890410423278809 ], [ -68.980926513671875, -13.891319274902287 ], [ -68.981048583984375, -13.892788887023869 ], [ -68.98101806640625, -13.89295578002924 ], [ -68.98043060302723, -13.895858764648438 ], [ -68.980766296386719, -13.896697998046875 ], [ -68.982025146484318, -13.898070335388127 ], [ -68.98236083984375, -13.898739814758301 ], [ -68.982528686523324, -13.901860237121468 ], [ -68.982772827148438, -13.902749061584473 ], [ -68.983016967773438, -13.903639793395996 ], [ -68.983062744140568, -13.905461311340275 ], [ -68.983100891113168, -13.907238960266113 ], [ -68.982833862304688, -13.908859252929631 ], [ -68.982215881347599, -13.910421371459961 ], [ -68.979331970214844, -13.914771080017033 ], [ -68.979110717773438, -13.915108680725041 ], [ -68.978866577148381, -13.917389869689885 ], [ -68.979103088378906, -13.918567657470703 ], [ -68.981430053710938, -13.923999786376953 ], [ -68.981567382812443, -13.92481803894043 ], [ -68.981422424316406, -13.925628662109375 ], [ -68.980056762695312, -13.927499771118107 ], [ -68.978767395019531, -13.928560256957951 ], [ -68.977661132812386, -13.929067611694336 ], [ -68.97637939453125, -13.930419921874943 ], [ -68.973899841308594, -13.93557071685791 ], [ -68.973556518554631, -13.937189102172852 ], [ -68.972602844238224, -13.938879966735783 ], [ -68.972122192382756, -13.940560340881291 ], [ -68.970787048339787, -13.942458152770996 ], [ -68.969207763671875, -13.944149971008301 ], [ -68.968009948730412, -13.945189476013127 ], [ -68.967376708984375, -13.945350646972656 ], [ -68.966087341308537, -13.945109367370492 ], [ -68.965217590332031, -13.944149971008301 ], [ -68.964179992675724, -13.943748474121094 ], [ -68.962791442871094, -13.94391918182373 ], [ -68.962226867675781, -13.94442081451416 ], [ -68.962097167968693, -13.94486141204834 ], [ -68.962097167968693, -13.94623947143549 ], [ -68.96282958984375, -13.94804859161377 ], [ -68.963348388671818, -13.948328971862736 ], [ -68.965316772460938, -13.948450088500977 ], [ -68.966300964355412, -13.948748588562012 ], [ -68.968818664550781, -13.950960159301701 ], [ -68.969657897949219, -13.952300071716309 ], [ -68.970077514648438, -13.953619003295898 ], [ -68.970230102539062, -13.955449104309025 ], [ -68.969718933105412, -13.959089279174748 ], [ -68.969833374023381, -13.960382461547852 ], [ -68.97064208984375, -13.962551116943303 ], [ -68.971595764160156, -13.964220046997013 ], [ -68.974281311035156, -13.96608829498291 ], [ -68.975692749023438, -13.96770000457758 ], [ -68.976753234863281, -13.97067928314209 ], [ -68.976760864257812, -13.973441123962402 ], [ -68.976356506347656, -13.974459648132267 ], [ -68.975677490234375, -13.975099563598576 ], [ -68.971946716308594, -13.976588249206543 ], [ -68.969757080078125, -13.978031158447152 ], [ -68.968353271484375, -13.979379653930607 ], [ -68.967117309570312, -13.981220245361328 ], [ -68.965530395507756, -13.981979370117188 ], [ -68.963661193847656, -13.983900070190316 ], [ -68.961341857910099, -13.987468719482365 ], [ -68.961425781249943, -13.988578796386719 ], [ -68.962097167968693, -13.989801406860295 ], [ -68.962112426757756, -13.991010665893555 ], [ -68.959526062011662, -13.996920585632324 ], [ -68.957366943359375, -13.999860763549805 ], [ -68.954879760742188, -14.002759933471623 ], [ -68.953742980957031, -14.005849838256836 ], [ -68.953208923339844, -14.006010055541935 ], [ -68.952476501464787, -14.005839347839299 ], [ -68.951522827148381, -14.004549026489258 ], [ -68.951103210449219, -14.004280090332031 ], [ -68.950027465820312, -14.004339218139648 ], [ -68.949592590331974, -14.00416374206543 ], [ -68.94915771484375, -14.003990173339844 ], [ -68.948028564453125, -14.003939628601017 ], [ -68.947288513183594, -14.004070281982308 ], [ -68.946662902831974, -14.004499435424691 ], [ -68.946426391601562, -14.006580352783203 ], [ -68.947540283203125, -14.009808540344181 ], [ -68.947113037109318, -14.011890411376839 ], [ -68.9468994140625, -14.012928962707463 ], [ -68.945877075195256, -14.014260292053166 ], [ -68.94439697265625, -14.015040397644043 ], [ -68.943283081054688, -14.015098571777287 ], [ -68.940498352050781, -14.014558792114258 ], [ -68.939277648925781, -14.015060424804688 ], [ -68.939018249511662, -14.016858100891056 ], [ -68.939437866210938, -14.01826000213623 ], [ -68.940551757812443, -14.019370079040471 ], [ -68.942413330078125, -14.01947021484375 ], [ -68.942855834960824, -14.0203981399535 ], [ -68.942298889160156, -14.021139144897461 ], [ -68.940177917480412, -14.021877288818303 ], [ -68.939002990722599, -14.022649765014648 ], [ -68.9376220703125, -14.025050163269043 ], [ -68.935836791992188, -14.026759147644043 ], [ -68.934059143066349, -14.027338027954102 ], [ -68.932418823242188, -14.026960372924805 ], [ -68.930763244628906, -14.027239799499512 ], [ -68.93017578125, -14.027871131896973 ], [ -68.929908752441406, -14.02958965301508 ], [ -68.928810119628849, -14.03041934967041 ], [ -68.928337097167912, -14.03013896942133 ], [ -68.927932739257812, -14.029209136962834 ], [ -68.927146911621094, -14.028538703918457 ], [ -68.926597595214844, -14.028610229492188 ], [ -68.925949096679631, -14.029010772705078 ], [ -68.925247192382812, -14.030309677123967 ], [ -68.924057006835881, -14.030329704284611 ], [ -68.922012329101562, -14.029948234558049 ], [ -68.919578552246037, -14.027769088745004 ], [ -68.918373107910156, -14.027709007263184 ], [ -68.917945861816349, -14.02809906005848 ], [ -68.917877197265625, -14.028749465942383 ], [ -68.918869018554688, -14.029958724975472 ], [ -68.918975830078068, -14.030409812927246 ], [ -68.918449401855469, -14.031050682067871 ], [ -68.916801452636662, -14.032110214233398 ], [ -68.916229248046818, -14.033538818359261 ], [ -68.915687561035156, -14.03419113159174 ], [ -68.914978027343693, -14.034620285034123 ], [ -68.913299560546875, -14.034768104553166 ], [ -68.911476135253793, -14.0352783203125 ], [ -68.910430908203011, -14.035880088806096 ], [ -68.909446716308537, -14.036877632141056 ], [ -68.909217834472656, -14.038431167602482 ], [ -68.909866333007812, -14.03983211517334 ], [ -68.909828186035099, -14.040388107299805 ], [ -68.909622192382812, -14.040579795837402 ], [ -68.909072875976506, -14.04071044921875 ], [ -68.907463073730412, -14.040189743041992 ], [ -68.907058715820256, -14.040351867675781 ], [ -68.904052734375, -14.039196014404297 ], [ -68.903671264648438, -14.038859367370605 ], [ -68.902931213378906, -14.038800239562931 ], [ -68.900291442871037, -14.040837287902832 ], [ -68.898956298828068, -14.041240692138615 ], [ -68.898757934570256, -14.041299819946232 ], [ -68.895668029785156, -14.041609764099064 ], [ -68.8936767578125, -14.043569564819279 ], [ -68.893699645996094, -14.044299125671387 ], [ -68.894065856933594, -14.044838905334473 ], [ -68.89398193359375, -14.045468330383244 ], [ -68.893081665039062, -14.045988082885742 ], [ -68.891502380371094, -14.046029090881291 ], [ -68.890701293945312, -14.046689987182617 ], [ -68.890769958496037, -14.047519683837834 ], [ -68.891036987304631, -14.04790019989008 ], [ -68.891853332519531, -14.048549652099609 ], [ -68.893325805664006, -14.049718856811523 ], [ -68.890686035156136, -14.052944183349609 ], [ -68.889480590820312, -14.054019927978459 ], [ -68.887077331542969, -14.054770469665471 ], [ -68.885917663574105, -14.056658744811955 ], [ -68.884460449218693, -14.057970046997013 ], [ -68.882568359374943, -14.061248779296875 ], [ -68.880142211914062, -14.063739776611271 ], [ -68.879859924316406, -14.064418792724553 ], [ -68.879852294921875, -14.065239906311035 ], [ -68.880294799804574, -14.066420555114746 ], [ -68.880531311035156, -14.067058563232422 ], [ -68.88250732421875, -14.068319320678711 ], [ -68.883026123046818, -14.069169044494629 ], [ -68.881858825683594, -14.071958541870117 ], [ -68.879806518554631, -14.072858810424748 ], [ -68.879447937011719, -14.073278427124023 ], [ -68.879409790039006, -14.073749542236271 ], [ -68.879867553710938, -14.074188232421875 ], [ -68.882110595703125, -14.074898719787598 ], [ -68.882659912109318, -14.075528144836426 ], [ -68.8831787109375, -14.079090118408146 ], [ -68.884140014648438, -14.08086967468256 ], [ -68.884185791015568, -14.084460258483887 ], [ -68.883796691894474, -14.085100173950195 ], [ -68.882881164550781, -14.085739135742188 ], [ -68.879852294921875, -14.088870048522949 ], [ -68.878990173339844, -14.088679313659668 ], [ -68.877082824707031, -14.086779594421387 ], [ -68.875946044921875, -14.086748123168945 ], [ -68.875312805175724, -14.087140083312931 ], [ -68.875190734863281, -14.088129043579045 ], [ -68.875473022460938, -14.08992958068842 ], [ -68.875343322753906, -14.092879295349121 ], [ -68.874313354492188, -14.09669017791748 ], [ -68.875396728515568, -14.099010467529297 ], [ -68.875389099121094, -14.100379943847599 ], [ -68.874618530273438, -14.101608276367131 ], [ -68.87506103515625, -14.103289604186955 ], [ -68.8736572265625, -14.104610443115234 ], [ -68.873588562011662, -14.105460166931152 ], [ -68.873863220214844, -14.106328010558968 ], [ -68.873703002929631, -14.107329368591195 ], [ -68.871932983398438, -14.108969688415527 ], [ -68.871856689453125, -14.1096897125243 ], [ -68.871726989746094, -14.110959053039551 ], [ -68.868667602539062, -14.114028930663949 ], [ -68.868240356445256, -14.11503887176508 ], [ -68.866943359374886, -14.116378784179631 ], [ -68.866302490234375, -14.117698669433594 ], [ -68.864166259765568, -14.119510650634766 ], [ -68.861602783203011, -14.122908592224121 ], [ -68.858810424804631, -14.125499725341797 ], [ -68.858627319335881, -14.126220703124943 ], [ -68.858757019042969, -14.128939628601017 ], [ -68.85809326171875, -14.129638671874943 ], [ -68.85650634765625, -14.129538536071721 ], [ -68.855812072753906, -14.13001823425293 ], [ -68.85504150390625, -14.131269454956055 ], [ -68.854476928710938, -14.1316881179809 ], [ -68.852806091308537, -14.132960319518986 ], [ -68.852798461914006, -14.133698463439828 ], [ -68.853286743164006, -14.134548187255859 ], [ -68.852638244628793, -14.135218620300293 ], [ -68.849952697753849, -14.135439872741642 ], [ -68.849746704101506, -14.135759353637695 ], [ -68.849845886230412, -14.137960433959961 ], [ -68.849449157714844, -14.138468742370605 ], [ -68.848976135253849, -14.138529777526855 ], [ -68.848526000976506, -14.138188362121582 ], [ -68.8477783203125, -14.138049125671387 ], [ -68.845939636230412, -14.13987922668457 ], [ -68.8436279296875, -14.140889167785645 ], [ -68.842689514160099, -14.140809059143066 ], [ -68.841827392578068, -14.139820098876953 ], [ -68.841506958007812, -14.139738082885742 ], [ -68.840576171875, -14.140410423278752 ], [ -68.838043212890511, -14.141348838806096 ], [ -68.837562561035099, -14.141919136047363 ], [ -68.837341308593693, -14.142908096313477 ], [ -68.836746215820312, -14.143888473510685 ], [ -68.834526062011719, -14.143819808959904 ], [ -68.833419799804688, -14.144780158996582 ], [ -68.833587646484375, -14.145869255065918 ], [ -68.835342407226506, -14.146010398864689 ], [ -68.835716247558594, -14.146421432495117 ], [ -68.835952758789062, -14.147129058837891 ], [ -68.835739135742131, -14.147748947143555 ], [ -68.834846496582031, -14.148699760436955 ], [ -68.833229064941406, -14.149600028991699 ], [ -68.832572937011662, -14.150259017944336 ], [ -68.832588195800724, -14.150808334350586 ], [ -68.832931518554688, -14.151249885559082 ], [ -68.83294677734375, -14.152709007263127 ], [ -68.833847045898324, -14.153788566589355 ], [ -68.834602355956974, -14.154178619384652 ], [ -68.835243225097599, -14.154118537902832 ], [ -68.836212158203068, -14.152448654174805 ], [ -68.836936950683594, -14.151840209960938 ], [ -68.837615966796875, -14.151618957519531 ], [ -68.838783264160099, -14.15198802947998 ], [ -68.839866638183594, -14.153119087219181 ], [ -68.842536926269531, -14.154060363769474 ], [ -68.843193054199105, -14.153980255126896 ], [ -68.844688415527287, -14.152758598327637 ], [ -68.846061706542969, -14.152968406677246 ], [ -68.848152160644418, -14.154219627380314 ], [ -68.849266052246037, -14.15568733215332 ], [ -68.851196289062443, -14.156648635864258 ], [ -68.852958679199219, -14.160970687866154 ], [ -68.853660583496037, -14.161579132080021 ], [ -68.854431152343693, -14.161659240722656 ], [ -68.8548583984375, -14.161700248718262 ], [ -68.854850769042969, -14.165301322936955 ], [ -68.854774475097656, -14.165718078613168 ], [ -68.853828430175781, -14.166028022766 ], [ -68.853607177734375, -14.166098594665527 ], [ -68.852897644042912, -14.166928291320801 ], [ -68.852935791015625, -14.168040275573674 ], [ -68.853347778320312, -14.168578147888184 ], [ -68.853080749511662, -14.169980049133301 ], [ -68.852806091308537, -14.170390129089355 ], [ -68.852722167968693, -14.171580314636174 ], [ -68.852760314941406, -14.171697616577148 ], [ -68.85333251953125, -14.173363685607853 ], [ -68.852981567382756, -14.17523097991932 ], [ -68.852027893066349, -14.176406860351562 ], [ -68.851463317871037, -14.176460266113224 ], [ -68.851127624511719, -14.177410125732365 ], [ -68.849716186523438, -14.178750038146973 ], [ -68.849746704101506, -14.179829597473088 ], [ -68.8514404296875, -14.18041801452631 ], [ -68.851905822753906, -14.180870056152287 ], [ -68.852241516113224, -14.181729316711369 ], [ -68.852310180664062, -14.182948112487736 ], [ -68.852180480957031, -14.183069229125977 ], [ -68.850570678710938, -14.184600830078011 ], [ -68.85040283203125, -14.186699867248478 ], [ -68.849197387695256, -14.189108848571777 ], [ -68.848541259765625, -14.189412117004395 ], [ -68.846641540527344, -14.189379692077637 ], [ -68.845726013183594, -14.190019607543945 ], [ -68.845703125, -14.190558433532658 ], [ -68.845642089843693, -14.191679954528809 ], [ -68.846870422363281, -14.192929267883301 ], [ -68.847267150878849, -14.193959236144963 ], [ -68.847221374511719, -14.194878578186035 ], [ -68.846733093261719, -14.195758819579964 ], [ -68.846397399902344, -14.197289466857853 ], [ -68.845069885253849, -14.196450233459359 ], [ -68.844322204589787, -14.196478843688908 ], [ -68.844017028808537, -14.196840286254826 ], [ -68.843772888183594, -14.197999954223519 ], [ -68.842872619628849, -14.198838233947754 ], [ -68.841896057128906, -14.199189186096135 ], [ -68.839859008788949, -14.199189186096135 ], [ -68.839202880859375, -14.19972038269043 ], [ -68.838851928710938, -14.200960159301758 ], [ -68.838737487792969, -14.201089859008789 ], [ -68.838493347167912, -14.201389312744141 ], [ -68.835762023925781, -14.202029228210336 ], [ -68.835037231445312, -14.203519821166935 ], [ -68.834106445312443, -14.20457935333252 ], [ -68.833625793456974, -14.204830169677734 ], [ -68.832305908203068, -14.20496940612793 ], [ -68.832176208496094, -14.205058097839299 ], [ -68.831222534179688, -14.205778121948242 ], [ -68.831260681152287, -14.206447601318359 ], [ -68.830787658691349, -14.20723915100092 ], [ -68.830581665039006, -14.208419799804631 ], [ -68.8294677734375, -14.209779739379883 ], [ -68.829216003417969, -14.211038589477482 ], [ -68.828506469726449, -14.211489677429199 ], [ -68.827346801757756, -14.21177864074707 ], [ -68.82684326171875, -14.213378906249943 ], [ -68.82684326171875, -14.214997291564941 ], [ -68.827102661132812, -14.215838432311955 ], [ -68.828186035156193, -14.217617988586312 ], [ -68.828109741210881, -14.2201890945434 ], [ -68.828346252441406, -14.220449447631836 ], [ -68.857917785644531, -14.220364570617619 ], [ -68.920196533203125, -14.2201890945434 ], [ -68.940849304199105, -14.220129966735783 ], [ -68.963211059570312, -14.220070838928166 ], [ -68.970001220703068, -14.225419998168945 ], [ -68.969871520996094, -14.228809356689453 ], [ -68.969856262207031, -14.229098320007267 ], [ -68.969627380371037, -14.229898452758789 ], [ -68.969558715820199, -14.231093406677189 ], [ -68.969490051269531, -14.232199668884277 ], [ -68.969245910644474, -14.232769966125431 ], [ -68.969245910644474, -14.234378814697152 ], [ -68.969596862792969, -14.234739303588867 ], [ -68.970176696777344, -14.234619140625 ], [ -68.971237182617131, -14.233830451965218 ], [ -68.971946716308594, -14.233830451965218 ], [ -68.973709106445312, -14.235119819641113 ], [ -68.974533081054688, -14.235238075256291 ], [ -68.976196289062443, -14.23364067077631 ], [ -68.976684570312443, -14.233469963073674 ], [ -68.977493286132812, -14.233188629150391 ], [ -68.979728698730412, -14.233668327331486 ], [ -68.980361938476562, -14.233919143676701 ], [ -68.981246948242188, -14.234270095825195 ], [ -68.982307434081974, -14.234848976135197 ], [ -68.983947753906193, -14.236239433288517 ], [ -68.98663330078125, -14.239129066467285 ], [ -68.988151550292855, -14.241449356079045 ], [ -68.988487243652344, -14.242490768432617 ], [ -68.988487243652344, -14.243630409240666 ], [ -68.988716125488224, -14.243979454040471 ], [ -68.988471984863281, -14.244258880615234 ], [ -68.98828125, -14.245149612426758 ], [ -68.987739562988224, -14.251469612121525 ], [ -68.987571716308537, -14.252138137817326 ], [ -68.987365722656193, -14.252936363220158 ], [ -68.987068176269474, -14.254059791564941 ], [ -68.985443115234375, -14.257259368896428 ], [ -68.984840393066406, -14.260327339172306 ], [ -68.983802795410156, -14.261409759521484 ], [ -68.982269287109375, -14.261858940124512 ], [ -68.98150634765625, -14.262275695800781 ], [ -68.979560852050724, -14.263339996337834 ], [ -68.979339599609375, -14.26411056518549 ], [ -68.979461669921818, -14.265040397643986 ], [ -68.979866027832031, -14.26587009429926 ], [ -68.981979370117188, -14.268648147582951 ], [ -68.984390258789062, -14.270657539367676 ], [ -68.985137939453125, -14.272149085998478 ], [ -68.98586273193348, -14.274620056152287 ], [ -68.986419677734318, -14.275479316711369 ], [ -68.987312316894531, -14.27616024017334 ], [ -68.989295959472543, -14.276688575744629 ], [ -68.989967346191293, -14.277350425720158 ], [ -68.990371704101562, -14.278479576110783 ], [ -68.990615844726506, -14.281420707702637 ], [ -68.99102783203125, -14.282140731811523 ], [ -68.992652893066406, -14.282850265502873 ], [ -68.993827819824219, -14.282829284667855 ], [ -68.995948791503849, -14.282798767089787 ], [ -68.996597290039062, -14.283090591430664 ], [ -68.997238159179688, -14.283381462097168 ], [ -68.997917175292969, -14.284110069274846 ], [ -68.998466491699219, -14.28616809844965 ], [ -68.999252319335938, -14.287419319152775 ], [ -69.000442504882756, -14.28831958770752 ], [ -69.003761291503849, -14.289469718933049 ], [ -69.005416870117074, -14.290990829467773 ], [ -69.006095886230469, -14.292069435119572 ], [ -69.006996154785156, -14.294810295104924 ], [ -69.006835937499943, -14.301508903503418 ], [ -69.0074462890625, -14.304098129272461 ], [ -69.008827209472599, -14.305747985839844 ], [ -69.010215759277344, -14.306899070739689 ], [ -69.010551452636662, -14.308011054992619 ], [ -69.010986328125, -14.3094606399535 ], [ -69.011642456054688, -14.310588836669922 ], [ -69.012557983398381, -14.31151008605957 ], [ -69.015556335449219, -14.313570022582951 ], [ -69.016120910644531, -14.314809799194279 ], [ -69.015975952148381, -14.315628051757756 ], [ -69.015098571777344, -14.317048072814941 ], [ -69.012413024902344, -14.319748878478947 ], [ -69.011512756347599, -14.32133960723877 ], [ -69.011253356933594, -14.322038650512638 ], [ -69.010528564453068, -14.323940277099609 ], [ -69.010520935058594, -14.32830905914301 ], [ -69.006813049316349, -14.332468986511174 ], [ -69.004798889160156, -14.335889816284123 ], [ -69.004417419433594, -14.337218284606934 ], [ -69.004501342773438, -14.343559265136662 ], [ -69.004142761230412, -14.345630645751953 ], [ -69.003578186035099, -14.346378326416016 ], [ -69.002571105957031, -14.346809387206974 ], [ -69.000656127929688, -14.345578193664494 ], [ -68.999519348144531, -14.345578193664494 ], [ -68.998512268066349, -14.34623908996582 ], [ -68.998207092285156, -14.347378730773869 ], [ -68.998016357421875, -14.351798057556152 ], [ -68.995613098144531, -14.355069160461426 ], [ -68.995330810546875, -14.356240272521973 ], [ -68.995292663574162, -14.359279632568303 ], [ -68.9947509765625, -14.361220359802246 ], [ -68.993675231933537, -14.362245559692383 ], [ -68.992599487304631, -14.36326885223383 ], [ -68.992019653320312, -14.364109992980957 ], [ -68.991180419921818, -14.366358757019043 ], [ -68.990531921386662, -14.369748115539551 ], [ -68.989646911621037, -14.371008872985783 ], [ -68.988777160644531, -14.371579170227051 ], [ -68.986572265625, -14.37172889709467 ], [ -68.985557556152287, -14.372260093688851 ], [ -68.985122680664062, -14.373021125793457 ], [ -68.985237121582031, -14.373824119567871 ], [ -68.985336303710938, -14.37450981140131 ], [ -68.986495971679631, -14.375920295715275 ], [ -68.989433288574219, -14.379480361938363 ], [ -68.990486145019531, -14.382040023803654 ], [ -68.991127014160156, -14.382958412170353 ], [ -68.991981506347656, -14.383819580078011 ], [ -68.993217468261719, -14.384268760681096 ], [ -68.995796203613281, -14.386157989501953 ], [ -68.996643066406136, -14.388089179992676 ], [ -68.997543334960938, -14.389178276062012 ], [ -68.998428344726506, -14.389619827270508 ], [ -68.999946594238224, -14.389788627624455 ], [ -69.000778198242188, -14.389689445495549 ], [ -69.002372741699219, -14.38904953002924 ], [ -69.002983093261719, -14.389429092407227 ], [ -69.004219055175781, -14.390949249267521 ], [ -69.004989624023438, -14.392338752746582 ], [ -69.005355834960938, -14.393820762634277 ], [ -69.005401611328068, -14.397148132324162 ], [ -69.004920959472599, -14.398159980773926 ], [ -69.004859924316406, -14.399978637695312 ], [ -69.005241394042969, -14.402900695800781 ], [ -69.005889892578011, -14.403889656066895 ], [ -69.006347656249943, -14.40412712097168 ], [ -69.006813049316349, -14.404369354248047 ], [ -69.008026123046875, -14.404389381408691 ], [ -69.009300231933537, -14.404048919677734 ], [ -69.012290954589844, -14.402680397033691 ], [ -69.014259338378849, -14.402459144592285 ], [ -69.016128540039062, -14.403289794921875 ], [ -69.018196105956918, -14.40324878692627 ], [ -69.019760131835938, -14.403571128845215 ], [ -69.021026611328068, -14.404509544372559 ], [ -69.023666381835938, -14.405719757080021 ], [ -69.024650573730412, -14.406599998474121 ], [ -69.025627136230412, -14.408159255981388 ], [ -69.026618957519531, -14.410650253295842 ], [ -69.026756286621037, -14.41283988952631 ], [ -69.027091979980469, -14.413610458373967 ], [ -69.027160644531136, -14.418821334838867 ], [ -69.027175903320312, -14.420589447021484 ], [ -69.027038574218693, -14.421058654785156 ], [ -69.026939392089787, -14.421380043029785 ], [ -69.026908874511719, -14.423128128051701 ], [ -69.027351379394418, -14.424338340759277 ], [ -69.028472900390568, -14.425578117370605 ], [ -69.029876708984375, -14.426309585571175 ], [ -69.031448364257699, -14.426678657531738 ], [ -69.034255981445312, -14.426899909973145 ], [ -69.035751342773438, -14.42664909362793 ], [ -69.038299560546818, -14.426589965820312 ], [ -69.044670104980412, -14.428580284118652 ], [ -69.045616149902344, -14.428451538085824 ], [ -69.047729492187443, -14.428170204162541 ], [ -69.049476623535043, -14.42853927612299 ], [ -69.051239013671875, -14.429228782653809 ], [ -69.052780151367131, -14.430666923522949 ], [ -69.054031372070256, -14.431830406188908 ], [ -69.055419921875, -14.434428215026799 ], [ -69.057380676269474, -14.436358451843262 ], [ -69.058357238769531, -14.439328193664494 ], [ -69.05950927734375, -14.441117286682129 ], [ -69.060356140136719, -14.441860198974609 ], [ -69.062088012695312, -14.442599296569824 ], [ -69.068756103515625, -14.444259643554631 ], [ -69.072425842285099, -14.445669174194222 ], [ -69.073646545410156, -14.446350097656193 ], [ -69.074409484863281, -14.446420669555607 ], [ -69.075782775878849, -14.446079254150334 ], [ -69.077926635742188, -14.445500373840332 ], [ -69.081298828124943, -14.443670272827148 ], [ -69.082588195800781, -14.443649291992188 ], [ -69.083282470703125, -14.445129394531193 ], [ -69.083251953125, -14.446418762207031 ], [ -69.083618164062386, -14.447750091552734 ], [ -69.083686828613224, -14.451149940490666 ], [ -69.083732604980469, -14.45130729675293 ], [ -69.083908081054688, -14.451950073242188 ], [ -69.085502624511662, -14.454339027404785 ], [ -69.086761474609261, -14.457069396972656 ], [ -69.08809661865223, -14.459088325500375 ], [ -69.088249206542969, -14.459308624267578 ], [ -69.089111328124943, -14.462599754333496 ], [ -69.089668273925781, -14.463340759277287 ], [ -69.090217590332031, -14.464079856872502 ], [ -69.090950012206974, -14.46505069732666 ], [ -69.092536926269531, -14.467668533325138 ], [ -69.092811584472656, -14.468640327453613 ], [ -69.092788696289062, -14.471300125122013 ], [ -69.093009948730469, -14.472100257873535 ], [ -69.094177246093693, -14.47377967834467 ], [ -69.095382690429688, -14.475008010864201 ], [ -69.097045898437443, -14.477558135986271 ], [ -69.097938537597656, -14.479589462280217 ], [ -69.098876953124886, -14.483049392700082 ], [ -69.099693298339844, -14.484619140624943 ], [ -69.100273132324162, -14.485239028930607 ], [ -69.101257324218636, -14.485509872436467 ], [ -69.101890563964787, -14.485350608825627 ], [ -69.104301452636662, -14.483919143676758 ], [ -69.105239868164006, -14.483819007873535 ], [ -69.106468200683537, -14.484309196472111 ], [ -69.108207702636662, -14.485399246215763 ], [ -69.108779907226506, -14.485421180725098 ], [ -69.109176635742074, -14.485434532165471 ], [ -69.110076904296875, -14.485468864440918 ], [ -69.111785888671875, -14.485870361328125 ], [ -69.112075805664062, -14.485939025878849 ], [ -69.114768981933537, -14.487798690795842 ], [ -69.114112854003849, -14.489220619201603 ], [ -69.113960266113281, -14.490214347839299 ], [ -69.1138916015625, -14.490689277648926 ], [ -69.115196228027344, -14.496598243713379 ], [ -69.115303039550781, -14.502298355102482 ], [ -69.115173339843693, -14.503068923950138 ], [ -69.114875793456974, -14.503437995910531 ], [ -69.118492126464787, -14.508239746093693 ], [ -69.120391845703068, -14.510348320007211 ], [ -69.122138977050724, -14.511640548705998 ], [ -69.125205993652344, -14.513250350952092 ], [ -69.128074645996094, -14.513765335083008 ], [ -69.130943298339844, -14.514280319213867 ], [ -69.136428833007756, -14.514799118041935 ], [ -69.138481140136719, -14.514369010925293 ], [ -69.140426635742131, -14.513369560241642 ], [ -69.14154052734375, -14.513349533080998 ], [ -69.142517089843693, -14.513851165771484 ], [ -69.143569946289006, -14.514738082885742 ], [ -69.144233703613224, -14.515895843505803 ], [ -69.145271301269531, -14.517709732055664 ], [ -69.146057128906193, -14.518581390380859 ], [ -69.14827728271473, -14.519418716430664 ], [ -69.149887084960881, -14.520448684692383 ], [ -69.151390075683537, -14.520730018615723 ], [ -69.152244567871037, -14.520889282226562 ], [ -69.153701782226506, -14.521158218383789 ], [ -69.154281616210824, -14.521589279174805 ], [ -69.154502868652344, -14.521759986877441 ], [ -69.154167175292912, -14.522430419921875 ], [ -69.152336120605469, -14.523880004882756 ], [ -69.152023315429688, -14.524088859558105 ], [ -69.151573181152344, -14.52439022064209 ], [ -69.150558471679631, -14.525069236755371 ], [ -69.144912719726506, -14.528818130493107 ], [ -69.144172668456918, -14.529969215393066 ], [ -69.143936157226562, -14.53087043762207 ], [ -69.143997192382812, -14.531558036804199 ], [ -69.14666748046875, -14.537638664245605 ], [ -69.147682189941349, -14.54088020324707 ], [ -69.147392272949162, -14.549248695373535 ], [ -69.146736145019474, -14.553779602050781 ], [ -69.146896362304688, -14.557029724121094 ], [ -69.147087097167969, -14.557328224182129 ], [ -69.147247314453125, -14.55757904052723 ], [ -69.14764404296875, -14.557864189147949 ], [ -69.149360656738281, -14.559099197387695 ], [ -69.149749755859375, -14.559979438781681 ], [ -69.149810791015625, -14.560790061950627 ], [ -69.149642944335938, -14.561849594116211 ], [ -69.14760589599598, -14.566439628601074 ], [ -69.1473388671875, -14.568049430847054 ], [ -69.147171020507812, -14.569090843200627 ], [ -69.147087097167969, -14.571388244628849 ], [ -69.148002624511719, -14.575440406799203 ], [ -69.148162841796818, -14.576120376586857 ], [ -69.148117065429688, -14.577068328857422 ], [ -69.149986267089787, -14.579559326171875 ], [ -69.151077270507812, -14.580169677734318 ], [ -69.154342651367131, -14.582900047302189 ], [ -69.156738281249943, -14.584918975830021 ], [ -69.159912109374886, -14.586548805236816 ], [ -69.166267395019474, -14.588529586791879 ], [ -69.171241760253849, -14.588680267333984 ], [ -69.173835754394418, -14.589138031005803 ], [ -69.174789428710824, -14.589039802551213 ], [ -69.178962707519474, -14.590018272399902 ], [ -69.181716918945256, -14.590269088745117 ], [ -69.184745788574219, -14.590090751647949 ], [ -69.188133239746037, -14.587550163269043 ], [ -69.191047668457031, -14.585779190063477 ], [ -69.196868896484375, -14.585949897766113 ], [ -69.200729370117074, -14.585648536682129 ], [ -69.206756591796875, -14.584159851074162 ], [ -69.208549499511605, -14.584051132202148 ], [ -69.210693359375, -14.583490371704102 ], [ -69.213447570800781, -14.583398818969727 ], [ -69.220069885253849, -14.581468582153207 ], [ -69.221481323242131, -14.581268310546875 ], [ -69.221786499023381, -14.581548690795842 ], [ -69.221870422363224, -14.583659172058049 ], [ -69.221946716308594, -14.585689544677678 ], [ -69.220939636230412, -14.589618682861271 ], [ -69.221122741699162, -14.59025859832758 ], [ -69.222267150878849, -14.591419219970646 ], [ -69.222396850585938, -14.593288421630859 ], [ -69.223060607910156, -14.594009399413949 ], [ -69.226081848144474, -14.595312118530273 ], [ -69.226646423339787, -14.596079826354924 ], [ -69.226905822753906, -14.596919059753361 ], [ -69.227088928222656, -14.597499847412109 ], [ -69.228469848632756, -14.598398208618164 ], [ -69.229667663574219, -14.598760604858398 ], [ -69.230239868164062, -14.600128173828125 ], [ -69.230232238769531, -14.604298591613713 ], [ -69.230682373046875, -14.608719825744515 ], [ -69.230216979980469, -14.616790771484318 ], [ -69.229621887206918, -14.618998527526855 ], [ -69.226646423339787, -14.626110076904297 ], [ -69.226150512695312, -14.628759384155217 ], [ -69.226325988769531, -14.630078315734806 ], [ -69.227500915527287, -14.632610321044865 ], [ -69.228012084960938, -14.634968757629395 ], [ -69.227951049804688, -14.636719703674316 ], [ -69.227600097656193, -14.638169288635197 ], [ -69.227577209472656, -14.643279075622502 ], [ -69.227066040039062, -14.645788192749023 ], [ -69.227256774902344, -14.646988868713379 ], [ -69.228141784667969, -14.64912033081049 ], [ -69.227645874023438, -14.653680801391602 ], [ -69.227706909179631, -14.654728889465332 ], [ -69.22882080078125, -14.655948638916016 ], [ -69.230476379394474, -14.656650543212834 ], [ -69.231216430664006, -14.656702995300236 ], [ -69.232009887695199, -14.656762123107853 ], [ -69.233306884765568, -14.65630912780756 ], [ -69.234001159667912, -14.656370162963867 ], [ -69.235435485839787, -14.657960891723633 ], [ -69.236190795898381, -14.658800125122013 ], [ -69.237640380859375, -14.659590721130314 ], [ -69.23956298828125, -14.659900665283146 ], [ -69.240997314453125, -14.659528732299805 ], [ -69.241554260253906, -14.659515380859318 ], [ -69.242118835449105, -14.659500122070256 ], [ -69.243949890136719, -14.660090446472168 ], [ -69.244224548339844, -14.660509109497013 ], [ -69.244766235351506, -14.66133880615223 ], [ -69.247619628906193, -14.663860321044922 ], [ -69.247642517089787, -14.664958000183105 ], [ -69.247047424316349, -14.667599678039551 ], [ -69.247276306152344, -14.668768882751465 ], [ -69.247962951660156, -14.670418739318791 ], [ -69.248413085937386, -14.670740127563477 ], [ -69.250190734863224, -14.670949935913086 ], [ -69.251373291015625, -14.671399116516113 ], [ -69.25396728515625, -14.675230026245117 ], [ -69.254066467285156, -14.675989151000977 ], [ -69.254150390625, -14.676568031311035 ], [ -69.254951477050781, -14.678279876708928 ], [ -69.258491516113224, -14.683409690856877 ], [ -69.258346557617188, -14.684098243713379 ], [ -69.257652282714787, -14.685270309448242 ], [ -69.255706787109375, -14.687740325927678 ], [ -69.253723144531193, -14.689809799194222 ], [ -69.252998352050781, -14.691389083862305 ], [ -69.252761840820256, -14.693129539489746 ], [ -69.252777099609318, -14.693860054016056 ], [ -69.252845764160156, -14.695698738098031 ], [ -69.253128051757812, -14.696318626403695 ], [ -69.254539489746094, -14.697969436645508 ], [ -69.254646301269531, -14.699028968810978 ], [ -69.254013061523381, -14.700079917907715 ], [ -69.251602172851562, -14.702669143676701 ], [ -69.248916625976562, -14.706270217895451 ], [ -69.244796752929688, -14.710039138793945 ], [ -69.244583129882756, -14.712711334228459 ], [ -69.243606567382756, -14.714199066162109 ], [ -69.2432861328125, -14.715378761291504 ], [ -69.242813110351562, -14.716019630432129 ], [ -69.241416931152287, -14.716878890991154 ], [ -69.237510681152287, -14.71676063537592 ], [ -69.23687744140625, -14.716909408569336 ], [ -69.236366271972599, -14.717410087585449 ], [ -69.235992431640568, -14.718149185180664 ], [ -69.234840393066349, -14.720338821411133 ], [ -69.234100341796818, -14.722498893737793 ], [ -69.234077453613224, -14.723071098327637 ], [ -69.234046936035156, -14.723669052124023 ], [ -69.234527587890625, -14.725870132446289 ], [ -69.234001159667912, -14.726498603820687 ], [ -69.233337402343693, -14.7266588211059 ], [ -69.23272705078125, -14.727208137512207 ], [ -69.230026245117188, -14.73190975189209 ], [ -69.227920532226562, -14.734136581420842 ], [ -69.226837158203068, -14.735279083251953 ], [ -69.226150512695312, -14.736579895019474 ], [ -69.22609710693348, -14.738598823547306 ], [ -69.227241516113168, -14.74120044708252 ], [ -69.228523254394531, -14.743281364440918 ], [ -69.230606079101562, -14.745979309082031 ], [ -69.234680175781136, -14.752860069274846 ], [ -69.237106323242188, -14.756319046020508 ], [ -69.238777160644418, -14.758289337158203 ], [ -69.24053955078125, -14.759380340576058 ], [ -69.244270324707031, -14.759490013122559 ], [ -69.248062133789062, -14.760749816894531 ], [ -69.249427795410099, -14.761010169982853 ], [ -69.251052856445256, -14.761320114135685 ], [ -69.253540039062443, -14.761539459228459 ], [ -69.259635925292912, -14.763289451599121 ], [ -69.262527465820199, -14.763661384582463 ], [ -69.263298034667969, -14.763940811157227 ], [ -69.267929077148381, -14.766408920288086 ], [ -69.271080017089787, -14.769398689269963 ], [ -69.271896362304688, -14.769099235534668 ], [ -69.273521423339844, -14.76762866973877 ], [ -69.278297424316406, -14.765849113464355 ], [ -69.279571533203068, -14.764718055725041 ], [ -69.279769897460881, -14.764642715454045 ], [ -69.280036926269474, -14.764539718627873 ], [ -69.280410766601562, -14.764595031738224 ], [ -69.281379699706974, -14.76478385925293 ], [ -69.281654357910156, -14.76488018035883 ], [ -69.284156799316349, -14.765739440917912 ], [ -69.287872314453068, -14.766085624694824 ], [ -69.288558959960824, -14.76614856719965 ], [ -69.293128967285099, -14.766200065612736 ], [ -69.296447753906193, -14.765980720519906 ], [ -69.300697326660156, -14.765080451965332 ], [ -69.302352905273381, -14.76547908782959 ], [ -69.313270568847656, -14.772080421447697 ], [ -69.319442749023381, -14.774860382080078 ], [ -69.322875976562443, -14.777118682861214 ], [ -69.327400207519531, -14.780544281005803 ], [ -69.328346252441406, -14.781259536743107 ], [ -69.331878662109375, -14.784088134765625 ], [ -69.3353271484375, -14.787369728088379 ], [ -69.336402893066349, -14.788949966430664 ], [ -69.337310791015625, -14.791760444641113 ], [ -69.339027404785156, -14.794069290161133 ], [ -69.340187072753906, -14.795220375061035 ], [ -69.340888977050724, -14.795419692993164 ], [ -69.341445922851562, -14.795117378234863 ], [ -69.342742919921875, -14.793839454650879 ], [ -69.343566894531193, -14.792610168457031 ], [ -69.344696044921818, -14.792649269103947 ], [ -69.345397949218636, -14.793238639831543 ], [ -69.346160888671761, -14.793880462646428 ], [ -69.347976684570199, -14.794489860534668 ], [ -69.349479675292912, -14.795479774475098 ], [ -69.35247802734375, -14.799010276794377 ], [ -69.353279113769474, -14.801068305969181 ], [ -69.353042602539062, -14.802390098571777 ], [ -69.353096008300724, -14.809379577636719 ], [ -69.353256225585938, -14.814229965209904 ], [ -69.353698730468636, -14.817829132080021 ], [ -69.353836059570312, -14.827239036560002 ], [ -69.354637145996037, -14.829831123352051 ], [ -69.356109619140625, -14.830789566040039 ], [ -69.356399536132812, -14.83116626739502 ], [ -69.356689453125, -14.831540107727051 ], [ -69.357826232910156, -14.835418701171875 ], [ -69.357841491699219, -14.83617973327631 ], [ -69.357887268066349, -14.839870452880746 ], [ -69.357902526855469, -14.840529441833496 ], [ -69.357421875, -14.843640327453613 ], [ -69.357398986816349, -14.843765258789006 ], [ -69.356781005859375, -14.847710609435921 ], [ -69.357040405273438, -14.851610183715763 ], [ -69.355949401855412, -14.855199813842773 ], [ -69.354682922363281, -14.858210563659668 ], [ -69.3536376953125, -14.859950065612736 ], [ -69.352470397949219, -14.863208770751896 ], [ -69.350349426269474, -14.867449760437012 ], [ -69.348556518554688, -14.872109413146916 ], [ -69.344352722167855, -14.881489753723145 ], [ -69.3441162109375, -14.882687568664494 ], [ -69.345046997070312, -14.886908531188965 ], [ -69.345275878906193, -14.889469146728516 ], [ -69.34649658203125, -14.893339157104492 ], [ -69.3470458984375, -14.897229194641113 ], [ -69.349220275878906, -14.905349731445256 ], [ -69.350738525390511, -14.912919044494572 ], [ -69.352737426757756, -14.919259071350098 ], [ -69.353729248046875, -14.924020767211857 ], [ -69.354530334472599, -14.925290107727051 ], [ -69.355476379394474, -14.925998687744141 ], [ -69.357551574707031, -14.929901123046875 ], [ -69.358169555664006, -14.930559158325195 ], [ -69.360816955566349, -14.930828094482365 ], [ -69.362953186035156, -14.929960250854492 ], [ -69.364212036132812, -14.929839134216252 ], [ -69.364677429199219, -14.930089950561523 ], [ -69.364387512207031, -14.930375099182072 ], [ -69.363510131835881, -14.931228637695199 ], [ -69.362632751464787, -14.933348655700684 ], [ -69.360359191894474, -14.935330390930119 ], [ -69.359977722167912, -14.936319351196232 ], [ -69.359657287597656, -14.938220024108887 ], [ -69.359672546386662, -14.939988136291504 ], [ -69.360260009765568, -14.941780090331974 ], [ -69.360191345214844, -14.942725181579533 ], [ -69.360122680664062, -14.943669319152832 ], [ -69.360946655273324, -14.94490909576416 ], [ -69.360687255859375, -14.946940422057992 ], [ -69.361923217773438, -14.949000358581543 ], [ -69.36163330078125, -14.950758934020882 ], [ -69.361747741699219, -14.953059196472168 ], [ -69.360755920410043, -14.95436954498291 ], [ -69.360679626464844, -14.954754829406738 ], [ -69.360603332519531, -14.955140113830566 ], [ -69.360527038574162, -14.959469795226994 ], [ -69.36004638671875, -14.960268020629769 ], [ -69.36029052734375, -14.960771560668945 ], [ -69.360527038574162, -14.961258888244572 ], [ -69.359573364257756, -14.962209701538086 ], [ -69.358467102050668, -14.96222972869873 ], [ -69.356948852539062, -14.96415805816639 ], [ -69.355926513671875, -14.96461009979248 ], [ -69.355270385742188, -14.965438842773381 ], [ -69.354789733886719, -14.966588020324707 ], [ -69.355430603027344, -14.967039108276254 ], [ -69.355056762695312, -14.967698097229004 ], [ -69.355293273925724, -14.968619346618652 ], [ -69.354705810546875, -14.969380378723088 ], [ -69.355155944824219, -14.970349311828556 ], [ -69.355117797851506, -14.971578598022461 ], [ -69.353042602539062, -14.973529815673828 ], [ -69.352638244628849, -14.974219322204476 ], [ -69.3524169921875, -14.975290298461914 ], [ -69.350807189941349, -14.976948738098145 ], [ -69.350059509277287, -14.978239059448242 ], [ -69.346755981445312, -14.981300354003793 ], [ -69.345436096191406, -14.983009338378849 ], [ -69.343727111816406, -14.983598709106388 ], [ -69.343536376953125, -14.983368873596191 ], [ -69.343536376953125, -14.98256874084467 ], [ -69.343116760253906, -14.98253059387207 ], [ -69.343009948730412, -14.98295879364008 ], [ -69.342926025390625, -14.983280181884709 ], [ -69.341567993164006, -14.98423957824707 ], [ -69.341079711914006, -14.984860420227051 ], [ -69.340820312499886, -14.985928535461426 ], [ -69.340873718261719, -14.986469268798828 ], [ -69.340927124023438, -14.987009048461914 ], [ -69.339996337890625, -14.987569808959961 ], [ -69.339996337890625, -14.988369941711369 ], [ -69.33905029296875, -14.98895072937006 ], [ -69.338920593261719, -14.98986911773676 ], [ -69.338119506835881, -14.990298271179142 ], [ -69.337593078613281, -14.990579605102482 ], [ -69.337600708007812, -14.991398811340275 ], [ -69.337371826171818, -14.99174976348877 ], [ -69.336425781249943, -14.991930007934457 ], [ -69.335716247558594, -14.992889404296875 ], [ -69.334892272949162, -14.992479324340763 ], [ -69.333786010742188, -14.992689132690373 ], [ -69.333747863769474, -14.994129180908203 ], [ -69.333389282226562, -14.99429988861084 ], [ -69.332878112792912, -14.994088172912541 ], [ -69.33245849609375, -14.994970321655217 ], [ -69.331451416015568, -14.99464035034174 ], [ -69.331039428710938, -14.99479866027832 ], [ -69.330886840820256, -14.995859146118164 ], [ -69.329658508300724, -14.996889114379769 ], [ -69.329902648925781, -14.998229026794377 ], [ -69.329322814941406, -14.998988151550236 ], [ -69.329246520996037, -14.999540328979435 ], [ -69.329322814941406, -14.999929428100529 ], [ -69.329826354980412, -15.000398635864201 ], [ -69.329917907714787, -15.000929832458496 ], [ -69.326927185058594, -15.003230094909668 ], [ -69.326126098632756, -15.003578186035099 ], [ -69.326156616210938, -15.003929138183594 ], [ -69.326309204101506, -15.004046440124455 ], [ -69.326576232910099, -15.004250526428223 ], [ -69.326156616210938, -15.004939079284668 ], [ -69.325729370117131, -15.004898071289062 ], [ -69.324806213378906, -15.004299163818359 ], [ -69.323890686035156, -15.004499435424748 ], [ -69.323883056640625, -15.005160331726074 ], [ -69.325408935546875, -15.006308555603027 ], [ -69.324913024902344, -15.007308959960881 ], [ -69.325447082519474, -15.007728576660156 ], [ -69.324920654296875, -15.008679389953556 ], [ -69.324760437011719, -15.00985145568842 ], [ -69.323249816894474, -15.009960174560547 ], [ -69.323013305664062, -15.010198593139648 ], [ -69.323196411132812, -15.010719299316406 ], [ -69.324470520019531, -15.011158943176213 ], [ -69.324394226074162, -15.011501312255803 ], [ -69.324348449707031, -15.011710166931152 ], [ -69.322692871093693, -15.011749267578125 ], [ -69.322402954101506, -15.01200008392334 ], [ -69.322677612304631, -15.012469291687012 ], [ -69.323722839355412, -15.012820243835392 ], [ -69.32375335693348, -15.013089179992676 ], [ -69.323097229003906, -15.013799667358398 ], [ -69.323112487792969, -15.015529632568303 ], [ -69.321418762207031, -15.017989158630257 ], [ -69.32177734375, -15.019309043884221 ], [ -69.320732116699219, -15.02018928527832 ], [ -69.321166992187443, -15.021429061889648 ], [ -69.320396423339787, -15.022029876708984 ], [ -69.320137023925781, -15.022518157958984 ], [ -69.320472717285099, -15.024090766906738 ], [ -69.320106506347599, -15.024968147277775 ], [ -69.320396423339787, -15.025586128234863 ], [ -69.320686340331974, -15.026199340820256 ], [ -69.320266723632812, -15.02655029296875 ], [ -69.319473266601562, -15.026458740234375 ], [ -69.319366455078011, -15.026749610900879 ], [ -69.320472717285099, -15.027718544006348 ], [ -69.320472717285099, -15.02813816070551 ], [ -69.319892883300781, -15.028510093688965 ], [ -69.318977355956974, -15.027919769287053 ], [ -69.31817626953125, -15.028079032897892 ], [ -69.318191528320256, -15.028224945068359 ], [ -69.318199157714787, -15.02836894989008 ], [ -69.319061279296818, -15.029410362243596 ], [ -69.319023132324219, -15.030379295349064 ], [ -69.318862915039006, -15.030730247497559 ], [ -69.317977905273438, -15.031140327453613 ], [ -69.317497253417969, -15.031639099121037 ], [ -69.317108154296875, -15.036199569702148 ], [ -69.316612243652344, -15.036409378051758 ], [ -69.31597900390625, -15.035868644714355 ], [ -69.315567016601562, -15.035810470581055 ], [ -69.314620971679688, -15.03656005859375 ], [ -69.314613342285156, -15.037508010864201 ], [ -69.314910888671875, -15.038244247436467 ], [ -69.315322875976506, -15.039270401000977 ], [ -69.315147399902287, -15.040899276733398 ], [ -69.314506530761719, -15.041379928588867 ], [ -69.313682556152344, -15.041419029235783 ], [ -69.312980651855469, -15.040910720825195 ], [ -69.312812805175781, -15.040269851684513 ], [ -69.311706542968693, -15.039218902587891 ], [ -69.310775756835881, -15.039299011230469 ], [ -69.310485839843693, -15.039600372314453 ], [ -69.310470581054631, -15.039859771728516 ], [ -69.310447692871094, -15.040138244628793 ], [ -69.310646057128906, -15.040600776672363 ], [ -69.310928344726562, -15.04125881195057 ], [ -69.311172485351562, -15.042968749999943 ], [ -69.310806274414062, -15.04331111907959 ], [ -69.309921264648324, -15.043319702148438 ], [ -69.308906555175781, -15.043068885803223 ], [ -69.308242797851562, -15.04253959655756 ], [ -69.307746887207031, -15.040740013122559 ], [ -69.307289123535156, -15.040069580078125 ], [ -69.306343078613281, -15.039508819580078 ], [ -69.305488586425781, -15.039508819580078 ], [ -69.304901123046875, -15.04004001617426 ], [ -69.304649353027287, -15.041238784789925 ], [ -69.305625915527287, -15.044190406799316 ], [ -69.305778503417969, -15.045479774475041 ], [ -69.305351257324219, -15.046158790588322 ], [ -69.304985046386719, -15.046292304992676 ], [ -69.304718017578125, -15.046389579772892 ], [ -69.303192138671875, -15.046128273010254 ], [ -69.300979614257812, -15.046348571777344 ], [ -69.300270080566349, -15.046979904174805 ], [ -69.299720764160043, -15.048288345336857 ], [ -69.299751281738281, -15.049008369445744 ], [ -69.300956726074105, -15.049990653991699 ], [ -69.302726745605469, -15.052889823913517 ], [ -69.303131103515568, -15.052899360656738 ], [ -69.303657531738281, -15.052257537841797 ], [ -69.304069519042912, -15.052179336547795 ], [ -69.304466247558537, -15.052550315856934 ], [ -69.304580688476449, -15.05320930480957 ], [ -69.30413818359375, -15.05418872833252 ], [ -69.302650451660099, -15.055410385131779 ], [ -69.301689147949162, -15.056558609008732 ], [ -69.299842834472656, -15.059408187866211 ], [ -69.299400329589787, -15.060830116271916 ], [ -69.299392700195312, -15.062179565429688 ], [ -69.299133300781193, -15.062843322753906 ], [ -69.298698425292969, -15.063939094543457 ], [ -69.298362731933537, -15.066618919372502 ], [ -69.296173095703068, -15.06797981262207 ], [ -69.296623229980469, -15.068519592285156 ], [ -69.297737121582031, -15.068499565124455 ], [ -69.298271179199162, -15.06868934631342 ], [ -69.298454284667912, -15.068989753723145 ], [ -69.298637390136662, -15.069290161132756 ], [ -69.29866790771473, -15.069799423217773 ], [ -69.298004150390511, -15.07014274597168 ], [ -69.297561645507812, -15.070370674133244 ], [ -69.295646667480469, -15.070669174194279 ], [ -69.29486083984375, -15.071239471435547 ], [ -69.29461669921875, -15.072018623351937 ], [ -69.295883178710881, -15.073248863220215 ], [ -69.295562744140625, -15.073829650878906 ], [ -69.294769287109375, -15.074057579040471 ], [ -69.293418884277287, -15.072910308837834 ], [ -69.292732238769474, -15.072820663452148 ], [ -69.290817260742131, -15.074150085449162 ], [ -69.289993286132699, -15.076160430908146 ], [ -69.289787292480412, -15.077338218688965 ], [ -69.290237426757812, -15.079870223999023 ], [ -69.289657592773438, -15.081098556518441 ], [ -69.289741516113281, -15.082308769226074 ], [ -69.290092468261719, -15.08270072937006 ], [ -69.290885925292969, -15.083010673522892 ], [ -69.291961669921818, -15.082189559936523 ], [ -69.292526245117188, -15.082119941711369 ], [ -69.293037414550724, -15.082759857177678 ], [ -69.292999267578125, -15.083172798156625 ], [ -69.292961120605469, -15.083548545837402 ], [ -69.291877746581974, -15.084401130676213 ], [ -69.291336059570312, -15.084520339965763 ], [ -69.290672302246094, -15.084184646606445 ], [ -69.290229797363281, -15.083958625793457 ], [ -69.288742065429631, -15.082400321960449 ], [ -69.288146972656193, -15.082343101501408 ], [ -69.287483215331974, -15.082279205322209 ], [ -69.286598205566406, -15.082940101623535 ], [ -69.286170959472599, -15.083640098571777 ], [ -69.286125183105469, -15.083953857421875 ], [ -69.286071777343693, -15.084319114685059 ], [ -69.286476135253906, -15.085019111633301 ], [ -69.286880493164062, -15.085718154907227 ], [ -69.287071228027344, -15.08679008483881 ], [ -69.285247802734375, -15.092309951782227 ], [ -69.285316467285043, -15.096329689025822 ], [ -69.284545898437443, -15.096739768981877 ], [ -69.282318115234375, -15.094340324401855 ], [ -69.28192138671875, -15.094289779663086 ], [ -69.281669616699162, -15.094940185546818 ], [ -69.282852172851562, -15.096918106079045 ], [ -69.282997131347599, -15.098139762878418 ], [ -69.282211303710938, -15.099058151245117 ], [ -69.280441284179631, -15.100041389465275 ], [ -69.280334472656193, -15.100150108337402 ], [ -69.280006408691406, -15.100478172302189 ], [ -69.280059814453068, -15.102819442748967 ], [ -69.2799072265625, -15.103259086608887 ], [ -69.279571533203068, -15.103413581848145 ], [ -69.279342651367188, -15.103517532348633 ], [ -69.278778076171875, -15.103449821472168 ], [ -69.277206420898381, -15.10154914855957 ], [ -69.276802062988224, -15.101469993591309 ], [ -69.274642944335938, -15.103010177612248 ], [ -69.273406982421875, -15.104239463806152 ], [ -69.273338317871094, -15.10547924041748 ], [ -69.273742675781193, -15.106189727783203 ], [ -69.277328491210938, -15.107639312744084 ], [ -69.27789306640625, -15.108070373535156 ], [ -69.277946472167912, -15.109558105468693 ], [ -69.277381896972599, -15.110458374023438 ], [ -69.276329040527287, -15.111370086669865 ], [ -69.27545166015625, -15.111758232116699 ], [ -69.274696350097599, -15.111914634704533 ], [ -69.273941040039006, -15.112070083618107 ], [ -69.27339935302723, -15.111899375915471 ], [ -69.272987365722599, -15.11060905456543 ], [ -69.273483276367131, -15.109069824218693 ], [ -69.273490905761605, -15.107990264892578 ], [ -69.273002624511662, -15.107518196105957 ], [ -69.272216796874943, -15.107324600219613 ], [ -69.27142333984375, -15.107129096984863 ], [ -69.270927429199219, -15.106299400329476 ], [ -69.270767211914062, -15.104820251464844 ], [ -69.270401000976562, -15.104469299316406 ], [ -69.269828796386719, -15.104389190673771 ], [ -69.269203186035043, -15.104569435119629 ], [ -69.268623352050724, -15.105811119079533 ], [ -69.269264221191349, -15.107639312744084 ], [ -69.269767761230412, -15.109090805053711 ], [ -69.268157958984375, -15.109558105468693 ], [ -69.267601013183594, -15.109999656677189 ], [ -69.267448425292912, -15.110479354858398 ], [ -69.267601013183594, -15.111978530883732 ], [ -69.268760681152344, -15.114130020141602 ], [ -69.268646240234375, -15.115080833435059 ], [ -69.267860412597599, -15.11620044708252 ], [ -69.267471313476506, -15.116530418395996 ], [ -69.266906738281193, -15.117009162902775 ], [ -69.266693115234318, -15.117189407348633 ], [ -69.265579223632699, -15.116861343383675 ], [ -69.265426635742188, -15.116799354553223 ], [ -69.264930725097656, -15.116159439086857 ], [ -69.264991760253849, -15.112648963928223 ], [ -69.264739990234375, -15.111199378967228 ], [ -69.264389038085938, -15.110707283019963 ], [ -69.264030456542912, -15.110210418701115 ], [ -69.2625732421875, -15.109428405761719 ], [ -69.261451721191349, -15.109519004821721 ], [ -69.260162353515625, -15.110309600830021 ], [ -69.258781433105412, -15.110231399536133 ], [ -69.258560180664062, -15.110569953918457 ], [ -69.258789062499943, -15.11216831207264 ], [ -69.258430480957031, -15.112808227538949 ], [ -69.257972717285156, -15.113059043884221 ], [ -69.256172180175781, -15.112798690795898 ], [ -69.254737854003906, -15.111729621887207 ], [ -69.253677368164062, -15.111388206481934 ], [ -69.25244140625, -15.111470222473088 ], [ -69.250587463378849, -15.112060546875 ], [ -69.249046325683537, -15.112970352172852 ], [ -69.248832702636719, -15.114690780639648 ], [ -69.247962951660156, -15.115348815917912 ], [ -69.246772766113224, -15.115010261535588 ], [ -69.244941711425724, -15.112640380859375 ], [ -69.243721008300724, -15.112418174743652 ], [ -69.243370056152344, -15.112689971923771 ], [ -69.243392944335938, -15.114419937133789 ], [ -69.241493225097656, -15.116568565368596 ], [ -69.241127014160099, -15.117450714111271 ], [ -69.241302490234375, -15.118349075317383 ], [ -69.243728637695256, -15.119358062744084 ], [ -69.244186401367131, -15.12001895904541 ], [ -69.244201660156193, -15.120333671569824 ], [ -69.244232177734375, -15.120958328247013 ], [ -69.243728637695256, -15.122068405151367 ], [ -69.243026733398438, -15.122520446777287 ], [ -69.242202758789006, -15.122508049011174 ], [ -69.241477966308594, -15.122089385986328 ], [ -69.239776611328125, -15.121609687805062 ], [ -69.238128662109375, -15.119110107421875 ], [ -69.237068176269531, -15.119270324706974 ], [ -69.236526489257812, -15.119869232177621 ], [ -69.236610412597656, -15.123499870300293 ], [ -69.235870361328125, -15.123928070068359 ], [ -69.235176086425781, -15.123990058898812 ], [ -69.234573364257756, -15.123439788818359 ], [ -69.234031677246094, -15.123259544372502 ], [ -69.233757019042969, -15.123464584350586 ], [ -69.2332763671875, -15.12382984161377 ], [ -69.233200073242188, -15.124759674072266 ], [ -69.234367370605412, -15.125900268554688 ], [ -69.234352111816406, -15.127237319946232 ], [ -69.233535766601449, -15.127989768981934 ], [ -69.231163024902344, -15.128030776977539 ], [ -69.230171203613224, -15.128488540649357 ], [ -69.229690551757756, -15.129579544067383 ], [ -69.229637145996094, -15.130949974060059 ], [ -69.229988098144474, -15.131850242614689 ], [ -69.229782104492131, -15.132181167602482 ], [ -69.229263305664062, -15.132419586181584 ], [ -69.228431701660156, -15.132419586181584 ], [ -69.227439880371094, -15.132020950317326 ], [ -69.227012634277287, -15.131850242614689 ], [ -69.226257324218693, -15.131269454956055 ], [ -69.225799560546818, -15.131327629089355 ], [ -69.225440979003906, -15.131369590759221 ], [ -69.225219726562443, -15.13185977935791 ], [ -69.224983215332031, -15.1352281570434 ], [ -69.224868774414062, -15.135581016540414 ], [ -69.224693298339844, -15.136110305786076 ], [ -69.224555969238224, -15.136264801025334 ], [ -69.224296569824219, -15.13655853271473 ], [ -69.221778869628849, -15.135889053344727 ], [ -69.220314025878906, -15.135869026184082 ], [ -69.218856811523438, -15.135848045349064 ], [ -69.217842102050781, -15.13628959655756 ], [ -69.21649169921875, -15.137648582458439 ], [ -69.215827941894531, -15.139845848083439 ], [ -69.215171813964844, -15.142040252685547 ], [ -69.21474456787098, -15.142671585082951 ], [ -69.214492797851562, -15.143050193786621 ], [ -69.213249206542969, -15.144139289855957 ], [ -69.211555480957031, -15.145208358764648 ], [ -69.2105712890625, -15.145828247070312 ], [ -69.209831237792969, -15.146190643310433 ], [ -69.209518432617188, -15.146259307861271 ], [ -69.208068847656136, -15.146579742431641 ], [ -69.206832885742074, -15.147199630737305 ], [ -69.203742980956974, -15.150839805602914 ], [ -69.201248168945312, -15.153369903564453 ], [ -69.199966430663949, -15.154509544372559 ], [ -69.199417114257812, -15.155009269714299 ], [ -69.198501586914006, -15.155357360839844 ], [ -69.197296142578011, -15.156298637390137 ], [ -69.197097778320256, -15.156599998474121 ], [ -69.196952819824219, -15.156839370727539 ], [ -69.196876525878849, -15.157939910888672 ], [ -69.196327209472599, -15.158748626708928 ], [ -69.194587707519474, -15.158979415893498 ], [ -69.193367004394474, -15.158778190612793 ], [ -69.191696166992188, -15.158512115478516 ], [ -69.191452026367131, -15.158569335937443 ], [ -69.191307067871094, -15.15860462188715 ], [ -69.190910339355469, -15.158699035644531 ], [ -69.190032958984318, -15.159379959106388 ], [ -69.189994812011719, -15.159648895263672 ], [ -69.189956665039062, -15.159919738769418 ], [ -69.190490722656193, -15.160818099975529 ], [ -69.190986633300724, -15.161670684814453 ], [ -69.190826416015625, -15.163299560546875 ], [ -69.191299438476562, -15.164579391479492 ], [ -69.191497802734375, -15.165129661560002 ], [ -69.191230773925781, -15.165780067443848 ], [ -69.189697265625, -15.16735935211176 ], [ -69.187957763671875, -15.168579101562443 ], [ -69.187301635742188, -15.168661117553711 ], [ -69.186172485351562, -15.168808937072697 ], [ -69.18511962890625, -15.170860290527287 ], [ -69.184616088867188, -15.171257019042912 ], [ -69.183715820312443, -15.171970367431641 ], [ -69.183387756347656, -15.172859191894474 ], [ -69.181571960449219, -15.174519538879338 ], [ -69.181266784667912, -15.175128936767578 ], [ -69.1744384765625, -15.180279731750488 ], [ -69.174209594726506, -15.180999755859261 ], [ -69.174232482910156, -15.182228088378849 ], [ -69.172302246093693, -15.18397045135498 ], [ -69.17156982421875, -15.185979843139592 ], [ -69.170684814453011, -15.18680477142334 ], [ -69.169853210449219, -15.187580108642464 ], [ -69.169616699218693, -15.189439773559457 ], [ -69.169319152831974, -15.190038681030273 ], [ -69.168388366699162, -15.190869331359863 ], [ -69.167228698730412, -15.190988540649414 ], [ -69.166656494140568, -15.191299438476449 ], [ -69.166412353515625, -15.191760063171387 ], [ -69.166236877441406, -15.193388938903809 ], [ -69.16201019287098, -15.197468757629395 ], [ -69.161026000976506, -15.199990272521916 ], [ -69.157485961914062, -15.204831123351994 ], [ -69.156082153320256, -15.207909584045353 ], [ -69.155166625976562, -15.210451126098633 ], [ -69.155059814453125, -15.210879325866699 ], [ -69.154953002929574, -15.211310386657715 ], [ -69.154197692871094, -15.214249610900879 ], [ -69.153656005859375, -15.215359687805176 ], [ -69.152870178222656, -15.216128349304142 ], [ -69.152275085449162, -15.216395378112793 ], [ -69.151863098144474, -15.216580390930119 ], [ -69.147781372070256, -15.21742057800293 ], [ -69.146629333496037, -15.217899322509709 ], [ -69.143013000488224, -15.221798896789551 ], [ -69.140281677246094, -15.223649024963265 ], [ -69.1390380859375, -15.224749565124398 ], [ -69.138992309570256, -15.224880218505859 ], [ -69.138290405273438, -15.227039337158146 ], [ -69.13543701171875, -15.229788780212346 ], [ -69.135246276855469, -15.230698585510197 ], [ -69.135047912597656, -15.231610298156738 ], [ -69.133941650390568, -15.232458114624023 ], [ -69.133613586425781, -15.232608795166016 ], [ -69.132560729980469, -15.233078002929688 ], [ -69.131851196289006, -15.233748435974121 ], [ -69.131736755371094, -15.234658241271973 ], [ -69.132102966308594, -15.23538875579834 ], [ -69.131607055664062, -15.236349105834904 ], [ -69.131469726562443, -15.237569808959904 ], [ -69.132286071777344, -15.238969802856445 ], [ -69.132308959960938, -15.241390228271484 ], [ -69.133132934570312, -15.243549346923771 ], [ -69.132949829101562, -15.244750022888127 ], [ -69.132446289062386, -15.24601936340332 ], [ -69.131690979003906, -15.246309280395508 ], [ -69.130722045898381, -15.245570182800293 ], [ -69.130149841308537, -15.246760368347111 ], [ -69.128219604492131, -15.246768951415959 ], [ -69.127258300781193, -15.246768951415959 ], [ -69.126747131347656, -15.248279571533203 ], [ -69.125289916992074, -15.250409126281738 ], [ -69.123916625976562, -15.251550674438477 ], [ -69.123573303222543, -15.251839637756348 ], [ -69.122627258300781, -15.252629280090275 ], [ -69.121688842773438, -15.253788948058968 ], [ -69.120109558105412, -15.25868034362793 ], [ -69.12014007568348, -15.259499549865666 ], [ -69.12066650390625, -15.260137557983398 ], [ -69.121437072753906, -15.260330200195256 ], [ -69.122589111328068, -15.260238647460881 ], [ -69.124549865722656, -15.259261131286564 ], [ -69.126380920410156, -15.259879112243652 ], [ -69.127555847167912, -15.259169578552189 ], [ -69.128982543945256, -15.259320259094125 ], [ -69.129760742187443, -15.25940036773676 ], [ -69.130340576171818, -15.259018898010197 ], [ -69.131561279296818, -15.258830070495605 ], [ -69.132286071777344, -15.258717536926213 ], [ -69.133537292480469, -15.257970809936467 ], [ -69.136352539062386, -15.255319595336857 ], [ -69.137306213378793, -15.255169868469238 ], [ -69.137710571289062, -15.255538940429631 ], [ -69.138236999511662, -15.255588531494141 ], [ -69.138671875, -15.256129264831543 ], [ -69.140129089355469, -15.25662899017334 ], [ -69.140167236328011, -15.256899833679199 ], [ -69.140457153320199, -15.258887290954476 ], [ -69.141616821289062, -15.260189056396484 ], [ -69.143661499023381, -15.261658668518066 ], [ -69.144332885742131, -15.262039184570256 ], [ -69.147377014160156, -15.263779640197697 ], [ -69.150253295898381, -15.266330718994084 ], [ -69.151557922363281, -15.267089843749943 ], [ -69.152153015136662, -15.268318176269474 ], [ -69.152549743652287, -15.269159317016545 ], [ -69.175537109374943, -15.261460304260254 ], [ -69.175926208496037, -15.261788368225041 ], [ -69.176101684570256, -15.263697624206543 ], [ -69.176376342773381, -15.274359703063965 ], [ -69.176849365234318, -15.276819229125977 ], [ -69.177688598632812, -15.278980255126953 ], [ -69.177909851074162, -15.279329299926758 ], [ -69.17901611328125, -15.281069755554199 ], [ -69.180908203125, -15.283199310302678 ], [ -69.188262939453125, -15.289560317993107 ], [ -69.190620422363168, -15.291889190673771 ], [ -69.1923828125, -15.294218063354435 ], [ -69.193527221679688, -15.296639442443848 ], [ -69.194198608398438, -15.299150466918945 ], [ -69.194549560546875, -15.302190780639648 ], [ -69.194618225097599, -15.314840316772404 ], [ -69.202781677246094, -15.32136058807373 ], [ -69.206626892089787, -15.323910713195801 ], [ -69.215141296386719, -15.317428588867188 ], [ -69.215896606445312, -15.317559242248478 ], [ -69.230758666992131, -15.335450172424316 ], [ -69.240486145019474, -15.353938102722111 ], [ -69.248046875, -15.370618820190373 ], [ -69.250076293945312, -15.371349334716683 ], [ -69.258827209472656, -15.373688697814941 ], [ -69.259849548339787, -15.374070167541504 ], [ -69.260208129882756, -15.374529838562012 ], [ -69.250076293945312, -15.426641464233398 ], [ -69.237968444824219, -15.43676853179926 ], [ -69.23272705078125, -15.44169902801508 ], [ -69.232810974121094, -15.442199707031193 ], [ -69.241081237792969, -15.460049629211369 ], [ -69.241645812988281, -15.460650444030705 ], [ -69.253707885742188, -15.469049453735295 ], [ -69.289596557617131, -15.437028884887695 ], [ -69.290306091308594, -15.436689376830998 ], [ -69.295257568359375, -15.445339202880803 ], [ -69.302207946777344, -15.453278541564885 ], [ -69.303848266601562, -15.459499359130859 ], [ -69.309280395507812, -15.463540077209473 ], [ -69.312026977539062, -15.472679138183594 ], [ -69.309226989746037, -15.476368904113713 ], [ -69.304077148437443, -15.481829643249455 ], [ -69.30230712890625, -15.484129905700627 ], [ -69.301261901855469, -15.485960006713867 ], [ -69.301933288574219, -15.486450195312443 ], [ -69.311477661132812, -15.490509033203125 ], [ -69.312652587890568, -15.49130916595459 ], [ -69.313468933105469, -15.492189407348633 ], [ -69.313560485839844, -15.492708206176644 ], [ -69.313217163085938, -15.493769645690861 ], [ -69.310852050781193, -15.495189666748047 ], [ -69.309547424316406, -15.497099876403752 ], [ -69.30908203125, -15.500020027160588 ], [ -69.309036254882756, -15.502178192138615 ], [ -69.309196472167969, -15.502529144287109 ], [ -69.308830261230469, -15.503649711608887 ], [ -69.308937072753849, -15.504798889160156 ], [ -69.312049865722656, -15.507889747619629 ], [ -69.314117431640511, -15.511348724365121 ], [ -69.314620971679688, -15.513279914855843 ], [ -69.314430236816406, -15.517048835754395 ], [ -69.314926147460938, -15.51843070983881 ], [ -69.318031311035043, -15.521510124206486 ], [ -69.326927185058594, -15.532658576965332 ], [ -69.329902648925781, -15.534630775451603 ], [ -69.330459594726562, -15.536334991454964 ], [ -69.330497741699162, -15.536449432373047 ], [ -69.331268310546818, -15.536608695983887 ], [ -69.331832885742131, -15.537568092346135 ], [ -69.332267761230469, -15.53764820098877 ], [ -69.333381652831918, -15.537328720092717 ], [ -69.335662841796818, -15.535869598388672 ], [ -69.337821960449219, -15.535549163818303 ], [ -69.392066955566406, -15.595228195190316 ], [ -69.39471435546875, -15.598140716552734 ], [ -69.401847839355412, -15.605990409851017 ], [ -69.400627136230469, -15.609325408935547 ], [ -69.249244689941349, -16.023529052734375 ], [ -69.245681762695312, -16.033279418945256 ], [ -69.198966979980469, -16.161109924316406 ], [ -69.197731018066406, -16.164489746093693 ], [ -69.196411132812443, -16.16810035705555 ], [ -69.102066040039062, -16.227188110351562 ], [ -69.101837158203125, -16.226139068603516 ], [ -69.102027893066406, -16.224260330200138 ], [ -69.101058959960881, -16.224189758300724 ], [ -69.099845886230469, -16.224508285522461 ], [ -69.097190856933594, -16.224639892578125 ], [ -69.094001770019474, -16.224441528320312 ], [ -69.093299865722656, -16.224266052246094 ], [ -69.092811584472656, -16.224147796630859 ], [ -69.084671020507812, -16.222148895263672 ], [ -69.081001281738281, -16.220869064331055 ], [ -69.079017639160099, -16.219387054443359 ], [ -69.074409484863281, -16.216859817504883 ], [ -69.070236206054631, -16.213479995727482 ], [ -69.067962646484318, -16.212179183959961 ], [ -69.063659667968693, -16.208339691162109 ], [ -69.06215667724598, -16.207328796386662 ], [ -69.05914306640625, -16.20363807678217 ], [ -69.055877685546875, -16.198299407958984 ], [ -69.055061340332031, -16.197380065917969 ], [ -69.054206848144474, -16.197380065917969 ], [ -69.052772521972656, -16.19788932800293 ], [ -69.047477722167969, -16.201398849487305 ], [ -69.044281005859375, -16.203029632568303 ], [ -69.033226013183537, -16.205829620361328 ], [ -69.030998229980469, -16.206644058227539 ], [ -69.029067993163949, -16.20734977722168 ], [ -69.028160095214844, -16.207965850830078 ], [ -69.026336669921875, -16.209199905395394 ], [ -69.018379211425724, -16.21575927734375 ], [ -69.012626647949162, -16.219549179077148 ], [ -69.011558532714844, -16.21929931640625 ], [ -69.007080078125, -16.216819763183594 ], [ -69.007171630859375, -16.208250045776254 ], [ -69.006652832031136, -16.205879211425724 ], [ -69.0057373046875, -16.20435905456543 ], [ -69.000900268554631, -16.199628829955998 ], [ -68.99761962890625, -16.197769165039006 ], [ -68.994987487792912, -16.196720123290959 ], [ -68.992599487304631, -16.195369720458984 ], [ -68.990768432617188, -16.194879531860295 ], [ -68.988861083984375, -16.19402885437006 ], [ -68.986701965331974, -16.192480087280217 ], [ -68.986579895019531, -16.192312240600529 ], [ -68.985366821289006, -16.190620422363224 ], [ -68.984580993652344, -16.189920425414982 ], [ -68.983222961425781, -16.189889907836914 ], [ -68.980766296386719, -16.19026947021473 ], [ -68.978096008300781, -16.188890457153207 ], [ -68.977645874023381, -16.189020156860352 ], [ -68.976142883300781, -16.190549850463867 ], [ -68.974822998046875, -16.191259384155217 ], [ -68.973449707031193, -16.190500259399357 ], [ -68.971847534179574, -16.190780639648438 ], [ -68.969902038574162, -16.190389633178654 ], [ -68.967536926269474, -16.190647125244084 ], [ -68.966506958007699, -16.190519332885742 ], [ -68.963821411132756, -16.191677093505803 ], [ -68.962615966796875, -16.191459655761719 ], [ -68.962013244628849, -16.192289352416935 ], [ -68.958557128906193, -16.195320129394474 ], [ -68.956947326660099, -16.196271896362305 ], [ -68.956359863281193, -16.197189331054688 ], [ -68.958236694335938, -16.20050048828125 ], [ -68.958786010742188, -16.200979232788029 ], [ -68.958641052246094, -16.201105117797852 ], [ -68.818862915039006, -16.321949005126896 ], [ -68.818817138671875, -16.335037231445199 ], [ -68.818832397460938, -16.345893859863224 ], [ -68.818840026855412, -16.351491928100472 ], [ -68.987098693847599, -16.441957473754826 ], [ -68.987831115722599, -16.442352294921875 ], [ -69.00264739990223, -16.450319290161133 ], [ -68.999549865722656, -16.452449798583984 ], [ -69.040138244628906, -16.556808471679688 ], [ -69.039115905761719, -16.557720184326058 ], [ -69.037971496582031, -16.559047698974553 ], [ -69.037536621093693, -16.559555053710938 ], [ -69.036010742187443, -16.561319351196289 ], [ -69.036972045898381, -16.56410980224598 ], [ -69.037620544433537, -16.565429687499943 ], [ -69.038391113281193, -16.567020416259766 ], [ -69.039306640625, -16.57267951965332 ], [ -69.038963317871037, -16.573860168457031 ], [ -69.037132263183594, -16.576808929443359 ], [ -69.036712646484375, -16.577981948852482 ], [ -69.035423278808537, -16.581590652465763 ], [ -69.035400390625, -16.581987380981388 ], [ -69.035232543945256, -16.584619522094727 ], [ -69.035659790039062, -16.586969375610352 ], [ -69.035697937011719, -16.589080810546818 ], [ -69.034667968749943, -16.592340469360352 ], [ -69.034446716308594, -16.593635559082031 ], [ -69.034286499023381, -16.594600677490178 ], [ -69.032997131347656, -16.599409103393498 ], [ -69.032516479492188, -16.602340698242131 ], [ -69.031547546386605, -16.605609893798828 ], [ -69.030418395996094, -16.607938766479492 ], [ -69.02880859375, -16.610221862792969 ], [ -69.022712707519531, -16.615219116210881 ], [ -69.021400451660099, -16.616922378540039 ], [ -69.02099609375, -16.618419647216797 ], [ -69.020820617675781, -16.620380401611214 ], [ -69.021041870117131, -16.625429153442383 ], [ -69.021186828613281, -16.628799438476562 ], [ -69.019966125488281, -16.630987167358342 ], [ -69.018356323242131, -16.635719299316349 ], [ -69.017295837402344, -16.637948989868107 ], [ -69.015083312988281, -16.640588760375977 ], [ -69.01247406005848, -16.64318656921381 ], [ -69.009971618652287, -16.645671844482422 ], [ -69.006072998046818, -16.648880004882756 ], [ -69.000251770019474, -16.653228759765625 ], [ -68.996353149413949, -16.656379699707031 ], [ -68.9964599609375, -16.656478881835938 ], [ -69.000236511230412, -16.659978866577092 ], [ -69.002227783203125, -16.661590576171875 ], [ -69.004783630371094, -16.65678596496582 ], [ -69.0057373046875, -16.654991149902287 ], [ -69.006034851074219, -16.655437469482365 ], [ -69.006340026855412, -16.65588188171381 ], [ -69.004753112792969, -16.65911674499506 ], [ -69.003173828125, -16.662349700927734 ], [ -69.001213073730412, -16.666341781616211 ], [ -69.003402709960881, -16.670194625854435 ], [ -69.01318359375, -16.675687789916992 ], [ -69.012084960937443, -16.677433013916016 ], [ -69.010986328125, -16.682924270629883 ], [ -69.022720336914062, -16.682647705078068 ], [ -69.033615112304631, -16.689493179321289 ], [ -69.040885925292912, -16.691547393798828 ], [ -69.04351806640625, -16.695407867431584 ], [ -69.046577453613224, -16.699857711791935 ], [ -69.046684265136662, -16.700017929077148 ], [ -69.056518554687443, -16.698600769042969 ], [ -69.060302734375, -16.697784423828068 ], [ -69.064865112304688, -16.698362350463867 ], [ -69.120948791503906, -16.725374221801758 ], [ -69.130699157714787, -16.723855972290039 ], [ -69.161178588867188, -16.730232238769474 ], [ -69.16680908203125, -16.73236083984375 ], [ -69.172653198242131, -16.736745834350529 ], [ -69.176155090332031, -16.742475509643498 ], [ -69.17889404296875, -16.749500274658146 ], [ -69.181320190429688, -16.763143539428711 ], [ -69.182044982910156, -16.770179748535099 ], [ -69.182182312011719, -16.772949218749943 ], [ -69.18270111083973, -16.776525497436467 ], [ -69.184402465820256, -16.792909622192326 ], [ -69.186035156249943, -16.798328399658146 ], [ -69.196510314941349, -16.806201934814453 ], [ -69.205833435058594, -16.815471649169865 ], [ -69.214492797851562, -16.833890914916992 ], [ -69.221954345703125, -16.842771530151367 ], [ -69.243179321289062, -16.859428405761662 ], [ -69.251998901367131, -16.868423461914006 ], [ -69.258590698242131, -16.875143051147404 ], [ -69.260185241699219, -16.876546859741154 ], [ -69.276138305664006, -16.89061164855957 ], [ -69.3143310546875, -16.937189102172852 ], [ -69.318336486816406, -16.945741653442383 ], [ -69.311614990234318, -16.955516815185547 ], [ -69.311164855956918, -16.961231231689453 ], [ -69.311836242675781, -16.962043762206974 ], [ -69.317024230957031, -16.968362808227539 ], [ -69.319915771484318, -16.971334457397461 ], [ -69.33038330078125, -16.982122421264592 ], [ -69.337173461914006, -16.985351562499886 ], [ -69.339973449707031, -16.985555648803654 ], [ -69.342575073242188, -16.985746383666935 ], [ -69.350456237792855, -16.986328125 ], [ -69.358451843261662, -16.986150741577092 ], [ -69.362197875976562, -16.989152908325195 ], [ -69.363693237304631, -16.990350723266545 ], [ -69.368354797363224, -16.997053146362305 ], [ -69.371192932128906, -16.999006271362248 ], [ -69.374031066894531, -17.000965118408146 ], [ -69.383026123046875, -17.015588760375977 ], [ -69.385665893554688, -17.017827987670898 ], [ -69.389083862304688, -17.020732879638558 ], [ -69.385131835937443, -17.027900695800781 ], [ -69.377937316894531, -17.030569076538029 ], [ -69.37469482421875, -17.034305572509766 ], [ -69.373115539550724, -17.038824081420898 ], [ -69.3719482421875, -17.042171478271428 ], [ -69.369499206542912, -17.046106338500977 ], [ -69.367050170898324, -17.050035476684513 ], [ -69.366661071777287, -17.050640106201115 ], [ -69.367073059082031, -17.052740097045898 ], [ -69.369422912597599, -17.064489364624023 ], [ -69.372138977050781, -17.07796669006342 ], [ -69.389266967773324, -17.089410781860295 ], [ -69.416809082031193, -17.109804153442383 ], [ -69.417503356933594, -17.110319137573185 ], [ -69.419929504394531, -17.111232757568246 ], [ -69.421897888183594, -17.109573364257812 ], [ -69.424873352050781, -17.107074737548828 ], [ -69.427093505859318, -17.105215072631836 ], [ -69.427307128906193, -17.105678558349553 ], [ -69.425811767578125, -17.107435226440373 ], [ -69.432327270507812, -17.109949111938363 ], [ -69.433006286621037, -17.109888076782227 ], [ -69.434082031249943, -17.109140396118164 ], [ -69.445587158203125, -17.100240707397461 ], [ -69.446449279785156, -17.10028076171875 ], [ -69.454193115234318, -17.103916168212891 ], [ -69.480484008789062, -17.126022338867188 ], [ -69.504821777343693, -17.145380020141602 ], [ -69.516410827636719, -17.150117874145508 ], [ -69.532562255859375, -17.15412521362299 ], [ -69.541763305663949, -17.158414840698242 ], [ -69.549011230468636, -17.16180419921875 ], [ -69.557792663574219, -17.170217514037972 ], [ -69.558509826660099, -17.17090988159174 ], [ -69.559684753417912, -17.176698684692326 ], [ -69.563209533691349, -17.194082260131836 ], [ -69.570106506347656, -17.205051422119084 ], [ -69.578849792480412, -17.211637496948242 ], [ -69.592521667480469, -17.211738586425724 ], [ -69.595642089843636, -17.214021682739258 ], [ -69.598114013671818, -17.215826034545898 ], [ -69.601257324218693, -17.221822738647461 ], [ -69.602073669433594, -17.223367691040039 ], [ -69.602615356445312, -17.225812911987248 ], [ -69.609069824218693, -17.255012512206974 ], [ -69.616416931152287, -17.264589309692383 ], [ -69.621650695800724, -17.268064498901254 ], [ -69.626350402831918, -17.272787094116211 ], [ -69.629707336425781, -17.274148941039982 ], [ -69.630912780761662, -17.274223327636719 ], [ -69.634132385253906, -17.276369094848633 ], [ -69.635482788085881, -17.278116226196289 ], [ -69.63885498046875, -17.28253173828125 ], [ -69.639022827148381, -17.282752990722656 ], [ -69.63885498046875, -17.283050537109318 ], [ -69.636726379394474, -17.286733627319279 ], [ -69.641357421875, -17.286851882934457 ], [ -69.642326354980469, -17.287391662597656 ], [ -69.644157409667912, -17.287517547607422 ], [ -69.645210266113224, -17.28722953796381 ], [ -69.646041870117188, -17.286470413207894 ], [ -69.64794921875, -17.283479690551701 ], [ -69.646827697753849, -17.282127380371037 ], [ -69.647186279296875, -17.280689239501896 ], [ -69.647628784179688, -17.280389785766602 ], [ -69.649040222167912, -17.280519485473633 ], [ -69.650238037109375, -17.27903938293457 ], [ -69.651199340820312, -17.278900146484375 ], [ -69.652091979980412, -17.278379440307617 ], [ -69.652191162109318, -17.277938842773324 ], [ -69.651702880859318, -17.27633094787592 ], [ -69.651702880859318, -17.275640487670898 ], [ -69.654541015625, -17.272680282592773 ], [ -69.654525756835938, -17.271469116210938 ], [ -69.655059814453011, -17.270709991455078 ], [ -69.655906677246037, -17.270738601684457 ], [ -69.6566162109375, -17.271150588989258 ], [ -69.657432556152287, -17.271228790283146 ], [ -69.658561706542912, -17.271150588989258 ], [ -69.65936279296875, -17.270809173583984 ], [ -69.660987854003906, -17.272418975830078 ], [ -69.661819458007756, -17.272298812866211 ], [ -69.663482666015625, -17.27372932434082 ], [ -69.665687561035156, -17.274620056152344 ], [ -69.667518615722599, -17.273708343505803 ], [ -69.668502807617074, -17.273799896240178 ], [ -69.669876098632812, -17.274450302123967 ], [ -69.671676635742188, -17.274080276489258 ], [ -69.674957275390568, -17.276140213012638 ], [ -69.676406860351506, -17.275680541992188 ], [ -69.677131652832031, -17.275730133056584 ], [ -69.67864990234375, -17.277469635009766 ], [ -69.679573059082031, -17.27808952331543 ], [ -69.680107116699162, -17.277969360351562 ], [ -69.680831909179688, -17.27681922912592 ], [ -69.681251525878849, -17.276779174804631 ], [ -69.682128906249943, -17.277460098266602 ], [ -69.682426452636605, -17.27820968627924 ], [ -69.68386077880848, -17.278779983520508 ], [ -69.684616088867131, -17.278240203857422 ], [ -69.685195922851449, -17.276599884033089 ], [ -69.687057495117188, -17.275588989257812 ], [ -69.688568115234375, -17.27749061584467 ], [ -69.689346313476562, -17.278131484985352 ], [ -69.689987182617188, -17.278360366821232 ], [ -69.691246032714844, -17.276639938354435 ], [ -69.691658020019474, -17.276760101318303 ], [ -69.6932373046875, -17.27492713928217 ], [ -69.693756103515568, -17.274768829345646 ], [ -69.694686889648438, -17.273759841918888 ], [ -69.695121765136719, -17.27367973327631 ], [ -69.697189331054631, -17.275480270385685 ], [ -69.699043273925781, -17.276449203491154 ], [ -69.700469970703125, -17.278099060058537 ], [ -69.701316833496094, -17.27820968627924 ], [ -69.702301025390625, -17.277669906616154 ], [ -69.703140258789062, -17.277549743652287 ], [ -69.704727172851506, -17.277591705322266 ], [ -69.705947875976506, -17.278369903564453 ], [ -69.708900451660156, -17.28130912780756 ], [ -69.7098388671875, -17.281610488891488 ], [ -69.710823059081974, -17.281499862670842 ], [ -69.711219787597599, -17.281848907470589 ], [ -69.711982727050724, -17.281780242919922 ], [ -69.712539672851506, -17.28273963928217 ], [ -69.71270751953125, -17.284250259399357 ], [ -69.71221923828125, -17.286439895629826 ], [ -69.713226318359318, -17.287750244140568 ], [ -69.713577270507756, -17.289039611816406 ], [ -69.716056823730412, -17.291219711303654 ], [ -69.717269897460938, -17.291580200195312 ], [ -69.718109130859375, -17.291439056396484 ], [ -69.719406127929631, -17.292400360107365 ], [ -69.720787048339844, -17.291738510131836 ], [ -69.721755981445312, -17.292469024658203 ], [ -69.724845886230412, -17.292339324951058 ], [ -69.724876403808594, -17.29351806640625 ], [ -69.725135803222599, -17.293840408325195 ], [ -69.726119995117188, -17.293737411499023 ], [ -69.727066040039062, -17.293167114257756 ], [ -69.727767944335938, -17.293100357055664 ], [ -69.729049682617131, -17.293930053710881 ], [ -69.729980468749943, -17.29419898986805 ], [ -69.731101989746094, -17.295190811157227 ], [ -69.731796264648381, -17.295080184936523 ], [ -69.732170104980469, -17.294670104980469 ], [ -69.731941223144531, -17.293079376220646 ], [ -69.732955932617131, -17.29180908203125 ], [ -69.733673095703125, -17.291889190673828 ], [ -69.734413146972656, -17.292530059814339 ], [ -69.735221862792969, -17.292619705200195 ], [ -69.737510681152344, -17.292699813842773 ], [ -69.739143371581974, -17.292430877685433 ], [ -69.741737365722599, -17.290809631347543 ], [ -69.745002746582031, -17.289569854736214 ], [ -69.746536254882812, -17.287809371948129 ], [ -69.74798583984375, -17.287332534789925 ], [ -69.748977661132756, -17.286378860473519 ], [ -69.749755859374886, -17.286079406738281 ], [ -69.751426696777344, -17.283449172973633 ], [ -69.752555847167969, -17.283601760864201 ], [ -69.753356933593693, -17.283039093017578 ], [ -69.754066467285156, -17.282949447631836 ], [ -69.754592895507756, -17.283098220825138 ], [ -69.755256652831974, -17.28368949890131 ], [ -69.755607604980469, -17.283670425414982 ], [ -69.757736206054631, -17.28257942199707 ], [ -69.758331298828068, -17.282009124755803 ], [ -69.760086059570312, -17.281539916992131 ], [ -69.761451721191349, -17.280618667602482 ], [ -69.764091491699219, -17.277820587158146 ], [ -69.764129638671818, -17.277290344238281 ], [ -69.765068054199219, -17.276130676269531 ], [ -69.765151977539062, -17.275178909301758 ], [ -69.765869140624943, -17.274360656738281 ], [ -69.76611328125, -17.27372932434082 ], [ -69.766555786132812, -17.271890640258789 ], [ -69.766548156738281, -17.268508911132812 ], [ -69.765953063964787, -17.267450332641602 ], [ -69.766052246093693, -17.265968322753906 ], [ -69.765167236328125, -17.265110015869141 ], [ -69.765151977539062, -17.264169692993164 ], [ -69.766410827636662, -17.262739181518555 ], [ -69.766670227050781, -17.261569976806641 ], [ -69.768447875976449, -17.259841918945312 ], [ -69.76953125, -17.257219314575195 ], [ -69.770378112792969, -17.256498336791935 ], [ -69.772109985351562, -17.255611419677678 ], [ -69.774009704589844, -17.253629684448185 ], [ -69.775115966796818, -17.252077102661133 ], [ -69.776069641113224, -17.249410629272461 ], [ -69.778396606445312, -17.246719360351506 ], [ -69.77999114990223, -17.245399475097599 ], [ -69.782127380371094, -17.24440956115717 ], [ -69.783332824707031, -17.243268966674691 ], [ -69.784446716308537, -17.241409301757699 ], [ -69.784492492675781, -17.239240646362248 ], [ -69.785308837890568, -17.238170623779183 ], [ -69.786529541015625, -17.237209320068303 ], [ -69.787345886230469, -17.237140655517578 ], [ -69.789016723632756, -17.235700607299748 ], [ -69.789993286132756, -17.235809326171875 ], [ -69.790657043456974, -17.234970092773438 ], [ -69.791786193847599, -17.234867095947266 ], [ -69.792991638183594, -17.234481811523438 ], [ -69.794227600097656, -17.233409881591797 ], [ -69.795036315917912, -17.23324012756342 ], [ -69.795783996581974, -17.232732772827148 ], [ -69.796340942382812, -17.232324600219727 ], [ -69.797592163085938, -17.232212066650391 ], [ -69.798629760742188, -17.231666564941349 ], [ -69.798912048339844, -17.231517791748047 ], [ -69.799751281738281, -17.23206901550293 ], [ -69.800216674804688, -17.232006072998047 ], [ -69.801246643066349, -17.231866836547852 ], [ -69.802139282226562, -17.233484268188477 ], [ -69.802947998046818, -17.233804702758732 ], [ -69.804740905761719, -17.233901977539062 ], [ -69.808807373046875, -17.233535766601562 ], [ -69.809326171874943, -17.233488082885742 ], [ -69.810119628906193, -17.233610153198185 ], [ -69.812141418457031, -17.234880447387582 ], [ -69.812683105468693, -17.236242294311523 ], [ -69.813850402832031, -17.237430572509766 ], [ -69.814590454101506, -17.237701416015625 ], [ -69.8157958984375, -17.238143920898381 ], [ -69.817634582519474, -17.238460540771484 ], [ -69.818374633789062, -17.238588333129826 ], [ -69.818824768066406, -17.239131927490234 ], [ -69.819061279296818, -17.240024566650391 ], [ -69.819099426269531, -17.240182876586857 ], [ -69.819656372070256, -17.241008758544865 ], [ -69.820114135742131, -17.240804672241211 ], [ -69.82086181640625, -17.240467071533203 ], [ -69.821617126464844, -17.240684509277344 ], [ -69.822586059570256, -17.240959167480469 ], [ -69.824264526367188, -17.240615844726506 ], [ -69.825950622558537, -17.240270614624023 ], [ -69.827400207519531, -17.240257263183537 ], [ -69.827789306640625, -17.240568161010685 ], [ -69.829055786132812, -17.241569519042912 ], [ -69.830314636230412, -17.241994857788029 ], [ -69.830780029296875, -17.242151260375977 ], [ -69.831596374511719, -17.243415832519418 ], [ -69.831756591796818, -17.243522644042969 ], [ -69.832283020019531, -17.243871688842773 ], [ -69.833030700683594, -17.243816375732422 ], [ -69.833686828613281, -17.243770599365178 ], [ -69.834213256835938, -17.243274688720703 ], [ -69.834579467773438, -17.242929458618164 ], [ -69.836700439453068, -17.242189407348576 ], [ -69.837516784667969, -17.242099761962891 ], [ -69.839202880859318, -17.242330551147461 ], [ -69.840888977050781, -17.242050170898381 ], [ -69.841461181640625, -17.242221832275391 ], [ -69.842308044433594, -17.242469787597656 ], [ -69.845100402831974, -17.243907928466797 ], [ -69.846275329589844, -17.243904113769531 ], [ -69.848052978515568, -17.243900299072266 ], [ -69.849052429199219, -17.243429183959904 ], [ -69.849563598632812, -17.243581771850586 ], [ -69.850120544433594, -17.24374961853016 ], [ -69.850608825683594, -17.243728637695312 ], [ -69.850837707519474, -17.243717193603516 ], [ -69.8529052734375, -17.241731643676701 ], [ -69.853538513183594, -17.240230560302678 ], [ -69.854393005371094, -17.239147186279297 ], [ -69.854370117187443, -17.238737106323242 ], [ -69.854484558105469, -17.238670349121094 ], [ -69.855537414550781, -17.238037109374943 ], [ -69.855667114257812, -17.237089157104492 ], [ -69.855697631835881, -17.236839294433594 ], [ -69.856597900390625, -17.235988616943359 ], [ -69.857086181640625, -17.234590530395394 ], [ -69.857162475585938, -17.234523773193303 ], [ -69.858016967773438, -17.233787536621094 ], [ -69.858512878417969, -17.232948303222656 ], [ -69.860443115234318, -17.232809066772461 ], [ -69.862091064453068, -17.231599807739201 ], [ -69.862937927246037, -17.231758117675724 ], [ -69.863250732421875, -17.232210159301644 ], [ -69.863410949706974, -17.232439041137695 ], [ -69.863655090332031, -17.232448577880746 ], [ -69.864402770996094, -17.232479095458984 ], [ -69.866592407226562, -17.231300354003793 ], [ -69.867279052734375, -17.231342315673828 ], [ -69.867988586425724, -17.231386184692383 ], [ -69.868827819824219, -17.231218338012638 ], [ -69.869148254394474, -17.230775833129769 ], [ -69.869606018066349, -17.230129241943303 ], [ -69.869895935058537, -17.23005294799799 ], [ -69.870429992675781, -17.229911804199219 ], [ -69.870857238769474, -17.229560852050724 ], [ -69.871498107910156, -17.228378295898438 ], [ -69.872337341308594, -17.225519180297795 ], [ -69.872589111328011, -17.225252151489258 ], [ -69.873275756835938, -17.224508285522461 ], [ -69.873207092285156, -17.223781585693359 ], [ -69.873146057128849, -17.223169326782227 ], [ -69.873489379882812, -17.222768783569222 ], [ -69.874061584472656, -17.222768783569222 ], [ -69.875068664550668, -17.22205924987793 ], [ -69.876167297363281, -17.22184944152832 ], [ -69.876861572265568, -17.221420288085938 ], [ -69.877258300781193, -17.221509933471623 ], [ -69.877479553222656, -17.221826553344727 ], [ -69.877639770507756, -17.22205924987793 ], [ -69.878448486328125, -17.221988677978516 ], [ -69.879470825195312, -17.221900939941406 ], [ -69.880805969238281, -17.222600936889648 ], [ -69.881683349609375, -17.222528457641602 ], [ -69.882202148437443, -17.22248649597168 ], [ -69.883537292480412, -17.222709655761662 ], [ -69.886093139648438, -17.221307754516545 ], [ -69.886642456054688, -17.221469879150334 ], [ -69.887306213378906, -17.221660614013615 ], [ -69.888130187988224, -17.221509933471623 ], [ -69.888557434082031, -17.221158981323242 ], [ -69.888679504394474, -17.220380783080941 ], [ -69.889282226562386, -17.220516204833928 ], [ -69.890449523925781, -17.220779418945256 ], [ -69.892311096191349, -17.220338821411133 ], [ -69.893074035644474, -17.220495223999023 ], [ -69.894897460937443, -17.220869064331055 ], [ -69.895675659179688, -17.220813751220589 ], [ -69.8958740234375, -17.220798492431584 ], [ -69.896873474121037, -17.220329284667912 ], [ -69.898696899414006, -17.220449447631779 ], [ -69.898994445800724, -17.22010612487793 ], [ -69.899330139160156, -17.219718933105469 ], [ -69.900177001953125, -17.219289779663086 ], [ -69.900337219238224, -17.219209671020451 ], [ -69.90020751953125, -17.218290328979492 ], [ -69.901473999023381, -17.217189788818246 ], [ -69.901885986328125, -17.216829299926701 ], [ -69.902496337890625, -17.216560363769531 ], [ -69.903793334960938, -17.216520309448242 ], [ -69.904731750488168, -17.215940475463867 ], [ -69.907066345214844, -17.215738296508789 ], [ -69.908142089843693, -17.214839935302734 ], [ -69.909912109375, -17.212520599365234 ], [ -69.910881042480469, -17.211610794067269 ], [ -69.913093566894474, -17.210969924926758 ], [ -69.913841247558594, -17.210750579833984 ], [ -69.915458679199219, -17.20968055725092 ], [ -69.915679931640568, -17.209724426269474 ], [ -69.915992736816406, -17.209785461425781 ], [ -69.917190551757756, -17.209377288818359 ], [ -69.918495178222656, -17.208160400390625 ], [ -69.921020507812443, -17.205810546874943 ], [ -69.922988891601562, -17.203241348266602 ], [ -69.923469543457031, -17.203111648559513 ], [ -69.9239501953125, -17.202978134155273 ], [ -69.925186157226562, -17.203208923339844 ], [ -69.925544738769531, -17.202896118164062 ], [ -69.92633056640625, -17.202209472656193 ], [ -69.92669677734375, -17.202058792114201 ], [ -69.927490234374943, -17.201728820800724 ], [ -69.930450439453068, -17.201559066772404 ], [ -69.930953979492074, -17.201171875 ], [ -69.931045532226506, -17.201099395751953 ], [ -69.933357238769531, -17.200277328491211 ], [ -69.935317993164006, -17.20038986206049 ], [ -69.936927795410099, -17.199918746948242 ], [ -69.938323974609375, -17.199918746948242 ], [ -69.939125061035099, -17.199367523193359 ], [ -69.939422607421818, -17.198474884033146 ], [ -69.939910888671818, -17.19797325134266 ], [ -69.94244384765625, -17.197967529296875 ], [ -69.942794799804688, -17.197515487670898 ], [ -69.943473815917969, -17.195350646972543 ], [ -69.944877624511605, -17.194459915161133 ], [ -69.945075988769531, -17.193805694580021 ], [ -69.946235656738281, -17.192384719848633 ], [ -69.947242736816349, -17.191570281982422 ], [ -69.94793701171875, -17.19183158874506 ], [ -69.949378967285156, -17.191013336181641 ], [ -69.951538085937443, -17.190464019775334 ], [ -69.953140258789006, -17.188943862915039 ], [ -69.954940795898438, -17.188196182250977 ], [ -69.957817077636662, -17.186214447021484 ], [ -69.958244323730469, -17.185443878173828 ], [ -69.958396911621037, -17.183237075805664 ], [ -69.960029602050724, -17.181934356689453 ], [ -69.960975646972599, -17.181392669677678 ], [ -69.961830139160099, -17.181421279907227 ], [ -69.962608337402287, -17.18065071105957 ], [ -69.963973999023438, -17.180379867553711 ], [ -69.964866638183594, -17.179534912109375 ], [ -69.967903137207031, -17.178258895874023 ], [ -69.967872619628906, -17.176645278930664 ], [ -69.968841552734375, -17.175363540649357 ], [ -69.968467712402344, -17.174047470092773 ], [ -69.969779968261719, -17.172657012939453 ], [ -69.970474243164062, -17.170467376708984 ], [ -69.970390319824219, -17.168392181396484 ], [ -69.970993041992131, -17.167200088500977 ], [ -69.972328186035099, -17.165773391723633 ], [ -69.973571777343693, -17.165561676025334 ], [ -69.979743957519531, -17.168722152709961 ], [ -69.98077392578125, -17.168830871581974 ], [ -69.981513977050781, -17.168506622314453 ], [ -69.982276916503906, -17.167337417602482 ], [ -69.982376098632812, -17.166131973266602 ], [ -69.982673645019531, -17.165372848510742 ], [ -69.985458374023438, -17.161008834838867 ], [ -69.985435485839844, -17.159791946411076 ], [ -69.985786437988224, -17.158468246459904 ], [ -69.98724365234375, -17.15704154968256 ], [ -69.987190246581974, -17.156366348266545 ], [ -69.986602783203125, -17.15560340881342 ], [ -69.986831665039006, -17.154680252075195 ], [ -69.986701965332031, -17.153470993041992 ], [ -69.987548828125, -17.150905609130746 ], [ -69.988006591796875, -17.15062141418457 ], [ -69.988853454589844, -17.150634765625 ], [ -69.989456176757812, -17.150287628173828 ], [ -69.991806030273438, -17.150472640991154 ], [ -69.992729187011662, -17.149593353271484 ], [ -69.9935302734375, -17.149658203124943 ], [ -69.994308471679688, -17.148525238036996 ], [ -69.995689392089787, -17.147863388061523 ], [ -69.997230529785099, -17.147689819335938 ], [ -69.997993469238224, -17.148246765136719 ], [ -69.998786926269531, -17.148084640502873 ], [ -70.001838684082031, -17.146701812744084 ], [ -70.004646301269474, -17.145095825195312 ], [ -70.006919860839844, -17.144401550292912 ], [ -70.009590148925781, -17.142036437988168 ], [ -70.014572143554631, -17.138809204101562 ], [ -70.016204833984318, -17.136911392211857 ], [ -70.017402648925781, -17.133121490478516 ], [ -70.020385742187443, -17.12989616394043 ], [ -70.021308898925781, -17.128324508666935 ], [ -70.021575927734375, -17.126617431640625 ], [ -70.022476196289006, -17.12428092956543 ], [ -70.023231506347656, -17.123361587524357 ], [ -70.024894714355355, -17.121952056884766 ], [ -70.025688171386719, -17.121824264526367 ], [ -70.026702880859261, -17.122465133666992 ], [ -70.026824951171875, -17.123367309570312 ], [ -70.027763366699219, -17.124031066894531 ], [ -70.029319763183594, -17.12360954284668 ], [ -70.029846191406193, -17.12253379821766 ], [ -70.031135559082031, -17.12312126159668 ], [ -70.032257080078125, -17.123331069946289 ], [ -70.032791137695256, -17.123714447021428 ], [ -70.032966613769474, -17.124620437622013 ], [ -70.033866882324219, -17.124856948852539 ], [ -70.034751892089844, -17.12594032287592 ], [ -70.035385131835824, -17.126102447509709 ], [ -70.036460876464844, -17.127138137817383 ], [ -70.040267944335938, -17.12761116027832 ], [ -70.040802001953068, -17.127559661865234 ], [ -70.041000366210881, -17.127340316772461 ], [ -70.041397094726562, -17.126691818237305 ], [ -70.041618347167969, -17.125516891479492 ], [ -70.042091369628906, -17.124942779540959 ], [ -70.042411804199162, -17.124067306518555 ], [ -70.042449951171875, -17.122419357299748 ], [ -70.04217529296875, -17.121259689330998 ], [ -70.042320251464787, -17.120063781738281 ], [ -70.042892456054631, -17.119104385375863 ], [ -70.043632507324219, -17.116636276245117 ], [ -70.044448852539062, -17.115619659423714 ], [ -70.044647216796875, -17.113885879516602 ], [ -70.045745849609318, -17.112867355346623 ], [ -70.046470642089844, -17.111577987670898 ], [ -70.046470642089844, -17.111200332641602 ], [ -70.046005249023438, -17.110620498657227 ], [ -70.045921325683594, -17.110168457031193 ], [ -70.046562194824219, -17.108541488647461 ], [ -70.046447753906136, -17.106792449951172 ], [ -70.046920776367074, -17.105209350585881 ], [ -70.047004699706974, -17.102085113525391 ], [ -70.04754638671875, -17.099945068359318 ], [ -70.047012329101506, -17.098192214965763 ], [ -70.0467529296875, -17.093130111694279 ], [ -70.045448303222656, -17.091449737548828 ], [ -70.045326232910156, -17.088680267333984 ], [ -70.044532775878849, -17.087543487548828 ], [ -70.044380187988281, -17.084880828857365 ], [ -70.04388427734375, -17.083292007446289 ], [ -70.043891906738281, -17.0826416015625 ], [ -70.043273925781193, -17.081195831298714 ], [ -70.043075561523381, -17.079183578491211 ], [ -70.042289733886719, -17.077838897705021 ], [ -70.042335510253849, -17.0765380859375 ], [ -70.042678833007812, -17.075881958007812 ], [ -70.042938232421875, -17.071102142333984 ], [ -70.044174194335938, -17.068521499633732 ], [ -70.044303894042969, -17.065126419067269 ], [ -70.044708251953068, -17.063253402709961 ], [ -70.044670104980469, -17.061874389648438 ], [ -70.044174194335938, -17.060131072998047 ], [ -70.043769836425724, -17.059516906738224 ], [ -70.042999267578068, -17.05911827087391 ], [ -70.042915344238168, -17.058649063110352 ], [ -70.045188903808537, -17.057001113891545 ], [ -70.047683715820199, -17.056045532226562 ], [ -70.049118041992074, -17.054241180419922 ], [ -70.050727844238224, -17.053939819335938 ], [ -70.052551269531136, -17.051702499389648 ], [ -70.056724548339787, -17.048948287963867 ], [ -70.057296752929631, -17.047683715820256 ], [ -70.059112548828068, -17.046337127685547 ], [ -70.060363769531193, -17.044784545898438 ], [ -70.061698913574162, -17.044321060180607 ], [ -70.062309265136719, -17.043882369995117 ], [ -70.063163757324219, -17.04255485534668 ], [ -70.063316345214787, -17.041555404663029 ], [ -70.063766479492131, -17.04075813293457 ], [ -70.065071105957031, -17.038932800292912 ], [ -70.066558837890568, -17.037490844726506 ], [ -70.066940307617131, -17.037231445312386 ], [ -70.067955017089844, -17.037101745605412 ], [ -70.069404602050724, -17.035640716552734 ], [ -70.073631286621094, -17.035356521606388 ], [ -70.075141906738224, -17.033914566039982 ], [ -70.07659912109375, -17.032096862792969 ], [ -70.077735900878906, -17.029661178588867 ], [ -70.079849243164062, -17.026947021484375 ], [ -70.081436157226506, -17.023902893066406 ], [ -70.082427978515625, -17.022449493408089 ], [ -70.085426330566349, -17.019485473632756 ], [ -70.08754730224598, -17.018535614013558 ], [ -70.089424133300724, -17.0169677734375 ], [ -70.090469360351506, -17.015775680541992 ], [ -70.091743469238168, -17.013517379760685 ], [ -70.093185424804688, -17.012174606323185 ], [ -70.094268798828125, -17.010776519775334 ], [ -70.098617553710938, -17.006916046142578 ], [ -70.099327087402344, -17.005943298339787 ], [ -70.099929809570256, -17.003938674926758 ], [ -70.098304748535099, -17.000877380371037 ], [ -70.097450256347599, -16.998678207397461 ], [ -70.097587585449219, -16.997772216796875 ], [ -70.098762512207031, -16.996213912963867 ], [ -70.099647521972599, -16.994478225708008 ], [ -70.099906921386719, -16.99342155456543 ], [ -70.099899291992188, -16.991754531860295 ], [ -70.099586486816406, -16.990598678588867 ], [ -70.098289489746037, -16.988885879516602 ], [ -70.098182678222656, -16.988431930541935 ], [ -70.097038269042969, -16.987781524658203 ], [ -70.096328735351562, -16.986909866332951 ], [ -70.096130371093636, -16.985794067382756 ], [ -70.096282958984375, -16.985088348388672 ], [ -70.097694396972656, -16.983760833740234 ], [ -70.100044250488168, -16.982330322265625 ], [ -70.102546691894531, -16.980354309081974 ], [ -70.104934692382812, -16.979259490966797 ], [ -70.106513977050724, -16.977195739746094 ], [ -70.113433837890625, -16.975172042846623 ], [ -70.115303039550668, -16.97425460815424 ], [ -70.117858886718693, -16.972503662109375 ], [ -70.119125366210938, -16.970558166503849 ], [ -70.119903564453125, -16.968593597412109 ], [ -70.119834899902344, -16.962890625 ], [ -70.120140075683537, -16.960617065429631 ], [ -70.121284484863224, -16.959381103515568 ], [ -70.123664855956974, -16.957880020141602 ], [ -70.125267028808594, -16.956304550170842 ], [ -70.128540039062443, -16.950302124023438 ], [ -70.134147644042912, -16.945396423339844 ], [ -70.137413024902287, -16.94368934631342 ], [ -70.139717102050668, -16.943178176879883 ], [ -70.143409729003849, -16.943851470947209 ], [ -70.145118713378849, -16.943721771240234 ], [ -70.146430969238281, -16.942310333251896 ], [ -70.147300720214844, -16.94099044799799 ], [ -70.147666931152344, -16.939655303955021 ], [ -70.147613525390568, -16.938644409179688 ], [ -70.139945983886719, -16.936540603637638 ], [ -70.139381408691406, -16.936203002929631 ], [ -70.137512207031193, -16.935861587524414 ], [ -70.135108947753849, -16.934938430786076 ], [ -70.129119873046818, -16.930496215820256 ], [ -70.124893188476562, -16.927980422973576 ], [ -70.123649597167969, -16.926742553710938 ], [ -70.120590209960938, -16.925039291381836 ], [ -70.119094848632756, -16.923904418945256 ], [ -70.116966247558594, -16.921537399291992 ], [ -70.114608764648381, -16.917848587036076 ], [ -70.113471984863224, -16.913944244384766 ], [ -70.111656188964787, -16.909738540649357 ], [ -70.110183715820312, -16.904151916503906 ], [ -70.109298706054688, -16.902202606201172 ], [ -70.109176635742131, -16.901481628417969 ], [ -70.107360839843693, -16.898561477661133 ], [ -70.105804443359375, -16.897060394287109 ], [ -70.102142333984261, -16.894794464111328 ], [ -70.100891113281193, -16.894348144531193 ], [ -70.098976135253849, -16.893213272094727 ], [ -70.097679138183594, -16.892923355102539 ], [ -70.09670257568348, -16.892168045043945 ], [ -70.096076965332031, -16.89126014709467 ], [ -70.095367431640511, -16.886232376098633 ], [ -70.095016479492188, -16.885278701782227 ], [ -70.095268249511662, -16.884105682373047 ], [ -70.095291137695312, -16.881526947021484 ], [ -70.095527648925724, -16.880929946899414 ], [ -70.095542907714787, -16.876693725585881 ], [ -70.095069885253849, -16.875583648681527 ], [ -70.093299865722656, -16.873773574829102 ], [ -70.092414855956918, -16.871139526367188 ], [ -70.092597961425724, -16.86756706237793 ], [ -70.094100952148381, -16.863906860351562 ], [ -70.092102050781193, -16.859920501708928 ], [ -70.091789245605469, -16.858400344848633 ], [ -70.092079162597656, -16.853612899780273 ], [ -70.091659545898438, -16.852449417114201 ], [ -70.091560363769531, -16.851346969604492 ], [ -70.092292785644474, -16.848426818847656 ], [ -70.091667175292969, -16.846790313720703 ], [ -70.092056274414062, -16.842573165893555 ], [ -70.091148376464787, -16.838521957397404 ], [ -70.091018676757812, -16.832887649536076 ], [ -70.09112548828125, -16.831710815429574 ], [ -70.091804504394474, -16.83028411865223 ], [ -70.091880798339844, -16.829187393188363 ], [ -70.091705322265625, -16.827623367309513 ], [ -70.090873718261662, -16.825168609619141 ], [ -70.090736389160156, -16.823894500732308 ], [ -70.090888977050668, -16.821491241455021 ], [ -70.09212493896473, -16.818117141723576 ], [ -70.09234619140625, -16.81610107421875 ], [ -70.09149169921875, -16.812540054321289 ], [ -70.0904541015625, -16.811588287353402 ], [ -70.089271545410156, -16.811235427856388 ], [ -70.087135314941349, -16.810058593749943 ], [ -70.083839416503906, -16.80706787109375 ], [ -70.083267211914062, -16.805692672729435 ], [ -70.083297729492188, -16.804323196411133 ], [ -70.083724975585881, -16.802831649780217 ], [ -70.0833740234375, -16.801784515380859 ], [ -70.082405090332031, -16.801380157470646 ], [ -70.080795288085938, -16.801290512084961 ], [ -70.079414367675724, -16.800914764404297 ], [ -70.075981140136662, -16.798471450805607 ], [ -70.073799133300724, -16.798284530639535 ], [ -70.071708679199162, -16.798368453979435 ], [ -70.070327758789062, -16.798013687133789 ], [ -70.068984985351562, -16.796699523925724 ], [ -70.0655517578125, -16.795101165771484 ], [ -70.064056396484318, -16.793687820434513 ], [ -70.062232971191406, -16.792472839355469 ], [ -70.059211730956974, -16.788669586181584 ], [ -70.058021545410156, -16.787612915039062 ], [ -70.057533264160156, -16.786321640014648 ], [ -70.057182312011719, -16.78248405456543 ], [ -70.056427001953068, -16.78162765502924 ], [ -70.05464935302723, -16.780603408813477 ], [ -70.054061889648381, -16.779668807983342 ], [ -70.054328918456974, -16.776910781860295 ], [ -70.054809570312443, -16.774948120117131 ], [ -70.05584716796875, -16.772663116455021 ], [ -70.057144165039062, -16.770858764648381 ], [ -70.056632995605412, -16.76928520202631 ], [ -70.053436279296875, -16.765867233276367 ], [ -70.051551818847656, -16.764326095580998 ], [ -70.047958374023381, -16.76308631896967 ], [ -70.044380187988281, -16.762620925903207 ], [ -70.043510437011719, -16.762239456176644 ], [ -70.042182922363281, -16.760784149169922 ], [ -70.041198730468636, -16.757804870605355 ], [ -70.040359497070312, -16.756658554077148 ], [ -70.037124633789062, -16.755903244018555 ], [ -70.035263061523381, -16.754093170166016 ], [ -70.031814575195312, -16.753036499023324 ], [ -70.031486511230469, -16.752740859985352 ], [ -70.031425476074219, -16.752197265625 ], [ -70.032188415527344, -16.74971961975092 ], [ -70.036247253417969, -16.745510101318359 ], [ -70.036399841308537, -16.744514465331974 ], [ -70.035766601562386, -16.742984771728459 ], [ -70.034294128417969, -16.742336273193303 ], [ -70.031158447265568, -16.742088317871094 ], [ -70.027999877929688, -16.740581512451172 ], [ -70.025894165039062, -16.740106582641545 ], [ -70.020759582519474, -16.74040412902832 ], [ -70.017837524413949, -16.741716384887638 ], [ -70.013465881347656, -16.741670608520508 ], [ -70.010276794433537, -16.741115570068246 ], [ -70.008651733398381, -16.740148544311523 ], [ -70.006271362304631, -16.738315582275334 ], [ -70.002563476562443, -16.734476089477482 ], [ -69.999801635742131, -16.731121063232422 ], [ -69.999076843261719, -16.730680465698242 ], [ -69.997947692871094, -16.730627059936523 ], [ -69.996253967285099, -16.730052947997933 ], [ -69.99505615234375, -16.728879928588867 ], [ -69.994956970214844, -16.728256225585938 ], [ -69.995376586914062, -16.726634979248047 ], [ -69.995162963867188, -16.721015930175781 ], [ -69.995529174804688, -16.719394683837891 ], [ -69.995513916015568, -16.714399337768555 ], [ -69.995811462402344, -16.711822509765568 ], [ -69.996261596679631, -16.710355758666879 ], [ -69.998176574706974, -16.707698822021428 ], [ -70.000205993652344, -16.705883026123047 ], [ -70.0010986328125, -16.704696655273438 ], [ -70.002754211425724, -16.704708099365234 ], [ -70.003471374511719, -16.704412460327092 ], [ -70.005912780761605, -16.701982498168945 ], [ -70.006637573242188, -16.701749801635685 ], [ -70.008537292480469, -16.701759338378906 ], [ -70.01043701171875, -16.700380325317383 ], [ -70.010658264160099, -16.69969367980957 ], [ -70.010574340820256, -16.696746826171818 ], [ -70.011322021484318, -16.693140029907227 ], [ -70.011917114257756, -16.692001342773324 ], [ -70.012176513671818, -16.690448760986271 ], [ -70.012298583984318, -16.68824577331543 ], [ -70.011711120605412, -16.686788558959904 ], [ -70.010299682617074, -16.686023712158203 ], [ -70.008827209472656, -16.684709548950195 ], [ -70.007720947265568, -16.684169769287053 ], [ -70.002677917480469, -16.678829193115178 ], [ -69.998947143554631, -16.674308776855469 ], [ -69.998878479003906, -16.672927856445199 ], [ -70.000053405761719, -16.668754577636719 ], [ -70.000167846679631, -16.664703369140568 ], [ -70.000991821289062, -16.661386489868164 ], [ -70.001113891601506, -16.659543991088867 ], [ -70.001701354980412, -16.658199310302734 ], [ -70.00209808349598, -16.655376434326058 ], [ -70.0040283203125, -16.653362274169865 ], [ -70.004730224609375, -16.650964736938477 ], [ -70.005172729492188, -16.650180816650391 ], [ -70.006294250488168, -16.64929008483881 ], [ -70.008949279785099, -16.648057937622013 ], [ -70.010726928710938, -16.646667480468693 ], [ -70.011604309081974, -16.645145416259709 ], [ -70.012702941894531, -16.642019271850586 ], [ -70.013641357421761, -16.640735626220703 ], [ -70.014518737792969, -16.640037536621094 ], [ -70.017868041992188, -16.638719558715763 ], [ -70.021286010742188, -16.636089324951115 ], [ -70.022567749023381, -16.634723663330078 ], [ -70.023330688476506, -16.633371353149357 ], [ -70.024108886718693, -16.631208419799805 ], [ -70.027275085449105, -16.632511138916016 ], [ -70.028587341308537, -16.633274078369141 ], [ -70.030380249023438, -16.634315490722656 ], [ -70.031692504882812, -16.634527206420842 ], [ -70.032310485839787, -16.634506225585938 ], [ -70.033599853515625, -16.63447189331049 ], [ -70.035713195800781, -16.633899688720646 ], [ -70.037246704101562, -16.632678985595589 ], [ -70.038009643554688, -16.631729125976449 ], [ -70.040420532226506, -16.630437850952035 ], [ -70.04091644287098, -16.630168914794865 ], [ -70.043228149414062, -16.629589080810547 ], [ -70.047172546386662, -16.628110885620117 ], [ -70.048851013183594, -16.627779006958008 ], [ -70.05007171630848, -16.627920150756836 ], [ -70.05092620849598, -16.628639221191349 ], [ -70.0528564453125, -16.631124496459961 ], [ -70.054084777832031, -16.633216857910099 ], [ -70.054222106933594, -16.633453369140625 ], [ -70.054534912109318, -16.634160995483285 ], [ -70.055915832519531, -16.637262344360352 ], [ -70.056961059570312, -16.638225555419922 ], [ -70.057853698730412, -16.639047622680664 ], [ -70.058303833007812, -16.639131546020508 ], [ -70.059051513671875, -16.63926887512207 ], [ -70.060348510742131, -16.639030456542969 ], [ -70.063873291015568, -16.639078140258789 ], [ -70.066192626953125, -16.638832092285156 ], [ -70.067466735839844, -16.638698577880859 ], [ -70.067733764648438, -16.638740539550781 ], [ -70.068962097167969, -16.638933181762695 ], [ -70.071388244628906, -16.639793395996094 ], [ -70.071983337402287, -16.64021110534668 ], [ -70.072463989257756, -16.640548706054688 ], [ -70.073249816894531, -16.640880584716683 ], [ -70.074729919433594, -16.641504287719613 ], [ -70.076438903808594, -16.642824172973576 ], [ -70.08013916015625, -16.644750595092773 ], [ -70.081672668457031, -16.646003723144474 ], [ -70.083206176757812, -16.647994995117188 ], [ -70.083831787109261, -16.649999618530273 ], [ -70.084281921386662, -16.651437759399414 ], [ -70.085365295410156, -16.652746200561467 ], [ -70.0859375, -16.653440475463867 ], [ -70.086875915527287, -16.653970718383732 ], [ -70.087265014648324, -16.654190063476562 ], [ -70.088088989257756, -16.654409408569336 ], [ -70.091217041015625, -16.65431022644043 ], [ -70.097183227538949, -16.652477264404297 ], [ -70.098106384277287, -16.651782989501953 ], [ -70.098457336425781, -16.651519775390625 ], [ -70.099266052246037, -16.650169372558594 ], [ -70.100196838378849, -16.649356842040959 ], [ -70.101028442382812, -16.648630142211857 ], [ -70.101898193359375, -16.648244857788029 ], [ -70.102760314941406, -16.647859573364201 ], [ -70.103919982910099, -16.647520065307617 ], [ -70.105133056640625, -16.64716911315918 ], [ -70.106117248535099, -16.646572113037053 ], [ -70.107215881347656, -16.645910263061523 ], [ -70.107933044433537, -16.645397186279297 ], [ -70.108322143554631, -16.645120620727482 ], [ -70.110321044921818, -16.642559051513672 ], [ -70.112129211425724, -16.641534805297852 ], [ -70.113845825195256, -16.640560150146428 ], [ -70.115547180175781, -16.638967514038086 ], [ -70.116096496582031, -16.638450622558594 ], [ -70.117408752441406, -16.637939453125 ], [ -70.11865234375, -16.637943267822266 ], [ -70.119400024413949, -16.637948989868107 ], [ -70.12111663818348, -16.637502670288086 ], [ -70.122245788574162, -16.637208938598519 ], [ -70.123649597167969, -16.636421203613281 ], [ -70.127319335937386, -16.634359359741211 ], [ -70.129287719726506, -16.633623123168945 ], [ -70.129776000976506, -16.633441925048714 ], [ -70.132247924804631, -16.632059097289925 ], [ -70.133628845214844, -16.630922317504883 ], [ -70.135353088378906, -16.629499435424805 ], [ -70.135894775390568, -16.62922477722168 ], [ -70.136695861816406, -16.628818511962891 ], [ -70.139312744140568, -16.626546859741211 ], [ -70.142990112304688, -16.624227523803654 ], [ -70.143547058105469, -16.623300552368164 ], [ -70.144088745117131, -16.621156692504826 ], [ -70.144157409667969, -16.620870590209904 ], [ -70.144966125488281, -16.619691848754883 ], [ -70.148826599121094, -16.616279602050668 ], [ -70.150299072265511, -16.615270614623967 ], [ -70.151176452636719, -16.615110397338867 ], [ -70.151878356933594, -16.614980697631779 ], [ -70.153366088867188, -16.615369796752816 ], [ -70.156097412109318, -16.616090774536133 ], [ -70.15765380859375, -16.616067886352539 ], [ -70.159431457519474, -16.616039276123047 ], [ -70.162139892578125, -16.61504936218256 ], [ -70.165916442871037, -16.612949371337891 ], [ -70.166946411132812, -16.612091064453125 ], [ -70.168647766113281, -16.610670089721623 ], [ -70.169059753417912, -16.609928131103516 ], [ -70.169647216796818, -16.608877182006779 ], [ -70.169509887695312, -16.603088378906193 ], [ -70.169769287109375, -16.600969314575082 ], [ -70.170120239257756, -16.599920272827035 ], [ -70.171318054199219, -16.598625183105412 ], [ -70.174232482910099, -16.596733093261719 ], [ -70.175270080566349, -16.596061706542855 ], [ -70.176933288574219, -16.594318389892521 ], [ -70.176948547363281, -16.593769073486214 ], [ -70.176628112792969, -16.593109130859375 ], [ -70.175216674804688, -16.591129302978516 ], [ -70.174598693847599, -16.589860916137695 ], [ -70.1744384765625, -16.589540481567383 ], [ -70.174057006835938, -16.587760925292855 ], [ -70.174873352050724, -16.582923889160156 ], [ -70.175300598144531, -16.580389022827148 ], [ -70.175697326660156, -16.576360702514592 ], [ -70.176795959472599, -16.57371711730957 ], [ -70.177169799804631, -16.571447372436523 ], [ -70.177139282226562, -16.569982528686523 ], [ -70.176368713378906, -16.567039489746037 ], [ -70.176353454589844, -16.566095352172852 ], [ -70.176277160644531, -16.561050415039006 ], [ -70.178543090820312, -16.559291839599609 ], [ -70.180030822753849, -16.558135986328125 ], [ -70.181053161621094, -16.556718826293832 ], [ -70.181327819824219, -16.555370330810547 ], [ -70.181228637695312, -16.551870346069336 ], [ -70.181716918945312, -16.549249649047795 ], [ -70.181755065917912, -16.546390533447266 ], [ -70.181770324706918, -16.545480728149414 ], [ -70.182136535644474, -16.542289733886719 ], [ -70.183151245117188, -16.54010009765625 ], [ -70.184547424316406, -16.538534164428711 ], [ -70.185386657714787, -16.537591934204102 ], [ -70.185630798339844, -16.537128448486328 ], [ -70.185882568359375, -16.536657333373967 ], [ -70.187118530273438, -16.537092208862305 ], [ -70.190422058105412, -16.53740119934082 ], [ -70.193252563476562, -16.538711547851506 ], [ -70.1976318359375, -16.538639068603459 ], [ -70.199996948242188, -16.539236068725529 ], [ -70.201583862304631, -16.538885116577035 ], [ -70.202316284179688, -16.538316726684457 ], [ -70.203102111816349, -16.536739349365121 ], [ -70.204109191894531, -16.535770416259709 ], [ -70.206436157226506, -16.532516479492131 ], [ -70.208412170410156, -16.530300140380859 ], [ -70.214271545410099, -16.52452278137207 ], [ -70.215904235839787, -16.522432327270508 ], [ -70.21728515625, -16.520013809204102 ], [ -70.218414306640625, -16.516117095947209 ], [ -70.2203369140625, -16.513385772705078 ], [ -70.225494384765625, -16.510736465454045 ], [ -70.227622985839787, -16.508037567138558 ], [ -70.230545043945312, -16.505678176879826 ], [ -70.233474731445312, -16.504365921020394 ], [ -70.235549926757756, -16.504476547241211 ], [ -70.236724853515625, -16.504144668579045 ], [ -70.240119934081974, -16.504634857177734 ], [ -70.241050720214844, -16.50419807434082 ], [ -70.242652893066406, -16.503963470458984 ], [ -70.243240356445312, -16.503528594970646 ], [ -70.243927001953068, -16.502307891845646 ], [ -70.245918273925724, -16.502101898193303 ], [ -70.247665405273381, -16.501176834106445 ], [ -70.252204895019531, -16.500171661376953 ], [ -70.253509521484375, -16.499496459960938 ], [ -70.254730224609261, -16.499263763427621 ], [ -70.256492614746094, -16.498374938964787 ], [ -70.258926391601449, -16.497962951660156 ], [ -70.262611389160099, -16.495872497558594 ], [ -70.264732360839787, -16.495325088500977 ], [ -70.266021728515625, -16.49454307556141 ], [ -70.2703857421875, -16.492759704589787 ], [ -70.272422790527344, -16.492301940917855 ], [ -70.27459716796875, -16.491447448730469 ], [ -70.278099060058594, -16.489591598510742 ], [ -70.283134460449162, -16.487928390502873 ], [ -70.290504455566406, -16.482423782348576 ], [ -70.292800903320312, -16.481853485107422 ], [ -70.297111511230469, -16.479742050170842 ], [ -70.299697875976562, -16.479160308837891 ], [ -70.301368713378906, -16.478477478027344 ], [ -70.303291320800781, -16.476978302001953 ], [ -70.306495666503849, -16.473211288452148 ], [ -70.308258056640625, -16.471673965454102 ], [ -70.311111450195312, -16.471565246582031 ], [ -70.314552307128906, -16.472625732421818 ], [ -70.316925048828125, -16.472669601440373 ], [ -70.317207336425781, -16.472190856933594 ], [ -70.317138671875, -16.471187591552678 ], [ -70.316215515136662, -16.466470718383732 ], [ -70.315567016601506, -16.464633941650334 ], [ -70.31390380859375, -16.46173095703125 ], [ -70.313819885253849, -16.461088180541992 ], [ -70.310890197753849, -16.456714630126896 ], [ -70.307037353515625, -16.451688766479435 ], [ -70.306037902831918, -16.449502944946232 ], [ -70.306221008300724, -16.447414398193359 ], [ -70.306526184082031, -16.446735382080078 ], [ -70.307121276855469, -16.446279525756779 ], [ -70.31463623046875, -16.446186065673828 ], [ -70.316047668456918, -16.445634841918945 ], [ -70.317184448242131, -16.444667816162109 ], [ -70.317626953125, -16.442594528198242 ], [ -70.317268371581974, -16.439666748046875 ], [ -70.316223144531193, -16.435298919677734 ], [ -70.316238403320199, -16.432088851928711 ], [ -70.317642211914006, -16.429786682128906 ], [ -70.319412231445312, -16.427509307861271 ], [ -70.321128845214844, -16.423616409301758 ], [ -70.322090148925781, -16.422151565551701 ], [ -70.325714111328125, -16.417644500732422 ], [ -70.327934265136662, -16.415763854980469 ], [ -70.329673767089787, -16.413467407226562 ], [ -70.33172607421875, -16.41182899475092 ], [ -70.333030700683594, -16.411272048950138 ], [ -70.333602905273438, -16.411247253417969 ], [ -70.338554382324105, -16.413412094116211 ], [ -70.341873168945256, -16.414558410644474 ], [ -70.345054626464844, -16.415054321288949 ], [ -70.34991455078125, -16.415008544921875 ], [ -70.354148864746094, -16.413930892944279 ], [ -70.355667114257812, -16.412973403930607 ], [ -70.35762786865223, -16.412269592285099 ], [ -70.360198974609318, -16.410882949829045 ], [ -70.361656188964844, -16.410472869872933 ], [ -70.362335205078125, -16.409954071044922 ], [ -70.361488342285156, -16.408466339111271 ], [ -70.358657836914006, -16.406602859497013 ], [ -70.356063842773438, -16.403751373291016 ], [ -70.355789184570256, -16.402986526489144 ], [ -70.355789184570256, -16.401679992675724 ], [ -70.3564453125, -16.400251388549805 ], [ -70.358840942382756, -16.398033142089844 ], [ -70.359710693359318, -16.397663116455021 ], [ -70.362297058105412, -16.395648956298828 ], [ -70.363784790039062, -16.394815444946289 ], [ -70.367179870605469, -16.392160415649414 ], [ -70.368644714355469, -16.391759872436523 ], [ -70.37091064453125, -16.390583038330078 ], [ -70.374504089355412, -16.389724731445312 ], [ -70.378273010253906, -16.387418746948185 ], [ -70.380805969238168, -16.387006759643555 ], [ -70.382186889648438, -16.386009216308594 ], [ -70.38275146484375, -16.385398864746094 ], [ -70.382766723632812, -16.385110855102539 ], [ -70.381797790527344, -16.384370803832951 ], [ -70.381019592285156, -16.384269714355469 ], [ -70.380081176757812, -16.383825302124023 ], [ -70.377792358398438, -16.382179260253906 ], [ -70.376579284667912, -16.380638122558594 ], [ -70.374801635742188, -16.377264022827148 ], [ -70.37203216552723, -16.374588012695256 ], [ -70.37158203125, -16.373388290405217 ], [ -70.371406555175781, -16.36951637268055 ], [ -70.371017456054688, -16.368726730346623 ], [ -70.368438720703125, -16.368288040161133 ], [ -70.364517211914062, -16.368326187133789 ], [ -70.361297607421875, -16.3680419921875 ], [ -70.358642578124943, -16.368171691894531 ], [ -70.356971740722656, -16.367485046386719 ], [ -70.356719970703125, -16.365974426269531 ], [ -70.35687255859375, -16.365068435668945 ], [ -70.3575439453125, -16.363739013671818 ], [ -70.357406616210881, -16.362276077270508 ], [ -70.353164672851562, -16.358440399169922 ], [ -70.350540161132756, -16.356843948364258 ], [ -70.348617553710938, -16.355051040649414 ], [ -70.348213195800781, -16.354022979736328 ], [ -70.348083496093693, -16.351369857788029 ], [ -70.346595764160156, -16.349109649658203 ], [ -70.346084594726506, -16.347864151000863 ], [ -70.345848083496094, -16.346317291259766 ], [ -70.345893859863224, -16.341800689697209 ], [ -70.346900939941406, -16.33845138549799 ], [ -70.3441162109375, -16.335868835449162 ], [ -70.342041015625, -16.329446792602482 ], [ -70.340415954589844, -16.326625823974553 ], [ -70.339332580566406, -16.321878433227539 ], [ -70.339508056640511, -16.32000732421875 ], [ -70.342208862304688, -16.31740760803217 ], [ -70.343292236328068, -16.315320968627873 ], [ -70.343200683593693, -16.312200546264535 ], [ -70.343551635742188, -16.311243057250863 ], [ -70.345779418945256, -16.308624267578011 ], [ -70.346572875976562, -16.306846618652344 ], [ -70.3468017578125, -16.305301666259766 ], [ -70.347526550292969, -16.303012847900391 ], [ -70.347572326660156, -16.301254272460881 ], [ -70.346488952636719, -16.29963493347168 ], [ -70.344657897949105, -16.297998428344727 ], [ -70.344436645507756, -16.297201156616154 ], [ -70.344680786132812, -16.296493530273381 ], [ -70.348121643066406, -16.292196273803711 ], [ -70.348716735839844, -16.291048049926758 ], [ -70.345672607421818, -16.287176132202092 ], [ -70.344558715820256, -16.284664154052678 ], [ -70.343963623046818, -16.282152175903263 ], [ -70.343955993652287, -16.280765533447209 ], [ -70.343391418456974, -16.279100418090763 ], [ -70.343284606933594, -16.276521682739201 ], [ -70.342933654785099, -16.274711608886719 ], [ -70.341407775878849, -16.27216911315918 ], [ -70.340690612792969, -16.269973754882756 ], [ -70.340950012207031, -16.268720626831055 ], [ -70.341995239257812, -16.267181396484375 ], [ -70.3424072265625, -16.266052246093693 ], [ -70.343711853027344, -16.263910293579045 ], [ -70.343971252441349, -16.262834548950195 ], [ -70.344963073730469, -16.260837554931584 ], [ -70.345039367675668, -16.258548736572209 ], [ -70.345649719238281, -16.256904602050724 ], [ -70.345695495605412, -16.255416870117188 ], [ -70.34515380859375, -16.254360198974496 ], [ -70.342819213867131, -16.251785278320199 ], [ -70.342170715331974, -16.250192642211857 ], [ -70.339729309082031, -16.248453140258789 ], [ -70.338356018066349, -16.246124267578068 ], [ -70.337478637695256, -16.245166778564396 ], [ -70.336822509765568, -16.243574142456055 ], [ -70.336463928222656, -16.241575241088867 ], [ -70.336242675781193, -16.241390228271371 ], [ -70.336128234863281, -16.238716125488168 ], [ -70.335517883300781, -16.237125396728516 ], [ -70.334602355957031, -16.236639022827092 ], [ -70.332275390625, -16.236225128173771 ], [ -70.329917907714844, -16.235481262207031 ], [ -70.327713012695312, -16.233322143554688 ], [ -70.327362060546818, -16.231891632080078 ], [ -70.327285766601506, -16.229030609130859 ], [ -70.327667236328068, -16.227039337158203 ], [ -70.328376770019531, -16.225061416625977 ], [ -70.327285766601506, -16.223451614379883 ], [ -70.324363708496094, -16.220529556274357 ], [ -70.324073791503906, -16.219766616821232 ], [ -70.324150085449162, -16.218746185302734 ], [ -70.324951171875, -16.216873168945256 ], [ -70.329048156738281, -16.210437774658203 ], [ -70.330268859863281, -16.206182479858398 ], [ -70.33050537109375, -16.203908920288086 ], [ -70.33083343505848, -16.203336715698242 ], [ -70.332420349121037, -16.2025146484375 ], [ -70.333831787109375, -16.201816558837891 ], [ -70.33544921875, -16.201725006103516 ], [ -70.338493347167969, -16.201009750366211 ], [ -70.339622497558594, -16.201032638549805 ], [ -70.343109130859318, -16.202262878417912 ], [ -70.34600830078125, -16.202762603759652 ], [ -70.347946166992188, -16.204244613647347 ], [ -70.349601745605412, -16.20516395568842 ], [ -70.352371215820256, -16.206144332885685 ], [ -70.355567932128906, -16.207775115966797 ], [ -70.358940124511662, -16.208885192871094 ], [ -70.360519409179688, -16.207614898681584 ], [ -70.361457824707031, -16.207174301147404 ], [ -70.364372253417912, -16.20440673828125 ], [ -70.365905761718693, -16.203330993652287 ], [ -70.368095397949162, -16.200746536254883 ], [ -70.369148254394474, -16.199138641357308 ], [ -70.369277954101562, -16.198518753051644 ], [ -70.369087219238281, -16.197305679321289 ], [ -70.368339538574219, -16.19545936584467 ], [ -70.367713928222599, -16.191633224487248 ], [ -70.368377685546818, -16.187284469604492 ], [ -70.368621826171875, -16.186893463134766 ], [ -70.368698120117188, -16.184776306152344 ], [ -70.370018005371037, -16.181631088256779 ], [ -70.372184753417912, -16.178964614868107 ], [ -70.372909545898438, -16.177070617675781 ], [ -70.373428344726506, -16.176378250122013 ], [ -70.379997253417969, -16.17137336730957 ], [ -70.382789611816349, -16.168739318847656 ], [ -70.385238647460938, -16.166051864624023 ], [ -70.386589050292912, -16.163619995117188 ], [ -70.387420654296875, -16.158994674682617 ], [ -70.388923645019531, -16.156879425048771 ], [ -70.390624999999886, -16.155412673950082 ], [ -70.392883300781193, -16.154226303100586 ], [ -70.394546508789062, -16.153560638427734 ], [ -70.397605895996094, -16.152904510498047 ], [ -70.399436950683594, -16.151924133300724 ], [ -70.401145935058594, -16.150600433349496 ], [ -70.402488708496094, -16.148502349853402 ], [ -70.402809143066349, -16.147245407104492 ], [ -70.403114318847599, -16.14207649230957 ], [ -70.403503417968636, -16.139455795288029 ], [ -70.404556274414062, -16.136106491088867 ], [ -70.406784057617188, -16.130744934081974 ], [ -70.406936645507699, -16.129648208618107 ], [ -70.406738281249943, -16.126064300537053 ], [ -70.408180236816406, -16.123491287231445 ], [ -70.40865325927723, -16.121334075927734 ], [ -70.408447265624943, -16.120737075805664 ], [ -70.40667724609375, -16.118814468383789 ], [ -70.40560150146473, -16.116853713989201 ], [ -70.40460205078125, -16.113298416137695 ], [ -70.404418945312443, -16.110454559326172 ], [ -70.402259826660043, -16.106143951415959 ], [ -70.401855468749943, -16.104736328125 ], [ -70.4017333984375, -16.103355407714787 ], [ -70.402374267578125, -16.102584838867188 ], [ -70.404472351074219, -16.102685928344727 ], [ -70.405212402343693, -16.102537155151367 ], [ -70.407005310058537, -16.101512908935547 ], [ -70.406974792480469, -16.100971221923771 ], [ -70.407051086425781, -16.099584579467773 ], [ -70.406379699707031, -16.098163604736328 ], [ -70.405792236328011, -16.096113204956055 ], [ -70.403129577636719, -16.091737747192383 ], [ -70.402748107910156, -16.090709686279183 ], [ -70.403060913085938, -16.088338851928654 ], [ -70.404640197753849, -16.084556579589844 ], [ -70.407928466796875, -16.080282211303711 ], [ -70.409820556640625, -16.076471328735352 ], [ -70.410697937011719, -16.075365066528263 ], [ -70.411300659179631, -16.075162887573242 ], [ -70.412361145019474, -16.075248718261662 ], [ -70.414306640625, -16.075687408447266 ], [ -70.41534423828125, -16.076141357421875 ], [ -70.415985107421818, -16.076084136962834 ], [ -70.417633056640625, -16.073404312133789 ], [ -70.420585632324219, -16.070537567138672 ], [ -70.422073364257756, -16.069702148437443 ], [ -70.424247741699219, -16.069515228271428 ], [ -70.42620849609375, -16.068973541259766 ], [ -70.42696380615223, -16.068971633911133 ], [ -70.428070068359318, -16.067840576171875 ], [ -70.429733276367188, -16.063575744628906 ], [ -70.430587768554574, -16.062990188598576 ], [ -70.433609008789006, -16.062240600585938 ], [ -70.434623718261719, -16.061410903930664 ], [ -70.43544769287098, -16.058784484863281 ], [ -70.435638427734261, -16.05427169799799 ], [ -70.43634033203125, -16.051719665527344 ], [ -70.436752319335881, -16.048416137695312 ], [ -70.438163757324219, -16.045148849487248 ], [ -70.438873291015568, -16.042692184448129 ], [ -70.439239501953068, -16.038183212280217 ], [ -70.43975830078125, -16.037210464477539 ], [ -70.4407958984375, -16.036006927490234 ], [ -70.443435668945256, -16.034051895141602 ], [ -70.444114685058537, -16.033590316772461 ], [ -70.445442199706974, -16.033447265625 ], [ -70.446739196777344, -16.033788681030217 ], [ -70.44765472412098, -16.034275054931641 ], [ -70.450210571289006, -16.037254333496094 ], [ -70.453018188476562, -16.039312362670898 ], [ -70.454055786132812, -16.041175842285099 ], [ -70.456420898437443, -16.043598175048714 ], [ -70.457359313964787, -16.044364929199219 ], [ -70.458572387695312, -16.044897079467773 ], [ -70.461723327636719, -16.048227310180664 ], [ -70.463645935058537, -16.049421310424805 ], [ -70.464599609374943, -16.050315856933594 ], [ -70.465156555175781, -16.050472259521484 ], [ -70.469276428222599, -16.049846649169922 ], [ -70.470771789550781, -16.049247741699219 ], [ -70.473426818847656, -16.046365737915039 ], [ -70.475006103515568, -16.045053482055607 ], [ -70.476623535156193, -16.044071197509652 ], [ -70.478302001953125, -16.043889999389648 ], [ -70.478874206542969, -16.043550491332894 ], [ -70.479827880859375, -16.042524337768555 ], [ -70.481040954589844, -16.040332794189396 ], [ -70.482009887695312, -16.03947639465332 ], [ -70.491073608398438, -16.04041671752924 ], [ -70.494247436523438, -16.040960311889592 ], [ -70.498542785644531, -16.039844512939396 ], [ -70.500465393066349, -16.038614273071289 ], [ -70.503158569335824, -16.037263870239258 ], [ -70.50750732421875, -16.03795051574707 ], [ -70.508041381835938, -16.037456512451115 ], [ -70.508216857910043, -16.03692626953125 ], [ -70.50823974609375, -16.034099578857422 ], [ -70.508811950683594, -16.031881332397404 ], [ -70.509704589843693, -16.030061721801758 ], [ -70.510955810546818, -16.028976440429631 ], [ -70.511482238769531, -16.028963088989258 ], [ -70.51226806640625, -16.02932167053217 ], [ -70.512985229492074, -16.029985427856388 ], [ -70.513458251953011, -16.030807495117131 ], [ -70.517433166503849, -16.033279418945256 ], [ -70.517852783203125, -16.033243179321232 ], [ -70.519561767578011, -16.032314300537053 ], [ -70.521087646484261, -16.031147003173828 ], [ -70.522613525390511, -16.029071807861271 ], [ -70.528236389160099, -16.02349662780756 ], [ -70.528953552246094, -16.021158218383789 ], [ -70.528900146484318, -16.016189575195256 ], [ -70.52923583984375, -16.015159606933537 ], [ -70.530593872070256, -16.014213562011662 ], [ -70.532546997070312, -16.014408111572209 ], [ -70.533592224121094, -16.014139175414982 ], [ -70.535240173339844, -16.013389587402344 ], [ -70.537559509277287, -16.011898040771428 ], [ -70.539024353027344, -16.010259628295842 ], [ -70.542068481445199, -16.005752563476562 ], [ -70.544609069824162, -16.000646591186523 ], [ -70.546142578124943, -15.998576164245605 ], [ -70.546714782714787, -15.996920585632267 ], [ -70.547126770019418, -15.996415138244515 ], [ -70.549232482910156, -15.995009422302189 ], [ -70.551315307617131, -15.994891166687012 ], [ -70.551971435546818, -15.994542121887207 ], [ -70.552818298339787, -15.994422912597656 ], [ -70.553329467773438, -15.99402904510498 ], [ -70.555946350097656, -15.990647315979004 ], [ -70.557563781738281, -15.990139007568359 ], [ -70.560546874999943, -15.987875938415414 ], [ -70.5616455078125, -15.986383438110352 ], [ -70.56195068359375, -15.984676361083984 ], [ -70.563224792480412, -15.983297348022461 ], [ -70.563682556152287, -15.983629226684513 ], [ -70.564041137695312, -15.984575271606388 ], [ -70.565040588378849, -15.985696792602539 ], [ -70.568435668945312, -15.987081527709904 ], [ -70.569923400878906, -15.988981246948185 ], [ -70.571609497070256, -15.989094734191895 ], [ -70.572296142578068, -15.989839553832951 ], [ -70.575706481933537, -15.989666938781738 ], [ -70.577148437499943, -15.990696907043457 ], [ -70.578018188476506, -15.990898132324219 ], [ -70.581008911132812, -15.988404273986703 ], [ -70.583473205566406, -15.98826789855957 ], [ -70.585075378417912, -15.987705230712834 ], [ -70.587432861328068, -15.98749923706049 ], [ -70.58807373046875, -15.987930297851562 ], [ -70.588531494140625, -15.988922119140568 ], [ -70.589187622070312, -15.989583015441895 ], [ -70.591178894042912, -15.990193367004338 ], [ -70.593116760253906, -15.991351127624512 ], [ -70.596153259277344, -15.991403579711914 ], [ -70.598037719726506, -15.991911888122559 ], [ -70.599754333496037, -15.991903305053711 ], [ -70.600570678710938, -15.991683959960881 ], [ -70.603706359863281, -15.991946220397892 ], [ -70.604789733886662, -15.992313385009766 ], [ -70.605789184570312, -15.993288040161019 ], [ -70.607009887695256, -15.993249893188477 ], [ -70.607963562011662, -15.994000434875431 ], [ -70.60854339599598, -15.993965148925781 ], [ -70.608879089355469, -15.993630409240666 ], [ -70.609344482421875, -15.993577957153207 ], [ -70.610389709472656, -15.99399471282959 ], [ -70.61181640625, -15.994097709655762 ], [ -70.613067626953125, -15.995067596435547 ], [ -70.614112854003906, -15.995524406433105 ], [ -70.615447998046875, -15.99764442443842 ], [ -70.617546081542969, -15.998145103454533 ], [ -70.618385314941406, -15.99959659576416 ], [ -70.619476318359318, -16.000738143920898 ], [ -70.620613098144531, -16.001157760620117 ], [ -70.625831604003906, -16.001543045043945 ], [ -70.627662658691406, -16.001264572143498 ], [ -70.628684997558594, -16.000627517700138 ], [ -70.629028320312443, -16.000219345092717 ], [ -70.629539489746094, -15.998400688171387 ], [ -70.630020141601562, -15.997616767883244 ], [ -70.631057739257812, -15.997006416320801 ], [ -70.632293701171875, -15.995613098144474 ], [ -70.633010864257812, -15.99538516998291 ], [ -70.634170532226506, -15.994056701660156 ], [ -70.634788513183594, -15.993853569030705 ], [ -70.635398864746037, -15.99284553527832 ], [ -70.636428833007812, -15.992379188537541 ], [ -70.637413024902287, -15.99152660369873 ], [ -70.639190673828125, -15.989188194274846 ], [ -70.639762878417969, -15.987343788146916 ], [ -70.641181945800781, -15.986884117126465 ], [ -70.641494750976562, -15.98745155334467 ], [ -70.641098022460938, -15.98949146270752 ], [ -70.64296722412098, -15.990042686462346 ], [ -70.643653869628906, -15.98928165435791 ], [ -70.643890380859318, -15.991341590881291 ], [ -70.645439147949162, -15.992814064025879 ], [ -70.645919799804631, -15.994847297668457 ], [ -70.646965026855412, -15.995307922363224 ], [ -70.649230957031193, -15.994669914245605 ], [ -70.650794982910156, -15.995009422302189 ], [ -70.65118408203125, -15.995412826538086 ], [ -70.65130615234375, -15.996234893798828 ], [ -70.651618957519474, -15.996692657470703 ], [ -70.653434753417912, -15.997415542602539 ], [ -70.653709411621037, -15.999504089355412 ], [ -70.65606689453125, -16.001607894897461 ], [ -70.656280517578125, -16.002748489379883 ], [ -70.658546447753906, -16.003749847412109 ], [ -70.6597900390625, -16.003639221191293 ], [ -70.660537719726562, -16.003988265991211 ], [ -70.661689758300781, -16.00383186340332 ], [ -70.662147521972656, -16.003986358642521 ], [ -70.662818908691406, -16.005044937133789 ], [ -70.662574768066406, -16.005527496337834 ], [ -70.662712097167855, -16.0062255859375 ], [ -70.664207458496037, -16.006290435790959 ], [ -70.664894104003849, -16.007305145263672 ], [ -70.665824890136662, -16.007497787475472 ], [ -70.666687011718693, -16.008369445800724 ], [ -70.667167663574162, -16.009336471557617 ], [ -70.667625427246094, -16.011718749999943 ], [ -70.66949462890625, -16.013540267944336 ], [ -70.67236328125, -16.012985229492074 ], [ -70.673133850097656, -16.011753082275391 ], [ -70.674316406249943, -16.011869430541935 ], [ -70.674629211425668, -16.012489318847599 ], [ -70.674751281738281, -16.013963699340763 ], [ -70.675918579101562, -16.015329360961914 ], [ -70.677497863769531, -16.016136169433594 ], [ -70.679420471191406, -16.016166687011719 ], [ -70.680061340331974, -16.016441345214844 ], [ -70.681098937988224, -16.017534255981445 ], [ -70.681915283203125, -16.019668579101562 ], [ -70.682998657226506, -16.021062850952148 ], [ -70.683570861816349, -16.021129608154297 ], [ -70.685432434082031, -16.020599365234318 ], [ -70.687667846679631, -16.020309448242131 ], [ -70.688430786132756, -16.020523071289062 ], [ -70.689880371093693, -16.021625518798771 ], [ -70.691802978515625, -16.021810531616211 ], [ -70.693328857421875, -16.023012161254826 ], [ -70.694053649902287, -16.024307250976506 ], [ -70.695457458496094, -16.025154113769474 ], [ -70.696159362792912, -16.026603698730412 ], [ -70.69671630859375, -16.02721977233881 ], [ -70.69793701171875, -16.027433395385629 ], [ -70.699310302734318, -16.028362274169922 ], [ -70.702323913574219, -16.028207778930664 ], [ -70.702972412109375, -16.029142379760685 ], [ -70.703880310058537, -16.029445648193303 ], [ -70.705017089843693, -16.030803680419865 ], [ -70.706260681152287, -16.031694412231388 ], [ -70.709297180175781, -16.031890869140625 ], [ -70.711082458496094, -16.032945632934513 ], [ -70.713516235351506, -16.033527374267578 ], [ -70.7142333984375, -16.033128738403263 ], [ -70.714385986328068, -16.032199859619141 ], [ -70.714736938476562, -16.031757354736271 ], [ -70.716079711914006, -16.031946182250977 ], [ -70.716743469238281, -16.031715393066406 ], [ -70.717292785644531, -16.032493591308594 ], [ -70.718223571777344, -16.032449722289982 ], [ -70.718994140625, -16.033906936645451 ], [ -70.721710205078068, -16.033365249633789 ], [ -70.722915649414062, -16.034057617187386 ], [ -70.724708557128906, -16.033687591552734 ], [ -70.725593566894531, -16.033353805541992 ], [ -70.726554870605469, -16.03219032287592 ], [ -70.727462768554574, -16.031902313232422 ], [ -70.728347778320312, -16.031026840209904 ], [ -70.729637145996037, -16.031089782714787 ], [ -70.730041503906136, -16.030826568603516 ], [ -70.73138427734375, -16.028734207153263 ], [ -70.731971740722656, -16.026933670043888 ], [ -70.733734130859318, -16.025037765502873 ], [ -70.734344482421875, -16.023101806640625 ], [ -70.735321044921875, -16.022148132324219 ], [ -70.735488891601562, -16.021511077880859 ], [ -70.736137390136662, -16.021234512328988 ], [ -70.737136840820312, -16.019947052001839 ], [ -70.738227844238224, -16.019365310668945 ], [ -70.739540100097599, -16.018163681030217 ], [ -70.740371704101562, -16.017675399780217 ], [ -70.740806579589787, -16.017702102661019 ], [ -70.741645812988224, -16.016384124755803 ], [ -70.742134094238224, -16.015977859497013 ], [ -70.744148254394474, -16.015584945678654 ], [ -70.748062133788949, -16.015626907348633 ], [ -70.748855590820312, -16.01644325256342 ], [ -70.749534606933594, -16.01654052734375 ], [ -70.750663757324219, -16.01603889465332 ], [ -70.751907348632812, -16.015901565551758 ], [ -70.753303527831974, -16.014667510986271 ], [ -70.755668640136662, -16.013513565063477 ], [ -70.757064819335938, -16.013254165649414 ], [ -70.757652282714844, -16.013509750366097 ], [ -70.758743286132699, -16.014585494995117 ], [ -70.759803771972656, -16.014930725097656 ], [ -70.760429382324162, -16.015655517578011 ], [ -70.761482238769474, -16.016000747680664 ], [ -70.762664794921875, -16.016927719116154 ], [ -70.763931274414062, -16.016807556152344 ], [ -70.764808654785156, -16.017465591430664 ], [ -70.765487670898381, -16.017589569091797 ], [ -70.766731262206974, -16.017061233520508 ], [ -70.767707824706918, -16.017198562622013 ], [ -70.768531799316349, -16.016717910766545 ], [ -70.769248962402344, -16.016759872436523 ], [ -70.769584655761662, -16.016530990600529 ], [ -70.769783020019474, -16.016164779663029 ], [ -70.769493103027287, -16.014915466308594 ], [ -70.769622802734375, -16.014457702636719 ], [ -70.771705627441349, -16.012857437133789 ], [ -70.77266693115223, -16.012758255004883 ], [ -70.774085998535099, -16.013679504394531 ], [ -70.77471923828125, -16.013828277587834 ], [ -70.776473999023381, -16.013311386108342 ], [ -70.777786254882756, -16.012535095214844 ], [ -70.778900146484375, -16.011159896850586 ], [ -70.779350280761719, -16.009057998657227 ], [ -70.7808837890625, -16.006498336791992 ], [ -70.784370422363224, -16.003419876098633 ], [ -70.78680419921875, -16.002286911010742 ], [ -70.788848876953068, -15.999979972839299 ], [ -70.789871215820312, -15.996483802795353 ], [ -70.792808532714844, -15.993717193603402 ], [ -70.794563293457031, -15.992650032043457 ], [ -70.795547485351506, -15.991497039794865 ], [ -70.795707702636719, -15.990547180175724 ], [ -70.79547119140625, -15.98868465423584 ], [ -70.794708251953125, -15.987208366393929 ], [ -70.794265747070312, -15.985511779785099 ], [ -70.794578552246037, -15.982405662536564 ], [ -70.795997619628849, -15.979630470275765 ], [ -70.797637939453068, -15.977847099304142 ], [ -70.798995971679688, -15.975972175598088 ], [ -70.800155639648438, -15.974884033203125 ], [ -70.801124572753906, -15.974344253540039 ], [ -70.801773071289062, -15.974267005920353 ], [ -70.802803039550668, -15.974475860595703 ], [ -70.803581237792969, -15.974995613098145 ], [ -70.804054260253906, -15.97626781463623 ], [ -70.804397583007756, -15.978340148925724 ], [ -70.804481506347656, -15.981653213500863 ], [ -70.805175781249943, -15.985183715820312 ], [ -70.805557250976506, -15.986020088195687 ], [ -70.806243896484375, -15.986810684204102 ], [ -70.807731628417912, -15.987597465515137 ], [ -70.8089599609375, -15.987485885620117 ], [ -70.810661315917969, -15.986869812011719 ], [ -70.817932128906193, -15.979634284973145 ], [ -70.820091247558594, -15.978448867797852 ], [ -70.821006774902287, -15.978412628173828 ], [ -70.821266174316406, -15.978181838989258 ], [ -70.822479248046875, -15.977970123290959 ], [ -70.827301025390568, -15.978356361389103 ], [ -70.829261779785156, -15.978032112121582 ], [ -70.830642700195256, -15.97722053527832 ], [ -70.833496093749943, -15.974685668945312 ], [ -70.834861755371094, -15.974287033080998 ], [ -70.837699890136662, -15.97428035736084 ], [ -70.839447021484375, -15.97355842590332 ], [ -70.84100341796875, -15.972215652465707 ], [ -70.842666625976449, -15.96975040435791 ], [ -70.842948913574162, -15.968320846557617 ], [ -70.842864990234375, -15.96564865112299 ], [ -70.842536926269474, -15.964595794677678 ], [ -70.841613769531193, -15.962983131408691 ], [ -70.841140747070199, -15.961294174194336 ], [ -70.842048645019531, -15.958895683288574 ], [ -70.841964721679631, -15.957801818847656 ], [ -70.840629577636662, -15.956468582153263 ], [ -70.837730407714844, -15.955636978149414 ], [ -70.834480285644531, -15.953239440917969 ], [ -70.833465576171875, -15.951379776000977 ], [ -70.833297729492131, -15.950004577636662 ], [ -70.833839416503906, -15.948336601257324 ], [ -70.835647583007812, -15.946107864379883 ], [ -70.836524963378906, -15.945781707763672 ], [ -70.838333129882812, -15.945871353149357 ], [ -70.839210510253849, -15.944923400878906 ], [ -70.839302062988224, -15.944464683532658 ], [ -70.839042663574105, -15.943585395812988 ], [ -70.83734130859375, -15.941143989562988 ], [ -70.837165832519531, -15.940130233764648 ], [ -70.838066101074162, -15.939082145690918 ], [ -70.839912414550781, -15.938154220580998 ], [ -70.840789794921875, -15.937062263488713 ], [ -70.840171813964787, -15.934955596923771 ], [ -70.840324401855469, -15.932938575744629 ], [ -70.841377258300781, -15.930666923522949 ], [ -70.843254089355469, -15.928610801696777 ], [ -70.843986511230412, -15.927129745483398 ], [ -70.843963623046875, -15.925918579101562 ], [ -70.843254089355469, -15.924724578857422 ], [ -70.843223571777287, -15.924073219299316 ], [ -70.843772888183594, -15.92310905456543 ], [ -70.844795227050781, -15.921985626220646 ], [ -70.84527587890625, -15.921785354614258 ], [ -70.846054077148438, -15.921900749206543 ], [ -70.847122192382756, -15.921623229980355 ], [ -70.84881591796875, -15.921880722045898 ], [ -70.849822998046761, -15.92080116271967 ], [ -70.850074768066349, -15.919343948364201 ], [ -70.849121093749943, -15.917657852172795 ], [ -70.849090576171875, -15.91663742065424 ], [ -70.850807189941406, -15.914460182189885 ], [ -70.851951599121094, -15.911540031433105 ], [ -70.852951049804631, -15.910877227783203 ], [ -70.853927612304688, -15.909749031066895 ], [ -70.854637145996094, -15.906533241271973 ], [ -70.855247497558537, -15.905949592590332 ], [ -70.856697082519531, -15.905437469482422 ], [ -70.857833862304574, -15.904609680175724 ], [ -70.859237670898381, -15.904060363769474 ], [ -70.861282348632812, -15.9024400711059 ], [ -70.861763000488281, -15.90122127532959 ], [ -70.861824035644474, -15.899300575256291 ], [ -70.862541198730469, -15.896817207336369 ], [ -70.864456176757812, -15.893967628478947 ], [ -70.866249084472656, -15.890520095825195 ], [ -70.867340087890568, -15.889348030090332 ], [ -70.869377136230469, -15.888675689697266 ], [ -70.87322998046875, -15.88807201385498 ], [ -70.874420166015568, -15.887527465820312 ], [ -70.875183105468693, -15.887561798095646 ], [ -70.876991271972599, -15.889416694641113 ], [ -70.878852844238281, -15.890707015991211 ], [ -70.882057189941293, -15.892473220825138 ], [ -70.884925842285156, -15.893376350402832 ], [ -70.8856201171875, -15.893109321594181 ], [ -70.886299133300781, -15.893157005310002 ], [ -70.888031005859318, -15.892045021057072 ], [ -70.888908386230412, -15.891077995300179 ], [ -70.891143798828125, -15.887737274169865 ], [ -70.891899108886719, -15.885948181152287 ], [ -70.893775939941349, -15.882773399352971 ], [ -70.894348144531193, -15.880945205688363 ], [ -70.896392822265625, -15.877755165100041 ], [ -70.896728515624943, -15.876804351806641 ], [ -70.896224975585938, -15.875614166259766 ], [ -70.894210815429688, -15.873300552368107 ], [ -70.894714355468693, -15.869656562805119 ], [ -70.893516540527344, -15.866485595703068 ], [ -70.894439697265568, -15.861875534057504 ], [ -70.895652770996094, -15.859498977661133 ], [ -70.895561218261662, -15.85756778717041 ], [ -70.894851684570312, -15.856166839599553 ], [ -70.891311645507812, -15.852560997009277 ], [ -70.890037536621037, -15.850958824157715 ], [ -70.890899658203068, -15.850703239440861 ], [ -70.892707824706974, -15.849702835083008 ], [ -70.896141052246037, -15.846817970275879 ], [ -70.898193359375, -15.844059944152832 ], [ -70.900962829589844, -15.838240623474064 ], [ -70.902214050292969, -15.836874008178654 ], [ -70.906410217285156, -15.833128929138184 ], [ -70.906875610351562, -15.832128524780273 ], [ -70.907173156738281, -15.828830718994027 ], [ -70.909202575683537, -15.824575424194279 ], [ -70.911102294921875, -15.821742057800236 ], [ -70.914299011230469, -15.818880081176758 ], [ -70.916419982910156, -15.813553810119629 ], [ -70.916587829589844, -15.812845230102482 ], [ -70.916404724121094, -15.81253528594965 ], [ -70.916877746582031, -15.810647964477482 ], [ -70.918853759765568, -15.808195114135742 ], [ -70.919525146484318, -15.806970596313477 ], [ -70.920013427734261, -15.805394172668343 ], [ -70.919990539550724, -15.79979228973383 ], [ -70.922279357910099, -15.79759693145752 ], [ -70.923698425292912, -15.795758247375375 ], [ -70.927009582519531, -15.792859077453613 ], [ -70.928321838378906, -15.792325973510685 ], [ -70.929801940917912, -15.79118824005127 ], [ -70.932456970214844, -15.78856086730957 ], [ -70.933219909667969, -15.787491798400879 ], [ -70.936309814453068, -15.784653663635254 ], [ -70.937736511230412, -15.782262802124023 ], [ -70.940437316894531, -15.779074668884277 ], [ -70.942436218261719, -15.774738311767521 ], [ -70.942306518554631, -15.77398777008051 ], [ -70.94118499755848, -15.772756576538086 ], [ -70.940040588378793, -15.772643089294434 ], [ -70.939765930175781, -15.772415161132812 ], [ -70.937614440917969, -15.772562980651855 ], [ -70.936088562011719, -15.772021293640137 ], [ -70.933601379394531, -15.77052116394043 ], [ -70.932258605957031, -15.76873874664301 ], [ -70.931556701660156, -15.767536163330078 ], [ -70.930892944335938, -15.765237808227482 ], [ -70.929878234863281, -15.763261795043832 ], [ -70.927131652831974, -15.760601997375488 ], [ -70.926277160644474, -15.759170532226562 ], [ -70.926010131835881, -15.75754356384266 ], [ -70.926551818847656, -15.754007339477482 ], [ -70.926216125488281, -15.752205848693848 ], [ -70.924339294433594, -15.747894287109375 ], [ -70.922660827636662, -15.745772361755371 ], [ -70.92120361328125, -15.74460506439209 ], [ -70.917022705078068, -15.742417335510197 ], [ -70.912651062011662, -15.740920066833496 ], [ -70.910476684570199, -15.740690231323242 ], [ -70.909248352050781, -15.740224838256836 ], [ -70.907257080078125, -15.739048957824707 ], [ -70.905235290527344, -15.736838340759221 ], [ -70.904312133789062, -15.734934806823674 ], [ -70.904266357421818, -15.729972839355469 ], [ -70.903488159179631, -15.726837158203125 ], [ -70.900222778320312, -15.718342781066895 ], [ -70.900184631347656, -15.715481758117676 ], [ -70.899833679199219, -15.714825630187988 ], [ -70.899772644042912, -15.714094161987305 ], [ -70.899864196777287, -15.713085174560547 ], [ -70.900299072265625, -15.711956977844238 ], [ -70.904304504394531, -15.707918167114201 ], [ -70.905044555664062, -15.707364082336426 ], [ -70.906143188476562, -15.707042694091683 ], [ -70.908218383789062, -15.705925941467171 ], [ -70.909767150878906, -15.704304695129281 ], [ -70.910003662109375, -15.703541755676156 ], [ -70.909927368164062, -15.700871467590218 ], [ -70.910575866699219, -15.700071334838867 ], [ -70.911941528320312, -15.699275016784611 ], [ -70.912887573242188, -15.698128700256348 ], [ -70.914207458496094, -15.695214271545353 ], [ -70.914779663085938, -15.692877769470158 ], [ -70.916351318359318, -15.690924644470215 ], [ -70.917953491210938, -15.68736457824707 ], [ -70.918342590332031, -15.679199218749886 ], [ -70.918876647949219, -15.676798820495605 ], [ -70.918960571288949, -15.675239562988281 ], [ -70.918701171875, -15.67407035827631 ], [ -70.917816162109261, -15.672043800353947 ], [ -70.916542053222599, -15.667246818542424 ], [ -70.916030883789062, -15.663700103759766 ], [ -70.916343688964844, -15.661904335021973 ], [ -70.916358947753849, -15.658041000366154 ], [ -70.916732788085881, -15.656617164611703 ], [ -70.916511535644531, -15.652010917663574 ], [ -70.917495727539006, -15.649330139160099 ], [ -70.917518615722599, -15.646212577819824 ], [ -70.918144226074219, -15.64361667633051 ], [ -70.918769836425668, -15.642580032348633 ], [ -70.920890808105469, -15.640113830566406 ], [ -70.921600341796818, -15.638413429260254 ], [ -70.923072814941406, -15.636202812194824 ], [ -70.923774719238281, -15.634599685668888 ], [ -70.92376708984375, -15.633951187133789 ], [ -70.924163818359375, -15.632814407348633 ], [ -70.926162719726562, -15.630865097045842 ], [ -70.92681884765625, -15.629866600036507 ], [ -70.927970886230469, -15.629276275634766 ], [ -70.930061340332031, -15.629178047180176 ], [ -70.931594848632812, -15.628702163696175 ], [ -70.932685852050724, -15.627684593200684 ], [ -70.933273315429688, -15.625937461852971 ], [ -70.933891296386719, -15.62524223327631 ], [ -70.934913635253906, -15.624768257141 ], [ -70.937065124511662, -15.624553680419808 ], [ -70.938186645507812, -15.623871803283635 ], [ -70.938621520996094, -15.622570991516 ], [ -70.93902587890625, -15.618310928344727 ], [ -70.939323425292969, -15.617839813232365 ], [ -70.942169189453125, -15.61684608459467 ], [ -70.945480346679688, -15.61700534820551 ], [ -70.947601318359375, -15.61453723907465 ], [ -70.949264526367131, -15.613033294677734 ], [ -70.95208740234375, -15.611544609069767 ], [ -70.953285217285099, -15.611260414123535 ], [ -70.954437255859261, -15.611270904540959 ], [ -70.955238342285156, -15.61097335815424 ], [ -70.958633422851449, -15.608471870422363 ], [ -70.961448669433594, -15.606024742126351 ], [ -70.963722229003906, -15.605802536010685 ], [ -70.965904235839844, -15.606485366821289 ], [ -70.966644287109261, -15.606526374816838 ], [ -70.969070434570312, -15.604928016662484 ], [ -70.970680236816406, -15.60448169708252 ], [ -70.971229553222656, -15.604581832885742 ], [ -70.972145080566349, -15.604363441467285 ], [ -70.973342895507812, -15.603789329528809 ], [ -70.974845886230355, -15.602671623229924 ], [ -70.976387023925781, -15.602266311645451 ], [ -70.978958129882812, -15.599435806274414 ], [ -70.981613159179631, -15.598509788513184 ], [ -70.982528686523438, -15.597858428955078 ], [ -70.983192443847656, -15.596853256225586 ], [ -70.984375, -15.594022750854492 ], [ -70.985511779785099, -15.592220306396371 ], [ -70.990135192871094, -15.587894439697209 ], [ -70.992584228515511, -15.585034370422363 ], [ -70.993080139160156, -15.583544731140137 ], [ -70.9932861328125, -15.581815719604492 ], [ -70.993980407714787, -15.580718994140625 ], [ -70.994842529296818, -15.58000373840332 ], [ -70.997238159179631, -15.578695297241154 ], [ -70.999771118164062, -15.576619148254395 ], [ -71.001594543457031, -15.575653076171875 ], [ -71.002731323242188, -15.574346542358398 ], [ -71.003334045410099, -15.573096275329533 ], [ -71.006355285644531, -15.568854331970215 ], [ -71.008338928222656, -15.563784599304199 ], [ -71.008605957031136, -15.560758590698242 ], [ -71.008033752441293, -15.558618545532227 ], [ -71.006225585937386, -15.556385040283203 ], [ -71.005439758300724, -15.554909706115723 ], [ -71.004920959472656, -15.553331375122013 ], [ -71.004837036132812, -15.552318572998047 ], [ -71.005065917968693, -15.551140785217171 ], [ -71.007278442382812, -15.547697067260685 ], [ -71.007087707519531, -15.544401168823242 ], [ -71.007362365722599, -15.542764663696232 ], [ -71.008316040039006, -15.541500091552734 ], [ -71.009552001953068, -15.540531158447152 ], [ -71.010795593261662, -15.540465354919434 ], [ -71.011199951171875, -15.540227890014648 ], [ -71.013366699218693, -15.540229797363224 ], [ -71.014259338378906, -15.539370536804199 ], [ -71.014259338378906, -15.535428047180176 ], [ -71.014724731445312, -15.533543586730957 ], [ -71.015937805175724, -15.53168773651123 ], [ -71.016677856445256, -15.531133651733342 ], [ -71.017257690429631, -15.531036376953125 ], [ -71.018020629882756, -15.530345916748047 ], [ -71.018516540527287, -15.529190063476562 ], [ -71.018112182617131, -15.52765941619873 ], [ -71.016334533691293, -15.524829864501953 ], [ -71.015739440917912, -15.524242401123047 ], [ -71.014373779296875, -15.521825790405273 ], [ -71.013046264648438, -15.521079063415527 ], [ -71.011650085449162, -15.521108627319279 ], [ -71.009422302246094, -15.520301818847599 ], [ -71.008201599121037, -15.519053459167367 ], [ -71.008720397949219, -15.517402648925781 ], [ -71.010086059570312, -15.51499080657959 ], [ -71.010162353515625, -15.513603210449162 ], [ -71.009941101074105, -15.512516021728516 ], [ -71.010414123535099, -15.511128425598145 ], [ -71.013328552246094, -15.50798511505127 ], [ -71.015289306640625, -15.50509071350092 ], [ -71.017890930175781, -15.502691268920842 ], [ -71.018310546874943, -15.501858711242676 ], [ -71.018531799316406, -15.499833106994515 ], [ -71.016494750976506, -15.494267463684025 ], [ -71.016410827636662, -15.490638732910099 ], [ -71.015052795410156, -15.488603591918832 ], [ -71.013137817382812, -15.486862182617188 ], [ -71.011222839355469, -15.485763549804631 ], [ -71.008628845214844, -15.483733177185002 ], [ -71.005157470703068, -15.482413291931096 ], [ -71.004196166992131, -15.481071472167969 ], [ -71.003890991210938, -15.480027198791504 ], [ -71.002967834472599, -15.479010581970215 ], [ -70.997039794921818, -15.473851203918457 ], [ -70.995635986328011, -15.472390174865723 ], [ -70.994384765624943, -15.469833374023381 ], [ -70.993431091308537, -15.46644115447998 ], [ -70.992805480957031, -15.461900711059457 ], [ -70.993087768554688, -15.458676338195801 ], [ -70.993782043457031, -15.456623077392578 ], [ -70.995071411132812, -15.453922271728459 ], [ -70.997962951660156, -15.450122833251839 ], [ -70.998947143554631, -15.447768211364746 ], [ -71.000495910644474, -15.446615219116154 ], [ -71.003303527832031, -15.445454597473088 ], [ -71.00384521484375, -15.443119049072266 ], [ -71.004302978515568, -15.442279815673771 ], [ -71.009620666503849, -15.438865661621037 ], [ -71.013290405273438, -15.436983108520451 ], [ -71.015899658203125, -15.436100959777775 ], [ -71.019752502441349, -15.435565948486328 ], [ -71.025421142578125, -15.433801651000977 ], [ -71.027595520019531, -15.432161331176758 ], [ -71.027900695800781, -15.431427001953068 ], [ -71.027816772460938, -15.426869392394963 ], [ -71.029251098632812, -15.42323112487793 ], [ -71.030158996581918, -15.421442031860295 ], [ -71.032630920410099, -15.418386459350529 ], [ -71.036705017089787, -15.411707878112793 ], [ -71.038009643554688, -15.408196449279785 ], [ -71.038833618164006, -15.406967163085938 ], [ -71.039131164550781, -15.404984474182129 ], [ -71.037574768066349, -15.398488998413086 ], [ -71.036926269531193, -15.393713951110783 ], [ -71.035995483398438, -15.390901565551758 ], [ -71.033363342285156, -15.387118339538574 ], [ -71.032264709472656, -15.384652137756348 ], [ -71.029167175292969, -15.381559371948242 ], [ -71.027557373046818, -15.379373550414982 ], [ -71.026084899902344, -15.375457763671875 ], [ -71.025863647460881, -15.374417304992619 ], [ -71.025924682617188, -15.372269630432129 ], [ -71.025268554687443, -15.370644569396973 ], [ -71.023880004882812, -15.369139671325684 ], [ -71.021545410156193, -15.36768913269043 ], [ -71.019683837890625, -15.365509986877441 ], [ -71.015258789062443, -15.354911804199162 ], [ -71.012603759765568, -15.351433753967228 ], [ -71.011871337890625, -15.350013732910156 ], [ -71.011466979980355, -15.347481727600098 ], [ -71.011825561523381, -15.343463897705078 ], [ -71.011665344238281, -15.342424392700195 ], [ -71.009361267089787, -15.338871002197266 ], [ -71.006660461425781, -15.335468292236271 ], [ -71.001930236816293, -15.330737113952637 ], [ -71.000198364257756, -15.329740524291992 ], [ -70.995796203613224, -15.325358390807992 ], [ -70.990036010742188, -15.320717811584416 ], [ -70.98696136474598, -15.317241668701115 ], [ -70.985771179199219, -15.316516876220589 ], [ -70.98468017578125, -15.316387176513615 ], [ -70.983711242675724, -15.316560745239144 ], [ -70.978614807128906, -15.319012641906681 ], [ -70.977546691894531, -15.319284439086914 ], [ -70.974502563476562, -15.319399833679199 ], [ -70.969963073730412, -15.318901062011605 ], [ -70.961235046386719, -15.318987846374512 ], [ -70.958587646484375, -15.317676544189453 ], [ -70.955825805664062, -15.315037727355957 ], [ -70.953437805175781, -15.311882019042969 ], [ -70.95159912109375, -15.308105468749943 ], [ -70.950134277343693, -15.303729057312012 ], [ -70.949760437011662, -15.301767349243107 ], [ -70.949897766113281, -15.297698974609318 ], [ -70.950851440429688, -15.294739723205566 ], [ -70.952362060546875, -15.291708946228027 ], [ -70.9541015625, -15.288963317871094 ], [ -70.955711364746094, -15.28692531585682 ], [ -70.958572387695312, -15.283944129943848 ], [ -70.959053039550781, -15.282684326171875 ], [ -70.960815429687443, -15.281163215637207 ], [ -70.963111877441349, -15.279643058776799 ], [ -70.965896606445312, -15.278829574584961 ], [ -70.969474792480412, -15.277033805847168 ], [ -70.971092224121037, -15.275781631469727 ], [ -70.974914550781193, -15.271845817565861 ], [ -70.9759521484375, -15.269816398620605 ], [ -70.976570129394531, -15.267301559448242 ], [ -70.976577758789062, -15.26270866394043 ], [ -70.976875305175781, -15.26154899597168 ], [ -70.978279113769418, -15.259700775146484 ], [ -70.981956481933594, -15.257882118225041 ], [ -70.983589172363224, -15.256094932556096 ], [ -70.984794616699219, -15.252797126769963 ], [ -70.985771179199219, -15.248738288879395 ], [ -70.985496520996037, -15.247000694274902 ], [ -70.983383178710938, -15.24451732635498 ], [ -70.980216979980469, -15.242810249328556 ], [ -70.978439331054631, -15.242831230163517 ], [ -70.977188110351562, -15.242195129394474 ], [ -70.976745605468693, -15.241121292114201 ], [ -70.976127624511719, -15.238181114196721 ], [ -70.975189208984375, -15.236070632934457 ], [ -70.973381042480412, -15.234034538269043 ], [ -70.971771240234318, -15.233710289001351 ], [ -70.970298767089844, -15.232707023620605 ], [ -70.969947814941349, -15.22978687286377 ], [ -70.966705322265568, -15.22646427154541 ], [ -70.965744018554688, -15.224967002868652 ], [ -70.965499877929574, -15.223799705505371 ], [ -70.965446472167969, -15.220821380615234 ], [ -70.964935302734375, -15.219278335571232 ], [ -70.96429443359375, -15.218400955200138 ], [ -70.962028503417969, -15.216861724853516 ], [ -70.961906433105469, -15.216461181640568 ], [ -70.962661743164062, -15.214870452880859 ], [ -70.968971252441406, -15.208832740783635 ], [ -70.969192504882756, -15.208329200744629 ], [ -70.969062805175781, -15.207607269286996 ], [ -70.966949462890625, -15.204600334167424 ], [ -70.966888427734375, -15.203804969787541 ], [ -70.967201232910099, -15.202458381652775 ], [ -70.967956542968693, -15.201182365417424 ], [ -70.971672058105412, -15.19835090637207 ], [ -70.972503662109375, -15.197455406188908 ], [ -70.9727783203125, -15.196828842163086 ], [ -70.972839355468693, -15.196025848388672 ], [ -70.972236633300724, -15.194093704223576 ], [ -70.972145080566349, -15.1927490234375 ], [ -70.97314453125, -15.18648624420166 ], [ -70.971511840820199, -15.181732177734318 ], [ -70.971336364746094, -15.180293083190861 ], [ -70.972068786621037, -15.179161071777287 ], [ -70.975898742675668, -15.175809860229492 ], [ -70.976287841796875, -15.175258636474553 ], [ -70.976089477538949, -15.17203426361084 ], [ -70.976821899414006, -15.168880462646428 ], [ -70.975830078125, -15.162078857421818 ], [ -70.975929260253906, -15.160346031188908 ], [ -70.979278564453125, -15.154921531677189 ], [ -70.980064392089787, -15.152474403381291 ], [ -70.981651306152344, -15.149153709411621 ], [ -70.98175048828125, -15.14793872833252 ], [ -70.980972290039062, -15.147059440612793 ], [ -70.979339599609375, -15.146056175231877 ], [ -70.978248596191349, -15.144827842712289 ], [ -70.977584838867131, -15.143210411071664 ], [ -70.976951599121094, -15.140139579772892 ], [ -70.977333068847656, -15.13228797912592 ], [ -70.976638793945256, -15.130669593810921 ], [ -70.976608276367188, -15.129306793212777 ], [ -70.977226257324162, -15.127092361450195 ], [ -70.978652954101506, -15.124751091003418 ], [ -70.978454589843693, -15.116340637206918 ], [ -70.979423522949105, -15.112098693847656 ], [ -70.979988098144474, -15.106839179992676 ], [ -70.980293273925781, -15.105942726135197 ], [ -70.980934143066349, -15.105232238769531 ], [ -70.985183715820312, -15.102647781372013 ], [ -70.991043090820256, -15.09705924987793 ], [ -70.992835998535099, -15.096335411071777 ], [ -70.993400573730469, -15.095746994018555 ], [ -70.993766784667969, -15.094435691833496 ], [ -70.993698120117131, -15.092136383056641 ], [ -70.993431091308537, -15.089161872863713 ], [ -70.992927551269531, -15.087347984313965 ], [ -70.993820190429631, -15.084494590759277 ], [ -70.994644165039062, -15.08358097076416 ], [ -70.995582580566406, -15.081315040588379 ], [ -70.99481201171875, -15.073101043701115 ], [ -70.994789123535156, -15.069157600402718 ], [ -70.995056152343693, -15.066329956054631 ], [ -70.99566650390625, -15.064002990722656 ], [ -70.997802734374943, -15.058988571166992 ], [ -70.998123168945312, -15.057263374328613 ], [ -70.997360229492188, -15.054108619689941 ], [ -70.994781494140511, -15.04918384552002 ], [ -70.99383544921875, -15.046360015869141 ], [ -70.993515014648381, -15.04463005065918 ], [ -70.993782043457031, -15.03746223449707 ], [ -70.993324279785099, -15.036625862121525 ], [ -70.994003295898381, -15.034579277038517 ], [ -70.996322631835938, -15.030435562133732 ], [ -70.996757507324162, -15.029154777526855 ], [ -70.996696472167969, -15.024840354919377 ], [ -70.996223449707031, -15.022052764892578 ], [ -70.996459960937443, -15.018684387206918 ], [ -70.997421264648381, -15.016029357910156 ], [ -71.000160217285156, -15.009978294372445 ], [ -71.000587463378849, -15.008425712585392 ], [ -71.001472473144531, -15.006890296936035 ], [ -71.002151489257812, -15.006585121154728 ], [ -71.002334594726562, -15.006272315978947 ], [ -71.002754211425724, -15.002589225769043 ], [ -71.004028320312386, -15.000925064086914 ], [ -71.004447937011719, -14.999581336975098 ], [ -71.004425048828125, -14.997016906738224 ], [ -71.003501892089844, -14.991876602172852 ], [ -71.00374603271473, -14.990419387817383 ], [ -71.003631591796818, -14.988954544067326 ], [ -71.004150390625, -14.986807823181039 ], [ -71.002998352050781, -14.984598159790039 ], [ -71.002815246582031, -14.982976913452148 ], [ -71.003051757812443, -14.980853080749512 ], [ -71.004570007324162, -14.979434967041016 ], [ -71.004920959472656, -14.978286743164062 ], [ -71.004669189453068, -14.97392463684082 ], [ -71.004104614257756, -14.971137046813908 ], [ -71.00222015380848, -14.968377113342285 ], [ -71.000762939453068, -14.966855049133301 ], [ -70.999702453613224, -14.965970039367562 ], [ -70.998001098632756, -14.965145111083928 ], [ -70.996391296386662, -14.96347713470459 ], [ -70.996437072753906, -14.962900161743164 ], [ -70.997131347656193, -14.962262153625488 ], [ -70.997489929199219, -14.961519241333008 ], [ -70.997848510742188, -14.959713935852051 ], [ -70.997619628906193, -14.956767082214242 ], [ -70.996879577636605, -14.953741073608398 ], [ -70.994567871093693, -14.952103614807072 ], [ -70.991104125976562, -14.95042896270752 ], [ -70.987091064453125, -14.947831153869572 ], [ -70.985984802246037, -14.946839332580566 ], [ -70.985366821289062, -14.945583343505859 ], [ -70.985443115234375, -14.942625045776254 ], [ -70.986000061035099, -14.941506385803223 ], [ -70.987525939941349, -14.939584732055664 ], [ -70.987205505371094, -14.937612533569336 ], [ -70.987266540527344, -14.936693191528263 ], [ -70.990127563476562, -14.932061195373535 ], [ -70.991203308105469, -14.929304122924805 ], [ -70.991554260253906, -14.927395820617676 ], [ -70.991333007812443, -14.925765991210881 ], [ -70.989830017089844, -14.923097610473633 ], [ -70.990386962890568, -14.921646118164062 ], [ -70.990303039550781, -14.920183181762638 ], [ -70.987594604492131, -14.917445182800236 ], [ -70.986579895019418, -14.915831565856877 ], [ -70.986869812011719, -14.91473484039301 ], [ -70.988456726074162, -14.911813735961857 ], [ -70.988685607910156, -14.910826683044434 ], [ -70.988685607910156, -14.909173965454102 ], [ -70.989036560058537, -14.90831470489502 ], [ -70.991836547851562, -14.90609073638916 ], [ -70.993255615234261, -14.904128074645996 ], [ -70.994033813476562, -14.900443077087402 ], [ -70.994857788085881, -14.899105072021484 ], [ -70.994827270507812, -14.896366119384766 ], [ -70.996315002441406, -14.89393424987793 ], [ -70.996337890625, -14.892301559448242 ], [ -70.996109008789006, -14.891701698303223 ], [ -70.996002197265568, -14.890066146850529 ], [ -70.996894836425781, -14.886816024780217 ], [ -70.996276855468693, -14.884215354919434 ], [ -70.995330810546818, -14.882234573364201 ], [ -70.995460510253906, -14.881035804748535 ], [ -70.996063232421875, -14.87978458404541 ], [ -70.996093749999943, -14.879143714904785 ], [ -70.99544525146473, -14.878267288208008 ], [ -70.99310302734375, -14.878008842468262 ], [ -70.992790222167969, -14.87769699096674 ], [ -70.993041992187443, -14.874851226806584 ], [ -70.992996215820312, -14.869706153869572 ], [ -70.993370056152344, -14.866304397582951 ], [ -70.993133544921818, -14.865450859069824 ], [ -70.991973876953125, -14.863310813903809 ], [ -70.991447448730469, -14.861445426940918 ], [ -70.993110656738281, -14.857657432556096 ], [ -70.993324279785099, -14.853346824645996 ], [ -70.993888854980412, -14.85231876373291 ], [ -70.995452880859375, -14.850414276123047 ], [ -70.996223449707031, -14.848752021789494 ], [ -70.996772766113224, -14.846792221069336 ], [ -70.996803283691406, -14.842969894409066 ], [ -70.995834350585938, -14.841958045959416 ], [ -70.992858886718693, -14.841059684753361 ], [ -70.992286682128849, -14.840474128723145 ], [ -70.994842529296818, -14.837187767028809 ], [ -70.995948791503906, -14.833481788635197 ], [ -70.996040344238281, -14.831462860107365 ], [ -70.995735168456918, -14.830680847167912 ], [ -70.994949340820256, -14.829757690429574 ], [ -70.992790222167969, -14.828466415405217 ], [ -70.984268188476506, -14.826863288879395 ], [ -70.981956481933594, -14.825821876525879 ], [ -70.979705810546818, -14.825148582458439 ], [ -70.978355407714787, -14.823882102966252 ], [ -70.979019165039006, -14.819572448730469 ], [ -70.978836059570256, -14.818801879882812 ], [ -70.977752685546875, -14.81749439239502 ], [ -70.977775573730412, -14.814730644226017 ], [ -70.978515625, -14.812960624694824 ], [ -70.979286193847656, -14.812161445617676 ], [ -70.979400634765568, -14.811720848083496 ], [ -70.978294372558594, -14.80878734588623 ], [ -70.977706909179574, -14.808072090148926 ], [ -70.97772216796875, -14.805673599243107 ], [ -70.978500366210938, -14.80302619934082 ], [ -70.980880737304688, -14.799287796020394 ], [ -70.980941772460881, -14.796890258789062 ], [ -70.980430603027344, -14.794469833374023 ], [ -70.980468749999943, -14.792621612548828 ], [ -70.983215332031193, -14.787482261657658 ], [ -70.983642578125, -14.78629016876215 ], [ -70.983688354492131, -14.785352706909123 ], [ -70.983383178710938, -14.783715248107853 ], [ -70.981216430664006, -14.779742240905705 ], [ -70.98040771484375, -14.773223876953125 ], [ -70.979965209960881, -14.772540092468262 ], [ -70.977706909179574, -14.771879196166992 ], [ -70.976554870605412, -14.770900726318303 ], [ -70.976028442382812, -14.768301010131836 ], [ -70.97560882568348, -14.767176628112679 ], [ -70.975173950195312, -14.766682624816895 ], [ -70.975090026855469, -14.765957832336369 ], [ -70.975532531738281, -14.764360427856388 ], [ -70.978706359863281, -14.759906768798828 ], [ -70.9810791015625, -14.755913734436035 ], [ -70.981986999511662, -14.755297660827637 ], [ -70.987190246582031, -14.753114700317326 ], [ -70.990837097167912, -14.75005912780756 ], [ -70.996437072753906, -14.748468399047852 ], [ -70.997352600097543, -14.747662544250431 ], [ -70.998405456542855, -14.746138572692871 ], [ -70.999549865722543, -14.745335578918457 ], [ -71.000587463378849, -14.74491024017334 ], [ -71.003517150878849, -14.744656562805176 ], [ -71.005134582519531, -14.744159698486328 ], [ -71.006721496582031, -14.743160247802678 ], [ -71.0098876953125, -14.741753578185978 ], [ -71.011314392089844, -14.74041557312006 ], [ -71.013397216796875, -14.73967456817627 ], [ -71.014884948730412, -14.739944458007812 ], [ -71.015861511230469, -14.740666389465332 ], [ -71.020637512207031, -14.746458053588754 ], [ -71.021514892578125, -14.748286247253361 ], [ -71.021881103515625, -14.751386642455998 ], [ -71.022964477539062, -14.754220008850041 ], [ -71.024375915527344, -14.756175994873047 ], [ -71.025321960449219, -14.758078575134221 ], [ -71.027595520019531, -14.75960636138916 ], [ -71.029067993164062, -14.759713172912598 ], [ -71.030776977539062, -14.759508132934513 ], [ -71.032165527343636, -14.758865356445256 ], [ -71.034339904785099, -14.756202697753849 ], [ -71.035072326660156, -14.752796173095589 ], [ -71.036170959472543, -14.75183200836176 ], [ -71.037223815917969, -14.751858711242619 ], [ -71.038726806640568, -14.752804756164494 ], [ -71.040512084960938, -14.752899169921875 ], [ -71.042564392089844, -14.753594398498535 ], [ -71.047653198242188, -14.753399848937988 ], [ -71.049789428710881, -14.754546165466309 ], [ -71.052238464355469, -14.754398345947209 ], [ -71.055809020996037, -14.752358436584473 ], [ -71.058059692382812, -14.749880790710392 ], [ -71.058891296386719, -14.748647689819222 ], [ -71.058929443359318, -14.748117446899414 ], [ -71.06020355224598, -14.745062828063965 ], [ -71.062934875488224, -14.73917102813715 ], [ -71.063232421874943, -14.736803054809513 ], [ -71.064170837402287, -14.735194206237736 ], [ -71.06988525390625, -14.730563163757324 ], [ -71.071281433105469, -14.729207038879395 ], [ -71.073730468749943, -14.727499961852914 ], [ -71.079498291015625, -14.722426414489689 ], [ -71.082489013671818, -14.718598365783691 ], [ -71.084831237792969, -14.716732978820801 ], [ -71.087745666503849, -14.714871406555176 ], [ -71.088790893554631, -14.713715553283635 ], [ -71.088851928710938, -14.712505340576172 ], [ -71.089454650878849, -14.710864067077637 ], [ -71.089584350585938, -14.709487915039006 ], [ -71.089118957519531, -14.704355239868164 ], [ -71.088043212890568, -14.699788093566838 ], [ -71.088287353515625, -14.698330879211369 ], [ -71.087677001953125, -14.697194099426213 ], [ -71.088203430175724, -14.695526123046875 ], [ -71.092292785644531, -14.689916610717773 ], [ -71.096878051757812, -14.686095237731877 ], [ -71.102691650390625, -14.684913635253906 ], [ -71.103393554687443, -14.684455871582031 ], [ -71.103805541992188, -14.683435440063477 ], [ -71.104164123535043, -14.680889129638558 ], [ -71.105087280273381, -14.678771972656193 ], [ -71.107017517089787, -14.676397323608398 ], [ -71.108383178710938, -14.675626754760742 ], [ -71.109619140625, -14.67436408996582 ], [ -71.110794067382812, -14.672371864318848 ], [ -71.111686706542912, -14.669854164123421 ], [ -71.113540649414062, -14.667311668395939 ], [ -71.115097045898381, -14.662212371826172 ], [ -71.115570068359375, -14.65727519989008 ], [ -71.116683959960938, -14.654244422912598 ], [ -71.117645263671875, -14.650027275085392 ], [ -71.118331909179688, -14.648712158203125 ], [ -71.117607116699162, -14.647139549255371 ], [ -71.116508483886719, -14.64573955535883 ], [ -71.113136291503906, -14.643753051757812 ], [ -71.112327575683594, -14.642846107482853 ], [ -71.112091064453125, -14.642049789428711 ], [ -71.112007141113281, -14.640225410461426 ], [ -71.110343933105412, -14.636813163757324 ], [ -71.109916687011719, -14.634181022644043 ], [ -71.109458923339844, -14.633874893188477 ], [ -71.108085632324219, -14.633520126342717 ], [ -71.105079650878906, -14.633369445800724 ], [ -71.100685119628906, -14.632321357727051 ], [ -71.097946166992131, -14.632464408874512 ], [ -71.096420288085881, -14.632918357849121 ], [ -71.095146179199219, -14.632834434509277 ], [ -71.088294982910156, -14.630370140075684 ], [ -71.082412719726506, -14.629496574401855 ], [ -71.080863952636662, -14.629793167114201 ], [ -71.077461242675668, -14.63157844543457 ], [ -71.075386047363281, -14.631769180297852 ], [ -71.073715209960881, -14.6311998367309 ], [ -71.07196044921875, -14.628714561462402 ], [ -71.070991516113281, -14.628166198730469 ], [ -71.070442199707031, -14.626795768737679 ], [ -71.069343566894474, -14.625683784484806 ], [ -71.067909240722599, -14.624630928039494 ], [ -71.066024780273438, -14.623653411865178 ], [ -71.065101623535156, -14.623430252075082 ], [ -71.060630798339844, -14.619934082031193 ], [ -71.057594299316349, -14.618474960327035 ], [ -71.053375244140625, -14.61556243896473 ], [ -71.051856994628906, -14.613802909851017 ], [ -71.050636291503849, -14.610519409179688 ], [ -71.050056457519474, -14.609721183776742 ], [ -71.049537658691406, -14.608442306518498 ], [ -71.043617248535156, -14.601763725280762 ], [ -71.041244506835938, -14.599521636962834 ], [ -71.037429809570312, -14.596668243408146 ], [ -71.032958984375, -14.594733238220158 ], [ -71.029434204101562, -14.592209815978947 ], [ -71.027481079101506, -14.591691017150879 ], [ -71.02520751953125, -14.591877937316895 ], [ -71.024078369140625, -14.592741012573242 ], [ -71.021392822265625, -14.593147277831974 ], [ -71.018196105957031, -14.594518661498967 ], [ -71.016433715820312, -14.596158027648926 ], [ -71.014640808105469, -14.596976280212402 ], [ -71.011657714843636, -14.5977783203125 ], [ -71.010284423828125, -14.597476959228516 ], [ -71.009880065917969, -14.596775054931527 ], [ -71.010665893554688, -14.594733238220158 ], [ -71.013221740722656, -14.59086799621582 ], [ -71.015815734863281, -14.588614463806096 ], [ -71.019721984863281, -14.586064338684082 ], [ -71.020431518554574, -14.585832595825138 ], [ -71.02056884765625, -14.585103988647461 ], [ -71.020225524902287, -14.583852767944222 ], [ -71.019371032714787, -14.582096099853516 ], [ -71.017272949218693, -14.579743385314941 ], [ -71.014862060546875, -14.577834129333439 ], [ -71.012199401855412, -14.57662296295166 ], [ -71.009269714355412, -14.574969291687012 ], [ -71.006561279296875, -14.574200630187875 ], [ -71.004280090331974, -14.572908401489258 ], [ -71.002067565917969, -14.572111129760685 ], [ -71.000892639160156, -14.572480201721078 ], [ -70.998542785644531, -14.572575569152718 ], [ -70.996139526367188, -14.573623657226562 ], [ -70.993911743164006, -14.573352813720703 ], [ -70.992973327636719, -14.574507713317814 ], [ -70.992782592773438, -14.575586318969727 ], [ -70.992034912109375, -14.577252388000375 ], [ -70.990318298339844, -14.578792572021484 ], [ -70.988731384277344, -14.579397201538086 ], [ -70.987144470214787, -14.579598426818791 ], [ -70.986114501953125, -14.58006477355957 ], [ -70.983444213867188, -14.580614089965707 ], [ -70.98175048828125, -14.581542015075684 ], [ -70.979904174804574, -14.582951545715275 ], [ -70.978111267089844, -14.582932472229004 ], [ -70.976478576660156, -14.582506179809513 ], [ -70.975929260253906, -14.581783294677678 ], [ -70.975540161132812, -14.580171585083008 ], [ -70.974464416503793, -14.578113555908203 ], [ -70.974174499511662, -14.575377464294377 ], [ -70.973289489746037, -14.573736190795842 ], [ -70.973251342773438, -14.572086334228516 ], [ -70.973487854003849, -14.571196556091195 ], [ -70.973312377929631, -14.570219039916879 ], [ -70.971893310546761, -14.569796562194824 ], [ -70.970512390136719, -14.56980037689209 ], [ -70.969268798828125, -14.570138931274414 ], [ -70.968238830566349, -14.569336891174203 ], [ -70.966590881347656, -14.568657875060978 ], [ -70.966293334960938, -14.567588806152287 ], [ -70.967086791992131, -14.56646537780756 ], [ -70.969024658203068, -14.562105178832951 ], [ -70.970260620117131, -14.560258865356445 ], [ -70.971733093261719, -14.556277275085449 ], [ -70.972671508789062, -14.554788589477539 ], [ -70.973510742187386, -14.553928375244084 ], [ -70.975189208984375, -14.553082466125488 ], [ -70.976539611816349, -14.552085876464844 ], [ -70.981880187988224, -14.547187805175668 ], [ -70.982246398925781, -14.545759201049805 ], [ -70.982612609863281, -14.545351028442383 ], [ -70.982498168945312, -14.543519020080566 ], [ -70.981887817382756, -14.543065071105957 ], [ -70.979606628417912, -14.542386054992676 ], [ -70.979087829589844, -14.541998863220158 ], [ -70.978858947753906, -14.539883613586426 ], [ -70.979080200195312, -14.538732528686467 ], [ -70.981643676757812, -14.536025047302246 ], [ -70.983131408691349, -14.532559394836426 ], [ -70.98651123046875, -14.528483390808105 ], [ -70.987998962402287, -14.5262451171875 ], [ -70.989158630371094, -14.522457122802678 ], [ -70.990066528320312, -14.52095794677723 ], [ -70.993415832519474, -14.513851165771484 ], [ -70.994400024413949, -14.512516021728516 ], [ -70.995567321777344, -14.509044647216797 ], [ -70.997283935546875, -14.505166053771973 ], [ -70.998260498046875, -14.504047393798771 ], [ -70.999740600585824, -14.503376007080021 ], [ -70.999923706054631, -14.502900123596191 ], [ -70.999160766601506, -14.501888275146371 ], [ -70.997383117675781, -14.501127243041992 ], [ -70.992721557617188, -14.500714302062988 ], [ -70.98870849609375, -14.499713897705078 ], [ -70.987533569335824, -14.498982429504395 ], [ -70.986976623535156, -14.498088836669922 ], [ -70.986793518066406, -14.496452331542855 ], [ -70.988334655761719, -14.493933677673283 ], [ -70.988571166992131, -14.491791725158635 ], [ -70.988807678222656, -14.491406440734806 ], [ -70.988967895507812, -14.489804267883301 ], [ -70.9893798828125, -14.488430023193303 ], [ -70.989250183105355, -14.487003326415959 ], [ -70.988395690917969, -14.485537528991642 ], [ -70.987503051757756, -14.484745025634766 ], [ -70.986480712890511, -14.483363151550179 ], [ -70.985618591308537, -14.481239318847656 ], [ -70.985099792480469, -14.478515624999943 ], [ -70.984588623046875, -14.477458000183105 ], [ -70.983390808105469, -14.475931167602539 ], [ -70.983215332031193, -14.474568367004395 ], [ -70.98358154296875, -14.472490310668945 ], [ -70.984825134277287, -14.46901798248291 ], [ -70.985382080078125, -14.464750289916992 ], [ -70.987022399902287, -14.463455200195199 ], [ -70.988021850585938, -14.462027549743652 ], [ -70.988563537597599, -14.460800170898438 ], [ -70.988739013671818, -14.458935737609863 ], [ -70.988563537597599, -14.456667900085449 ], [ -70.988143920898438, -14.455100059509221 ], [ -70.984848022460881, -14.451236724853459 ], [ -70.982879638671875, -14.449750900268498 ], [ -70.976844787597599, -14.447817802429199 ], [ -70.973800659179574, -14.447150230407715 ], [ -70.969581604003849, -14.447052001953011 ], [ -70.966728210449162, -14.446028709411621 ], [ -70.964248657226506, -14.444649696350098 ], [ -70.963157653808594, -14.444452285766602 ], [ -70.962478637695312, -14.44373607635498 ], [ -70.962821960449162, -14.442911148071289 ], [ -70.964599609375, -14.442193031310978 ], [ -70.966171264648324, -14.440676689147949 ], [ -70.966423034667912, -14.439264297485295 ], [ -70.966468811035156, -14.435756683349609 ], [ -70.967269897460938, -14.434444427490178 ], [ -70.969802856445312, -14.431834220886174 ], [ -70.973518371582031, -14.429526329040527 ], [ -70.974205017089844, -14.428887367248535 ], [ -70.974136352539062, -14.428039550781193 ], [ -70.973243713378906, -14.425650596618596 ], [ -70.973220825195256, -14.422762870788574 ], [ -70.973548889160156, -14.420440673828011 ], [ -70.973403930664006, -14.420015335082894 ], [ -70.973716735839844, -14.419631958007812 ], [ -70.974128723144531, -14.418070793151855 ], [ -70.974555969238224, -14.417708396911621 ], [ -70.975250244140625, -14.41749382019043 ], [ -70.977546691894531, -14.417477607726994 ], [ -70.978897094726562, -14.41697883605957 ], [ -70.980461120605412, -14.414976119995117 ], [ -70.981353759765625, -14.412905693054199 ], [ -70.982673645019531, -14.411411285400391 ], [ -70.983528137206918, -14.409515380859375 ], [ -70.985397338867131, -14.406524658203125 ], [ -70.985877990722599, -14.405250549316349 ], [ -70.985786437988224, -14.403985977172795 ], [ -70.985496520996037, -14.403322219848519 ], [ -70.980331420898438, -14.398048400878906 ], [ -70.97943115234375, -14.396561622619629 ], [ -70.979042053222543, -14.395183563232422 ], [ -70.97918701171875, -14.393663406372013 ], [ -70.980072021484318, -14.392404556274414 ], [ -70.980415344238281, -14.391101837158203 ], [ -70.980400085449219, -14.390108108520508 ], [ -70.979927062988281, -14.38847827911377 ], [ -70.980445861816349, -14.386256217956486 ], [ -70.981376647949219, -14.384929656982365 ], [ -70.983436584472656, -14.383296012878361 ], [ -70.98431396484375, -14.381405830383301 ], [ -70.985893249511662, -14.379782676696721 ], [ -70.985717773437386, -14.379211425781193 ], [ -70.984245300292969, -14.379464149475098 ], [ -70.982070922851506, -14.379111289977971 ], [ -70.978851318359261, -14.37900352478016 ], [ -70.978317260742188, -14.378635406494084 ], [ -70.97821044921875, -14.377468109130859 ], [ -70.977760314941406, -14.377164840698185 ], [ -70.977111816406193, -14.377205848693848 ], [ -70.975875854492131, -14.378222465515137 ], [ -70.973197937011662, -14.378067016601506 ], [ -70.970443725585881, -14.377363204955998 ], [ -70.96990966796875, -14.376505851745605 ], [ -70.968971252441406, -14.373675346374455 ], [ -70.96685791015625, -14.370940208435059 ], [ -70.965042114257812, -14.367608070373478 ], [ -70.963615417480469, -14.362486839294434 ], [ -70.962593078613281, -14.361181259155273 ], [ -70.960884094238281, -14.360048294067383 ], [ -70.957992553710938, -14.358890533447266 ], [ -70.95599365234375, -14.357808113098031 ], [ -70.948158264160156, -14.352442741394043 ], [ -70.947105407714844, -14.35210132598877 ], [ -70.943702697753906, -14.35195255279541 ], [ -70.943008422851562, -14.351722717285156 ], [ -70.941421508789062, -14.350361824035588 ], [ -70.937408447265625, -14.346042633056584 ], [ -70.937057495117131, -14.345927238464299 ], [ -70.934234619140625, -14.343362808227539 ], [ -70.929550170898324, -14.340676307678223 ], [ -70.926712036132812, -14.340066909789982 ], [ -70.924530029296875, -14.340543746948185 ], [ -70.922782897949219, -14.341353416442814 ], [ -70.9208984375, -14.343180656433105 ], [ -70.919326782226506, -14.344117164611816 ], [ -70.918441772460938, -14.344363212585449 ], [ -70.916603088378906, -14.344169616699219 ], [ -70.915023803710881, -14.343717575073129 ], [ -70.913818359375, -14.34289646148676 ], [ -70.912506103515625, -14.341618537902832 ], [ -70.912536621093693, -14.340112686157227 ], [ -70.911453247070312, -14.337116241455078 ], [ -70.910949707031136, -14.336511611938477 ], [ -70.908714294433594, -14.334932327270451 ], [ -70.908317565917969, -14.334220886230412 ], [ -70.908195495605469, -14.333326339721566 ], [ -70.9088134765625, -14.331937789916992 ], [ -70.910827636718693, -14.329989433288517 ], [ -70.912773132324219, -14.327260971069336 ], [ -70.913673400878906, -14.325301170349064 ], [ -70.91412353515625, -14.323378562927246 ], [ -70.914688110351562, -14.317850112914982 ], [ -70.914543151855412, -14.315608024597054 ], [ -70.913658142089844, -14.31277942657465 ], [ -70.913894653320256, -14.310436248779297 ], [ -70.913894653320256, -14.307028770446664 ], [ -70.913581848144531, -14.303109169006348 ], [ -70.912422180175781, -14.301374435424691 ], [ -70.910598754882812, -14.29987907409668 ], [ -70.908287048339844, -14.298396110534668 ], [ -70.903091430664062, -14.295890808105355 ], [ -70.900177001953011, -14.293160438537598 ], [ -70.896385192871094, -14.290477752685547 ], [ -70.892982482910156, -14.287460327148438 ], [ -70.892265319824219, -14.286204338073674 ], [ -70.891853332519474, -14.283823013305607 ], [ -70.891799926757812, -14.280591011047363 ], [ -70.892265319824219, -14.274827003478947 ], [ -70.891952514648381, -14.273605346679688 ], [ -70.891189575195256, -14.272616386413574 ], [ -70.889823913574219, -14.271681785583496 ], [ -70.888626098632756, -14.271209716796875 ], [ -70.886695861816349, -14.271248817443848 ], [ -70.882896423339787, -14.270563125610295 ], [ -70.880706787109318, -14.270694732665959 ], [ -70.880203247070312, -14.270209312438908 ], [ -70.880340576171761, -14.269577980041447 ], [ -70.881301879882812, -14.268385887145939 ], [ -70.881568908691349, -14.267427444457894 ], [ -70.881736755371037, -14.264296531677189 ], [ -70.88092041015625, -14.260260581970158 ], [ -70.881355285644474, -14.257428169250488 ], [ -70.882827758789062, -14.25584602355957 ], [ -70.882324218749943, -14.254584312438965 ], [ -70.882431030273381, -14.253269195556641 ], [ -70.884132385253849, -14.250926017761174 ], [ -70.887672424316349, -14.247712135314941 ], [ -70.891067504882812, -14.244099617004338 ], [ -70.891853332519474, -14.242371559143066 ], [ -70.892234802246037, -14.240790367126465 ], [ -70.891815185546875, -14.239447593688965 ], [ -70.892021179199219, -14.238504409789982 ], [ -70.892959594726562, -14.237914085388184 ], [ -70.895492553710881, -14.237112045288086 ], [ -70.897071838378906, -14.236208915710449 ], [ -70.898590087890625, -14.234403610229435 ], [ -70.89971923828125, -14.232080459594727 ], [ -70.898971557617188, -14.228916168212834 ], [ -70.89678955078125, -14.224539756774902 ], [ -70.896781921386719, -14.223439216613656 ], [ -70.897514343261719, -14.221053123474121 ], [ -70.897583007812443, -14.220070838928166 ], [ -70.896156311035099, -14.214776039123535 ], [ -70.895606994628906, -14.211774826049805 ], [ -70.894317626953125, -14.208657264709359 ], [ -70.893417358398438, -14.207647323608398 ], [ -70.892585754394531, -14.207083702087289 ], [ -70.891464233398381, -14.206668853759766 ], [ -70.888908386230412, -14.20647144317627 ], [ -70.887275695800724, -14.205315589904671 ], [ -70.885902404785156, -14.203621864318848 ], [ -70.8834228515625, -14.198916435241699 ], [ -70.882583618164062, -14.197728157043457 ], [ -70.882522583007756, -14.196140289306527 ], [ -70.882804870605412, -14.19417762756342 ], [ -70.884536743163949, -14.19207763671875 ], [ -70.885284423828068, -14.191739082336369 ], [ -70.887351989746094, -14.189582824707031 ], [ -70.888511657714787, -14.189053535461426 ], [ -70.889755249023381, -14.186855316162053 ], [ -70.889778137206918, -14.184883117675668 ], [ -70.88848876953125, -14.180960655212402 ], [ -70.8878173828125, -14.17716121673584 ], [ -70.8878173828125, -14.176168441772461 ], [ -70.887275695800724, -14.17495059967041 ], [ -70.887039184570312, -14.172908782958984 ], [ -70.886276245117188, -14.171467781066895 ], [ -70.884864807128906, -14.169947624206486 ], [ -70.882423400878849, -14.168343544006348 ], [ -70.881782531738281, -14.168369293212834 ], [ -70.879890441894531, -14.16962718963623 ], [ -70.876235961913949, -14.17051982879633 ], [ -70.874954223632812, -14.171237945556584 ], [ -70.874336242675781, -14.17136287689209 ], [ -70.873245239257756, -14.171180725097656 ], [ -70.87091064453125, -14.16923713684082 ], [ -70.868659973144531, -14.169694900512695 ], [ -70.867584228515625, -14.169631004333496 ], [ -70.866119384765568, -14.167431831359806 ], [ -70.865036010742188, -14.164201736450138 ], [ -70.864517211914062, -14.163571357727051 ], [ -70.863418579101562, -14.160808563232422 ], [ -70.862831115722656, -14.159906387329102 ], [ -70.861343383789006, -14.15885066986084 ], [ -70.859100341796875, -14.158317565917969 ], [ -70.857650756835938, -14.158489227294922 ], [ -70.855873107910156, -14.15942478179926 ], [ -70.854530334472656, -14.159293174743596 ], [ -70.854080200195256, -14.158825874328613 ], [ -70.853492736816406, -14.157417297363168 ], [ -70.8524169921875, -14.156326293945312 ], [ -70.850082397460881, -14.151926994323674 ], [ -70.847579956054688, -14.149557113647461 ], [ -70.845794677734318, -14.14829158782959 ], [ -70.844810485839844, -14.148038864135742 ], [ -70.842430114746094, -14.148260116577148 ], [ -70.841728210449219, -14.148083686828556 ], [ -70.839996337890511, -14.147053718566895 ], [ -70.834419250488281, -14.142806053161507 ], [ -70.833389282226506, -14.142417907714787 ], [ -70.830375671386719, -14.142258644103947 ], [ -70.825424194335938, -14.141261100768986 ], [ -70.821472167968693, -14.141363143920898 ], [ -70.820587158203125, -14.140862464904785 ], [ -70.820442199706974, -14.140011787414551 ], [ -70.821319580078125, -14.137555122375488 ], [ -70.821624755859375, -14.135964393615666 ], [ -70.821701049804688, -14.134441375732422 ], [ -70.821441650390625, -14.133488655090275 ], [ -70.818824768066293, -14.131240844726562 ], [ -70.814201354980469, -14.126742362976074 ], [ -70.809013366699219, -14.123872756957951 ], [ -70.807456970214787, -14.122111320495492 ], [ -70.806465148925781, -14.119994163513127 ], [ -70.806083679199219, -14.118328094482422 ], [ -70.805198669433594, -14.116165161132812 ], [ -70.805908203125, -14.111603736877441 ], [ -70.805770874023438, -14.104430198669377 ], [ -70.806503295898381, -14.100908279418888 ], [ -70.806312561035099, -14.099515914916992 ], [ -70.805572509765511, -14.098258018493596 ], [ -70.804557800292969, -14.09709453582758 ], [ -70.801307678222656, -14.094168663024789 ], [ -70.7979736328125, -14.090583801269531 ], [ -70.79510498046875, -14.088343620300236 ], [ -70.789222717285156, -14.07945537567133 ], [ -70.789787292480469, -14.078653335571289 ], [ -70.79132080078125, -14.077658653259221 ], [ -70.792076110839844, -14.076535224914494 ], [ -70.796699523925668, -14.071917533874455 ], [ -70.797607421875, -14.071500778198242 ], [ -70.801170349121037, -14.070562362670842 ], [ -70.805534362792912, -14.06999683380127 ], [ -70.809089660644474, -14.069058418273926 ], [ -70.812568664550781, -14.069108009338322 ], [ -70.815460205078068, -14.068283081054688 ], [ -70.816795349121037, -14.067675590515137 ], [ -70.818634033203011, -14.067607879638672 ], [ -70.819137573242188, -14.067814826965332 ], [ -70.8201904296875, -14.068826675415039 ], [ -70.821868896484318, -14.071590423583871 ], [ -70.823509216308594, -14.072879791259766 ], [ -70.824066162109318, -14.073583602905273 ], [ -70.826873779296875, -14.075310707092228 ], [ -70.829269409179688, -14.076207160949707 ], [ -70.829917907714844, -14.075723648071232 ], [ -70.830360412597599, -14.072979927062988 ], [ -70.830978393554688, -14.071773529052678 ], [ -70.831672668456974, -14.070936203002873 ], [ -70.832138061523438, -14.069944381713867 ], [ -70.832221984863281, -14.068773269653207 ], [ -70.830924987792912, -14.066007614135629 ], [ -70.830978393554688, -14.065467834472599 ], [ -70.831405639648381, -14.064907073974553 ], [ -70.832244873046818, -14.06417274475092 ], [ -70.83522796630848, -14.062393188476562 ], [ -70.837089538574219, -14.060746192932129 ], [ -70.83831787109375, -14.059966087341309 ], [ -70.840934753417912, -14.058856010436955 ], [ -70.8441162109375, -14.058000564575082 ], [ -70.845870971679688, -14.057216644287109 ], [ -70.847160339355469, -14.056356430053654 ], [ -70.848152160644531, -14.055184364318791 ], [ -70.849205017089844, -14.053190231323242 ], [ -70.850883483886719, -14.047687530517578 ], [ -70.850898742675781, -14.043123245239144 ], [ -70.851486206054688, -14.041032791137695 ], [ -70.852462768554631, -14.039866447448674 ], [ -70.854568481445256, -14.037972450256348 ], [ -70.856147766113281, -14.035989761352539 ], [ -70.860038757324219, -14.032293319702148 ], [ -70.861541748046818, -14.029314041137695 ], [ -70.86183929443348, -14.026191711425668 ], [ -70.861450195312443, -14.02538013458252 ], [ -70.861289978027344, -14.024222373962402 ], [ -70.860603332519531, -14.023164749145451 ], [ -70.860542297363281, -14.022441864013615 ], [ -70.859870910644531, -14.020960807800293 ], [ -70.858665466308537, -14.019269943237248 ], [ -70.856521606445312, -14.016934394836369 ], [ -70.854377746581974, -14.01380443572998 ], [ -70.852676391601506, -14.012295722961312 ], [ -70.850090026855412, -14.010573387145996 ], [ -70.848129272460938, -14.01006031036377 ], [ -70.846595764160156, -14.010177612304688 ], [ -70.84326171875, -14.011238098144531 ], [ -70.842071533203068, -14.011055946349984 ], [ -70.840576171875, -14.010046005249023 ], [ -70.839958190917969, -14.009045600891056 ], [ -70.839973449706974, -14.007727622985783 ], [ -70.840988159179688, -14.006441116333008 ], [ -70.842727661132756, -14.005638122558594 ], [ -70.846527099609375, -14.002950668334904 ], [ -70.847915649413949, -14.002769470214844 ], [ -70.848464965820256, -14.002307891845703 ], [ -70.849822998046761, -14.002059936523381 ], [ -70.851211547851562, -14.001362800598145 ], [ -70.852569580078068, -13.999673843383789 ], [ -70.853027343749943, -13.997461318969727 ], [ -70.853065490722543, -13.996018409729004 ], [ -70.852210998535156, -13.993170738220101 ], [ -70.851463317871094, -13.991822242736816 ], [ -70.850234985351562, -13.99025917053217 ], [ -70.848464965820256, -13.986386299133301 ], [ -70.847984313964787, -13.985630035400334 ], [ -70.847091674804688, -13.984848022460938 ], [ -70.846603393554688, -13.983982086181641 ], [ -70.845787048339787, -13.98226261138916 ], [ -70.843811035156136, -13.975589752197266 ], [ -70.844085693359318, -13.973726272583008 ], [ -70.844596862792969, -13.973088264465275 ], [ -70.846328735351562, -13.971770286560059 ], [ -70.847297668457031, -13.96954441070551 ], [ -70.847465515136719, -13.96684741973877 ], [ -70.847122192382756, -13.964461326599064 ], [ -70.845184326171875, -13.960801124572754 ], [ -70.842262268066349, -13.95769214630127 ], [ -70.839744567871094, -13.954266548156738 ], [ -70.837013244628849, -13.947607040405273 ], [ -70.836761474609375, -13.945296287536507 ], [ -70.835914611816406, -13.943800926208496 ], [ -70.835350036621094, -13.941995620727482 ], [ -70.834251403808537, -13.93992900848383 ], [ -70.833015441894474, -13.938481330871468 ], [ -70.831962585449162, -13.936787605285645 ], [ -70.829765319824162, -13.934611320495549 ], [ -70.828887939453125, -13.934121131896973 ], [ -70.828208923339844, -13.933394432067871 ], [ -70.824005126953125, -13.930698394775334 ], [ -70.822441101074162, -13.92930793762207 ], [ -70.82171630859375, -13.928915977478027 ], [ -70.820205688476562, -13.927348136901799 ], [ -70.819297790527287, -13.926818847656136 ], [ -70.814521789550724, -13.921856880187931 ], [ -70.812934875488281, -13.919647216796818 ], [ -70.811538696289062, -13.917430877685547 ], [ -70.811393737792969, -13.916632652282715 ], [ -70.810081481933594, -13.913860321044922 ], [ -70.809883117675781, -13.91089916229248 ], [ -70.8101806640625, -13.90839672088623 ], [ -70.810974121093693, -13.906107902526855 ], [ -70.8125, -13.903132438659611 ], [ -70.814277648925781, -13.900617599487248 ], [ -70.815193176269474, -13.899741172790527 ], [ -70.816894531249943, -13.898839950561523 ], [ -70.821365356445256, -13.897529602050724 ], [ -70.826858520507812, -13.897116661071721 ], [ -70.829437255859375, -13.895979881286564 ], [ -70.830520629882756, -13.894943237304631 ], [ -70.830635070800724, -13.893989562988224 ], [ -70.830215454101562, -13.890543937683049 ], [ -70.829833984375, -13.889725685119572 ], [ -70.829551696777344, -13.88813304901123 ], [ -70.826034545898438, -13.87888240814209 ], [ -70.825866699218693, -13.876742362976074 ], [ -70.826194763183594, -13.87543773651123 ], [ -70.826873779296875, -13.874061584472599 ], [ -70.82763671875, -13.872829437255803 ], [ -70.829666137695256, -13.870401382446232 ], [ -70.830551147460881, -13.868325233459473 ], [ -70.831733703613281, -13.862994194030648 ], [ -70.831344604492188, -13.858522415161133 ], [ -70.831489562988224, -13.857830047607422 ], [ -70.832008361816406, -13.857181549072209 ], [ -70.837593078613224, -13.852810859680119 ], [ -70.838256835937443, -13.852496147155705 ], [ -70.845680236816406, -13.851992607116642 ], [ -70.849494934082031, -13.852994918823242 ], [ -70.851600646972599, -13.853202819824219 ], [ -70.854003906249943, -13.852628707885742 ], [ -70.856529235839844, -13.8502902984618 ], [ -70.85784912109375, -13.848337173461914 ], [ -70.860939025878906, -13.844900131225586 ], [ -70.862442016601562, -13.842768669128361 ], [ -70.864181518554688, -13.84172534942627 ], [ -70.86920166015625, -13.842017173766976 ], [ -70.870925903320312, -13.841648101806584 ], [ -70.872680664062443, -13.840866088867131 ], [ -70.874992370605412, -13.839239120483398 ], [ -70.878181457519531, -13.835879325866642 ], [ -70.879135131835938, -13.835184097289982 ], [ -70.880073547363281, -13.833747863769531 ], [ -70.880325317382756, -13.83288669586176 ], [ -70.879791259765625, -13.830718994140625 ], [ -70.879692077636719, -13.829383850097656 ], [ -70.879158020019474, -13.827660560607796 ], [ -70.878799438476506, -13.824649810790959 ], [ -70.878875732421818, -13.823847770690918 ], [ -70.879798889160156, -13.821696281433049 ], [ -70.880203247070312, -13.819856643676701 ], [ -70.879913330078125, -13.817803382873478 ], [ -70.879249572753906, -13.815653800964355 ], [ -70.877609252929688, -13.813164710998421 ], [ -70.875694274902344, -13.811102867126408 ], [ -70.866958618164006, -13.803936958312988 ], [ -70.862823486328125, -13.79985332489008 ], [ -70.862075805664062, -13.799966812133789 ], [ -70.860527038574219, -13.799732208251953 ], [ -70.85540771484375, -13.798364639282227 ], [ -70.85357666015625, -13.798615455627441 ], [ -70.852447509765625, -13.799164772033691 ], [ -70.851676940917969, -13.800169944763184 ], [ -70.85174560546875, -13.805114746093693 ], [ -70.850021362304688, -13.808792114257812 ], [ -70.850326538085938, -13.810269355773869 ], [ -70.850242614746094, -13.812251091003361 ], [ -70.850028991699219, -13.813862800598145 ], [ -70.849662780761719, -13.814767837524414 ], [ -70.848297119140511, -13.81584644317627 ], [ -70.843811035156136, -13.8173570632934 ], [ -70.842323303222656, -13.818413734435921 ], [ -70.838211059570312, -13.820391654968262 ], [ -70.834312438964844, -13.82430267333973 ], [ -70.8323974609375, -13.82528114318842 ], [ -70.829246520996094, -13.825905799865723 ], [ -70.828918457031193, -13.826231956481934 ], [ -70.828620910644474, -13.827345848083496 ], [ -70.828208923339844, -13.82752799987793 ], [ -70.827095031738224, -13.827563285827637 ], [ -70.826347351074162, -13.827216148376408 ], [ -70.825172424316406, -13.825743675231934 ], [ -70.824066162109318, -13.824795722961369 ], [ -70.820587158203125, -13.823690414428711 ], [ -70.818237304687443, -13.822270393371582 ], [ -70.816574096679688, -13.820871353149414 ], [ -70.814102172851562, -13.82091045379633 ], [ -70.811042785644531, -13.821553230285588 ], [ -70.808937072753906, -13.821686744689941 ], [ -70.806404113769474, -13.821212768554631 ], [ -70.804634094238281, -13.820089340209961 ], [ -70.804008483886662, -13.819997787475586 ], [ -70.802940368652344, -13.820294380187931 ], [ -70.801231384277344, -13.821509361266976 ], [ -70.799026489257812, -13.822636604309082 ], [ -70.798171997070312, -13.822911262512207 ], [ -70.796958923339787, -13.82286262512207 ], [ -70.79595947265625, -13.821963310241642 ], [ -70.795639038085881, -13.820190429687443 ], [ -70.793876647949219, -13.817071914672795 ], [ -70.792526245117188, -13.817088127136174 ], [ -70.790870666503849, -13.816560745239258 ], [ -70.788078308105469, -13.817153930664062 ], [ -70.786705017089844, -13.817110061645508 ], [ -70.779876708984375, -13.815658569335938 ], [ -70.777618408203068, -13.814907073974609 ], [ -70.773323059081974, -13.81517505645752 ], [ -70.771751403808594, -13.814202308654728 ], [ -70.770195007324219, -13.814174652099553 ], [ -70.768814086914062, -13.813654899597111 ], [ -70.768287658691406, -13.813673973083439 ], [ -70.764930725097599, -13.814915657043457 ], [ -70.760437011718693, -13.815079689025879 ], [ -70.758537292480412, -13.81627368927002 ], [ -70.757514953613281, -13.816427230834904 ], [ -70.752410888671875, -13.816150665283203 ], [ -70.749000549316349, -13.817732810974121 ], [ -70.746284484863281, -13.818541526794377 ], [ -70.740478515625, -13.821011543273926 ], [ -70.738304138183537, -13.82219123840332 ], [ -70.737228393554688, -13.823163986206055 ], [ -70.735206604003906, -13.82315731048584 ], [ -70.73388671875, -13.823529243469181 ], [ -70.731788635253906, -13.823295593261719 ], [ -70.728645324707031, -13.824530601501408 ], [ -70.728240966796875, -13.824912071227971 ], [ -70.728080749511719, -13.826063156127816 ], [ -70.727249145507756, -13.826896667480469 ], [ -70.725685119628906, -13.827645301818791 ], [ -70.723442077636662, -13.828139305114746 ], [ -70.721153259277287, -13.829290390014592 ], [ -70.720420837402344, -13.829951286315918 ], [ -70.719497680664062, -13.831587791442814 ], [ -70.718978881835824, -13.832091331481877 ], [ -70.717445373535099, -13.833237648010254 ], [ -70.715080261230469, -13.834585189819336 ], [ -70.711402893066406, -13.839068412780762 ], [ -70.710655212402287, -13.841732025146428 ], [ -70.709854125976562, -13.842612266540527 ], [ -70.709266662597656, -13.842819213867188 ], [ -70.708831787109318, -13.842358589172363 ], [ -70.708549499511662, -13.841604232788029 ], [ -70.70925140380848, -13.840254783630371 ], [ -70.709724426269418, -13.838163375854435 ], [ -70.709754943847656, -13.836819648742562 ], [ -70.709373474121094, -13.833692550659066 ], [ -70.708473205566349, -13.829561233520451 ], [ -70.707412719726506, -13.826289176940918 ], [ -70.706504821777344, -13.824534416198674 ], [ -70.70489501953125, -13.822564125061035 ], [ -70.702560424804631, -13.820666313171387 ], [ -70.701858520507812, -13.81961536407465 ], [ -70.701690673828068, -13.817844390869141 ], [ -70.701797485351506, -13.816575050353947 ], [ -70.702278137206974, -13.814933776855412 ], [ -70.702163696289006, -13.812424659729004 ], [ -70.701675415039062, -13.810043334960938 ], [ -70.700279235839787, -13.806717872619629 ], [ -70.699775695800724, -13.803389549255257 ], [ -70.699897766113224, -13.80241680145258 ], [ -70.700431823730469, -13.801183700561523 ], [ -70.702217102050781, -13.799130439758244 ], [ -70.7025146484375, -13.798376083373967 ], [ -70.704421997070312, -13.79682445526123 ], [ -70.705619812011662, -13.795140266418343 ], [ -70.705833435058594, -13.794171333312931 ], [ -70.705863952636719, -13.788425445556584 ], [ -70.706184387206974, -13.786374092102051 ], [ -70.7081298828125, -13.781628608703613 ], [ -70.711074829101562, -13.776448249816781 ], [ -70.712905883789062, -13.774080276489201 ], [ -70.714492797851449, -13.772882461547852 ], [ -70.717231750488224, -13.771819114685002 ], [ -70.718788146972543, -13.771702766418457 ], [ -70.720344543457031, -13.771161079406738 ], [ -70.721710205078068, -13.771023750305176 ], [ -70.722183227539006, -13.770726203918343 ], [ -70.72198486328125, -13.769585609435921 ], [ -70.71929931640625, -13.766615867614746 ], [ -70.719055175781193, -13.765864372253418 ], [ -70.719154357910099, -13.76468372344965 ], [ -70.7213134765625, -13.760453224182129 ], [ -70.723846435546875, -13.754310607910156 ], [ -70.725723266601506, -13.751115798950195 ], [ -70.726791381835881, -13.747508049011117 ], [ -70.727996826171875, -13.746040344238281 ], [ -70.73199462890625, -13.742464065551758 ], [ -70.734184265136719, -13.739041328430119 ], [ -70.734832763671875, -13.735893249511605 ], [ -70.734802246093693, -13.734720230102539 ], [ -70.734580993652287, -13.734230041503906 ], [ -70.734420776367131, -13.732965469360295 ], [ -70.733016967773438, -13.728402137756348 ], [ -70.733192443847656, -13.727333068847656 ], [ -70.732711791992074, -13.724774360656738 ], [ -70.732673645019474, -13.717492103576603 ], [ -70.733467102050724, -13.715604782104435 ], [ -70.735160827636662, -13.714387893676644 ], [ -70.735656738281193, -13.713747024536133 ], [ -70.735977172851562, -13.712696075439396 ], [ -70.735931396484318, -13.711885452270451 ], [ -70.734107971191349, -13.709309577941781 ], [ -70.731597900390625, -13.706805229187012 ], [ -70.727783203125, -13.703986167907658 ], [ -70.725601196289062, -13.702686309814396 ], [ -70.723251342773381, -13.701663017272949 ], [ -70.721611022949162, -13.700099945068303 ], [ -70.72113037109375, -13.698299407958928 ], [ -70.721298217773438, -13.696956634521428 ], [ -70.721076965331918, -13.692199707031193 ], [ -70.721252441406193, -13.686636924743596 ], [ -70.720870971679631, -13.683870315551644 ], [ -70.719551086425668, -13.681837081909123 ], [ -70.715873718261719, -13.679165840148869 ], [ -70.715042114257756, -13.677573204040471 ], [ -70.715034484863224, -13.6751451492309 ], [ -70.715423583984318, -13.673953056335392 ], [ -70.715911865234318, -13.670030593872013 ], [ -70.716468811035099, -13.668622970581055 ], [ -70.716506958007812, -13.664528846740723 ], [ -70.715644836425781, -13.662655830383244 ], [ -70.71163177490223, -13.660819053649789 ], [ -70.707168579101562, -13.659749984741211 ], [ -70.703140258789006, -13.659399032592773 ], [ -70.701011657714787, -13.658838272094727 ], [ -70.699188232421875, -13.657808303832951 ], [ -70.696754455566293, -13.655233383178654 ], [ -70.695579528808537, -13.654361724853516 ], [ -70.693344116210938, -13.653313636779728 ], [ -70.690849304199219, -13.652738571166992 ], [ -70.689292907714787, -13.652810096740723 ], [ -70.688316345214844, -13.653092384338379 ], [ -70.685585021972599, -13.65498161315918 ], [ -70.684585571289062, -13.655424118041935 ], [ -70.681686401367074, -13.658161163330021 ], [ -70.677528381347656, -13.659567832946721 ], [ -70.675552368164006, -13.66053390502924 ], [ -70.672386169433594, -13.6612291336059 ], [ -70.667526245117188, -13.661440849304199 ], [ -70.66387939453125, -13.660573005676213 ], [ -70.660881042480412, -13.657445907592717 ], [ -70.659423828125, -13.655155181884766 ], [ -70.658126831054631, -13.653628349304142 ], [ -70.657089233398438, -13.652887344360352 ], [ -70.655349731445256, -13.652336120605412 ], [ -70.654327392578125, -13.651739120483398 ], [ -70.648590087890568, -13.646841049194279 ], [ -70.645881652832031, -13.643556594848633 ], [ -70.642295837402287, -13.63994026184082 ], [ -70.639175415039062, -13.635869026184025 ], [ -70.638504028320312, -13.634606361389103 ], [ -70.63519287109375, -13.631633758544865 ], [ -70.633316040039006, -13.630544662475529 ], [ -70.6300048828125, -13.628125190734806 ], [ -70.626045227050781, -13.626233100891056 ], [ -70.625015258789006, -13.625457763671761 ], [ -70.623321533203011, -13.622894287109375 ], [ -70.622352600097599, -13.620856285095101 ], [ -70.620704650878906, -13.614405632019043 ], [ -70.618339538574162, -13.611108779907113 ], [ -70.616523742675724, -13.609326362609863 ], [ -70.615242004394531, -13.608572006225586 ], [ -70.6143798828125, -13.608378410339355 ], [ -70.612648010253906, -13.608744621276742 ], [ -70.612113952636719, -13.609086990356388 ], [ -70.611076354980469, -13.609023094177189 ], [ -70.606964111328125, -13.604316711425781 ], [ -70.605010986328011, -13.602684974670353 ], [ -70.60247802734375, -13.599961280822754 ], [ -70.600662231445312, -13.598757743835449 ], [ -70.599082946777287, -13.598252296447754 ], [ -70.59808349609375, -13.598170280456543 ], [ -70.594673156738281, -13.598874092101937 ], [ -70.592758178710938, -13.598997116088754 ], [ -70.588722229003906, -13.598426818847656 ], [ -70.58721923828125, -13.597967147827148 ], [ -70.586196899414006, -13.597058296203556 ], [ -70.585502624511719, -13.595997810363713 ], [ -70.585029602050781, -13.593169212341252 ], [ -70.584335327148438, -13.591317176818791 ], [ -70.58331298828125, -13.590151786804086 ], [ -70.582420349121094, -13.589541435241642 ], [ -70.581275939941406, -13.589252471923828 ], [ -70.579086303710938, -13.589525222778263 ], [ -70.577651977539062, -13.589835166931096 ], [ -70.575538635253849, -13.590671539306641 ], [ -70.574356079101562, -13.590415954589844 ], [ -70.573585510253906, -13.589878082275334 ], [ -70.572807312011719, -13.588179588317871 ], [ -70.572532653808594, -13.587029457092228 ], [ -70.571701049804631, -13.586509704589844 ], [ -70.568443298339844, -13.586047172546273 ], [ -70.565032958984318, -13.586726188659668 ], [ -70.562736511230412, -13.586847305297795 ], [ -70.561271667480469, -13.586729049682617 ], [ -70.560150146484375, -13.586338996887207 ], [ -70.559768676757812, -13.585729598998967 ], [ -70.559738159179688, -13.584746360778809 ], [ -70.558868408203125, -13.58458423614502 ], [ -70.558471679687386, -13.583603858947697 ], [ -70.557975769042912, -13.583090782165414 ], [ -70.556968688964844, -13.582667350769043 ], [ -70.555534362792969, -13.582965850830078 ], [ -70.554718017578068, -13.582393646240234 ], [ -70.553482055664006, -13.58071231842041 ], [ -70.552040100097656, -13.577521324157715 ], [ -70.551399230956974, -13.576877593994141 ], [ -70.550582885742188, -13.576465606689453 ], [ -70.549430847167969, -13.576185226440373 ], [ -70.548507690429688, -13.576231002807617 ], [ -70.544151306152287, -13.57921028137207 ], [ -70.543426513671875, -13.579214096069336 ], [ -70.542572021484375, -13.578487396240234 ], [ -70.5421142578125, -13.577359199523926 ], [ -70.541542053222656, -13.573625564575082 ], [ -70.541481018066349, -13.570865631103516 ], [ -70.542251586914006, -13.568012237548771 ], [ -70.541206359863224, -13.563656806945744 ], [ -70.541213989257699, -13.561138153076172 ], [ -70.542137145996037, -13.557115554809513 ], [ -70.544212341308594, -13.553845405578556 ], [ -70.544830322265568, -13.551600456237736 ], [ -70.546173095703011, -13.54893779754633 ], [ -70.546417236328125, -13.547823905944824 ], [ -70.545455932617188, -13.544252395629769 ], [ -70.544517517089787, -13.542929649352971 ], [ -70.542823791503849, -13.539544105529728 ], [ -70.541114807128793, -13.535185813903752 ], [ -70.538925170898324, -13.530971527099609 ], [ -70.537895202636719, -13.528383255004883 ], [ -70.536056518554631, -13.525381088256836 ], [ -70.534584045410156, -13.523319244384652 ], [ -70.53387451171875, -13.522746086120605 ], [ -70.529655456542912, -13.520066261291447 ], [ -70.526519775390568, -13.518800735473633 ], [ -70.524024963378849, -13.516537666320744 ], [ -70.521003723144531, -13.51448917388916 ], [ -70.515693664550781, -13.508415222167912 ], [ -70.514129638671761, -13.506008148193359 ], [ -70.511886596679688, -13.503353118896428 ], [ -70.506385803222599, -13.501767158508244 ], [ -70.501686096191406, -13.501511573791504 ], [ -70.5001220703125, -13.501186370849553 ], [ -70.49800872802723, -13.499850273132324 ], [ -70.494865417480355, -13.497302055358887 ], [ -70.493194580078125, -13.495506286621094 ], [ -70.491493225097599, -13.493130683898926 ], [ -70.487594604492131, -13.484998703002873 ], [ -70.483818054199219, -13.478996276855469 ], [ -70.481422424316406, -13.476753234863224 ], [ -70.476783752441406, -13.470889091491699 ], [ -70.475837707519531, -13.470169067382756 ], [ -70.473159790039062, -13.468831062316895 ], [ -70.472541809081974, -13.46827316284174 ], [ -70.470901489257756, -13.466151237487736 ], [ -70.468811035156193, -13.460954666137695 ], [ -70.466606140136662, -13.457137107849121 ], [ -70.465476989746037, -13.45590877532959 ], [ -70.464378356933594, -13.455392837524414 ], [ -70.463447570800781, -13.454482078552246 ], [ -70.462112426757812, -13.45363807678217 ], [ -70.460342407226449, -13.451857566833439 ], [ -70.459098815917855, -13.450238227844238 ], [ -70.458496093749943, -13.448801994323674 ], [ -70.458740234375, -13.447248458862248 ], [ -70.45806884765625, -13.444774627685547 ], [ -70.457206726074219, -13.443567276000977 ], [ -70.454978942871037, -13.44155216217041 ], [ -70.454612731933537, -13.440688133239689 ], [ -70.454727172851562, -13.440187454223576 ], [ -70.4571533203125, -13.438597679138127 ], [ -70.460716247558537, -13.43729305267334 ], [ -70.472412109375, -13.435620307922363 ], [ -70.47296142578125, -13.434836387634277 ], [ -70.473159790039062, -13.433387756347543 ], [ -70.472938537597656, -13.432121276855412 ], [ -70.472259521484261, -13.430917739868164 ], [ -70.467300415038949, -13.424240112304688 ], [ -70.464286804199219, -13.419379234313965 ], [ -70.463310241699219, -13.418387413024846 ], [ -70.460914611816293, -13.416910171508732 ], [ -70.459365844726506, -13.41553783416748 ], [ -70.459037780761719, -13.414261817932129 ], [ -70.45900726318348, -13.411464691162109 ], [ -70.458656311035156, -13.410537719726562 ], [ -70.457611083984375, -13.409473419189453 ], [ -70.455528259277344, -13.408101081848145 ], [ -70.453224182128906, -13.405696868896428 ], [ -70.452735900878906, -13.403921127319336 ], [ -70.452354431152344, -13.403402328491211 ], [ -70.452186584472656, -13.40240573883051 ], [ -70.451812744140625, -13.394708633422795 ], [ -70.451522827148438, -13.393448829650822 ], [ -70.450691223144474, -13.391974449157601 ], [ -70.449615478515625, -13.391025543212834 ], [ -70.445640563964787, -13.389340400695744 ], [ -70.44482421875, -13.388675689697266 ], [ -70.444412231445199, -13.388019561767578 ], [ -70.445198059082031, -13.384021759033203 ], [ -70.447525024414006, -13.379546165466252 ], [ -70.447937011718693, -13.372493743896484 ], [ -70.449295043945312, -13.369974136352539 ], [ -70.450431823730469, -13.367163658142033 ], [ -70.452377319335938, -13.364583969116097 ], [ -70.45361328125, -13.361909866332894 ], [ -70.453941345214787, -13.360094070434513 ], [ -70.453437805175724, -13.359139442443848 ], [ -70.452194213867188, -13.358142852783089 ], [ -70.450805664062386, -13.357559204101506 ], [ -70.446792602539006, -13.357757568359318 ], [ -70.443801879882812, -13.357621192932129 ], [ -70.435676574707031, -13.355337142944336 ], [ -70.434341430664062, -13.354637145996094 ], [ -70.433303833007812, -13.351598739623967 ], [ -70.43243408203125, -13.350763320922852 ], [ -70.430526733398438, -13.351216316223145 ], [ -70.426994323730469, -13.35344123840332 ], [ -70.422111511230469, -13.352251052856388 ], [ -70.418487548828125, -13.351952552795353 ], [ -70.417472839355469, -13.352636337280217 ], [ -70.417327880859261, -13.353618621826172 ], [ -70.417442321777344, -13.354999542236214 ], [ -70.416664123535043, -13.356245994567871 ], [ -70.415641784667969, -13.357329368591252 ], [ -70.413703918456918, -13.358456611633187 ], [ -70.411308288574162, -13.359244346618596 ], [ -70.409400939941349, -13.361137390136719 ], [ -70.407974243164006, -13.361788749694824 ], [ -70.404312133789062, -13.364797592163086 ], [ -70.400947570800781, -13.366963386535645 ], [ -70.400497436523438, -13.367070198059082 ], [ -70.400375366210938, -13.362796783447209 ], [ -70.400604248046818, -13.359307289123478 ], [ -70.400093078613281, -13.356234550476074 ], [ -70.399406433105469, -13.354528427124023 ], [ -70.398391723632812, -13.35277080535883 ], [ -70.397727966308594, -13.348690986633244 ], [ -70.396354675292969, -13.346836090087891 ], [ -70.395919799804688, -13.345520973205566 ], [ -70.393928527831974, -13.341769218444824 ], [ -70.3934326171875, -13.339822769165039 ], [ -70.3934326171875, -13.338523864746094 ], [ -70.394142150878849, -13.334829330444222 ], [ -70.394523620605412, -13.331087112426701 ], [ -70.395126342773438, -13.33039379119873 ], [ -70.396659851074219, -13.329783439636174 ], [ -70.397468566894474, -13.328885078430119 ], [ -70.397682189941293, -13.32808780670166 ], [ -70.397254943847656, -13.32612323760975 ], [ -70.396102905273438, -13.324929237365723 ], [ -70.395202636718636, -13.322707176208439 ], [ -70.393074035644474, -13.319411277770996 ], [ -70.392425537109318, -13.317950248718205 ], [ -70.392738342285156, -13.315826416015625 ], [ -70.393714904785156, -13.31353759765625 ], [ -70.393882751464844, -13.31208610534668 ], [ -70.394569396972656, -13.310567855834904 ], [ -70.394447326660156, -13.309211730956974 ], [ -70.393836975097599, -13.308778762817326 ], [ -70.392097473144531, -13.308421134948674 ], [ -70.38881683349598, -13.306909561157227 ], [ -70.387527465820312, -13.30599403381342 ], [ -70.386383056640625, -13.304674148559513 ], [ -70.385375976562443, -13.304141044616586 ], [ -70.384651184082031, -13.304021835327035 ], [ -70.383354187011662, -13.304249763488713 ], [ -70.380752563476562, -13.306053161621037 ], [ -70.378807067871094, -13.306953430175781 ], [ -70.376937866210938, -13.306974411010685 ], [ -70.375015258789062, -13.306254386901855 ], [ -70.37408447265625, -13.306156158447209 ], [ -70.373634338378849, -13.3062744140625 ], [ -70.372726440429688, -13.307069778442326 ], [ -70.371963500976562, -13.307126998901367 ], [ -70.371185302734375, -13.306642532348633 ], [ -70.370346069335938, -13.305511474609375 ], [ -70.370140075683594, -13.302593231201172 ], [ -70.369255065917912, -13.301937103271428 ], [ -70.366752624511662, -13.302144050598145 ], [ -70.363456726074219, -13.30317497253418 ], [ -70.359916687011605, -13.303498268127385 ], [ -70.355438232421761, -13.305121421813965 ], [ -70.354232788085938, -13.305171012878361 ], [ -70.353515624999943, -13.30558967590332 ], [ -70.352401733398438, -13.305685997009277 ], [ -70.350921630859318, -13.30695629119873 ], [ -70.348777770996094, -13.307910919189453 ], [ -70.348052978515625, -13.307978630065918 ], [ -70.347076416015625, -13.307637214660645 ], [ -70.346649169921818, -13.307266235351562 ], [ -70.345878601074162, -13.305018424987793 ], [ -70.346923828124943, -13.302675247192326 ], [ -70.347564697265625, -13.299990653991699 ], [ -70.34814453125, -13.298839569091797 ], [ -70.348266601562443, -13.297470092773381 ], [ -70.348731994628849, -13.296070098876953 ], [ -70.34869384765625, -13.293339729309082 ], [ -70.347686767578068, -13.291174888610726 ], [ -70.347679138183537, -13.289525032043457 ], [ -70.349494934081974, -13.288451194763184 ], [ -70.351066589355469, -13.288125038146973 ], [ -70.353309631347599, -13.288022994995117 ], [ -70.355041503906193, -13.287136077880859 ], [ -70.356063842773438, -13.285829544067383 ], [ -70.357986450195256, -13.282347679138184 ], [ -70.359252929687386, -13.280875205993539 ], [ -70.361686706542969, -13.279179573059025 ], [ -70.365211486816406, -13.278269767761174 ], [ -70.366577148437443, -13.277475357055607 ], [ -70.367988586425724, -13.276004791259709 ], [ -70.370346069335938, -13.272269248962346 ], [ -70.372589111328068, -13.270298004150334 ], [ -70.374710083007812, -13.268966674804631 ], [ -70.375999450683537, -13.26843070983881 ], [ -70.380363464355469, -13.267023086547738 ], [ -70.381530761718693, -13.266448974609375 ], [ -70.383453369140568, -13.266087532043457 ], [ -70.386589050292912, -13.264944076538086 ], [ -70.389137268066406, -13.264720916748047 ], [ -70.389755249023381, -13.264488220214787 ], [ -70.393486022949105, -13.264538764953613 ], [ -70.396942138671875, -13.264710426330453 ], [ -70.398208618164062, -13.265047073364258 ], [ -70.400657653808594, -13.265217781066895 ], [ -70.401344299316406, -13.265032768249455 ], [ -70.402885437011719, -13.26411247253418 ], [ -70.404724121093693, -13.263786315917969 ], [ -70.406631469726506, -13.263025283813477 ], [ -70.407485961914006, -13.262041091918888 ], [ -70.407402038574162, -13.258468627929631 ], [ -70.407783508300724, -13.25724983215332 ], [ -70.409263610839844, -13.256689071655217 ], [ -70.411964416503849, -13.256549835205021 ], [ -70.415397644042912, -13.255080223083496 ], [ -70.417610168456974, -13.254776954650822 ], [ -70.420349121093693, -13.253574371337891 ], [ -70.421325683593693, -13.252897262573185 ], [ -70.422080993652287, -13.251946449279785 ], [ -70.423706054687443, -13.247736930847168 ], [ -70.42376708984375, -13.245854377746582 ], [ -70.423538208007812, -13.244929313659668 ], [ -70.422676086425781, -13.244490623474121 ], [ -70.421379089355469, -13.244258880615178 ], [ -70.420921325683537, -13.24380970001215 ], [ -70.420547485351506, -13.243794441223088 ], [ -70.419403076171818, -13.242563247680664 ], [ -70.418670654296875, -13.241414070129338 ], [ -70.418609619140625, -13.239934921264535 ], [ -70.4183349609375, -13.239055633544922 ], [ -70.417335510253906, -13.237604141235352 ], [ -70.415420532226449, -13.236479759216309 ], [ -70.411735534667969, -13.235447883605957 ], [ -70.410614013671875, -13.234624862670898 ], [ -70.408706665039062, -13.233871459960881 ], [ -70.407890319824105, -13.233268737792969 ], [ -70.407485961914006, -13.232441902160588 ], [ -70.407539367675781, -13.229611396789437 ], [ -70.406425476074162, -13.228357315063477 ], [ -70.404945373535156, -13.227796554565373 ], [ -70.402427673339787, -13.227724075317326 ], [ -70.399711608886719, -13.227873802185059 ], [ -70.398551940917969, -13.228232383727914 ], [ -70.394348144531136, -13.22834587097168 ], [ -70.392509460449162, -13.228683471679688 ], [ -70.391845703124943, -13.228489875793457 ], [ -70.39119720458973, -13.227990150451546 ], [ -70.390357971191406, -13.226876258850098 ], [ -70.388710021972599, -13.222988128662053 ], [ -70.387809753417969, -13.219905853271484 ], [ -70.388130187988224, -13.218641281127873 ], [ -70.390472412109375, -13.216509819030762 ], [ -70.390838623046875, -13.215315818786621 ], [ -70.390403747558537, -13.212945938110238 ], [ -70.389236450195312, -13.209149360656738 ], [ -70.386573791503906, -13.205737113952637 ], [ -70.386062622070312, -13.204066276550236 ], [ -70.386054992675781, -13.203147888183537 ], [ -70.386611938476506, -13.201491355895939 ], [ -70.386688232421818, -13.20029354095459 ], [ -70.385925292968693, -13.198134422302246 ], [ -70.385932922363224, -13.197492599487248 ], [ -70.385368347167912, -13.195645332336369 ], [ -70.385353088378849, -13.193815231323242 ], [ -70.385841369628849, -13.192146301269531 ], [ -70.387237548828125, -13.190204620361214 ], [ -70.387786865234375, -13.187367439269906 ], [ -70.387527465820312, -13.186756134033146 ], [ -70.38433837890625, -13.183148384094181 ], [ -70.383674621582031, -13.181936264038029 ], [ -70.383476257324105, -13.181031227111816 ], [ -70.38323974609375, -13.176293373107853 ], [ -70.383460998535099, -13.173783302307129 ], [ -70.3839111328125, -13.172817230224553 ], [ -70.385421752929688, -13.170870780944824 ], [ -70.386024475097599, -13.169329643249512 ], [ -70.386009216308594, -13.166679382324219 ], [ -70.385391235351562, -13.163618087768498 ], [ -70.385490417480469, -13.16141223907465 ], [ -70.386367797851562, -13.159293174743652 ], [ -70.387557983398381, -13.157770156860352 ], [ -70.391220092773438, -13.15542030334467 ], [ -70.394744873046875, -13.153709411621094 ], [ -70.397941589355412, -13.151807785034123 ], [ -70.398971557617188, -13.150871276855469 ], [ -70.399833679199219, -13.149398803710938 ], [ -70.400199890136719, -13.148286819457894 ], [ -70.399978637695312, -13.147102355957031 ], [ -70.399330139160156, -13.146306037902832 ], [ -70.398803710937443, -13.144935607910156 ], [ -70.397529602050781, -13.14268684387207 ], [ -70.396186828613281, -13.14128303527832 ], [ -70.395133972167969, -13.139440536499023 ], [ -70.392799377441349, -13.13669490814209 ], [ -70.391716003417969, -13.134979248046818 ], [ -70.388504028320256, -13.131532669067383 ], [ -70.387741088867131, -13.130050659179688 ], [ -70.387832641601506, -13.128679275512695 ], [ -70.388191223144531, -13.128039360046387 ], [ -70.390228271484318, -13.126291275024414 ], [ -70.390785217285099, -13.126191139221191 ], [ -70.392044067382756, -13.125404357910156 ], [ -70.393547058105412, -13.125248908996525 ], [ -70.395011901855355, -13.125798225402832 ], [ -70.396652221679688, -13.126728057861328 ], [ -70.401405334472543, -13.130448341369629 ], [ -70.404693603515625, -13.132500648498478 ], [ -70.407096862792912, -13.133524894714299 ], [ -70.4090576171875, -13.13374137878418 ], [ -70.411064147949219, -13.133426666259709 ], [ -70.413818359375, -13.132258415222111 ], [ -70.416275024414006, -13.130017280578556 ], [ -70.416511535644531, -13.129330635070801 ], [ -70.416168212890568, -13.127555847167969 ], [ -70.415565490722656, -13.126752853393555 ], [ -70.413932800292969, -13.125351905822697 ], [ -70.411933898925781, -13.124153137207031 ], [ -70.409942626953125, -13.123398780822754 ], [ -70.407135009765625, -13.123229980468693 ], [ -70.404983520507812, -13.122632980346566 ], [ -70.403762817382756, -13.122564315795898 ], [ -70.402061462402287, -13.121452331542969 ], [ -70.401512145996094, -13.118286132812443 ], [ -70.402008056640625, -13.11318302154541 ], [ -70.40155029296875, -13.110074996948242 ], [ -70.090133666992188, -13.21058464050293 ], [ -70.000762939453011, -13.240659713745117 ], [ -69.628509521484318, -13.361788749694824 ], [ -69.502067565917912, -13.299649238586426 ], [ -68.997550964355469, -13.062488555908146 ], [ -68.988479614257812, -13.055970191955566 ], [ -68.946510314941406, -13.036160469055176 ], [ -68.870613098144531, -13.000329971313477 ], [ -68.868789672851562, -13.002278327941895 ], [ -68.867675781249943, -13.002767562866211 ], [ -68.866416931152344, -13.00376033782959 ], [ -68.865516662597656, -13.005669593810978 ], [ -68.865768432617131, -13.006930351257324 ], [ -68.866500854492188, -13.007532119750977 ], [ -68.871719360351562, -13.007930755615178 ], [ -68.872451782226506, -13.008319854736271 ], [ -68.872749328613224, -13.00866508483881 ], [ -68.873291015625, -13.009298324584961 ], [ -68.873390197753849, -13.011059761047363 ], [ -68.873046874999886, -13.011800765991154 ], [ -68.871269226074219, -13.013829231262207 ], [ -68.869796752929631, -13.015110015869027 ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-SAM", "NAME_0": "Peru", "ID_1": 23, "NAME_1": "San Martín", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": "San Mart" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.589118957519474, -5.397144794464054 ], [ -77.585098266601562, -5.402375221252441 ], [ -77.581550598144531, -5.405688762664795 ], [ -77.578056335449162, -5.406997203826904 ], [ -77.574241638183537, -5.407357215881291 ], [ -77.572181701660156, -5.407817840576115 ], [ -77.571083068847656, -5.408481121063176 ], [ -77.568634033203068, -5.410949230194035 ], [ -77.567695617675781, -5.411523818969727 ], [ -77.564697265625, -5.411508083343506 ], [ -77.564170837402344, -5.411674022674561 ], [ -77.557914733886719, -5.417846202850342 ], [ -77.554367065429688, -5.419532775878906 ], [ -77.553009033203125, -5.420477867126408 ], [ -77.544868469238224, -5.42865610122675 ], [ -77.541893005371094, -5.431242942810002 ], [ -77.539497375488281, -5.43477821350092 ], [ -77.537811279296818, -5.43671989440918 ], [ -77.535018920898438, -5.438629150390568 ], [ -77.528999328613281, -5.444664955139103 ], [ -77.527458190917969, -5.445655822753906 ], [ -77.525650024414062, -5.44628715515131 ], [ -77.524673461914006, -5.446978092193547 ], [ -77.522254943847656, -5.450866222381592 ], [ -77.518272399902287, -5.454244136810303 ], [ -77.512336730957031, -5.460099220275822 ], [ -77.509445190429688, -5.46325778961176 ], [ -77.499893188476562, -5.475450992584229 ], [ -77.498146057128849, -5.476968765258789 ], [ -77.497749328613281, -5.477106094360295 ], [ -77.494422912597599, -5.480780124664307 ], [ -77.492446899413949, -5.484150886535588 ], [ -77.491584777831974, -5.486947059631348 ], [ -77.49169921875, -5.489693164825439 ], [ -77.492271423339844, -5.493515968322754 ], [ -77.492607116699162, -5.494461059570312 ], [ -77.492752075195312, -5.499693870544434 ], [ -77.492584228515625, -5.501468181610051 ], [ -77.492866516113281, -5.502541065216008 ], [ -77.492919921874943, -5.504168033599854 ], [ -77.492546081542969, -5.50591421127308 ], [ -77.490829467773438, -5.508413791656437 ], [ -77.489639282226562, -5.511311054229679 ], [ -77.489173889160099, -5.514576911926213 ], [ -77.488677978515625, -5.522397041320744 ], [ -77.489051818847656, -5.525404930114632 ], [ -77.489921569824219, -5.528030872344971 ], [ -77.492973327636719, -5.534210205078125 ], [ -77.493270874023381, -5.535274028778076 ], [ -77.495140075683594, -5.538753986358643 ], [ -77.495841979980469, -5.540948867797852 ], [ -77.495948791503849, -5.542204856872559 ], [ -77.495475769042912, -5.545848846435547 ], [ -77.494422912597599, -5.548392772674504 ], [ -77.493202209472599, -5.55023193359375 ], [ -77.490982055664006, -5.552303791046086 ], [ -77.488540649414062, -5.552601814269963 ], [ -77.485488891601562, -5.552063941955566 ], [ -77.483108520507812, -5.551358222961369 ], [ -77.481109619140625, -5.550455093383732 ], [ -77.479858398437386, -5.549530029296818 ], [ -77.477172851562443, -5.548600196838322 ], [ -77.474845886230469, -5.54813098907465 ], [ -77.471450805664006, -5.546518802642822 ], [ -77.469871520996094, -5.546057224273625 ], [ -77.466331481933594, -5.545581817626953 ], [ -77.463775634765625, -5.545512199401799 ], [ -77.461151123046818, -5.545910835266113 ], [ -77.459030151367188, -5.546669960021973 ], [ -77.456466674804631, -5.548731803894043 ], [ -77.453155517578011, -5.552171230316162 ], [ -77.451698303222599, -5.554065227508545 ], [ -77.449554443359375, -5.557701110839844 ], [ -77.447151184082031, -5.563866138458195 ], [ -77.445228576660099, -5.566883087158146 ], [ -77.443603515624943, -5.568994045257568 ], [ -77.439895629882756, -5.572789192199707 ], [ -77.437110900878849, -5.574996948242131 ], [ -77.435592651367131, -5.575625896453857 ], [ -77.433708190917969, -5.575959205627441 ], [ -77.42584228515625, -5.576026916503906 ], [ -77.419586181640511, -5.577743053436222 ], [ -77.417388916015568, -5.577733993530217 ], [ -77.411941528320256, -5.575868129730225 ], [ -77.410110473632756, -5.574330806732178 ], [ -77.408767700195312, -5.572591781616211 ], [ -77.40692138671875, -5.570800781249943 ], [ -77.404113769531193, -5.568895816802979 ], [ -77.400711059570312, -5.567111015319824 ], [ -77.397499084472656, -5.56600379943842 ], [ -77.393623352050724, -5.565303802490234 ], [ -77.388778686523381, -5.565189838409367 ], [ -77.387687683105469, -5.565329074859562 ], [ -77.385444641113168, -5.566096782684326 ], [ -77.382827758789062, -5.567753791809082 ], [ -77.376831054687443, -5.572994232177678 ], [ -77.372451782226506, -5.574817180633431 ], [ -77.369819641113281, -5.576310157775879 ], [ -77.363616943359375, -5.582147121429443 ], [ -77.360008239746094, -5.583473205566349 ], [ -77.355918884277344, -5.584067821502572 ], [ -77.353218078613281, -5.585444927215576 ], [ -77.350708007812443, -5.58726978302002 ], [ -77.345611572265625, -5.591611862182617 ], [ -77.342254638671875, -5.593839168548527 ], [ -77.338706970214787, -5.596591949462891 ], [ -77.3369140625, -5.597231864929199 ], [ -77.335556030273381, -5.597056865692139 ], [ -77.333869934082031, -5.596476078033447 ], [ -77.332817077636719, -5.595449924468994 ], [ -77.332054138183594, -5.59408712387085 ], [ -77.331176757812443, -5.591760158538818 ], [ -77.330833435058594, -5.588189125060978 ], [ -77.330474853515625, -5.587043762207031 ], [ -77.32891845703125, -5.585360050201359 ], [ -77.326889038085824, -5.584128856658879 ], [ -77.325241088867131, -5.584073066711369 ], [ -77.3226318359375, -5.584597110748234 ], [ -77.312271118164006, -5.588976860046387 ], [ -77.309165954589844, -5.589034080505371 ], [ -77.299598693847599, -5.586215019226017 ], [ -77.295654296875, -5.585498809814396 ], [ -77.287933349609375, -5.583540916442871 ], [ -77.279167175292969, -5.582201004028263 ], [ -77.275482177734318, -5.581111907958928 ], [ -77.267555236816349, -5.577709197998047 ], [ -77.262512207031193, -5.575125217437744 ], [ -77.261512756347656, -5.574179172515869 ], [ -77.257934570312443, -5.569718837738037 ], [ -77.256324768066406, -5.568667888641357 ], [ -77.254959106445256, -5.568553924560547 ], [ -77.252067565917969, -5.570634841918945 ], [ -77.246795654296875, -5.576123237609863 ], [ -77.244773864746037, -5.578971862792969 ], [ -77.241821289062386, -5.584259033203068 ], [ -77.240592956542969, -5.58598518371582 ], [ -77.230758666992074, -5.595856189727783 ], [ -77.220024108886719, -5.604990005493107 ], [ -77.2183837890625, -5.607203006744328 ], [ -77.217048645019531, -5.610334873199406 ], [ -77.216163635253849, -5.611396789550781 ], [ -77.214942932128906, -5.611996173858643 ], [ -77.210845947265625, -5.611795902252084 ], [ -77.208099365234375, -5.613053798675537 ], [ -77.204963684082031, -5.616139888763371 ], [ -77.198432922363281, -5.62346696853632 ], [ -77.196632385253906, -5.62458610534668 ], [ -77.194290161132812, -5.625626087188721 ], [ -77.189643859863224, -5.626628875732422 ], [ -77.186813354492188, -5.626846790313721 ], [ -77.182121276855355, -5.62760591506958 ], [ -77.179649353027344, -5.627542018890381 ], [ -77.178085327148381, -5.6267991065979 ], [ -77.174713134765625, -5.623702049255314 ], [ -77.171226501464787, -5.620052814483643 ], [ -77.169700622558537, -5.619444847106934 ], [ -77.166259765624943, -5.618987083435059 ], [ -77.164070129394474, -5.617646217346135 ], [ -77.162162780761662, -5.615413188934269 ], [ -77.160743713378849, -5.611532211303711 ], [ -77.1591796875, -5.610390186309758 ], [ -77.157241821289062, -5.609880924224797 ], [ -77.15313720703125, -5.610799789428654 ], [ -77.148025512695312, -5.610573768615723 ], [ -77.144218444824219, -5.611130237579346 ], [ -77.141571044921818, -5.611285209655762 ], [ -77.13922119140625, -5.612026214599609 ], [ -77.134429931640568, -5.614503860473633 ], [ -77.132484436035156, -5.617719173431396 ], [ -77.13189697265625, -5.621437072753849 ], [ -77.130149841308594, -5.625483989715576 ], [ -77.127571105956918, -5.628785133361816 ], [ -77.12255859375, -5.633495807647705 ], [ -77.120933532714844, -5.63405179977417 ], [ -77.113174438476562, -5.633790016174203 ], [ -77.112686157226506, -5.63401985168457 ], [ -77.107666015625, -5.634379863739014 ], [ -77.104965209960881, -5.634832859039307 ], [ -77.100914001464844, -5.636041164398193 ], [ -77.099426269531193, -5.636762142181396 ], [ -77.098602294921875, -5.637485980987492 ], [ -77.096145629882812, -5.641147136688232 ], [ -77.095062255859375, -5.643375873565617 ], [ -77.094001770019418, -5.644227981567383 ], [ -77.092620849609375, -5.644279956817627 ], [ -77.090560913085881, -5.643878936767578 ], [ -77.087821960449219, -5.642388820648193 ], [ -77.085830688476562, -5.641691207885742 ], [ -77.082916259765568, -5.641457080841064 ], [ -77.080101013183594, -5.641712188720703 ], [ -77.077972412109318, -5.64227914810175 ], [ -77.075691223144418, -5.643425941467285 ], [ -77.073104858398381, -5.644095897674561 ], [ -77.070549011230469, -5.645090103149414 ], [ -77.065521240234375, -5.647911071777344 ], [ -77.062545776367188, -5.64982080459589 ], [ -77.060829162597656, -5.651191234588566 ], [ -77.060218811035099, -5.651400089263916 ], [ -77.057838439941349, -5.65129280090332 ], [ -77.053321838378906, -5.6495361328125 ], [ -77.05133056640625, -5.649273872375488 ], [ -77.047103881835938, -5.647777080535889 ], [ -77.044166564941406, -5.647075176238957 ], [ -77.042434692382812, -5.646942138671875 ], [ -77.041778564453125, -5.646603107452393 ], [ -77.039131164550724, -5.647118091583195 ], [ -77.037536621093693, -5.647819995880127 ], [ -77.036003112792912, -5.649118900299072 ], [ -77.034614562988281, -5.65083122253418 ], [ -77.031654357910156, -5.656854152679387 ], [ -77.028572082519474, -5.662065029144287 ], [ -77.027603149414006, -5.664940834045353 ], [ -77.026657104492131, -5.669340133666992 ], [ -77.025459289550781, -5.671620845794678 ], [ -77.02423095703125, -5.673072814941406 ], [ -77.020744323730412, -5.676184177398682 ], [ -77.017913818359375, -5.678365230560303 ], [ -77.010772705078125, -5.682577133178711 ], [ -77.008705139160156, -5.683558940887451 ], [ -77.00588226318348, -5.684301853179932 ], [ -77.002784729003906, -5.68465518951416 ], [ -77.001152038574219, -5.684553146362305 ], [ -76.999870300292912, -5.684023857116699 ], [ -76.997039794921875, -5.684316158294621 ], [ -76.994819641113168, -5.684945106506348 ], [ -76.993461608886662, -5.685682773590031 ], [ -76.988906860351449, -5.689703941345158 ], [ -76.987693786621094, -5.69035816192627 ], [ -76.985687255859375, -5.692635059356689 ], [ -76.983482360839844, -5.696990013122559 ], [ -76.981491088867188, -5.700197219848633 ], [ -76.979789733886719, -5.70477819442749 ], [ -76.977455139160099, -5.708312988281193 ], [ -76.976844787597656, -5.708867073059082 ], [ -76.976005554199162, -5.709230899810734 ], [ -76.973289489746094, -5.709639072418156 ], [ -76.971954345703125, -5.710247993469181 ], [ -76.969253540039006, -5.712871074676514 ], [ -76.967994689941349, -5.715334892272949 ], [ -76.966560363769474, -5.716469764709416 ], [ -76.963508605956974, -5.717926025390625 ], [ -76.961013793945312, -5.717907905578613 ], [ -76.958023071289062, -5.717438220977783 ], [ -76.954811096191406, -5.718525886535645 ], [ -76.9537353515625, -5.718691825866642 ], [ -76.947288513183594, -5.717222213745117 ], [ -76.944908142089787, -5.717411041259766 ], [ -76.944107055664062, -5.717848777770939 ], [ -76.942115783691406, -5.719898223876953 ], [ -76.939476013183537, -5.720223903656006 ], [ -76.935340881347656, -5.7219557762146 ], [ -76.933517456054688, -5.723361968994141 ], [ -76.932723999023381, -5.723591804504338 ], [ -76.929031372070312, -5.725800991058293 ], [ -76.924995422363224, -5.729276180267334 ], [ -76.921485900878906, -5.73087215423584 ], [ -76.920166015625, -5.731870174407959 ], [ -76.919044494628906, -5.732271194458008 ], [ -76.91729736328125, -5.733454227447453 ], [ -76.911453247070256, -5.734514236450138 ], [ -76.905532836914006, -5.737832069396916 ], [ -76.903602600097656, -5.739212989807129 ], [ -76.901252746581974, -5.741553783416748 ], [ -76.899505615234375, -5.743874073028564 ], [ -76.896308898925781, -5.750493049621525 ], [ -76.895141601562443, -5.754185199737549 ], [ -76.894599914550781, -5.757932186126709 ], [ -76.893302917480469, -5.763315200805607 ], [ -76.891044616699162, -5.769615173339844 ], [ -76.889991760253849, -5.771500110626221 ], [ -76.886436462402344, -5.774819850921574 ], [ -76.883323669433537, -5.776394844055176 ], [ -76.880828857421818, -5.77704477310175 ], [ -76.878822326660099, -5.777205944061279 ], [ -76.872695922851562, -5.776918888092041 ], [ -76.871559143066406, -5.776579856872502 ], [ -76.867103576660099, -5.776013851165771 ], [ -76.86181640625, -5.775780200958138 ], [ -76.859642028808594, -5.775424003601017 ], [ -76.859329223632812, -5.77512788772583 ], [ -76.858749389648438, -5.775411128997746 ], [ -76.856918334960824, -5.775396823883057 ], [ -76.852760314941406, -5.774614810943604 ], [ -76.849891662597656, -5.77339315414423 ], [ -76.8460693359375, -5.771018981933594 ], [ -76.844764709472656, -5.770572185516301 ], [ -76.843475341796875, -5.770493984222412 ], [ -76.840248107910156, -5.771158218383789 ], [ -76.8370361328125, -5.772261142730713 ], [ -76.833480834960938, -5.774332046508789 ], [ -76.831520080566349, -5.775993824005127 ], [ -76.830131530761719, -5.776722908019963 ], [ -76.827606201171818, -5.779514789581299 ], [ -76.826980590820312, -5.780539035797119 ], [ -76.826423645019531, -5.782106876373234 ], [ -76.826461791992131, -5.785703182220402 ], [ -76.825576782226562, -5.788112163543701 ], [ -76.824478149414006, -5.789227008819466 ], [ -76.823341369628849, -5.789980888366699 ], [ -76.822044372558594, -5.791578769683838 ], [ -76.821723937988224, -5.792980194091797 ], [ -76.821418762206974, -5.796959877014103 ], [ -76.820465087890568, -5.798427104949894 ], [ -76.819473266601562, -5.800806999206486 ], [ -76.81787109375, -5.802441120147705 ], [ -76.813522338867131, -5.804624080657959 ], [ -76.811531066894531, -5.805335998535156 ], [ -76.810455322265568, -5.806190013885498 ], [ -76.809020996093693, -5.808228015899658 ], [ -76.808433532714844, -5.809576988220158 ], [ -76.808166503906193, -5.8109450340271 ], [ -76.807868957519474, -5.816940784454346 ], [ -76.807044982910156, -5.819076061248779 ], [ -76.804489135742188, -5.821715831756535 ], [ -76.803787231445256, -5.821944236755371 ], [ -76.801322937011719, -5.823515892028752 ], [ -76.793174743652344, -5.832121849060059 ], [ -76.791191101074162, -5.834797859191838 ], [ -76.790031433105412, -5.836978912353459 ], [ -76.789558410644474, -5.838581085205021 ], [ -76.789131164550781, -5.841884136199951 ], [ -76.7890625, -5.844840049743652 ], [ -76.789161682128906, -5.846603870391789 ], [ -76.79046630859375, -5.849536895751953 ], [ -76.791023254394531, -5.852057933807373 ], [ -76.790451049804688, -5.854102134704533 ], [ -76.788223266601506, -5.858304977416935 ], [ -76.788101196289062, -5.859273910522461 ], [ -76.786384582519531, -5.861792087554932 ], [ -76.783035278320312, -5.864208221435547 ], [ -76.7823486328125, -5.86447191238392 ], [ -76.780158996582031, -5.8644700050354 ], [ -76.777626037597656, -5.864921092987004 ], [ -76.775405883789062, -5.865759849548283 ], [ -76.773330688476562, -5.86771106719965 ], [ -76.7723388671875, -5.869676113128662 ], [ -76.771781921386719, -5.872200965881291 ], [ -76.771827697753849, -5.874128818511906 ], [ -76.772506713867131, -5.875553131103516 ], [ -76.774421691894474, -5.878259181976318 ], [ -76.776405334472599, -5.881905078887883 ], [ -76.776817321777344, -5.88294506072998 ], [ -76.776931762695312, -5.88440990447998 ], [ -76.774795532226506, -5.886693954467717 ], [ -76.771934509277287, -5.888838768005314 ], [ -76.771209716796875, -5.88989782333374 ], [ -76.771324157714844, -5.89128208160389 ], [ -76.772781372070256, -5.893410205841064 ], [ -76.773292541503906, -5.8958420753479 ], [ -76.772369384765625, -5.898322105407715 ], [ -76.771049499511719, -5.903117179870605 ], [ -76.769866943359375, -5.906123161315918 ], [ -76.768234252929688, -5.912186145782471 ], [ -76.766464233398438, -5.917619228363037 ], [ -76.764945983886719, -5.92047119140625 ], [ -76.764945983886719, -5.921021938323918 ], [ -76.764045715332031, -5.922516822814941 ], [ -76.763786315917969, -5.923494815826416 ], [ -76.762832641601562, -5.924962997436467 ], [ -76.762527465820312, -5.926032066345158 ], [ -76.754158020019531, -5.938933849334717 ], [ -76.753028869628849, -5.94113302230835 ], [ -76.752578735351506, -5.941596031188965 ], [ -76.752342224121094, -5.942419052123967 ], [ -76.751678466796875, -5.943064212799072 ], [ -76.751617431640568, -5.943499088287354 ], [ -76.750534057617188, -5.944975852966309 ], [ -76.746253967285156, -5.953028202056885 ], [ -76.74078369140625, -5.961326122283879 ], [ -76.740119934082031, -5.962741851806641 ], [ -76.737884521484318, -5.965894222259521 ], [ -76.736076354980412, -5.969426155090332 ], [ -76.734245300292912, -5.97184514999384 ], [ -76.732429504394474, -5.975161075592041 ], [ -76.727203369140568, -5.983407020568734 ], [ -76.726478576660156, -5.985188961029053 ], [ -76.725982666015625, -5.985724925994816 ], [ -76.722618103027287, -5.992391109466553 ], [ -76.721580505371037, -5.995313167571965 ], [ -76.719169616699219, -5.998793125152531 ], [ -76.718673706054688, -6.000187873840275 ], [ -76.716514587402287, -6.003712177276611 ], [ -76.715270996093693, -6.005632877349797 ], [ -76.713638305664062, -6.007627010345402 ], [ -76.711166381835881, -6.012327194213754 ], [ -76.707809448242188, -6.016451835632211 ], [ -76.706932067871094, -6.018065929412785 ], [ -76.702018737792912, -6.024717807769719 ], [ -76.699012756347656, -6.028298854827881 ], [ -76.695571899414062, -6.031591892242375 ], [ -76.693550109863224, -6.032638072967529 ], [ -76.6912841796875, -6.032907009124699 ], [ -76.688819885253906, -6.032660961151066 ], [ -76.685195922851562, -6.030494213104248 ], [ -76.683494567871094, -6.029087066650391 ], [ -76.680892944335938, -6.026618957519531 ], [ -76.678443908691406, -6.023523807525635 ], [ -76.677543640136719, -6.022739887237549 ], [ -76.676979064941406, -6.021749019622746 ], [ -76.676605224609375, -6.019949913024846 ], [ -76.676101684570199, -6.018675804138184 ], [ -76.674514770507812, -6.015253067016545 ], [ -76.673294067382812, -6.012889862060547 ], [ -76.671943664550781, -6.011138916015625 ], [ -76.669334411621094, -6.008416175842285 ], [ -76.667167663574219, -6.006576061248779 ], [ -76.662933349609318, -6.00397777557373 ], [ -76.661285400390568, -6.003395080566349 ], [ -76.659645080566406, -6.003255844116154 ], [ -76.658515930175781, -6.003547191619873 ], [ -76.657073974609375, -6.004493236541748 ], [ -76.652023315429688, -6.004262924194336 ], [ -76.649757385253849, -6.004820823669434 ], [ -76.642547607421875, -6.009177207946721 ], [ -76.638305664062443, -6.012379169464054 ], [ -76.636825561523438, -6.012891769409123 ], [ -76.634994506835881, -6.012915134429932 ], [ -76.633163452148381, -6.013544082641545 ], [ -76.632217407226506, -6.014098167419434 ], [ -76.629913330078068, -6.016202926635685 ], [ -76.628974914550724, -6.016557216644287 ], [ -76.627693176269531, -6.016679763793888 ], [ -76.625328063964844, -6.016333103179875 ], [ -76.622215270996037, -6.014553070068303 ], [ -76.619796752929688, -6.013646125793457 ], [ -76.615051269531193, -6.013325214385929 ], [ -76.613304138183594, -6.012564182281494 ], [ -76.610443115234375, -6.010907173156738 ], [ -76.603675842285156, -6.008278846740666 ], [ -76.60125732421875, -6.006595134735107 ], [ -76.598518371582031, -6.005290985107365 ], [ -76.596038818359375, -6.003715991973877 ], [ -76.593833923339844, -6.003079891204834 ], [ -76.592826843261662, -6.003191947936955 ], [ -76.592056274414006, -6.003980159759521 ], [ -76.59084320068348, -6.00654220581049 ], [ -76.589347839355469, -6.008662223815918 ], [ -76.586128234863281, -6.01076078414917 ], [ -76.580718994140568, -6.012794017791748 ], [ -76.575485229492131, -6.013696193695068 ], [ -76.571044921875, -6.014846801757756 ], [ -76.568252563476562, -6.016193866729679 ], [ -76.56337738037098, -6.018061161041146 ], [ -76.561897277832031, -6.018960952758789 ], [ -76.556449890136719, -6.020884990692139 ], [ -76.551261901855412, -6.02400016784668 ], [ -76.550224304199219, -6.02308177947998 ], [ -76.547584533691406, -6.021586894988957 ], [ -76.538070678710881, -6.015347003936768 ], [ -76.536102294921761, -6.014350891113224 ], [ -76.533668518066406, -6.012547969818115 ], [ -76.528968811035156, -6.010028839111328 ], [ -76.524383544921875, -6.008132934570312 ], [ -76.523475646972656, -6.007575035095158 ], [ -76.519462585449219, -6.004350185394287 ], [ -76.518867492675781, -6.004214763641357 ], [ -76.517372131347656, -6.00444507598877 ], [ -76.513328552246094, -6.006156921386662 ], [ -76.508926391601562, -6.006068229675293 ], [ -76.50677490234375, -6.005587100982666 ], [ -76.505409240722656, -6.005003929138127 ], [ -76.504287719726562, -6.004229068756047 ], [ -76.501304626464844, -6.00147819519043 ], [ -76.499351501464787, -5.999495029449463 ], [ -76.496894836425724, -5.996382236480656 ], [ -76.491378784179688, -5.992128849029541 ], [ -76.487907409667912, -5.989749908447209 ], [ -76.485816955566349, -5.988814830780029 ], [ -76.482788085937443, -5.986987113952637 ], [ -76.473739624023438, -5.982843875884953 ], [ -76.469894409179631, -5.980591773986816 ], [ -76.469535827636605, -5.980585098266602 ], [ -76.465812683105412, -5.978631973266545 ], [ -76.462463378906193, -5.976578235626221 ], [ -76.457695007324162, -5.974728107452393 ], [ -76.451011657714787, -5.971330165863037 ], [ -76.436340332031193, -5.96451282501215 ], [ -76.427444458007756, -5.959505081176758 ], [ -76.420806884765625, -5.956486225128117 ], [ -76.411811828613224, -5.950819969177189 ], [ -76.410438537597656, -5.950343132018986 ], [ -76.406303405761662, -5.948084831237793 ], [ -76.39508056640625, -5.943635940551701 ], [ -76.391853332519531, -5.942115783691406 ], [ -76.389358520507812, -5.940431118011475 ], [ -76.387664794921875, -5.939750194549561 ], [ -76.382354736328068, -5.936524868011475 ], [ -76.376335144042912, -5.932425022125244 ], [ -76.368270874023438, -5.92751502990717 ], [ -76.362747192382812, -5.924643993377686 ], [ -76.3582763671875, -5.921779155731201 ], [ -76.352104187011662, -5.918385028839111 ], [ -76.347213745117188, -5.915160179138127 ], [ -76.344024658203068, -5.913421154022217 ], [ -76.340774536132756, -5.911042213439941 ], [ -76.336189270019474, -5.909253120422363 ], [ -76.335731506347599, -5.909244060516301 ], [ -76.335624694824162, -5.910348892211857 ], [ -76.33740234375, -5.918049812316838 ], [ -76.338027954101562, -5.922426223754883 ], [ -76.339324951171818, -5.927332878112793 ], [ -76.339889526367188, -5.930596828460693 ], [ -76.340690612792912, -5.93294715881342 ], [ -76.341377258300781, -5.93666219711298 ], [ -76.343307495117188, -5.943684101104736 ], [ -76.344161987304688, -5.950174808502197 ], [ -76.344436645507812, -5.956622123718205 ], [ -76.345161437988224, -5.961168766021729 ], [ -76.345512390136719, -5.968430995941105 ], [ -76.345077514648381, -5.978074073791504 ], [ -76.34503173828125, -5.990407943725586 ], [ -76.344680786132756, -5.994487762451172 ], [ -76.343696594238281, -6.000123977661133 ], [ -76.342842102050781, -6.003419876098633 ], [ -76.342597961425724, -6.00369119644165 ], [ -76.341133117675781, -6.008433818817082 ], [ -76.336814880371094, -6.014920234680176 ], [ -76.33612060546875, -6.016621112823486 ], [ -76.335777282714844, -6.018430233001709 ], [ -76.336082458496037, -6.020347118377629 ], [ -76.337059020996037, -6.021883010864258 ], [ -76.337509155273438, -6.023474216461125 ], [ -76.33758544921875, -6.026240825653076 ], [ -76.337142944335881, -6.030338764190674 ], [ -76.337135314941349, -6.032364845275879 ], [ -76.337493896484375, -6.034922122955265 ], [ -76.338668823242131, -6.040019989013615 ], [ -76.339065551757756, -6.044703960418701 ], [ -76.339881896972656, -6.046564102172738 ], [ -76.341056823730412, -6.048215866088867 ], [ -76.343551635742131, -6.049919128417912 ], [ -76.344314575195256, -6.050723075866699 ], [ -76.344841003417969, -6.052764892578125 ], [ -76.344284057617131, -6.054503917694035 ], [ -76.342147827148438, -6.057023048400822 ], [ -76.340446472167969, -6.058691024780273 ], [ -76.339126586914062, -6.059454917907658 ], [ -76.333694458007812, -6.065048217773438 ], [ -76.329017639160156, -6.068278789520264 ], [ -76.327247619628793, -6.069874763488713 ], [ -76.322517395019531, -6.076642036437931 ], [ -76.319450378417969, -6.082717895507812 ], [ -76.318473815917855, -6.08414888381958 ], [ -76.315299987792912, -6.086163997650146 ], [ -76.312065124511662, -6.088723182678223 ], [ -76.308967590332031, -6.090503215789795 ], [ -76.307304382324162, -6.092080116271973 ], [ -76.298332214355412, -6.098731040954533 ], [ -76.294715881347599, -6.102375030517521 ], [ -76.293678283691293, -6.103644847869873 ], [ -76.290077209472656, -6.109188079833984 ], [ -76.285400390625, -6.113974094390812 ], [ -76.282798767089787, -6.117191791534367 ], [ -76.280342102050781, -6.119439125061035 ], [ -76.276763916015568, -6.121520042419377 ], [ -76.27386474609375, -6.122639179229736 ], [ -76.2723388671875, -6.123476028442383 ], [ -76.268356323242188, -6.124668121337891 ], [ -76.258064270019531, -6.126356124877873 ], [ -76.252487182617188, -6.126705169677678 ], [ -76.249969482421818, -6.127191066741943 ], [ -76.247810363769531, -6.127963066101074 ], [ -76.241569519042969, -6.131034851074219 ], [ -76.239410400390568, -6.131790161132812 ], [ -76.237968444824162, -6.132047176361084 ], [ -76.234909057617131, -6.133727073669377 ], [ -76.230461120605469, -6.134805202484131 ], [ -76.224754333496094, -6.136763095855656 ], [ -76.222503662109318, -6.137791156768742 ], [ -76.218757629394531, -6.138675212860107 ], [ -76.213829040527287, -6.140387058258 ], [ -76.210189819335938, -6.140855789184513 ], [ -76.205062866210881, -6.141032218933105 ], [ -76.202102661132756, -6.141626834869328 ], [ -76.195320129394474, -6.141866207122803 ], [ -76.192695617675781, -6.1422438621521 ], [ -76.190773010253849, -6.142185211181641 ], [ -76.186958312988224, -6.141640186309814 ], [ -76.183792114257756, -6.141530990600529 ], [ -76.171249389648438, -6.141965866088867 ], [ -76.166923522949162, -6.142724990844727 ], [ -76.164077758789062, -6.14374399185175 ], [ -76.158294677734375, -6.145132064819336 ], [ -76.155441284179688, -6.146104812622013 ], [ -76.152458190917969, -6.146626949310303 ], [ -76.148078918457031, -6.147007942199707 ], [ -76.146072387695312, -6.147671222686768 ], [ -76.1451416015625, -6.148253917694035 ], [ -76.144142150878793, -6.148355007171631 ], [ -76.139442443847599, -6.148355007171631 ], [ -76.135978698730469, -6.148662090301514 ], [ -76.131980895996094, -6.147720813751221 ], [ -76.129409790039062, -6.148231983184814 ], [ -76.128013610839787, -6.147167205810547 ], [ -76.126182556152287, -6.146312236785889 ], [ -76.124725341796875, -6.145358085632267 ], [ -76.120918273925781, -6.143736839294377 ], [ -76.116424560546875, -6.140914916992131 ], [ -76.111679077148438, -6.138700008392334 ], [ -76.110542297363224, -6.13795280456543 ], [ -76.106651306152287, -6.136304855346566 ], [ -76.105079650878906, -6.135350227355957 ], [ -76.103691101074162, -6.134872913360596 ], [ -76.100395202636719, -6.133072853088379 ], [ -76.099258422851562, -6.132024765014648 ], [ -76.098716735839787, -6.13192701339716 ], [ -76.095664978027287, -6.127871990203857 ], [ -76.091033935546875, -6.117280960083008 ], [ -76.087516784667969, -6.112557888031006 ], [ -76.086456298828125, -6.1107239723205 ], [ -76.085235595703125, -6.109604835510254 ], [ -76.083580017089787, -6.108629226684513 ], [ -76.081092834472599, -6.105804920196533 ], [ -76.079421997070312, -6.104522228240967 ], [ -76.076026916503849, -6.100787162780762 ], [ -76.074966430664006, -6.10005521774292 ], [ -76.073181152343693, -6.099660873413029 ], [ -76.071975708007812, -6.098831176757812 ], [ -76.070983886718693, -6.098635196685734 ], [ -76.070121765136662, -6.098934173583928 ], [ -76.069053649902287, -6.099798202514648 ], [ -76.068229675292855, -6.099915981292725 ], [ -76.066932678222656, -6.099455833435059 ], [ -76.0648193359375, -6.098167896270752 ], [ -76.063583374023438, -6.09782600402832 ], [ -76.062423706054688, -6.097818851470947 ], [ -76.061897277832031, -6.097964763641357 ], [ -76.060661315917912, -6.099051952361947 ], [ -76.059333801269474, -6.099346160888615 ], [ -76.058143615722656, -6.100856781005803 ], [ -76.056892395019531, -6.101097106933594 ], [ -76.053604125976506, -6.100268840789738 ], [ -76.05068206787098, -6.097897052764836 ], [ -76.047431945800724, -6.096943855285645 ], [ -76.045478820800781, -6.095919132232666 ], [ -76.042861938476449, -6.095046043395996 ], [ -76.039772033691406, -6.094760894775334 ], [ -76.035362243652344, -6.094751834869385 ], [ -76.034629821777287, -6.095114231109562 ], [ -76.032890319824219, -6.096773147583008 ], [ -76.032135009765625, -6.097027778625488 ], [ -76.031059265136719, -6.09673023223877 ], [ -76.027107238769474, -6.094965934753418 ], [ -76.023475646972599, -6.094484806060791 ], [ -76.022476196289062, -6.094034194946232 ], [ -76.022155761718693, -6.094377994537354 ], [ -76.019683837890568, -6.094373226165771 ], [ -76.015731811523438, -6.095213890075627 ], [ -76.013275146484318, -6.09543514251709 ], [ -76.007316589355469, -6.095536231994572 ], [ -76.004501342773381, -6.095189094543457 ], [ -76.002479553222656, -6.095184803009033 ], [ -76.001258850097599, -6.095728874206543 ], [ -75.999542236328068, -6.097740173339844 ], [ -75.998764038085938, -6.098195075988713 ], [ -75.997840881347599, -6.098557949066162 ], [ -75.99575042724598, -6.098805904388371 ], [ -75.993736267089787, -6.098755836486816 ], [ -75.990394592285099, -6.098255157470703 ], [ -75.989898681640568, -6.098011016845646 ], [ -75.985427856445256, -6.097839832305908 ], [ -75.980003356933537, -6.096501827239933 ], [ -75.979217529296818, -6.096032142639103 ], [ -75.975570678710938, -6.09565877914423 ], [ -75.971694946289006, -6.094607830047607 ], [ -75.965843200683594, -6.094900131225529 ], [ -75.964019775390625, -6.095471858978215 ], [ -75.961021423339787, -6.096826076507568 ], [ -75.959510803222543, -6.097848892211857 ], [ -75.954673767089844, -6.102759838104191 ], [ -75.949928283691406, -6.109516143798828 ], [ -75.944412231445256, -6.120008945464974 ], [ -75.940673828125, -6.12625598907465 ], [ -75.938499450683537, -6.129094123840275 ], [ -75.935272216796818, -6.132361888885498 ], [ -75.930297851562443, -6.135999202728215 ], [ -75.926055908203125, -6.138185024261418 ], [ -75.924354553222656, -6.138812065124512 ], [ -75.922859191894474, -6.139700889587402 ], [ -75.921195983886719, -6.140220165252629 ], [ -75.919647216796761, -6.140323162078801 ], [ -75.918449401855469, -6.140776157379094 ], [ -75.917434692382756, -6.140832901000977 ], [ -75.915939331054688, -6.139614105224609 ], [ -75.913650512695312, -6.138659000396729 ], [ -75.911155700683537, -6.136962890625 ], [ -75.909294128417969, -6.136178970336857 ], [ -75.907234191894474, -6.135785102844181 ], [ -75.904304504394531, -6.134712219238224 ], [ -75.902664184570256, -6.134572982788029 ], [ -75.899185180664062, -6.133809089660645 ], [ -75.894332885742188, -6.133772850036621 ], [ -75.892608642578125, -6.133511066436768 ], [ -75.887306213378849, -6.133555889129582 ], [ -75.882469177246094, -6.133230209350529 ], [ -75.879707336425781, -6.133561134338379 ], [ -75.875625610351562, -6.134942054748478 ], [ -75.871879577636719, -6.135147094726562 ], [ -75.867881774902344, -6.136131763458252 ], [ -75.861907958984375, -6.13843822479248 ], [ -75.852340698242188, -6.14298486709589 ], [ -75.847190856933594, -6.144865036010685 ], [ -75.844566345214787, -6.145285129547119 ], [ -75.840896606445312, -6.145236968994141 ], [ -75.837165832519531, -6.144755840301514 ], [ -75.835327148437443, -6.144207000732422 ], [ -75.831275939941406, -6.142484188079777 ], [ -75.829521179199162, -6.141310214996338 ], [ -75.826751708984318, -6.138230800628662 ], [ -75.824966430664062, -6.135447978973332 ], [ -75.822097778320312, -6.12778997421259 ], [ -75.820228576660156, -6.123795032501221 ], [ -75.819129943847543, -6.119890213012638 ], [ -75.819015502929631, -6.118795871734619 ], [ -75.817871093749943, -6.116381168365422 ], [ -75.817001342773381, -6.112412929534912 ], [ -75.816925048828068, -6.111020088195801 ], [ -75.815498352050724, -6.10275411605835 ], [ -75.815132141113281, -6.101914882659912 ], [ -75.814208984375, -6.101156234741211 ], [ -75.813026428222543, -6.101970195770264 ], [ -75.811935424804688, -6.102063179016113 ], [ -75.810546874999886, -6.102534770965576 ], [ -75.809341430664062, -6.103649139404297 ], [ -75.809013366699162, -6.103325843811035 ], [ -75.808746337890625, -6.102058887481689 ], [ -75.8079833984375, -6.101606845855713 ], [ -75.804061889648324, -6.103360176086369 ], [ -75.803062438964844, -6.102962970733586 ], [ -75.802413940429631, -6.102953910827637 ], [ -75.800544738769531, -6.104440212249642 ], [ -75.799392700195312, -6.104560852050724 ], [ -75.79913330078125, -6.104941844940129 ], [ -75.79913330078125, -6.105593204498234 ], [ -75.798683166503906, -6.106109142303353 ], [ -75.797966003417969, -6.105675220489502 ], [ -75.797500610351562, -6.105648040771484 ], [ -75.795989990234375, -6.106445789337158 ], [ -75.795562744140568, -6.107017993927002 ], [ -75.795669555663949, -6.10785007476801 ], [ -75.794578552246094, -6.108646869659424 ], [ -75.794670104980469, -6.109018802642765 ], [ -75.795219421386719, -6.109352111816349 ], [ -75.79522705078125, -6.109741210937443 ], [ -75.79400634765625, -6.110673904418945 ], [ -75.794662475585938, -6.111316204071045 ], [ -75.794761657714844, -6.111849784851074 ], [ -75.793769836425781, -6.112918853759766 ], [ -75.793716430664062, -6.113388061523438 ], [ -75.794715881347543, -6.114571094512939 ], [ -75.794685363769474, -6.114952087402344 ], [ -75.79433441162098, -6.11519813537592 ], [ -75.793174743652287, -6.114737033843937 ], [ -75.792640686035156, -6.114838123321533 ], [ -75.792388916015625, -6.115397930145264 ], [ -75.79248046875, -6.11705303192133 ], [ -75.792274475097656, -6.117352008819523 ], [ -75.79168701171875, -6.117116928100529 ], [ -75.791046142578125, -6.117162227630615 ], [ -75.79095458984375, -6.117607116699219 ], [ -75.790496826171818, -6.117908000945988 ], [ -75.789848327636662, -6.117554187774601 ], [ -75.78900146484375, -6.117502212524357 ], [ -75.788558959960938, -6.118459224700814 ], [ -75.78790283203125, -6.118099212646484 ], [ -75.78680419921875, -6.118101119995117 ], [ -75.786628723144531, -6.1183180809021 ], [ -75.786727905273438, -6.119794845580998 ], [ -75.786575317382756, -6.120137214660588 ], [ -75.785598754882812, -6.119513988494873 ], [ -75.785011291503906, -6.120212078094426 ], [ -75.783973693847656, -6.120059013366699 ], [ -75.783843994140511, -6.120503902435303 ], [ -75.784233093261719, -6.122113227844238 ], [ -75.784118652343693, -6.122537136077824 ], [ -75.783683776855469, -6.122891902923584 ], [ -75.783195495605469, -6.122529983520508 ], [ -75.78302001953125, -6.121453762054443 ], [ -75.782157897949219, -6.120912075042668 ], [ -75.781639099121037, -6.120244026184025 ], [ -75.781578063964844, -6.119811058044377 ], [ -75.782051086425781, -6.119137763977051 ], [ -75.781951904296875, -6.118433952331543 ], [ -75.781181335449219, -6.117918968200627 ], [ -75.780158996582031, -6.117812156677189 ], [ -75.779319763183594, -6.118329048156681 ], [ -75.778999328613281, -6.119794845580998 ], [ -75.777229309081974, -6.11894702911377 ], [ -75.77679443359375, -6.119390964508057 ], [ -75.77679443359375, -6.12004280090332 ], [ -75.7762451171875, -6.120478153228703 ], [ -75.775711059570256, -6.120353221893311 ], [ -75.775505065917969, -6.120570182800236 ], [ -75.776283264160099, -6.121480941772461 ], [ -75.776283264160099, -6.122214794158879 ], [ -75.776046752929688, -6.122729778289795 ], [ -75.776657104492131, -6.123362064361572 ], [ -75.776611328125, -6.123933792114258 ], [ -75.776092529296818, -6.124457836151123 ], [ -75.775741577148438, -6.124513149261475 ], [ -75.775115966796875, -6.124216079711914 ], [ -75.774101257324162, -6.124588012695256 ], [ -75.773284912109375, -6.124460220336857 ], [ -75.772308349609375, -6.125268936157227 ], [ -75.771080017089844, -6.124656200408936 ], [ -75.770355224609375, -6.124673843383789 ], [ -75.7701416015625, -6.125280857086182 ], [ -75.770721435546875, -6.125959873199463 ], [ -75.770660400390568, -6.126375198364201 ], [ -75.770004272460881, -6.126728057861328 ], [ -75.768722534179688, -6.126720905303898 ], [ -75.768203735351449, -6.127220153808594 ], [ -75.7684326171875, -6.12784481048584 ], [ -75.769393920898438, -6.128674030303955 ], [ -75.768913269042969, -6.129478931426945 ], [ -75.769340515136662, -6.129940986633301 ], [ -75.770164489746094, -6.12995719909668 ], [ -75.770401000976562, -6.130454063415527 ], [ -75.770027160644531, -6.131042003631592 ], [ -75.768226623535156, -6.131398200988713 ], [ -75.7679443359375, -6.131626129150391 ], [ -75.767921447753906, -6.132085800170842 ], [ -75.768272399902287, -6.132492065429688 ], [ -75.768348693847656, -6.135440826416016 ], [ -75.769378662109375, -6.1354660987854 ], [ -75.769630432128849, -6.136453151702824 ], [ -75.770103454589787, -6.136868000030518 ], [ -75.770736694335938, -6.13664007186884 ], [ -75.770729064941406, -6.135988235473576 ], [ -75.770942687988224, -6.135701179504338 ], [ -75.771461486816406, -6.135300159454289 ], [ -75.772041320800781, -6.135218143463135 ], [ -75.772239685058594, -6.135662078857365 ], [ -75.772178649902287, -6.136429786682129 ], [ -75.77197265625, -6.136847019195557 ], [ -75.771369934082031, -6.137121200561523 ], [ -75.771255493163949, -6.137399196624756 ], [ -75.771820068359318, -6.137597084045353 ], [ -75.772682189941349, -6.137082099914551 ], [ -75.773567199707031, -6.137015819549561 ], [ -75.773582458496094, -6.137722015380859 ], [ -75.773239135742131, -6.138093948364201 ], [ -75.773345947265568, -6.138382911682129 ], [ -75.774391174316349, -6.139594078063965 ], [ -75.774757385253849, -6.139667034149113 ], [ -75.775184631347656, -6.14011812210083 ], [ -75.775199890136719, -6.140414237976017 ], [ -75.773956298828125, -6.141493797302246 ], [ -75.772407531738281, -6.141497135162354 ], [ -75.772186279296818, -6.141676902770996 ], [ -75.772422790527344, -6.142917156219426 ], [ -75.773582458496094, -6.144216060638428 ], [ -75.773757934570312, -6.144949913024902 ], [ -75.773406982421875, -6.145458221435547 ], [ -75.772636413574219, -6.145701885223389 ], [ -75.772102355956974, -6.14657020568842 ], [ -75.771286010742188, -6.147287845611572 ], [ -75.770881652832031, -6.147087097167969 ], [ -75.770248413085938, -6.145940780639648 ], [ -75.769943237304688, -6.145768165588379 ], [ -75.76873779296875, -6.147216796874943 ], [ -75.768188476562443, -6.147319793701058 ], [ -75.767486572265625, -6.147085189819336 ], [ -75.766204833984375, -6.145774841308537 ], [ -75.764846801757756, -6.145568847656193 ], [ -75.763877868652287, -6.144600868225098 ], [ -75.762702941894531, -6.144450187683105 ], [ -75.762161254882756, -6.142902851104736 ], [ -75.761894226074162, -6.14263200759882 ], [ -75.760612487792969, -6.142607212066594 ], [ -75.759361267089844, -6.141377925872803 ], [ -75.758705139160156, -6.141108989715462 ], [ -75.757957458496094, -6.141471862792912 ], [ -75.757537841796875, -6.143118858337402 ], [ -75.757171630859375, -6.143135070800781 ], [ -75.756591796875, -6.142433166503849 ], [ -75.755943298339844, -6.142415046691895 ], [ -75.7552490234375, -6.142859935760498 ], [ -75.754776000976562, -6.142849922180119 ], [ -75.754615783691406, -6.14347505569458 ], [ -75.755210876464787, -6.144152164459229 ], [ -75.755142211914062, -6.144687175750732 ], [ -75.754318237304688, -6.145266056060734 ], [ -75.75299072265625, -6.145667076110783 ], [ -75.750892639160156, -6.144402980804443 ], [ -75.749053955078125, -6.144404888153076 ], [ -75.748077392578068, -6.14391899108881 ], [ -75.746711730956974, -6.144011020660344 ], [ -75.74639892578125, -6.143432140350342 ], [ -75.74639892578125, -6.142609119415283 ], [ -75.746101379394531, -6.142230987548771 ], [ -75.74383544921875, -6.142024993896484 ], [ -75.743148803710938, -6.141771793365479 ], [ -75.740219116210938, -6.141740798950082 ], [ -75.739456176757812, -6.142076015472355 ], [ -75.738883972167969, -6.141488075256348 ], [ -75.738410949707031, -6.14143514633173 ], [ -75.737617492675781, -6.142267227172852 ], [ -75.736801147460881, -6.142260074615479 ], [ -75.736305236816406, -6.142478942871094 ], [ -75.735549926757812, -6.1422438621521 ], [ -75.734748840332031, -6.143548011779785 ], [ -75.733787536621094, -6.143495082855225 ], [ -75.733375549316349, -6.143857955932617 ], [ -75.732620239257756, -6.143587112426758 ], [ -75.731338500976562, -6.143689155578556 ], [ -75.730636596679688, -6.143109798431396 ], [ -75.729721069335938, -6.143085002899113 ], [ -75.72894287109375, -6.142814159393254 ], [ -75.727516174316406, -6.143394947051945 ], [ -75.72637939453125, -6.142094135284424 ], [ -75.726097106933594, -6.140847206115666 ], [ -75.724807739257756, -6.139664173126221 ], [ -75.724159240722656, -6.139655113220158 ], [ -75.723571777343636, -6.140124797820988 ], [ -75.722877502441349, -6.138950824737549 ], [ -75.721229553222656, -6.138941764831543 ], [ -75.721046447753906, -6.139161109924316 ], [ -75.721069335937443, -6.140329837799072 ], [ -75.720191955566406, -6.140718936920166 ], [ -75.719596862792969, -6.140700817108097 ], [ -75.718719482421875, -6.140006065368652 ], [ -75.718391418456974, -6.138929843902588 ], [ -75.717262268066349, -6.139067173004094 ], [ -75.716926574707031, -6.138741016387883 ], [ -75.716712951660156, -6.137586116790771 ], [ -75.715942382812386, -6.137405872344914 ], [ -75.715057373046818, -6.136464118957463 ], [ -75.714408874511662, -6.13614988327015 ], [ -75.713890075683594, -6.135373115539551 ], [ -75.712509155273324, -6.134921073913574 ], [ -75.7122802734375, -6.134507179260254 ], [ -75.712310791015568, -6.133763790130615 ], [ -75.711738586425724, -6.133169174194336 ], [ -75.711769104003906, -6.13145923614502 ], [ -75.712661743164062, -6.130760192871094 ], [ -75.712776184081974, -6.129864215850773 ], [ -75.711662292480469, -6.128635883331242 ], [ -75.710960388183537, -6.12664604187006 ], [ -75.70965576171875, -6.125645160675049 ], [ -75.709632873535099, -6.125020980834904 ], [ -75.708755493164006, -6.124234199523869 ], [ -75.708206176757756, -6.124000072479248 ], [ -75.702011108398381, -6.123447895050049 ], [ -75.700859069824162, -6.124009132385254 ], [ -75.698692321777344, -6.124358177185059 ], [ -75.695541381835938, -6.125833988189697 ], [ -75.692634582519531, -6.126644134521484 ], [ -75.692367553710881, -6.126881122589111 ], [ -75.691650390625, -6.126752853393498 ], [ -75.689376831054688, -6.127065181732178 ], [ -75.685356140136719, -6.126808166503849 ], [ -75.682624816894474, -6.12605094909668 ], [ -75.681526184082031, -6.126032829284668 ], [ -75.678276062011719, -6.125449180602971 ], [ -75.674720764160099, -6.124658107757455 ], [ -75.669509887695312, -6.122992038726807 ], [ -75.664474487304688, -6.123096942901554 ], [ -75.661590576171875, -6.123552799224854 ], [ -75.659660339355412, -6.124334812164307 ], [ -75.654212951660099, -6.128265857696533 ], [ -75.648574829101562, -6.133382797241211 ], [ -75.641876220703125, -6.139913082122746 ], [ -75.63720703125, -6.142814159393254 ], [ -75.636337280273438, -6.143094062805176 ], [ -75.635055541992131, -6.143159866332951 ], [ -75.626754760742131, -6.142419815063477 ], [ -75.622940063476506, -6.142477035522404 ], [ -75.620872497558594, -6.142878055572453 ], [ -75.618026733398438, -6.143894195556641 ], [ -75.615447998046875, -6.14449405670166 ], [ -75.612052917480412, -6.146110057830811 ], [ -75.610359191894474, -6.147503852844181 ], [ -75.606986999511719, -6.151017189025879 ], [ -75.603431701660156, -6.155570030212346 ], [ -75.60113525390625, -6.157824039459229 ], [ -75.595909118652344, -6.164200782775822 ], [ -75.593696594238281, -6.166481018066349 ], [ -75.588775634765625, -6.172892093658447 ], [ -75.580986022949162, -6.180669784545898 ], [ -75.577346801757756, -6.185523033142033 ], [ -75.573059082031193, -6.193126201629639 ], [ -75.569595336914062, -6.196793079376164 ], [ -75.568923950195312, -6.197282791137695 ], [ -75.565963745117188, -6.198489189147892 ], [ -75.561630249023381, -6.199316024780217 ], [ -75.559898376464787, -6.19929122924799 ], [ -75.557533264160099, -6.199592113494873 ], [ -75.546913146972656, -6.202027797698975 ], [ -75.54345703125, -6.203225135803166 ], [ -75.539535522460938, -6.205410003662109 ], [ -75.531776428222599, -6.212555885314885 ], [ -75.526924133300668, -6.217940807342472 ], [ -75.524856567382812, -6.220520973205566 ], [ -75.52178955078125, -6.225101947784424 ], [ -75.518157958984375, -6.229365825653076 ], [ -75.515907287597656, -6.232373237609863 ], [ -75.515472412109318, -6.233356952667236 ], [ -75.513351440429631, -6.236471176147461 ], [ -75.511466979980412, -6.240056037902832 ], [ -75.508453369140625, -6.24286413192749 ], [ -75.505592346191406, -6.246918201446533 ], [ -75.502143859863281, -6.250369071960392 ], [ -75.499977111816406, -6.252178192138672 ], [ -75.498802185058594, -6.254304885864258 ], [ -75.496627807617188, -6.259564876556396 ], [ -75.495849609375, -6.263154983520508 ], [ -75.495819091796818, -6.272789001464787 ], [ -75.496002197265568, -6.276270866394043 ], [ -75.496757507324162, -6.279291152954102 ], [ -75.499404907226562, -6.285213947296086 ], [ -75.50189208984375, -6.287970066070557 ], [ -75.503562927246094, -6.29165077209467 ], [ -75.505363464355412, -6.294642925262394 ], [ -75.509864807128906, -6.300102233886719 ], [ -75.512184143066406, -6.302435874938908 ], [ -75.513206481933594, -6.303192138671875 ], [ -75.517997741699219, -6.305496215820312 ], [ -75.52425384521473, -6.307226181030273 ], [ -75.529998779296875, -6.30962610244751 ], [ -75.532051086425724, -6.310229778289795 ], [ -75.539138793945312, -6.314067840576172 ], [ -75.541862487792912, -6.315927982330322 ], [ -75.546028137207031, -6.319659233093262 ], [ -75.5499267578125, -6.324421882629338 ], [ -75.551742553710938, -6.328536033630371 ], [ -75.552787780761719, -6.332333087921086 ], [ -75.553085327148438, -6.337498188018799 ], [ -75.552772521972656, -6.339968204498291 ], [ -75.550048828125, -6.342196941375732 ], [ -75.549087524414062, -6.343355178833008 ], [ -75.548011779785156, -6.345483779907227 ], [ -75.54595947265625, -6.346833229064885 ], [ -75.545379638671875, -6.347774028778076 ], [ -75.543678283691349, -6.349575042724553 ], [ -75.543159484863281, -6.350860118865967 ], [ -75.543228149414006, -6.353157997131348 ], [ -75.544975280761719, -6.357526779174748 ], [ -75.545410156249943, -6.359388828277588 ], [ -75.545173645019531, -6.360573768615666 ], [ -75.543930053710938, -6.362194061279297 ], [ -75.543708801269418, -6.36285495758051 ], [ -75.543914794921875, -6.364247798919678 ], [ -75.544952392578125, -6.366806983947754 ], [ -75.545097351074219, -6.368361949920597 ], [ -75.544639587402287, -6.369511127471867 ], [ -75.543449401855469, -6.370155811309814 ], [ -75.542869567871094, -6.370878219604435 ], [ -75.542724609374943, -6.373067855834904 ], [ -75.543899536132699, -6.376648902893066 ], [ -75.543983459472599, -6.379036903381348 ], [ -75.544509887695312, -6.38100004196167 ], [ -75.545387268066406, -6.382699966430607 ], [ -75.548049926757812, -6.38634204864502 ], [ -75.54866790771473, -6.387572765350342 ], [ -75.548896789550781, -6.388658046722412 ], [ -75.548828124999943, -6.391688823699951 ], [ -75.548263549804631, -6.393533229827881 ], [ -75.546195983886719, -6.395625114440861 ], [ -75.545013427734318, -6.397698879241943 ], [ -75.543144226074219, -6.399844169616699 ], [ -75.542388916015625, -6.401111125946045 ], [ -75.541915893554688, -6.402785778045597 ], [ -75.542053222656193, -6.403960227966309 ], [ -75.54409027099598, -6.406681060791016 ], [ -75.545303344726506, -6.408976078033447 ], [ -75.545783996581974, -6.412071228027344 ], [ -75.545593261718693, -6.414068222045898 ], [ -75.544975280761719, -6.415318965911808 ], [ -75.54364013671875, -6.416830062866211 ], [ -75.54144287109375, -6.418315887451172 ], [ -75.539329528808594, -6.42048978805542 ], [ -75.537498474121037, -6.422012805938721 ], [ -75.536697387695312, -6.423016071319523 ], [ -75.535942077636719, -6.425079822540283 ], [ -75.535133361816406, -6.429043769836369 ], [ -75.536209106445312, -6.430623054504395 ], [ -75.537940979003906, -6.431797027587834 ], [ -75.538444519042912, -6.432784080505371 ], [ -75.538360595703068, -6.433426856994572 ], [ -75.536834716796818, -6.435823917388916 ], [ -75.536071777343693, -6.43809700012207 ], [ -75.535125732421761, -6.438973903655949 ], [ -75.534873962402344, -6.4390931129455 ], [ -75.532554626464844, -6.43852519989008 ], [ -75.531837463378906, -6.438589096069279 ], [ -75.530433654785099, -6.439748764038029 ], [ -75.530364990234375, -6.441765785217285 ], [ -75.529380798339787, -6.443041801452637 ], [ -75.529014587402287, -6.444263935089111 ], [ -75.5299072265625, -6.447165012359619 ], [ -75.529685974121037, -6.449538230895996 ], [ -75.528427124023381, -6.451003074645996 ], [ -75.525856018066349, -6.452599048614445 ], [ -75.524772644042969, -6.453838825225773 ], [ -75.524955749511719, -6.455023765563908 ], [ -75.526588439941406, -6.456993103027344 ], [ -75.526634216308537, -6.458006858825684 ], [ -75.525810241699219, -6.459118843078613 ], [ -75.524818420410099, -6.459564208984375 ], [ -75.522911071777287, -6.461284160614014 ], [ -75.5211181640625, -6.464803218841496 ], [ -75.520629882812386, -6.466108798980713 ], [ -75.520248413085824, -6.468090057373047 ], [ -75.520477294921875, -6.469346046447754 ], [ -75.521507263183594, -6.471308231353703 ], [ -75.523994445800781, -6.474318981170597 ], [ -75.524230957031193, -6.475177764892521 ], [ -75.524055480956974, -6.476354122161808 ], [ -75.519218444824219, -6.483043193817139 ], [ -75.512985229492131, -6.489896774291935 ], [ -75.511497497558594, -6.492946147918701 ], [ -75.509773254394531, -6.497607231140137 ], [ -75.509971618652344, -6.500112056732121 ], [ -75.509872436523438, -6.502284049987793 ], [ -75.508781433105412, -6.50713396072382 ], [ -75.508674621581974, -6.511365890502873 ], [ -75.508926391601562, -6.513093948364201 ], [ -75.509841918945256, -6.515308856964111 ], [ -75.511215209960938, -6.517814159393311 ], [ -75.511848449706974, -6.518482208251896 ], [ -75.515632629394531, -6.520923137664738 ], [ -75.515892028808594, -6.521292209625187 ], [ -75.517929077148381, -6.522548198699894 ], [ -75.519332885742188, -6.523721218109131 ], [ -75.520469665527344, -6.524328231811467 ], [ -75.523590087890625, -6.52722692489624 ], [ -75.52410888671875, -6.528601169586182 ], [ -75.524085998535156, -6.530799865722656 ], [ -75.525222778320312, -6.533113956451359 ], [ -75.52569580078125, -6.534985065460148 ], [ -75.526916503906193, -6.53787899017334 ], [ -75.527992248535156, -6.539245128631535 ], [ -75.529563903808537, -6.540689945220947 ], [ -75.531982421875, -6.541964054107666 ], [ -75.533004760742131, -6.544221878051758 ], [ -75.535186767578068, -6.545966148376465 ], [ -75.535202026367131, -6.546328067779541 ], [ -75.536979675292969, -6.54900407791132 ], [ -75.537704467773438, -6.552140235900879 ], [ -75.537620544433594, -6.555822849273625 ], [ -75.536911010742131, -6.558682918548584 ], [ -75.536796569824219, -6.560237884521428 ], [ -75.536529541015568, -6.56971883773798 ], [ -75.536758422851562, -6.57164478302002 ], [ -75.53668212890625, -6.576240062713566 ], [ -75.537895202636719, -6.579721927642822 ], [ -75.538063049316349, -6.581738948821965 ], [ -75.539627075195312, -6.583646774291935 ], [ -75.541320800781193, -6.586275100708008 ], [ -75.544471740722543, -6.589357852935791 ], [ -75.545608520507756, -6.590794086456299 ], [ -75.546035766601562, -6.591979026794377 ], [ -75.546905517578125, -6.592936038970834 ], [ -75.548164367675724, -6.596977233886605 ], [ -75.550621032714844, -6.601301193237248 ], [ -75.550666809081974, -6.603768825530949 ], [ -75.550445556640568, -6.604374885559082 ], [ -75.549964904785156, -6.604773998260441 ], [ -75.548957824707031, -6.604783058166504 ], [ -75.547996520996037, -6.604234218597355 ], [ -75.546913146972656, -6.60443210601801 ], [ -75.543609619140568, -6.606408119201603 ], [ -75.541748046875, -6.606873035430851 ], [ -75.539939880371094, -6.607769012451172 ], [ -75.5343017578125, -6.611845970153809 ], [ -75.532546997070256, -6.614192008972111 ], [ -75.532470703125, -6.615294933319092 ], [ -75.532691955566406, -6.615828037261963 ], [ -75.536369323730469, -6.618718147277775 ], [ -75.537834167480469, -6.62061691284174 ], [ -75.539100646972599, -6.626359939575195 ], [ -75.541511535644474, -6.631330966949463 ], [ -75.541755676269531, -6.633159160614014 ], [ -75.541587829589787, -6.634624004363957 ], [ -75.541091918945312, -6.636281013488713 ], [ -75.537055969238281, -6.640292167663574 ], [ -75.536491394042969, -6.641839981079045 ], [ -75.536048889160099, -6.642409801483154 ], [ -75.533874511718693, -6.644394874572697 ], [ -75.531280517578068, -6.645743846893311 ], [ -75.530220031738281, -6.64689302444458 ], [ -75.529296874999943, -6.648705005645752 ], [ -75.528999328613224, -6.649853229522705 ], [ -75.528739929199219, -6.652748107910099 ], [ -75.526596069335938, -6.655707836151066 ], [ -75.5260009765625, -6.659616947174072 ], [ -75.525825500488281, -6.662645816802922 ], [ -75.52425384521473, -6.66795015335083 ], [ -75.523902893066406, -6.671422958374023 ], [ -75.523445129394531, -6.672437191009465 ], [ -75.52294921875, -6.674589157104492 ], [ -75.522903442382756, -6.677519798278752 ], [ -75.521644592285099, -6.682135105133057 ], [ -75.521194458007756, -6.687182903289681 ], [ -75.521308898925781, -6.689480781555119 ], [ -75.522056579589787, -6.693840980529785 ], [ -75.522041320800724, -6.695033073425293 ], [ -75.522628784179631, -6.697449207305908 ], [ -75.522613525390568, -6.699295043945256 ], [ -75.52313232421875, -6.704243183135929 ], [ -75.523742675781193, -6.707479000091553 ], [ -75.524101257324219, -6.708229064941406 ], [ -75.524093627929688, -6.709368228912297 ], [ -75.524322509765568, -6.710065841674805 ], [ -75.524322509765568, -6.712726116180363 ], [ -75.523971557617188, -6.716760158538762 ], [ -75.524299621582031, -6.719508171081543 ], [ -75.525337219238281, -6.722945213317871 ], [ -75.526962280273438, -6.730788230895996 ], [ -75.528900146484318, -6.736645221710205 ], [ -75.529197692871037, -6.739206790924015 ], [ -75.530021667480469, -6.74270486831665 ], [ -75.530059814453068, -6.745093822479248 ], [ -75.529701232910156, -6.746431827545166 ], [ -75.528518676757756, -6.747707843780518 ], [ -75.527214050292969, -6.748316764831543 ], [ -75.526313781738281, -6.749094009399414 ], [ -75.525505065917969, -6.749041080474797 ], [ -75.523818969726562, -6.750119209289551 ], [ -75.523361206054631, -6.750690937042179 ], [ -75.522926330566406, -6.752473831176644 ], [ -75.521614074707031, -6.7620530128479 ], [ -75.520561218261719, -6.764595985412598 ], [ -75.519104003906136, -6.7659912109375 ], [ -75.515678405761719, -6.767296791076603 ], [ -75.512687683105412, -6.768892765045166 ], [ -75.510261535644531, -6.770540237426758 ], [ -75.507804870605469, -6.772885799407959 ], [ -75.5072021484375, -6.774624824523926 ], [ -75.506996154785156, -6.776731014251709 ], [ -75.507133483886719, -6.778286933898869 ], [ -75.507637023925724, -6.780250072479191 ], [ -75.5103759765625, -6.784146785736084 ], [ -75.513031005859375, -6.786567211151123 ], [ -75.517433166503906, -6.78901290893549 ], [ -75.519424438476562, -6.789816856384277 ], [ -75.523567199706974, -6.79059886932373 ], [ -75.527366638183537, -6.792992115020752 ], [ -75.529098510742131, -6.793089866638127 ], [ -75.531242370605469, -6.794108867645264 ], [ -75.534263610839787, -6.794014930725041 ], [ -75.535354614257812, -6.794196128845215 ], [ -75.536949157714844, -6.795269012451172 ], [ -75.539268493652344, -6.797636985778809 ], [ -75.540344238281193, -6.798142910003548 ], [ -75.541435241699219, -6.799254894256592 ], [ -75.543678283691349, -6.799704074859619 ], [ -75.546775817871094, -6.799510002136174 ], [ -75.550590515136719, -6.801894187927189 ], [ -75.554634094238281, -6.803589820861816 ], [ -75.55633544921875, -6.805378913879281 ], [ -75.557350158691406, -6.805243015289307 ], [ -75.558006286621037, -6.805586814880314 ], [ -75.559013366699219, -6.805583953857422 ], [ -75.559616088867131, -6.805819034576416 ], [ -75.563186645507812, -6.808248996734562 ], [ -75.564575195312443, -6.810407161712646 ], [ -75.566055297851562, -6.811645030975342 ], [ -75.567550659179574, -6.812357902526799 ], [ -75.570556640625, -6.812663078308049 ], [ -75.571441650390568, -6.81295108795166 ], [ -75.57232666015625, -6.8135728836059 ], [ -75.572944641113281, -6.815220832824707 ], [ -75.573318481445312, -6.81751823425293 ], [ -75.573631286621037, -6.818258762359562 ], [ -75.574211120605412, -6.818873882293644 ], [ -75.575469970703125, -6.819640159606934 ], [ -75.578598022460881, -6.820991039276123 ], [ -75.580696105956974, -6.82122611999506 ], [ -75.582756042480469, -6.820851802825928 ], [ -75.58343505859375, -6.821105003356934 ], [ -75.584327697753849, -6.821773052215576 ], [ -75.586296081542969, -6.822502136230412 ], [ -75.588539123535156, -6.824525833129883 ], [ -75.591758728027287, -6.82647705078125 ], [ -75.592269897460938, -6.827552795410099 ], [ -75.592697143554631, -6.830673217773438 ], [ -75.593154907226562, -6.831241130828857 ], [ -75.593940734863224, -6.831730842590332 ], [ -75.597114562988168, -6.832619190216008 ], [ -75.600151062011662, -6.834146976470947 ], [ -75.601394653320256, -6.834487915039062 ], [ -75.605308532714787, -6.83669900894165 ], [ -75.607955932617131, -6.837745189666691 ], [ -75.60906982421875, -6.838729858398381 ], [ -75.612060546874943, -6.838990211486816 ], [ -75.616111755371094, -6.841018199920654 ], [ -75.616928100585881, -6.841125011444092 ], [ -75.618072509765568, -6.840798854827881 ], [ -75.620590209960938, -6.839293003082275 ], [ -75.621223449706974, -6.83912181854248 ], [ -75.624984741210938, -6.841668128967285 ], [ -75.627418518066349, -6.842133045196533 ], [ -75.630386352539006, -6.843061923980656 ], [ -75.631561279296875, -6.842987060546875 ], [ -75.633003234863281, -6.843239784240609 ], [ -75.63421630859375, -6.843047142028809 ], [ -75.634574890136662, -6.841662883758488 ], [ -75.635604858398438, -6.840023994445801 ], [ -75.637985229492188, -6.837271213531494 ], [ -75.640373229980469, -6.835415840148869 ], [ -75.641014099121094, -6.834646224975529 ], [ -75.641258239746037, -6.831334114074707 ], [ -75.642074584960938, -6.830011844634953 ], [ -75.642219543456974, -6.829280853271428 ], [ -75.6416015625, -6.82764196395874 ], [ -75.640472412109318, -6.826080799102783 ], [ -75.640357971191406, -6.824704170226994 ], [ -75.6416015625, -6.822676181793099 ], [ -75.642135620117188, -6.820631027221623 ], [ -75.642318725585824, -6.817690849304199 ], [ -75.642059326171875, -6.815972805023137 ], [ -75.642433166503906, -6.813422203063908 ], [ -75.642349243164062, -6.808817863464355 ], [ -75.642837524414062, -6.806953907012883 ], [ -75.644622802734375, -6.803651809692326 ], [ -75.645469665527344, -6.801025867462158 ], [ -75.646308898925724, -6.799822807312012 ], [ -75.646476745605469, -6.797723770141602 ], [ -75.647628784179631, -6.797196865081787 ], [ -75.647933959960881, -6.796825885772705 ], [ -75.647567749023438, -6.795323848724365 ], [ -75.647834777831974, -6.793416023254395 ], [ -75.648063659667969, -6.793045043945256 ], [ -75.64794921875, -6.789544105529728 ], [ -75.648406982421818, -6.786911010742188 ], [ -75.648475646972656, -6.782334804534912 ], [ -75.649368286132756, -6.781781196594238 ], [ -75.652359008789062, -6.780972003936768 ], [ -75.655807495117188, -6.779105186462289 ], [ -75.660217285156193, -6.774577140808105 ], [ -75.661018371582031, -6.774123191833439 ], [ -75.662055969238224, -6.773081779479924 ], [ -75.6658935546875, -6.771638870239201 ], [ -75.667350769042969, -6.769211769103947 ], [ -75.6695556640625, -6.767128944396916 ], [ -75.670509338378906, -6.766611099243164 ], [ -75.671867370605412, -6.766427040100098 ], [ -75.672874450683594, -6.766536235809326 ], [ -75.676040649414062, -6.767481803894043 ], [ -75.676834106445256, -6.768057823181152 ], [ -75.678840637206974, -6.768163204193058 ], [ -75.680351257324162, -6.767501831054688 ], [ -75.681694030761662, -6.767236232757512 ], [ -75.683067321777344, -6.766158103942871 ], [ -75.684700012207031, -6.765570163726807 ], [ -75.685493469238224, -6.764817237853947 ], [ -75.686264038085881, -6.76451921463007 ], [ -75.687164306640625, -6.764976978302002 ], [ -75.689178466796875, -6.764946937561035 ], [ -75.690437316894531, -6.767053127288705 ], [ -75.691757202148438, -6.768208980560303 ], [ -75.692489624023438, -6.768568992614746 ], [ -75.693504333496037, -6.768559932708683 ], [ -75.694290161132756, -6.768795013427678 ], [ -75.698867797851506, -6.768696784973145 ], [ -75.700279235839787, -6.769372940063477 ], [ -75.701446533203011, -6.769615173339844 ], [ -75.702293395996037, -6.770183086395264 ], [ -75.704742431640625, -6.769854068756104 ], [ -75.705787658691406, -6.770432949066162 ], [ -75.707801818847599, -6.769822120666504 ], [ -75.708686828613224, -6.770221233367863 ], [ -75.709335327148381, -6.770255088806152 ], [ -75.711227416992188, -6.769320964813232 ], [ -75.71331787109375, -6.769526004791203 ], [ -75.714218139648381, -6.769063949584904 ], [ -75.71533203125, -6.768908977508488 ], [ -75.715812683105412, -6.769067764282113 ], [ -75.716583251953068, -6.77000904083252 ], [ -75.717010498046875, -6.769955158233586 ], [ -75.718376159667969, -6.768877029418832 ], [ -75.719459533691349, -6.768740177154541 ], [ -75.720359802246094, -6.767951011657715 ], [ -75.721580505371094, -6.767650127410832 ], [ -75.722236633300668, -6.766553878784123 ], [ -75.721504211425781, -6.765751838684082 ], [ -75.72149658203125, -6.765461921691895 ], [ -75.72186279296875, -6.765063762664738 ], [ -75.722419738769474, -6.765072822570801 ], [ -75.722999572753793, -6.764762878417969 ], [ -75.72271728515625, -6.763452053070068 ], [ -75.724235534667912, -6.763233184814453 ], [ -75.724411010742131, -6.762273788452092 ], [ -75.725418090820312, -6.761620044708252 ], [ -75.726791381835881, -6.760008811950627 ], [ -75.728759765625, -6.75836801528925 ], [ -75.729759216308537, -6.757046222686768 ], [ -75.730224609374943, -6.755951881408635 ], [ -75.731536865234375, -6.754393100738412 ], [ -75.7330322265625, -6.75383186340332 ], [ -75.732978820800724, -6.752562999725342 ], [ -75.733764648437443, -6.751323223114014 ], [ -75.73388671875, -6.750535964965763 ], [ -75.734390258789062, -6.750127792358398 ], [ -75.735557556152287, -6.749964237213135 ], [ -75.736457824707031, -6.748913764953556 ], [ -75.736579895019531, -6.748009204864502 ], [ -75.735702514648438, -6.746735095977783 ], [ -75.735778808593636, -6.745912075042725 ], [ -75.736328124999943, -6.745412826538029 ], [ -75.736869812011719, -6.745313167572021 ], [ -75.738761901855469, -6.7433180809021 ], [ -75.740005493164062, -6.742721080780029 ], [ -75.741012573242131, -6.741671085357666 ], [ -75.74249267578125, -6.738076210021973 ], [ -75.743408203124886, -6.736592769622803 ], [ -75.744087219238281, -6.734203815460148 ], [ -75.745101928710881, -6.731841087341309 ], [ -75.745132446289062, -6.72880315780634 ], [ -75.744796752929688, -6.727272987365609 ], [ -75.744560241699219, -6.727002143859863 ], [ -75.744613647460881, -6.726343154907113 ], [ -75.747192382812443, -6.723886013031006 ], [ -75.748123168945312, -6.722421169280892 ], [ -75.75008392333973, -6.720109939575138 ], [ -75.75042724609375, -6.719260215759277 ], [ -75.750755310058594, -6.717260837554875 ], [ -75.751968383789006, -6.713776111602783 ], [ -75.756271362304631, -6.707934856414795 ], [ -75.756721496582031, -6.706342220306396 ], [ -75.75762939453125, -6.704857826232853 ], [ -75.758888244628906, -6.702088832855168 ], [ -75.760726928710938, -6.699462890624943 ], [ -75.761436462402344, -6.696520805358887 ], [ -75.762237548828125, -6.6944580078125 ], [ -75.762321472167969, -6.693172931671143 ], [ -75.763801574706974, -6.69031286239624 ], [ -75.764739990234318, -6.689188957214355 ], [ -75.768218994140625, -6.686995983123779 ], [ -75.771659851074219, -6.683055877685547 ], [ -75.771492004394531, -6.682413101196289 ], [ -75.769943237304688, -6.680607795715275 ], [ -75.769355773925781, -6.678771018981877 ], [ -75.769462585449219, -6.677686214446965 ], [ -75.770660400390568, -6.675505161285344 ], [ -75.771057128906193, -6.673992156982422 ], [ -75.770599365234375, -6.672879219055119 ], [ -75.769035339355412, -6.670976161956787 ], [ -75.768882751464844, -6.669870853424015 ], [ -75.768539428710938, -6.669211864471436 ], [ -75.768890380859375, -6.667692184448129 ], [ -75.7696533203125, -6.667022228240967 ], [ -75.771186828613281, -6.666773796081543 ], [ -75.771842956542969, -6.666457176208439 ], [ -75.77288818359375, -6.665297031402531 ], [ -75.773338317871037, -6.664185047149658 ], [ -75.774276733398381, -6.662826061248779 ], [ -75.776077270507812, -6.661746025085449 ], [ -75.778205871581974, -6.659717082977181 ], [ -75.778945922851506, -6.658793926239014 ], [ -75.779899597167912, -6.65700101852417 ], [ -75.782234191894531, -6.654284000396729 ], [ -75.784454345703125, -6.650093078613224 ], [ -75.785911560058537, -6.64785718917841 ], [ -75.788139343261719, -6.645293235778752 ], [ -75.789573669433594, -6.644674777984619 ], [ -75.790878295898381, -6.646671772003117 ], [ -75.793663024902287, -6.649979114532414 ], [ -75.794395446777287, -6.652157783508301 ], [ -75.794807434081974, -6.655250072479248 ], [ -75.795989990234375, -6.65754508972168 ], [ -75.7967529296875, -6.658459186553955 ], [ -75.798423767089787, -6.658898830413762 ], [ -75.803413391113281, -6.657760143280029 ], [ -75.807762145996037, -6.657200813293457 ], [ -75.813629150390625, -6.659777164459172 ], [ -75.820503234863281, -6.661674976348877 ], [ -75.821441650390625, -6.662251949310303 ], [ -75.822448730468693, -6.663328170776367 ], [ -75.822746276855412, -6.664104938507023 ], [ -75.822257995605412, -6.665418148040771 ], [ -75.821197509765568, -6.666141986846924 ], [ -75.819343566894531, -6.667926788330021 ], [ -75.817771911621037, -6.670525074005127 ], [ -75.817054748535156, -6.673467159271183 ], [ -75.815948486328068, -6.676091194152832 ], [ -75.8154296875, -6.679079055786133 ], [ -75.814552307128793, -6.680696964263916 ], [ -75.813262939453125, -6.682083129882812 ], [ -75.814437866210881, -6.683374881744385 ], [ -75.817245483398438, -6.6852707862854 ], [ -75.820137023925781, -6.687970161437931 ], [ -75.8201904296875, -6.689255237579346 ], [ -75.819709777832031, -6.691489219665527 ], [ -75.819862365722599, -6.692112922668457 ], [ -75.820541381835881, -6.692990779876709 ], [ -75.822608947753906, -6.693385124206543 ], [ -75.823860168457031, -6.693336963653564 ], [ -75.825080871582031, -6.695713996887207 ], [ -75.82647705078125, -6.696506977081299 ], [ -75.832878112792969, -6.696432113647461 ], [ -75.833930969238281, -6.698873043060303 ], [ -75.834342956542969, -6.70048189163208 ], [ -75.834892272949219, -6.701216220855713 ], [ -75.836585998535156, -6.702468872070312 ], [ -75.839195251464844, -6.702898025512695 ], [ -75.840194702148381, -6.70358419418335 ], [ -75.840469360351506, -6.704640865325928 ], [ -75.838783264160156, -6.706678867340031 ], [ -75.839347839355355, -6.708227157592773 ], [ -75.8382568359375, -6.709558010101318 ], [ -75.838180541992131, -6.711022853851318 ], [ -75.839141845703068, -6.711716175079232 ], [ -75.842231750488281, -6.711585998535099 ], [ -75.843475341796875, -6.712696075439453 ], [ -75.844093322753849, -6.714213848114014 ], [ -75.84503173828125, -6.714511871337891 ], [ -75.845611572265568, -6.714971065521183 ], [ -75.8463134765625, -6.716254234313908 ], [ -75.84576416015625, -6.71887016296381 ], [ -75.846504211425781, -6.72060489654541 ], [ -75.84774017333973, -6.720955848693791 ], [ -75.848831176757812, -6.720846176147461 ], [ -75.849983215332031, -6.721186161041203 ], [ -75.852546691894531, -6.720928192138615 ], [ -75.853034973144531, -6.720729827880803 ], [ -75.853439331054631, -6.720184803008976 ], [ -75.853630065917912, -6.718277931213322 ], [ -75.854667663574162, -6.717506885528508 ], [ -75.855384826660156, -6.717432022094727 ], [ -75.856376647949219, -6.718831062316895 ], [ -75.857009887695312, -6.719212055206299 ], [ -75.857749938964787, -6.719318866729679 ], [ -75.859718322753906, -6.717851161956787 ], [ -75.861175537109318, -6.717070102691594 ], [ -75.861831665039006, -6.71643590927124 ], [ -75.862648010253906, -6.716226100921631 ], [ -75.863502502441406, -6.717155933380127 ], [ -75.86370849609375, -6.718432903289738 ], [ -75.8634033203125, -6.719579219818115 ], [ -75.862098693847656, -6.722014904022217 ], [ -75.862220764160099, -6.723091125488281 ], [ -75.862693786621037, -6.723044872283936 ], [ -75.863655090331974, -6.722339153289738 ], [ -75.864295959472656, -6.722266197204476 ], [ -75.865737915039006, -6.723528861999512 ], [ -75.866279602050781, -6.723662853240967 ], [ -75.867607116699219, -6.72331714630127 ], [ -75.868133544921818, -6.722962856292668 ], [ -75.870765686035156, -6.722623825073129 ], [ -75.871551513671818, -6.723257064819279 ], [ -75.87215423583973, -6.724965095519963 ], [ -75.873077392578068, -6.72527885437006 ], [ -75.874778747558594, -6.726343154907113 ], [ -75.875587463378793, -6.725916862487793 ], [ -75.876480102539062, -6.724098205566349 ], [ -75.877517700195312, -6.723752021789551 ], [ -75.879852294921818, -6.725187778472844 ], [ -75.882598876953125, -6.725306034088021 ], [ -75.88409423828125, -6.72693395614624 ], [ -75.885231018066406, -6.727265834808293 ], [ -75.886260986328068, -6.726885795593262 ], [ -75.887702941894531, -6.725343227386418 ], [ -75.88848876953125, -6.724862098693791 ], [ -75.889587402343693, -6.724815845489502 ], [ -75.890960693359375, -6.725319862365723 ], [ -75.891700744628849, -6.725302219390812 ], [ -75.892364501953068, -6.726048946380615 ], [ -75.893074035644531, -6.727549076080322 ], [ -75.896316528320312, -6.728050231933594 ], [ -75.898292541503906, -6.729836940765324 ], [ -75.900016784667969, -6.730794906616154 ], [ -75.900321960449219, -6.731581211090031 ], [ -75.900360107421818, -6.734013080596867 ], [ -75.900917053222656, -6.735070228576603 ], [ -75.901817321777344, -6.735123157501221 ], [ -75.902961730957031, -6.73405122756958 ], [ -75.903572082519531, -6.733880043029785 ], [ -75.904342651367188, -6.734168052673283 ], [ -75.905830383300781, -6.735249996185303 ], [ -75.906303405761719, -6.735295772552377 ], [ -75.906951904296818, -6.735050201415959 ], [ -75.90765380859375, -6.73430681228632 ], [ -75.907989501953068, -6.732968807220459 ], [ -75.909393310546875, -6.731788158416691 ], [ -75.909706115722599, -6.73091983795166 ], [ -75.910324096679688, -6.730240821838379 ], [ -75.911224365234318, -6.730076789855957 ], [ -75.913108825683594, -6.730346202850342 ], [ -75.915084838867188, -6.729969024658203 ], [ -75.916748046875, -6.730128765106201 ], [ -75.918304443359318, -6.728887081146183 ], [ -75.919273376464844, -6.727745056152344 ], [ -75.919692993164062, -6.726522922515812 ], [ -75.920822143554688, -6.725735187530404 ], [ -75.92236328125, -6.725884914398193 ], [ -75.924278259277344, -6.727058887481633 ], [ -75.926429748535156, -6.725524902343693 ], [ -75.927337646484318, -6.725398063659611 ], [ -75.929649353027287, -6.726280212402287 ], [ -75.930267333984375, -6.727687835693359 ], [ -75.9306640625, -6.727931976318359 ], [ -75.931304931640625, -6.727913856506291 ], [ -75.933403015136719, -6.726994991302433 ], [ -75.933891296386719, -6.726443767547551 ], [ -75.934226989746037, -6.725502014160099 ], [ -75.935279846191349, -6.724948883056584 ], [ -75.938285827636719, -6.722382068633976 ], [ -75.940025329589787, -6.721365928649902 ], [ -75.941909790039062, -6.720602035522404 ], [ -75.94677734375, -6.719696998596191 ], [ -75.947608947753906, -6.719353199005127 ], [ -75.949066162109375, -6.718229770660344 ], [ -75.950286865234375, -6.717792034149113 ], [ -75.954643249511662, -6.717919826507512 ], [ -75.95684814453125, -6.718548774719238 ], [ -75.958770751953125, -6.718598842620793 ], [ -75.959945678710938, -6.718413829803467 ], [ -75.961662292480469, -6.717398166656494 ], [ -75.964561462402287, -6.716967105865479 ], [ -75.966369628906193, -6.717650890350342 ], [ -75.967475891113281, -6.718589782714844 ], [ -75.969032287597599, -6.718669891357422 ], [ -75.970352172851506, -6.717708110809326 ], [ -75.971611022949162, -6.717126846313477 ], [ -75.973770141601562, -6.716814041137695 ], [ -75.976028442382812, -6.717198848724365 ], [ -75.978157043457031, -6.71863317489624 ], [ -75.98004150390625, -6.717099189758301 ], [ -75.981460571289062, -6.716472148895264 ], [ -75.983253479003849, -6.717582225799504 ], [ -75.984992980957031, -6.718165874481144 ], [ -75.986640930175781, -6.71803617477417 ], [ -75.988990783691406, -6.717263221740723 ], [ -75.990180969238281, -6.717215061187744 ], [ -75.991729736328068, -6.717421054840088 ], [ -75.993125915527344, -6.718122959136906 ], [ -75.993995666503906, -6.718799114227295 ], [ -75.994606018066293, -6.720036983489877 ], [ -75.995872497558594, -6.721699237823429 ], [ -75.998641967773438, -6.7240891456604 ], [ -75.999610900878906, -6.724567890167179 ], [ -76.000122070312443, -6.727026939392033 ], [ -76.001167297363224, -6.730163097381535 ], [ -76.001907348632812, -6.735352993011475 ], [ -76.002326965331974, -6.736935138702393 ], [ -76.001693725585938, -6.74129676818842 ], [ -76.001457214355412, -6.746160030364933 ], [ -76.000732421875, -6.750424861907902 ], [ -76.000793457031193, -6.751708030700627 ], [ -76.001541137695256, -6.75558519363392 ], [ -76.001091003417855, -6.760897159576416 ], [ -76.002067565917969, -6.7637619972229 ], [ -76.002288818359375, -6.765118122100773 ], [ -76.00274658203125, -6.765921115875187 ], [ -76.00360107421875, -6.76892185211176 ], [ -76.004470825195312, -6.770748138427734 ], [ -76.005638122558537, -6.774590015411377 ], [ -76.008682250976562, -6.781682968139648 ], [ -76.009780883789062, -6.786719799041691 ], [ -76.009872436523438, -6.789658069610596 ], [ -76.010650634765625, -6.793716907501164 ], [ -76.010459899902344, -6.799228191375676 ], [ -76.0113525390625, -6.802217960357666 ], [ -76.012367248535156, -6.804078102111816 ], [ -76.013366699218693, -6.804681777954102 ], [ -76.015747070312443, -6.804640769958439 ], [ -76.016891479492131, -6.805253982543945 ], [ -76.017997741699219, -6.806220054626465 ], [ -76.019119262695312, -6.806632995605469 ], [ -76.019851684570256, -6.806621074676514 ], [ -76.021118164062386, -6.806159019470158 ], [ -76.023048400878906, -6.806162834167424 ], [ -76.024131774902344, -6.805953979492188 ], [ -76.027244567871094, -6.806072235107422 ], [ -76.030906677246037, -6.808136940002385 ], [ -76.033073425292969, -6.808549880981332 ], [ -76.037933349609375, -6.808411121368351 ], [ -76.041900634765568, -6.806748867034912 ], [ -76.045440673828125, -6.806242942810059 ], [ -76.046722412109375, -6.806293010711613 ], [ -76.047317504882756, -6.806528091430607 ], [ -76.049697875976506, -6.806748867034912 ], [ -76.050544738769531, -6.807108879089299 ], [ -76.052009582519474, -6.80721378326416 ], [ -76.053215026855469, -6.807662963867188 ], [ -76.054840087890625, -6.807931900024414 ], [ -76.057342529296818, -6.808838844299316 ], [ -76.061340332031193, -6.809391021728516 ], [ -76.063346862792912, -6.8091721534729 ], [ -76.064369201660156, -6.809745788574219 ], [ -76.064407348632756, -6.812034130096436 ], [ -76.062660217285156, -6.819933891296387 ], [ -76.062583923339787, -6.821300983428955 ], [ -76.061180114746094, -6.824921131134033 ], [ -76.060089111328068, -6.826824188232422 ], [ -76.057479858398438, -6.829405784606934 ], [ -76.051773071289062, -6.833878040313664 ], [ -76.050056457519531, -6.834911823272648 ], [ -76.044174194335881, -6.837710857391357 ], [ -76.038917541503849, -6.843420028686467 ], [ -76.037284851074219, -6.845974922180119 ], [ -76.036376953124886, -6.848473072051888 ], [ -76.035865783691349, -6.85145902633667 ], [ -76.036384582519531, -6.859904766082764 ], [ -76.036331176757812, -6.864418029785156 ], [ -76.035987854003849, -6.867711067199707 ], [ -76.035491943359318, -6.869286060333252 ], [ -76.033737182617188, -6.872200965881291 ], [ -76.031860351562443, -6.875987052917424 ], [ -76.030570983886719, -6.877653121948242 ], [ -76.020996093749943, -6.887685775756779 ], [ -76.015327453613281, -6.892056941986027 ], [ -76.013450622558594, -6.892814159393311 ], [ -76.012077331542969, -6.892924785614014 ], [ -76.011383056640568, -6.893513202667236 ], [ -76.011833190917912, -6.894488811492863 ], [ -76.013504028320312, -6.896329879760742 ], [ -76.016281127929688, -6.89794397354126 ], [ -76.017677307128849, -6.899151802062988 ], [ -76.022079467773438, -6.906044006347599 ], [ -76.022994995117131, -6.906956195831299 ], [ -76.025993347167969, -6.910892009735051 ], [ -76.027122497558537, -6.91201114654541 ], [ -76.031425476074219, -6.915149211883545 ], [ -76.033271789550781, -6.915717124938965 ], [ -76.037513732910099, -6.91791391372675 ], [ -76.037925720214844, -6.91851806640625 ], [ -76.037910461425781, -6.920175075531006 ], [ -76.035369873046875, -6.922142028808594 ], [ -76.031822204589844, -6.924256801605225 ], [ -76.029983520507756, -6.925916194915715 ], [ -76.027984619140511, -6.928327083587646 ], [ -76.026885986328125, -6.931647777557373 ], [ -76.026382446289062, -6.932400226593018 ], [ -76.024665832519531, -6.933298110961914 ], [ -76.022598266601562, -6.933600902557316 ], [ -76.021331787109375, -6.934671878814697 ], [ -76.019859313964787, -6.936664104461556 ], [ -76.018524169921818, -6.939381122589111 ], [ -76.016029357910099, -6.943111896514893 ], [ -76.015533447265625, -6.945086002349854 ], [ -76.015625, -6.947834014892464 ], [ -76.014495849609375, -6.949838161468449 ], [ -76.014129638671818, -6.951176166534367 ], [ -76.013214111328125, -6.952182769775391 ], [ -76.011528015136719, -6.95337009429926 ], [ -76.008590698242131, -6.953493118286076 ], [ -76.007385253906136, -6.954147815704346 ], [ -76.006782531738224, -6.954951763153019 ], [ -76.005668640136605, -6.95902490615839 ], [ -76.005813598632812, -6.960382938384953 ], [ -76.007278442382756, -6.96226978302002 ], [ -76.007934570312443, -6.963778972625732 ], [ -76.007972717285156, -6.965352058410645 ], [ -76.007614135742188, -6.966292858123722 ], [ -76.007850646972599, -6.96913290023798 ], [ -76.008583068847656, -6.970407009124756 ], [ -76.010261535644531, -6.971977233886719 ], [ -76.010383605957031, -6.97288179397583 ], [ -76.008491516113281, -6.975209236144963 ], [ -76.008415222167912, -6.976775169372502 ], [ -76.008705139160099, -6.978302001953125 ], [ -76.008537292480469, -6.979108810424805 ], [ -76.007453918456974, -6.980231761932316 ], [ -76.005264282226506, -6.981565952301025 ], [ -76.004432678222656, -6.982761859893799 ], [ -76.003677368164062, -6.988499164581299 ], [ -76.003623962402344, -6.992287158965951 ], [ -76.004035949706974, -6.995668888091984 ], [ -76.003097534179688, -6.998338222503662 ], [ -76.002830505371094, -6.999804973602295 ], [ -76.002868652343693, -7.000881195068359 ], [ -76.003509521484375, -7.00299596786499 ], [ -76.007186889648381, -7.010135173797607 ], [ -76.008445739746094, -7.013893127441349 ], [ -76.008499145507756, -7.015275955200138 ], [ -76.008255004882812, -7.017113208770752 ], [ -76.006561279296875, -7.020274162292424 ], [ -76.006240844726449, -7.021331787109318 ], [ -76.006233215331974, -7.022807121276855 ], [ -76.006805419921818, -7.024841785430908 ], [ -76.006210327148381, -7.027066230773926 ], [ -76.00616455078125, -7.029272079467773 ], [ -76.006614685058537, -7.030774116516113 ], [ -76.008110046386719, -7.032997131347543 ], [ -76.009986877441406, -7.035017967224121 ], [ -76.010917663574219, -7.037033081054688 ], [ -76.010894775390568, -7.037583827972355 ], [ -76.010139465331974, -7.039167881011963 ], [ -76.009750366210881, -7.040590763091927 ], [ -76.009971618652344, -7.041593074798527 ], [ -76.01092529296875, -7.043172836303711 ], [ -76.011238098144531, -7.044232845306396 ], [ -76.011215209960938, -7.045804977416935 ], [ -76.010726928710938, -7.047768115997258 ], [ -76.010871887207031, -7.049342155456486 ], [ -76.011756896972599, -7.050136089324894 ], [ -76.012985229492131, -7.049563884735051 ], [ -76.013633728027344, -7.050078868865967 ], [ -76.012840270996094, -7.059187889099064 ], [ -76.013023376464844, -7.060715198516846 ], [ -76.014068603515625, -7.063589096069336 ], [ -76.014183044433594, -7.06645679473877 ], [ -76.013664245605412, -7.06935977935791 ], [ -76.012191772460938, -7.072638034820557 ], [ -76.01171875, -7.074403762817326 ], [ -76.011611938476562, -7.076701164245605 ], [ -76.012069702148438, -7.07905101776123 ], [ -76.011703491210938, -7.08076000213623 ], [ -76.011711120605469, -7.081857204437199 ], [ -76.012168884277344, -7.083833217620793 ], [ -76.013954162597599, -7.085957050323486 ], [ -76.013984680175781, -7.090558052062988 ], [ -76.014579772949219, -7.093642234802246 ], [ -76.016548156738281, -7.097599029541016 ], [ -76.017417907714844, -7.10031080245966 ], [ -76.017051696777344, -7.101270198822021 ], [ -76.016441345214787, -7.102077007293701 ], [ -76.014350891113281, -7.102073192596436 ], [ -76.013420104980469, -7.102971076965332 ], [ -76.012969970703125, -7.107748031616211 ], [ -76.012504577636662, -7.109910964965707 ], [ -76.011749267578068, -7.111495018005371 ], [ -76.01019287109375, -7.113306045532227 ], [ -76.009803771972656, -7.114446163177433 ], [ -76.009178161621037, -7.115351200103703 ], [ -76.008735656738281, -7.116818904876709 ], [ -76.008613586425724, -7.118102073669377 ], [ -76.007926940917912, -7.120011806488037 ], [ -76.007926940917912, -7.120936870574951 ], [ -76.008377075195312, -7.121738910675049 ], [ -76.008758544921875, -7.123158931732178 ], [ -76.011444091796875, -7.127015113830566 ], [ -76.012184143066406, -7.129301071166992 ], [ -76.011215209960938, -7.131158828735295 ], [ -76.010772705078125, -7.132569789886418 ], [ -76.010719299316349, -7.133953094482422 ], [ -76.01100921630848, -7.135590076446476 ], [ -76.013534545898438, -7.14122819900507 ], [ -76.017623901367188, -7.14821815490717 ], [ -76.018539428710881, -7.152170181274414 ], [ -76.019187927246037, -7.153794765472412 ], [ -76.021865844726506, -7.156441211700439 ], [ -76.022621154785099, -7.158328056335449 ], [ -76.023956298828068, -7.160080909729004 ], [ -76.025131225585938, -7.161127090454102 ], [ -76.026161193847599, -7.161713123321533 ], [ -76.031082153320312, -7.1632399559021 ], [ -76.036529541015625, -7.165932178497258 ], [ -76.039131164550724, -7.16685676574707 ], [ -76.042915344238281, -7.169778823852482 ], [ -76.047378540039062, -7.172345161437931 ], [ -76.048988342285156, -7.172767162322941 ], [ -76.051330566406193, -7.173765182495117 ], [ -76.054595947265625, -7.174282073974609 ], [ -76.058097839355412, -7.175232887268066 ], [ -76.0592041015625, -7.175267219543457 ], [ -76.060340881347656, -7.175012111663762 ], [ -76.062637329101562, -7.17514181137085 ], [ -76.074188232421875, -7.172502040863037 ], [ -76.077682495117188, -7.172392845153752 ], [ -76.079322814941406, -7.172606945037842 ], [ -76.082046508789006, -7.173730850219727 ], [ -76.083938598632756, -7.174866199493408 ], [ -76.089401245117074, -7.179111957549935 ], [ -76.0906982421875, -7.18041276931757 ], [ -76.091812133789062, -7.181078910827523 ], [ -76.094032287597656, -7.181681156158447 ], [ -76.097328186035156, -7.181772232055664 ], [ -76.099273681640625, -7.182354927062931 ], [ -76.102584838867188, -7.185810089111328 ], [ -76.105987548828068, -7.188010215759221 ], [ -76.107696533203068, -7.188626766204834 ], [ -76.109352111816406, -7.188434123992806 ], [ -76.110176086425724, -7.187564849853459 ], [ -76.110473632812443, -7.186786174774113 ], [ -76.110580444335938, -7.185592174530029 ], [ -76.111549377441406, -7.183925151824894 ], [ -76.111167907714844, -7.182705879211426 ], [ -76.111282348632812, -7.182000160217285 ], [ -76.112831115722599, -7.181906223297062 ], [ -76.114303588867188, -7.182869911193848 ], [ -76.118865966796818, -7.186874866485596 ], [ -76.122901916503906, -7.189785003662109 ], [ -76.127471923828125, -7.194198131561279 ], [ -76.128677368164006, -7.194674015045109 ], [ -76.131782531738281, -7.195035934448242 ], [ -76.133041381835938, -7.195612907409668 ], [ -76.135826110839787, -7.198797225952148 ], [ -76.13800048828125, -7.200167179107666 ], [ -76.140472412109375, -7.202649116516056 ], [ -76.141166687011662, -7.203957080841064 ], [ -76.141983032226562, -7.206778049468994 ], [ -76.144203186035099, -7.210137844085693 ], [ -76.144767761230469, -7.212178230285645 ], [ -76.144897460937443, -7.21374320983881 ], [ -76.145820617675781, -7.215649127960205 ], [ -76.149574279785099, -7.218905925750732 ], [ -76.152786254882756, -7.222721099853516 ], [ -76.154975891113281, -7.224824905395451 ], [ -76.158485412597656, -7.229897975921631 ], [ -76.159317016601562, -7.231650829315186 ], [ -76.159591674804574, -7.233648777008057 ], [ -76.159324645996094, -7.236126899719181 ], [ -76.155929565429688, -7.240938186645451 ], [ -76.155426025390625, -7.242621898651123 ], [ -76.155586242675668, -7.245097160339355 ], [ -76.155975341796875, -7.246391773223877 ], [ -76.157356262207031, -7.249208927154541 ], [ -76.159461975097599, -7.252223968505803 ], [ -76.164154052734318, -7.257430076599121 ], [ -76.166183471679688, -7.260156154632568 ], [ -76.167991638183594, -7.263164043426514 ], [ -76.170547485351506, -7.266314029693547 ], [ -76.172943115234261, -7.268478870391846 ], [ -76.177093505859375, -7.271533012390137 ], [ -76.181777954101506, -7.276233196258488 ], [ -76.184654235839787, -7.278785228729248 ], [ -76.185455322265625, -7.279242992401123 ], [ -76.186019897460938, -7.280047893524113 ], [ -76.189620971679631, -7.283609867095947 ], [ -76.191505432128849, -7.287106037139893 ], [ -76.192657470703068, -7.291471004486027 ], [ -76.194915771484375, -7.296348094940186 ], [ -76.196006774902287, -7.298263072967472 ], [ -76.197807312011662, -7.300483226776066 ], [ -76.199996948242131, -7.303967952728215 ], [ -76.199996948242131, -7.304428100585938 ], [ -76.201309204101562, -7.307970046997013 ], [ -76.201713562011662, -7.310800075531006 ], [ -76.201606750488281, -7.312183856964111 ], [ -76.201232910156193, -7.313125133514404 ], [ -76.200820922851562, -7.31548881530756 ], [ -76.199600219726562, -7.318376064300537 ], [ -76.196220397949219, -7.321875095367432 ], [ -76.195724487304631, -7.32355880737299 ], [ -76.195579528808594, -7.326860904693547 ], [ -76.193267822265625, -7.330745220184326 ], [ -76.193016052246094, -7.331424236297607 ], [ -76.193054199218693, -7.332076072692871 ], [ -76.193748474121094, -7.333584785461369 ], [ -76.196601867675781, -7.336073875427246 ], [ -76.198417663574219, -7.33814811706543 ], [ -76.201133728027344, -7.344491004943734 ], [ -76.202522277832031, -7.346549034118652 ], [ -76.202445983886719, -7.348394870758057 ], [ -76.202728271484375, -7.350308895111027 ], [ -76.205169677734318, -7.356081962585449 ], [ -76.206062316894531, -7.360483169555664 ], [ -76.208648681640625, -7.365378856658936 ], [ -76.209503173828125, -7.367518901824894 ], [ -76.210960388183537, -7.375222206115723 ], [ -76.213378906249886, -7.381501197814941 ], [ -76.213310241699219, -7.385532855987549 ], [ -76.213554382324162, -7.386999130249023 ], [ -76.214164733886719, -7.388523101806584 ], [ -76.215454101562443, -7.390664100646973 ], [ -76.215942382812443, -7.392345905303898 ], [ -76.216606140136662, -7.393682956695557 ], [ -76.216278076171875, -7.398087024688721 ], [ -76.216842651367188, -7.40003776550293 ], [ -76.216873168945256, -7.401776790618896 ], [ -76.216308593749943, -7.403322219848576 ], [ -76.215057373046875, -7.405162811279297 ], [ -76.213363647460881, -7.405494213104248 ], [ -76.212623596191406, -7.406073093414307 ], [ -76.212471008300781, -7.408461093902588 ], [ -76.211311340332031, -7.411359786987248 ], [ -76.209808349609375, -7.416401863098145 ], [ -76.208702087402287, -7.418719768524113 ], [ -76.205856323242188, -7.423564910888672 ], [ -76.205398559570312, -7.426947116851807 ], [ -76.205055236816349, -7.427998065948429 ], [ -76.201797485351562, -7.432682037353402 ], [ -76.2000732421875, -7.436333179473877 ], [ -76.196891784667969, -7.441181182861328 ], [ -76.194442749023438, -7.446033000946045 ], [ -76.191490173339844, -7.4495592117309 ], [ -76.191131591796818, -7.450619220733586 ], [ -76.191047668456974, -7.453104972839355 ], [ -76.19024658203125, -7.455062866210881 ], [ -76.188972473144531, -7.457415103912297 ], [ -76.186561584472599, -7.460542201995793 ], [ -76.186187744140568, -7.46158313751215 ], [ -76.186019897460938, -7.463048934936467 ], [ -76.185569763183594, -7.464162826538086 ], [ -76.183631896972656, -7.466502189636174 ], [ -76.181335449218636, -7.470180034637451 ], [ -76.179275512695312, -7.475193977355957 ], [ -76.178962707519531, -7.476425170898381 ], [ -76.177665710449219, -7.478093147277775 ], [ -76.17352294921875, -7.482283115386963 ], [ -76.171195983886662, -7.486485004425049 ], [ -76.168975830078125, -7.4894118309021 ], [ -76.162849426269531, -7.495397090911865 ], [ -76.156524658203068, -7.500832080841064 ], [ -76.155082702636662, -7.50140380859375 ], [ -76.151687622070312, -7.501468181610107 ], [ -76.150054931640511, -7.501708030700684 ], [ -76.146034240722599, -7.502721786498967 ], [ -76.144805908203068, -7.50348520278925 ], [ -76.144065856933594, -7.504533767700138 ], [ -76.142082214355469, -7.508693218231201 ], [ -76.139518737792969, -7.512940883636475 ], [ -76.134925842285156, -7.517437934875488 ], [ -76.133735656738224, -7.518951892852783 ], [ -76.130714416503906, -7.525598049163762 ], [ -76.127799987792912, -7.530135154724121 ], [ -76.125762939453125, -7.533957004547119 ], [ -76.124839782714844, -7.535851001739445 ], [ -76.123832702636719, -7.539099216461182 ], [ -76.122299194335881, -7.54127311706543 ], [ -76.120002746581974, -7.543660163879395 ], [ -76.118652343749943, -7.544755935668888 ], [ -76.11614990234375, -7.546110153198185 ], [ -76.114448547363224, -7.547362804412785 ], [ -76.111907958984261, -7.548644065856934 ], [ -76.110603332519531, -7.549652099609375 ], [ -76.106918334960881, -7.551514148712101 ], [ -76.104812622070312, -7.553129196166992 ], [ -76.100997924804688, -7.556587219238281 ], [ -76.096931457519474, -7.559254169464111 ], [ -76.09515380859375, -7.55991888046259 ], [ -76.0926513671875, -7.561933994293156 ], [ -76.091140747070312, -7.562335014343205 ], [ -76.088272094726562, -7.563545227050781 ], [ -76.086318969726506, -7.564743995666504 ], [ -76.084274291992188, -7.56657600402832 ], [ -76.083831787109375, -7.567591190338021 ], [ -76.083694458007812, -7.570528030395451 ], [ -76.082801818847599, -7.573805809020996 ], [ -76.082771301269531, -7.576383113861084 ], [ -76.083259582519531, -7.579736232757568 ], [ -76.084442138671761, -7.582528114318734 ], [ -76.084770202636719, -7.585818767547551 ], [ -76.085548400878906, -7.588088989257812 ], [ -76.086067199707031, -7.588828086853027 ], [ -76.086280822753906, -7.590104103088379 ], [ -76.086082458496094, -7.591000080108586 ], [ -76.084548950195312, -7.592548847198486 ], [ -76.084304809570312, -7.594569206237736 ], [ -76.084365844726562, -7.59630298614502 ], [ -76.083671569824162, -7.599264144897461 ], [ -76.083526611328125, -7.60175895690918 ], [ -76.084388732910156, -7.604451179504338 ], [ -76.086105346679688, -7.607495784759465 ], [ -76.086387634277344, -7.610326766967773 ], [ -76.086746215820312, -7.611564159393254 ], [ -76.086723327636662, -7.612395763397217 ], [ -76.086257934570312, -7.613979816436711 ], [ -76.086044311523381, -7.619732856750488 ], [ -76.084831237792969, -7.624430179595834 ], [ -76.083457946777287, -7.62733602523798 ], [ -76.081443786621094, -7.629720211028996 ], [ -76.078125, -7.632594108581543 ], [ -76.076454162597656, -7.634570121765137 ], [ -76.075668334960824, -7.635891914367676 ], [ -76.075286865234261, -7.637520790100041 ], [ -76.075279235839787, -7.641663074493408 ], [ -76.0748291015625, -7.643428802490178 ], [ -76.074615478515568, -7.646458148956299 ], [ -76.073577880859375, -7.64881420135498 ], [ -76.073219299316406, -7.650234222412109 ], [ -76.072761535644531, -7.650813102722168 ], [ -76.072303771972599, -7.652875900268555 ], [ -76.070510864257756, -7.655422210693359 ], [ -76.070259094238281, -7.65715217590332 ], [ -76.071891784667969, -7.660737037658691 ], [ -76.073158264160099, -7.661929130554199 ], [ -76.07550048828125, -7.662637233734074 ], [ -76.081321716308594, -7.663373947143555 ], [ -76.083282470703068, -7.664145946502686 ], [ -76.089462280273381, -7.667594909667969 ], [ -76.093521118164062, -7.671047210693359 ], [ -76.096504211425781, -7.673182964324894 ], [ -76.097869873046818, -7.674798965454102 ], [ -76.098449707031193, -7.676153182983398 ], [ -76.098457336425724, -7.67689323425293 ], [ -76.097923278808594, -7.678849220275765 ], [ -76.097846984863281, -7.68004322052002 ], [ -76.099044799804688, -7.687347888946533 ], [ -76.099067687988281, -7.690107822418156 ], [ -76.098701477050781, -7.693499088287354 ], [ -76.098152160644474, -7.695725917816105 ], [ -76.098152160644474, -7.69719123840332 ], [ -76.098464965820312, -7.698057174682617 ], [ -76.102355957031193, -7.704133987426701 ], [ -76.102729797363224, -7.705654144287109 ], [ -76.10260009765625, -7.707128047943115 ], [ -76.101913452148438, -7.70960807800293 ], [ -76.101760864257812, -7.713459968566838 ], [ -76.101394653320256, -7.71536111831665 ], [ -76.100540161132756, -7.717685222625732 ], [ -76.100814819335881, -7.718863964080754 ], [ -76.101882934570256, -7.720686912536621 ], [ -76.101951599121094, -7.721526145934945 ], [ -76.100875854492188, -7.723328113555908 ], [ -76.098907470703068, -7.724836826324406 ], [ -76.098030090332031, -7.725135803222656 ], [ -76.096481323242188, -7.725267887115479 ], [ -76.094520568847599, -7.727043151855469 ], [ -76.090431213378849, -7.727861881256104 ], [ -76.08770751953125, -7.728943824768066 ], [ -76.086959838867188, -7.729613780975285 ], [ -76.087043762207031, -7.731912136077881 ], [ -76.086585998535156, -7.733694076538029 ], [ -76.086585998535156, -7.736924171447697 ], [ -76.086204528808594, -7.739186763763428 ], [ -76.086616516113224, -7.74273777008051 ], [ -76.086082458496094, -7.74477481842041 ], [ -76.086791992187443, -7.746653079986572 ], [ -76.086891174316349, -7.747666835784912 ], [ -76.086135864257756, -7.74963188171381 ], [ -76.085105895996037, -7.75399208068842 ], [ -76.08551025390625, -7.756127834320068 ], [ -76.08544921875, -7.75713920593256 ], [ -76.085105895996037, -7.758090019226074 ], [ -76.085205078124886, -7.760286808013916 ], [ -76.08477783203125, -7.760670185089111 ], [ -76.084053039550724, -7.760687828063908 ], [ -76.082611083984318, -7.761460781097412 ], [ -76.081634521484375, -7.762303829193058 ], [ -76.081512451171875, -7.762739181518555 ], [ -76.082031249999943, -7.763361930847111 ], [ -76.081977844238281, -7.763922214508 ], [ -76.081016540527344, -7.765145778655949 ], [ -76.07666015625, -7.765690803527832 ], [ -76.074569702148438, -7.767804145812931 ], [ -76.071739196777287, -7.7676100730896 ], [ -76.069793701171875, -7.769162178039437 ], [ -76.068244934082031, -7.769083976745549 ], [ -76.066688537597599, -7.770228862762451 ], [ -76.065750122070199, -7.772500991821232 ], [ -76.063491821289062, -7.774911880493164 ], [ -76.06256103515625, -7.776706218719482 ], [ -76.062301635742131, -7.777962207794189 ], [ -76.062507629394418, -7.780432224273625 ], [ -76.061393737792969, -7.782741069793644 ], [ -76.061653137207031, -7.784276962280273 ], [ -76.061592102050781, -7.78602123260498 ], [ -76.060997009277344, -7.787271976470947 ], [ -76.060104370117131, -7.788331985473576 ], [ -76.059318542480469, -7.788462162017709 ], [ -76.054885864257812, -7.787596225738469 ], [ -76.053329467773381, -7.786793231963998 ], [ -76.050865173339787, -7.785027027130127 ], [ -76.049392700195312, -7.78460788726801 ], [ -76.048988342285156, -7.784978866577148 ], [ -76.048904418945312, -7.785719871520996 ], [ -76.047515869140568, -7.78699779510498 ], [ -76.046569824218693, -7.788990020751953 ], [ -76.044097900390568, -7.791574954986515 ], [ -76.040077209472599, -7.800212860107365 ], [ -76.040328979492188, -7.802563190460205 ], [ -76.039848327636719, -7.804049015045166 ], [ -76.038772583007812, -7.805515766143799 ], [ -76.036819458007756, -7.807002067565918 ], [ -76.037216186523381, -7.807843208312988 ], [ -76.037216186523381, -7.80977821350092 ], [ -76.038131713867188, -7.810809135437012 ], [ -76.038444519042912, -7.81196403503418 ], [ -76.038322448730469, -7.814813137054443 ], [ -76.037597656249943, -7.816705226898193 ], [ -76.036575317382812, -7.818010807037297 ], [ -76.031608581542855, -7.822779178619328 ], [ -76.029914855957031, -7.826039791107178 ], [ -76.026252746581974, -7.829638957977295 ], [ -76.025733947753906, -7.831095218658447 ], [ -76.025032043457031, -7.832283020019531 ], [ -76.024452209472599, -7.834762096405029 ], [ -76.023841857910156, -7.835697174072209 ], [ -76.023361206054688, -7.836104869842529 ], [ -76.022712707519474, -7.836098194122201 ], [ -76.021675109863224, -7.836725234985352 ], [ -76.021530151367188, -7.838902950286865 ], [ -76.022293090820312, -7.840132236480656 ], [ -76.022659301757812, -7.842155933380127 ], [ -76.022567749023438, -7.843015193939209 ], [ -76.020370483398438, -7.843978881835881 ], [ -76.019676208496037, -7.845635890960637 ], [ -76.018844604492188, -7.846370220184269 ], [ -76.017997741699219, -7.846706867218018 ], [ -76.016914367675724, -7.847704887390137 ], [ -76.015296936035099, -7.849934101104736 ], [ -76.013908386230469, -7.851401805877629 ], [ -76.012344360351449, -7.852818012237549 ], [ -76.010360717773438, -7.85373592376709 ], [ -76.008514404296818, -7.855547904968262 ], [ -76.008216857910099, -7.856680870056152 ], [ -76.008117675781193, -7.858887195587101 ], [ -76.008583068847656, -7.860848903656006 ], [ -76.008560180664062, -7.861951828002873 ], [ -76.008094787597656, -7.862739086151123 ], [ -76.007293701171875, -7.863158226013184 ], [ -76.006240844726449, -7.864218235015869 ], [ -76.006057739257812, -7.867874145507812 ], [ -76.005485534667969, -7.868995189666748 ], [ -76.00490570068348, -7.869575977325439 ], [ -76.004135131835881, -7.869831085205021 ], [ -76.003456115722599, -7.870816230773869 ], [ -76.00311279296875, -7.871957778930607 ], [ -76.002952575683594, -7.874175071716252 ], [ -76.003387451171875, -7.875386238098088 ], [ -76.004974365234318, -7.876776218414307 ], [ -76.005683898925781, -7.878166198730469 ], [ -76.00714111328125, -7.882729053497258 ], [ -76.007682800292969, -7.885224819183293 ], [ -76.007652282714787, -7.886951923370361 ], [ -76.007011413574219, -7.888780117034912 ], [ -76.006317138671818, -7.889857769012394 ], [ -76.005569458007756, -7.89054012298584 ], [ -76.004219055175724, -7.891102790832463 ], [ -76.003280639648381, -7.892117023468018 ], [ -76.00274658203125, -7.893393039703369 ], [ -76.002655029296875, -7.894949913024902 ], [ -76.002365112304688, -7.8954758644104 ], [ -76.001823425292912, -7.895503997802734 ], [ -76.001052856445312, -7.895027160644531 ], [ -75.999954223632812, -7.893590927124023 ], [ -75.998527526855469, -7.892689228057861 ], [ -75.997322082519531, -7.892275810241699 ], [ -75.995307922363281, -7.892199039459172 ], [ -75.993576049804688, -7.892764091491699 ], [ -75.992187499999943, -7.892850875854435 ], [ -75.988960266113224, -7.891571998596191 ], [ -75.988235473632812, -7.891711235046387 ], [ -75.986366271972656, -7.892691135406437 ], [ -75.984260559082031, -7.89260721206665 ], [ -75.984161376953125, -7.893256187438908 ], [ -75.984909057617188, -7.894865036010685 ], [ -75.985008239746094, -7.895751953124943 ], [ -75.984565734863224, -7.898591995239201 ], [ -75.984130859375, -7.899453163146973 ], [ -75.980133056640625, -7.899724006652832 ], [ -75.9759521484375, -7.901081085205078 ], [ -75.972908020019531, -7.901775836944523 ], [ -75.971298217773438, -7.902838230133057 ], [ -75.970710754394531, -7.903473854064941 ], [ -75.969947814941406, -7.905879974365178 ], [ -75.969940185546875, -7.906992912292424 ], [ -75.970283508300724, -7.907867908477783 ], [ -75.970687866210938, -7.908229827880859 ], [ -75.973526000976506, -7.909326076507568 ], [ -75.975242614746037, -7.909638881683293 ], [ -75.977066040039062, -7.910873889923096 ], [ -75.977813720703068, -7.912030220031738 ], [ -75.978515625, -7.913937091827393 ], [ -75.979377746582031, -7.914892196655217 ], [ -75.980690002441406, -7.915325164794865 ], [ -75.984260559082031, -7.915460109710637 ], [ -75.985610961914006, -7.916560173034668 ], [ -75.986091613769474, -7.917664051055908 ], [ -75.986206054687443, -7.919326782226506 ], [ -75.985023498535156, -7.922901153564453 ], [ -75.984535217285156, -7.928132057189885 ], [ -75.985107421875, -7.929985046386719 ], [ -75.986358642578125, -7.931563854217529 ], [ -75.986671447753849, -7.932548999786377 ], [ -75.98541259765625, -7.935799121856689 ], [ -75.985397338867188, -7.937508106231689 ], [ -75.986114501953068, -7.938663959503174 ], [ -75.987892150878906, -7.939411163330078 ], [ -75.988143920898438, -7.941452980041504 ], [ -75.988700866699219, -7.941803932189941 ], [ -75.991119384765625, -7.942397117614632 ], [ -75.992233276367188, -7.943614006042424 ], [ -75.992507934570199, -7.944771766662598 ], [ -75.992462158203125, -7.947159767150879 ], [ -75.993087768554688, -7.948705196380615 ], [ -75.994171142578125, -7.949687957763672 ], [ -75.993858337402344, -7.952988147735539 ], [ -75.993118286132812, -7.954139232635384 ], [ -75.990982055663949, -7.955574989318791 ], [ -75.986831665039062, -7.957057952880859 ], [ -75.985725402831974, -7.958155155181885 ], [ -75.983139038085881, -7.95933818817133 ], [ -75.979660034179688, -7.959706783294621 ], [ -75.978096008300724, -7.959004878997803 ], [ -75.97735595703125, -7.95893383026123 ], [ -75.974754333496037, -7.959827899932861 ], [ -75.968124389648438, -7.9598708152771 ], [ -75.966949462890511, -7.960351943969727 ], [ -75.965667724609375, -7.960245132446289 ], [ -75.965156555175781, -7.960037231445256 ], [ -75.964241027832031, -7.95915508270258 ], [ -75.962150573730412, -7.958860874175969 ], [ -75.961341857910156, -7.958239078521729 ], [ -75.960830688476506, -7.957153797149658 ], [ -75.960372924804688, -7.956703186035099 ], [ -75.959587097167912, -7.954525947570744 ], [ -75.956016540527344, -7.951223850250187 ], [ -75.954925537109318, -7.949724197387695 ], [ -75.954421997070256, -7.947980880737248 ], [ -75.953628540039062, -7.947206020355168 ], [ -75.95086669921875, -7.946586132049504 ], [ -75.947662353515568, -7.948170185089111 ], [ -75.94525146484375, -7.948293209075928 ], [ -75.942329406738224, -7.947511196136361 ], [ -75.941062927246094, -7.946574211120549 ], [ -75.939682006835938, -7.944733142852783 ], [ -75.938995361328068, -7.944479942321721 ], [ -75.937545776367131, -7.945713043212891 ], [ -75.936210632324162, -7.948006153106689 ], [ -75.933280944824162, -7.950913906097355 ], [ -75.932243347167969, -7.953855991363525 ], [ -75.931358337402287, -7.955367088317757 ], [ -75.930778503417912, -7.955813884735107 ], [ -75.929275512695256, -7.956240177154541 ], [ -75.928245544433594, -7.957283973693848 ], [ -75.926696777343693, -7.956987857818604 ], [ -75.926094055175781, -7.956600189208928 ], [ -75.925125122070312, -7.955471992492676 ], [ -75.924430847167969, -7.953691959381104 ], [ -75.923538208007756, -7.953014850616398 ], [ -75.922172546386719, -7.952458858489933 ], [ -75.921623229980412, -7.951952934265137 ], [ -75.921272277832031, -7.950725078582764 ], [ -75.920646667480469, -7.949603080749512 ], [ -75.920562744140625, -7.947756767272949 ], [ -75.919822692871037, -7.946944236755314 ], [ -75.918052673339844, -7.946454048156738 ], [ -75.914993286132812, -7.944569110870361 ], [ -75.912704467773438, -7.944475173950195 ], [ -75.911407470703125, -7.943781852722168 ], [ -75.909904479980412, -7.943330764770508 ], [ -75.905677795410156, -7.939923763275146 ], [ -75.903396606445312, -7.93902397155756 ], [ -75.902053833007812, -7.93805980682373 ], [ -75.901084899902344, -7.937771797180062 ], [ -75.899574279785156, -7.938117027282715 ], [ -75.899124145507756, -7.93801212310791 ], [ -75.898338317871094, -7.93722486495966 ], [ -75.897567749023438, -7.936946868896484 ], [ -75.896926879882756, -7.936413764953556 ], [ -75.896080017089787, -7.934416770935059 ], [ -75.895095825195312, -7.93375921249384 ], [ -75.893806457519531, -7.933618068695068 ], [ -75.892257690429631, -7.934145927429199 ], [ -75.891517639160156, -7.934145927429199 ], [ -75.890434265136662, -7.933632850646973 ], [ -75.888397216796875, -7.931910037994385 ], [ -75.887680053710881, -7.931750774383545 ], [ -75.886886596679688, -7.931985855102539 ], [ -75.886215209960938, -7.932538986205998 ], [ -75.886077880859261, -7.933018207550049 ], [ -75.886337280273381, -7.93431282043457 ], [ -75.886138916015568, -7.93451976776123 ], [ -75.883331298828125, -7.934063911437988 ], [ -75.878433227539006, -7.931098937988281 ], [ -75.876083374023438, -7.929034233093205 ], [ -75.874542236328125, -7.928232192993107 ], [ -75.873619079589844, -7.927329063415414 ], [ -75.871803283691406, -7.926437854766846 ], [ -75.8712158203125, -7.92585897445673 ], [ -75.870292663574219, -7.925870895385685 ], [ -75.868301391601562, -7.92681694030756 ], [ -75.866210937499943, -7.926601886749154 ], [ -75.864021301269474, -7.924942970275879 ], [ -75.861602783203125, -7.922251224517765 ], [ -75.859588623046875, -7.920981884002686 ], [ -75.858131408691349, -7.921156883239746 ], [ -75.856735229492188, -7.922054767608643 ], [ -75.855216979980469, -7.922709941864014 ], [ -75.853950500488281, -7.923616886138916 ], [ -75.852653503417969, -7.925047874450684 ], [ -75.851821899414006, -7.927573204040527 ], [ -75.851516723632812, -7.930044174194279 ], [ -75.850173950195312, -7.932550907134953 ], [ -75.850059509277344, -7.93374490737915 ], [ -75.849220275878906, -7.935881137847844 ], [ -75.849281311035156, -7.936624050140324 ], [ -75.850234985351562, -7.938401222229004 ], [ -75.850151062011719, -7.939424991607609 ], [ -75.848747253417969, -7.941001892089844 ], [ -75.847953796386719, -7.941464900970459 ], [ -75.844177246093693, -7.945082187652588 ], [ -75.843521118164006, -7.945406913757324 ], [ -75.843299865722656, -7.946586132049504 ], [ -75.844207763671818, -7.949769973754883 ], [ -75.844085693359318, -7.952154159545898 ], [ -75.843086242675781, -7.953690052032471 ], [ -75.842575073242131, -7.953968048095703 ], [ -75.842041015625, -7.954259872436467 ], [ -75.841323852539006, -7.954920768737793 ], [ -75.840629577636719, -7.955558776855412 ], [ -75.83984375, -7.955983161926213 ], [ -75.83966064453125, -7.956078052520752 ], [ -75.838035583496094, -7.957689762115479 ], [ -75.837966918945312, -7.958123207092285 ], [ -75.837905883789006, -7.958518981933537 ], [ -75.838066101074219, -7.960459232330322 ], [ -75.838157653808594, -7.961538791656437 ], [ -75.837821960449105, -7.962180137634277 ], [ -75.837699890136662, -7.963154792785645 ], [ -75.837608337402287, -7.963919162750187 ], [ -75.837203979492188, -7.964852809905949 ], [ -75.836952209472599, -7.965438842773438 ], [ -75.836860656738224, -7.968369960784855 ], [ -75.837142944335881, -7.975449085235596 ], [ -75.837516784667912, -7.977130889892521 ], [ -75.838073730468693, -7.978343009948674 ], [ -75.838447570800781, -7.979158878326416 ], [ -75.838813781738281, -7.98054313659668 ], [ -75.839202880859375, -7.982019901275635 ], [ -75.843887329101562, -7.991209030151367 ], [ -75.844581604003849, -7.99353122711176 ], [ -75.844917297363281, -7.994659900665226 ], [ -75.84576416015625, -7.995780944824219 ], [ -75.846237182617188, -7.996409893035889 ], [ -75.846061706542969, -7.998159885406437 ], [ -75.844856262206974, -7.999848842620793 ], [ -75.843040466308537, -8.007689476013127 ], [ -75.842430114746094, -8.012799263000431 ], [ -75.842391967773381, -8.013832092285099 ], [ -75.842308044433594, -8.015839576721191 ], [ -75.8421630859375, -8.016329765319824 ], [ -75.841972351074219, -8.016990661621037 ], [ -75.841346740722599, -8.022189140319767 ], [ -75.841392517089844, -8.02717399597168 ], [ -75.841423034667912, -8.03119945526123 ], [ -75.841178894042969, -8.034679412841797 ], [ -75.841621398925724, -8.036171913146916 ], [ -75.842987060546875, -8.040760040283203 ], [ -75.843521118164006, -8.043889045715275 ], [ -75.843490600585938, -8.049408912658691 ], [ -75.842811584472656, -8.051409721374512 ], [ -75.842582702636662, -8.05360031127924 ], [ -75.843215942382812, -8.055610656738224 ], [ -75.844245910644531, -8.058860778808537 ], [ -75.844459533691406, -8.059188842773438 ], [ -75.844551086425781, -8.059329986572209 ], [ -75.845245361328068, -8.059465408325138 ], [ -75.846199035644474, -8.059290885925236 ], [ -75.846611022949219, -8.059218406677189 ], [ -75.847175598144531, -8.059001922607422 ], [ -75.847816467285099, -8.058759689331055 ], [ -75.848457336425781, -8.058259010314941 ], [ -75.850738525390625, -8.057538986206055 ], [ -75.852493286132756, -8.05761814117426 ], [ -75.853286743164062, -8.058380126953068 ], [ -75.853538513183537, -8.059382438659611 ], [ -75.853965759277344, -8.061059951782227 ], [ -75.854400634765568, -8.061848640441895 ], [ -75.854576110839787, -8.06215763092041 ], [ -75.856857299804688, -8.065311431884766 ], [ -75.857757568359375, -8.066558837890568 ], [ -75.858177185058594, -8.066935539245549 ], [ -75.859832763671818, -8.068419456481934 ], [ -75.861526489257812, -8.068498611450195 ], [ -75.867607116699219, -8.068088531494084 ], [ -75.869956970214787, -8.069068908691293 ], [ -75.870147705078068, -8.068988800048828 ], [ -75.8709716796875, -8.068635940551701 ], [ -75.872627258300724, -8.067263603210449 ], [ -75.872856140136719, -8.067070007324219 ], [ -75.875717163085938, -8.067020416259766 ], [ -75.877029418945312, -8.067429542541504 ], [ -75.879196166992131, -8.068808555603027 ], [ -75.881706237792969, -8.071489334106388 ], [ -75.884407043457031, -8.072669982910099 ], [ -75.885581970214787, -8.073455810546761 ], [ -75.886528015136662, -8.074090003967285 ], [ -75.887870788574162, -8.074026107788086 ], [ -75.888732910156193, -8.073987007141113 ], [ -75.890167236328068, -8.073168754577637 ], [ -75.895095825195312, -8.071789741516113 ], [ -75.895996093749886, -8.071920394897461 ], [ -75.897689819335881, -8.072873115539494 ], [ -75.898361206054631, -8.072963714599553 ], [ -75.898689270019531, -8.073006629943848 ], [ -75.899185180664062, -8.072922706604004 ], [ -75.899597167968693, -8.072850227355957 ], [ -75.900093078613224, -8.072583198547363 ], [ -75.900657653808537, -8.072279930114689 ], [ -75.902877807617188, -8.071578025817871 ], [ -75.904022216796875, -8.071666717529297 ], [ -75.905708312988224, -8.072199821472168 ], [ -75.908256530761719, -8.073004722595215 ], [ -75.909233093261662, -8.072967529296818 ], [ -75.909820556640568, -8.072945594787598 ], [ -75.910964965820256, -8.072553634643555 ], [ -75.912689208984375, -8.07195854187006 ], [ -75.915298461914062, -8.071432113647461 ], [ -75.916725158691406, -8.071557998657227 ], [ -75.917396545410156, -8.071619033813477 ], [ -75.920593261718693, -8.072519302368107 ], [ -75.921852111816406, -8.074096679687443 ], [ -75.922477722167912, -8.074880599975586 ], [ -75.924079895019531, -8.076172828674316 ], [ -75.924697875976506, -8.076669692993164 ], [ -75.926918029785156, -8.077939033508244 ], [ -75.927291870117188, -8.078349113464355 ], [ -75.927825927734318, -8.080208778381348 ], [ -75.927986145019531, -8.081298828125 ], [ -75.9276123046875, -8.083099365234375 ], [ -75.927742004394474, -8.085111618041935 ], [ -75.927932739257756, -8.088059425353947 ], [ -75.927696228027344, -8.088468551635685 ], [ -75.927436828613224, -8.090378761291504 ], [ -75.926628112792969, -8.092438697814885 ], [ -75.926506042480412, -8.094207763671875 ], [ -75.926849365234375, -8.096080780029297 ], [ -75.927062988281193, -8.09727954864502 ], [ -75.92816162109375, -8.100798606872502 ], [ -75.929946899413949, -8.103469848632756 ], [ -75.931800842285156, -8.105129241943359 ], [ -75.931945800781193, -8.105232238769531 ], [ -75.932846069335938, -8.10587024688715 ], [ -75.932968139648381, -8.105909347534123 ], [ -75.934318542480412, -8.106369018554688 ], [ -75.935661315917912, -8.107126235961914 ], [ -75.936378479003906, -8.107528686523438 ], [ -75.937232971191406, -8.108269691467228 ], [ -75.937843322753849, -8.108798980712891 ], [ -75.938606262206974, -8.109756469726506 ], [ -75.939666748046818, -8.111088752746582 ], [ -75.940742492675781, -8.113530158996525 ], [ -75.940742492675781, -8.115648269653263 ], [ -75.940376281738281, -8.117229461669808 ], [ -75.939468383789006, -8.118928909301758 ], [ -75.937416076660156, -8.121519088745117 ], [ -75.936508178710881, -8.12332630157465 ], [ -75.936416625976506, -8.123761177062988 ], [ -75.936203002929688, -8.124771118164062 ], [ -75.935935974121037, -8.129999160766602 ], [ -75.935379028320256, -8.13084888458252 ], [ -75.934806823730412, -8.132980346679688 ], [ -75.934249877929688, -8.13392162322998 ], [ -75.933807373046875, -8.134659767150879 ], [ -75.933563232421818, -8.135689735412598 ], [ -75.933540344238224, -8.13579082489008 ], [ -75.9337158203125, -8.137179374694824 ], [ -75.934883117675724, -8.139469146728516 ], [ -75.935272216796818, -8.141304016113281 ], [ -75.935646057128849, -8.143058776855412 ], [ -75.936058044433594, -8.144193649291992 ], [ -75.936149597167969, -8.144439697265625 ], [ -75.936088562011719, -8.145169258117619 ], [ -75.935317993164062, -8.147032737731877 ], [ -75.935249328613281, -8.148688316345215 ], [ -75.935142517089844, -8.151350021362305 ], [ -75.934669494628906, -8.153408050537109 ], [ -75.93471527099598, -8.153634071350098 ], [ -75.935226440429688, -8.156289100646973 ], [ -75.934982299804631, -8.158632278442326 ], [ -75.934745788574219, -8.160959243774414 ], [ -75.935577392578125, -8.164450645446777 ], [ -75.937828063964787, -8.167359352111816 ], [ -75.938575744628906, -8.169148445129395 ], [ -75.938438415527344, -8.171574592590332 ], [ -75.938400268554631, -8.172169685363713 ], [ -75.939010620117188, -8.173630714416504 ], [ -75.939529418945312, -8.174868583679142 ], [ -75.939598083496094, -8.175132751464844 ], [ -75.940277099609375, -8.17782020568842 ], [ -75.940147399902287, -8.181398391723633 ], [ -75.940444946289062, -8.182895660400391 ], [ -75.940666198730469, -8.184009552001953 ], [ -75.940597534179631, -8.184807777404785 ], [ -75.940505981445256, -8.185940742492676 ], [ -75.939582824707031, -8.18896293640131 ], [ -75.939270019531193, -8.18997859954834 ], [ -75.937248229980469, -8.193589210510254 ], [ -75.93695068359375, -8.194527626037598 ], [ -75.936859130859375, -8.194810867309457 ], [ -75.936706542968693, -8.197199821472111 ], [ -75.937080383300724, -8.198518753051701 ], [ -75.937332153320312, -8.201030731201115 ], [ -75.936965942382812, -8.202839851379395 ], [ -75.936637878417969, -8.203533172607365 ], [ -75.936538696289062, -8.203738212585449 ], [ -75.935775756835938, -8.204410552978516 ], [ -75.934829711914062, -8.204832077026367 ], [ -75.934257507324219, -8.205089569091797 ], [ -75.932731628417969, -8.205140113830566 ], [ -75.929885864257812, -8.204738616943359 ], [ -75.928329467773438, -8.204815864562988 ], [ -75.92681884765625, -8.205866813659611 ], [ -75.926513671874886, -8.206330299377441 ], [ -75.925636291503849, -8.207639694213867 ], [ -75.925460815429631, -8.208608627319279 ], [ -75.925697326660156, -8.209989547729492 ], [ -75.926040649414062, -8.210463523864689 ], [ -75.926239013671875, -8.210740089416504 ], [ -75.9276123046875, -8.211858749389592 ], [ -75.927734374999943, -8.212342262268066 ], [ -75.927886962890625, -8.21293926239008 ], [ -75.927726745605412, -8.213536262512207 ], [ -75.927360534667912, -8.21394157409668 ], [ -75.927276611328011, -8.214029312133789 ], [ -75.92596435546875, -8.214583396911621 ], [ -75.924148559570312, -8.215348243713379 ], [ -75.923789978027344, -8.216189384460392 ], [ -75.923736572265568, -8.217667579650822 ], [ -75.924102783203068, -8.219091415405273 ], [ -75.924095153808537, -8.220402717590332 ], [ -75.924087524414062, -8.22129917144764 ], [ -75.924186706542969, -8.221871376037484 ], [ -75.924423217773438, -8.223288536071777 ], [ -75.924171447753906, -8.227338790893555 ], [ -75.924385070800724, -8.228947639465332 ], [ -75.924537658691406, -8.230059623718262 ], [ -75.92425537109375, -8.232781410217285 ], [ -75.923408508300781, -8.23500823974598 ], [ -75.921989440917969, -8.236927032470703 ], [ -75.920928955078125, -8.238778114318848 ], [ -75.920661926269474, -8.23924732208252 ], [ -75.919525146484318, -8.242171287536621 ], [ -75.917327880859318, -8.247810363769531 ], [ -75.91510009765625, -8.251588821411133 ], [ -75.9130859375, -8.257397651672363 ], [ -75.912986755371094, -8.258433341979924 ], [ -75.91290283203125, -8.259238243103027 ], [ -75.912971496581918, -8.259730339050293 ], [ -75.9130859375, -8.260498046875 ], [ -75.913818359374943, -8.26199817657465 ], [ -75.915573120117188, -8.26315975189209 ], [ -75.916641235351562, -8.26434326171875 ], [ -75.918106079101506, -8.265958786010742 ], [ -75.919082641601562, -8.266407966613656 ], [ -75.922882080078068, -8.268159866333008 ], [ -75.923835754394474, -8.268876075744572 ], [ -75.9256591796875, -8.269758224487248 ], [ -75.931709289550781, -8.274085998535099 ], [ -75.93206787109375, -8.274248123168888 ], [ -75.932548522949219, -8.27446460723877 ], [ -75.940750122070312, -8.280709266662541 ], [ -75.941421508789062, -8.281007766723576 ], [ -75.943511962890625, -8.281940460205078 ], [ -75.944473266601562, -8.282546043395939 ], [ -75.94476318359375, -8.282729148864689 ], [ -75.947380065917912, -8.286219596862793 ], [ -75.947563171386662, -8.286469459533691 ], [ -75.948608398437443, -8.287512779235783 ], [ -75.949630737304688, -8.287949562072697 ], [ -75.951972961425724, -8.287440299987793 ], [ -75.952713012695256, -8.287549018859806 ], [ -75.953231811523438, -8.287885665893498 ], [ -75.953559875488281, -8.288098335266113 ], [ -75.953910827636719, -8.289800643920898 ], [ -75.954727172851506, -8.290579795837346 ], [ -75.957275390625, -8.290963172912598 ], [ -75.960166931152287, -8.292379379272461 ], [ -75.962409973144531, -8.295610427856388 ], [ -75.962913513183537, -8.296102523803711 ], [ -75.964439392089787, -8.297586441039982 ], [ -75.966339111328125, -8.297246932983398 ], [ -75.968330383300781, -8.295886039733887 ], [ -75.970207214355469, -8.296107292175236 ], [ -75.972785949707031, -8.297187805175668 ], [ -75.973793029785099, -8.297825813293457 ], [ -75.979934692382812, -8.303634643554688 ], [ -75.983062744140568, -8.304765701293888 ], [ -75.984878540038949, -8.305421829223576 ], [ -75.98626708984375, -8.305554389953613 ], [ -75.987701416015625, -8.30568885803217 ], [ -75.988639831542969, -8.306170463562012 ], [ -75.989341735839787, -8.30652999877924 ], [ -75.989570617675781, -8.306782722473145 ], [ -75.990386962890568, -8.307689666748047 ], [ -75.99072265625, -8.308448791503906 ], [ -75.991050720214787, -8.310608863830566 ], [ -75.991310119628906, -8.311469078063851 ], [ -75.992073059082031, -8.313950538635254 ], [ -75.992149353027344, -8.314772605895939 ], [ -75.992202758789006, -8.315418243408203 ], [ -75.993011474609375, -8.31651496887207 ], [ -75.994056701660156, -8.317934036254883 ], [ -75.995025634765625, -8.31718921661377 ], [ -75.996269226074219, -8.316598892211914 ], [ -75.998275756835938, -8.316405296325627 ], [ -75.999404907226562, -8.316717147827148 ], [ -76.004402160644474, -8.321434974670296 ], [ -76.009033203125, -8.322943687438965 ], [ -76.010963439941406, -8.324222564697266 ], [ -76.011566162109318, -8.325017929077148 ], [ -76.011932373046818, -8.326907157897892 ], [ -76.013145446777344, -8.32818603515625 ], [ -76.018409729003906, -8.331539154052734 ], [ -76.021133422851562, -8.33238410949707 ], [ -76.022155761718693, -8.332452774047852 ], [ -76.023422241210938, -8.332220077514592 ], [ -76.028114318847656, -8.330078124999943 ], [ -76.031089782714844, -8.32941722869873 ], [ -76.035758972167969, -8.329893112182617 ], [ -76.039596557617131, -8.330978393554688 ], [ -76.043182373046875, -8.33078670501709 ], [ -76.045661926269531, -8.32957935333252 ], [ -76.049636840820312, -8.326745986938477 ], [ -76.052406311035156, -8.324468612670898 ], [ -76.055374145507812, -8.322615623474064 ], [ -76.056434631347656, -8.322305679321232 ], [ -76.057815551757756, -8.322256088256836 ], [ -76.061790466308594, -8.322904586791992 ], [ -76.062759399414006, -8.323610305786133 ], [ -76.063858032226562, -8.325524330139103 ], [ -76.06396484375, -8.327176094055176 ], [ -76.063568115234375, -8.328678131103516 ], [ -76.063682556152344, -8.330886840820312 ], [ -76.064140319824219, -8.332088470458928 ], [ -76.064994812011719, -8.333061218261719 ], [ -76.065780639648438, -8.333539962768498 ], [ -76.066757202148438, -8.333800315856934 ], [ -76.068328857421875, -8.333825111389103 ], [ -76.0692138671875, -8.333600997924805 ], [ -76.071937561035099, -8.333856582641488 ], [ -76.074806213378849, -8.334873199462891 ], [ -76.078239440917912, -8.336862564086914 ], [ -76.079612731933594, -8.337401390075627 ], [ -76.081161499023438, -8.337467193603516 ], [ -76.084754943847656, -8.336617469787598 ], [ -76.085388183593693, -8.336759567260742 ], [ -76.088424682617131, -8.338326454162598 ], [ -76.0892333984375, -8.339200973510742 ], [ -76.089752197265568, -8.34028434753418 ], [ -76.090919494628849, -8.341591835021973 ], [ -76.092399597167969, -8.343823432922306 ], [ -76.094459533691406, -8.34578800201416 ], [ -76.101638793945312, -8.349243164062443 ], [ -76.106513977050781, -8.353306770324707 ], [ -76.109855651855469, -8.354625701904297 ], [ -76.113708496093693, -8.355827331542912 ], [ -76.1148681640625, -8.356410980224496 ], [ -76.115921020507812, -8.357295036315918 ], [ -76.118125915527344, -8.359667778015137 ], [ -76.119331359863224, -8.361302375793457 ], [ -76.120773315429631, -8.363765716552734 ], [ -76.122474670410099, -8.367322921752873 ], [ -76.125526428222599, -8.369375228881836 ], [ -76.126296997070256, -8.370189666748047 ], [ -76.126663208007756, -8.371120452880859 ], [ -76.126434326171875, -8.3723850250243 ], [ -76.126541137695312, -8.372847557067871 ], [ -76.124565124511662, -8.374897003173771 ], [ -76.124084472656193, -8.375984191894531 ], [ -76.122955322265568, -8.376782417297363 ], [ -76.121017456054688, -8.377383232116699 ], [ -76.116981506347656, -8.37701416015625 ], [ -76.116111755371094, -8.377342224121094 ], [ -76.11566162109375, -8.377806663513184 ], [ -76.115188598632812, -8.379390716552678 ], [ -76.114555358886662, -8.383849143981877 ], [ -76.113517761230412, -8.387660026550236 ], [ -76.113258361816406, -8.389578819274902 ], [ -76.113250732421875, -8.392038345336914 ], [ -76.114601135253906, -8.394847869873047 ], [ -76.118270874023381, -8.39847469329834 ], [ -76.118682861328125, -8.39940357208252 ], [ -76.118736267089844, -8.400144577026367 ], [ -76.118286132812443, -8.401149749755859 ], [ -76.117301940917969, -8.402157783508301 ], [ -76.113533020019531, -8.401416778564396 ], [ -76.112220764160156, -8.402018547058105 ], [ -76.11163330078125, -8.40259838104248 ], [ -76.109802246093693, -8.406591415405217 ], [ -76.109512329101506, -8.408969879150391 ], [ -76.108787536621094, -8.411641120910588 ], [ -76.108779907226562, -8.415681838989144 ], [ -76.109329223632756, -8.417245864868164 ], [ -76.111091613769531, -8.41949272155756 ], [ -76.113754272460938, -8.422170639038086 ], [ -76.116371154785099, -8.424343109130859 ], [ -76.117469787597656, -8.42559623718256 ], [ -76.117950439453125, -8.428769111633301 ], [ -76.1190185546875, -8.432764053344727 ], [ -76.118644714355412, -8.435776710510197 ], [ -76.117179870605469, -8.440510749816895 ], [ -76.117073059082031, -8.442166328430119 ], [ -76.117507934570256, -8.443114280700684 ], [ -76.121131896972599, -8.447642326354924 ], [ -76.121917724609318, -8.449503898620605 ], [ -76.121734619140625, -8.451330184936467 ], [ -76.120674133300724, -8.453570365905762 ], [ -76.120338439941406, -8.455188751220646 ], [ -76.120445251464844, -8.456472396850529 ], [ -76.121315002441349, -8.458992004394474 ], [ -76.121253967285043, -8.460277557373047 ], [ -76.120666503906193, -8.461536407470703 ], [ -76.11956787109375, -8.462643623351994 ], [ -76.117591857910156, -8.465859413146973 ], [ -76.116249084472656, -8.470329284667969 ], [ -76.116340637207031, -8.471242904663086 ], [ -76.116920471191406, -8.471837997436467 ], [ -76.117988586425724, -8.473670005798283 ], [ -76.11834716796875, -8.475098609924316 ], [ -76.116371154785099, -8.47882080078125 ], [ -76.115531921386605, -8.481842994689828 ], [ -76.115707397460881, -8.482731819152832 ], [ -76.116539001464844, -8.483613967895508 ], [ -76.120513916015625, -8.485727310180664 ], [ -76.123146057128849, -8.48803520202631 ], [ -76.126754760742131, -8.491735458374023 ], [ -76.127677917480469, -8.493412017822266 ], [ -76.127632141113224, -8.494505882263184 ], [ -76.126754760742131, -8.496137619018498 ], [ -76.126937866210938, -8.499067306518555 ], [ -76.126205444335881, -8.500081062316895 ], [ -76.126052856445312, -8.500924110412598 ], [ -76.126235961914062, -8.501683235168457 ], [ -76.127120971679688, -8.50288200378418 ], [ -76.127365112304688, -8.503959655761719 ], [ -76.127227783203068, -8.504771232604924 ], [ -76.126235961914062, -8.507045745849609 ], [ -76.12603759765625, -8.511360168456974 ], [ -76.126487731933537, -8.512055397033635 ], [ -76.126617431640625, -8.512704849243164 ], [ -76.125801086425724, -8.514019966125488 ], [ -76.125686645507812, -8.514553070068359 ], [ -76.125946044921875, -8.515528678893986 ], [ -76.126930236816406, -8.516855239868107 ], [ -76.126960754394474, -8.518601417541504 ], [ -76.127571105957031, -8.519619941711426 ], [ -76.126762390136662, -8.521117210388184 ], [ -76.127235412597599, -8.526612281799316 ], [ -76.126625061035156, -8.529282569885254 ], [ -76.127624511718693, -8.530780792236328 ], [ -76.127662658691406, -8.532986640930176 ], [ -76.127929687499886, -8.533872604370117 ], [ -76.127182006835938, -8.535005569458008 ], [ -76.127136230468693, -8.537112236022949 ], [ -76.126632690429688, -8.53797435760498 ], [ -76.126876831054631, -8.539031028747559 ], [ -76.126739501953125, -8.5404052734375 ], [ -76.127197265625, -8.541399002075195 ], [ -76.127197265625, -8.543578147888127 ], [ -76.12701416015625, -8.544157028198242 ], [ -76.126365661621094, -8.544846534728947 ], [ -76.126281738281193, -8.545490264892521 ], [ -76.126884460449219, -8.546292304992619 ], [ -76.127388000488281, -8.547746658325138 ], [ -76.127395629882812, -8.549130439758301 ], [ -76.128631591796875, -8.55046558380127 ], [ -76.128990173339844, -8.552065849304142 ], [ -76.1297607421875, -8.552859306335449 ], [ -76.129989624023438, -8.553563117980957 ], [ -76.130950927734318, -8.554410934448185 ], [ -76.131790161132812, -8.554398536682072 ], [ -76.132286071777287, -8.555229187011662 ], [ -76.133537292480412, -8.55616569519043 ], [ -76.134094238281193, -8.557330131530762 ], [ -76.135635375976506, -8.558791160583496 ], [ -76.136215209960881, -8.559676170349064 ], [ -76.138221740722599, -8.560703277587891 ], [ -76.1385498046875, -8.561252593994084 ], [ -76.138778686523381, -8.562436103820801 ], [ -76.138221740722599, -8.564284324645939 ], [ -76.136955261230412, -8.56671142578125 ], [ -76.13494873046875, -8.568977355956974 ], [ -76.134567260742188, -8.572821617126465 ], [ -76.1337890625, -8.574579238891602 ], [ -76.132225036621094, -8.576752662658691 ], [ -76.130325317382812, -8.577618598937988 ], [ -76.130401611328068, -8.579272270202637 ], [ -76.13002777099598, -8.579907417297363 ], [ -76.129562377929688, -8.580181121826172 ], [ -76.127403259277344, -8.580655097961426 ], [ -76.126434326171875, -8.581491470336857 ], [ -76.126174926757812, -8.582467079162598 ], [ -76.127349853515568, -8.583542823791504 ], [ -76.127441406249943, -8.584174156188965 ], [ -76.127159118652287, -8.584654808044434 ], [ -76.126029968261719, -8.584812164306584 ], [ -76.12548828125, -8.5857896804809 ], [ -76.123931884765625, -8.587078094482365 ], [ -76.123519897460881, -8.58807373046875 ], [ -76.121437072753849, -8.589265823364258 ], [ -76.121086120605469, -8.589798927307015 ], [ -76.120979309082031, -8.591282844543457 ], [ -76.121177673339844, -8.592349052429199 ], [ -76.122245788574219, -8.593403816223088 ], [ -76.122879028320312, -8.593447685241642 ], [ -76.123336791992131, -8.593908309936467 ], [ -76.123428344726506, -8.594349861144963 ], [ -76.123420715331974, -8.596748352050781 ], [ -76.122276306152287, -8.597908020019531 ], [ -76.122604370117188, -8.599916458129826 ], [ -76.122566223144474, -8.601851463317814 ], [ -76.123275756835938, -8.602689743041935 ], [ -76.12469482421875, -8.603083610534611 ], [ -76.125015258789062, -8.603858947753849 ], [ -76.124809265136719, -8.604221343994141 ], [ -76.123710632324162, -8.604677200317326 ], [ -76.12347412109375, -8.606861114501953 ], [ -76.121505737304631, -8.608365058898869 ], [ -76.120597839355469, -8.610328674316406 ], [ -76.120155334472656, -8.613235473632699 ], [ -76.12042236328125, -8.616804122924748 ], [ -76.119918823242074, -8.617756843566895 ], [ -76.119865417480469, -8.61858940124506 ], [ -76.120254516601562, -8.619419097900334 ], [ -76.121330261230412, -8.620526313781738 ], [ -76.121353149414062, -8.621452331542969 ], [ -76.120956420898381, -8.62226676940918 ], [ -76.121025085449219, -8.623087882995605 ], [ -76.121551513671875, -8.623258590698242 ], [ -76.122047424316406, -8.622876167297306 ], [ -76.122589111328011, -8.62294864654541 ], [ -76.123031616210881, -8.623417854309082 ], [ -76.123298645019531, -8.62430286407465 ], [ -76.123039245605412, -8.62485408782959 ], [ -76.122222900390625, -8.624731063842773 ], [ -76.122001647949162, -8.624914169311467 ], [ -76.121963500976562, -8.625736236572266 ], [ -76.122344970703125, -8.626674652099553 ], [ -76.122200012206974, -8.627271652221623 ], [ -76.120155334472656, -8.628145217895451 ], [ -76.119735717773438, -8.629161834716683 ], [ -76.118522644042969, -8.630394935607853 ], [ -76.118675231933537, -8.631116867065316 ], [ -76.119796752929631, -8.631032943725586 ], [ -76.120429992675781, -8.631354331970215 ], [ -76.120803833007812, -8.631890296936035 ], [ -76.120841979980412, -8.632719993591309 ], [ -76.119491577148438, -8.634533882141113 ], [ -76.118865966796818, -8.634679794311523 ], [ -76.118057250976562, -8.634258270263672 ], [ -76.117660522460938, -8.634430885314828 ], [ -76.116836547851506, -8.636285781860352 ], [ -76.116310119628906, -8.636631011962891 ], [ -76.115455627441406, -8.635990142822266 ], [ -76.114288330078068, -8.635832786560059 ], [ -76.1146240234375, -8.63451957702631 ], [ -76.113456726074219, -8.634676933288574 ], [ -76.112457275390568, -8.635873794555607 ], [ -76.11181640625, -8.638553619384766 ], [ -76.110931396484318, -8.639478683471623 ], [ -76.110496520996094, -8.63930606842041 ], [ -76.110321044921875, -8.638233184814453 ], [ -76.109855651855469, -8.637818336486816 ], [ -76.109260559082031, -8.638046264648438 ], [ -76.107780456542912, -8.639558792114258 ], [ -76.107269287109375, -8.639388084411621 ], [ -76.107063293457031, -8.638348579406738 ], [ -76.106796264648438, -8.638461112976017 ], [ -76.106193542480469, -8.639472961425781 ], [ -76.106109619140625, -8.641590118408203 ], [ -76.106185913085824, -8.642312049865666 ], [ -76.106590270996094, -8.64305305480957 ], [ -76.106643676757756, -8.644077301025391 ], [ -76.105621337890625, -8.645571708679199 ], [ -76.10552978515625, -8.646467208862248 ], [ -76.1063232421875, -8.647811889648438 ], [ -76.106498718261719, -8.649638175964299 ], [ -76.106719970703125, -8.649989128112736 ], [ -76.108139038085938, -8.650617599487305 ], [ -76.108772277832031, -8.651294708251953 ], [ -76.108871459960938, -8.652921676635685 ], [ -76.109199523925781, -8.653247833251953 ], [ -76.110839843749943, -8.653285980224553 ], [ -76.111534118652344, -8.653528213500863 ], [ -76.112358093261662, -8.653428077697754 ], [ -76.113685607910099, -8.654074668884277 ], [ -76.113838195800781, -8.654410362243539 ], [ -76.113700866699162, -8.654745101928654 ], [ -76.112495422363281, -8.655118942260685 ], [ -76.112220764160156, -8.655986785888672 ], [ -76.113006591796875, -8.656865119934082 ], [ -76.114532470703125, -8.656848907470703 ], [ -76.114570617675724, -8.657254219055176 ], [ -76.114181518554631, -8.657744407653752 ], [ -76.114524841308594, -8.658287048339844 ], [ -76.115325927734318, -8.658085823059082 ], [ -76.115989685058537, -8.657595634460449 ], [ -76.117393493652344, -8.655873298644963 ], [ -76.118446350097656, -8.654150009155273 ], [ -76.11956787109375, -8.653352737426758 ], [ -76.120758056640568, -8.653485298156681 ], [ -76.121452331542969, -8.654051780700684 ], [ -76.122016906738168, -8.654189109802189 ], [ -76.122573852539006, -8.65361499786377 ], [ -76.122596740722656, -8.652791976928711 ], [ -76.123046874999943, -8.652683258056584 ], [ -76.124176025390568, -8.653485298156681 ], [ -76.125106811523438, -8.655073165893555 ], [ -76.126068115234375, -8.655611038207951 ], [ -76.127449035644474, -8.655435562133675 ], [ -76.128692626953011, -8.654500961303711 ], [ -76.129600524902344, -8.654289245605469 ], [ -76.130348205566406, -8.655426979064941 ], [ -76.130722045898438, -8.656865119934082 ], [ -76.130500793456974, -8.658041000366211 ], [ -76.129646301269418, -8.659356117248535 ], [ -76.129867553710938, -8.660140037536621 ], [ -76.129493713378906, -8.661346435546875 ], [ -76.129600524902344, -8.662111282348519 ], [ -76.1312255859375, -8.663303375244027 ], [ -76.131492614746094, -8.663257598876953 ], [ -76.131706237792969, -8.662578582763672 ], [ -76.131301879882812, -8.661258697509766 ], [ -76.131858825683594, -8.660894393920898 ], [ -76.132415771484375, -8.661399841308594 ], [ -76.133186340332031, -8.66264533996582 ], [ -76.134803771972656, -8.663310050964355 ], [ -76.135208129882812, -8.664274215698185 ], [ -76.135765075683594, -8.664301872253361 ], [ -76.136497497558537, -8.663613319396859 ], [ -76.137252807617131, -8.663583755493164 ], [ -76.138168334960938, -8.664013862609863 ], [ -76.1390380859375, -8.66508769989008 ], [ -76.138862609863224, -8.666392326354924 ], [ -76.139030456542969, -8.666788101196289 ], [ -76.140213012695256, -8.667407989501953 ], [ -76.140464782714844, -8.668103218078613 ], [ -76.140304565429631, -8.668990135192814 ], [ -76.138877868652287, -8.669646263122502 ], [ -76.137786865234375, -8.671339988708496 ], [ -76.137245178222599, -8.671694755554199 ], [ -76.13616943359375, -8.671932220458984 ], [ -76.1358642578125, -8.672494888305607 ], [ -76.136474609375, -8.672891616821289 ], [ -76.137710571289062, -8.673104286193848 ], [ -76.137672424316406, -8.673746109008675 ], [ -76.136795043945256, -8.674534797668457 ], [ -76.136833190917969, -8.675004005432129 ], [ -76.138236999511719, -8.67647743225092 ], [ -76.139465332031193, -8.676535606384164 ], [ -76.139747619628849, -8.678170204162541 ], [ -76.141258239746037, -8.679524421691838 ], [ -76.141212463378906, -8.679902076721135 ], [ -76.140373229980469, -8.680739402770996 ], [ -76.140548706054688, -8.681461334228516 ], [ -76.141288757324219, -8.682009696960449 ], [ -76.142539978027344, -8.681427001953125 ], [ -76.143272399902287, -8.681796073913574 ], [ -76.143348693847599, -8.68251895904541 ], [ -76.142845153808594, -8.683714866638184 ], [ -76.142745971679688, -8.684619903564453 ], [ -76.142982482910099, -8.684872627258244 ], [ -76.143722534179688, -8.684905052185002 ], [ -76.144851684570312, -8.684332847595158 ], [ -76.145271301269474, -8.684810638427734 ], [ -76.145256042480412, -8.686981201171875 ], [ -76.143806457519531, -8.688865661621094 ], [ -76.143844604492131, -8.689146041870117 ], [ -76.144798278808537, -8.689975738525334 ], [ -76.144287109375, -8.691362380981388 ], [ -76.144271850585938, -8.692084312438965 ], [ -76.145248413085938, -8.693066596984806 ], [ -76.148361206054688, -8.694470405578613 ], [ -76.149154663085938, -8.695913314819336 ], [ -76.148910522460824, -8.698645591735783 ], [ -76.14691162109375, -8.702269554138127 ], [ -76.146835327148438, -8.704747200012207 ], [ -76.147491455078125, -8.705414772033691 ], [ -76.149032592773438, -8.705681800842285 ], [ -76.14986419677723, -8.706103324890137 ], [ -76.15057373046875, -8.706949234008789 ], [ -76.15093994140625, -8.70789909362793 ], [ -76.150321960449162, -8.709620475768986 ], [ -76.149696350097656, -8.710145950317326 ], [ -76.14739990234375, -8.710370063781738 ], [ -76.146347045898438, -8.710691452026367 ], [ -76.144645690917969, -8.710616111755371 ], [ -76.14434814453125, -8.710714340209904 ], [ -76.144264221191406, -8.711219787597656 ], [ -76.146903991699162, -8.715563774108887 ], [ -76.147094726562443, -8.717831611633301 ], [ -76.14801025390625, -8.717964172363281 ], [ -76.149528503417969, -8.717290878295898 ], [ -76.150497436523381, -8.717584609985295 ], [ -76.151123046875, -8.718615531921387 ], [ -76.151451110839787, -8.72227764129633 ], [ -76.151748657226506, -8.722511291503849 ], [ -76.153129577636719, -8.722416877746582 ], [ -76.153350830078125, -8.72260570526123 ], [ -76.153244018554688, -8.723331451416016 ], [ -76.152488708496094, -8.724245071411133 ], [ -76.153007507324162, -8.725909233093205 ], [ -76.152351379394531, -8.727193832397461 ], [ -76.153709411621094, -8.728420257568303 ], [ -76.154273986816406, -8.729881286621094 ], [ -76.155517578125, -8.731597900390625 ], [ -76.156135559081974, -8.733511924743652 ], [ -76.156929016113281, -8.733665466308537 ], [ -76.157989501953125, -8.733343124389592 ], [ -76.160430908203068, -8.731240272521973 ], [ -76.161506652832031, -8.729761123657227 ], [ -76.162513732910099, -8.729974746704102 ], [ -76.163734436035156, -8.731591224670353 ], [ -76.163970947265568, -8.73284912109375 ], [ -76.163764953613224, -8.734402656555176 ], [ -76.163299560546818, -8.73559665679926 ], [ -76.162620544433537, -8.736586570739689 ], [ -76.162452697753793, -8.737408638000431 ], [ -76.163368225097656, -8.739485740661621 ], [ -76.165199279785099, -8.740882873535156 ], [ -76.165519714355469, -8.741432189941406 ], [ -76.165550231933594, -8.741992950439453 ], [ -76.164939880371094, -8.742511749267578 ], [ -76.163017272949162, -8.742733001708928 ], [ -76.162689208984375, -8.743467330932617 ], [ -76.165023803710881, -8.747430801391545 ], [ -76.165176391601562, -8.748434066772461 ], [ -76.165817260742188, -8.74984169006342 ], [ -76.165725708007812, -8.750385284423828 ], [ -76.1651611328125, -8.751120567321777 ], [ -76.165084838867188, -8.751782417297363 ], [ -76.166458129882699, -8.753520965576058 ], [ -76.166671752929688, -8.754179000854492 ], [ -76.166458129882699, -8.755013465881348 ], [ -76.166130065917969, -8.755375862121582 ], [ -76.163955688476506, -8.755174636840763 ], [ -76.163688659667912, -8.755681037902832 ], [ -76.163818359375, -8.756415367126465 ], [ -76.164810180664006, -8.757053375244141 ], [ -76.166007995605469, -8.756089210510197 ], [ -76.166542053222599, -8.75597095489502 ], [ -76.168586730957031, -8.756489753723088 ], [ -76.170791625976562, -8.756645202636662 ], [ -76.172447204589787, -8.757238388061523 ], [ -76.174156188964787, -8.758535385131836 ], [ -76.174720764160099, -8.758586883544922 ], [ -76.177055358886719, -8.757340431213322 ], [ -76.180030822753906, -8.756707191467285 ], [ -76.181968688964787, -8.756855010986271 ], [ -76.18585205078125, -8.758047103881779 ], [ -76.188034057617188, -8.758427619934082 ], [ -76.189781188964844, -8.758322715759277 ], [ -76.193336486816349, -8.757345199584961 ], [ -76.194961547851506, -8.757645606994515 ], [ -76.196487426757756, -8.758845329284668 ], [ -76.197410583496094, -8.760107040405273 ], [ -76.198600769042969, -8.764642715454102 ], [ -76.199272155761719, -8.768637657165471 ], [ -76.200538635253906, -8.77148246765131 ], [ -76.203582763671875, -8.773878097534123 ], [ -76.205062866210881, -8.774571418762207 ], [ -76.206443786621094, -8.774709701538029 ], [ -76.207710266113281, -8.773963928222656 ], [ -76.208572387695312, -8.773130416870117 ], [ -76.210182189941406, -8.770998954772949 ], [ -76.210731506347656, -8.769850730895996 ], [ -76.211326599121094, -8.769686698913517 ], [ -76.21209716796875, -8.770016670226994 ], [ -76.212898254394474, -8.771243095397949 ], [ -76.213577270507812, -8.773250579833928 ], [ -76.214118957519474, -8.780583381652832 ], [ -76.214508056640568, -8.782190322875977 ], [ -76.215141296386719, -8.783528327941895 ], [ -76.216255187988281, -8.784753799438363 ], [ -76.21771240234375, -8.785553932189885 ], [ -76.218635559082031, -8.785586357116699 ], [ -76.220855712890625, -8.784954071044922 ], [ -76.222236633300724, -8.784940719604435 ], [ -76.223854064941349, -8.785317420959473 ], [ -76.225555419921818, -8.78624153137207 ], [ -76.226211547851562, -8.787226676940861 ], [ -76.227218627929688, -8.789909362792969 ], [ -76.227760314941349, -8.79259204864502 ], [ -76.227622985839844, -8.793804168701172 ], [ -76.228187561035156, -8.795185089111271 ], [ -76.229026794433594, -8.79628944396967 ], [ -76.229782104492074, -8.796627998351994 ], [ -76.2310791015625, -8.796624183654728 ], [ -76.233909606933594, -8.795112609863281 ], [ -76.234970092773438, -8.794196128845158 ], [ -76.235588073730412, -8.793300628662109 ], [ -76.236244201660099, -8.791188240051213 ], [ -76.236129760742188, -8.78852367401123 ], [ -76.232238769531193, -8.781100273132324 ], [ -76.231964111328068, -8.779755592346135 ], [ -76.232414245605469, -8.778261184692326 ], [ -76.233238220214844, -8.776820182800293 ], [ -76.235511779785156, -8.774290084838867 ], [ -76.23638916015625, -8.77379131317133 ], [ -76.239151000976562, -8.771347999572697 ], [ -76.240211486816406, -8.769227981567383 ], [ -76.240188598632812, -8.765739440917969 ], [ -76.239387512206974, -8.764303207397461 ], [ -76.237960815429631, -8.763304710388127 ], [ -76.235237121582031, -8.762887954711857 ], [ -76.233482360839787, -8.76297664642334 ], [ -76.232803344726506, -8.762689590454045 ], [ -76.231422424316406, -8.761082649230957 ], [ -76.231269836425781, -8.759265899658203 ], [ -76.232429504394474, -8.757509231567383 ], [ -76.234870910644531, -8.756215095519906 ], [ -76.236312866210938, -8.755902290344181 ], [ -76.240440368652287, -8.755718231201172 ], [ -76.243019104003849, -8.753214836120605 ], [ -76.243759155273438, -8.751665115356445 ], [ -76.243904113769531, -8.750659942626839 ], [ -76.243843078613281, -8.75012016296381 ], [ -76.243186950683594, -8.749114990234318 ], [ -76.241874694824162, -8.748290061950684 ], [ -76.240577697753906, -8.748329162597656 ], [ -76.237228393554688, -8.749859809875488 ], [ -76.236061096191349, -8.750153541564941 ], [ -76.234603881835938, -8.750003814697266 ], [ -76.231430053710938, -8.749037742614746 ], [ -76.228492736816406, -8.74771785736084 ], [ -76.228195190429688, -8.747358322143498 ], [ -76.22768402099598, -8.74637317657465 ], [ -76.227828979492188, -8.744748115539494 ], [ -76.229682922363224, -8.741573333740178 ], [ -76.237564086914062, -8.734231948852539 ], [ -76.239944458007812, -8.730961799621582 ], [ -76.240463256835824, -8.729982376098576 ], [ -76.241050720214844, -8.728026390075627 ], [ -76.241340637207031, -8.72519588470459 ], [ -76.242118835449219, -8.721783638000431 ], [ -76.243118286132756, -8.719112396240234 ], [ -76.244293212890625, -8.717136383056641 ], [ -76.246780395507812, -8.714551925659123 ], [ -76.250625610351562, -8.712569236755314 ], [ -76.253044128417912, -8.710722923278809 ], [ -76.2552490234375, -8.709811210632267 ], [ -76.256423950195312, -8.708904266357422 ], [ -76.256973266601562, -8.708161354064941 ], [ -76.256988525390625, -8.70605278015131 ], [ -76.25506591796875, -8.701177597045842 ], [ -76.254692077636719, -8.699468612670842 ], [ -76.254600524902344, -8.694132804870605 ], [ -76.255447387695312, -8.692402839660588 ], [ -76.257713317871037, -8.69031810760498 ], [ -76.25860595703125, -8.689842224121094 ], [ -76.259429931640568, -8.689796447753849 ], [ -76.262481689453068, -8.690518379211426 ], [ -76.264770507812443, -8.690185546874943 ], [ -76.266670227050724, -8.688594818115234 ], [ -76.267578125, -8.686702728271484 ], [ -76.267295837402344, -8.684896469116154 ], [ -76.266586303710881, -8.68348503112793 ], [ -76.265914916992131, -8.682730674743596 ], [ -76.264152526855469, -8.681415557861271 ], [ -76.261810302734318, -8.680852890014648 ], [ -76.260169982910099, -8.681112289428711 ], [ -76.257575988769531, -8.682323455810547 ], [ -76.256332397460938, -8.683257102966309 ], [ -76.254371643066349, -8.685444831848088 ], [ -76.251663208007812, -8.687343597412109 ], [ -76.249542236328125, -8.687414169311523 ], [ -76.247940063476562, -8.687010765075627 ], [ -76.246902465820312, -8.68598461151123 ], [ -76.246589660644531, -8.684845924377385 ], [ -76.246589660644531, -8.683642387390137 ], [ -76.2474365234375, -8.680610656738281 ], [ -76.248100280761719, -8.675318717956543 ], [ -76.250015258789062, -8.668990135192814 ], [ -76.251785278320256, -8.665341377258301 ], [ -76.253890991210881, -8.662811279296818 ], [ -76.256637573242188, -8.660343170165959 ], [ -76.263618469238224, -8.656990051269474 ], [ -76.266510009765625, -8.655036926269531 ], [ -76.2672119140625, -8.654302597045898 ], [ -76.268150329589844, -8.652726173400822 ], [ -76.268486022949162, -8.65130424499506 ], [ -76.268302917480412, -8.648185729980469 ], [ -76.267623901367131, -8.646388053893986 ], [ -76.266395568847599, -8.644774436950627 ], [ -76.264808654785156, -8.643359184265137 ], [ -76.263870239257812, -8.642839431762638 ], [ -76.262580871581974, -8.641522407531738 ], [ -76.261932373046875, -8.640396118164006 ], [ -76.261795043945256, -8.639019012451172 ], [ -76.262184143066349, -8.637516975402832 ], [ -76.263282775878906, -8.636039733886719 ], [ -76.265594482421875, -8.634196281433105 ], [ -76.26776123046875, -8.63320255279541 ], [ -76.268630981445312, -8.632251739501953 ], [ -76.269279479980469, -8.630532264709473 ], [ -76.269279479980469, -8.627592086791992 ], [ -76.268547058105469, -8.625314712524414 ], [ -76.266799926757812, -8.622381210327148 ], [ -76.263969421386719, -8.619352340698185 ], [ -76.261772155761719, -8.616628646850586 ], [ -76.261436462402287, -8.615942955017033 ], [ -76.261421203613224, -8.615111351013127 ], [ -76.262115478515625, -8.613706588745117 ], [ -76.263908386230412, -8.611992835998478 ], [ -76.265022277832031, -8.611184120178223 ], [ -76.266487121581974, -8.610610008239689 ], [ -76.270347595214844, -8.607784271240178 ], [ -76.272041320800781, -8.605853080749455 ], [ -76.272369384765625, -8.604701995849609 ], [ -76.272430419921875, -8.603327751159668 ], [ -76.271965026855469, -8.601827621459904 ], [ -76.270668029785099, -8.599383354186898 ], [ -76.270591735839787, -8.597637176513672 ], [ -76.270744323730469, -8.597302436828556 ], [ -76.272552490234375, -8.595341682434082 ], [ -76.275047302246037, -8.59330940246582 ], [ -76.277542114257756, -8.591916084289551 ], [ -76.280906677246094, -8.590432167053166 ], [ -76.282608032226506, -8.588752746582031 ], [ -76.283348083496037, -8.587583541870117 ], [ -76.283561706542912, -8.586606025695801 ], [ -76.283332824707031, -8.585331916809082 ], [ -76.28009033203125, -8.579348564147892 ], [ -76.279670715332031, -8.57757568359375 ], [ -76.279953002929688, -8.575107574462891 ], [ -76.282104492187443, -8.571029663085938 ], [ -76.283668518066406, -8.569615364074707 ], [ -76.285400390625, -8.569437026977539 ], [ -76.291412353515625, -8.570791244506836 ], [ -76.295394897460824, -8.572260856628418 ], [ -76.296684265136719, -8.572201728820801 ], [ -76.297821044921875, -8.571793556213379 ], [ -76.298896789550724, -8.57080173492426 ], [ -76.299903869628906, -8.568881034851074 ], [ -76.302688598632812, -8.561296463012638 ], [ -76.304634094238224, -8.557851791381779 ], [ -76.304893493652344, -8.55605411529541 ], [ -76.304817199706974, -8.552543640136719 ], [ -76.305290222167912, -8.551149368286133 ], [ -76.306594848632812, -8.549996376037541 ], [ -76.308845520019531, -8.548940658569336 ], [ -76.309661865234375, -8.548784255981388 ], [ -76.311225891113168, -8.548894882202092 ], [ -76.313125610351506, -8.548509597778263 ], [ -76.314979553222656, -8.546477317810059 ], [ -76.315101623535099, -8.545201301574707 ], [ -76.313858032226562, -8.54173374176014 ], [ -76.313545227050781, -8.53929328918457 ], [ -76.313713073730469, -8.536623954772892 ], [ -76.314552307128849, -8.533809661865234 ], [ -76.315467834472656, -8.532187461853027 ], [ -76.3167724609375, -8.530880928039551 ], [ -76.321098327636719, -8.528280258178654 ], [ -76.322181701660099, -8.52800464630127 ], [ -76.324333190917969, -8.525617599487248 ], [ -76.324394226074219, -8.525069236755314 ], [ -76.323738098144531, -8.524310111999455 ], [ -76.32354736328125, -8.523414611816406 ], [ -76.324256896972599, -8.520103454589844 ], [ -76.323356628417969, -8.516732215881291 ], [ -76.322082519531193, -8.514928817748967 ], [ -76.319541931152344, -8.512134552001896 ], [ -76.315254211425781, -8.509092330932617 ], [ -76.313034057617131, -8.506973266601506 ], [ -76.311683654785099, -8.505379676818791 ], [ -76.311584472656193, -8.503815650939941 ], [ -76.3128662109375, -8.500960350036564 ], [ -76.312904357910156, -8.499631881713867 ], [ -76.313789367675724, -8.498474121093693 ], [ -76.316116333007812, -8.496808052062931 ], [ -76.320350646972599, -8.495358467101994 ], [ -76.32135009765625, -8.494792938232422 ], [ -76.322547912597599, -8.493658065795842 ], [ -76.323654174804688, -8.491230964660645 ], [ -76.324073791503849, -8.489250183105412 ], [ -76.325454711914062, -8.485255241394043 ], [ -76.328010559081918, -8.479550361633244 ], [ -76.328109741210938, -8.477154731750431 ], [ -76.327644348144531, -8.475962638854924 ], [ -76.326980590820312, -8.475078582763672 ], [ -76.324501037597656, -8.473856925964299 ], [ -76.323081970214844, -8.472551345825195 ], [ -76.322547912597599, -8.471466064453125 ], [ -76.322311401367188, -8.468729019165039 ], [ -76.322563171386662, -8.467741966247502 ], [ -76.323234558105412, -8.466535568237305 ], [ -76.32501220703125, -8.464803695678711 ], [ -76.327835083007812, -8.462741851806584 ], [ -76.328819274902344, -8.461100578307992 ], [ -76.328956604003849, -8.459634780883732 ], [ -76.328414916992188, -8.456029891967773 ], [ -76.328079223632756, -8.455262184143066 ], [ -76.328147888183594, -8.452957153320312 ], [ -76.329170227050781, -8.450926780700684 ], [ -76.331840515136719, -8.447037696838379 ], [ -76.333099365234375, -8.443678855895996 ], [ -76.332695007324219, -8.43919563293457 ], [ -76.332855224609318, -8.43451023101801 ], [ -76.332511901855469, -8.432983398437443 ], [ -76.332786560058594, -8.431445121765137 ], [ -76.334281921386662, -8.428908348083496 ], [ -76.335655212402344, -8.427293777465763 ], [ -76.337356567382699, -8.426048278808594 ], [ -76.339393615722656, -8.424958229064941 ], [ -76.340728759765625, -8.424599647521916 ], [ -76.342758178710881, -8.424464225768986 ], [ -76.344688415527287, -8.424558639526367 ], [ -76.346664428710938, -8.425030708312988 ], [ -76.347114562988281, -8.424921989440861 ], [ -76.34844970703125, -8.425215721130314 ], [ -76.351676940917969, -8.425286293029728 ], [ -76.353103637695312, -8.424892425537109 ], [ -76.354751586914062, -8.424064636230469 ], [ -76.358497619628849, -8.420796394348088 ], [ -76.361434936523438, -8.416245460510254 ], [ -76.363540649414062, -8.413931846618652 ], [ -76.365264892578068, -8.412406921386719 ], [ -76.368530273437443, -8.411165237426701 ], [ -76.371726989746094, -8.410799980163574 ], [ -76.372108459472656, -8.411099433898926 ], [ -76.372062683105412, -8.412654876708928 ], [ -76.372604370117188, -8.413537025451603 ], [ -76.373107910156193, -8.413882255554142 ], [ -76.374237060546818, -8.413923263549805 ], [ -76.375350952148438, -8.413287162780705 ], [ -76.375885009765511, -8.413227081298771 ], [ -76.377120971679631, -8.413812637329102 ], [ -76.381507873535099, -8.418364524841252 ], [ -76.3848876953125, -8.421217918395939 ], [ -76.391876220703068, -8.428682327270508 ], [ -76.394294738769531, -8.430681228637695 ], [ -76.399520874023381, -8.435996055602971 ], [ -76.401222229003849, -8.437265396118164 ], [ -76.406715393066406, -8.442317962646428 ], [ -76.408668518066349, -8.443344116210938 ], [ -76.411544799804631, -8.444019317626896 ], [ -76.412742614746094, -8.443941116333008 ], [ -76.414291381835881, -8.443358421325627 ], [ -76.415740966796818, -8.44309139251709 ], [ -76.4169921875, -8.443329811096191 ], [ -76.417442321777287, -8.443662643432617 ], [ -76.418014526367131, -8.444819450378418 ], [ -76.418113708496037, -8.44665336608881 ], [ -76.418685913085881, -8.447250366210938 ], [ -76.419296264648438, -8.448893547057992 ], [ -76.4222412109375, -8.45169544219965 ], [ -76.423080444335881, -8.45275688171381 ], [ -76.424514770507756, -8.45645809173584 ], [ -76.4298095703125, -8.465519905090275 ], [ -76.431434631347656, -8.469330787658635 ], [ -76.433128356933594, -8.472597122192326 ], [ -76.43560791015625, -8.476259231567383 ], [ -76.437782287597656, -8.478510856628418 ], [ -76.438453674316406, -8.479532241821289 ], [ -76.440559387207031, -8.485717773437443 ], [ -76.443992614746094, -8.489195823669434 ], [ -76.444328308105412, -8.489952087402344 ], [ -76.444351196289006, -8.493243217468262 ], [ -76.447189331054631, -8.495847702026367 ], [ -76.448158264160099, -8.497415542602539 ], [ -76.449104309081974, -8.500053405761719 ], [ -76.449195861816349, -8.501375198364258 ], [ -76.44893646240223, -8.502737998962402 ], [ -76.448158264160099, -8.504687309265137 ], [ -76.446922302246037, -8.506193161010742 ], [ -76.445793151855469, -8.507145881652832 ], [ -76.445663452148381, -8.507662773132324 ], [ -76.44588470458973, -8.508865356445312 ], [ -76.447708129882812, -8.511063575744629 ], [ -76.448158264160099, -8.512462615966797 ], [ -76.448196411132812, -8.516235351562443 ], [ -76.447868347167912, -8.519083976745492 ], [ -76.448005676269531, -8.520339965820256 ], [ -76.448905944824162, -8.521269798278752 ], [ -76.45001220703125, -8.521273612976017 ], [ -76.450607299804688, -8.521532058715763 ], [ -76.452415466308594, -8.523370742797852 ], [ -76.454650878906193, -8.524456024169922 ], [ -76.455604553222599, -8.525828361511174 ], [ -76.455528259277344, -8.527634620666504 ], [ -76.455001831054688, -8.528406143188363 ], [ -76.453582763671818, -8.529569625854492 ], [ -76.45318603515625, -8.531289100646973 ], [ -76.455718994140625, -8.536786079406738 ], [ -76.458038330078125, -8.545404434204102 ], [ -76.459236145019418, -8.547136306762695 ], [ -76.461570739746094, -8.548455238342285 ], [ -76.461738586425781, -8.550173759460336 ], [ -76.462211608886719, -8.551174163818359 ], [ -76.464729309082031, -8.553860664367676 ], [ -76.465156555175781, -8.554673194885197 ], [ -76.465385437011719, -8.555929183959961 ], [ -76.466148376464844, -8.556731224060002 ], [ -76.467437744140511, -8.557431221008301 ], [ -76.467964172363281, -8.55809211730957 ], [ -76.466972351074219, -8.560535430908203 ], [ -76.467010498046875, -8.561467170715275 ], [ -76.467338562011662, -8.562126159667969 ], [ -76.467170715332031, -8.563118934631348 ], [ -76.465072631835938, -8.567305564880314 ], [ -76.464477539062443, -8.568121910095215 ], [ -76.463554382324219, -8.570214271545353 ], [ -76.462806701660156, -8.572675704956055 ], [ -76.463027954101506, -8.573587417602482 ], [ -76.464981079101562, -8.576066970825138 ], [ -76.465499877929631, -8.577106475830078 ], [ -76.465385437011719, -8.577667236328125 ], [ -76.464614868164062, -8.578592300415039 ], [ -76.46429443359375, -8.579451560974007 ], [ -76.464179992675724, -8.581648826599121 ], [ -76.463821411132812, -8.582491874694767 ], [ -76.464027404785156, -8.58432674407959 ], [ -76.463188171386719, -8.587141036987248 ], [ -76.463249206542969, -8.589710235595703 ], [ -76.464317321777344, -8.592337608337402 ], [ -76.464073181152287, -8.593514442443791 ], [ -76.463050842285043, -8.594801902770939 ], [ -76.462638854980412, -8.596104621887207 ], [ -76.462715148925781, -8.597842216491642 ], [ -76.465354919433594, -8.600407600402832 ], [ -76.46875, -8.60243034362793 ], [ -76.470428466796875, -8.604521751403752 ], [ -76.471504211425724, -8.605059623718262 ], [ -76.472152709960938, -8.605707168579102 ], [ -76.472854614257756, -8.606692314147892 ], [ -76.473800659179631, -8.608912467956486 ], [ -76.475082397460938, -8.610361099243164 ], [ -76.476684570312443, -8.614381790161133 ], [ -76.477241516113224, -8.61489200592041 ], [ -76.479209899902344, -8.615347862243652 ], [ -76.482955932617131, -8.616654396057129 ], [ -76.484481811523381, -8.617036819458008 ], [ -76.486022949218693, -8.616921424865723 ], [ -76.486946105957031, -8.615644454955998 ], [ -76.487373352050781, -8.615477561950627 ], [ -76.489356994628849, -8.616925239562988 ], [ -76.491523742675781, -8.617713928222599 ], [ -76.494728088378906, -8.618135452270451 ], [ -76.499885559082031, -8.618105888366699 ], [ -76.501495361328125, -8.618298530578556 ], [ -76.502273559570312, -8.617889404296818 ], [ -76.502525329589787, -8.617508888244629 ], [ -76.502616882324162, -8.61695671081543 ], [ -76.502265930175781, -8.616316795349121 ], [ -76.502220153808537, -8.615575790405273 ], [ -76.502632141113281, -8.614857673644963 ], [ -76.5035400390625, -8.614791870117188 ], [ -76.504791259765568, -8.615339279174805 ], [ -76.505439758300781, -8.615054130554199 ], [ -76.50592041015625, -8.61426830291748 ], [ -76.505638122558594, -8.612289428710938 ], [ -76.506156921386605, -8.610928535461426 ], [ -76.507148742675781, -8.609831809997559 ], [ -76.509620666503906, -8.608873367309513 ], [ -76.511123657226562, -8.607148170471135 ], [ -76.511703491210938, -8.605800628662109 ], [ -76.512374877929688, -8.602291107177734 ], [ -76.514808654785099, -8.597550392150879 ], [ -76.514892578125, -8.596527099609318 ], [ -76.514579772949219, -8.59582328796381 ], [ -76.512664794921875, -8.593680381774902 ], [ -76.512031555175781, -8.592658996582031 ], [ -76.511970520019474, -8.591745376586914 ], [ -76.512245178222599, -8.590235710144043 ], [ -76.511207580566349, -8.589199066162053 ], [ -76.510993957519474, -8.588114738464299 ], [ -76.510536193847599, -8.587321281433105 ], [ -76.508430480956974, -8.585423469543457 ], [ -76.50762939453125, -8.585200309753418 ], [ -76.50691986083973, -8.584623336791992 ], [ -76.503990173339844, -8.583577156066838 ], [ -76.502899169921818, -8.58354473114008 ], [ -76.502212524414006, -8.584016799926758 ], [ -76.501174926757756, -8.585846900939941 ], [ -76.499717712402344, -8.586078643798828 ], [ -76.498298645019531, -8.587053298950138 ], [ -76.496368408203125, -8.588009834289551 ], [ -76.495880126953125, -8.588003158569279 ], [ -76.494964599609318, -8.587562561035099 ], [ -76.494071960449219, -8.586507797241211 ], [ -76.493652343749943, -8.585333824157658 ], [ -76.493278503417912, -8.583139419555607 ], [ -76.49322509765625, -8.579792976379395 ], [ -76.493759155273324, -8.575757026672306 ], [ -76.495880126953125, -8.565478324890137 ], [ -76.494949340820312, -8.562369346618596 ], [ -76.494743347167969, -8.559614181518555 ], [ -76.495574951171875, -8.554775238036996 ], [ -76.496215820312443, -8.55256462097168 ], [ -76.49700927734375, -8.550969123840275 ], [ -76.497802734375, -8.55013465881342 ], [ -76.500862121582031, -8.547799110412598 ], [ -76.501495361328125, -8.547038078308105 ], [ -76.502410888671818, -8.542819023132267 ], [ -76.50311279296875, -8.541128158569336 ], [ -76.503684997558594, -8.538799285888672 ], [ -76.503898620605469, -8.535708427429199 ], [ -76.504264831542969, -8.535623550414982 ], [ -76.506217956542912, -8.53644943237299 ], [ -76.5076904296875, -8.53649711608881 ], [ -76.51302337646473, -8.534305572509766 ], [ -76.514213562011719, -8.533289909362736 ], [ -76.514419555664006, -8.531740188598576 ], [ -76.514862060546875, -8.531036376953125 ], [ -76.515388488769474, -8.530687332153263 ], [ -76.517158508300781, -8.530256271362305 ], [ -76.518783569335938, -8.527576446533146 ], [ -76.521125793456974, -8.526325225830021 ], [ -76.523132324218636, -8.524057388305664 ], [ -76.526184082031136, -8.522174835205078 ], [ -76.528450012206974, -8.519289016723633 ], [ -76.529090881347656, -8.518780708312988 ], [ -76.530372619628849, -8.518259048461914 ], [ -76.532112121582031, -8.516365051269531 ], [ -76.534912109375, -8.5142822265625 ], [ -76.536033630371094, -8.513869285583496 ], [ -76.53753662109375, -8.51385593414301 ], [ -76.538948059081974, -8.512513160705566 ], [ -76.541267395019531, -8.509466171264648 ], [ -76.541343688964787, -8.508731842041016 ], [ -76.541038513183537, -8.507406234741154 ], [ -76.541656494140625, -8.50639820098877 ], [ -76.541679382324219, -8.505764961242619 ], [ -76.542350769042969, -8.505013465881291 ], [ -76.543190002441406, -8.504628181457463 ], [ -76.543655395507812, -8.504039764404183 ], [ -76.543678283691406, -8.501299858093262 ], [ -76.542808532714844, -8.498373985290471 ], [ -76.543502807617188, -8.49793815612793 ], [ -76.544288635253849, -8.497698783874455 ], [ -76.544830322265625, -8.497706413268986 ], [ -76.545326232910099, -8.498084068298283 ], [ -76.546295166015568, -8.497897148132267 ], [ -76.547218322753906, -8.49721622467041 ], [ -76.547424316406193, -8.49755954742426 ], [ -76.548362731933594, -8.497944831848088 ], [ -76.548728942871094, -8.498449325561467 ], [ -76.548980712890625, -8.498141288757324 ], [ -76.550971984863224, -8.498098373413086 ], [ -76.551383972167969, -8.500273704528752 ], [ -76.552833557128906, -8.501952171325684 ], [ -76.553993225097656, -8.502200126647892 ], [ -76.554824829101562, -8.502772331237736 ], [ -76.555870056152344, -8.503113746643066 ], [ -76.557601928710938, -8.504843711852971 ], [ -76.558563232421875, -8.505463600158635 ], [ -76.561515808105469, -8.505541801452523 ], [ -76.563621520996094, -8.50784778594965 ], [ -76.565834045410099, -8.508705139160099 ], [ -76.567657470703068, -8.508951187133675 ], [ -76.569313049316406, -8.50887393951416 ], [ -76.570846557617188, -8.508569717407113 ], [ -76.571990966796875, -8.50798511505127 ], [ -76.573089599609318, -8.508106231689396 ], [ -76.574531555175724, -8.507513046264592 ], [ -76.575920104980469, -8.507472038269043 ], [ -76.577972412109375, -8.507998466491642 ], [ -76.580825805664006, -8.510184288024846 ], [ -76.581756591796818, -8.510494232177678 ], [ -76.584030151367188, -8.510087966918888 ], [ -76.586021423339844, -8.509167671203613 ], [ -76.587860107421818, -8.509402275085449 ], [ -76.588432312011662, -8.508941650390625 ], [ -76.588981628417969, -8.508885383605957 ], [ -76.590202331542969, -8.509530067443848 ], [ -76.5914306640625, -8.508349418640137 ], [ -76.592475891113281, -8.508003234863281 ], [ -76.593193054199162, -8.508180618286076 ], [ -76.595069885253906, -8.509792327880859 ], [ -76.597175598144531, -8.510722160339355 ], [ -76.599006652832031, -8.512768745422363 ], [ -76.600090026855412, -8.513250350952148 ], [ -76.6051025390625, -8.513231277465763 ], [ -76.608283996581974, -8.51404953002924 ], [ -76.609626770019474, -8.513762474060059 ], [ -76.611549377441406, -8.513980865478516 ], [ -76.612724304199219, -8.513291358947697 ], [ -76.613967895507812, -8.514009475708008 ], [ -76.615272521972656, -8.513549804687443 ], [ -76.617012023925781, -8.512203216552734 ], [ -76.618103027343693, -8.511990547180176 ], [ -76.619842529296875, -8.512788772583008 ], [ -76.622970581054631, -8.512875556945801 ], [ -76.623558044433594, -8.513111114501953 ], [ -76.625167846679631, -8.514610290527287 ], [ -76.626907348632812, -8.514323234558105 ], [ -76.628219604492131, -8.515747070312443 ], [ -76.628746032714844, -8.516043663024902 ], [ -76.629409790039062, -8.51594066619873 ], [ -76.630523681640625, -8.515304565429688 ], [ -76.632034301757756, -8.516274452209473 ], [ -76.633872985839844, -8.515234947204533 ], [ -76.634323120117131, -8.515259742736816 ], [ -76.63509368896473, -8.51578235626215 ], [ -76.63494873046875, -8.517383575439396 ], [ -76.635139465332031, -8.517926216125488 ], [ -76.636741638183594, -8.519211769103947 ], [ -76.63824462890625, -8.522042274475098 ], [ -76.638938903808594, -8.52248477935791 ], [ -76.640098571777344, -8.522812843322754 ], [ -76.640640258789062, -8.52274036407465 ], [ -76.642433166503849, -8.521628379821721 ], [ -76.643974304199219, -8.521386146545353 ], [ -76.645957946777287, -8.521819114685002 ], [ -76.648712158203068, -8.521919250488281 ], [ -76.651756286621037, -8.522945404052734 ], [ -76.655426025390625, -8.522883415222111 ], [ -76.656715393066349, -8.523376464843693 ], [ -76.658027648925781, -8.524392127990723 ], [ -76.659317016601449, -8.524567604064828 ], [ -76.660011291503906, -8.524374008178654 ], [ -76.660682678222656, -8.523857116699162 ], [ -76.662155151367131, -8.521082878112736 ], [ -76.662979125976562, -8.520410537719727 ], [ -76.665336608886719, -8.519974708557072 ], [ -76.667266845703125, -8.520103454589844 ], [ -76.668594360351562, -8.520430564880371 ], [ -76.669906616210938, -8.521284103393555 ], [ -76.670600891113281, -8.522024154663086 ], [ -76.671333312988168, -8.523713111877441 ], [ -76.671546936035156, -8.525156021118107 ], [ -76.672592163085938, -8.526735305786133 ], [ -76.673583984375, -8.527209281921387 ], [ -76.675971984863224, -8.527316093444824 ], [ -76.678451538085881, -8.528553962707463 ], [ -76.680297851562386, -8.528418540954533 ], [ -76.681060791015511, -8.528670310974121 ], [ -76.682441711425781, -8.529900550842228 ], [ -76.682815551757812, -8.530723571777287 ], [ -76.683937072753906, -8.531948089599553 ], [ -76.685897827148381, -8.532743453979492 ], [ -76.687301635742188, -8.533786773681584 ], [ -76.691177368164062, -8.535703659057617 ], [ -76.694404602050724, -8.537650108337346 ], [ -76.69612884521473, -8.539913177490234 ], [ -76.696937561035156, -8.542513847351017 ], [ -76.698654174804688, -8.544316291809082 ], [ -76.699447631835881, -8.544637680053711 ], [ -76.701194763183594, -8.544649124145508 ], [ -76.702720642089844, -8.544306755065918 ], [ -76.705703735351562, -8.543089866638127 ], [ -76.707710266113281, -8.541977882385254 ], [ -76.709014892578125, -8.540690422058105 ], [ -76.710746765136719, -8.537871360778695 ], [ -76.711799621582031, -8.536708831787109 ], [ -76.714759826660156, -8.535464286804142 ], [ -76.717704772949219, -8.533273696899414 ], [ -76.719146728515625, -8.533066749572754 ], [ -76.720550537109375, -8.532030105590707 ], [ -76.722846984863281, -8.528939247131291 ], [ -76.724327087402287, -8.52826023101801 ], [ -76.725227355957031, -8.527470588684082 ], [ -76.727119445800724, -8.524326324462834 ], [ -76.727935791015625, -8.523608207702637 ], [ -76.729179382324219, -8.524396896362248 ], [ -76.731971740722599, -8.525336265563965 ], [ -76.735206604003849, -8.526050567626896 ], [ -76.736953735351562, -8.526107788085938 ], [ -76.738632202148381, -8.525629997253361 ], [ -76.740661621093693, -8.524374008178654 ], [ -76.741027832031193, -8.524362564086914 ], [ -76.741752624511719, -8.523826599121094 ], [ -76.746917724609375, -8.521407127380371 ], [ -76.748146057128906, -8.521012306213322 ], [ -76.749427795410099, -8.52089786529541 ], [ -76.751251220703011, -8.521205902099496 ], [ -76.752914428710938, -8.521778106689339 ], [ -76.754058837890625, -8.522504806518555 ], [ -76.756774902343693, -8.524870872497502 ], [ -76.759078979492188, -8.525520324707031 ], [ -76.760726928710938, -8.526309013366642 ], [ -76.761734008789006, -8.526341438293457 ], [ -76.762695312499886, -8.526017189025879 ], [ -76.763542175292912, -8.525318145751953 ], [ -76.764259338378906, -8.524367332458496 ], [ -76.765258789062443, -8.523893356323185 ], [ -76.768867492675724, -8.524677276611328 ], [ -76.776405334472599, -8.524429321289006 ], [ -76.780914306640625, -8.525685310363713 ], [ -76.784866333007812, -8.525520324707031 ], [ -76.787002563476506, -8.524695396423283 ], [ -76.788734436035156, -8.522917747497559 ], [ -76.790245056152287, -8.520830154418945 ], [ -76.791023254394531, -8.518575668334904 ], [ -76.792266845703125, -8.516761779785156 ], [ -76.792587280273438, -8.514772415161133 ], [ -76.793960571289006, -8.513165473937988 ], [ -76.794914245605412, -8.512618064880371 ], [ -76.796180725097656, -8.512747764587402 ], [ -76.798339843749943, -8.513352394104004 ], [ -76.800285339355469, -8.514336585998478 ], [ -76.802162170410099, -8.516500473022461 ], [ -76.803665161132812, -8.519808769226074 ], [ -76.805137634277344, -8.520895957946664 ], [ -76.805572509765625, -8.520777702331486 ], [ -76.806991577148438, -8.519069671630859 ], [ -76.808235168457031, -8.517998695373535 ], [ -76.810218811035156, -8.517301559448242 ], [ -76.811759948730469, -8.517583847045898 ], [ -76.813102722167969, -8.519080162048283 ], [ -76.814270019531193, -8.519316673278809 ], [ -76.816078186035099, -8.521125793457031 ], [ -76.818069458007756, -8.521577835083008 ], [ -76.82080078125, -8.521792411804199 ], [ -76.821792602539006, -8.521568298339787 ], [ -76.824089050292912, -8.520410537719727 ], [ -76.824554443359318, -8.52039909362793 ], [ -76.828361511230469, -8.518890380859318 ], [ -76.830535888671875, -8.518507957458439 ], [ -76.831825256347599, -8.518621444702148 ], [ -76.833168029785099, -8.519562721252441 ], [ -76.836097717285099, -8.523526191711426 ], [ -76.838272094726562, -8.52565860748291 ], [ -76.839431762695256, -8.527164459228516 ], [ -76.840049743652344, -8.528816223144474 ], [ -76.840614318847656, -8.532809257507267 ], [ -76.842765808105469, -8.534814834594727 ], [ -76.843841552734318, -8.5369615554809 ], [ -76.843955993652344, -8.542556762695256 ], [ -76.844398498535099, -8.544824600219727 ], [ -76.84503173828125, -8.546627998352051 ], [ -76.848930358886719, -8.549104690551758 ], [ -76.850189208984375, -8.550565719604492 ], [ -76.851547241210881, -8.551506996154785 ], [ -76.853004455566349, -8.552079200744629 ], [ -76.854743957519531, -8.552268028259221 ], [ -76.857315063476562, -8.55298900604248 ], [ -76.858963012695312, -8.553579330444279 ], [ -76.860069274902344, -8.554232597351074 ], [ -76.861717224121094, -8.555562019348031 ], [ -76.862556457519531, -8.556534767150879 ], [ -76.865097045898381, -8.561424255371037 ], [ -76.866096496582031, -8.562239646911621 ], [ -76.867774963378849, -8.563000679016 ], [ -76.869499206542912, -8.562702178955078 ], [ -76.870361328124943, -8.561895370483398 ], [ -76.870918273925724, -8.560535430908203 ], [ -76.87164306640625, -8.559700965881348 ], [ -76.872489929199219, -8.559135437011662 ], [ -76.873741149902344, -8.558832168579102 ], [ -76.876319885253906, -8.558989524841309 ], [ -76.880096435546875, -8.560419082641545 ], [ -76.882568359374943, -8.560605049133244 ], [ -76.883972167968693, -8.55915355682373 ], [ -76.884422302246094, -8.557558059692326 ], [ -76.884841918945256, -8.556969642639103 ], [ -76.885688781738224, -8.556413650512638 ], [ -76.886894226074219, -8.556380271911621 ], [ -76.888153076171875, -8.556961059570256 ], [ -76.889137268066349, -8.557790756225586 ], [ -76.8919677734375, -8.561293601989746 ], [ -76.893699645996037, -8.562116622924805 ], [ -76.894790649414062, -8.563105583190918 ], [ -76.895118713378906, -8.564069747924748 ], [ -76.895042419433537, -8.567741394042912 ], [ -76.895866394042969, -8.568495750427246 ], [ -76.897682189941406, -8.56846809387207 ], [ -76.899330139160099, -8.567169189453068 ], [ -76.900802612304688, -8.566583633422852 ], [ -76.901954650878906, -8.566377639770508 ], [ -76.906654357910156, -8.568531990051156 ], [ -76.907981872558594, -8.568825721740723 ], [ -76.911231994628906, -8.57033729553217 ], [ -76.912986755371037, -8.570789337158146 ], [ -76.917312622070312, -8.570650100707951 ], [ -76.925041198730469, -8.569581031799203 ], [ -76.928153991699162, -8.56806468963623 ], [ -76.929763793945256, -8.567034721374455 ], [ -76.931236267089844, -8.567009925842285 ], [ -76.933341979980469, -8.567920684814396 ], [ -76.934379577636719, -8.567544937133789 ], [ -76.934928894042855, -8.566818237304688 ], [ -76.934844970703125, -8.564089775085392 ], [ -76.935020446777287, -8.563051223754883 ], [ -76.935523986816406, -8.56234169006342 ], [ -76.937400817871037, -8.560624122619629 ], [ -76.93896484375, -8.558237075805607 ], [ -76.939666748046818, -8.556436538696232 ], [ -76.939765930175724, -8.554148674011174 ], [ -76.940376281738281, -8.55250072479248 ], [ -76.941726684570312, -8.551147460937443 ], [ -76.943687438964787, -8.550150871276799 ], [ -76.945030212402287, -8.54912281036377 ], [ -76.9459228515625, -8.548086166381836 ], [ -76.946426391601562, -8.546531677246094 ], [ -76.947090148925781, -8.545893669128418 ], [ -76.947456359863281, -8.545818328857422 ], [ -76.948974609375, -8.546662330627385 ], [ -76.949516296386662, -8.546759605407715 ], [ -76.952774047851562, -8.545269012451172 ], [ -76.954421997070312, -8.545431137084961 ], [ -76.956573486328068, -8.547943115234375 ], [ -76.957260131835938, -8.549929618835449 ], [ -76.958892822265625, -8.551675796508675 ], [ -76.96010589599598, -8.554073333740178 ], [ -76.961616516113224, -8.555559158325138 ], [ -76.963699340820256, -8.558465003967285 ], [ -76.967147827148381, -8.561060905456543 ], [ -76.97119140625, -8.561157226562443 ], [ -76.972648620605469, -8.561385154724121 ], [ -76.973648071288949, -8.56125545501709 ], [ -76.974472045898381, -8.560671806335449 ], [ -76.976478576660099, -8.560824394226017 ], [ -76.977005004882812, -8.559384346008301 ], [ -76.97808837890625, -8.558818817138672 ], [ -76.982322692871037, -8.558643341064453 ], [ -76.984718322753906, -8.557410240173283 ], [ -76.988945007324219, -8.557387351989689 ], [ -76.992141723632756, -8.556259155273438 ], [ -76.993385314941349, -8.555475234985295 ], [ -76.994461059570312, -8.554468154907227 ], [ -76.997329711914062, -8.550203323364258 ], [ -76.998504638671818, -8.54891300201416 ], [ -76.99932861328125, -8.548338890075627 ], [ -77.003318786621094, -8.546953201293945 ], [ -77.007301330566349, -8.543705940246525 ], [ -77.010040283203125, -8.540980339050293 ], [ -77.012039184570312, -8.53996562957758 ], [ -77.013740539550781, -8.540047645568848 ], [ -77.014846801757699, -8.540656089782715 ], [ -77.019500732421818, -8.541021347045898 ], [ -77.02166748046875, -8.541930198669434 ], [ -77.02325439453125, -8.542954444885197 ], [ -77.0242919921875, -8.543227195739746 ], [ -77.025184631347656, -8.543161392211857 ], [ -77.027809143066349, -8.542197227478027 ], [ -77.029556274414062, -8.541889190673771 ], [ -77.030975341796875, -8.542092323303166 ], [ -77.032279968261662, -8.543532371520996 ], [ -77.032791137695312, -8.544893264770451 ], [ -77.035530090331974, -8.548765182495117 ], [ -77.0362548828125, -8.551336288452148 ], [ -77.036247253417969, -8.553481101989689 ], [ -77.03765869140625, -8.554350852966252 ], [ -77.040557861328125, -8.553745269775391 ], [ -77.043495178222656, -8.554201126098633 ], [ -77.046379089355412, -8.554304122924805 ], [ -77.048439025878906, -8.554160118102971 ], [ -77.050247192382812, -8.553622245788574 ], [ -77.051895141601562, -8.55288124084467 ], [ -77.053665161132812, -8.551228523254395 ], [ -77.055023193359375, -8.550752639770508 ], [ -77.056015014648381, -8.549931526184025 ], [ -77.056388854980469, -8.548800468444824 ], [ -77.056076049804688, -8.546857833862305 ], [ -77.0562744140625, -8.546169281005803 ], [ -77.056884765624943, -8.545254707336369 ], [ -77.057609558105469, -8.545016288757267 ], [ -77.058891296386662, -8.545062065124512 ], [ -77.059684753417969, -8.544642448425179 ], [ -77.060096740722656, -8.543963432311955 ], [ -77.060188293457031, -8.543256759643498 ], [ -77.06005859375, -8.539857864379883 ], [ -77.059707641601562, -8.538187980651855 ], [ -77.059867858886719, -8.537761688232422 ], [ -77.063140869140625, -8.538017272949219 ], [ -77.065483093261662, -8.537361145019531 ], [ -77.071540832519531, -8.536615371704102 ], [ -77.074905395507756, -8.53534984588623 ], [ -77.075508117675781, -8.534660339355469 ], [ -77.075691223144418, -8.533611297607422 ], [ -77.074707031249943, -8.529719352722168 ], [ -77.074752807617188, -8.528923034667912 ], [ -77.075210571289006, -8.528143882751351 ], [ -77.07607269287098, -8.527507781982422 ], [ -77.077606201171875, -8.526992797851506 ], [ -77.079566955566349, -8.526682853698674 ], [ -77.082969665527344, -8.526899337768555 ], [ -77.084037780761719, -8.526748657226562 ], [ -77.084678649902344, -8.526402473449707 ], [ -77.085899353027344, -8.524534225463867 ], [ -77.088256835937443, -8.522886276245117 ], [ -77.089347839355469, -8.519851684570256 ], [ -77.091209411621037, -8.516786575317383 ], [ -77.09136962890625, -8.51563835144043 ], [ -77.091163635253906, -8.514760971069279 ], [ -77.090103149414062, -8.513429641723576 ], [ -77.089324951171818, -8.512837409973031 ], [ -77.086524963378906, -8.511424064636174 ], [ -77.085403442382756, -8.511093139648381 ], [ -77.084785461425781, -8.510320663452148 ], [ -77.084754943847656, -8.507193565368652 ], [ -77.084381103515625, -8.50507926940918 ], [ -77.084587097167969, -8.503741264343262 ], [ -77.084449768066349, -8.50278377532959 ], [ -77.083824157714844, -8.501855850219727 ], [ -77.080429077148381, -8.49837589263916 ], [ -77.079994201660156, -8.497446060180664 ], [ -77.079772949218693, -8.493288993835449 ], [ -77.080108642578125, -8.491698265075627 ], [ -77.080787658691406, -8.489940643310547 ], [ -77.08056640625, -8.487666130065918 ], [ -77.080802917480469, -8.487155914306584 ], [ -77.081260681152344, -8.487036705017033 ], [ -77.083404541015568, -8.487513542175236 ], [ -77.084991455078125, -8.487270355224609 ], [ -77.086700439453125, -8.485950469970703 ], [ -77.087303161621037, -8.484346389770394 ], [ -77.088569641113281, -8.483135223388615 ], [ -77.091148376464844, -8.48286247253418 ], [ -77.091896057128849, -8.483031272888127 ], [ -77.092430114746094, -8.48343372344965 ], [ -77.093124389648381, -8.484307289123478 ], [ -77.093704223632756, -8.485522270202637 ], [ -77.094329833984375, -8.486053466796875 ], [ -77.094856262206974, -8.486078262329102 ], [ -77.095588684081974, -8.485514640807992 ], [ -77.097213745117131, -8.485692977905273 ], [ -77.098411560058594, -8.486554145812988 ], [ -77.099746704101562, -8.488257408142033 ], [ -77.100639343261719, -8.48858737945551 ], [ -77.101173400878906, -8.488530158996582 ], [ -77.102455139160099, -8.48757266998291 ], [ -77.102455139160099, -8.486759185790959 ], [ -77.103416442871037, -8.484991073608342 ], [ -77.104011535644474, -8.483207702636719 ], [ -77.104553222656193, -8.482815742492676 ], [ -77.106391906738224, -8.482625007629395 ], [ -77.106819152832031, -8.481908798217773 ], [ -77.106941223144474, -8.481096267700138 ], [ -77.107589721679688, -8.480252265930176 ], [ -77.10870361328125, -8.479240417480412 ], [ -77.109992980956974, -8.47874641418457 ], [ -77.110656738281193, -8.479033470153809 ], [ -77.111289978027344, -8.480439186096191 ], [ -77.111831665039006, -8.481067657470703 ], [ -77.112960815429631, -8.481767654418888 ], [ -77.114280700683537, -8.481498718261662 ], [ -77.118049621582031, -8.479668617248535 ], [ -77.119270324706974, -8.479663848876953 ], [ -77.120491027831974, -8.480895042419434 ], [ -77.121246337890568, -8.48369121551508 ], [ -77.121749877929631, -8.484404563903809 ], [ -77.122207641601506, -8.484592437744141 ], [ -77.123657226562443, -8.484594345092773 ], [ -77.125846862792912, -8.484248161315861 ], [ -77.130271911621094, -8.483056068420353 ], [ -77.131332397460938, -8.483151435851994 ], [ -77.133064270019531, -8.482433319091797 ], [ -77.134689331054631, -8.482508659362793 ], [ -77.136077880859375, -8.483086585998535 ], [ -77.138496398925781, -8.481954574584904 ], [ -77.140708923339787, -8.480375289916992 ], [ -77.141441345214844, -8.478504180908203 ], [ -77.143608093261719, -8.476493835449219 ], [ -77.143463134765568, -8.476034164428654 ], [ -77.141746520996037, -8.474940299987793 ], [ -77.140678405761719, -8.473907470703125 ], [ -77.139671325683537, -8.472455024719238 ], [ -77.139465332031193, -8.471823692321777 ], [ -77.139495849609375, -8.469401359558105 ], [ -77.13916015625, -8.467940330505314 ], [ -77.134613037109318, -8.463327407836914 ], [ -77.134086608886719, -8.462552070617619 ], [ -77.133735656738224, -8.460567474365234 ], [ -77.132598876953068, -8.457825660705566 ], [ -77.132247924804688, -8.456390380859375 ], [ -77.131576538085824, -8.443818092346191 ], [ -77.131172180175724, -8.442816734313965 ], [ -77.130294799804688, -8.44300365447998 ], [ -77.128021240234318, -8.444805145263615 ], [ -77.123558044433537, -8.446981430053711 ], [ -77.121002197265625, -8.447873115539494 ], [ -77.119453430175724, -8.448122978210392 ], [ -77.11749267578125, -8.448088645935059 ], [ -77.112869262695256, -8.447245597839299 ], [ -77.105560302734375, -8.445351600646973 ], [ -77.103897094726506, -8.444367408752441 ], [ -77.103698730468693, -8.443670272827148 ], [ -77.103889465331974, -8.441878318786621 ], [ -77.103057861328068, -8.440059661865234 ], [ -77.103202819824219, -8.43669605255127 ], [ -77.102516174316406, -8.435532569885254 ], [ -77.101852416992188, -8.435989379882812 ], [ -77.098274230956974, -8.436964988708439 ], [ -77.096519470214844, -8.435320854186955 ], [ -77.094215393066406, -8.43555831909174 ], [ -77.093452453613281, -8.435120582580566 ], [ -77.093246459960938, -8.433954238891602 ], [ -77.094024658203125, -8.43128490447998 ], [ -77.094032287597656, -8.427956581115666 ], [ -77.093124389648381, -8.425712585449162 ], [ -77.091491699218693, -8.42513370513916 ], [ -77.089859008789062, -8.424020767211914 ], [ -77.087501525878849, -8.419026374816895 ], [ -77.088287353515625, -8.417031288146973 ], [ -77.088340759277287, -8.414230346679688 ], [ -77.08868408203125, -8.412197113037053 ], [ -77.088348388671818, -8.410045623779297 ], [ -77.087753295898438, -8.408548355102539 ], [ -77.087791442871037, -8.405473709106388 ], [ -77.086921691894474, -8.403790473937988 ], [ -77.085716247558594, -8.402846336364746 ], [ -77.083992004394531, -8.402257919311523 ], [ -77.082550048828068, -8.401488304138127 ], [ -77.081581115722599, -8.401275634765625 ], [ -77.078941345214844, -8.401977539062443 ], [ -77.077491760253849, -8.402011871337891 ], [ -77.075653076171875, -8.403876304626408 ], [ -77.074333190917912, -8.404389381408635 ], [ -77.072639465331918, -8.403530120849609 ], [ -77.070266723632812, -8.401689529418945 ], [ -77.069992065429688, -8.40013599395752 ], [ -77.069534301757812, -8.399559020996094 ], [ -77.068168640136719, -8.398192405700684 ], [ -77.066001892089844, -8.396892547607422 ], [ -77.061897277832031, -8.397592544555664 ], [ -77.06072998046875, -8.398069381713867 ], [ -77.058097839355469, -8.399863243102971 ], [ -77.05694580078125, -8.400103569030762 ], [ -77.050430297851562, -8.402877807617188 ], [ -77.049018859863281, -8.40300273895258 ], [ -77.047386169433594, -8.403571128845158 ], [ -77.045394897460938, -8.404648780822754 ], [ -77.042961120605412, -8.405376434326172 ], [ -77.036033630371094, -8.40559005737299 ], [ -77.031356811523438, -8.40422534942627 ], [ -77.028739929199162, -8.402600288391113 ], [ -77.024673461914062, -8.400706291198674 ], [ -77.023628234863281, -8.399688720703068 ], [ -77.021064758300781, -8.397994041442871 ], [ -77.020034790039062, -8.397622108459416 ], [ -77.019073486328125, -8.396957397460938 ], [ -77.017837524414062, -8.396662712097168 ], [ -77.014289855957031, -8.394468307495117 ], [ -77.011161804199219, -8.391318321228027 ], [ -77.007537841796875, -8.389104843139648 ], [ -77.006156921386662, -8.38730525970459 ], [ -77.004058837890568, -8.385298728942871 ], [ -77.002510070800724, -8.384547233581543 ], [ -76.999496459960938, -8.382284164428654 ], [ -76.998527526855412, -8.382099151611328 ], [ -76.997291564941349, -8.382376670837402 ], [ -76.996444702148438, -8.382905960083008 ], [ -76.994995117187443, -8.385534286498967 ], [ -76.990615844726506, -8.389985084533635 ], [ -76.990600585937443, -8.393077850341797 ], [ -76.990142822265568, -8.39503288269043 ], [ -76.989479064941293, -8.395921707153263 ], [ -76.988235473632756, -8.396977424621582 ], [ -76.988143920898324, -8.399455070495605 ], [ -76.987228393554688, -8.400924682617131 ], [ -76.986900329589787, -8.403113365173283 ], [ -76.986099243164062, -8.404952049255371 ], [ -76.985176086425724, -8.405571937561035 ], [ -76.981689453125, -8.405444145202637 ], [ -76.979888916015625, -8.404730796813908 ], [ -76.977775573730469, -8.403420448303166 ], [ -76.976684570312443, -8.402421951293888 ], [ -76.976272583007812, -8.401711463928166 ], [ -76.975944519042969, -8.400554656982365 ], [ -76.97589111328125, -8.398802757263127 ], [ -76.975425720214787, -8.397802352905273 ], [ -76.974365234375, -8.397282600402832 ], [ -76.972015380859318, -8.396879196166935 ], [ -76.97052001953125, -8.395657539367676 ], [ -76.969589233398438, -8.394068717956543 ], [ -76.969444274902287, -8.393627166748047 ], [ -76.969566345214844, -8.390780448913517 ], [ -76.970802307128906, -8.388107299804688 ], [ -76.971473693847656, -8.385624885559082 ], [ -76.971542358398381, -8.383609771728516 ], [ -76.971939086914062, -8.381545066833439 ], [ -76.971740722656136, -8.377676963806152 ], [ -76.971237182617131, -8.376296043395939 ], [ -76.970504760742188, -8.375243186950627 ], [ -76.969223022460938, -8.373911857604924 ], [ -76.967384338378906, -8.372529029846135 ], [ -76.965095520019531, -8.369998931884766 ], [ -76.964317321777344, -8.369805335998535 ], [ -76.962753295898381, -8.370029449462834 ], [ -76.960975646972656, -8.370779037475586 ], [ -76.959823608398438, -8.371525764465332 ], [ -76.958389282226449, -8.371876716613713 ], [ -76.955978393554631, -8.371004104614258 ], [ -76.954971313476562, -8.371045112609863 ], [ -76.953590393066349, -8.371773719787541 ], [ -76.952728271484318, -8.372845649719238 ], [ -76.950637817382756, -8.374618530273381 ], [ -76.94942474365223, -8.375266075134221 ], [ -76.948783874511719, -8.375151634216252 ], [ -76.947509765624943, -8.374135971069336 ], [ -76.944740295410099, -8.369910240173283 ], [ -76.94287109375, -8.362812995910588 ], [ -76.942741394042912, -8.360149383544922 ], [ -76.942077636718693, -8.359039306640625 ], [ -76.940063476562443, -8.358452796936035 ], [ -76.937728881835938, -8.358942985534611 ], [ -76.934974670410156, -8.358813285827637 ], [ -76.932029724121094, -8.359459877014103 ], [ -76.930374145507812, -8.360779762268066 ], [ -76.929672241210881, -8.360937118530217 ], [ -76.928550720214844, -8.360515594482422 ], [ -76.926254272460938, -8.357769012451172 ], [ -76.924835205078125, -8.354576110839787 ], [ -76.924438476562386, -8.351722717285099 ], [ -76.924530029296818, -8.350727081298828 ], [ -76.925758361816349, -8.349120140075627 ], [ -76.928199768066406, -8.347661018371468 ], [ -76.928970336914062, -8.34687328338623 ], [ -76.929847717285099, -8.345141410827637 ], [ -76.930023193359375, -8.342925071716252 ], [ -76.929725646972656, -8.342303276062012 ], [ -76.928733825683594, -8.341275215148926 ], [ -76.925384521484318, -8.338944435119629 ], [ -76.923995971679688, -8.338234901428223 ], [ -76.922393798828125, -8.336841583251896 ], [ -76.919586181640625, -8.333674430847111 ], [ -76.917709350585938, -8.330506324768066 ], [ -76.915519714355469, -8.329181671142578 ], [ -76.911521911621094, -8.325104713439941 ], [ -76.911506652832031, -8.323622703552246 ], [ -76.912147521972656, -8.322003364562931 ], [ -76.912254333496094, -8.320601463317814 ], [ -76.911949157714844, -8.319768905639648 ], [ -76.910469055175781, -8.317425727844181 ], [ -76.910331726074219, -8.315031051635742 ], [ -76.909645080566349, -8.311600685119572 ], [ -76.908973693847599, -8.310293197631779 ], [ -76.906448364257812, -8.307609558105469 ], [ -76.905372619628906, -8.305082321166992 ], [ -76.905517578125, -8.300636291503906 ], [ -76.906143188476562, -8.29957389831543 ], [ -76.908454895019531, -8.297294616699219 ], [ -76.908714294433594, -8.296505928039551 ], [ -76.908699035644474, -8.294669151306096 ], [ -76.907882690429688, -8.293444633483773 ], [ -76.906547546386719, -8.292303085327148 ], [ -76.90252685546875, -8.291363716125431 ], [ -76.901229858398381, -8.290700912475586 ], [ -76.900177001953125, -8.288962364196664 ], [ -76.899238586425724, -8.285341262817383 ], [ -76.899467468261719, -8.283795356750488 ], [ -76.899360656738281, -8.282973289489746 ], [ -76.899810791015568, -8.281766891479435 ], [ -76.899826049804631, -8.281035423278752 ], [ -76.901626586914006, -8.277039527893066 ], [ -76.900825500488281, -8.274938583374023 ], [ -76.901435852050724, -8.270277976989746 ], [ -76.901351928710881, -8.268812179565373 ], [ -76.900924682617188, -8.267683982849064 ], [ -76.901466369628906, -8.266706466674748 ], [ -76.902557373046875, -8.265578269958439 ], [ -76.903846740722656, -8.265122413635254 ], [ -76.90594482421875, -8.264942169189396 ], [ -76.906578063964787, -8.264386177062931 ], [ -76.906806945800781, -8.263787269592285 ], [ -76.906578063964787, -8.261973381042367 ], [ -76.9049072265625, -8.259937286376953 ], [ -76.904701232910156, -8.259189605712891 ], [ -76.906295776367131, -8.254840850830021 ], [ -76.907920837402287, -8.251957893371582 ], [ -76.908126831054631, -8.249218940734806 ], [ -76.90777587890625, -8.247782707214355 ], [ -76.906501770019474, -8.245547294616642 ], [ -76.905189514160156, -8.241964340209961 ], [ -76.905410766601562, -8.239785194396916 ], [ -76.906394958496037, -8.238829612731934 ], [ -76.908866882324162, -8.238094329833984 ], [ -76.910438537597656, -8.237166404724064 ], [ -76.91217041015625, -8.235638618469238 ], [ -76.913284301757812, -8.234294891357422 ], [ -76.919219970703125, -8.224141120910588 ], [ -76.920555114746094, -8.222497940063477 ], [ -76.921859741210881, -8.220277786254883 ], [ -76.924339294433537, -8.217445373535099 ], [ -76.925514221191406, -8.214747428893986 ], [ -76.926841735839844, -8.212542533874455 ], [ -76.927688598632812, -8.209726333618164 ], [ -76.927558898925724, -8.209102630615234 ], [ -76.927093505859318, -8.208400726318246 ], [ -76.926246643066349, -8.20811653137207 ], [ -76.9254150390625, -8.208452224731445 ], [ -76.924072265625, -8.209861755371094 ], [ -76.923461914062443, -8.209754943847656 ], [ -76.922225952148381, -8.206804275512638 ], [ -76.921913146972656, -8.205361366271916 ], [ -76.920906066894474, -8.203829765319824 ], [ -76.917900085449219, -8.200189590454102 ], [ -76.916938781738281, -8.199345588684025 ], [ -76.913223266601562, -8.196957588195744 ], [ -76.912223815917912, -8.195307731628361 ], [ -76.912025451660099, -8.193021774291992 ], [ -76.910186767578125, -8.185317993164006 ], [ -76.909805297851562, -8.182593345642033 ], [ -76.909042358398438, -8.179937362670898 ], [ -76.908561706542969, -8.176285743713265 ], [ -76.907249450683537, -8.172758102416935 ], [ -76.906326293945312, -8.169526100158691 ], [ -76.906181335449219, -8.168332099914551 ], [ -76.906463623046875, -8.166723251342773 ], [ -76.907646179199162, -8.165414810180607 ], [ -76.90822601318348, -8.164162635803166 ], [ -76.909126281738281, -8.163384437560978 ], [ -76.910316467285099, -8.161487579345703 ], [ -76.910720825195312, -8.159063339233398 ], [ -76.91473388671875, -8.155418395996094 ], [ -76.917884826660156, -8.153558731079102 ], [ -76.920875549316349, -8.149829864501896 ], [ -76.92352294921875, -8.147558212280273 ], [ -76.925537109375, -8.146661758422852 ], [ -76.927490234374886, -8.146138191223088 ], [ -76.929237365722656, -8.144385337829476 ], [ -76.930496215820312, -8.144098281860352 ], [ -76.931961059570256, -8.144072532653752 ], [ -76.933158874511719, -8.143416404724064 ], [ -76.934181213378906, -8.142110824584961 ], [ -76.934852600097656, -8.139528274536133 ], [ -76.936042785644474, -8.138131141662541 ], [ -76.937057495117188, -8.13803768157959 ], [ -76.939666748046818, -8.138547897338867 ], [ -76.943710327148438, -8.138654708862305 ], [ -76.949050903320312, -8.137454032897949 ], [ -76.951057434082031, -8.13634204864502 ], [ -76.952880859375, -8.134949684143066 ], [ -76.958869934082031, -8.128357887268066 ], [ -76.961273193359375, -8.126369476318303 ], [ -76.964584350585881, -8.124053001403752 ], [ -76.970726013183594, -8.12086009979248 ], [ -76.972969055175724, -8.120417594909611 ], [ -76.9757080078125, -8.120230674743596 ], [ -76.977355957031193, -8.12034893035883 ], [ -76.97979736328125, -8.120012283325138 ], [ -76.980308532714787, -8.119791030883789 ], [ -76.981658935546761, -8.118449211120605 ], [ -76.983016967773438, -8.117954254150391 ], [ -76.983695983886719, -8.116955757141056 ], [ -76.984130859374943, -8.115742683410645 ], [ -76.984588623046818, -8.111255645751953 ], [ -76.985061645507756, -8.109284400939941 ], [ -76.985359191894474, -8.106352806091309 ], [ -76.985816955566406, -8.104668617248535 ], [ -76.986686706542912, -8.10254001617426 ], [ -76.989570617675724, -8.09816932678217 ], [ -76.989906311035156, -8.096359252929688 ], [ -76.989959716796875, -8.093973159789982 ], [ -76.990760803222656, -8.091761589050293 ], [ -76.991600036621094, -8.090373992919922 ], [ -76.993255615234375, -8.088578224182129 ], [ -76.996513366699162, -8.086139678954964 ], [ -77.00103759765625, -8.083514213561955 ], [ -77.003364562988281, -8.082761764526367 ], [ -77.004409790039062, -8.082069396972656 ], [ -77.006553649902344, -8.079490661621094 ], [ -77.007896423339844, -8.076818466186467 ], [ -77.009292602539006, -8.075165748596135 ], [ -77.010124206542969, -8.073550224304199 ], [ -77.013847351074219, -8.068216323852539 ], [ -77.020622253417969, -8.063220977783146 ], [ -77.022895812988281, -8.062650680541992 ], [ -77.024955749511605, -8.061499595642033 ], [ -77.02877044677723, -8.060070991516113 ], [ -77.033180236816406, -8.059352874755859 ], [ -77.035552978515625, -8.058445930480957 ], [ -77.039802551269474, -8.057538986206055 ], [ -77.043060302734318, -8.057489395141602 ], [ -77.047157287597599, -8.056670188903809 ], [ -77.052406311035099, -8.056547164916992 ], [ -77.059715270996094, -8.053473472595158 ], [ -77.061363220214787, -8.052993774414062 ], [ -77.066741943359375, -8.05168437957758 ], [ -77.070709228515568, -8.051327705383244 ], [ -77.087120056152287, -8.046669006347656 ], [ -77.091194152832031, -8.045473098754883 ], [ -77.094436645507812, -8.042936325073242 ], [ -77.096290588378793, -8.040829658508244 ], [ -77.096611022949219, -8.039986610412541 ], [ -77.097846984863281, -8.038508415222111 ], [ -77.099685668945312, -8.035281181335392 ], [ -77.101608276367131, -8.032648086547852 ], [ -77.105445861816293, -8.028696060180664 ], [ -77.107315063476562, -8.027438163757267 ], [ -77.111679077148438, -8.025936126708928 ], [ -77.116172790527344, -8.025431632995549 ], [ -77.118614196777344, -8.025583267211914 ], [ -77.121200561523438, -8.026057243347168 ], [ -77.124122619628849, -8.02703666687006 ], [ -77.12481689453125, -8.027848243713379 ], [ -77.129058837890625, -8.030727386474553 ], [ -77.131088256835881, -8.031439781188908 ], [ -77.136222839355412, -8.031538009643498 ], [ -77.143463134765568, -8.030742645263672 ], [ -77.144927978515511, -8.030916213989258 ], [ -77.147583007812443, -8.031624794006348 ], [ -77.149337768554688, -8.031641006469727 ], [ -77.150642395019474, -8.03127384185791 ], [ -77.151908874511719, -8.030508041381836 ], [ -77.159187316894531, -8.025119781494141 ], [ -77.162101745605469, -8.02319431304926 ], [ -77.164749145507756, -8.021879196166935 ], [ -77.170387268066349, -8.019852638244572 ], [ -77.171066284179688, -8.019813537597656 ], [ -77.173942565917969, -8.02052116394043 ], [ -77.177032470703068, -8.020857810974064 ], [ -77.178840637207031, -8.022013664245549 ], [ -77.1800537109375, -8.022171020507812 ], [ -77.186134338378906, -8.019950866699162 ], [ -77.188697814941349, -8.018752098083439 ], [ -77.193412780761719, -8.015862464904728 ], [ -77.1966552734375, -8.014533996582031 ], [ -77.199111938476562, -8.013138771057129 ], [ -77.202522277831974, -8.012036323547306 ], [ -77.205856323242131, -8.011584281921387 ], [ -77.208419799804631, -8.011607170104924 ], [ -77.209945678710881, -8.012159347534123 ], [ -77.211479187011662, -8.013460159301758 ], [ -77.213356018066406, -8.0137681961059 ], [ -77.221755981445312, -8.011320114135685 ], [ -77.225662231445312, -8.011062622070256 ], [ -77.230247497558537, -8.011207580566406 ], [ -77.235450744628906, -8.011931419372559 ], [ -77.238388061523324, -8.012908935546875 ], [ -77.24078369140625, -8.014668464660645 ], [ -77.241950988769531, -8.016630172729435 ], [ -77.243087768554688, -8.017964363098088 ], [ -77.246162414550781, -8.020133018493652 ], [ -77.246665954589787, -8.021098136901855 ], [ -77.246810913085938, -8.022571563720703 ], [ -77.247634887695256, -8.023978233337402 ], [ -77.252563476562443, -8.028161048889103 ], [ -77.25311279296875, -8.028936386108342 ], [ -77.253524780273381, -8.031998634338379 ], [ -77.256607055664062, -8.040755271911621 ], [ -77.256774902343693, -8.042237281799316 ], [ -77.259223937988281, -8.046544075012207 ], [ -77.261222839355469, -8.048766136169434 ], [ -77.262596130371037, -8.049230575561523 ], [ -77.266067504882812, -8.049554824829045 ], [ -77.272224426269474, -8.048797607421875 ], [ -77.275802612304688, -8.047647476196232 ], [ -77.279319763183594, -8.047664642333984 ], [ -77.281295776367131, -8.048069000244084 ], [ -77.282112121582031, -8.048542976379395 ], [ -77.283546447753906, -8.050315856933594 ], [ -77.28485107421875, -8.051013946533146 ], [ -77.28753662109375, -8.054216384887638 ], [ -77.290016174316406, -8.056498527526855 ], [ -77.293159484863281, -8.060376167297363 ], [ -77.295227050781136, -8.06231784820551 ], [ -77.297279357910156, -8.063372611999512 ], [ -77.300636291503849, -8.063298225402832 ], [ -77.302536010742131, -8.06400203704834 ], [ -77.304695129394531, -8.061078071594181 ], [ -77.306015014648438, -8.058433532714844 ], [ -77.307182312011719, -8.057306289672852 ], [ -77.308151245117188, -8.056814193725472 ], [ -77.311515808105412, -8.056919097900391 ], [ -77.314872741699105, -8.056592941284123 ], [ -77.317039489746037, -8.05734920501709 ], [ -77.318618774414062, -8.05642032623291 ], [ -77.321693420410156, -8.058597564697266 ], [ -77.323432922363224, -8.058806419372502 ], [ -77.324203491210881, -8.05854606628418 ], [ -77.325492858886719, -8.057365417480469 ], [ -77.326255798339844, -8.056260108947754 ], [ -77.326972961425724, -8.054510116577092 ], [ -77.32769775390625, -8.053890228271428 ], [ -77.329986572265625, -8.0538330078125 ], [ -77.331977844238281, -8.054192543029728 ], [ -77.333930969238224, -8.055156707763672 ], [ -77.335006713867188, -8.056381225585881 ], [ -77.336318969726506, -8.056697845458984 ], [ -77.338798522949162, -8.055371284484863 ], [ -77.341651916503849, -8.055312156677132 ], [ -77.345535278320312, -8.054746627807617 ], [ -77.346260070800781, -8.054464340209961 ], [ -77.347412109375, -8.053498268127441 ], [ -77.348197937011719, -8.053268432617188 ], [ -77.349739074707031, -8.05378341674799 ], [ -77.350967407226562, -8.055856704711857 ], [ -77.351753234863224, -8.056609153747559 ], [ -77.352928161621094, -8.057280540466252 ], [ -77.355064392089844, -8.057550430297795 ], [ -77.356803894042912, -8.056797981262207 ], [ -77.357872009277287, -8.056719779968205 ], [ -77.359519958496094, -8.05683708190918 ], [ -77.360916137695256, -8.057242393493652 ], [ -77.36279296875, -8.058823585510254 ], [ -77.364524841308537, -8.060710906982422 ], [ -77.367080688476562, -8.062214851379338 ], [ -77.368339538574162, -8.063454627990666 ], [ -77.369956970214844, -8.064170837402287 ], [ -77.371536254882812, -8.064503669738713 ], [ -77.372421264648438, -8.064226150512638 ], [ -77.374229431152344, -8.06298828125 ], [ -77.375877380371037, -8.060123443603516 ], [ -77.3765869140625, -8.059303283691406 ], [ -77.377517700195256, -8.059243202209416 ], [ -77.380226135253906, -8.0577392578125 ], [ -77.382247924804688, -8.057481765746957 ], [ -77.383537292480355, -8.057066917419434 ], [ -77.3857421875, -8.05538272857666 ], [ -77.386093139648381, -8.054423332214299 ], [ -77.386024475097656, -8.052923202514648 ], [ -77.383064270019531, -8.04942512512207 ], [ -77.3818359375, -8.047145843505859 ], [ -77.381057739257699, -8.045007705688477 ], [ -77.381301879882812, -8.042448997497559 ], [ -77.381088256835938, -8.039351463317814 ], [ -77.381454467773438, -8.038469314575138 ], [ -77.381446838378906, -8.037657737731877 ], [ -77.379508972167912, -8.035237312316781 ], [ -77.377540588378906, -8.034355163574105 ], [ -77.375358581542969, -8.032746315002385 ], [ -77.375221252441349, -8.031846046447754 ], [ -77.37591552734375, -8.03053092956543 ], [ -77.377555847167969, -8.028550148010197 ], [ -77.377838134765625, -8.026145935058537 ], [ -77.378257751464787, -8.025782585144043 ], [ -77.380043029785156, -8.026016235351562 ], [ -77.380676269531136, -8.02583122253418 ], [ -77.381484985351562, -8.025094985961914 ], [ -77.382354736328125, -8.023137092590332 ], [ -77.385749816894531, -8.021354675292912 ], [ -77.387016296386719, -8.020391464233398 ], [ -77.388763427734318, -8.018184661865234 ], [ -77.390785217285043, -8.014937400817814 ], [ -77.392120361328011, -8.012264251708984 ], [ -77.393417358398438, -8.01071834564209 ], [ -77.395980834960938, -8.008732795715332 ], [ -77.399314880371094, -8.008379936218205 ], [ -77.401008605957031, -8.004690170288086 ], [ -77.403579711914062, -8.000918388366642 ], [ -77.4049072265625, -7.999717235565129 ], [ -77.405975341796875, -7.997820854187012 ], [ -77.406639099121094, -7.996118068695012 ], [ -77.406852722167969, -7.992737770080566 ], [ -77.406211853027287, -7.9910950660705 ], [ -77.405242919921875, -7.989638805389404 ], [ -77.402618408203125, -7.987458229064828 ], [ -77.402618408203125, -7.984456062316895 ], [ -77.401924133300724, -7.983845233917236 ], [ -77.4010009765625, -7.983743190765324 ], [ -77.400260925292969, -7.982355117797852 ], [ -77.400177001953125, -7.98016881942749 ], [ -77.400558471679688, -7.976027965545654 ], [ -77.401275634765511, -7.974674224853516 ], [ -77.401336669921818, -7.973122119903508 ], [ -77.400741577148438, -7.972527027130127 ], [ -77.398895263671875, -7.971724987030029 ], [ -77.397491455078125, -7.969664096832275 ], [ -77.389907836914006, -7.96568489074707 ], [ -77.387588500976562, -7.963755130767822 ], [ -77.387718200683537, -7.961911201477051 ], [ -77.389541625976506, -7.958620071411133 ], [ -77.390357971191406, -7.955985069274902 ], [ -77.390937805175781, -7.950514793395996 ], [ -77.390823364257812, -7.948038101196289 ], [ -77.390144348144531, -7.946533203125 ], [ -77.386878967285156, -7.944662094116097 ], [ -77.385879516601562, -7.94371223449707 ], [ -77.385406494140625, -7.942728996276855 ], [ -77.385322570800724, -7.941906929016113 ], [ -77.386199951171818, -7.940292835235596 ], [ -77.38653564453125, -7.939150810241642 ], [ -77.386787414550781, -7.93722486495966 ], [ -77.386703491210938, -7.935482025146484 ], [ -77.385581970214844, -7.93189001083374 ], [ -77.384841918945256, -7.930954933166504 ], [ -77.3836669921875, -7.930222034454289 ], [ -77.383338928222599, -7.929769992828312 ], [ -77.383193969726562, -7.926554203033334 ], [ -77.382225036621094, -7.92387580871582 ], [ -77.381484985351562, -7.922948837280273 ], [ -77.37939453125, -7.921280860900879 ], [ -77.378303527832031, -7.920796871185246 ], [ -77.37738037109375, -7.920738220214787 ], [ -77.376434326171875, -7.920401096343994 ], [ -77.375816345214844, -7.919845104217529 ], [ -77.375495910644474, -7.919177055358887 ], [ -77.375480651855469, -7.918628215789738 ], [ -77.3770751953125, -7.91683912277216 ], [ -77.377670288085938, -7.915586948394662 ], [ -77.377655029296875, -7.913481235504094 ], [ -77.377143859863224, -7.911142826080322 ], [ -77.377304077148381, -7.908882141113281 ], [ -77.377761840820312, -7.908318996429443 ], [ -77.378890991210938, -7.907708168029728 ], [ -77.388366699218693, -7.907544136047363 ], [ -77.389091491699219, -7.907386779785099 ], [ -77.390663146972599, -7.906447887420597 ], [ -77.394645690917969, -7.903326034545898 ], [ -77.397415161132812, -7.899448871612549 ], [ -77.39837646484375, -7.898584842681828 ], [ -77.399787902832031, -7.897899150848389 ], [ -77.400886535644474, -7.897901058196965 ], [ -77.4029541015625, -7.898903846740723 ], [ -77.406143188476562, -7.90235519409174 ], [ -77.406898498535099, -7.902864933013916 ], [ -77.408241271972656, -7.902595996856689 ], [ -77.409614562988281, -7.901523113250732 ], [ -77.411720275878906, -7.898174762725773 ], [ -77.413299560546875, -7.894270896911621 ], [ -77.415115356445312, -7.891719818115234 ], [ -77.419052124023438, -7.884891986846867 ], [ -77.423393249511662, -7.879146099090519 ], [ -77.424774169921875, -7.877013206481934 ], [ -77.426475524902344, -7.869891166686955 ], [ -77.426712036132756, -7.867513179779053 ], [ -77.427116394042912, -7.866588115692082 ], [ -77.429176330566406, -7.864118099212646 ], [ -77.430877685546875, -7.860755920410099 ], [ -77.434249877929631, -7.855251789092961 ], [ -77.435012817382756, -7.853474140167236 ], [ -77.437011718749943, -7.851718902587834 ], [ -77.438278198242074, -7.849921226501465 ], [ -77.438438415527287, -7.848746776580754 ], [ -77.438011169433594, -7.847537040710449 ], [ -77.434829711914006, -7.845333099365178 ], [ -77.432441711425724, -7.844154834747314 ], [ -77.4312744140625, -7.842741966247559 ], [ -77.431381225585881, -7.841909885406494 ], [ -77.432472229003906, -7.840664863586369 ], [ -77.433830261230469, -7.837638854980469 ], [ -77.434837341308537, -7.836585998535156 ], [ -77.435745239257812, -7.834781169891357 ], [ -77.435989379882699, -7.832491874694824 ], [ -77.43585205078125, -7.831390857696476 ], [ -77.434585571289062, -7.829997062683105 ], [ -77.434829711914006, -7.829482078552132 ], [ -77.435478210449162, -7.828952789306641 ], [ -77.438423156738281, -7.827679157257023 ], [ -77.440628051757756, -7.825723171234074 ], [ -77.441650390625, -7.825193881988525 ], [ -77.442443847656193, -7.824178218841496 ], [ -77.443328857421818, -7.822670936584473 ], [ -77.443962097167969, -7.820281028747559 ], [ -77.443893432617131, -7.817877769470215 ], [ -77.442840576171818, -7.815048217773438 ], [ -77.443107604980412, -7.813789844512939 ], [ -77.443710327148381, -7.812863826751709 ], [ -77.444763183593636, -7.811835765838566 ], [ -77.450408935546875, -7.807665824890137 ], [ -77.450920104980469, -7.806847095489502 ], [ -77.450904846191406, -7.805618762969971 ], [ -77.451133728027287, -7.804957866668644 ], [ -77.452507019042969, -7.804000854492188 ], [ -77.454551696777287, -7.803528785705566 ], [ -77.459930419921875, -7.802873134613037 ], [ -77.463973999023438, -7.802895069122258 ], [ -77.470298767089787, -7.802380084991455 ], [ -77.471817016601506, -7.802460193634033 ], [ -77.4735107421875, -7.802875041961613 ], [ -77.475791931152344, -7.803602218627873 ], [ -77.477188110351449, -7.804293155670052 ], [ -77.478096008300781, -7.804141998291016 ], [ -77.479698181152344, -7.802513122558537 ], [ -77.48028564453125, -7.800669193267709 ], [ -77.480781555175724, -7.79989576339716 ], [ -77.481002807617074, -7.798350811004639 ], [ -77.481330871582031, -7.797904014587346 ], [ -77.4847412109375, -7.796140193939152 ], [ -77.485786437988281, -7.79580020904541 ], [ -77.487724304199219, -7.79456090927124 ], [ -77.488838195800781, -7.794127941131592 ], [ -77.489463806152287, -7.793582916259766 ], [ -77.491752624511662, -7.790115833282414 ], [ -77.492057800292912, -7.78871488571167 ], [ -77.492645263671875, -7.787689208984375 ], [ -77.492599487304688, -7.787255764007568 ], [ -77.492965698242188, -7.786421775817871 ], [ -77.493873596191349, -7.785575866699219 ], [ -77.494949340820312, -7.785118103027344 ], [ -77.497306823730412, -7.785637855529728 ], [ -77.498481750488281, -7.785089015960637 ], [ -77.501350402832031, -7.781836032867432 ], [ -77.504623413085881, -7.779212951660099 ], [ -77.504737854003849, -7.778066158294678 ], [ -77.504226684570312, -7.774562835693303 ], [ -77.504241943359318, -7.773234844207764 ], [ -77.505165100097656, -7.771267890930176 ], [ -77.506431579589787, -7.769877910613957 ], [ -77.507980346679631, -7.769381046295109 ], [ -77.511215209960881, -7.769252777099609 ], [ -77.517898559570256, -7.768164157867432 ], [ -77.518821716308594, -7.768268108367806 ], [ -77.520011901855469, -7.769381046295109 ], [ -77.520912170410156, -7.769592761993351 ], [ -77.522529602050781, -7.769401073455754 ], [ -77.524246215820312, -7.76855993270874 ], [ -77.524711608886719, -7.767329216003418 ], [ -77.524024963378906, -7.765145778655949 ], [ -77.524017333984375, -7.762434005737305 ], [ -77.524665832519474, -7.76085901260376 ], [ -77.526863098144474, -7.75723123550415 ], [ -77.526954650878849, -7.755350112914982 ], [ -77.526588439941293, -7.753917217254639 ], [ -77.525558471679688, -7.752342224121037 ], [ -77.520622253417969, -7.749829769134521 ], [ -77.518035888671875, -7.746899127960148 ], [ -77.517509460449162, -7.746730804443359 ], [ -77.516815185546875, -7.746826171875 ], [ -77.513343811035156, -7.748887062072754 ], [ -77.512527465820312, -7.748976230621281 ], [ -77.511878967285099, -7.748797893524113 ], [ -77.507972717285099, -7.745269775390568 ], [ -77.504119873046875, -7.743320941925049 ], [ -77.501312255859318, -7.741440773010254 ], [ -77.500114440917969, -7.740228176116943 ], [ -77.497879028320256, -7.739889144897404 ], [ -77.496566772460938, -7.739055156707707 ], [ -77.495597839355469, -7.736692905426025 ], [ -77.495643615722656, -7.732471942901611 ], [ -77.4947509765625, -7.731537818908691 ], [ -77.491645812988281, -7.730398178100586 ], [ -77.489578247070256, -7.728865146636963 ], [ -77.487449645996094, -7.726437091827393 ], [ -77.485816955566406, -7.723455905914307 ], [ -77.483795166015625, -7.721181869506779 ], [ -77.483009338378906, -7.719839096069336 ], [ -77.482933044433594, -7.718276023864689 ], [ -77.483436584472656, -7.715932846069336 ], [ -77.482856750488281, -7.713613033294678 ], [ -77.482757568359375, -7.711761951446533 ], [ -77.483085632324162, -7.710739135742131 ], [ -77.484390258789062, -7.708498001098576 ], [ -77.484710693359318, -7.707249164581242 ], [ -77.484756469726562, -7.6999831199646 ], [ -77.484298706054688, -7.698783874511719 ], [ -77.482398986816349, -7.697132110595646 ], [ -77.479766845703125, -7.696669101715088 ], [ -77.476860046386719, -7.695520877838135 ], [ -77.47357177734375, -7.6927170753479 ], [ -77.470939636230469, -7.691205978393555 ], [ -77.467185974121094, -7.690279006958008 ], [ -77.46636962890625, -7.690273761749211 ], [ -77.465240478515568, -7.690633773803711 ], [ -77.462852478027287, -7.690511226654053 ], [ -77.460189819335881, -7.689071178436279 ], [ -77.459442138671818, -7.688127040863037 ], [ -77.45916748046875, -7.687171936035156 ], [ -77.459297180175781, -7.686438083648682 ], [ -77.459968566894531, -7.685449123382568 ], [ -77.460220336914062, -7.684654235839844 ], [ -77.460105895996037, -7.683559894561768 ], [ -77.459640502929574, -7.682279109954777 ], [ -77.459693908691406, -7.681085109710693 ], [ -77.459915161132756, -7.680325984954834 ], [ -77.466384887695256, -7.674054145812931 ], [ -77.467201232910156, -7.674046993255615 ], [ -77.467735290527287, -7.674209117889347 ], [ -77.470764160156193, -7.676448822021484 ], [ -77.474166870117188, -7.676403045654297 ], [ -77.475151062011662, -7.676633834838867 ], [ -77.476203918456974, -7.677196979522648 ], [ -77.4774169921875, -7.678579807281437 ], [ -77.479011535644531, -7.680956840515137 ], [ -77.480110168456974, -7.681917190551701 ], [ -77.483772277832031, -7.682167053222656 ], [ -77.48638916015625, -7.6840500831604 ], [ -77.487907409667969, -7.684718132019043 ], [ -77.49267578125, -7.685757160186768 ], [ -77.497024536132699, -7.686419963836613 ], [ -77.500373840332031, -7.683309078216496 ], [ -77.502639770507756, -7.682719230651855 ], [ -77.503486633300724, -7.682297229766846 ], [ -77.506690979003906, -7.678843975067139 ], [ -77.508918762206974, -7.677095890045166 ], [ -77.509475708007812, -7.676351070403996 ], [ -77.509666442871094, -7.674750804901123 ], [ -77.508377075195312, -7.672093868255615 ], [ -77.508384704589844, -7.670079231262207 ], [ -77.507942199707031, -7.668951034545842 ], [ -77.507850646972656, -7.668000221252441 ], [ -77.509429931640625, -7.665211200714111 ], [ -77.510124206542969, -7.663035869598389 ], [ -77.511009216308537, -7.661513805389404 ], [ -77.511062622070312, -7.657499790191594 ], [ -77.511238098144531, -7.656982898712101 ], [ -77.513221740722599, -7.656773090362492 ], [ -77.515113830566349, -7.655732154846191 ], [ -77.516593933105469, -7.655633926391602 ], [ -77.518280029296818, -7.654520988464355 ], [ -77.519302368164062, -7.654153823852482 ], [ -77.52154541015625, -7.654619216918888 ], [ -77.523246765136662, -7.65415716171259 ], [ -77.524749755859318, -7.656217098236084 ], [ -77.525764465332031, -7.656575202941895 ], [ -77.526863098144474, -7.657406806945801 ], [ -77.528007507324162, -7.656911849975529 ], [ -77.530296325683537, -7.655353069305306 ], [ -77.530563354492131, -7.653707981109505 ], [ -77.532257080078125, -7.652162075042725 ], [ -77.534011840820256, -7.651473999023438 ], [ -77.53536224365223, -7.650544166564941 ], [ -77.538177490234375, -7.650544166564941 ], [ -77.538795471191293, -7.650307178497258 ], [ -77.539176940917855, -7.649725914001465 ], [ -77.538581848144474, -7.648381233215332 ], [ -77.537490844726562, -7.646997928619328 ], [ -77.537582397460938, -7.645273208618107 ], [ -77.537384033203125, -7.644766807556152 ], [ -77.536186218261662, -7.643870830535889 ], [ -77.535202026367188, -7.64346981048584 ], [ -77.533576965332031, -7.643360137939453 ], [ -77.531967163085938, -7.643577098846436 ], [ -77.530746459960938, -7.64215707778925 ], [ -77.528251647949219, -7.641142845153809 ], [ -77.52728271484375, -7.639845848083496 ], [ -77.526199340820256, -7.637104034423828 ], [ -77.525398254394531, -7.636394977569523 ], [ -77.524032592773438, -7.635826110839844 ], [ -77.522926330566406, -7.6335191726684 ], [ -77.522750854492131, -7.631532192230168 ], [ -77.523971557617188, -7.62841606140131 ], [ -77.524200439453068, -7.625613212585449 ], [ -77.5262451171875, -7.623359203338623 ], [ -77.528480529785099, -7.62161111831665 ], [ -77.529029846191406, -7.620859146118107 ], [ -77.529167175292969, -7.619799137115479 ], [ -77.528373718261662, -7.617961883544865 ], [ -77.528106689453068, -7.614889144897461 ], [ -77.526107788085881, -7.615044116973877 ], [ -77.524093627929631, -7.613945960998535 ], [ -77.522506713867188, -7.613602161407414 ], [ -77.52130126953125, -7.612534999847412 ], [ -77.520027160644531, -7.612100124359074 ], [ -77.519355773925781, -7.612147808074894 ], [ -77.518096923828068, -7.612932205200195 ], [ -77.516746520996037, -7.61303186416626 ], [ -77.515312194824162, -7.612660884857121 ], [ -77.513023376464787, -7.611506938934326 ], [ -77.512115478515625, -7.611286163330021 ], [ -77.509986877441349, -7.61156177520752 ], [ -77.508026123046875, -7.61299991607666 ], [ -77.506706237792969, -7.614535808563119 ], [ -77.505516052246094, -7.614677906036377 ], [ -77.504592895507812, -7.61543416976923 ], [ -77.504058837890568, -7.61533594131464 ], [ -77.503547668457031, -7.614887237548828 ], [ -77.502624511718693, -7.613113880157414 ], [ -77.502006530761719, -7.612674236297607 ], [ -77.501510620117188, -7.612604141235352 ], [ -77.500816345214787, -7.612761020660344 ], [ -77.500198364257812, -7.613361835479736 ], [ -77.499305725097599, -7.613693237304688 ], [ -77.498580932617188, -7.614393234252873 ], [ -77.497978210449105, -7.614621162414551 ], [ -77.495872497558537, -7.614425182342472 ], [ -77.494323730468693, -7.613449096679688 ], [ -77.493171691894531, -7.612139225006104 ], [ -77.4921875, -7.610290050506592 ], [ -77.489707946777344, -7.609761238098145 ], [ -77.487922668457031, -7.607864856719914 ], [ -77.487052917480469, -7.606687068939209 ], [ -77.486213684081974, -7.604649066925049 ], [ -77.486526489257756, -7.602296829223633 ], [ -77.48809814453125, -7.598898887634277 ], [ -77.492767333984375, -7.591416835784912 ], [ -77.493408203125, -7.589695930480957 ], [ -77.494651794433594, -7.587440013885441 ], [ -77.495948791503849, -7.583889007568359 ], [ -77.496696472167969, -7.582880973815918 ], [ -77.497550964355469, -7.582586765289307 ], [ -77.499244689941406, -7.582839965820312 ], [ -77.499885559081918, -7.583459854125977 ], [ -77.500823974609318, -7.584999084472656 ], [ -77.501594543456974, -7.585599899291935 ], [ -77.504356384277287, -7.586732864379826 ], [ -77.505317687988224, -7.58676290512085 ], [ -77.506141662597656, -7.586143016815186 ], [ -77.507057189941406, -7.584773063659668 ], [ -77.507499694824162, -7.582302093505803 ], [ -77.508712768554688, -7.58201789855957 ], [ -77.509582519531193, -7.581199169158936 ], [ -77.510635375976506, -7.581472873687744 ], [ -77.512008666992188, -7.582349777221623 ], [ -77.513740539550781, -7.582285881042424 ], [ -77.515617370605412, -7.583640098571777 ], [ -77.516548156738224, -7.583354949951115 ], [ -77.517631530761719, -7.582343101501465 ], [ -77.519203186035156, -7.580304145812931 ], [ -77.519676208496094, -7.578753948211613 ], [ -77.519744873046875, -7.577388763427734 ], [ -77.520050048828125, -7.576981067657414 ], [ -77.520713806152344, -7.576704978942871 ], [ -77.522171020507756, -7.576887130737305 ], [ -77.523605346679631, -7.577359199523869 ], [ -77.525558471679688, -7.57878303527832 ], [ -77.531341552734318, -7.579156875610352 ], [ -77.532615661621094, -7.580386161804199 ], [ -77.534484863281193, -7.580638885498047 ], [ -77.536796569824219, -7.582252025604248 ], [ -77.537490844726562, -7.581806182861271 ], [ -77.538925170898438, -7.578779220581055 ], [ -77.540519714355469, -7.577538967132568 ], [ -77.540611267089844, -7.57498216629017 ], [ -77.540435791015625, -7.57432317733759 ], [ -77.539146423339787, -7.573363780975342 ], [ -77.53841400146473, -7.571938991546574 ], [ -77.5374755859375, -7.571763992309513 ], [ -77.536941528320312, -7.571306228637695 ], [ -77.540229797363281, -7.568150997161865 ], [ -77.540534973144531, -7.565746784210205 ], [ -77.540893554687386, -7.565021991729736 ], [ -77.540916442871094, -7.563674926757812 ], [ -77.539848327636719, -7.562469005584717 ], [ -77.5379638671875, -7.561288833618164 ], [ -77.537445068359318, -7.560739994049072 ], [ -77.537315368652344, -7.558472156524601 ], [ -77.535903930664006, -7.556177139282227 ], [ -77.535247802734318, -7.555699825286865 ], [ -77.533546447753849, -7.555249214172306 ], [ -77.532829284667969, -7.554675102233887 ], [ -77.532875061035099, -7.554251194000244 ], [ -77.534065246582031, -7.552454948425293 ], [ -77.534271240234375, -7.551686763763428 ], [ -77.533882141113281, -7.54593896865839 ], [ -77.534629821777344, -7.544634819030762 ], [ -77.535919189453068, -7.543470859527588 ], [ -77.534156799316406, -7.542757034301701 ], [ -77.533500671386719, -7.542085170745793 ], [ -77.531959533691406, -7.541268825531006 ], [ -77.531135559081974, -7.540200233459473 ], [ -77.530609130859375, -7.538818836212101 ], [ -77.529884338378906, -7.538434028625431 ], [ -77.529182434082031, -7.537599086761418 ], [ -77.529388427734375, -7.535881042480469 ], [ -77.530220031738281, -7.534457206726074 ], [ -77.530441284179688, -7.532448768615666 ], [ -77.530204772949162, -7.530445098876953 ], [ -77.529762268066406, -7.529172897338867 ], [ -77.530113220214787, -7.526243209838867 ], [ -77.528846740722599, -7.524316787719727 ], [ -77.528648376464844, -7.523558139801025 ], [ -77.528785705566406, -7.521796226501408 ], [ -77.529441833496037, -7.518628120422306 ], [ -77.529342651367131, -7.51687479019165 ], [ -77.5284423828125, -7.514920234680176 ], [ -77.527130126953068, -7.513390064239502 ], [ -77.524032592773438, -7.511474132537842 ], [ -77.522987365722656, -7.511190891265869 ], [ -77.522048950195312, -7.511313915252629 ], [ -77.521591186523438, -7.510974884033146 ], [ -77.522018432617188, -7.509897232055664 ], [ -77.522644042968693, -7.506738185882568 ], [ -77.523223876953068, -7.506165981292725 ], [ -77.525093078613281, -7.505063056945744 ], [ -77.528587341308537, -7.504816055297795 ], [ -77.529457092285156, -7.505163192749023 ], [ -77.532241821289062, -7.507378101348877 ], [ -77.533966064453125, -7.508316993713322 ], [ -77.535194396972656, -7.508400917053166 ], [ -77.537933349609318, -7.507996082305908 ], [ -77.539131164550781, -7.507449150085449 ], [ -77.53961181640625, -7.507001876830998 ], [ -77.540809631347656, -7.505169868469181 ], [ -77.541267395019474, -7.503439903259277 ], [ -77.542335510253906, -7.50164604187006 ], [ -77.542701721191349, -7.500586032867432 ], [ -77.542480468749943, -7.497894763946476 ], [ -77.542709350585938, -7.497151851653996 ], [ -77.543815612792912, -7.496352195739689 ], [ -77.547233581542969, -7.49657487869257 ], [ -77.548377990722656, -7.496442794799805 ], [ -77.549247741699219, -7.495804786682072 ], [ -77.550178527832031, -7.494441986083984 ], [ -77.550712585449162, -7.492760181426945 ], [ -77.551422119140625, -7.488101005554199 ], [ -77.553283691406193, -7.48533391952509 ], [ -77.553558349609318, -7.482376098632812 ], [ -77.554489135742188, -7.47886419296259 ], [ -77.555305480957031, -7.477478027343693 ], [ -77.557281494140568, -7.475451946258545 ], [ -77.557418823242188, -7.473182201385441 ], [ -77.557701110839844, -7.472421169281006 ], [ -77.558998107910099, -7.470878124237004 ], [ -77.560424804687443, -7.46983814239502 ], [ -77.560661315917969, -7.469394207000732 ], [ -77.560768127441406, -7.468155860900822 ], [ -77.5601806640625, -7.466659069061279 ], [ -77.560157775878793, -7.464391231536865 ], [ -77.561462402343693, -7.463037967681828 ], [ -77.567298889160099, -7.458042144775334 ], [ -77.569168090820312, -7.456756114959717 ], [ -77.571533203125, -7.455758094787541 ], [ -77.576889038085938, -7.451903820037785 ], [ -77.57818603515625, -7.451552867889291 ], [ -77.58113861083973, -7.451248168945256 ], [ -77.584472656249943, -7.449781894683781 ], [ -77.586067199706974, -7.448344230651855 ], [ -77.586578369140625, -7.447249889373722 ], [ -77.5872802734375, -7.446432113647404 ], [ -77.588394165039062, -7.445674896240234 ], [ -77.589935302734375, -7.445193767547607 ], [ -77.591827392578125, -7.44312477111805 ], [ -77.592910766601562, -7.443271160125732 ], [ -77.595123291015568, -7.444316864013558 ], [ -77.599037170410099, -7.447609901428223 ], [ -77.600364685058594, -7.445949077606201 ], [ -77.601387023925781, -7.443455219268742 ], [ -77.604423522949219, -7.44022083282465 ], [ -77.605155944824162, -7.43848180770874 ], [ -77.605789184570312, -7.437630176544133 ], [ -77.608139038085938, -7.435601234436035 ], [ -77.609085083007812, -7.435088157653809 ], [ -77.610397338867131, -7.434773921966553 ], [ -77.610816955566406, -7.434428215026855 ], [ -77.611778259277344, -7.429552078247013 ], [ -77.613983154296875, -7.426140785217285 ], [ -77.614433288574219, -7.425063133239746 ], [ -77.614196777343693, -7.422904014587346 ], [ -77.613258361816349, -7.42097616195673 ], [ -77.613426208496094, -7.4200439453125 ], [ -77.613861083984375, -7.41936206817627 ], [ -77.61529541015625, -7.418145179748535 ], [ -77.617271423339787, -7.417293071746769 ], [ -77.61883544921875, -7.416839122772103 ], [ -77.619232177734375, -7.416858196258545 ], [ -77.619659423828068, -7.417197227477971 ], [ -77.621269226074162, -7.417080879211426 ], [ -77.623382568359318, -7.416207790374699 ], [ -77.625213623046875, -7.415065765380859 ], [ -77.628921508789062, -7.414387226104736 ], [ -77.630226135253849, -7.413691997527962 ], [ -77.629783630371094, -7.412574768066406 ], [ -77.628417968749943, -7.410737991333008 ], [ -77.627670288085881, -7.40930700302124 ], [ -77.626945495605469, -7.406310081481877 ], [ -77.625869750976562, -7.404455184936523 ], [ -77.625320434570312, -7.400889873504582 ], [ -77.622444152832031, -7.397672176361084 ], [ -77.622001647949219, -7.396273136138916 ], [ -77.622383117675781, -7.39527702331543 ], [ -77.623489379882812, -7.393940925598145 ], [ -77.624557495117188, -7.391477108001709 ], [ -77.625129699707031, -7.390913963317871 ], [ -77.627212524414062, -7.384125232696476 ], [ -77.62969970703125, -7.380966186523381 ], [ -77.631706237792969, -7.377322196960392 ], [ -77.6322021484375, -7.374687194824162 ], [ -77.632293701171875, -7.370395183563119 ], [ -77.633712768554688, -7.367819786071777 ], [ -77.634056091308537, -7.364221096038762 ], [ -77.634727478027287, -7.362664222717285 ], [ -77.636039733886662, -7.360641002654972 ], [ -77.636543273925724, -7.358703136444092 ], [ -77.636177062988281, -7.355507850646973 ], [ -77.635688781738168, -7.353693962097054 ], [ -77.635078430175781, -7.352359771728459 ], [ -77.635063171386719, -7.350625991821289 ], [ -77.635604858398438, -7.349691867828369 ], [ -77.638671875, -7.346485137939453 ], [ -77.639251708984375, -7.344374179840088 ], [ -77.639129638671875, -7.343074798583984 ], [ -77.638336181640568, -7.341968059539738 ], [ -77.637489318847599, -7.341268062591553 ], [ -77.635894775390625, -7.340545177459603 ], [ -77.634986877441349, -7.339538097381592 ], [ -77.634597778320312, -7.337985992431641 ], [ -77.634925842285043, -7.336420059204102 ], [ -77.632904052734318, -7.332492828369141 ], [ -77.632507324218693, -7.329685211181527 ], [ -77.6329345703125, -7.328751087188721 ], [ -77.634620666503849, -7.326447010040226 ], [ -77.63458251953125, -7.325623989105225 ], [ -77.633766174316349, -7.324752807617188 ], [ -77.632728576660099, -7.324108123779297 ], [ -77.63116455078125, -7.323675155639648 ], [ -77.629287719726506, -7.323450088500977 ], [ -77.628898620605412, -7.323101043701115 ], [ -77.628631591796761, -7.322054862976074 ], [ -77.628875732421875, -7.318827152252197 ], [ -77.629463195800724, -7.316644191741887 ], [ -77.63287353515625, -7.309659004211369 ], [ -77.632972717285156, -7.308445930480957 ], [ -77.633735656738281, -7.306878089904785 ], [ -77.634407043457031, -7.304697036743164 ], [ -77.634605407714787, -7.302719116210938 ], [ -77.636123657226562, -7.298134803771916 ], [ -77.63531494140625, -7.29558277130127 ], [ -77.63531494140625, -7.29315280914301 ], [ -77.6357421875, -7.292057037353516 ], [ -77.637687683105412, -7.290599822998047 ], [ -77.637527465820312, -7.287131786346379 ], [ -77.638786315917969, -7.283020019531193 ], [ -77.641685485839787, -7.278032779693547 ], [ -77.646286010742188, -7.272052764892521 ], [ -77.647132873535043, -7.270410060882568 ], [ -77.646873474121094, -7.26920223236084 ], [ -77.644332885742131, -7.266334056854191 ], [ -77.642791748046875, -7.263045787811279 ], [ -77.640518188476506, -7.259878158569336 ], [ -77.638908386230412, -7.256912231445256 ], [ -77.636749267578125, -7.254936218261719 ], [ -77.636695861816406, -7.253853797912598 ], [ -77.637069702148438, -7.253455162048283 ], [ -77.637954711914006, -7.253133773803654 ], [ -77.640892028808594, -7.252627849578857 ], [ -77.642494201660156, -7.252761840820312 ], [ -77.644615173339844, -7.253942966461182 ], [ -77.645027160644474, -7.253921985626221 ], [ -77.645591735839787, -7.253520965576172 ], [ -77.645912170410156, -7.251705169677734 ], [ -77.645614624023438, -7.248777866363412 ], [ -77.647308349609318, -7.243535995483398 ], [ -77.647415161132756, -7.241520881652832 ], [ -77.647224426269474, -7.241313934326172 ], [ -77.646286010742188, -7.241254806518555 ], [ -77.644012451171875, -7.241603851318359 ], [ -77.638687133789062, -7.244471073150578 ], [ -77.637763977050724, -7.244702816009521 ], [ -77.637237548828125, -7.244588851928711 ], [ -77.636878967285156, -7.244193077087346 ], [ -77.636848449707031, -7.2432541847229 ], [ -77.637535095214844, -7.241233825683594 ], [ -77.636970520019531, -7.238742828369141 ], [ -77.635353088378906, -7.23530912399292 ], [ -77.633445739746094, -7.233008861541748 ], [ -77.631935119628849, -7.232229232788086 ], [ -77.62811279296875, -7.231276988983154 ], [ -77.625167846679631, -7.228735923767033 ], [ -77.623390197753906, -7.227770805358887 ], [ -77.620895385742131, -7.227188110351562 ], [ -77.61749267578125, -7.226981163024902 ], [ -77.616127014160099, -7.226538181304875 ], [ -77.611763000488281, -7.223570823669434 ], [ -77.609947204589844, -7.222695827484074 ], [ -77.6072998046875, -7.220614910125732 ], [ -77.605628967285099, -7.219730854034367 ], [ -77.605247497558537, -7.219200134277344 ], [ -77.604995727539062, -7.218008041381836 ], [ -77.606681823730412, -7.215096950531006 ], [ -77.607635498046818, -7.211322784423771 ], [ -77.607688903808594, -7.209027767181396 ], [ -77.607154846191349, -7.206284046173039 ], [ -77.607986450195312, -7.205772876739502 ], [ -77.609069824218693, -7.205585956573486 ], [ -77.609695434570312, -7.205746173858643 ], [ -77.610687255859318, -7.20668888092041 ], [ -77.611167907714787, -7.206867218017578 ], [ -77.612274169921875, -7.206914901733398 ], [ -77.613044738769531, -7.206414222717285 ], [ -77.613784790039062, -7.205287933349609 ], [ -77.614105224609318, -7.203072071075439 ], [ -77.616470336914062, -7.199642181396484 ], [ -77.617500305175781, -7.19700813293457 ], [ -77.621795654296875, -7.191164016723519 ], [ -77.621322631835938, -7.190027236938477 ], [ -77.619293212890625, -7.187345981597844 ], [ -77.617111206054688, -7.181845188140869 ], [ -77.61541748046875, -7.179596900939885 ], [ -77.615257263183537, -7.178253173828125 ], [ -77.615623474121094, -7.176984786987305 ], [ -77.617935180664006, -7.176303863525334 ], [ -77.621429443359375, -7.172388076782227 ], [ -77.624221801757756, -7.17076301574707 ], [ -77.627395629882812, -7.16995906829834 ], [ -77.629379272460881, -7.169713020324707 ], [ -77.630149841308537, -7.169817924499455 ], [ -77.632240295410099, -7.170806884765625 ], [ -77.633056640625, -7.170668125152531 ], [ -77.633659362792912, -7.170166015625 ], [ -77.637138366699219, -7.164699077606201 ], [ -77.638389587402344, -7.161862850189152 ], [ -77.638992309570256, -7.159679889678955 ], [ -77.639335632324219, -7.154843807220459 ], [ -77.639930725097656, -7.153213977813721 ], [ -77.641578674316349, -7.150413036346436 ], [ -77.643203735351506, -7.148587226867619 ], [ -77.644126892089844, -7.148093223571777 ], [ -77.645462036132812, -7.147750854492188 ], [ -77.650306701660156, -7.147489070892334 ], [ -77.652137756347656, -7.147017002105656 ], [ -77.659454345703125, -7.141770839691162 ], [ -77.667747497558594, -7.136752128601074 ], [ -77.671089172363281, -7.135323047637883 ], [ -77.676834106445312, -7.133889198303166 ], [ -77.682716369628906, -7.131542205810547 ], [ -77.683540344238224, -7.130850791931152 ], [ -77.684593200683537, -7.12910079956049 ], [ -77.685363769531193, -7.126243114471379 ], [ -77.686363220214844, -7.123740196227971 ], [ -77.687507629394531, -7.121890068054199 ], [ -77.688690185546818, -7.120628833770695 ], [ -77.690155029296875, -7.120330810546818 ], [ -77.694725036621094, -7.12040376663208 ], [ -77.696617126464787, -7.120093822479248 ], [ -77.697998046875, -7.119589805603027 ], [ -77.702751159667969, -7.116551876068058 ], [ -77.713180541992188, -7.108352184295654 ], [ -77.713699340820199, -7.107605934143066 ], [ -77.713867187499943, -7.106449127197266 ], [ -77.713966369628849, -7.100629806518498 ], [ -77.714454650878849, -7.097716808319035 ], [ -77.716102600097656, -7.092304229736271 ], [ -77.718482971191406, -7.088241100311279 ], [ -77.718391418457031, -7.086932182311955 ], [ -77.7176513671875, -7.085815906524601 ], [ -77.714218139648438, -7.082202911376896 ], [ -77.709465026855469, -7.078227996826172 ], [ -77.708404541015625, -7.07701301574707 ], [ -77.7071533203125, -7.074456214904785 ], [ -77.706588745117188, -7.07266902923584 ], [ -77.706565856933594, -7.07119703292841 ], [ -77.70684814453125, -7.069585800170898 ], [ -77.707351684570312, -7.068473815917855 ], [ -77.708511352539062, -7.067308902740479 ], [ -77.70965576171875, -7.066606998443547 ], [ -77.711463928222656, -7.066254138946533 ], [ -77.716339111328068, -7.065870761871338 ], [ -77.718193054199219, -7.065083980560303 ], [ -77.722946166992131, -7.060519218444767 ], [ -77.725189208984375, -7.058792114257812 ], [ -77.729103088378906, -7.051430225372314 ], [ -77.734832763671875, -7.044293880462646 ], [ -77.739181518554688, -7.036598205566349 ], [ -77.740348815917969, -7.034023761749211 ], [ -77.741142272949162, -7.031599044799748 ], [ -77.741455078125, -7.02947282791132 ], [ -77.740844726562443, -7.027569770812931 ], [ -77.741241455078068, -7.026150226593018 ], [ -77.741966247558594, -7.025331974029427 ], [ -77.743087768554688, -7.024882793426514 ], [ -77.743713378906193, -7.024372100830078 ], [ -77.744674682617131, -7.022768020629883 ], [ -77.746673583984318, -7.020605087280273 ], [ -77.746414184570312, -7.01939678192133 ], [ -77.744651794433594, -7.014880180358887 ], [ -77.744255065917969, -7.012994766235295 ], [ -77.744712829589844, -7.011806964874211 ], [ -77.746345520019531, -7.009784221649113 ], [ -77.747085571289062, -7.008504867553654 ], [ -77.748085021972656, -7.004731178283691 ], [ -77.748062133789062, -7.003645896911621 ], [ -77.747322082519531, -7.000264167785645 ], [ -77.747253417968693, -6.997840881347656 ], [ -77.745323181152344, -6.99396896362299 ], [ -77.744667053222599, -6.991947174072266 ], [ -77.744552612304688, -6.987999916076603 ], [ -77.744758605956974, -6.987103939056396 ], [ -77.745544433593693, -6.985752105712891 ], [ -77.748260498046875, -6.983026027679387 ], [ -77.749908447265568, -6.981054782867375 ], [ -77.751129150390625, -6.979014873504639 ], [ -77.752845764160156, -6.977351188659611 ], [ -77.75347900390625, -6.976452827453556 ], [ -77.753486633300781, -6.97498083114624 ], [ -77.752250671386719, -6.972629070281982 ], [ -77.752868652343693, -6.971008777618351 ], [ -77.752769470214787, -6.969626903533879 ], [ -77.751533508300724, -6.966769218444767 ], [ -77.750267028808594, -6.965449810028019 ], [ -77.749870300292969, -6.965514183044377 ], [ -77.748542785644531, -6.9648180007934 ], [ -77.747383117675781, -6.963821887969971 ], [ -77.746948242187443, -6.962594032287598 ], [ -77.746871948242131, -6.959832191467285 ], [ -77.746635437011719, -6.958936214447021 ], [ -77.744354248046875, -6.955824851989746 ], [ -77.743057250976506, -6.952010154724121 ], [ -77.740821838378906, -6.950180053710938 ], [ -77.739768981933594, -6.948775768279916 ], [ -77.739555358886719, -6.94724178314209 ], [ -77.739822387695256, -6.945414066314584 ], [ -77.739875793457031, -6.94218921661377 ], [ -77.739692687988281, -6.941103935241642 ], [ -77.739089965820312, -6.939554214477482 ], [ -77.737449645996094, -6.937692165374756 ], [ -77.73516845703125, -6.935989856719914 ], [ -77.733337402343693, -6.934264183044377 ], [ -77.731834411621094, -6.93249320983881 ], [ -77.731376647949219, -6.931611061096135 ], [ -77.73138427734375, -6.929215908050537 ], [ -77.733757019042969, -6.92667293548584 ], [ -77.733688354492188, -6.925327777862492 ], [ -77.732978820800781, -6.924716949462891 ], [ -77.730072021484318, -6.923873901367131 ], [ -77.728256225585881, -6.922992229461613 ], [ -77.725837707519531, -6.920609951019287 ], [ -77.723678588867131, -6.919221878051758 ], [ -77.722648620605412, -6.917693138122559 ], [ -77.722328186035156, -6.915226936340275 ], [ -77.722068786621037, -6.914540767669678 ], [ -77.721534729003906, -6.914030075073242 ], [ -77.718894958496094, -6.913194179534912 ], [ -77.717330932617188, -6.913311958312931 ], [ -77.716209411621094, -6.912957191467285 ], [ -77.713424682617188, -6.910155773162842 ], [ -77.711761474609318, -6.905861854553166 ], [ -77.711761474609318, -6.904669761657658 ], [ -77.712051391601506, -6.904189109802246 ], [ -77.715187072753906, -6.900845050811768 ], [ -77.7166748046875, -6.897990226745605 ], [ -77.718849182128793, -6.895267963409367 ], [ -77.719581604003849, -6.893194198608398 ], [ -77.720252990722599, -6.88975715637207 ], [ -77.722000122070312, -6.885600090026799 ], [ -77.722511291503906, -6.881758213043213 ], [ -77.723396301269474, -6.879446983337402 ], [ -77.725013732910099, -6.877449989318791 ], [ -77.729736328125, -6.873104095458984 ], [ -77.730247497558594, -6.87223291397089 ], [ -77.730384826660099, -6.870499134063664 ], [ -77.729461669921875, -6.866754055023193 ], [ -77.729621887206974, -6.865371227264404 ], [ -77.730049133300781, -6.864155769348145 ], [ -77.730667114257756, -6.863477230072021 ], [ -77.731109619140625, -6.86332893371582 ], [ -77.732376098632756, -6.864378929138184 ], [ -77.733108520507812, -6.864539146423283 ], [ -77.733787536621037, -6.864082813262883 ], [ -77.73431396484375, -6.863210201263428 ], [ -77.734329223632812, -6.860464096069336 ], [ -77.733879089355469, -6.85963582992548 ], [ -77.732559204101506, -6.859325885772648 ], [ -77.730812072753906, -6.85988712310791 ], [ -77.730361938476506, -6.85942888259882 ], [ -77.730491638183594, -6.857786178588867 ], [ -77.731880187988224, -6.853104114532471 ], [ -77.732559204101506, -6.852197170257512 ], [ -77.733207702636719, -6.852057933807316 ], [ -77.733856201171875, -6.853041172027588 ], [ -77.734085083007756, -6.854112148284855 ], [ -77.734588623046875, -6.854299068450871 ], [ -77.735313415527287, -6.853140830993652 ], [ -77.735519409179631, -6.852136135101318 ], [ -77.736946105956974, -6.850971221923828 ], [ -77.737464904785156, -6.850234985351562 ], [ -77.738105773925724, -6.848406791686955 ], [ -77.738563537597599, -6.843913078308105 ], [ -77.739044189453068, -6.841949939727783 ], [ -77.739837646484375, -6.840500831604004 ], [ -77.741821289062443, -6.838337898254395 ], [ -77.742340087890625, -6.83725976943964 ], [ -77.742347717285156, -6.83643722534174 ], [ -77.741661071777344, -6.835040092468262 ], [ -77.741836547851562, -6.833668231964054 ], [ -77.743309020996094, -6.831217765808105 ], [ -77.743721008300724, -6.829716205596924 ], [ -77.745063781738224, -6.827746868133488 ], [ -77.746353149414062, -6.825310230255127 ], [ -77.74969482421875, -6.821685791015625 ], [ -77.750785827636662, -6.818869113922119 ], [ -77.751960754394531, -6.817117214202824 ], [ -77.752944946289062, -6.81414890289301 ], [ -77.755279541015511, -6.810855865478459 ], [ -77.756431579589844, -6.808355808258 ], [ -77.758903503417855, -6.804483890533447 ], [ -77.759925842285099, -6.801639080047607 ], [ -77.760414123535099, -6.798637866973877 ], [ -77.760406494140568, -6.797164916992188 ], [ -77.760093688964844, -6.795619964599553 ], [ -77.758773803710881, -6.792673110961914 ], [ -77.758003234863281, -6.791537761688232 ], [ -77.755874633789062, -6.7895188331604 ], [ -77.754570007324219, -6.789064884185791 ], [ -77.752471923828125, -6.789284229278564 ], [ -77.749847412109375, -6.787782192230225 ], [ -77.748481750488224, -6.787618160247746 ], [ -77.746238708496094, -6.788633823394775 ], [ -77.743156433105412, -6.790475845336914 ], [ -77.740486145019474, -6.792406082153263 ], [ -77.737709045410099, -6.794789791107121 ], [ -77.736228942871094, -6.795285224914551 ], [ -77.735488891601562, -6.795263767242432 ], [ -77.733993530273381, -6.794548988342285 ], [ -77.732269287109318, -6.793042182922306 ], [ -77.731330871581974, -6.792675018310547 ], [ -77.729507446289006, -6.791285037994328 ], [ -77.728813171386719, -6.790214061737061 ], [ -77.726264953613224, -6.787580966949349 ], [ -77.725654602050781, -6.786547183990479 ], [ -77.724647521972599, -6.783631801605168 ], [ -77.724441528320256, -6.781863212585392 ], [ -77.724739074706974, -6.780751228332463 ], [ -77.728057861328125, -6.778590202331543 ], [ -77.729316711425724, -6.777255058288574 ], [ -77.730003356933537, -6.776066780090275 ], [ -77.731391906738281, -6.772364139556885 ], [ -77.732902526855469, -6.770302772521973 ], [ -77.733291625976562, -6.768792152404785 ], [ -77.733222961425724, -6.764934062957764 ], [ -77.734657287597599, -6.761328220367375 ], [ -77.735832214355469, -6.759823799133301 ], [ -77.737678527832031, -6.758022785186768 ], [ -77.742118835449105, -6.754952907562256 ], [ -77.743362426757812, -6.75326681137085 ], [ -77.744140625, -6.751101970672607 ], [ -77.744766235351506, -6.747645854949837 ], [ -77.744743347167969, -6.743419170379582 ], [ -77.744400024414006, -6.742262840270939 ], [ -77.742622375488281, -6.738442897796517 ], [ -77.741920471191349, -6.735851764678955 ], [ -77.741767883300781, -6.733477115631047 ], [ -77.741905212402287, -6.7272047996521 ], [ -77.740020751953011, -6.724271774291992 ], [ -77.739265441894531, -6.721710205078068 ], [ -77.737594604492188, -6.719620227813664 ], [ -77.736038208007812, -6.717129230499211 ], [ -77.735130310058537, -6.715118885040226 ], [ -77.734588623046875, -6.712972164153996 ], [ -77.733222961425724, -6.711115837097168 ], [ -77.732582092285043, -6.709104061126709 ], [ -77.732818603515625, -6.708036899566594 ], [ -77.734039306640625, -6.706089019775391 ], [ -77.735649108886719, -6.704452037811279 ], [ -77.738952636718693, -6.701786041259652 ], [ -77.73956298828125, -6.700364112853947 ], [ -77.739654541015625, -6.697516918182373 ], [ -77.739326477050724, -6.695621013641357 ], [ -77.738113403320199, -6.694353103637695 ], [ -77.736328125, -6.693965911865121 ], [ -77.733467102050781, -6.692501068115178 ], [ -77.732505798339844, -6.690944194793701 ], [ -77.732559204101506, -6.690209865570068 ], [ -77.733070373535156, -6.688827037811279 ], [ -77.736091613769474, -6.684779167175236 ], [ -77.737464904785156, -6.682504177093506 ], [ -77.737815856933537, -6.680973052978459 ], [ -77.737602233886662, -6.677677154541016 ], [ -77.736991882324219, -6.676651000976562 ], [ -77.736137390136719, -6.675806045532227 ], [ -77.734901428222656, -6.673760890960637 ], [ -77.731346130371094, -6.670590877532959 ], [ -77.728645324706974, -6.668863773345947 ], [ -77.724945068359318, -6.667817115783691 ], [ -77.7227783203125, -6.666817188262939 ], [ -77.720924377441349, -6.665164947509652 ], [ -77.719436645507812, -6.662841796874943 ], [ -77.718856811523438, -6.661290168762207 ], [ -77.718521118164062, -6.659566879272404 ], [ -77.718032836914062, -6.654437065124455 ], [ -77.718017578125, -6.651121139526367 ], [ -77.717636108398438, -6.648843765258789 ], [ -77.715576171874943, -6.643633842468262 ], [ -77.714996337890625, -6.637682914733887 ], [ -77.714401245117188, -6.636645793914795 ], [ -77.713035583496094, -6.635406017303467 ], [ -77.711105346679631, -6.635103225708008 ], [ -77.707626342773438, -6.635301113128662 ], [ -77.704292297363281, -6.636999130249023 ], [ -77.701873779296761, -6.637529850006104 ], [ -77.700523376464787, -6.638094902038574 ], [ -77.698501586914006, -6.639651775360107 ], [ -77.69830322265625, -6.640069007873535 ], [ -77.698524475097599, -6.641487121581974 ], [ -77.698387145996094, -6.641920089721623 ], [ -77.693817138671875, -6.646562099456787 ], [ -77.691154479980469, -6.648322105407658 ], [ -77.687896728515625, -6.649549961090031 ], [ -77.685913085937443, -6.649949073791504 ], [ -77.683631896972599, -6.650078773498535 ], [ -77.681678771972656, -6.649600028991699 ], [ -77.678306579589787, -6.648138999938908 ], [ -77.674507141113281, -6.647581100463867 ], [ -77.66888427734375, -6.648278236389103 ], [ -77.666603088378906, -6.648158073425236 ], [ -77.664726257324219, -6.647398948669377 ], [ -77.662948608398381, -6.646261215209961 ], [ -77.660804748535156, -6.645243167877197 ], [ -77.659378051757812, -6.643685817718506 ], [ -77.657417297363224, -6.640813827514648 ], [ -77.655769348144531, -6.639348983764592 ], [ -77.653923034667969, -6.6383118629455 ], [ -77.653091430664062, -6.637585163116398 ], [ -77.650154113769474, -6.632386207580566 ], [ -77.646095275878906, -6.627880096435547 ], [ -77.638427734374943, -6.621288776397648 ], [ -77.635696411132812, -6.619108200073242 ], [ -77.634086608886719, -6.618264198303166 ], [ -77.627548217773381, -6.612644195556641 ], [ -77.625167846679631, -6.613533020019531 ], [ -77.623970031738281, -6.612887859344426 ], [ -77.621871948242188, -6.612799167633057 ], [ -77.619338989257812, -6.614611148834229 ], [ -77.618125915527287, -6.615042209625187 ], [ -77.616516113281193, -6.614699840545597 ], [ -77.613723754882756, -6.613311767578125 ], [ -77.611885070800781, -6.613195896148682 ], [ -77.609794616699219, -6.614085197448674 ], [ -77.607192993164062, -6.614632129669076 ], [ -77.605339050292912, -6.615615844726562 ], [ -77.601615905761662, -6.616024017333928 ], [ -77.600593566894418, -6.616942882537842 ], [ -77.600090026855412, -6.619737148284912 ], [ -77.597999572753849, -6.623235225677433 ], [ -77.593902587890568, -6.627052783966064 ], [ -77.59033203125, -6.628527164459229 ], [ -77.589141845703068, -6.629798889160156 ], [ -77.588005065917855, -6.631674766540527 ], [ -77.587120056152287, -6.632483959197998 ], [ -77.584693908691406, -6.633543968200627 ], [ -77.582962036132812, -6.63530778884882 ], [ -77.58148193359375, -6.635793209075871 ], [ -77.580558776855412, -6.635825157165527 ], [ -77.579086303710938, -6.635344028472844 ], [ -77.577621459960938, -6.635334968566838 ], [ -77.574371337890625, -6.634655952453556 ], [ -77.572631835937443, -6.636235237121582 ], [ -77.568572998046875, -6.638717174529972 ], [ -77.564498901367188, -6.642940998077336 ], [ -77.561584472656193, -6.648232936859131 ], [ -77.559806823730469, -6.652569770812931 ], [ -77.559181213378849, -6.65532112121582 ], [ -77.557907104492188, -6.657973766326847 ], [ -77.557365417480412, -6.660769939422607 ], [ -77.555938720703068, -6.665955066680908 ], [ -77.55519866943348, -6.667894840240365 ], [ -77.554672241210938, -6.668547153472844 ], [ -77.553611755371094, -6.669133186340332 ], [ -77.550544738769531, -6.66962718963623 ], [ -77.547950744628793, -6.672712802886963 ], [ -77.545913696289006, -6.673526763915959 ], [ -77.544097900390625, -6.675333976745549 ], [ -77.542655944824219, -6.676128864288273 ], [ -77.541793823242188, -6.676132202148324 ], [ -77.538505554199162, -6.674507141113224 ], [ -77.536582946777287, -6.674604892730713 ], [ -77.534278869628849, -6.673695087432861 ], [ -77.532539367675781, -6.673605918884221 ], [ -77.529914855956974, -6.67509222030634 ], [ -77.523544311523438, -6.677392005920353 ], [ -77.522094726562443, -6.678511142730713 ], [ -77.5208740234375, -6.679132938384953 ], [ -77.519546508789062, -6.680403232574463 ], [ -77.517906188964787, -6.683169841766301 ], [ -77.515716552734261, -6.688529968261605 ], [ -77.515052795410156, -6.689383029937744 ], [ -77.512901306152344, -6.693751811981144 ], [ -77.512397766113281, -6.695704936981201 ], [ -77.512496948242188, -6.698192119598389 ], [ -77.5123291015625, -6.698806762695256 ], [ -77.509567260742188, -6.703129768371525 ], [ -77.504600524902344, -6.708018779754639 ], [ -77.503509521484261, -6.710302829742375 ], [ -77.501663208007756, -6.711494922637883 ], [ -77.500846862792969, -6.712502002716064 ], [ -77.500656127929688, -6.713379859924316 ], [ -77.500961303710938, -6.714924812316895 ], [ -77.500968933105469, -6.717689990997258 ], [ -77.500480651855469, -6.718876838684025 ], [ -77.499755859374943, -6.719675064086914 ], [ -77.499290466308537, -6.71947002410883 ], [ -77.498382568359375, -6.717467784881592 ], [ -77.497428894042969, -6.716605186462346 ], [ -77.495513916015625, -6.716532230377084 ], [ -77.493476867675724, -6.717049121856633 ], [ -77.492156982421818, -6.716704845428467 ], [ -77.491661071777287, -6.716036796569767 ], [ -77.491561889648381, -6.714772224426213 ], [ -77.490982055664006, -6.713619232177734 ], [ -77.490280151367188, -6.71302604675293 ], [ -77.48805999755848, -6.711915969848576 ], [ -77.487030029296875, -6.710738182067871 ], [ -77.486129760742131, -6.705501079559326 ], [ -77.486694335937443, -6.703563213348332 ], [ -77.486686706542969, -6.702623844146729 ], [ -77.484527587890568, -6.699670791625977 ], [ -77.483924865722599, -6.698425769805851 ], [ -77.483489990234375, -6.696818828582764 ], [ -77.483406066894531, -6.693784236907902 ], [ -77.482696533203068, -6.690830230712891 ], [ -77.481773376464844, -6.689237117767334 ], [ -77.480278015136719, -6.68785285949707 ], [ -77.477912902832031, -6.686673164367676 ], [ -77.476272583007812, -6.686462879180908 ], [ -77.474815368652344, -6.686649799346924 ], [ -77.470886230468693, -6.68840503692627 ], [ -77.467674255371094, -6.690681934356689 ], [ -77.466232299804688, -6.691222190856934 ], [ -77.465423583984318, -6.690619945526123 ], [ -77.465347290039006, -6.689888954162484 ], [ -77.467346191406193, -6.686164855957031 ], [ -77.467643737792912, -6.684906005859261 ], [ -77.467704772949219, -6.683523178100472 ], [ -77.4669189453125, -6.681577205657902 ], [ -77.465980529785156, -6.680566787719613 ], [ -77.465126037597656, -6.680019855499211 ], [ -77.463859558105469, -6.680206775665283 ], [ -77.461967468261719, -6.681345939636174 ], [ -77.461105346679688, -6.681594848632812 ], [ -77.460098266601506, -6.68144702911377 ], [ -77.458381652831974, -6.680569171905518 ], [ -77.457290649414062, -6.680467128753662 ], [ -77.455284118652344, -6.681353092193604 ], [ -77.454597473144531, -6.681952953338623 ], [ -77.450981140136719, -6.686182975768986 ], [ -77.448593139648438, -6.687513828277531 ], [ -77.447822570800781, -6.688158988952637 ], [ -77.44696044921875, -6.689455986022892 ], [ -77.444694519042969, -6.691853046417179 ], [ -77.444168090820256, -6.693321228027344 ], [ -77.441001892089844, -6.696509838104191 ], [ -77.439910888671875, -6.698845863342228 ], [ -77.437614440917969, -6.702263832092228 ], [ -77.437141418457031, -6.70383882522583 ], [ -77.435188293457031, -6.706389904022217 ], [ -77.434318542480469, -6.708815097808838 ], [ -77.433143615722656, -6.710899829864502 ], [ -77.430122375488281, -6.714095115661621 ], [ -77.428642272949162, -6.714818000793457 ], [ -77.427803039550781, -6.715536117553654 ], [ -77.427009582519474, -6.715765953063908 ], [ -77.425270080566406, -6.715764045715332 ], [ -77.420730590820199, -6.714920043945256 ], [ -77.417442321777344, -6.714784145355168 ], [ -77.416107177734375, -6.715150833129826 ], [ -77.414398193359375, -6.716668128967228 ], [ -77.410423278808537, -6.72229099273676 ], [ -77.407890319824219, -6.725069046020451 ], [ -77.405929565429631, -6.728793144226074 ], [ -77.404533386230469, -6.733085155487061 ], [ -77.403251647949162, -6.736136913299561 ], [ -77.401763916015625, -6.738123893737793 ], [ -77.401367187499943, -6.739056110382023 ], [ -77.400718688964844, -6.7398362159729 ], [ -77.39996337890625, -6.740330219268799 ], [ -77.398941040039062, -6.740371227264347 ], [ -77.396446228027344, -6.739523887634221 ], [ -77.394966125488224, -6.739937782287541 ], [ -77.394180297851562, -6.739680767059326 ], [ -77.392356872558594, -6.739788055419922 ], [ -77.391265869140625, -6.739321231841984 ], [ -77.388084411621037, -6.739312171936035 ], [ -77.387306213378906, -6.738530158996582 ], [ -77.386741638183594, -6.736978054046574 ], [ -77.385063171386605, -6.73572921752924 ], [ -77.384101867675724, -6.734151840209904 ], [ -77.383750915527344, -6.733106136322021 ], [ -77.383247375488224, -6.729465961456299 ], [ -77.382369995117131, -6.727336883544865 ], [ -77.381507873535099, -6.726590156555119 ], [ -77.378868103027344, -6.727282047271672 ], [ -77.378059387207031, -6.727149963378849 ], [ -77.3775634765625, -6.726728916168156 ], [ -77.377456665039062, -6.724991798400879 ], [ -77.378250122070312, -6.721329212188664 ], [ -77.378273010253849, -6.719113826751709 ], [ -77.377723693847656, -6.716784954071045 ], [ -77.376884460449219, -6.714735984802246 ], [ -77.376602172851562, -6.711429119110107 ], [ -77.375427246093693, -6.70756816864008 ], [ -77.375473022460938, -6.70610523223877 ], [ -77.375862121582031, -6.70477104187006 ], [ -77.378997802734375, -6.700942039489746 ], [ -77.380767822265568, -6.697826862335205 ], [ -77.383911132812443, -6.693986892700138 ], [ -77.385002136230469, -6.690882205963135 ], [ -77.388153076171875, -6.685027122497559 ], [ -77.389266967773438, -6.682301044464111 ], [ -77.390686035156193, -6.680377960205078 ], [ -77.391227722167912, -6.679220199584904 ], [ -77.3919677734375, -6.678401947021428 ], [ -77.393905639648381, -6.677182197570744 ], [ -77.395332336425724, -6.67562818527216 ], [ -77.397850036621094, -6.669325828552189 ], [ -77.399734497070256, -6.666181087493896 ], [ -77.400062561035156, -6.664841175079346 ], [ -77.400466918945312, -6.664405822753906 ], [ -77.402053833007812, -6.66395711898798 ], [ -77.402854919433594, -6.663345813751164 ], [ -77.403930664062443, -6.661533832549992 ], [ -77.405433654785156, -6.660051822662297 ], [ -77.4068603515625, -6.65801286697382 ], [ -77.407402038574219, -6.656952857971135 ], [ -77.407463073730412, -6.655676841735783 ], [ -77.404594421386662, -6.654823780059814 ], [ -77.403984069824219, -6.654428005218506 ], [ -77.403785705566406, -6.653804779052678 ], [ -77.404502868652287, -6.652365207672119 ], [ -77.404441833496094, -6.649880886077881 ], [ -77.405685424804688, -6.648120880126953 ], [ -77.406578063964844, -6.647329807281494 ], [ -77.408111572265568, -6.643788814544678 ], [ -77.408966064453068, -6.643106937408447 ], [ -77.411148071289062, -6.64240121841425 ], [ -77.412727355957031, -6.641136169433594 ], [ -77.413642883300724, -6.640752792358398 ], [ -77.415100097656193, -6.64089918136591 ], [ -77.416709899902287, -6.641938209533691 ], [ -77.417617797851562, -6.64184379577631 ], [ -77.419151306152344, -6.641003131866455 ], [ -77.419853210449162, -6.640839099883976 ], [ -77.423271179199162, -6.64184379577631 ], [ -77.423904418945312, -6.641750812530518 ], [ -77.42474365234375, -6.641177177429142 ], [ -77.424812316894474, -6.640155792236271 ], [ -77.423461914062443, -6.638551235198975 ], [ -77.423461914062443, -6.637883186340275 ], [ -77.424339294433537, -6.637102127075195 ], [ -77.426399230957031, -6.636703014373722 ], [ -77.427597045898324, -6.63555908203125 ], [ -77.428169250488168, -6.632483959197998 ], [ -77.428184509277344, -6.629817008972168 ], [ -77.428749084472656, -6.627871036529541 ], [ -77.429016113281193, -6.622635841369572 ], [ -77.429710388183594, -6.62142276763916 ], [ -77.431854248046818, -6.619287967681885 ], [ -77.432327270507812, -6.618507862091008 ], [ -77.432426452636662, -6.61684513092041 ], [ -77.431991577148438, -6.613467216491699 ], [ -77.432136535644531, -6.611640930175724 ], [ -77.432876586914062, -6.608970165252629 ], [ -77.434745788574162, -6.605083942413273 ], [ -77.434623718261662, -6.604263782501221 ], [ -77.433929443359375, -6.602647781372013 ], [ -77.431961059570256, -6.602214813232365 ], [ -77.426063537597599, -6.602867126464787 ], [ -77.423347473144531, -6.601596832275391 ], [ -77.42059326171875, -6.602241992950439 ], [ -77.416366577148438, -6.601430892944336 ], [ -77.415199279785043, -6.601599216461125 ], [ -77.4129638671875, -6.602667808532658 ], [ -77.412147521972543, -6.602734088897705 ], [ -77.411048889160156, -6.602589130401554 ], [ -77.409271240234318, -6.601284980773869 ], [ -77.408058166503906, -6.601102828979435 ], [ -77.407279968261662, -6.601439952850285 ], [ -77.405570983886719, -6.603880882263127 ], [ -77.40413665771473, -6.60515022277832 ], [ -77.399543762206974, -6.60518217086792 ], [ -77.397567749023438, -6.604865074157658 ], [ -77.396858215331974, -6.604290962219238 ], [ -77.396369934082031, -6.603092193603516 ], [ -77.395896911621094, -6.602652072906437 ], [ -77.395210266113281, -6.602193832397461 ], [ -77.39385986328125, -6.60196590423584 ], [ -77.393302917480469, -6.601605892181396 ], [ -77.392898559570312, -6.596196174621582 ], [ -77.392059326171875, -6.594246864318848 ], [ -77.391242980956974, -6.593020915985051 ], [ -77.389244079589787, -6.591574192047062 ], [ -77.3887939453125, -6.590583801269474 ], [ -77.386871337890568, -6.588730812072754 ], [ -77.385887145996037, -6.587071895599308 ], [ -77.382957458496037, -6.583903789520264 ], [ -77.3787841796875, -6.580292224883976 ], [ -77.375396728515568, -6.578725814819336 ], [ -77.371627807617188, -6.573231220245304 ], [ -77.369659423828125, -6.572136878967285 ], [ -77.366020202636719, -6.570824146270695 ], [ -77.360786437988281, -6.56981897354126 ], [ -77.358428955078068, -6.56859302520752 ], [ -77.357879638671818, -6.567419052124023 ], [ -77.356880187988281, -6.562552928924561 ], [ -77.353530883789062, -6.558518886566162 ], [ -77.353302001953068, -6.55782413482666 ], [ -77.353378295898381, -6.556404113769531 ], [ -77.353073120117188, -6.555790901184025 ], [ -77.350654602050781, -6.553644180297852 ], [ -77.34906005859375, -6.551861763000431 ], [ -77.347999572753906, -6.549407005310059 ], [ -77.346488952636719, -6.546783924102783 ], [ -77.345054626464844, -6.54522705078125 ], [ -77.34149169921875, -6.542315006256104 ], [ -77.337318420410156, -6.540038108825684 ], [ -77.335678100585938, -6.538410186767521 ], [ -77.335151672363224, -6.537565231323242 ], [ -77.334999084472656, -6.536089897155705 ], [ -77.335273742675724, -6.52945613861084 ], [ -77.334732055664062, -6.52648401260376 ], [ -77.335243225097656, -6.525207042694092 ], [ -77.335868835449219, -6.524319171905404 ], [ -77.336448669433594, -6.522570133209229 ], [ -77.336555480957031, -6.519172191619873 ], [ -77.336151123046875, -6.518062114715519 ], [ -77.332832336425781, -6.51388502120966 ], [ -77.331184387207031, -6.510367870330754 ], [ -77.330574035644474, -6.508154869079533 ], [ -77.330642700195312, -6.507051944732666 ], [ -77.331352233886662, -6.505276203155518 ], [ -77.331192016601562, -6.504164218902588 ], [ -77.330528259277344, -6.502642154693604 ], [ -77.330520629882812, -6.501175880432129 ], [ -77.331649780273381, -6.495124816894418 ], [ -77.332382202148438, -6.492745876312199 ], [ -77.3330078125, -6.491620063781625 ], [ -77.332962036132756, -6.488031864166146 ], [ -77.332046508789062, -6.487077236175537 ], [ -77.33099365234375, -6.485139846801701 ], [ -77.329383850097656, -6.479724884033203 ], [ -77.327903747558537, -6.476559162139893 ], [ -77.326782226562443, -6.470036029815617 ], [ -77.326301574706974, -6.468413829803467 ], [ -77.325752258300781, -6.467385768890324 ], [ -77.324172973632812, -6.466423988342228 ], [ -77.32177734375, -6.465532779693604 ], [ -77.318984985351562, -6.462878227233887 ], [ -77.316001892089787, -6.460443019866887 ], [ -77.314964294433537, -6.459902763366642 ], [ -77.3125, -6.459139823913517 ], [ -77.309883117675724, -6.457622051238957 ], [ -77.306755065917912, -6.454798221588135 ], [ -77.304595947265625, -6.451826095581055 ], [ -77.30413818359375, -6.450826168060303 ], [ -77.303802490234318, -6.44920015335083 ], [ -77.303352355957031, -6.442955970764103 ], [ -77.302894592285156, -6.440237045288029 ], [ -77.301307678222599, -6.435428142547607 ], [ -77.299705505371037, -6.432530879974365 ], [ -77.298538208007756, -6.429834842681828 ], [ -77.298088073730355, -6.425624847412109 ], [ -77.297576904296818, -6.424351215362492 ], [ -77.296302795410156, -6.423309803008976 ], [ -77.291290283203068, -6.421570777893066 ], [ -77.288597106933594, -6.420018196105957 ], [ -77.285408020019531, -6.417384147644043 ], [ -77.282341003417912, -6.4137282371521 ], [ -77.280021667480469, -6.411359786987305 ], [ -77.273551940917912, -6.406897068023682 ], [ -77.273445129394531, -6.406075000762939 ], [ -77.273826599121094, -6.403488159179688 ], [ -77.274787902831974, -6.399930000305176 ], [ -77.274772644042969, -6.39827823638916 ], [ -77.277381896972599, -6.389471054077092 ], [ -77.277282714843693, -6.387247085571289 ], [ -77.276992797851506, -6.386372089385986 ], [ -77.27630615234375, -6.385397911071721 ], [ -77.275123596191406, -6.384905815124512 ], [ -77.273086547851506, -6.385638236999512 ], [ -77.271461486816349, -6.385818004608097 ], [ -77.269073486328068, -6.384897232055607 ], [ -77.266281127929688, -6.382658958435002 ], [ -77.265068054199162, -6.382257938384953 ], [ -77.263694763183594, -6.382262229919377 ], [ -77.262786865234318, -6.382701873779297 ], [ -77.261070251464787, -6.384218215942383 ], [ -77.260055541992188, -6.384847164154053 ], [ -77.251678466796875, -6.388219833374023 ], [ -77.250274658203068, -6.389390945434513 ], [ -77.248039245605469, -6.391822814941349 ], [ -77.245498657226562, -6.394961833953801 ], [ -77.243644714355469, -6.398351192474308 ], [ -77.24090576171875, -6.402357101440373 ], [ -77.239227294921818, -6.405838012695256 ], [ -77.238685607910156, -6.407501220703125 ], [ -77.238243103027344, -6.408072948455811 ], [ -77.237197875976562, -6.409117221832275 ], [ -77.235382080078125, -6.410047054290771 ], [ -77.233413696289006, -6.410435199737492 ], [ -77.230033874511719, -6.410639762878418 ], [ -77.227737426757812, -6.41129207611084 ], [ -77.223930358886719, -6.415259838104191 ], [ -77.222099304199219, -6.418520927429086 ], [ -77.220184326171875, -6.420084953308105 ], [ -77.216529846191349, -6.421545028686467 ], [ -77.211486816406193, -6.422861099243107 ], [ -77.202629089355469, -6.423088073730412 ], [ -77.199447631835881, -6.422849178314152 ], [ -77.198120117187443, -6.422502994537297 ], [ -77.197578430175781, -6.421942234039193 ], [ -77.194656372070312, -6.420636177062931 ], [ -77.18898773193348, -6.417082786560002 ], [ -77.187538146972599, -6.415740966796875 ], [ -77.18585205078125, -6.413561820983773 ], [ -77.184692382812443, -6.412661075591984 ], [ -77.181709289550724, -6.411798000335637 ], [ -77.174949645996037, -6.411456108093205 ], [ -77.171989440917912, -6.410891056060791 ], [ -77.167228698730412, -6.408541202545166 ], [ -77.165603637695256, -6.407498836517277 ], [ -77.163337707519531, -6.406524181365967 ], [ -77.159011840820256, -6.402698993682804 ], [ -77.157974243164006, -6.401058197021428 ], [ -77.157173156738281, -6.398702144622803 ], [ -77.156951904296875, -6.397256851196289 ], [ -77.156898498535156, -6.393660068511963 ], [ -77.157241821289062, -6.392600059509277 ], [ -77.157508850097599, -6.390131950378418 ], [ -77.15838623046875, -6.387616157531738 ], [ -77.161338806152344, -6.383192062377873 ], [ -77.162384033203125, -6.380936145782471 ], [ -77.162834167480412, -6.379071235656681 ], [ -77.162788391113281, -6.376568794250488 ], [ -77.162261962890568, -6.375720977783146 ], [ -77.15753173828125, -6.375243186950684 ], [ -77.154960632324219, -6.374269008636475 ], [ -77.153053283691406, -6.373011112213078 ], [ -77.150711059570256, -6.370942115783691 ], [ -77.149978637695256, -6.369779109954834 ], [ -77.149429321289062, -6.367728233337402 ], [ -77.148635864257756, -6.360509872436467 ], [ -77.148231506347599, -6.35969877243042 ], [ -77.148292541503906, -6.358720779418945 ], [ -77.147537231445312, -6.355966091156006 ], [ -77.146812438964787, -6.351892948150635 ], [ -77.145599365234375, -6.348127841949349 ], [ -77.145294189453068, -6.344549179077148 ], [ -77.144882202148438, -6.343033790588322 ], [ -77.142105102539062, -6.338478088378906 ], [ -77.139335632324219, -6.335291862487793 ], [ -77.136260986328125, -6.32953405380249 ], [ -77.134178161621094, -6.326851844787598 ], [ -77.132652282714844, -6.324281215667725 ], [ -77.132644653320312, -6.322363853454533 ], [ -77.134246826171761, -6.31885910034174 ], [ -77.134696960449162, -6.316154003143311 ], [ -77.134292602539062, -6.312774181365967 ], [ -77.133018493652344, -6.30777978897089 ], [ -77.132919311523438, -6.302267074584961 ], [ -77.135871887207031, -6.299027919769287 ], [ -77.138328552246037, -6.293284893035832 ], [ -77.139236450195312, -6.292370796203556 ], [ -77.141799926757812, -6.290614128112736 ], [ -77.143280029296818, -6.288980007171631 ], [ -77.145660400390568, -6.287787914276123 ], [ -77.14678955078125, -6.286753177642822 ], [ -77.150398254394531, -6.28220796585083 ], [ -77.153953552246037, -6.276443958282414 ], [ -77.158882141113281, -6.271262168884221 ], [ -77.161758422851562, -6.26873588562006 ], [ -77.163948059082031, -6.268013954162598 ], [ -77.164985656738281, -6.267131805419922 ], [ -77.167472839355469, -6.261697769164982 ], [ -77.168190002441349, -6.258478164672852 ], [ -77.168777465820312, -6.256847858428955 ], [ -77.170989990234375, -6.25324010848999 ], [ -77.173004150390625, -6.249120235443115 ], [ -77.174247741699219, -6.247406005859375 ], [ -77.175399780273438, -6.246506214141789 ], [ -77.176673889160099, -6.24639177322382 ], [ -77.178680419921818, -6.245498180389404 ], [ -77.181320190429688, -6.244754791259709 ], [ -77.183204650878906, -6.243824958801213 ], [ -77.1871337890625, -6.240979194641056 ], [ -77.189804077148438, -6.239576816558781 ], [ -77.193794250488281, -6.236812114715576 ], [ -77.195869445800781, -6.235021114349365 ], [ -77.197288513183594, -6.23322677612299 ], [ -77.198600769042912, -6.232153892517033 ], [ -77.200149536132812, -6.229998111724854 ], [ -77.201690673828125, -6.226663112640381 ], [ -77.202537536621094, -6.225458145141545 ], [ -77.204490661621094, -6.223523139953556 ], [ -77.206649780273438, -6.222150802612305 ], [ -77.207954406738224, -6.220996856689453 ], [ -77.209823608398438, -6.218983173370361 ], [ -77.211929321289062, -6.216090202331543 ], [ -77.212425231933537, -6.214794158935547 ], [ -77.213058471679688, -6.209784030914307 ], [ -77.21478271484375, -6.204462051391545 ], [ -77.215263366699219, -6.202128887176457 ], [ -77.216247558593693, -6.200459957122746 ], [ -77.218185424804688, -6.198146820068303 ], [ -77.219039916992188, -6.196209907531738 ], [ -77.219169616699219, -6.195005893707275 ], [ -77.218818664550724, -6.193975925445557 ], [ -77.217376708984318, -6.192182064056396 ], [ -77.215835571289062, -6.190878868102914 ], [ -77.211982727050781, -6.188562870025578 ], [ -77.207756042480412, -6.18555212020874 ], [ -77.205513000488281, -6.18339204788208 ], [ -77.204963684082031, -6.183296203613281 ], [ -77.204658508300781, -6.182863235473633 ], [ -77.203254699707031, -6.18197393417347 ], [ -77.202713012695256, -6.181227207183781 ], [ -77.202705383300724, -6.179616928100586 ], [ -77.203285217285099, -6.176777839660588 ], [ -77.204383850097656, -6.174347877502441 ], [ -77.210853576660156, -6.166141033172607 ], [ -77.212486267089844, -6.16047477722168 ], [ -77.213165283203125, -6.159406185150146 ], [ -77.214256286621037, -6.158408164978027 ], [ -77.218482971191406, -6.156429767608643 ], [ -77.222526550292912, -6.155753135681096 ], [ -77.225067138671875, -6.155001163482609 ], [ -77.233512878417912, -6.150481224060059 ], [ -77.236732482910099, -6.149808883666992 ], [ -77.240570068359318, -6.149755954742375 ], [ -77.242340087890625, -6.149313926696777 ], [ -77.249061584472599, -6.142308235168457 ], [ -77.252777099609318, -6.139588832855225 ], [ -77.254623413085938, -6.138604164123535 ], [ -77.258308410644474, -6.138092041015625 ], [ -77.264633178710938, -6.138300895690861 ], [ -77.271522521972656, -6.139735221862736 ], [ -77.2738037109375, -6.140387058258 ], [ -77.278297424316406, -6.14221000671381 ], [ -77.280372619628906, -6.142454147338867 ], [ -77.281906127929688, -6.141833782196045 ], [ -77.288093566894531, -6.135841846466064 ], [ -77.289474487304631, -6.134794235229492 ], [ -77.291275024414062, -6.134335994720459 ], [ -77.296119689941406, -6.13447904586792 ], [ -77.298828124999943, -6.134087085723877 ], [ -77.302719116210938, -6.132288932800236 ], [ -77.305374145507812, -6.130434036254883 ], [ -77.308418273925781, -6.12778997421259 ], [ -77.310096740722599, -6.127088069915771 ], [ -77.312690734863281, -6.126561164855957 ], [ -77.317352294921761, -6.126632213592529 ], [ -77.321708679199162, -6.125654220581055 ], [ -77.3251953125, -6.125604152679387 ], [ -77.326576232910099, -6.125201225280762 ], [ -77.327743530273381, -6.124300956726017 ], [ -77.329536437988224, -6.122194766998234 ], [ -77.332099914550724, -6.118161201476937 ], [ -77.333427429199219, -6.116538047790527 ], [ -77.33685302734375, -6.113629817962646 ], [ -77.338920593261719, -6.112446784973145 ], [ -77.343231201171875, -6.108813762664795 ], [ -77.345359802246037, -6.106534957885685 ], [ -77.346672058105469, -6.10443115234375 ], [ -77.348968505859375, -6.098826885223332 ], [ -77.349784851074219, -6.092631816863957 ], [ -77.350341796874943, -6.090606212615967 ], [ -77.351982116699219, -6.086710929870549 ], [ -77.353141784667969, -6.082927227020207 ], [ -77.353370666503849, -6.080647945404053 ], [ -77.352973937988281, -6.078472137451172 ], [ -77.352943420410156, -6.075986862182617 ], [ -77.353431701660156, -6.072541236877385 ], [ -77.353889465332031, -6.071743965148926 ], [ -77.357757568359318, -6.071508884429932 ], [ -77.361030578613168, -6.071900844573918 ], [ -77.363037109375, -6.07347583770752 ], [ -77.365371704101562, -6.076302051544189 ], [ -77.367897033691293, -6.077972888946476 ], [ -77.369209289550724, -6.078373908996525 ], [ -77.370742797851506, -6.078619956970158 ], [ -77.37164306640625, -6.078498840332031 ], [ -77.372406005859375, -6.07816219329834 ], [ -77.374336242675781, -6.076607227325439 ], [ -77.37518310546875, -6.075535774230957 ], [ -77.376358032226506, -6.071654796600285 ], [ -77.376922607421818, -6.070504188537598 ], [ -77.377639770507812, -6.06955099105835 ], [ -77.378997802734375, -6.068803787231445 ], [ -77.379638671875, -6.068123817443848 ], [ -77.37972259521473, -6.066207885742188 ], [ -77.378913879394531, -6.061971187591496 ], [ -77.379417419433537, -6.061075210571289 ], [ -77.3804931640625, -6.060626029968262 ], [ -77.381202697753906, -6.059667110443115 ], [ -77.3826904296875, -6.054743766784668 ], [ -77.384086608886662, -6.051960945129338 ], [ -77.386009216308537, -6.04698991775507 ], [ -77.385856628417969, -6.04597806930542 ], [ -77.384506225585938, -6.044899940490666 ], [ -77.384513854980469, -6.044366836547795 ], [ -77.385437011718693, -6.042998790740967 ], [ -77.386993408203125, -6.041319847106877 ], [ -77.387565612792969, -6.040168762207031 ], [ -77.388366699218693, -6.03937816619873 ], [ -77.389419555664006, -6.039219856262207 ], [ -77.390800476074219, -6.040118217468262 ], [ -77.391151428222599, -6.040171146392765 ], [ -77.391632080078068, -6.03988790512085 ], [ -77.392364501953125, -6.039144992828369 ], [ -77.394104003906193, -6.035295963287297 ], [ -77.396263122558594, -6.031986236572209 ], [ -77.401657104492074, -6.026766777038574 ], [ -77.403358459472599, -6.025898933410645 ], [ -77.404327392578011, -6.026140213012638 ], [ -77.405502319335938, -6.02795219421381 ], [ -77.407585144042969, -6.032451152801457 ], [ -77.408782958984318, -6.033956050872746 ], [ -77.409751892089787, -6.034241199493408 ], [ -77.410743713378906, -6.034064769744873 ], [ -77.413253784179688, -6.032282829284554 ], [ -77.4140625, -6.032405853271484 ], [ -77.415016174316406, -6.033394813537598 ], [ -77.41522216796875, -6.034750938415471 ], [ -77.41485595703125, -6.036152839660645 ], [ -77.415809631347656, -6.037639141082764 ], [ -77.415992736816406, -6.038723945617676 ], [ -77.415748596191349, -6.039700984954834 ], [ -77.414863586425781, -6.041007041931152 ], [ -77.41455078125, -6.041930198669434 ], [ -77.414619445800724, -6.042741775512638 ], [ -77.415847778320256, -6.045205116271859 ], [ -77.415885925292969, -6.046407222747803 ], [ -77.415435791015625, -6.048377990722656 ], [ -77.415428161621094, -6.049843788146916 ], [ -77.416114807128906, -6.05125904083252 ], [ -77.416885375976506, -6.051871776580811 ], [ -77.417808532714844, -6.051731109619084 ], [ -77.419975280761719, -6.050364971160889 ], [ -77.420768737792969, -6.050533771514779 ], [ -77.421798706054688, -6.051623821258488 ], [ -77.422348022460881, -6.053156852722111 ], [ -77.422683715820312, -6.057222843170109 ], [ -77.422134399414006, -6.060200214385986 ], [ -77.421234130859375, -6.06220817565918 ], [ -77.421134948730469, -6.06357479095459 ], [ -77.421676635742131, -6.064538955688477 ], [ -77.422943115234375, -6.065310001373291 ], [ -77.424362182617188, -6.064986228942814 ], [ -77.427726745605469, -6.061620235443002 ], [ -77.429672241210881, -6.059187889099121 ], [ -77.431175231933594, -6.056886196136475 ], [ -77.432861328125, -6.055196762084961 ], [ -77.434722900390568, -6.054032802581787 ], [ -77.437347412109375, -6.053253173828068 ], [ -77.439384460449219, -6.052220821380615 ], [ -77.440887451171875, -6.050615787506104 ], [ -77.442581176757812, -6.047760009765625 ], [ -77.443183898925781, -6.047404766082764 ], [ -77.444908142089844, -6.047080993652287 ], [ -77.445716857910043, -6.046345233917236 ], [ -77.446296691894531, -6.044995784759465 ], [ -77.446464538574162, -6.042428970336857 ], [ -77.447105407714844, -6.040419101715088 ], [ -77.448165893554631, -6.039412021636906 ], [ -77.450080871581974, -6.038824081420842 ], [ -77.450843811035099, -6.038124084472543 ], [ -77.45111083984375, -6.037581920623779 ], [ -77.45068359375, -6.03602123260498 ], [ -77.449302673339844, -6.03454399108881 ], [ -77.4486083984375, -6.033345222473088 ], [ -77.448448181152287, -6.032071113586426 ], [ -77.448738098144474, -6.030821800231877 ], [ -77.449996948242131, -6.02891016006464 ], [ -77.452934265136662, -6.025751113891545 ], [ -77.45831298828125, -6.021334171295166 ], [ -77.458587646484318, -6.020556926727238 ], [ -77.458602905273438, -6.019705772399902 ], [ -77.457099914550781, -6.017537117004338 ], [ -77.456916809082031, -6.016442775726318 ], [ -77.457145690917912, -6.015555858612061 ], [ -77.458572387695256, -6.014004230499211 ], [ -77.460838317871094, -6.012331008911133 ], [ -77.465019226074219, -6.008354187011662 ], [ -77.466125488281136, -6.006665229797306 ], [ -77.467582702636719, -6.003488063812256 ], [ -77.469406127929688, -6.001419067382812 ], [ -77.471603393554688, -6.00150823593134 ], [ -77.474739074707031, -6.003898143768311 ], [ -77.475685119628906, -6.004165172576904 ], [ -77.478157043457031, -6.004352092742806 ], [ -77.479293823242188, -6.005280017852783 ], [ -77.479713439941406, -6.006487846374512 ], [ -77.480133056640568, -6.009045124053898 ], [ -77.480018615722599, -6.013184070587158 ], [ -77.480247497558594, -6.016852855682373 ], [ -77.479789733886719, -6.018925189971924 ], [ -77.479804992675781, -6.020677089691105 ], [ -77.480232238769474, -6.022174835205021 ], [ -77.481071472167912, -6.023489952087346 ], [ -77.482170104980469, -6.02459812164301 ], [ -77.487602233886719, -6.027636051177979 ], [ -77.488937377929688, -6.027945995330811 ], [ -77.491195678710881, -6.027656078338623 ], [ -77.492599487304688, -6.027966022491455 ], [ -77.496566772460938, -6.030776023864746 ], [ -77.499671936035099, -6.032018184661865 ], [ -77.499893188476562, -6.032188892364445 ], [ -77.500190734863281, -6.033209800720158 ], [ -77.50189208984375, -6.033898830413818 ], [ -77.504661560058594, -6.036271095275879 ], [ -77.505813598632812, -6.037693023681641 ], [ -77.507705688476449, -6.041380882263184 ], [ -77.508674621582031, -6.042714118957463 ], [ -77.509918212890625, -6.044073104858342 ], [ -77.513465881347656, -6.046523094177246 ], [ -77.514381408691293, -6.049023151397705 ], [ -77.515296936035156, -6.050057888030949 ], [ -77.516197204589844, -6.051652908325195 ], [ -77.516975402832031, -6.055246829986515 ], [ -77.517700195312443, -6.057168960571289 ], [ -77.518318176269531, -6.058042049407959 ], [ -77.520195007324162, -6.059226989746094 ], [ -77.521217346191349, -6.060407161712646 ], [ -77.522018432617188, -6.062652111053467 ], [ -77.522476196289006, -6.063229084014893 ], [ -77.523239135742131, -6.065158843994141 ], [ -77.524238586425781, -6.065218925476074 ], [ -77.526092529296818, -6.064722061157227 ], [ -77.529953002929688, -6.062633991241398 ], [ -77.532768249511662, -6.060018062591553 ], [ -77.533927917480412, -6.057526111602783 ], [ -77.533943176269531, -6.055791854858342 ], [ -77.532325744628906, -6.051587104797306 ], [ -77.531616210937443, -6.050281047821045 ], [ -77.531448364257756, -6.049385070800781 ], [ -77.531684875488281, -6.047840118408146 ], [ -77.533370971679688, -6.044579029083252 ], [ -77.53338623046875, -6.043087959289494 ], [ -77.532768249511662, -6.041862010955811 ], [ -77.531814575195256, -6.040718078613281 ], [ -77.528236389160156, -6.038113117217961 ], [ -77.527206420898438, -6.036157131194955 ], [ -77.526931762695312, -6.034440994262638 ], [ -77.527160644531136, -6.033500194549504 ], [ -77.528587341308537, -6.03103590011591 ], [ -77.531578063964844, -6.027542114257812 ], [ -77.534957885742131, -6.024200916290226 ], [ -77.536384582519474, -6.023392200469971 ], [ -77.538299560546818, -6.022704124450684 ], [ -77.540214538574162, -6.022648811340332 ], [ -77.542343139648438, -6.023696899414006 ], [ -77.545852661132699, -6.026799201965218 ], [ -77.547996520996094, -6.028044223785344 ], [ -77.548713684081918, -6.028104782104492 ], [ -77.550117492675724, -6.027674198150578 ], [ -77.551765441894418, -6.027692794799805 ], [ -77.554878234863224, -6.028998851776123 ], [ -77.555618286132812, -6.028985023498478 ], [ -77.558334350585881, -6.028221130371094 ], [ -77.561225891113281, -6.028669834136963 ], [ -77.563697814941406, -6.028729915618896 ], [ -77.565032958984375, -6.028398990631104 ], [ -77.565750122070256, -6.027888774871769 ], [ -77.566207885742188, -6.027958869934082 ], [ -77.56695556640625, -6.027613162994385 ], [ -77.569953918456974, -6.025057792663574 ], [ -77.572891235351562, -6.023365020751953 ], [ -77.576011657714844, -6.020276069641113 ], [ -77.577613830566406, -6.018505096435547 ], [ -77.578102111816406, -6.017673969268799 ], [ -77.578048706054688, -6.015223026275635 ], [ -77.576271057128849, -6.011606216430664 ], [ -77.576492309570312, -6.009484767913818 ], [ -77.576988220214844, -6.007809162139779 ], [ -77.578125, -6.00560808181757 ], [ -77.582832336425724, -6.000860214233342 ], [ -77.583877563476506, -5.999028205871525 ], [ -77.584465026855412, -5.997297763824463 ], [ -77.585922241210938, -5.99637317657465 ], [ -77.587295532226562, -5.996364116668701 ], [ -77.590599060058594, -5.997722148895264 ], [ -77.591590881347656, -5.998386859893799 ], [ -77.593116760253906, -5.999959945678711 ], [ -77.595878601074219, -6.00198221206665 ], [ -77.59944915771473, -6.004068851470947 ], [ -77.605636596679631, -6.004419803619328 ], [ -77.611785888671875, -6.007309913635197 ], [ -77.613052368164006, -6.007446765899658 ], [ -77.614990234374943, -6.008017063140812 ], [ -77.619255065917912, -6.010148048400879 ], [ -77.621810913085938, -6.010388851165715 ], [ -77.623908996582031, -6.010198116302433 ], [ -77.625228881835938, -6.009803771972656 ], [ -77.626792907714787, -6.00887393951416 ], [ -77.629226684570312, -6.007046222686654 ], [ -77.62996673583973, -6.006011009216309 ], [ -77.631698608398438, -6.001855850219727 ], [ -77.632972717285156, -5.999941825866642 ], [ -77.633377075195256, -5.998062133789006 ], [ -77.634681701660156, -5.995125770568791 ], [ -77.635017395019474, -5.993697166442871 ], [ -77.636993408203068, -5.989359855651799 ], [ -77.637413024902344, -5.987775802612305 ], [ -77.638458251953125, -5.985836029052678 ], [ -77.640106201171875, -5.984138011932373 ], [ -77.641761779785099, -5.983373165130615 ], [ -77.643814086914062, -5.982901096343994 ], [ -77.645156860351562, -5.982126235961914 ], [ -77.648567199707031, -5.978891849517822 ], [ -77.650131225585938, -5.976634979248047 ], [ -77.652557373046818, -5.974724769592228 ], [ -77.656494140625, -5.967533111572209 ], [ -77.657768249511719, -5.96311616897583 ], [ -77.658226013183594, -5.962425231933594 ], [ -77.658065795898381, -5.959509849548283 ], [ -77.657691955566349, -5.957820892333928 ], [ -77.656280517578068, -5.954103946685791 ], [ -77.655593872070256, -5.951622009277287 ], [ -77.651947021484375, -5.942855834960938 ], [ -77.651603698730412, -5.936867237091064 ], [ -77.65167236328125, -5.933477878570557 ], [ -77.652313232421875, -5.931637763977051 ], [ -77.652458190917912, -5.93054723739624 ], [ -77.653350830078125, -5.928327083587646 ], [ -77.65545654296875, -5.924983024597111 ], [ -77.65582275390625, -5.924042224883976 ], [ -77.656417846679688, -5.923442840576172 ], [ -77.658164978027287, -5.92074012756342 ], [ -77.659561157226562, -5.917733192443848 ], [ -77.660079956054631, -5.916258811950684 ], [ -77.660247802734375, -5.913963794708195 ], [ -77.660644531249943, -5.912162780761719 ], [ -77.662826538085938, -5.906803131103402 ], [ -77.663246154785099, -5.905111789703312 ], [ -77.663955688476562, -5.898978233337402 ], [ -77.665336608886662, -5.894301891326904 ], [ -77.666130065917969, -5.890130996704045 ], [ -77.667236328124943, -5.886141777038574 ], [ -77.66748046875, -5.88464879989624 ], [ -77.667510986328068, -5.878468036651554 ], [ -77.668045043945312, -5.877298831939584 ], [ -77.669227600097599, -5.875658035278263 ], [ -77.674613952636719, -5.869649887084904 ], [ -77.676803588867188, -5.865718841552734 ], [ -77.677803039550781, -5.863048076629639 ], [ -77.678596496581974, -5.859928131103516 ], [ -77.679077148437443, -5.856643199920654 ], [ -77.679283142089844, -5.852505207061768 ], [ -77.679977416992188, -5.848976135253849 ], [ -77.6815185546875, -5.845444202423096 ], [ -77.686294555664006, -5.836331844329777 ], [ -77.689048767089844, -5.832877159118652 ], [ -77.689979553222656, -5.831995010375977 ], [ -77.693084716796818, -5.830436229705811 ], [ -77.696006774902344, -5.829695224761906 ], [ -77.703216552734375, -5.829285144805908 ], [ -77.706954956054688, -5.828389167785645 ], [ -77.711044311523438, -5.827971935272217 ], [ -77.720535278320256, -5.829253196716309 ], [ -77.726142883300781, -5.828322887420654 ], [ -77.728340148925781, -5.828529834747314 ], [ -77.731811523437443, -5.829343795776367 ], [ -77.734733581542969, -5.82920312881464 ], [ -77.737892150878849, -5.827994823455754 ], [ -77.740699768066406, -5.826445102691594 ], [ -77.743003845214844, -5.824950218200627 ], [ -77.744110107421818, -5.823853969573918 ], [ -77.7459716796875, -5.822515964508057 ], [ -77.75128173828125, -5.819443225860539 ], [ -77.75341796875, -5.818656921386662 ], [ -77.756324768066349, -5.818317890167236 ], [ -77.759628295898438, -5.817625045776367 ], [ -77.76092529296875, -5.816949844360352 ], [ -77.762153625488281, -5.815839767455998 ], [ -77.762596130371037, -5.815740108489933 ], [ -77.762992858886662, -5.815113067626953 ], [ -77.762786865234318, -5.813975811004582 ], [ -77.762901306152287, -5.81213188171381 ], [ -77.764366149902344, -5.808067798614502 ], [ -77.764610290527287, -5.806800842285156 ], [ -77.764640808105469, -5.80440616607666 ], [ -77.764190673828125, -5.80177116394043 ], [ -77.764396667480469, -5.799013137817383 ], [ -77.764854431152344, -5.797231197357121 ], [ -77.766891479492131, -5.792811870574894 ], [ -77.768135070800724, -5.788288116455078 ], [ -77.768829345703125, -5.783830165863037 ], [ -77.768745422363281, -5.778480052947998 ], [ -77.769386291503849, -5.772270202636719 ], [ -77.771324157714844, -5.765745162963867 ], [ -77.771667480468693, -5.761804103851318 ], [ -77.771278381347599, -5.757024765014592 ], [ -77.770492553710938, -5.753245830535832 ], [ -77.767898559570312, -5.749460220336857 ], [ -77.763458251953068, -5.744115829467773 ], [ -77.762413024902287, -5.741556167602482 ], [ -77.762184143066406, -5.739551067352295 ], [ -77.762588500976506, -5.736908912658691 ], [ -77.763641357421818, -5.733479022979736 ], [ -77.7686767578125, -5.724520206451302 ], [ -77.770355224609375, -5.719648838043156 ], [ -77.771080017089787, -5.716601848602238 ], [ -77.771682739257699, -5.712224006652832 ], [ -77.772018432617188, -5.704668045043888 ], [ -77.772628784179631, -5.700193881988469 ], [ -77.773330688476562, -5.696947097778207 ], [ -77.773139953613281, -5.693362236022949 ], [ -77.772689819335938, -5.691961765289307 ], [ -77.772727966308537, -5.688917160034123 ], [ -77.771713256835938, -5.686057090759277 ], [ -77.767944335937443, -5.680263042449894 ], [ -77.764106750488281, -5.675955772399846 ], [ -77.755790710449219, -5.667554855346623 ], [ -77.750480651855412, -5.660072803497258 ], [ -77.749710083007812, -5.658394813537484 ], [ -77.749664306640625, -5.656832218170166 ], [ -77.75140380859375, -5.645754814147892 ], [ -77.751968383789062, -5.643330097198486 ], [ -77.752044677734375, -5.641205787658635 ], [ -77.751838684081974, -5.639572143554631 ], [ -77.750373840332031, -5.63648796081543 ], [ -77.749366760253793, -5.635190963745117 ], [ -77.738410949707031, -5.624590873718262 ], [ -77.73583984375, -5.621709823608398 ], [ -77.733520507812443, -5.617960929870605 ], [ -77.732421875, -5.615012168884277 ], [ -77.731956481933594, -5.612773895263615 ], [ -77.732261657714787, -5.607703208923283 ], [ -77.733551025390625, -5.601768016815186 ], [ -77.73443603515625, -5.599297046661377 ], [ -77.734619140625, -5.596432209014893 ], [ -77.734016418457031, -5.591301918029785 ], [ -77.734390258789006, -5.589041233062744 ], [ -77.734939575195256, -5.587478160858097 ], [ -77.735610961914006, -5.586369991302433 ], [ -77.736282348632756, -5.58562707901001 ], [ -77.737014770507812, -5.585252761840763 ], [ -77.740364074707031, -5.581107139587402 ], [ -77.741661071777344, -5.578886985778752 ], [ -77.742805480957031, -5.576170921325684 ], [ -77.743713378906193, -5.572697162628174 ], [ -77.744087219238224, -5.567454814910832 ], [ -77.746391296386662, -5.561951160430851 ], [ -77.747337341308537, -5.557805061340332 ], [ -77.74749755859375, -5.555519104003906 ], [ -77.747917175292912, -5.553629875183049 ], [ -77.748863220214787, -5.550552845001221 ], [ -77.750213623046818, -5.547628879547119 ], [ -77.750839233398438, -5.54571008682251 ], [ -77.751274108886605, -5.543169021606445 ], [ -77.752708435058594, -5.537892818450928 ], [ -77.753425598144531, -5.532693862914982 ], [ -77.754013061523381, -5.529988765716553 ], [ -77.754165649414062, -5.52612113952631 ], [ -77.753852844238281, -5.523746013641357 ], [ -77.752105712890568, -5.519391059875488 ], [ -77.751182556152344, -5.515545845031738 ], [ -77.748695373535099, -5.508312225341797 ], [ -77.748344421386719, -5.506784915924015 ], [ -77.748420715332031, -5.504940986633244 ], [ -77.751205444335938, -5.499839782714787 ], [ -77.759788513183594, -5.490447998046875 ], [ -77.761032104492188, -5.488636016845703 ], [ -77.764533996582031, -5.485139846801758 ], [ -77.766143798828068, -5.482765197753849 ], [ -77.766403198242131, -5.481354236602726 ], [ -77.766380310058594, -5.479032039642334 ], [ -77.765968322753906, -5.476541042327767 ], [ -77.765556335449162, -5.474925041198674 ], [ -77.764961242675781, -5.473689079284611 ], [ -77.762435913085938, -5.4715700149535 ], [ -77.757652282714787, -5.468862056732178 ], [ -77.755386352539062, -5.467300891876221 ], [ -77.753051757812443, -5.465096950530892 ], [ -77.750640869140625, -5.462326049804688 ], [ -77.747993469238281, -5.459917068481445 ], [ -77.747657775878906, -5.459284782409611 ], [ -77.747245788574162, -5.457651138305607 ], [ -77.747314453125, -5.454615116119328 ], [ -77.750282287597656, -5.445339202880859 ], [ -77.750541687011719, -5.44277286529541 ], [ -77.74969482421875, -5.439286231994629 ], [ -77.748161315917969, -5.43534517288208 ], [ -77.744766235351506, -5.429137229919434 ], [ -77.744163513183594, -5.425796031951904 ], [ -77.743583679199219, -5.424045085906982 ], [ -77.743499755859375, -5.421110153198185 ], [ -77.744033813476562, -5.418865203857422 ], [ -77.744880676269474, -5.416546821594238 ], [ -77.745140075683537, -5.412228107452336 ], [ -77.745506286621094, -5.410056114196777 ], [ -77.745162963867131, -5.407229900360051 ], [ -77.744430541992188, -5.405633926391602 ], [ -77.743980407714844, -5.405536174774113 ], [ -77.743812561035099, -5.405014038085938 ], [ -77.74139404296875, -5.402368068695068 ], [ -77.739280700683594, -5.400914192199707 ], [ -77.734764099121037, -5.399433135986271 ], [ -77.731399536132812, -5.399366855621338 ], [ -77.730369567871037, -5.399750232696533 ], [ -77.729560852050781, -5.400360107421875 ], [ -77.7261962890625, -5.405725955963135 ], [ -77.724876403808594, -5.407249927520695 ], [ -77.723518371581974, -5.408483028411865 ], [ -77.721847534179688, -5.40961217880249 ], [ -77.7198486328125, -5.410407066345215 ], [ -77.717277526855469, -5.410996913909855 ], [ -77.711662292480412, -5.411592006683293 ], [ -77.706245422363224, -5.41246509552002 ], [ -77.703880310058594, -5.412565231323242 ], [ -77.698776245117188, -5.412228107452336 ], [ -77.69610595703125, -5.411599159240723 ], [ -77.694801330566349, -5.410935878753662 ], [ -77.694450378417969, -5.411045074462891 ], [ -77.693496704101562, -5.410733222961426 ], [ -77.689933776855412, -5.408853054046631 ], [ -77.687309265136719, -5.409224033355656 ], [ -77.684486389160099, -5.409199237823486 ], [ -77.679115295410156, -5.408069133758545 ], [ -77.672966003417912, -5.406134128570557 ], [ -77.667694091796875, -5.403800010681096 ], [ -77.661857604980469, -5.402269840240422 ], [ -77.658912658691406, -5.401278972625732 ], [ -77.656387329101562, -5.400876045226994 ], [ -77.650817871093693, -5.400881767272949 ], [ -77.648689270019531, -5.40034008026123 ], [ -77.646125793457031, -5.399129867553711 ], [ -77.638214111328125, -5.393997192382756 ], [ -77.635833740234375, -5.392749786376896 ], [ -77.630416870117131, -5.391418933868351 ], [ -77.624504089355412, -5.389500141143799 ], [ -77.62115478515625, -5.388267040252629 ], [ -77.616424560546761, -5.386119842529297 ], [ -77.610786437988224, -5.384951114654541 ], [ -77.608055114746094, -5.384934902191162 ], [ -77.606063842773438, -5.38522481918335 ], [ -77.60369873046875, -5.385921955108643 ], [ -77.600410461425781, -5.387715816497803 ], [ -77.596817016601562, -5.390233993530217 ], [ -77.591751098632812, -5.394340991973877 ], [ -77.589118957519474, -5.397144794464054 ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-TAC", "NAME_0": "Peru", "ID_1": 24, "NAME_1": "Tacna", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.266639709472599, -16.780267715454102 ], [ -70.266136169433537, -16.781356811523324 ], [ -70.263946533203068, -16.783224105834961 ], [ -70.263305664062443, -16.784553527832031 ], [ -70.262893676757756, -16.784923553466797 ], [ -70.261360168457031, -16.785606384277344 ], [ -70.259590148925668, -16.785818099975586 ], [ -70.257850646972599, -16.785644531249943 ], [ -70.257041931152344, -16.785760879516545 ], [ -70.255424499511719, -16.786779403686523 ], [ -70.254554748535156, -16.787750244140511 ], [ -70.254081726074219, -16.788650512695312 ], [ -70.254043579101506, -16.793895721435547 ], [ -70.253738403320256, -16.794744491577092 ], [ -70.254676818847656, -16.797452926635742 ], [ -70.251846313476506, -16.800252914428654 ], [ -70.249824523925781, -16.801630020141602 ], [ -70.245429992675781, -16.803602218627873 ], [ -70.240791320800724, -16.804836273193359 ], [ -70.239601135253906, -16.805404663085938 ], [ -70.234970092773381, -16.806009292602425 ], [ -70.233024597167969, -16.806459426879826 ], [ -70.2315673828125, -16.807064056396484 ], [ -70.230995178222656, -16.807052612304688 ], [ -70.229560852050781, -16.80754280090332 ], [ -70.225700378417912, -16.809326171875 ], [ -70.223213195800781, -16.809953689575195 ], [ -70.219429016113224, -16.810352325439339 ], [ -70.212867736816406, -16.810199737548828 ], [ -70.212173461914006, -16.809877395629883 ], [ -70.211311340331974, -16.809856414794865 ], [ -70.209976196289006, -16.80937385559082 ], [ -70.207962036132756, -16.809011459350586 ], [ -70.205772399902287, -16.807924270629883 ], [ -70.204338073730412, -16.808069229125977 ], [ -70.20355224609375, -16.808404922485352 ], [ -70.202247619628849, -16.809743881225586 ], [ -70.200523376464787, -16.812894821166992 ], [ -70.197525024414062, -16.815168380737191 ], [ -70.194465637207031, -16.817907333373967 ], [ -70.192459106445312, -16.817861557006836 ], [ -70.189399719238168, -16.816337585449162 ], [ -70.186836242675781, -16.815683364868164 ], [ -70.184173583984375, -16.815828323364201 ], [ -70.183113098144531, -16.816650390625 ], [ -70.182647705078125, -16.817512512207031 ], [ -70.182891845703068, -16.818206787109375 ], [ -70.182876586914062, -16.819122314453011 ], [ -70.183349609375, -16.820035934448242 ], [ -70.183570861816349, -16.821123123168945 ], [ -70.183181762695256, -16.824970245361328 ], [ -70.183387756347599, -16.829139709472543 ], [ -70.184700012206974, -16.832504272460938 ], [ -70.185249328613281, -16.833356857299748 ], [ -70.187393188476506, -16.834552764892521 ], [ -70.189254760742188, -16.834829330444336 ], [ -70.192146301269474, -16.837104797363281 ], [ -70.195182800292912, -16.838645935058537 ], [ -70.198356628417912, -16.841423034667912 ], [ -70.199417114257699, -16.841493606567383 ], [ -70.20068359375, -16.841064453125 ], [ -70.203292846679631, -16.839231491088867 ], [ -70.205024719238224, -16.83880424499506 ], [ -70.206680297851562, -16.839519500732365 ], [ -70.208572387695199, -16.839761734008732 ], [ -70.209648132324219, -16.840354919433537 ], [ -70.2119140625, -16.840604782104435 ], [ -70.217063903808594, -16.843114852905273 ], [ -70.218353271484375, -16.844306945800781 ], [ -70.220863342285099, -16.847303390502816 ], [ -70.2220458984375, -16.849422454833928 ], [ -70.222831726074219, -16.851875305175781 ], [ -70.223281860351562, -16.855886459350472 ], [ -70.224075317382812, -16.856807708740234 ], [ -70.225959777832031, -16.857671737670842 ], [ -70.22707366943348, -16.857858657836857 ], [ -70.22784423828125, -16.857784271240234 ], [ -70.228408813476449, -16.857448577880803 ], [ -70.230308532714787, -16.857564926147461 ], [ -70.2325439453125, -16.856813430786076 ], [ -70.233146667480412, -16.856357574462891 ], [ -70.235206604003906, -16.856021881103459 ], [ -70.237518310546875, -16.854938507080078 ], [ -70.238563537597656, -16.854890823364258 ], [ -70.241195678710938, -16.855693817138672 ], [ -70.241912841796818, -16.856159210205078 ], [ -70.243820190429631, -16.858095169067383 ], [ -70.245155334472599, -16.86011886596674 ], [ -70.245849609374943, -16.862415313720646 ], [ -70.246788024902287, -16.86439132690424 ], [ -70.247512817382812, -16.867256164550724 ], [ -70.248664855957031, -16.869630813598633 ], [ -70.248901367187443, -16.871175765991211 ], [ -70.249336242675781, -16.87178993225092 ], [ -70.250732421875, -16.875209808349609 ], [ -70.251556396484318, -16.878042221069336 ], [ -70.252952575683594, -16.88148117065424 ], [ -70.253379821777287, -16.887899398803654 ], [ -70.253959655761662, -16.890140533447209 ], [ -70.255294799804631, -16.893398284912053 ], [ -70.255859374999943, -16.895727157592717 ], [ -70.257408142089844, -16.898693084716797 ], [ -70.259696960449219, -16.901035308837834 ], [ -70.260009765625, -16.902097702026367 ], [ -70.258979797363281, -16.9039306640625 ], [ -70.256675720214844, -16.909185409545842 ], [ -70.256408691406193, -16.910251617431641 ], [ -70.256271362304688, -16.912620544433594 ], [ -70.256759643554688, -16.914775848388558 ], [ -70.258895874023381, -16.919712066650334 ], [ -70.259033203125, -16.923877716064453 ], [ -70.253814697265625, -16.928930282592717 ], [ -70.251861572265568, -16.930246353149357 ], [ -70.251319885253906, -16.930875778198242 ], [ -70.251136779785156, -16.931507110595703 ], [ -70.251304626464844, -16.932512283325195 ], [ -70.253280639648381, -16.934749603271484 ], [ -70.253890991210938, -16.935890197753906 ], [ -70.255386352539006, -16.939750671386662 ], [ -70.254898071289006, -16.941999435424748 ], [ -70.253814697265625, -16.944749832153263 ], [ -70.252044677734318, -16.94831466674799 ], [ -70.251106262206918, -16.949697494506779 ], [ -70.248710632324162, -16.95231819152832 ], [ -70.246894836425724, -16.953657150268555 ], [ -70.241088867187386, -16.956991195678711 ], [ -70.239181518554574, -16.957576751708928 ], [ -70.235015869140625, -16.959407806396371 ], [ -70.232002258300724, -16.960275650024414 ], [ -70.229728698730412, -16.960483551025391 ], [ -70.229156494140568, -16.960819244384709 ], [ -70.224693298339844, -16.960788726806641 ], [ -70.224075317382812, -16.960531234741211 ], [ -70.223220825195256, -16.959646224975472 ], [ -70.222282409667912, -16.956369400024357 ], [ -70.221427917480412, -16.955043792724609 ], [ -70.220687866210938, -16.953241348266545 ], [ -70.218841552734318, -16.950664520263672 ], [ -70.216064453125, -16.948005676269531 ], [ -70.210357666015568, -16.943832397460881 ], [ -70.208442687988224, -16.943010330200195 ], [ -70.205497741699162, -16.942861557006722 ], [ -70.204093933105469, -16.943090438842773 ], [ -70.200187683105469, -16.943033218383732 ], [ -70.196868896484375, -16.942325592040959 ], [ -70.19403076171875, -16.941240310668832 ], [ -70.191032409667969, -16.938680648803711 ], [ -70.188552856445312, -16.937162399291992 ], [ -70.186637878417855, -16.934413909912053 ], [ -70.184379577636719, -16.932720184326172 ], [ -70.18084716796875, -16.929220199584904 ], [ -70.180404663085881, -16.927669525146484 ], [ -70.180900573730412, -16.924671173095646 ], [ -70.180862426757812, -16.923011779785156 ], [ -70.180503845214787, -16.921766281127873 ], [ -70.179298400878906, -16.919467926025391 ], [ -70.17913818359375, -16.916879653930664 ], [ -70.178237915039006, -16.915512084960881 ], [ -70.175209045410156, -16.912998199462891 ], [ -70.173713684082031, -16.913026809692383 ], [ -70.172485351562443, -16.914890289306641 ], [ -70.169830322265568, -16.916513442993107 ], [ -70.167892456054688, -16.916917800903263 ], [ -70.166084289550781, -16.916784286499023 ], [ -70.165374755859375, -16.917238235473633 ], [ -70.162864685058537, -16.917909622192383 ], [ -70.159835815429574, -16.918231964111328 ], [ -70.157882690429688, -16.919382095336857 ], [ -70.156219482421875, -16.919780731201172 ], [ -70.15435791015625, -16.920707702636719 ], [ -70.151535034179631, -16.921190261840763 ], [ -70.1497802734375, -16.921878814697266 ], [ -70.148895263671875, -16.924001693725586 ], [ -70.148872375488168, -16.925741195678711 ], [ -70.149551391601562, -16.927433013915959 ], [ -70.150291442871037, -16.928279876708984 ], [ -70.150978088378906, -16.929611206054688 ], [ -70.15230560302723, -16.930454254150391 ], [ -70.153495788574219, -16.932212829589787 ], [ -70.153129577636662, -16.932981491088867 ], [ -70.150558471679631, -16.933629989624023 ], [ -70.149597167968693, -16.934230804443246 ], [ -70.148368835449162, -16.936407089233398 ], [ -70.148040771484375, -16.93812179565424 ], [ -70.147613525390568, -16.938644409179688 ], [ -70.147666931152344, -16.939655303955021 ], [ -70.147300720214844, -16.94099044799799 ], [ -70.146430969238281, -16.942310333251896 ], [ -70.145118713378849, -16.943721771240234 ], [ -70.143409729003849, -16.943851470947209 ], [ -70.139717102050668, -16.943178176879883 ], [ -70.137413024902287, -16.94368934631342 ], [ -70.134147644042912, -16.945396423339844 ], [ -70.128540039062443, -16.950302124023438 ], [ -70.125267028808594, -16.956304550170842 ], [ -70.123664855956974, -16.957880020141602 ], [ -70.121284484863224, -16.959381103515568 ], [ -70.120140075683537, -16.960617065429631 ], [ -70.119834899902344, -16.962890625 ], [ -70.119903564453125, -16.968593597412109 ], [ -70.119125366210938, -16.970558166503849 ], [ -70.117858886718693, -16.972503662109375 ], [ -70.115303039550668, -16.97425460815424 ], [ -70.113433837890625, -16.975172042846623 ], [ -70.106513977050724, -16.977195739746094 ], [ -70.104934692382812, -16.979259490966797 ], [ -70.102546691894531, -16.980354309081974 ], [ -70.100044250488168, -16.982330322265625 ], [ -70.097694396972656, -16.983760833740234 ], [ -70.096282958984375, -16.985088348388672 ], [ -70.096130371093636, -16.985794067382756 ], [ -70.096328735351562, -16.986909866332951 ], [ -70.097038269042969, -16.987781524658203 ], [ -70.098182678222656, -16.988431930541935 ], [ -70.098289489746037, -16.988885879516602 ], [ -70.099586486816406, -16.990598678588867 ], [ -70.099899291992188, -16.991754531860295 ], [ -70.099906921386719, -16.99342155456543 ], [ -70.099647521972599, -16.994478225708008 ], [ -70.098762512207031, -16.996213912963867 ], [ -70.097587585449219, -16.997772216796875 ], [ -70.097450256347599, -16.998678207397461 ], [ -70.098304748535099, -17.000877380371037 ], [ -70.099929809570256, -17.003938674926758 ], [ -70.099327087402344, -17.005943298339787 ], [ -70.098617553710938, -17.006916046142578 ], [ -70.094268798828125, -17.010776519775334 ], [ -70.093185424804688, -17.012174606323185 ], [ -70.091743469238168, -17.013517379760685 ], [ -70.090469360351506, -17.015775680541992 ], [ -70.089424133300724, -17.0169677734375 ], [ -70.08754730224598, -17.018535614013558 ], [ -70.085426330566349, -17.019485473632756 ], [ -70.082427978515625, -17.022449493408089 ], [ -70.081436157226506, -17.023902893066406 ], [ -70.079849243164062, -17.026947021484375 ], [ -70.077735900878906, -17.029661178588867 ], [ -70.07659912109375, -17.032096862792969 ], [ -70.075141906738224, -17.033914566039982 ], [ -70.073631286621094, -17.035356521606388 ], [ -70.069404602050724, -17.035640716552734 ], [ -70.067955017089844, -17.037101745605412 ], [ -70.066940307617131, -17.037231445312386 ], [ -70.066558837890568, -17.037490844726506 ], [ -70.065071105957031, -17.038932800292912 ], [ -70.063766479492131, -17.04075813293457 ], [ -70.063316345214787, -17.041555404663029 ], [ -70.063163757324219, -17.04255485534668 ], [ -70.062309265136719, -17.043882369995117 ], [ -70.061698913574162, -17.044321060180607 ], [ -70.060363769531193, -17.044784545898438 ], [ -70.059112548828068, -17.046337127685547 ], [ -70.057296752929631, -17.047683715820256 ], [ -70.056724548339787, -17.048948287963867 ], [ -70.052551269531136, -17.051702499389648 ], [ -70.050727844238224, -17.053939819335938 ], [ -70.049118041992074, -17.054241180419922 ], [ -70.047683715820199, -17.056045532226562 ], [ -70.045188903808537, -17.057001113891545 ], [ -70.042915344238168, -17.058649063110352 ], [ -70.042999267578068, -17.05911827087391 ], [ -70.043769836425724, -17.059516906738224 ], [ -70.044174194335938, -17.060131072998047 ], [ -70.044670104980469, -17.061874389648438 ], [ -70.044708251953068, -17.063253402709961 ], [ -70.044303894042969, -17.065126419067269 ], [ -70.044174194335938, -17.068521499633732 ], [ -70.042938232421875, -17.071102142333984 ], [ -70.042678833007812, -17.075881958007812 ], [ -70.042335510253849, -17.0765380859375 ], [ -70.042289733886719, -17.077838897705021 ], [ -70.043075561523381, -17.079183578491211 ], [ -70.043273925781193, -17.081195831298714 ], [ -70.043891906738281, -17.0826416015625 ], [ -70.04388427734375, -17.083292007446289 ], [ -70.044380187988281, -17.084880828857365 ], [ -70.044532775878849, -17.087543487548828 ], [ -70.045326232910156, -17.088680267333984 ], [ -70.045448303222656, -17.091449737548828 ], [ -70.0467529296875, -17.093130111694279 ], [ -70.047012329101506, -17.098192214965763 ], [ -70.04754638671875, -17.099945068359318 ], [ -70.047004699706974, -17.102085113525391 ], [ -70.046920776367074, -17.105209350585881 ], [ -70.046447753906136, -17.106792449951172 ], [ -70.046562194824219, -17.108541488647461 ], [ -70.045921325683594, -17.110168457031193 ], [ -70.046005249023438, -17.110620498657227 ], [ -70.046470642089844, -17.111200332641602 ], [ -70.046470642089844, -17.111577987670898 ], [ -70.045745849609318, -17.112867355346623 ], [ -70.044647216796875, -17.113885879516602 ], [ -70.044448852539062, -17.115619659423714 ], [ -70.043632507324219, -17.116636276245117 ], [ -70.042892456054631, -17.119104385375863 ], [ -70.042320251464787, -17.120063781738281 ], [ -70.04217529296875, -17.121259689330998 ], [ -70.042449951171875, -17.122419357299748 ], [ -70.042411804199162, -17.124067306518555 ], [ -70.042091369628906, -17.124942779540959 ], [ -70.041618347167969, -17.125516891479492 ], [ -70.041397094726562, -17.126691818237305 ], [ -70.041000366210881, -17.127340316772461 ], [ -70.040802001953068, -17.127559661865234 ], [ -70.040267944335938, -17.12761116027832 ], [ -70.036460876464844, -17.127138137817383 ], [ -70.035385131835824, -17.126102447509709 ], [ -70.034751892089844, -17.12594032287592 ], [ -70.033866882324219, -17.124856948852539 ], [ -70.032966613769474, -17.124620437622013 ], [ -70.032791137695256, -17.123714447021428 ], [ -70.032257080078125, -17.123331069946289 ], [ -70.031135559082031, -17.12312126159668 ], [ -70.029846191406193, -17.12253379821766 ], [ -70.029319763183594, -17.12360954284668 ], [ -70.027763366699219, -17.124031066894531 ], [ -70.026824951171875, -17.123367309570312 ], [ -70.026702880859261, -17.122465133666992 ], [ -70.025688171386719, -17.121824264526367 ], [ -70.024894714355355, -17.121952056884766 ], [ -70.023231506347656, -17.123361587524357 ], [ -70.022476196289006, -17.12428092956543 ], [ -70.021575927734375, -17.126617431640625 ], [ -70.021308898925781, -17.128324508666935 ], [ -70.020385742187443, -17.12989616394043 ], [ -70.017402648925781, -17.133121490478516 ], [ -70.016204833984318, -17.136911392211857 ], [ -70.014572143554631, -17.138809204101562 ], [ -70.009590148925781, -17.142036437988168 ], [ -70.006919860839844, -17.144401550292912 ], [ -70.004646301269474, -17.145095825195312 ], [ -70.001838684082031, -17.146701812744084 ], [ -69.998786926269531, -17.148084640502873 ], [ -69.997993469238224, -17.148246765136719 ], [ -69.997230529785099, -17.147689819335938 ], [ -69.995689392089787, -17.147863388061523 ], [ -69.994308471679688, -17.148525238036996 ], [ -69.9935302734375, -17.149658203124943 ], [ -69.992729187011662, -17.149593353271484 ], [ -69.991806030273438, -17.150472640991154 ], [ -69.989456176757812, -17.150287628173828 ], [ -69.988853454589844, -17.150634765625 ], [ -69.988006591796875, -17.15062141418457 ], [ -69.987548828125, -17.150905609130746 ], [ -69.986701965332031, -17.153470993041992 ], [ -69.986831665039006, -17.154680252075195 ], [ -69.986602783203125, -17.15560340881342 ], [ -69.987190246581974, -17.156366348266545 ], [ -69.98724365234375, -17.15704154968256 ], [ -69.985786437988224, -17.158468246459904 ], [ -69.985435485839844, -17.159791946411076 ], [ -69.985458374023438, -17.161008834838867 ], [ -69.982673645019531, -17.165372848510742 ], [ -69.982376098632812, -17.166131973266602 ], [ -69.982276916503906, -17.167337417602482 ], [ -69.981513977050781, -17.168506622314453 ], [ -69.98077392578125, -17.168830871581974 ], [ -69.979743957519531, -17.168722152709961 ], [ -69.973571777343693, -17.165561676025334 ], [ -69.972328186035099, -17.165773391723633 ], [ -69.970993041992131, -17.167200088500977 ], [ -69.970390319824219, -17.168392181396484 ], [ -69.970474243164062, -17.170467376708984 ], [ -69.969779968261719, -17.172657012939453 ], [ -69.968467712402344, -17.174047470092773 ], [ -69.968841552734375, -17.175363540649357 ], [ -69.967872619628906, -17.176645278930664 ], [ -69.967903137207031, -17.178258895874023 ], [ -69.964866638183594, -17.179534912109375 ], [ -69.963973999023438, -17.180379867553711 ], [ -69.962608337402287, -17.18065071105957 ], [ -69.961830139160099, -17.181421279907227 ], [ -69.960975646972599, -17.181392669677678 ], [ -69.960029602050724, -17.181934356689453 ], [ -69.958396911621037, -17.183237075805664 ], [ -69.958244323730469, -17.185443878173828 ], [ -69.957817077636662, -17.186214447021484 ], [ -69.954940795898438, -17.188196182250977 ], [ -69.953140258789006, -17.188943862915039 ], [ -69.951538085937443, -17.190464019775334 ], [ -69.949378967285156, -17.191013336181641 ], [ -69.94793701171875, -17.19183158874506 ], [ -69.947242736816349, -17.191570281982422 ], [ -69.946235656738281, -17.192384719848633 ], [ -69.945075988769531, -17.193805694580021 ], [ -69.944877624511605, -17.194459915161133 ], [ -69.943473815917969, -17.195350646972543 ], [ -69.942794799804688, -17.197515487670898 ], [ -69.94244384765625, -17.197967529296875 ], [ -69.939910888671818, -17.19797325134266 ], [ -69.939422607421818, -17.198474884033146 ], [ -69.939125061035099, -17.199367523193359 ], [ -69.938323974609375, -17.199918746948242 ], [ -69.936927795410099, -17.199918746948242 ], [ -69.935317993164006, -17.20038986206049 ], [ -69.933357238769531, -17.200277328491211 ], [ -69.931045532226506, -17.201099395751953 ], [ -69.930953979492074, -17.201171875 ], [ -69.930450439453068, -17.201559066772404 ], [ -69.927490234374943, -17.201728820800724 ], [ -69.92669677734375, -17.202058792114201 ], [ -69.92633056640625, -17.202209472656193 ], [ -69.925544738769531, -17.202896118164062 ], [ -69.925186157226562, -17.203208923339844 ], [ -69.9239501953125, -17.202978134155273 ], [ -69.923469543457031, -17.203111648559513 ], [ -69.922988891601562, -17.203241348266602 ], [ -69.921020507812443, -17.205810546874943 ], [ -69.918495178222656, -17.208160400390625 ], [ -69.917190551757756, -17.209377288818359 ], [ -69.915992736816406, -17.209785461425781 ], [ -69.915679931640568, -17.209724426269474 ], [ -69.915458679199219, -17.20968055725092 ], [ -69.913841247558594, -17.210750579833984 ], [ -69.913093566894474, -17.210969924926758 ], [ -69.910881042480469, -17.211610794067269 ], [ -69.909912109375, -17.212520599365234 ], [ -69.908142089843693, -17.214839935302734 ], [ -69.907066345214844, -17.215738296508789 ], [ -69.904731750488168, -17.215940475463867 ], [ -69.903793334960938, -17.216520309448242 ], [ -69.902496337890625, -17.216560363769531 ], [ -69.901885986328125, -17.216829299926701 ], [ -69.901473999023381, -17.217189788818246 ], [ -69.90020751953125, -17.218290328979492 ], [ -69.900337219238224, -17.219209671020451 ], [ -69.900177001953125, -17.219289779663086 ], [ -69.899330139160156, -17.219718933105469 ], [ -69.898994445800724, -17.22010612487793 ], [ -69.898696899414006, -17.220449447631779 ], [ -69.896873474121037, -17.220329284667912 ], [ -69.8958740234375, -17.220798492431584 ], [ -69.895675659179688, -17.220813751220589 ], [ -69.894897460937443, -17.220869064331055 ], [ -69.893074035644474, -17.220495223999023 ], [ -69.892311096191349, -17.220338821411133 ], [ -69.890449523925781, -17.220779418945256 ], [ -69.889282226562386, -17.220516204833928 ], [ -69.888679504394474, -17.220380783080941 ], [ -69.888557434082031, -17.221158981323242 ], [ -69.888130187988224, -17.221509933471623 ], [ -69.887306213378906, -17.221660614013615 ], [ -69.886642456054688, -17.221469879150334 ], [ -69.886093139648438, -17.221307754516545 ], [ -69.883537292480412, -17.222709655761662 ], [ -69.882202148437443, -17.22248649597168 ], [ -69.881683349609375, -17.222528457641602 ], [ -69.880805969238281, -17.222600936889648 ], [ -69.879470825195312, -17.221900939941406 ], [ -69.878448486328125, -17.221988677978516 ], [ -69.877639770507756, -17.22205924987793 ], [ -69.877479553222656, -17.221826553344727 ], [ -69.877258300781193, -17.221509933471623 ], [ -69.876861572265568, -17.221420288085938 ], [ -69.876167297363281, -17.22184944152832 ], [ -69.875068664550668, -17.22205924987793 ], [ -69.874061584472656, -17.222768783569222 ], [ -69.873489379882812, -17.222768783569222 ], [ -69.873146057128849, -17.223169326782227 ], [ -69.873207092285156, -17.223781585693359 ], [ -69.873275756835938, -17.224508285522461 ], [ -69.872589111328011, -17.225252151489258 ], [ -69.872337341308594, -17.225519180297795 ], [ -69.871498107910156, -17.228378295898438 ], [ -69.870857238769474, -17.229560852050724 ], [ -69.870429992675781, -17.229911804199219 ], [ -69.869895935058537, -17.23005294799799 ], [ -69.869606018066349, -17.230129241943303 ], [ -69.869148254394474, -17.230775833129769 ], [ -69.868827819824219, -17.231218338012638 ], [ -69.867988586425724, -17.231386184692383 ], [ -69.867279052734375, -17.231342315673828 ], [ -69.866592407226562, -17.231300354003793 ], [ -69.864402770996094, -17.232479095458984 ], [ -69.863655090332031, -17.232448577880746 ], [ -69.863410949706974, -17.232439041137695 ], [ -69.863250732421875, -17.232210159301644 ], [ -69.862937927246037, -17.231758117675724 ], [ -69.862091064453068, -17.231599807739201 ], [ -69.860443115234318, -17.232809066772461 ], [ -69.858512878417969, -17.232948303222656 ], [ -69.858016967773438, -17.233787536621094 ], [ -69.857162475585938, -17.234523773193303 ], [ -69.857086181640625, -17.234590530395394 ], [ -69.856597900390625, -17.235988616943359 ], [ -69.855697631835881, -17.236839294433594 ], [ -69.855667114257812, -17.237089157104492 ], [ -69.855537414550781, -17.238037109374943 ], [ -69.854484558105469, -17.238670349121094 ], [ -69.854370117187443, -17.238737106323242 ], [ -69.854393005371094, -17.239147186279297 ], [ -69.853538513183594, -17.240230560302678 ], [ -69.8529052734375, -17.241731643676701 ], [ -69.850837707519474, -17.243717193603516 ], [ -69.850608825683594, -17.243728637695312 ], [ -69.850120544433594, -17.24374961853016 ], [ -69.849563598632812, -17.243581771850586 ], [ -69.849052429199219, -17.243429183959904 ], [ -69.848052978515568, -17.243900299072266 ], [ -69.846275329589844, -17.243904113769531 ], [ -69.845100402831974, -17.243907928466797 ], [ -69.842308044433594, -17.242469787597656 ], [ -69.841461181640625, -17.242221832275391 ], [ -69.840888977050781, -17.242050170898381 ], [ -69.839202880859318, -17.242330551147461 ], [ -69.837516784667969, -17.242099761962891 ], [ -69.836700439453068, -17.242189407348576 ], [ -69.834579467773438, -17.242929458618164 ], [ -69.834213256835938, -17.243274688720703 ], [ -69.833686828613281, -17.243770599365178 ], [ -69.833030700683594, -17.243816375732422 ], [ -69.832283020019531, -17.243871688842773 ], [ -69.831756591796818, -17.243522644042969 ], [ -69.831596374511719, -17.243415832519418 ], [ -69.830780029296875, -17.242151260375977 ], [ -69.830314636230412, -17.241994857788029 ], [ -69.829055786132812, -17.241569519042912 ], [ -69.827789306640625, -17.240568161010685 ], [ -69.827400207519531, -17.240257263183537 ], [ -69.825950622558537, -17.240270614624023 ], [ -69.824264526367188, -17.240615844726506 ], [ -69.822586059570256, -17.240959167480469 ], [ -69.821617126464844, -17.240684509277344 ], [ -69.82086181640625, -17.240467071533203 ], [ -69.820114135742131, -17.240804672241211 ], [ -69.819656372070256, -17.241008758544865 ], [ -69.819099426269531, -17.240182876586857 ], [ -69.819061279296818, -17.240024566650391 ], [ -69.818824768066406, -17.239131927490234 ], [ -69.818374633789062, -17.238588333129826 ], [ -69.817634582519474, -17.238460540771484 ], [ -69.8157958984375, -17.238143920898381 ], [ -69.814590454101506, -17.237701416015625 ], [ -69.813850402832031, -17.237430572509766 ], [ -69.812683105468693, -17.236242294311523 ], [ -69.812141418457031, -17.234880447387582 ], [ -69.810119628906193, -17.233610153198185 ], [ -69.809326171874943, -17.233488082885742 ], [ -69.808807373046875, -17.233535766601562 ], [ -69.804740905761719, -17.233901977539062 ], [ -69.802947998046818, -17.233804702758732 ], [ -69.802139282226562, -17.233484268188477 ], [ -69.801246643066349, -17.231866836547852 ], [ -69.800216674804688, -17.232006072998047 ], [ -69.799751281738281, -17.23206901550293 ], [ -69.798912048339844, -17.231517791748047 ], [ -69.798629760742188, -17.231666564941349 ], [ -69.797592163085938, -17.232212066650391 ], [ -69.796340942382812, -17.232324600219727 ], [ -69.795783996581974, -17.232732772827148 ], [ -69.795036315917912, -17.23324012756342 ], [ -69.794227600097656, -17.233409881591797 ], [ -69.792991638183594, -17.234481811523438 ], [ -69.791786193847599, -17.234867095947266 ], [ -69.790657043456974, -17.234970092773438 ], [ -69.789993286132756, -17.235809326171875 ], [ -69.789016723632756, -17.235700607299748 ], [ -69.787345886230469, -17.237140655517578 ], [ -69.786529541015625, -17.237209320068303 ], [ -69.785308837890568, -17.238170623779183 ], [ -69.784492492675781, -17.239240646362248 ], [ -69.784446716308537, -17.241409301757699 ], [ -69.783332824707031, -17.243268966674691 ], [ -69.782127380371094, -17.24440956115717 ], [ -69.77999114990223, -17.245399475097599 ], [ -69.778396606445312, -17.246719360351506 ], [ -69.776069641113224, -17.249410629272461 ], [ -69.775115966796818, -17.252077102661133 ], [ -69.774009704589844, -17.253629684448185 ], [ -69.772109985351562, -17.255611419677678 ], [ -69.770378112792969, -17.256498336791935 ], [ -69.76953125, -17.257219314575195 ], [ -69.768447875976449, -17.259841918945312 ], [ -69.766670227050781, -17.261569976806641 ], [ -69.766410827636662, -17.262739181518555 ], [ -69.765151977539062, -17.264169692993164 ], [ -69.765167236328125, -17.265110015869141 ], [ -69.766052246093693, -17.265968322753906 ], [ -69.765953063964787, -17.267450332641602 ], [ -69.766548156738281, -17.268508911132812 ], [ -69.766555786132812, -17.271890640258789 ], [ -69.76611328125, -17.27372932434082 ], [ -69.765869140624943, -17.274360656738281 ], [ -69.765151977539062, -17.275178909301758 ], [ -69.765068054199219, -17.276130676269531 ], [ -69.764129638671818, -17.277290344238281 ], [ -69.764091491699219, -17.277820587158146 ], [ -69.761451721191349, -17.280618667602482 ], [ -69.760086059570312, -17.281539916992131 ], [ -69.758331298828068, -17.282009124755803 ], [ -69.757736206054631, -17.28257942199707 ], [ -69.755607604980469, -17.283670425414982 ], [ -69.755256652831974, -17.28368949890131 ], [ -69.754592895507756, -17.283098220825138 ], [ -69.754066467285156, -17.282949447631836 ], [ -69.753356933593693, -17.283039093017578 ], [ -69.752555847167969, -17.283601760864201 ], [ -69.751426696777344, -17.283449172973633 ], [ -69.749755859374886, -17.286079406738281 ], [ -69.748977661132756, -17.286378860473519 ], [ -69.74798583984375, -17.287332534789925 ], [ -69.746536254882812, -17.287809371948129 ], [ -69.745002746582031, -17.289569854736214 ], [ -69.741737365722599, -17.290809631347543 ], [ -69.739143371581974, -17.292430877685433 ], [ -69.737510681152344, -17.292699813842773 ], [ -69.735221862792969, -17.292619705200195 ], [ -69.734413146972656, -17.292530059814339 ], [ -69.733673095703125, -17.291889190673828 ], [ -69.732955932617131, -17.29180908203125 ], [ -69.731941223144531, -17.293079376220646 ], [ -69.732170104980469, -17.294670104980469 ], [ -69.731796264648381, -17.295080184936523 ], [ -69.731101989746094, -17.295190811157227 ], [ -69.729980468749943, -17.29419898986805 ], [ -69.729049682617131, -17.293930053710881 ], [ -69.727767944335938, -17.293100357055664 ], [ -69.727066040039062, -17.293167114257756 ], [ -69.726119995117188, -17.293737411499023 ], [ -69.725135803222599, -17.293840408325195 ], [ -69.724876403808594, -17.29351806640625 ], [ -69.724845886230412, -17.292339324951058 ], [ -69.721755981445312, -17.292469024658203 ], [ -69.720787048339844, -17.291738510131836 ], [ -69.719406127929631, -17.292400360107365 ], [ -69.718109130859375, -17.291439056396484 ], [ -69.717269897460938, -17.291580200195312 ], [ -69.716056823730412, -17.291219711303654 ], [ -69.713577270507756, -17.289039611816406 ], [ -69.713226318359318, -17.287750244140568 ], [ -69.71221923828125, -17.286439895629826 ], [ -69.71270751953125, -17.284250259399357 ], [ -69.712539672851506, -17.28273963928217 ], [ -69.711982727050724, -17.281780242919922 ], [ -69.711219787597599, -17.281848907470589 ], [ -69.710823059081974, -17.281499862670842 ], [ -69.7098388671875, -17.281610488891488 ], [ -69.708900451660156, -17.28130912780756 ], [ -69.705947875976506, -17.278369903564453 ], [ -69.704727172851506, -17.277591705322266 ], [ -69.703140258789062, -17.277549743652287 ], [ -69.702301025390625, -17.277669906616154 ], [ -69.701316833496094, -17.27820968627924 ], [ -69.700469970703125, -17.278099060058537 ], [ -69.699043273925781, -17.276449203491154 ], [ -69.697189331054631, -17.275480270385685 ], [ -69.695121765136719, -17.27367973327631 ], [ -69.694686889648438, -17.273759841918888 ], [ -69.693756103515568, -17.274768829345646 ], [ -69.6932373046875, -17.27492713928217 ], [ -69.691658020019474, -17.276760101318303 ], [ -69.691246032714844, -17.276639938354435 ], [ -69.689987182617188, -17.278360366821232 ], [ -69.689346313476562, -17.278131484985352 ], [ -69.688568115234375, -17.27749061584467 ], [ -69.687057495117188, -17.275588989257812 ], [ -69.685195922851449, -17.276599884033089 ], [ -69.684616088867131, -17.278240203857422 ], [ -69.68386077880848, -17.278779983520508 ], [ -69.682426452636605, -17.27820968627924 ], [ -69.682128906249943, -17.277460098266602 ], [ -69.681251525878849, -17.276779174804631 ], [ -69.680831909179688, -17.27681922912592 ], [ -69.680107116699162, -17.277969360351562 ], [ -69.679573059082031, -17.27808952331543 ], [ -69.67864990234375, -17.277469635009766 ], [ -69.677131652832031, -17.275730133056584 ], [ -69.676406860351506, -17.275680541992188 ], [ -69.674957275390568, -17.276140213012638 ], [ -69.671676635742188, -17.274080276489258 ], [ -69.669876098632812, -17.274450302123967 ], [ -69.668502807617074, -17.273799896240178 ], [ -69.667518615722599, -17.273708343505803 ], [ -69.665687561035156, -17.274620056152344 ], [ -69.663482666015625, -17.27372932434082 ], [ -69.661819458007756, -17.272298812866211 ], [ -69.660987854003906, -17.272418975830078 ], [ -69.65936279296875, -17.270809173583984 ], [ -69.658561706542912, -17.271150588989258 ], [ -69.657432556152287, -17.271228790283146 ], [ -69.6566162109375, -17.271150588989258 ], [ -69.655906677246037, -17.270738601684457 ], [ -69.655059814453011, -17.270709991455078 ], [ -69.654525756835938, -17.271469116210938 ], [ -69.654541015625, -17.272680282592773 ], [ -69.651702880859318, -17.275640487670898 ], [ -69.651702880859318, -17.27633094787592 ], [ -69.652191162109318, -17.277938842773324 ], [ -69.652091979980412, -17.278379440307617 ], [ -69.651199340820312, -17.278900146484375 ], [ -69.650238037109375, -17.27903938293457 ], [ -69.649040222167912, -17.280519485473633 ], [ -69.647628784179688, -17.280389785766602 ], [ -69.647186279296875, -17.280689239501896 ], [ -69.646827697753849, -17.282127380371037 ], [ -69.64794921875, -17.283479690551701 ], [ -69.646041870117188, -17.286470413207894 ], [ -69.645210266113224, -17.28722953796381 ], [ -69.644157409667912, -17.287517547607422 ], [ -69.642326354980469, -17.287391662597656 ], [ -69.641357421875, -17.286851882934457 ], [ -69.636726379394474, -17.286733627319279 ], [ -69.623397827148324, -17.286401748657227 ], [ -69.611953735351449, -17.283708572387582 ], [ -69.593002319335938, -17.284328460693246 ], [ -69.570755004882699, -17.289592742919922 ], [ -69.543907165527344, -17.310049057006836 ], [ -69.535118103027344, -17.317245483398438 ], [ -69.523025512695312, -17.326362609863224 ], [ -69.517265319824219, -17.330707550048828 ], [ -69.508918762206974, -17.336971282958871 ], [ -69.469612121582031, -17.367376327514648 ], [ -69.46185302734375, -17.37398719787592 ], [ -69.460098266601506, -17.375488281249943 ], [ -69.460304260253849, -17.391113281249943 ], [ -69.461181640625, -17.401908874511662 ], [ -69.461296081542969, -17.403789520263615 ], [ -69.462013244628849, -17.416698455810433 ], [ -69.462028503417912, -17.416824340820312 ], [ -69.462059020996094, -17.417306900024357 ], [ -69.462471008300781, -17.424655914306641 ], [ -69.462875366210881, -17.436138153076115 ], [ -69.462493896484318, -17.445474624633789 ], [ -69.461982727050781, -17.457984924316349 ], [ -69.461753845214844, -17.462455749511662 ], [ -69.461723327636662, -17.463035583496037 ], [ -69.461524963378849, -17.467290878295785 ], [ -69.461425781249943, -17.469240188598633 ], [ -69.460586547851506, -17.481147766113224 ], [ -69.463188171386719, -17.482969284057617 ], [ -69.463157653808537, -17.483440399169865 ], [ -69.462646484375, -17.507545471191349 ], [ -69.496620178222599, -17.533069610595703 ], [ -69.504127502441406, -17.539859771728516 ], [ -69.521797180175724, -17.554319381713867 ], [ -69.533416748046875, -17.563810348510742 ], [ -69.547958374023324, -17.576250076293945 ], [ -69.556427001953068, -17.583478927612305 ], [ -69.613990783691406, -17.623809814453068 ], [ -69.622947692871094, -17.630350112914982 ], [ -69.640373229980355, -17.642509460449162 ], [ -69.6522216796875, -17.651069641113281 ], [ -69.661895751953068, -17.657829284667969 ], [ -69.666084289550724, -17.658718109130803 ], [ -69.667251586914006, -17.658964157104435 ], [ -69.670303344726506, -17.658760070800781 ], [ -69.67340087890625, -17.658269882202148 ], [ -69.691337585449219, -17.65641975402832 ], [ -69.702926635742131, -17.655059814453125 ], [ -69.707237243652344, -17.654329299926758 ], [ -69.725517272949162, -17.65235710144043 ], [ -69.727081298828125, -17.651988983154297 ], [ -69.736518859863281, -17.651119232177734 ], [ -69.751815795898438, -17.649269104003849 ], [ -69.754570007324219, -17.649139404296875 ], [ -69.761985778808594, -17.648147583007756 ], [ -69.762817382812443, -17.648269653320312 ], [ -69.763526916503906, -17.648029327392521 ], [ -69.772872924804688, -17.647720336914062 ], [ -69.785057067871094, -17.646240234374943 ], [ -69.797142028808537, -17.646030426025334 ], [ -69.82257080078125, -17.68589973449707 ], [ -69.826705932617131, -17.703830718994084 ], [ -69.826370239257812, -17.70612907409668 ], [ -69.826499938964787, -17.706819534301701 ], [ -69.826255798339844, -17.707096099853516 ], [ -69.825599670410156, -17.711931228637695 ], [ -69.824333190917855, -17.722927093505859 ], [ -69.823410034179688, -17.743694305419865 ], [ -69.818893432617131, -17.747123718261662 ], [ -69.818878173828068, -17.747468948364201 ], [ -69.815643310546818, -17.757610321044865 ], [ -69.806396484374943, -17.767349243164006 ], [ -69.800987243652344, -17.769332885742131 ], [ -69.801704406738224, -17.77578163146967 ], [ -69.8017578125, -17.786314010620117 ], [ -69.801177978515625, -17.793558120727539 ], [ -69.801216125488281, -17.796606063842773 ], [ -69.800689697265625, -17.804220199584847 ], [ -69.79982757568348, -17.824556350708008 ], [ -69.79949951171875, -17.827854156494141 ], [ -69.799522399902287, -17.830900192260685 ], [ -69.799201965332031, -17.834104537963867 ], [ -69.798629760742188, -17.848556518554688 ], [ -69.798408508300781, -17.849950790405273 ], [ -69.798194885253849, -17.858852386474609 ], [ -69.797554016113281, -17.863168716430664 ], [ -69.796867370605355, -17.864753723144531 ], [ -69.794517517089844, -17.868728637695256 ], [ -69.793220520019474, -17.871799468994141 ], [ -69.778732299804631, -17.908657073974609 ], [ -69.755973815917969, -17.936464309692326 ], [ -69.755447387695256, -17.93734169006342 ], [ -69.749755859374886, -17.943952560424805 ], [ -69.754142761230355, -17.985380172729492 ], [ -69.754386901855469, -17.986522674560547 ], [ -69.757072448730412, -17.991792678832951 ], [ -69.761611938476562, -18.001230239868107 ], [ -69.765037536621094, -18.007772445678711 ], [ -69.768333435058537, -18.015428543090763 ], [ -69.770713806152287, -18.020452499389648 ], [ -69.776466369628906, -18.031240463256836 ], [ -69.778396606445312, -18.035791397094727 ], [ -69.785186767578125, -18.051778793334904 ], [ -69.790946960449162, -18.06708908081049 ], [ -69.806297302246037, -18.096488952636719 ], [ -69.81890869140625, -18.118589401245117 ], [ -69.844390869140625, -18.150138854980412 ], [ -69.850563049316293, -18.155767440795898 ], [ -69.874137878417969, -18.17725944519043 ], [ -69.915016174316349, -18.208799362182617 ], [ -69.919906616210938, -18.213771820068303 ], [ -69.928070068359318, -18.225532531738281 ], [ -69.9361572265625, -18.23718070983881 ], [ -69.9478759765625, -18.248031616210938 ], [ -69.953430175781193, -18.251337051391602 ], [ -69.967788696289062, -18.259889602661019 ], [ -69.984725952148381, -18.266519546508789 ], [ -69.993888854980412, -18.267980575561467 ], [ -69.999999999999886, -18.267990112304688 ], [ -70.022491455078068, -18.267990112304688 ], [ -70.048637390136605, -18.264820098876953 ], [ -70.097160339355412, -18.290220260620117 ], [ -70.114387512207031, -18.29888916015625 ], [ -70.136650085449162, -18.307031631469727 ], [ -70.159408569335938, -18.315839767455998 ], [ -70.174629211425781, -18.319490432739144 ], [ -70.190727233886662, -18.319219589233398 ], [ -70.271331787109375, -18.308879852294922 ], [ -70.28594970703125, -18.306331634521484 ], [ -70.304687499999943, -18.30554008483881 ], [ -70.323066711425781, -18.309589385986271 ], [ -70.327873229980355, -18.310640335083008 ], [ -70.340476989746094, -18.316389083862305 ], [ -70.352188110351506, -18.325361251831055 ], [ -70.356742858886662, -18.328390121459961 ], [ -70.363906860351506, -18.334558486938363 ], [ -70.367286682128906, -18.337823867797852 ], [ -70.370826721191406, -18.34193038940424 ], [ -70.37746429443348, -18.350465774536076 ], [ -70.377799987792969, -18.350162506103516 ], [ -70.378654479980469, -18.35180473327631 ], [ -70.378753662109375, -18.35180473327631 ], [ -70.378753662109375, -18.351528167724609 ], [ -70.3790283203125, -18.351528167724609 ], [ -70.3790283203125, -18.351249694824219 ], [ -70.379302978515625, -18.351249694824219 ], [ -70.379302978515625, -18.350971221923828 ], [ -70.379585266113281, -18.350971221923828 ], [ -70.379585266113281, -18.35069465637207 ], [ -70.379859924316406, -18.35069465637207 ], [ -70.379859924316406, -18.35041618347168 ], [ -70.380142211914062, -18.35041618347168 ], [ -70.380142211914062, -18.350139617919865 ], [ -70.380416870117131, -18.350139617919865 ], [ -70.380416870117131, -18.349859237670898 ], [ -70.380691528320256, -18.349859237670898 ], [ -70.380691528320256, -18.349582672119027 ], [ -70.380973815917912, -18.349582672119027 ], [ -70.380973815917912, -18.349306106567326 ], [ -70.381248474121037, -18.349306106567326 ], [ -70.381248474121037, -18.349027633666935 ], [ -70.381530761718693, -18.349027633666935 ], [ -70.381530761718693, -18.348749160766545 ], [ -70.381805419921875, -18.348749160766545 ], [ -70.381805419921875, -18.348472595214844 ], [ -70.382080078125, -18.348472595214844 ], [ -70.382080078125, -18.348194122314453 ], [ -70.382362365722656, -18.348194122314453 ], [ -70.382362365722656, -18.347917556762695 ], [ -70.382637023925781, -18.347917556762695 ], [ -70.382637023925781, -18.347639083862305 ], [ -70.382919311523438, -18.347639083862305 ], [ -70.382919311523438, -18.347360610961914 ], [ -70.383193969726562, -18.347360610961914 ], [ -70.383193969726562, -18.347084045410099 ], [ -70.383468627929631, -18.347084045410099 ], [ -70.383468627929631, -18.346805572509709 ], [ -70.383750915527287, -18.346805572509709 ], [ -70.383750915527287, -18.346527099609261 ], [ -70.384025573730412, -18.346527099609261 ], [ -70.384025573730412, -18.346250534057617 ], [ -70.384307861328068, -18.346250534057617 ], [ -70.384307861328068, -18.34597206115717 ], [ -70.384864807128906, -18.34597206115717 ], [ -70.384864807128906, -18.345693588256779 ], [ -70.385139465332031, -18.345693588256779 ], [ -70.385139465332031, -18.345418930053654 ], [ -70.385696411132812, -18.345418930053654 ], [ -70.385696411132812, -18.345138549804688 ], [ -70.385971069335938, -18.345138549804688 ], [ -70.385971069335938, -18.344861984252816 ], [ -70.386253356933594, -18.344861984252816 ], [ -70.386253356933594, -18.344583511352539 ], [ -70.386528015136605, -18.344583511352539 ], [ -70.386528015136605, -18.344306945800724 ], [ -70.386802673339787, -18.344306945800724 ], [ -70.386802673339787, -18.344028472900334 ], [ -70.387359619140568, -18.344028472900334 ], [ -70.387359619140568, -18.34375 ], [ -70.387641906738224, -18.34375 ], [ -70.387641906738224, -18.343471527099553 ], [ -70.387916564941406, -18.343471527099553 ], [ -70.387916564941406, -18.343196868896484 ], [ -70.388191223144531, -18.343196868896484 ], [ -70.388191223144531, -18.342916488647404 ], [ -70.388473510742188, -18.342916488647404 ], [ -70.388473510742188, -18.342636108398438 ], [ -70.389030456542969, -18.342636108398438 ], [ -70.389030456542969, -18.342361450195312 ], [ -70.389305114746094, -18.342361450195312 ], [ -70.389305114746094, -18.342084884643498 ], [ -70.389579772949105, -18.342084884643498 ], [ -70.389579772949105, -18.34180641174305 ], [ -70.390136718749943, -18.34180641174305 ], [ -70.390136718749943, -18.341527938842773 ], [ -70.390419006347599, -18.341527938842773 ], [ -70.390419006347599, -18.341249465942383 ], [ -70.390975952148381, -18.341249465942383 ], [ -70.390975952148381, -18.340974807739258 ], [ -70.391250610351562, -18.340974807739258 ], [ -70.391250610351562, -18.340692520141602 ], [ -70.391525268554688, -18.340692520141602 ], [ -70.391525268554688, -18.340414047241211 ], [ -70.392082214355469, -18.340414047241211 ], [ -70.392082214355469, -18.340139389038086 ], [ -70.392364501953125, -18.340139389038086 ], [ -70.392364501953125, -18.339860916137695 ], [ -70.39263916015625, -18.339860916137695 ], [ -70.39263916015625, -18.339582443237248 ], [ -70.392913818359261, -18.339582443237248 ], [ -70.392913818359261, -18.339305877685547 ], [ -70.393196105956974, -18.339305877685547 ], [ -70.393196105956974, -18.339027404785156 ], [ -70.393470764160099, -18.339027404785156 ], [ -70.393470764160099, -18.338752746582031 ], [ -70.393753051757756, -18.338752746582031 ], [ -70.393753051757756, -18.338472366332894 ], [ -70.394027709960881, -18.338472366332894 ], [ -70.394027709960881, -18.338193893432617 ], [ -70.394302368164062, -18.338193893432617 ], [ -70.394302368164062, -18.337917327880803 ], [ -70.3951416015625, -18.337917327880803 ], [ -70.3951416015625, -18.337638854980412 ], [ -70.395416259765625, -18.337638854980412 ], [ -70.395416259765625, -18.337360382080021 ], [ -70.39569091796875, -18.337360382080021 ], [ -70.39569091796875, -18.33708381652832 ], [ -70.396530151367131, -18.33708381652832 ], [ -70.396530151367131, -18.33680534362793 ], [ -70.396804809570256, -18.33680534362793 ], [ -70.396804809570256, -18.336250305175781 ], [ -70.397087097167912, -18.336250305175781 ], [ -70.397087097167912, -18.335695266723576 ], [ -70.397361755371037, -18.335695266723576 ], [ -70.397361755371037, -18.335416793823129 ], [ -70.397636413574219, -18.335416793823129 ], [ -70.397636413574219, -18.335138320922852 ], [ -70.397918701171875, -18.335138320922852 ], [ -70.397918701171875, -18.334861755371037 ], [ -70.398193359375, -18.334861755371037 ], [ -70.398193359375, -18.334583282470646 ], [ -70.398750305175781, -18.334583282470646 ], [ -70.398750305175781, -18.334304809570256 ], [ -70.399024963378906, -18.334304809570256 ], [ -70.399024963378906, -18.334028244018555 ], [ -70.399307250976449, -18.334028244018555 ], [ -70.399307250976449, -18.333749771118164 ], [ -70.399864196777287, -18.333749771118164 ], [ -70.399864196777287, -18.333471298217773 ], [ -70.400138854980412, -18.333471298217773 ], [ -70.400138854980412, -18.333194732666016 ], [ -70.400413513183537, -18.333194732666016 ], [ -70.400413513183537, -18.332916259765625 ], [ -70.400970458984375, -18.332916259765625 ], [ -70.400970458984375, -18.33263969421381 ], [ -70.401252746582031, -18.33263969421381 ], [ -70.401252746582031, -18.33236122131342 ], [ -70.401527404785156, -18.33236122131342 ], [ -70.401527404785156, -18.332082748412972 ], [ -70.402084350585938, -18.332082748412972 ], [ -70.402084350585938, -18.331806182861271 ], [ -70.402359008788949, -18.331806182861271 ], [ -70.402359008788949, -18.331527709960881 ], [ -70.40374755859375, -18.331527709960881 ], [ -70.40374755859375, -18.330972671508789 ], [ -70.404029846191406, -18.330972671508789 ], [ -70.404029846191406, -18.330694198608398 ], [ -70.404304504394531, -18.330694198608398 ], [ -70.404304504394531, -18.330417633056641 ], [ -70.404861450195312, -18.330417633056641 ], [ -70.404861450195312, -18.33013916015625 ], [ -70.405136108398438, -18.33013916015625 ], [ -70.405136108398438, -18.329860687255859 ], [ -70.405418395996094, -18.329860687255859 ], [ -70.405418395996094, -18.329584121704045 ], [ -70.405693054199105, -18.329584121704045 ], [ -70.405693054199105, -18.329305648803654 ], [ -70.40625, -18.329305648803654 ], [ -70.40625, -18.329025268554688 ], [ -70.406524658203068, -18.329025268554688 ], [ -70.406524658203068, -18.328750610351562 ], [ -70.406806945800724, -18.328750610351562 ], [ -70.406806945800724, -18.328472137451115 ], [ -70.407081604003906, -18.328472137451115 ], [ -70.407081604003906, -18.328195571899414 ], [ -70.407363891601562, -18.328195571899414 ], [ -70.407363891601562, -18.327917098999023 ], [ -70.407638549804688, -18.327917098999023 ], [ -70.407638549804688, -18.327638626098633 ], [ -70.407913208007812, -18.327638626098633 ], [ -70.407913208007812, -18.327362060546761 ], [ -70.408195495605469, -18.327360153198242 ], [ -70.408195495605469, -18.32708549499506 ], [ -70.408470153808594, -18.32708549499506 ], [ -70.408470153808594, -18.326803207397404 ], [ -70.40875244140625, -18.326803207397404 ], [ -70.40875244140625, -18.326528549194279 ], [ -70.409027099609318, -18.326528549194279 ], [ -70.409027099609318, -18.326250076293888 ], [ -70.409301757812443, -18.326250076293888 ], [ -70.409301757812443, -18.325971603393498 ], [ -70.409858703613224, -18.325971603393498 ], [ -70.409858703613224, -18.32569313049305 ], [ -70.410140991210881, -18.32569313049305 ], [ -70.410140991210881, -18.325416564941349 ], [ -70.410415649414062, -18.325416564941349 ], [ -70.410415649414062, -18.325138092040959 ], [ -70.410972595214844, -18.325138092040959 ], [ -70.410972595214844, -18.324861526489258 ], [ -70.411247253417969, -18.324861526489258 ], [ -70.411247253417969, -18.324581146240178 ], [ -70.41180419921875, -18.324581146240178 ], [ -70.41180419921875, -18.324306488036996 ], [ -70.412086486816293, -18.324304580688477 ], [ -70.412086486816293, -18.324028015136719 ], [ -70.412635803222599, -18.324028015136719 ], [ -70.412635803222599, -18.323749542236328 ], [ -70.413192749023381, -18.323749542236328 ], [ -70.413192749023381, -18.323471069335938 ], [ -70.413749694824219, -18.323471069335938 ], [ -70.413749694824219, -18.323194503784123 ], [ -70.414024353027344, -18.323194503784123 ], [ -70.414024353027344, -18.322916030883732 ], [ -70.414306640625, -18.322916030883732 ], [ -70.414306640625, -18.322639465332031 ], [ -70.414581298828125, -18.322639465332031 ], [ -70.414581298828125, -18.322359085083008 ], [ -70.414863586425781, -18.322359085083008 ], [ -70.414863586425781, -18.322082519531193 ], [ -70.415138244628793, -18.322082519531193 ], [ -70.415138244628793, -18.321805953979492 ], [ -70.415412902831974, -18.321805953979492 ], [ -70.415412902831974, -18.321527481079102 ], [ -70.415695190429631, -18.321527481079102 ], [ -70.415695190429631, -18.321250915527287 ], [ -70.416252136230412, -18.321250915527287 ], [ -70.416252136230412, -18.320972442626839 ], [ -70.417083740234375, -18.320972442626839 ], [ -70.417083740234375, -18.320693969726562 ], [ -70.417640686035156, -18.320693969726562 ], [ -70.417640686035156, -18.320417404174748 ], [ -70.418197631835938, -18.320417404174748 ], [ -70.418197631835938, -18.320138931274357 ], [ -70.418472290038949, -18.320138931274357 ], [ -70.418472290038949, -18.319860458373967 ], [ -70.418746948242131, -18.319860458373967 ], [ -70.418746948242131, -18.319583892822266 ], [ -70.419029235839787, -18.319583892822266 ], [ -70.419029235839787, -18.319305419921875 ], [ -70.419303894042912, -18.319305419921875 ], [ -70.419303894042912, -18.319028854370117 ], [ -70.419586181640568, -18.319028854370117 ], [ -70.419586181640568, -18.318750381469727 ], [ -70.41986083984375, -18.318750381469727 ], [ -70.41986083984375, -18.318471908569336 ], [ -70.420135498046875, -18.318471908569336 ], [ -70.420135498046875, -18.318195343017521 ], [ -70.420417785644531, -18.318195343017521 ], [ -70.420417785644531, -18.31791877746582 ], [ -70.420692443847656, -18.31791877746582 ], [ -70.420692443847656, -18.317638397216797 ], [ -70.420974731445312, -18.317638397216797 ], [ -70.420974731445312, -18.317361831664982 ], [ -70.421249389648438, -18.317361831664982 ], [ -70.421249389648438, -18.317083358764592 ], [ -70.421524047851449, -18.317083358764592 ], [ -70.421524047851449, -18.316806793212891 ], [ -70.422080993652287, -18.316806793212891 ], [ -70.422080993652287, -18.3165283203125 ], [ -70.422363281249943, -18.3165283203125 ], [ -70.422363281249943, -18.316249847412109 ], [ -70.422637939453068, -18.316249847412109 ], [ -70.422637939453068, -18.315971374511719 ], [ -70.422920227050724, -18.315971374511719 ], [ -70.422920227050724, -18.315696716308537 ], [ -70.423194885253906, -18.315696716308537 ], [ -70.423194885253906, -18.315414428710881 ], [ -70.423469543457031, -18.315414428710881 ], [ -70.423469543457031, -18.315139770507756 ], [ -70.424026489257812, -18.315139770507756 ], [ -70.424026489257812, -18.314861297607365 ], [ -70.424308776855469, -18.314861297607365 ], [ -70.424308776855469, -18.314584732055664 ], [ -70.424583435058594, -18.314584732055664 ], [ -70.424583435058594, -18.314306259155217 ], [ -70.424858093261662, -18.314306259155217 ], [ -70.424858093261662, -18.314027786254826 ], [ -70.425415039062443, -18.314027786254826 ], [ -70.425415039062443, -18.313749313354435 ], [ -70.425697326660099, -18.313749313354435 ], [ -70.425697326660099, -18.31347465515131 ], [ -70.426246643066406, -18.31347465515131 ], [ -70.426246643066406, -18.313192367553654 ], [ -70.426528930664062, -18.313192367553654 ], [ -70.426528930664062, -18.312915802001953 ], [ -70.427085876464844, -18.312915802001953 ], [ -70.427085876464844, -18.312639236450195 ], [ -70.427635192871094, -18.312639236450195 ], [ -70.427635192871094, -18.312360763549805 ], [ -70.427917480468636, -18.312360763549805 ], [ -70.427917480468636, -18.312082290649414 ], [ -70.428474426269474, -18.312082290649414 ], [ -70.428474426269474, -18.311805725097599 ], [ -70.428749084472599, -18.311805725097599 ], [ -70.428749084472599, -18.311527252197152 ], [ -70.429306030273438, -18.311527252197152 ], [ -70.429306030273438, -18.311250686645508 ], [ -70.429862976074219, -18.311250686645508 ], [ -70.429862976074219, -18.310970306396484 ], [ -70.430137634277344, -18.310970306396484 ], [ -70.430137634277344, -18.31069374084467 ], [ -70.430694580078125, -18.31069374084467 ], [ -70.430694580078125, -18.310417175292969 ], [ -70.430969238281136, -18.310417175292969 ], [ -70.430969238281136, -18.310138702392578 ], [ -70.431526184081974, -18.310138702392578 ], [ -70.431526184081974, -18.309860229492188 ], [ -70.431808471679631, -18.309860229492188 ], [ -70.431808471679631, -18.30958366394043 ], [ -70.432357788085938, -18.30958366394043 ], [ -70.432357788085938, -18.309305191040039 ], [ -70.432640075683594, -18.309305191040039 ], [ -70.432640075683594, -18.309028625488224 ], [ -70.433197021484375, -18.309028625488224 ], [ -70.433197021484375, -18.308750152587834 ], [ -70.433746337890625, -18.308750152587834 ], [ -70.433746337890625, -18.308471679687443 ], [ -70.434028625488281, -18.308471679687443 ], [ -70.434028625488281, -18.308195114135742 ], [ -70.434585571289006, -18.308195114135742 ], [ -70.434585571289006, -18.307916641235295 ], [ -70.434860229492131, -18.307916641235295 ], [ -70.434860229492131, -18.307638168334904 ], [ -70.435417175292912, -18.307638168334904 ], [ -70.435417175292912, -18.307361602783203 ], [ -70.435691833496094, -18.307361602783203 ], [ -70.435691833496094, -18.307083129882812 ], [ -70.436248779296875, -18.307083129882812 ], [ -70.436248779296875, -18.306804656982422 ], [ -70.436531066894531, -18.306804656982422 ], [ -70.436531066894531, -18.306528091430664 ], [ -70.437080383300781, -18.306528091430664 ], [ -70.437080383300781, -18.306249618530273 ], [ -70.437362670898438, -18.306249618530273 ], [ -70.437362670898438, -18.305973052978459 ], [ -70.437919616699162, -18.305973052978459 ], [ -70.437919616699162, -18.305694580078068 ], [ -70.438194274902287, -18.305694580078068 ], [ -70.438194274902287, -18.305416107177678 ], [ -70.438468933105412, -18.305416107177678 ], [ -70.438468933105412, -18.305139541625977 ], [ -70.438751220703068, -18.305139541625977 ], [ -70.438751220703068, -18.304861068725586 ], [ -70.43902587890625, -18.304861068725586 ], [ -70.43902587890625, -18.304582595825138 ], [ -70.439308166503906, -18.304582595825138 ], [ -70.439308166503906, -18.304307937622013 ], [ -70.439857482910156, -18.304307937622013 ], [ -70.439857482910156, -18.304027557373047 ], [ -70.440139770507812, -18.304027557373047 ], [ -70.440139770507812, -18.303749084472656 ], [ -70.440414428710938, -18.303749084472656 ], [ -70.440414428710938, -18.303472518920785 ], [ -70.44069671630848, -18.303472518920785 ], [ -70.44069671630848, -18.303195953369084 ], [ -70.440971374511662, -18.303195953369084 ], [ -70.440971374511662, -18.302917480468693 ], [ -70.441253662109318, -18.302917480468693 ], [ -70.441253662109318, -18.302639007568303 ], [ -70.441528320312443, -18.302639007568303 ], [ -70.441528320312443, -18.302360534667912 ], [ -70.442642211914062, -18.302360534667912 ], [ -70.442642211914062, -18.30208587646473 ], [ -70.443473815917969, -18.30208587646473 ], [ -70.443473815917969, -18.301803588867074 ], [ -70.444030761718636, -18.301803588867074 ], [ -70.444030761718636, -18.301525115966797 ], [ -70.444305419921818, -18.301525115966797 ], [ -70.444305419921818, -18.301250457763672 ], [ -70.444580078124943, -18.301250457763672 ], [ -70.444580078124943, -18.300973892211857 ], [ -70.444862365722599, -18.300973892211857 ], [ -70.444862365722599, -18.300416946411019 ], [ -70.445137023925781, -18.300416946411019 ], [ -70.445137023925781, -18.300138473510742 ], [ -70.445419311523438, -18.300138473510742 ], [ -70.445419311523438, -18.299863815307617 ], [ -70.445693969726562, -18.299863815307617 ], [ -70.445693969726562, -18.299581527709961 ], [ -70.446525573730469, -18.299581527709961 ], [ -70.446525573730469, -18.29930305480957 ], [ -70.447364807128849, -18.29930305480957 ], [ -70.447364807128849, -18.299028396606445 ], [ -70.448196411132756, -18.299028396606445 ], [ -70.448196411132756, -18.298749923706055 ], [ -70.448471069335938, -18.298749923706055 ], [ -70.448471069335938, -18.298471450805664 ], [ -70.449028015136719, -18.298471450805664 ], [ -70.449028015136719, -18.298194885253906 ], [ -70.449302673339844, -18.298194885253906 ], [ -70.449302673339844, -18.297916412353516 ], [ -70.4495849609375, -18.297916412353516 ], [ -70.4495849609375, -18.297637939453125 ], [ -70.450141906738281, -18.297637939453125 ], [ -70.450141906738281, -18.29736137390131 ], [ -70.450416564941349, -18.29736137390131 ], [ -70.450416564941349, -18.297082901000863 ], [ -70.450691223144474, -18.297082901000863 ], [ -70.450691223144474, -18.296806335449162 ], [ -70.450973510742131, -18.296806335449162 ], [ -70.450973510742131, -18.296527862548771 ], [ -70.451530456542912, -18.296527862548771 ], [ -70.451530456542912, -18.296249389648381 ], [ -70.451805114746094, -18.296249389648381 ], [ -70.451805114746094, -18.29597282409668 ], [ -70.452079772949219, -18.29597282409668 ], [ -70.452079772949219, -18.295694351196289 ], [ -70.45263671875, -18.295694351196289 ], [ -70.45263671875, -18.295415878295898 ], [ -70.452919006347656, -18.295415878295898 ], [ -70.452919006347656, -18.295139312744141 ], [ -70.453193664550781, -18.295139312744141 ], [ -70.453193664550781, -18.29486083984375 ], [ -70.453750610351506, -18.29486083984375 ], [ -70.453750610351506, -18.294584274291935 ], [ -70.454025268554631, -18.294582366943359 ], [ -70.454025268554631, -18.294305801391545 ], [ -70.454307556152287, -18.294305801391545 ], [ -70.454307556152287, -18.294027328491097 ], [ -70.454864501953125, -18.294027328491097 ], [ -70.454864501953125, -18.293750762939453 ], [ -70.45513916015625, -18.293750762939453 ], [ -70.45513916015625, -18.293472290039006 ], [ -70.455413818359375, -18.293472290039006 ], [ -70.455413818359375, -18.293193817138615 ], [ -70.455696105957031, -18.293193817138615 ], [ -70.455696105957031, -18.292917251586914 ], [ -70.456253051757812, -18.292917251586914 ], [ -70.456253051757812, -18.292638778686523 ], [ -70.456527709960824, -18.292638778686523 ], [ -70.456527709960824, -18.292360305786133 ], [ -70.456802368164006, -18.292360305786133 ], [ -70.456802368164006, -18.292083740234375 ], [ -70.457359313964787, -18.292083740234375 ], [ -70.457359313964787, -18.291805267333984 ], [ -70.457641601562443, -18.291805267333984 ], [ -70.457641601562443, -18.29152870178217 ], [ -70.45819091796875, -18.29152870178217 ], [ -70.45819091796875, -18.291250228881779 ], [ -70.458747863769531, -18.291250228881779 ], [ -70.458747863769531, -18.290971755981388 ], [ -70.459304809570312, -18.290971755981388 ], [ -70.459304809570312, -18.290695190429688 ], [ -70.460693359374943, -18.290695190429688 ], [ -70.460693359374943, -18.29041671752924 ], [ -70.461250305175781, -18.29041671752924 ], [ -70.461250305175781, -18.290138244628849 ], [ -70.460975646972599, -18.290138244628849 ], [ -70.460975646972599, -18.289861679077148 ], [ -70.460693359374943, -18.289861679077148 ], [ -70.460693359374943, -18.289583206176758 ], [ -70.460975646972599, -18.289583206176758 ], [ -70.460975646972599, -18.289306640624886 ], [ -70.461524963378906, -18.289306640624886 ], [ -70.461524963378906, -18.289028167724609 ], [ -70.461807250976562, -18.289028167724609 ], [ -70.461807250976562, -18.288749694824219 ], [ -70.462364196777344, -18.288749694824219 ], [ -70.462364196777344, -18.288473129272404 ], [ -70.462638854980469, -18.288473129272404 ], [ -70.462638854980469, -18.288196563720703 ], [ -70.46291351318348, -18.288196563720703 ], [ -70.46291351318348, -18.287914276123047 ], [ -70.463470458984318, -18.287914276123047 ], [ -70.463470458984318, -18.287639617919922 ], [ -70.463752746581974, -18.287639617919922 ], [ -70.463752746581974, -18.287361145019531 ], [ -70.464302062988281, -18.287361145019531 ], [ -70.464302062988281, -18.287084579467773 ], [ -70.464584350585938, -18.287084579467773 ], [ -70.464584350585938, -18.286804199218693 ], [ -70.465141296386719, -18.286804199218693 ], [ -70.465141296386719, -18.286527633666992 ], [ -70.465415954589844, -18.286527633666992 ], [ -70.465415954589844, -18.286249160766602 ], [ -70.465690612792969, -18.286249160766602 ], [ -70.4656982421875, -18.285974502563477 ], [ -70.466247558593693, -18.285974502563477 ], [ -70.466247558593693, -18.28569221496582 ], [ -70.466529846191349, -18.28569221496582 ], [ -70.466529846191349, -18.285417556762638 ], [ -70.467086791992131, -18.285417556762638 ], [ -70.467086791992131, -18.285139083862248 ], [ -70.467361450195256, -18.285139083862248 ], [ -70.467361450195256, -18.284860610961857 ], [ -70.467636108398438, -18.284860610961857 ], [ -70.467636108398438, -18.284582138061467 ], [ -70.468193054199219, -18.284582138061467 ], [ -70.468193054199219, -18.284305572509766 ], [ -70.468475341796875, -18.284305572509766 ], [ -70.468475341796875, -18.284027099609318 ], [ -70.469024658203125, -18.284027099609318 ], [ -70.469024658203125, -18.283750534057617 ], [ -70.469306945800668, -18.283750534057617 ], [ -70.469306945800668, -18.283470153808537 ], [ -70.469863891601506, -18.283470153808537 ], [ -70.469863891601506, -18.283193588256836 ], [ -70.470138549804631, -18.283193588256836 ], [ -70.470138549804631, -18.282917022704964 ], [ -70.470695495605469, -18.282917022704964 ], [ -70.470695495605469, -18.282638549804688 ], [ -70.470970153808594, -18.282638549804688 ], [ -70.470970153808594, -18.282360076904297 ], [ -70.471527099609375, -18.282360076904297 ], [ -70.471527099609375, -18.282083511352482 ], [ -70.4718017578125, -18.282083511352482 ], [ -70.4718017578125, -18.281805038452092 ], [ -70.472358703613168, -18.281805038452092 ], [ -70.472358703613168, -18.281528472900391 ], [ -70.472640991210824, -18.281528472900391 ], [ -70.472640991210824, -18.281248092651254 ], [ -70.473197937011662, -18.281248092651254 ], [ -70.473197937011662, -18.280971527099609 ], [ -70.473472595214787, -18.280971527099609 ], [ -70.473472595214787, -18.280694961547852 ], [ -70.474029541015625, -18.280694961547852 ], [ -70.474029541015625, -18.280416488647461 ], [ -70.47430419921875, -18.280416488647461 ], [ -70.47430419921875, -18.280139923095646 ], [ -70.474861145019531, -18.280139923095646 ], [ -70.474861145019531, -18.279861450195256 ], [ -70.475135803222656, -18.279861450195256 ], [ -70.475135803222656, -18.279582977294808 ], [ -70.475692749023324, -18.279582977294808 ], [ -70.475692749023324, -18.279306411743107 ], [ -70.475975036621037, -18.279306411743107 ], [ -70.475975036621037, -18.279029846191406 ], [ -70.476524353027287, -18.279029846191406 ], [ -70.476524353027287, -18.278749465942326 ], [ -70.476806640624943, -18.278749465942326 ], [ -70.476806640624943, -18.278472900390625 ], [ -70.477363586425781, -18.278472900390625 ], [ -70.477363586425781, -18.278194427490234 ], [ -70.477638244628906, -18.278194427490234 ], [ -70.477638244628906, -18.277917861938477 ], [ -70.479026794433537, -18.277917861938477 ], [ -70.479026794433537, -18.277639389038086 ], [ -70.479309082031193, -18.277639389038086 ], [ -70.479309082031193, -18.277360916137695 ], [ -70.479858398437443, -18.277360916137695 ], [ -70.479858398437443, -18.277082443237305 ], [ -70.480140686035099, -18.277082443237305 ], [ -70.480140686035099, -18.27680778503418 ], [ -70.480697631835938, -18.27680778503418 ], [ -70.480697631835938, -18.276527404785043 ], [ -70.480972290039062, -18.276527404785043 ], [ -70.480972290039062, -18.276250839233398 ], [ -70.481246948242188, -18.276250839233398 ], [ -70.481246948242188, -18.275972366332951 ], [ -70.481803894042969, -18.275972366332951 ], [ -70.481803894042969, -18.27569580078125 ], [ -70.482086181640511, -18.27569580078125 ], [ -70.482086181640511, -18.275417327880859 ], [ -70.482360839843693, -18.275417327880859 ], [ -70.482360839843693, -18.275138854980469 ], [ -70.482917785644474, -18.275138854980469 ], [ -70.482917785644474, -18.274585723876896 ], [ -70.483749389648438, -18.274585723876896 ], [ -70.483749389648438, -18.27430343627924 ], [ -70.484024047851562, -18.27430343627924 ], [ -70.484024047851562, -18.274026870727539 ], [ -70.484580993652344, -18.274026870727539 ], [ -70.484580993652344, -18.273750305175724 ], [ -70.48486328125, -18.273750305175724 ], [ -70.48486328125, -18.273473739624023 ], [ -70.485420227050668, -18.273473739624023 ], [ -70.485420227050668, -18.273193359374886 ], [ -70.485694885253849, -18.273193359374886 ], [ -70.485694885253849, -18.272916793823185 ], [ -70.486251831054631, -18.272916793823185 ], [ -70.486251831054631, -18.272638320922795 ], [ -70.486808776855469, -18.272638320922795 ], [ -70.486808776855469, -18.27236366271967 ], [ -70.487358093261719, -18.27236366271967 ], [ -70.487358093261719, -18.272081375122013 ], [ -70.4879150390625, -18.272081375122013 ], [ -70.4879150390625, -18.271804809570312 ], [ -70.488746643066349, -18.271804809570312 ], [ -70.488746643066349, -18.271528244018555 ], [ -70.489585876464787, -18.271528244018555 ], [ -70.489585876464787, -18.270971298217773 ], [ -70.490135192871094, -18.270971298217773 ], [ -70.490135192871094, -18.270694732665959 ], [ -70.49041748046875, -18.270694732665959 ], [ -70.49041748046875, -18.270416259765568 ], [ -70.490974426269531, -18.270416259765568 ], [ -70.490974426269531, -18.270139694213867 ], [ -70.491249084472656, -18.270139694213867 ], [ -70.491249084472656, -18.269859313964844 ], [ -70.491806030273381, -18.269859313964844 ], [ -70.491806030273381, -18.269582748413029 ], [ -70.492362976074162, -18.269582748413029 ], [ -70.492362976074162, -18.269306182861328 ], [ -70.492637634277287, -18.269306182861328 ], [ -70.492637634277287, -18.269027709960938 ], [ -70.493194580078125, -18.269027709960938 ], [ -70.493194580078125, -18.268749237060547 ], [ -70.49346923828125, -18.268749237060547 ], [ -70.49346923828125, -18.268194198608398 ], [ -70.493751525878906, -18.268194198608398 ], [ -70.493751525878906, -18.267915725708008 ], [ -70.494308471679688, -18.267915725708008 ], [ -70.494308471679688, -18.267639160156193 ], [ -70.494857788085881, -18.267639160156193 ], [ -70.494857788085881, -18.267360687255803 ], [ -70.495140075683537, -18.267360687255803 ], [ -70.495140075683537, -18.267084121704102 ], [ -70.495697021484318, -18.267084121704102 ], [ -70.495697021484318, -18.266805648803711 ], [ -70.495971679687443, -18.266805648803711 ], [ -70.495971679687443, -18.266527175903263 ], [ -70.496528625488281, -18.266527175903263 ], [ -70.496528625488281, -18.266250610351562 ], [ -70.496803283691406, -18.266250610351562 ], [ -70.496803283691406, -18.265972137451172 ], [ -70.497085571289062, -18.265972137451172 ], [ -70.497085571289062, -18.265693664550781 ], [ -70.497360229492188, -18.265693664550781 ], [ -70.497360229492188, -18.26541709899891 ], [ -70.497917175292855, -18.26541709899891 ], [ -70.497917175292855, -18.265138626098633 ], [ -70.498191833496037, -18.265138626098633 ], [ -70.498191833496037, -18.264862060546818 ], [ -70.498748779296818, -18.264860153198242 ], [ -70.498748779296818, -18.264583587646428 ], [ -70.499031066894474, -18.264583587646428 ], [ -70.499031066894474, -18.264305114746037 ], [ -70.499580383300781, -18.264305114746037 ], [ -70.499580383300781, -18.264028549194336 ], [ -70.499862670898438, -18.264028549194336 ], [ -70.499862670898438, -18.263750076293945 ], [ -70.500137329101562, -18.263750076293945 ], [ -70.500137329101562, -18.263471603393555 ], [ -70.500694274902344, -18.263471603393555 ], [ -70.500694274902344, -18.263196945190373 ], [ -70.500968933105355, -18.263196945190373 ], [ -70.500968933105355, -18.262916564941406 ], [ -70.501525878906193, -18.262916564941406 ], [ -70.501525878906193, -18.262638092041016 ], [ -70.501808166503849, -18.262638092041016 ], [ -70.501808166503849, -18.262361526489201 ], [ -70.502357482910156, -18.262361526489201 ], [ -70.502357482910156, -18.262083053588754 ], [ -70.502639770507812, -18.262083053588754 ], [ -70.502639770507812, -18.261806488037053 ], [ -70.503196716308594, -18.261806488037053 ], [ -70.503196716308594, -18.261528015136662 ], [ -70.503471374511719, -18.261528015136662 ], [ -70.503471374511719, -18.261249542236271 ], [ -70.5040283203125, -18.261249542236271 ], [ -70.5040283203125, -18.260974884033146 ], [ -70.504302978515511, -18.260974884033146 ], [ -70.504302978515511, -18.26069259643549 ], [ -70.504859924316349, -18.26069259643549 ], [ -70.504859924316349, -18.260414123535043 ], [ -70.505142211914006, -18.260414123535043 ], [ -70.505142211914006, -18.260139465332031 ], [ -70.505973815917969, -18.260139465332031 ], [ -70.505973815917969, -18.259862899780217 ], [ -70.506248474121094, -18.259862899780217 ], [ -70.506248474121094, -18.25958251953125 ], [ -70.506805419921875, -18.25958251953125 ], [ -70.506805419921875, -18.259304046630859 ], [ -70.507080078125, -18.259304046630859 ], [ -70.507080078125, -18.259027481078988 ], [ -70.507362365722656, -18.259027481078988 ], [ -70.507362365722656, -18.258752822875977 ], [ -70.507637023925724, -18.258752822875977 ], [ -70.507637023925724, -18.258474349975586 ], [ -70.507919311523381, -18.258474349975586 ], [ -70.507919311523381, -18.25819206237793 ], [ -70.508468627929631, -18.25819206237793 ], [ -70.508468627929631, -18.257917404174805 ], [ -70.508750915527287, -18.257917404174805 ], [ -70.508750915527287, -18.257638931274414 ], [ -70.509025573730469, -18.257638931274414 ], [ -70.509025573730469, -18.257360458374023 ], [ -70.509307861328125, -18.257360458374023 ], [ -70.509307861328125, -18.257083892822266 ], [ -70.509864807128906, -18.257083892822266 ], [ -70.509864807128906, -18.256805419921875 ], [ -70.510414123535156, -18.256805419921875 ], [ -70.510414123535156, -18.256526947021484 ], [ -70.511253356933537, -18.256526947021484 ], [ -70.511253356933537, -18.25625038146967 ], [ -70.5120849609375, -18.25625038146967 ], [ -70.5120849609375, -18.255971908569279 ], [ -70.512641906738281, -18.255971908569279 ], [ -70.512641906738281, -18.255695343017578 ], [ -70.512916564941406, -18.255695343017578 ], [ -70.512916564941406, -18.255416870117131 ], [ -70.513473510742188, -18.255416870117131 ], [ -70.513473510742188, -18.25513839721674 ], [ -70.513748168945199, -18.25513839721674 ], [ -70.513748168945199, -18.254861831665039 ], [ -70.514305114746037, -18.254861831665039 ], [ -70.514305114746037, -18.254583358764648 ], [ -70.514579772949162, -18.254583358764648 ], [ -70.514579772949162, -18.254304885864258 ], [ -70.51513671875, -18.254304885864258 ], [ -70.51513671875, -18.2540283203125 ], [ -70.515419006347656, -18.2540283203125 ], [ -70.515419006347656, -18.253749847412109 ], [ -70.515693664550781, -18.253749847412109 ], [ -70.515693664550781, -18.253471374511719 ], [ -70.516250610351562, -18.253471374511719 ], [ -70.516250610351562, -18.253194808959904 ], [ -70.516525268554688, -18.253194808959904 ], [ -70.516525268554688, -18.252916336059513 ], [ -70.516807556152344, -18.252916336059513 ], [ -70.516807556152344, -18.252639770507812 ], [ -70.518470764160156, -18.252639770507812 ], [ -70.518470764160156, -18.252361297607422 ], [ -70.518753051757812, -18.252361297607422 ], [ -70.518753051757812, -18.252082824706974 ], [ -70.519027709960938, -18.252082824706974 ], [ -70.519027709960938, -18.251806259155273 ], [ -70.519584655761719, -18.251806259155273 ], [ -70.519584655761719, -18.251527786254883 ], [ -70.519859313964844, -18.251527786254883 ], [ -70.519859313964844, -18.251249313354492 ], [ -70.5201416015625, -18.251249313354492 ], [ -70.5201416015625, -18.250972747802621 ], [ -70.520690917968693, -18.250972747802621 ], [ -70.520690917968693, -18.250694274902344 ], [ -70.520973205566349, -18.250694274902344 ], [ -70.520973205566349, -18.250417709350529 ], [ -70.521247863769474, -18.250417709350529 ], [ -70.521247863769474, -18.250139236450138 ], [ -70.521804809570312, -18.250139236450138 ], [ -70.521804809570312, -18.249860763549748 ], [ -70.522087097167969, -18.249860763549748 ], [ -70.522087097167969, -18.249584197998047 ], [ -70.522361755371094, -18.249584197998047 ], [ -70.522361755371094, -18.249307632446289 ], [ -70.522636413574219, -18.249307632446289 ], [ -70.522636413574219, -18.249027252197209 ], [ -70.524024963378849, -18.249027252197209 ], [ -70.524024963378849, -18.248750686645508 ], [ -70.524307250976506, -18.248750686645508 ], [ -70.524307250976506, -18.248472213745117 ], [ -70.524864196777344, -18.248472213745117 ], [ -70.524864196777344, -18.248195648193303 ], [ -70.525138854980469, -18.248195648193303 ], [ -70.525138854980469, -18.247917175292855 ], [ -70.525413513183594, -18.247917175292855 ], [ -70.525413513183594, -18.247638702392578 ], [ -70.52569580078125, -18.247638702392578 ], [ -70.52569580078125, -18.247360229492188 ], [ -70.525970458984375, -18.247360229492188 ], [ -70.525970458984375, -18.247085571289062 ], [ -70.526527404785043, -18.247085571289062 ], [ -70.526527404785043, -18.246803283691406 ], [ -70.527084350585881, -18.246803283691406 ], [ -70.527084350585881, -18.246528625488281 ], [ -70.527359008789006, -18.246528625488281 ], [ -70.527359008789006, -18.246250152587891 ], [ -70.527915954589844, -18.246250152587891 ], [ -70.527915954589844, -18.2459716796875 ], [ -70.528472900390625, -18.2459716796875 ], [ -70.528472900390625, -18.245693206787053 ], [ -70.529029846191406, -18.245693206787053 ], [ -70.529029846191406, -18.245416641235352 ], [ -70.529586791992188, -18.245416641235352 ], [ -70.529586791992188, -18.245138168334961 ], [ -70.530136108398381, -18.245138168334961 ], [ -70.530136108398381, -18.244863510131836 ], [ -70.530418395996037, -18.244863510131836 ], [ -70.530418395996037, -18.24458122253418 ], [ -70.530975341796818, -18.24458122253418 ], [ -70.530975341796818, -18.244304656982422 ], [ -70.53125, -18.244304656982422 ], [ -70.53125, -18.244028091430607 ], [ -70.531524658203125, -18.244028091430607 ], [ -70.531524658203125, -18.243749618530217 ], [ -70.532081604003906, -18.243749618530217 ], [ -70.532081604003906, -18.243471145629826 ], [ -70.532363891601562, -18.243471145629826 ], [ -70.532363891601562, -18.243194580078125 ], [ -70.532913208007699, -18.243194580078125 ], [ -70.532913208007699, -18.242916107177734 ], [ -70.533470153808537, -18.242916107177734 ], [ -70.533470153808537, -18.242639541625977 ], [ -70.533752441406193, -18.242639541625977 ], [ -70.533752441406193, -18.242359161376896 ], [ -70.5343017578125, -18.242359161376896 ], [ -70.5343017578125, -18.242082595825195 ], [ -70.534858703613281, -18.242082595825195 ], [ -70.534858703613281, -18.241806030273381 ], [ -70.535415649414062, -18.241806030273381 ], [ -70.535415649414062, -18.241527557372933 ], [ -70.535697937011719, -18.241527557372933 ], [ -70.535697937011719, -18.241249084472656 ], [ -70.536247253417912, -18.241249084472656 ], [ -70.536247253417912, -18.240972518920842 ], [ -70.536804199218693, -18.240972518920842 ], [ -70.536804199218693, -18.240694046020451 ], [ -70.537361145019474, -18.240694046020451 ], [ -70.537361145019474, -18.24041748046875 ], [ -70.537635803222656, -18.24041748046875 ], [ -70.537635803222656, -18.24013710021967 ], [ -70.538192749023438, -18.24013710021967 ], [ -70.538192749023438, -18.239860534667969 ], [ -70.538749694824219, -18.239860534667969 ], [ -70.538749694824219, -18.239583969116211 ], [ -70.539306640624886, -18.239583969116211 ], [ -70.539306640624886, -18.23930549621582 ], [ -70.539581298828068, -18.23930549621582 ], [ -70.539581298828068, -18.239028930664006 ], [ -70.540138244628849, -18.239028930664006 ], [ -70.540138244628849, -18.238750457763615 ], [ -70.540695190429688, -18.238750457763615 ], [ -70.540695190429688, -18.238471984863224 ], [ -70.540969848632812, -18.238471984863224 ], [ -70.540969848632812, -18.238193511962777 ], [ -70.541526794433594, -18.238193511962777 ], [ -70.541526794433594, -18.237918853759766 ], [ -70.54180908203125, -18.237918853759766 ], [ -70.54180908203125, -18.237638473510685 ], [ -70.542358398437386, -18.237638473510685 ], [ -70.542358398437386, -18.237361907958984 ], [ -70.542915344238224, -18.237361907958984 ], [ -70.542915344238224, -18.237083435058594 ], [ -70.543472290039006, -18.237083435058594 ], [ -70.543472290039006, -18.236806869506722 ], [ -70.544029235839844, -18.236806869506722 ], [ -70.544029235839844, -18.236528396606445 ], [ -70.544586181640625, -18.236528396606445 ], [ -70.544586181640625, -18.236249923706055 ], [ -70.545135498046875, -18.236249923706055 ], [ -70.545135498046875, -18.235971450805664 ], [ -70.545692443847543, -18.235971450805664 ], [ -70.545692443847543, -18.235696792602539 ], [ -70.546249389648381, -18.235696792602539 ], [ -70.546249389648381, -18.235416412353459 ], [ -70.546806335449162, -18.235416412353459 ], [ -70.546806335449162, -18.235137939453011 ], [ -70.547080993652344, -18.235137939453011 ], [ -70.547080993652344, -18.234861373901367 ], [ -70.547637939453125, -18.234861373901367 ], [ -70.547637939453125, -18.234584808349609 ], [ -70.547920227050781, -18.234584808349609 ], [ -70.547920227050781, -18.234306335449219 ], [ -70.548194885253906, -18.234306335449219 ], [ -70.548194885253906, -18.234027862548828 ], [ -70.548469543457031, -18.234027862548828 ], [ -70.548469543457031, -18.233749389648438 ], [ -70.548751831054688, -18.233749389648438 ], [ -70.548751831054688, -18.233474731445312 ], [ -70.549858093261662, -18.233474731445312 ], [ -70.549858093261662, -18.233192443847656 ], [ -70.5504150390625, -18.233192443847656 ], [ -70.5504150390625, -18.232915878295898 ], [ -70.550971984863281, -18.232915878295898 ], [ -70.550971984863281, -18.232639312744084 ], [ -70.551528930664062, -18.232639312744084 ], [ -70.551528930664062, -18.232360839843693 ], [ -70.55208587646473, -18.232360839843693 ], [ -70.55208587646473, -18.232082366943303 ], [ -70.552635192871037, -18.232082366943303 ], [ -70.552635192871037, -18.231805801391602 ], [ -70.552917480468693, -18.231805801391602 ], [ -70.552917480468693, -18.231527328491154 ], [ -70.553474426269531, -18.231527328491154 ], [ -70.553474426269531, -18.231252670288029 ], [ -70.554031372070312, -18.231252670288029 ], [ -70.554031372070312, -18.230970382690373 ], [ -70.554580688476562, -18.230970382690373 ], [ -70.554580688476562, -18.230693817138672 ], [ -70.554862976074219, -18.230693817138672 ], [ -70.554862976074219, -18.2304172515868 ], [ -70.555419921874886, -18.2304172515868 ], [ -70.555419921874886, -18.230138778686523 ], [ -70.555694580078068, -18.230138778686523 ], [ -70.555694580078068, -18.229860305786133 ], [ -70.556251525878849, -18.229860305786133 ], [ -70.556251525878849, -18.229583740234318 ], [ -70.556526184082031, -18.229583740234318 ], [ -70.556526184082031, -18.229305267333928 ], [ -70.557083129882812, -18.229305267333928 ], [ -70.557083129882812, -18.229028701782227 ], [ -70.557357788085938, -18.229028701782227 ], [ -70.557357788085938, -18.228750228881836 ], [ -70.557914733886719, -18.228750228881836 ], [ -70.557914733886719, -18.228471755981445 ], [ -70.558197021484375, -18.228471755981445 ], [ -70.558197021484375, -18.228195190429688 ], [ -70.558746337890568, -18.228195190429688 ], [ -70.558746337890568, -18.227916717529297 ], [ -70.559028625488224, -18.227916717529297 ], [ -70.559028625488224, -18.227638244628906 ], [ -70.559585571289006, -18.227638244628906 ], [ -70.559585571289006, -18.227361679077092 ], [ -70.559860229492188, -18.227361679077092 ], [ -70.559860229492188, -18.227083206176644 ], [ -70.560417175292969, -18.227083206176644 ], [ -70.560417175292969, -18.226804733276367 ], [ -70.56097412109375, -18.226804733276367 ], [ -70.56097412109375, -18.226528167724553 ], [ -70.561248779296875, -18.226528167724553 ], [ -70.561248779296875, -18.226249694824162 ], [ -70.561805725097599, -18.226249694824162 ], [ -70.561805725097599, -18.225973129272461 ], [ -70.563468933105469, -18.225973129272461 ], [ -70.563468933105469, -18.22569465637207 ], [ -70.563751220703125, -18.22569465637207 ], [ -70.563751220703125, -18.22541618347168 ], [ -70.56402587890625, -18.22541618347168 ], [ -70.56402587890625, -18.225139617919922 ], [ -70.564308166503906, -18.225139617919922 ], [ -70.564308166503906, -18.224861145019531 ], [ -70.564857482910099, -18.224861145019531 ], [ -70.564857482910099, -18.224582672119141 ], [ -70.565414428710881, -18.224582672119141 ], [ -70.565414428710881, -18.224306106567326 ], [ -70.565971374511662, -18.224306106567326 ], [ -70.565971374511662, -18.224027633666879 ], [ -70.5665283203125, -18.224027633666879 ], [ -70.5665283203125, -18.223749160766602 ], [ -70.566802978515625, -18.223749160766602 ], [ -70.566802978515625, -18.223472595214787 ], [ -70.567359924316406, -18.223472595214787 ], [ -70.567359924316406, -18.223194122314396 ], [ -70.567642211914062, -18.223194122314396 ], [ -70.567642211914062, -18.222917556762695 ], [ -70.568191528320256, -18.222917556762695 ], [ -70.568191528320256, -18.222639083862305 ], [ -70.568473815917912, -18.222639083862305 ], [ -70.568473815917912, -18.222360610961914 ], [ -70.568748474121037, -18.222360610961914 ], [ -70.568748474121037, -18.222085952758732 ], [ -70.569305419921875, -18.222085952758732 ], [ -70.569305419921875, -18.221805572509766 ], [ -70.569580078125, -18.221805572509766 ], [ -70.569580078125, -18.221525192260685 ], [ -70.570137023925781, -18.221525192260685 ], [ -70.570137023925781, -18.22125053405756 ], [ -70.570693969726562, -18.22125053405756 ], [ -70.570693969726562, -18.22097206115717 ], [ -70.570968627929574, -18.22097206115717 ], [ -70.570968627929574, -18.220695495605469 ], [ -70.571525573730412, -18.220695495605469 ], [ -70.571525573730412, -18.220417022705021 ], [ -70.572082519531193, -18.220417022705021 ], [ -70.572082519531193, -18.220138549804631 ], [ -70.572639465332031, -18.220138549804631 ], [ -70.572639465332031, -18.219863891601506 ], [ -70.573196411132812, -18.219863891601506 ], [ -70.573196411132812, -18.219585418701115 ], [ -70.573753356933594, -18.219585418701115 ], [ -70.573753356933594, -18.219303131103459 ], [ -70.57430267333973, -18.219303131103459 ], [ -70.57430267333973, -18.219028472900391 ], [ -70.574859619140568, -18.219028472900391 ], [ -70.574859619140568, -18.21875 ], [ -70.575416564941349, -18.21875 ], [ -70.575416564941349, -18.218471527099609 ], [ -70.575973510742188, -18.218471527099609 ], [ -70.575973510742188, -18.218193054199219 ], [ -70.576248168945312, -18.218193054199219 ], [ -70.576248168945312, -18.217916488647404 ], [ -70.576805114746094, -18.217916488647404 ], [ -70.576805114746094, -18.217638015746957 ], [ -70.577079772949219, -18.217638015746957 ], [ -70.577079772949219, -18.217361450195312 ], [ -70.577362060546875, -18.217361450195312 ], [ -70.577362060546875, -18.217081069946289 ], [ -70.577919006347599, -18.217081069946289 ], [ -70.577919006347599, -18.216806411743164 ], [ -70.578193664550724, -18.216806411743164 ], [ -70.578193664550724, -18.216527938842773 ], [ -70.578750610351506, -18.216527938842773 ], [ -70.578750610351506, -18.216249465942383 ], [ -70.579307556152344, -18.216249465942383 ], [ -70.579307556152344, -18.215972900390511 ], [ -70.579864501953125, -18.215972900390511 ], [ -70.579864501953125, -18.215694427490234 ], [ -70.58013916015625, -18.215694427490234 ], [ -70.58013916015625, -18.215415954589844 ], [ -70.580696105956918, -18.215415954589844 ], [ -70.580696105956918, -18.215139389038029 ], [ -70.581253051757756, -18.215139389038029 ], [ -70.581253051757756, -18.214860916137638 ], [ -70.581527709960881, -18.214860916137638 ], [ -70.581527709960881, -18.214582443237248 ], [ -70.582084655761719, -18.214582443237248 ], [ -70.582084655761719, -18.214305877685547 ], [ -70.5826416015625, -18.214305877685547 ], [ -70.5826416015625, -18.214027404785099 ], [ -70.58319091796875, -18.214027404785099 ], [ -70.58319091796875, -18.213750839233398 ], [ -70.584030151367074, -18.213750839233398 ], [ -70.584030151367074, -18.213472366333008 ], [ -70.584587097167912, -18.213472366333008 ], [ -70.584587097167912, -18.213193893432617 ], [ -70.585136413574219, -18.213193893432617 ], [ -70.585136413574219, -18.212917327880746 ], [ -70.585693359375, -18.212917327880746 ], [ -70.585693359375, -18.212638854980469 ], [ -70.586250305175781, -18.212638854980469 ], [ -70.586250305175781, -18.212360382080078 ], [ -70.586524963378906, -18.212360382080078 ], [ -70.586524963378906, -18.212083816528263 ], [ -70.587081909179574, -18.212083816528263 ], [ -70.587081909179574, -18.211805343627873 ], [ -70.587364196777287, -18.211805343627873 ], [ -70.587364196777287, -18.211528778076172 ], [ -70.587913513183537, -18.211528778076172 ], [ -70.587913513183537, -18.211250305175781 ], [ -70.588195800781193, -18.211250305175781 ], [ -70.588195800781193, -18.210971832275391 ], [ -70.588752746582031, -18.210971832275391 ], [ -70.588752746582031, -18.210695266723633 ], [ -70.589302062988281, -18.210695266723633 ], [ -70.589302062988281, -18.210416793823242 ], [ -70.589584350585938, -18.210416793823242 ], [ -70.589584350585938, -18.210138320922852 ], [ -70.590141296386719, -18.210138320922852 ], [ -70.590141296386719, -18.209861755371037 ], [ -70.590415954589787, -18.209861755371037 ], [ -70.590415954589787, -18.209583282470589 ], [ -70.590972900390568, -18.209583282470589 ], [ -70.590972900390568, -18.209306716918888 ], [ -70.591247558593693, -18.209306716918888 ], [ -70.591247558593693, -18.209028244018498 ], [ -70.591804504394531, -18.209028244018498 ], [ -70.591804504394531, -18.208749771118107 ], [ -70.592361450195312, -18.208749771118107 ], [ -70.592361450195312, -18.208471298217717 ], [ -70.592918395996094, -18.208471298217717 ], [ -70.592918395996094, -18.208196640014535 ], [ -70.593193054199219, -18.208196640014535 ], [ -70.593193054199219, -18.207914352416879 ], [ -70.59375, -18.207914352416879 ], [ -70.59375, -18.207639694213867 ], [ -70.594306945800724, -18.207639694213867 ], [ -70.594306945800724, -18.207361221313477 ], [ -70.595138549804688, -18.207361221313477 ], [ -70.595138549804688, -18.207084655761662 ], [ -70.595695495605469, -18.207084655761662 ], [ -70.595695495605469, -18.206806182861271 ], [ -70.595970153808594, -18.206806182861271 ], [ -70.595970153808594, -18.206527709960824 ], [ -70.596527099609261, -18.206527709960824 ], [ -70.596527099609261, -18.206249237060547 ], [ -70.596801757812443, -18.206249237060547 ], [ -70.596801757812443, -18.205974578857422 ], [ -70.597358703613224, -18.205974578857422 ], [ -70.597358703613224, -18.205692291259766 ], [ -70.597915649414062, -18.205692291259766 ], [ -70.597915649414062, -18.205415725707951 ], [ -70.598472595214844, -18.205415725707951 ], [ -70.598472595214844, -18.20513916015625 ], [ -70.599029541015625, -18.20513916015625 ], [ -70.599029541015625, -18.204860687255859 ], [ -70.599586486816406, -18.204860687255859 ], [ -70.599586486816406, -18.204582214355469 ], [ -70.600135803222599, -18.204582214355469 ], [ -70.600135803222599, -18.204305648803711 ], [ -70.600418090820256, -18.204305648803711 ], [ -70.600418090820256, -18.20402717590332 ], [ -70.600975036621037, -18.20402717590332 ], [ -70.600975036621037, -18.203750610351506 ], [ -70.601249694824219, -18.203750610351506 ], [ -70.601249694824219, -18.203470230102539 ], [ -70.601806640625, -18.203470230102539 ], [ -70.601806640625, -18.203193664550668 ], [ -70.602363586425781, -18.203193664550668 ], [ -70.602363586425781, -18.202917098998967 ], [ -70.603195190429631, -18.202917098998967 ], [ -70.603195190429631, -18.202638626098576 ], [ -70.603752136230412, -18.202638626098576 ], [ -70.603752136230412, -18.202360153198185 ], [ -70.604309082031193, -18.202360153198185 ], [ -70.604309082031193, -18.202083587646484 ], [ -70.6048583984375, -18.202083587646484 ], [ -70.6048583984375, -18.201805114746094 ], [ -70.605140686035156, -18.201805114746094 ], [ -70.605140686035156, -18.201528549194336 ], [ -70.605697631835938, -18.201528549194336 ], [ -70.605697631835938, -18.201248168945256 ], [ -70.605972290039062, -18.201248168945256 ], [ -70.605972290039062, -18.200971603393555 ], [ -70.606803894042912, -18.200971603393555 ], [ -70.606803894042912, -18.20069503784174 ], [ -70.607917785644531, -18.20069503784174 ], [ -70.607917785644531, -18.200416564941349 ], [ -70.608474731445312, -18.200416564941349 ], [ -70.608474731445312, -18.200138092040902 ], [ -70.609024047851562, -18.200138092040902 ], [ -70.609024047851562, -18.199861526489258 ], [ -70.609306335449105, -18.199861526489258 ], [ -70.609306335449105, -18.19958305358881 ], [ -70.609580993652287, -18.19958305358881 ], [ -70.609580993652287, -18.199306488037109 ], [ -70.610137939453068, -18.19930458068842 ], [ -70.610137939453068, -18.199029922485295 ], [ -70.610420227050724, -18.199029922485295 ], [ -70.610420227050724, -18.198749542236328 ], [ -70.610694885253906, -18.198749542236328 ], [ -70.610694885253906, -18.198472976684457 ], [ -70.610969543457031, -18.198472976684457 ], [ -70.610969543457031, -18.19819450378418 ], [ -70.611251831054688, -18.19819450378418 ], [ -70.611251831054688, -18.197917938232365 ], [ -70.611808776855469, -18.197917938232365 ], [ -70.611808776855469, -18.197639465331974 ], [ -70.612640380859261, -18.197639465331974 ], [ -70.612640380859261, -18.197360992431584 ], [ -70.613197326660099, -18.197360992431584 ], [ -70.613197326660099, -18.197082519531193 ], [ -70.614028930664062, -18.197082519531193 ], [ -70.614028930664062, -18.196807861328125 ], [ -70.614585876464844, -18.196807861328125 ], [ -70.614585876464844, -18.196527481079045 ], [ -70.615135192871094, -18.196527481079045 ], [ -70.615135192871094, -18.196250915527344 ], [ -70.615692138671761, -18.196250915527344 ], [ -70.615692138671761, -18.195972442626953 ], [ -70.616531372070256, -18.195972442626953 ], [ -70.616531372070256, -18.195695877075138 ], [ -70.617080688476562, -18.195695877075138 ], [ -70.617080688476562, -18.195417404174691 ], [ -70.617637634277344, -18.195417404174691 ], [ -70.617637634277344, -18.195138931274414 ], [ -70.617919921875, -18.195138931274414 ], [ -70.617919921875, -18.194860458374023 ], [ -70.618194580078125, -18.194860458374023 ], [ -70.618194580078125, -18.194585800170898 ], [ -70.61846923828125, -18.194585800170898 ], [ -70.61846923828125, -18.194303512573242 ], [ -70.619026184081974, -18.194303512573242 ], [ -70.619026184081974, -18.194026947021428 ], [ -70.619857788085881, -18.194026947021428 ], [ -70.619857788085881, -18.193750381469727 ], [ -70.620414733886719, -18.193750381469727 ], [ -70.620414733886719, -18.193473815917969 ], [ -70.6209716796875, -18.193473815917969 ], [ -70.6209716796875, -18.193195343017578 ], [ -70.621528625488281, -18.193195343017578 ], [ -70.621528625488281, -18.192916870117188 ], [ -70.622085571288949, -18.192916870117188 ], [ -70.622085571288949, -18.192638397216797 ], [ -70.622360229492131, -18.192638397216797 ], [ -70.622360229492131, -18.192363739013672 ], [ -70.622917175292912, -18.192363739013672 ], [ -70.622917175292912, -18.192081451416016 ], [ -70.62347412109375, -18.192081451416016 ], [ -70.62347412109375, -18.191804885864258 ], [ -70.624031066894531, -18.191804885864258 ], [ -70.624031066894531, -18.191528320312443 ], [ -70.624580383300781, -18.191528320312443 ], [ -70.624580383300781, -18.191249847412053 ], [ -70.625137329101449, -18.191249847412053 ], [ -70.625137329101449, -18.190971374511662 ], [ -70.625968933105412, -18.190971374511662 ], [ -70.625968933105412, -18.190694808959961 ], [ -70.62652587890625, -18.190694808959961 ], [ -70.626556396484318, -18.19041633605957 ], [ -70.627082824707031, -18.19041633605957 ], [ -70.627082824707031, -18.190139770507812 ], [ -70.627639770507812, -18.190139770507812 ], [ -70.627639770507812, -18.189859390258732 ], [ -70.628196716308594, -18.189859390258732 ], [ -70.628196716308594, -18.189582824707031 ], [ -70.628753662109318, -18.189582824707031 ], [ -70.628753662109318, -18.189306259155217 ], [ -70.629028320312443, -18.189306259155217 ], [ -70.629028320312443, -18.189027786254769 ], [ -70.629585266113224, -18.189027786254769 ], [ -70.629585266113224, -18.188749313354492 ], [ -70.630142211914062, -18.188749313354492 ], [ -70.630142211914062, -18.188472747802678 ], [ -70.630691528320312, -18.188472747802678 ], [ -70.630691528320312, -18.188194274902287 ], [ -70.631248474121094, -18.188194274902287 ], [ -70.631248474121094, -18.187915802001896 ], [ -70.631805419921818, -18.187915802001896 ], [ -70.631805419921818, -18.187639236450195 ], [ -70.632362365722599, -18.187639236450195 ], [ -70.632362365722599, -18.187360763549805 ], [ -70.632919311523381, -18.187360763549805 ], [ -70.632919311523381, -18.187084197998047 ], [ -70.633468627929688, -18.187084197998047 ], [ -70.633468627929688, -18.186805725097656 ], [ -70.634025573730469, -18.186805725097656 ], [ -70.634025573730469, -18.186527252197266 ], [ -70.63458251953125, -18.186527252197266 ], [ -70.63458251953125, -18.186250686645451 ], [ -70.635414123535099, -18.186250686645451 ], [ -70.635414123535099, -18.18597221374506 ], [ -70.635971069335881, -18.18597221374506 ], [ -70.635971069335881, -18.185693740844613 ], [ -70.636802673339844, -18.185693740844613 ], [ -70.636802673339844, -18.185417175292912 ], [ -70.637359619140625, -18.185417175292912 ], [ -70.637359619140625, -18.185138702392521 ], [ -70.638191223144474, -18.185138702392521 ], [ -70.638191223144474, -18.184860229492131 ], [ -70.638748168945256, -18.184860229492131 ], [ -70.638748168945256, -18.18458366394043 ], [ -70.639305114746094, -18.18458366394043 ], [ -70.639305114746094, -18.184305191040039 ], [ -70.639862060546875, -18.184305191040039 ], [ -70.639862060546875, -18.184028625488281 ], [ -70.640693664550781, -18.184028625488281 ], [ -70.640693664550781, -18.183750152587891 ], [ -70.641250610351449, -18.183750152587891 ], [ -70.641250610351449, -18.1834716796875 ], [ -70.641807556152287, -18.1834716796875 ], [ -70.641807556152287, -18.183195114135685 ], [ -70.64263916015625, -18.183195114135685 ], [ -70.64263916015625, -18.182916641235295 ], [ -70.643196105957031, -18.182916641235295 ], [ -70.643196105957031, -18.182638168334847 ], [ -70.643753051757812, -18.182638168334847 ], [ -70.643753051757812, -18.182361602783203 ], [ -70.644584655761662, -18.182361602783203 ], [ -70.644584655761662, -18.182083129882756 ], [ -70.645141601562443, -18.182083129882756 ], [ -70.645141601562443, -18.181806564331055 ], [ -70.64569091796875, -18.181806564331055 ], [ -70.64569091796875, -18.181528091430664 ], [ -70.645973205566406, -18.181528091430664 ], [ -70.645973205566406, -18.181249618530273 ], [ -70.646530151367188, -18.181249618530273 ], [ -70.646530151367188, -18.180973052978402 ], [ -70.646804809570312, -18.180973052978402 ], [ -70.646804809570312, -18.180692672729492 ], [ -70.647087097167969, -18.180692672729492 ], [ -70.647087097167969, -18.180414199829045 ], [ -70.647636413574162, -18.180414199829045 ], [ -70.647636413574162, -18.18013954162592 ], [ -70.647918701171818, -18.18013954162592 ], [ -70.647918701171818, -18.179861068725529 ], [ -70.648193359374943, -18.179861068725529 ], [ -70.648193359374943, -18.179584503173828 ], [ -70.648750305175724, -18.179584503173828 ], [ -70.648750305175724, -18.179304122924691 ], [ -70.649024963378906, -18.179304122924691 ], [ -70.649024963378906, -18.17902755737299 ], [ -70.649581909179688, -18.17902755737299 ], [ -70.649581909179688, -18.178749084472599 ], [ -70.649864196777344, -18.178749084472599 ], [ -70.649864196777344, -18.178474426269474 ], [ -70.650413513183594, -18.178474426269474 ], [ -70.650413513183594, -18.178192138671818 ], [ -70.650695800781136, -18.178192138671818 ], [ -70.650695800781136, -18.177917480468636 ], [ -70.651252746581974, -18.177917480468636 ], [ -70.651252746581974, -18.177639007568359 ], [ -70.651527404785099, -18.177639007568359 ], [ -70.651527404785099, -18.177360534667969 ], [ -70.652084350585938, -18.177360534667969 ], [ -70.652084350585938, -18.177082061767578 ], [ -70.654029846191293, -18.177082061767578 ], [ -70.654029846191293, -18.176805496215763 ], [ -70.654586791992131, -18.176805496215763 ], [ -70.654586791992131, -18.176527023315373 ], [ -70.654861450195256, -18.176527023315373 ], [ -70.654861450195256, -18.176250457763672 ], [ -70.655136108398438, -18.176250457763672 ], [ -70.655136108398438, -18.175970077514648 ], [ -70.655693054199219, -18.175970077514648 ], [ -70.655693054199219, -18.175693511962834 ], [ -70.65625, -18.175693511962834 ], [ -70.65625, -18.175416946411133 ], [ -70.656806945800781, -18.175416946411133 ], [ -70.656806945800781, -18.175138473510742 ], [ -70.657363891601506, -18.175138473510742 ], [ -70.657363891601506, -18.174861907958928 ], [ -70.658470153808594, -18.174861907958928 ], [ -70.658470153808594, -18.17458343505848 ], [ -70.659027099609375, -18.17458343505848 ], [ -70.659027099609375, -18.174304962158203 ], [ -70.6593017578125, -18.174304962158203 ], [ -70.6593017578125, -18.173749923705998 ], [ -70.659584045410156, -18.173749923705998 ], [ -70.659584045410156, -18.173471450805607 ], [ -70.660140991210938, -18.173471450805607 ], [ -70.660140991210938, -18.173194885253906 ], [ -70.660697937011662, -18.173194885253906 ], [ -70.660697937011662, -18.172916412353516 ], [ -70.661247253417912, -18.172916412353516 ], [ -70.661247253417912, -18.172639846801758 ], [ -70.66180419921875, -18.172639846801758 ], [ -70.66180419921875, -18.172361373901367 ], [ -70.662086486816406, -18.172361373901367 ], [ -70.662086486816406, -18.172082901000977 ], [ -70.662635803222656, -18.172082901000977 ], [ -70.662635803222656, -18.171806335449162 ], [ -70.663192749023438, -18.171806335449162 ], [ -70.663192749023438, -18.171527862548714 ], [ -70.66347503662098, -18.171527862548714 ], [ -70.66347503662098, -18.171249389648438 ], [ -70.664024353027287, -18.171249389648438 ], [ -70.664024353027287, -18.170972824096623 ], [ -70.664306640624943, -18.170972824096623 ], [ -70.664306640624943, -18.170694351196232 ], [ -70.664863586425781, -18.170694351196232 ], [ -70.664863586425781, -18.170417785644531 ], [ -70.665138244628906, -18.170417785644531 ], [ -70.665138244628906, -18.170139312744141 ], [ -70.665695190429688, -18.170139312744141 ], [ -70.665695190429688, -18.16986083984375 ], [ -70.665969848632812, -18.16986083984375 ], [ -70.665969848632812, -18.169584274291992 ], [ -70.666809082031136, -18.169582366943359 ], [ -70.666809082031136, -18.169307708740178 ], [ -70.667358398437443, -18.169307708740178 ], [ -70.667358398437443, -18.169027328491211 ], [ -70.667915344238281, -18.169027328491211 ], [ -70.667915344238281, -18.168750762939396 ], [ -70.668472290039062, -18.168750762939396 ], [ -70.668472290039062, -18.168472290039006 ], [ -70.669029235839844, -18.168472290039006 ], [ -70.669029235839844, -18.168195724487305 ], [ -70.669586181640625, -18.168195724487305 ], [ -70.669586181640625, -18.167917251586857 ], [ -70.670135498046818, -18.167917251586857 ], [ -70.670135498046818, -18.167638778686467 ], [ -70.670692443847599, -18.167638778686467 ], [ -70.670692443847599, -18.167360305786076 ], [ -70.671249389648438, -18.167360305786076 ], [ -70.671249389648438, -18.167085647582951 ], [ -70.671524047851562, -18.167085647582951 ], [ -70.671524047851562, -18.166803359985295 ], [ -70.671806335449219, -18.166803359985295 ], [ -70.671806335449219, -18.166528701782227 ], [ -70.672080993652344, -18.166528701782227 ], [ -70.672080993652344, -18.165973663330021 ], [ -70.67236328125, -18.165973663330021 ], [ -70.67236328125, -18.165693283081055 ], [ -70.672637939453125, -18.165693283081055 ], [ -70.672637939453125, -18.16541671752924 ], [ -70.673469543456974, -18.16541671752924 ], [ -70.673469543456974, -18.165138244628793 ], [ -70.674308776855412, -18.165138244628793 ], [ -70.674308776855412, -18.164863586425781 ], [ -70.675140380859375, -18.164863586425781 ], [ -70.675140380859375, -18.164581298828125 ], [ -70.675697326660156, -18.164581298828125 ], [ -70.675697326660156, -18.16430473327631 ], [ -70.676528930664006, -18.16430473327631 ], [ -70.676528930664006, -18.164028167724609 ], [ -70.677085876464787, -18.164028167724609 ], [ -70.677085876464787, -18.163749694824219 ], [ -70.677635192871094, -18.163749694824219 ], [ -70.677635192871094, -18.163471221923828 ], [ -70.678474426269531, -18.163471221923828 ], [ -70.678474426269531, -18.16319465637207 ], [ -70.679031372070312, -18.16319465637207 ], [ -70.679031372070312, -18.16291618347168 ], [ -70.679580688476506, -18.16291618347168 ], [ -70.679580688476506, -18.162639617919865 ], [ -70.679862976074162, -18.162639617919865 ], [ -70.679862976074162, -18.162359237670898 ], [ -70.680419921874943, -18.162359237670898 ], [ -70.680419921874943, -18.162082672119084 ], [ -70.680694580078125, -18.162082672119084 ], [ -70.680694580078125, -18.161806106567383 ], [ -70.68096923828125, -18.161806106567383 ], [ -70.68096923828125, -18.161527633666935 ], [ -70.681526184082031, -18.161527633666935 ], [ -70.681526184082031, -18.161249160766545 ], [ -70.681808471679688, -18.161249160766545 ], [ -70.681808471679688, -18.160972595214844 ], [ -70.682083129882812, -18.160972595214844 ], [ -70.682083129882812, -18.160694122314453 ], [ -70.682357788085824, -18.160694122314453 ], [ -70.682357788085824, -18.160417556762582 ], [ -70.68264007568348, -18.160417556762582 ], [ -70.68264007568348, -18.160137176513672 ], [ -70.682914733886662, -18.160137176513672 ], [ -70.682914733886662, -18.159584045410099 ], [ -70.683197021484318, -18.159584045410099 ], [ -70.683197021484318, -18.159305572509709 ], [ -70.683471679687443, -18.159305572509709 ], [ -70.683471679687443, -18.159027099609318 ], [ -70.683746337890625, -18.159027099609318 ], [ -70.683746337890625, -18.158750534057617 ], [ -70.684028625488281, -18.158750534057617 ], [ -70.684028625488281, -18.158472061157227 ], [ -70.684303283691406, -18.158472061157227 ], [ -70.684303283691406, -18.158193588256779 ], [ -70.684860229492188, -18.158193588256779 ], [ -70.684860229492188, -18.157918930053654 ], [ -70.685142517089844, -18.157918930053654 ], [ -70.685142517089844, -18.157638549804688 ], [ -70.685417175292969, -18.157638549804688 ], [ -70.685417175292969, -18.157361984252873 ], [ -70.68569183349598, -18.157361984252873 ], [ -70.68569183349598, -18.157083511352425 ], [ -70.685974121093693, -18.157083511352425 ], [ -70.685974121093693, -18.156806945800724 ], [ -70.686531066894474, -18.156806945800724 ], [ -70.686531066894474, -18.156528472900334 ], [ -70.686805725097599, -18.156528472900334 ], [ -70.686805725097599, -18.15625 ], [ -70.687080383300781, -18.15625 ], [ -70.687080383300781, -18.155971527099553 ], [ -70.687362670898438, -18.155971527099553 ], [ -70.687362670898438, -18.155696868896371 ], [ -70.687637329101562, -18.155696868896371 ], [ -70.687637329101562, -18.155416488647461 ], [ -70.687919616699219, -18.155416488647461 ], [ -70.687919616699219, -18.155138015747013 ], [ -70.688194274902344, -18.155138015747013 ], [ -70.688194274902344, -18.154861450195312 ], [ -70.688751220703125, -18.154861450195312 ], [ -70.688751220703125, -18.154584884643498 ], [ -70.689025878906193, -18.154584884643498 ], [ -70.689025878906193, -18.154306411743107 ], [ -70.689582824706974, -18.154306411743107 ], [ -70.689582824706974, -18.15402793884266 ], [ -70.690139770507756, -18.15402793884266 ], [ -70.690139770507756, -18.153749465942383 ], [ -70.690414428710938, -18.153749465942383 ], [ -70.690414428710938, -18.153474807739258 ], [ -70.690971374511719, -18.153474807739258 ], [ -70.690971374511719, -18.153192520141602 ], [ -70.691253662109375, -18.153192520141602 ], [ -70.691253662109375, -18.152914047241211 ], [ -70.691802978515625, -18.152914047241211 ], [ -70.691802978515625, -18.152639389038086 ], [ -70.692085266113168, -18.152639389038086 ], [ -70.692085266113168, -18.152362823486214 ], [ -70.692359924316349, -18.152362823486214 ], [ -70.692359924316349, -18.152082443237305 ], [ -70.692642211914006, -18.152082443237305 ], [ -70.692642211914006, -18.151805877685547 ], [ -70.693191528320256, -18.151805877685547 ], [ -70.693191528320256, -18.151527404785156 ], [ -70.693473815917969, -18.151527404785156 ], [ -70.693473815917969, -18.151252746582031 ], [ -70.69403076171875, -18.151252746582031 ], [ -70.69403076171875, -18.150970458984375 ], [ -70.694305419921875, -18.150970458984375 ], [ -70.694305419921875, -18.150693893432504 ], [ -70.694862365722656, -18.150693893432504 ], [ -70.694862365722656, -18.150417327880803 ], [ -70.695137023925668, -18.150417327880803 ], [ -70.695137023925668, -18.150138854980412 ], [ -70.695693969726506, -18.150138854980412 ], [ -70.695693969726506, -18.14958381652832 ], [ -70.695968627929631, -18.14958381652832 ], [ -70.695968627929631, -18.149026870727539 ], [ -70.696250915527287, -18.149026870727539 ], [ -70.696250915527287, -18.148750305175781 ], [ -70.696525573730469, -18.148750305175781 ], [ -70.696525573730469, -18.148471832275391 ], [ -70.69708251953125, -18.148471832275391 ], [ -70.69708251953125, -18.148195266723576 ], [ -70.697364807128906, -18.148195266723576 ], [ -70.697364807128906, -18.147916793823185 ], [ -70.697639465332031, -18.147916793823185 ], [ -70.697639465332031, -18.147638320922738 ], [ -70.697914123535156, -18.147638320922738 ], [ -70.697914123535156, -18.147361755371094 ], [ -70.698471069335824, -18.147361755371094 ], [ -70.698471069335824, -18.147083282470646 ], [ -70.698753356933537, -18.147083282470646 ], [ -70.698753356933537, -18.146804809570256 ], [ -70.699028015136662, -18.146804809570256 ], [ -70.699028015136662, -18.146528244018555 ], [ -70.699302673339787, -18.146528244018555 ], [ -70.699302673339787, -18.146249771118164 ], [ -70.699584960937443, -18.146249771118164 ], [ -70.699584960937443, -18.145971298217773 ], [ -70.699859619140625, -18.145971298217773 ], [ -70.699859619140625, -18.145694732666016 ], [ -70.700141906738281, -18.145694732666016 ], [ -70.700141906738281, -18.145416259765625 ], [ -70.700416564941406, -18.145416259765625 ], [ -70.700416564941406, -18.14513969421381 ], [ -70.700691223144531, -18.14513969421381 ], [ -70.700691223144531, -18.14486122131342 ], [ -70.700973510742188, -18.14486122131342 ], [ -70.700973510742188, -18.144582748413029 ], [ -70.702362060546818, -18.144582748413029 ], [ -70.702362060546818, -18.14374923706049 ], [ -70.702636718749943, -18.14374923706049 ], [ -70.702636718749943, -18.14263916015625 ], [ -70.702919006347599, -18.14263916015625 ], [ -70.702919006347599, -18.142360687255859 ], [ -70.703193664550781, -18.142360687255859 ], [ -70.703193664550781, -18.142084121704045 ], [ -70.703475952148438, -18.142084121704045 ], [ -70.703475952148438, -18.141805648803654 ], [ -70.703750610351562, -18.141805648803654 ], [ -70.703750610351562, -18.141250610351562 ], [ -70.704025268554688, -18.141250610351562 ], [ -70.704025268554688, -18.140972137451172 ], [ -70.704307556152344, -18.140972137451172 ], [ -70.704307556152344, -18.140695571899414 ], [ -70.704582214355469, -18.140695571899414 ], [ -70.704582214355469, -18.140417098999023 ], [ -70.705139160156193, -18.140417098999023 ], [ -70.705139160156193, -18.140138626098633 ], [ -70.705696105956974, -18.140138626098633 ], [ -70.705696105956974, -18.139862060546818 ], [ -70.705970764160099, -18.139860153198242 ], [ -70.705970764160099, -18.139585494995117 ], [ -70.706527709960938, -18.139585494995117 ], [ -70.706527709960938, -18.139303207397461 ], [ -70.707359313964844, -18.139303207397461 ], [ -70.707359313964844, -18.139028549194279 ], [ -70.708473205566349, -18.139028549194279 ], [ -70.708473205566349, -18.138750076293888 ], [ -70.708747863769474, -18.138750076293888 ], [ -70.708747863769474, -18.138471603393498 ], [ -70.709030151367131, -18.138471603393498 ], [ -70.709030151367131, -18.138193130493107 ], [ -70.709587097167969, -18.138193130493107 ], [ -70.709587097167969, -18.137916564941406 ], [ -70.709861755371094, -18.137916564941406 ], [ -70.709861755371094, -18.137638092040959 ], [ -70.710136413574219, -18.137638092040959 ], [ -70.710136413574219, -18.137363433837834 ], [ -70.710418701171875, -18.137363433837834 ], [ -70.710418701171875, -18.137081146240178 ], [ -70.710693359375, -18.137081146240178 ], [ -70.710693359375, -18.136528015136605 ], [ -70.710975646972656, -18.136528015136605 ], [ -70.710975646972656, -18.135971069335938 ], [ -70.710693359375, -18.135971069335938 ], [ -70.710693359375, -18.132083892822266 ], [ -70.710975646972656, -18.132083892822266 ], [ -70.710975646972656, -18.131805419921875 ], [ -70.711250305175668, -18.131805419921875 ], [ -70.711250305175668, -18.131250381469727 ], [ -70.711524963378849, -18.131250381469727 ], [ -70.711524963378849, -18.130971908569336 ], [ -70.71319580078125, -18.130971908569336 ], [ -70.71319580078125, -18.130695343017521 ], [ -70.713470458984375, -18.130695343017521 ], [ -70.713470458984375, -18.130138397216683 ], [ -70.713752746582031, -18.130138397216683 ], [ -70.713752746582031, -18.129861831665039 ], [ -70.714027404785156, -18.129861831665039 ], [ -70.714027404785156, -18.129583358764592 ], [ -70.714302062988168, -18.129583358764592 ], [ -70.714302062988168, -18.1290283203125 ], [ -70.714584350585881, -18.1290283203125 ], [ -70.714584350585881, -18.128749847412109 ], [ -70.714859008789006, -18.128749847412109 ], [ -70.714859008789006, -18.128471374511719 ], [ -70.715141296386662, -18.128471374511719 ], [ -70.715141296386662, -18.128196716308537 ], [ -70.715415954589787, -18.128196716308537 ], [ -70.715415954589787, -18.12791633605957 ], [ -70.715972900390625, -18.12791633605957 ], [ -70.715972900390625, -18.127639770507756 ], [ -70.71624755859375, -18.127639770507756 ], [ -70.71624755859375, -18.127361297607365 ], [ -70.716529846191406, -18.127361297607365 ], [ -70.716529846191406, -18.127084732055664 ], [ -70.716804504394531, -18.127084732055664 ], [ -70.716804504394531, -18.126806259155273 ], [ -70.717086791992188, -18.126806259155273 ], [ -70.717086791992188, -18.126527786254826 ], [ -70.718193054199162, -18.126527786254826 ], [ -70.718193054199162, -18.126249313354435 ], [ -70.719024658203125, -18.126249313354435 ], [ -70.719024658203125, -18.12597465515131 ], [ -70.719581604003906, -18.12597465515131 ], [ -70.719581604003906, -18.125692367553654 ], [ -70.720138549804688, -18.125692367553654 ], [ -70.720138549804688, -18.125415802001953 ], [ -70.720695495605355, -18.125415802001953 ], [ -70.720695495605355, -18.125139236450195 ], [ -70.721527099609318, -18.125139236450195 ], [ -70.721527099609318, -18.124860763549805 ], [ -70.722084045410156, -18.124860763549805 ], [ -70.722084045410156, -18.124305725097599 ], [ -70.722358703613281, -18.124305725097599 ], [ -70.722358703613281, -18.123470306396484 ], [ -70.722640991210938, -18.123470306396484 ], [ -70.722640991210938, -18.122917175292969 ], [ -70.722915649414062, -18.122917175292969 ], [ -70.722915649414062, -18.122638702392578 ], [ -70.723197937011719, -18.122638702392578 ], [ -70.723197937011719, -18.122360229492188 ], [ -70.723472595214844, -18.122360229492188 ], [ -70.723472595214844, -18.122083663940316 ], [ -70.724029541015511, -18.122083663940316 ], [ -70.724029541015511, -18.121805191040039 ], [ -70.724304199218693, -18.121805191040039 ], [ -70.724304199218693, -18.121528625488224 ], [ -70.724586486816349, -18.121528625488224 ], [ -70.724586486816349, -18.121248245239258 ], [ -70.725418090820312, -18.121248245239258 ], [ -70.725418090820312, -18.120971679687443 ], [ -70.725975036621094, -18.120971679687443 ], [ -70.725975036621094, -18.120695114135742 ], [ -70.726806640625, -18.120695114135742 ], [ -70.726806640625, -18.120416641235352 ], [ -70.7298583984375, -18.120416641235352 ], [ -70.7298583984375, -18.119861602783203 ], [ -70.730140686035156, -18.119861602783203 ], [ -70.730140686035156, -18.119304656982422 ], [ -70.730415344238224, -18.119304656982422 ], [ -70.730415344238224, -18.118749618530273 ], [ -70.730140686035156, -18.118749618530273 ], [ -70.730140686035156, -18.118194580078068 ], [ -70.7298583984375, -18.118194580078068 ], [ -70.7298583984375, -18.117361068725586 ], [ -70.730140686035156, -18.117361068725586 ], [ -70.730140686035156, -18.116527557373047 ], [ -70.730415344238224, -18.116527557373047 ], [ -70.730415344238224, -18.115972518920842 ], [ -70.730697631835881, -18.115972518920842 ], [ -70.730697631835881, -18.115695953369141 ], [ -70.730972290039006, -18.115695953369141 ], [ -70.730972290039006, -18.115417480468693 ], [ -70.731529235839787, -18.115417480468693 ], [ -70.731529235839787, -18.115139007568303 ], [ -70.731803894042969, -18.115139007568303 ], [ -70.731803894042969, -18.113473892211857 ], [ -70.731529235839787, -18.113473892211857 ], [ -70.731529235839787, -18.112638473510629 ], [ -70.730415344238224, -18.112638473510629 ], [ -70.730415344238224, -18.112081527709961 ], [ -70.730697631835881, -18.112081527709961 ], [ -70.730697631835881, -18.110971450805664 ], [ -70.730972290039006, -18.110971450805664 ], [ -70.730972290039006, -18.110137939453125 ], [ -70.731246948242131, -18.110137939453125 ], [ -70.731246948242131, -18.109306335449219 ], [ -70.731529235839787, -18.109306335449219 ], [ -70.731529235839787, -18.108749389648381 ], [ -70.731803894042969, -18.108749389648381 ], [ -70.731803894042969, -18.10847282409668 ], [ -70.732086181640625, -18.10847282409668 ], [ -70.732086181640625, -18.108194351196289 ], [ -70.73236083984375, -18.108194351196289 ], [ -70.73236083984375, -18.107915878295898 ], [ -70.732635498046875, -18.107915878295898 ], [ -70.732635498046875, -18.107639312744141 ], [ -70.732917785644531, -18.107639312744141 ], [ -70.732917785644531, -18.10736083984375 ], [ -70.733192443847656, -18.10736083984375 ], [ -70.733192443847656, -18.107084274291935 ], [ -70.733474731445199, -18.107082366943359 ], [ -70.733474731445199, -18.106805801391545 ], [ -70.733749389648381, -18.106805801391545 ], [ -70.733749389648381, -18.106527328491154 ], [ -70.734306335449162, -18.106527328491154 ], [ -70.734306335449162, -18.106250762939453 ], [ -70.734580993652287, -18.106250762939453 ], [ -70.734580993652287, -18.105972290039062 ], [ -70.73486328125, -18.105972290039062 ], [ -70.73486328125, -18.105693817138615 ], [ -70.735420227050781, -18.105693817138615 ], [ -70.735420227050781, -18.105417251586914 ], [ -70.735694885253906, -18.105417251586914 ], [ -70.735694885253906, -18.105138778686523 ], [ -70.735969543457031, -18.105138778686523 ], [ -70.735969543457031, -18.104860305786133 ], [ -70.736251831054688, -18.104860305786133 ], [ -70.736251831054688, -18.104583740234261 ], [ -70.736526489257699, -18.104583740234261 ], [ -70.736526489257699, -18.104305267333984 ], [ -70.736808776855355, -18.104305267333984 ], [ -70.736808776855355, -18.10402870178217 ], [ -70.737358093261662, -18.10402870178217 ], [ -70.737358093261662, -18.103750228881779 ], [ -70.737640380859318, -18.103750228881779 ], [ -70.737640380859318, -18.103471755981388 ], [ -70.7379150390625, -18.103471755981388 ], [ -70.7379150390625, -18.103195190429688 ], [ -70.738197326660156, -18.103195190429688 ], [ -70.738197326660156, -18.102916717529297 ], [ -70.738471984863281, -18.102916717529297 ], [ -70.738471984863281, -18.102638244628849 ], [ -70.738746643066406, -18.102638244628849 ], [ -70.738746643066406, -18.102361679077148 ], [ -70.739028930664062, -18.102361679077148 ], [ -70.739028930664062, -18.102083206176758 ], [ -70.739585876464844, -18.102083206176758 ], [ -70.739585876464844, -18.101806640624943 ], [ -70.739860534667855, -18.101806640624943 ], [ -70.739860534667855, -18.101528167724496 ], [ -70.740135192871037, -18.101528167724496 ], [ -70.740135192871037, -18.101249694824219 ], [ -70.740417480468693, -18.101249694824219 ], [ -70.740417480468693, -18.100973129272404 ], [ -70.740974426269474, -18.100973129272404 ], [ -70.740974426269474, -18.100694656372013 ], [ -70.741249084472656, -18.100694656372013 ], [ -70.741249084472656, -18.100414276123047 ], [ -70.741806030273438, -18.100414276123047 ], [ -70.741806030273438, -18.100139617919922 ], [ -70.742080688476562, -18.100139617919922 ], [ -70.742080688476562, -18.099861145019531 ], [ -70.742637634277344, -18.099861145019531 ], [ -70.742637634277344, -18.099584579467773 ], [ -70.743194580078068, -18.099584579467773 ], [ -70.743194580078068, -18.099306106567383 ], [ -70.743469238281193, -18.099306106567383 ], [ -70.743469238281193, -18.099027633666992 ], [ -70.744026184081974, -18.099027633666992 ], [ -70.744026184081974, -18.098749160766602 ], [ -70.744308471679631, -18.098749160766602 ], [ -70.744308471679631, -18.098474502563477 ], [ -70.744583129882812, -18.098474502563477 ], [ -70.744583129882812, -18.09819221496582 ], [ -70.744857788085938, -18.09819221496582 ], [ -70.744857788085938, -18.097917556762638 ], [ -70.745140075683594, -18.097917556762638 ], [ -70.745140075683594, -18.097639083862248 ], [ -70.745414733886719, -18.097639083862248 ], [ -70.745414733886719, -18.097360610961857 ], [ -70.7459716796875, -18.097360610961857 ], [ -70.7459716796875, -18.097082138061467 ], [ -70.746246337890568, -18.097082138061467 ], [ -70.746246337890568, -18.096805572509766 ], [ -70.746528625488224, -18.096805572509766 ], [ -70.746528625488224, -18.096527099609375 ], [ -70.746803283691349, -18.096527099609375 ], [ -70.746803283691349, -18.096250534057617 ], [ -70.747360229492131, -18.096250534057617 ], [ -70.747360229492131, -18.095970153808537 ], [ -70.747642517089844, -18.095970153808537 ], [ -70.747642517089844, -18.095693588256836 ], [ -70.748191833496094, -18.095693588256836 ], [ -70.748191833496094, -18.095417022705021 ], [ -70.74847412109375, -18.095417022705021 ], [ -70.74847412109375, -18.095138549804574 ], [ -70.749031066894531, -18.095138549804574 ], [ -70.749031066894531, -18.094860076904297 ], [ -70.749862670898381, -18.094860076904297 ], [ -70.749862670898381, -18.094583511352482 ], [ -70.750419616699162, -18.094583511352482 ], [ -70.750419616699162, -18.094305038452092 ], [ -70.751251220703125, -18.094305038452092 ], [ -70.751251220703125, -18.094028472900391 ], [ -70.751808166503906, -18.094028472900391 ], [ -70.751808166503906, -18.09374809265131 ], [ -70.752639770507699, -18.09374809265131 ], [ -70.752639770507699, -18.093471527099609 ], [ -70.753471374511662, -18.093471527099609 ], [ -70.753471374511662, -18.093194961547852 ], [ -70.753753662109318, -18.093194961547852 ], [ -70.753753662109318, -18.092916488647461 ], [ -70.7540283203125, -18.092916488647461 ], [ -70.7540283203125, -18.092639923095646 ], [ -70.754302978515625, -18.092639923095646 ], [ -70.754302978515625, -18.092082977294865 ], [ -70.754585266113281, -18.092082977294865 ], [ -70.754585266113281, -18.091527938842717 ], [ -70.754302978515625, -18.091527938842717 ], [ -70.754302978515625, -18.090972900390625 ], [ -70.7540283203125, -18.090972900390625 ], [ -70.7540283203125, -18.090417861938363 ], [ -70.753753662109318, -18.090417861938363 ], [ -70.753753662109318, -18.089860916137695 ], [ -70.7540283203125, -18.089860916137695 ], [ -70.7540283203125, -18.08930778503418 ], [ -70.754302978515625, -18.08930778503418 ], [ -70.754302978515625, -18.089027404785099 ], [ -70.754585266113281, -18.089027404785099 ], [ -70.754585266113281, -18.088472366333008 ], [ -70.754859924316406, -18.088472366333008 ], [ -70.754859924316406, -18.08819580078125 ], [ -70.755416870117188, -18.08819580078125 ], [ -70.755416870117188, -18.087917327880859 ], [ -70.755973815917912, -18.087917327880859 ], [ -70.755973815917912, -18.086803436279297 ], [ -70.756248474121037, -18.086803436279297 ], [ -70.756248474121037, -18.085973739624023 ], [ -70.756530761718693, -18.085973739624023 ], [ -70.756530761718693, -18.085416793823242 ], [ -70.757080078125, -18.085416793823242 ], [ -70.757080078125, -18.085138320922795 ], [ -70.757362365722656, -18.085138320922795 ], [ -70.757362365722656, -18.08486366271967 ], [ -70.758468627929688, -18.08486366271967 ], [ -70.758468627929688, -18.084028244018441 ], [ -70.758750915527344, -18.084028244018441 ], [ -70.758750915527344, -18.083194732665959 ], [ -70.759025573730412, -18.083194732665959 ], [ -70.759025573730412, -18.082916259765568 ], [ -70.759582519531193, -18.082916259765568 ], [ -70.759582519531193, -18.082641601562443 ], [ -70.759864807128849, -18.082641601562443 ], [ -70.759864807128849, -18.08235931396473 ], [ -70.760139465331974, -18.08235931396473 ], [ -70.760139465331974, -18.082082748413086 ], [ -70.760696411132812, -18.082082748413086 ], [ -70.760696411132812, -18.081806182861328 ], [ -70.761253356933594, -18.081806182861328 ], [ -70.761253356933594, -18.081527709960938 ], [ -70.761802673339844, -18.081527709960938 ], [ -70.761802673339844, -18.081249237060547 ], [ -70.762359619140568, -18.081249237060547 ], [ -70.762359619140568, -18.080972671508732 ], [ -70.762916564941349, -18.080972671508732 ], [ -70.762916564941349, -18.080694198608285 ], [ -70.763473510742188, -18.080694198608285 ], [ -70.763473510742188, -18.080415725708008 ], [ -70.764030456542969, -18.080415725708008 ], [ -70.764030456542969, -18.080139160156193 ], [ -70.764305114746094, -18.080139160156193 ], [ -70.764305114746094, -18.079860687255803 ], [ -70.765419006347543, -18.079860687255803 ], [ -70.765419006347543, -18.079584121704102 ], [ -70.765975952148381, -18.079584121704102 ], [ -70.765975952148381, -18.07902717590332 ], [ -70.767082214355469, -18.07902717590332 ], [ -70.767082214355469, -18.078750610351562 ], [ -70.767364501953125, -18.078750610351562 ], [ -70.767364501953125, -18.078472137451172 ], [ -70.767913818359375, -18.078472137451172 ], [ -70.767913818359375, -18.077917098998967 ], [ -70.768196105957031, -18.077917098998967 ], [ -70.768196105957031, -18.077638626098519 ], [ -70.768753051757756, -18.077638626098519 ], [ -70.768753051757756, -18.077083587646428 ], [ -70.769027709960881, -18.077083587646428 ], [ -70.769027709960881, -18.076805114746037 ], [ -70.769302368164006, -18.076805114746037 ], [ -70.769302368164006, -18.076528549194336 ], [ -70.7701416015625, -18.076528549194336 ], [ -70.7701416015625, -18.076250076293945 ], [ -70.77069091796875, -18.076250076293945 ], [ -70.77069091796875, -18.075971603393555 ], [ -70.771247863769531, -18.075971603393555 ], [ -70.771247863769531, -18.075696945190373 ], [ -70.771804809570256, -18.075696945190373 ], [ -70.771804809570256, -18.075416564941406 ], [ -70.772361755371037, -18.075416564941406 ], [ -70.772361755371037, -18.075138092041016 ], [ -70.772918701171818, -18.075138092041016 ], [ -70.772918701171818, -18.074861526489201 ], [ -70.773193359375, -18.074861526489201 ], [ -70.773193359375, -18.07458305358881 ], [ -70.773750305175781, -18.07458305358881 ], [ -70.773750305175781, -18.074306488037109 ], [ -70.774024963378906, -18.074306488037109 ], [ -70.774024963378906, -18.074028015136662 ], [ -70.774307250976562, -18.074028015136662 ], [ -70.774307250976562, -18.073749542236271 ], [ -70.77486419677723, -18.073749542236271 ], [ -70.77486419677723, -18.073474884033146 ], [ -70.775138854980412, -18.073474884033146 ], [ -70.775138854980412, -18.07319259643549 ], [ -70.775413513183537, -18.07319259643549 ], [ -70.775413513183537, -18.072914123535099 ], [ -70.775695800781193, -18.072914123535099 ], [ -70.775695800781193, -18.072639465332031 ], [ -70.776527404785156, -18.072639465332031 ], [ -70.776527404785156, -18.072362899780217 ], [ -70.776802062988281, -18.072362899780217 ], [ -70.776802062988281, -18.072084426879826 ], [ -70.777359008789062, -18.072084426879826 ], [ -70.777359008789062, -18.071804046630859 ], [ -70.777641296386719, -18.071804046630859 ], [ -70.777641296386719, -18.071527481079045 ], [ -70.77791595458973, -18.071527481079045 ], [ -70.77791595458973, -18.071252822875863 ], [ -70.778190612792912, -18.071252822875863 ], [ -70.778198242187386, -18.07097053527832 ], [ -70.778472900390568, -18.07097053527832 ], [ -70.778472900390568, -18.07069206237793 ], [ -70.778747558593693, -18.07069206237793 ], [ -70.778747558593693, -18.070417404174805 ], [ -70.779029846191349, -18.070417404174805 ], [ -70.779029846191349, -18.069860458374023 ], [ -70.779304504394531, -18.069860458374023 ], [ -70.779304504394531, -18.069583892822152 ], [ -70.779586791992188, -18.069583892822152 ], [ -70.779586791992188, -18.069305419921875 ], [ -70.779861450195312, -18.069305419921875 ], [ -70.779861450195312, -18.06875038146967 ], [ -70.780136108398438, -18.06875038146967 ], [ -70.780136108398438, -18.067916870117188 ], [ -70.780418395996094, -18.067916870117188 ], [ -70.780418395996094, -18.067083358764648 ], [ -70.780693054199219, -18.067083358764648 ], [ -70.780693054199219, -18.066804885864258 ], [ -70.780975341796875, -18.066804885864258 ], [ -70.780975341796875, -18.066528320312386 ], [ -70.781249999999886, -18.066528320312386 ], [ -70.781249999999886, -18.066249847412109 ], [ -70.781524658203068, -18.066249847412109 ], [ -70.781524658203068, -18.065971374511719 ], [ -70.781806945800724, -18.065971374511719 ], [ -70.781806945800724, -18.065694808959904 ], [ -70.782081604003849, -18.065694808959904 ], [ -70.782081604003849, -18.065416336059513 ], [ -70.782638549804688, -18.065416336059513 ], [ -70.782638549804688, -18.065139770507812 ], [ -70.783195495605469, -18.065139770507812 ], [ -70.783195495605469, -18.064861297607422 ], [ -70.783470153808594, -18.064861297607422 ], [ -70.783470153808594, -18.064582824707031 ], [ -70.784027099609375, -18.064582824707031 ], [ -70.784027099609375, -18.064306259155273 ], [ -70.784584045410099, -18.064306259155273 ], [ -70.784584045410099, -18.064027786254883 ], [ -70.784858703613224, -18.064027786254883 ], [ -70.784858703613224, -18.063749313354492 ], [ -70.785140991210881, -18.063749313354492 ], [ -70.785140991210881, -18.063472747802678 ], [ -70.785415649414006, -18.063472747802678 ], [ -70.785415649414006, -18.06319427490223 ], [ -70.785697937011662, -18.06319427490223 ], [ -70.785697937011662, -18.062917709350529 ], [ -70.785972595214844, -18.062917709350529 ], [ -70.785972595214844, -18.062639236450138 ], [ -70.786247253417969, -18.062639236450138 ], [ -70.786247253417969, -18.062360763549748 ], [ -70.786529541015625, -18.062360763549748 ], [ -70.786529541015625, -18.062084197998047 ], [ -70.78680419921875, -18.062084197998047 ], [ -70.78680419921875, -18.061805725097656 ], [ -70.787361145019531, -18.061805725097656 ], [ -70.787361145019531, -18.061527252197266 ], [ -70.787918090820256, -18.061527252197266 ], [ -70.787918090820256, -18.061250686645508 ], [ -70.788192749023381, -18.061250686645508 ], [ -70.788192749023381, -18.060972213745117 ], [ -70.788749694824162, -18.060972213745117 ], [ -70.788749694824162, -18.060695648193303 ], [ -70.789306640625, -18.060695648193303 ], [ -70.789306640625, -18.060417175292912 ], [ -70.789863586425781, -18.060417175292912 ], [ -70.789863586425781, -18.060138702392464 ], [ -70.790138244628906, -18.060138702392464 ], [ -70.790138244628906, -18.059860229492188 ], [ -70.790695190429574, -18.059860229492188 ], [ -70.790695190429574, -18.059585571289062 ], [ -70.791252136230412, -18.059585571289062 ], [ -70.791252136230412, -18.059303283691406 ], [ -70.792640686035156, -18.059303283691406 ], [ -70.792640686035156, -18.059028625488281 ], [ -70.792915344238281, -18.059028625488281 ], [ -70.792915344238281, -18.058750152587891 ], [ -70.793472290039062, -18.058750152587891 ], [ -70.793472290039062, -18.058473587036019 ], [ -70.793746948242074, -18.058473587036019 ], [ -70.793746948242074, -18.058193206787109 ], [ -70.79402923583973, -18.058193206787109 ], [ -70.79402923583973, -18.057916641235352 ], [ -70.794586181640568, -18.057916641235352 ], [ -70.794586181640568, -18.057638168334961 ], [ -70.795135498046875, -18.057638168334961 ], [ -70.795135498046875, -18.057363510131836 ], [ -70.795417785644531, -18.057363510131836 ], [ -70.795417785644531, -18.05708122253418 ], [ -70.795974731445312, -18.05708122253418 ], [ -70.795974731445312, -18.056804656982308 ], [ -70.796524047851562, -18.056804656982308 ], [ -70.796524047851562, -18.056528091430607 ], [ -70.796806335449219, -18.056528091430607 ], [ -70.796806335449219, -18.056249618530217 ], [ -70.797363281249943, -18.056249618530217 ], [ -70.797363281249943, -18.055971145629826 ], [ -70.797637939453068, -18.055971145629826 ], [ -70.797637939453068, -18.055694580078125 ], [ -70.797920227050724, -18.055694580078125 ], [ -70.797920227050724, -18.055416107177734 ], [ -70.798194885253849, -18.055416107177734 ], [ -70.798194885253849, -18.055139541625977 ], [ -70.798469543457031, -18.055139541625977 ], [ -70.798469543457031, -18.054859161376896 ], [ -70.798751831054688, -18.054859161376896 ], [ -70.798751831054688, -18.054582595825195 ], [ -70.799026489257812, -18.054582595825195 ], [ -70.799026489257812, -18.054306030273381 ], [ -70.800415039062443, -18.054306030273381 ], [ -70.800415039062443, -18.05402755737299 ], [ -70.800697326660099, -18.05402755737299 ], [ -70.800697326660099, -18.053472518920898 ], [ -70.801528930664006, -18.053472518920898 ], [ -70.801528930664006, -18.053194046020451 ], [ -70.802360534667969, -18.053194046020451 ], [ -70.802360534667969, -18.05291748046875 ], [ -70.80291748046875, -18.05291748046875 ], [ -70.80291748046875, -18.052360534667969 ], [ -70.803192138671875, -18.052360534667969 ], [ -70.803192138671875, -18.052083969116097 ], [ -70.803749084472599, -18.052083969116097 ], [ -70.803749084472599, -18.05180549621582 ], [ -70.804306030273381, -18.05180549621582 ], [ -70.804306030273381, -18.051528930664006 ], [ -70.804580688476506, -18.051528930664006 ], [ -70.804580688476506, -18.051250457763615 ], [ -70.805137634277344, -18.051250457763615 ], [ -70.805137634277344, -18.050971984863224 ], [ -70.808197021484375, -18.050971984863224 ], [ -70.808197021484375, -18.051250457763615 ], [ -70.809028625488281, -18.051250457763615 ], [ -70.809028625488281, -18.051528930664006 ], [ -70.810974121093693, -18.051528930664006 ], [ -70.810974121093693, -18.051250457763615 ], [ -70.811531066894531, -18.051250457763615 ], [ -70.811531066894531, -18.050971984863224 ], [ -70.812080383300781, -18.050971984863224 ], [ -70.812080383300781, -18.050693511962834 ], [ -70.812637329101562, -18.050693511962834 ], [ -70.812637329101562, -18.050418853759766 ], [ -70.813194274902287, -18.050418853759766 ], [ -70.813194274902287, -18.050138473510685 ], [ -70.813751220703068, -18.050138473510685 ], [ -70.813751220703068, -18.049861907958984 ], [ -70.814025878906193, -18.049861907958984 ], [ -70.814025878906193, -18.047639846801758 ], [ -70.813751220703068, -18.047637939453068 ], [ -70.813751220703068, -18.046527862548828 ], [ -70.813468933105412, -18.046527862548828 ], [ -70.813468933105412, -18.046249389648438 ], [ -70.813194274902287, -18.046249389648438 ], [ -70.813194274902287, -18.045692443847656 ], [ -70.812919616699219, -18.045692443847656 ], [ -70.812919616699219, -18.044582366943303 ], [ -70.813194274902287, -18.044582366943303 ], [ -70.813194274902287, -18.044027328491211 ], [ -70.813468933105412, -18.044027328491211 ], [ -70.813468933105412, -18.043470382690373 ], [ -70.813751220703068, -18.043470382690373 ], [ -70.813751220703068, -18.042917251586857 ], [ -70.814025878906193, -18.042917251586857 ], [ -70.814025878906193, -18.04263877868641 ], [ -70.814308166503849, -18.04263877868641 ], [ -70.814308166503849, -18.042083740234318 ], [ -70.814582824707031, -18.042083740234318 ], [ -70.814582824707031, -18.041528701782227 ], [ -70.814857482910156, -18.041528701782227 ], [ -70.814857482910156, -18.041248321533146 ], [ -70.815414428710938, -18.041248321533146 ], [ -70.815414428710938, -18.040971755981445 ], [ -70.815696716308594, -18.040971755981445 ], [ -70.815696716308594, -18.040695190429688 ], [ -70.815971374511719, -18.040695190429688 ], [ -70.815971374511719, -18.040416717529297 ], [ -70.816253662109261, -18.040416717529297 ], [ -70.816253662109261, -18.040138244628906 ], [ -70.816802978515568, -18.040138244628906 ], [ -70.816802978515568, -18.039861679077092 ], [ -70.817085266113224, -18.039861679077092 ], [ -70.817085266113224, -18.039583206176701 ], [ -70.817642211914062, -18.039583206176701 ], [ -70.817642211914062, -18.039304733276254 ], [ -70.817916870117188, -18.039304733276254 ], [ -70.817916870117188, -18.039028167724553 ], [ -70.818473815917969, -18.039028167724553 ], [ -70.818473815917969, -18.038749694824162 ], [ -70.818748474121094, -18.038749694824162 ], [ -70.818748474121094, -18.038473129272461 ], [ -70.819305419921761, -18.038473129272461 ], [ -70.819305419921761, -18.03819465637207 ], [ -70.819862365722599, -18.03819465637207 ], [ -70.819862365722599, -18.03791618347168 ], [ -70.820419311523381, -18.03791618347168 ], [ -70.820419311523381, -18.037639617919922 ], [ -70.820968627929688, -18.037639617919922 ], [ -70.820968627929688, -18.037361145019531 ], [ -70.821525573730469, -18.037361145019531 ], [ -70.821525573730469, -18.037082672119141 ], [ -70.82208251953125, -18.037082672119141 ], [ -70.82208251953125, -18.036806106567326 ], [ -70.822639465331918, -18.036806106567326 ], [ -70.822639465331918, -18.036527633666935 ], [ -70.823196411132756, -18.036527633666935 ], [ -70.823196411132756, -18.036249160766488 ], [ -70.824028015136719, -18.036249160766488 ], [ -70.824028015136719, -18.035972595214844 ], [ -70.824859619140625, -18.035972595214844 ], [ -70.824859619140625, -18.035694122314396 ], [ -70.825691223144418, -18.035694122314396 ], [ -70.825691223144418, -18.035417556762695 ], [ -70.829864501953068, -18.035417556762695 ], [ -70.829864501953068, -18.035139083862305 ], [ -70.830139160156193, -18.035139083862305 ], [ -70.830139160156193, -18.034860610961914 ], [ -70.830413818359375, -18.034860610961914 ], [ -70.830413818359375, -18.034585952758789 ], [ -70.830696105957031, -18.034585952758789 ], [ -70.830696105957031, -18.034305572509766 ], [ -70.832916259765568, -18.034305572509766 ], [ -70.832916259765568, -18.034027099609375 ], [ -70.835975646972599, -18.034027099609375 ], [ -70.835975646972599, -18.03375053405756 ], [ -70.837081909179688, -18.03375053405756 ], [ -70.837081909179688, -18.034027099609375 ], [ -70.837638854980469, -18.034027099609375 ], [ -70.837638854980469, -18.034305572509766 ], [ -70.838752746581974, -18.034305572509766 ], [ -70.838752746581974, -18.034027099609375 ], [ -70.839302062988224, -18.034027099609375 ], [ -70.839302062988224, -18.03375053405756 ], [ -70.839859008789062, -18.03375053405756 ], [ -70.839859008789062, -18.03347206115717 ], [ -70.840415954589844, -18.03347206115717 ], [ -70.840415954589844, -18.033195495605469 ], [ -70.840972900390625, -18.033195495605469 ], [ -70.840972900390625, -18.032917022705078 ], [ -70.841804504394474, -18.032917022705078 ], [ -70.841804504394474, -18.033195495605469 ], [ -70.842918395996037, -18.033195495605469 ], [ -70.842918395996037, -18.03347206115717 ], [ -70.844306945800781, -18.03347206115717 ], [ -70.844306945800781, -18.033195495605469 ], [ -70.844581604003906, -18.033195495605469 ], [ -70.844581604003906, -18.032917022705078 ], [ -70.844306945800781, -18.032917022705078 ], [ -70.844306945800781, -18.031528472900277 ], [ -70.844581604003906, -18.031528472900277 ], [ -70.844581604003906, -18.030416488647404 ], [ -70.844863891601449, -18.030416488647404 ], [ -70.844863891601449, -18.029863357543832 ], [ -70.845138549804631, -18.029863357543832 ], [ -70.845138549804631, -18.029581069946289 ], [ -70.847358703613281, -18.029581069946289 ], [ -70.847358703613281, -18.029306411743164 ], [ -70.847915649413949, -18.029306411743164 ], [ -70.847915649413949, -18.029027938842773 ], [ -70.848197937011605, -18.029027938842773 ], [ -70.848197937011605, -18.028749465942383 ], [ -70.848747253417912, -18.028749465942383 ], [ -70.848747253417912, -18.028472900390568 ], [ -70.849029541015568, -18.028472900390568 ], [ -70.849029541015568, -18.028194427490121 ], [ -70.84930419921875, -18.028194427490121 ], [ -70.84930419921875, -18.027915954589844 ], [ -70.849586486816406, -18.027915954589844 ], [ -70.849586486816406, -18.027639389038029 ], [ -70.849861145019531, -18.027639389038029 ], [ -70.849861145019531, -18.027082443237248 ], [ -70.850975036621094, -18.027082443237248 ], [ -70.850975036621094, -18.027360916137638 ], [ -70.851249694824105, -18.027360916137638 ], [ -70.851249694824105, -18.027639389038029 ], [ -70.851524353027287, -18.027639389038029 ], [ -70.851524353027287, -18.027915954589844 ], [ -70.851806640624943, -18.027915954589844 ], [ -70.851806640624943, -18.028194427490121 ], [ -70.852081298828068, -18.028194427490121 ], [ -70.852081298828068, -18.027915954589844 ], [ -70.852363586425724, -18.027915954589844 ], [ -70.852363586425724, -18.027639389038029 ], [ -70.852638244628906, -18.027639389038029 ], [ -70.852638244628906, -18.027360916137638 ], [ -70.854026794433594, -18.027360916137638 ], [ -70.854026794433594, -18.027639389038029 ], [ -70.855415344238224, -18.027639389038029 ], [ -70.855415344238224, -18.027360916137638 ], [ -70.855697631835881, -18.027360916137638 ], [ -70.855697631835881, -18.027082443237248 ], [ -70.856246948242188, -18.027082443237248 ], [ -70.856246948242188, -18.026805877685547 ], [ -70.856803894042969, -18.026805877685547 ], [ -70.856803894042969, -18.026527404785156 ], [ -70.857086181640625, -18.026527404785156 ], [ -70.857086181640625, -18.026250839233398 ], [ -70.858749389648381, -18.026250839233398 ], [ -70.858749389648381, -18.025693893432617 ], [ -70.859024047851562, -18.025693893432617 ], [ -70.859024047851562, -18.025417327880803 ], [ -70.859306335449219, -18.025417327880803 ], [ -70.859306335449219, -18.025138854980355 ], [ -70.859580993652344, -18.025138854980355 ], [ -70.859580993652344, -18.024860382080078 ], [ -70.85986328125, -18.024860382080078 ], [ -70.85986328125, -18.024305343627873 ], [ -70.860420227050781, -18.024305343627873 ], [ -70.860420227050781, -18.024028778076172 ], [ -70.860694885253793, -18.024028778076172 ], [ -70.860694885253793, -18.023750305175781 ], [ -70.860969543456974, -18.023750305175781 ], [ -70.860969543456974, -18.023471832275391 ], [ -70.861251831054631, -18.023471832275391 ], [ -70.861251831054631, -18.023195266723633 ], [ -70.861526489257756, -18.023195266723633 ], [ -70.861526489257756, -18.022916793823242 ], [ -70.861808776855412, -18.022916793823242 ], [ -70.861808776855412, -18.022638320922852 ], [ -70.862083435058594, -18.022638320922852 ], [ -70.862083435058594, -18.021806716918945 ], [ -70.864028930663949, -18.021806716918945 ], [ -70.864028930663949, -18.022083282470646 ], [ -70.865135192871094, -18.022083282470646 ], [ -70.865135192871094, -18.021806716918945 ], [ -70.86541748046875, -18.021806716918945 ], [ -70.86541748046875, -18.020971298217717 ], [ -70.865692138671875, -18.020971298217717 ], [ -70.865692138671875, -18.020139694213867 ], [ -70.865974426269531, -18.020139694213867 ], [ -70.865974426269531, -18.019861221313477 ], [ -70.867080688476449, -18.019861221313477 ], [ -70.867080688476449, -18.020416259765625 ], [ -70.867362976074162, -18.020416259765625 ], [ -70.867362976074162, -18.020971298217717 ], [ -70.868751525878906, -18.020971298217717 ], [ -70.868751525878906, -18.020696640014592 ], [ -70.869026184082031, -18.020696640014592 ], [ -70.869026184082031, -18.020139694213867 ], [ -70.869308471679688, -18.020139694213867 ], [ -70.869308471679688, -18.019861221313477 ], [ -70.870971679687443, -18.019861221313477 ], [ -70.870971679687443, -18.019584655761662 ], [ -70.871246337890568, -18.019584655761662 ], [ -70.871246337890568, -18.019306182861271 ], [ -70.871528625488224, -18.019306182861271 ], [ -70.871528625488224, -18.019027709960881 ], [ -70.871803283691406, -18.019027709960881 ], [ -70.871803283691406, -18.018749237060433 ], [ -70.872085571289062, -18.018749237060433 ], [ -70.872085571289062, -18.018474578857422 ], [ -70.872360229492188, -18.018474578857422 ], [ -70.872360229492188, -18.018192291259766 ], [ -70.872642517089844, -18.018192291259766 ], [ -70.872642517089844, -18.01763916015625 ], [ -70.872917175292969, -18.01763916015625 ], [ -70.872917175292969, -18.017360687255859 ], [ -70.873191833496094, -18.017360687255859 ], [ -70.873191833496094, -18.017082214355469 ], [ -70.874862670898438, -18.017082214355469 ], [ -70.874862670898438, -18.01652717590332 ], [ -70.875694274902344, -18.01652717590332 ], [ -70.875694274902344, -18.016252517700195 ], [ -70.876251220703125, -18.016252517700195 ], [ -70.876251220703125, -18.015417098999023 ], [ -70.878471374511719, -18.015417098999023 ], [ -70.878471374511719, -18.015138626098576 ], [ -70.8790283203125, -18.015138626098576 ], [ -70.8790283203125, -18.015970230102539 ], [ -70.878753662109375, -18.015970230102539 ], [ -70.878753662109375, -18.01652717590332 ], [ -70.879302978515625, -18.01652717590332 ], [ -70.879302978515625, -18.016805648803711 ], [ -70.879585266113281, -18.016805648803711 ], [ -70.879585266113281, -18.017082214355469 ], [ -70.880142211914006, -18.017082214355469 ], [ -70.880142211914006, -18.017360687255859 ], [ -70.880973815917912, -18.017360687255859 ], [ -70.880973815917912, -18.017082214355469 ], [ -70.881248474121094, -18.017082214355469 ], [ -70.881248474121094, -18.015138626098576 ], [ -70.880973815917912, -18.015138626098576 ], [ -70.880973815917912, -18.014860153198185 ], [ -70.880691528320256, -18.014860153198185 ], [ -70.880691528320256, -18.014305114746094 ], [ -70.881248474121094, -18.014305114746094 ], [ -70.881248474121094, -18.014028549194222 ], [ -70.881805419921875, -18.014028549194222 ], [ -70.881805419921875, -18.012916564941349 ], [ -70.882080078125, -18.012916564941349 ], [ -70.882080078125, -18.012638092040959 ], [ -70.882362365722656, -18.012638092040959 ], [ -70.882362365722656, -18.012361526489258 ], [ -70.882637023925781, -18.012361526489258 ], [ -70.882637023925781, -18.012083053588867 ], [ -70.882919311523438, -18.012083053588867 ], [ -70.882919311523438, -18.011806488037109 ], [ -70.883468627929631, -18.011806488037109 ], [ -70.883468627929631, -18.012638092040959 ], [ -70.884025573730412, -18.012638092040959 ], [ -70.884025573730412, -18.012361526489258 ], [ -70.884307861328068, -18.012361526489258 ], [ -70.884307861328068, -18.011806488037109 ], [ -70.88458251953125, -18.01180458068842 ], [ -70.88458251953125, -18.011249542236328 ], [ -70.884864807128906, -18.011249542236328 ], [ -70.884864807128906, -18.010972976684513 ], [ -70.885414123535156, -18.010972976684513 ], [ -70.885414123535156, -18.010694503784066 ], [ -70.885696411132812, -18.010694503784066 ], [ -70.885696411132812, -18.010417938232365 ], [ -70.88625335693348, -18.010417938232365 ], [ -70.88625335693348, -18.010139465331974 ], [ -70.887084960937443, -18.010139465331974 ], [ -70.887084960937443, -18.010417938232365 ], [ -70.887359619140568, -18.010417938232365 ], [ -70.887359619140568, -18.010694503784066 ], [ -70.887916564941406, -18.010694503784066 ], [ -70.887916564941406, -18.010972976684513 ], [ -70.888473510742188, -18.010972976684513 ], [ -70.888473510742188, -18.008195877075138 ], [ -70.888748168945312, -18.008195877075138 ], [ -70.888748168945312, -18.0076389312743 ], [ -70.889030456542969, -18.0076389312743 ], [ -70.889030456542969, -18.007085800170898 ], [ -70.88930511474598, -18.007085800170898 ], [ -70.88930511474598, -18.006805419921818 ], [ -70.889579772949162, -18.006805419921818 ], [ -70.889579772949162, -18.006250381469727 ], [ -70.88930511474598, -18.006250381469727 ], [ -70.88930511474598, -18.005416870117188 ], [ -70.889579772949162, -18.005416870117188 ], [ -70.889579772949162, -18.005138397216797 ], [ -70.889862060546818, -18.005138397216797 ], [ -70.889862060546818, -18.004581451416016 ], [ -70.890136718749943, -18.004581451416016 ], [ -70.890136718749943, -18.004304885864144 ], [ -70.890419006347599, -18.004304885864144 ], [ -70.890419006347599, -18.003749847412053 ], [ -70.890693664550781, -18.003749847412053 ], [ -70.890693664550781, -18.003471374511662 ], [ -70.890975952148438, -18.003471374511662 ], [ -70.890975952148438, -18.003194808959961 ], [ -70.890693664550781, -18.003194808959961 ], [ -70.890693664550781, -18.002641677856445 ], [ -70.890419006347599, -18.002641677856445 ], [ -70.890419006347599, -18.002082824707031 ], [ -70.889579772949162, -18.002082824707031 ], [ -70.889579772949162, -18.001806259155217 ], [ -70.889030456542969, -18.001806259155217 ], [ -70.889030456542969, -18.001527786254826 ], [ -70.88930511474598, -18.001527786254826 ], [ -70.88930511474598, -18.001249313354379 ], [ -70.889579772949162, -18.001249313354379 ], [ -70.889579772949162, -18.000972747802734 ], [ -70.88930511474598, -18.000972747802734 ], [ -70.88930511474598, -18.000694274902287 ], [ -70.889030456542969, -18.000694274902287 ], [ -70.889030456542969, -18.000139236450195 ], [ -70.88930511474598, -18.000139236450195 ], [ -70.88930511474598, -17.999860763549805 ], [ -70.88930511474598, -17.999027252197266 ], [ -70.888748168945312, -17.999027252197266 ], [ -70.888748168945312, -17.999305725097656 ], [ -70.888473510742188, -17.999305725097656 ], [ -70.888473510742188, -17.998750686645451 ], [ -70.887916564941406, -17.998750686645451 ], [ -70.887916564941406, -17.999027252197266 ], [ -70.887641906738281, -17.999027252197266 ], [ -70.887641906738281, -17.999305725097656 ], [ -70.887359619140568, -17.999305725097656 ], [ -70.887359619140568, -17.999584197997933 ], [ -70.886802673339787, -17.999584197997933 ], [ -70.886802673339787, -17.998750686645451 ], [ -70.887084960937443, -17.998750686645451 ], [ -70.887084960937443, -17.99847221374506 ], [ -70.887359619140568, -17.99847221374506 ], [ -70.887359619140568, -17.99819374084467 ], [ -70.887084960937443, -17.99819374084467 ], [ -70.887084960937443, -17.997917175292969 ], [ -70.886802673339787, -17.997917175292969 ], [ -70.886802673339787, -17.997638702392521 ], [ -70.886528015136662, -17.997638702392521 ], [ -70.886528015136662, -17.99708366394043 ], [ -70.88625335693348, -17.99708366394043 ], [ -70.88625335693348, -17.996250152587891 ], [ -70.885971069335938, -17.996250152587891 ], [ -70.885971069335938, -17.995695114135685 ], [ -70.885414123535156, -17.995695114135685 ], [ -70.885414123535156, -17.994861602783203 ], [ -70.885139465332031, -17.994861602783203 ], [ -70.885139465332031, -17.994028091430664 ], [ -70.884864807128906, -17.994028091430664 ], [ -70.884864807128906, -17.993749618530273 ], [ -70.88458251953125, -17.993749618530273 ], [ -70.88458251953125, -17.993473052978459 ], [ -70.884025573730412, -17.993473052978459 ], [ -70.884025573730412, -17.993194580078011 ], [ -70.883193969726506, -17.993194580078011 ], [ -70.883186340331974, -17.992637634277344 ], [ -70.883750915527287, -17.99263954162592 ], [ -70.883750915527287, -17.991806030273438 ], [ -70.884025573730412, -17.991806030273438 ], [ -70.884025573730412, -17.991527557373047 ], [ -70.884307861328068, -17.991527557373047 ], [ -70.884307861328068, -17.990692138671818 ], [ -70.88458251953125, -17.990692138671818 ], [ -70.88458251953125, -17.990140914916992 ], [ -70.885414123535156, -17.990140914916992 ], [ -70.885414123535156, -17.987638473510742 ], [ -70.885971069335938, -17.987638473510742 ], [ -70.885971069335938, -17.987083435058537 ], [ -70.88625335693348, -17.987083435058537 ], [ -70.886215209960881, -17.986354827880859 ], [ -70.886207580566406, -17.986232757568246 ], [ -70.886528015136662, -17.986249923705998 ], [ -70.886528015136662, -17.985971450805607 ], [ -70.886802673339787, -17.985971450805607 ], [ -70.886802673339787, -17.985416412353516 ], [ -70.887359619140568, -17.985416412353516 ], [ -70.887359619140568, -17.984861373901367 ], [ -70.887641906738281, -17.984861373901367 ], [ -70.887603759765625, -17.984050750732422 ], [ -70.888473510742188, -17.984027862548771 ], [ -70.888473510742188, -17.983749389648324 ], [ -70.889030456542969, -17.983749389648324 ], [ -70.889030456542969, -17.98347282409668 ], [ -70.88930511474598, -17.98347282409668 ], [ -70.88930511474598, -17.983194351196232 ], [ -70.889579772949162, -17.983194351196232 ], [ -70.889579772949162, -17.982917785644531 ], [ -70.889862060546818, -17.982917785644531 ], [ -70.889862060546818, -17.98236083984375 ], [ -70.889579772949162, -17.98236083984375 ], [ -70.889579772949162, -17.981527328491211 ], [ -70.889862060546818, -17.981527328491211 ], [ -70.889862060546818, -17.980695724487305 ], [ -70.890136718749943, -17.980695724487305 ], [ -70.890136718749943, -17.980138778686467 ], [ -70.889862060546818, -17.980138778686467 ], [ -70.889862060546818, -17.979654312133789 ], [ -70.889862060546818, -17.979253768920898 ], [ -70.889862060546818, -17.979028701782113 ], [ -70.890136718749943, -17.979028701782113 ], [ -70.890136718749943, -17.977081298828125 ], [ -70.890419006347599, -17.977081298828125 ], [ -70.890419006347599, -17.976734161376953 ], [ -70.890419006347599, -17.976249694824219 ], [ -70.890693664550781, -17.976249694824219 ], [ -70.890693664550781, -17.975971221923828 ], [ -70.890975952148438, -17.975971221923828 ], [ -70.890975952148438, -17.97541618347168 ], [ -70.891250610351562, -17.97541618347168 ], [ -70.891250610351562, -17.975141525268555 ], [ -70.890975952148438, -17.975141525268555 ], [ -70.890975952148438, -17.974582672119084 ], [ -70.890693664550781, -17.974582672119084 ], [ -70.890693664550781, -17.973749160766545 ], [ -70.890975952148438, -17.973749160766545 ], [ -70.890975952148438, -17.972637176513672 ], [ -70.890693664550781, -17.972637176513672 ], [ -70.890693664550781, -17.972084045410099 ], [ -70.890975952148438, -17.972084045410099 ], [ -70.890975952148438, -17.970497131347543 ], [ -70.890975952148438, -17.969974517822266 ], [ -70.890975952148438, -17.969861984252873 ], [ -70.890693664550781, -17.969861984252873 ], [ -70.890693664550781, -17.969255447387695 ], [ -70.890693664550781, -17.969028472900334 ], [ -70.890975952148438, -17.969028472900334 ], [ -70.890975952148438, -17.96875 ], [ -70.892082214355469, -17.96875 ], [ -70.892082214355469, -17.969028472900334 ], [ -70.893470764160099, -17.969028472900334 ], [ -70.893470764160099, -17.96875 ], [ -70.893753051757756, -17.96875 ], [ -70.893753051757756, -17.968471527099553 ], [ -70.894027709960938, -17.968471527099553 ], [ -70.894027709960938, -17.968196868896428 ], [ -70.894302368164062, -17.968196868896428 ], [ -70.894302368164062, -17.967916488647461 ], [ -70.894584655761719, -17.967916488647461 ], [ -70.894584655761719, -17.966527938842717 ], [ -70.894859313964844, -17.966527938842717 ], [ -70.894859313964844, -17.966249465942269 ], [ -70.8951416015625, -17.966249465942269 ], [ -70.8951416015625, -17.965974807739258 ], [ -70.895416259765625, -17.965974807739258 ], [ -70.895416259765625, -17.965139389038086 ], [ -70.895690917968636, -17.965139389038086 ], [ -70.895690917968636, -17.964862823486271 ], [ -70.895973205566349, -17.964862823486271 ], [ -70.895973205566349, -17.964584350585824 ], [ -70.895690917968636, -17.964584350585824 ], [ -70.895690917968636, -17.964027404785156 ], [ -70.896530151367131, -17.964027404785156 ], [ -70.896530151367131, -17.964305877685547 ], [ -70.896804809570256, -17.964305877685547 ], [ -70.896804809570256, -17.964862823486271 ], [ -70.897918701171875, -17.964862823486271 ], [ -70.897918701171875, -17.965139389038086 ], [ -70.899024963378849, -17.965139389038086 ], [ -70.899024963378849, -17.964862823486271 ], [ -70.899581909179631, -17.964862823486271 ], [ -70.899581909179631, -17.964027404785156 ], [ -70.899864196777287, -17.964027404785156 ], [ -70.899864196777287, -17.962917327880859 ], [ -70.900138854980412, -17.962917327880859 ], [ -70.900138854980412, -17.962360382080021 ], [ -70.90069580078125, -17.962360382080021 ], [ -70.90069580078125, -17.96208381652832 ], [ -70.900970458984375, -17.96208381652832 ], [ -70.900970458984375, -17.96180534362793 ], [ -70.901527404785156, -17.96180534362793 ], [ -70.901527404785156, -17.961248397827148 ], [ -70.901802062988281, -17.961248397827148 ], [ -70.901802062988281, -17.960971832275391 ], [ -70.902084350585824, -17.960971832275391 ], [ -70.902084350585824, -17.960695266723576 ], [ -70.902359008789006, -17.960695266723576 ], [ -70.902359008789006, -17.960416793823185 ], [ -70.902641296386662, -17.960416793823185 ], [ -70.902641296386662, -17.960138320922795 ], [ -70.903190612792912, -17.960138320922795 ], [ -70.903198242187443, -17.959861755371094 ], [ -70.90374755859375, -17.959861755371094 ], [ -70.90374755859375, -17.959583282470703 ], [ -70.904029846191406, -17.959583282470703 ], [ -70.904029846191406, -17.959304809570256 ], [ -70.904586791992188, -17.959304809570256 ], [ -70.904586791992188, -17.959028244018555 ], [ -70.905975341796818, -17.959028244018555 ], [ -70.905975341796818, -17.958194732665902 ], [ -70.90625, -17.958194732665902 ], [ -70.90625, -17.95736122131342 ], [ -70.906524658203125, -17.95736122131342 ], [ -70.906524658203125, -17.957082748413029 ], [ -70.907363891601562, -17.957082748413029 ], [ -70.907363891601562, -17.956806182861328 ], [ -70.907913208007812, -17.956806182861328 ], [ -70.907913208007812, -17.956527709960938 ], [ -70.908195495605469, -17.956527709960938 ], [ -70.908195495605469, -17.95624923706049 ], [ -70.90847015380848, -17.95624923706049 ], [ -70.90847015380848, -17.955972671508789 ], [ -70.908752441406193, -17.955972671508789 ], [ -70.908752441406193, -17.955415725708008 ], [ -70.909027099609318, -17.955415725708008 ], [ -70.909027099609318, -17.955139160156136 ], [ -70.909301757812443, -17.955139160156136 ], [ -70.909301757812443, -17.954305648803654 ], [ -70.909584045410099, -17.954305648803654 ], [ -70.909584045410099, -17.953750610351562 ], [ -70.910140991210938, -17.953750610351562 ], [ -70.910140991210938, -17.953195571899414 ], [ -70.910697937011719, -17.953195571899414 ], [ -70.910697937011719, -17.954305648803654 ], [ -70.910972595214844, -17.954305648803654 ], [ -70.910972595214844, -17.954584121704045 ], [ -70.911529541015625, -17.954584121704045 ], [ -70.911529541015625, -17.954305648803654 ], [ -70.912086486816349, -17.954305648803654 ], [ -70.912086486816349, -17.954027175903263 ], [ -70.912361145019474, -17.954027175903263 ], [ -70.912361145019474, -17.953195571899414 ], [ -70.912635803222599, -17.953195571899414 ], [ -70.912635803222599, -17.952638626098633 ], [ -70.912918090820256, -17.952638626098633 ], [ -70.912918090820256, -17.952081680297852 ], [ -70.913192749023438, -17.952081680297852 ], [ -70.913192749023438, -17.950719833374023 ], [ -70.913192749023438, -17.950138092041016 ], [ -70.912918090820256, -17.950138092041016 ], [ -70.912918090820256, -17.949863433837834 ], [ -70.912635803222599, -17.949863433837834 ], [ -70.912635803222599, -17.949581146240178 ], [ -70.912361145019474, -17.949581146240178 ], [ -70.912361145019474, -17.949306488037053 ], [ -70.911529541015625, -17.949306488037053 ], [ -70.911529541015625, -17.949028015136662 ], [ -70.911247253417969, -17.949028015136662 ], [ -70.911247253417969, -17.947639465332031 ], [ -70.910972595214844, -17.947639465332031 ], [ -70.910972595214844, -17.947359085082951 ], [ -70.910697937011719, -17.947359085082951 ], [ -70.910697937011719, -17.946805953979492 ], [ -70.911247253417969, -17.946805953979492 ], [ -70.911247253417969, -17.946527481079102 ], [ -70.911529541015625, -17.946527481079102 ], [ -70.911529541015625, -17.945972442626896 ], [ -70.911804199218693, -17.945972442626896 ], [ -70.911804199218693, -17.945417404174805 ], [ -70.912086486816349, -17.945417404174805 ], [ -70.912086486816349, -17.944583892822266 ], [ -70.912635803222599, -17.944583892822266 ], [ -70.912635803222599, -17.944305419921875 ], [ -70.913192749023438, -17.944305419921875 ], [ -70.913192749023438, -17.944583892822266 ], [ -70.914024353027344, -17.944583892822266 ], [ -70.914024353027344, -17.945138931274357 ], [ -70.914306640625, -17.945138931274357 ], [ -70.914306640625, -17.945417404174805 ], [ -70.914581298828125, -17.945417404174805 ], [ -70.914581298828125, -17.945138931274357 ], [ -70.915138244628849, -17.945138931274357 ], [ -70.915138244628849, -17.944028854370004 ], [ -70.915412902831974, -17.944028854370004 ], [ -70.915412902831974, -17.943471908569336 ], [ -70.915969848632756, -17.943471908569336 ], [ -70.915969848632756, -17.943750381469727 ], [ -70.916252136230469, -17.943750381469727 ], [ -70.916252136230469, -17.943195343017521 ], [ -70.91680908203125, -17.943195343017521 ], [ -70.91680908203125, -17.942361831665039 ], [ -70.917083740234375, -17.942361831665039 ], [ -70.917083740234375, -17.941806793212891 ], [ -70.918197631835824, -17.941806793212891 ], [ -70.918197631835824, -17.9415283203125 ], [ -70.918472290039006, -17.9415283203125 ], [ -70.918472290039006, -17.941249847412109 ], [ -70.919303894042969, -17.941249847412109 ], [ -70.919303894042969, -17.940696716308594 ], [ -70.91986083984375, -17.940696716308594 ], [ -70.91986083984375, -17.94041633605957 ], [ -70.920135498046875, -17.94041633605957 ], [ -70.920135498046875, -17.940139770507756 ], [ -70.923469543457031, -17.940139770507756 ], [ -70.923469543457031, -17.939861297607365 ], [ -70.923751831054688, -17.939861297607365 ], [ -70.923751831054688, -17.939306259155273 ], [ -70.924308776855469, -17.939306259155273 ], [ -70.924308776855469, -17.939027786254883 ], [ -70.925140380859318, -17.939027786254883 ], [ -70.925140380859318, -17.938749313354435 ], [ -70.925415039062443, -17.938749313354435 ], [ -70.925415039062443, -17.938192367553654 ], [ -70.925697326660099, -17.938192367553654 ], [ -70.925697326660099, -17.937915802001953 ], [ -70.926246643066406, -17.937915802001953 ], [ -70.926246643066406, -17.938192367553654 ], [ -70.926528930664062, -17.938192367553654 ], [ -70.926528930664062, -17.937915802001953 ], [ -70.927085876464844, -17.937915802001953 ], [ -70.927085876464844, -17.937639236450082 ], [ -70.927635192871037, -17.937639236450082 ], [ -70.927635192871037, -17.937362670898438 ], [ -70.928192138671818, -17.937362670898438 ], [ -70.928192138671818, -17.93708419799799 ], [ -70.928474426269474, -17.93708419799799 ], [ -70.928474426269474, -17.936527252197209 ], [ -70.930137634277344, -17.936527252197209 ], [ -70.930137634277344, -17.936252593994084 ], [ -70.930694580078011, -17.936252593994084 ], [ -70.930694580078011, -17.935693740844727 ], [ -70.931251525878849, -17.935693740844727 ], [ -70.931251525878849, -17.935417175292969 ], [ -70.931808471679631, -17.935417175292969 ], [ -70.931808471679631, -17.935138702392578 ], [ -70.932640075683594, -17.935138702392578 ], [ -70.932640075683594, -17.934860229492188 ], [ -70.932914733886719, -17.934860229492188 ], [ -70.932914733886719, -17.934305191039925 ], [ -70.933197021484375, -17.934305191039925 ], [ -70.933197021484375, -17.934028625488224 ], [ -70.934028625488168, -17.934028625488224 ], [ -70.934028625488168, -17.933748245239258 ], [ -70.934303283691349, -17.933748245239258 ], [ -70.934303283691349, -17.934028625488224 ], [ -70.935142517089787, -17.934028625488224 ], [ -70.935142517089787, -17.933748245239258 ], [ -70.935691833496094, -17.933748245239258 ], [ -70.935691833496094, -17.933471679687443 ], [ -70.936248779296875, -17.933471679687443 ], [ -70.936248779296875, -17.933195114135742 ], [ -70.938468933105469, -17.933195114135742 ], [ -70.938468933105469, -17.932361602783203 ], [ -70.938751220703125, -17.932361602783203 ], [ -70.938751220703125, -17.932083129882812 ], [ -70.93902587890625, -17.932083129882812 ], [ -70.93902587890625, -17.931804656982422 ], [ -70.939308166503906, -17.931804656982422 ], [ -70.939308166503906, -17.931526184082031 ], [ -70.940414428710881, -17.931526184082031 ], [ -70.940414428710881, -17.93124961853016 ], [ -70.941802978515625, -17.93124961853016 ], [ -70.941802978515625, -17.931526184082031 ], [ -70.942085266113281, -17.931526184082031 ], [ -70.942085266113281, -17.93124961853016 ], [ -70.942642211914062, -17.93124961853016 ], [ -70.942642211914062, -17.930973052978516 ], [ -70.942916870117188, -17.930973052978516 ], [ -70.942916870117188, -17.930694580078068 ], [ -70.943191528320312, -17.930694580078068 ], [ -70.943191528320312, -17.930139541625977 ], [ -70.944030761718693, -17.930139541625977 ], [ -70.944030761718693, -17.930694580078068 ], [ -70.944580078124943, -17.930694580078068 ], [ -70.944580078124943, -17.930416107177678 ], [ -70.944862365722656, -17.930416107177678 ], [ -70.944862365722656, -17.929307937622013 ], [ -70.945137023925781, -17.929307937622013 ], [ -70.945137023925781, -17.929027557373047 ], [ -70.946807861328011, -17.929027557373047 ], [ -70.946807861328011, -17.928749084472656 ], [ -70.947914123535156, -17.928749084472656 ], [ -70.947914123535156, -17.92791748046875 ], [ -70.948196411132812, -17.92791748046875 ], [ -70.948196411132812, -17.927085876464787 ], [ -70.949028015136719, -17.927085876464787 ], [ -70.949028015136719, -17.927360534667912 ], [ -70.949302673339844, -17.927360534667912 ], [ -70.949302673339844, -17.927639007568303 ], [ -70.9495849609375, -17.927639007568303 ], [ -70.9495849609375, -17.927360534667912 ], [ -70.950141906738224, -17.927360534667912 ], [ -70.950141906738224, -17.927639007568303 ], [ -70.950416564941349, -17.927639007568303 ], [ -70.950416564941349, -17.927360534667912 ], [ -70.950973510742131, -17.927360534667912 ], [ -70.950973510742131, -17.927085876464787 ], [ -70.951248168945312, -17.927085876464787 ], [ -70.951248168945312, -17.92680549621582 ], [ -70.951805114746094, -17.92680549621582 ], [ -70.951805114746094, -17.92652702331543 ], [ -70.952079772949219, -17.92652702331543 ], [ -70.952079772949219, -17.926250457763672 ], [ -70.953193664550724, -17.926250457763672 ], [ -70.953193664550724, -17.925973892211857 ], [ -70.953750610351506, -17.925973892211857 ], [ -70.953750610351506, -17.925691604614201 ], [ -70.954307556152287, -17.925691604614201 ], [ -70.954307556152287, -17.925138473510685 ], [ -70.95513916015625, -17.925138473510685 ], [ -70.95513916015625, -17.924863815307504 ], [ -70.955696105957031, -17.924863815307504 ], [ -70.955696105957031, -17.924581527709961 ], [ -70.955970764160156, -17.924581527709961 ], [ -70.955970764160156, -17.92430305480957 ], [ -70.957084655761662, -17.92430305480957 ], [ -70.957084655761662, -17.924028396606445 ], [ -70.9576416015625, -17.924028396606445 ], [ -70.9576416015625, -17.923751831054631 ], [ -70.958473205566406, -17.923751831054631 ], [ -70.958473205566406, -17.92347335815424 ], [ -70.958747863769531, -17.92347335815424 ], [ -70.958747863769531, -17.923194885253793 ], [ -70.959030151367188, -17.923194885253793 ], [ -70.959030151367188, -17.922916412353516 ], [ -70.959304809570199, -17.922916412353516 ], [ -70.959304809570199, -17.922637939453125 ], [ -70.959587097167855, -17.922637939453125 ], [ -70.959587097167855, -17.922359466552734 ], [ -70.959861755371037, -17.922359466552734 ], [ -70.959861755371037, -17.92208290100092 ], [ -70.960136413574162, -17.92208290100092 ], [ -70.960136413574162, -17.921806335449219 ], [ -70.961524963378906, -17.921806335449219 ], [ -70.961524963378906, -17.92208290100092 ], [ -70.962081909179688, -17.92208290100092 ], [ -70.962081909179688, -17.922359466552734 ], [ -70.962364196777344, -17.922359466552734 ], [ -70.962364196777344, -17.92208290100092 ], [ -70.962913513183537, -17.92208290100092 ], [ -70.962913513183537, -17.921527862548828 ], [ -70.963195800781193, -17.921527862548828 ], [ -70.963195800781193, -17.921249389648381 ], [ -70.963752746581974, -17.921249389648381 ], [ -70.963752746581974, -17.92097282409668 ], [ -70.964302062988281, -17.92097282409668 ], [ -70.964302062988281, -17.920694351196289 ], [ -70.964859008789062, -17.920694351196289 ], [ -70.964859008789062, -17.920415878295898 ], [ -70.965972900390568, -17.920415878295898 ], [ -70.965972900390568, -17.920139312744027 ], [ -70.966247558593693, -17.920139312744027 ], [ -70.966247558593693, -17.91986083984375 ], [ -70.966804504394474, -17.91986083984375 ], [ -70.966804504394474, -17.919305801391545 ], [ -70.967361450195312, -17.919305801391545 ], [ -70.967361450195312, -17.919027328491154 ], [ -70.967918395996094, -17.919027328491154 ], [ -70.967918395996094, -17.918750762939453 ], [ -70.968193054199219, -17.918750762939453 ], [ -70.968193054199219, -17.918472290039062 ], [ -70.96875, -17.918472290039062 ], [ -70.96875, -17.918193817138672 ], [ -70.969863891601506, -17.918193817138672 ], [ -70.969863891601506, -17.917917251586914 ], [ -70.970413208007812, -17.917917251586914 ], [ -70.970413208007812, -17.917638778686523 ], [ -70.970695495605469, -17.917638778686523 ], [ -70.970695495605469, -17.917360305786133 ], [ -70.97125244140625, -17.917360305786133 ], [ -70.97125244140625, -17.916805267333871 ], [ -70.9718017578125, -17.916805267333871 ], [ -70.9718017578125, -17.91652870178217 ], [ -70.972640991210881, -17.91652870178217 ], [ -70.972640991210881, -17.916250228881779 ], [ -70.972915649414006, -17.916250228881779 ], [ -70.972915649414006, -17.915971755981388 ], [ -70.973472595214844, -17.915971755981388 ], [ -70.973472595214844, -17.915695190429688 ], [ -70.974029541015625, -17.915695190429688 ], [ -70.974029541015625, -17.915138244628906 ], [ -70.975418090820199, -17.915138244628906 ], [ -70.975418090820199, -17.914861679077148 ], [ -70.975975036621037, -17.914861679077148 ], [ -70.975975036621037, -17.914306640624943 ], [ -70.976249694824162, -17.914306640624943 ], [ -70.976249694824162, -17.914028167724553 ], [ -70.976806640625, -17.914028167724553 ], [ -70.976806640625, -17.913473129272461 ], [ -70.977081298828125, -17.913473129272461 ], [ -70.977081298828125, -17.913194656372013 ], [ -70.977638244628906, -17.913194656372013 ], [ -70.977638244628906, -17.912916183471623 ], [ -70.978195190429688, -17.912916183471623 ], [ -70.978195190429688, -17.912639617919922 ], [ -70.978752136230412, -17.912639617919922 ], [ -70.978752136230412, -17.912361145019531 ], [ -70.979309082031193, -17.912361145019531 ], [ -70.979309082031193, -17.91208457946766 ], [ -70.9798583984375, -17.91208457946766 ], [ -70.9798583984375, -17.911249160766602 ], [ -70.980140686035156, -17.911249160766602 ], [ -70.980140686035156, -17.910974502563477 ], [ -70.980972290039062, -17.910974502563477 ], [ -70.980972290039062, -17.91069221496582 ], [ -70.981246948242188, -17.91069221496582 ], [ -70.981246948242188, -17.910417556762695 ], [ -70.983192443847656, -17.910417556762695 ], [ -70.983192443847656, -17.91069221496582 ], [ -70.983474731445312, -17.91069221496582 ], [ -70.983474731445312, -17.910417556762695 ], [ -70.983749389648438, -17.910417556762695 ], [ -70.983749389648438, -17.909027099609375 ], [ -70.984306335449219, -17.909027099609375 ], [ -70.984306335449219, -17.90875244140625 ], [ -70.984863281249886, -17.90875244140625 ], [ -70.984863281249886, -17.908470153808537 ], [ -70.985420227050724, -17.908470153808537 ], [ -70.985420227050724, -17.908193588256836 ], [ -70.986526489257812, -17.908193588256836 ], [ -70.986526489257812, -17.907917022705021 ], [ -70.987083435058594, -17.907917022705021 ], [ -70.987083435058594, -17.907083511352539 ], [ -70.987358093261719, -17.907083511352539 ], [ -70.987358093261719, -17.906805038452092 ], [ -70.987640380859375, -17.906805038452092 ], [ -70.987640380859375, -17.906528472900391 ], [ -70.987915039062386, -17.906528472900391 ], [ -70.987915039062386, -17.90624809265131 ], [ -70.989585876464844, -17.90624809265131 ], [ -70.989585876464844, -17.905971527099609 ], [ -70.989860534667969, -17.905971527099609 ], [ -70.989860534667969, -17.905694961547738 ], [ -70.990135192871094, -17.905694961547738 ], [ -70.990135192871094, -17.905416488647461 ], [ -70.990692138671875, -17.905416488647461 ], [ -70.990692138671875, -17.904861450195256 ], [ -70.990974426269531, -17.904861450195256 ], [ -70.990974426269531, -17.904582977294865 ], [ -70.991531372070256, -17.904582977294865 ], [ -70.991531372070256, -17.904306411743164 ], [ -70.991806030273381, -17.904306411743164 ], [ -70.991806030273381, -17.904027938842773 ], [ -70.992080688476506, -17.904027938842773 ], [ -70.992080688476506, -17.903749465942326 ], [ -70.992362976074162, -17.903749465942326 ], [ -70.992362976074162, -17.903472900390625 ], [ -70.992919921875, -17.903472900390625 ], [ -70.992919921875, -17.903194427490234 ], [ -70.99346923828125, -17.903194427490234 ], [ -70.99346923828125, -17.90291786193842 ], [ -70.994026184082031, -17.90291786193842 ], [ -70.994026184082031, -17.903194427490234 ], [ -70.994308471679688, -17.903194427490234 ], [ -70.994308471679688, -17.90291786193842 ], [ -70.995140075683537, -17.90291786193842 ], [ -70.995140075683537, -17.903194427490234 ], [ -70.995414733886662, -17.903194427490234 ], [ -70.995414733886662, -17.902639389037972 ], [ -70.995697021484318, -17.902639389037972 ], [ -70.995697021484318, -17.90180587768549 ], [ -70.996246337890625, -17.90180587768549 ], [ -70.996246337890625, -17.901527404785099 ], [ -70.996528625488281, -17.901527404785099 ], [ -70.996528625488281, -17.901250839233398 ], [ -70.997085571289062, -17.901250839233398 ], [ -70.997085571289062, -17.900972366333008 ], [ -70.99764251708973, -17.900972366333008 ], [ -70.99764251708973, -17.90069580078125 ], [ -70.998191833496037, -17.90069580078125 ], [ -70.998191833496037, -17.900972366333008 ], [ -70.998474121093693, -17.900972366333008 ], [ -70.998474121093693, -17.90069580078125 ], [ -70.999580383300781, -17.90069580078125 ], [ -70.999580383300781, -17.900138854980469 ], [ -70.999862670898438, -17.900138854980469 ], [ -71.000137329101562, -17.900138854980469 ], [ -71.000137329101562, -17.899585723876953 ], [ -71.000419616699219, -17.899585723876953 ], [ -71.000419616699219, -17.899305343627816 ], [ -71.00069427490223, -17.899305343627816 ], [ -71.00069427490223, -17.899026870727539 ], [ -71.000968933105412, -17.899026870727539 ], [ -71.000968933105412, -17.898750305175724 ], [ -71.001251220703068, -17.898750305175724 ], [ -71.001251220703068, -17.898473739624023 ], [ -71.001525878906193, -17.898473739624023 ], [ -71.001525878906193, -17.897916793823242 ], [ -71.001808166503849, -17.897916793823242 ], [ -71.001808166503849, -17.897638320922852 ], [ -71.002082824707031, -17.897638320922852 ], [ -71.002082824707031, -17.89736366271967 ], [ -71.002639770507812, -17.89736366271967 ], [ -71.002639770507812, -17.897081375122013 ], [ -71.003196716308594, -17.897081375122013 ], [ -71.003196716308594, -17.896804809570312 ], [ -71.003471374511719, -17.896804809570312 ], [ -71.003471374511719, -17.896528244018498 ], [ -71.004028320312386, -17.896528244018498 ], [ -71.004028320312386, -17.896251678466797 ], [ -71.004585266113224, -17.896251678466797 ], [ -71.004585266113224, -17.895969390869141 ], [ -71.005142211914006, -17.895969390869141 ], [ -71.005142211914006, -17.895694732665959 ], [ -71.005416870117188, -17.895694732665959 ], [ -71.005416870117188, -17.895416259765568 ], [ -71.005973815917969, -17.895416259765568 ], [ -71.005973815917969, -17.895141601562443 ], [ -71.00653076171875, -17.895141601562443 ], [ -71.00653076171875, -17.894859313964787 ], [ -71.007362365722599, -17.894859313964787 ], [ -71.007362365722599, -17.894582748413086 ], [ -71.007919311523381, -17.894582748413086 ], [ -71.007919311523381, -17.894306182861328 ], [ -71.008750915527344, -17.894306182861328 ], [ -71.008750915527344, -17.894027709960938 ], [ -71.009307861328125, -17.894027709960938 ], [ -71.009307861328125, -17.893749237060547 ], [ -71.00958251953125, -17.893749237060547 ], [ -71.00958251953125, -17.893472671508732 ], [ -71.010139465332031, -17.893472671508732 ], [ -71.010139465332031, -17.893194198608342 ], [ -71.010414123535099, -17.893194198608342 ], [ -71.010414123535099, -17.892915725707894 ], [ -71.011253356933537, -17.892915725707894 ], [ -71.011253356933537, -17.892360687255803 ], [ -71.011802673339844, -17.892360687255803 ], [ -71.011802673339844, -17.892084121704102 ], [ -71.0120849609375, -17.892084121704102 ], [ -71.0120849609375, -17.891805648803711 ], [ -71.012359619140625, -17.891805648803711 ], [ -71.012359619140625, -17.89152717590332 ], [ -71.012641906738281, -17.89152717590332 ], [ -71.012641906738281, -17.891250610351562 ], [ -71.012916564941406, -17.891250610351562 ], [ -71.012916564941406, -17.890972137451172 ], [ -71.013473510742074, -17.890972137451172 ], [ -71.013473510742074, -17.890693664550781 ], [ -71.013748168945256, -17.890693664550781 ], [ -71.013748168945256, -17.890417098998967 ], [ -71.014030456542912, -17.890417098998967 ], [ -71.014030456542912, -17.890138626098576 ], [ -71.014579772949162, -17.890138626098576 ], [ -71.014579772949162, -17.889862060546875 ], [ -71.014862060546875, -17.889860153198129 ], [ -71.014862060546875, -17.889583587646484 ], [ -71.01513671875, -17.889583587646484 ], [ -71.01513671875, -17.889305114746037 ], [ -71.015419006347656, -17.889305114746037 ], [ -71.015419006347656, -17.889028549194336 ], [ -71.015975952148438, -17.889028549194336 ], [ -71.015975952148438, -17.888750076293945 ], [ -71.017913818359375, -17.888750076293945 ], [ -71.017913818359375, -17.88819694519043 ], [ -71.018196105957031, -17.88819694519043 ], [ -71.018196105957031, -17.887361526489201 ], [ -71.018753051757812, -17.887361526489201 ], [ -71.018753051757812, -17.88708305358881 ], [ -71.019027709960938, -17.88708305358881 ], [ -71.019027709960938, -17.886806488037109 ], [ -71.019302368164062, -17.886802673339844 ], [ -71.019302368164062, -17.886249542236271 ], [ -71.019027709960938, -17.886249542236271 ], [ -71.019027709960938, -17.885974884033146 ], [ -71.021247863769531, -17.885974884033146 ], [ -71.021247863769531, -17.88569450378418 ], [ -71.023750305175724, -17.88569450378418 ], [ -71.023750305175724, -17.885414123535099 ], [ -71.024864196777344, -17.885414123535099 ], [ -71.024864196777344, -17.88569450378418 ], [ -71.02874755859375, -17.88569450378418 ], [ -71.02874755859375, -17.885974884033146 ], [ -71.029586791992074, -17.885974884033146 ], [ -71.029586791992074, -17.886249542236271 ], [ -71.030418395996037, -17.886249542236271 ], [ -71.030418395996037, -17.885974884033146 ], [ -71.030693054199219, -17.885974884033146 ], [ -71.030693054199219, -17.88569450378418 ], [ -71.030975341796875, -17.88569450378418 ], [ -71.030975341796875, -17.885139465331918 ], [ -71.03125, -17.885139465331918 ], [ -71.03125, -17.884584426879826 ], [ -71.032081604003906, -17.884584426879826 ], [ -71.032081604003906, -17.884862899780273 ], [ -71.032363891601562, -17.884862899780273 ], [ -71.032363891601562, -17.885139465331918 ], [ -71.033752441406193, -17.885139465331918 ], [ -71.033752441406193, -17.88569450378418 ], [ -71.034027099609375, -17.88569450378418 ], [ -71.034027099609375, -17.884862899780273 ], [ -71.0343017578125, -17.884862899780273 ], [ -71.0343017578125, -17.884584426879826 ], [ -71.034858703613281, -17.884584426879826 ], [ -71.034858703613281, -17.884305953979435 ], [ -71.035140991210938, -17.884305953979435 ], [ -71.035140991210938, -17.884027481079045 ], [ -71.035415649414062, -17.884027481079045 ], [ -71.035415649414062, -17.88375282287592 ], [ -71.035697937011719, -17.88375282287592 ], [ -71.035697937011719, -17.883470535278207 ], [ -71.035972595214787, -17.883470535278207 ], [ -71.035972595214787, -17.88319206237793 ], [ -71.036529541015568, -17.88319206237793 ], [ -71.036529541015568, -17.882917404174805 ], [ -71.036804199218693, -17.882917404174805 ], [ -71.036804199218693, -17.88264083862299 ], [ -71.037086486816349, -17.88264083862299 ], [ -71.037086486816349, -17.882360458374023 ], [ -71.037361145019531, -17.882360458374023 ], [ -71.037361145019531, -17.881805419921761 ], [ -71.037635803222656, -17.881805419921761 ], [ -71.037635803222656, -17.881252288818359 ], [ -71.038475036621094, -17.881252288818359 ], [ -71.038475036621094, -17.880971908569279 ], [ -71.039306640624943, -17.880971908569279 ], [ -71.039306640624943, -17.880695343017578 ], [ -71.040969848632812, -17.880695343017578 ], [ -71.040969848632812, -17.880416870117188 ], [ -71.041252136230469, -17.880416870117188 ], [ -71.041252136230469, -17.880695343017578 ], [ -71.042083740234261, -17.880695343017578 ], [ -71.042083740234261, -17.881252288818359 ], [ -71.042358398437443, -17.881252288818359 ], [ -71.042358398437443, -17.881526947021484 ], [ -71.042915344238224, -17.881526947021484 ], [ -71.042915344238224, -17.881805419921761 ], [ -71.043197631835881, -17.881805419921761 ], [ -71.043197631835881, -17.88319206237793 ], [ -71.043472290039062, -17.88319206237793 ], [ -71.043472290039062, -17.883470535278207 ], [ -71.044029235839844, -17.883470535278207 ], [ -71.044029235839844, -17.884027481079045 ], [ -71.045417785644418, -17.884027481079045 ], [ -71.045417785644418, -17.88375282287592 ], [ -71.045692443847599, -17.88375282287592 ], [ -71.045692443847599, -17.883470535278207 ], [ -71.045974731445256, -17.883470535278207 ], [ -71.045974731445256, -17.882917404174805 ], [ -71.046249389648381, -17.882917404174805 ], [ -71.046249389648381, -17.88264083862299 ], [ -71.046524047851562, -17.88264083862299 ], [ -71.046524047851562, -17.882083892822209 ], [ -71.046806335449219, -17.882083892822209 ], [ -71.046806335449219, -17.881805419921761 ], [ -71.049308776855412, -17.881805419921761 ], [ -71.049308776855412, -17.882083892822209 ], [ -71.049583435058537, -17.882083892822209 ], [ -71.049583435058537, -17.882360458374023 ], [ -71.050140380859375, -17.882360458374023 ], [ -71.050140380859375, -17.88264083862299 ], [ -71.051803588867131, -17.88264083862299 ], [ -71.051803588867131, -17.882360458374023 ], [ -71.052360534667912, -17.882360458374023 ], [ -71.052360534667912, -17.882083892822209 ], [ -71.053192138671875, -17.882083892822209 ], [ -71.053192138671875, -17.881805419921761 ], [ -71.053749084472656, -17.881805419921761 ], [ -71.053749084472656, -17.881526947021484 ], [ -71.054580688476562, -17.881526947021484 ], [ -71.054580688476562, -17.881252288818359 ], [ -71.055137634277287, -17.881252288818359 ], [ -71.055137634277287, -17.880971908569279 ], [ -71.055969238281193, -17.880971908569279 ], [ -71.055969238281193, -17.880695343017578 ], [ -71.056526184082031, -17.880695343017578 ], [ -71.056526184082031, -17.880138397216797 ], [ -71.056808471679688, -17.880138397216797 ], [ -71.056808471679688, -17.879028320312443 ], [ -71.057083129882812, -17.879028320312443 ], [ -71.057083129882812, -17.878194808959904 ], [ -71.057357788085938, -17.878194808959904 ], [ -71.057357788085938, -17.877916336059513 ], [ -71.057640075683594, -17.877916336059513 ], [ -71.057640075683594, -17.877639770507812 ], [ -71.057914733886605, -17.877639770507812 ], [ -71.057914733886605, -17.877361297607422 ], [ -71.058197021484261, -17.877361297607422 ], [ -71.058197021484261, -17.877082824707031 ], [ -71.058471679687443, -17.877082824707031 ], [ -71.058471679687443, -17.876527786254883 ], [ -71.058746337890568, -17.876527786254883 ], [ -71.058746337890568, -17.876249313354492 ], [ -71.059028625488224, -17.876249313354492 ], [ -71.059028625488224, -17.875972747802678 ], [ -71.059303283691406, -17.875972747802678 ], [ -71.059303283691406, -17.875694274902287 ], [ -71.059585571289062, -17.875694274902287 ], [ -71.059585571289062, -17.875417709350586 ], [ -71.06097412109375, -17.875417709350586 ], [ -71.06097412109375, -17.875694274902287 ], [ -71.062080383300724, -17.875694274902287 ], [ -71.062080383300724, -17.875972747802678 ], [ -71.063468933105469, -17.875972747802678 ], [ -71.063468933105469, -17.876249313354492 ], [ -71.065139770507756, -17.876249313354492 ], [ -71.065139770507756, -17.876527786254883 ], [ -71.065696716308537, -17.876527786254883 ], [ -71.065696716308537, -17.876249313354492 ], [ -71.065971374511719, -17.876249313354492 ], [ -71.065971374511719, -17.875972747802678 ], [ -71.0665283203125, -17.875972747802678 ], [ -71.0665283203125, -17.875694274902287 ], [ -71.066802978515625, -17.875694274902287 ], [ -71.066802978515625, -17.875417709350586 ], [ -71.067085266113281, -17.875417709350586 ], [ -71.067085266113281, -17.875139236450138 ], [ -71.067642211913949, -17.875139236450138 ], [ -71.067642211913949, -17.874860763549748 ], [ -71.067916870117131, -17.874860763549748 ], [ -71.067916870117131, -17.874584197998047 ], [ -71.069305419921875, -17.874584197998047 ], [ -71.069305419921875, -17.874305725097656 ], [ -71.075141906738224, -17.874305725097656 ], [ -71.075141906738224, -17.874027252197266 ], [ -71.076805114746094, -17.874027252197266 ], [ -71.076805114746094, -17.873750686645508 ], [ -71.077636718749943, -17.873750686645508 ], [ -71.077636718749943, -17.873472213745117 ], [ -71.08013916015625, -17.873472213745117 ], [ -71.08013916015625, -17.873195648193303 ], [ -71.080970764160099, -17.873195648193303 ], [ -71.080970764160099, -17.872917175292912 ], [ -71.081527709960881, -17.872917175292912 ], [ -71.081527709960881, -17.872638702392521 ], [ -71.082359313964844, -17.872638702392521 ], [ -71.082359313964844, -17.872360229492074 ], [ -71.082916259765625, -17.872360229492074 ], [ -71.082916259765625, -17.87208366394043 ], [ -71.08819580078125, -17.87208366394043 ], [ -71.08819580078125, -17.871803283691406 ], [ -71.089302062988281, -17.871803283691406 ], [ -71.089302062988281, -17.871528625488281 ], [ -71.090415954589787, -17.871528625488281 ], [ -71.090415954589787, -17.871250152587891 ], [ -71.09124755859375, -17.871250152587891 ], [ -71.09124755859375, -17.870973587036076 ], [ -71.093193054199162, -17.870973587036076 ], [ -71.093193054199162, -17.871250152587891 ], [ -71.093475341796818, -17.871250152587891 ], [ -71.093475341796818, -17.871528625488281 ], [ -71.094024658203068, -17.871528625488281 ], [ -71.094024658203068, -17.871803283691406 ], [ -71.094306945800724, -17.871803283691406 ], [ -71.094306945800724, -17.871528625488281 ], [ -71.094581604003906, -17.871528625488281 ], [ -71.094581604003906, -17.871250152587891 ], [ -71.094863891601562, -17.871250152587891 ], [ -71.094863891601562, -17.870973587036076 ], [ -71.095138549804688, -17.870973587036076 ], [ -71.095138549804688, -17.870695114135629 ], [ -71.095413208007812, -17.870695114135629 ], [ -71.095413208007812, -17.870416641235352 ], [ -71.095695495605469, -17.870416641235352 ], [ -71.095695495605469, -17.870138168334961 ], [ -71.095970153808594, -17.870138168334961 ], [ -71.095970153808594, -17.869863510131836 ], [ -71.097640991210938, -17.869863510131836 ], [ -71.097640991210938, -17.86958122253418 ], [ -71.097915649414062, -17.86958122253418 ], [ -71.097915649414062, -17.869304656982365 ], [ -71.098197937011719, -17.869304656982365 ], [ -71.098197937011719, -17.869028091430664 ], [ -71.098472595214844, -17.869028091430664 ], [ -71.098472595214844, -17.868749618530217 ], [ -71.098747253417969, -17.868749618530217 ], [ -71.098747253417969, -17.867082595825195 ], [ -71.098472595214844, -17.867082595825195 ], [ -71.098472595214844, -17.865694046020508 ], [ -71.098197937011719, -17.865694046020508 ], [ -71.098197937011719, -17.864305496215707 ], [ -71.098472595214844, -17.864305496215707 ], [ -71.098472595214844, -17.863471984863224 ], [ -71.098747253417969, -17.863471984863224 ], [ -71.098747253417969, -17.862916946411133 ], [ -71.099304199218636, -17.862916946411133 ], [ -71.099304199218636, -17.862638473510742 ], [ -71.099586486816293, -17.862638473510742 ], [ -71.099586486816293, -17.860647201538029 ], [ -71.099586486816293, -17.860137939453068 ], [ -71.099716186523438, -17.860137939453068 ], [ -71.099861145019474, -17.860137939453068 ], [ -71.099861145019474, -17.859584808349496 ], [ -71.100135803222599, -17.859584808349496 ], [ -71.100135803222599, -17.859027862548828 ], [ -71.100418090820256, -17.859027862548828 ], [ -71.100418090820256, -17.858474731445312 ], [ -71.100692749023438, -17.858474731445312 ], [ -71.100692749023438, -17.858192443847656 ], [ -71.101524353027344, -17.858192443847656 ], [ -71.101524353027344, -17.857915878295785 ], [ -71.102363586425781, -17.857915878295785 ], [ -71.102363586425781, -17.857084274291992 ], [ -71.102638244628793, -17.857080459594727 ], [ -71.102638244628793, -17.855970382690373 ], [ -71.103195190429631, -17.855970382690373 ], [ -71.103195190429631, -17.855693817138672 ], [ -71.103469848632756, -17.855693817138672 ], [ -71.103469848632756, -17.855417251586857 ], [ -71.104026794433594, -17.855417251586857 ], [ -71.104026794433594, -17.855138778686467 ], [ -71.1048583984375, -17.855138778686467 ], [ -71.1048583984375, -17.854860305786019 ], [ -71.105697631835938, -17.854860305786019 ], [ -71.105697631835938, -17.854583740234375 ], [ -71.106246948242131, -17.854583740234375 ], [ -71.106246948242131, -17.854305267333928 ], [ -71.106529235839787, -17.854305267333928 ], [ -71.106529235839787, -17.854030609130803 ], [ -71.106803894042912, -17.854030609130803 ], [ -71.106803894042912, -17.853748321533146 ], [ -71.106529235839787, -17.853748321533146 ], [ -71.106529235839787, -17.853471755981445 ], [ -71.106246948242131, -17.853471755981445 ], [ -71.106246948242131, -17.852916717529297 ], [ -71.105972290039006, -17.852916717529297 ], [ -71.105972290039006, -17.852638244628906 ], [ -71.105697631835938, -17.852638244628906 ], [ -71.105697631835938, -17.852361679077092 ], [ -71.10552978515625, -17.852361679077092 ], [ -71.105415344238281, -17.852361679077092 ], [ -71.105415344238281, -17.85180473327631 ], [ -71.105140686035156, -17.85180473327631 ], [ -71.105140686035156, -17.850973129272461 ], [ -71.105247497558594, -17.850973129272461 ], [ -71.105415344238281, -17.850973129272461 ], [ -71.105415344238281, -17.848478317260742 ], [ -71.105415344238281, -17.847360610961914 ], [ -71.105697631835938, -17.847360610961914 ], [ -71.105697631835938, -17.846527099609375 ], [ -71.105972290039006, -17.846527099609375 ], [ -71.105972290039006, -17.84597206115717 ], [ -71.107635498046875, -17.84597206115717 ], [ -71.107635498046875, -17.845417022705078 ], [ -71.107917785644531, -17.845417022705078 ], [ -71.107917785644531, -17.844583511352539 ], [ -71.108192443847656, -17.844583511352539 ], [ -71.108192443847656, -17.844303131103459 ], [ -71.108474731445312, -17.844303131103459 ], [ -71.108474731445312, -17.844028472900334 ], [ -71.108749389648438, -17.844028472900334 ], [ -71.108749389648438, -17.843751907348633 ], [ -71.109024047851506, -17.843751907348633 ], [ -71.109024047851506, -17.843473434448242 ], [ -71.109306335449162, -17.843473434448242 ], [ -71.109306335449162, -17.843194961547795 ], [ -71.109580993652287, -17.843194961547795 ], [ -71.109580993652287, -17.842916488647404 ], [ -71.109863281249943, -17.842916488647404 ], [ -71.109863281249943, -17.842638015747013 ], [ -71.110420227050781, -17.842638015747013 ], [ -71.110420227050781, -17.842359542846623 ], [ -71.110694885253906, -17.842359542846623 ], [ -71.110694885253906, -17.842081069946175 ], [ -71.111251831054688, -17.842081069946175 ], [ -71.111251831054688, -17.841806411743164 ], [ -71.111808776855469, -17.841806411743164 ], [ -71.111808776855469, -17.841527938842773 ], [ -71.112358093261662, -17.841527938842773 ], [ -71.112358093261662, -17.841249465942383 ], [ -71.112640380859318, -17.841249465942383 ], [ -71.112640380859318, -17.840972900390568 ], [ -71.113197326660099, -17.840972900390568 ], [ -71.113197326660099, -17.840694427490178 ], [ -71.113471984863281, -17.840694427490178 ], [ -71.113471984863281, -17.84041595458973 ], [ -71.114028930664062, -17.84041595458973 ], [ -71.114028930664062, -17.840139389038029 ], [ -71.114303588867188, -17.840139389038029 ], [ -71.114303588867188, -17.839860916137638 ], [ -71.114585876464844, -17.839860916137638 ], [ -71.114585876464844, -17.839582443237248 ], [ -71.11513519287098, -17.839582443237248 ], [ -71.11513519287098, -17.839305877685547 ], [ -71.115417480468636, -17.839305877685547 ], [ -71.115417480468636, -17.839027404785156 ], [ -71.115692138671818, -17.839027404785156 ], [ -71.115692138671818, -17.838750839233398 ], [ -71.116249084472599, -17.838750839233398 ], [ -71.116249084472599, -17.838472366333008 ], [ -71.116531372070256, -17.838472366333008 ], [ -71.116531372070256, -17.838193893432617 ], [ -71.117080688476562, -17.838193893432617 ], [ -71.117080688476562, -17.837917327880803 ], [ -71.117362976074219, -17.837917327880803 ], [ -71.117362976074219, -17.837638854980412 ], [ -71.117919921875, -17.837638854980412 ], [ -71.117919921875, -17.837360382079964 ], [ -71.118194580078125, -17.837360382079964 ], [ -71.118194580078125, -17.83708381652832 ], [ -71.118751525878849, -17.83708381652832 ], [ -71.118751525878849, -17.836805343627873 ], [ -71.119308471679631, -17.836805343627873 ], [ -71.119308471679631, -17.836526870727482 ], [ -71.119857788085938, -17.836526870727482 ], [ -71.119857788085938, -17.836250305175781 ], [ -71.120414733886719, -17.836250305175781 ], [ -71.120414733886719, -17.835971832275391 ], [ -71.1209716796875, -17.835971832275391 ], [ -71.1209716796875, -17.835695266723519 ], [ -71.121528625488281, -17.835695266723519 ], [ -71.121528625488281, -17.835416793823242 ], [ -71.121803283691349, -17.835416793823242 ], [ -71.121803283691349, -17.835138320922852 ], [ -71.122360229492131, -17.835138320922852 ], [ -71.122360229492131, -17.834861755371037 ], [ -71.122642517089787, -17.834861755371037 ], [ -71.122642517089787, -17.834583282470646 ], [ -71.123191833496094, -17.834583282470646 ], [ -71.123191833496094, -17.834306716918945 ], [ -71.12347412109375, -17.834306716918945 ], [ -71.12347412109375, -17.834028244018555 ], [ -71.124031066894531, -17.834028244018555 ], [ -71.124031066894531, -17.833749771118107 ], [ -71.124305725097656, -17.833749771118107 ], [ -71.124305725097656, -17.833471298217717 ], [ -71.124862670898324, -17.833471298217717 ], [ -71.124862670898324, -17.833194732666016 ], [ -71.125137329101506, -17.833194732666016 ], [ -71.125137329101506, -17.832916259765625 ], [ -71.125694274902287, -17.832916259765625 ], [ -71.125694274902287, -17.832639694213754 ], [ -71.125968933105412, -17.832639694213754 ], [ -71.125968933105412, -17.832361221313477 ], [ -71.12652587890625, -17.832361221313477 ], [ -71.12652587890625, -17.832084655761662 ], [ -71.126808166503906, -17.832084655761662 ], [ -71.126808166503906, -17.831806182861271 ], [ -71.127357482910156, -17.831806182861271 ], [ -71.127357482910156, -17.831527709960881 ], [ -71.127639770507812, -17.831527709960881 ], [ -71.127639770507812, -17.83124923706049 ], [ -71.12819671630848, -17.83124923706049 ], [ -71.12819671630848, -17.830974578857308 ], [ -71.128471374511662, -17.830974578857308 ], [ -71.128471374511662, -17.830692291259766 ], [ -71.129028320312443, -17.830692291259766 ], [ -71.129028320312443, -17.830415725707951 ], [ -71.129302978515625, -17.830415725707951 ], [ -71.129302978515625, -17.83013916015625 ], [ -71.129859924316406, -17.83013916015625 ], [ -71.129859924316406, -17.829862594604435 ], [ -71.130142211914062, -17.829862594604435 ], [ -71.130142211914062, -17.829584121704045 ], [ -71.130416870117188, -17.829584121704045 ], [ -71.130416870117188, -17.829305648803597 ], [ -71.130973815917969, -17.829305648803597 ], [ -71.130973815917969, -17.82902717590332 ], [ -71.13124847412098, -17.82902717590332 ], [ -71.13124847412098, -17.828752517700195 ], [ -71.131530761718693, -17.828752517700195 ], [ -71.131530761718693, -17.828470230102539 ], [ -71.131805419921818, -17.828470230102539 ], [ -71.131805419921818, -17.828193664550724 ], [ -71.132362365722599, -17.828193664550724 ], [ -71.132362365722599, -17.827917098999023 ], [ -71.132637023925781, -17.827917098999023 ], [ -71.132637023925781, -17.827638626098633 ], [ -71.133193969726562, -17.827638626098633 ], [ -71.133193969726562, -17.827360153198185 ], [ -71.133750915527344, -17.827358245849609 ], [ -71.133750915527344, -17.827083587646484 ], [ -71.134307861328125, -17.827083587646484 ], [ -71.134307861328125, -17.826805114746094 ], [ -71.134864807128849, -17.826805114746094 ], [ -71.134864807128849, -17.826528549194279 ], [ -71.135696411132756, -17.826528549194279 ], [ -71.135696411132756, -17.826248168945312 ], [ -71.136253356933594, -17.826248168945312 ], [ -71.136253356933594, -17.825971603393555 ], [ -71.136528015136719, -17.825971603393555 ], [ -71.136528015136719, -17.82569503784174 ], [ -71.1370849609375, -17.82569503784174 ], [ -71.1370849609375, -17.825416564941349 ], [ -71.137359619140625, -17.825416564941349 ], [ -71.137359619140625, -17.825138092040959 ], [ -71.137916564941349, -17.825138092040959 ], [ -71.137916564941349, -17.824861526489258 ], [ -71.138191223144474, -17.824861526489258 ], [ -71.138191223144474, -17.824583053588867 ], [ -71.138473510742131, -17.824583053588867 ], [ -71.138473510742131, -17.824306488037109 ], [ -71.138748168945256, -17.824304580688477 ], [ -71.138748168945256, -17.824026107788029 ], [ -71.139305114746094, -17.824026107788029 ], [ -71.139305114746094, -17.823749542236328 ], [ -71.139579772949219, -17.823749542236328 ], [ -71.139579772949219, -17.823472976684513 ], [ -71.139862060546875, -17.823472976684513 ], [ -71.139862060546875, -17.823194503784123 ], [ -71.140975952148324, -17.823194503784123 ], [ -71.140975952148324, -17.822917938232422 ], [ -71.142082214355469, -17.822917938232422 ], [ -71.142105102539006, -17.822639465331974 ], [ -71.139305114746094, -17.821405410766602 ], [ -71.135856628417969, -17.81962776184082 ], [ -71.132469177246037, -17.817205429077148 ], [ -71.131538391113168, -17.816745758056584 ], [ -71.129333496093693, -17.814825057983398 ], [ -71.127861022949219, -17.813949584960938 ], [ -71.126205444335938, -17.809864044189396 ], [ -71.125106811523438, -17.808353424072209 ], [ -71.12353515625, -17.807149887084904 ], [ -71.122444152831974, -17.805315017700195 ], [ -71.122032165527344, -17.803800582885742 ], [ -71.121719360351562, -17.801069259643498 ], [ -71.121841430664062, -17.799509048461914 ], [ -71.121261596679688, -17.795970916747933 ], [ -71.121696472167912, -17.792415618896428 ], [ -71.121772766113224, -17.785055160522347 ], [ -71.121231079101506, -17.783979415893498 ], [ -71.11962890625, -17.781801223754826 ], [ -71.116058349609318, -17.777824401855412 ], [ -71.11480712890625, -17.77556037902832 ], [ -71.111946105957031, -17.771762847900391 ], [ -71.110603332519531, -17.768911361694279 ], [ -71.110313415527344, -17.766153335571232 ], [ -71.109779357910099, -17.764898300170842 ], [ -71.108375549316406, -17.762676239013615 ], [ -71.106216430664062, -17.760343551635685 ], [ -71.104377746582031, -17.756698608398438 ], [ -71.103309631347543, -17.755062103271371 ], [ -71.102722167968693, -17.753021240234318 ], [ -71.10247802734375, -17.75119590759266 ], [ -71.102569580078125, -17.749454498291016 ], [ -71.103057861328125, -17.747955322265625 ], [ -71.103187561035099, -17.744857788085824 ], [ -71.102638244628793, -17.743373870849609 ], [ -71.102310180664062, -17.741464614868107 ], [ -71.101303100585824, -17.739280700683594 ], [ -71.09767913818348, -17.7352294921875 ], [ -71.096450805664062, -17.734210968017578 ], [ -71.094398498535156, -17.733026504516602 ], [ -71.0919189453125, -17.73274040222168 ], [ -71.089828491210881, -17.733060836791935 ], [ -71.088653564453125, -17.733442306518498 ], [ -71.084327697753793, -17.735801696777344 ], [ -71.083114624023438, -17.735586166381836 ], [ -71.082344055175781, -17.73439979553217 ], [ -71.082160949707031, -17.733772277831974 ], [ -71.082450866699219, -17.731504440307617 ], [ -71.082183837890625, -17.729400634765568 ], [ -71.083847045898381, -17.725589752197152 ], [ -71.084098815917969, -17.722480773925781 ], [ -71.085166931152287, -17.721067428588867 ], [ -71.084930419921875, -17.719583511352539 ], [ -71.084320068359318, -17.718435287475586 ], [ -71.08349609375, -17.71730995178217 ], [ -71.082359313964844, -17.716464996337891 ], [ -71.079277038574105, -17.71497726440424 ], [ -71.073638916015568, -17.713539123535099 ], [ -71.070625305175781, -17.714138031005803 ], [ -71.067893981933537, -17.715923309326115 ], [ -71.065597534179688, -17.716228485107365 ], [ -71.063438415527287, -17.717466354370117 ], [ -71.061225891113224, -17.719623565673828 ], [ -71.059555053710938, -17.71992301940918 ], [ -71.056144714355469, -17.716579437255859 ], [ -71.05450439453125, -17.714418411254883 ], [ -71.05257415771473, -17.712368011474609 ], [ -71.048606872558594, -17.70864295959467 ], [ -71.04632568359375, -17.708400726318303 ], [ -71.040008544921875, -17.708560943603516 ], [ -71.038322448730469, -17.708915710449219 ], [ -71.037109374999943, -17.709440231323242 ], [ -71.035949707031193, -17.709442138671818 ], [ -71.034271240234375, -17.708795547485352 ], [ -71.030601501464787, -17.706123352050724 ], [ -71.028762817382812, -17.704507827758789 ], [ -71.027076721191349, -17.703664779663086 ], [ -71.025596618652344, -17.70402717590332 ], [ -71.024482727050781, -17.704574584960881 ], [ -71.021507263183594, -17.707681655883732 ], [ -71.020393371582031, -17.708568572998047 ], [ -71.018402099609318, -17.709215164184513 ], [ -71.017280578613224, -17.708993911743164 ], [ -71.016799926757756, -17.708551406860295 ], [ -71.016044616699105, -17.706758499145394 ], [ -71.015060424804631, -17.705396652221623 ], [ -71.013984680175781, -17.702936172485295 ], [ -71.012550354003906, -17.702032089233398 ], [ -71.010314941406193, -17.699867248535156 ], [ -71.009559631347543, -17.698705673217773 ], [ -71.008064270019531, -17.695310592651254 ], [ -71.00531005859375, -17.692386627197209 ], [ -71.004882812499943, -17.690862655639648 ], [ -71.004760742187443, -17.6863498687743 ], [ -71.004318237304574, -17.684852600097599 ], [ -71.003517150878849, -17.683483123779297 ], [ -70.999275207519531, -17.681257247924748 ], [ -70.997100830078125, -17.680591583251953 ], [ -70.9931640625, -17.678905487060547 ], [ -70.991622924804631, -17.678756713867131 ], [ -70.989852905273438, -17.679044723510742 ], [ -70.988258361816349, -17.680240631103516 ], [ -70.986083984374943, -17.682830810546818 ], [ -70.985244750976449, -17.683542251586914 ], [ -70.983322143554631, -17.684413909912109 ], [ -70.982368469238224, -17.684576034545898 ], [ -70.981285095214844, -17.684282302856445 ], [ -70.979393005371037, -17.683343887329102 ], [ -70.978538513183537, -17.68321418762207 ], [ -70.976882934570312, -17.68212890625 ], [ -70.974586486816406, -17.68145751953125 ], [ -70.972900390625, -17.680402755737248 ], [ -70.971130371093636, -17.679969787597599 ], [ -70.968002319335938, -17.677001953125 ], [ -70.966018676757812, -17.676067352294865 ], [ -70.960281372070312, -17.676183700561523 ], [ -70.958244323730412, -17.675899505615178 ], [ -70.957046508789062, -17.676162719726506 ], [ -70.955513000488281, -17.676141738891488 ], [ -70.954856872558594, -17.67628288269043 ], [ -70.950843811035156, -17.678396224975529 ], [ -70.949043273925781, -17.679019927978459 ], [ -70.947074890136662, -17.680179595947209 ], [ -70.945259094238224, -17.680692672729435 ], [ -70.943077087402287, -17.682332992553654 ], [ -70.941314697265625, -17.683061599731445 ], [ -70.938240051269531, -17.68508338928217 ], [ -70.935729980468693, -17.685646057128906 ], [ -70.934867858886662, -17.686220169067326 ], [ -70.934005737304631, -17.686330795288029 ], [ -70.933364868163949, -17.686868667602539 ], [ -70.93135833740223, -17.687494277953988 ], [ -70.927398681640625, -17.688127517700138 ], [ -70.924224853515625, -17.6875 ], [ -70.921600341796818, -17.687969207763672 ], [ -70.91748046875, -17.688045501708984 ], [ -70.913307189941349, -17.687091827392578 ], [ -70.912666320800668, -17.686674118041992 ], [ -70.912353515624943, -17.686126708984375 ], [ -70.912033081054688, -17.683277130126953 ], [ -70.911079406738281, -17.68127250671381 ], [ -70.91107177734375, -17.679622650146371 ], [ -70.910491943359375, -17.678258895874023 ], [ -70.910369873046818, -17.675313949584961 ], [ -70.909866333007756, -17.673454284667969 ], [ -70.909683227539006, -17.670518875121957 ], [ -70.909408569335881, -17.669546127319279 ], [ -70.909446716308594, -17.668899536132812 ], [ -70.910179138183537, -17.667409896850586 ], [ -70.910118103027344, -17.665098190307617 ], [ -70.90899658203125, -17.663055419921875 ], [ -70.9073486328125, -17.661153793334904 ], [ -70.907577514648381, -17.659147262573185 ], [ -70.909477233886719, -17.655723571777344 ], [ -70.909881591796818, -17.654243469238224 ], [ -70.909645080566406, -17.652488708496094 ], [ -70.908805847167969, -17.650829315185547 ], [ -70.908622741699219, -17.649173736572209 ], [ -70.907722473144531, -17.647207260131836 ], [ -70.907424926757699, -17.646913528442383 ], [ -70.907081604003906, -17.645524978637638 ], [ -70.905303955078068, -17.643241882324219 ], [ -70.904693603515625, -17.641597747802734 ], [ -70.904708862304688, -17.63965988159174 ], [ -70.904098510742188, -17.634550094604435 ], [ -70.904228210449219, -17.632152557373047 ], [ -70.904846191406136, -17.629638671874943 ], [ -70.904891967773438, -17.628368377685547 ], [ -70.903823852539062, -17.621454238891602 ], [ -70.90228271484375, -17.618383407592773 ], [ -70.898872375488281, -17.614650726318303 ], [ -70.896965026855469, -17.611959457397347 ], [ -70.896270751953125, -17.609573364257812 ], [ -70.896148681640568, -17.607486724853516 ], [ -70.896171569824105, -17.606306076049748 ], [ -70.896636962890568, -17.605287551879769 ], [ -70.896583557128906, -17.603536605834904 ], [ -70.894561767578125, -17.598396301269531 ], [ -70.893699645996094, -17.592958450317326 ], [ -70.892738342285043, -17.591785430908146 ], [ -70.890655517578125, -17.589872360229492 ], [ -70.889938354492131, -17.588272094726562 ], [ -70.889190673828068, -17.587200164794865 ], [ -70.885169982910099, -17.583372116088867 ], [ -70.884407043456974, -17.582212448120117 ], [ -70.884246826171761, -17.581027984619141 ], [ -70.884368896484375, -17.57855033874506 ], [ -70.884086608886719, -17.577680587768555 ], [ -70.884498596191349, -17.576675415039062 ], [ -70.884498596191349, -17.57374382019043 ], [ -70.884063720703125, -17.572814941406136 ], [ -70.882217407226506, -17.570829391479435 ], [ -70.881690979003906, -17.569744110107365 ], [ -70.881553649902287, -17.568740844726562 ], [ -70.881683349609375, -17.56561279296875 ], [ -70.882972717285099, -17.561771392822266 ], [ -70.881980895996094, -17.558881759643555 ], [ -70.88067626953125, -17.556852340698242 ], [ -70.880233764648381, -17.555627822875977 ], [ -70.879150390625, -17.554882049560433 ], [ -70.876815795898438, -17.554397583007756 ], [ -70.874755859375, -17.552902221679688 ], [ -70.872978210449162, -17.552209854125977 ], [ -70.872047424316406, -17.551559448242188 ], [ -70.870246887207031, -17.549528121948242 ], [ -70.868873596191349, -17.547306060791016 ], [ -70.865005493164062, -17.543870925903207 ], [ -70.864593505859318, -17.54003715515131 ], [ -70.864143371582031, -17.539117813110352 ], [ -70.862739562988281, -17.537736892700138 ], [ -70.860374450683537, -17.536151885986328 ], [ -70.85919189453125, -17.535558700561467 ], [ -70.857345581054631, -17.535034179687443 ], [ -70.857002258300781, -17.534357070922852 ], [ -70.856826782226562, -17.532253265380803 ], [ -70.856048583984375, -17.53120040893549 ], [ -70.854354858398438, -17.530172348022461 ], [ -70.851608276367131, -17.529781341552678 ], [ -70.850067138671875, -17.529237747192383 ], [ -70.849494934082031, -17.52877235412592 ], [ -70.848915100097656, -17.527507781982365 ], [ -70.848190307617131, -17.526758193969727 ], [ -70.845878601074162, -17.525882720947209 ], [ -70.844314575195312, -17.524675369262638 ], [ -70.842834472656193, -17.522209167480469 ], [ -70.841545104980469, -17.520614624023381 ], [ -70.838897705078125, -17.518203735351562 ], [ -70.837783813476506, -17.517675399780273 ], [ -70.836936950683537, -17.516792297363281 ], [ -70.836006164550781, -17.514762878417969 ], [ -70.835952758789062, -17.512289047241154 ], [ -70.835617065429688, -17.511434555053654 ], [ -70.833030700683537, -17.508844375610295 ], [ -70.832283020019531, -17.50745773315424 ], [ -70.828880310058594, -17.503093719482365 ], [ -70.828201293945312, -17.501708984375 ], [ -70.826858520507812, -17.500392913818303 ], [ -70.826301574707031, -17.499378204345589 ], [ -70.824104309082031, -17.497238159179688 ], [ -70.823532104492188, -17.496099472045898 ], [ -70.821960449218693, -17.494047164916992 ], [ -70.821121215820312, -17.493244171142521 ], [ -70.819961547851506, -17.492633819580078 ], [ -70.818679809570312, -17.491262435913086 ], [ -70.816711425781193, -17.490409851074162 ], [ -70.813972473144531, -17.487510681152344 ], [ -70.810371398925781, -17.485811233520508 ], [ -70.808403015136662, -17.48277473449707 ], [ -70.805679321289062, -17.480354309082031 ], [ -70.804397583007756, -17.478839874267521 ], [ -70.803169250488224, -17.47523307800293 ], [ -70.802322387695256, -17.473844528198185 ], [ -70.801162719726506, -17.472843170165959 ], [ -70.798934936523438, -17.471481323242188 ], [ -70.796073913574219, -17.468696594238281 ], [ -70.793045043945256, -17.466449737548771 ], [ -70.792121887206918, -17.465095520019531 ], [ -70.791557312011719, -17.462621688842773 ], [ -70.790885925292855, -17.461263656616154 ], [ -70.789581298828125, -17.460262298583928 ], [ -70.788307189941293, -17.459991455078011 ], [ -70.787956237792969, -17.459640502929688 ], [ -70.786666870117131, -17.459415435790959 ], [ -70.785957336425781, -17.458978652954045 ], [ -70.781990051269474, -17.454078674316293 ], [ -70.781768798828125, -17.45270919799799 ], [ -70.781158447265511, -17.451452255248967 ], [ -70.778579711913949, -17.448890686035156 ], [ -70.776336669921875, -17.448104858398438 ], [ -70.771415710449162, -17.448070526122933 ], [ -70.770164489746037, -17.447828292846623 ], [ -70.768768310546875, -17.445949554443303 ], [ -70.767692565917912, -17.445466995239258 ], [ -70.766799926757812, -17.444562911987248 ], [ -70.766372680663949, -17.441963195800724 ], [ -70.765602111816349, -17.440713882446289 ], [ -70.764511108398438, -17.440284729003906 ], [ -70.763488769531193, -17.439325332641545 ], [ -70.761688232421818, -17.439203262329102 ], [ -70.760253906249943, -17.438625335693303 ], [ -70.75848388671875, -17.438838958740234 ], [ -70.7564697265625, -17.437814712524357 ], [ -70.754722595214787, -17.436082839965763 ], [ -70.752647399902344, -17.43452072143549 ], [ -70.752548217773324, -17.433599472045842 ], [ -70.751853942871037, -17.432012557983398 ], [ -70.748336791992131, -17.430578231811523 ], [ -70.746566772460938, -17.42901611328125 ], [ -70.74664306640625, -17.421775817871094 ], [ -70.746284484863281, -17.421182632446289 ], [ -70.746231079101506, -17.420497894287053 ], [ -70.746597290039006, -17.418258666992188 ], [ -70.745460510253849, -17.416763305664006 ], [ -70.743232727050781, -17.415218353271484 ], [ -70.741661071777287, -17.41290283203125 ], [ -70.73909759521473, -17.411207199096623 ], [ -70.738822937011719, -17.409738540649414 ], [ -70.736572265625, -17.40754508972168 ], [ -70.736679077148381, -17.406150817871094 ], [ -70.735794067382812, -17.405536651611214 ], [ -70.735633850097599, -17.405136108398381 ], [ -70.735755920410099, -17.404308319091797 ], [ -70.736343383789062, -17.40294075012207 ], [ -70.735382080078011, -17.401287078857422 ], [ -70.735443115234318, -17.400857925415039 ], [ -70.739128112792969, -17.398311614990234 ], [ -70.741401672363281, -17.395212173461914 ], [ -70.742683410644531, -17.394004821777344 ], [ -70.747879028320312, -17.388027191162109 ], [ -70.7501220703125, -17.384565353393555 ], [ -70.751724243164062, -17.380849838256779 ], [ -70.752235412597599, -17.380086898803654 ], [ -70.752799987792912, -17.378440856933537 ], [ -70.752876281738281, -17.377059936523438 ], [ -70.752098083496094, -17.37429237365717 ], [ -70.751876831054574, -17.370275497436467 ], [ -70.751335144042969, -17.368982315063477 ], [ -70.750961303710938, -17.367063522338867 ], [ -70.750373840332031, -17.365932464599553 ], [ -70.748992919921818, -17.360446929931641 ], [ -70.748397827148438, -17.358936309814453 ], [ -70.748077392578125, -17.356891632080021 ], [ -70.747314453125, -17.354827880859375 ], [ -70.746467590332031, -17.350534439086857 ], [ -70.745681762695199, -17.348995208740234 ], [ -70.745307922363281, -17.347190856933594 ], [ -70.743927001953068, -17.344762802124023 ], [ -70.743438720703125, -17.341686248779297 ], [ -70.743049621582031, -17.340732574462891 ], [ -70.741439819335938, -17.337333679199162 ], [ -70.740142822265568, -17.335393905639535 ], [ -70.739913940429688, -17.334144592285156 ], [ -70.738304138183537, -17.330404281616154 ], [ -70.735397338867188, -17.325777053833008 ], [ -70.735176086425724, -17.324998855590707 ], [ -70.732658386230469, -17.322067260742131 ], [ -70.731369018554631, -17.32012748718256 ], [ -70.729881286621094, -17.318635940551758 ], [ -70.726860046386662, -17.315839767455998 ], [ -70.721656799316406, -17.311668395996037 ], [ -70.719879150390625, -17.309961318969727 ], [ -70.718460083007812, -17.308244705200195 ], [ -70.717399597167969, -17.30751991271967 ], [ -70.716186523437443, -17.304643630981445 ], [ -70.716064453125, -17.301557540893555 ], [ -70.708061218261719, -17.294277191162109 ], [ -70.705848693847656, -17.290969848632756 ], [ -70.705650329589844, -17.290206909179631 ], [ -70.705825805664062, -17.289190292358398 ], [ -70.707153320312386, -17.28866004943842 ], [ -70.708229064941406, -17.288665771484375 ], [ -70.708709716796875, -17.288322448730412 ], [ -70.711097717285156, -17.287616729736328 ], [ -70.71230316162098, -17.28666877746582 ], [ -70.71307373046875, -17.285646438598633 ], [ -70.713645935058594, -17.283891677856388 ], [ -70.713813781738224, -17.280675888061523 ], [ -70.714241027832031, -17.280000686645508 ], [ -70.714485168456974, -17.278633117675781 ], [ -70.71575927734375, -17.27580451965332 ], [ -70.715713500976506, -17.273954391479435 ], [ -70.715362548828125, -17.272611618041935 ], [ -70.714637756347656, -17.271406173705941 ], [ -70.713592529296875, -17.270463943481445 ], [ -70.71221923828125, -17.270046234130859 ], [ -70.710334777832031, -17.269798278808537 ], [ -70.709365844726562, -17.26933479309082 ], [ -70.707595825195256, -17.269243240356445 ], [ -70.705238342285099, -17.26771354675293 ], [ -70.704483032226449, -17.266994476318359 ], [ -70.704017639160156, -17.265659332275391 ], [ -70.703826904296875, -17.262029647827092 ], [ -70.703384399414062, -17.261632919311523 ], [ -70.702949523925724, -17.260675430297852 ], [ -70.702896118164062, -17.259304046630803 ], [ -70.702423095703125, -17.258247375488281 ], [ -70.702308654785156, -17.256637573242131 ], [ -70.701393127441349, -17.25439262390131 ], [ -70.700080871581974, -17.252616882324219 ], [ -70.698493957519531, -17.249904632568359 ], [ -70.697914123535156, -17.249322891235352 ], [ -70.697212219238224, -17.247728347778263 ], [ -70.694618225097656, -17.244743347167912 ], [ -70.692832946777287, -17.241367340087891 ], [ -70.691726684570312, -17.240665435791016 ], [ -70.689529418945312, -17.239980697631836 ], [ -70.688690185546875, -17.239980697631836 ], [ -70.688140869140568, -17.23952674865717 ], [ -70.687820434570312, -17.238187789916935 ], [ -70.687004089355412, -17.236391067504826 ], [ -70.687095642089787, -17.233867645263615 ], [ -70.685470581054631, -17.231876373290902 ], [ -70.68487548828125, -17.230367660522404 ], [ -70.68341064453125, -17.22919845581049 ], [ -70.683059692382812, -17.228605270385742 ], [ -70.682601928710938, -17.227170944213867 ], [ -70.682647705078125, -17.226106643676644 ], [ -70.682853698730469, -17.225597381591797 ], [ -70.684089660644531, -17.22418022155756 ], [ -70.684249877929631, -17.223499298095703 ], [ -70.684089660644531, -17.22307014465332 ], [ -70.681480407714787, -17.222772598266602 ], [ -70.678375244140625, -17.222850799560547 ], [ -70.677101135253849, -17.222209930419865 ], [ -70.676033020019474, -17.220815658569336 ], [ -70.675102233886662, -17.220111846923771 ], [ -70.674064636230469, -17.219818115234375 ], [ -70.671333312988281, -17.219587326049748 ], [ -70.670127868652287, -17.218858718871957 ], [ -70.669418334960938, -17.218227386474553 ], [ -70.669174194335881, -17.217475891113168 ], [ -70.668327331542912, -17.216510772705021 ], [ -70.667892456054688, -17.215076446533146 ], [ -70.666648864746094, -17.213996887207031 ], [ -70.665962219238281, -17.213800430297738 ], [ -70.663452148437443, -17.213890075683594 ], [ -70.661911010742131, -17.213685989379826 ], [ -70.659446716308537, -17.212261199951172 ], [ -70.657852172851562, -17.211767196655217 ], [ -70.655158996581974, -17.210283279418945 ], [ -70.652610778808594, -17.209291458129826 ], [ -70.651298522949219, -17.209299087524357 ], [ -70.647628784179631, -17.210338592529297 ], [ -70.642097473144474, -17.211217880248967 ], [ -70.640182495117131, -17.211185455322266 ], [ -70.639015197753906, -17.210943222045785 ], [ -70.637359619140625, -17.211160659790039 ], [ -70.632942199706974, -17.211027145385685 ], [ -70.632461547851506, -17.211416244506722 ], [ -70.632339477539062, -17.212324142456055 ], [ -70.631660461425781, -17.213291168212891 ], [ -70.631088256835938, -17.213657379150277 ], [ -70.630233764648438, -17.213766098022404 ], [ -70.628852844238168, -17.213401794433594 ], [ -70.626899719238281, -17.212295532226506 ], [ -70.623680114746037, -17.211395263671875 ], [ -70.619064331054688, -17.208959579467773 ], [ -70.617675781249943, -17.208560943603516 ], [ -70.617149353027344, -17.208774566650334 ], [ -70.616500854492188, -17.210365295410156 ], [ -70.614410400390625, -17.211896896362191 ], [ -70.612983703613281, -17.213291168212891 ], [ -70.61114501953125, -17.21430587768549 ], [ -70.610191345214844, -17.214294433593693 ], [ -70.607955932617131, -17.213207244873047 ], [ -70.605552673339787, -17.210819244384766 ], [ -70.602912902831918, -17.210069656372013 ], [ -70.600067138671875, -17.210304260253849 ], [ -70.599365234374943, -17.210170745849609 ], [ -70.597221374511719, -17.208906173705998 ], [ -70.594871520996037, -17.2080783843993 ], [ -70.592491149902287, -17.205970764160156 ], [ -70.591079711914006, -17.205129623413086 ], [ -70.589195251464844, -17.204385757446289 ], [ -70.587043762207031, -17.204328536987248 ], [ -70.584808349609375, -17.203395843505859 ], [ -70.581886291503906, -17.20101356506342 ], [ -70.580963134765568, -17.199956893920842 ], [ -70.58013916015625, -17.198549270629883 ], [ -70.578819274902344, -17.197565078735295 ], [ -70.576950073242131, -17.197198867797795 ], [ -70.57497406005848, -17.197580337524357 ], [ -70.572822570800781, -17.197542190551758 ], [ -70.571754455566406, -17.196807861328125 ], [ -70.570594787597656, -17.195058822631836 ], [ -70.569107055664062, -17.194557189941349 ], [ -70.566001892089787, -17.194505691528263 ], [ -70.561035156249943, -17.195829391479492 ], [ -70.557563781738281, -17.197357177734375 ], [ -70.556617736816406, -17.197391510009766 ], [ -70.554985046386719, -17.196660995483398 ], [ -70.553970336914006, -17.195529937744084 ], [ -70.552429199218693, -17.192800521850529 ], [ -70.550300598144531, -17.190822601318359 ], [ -70.550140380859318, -17.189693450927678 ], [ -70.550270080566293, -17.186243057250863 ], [ -70.549896240234375, -17.185026168823242 ], [ -70.548248291015568, -17.184097290038949 ], [ -70.546211242675781, -17.183483123779297 ], [ -70.544227600097599, -17.181329727172852 ], [ -70.542526245117131, -17.180255889892521 ], [ -70.540153503417912, -17.17782020568842 ], [ -70.538536071777287, -17.17683029174799 ], [ -70.538139343261662, -17.176265716552678 ], [ -70.537773132324162, -17.174577713012638 ], [ -70.536521911621037, -17.173196792602539 ], [ -70.535537719726562, -17.172544479370117 ], [ -70.532966613769531, -17.172082901000977 ], [ -70.530319213867131, -17.171003341674805 ], [ -70.528800964355412, -17.169906616210938 ], [ -70.527458190917912, -17.168281555175781 ], [ -70.525924682617131, -17.166217803955078 ], [ -70.523002624511719, -17.160264968872013 ], [ -70.521331787109375, -17.158027648925724 ], [ -70.520736694335938, -17.154272079467717 ], [ -70.520019531249943, -17.152435302734261 ], [ -70.519073486328068, -17.151260375976506 ], [ -70.518127441406193, -17.146064758300781 ], [ -70.517059326171818, -17.142650604248047 ], [ -70.514259338378906, -17.139656066894418 ], [ -70.51361083984375, -17.138444900512638 ], [ -70.510604858398438, -17.135654449462891 ], [ -70.509422302246037, -17.13365364074707 ], [ -70.507637023925724, -17.131496429443359 ], [ -70.506072998046875, -17.128025054931641 ], [ -70.505249023437443, -17.127033233642521 ], [ -70.5040283203125, -17.126102447509709 ], [ -70.502227783203125, -17.118625640869141 ], [ -70.499687194824219, -17.116369247436523 ], [ -70.498924255371094, -17.114910125732422 ], [ -70.496795654296875, -17.11305046081543 ], [ -70.495033264160099, -17.110198974609375 ], [ -70.494537353515625, -17.109104156494084 ], [ -70.494064331054631, -17.106489181518498 ], [ -70.494041442871094, -17.104461669921761 ], [ -70.493453979492188, -17.10270881652832 ], [ -70.492691040039062, -17.098352432250977 ], [ -70.491744995117188, -17.095256805419922 ], [ -70.491600036621037, -17.091304779052621 ], [ -70.491081237792969, -17.090211868286133 ], [ -70.490386962890625, -17.089466094970646 ], [ -70.48773193359375, -17.087728500366097 ], [ -70.485336303710938, -17.087089538574162 ], [ -70.481086730957031, -17.085472106933537 ], [ -70.478813171386662, -17.085710525512638 ], [ -70.477005004882756, -17.086696624755803 ], [ -70.474716186523381, -17.086645126342717 ], [ -70.472412109375, -17.087549209594727 ], [ -70.470787048339844, -17.088487625121957 ], [ -70.468788146972656, -17.088659286498967 ], [ -70.467323303222656, -17.087661743164006 ], [ -70.465507507324219, -17.084737777709904 ], [ -70.463661193847599, -17.08289909362793 ], [ -70.462135314941349, -17.0826416015625 ], [ -70.461349487304688, -17.082010269165039 ], [ -70.459426879882812, -17.081903457641545 ], [ -70.458580017089844, -17.082002639770394 ], [ -70.456802368164006, -17.082664489746094 ], [ -70.454994201660099, -17.082769393920785 ], [ -70.454704284667912, -17.082538604736328 ], [ -70.451316833496094, -17.081758499145508 ], [ -70.449600219726562, -17.080591201782227 ], [ -70.448722839355469, -17.079381942749023 ], [ -70.448341369628906, -17.077568054199105 ], [ -70.448791503906193, -17.075641632080021 ], [ -70.448432922363281, -17.071876525878906 ], [ -70.448150634765625, -17.07119178771967 ], [ -70.446784973144474, -17.069765090942326 ], [ -70.446449279785156, -17.069107055664062 ], [ -70.446578979492131, -17.06617164611805 ], [ -70.447280883789062, -17.064798355102539 ], [ -70.447120666503906, -17.062955856323242 ], [ -70.445579528808594, -17.059793472290039 ], [ -70.445327758789062, -17.058624267578125 ], [ -70.444145202636719, -17.056514739990234 ], [ -70.442733764648438, -17.054544448852539 ], [ -70.439918518066349, -17.051912307739258 ], [ -70.439521789550724, -17.051263809204045 ], [ -70.43939208984375, -17.050159454345703 ], [ -70.439826965331974, -17.049087524414062 ], [ -70.442604064941293, -17.047426223754883 ], [ -70.444267272949219, -17.045419692993164 ], [ -70.444915771484375, -17.042360305786133 ], [ -70.445732116699162, -17.040800094604435 ], [ -70.446151733398438, -17.038719177246037 ], [ -70.446868896484318, -17.037643432617188 ], [ -70.448463439941406, -17.035974502563477 ], [ -70.448951721191406, -17.035039901733398 ], [ -70.448654174804688, -17.031444549560547 ], [ -70.44985198974598, -17.028451919555664 ], [ -70.449996948242188, -17.025966644287053 ], [ -70.451400756835938, -17.024602890014648 ], [ -70.4521484375, -17.024202346801701 ], [ -70.453277587890568, -17.023992538452092 ], [ -70.454185485839844, -17.023021697997933 ], [ -70.4539794921875, -17.019266128540039 ], [ -70.454246520996094, -17.018478393554688 ], [ -70.455078124999943, -17.017597198486328 ], [ -70.456169128417969, -17.017278671264648 ], [ -70.457534790039062, -17.016271591186467 ], [ -70.459388732910043, -17.015863418579102 ], [ -70.460838317871094, -17.015209197998047 ], [ -70.4617919921875, -17.01404953002924 ], [ -70.463172912597599, -17.011629104614258 ], [ -70.463722229003906, -17.009025573730469 ], [ -70.463569641113224, -17.004793167114258 ], [ -70.462562561035156, -17.001895904541016 ], [ -70.461624145507812, -17.000539779663029 ], [ -70.461555480956974, -16.999141693115178 ], [ -70.460968017578125, -16.997676849365234 ], [ -70.460998535156193, -16.996913909912109 ], [ -70.459518432617188, -16.994661331176758 ], [ -70.457984924316406, -16.992769241333008 ], [ -70.456260681152344, -16.991172790527344 ], [ -70.452217102050724, -16.986194610595646 ], [ -70.450630187988281, -16.983768463134766 ], [ -70.450180053710938, -16.982381820678711 ], [ -70.449836730956974, -16.978431701660156 ], [ -70.449058532714787, -16.976936340331974 ], [ -70.446182250976562, -16.973726272582951 ], [ -70.445617675781193, -16.972658157348633 ], [ -70.4451904296875, -16.971242904663086 ], [ -70.4449462890625, -16.967098236083928 ], [ -70.443389892578125, -16.964069366455021 ], [ -70.44366455078125, -16.961847305297852 ], [ -70.444686889648381, -16.960781097412109 ], [ -70.445953369140625, -16.959943771362305 ], [ -70.447853088378906, -16.959337234497013 ], [ -70.450500488281193, -16.957864761352539 ], [ -70.454849243164062, -16.954309463500863 ], [ -70.455741882324162, -16.954023361205941 ], [ -70.462265014648438, -16.948274612426701 ], [ -70.464912414550724, -16.94548225402832 ], [ -70.464645385742188, -16.943050384521484 ], [ -70.464111328125, -16.942182540893498 ], [ -70.462661743164062, -16.938373565673828 ], [ -70.461677551269418, -16.936574935913086 ], [ -70.461013793945312, -16.934270858764592 ], [ -70.46038818359375, -16.93385124206543 ], [ -70.458221435546818, -16.933549880981445 ], [ -70.456695556640568, -16.933029174804688 ], [ -70.455307006835938, -16.932060241699219 ], [ -70.4544677734375, -16.930942535400391 ], [ -70.454330444335824, -16.928361892700138 ], [ -70.454933166503906, -16.926624298095703 ], [ -70.455947875976506, -16.924627304077092 ], [ -70.457130432128906, -16.923416137695312 ], [ -70.458518981933537, -16.923107147216797 ], [ -70.459373474121037, -16.922531127929688 ], [ -70.454994201660099, -16.917781829833984 ], [ -70.452774047851506, -16.914646148681584 ], [ -70.451881408691406, -16.912914276123047 ], [ -70.451118469238281, -16.906236648559513 ], [ -70.452156066894531, -16.902673721313477 ], [ -70.451934814453068, -16.899799346923771 ], [ -70.451004028320312, -16.898786544799748 ], [ -70.44940185546875, -16.897588729858398 ], [ -70.448249816894531, -16.897138595581055 ], [ -70.447921752929631, -16.896806716918945 ], [ -70.446792602539006, -16.896656036376839 ], [ -70.445533752441349, -16.895969390869084 ], [ -70.442214965820256, -16.892919540405273 ], [ -70.441757202148438, -16.892198562622013 ], [ -70.441947937011719, -16.890001296997013 ], [ -70.442626953125, -16.887790679931527 ], [ -70.445037841796875, -16.885454177856332 ], [ -70.448753356933594, -16.882608413696289 ], [ -70.450225830078068, -16.880819320678711 ], [ -70.450302124023381, -16.879901885986328 ], [ -70.448699951171818, -16.87696266174305 ], [ -70.447937011718693, -16.873926162719727 ], [ -70.448493957519474, -16.871845245361271 ], [ -70.45037841796875, -16.868038177490178 ], [ -70.450653076171875, -16.865556716918945 ], [ -70.450881958007756, -16.86511039733881 ], [ -70.451156616210881, -16.861610412597656 ], [ -70.451095581054688, -16.86088752746582 ], [ -70.450553894042969, -16.860116958618164 ], [ -70.446701049804574, -16.857263565063477 ], [ -70.445030212402344, -16.855613708496037 ], [ -70.443977355957031, -16.854192733764648 ], [ -70.443450927734318, -16.852899551391545 ], [ -70.443374633789062, -16.851238250732365 ], [ -70.443016052246094, -16.850492477416992 ], [ -70.443153381347599, -16.848556518554631 ], [ -70.442794799804574, -16.847513198852539 ], [ -70.442909240722656, -16.846233367919922 ], [ -70.442428588867188, -16.845159530639648 ], [ -70.442352294921875, -16.843509674072209 ], [ -70.441757202148438, -16.841953277587891 ], [ -70.441787719726562, -16.841026306152287 ], [ -70.440879821777287, -16.83984184265131 ], [ -70.439804077148381, -16.839494705200195 ], [ -70.437423706054631, -16.839315414428711 ], [ -70.436126708984375, -16.839565277099609 ], [ -70.434944152831974, -16.840133666992188 ], [ -70.432792663574219, -16.839643478393498 ], [ -70.427322387695256, -16.835573196411019 ], [ -70.425674438476562, -16.833093643188363 ], [ -70.421005249023438, -16.830799102783203 ], [ -70.417579650878849, -16.830625534057617 ], [ -70.415679931640568, -16.829572677612305 ], [ -70.414497375488281, -16.829208374023381 ], [ -70.411643981933594, -16.829290390014648 ], [ -70.409584045410099, -16.829984664916992 ], [ -70.408859252929688, -16.829769134521428 ], [ -70.407829284667969, -16.828935623168945 ], [ -70.407569885253849, -16.828342437744084 ], [ -70.40478515625, -16.825317382812443 ], [ -70.403556823730469, -16.823232650756836 ], [ -70.401885986328125, -16.821456909179688 ], [ -70.401786804199105, -16.819831848144531 ], [ -70.401000976562443, -16.819026947021371 ], [ -70.399879455566293, -16.818597793578988 ], [ -70.395912170410156, -16.818084716796875 ], [ -70.393829345703125, -16.817188262939396 ], [ -70.390411376953068, -16.817203521728459 ], [ -70.387565612792912, -16.816535949706974 ], [ -70.385414123535156, -16.815666198730412 ], [ -70.381057739257756, -16.812385559082031 ], [ -70.379646301269474, -16.810760498046875 ], [ -70.378860473632756, -16.809299468994027 ], [ -70.378921508789062, -16.805433273315373 ], [ -70.378692626953068, -16.804256439208984 ], [ -70.378227233886605, -16.80303764343256 ], [ -70.376762390136662, -16.801227569580078 ], [ -70.372993469238281, -16.797977447509766 ], [ -70.372299194335881, -16.797729492187443 ], [ -70.371513366699219, -16.79783821105957 ], [ -70.370086669921818, -16.798751831054688 ], [ -70.368957519531193, -16.798898696899414 ], [ -70.36492919921875, -16.797462463378849 ], [ -70.361564636230469, -16.796846389770451 ], [ -70.360359191894474, -16.796377182006722 ], [ -70.359382629394531, -16.795480728149414 ], [ -70.359512329101506, -16.792455673217717 ], [ -70.359046936035099, -16.791507720947266 ], [ -70.356277465820256, -16.790056228637638 ], [ -70.355262756347656, -16.789871215820312 ], [ -70.354187011718693, -16.789279937744141 ], [ -70.352668762206918, -16.789146423339787 ], [ -70.351303100585881, -16.789539337158146 ], [ -70.349151611328125, -16.791049957275334 ], [ -70.345123291015568, -16.791265487670898 ], [ -70.343681335449162, -16.790357589721623 ], [ -70.341949462890625, -16.788478851318303 ], [ -70.340187072753906, -16.78778076171875 ], [ -70.338935852050668, -16.786930084228516 ], [ -70.336868286132812, -16.786235809326172 ], [ -70.335014343261662, -16.784835815429688 ], [ -70.332252502441349, -16.784103393554631 ], [ -70.328170776367188, -16.78370475769043 ], [ -70.323867797851449, -16.782794952392578 ], [ -70.321670532226506, -16.78155517578125 ], [ -70.318206787109318, -16.778781890869027 ], [ -70.318115234374943, -16.776939392089787 ], [ -70.318695068359318, -16.775907516479492 ], [ -70.318061828613281, -16.775091171264592 ], [ -70.311492919921875, -16.773101806640625 ], [ -70.307807922363281, -16.772846221923771 ], [ -70.304855346679631, -16.775592803955078 ], [ -70.302032470703011, -16.777313232421875 ], [ -70.298782348632756, -16.777914047241211 ], [ -70.293655395507812, -16.78010368347168 ], [ -70.291580200195312, -16.780427932739201 ], [ -70.287536621093636, -16.779441833496037 ], [ -70.286170959472599, -16.778598785400391 ], [ -70.280738830566349, -16.77687835693348 ], [ -70.279350280761719, -16.776071548461914 ], [ -70.277694702148381, -16.77468109130848 ], [ -70.275733947753906, -16.773735046386719 ], [ -70.272537231445256, -16.771398544311523 ], [ -70.270660400390625, -16.770500183105469 ], [ -70.269432067871094, -16.770208358764648 ], [ -70.268486022949219, -16.770231246948185 ], [ -70.265411376953011, -16.771839141845703 ], [ -70.264755249023438, -16.772832870483398 ], [ -70.264938354492188, -16.774793624877873 ], [ -70.265365600585938, -16.775587081909066 ], [ -70.267402648925724, -16.777688980102425 ], [ -70.267532348632812, -16.778486251831055 ], [ -70.267341613769531, -16.779401779174691 ], [ -70.266639709472599, -16.780267715454102 ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-TUM", "NAME_0": "Peru", "ID_1": 25, "NAME_1": "Tumbes", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": "Tumbez" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.413192749023438, -3.505137920379582 ], [ -80.413192749023438, -3.505415916442814 ], [ -80.412635803222656, -3.505415916442814 ], [ -80.412635803222656, -3.505695104598999 ], [ -80.412361145019531, -3.505695104598999 ], [ -80.412361145019531, -3.506529092788696 ], [ -80.412635803222656, -3.506529092788696 ], [ -80.412635803222656, -3.506807088851929 ], [ -80.413192749023438, -3.506807088851929 ], [ -80.413192749023438, -3.507082939147949 ], [ -80.413475036621094, -3.507082939147949 ], [ -80.413475036621094, -3.507360935211182 ], [ -80.413749694824219, -3.507360935211182 ], [ -80.413749694824219, -3.507638931274414 ], [ -80.414306640624943, -3.507638931274414 ], [ -80.414306640624943, -3.507916927337646 ], [ -80.414581298828068, -3.507916927337646 ], [ -80.414581298828068, -3.508194923400879 ], [ -80.414863586425724, -3.508194923400879 ], [ -80.414863586425724, -3.507916927337646 ], [ -80.415412902832031, -3.507916927337646 ], [ -80.415412902832031, -3.507360935211182 ], [ -80.415138244628849, -3.507360935211182 ], [ -80.415138244628849, -3.506807088851929 ], [ -80.414863586425724, -3.5068039894104 ], [ -80.414863586425724, -3.506529092788696 ], [ -80.414581298828068, -3.506529092788696 ], [ -80.414581298828068, -3.506251096725464 ], [ -80.414306640624943, -3.506251096725464 ], [ -80.414306640624943, -3.505973100662231 ], [ -80.41402435302723, -3.505973100662231 ], [ -80.41402435302723, -3.505695104598999 ], [ -80.413749694824219, -3.505695104598999 ], [ -80.413749694824219, -3.505415916442814 ], [ -80.413475036621094, -3.505415916442814 ], [ -80.413475036621094, -3.505137920379582 ], [ -80.413192749023438, -3.505137920379582 ] ] ], [ [ [ -80.382080078124886, -3.491805076599121 ], [ -80.382080078124886, -3.492084026336613 ], [ -80.381805419921875, -3.492084026336613 ], [ -80.381805419921875, -3.492362022399789 ], [ -80.38153076171875, -3.492362022399789 ], [ -80.38153076171875, -3.492794990539437 ], [ -80.38153076171875, -3.493472099304142 ], [ -80.382080078124886, -3.493472099304142 ], [ -80.382080078124886, -3.493750095367375 ], [ -80.382362365722543, -3.493750095367375 ], [ -80.382362365722543, -3.494028091430607 ], [ -80.382637023925724, -3.494028091430607 ], [ -80.382637023925724, -3.49430608749384 ], [ -80.382919311523381, -3.49430608749384 ], [ -80.382919311523381, -3.494584083557072 ], [ -80.383193969726506, -3.494584083557072 ], [ -80.383193969726506, -3.494862079620304 ], [ -80.383468627929688, -3.494862079620304 ], [ -80.383468627929688, -3.495137929916325 ], [ -80.384025573730469, -3.495140075683537 ], [ -80.384025573730469, -3.49430608749384 ], [ -80.384307861328125, -3.49430608749384 ], [ -80.384307861328125, -3.494028091430607 ], [ -80.38458251953125, -3.494028091430607 ], [ -80.38458251953125, -3.493750095367375 ], [ -80.385414123535043, -3.493750095367375 ], [ -80.385414123535043, -3.494862079620304 ], [ -80.385139465332031, -3.494862079620304 ], [ -80.385139465332031, -3.495693922042733 ], [ -80.385414123535043, -3.495693922042733 ], [ -80.385414123535043, -3.495971918105965 ], [ -80.385696411132756, -3.495971918105965 ], [ -80.385696411132756, -3.496249914169312 ], [ -80.386253356933537, -3.496249914169312 ], [ -80.386253356933537, -3.496527910232544 ], [ -80.3870849609375, -3.496527910232544 ], [ -80.3870849609375, -3.496805906295776 ], [ -80.387359619140625, -3.496805906295776 ], [ -80.387359619140625, -3.496527910232544 ], [ -80.388473510742188, -3.496527910232544 ], [ -80.388473510742188, -3.496249914169312 ], [ -80.388748168945256, -3.496249914169312 ], [ -80.388748168945256, -3.496527910232544 ], [ -80.389305114746037, -3.496527910232544 ], [ -80.389305114746037, -3.496805906295776 ], [ -80.39013671875, -3.496805906295776 ], [ -80.39013671875, -3.497083902359009 ], [ -80.390693664550781, -3.497083902359009 ], [ -80.390693664550781, -3.497361898422241 ], [ -80.390975952148438, -3.497359991073552 ], [ -80.390975952148438, -3.497915983200016 ], [ -80.391250610351562, -3.497915983200016 ], [ -80.391250610351562, -3.497637987136784 ], [ -80.392082214355412, -3.497637987136784 ], [ -80.392082214355412, -3.497359991073552 ], [ -80.392639160156193, -3.497359991073552 ], [ -80.392639160156193, -3.497637987136784 ], [ -80.393470764160156, -3.497637987136784 ], [ -80.393470764160156, -3.497359991073552 ], [ -80.393753051757812, -3.497361898422241 ], [ -80.393753051757812, -3.497083902359009 ], [ -80.394302368164062, -3.497083902359009 ], [ -80.394302368164062, -3.496527910232544 ], [ -80.395141601562386, -3.496527910232544 ], [ -80.395141601562386, -3.496249914169312 ], [ -80.396247863769531, -3.496249914169312 ], [ -80.396247863769531, -3.495971918105965 ], [ -80.396804809570312, -3.495971918105965 ], [ -80.396804809570312, -3.495415925979557 ], [ -80.396530151367188, -3.495415925979557 ], [ -80.396530151367188, -3.495137929916325 ], [ -80.396804809570312, -3.495140075683537 ], [ -80.396804809570312, -3.494584083557072 ], [ -80.395416259765568, -3.494584083557072 ], [ -80.395416259765568, -3.49430608749384 ], [ -80.39485931396473, -3.49430608749384 ], [ -80.39485931396473, -3.494028091430607 ], [ -80.394584655761719, -3.494028091430607 ], [ -80.394584655761719, -3.493750095367375 ], [ -80.394302368164062, -3.493750095367375 ], [ -80.394302368164062, -3.493472099304142 ], [ -80.393196105957031, -3.493472099304142 ], [ -80.393196105957031, -3.493192911148071 ], [ -80.392082214355412, -3.493192911148071 ], [ -80.392082214355412, -3.492918014526367 ], [ -80.39180755615223, -3.492918014526367 ], [ -80.39180755615223, -3.493192911148071 ], [ -80.391250610351562, -3.493192911148071 ], [ -80.391250610351562, -3.492918014526367 ], [ -80.390693664550781, -3.492918014526367 ], [ -80.390693664550781, -3.493192911148071 ], [ -80.390419006347656, -3.493192911148071 ], [ -80.390419006347656, -3.492918014526367 ], [ -80.39013671875, -3.492918014526367 ], [ -80.39013671875, -3.492640018463021 ], [ -80.389862060546818, -3.492640018463021 ], [ -80.389862060546818, -3.492918014526367 ], [ -80.387916564941406, -3.492918014526367 ], [ -80.387916564941406, -3.492640018463021 ], [ -80.385971069335881, -3.492640018463021 ], [ -80.385971069335881, -3.492362022399789 ], [ -80.385696411132756, -3.492362022399789 ], [ -80.385696411132756, -3.492640018463021 ], [ -80.384864807128906, -3.492640018463021 ], [ -80.384864807128906, -3.492362022399789 ], [ -80.384307861328125, -3.492362022399789 ], [ -80.384307861328125, -3.492084026336613 ], [ -80.383468627929688, -3.492084026336613 ], [ -80.383468627929688, -3.491805076599121 ], [ -80.382644653320256, -3.491805076599121 ], [ -80.382080078124886, -3.491805076599121 ] ] ], [ [ [ -80.386528015136662, -3.485416889190617 ], [ -80.386528015136662, -3.486248970031738 ], [ -80.386802673339844, -3.486248970031738 ], [ -80.386802673339844, -3.486526966094971 ], [ -80.3870849609375, -3.486526966094971 ], [ -80.3870849609375, -3.486804962158203 ], [ -80.387359619140625, -3.486804962158203 ], [ -80.387359619140625, -3.487082958221436 ], [ -80.387916564941406, -3.487082958221436 ], [ -80.387916564941406, -3.487360954284668 ], [ -80.389030456542912, -3.487360954284668 ], [ -80.389030456542912, -3.4876389503479 ], [ -80.389305114746037, -3.4876389503479 ], [ -80.389305114746037, -3.487916946411076 ], [ -80.389862060546818, -3.487916946411076 ], [ -80.389862060546818, -3.488194942474308 ], [ -80.390975952148438, -3.488194942474308 ], [ -80.390975952148438, -3.488472938537541 ], [ -80.391525268554688, -3.488471031188965 ], [ -80.391525268554688, -3.488749027252197 ], [ -80.392364501953068, -3.488749027252197 ], [ -80.392364501953068, -3.48902702331543 ], [ -80.392913818359318, -3.48902702331543 ], [ -80.392913818359318, -3.489305019378662 ], [ -80.393196105957031, -3.489305019378662 ], [ -80.393196105957031, -3.489583015441895 ], [ -80.393753051757812, -3.489583015441895 ], [ -80.393753051757812, -3.489861011505127 ], [ -80.394027709960938, -3.489861011505127 ], [ -80.394027709960938, -3.490139007568359 ], [ -80.394302368164062, -3.490139007568359 ], [ -80.394302368164062, -3.490417003631592 ], [ -80.395416259765568, -3.490417003631592 ], [ -80.395416259765568, -3.489861011505127 ], [ -80.395973205566349, -3.489861011505127 ], [ -80.395973205566349, -3.489583015441895 ], [ -80.396530151367188, -3.489583015441895 ], [ -80.396530151367188, -3.489305019378662 ], [ -80.397087097167969, -3.489305019378662 ], [ -80.397087097167969, -3.48902702331543 ], [ -80.398193359374886, -3.48902702331543 ], [ -80.398193359374886, -3.488749027252197 ], [ -80.399864196777344, -3.488749027252197 ], [ -80.399864196777344, -3.48902702331543 ], [ -80.400413513183594, -3.48902702331543 ], [ -80.400413513183594, -3.489305019378662 ], [ -80.40069580078125, -3.489305019378662 ], [ -80.40069580078125, -3.489583015441895 ], [ -80.401252746582031, -3.489583015441895 ], [ -80.401252746582031, -3.489861011505127 ], [ -80.401527404785099, -3.489861011505127 ], [ -80.401527404785099, -3.490139007568359 ], [ -80.401802062988224, -3.490139007568359 ], [ -80.401802062988224, -3.490417003631592 ], [ -80.402084350585881, -3.490417003631592 ], [ -80.402084350585881, -3.490695953369141 ], [ -80.402359008789006, -3.490695953369141 ], [ -80.402359008789006, -3.491249084472656 ], [ -80.402641296386662, -3.491249084472656 ], [ -80.402641296386662, -3.491527080535889 ], [ -80.403472900390625, -3.491527080535889 ], [ -80.403472900390625, -3.491805076599121 ], [ -80.404586791992074, -3.491805076599121 ], [ -80.404586791992074, -3.492084026336613 ], [ -80.405136108398381, -3.492084026336613 ], [ -80.405136108398381, -3.492362022399789 ], [ -80.405975341796875, -3.492362022399789 ], [ -80.405975341796875, -3.492640018463021 ], [ -80.406524658203125, -3.492640018463021 ], [ -80.406524658203125, -3.492362022399789 ], [ -80.408752441406193, -3.492362022399789 ], [ -80.408752441406193, -3.491805076599121 ], [ -80.409027099609375, -3.491805076599121 ], [ -80.409027099609375, -3.491249084472656 ], [ -80.4093017578125, -3.491249084472656 ], [ -80.4093017578125, -3.490139007568359 ], [ -80.409027099609375, -3.490139007568359 ], [ -80.409027099609375, -3.489861011505127 ], [ -80.407081604003906, -3.489861011505127 ], [ -80.407081604003906, -3.489583015441895 ], [ -80.405418395996037, -3.489583015441895 ], [ -80.405418395996037, -3.489305019378662 ], [ -80.404304504394531, -3.489305019378662 ], [ -80.404304504394531, -3.48902702331543 ], [ -80.4031982421875, -3.48902702331543 ], [ -80.4031982421875, -3.488749027252197 ], [ -80.402359008789006, -3.488749027252197 ], [ -80.402359008789006, -3.488471031188965 ], [ -80.401252746582031, -3.488472938537541 ], [ -80.401252746582031, -3.488194942474308 ], [ -80.400138854980469, -3.488194942474308 ], [ -80.400138854980469, -3.487916946411076 ], [ -80.399024963378849, -3.487916946411076 ], [ -80.399024963378849, -3.4876389503479 ], [ -80.398048400878906, -3.4876389503479 ], [ -80.397918701171875, -3.4876389503479 ], [ -80.397918701171875, -3.487360954284668 ], [ -80.396804809570312, -3.487360954284668 ], [ -80.396804809570312, -3.487082958221436 ], [ -80.395416259765568, -3.487082958221436 ], [ -80.395416259765568, -3.486804962158203 ], [ -80.392639160156193, -3.486804962158203 ], [ -80.392639160156193, -3.486526966094971 ], [ -80.389030456542912, -3.486526966094971 ], [ -80.389030456542912, -3.486248970031738 ], [ -80.388473510742188, -3.486248970031738 ], [ -80.388473510742188, -3.485970973968506 ], [ -80.388191223144531, -3.485972881317082 ], [ -80.388191223144531, -3.485694885253849 ], [ -80.387641906738281, -3.485694885253849 ], [ -80.387641906738281, -3.485416889190617 ], [ -80.3870849609375, -3.485416889190617 ], [ -80.3870849609375, -3.485138893127385 ], [ -80.386528015136662, -3.485138893127385 ], [ -80.386528015136662, -3.484860897064152 ], [ -80.386253356933537, -3.484860897064152 ], [ -80.386253356933537, -3.485416889190617 ], [ -80.386528015136662, -3.485416889190617 ] ] ], [ [ [ -80.274307250976506, -3.426528930664062 ], [ -80.274307250976506, -3.426805019378605 ], [ -80.275138854980412, -3.426805019378605 ], [ -80.275138854980412, -3.427083015441781 ], [ -80.27569580078125, -3.427083015441781 ], [ -80.27569580078125, -3.427361011505013 ], [ -80.277359008789006, -3.427361011505013 ], [ -80.277359008789006, -3.427083015441781 ], [ -80.277641296386662, -3.427083015441781 ], [ -80.277641296386662, -3.426528930664062 ], [ -80.277915954589787, -3.426528930664062 ], [ -80.277915954589787, -3.42625093460083 ], [ -80.277084350585938, -3.42625093460083 ], [ -80.277084350585938, -3.425972938537598 ], [ -80.276527404785156, -3.425972938537598 ], [ -80.276527404785156, -3.425694942474365 ], [ -80.27569580078125, -3.425694942474365 ], [ -80.27569580078125, -3.425416946411133 ], [ -80.273475646972656, -3.425416946411133 ], [ -80.273475646972656, -3.425137996673584 ], [ -80.272361755371094, -3.425137996673584 ], [ -80.272361755371094, -3.424860000610352 ], [ -80.270416259765625, -3.424860000610352 ], [ -80.270416259765625, -3.425416946411133 ], [ -80.270690917968636, -3.425416946411133 ], [ -80.270690917968636, -3.425694942474365 ], [ -80.270973205566293, -3.425694942474365 ], [ -80.270973205566293, -3.425972938537598 ], [ -80.271247863769474, -3.425972938537598 ], [ -80.271247863769474, -3.42625093460083 ], [ -80.273475646972656, -3.42625093460083 ], [ -80.273475646972656, -3.426528930664062 ], [ -80.274307250976506, -3.426528930664062 ] ] ], [ [ [ -80.276802062988281, -3.424582004547119 ], [ -80.276954650878849, -3.424582004547119 ], [ -80.276802062988281, -3.42441797256464 ], [ -80.276802062988281, -3.424582004547119 ] ] ], [ [ [ -80.302360534667969, -3.404304981231689 ], [ -80.302360534667969, -3.404860973358154 ], [ -80.302085876464844, -3.404860973358154 ], [ -80.302085876464844, -3.405138969421387 ], [ -80.302360534667969, -3.405138969421387 ], [ -80.302360534667969, -3.405416965484619 ], [ -80.30263519287098, -3.405416965484619 ], [ -80.30263519287098, -3.405972957611084 ], [ -80.303749084472599, -3.405972957611084 ], [ -80.303749084472599, -3.40624904632557 ], [ -80.305419921875, -3.40624904632557 ], [ -80.305419921875, -3.404582977294922 ], [ -80.304306030273438, -3.404582977294922 ], [ -80.304306030273438, -3.404304981231689 ], [ -80.302360534667969, -3.404304981231689 ] ] ], [ [ [ -80.309585571289006, -3.40291690826416 ], [ -80.309585571289006, -3.403194904327336 ], [ -80.309303283691349, -3.403194904327336 ], [ -80.309303283691349, -3.405416965484619 ], [ -80.309585571289006, -3.405416965484619 ], [ -80.309585571289006, -3.405694961547852 ], [ -80.309860229492131, -3.405694961547852 ], [ -80.309860229492131, -3.407083034515381 ], [ -80.309585571289006, -3.407083034515381 ], [ -80.309585571289006, -3.406805038452148 ], [ -80.309303283691349, -3.406805038452148 ], [ -80.309303283691349, -3.406527042388916 ], [ -80.309028625488168, -3.406527042388916 ], [ -80.309028625488168, -3.40624904632557 ], [ -80.308746337890625, -3.40624904632557 ], [ -80.308746337890625, -3.405972957611084 ], [ -80.307914733886719, -3.405972957611084 ], [ -80.307914733886719, -3.40624904632557 ], [ -80.307083129882756, -3.40624904632557 ], [ -80.307083129882756, -3.406527042388916 ], [ -80.306251525878849, -3.406527042388916 ], [ -80.306251525878849, -3.406805038452148 ], [ -80.305969238281193, -3.406805038452148 ], [ -80.305969238281193, -3.407361030578613 ], [ -80.305419921875, -3.407361030578613 ], [ -80.305419921875, -3.407917022705078 ], [ -80.305137634277344, -3.407917022705078 ], [ -80.305137634277344, -3.408473014831543 ], [ -80.304862976074219, -3.408473014831543 ], [ -80.304862976074219, -3.408749103546086 ], [ -80.304580688476562, -3.408749103546086 ], [ -80.304580688476562, -3.409305095672551 ], [ -80.304306030273438, -3.409305095672551 ], [ -80.304306030273438, -3.409583091735726 ], [ -80.304031372070256, -3.409583091735726 ], [ -80.304031372070256, -3.409861087798959 ], [ -80.303749084472599, -3.409861087798959 ], [ -80.303749084472599, -3.410139083862305 ], [ -80.303474426269474, -3.410139083862305 ], [ -80.303474426269474, -3.410696029663029 ], [ -80.303192138671818, -3.410692930221558 ], [ -80.303192138671818, -3.41097092628479 ], [ -80.302917480468693, -3.410974025726262 ], [ -80.302917480468693, -3.411526918411255 ], [ -80.30263519287098, -3.411526918411255 ], [ -80.30263519287098, -3.412084102630615 ], [ -80.302085876464844, -3.412084102630615 ], [ -80.302085876464844, -3.412362098693791 ], [ -80.301803588867188, -3.412362098693791 ], [ -80.301803588867188, -3.412918090820256 ], [ -80.301528930664062, -3.412918090820256 ], [ -80.301528930664062, -3.413471937179509 ], [ -80.301246643066406, -3.413471937179509 ], [ -80.301246643066406, -3.414027929305973 ], [ -80.300971984863281, -3.414027929305973 ], [ -80.300971984863281, -3.414305925369206 ], [ -80.300697326660099, -3.414305925369206 ], [ -80.300697326660099, -3.414861917495614 ], [ -80.300415039062443, -3.414861917495614 ], [ -80.300415039062443, -3.41541600227356 ], [ -80.300140380859318, -3.41541600227356 ], [ -80.300140380859318, -3.415693998336735 ], [ -80.299858093261662, -3.415693998336735 ], [ -80.299858093261662, -3.4162499904632 ], [ -80.29958343505848, -3.4162499904632 ], [ -80.29958343505848, -3.416527986526432 ], [ -80.299308776855469, -3.416527986526432 ], [ -80.299308776855469, -3.418472051620483 ], [ -80.29958343505848, -3.418472051620483 ], [ -80.29958343505848, -3.419306039810124 ], [ -80.299308776855469, -3.419306039810124 ], [ -80.299308776855469, -3.419859886169377 ], [ -80.299026489257812, -3.419859886169377 ], [ -80.299026489257812, -3.42069411277771 ], [ -80.298751831054688, -3.42069411277771 ], [ -80.298751831054688, -3.420972108840942 ], [ -80.298469543457031, -3.420972108840942 ], [ -80.298469543457031, -3.421250104904175 ], [ -80.298194885253906, -3.421250104904175 ], [ -80.298194885253906, -3.421528100967407 ], [ -80.297920227050781, -3.421528100967407 ], [ -80.297920227050781, -3.422084093093872 ], [ -80.297637939453125, -3.422084093093872 ], [ -80.297637939453125, -3.422637939453068 ], [ -80.297363281249943, -3.422637939453068 ], [ -80.297363281249943, -3.423193931579533 ], [ -80.297080993652287, -3.423193931579533 ], [ -80.297080993652287, -3.423749923705998 ], [ -80.296806335449162, -3.423749923705998 ], [ -80.296806335449162, -3.424029111862069 ], [ -80.296524047851506, -3.424029111862069 ], [ -80.296524047851506, -3.424307107925415 ], [ -80.296249389648324, -3.424307107925415 ], [ -80.296249389648324, -3.426528930664062 ], [ -80.295974731445312, -3.426528930664062 ], [ -80.295974731445312, -3.426805019378605 ], [ -80.295417785644531, -3.426805019378605 ], [ -80.295417785644531, -3.425694942474365 ], [ -80.295692443847656, -3.425694942474365 ], [ -80.295692443847656, -3.425416946411133 ], [ -80.295417785644531, -3.425416946411133 ], [ -80.295417785644531, -3.424307107925415 ], [ -80.295692443847656, -3.424307107925415 ], [ -80.295692443847656, -3.423471927642765 ], [ -80.295974731445312, -3.423471927642765 ], [ -80.295974731445312, -3.422637939453068 ], [ -80.296249389648324, -3.422637939453068 ], [ -80.296249389648324, -3.422359943389893 ], [ -80.296524047851506, -3.422359943389893 ], [ -80.296524047851506, -3.422084093093872 ], [ -80.296806335449162, -3.422084093093872 ], [ -80.296806335449162, -3.42180609703064 ], [ -80.297080993652287, -3.42180609703064 ], [ -80.297080993652287, -3.421250104904175 ], [ -80.297363281249943, -3.421250104904175 ], [ -80.297363281249943, -3.420137882232609 ], [ -80.297080993652287, -3.420137882232609 ], [ -80.297080993652287, -3.419584035873356 ], [ -80.296806335449162, -3.419584035873356 ], [ -80.296806335449162, -3.419306039810124 ], [ -80.296524047851506, -3.419306039810124 ], [ -80.296524047851506, -3.418750047683716 ], [ -80.296249389648324, -3.418750047683716 ], [ -80.296249389648324, -3.419028043746948 ], [ -80.295974731445312, -3.419028043746948 ], [ -80.295974731445312, -3.419306039810124 ], [ -80.295692443847656, -3.419306039810124 ], [ -80.295692443847656, -3.419584035873356 ], [ -80.295417785644531, -3.419584035873356 ], [ -80.295417785644531, -3.420137882232609 ], [ -80.295135498046875, -3.420137882232609 ], [ -80.295135498046875, -3.42069411277771 ], [ -80.29486083984375, -3.42069411277771 ], [ -80.29486083984375, -3.421250104904175 ], [ -80.294586181640625, -3.421250104904175 ], [ -80.294586181640625, -3.421528100967407 ], [ -80.294029235839787, -3.421528100967407 ], [ -80.294029235839787, -3.422084093093872 ], [ -80.293472290039006, -3.422084093093872 ], [ -80.293472290039006, -3.422359943389893 ], [ -80.292915344238281, -3.422359943389893 ], [ -80.292915344238281, -3.422915935516301 ], [ -80.292640686035156, -3.422915935516301 ], [ -80.292640686035156, -3.423193931579533 ], [ -80.292083740234375, -3.423193931579533 ], [ -80.292083740234375, -3.423471927642765 ], [ -80.29180908203125, -3.423471927642765 ], [ -80.29180908203125, -3.423749923705998 ], [ -80.291526794433594, -3.423749923705998 ], [ -80.291526794433594, -3.424307107925415 ], [ -80.291252136230412, -3.424307107925415 ], [ -80.291252136230412, -3.424582004547119 ], [ -80.290695190429631, -3.424582004547119 ], [ -80.290695190429631, -3.425137996673584 ], [ -80.290138244628849, -3.425137996673584 ], [ -80.290138244628849, -3.425416946411133 ], [ -80.289024353027344, -3.425416946411133 ], [ -80.289024353027344, -3.425694942474365 ], [ -80.287361145019474, -3.425694942474365 ], [ -80.287361145019474, -3.425972938537598 ], [ -80.286247253417969, -3.425972938537598 ], [ -80.286247253417969, -3.42625093460083 ], [ -80.284584045410099, -3.42625093460083 ], [ -80.284584045410099, -3.426528930664062 ], [ -80.284309387206974, -3.426528930664062 ], [ -80.284301757812443, -3.426805019378605 ], [ -80.283195495605469, -3.426805019378605 ], [ -80.283195495605469, -3.427083015441781 ], [ -80.282638549804688, -3.427083015441781 ], [ -80.282638549804688, -3.427361011505013 ], [ -80.282081604003906, -3.427361011505013 ], [ -80.282081604003906, -3.427639007568359 ], [ -80.281806945800781, -3.427639007568359 ], [ -80.281806945800781, -3.427917003631592 ], [ -80.281524658203068, -3.427917003631592 ], [ -80.281524658203068, -3.429027080535832 ], [ -80.281806945800781, -3.429027080535832 ], [ -80.281806945800781, -3.430417060851994 ], [ -80.282081604003906, -3.430417060851994 ], [ -80.282081604003906, -3.430973052978402 ], [ -80.282363891601562, -3.430973052978402 ], [ -80.282363891601562, -3.431248903274536 ], [ -80.282638549804688, -3.431248903274536 ], [ -80.282638549804688, -3.431526899337769 ], [ -80.282913208007812, -3.431526899337769 ], [ -80.282913208007812, -3.431804895401001 ], [ -80.283195495605469, -3.431804895401001 ], [ -80.283195495605469, -3.432082891464233 ], [ -80.28347015380848, -3.432082891464233 ], [ -80.28347015380848, -3.432360887527466 ], [ -80.283752441406136, -3.432360887527466 ], [ -80.283752441406136, -3.433470964431706 ], [ -80.28347015380848, -3.433470964431706 ], [ -80.28347015380848, -3.433748960494938 ], [ -80.282913208007812, -3.433748960494938 ], [ -80.282913208007812, -3.434026956558114 ], [ -80.282638549804688, -3.434026956558114 ], [ -80.282638549804688, -3.434860944747925 ], [ -80.282363891601562, -3.434860944747925 ], [ -80.282363891601562, -3.435971021652165 ], [ -80.282081604003906, -3.435971021652165 ], [ -80.282081604003906, -3.43652701377863 ], [ -80.281806945800781, -3.43652701377863 ], [ -80.281806945800781, -3.437083005905095 ], [ -80.281524658203068, -3.437083005905095 ], [ -80.281524658203068, -3.437639951705876 ], [ -80.28125, -3.437639951705876 ], [ -80.28125, -3.438195943832341 ], [ -80.280975341796818, -3.438195943832341 ], [ -80.280975341796818, -3.438749074935856 ], [ -80.280693054199162, -3.438749074935856 ], [ -80.280693054199162, -3.439028024673462 ], [ -80.280136108398438, -3.439028024673462 ], [ -80.280136108398438, -3.438749074935856 ], [ -80.279861450195312, -3.438749074935856 ], [ -80.279861450195312, -3.437639951705876 ], [ -80.280136108398438, -3.437639951705876 ], [ -80.280136108398438, -3.437361001968327 ], [ -80.28041839599598, -3.437361001968327 ], [ -80.28041839599598, -3.436805009841862 ], [ -80.280693054199162, -3.436805009841862 ], [ -80.280693054199162, -3.436249017715397 ], [ -80.280975341796818, -3.436249017715397 ], [ -80.280975341796818, -3.43541693687439 ], [ -80.28125, -3.43541693687439 ], [ -80.28125, -3.434582948684692 ], [ -80.281524658203068, -3.434582948684692 ], [ -80.281524658203068, -3.433470964431706 ], [ -80.281806945800781, -3.433470964431706 ], [ -80.281806945800781, -3.432360887527466 ], [ -80.281524658203068, -3.432360887527466 ], [ -80.281524658203068, -3.43069505691517 ], [ -80.28125, -3.43069505691517 ], [ -80.28125, -3.430417060851994 ], [ -80.280693054199162, -3.430417060851994 ], [ -80.280693054199162, -3.430139064788762 ], [ -80.28041839599598, -3.430139064788762 ], [ -80.28041839599598, -3.429861068725529 ], [ -80.279861450195312, -3.429861068725529 ], [ -80.279861450195312, -3.429583072662297 ], [ -80.279304504394531, -3.429583072662297 ], [ -80.279304504394531, -3.429305076599064 ], [ -80.279029846191406, -3.429305076599064 ], [ -80.279029846191406, -3.429583072662297 ], [ -80.27874755859375, -3.429583072662297 ], [ -80.27874755859375, -3.429305076599064 ], [ -80.278472900390568, -3.429305076599064 ], [ -80.278472900390568, -3.429583072662297 ], [ -80.277084350585938, -3.429583072662297 ], [ -80.277084350585938, -3.429305076599064 ], [ -80.276802062988281, -3.429305076599064 ], [ -80.276802062988281, -3.429027080535832 ], [ -80.276527404785156, -3.429027080535832 ], [ -80.276527404785156, -3.428750991821289 ], [ -80.275970458984375, -3.428750991821289 ], [ -80.275970458984375, -3.428472995758057 ], [ -80.275138854980412, -3.428472995758057 ], [ -80.275138854980412, -3.428194999694824 ], [ -80.274307250976506, -3.428194999694824 ], [ -80.274307250976506, -3.427917003631592 ], [ -80.272918701171875, -3.427917003631592 ], [ -80.272918701171875, -3.427639007568359 ], [ -80.272636413574219, -3.427639007568359 ], [ -80.272636413574219, -3.427361011505013 ], [ -80.272361755371094, -3.427361011505013 ], [ -80.272361755371094, -3.427083015441781 ], [ -80.271804809570256, -3.427083015441781 ], [ -80.271804809570256, -3.426805019378605 ], [ -80.270416259765625, -3.426805019378605 ], [ -80.270416259765625, -3.426528930664062 ], [ -80.269584655761719, -3.426528930664062 ], [ -80.269584655761719, -3.42625093460083 ], [ -80.269027709960938, -3.42625093460083 ], [ -80.269027709960938, -3.425972938537598 ], [ -80.268753051757756, -3.425972938537598 ], [ -80.268753051757756, -3.425694942474365 ], [ -80.266807556152344, -3.425694942474365 ], [ -80.266807556152344, -3.425416946411133 ], [ -80.266250610351562, -3.425416946411133 ], [ -80.266250610351562, -3.425137996673584 ], [ -80.265419006347599, -3.425137996673584 ], [ -80.265419006347599, -3.424860000610352 ], [ -80.264862060546818, -3.424860000610352 ], [ -80.264862060546818, -3.424582004547119 ], [ -80.264579772949162, -3.424582004547119 ], [ -80.264579772949162, -3.424860000610352 ], [ -80.263748168945312, -3.424860000610352 ], [ -80.263748168945312, -3.424582004547119 ], [ -80.263473510742188, -3.424582004547119 ], [ -80.263473510742188, -3.425416946411133 ], [ -80.262084960937443, -3.425416946411133 ], [ -80.262084960937443, -3.425694942474365 ], [ -80.260971069335938, -3.425694942474365 ], [ -80.260971069335938, -3.425972938537598 ], [ -80.260414123535156, -3.425972938537598 ], [ -80.260414123535156, -3.42625093460083 ], [ -80.260139465332031, -3.42625093460083 ], [ -80.260139465332031, -3.426528930664062 ], [ -80.25958251953125, -3.426528930664062 ], [ -80.25958251953125, -3.426805019378605 ], [ -80.258750915527287, -3.426805019378605 ], [ -80.258750915527287, -3.427083015441781 ], [ -80.258193969726449, -3.427083015441781 ], [ -80.258193969726449, -3.427361011505013 ], [ -80.257362365722656, -3.427361011505013 ], [ -80.257362365722656, -3.427639007568359 ], [ -80.256805419921875, -3.427639007568359 ], [ -80.256805419921875, -3.427917003631592 ], [ -80.256248474121094, -3.427917003631592 ], [ -80.256248474121094, -3.428472995758057 ], [ -80.255416870117131, -3.428472995758057 ], [ -80.255416870117131, -3.428194999694824 ], [ -80.255142211913949, -3.428194999694824 ], [ -80.255142211913949, -3.428472995758057 ], [ -80.254585266113281, -3.428472995758057 ], [ -80.254585266113281, -3.428194999694824 ], [ -80.2540283203125, -3.428194999694824 ], [ -80.2540283203125, -3.427917003631592 ], [ -80.252914428710881, -3.427917003631592 ], [ -80.252914428710881, -3.427361011505013 ], [ -80.252639770507756, -3.427361011505013 ], [ -80.252639770507756, -3.427639007568359 ], [ -80.252082824706974, -3.427639007568359 ], [ -80.252082824706974, -3.427361011505013 ], [ -80.25152587890625, -3.427361011505013 ], [ -80.25152587890625, -3.427083015441781 ], [ -80.248191833496094, -3.427083015441781 ], [ -80.248191833496094, -3.426805019378605 ], [ -80.247085571289062, -3.426806926727295 ], [ -80.247085571289062, -3.42625093460083 ], [ -80.246528625488224, -3.42625093460083 ], [ -80.246528625488224, -3.426528930664062 ], [ -80.243194580078068, -3.426528930664062 ], [ -80.243194580078068, -3.426805019378605 ], [ -80.242919921874943, -3.426805019378605 ], [ -80.242919921874943, -3.426528930664062 ], [ -80.23980712890625, -3.426528930664062 ], [ -80.239303588867131, -3.426528930664062 ], [ -80.239303588867131, -3.42625093460083 ], [ -80.239013671874943, -3.42625093460083 ], [ -80.2379150390625, -3.42625093460083 ], [ -80.2379150390625, -3.425972938537598 ], [ -80.23638916015625, -3.425972938537598 ], [ -80.236038208007756, -3.425972938537598 ], [ -80.235694885253906, -3.425972938537598 ], [ -80.235694885253906, -3.42625093460083 ], [ -80.235420227050781, -3.42625093460083 ], [ -80.235420227050781, -3.426528930664062 ], [ -80.235137939453125, -3.426528930664062 ], [ -80.235137939453125, -3.426805019378605 ], [ -80.23486328125, -3.426805019378605 ], [ -80.23486328125, -3.426939010620117 ], [ -80.23486328125, -3.427083015441781 ], [ -80.234580993652344, -3.427083015441781 ], [ -80.234580993652344, -3.427505970001221 ], [ -80.234580993652344, -3.427639007568359 ], [ -80.23431396484375, -3.427639007568359 ], [ -80.234306335449219, -3.427917003631592 ], [ -80.234024047851562, -3.427917003631592 ], [ -80.234024047851562, -3.428472995758057 ], [ -80.233474731445256, -3.428472995758057 ], [ -80.233474731445256, -3.428750991821289 ], [ -80.232917785644474, -3.428750991821289 ], [ -80.232917785644474, -3.429027080535832 ], [ -80.23236083984375, -3.429027080535832 ], [ -80.23236083984375, -3.429583072662297 ], [ -80.232086181640625, -3.429583072662297 ], [ -80.232086181640625, -3.429861068725529 ], [ -80.231529235839844, -3.429861068725529 ], [ -80.231529235839844, -3.430139064788762 ], [ -80.230697631835881, -3.430139064788762 ], [ -80.230697631835881, -3.430417060851994 ], [ -80.229583740234261, -3.430417060851994 ], [ -80.229583740234261, -3.43069505691517 ], [ -80.229026794433594, -3.43069505691517 ], [ -80.229026794433594, -3.431251049041748 ], [ -80.228752136230469, -3.431248903274536 ], [ -80.228752136230469, -3.431526899337769 ], [ -80.228195190429688, -3.431526899337769 ], [ -80.228195190429688, -3.432082891464233 ], [ -80.227912902832031, -3.432082891464233 ], [ -80.227912902832031, -3.434304952621346 ], [ -80.227638244628906, -3.434304952621346 ], [ -80.227638244628906, -3.434582948684692 ], [ -80.227363586425724, -3.434582948684692 ], [ -80.227363586425724, -3.434860944747925 ], [ -80.225692749023438, -3.434860944747925 ], [ -80.225692749023438, -3.435138940811157 ], [ -80.224586486816406, -3.435138940811157 ], [ -80.224586486816406, -3.43541693687439 ], [ -80.224166870117188, -3.43541693687439 ], [ -80.224029541015568, -3.43541693687439 ], [ -80.224029541015568, -3.435694932937622 ], [ -80.223472595214787, -3.435694932937622 ], [ -80.223472595214787, -3.435971021652165 ], [ -80.222915649414062, -3.435971021652165 ], [ -80.222915649414062, -3.436249017715397 ], [ -80.222640991210938, -3.436249017715397 ], [ -80.222640991210938, -3.43652701377863 ], [ -80.222358703613281, -3.43652701377863 ], [ -80.222358703613281, -3.436805009841862 ], [ -80.222084045410156, -3.436805009841862 ], [ -80.222084045410156, -3.437083005905095 ], [ -80.221809387207031, -3.437083005905095 ], [ -80.2218017578125, -3.437639951705876 ], [ -80.221527099609375, -3.437639951705876 ], [ -80.221527099609375, -3.438195943832341 ], [ -80.221252441406193, -3.438195943832341 ], [ -80.221252441406193, -3.438471078872681 ], [ -80.220970153808537, -3.438471078872681 ], [ -80.220970153808537, -3.438749074935856 ], [ -80.221000671386605, -3.439666032791081 ], [ -80.221725463867188, -3.442670106887761 ], [ -80.220962524414062, -3.444477081298771 ], [ -80.220924377441406, -3.445368051528874 ], [ -80.2216796875, -3.446391105651799 ], [ -80.224189758300781, -3.448592901229858 ], [ -80.224967956542969, -3.44904899597168 ], [ -80.225769042968636, -3.44886398315424 ], [ -80.228622436523381, -3.451524019241276 ], [ -80.231384277343693, -3.45219898223877 ], [ -80.231613159179688, -3.452255964279175 ], [ -80.232261657714844, -3.453035116195679 ], [ -80.233558654785099, -3.455404996871835 ], [ -80.234039306640568, -3.456278085708618 ], [ -80.235954284667912, -3.457539081573486 ], [ -80.236534118652287, -3.457710027694645 ], [ -80.236686706542969, -3.45782995223999 ], [ -80.237884521484261, -3.458755970001221 ], [ -80.238227844238224, -3.459434986114502 ], [ -80.24029541015625, -3.461352109909058 ], [ -80.240333557128849, -3.462431907653809 ], [ -80.239906311035156, -3.463589906692505 ], [ -80.241790771484261, -3.465667963027954 ], [ -80.242248535156193, -3.466792106628361 ], [ -80.241111755371037, -3.470670938491821 ], [ -80.239593505859318, -3.470824003219548 ], [ -80.239189147949162, -3.472043037414551 ], [ -80.239189147949162, -3.472665071487427 ], [ -80.239952087402287, -3.47301197052002 ], [ -80.240013122558594, -3.473795890808105 ], [ -80.239608764648438, -3.474932909011784 ], [ -80.239387512206974, -3.477483034133854 ], [ -80.23974609375, -3.477780103683472 ], [ -80.243949890136662, -3.478611946105957 ], [ -80.244499206542969, -3.478977918624821 ], [ -80.244438171386662, -3.479357004165649 ], [ -80.243110656738224, -3.480479955673161 ], [ -80.242843627929574, -3.48196005821228 ], [ -80.243553161621094, -3.483208894729557 ], [ -80.243721008300781, -3.484148025512695 ], [ -80.242897033691406, -3.484868049621525 ], [ -80.240898132324162, -3.485125064849854 ], [ -80.240264892578011, -3.485207080841064 ], [ -80.237136840820312, -3.486268997192383 ], [ -80.236656188964844, -3.486430883407593 ], [ -80.23583984375, -3.486709117889404 ], [ -80.235588073730412, -3.486923933029061 ], [ -80.234153747558537, -3.488109111785889 ], [ -80.233573913574162, -3.489257097244206 ], [ -80.232795715331974, -3.489610910415593 ], [ -80.232498168945312, -3.490052938461304 ], [ -80.232551574707031, -3.491283893585205 ], [ -80.232147216796818, -3.492074012756348 ], [ -80.231315612792969, -3.492897033691406 ], [ -80.231285095214787, -3.493412017822209 ], [ -80.230331420898381, -3.494543075561523 ], [ -80.230056762695256, -3.496814966201725 ], [ -80.229080200195256, -3.49826192855835 ], [ -80.229080200195256, -3.498456001281738 ], [ -80.227882385253906, -3.499406099319401 ], [ -80.226020812988224, -3.499953031539917 ], [ -80.224418640136662, -3.499763965606689 ], [ -80.223464965820256, -3.49965310096735 ], [ -80.222206115722599, -3.499607086181584 ], [ -80.219589233398438, -3.499718904495239 ], [ -80.219215393066406, -3.499579906463623 ], [ -80.217903137207031, -3.499433994293213 ], [ -80.217613220214844, -3.499596118927002 ], [ -80.216262817382812, -3.500351905822754 ], [ -80.214759826660156, -3.502441883087158 ], [ -80.214561462402344, -3.503036975860596 ], [ -80.214614868163949, -3.504369974136353 ], [ -80.214973449706974, -3.505033969879037 ], [ -80.215965270996094, -3.505769968032837 ], [ -80.216300964355412, -3.506350994110107 ], [ -80.216102600097599, -3.509309053420964 ], [ -80.216232299804574, -3.509510040283203 ], [ -80.215248107910099, -3.511420011520386 ], [ -80.214752197265625, -3.513339042663517 ], [ -80.213935852050724, -3.513814926147461 ], [ -80.21380615234375, -3.514538049697819 ], [ -80.213973999023438, -3.516087055206299 ], [ -80.212066650390625, -3.518196105956974 ], [ -80.210922241210938, -3.518256902694645 ], [ -80.210502624511662, -3.518817901611328 ], [ -80.210388183593693, -3.519376039505005 ], [ -80.213768005371094, -3.522195100784245 ], [ -80.214111328124943, -3.523235082626229 ], [ -80.212348937988281, -3.524811983108521 ], [ -80.211685180664062, -3.52678108215332 ], [ -80.211105346679688, -3.526921987533569 ], [ -80.210250854492188, -3.527566909790039 ], [ -80.209884643554688, -3.528136968612671 ], [ -80.209815979003849, -3.528723001480046 ], [ -80.208412170410043, -3.529476881027222 ], [ -80.207115173339844, -3.530160903930664 ], [ -80.207374572753906, -3.530642032623291 ], [ -80.207695007324219, -3.531245946884042 ], [ -80.207458496093636, -3.531555891036874 ], [ -80.207679748535156, -3.532888889312744 ], [ -80.206260681152344, -3.534112930297738 ], [ -80.206962585449162, -3.535413980484009 ], [ -80.207038879394531, -3.536911964416447 ], [ -80.207290649414062, -3.537360906600952 ], [ -80.208045959472656, -3.537679910659733 ], [ -80.209220886230469, -3.536745071411076 ], [ -80.20955657958973, -3.536688089370728 ], [ -80.209701538085938, -3.537339925765991 ], [ -80.208564758300781, -3.539294004440251 ], [ -80.208129882812386, -3.541794061660767 ], [ -80.207954406738281, -3.542040109634399 ], [ -80.207359313964787, -3.544539928436166 ], [ -80.207595825195312, -3.544899940490723 ], [ -80.20758056640625, -3.545006990432682 ], [ -80.204666137695256, -3.549828052520752 ], [ -80.205558776855469, -3.550909996032658 ], [ -80.205375671386719, -3.551632881164437 ], [ -80.205627441406193, -3.552405118942261 ], [ -80.2061767578125, -3.553044080734253 ], [ -80.20758056640625, -3.553371906280518 ], [ -80.207969665527344, -3.55346488952631 ], [ -80.208824157714844, -3.55432391166687 ], [ -80.209335327148381, -3.555277109146118 ], [ -80.209724426269474, -3.557111978530827 ], [ -80.210456848144531, -3.558468103408813 ], [ -80.210685729980412, -3.559242963790894 ], [ -80.210494995117131, -3.561397075653019 ], [ -80.210487365722599, -3.561517000198364 ], [ -80.210472106933594, -3.561640024185181 ], [ -80.210861206054631, -3.561937093734741 ], [ -80.211479187011719, -3.562829971313477 ], [ -80.21234130859375, -3.564095020294133 ], [ -80.212570190429688, -3.564709901809692 ], [ -80.212738037109375, -3.566456079483032 ], [ -80.213409423828125, -3.567668914794922 ], [ -80.213218688964844, -3.568073987960759 ], [ -80.212051391601562, -3.569099903106689 ], [ -80.211799621582031, -3.569905042648315 ], [ -80.211883544921875, -3.570713996887207 ], [ -80.212593078613224, -3.571475028991699 ], [ -80.21380615234375, -3.572160959243774 ], [ -80.215202331542969, -3.572237968444824 ], [ -80.216445922851562, -3.572945117950439 ], [ -80.218460083007812, -3.574065923690682 ], [ -80.218063354492188, -3.575695991516113 ], [ -80.216888427734318, -3.576818943023625 ], [ -80.216567993164062, -3.57753491401661 ], [ -80.216117858886662, -3.579452037811279 ], [ -80.213714599609375, -3.583415031433049 ], [ -80.212203979492131, -3.586383104324341 ], [ -80.209487915039062, -3.591701984405518 ], [ -80.209236145019474, -3.592200994491577 ], [ -80.208976745605412, -3.592158079147225 ], [ -80.199562072753906, -3.590435028076172 ], [ -80.199417114257756, -3.590588092803955 ], [ -80.194168090820256, -3.596118927001896 ], [ -80.193885803222599, -3.596415996551457 ], [ -80.19097900390625, -3.597657918929997 ], [ -80.190650939941349, -3.597799062728882 ], [ -80.189201354980469, -3.598421096801758 ], [ -80.190086364746037, -3.600369930267277 ], [ -80.192054748535156, -3.604665994644165 ], [ -80.191429138183537, -3.61013388633728 ], [ -80.195060729980355, -3.614183902740479 ], [ -80.195983886718693, -3.615242958068734 ], [ -80.1961669921875, -3.61655592918396 ], [ -80.196273803710881, -3.61738395690918 ], [ -80.196311950683594, -3.617647886276245 ], [ -80.196754455566349, -3.620904922485352 ], [ -80.195487976074219, -3.625097990036011 ], [ -80.188789367675781, -3.626315116882324 ], [ -80.188613891601562, -3.627485036849919 ], [ -80.18719482421875, -3.637078046798706 ], [ -80.187149047851449, -3.637397050857544 ], [ -80.185806274414006, -3.646522045135498 ], [ -80.186752319335881, -3.655204057693425 ], [ -80.187286376953125, -3.657028913497868 ], [ -80.187126159667912, -3.658579111099243 ], [ -80.186569213867131, -3.663533926010075 ], [ -80.185981750488224, -3.668826103210449 ], [ -80.190475463867131, -3.672036886215153 ], [ -80.190628051757812, -3.672327041625977 ], [ -80.191040039062443, -3.673094987869263 ], [ -80.192047119140625, -3.674985885620117 ], [ -80.194595336914062, -3.679716110229435 ], [ -80.194679260253793, -3.679898023605347 ], [ -80.194908142089844, -3.6804039478302 ], [ -80.196197509765568, -3.685703039169255 ], [ -80.196571350097599, -3.687247991561833 ], [ -80.196884155273438, -3.688498973846436 ], [ -80.196990966796875, -3.688963890075684 ], [ -80.197715759277287, -3.691931962966919 ], [ -80.196647644042912, -3.695044994354248 ], [ -80.194854736328068, -3.700238943099976 ], [ -80.193939208984375, -3.702810049057007 ], [ -80.193870544433594, -3.703022003173771 ], [ -80.193473815917969, -3.704129934310913 ], [ -80.192840576171818, -3.705935001373291 ], [ -80.191459655761719, -3.709830045700016 ], [ -80.191352844238281, -3.710124015808105 ], [ -80.191017150878906, -3.710354089736825 ], [ -80.186561584472599, -3.713438034057617 ], [ -80.184516906738281, -3.714858055114632 ], [ -80.184730529785099, -3.719537019729501 ], [ -80.184394836425781, -3.719909906387329 ], [ -80.179611206054574, -3.725261926651001 ], [ -80.179328918456918, -3.7255859375 ], [ -80.179794311523381, -3.727910041809082 ], [ -80.180221557617188, -3.730057001113892 ], [ -80.180252075195256, -3.730207920074463 ], [ -80.178939819335881, -3.733405113220215 ], [ -80.178810119628906, -3.734608888626099 ], [ -80.178703308105469, -3.7355699539184 ], [ -80.178703308105469, -3.736094951629639 ], [ -80.180290222167969, -3.736613988876343 ], [ -80.18123626708973, -3.736922025680485 ], [ -80.181884765624943, -3.73713207244873 ], [ -80.181510925292912, -3.737732887268066 ], [ -80.18109130859375, -3.738411903381348 ], [ -80.180885314941406, -3.73875188827509 ], [ -80.179428100585938, -3.74114990234375 ], [ -80.180572509765625, -3.741796970367375 ], [ -80.181709289550668, -3.742446899414062 ], [ -80.181953430175781, -3.742585897445679 ], [ -80.182723999023381, -3.743027925491333 ], [ -80.183753967285156, -3.743599891662541 ], [ -80.183952331542969, -3.743709087371826 ], [ -80.183120727539006, -3.748447895049992 ], [ -80.183708190917912, -3.751465082168579 ], [ -80.183853149414062, -3.752173900604248 ], [ -80.188148498535156, -3.749241113662663 ], [ -80.18841552734375, -3.749058008193913 ], [ -80.188461303710881, -3.749265909194946 ], [ -80.189140319824162, -3.752367973327637 ], [ -80.189491271972656, -3.753956079483032 ], [ -80.189590454101506, -3.754395961761361 ], [ -80.189956665039062, -3.75606894493103 ], [ -80.188751220703068, -3.761393070220947 ], [ -80.188209533691406, -3.763851881027165 ], [ -80.18975830078125, -3.77275896072382 ], [ -80.189781188964787, -3.772871017456055 ], [ -80.189712524414006, -3.773624897003117 ], [ -80.189689636230412, -3.773848056793156 ], [ -80.188171386718693, -3.775063037872258 ], [ -80.185707092285099, -3.777034997940063 ], [ -80.182250976562443, -3.781680107116642 ], [ -80.181976318359318, -3.782048940658569 ], [ -80.17598724365223, -3.793636083602905 ], [ -80.171951293945256, -3.7929589748382 ], [ -80.166664123535156, -3.797738075256348 ], [ -80.165061950683594, -3.799185991287175 ], [ -80.164970397949219, -3.79928994178772 ], [ -80.164047241210881, -3.800299882888794 ], [ -80.162384033203125, -3.802123069763184 ], [ -80.161376953124943, -3.803232908248901 ], [ -80.161506652832031, -3.80386209487915 ], [ -80.161849975585881, -3.805548906326294 ], [ -80.162033081054631, -3.806444883346501 ], [ -80.160507202148381, -3.810286998748779 ], [ -80.160263061523438, -3.810915946960449 ], [ -80.160163879394531, -3.81116509437561 ], [ -80.160560607910156, -3.812468051910344 ], [ -80.160598754882756, -3.812601089477539 ], [ -80.161231994628906, -3.81466102600092 ], [ -80.161613464355469, -3.815915107727051 ], [ -80.161750793456974, -3.816375017166081 ], [ -80.161788940429688, -3.816915035247803 ], [ -80.161872863769418, -3.818052053451481 ], [ -80.161888122558594, -3.818291902542114 ], [ -80.16180419921875, -3.819644927978516 ], [ -80.16162109375, -3.822942972183228 ], [ -80.161865234374943, -3.824517965316716 ], [ -80.16229248046875, -3.827286958694401 ], [ -80.162498474121094, -3.828563928604126 ], [ -80.162567138671875, -3.829020023345947 ], [ -80.162620544433537, -3.829397916793766 ], [ -80.161964416503849, -3.831806898117065 ], [ -80.16143798828125, -3.833774089813176 ], [ -80.159049987792969, -3.83935809135437 ], [ -80.155303955078125, -3.848098039627075 ], [ -80.153793334960938, -3.850594043731633 ], [ -80.153213500976562, -3.851552963256779 ], [ -80.153495788574219, -3.85202693939209 ], [ -80.155586242675781, -3.855590105056763 ], [ -80.157981872558594, -3.859157085418587 ], [ -80.157905578613281, -3.859525918960514 ], [ -80.157867431640511, -3.85970401763916 ], [ -80.157768249511662, -3.860138893127385 ], [ -80.156661987304688, -3.86503005027771 ], [ -80.157554626464787, -3.866421937942505 ], [ -80.158226013183537, -3.867391109466496 ], [ -80.158576965332031, -3.867862939834595 ], [ -80.159004211425724, -3.868495941162053 ], [ -80.151779174804688, -3.8765709400177 ], [ -80.151435852050781, -3.876956939697266 ], [ -80.148750305175781, -3.879962921142464 ], [ -80.142204284667912, -3.884290933609009 ], [ -80.136215209960881, -3.888250112533456 ], [ -80.135215759277344, -3.888814926147461 ], [ -80.1341552734375, -3.889416933059692 ], [ -80.129798889160099, -3.891877889633065 ], [ -80.128913879394531, -3.892553091049194 ], [ -80.128265380859375, -3.894177913665715 ], [ -80.127990722656193, -3.895759105682316 ], [ -80.127960205078125, -3.896229028701669 ], [ -80.128616333007812, -3.898365020751839 ], [ -80.131050109863224, -3.901138067245427 ], [ -80.133506774902344, -3.905975103378296 ], [ -80.137283325195312, -3.910384893417358 ], [ -80.139976501464844, -3.914118051528931 ], [ -80.140235900878906, -3.914470911026001 ], [ -80.143608093261719, -3.915394067764169 ], [ -80.156730651855469, -3.914323091506958 ], [ -80.159004211425724, -3.914364099502563 ], [ -80.159095764160099, -3.914418935775757 ], [ -80.159851074218693, -3.915514945983887 ], [ -80.160964965820312, -3.917145013809204 ], [ -80.1614990234375, -3.919142961502075 ], [ -80.161544799804688, -3.919285058975163 ], [ -80.163490295410099, -3.921890020370483 ], [ -80.163604736328125, -3.922044992446899 ], [ -80.163757324218693, -3.922243118286076 ], [ -80.164695739746094, -3.922580003738403 ], [ -80.168006896972656, -3.923764944076538 ], [ -80.168083190917969, -3.923840999603215 ], [ -80.169052124023438, -3.924746036529427 ], [ -80.169723510742188, -3.925374984741154 ], [ -80.171195983886662, -3.925826072692871 ], [ -80.171646118164062, -3.92596507072443 ], [ -80.174438476562443, -3.926192998886108 ], [ -80.179214477539006, -3.926587104797306 ], [ -80.180358886718693, -3.926682949066162 ], [ -80.181365966796875, -3.926764965057316 ], [ -80.183403015136662, -3.92693305015564 ], [ -80.185218811035099, -3.928105115890503 ], [ -80.186164855956974, -3.92982292175293 ], [ -80.186462402343693, -3.930363893508854 ], [ -80.186561584472599, -3.930874109268188 ], [ -80.187149047851449, -3.933904886245728 ], [ -80.18792724609375, -3.935899972915649 ], [ -80.190322875976562, -3.939152002334595 ], [ -80.192741394042912, -3.940304994583073 ], [ -80.1961669921875, -3.944385051727238 ], [ -80.20281982421875, -3.949536085128727 ], [ -80.206809997558594, -3.951153993606511 ], [ -80.210319519042855, -3.951585054397583 ], [ -80.212036132812386, -3.952493906021118 ], [ -80.214607238769474, -3.955213069915715 ], [ -80.216316223144474, -3.956567049026489 ], [ -80.217552185058537, -3.95684289932251 ], [ -80.218330383300668, -3.956309080123901 ], [ -80.218643188476562, -3.955153942108154 ], [ -80.218955993652344, -3.953483104705811 ], [ -80.219314575195312, -3.952981948852539 ], [ -80.219947814941349, -3.952101945877075 ], [ -80.221000671386605, -3.951498031616154 ], [ -80.22332763671875, -3.951577901840096 ], [ -80.227607727050781, -3.953325986862183 ], [ -80.22894287109375, -3.953349113464299 ], [ -80.230583190917969, -3.952902078628483 ], [ -80.231941223144474, -3.951651096343994 ], [ -80.233711242675781, -3.948190927505493 ], [ -80.235824584960938, -3.94913911819458 ], [ -80.236473083496094, -3.950417995452881 ], [ -80.236808776855412, -3.951090097427311 ], [ -80.239654541015625, -3.956890106201115 ], [ -80.240020751953125, -3.95832896232605 ], [ -80.239982604980355, -3.958695888519287 ], [ -80.239906311035156, -3.959366083145142 ], [ -80.239501953124886, -3.96005392074585 ], [ -80.237983703613281, -3.96085596084589 ], [ -80.23760986328125, -3.961141109466496 ], [ -80.237159729003906, -3.961477994918823 ], [ -80.2369384765625, -3.962291955947819 ], [ -80.237869262695256, -3.963927984237557 ], [ -80.240539550781193, -3.96775293350214 ], [ -80.245132446288949, -3.969938039779663 ], [ -80.246124267578125, -3.970870971679688 ], [ -80.247062683105469, -3.973598957061711 ], [ -80.249420166015511, -3.977896928787175 ], [ -80.252883911132812, -3.980757951736393 ], [ -80.253860473632812, -3.982851982116699 ], [ -80.254493713378906, -3.984924077987671 ], [ -80.254981994628906, -3.988781929016056 ], [ -80.255401611328068, -3.990470886230412 ], [ -80.256736755371037, -3.992876052856445 ], [ -80.26214599609375, -3.998842000961247 ], [ -80.266807556152344, -4.002548217773438 ], [ -80.268592834472543, -4.003971099853516 ], [ -80.272354125976562, -4.007199764251652 ], [ -80.273384094238281, -4.008087158203125 ], [ -80.277984619140625, -4.008206844329834 ], [ -80.279289245605469, -4.008667945861816 ], [ -80.2794189453125, -4.008738040924015 ], [ -80.284118652343693, -4.011137962341252 ], [ -80.285087585449105, -4.011638164520207 ], [ -80.286590576171818, -4.011632919311523 ], [ -80.289207458496094, -4.011455059051457 ], [ -80.291404724121094, -4.012410163879395 ], [ -80.294258117675781, -4.01437520980835 ], [ -80.294433593749886, -4.014498233795166 ], [ -80.29473876953125, -4.014702796935978 ], [ -80.297882080078125, -4.01619815826416 ], [ -80.298286437988281, -4.016385078430176 ], [ -80.299530029296875, -4.016303062438908 ], [ -80.305801391601562, -4.013433933258 ], [ -80.308677673339844, -4.011662960052433 ], [ -80.311416625976562, -4.010735034942627 ], [ -80.312675476074219, -4.010313034057617 ], [ -80.319511413574162, -4.009415149688721 ], [ -80.323501586914006, -4.00839185714716 ], [ -80.326759338378849, -4.006708145141602 ], [ -80.327552795410156, -4.00629806518549 ], [ -80.329315185546818, -4.00419807434082 ], [ -80.330749511718693, -4.000672817230225 ], [ -80.333297729492188, -3.998995065689087 ], [ -80.338005065917912, -3.994446039199772 ], [ -80.3394775390625, -3.993397951126042 ], [ -80.34063720703125, -3.99316501617426 ], [ -80.341400146484375, -3.993741989135742 ], [ -80.343132019042912, -3.995932102203369 ], [ -80.344268798828125, -3.996299028396606 ], [ -80.346923828125, -3.996264934539738 ], [ -80.352180480957031, -3.995624065399113 ], [ -80.354766845703068, -3.994699001312199 ], [ -80.356010437011662, -3.993824005126896 ], [ -80.361656188964787, -3.985459089279175 ], [ -80.364387512207031, -3.982624053955078 ], [ -80.366340637206918, -3.981630086898804 ], [ -80.367759704589787, -3.981817007064819 ], [ -80.368667602539062, -3.982105016708317 ], [ -80.370185852050781, -3.982584953308105 ], [ -80.374053955078068, -3.98517894744873 ], [ -80.377128601074219, -3.987510919570923 ], [ -80.378082275390625, -3.987931966781616 ], [ -80.379302978515568, -3.987936973571777 ], [ -80.381072998046875, -3.987235069274902 ], [ -80.383415222167855, -3.987230062484684 ], [ -80.38543701171875, -3.98677206039423 ], [ -80.387611389160043, -3.987030029296818 ], [ -80.390045166015625, -3.986466884613037 ], [ -80.39166259765625, -3.985291004180908 ], [ -80.395172119140625, -3.982861042022648 ], [ -80.396446228027287, -3.981362104415894 ], [ -80.397499084472599, -3.980125904083252 ], [ -80.398193359374886, -3.980607032775879 ], [ -80.398307800292969, -3.980581998825016 ], [ -80.398429870605469, -3.980375051498299 ], [ -80.398681640625, -3.980494976043701 ], [ -80.399406433105412, -3.980326890945435 ], [ -80.400100708007699, -3.980444908142033 ], [ -80.400711059570312, -3.980659961700383 ], [ -80.403724670410043, -3.981717109680119 ], [ -80.405715942382756, -3.982417106628418 ], [ -80.406814575195312, -3.982810974121094 ], [ -80.410263061523438, -3.986058950424194 ], [ -80.412818908691406, -3.988544940948486 ], [ -80.418624877929688, -3.990221023559513 ], [ -80.422416687011605, -3.991314888000488 ], [ -80.423759460449219, -3.991722106933537 ], [ -80.424797058105412, -3.992042064666748 ], [ -80.434410095214787, -3.98948693275446 ], [ -80.439605712890625, -3.99258899688715 ], [ -80.444000244140625, -3.995209932327214 ], [ -80.444976806640625, -3.995793104171696 ], [ -80.445960998535099, -3.996378898620492 ], [ -80.447242736816406, -3.997144937515202 ], [ -80.446792602539062, -3.997760057449284 ], [ -80.445838928222656, -3.999068021774235 ], [ -80.445426940917969, -3.999641895294133 ], [ -80.444915771484318, -4.000356197357178 ], [ -80.44301605224598, -4.001028060912972 ], [ -80.442054748535099, -4.001064777374211 ], [ -80.44134521484375, -4.001334190368596 ], [ -80.441337585449219, -4.001625061035099 ], [ -80.441352844238281, -4.002103805541992 ], [ -80.44189453125, -4.002974987029916 ], [ -80.442718505859318, -4.0037522315979 ], [ -80.443473815917912, -4.00434398651123 ], [ -80.444702148437443, -4.005650043487492 ], [ -80.444877624511719, -4.006411075592041 ], [ -80.444801330566349, -4.007112979888859 ], [ -80.444702148437443, -4.007270812988224 ], [ -80.4444580078125, -4.007658004760742 ], [ -80.443138122558594, -4.009638786315804 ], [ -80.442779541015625, -4.010281085968018 ], [ -80.44287109375, -4.011281967163086 ], [ -80.443061828613281, -4.01403093338007 ], [ -80.443717956542969, -4.015944957733041 ], [ -80.445068359375, -4.017230987548828 ], [ -80.445777893066349, -4.017480850219727 ], [ -80.446563720703125, -4.017322063446045 ], [ -80.44732666015625, -4.017047882080078 ], [ -80.449539184570312, -4.016310214996338 ], [ -80.45037841796875, -4.016122817993164 ], [ -80.451126098632699, -4.016122817993164 ], [ -80.452384948730469, -4.016314029693604 ], [ -80.452537536621037, -4.016336917877197 ], [ -80.453742980957031, -4.017012119293213 ], [ -80.454277038574219, -4.017533779144287 ], [ -80.454971313476562, -4.018432140350342 ], [ -80.455490112304631, -4.019172191619816 ], [ -80.455551147460938, -4.019646167755127 ], [ -80.455032348632699, -4.019550800323486 ], [ -80.454566955566406, -4.019542217254582 ], [ -80.453254699707031, -4.01966476440424 ], [ -80.451995849609375, -4.020442008972168 ], [ -80.450828552246037, -4.022089958190918 ], [ -80.450279235839844, -4.023453235626221 ], [ -80.450225830078125, -4.025125026702824 ], [ -80.450546264648381, -4.026709079742432 ], [ -80.4510498046875, -4.027873992919808 ], [ -80.451416015625, -4.028536796569824 ], [ -80.452949523925781, -4.030762195587158 ], [ -80.454643249511662, -4.032820224761963 ], [ -80.456314086914062, -4.034522056579533 ], [ -80.457031249999943, -4.034944057464543 ], [ -80.457984924316349, -4.035272121429443 ], [ -80.459625244140625, -4.035624980926514 ], [ -80.461303710937443, -4.035800933837891 ], [ -80.464241027832031, -4.035823822021484 ], [ -80.465209960937443, -4.035908222198486 ], [ -80.466911315917969, -4.036136150360051 ], [ -80.467414855956974, -4.03632116317749 ], [ -80.467781066894474, -4.036450862884521 ], [ -80.468498229980469, -4.036918163299504 ], [ -80.468605041503906, -4.037035942077637 ], [ -80.469024658203068, -4.037509918212777 ], [ -80.469421386718693, -4.038209915161076 ], [ -80.469718933105355, -4.03898286819458 ], [ -80.469955444335938, -4.039855957031193 ], [ -80.470504760742188, -4.042034149169922 ], [ -80.470680236816406, -4.042792797088623 ], [ -80.471176147460938, -4.044839859008789 ], [ -80.471672058105469, -4.047465801239014 ], [ -80.472076416015568, -4.049086093902531 ], [ -80.472419738769531, -4.049838066101074 ], [ -80.472808837890625, -4.050422191619873 ], [ -80.473480224609375, -4.050954818725586 ], [ -80.475120544433537, -4.052011966705322 ], [ -80.475959777832031, -4.052555084228459 ], [ -80.478401184081918, -4.053750991821232 ], [ -80.479286193847656, -4.054218769073486 ], [ -80.480743408203125, -4.055085182189941 ], [ -80.481300354003906, -4.055562973022404 ], [ -80.481536865234318, -4.055906772613525 ], [ -80.481704711914006, -4.056150913238469 ], [ -80.481727600097599, -4.056309223174935 ], [ -80.481849670410156, -4.056970119476262 ], [ -80.481391906738281, -4.057693958282471 ], [ -80.480590820312386, -4.058849811553898 ], [ -80.479866027832031, -4.059483051300049 ], [ -80.479263305664062, -4.059916019439697 ], [ -80.478439331054688, -4.060286045074463 ], [ -80.477409362792912, -4.060554981231689 ], [ -80.4764404296875, -4.06066179275507 ], [ -80.47573089599598, -4.060884952545166 ], [ -80.474494934082031, -4.061614036559945 ], [ -80.473960876464844, -4.062189102172852 ], [ -80.473747253417969, -4.062417030334416 ], [ -80.473434448242131, -4.063210010528564 ], [ -80.473808288574162, -4.063992023468018 ], [ -80.474349975585938, -4.064663887023926 ], [ -80.475479125976562, -4.065766811370793 ], [ -80.475639343261719, -4.065928936004639 ], [ -80.476333618164062, -4.066363811492863 ], [ -80.4769287109375, -4.06691122055048 ], [ -80.477294921875, -4.067576885223389 ], [ -80.477340698242131, -4.067759037017822 ], [ -80.477508544921818, -4.06846094131464 ], [ -80.477401733398438, -4.069352149963322 ], [ -80.477134704589787, -4.070034027099609 ], [ -80.476760864257756, -4.070720195770264 ], [ -80.475921630859261, -4.07203197479248 ], [ -80.474533081054688, -4.073616027831974 ], [ -80.4742431640625, -4.073954105377197 ], [ -80.473670959472656, -4.07410192489624 ], [ -80.47344970703125, -4.074157238006592 ], [ -80.472084045410099, -4.074780941009521 ], [ -80.471656799316406, -4.075417041778564 ], [ -80.471359252929688, -4.076055049896183 ], [ -80.471519470214787, -4.076844215393066 ], [ -80.471946716308594, -4.077441215515023 ], [ -80.472526550292969, -4.078031063079834 ], [ -80.472946166992131, -4.078804016113168 ], [ -80.473052978515568, -4.079580783843994 ], [ -80.473541259765625, -4.082252025604248 ], [ -80.473854064941406, -4.083013057708683 ], [ -80.474586486816293, -4.084366798400879 ], [ -80.475151062011662, -4.084718227386418 ], [ -80.47576904296875, -4.084890842437744 ], [ -80.476554870605412, -4.084776878356877 ], [ -80.477279663085938, -4.084387779235783 ], [ -80.478050231933594, -4.084105014800912 ], [ -80.47955322265625, -4.083211898803654 ], [ -80.482078552246094, -4.081830024719238 ], [ -80.482528686523438, -4.08166599273676 ], [ -80.483551025390511, -4.081283092498779 ], [ -80.484268188476562, -4.081261157989445 ], [ -80.485023498535156, -4.081447124481144 ], [ -80.485626220703068, -4.081705093383732 ], [ -80.486083984375, -4.082147121429387 ], [ -80.486717224121094, -4.083209037780762 ], [ -80.486900329589844, -4.082970142364502 ], [ -80.488059997558594, -4.084773063659611 ], [ -80.489059448242131, -4.085523128509521 ], [ -80.489387512207031, -4.085543155670166 ], [ -80.489646911621037, -4.085558891296387 ], [ -80.490219116210881, -4.08559608459467 ], [ -80.491821289062443, -4.085043907165471 ], [ -80.492797851562386, -4.084993839263916 ], [ -80.493347167968693, -4.0852952003479 ], [ -80.494323730468636, -4.086351871490479 ], [ -80.495109558105469, -4.086787223815804 ], [ -80.498130798339787, -4.087530136108285 ], [ -80.498847961425781, -4.088212013244629 ], [ -80.499343872070256, -4.090404033660832 ], [ -80.500328063964787, -4.091279983520508 ], [ -80.501365661621037, -4.091272830963135 ], [ -80.502388000488281, -4.090195178985596 ], [ -80.503616333007812, -4.090087890625 ], [ -80.504142761230412, -4.090208053588867 ], [ -80.504547119140625, -4.090575218200627 ], [ -80.505416870117188, -4.090742111205998 ], [ -80.507904052734375, -4.092390060424691 ], [ -80.509567260742131, -4.092692852020207 ], [ -80.511634826660156, -4.094840049743652 ], [ -80.513313293457031, -4.097808837890625 ], [ -80.513969421386605, -4.097821235656738 ], [ -80.515419006347656, -4.097101211547852 ], [ -80.516059875488224, -4.097135066986027 ], [ -80.5174560546875, -4.098258018493652 ], [ -80.518173217773438, -4.099504947662354 ], [ -80.518592834472656, -4.10178899765009 ], [ -80.519477844238224, -4.102557182312012 ], [ -80.520988464355469, -4.103365898132267 ], [ -80.523445129394531, -4.106429100036564 ], [ -80.524421691894531, -4.110006809234619 ], [ -80.526138305664062, -4.113019943237305 ], [ -80.526313781738281, -4.114272117614746 ], [ -80.525962829589787, -4.115100860595646 ], [ -80.525588989257756, -4.117516994476318 ], [ -80.526145935058537, -4.120989799499455 ], [ -80.526817321777287, -4.12119102478016 ], [ -80.528564453124886, -4.120090007781982 ], [ -80.530540466308537, -4.119912147521916 ], [ -80.531318664550724, -4.120349884033146 ], [ -80.5322265625, -4.121362209320012 ], [ -80.532867431640625, -4.122348785400334 ], [ -80.533332824706918, -4.12427902221674 ], [ -80.534500122070312, -4.127315044403019 ], [ -80.538841247558537, -4.133172035217228 ], [ -80.53887939453125, -4.133840084075871 ], [ -80.538398742675781, -4.135913848876896 ], [ -80.540077209472599, -4.138279914855957 ], [ -80.540191650390568, -4.140270233154297 ], [ -80.541305541992131, -4.141197204589844 ], [ -80.544281005859318, -4.140968799591008 ], [ -80.544906616210938, -4.141235828399658 ], [ -80.545730590820199, -4.143454074859619 ], [ -80.545188903808594, -4.144862174987736 ], [ -80.545463562011719, -4.146273136138859 ], [ -80.547050476074162, -4.147424221038818 ], [ -80.547393798828125, -4.14938402175892 ], [ -80.548355102539062, -4.151323795318547 ], [ -80.549880981445312, -4.152608871459961 ], [ -80.551139831542912, -4.153059959411564 ], [ -80.551567077636719, -4.153425216674691 ], [ -80.552093505859318, -4.155790805816594 ], [ -80.55202484130848, -4.158284187316895 ], [ -80.553627014160099, -4.158992767333928 ], [ -80.556205749511662, -4.159309864044189 ], [ -80.557472229003906, -4.160307884216252 ], [ -80.557952880859375, -4.162069797515869 ], [ -80.557891845703125, -4.163518905639592 ], [ -80.557525634765568, -4.164241790771428 ], [ -80.556350708007812, -4.165602207183838 ], [ -80.5562744140625, -4.166601181030273 ], [ -80.556556701660156, -4.167364120483398 ], [ -80.557159423828068, -4.167713165283203 ], [ -80.558807373046875, -4.167745113372803 ], [ -80.560935974121094, -4.166828155517464 ], [ -80.561470031738281, -4.166916847228947 ], [ -80.561737060546818, -4.16728401184082 ], [ -80.562042236328125, -4.168504238128662 ], [ -80.561752319335824, -4.169920921325627 ], [ -80.561798095703125, -4.171073913574219 ], [ -80.561515808105469, -4.171831130981332 ], [ -80.560699462890511, -4.172684192657471 ], [ -80.560333251953125, -4.173505783081055 ], [ -80.560401916503849, -4.174046039581299 ], [ -80.560958862304631, -4.174691200256348 ], [ -80.561103820800781, -4.17592191696167 ], [ -80.561744689941349, -4.17607307434082 ], [ -80.562629699707031, -4.176939010620117 ], [ -80.56414794921875, -4.177224159240666 ], [ -80.564888000488224, -4.178534030914307 ], [ -80.565734863281193, -4.178230762481689 ], [ -80.566459655761719, -4.178271770477295 ], [ -80.567092895507699, -4.179592132568303 ], [ -80.568840026855469, -4.179864883422852 ], [ -80.57122802734375, -4.180651187896729 ], [ -80.572013854980412, -4.181374073028564 ], [ -80.57338714599598, -4.182075977325383 ], [ -80.573547363281193, -4.182469844818058 ], [ -80.573280334472599, -4.183119773864746 ], [ -80.572700500488224, -4.183475017547551 ], [ -80.573043823242188, -4.184788227081299 ], [ -80.573554992675724, -4.185729026794434 ], [ -80.573036193847656, -4.186975955963078 ], [ -80.573211669921875, -4.188324928283691 ], [ -80.573753356933537, -4.189239025115967 ], [ -80.576133728027287, -4.190566062927246 ], [ -80.576667785644531, -4.191055774688664 ], [ -80.576576232910156, -4.192668914794808 ], [ -80.577056884765625, -4.193655967712402 ], [ -80.576225280761662, -4.194859981536865 ], [ -80.576583862304688, -4.19532394409174 ], [ -80.577491760253906, -4.195833206176701 ], [ -80.577987670898438, -4.195874214172363 ], [ -80.578826904296875, -4.195147037506104 ], [ -80.5792236328125, -4.194333076477051 ], [ -80.580223083496037, -4.194262027740479 ], [ -80.581558227539006, -4.195721149444523 ], [ -80.58380126953125, -4.19751501083374 ], [ -80.584831237792855, -4.198074817657471 ], [ -80.586044311523381, -4.198417186737061 ], [ -80.586601257324219, -4.198900222778263 ], [ -80.5867919921875, -4.200050830841064 ], [ -80.586509704589787, -4.201646804809513 ], [ -80.586593627929688, -4.202644824981689 ], [ -80.586845397949219, -4.202905178070012 ], [ -80.58819580078125, -4.202896118164062 ], [ -80.588661193847656, -4.203151226043587 ], [ -80.588928222656136, -4.203618049621582 ], [ -80.588973999023438, -4.204878807067871 ], [ -80.589897155761719, -4.205601215362549 ], [ -80.590316772460938, -4.20659685134882 ], [ -80.590293884277344, -4.207047939300537 ], [ -80.589309692382699, -4.2089648246764 ], [ -80.589393615722599, -4.209880828857422 ], [ -80.589958190917912, -4.211408138275146 ], [ -80.589363098144531, -4.213142871856689 ], [ -80.589561462402287, -4.214211940765381 ], [ -80.589797973632812, -4.214487075805664 ], [ -80.591941833496094, -4.214293956756535 ], [ -80.592788696289062, -4.214017868041992 ], [ -80.593284606933537, -4.213481903076172 ], [ -80.594154357910099, -4.213232040405273 ], [ -80.594596862792969, -4.213321208953801 ], [ -80.595352172851562, -4.214204788208008 ], [ -80.596076965331974, -4.214301109313965 ], [ -80.596817016601506, -4.213959217071533 ], [ -80.598114013671875, -4.212717056274357 ], [ -80.601608276367131, -4.212800979614258 ], [ -80.602409362792969, -4.212272167205754 ], [ -80.603874206542912, -4.210542201995736 ], [ -80.604469299316349, -4.210501194000244 ], [ -80.604629516601506, -4.211483955383187 ], [ -80.603889465331974, -4.213991165161133 ], [ -80.604164123535099, -4.216051101684513 ], [ -80.604370117187443, -4.216347217559814 ], [ -80.60475921630848, -4.216415882110539 ], [ -80.605590820312443, -4.215580940246468 ], [ -80.606704711914062, -4.215229988098145 ], [ -80.607734680175781, -4.215773105621281 ], [ -80.608825683593693, -4.217825889587289 ], [ -80.609359741210938, -4.219542980194035 ], [ -80.610633850097656, -4.221388816833496 ], [ -80.611091613769531, -4.225058078765755 ], [ -80.612464904785099, -4.226084232330265 ], [ -80.613761901855469, -4.226470947265625 ], [ -80.614830017089844, -4.227444171905518 ], [ -80.61602783203125, -4.22783184051508 ], [ -80.617294311523438, -4.228704929351807 ], [ -80.620491027831974, -4.229259014129582 ], [ -80.621704101562443, -4.230814933776855 ], [ -80.62274169921875, -4.231510162353516 ], [ -80.623336791992131, -4.231279850006104 ], [ -80.623817443847599, -4.230206966400146 ], [ -80.62451171875, -4.229616165161076 ], [ -80.626838684082031, -4.229716777801514 ], [ -80.627784729003906, -4.229213237762451 ], [ -80.629768371582031, -4.229361057281494 ], [ -80.630874633789006, -4.228433132171574 ], [ -80.631797790527344, -4.228075981140137 ], [ -80.632415771484261, -4.228226184844914 ], [ -80.633277893066293, -4.227956771850586 ], [ -80.633697509765625, -4.228422164916992 ], [ -80.634445190429688, -4.228445053100529 ], [ -80.634651184082031, -4.229471206665039 ], [ -80.635047912597656, -4.229844093322754 ], [ -80.635505676269531, -4.229570865631104 ], [ -80.635833740234318, -4.228730201721135 ], [ -80.636505126953068, -4.228437900543213 ], [ -80.638465881347656, -4.22871208190918 ], [ -80.640808105468636, -4.229605197906437 ], [ -80.642707824706974, -4.229555130004883 ], [ -80.643539428710881, -4.228908061981201 ], [ -80.644889831542912, -4.229403972625732 ], [ -80.645347595214844, -4.22936296463007 ], [ -80.646080017089844, -4.228980064391976 ], [ -80.645973205566406, -4.227377891540527 ], [ -80.646263122558594, -4.226801872253418 ], [ -80.6485595703125, -4.226362228393498 ], [ -80.649147033691406, -4.225924015045166 ], [ -80.649841308593693, -4.224892139434758 ], [ -80.651786804199219, -4.224561214446908 ], [ -80.653038024902344, -4.224048137664795 ], [ -80.654228210449162, -4.223077774047852 ], [ -80.655647277832031, -4.222518920898324 ], [ -80.656852722167969, -4.221563816070557 ], [ -80.657218933105469, -4.22104883193964 ], [ -80.657447814941406, -4.219804763793832 ], [ -80.658309936523438, -4.218879222869816 ], [ -80.660606384277344, -4.217837810516244 ], [ -80.661506652831918, -4.217837810516244 ], [ -80.663078308105469, -4.217413902282658 ], [ -80.664047241210881, -4.216532230377197 ], [ -80.664955139160156, -4.216204166412354 ], [ -80.666358947753849, -4.214670181274414 ], [ -80.669761657714844, -4.211720943450928 ], [ -80.671974182128849, -4.210712909698486 ], [ -80.673088073730469, -4.209940910339355 ], [ -80.673812866210938, -4.20900821685791 ], [ -80.673957824707031, -4.20747518539423 ], [ -80.674461364746037, -4.206850051879883 ], [ -80.67535400390625, -4.206402778625431 ], [ -80.676864624023438, -4.206490039825383 ], [ -80.677833557128906, -4.20600700378418 ], [ -80.678596496582031, -4.204562187194767 ], [ -80.678695678710938, -4.202688217163086 ], [ -80.6800537109375, -4.201004028320312 ], [ -80.680480957031136, -4.200009822845459 ], [ -80.681465148925781, -4.199893951415959 ], [ -80.682968139648438, -4.199263095855713 ], [ -80.684906005859375, -4.197671890258732 ], [ -80.689506530761662, -4.196190834045353 ], [ -80.691093444824219, -4.194583892822266 ], [ -80.692367553710881, -4.191693782806396 ], [ -80.692863464355412, -4.191161155700684 ], [ -80.694091796874943, -4.190412998199406 ], [ -80.695953369140625, -4.190056800842285 ], [ -80.6973876953125, -4.18951511383051 ], [ -80.698303222656193, -4.18878793716425 ], [ -80.699134826660156, -4.187720775604248 ], [ -80.700759887695256, -4.187664031982422 ], [ -80.701629638671818, -4.187856197357178 ], [ -80.702880859374943, -4.188601016998234 ], [ -80.703567504882812, -4.189263820648137 ], [ -80.704750061035156, -4.189722061157227 ], [ -80.706504821777287, -4.189504146575928 ], [ -80.708114624023381, -4.188924789428711 ], [ -80.709548950195256, -4.18914794921875 ], [ -80.710731506347656, -4.189966201782227 ], [ -80.71160888671875, -4.190086841583195 ], [ -80.7119140625, -4.190534114837646 ], [ -80.711769104003906, -4.191237926483154 ], [ -80.711997985839844, -4.191623210906982 ], [ -80.712738037109375, -4.192150115966797 ], [ -80.713981628417969, -4.192310810089111 ], [ -80.714744567871094, -4.193439960479679 ], [ -80.717170715331974, -4.193195819854736 ], [ -80.718978881835881, -4.194163799285832 ], [ -80.719993591308594, -4.193760871887207 ], [ -80.720596313476506, -4.192972183227482 ], [ -80.721145629882812, -4.190970897674561 ], [ -80.721755981445256, -4.190066814422551 ], [ -80.722503662109318, -4.189773082733097 ], [ -80.724029541015568, -4.189914226531982 ], [ -80.725006103515568, -4.189671993255615 ], [ -80.726776123046875, -4.188119888305607 ], [ -80.728279113769531, -4.186453819274902 ], [ -80.7283935546875, -4.185462951660156 ], [ -80.728141784667912, -4.184589862823486 ], [ -80.728614807128849, -4.183822154998779 ], [ -80.728500366210938, -4.181653976440316 ], [ -80.728912353515568, -4.180947780609074 ], [ -80.730247497558537, -4.18044376373291 ], [ -80.731330871582031, -4.181056976318359 ], [ -80.731689453124943, -4.181036949157715 ], [ -80.732818603515568, -4.180127143859863 ], [ -80.733688354492131, -4.178871154785156 ], [ -80.734130859375, -4.178561210632324 ], [ -80.736000061035156, -4.178242206573486 ], [ -80.736061096191349, -4.178681850433293 ], [ -80.735588073730412, -4.179765224456787 ], [ -80.735855102539006, -4.180232048034611 ], [ -80.736457824706974, -4.180417060852051 ], [ -80.737541198730469, -4.180273056030273 ], [ -80.738815307617131, -4.181099891662598 ], [ -80.741584777831974, -4.181413173675537 ], [ -80.743133544921818, -4.183617115020695 ], [ -80.743949890136719, -4.183880805969238 ], [ -80.745124816894474, -4.183889865875244 ], [ -80.745864868164062, -4.183587074279785 ], [ -80.745330810546761, -4.181745052337646 ], [ -80.746482849121094, -4.180991172790471 ], [ -80.746162414550724, -4.179543972015267 ], [ -80.747901916503849, -4.178819179534912 ], [ -80.748207092285156, -4.178483963012638 ], [ -80.74819183349598, -4.177935123443547 ], [ -80.749649047851562, -4.177556037902832 ], [ -80.750534057617188, -4.177619934082031 ], [ -80.751686096191349, -4.178153038024789 ], [ -80.752227783203125, -4.17816686630249 ], [ -80.754707336425781, -4.179806232452279 ], [ -80.755500793456974, -4.179609775543213 ], [ -80.756309509277344, -4.178866863250732 ], [ -80.758796691894531, -4.1790452003479 ], [ -80.760078430175724, -4.178190231323185 ], [ -80.760299682617131, -4.176558017730713 ], [ -80.761550903320312, -4.175162792205811 ], [ -80.762229919433594, -4.174897193908691 ], [ -80.763259887695199, -4.174852848052979 ], [ -80.764152526855469, -4.175522804260197 ], [ -80.764625549316406, -4.175634860992375 ], [ -80.766426086425781, -4.174229145050049 ], [ -80.768127441406136, -4.174322128295898 ], [ -80.76947021484375, -4.173477172851506 ], [ -80.770751953125, -4.173971176147461 ], [ -80.771781921386719, -4.174996852874756 ], [ -80.774932861328125, -4.175119876861572 ], [ -80.777099609375, -4.176208972930908 ], [ -80.779701232910156, -4.175244808196965 ], [ -80.781265258789006, -4.175611972808838 ], [ -80.781822204589787, -4.176202774047795 ], [ -80.7821044921875, -4.176963806152344 ], [ -80.781387329101562, -4.179580211639347 ], [ -80.781608581542969, -4.179984092712402 ], [ -80.782180786132812, -4.180286884307748 ], [ -80.783309936523438, -4.180034160613957 ], [ -80.784065246582031, -4.178616046905518 ], [ -80.784591674804631, -4.178260803222599 ], [ -80.78558349609375, -4.17817211151123 ], [ -80.787940979003849, -4.179306983947697 ], [ -80.790664672851562, -4.179799079894963 ], [ -80.793136596679688, -4.178719043731689 ], [ -80.795661926269474, -4.178043842315674 ], [ -80.798530578613224, -4.178067207336369 ], [ -80.799598693847543, -4.177879810333195 ], [ -80.800605773925781, -4.1772780418396 ], [ -80.802574157714844, -4.175552845001221 ], [ -80.80401611328125, -4.175434112548828 ], [ -80.805229187011719, -4.17577600479126 ], [ -80.807716369628906, -4.177054882049561 ], [ -80.809913635253906, -4.177875041961556 ], [ -80.810417175292969, -4.178283214569092 ], [ -80.814361572265568, -4.180075168609619 ], [ -80.816436767578125, -4.181344032287484 ], [ -80.819328308105412, -4.182349205016976 ], [ -80.822807312011719, -4.184267997741699 ], [ -80.824409484863281, -4.18480396270752 ], [ -80.828201293945256, -4.184794902801514 ], [ -80.830345153808594, -4.185119152069035 ], [ -80.836311340331918, -4.188054084777832 ], [ -80.837799072265625, -4.188403129577637 ], [ -80.840858459472599, -4.188183784484806 ], [ -80.842422485351562, -4.187828063964844 ], [ -80.843994140625, -4.187151908874512 ], [ -80.845436096191349, -4.187022209167367 ], [ -80.847343444824162, -4.187548160552922 ], [ -80.848030090331974, -4.188263893127441 ], [ -80.849693298339844, -4.189339160919133 ], [ -80.851203918457031, -4.18959903717041 ], [ -80.852691650390568, -4.189255237579346 ], [ -80.855087280273381, -4.188220024108887 ], [ -80.856613159179631, -4.188072204589787 ], [ -80.858238220214787, -4.18821382522583 ], [ -80.859527587890625, -4.188573837280273 ], [ -80.861419677734375, -4.189746856689453 ], [ -80.863624572753906, -4.190530776977539 ], [ -80.867652893066349, -4.191131114959603 ], [ -80.868270874023438, -4.1914768218993 ], [ -80.872116088867188, -4.192402839660588 ], [ -80.873458862304688, -4.19253492355341 ], [ -80.875343322753906, -4.192396163940373 ], [ -80.87856292724598, -4.192794799804688 ], [ -80.882087707519418, -4.192083835601807 ], [ -80.884246826171818, -4.191887855529785 ], [ -80.885398864746037, -4.191465854644719 ], [ -80.885993957519474, -4.190256118774414 ], [ -80.887107849121037, -4.188957214355469 ], [ -80.887825012207031, -4.187397956848145 ], [ -80.889755249023438, -4.185501098632756 ], [ -80.892433166503906, -4.184761047363281 ], [ -80.894515991210938, -4.184908866882267 ], [ -80.895660400390625, -4.184753894805851 ], [ -80.896881103515625, -4.183980941772461 ], [ -80.898719787597656, -4.181760787963867 ], [ -80.902549743652344, -4.178339958190804 ], [ -80.906929016113281, -4.176670074462891 ], [ -80.912101745605412, -4.176207065582219 ], [ -80.913406372070312, -4.175856113433838 ], [ -80.917045593261719, -4.173686027526855 ], [ -80.919555664062443, -4.171210765838623 ], [ -80.923515319824219, -4.171053886413574 ], [ -80.92694091796875, -4.171792030334416 ], [ -80.928825378417969, -4.173020839691162 ], [ -80.93048095703125, -4.175168037414551 ], [ -80.931785583496094, -4.176281929016056 ], [ -80.932876586914062, -4.176914215087834 ], [ -80.934547424316406, -4.177306175231934 ], [ -80.936141967773381, -4.177996158599854 ], [ -80.937461853027287, -4.177373886108398 ], [ -80.938697814941406, -4.176177024841309 ], [ -80.939697265625, -4.17388200759882 ], [ -80.939971923828068, -4.172648906707764 ], [ -80.941184997558537, -4.170857906341496 ], [ -80.94268798828125, -4.169559001922551 ], [ -80.94439697265625, -4.168997764587289 ], [ -80.946014404296875, -4.169030189514103 ], [ -80.948600769042969, -4.170316219329834 ], [ -80.949310302734318, -4.170454978942871 ], [ -80.950492858886719, -4.171273231506348 ], [ -80.953041076660043, -4.17218017578125 ], [ -80.953559875488281, -4.172534942626896 ], [ -80.957214355468693, -4.173542976379395 ], [ -80.959442138671875, -4.174498081207219 ], [ -80.960533142089844, -4.174524784088135 ], [ -80.963752746582031, -4.173367023468018 ], [ -80.966255187988281, -4.173031806945744 ], [ -80.966773986816293, -4.173110008239746 ], [ -80.968498229980469, -4.171378135681039 ], [ -80.968925476074219, -4.170475006103516 ], [ -80.97011566162098, -4.169010162353459 ], [ -80.970306396484261, -4.168034076690674 ], [ -80.969009399414062, -4.165472030639648 ], [ -80.96706390380848, -4.162751197814828 ], [ -80.965736389160156, -4.160277843475342 ], [ -80.964897155761719, -4.157151222229004 ], [ -80.963653564453125, -4.155047893524113 ], [ -80.961791992187443, -4.150391101837158 ], [ -80.961578369140625, -4.149242877960205 ], [ -80.961616516113224, -4.147333145141602 ], [ -80.962226867675781, -4.145359039306584 ], [ -80.964118957519531, -4.14293384552002 ], [ -80.965423583984318, -4.141961097717171 ], [ -80.967399597167969, -4.140927791595459 ], [ -80.967185974121094, -4.137673854827824 ], [ -80.967483520507812, -4.136359214782658 ], [ -80.970191955566349, -4.131965160369873 ], [ -80.970558166503849, -4.130377769470215 ], [ -80.970916748046875, -4.129851818084717 ], [ -80.970932006835938, -4.128692150115967 ], [ -80.971443176269474, -4.127933025360107 ], [ -80.972457885742188, -4.127367973327637 ], [ -80.973617553710881, -4.127205848693848 ], [ -80.974784851074105, -4.127348899841309 ], [ -80.976249694824219, -4.128039836883545 ], [ -80.977920532226506, -4.12772083282465 ], [ -80.979919433593693, -4.124835014343205 ], [ -80.981422424316406, -4.123402118682861 ], [ -80.983108520507812, -4.122336864471379 ], [ -80.984428405761719, -4.12218523025507 ], [ -80.985610961914062, -4.121543884277344 ], [ -80.986160278320312, -4.120829105377197 ], [ -80.986495971679631, -4.11924505233759 ], [ -80.987129211425781, -4.118474006652775 ], [ -80.988143920898438, -4.118115901946965 ], [ -80.989341735839787, -4.118483066558838 ], [ -80.990966796874943, -4.118642807006836 ], [ -80.993011474609375, -4.118285179138184 ], [ -80.993850708007756, -4.11750602722168 ], [ -80.995742797851506, -4.114943981170654 ], [ -80.997520446777344, -4.113554000854435 ], [ -80.999038696289062, -4.111771106719971 ], [ -80.999641418456974, -4.111370086669922 ], [ -81.000701904296818, -4.111622810363713 ], [ -81.001853942871037, -4.112874031066781 ], [ -81.003440856933594, -4.113104820251408 ], [ -81.005996704101562, -4.114262104034367 ], [ -81.007713317871094, -4.114664077758789 ], [ -81.009574890136662, -4.115460872650033 ], [ -81.011428833007812, -4.115346908569279 ], [ -81.013153076171875, -4.115757942199707 ], [ -81.015655517578125, -4.115767002105599 ], [ -81.017501831054631, -4.11496019363392 ], [ -81.020233154296875, -4.112240791320801 ], [ -81.022575378417969, -4.108028888702393 ], [ -81.024581909179688, -4.107250213623047 ], [ -81.026458740234318, -4.107226848602295 ], [ -81.02728271484375, -4.106914997100773 ], [ -81.029388427734375, -4.104963779449406 ], [ -81.030471801757756, -4.102914810180664 ], [ -81.03338623046875, -4.101037025451603 ], [ -81.034317016601562, -4.099726200103703 ], [ -81.034950256347599, -4.098344802856445 ], [ -81.035667419433594, -4.095899105071965 ], [ -81.036323547363281, -4.095427989959717 ], [ -81.038291931152287, -4.094828128814697 ], [ -81.039199829101562, -4.093957901000977 ], [ -81.039146423339787, -4.091763019561711 ], [ -81.040206909179574, -4.09032487869257 ], [ -81.040542602539062, -4.089070796966553 ], [ -81.041007995605469, -4.088599205016976 ], [ -81.042915344238281, -4.087361812591553 ], [ -81.042915344238281, -4.08708381652832 ], [ -81.043197631835938, -4.08708381652832 ], [ -81.043197631835938, -4.086805820465088 ], [ -81.043472290039062, -4.086805820465088 ], [ -81.043472290039062, -4.086527824401855 ], [ -81.043746948242188, -4.086527824401855 ], [ -81.043746948242188, -4.085418224334717 ], [ -81.044029235839844, -4.085418224334717 ], [ -81.044029235839844, -4.08458423614502 ], [ -81.044303894042912, -4.08458423614502 ], [ -81.044303894042912, -4.083748817443791 ], [ -81.044029235839844, -4.083748817443791 ], [ -81.044029235839844, -4.082918167114201 ], [ -81.043746948242188, -4.082918167114201 ], [ -81.043746948242188, -4.081805229186955 ], [ -81.043472290039062, -4.081805229186955 ], [ -81.043472290039062, -4.08124923706049 ], [ -81.042640686035156, -4.08124923706049 ], [ -81.042640686035156, -4.080695152282715 ], [ -81.0423583984375, -4.080695152282715 ], [ -81.0423583984375, -4.080139160156136 ], [ -81.042083740234318, -4.080139160156136 ], [ -81.042083740234318, -4.079583168029728 ], [ -81.041809082031193, -4.079583168029728 ], [ -81.041809082031193, -4.079305171966496 ], [ -81.041526794433537, -4.079305171966496 ], [ -81.041526794433537, -4.078749179840031 ], [ -81.041252136230412, -4.078749179840031 ], [ -81.041252136230412, -4.078471183776799 ], [ -81.040969848632699, -4.078473091125488 ], [ -81.040969848632699, -4.078195095062256 ], [ -81.040695190429688, -4.078195095062256 ], [ -81.040695190429688, -4.077639102935791 ], [ -81.040412902832031, -4.077639102935791 ], [ -81.040412902832031, -4.077361106872559 ], [ -81.040138244628906, -4.077361106872559 ], [ -81.040138244628906, -4.077083110809326 ], [ -81.039863586425781, -4.077083110809326 ], [ -81.039863586425781, -4.076805114746094 ], [ -81.039306640625, -4.076805114746094 ], [ -81.039306640625, -4.076527118682748 ], [ -81.039024353027344, -4.076527118682748 ], [ -81.039024353027344, -4.076249122619515 ], [ -81.038749694824162, -4.076249122619515 ], [ -81.038749694824162, -4.07597112655634 ], [ -81.038192749023381, -4.075973033905029 ], [ -81.038192749023381, -4.075695037841797 ], [ -81.037918090820199, -4.075695037841797 ], [ -81.037918090820199, -4.075417041778564 ], [ -81.037361145019531, -4.075417041778564 ], [ -81.037361145019531, -4.075139045715332 ], [ -81.037086486816406, -4.075139045715332 ], [ -81.037086486816406, -4.0748610496521 ], [ -81.036529541015625, -4.0748610496521 ], [ -81.036529541015625, -4.074583053588867 ], [ -81.036247253417969, -4.074583053588867 ], [ -81.036247253417969, -4.074305057525635 ], [ -81.035972595214844, -4.074305057525635 ], [ -81.035972595214844, -4.074027061462402 ], [ -81.035697937011662, -4.074027061462402 ], [ -81.035697937011662, -4.07374906539917 ], [ -81.035415649414006, -4.07374906539917 ], [ -81.035415649414006, -4.073471069335938 ], [ -81.035140991210881, -4.073472976684513 ], [ -81.035140991210881, -4.073194980621338 ], [ -81.034858703613224, -4.073194980621338 ], [ -81.034858703613224, -4.072638988494873 ], [ -81.034584045410043, -4.072638988494873 ], [ -81.034584045410043, -4.072360992431641 ], [ -81.0343017578125, -4.072360992431641 ], [ -81.0343017578125, -4.072082996368408 ], [ -81.034027099609375, -4.072082996368408 ], [ -81.034027099609375, -4.071804046630803 ], [ -81.03375244140625, -4.071804046630803 ], [ -81.03375244140625, -4.071526050567627 ], [ -81.033470153808594, -4.071526050567627 ], [ -81.033470153808594, -4.071248054504395 ], [ -81.033195495605469, -4.071250915527287 ], [ -81.033195495605469, -4.070972919464054 ], [ -81.032913208007812, -4.070972919464054 ], [ -81.032913208007812, -4.070694923400822 ], [ -81.032638549804631, -4.070694923400822 ], [ -81.032638549804631, -4.070137977600041 ], [ -81.032363891601506, -4.070137977600041 ], [ -81.032363891601506, -4.069581985473576 ], [ -81.032081604003849, -4.069581985473576 ], [ -81.032081604003849, -4.06930685043335 ], [ -81.031806945800724, -4.06930685043335 ], [ -81.031806945800724, -4.069027900695801 ], [ -81.031524658203068, -4.069027900695801 ], [ -81.031524658203068, -4.068471908569336 ], [ -81.03125, -4.068471908569336 ], [ -81.03125, -4.068193912506104 ], [ -81.030975341796875, -4.068193912506104 ], [ -81.030975341796875, -4.067915916442871 ], [ -81.030693054199219, -4.067915916442871 ], [ -81.030693054199219, -4.067361831665039 ], [ -81.030418395996094, -4.067359924316293 ], [ -81.030418395996094, -4.067083835601807 ], [ -81.030136108398438, -4.067083835601807 ], [ -81.030136108398438, -4.065971851348877 ], [ -81.029861450195312, -4.065971851348877 ], [ -81.029861450195312, -4.06513786315918 ], [ -81.029586791992131, -4.06513786315918 ], [ -81.029586791992131, -4.064583778381291 ], [ -81.029029846191349, -4.064583778381291 ], [ -81.029029846191349, -4.064305782318058 ], [ -81.028747558593693, -4.064305782318058 ], [ -81.028747558593693, -4.064027786254883 ], [ -81.0281982421875, -4.064027786254883 ], [ -81.028190612792855, -4.06374979019165 ], [ -81.027915954589844, -4.06374979019165 ], [ -81.027915954589844, -4.063193798065186 ], [ -81.027641296386719, -4.063193798065186 ], [ -81.027641296386719, -4.062637805938721 ], [ -81.027359008789062, -4.062637805938721 ], [ -81.027359008789062, -4.061806201934758 ], [ -81.027084350585938, -4.061806201934758 ], [ -81.027084350585938, -4.060972213745117 ], [ -81.026802062988281, -4.060972213745117 ], [ -81.026802062988281, -4.060694217681885 ], [ -81.026527404785156, -4.060694217681885 ], [ -81.026527404785156, -4.060140132903996 ], [ -81.026252746581974, -4.060140132903996 ], [ -81.026252746581974, -4.059584140777531 ], [ -81.025970458984318, -4.059584140777531 ], [ -81.025970458984318, -4.059028148651066 ], [ -81.025695800781193, -4.059028148651066 ], [ -81.025695800781193, -4.058750152587834 ], [ -81.025413513183537, -4.058750152587834 ], [ -81.025413513183537, -4.058196067810059 ], [ -81.025138854980355, -4.058196067810059 ], [ -81.025138854980355, -4.057637214660588 ], [ -81.024864196777344, -4.057637214660588 ], [ -81.024864196777344, -4.057081222534123 ], [ -81.024581909179688, -4.057084083557015 ], [ -81.024581909179688, -4.056527137756348 ], [ -81.024307250976562, -4.056527137756348 ], [ -81.024307250976562, -4.055139064788818 ], [ -81.024024963378906, -4.055139064788818 ], [ -81.024024963378906, -4.053749084472656 ], [ -81.023750305175781, -4.053749084472656 ], [ -81.023750305175781, -4.053194999694767 ], [ -81.023475646972656, -4.053194999694767 ], [ -81.023475646972656, -4.052639007568303 ], [ -81.022918701171818, -4.052639007568303 ], [ -81.022918701171818, -4.05236101150507 ], [ -81.022361755371037, -4.05236101150507 ], [ -81.022361755371037, -4.052083015441895 ], [ -81.022087097167855, -4.052083015441895 ], [ -81.022087097167855, -4.051805019378662 ], [ -81.021530151367188, -4.051805019378662 ], [ -81.021530151367188, -4.05152702331543 ], [ -81.020973205566406, -4.05152702331543 ], [ -81.020973205566406, -4.051249027252197 ], [ -81.02069091796875, -4.051249027252197 ], [ -81.02069091796875, -4.050972938537541 ], [ -81.0201416015625, -4.050971031188965 ], [ -81.0201416015625, -4.050694942474308 ], [ -81.019859313964787, -4.050694942474308 ], [ -81.019859313964787, -4.050416946411076 ], [ -81.019302368164006, -4.050416946411076 ], [ -81.019302368164006, -4.050138950347844 ], [ -81.019027709960881, -4.050138950347844 ], [ -81.019027709960881, -4.049860954284611 ], [ -81.018470764160156, -4.049860954284611 ], [ -81.018470764160156, -4.049582958221379 ], [ -81.01763916015625, -4.049582958221379 ], [ -81.01763916015625, -4.049304962158146 ], [ -81.017082214355469, -4.049304962158146 ], [ -81.017082214355469, -4.049028873443604 ], [ -81.016807556152287, -4.049028873443604 ], [ -81.016807556152287, -4.048750877380371 ], [ -81.016525268554631, -4.048750877380371 ], [ -81.016525268554631, -4.048472881317139 ], [ -81.016250610351506, -4.048472881317139 ], [ -81.016250610351506, -4.048194885253906 ], [ -81.015975952148381, -4.048194885253906 ], [ -81.015975952148381, -4.04791688919056 ], [ -81.015693664550724, -4.04791688919056 ], [ -81.015693664550724, -4.047638893127328 ], [ -81.015419006347656, -4.047638893127328 ], [ -81.015419006347656, -4.047360897064152 ], [ -81.01513671875, -4.047360897064152 ], [ -81.01513671875, -4.04708290100092 ], [ -81.014862060546875, -4.04708290100092 ], [ -81.014862060546875, -4.046804904937687 ], [ -81.014579772949219, -4.046804904937687 ], [ -81.014579772949219, -4.046528816223145 ], [ -81.014305114746094, -4.046528816223145 ], [ -81.014305114746094, -4.046250820159912 ], [ -81.014030456542969, -4.046250820159912 ], [ -81.014030456542969, -4.04597282409668 ], [ -81.013473510742131, -4.04597282409668 ], [ -81.013473510742131, -4.045694828033447 ], [ -81.013191223144474, -4.045694828033447 ], [ -81.013191223144474, -4.045416831970215 ], [ -81.012916564941349, -4.045416831970215 ], [ -81.012916564941349, -4.045138835906982 ], [ -81.012641906738224, -4.045138835906982 ], [ -81.012641906738224, -4.04486083984375 ], [ -81.012359619140511, -4.04486083984375 ], [ -81.012359619140511, -4.044307231903076 ], [ -81.0120849609375, -4.044303894042969 ], [ -81.0120849609375, -4.043193817138615 ], [ -81.011802673339844, -4.043193817138615 ], [ -81.011802673339844, -4.042637825012207 ], [ -81.011528015136719, -4.042637825012207 ], [ -81.011528015136719, -4.042081832885742 ], [ -81.011253356933594, -4.042081832885742 ], [ -81.011253356933594, -4.041806221008244 ], [ -81.010971069335938, -4.041806221008244 ], [ -81.010971069335938, -4.041250228881779 ], [ -81.010696411132812, -4.041250228881779 ], [ -81.010696411132812, -4.040694236755314 ], [ -81.010414123535156, -4.040694236755314 ], [ -81.010414123535156, -4.040415763854924 ], [ -81.010139465331974, -4.040415763854924 ], [ -81.010139465331974, -4.039859771728459 ], [ -81.009864807128849, -4.039859771728459 ], [ -81.009864807128849, -4.039306163787728 ], [ -81.009582519531193, -4.039306163787728 ], [ -81.009582519531193, -4.03875017166132 ], [ -81.009307861328011, -4.03875017166132 ], [ -81.009307861328011, -4.038194179534855 ], [ -81.009025573730355, -4.038194179534855 ], [ -81.009025573730355, -4.03763818740839 ], [ -81.008750915527344, -4.03763818740839 ], [ -81.008750915527344, -4.037082195281926 ], [ -81.008468627929688, -4.037084102630615 ], [ -81.008468627929688, -4.03652811050415 ], [ -81.008193969726562, -4.03652811050415 ], [ -81.008193969726562, -4.035972118377572 ], [ -81.007919311523438, -4.035972118377572 ], [ -81.007919311523438, -4.035416126251164 ], [ -81.007637023925781, -4.035416126251164 ], [ -81.007637023925781, -4.034584045410156 ], [ -81.007362365722656, -4.034584045410156 ], [ -81.007362365722656, -4.034028053283691 ], [ -81.007080078124943, -4.034028053283691 ], [ -81.007080078124943, -4.033194065093994 ], [ -81.006805419921818, -4.033194065093994 ], [ -81.006805419921818, -4.032638072967529 ], [ -81.006530761718693, -4.032639980316162 ], [ -81.006530761718693, -4.031805992126465 ], [ -81.006248474121037, -4.031805992126465 ], [ -81.006248474121037, -4.03125 ], [ -81.005973815917855, -4.03125 ], [ -81.005973815917855, -4.030693054199219 ], [ -81.005691528320312, -4.030693054199219 ], [ -81.005691528320312, -4.030139923095646 ], [ -81.005416870117188, -4.030139923095646 ], [ -81.005416870117188, -4.029582977294865 ], [ -81.005142211914062, -4.029582977294865 ], [ -81.005142211914062, -4.0290269851684 ], [ -81.004859924316406, -4.0290269851684 ], [ -81.004859924316406, -4.028473854064828 ], [ -81.004585266113281, -4.028473854064828 ], [ -81.004585266113281, -4.02791690826416 ], [ -81.004302978515625, -4.02791690826416 ], [ -81.004302978515625, -4.027360916137695 ], [ -81.004028320312443, -4.027360916137695 ], [ -81.004028320312443, -4.026804924011117 ], [ -81.003753662109318, -4.026804924011117 ], [ -81.003753662109318, -4.026248931884709 ], [ -81.003471374511662, -4.026248931884709 ], [ -81.003471374511662, -4.025694847106934 ], [ -81.003196716308537, -4.025694847106934 ], [ -81.003196716308537, -4.025138854980469 ], [ -81.002914428710881, -4.025138854980469 ], [ -81.002914428710881, -4.024582862854004 ], [ -81.002639770507812, -4.024582862854004 ], [ -81.002639770507812, -4.024026870727539 ], [ -81.002357482910156, -4.024026870727539 ], [ -81.002357482910156, -4.023748874664307 ], [ -81.002639770507812, -4.023748874664307 ], [ -81.002639770507812, -4.023472785949707 ], [ -81.002357482910156, -4.023472785949707 ], [ -81.002357482910156, -4.022916793823242 ], [ -81.002082824707031, -4.022916793823242 ], [ -81.002082824707031, -4.022082805633545 ], [ -81.001808166503906, -4.022082805633545 ], [ -81.001808166503906, -4.02152681350708 ], [ -81.00152587890625, -4.02152681350708 ], [ -81.00152587890625, -4.020695209503174 ], [ -81.001251220703125, -4.020695209503174 ], [ -81.001251220703125, -4.020139217376709 ], [ -81.000968933105469, -4.020139217376709 ], [ -81.000968933105469, -4.019583225250244 ], [ -81.000694274902287, -4.019583225250244 ], [ -81.000694274902287, -4.019029140472355 ], [ -81.000419616699162, -4.019029140472355 ], [ -81.000419616699162, -4.01847314834589 ], [ -81.000137329101506, -4.01847314834589 ], [ -81.000137329101506, -4.017917156219426 ], [ -80.999862670898381, -4.017917156219426 ], [ -80.999862670898381, -4.017639160156193 ], [ -80.999305725097656, -4.017639160156193 ], [ -80.999305725097656, -4.017082214355412 ], [ -80.999031066894531, -4.017082214355412 ], [ -80.999031066894531, -4.016526222228947 ], [ -80.998748779296875, -4.016526222228947 ], [ -80.998748779296875, -4.015138149261475 ], [ -80.999031066894531, -4.015138149261475 ], [ -80.999031066894531, -4.013750076293945 ], [ -80.998748779296875, -4.013750076293945 ], [ -80.998748779296875, -4.01319408416748 ], [ -80.99847412109375, -4.01319408416748 ], [ -80.99847412109375, -4.012638092041016 ], [ -80.998191833496094, -4.012638092041016 ], [ -80.998191833496094, -4.012084007263127 ], [ -80.997917175292969, -4.012084007263127 ], [ -80.997917175292969, -4.010416030883789 ], [ -80.998191833496094, -4.010416030883789 ], [ -80.998191833496094, -4.009027957916203 ], [ -80.997917175292969, -4.009027957916203 ], [ -80.997917175292969, -4.008193969726506 ], [ -80.997360229492131, -4.008193969726506 ], [ -80.997360229492131, -4.00763988494873 ], [ -80.997085571289006, -4.00763988494873 ], [ -80.997085571289006, -4.007083892822152 ], [ -80.996528625488168, -4.007083892822152 ], [ -80.996528625488168, -4.006805896758976 ], [ -80.9959716796875, -4.006805896758976 ], [ -80.9959716796875, -4.006527900695744 ], [ -80.995697021484375, -4.006527900695744 ], [ -80.995697021484375, -4.005971908569279 ], [ -80.995414733886719, -4.005971908569279 ], [ -80.995414733886719, -4.005693912506047 ], [ -80.995269775390568, -4.005693912506047 ], [ -80.995140075683594, -4.005693912506047 ], [ -80.995140075683594, -4.005379199981576 ], [ -80.995140075683594, -4.005139827728271 ], [ -80.994857788085938, -4.005139827728271 ], [ -80.994857788085938, -4.004685878753662 ], [ -80.994857788085938, -4.004583835601807 ], [ -80.994583129882812, -4.004583835601807 ], [ -80.994583129882812, -4.004305839538574 ], [ -80.994308471679631, -4.004305839538574 ], [ -80.994308471679631, -4.003748893737793 ], [ -80.994026184081974, -4.003748893737793 ], [ -80.994026184081974, -4.003192901611328 ], [ -80.993751525878849, -4.003192901611328 ], [ -80.993751525878849, -4.002917766571045 ], [ -80.993469238281193, -4.002917766571045 ], [ -80.993469238281193, -4.002360820770264 ], [ -80.993194580078011, -4.002360820770264 ], [ -80.993194580078011, -4.001804828643799 ], [ -80.992919921875, -4.001804828643799 ], [ -80.992919921875, -4.001526832580566 ], [ -80.992637634277344, -4.001526832580566 ], [ -80.992637634277344, -4.001248836517334 ], [ -80.992362976074219, -4.001248836517334 ], [ -80.992362976074219, -4.000970840454102 ], [ -80.992080688476562, -4.000970840454102 ], [ -80.992080688476562, -4.000692844390869 ], [ -80.991531372070312, -4.000692844390869 ], [ -80.991531372070312, -4.000417232513371 ], [ -80.991249084472599, -4.000417232513371 ], [ -80.991249084472599, -4.00021505355835 ], [ -80.991249084472599, -4.000139236450138 ], [ -80.999862670898381, -4.000139236450138 ], [ -80.999862670898381, -3.999861001968384 ], [ -80.991203308105469, -3.999861001968384 ], [ -80.990692138671818, -3.999861001968384 ], [ -80.990692138671818, -3.998471021652108 ], [ -80.990974426269474, -3.998472929000854 ], [ -80.990974426269474, -3.99791693687439 ], [ -80.990692138671818, -3.99791693687439 ], [ -80.990692138671818, -3.997360944747925 ], [ -80.990974426269474, -3.997360944747925 ], [ -80.990974426269474, -3.997082948684692 ], [ -80.990692138671818, -3.997082948684692 ], [ -80.990692138671818, -3.99680495262146 ], [ -80.990417480468693, -3.99680495262146 ], [ -80.990417480468693, -3.994860887527466 ], [ -80.990135192871037, -3.994860887527466 ], [ -80.990135192871037, -3.994582891464233 ], [ -80.989860534667969, -3.994582891464233 ], [ -80.989860534667969, -3.994304895401001 ], [ -80.989303588867188, -3.994304895401001 ], [ -80.989303588867188, -3.994026899337769 ], [ -80.989028930664062, -3.994026899337769 ], [ -80.989028930664062, -3.993748903274536 ], [ -80.988746643066406, -3.993751049041748 ], [ -80.988746643066406, -3.993195056915283 ], [ -80.988471984863281, -3.993195056915283 ], [ -80.988471984863281, -3.991805076599007 ], [ -80.988197326660099, -3.991806983947754 ], [ -80.988197326660099, -3.991250991821289 ], [ -80.987915039062443, -3.991250991821289 ], [ -80.987915039062443, -3.990972995758057 ], [ -80.987640380859318, -3.990972995758057 ], [ -80.987640380859318, -3.988749980926457 ], [ -80.987358093261662, -3.988749980926457 ], [ -80.987358093261662, -3.98791599273676 ], [ -80.987083435058537, -3.98791599273676 ], [ -80.987083435058537, -3.98680591583252 ], [ -80.986808776855469, -3.986804008483887 ], [ -80.986808776855469, -3.985693931579533 ], [ -80.987083435058537, -3.985693931579533 ], [ -80.987083435058537, -3.985327005386296 ], [ -80.987083435058537, -3.985137939453068 ], [ -80.986808776855469, -3.985137939453068 ], [ -80.986808776855469, -3.984859943389836 ], [ -80.986526489257812, -3.984862089157048 ], [ -80.986526489257812, -3.984584093093815 ], [ -80.986251831054688, -3.984584093093815 ], [ -80.986251831054688, -3.984306097030583 ], [ -80.985694885253906, -3.984306097030583 ], [ -80.985694885253906, -3.98402810096735 ], [ -80.985137939453125, -3.98402810096735 ], [ -80.985137939453125, -3.983025074005127 ], [ -80.985137939453125, -3.982916116714478 ], [ -80.984947204589844, -3.982916116714478 ], [ -80.984024047851506, -3.982916116714478 ], [ -80.984024047851506, -3.982637882232552 ], [ -80.983474731445312, -3.982637882232552 ], [ -80.983474731445312, -3.98235988616932 ], [ -80.983192443847656, -3.982362031936589 ], [ -80.983192443847656, -3.982084035873356 ], [ -80.982635498046875, -3.982084035873356 ], [ -80.982635498046875, -3.981806039810124 ], [ -80.981803894042969, -3.981806039810124 ], [ -80.981803894042969, -3.982084035873356 ], [ -80.981246948242131, -3.982084035873356 ], [ -80.981246948242131, -3.981806039810124 ], [ -80.980415344238168, -3.981806039810124 ], [ -80.980415344238168, -3.981528043746891 ], [ -80.979583740234375, -3.981528043746891 ], [ -80.979583740234375, -3.981250047683659 ], [ -80.979026794433594, -3.981250047683659 ], [ -80.979026794433594, -3.980972051620427 ], [ -80.978195190429631, -3.980972051620427 ], [ -80.978195190429631, -3.980694055557194 ], [ -80.977638244628849, -3.980694055557194 ], [ -80.977638244628849, -3.980416059493962 ], [ -80.977081298828125, -3.980416059493962 ], [ -80.977081298828125, -3.980139970779419 ], [ -80.976524353027344, -3.980139970779419 ], [ -80.976524353027344, -3.979861974716187 ], [ -80.976249694824219, -3.979861974716187 ], [ -80.976249694824219, -3.979583978652954 ], [ -80.975692749023438, -3.979583978652954 ], [ -80.975692749023438, -3.979305982589608 ], [ -80.975418090820256, -3.979305982589608 ], [ -80.975418090820256, -3.979027986526376 ], [ -80.974861145019474, -3.979027986526376 ], [ -80.974861145019474, -3.9787499904632 ], [ -80.974586486816349, -3.9787499904632 ], [ -80.974586486816349, -3.978471994399968 ], [ -80.974029541015625, -3.978471994399968 ], [ -80.974029541015625, -3.978193998336735 ], [ -80.973747253417969, -3.978193998336735 ], [ -80.973747253417969, -3.977917909622192 ], [ -80.973472595214844, -3.977917909622192 ], [ -80.973472595214844, -3.97763991355896 ], [ -80.973197937011719, -3.97763991355896 ], [ -80.973197937011719, -3.977361917495728 ], [ -80.972915649414062, -3.977361917495728 ], [ -80.972915649414062, -3.977083921432495 ], [ -80.972640991210938, -3.977083921432495 ], [ -80.972640991210938, -3.976828098297119 ], [ -80.972640991210938, -3.976526975631714 ], [ -80.972358703613281, -3.976526975631714 ], [ -80.972358703613281, -3.976248979568481 ], [ -80.972084045410099, -3.976248979568481 ], [ -80.972084045410099, -3.975970983505249 ], [ -80.971801757812443, -3.975970983505249 ], [ -80.971801757812443, -3.975821018218994 ], [ -80.971801757812443, -3.975692987442017 ], [ -80.971527099609318, -3.975692987442017 ], [ -80.971527099609318, -3.975392103195077 ], [ -80.971527099609318, -3.974304914474487 ], [ -80.971252441406193, -3.974304914474487 ], [ -80.971252441406193, -3.972917079925537 ], [ -80.97097015380848, -3.972917079925537 ], [ -80.97097015380848, -3.972639083862305 ], [ -80.970695495605469, -3.972639083862305 ], [ -80.970695495605469, -3.972361087799072 ], [ -80.970413208007812, -3.972361087799072 ], [ -80.970413208007812, -3.971805095672607 ], [ -80.970138549804688, -3.971805095672607 ], [ -80.970138549804688, -3.971527099609375 ], [ -80.969863891601562, -3.971527099609375 ], [ -80.969863891601562, -3.971249103546143 ], [ -80.969581604003906, -3.971251010894719 ], [ -80.969581604003906, -3.970973014831543 ], [ -80.969306945800781, -3.970973014831543 ], [ -80.969306945800781, -3.970417022705078 ], [ -80.969024658203125, -3.970417022705078 ], [ -80.969024658203125, -3.969861030578613 ], [ -80.96875, -3.969861030578613 ], [ -80.96875, -3.969305038452148 ], [ -80.968475341796818, -3.969305038452148 ], [ -80.968475341796818, -3.968749046325684 ], [ -80.968193054199162, -3.96875095367426 ], [ -80.968193054199162, -3.968194961547795 ], [ -80.96791839599598, -3.968194961547795 ], [ -80.96791839599598, -3.96763896942133 ], [ -80.967636108398324, -3.96763896942133 ], [ -80.967636108398324, -3.967082977294922 ], [ -80.967361450195312, -3.967082977294922 ], [ -80.967361450195312, -3.966526985168457 ], [ -80.967086791992188, -3.966526985168457 ], [ -80.967086791992188, -3.965972900390568 ], [ -80.966804504394531, -3.965972900390568 ], [ -80.966804504394531, -3.965416908264103 ], [ -80.966529846191406, -3.965416908264103 ], [ -80.966529846191406, -3.964860916137638 ], [ -80.96624755859375, -3.964860916137638 ], [ -80.96624755859375, -3.963751077651978 ], [ -80.965972900390625, -3.963751077651978 ], [ -80.965972900390625, -3.962081909179688 ], [ -80.965698242187443, -3.962085008621159 ], [ -80.965690612792912, -3.961250066757145 ], [ -80.965415954589787, -3.961250066757145 ], [ -80.965415954589787, -3.960972070693913 ], [ -80.965141296386662, -3.960972070693913 ], [ -80.965141296386662, -3.96069407463068 ], [ -80.964859008789006, -3.96069407463068 ], [ -80.964859008789006, -3.959860086440983 ], [ -80.964584350585824, -3.959860086440983 ], [ -80.964584350585824, -3.95958399772644 ], [ -80.964302062988281, -3.95958399772644 ], [ -80.964302062988281, -3.959306001663208 ], [ -80.964027404785156, -3.959306001663208 ], [ -80.964027404785156, -3.959140062332096 ], [ -80.964027404785156, -3.959028005599976 ], [ -80.963752746582031, -3.959028005599976 ], [ -80.963752746582031, -3.958750009536743 ], [ -80.963470458984375, -3.958750009536743 ], [ -80.963470458984375, -3.958472013473511 ], [ -80.963363647460938, -3.958472013473511 ], [ -80.962913513183594, -3.958472013473511 ], [ -80.962913513183594, -3.958194017410165 ], [ -80.961524963378849, -3.958194017410165 ], [ -80.961524963378849, -3.958472013473511 ], [ -80.960975646972656, -3.958472013473511 ], [ -80.960975646972656, -3.958750009536743 ], [ -80.960693359375, -3.958750009536743 ], [ -80.960693359375, -3.958472013473511 ], [ -80.959861755371094, -3.958472013473511 ], [ -80.959861755371094, -3.958194017410165 ], [ -80.959304809570256, -3.958194017410165 ], [ -80.959304809570256, -3.957916021346932 ], [ -80.959030151367131, -3.957916021346932 ], [ -80.959030151367131, -3.957638025283757 ], [ -80.958190917968636, -3.957638025283757 ], [ -80.958190917968636, -3.957361936569214 ], [ -80.9576416015625, -3.957361936569214 ], [ -80.9576416015625, -3.957083940505981 ], [ -80.957084655761719, -3.957083940505981 ], [ -80.957084655761719, -3.956805944442749 ], [ -80.956527709960938, -3.956805944442749 ], [ -80.956527709960938, -3.956527948379517 ], [ -80.956253051757756, -3.956527948379517 ], [ -80.956253051757756, -3.956249952316284 ], [ -80.955696105956974, -3.956249952316284 ], [ -80.955696105956974, -3.955971956253052 ], [ -80.955139160156136, -3.955971956253052 ], [ -80.955139160156136, -3.955693960189819 ], [ -80.954582214355469, -3.955693960189819 ], [ -80.954582214355469, -3.955415964126587 ], [ -80.954307556152344, -3.955415964126587 ], [ -80.954307556152344, -3.955137968063354 ], [ -80.954025268554688, -3.955137968063354 ], [ -80.954025268554688, -3.95486211776722 ], [ -80.953750610351562, -3.95486211776722 ], [ -80.953750610351562, -3.954693078994751 ], [ -80.953750610351562, -3.954583883285522 ], [ -80.953613281249886, -3.954583883285522 ], [ -80.953193664550781, -3.954583883285522 ], [ -80.953193664550781, -3.95430588722229 ], [ -80.952636718749943, -3.95430588722229 ], [ -80.952636718749943, -3.954027891159058 ], [ -80.952079772949162, -3.954027891159058 ], [ -80.952079772949162, -3.953749895095825 ], [ -80.95180511474598, -3.953749895095825 ], [ -80.95180511474598, -3.953471899032593 ], [ -80.951530456542969, -3.953471899032593 ], [ -80.951530456542969, -3.952915906906128 ], [ -80.951248168945312, -3.952915906906128 ], [ -80.951248168945312, -3.952640056610107 ], [ -80.950973510742188, -3.952640056610107 ], [ -80.950973510742188, -3.952480077743417 ], [ -80.950973510742188, -3.952359914779663 ], [ -80.950820922851506, -3.952362060546875 ], [ -80.950691223144531, -3.952362060546875 ], [ -80.950691223144531, -3.952255010604802 ], [ -80.950691223144531, -3.952084064483643 ], [ -80.950477600097656, -3.952084064483643 ], [ -80.950141906738281, -3.952084064483643 ], [ -80.950141906738281, -3.95180606842041 ], [ -80.949859619140568, -3.95180606842041 ], [ -80.949859619140568, -3.951528072357178 ], [ -80.949752807617188, -3.951528072357178 ], [ -80.949302673339787, -3.951528072357178 ], [ -80.949302673339787, -3.951250076293832 ], [ -80.949028015136662, -3.951250076293832 ], [ -80.949028015136662, -3.951087951660099 ], [ -80.949028015136662, -3.950972080230599 ], [ -80.94875335693348, -3.950972080230599 ], [ -80.94875335693348, -3.950692892074528 ], [ -80.948471069335938, -3.950692892074528 ], [ -80.948471069335938, -3.950417995452881 ], [ -80.948265075683537, -3.950417995452881 ], [ -80.947914123535156, -3.950417995452881 ], [ -80.947914123535156, -3.950139999389648 ], [ -80.947639465332031, -3.950139999389648 ], [ -80.947639465332031, -3.949862003326416 ], [ -80.947364807128906, -3.949862003326416 ], [ -80.947364807128906, -3.949584007263184 ], [ -80.94708251953125, -3.949584007263184 ], [ -80.94708251953125, -3.949305057525635 ], [ -80.946807861328068, -3.949305057525635 ], [ -80.946807861328068, -3.949027061462402 ], [ -80.946525573730412, -3.949027061462402 ], [ -80.946525573730412, -3.94874906539917 ], [ -80.946250915527287, -3.94874906539917 ], [ -80.946250915527287, -3.948471069335938 ], [ -80.945968627929631, -3.948471069335938 ], [ -80.945968627929631, -3.948195934295597 ], [ -80.945693969726506, -3.948195934295597 ], [ -80.945693969726506, -3.947999954223576 ], [ -80.945693969726506, -3.947638988494816 ], [ -80.945114135742131, -3.947638988494816 ], [ -80.944862365722656, -3.947638988494816 ], [ -80.944862365722656, -3.9474840164184 ], [ -80.944862365722656, -3.947360992431584 ], [ -80.944679260253906, -3.947360992431584 ], [ -80.944580078125, -3.947360992431584 ], [ -80.944580078125, -3.947082996368351 ], [ -80.944305419921875, -3.947082996368351 ], [ -80.944305419921875, -3.946805000305119 ], [ -80.94403076171875, -3.946805000305119 ], [ -80.94403076171875, -3.946527004241887 ], [ -80.943778991699162, -3.946527004241887 ], [ -80.943748474121094, -3.946249008178711 ], [ -80.943473815917912, -3.946249008178711 ], [ -80.943473815917912, -3.945971012115479 ], [ -80.943191528320256, -3.945971012115479 ], [ -80.943191528320256, -3.945694923400765 ], [ -80.942916870117131, -3.945694923400765 ], [ -80.942916870117131, -3.945416927337533 ], [ -80.942573547363281, -3.945416927337533 ], [ -80.941802978515625, -3.945416927337533 ], [ -80.941802978515625, -3.945138931274357 ], [ -80.940414428710938, -3.945138931274357 ], [ -80.940414428710938, -3.944860935211125 ], [ -80.939857482910099, -3.944860935211125 ], [ -80.939857482910099, -3.945138931274357 ], [ -80.938751220703125, -3.945138931274357 ], [ -80.938751220703125, -3.944860935211125 ], [ -80.937919616699219, -3.944860935211125 ], [ -80.937919616699219, -3.944582939147892 ], [ -80.937637329101562, -3.944582939147892 ], [ -80.937637329101562, -3.94430494308466 ], [ -80.937362670898438, -3.94430494308466 ], [ -80.937362670898438, -3.944026947021428 ], [ -80.937080383300724, -3.944026947021428 ], [ -80.937080383300724, -3.943887948989868 ], [ -80.937080383300724, -3.943748950958195 ], [ -80.936790466308594, -3.943748950958195 ], [ -80.936531066894474, -3.943748950958195 ], [ -80.936531066894474, -3.943624019622803 ], [ -80.936531066894474, -3.943470954894963 ], [ -80.936248779296818, -3.943473100662175 ], [ -80.936248779296818, -3.943195104598942 ], [ -80.935691833496094, -3.943195104598942 ], [ -80.935691833496094, -3.942917108535767 ], [ -80.935417175292969, -3.942917108535767 ], [ -80.935417175292969, -3.942639112472534 ], [ -80.934860229492188, -3.942639112472534 ], [ -80.934860229492188, -3.942361116409302 ], [ -80.934585571289062, -3.942361116409302 ], [ -80.934585571289062, -3.942082881927377 ], [ -80.934028625488224, -3.942082881927377 ], [ -80.934028625488224, -3.941804885864144 ], [ -80.933746337890568, -3.941804885864144 ], [ -80.933746337890568, -3.941526889800969 ], [ -80.932716369628849, -3.941526889800969 ], [ -80.932357788085938, -3.941526889800969 ], [ -80.932357788085938, -3.941248893737736 ], [ -80.931808471679688, -3.941251039504948 ], [ -80.931808471679688, -3.940973043441716 ], [ -80.931251525878906, -3.940973043441716 ], [ -80.931251525878906, -3.940695047378483 ], [ -80.93096923828125, -3.940695047378483 ], [ -80.93096923828125, -3.940417051315251 ], [ -80.930694580078068, -3.940417051315251 ], [ -80.930694580078068, -3.940139055252018 ], [ -80.930419921874943, -3.940139055252018 ], [ -80.930419921874943, -3.939861059188786 ], [ -80.930137634277287, -3.939861059188786 ], [ -80.930137634277287, -3.939583063125554 ], [ -80.929862976074162, -3.939583063125554 ], [ -80.929862976074162, -3.939305067062378 ], [ -80.929580688476449, -3.939305067062378 ], [ -80.929580688476449, -3.939028978347778 ], [ -80.929306030273438, -3.939028978347778 ], [ -80.929306030273438, -3.938889980316162 ], [ -80.929306030273438, -3.938750982284432 ], [ -80.929100036621037, -3.938750982284432 ], [ -80.928749084472656, -3.938750982284432 ], [ -80.928749084472656, -3.9384729862212 ], [ -80.928192138671875, -3.9384729862212 ], [ -80.928192138671875, -3.938194990158024 ], [ -80.927635192871094, -3.938194990158024 ], [ -80.927635192871094, -3.937916994094792 ], [ -80.927085876464787, -3.937916994094792 ], [ -80.927085876464787, -3.937638998031559 ], [ -80.926528930663949, -3.937638998031559 ], [ -80.926528930663949, -3.937362909317017 ], [ -80.925971984863281, -3.937361001968327 ], [ -80.925971984863281, -3.937082052230721 ], [ -80.9254150390625, -3.937082052230721 ], [ -80.9254150390625, -3.936804056167489 ], [ -80.924858093261719, -3.936804056167489 ], [ -80.924858093261719, -3.936528921127319 ], [ -80.924308776855412, -3.936528921127319 ], [ -80.924308776855412, -3.936250925064087 ], [ -80.923751831054631, -3.936250925064087 ], [ -80.923751831054631, -3.935972929000854 ], [ -80.923469543456974, -3.935972929000854 ], [ -80.923469543456974, -3.935693979263306 ], [ -80.922920227050781, -3.935693979263306 ], [ -80.922920227050781, -3.935415983200073 ], [ -80.92236328125, -3.935415983200073 ], [ -80.92236328125, -3.935137987136841 ], [ -80.921806335449219, -3.935137987136841 ], [ -80.921806335449219, -3.934859991073608 ], [ -80.921524047851562, -3.934859991073608 ], [ -80.921524047851562, -3.934585094451847 ], [ -80.920974731445256, -3.934585094451847 ], [ -80.920974731445256, -3.93430590629572 ], [ -80.920417785644474, -3.93430590629572 ], [ -80.920417785644474, -3.934027910232487 ], [ -80.91986083984375, -3.934027910232487 ], [ -80.91986083984375, -3.933749914169312 ], [ -80.919586181640625, -3.933749914169312 ], [ -80.919586181640625, -3.933471918106079 ], [ -80.919029235839844, -3.933471918106079 ], [ -80.919029235839844, -3.933193922042847 ], [ -80.918746948242188, -3.933193922042847 ], [ -80.918746948242188, -3.932915925979614 ], [ -80.918617248535043, -3.932915925979614 ], [ -80.918197631835881, -3.932915925979614 ], [ -80.918197631835881, -3.932729005813599 ], [ -80.918197631835881, -3.932637929916382 ], [ -80.917999267578125, -3.932637929916382 ], [ -80.917915344238224, -3.932637929916382 ], [ -80.917915344238224, -3.932359933853149 ], [ -80.917358398437443, -3.932359933853149 ], [ -80.917358398437443, -3.932084083557129 ], [ -80.917083740234318, -3.932084083557129 ], [ -80.917083740234318, -3.931806087493896 ], [ -80.916526794433594, -3.931806087493896 ], [ -80.916526794433594, -3.931528091430664 ], [ -80.916252136230469, -3.931528091430664 ], [ -80.916252136230469, -3.931250095367432 ], [ -80.915969848632812, -3.931250095367432 ], [ -80.915969848632812, -3.930972099304199 ], [ -80.915412902832031, -3.930972099304199 ], [ -80.915412902832031, -3.930694103240967 ], [ -80.915275573730355, -3.930694103240967 ], [ -80.915138244628906, -3.930694103240967 ], [ -80.915138244628906, -3.930416107177734 ], [ -80.914581298828068, -3.930416107177734 ], [ -80.914581298828068, -3.930138111114388 ], [ -80.914306640624943, -3.930138111114388 ], [ -80.914306640624943, -3.929860115051156 ], [ -80.914024353027287, -3.929862022399902 ], [ -80.914024353027287, -3.92958402633667 ], [ -80.913475036621094, -3.92958402633667 ], [ -80.913475036621094, -3.929306030273438 ], [ -80.913192749023438, -3.929306030273438 ], [ -80.913192749023438, -3.929028034210205 ], [ -80.912635803222656, -3.929028034210205 ], [ -80.912635803222656, -3.928750038146973 ], [ -80.912361145019531, -3.928750038146973 ], [ -80.912361145019531, -3.92847204208374 ], [ -80.91180419921875, -3.92847204208374 ], [ -80.91180419921875, -3.928194046020508 ], [ -80.911529541015568, -3.928194046020508 ], [ -80.911529541015568, -3.927916049957275 ], [ -80.911361694335881, -3.927916049957275 ], [ -80.910972595214787, -3.927916049957275 ], [ -80.910972595214787, -3.927742958068791 ], [ -80.910972595214787, -3.927638053894043 ], [ -80.910697937011605, -3.927639961242619 ], [ -80.910697937011605, -3.927361965179387 ], [ -80.910140991210938, -3.927361965179387 ], [ -80.910140991210938, -3.927083969116154 ], [ -80.909858703613281, -3.927083969116154 ], [ -80.909858703613281, -3.926805973052979 ], [ -80.909584045410156, -3.926805973052979 ], [ -80.909584045410156, -3.926527976989746 ], [ -80.909240722656193, -3.926527976989746 ], [ -80.909027099609375, -3.926527976989746 ], [ -80.909027099609375, -3.926249980926514 ], [ -80.90875244140625, -3.926249980926514 ], [ -80.90875244140625, -3.926063060760498 ], [ -80.90875244140625, -3.925971984863281 ], [ -80.908195495605412, -3.925971984863281 ], [ -80.908195495605412, -3.925693988800049 ], [ -80.907913208007756, -3.925693988800049 ], [ -80.907913208007756, -3.925415992736816 ], [ -80.907363891601449, -3.925415992736816 ], [ -80.907363891601449, -3.92513990402216 ], [ -80.907081604003906, -3.92513990402216 ], [ -80.907081604003906, -3.924861907958928 ], [ -80.906524658203125, -3.924861907958928 ], [ -80.906524658203125, -3.924583911895695 ], [ -80.90625, -3.924583911895695 ], [ -80.90625, -3.924305915832463 ], [ -80.905693054199219, -3.924305915832463 ], [ -80.905693054199219, -3.92402791976923 ], [ -80.905418395996037, -3.92402791976923 ], [ -80.905418395996037, -3.92389798164362 ], [ -80.905418395996037, -3.923749923705998 ], [ -80.905250549316349, -3.923749923705998 ], [ -80.904861450195256, -3.923749923705998 ], [ -80.904861450195256, -3.923470973968449 ], [ -80.904586791992131, -3.923470973968449 ], [ -80.904586791992131, -3.923192977905217 ], [ -80.904029846191406, -3.923192977905217 ], [ -80.904029846191406, -3.922918081283569 ], [ -80.90374755859375, -3.922918081283569 ], [ -80.90374755859375, -3.922640085220337 ], [ -80.9031982421875, -3.922640085220337 ], [ -80.903190612792969, -3.922362089157104 ], [ -80.902915954589844, -3.922362089157104 ], [ -80.902915954589844, -3.922082901000977 ], [ -80.902359008789062, -3.922082901000977 ], [ -80.902359008789062, -3.921804904937744 ], [ -80.901252746581974, -3.921804904937744 ], [ -80.901252746581974, -3.921526908874512 ], [ -80.900413513183594, -3.921526908874512 ], [ -80.900413513183594, -3.921248912811279 ], [ -80.899864196777344, -3.921248912811279 ], [ -80.899864196777344, -3.920974016189518 ], [ -80.899581909179688, -3.920970916747933 ], [ -80.899581909179688, -3.92069506645197 ], [ -80.899024963378906, -3.920692920684701 ], [ -80.899024963378906, -3.920417070388737 ], [ -80.898750305175724, -3.920417070388737 ], [ -80.898750305175724, -3.920139074325505 ], [ -80.897918701171761, -3.920139074325505 ], [ -80.897918701171761, -3.919861078262272 ], [ -80.897636413574105, -3.919861078262272 ], [ -80.897636413574105, -3.91958308219904 ], [ -80.897361755371094, -3.91958308219904 ], [ -80.897361755371094, -3.919305086135807 ], [ -80.896804809570312, -3.919305086135807 ], [ -80.896804809570312, -3.919027090072575 ], [ -80.896530151367188, -3.919027090072575 ], [ -80.896530151367188, -3.918869972228947 ], [ -80.896530151367188, -3.918749094009343 ], [ -80.896392822265511, -3.918749094009343 ], [ -80.896247863769531, -3.918749094009343 ], [ -80.896247863769531, -3.918626070022526 ], [ -80.896247863769531, -3.9184730052948 ], [ -80.895973205566406, -3.9184730052948 ], [ -80.895973205566406, -3.918195009231567 ], [ -80.895744323730469, -3.918195009231567 ], [ -80.895416259765568, -3.918195009231567 ], [ -80.895416259765568, -3.917917013168335 ], [ -80.895141601562443, -3.917917013168335 ], [ -80.895141601562443, -3.91773509979248 ], [ -80.895141601562443, -3.917639017104989 ], [ -80.894966125488168, -3.917639017104989 ], [ -80.894859313964787, -3.917639017104989 ], [ -80.894859313964787, -3.917361021041756 ], [ -80.894462585449162, -3.917361021041756 ], [ -80.894302368164062, -3.917361021041756 ], [ -80.894302368164062, -3.917083024978581 ], [ -80.894027709960938, -3.917083024978581 ], [ -80.894027709960938, -3.916805028915348 ], [ -80.893806457519474, -3.916805028915348 ], [ -80.893470764160156, -3.916805028915348 ], [ -80.893470764160156, -3.916527032852116 ], [ -80.893196105957031, -3.916527032852116 ], [ -80.893196105957031, -3.916249036788884 ], [ -80.892913818359375, -3.916249036788884 ], [ -80.892913818359375, -3.915972948074341 ], [ -80.892364501953068, -3.915972948074341 ], [ -80.892364501953068, -3.915694952011108 ], [ -80.892082214355412, -3.915694952011108 ], [ -80.892082214355412, -3.915416955947876 ], [ -80.891525268554631, -3.915416955947876 ], [ -80.891525268554631, -3.915138959884644 ], [ -80.891250610351562, -3.915138959884644 ], [ -80.891250610351562, -3.914860963821411 ], [ -80.890693664550781, -3.914860963821411 ], [ -80.890693664550781, -3.914582967758179 ], [ -80.890419006347656, -3.914582967758179 ], [ -80.890419006347656, -3.914304971694946 ], [ -80.889862060546875, -3.914304971694946 ], [ -80.889862060546875, -3.9140269756316 ], [ -80.889549255371094, -3.9140269756316 ], [ -80.889030456542912, -3.9140269756316 ], [ -80.889030456542912, -3.913908004760742 ], [ -80.889030456542912, -3.913748979568368 ], [ -80.888496398925781, -3.913748979568368 ], [ -80.887916564941406, -3.913748979568368 ], [ -80.887916564941406, -3.913470983505192 ], [ -80.887641906738281, -3.913472890853882 ], [ -80.887641906738281, -3.913326978683472 ], [ -80.887641906738281, -3.913194894790649 ], [ -80.887359619140625, -3.913194894790649 ], [ -80.887359619140625, -3.913094997406006 ], [ -80.887359619140625, -3.912638902664185 ], [ -80.8870849609375, -3.912638902664185 ], [ -80.8870849609375, -3.912360906600952 ], [ -80.886802673339844, -3.912360906600952 ], [ -80.886802673339844, -3.911804914474487 ], [ -80.886528015136719, -3.911804914474487 ], [ -80.886528015136719, -3.911526918411255 ], [ -80.886253356933537, -3.911526918411255 ], [ -80.886253356933537, -3.911251068115234 ], [ -80.885971069335881, -3.911251068115234 ], [ -80.885971069335881, -3.910973072052002 ], [ -80.885696411132756, -3.910973072052002 ], [ -80.885696411132756, -3.910695075988656 ], [ -80.885414123535099, -3.910695075988656 ], [ -80.885414123535099, -3.910592079162541 ], [ -80.885414123535099, -3.910417079925423 ], [ -80.885139465331918, -3.910417079925423 ], [ -80.885139465331918, -3.910060882568303 ], [ -80.885139465331918, -3.90985989570612 ], [ -80.885032653808537, -3.90985989570612 ], [ -80.884864807128906, -3.90985989570612 ], [ -80.884864807128906, -3.909581899642887 ], [ -80.884307861328125, -3.909581899642887 ], [ -80.884307861328125, -3.90930700302124 ], [ -80.884025573730469, -3.90930700302124 ], [ -80.884025573730469, -3.909029006958008 ], [ -80.883750915527344, -3.909029006958008 ], [ -80.883750915527344, -3.908751010894775 ], [ -80.883468627929688, -3.908751010894775 ], [ -80.883468627929688, -3.908472061157227 ], [ -80.883193969726562, -3.908472061157227 ], [ -80.883193969726562, -3.908194065093994 ], [ -80.882919311523381, -3.908194065093994 ], [ -80.882919311523381, -3.907638072967529 ], [ -80.882637023925724, -3.907638072967529 ], [ -80.882637023925724, -3.907360076904297 ], [ -80.882362365722599, -3.907360076904297 ], [ -80.882362365722599, -3.907082080841064 ], [ -80.882080078124943, -3.907082080841064 ], [ -80.882080078124943, -3.906805992126408 ], [ -80.881805419921761, -3.906805992126408 ], [ -80.881805419921761, -3.906527996063176 ], [ -80.88153076171875, -3.906527996063176 ], [ -80.88153076171875, -3.90625 ], [ -80.881248474121094, -3.90625 ], [ -80.881248474121094, -3.905972003936711 ], [ -80.880973815917969, -3.905972003936711 ], [ -80.880973815917969, -3.905694007873535 ], [ -80.880691528320312, -3.905694007873535 ], [ -80.880691528320312, -3.905416011810303 ], [ -80.880416870117188, -3.905416011810303 ], [ -80.880416870117188, -3.90513801574707 ], [ -80.880142211914062, -3.90513801574707 ], [ -80.880142211914062, -3.904860019683838 ], [ -80.879859924316349, -3.904861927032357 ], [ -80.879859924316349, -3.904583930969181 ], [ -80.879585266113224, -3.904583930969181 ], [ -80.879585266113224, -3.904305934905949 ], [ -80.879302978515568, -3.904305934905949 ], [ -80.879302978515568, -3.904027938842717 ], [ -80.879028320312443, -3.904027938842717 ], [ -80.879028320312443, -3.903749942779484 ], [ -80.878753662109261, -3.903749942779484 ], [ -80.878753662109261, -3.903471946716252 ], [ -80.878471374511719, -3.903471946716252 ], [ -80.878471374511719, -3.903193950653019 ], [ -80.878196716308594, -3.903193950653019 ], [ -80.878196716308594, -3.902915954589787 ], [ -80.877639770507812, -3.902915954589787 ], [ -80.877639770507812, -3.902637958526554 ], [ -80.877281188964844, -3.902637958526554 ], [ -80.877082824707031, -3.902637958526554 ], [ -80.877082824707031, -3.902467012405396 ], [ -80.877082824707031, -3.902359962463322 ], [ -80.876960754394531, -3.902359962463322 ], [ -80.876525878906193, -3.902362108230591 ], [ -80.876525878906193, -3.902084112167358 ], [ -80.875968933105412, -3.902084112167358 ], [ -80.875968933105412, -3.901806116104126 ], [ -80.875694274902287, -3.901806116104126 ], [ -80.875694274902287, -3.901527881622201 ], [ -80.875419616699219, -3.901527881622201 ], [ -80.875419616699219, -3.901249885558968 ], [ -80.875137329101562, -3.901249885558968 ], [ -80.875137329101562, -3.900754928588867 ], [ -80.875137329101562, -3.900415897369328 ], [ -80.874755859375, -3.900415897369328 ], [ -80.874580383300781, -3.900415897369328 ], [ -80.874580383300781, -3.900263071060124 ], [ -80.874580383300781, -3.900137901306096 ], [ -80.874435424804631, -3.900137901306096 ], [ -80.872642517089787, -3.900137901306096 ], [ -80.872642517089787, -3.899859905242863 ], [ -80.872085571289062, -3.899862051010075 ], [ -80.872085571289062, -3.899584054946843 ], [ -80.871803283691406, -3.899584054946843 ], [ -80.871803283691406, -3.89930605888361 ], [ -80.871528625488281, -3.89930605888361 ], [ -80.871528625488281, -3.899039030075016 ], [ -80.871528625488281, -3.898750066757202 ], [ -80.871246337890625, -3.898750066757202 ], [ -80.871246337890625, -3.89847207069397 ], [ -80.86962890625, -3.89847207069397 ], [ -80.867637634277344, -3.89847207069397 ], [ -80.867637634277344, -3.898194074630737 ], [ -80.867362976074219, -3.898194074630737 ], [ -80.867362976074219, -3.89847207069397 ], [ -80.867080688476506, -3.89847207069397 ], [ -80.867080688476506, -3.898194074630737 ], [ -80.866249084472599, -3.898194074630737 ], [ -80.866249084472599, -3.897917985916024 ], [ -80.865135192871094, -3.897916078567505 ], [ -80.865135192871094, -3.897639989852848 ], [ -80.864860534667969, -3.897639989852848 ], [ -80.864860534667969, -3.897361993789616 ], [ -80.864585876464844, -3.897361993789616 ], [ -80.864585876464844, -3.897083997726384 ], [ -80.864303588867188, -3.897083997726384 ], [ -80.864303588867188, -3.896806001663151 ], [ -80.863861083984318, -3.896806001663151 ], [ -80.862358093261719, -3.896806001663151 ], [ -80.862358093261719, -3.896528005599919 ], [ -80.862098693847656, -3.896528005599919 ], [ -80.860137939453068, -3.896528005599919 ], [ -80.860137939453068, -3.896249055862313 ], [ -80.859306335449219, -3.896249055862313 ], [ -80.859306335449219, -3.895971059799137 ], [ -80.858474731445312, -3.895971059799137 ], [ -80.858474731445312, -3.895695924758911 ], [ -80.858192443847656, -3.895695924758911 ], [ -80.858192443847656, -3.895417928695679 ], [ -80.857635498046875, -3.895417928695679 ], [ -80.857635498046875, -3.895139932632446 ], [ -80.857360839843693, -3.895139932632446 ], [ -80.857360839843693, -3.894860982894897 ], [ -80.856803894042912, -3.894860982894897 ], [ -80.856803894042912, -3.894614934921265 ], [ -80.85652923583973, -3.894582986831665 ], [ -80.85652923583973, -3.894304990768433 ], [ -80.856109619140625, -3.894304990768433 ], [ -80.855972290039062, -3.894304990768433 ], [ -80.855972290039062, -3.8940269947052 ], [ -80.855644226074162, -3.8940269947052 ], [ -80.855415344238281, -3.8940269947052 ], [ -80.855415344238281, -3.893883943557739 ], [ -80.855415344238281, -3.893748998641968 ], [ -80.855201721191406, -3.893748998641968 ], [ -80.854583740234375, -3.893748998641968 ], [ -80.854583740234375, -3.893471002578735 ], [ -80.854309082031193, -3.893471002578735 ], [ -80.854309082031193, -3.892826080322209 ], [ -80.854309082031193, -3.892360925674438 ], [ -80.854026794433537, -3.892360925674438 ], [ -80.854026794433537, -3.892082929611206 ], [ -80.853752136230412, -3.892082929611206 ], [ -80.853752136230412, -3.891804933547974 ], [ -80.853469848632756, -3.891804933547974 ], [ -80.853469848632756, -3.891248941421509 ], [ -80.853195190429574, -3.891248941421509 ], [ -80.853195190429574, -3.890970945358276 ], [ -80.852912902832031, -3.890973091125488 ], [ -80.852912902832031, -3.890695095062256 ], [ -80.852638244628906, -3.890695095062256 ], [ -80.852638244628906, -3.890417098999023 ], [ -80.852363586425781, -3.890417098999023 ], [ -80.852363586425781, -3.890139102935791 ], [ -80.852081298828125, -3.890139102935791 ], [ -80.852081298828125, -3.889583110809212 ], [ -80.851806640625, -3.889583110809212 ], [ -80.851806640625, -3.88930511474598 ], [ -80.851524353027344, -3.88930511474598 ], [ -80.851524353027344, -3.889027118682804 ], [ -80.851249694824162, -3.889027118682804 ], [ -80.851249694824162, -3.888473033905029 ], [ -80.850975036621037, -3.888473033905029 ], [ -80.850975036621037, -3.888195037841797 ], [ -80.850692749023381, -3.888195037841797 ], [ -80.850692749023381, -3.887917041778564 ], [ -80.850418090820256, -3.887917041778564 ], [ -80.850418090820256, -3.887639045715332 ], [ -80.850135803222599, -3.887639045715332 ], [ -80.850135803222599, -3.8873610496521 ], [ -80.849861145019531, -3.8873610496521 ], [ -80.849861145019531, -3.887083053588867 ], [ -80.849586486816406, -3.887083053588867 ], [ -80.849586486816406, -3.886805057525635 ], [ -80.84930419921875, -3.886805057525635 ], [ -80.84930419921875, -3.886527061462402 ], [ -80.849029541015625, -3.886527061462402 ], [ -80.849029541015625, -3.886250972747803 ], [ -80.848747253417969, -3.886250972747803 ], [ -80.848747253417969, -3.88597297668457 ], [ -80.848472595214844, -3.88597297668457 ], [ -80.848472595214844, -3.885694980621338 ], [ -80.848197937011662, -3.885694980621338 ], [ -80.848197937011662, -3.885416984558105 ], [ -80.847915649414006, -3.885416984558105 ], [ -80.847915649414006, -3.885138988494873 ], [ -80.847358703613224, -3.885138988494873 ], [ -80.847358703613224, -3.884860992431641 ], [ -80.847084045410099, -3.884860992431641 ], [ -80.847084045410099, -3.884582996368408 ], [ -80.846611022949105, -3.884582996368408 ], [ -80.846527099609375, -3.884582996368408 ], [ -80.846527099609375, -3.884305000305176 ], [ -80.84625244140625, -3.884305000305176 ], [ -80.84625244140625, -3.884028911590519 ], [ -80.845970153808594, -3.884028911590519 ], [ -80.845970153808594, -3.883750915527287 ], [ -80.845695495605469, -3.883750915527287 ], [ -80.845695495605469, -3.883472919464054 ], [ -80.845413208007812, -3.883472919464054 ], [ -80.845413208007812, -3.883194923400822 ], [ -80.845138549804688, -3.883194923400822 ], [ -80.845138549804688, -3.88291692733759 ], [ -80.844429016113281, -3.88291692733759 ], [ -80.844306945800724, -3.88291692733759 ], [ -80.844306945800724, -3.882637977600041 ], [ -80.844093322753906, -3.882637977600041 ], [ -80.844017028808537, -3.882637977600041 ], [ -80.843475341796875, -3.882637977600041 ], [ -80.843475341796875, -3.882359981536808 ], [ -80.842918395996094, -3.882359981536808 ], [ -80.842918395996094, -3.882081985473576 ], [ -80.842361450195312, -3.882081985473576 ], [ -80.842361450195312, -3.881807088851929 ], [ -80.842086791992188, -3.881807088851929 ], [ -80.842086791992188, -3.881628990173283 ], [ -80.842086791992188, -3.881529092788696 ], [ -80.841896057128906, -3.881529092788696 ], [ -80.841529846191349, -3.881529092788696 ], [ -80.841529846191349, -3.881336927413884 ], [ -80.841529846191349, -3.881249904632568 ], [ -80.841361999511662, -3.881249904632568 ], [ -80.84041595458973, -3.881249904632568 ], [ -80.84041595458973, -3.880971908569336 ], [ -80.839859008789062, -3.880971908569336 ], [ -80.839859008789062, -3.880693912506104 ], [ -80.839302062988281, -3.880693912506104 ], [ -80.839302062988281, -3.880415916442757 ], [ -80.839027404785156, -3.880415916442757 ], [ -80.839027404785156, -3.880137920379525 ], [ -80.838470458984318, -3.880137920379525 ], [ -80.838470458984318, -3.879859924316349 ], [ -80.838195800781193, -3.879859924316349 ], [ -80.838195800781193, -3.879584074020329 ], [ -80.837913513183537, -3.879584074020329 ], [ -80.837913513183537, -3.879306077957096 ], [ -80.837638854980412, -3.879306077957096 ], [ -80.837638854980412, -3.879028081893864 ], [ -80.83736419677723, -3.879028081893864 ], [ -80.83736419677723, -3.878750085830632 ], [ -80.837081909179688, -3.878750085830632 ], [ -80.837081909179688, -3.878472089767399 ], [ -80.836807250976562, -3.878472089767399 ], [ -80.836807250976562, -3.878180027008 ], [ -80.836807250976562, -3.877916097640934 ], [ -80.836524963378906, -3.877916097640934 ], [ -80.836524963378906, -3.877638101577759 ], [ -80.836250305175781, -3.877638101577759 ], [ -80.836250305175781, -3.877360105514526 ], [ -80.835975646972656, -3.877360105514526 ], [ -80.835975646972656, -3.877084016799813 ], [ -80.835693359375, -3.877084016799813 ], [ -80.835693359375, -3.876528024673405 ], [ -80.835418701171818, -3.876528024673405 ], [ -80.835418701171818, -3.876250028610173 ], [ -80.835136413574162, -3.876250028610173 ], [ -80.835136413574162, -3.87597203254694 ], [ -80.834861755371037, -3.87597203254694 ], [ -80.834861755371037, -3.875416040420475 ], [ -80.834587097167912, -3.875416040420475 ], [ -80.834587097167912, -3.874860048294011 ], [ -80.834304809570256, -3.8748619556427 ], [ -80.834304809570256, -3.874583959579468 ], [ -80.834030151367188, -3.874583959579468 ], [ -80.834030151367188, -3.874027967453003 ], [ -80.833747863769531, -3.874027967453003 ], [ -80.833747863769531, -3.873471975326424 ], [ -80.833473205566406, -3.873471975326424 ], [ -80.833473205566406, -3.872915983200016 ], [ -80.83319091796875, -3.872915983200016 ], [ -80.83319091796875, -3.872083902359009 ], [ -80.832916259765625, -3.872083902359009 ], [ -80.832916259765625, -3.871249914169312 ], [ -80.8326416015625, -3.871249914169312 ], [ -80.8326416015625, -3.870418071746826 ], [ -80.832359313964844, -3.870418071746826 ], [ -80.832359313964844, -3.869584083557072 ], [ -80.832084655761662, -3.869584083557072 ], [ -80.832084655761662, -3.869026899337712 ], [ -80.830970764160043, -3.869026899337712 ], [ -80.830970764160043, -3.868748903274479 ], [ -80.830696105957031, -3.868748903274479 ], [ -80.830696105957031, -3.867918014526367 ], [ -80.830970764160043, -3.867918014526367 ], [ -80.830970764160043, -3.867639064788818 ], [ -80.831253051757756, -3.867639064788818 ], [ -80.831253051757756, -3.867361068725586 ], [ -80.831802368164006, -3.867361068725586 ], [ -80.831802368164006, -3.86402702331543 ], [ -80.832084655761662, -3.86402702331543 ], [ -80.832084655761662, -3.857639074325562 ], [ -80.831802368164006, -3.857639074325562 ], [ -80.831802368164006, -3.853471994400024 ], [ -80.832084655761662, -3.853471994400024 ], [ -80.832084655761662, -3.851249933242798 ], [ -80.831802368164006, -3.851249933242798 ], [ -80.831802368164006, -3.850415945053101 ], [ -80.831527709960881, -3.850415945053101 ], [ -80.831527709960881, -3.849859952926636 ], [ -80.831253051757756, -3.849859952926636 ], [ -80.831253051757756, -3.849306106567383 ], [ -80.830970764160043, -3.849306106567383 ], [ -80.830970764160043, -3.848193883895874 ], [ -80.830696105957031, -3.848193883895874 ], [ -80.830696105957031, -3.846806049346924 ], [ -80.830413818359375, -3.846806049346924 ], [ -80.830413818359375, -3.845972061157227 ], [ -80.83013916015625, -3.845972061157227 ], [ -80.83013916015625, -3.845139980316162 ], [ -80.829978942871094, -3.845139980316162 ], [ -80.829864501953125, -3.845139980316162 ], [ -80.829864501953125, -3.844305992126465 ], [ -80.829582214355469, -3.844305992126465 ], [ -80.829582214355469, -3.84375 ], [ -80.829025268554688, -3.84375 ], [ -80.829025268554688, -3.843472003936768 ], [ -80.828750610351506, -3.843472003936768 ], [ -80.828750610351506, -3.843193054199219 ], [ -80.828193664550724, -3.843193054199219 ], [ -80.828193664550724, -3.842917919158879 ], [ -80.826805114746094, -3.842917919158879 ], [ -80.826805114746094, -3.843193054199219 ], [ -80.826248168945312, -3.843195915222111 ], [ -80.826248168945312, -3.842361927032414 ], [ -80.826805114746094, -3.842361927032414 ], [ -80.826805114746094, -3.842083930969238 ], [ -80.827636718749886, -3.842083930969238 ], [ -80.827636718749886, -3.841804981231633 ], [ -80.829025268554688, -3.841804981231633 ], [ -80.829025268554688, -3.839333057403508 ], [ -80.829025268554688, -3.837639093398991 ], [ -80.828750610351506, -3.837639093398991 ], [ -80.828750610351506, -3.836805105209351 ], [ -80.828475952148381, -3.836805105209351 ], [ -80.828475952148381, -3.836249113082886 ], [ -80.828193664550724, -3.836249113082886 ], [ -80.828193664550724, -3.835695028304997 ], [ -80.827919006347543, -3.835695028304997 ], [ -80.827919006347543, -3.835139036178532 ], [ -80.827636718749886, -3.835139036178532 ], [ -80.827636718749886, -3.834583044052067 ], [ -80.827362060546875, -3.834583044052067 ], [ -80.827362060546875, -3.834027051925602 ], [ -80.827079772949219, -3.834027051925602 ], [ -80.827079772949219, -3.833194971084595 ], [ -80.826805114746094, -3.833194971084595 ], [ -80.826805114746094, -3.832638978958016 ], [ -80.826530456542969, -3.832638978958016 ], [ -80.826530456542969, -3.831804990768376 ], [ -80.826248168945312, -3.831804990768376 ], [ -80.826248168945312, -3.830972909927368 ], [ -80.825973510742188, -3.830972909927368 ], [ -80.825973510742188, -3.830138921737671 ], [ -80.825691223144474, -3.830138921737671 ], [ -80.825691223144474, -3.829307079315072 ], [ -80.825416564941349, -3.829307079315072 ], [ -80.825416564941349, -3.828751087188664 ], [ -80.825141906738224, -3.828751087188664 ], [ -80.825141906738224, -3.827915906906128 ], [ -80.824859619140568, -3.827915906906128 ], [ -80.824859619140568, -3.827081918716431 ], [ -80.824584960937386, -3.827085018157959 ], [ -80.824584960937386, -3.826528072357178 ], [ -80.824302673339844, -3.826528072357178 ], [ -80.824302673339844, -3.825972080230713 ], [ -80.824028015136719, -3.825972080230713 ], [ -80.824028015136719, -3.82569408416748 ], [ -80.823753356933594, -3.82569408416748 ], [ -80.823753356933594, -3.825416088104248 ], [ -80.823471069335938, -3.825416088104248 ], [ -80.823471069335938, -3.824860095977783 ], [ -80.823196411132812, -3.824860095977783 ], [ -80.823196411132812, -3.824584007263184 ], [ -80.822914123535156, -3.824584007263184 ], [ -80.822914123535156, -3.823472023010254 ], [ -80.822639465331974, -3.823472023010254 ], [ -80.822639465331974, -3.823194026947021 ], [ -80.822364807128849, -3.823194026947021 ], [ -80.822364807128849, -3.822638034820557 ], [ -80.822082519531193, -3.822638034820557 ], [ -80.822082519531193, -3.822083950042668 ], [ -80.821807861328068, -3.822083950042668 ], [ -80.821807861328068, -3.821527957916203 ], [ -80.821525573730412, -3.821527957916203 ], [ -80.821525573730412, -3.820693969726562 ], [ -80.821250915527344, -3.820693969726562 ], [ -80.821250915527344, -3.819583892822209 ], [ -80.820693969726562, -3.819583892822209 ], [ -80.820693969726562, -3.819861888885441 ], [ -80.820137023925781, -3.819859981536865 ], [ -80.820137023925781, -3.820431947708016 ], [ -80.820137023925781, -3.820693969726562 ], [ -80.819862365722656, -3.820693969726562 ], [ -80.819862365722656, -3.820971965789795 ], [ -80.818473815917912, -3.820971965789795 ], [ -80.818473815917912, -3.820693969726562 ], [ -80.817642211914062, -3.820693969726562 ], [ -80.817642211914062, -3.820971965789795 ], [ -80.817085266113281, -3.820971965789795 ], [ -80.817085266113281, -3.821249961852971 ], [ -80.816253662109318, -3.821249961852971 ], [ -80.816253662109318, -3.820971965789795 ], [ -80.815971374511662, -3.820971965789795 ], [ -80.815971374511662, -3.82041597366333 ], [ -80.815696716308537, -3.82041597366333 ], [ -80.815696716308537, -3.819583892822209 ], [ -80.815414428710881, -3.819583892822209 ], [ -80.815414428710881, -3.819027900695744 ], [ -80.815139770507699, -3.819027900695744 ], [ -80.815139770507699, -3.817637920379582 ], [ -80.814857482910043, -3.817637920379582 ], [ -80.814857482910043, -3.817362070083618 ], [ -80.814582824707031, -3.817362070083618 ], [ -80.814582824707031, -3.816528081893921 ], [ -80.814308166503906, -3.816528081893921 ], [ -80.814308166503906, -3.8156960010528 ], [ -80.81402587890625, -3.8156960010528 ], [ -80.81402587890625, -3.815140008926335 ], [ -80.813751220703125, -3.815140008926335 ], [ -80.813751220703125, -3.814858913421517 ], [ -80.813468933105469, -3.814862012863102 ], [ -80.813468933105469, -3.814305067062321 ], [ -80.813194274902344, -3.814305067062321 ], [ -80.813194274902344, -3.812916994094849 ], [ -80.812919616699162, -3.812916994094849 ], [ -80.812919616699162, -3.812361001968384 ], [ -80.812637329101506, -3.812361001968384 ], [ -80.812637329101506, -3.811805009841805 ], [ -80.812362670898381, -3.811805009841805 ], [ -80.812362670898381, -3.81041693687439 ], [ -80.812080383300724, -3.81041693687439 ], [ -80.812080383300724, -3.809860944747925 ], [ -80.811805725097543, -3.809860944747925 ], [ -80.811805725097543, -3.80930495262146 ], [ -80.811531066894531, -3.80930495262146 ], [ -80.811531066894531, -3.808470964431763 ], [ -80.811248779296875, -3.808470964431763 ], [ -80.811248779296875, -3.807638883590698 ], [ -80.81097412109375, -3.807638883590698 ], [ -80.81097412109375, -3.807360887527466 ], [ -80.810691833496094, -3.807360887527466 ], [ -80.810691833496094, -3.806248903274536 ], [ -80.810142517089844, -3.806251049041748 ], [ -80.810142517089844, -3.805417060852051 ], [ -80.810417175292969, -3.805417060852051 ], [ -80.810417175292969, -3.805695056915283 ], [ -80.812080383300724, -3.805695056915283 ], [ -80.812080383300724, -3.805417060852051 ], [ -80.812362670898381, -3.805417060852051 ], [ -80.812362670898381, -3.805139064788818 ], [ -80.812637329101506, -3.805139064788818 ], [ -80.812637329101506, -3.804861068725472 ], [ -80.812919616699162, -3.804861068725472 ], [ -80.812919616699162, -3.80458307266224 ], [ -80.813751220703125, -3.80458307266224 ], [ -80.813751220703125, -3.804305076599064 ], [ -80.814582824707031, -3.804305076599064 ], [ -80.814582824707031, -3.804028987884521 ], [ -80.814376831054574, -3.804028987884521 ], [ -80.81402587890625, -3.804028987884521 ], [ -80.81402587890625, -3.803158044815063 ], [ -80.81402587890625, -3.802639007568359 ], [ -80.813751220703125, -3.802639007568359 ], [ -80.813751220703125, -3.802479028701669 ], [ -80.813751220703125, -3.802082061767578 ], [ -80.813591003417912, -3.802082061767578 ], [ -80.813468933105469, -3.802082061767578 ], [ -80.813468933105469, -3.801804065704346 ], [ -80.813194274902344, -3.801806926727238 ], [ -80.813194274902344, -3.80125093460083 ], [ -80.812919616699162, -3.80125093460083 ], [ -80.812919616699162, -3.800700902938843 ], [ -80.812919616699162, -3.80041599273676 ], [ -80.812774658203125, -3.80041599273676 ], [ -80.812637329101506, -3.80041599273676 ], [ -80.812637329101506, -3.800158977508545 ], [ -80.812637329101506, -3.799583911895752 ], [ -80.812362670898381, -3.799583911895752 ], [ -80.812362670898381, -3.799305915832406 ], [ -80.81219482421875, -3.799305915832406 ], [ -80.812080383300724, -3.799305915832406 ], [ -80.812080383300724, -3.799089908599854 ], [ -80.812080383300724, -3.798749923705998 ], [ -80.811920166015625, -3.798749923705998 ], [ -80.811805725097543, -3.798749923705998 ], [ -80.811805725097543, -3.798471927642765 ], [ -80.811531066894531, -3.798471927642765 ], [ -80.811531066894531, -3.798193931579533 ], [ -80.811248779296875, -3.798193931579533 ], [ -80.811248779296875, -3.797915935516301 ], [ -80.81097412109375, -3.797915935516301 ], [ -80.81097412109375, -3.797637939453068 ], [ -80.810691833496094, -3.797637939453068 ], [ -80.810691833496094, -3.797359943389836 ], [ -80.810417175292969, -3.797359943389836 ], [ -80.810417175292969, -3.797084093093815 ], [ -80.810142517089844, -3.797084093093815 ], [ -80.810142517089844, -3.796806097030583 ], [ -80.809860229492131, -3.796806097030583 ], [ -80.809860229492131, -3.796528100967407 ], [ -80.809585571289006, -3.796528100967407 ], [ -80.809585571289006, -3.796250104904175 ], [ -80.809303283691349, -3.796250104904175 ], [ -80.809303283691349, -3.795972108840942 ], [ -80.808746337890568, -3.795972108840942 ], [ -80.808746337890568, -3.79569411277771 ], [ -80.8084716796875, -3.79569411277771 ], [ -80.8084716796875, -3.795416116714478 ], [ -80.808197021484375, -3.795416116714478 ], [ -80.808197021484375, -3.795137882232609 ], [ -80.807914733886719, -3.795137882232609 ], [ -80.807914733886719, -3.794584035873356 ], [ -80.807640075683594, -3.794584035873356 ], [ -80.807640075683594, -3.794306039810124 ], [ -80.807357788085938, -3.794306039810124 ], [ -80.807357788085938, -3.793750047683659 ], [ -80.807083129882812, -3.793750047683659 ], [ -80.807083129882812, -3.79208397865284 ], [ -80.806808471679631, -3.79208397865284 ], [ -80.806808471679631, -3.791805982589665 ], [ -80.806251525878849, -3.791805982589665 ], [ -80.806251525878849, -3.791527986526432 ], [ -80.805969238281193, -3.791527986526432 ], [ -80.805969238281193, -3.7912499904632 ], [ -80.805419921875, -3.7912499904632 ], [ -80.805419921875, -3.790971994399968 ], [ -80.805137634277344, -3.790971994399968 ], [ -80.805137634277344, -3.790693998336735 ], [ -80.804862976074219, -3.790693998336735 ], [ -80.804862976074219, -3.790417909622192 ], [ -80.804306030273438, -3.790417909622192 ], [ -80.804306030273438, -3.789861917495728 ], [ -80.804031372070312, -3.789861917495728 ], [ -80.804031372070312, -3.78902792930603 ], [ -80.803749084472656, -3.78902792930603 ], [ -80.803749084472656, -3.788748979568481 ], [ -80.803192138671818, -3.788748979568481 ], [ -80.803192138671818, -3.788192987442017 ], [ -80.802917480468693, -3.788196086883488 ], [ -80.802917480468693, -3.787640094757023 ], [ -80.802635192871037, -3.787640094757023 ], [ -80.802635192871037, -3.787360906600952 ], [ -80.802917480468693, -3.787360906600952 ], [ -80.802917480468693, -3.78708291053772 ], [ -80.802635192871037, -3.78708291053772 ], [ -80.802635192871037, -3.786248922348022 ], [ -80.802360534667855, -3.786248922348022 ], [ -80.802360534667855, -3.785973072052002 ], [ -80.802085876464844, -3.78597092628479 ], [ -80.802085876464844, -3.785139083862305 ], [ -80.801803588867188, -3.785139083862305 ], [ -80.801803588867188, -3.783195018768311 ], [ -80.802360534667855, -3.783195018768311 ], [ -80.802360534667855, -3.782639026641846 ], [ -80.802635192871037, -3.782639026641846 ], [ -80.802635192871037, -3.782361030578613 ], [ -80.802917480468693, -3.782361030578613 ], [ -80.802917480468693, -3.782083034515381 ], [ -80.803192138671818, -3.782083034515381 ], [ -80.803192138671818, -3.781527042388916 ], [ -80.803474426269474, -3.781527042388916 ], [ -80.803474426269474, -3.780416965484619 ], [ -80.803192138671818, -3.780416965484619 ], [ -80.803192138671818, -3.779582977294922 ], [ -80.802917480468693, -3.779582977294922 ], [ -80.802917480468693, -3.779028892517033 ], [ -80.802635192871037, -3.779028892517033 ], [ -80.802635192871037, -3.778470993041992 ], [ -80.802360534667855, -3.778472900390568 ], [ -80.802360534667855, -3.777916908264103 ], [ -80.802085876464844, -3.777916908264103 ], [ -80.802085876464844, -3.777360916137638 ], [ -80.801803588867188, -3.777360916137638 ], [ -80.801803588867188, -3.77680492401123 ], [ -80.801528930664062, -3.77680492401123 ], [ -80.801528930664062, -3.775973081588745 ], [ -80.801246643066406, -3.775973081588745 ], [ -80.801246643066406, -3.775695085525513 ], [ -80.800971984863281, -3.775695085525513 ], [ -80.800971984863281, -3.775137901306152 ], [ -80.8004150390625, -3.775137901306152 ], [ -80.8004150390625, -3.77485990524292 ], [ -80.800140380859318, -3.77485990524292 ], [ -80.800140380859318, -3.773472070693913 ], [ -80.799858093261662, -3.773472070693913 ], [ -80.799858093261662, -3.772916078567448 ], [ -80.799583435058537, -3.772916078567448 ], [ -80.799583435058537, -3.772218942642212 ], [ -80.799583435058537, -3.772082090377751 ], [ -80.799308776855355, -3.772082090377751 ], [ -80.799308776855355, -3.771825075149536 ], [ -80.799308776855355, -3.771250009536629 ], [ -80.799026489257699, -3.771250009536629 ], [ -80.799026489257699, -3.770694017410221 ], [ -80.798751831054688, -3.770694017410221 ], [ -80.798751831054688, -3.770416021346989 ], [ -80.798469543457031, -3.770416021346989 ], [ -80.798469543457031, -3.769861936569214 ], [ -80.798194885253906, -3.769861936569214 ], [ -80.798194885253906, -3.769305944442749 ], [ -80.798088073730469, -3.769305944442749 ], [ -80.797920227050781, -3.769305944442749 ], [ -80.797920227050781, -3.769027948379517 ], [ -80.797637939453125, -3.769027948379517 ], [ -80.797637939453125, -3.768193960189819 ], [ -80.79736328125, -3.768193960189819 ], [ -80.79736328125, -3.767359972 ], [ -80.797080993652287, -3.767359972 ], [ -80.797080993652287, -3.766527891159058 ], [ -80.796806335449162, -3.766527891159058 ], [ -80.796806335449162, -3.765415906906128 ], [ -80.796524047851506, -3.765415906906128 ], [ -80.796524047851506, -3.764584064483643 ], [ -80.796249389648381, -3.764584064483643 ], [ -80.796249389648381, -3.764028072357064 ], [ -80.795974731445199, -3.764028072357064 ], [ -80.795974731445199, -3.763194084167424 ], [ -80.795692443847656, -3.763194084167424 ], [ -80.795692443847656, -3.762660026550293 ], [ -80.795692443847656, -3.762362003326416 ], [ -80.795524597167969, -3.762362003326416 ], [ -80.795417785644531, -3.762362003326416 ], [ -80.795417785644531, -3.762181997299194 ], [ -80.795417785644531, -3.761806011199951 ], [ -80.795135498046875, -3.761806011199951 ], [ -80.795135498046875, -3.761687040328923 ], [ -80.795135498046875, -3.760971069335938 ], [ -80.79486083984375, -3.760973930358887 ], [ -80.79486083984375, -3.760138988494816 ], [ -80.794586181640625, -3.760138988494816 ], [ -80.794586181640625, -3.759582996368351 ], [ -80.794303894042969, -3.759582996368351 ], [ -80.794303894042969, -3.75927996635437 ], [ -80.794303894042969, -3.759027004241943 ], [ -80.794082641601562, -3.759027004241943 ], [ -80.794029235839787, -3.758749008178711 ], [ -80.793746948242131, -3.758749008178711 ], [ -80.793746948242131, -3.75863790512085 ], [ -80.793746948242131, -3.758471012115479 ], [ -80.793601989746094, -3.758471012115479 ], [ -80.793472290039006, -3.758471012115479 ], [ -80.793472290039006, -3.758321046829167 ], [ -80.793472290039006, -3.75791692733759 ], [ -80.793197631835881, -3.75791692733759 ], [ -80.793197631835881, -3.757638931274357 ], [ -80.792884826660099, -3.757638931274357 ], [ -80.791252136230469, -3.757638931274357 ], [ -80.791252136230469, -3.75680494308466 ], [ -80.790969848632812, -3.75680494308466 ], [ -80.790969848632812, -3.755289077758789 ], [ -80.790969848632812, -3.755139112472534 ], [ -80.790695190429631, -3.755139112472534 ], [ -80.790695190429631, -3.754755973815918 ], [ -80.790695190429631, -3.754304885864201 ], [ -80.790489196777344, -3.754304885864201 ], [ -80.790412902831974, -3.754304885864201 ], [ -80.790412902831974, -3.754026889800969 ], [ -80.790138244628849, -3.754026889800969 ], [ -80.790138244628849, -3.753674030303898 ], [ -80.790138244628849, -3.753473043441716 ], [ -80.789863586425724, -3.753473043441716 ], [ -80.789863586425724, -3.753195047378483 ], [ -80.789581298828011, -3.753195047378483 ], [ -80.789581298828011, -3.752639055252018 ], [ -80.789306640625, -3.752639055252018 ], [ -80.789306640625, -3.75208306312561 ], [ -80.789024353027344, -3.75208306312561 ], [ -80.789024353027344, -3.751528978347665 ], [ -80.788749694824219, -3.751528978347665 ], [ -80.788749694824219, -3.750972986221257 ], [ -80.788475036621094, -3.750972986221257 ], [ -80.788475036621094, -3.750138998031559 ], [ -80.788192749023438, -3.750138998031559 ], [ -80.788192749023438, -3.749583005905095 ], [ -80.787918090820312, -3.749583005905095 ], [ -80.787918090820312, -3.749304056167546 ], [ -80.787635803222656, -3.749304056167546 ], [ -80.787635803222656, -3.749028921127319 ], [ -80.787361145019474, -3.749028921127319 ], [ -80.787361145019474, -3.748750925064087 ], [ -80.787086486816349, -3.748750925064087 ], [ -80.787086486816349, -3.748472929000854 ], [ -80.786804199218693, -3.748472929000854 ], [ -80.786804199218693, -3.748194932937508 ], [ -80.786529541015511, -3.748194932937508 ], [ -80.786529541015511, -3.747915983200073 ], [ -80.786247253417855, -3.747915983200073 ], [ -80.786247253417855, -3.747637987136841 ], [ -80.785972595214844, -3.747637987136841 ], [ -80.785972595214844, -3.747481107711735 ], [ -80.785972595214844, -3.747359991073608 ], [ -80.785804748535156, -3.747359991073608 ], [ -80.785697937011719, -3.747359991073608 ], [ -80.785697937011719, -3.747081995010376 ], [ -80.785400390625, -3.747081995010376 ], [ -80.785140991210938, -3.747081995010376 ], [ -80.785140991210938, -3.746807098388615 ], [ -80.785003662109261, -3.746807098388615 ], [ -80.784858703613281, -3.746807098388615 ], [ -80.784858703613281, -3.746704101562443 ], [ -80.784858703613281, -3.746527910232544 ], [ -80.784606933593693, -3.746527910232544 ], [ -80.784584045410156, -3.746249914169312 ], [ -80.784301757812443, -3.746249914169312 ], [ -80.784301757812443, -3.745971918106079 ], [ -80.784027099609318, -3.745971918106079 ], [ -80.784027099609318, -3.745693922042847 ], [ -80.783752441406193, -3.745693922042847 ], [ -80.783752441406193, -3.745415925979614 ], [ -80.783470153808537, -3.745415925979614 ], [ -80.783470153808537, -3.745137929916382 ], [ -80.783195495605355, -3.745137929916382 ], [ -80.783195495605355, -3.744859933853149 ], [ -80.782913208007812, -3.744859933853149 ], [ -80.782913208007812, -3.744584083557129 ], [ -80.782363891601562, -3.744584083557129 ], [ -80.782363891601562, -3.744306087493896 ], [ -80.781326293945312, -3.744306087493896 ], [ -80.780975341796818, -3.744306087493896 ], [ -80.780975341796818, -3.744584083557129 ], [ -80.780136108398381, -3.744584083557129 ], [ -80.780136108398381, -3.744859933853149 ], [ -80.779029846191406, -3.744859933853149 ], [ -80.779029846191406, -3.744584083557129 ], [ -80.77874755859375, -3.744584083557129 ], [ -80.77874755859375, -3.744306087493896 ], [ -80.778472900390625, -3.744306087493896 ], [ -80.778472900390625, -3.744028091430664 ], [ -80.778198242187443, -3.744028091430664 ], [ -80.778190612792969, -3.743750095367432 ], [ -80.777915954589787, -3.743750095367432 ], [ -80.777915954589787, -3.743472099304199 ], [ -80.777641296386662, -3.743472099304199 ], [ -80.777641296386662, -3.743194103240853 ], [ -80.777359008789006, -3.743194103240853 ], [ -80.777359008789006, -3.742916107177621 ], [ -80.777084350585881, -3.742916107177621 ], [ -80.777084350585881, -3.742638111114445 ], [ -80.776802062988168, -3.742638111114445 ], [ -80.776802062988168, -3.742419004440308 ], [ -80.776802062988168, -3.74208402633667 ], [ -80.776527404785156, -3.74208402633667 ], [ -80.776527404785156, -3.741528034210205 ], [ -80.776252746582031, -3.741528034210205 ], [ -80.776252746582031, -3.741250038146973 ], [ -80.775138854980469, -3.741250038146973 ], [ -80.775138854980469, -3.741528034210205 ], [ -80.774650573730469, -3.741528034210205 ], [ -80.774307250976506, -3.741528034210205 ], [ -80.774307250976506, -3.741806030273438 ], [ -80.774024963378849, -3.741806030273438 ], [ -80.774024963378849, -3.741528034210205 ], [ -80.773750305175668, -3.741528034210205 ], [ -80.773750305175668, -3.741250038146973 ], [ -80.773475646972656, -3.741250038146973 ], [ -80.773475646972656, -3.74097204208374 ], [ -80.773193359375, -3.74097204208374 ], [ -80.773193359375, -3.740694046020508 ], [ -80.773078918456974, -3.740694046020508 ], [ -80.772918701171875, -3.740694046020508 ], [ -80.772918701171875, -3.74058198928833 ], [ -80.772918701171875, -3.740416049957275 ], [ -80.772689819335881, -3.740416049957275 ], [ -80.772636413574219, -3.740138053894043 ], [ -80.772361755371094, -3.740139961242619 ], [ -80.772361755371094, -3.739583969116211 ], [ -80.771781921386719, -3.739583969116211 ], [ -80.771530151367131, -3.739583969116211 ], [ -80.771530151367131, -3.739305973052979 ], [ -80.770973205566349, -3.739305973052979 ], [ -80.770973205566349, -3.739027976989746 ], [ -80.770690917968693, -3.739027976989746 ], [ -80.770690917968693, -3.738471984863281 ], [ -80.770416259765511, -3.738471984863281 ], [ -80.770416259765511, -3.737915992736816 ], [ -80.7701416015625, -3.737915992736816 ], [ -80.7701416015625, -3.737651109695435 ], [ -80.7701416015625, -3.737361907958928 ], [ -80.769859313964844, -3.737361907958928 ], [ -80.769859313964844, -3.736805915832463 ], [ -80.769584655761719, -3.736805915832463 ], [ -80.769584655761719, -3.73652791976923 ], [ -80.769302368164062, -3.73652791976923 ], [ -80.769302368164062, -3.736249923706055 ], [ -80.769027709960938, -3.736249923706055 ], [ -80.769027709960938, -3.735692977905217 ], [ -80.768753051757812, -3.735692977905217 ], [ -80.768753051757812, -3.735418081283569 ], [ -80.768470764160099, -3.735418081283569 ], [ -80.768470764160099, -3.734862089157104 ], [ -80.768196105956974, -3.734862089157104 ], [ -80.768196105956974, -3.734304904937744 ], [ -80.767913818359318, -3.734304904937744 ], [ -80.767913818359318, -3.733748912811166 ], [ -80.767639160156193, -3.733748912811166 ], [ -80.767639160156193, -3.733196020126286 ], [ -80.767364501953011, -3.733192920684758 ], [ -80.767364501953011, -3.733091115951424 ], [ -80.767364501953011, -3.732361078262272 ], [ -80.767082214355469, -3.732361078262272 ], [ -80.767082214355469, -3.731805086135807 ], [ -80.766921997070312, -3.731805086135807 ], [ -80.766807556152344, -3.731805086135807 ], [ -80.766807556152344, -3.731631994247437 ], [ -80.766807556152344, -3.731249094009399 ], [ -80.766525268554688, -3.731249094009399 ], [ -80.766525268554688, -3.730695009231454 ], [ -80.766250610351562, -3.730695009231454 ], [ -80.766250610351562, -3.730417013168221 ], [ -80.765975952148438, -3.730417013168221 ], [ -80.765975952148438, -3.730139017105046 ], [ -80.765693664550781, -3.730139017105046 ], [ -80.765693664550781, -3.729861021041813 ], [ -80.765419006347599, -3.729861021041813 ], [ -80.765419006347599, -3.729583024978581 ], [ -80.765136718749943, -3.729583024978581 ], [ -80.765136718749943, -3.729305028915348 ], [ -80.764862060546818, -3.729305028915348 ], [ -80.764862060546818, -3.729027032852116 ], [ -80.764579772949162, -3.729027032852116 ], [ -80.764579772949162, -3.728749036788884 ], [ -80.764305114746037, -3.728749036788884 ], [ -80.764305114746037, -3.728472948074341 ], [ -80.764030456542969, -3.728472948074341 ], [ -80.764030456542969, -3.728194952011108 ], [ -80.763748168945312, -3.728194952011108 ], [ -80.763748168945312, -3.727916955947876 ], [ -80.763473510742188, -3.727916955947876 ], [ -80.763473510742188, -3.727638959884644 ], [ -80.763191223144531, -3.727638959884644 ], [ -80.763191223144531, -3.727360963821411 ], [ -80.762641906738281, -3.727360963821411 ], [ -80.762641906738281, -3.727082967758065 ], [ -80.762359619140625, -3.727082967758065 ], [ -80.762359619140625, -3.726804971694833 ], [ -80.762084960937443, -3.726804971694833 ], [ -80.762084960937443, -3.726526975631657 ], [ -80.761802673339787, -3.726526975631657 ], [ -80.761802673339787, -3.726248979568425 ], [ -80.761528015136662, -3.726248979568425 ], [ -80.761528015136662, -3.725970983505192 ], [ -80.761253356933537, -3.725972890853882 ], [ -80.761253356933537, -3.725694894790649 ], [ -80.760971069335824, -3.725694894790649 ], [ -80.760971069335824, -3.725416898727417 ], [ -80.760696411132812, -3.725416898727417 ], [ -80.760696411132812, -3.725138902664185 ], [ -80.760414123535156, -3.725138902664185 ], [ -80.760414123535156, -3.724860906600952 ], [ -80.760139465332031, -3.724860906600952 ], [ -80.760139465332031, -3.72458291053772 ], [ -80.759864807128906, -3.72458291053772 ], [ -80.759864807128906, -3.724304914474487 ], [ -80.75958251953125, -3.724304914474487 ], [ -80.75958251953125, -3.723748922348022 ], [ -80.759307861328125, -3.723751068115121 ], [ -80.759307861328125, -3.723473072051888 ], [ -80.759025573730469, -3.723473072051888 ], [ -80.759025573730469, -3.723195075988713 ], [ -80.758750915527287, -3.723195075988713 ], [ -80.758750915527287, -3.72291707992548 ], [ -80.758468627929631, -3.72291707992548 ], [ -80.758468627929631, -3.722639083862248 ], [ -80.758193969726506, -3.722639083862248 ], [ -80.758193969726506, -3.722361087799015 ], [ -80.757919311523324, -3.722361087799015 ], [ -80.757919311523324, -3.722081899642944 ], [ -80.757637023925668, -3.722081899642944 ], [ -80.757637023925668, -3.72180700302124 ], [ -80.757362365722656, -3.72180700302124 ], [ -80.757362365722656, -3.721529006958008 ], [ -80.757148742675724, -3.721529006958008 ], [ -80.757080078125, -3.721251010894775 ], [ -80.756805419921875, -3.721251010894775 ], [ -80.756805419921875, -3.720973014831543 ], [ -80.75653076171875, -3.720973014831543 ], [ -80.75653076171875, -3.720694065093994 ], [ -80.756248474121094, -3.720694065093994 ], [ -80.756248474121094, -3.720416069030762 ], [ -80.755973815917969, -3.720416069030762 ], [ -80.755973815917969, -3.720138072967529 ], [ -80.755691528320256, -3.720138072967529 ], [ -80.755691528320256, -3.719860076904297 ], [ -80.755416870117131, -3.719860076904297 ], [ -80.755416870117131, -3.719582080841064 ], [ -80.755088806152344, -3.719582080841064 ], [ -80.754859924316349, -3.719582080841064 ], [ -80.754859924316349, -3.719305992126408 ], [ -80.754302978515625, -3.719305992126408 ], [ -80.754302978515625, -3.719027996063176 ], [ -80.7540283203125, -3.719027996063176 ], [ -80.7540283203125, -3.71875 ], [ -80.753471374511719, -3.71875 ], [ -80.753471374511719, -3.718472003936768 ], [ -80.752639770507756, -3.718472003936768 ], [ -80.752639770507756, -3.718194007873535 ], [ -80.751808166503849, -3.718194007873535 ], [ -80.751808166503849, -3.717916011810303 ], [ -80.749580383300781, -3.717916011810303 ], [ -80.749580383300781, -3.71763801574707 ], [ -80.749015808105412, -3.71763801574707 ], [ -80.747917175292969, -3.71763801574707 ], [ -80.747917175292969, -3.717360019683838 ], [ -80.747360229492188, -3.717360019683838 ], [ -80.747360229492188, -3.717083930969181 ], [ -80.746528625488281, -3.717083930969181 ], [ -80.746528625488281, -3.716805934905949 ], [ -80.745971679687443, -3.716805934905949 ], [ -80.745971679687443, -3.716527938842717 ], [ -80.745414733886662, -3.716527938842717 ], [ -80.745414733886662, -3.716249942779484 ], [ -80.744857788085824, -3.716249942779484 ], [ -80.744857788085824, -3.715971946716252 ], [ -80.744026184082031, -3.715971946716252 ], [ -80.744026184082031, -3.715693950653019 ], [ -80.74346923828125, -3.715693950653019 ], [ -80.74346923828125, -3.715415954589787 ], [ -80.742919921874943, -3.715415954589787 ], [ -80.742919921874943, -3.715137958526611 ], [ -80.742637634277287, -3.715137958526611 ], [ -80.742637634277287, -3.715415954589787 ], [ -80.742362976074162, -3.715415954589787 ], [ -80.742362976074162, -3.715137958526611 ], [ -80.740974426269531, -3.715137958526611 ], [ -80.740974426269531, -3.714859962463379 ], [ -80.740692138671875, -3.714862108230591 ], [ -80.740692138671875, -3.714306116104126 ], [ -80.740135192871094, -3.714306116104126 ], [ -80.740135192871094, -3.714027881622258 ], [ -80.739585876464787, -3.714027881622258 ], [ -80.739585876464787, -3.713749885559025 ], [ -80.739028930664006, -3.713749885559025 ], [ -80.739028930664006, -3.713471889495793 ], [ -80.738746643066349, -3.713471889495793 ], [ -80.738746643066349, -3.712915897369328 ], [ -80.738548278808537, -3.712915897369328 ], [ -80.738197326660156, -3.712915897369328 ], [ -80.738197326660156, -3.712759017944336 ], [ -80.738197326660156, -3.712637901306096 ], [ -80.7379150390625, -3.712637901306096 ], [ -80.7379150390625, -3.712359905242863 ], [ -80.737327575683594, -3.712362051010075 ], [ -80.736526489257756, -3.712359905242863 ], [ -80.736526489257756, -3.712637901306096 ], [ -80.736251831054631, -3.712637901306096 ], [ -80.736251831054631, -3.71319389343256 ], [ -80.735969543456974, -3.71319389343256 ], [ -80.735969543456974, -3.712915897369328 ], [ -80.735137939453125, -3.712915897369328 ], [ -80.735137939453125, -3.712359905242863 ], [ -80.735969543456974, -3.712362051010075 ], [ -80.735969543456974, -3.711806058883667 ], [ -80.736251831054631, -3.711806058883667 ], [ -80.736251831054631, -3.711528062820435 ], [ -80.736114501953125, -3.711528062820435 ], [ -80.735969543456974, -3.711528062820435 ], [ -80.735969543456974, -3.711425065994263 ], [ -80.735969543456974, -3.71097207069397 ], [ -80.735694885253849, -3.71097207069397 ], [ -80.735694885253849, -3.710694074630737 ], [ -80.735420227050781, -3.710694074630737 ], [ -80.735420227050781, -3.71097207069397 ], [ -80.73486328125, -3.71097207069397 ], [ -80.73486328125, -3.712637901306096 ], [ -80.734580993652344, -3.712637901306096 ], [ -80.734580993652344, -3.712915897369328 ], [ -80.734306335449219, -3.712915897369328 ], [ -80.734306335449219, -3.71319389343256 ], [ -80.734024047851562, -3.71319389343256 ], [ -80.734024047851562, -3.713471889495793 ], [ -80.733474731445256, -3.713471889495793 ], [ -80.733474731445256, -3.713749885559025 ], [ -80.732917785644474, -3.713749885559025 ], [ -80.732917785644474, -3.714027881622258 ], [ -80.732360839843636, -3.714027881622258 ], [ -80.732360839843636, -3.714306116104126 ], [ -80.731803894042969, -3.714306116104126 ], [ -80.731803894042969, -3.713749885559025 ], [ -80.731529235839844, -3.713749885559025 ], [ -80.731529235839844, -3.713471889495793 ], [ -80.730697631835938, -3.713471889495793 ], [ -80.730697631835938, -3.713749885559025 ], [ -80.730140686035099, -3.713749885559025 ], [ -80.730140686035099, -3.714027881622258 ], [ -80.729583740234318, -3.714027881622258 ], [ -80.729583740234318, -3.714306116104126 ], [ -80.72902679443348, -3.714306116104126 ], [ -80.72902679443348, -3.713749885559025 ], [ -80.728752136230469, -3.713749885559025 ], [ -80.728752136230469, -3.71319389343256 ], [ -80.728469848632812, -3.71319389343256 ], [ -80.728469848632812, -3.712637901306096 ], [ -80.728195190429688, -3.712637901306096 ], [ -80.728195190429688, -3.712359905242863 ], [ -80.728469848632812, -3.712362051010075 ], [ -80.728469848632812, -3.711123943328801 ], [ -80.728469848632812, -3.71097207069397 ], [ -80.728195190429688, -3.71097207069397 ], [ -80.728195190429688, -3.711078882217407 ], [ -80.728195190429688, -3.711250066757202 ], [ -80.727638244628906, -3.711250066757202 ], [ -80.727638244628906, -3.71097207069397 ], [ -80.727081298828068, -3.71097207069397 ], [ -80.727081298828068, -3.710694074630737 ], [ -80.726524353027287, -3.710694074630737 ], [ -80.726524353027287, -3.710417985916081 ], [ -80.726387023925781, -3.710417985916081 ], [ -80.726249694824162, -3.710417985916081 ], [ -80.726249694824162, -3.709861993789616 ], [ -80.725692749023438, -3.709861993789616 ], [ -80.725692749023438, -3.709583997726384 ], [ -80.725418090820312, -3.709583997726384 ], [ -80.725418090820312, -3.709028005599919 ], [ -80.724861145019531, -3.709028005599919 ], [ -80.724861145019531, -3.708750009536686 ], [ -80.724327087402287, -3.708750009536686 ], [ -80.724029541015568, -3.708750009536686 ], [ -80.724029541015568, -3.708471059799137 ], [ -80.723472595214787, -3.708471059799137 ], [ -80.723472595214787, -3.708195924758911 ], [ -80.722640991210938, -3.708195924758911 ], [ -80.722640991210938, -3.707917928695679 ], [ -80.722358703613281, -3.707917928695679 ], [ -80.722358703613281, -3.707639932632333 ], [ -80.722084045410156, -3.707639932632333 ], [ -80.722084045410156, -3.7073619365691 ], [ -80.721527099609375, -3.7073619365691 ], [ -80.721527099609375, -3.707082986831665 ], [ -80.720970153808594, -3.707082986831665 ], [ -80.720970153808594, -3.706804990768433 ], [ -80.720695495605412, -3.706804990768433 ], [ -80.720695495605412, -3.7065269947052 ], [ -80.720413208007756, -3.7065269947052 ], [ -80.720413208007756, -3.706248998641968 ], [ -80.719863891601506, -3.706248998641968 ], [ -80.719863891601506, -3.705971002578622 ], [ -80.719024658203125, -3.705971002578622 ], [ -80.719024658203125, -3.705696105956974 ], [ -80.718475341796875, -3.705696105956974 ], [ -80.718475341796875, -3.705416917800903 ], [ -80.718193054199219, -3.705416917800903 ], [ -80.718193054199219, -3.705138921737671 ], [ -80.717918395996094, -3.705138921737671 ], [ -80.717918395996094, -3.704860925674438 ], [ -80.717636108398438, -3.704860925674438 ], [ -80.717636108398438, -3.704582929611206 ], [ -80.717086791992131, -3.704582929611206 ], [ -80.717086791992131, -3.704304933547974 ], [ -80.716529846191293, -3.704304933547974 ], [ -80.716529846191293, -3.704026937484741 ], [ -80.715972900390625, -3.704026937484741 ], [ -80.715972900390625, -3.703748941421509 ], [ -80.715141296386719, -3.703748941421509 ], [ -80.715141296386719, -3.703195095062256 ], [ -80.714859008789062, -3.703195095062256 ], [ -80.714859008789062, -3.702917098999023 ], [ -80.714302062988224, -3.702917098999023 ], [ -80.714302062988224, -3.702639102935677 ], [ -80.713752746581974, -3.702639102935677 ], [ -80.713752746581974, -3.702361106872445 ], [ -80.713470458984318, -3.702361106872445 ], [ -80.713470458984318, -3.702083110809269 ], [ -80.713195800781136, -3.702083110809269 ], [ -80.713195800781136, -3.701805114746037 ], [ -80.712364196777344, -3.701805114746037 ], [ -80.712364196777344, -3.701527118682804 ], [ -80.711524963378906, -3.701527118682804 ], [ -80.711524963378906, -3.70124888420105 ], [ -80.711250305175724, -3.701251029968262 ], [ -80.711250305175724, -3.700973033905029 ], [ -80.710975646972599, -3.700973033905029 ], [ -80.710975646972599, -3.700417041778564 ], [ -80.710418701171818, -3.700417041778564 ], [ -80.710418701171818, -3.700139045715332 ], [ -80.710136413574162, -3.700139045715332 ], [ -80.710136413574162, -3.6998610496521 ], [ -80.709587097167969, -3.6998610496521 ], [ -80.709587097167969, -3.699583053588867 ], [ -80.709030151367188, -3.699583053588867 ], [ -80.709030151367188, -3.699305057525635 ], [ -80.708747863769531, -3.699305057525635 ], [ -80.708747863769531, -3.699027061462289 ], [ -80.708473205566406, -3.699027061462289 ], [ -80.708473205566406, -3.698749065399056 ], [ -80.70819091796875, -3.698750972747803 ], [ -80.70819091796875, -3.69847297668457 ], [ -80.707916259765568, -3.69847297668457 ], [ -80.707916259765568, -3.698194980621338 ], [ -80.707641601562443, -3.698194980621338 ], [ -80.707641601562443, -3.697916984558105 ], [ -80.707359313964787, -3.697916984558105 ], [ -80.707359313964787, -3.697360992431641 ], [ -80.707084655761662, -3.697360992431641 ], [ -80.707084655761662, -3.697082996368408 ], [ -80.706527709960938, -3.697082996368408 ], [ -80.706527709960938, -3.696805000305176 ], [ -80.705696105957031, -3.696805000305176 ], [ -80.705696105957031, -3.696528911590519 ], [ -80.70513916015625, -3.696528911590519 ], [ -80.70513916015625, -3.695972919464054 ], [ -80.704864501953068, -3.695972919464054 ], [ -80.704864501953068, -3.695694923400879 ], [ -80.704307556152287, -3.695694923400879 ], [ -80.704307556152287, -3.695416927337646 ], [ -80.704025268554631, -3.695416927337646 ], [ -80.704025268554631, -3.695138931274414 ], [ -80.703475952148438, -3.695138931274414 ], [ -80.703475952148438, -3.694581985473576 ], [ -80.703193664550781, -3.694581985473576 ], [ -80.703193664550781, -3.694307088851929 ], [ -80.70263671875, -3.694307088851929 ], [ -80.70263671875, -3.694029092788696 ], [ -80.701805114746094, -3.694029092788696 ], [ -80.701805114746094, -3.693751096725464 ], [ -80.701530456542912, -3.693751096725464 ], [ -80.701530456542912, -3.69319391250599 ], [ -80.701248168945256, -3.69319391250599 ], [ -80.701248168945256, -3.692915916442814 ], [ -80.700141906738281, -3.692915916442814 ], [ -80.700141906738281, -3.69319391250599 ], [ -80.6995849609375, -3.69319391250599 ], [ -80.6995849609375, -3.692915916442814 ], [ -80.698753356933594, -3.692915916442814 ], [ -80.698753356933594, -3.691528081893864 ], [ -80.698471069335881, -3.691528081893864 ], [ -80.698471069335881, -3.691250085830632 ], [ -80.698196411132756, -3.691250085830632 ], [ -80.698196411132756, -3.691113948822021 ], [ -80.698196411132756, -3.690972089767399 ], [ -80.6978759765625, -3.690972089767399 ], [ -80.69708251953125, -3.690972089767399 ], [ -80.69708251953125, -3.690623998641968 ], [ -80.69708251953125, -3.690138101577759 ], [ -80.696807861328125, -3.690138101577759 ], [ -80.696807861328125, -3.689860105514526 ], [ -80.696525573730469, -3.689860105514526 ], [ -80.696525573730469, -3.68958401679987 ], [ -80.696250915527344, -3.68958401679987 ], [ -80.696250915527344, -3.689306020736637 ], [ -80.695693969726562, -3.689306020736637 ], [ -80.695693969726562, -3.689028024673405 ], [ -80.695419311523381, -3.689028024673405 ], [ -80.695419311523381, -3.688750028610173 ], [ -80.694862365722599, -3.688750028610173 ], [ -80.694862365722599, -3.68847203254694 ], [ -80.694587707519474, -3.68847203254694 ], [ -80.694305419921818, -3.68847203254694 ], [ -80.694305419921818, -3.688194036483708 ], [ -80.69403076171875, -3.688194036483708 ], [ -80.69403076171875, -3.687916040420475 ], [ -80.693748474121094, -3.687916040420475 ], [ -80.693748474121094, -3.687638044357243 ], [ -80.693473815917969, -3.687638044357243 ], [ -80.693473815917969, -3.687275886535645 ], [ -80.693473815917969, -3.687083959579468 ], [ -80.693359374999886, -3.687083959579468 ], [ -80.693191528320312, -3.687083959579468 ], [ -80.693191528320312, -3.686805963516235 ], [ -80.692916870117188, -3.686805963516235 ], [ -80.692916870117188, -3.686527967452889 ], [ -80.692642211914062, -3.686527967452889 ], [ -80.692642211914062, -3.686249971389657 ], [ -80.692085266113224, -3.686249971389657 ], [ -80.692085266113224, -3.685971975326481 ], [ -80.691528320312443, -3.685971975326481 ], [ -80.691528320312443, -3.685693979263249 ], [ -80.691253662109318, -3.685693979263249 ], [ -80.691253662109318, -3.685415983200016 ], [ -80.690971374511605, -3.685415983200016 ], [ -80.690971374511605, -3.685137987136784 ], [ -80.690696716308594, -3.685137987136784 ], [ -80.690696716308594, -3.684859991073552 ], [ -80.690414428710938, -3.684861898422241 ], [ -80.690414428710938, -3.684583902359009 ], [ -80.690139770507812, -3.684583902359009 ], [ -80.690139770507812, -3.684305906295776 ], [ -80.689582824707031, -3.684305906295776 ], [ -80.689582824707031, -3.684027910232544 ], [ -80.689308166503906, -3.684027910232544 ], [ -80.689308166503906, -3.683749914169312 ], [ -80.68902587890625, -3.683749914169312 ], [ -80.68902587890625, -3.683471918106079 ], [ -80.688751220703068, -3.683471918106079 ], [ -80.688751220703068, -3.683193922042847 ], [ -80.688468933105412, -3.683193922042847 ], [ -80.688468933105412, -3.682915925979501 ], [ -80.688194274902287, -3.682915925979501 ], [ -80.688194274902287, -3.682734966278076 ], [ -80.688194274902287, -3.682640075683537 ], [ -80.688011169433537, -3.682640075683537 ], [ -80.687637329101449, -3.682640075683537 ], [ -80.687637329101449, -3.682362079620304 ], [ -80.686531066894531, -3.682362079620304 ], [ -80.686531066894531, -3.682084083557072 ], [ -80.686248779296875, -3.682084083557072 ], [ -80.686248779296875, -3.68180608749384 ], [ -80.68597412109375, -3.68180608749384 ], [ -80.68597412109375, -3.681528091430607 ], [ -80.685691833496037, -3.681528091430607 ], [ -80.685691833496037, -3.681248903274536 ], [ -80.685417175292912, -3.681248903274536 ], [ -80.685417175292912, -3.680970907211304 ], [ -80.685142517089787, -3.680970907211304 ], [ -80.685142517089787, -3.6806960105896 ], [ -80.684860229492131, -3.680692911148071 ], [ -80.684860229492131, -3.680418014526367 ], [ -80.684585571288949, -3.680418014526367 ], [ -80.684585571288949, -3.680243968963566 ], [ -80.684585571288949, -3.680140018463135 ], [ -80.684486389160043, -3.680140018463135 ], [ -80.684303283691406, -3.680140018463135 ], [ -80.684303283691406, -3.679985046386719 ], [ -80.684303283691406, -3.679861068725586 ], [ -80.684158325195312, -3.679861068725586 ], [ -80.684028625488281, -3.679861068725586 ], [ -80.684028625488281, -3.679754018783512 ], [ -80.684028625488281, -3.679583072662354 ], [ -80.683822631835824, -3.679583072662354 ], [ -80.683197021484375, -3.679583072662354 ], [ -80.683197021484375, -3.679305076599121 ], [ -80.682914733886719, -3.679305076599121 ], [ -80.682914733886719, -3.679583072662354 ], [ -80.681526184081974, -3.679583072662354 ], [ -80.681526184081974, -3.679861068725586 ], [ -80.68096923828125, -3.679861068725586 ], [ -80.68096923828125, -3.679305076599121 ], [ -80.680694580078125, -3.679305076599121 ], [ -80.680694580078125, -3.679027080535889 ], [ -80.680419921875, -3.679027080535889 ], [ -80.680419921875, -3.678749084472656 ], [ -80.679031372070256, -3.678749084472656 ], [ -80.679031372070256, -3.679027080535889 ], [ -80.678749084472599, -3.679027080535889 ], [ -80.678749084472599, -3.679305076599121 ], [ -80.678474426269474, -3.679305076599121 ], [ -80.678474426269474, -3.679583072662354 ], [ -80.678192138671761, -3.679583072662354 ], [ -80.678192138671761, -3.679861068725586 ], [ -80.67791748046875, -3.679861068725586 ], [ -80.67791748046875, -3.680140018463135 ], [ -80.677085876464844, -3.680140018463135 ], [ -80.677085876464844, -3.679583072662354 ], [ -80.676803588867188, -3.679583072662354 ], [ -80.676803588867188, -3.679305076599121 ], [ -80.676246643066406, -3.679305076599121 ], [ -80.676246643066406, -3.679027080535889 ], [ -80.675262451171875, -3.679027080535889 ], [ -80.675140380859261, -3.679027080535889 ], [ -80.675140380859261, -3.678749084472656 ], [ -80.674583435058594, -3.678749084472656 ], [ -80.674583435058594, -3.678896903991642 ], [ -80.674583435058594, -3.679027080535889 ], [ -80.674308776855469, -3.679027080535889 ], [ -80.674308776855469, -3.678844928741341 ], [ -80.674308776855469, -3.678749084472656 ], [ -80.671806335449105, -3.678749084472656 ], [ -80.671806335449105, -3.678471088409424 ], [ -80.670974731445312, -3.678471088409424 ], [ -80.670974731445312, -3.678194999694824 ], [ -80.669860839843693, -3.678194999694824 ], [ -80.669860839843693, -3.677917003631592 ], [ -80.669303894042912, -3.677917003631592 ], [ -80.669303894042912, -3.677639007568359 ], [ -80.669029235839787, -3.677639007568359 ], [ -80.669029235839787, -3.677361011505127 ], [ -80.668197631835938, -3.677361011505127 ], [ -80.668197631835938, -3.677083015441895 ], [ -80.667640686035156, -3.677083015441895 ], [ -80.667640686035156, -3.676805019378662 ], [ -80.6673583984375, -3.676805019378662 ], [ -80.6673583984375, -3.67652702331543 ], [ -80.667083740234375, -3.67652702331543 ], [ -80.667083740234375, -3.676249027252197 ], [ -80.666809082031193, -3.676249027252197 ], [ -80.666809082031193, -3.675971031188965 ], [ -80.666252136230412, -3.675972938537541 ], [ -80.666252136230412, -3.675694942474308 ], [ -80.665695190429631, -3.675694942474308 ], [ -80.665695190429631, -3.675416946411076 ], [ -80.665412902831918, -3.675416946411076 ], [ -80.665412902831918, -3.675138950347844 ], [ -80.665138244628906, -3.675138950347844 ], [ -80.665138244628906, -3.674860954284611 ], [ -80.664863586425781, -3.674860954284611 ], [ -80.664863586425781, -3.674688100814762 ], [ -80.664863586425781, -3.674582958221436 ], [ -80.664695739746094, -3.674582958221436 ], [ -80.664581298828125, -3.674582958221436 ], [ -80.664581298828125, -3.674304962158203 ], [ -80.664253234863224, -3.674304962158203 ], [ -80.664024353027344, -3.674304962158203 ], [ -80.664024353027344, -3.674159049987793 ], [ -80.664024353027344, -3.674026966094971 ], [ -80.663818359375, -3.674026966094971 ], [ -80.663475036621037, -3.674026966094971 ], [ -80.663475036621037, -3.673748970031738 ], [ -80.663192749023381, -3.673748970031738 ], [ -80.663192749023381, -3.673470973968506 ], [ -80.662918090820256, -3.673472881317082 ], [ -80.662918090820256, -3.673194885253849 ], [ -80.662635803222599, -3.673194885253849 ], [ -80.662635803222599, -3.672638893127385 ], [ -80.662086486816406, -3.672638893127385 ], [ -80.662086486816406, -3.67208290100092 ], [ -80.66180419921875, -3.67208290100092 ], [ -80.66180419921875, -3.671526908874455 ], [ -80.661529541015625, -3.671526908874455 ], [ -80.661529541015625, -3.671248912811222 ], [ -80.661247253417969, -3.671251058578491 ], [ -80.661247253417969, -3.670973062515259 ], [ -80.660697937011719, -3.670973062515259 ], [ -80.660697937011719, -3.670695066452026 ], [ -80.660415649414062, -3.670695066452026 ], [ -80.660415649414062, -3.670139074325562 ], [ -80.660140991210881, -3.670139074325562 ], [ -80.660140991210881, -3.669861078262329 ], [ -80.659858703613224, -3.669861078262329 ], [ -80.659858703613224, -3.669583082199097 ], [ -80.659584045410099, -3.669583082199097 ], [ -80.659584045410099, -3.669028997421208 ], [ -80.659301757812443, -3.669028997421208 ], [ -80.659301757812443, -3.668751001357975 ], [ -80.659027099609261, -3.668751001357975 ], [ -80.659027099609261, -3.668473005294743 ], [ -80.658470153808594, -3.668473005294743 ], [ -80.658470153808594, -3.668195009231511 ], [ -80.658195495605469, -3.668195009231511 ], [ -80.658195495605469, -3.667917013168278 ], [ -80.657913208007812, -3.667917013168278 ], [ -80.657913208007812, -3.667638063430729 ], [ -80.657363891601562, -3.667638063430729 ], [ -80.657363891601562, -3.667360067367497 ], [ -80.656806945800724, -3.667360067367497 ], [ -80.656806945800724, -3.667082071304264 ], [ -80.655975341796761, -3.667082071304264 ], [ -80.655975341796761, -3.667360067367497 ], [ -80.655418395996094, -3.667360067367497 ], [ -80.655418395996094, -3.667638063430729 ], [ -80.655136108398438, -3.667638063430729 ], [ -80.655136108398438, -3.667917013168278 ], [ -80.654586791992188, -3.667917013168278 ], [ -80.654586791992188, -3.668195009231511 ], [ -80.654304504394531, -3.668195009231511 ], [ -80.654304504394531, -3.668751001357975 ], [ -80.653747558593693, -3.668751001357975 ], [ -80.653747558593693, -3.669028997421208 ], [ -80.653198242187443, -3.669028997421208 ], [ -80.653198242187443, -3.669305086135864 ], [ -80.652641296386719, -3.669305086135864 ], [ -80.652641296386719, -3.669583082199097 ], [ -80.652084350585938, -3.669583082199097 ], [ -80.652084350585938, -3.669305086135864 ], [ -80.651527404785156, -3.669305086135864 ], [ -80.651527404785156, -3.669028997421208 ], [ -80.650138854980412, -3.669028997421208 ], [ -80.650138854980412, -3.668751001357975 ], [ -80.649581909179574, -3.668751001357975 ], [ -80.649581909179574, -3.668473005294743 ], [ -80.647636413574219, -3.668473005294743 ], [ -80.647636413574219, -3.668751001357975 ], [ -80.647361755371037, -3.668751001357975 ], [ -80.647361755371037, -3.669584989547673 ], [ -80.646804809570256, -3.669583082199097 ], [ -80.646804809570256, -3.669305086135864 ], [ -80.646530151367074, -3.669305086135864 ], [ -80.646530151367074, -3.668473005294743 ], [ -80.646804809570256, -3.668473005294743 ], [ -80.646804809570256, -3.668195009231511 ], [ -80.647087097167912, -3.668195009231511 ], [ -80.647087097167912, -3.667638063430729 ], [ -80.646804809570256, -3.667638063430729 ], [ -80.646804809570256, -3.667360067367497 ], [ -80.646247863769418, -3.667360067367497 ], [ -80.646247863769418, -3.667082071304264 ], [ -80.646141052246037, -3.667082071304264 ], [ -80.643470764160099, -3.667082071304264 ], [ -80.643470764160099, -3.666806936263924 ], [ -80.643196105956918, -3.666806936263924 ], [ -80.643196105956918, -3.667082071304264 ], [ -80.64263916015625, -3.667082071304264 ], [ -80.64263916015625, -3.667360067367497 ], [ -80.642082214355469, -3.667360067367497 ], [ -80.642082214355469, -3.667638063430729 ], [ -80.640136718749943, -3.667638063430729 ], [ -80.640136718749943, -3.667917013168278 ], [ -80.639305114746094, -3.667917013168278 ], [ -80.639305114746094, -3.668195009231511 ], [ -80.638748168945312, -3.668195009231511 ], [ -80.638748168945312, -3.668473005294743 ], [ -80.638191223144531, -3.668473005294743 ], [ -80.638191223144531, -3.668195009231511 ], [ -80.637916564941349, -3.668195009231511 ], [ -80.637916564941349, -3.667917013168278 ], [ -80.636528015136719, -3.667917013168278 ], [ -80.636528015136719, -3.667638063430729 ], [ -80.635139465332031, -3.667638063430729 ], [ -80.635139465332031, -3.667360067367497 ], [ -80.634582519531193, -3.667360067367497 ], [ -80.634582519531193, -3.667638063430729 ], [ -80.634307861328068, -3.667638063430729 ], [ -80.634307861328068, -3.667360067367497 ], [ -80.63375091552723, -3.667360067367497 ], [ -80.63375091552723, -3.667638063430729 ], [ -80.634025573730412, -3.667638063430729 ], [ -80.634025573730412, -3.667917013168278 ], [ -80.633193969726562, -3.667917013168278 ], [ -80.633193969726562, -3.666528940200749 ], [ -80.632362365722656, -3.666528940200749 ], [ -80.632362365722656, -3.665971994400024 ], [ -80.632080078125, -3.665971994400024 ], [ -80.632080078125, -3.665416002273446 ], [ -80.631805419921875, -3.665416002273446 ], [ -80.631805419921875, -3.665138006210213 ], [ -80.631530761718693, -3.665138006210213 ], [ -80.631530761718693, -3.664860010147038 ], [ -80.630973815917912, -3.664860010147038 ], [ -80.630973815917912, -3.664583921432495 ], [ -80.630691528320256, -3.664583921432495 ], [ -80.630691528320256, -3.664305925369263 ], [ -80.630416870117074, -3.664305925369263 ], [ -80.630416870117074, -3.66402792930603 ], [ -80.630271911621094, -3.66402792930603 ], [ -80.630142211914062, -3.66402792930603 ], [ -80.630142211914062, -3.663749933242798 ], [ -80.629631042480412, -3.663749933242798 ], [ -80.628753662109375, -3.663749933242798 ], [ -80.628753662109375, -3.663471937179565 ], [ -80.628196716308537, -3.663471937179565 ], [ -80.628196716308537, -3.663749933242798 ], [ -80.627914428710881, -3.663749933242798 ], [ -80.627914428710881, -3.66402792930603 ], [ -80.627357482910099, -3.66402792930603 ], [ -80.627357482910099, -3.663749933242798 ], [ -80.626808166503906, -3.663749933242798 ], [ -80.626808166503906, -3.663193941116333 ], [ -80.626251220703125, -3.663193941116333 ], [ -80.626251220703125, -3.662915945053101 ], [ -80.625419616699162, -3.662915945053101 ], [ -80.625419616699162, -3.662637948989868 ], [ -80.625137329101506, -3.662637948989868 ], [ -80.625137329101506, -3.661528110504094 ], [ -80.624862670898381, -3.661528110504094 ], [ -80.624862670898381, -3.661324977874756 ], [ -80.624862670898381, -3.660693883895874 ], [ -80.624580383300724, -3.660693883895874 ], [ -80.624580383300724, -3.660415887832642 ], [ -80.624031066894531, -3.660415887832642 ], [ -80.624031066894531, -3.660137891769409 ], [ -80.62347412109375, -3.660137891769409 ], [ -80.62347412109375, -3.660043954849186 ], [ -80.62347412109375, -3.659859895706177 ], [ -80.623298645019531, -3.659862041473389 ], [ -80.623191833496094, -3.659862041473389 ], [ -80.623191833496094, -3.659754991531315 ], [ -80.623191833496094, -3.659306049346924 ], [ -80.622917175292969, -3.659306049346924 ], [ -80.622917175292969, -3.658750057220459 ], [ -80.622642517089844, -3.658750057220459 ], [ -80.622642517089844, -3.658472061157113 ], [ -80.622360229492188, -3.658472061157113 ], [ -80.622360229492188, -3.65819406509388 ], [ -80.622085571289006, -3.65819406509388 ], [ -80.622085571289006, -3.657916069030705 ], [ -80.621528625488224, -3.657916069030705 ], [ -80.621528625488224, -3.657638072967472 ], [ -80.621162414550668, -3.657638072967472 ], [ -80.620971679687386, -3.657638072967472 ], [ -80.620971679687386, -3.65736198425293 ], [ -80.620414733886719, -3.65736198425293 ], [ -80.620414733886719, -3.657083988189697 ], [ -80.620140075683594, -3.657083988189697 ], [ -80.620140075683594, -3.656805992126465 ], [ -80.619583129882812, -3.656805992126465 ], [ -80.619583129882812, -3.656527996063232 ], [ -80.619026184082031, -3.656527996063232 ], [ -80.619026184082031, -3.655417919158879 ], [ -80.618751525878849, -3.655417919158879 ], [ -80.618751525878849, -3.654583930969238 ], [ -80.618469238281193, -3.654583930969238 ], [ -80.618469238281193, -3.654305934906006 ], [ -80.618194580078068, -3.654305934906006 ], [ -80.618194580078068, -3.6540269851684 ], [ -80.617919921874886, -3.6540269851684 ], [ -80.617919921874886, -3.653748989105168 ], [ -80.617362976074219, -3.653748989105168 ], [ -80.617362976074219, -3.653470993041992 ], [ -80.617080688476562, -3.653470993041992 ], [ -80.617080688476562, -3.652918100357056 ], [ -80.616806030273438, -3.652918100357056 ], [ -80.616806030273438, -3.651741981506291 ], [ -80.616806030273438, -3.651248931884709 ], [ -80.616531372070312, -3.651248931884709 ], [ -80.616531372070312, -3.650973081588688 ], [ -80.616249084472656, -3.650970935821476 ], [ -80.616249084472656, -3.650818109512272 ], [ -80.616249084472656, -3.650695085525456 ], [ -80.615974426269531, -3.650695085525456 ], [ -80.615974426269531, -3.650417089462223 ], [ -80.615692138671818, -3.650417089462223 ], [ -80.615692138671818, -3.650139093399048 ], [ -80.614303588867188, -3.650139093399048 ], [ -80.614303588867188, -3.649027109146118 ], [ -80.613746643066406, -3.649027109146118 ], [ -80.613746643066406, -3.648749113082886 ], [ -80.612640380859318, -3.648749113082886 ], [ -80.612640380859318, -3.648473024368229 ], [ -80.612358093261662, -3.648473024368229 ], [ -80.612358093261662, -3.648195028304997 ], [ -80.612083435058537, -3.648195028304997 ], [ -80.612083435058537, -3.6473610401153 ], [ -80.611808776855412, -3.6473610401153 ], [ -80.611808776855412, -3.647083044052067 ], [ -80.611251831054688, -3.647083044052067 ], [ -80.611251831054688, -3.646527051925659 ], [ -80.611526489257756, -3.646527051925659 ], [ -80.611526489257756, -3.645282030105534 ], [ -80.611526489257756, -3.644860982894841 ], [ -80.611251831054688, -3.644860982894841 ], [ -80.611251831054688, -3.644582986831608 ], [ -80.610969543457031, -3.644582986831608 ], [ -80.610969543457031, -3.644304990768376 ], [ -80.610694885253906, -3.644304990768376 ], [ -80.610694885253906, -3.644026994705143 ], [ -80.610420227050781, -3.644026994705143 ], [ -80.610420227050781, -3.643748998641911 ], [ -80.610137939453125, -3.643750905990601 ], [ -80.610137939453125, -3.643584012985229 ], [ -80.610137939453125, -3.643472909927368 ], [ -80.60986328125, -3.643472909927368 ], [ -80.60986328125, -3.643110036849976 ], [ -80.60986328125, -3.642916917800903 ], [ -80.609748840332031, -3.642916917800903 ], [ -80.609580993652344, -3.642916917800903 ], [ -80.609580993652344, -3.642620086669922 ], [ -80.609580993652344, -3.642360925674325 ], [ -80.609428405761662, -3.642360925674325 ], [ -80.609306335449162, -3.642360925674325 ], [ -80.609306335449162, -3.642146110534668 ], [ -80.609306335449162, -3.641807079315129 ], [ -80.609024047851506, -3.641807079315129 ], [ -80.609024047851506, -3.641655921935978 ], [ -80.609024047851506, -3.641529083251896 ], [ -80.608749389648381, -3.641529083251896 ], [ -80.608749389648381, -3.641251087188664 ], [ -80.608474731445256, -3.641251087188664 ], [ -80.608474731445256, -3.640973091125431 ], [ -80.608192443847543, -3.640973091125431 ], [ -80.608192443847543, -3.640415906906128 ], [ -80.607917785644531, -3.640415906906128 ], [ -80.607917785644531, -3.640137910842896 ], [ -80.607635498046875, -3.640137910842896 ], [ -80.607635498046875, -3.639859914779663 ], [ -80.60736083984375, -3.639859914779663 ], [ -80.60736083984375, -3.639581918716431 ], [ -80.607086181640625, -3.639585018157959 ], [ -80.607086181640625, -3.63902902603138 ], [ -80.606246948242188, -3.63902902603138 ], [ -80.606246948242188, -3.638750076293945 ], [ -80.605972290039006, -3.638750076293945 ], [ -80.605972290039006, -3.63902902603138 ], [ -80.604858398437386, -3.63902902603138 ], [ -80.604858398437386, -3.639307022094727 ], [ -80.603752136230469, -3.639307022094727 ], [ -80.603752136230469, -3.63902902603138 ], [ -80.603469848632812, -3.63902902603138 ], [ -80.603469848632812, -3.638472080230713 ], [ -80.603210449218693, -3.638472080230713 ], [ -80.603195190429688, -3.636250019073486 ], [ -80.602912902831974, -3.636250019073486 ], [ -80.602912902831974, -3.635972023010254 ], [ -80.601249694824219, -3.635972023010254 ], [ -80.601249694824219, -3.636528015136719 ], [ -80.600135803222656, -3.636528015136719 ], [ -80.600135803222656, -3.636806011199951 ], [ -80.599861145019474, -3.636806011199951 ], [ -80.599861145019474, -3.637084007263184 ], [ -80.599586486816349, -3.637084007263184 ], [ -80.599586486816349, -3.63736009597767 ], [ -80.598747253417912, -3.63736009597767 ], [ -80.598747253417912, -3.637638092041016 ], [ -80.597084045410156, -3.637638092041016 ], [ -80.597084045410156, -3.637916088104248 ], [ -80.596527099609318, -3.637916088104248 ], [ -80.596527099609318, -3.637638092041016 ], [ -80.596252441406193, -3.637638092041016 ], [ -80.596252441406193, -3.637916088104248 ], [ -80.595413208007699, -3.637916088104248 ], [ -80.595413208007699, -3.637638092041016 ], [ -80.594863891601562, -3.637638092041016 ], [ -80.594863891601562, -3.63736009597767 ], [ -80.594306945800781, -3.63736009597767 ], [ -80.594306945800781, -3.637084007263184 ], [ -80.594024658203125, -3.637084007263184 ], [ -80.594024658203125, -3.636965990066471 ], [ -80.594024658203125, -3.636806011199951 ], [ -80.59375, -3.636806011199951 ], [ -80.59375, -3.636528015136719 ], [ -80.593345642089844, -3.636528015136719 ], [ -80.593193054199162, -3.636528015136719 ], [ -80.593193054199162, -3.636404991149902 ], [ -80.593193054199162, -3.636250019073486 ], [ -80.593002319335881, -3.636250019073486 ], [ -80.592636108398381, -3.636250019073486 ], [ -80.592636108398381, -3.636104106903076 ], [ -80.592636108398381, -3.635972023010254 ], [ -80.592079162597543, -3.635972023010254 ], [ -80.5906982421875, -3.635972023010254 ], [ -80.590690612792969, -3.635694026947021 ], [ -80.590415954589844, -3.635694026947021 ], [ -80.590415954589844, -3.635416030883789 ], [ -80.590141296386662, -3.635416030883789 ], [ -80.590141296386662, -3.635138034820557 ], [ -80.588752746582031, -3.635138034820557 ], [ -80.588752746582031, -3.635416030883789 ], [ -80.58819580078125, -3.635416030883789 ], [ -80.58819580078125, -3.635972023010254 ], [ -80.587913513183594, -3.635972023010254 ], [ -80.587913513183594, -3.636250019073486 ], [ -80.587638854980469, -3.636250019073486 ], [ -80.587638854980469, -3.636528015136719 ], [ -80.587081909179631, -3.636528015136719 ], [ -80.587081909179631, -3.636806011199951 ], [ -80.585693359375, -3.636806011199951 ], [ -80.585693359375, -3.637084007263184 ], [ -80.584304809570312, -3.637084007263184 ], [ -80.584304809570312, -3.636806011199951 ], [ -80.583473205566349, -3.636806011199951 ], [ -80.583473205566349, -3.636528015136719 ], [ -80.583190917968693, -3.636528015136719 ], [ -80.583190917968693, -3.636250019073486 ], [ -80.5826416015625, -3.636250019073486 ], [ -80.5826416015625, -3.635972023010254 ], [ -80.582359313964844, -3.635972023010254 ], [ -80.582359313964844, -3.635694026947021 ], [ -80.582084655761719, -3.635694026947021 ], [ -80.582084655761719, -3.635416030883789 ], [ -80.581802368164062, -3.635416030883789 ], [ -80.581802368164062, -3.635138034820557 ], [ -80.581527709960938, -3.635138034820557 ], [ -80.581527709960938, -3.634860038757324 ], [ -80.580970764160156, -3.634860038757324 ], [ -80.580970764160156, -3.634583950042668 ], [ -80.580413818359318, -3.634583950042668 ], [ -80.580413818359318, -3.634305953979435 ], [ -80.580139160156193, -3.634305953979435 ], [ -80.580139160156193, -3.63402795791626 ], [ -80.579582214355355, -3.63402795791626 ], [ -80.579582214355355, -3.633749961853027 ], [ -80.579307556152344, -3.633749961853027 ], [ -80.579307556152344, -3.633471965789795 ], [ -80.579025268554688, -3.633471965789795 ], [ -80.579025268554688, -3.633193969726562 ], [ -80.578750610351562, -3.633193969726562 ], [ -80.578750610351562, -3.63291597366333 ], [ -80.578475952148438, -3.63291597366333 ], [ -80.578475952148438, -3.632637977600098 ], [ -80.578193664550781, -3.632637977600098 ], [ -80.578193664550781, -3.632359981536865 ], [ -80.577919006347656, -3.632361888885441 ], [ -80.577919006347656, -3.632083892822209 ], [ -80.57763671875, -3.632083892822209 ], [ -80.57763671875, -3.631805896758976 ], [ -80.577362060546818, -3.631805896758976 ], [ -80.577362060546818, -3.631249904632512 ], [ -80.577079772949162, -3.631249904632512 ], [ -80.577079772949162, -3.630971908569279 ], [ -80.576805114746037, -3.630971908569279 ], [ -80.576805114746037, -3.630693912506047 ], [ -80.576530456542855, -3.630693912506047 ], [ -80.576530456542855, -3.630415916442871 ], [ -80.576248168945199, -3.630415916442871 ], [ -80.576248168945199, -3.630137920379639 ], [ -80.575973510742188, -3.630137920379639 ], [ -80.575973510742188, -3.629859924316406 ], [ -80.575691223144531, -3.629862070083618 ], [ -80.575691223144531, -3.629584074020386 ], [ -80.575416564941406, -3.629584074020386 ], [ -80.575416564941406, -3.629306077957153 ], [ -80.575141906738281, -3.629306077957153 ], [ -80.575141906738281, -3.629028081893921 ], [ -80.574859619140625, -3.629028081893921 ], [ -80.574859619140625, -3.628750085830688 ], [ -80.5745849609375, -3.628750085830688 ], [ -80.5745849609375, -3.628192901611214 ], [ -80.574302673339787, -3.628192901611214 ], [ -80.574302673339787, -3.627918004989567 ], [ -80.574028015136662, -3.627918004989567 ], [ -80.574028015136662, -3.627640008926335 ], [ -80.573753356933537, -3.627640008926335 ], [ -80.573753356933537, -3.627358913421574 ], [ -80.573471069335881, -3.627362012863102 ], [ -80.573471069335881, -3.627084016799927 ], [ -80.573196411132699, -3.627084016799927 ], [ -80.573196411132699, -3.626805067062321 ], [ -80.572914123535156, -3.626805067062321 ], [ -80.572914123535156, -3.626249074935856 ], [ -80.572639465332031, -3.626249074935856 ], [ -80.572639465332031, -3.625971078872624 ], [ -80.572364807128906, -3.625971078872624 ], [ -80.572364807128906, -3.625695943832341 ], [ -80.57208251953125, -3.625695943832341 ], [ -80.57208251953125, -3.625417947769108 ], [ -80.571807861328125, -3.625417947769108 ], [ -80.571807861328125, -3.625138998031616 ], [ -80.571525573730469, -3.625138998031616 ], [ -80.571525573730469, -3.62486100196827 ], [ -80.571250915527287, -3.62486100196827 ], [ -80.571250915527287, -3.624583005905038 ], [ -80.570968627929631, -3.624583005905038 ], [ -80.570968627929631, -3.62402701377863 ], [ -80.570693969726506, -3.62402701377863 ], [ -80.570693969726506, -3.623749017715397 ], [ -80.570419311523381, -3.623749017715397 ], [ -80.570419311523381, -3.623471021652165 ], [ -80.570137023925724, -3.623471021652165 ], [ -80.570137023925724, -3.623194932937622 ], [ -80.569862365722656, -3.623194932937622 ], [ -80.569862365722656, -3.622638940811157 ], [ -80.569580078125, -3.622638940811157 ], [ -80.569580078125, -3.622360944747925 ], [ -80.569305419921875, -3.622360944747925 ], [ -80.569305419921875, -3.622082948684692 ], [ -80.56903076171875, -3.622082948684692 ], [ -80.56903076171875, -3.62180495262146 ], [ -80.568748474121094, -3.62180495262146 ], [ -80.568748474121094, -3.621526956558228 ], [ -80.568473815917969, -3.621526956558228 ], [ -80.568473815917969, -3.620970964431649 ], [ -80.568191528320312, -3.620973110198918 ], [ -80.568191528320312, -3.620695114135685 ], [ -80.567916870117131, -3.620695114135685 ], [ -80.567916870117131, -3.620417118072453 ], [ -80.567642211914006, -3.620417118072453 ], [ -80.567642211914006, -3.620138883590698 ], [ -80.567359924316349, -3.620138883590698 ], [ -80.567359924316349, -3.619582891464233 ], [ -80.567085266113224, -3.619582891464233 ], [ -80.567085266113224, -3.619304895401001 ], [ -80.566802978515511, -3.619304895401001 ], [ -80.566802978515511, -3.619026899337769 ], [ -80.5665283203125, -3.619026899337769 ], [ -80.5665283203125, -3.618473052978516 ], [ -80.566253662109375, -3.618473052978516 ], [ -80.566253662109375, -3.618195056915283 ], [ -80.565971374511719, -3.618195056915283 ], [ -80.565971374511719, -3.617917060851937 ], [ -80.565696716308594, -3.617917060851937 ], [ -80.565696716308594, -3.617361068725529 ], [ -80.565414428710938, -3.617361068725529 ], [ -80.565414428710938, -3.617083072662297 ], [ -80.565139770507812, -3.617083072662297 ], [ -80.565139770507812, -3.616805076599064 ], [ -80.564857482910156, -3.616805076599064 ], [ -80.564857482910156, -3.616250991821289 ], [ -80.564582824706974, -3.616250991821289 ], [ -80.564582824706974, -3.615972995758057 ], [ -80.564308166503849, -3.615972995758057 ], [ -80.564308166503849, -3.615694999694824 ], [ -80.564025878906193, -3.615694999694824 ], [ -80.564025878906193, -3.615139007568359 ], [ -80.563751220703011, -3.615139007568359 ], [ -80.563751220703011, -3.614861011505127 ], [ -80.563468933105355, -3.614861011505127 ], [ -80.563468933105355, -3.614582061767578 ], [ -80.563194274902344, -3.614582061767578 ], [ -80.563194274902344, -3.614028930664062 ], [ -80.562919616699219, -3.614028930664062 ], [ -80.562919616699219, -3.61375093460083 ], [ -80.562637329101562, -3.61375093460083 ], [ -80.562637329101562, -3.613472938537598 ], [ -80.562362670898438, -3.613472938537598 ], [ -80.562362670898438, -3.612915992736816 ], [ -80.562080383300781, -3.612915992736816 ], [ -80.562080383300781, -3.612637996673584 ], [ -80.561805725097656, -3.612637996673584 ], [ -80.561805725097656, -3.612360000610352 ], [ -80.561531066894474, -3.612360000610352 ], [ -80.561531066894474, -3.611807107925415 ], [ -80.561248779296818, -3.611807107925415 ], [ -80.561248779296818, -3.61152791976923 ], [ -80.560974121093693, -3.61152791976923 ], [ -80.560974121093693, -3.611249923705998 ], [ -80.560691833496037, -3.611249923705998 ], [ -80.560691833496037, -3.610693931579533 ], [ -80.560417175292855, -3.610693931579533 ], [ -80.560417175292855, -3.610415935516301 ], [ -80.560142517089844, -3.610415935516301 ], [ -80.560142517089844, -3.609859943389836 ], [ -80.559860229492188, -3.609859943389836 ], [ -80.559860229492188, -3.609584093093872 ], [ -80.559585571289062, -3.609584093093872 ], [ -80.559585571289062, -3.60930609703064 ], [ -80.559303283691406, -3.60930609703064 ], [ -80.559303283691406, -3.608750104904175 ], [ -80.559028625488281, -3.608750104904175 ], [ -80.559028625488281, -3.608472108840942 ], [ -80.558746337890625, -3.608472108840942 ], [ -80.558746337890625, -3.60819411277771 ], [ -80.558471679687443, -3.60819411277771 ], [ -80.558471679687443, -3.607637882232609 ], [ -80.558197021484318, -3.607637882232609 ], [ -80.558197021484318, -3.607359886169377 ], [ -80.557914733886662, -3.607362031936589 ], [ -80.557914733886662, -3.606806039810124 ], [ -80.557640075683537, -3.606806039810124 ], [ -80.557640075683537, -3.606528043746891 ], [ -80.557357788085881, -3.606528043746891 ], [ -80.557357788085881, -3.606250047683659 ], [ -80.557083129882812, -3.606250047683659 ], [ -80.557083129882812, -3.605694055557251 ], [ -80.556808471679688, -3.605694055557251 ], [ -80.556808471679688, -3.605416059494019 ], [ -80.556526184082031, -3.605416059494019 ], [ -80.556526184082031, -3.605138063430786 ], [ -80.556251525878906, -3.605138063430786 ], [ -80.556251525878906, -3.604582071304321 ], [ -80.55596923828125, -3.604583978652897 ], [ -80.55596923828125, -3.604305982589665 ], [ -80.555694580078125, -3.604305982589665 ], [ -80.555694580078125, -3.604027986526432 ], [ -80.555419921874943, -3.604027986526432 ], [ -80.555419921874943, -3.6037499904632 ], [ -80.555137634277287, -3.6037499904632 ], [ -80.555137634277287, -3.603193998336735 ], [ -80.554862976074162, -3.603193998336735 ], [ -80.554862976074162, -3.602916002273503 ], [ -80.554580688476506, -3.602916002273503 ], [ -80.554580688476506, -3.602361917495728 ], [ -80.554306030273381, -3.602361917495728 ], [ -80.554306030273381, -3.602083921432495 ], [ -80.554031372070312, -3.602083921432495 ], [ -80.554031372070312, -3.601527929305917 ], [ -80.553749084472656, -3.601527929305917 ], [ -80.553749084472656, -3.601249933242741 ], [ -80.553474426269531, -3.601249933242741 ], [ -80.553474426269531, -3.600692987442017 ], [ -80.553192138671875, -3.600692987442017 ], [ -80.553192138671875, -3.600418090820256 ], [ -80.55291748046875, -3.600418090820256 ], [ -80.55291748046875, -3.599862098693791 ], [ -80.552635192871094, -3.599862098693791 ], [ -80.552635192871094, -3.599304914474487 ], [ -80.552360534667969, -3.599304914474487 ], [ -80.552360534667969, -3.599026918411255 ], [ -80.552085876464787, -3.599026918411255 ], [ -80.552085876464787, -3.598474025726205 ], [ -80.551528930664006, -3.59847092628479 ], [ -80.551528930664006, -3.597917079925537 ], [ -80.551246643066349, -3.597917079925537 ], [ -80.551246643066349, -3.597361087799072 ], [ -80.550971984863168, -3.597361087799072 ], [ -80.550971984863168, -3.59708309173584 ], [ -80.550697326660156, -3.59708309173584 ], [ -80.550697326660156, -3.596527099609261 ], [ -80.5504150390625, -3.596527099609261 ], [ -80.5504150390625, -3.596249103546086 ], [ -80.550140380859375, -3.596249103546086 ], [ -80.550140380859375, -3.595695018768311 ], [ -80.549858093261719, -3.595695018768311 ], [ -80.549858093261719, -3.595417022705078 ], [ -80.549583435058594, -3.595417022705078 ], [ -80.549583435058594, -3.594861030578613 ], [ -80.549308776855469, -3.594861030578613 ], [ -80.549308776855469, -3.594583034515381 ], [ -80.549026489257812, -3.594583034515381 ], [ -80.549026489257812, -3.594027042388916 ], [ -80.548751831054631, -3.594027042388916 ], [ -80.548751831054631, -3.593749046325684 ], [ -80.548469543456974, -3.593749046325684 ], [ -80.548469543456974, -3.593194961547852 ], [ -80.548194885253849, -3.593194961547852 ], [ -80.548194885253849, -3.592916965484619 ], [ -80.547920227050668, -3.592916965484619 ], [ -80.547920227050668, -3.592638969421387 ], [ -80.547637939453011, -3.592638969421387 ], [ -80.547637939453011, -3.592360973358154 ], [ -80.54736328125, -3.592360973358154 ], [ -80.54736328125, -3.591528892517033 ], [ -80.547080993652344, -3.591528892517033 ], [ -80.547080993652344, -3.590970993041992 ], [ -80.546806335449219, -3.590972900390568 ], [ -80.546806335449219, -3.590416908264103 ], [ -80.546524047851562, -3.590416908264103 ], [ -80.546524047851562, -3.589860916137695 ], [ -80.546249389648438, -3.589860916137695 ], [ -80.546249389648438, -3.58930492401123 ], [ -80.545974731445312, -3.58930492401123 ], [ -80.545974731445312, -3.588751077651978 ], [ -80.545692443847599, -3.588751077651978 ], [ -80.545692443847599, -3.588195085525513 ], [ -80.545417785644474, -3.588195085525513 ], [ -80.545417785644474, -3.587639093399048 ], [ -80.545135498046818, -3.587639093399048 ], [ -80.545135498046818, -3.587081909179631 ], [ -80.544860839843693, -3.587081909179631 ], [ -80.544860839843693, -3.586803913116398 ], [ -80.544586181640511, -3.586803913116398 ], [ -80.544586181640511, -3.586251020431519 ], [ -80.544303894042969, -3.586251020431519 ], [ -80.544303894042969, -3.58569407463068 ], [ -80.544029235839844, -3.58569407463068 ], [ -80.544029235839844, -3.585138082504216 ], [ -80.543746948242188, -3.585138082504216 ], [ -80.543746948242188, -3.584582090377808 ], [ -80.543472290039062, -3.584582090377808 ], [ -80.543472290039062, -3.584028005599862 ], [ -80.543197631835938, -3.584028005599862 ], [ -80.543197631835938, -3.583472013473454 ], [ -80.542915344238281, -3.583472013473454 ], [ -80.542915344238281, -3.582916021346989 ], [ -80.542640686035099, -3.582916021346989 ], [ -80.542640686035099, -3.582638025283757 ], [ -80.542358398437443, -3.582638025283757 ], [ -80.542358398437443, -3.582083940505981 ], [ -80.542083740234318, -3.582083940505981 ], [ -80.542083740234318, -3.581527948379517 ], [ -80.541809082031193, -3.581527948379517 ], [ -80.541809082031193, -3.580971956253052 ], [ -80.541526794433537, -3.580971956253052 ], [ -80.541526794433537, -3.580415964126473 ], [ -80.541252136230469, -3.580415964126473 ], [ -80.541252136230469, -3.579859972000065 ], [ -80.540969848632812, -3.579862117767277 ], [ -80.540969848632812, -3.57930588722229 ], [ -80.540695190429688, -3.57930588722229 ], [ -80.540695190429688, -3.578749895095825 ], [ -80.540412902832031, -3.578749895095825 ], [ -80.540412902832031, -3.57819390296936 ], [ -80.540138244628906, -3.57819390296936 ], [ -80.540138244628906, -3.577915906906128 ], [ -80.539863586425781, -3.577915906906128 ], [ -80.539863586425781, -3.577359914779663 ], [ -80.539581298828125, -3.577362060546761 ], [ -80.539581298828125, -3.576806068420353 ], [ -80.539306640624943, -3.576806068420353 ], [ -80.539306640624943, -3.576250076293888 ], [ -80.539024353027287, -3.576250076293888 ], [ -80.539024353027287, -3.575694084167424 ], [ -80.538749694824162, -3.575694084167424 ], [ -80.538749694824162, -3.575139999389648 ], [ -80.538475036621037, -3.575139999389648 ], [ -80.538475036621037, -3.574584007263184 ], [ -80.538192749023324, -3.574584007263184 ], [ -80.538192749023324, -3.574028015136719 ], [ -80.537918090820312, -3.574028015136719 ], [ -80.537918090820312, -3.573471069335938 ], [ -80.537635803222656, -3.573471069335938 ], [ -80.537635803222656, -3.573193073272705 ], [ -80.537086486816406, -3.573193073272705 ], [ -80.537086486816406, -3.572917938232422 ], [ -80.536529541015625, -3.572917938232422 ], [ -80.536529541015625, -3.572639942169189 ], [ -80.536247253417969, -3.572639942169189 ], [ -80.536247253417969, -3.572082996368408 ], [ -80.535972595214787, -3.572082996368408 ], [ -80.535972595214787, -3.571805000305176 ], [ -80.535697937011662, -3.571805000305176 ], [ -80.535697937011662, -3.571527004241943 ], [ -80.535415649414006, -3.571527004241943 ], [ -80.535415649414006, -3.571249008178711 ], [ -80.535140991210824, -3.571249008178711 ], [ -80.535140991210824, -3.570138931274357 ], [ -80.534858703613168, -3.570138931274357 ], [ -80.534858703613168, -3.56930494308466 ], [ -80.534584045410156, -3.56930494308466 ], [ -80.534584045410156, -3.568748950958252 ], [ -80.5343017578125, -3.568748950958252 ], [ -80.5343017578125, -3.568195104598999 ], [ -80.534027099609375, -3.568195104598999 ], [ -80.534027099609375, -3.567639112472534 ], [ -80.53375244140625, -3.567639112472534 ], [ -80.53375244140625, -3.567082881927433 ], [ -80.533470153808594, -3.567082881927433 ], [ -80.533470153808594, -3.566971063613892 ], [ -80.533470153808594, -3.566526889800969 ], [ -80.533195495605469, -3.566526889800969 ], [ -80.533195495605469, -3.565973043441716 ], [ -80.532913208007756, -3.565973043441716 ], [ -80.532913208007756, -3.565417051315308 ], [ -80.532638549804631, -3.565417051315308 ], [ -80.532638549804631, -3.564861059188843 ], [ -80.532363891601506, -3.564861059188843 ], [ -80.532363891601506, -3.564305067062378 ], [ -80.532081604003849, -3.564305067062378 ], [ -80.532081604003849, -3.563749074935913 ], [ -80.531845092773438, -3.563749074935913 ], [ -80.531806945800668, -3.563194990158024 ], [ -80.531524658203125, -3.563194990158024 ], [ -80.531524658203125, -3.56293511390686 ], [ -80.531524658203125, -3.562638998031559 ], [ -80.531402587890568, -3.562638998031559 ], [ -80.53125, -3.562638998031559 ], [ -80.53125, -3.562382936477661 ], [ -80.53125, -3.562083005905095 ], [ -80.530975341796875, -3.562083005905095 ], [ -80.530975341796875, -3.561912059783936 ], [ -80.530975341796875, -3.561528921127319 ], [ -80.530693054199219, -3.561528921127319 ], [ -80.530693054199219, -3.561428070068303 ], [ -80.530693054199219, -3.560972929000741 ], [ -80.530418395996094, -3.560972929000741 ], [ -80.530418395996094, -3.560416936874333 ], [ -80.530136108398438, -3.560416936874333 ], [ -80.530136108398438, -3.559859991073608 ], [ -80.529861450195256, -3.559859991073608 ], [ -80.529861450195256, -3.559307098388615 ], [ -80.529586791992131, -3.559307098388615 ], [ -80.529586791992131, -3.558471918106079 ], [ -80.529304504394474, -3.558471918106079 ], [ -80.529304504394474, -3.557915925979614 ], [ -80.529029846191349, -3.557915925979614 ], [ -80.529029846191349, -3.557359933853149 ], [ -80.528747558593693, -3.557359933853149 ], [ -80.528747558593693, -3.556806087493896 ], [ -80.528472900390625, -3.556806087493896 ], [ -80.528472900390625, -3.556250095367318 ], [ -80.5281982421875, -3.556250095367318 ], [ -80.528190612792969, -3.55569410324091 ], [ -80.527915954589844, -3.55569410324091 ], [ -80.527915954589844, -3.555138111114445 ], [ -80.527641296386719, -3.555138111114445 ], [ -80.527641296386719, -3.55458402633667 ], [ -80.527359008789062, -3.55458402633667 ], [ -80.527359008789062, -3.554028034210205 ], [ -80.527084350585938, -3.554028034210205 ], [ -80.527084350585938, -3.553750038146973 ], [ -80.526916503906193, -3.553750038146973 ], [ -80.526802062988281, -3.553750038146973 ], [ -80.526802062988281, -3.553529024124146 ], [ -80.526802062988281, -3.553194046020508 ], [ -80.526527404785099, -3.553194046020508 ], [ -80.526527404785099, -3.553014039993229 ], [ -80.526527404785099, -3.552638053893929 ], [ -80.526252746581974, -3.552639961242676 ], [ -80.526252746581974, -3.552496910095215 ], [ -80.526252746581974, -3.552083969116211 ], [ -80.525970458984318, -3.552083969116211 ], [ -80.525970458984318, -3.551968097686711 ], [ -80.525970458984318, -3.551527976989746 ], [ -80.525733947753906, -3.551527976989746 ], [ -80.525695800781193, -3.550971984863281 ], [ -80.52541351318348, -3.550971984863281 ], [ -80.52541351318348, -3.550415992736816 ], [ -80.525138854980469, -3.550415992736816 ], [ -80.525138854980469, -3.549583911895695 ], [ -80.524864196777344, -3.549583911895695 ], [ -80.524864196777344, -3.549027919769287 ], [ -80.524581909179688, -3.549027919769287 ], [ -80.524581909179688, -3.548471927642822 ], [ -80.524307250976562, -3.548471927642822 ], [ -80.524307250976562, -3.547640085220337 ], [ -80.524024963378906, -3.547640085220337 ], [ -80.524024963378906, -3.547084093093872 ], [ -80.523750305175781, -3.547084093093872 ], [ -80.523750305175781, -3.546528100967407 ], [ -80.523475646972599, -3.546528100967407 ], [ -80.523475646972599, -3.545974016189575 ], [ -80.523193359374943, -3.54597091674799 ], [ -80.523193359374943, -3.54541802406311 ], [ -80.522918701171818, -3.54541802406311 ], [ -80.522918701171818, -3.544861078262272 ], [ -80.522636413574162, -3.544861078262272 ], [ -80.522636413574162, -3.544305086135864 ], [ -80.52236175537098, -3.544305086135864 ], [ -80.52236175537098, -3.543749094009399 ], [ -80.522087097167969, -3.543749094009399 ], [ -80.522087097167969, -3.543195009231511 ], [ -80.521804809570312, -3.543195009231511 ], [ -80.521804809570312, -3.542639017105046 ], [ -80.521530151367188, -3.542639017105046 ], [ -80.521530151367188, -3.542083024978581 ], [ -80.521247863769531, -3.542083024978581 ], [ -80.521247863769531, -3.541527032852116 ], [ -80.520973205566406, -3.541527032852116 ], [ -80.520973205566406, -3.540694952011108 ], [ -80.52069091796875, -3.540694952011108 ], [ -80.52069091796875, -3.539860963821297 ], [ -80.520416259765625, -3.539860963821297 ], [ -80.520416259765625, -3.539026975631657 ], [ -80.520141601562443, -3.539026975631657 ], [ -80.520141601562443, -3.537916898727417 ], [ -80.519859313964787, -3.537916898727417 ], [ -80.519859313964787, -3.53708291053772 ], [ -80.519584655761662, -3.53708291053772 ], [ -80.519584655761662, -3.536248922347909 ], [ -80.519302368164006, -3.536251068115178 ], [ -80.519302368164006, -3.53541707992548 ], [ -80.519027709960824, -3.53541707992548 ], [ -80.519027709960824, -3.534861087799015 ], [ -80.518753051757812, -3.534861087799015 ], [ -80.518753051757812, -3.534025907516479 ], [ -80.518470764160156, -3.534029006958008 ], [ -80.518470764160156, -3.533195018768197 ], [ -80.518196105957031, -3.533195018768197 ], [ -80.518196105957031, -3.532638072967529 ], [ -80.517913818359375, -3.532638072967529 ], [ -80.517913818359375, -3.531806945800781 ], [ -80.51763916015625, -3.531806945800781 ], [ -80.51763916015625, -3.530972003936768 ], [ -80.517364501953125, -3.530972003936768 ], [ -80.517364501953125, -3.530416011810303 ], [ -80.517082214355412, -3.530416011810303 ], [ -80.517082214355412, -3.529583930969181 ], [ -80.516807556152287, -3.529582023620605 ], [ -80.516807556152287, -3.529305934905949 ], [ -80.516250610351506, -3.529305934905949 ], [ -80.516250610351506, -3.529027938842717 ], [ -80.515975952148324, -3.529027938842717 ], [ -80.515975952148324, -3.528749942779484 ], [ -80.515693664550781, -3.528749942779484 ], [ -80.515693664550781, -3.528471946716252 ], [ -80.516250610351506, -3.528471946716252 ], [ -80.516250610351506, -3.528193950653076 ], [ -80.516525268554631, -3.528193950653076 ], [ -80.516525268554631, -3.527915954589844 ], [ -80.516250610351506, -3.527915954589844 ], [ -80.516250610351506, -3.527359962463379 ], [ -80.515975952148324, -3.527359962463379 ], [ -80.515975952148324, -3.526527881622258 ], [ -80.515693664550781, -3.526527881622258 ], [ -80.515693664550781, -3.525971889495793 ], [ -80.515419006347656, -3.525971889495793 ], [ -80.515419006347656, -3.525137901306096 ], [ -80.51513671875, -3.525137901306096 ], [ -80.51513671875, -3.524306058883667 ], [ -80.514862060546875, -3.524306058883667 ], [ -80.514862060546875, -3.52347207069397 ], [ -80.514579772949219, -3.52347207069397 ], [ -80.514579772949219, -3.522639989852848 ], [ -80.514305114746094, -3.522639989852848 ], [ -80.514305114746094, -3.521806001663151 ], [ -80.514030456542912, -3.521806001663151 ], [ -80.514030456542912, -3.521250009536743 ], [ -80.513748168945256, -3.521250009536743 ], [ -80.513748168945256, -3.520695924758797 ], [ -80.513473510742131, -3.520695924758797 ], [ -80.513473510742131, -3.520139932632389 ], [ -80.513191223144474, -3.520139932632389 ], [ -80.513191223144474, -3.519583940505925 ], [ -80.512916564941349, -3.519583940505925 ], [ -80.512916564941349, -3.519026994705087 ], [ -80.512641906738281, -3.519026994705087 ], [ -80.512641906738281, -3.518471002578679 ], [ -80.512359619140625, -3.518471002578679 ], [ -80.512359619140625, -3.517918109893799 ], [ -80.5120849609375, -3.517918109893799 ], [ -80.5120849609375, -3.517082929611206 ], [ -80.511802673339844, -3.517082929611206 ], [ -80.511802673339844, -3.516526937484741 ], [ -80.511528015136719, -3.516526937484741 ], [ -80.511528015136719, -3.515139102935734 ], [ -80.511253356933594, -3.515139102935734 ], [ -80.511253356933594, -3.514583110809269 ], [ -80.510971069335938, -3.514583110809269 ], [ -80.510971069335938, -3.514027118682804 ], [ -80.510696411132756, -3.514027118682804 ], [ -80.510696411132756, -3.513473033905029 ], [ -80.510414123535099, -3.513473033905029 ], [ -80.510414123535099, -3.5123610496521 ], [ -80.510139465331974, -3.5123610496521 ], [ -80.510139465331974, -3.511527061462346 ], [ -80.509864807128849, -3.511527061462346 ], [ -80.509864807128849, -3.51097297668457 ], [ -80.509582519531136, -3.51097297668457 ], [ -80.509582519531136, -3.510416984558105 ], [ -80.509307861328125, -3.510416984558105 ], [ -80.509307861328125, -3.509860992431641 ], [ -80.509025573730469, -3.509860992431641 ], [ -80.509025573730469, -3.509305000305176 ], [ -80.508750915527344, -3.509305000305176 ], [ -80.508750915527344, -3.508472919464111 ], [ -80.508468627929688, -3.508472919464111 ], [ -80.508468627929688, -3.507916927337646 ], [ -80.508193969726562, -3.507916927337646 ], [ -80.508193969726562, -3.507360935211182 ], [ -80.507919311523438, -3.507360935211182 ], [ -80.507919311523438, -3.506807088851929 ], [ -80.507637023925781, -3.506807088851929 ], [ -80.507637023925781, -3.506251096725464 ], [ -80.507362365722599, -3.506251096725464 ], [ -80.507362365722599, -3.505973100662231 ], [ -80.507080078124943, -3.505973100662231 ], [ -80.507080078124943, -3.505415916442814 ], [ -80.506805419921818, -3.505415916442814 ], [ -80.506805419921818, -3.505137920379582 ], [ -80.506530761718636, -3.505137920379582 ], [ -80.506530761718636, -3.504581928253117 ], [ -80.50624847412098, -3.504581928253117 ], [ -80.50624847412098, -3.50430703163147 ], [ -80.505416870117188, -3.50430703163147 ], [ -80.505416870117188, -3.504028081893864 ], [ -80.504859924316406, -3.504028081893864 ], [ -80.504859924316406, -3.503750085830688 ], [ -80.503471374511662, -3.503750085830688 ], [ -80.503471374511662, -3.504028081893864 ], [ -80.502639770507812, -3.504028081893864 ], [ -80.502639770507812, -3.50430703163147 ], [ -80.502082824707031, -3.50430703163147 ], [ -80.502082824707031, -3.504581928253117 ], [ -80.501419067382812, -3.504581928253117 ], [ -80.501251220703068, -3.504581928253117 ], [ -80.501251220703068, -3.504859924316349 ], [ -80.500694274902287, -3.504859924316349 ], [ -80.500694274902287, -3.505137920379582 ], [ -80.500968933105412, -3.505137920379582 ], [ -80.500968933105412, -3.505415916442814 ], [ -80.501251220703068, -3.505415916442814 ], [ -80.501251220703068, -3.505973100662231 ], [ -80.50152587890625, -3.505973100662231 ], [ -80.50152587890625, -3.506529092788696 ], [ -80.501808166503906, -3.506529092788696 ], [ -80.501808166503906, -3.507082939147949 ], [ -80.502639770507812, -3.507082939147949 ], [ -80.502639770507812, -3.506529092788696 ], [ -80.502822875976562, -3.506529092788696 ], [ -80.502914428710938, -3.506529092788696 ], [ -80.502914428710938, -3.505973100662231 ], [ -80.50319671630848, -3.505973100662231 ], [ -80.50319671630848, -3.505415916442814 ], [ -80.503471374511662, -3.505415916442814 ], [ -80.503471374511662, -3.505137920379582 ], [ -80.503753662109318, -3.505137920379582 ], [ -80.503753662109318, -3.504859924316349 ], [ -80.504585266113281, -3.504859924316349 ], [ -80.504585266113281, -3.505137920379582 ], [ -80.504859924316406, -3.505137920379582 ], [ -80.504859924316406, -3.505415916442814 ], [ -80.505416870117188, -3.505415916442814 ], [ -80.505416870117188, -3.505695104598999 ], [ -80.505691528320312, -3.505695104598999 ], [ -80.505691528320312, -3.505973100662231 ], [ -80.505973815917969, -3.505973100662231 ], [ -80.505973815917969, -3.507916927337646 ], [ -80.50624847412098, -3.507916927337646 ], [ -80.50624847412098, -3.509305000305176 ], [ -80.506530761718636, -3.509305000305176 ], [ -80.506530761718636, -3.510416984558105 ], [ -80.506805419921818, -3.510416984558105 ], [ -80.506805419921818, -3.512718915939331 ], [ -80.506805419921818, -3.514305114746037 ], [ -80.505691528320312, -3.514305114746037 ], [ -80.505691528320312, -3.51374888420105 ], [ -80.505416870117188, -3.51374888420105 ], [ -80.505416870117188, -3.513473033905029 ], [ -80.505142211914062, -3.513473033905029 ], [ -80.505142211914062, -3.513195037841797 ], [ -80.504859924316406, -3.513195037841797 ], [ -80.504859924316406, -3.512639045715332 ], [ -80.504585266113281, -3.512639045715332 ], [ -80.504585266113281, -3.5123610496521 ], [ -80.504302978515568, -3.5123610496521 ], [ -80.504302978515568, -3.511805057525521 ], [ -80.504028320312443, -3.511805057525521 ], [ -80.504028320312443, -3.511527061462346 ], [ -80.503753662109318, -3.511527061462346 ], [ -80.503753662109318, -3.511249065399113 ], [ -80.503471374511662, -3.511250972747803 ], [ -80.503471374511662, -3.51097297668457 ], [ -80.50319671630848, -3.51097297668457 ], [ -80.50319671630848, -3.510416984558105 ], [ -80.502914428710938, -3.510416984558105 ], [ -80.502914428710938, -3.510138988494873 ], [ -80.502639770507812, -3.510138988494873 ], [ -80.502639770507812, -3.509860992431641 ], [ -80.502357482910156, -3.509860992431641 ], [ -80.502357482910156, -3.509582996368408 ], [ -80.501808166503906, -3.509582996368408 ], [ -80.501808166503906, -3.509305000305176 ], [ -80.50152587890625, -3.509305000305176 ], [ -80.50152587890625, -3.509027004241943 ], [ -80.501251220703068, -3.509027004241943 ], [ -80.501251220703068, -3.508750915527344 ], [ -80.500968933105412, -3.508750915527344 ], [ -80.500968933105412, -3.508472919464111 ], [ -80.500694274902287, -3.508472919464111 ], [ -80.500694274902287, -3.508194923400879 ], [ -80.500419616699162, -3.508194923400879 ], [ -80.500419616699162, -3.507916927337646 ], [ -80.500137329101506, -3.507916927337646 ], [ -80.500137329101506, -3.507360935211182 ], [ -80.499862670898438, -3.507360935211182 ], [ -80.499862670898438, -3.507082939147949 ], [ -80.499580383300781, -3.507082939147949 ], [ -80.499580383300781, -3.506807088851929 ], [ -80.499305725097656, -3.506807088851929 ], [ -80.499305725097656, -3.506529092788696 ], [ -80.499031066894531, -3.506529092788696 ], [ -80.499031066894531, -3.506251096725464 ], [ -80.498191833496094, -3.506251096725464 ], [ -80.498191833496094, -3.506807088851929 ], [ -80.497917175292912, -3.506807088851929 ], [ -80.497917175292912, -3.507916927337646 ], [ -80.497642517089787, -3.507916927337646 ], [ -80.497642517089787, -3.508750915527344 ], [ -80.497917175292912, -3.508750915527344 ], [ -80.497917175292912, -3.509582996368408 ], [ -80.498191833496094, -3.509582996368408 ], [ -80.498191833496094, -3.509860992431641 ], [ -80.49847412109375, -3.509860992431641 ], [ -80.49847412109375, -3.510138988494873 ], [ -80.499031066894531, -3.510138988494873 ], [ -80.499031066894531, -3.510416984558105 ], [ -80.499305725097656, -3.510416984558105 ], [ -80.499305725097656, -3.51097297668457 ], [ -80.499031066894531, -3.51097297668457 ], [ -80.499031066894531, -3.511250972747803 ], [ -80.498191833496094, -3.511250972747803 ], [ -80.498191833496094, -3.51097297668457 ], [ -80.497917175292912, -3.51097297668457 ], [ -80.497917175292912, -3.510694980621338 ], [ -80.497360229492131, -3.510694980621338 ], [ -80.497360229492131, -3.510416984558105 ], [ -80.497085571289006, -3.510416984558105 ], [ -80.497085571289006, -3.510138988494873 ], [ -80.496803283691293, -3.510138988494873 ], [ -80.496803283691293, -3.509860992431641 ], [ -80.496528625488281, -3.509860992431641 ], [ -80.496528625488281, -3.509582996368408 ], [ -80.496246337890625, -3.509582996368408 ], [ -80.496246337890625, -3.508194923400879 ], [ -80.496528625488281, -3.508194923400879 ], [ -80.496528625488281, -3.507916927337646 ], [ -80.496803283691293, -3.507916927337646 ], [ -80.496803283691293, -3.506529092788696 ], [ -80.494857788085938, -3.506529092788696 ], [ -80.494857788085938, -3.506251096725464 ], [ -80.494583129882756, -3.506251096725464 ], [ -80.494583129882756, -3.50586295127863 ], [ -80.494583129882756, -3.505695104598999 ], [ -80.494857788085938, -3.505695104598999 ], [ -80.494857788085938, -3.505415916442814 ], [ -80.495140075683594, -3.505415916442814 ], [ -80.495140075683594, -3.505137920379582 ], [ -80.495841979980412, -3.505137920379582 ], [ -80.496528625488281, -3.505137920379582 ], [ -80.496528625488281, -3.504859924316349 ], [ -80.496803283691293, -3.504859924316349 ], [ -80.496803283691293, -3.50430703163147 ], [ -80.497085571289006, -3.50430703163147 ], [ -80.497085571289006, -3.504028081893864 ], [ -80.497917175292912, -3.504028081893864 ], [ -80.497917175292912, -3.503750085830688 ], [ -80.498191833496094, -3.503750085830688 ], [ -80.498191833496094, -3.503472089767456 ], [ -80.499862670898438, -3.503472089767456 ], [ -80.499862670898438, -3.503194093704224 ], [ -80.500137329101506, -3.503194093704224 ], [ -80.500137329101506, -3.50208401679987 ], [ -80.499305725097656, -3.50208401679987 ], [ -80.499305725097656, -3.501806020736637 ], [ -80.498611450195256, -3.501806020736637 ], [ -80.498191833496094, -3.501806020736637 ], [ -80.498191833496094, -3.501250028610173 ], [ -80.497917175292912, -3.501250028610173 ], [ -80.497917175292912, -3.50097203254694 ], [ -80.497642517089787, -3.50097203254694 ], [ -80.497642517089787, -3.500694036483708 ], [ -80.497360229492131, -3.500694036483708 ], [ -80.497360229492131, -3.500416040420475 ], [ -80.496528625488281, -3.500416040420475 ], [ -80.496528625488281, -3.500694036483708 ], [ -80.495697021484375, -3.500694036483708 ], [ -80.495697021484375, -3.500416040420475 ], [ -80.495414733886719, -3.500416040420475 ], [ -80.495414733886719, -3.5001380443573 ], [ -80.495140075683594, -3.5001380443573 ], [ -80.495140075683594, -3.499860048294067 ], [ -80.494583129882756, -3.499860048294067 ], [ -80.494583129882756, -3.499583959579354 ], [ -80.493049621581974, -3.499583959579354 ], [ -80.492584228515568, -3.499583959579354 ], [ -80.490974426269474, -3.499583959579354 ], [ -80.490974426269474, -3.499305963516122 ], [ -80.490692138671818, -3.499305963516122 ], [ -80.490692138671818, -3.499027967452946 ], [ -80.490417480468636, -3.499027967452946 ], [ -80.490417480468636, -3.498749971389714 ], [ -80.489860534667969, -3.498749971389714 ], [ -80.489860534667969, -3.499027967452946 ], [ -80.487915039062443, -3.499027967452946 ], [ -80.487915039062443, -3.499305963516122 ], [ -80.487289428710938, -3.499305963516122 ], [ -80.487083435058594, -3.499305963516122 ], [ -80.487083435058594, -3.499027967452946 ], [ -80.486251831054688, -3.499027967452946 ], [ -80.486251831054688, -3.498749971389714 ], [ -80.485137939453068, -3.498749971389714 ], [ -80.485137939453068, -3.498471975326481 ], [ -80.484024047851449, -3.498471975326481 ], [ -80.484024047851449, -3.498193979263249 ], [ -80.483192443847656, -3.498193979263249 ], [ -80.483192443847656, -3.497915983200016 ], [ -80.48236083984375, -3.497915983200016 ], [ -80.48236083984375, -3.498193979263249 ], [ -80.480697631835938, -3.498193979263249 ], [ -80.480697631835938, -3.498471975326481 ], [ -80.480140686035156, -3.498471975326481 ], [ -80.480140686035156, -3.498749971389714 ], [ -80.479583740234375, -3.498749971389714 ], [ -80.479583740234375, -3.499027967452946 ], [ -80.47930908203125, -3.499027967452946 ], [ -80.47930908203125, -3.498471975326481 ], [ -80.479026794433594, -3.498471975326481 ], [ -80.479026794433594, -3.498193979263249 ], [ -80.478469848632756, -3.498193979263249 ], [ -80.478469848632756, -3.498471975326481 ], [ -80.478195190429631, -3.498471975326481 ], [ -80.478195190429631, -3.498749971389714 ], [ -80.477912902831974, -3.498749971389714 ], [ -80.477912902831974, -3.499305963516122 ], [ -80.477638244628793, -3.499305963516122 ], [ -80.477638244628793, -3.499583959579354 ], [ -80.477363586425781, -3.499583959579354 ], [ -80.477363586425781, -3.5001380443573 ], [ -80.477638244628793, -3.5001380443573 ], [ -80.477638244628793, -3.500416040420475 ], [ -80.477363586425781, -3.500416040420475 ], [ -80.477363586425781, -3.500694036483708 ], [ -80.477081298828125, -3.500694036483708 ], [ -80.477081298828125, -3.50097203254694 ], [ -80.476806640625, -3.50097203254694 ], [ -80.476806640625, -3.501528024673405 ], [ -80.476524353027344, -3.501528024673405 ], [ -80.476524353027344, -3.501806020736637 ], [ -80.476249694824219, -3.501806020736637 ], [ -80.476249694824219, -3.50208401679987 ], [ -80.475975036621094, -3.50208401679987 ], [ -80.475975036621094, -3.502360105514526 ], [ -80.475692749023381, -3.502360105514526 ], [ -80.475692749023381, -3.502916097640991 ], [ -80.475418090820256, -3.502916097640991 ], [ -80.475418090820256, -3.503194093704224 ], [ -80.474861145019474, -3.503194093704224 ], [ -80.474861145019474, -3.503472089767456 ], [ -80.474586486816293, -3.503472089767456 ], [ -80.474586486816293, -3.503750085830688 ], [ -80.47430419921875, -3.503750085830688 ], [ -80.47430419921875, -3.504028081893864 ], [ -80.474029541015625, -3.504028081893864 ], [ -80.474029541015625, -3.50430703163147 ], [ -80.473747253417969, -3.50430703163147 ], [ -80.473747253417969, -3.504859924316349 ], [ -80.473472595214844, -3.504859924316349 ], [ -80.473472595214844, -3.505137920379582 ], [ -80.473197937011719, -3.505137920379582 ], [ -80.473197937011719, -3.504951953887883 ], [ -80.473197937011719, -3.504859924316349 ], [ -80.472084045410099, -3.504859924316349 ], [ -80.472084045410099, -3.504581928253117 ], [ -80.471801757812443, -3.504581928253117 ], [ -80.471801757812443, -3.50430703163147 ], [ -80.47125244140625, -3.50430703163147 ], [ -80.47125244140625, -3.504581928253117 ], [ -80.470695495605469, -3.504581928253117 ], [ -80.470695495605469, -3.50430703163147 ], [ -80.469581604003906, -3.50430703163147 ], [ -80.469581604003906, -3.504028081893864 ], [ -80.469306945800724, -3.504028081893864 ], [ -80.469306945800724, -3.503750085830688 ], [ -80.468475341796818, -3.503750085830688 ], [ -80.468475341796818, -3.504028081893864 ], [ -80.467918395996094, -3.504028081893864 ], [ -80.467918395996094, -3.50430703163147 ], [ -80.467361450195312, -3.50430703163147 ], [ -80.467361450195312, -3.504028081893864 ], [ -80.467086791992188, -3.504028081893864 ], [ -80.467086791992188, -3.502638101577759 ], [ -80.467361450195312, -3.502638101577759 ], [ -80.467361450195312, -3.502360105514526 ], [ -80.467636108398438, -3.502360105514526 ], [ -80.467636108398438, -3.50097203254694 ], [ -80.467918395996094, -3.50097203254694 ], [ -80.467918395996094, -3.500416040420475 ], [ -80.468475341796818, -3.500416040420475 ], [ -80.468475341796818, -3.5001380443573 ], [ -80.469306945800724, -3.5001380443573 ], [ -80.469306945800724, -3.500416040420475 ], [ -80.469581604003906, -3.500416040420475 ], [ -80.469581604003906, -3.5001380443573 ], [ -80.470695495605469, -3.5001380443573 ], [ -80.470695495605469, -3.499860048294067 ], [ -80.470970153808594, -3.499860048294067 ], [ -80.470970153808594, -3.5001380443573 ], [ -80.47125244140625, -3.5001380443573 ], [ -80.47125244140625, -3.499583959579354 ], [ -80.471527099609318, -3.499583959579354 ], [ -80.471527099609318, -3.499305963516122 ], [ -80.472358703613224, -3.499305963516122 ], [ -80.472358703613224, -3.499027967452946 ], [ -80.472640991210881, -3.499027967452946 ], [ -80.472640991210881, -3.498749971389714 ], [ -80.473197937011719, -3.498749971389714 ], [ -80.473197937011719, -3.499027967452946 ], [ -80.473747253417969, -3.499027967452946 ], [ -80.473747253417969, -3.498749971389714 ], [ -80.474586486816293, -3.498749971389714 ], [ -80.474586486816293, -3.498471975326481 ], [ -80.474861145019474, -3.498471975326481 ], [ -80.474861145019474, -3.498193979263249 ], [ -80.473197937011719, -3.498193979263249 ], [ -80.473197937011719, -3.497915983200016 ], [ -80.472640991210881, -3.497915983200016 ], [ -80.472640991210881, -3.497637987136784 ], [ -80.470695495605469, -3.497637987136784 ], [ -80.470695495605469, -3.497359991073552 ], [ -80.470413208007812, -3.497361898422241 ], [ -80.470413208007812, -3.497083902359009 ], [ -80.469863891601562, -3.497083902359009 ], [ -80.469863891601562, -3.496805906295776 ], [ -80.469581604003906, -3.496805906295776 ], [ -80.469581604003906, -3.496527910232544 ], [ -80.469306945800724, -3.496527910232544 ], [ -80.469306945800724, -3.496249914169312 ], [ -80.46875, -3.496249914169312 ], [ -80.46875, -3.495971918105965 ], [ -80.468475341796818, -3.495971918105965 ], [ -80.468475341796818, -3.495693922042733 ], [ -80.468193054199105, -3.495693922042733 ], [ -80.468193054199105, -3.495415925979557 ], [ -80.467636108398438, -3.495415925979557 ], [ -80.467636108398438, -3.495137929916325 ], [ -80.467361450195312, -3.495137929916325 ], [ -80.467361450195312, -3.494862079620304 ], [ -80.467086791992188, -3.494862079620304 ], [ -80.467086791992188, -3.494584083557072 ], [ -80.466804504394531, -3.494584083557072 ], [ -80.466804504394531, -3.494862079620304 ], [ -80.466529846191406, -3.494862079620304 ], [ -80.466529846191406, -3.495415925979557 ], [ -80.46624755859375, -3.495415925979557 ], [ -80.46624755859375, -3.495971918105965 ], [ -80.464859008788949, -3.495971918105965 ], [ -80.464859008788949, -3.495693922042733 ], [ -80.464027404785156, -3.495693922042733 ], [ -80.464027404785156, -3.495415925979557 ], [ -80.463470458984375, -3.495415925979557 ], [ -80.463470458984375, -3.495137929916325 ], [ -80.462638854980412, -3.495137929916325 ], [ -80.462638854980412, -3.495971918105965 ], [ -80.462913513183537, -3.495971918105965 ], [ -80.462913513183537, -3.496249914169312 ], [ -80.463752746582031, -3.496249914169312 ], [ -80.463752746582031, -3.496527910232544 ], [ -80.464027404785156, -3.496527910232544 ], [ -80.464027404785156, -3.497639894485474 ], [ -80.463752746582031, -3.497637987136784 ], [ -80.463752746582031, -3.497915983200016 ], [ -80.463470458984375, -3.497915983200016 ], [ -80.463470458984375, -3.498193979263249 ], [ -80.46319580078125, -3.498193979263249 ], [ -80.46319580078125, -3.498471975326481 ], [ -80.462638854980412, -3.498471975326481 ], [ -80.462638854980412, -3.498193979263249 ], [ -80.460693359375, -3.498193979263249 ], [ -80.460693359375, -3.498471975326481 ], [ -80.460418701171875, -3.498471975326481 ], [ -80.460418701171875, -3.499027967452946 ], [ -80.460975646972656, -3.499027967452946 ], [ -80.460975646972656, -3.499860048294067 ], [ -80.461250305175781, -3.499860048294067 ], [ -80.461250305175781, -3.50097203254694 ], [ -80.461524963378906, -3.50097203254694 ], [ -80.461524963378906, -3.501528024673405 ], [ -80.462081909179631, -3.501528024673405 ], [ -80.462081909179631, -3.501806020736637 ], [ -80.462364196777287, -3.501806020736637 ], [ -80.462364196777287, -3.50208401679987 ], [ -80.462638854980412, -3.50208401679987 ], [ -80.462638854980412, -3.502315044403076 ], [ -80.462638854980412, -3.502638101577759 ], [ -80.462364196777287, -3.502638101577759 ], [ -80.462364196777287, -3.502916097640991 ], [ -80.462081909179631, -3.502916097640991 ], [ -80.462081909179631, -3.503194093704224 ], [ -80.461807250976449, -3.503194093704224 ], [ -80.461807250976449, -3.503750085830688 ], [ -80.462081909179631, -3.503750085830688 ], [ -80.462081909179631, -3.504671096801758 ], [ -80.462081909179631, -3.506529092788696 ], [ -80.461524963378906, -3.506529092788696 ], [ -80.461524963378906, -3.505973100662231 ], [ -80.461250305175781, -3.505973100662231 ], [ -80.461250305175781, -3.505415916442814 ], [ -80.460975646972656, -3.505415916442814 ], [ -80.460975646972656, -3.505137920379582 ], [ -80.460693359375, -3.505137920379582 ], [ -80.460693359375, -3.504908084869328 ], [ -80.460693359375, -3.50430703163147 ], [ -80.460418701171875, -3.50430703163147 ], [ -80.460418701171875, -3.503453969955444 ], [ -80.460418701171875, -3.502638101577759 ], [ -80.460136413574219, -3.502638101577759 ], [ -80.460136413574219, -3.50208401679987 ], [ -80.459861755371037, -3.50208401679987 ], [ -80.459861755371037, -3.501806020736637 ], [ -80.459587097167912, -3.501806020736637 ], [ -80.459587097167912, -3.501389026641846 ], [ -80.459587097167912, -3.501250028610173 ], [ -80.459304809570256, -3.501250028610173 ], [ -80.459304809570256, -3.500416040420475 ], [ -80.459030151367131, -3.500416040420475 ], [ -80.459030151367131, -3.500226974487248 ], [ -80.459030151367131, -3.499860048294067 ], [ -80.458747863769474, -3.499860048294067 ], [ -80.458747863769474, -3.498749971389714 ], [ -80.458473205566406, -3.498749971389714 ], [ -80.458473205566406, -3.498471975326481 ], [ -80.45819091796875, -3.498471975326481 ], [ -80.45819091796875, -3.498193979263249 ], [ -80.457916259765625, -3.498193979263249 ], [ -80.457916259765625, -3.497637987136784 ], [ -80.4576416015625, -3.497637987136784 ], [ -80.4576416015625, -3.497359991073552 ], [ -80.457359313964844, -3.497361898422241 ], [ -80.457359313964844, -3.497083902359009 ], [ -80.456527709960881, -3.497083902359009 ], [ -80.456527709960881, -3.496805906295776 ], [ -80.455970764160099, -3.496805906295776 ], [ -80.455970764160099, -3.496527910232544 ], [ -80.455413818359261, -3.496527910232544 ], [ -80.455413818359261, -3.496805906295776 ], [ -80.454864501953125, -3.496805906295776 ], [ -80.454864501953125, -3.496527910232544 ], [ -80.454582214355469, -3.496527910232544 ], [ -80.454582214355469, -3.496805906295776 ], [ -80.453750610351562, -3.496805906295776 ], [ -80.453750610351562, -3.497083902359009 ], [ -80.452362060546761, -3.497083902359009 ], [ -80.452362060546761, -3.497361898422241 ], [ -80.451805114746094, -3.497359991073552 ], [ -80.451805114746094, -3.497797012329102 ], [ -80.451805114746094, -3.497915983200016 ], [ -80.452079772949105, -3.497915983200016 ], [ -80.452079772949105, -3.498193979263249 ], [ -80.452484130859375, -3.498193979263249 ], [ -80.452636718749943, -3.498193979263249 ], [ -80.452636718749943, -3.498471975326481 ], [ -80.452919006347599, -3.498471975326481 ], [ -80.452919006347599, -3.499027967452946 ], [ -80.453193664550724, -3.499027967452946 ], [ -80.453193664550724, -3.5001380443573 ], [ -80.453475952148381, -3.5001380443573 ], [ -80.453475952148381, -3.500416040420475 ], [ -80.453750610351562, -3.500416040420475 ], [ -80.453750610351562, -3.501250028610173 ], [ -80.452636718749943, -3.501250028610173 ], [ -80.452636718749943, -3.5001380443573 ], [ -80.452362060546761, -3.5001380443573 ], [ -80.452362060546761, -3.499860048294067 ], [ -80.451805114746094, -3.499860048294067 ], [ -80.451805114746094, -3.499583959579354 ], [ -80.451248168945312, -3.499583959579354 ], [ -80.451248168945312, -3.499305963516122 ], [ -80.450691223144531, -3.499305963516122 ], [ -80.450691223144531, -3.499027967452946 ], [ -80.450416564941406, -3.499027967452946 ], [ -80.450416564941406, -3.499305963516122 ], [ -80.450141906738224, -3.499305963516122 ], [ -80.450141906738224, -3.499583959579354 ], [ -80.450416564941406, -3.499583959579354 ], [ -80.450416564941406, -3.5001380443573 ], [ -80.450691223144531, -3.5001380443573 ], [ -80.450691223144531, -3.501806020736637 ], [ -80.452636718749943, -3.501806020736637 ], [ -80.452636718749943, -3.50208401679987 ], [ -80.452919006347599, -3.50208401679987 ], [ -80.452919006347599, -3.502360105514526 ], [ -80.453750610351562, -3.502360105514526 ], [ -80.453750610351562, -3.502638101577759 ], [ -80.454307556152344, -3.502638101577759 ], [ -80.454307556152344, -3.502916097640991 ], [ -80.454582214355469, -3.502916097640991 ], [ -80.454582214355469, -3.503194093704224 ], [ -80.455970764160099, -3.503194093704224 ], [ -80.455970764160099, -3.504859924316349 ], [ -80.454864501953125, -3.504859924316349 ], [ -80.454864501953125, -3.504581928253117 ], [ -80.454582214355469, -3.504581928253117 ], [ -80.454582214355469, -3.50430703163147 ], [ -80.454025268554688, -3.50430703163147 ], [ -80.454025268554688, -3.504028081893864 ], [ -80.452919006347599, -3.504028081893864 ], [ -80.452919006347599, -3.503750085830688 ], [ -80.452362060546761, -3.503750085830688 ], [ -80.452362060546761, -3.503472089767456 ], [ -80.449584960937443, -3.503472089767456 ], [ -80.449584960937443, -3.503194093704224 ], [ -80.449028015136605, -3.503194093704224 ], [ -80.449028015136605, -3.502916097640991 ], [ -80.447914123535156, -3.502916097640991 ], [ -80.447914123535156, -3.502638101577759 ], [ -80.447639465332031, -3.502638101577759 ], [ -80.447639465332031, -3.502360105514526 ], [ -80.447364807128906, -3.502360105514526 ], [ -80.447364807128906, -3.50208401679987 ], [ -80.446525573730412, -3.50208401679987 ], [ -80.446525573730412, -3.502360105514526 ], [ -80.445968627929631, -3.502360105514526 ], [ -80.445968627929631, -3.50097203254694 ], [ -80.445693969726562, -3.50097203254694 ], [ -80.445693969726562, -3.500694036483708 ], [ -80.444862365722656, -3.500694036483708 ], [ -80.444862365722656, -3.50097203254694 ], [ -80.444580078125, -3.50097203254694 ], [ -80.444580078125, -3.502916097640991 ], [ -80.443191528320256, -3.502916097640991 ], [ -80.443191528320256, -3.503194093704224 ], [ -80.441802978515625, -3.503194093704224 ], [ -80.441802978515625, -3.502916097640991 ], [ -80.4415283203125, -3.502916097640991 ], [ -80.4415283203125, -3.502638101577759 ], [ -80.441253662109375, -3.502638101577759 ], [ -80.441253662109375, -3.502360105514526 ], [ -80.440139770507756, -3.502360105514526 ], [ -80.440139770507756, -3.50208401679987 ], [ -80.437362670898381, -3.50208401679987 ], [ -80.437362670898381, -3.501806020736637 ], [ -80.436805725097599, -3.501806020736637 ], [ -80.436805725097599, -3.501528024673405 ], [ -80.436531066894418, -3.501528024673405 ], [ -80.436531066894418, -3.501250028610173 ], [ -80.436248779296761, -3.501250028610173 ], [ -80.436248779296761, -3.500416040420475 ], [ -80.43597412109375, -3.500416040420475 ], [ -80.43597412109375, -3.5001380443573 ], [ -80.436248779296761, -3.5001380443573 ], [ -80.436248779296761, -3.499305963516122 ], [ -80.436531066894418, -3.499305963516122 ], [ -80.436531066894418, -3.498193979263249 ], [ -80.436805725097599, -3.498193979263249 ], [ -80.436805725097599, -3.497915983200016 ], [ -80.437919616699219, -3.497915983200016 ], [ -80.437919616699219, -3.498193979263249 ], [ -80.438468933105469, -3.498193979263249 ], [ -80.438468933105469, -3.498471975326481 ], [ -80.43902587890625, -3.498471975326481 ], [ -80.43902587890625, -3.498193979263249 ], [ -80.439308166503906, -3.498193979263249 ], [ -80.439308166503906, -3.498749971389714 ], [ -80.439857482910099, -3.498749971389714 ], [ -80.439857482910099, -3.499027967452946 ], [ -80.441802978515625, -3.499027967452946 ], [ -80.441802978515625, -3.498749971389714 ], [ -80.442085266113281, -3.498749971389714 ], [ -80.442085266113281, -3.498471975326481 ], [ -80.444305419921875, -3.498471975326481 ], [ -80.444305419921875, -3.497359991073552 ], [ -80.443473815917912, -3.497361898422241 ], [ -80.443473815917912, -3.497083902359009 ], [ -80.443191528320256, -3.497083902359009 ], [ -80.443191528320256, -3.496805906295776 ], [ -80.442916870117131, -3.496805906295776 ], [ -80.442916870117131, -3.496527910232544 ], [ -80.442642211914062, -3.496527910232544 ], [ -80.442642211914062, -3.496249914169312 ], [ -80.442359924316406, -3.496249914169312 ], [ -80.442359924316406, -3.495971918105965 ], [ -80.437637329101562, -3.495971918105965 ], [ -80.437637329101562, -3.495693922042733 ], [ -80.431961059570312, -3.495693922042733 ], [ -80.431526184082031, -3.495693922042733 ], [ -80.431526184082031, -3.495415925979557 ], [ -80.430969238281193, -3.495415925979557 ], [ -80.430969238281193, -3.495137929916325 ], [ -80.430694580078068, -3.495137929916325 ], [ -80.430694580078068, -3.494862079620304 ], [ -80.429862976074219, -3.494862079620304 ], [ -80.429862976074219, -3.494584083557072 ], [ -80.428192138671875, -3.494584083557072 ], [ -80.428192138671875, -3.49430608749384 ], [ -80.427085876464787, -3.49430608749384 ], [ -80.427085876464787, -3.494028091430607 ], [ -80.426803588867074, -3.494028091430607 ], [ -80.426803588867074, -3.493750095367375 ], [ -80.426246643066406, -3.493750095367375 ], [ -80.426246643066406, -3.493472099304142 ], [ -80.4254150390625, -3.493472099304142 ], [ -80.4254150390625, -3.493192911148071 ], [ -80.424583435058537, -3.493192911148071 ], [ -80.424583435058537, -3.492918014526367 ], [ -80.422920227050781, -3.492918014526367 ], [ -80.422920227050781, -3.492640018463021 ], [ -80.422637939453125, -3.492640018463021 ], [ -80.422637939453125, -3.492918014526367 ], [ -80.421806335449219, -3.492918014526367 ], [ -80.421806335449219, -3.492640018463021 ], [ -80.421249389648381, -3.492640018463021 ], [ -80.421249389648381, -3.492362022399789 ], [ -80.420135498046875, -3.492362022399789 ], [ -80.420135498046875, -3.492084026336613 ], [ -80.419303894042969, -3.492084026336613 ], [ -80.419303894042969, -3.491805076599121 ], [ -80.418472290039006, -3.491805076599121 ], [ -80.418472290039006, -3.491527080535889 ], [ -80.417083740234375, -3.491527080535889 ], [ -80.417083740234375, -3.491249084472656 ], [ -80.415969848632812, -3.491249084472656 ], [ -80.415969848632812, -3.49097108840931 ], [ -80.415695190429688, -3.49097108840931 ], [ -80.415695190429688, -3.490695953369141 ], [ -80.41402435302723, -3.490695953369141 ], [ -80.41402435302723, -3.49097108840931 ], [ -80.413475036621094, -3.49097108840931 ], [ -80.413475036621094, -3.491249084472656 ], [ -80.413192749023438, -3.491249084472656 ], [ -80.413192749023438, -3.49097108840931 ], [ -80.412635803222656, -3.49097108840931 ], [ -80.412635803222656, -3.490695953369141 ], [ -80.411247253417912, -3.490695953369141 ], [ -80.411247253417912, -3.491249084472656 ], [ -80.41097259521473, -3.491249084472656 ], [ -80.41097259521473, -3.492362022399789 ], [ -80.410697937011719, -3.492362022399789 ], [ -80.410697937011719, -3.493472099304142 ], [ -80.412086486816349, -3.493472099304142 ], [ -80.412086486816349, -3.493192911148071 ], [ -80.412918090820312, -3.493192911148071 ], [ -80.412918090820312, -3.492918014526367 ], [ -80.413475036621094, -3.492918014526367 ], [ -80.413475036621094, -3.492084026336613 ], [ -80.413749694824219, -3.492084026336613 ], [ -80.413749694824219, -3.491805076599121 ], [ -80.414581298828068, -3.491805076599121 ], [ -80.414581298828068, -3.492084026336613 ], [ -80.415695190429688, -3.492084026336613 ], [ -80.415695190429688, -3.492362022399789 ], [ -80.416526794433594, -3.492362022399789 ], [ -80.416526794433594, -3.492640018463021 ], [ -80.417083740234375, -3.492640018463021 ], [ -80.417083740234375, -3.492918014526367 ], [ -80.417915344238224, -3.492918014526367 ], [ -80.417915344238224, -3.493192911148071 ], [ -80.418197631835881, -3.493192911148071 ], [ -80.418197631835881, -3.493472099304142 ], [ -80.418472290039006, -3.493472099304142 ], [ -80.418472290039006, -3.494028091430607 ], [ -80.418746948242188, -3.494028091430607 ], [ -80.418746948242188, -3.49430608749384 ], [ -80.419029235839844, -3.49430608749384 ], [ -80.419029235839844, -3.494584083557072 ], [ -80.419586181640625, -3.494584083557072 ], [ -80.419586181640625, -3.494862079620304 ], [ -80.41986083984375, -3.494862079620304 ], [ -80.41986083984375, -3.495415925979557 ], [ -80.418746948242188, -3.495415925979557 ], [ -80.418746948242188, -3.495137929916325 ], [ -80.418472290039006, -3.495137929916325 ], [ -80.418472290039006, -3.494862079620304 ], [ -80.417915344238224, -3.494862079620304 ], [ -80.417915344238224, -3.494584083557072 ], [ -80.417358398437443, -3.494584083557072 ], [ -80.417358398437443, -3.49430608749384 ], [ -80.41680908203125, -3.49430608749384 ], [ -80.41680908203125, -3.494028091430607 ], [ -80.416252136230469, -3.494028091430607 ], [ -80.416252136230469, -3.493750095367375 ], [ -80.415695190429688, -3.493750095367375 ], [ -80.415695190429688, -3.493472099304142 ], [ -80.414863586425724, -3.493472099304142 ], [ -80.414863586425724, -3.493750095367375 ], [ -80.414306640624943, -3.493750095367375 ], [ -80.414306640624943, -3.494028091430607 ], [ -80.41402435302723, -3.494028091430607 ], [ -80.41402435302723, -3.49430608749384 ], [ -80.413749694824219, -3.49430608749384 ], [ -80.413749694824219, -3.494584083557072 ], [ -80.413475036621094, -3.494584083557072 ], [ -80.413475036621094, -3.494862079620304 ], [ -80.412918090820312, -3.494862079620304 ], [ -80.412918090820312, -3.495137929916325 ], [ -80.412635803222656, -3.495137929916325 ], [ -80.412635803222656, -3.495693922042733 ], [ -80.412361145019531, -3.495693922042733 ], [ -80.412361145019531, -3.495971918105965 ], [ -80.412086486816349, -3.495971918105965 ], [ -80.412086486816349, -3.497081995010319 ], [ -80.412361145019531, -3.497083902359009 ], [ -80.412361145019531, -3.497639894485474 ], [ -80.412635803222656, -3.497637987136784 ], [ -80.412635803222656, -3.497915983200016 ], [ -80.412918090820312, -3.497915983200016 ], [ -80.412918090820312, -3.498193979263249 ], [ -80.413192749023438, -3.498193979263249 ], [ -80.413192749023438, -3.498749971389714 ], [ -80.413475036621094, -3.498749971389714 ], [ -80.413475036621094, -3.499027967452946 ], [ -80.413749694824219, -3.499027967452946 ], [ -80.413749694824219, -3.50097203254694 ], [ -80.413887023925781, -3.50097203254694 ], [ -80.41402435302723, -3.50097203254694 ], [ -80.41402435302723, -3.501204967498779 ], [ -80.41402435302723, -3.501528024673405 ], [ -80.414306640624943, -3.501528024673405 ], [ -80.414306640624943, -3.501665115356388 ], [ -80.414306640624943, -3.50208401679987 ], [ -80.414581298828068, -3.50208401679987 ], [ -80.414581298828068, -3.502360105514526 ], [ -80.414863586425724, -3.502360105514526 ], [ -80.414863586425724, -3.502638101577759 ], [ -80.417083740234375, -3.502638101577759 ], [ -80.417083740234375, -3.502916097640991 ], [ -80.417640686035099, -3.502916097640991 ], [ -80.417640686035099, -3.503194093704224 ], [ -80.418472290039006, -3.503194093704224 ], [ -80.418472290039006, -3.503472089767456 ], [ -80.419303894042969, -3.503472089767456 ], [ -80.419303894042969, -3.503750085830688 ], [ -80.420692443847599, -3.503750085830688 ], [ -80.420692443847599, -3.504028081893864 ], [ -80.421249389648381, -3.504028081893864 ], [ -80.421249389648381, -3.504859924316349 ], [ -80.421524047851506, -3.504859924316349 ], [ -80.421524047851506, -3.505412101745549 ], [ -80.421806335449219, -3.505415916442814 ], [ -80.421806335449219, -3.505695104598999 ], [ -80.422080993652344, -3.505695104598999 ], [ -80.422080993652344, -3.505973100662231 ], [ -80.42236328125, -3.505973100662231 ], [ -80.42236328125, -3.506251096725464 ], [ -80.422637939453125, -3.506251096725464 ], [ -80.422637939453125, -3.506529092788696 ], [ -80.422920227050781, -3.506529092788696 ], [ -80.422920227050781, -3.5068039894104 ], [ -80.423194885253906, -3.506807088851929 ], [ -80.423194885253906, -3.507082939147949 ], [ -80.423469543456918, -3.507082939147949 ], [ -80.423469543456918, -3.507385969161987 ], [ -80.423469543456918, -3.507916927337646 ], [ -80.423751831054574, -3.507916927337646 ], [ -80.423751831054574, -3.508524894714355 ], [ -80.423751831054574, -3.509027004241943 ], [ -80.423469543456918, -3.509027004241943 ], [ -80.423469543456918, -3.509715080261174 ], [ -80.423469543456918, -3.509860992431641 ], [ -80.42236328125, -3.509860992431641 ], [ -80.42236328125, -3.509582996368408 ], [ -80.421806335449219, -3.509582996368408 ], [ -80.421806335449219, -3.509860992431641 ], [ -80.421524047851506, -3.509860992431641 ], [ -80.421524047851506, -3.510138988494873 ], [ -80.420806884765625, -3.510138988494873 ], [ -80.420135498046875, -3.510138988494873 ], [ -80.420135498046875, -3.510416984558105 ], [ -80.419029235839844, -3.510416984558105 ], [ -80.419029235839844, -3.509860992431641 ], [ -80.418472290039006, -3.509860992431641 ], [ -80.418472290039006, -3.509582996368408 ], [ -80.417640686035099, -3.509582996368408 ], [ -80.417640686035099, -3.509305000305176 ], [ -80.417358398437443, -3.509305000305176 ], [ -80.417358398437443, -3.509582996368408 ], [ -80.417083740234375, -3.509582996368408 ], [ -80.417083740234375, -3.509860992431641 ], [ -80.41680908203125, -3.509860992431641 ], [ -80.41680908203125, -3.509582996368408 ], [ -80.413475036621094, -3.509582996368408 ], [ -80.413475036621094, -3.509305000305176 ], [ -80.412918090820312, -3.509305000305176 ], [ -80.412918090820312, -3.509027004241943 ], [ -80.412361145019531, -3.509027004241943 ], [ -80.412361145019531, -3.508750915527344 ], [ -80.411529541015568, -3.508750915527344 ], [ -80.411529541015568, -3.508472919464111 ], [ -80.410415649414062, -3.508472919464111 ], [ -80.410415649414062, -3.508194923400879 ], [ -80.409584045410156, -3.508194923400879 ], [ -80.409584045410156, -3.507638931274414 ], [ -80.4093017578125, -3.507638931274414 ], [ -80.4093017578125, -3.507082939147949 ], [ -80.409027099609375, -3.507085084915161 ], [ -80.409027099609375, -3.506251096725464 ], [ -80.408752441406193, -3.506251096725464 ], [ -80.408752441406193, -3.505973100662231 ], [ -80.408470153808537, -3.505973100662231 ], [ -80.408470153808537, -3.505695104598999 ], [ -80.408195495605412, -3.505695104598999 ], [ -80.408195495605412, -3.505415916442814 ], [ -80.405975341796875, -3.505415916442814 ], [ -80.405975341796875, -3.505695104598999 ], [ -80.40374755859375, -3.505695104598999 ], [ -80.40374755859375, -3.505415916442814 ], [ -80.4031982421875, -3.505415916442814 ], [ -80.4031982421875, -3.504581928253117 ], [ -80.403472900390625, -3.504581928253117 ], [ -80.403472900390625, -3.50430703163147 ], [ -80.405136108398381, -3.50430703163147 ], [ -80.405136108398381, -3.504028081893864 ], [ -80.405693054199162, -3.504028081893864 ], [ -80.405693054199162, -3.503750085830688 ], [ -80.40625, -3.503750085830688 ], [ -80.40625, -3.503472089767456 ], [ -80.406524658203125, -3.503472089767456 ], [ -80.406524658203125, -3.503194093704224 ], [ -80.406806945800781, -3.503194093704224 ], [ -80.406806945800781, -3.502360105514526 ], [ -80.40625, -3.502360105514526 ], [ -80.40625, -3.50208401679987 ], [ -80.405975341796875, -3.50208401679987 ], [ -80.405975341796875, -3.501806020736637 ], [ -80.405418395996037, -3.501806020736637 ], [ -80.405418395996037, -3.501528024673405 ], [ -80.405136108398381, -3.501528024673405 ], [ -80.405136108398381, -3.50097203254694 ], [ -80.404586791992074, -3.50097203254694 ], [ -80.404586791992074, -3.500694036483708 ], [ -80.404304504394531, -3.500694036483708 ], [ -80.404304504394531, -3.500416040420475 ], [ -80.404029846191406, -3.500416040420475 ], [ -80.404029846191406, -3.5001380443573 ], [ -80.40374755859375, -3.5001380443573 ], [ -80.40374755859375, -3.499860048294067 ], [ -80.403472900390625, -3.499860048294067 ], [ -80.403472900390625, -3.499305963516122 ], [ -80.402915954589844, -3.499305963516122 ], [ -80.402915954589844, -3.499027967452946 ], [ -80.402084350585881, -3.499027967452946 ], [ -80.402084350585881, -3.498749971389714 ], [ -80.401527404785099, -3.498749971389714 ], [ -80.401527404785099, -3.498471975326481 ], [ -80.401252746582031, -3.498471975326481 ], [ -80.401252746582031, -3.498193979263249 ], [ -80.40069580078125, -3.498193979263249 ], [ -80.40069580078125, -3.497915983200016 ], [ -80.399864196777344, -3.497915983200016 ], [ -80.399864196777344, -3.498471975326481 ], [ -80.400138854980469, -3.498471975326481 ], [ -80.400138854980469, -3.498749971389714 ], [ -80.400413513183594, -3.498749971389714 ], [ -80.400413513183594, -3.499305963516122 ], [ -80.400138854980469, -3.499305963516122 ], [ -80.400138854980469, -3.500416040420475 ], [ -80.399864196777344, -3.500416040420475 ], [ -80.399864196777344, -3.500694036483708 ], [ -80.399024963378849, -3.500694036483708 ], [ -80.399024963378849, -3.501250028610173 ], [ -80.398750305175724, -3.501250028610173 ], [ -80.398750305175724, -3.503472089767456 ], [ -80.399024963378849, -3.503472089767456 ], [ -80.399024963378849, -3.504028081893864 ], [ -80.398017883300781, -3.504028081893864 ], [ -80.397361755371094, -3.504028081893864 ], [ -80.397361755371094, -3.503472089767456 ], [ -80.397087097167969, -3.503472089767456 ], [ -80.397087097167969, -3.502916097640991 ], [ -80.396980285644531, -3.502916097640991 ], [ -80.396804809570312, -3.502916097640991 ], [ -80.396804809570312, -3.502749919891301 ], [ -80.396804809570312, -3.502638101577759 ], [ -80.396690368652344, -3.502638101577759 ], [ -80.396247863769531, -3.502638101577759 ], [ -80.396247863769531, -3.502360105514526 ], [ -80.395416259765568, -3.502360105514526 ], [ -80.395416259765568, -3.50208401679987 ], [ -80.395141601562386, -3.50208401679987 ], [ -80.395141601562386, -3.501806020736637 ], [ -80.394584655761719, -3.501806020736637 ], [ -80.394584655761719, -3.501528024673405 ], [ -80.394027709960938, -3.501528024673405 ], [ -80.394027709960938, -3.501250028610173 ], [ -80.393470764160156, -3.501250028610173 ], [ -80.393470764160156, -3.50097203254694 ], [ -80.393196105957031, -3.50097203254694 ], [ -80.393196105957031, -3.500694036483708 ], [ -80.392639160156193, -3.500694036483708 ], [ -80.392639160156193, -3.5001380443573 ], [ -80.392364501953068, -3.5001380443573 ], [ -80.392364501953068, -3.499583959579354 ], [ -80.39180755615223, -3.499583959579354 ], [ -80.39180755615223, -3.499305963516122 ], [ -80.391250610351562, -3.499305963516122 ], [ -80.391250610351562, -3.499027967452946 ], [ -80.390975952148438, -3.499027967452946 ], [ -80.390975952148438, -3.499305963516122 ], [ -80.39013671875, -3.499305963516122 ], [ -80.39013671875, -3.499027967452946 ], [ -80.388931274414006, -3.499027967452946 ], [ -80.388748168945256, -3.499027967452946 ], [ -80.388748168945256, -3.498749971389714 ], [ -80.388069152831974, -3.498749971389714 ], [ -80.387359619140625, -3.498749971389714 ], [ -80.387359619140625, -3.498471975326481 ], [ -80.3870849609375, -3.498471975326481 ], [ -80.3870849609375, -3.498193979263249 ], [ -80.386474609375, -3.498193979263249 ], [ -80.385414123535043, -3.498193979263249 ], [ -80.385414123535043, -3.497915983200016 ], [ -80.384864807128906, -3.497915983200016 ], [ -80.384864807128906, -3.497637987136784 ], [ -80.384025573730469, -3.497637987136784 ], [ -80.384025573730469, -3.497359991073552 ], [ -80.383750915527344, -3.497361898422241 ], [ -80.383750915527344, -3.497083902359009 ], [ -80.383193969726506, -3.497083902359009 ], [ -80.383193969726506, -3.496805906295776 ], [ -80.382637023925724, -3.496805906295776 ], [ -80.382637023925724, -3.496527910232544 ], [ -80.382080078124886, -3.496527910232544 ], [ -80.382080078124886, -3.496249914169312 ], [ -80.38153076171875, -3.496249914169312 ], [ -80.38153076171875, -3.495971918105965 ], [ -80.380973815917969, -3.495971918105965 ], [ -80.380973815917969, -3.495693922042733 ], [ -80.380691528320312, -3.495693922042733 ], [ -80.380691528320312, -3.495415925979557 ], [ -80.380142211914006, -3.495415925979557 ], [ -80.380142211914006, -3.495137929916325 ], [ -80.379859924316349, -3.495137929916325 ], [ -80.379859924316349, -3.494862079620304 ], [ -80.378753662109375, -3.494862079620304 ], [ -80.378753662109375, -3.494652032852173 ], [ -80.378753662109375, -3.492918014526367 ], [ -80.378471374511719, -3.492918014526367 ], [ -80.378471374511719, -3.492084026336613 ], [ -80.378311157226562, -3.492084026336613 ], [ -80.378196716308594, -3.492084026336613 ], [ -80.378196716308594, -3.491905927658081 ], [ -80.378196716308594, -3.491527080535889 ], [ -80.378013610839844, -3.491527080535889 ], [ -80.377914428710938, -3.491527080535889 ], [ -80.377914428710938, -3.491249084472656 ], [ -80.376808166503849, -3.491249084472656 ], [ -80.376808166503849, -3.49097108840931 ], [ -80.376525878906193, -3.49097108840931 ], [ -80.376525878906193, -3.490695953369141 ], [ -80.376808166503849, -3.490695953369141 ], [ -80.376808166503849, -3.489861011505127 ], [ -80.376525878906193, -3.489861011505127 ], [ -80.376525878906193, -3.489583015441895 ], [ -80.375694274902344, -3.489583015441895 ], [ -80.375694274902344, -3.488749027252197 ], [ -80.375419616699219, -3.488749027252197 ], [ -80.375419616699219, -3.488194942474308 ], [ -80.375137329101562, -3.488194942474308 ], [ -80.375137329101562, -3.487916946411076 ], [ -80.374580383300781, -3.487916946411076 ], [ -80.374580383300781, -3.4876389503479 ], [ -80.374305725097656, -3.4876389503479 ], [ -80.374305725097656, -3.487360954284668 ], [ -80.373474121093693, -3.487360954284668 ], [ -80.373474121093693, -3.487082958221436 ], [ -80.372642517089844, -3.487082958221436 ], [ -80.372642517089844, -3.486804962158203 ], [ -80.371246337890625, -3.486804962158203 ], [ -80.371246337890625, -3.486526966094971 ], [ -80.370697021484318, -3.486526966094971 ], [ -80.370697021484318, -3.486248970031738 ], [ -80.370414733886662, -3.486248970031738 ], [ -80.370414733886662, -3.486526966094971 ], [ -80.370140075683537, -3.486526966094971 ], [ -80.370140075683537, -3.486804962158203 ], [ -80.369583129882699, -3.486804962158203 ], [ -80.369583129882699, -3.487082958221436 ], [ -80.369308471679688, -3.487082958221436 ], [ -80.369308471679688, -3.487360954284668 ], [ -80.369026184082031, -3.487360954284668 ], [ -80.369026184082031, -3.4876389503479 ], [ -80.368186950683594, -3.4876389503479 ], [ -80.367362976074162, -3.4876389503479 ], [ -80.367362976074162, -3.487360954284668 ], [ -80.366249084472543, -3.487360954284668 ], [ -80.366249084472543, -3.487082958221436 ], [ -80.365974426269531, -3.487082958221436 ], [ -80.365974426269531, -3.486248970031738 ], [ -80.366249084472543, -3.486248970031738 ], [ -80.366249084472543, -3.485970973968506 ], [ -80.366531372070199, -3.485970973968506 ], [ -80.366531372070199, -3.485138893127385 ], [ -80.366806030273381, -3.485138893127385 ], [ -80.366806030273381, -3.48458290100092 ], [ -80.366531372070199, -3.48458290100092 ], [ -80.366531372070199, -3.484304904937687 ], [ -80.366294860839844, -3.484304904937687 ], [ -80.365974426269531, -3.484304904937687 ], [ -80.365974426269531, -3.484422922134399 ], [ -80.365974426269531, -3.48458290100092 ], [ -80.365692138671875, -3.48458290100092 ], [ -80.365692138671875, -3.484860897064152 ], [ -80.36541748046875, -3.484860897064152 ], [ -80.36541748046875, -3.485694885253849 ], [ -80.364860534667969, -3.485694885253849 ], [ -80.364860534667969, -3.485416889190617 ], [ -80.364585876464844, -3.485416889190617 ], [ -80.364585876464844, -3.484941005706787 ], [ -80.364585876464844, -3.483473062515259 ], [ -80.364303588867131, -3.483473062515259 ], [ -80.364303588867131, -3.482917070388794 ], [ -80.363746643066349, -3.482917070388794 ], [ -80.363746643066349, -3.482361078262329 ], [ -80.363197326660043, -3.482361078262329 ], [ -80.363197326660043, -3.482083082199097 ], [ -80.3629150390625, -3.482083082199097 ], [ -80.3629150390625, -3.481528997421208 ], [ -80.362640380859375, -3.481528997421208 ], [ -80.362640380859375, -3.481251001357975 ], [ -80.362358093261719, -3.481251001357975 ], [ -80.362358093261719, -3.480973005294743 ], [ -80.361808776855469, -3.480973005294743 ], [ -80.361808776855469, -3.480695009231567 ], [ -80.361526489257812, -3.480695009231567 ], [ -80.361526489257812, -3.480139017105103 ], [ -80.361251831054631, -3.480139017105103 ], [ -80.361251831054631, -3.479582071304264 ], [ -80.361526489257812, -3.479582071304264 ], [ -80.361526489257812, -3.47986102104187 ], [ -80.362358093261719, -3.47986102104187 ], [ -80.362358093261719, -3.479582071304264 ], [ -80.362640380859375, -3.479582071304264 ], [ -80.362640380859375, -3.479304075241032 ], [ -80.363197326660043, -3.479304075241032 ], [ -80.363197326660043, -3.479582071304264 ], [ -80.364028930664006, -3.479582071304264 ], [ -80.364028930664006, -3.47986102104187 ], [ -80.364860534667969, -3.47986102104187 ], [ -80.364860534667969, -3.47960090637207 ], [ -80.364860534667969, -3.479304075241032 ], [ -80.364585876464844, -3.479304075241032 ], [ -80.364585876464844, -3.479028940200749 ], [ -80.364311218261662, -3.479028940200749 ], [ -80.364303588867131, -3.478750944137516 ], [ -80.364044189453068, -3.478750944137516 ], [ -80.363746643066349, -3.478750944137516 ], [ -80.363746643066349, -3.478472948074284 ], [ -80.363471984863224, -3.478472948074284 ], [ -80.363471984863224, -3.478193998336678 ], [ -80.363197326660043, -3.478193998336678 ], [ -80.363197326660043, -3.477916002273503 ], [ -80.3629150390625, -3.477916002273503 ], [ -80.3629150390625, -3.47763800621027 ], [ -80.362831115722656, -3.47763800621027 ], [ -80.362640380859375, -3.47763800621027 ], [ -80.362640380859375, -3.477489948272648 ], [ -80.362640380859375, -3.477360010147038 ], [ -80.362472534179688, -3.477360010147038 ], [ -80.362083435058594, -3.477360010147038 ], [ -80.362083435058594, -3.477085113525391 ], [ -80.361808776855469, -3.477085113525391 ], [ -80.361808776855469, -3.476805925369263 ], [ -80.361526489257812, -3.476805925369263 ], [ -80.361526489257812, -3.476629018783512 ], [ -80.361526489257812, -3.47652792930603 ], [ -80.361396789550781, -3.47652792930603 ], [ -80.361251831054631, -3.47652792930603 ], [ -80.361251831054631, -3.476417064666691 ], [ -80.361251831054631, -3.476249933242798 ], [ -80.361076354980412, -3.476249933242798 ], [ -80.360969543456974, -3.476249933242798 ], [ -80.360969543456974, -3.476139068603459 ], [ -80.360969543456974, -3.475971937179565 ], [ -80.360809326171761, -3.475971937179565 ], [ -80.360694885253849, -3.475971937179565 ], [ -80.360694885253849, -3.475848913192749 ], [ -80.360694885253849, -3.475693941116333 ], [ -80.360549926757812, -3.475693941116333 ], [ -80.360137939453068, -3.475693941116333 ], [ -80.360137939453068, -3.475415945053101 ], [ -80.35986328125, -3.475415945053101 ], [ -80.35986328125, -3.475137948989868 ], [ -80.359580993652344, -3.475137948989868 ], [ -80.359580993652344, -3.474859952926522 ], [ -80.359306335449219, -3.474859952926522 ], [ -80.359306335449219, -3.474584102630558 ], [ -80.359024047851562, -3.474584102630558 ], [ -80.359024047851562, -3.474306106567326 ], [ -80.358474731445312, -3.474306106567326 ], [ -80.358474731445312, -3.474028110504094 ], [ -80.358192443847656, -3.474028110504094 ], [ -80.358192443847656, -3.473750114440861 ], [ -80.357917785644474, -3.473750114440861 ], [ -80.357917785644474, -3.473472118377629 ], [ -80.357635498046818, -3.473472118377629 ], [ -80.357635498046818, -3.473193883895874 ], [ -80.357360839843693, -3.473193883895874 ], [ -80.357360839843693, -3.472915887832642 ], [ -80.357086181640568, -3.472915887832642 ], [ -80.357086181640568, -3.472637891769409 ], [ -80.356803894042855, -3.472637891769409 ], [ -80.356803894042855, -3.472359895706177 ], [ -80.356529235839844, -3.472362041473389 ], [ -80.356529235839844, -3.472084045410156 ], [ -80.356246948242188, -3.472084045410156 ], [ -80.356246948242188, -3.471806049346924 ], [ -80.355972290039062, -3.471806049346924 ], [ -80.355972290039062, -3.471647024154663 ], [ -80.355972290039062, -3.471528053283578 ], [ -80.355873107910156, -3.471528053283578 ], [ -80.355697631835938, -3.471528053283578 ], [ -80.355697631835938, -3.47136402130127 ], [ -80.355606079101562, -3.471250057220345 ], [ -80.355415344238281, -3.471250057220345 ], [ -80.355415344238281, -3.47097206115717 ], [ -80.355140686035156, -3.47097206115717 ], [ -80.355140686035156, -3.470694065093937 ], [ -80.3548583984375, -3.470694065093937 ], [ -80.3548583984375, -3.470416069030705 ], [ -80.354583740234318, -3.470416069030705 ], [ -80.354583740234318, -3.470139980316162 ], [ -80.354309082031193, -3.470138072967472 ], [ -80.354309082031193, -3.46986198425293 ], [ -80.354026794433537, -3.46986198425293 ], [ -80.354026794433537, -3.469583988189697 ], [ -80.353752136230355, -3.469583988189697 ], [ -80.353752136230355, -3.469305992126465 ], [ -80.353469848632699, -3.469305992126465 ], [ -80.353469848632699, -3.469027996063232 ], [ -80.353195190429688, -3.469027996063232 ], [ -80.353195190429688, -3.46875 ], [ -80.352912902832031, -3.46875 ], [ -80.352912902832031, -3.468472003936768 ], [ -80.352638244628906, -3.468472003936768 ], [ -80.352638244628906, -3.468194007873535 ], [ -80.352081298828125, -3.468194007873535 ], [ -80.352081298828125, -3.467917919158936 ], [ -80.351806640625, -3.467917919158936 ], [ -80.351806640625, -3.467639923095703 ], [ -80.351524353027287, -3.467639923095703 ], [ -80.351524353027287, -3.467361927032471 ], [ -80.351249694824162, -3.467361927032471 ], [ -80.351249694824162, -3.467083930969238 ], [ -80.350975036621037, -3.467083930969238 ], [ -80.350975036621037, -3.466805934906006 ], [ -80.350692749023381, -3.466805934906006 ], [ -80.350692749023381, -3.466527938842773 ], [ -80.350418090820199, -3.466527938842773 ], [ -80.350418090820199, -3.466249942779541 ], [ -80.350135803222656, -3.466249942779541 ], [ -80.350135803222656, -3.465970993041992 ], [ -80.349861145019531, -3.465970993041992 ], [ -80.349861145019531, -3.46569299697876 ], [ -80.349586486816406, -3.46569299697876 ], [ -80.349586486816406, -3.465418100357056 ], [ -80.34930419921875, -3.465418100357056 ], [ -80.34930419921875, -3.465140104293823 ], [ -80.349029541015625, -3.465140104293823 ], [ -80.349029541015625, -3.464862108230591 ], [ -80.348747253417969, -3.464862108230591 ], [ -80.348747253417969, -3.464582920074406 ], [ -80.348472595214787, -3.464582920074406 ], [ -80.348472595214787, -3.464304924011174 ], [ -80.348197937011662, -3.464304924011174 ], [ -80.348197937011662, -3.464026927947941 ], [ -80.347915649414006, -3.464026927947941 ], [ -80.347915649414006, -3.463748931884709 ], [ -80.347640991210881, -3.463748931884709 ], [ -80.347640991210881, -3.463474035263062 ], [ -80.347358703613224, -3.463470935821476 ], [ -80.347358703613224, -3.463195085525513 ], [ -80.347084045410156, -3.463195085525513 ], [ -80.347084045410156, -3.46291708946228 ], [ -80.3468017578125, -3.46291708946228 ], [ -80.3468017578125, -3.462639093399048 ], [ -80.346527099609375, -3.462639093399048 ], [ -80.346527099609375, -3.462361097335815 ], [ -80.34625244140625, -3.462361097335815 ], [ -80.34625244140625, -3.462083101272583 ], [ -80.345970153808594, -3.462083101272583 ], [ -80.345970153808594, -3.461805105209351 ], [ -80.345695495605469, -3.461805105209351 ], [ -80.345695495605469, -3.461527109146118 ], [ -80.345413208007812, -3.461527109146118 ], [ -80.345413208007812, -3.461249113082886 ], [ -80.345138549804631, -3.461249113082886 ], [ -80.345138549804631, -3.460973024368229 ], [ -80.344581604003849, -3.460973024368229 ], [ -80.344581604003849, -3.460695028304997 ], [ -80.344306945800724, -3.460695028304997 ], [ -80.344306945800724, -3.460417032241764 ], [ -80.344024658203011, -3.460417032241764 ], [ -80.344024658203011, -3.460139036178532 ], [ -80.34375, -3.460139036178532 ], [ -80.34375, -3.459583044052124 ], [ -80.343475341796875, -3.459583044052124 ], [ -80.343475341796875, -3.459305047988892 ], [ -80.343193054199219, -3.459305047988892 ], [ -80.343193054199219, -3.458749055862427 ], [ -80.342918395996094, -3.458749055862427 ], [ -80.342918395996094, -3.458194971084538 ], [ -80.342636108398438, -3.458194971084538 ], [ -80.342636108398438, -3.457916975021305 ], [ -80.342361450195312, -3.457916975021305 ], [ -80.342361450195312, -3.457638978958073 ], [ -80.342086791992131, -3.457638978958073 ], [ -80.342086791992131, -3.457360982894841 ], [ -80.341804504394474, -3.457360982894841 ], [ -80.341804504394474, -3.457082986831608 ], [ -80.341529846191349, -3.457082986831608 ], [ -80.341529846191349, -3.456804990768376 ], [ -80.341247558593693, -3.456804990768376 ], [ -80.341247558593693, -3.456526994705143 ], [ -80.340972900390511, -3.456526994705143 ], [ -80.340972900390511, -3.455971002578735 ], [ -80.3406982421875, -3.455972909927368 ], [ -80.340690612792855, -3.455694913864136 ], [ -80.340415954589844, -3.455694913864136 ], [ -80.340415954589844, -3.45541691780079 ], [ -80.340141296386719, -3.45541691780079 ], [ -80.340141296386719, -3.454860925674382 ], [ -80.339859008789062, -3.454860925674382 ], [ -80.339859008789062, -3.454582929611149 ], [ -80.339599609375, -3.454582929611149 ], [ -80.339584350585938, -3.454029083251896 ], [ -80.339302062988281, -3.454029083251896 ], [ -80.339302062988281, -3.453751087188664 ], [ -80.339027404785156, -3.453751087188664 ], [ -80.338195800781193, -3.453751087188664 ], [ -80.338195800781193, -3.453473091125431 ], [ -80.337638854980355, -3.453473091125431 ], [ -80.337638854980355, -3.453195095062199 ], [ -80.337364196777344, -3.453195095062199 ], [ -80.337364196777344, -3.452917098998967 ], [ -80.337081909179688, -3.452917098998967 ], [ -80.337081909179688, -3.451529026031437 ], [ -80.336807250976562, -3.451529026031437 ], [ -80.336807250976562, -3.451251029968205 ], [ -80.336524963378906, -3.451251029968205 ], [ -80.336524963378906, -3.450972080230713 ], [ -80.335975646972656, -3.450972080230713 ], [ -80.335975646972656, -3.45069408416748 ], [ -80.335418701171818, -3.45069408416748 ], [ -80.335418701171818, -3.450416088104134 ], [ -80.334587097167855, -3.450416088104134 ], [ -80.334587097167855, -3.450138092040902 ], [ -80.334304809570312, -3.450138092040902 ], [ -80.334304809570312, -3.449860095977726 ], [ -80.334030151367188, -3.449860095977726 ], [ -80.334030151367188, -3.449582099914494 ], [ -80.333747863769531, -3.449582099914494 ], [ -80.333747863769531, -3.449028015136719 ], [ -80.333473205566406, -3.449028015136719 ], [ -80.333473205566406, -3.448194026947021 ], [ -80.33319091796875, -3.448194026947021 ], [ -80.33319091796875, -3.446805953979492 ], [ -80.332916259765625, -3.446805953979492 ], [ -80.332916259765625, -3.446249961853027 ], [ -80.332359313964787, -3.446249961853027 ], [ -80.332359313964787, -3.445971965789795 ], [ -80.332084655761662, -3.445971965789795 ], [ -80.332084655761662, -3.445693969726562 ], [ -80.331802368164006, -3.445693969726562 ], [ -80.331802368164006, -3.445578098297119 ], [ -80.331802368164006, -3.44541597366333 ], [ -80.331558227539062, -3.44541597366333 ], [ -80.331527709960881, -3.445137977600098 ], [ -80.331253051757812, -3.445139884948674 ], [ -80.331253051757812, -3.444583892822209 ], [ -80.330970764160156, -3.444583892822209 ], [ -80.330970764160156, -3.444305896758976 ], [ -80.330696105957031, -3.444305896758976 ], [ -80.330696105957031, -3.444027900695744 ], [ -80.330413818359375, -3.444027900695744 ], [ -80.330413818359375, -3.443471908569336 ], [ -80.33013916015625, -3.443471908569336 ], [ -80.33013916015625, -3.442637920379639 ], [ -80.329864501953125, -3.442637920379639 ], [ -80.329864501953125, -3.442359924316406 ], [ -80.329582214355469, -3.442362070083618 ], [ -80.329582214355469, -3.441806077957153 ], [ -80.329307556152287, -3.441806077957153 ], [ -80.329307556152287, -3.441528081893921 ], [ -80.329025268554631, -3.441528081893921 ], [ -80.329025268554631, -3.441250085830688 ], [ -80.328750610351506, -3.441250085830688 ], [ -80.328750610351506, -3.440972089767456 ], [ -80.328475952148381, -3.440972089767456 ], [ -80.328475952148381, -3.440694093704224 ], [ -80.328193664550668, -3.440694093704224 ], [ -80.328193664550668, -3.440418004989567 ], [ -80.327919006347656, -3.440418004989567 ], [ -80.327919006347656, -3.440136909484806 ], [ -80.32763671875, -3.440136909484806 ], [ -80.32763671875, -3.439862012863159 ], [ -80.327362060546875, -3.439862012863159 ], [ -80.327362060546875, -3.439584016799927 ], [ -80.327079772949219, -3.439584016799927 ], [ -80.327079772949219, -3.439306020736694 ], [ -80.326805114746094, -3.439306020736694 ], [ -80.326805114746094, -3.439028024673462 ], [ -80.326530456542969, -3.439028024673462 ], [ -80.326530456542969, -3.437639951705876 ], [ -80.326248168945312, -3.437639951705876 ], [ -80.326248168945312, -3.436805009841862 ], [ -80.326118469238281, -3.436805009841862 ], [ -80.325973510742131, -3.436805009841862 ], [ -80.325973510742131, -3.43652701377863 ], [ -80.325141906738168, -3.43652701377863 ], [ -80.325141906738168, -3.436249017715397 ], [ -80.324302673339844, -3.436249017715397 ], [ -80.324302673339844, -3.435971021652165 ], [ -80.323753356933594, -3.435971021652165 ], [ -80.323753356933594, -3.435138940811157 ], [ -80.3245849609375, -3.435138940811157 ], [ -80.3245849609375, -3.434860944747925 ], [ -80.324859619140511, -3.434860944747925 ], [ -80.324859619140511, -3.434582948684692 ], [ -80.3245849609375, -3.434582948684692 ], [ -80.3245849609375, -3.434026956558114 ], [ -80.324302673339844, -3.434026956558114 ], [ -80.324302673339844, -3.433748960494938 ], [ -80.324028015136719, -3.433748960494938 ], [ -80.324028015136719, -3.433470964431706 ], [ -80.323753356933594, -3.433473110198918 ], [ -80.323753356933594, -3.433195114135685 ], [ -80.323471069335938, -3.433195114135685 ], [ -80.323471069335938, -3.432917118072453 ], [ -80.323196411132812, -3.432917118072453 ], [ -80.323196411132812, -3.432082891464233 ], [ -80.322914123535099, -3.432082891464233 ], [ -80.322914123535099, -3.431526899337769 ], [ -80.322639465331974, -3.431526899337769 ], [ -80.322639465331974, -3.430417060851994 ], [ -80.322364807128849, -3.430417060851994 ], [ -80.322364807128849, -3.429861068725529 ], [ -80.322082519531193, -3.429861068725529 ], [ -80.322082519531193, -3.429027080535832 ], [ -80.321807861328011, -3.429027080535832 ], [ -80.321807861328011, -3.428750991821289 ], [ -80.321525573730469, -3.428750991821289 ], [ -80.321525573730469, -3.428472995758057 ], [ -80.321250915527344, -3.428472995758057 ], [ -80.321250915527344, -3.428194999694824 ], [ -80.320968627929688, -3.428194999694824 ], [ -80.320968627929688, -3.427083015441781 ], [ -80.320693969726562, -3.427084922790527 ], [ -80.320693969726562, -3.42625093460083 ], [ -80.320419311523438, -3.42625093460083 ], [ -80.320419311523438, -3.425972938537598 ], [ -80.320137023925781, -3.425972938537598 ], [ -80.320137023925781, -3.425694942474365 ], [ -80.319862365722599, -3.425694942474365 ], [ -80.319862365722599, -3.425137996673584 ], [ -80.319580078124943, -3.425137996673584 ], [ -80.319580078124943, -3.424582004547119 ], [ -80.319305419921818, -3.424582004547119 ], [ -80.319305419921818, -3.424307107925415 ], [ -80.319030761718693, -3.424307107925415 ], [ -80.319030761718693, -3.423471927642765 ], [ -80.318748474121037, -3.423471927642765 ], [ -80.318748474121037, -3.422084093093872 ], [ -80.318473815917969, -3.422084093093872 ], [ -80.318473815917969, -3.421528100967407 ], [ -80.318191528320312, -3.421528100967407 ], [ -80.318191528320312, -3.420972108840942 ], [ -80.317916870117188, -3.420972108840942 ], [ -80.317916870117188, -3.420416116714478 ], [ -80.317642211914062, -3.420416116714478 ], [ -80.317642211914062, -3.420137882232609 ], [ -80.317916870117188, -3.420137882232609 ], [ -80.317916870117188, -3.419028043746948 ], [ -80.318191528320312, -3.419028043746948 ], [ -80.318191528320312, -3.418750047683716 ], [ -80.317642211914062, -3.418750047683716 ], [ -80.317642211914062, -3.418472051620483 ], [ -80.316802978515625, -3.418472051620483 ], [ -80.316802978515625, -3.418194055557251 ], [ -80.316253662109318, -3.418194055557251 ], [ -80.316253662109318, -3.417916059494019 ], [ -80.315696716308537, -3.417916059494019 ], [ -80.315696716308537, -3.417638063430786 ], [ -80.315139770507812, -3.417638063430786 ], [ -80.315139770507812, -3.417360067367554 ], [ -80.314857482910156, -3.417360067367554 ], [ -80.314857482910156, -3.417082071304321 ], [ -80.314308166503906, -3.417083978652897 ], [ -80.314308166503906, -3.416805982589665 ], [ -80.313751220703125, -3.416805982589665 ], [ -80.313751220703125, -3.4162499904632 ], [ -80.31402587890625, -3.4162499904632 ], [ -80.31402587890625, -3.415971994399968 ], [ -80.313751220703125, -3.415971994399968 ], [ -80.313751220703125, -3.415693998336735 ], [ -80.313468933105469, -3.415693998336735 ], [ -80.313468933105469, -3.41541600227356 ], [ -80.313194274902287, -3.41541600227356 ], [ -80.313194274902287, -3.413749933242741 ], [ -80.312919616699162, -3.413749933242741 ], [ -80.312919616699162, -3.412640094757023 ], [ -80.313194274902287, -3.412640094757023 ], [ -80.313194274902287, -3.412362098693791 ], [ -80.312919616699162, -3.412362098693791 ], [ -80.312919616699162, -3.411526918411255 ], [ -80.312637329101506, -3.411526918411255 ], [ -80.312637329101506, -3.410692930221558 ], [ -80.312919616699162, -3.410696029663029 ], [ -80.312919616699162, -3.409861087798959 ], [ -80.312637329101506, -3.409861087798959 ], [ -80.312637329101506, -3.409583091735726 ], [ -80.312362670898324, -3.409583091735726 ], [ -80.312362670898324, -3.409305095672551 ], [ -80.312080383300668, -3.409305095672551 ], [ -80.312080383300668, -3.409027099609318 ], [ -80.311805725097656, -3.409027099609318 ], [ -80.311805725097656, -3.408749103546086 ], [ -80.311531066894531, -3.408749103546086 ], [ -80.311531066894531, -3.408195018768311 ], [ -80.311248779296875, -3.408195018768311 ], [ -80.311248779296875, -3.407361030578613 ], [ -80.31097412109375, -3.407361030578613 ], [ -80.31097412109375, -3.40624904632557 ], [ -80.311248779296875, -3.40624904632557 ], [ -80.311248779296875, -3.405694961547852 ], [ -80.311531066894531, -3.405694961547852 ], [ -80.311531066894531, -3.404860973358154 ], [ -80.311248779296875, -3.404860973358154 ], [ -80.311248779296875, -3.404304981231689 ], [ -80.31097412109375, -3.404304981231689 ], [ -80.31097412109375, -3.404026985168457 ], [ -80.310691833496094, -3.404026985168457 ], [ -80.310691833496094, -3.403748989105225 ], [ -80.310417175292969, -3.403748989105225 ], [ -80.310417175292969, -3.403470993041992 ], [ -80.310142517089787, -3.403472900390568 ], [ -80.310142517089787, -3.403194904327336 ], [ -80.309860229492131, -3.403194904327336 ], [ -80.309860229492131, -3.40291690826416 ], [ -80.309585571289006, -3.40291690826416 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ID_0": 178, "ISO": "PE-UCA", "NAME_0": "Peru", "ID_1": 26, "NAME_1": "Ucayali", "TYPE_1": "Región", "ENGTYPE_1": "Region", "NL_NAME_1": null, "VARNAME_1": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.484786987304688, -7.297749996185246 ], [ -74.479309082031193, -7.298179149627629 ], [ -74.475936889648438, -7.298069000244141 ], [ -74.47292327880848, -7.298261165618896 ], [ -74.467582702636605, -7.299560070037842 ], [ -74.463722229003906, -7.301050186157227 ], [ -74.461853027343693, -7.301469802856388 ], [ -74.460479736328125, -7.301410198211613 ], [ -74.456626892089844, -7.300500869750977 ], [ -74.455436706542912, -7.300518989562931 ], [ -74.450866699218693, -7.302441120147705 ], [ -74.445106506347656, -7.304528236389103 ], [ -74.442329406738281, -7.305118083953857 ], [ -74.440406799316406, -7.305778980255127 ], [ -74.437759399414062, -7.305859088897705 ], [ -74.430686950683594, -7.307378768920898 ], [ -74.426902770996094, -7.308468818664551 ], [ -74.422378540038949, -7.310268878936768 ], [ -74.418312072753906, -7.310819149017277 ], [ -74.416511535644531, -7.311480045318604 ], [ -74.409439086914062, -7.313339233398438 ], [ -74.406906127929631, -7.314370155334473 ], [ -74.404296875, -7.314799785614014 ], [ -74.400642395019531, -7.316020011901799 ], [ -74.393890380859375, -7.317338943481445 ], [ -74.389122009277344, -7.319001197814885 ], [ -74.386520385742074, -7.320329189300537 ], [ -74.382186889648438, -7.324039936065617 ], [ -74.370376586914006, -7.337228775024414 ], [ -74.365959167480469, -7.340818881988525 ], [ -74.363426208496037, -7.342480182647705 ], [ -74.355728149414062, -7.345419883728027 ], [ -74.345489501953068, -7.347890853881836 ], [ -74.341621398925781, -7.349310874938965 ], [ -74.339889526367188, -7.350168228149414 ], [ -74.336807250976506, -7.351058959960938 ], [ -74.329826354980469, -7.354488849639836 ], [ -74.320487976074219, -7.357389926910344 ], [ -74.313156127929631, -7.361019134521484 ], [ -74.308937072753906, -7.362538814544678 ], [ -74.304885864257699, -7.364490032196045 ], [ -74.295387268066406, -7.367910861968994 ], [ -74.294868469238224, -7.368279933929443 ], [ -74.293533325195256, -7.368598937988281 ], [ -74.289611816406193, -7.37060022354126 ], [ -74.284416198730469, -7.372140884399357 ], [ -74.282691955566406, -7.372971057891789 ], [ -74.279975891113224, -7.373829841613713 ], [ -74.273010253906193, -7.376879215240479 ], [ -74.269439697265625, -7.37872123718256 ], [ -74.265266418457031, -7.381250858306885 ], [ -74.262008666992188, -7.383609771728516 ], [ -74.260406494140625, -7.384448051452637 ], [ -74.259361267089787, -7.385480880737305 ], [ -74.258689880371094, -7.385799884796143 ], [ -74.255340576171875, -7.388518810272217 ], [ -74.24981689453125, -7.394039154052678 ], [ -74.246017456054631, -7.398398876190129 ], [ -74.244789123535099, -7.400119781494141 ], [ -74.242706298828011, -7.402188777923527 ], [ -74.241096496582031, -7.404308795928955 ], [ -74.237556457519418, -7.407900810241699 ], [ -74.230171203613281, -7.416069030761662 ], [ -74.227706909179631, -7.419510841369572 ], [ -74.223442077636605, -7.424428939819279 ], [ -74.219978332519474, -7.429518222808838 ], [ -74.216842651367131, -7.433010101318359 ], [ -74.213279724121094, -7.43755912780756 ], [ -74.208892822265625, -7.443789958953857 ], [ -74.20436859130848, -7.449479103088322 ], [ -74.196762084960938, -7.456929206848031 ], [ -74.193153381347656, -7.459919929504395 ], [ -74.189392089843693, -7.462309837341252 ], [ -74.186721801757756, -7.463521003723145 ], [ -74.180656433105469, -7.46497917175293 ], [ -74.177040100097656, -7.465599060058594 ], [ -74.173896789550781, -7.466578960418701 ], [ -74.170768737792912, -7.467260837554875 ], [ -74.166236877441406, -7.467889785766545 ], [ -74.15460205078125, -7.468320846557617 ], [ -74.150497436523438, -7.468729019165039 ], [ -74.143898010253849, -7.468290805816594 ], [ -74.137863159179631, -7.468338966369572 ], [ -74.134010314941406, -7.468120098113957 ], [ -74.128677368164062, -7.467169761657658 ], [ -74.121559143066349, -7.46652889251709 ], [ -74.112762451171875, -7.464669227600098 ], [ -74.103927612304631, -7.463521003723145 ], [ -74.090759277343693, -7.464280128479004 ], [ -74.084053039550781, -7.465750217437744 ], [ -74.082046508789062, -7.46668004989624 ], [ -74.077018737792912, -7.469710826873779 ], [ -74.069602966308537, -7.472339153289738 ], [ -74.063468933105469, -7.475638866424561 ], [ -74.054817199706974, -7.479209899902287 ], [ -74.049362182617131, -7.482490062713623 ], [ -74.046516418456974, -7.483939170837346 ], [ -74.042091369628906, -7.487809181213322 ], [ -74.040756225585938, -7.48943901062006 ], [ -74.038810729980355, -7.49255895614624 ], [ -74.035781860351562, -7.496708869934082 ], [ -74.033203125, -7.49951076507557 ], [ -74.030265808105469, -7.502129077911377 ], [ -74.025520324706974, -7.505469799041748 ], [ -74.023826599121037, -7.506427764892578 ], [ -74.018707275390625, -7.510320186614933 ], [ -74.009368896484375, -7.515850067138672 ], [ -74.006179809570256, -7.517029762268066 ], [ -74.000038146972656, -7.518040180206242 ], [ -73.999176025390625, -7.518421173095703 ], [ -73.993186950683594, -7.524599075317383 ], [ -73.991371154785156, -7.527191162109261 ], [ -73.98956298828125, -7.529129981994629 ], [ -73.988876342773438, -7.530428886413574 ], [ -73.98760986328125, -7.531781196594181 ], [ -73.988456726074105, -7.533209800720215 ], [ -73.989059448242188, -7.53589916229248 ], [ -73.989242553710938, -7.539848804473877 ], [ -73.989707946777344, -7.543320178985482 ], [ -73.989585876464787, -7.550219058990422 ], [ -73.989372253417969, -7.550519943237305 ], [ -73.988800048828125, -7.553969860076847 ], [ -73.988243103027287, -7.555809974670353 ], [ -73.987129211425781, -7.557711124420166 ], [ -73.986061096191349, -7.55954980850214 ], [ -73.984626770019474, -7.561329841613713 ], [ -73.981300354003849, -7.564239978790283 ], [ -73.9791259765625, -7.565228939056396 ], [ -73.974662780761719, -7.566130161285344 ], [ -73.969947814941349, -7.565758228302002 ], [ -73.968780517578068, -7.566089153289681 ], [ -73.967956542968636, -7.566628932952881 ], [ -73.966720581054688, -7.56826114654541 ], [ -73.960700988769474, -7.574189186096191 ], [ -73.957305908203125, -7.57807016372675 ], [ -73.953887939453125, -7.581530094146729 ], [ -73.948402404785043, -7.589130878448486 ], [ -73.946830749511719, -7.590819835662842 ], [ -73.944946289062443, -7.593541145324707 ], [ -73.943496704101562, -7.595209121704045 ], [ -73.942329406738281, -7.597101211547852 ], [ -73.940628051757812, -7.599158763885441 ], [ -73.938369750976506, -7.60273885726923 ], [ -73.936515808105469, -7.604518890380803 ], [ -73.933563232421875, -7.606179237365609 ], [ -73.931030273437443, -7.608139038085881 ], [ -73.929283142089844, -7.608971118927002 ], [ -73.927566528320312, -7.610349178314209 ], [ -73.926452636718693, -7.610788822174015 ], [ -73.925422668456918, -7.611731052398625 ], [ -73.924026489257812, -7.612430095672551 ], [ -73.921623229980469, -7.614398956298828 ], [ -73.92047119140625, -7.614968776702881 ], [ -73.918869018554688, -7.616350173950195 ], [ -73.917060852050781, -7.617448806762638 ], [ -73.914962768554688, -7.619228839874211 ], [ -73.91259765625, -7.620779037475529 ], [ -73.911422729492188, -7.621301174163818 ], [ -73.909927368164062, -7.622519969940129 ], [ -73.907173156738224, -7.62394905090332 ], [ -73.904426574706974, -7.624979019164982 ], [ -73.903022766113281, -7.625850200653019 ], [ -73.901786804199219, -7.626239776611328 ], [ -73.899566650390568, -7.627530097961369 ], [ -73.898490905761662, -7.627729892730713 ], [ -73.898300170898381, -7.627810001373291 ], [ -73.895767211914062, -7.62883996963501 ], [ -73.891822814941349, -7.630729198455754 ], [ -73.890800476074105, -7.631519794464054 ], [ -73.888038635253793, -7.632258892059269 ], [ -73.88690185546875, -7.632781028747559 ], [ -73.886238098144531, -7.633581161499023 ], [ -73.885650634765511, -7.634820938110352 ], [ -73.884971618652287, -7.636830806732178 ], [ -73.884925842285156, -7.637839794158936 ], [ -73.885086059570312, -7.64362907409668 ], [ -73.885261535644474, -7.644299030303898 ], [ -73.885528564453068, -7.64532995223999 ], [ -73.886177062988281, -7.649880886077881 ], [ -73.886360168457031, -7.652550220489502 ], [ -73.88580322265625, -7.654678821563664 ], [ -73.884208679199162, -7.65735912322998 ], [ -73.877197265625, -7.664420127868652 ], [ -73.873130798339787, -7.66812086105341 ], [ -73.869186401367188, -7.671710968017578 ], [ -73.864311218261719, -7.67559909820551 ], [ -73.862091064453068, -7.67706918716425 ], [ -73.861396789550724, -7.677299022674561 ], [ -73.856346130371037, -7.677010059356633 ], [ -73.852958679199219, -7.675380229949837 ], [ -73.852066040039006, -7.675108909606934 ], [ -73.851730346679688, -7.67499923706049 ], [ -73.847602844238168, -7.674979209899846 ], [ -73.846160888671818, -7.67533016204834 ], [ -73.845306396484318, -7.67582893371582 ], [ -73.843955993652287, -7.677929878234863 ], [ -73.842117309570312, -7.683389186859131 ], [ -73.840682983398438, -7.686548233032227 ], [ -73.840568542480469, -7.686789035797062 ], [ -73.840370178222656, -7.687229156494141 ], [ -73.839767456054631, -7.687940120697021 ], [ -73.838668823242188, -7.689269065856877 ], [ -73.835128784179688, -7.692609786987305 ], [ -73.833251953125, -7.695098876953068 ], [ -73.830017089843693, -7.701389789581299 ], [ -73.829612731933594, -7.702799797058049 ], [ -73.827247619628906, -7.707169055938721 ], [ -73.823806762695312, -7.712480068206787 ], [ -73.822288513183594, -7.715528964996338 ], [ -73.820655822753906, -7.717129230499268 ], [ -73.817909240722599, -7.718949794769287 ], [ -73.817115783691406, -7.719348907470646 ], [ -73.816383361816349, -7.719720840454102 ], [ -73.812545776367188, -7.721220016479492 ], [ -73.809516906738224, -7.722041130065918 ], [ -73.807823181152287, -7.722050189971924 ], [ -73.805130004882756, -7.722058773040715 ], [ -73.797569274902344, -7.721309185028076 ], [ -73.791511535644474, -7.721309185028076 ], [ -73.789962768554631, -7.721889972686768 ], [ -73.786491394042969, -7.722179889678955 ], [ -73.781906127929688, -7.723528861999398 ], [ -73.779716491699219, -7.724459171295109 ], [ -73.774063110351506, -7.727499008178654 ], [ -73.772827148437443, -7.727889060974064 ], [ -73.771652221679631, -7.728650093078613 ], [ -73.768768310546875, -7.729579925537109 ], [ -73.766853332519531, -7.729798793792725 ], [ -73.764816284179631, -7.730360031127873 ], [ -73.761802673339844, -7.730609893798714 ], [ -73.760437011718636, -7.730609893798714 ], [ -73.755722045898438, -7.729848861694336 ], [ -73.753433227539062, -7.729939937591553 ], [ -73.750396728515568, -7.730639934539795 ], [ -73.748336791992188, -7.731429100036564 ], [ -73.745109558105469, -7.733979225158691 ], [ -73.742179870605469, -7.735870838165283 ], [ -73.739006042480469, -7.738560199737549 ], [ -73.736137390136719, -7.740489959716797 ], [ -73.733078002929688, -7.741919040679875 ], [ -73.730499267578125, -7.743449211120549 ], [ -73.726936340331974, -7.744938850402718 ], [ -73.724716186523438, -7.745530128479004 ], [ -73.72344970703125, -7.746270179748478 ], [ -73.722251892089787, -7.747760772705021 ], [ -73.720771789550781, -7.750609874725285 ], [ -73.718681335449219, -7.752529144287053 ], [ -73.7181396484375, -7.752628803253117 ], [ -73.715286254882812, -7.754279136657715 ], [ -73.712982177734375, -7.755099773406926 ], [ -73.709510803222543, -7.756779193878174 ], [ -73.706436157226506, -7.758899211883488 ], [ -73.703765869140568, -7.759769916534367 ], [ -73.701927185058594, -7.760611057281437 ], [ -73.694976806640568, -7.766598224639893 ], [ -73.690231323242131, -7.772109031677246 ], [ -73.687202453613281, -7.775619029998779 ], [ -73.684547424316406, -7.780548095703068 ], [ -73.683631896972599, -7.782619953155518 ], [ -73.682731628417969, -7.785409927368164 ], [ -73.681922912597599, -7.790499210357666 ], [ -73.68157958984375, -7.795859813690186 ], [ -73.683425903320312, -7.801640033721867 ], [ -73.684600830078068, -7.808859825134221 ], [ -73.684806823730355, -7.80919885635376 ], [ -73.684906005859261, -7.81157922744751 ], [ -73.685508728027344, -7.814459800720215 ], [ -73.685844421386662, -7.817963123321476 ], [ -73.685722351074219, -7.819954872131348 ], [ -73.685417175292969, -7.824628829956055 ], [ -73.685089111328068, -7.826361179351807 ], [ -73.684356689453125, -7.830140113830566 ], [ -73.684272766113281, -7.832529067993164 ], [ -73.684028625488224, -7.833219051361084 ], [ -73.684036254882756, -7.83561897277832 ], [ -73.683586120605469, -7.836921215057316 ], [ -73.683502197265625, -7.843179225921517 ], [ -73.683723449706974, -7.844439029693547 ], [ -73.683975219726562, -7.844984054565373 ], [ -73.684226989746037, -7.845529079437199 ], [ -73.685935974121037, -7.847449779510498 ], [ -73.689903259277344, -7.850459098815861 ], [ -73.695777893066293, -7.854918956756592 ], [ -73.696281433105469, -7.855799198150635 ], [ -73.696807861328068, -7.856729030609131 ], [ -73.698287963867188, -7.860610008239746 ], [ -73.699562072753849, -7.863059997558537 ], [ -73.700439453124943, -7.865711212158146 ], [ -73.701126098632812, -7.867768764495793 ], [ -73.702217102050781, -7.869900226593018 ], [ -73.703216552734261, -7.871240139007568 ], [ -73.704307556152344, -7.872220039367619 ], [ -73.705612182617188, -7.872729778289795 ], [ -73.707038879394531, -7.872940063476562 ], [ -73.708656311035156, -7.872940063476562 ], [ -73.711540222167969, -7.872940063476562 ], [ -73.713897705078011, -7.872710227966309 ], [ -73.716102600097656, -7.872488975524846 ], [ -73.723365783691406, -7.872917175292969 ], [ -73.724082946777287, -7.872961044311523 ], [ -73.733886718749943, -7.872889995574951 ], [ -73.738533020019531, -7.871809959411564 ], [ -73.741287231445312, -7.871699810028076 ], [ -73.742271423339844, -7.8715500831604 ], [ -73.745010375976562, -7.871140003204346 ], [ -73.746116638183537, -7.870488166809082 ], [ -73.747169494628849, -7.869439125061035 ], [ -73.747306823730469, -7.86929988861084 ], [ -73.7510986328125, -7.863989830017033 ], [ -73.751747131347599, -7.86266994476307 ], [ -73.752716064453125, -7.861448764801025 ], [ -73.754318237304631, -7.858749866485596 ], [ -73.754600524902287, -7.858290195465088 ], [ -73.755851745605412, -7.856820106506348 ], [ -73.757415771484375, -7.855730056762695 ], [ -73.759239196777344, -7.855329036712646 ], [ -73.762550354003906, -7.856698989868107 ], [ -73.764053344726506, -7.858040809631291 ], [ -73.765602111816406, -7.861339092254582 ], [ -73.765632629394531, -7.86175012588501 ], [ -73.765930175781193, -7.865819931030273 ], [ -73.765609741210938, -7.870499134063664 ], [ -73.764640808105469, -7.872889995574951 ], [ -73.764526367187443, -7.873798847198486 ], [ -73.7630615234375, -7.876239776611328 ], [ -73.762016296386719, -7.877709865570068 ], [ -73.759986877441406, -7.879838943481445 ], [ -73.759750366210881, -7.880428791046086 ], [ -73.756752014160156, -7.883549213409424 ], [ -73.7547607421875, -7.886410236358643 ], [ -73.75337982177723, -7.889609813690186 ], [ -73.753318786621094, -7.892100811004639 ], [ -73.754158020019531, -7.893839836120549 ], [ -73.755699157714844, -7.895158767700138 ], [ -73.75665283203125, -7.895699977874699 ], [ -73.758506774902287, -7.896218776702881 ], [ -73.762817382812386, -7.896458148956242 ], [ -73.76644134521473, -7.897018909454289 ], [ -73.77008056640625, -7.898300170898438 ], [ -73.772308349609375, -7.899930000305176 ], [ -73.772369384765625, -7.900053024291992 ], [ -73.773162841796875, -7.901599884033146 ], [ -73.773811340332031, -7.902870178222656 ], [ -73.773773193359318, -7.904150962829533 ], [ -73.773391723632756, -7.904678821563721 ], [ -73.771842956542912, -7.90595102310175 ], [ -73.770973205566406, -7.906622886657658 ], [ -73.770042419433537, -7.907199859619084 ], [ -73.763481140136662, -7.90981912612915 ], [ -73.758880615234318, -7.912260055541992 ], [ -73.757575988769418, -7.913129806518555 ], [ -73.756179809570312, -7.91481876373291 ], [ -73.754707336425724, -7.919078826904297 ], [ -73.752777099609318, -7.923840045928955 ], [ -73.749732971191349, -7.930009841918945 ], [ -73.748489379882756, -7.933770179748535 ], [ -73.747901916503906, -7.937219142913818 ], [ -73.747581481933594, -7.942461013793888 ], [ -73.748672485351506, -7.947638988494816 ], [ -73.748817443847656, -7.950859069824219 ], [ -73.748458862304688, -7.952812194824162 ], [ -73.748268127441406, -7.953848838806152 ], [ -73.747306823730469, -7.955558776855412 ], [ -73.746749877929688, -7.956039905548039 ], [ -73.745338439941349, -7.956518173217773 ], [ -73.744766235351506, -7.956709861755371 ], [ -73.740150451660156, -7.957589149475041 ], [ -73.738151550292969, -7.957968235015869 ], [ -73.736778259277287, -7.957991123199406 ], [ -73.735572814941406, -7.958450794219914 ], [ -73.734001159667912, -7.960110187530518 ], [ -73.733711242675724, -7.960590839385986 ], [ -73.731986999511662, -7.963490009307804 ], [ -73.731315612792912, -7.964609146118164 ], [ -73.729812622070256, -7.966208934783936 ], [ -73.728706359863281, -7.966849803924561 ], [ -73.727981567382756, -7.966670036315918 ], [ -73.727821350097543, -7.966629028320256 ], [ -73.726158142089844, -7.965019226074162 ], [ -73.7255859375, -7.963020801544133 ], [ -73.725196838378906, -7.961618900299015 ], [ -73.724693298339844, -7.960760116577092 ], [ -73.723579406738281, -7.959640979766846 ], [ -73.721778869628849, -7.958950042724609 ], [ -73.717750549316406, -7.958778858184814 ], [ -73.716331481933594, -7.959177970886174 ], [ -73.712661743164062, -7.959670066833496 ], [ -73.708328247070256, -7.960898876190129 ], [ -73.705223083496094, -7.961090087890568 ], [ -73.702583312988281, -7.960818767547607 ], [ -73.697273254394474, -7.959290027618351 ], [ -73.696159362792855, -7.959369182586613 ], [ -73.695632934570312, -7.959700107574463 ], [ -73.694572448730469, -7.961439132690373 ], [ -73.691726684570312, -7.969600200653076 ], [ -73.690307617187443, -7.974811077117863 ], [ -73.689796447753906, -7.976290225982666 ], [ -73.684486389160099, -7.980830192565804 ], [ -73.676849365234375, -7.991810798644963 ], [ -73.677902221679688, -7.999269962310791 ], [ -73.676185607910156, -8.001017570495549 ], [ -73.671188354492188, -8.006118774414006 ], [ -73.665229797363224, -8.007969856262207 ], [ -73.6617431640625, -8.009050369262695 ], [ -73.647453308105469, -8.010569572448674 ], [ -73.638908386230412, -8.014419555664006 ], [ -73.637893676757812, -8.015254020690861 ], [ -73.634506225585938, -8.018030166625977 ], [ -73.631973266601449, -8.020119667053223 ], [ -73.631622314453125, -8.020831108093262 ], [ -73.630226135253849, -8.023689270019531 ], [ -73.627891540527344, -8.028509140014648 ], [ -73.627082824706974, -8.030945777892953 ], [ -73.626121520996037, -8.03386116027832 ], [ -73.625579833984318, -8.038920402526855 ], [ -73.624641418457031, -8.047649383544922 ], [ -73.624176025390625, -8.051899909973088 ], [ -73.623435974121094, -8.058878898620605 ], [ -73.6182861328125, -8.071020126342717 ], [ -73.600807189941406, -8.095099449157715 ], [ -73.597541809081974, -8.099609375 ], [ -73.596321105957031, -8.101288795471191 ], [ -73.596221923828125, -8.101428031921387 ], [ -73.590858459472599, -8.112648010253849 ], [ -73.589630126953011, -8.119428634643555 ], [ -73.587760925292969, -8.129700660705566 ], [ -73.587318420410099, -8.132119178771916 ], [ -73.581306457519474, -8.165188789367619 ], [ -73.583160400390625, -8.199200630187988 ], [ -73.580757141113224, -8.212730407714844 ], [ -73.577720642089844, -8.220759391784611 ], [ -73.568885803222656, -8.232868194580078 ], [ -73.567947387695256, -8.233699798583984 ], [ -73.563491821289006, -8.237589836120605 ], [ -73.537376403808594, -8.260467529296818 ], [ -73.535026550292969, -8.265728950500431 ], [ -73.533096313476562, -8.278360366821289 ], [ -73.533538818359318, -8.283738136291447 ], [ -73.533958435058594, -8.28892803192133 ], [ -73.532638549804688, -8.298247337341309 ], [ -73.530090332031193, -8.316239356994629 ], [ -73.529640197753849, -8.329889297485352 ], [ -73.528968811035099, -8.350530624389592 ], [ -73.518592834472656, -8.361550331115666 ], [ -73.517616271972599, -8.363380432128906 ], [ -73.513175964355469, -8.368039131164494 ], [ -73.508399963378906, -8.374529838562012 ], [ -73.505493164062443, -8.377738952636662 ], [ -73.5045166015625, -8.37880802154541 ], [ -73.50115966796875, -8.381978034973088 ], [ -73.498466491699219, -8.383699417114201 ], [ -73.498016357421875, -8.383929252624455 ], [ -73.493919372558594, -8.38601016998291 ], [ -73.491767883300724, -8.38677978515625 ], [ -73.488792419433537, -8.38712024688715 ], [ -73.485778808593636, -8.387061119079533 ], [ -73.483627319335938, -8.386558532714844 ], [ -73.482177734375, -8.386228561401367 ], [ -73.47894287109375, -8.386049270629883 ], [ -73.476226806640568, -8.386438369750977 ], [ -73.472541809082031, -8.387789726257324 ], [ -73.470886230468693, -8.389049530029297 ], [ -73.459510803222656, -8.400609970092717 ], [ -73.459358215331918, -8.400760650634766 ], [ -73.458732604980469, -8.401219367980957 ], [ -73.452667236328068, -8.405670166015625 ], [ -73.442886352539062, -8.414737701416016 ], [ -73.435043334960824, -8.420419692993107 ], [ -73.433616638183594, -8.421648979187012 ], [ -73.432266235351506, -8.422828674316406 ], [ -73.425926208496094, -8.429510116577035 ], [ -73.420608520507756, -8.436168670654297 ], [ -73.419197082519474, -8.43853855133051 ], [ -73.418632507324162, -8.440779685974064 ], [ -73.416526794433537, -8.443799972534123 ], [ -73.412208557128906, -8.453458786010742 ], [ -73.410507202148381, -8.456708908081055 ], [ -73.406433105468636, -8.461721420288029 ], [ -73.401878356933594, -8.466270446777287 ], [ -73.398811340332031, -8.467879295349121 ], [ -73.395011901855469, -8.470879554748535 ], [ -73.3924560546875, -8.471938133239689 ], [ -73.390197753906193, -8.472418785095158 ], [ -73.388122558593636, -8.472510337829533 ], [ -73.385360717773438, -8.472229957580566 ], [ -73.379020690917969, -8.470890045166016 ], [ -73.376899719238281, -8.470009803771916 ], [ -73.37158203125, -8.469588279724007 ], [ -73.366966247558594, -8.469570159912109 ], [ -73.364486694335938, -8.469880104064941 ], [ -73.359092712402287, -8.471969604492131 ], [ -73.347366333007756, -8.47445011138916 ], [ -73.344108581542969, -8.475639343261719 ], [ -73.341743469238224, -8.476848602294865 ], [ -73.341445922851562, -8.476998329162598 ], [ -73.335968017578125, -8.481208801269531 ], [ -73.331550598144474, -8.483899116516113 ], [ -73.330451965332031, -8.48456859588623 ], [ -73.32765960693348, -8.486980438232422 ], [ -73.32586669921875, -8.489398002624455 ], [ -73.3248291015625, -8.491719245910645 ], [ -73.324401855468693, -8.494659423828068 ], [ -73.324501037597599, -8.498820304870605 ], [ -73.325523376464787, -8.50088977813715 ], [ -73.327056884765568, -8.502918243408203 ], [ -73.328147888183594, -8.505709648132267 ], [ -73.328407287597599, -8.506078720092717 ], [ -73.333236694335938, -8.512819290161133 ], [ -73.336296081542969, -8.517970085144043 ], [ -73.339202880859375, -8.523719787597656 ], [ -73.340972900390568, -8.528950691223088 ], [ -73.341606140136719, -8.531400680541992 ], [ -73.342178344726562, -8.534849166870117 ], [ -73.34210205078125, -8.537089347839299 ], [ -73.341781616210938, -8.546139717102051 ], [ -73.341896057128906, -8.553019523620549 ], [ -73.343353271484375, -8.560488700866699 ], [ -73.343582153320199, -8.563449859619084 ], [ -73.342323303222599, -8.575139045715332 ], [ -73.342185974121094, -8.575880050659123 ], [ -73.340927124023438, -8.583049774169922 ], [ -73.339836120605412, -8.585089683532715 ], [ -73.337646484374943, -8.587750434875488 ], [ -73.334518432617131, -8.592829704284668 ], [ -73.334129333496037, -8.594388961791935 ], [ -73.333908081054688, -8.597608566284123 ], [ -73.332679748535099, -8.602048873901367 ], [ -73.330520629882699, -8.606869697570687 ], [ -73.327636718749943, -8.611317634582463 ], [ -73.324539184570312, -8.615318298339787 ], [ -73.324043273925781, -8.61579704284668 ], [ -73.323059082031193, -8.61674976348877 ], [ -73.314926147460938, -8.624620437622013 ], [ -73.311813354492131, -8.627979278564453 ], [ -73.305236816406193, -8.636890411376953 ], [ -73.302658081054631, -8.640389442443848 ], [ -73.297706604003849, -8.646160125732422 ], [ -73.286300659179688, -8.660907745361271 ], [ -73.282806396484318, -8.665768623352051 ], [ -73.278526306152287, -8.672588348388672 ], [ -73.273406982421875, -8.678408622741642 ], [ -73.26788330078125, -8.684700012207031 ], [ -73.265426635742188, -8.687137603759709 ], [ -73.263442993164006, -8.688688278198185 ], [ -73.260467529296875, -8.689998626708928 ], [ -73.258438110351562, -8.690320014953613 ], [ -73.256752014160156, -8.690410614013672 ], [ -73.253349304199162, -8.690601348876953 ], [ -73.252326965332031, -8.691149711608887 ], [ -73.251647949218636, -8.691149711608887 ], [ -73.245903015136662, -8.690549850463867 ], [ -73.243141174316349, -8.690849304199162 ], [ -73.237106323242188, -8.689349174499512 ], [ -73.233535766601562, -8.689101219177189 ], [ -73.232955932617074, -8.689060211181641 ], [ -73.230735778808537, -8.688460350036621 ], [ -73.227279663085938, -8.688440322875977 ], [ -73.223457336425781, -8.687578201293945 ], [ -73.220001220703125, -8.687568664550781 ], [ -73.217323303222656, -8.686958312988281 ], [ -73.212226867675724, -8.686948776245117 ], [ -73.209053039550781, -8.686367988586426 ], [ -73.205825805664062, -8.686308860778809 ], [ -73.203277587890568, -8.686400413513184 ], [ -73.200325012206974, -8.68684005737299 ], [ -73.197441101074219, -8.687689781188908 ], [ -73.194671630859375, -8.68883037567133 ], [ -73.1893310546875, -8.692038536071777 ], [ -73.187156677246037, -8.6928195953368 ], [ -73.186370849609375, -8.693550109863281 ], [ -73.185806274414062, -8.694068908691406 ], [ -73.179267883300668, -8.696861267089787 ], [ -73.177299499511719, -8.698040008544922 ], [ -73.165252685546875, -8.705289840698185 ], [ -73.162261962890568, -8.707448005676213 ], [ -73.160751342773381, -8.708890914916992 ], [ -73.159759521484375, -8.709838867187443 ], [ -73.156959533691406, -8.713199615478516 ], [ -73.156005859375, -8.71465015411377 ], [ -73.15594482421875, -8.714738845825138 ], [ -73.154975891113281, -8.716839790344238 ], [ -73.154281616210824, -8.719030380248967 ], [ -73.153511047363224, -8.722870826721191 ], [ -73.153244018554688, -8.730460166931152 ], [ -73.152732849121037, -8.734330177307129 ], [ -73.152008056640625, -8.737480163574162 ], [ -73.150993347167969, -8.741009712219238 ], [ -73.148536682128849, -8.747719764709416 ], [ -73.146781921386719, -8.751979827880803 ], [ -73.144607543945312, -8.756278038024902 ], [ -73.141281127929631, -8.760410308837891 ], [ -73.136528015136662, -8.768299102783146 ], [ -73.134361267089844, -8.770988464355469 ], [ -73.133499145507812, -8.771879196166879 ], [ -73.131477355956974, -8.773968696594238 ], [ -73.128082275390625, -8.777069091796818 ], [ -73.124999999999886, -8.779389381408578 ], [ -73.122451782226562, -8.78173923492426 ], [ -73.119300842285156, -8.784626007080078 ], [ -73.117767333984375, -8.786029815673771 ], [ -73.110321044921875, -8.793238639831486 ], [ -73.107376098632812, -8.796749114990234 ], [ -73.104446411132812, -8.801150321960392 ], [ -73.10089111328125, -8.807319641113281 ], [ -73.099426269531193, -8.81067943572998 ], [ -73.096641540527287, -8.819080352783203 ], [ -73.092880249023438, -8.825910568237305 ], [ -73.078987121582031, -8.844719886779785 ], [ -73.067298889160099, -8.86309909820551 ], [ -73.058517456054631, -8.874309539794922 ], [ -73.049812316894531, -8.887269020080566 ], [ -73.044296264648381, -8.893749237060547 ], [ -73.037849426269531, -8.902419090270996 ], [ -73.03621673583973, -8.90405082702631 ], [ -73.034393310546818, -8.904928207397461 ], [ -73.033988952636662, -8.905338287353459 ], [ -73.031486511230469, -8.907840728759766 ], [ -73.027847290039062, -8.912879943847543 ], [ -73.025276184082031, -8.915808677673283 ], [ -73.022247314453125, -8.919019699096623 ], [ -73.015632629394531, -8.926031112670898 ], [ -73.007102966308537, -8.934419631958008 ], [ -73.001548767089844, -8.939270019531193 ], [ -73.0001220703125, -8.940388679504395 ], [ -72.99501800537098, -8.944389343261719 ], [ -72.984771728515625, -8.951078414916992 ], [ -72.980445861816406, -8.954489707946777 ], [ -72.977149963378849, -8.95736026763916 ], [ -72.974197387695256, -8.959939956664982 ], [ -72.960357666015625, -8.973129272460881 ], [ -72.95745849609375, -8.976420402526855 ], [ -72.954071044921818, -8.983168601989746 ], [ -72.952468872070256, -8.987269401550293 ], [ -72.952491760253906, -8.989260673522949 ], [ -72.952842712402287, -8.991310119628906 ], [ -72.955596923828068, -9.000609397888184 ], [ -72.956436157226562, -9.002090454101562 ], [ -72.957015991210938, -9.004079818725529 ], [ -72.957221984863224, -9.005880355834904 ], [ -72.956962585449105, -9.008028984069767 ], [ -72.957138061523381, -9.009369850158691 ], [ -72.957588195800781, -9.010149002075195 ], [ -72.958763122558537, -9.010760307312012 ], [ -72.961692810058594, -9.010739326476994 ], [ -72.962326049804688, -9.010908126831055 ], [ -72.963050842285099, -9.011759757995605 ], [ -72.963211059570312, -9.012689590454102 ], [ -72.961746215820312, -9.014527320861816 ], [ -72.961410522460881, -9.014848709106388 ], [ -72.959602355956974, -9.016590118408203 ], [ -72.956596374511719, -9.01835823059082 ], [ -72.956413269042969, -9.019538879394531 ], [ -72.957962036132812, -9.021108627319336 ], [ -72.958076477050724, -9.021759033203068 ], [ -72.957893371581974, -9.022470474243107 ], [ -72.954452514648381, -9.024648666381836 ], [ -72.953628540038949, -9.026478767394963 ], [ -72.952423095703125, -9.027608871459961 ], [ -72.952018737792969, -9.027738571166935 ], [ -72.951286315917969, -9.027990341186523 ], [ -72.948516845703125, -9.027918815612793 ], [ -72.947578430175781, -9.02925968170166 ], [ -72.947219848632756, -9.030199050903263 ], [ -72.946517944335938, -9.034290313720703 ], [ -72.947288513183594, -9.041699409484863 ], [ -72.947052001953125, -9.046289443969727 ], [ -72.945892333984318, -9.048898696899357 ], [ -72.943000793457031, -9.0522203445434 ], [ -72.942878723144531, -9.053400039672795 ], [ -72.943977355956974, -9.055279731750431 ], [ -72.944747924804631, -9.056299209594727 ], [ -72.946998596191406, -9.059250831604004 ], [ -72.949218749999943, -9.063068389892521 ], [ -72.949966430664006, -9.065539360046273 ], [ -72.949989318847599, -9.066108703613224 ], [ -72.950057983398438, -9.068558692932129 ], [ -72.949356079101562, -9.07111835479725 ], [ -72.948547363281193, -9.07304859161377 ], [ -72.94671630859375, -9.075350761413517 ], [ -72.946159362792912, -9.076189041137638 ], [ -72.944625854492131, -9.078479766845703 ], [ -72.943389892578068, -9.079831123352051 ], [ -72.942672729492188, -9.081118583679199 ], [ -72.942131042480469, -9.083069801330566 ], [ -72.942115783691406, -9.087469100952148 ], [ -72.940322875976562, -9.092090606689453 ], [ -72.940177917480355, -9.094868659973145 ], [ -72.940460205078068, -9.096088409423828 ], [ -72.943496704101506, -9.099199295043945 ], [ -72.945091247558594, -9.10221004486084 ], [ -72.945213317871037, -9.103480339050236 ], [ -72.943519592285043, -9.107559204101562 ], [ -72.943367004394531, -9.108559608459473 ], [ -72.943710327148324, -9.109800338745117 ], [ -72.944557189941349, -9.110768318176213 ], [ -72.945816040039062, -9.113038063049316 ], [ -72.946166992187443, -9.115131378173771 ], [ -72.945953369140625, -9.120089530944711 ], [ -72.946098327636719, -9.120718955993652 ], [ -72.947578430175781, -9.12222957611084 ], [ -72.949707031249943, -9.123839378356934 ], [ -72.952583312988281, -9.126840591430664 ], [ -72.953559875488281, -9.128388404846191 ], [ -72.954910278320312, -9.131729125976506 ], [ -72.955780029296875, -9.132667541503849 ], [ -72.956092834472599, -9.13275146484375 ], [ -72.956848144531193, -9.132940292358285 ], [ -72.958221435546875, -9.132519721984806 ], [ -72.958335876464844, -9.132478713989258 ], [ -72.95925140380848, -9.132419586181641 ], [ -72.960166931152344, -9.132519721984806 ], [ -72.960456848144474, -9.13275146484375 ], [ -72.960609436035156, -9.13286018371582 ], [ -72.960762023925724, -9.133578300476074 ], [ -72.960289001464787, -9.134270668029785 ], [ -72.959831237792969, -9.13456916809082 ], [ -72.959312438964787, -9.134678840637207 ], [ -72.958297729492074, -9.134890556335449 ], [ -72.957702636718693, -9.135390281677246 ], [ -72.95745849609375, -9.13593864440918 ], [ -72.957542419433594, -9.136689186096191 ], [ -72.957618713378849, -9.137499809265137 ], [ -72.958045959472656, -9.141730308532658 ], [ -72.958442687988281, -9.142779350280705 ], [ -72.959220886230412, -9.143478393554574 ], [ -72.960441589355469, -9.143460273742676 ], [ -72.960556030273381, -9.143389701843262 ], [ -72.961151123046818, -9.143019676208496 ], [ -72.961616516113224, -9.142988204956055 ], [ -72.962997436523438, -9.143729209899846 ], [ -72.964096069335881, -9.143829345703068 ], [ -72.964813232421875, -9.143608093261719 ], [ -72.965896606445256, -9.142799377441349 ], [ -72.966529846191406, -9.142568588256779 ], [ -72.967117309570312, -9.142699241638184 ], [ -72.967536926269474, -9.143499374389592 ], [ -72.967422485351506, -9.144248962402344 ], [ -72.966186523437443, -9.14684867858881 ], [ -72.966621398925781, -9.147740364074707 ], [ -72.967430114746037, -9.148348808288574 ], [ -72.969352722167912, -9.149249076843205 ], [ -72.973579406738281, -9.152948379516545 ], [ -72.974327087402344, -9.152959823608342 ], [ -72.975830078124943, -9.152538299560433 ], [ -72.977722167968693, -9.153478622436523 ], [ -72.978057861328125, -9.153768539428711 ], [ -72.9791259765625, -9.154680252075138 ], [ -72.981422424316406, -9.1576890945434 ], [ -72.982559204101562, -9.158610343933049 ], [ -72.983741760253849, -9.158799171447754 ], [ -72.985153198242188, -9.158409118652344 ], [ -72.986366271972656, -9.158538818359318 ], [ -72.990509033203068, -9.162341117858887 ], [ -72.991752624511662, -9.162710189819336 ], [ -72.992691040039006, -9.162199020385685 ], [ -72.994003295898438, -9.160529136657715 ], [ -72.994476318359375, -9.160268783569336 ], [ -72.996780395507812, -9.159999847412109 ], [ -72.998741149902344, -9.160490036010685 ], [ -73.008102416992188, -9.165008544921818 ], [ -73.012283325195312, -9.167569160461426 ], [ -73.013847351074219, -9.168968200683594 ], [ -73.014366149902287, -9.169939041137638 ], [ -73.015892028808537, -9.17444992065424 ], [ -73.016357421874943, -9.177080154418888 ], [ -73.016281127929574, -9.178818702697754 ], [ -73.015106201171818, -9.18229866027832 ], [ -73.013938903808594, -9.18346977233881 ], [ -73.012901306152344, -9.18406963348383 ], [ -73.011741638183594, -9.184409141540527 ], [ -73.009719848632812, -9.184988021850529 ], [ -73.007942199707031, -9.185770034789982 ], [ -72.998916625976506, -9.187910079956055 ], [ -72.99810791015625, -9.188659667968693 ], [ -72.997596740722656, -9.190038681030217 ], [ -72.997512817382812, -9.193078994750977 ], [ -73.000099182128906, -9.19960880279541 ], [ -73.002151489257756, -9.202909469604435 ], [ -73.003341674804688, -9.20442008972168 ], [ -73.008743286132756, -9.214378356933594 ], [ -73.010200500488281, -9.21592998504633 ], [ -73.013671874999943, -9.218808174133244 ], [ -73.014762878417969, -9.2195787429809 ], [ -73.020301818847656, -9.223468780517521 ], [ -73.020797729492188, -9.223870277404728 ], [ -73.023033142089787, -9.225639343261719 ], [ -73.024200439453011, -9.226569175720215 ], [ -73.029731750488168, -9.230318069458008 ], [ -73.032386779785099, -9.232118606567326 ], [ -73.034446716308594, -9.233168601989689 ], [ -73.039779663085938, -9.234258651733398 ], [ -73.046470642089844, -9.23445892333973 ], [ -73.048439025878906, -9.234198570251465 ], [ -73.049697875976562, -9.233599662780762 ], [ -73.049880981445312, -9.233519554138184 ], [ -73.052307128906193, -9.23158073425293 ], [ -73.055267333984318, -9.230070114135742 ], [ -73.058586120605469, -9.228998184204102 ], [ -73.064620971679631, -9.228239059448242 ], [ -73.070632934570256, -9.228789329528752 ], [ -73.075912475585938, -9.230018615722656 ], [ -73.079620361328125, -9.231618881225529 ], [ -73.081336975097656, -9.23269081115717 ], [ -73.084419250488281, -9.235339164733887 ], [ -73.085533142089844, -9.236800193786564 ], [ -73.086891174316406, -9.239309310913086 ], [ -73.087738037109375, -9.241938591003361 ], [ -73.087837219238281, -9.24332141876215 ], [ -73.088172912597599, -9.243969917297363 ], [ -73.088371276855412, -9.245988845825195 ], [ -73.088958740234375, -9.248028755187988 ], [ -73.08917236328125, -9.249770164489689 ], [ -73.090759277343693, -9.253690719604492 ], [ -73.091667175292969, -9.255399703979492 ], [ -73.092849731445256, -9.257059097290039 ], [ -73.093955993652344, -9.258628845214844 ], [ -73.094062805175781, -9.259078025817871 ], [ -73.103179931640625, -9.269229888916016 ], [ -73.103897094726506, -9.270310401916447 ], [ -73.110076904296875, -9.276630401611328 ], [ -73.111106872558594, -9.278159141540527 ], [ -73.112152099609375, -9.283490180969181 ], [ -73.112236022949219, -9.2877197265625 ], [ -73.111846923828125, -9.289619445800781 ], [ -73.110618591308594, -9.29258918762207 ], [ -73.105628967285099, -9.298109054565373 ], [ -73.105499267578125, -9.30188083648676 ], [ -73.105949401855469, -9.303579330444336 ], [ -73.106712341308594, -9.305319786071777 ], [ -73.109130859375, -9.307589530944824 ], [ -73.111526489257756, -9.309137344360352 ], [ -73.118606567382756, -9.312279701232853 ], [ -73.120635986328125, -9.313549995422363 ], [ -73.125831604003849, -9.315937995910645 ], [ -73.126640319824219, -9.316129684448185 ], [ -73.1307373046875, -9.318217277526855 ], [ -73.132896423339787, -9.319648742675781 ], [ -73.134162902832031, -9.320229530334473 ], [ -73.142349243164006, -9.326119422912541 ], [ -73.144508361816406, -9.32830905914301 ], [ -73.145797729492188, -9.329628944396916 ], [ -73.147293090820256, -9.332988739013672 ], [ -73.150169372558537, -9.337900161743164 ], [ -73.150543212890568, -9.339118957519531 ], [ -73.151626586914062, -9.341109275817871 ], [ -73.153762817382812, -9.344010353088379 ], [ -73.155189514160156, -9.345318794250488 ], [ -73.159111022949162, -9.347550392150879 ], [ -73.160736083984318, -9.348769187927189 ], [ -73.163841247558594, -9.350008964538517 ], [ -73.166931152343693, -9.35092830657959 ], [ -73.173637390136605, -9.351488113403263 ], [ -73.177406311035156, -9.352729797363281 ], [ -73.181312561035156, -9.354598999023381 ], [ -73.184478759765568, -9.356450080871525 ], [ -73.186851501464844, -9.358208656311035 ], [ -73.18817138671875, -9.359490394592228 ], [ -73.189308166503906, -9.360818862915039 ], [ -73.190505981445256, -9.362968444824219 ], [ -73.191581726074219, -9.366389274597111 ], [ -73.192512512206974, -9.374819755554199 ], [ -73.192619323730355, -9.380429267883301 ], [ -73.192993164062443, -9.384650230407715 ], [ -73.194717407226449, -9.391528129577637 ], [ -73.197006225585824, -9.396360397338867 ], [ -73.198677062988281, -9.398759841918945 ], [ -73.201828002929688, -9.401209831237736 ], [ -73.205566406249943, -9.403220176696721 ], [ -73.206993103027287, -9.404519081115666 ], [ -73.207687377929574, -9.408498764038086 ], [ -73.20941162109375, -9.411840438842773 ], [ -73.209396362304631, -9.41364860534668 ], [ -73.196937561035156, -9.413578987121525 ], [ -73.092956542968636, -9.413029670715332 ], [ -73.000091552734375, -9.41217041015625 ], [ -72.716049194335881, -9.412429809570312 ], [ -72.715591430663949, -9.412739753723145 ], [ -72.716087341308594, -9.41398906707758 ], [ -72.715476989746037, -9.415509223937988 ], [ -72.715370178222599, -9.416609764099121 ], [ -72.715972900390511, -9.41681957244873 ], [ -72.716629028320256, -9.416330337524414 ], [ -72.716972351074219, -9.416338920593262 ], [ -72.71734619140625, -9.416860580444336 ], [ -72.717521667480469, -9.417778968810921 ], [ -72.717987060546875, -9.418239593505859 ], [ -72.718757629394531, -9.419010162353516 ], [ -72.718856811523438, -9.419361114501896 ], [ -72.717147827148438, -9.420338630676213 ], [ -72.717102050781193, -9.421998023986816 ], [ -72.717079162597599, -9.422629356384277 ], [ -72.716712951660099, -9.423270225524902 ], [ -72.716217041015625, -9.423500061035156 ], [ -72.714126586914006, -9.423739433288461 ], [ -72.713912963867188, -9.42399883270258 ], [ -72.713737487792969, -9.424200057983398 ], [ -72.713546752929688, -9.424429893493652 ], [ -72.712196350097656, -9.426009178161564 ], [ -72.711677551269418, -9.427178382873535 ], [ -72.711853027343693, -9.428839683532715 ], [ -72.711929321289006, -9.429559707641602 ], [ -72.711853027343693, -9.429908752441406 ], [ -72.711341857910156, -9.430349349975586 ], [ -72.707679748535156, -9.430548667907715 ], [ -72.705368041992131, -9.433429718017578 ], [ -72.70416259765625, -9.433829307556096 ], [ -72.703552246093693, -9.433609962463265 ], [ -72.703002929687386, -9.432998657226506 ], [ -72.701896667480469, -9.430579185485783 ], [ -72.7010498046875, -9.428709983825684 ], [ -72.700386047363281, -9.428478240966797 ], [ -72.699577331542969, -9.428689002990723 ], [ -72.699066162109318, -9.429108619689885 ], [ -72.698112487792912, -9.430779457092285 ], [ -72.697929382324162, -9.432148933410588 ], [ -72.697906494140625, -9.432350158691406 ], [ -72.698448181152344, -9.433170318603459 ], [ -72.7005615234375, -9.434798240661564 ], [ -72.700607299804631, -9.43588924407959 ], [ -72.700157165527344, -9.436220169067383 ], [ -72.699050903320312, -9.436109542846623 ], [ -72.698455810546875, -9.435688972473088 ], [ -72.696411132812443, -9.433308601379338 ], [ -72.695220947265625, -9.433259010314941 ], [ -72.694763183593693, -9.433749198913517 ], [ -72.694702148437386, -9.434469223022404 ], [ -72.695960998535156, -9.437947273254395 ], [ -72.695816040039006, -9.438559532165527 ], [ -72.695198059082031, -9.439160346984863 ], [ -72.693550109863224, -9.43928146362299 ], [ -72.692512512206918, -9.438888549804688 ], [ -72.692382812499943, -9.437909126281738 ], [ -72.692787170410099, -9.435469627380257 ], [ -72.692382812499943, -9.434980392456055 ], [ -72.691390991210938, -9.434728622436523 ], [ -72.690681457519474, -9.434720039367619 ], [ -72.689910888671818, -9.434708595275879 ], [ -72.689109802246094, -9.434929847717228 ], [ -72.68756103515625, -9.436238288879395 ], [ -72.686416625976562, -9.437789916992188 ], [ -72.685966491699219, -9.43809986114502 ], [ -72.685592651367188, -9.438040733337346 ], [ -72.6849365234375, -9.437379837036133 ], [ -72.684951782226506, -9.43655872344965 ], [ -72.6851806640625, -9.435959815978947 ], [ -72.686447143554688, -9.434908866882324 ], [ -72.686470031738224, -9.43428897857666 ], [ -72.686492919921818, -9.433909416198674 ], [ -72.685989379882756, -9.433468818664551 ], [ -72.685531616210881, -9.433398246765137 ], [ -72.683830261230355, -9.433938026428223 ], [ -72.683631896972599, -9.433308601379338 ], [ -72.683021545410156, -9.433090209960881 ], [ -72.682540893554688, -9.433498382568359 ], [ -72.68212890625, -9.434480667114201 ], [ -72.682006835937443, -9.434769630432129 ], [ -72.681396484375, -9.435569763183537 ], [ -72.679496765136719, -9.435879707336369 ], [ -72.679046630859318, -9.436210632324219 ], [ -72.679039001464787, -9.43666934967041 ], [ -72.680549621582031, -9.438288688659668 ], [ -72.680046081542969, -9.438870429992676 ], [ -72.679206848144531, -9.438850402832031 ], [ -72.676322937011719, -9.439870834350586 ], [ -72.673522949218693, -9.437539100646973 ], [ -72.670288085937386, -9.43743896484375 ], [ -72.668647766113224, -9.437648773193359 ], [ -72.668083190917912, -9.438117980957031 ], [ -72.667922973632812, -9.438540458679199 ], [ -72.669059753417969, -9.440418243408146 ], [ -72.669189453125, -9.44180965423584 ], [ -72.66900634765625, -9.442858695983887 ], [ -72.668319702148438, -9.443098068237305 ], [ -72.667861938476562, -9.442658424377385 ], [ -72.667343139648438, -9.441379547119084 ], [ -72.666915893554631, -9.441220283508244 ], [ -72.666252136230412, -9.441548347473145 ], [ -72.666465759277287, -9.442829132080021 ], [ -72.66628265380848, -9.44334888458252 ], [ -72.663948059082031, -9.443461418151799 ], [ -72.662773132324219, -9.447050094604435 ], [ -72.661636352539062, -9.448137283325195 ], [ -72.660263061523381, -9.448078155517521 ], [ -72.657821655273438, -9.446781158447266 ], [ -72.657012939453068, -9.446838378906193 ], [ -72.656745910644418, -9.447699546813965 ], [ -72.657386779785099, -9.449319839477539 ], [ -72.657539367675781, -9.450719833374023 ], [ -72.657196044921818, -9.451428413391056 ], [ -72.656257629394474, -9.451808929443359 ], [ -72.655410766601449, -9.451839447021484 ], [ -72.654609680175781, -9.451599121093693 ], [ -72.6534423828125, -9.450739860534668 ], [ -72.652976989746094, -9.449529647827092 ], [ -72.652847290039062, -9.44695854187006 ], [ -72.652488708496094, -9.44640064239502 ], [ -72.651947021484318, -9.446049690246582 ], [ -72.650192260742188, -9.446020126342717 ], [ -72.648750305175781, -9.446640014648381 ], [ -72.646842956542969, -9.447930335998535 ], [ -72.645027160644531, -9.44810962677002 ], [ -72.644866943359375, -9.447210311889648 ], [ -72.645927429199219, -9.445290565490723 ], [ -72.645820617675781, -9.44429874420166 ], [ -72.644851684570312, -9.444119453430176 ], [ -72.643173217773381, -9.444838523864746 ], [ -72.642311096191349, -9.444629669189396 ], [ -72.642616271972599, -9.443950653076115 ], [ -72.644691467285156, -9.442958831787109 ], [ -72.6446533203125, -9.442398071289062 ], [ -72.644279479980469, -9.442130088806096 ], [ -72.643547058105469, -9.442089080810547 ], [ -72.641403198242188, -9.443129539489746 ], [ -72.637435913085938, -9.44334888458252 ], [ -72.636680603027344, -9.444788932800236 ], [ -72.633583068847656, -9.445049285888672 ], [ -72.632011413574162, -9.444918632507324 ], [ -72.630996704101449, -9.444450378417912 ], [ -72.629051208496094, -9.442509651184082 ], [ -72.628150939941406, -9.442289352416935 ], [ -72.627693176269531, -9.4427490234375 ], [ -72.627662658691293, -9.443198204040527 ], [ -72.6285400390625, -9.445308685302678 ], [ -72.628448486328125, -9.446221351623535 ], [ -72.62750244140625, -9.446838378906193 ], [ -72.626716613769531, -9.446769714355469 ], [ -72.626029968261662, -9.446120262145939 ], [ -72.625411987304688, -9.44467830657959 ], [ -72.624626159667969, -9.444419860839844 ], [ -72.623908996581974, -9.445369720458984 ], [ -72.623016357421875, -9.44584941864008 ], [ -72.622711181640625, -9.4462890625 ], [ -72.622695922851506, -9.446949958801213 ], [ -72.6234130859375, -9.448119163513127 ], [ -72.62355804443348, -9.449028015136662 ], [ -72.622932434082031, -9.449518203735352 ], [ -72.621932983398381, -9.448989868164062 ], [ -72.621261596679631, -9.449098587036133 ], [ -72.621116638183594, -9.449639320373535 ], [ -72.621246337890568, -9.452489852905217 ], [ -72.620536804199219, -9.453210830688477 ], [ -72.620086669921875, -9.45319938659668 ], [ -72.619628906249943, -9.452738761901855 ], [ -72.619293212890625, -9.451410293579102 ], [ -72.619277954101562, -9.450208663940373 ], [ -72.619087219238281, -9.44999885559082 ], [ -72.61871337890625, -9.449970245361271 ], [ -72.618370056152344, -9.450270652770996 ], [ -72.617416381835938, -9.451808929443359 ], [ -72.616912841796875, -9.452190399169922 ], [ -72.614410400390625, -9.449629783630371 ], [ -72.613960266113281, -9.449518203735352 ], [ -72.613197326660156, -9.448888778686467 ], [ -72.611717224121037, -9.448638916015568 ], [ -72.611137390136662, -9.448809623718205 ], [ -72.610626220703125, -9.449378967285156 ], [ -72.610603332519531, -9.450208663940373 ], [ -72.61102294921875, -9.451519966125431 ], [ -72.610679626464787, -9.452149391174316 ], [ -72.606536865234375, -9.452169418334961 ], [ -72.60430908203125, -9.451469421386719 ], [ -72.603996276855412, -9.451979637145996 ], [ -72.604331970214844, -9.452939033508244 ], [ -72.604171752929631, -9.453429222106934 ], [ -72.602096557617131, -9.454219818115234 ], [ -72.599418640136662, -9.45645809173584 ], [ -72.598236083984375, -9.456680297851562 ], [ -72.596961975097656, -9.456620216369629 ], [ -72.596755981445256, -9.456608772277832 ], [ -72.595909118652344, -9.456008911132812 ], [ -72.595046997070199, -9.454919815063477 ], [ -72.593322753906193, -9.454689979553223 ], [ -72.591751098632812, -9.456089019775334 ], [ -72.590202331542969, -9.456390380859375 ], [ -72.588516235351562, -9.45768928527832 ], [ -72.586166381835881, -9.458459854125977 ], [ -72.583709716796875, -9.459698677062988 ], [ -72.581748962402344, -9.459698677062988 ], [ -72.580780029296875, -9.459440231323242 ], [ -72.58001708984375, -9.458909034729004 ], [ -72.578742980957031, -9.456068992614632 ], [ -72.577941894531193, -9.455608367919865 ], [ -72.576637268066293, -9.455598831176758 ], [ -72.576332092285099, -9.455949783325082 ], [ -72.576316833496037, -9.456590652465763 ], [ -72.578338623046818, -9.459778785705566 ], [ -72.578666687011719, -9.460929870605412 ], [ -72.5784912109375, -9.462380409240666 ], [ -72.577957153320256, -9.463459968566781 ], [ -72.577339172363281, -9.46399974822998 ], [ -72.576698303222599, -9.464089393615723 ], [ -72.575950622558537, -9.463478088378906 ], [ -72.575447082519531, -9.463330268859806 ], [ -72.574417114257756, -9.463430404663086 ], [ -72.573303222656136, -9.463858604431096 ], [ -72.572563171386719, -9.463740348815918 ], [ -72.571876525878906, -9.463138580322209 ], [ -72.571540832519531, -9.46210765838623 ], [ -72.569969177246094, -9.461370468139592 ], [ -72.569046020507812, -9.459778785705566 ], [ -72.568336486816349, -9.459709167480412 ], [ -72.568038940429631, -9.459918022155762 ], [ -72.567901611328125, -9.460650444030762 ], [ -72.568733215332031, -9.462799072265625 ], [ -72.568733215332031, -9.464079856872445 ], [ -72.568496704101506, -9.464779853820744 ], [ -72.567596435546875, -9.465570449829045 ], [ -72.566551208496094, -9.465319633483773 ], [ -72.563667297363168, -9.46300029754633 ], [ -72.562477111816406, -9.462948799133244 ], [ -72.561729431152287, -9.463279724121094 ], [ -72.561660766601506, -9.464750289916992 ], [ -72.561920166015568, -9.465618133544865 ], [ -72.561790466308594, -9.468008995056152 ], [ -72.562911987304688, -9.469809532165527 ], [ -72.563133239746094, -9.470698356628418 ], [ -72.563079833984318, -9.471808433532715 ], [ -72.562622070312386, -9.47251033782959 ], [ -72.561912536621094, -9.472979545593262 ], [ -72.561203002929688, -9.473159790039006 ], [ -72.560256958007812, -9.472449302673283 ], [ -72.560043334960824, -9.471370697021484 ], [ -72.559959411621094, -9.467869758605957 ], [ -72.559616088867188, -9.467079162597656 ], [ -72.559165954589787, -9.466618537902832 ], [ -72.558090209960938, -9.466369628906193 ], [ -72.557121276855469, -9.465659141540527 ], [ -72.556106567382756, -9.465698242187443 ], [ -72.555610656738281, -9.466129302978516 ], [ -72.555335998535099, -9.467280387878418 ], [ -72.55560302734375, -9.468130111694279 ], [ -72.555526733398381, -9.469509124755803 ], [ -72.554756164550781, -9.470508575439453 ], [ -72.554306030273381, -9.470188140869084 ], [ -72.553810119628849, -9.469388008117676 ], [ -72.553260803222599, -9.466588973999023 ], [ -72.552932739257812, -9.46614933013916 ], [ -72.552276611328125, -9.466129302978516 ], [ -72.55184173583973, -9.466459274291992 ], [ -72.5513916015625, -9.468520164489746 ], [ -72.550796508788949, -9.469059944152775 ], [ -72.549598693847656, -9.468558311462346 ], [ -72.547447204589787, -9.468938827514648 ], [ -72.547157287597599, -9.468589782714844 ], [ -72.547157287597599, -9.466560363769474 ], [ -72.546691894531136, -9.466139793395996 ], [ -72.546356201171875, -9.466129302978516 ], [ -72.545951843261719, -9.466108322143555 ], [ -72.544113159179631, -9.466689109802246 ], [ -72.542472839355412, -9.466849327087402 ], [ -72.542259216308594, -9.467267990112248 ], [ -72.543266296386719, -9.468610763549748 ], [ -72.54335784912098, -9.468729019164925 ], [ -72.543327331542912, -9.469650268554688 ], [ -72.542442321777344, -9.470680236816349 ], [ -72.541732788085824, -9.47266960144043 ], [ -72.541549682617188, -9.472728729248047 ], [ -72.540878295898324, -9.47294807434082 ], [ -72.540016174316293, -9.47245979309082 ], [ -72.539993286132756, -9.471170425415039 ], [ -72.53997802734375, -9.470639228820801 ], [ -72.539962768554688, -9.469320297241211 ], [ -72.538978576660156, -9.46906852722168 ], [ -72.53887939453125, -9.469168663024902 ], [ -72.537567138671875, -9.470621109008732 ], [ -72.537345886230355, -9.471270561218262 ], [ -72.537437438964787, -9.472188949584961 ], [ -72.537597656249943, -9.47239875793457 ], [ -72.538467407226506, -9.47356986999506 ], [ -72.538421630859375, -9.473889350891113 ], [ -72.538368225097599, -9.474220275878906 ], [ -72.537986755371037, -9.474630355834904 ], [ -72.537269592285156, -9.474899291992188 ], [ -72.536506652832031, -9.473440170288086 ], [ -72.536079406738224, -9.47317981719965 ], [ -72.535575866699219, -9.472880363464355 ], [ -72.533988952636662, -9.472989082336369 ], [ -72.53277587890625, -9.473418235778752 ], [ -72.532707214355469, -9.473910331726074 ], [ -72.533432006835881, -9.474530220031738 ], [ -72.533622741699162, -9.474688529968262 ], [ -72.533691406249943, -9.475320816040039 ], [ -72.532882690429688, -9.476481437683105 ], [ -72.532752990722599, -9.476668357849007 ], [ -72.531951904296875, -9.478638648986816 ], [ -72.531433105468636, -9.479379653930607 ], [ -72.530906677246094, -9.479530334472599 ], [ -72.529800415039006, -9.478240013122559 ], [ -72.528923034667912, -9.478030204772949 ], [ -72.527847290039062, -9.478299140930176 ], [ -72.526962280273438, -9.479350090026855 ], [ -72.527236938476449, -9.479820251464787 ], [ -72.528388977050781, -9.480168342590332 ], [ -72.530128479003906, -9.481219291686955 ], [ -72.530242919921875, -9.481771469116154 ], [ -72.530349731445256, -9.482290267944336 ], [ -72.529106140136719, -9.483279228210449 ], [ -72.527107238769474, -9.484878540039006 ], [ -72.52490234375, -9.485499382019043 ], [ -72.524276733398381, -9.485898017883301 ], [ -72.523841857910156, -9.486698150634709 ], [ -72.523468017578125, -9.488530158996525 ], [ -72.522956848144531, -9.489589691162109 ], [ -72.521537780761719, -9.490609169006291 ], [ -72.520278930663949, -9.491179466247559 ], [ -72.518562316894418, -9.491399765014592 ], [ -72.517562866210938, -9.490541458129826 ], [ -72.517387390136662, -9.489899635314941 ], [ -72.517631530761719, -9.486050605773869 ], [ -72.516983032226562, -9.484740257263127 ], [ -72.516288757324219, -9.484299659729004 ], [ -72.514717102050724, -9.484108924865723 ], [ -72.512351989746037, -9.484748840332031 ], [ -72.510040283203068, -9.484090805053711 ], [ -72.508171081542969, -9.485838890075684 ], [ -72.506759643554688, -9.486260414123535 ], [ -72.505767822265568, -9.485740661621037 ], [ -72.505203247070256, -9.485159873962402 ], [ -72.504196166992188, -9.482210159301758 ], [ -72.502639770507812, -9.480778694152832 ], [ -72.501266479492131, -9.480607986450195 ], [ -72.500099182128906, -9.480899810791016 ], [ -72.498390197753906, -9.482339859008732 ], [ -72.497451782226506, -9.483659744262695 ], [ -72.496498107910099, -9.48394870758051 ], [ -72.495086669921818, -9.483070373535099 ], [ -72.494377136230469, -9.481289863586369 ], [ -72.492912292480469, -9.480009078979492 ], [ -72.489967346191406, -9.480158805847168 ], [ -72.488487243652287, -9.479409217834473 ], [ -72.487869262695312, -9.479559898376465 ], [ -72.486770629882756, -9.480568885803223 ], [ -72.486396789550724, -9.482370376586914 ], [ -72.486137390136605, -9.482760429382267 ], [ -72.483589172363281, -9.484250068664437 ], [ -72.480827331542969, -9.486419677734261 ], [ -72.480178833007812, -9.4864501953125 ], [ -72.479347229003849, -9.48600959777832 ], [ -72.478401184081974, -9.483669281005859 ], [ -72.477935791015511, -9.483669281005859 ], [ -72.476776123046818, -9.484748840332031 ], [ -72.476325988769531, -9.484710693359375 ], [ -72.476097106933537, -9.484449386596623 ], [ -72.476165771484375, -9.482890129089355 ], [ -72.475387573242188, -9.482580184936523 ], [ -72.474700927734375, -9.483138084411564 ], [ -72.4742431640625, -9.484728813171387 ], [ -72.473663330078125, -9.485189437866211 ], [ -72.473007202148438, -9.485309600830078 ], [ -72.471733093261605, -9.484820365905762 ], [ -72.470169067382812, -9.484779357910099 ], [ -72.468429565429688, -9.48546028137207 ], [ -72.467308044433594, -9.486409187316838 ], [ -72.466941833496037, -9.486349105834904 ], [ -72.4664306640625, -9.485479354858342 ], [ -72.465606689453068, -9.484888076782227 ], [ -72.464942932128849, -9.484828948974609 ], [ -72.464546203613224, -9.485020637512207 ], [ -72.464141845703125, -9.485650062560978 ], [ -72.46401214599598, -9.486458778381348 ], [ -72.463592529296818, -9.486650466918888 ], [ -72.462936401367131, -9.486319541931152 ], [ -72.462142944335938, -9.485089302062931 ], [ -72.461219787597599, -9.485038757324219 ], [ -72.460311889648438, -9.485520362854004 ], [ -72.459716796874886, -9.486199378967285 ], [ -72.460693359375, -9.487627983093205 ], [ -72.460571289062443, -9.488249778747559 ], [ -72.460006713867074, -9.488229751586914 ], [ -72.45928955078125, -9.487660408019963 ], [ -72.458740234374943, -9.48756027221674 ], [ -72.458236694335938, -9.488389015197754 ], [ -72.457382202148438, -9.489109039306641 ], [ -72.456008911132812, -9.489169120788574 ], [ -72.454566955566293, -9.489528656005859 ], [ -72.454216003417969, -9.489259719848633 ], [ -72.454353332519474, -9.487260818481445 ], [ -72.452430725097656, -9.487090110778809 ], [ -72.451622009277344, -9.48621940612793 ], [ -72.451652526855469, -9.485748291015568 ], [ -72.453086853027344, -9.484748840332031 ], [ -72.453147888183594, -9.484318733215275 ], [ -72.452888488769531, -9.483828544616699 ], [ -72.448318481445312, -9.481547355651855 ], [ -72.447998046875, -9.481389999389592 ], [ -72.446952819824219, -9.481219291686955 ], [ -72.4464111328125, -9.481419563293457 ], [ -72.445213317871037, -9.483179092407227 ], [ -72.44476318359375, -9.483249664306584 ], [ -72.443901062011719, -9.482869148254395 ], [ -72.442916870117131, -9.481670379638672 ], [ -72.443336486816406, -9.480589866638184 ], [ -72.443107604980412, -9.479518890380803 ], [ -72.442001342773438, -9.477287292480469 ], [ -72.441230773925781, -9.476631164550781 ], [ -72.440567016601562, -9.476668357849007 ], [ -72.440216064453125, -9.477287292480469 ], [ -72.439956665039006, -9.481319427490234 ], [ -72.436386108398438, -9.483997344970703 ], [ -72.436073303222656, -9.484090805053711 ], [ -72.435661315917912, -9.483698844909611 ], [ -72.435173034667912, -9.481539726257324 ], [ -72.434509277343693, -9.480378150939941 ], [ -72.433853149414006, -9.480579376220646 ], [ -72.4332275390625, -9.481278419494572 ], [ -72.433357238769531, -9.482479095458928 ], [ -72.43316650390625, -9.482879638671818 ], [ -72.432746887207031, -9.483078956603947 ], [ -72.432182312011719, -9.48262977600092 ], [ -72.431648254394474, -9.481348991394043 ], [ -72.431312561035156, -9.481030464172363 ], [ -72.429100036621037, -9.481209754943848 ], [ -72.427780151367188, -9.481650352478027 ], [ -72.427131652832031, -9.482229232788086 ], [ -72.427619934082031, -9.484820365905762 ], [ -72.42742919921875, -9.485510826110783 ], [ -72.426750183105469, -9.485799789428597 ], [ -72.426200866699219, -9.485479354858342 ], [ -72.425827026367131, -9.483959197998047 ], [ -72.424919128417969, -9.481898307800236 ], [ -72.4232177734375, -9.480640411376953 ], [ -72.421867370605469, -9.480258941650391 ], [ -72.420387268066406, -9.480289459228459 ], [ -72.419776916503906, -9.480850219726562 ], [ -72.419227600097656, -9.482500076293945 ], [ -72.416900634765511, -9.483019828796387 ], [ -72.415786743164062, -9.483070373535099 ], [ -72.414276123046875, -9.482349395751953 ], [ -72.412666320800724, -9.482319831848088 ], [ -72.412338256835938, -9.482069015502873 ], [ -72.412208557128849, -9.480330467224121 ], [ -72.410713195800781, -9.47942066192627 ], [ -72.4102783203125, -9.478878021240178 ], [ -72.408805847167969, -9.477060317993164 ], [ -72.408218383788949, -9.476941108703613 ], [ -72.407432556152287, -9.47752857208252 ], [ -72.406837463378906, -9.47838115692133 ], [ -72.406570434570256, -9.479220390319767 ], [ -72.406501770019418, -9.479438781738224 ], [ -72.406448364257812, -9.48081111907959 ], [ -72.405982971191406, -9.481260299682617 ], [ -72.405532836914006, -9.481139183044377 ], [ -72.403999328613224, -9.47942066192627 ], [ -72.403076171875, -9.47930908203125 ], [ -72.40283203125, -9.479559898376465 ], [ -72.402748107910099, -9.479640007019043 ], [ -72.402740478515625, -9.480460166931096 ], [ -72.404006958007756, -9.482159614562988 ], [ -72.403800964355412, -9.482990264892578 ], [ -72.401657104492188, -9.482009887695256 ], [ -72.400352478027344, -9.482169151306096 ], [ -72.399497985839844, -9.482559204101562 ], [ -72.398262023925781, -9.484258651733342 ], [ -72.397895812988224, -9.487078666687012 ], [ -72.396759033203068, -9.488019943237305 ], [ -72.395927429199219, -9.488009452819767 ], [ -72.393142700195256, -9.486570358276367 ], [ -72.391716003417912, -9.486630439758244 ], [ -72.390556335449162, -9.487480163574219 ], [ -72.389350891113281, -9.488820075988713 ], [ -72.388175964355412, -9.491509437561035 ], [ -72.387725830078125, -9.492088317871094 ], [ -72.387077331542969, -9.49248027801508 ], [ -72.385307312011662, -9.49262809753418 ], [ -72.383117675781193, -9.491479873657227 ], [ -72.3818359375, -9.491239547729492 ], [ -72.381248474121094, -9.491949081420898 ], [ -72.381042480468636, -9.493828773498535 ], [ -72.379997253417969, -9.49463939666748 ], [ -72.378288269042969, -9.495089530944824 ], [ -72.376502990722656, -9.494440078735352 ], [ -72.375267028808594, -9.494850158691406 ], [ -72.373512268066406, -9.493818283081055 ], [ -72.372787475585938, -9.49368953704834 ], [ -72.371665954589787, -9.492229461669865 ], [ -72.370323181152287, -9.492019653320256 ], [ -72.3701171875, -9.491709709167424 ], [ -72.369987487792969, -9.4898681640625 ], [ -72.369895935058594, -9.489779472351074 ], [ -72.369583129882756, -9.489468574523869 ], [ -72.368110656738281, -9.489520072936955 ], [ -72.367889404296875, -9.489649772644043 ], [ -72.367309570312386, -9.489989280700627 ], [ -72.365257263183594, -9.491868972778263 ], [ -72.364318847656193, -9.493428230285645 ], [ -72.363967895507699, -9.495109558105469 ], [ -72.363769531249943, -9.496040344238224 ], [ -72.362907409667912, -9.496878623962346 ], [ -72.362167358398438, -9.496929168701172 ], [ -72.362068176269531, -9.496808052062931 ], [ -72.360679626464844, -9.495199203491211 ], [ -72.359771728515511, -9.495148658752441 ], [ -72.358428955078068, -9.494329452514648 ], [ -72.357521057128906, -9.494399070739689 ], [ -72.356956481933594, -9.494889259338379 ], [ -72.356147766113168, -9.49622917175293 ], [ -72.355651855468693, -9.496389389038086 ], [ -72.354415893554631, -9.496779441833439 ], [ -72.35382080078125, -9.497598648071232 ], [ -72.353118896484375, -9.500610351562443 ], [ -72.352188110351562, -9.501378059387207 ], [ -72.351036071777344, -9.501530647277832 ], [ -72.350151062011719, -9.503039360046387 ], [ -72.349517822265625, -9.503639221191406 ], [ -72.348701477050724, -9.503939628601017 ], [ -72.348304748535099, -9.502360343933105 ], [ -72.345596313476562, -9.502198219299316 ], [ -72.345413208007812, -9.502529144287053 ], [ -72.3455810546875, -9.503060340881348 ], [ -72.34651947021473, -9.503739356994629 ], [ -72.346481323242131, -9.503910064697266 ], [ -72.345710754394531, -9.504569053649902 ], [ -72.3431396484375, -9.505348205566406 ], [ -72.341789245605469, -9.506138801574707 ], [ -72.341018676757812, -9.506938934326172 ], [ -72.340751647949219, -9.507708549499512 ], [ -72.340751647949219, -9.508908271789551 ], [ -72.341583251953125, -9.511629104614201 ], [ -72.341201782226562, -9.512158393859806 ], [ -72.339920043945256, -9.512748718261719 ], [ -72.339736938476506, -9.513140678405762 ], [ -72.339889526367188, -9.513698577880859 ], [ -72.340660095214844, -9.514480590820312 ], [ -72.340736389160156, -9.515390396118164 ], [ -72.340202331542912, -9.515700340270996 ], [ -72.338912963867188, -9.51438045501709 ], [ -72.338706970214844, -9.51481819152832 ], [ -72.338882446289006, -9.516428947448674 ], [ -72.339149475097599, -9.516848564147949 ], [ -72.339492797851562, -9.516889572143441 ], [ -72.340232849121094, -9.516981124877873 ], [ -72.340507507324105, -9.51823902130127 ], [ -72.340911865234375, -9.518850326538086 ], [ -72.342376708984375, -9.518819808959961 ], [ -72.342948913574219, -9.519119262695256 ], [ -72.343170166015568, -9.520298957824593 ], [ -72.342948913574219, -9.520680427551156 ], [ -72.342323303222543, -9.520898818969727 ], [ -72.340972900390568, -9.519980430603027 ], [ -72.340217590331974, -9.519919395446777 ], [ -72.339920043945256, -9.520278930664062 ], [ -72.339736938476506, -9.521739959716797 ], [ -72.339401245117188, -9.522049903869629 ], [ -72.339073181152287, -9.522359848022461 ], [ -72.338508605956918, -9.522330284118596 ], [ -72.336296081542912, -9.521148681640625 ], [ -72.335830688476506, -9.521148681640625 ], [ -72.335578918457031, -9.521148681640625 ], [ -72.3350830078125, -9.521548271179199 ], [ -72.334831237792969, -9.522310256957951 ], [ -72.334793090820312, -9.522430419921875 ], [ -72.334808349609375, -9.526949882507324 ], [ -72.334503173828011, -9.528289794921875 ], [ -72.334007263183537, -9.528730392456055 ], [ -72.332672119140568, -9.528388023376465 ], [ -72.332237243652344, -9.528548240661507 ], [ -72.331993103027287, -9.529108047485352 ], [ -72.332046508789062, -9.530708312988281 ], [ -72.329689025878906, -9.532730102539062 ], [ -72.329277038574219, -9.534699440002328 ], [ -72.326972961425781, -9.534819602966252 ], [ -72.326416015625, -9.535058975219727 ], [ -72.325462341308594, -9.53804874420166 ], [ -72.324569702148381, -9.539568901062012 ], [ -72.321807861328068, -9.541709899902287 ], [ -72.320289611816293, -9.541887283325195 ], [ -72.319488525390625, -9.54334831237793 ], [ -72.318496704101562, -9.544038772582951 ], [ -72.314819335937443, -9.545219421386719 ], [ -72.312522888183594, -9.545339584350586 ], [ -72.311416625976506, -9.544247627258301 ], [ -72.311378479003906, -9.543318748474064 ], [ -72.311782836914006, -9.542220115661621 ], [ -72.311477661132812, -9.541239738464355 ], [ -72.309165954589844, -9.540599822998047 ], [ -72.307060241699219, -9.540800094604435 ], [ -72.306648254394474, -9.540419578552246 ], [ -72.305603027343636, -9.53859901428217 ], [ -72.30230712890625, -9.538110733032227 ], [ -72.301856994628849, -9.537648200988713 ], [ -72.301506042480355, -9.536690711975041 ], [ -72.301643371582031, -9.533378601074219 ], [ -72.301422119140625, -9.533189773559513 ], [ -72.298187255859375, -9.533060073852539 ], [ -72.296646118164062, -9.533778190612736 ], [ -72.295066833496094, -9.533248901367188 ], [ -72.293289184570256, -9.534699440002328 ], [ -72.291023254394531, -9.534978866577092 ], [ -72.290397644042969, -9.535388946533203 ], [ -72.289833068847599, -9.535998344421387 ], [ -72.289649963378849, -9.536429405212346 ], [ -72.289337158203125, -9.537190437316895 ], [ -72.288421630859318, -9.537579536437988 ], [ -72.287887573242188, -9.53809928894043 ], [ -72.287872314453125, -9.538820266723576 ], [ -72.2884521484375, -9.539409637451115 ], [ -72.288330078124943, -9.539958953857422 ], [ -72.287872314453125, -9.539971351623535 ], [ -72.287322998046875, -9.539608001708928 ], [ -72.286453247070312, -9.540678977966309 ], [ -72.286186218261719, -9.540780067443791 ], [ -72.286026000976506, -9.540839195251408 ], [ -72.285575866699105, -9.540699958801213 ], [ -72.28481292724598, -9.539909362792912 ], [ -72.284072875976562, -9.539850234985295 ], [ -72.283470153808537, -9.540281295776367 ], [ -72.283348083496037, -9.541419982910099 ], [ -72.281906127929688, -9.542189598083496 ], [ -72.282707214355412, -9.544348716735783 ], [ -72.281890869140625, -9.547360420226994 ], [ -72.282760620117188, -9.551560401916447 ], [ -72.282302856445256, -9.553608894348145 ], [ -72.284187316894531, -9.555268287658635 ], [ -72.284606933593693, -9.55591964721674 ], [ -72.284393310546875, -9.55675029754633 ], [ -72.283042907714844, -9.558379173278752 ], [ -72.282913208007812, -9.560478210449219 ], [ -72.283798217773438, -9.561758995056152 ], [ -72.283805847167969, -9.563039779663029 ], [ -72.285362243652287, -9.564828872680607 ], [ -72.285400390625, -9.566388130187988 ], [ -72.284797668456974, -9.568799018859863 ], [ -72.284996032714787, -9.569000244140568 ], [ -72.285736083984318, -9.569020271301213 ], [ -72.285949707031193, -9.5693101882934 ], [ -72.283653259277287, -9.57135009765625 ], [ -72.283576965331918, -9.572008132934513 ], [ -72.283897399902344, -9.572468757629395 ], [ -72.285621643066406, -9.572468757629395 ], [ -72.285850524902287, -9.572890281677189 ], [ -72.284866333007812, -9.573828697204533 ], [ -72.285102844238168, -9.575000762939396 ], [ -72.284538269042969, -9.575848579406738 ], [ -72.284408569335881, -9.57666015625 ], [ -72.283638000488224, -9.578227996826115 ], [ -72.284446716308594, -9.579198837280273 ], [ -72.285957336425668, -9.579498291015511 ], [ -72.2860107421875, -9.580228805541992 ], [ -72.285316467285156, -9.581220626831055 ], [ -72.285202026367188, -9.582139015197754 ], [ -72.285331726074219, -9.582670211791935 ], [ -72.286087036132812, -9.583488464355412 ], [ -72.286430358886662, -9.584291458129826 ], [ -72.286293029785156, -9.586499214172363 ], [ -72.286903381347599, -9.588208198547363 ], [ -72.286582946777344, -9.589150428771916 ], [ -72.284126281738224, -9.591218948364258 ], [ -72.283950805664006, -9.59153842926014 ], [ -72.28399658203125, -9.592248916625977 ], [ -72.28533935546875, -9.591978073120117 ], [ -72.285667419433537, -9.59230899810791 ], [ -72.285751342773381, -9.59367847442627 ], [ -72.284690856933537, -9.594799995422363 ], [ -72.284523010253849, -9.596158027648926 ], [ -72.285057067871094, -9.596789360046387 ], [ -72.286453247070312, -9.596919059753361 ], [ -72.286781311035099, -9.597229003906193 ], [ -72.287498474121094, -9.599129676818848 ], [ -72.288650512695312, -9.600670814514103 ], [ -72.288848876953125, -9.602878570556641 ], [ -72.288307189941349, -9.603908538818303 ], [ -72.285697937011719, -9.606120109558105 ], [ -72.284942626953125, -9.607479095458984 ], [ -72.284088134765625, -9.607819557189885 ], [ -72.284072875976562, -9.608459472656193 ], [ -72.283782958984375, -9.608919143676644 ], [ -72.283279418945256, -9.609188079833984 ], [ -72.281455993652287, -9.609219551086426 ], [ -72.281272888183537, -9.609619140624943 ], [ -72.281562805175724, -9.610509872436467 ], [ -72.280387878417969, -9.610708236694279 ], [ -72.279830932617131, -9.61193943023676 ], [ -72.278587341308537, -9.612277984619084 ], [ -72.27752685546875, -9.613689422607422 ], [ -72.276657104492188, -9.613960266113281 ], [ -72.275032043457031, -9.615549087524414 ], [ -72.273101806640625, -9.617918968200684 ], [ -72.272781372070256, -9.618069648742676 ], [ -72.271888732910156, -9.617830276489258 ], [ -72.270019531249943, -9.620009422302246 ], [ -72.269218444824219, -9.620619773864746 ], [ -72.26869964599598, -9.620750427246094 ], [ -72.267326354980412, -9.620188713073674 ], [ -72.265007019042969, -9.619809150695801 ], [ -72.264396667480412, -9.616800308227482 ], [ -72.263809204101506, -9.61649036407465 ], [ -72.261543273925668, -9.616119384765511 ], [ -72.260566711425724, -9.615399360656738 ], [ -72.259910583496037, -9.614509582519531 ], [ -72.258537292480469, -9.614888191223088 ], [ -72.257141113281193, -9.6144504547118 ], [ -72.256683349609261, -9.61448860168457 ], [ -72.256362915039006, -9.614829063415471 ], [ -72.254898071289062, -9.614588737487793 ], [ -72.253517150878849, -9.615489959716797 ], [ -72.252639770507756, -9.617219924926758 ], [ -72.25244140625, -9.619041442871037 ], [ -72.252487182617074, -9.621068954467773 ], [ -72.253036499023381, -9.622439384460449 ], [ -72.253036499023381, -9.623640060424805 ], [ -72.253890991210881, -9.624599456787053 ], [ -72.255241394042912, -9.625349044799805 ], [ -72.255569458007812, -9.626399993896428 ], [ -72.255470275878906, -9.627758026123047 ], [ -72.256477355956974, -9.629278182983398 ], [ -72.256240844726562, -9.630368232727051 ], [ -72.257957458496094, -9.631829261779785 ], [ -72.257598876953068, -9.632970809936523 ], [ -72.257461547851562, -9.635539054870549 ], [ -72.256996154785156, -9.636528015136605 ], [ -72.257072448730469, -9.63728141784668 ], [ -72.257606506347599, -9.637788772582951 ], [ -72.25801849365223, -9.637849807739258 ], [ -72.259071350097656, -9.638010025024414 ], [ -72.259590148925781, -9.638369560241699 ], [ -72.260269165039006, -9.639489173889103 ], [ -72.260406494140625, -9.640919685363713 ], [ -72.261047363281193, -9.641740798950195 ], [ -72.260429382324219, -9.642538070678711 ], [ -72.260536193847656, -9.643739700317383 ], [ -72.260192871093693, -9.644138336181584 ], [ -72.260276794433537, -9.645318984985295 ], [ -72.258811950683594, -9.646839141845703 ], [ -72.258888244628906, -9.647919654846191 ], [ -72.258087158203068, -9.648807525634709 ], [ -72.257949829101562, -9.649738311767578 ], [ -72.257926940917969, -9.64990043640131 ], [ -72.256607055664062, -9.651040077209416 ], [ -72.255111694335938, -9.651450157165471 ], [ -72.255058288574105, -9.652808189392033 ], [ -72.254730224609375, -9.653198242187443 ], [ -72.254592895507812, -9.653380393981877 ], [ -72.254440307617188, -9.654470443725529 ], [ -72.253883361816349, -9.654549598693791 ], [ -72.253562927246094, -9.654101371765137 ], [ -72.253089904785156, -9.654068946838322 ], [ -72.252799987792969, -9.655868530273381 ], [ -72.252243041992188, -9.656640052795353 ], [ -72.251617431640568, -9.656999588012695 ], [ -72.250297546386719, -9.656970024108887 ], [ -72.249359130859375, -9.656120300292969 ], [ -72.248435974121094, -9.656120300292969 ], [ -72.247749328613281, -9.656789779663029 ], [ -72.247383117675781, -9.657150268554688 ], [ -72.246681213378906, -9.657288551330566 ], [ -72.246589660644531, -9.658039093017578 ], [ -72.246116638183594, -9.658599853515625 ], [ -72.246040344238281, -9.659319877624512 ], [ -72.246162414550724, -9.661540031433105 ], [ -72.247245788574219, -9.663458824157658 ], [ -72.247581481933594, -9.665079116821232 ], [ -72.247840881347656, -9.665580749511662 ], [ -72.248222351074219, -9.666300773620605 ], [ -72.249176025390625, -9.669280052185002 ], [ -72.248725891113281, -9.672919273376408 ], [ -72.248886108398438, -9.67361927032465 ], [ -72.249481201171875, -9.67461967468256 ], [ -72.24945068359375, -9.676689147949219 ], [ -72.250099182128793, -9.677699089050236 ], [ -72.252037048339844, -9.679470062255859 ], [ -72.252250671386719, -9.679658889770451 ], [ -72.253097534179688, -9.681798934936523 ], [ -72.253036499023381, -9.683988571166992 ], [ -72.251426696777287, -9.686239242553654 ], [ -72.250640869140568, -9.68848800659174 ], [ -72.250907897949219, -9.69059944152832 ], [ -72.252586364746094, -9.697849273681527 ], [ -72.25250244140625, -9.698690414428711 ], [ -72.25244140625, -9.699220657348576 ], [ -72.251907348632756, -9.70038986206049 ], [ -72.251861572265625, -9.701949119567871 ], [ -72.252845764160099, -9.703028678894043 ], [ -72.253707885742131, -9.70348930358881 ], [ -72.255119323730412, -9.704238891601449 ], [ -72.257392883300781, -9.70702934265131 ], [ -72.258369445800724, -9.710089683532715 ], [ -72.258689880371094, -9.711770057678166 ], [ -72.25887298583973, -9.712698936462346 ], [ -72.25872802734375, -9.716009140014592 ], [ -72.257720947265568, -9.719339370727482 ], [ -72.256767272949162, -9.722499847412109 ], [ -72.257217407226506, -9.72714900970459 ], [ -72.256973266601562, -9.727988243103027 ], [ -72.254692077636719, -9.732480049133244 ], [ -72.254470825195256, -9.733078956604004 ], [ -72.254486083984261, -9.734189033508244 ], [ -72.255126953124943, -9.735500335693303 ], [ -72.256141662597656, -9.736259460449162 ], [ -72.260772705078068, -9.741018295288086 ], [ -72.262199401855412, -9.743429183959961 ], [ -72.262977600097543, -9.74473857879633 ], [ -72.263847351074219, -9.747059822082463 ], [ -72.263061523437443, -9.749950408935547 ], [ -72.262886047363281, -9.750570297241211 ], [ -72.262351989746094, -9.751159667968636 ], [ -72.261589050292969, -9.752010345458928 ], [ -72.260292053222599, -9.752238273620605 ], [ -72.260101318359318, -9.752168655395508 ], [ -72.257957458496094, -9.751358032226562 ], [ -72.255958557128906, -9.75100040435791 ], [ -72.254486083984261, -9.750959396362305 ], [ -72.251396179199219, -9.751528739929199 ], [ -72.247627258300781, -9.75060844421381 ], [ -72.246162414550724, -9.75065803527832 ], [ -72.245277404785156, -9.750959396362305 ], [ -72.243751525878906, -9.752279281616211 ], [ -72.242958068847656, -9.753730773925724 ], [ -72.242248535156193, -9.755620002746582 ], [ -72.241050720214844, -9.760719299316406 ], [ -72.240722656249943, -9.76117038726801 ], [ -72.238426208496094, -9.762369155883789 ], [ -72.236579895019531, -9.763740539550724 ], [ -72.235412597656136, -9.764260292053223 ], [ -72.234481811523438, -9.764178276061955 ], [ -72.233650207519531, -9.76377010345459 ], [ -72.232307434082031, -9.76216983795166 ], [ -72.231552124023438, -9.762100219726506 ], [ -72.230766296386719, -9.76233005523676 ], [ -72.224357604980469, -9.767439842224064 ], [ -72.220161437988281, -9.769960403442326 ], [ -72.218742370605469, -9.771139144897347 ], [ -72.218482971191406, -9.771719932556096 ], [ -72.218452453613281, -9.774379730224609 ], [ -72.218269348144531, -9.775179862976074 ], [ -72.217323303222656, -9.776650428771973 ], [ -72.215606689453125, -9.777910232543832 ], [ -72.21462249755848, -9.778089523315373 ], [ -72.213211059570312, -9.778018951415959 ], [ -72.210929870605469, -9.777249336242676 ], [ -72.209396362304688, -9.776960372924805 ], [ -72.203666687011719, -9.77698898315424 ], [ -72.20147705078125, -9.777239799499455 ], [ -72.197166442871037, -9.776739120483342 ], [ -72.193367004394531, -9.776818275451603 ], [ -72.186965942382699, -9.7785387039184 ], [ -72.183647155761719, -9.779728889465332 ], [ -72.181777954101562, -9.78068828582758 ], [ -72.178878784179688, -9.782979011535645 ], [ -72.177009582519531, -9.783769607543945 ], [ -72.175361633300781, -9.784008979797363 ], [ -72.170837402343693, -9.78386116027832 ], [ -72.169425964355469, -9.784000396728516 ], [ -72.168510437011719, -9.784838676452637 ], [ -72.167449951171875, -9.786370277404728 ], [ -72.165618896484375, -9.790679931640625 ], [ -72.163467407226562, -9.793070793151799 ], [ -72.162040710449162, -9.793700218200684 ], [ -72.157997131347656, -9.794210433959904 ], [ -72.154777526855469, -9.794978141784611 ], [ -72.152862548828125, -9.795879364013615 ], [ -72.151412963867188, -9.797018051147461 ], [ -72.151298522949105, -9.797470092773438 ], [ -72.151390075683537, -9.798569679260197 ], [ -72.152481079101562, -9.800049781799316 ], [ -72.15273284912098, -9.80027961730957 ], [ -72.153686523437386, -9.801169395446721 ], [ -72.153732299804688, -9.80138111114502 ], [ -72.153869628906193, -9.802088737487793 ], [ -72.15358734130848, -9.802739143371582 ], [ -72.153518676757812, -9.802898406982422 ], [ -72.153060913085938, -9.803359031677246 ], [ -72.151451110839844, -9.804969787597656 ], [ -72.150772094726562, -9.805950164794922 ], [ -72.150787353515568, -9.807760238647347 ], [ -72.151649475097599, -9.808718681335392 ], [ -72.153869628906193, -9.809619903564339 ], [ -72.154685974121094, -9.810608863830566 ], [ -72.154518127441349, -9.816210746765137 ], [ -72.154769897460938, -9.816710472106934 ], [ -72.155403137206918, -9.817099571227971 ], [ -72.156929016113168, -9.817460060119572 ], [ -72.159049987792969, -9.817460060119572 ], [ -72.160057067871037, -9.817460060119572 ], [ -72.161041259765625, -9.817989349365178 ], [ -72.161109924316349, -9.819629669189396 ], [ -72.160499572753906, -9.822969436645508 ], [ -72.160552978515511, -9.825070381164494 ], [ -72.160575866699219, -9.825990676879883 ], [ -72.160926818847599, -9.826749801635742 ], [ -72.161201477050724, -9.827059745788574 ], [ -72.162910461425724, -9.829060554504395 ], [ -72.16314697265625, -9.829870223998967 ], [ -72.162796020507812, -9.830639839172363 ], [ -72.162132263183594, -9.831298828125 ], [ -72.159378051757756, -9.83120059967041 ], [ -72.156616210937443, -9.832488059997559 ], [ -72.156318664550724, -9.832730293273926 ], [ -72.155097961425724, -9.833689689636174 ], [ -72.154418945312443, -9.835088729858398 ], [ -72.154022216796875, -9.836800575256291 ], [ -72.15358734130848, -9.837509155273438 ], [ -72.152763366699219, -9.840140342712402 ], [ -72.152511596679631, -9.842069625854435 ], [ -72.153076171874943, -9.843171119689941 ], [ -72.155990600585938, -9.84547042846674 ], [ -72.156417846679631, -9.847170829772836 ], [ -72.1546630859375, -9.849979400634766 ], [ -72.154235839843693, -9.855460166931096 ], [ -72.151046752929688, -9.861981391906681 ], [ -72.150001525878906, -9.865509033203125 ], [ -72.149131774902344, -9.869638442993107 ], [ -72.148231506347599, -9.871898651123047 ], [ -72.147422790527344, -9.873290061950627 ], [ -72.146606445312443, -9.874270439147949 ], [ -72.144599914550724, -9.875448226928654 ], [ -72.14290618896473, -9.876150131225586 ], [ -72.141693115234375, -9.87598800659174 ], [ -72.138755798339844, -9.873197555541992 ], [ -72.137229919433594, -9.872908592224064 ], [ -72.13671875, -9.873109817504883 ], [ -72.136146545410156, -9.873859405517578 ], [ -72.136146545410156, -9.876049995422363 ], [ -72.137252807617131, -9.878267288208008 ], [ -72.137786865234375, -9.880879402160588 ], [ -72.138961791992131, -9.883459091186467 ], [ -72.140083312988281, -9.885148048400822 ], [ -72.141876220703125, -9.886428833007812 ], [ -72.144699096679631, -9.886889457702637 ], [ -72.146522521972599, -9.887709617614746 ], [ -72.146720886230355, -9.887799263000488 ], [ -72.148391723632812, -9.889629364013615 ], [ -72.148681640625, -9.890789031982422 ], [ -72.148658752441406, -9.893368721008244 ], [ -72.148880004882756, -9.895180702209416 ], [ -72.148979187011662, -9.895408630371094 ], [ -72.149452209472599, -9.896499633788949 ], [ -72.149490356445199, -9.897829055786133 ], [ -72.149551391601506, -9.900248527526855 ], [ -72.150627136230412, -9.903160095214787 ], [ -72.150672912597656, -9.904890060424805 ], [ -72.150993347167912, -9.905759811401367 ], [ -72.151878356933594, -9.906570434570312 ], [ -72.154823303222599, -9.90767860412592 ], [ -72.154953002929688, -9.907809257507267 ], [ -72.156509399414006, -9.910050392150822 ], [ -72.157402038574105, -9.910988807678166 ], [ -72.159431457519531, -9.910929679870605 ], [ -72.162483215332031, -9.909408569335938 ], [ -72.164337158203068, -9.908868789672852 ], [ -72.165092468261662, -9.908889770507756 ], [ -72.165733337402344, -9.909429550170898 ], [ -72.165657043457031, -9.910698890685978 ], [ -72.163757324218693, -9.913299560546875 ], [ -72.163726806640625, -9.914509773254395 ], [ -72.164787292480469, -9.915650367736816 ], [ -72.167640686035156, -9.917148590087891 ], [ -72.169158935546875, -9.918878555297852 ], [ -72.169731140136719, -9.920439720153809 ], [ -72.169822692871094, -9.923377990722599 ], [ -72.170303344726562, -9.925619125366154 ], [ -72.171890258789006, -9.928128242492676 ], [ -72.17413330078125, -9.930309295654297 ], [ -72.174636840820256, -9.931498527526855 ], [ -72.174636840820256, -9.932139396667424 ], [ -72.173927307128906, -9.933087348937988 ], [ -72.173858642578125, -9.933180809020939 ], [ -72.170066833496037, -9.934869766235295 ], [ -72.168731689453068, -9.936139106750488 ], [ -72.167602539062443, -9.939128875732308 ], [ -72.16646575927723, -9.940858840942326 ], [ -72.165618896484375, -9.941039085388184 ], [ -72.163650512695312, -9.941029548644963 ], [ -72.162055969238224, -9.941029548644963 ], [ -72.157546997070312, -9.941558837890625 ], [ -72.156242370605412, -9.941980361938477 ], [ -72.155487060546818, -9.942580223083496 ], [ -72.155265808105469, -9.943460464477482 ], [ -72.155487060546818, -9.944080352783146 ], [ -72.160156249999943, -9.948549270629883 ], [ -72.161087036132756, -9.949838638305607 ], [ -72.161659240722599, -9.950638771057129 ], [ -72.162033081054688, -9.952540397643986 ], [ -72.161956787109318, -9.954180717468262 ], [ -72.161758422851506, -9.954608917236328 ], [ -72.161521911621094, -9.95514011383051 ], [ -72.159576416015568, -9.956668853759709 ], [ -72.159049987792969, -9.956878662109375 ], [ -72.15142822265625, -9.959810256958008 ], [ -72.150115966796875, -9.960321426391545 ], [ -72.149375915527287, -9.961599349975586 ], [ -72.149322509765625, -9.96348857879633 ], [ -72.149299621581918, -9.964060783386174 ], [ -72.1495361328125, -9.966719627380371 ], [ -72.151359558105412, -9.970359802246094 ], [ -72.151870727538949, -9.971219062805176 ], [ -72.152450561523438, -9.971699714660645 ], [ -72.153816223144531, -9.97184944152832 ], [ -72.155426025390625, -9.970959663391113 ], [ -72.156883239746094, -9.971128463745117 ], [ -72.1572265625, -9.971810340881348 ], [ -72.157302856445256, -9.972629547119141 ], [ -72.156730651855412, -9.974059104919434 ], [ -72.156745910644531, -9.976078987121582 ], [ -72.157470703124943, -9.978068351745605 ], [ -72.158996582031193, -9.979659080505371 ], [ -72.162246704101506, -9.981220245361328 ], [ -72.164031982421875, -9.981719017028752 ], [ -72.164230346679688, -9.98173999786377 ], [ -72.168731689453068, -9.982209205627441 ], [ -72.174072265624943, -9.983340263366642 ], [ -72.175582885742131, -9.984030723571777 ], [ -72.176910400390625, -9.985170364379883 ], [ -72.178108215332031, -9.987030029296875 ], [ -72.178627014160156, -9.989730834960938 ], [ -72.178619384765625, -9.991669654846135 ], [ -72.177909851074105, -9.994970321655273 ], [ -72.177879333496037, -9.995988845825138 ], [ -72.178451538085881, -9.997349739074707 ], [ -72.179931640625, -9.99899959564209 ], [ -72.180335998535156, -10.000248908996525 ], [ -72.030158996581974, -9.99995040893549 ], [ -72.000106811523381, -9.999889373779297 ], [ -71.990180969238281, -9.999899864196777 ], [ -71.695800781249943, -10.000289916992188 ], [ -71.452659606933594, -10.000609397888127 ], [ -71.375862121581974, -10.000708580017033 ], [ -71.374092102050781, -9.998738288879338 ], [ -71.373527526855469, -9.997928619384766 ], [ -71.371170043945256, -9.994509696960392 ], [ -71.368637084960938, -9.993019104003906 ], [ -71.366882324218693, -9.98976898193348 ], [ -71.365509033203125, -9.98853874206543 ], [ -71.363426208496094, -9.987339973449707 ], [ -71.362663269042969, -9.986200332641602 ], [ -71.362373352050781, -9.985139846801701 ], [ -71.360443115234375, -9.983178138732853 ], [ -71.359016418457031, -9.982788085937443 ], [ -71.358200073242131, -9.98295879364008 ], [ -71.356399536132756, -9.985139846801701 ], [ -71.354446411132812, -9.986469268798828 ], [ -71.353630065917912, -9.986330032348633 ], [ -71.350227355957031, -9.984649658203125 ], [ -71.350051879882812, -9.983652114868164 ], [ -71.351516723632756, -9.981549263000488 ], [ -71.351150512695256, -9.979290008544922 ], [ -71.351669311523438, -9.977648735046387 ], [ -71.351638793945256, -9.976999282836914 ], [ -71.350959777831974, -9.975801467895508 ], [ -71.350242614746094, -9.975089073181152 ], [ -71.348747253417912, -9.97183895111084 ], [ -71.347572326660156, -9.970659255981445 ], [ -71.345123291015568, -9.967550277709961 ], [ -71.344322204589844, -9.966938972473145 ], [ -71.343238830566349, -9.966650009155273 ], [ -71.340782165527344, -9.966689109802246 ], [ -71.338630676269531, -9.969319343566895 ], [ -71.336723327636719, -9.969629287719727 ], [ -71.33544921875, -9.970148086547795 ], [ -71.333763122558594, -9.971100807189828 ], [ -71.332458496093693, -9.972278594970703 ], [ -71.330398559570312, -9.973298072814941 ], [ -71.329460144042969, -9.974439620971623 ], [ -71.329460144042969, -9.975998878479004 ], [ -71.329147338867188, -9.976778030395508 ], [ -71.328010559082031, -9.97747802734375 ], [ -71.327156066894531, -9.978460311889592 ], [ -71.326927185058537, -9.979050636291504 ], [ -71.325546264648438, -9.97998046875 ], [ -71.324508666992188, -9.982279777526799 ], [ -71.324417114257812, -9.982489585876408 ], [ -71.323013305664006, -9.984189987182504 ], [ -71.322799682617188, -9.985008239746094 ], [ -71.322639465331974, -9.985618591308594 ], [ -71.321578979492131, -9.985878944396916 ], [ -71.320198059082031, -9.985598564147949 ], [ -71.318588256835938, -9.985269546508789 ], [ -71.31622314453125, -9.985488891601562 ], [ -71.3155517578125, -9.986118316650334 ], [ -71.31494140625, -9.98755931854248 ], [ -71.313735961914062, -9.98871898651123 ], [ -71.313629150390625, -9.990058898925781 ], [ -71.31353759765625, -9.991160392761174 ], [ -71.312980651855469, -9.991600036621094 ], [ -71.3128662109375, -9.991690635681152 ], [ -71.312126159667912, -9.991780281066838 ], [ -71.311080932617131, -9.991160392761174 ], [ -71.310935974121094, -9.991070747375488 ], [ -71.308280944824219, -9.988140106201115 ], [ -71.307212829589844, -9.987869262695312 ], [ -71.306221008300724, -9.988078117370605 ], [ -71.305709838867188, -9.988751411437988 ], [ -71.304519653320256, -9.989619255065861 ], [ -71.303192138671818, -9.990249633789062 ], [ -71.3023681640625, -9.990360260009766 ], [ -71.300376892089844, -9.991529464721623 ], [ -71.299102783203125, -9.991788864135685 ], [ -71.298202514648381, -9.991608619689941 ], [ -71.297149658203125, -9.990208625793457 ], [ -71.295143127441406, -9.988441467285156 ], [ -71.294746398925781, -9.985990524291935 ], [ -71.293891906738281, -9.98395824432373 ], [ -71.292709350585824, -9.982419013976994 ], [ -71.291366577148381, -9.981479644775391 ], [ -71.29052734375, -9.981500625610295 ], [ -71.289916992187443, -9.981900215148926 ], [ -71.289398193359375, -9.982769966125488 ], [ -71.2889404296875, -9.984450340270996 ], [ -71.288360595703125, -9.98538875579834 ], [ -71.287269592285043, -9.985909461975098 ], [ -71.286453247070312, -9.985928535461426 ], [ -71.284599304199105, -9.985300064086857 ], [ -71.282096862792912, -9.985187530517521 ], [ -71.280891418457031, -9.984768867492676 ], [ -71.279235839843693, -9.983730316162053 ], [ -71.276901245117188, -9.981138229370004 ], [ -71.275947570800781, -9.980738639831543 ], [ -71.274757385253849, -9.980609893798771 ], [ -71.272758483886662, -9.978448867797795 ], [ -71.268402099609375, -9.977230072021484 ], [ -71.267585754394531, -9.977358818054199 ], [ -71.267181396484375, -9.977599143981877 ], [ -71.264801025390625, -9.978998184204102 ], [ -71.262496948242188, -9.979670524597168 ], [ -71.260307312011719, -9.979599952697754 ], [ -71.258026123046875, -9.978830337524357 ], [ -71.25551605224598, -9.977459907531681 ], [ -71.253967285156193, -9.976320266723633 ], [ -71.252090454101562, -9.974678993225098 ], [ -71.251235961914062, -9.973368644714355 ], [ -71.25103759765625, -9.971269607543945 ], [ -71.250785827636719, -9.970780372619572 ], [ -71.250816345214787, -9.969397544860783 ], [ -71.251190185546818, -9.968740463256722 ], [ -71.251266479492188, -9.968598365783635 ], [ -71.253669738769474, -9.9660387039184 ], [ -71.254013061523438, -9.964798927307072 ], [ -71.253890991210824, -9.963698387145939 ], [ -71.252822875976506, -9.962860107421818 ], [ -71.252349853515568, -9.962860107421818 ], [ -71.251251220703125, -9.963529586791992 ], [ -71.250427246093693, -9.963688850402832 ], [ -71.249046325683594, -9.963139533996582 ], [ -71.247940063476562, -9.96233081817627 ], [ -71.246757507324219, -9.962080001831055 ], [ -71.245857238769474, -9.962689399719181 ], [ -71.245613098144531, -9.963178634643498 ], [ -71.24298095703125, -9.965879440307504 ], [ -71.242912292480412, -9.965958595275879 ], [ -71.241477966308537, -9.966748237609863 ], [ -71.240905761718693, -9.966748237609863 ], [ -71.238502502441349, -9.965820312499943 ], [ -71.237197875976506, -9.964811325073185 ], [ -71.236473083496094, -9.964501380920353 ], [ -71.235527038574219, -9.964589118957463 ], [ -71.234413146972599, -9.965049743652287 ], [ -71.2322998046875, -9.965238571166992 ], [ -71.230506896972599, -9.965999603271428 ], [ -71.229263305664006, -9.967068672180119 ], [ -71.227127075195312, -9.967060089111271 ], [ -71.225341796874943, -9.967448234558105 ], [ -71.223449707031193, -9.969698905944767 ], [ -71.222297668456974, -9.970390319824162 ], [ -71.221557617187443, -9.970249176025391 ], [ -71.220451354980469, -9.969397544860783 ], [ -71.217948913574219, -9.968170166015625 ], [ -71.214675903320256, -9.967798233032227 ], [ -71.212547302246094, -9.966290473937988 ], [ -71.209846496582031, -9.965669631957951 ], [ -71.209251403808537, -9.964969635009709 ], [ -71.209213256835938, -9.964228630065918 ], [ -71.209793090820312, -9.963178634643498 ], [ -71.209861755371094, -9.962540626525879 ], [ -71.208839416503906, -9.960289001464787 ], [ -71.208847045898381, -9.957608222961426 ], [ -71.209999084472599, -9.954399108886719 ], [ -71.210128784179688, -9.954048156738281 ], [ -71.210121154785043, -9.953149795532227 ], [ -71.209907531738224, -9.952639579772892 ], [ -71.208076477050781, -9.950937271118164 ], [ -71.207572937011719, -9.949869155883789 ], [ -71.206207275390511, -9.948929786682129 ], [ -71.204467773437443, -9.945799827575684 ], [ -71.203842163085938, -9.945240020751953 ], [ -71.201606750488224, -9.944138526916504 ], [ -71.199935913085938, -9.942818641662598 ], [ -71.199028015136662, -9.942370414733887 ], [ -71.197090148925781, -9.942270278930664 ], [ -71.195816040038949, -9.942818641662598 ], [ -71.194549560546818, -9.942990303039551 ], [ -71.193305969238224, -9.942588806152344 ], [ -71.192489624023438, -9.941708564758244 ], [ -71.192146301269531, -9.940678596496468 ], [ -71.192260742187443, -9.937269210815316 ], [ -71.191459655761719, -9.936030387878361 ], [ -71.191268920898438, -9.934848785400391 ], [ -71.191307067871037, -9.933939933776799 ], [ -71.191787719726506, -9.933051109313965 ], [ -71.191978454589787, -9.931690216064339 ], [ -71.191490173339787, -9.930578231811467 ], [ -71.189918518066406, -9.928899765014648 ], [ -71.18963623046875, -9.927180290222111 ], [ -71.188873291015625, -9.9257297515868 ], [ -71.188957214355469, -9.924348831176758 ], [ -71.189712524413949, -9.922530174255371 ], [ -71.189582824706974, -9.920969009399414 ], [ -71.188522338867188, -9.919729232788086 ], [ -71.187492370605412, -9.919569969177246 ], [ -71.18670654296875, -9.919778823852539 ], [ -71.185752868652344, -9.921010017394963 ], [ -71.184982299804688, -9.921049118041935 ], [ -71.183586120605412, -9.919889450073185 ], [ -71.181747436523438, -9.919918060302734 ], [ -71.179847717285156, -9.919528961181641 ], [ -71.178436279296818, -9.91819953918457 ], [ -71.178092956542969, -9.916769027709961 ], [ -71.179237365722656, -9.912810325622559 ], [ -71.179290771484318, -9.910778999328613 ], [ -71.1798095703125, -9.909338951110783 ], [ -71.179756164550724, -9.90795993804926 ], [ -71.179031372070199, -9.906459808349609 ], [ -71.178016662597656, -9.905259132385254 ], [ -71.176727294921818, -9.904219627380371 ], [ -71.174270629882812, -9.902958869934082 ], [ -71.17311859130848, -9.901639938354492 ], [ -71.172531127929631, -9.899800300598145 ], [ -71.171752929687443, -9.898319244384766 ], [ -71.171806335449219, -9.896222114562931 ], [ -71.171195983886662, -9.894989013671875 ], [ -71.17169189453125, -9.891958236694279 ], [ -71.171661376953068, -9.890669822692871 ], [ -71.171417236328125, -9.890179634094238 ], [ -71.170402526855469, -9.889410018920898 ], [ -71.168571472167969, -9.889610290527287 ], [ -71.167800903320312, -9.889301300048828 ], [ -71.165016174316406, -9.887160301208496 ], [ -71.164222717285099, -9.885620117187443 ], [ -71.162429809570256, -9.88417911529541 ], [ -71.161659240722599, -9.882230758666935 ], [ -71.16162109375, -9.880399703979435 ], [ -71.160980224609318, -9.878378868103027 ], [ -71.159187316894474, -9.875928878784123 ], [ -71.158027648925724, -9.872549057006836 ], [ -71.157539367675724, -9.871740341186467 ], [ -71.156593322753849, -9.871247291564885 ], [ -71.154541015625, -9.871209144592285 ], [ -71.152847290039062, -9.870499610900879 ], [ -71.149887084960938, -9.870299339294434 ], [ -71.147567749023438, -9.869159698486328 ], [ -71.144729614257812, -9.866358757019043 ], [ -71.144760131835881, -9.863799095153809 ], [ -71.144287109374943, -9.862229347229004 ], [ -71.143096923828125, -9.860709190368596 ], [ -71.141052246093693, -9.858899116516113 ], [ -71.140296936035099, -9.857229232788029 ], [ -71.138175964355412, -9.856340408325195 ], [ -71.134376525878849, -9.853609085082951 ], [ -71.132652282714787, -9.853650093078613 ], [ -71.131858825683594, -9.852858543395939 ], [ -71.130996704101562, -9.852519989013615 ], [ -71.127937316894531, -9.852628707885742 ], [ -71.125099182128906, -9.852298736572266 ], [ -71.123062133789062, -9.852331161499023 ], [ -71.121391296386662, -9.851869583129883 ], [ -71.120216369628906, -9.852119445800724 ], [ -71.118347167968693, -9.853128433227482 ], [ -71.117340087890625, -9.853320121765137 ], [ -71.115089416503906, -9.852349281310978 ], [ -71.113616943359375, -9.852528572082463 ], [ -71.112632751464787, -9.853018760681152 ], [ -71.112525939941349, -9.853110313415527 ], [ -71.111320495605355, -9.854319572448674 ], [ -71.110099792480469, -9.854709625244084 ], [ -71.110000610351562, -9.85473728179926 ], [ -71.108917236328068, -9.854510307311955 ], [ -71.1065673828125, -9.852879524230957 ], [ -71.105842590332031, -9.852879524230957 ], [ -71.104438781738224, -9.853359222412053 ], [ -71.103157043457031, -9.853156089782658 ], [ -71.10198974609375, -9.852169036865234 ], [ -71.101997375488281, -9.850970268249455 ], [ -71.102241516113224, -9.850388526916504 ], [ -71.102340698242131, -9.85015869140625 ], [ -71.101280212402287, -9.847921371459961 ], [ -71.099800109863281, -9.847408294677734 ], [ -71.098747253417969, -9.846380233764592 ], [ -71.097366333007756, -9.846318244934082 ], [ -71.095275878906193, -9.845340728759766 ], [ -71.094062805175781, -9.844189643859863 ], [ -71.092399597167912, -9.841759681701603 ], [ -71.091331481933594, -9.84102821350092 ], [ -71.089546203613224, -9.840517997741699 ], [ -71.088333129882699, -9.841129302978516 ], [ -71.087303161621094, -9.841208457946777 ], [ -71.086425781249886, -9.840909957885742 ], [ -71.085449218749943, -9.84019947052002 ], [ -71.084747314453125, -9.839229583740234 ], [ -71.083786010742188, -9.837039947509766 ], [ -71.082168579101562, -9.836159706115723 ], [ -71.081275939941293, -9.835309982299748 ], [ -71.081222534179688, -9.832859992980957 ], [ -71.080200195312443, -9.831930160522461 ], [ -71.078536987304688, -9.831110000610295 ], [ -71.0782470703125, -9.829330444335881 ], [ -71.077583312988281, -9.828248977661076 ], [ -71.076393127441349, -9.827540397644043 ], [ -71.074577331542912, -9.82715988159174 ], [ -71.073616027831974, -9.827668190002328 ], [ -71.070480346679631, -9.827689170837346 ], [ -71.069679260253906, -9.827231407165471 ], [ -71.067558288574219, -9.827110290527344 ], [ -71.066101074218693, -9.825990676879883 ], [ -71.065338134765568, -9.82565975189209 ], [ -71.063117980957031, -9.825538635253849 ], [ -71.062629699707031, -9.825778961181641 ], [ -71.061508178710881, -9.825819969177246 ], [ -71.059761047363281, -9.825288772582951 ], [ -71.058151245117188, -9.824370384216252 ], [ -71.057456970214844, -9.823629379272461 ], [ -71.057243347167855, -9.820989608764592 ], [ -71.056846618652287, -9.819959640502873 ], [ -71.055946350097656, -9.81929874420166 ], [ -71.053855895996094, -9.818319320678654 ], [ -71.052963256835938, -9.816630363464299 ], [ -71.051986694335881, -9.815939903259277 ], [ -71.051162719726562, -9.815939903259277 ], [ -71.050178527831974, -9.816228866577092 ], [ -71.048019409179688, -9.818378448486271 ], [ -71.045898437499886, -9.818288803100586 ], [ -71.044609069824219, -9.819198608398438 ], [ -71.044479370117188, -9.819208145141602 ], [ -71.044029235839844, -9.819050788879338 ], [ -71.043586730956974, -9.818498611450195 ], [ -71.043220520019474, -9.818038940429688 ], [ -71.042671203613281, -9.818198204040527 ], [ -71.042518615722656, -9.81834888458252 ], [ -71.042205810546875, -9.818658828735352 ], [ -71.040916442871037, -9.818788528442326 ], [ -71.039497375488224, -9.818368911743164 ], [ -71.039337158203125, -9.818319320678654 ], [ -71.038528442382756, -9.81764030456543 ], [ -71.036888122558594, -9.817398071289062 ], [ -71.035682678222599, -9.816128730773812 ], [ -71.033676147460881, -9.815789222717285 ], [ -71.033309936523324, -9.815369606018066 ], [ -71.032936096191406, -9.814318656921387 ], [ -71.032150268554631, -9.814088821411133 ], [ -71.031455993652344, -9.814318656921387 ], [ -71.030021667480469, -9.816110610961914 ], [ -71.028923034667855, -9.81630897521967 ], [ -71.028472900390625, -9.816768646240178 ], [ -71.026710510253849, -9.816710472106934 ], [ -71.025650024414006, -9.817970275878906 ], [ -71.023551940917912, -9.818670272827148 ], [ -71.022338867187386, -9.818639755249023 ], [ -71.021652221679631, -9.818378448486271 ], [ -71.020767211914062, -9.817558288574219 ], [ -71.020088195800781, -9.81635856628418 ], [ -71.019515991210938, -9.816069602966252 ], [ -71.019157409667912, -9.816161155700627 ], [ -71.018463134765625, -9.816920280456486 ], [ -71.016448974609375, -9.816719055175781 ], [ -71.015632629394474, -9.817478179931641 ], [ -71.015106201171875, -9.817619323730412 ], [ -71.011405944824219, -9.816110610961914 ], [ -71.010246276855469, -9.81591892242426 ], [ -71.009170532226506, -9.816238403320312 ], [ -71.008682250976506, -9.816579818725586 ], [ -71.00750732421875, -9.817388534545842 ], [ -71.006477355956974, -9.817338943481445 ], [ -71.004776000976506, -9.816889762878418 ], [ -71.003768920898438, -9.816889762878418 ], [ -71.002716064453125, -9.817168235778809 ], [ -71.002517700195312, -9.817230224609318 ], [ -71.001251220703068, -9.817970275878906 ], [ -70.999519348144474, -9.818258285522461 ], [ -70.9981689453125, -9.818079948425236 ], [ -70.996047973632812, -9.816969871520996 ], [ -70.994300842285043, -9.81707859039301 ], [ -70.993728637695199, -9.81635856628418 ], [ -70.993659973144531, -9.81591892242426 ], [ -70.993522644042912, -9.814989089965763 ], [ -70.992912292480469, -9.813280105590763 ], [ -70.992012023925668, -9.812088012695256 ], [ -70.991783142089844, -9.811090469360295 ], [ -70.992973327636719, -9.81013011932373 ], [ -70.992446899414062, -9.808950424194336 ], [ -70.992401123046875, -9.8077392578125 ], [ -70.99444580078125, -9.805720329284668 ], [ -70.994750976562443, -9.80499076843256 ], [ -70.994476318359318, -9.804100036621094 ], [ -70.993522644042912, -9.803780555725098 ], [ -70.992897033691406, -9.803208351135254 ], [ -70.992759704589787, -9.801778793334961 ], [ -70.992149353027344, -9.80109977722168 ], [ -70.992202758788949, -9.800728797912598 ], [ -70.992622375488281, -9.800348281860352 ], [ -70.992607116699219, -9.799940109252816 ], [ -70.992042541503906, -9.799839973449707 ], [ -70.991821289062386, -9.79954814910883 ], [ -70.991828918457031, -9.799090385436955 ], [ -70.992073059081974, -9.798818588256836 ], [ -70.992057800292969, -9.796989440917969 ], [ -70.992652893066349, -9.796152114868164 ], [ -70.992759704589787, -9.795048713684025 ], [ -70.992012023925668, -9.794389724731388 ], [ -70.991699218749943, -9.793419837951603 ], [ -70.990547180175724, -9.792070388793945 ], [ -70.990509033203125, -9.790620803833008 ], [ -70.98974609375, -9.79053878784174 ], [ -70.989250183105355, -9.790768623352051 ], [ -70.9888916015625, -9.789668083190918 ], [ -70.987236022949162, -9.789420127868652 ], [ -70.986549377441349, -9.788900375366211 ], [ -70.986709594726562, -9.786639213562012 ], [ -70.986450195312443, -9.785658836364632 ], [ -70.984756469726506, -9.783469200134277 ], [ -70.984275817871037, -9.781899452209473 ], [ -70.982276916503849, -9.779850006103459 ], [ -70.981323242187443, -9.778169631957951 ], [ -70.981330871581918, -9.777600288391 ], [ -70.982208251953125, -9.776759147643986 ], [ -70.982330322265625, -9.776250839233398 ], [ -70.982086181640568, -9.775639533996582 ], [ -70.980766296386719, -9.774469375610295 ], [ -70.980560302734318, -9.770708084106445 ], [ -70.979026794433537, -9.768869400024414 ], [ -70.978538513183537, -9.767569541931152 ], [ -70.977378845214844, -9.765849113464355 ], [ -70.975151062011719, -9.763589859008732 ], [ -70.974388122558594, -9.76055908203125 ], [ -70.973869323730412, -9.759478569030762 ], [ -70.9732666015625, -9.758660316467285 ], [ -70.972312927246094, -9.758099555969238 ], [ -70.971672058105412, -9.758058547973576 ], [ -70.970413208007812, -9.758640289306641 ], [ -70.969535827636719, -9.758468627929631 ], [ -70.969459533691406, -9.75800895690918 ], [ -70.969779968261662, -9.75756931304926 ], [ -70.971282958984318, -9.756890296935978 ], [ -70.971176147460938, -9.755929946899414 ], [ -70.970359802246037, -9.755749702453556 ], [ -70.96865081787098, -9.756449699401799 ], [ -70.965888977050781, -9.755380630493107 ], [ -70.965721130371094, -9.753678321838379 ], [ -70.964157104492131, -9.752558708190861 ], [ -70.964256286621037, -9.749349594116211 ], [ -70.96380615234375, -9.748579978942871 ], [ -70.963150024414062, -9.748860359191838 ], [ -70.962608337402287, -9.749628067016602 ], [ -70.962150573730412, -9.752620697021484 ], [ -70.961616516113281, -9.752769470214787 ], [ -70.96112060546875, -9.75255012512207 ], [ -70.960586547851562, -9.751889228820801 ], [ -70.959960937499943, -9.749788284301758 ], [ -70.958717346191349, -9.747420310974121 ], [ -70.957611083984375, -9.746458053588867 ], [ -70.954948425292969, -9.745229721069336 ], [ -70.954376220703125, -9.744291305541992 ], [ -70.953956604003849, -9.742588043212891 ], [ -70.953361511230412, -9.742019653320312 ], [ -70.952262878417969, -9.742027282714844 ], [ -70.951728820800781, -9.742368698120117 ], [ -70.951118469238281, -9.743509292602539 ], [ -70.950736999511719, -9.745138168334961 ], [ -70.95034027099598, -9.745349884033203 ], [ -70.949798583984375, -9.745029449462834 ], [ -70.94940185546875, -9.744400024414062 ], [ -70.949440002441406, -9.743558883666935 ], [ -70.949951171874943, -9.74269962310791 ], [ -70.949836730956974, -9.74236011505127 ], [ -70.949485778808594, -9.742210388183594 ], [ -70.947822570800724, -9.742319107055607 ], [ -70.946769714355469, -9.742670059204102 ], [ -70.945503234863281, -9.742089271545353 ], [ -70.944396972656193, -9.741958618164062 ], [ -70.940521240234375, -9.74314022064209 ], [ -70.939086914062386, -9.744129180908203 ], [ -70.938529968261719, -9.74409008026123 ], [ -70.938285827636662, -9.742830276489258 ], [ -70.937736511230412, -9.742799758911076 ], [ -70.937156677246037, -9.743488311767578 ], [ -70.936500549316349, -9.743488311767578 ], [ -70.935913085937443, -9.743039131164551 ], [ -70.934852600097599, -9.741530418395996 ], [ -70.934272766113281, -9.741230010986271 ], [ -70.932327270507812, -9.74103832244873 ], [ -70.929916381835881, -9.741679191589299 ], [ -70.927558898925781, -9.741748809814453 ], [ -70.927146911621037, -9.74175834655756 ], [ -70.925506591796818, -9.741498947143555 ], [ -70.924179077148381, -9.740889549255371 ], [ -70.923912048339787, -9.74075984954834 ], [ -70.923057556152287, -9.739928245544434 ], [ -70.923027038574162, -9.739398956298771 ], [ -70.923942565917969, -9.738908767700195 ], [ -70.924057006835938, -9.738839149475098 ], [ -70.924308776855469, -9.738209724426213 ], [ -70.923538208007699, -9.737739562988281 ], [ -70.922721862792969, -9.737950325012207 ], [ -70.922149658203125, -9.73809814453125 ], [ -70.922042846679688, -9.738039016723576 ], [ -70.921188354492188, -9.737560272216797 ], [ -70.920639038085938, -9.736309051513672 ], [ -70.919853210449219, -9.734538078308049 ], [ -70.918266296386662, -9.732999801635742 ], [ -70.918167114257756, -9.731989860534668 ], [ -70.917762756347656, -9.731258392333984 ], [ -70.915657043457031, -9.729188919067383 ], [ -70.914253234863224, -9.728849411010742 ], [ -70.914199829101562, -9.728378295898438 ], [ -70.914970397949219, -9.72727012634266 ], [ -70.914268493652287, -9.726299285888672 ], [ -70.913108825683537, -9.72554874420166 ], [ -70.911911010742188, -9.725248336791935 ], [ -70.911895751953068, -9.725679397583008 ], [ -70.912361145019474, -9.726139068603459 ], [ -70.912490844726562, -9.726948738098088 ], [ -70.911796569824162, -9.727219581603947 ], [ -70.911216735839787, -9.726798057556096 ], [ -70.910751342773381, -9.725809097289982 ], [ -70.909019470214787, -9.723880767822209 ], [ -70.909111022949162, -9.721960067749023 ], [ -70.908859252929688, -9.721169471740723 ], [ -70.908088684081918, -9.720640182495117 ], [ -70.906379699707031, -9.720609664916992 ], [ -70.906318664550781, -9.719879150390511 ], [ -70.90667724609375, -9.719249725341797 ], [ -70.906723022460881, -9.718680381774846 ], [ -70.905616760253906, -9.717739105224609 ], [ -70.904930114746037, -9.716670036315918 ], [ -70.904006958007812, -9.716047286987305 ], [ -70.90389251708973, -9.715319633483887 ], [ -70.904067993164006, -9.714158058166447 ], [ -70.903656005859375, -9.713979721069279 ], [ -70.902961730957031, -9.714438438415527 ], [ -70.902496337890625, -9.714428901672363 ], [ -70.900566101074219, -9.712980270385742 ], [ -70.900169372558537, -9.713169097900334 ], [ -70.899177551269531, -9.714359283447266 ], [ -70.898902893066349, -9.714209556579533 ], [ -70.898368835449219, -9.713938713073674 ], [ -70.898277282714844, -9.713507652282715 ], [ -70.898109436035156, -9.712639808654728 ], [ -70.897750854492188, -9.710868835449219 ], [ -70.8966064453125, -9.708849906921387 ], [ -70.896736145019474, -9.708428382873478 ], [ -70.89778900146473, -9.707798957824707 ], [ -70.898117065429688, -9.707280158996525 ], [ -70.897979736328011, -9.706539154052734 ], [ -70.897216796874886, -9.705519676208439 ], [ -70.897499084472599, -9.704558372497559 ], [ -70.897453308105469, -9.703438758850098 ], [ -70.896766662597656, -9.70270824432373 ], [ -70.894912719726506, -9.70221996307373 ], [ -70.89288330078125, -9.699351310729867 ], [ -70.892486572265625, -9.698518753051758 ], [ -70.892189025878906, -9.696328163146916 ], [ -70.891220092773438, -9.69536018371582 ], [ -70.890647888183594, -9.694099426269474 ], [ -70.889022827148438, -9.692600250244084 ], [ -70.889129638671875, -9.690388679504395 ], [ -70.888732910156136, -9.689350128173771 ], [ -70.887748718261662, -9.688670158386117 ], [ -70.886947631835938, -9.688420295715275 ], [ -70.884986877441349, -9.689220428466797 ], [ -70.884452819824219, -9.689257621765137 ], [ -70.883682250976562, -9.689319610595703 ], [ -70.882217407226506, -9.689119338989201 ], [ -70.881057739257812, -9.688558578491211 ], [ -70.880508422851506, -9.687909126281738 ], [ -70.88037109375, -9.687390327453613 ], [ -70.880462646484375, -9.686838150024414 ], [ -70.881095886230412, -9.685818672180176 ], [ -70.881217956542969, -9.68506908416748 ], [ -70.880439758300781, -9.684099197387695 ], [ -70.879966735839844, -9.683510780334473 ], [ -70.880058288574219, -9.681070327758789 ], [ -70.880081176757812, -9.680659294128304 ], [ -70.879600524902344, -9.680198669433537 ], [ -70.879241943359375, -9.680249214172363 ], [ -70.877761840820199, -9.680429458618107 ], [ -70.87709808349598, -9.680109977722168 ], [ -70.876739501953125, -9.679568290710449 ], [ -70.876731872558594, -9.678909301757812 ], [ -70.876716613769418, -9.678009033203068 ], [ -70.876548767089844, -9.677559852599984 ], [ -70.876258850097656, -9.676810264587346 ], [ -70.876220703124943, -9.675800323486271 ], [ -70.875846862792912, -9.675160408019963 ], [ -70.874488830566349, -9.674399375915527 ], [ -70.873237609863281, -9.674249649047852 ], [ -70.872077941894531, -9.67410945892334 ], [ -70.871932983398381, -9.674089431762695 ], [ -70.871612548828125, -9.673629760742188 ], [ -70.871566772460824, -9.672989845275879 ], [ -70.871490478515625, -9.671428680419865 ], [ -70.871170043945256, -9.670669555663949 ], [ -70.87066650390625, -9.670418739318848 ], [ -70.868843078613281, -9.670149803161564 ], [ -70.868011474609318, -9.669739723205453 ], [ -70.868217468261662, -9.669070243835449 ], [ -70.870346069335938, -9.669060707092228 ], [ -70.87103271484375, -9.668598175048828 ], [ -70.870689392089787, -9.6673583984375 ], [ -70.869262695312443, -9.665190696716252 ], [ -70.86794281005848, -9.66480827331543 ], [ -70.866889953613168, -9.66536903381342 ], [ -70.866142272949219, -9.665438652038574 ], [ -70.864723205566406, -9.664139747619629 ], [ -70.86328125, -9.662247657775879 ], [ -70.857872009277344, -9.660138130187988 ], [ -70.857460021972656, -9.659508705139103 ], [ -70.857307434082031, -9.657509803771916 ], [ -70.856651306152287, -9.657119750976506 ], [ -70.855873107910156, -9.65701961517334 ], [ -70.854156494140625, -9.655467987060547 ], [ -70.853096008300781, -9.655118942260742 ], [ -70.850440979003906, -9.65491867065424 ], [ -70.848411560058594, -9.655529975891 ], [ -70.847717285156193, -9.656140327453613 ], [ -70.847442626953125, -9.657398223876896 ], [ -70.847015380859375, -9.65776252746582 ], [ -70.845870971679688, -9.657409667968693 ], [ -70.843368530273438, -9.655529975891 ], [ -70.842346191406193, -9.655609130859375 ], [ -70.841026306152287, -9.656879425048828 ], [ -70.839996337890511, -9.65690803527832 ], [ -70.839157104492188, -9.65662956237793 ], [ -70.838478088378906, -9.655839920043832 ], [ -70.838493347167969, -9.655379295349064 ], [ -70.837966918945256, -9.654298782348576 ], [ -70.837928771972656, -9.65380859375 ], [ -70.837760925292969, -9.651837348937988 ], [ -70.837646484375, -9.651350021362248 ], [ -70.837142944335938, -9.649049758911076 ], [ -70.835876464843693, -9.646499633789062 ], [ -70.835929870605469, -9.645481109619084 ], [ -70.836410522460938, -9.644300460815316 ], [ -70.836372375488168, -9.643190383911133 ], [ -70.836158752441349, -9.642998695373535 ], [ -70.83563232421875, -9.64309024810791 ], [ -70.834457397460881, -9.644280433654785 ], [ -70.833045959472656, -9.646408081054688 ], [ -70.832351684570256, -9.646550178527775 ], [ -70.831062316894531, -9.646330833435059 ], [ -70.830482482910156, -9.646449089050293 ], [ -70.829879760742131, -9.64657020568842 ], [ -70.82965087890625, -9.646449089050293 ], [ -70.829055786132812, -9.646160125732308 ], [ -70.828872680664062, -9.645819664001408 ], [ -70.828712463378849, -9.645548820495549 ], [ -70.828750610351562, -9.64506816864008 ], [ -70.829719543457031, -9.643659591674805 ], [ -70.828971862792969, -9.642880439758301 ], [ -70.828521728515568, -9.642990112304631 ], [ -70.827140808105469, -9.644200325012207 ], [ -70.824302673339844, -9.644679069518986 ], [ -70.823707580566406, -9.644518852233887 ], [ -70.823303222656193, -9.644108772277832 ], [ -70.82293701171875, -9.642429351806584 ], [ -70.822486877441406, -9.642080307006779 ], [ -70.821846008300724, -9.642050743103027 ], [ -70.821105957031193, -9.642429351806584 ], [ -70.819442749023438, -9.644317626953068 ], [ -70.818641662597656, -9.644590377807617 ], [ -70.817886352539062, -9.644549369812012 ], [ -70.817276000976506, -9.643919944763127 ], [ -70.81768798828125, -9.643098831176758 ], [ -70.818702697753849, -9.641919136047363 ], [ -70.818290710449219, -9.641180038452148 ], [ -70.817878723144531, -9.641009330749512 ], [ -70.817337036132812, -9.641168594360352 ], [ -70.815490722656136, -9.642969131469727 ], [ -70.815040588378906, -9.64301872253418 ], [ -70.814567565917969, -9.642168998718262 ], [ -70.814422607421818, -9.640189170837346 ], [ -70.813560485839787, -9.639630317687988 ], [ -70.812347412109375, -9.639518737792969 ], [ -70.810806274414006, -9.639869689941406 ], [ -70.8096923828125, -9.64048957824707 ], [ -70.80816650390625, -9.641839027404785 ], [ -70.807716369628906, -9.642390251159611 ], [ -70.806777954101506, -9.643560409545898 ], [ -70.805412292480469, -9.643679618835449 ], [ -70.804771423339787, -9.643320083618107 ], [ -70.803253173828068, -9.641709327697754 ], [ -70.802276611328125, -9.641180038452148 ], [ -70.801536560058537, -9.641188621520996 ], [ -70.800506591796818, -9.642099380493107 ], [ -70.799957275390625, -9.641988754272404 ], [ -70.798858642578068, -9.64069938659668 ], [ -70.79827880859375, -9.640020370483398 ], [ -70.7978515625, -9.639099121093693 ], [ -70.797737121581974, -9.638087272644043 ], [ -70.797630310058537, -9.637980461120605 ], [ -70.797157287597599, -9.637498855590763 ], [ -70.796348571777344, -9.637608528137207 ], [ -70.794960021972599, -9.638810157775822 ], [ -70.793746948242074, -9.638818740844727 ], [ -70.793342590331974, -9.638319969177246 ], [ -70.793312072753906, -9.6376695632934 ], [ -70.794136047363281, -9.635430335998535 ], [ -70.794113159179631, -9.635099411010742 ], [ -70.794021606445256, -9.634269714355469 ], [ -70.792411804199105, -9.633249282836914 ], [ -70.791877746582031, -9.631419181823674 ], [ -70.790885925292855, -9.630940437316895 ], [ -70.79052734375, -9.630409240722599 ], [ -70.790802001953125, -9.629851341247559 ], [ -70.792312622070199, -9.629440307617131 ], [ -70.793006896972656, -9.628829002380371 ], [ -70.793350219726506, -9.62799072265625 ], [ -70.793037414550781, -9.627120018005371 ], [ -70.791488647460938, -9.625798225402832 ], [ -70.7886962890625, -9.624558448791504 ], [ -70.788208007812443, -9.623779296875 ], [ -70.788108825683537, -9.623138427734375 ], [ -70.78765869140625, -9.622687339782715 ], [ -70.787277221679688, -9.622679710388184 ], [ -70.786376953124943, -9.62365818023676 ], [ -70.785758972167969, -9.623448371887207 ], [ -70.785301208496094, -9.622858047485352 ], [ -70.785240173339787, -9.621749877929688 ], [ -70.785713195800724, -9.621068954467773 ], [ -70.786369323730412, -9.620779991149902 ], [ -70.788230895996094, -9.620658874511719 ], [ -70.788932800292969, -9.61995887756342 ], [ -70.788467407226506, -9.618959426879883 ], [ -70.786605834960938, -9.617751121520996 ], [ -70.787086486816406, -9.615208625793457 ], [ -70.787033081054631, -9.614560127258301 ], [ -70.786651611328068, -9.613979339599609 ], [ -70.784255981445312, -9.613189697265625 ], [ -70.782417297363281, -9.611948013305607 ], [ -70.782035827636719, -9.612000465393066 ], [ -70.78118896484375, -9.612830162048283 ], [ -70.780647277831974, -9.612709045410156 ], [ -70.78029632568348, -9.612179756164551 ], [ -70.780326843261719, -9.610150337219238 ], [ -70.779739379882812, -9.609657287597656 ], [ -70.779281616210938, -9.609739303588867 ], [ -70.777061462402344, -9.611539840698242 ], [ -70.775230407714787, -9.611390113830566 ], [ -70.774665832519474, -9.610649108886662 ], [ -70.774566650390568, -9.607909202575684 ], [ -70.773979187011662, -9.607199668884221 ], [ -70.772506713867188, -9.606410026550293 ], [ -70.770217895507812, -9.606128692626953 ], [ -70.769332885742074, -9.606369018554631 ], [ -70.768920898437443, -9.606719970703125 ], [ -70.768035888671875, -9.606861114501896 ], [ -70.766738891601506, -9.607058525085449 ], [ -70.766189575195312, -9.606928825378361 ], [ -70.766082763671818, -9.606649398803711 ], [ -70.76593017578125, -9.60624980926508 ], [ -70.766082763671818, -9.605549812316838 ], [ -70.766487121582031, -9.605049133300724 ], [ -70.767700195312443, -9.603557586669922 ], [ -70.767936706542969, -9.603089332580566 ], [ -70.768417358398438, -9.602158546447754 ], [ -70.768371582031193, -9.60114860534668 ], [ -70.767799377441349, -9.600569725036621 ], [ -70.767120361328068, -9.600810050964299 ], [ -70.766830444335881, -9.600908279418832 ], [ -70.764846801757699, -9.602820396423283 ], [ -70.764701843261719, -9.602841377258301 ], [ -70.763465881347656, -9.603009223937988 ], [ -70.762596130371094, -9.603960037231332 ], [ -70.7613525390625, -9.604290008544865 ], [ -70.76045989990223, -9.605229377746582 ], [ -70.759330749511719, -9.605539321899414 ], [ -70.758331298828068, -9.605400085449219 ], [ -70.757858276367131, -9.60507869720459 ], [ -70.757392883300724, -9.604488372802734 ], [ -70.75714111328125, -9.6036500930785 ], [ -70.757247924804688, -9.603260040283203 ], [ -70.757972717285099, -9.60292911529541 ], [ -70.758842468261605, -9.603130340576115 ], [ -70.759330749511719, -9.602325439453125 ], [ -70.758583068847656, -9.600990295410156 ], [ -70.757026672363168, -9.599998474121037 ], [ -70.756607055664062, -9.597920417785588 ], [ -70.755645751953125, -9.595628738403263 ], [ -70.755622863769531, -9.594980239868107 ], [ -70.756813049316349, -9.593119621276855 ], [ -70.757041931152344, -9.589688301086426 ], [ -70.757049560546875, -9.589497566223145 ], [ -70.758712768554631, -9.587819099426156 ], [ -70.758506774902344, -9.587078094482422 ], [ -70.757400512695256, -9.585838317871094 ], [ -70.757247924804688, -9.585229873657227 ], [ -70.757553100585938, -9.584999084472599 ], [ -70.759086608886719, -9.584828376769963 ], [ -70.759597778320256, -9.584421157836914 ], [ -70.759696960449105, -9.583980560302621 ], [ -70.759529113769531, -9.583659172058049 ], [ -70.759185791015568, -9.583539009094238 ], [ -70.756866455078125, -9.583440780639592 ], [ -70.756332397460881, -9.582929611206055 ], [ -70.756126403808594, -9.582378387451172 ], [ -70.756240844726506, -9.581948280334473 ], [ -70.758598327636719, -9.579608917236328 ], [ -70.7586669921875, -9.579239845275879 ], [ -70.758247375488224, -9.578759193420296 ], [ -70.757667541503849, -9.578519821166992 ], [ -70.756233215331974, -9.578880310058594 ], [ -70.754600524902344, -9.579718589782715 ], [ -70.754226684570256, -9.579420089721623 ], [ -70.754066467285099, -9.579010009765568 ], [ -70.754173278808594, -9.578460693359375 ], [ -70.755821228027344, -9.57697868347168 ], [ -70.75588226318348, -9.575868606567383 ], [ -70.75274658203125, -9.571990013122559 ], [ -70.749862670898381, -9.569318771362248 ], [ -70.75018310546875, -9.568669319152832 ], [ -70.752555847167969, -9.568448066711369 ], [ -70.753562927246037, -9.568941116332951 ], [ -70.754989624023381, -9.570231437683105 ], [ -70.755500793456918, -9.570048332214355 ], [ -70.755867004394474, -9.569210052490234 ], [ -70.755828857421875, -9.568559646606388 ], [ -70.755508422851562, -9.568008422851562 ], [ -70.7518310546875, -9.565058708190861 ], [ -70.751609802246094, -9.561129570007267 ], [ -70.750991821289006, -9.560209274291992 ], [ -70.7503662109375, -9.559820175170898 ], [ -70.749336242675781, -9.560199737548771 ], [ -70.748146057128849, -9.56259822845459 ], [ -70.747711181640625, -9.562928199767953 ], [ -70.746978759765568, -9.562990188598633 ], [ -70.744895935058537, -9.562450408935547 ], [ -70.743377685546818, -9.561750411987305 ], [ -70.743186950683537, -9.560589790344238 ], [ -70.743568420410099, -9.559678077697697 ], [ -70.743438720703125, -9.559140205383301 ], [ -70.743125915527344, -9.558927536010685 ], [ -70.742576599121094, -9.558779716491586 ], [ -70.742271423339844, -9.558939933776799 ], [ -70.742126464843693, -9.560020446777287 ], [ -70.741569519042912, -9.560460090637207 ], [ -70.741127014160156, -9.560330390930119 ], [ -70.739830017089787, -9.559279441833496 ], [ -70.738296508789062, -9.559040069580078 ], [ -70.737350463867131, -9.559948921203556 ], [ -70.736656188964844, -9.56299877166748 ], [ -70.736183166503906, -9.563798904418888 ], [ -70.733688354492188, -9.564318656921387 ], [ -70.733497619628906, -9.564438819885197 ], [ -70.733070373535099, -9.564728736877385 ], [ -70.731788635253906, -9.566199302673283 ], [ -70.730072021484375, -9.566439628601074 ], [ -70.730026245117131, -9.567160606384221 ], [ -70.730842590332031, -9.569100379943791 ], [ -70.730377197265625, -9.570059776306152 ], [ -70.730049133300781, -9.570059776306152 ], [ -70.729736328124943, -9.569728851318359 ], [ -70.728996276855469, -9.568339347839355 ], [ -70.727737426757756, -9.566749572753906 ], [ -70.727027893066406, -9.566609382629395 ], [ -70.726593017578068, -9.566768646240234 ], [ -70.725746154785043, -9.567069053649846 ], [ -70.722908020019531, -9.563698768615723 ], [ -70.722831726074219, -9.562959671020508 ], [ -70.724105834960881, -9.561629295349064 ], [ -70.724349975585938, -9.560929298400879 ], [ -70.72406005859375, -9.560269355773926 ], [ -70.723899841308537, -9.560119628906193 ], [ -70.722702026367188, -9.558989524841309 ], [ -70.722633361816406, -9.558539390563965 ], [ -70.722923278808594, -9.558328628540039 ], [ -70.725852966308594, -9.55806922912592 ], [ -70.726463317871094, -9.557478904724121 ], [ -70.726387023925724, -9.557018280029297 ], [ -70.725692749023438, -9.55640983581543 ], [ -70.725067138671818, -9.556260108947754 ], [ -70.723312377929688, -9.556380271911564 ], [ -70.722267150878906, -9.556760787963867 ], [ -70.721450805664006, -9.556719779968262 ], [ -70.721069335937443, -9.556219100952148 ], [ -70.721488952636719, -9.554889678955021 ], [ -70.720947265624943, -9.554299354553223 ], [ -70.720390319824162, -9.554289817810002 ], [ -70.718841552734375, -9.554901123046875 ], [ -70.718048095703125, -9.554620742797795 ], [ -70.717506408691406, -9.553779602050781 ], [ -70.716186523437443, -9.549069404601994 ], [ -70.714523315429688, -9.547249794006348 ], [ -70.7138671875, -9.547259330749512 ], [ -70.712951660156193, -9.548000335693303 ], [ -70.711662292480469, -9.547758102416935 ], [ -70.711296081542969, -9.548000335693303 ], [ -70.710571289062443, -9.547990798950195 ], [ -70.708877563476562, -9.546978950500431 ], [ -70.706832885742131, -9.546408653259277 ], [ -70.706336975097656, -9.544479370117131 ], [ -70.704643249511662, -9.543589591979924 ], [ -70.703430175781136, -9.543899536132756 ], [ -70.703208923339787, -9.545499801635629 ], [ -70.703140258789006, -9.545969009399357 ], [ -70.702468872070256, -9.546152114868107 ], [ -70.70162200927723, -9.545228958129883 ], [ -70.701408386230412, -9.545009613037109 ], [ -70.701026916503849, -9.543958663940373 ], [ -70.700942993164006, -9.543699264526367 ], [ -70.700813293457031, -9.54241752624506 ], [ -70.699928283691406, -9.54126071929926 ], [ -70.698692321777344, -9.540859222412053 ], [ -70.695632934570312, -9.540988922119141 ], [ -70.694419860839844, -9.53998947143549 ], [ -70.692886352539062, -9.539950370788574 ], [ -70.692718505859318, -9.539339065551758 ], [ -70.693466186523438, -9.536490440368652 ], [ -70.693336486816406, -9.535959243774357 ], [ -70.692756652832031, -9.535490036010742 ], [ -70.692062377929631, -9.535229682922363 ], [ -70.691337585449219, -9.535309791564941 ], [ -70.690399169921875, -9.535709381103459 ], [ -70.689186096191349, -9.536708831787109 ], [ -70.687911987304688, -9.536579132080021 ], [ -70.687538146972656, -9.535929679870605 ], [ -70.687522888183594, -9.535380363464299 ], [ -70.6884765625, -9.534158706665039 ], [ -70.687637329101562, -9.533329010009709 ], [ -70.686737060546818, -9.532830238342285 ], [ -70.684112548828125, -9.532399177551213 ], [ -70.683280944824162, -9.532978057861328 ], [ -70.682907104492131, -9.533719062805119 ], [ -70.6820068359375, -9.534648895263615 ], [ -70.680938720703125, -9.534749031066895 ], [ -70.679092407226506, -9.534429550170842 ], [ -70.678459167480469, -9.533550262451172 ], [ -70.678550720214844, -9.532720565795785 ], [ -70.678840637207031, -9.532479286193791 ], [ -70.681053161621094, -9.532709121704045 ], [ -70.681526184082031, -9.532130241394043 ], [ -70.681327819824219, -9.531328201293945 ], [ -70.679786682128906, -9.530468940734806 ], [ -70.677276611328068, -9.529559135437012 ], [ -70.676246643066349, -9.529621124267464 ], [ -70.675148010253906, -9.530090332031193 ], [ -70.674690246581974, -9.530019760131779 ], [ -70.674331665039006, -9.529719352722168 ], [ -70.674423217773381, -9.528268814086914 ], [ -70.674049377441349, -9.527969360351506 ], [ -70.673667907714787, -9.527979850769043 ], [ -70.672950744628906, -9.528689384460449 ], [ -70.672538757324219, -9.528738975524789 ], [ -70.672348022460938, -9.527130126953068 ], [ -70.672126770019474, -9.52672004699707 ], [ -70.668685913085881, -9.523650169372502 ], [ -70.665756225585881, -9.522000312805119 ], [ -70.665611267089844, -9.52144813537592 ], [ -70.665870666503906, -9.519859313964787 ], [ -70.665252685546818, -9.519168853759766 ], [ -70.664230346679631, -9.519289970397892 ], [ -70.663688659667969, -9.519880294799805 ], [ -70.663810729980469, -9.521148681640625 ], [ -70.664558410644531, -9.52311897277832 ], [ -70.664726257324219, -9.525139808654728 ], [ -70.664176940917969, -9.526100158691406 ], [ -70.663398742675781, -9.52632999420166 ], [ -70.662857055664062, -9.526159286499023 ], [ -70.662612915038949, -9.525787353515568 ], [ -70.663017272949219, -9.524290084838867 ], [ -70.662956237792969, -9.523198127746582 ], [ -70.662460327148438, -9.522530555725098 ], [ -70.661407470703125, -9.522168159484863 ], [ -70.660552978515625, -9.521430015563965 ], [ -70.659736633300724, -9.518230438232422 ], [ -70.658599853515568, -9.516748428344727 ], [ -70.657516479492188, -9.516759872436467 ], [ -70.655517578125, -9.518719673156738 ], [ -70.654891967773324, -9.519339561462402 ], [ -70.654136657714844, -9.519378662109375 ], [ -70.653999328613224, -9.519309997558537 ], [ -70.653488159179688, -9.519049644470215 ], [ -70.653091430664062, -9.518319129943848 ], [ -70.653266906738168, -9.517709732055664 ], [ -70.653312683105469, -9.517568588256836 ], [ -70.654029846191293, -9.51707935333252 ], [ -70.654167175292969, -9.516981124877873 ], [ -70.655181884765625, -9.516830444335881 ], [ -70.656501770019474, -9.51619911193842 ], [ -70.657035827636719, -9.515569686889648 ], [ -70.657157897949162, -9.514670372009277 ], [ -70.656318664550668, -9.513129234313965 ], [ -70.654525756835938, -9.511268615722656 ], [ -70.653968811035156, -9.511299133300724 ], [ -70.653938293456918, -9.513860702514648 ], [ -70.653236389160099, -9.514559745788574 ], [ -70.652458190917969, -9.514360427856445 ], [ -70.650466918945256, -9.512299537658691 ], [ -70.650466918945256, -9.508728027343693 ], [ -70.650115966796818, -9.506920814514103 ], [ -70.650138854980469, -9.50507926940918 ], [ -70.650390624999943, -9.504500389099064 ], [ -70.652000427246037, -9.502599716186523 ], [ -70.6524658203125, -9.50109958648676 ], [ -70.652236938476562, -9.500409126281738 ], [ -70.651748657226562, -9.500020027160645 ], [ -70.650253295898438, -9.50108814239502 ], [ -70.649887084960938, -9.501130104064828 ], [ -70.649360656738168, -9.500389099121094 ], [ -70.649932861328011, -9.499648094177189 ], [ -70.649749755859375, -9.498770713806096 ], [ -70.64898681640625, -9.498449325561467 ], [ -70.648056030273438, -9.498478889465332 ], [ -70.644927978515625, -9.500589370727539 ], [ -70.643989562988224, -9.500928878784123 ], [ -70.6431884765625, -9.500764846801701 ], [ -70.642906188964844, -9.500600814819336 ], [ -70.642433166503906, -9.500110626220703 ], [ -70.642341613769531, -9.499629974365234 ], [ -70.642440795898438, -9.499469757080021 ], [ -70.642532348632812, -9.499338150024357 ], [ -70.643463134765625, -9.49893856048584 ], [ -70.645492553710938, -9.498698234557992 ], [ -70.646217346191406, -9.498109817504883 ], [ -70.646713256835938, -9.497329711914062 ], [ -70.646553039550781, -9.496699333190918 ], [ -70.645942687988281, -9.496129035949707 ], [ -70.643959045410156, -9.495379447937012 ], [ -70.643623352050724, -9.495049476623535 ], [ -70.643058776855412, -9.494979858398381 ], [ -70.641601562499943, -9.496079444885254 ], [ -70.640876770019531, -9.496789932250977 ], [ -70.639945983886719, -9.497709274291935 ], [ -70.638000488281193, -9.500228881835881 ], [ -70.63739013671875, -9.501770019531193 ], [ -70.636787414550781, -9.501899719238281 ], [ -70.636131286621094, -9.501409530639592 ], [ -70.635513305664006, -9.499859809875431 ], [ -70.637222290039006, -9.497528076171875 ], [ -70.63720703125, -9.49661922454834 ], [ -70.636787414550781, -9.495499610900822 ], [ -70.636352539062443, -9.495000839233398 ], [ -70.636253356933594, -9.494889259338379 ], [ -70.63507080078125, -9.494569778442326 ], [ -70.63433837890625, -9.494559288024902 ], [ -70.633682250976506, -9.494828224182072 ], [ -70.633277893066406, -9.495000839233398 ], [ -70.632865905761719, -9.494969367980957 ], [ -70.63165283203125, -9.493779182434025 ], [ -70.631233215331974, -9.492778778076115 ], [ -70.631370544433594, -9.492250442504826 ], [ -70.631790161132756, -9.491860389709416 ], [ -70.634239196777344, -9.491009712219181 ], [ -70.635147094726449, -9.490358352661076 ], [ -70.635536193847656, -9.489649772644043 ], [ -70.635772705078125, -9.488100051879883 ], [ -70.636207580566406, -9.48760986328125 ], [ -70.637046813964787, -9.486667633056641 ], [ -70.637161254882812, -9.48585033416748 ], [ -70.636756896972599, -9.485340118408146 ], [ -70.636177062988224, -9.485089302062931 ], [ -70.63533782958973, -9.484999656677246 ], [ -70.634529113769531, -9.485138893127441 ], [ -70.633392333984375, -9.485330581665039 ], [ -70.63250732421875, -9.484748840332031 ], [ -70.632347106933537, -9.484258651733342 ], [ -70.632125854492188, -9.483608245849609 ], [ -70.632347106933537, -9.482487678527832 ], [ -70.632827758789006, -9.480099678039551 ], [ -70.632682800292969, -9.479450225830021 ], [ -70.632217407226562, -9.479010581970215 ], [ -70.631790161132756, -9.478830337524357 ], [ -70.629226684570256, -9.478769302368164 ], [ -70.627998352050668, -9.478738784789982 ], [ -70.627281188964844, -9.47842884063715 ], [ -70.627059936523438, -9.478338241577092 ], [ -70.625770568847599, -9.4772691726684 ], [ -70.625030517578068, -9.476088523864689 ], [ -70.625038146972543, -9.475078582763672 ], [ -70.62506103515625, -9.471409797668457 ], [ -70.62457275390625, -9.470219612121525 ], [ -70.623626708984375, -9.46945858001709 ], [ -70.622726440429631, -9.469279289245605 ], [ -70.621452331542969, -9.469379425048828 ], [ -70.620216369628906, -9.470828056335392 ], [ -70.619781494140568, -9.471349716186523 ], [ -70.617973327636662, -9.474558830261174 ], [ -70.617202758789006, -9.475250244140568 ], [ -70.61669921875, -9.475099563598576 ], [ -70.616439819335881, -9.474710464477482 ], [ -70.616531372070256, -9.473528861999512 ], [ -70.616867065429688, -9.47262001037592 ], [ -70.618118286132812, -9.471019744873047 ], [ -70.618110656738281, -9.470099449157715 ], [ -70.617286682128849, -9.469348907470589 ], [ -70.615257263183594, -9.468579292297306 ], [ -70.613471984863224, -9.467900276184082 ], [ -70.612846374511719, -9.467229843139648 ], [ -70.612876892089844, -9.466669082641602 ], [ -70.613632202148438, -9.465419769287053 ], [ -70.613693237304574, -9.465080261230469 ], [ -70.613990783691406, -9.463438987731934 ], [ -70.613487243652287, -9.462138175964299 ], [ -70.6121826171875, -9.460139274597111 ], [ -70.612098693847656, -9.45884895324707 ], [ -70.612312316894531, -9.457390785217285 ], [ -70.611862182617131, -9.45637035369873 ], [ -70.610977172851562, -9.456231117248535 ], [ -70.609680175781193, -9.456469535827637 ], [ -70.609008789062443, -9.457098960876408 ], [ -70.608322143554631, -9.458299636840763 ], [ -70.607551574706974, -9.458820343017578 ], [ -70.606887817382756, -9.458489418029728 ], [ -70.606170654296875, -9.457098960876408 ], [ -70.60549163818348, -9.456620216369629 ], [ -70.604881286621037, -9.456959724426213 ], [ -70.603866577148324, -9.458409309387207 ], [ -70.60296630859375, -9.459189414977971 ], [ -70.602157592773438, -9.458988189697266 ], [ -70.6009521484375, -9.457999229431152 ], [ -70.600128173828068, -9.457859992980957 ], [ -70.599395751953125, -9.458450317382756 ], [ -70.598838806152344, -9.459690093994084 ], [ -70.598457336425781, -9.45999813079834 ], [ -70.598106384277344, -9.459930419921875 ], [ -70.597602844238281, -9.458999633789062 ], [ -70.5965576171875, -9.458089828491211 ], [ -70.596443176269531, -9.457718849182072 ], [ -70.596839904785156, -9.457110404968205 ], [ -70.598167419433594, -9.456718444824219 ], [ -70.598869323730469, -9.456008911132812 ], [ -70.598838806152344, -9.455619812011719 ], [ -70.598800659179631, -9.455108642578068 ], [ -70.597412109375, -9.454380035400391 ], [ -70.596641540527344, -9.453399658203068 ], [ -70.59674072265625, -9.452948570251465 ], [ -70.597892761230469, -9.452358245849553 ], [ -70.598358154296875, -9.451779365539551 ], [ -70.598182678222656, -9.449549674987736 ], [ -70.598052978515511, -9.447930335998535 ], [ -70.597709655761719, -9.447499275207463 ], [ -70.597152709960938, -9.447540283203125 ], [ -70.596420288085881, -9.448398590087891 ], [ -70.595863342285156, -9.44906044006342 ], [ -70.595191955566293, -9.448760032653809 ], [ -70.594917297363281, -9.448638916015568 ], [ -70.594711303710824, -9.448119163513127 ], [ -70.59521484375, -9.44751071929926 ], [ -70.596466064453125, -9.446728706359863 ], [ -70.597518920898438, -9.445318222045898 ], [ -70.597633361816349, -9.443299293518066 ], [ -70.597267150878849, -9.442258834838867 ], [ -70.593292236328125, -9.440098762512207 ], [ -70.591735839843693, -9.440059661865178 ], [ -70.588836669921875, -9.442478179931641 ], [ -70.588417053222543, -9.443069458007812 ], [ -70.588600158691349, -9.443670272827148 ], [ -70.589820861816349, -9.444239616393986 ], [ -70.590415954589787, -9.445170402526799 ], [ -70.590446472167969, -9.445449829101562 ], [ -70.590019226074162, -9.446069717407227 ], [ -70.589286804199219, -9.446149826049805 ], [ -70.588111877441349, -9.4454088211059 ], [ -70.586662292480469, -9.443670272827148 ], [ -70.584739685058594, -9.442398071289062 ], [ -70.583526611328068, -9.441600799560547 ], [ -70.580688476562443, -9.438698768615723 ], [ -70.579856872558594, -9.438478469848576 ], [ -70.578361511230469, -9.438959121704045 ], [ -70.577651977539062, -9.438758850097656 ], [ -70.576576232910099, -9.437609672546387 ], [ -70.575271606445312, -9.435079574584961 ], [ -70.574623107910156, -9.434720039367619 ], [ -70.574043273925781, -9.43488883972168 ], [ -70.573127746581974, -9.435949325561523 ], [ -70.572837829589787, -9.437760353088379 ], [ -70.572700500488281, -9.438058853149414 ], [ -70.572402954101562, -9.438678741455078 ], [ -70.571540832519418, -9.439240455627441 ], [ -70.571197509765625, -9.439168930053711 ], [ -70.5709228515625, -9.439119338989258 ], [ -70.570365905761662, -9.438478469848576 ], [ -70.570320129394531, -9.437970161437931 ], [ -70.570259094238281, -9.43738937377924 ], [ -70.5703125, -9.437199592590275 ], [ -70.570671081542912, -9.435700416564885 ], [ -70.571449279785156, -9.433929443359375 ], [ -70.571357727050781, -9.433029174804688 ], [ -70.570579528808537, -9.43279933929432 ], [ -70.568702697753906, -9.433979034423828 ], [ -70.567817687988168, -9.434219360351506 ], [ -70.5673828125, -9.43361854553217 ], [ -70.567329406738224, -9.431599617004338 ], [ -70.566452026367131, -9.43130970001215 ], [ -70.566047668457031, -9.431479454040527 ], [ -70.565742492675781, -9.431960105895996 ], [ -70.565757751464844, -9.433329582214355 ], [ -70.565376281738281, -9.433659553527832 ], [ -70.564628601074219, -9.432929039001465 ], [ -70.563301086425724, -9.429900169372559 ], [ -70.562843322753849, -9.429329872131348 ], [ -70.561981201171818, -9.429091453552246 ], [ -70.561111450195256, -9.429719924926701 ], [ -70.560791015625, -9.431818962097111 ], [ -70.55938720703125, -9.433158874511719 ], [ -70.560012817382812, -9.434390068054142 ], [ -70.559776306152287, -9.434880256652832 ], [ -70.558982849121094, -9.434679031372013 ], [ -70.557182312011719, -9.433090209960881 ], [ -70.555587768554631, -9.432358741760197 ], [ -70.554946899413949, -9.432518005371037 ], [ -70.554306030273438, -9.433199882507324 ], [ -70.552375793457031, -9.433029174804688 ], [ -70.550788879394531, -9.434560775756779 ], [ -70.550247192382756, -9.434759140014592 ], [ -70.549560546875, -9.434188842773438 ], [ -70.548736572265568, -9.43214035034174 ], [ -70.5487060546875, -9.431500434875431 ], [ -70.547996520996094, -9.429308891296387 ], [ -70.548072814941349, -9.427388191223088 ], [ -70.547462463378906, -9.426809310913086 ], [ -70.546516418456974, -9.426820755004883 ], [ -70.545669555664006, -9.42754077911377 ], [ -70.544532775878849, -9.429838180541992 ], [ -70.543266296386719, -9.431069374084473 ], [ -70.541938781738224, -9.431730270385742 ], [ -70.539108276367131, -9.432198524475098 ], [ -70.538330078124943, -9.432760238647404 ], [ -70.538238525390568, -9.4336900711059 ], [ -70.539169311523438, -9.436039924621582 ], [ -70.539543151855469, -9.436979293823242 ], [ -70.539100646972599, -9.437619209289551 ], [ -70.538810729980412, -9.437519073486328 ], [ -70.53835296630848, -9.437368392944336 ], [ -70.5377197265625, -9.436790466308594 ], [ -70.536842346191406, -9.435979843139648 ], [ -70.535087585449162, -9.434369087219181 ], [ -70.529899597167969, -9.430879592895508 ], [ -70.528671264648438, -9.429489135742188 ], [ -70.527786254882812, -9.427888870239201 ], [ -70.526512145996037, -9.427739143371582 ], [ -70.525871276855469, -9.428119659423771 ], [ -70.525337219238281, -9.428878784179631 ], [ -70.525291442871094, -9.430148124694824 ], [ -70.525856018066293, -9.431079864501896 ], [ -70.527236938476562, -9.43203067779541 ], [ -70.528236389160099, -9.433008193969727 ], [ -70.528907775878793, -9.43418025970459 ], [ -70.528861999511719, -9.434318542480412 ], [ -70.528640747070312, -9.434959411621094 ], [ -70.527702331542969, -9.436238288879395 ], [ -70.526901245117131, -9.436999320983887 ], [ -70.526359558105469, -9.437170028686523 ], [ -70.525848388671818, -9.436520576477051 ], [ -70.525833129882756, -9.435228347778263 ], [ -70.525581359863281, -9.434908866882324 ], [ -70.523826599121037, -9.434590339660645 ], [ -70.52197265625, -9.434260368347168 ], [ -70.520957946777287, -9.433760643005371 ], [ -70.520271301269531, -9.433058738708439 ], [ -70.520156860351562, -9.432609558105412 ], [ -70.520317077636662, -9.432048797607365 ], [ -70.521949768066293, -9.430279731750488 ], [ -70.522056579589844, -9.429598808288574 ], [ -70.521736145019474, -9.429149627685547 ], [ -70.519752502441293, -9.428698539733773 ], [ -70.517295837402344, -9.427068710327148 ], [ -70.515930175781193, -9.427409172058105 ], [ -70.513465881347656, -9.425289154052621 ], [ -70.510551452636719, -9.423508644104004 ], [ -70.507438659667912, -9.422599792480412 ], [ -70.506668090820256, -9.42257022857666 ], [ -70.506469726562443, -9.423139572143498 ], [ -70.507263183593636, -9.423918724060002 ], [ -70.507652282714844, -9.424638748168888 ], [ -70.507682800292969, -9.425200462341309 ], [ -70.507186889648438, -9.425609588623047 ], [ -70.506439208984375, -9.425090789794865 ], [ -70.5054931640625, -9.423208236694279 ], [ -70.504417419433594, -9.42296028137207 ], [ -70.503929138183594, -9.423500061035156 ], [ -70.503807067871037, -9.426528930663949 ], [ -70.503196716308594, -9.427121162414494 ], [ -70.501686096191406, -9.426448822021484 ], [ -70.499671936035156, -9.426259994506779 ], [ -70.498771667480355, -9.425609588623047 ], [ -70.497833251953125, -9.424128532409668 ], [ -70.497108459472656, -9.42393970489502 ], [ -70.496391296386605, -9.424019813537598 ], [ -70.495758056640625, -9.425369262695256 ], [ -70.495170593261719, -9.427688598632812 ], [ -70.495185852050781, -9.428329467773381 ], [ -70.494461059570256, -9.42999076843256 ], [ -70.494743347167912, -9.431428909301701 ], [ -70.494987487792969, -9.436479568481388 ], [ -70.495506286621037, -9.438429832458496 ], [ -70.496696472167969, -9.44092845916748 ], [ -70.498237609863281, -9.442519187927189 ], [ -70.501228332519474, -9.443988800048828 ], [ -70.503883361816406, -9.444809913635254 ], [ -70.504280090331974, -9.444869041442871 ], [ -70.508895874023438, -9.44550895690918 ], [ -70.509925842285099, -9.445649147033691 ], [ -70.511222839355469, -9.446389198303109 ], [ -70.511428833007756, -9.446619033813477 ], [ -70.511840820312386, -9.447068214416504 ], [ -70.512046813964844, -9.448698043823185 ], [ -70.511817932128849, -9.450149536132756 ], [ -70.510940551757812, -9.451449394226074 ], [ -70.509338378906193, -9.45380973815918 ], [ -70.508392333984318, -9.455709457397461 ], [ -70.506721496582031, -9.457538604736328 ], [ -70.505470275878906, -9.459809303283635 ], [ -70.505203247070312, -9.461810111999512 ], [ -70.505691528320312, -9.463088035583496 ], [ -70.507247924804631, -9.464268684387207 ], [ -70.508346557617188, -9.464740753173771 ], [ -70.512130737304688, -9.465089797973576 ], [ -70.512916564941406, -9.465349197387695 ], [ -70.514396667480412, -9.465298652648926 ], [ -70.515060424804631, -9.464799880981388 ], [ -70.515419006347656, -9.46405029296875 ], [ -70.515396118164062, -9.461477279663029 ], [ -70.515106201171875, -9.459819793701172 ], [ -70.515327453613281, -9.459168434142953 ], [ -70.516586303710881, -9.457769393920898 ], [ -70.517982482910156, -9.457281112670842 ], [ -70.520668029785156, -9.457080841064453 ], [ -70.523033142089844, -9.457489013671818 ], [ -70.523139953613281, -9.457550048828125 ], [ -70.524085998535156, -9.458040237426701 ], [ -70.524826049804688, -9.458748817443848 ], [ -70.525177001953068, -9.459768295288086 ], [ -70.525047302246094, -9.461338043212777 ], [ -70.524368286132812, -9.462259292602539 ], [ -70.523483276367188, -9.463478088378906 ], [ -70.523078918456974, -9.464998245239201 ], [ -70.522529602050781, -9.466070175170898 ], [ -70.522399902343693, -9.470859527587834 ], [ -70.522377014160156, -9.47146034240717 ], [ -70.522331237792855, -9.472587585449162 ], [ -70.5216064453125, -9.475049018859863 ], [ -70.520011901855412, -9.476929664611816 ], [ -70.516258239746094, -9.480250358581543 ], [ -70.514877319335881, -9.481749534606934 ], [ -70.51241302490223, -9.484740257263127 ], [ -70.510696411132699, -9.487250328063908 ], [ -70.507972717285156, -9.489879608154297 ], [ -70.506576538085881, -9.491588592529297 ], [ -70.505737304687386, -9.493200302124023 ], [ -70.504592895507699, -9.494528770446777 ], [ -70.504272460937443, -9.495289802551213 ], [ -70.504150390625, -9.497117996215763 ], [ -70.50531005859375, -9.503329277038574 ], [ -70.505798339843693, -9.504618644714355 ], [ -70.506286621093693, -9.505289077758789 ], [ -70.506980895996094, -9.505758285522461 ], [ -70.50823974609375, -9.505578041076603 ], [ -70.509857177734375, -9.503828048706055 ], [ -70.510780334472599, -9.501609802246094 ], [ -70.511146545410099, -9.498679161071721 ], [ -70.510688781738224, -9.495620727539062 ], [ -70.511009216308594, -9.493638038635254 ], [ -70.512031555175668, -9.492708206176758 ], [ -70.513786315917969, -9.49252986907959 ], [ -70.514869689941349, -9.492719650268555 ], [ -70.516716003417969, -9.493769645690918 ], [ -70.517662048339844, -9.495458602905273 ], [ -70.517906188964787, -9.496350288391056 ], [ -70.517906188964787, -9.497709274291935 ], [ -70.517669677734375, -9.499898910522404 ], [ -70.518089294433594, -9.501189231872559 ], [ -70.519546508789006, -9.503528594970703 ], [ -70.521827697753849, -9.505418777465763 ], [ -70.522895812988224, -9.50596809387207 ], [ -70.524002075195312, -9.506020545959473 ], [ -70.526756286621094, -9.502939224243107 ], [ -70.528480529785156, -9.50225830078125 ], [ -70.530296325683594, -9.502549171447697 ], [ -70.531532287597656, -9.503662109374943 ], [ -70.53192138671875, -9.504798889160099 ], [ -70.531906127929688, -9.507189750671387 ], [ -70.531455993652287, -9.508500099182129 ], [ -70.530158996582031, -9.51016902923584 ], [ -70.530021667480412, -9.511528968811035 ], [ -70.530746459960938, -9.514859199523869 ], [ -70.531806945800781, -9.516148567199707 ], [ -70.533226013183594, -9.516748428344727 ], [ -70.535369873046818, -9.516669273376465 ], [ -70.537818908691406, -9.515590667724553 ], [ -70.539718627929688, -9.514219284057504 ], [ -70.540580749511719, -9.513599395751839 ], [ -70.541656494140568, -9.513299942016602 ], [ -70.543228149414062, -9.513339042663574 ], [ -70.544067382812443, -9.513640403747502 ], [ -70.544212341308594, -9.513759613037053 ], [ -70.544998168945256, -9.51442813873291 ], [ -70.54583740234375, -9.515528678894043 ], [ -70.546180725097656, -9.516669273376465 ], [ -70.547805786132812, -9.519880294799805 ], [ -70.547828674316406, -9.521899223327637 ], [ -70.547851562499943, -9.524099349975586 ], [ -70.547332763671875, -9.526239395141602 ], [ -70.546913146972599, -9.527058601379338 ], [ -70.546241760253849, -9.52772045135498 ], [ -70.542022705078125, -9.528148651123047 ], [ -70.540191650390625, -9.528809547424316 ], [ -70.539360046386719, -9.530008316040039 ], [ -70.538803100585881, -9.532038688659668 ], [ -70.538810729980412, -9.533511161804199 ], [ -70.539672851562443, -9.535460472106934 ], [ -70.541366577148381, -9.537269592285156 ], [ -70.54293060302723, -9.538268089294377 ], [ -70.544296264648438, -9.538799285888672 ], [ -70.546218872070312, -9.539179801940918 ], [ -70.554542541503849, -9.539628982543945 ], [ -70.556259155273381, -9.538940429687443 ], [ -70.558021545410156, -9.537759780883732 ], [ -70.560989379882812, -9.534609794616699 ], [ -70.562751770019474, -9.532138824462891 ], [ -70.564376831054631, -9.530920028686523 ], [ -70.565460205078125, -9.530749320983887 ], [ -70.567611694335881, -9.530928611755314 ], [ -70.56887054443348, -9.531558036804199 ], [ -70.569107055664062, -9.531728744506836 ], [ -70.570816040039062, -9.532938957214355 ], [ -70.570960998535099, -9.533040046691895 ], [ -70.5712890625, -9.533799171447754 ], [ -70.571067810058594, -9.534808158874455 ], [ -70.570999145507812, -9.535129547119084 ], [ -70.570709228515625, -9.535399436950627 ], [ -70.569496154785156, -9.5364990234375 ], [ -70.565528869628793, -9.538848876953068 ], [ -70.564636230468693, -9.539919853210449 ], [ -70.564720153808594, -9.540728569030705 ], [ -70.564537048339844, -9.540968894958496 ], [ -70.564346313476562, -9.541219711303711 ], [ -70.564537048339844, -9.54285812377924 ], [ -70.565277099609375, -9.543728828430119 ], [ -70.567878723144474, -9.54679012298584 ], [ -70.567977905273381, -9.546998977661076 ], [ -70.568817138671875, -9.548800468444824 ], [ -70.569473266601562, -9.550799369812012 ], [ -70.569610595703068, -9.552947998046875 ], [ -70.569160461425781, -9.554638862609863 ], [ -70.568611145019531, -9.555769920349121 ], [ -70.567131042480412, -9.557298660278263 ], [ -70.566032409667969, -9.55796909332264 ], [ -70.562347412109318, -9.558028221130371 ], [ -70.560501098632812, -9.558059692382812 ], [ -70.559341430664062, -9.558629989623967 ], [ -70.557640075683594, -9.559889793395939 ], [ -70.556297302246094, -9.56128978729248 ], [ -70.555427551269531, -9.562580108642578 ], [ -70.554702758789062, -9.564469337463379 ], [ -70.553916931152344, -9.567790031433105 ], [ -70.553970336914006, -9.569449424743596 ], [ -70.554756164550668, -9.571309089660588 ], [ -70.555870056152287, -9.573118209838867 ], [ -70.557502746581974, -9.574489593505859 ], [ -70.55877685546875, -9.57490062713623 ], [ -70.559761047363281, -9.57472991943348 ], [ -70.561416625976506, -9.574448585510197 ], [ -70.562812805175781, -9.57456111907959 ], [ -70.567192077636719, -9.572849273681641 ], [ -70.568672180175724, -9.571907997131348 ], [ -70.570503234863281, -9.570210456848145 ], [ -70.571968078613281, -9.567668914794865 ], [ -70.573959350585938, -9.565020561218262 ], [ -70.574806213378906, -9.564318656921387 ], [ -70.575942993164062, -9.563899040222111 ], [ -70.577598571777344, -9.563759803771916 ], [ -70.57879638671875, -9.564208984374943 ], [ -70.580368041992188, -9.56521034240717 ], [ -70.580558776855469, -9.565389633178711 ], [ -70.58251953125, -9.567239761352482 ], [ -70.584289550781193, -9.567990303039551 ], [ -70.586311340331974, -9.568029403686523 ], [ -70.588302612304631, -9.566868782043457 ], [ -70.588600158691349, -9.566478729248047 ], [ -70.588920593261719, -9.566068649291935 ], [ -70.589073181152287, -9.565448760986271 ], [ -70.588783264160099, -9.562990188598633 ], [ -70.585906982421818, -9.557901382446289 ], [ -70.585166931152287, -9.556350708007812 ], [ -70.585121154785156, -9.55552959442133 ], [ -70.585533142089787, -9.552880287170353 ], [ -70.587196350097656, -9.550128936767578 ], [ -70.588180541992188, -9.549478530883732 ], [ -70.590156555175781, -9.548669815063477 ], [ -70.592002868652344, -9.548610687255859 ], [ -70.593086242675724, -9.548830032348576 ], [ -70.594589233398381, -9.549550056457463 ], [ -70.597335815429688, -9.552180290222111 ], [ -70.598617553710881, -9.554089546203613 ], [ -70.599678039550781, -9.556629180908203 ], [ -70.600067138671875, -9.558149337768498 ], [ -70.600761413574219, -9.562438011169434 ], [ -70.60064697265625, -9.563749313354492 ], [ -70.5994873046875, -9.564717292785588 ], [ -70.594680786132756, -9.56657886505127 ], [ -70.593467712402287, -9.567890167236328 ], [ -70.593208312988281, -9.568280220031738 ], [ -70.59197998046875, -9.570100784301701 ], [ -70.591598510742188, -9.570358276367188 ], [ -70.590606689453068, -9.571030616760197 ], [ -70.588088989257812, -9.572150230407715 ], [ -70.5865478515625, -9.573619842529297 ], [ -70.586288452148381, -9.574198722839299 ], [ -70.586349487304688, -9.576869964599609 ], [ -70.587615966796875, -9.580507278442383 ], [ -70.587501525878906, -9.581059455871582 ], [ -70.586967468261662, -9.581581115722599 ], [ -70.586837768554688, -9.581989288330078 ], [ -70.587257385253849, -9.583419799804688 ], [ -70.587440490722599, -9.585069656372013 ], [ -70.5877685546875, -9.585359573364201 ], [ -70.589218139648438, -9.585149765014592 ], [ -70.589828491210881, -9.585590362548771 ], [ -70.590026855468693, -9.585658073425236 ], [ -70.590568542480469, -9.585828781127873 ], [ -70.591072082519474, -9.585988998413086 ], [ -70.591361999511662, -9.58654880523676 ], [ -70.591239929199219, -9.587068557739201 ], [ -70.591102600097656, -9.587160110473576 ], [ -70.590690612792912, -9.587429046630859 ], [ -70.589729309081974, -9.587429046630859 ], [ -70.589286804199219, -9.587420463562012 ], [ -70.588661193847656, -9.587420463562012 ], [ -70.586662292480469, -9.587088584899846 ], [ -70.586456298828125, -9.588559150695744 ], [ -70.585632324218693, -9.589879035949707 ], [ -70.585670471191406, -9.590790748596191 ], [ -70.586830139160156, -9.591838836669922 ], [ -70.586921691894531, -9.59276008605957 ], [ -70.586936950683594, -9.592948913574219 ], [ -70.588180541992188, -9.594058990478459 ], [ -70.587699890136719, -9.594980239868107 ], [ -70.587966918945312, -9.595938682556096 ], [ -70.587966918945312, -9.597530364990234 ], [ -70.588516235351449, -9.598599433898926 ], [ -70.589691162109375, -9.600838661193848 ], [ -70.590087890625, -9.60161018371582 ], [ -70.590751647949219, -9.602120399475041 ], [ -70.591751098632756, -9.602268218994084 ], [ -70.592819213867188, -9.60315990447998 ], [ -70.594078063964844, -9.60338115692133 ], [ -70.594230651855412, -9.60368824005127 ], [ -70.594017028808537, -9.604019165039062 ], [ -70.594039916992131, -9.604829788208008 ], [ -70.594268798828125, -9.605008125305176 ], [ -70.594627380371094, -9.60498142242426 ], [ -70.595512390136719, -9.604308128356934 ], [ -70.59633636474598, -9.604439735412598 ], [ -70.597976684570312, -9.606190681457463 ], [ -70.598342895507812, -9.607427597045898 ], [ -70.597602844238281, -9.608230590820312 ], [ -70.597656249999943, -9.610078811645508 ], [ -70.596656799316406, -9.610669136047363 ], [ -70.596839904785156, -9.61198902130127 ], [ -70.596679687499943, -9.612469673156738 ], [ -70.593276977539006, -9.614789962768555 ], [ -70.592697143554631, -9.615468978881779 ], [ -70.592636108398438, -9.61649036407465 ], [ -70.593276977539006, -9.617810249328613 ], [ -70.592712402343636, -9.620229721069336 ], [ -70.593215942382812, -9.621068954467773 ], [ -70.593238830566406, -9.622449874877873 ], [ -70.592811584472656, -9.622500419616699 ], [ -70.591926574706974, -9.62199878692627 ], [ -70.591316223144531, -9.622138023376465 ], [ -70.591262817382756, -9.623049736022892 ], [ -70.591506958007812, -9.623937606811523 ], [ -70.590911865234375, -9.624699592590275 ], [ -70.591133117675781, -9.626338005065918 ], [ -70.590057373046875, -9.626470565795898 ], [ -70.589668273925781, -9.626740455627441 ], [ -70.589202880859375, -9.628787994384709 ], [ -70.588027954101506, -9.629599571228027 ], [ -70.587448120117131, -9.630319595336914 ], [ -70.587478637695312, -9.630878448486271 ], [ -70.588081359863281, -9.631898880004826 ], [ -70.588096618652287, -9.632469177246094 ], [ -70.587242126464787, -9.633528709411564 ], [ -70.583831787109318, -9.636770248413086 ], [ -70.583763122558594, -9.637508392333984 ], [ -70.584457397460938, -9.637749671936035 ], [ -70.584976196289006, -9.638278961181641 ], [ -70.585319519042969, -9.639518737792969 ], [ -70.585243225097599, -9.640338897705021 ], [ -70.584709167480469, -9.640968322753906 ], [ -70.583160400390568, -9.640878677368164 ], [ -70.5826416015625, -9.641770362853947 ], [ -70.581581115722656, -9.642798423766976 ], [ -70.579933166503793, -9.643338203430176 ], [ -70.579666137695312, -9.646529197692871 ], [ -70.578132629394531, -9.648099899291935 ], [ -70.577796936035099, -9.649338722229004 ], [ -70.57720947265625, -9.650190353393498 ], [ -70.576522827148438, -9.650169372558594 ], [ -70.575386047363281, -9.649100303649902 ], [ -70.574882507324219, -9.649490356445256 ], [ -70.574913024902344, -9.651409149169922 ], [ -70.574272155761662, -9.652509689331055 ], [ -70.575180053710938, -9.653988838195744 ], [ -70.573455810546875, -9.655190467834473 ], [ -70.573516845703068, -9.65556812286377 ], [ -70.574356079101562, -9.656409263610783 ], [ -70.572135925292969, -9.658328056335392 ], [ -70.572257995605469, -9.659469604492188 ], [ -70.570869445800668, -9.660388946533203 ], [ -70.570732116699219, -9.661100387573242 ], [ -70.569625854492131, -9.661578178405705 ], [ -70.569450378417969, -9.663558959960938 ], [ -70.567840576171875, -9.664318084716797 ], [ -70.567176818847656, -9.665090560912972 ], [ -70.566932678222599, -9.665669441223145 ], [ -70.566886901855469, -9.667399406433049 ], [ -70.566467285156193, -9.667638778686467 ], [ -70.565193176269531, -9.667769432067814 ], [ -70.564132690429688, -9.669060707092228 ], [ -70.563789367675724, -9.66917896270752 ], [ -70.563186645507812, -9.668780326843262 ], [ -70.562393188476562, -9.667230606079102 ], [ -70.561370849609375, -9.666788101196232 ], [ -70.560668945312386, -9.666979789733887 ], [ -70.560356140136662, -9.66786003112793 ], [ -70.559959411621094, -9.668229103088379 ], [ -70.559669494628906, -9.668208122253418 ], [ -70.558746337890568, -9.667458534240723 ], [ -70.558006286621094, -9.667279243469238 ], [ -70.556365966796818, -9.668099403381291 ], [ -70.553497314453068, -9.668208122253418 ], [ -70.5528564453125, -9.668877601623478 ], [ -70.552040100097656, -9.669070243835449 ], [ -70.551643371582031, -9.669439315795898 ], [ -70.551643371582031, -9.67216968536377 ], [ -70.55055999755848, -9.674009323120117 ], [ -70.550079345703011, -9.675969123840332 ], [ -70.548522949218693, -9.678997993469238 ], [ -70.547966003417912, -9.679268836975041 ], [ -70.546516418456974, -9.678297996520996 ], [ -70.545066833496094, -9.679718017578068 ], [ -70.543502807617074, -9.679699897766113 ], [ -70.542922973632756, -9.680159568786564 ], [ -70.541969299316349, -9.682840347290039 ], [ -70.540916442871037, -9.684009552001896 ], [ -70.540939331054688, -9.684388160705566 ], [ -70.541542053222656, -9.684638977050781 ], [ -70.541648864746094, -9.684989929199219 ], [ -70.541061401367188, -9.685570716857796 ], [ -70.540962219238281, -9.686580657958928 ], [ -70.539756774902287, -9.688799858093262 ], [ -70.539138793945312, -9.690919876098576 ], [ -70.537689208984375, -9.693148612976017 ], [ -70.537727355957031, -9.694169998168888 ], [ -70.538101196289062, -9.69528865814209 ], [ -70.537666320800724, -9.695770263671875 ], [ -70.53692626953125, -9.69578838348383 ], [ -70.536422729492131, -9.696219444274902 ], [ -70.536300659179688, -9.697118759155217 ], [ -70.536720275878849, -9.697910308837834 ], [ -70.536666870117188, -9.698279380798283 ], [ -70.535575866699162, -9.698958396911564 ], [ -70.535438537597656, -9.700030326843262 ], [ -70.533988952636719, -9.70154953002924 ], [ -70.534042358398381, -9.702769279479924 ], [ -70.534637451171875, -9.703908920288086 ], [ -70.534523010253849, -9.706108093261719 ], [ -70.53399658203125, -9.706727981567383 ], [ -70.532806396484318, -9.70647144317627 ], [ -70.532112121582031, -9.706898689269963 ], [ -70.531631469726562, -9.709239959716797 ], [ -70.53228759765625, -9.709758758544865 ], [ -70.532371520996094, -9.710199356078988 ], [ -70.531852722167912, -9.711178779602051 ], [ -70.531051635742188, -9.71177864074707 ], [ -70.531166076660099, -9.713060379028207 ], [ -70.530715942382756, -9.713259696960392 ], [ -70.529479980468636, -9.712469100952092 ], [ -70.528656005859375, -9.712319374084473 ], [ -70.527732849121037, -9.713359832763615 ], [ -70.526817321777344, -9.713398933410588 ], [ -70.526466369628906, -9.714420318603459 ], [ -70.52569580078125, -9.714849472045842 ], [ -70.525840759277287, -9.715479850769043 ], [ -70.526786804199162, -9.716368675231934 ], [ -70.527107238769531, -9.716158866882324 ], [ -70.527259826660099, -9.715551376342773 ], [ -70.528022766113224, -9.715639114379883 ], [ -70.528182983398438, -9.716058731079102 ], [ -70.527915954589844, -9.716608047485352 ], [ -70.528251647949219, -9.717178344726506 ], [ -70.529098510742074, -9.717160224914551 ], [ -70.529670715331918, -9.717739105224609 ], [ -70.529502868652344, -9.719010353088322 ], [ -70.528587341308537, -9.719388961791992 ], [ -70.527816772460938, -9.720430374145508 ], [ -70.527832031249943, -9.722909927368164 ], [ -70.527549743652287, -9.723698616027775 ], [ -70.527656555175724, -9.723990440368652 ], [ -70.528396606445256, -9.724208831787109 ], [ -70.528068542480469, -9.725640296936035 ], [ -70.529426574707031, -9.72614860534668 ], [ -70.52923583984375, -9.727680206298771 ], [ -70.530082702636719, -9.729118347167912 ], [ -70.530509948730412, -9.729459762573185 ], [ -70.531501770019531, -9.729480743408146 ], [ -70.532508850097599, -9.730428695678711 ], [ -70.532546997070312, -9.732609748840332 ], [ -70.532867431640625, -9.732798576354924 ], [ -70.533752441406193, -9.732609748840332 ], [ -70.534095764160156, -9.733368873596191 ], [ -70.535133361816406, -9.734160423278695 ], [ -70.535377502441349, -9.734749794006291 ], [ -70.535285949706974, -9.735299110412598 ], [ -70.533622741699219, -9.736610412597656 ], [ -70.532936096191406, -9.737799644470215 ], [ -70.533058166503906, -9.739918708801213 ], [ -70.53399658203125, -9.741400718688908 ], [ -70.53399658203125, -9.742588043212891 ], [ -70.534393310546875, -9.743320465087834 ], [ -70.533950805664006, -9.7440185546875 ], [ -70.533111572265625, -9.744338035583439 ], [ -70.533088684081974, -9.745438575744572 ], [ -70.534141540527287, -9.746138572692871 ], [ -70.535133361816406, -9.747348785400391 ], [ -70.536476135253906, -9.7485094070434 ], [ -70.539192199706974, -9.749599456787053 ], [ -70.539810180664062, -9.750629425048828 ], [ -70.539688110351449, -9.751608848571721 ], [ -70.5399169921875, -9.752209663391056 ], [ -70.53997802734375, -9.753510475158691 ], [ -70.539886474609375, -9.754519462585449 ], [ -70.539810180664062, -9.755328178405705 ], [ -70.538558959960938, -9.757148742675724 ], [ -70.5384521484375, -9.758158683776799 ], [ -70.537612915039062, -9.759129524230957 ], [ -70.537277221679631, -9.760378837585392 ], [ -70.536697387695256, -9.760969161987305 ], [ -70.53692626953125, -9.763158798217773 ], [ -70.536598205566349, -9.763709068298283 ], [ -70.536621093749943, -9.764248847961312 ], [ -70.536956787109375, -9.764798164367619 ], [ -70.537033081054688, -9.765629768371582 ], [ -70.537727355957031, -9.766228675842228 ], [ -70.538139343261662, -9.767439842224064 ], [ -70.539840698242131, -9.768138885498047 ], [ -70.540863037109375, -9.769889831542969 ], [ -70.5428466796875, -9.771539688110352 ], [ -70.542945861816406, -9.77217960357666 ], [ -70.543395996093693, -9.772869110107365 ], [ -70.545669555664006, -9.774908065795898 ], [ -70.545883178710824, -9.775618553161564 ], [ -70.545883178710824, -9.777639389038086 ], [ -70.546310424804688, -9.778548240661621 ], [ -70.547416687011719, -9.779230117797795 ], [ -70.548652648925668, -9.77957820892334 ], [ -70.549980163574162, -9.780588150024414 ], [ -70.550621032714787, -9.781378746032715 ], [ -70.551620483398438, -9.783348083496094 ], [ -70.553909301757812, -9.785069465637207 ], [ -70.554702758789062, -9.786388397216797 ], [ -70.555740356445312, -9.787070274352971 ], [ -70.556777954101562, -9.78827953338623 ], [ -70.558616638183594, -9.788779258727971 ], [ -70.559776306152287, -9.789469718933049 ], [ -70.561851501464844, -9.789009094238224 ], [ -70.562606811523438, -9.789048194885254 ], [ -70.565505981445256, -9.786099433898926 ], [ -70.566452026367131, -9.786040306091195 ], [ -70.568641662597599, -9.784659385681152 ], [ -70.570343017578125, -9.784269332885685 ], [ -70.572708129882812, -9.781439781188908 ], [ -70.574661254882756, -9.780619621276855 ], [ -70.575408935546875, -9.779179573059082 ], [ -70.575630187988224, -9.778768539428597 ], [ -70.577156066894474, -9.778111457824707 ], [ -70.578628540039062, -9.778140068054199 ], [ -70.579666137695312, -9.779529571533203 ], [ -70.580802917480469, -9.780150413513184 ], [ -70.581329345703068, -9.780799865722599 ], [ -70.582916259765625, -9.781529426574707 ], [ -70.583763122558594, -9.783028602600041 ], [ -70.584121704101506, -9.783200263976994 ], [ -70.585502624511719, -9.783869743347168 ], [ -70.586990356445199, -9.785379409790039 ], [ -70.587089538574219, -9.786208152770939 ], [ -70.586959838867131, -9.786388397216797 ], [ -70.586723327636719, -9.786698341369629 ], [ -70.58685302734375, -9.788359642028809 ], [ -70.586349487304688, -9.789528846740723 ], [ -70.586402893066349, -9.790919303894043 ], [ -70.586616516113281, -9.791519165039062 ], [ -70.586402893066349, -9.793349266052189 ], [ -70.586982727050724, -9.794069290161133 ], [ -70.589256286621037, -9.795309066772461 ], [ -70.589866638183594, -9.796009063720703 ], [ -70.59023284912098, -9.797050476074219 ], [ -70.59023284912098, -9.799798965454102 ], [ -70.591789245605469, -9.802729606628304 ], [ -70.593109130859375, -9.803078651428223 ], [ -70.594367980957031, -9.802821159362736 ], [ -70.597633361816349, -9.801729202270451 ], [ -70.600082397460938, -9.800658226013184 ], [ -70.601226806640625, -9.800379753112793 ], [ -70.602226257324162, -9.800128936767578 ], [ -70.603530883789062, -9.800159454345646 ], [ -70.605972290039062, -9.800720214843693 ], [ -70.606887817382756, -9.800630569458008 ], [ -70.609222412109375, -9.80119800567627 ], [ -70.610687255859375, -9.80237865447998 ], [ -70.612953186035156, -9.805168151855469 ], [ -70.6131591796875, -9.806097984313965 ], [ -70.613601684570312, -9.808049201965332 ], [ -70.615242004394531, -9.810029983520451 ], [ -70.615966796874943, -9.81221961975092 ], [ -70.617233276367188, -9.813608169555664 ], [ -70.617881774902287, -9.815689086914006 ], [ -70.618270874023324, -9.817809104919434 ], [ -70.619369506835938, -9.819680213928223 ], [ -70.619888305663949, -9.820028305053654 ], [ -70.623573303222599, -9.821090698242188 ], [ -70.626976013183594, -9.821840286254826 ], [ -70.627319335937443, -9.822009086608887 ], [ -70.628723144531193, -9.822688102722168 ], [ -70.630058288574162, -9.823960304260254 ], [ -70.630340576171875, -9.825039863586426 ], [ -70.630241394042969, -9.826230049133244 ], [ -70.627281188964844, -9.83101844787592 ], [ -70.626876831054688, -9.832139968872013 ], [ -70.626701354980469, -9.833668708801213 ], [ -70.626708984375, -9.841328620910645 ], [ -70.626716613769531, -9.85059928894043 ], [ -70.626731872558537, -9.862188339233342 ], [ -70.626747131347599, -9.879849433898926 ], [ -70.631690979003849, -9.881199836730957 ], [ -70.635086059570312, -9.882888793945312 ], [ -70.637672424316406, -9.884828567504883 ], [ -70.639938354492188, -9.887639045715275 ], [ -70.640617370605469, -9.888919830322266 ], [ -70.640968322753793, -9.890269279479924 ], [ -70.641471862792969, -9.896679878234806 ], [ -70.643707275390568, -9.901020050048828 ], [ -70.645446777343636, -9.903160095214787 ], [ -70.647476196289062, -9.906769752502441 ], [ -70.648376464843693, -9.909860610961914 ], [ -70.648750305175724, -9.911848068237305 ], [ -70.648941040039006, -9.915219306945801 ], [ -70.649551391601449, -9.916879653930664 ], [ -70.650253295898438, -9.918350219726562 ], [ -70.651588439941406, -9.919768333435059 ], [ -70.654373168945312, -9.924199104309082 ], [ -70.655250549316349, -9.92560863494873 ], [ -70.655731201171818, -9.927469253540039 ], [ -70.655616760253849, -9.93040943145752 ], [ -70.654678344726506, -9.932880401611328 ], [ -70.654487609863224, -9.933389663696289 ], [ -70.653656005859375, -9.936779022216797 ], [ -70.652908325195312, -9.938369750976562 ], [ -70.652763366699162, -9.940840721130371 ], [ -70.652290344238224, -9.943070411682129 ], [ -70.652511596679688, -9.946288108825684 ], [ -70.652862548828068, -9.947999954223633 ], [ -70.654602050781136, -9.951958656311035 ], [ -70.655418395996094, -9.953219413757211 ], [ -70.655899047851562, -9.95396900177002 ], [ -70.660026550292912, -9.957939147949219 ], [ -70.662696838378849, -9.96006965637207 ], [ -70.664779663085881, -9.961448669433594 ], [ -70.667343139648438, -9.962258338928223 ], [ -70.668266296386719, -9.962860107421818 ], [ -70.669357299804631, -9.964109420776367 ], [ -70.670242309570199, -9.965728759765568 ], [ -70.672805786132756, -9.96837139129633 ], [ -70.673362731933537, -9.969549179077148 ], [ -70.684127807617188, -9.973189353942871 ], [ -70.690299987792969, -9.975939750671387 ], [ -70.6959228515625, -9.978968620300179 ], [ -70.704116821289062, -9.98378944396967 ], [ -70.713462829589844, -9.991180419921818 ], [ -70.719062805175724, -9.994868278503361 ], [ -70.726608276367074, -10.00032901763916 ], [ -70.729560852050668, -10.002718925476074 ], [ -70.730377197265625, -10.003829002380314 ], [ -70.731048583984375, -10.003899574279728 ], [ -70.735427856445312, -10.008000373840275 ], [ -70.736259460449219, -10.008208274841309 ], [ -70.741142272949219, -10.012769699096623 ], [ -70.744316101074162, -10.015069961547795 ], [ -70.761672973632756, -10.030550003051758 ], [ -70.771110534667912, -10.037929534911996 ], [ -70.775199890136719, -10.041689872741642 ], [ -70.782646179199162, -10.047109603881779 ], [ -70.791961669921875, -10.056359291076546 ], [ -70.796379089355412, -10.060408592224064 ], [ -70.807212829589844, -10.069719314575138 ], [ -70.809028625488281, -10.070719718933105 ], [ -70.811737060546818, -10.073199272155762 ], [ -70.816329956054631, -10.078048706054631 ], [ -70.817787170410156, -10.079848289489689 ], [ -70.819046020507812, -10.081768989562988 ], [ -70.821357727050781, -10.086270332336369 ], [ -70.823478698730412, -10.088700294494629 ], [ -70.823501586913949, -10.089609146118164 ], [ -70.826019287109375, -10.092908859252816 ], [ -70.826927185058537, -10.095271110534668 ], [ -70.828399658203125, -10.097308158874455 ], [ -70.828422546386662, -10.09822940826416 ], [ -70.830406188964844, -10.101868629455566 ], [ -70.834815979003849, -10.112488746643066 ], [ -70.838577270507812, -10.122358322143498 ], [ -70.839996337890511, -10.128849029541016 ], [ -70.842697143554688, -10.136910438537541 ], [ -70.843795776367131, -10.143479347229004 ], [ -70.849136352539006, -10.160829544067383 ], [ -70.850196838378849, -10.166240692138672 ], [ -70.850189208984318, -10.16808032989502 ], [ -70.850776672363168, -10.169818878173771 ], [ -70.850532531738281, -10.184508323669434 ], [ -70.851112365722656, -10.186809539794922 ], [ -70.850532531738281, -10.187789916992188 ], [ -70.850418090820312, -10.202469825744629 ], [ -70.850631713867188, -10.212579727172795 ], [ -70.851470947265625, -10.216629981994629 ], [ -70.852043151855469, -10.222808837890568 ], [ -70.852066040039062, -10.241868972778207 ], [ -70.852279663085881, -10.245538711547852 ], [ -70.852996826171875, -10.251008033752441 ], [ -70.853019714355469, -10.258588790893555 ], [ -70.853889465331974, -10.261440277099553 ], [ -70.854179382324162, -10.267868995666447 ], [ -70.855079650878906, -10.272369384765625 ], [ -70.855972290039062, -10.283529281616154 ], [ -70.862358093261719, -10.298410415649357 ], [ -70.867546081542912, -10.312308311462402 ], [ -70.878311157226506, -10.329998970031738 ], [ -70.8861083984375, -10.341909408569222 ], [ -70.889717102050781, -10.349800109863281 ], [ -70.891380310058537, -10.352568626403809 ], [ -70.894332885742131, -10.3560791015625 ], [ -70.897171020507812, -10.358988761901799 ], [ -70.908531188964787, -10.369568824768066 ], [ -70.918716430664062, -10.375788688659554 ], [ -70.923622131347599, -10.379079818725529 ], [ -70.928718566894531, -10.383029937744084 ], [ -70.93865966796875, -10.391419410705566 ], [ -70.949409484863281, -10.39727878570551 ], [ -70.95465087890625, -10.40040111541748 ], [ -70.958282470703125, -10.402970314025879 ], [ -70.965263366699219, -10.408529281616211 ], [ -70.970260620117131, -10.41427040100092 ], [ -70.976829528808537, -10.423450469970703 ], [ -70.979171752929688, -10.42598915100092 ], [ -70.991333007812443, -10.436989784240723 ], [ -70.993896484374943, -10.439928054809513 ], [ -71.005516052246094, -10.44904899597168 ], [ -71.00823974609375, -10.451889038085881 ], [ -71.01290130615223, -10.454448699951172 ], [ -71.015922546386662, -10.457290649414062 ], [ -71.017837524414006, -10.45856857299799 ], [ -71.029876708984261, -10.465889930725098 ], [ -71.035926818847656, -10.470149993896484 ], [ -71.045150756835938, -10.477080345153809 ], [ -71.051391601562443, -10.482439041137695 ], [ -71.057411193847599, -10.488828659057617 ], [ -71.060752868652287, -10.491999626159668 ], [ -71.066352844238281, -10.496088027954045 ], [ -71.072608947753906, -10.500028610229379 ], [ -71.077728271484318, -10.504698753356877 ], [ -71.079933166503849, -10.506379127502385 ], [ -71.084556579589844, -10.50940990447998 ], [ -71.090591430664006, -10.512840270996037 ], [ -71.101325988769531, -10.51823902130127 ], [ -71.103736877441406, -10.51908016204834 ], [ -71.109016418456974, -10.522398948669434 ], [ -71.111785888671818, -10.523550033569279 ], [ -71.121917724609375, -10.530829429626408 ], [ -71.127326965331974, -10.535150527954102 ], [ -71.130706787109375, -10.538369178771973 ], [ -71.138786315917855, -10.547229766845703 ], [ -71.142768859863224, -10.551708221435547 ], [ -71.146308898925724, -10.556260108947697 ], [ -71.150146484375, -10.559920310974064 ], [ -71.156692504882756, -10.567970275878849 ], [ -71.158500671386662, -10.570359230041447 ], [ -71.161056518554688, -10.574469566345215 ], [ -71.166137695312443, -10.580438613891602 ], [ -71.168907165527287, -10.584398269653263 ], [ -71.171035766601562, -10.587960243225098 ], [ -71.173950195312443, -10.593968391418457 ], [ -71.177520751953125, -10.598200798034668 ], [ -71.182472229003906, -10.605419158935547 ], [ -71.191818237304688, -10.6220703125 ], [ -71.203598022460881, -10.636858940124512 ], [ -71.21148681640625, -10.64495944976801 ], [ -71.213172912597543, -10.647129058837834 ], [ -71.219146728515568, -10.657629013061523 ], [ -71.2255859375, -10.671639442443791 ], [ -71.227439880371037, -10.674557685852051 ], [ -71.230110168456974, -10.682168006896973 ], [ -71.232177734375, -10.689949035644474 ], [ -71.234039306640568, -10.701750755310002 ], [ -71.235511779785156, -10.715469360351562 ], [ -71.235549926757756, -10.722608566284123 ], [ -71.236312866210881, -10.730149269104004 ], [ -71.236351013183594, -10.740497589111214 ], [ -71.236869812011719, -10.743358612060433 ], [ -71.237075805664006, -10.762439727783203 ], [ -71.238166809082031, -10.769259452819767 ], [ -71.238418579101506, -10.772450447082463 ], [ -71.238410949706974, -10.783260345458984 ], [ -71.239181518554631, -10.786389350891056 ], [ -71.239631652832031, -10.793039321899414 ], [ -71.240280151367188, -10.79689979553217 ], [ -71.243156433105469, -10.804908752441406 ], [ -71.243629455566406, -10.808560371398926 ], [ -71.246482849121094, -10.817558288574105 ], [ -71.248298645019531, -10.82252025604248 ], [ -71.249916076660156, -10.826328277587777 ], [ -71.254997253417969, -10.835630416870004 ], [ -71.259925842285156, -10.846540451049805 ], [ -71.261207580566349, -10.848428726196289 ], [ -71.263969421386662, -10.85164737701416 ], [ -71.269538879394531, -10.861470222473145 ], [ -71.270957946777287, -10.863280296325627 ], [ -71.273216247558537, -10.865579605102539 ], [ -71.281417846679631, -10.877558708190918 ], [ -71.285438537597599, -10.882320404052734 ], [ -71.289871215820312, -10.890390396118164 ], [ -71.291511535644531, -10.892338752746525 ], [ -71.291877746582031, -10.893649101257324 ], [ -71.295021057128906, -10.897927284240723 ], [ -71.297019958496094, -10.902069091796875 ], [ -71.301033020019531, -10.90742015838623 ], [ -71.301612854003906, -10.908920288085824 ], [ -71.308715820312443, -10.91741943359375 ], [ -71.313957214355412, -10.925809860229435 ], [ -71.322212219238281, -10.934848785400334 ], [ -71.322982788085938, -10.936248779296875 ], [ -71.3250732421875, -10.938090324401855 ], [ -71.325416564941293, -10.939038276672363 ], [ -71.329795837402287, -10.944398880004883 ], [ -71.333366394042969, -10.948018074035588 ], [ -71.336853027343693, -10.951040267944336 ], [ -71.34181976318348, -10.954439163207951 ], [ -71.344200134277287, -10.956640243530217 ], [ -71.347152709960881, -10.958868980407601 ], [ -71.352439880371094, -10.962189674377441 ], [ -71.357147216796818, -10.96466064453125 ], [ -71.361045837402344, -10.966139793395996 ], [ -71.364875793456974, -10.967069625854492 ], [ -71.371116638183594, -10.967630386352539 ], [ -71.3782958984375, -10.967928886413461 ], [ -71.378990173339787, -10.967910766601562 ], [ -71.38067626953125, -10.967128753662109 ], [ -71.386016845703125, -10.966910362243652 ], [ -71.389183044433537, -10.967559814453068 ], [ -71.403320312499943, -10.967538833618164 ], [ -71.40814208984375, -10.968209266662598 ], [ -71.415077209472656, -10.967768669128418 ], [ -71.416687011718636, -10.967458724975586 ], [ -71.421356201171761, -10.967399597167969 ], [ -71.427047729492131, -10.968020439147836 ], [ -71.434829711914062, -10.969319343566895 ], [ -71.439453124999943, -10.969598770141545 ], [ -71.444183349609375, -10.97080135345459 ], [ -71.446487426757812, -10.970819473266602 ], [ -71.464378356933594, -10.975260734558049 ], [ -71.466888427734375, -10.975668907165527 ], [ -71.472206115722656, -10.976138114929199 ], [ -71.475982666015568, -10.977269172668457 ], [ -71.480369567871037, -10.977638244628906 ], [ -71.486442565917969, -10.979140281677246 ], [ -71.490615844726562, -10.979140281677246 ], [ -71.497093200683594, -10.979739189147892 ], [ -71.499153137206974, -10.980339050292912 ], [ -71.502403259277287, -10.980330467224121 ], [ -71.507316589355469, -10.981728553771973 ], [ -71.516777038574219, -10.982499122619629 ], [ -71.522422790527287, -10.983868598937931 ], [ -71.541191101074219, -10.984619140624943 ], [ -71.549827575683594, -10.986359596252385 ], [ -71.571823120117131, -10.987659454345646 ], [ -71.573822021484318, -10.988249778747559 ], [ -71.582168579101562, -10.988579750061035 ], [ -71.584877014160099, -10.989178657531738 ], [ -71.609237670898438, -10.989609718322697 ], [ -71.616188049316349, -10.989410400390511 ], [ -71.621681213378906, -10.988530158996582 ], [ -71.628166198730469, -10.988259315490666 ], [ -71.630569458007756, -10.987399101257324 ], [ -71.636337280273438, -10.986859321594125 ], [ -71.640998840332031, -10.985450744628906 ], [ -71.64308929443348, -10.985499382019043 ], [ -71.648780822753849, -10.984389305114689 ], [ -71.652938842773438, -10.984089851379281 ], [ -71.655967712402344, -10.984128952026367 ], [ -71.672157287597599, -10.985357284545785 ], [ -71.67840576171875, -10.985350608825627 ], [ -71.681877136230412, -10.985577583312988 ], [ -71.6878662109375, -10.986310005187988 ], [ -71.691482543945312, -10.987180709838867 ], [ -71.699127197265568, -10.987518310546875 ], [ -71.701759338378906, -10.988400459289551 ], [ -71.707786560058594, -10.988430023193303 ], [ -71.718818664550781, -10.989919662475529 ], [ -71.725357055664006, -10.990268707275277 ], [ -71.731040954589844, -10.9914293289184 ], [ -71.733589172363168, -10.991439819335938 ], [ -71.734840393066406, -10.99202823638916 ], [ -71.737861633300724, -10.99202823638916 ], [ -71.741218566894418, -10.992929458618164 ], [ -71.746078491210881, -10.993239402770996 ], [ -71.749198913574162, -10.994099617004338 ], [ -71.754302978515625, -10.994109153747559 ], [ -71.757301330566349, -10.994368553161621 ], [ -71.762359619140568, -10.995051383972168 ], [ -71.763893127441349, -10.995599746704102 ], [ -71.768989562988281, -10.995658874511719 ], [ -71.787612915039062, -10.998208999633732 ], [ -71.794548034667969, -10.998679161071777 ], [ -71.802886962890568, -10.998648643493652 ], [ -71.805870056152287, -10.998008728027344 ], [ -71.806472778320312, -10.99773979187006 ], [ -71.806793212890625, -10.997078895568848 ], [ -71.811737060546875, -10.995898246765137 ], [ -71.816520690917969, -10.993579864501896 ], [ -71.818992614746094, -10.993011474609318 ], [ -71.821250915527344, -10.99181938171381 ], [ -71.822853088378793, -10.990479469299203 ], [ -71.825492858886662, -10.98962211608881 ], [ -71.827430725097543, -10.987998962402344 ], [ -71.829277038574219, -10.987038612365666 ], [ -71.830909729003906, -10.986560821533203 ], [ -71.834571838378849, -10.982708930969238 ], [ -71.839012145996094, -10.980209350585938 ], [ -71.840827941894531, -10.978779792785645 ], [ -71.842826843261719, -10.97653865814209 ], [ -71.844558715820312, -10.973269462585336 ], [ -71.845993041992131, -10.97145938873291 ], [ -71.847686767578125, -10.969888687133732 ], [ -71.851821899414006, -10.9669189453125 ], [ -71.855796813964844, -10.962730407714844 ], [ -71.857231140136719, -10.961559295654183 ], [ -71.861763000488168, -10.959238052368164 ], [ -71.863937377929631, -10.958450317382812 ], [ -71.869087219238224, -10.957059860229492 ], [ -71.879913330078125, -10.952319145202637 ], [ -71.882575988769531, -10.951478004455453 ], [ -71.88580322265625, -10.951309204101562 ], [ -71.890907287597656, -10.951448440551758 ], [ -71.894607543945312, -10.951849937438965 ], [ -71.903221130371037, -10.953700065612736 ], [ -71.90576171875, -10.953909873962289 ], [ -71.909706115722599, -10.953788757324219 ], [ -71.911293029785156, -10.953431129455566 ], [ -71.915489196777344, -10.951478004455453 ], [ -71.921279907226562, -10.948549270629883 ], [ -71.924629211425781, -10.94645881652832 ], [ -71.926170349121094, -10.946081161499023 ], [ -71.929206848144531, -10.945818901062012 ], [ -71.930557250976562, -10.946389198303166 ], [ -71.932647705078125, -10.94640922546381 ], [ -71.93605804443348, -10.947840690612793 ], [ -71.941513061523438, -10.949009895324707 ], [ -71.943862915039006, -10.949918746948242 ], [ -71.948486328125, -10.949649810791016 ], [ -71.952186584472656, -10.949939727783203 ], [ -71.955062866210938, -10.949039459228459 ], [ -71.966102600097656, -10.947690010070801 ], [ -71.97052001953125, -10.947649002075138 ], [ -71.973747253417969, -10.947870254516545 ], [ -71.983589172363281, -10.949249267578068 ], [ -71.988800048828125, -10.950220108032227 ], [ -71.994293212890568, -10.951560020446777 ], [ -72.000137329101506, -10.953578948974609 ], [ -72.000686645507756, -10.954260826110783 ], [ -72.001373291015568, -10.954570770263615 ], [ -72.00372314453125, -10.956648826599064 ], [ -72.005355834960881, -10.958978652954102 ], [ -72.008247375488168, -10.961100578308105 ], [ -72.012687683105469, -10.96663856506342 ], [ -72.013351440429688, -10.968350410461369 ], [ -72.013259887695312, -10.970729827880859 ], [ -72.014091491699219, -10.972159385681152 ], [ -72.014022827148438, -10.973920822143555 ], [ -72.015975952148324, -10.976119995117131 ], [ -72.015922546386719, -10.979220390319824 ], [ -72.016769409179688, -10.980330467224121 ], [ -72.017723083496094, -10.980898857116586 ], [ -72.018447875976506, -10.980669021606388 ], [ -72.01904296875, -10.979709625244141 ], [ -72.019172668457031, -10.977328300476074 ], [ -72.019882202148324, -10.976749420166016 ], [ -72.020606994628906, -10.976938247680607 ], [ -72.021842956542969, -10.978189468383732 ], [ -72.023345947265625, -10.97907829284668 ], [ -72.026206970214844, -10.979119300842228 ], [ -72.027915954589844, -10.979878425598088 ], [ -72.028526306152287, -10.980788230895939 ], [ -72.029342651367188, -10.984539031982365 ], [ -72.029808044433594, -10.984978675842285 ], [ -72.031295776367131, -10.985509872436467 ], [ -72.032333374023438, -10.986669540405217 ], [ -72.032485961914062, -10.987668037414551 ], [ -72.032386779785156, -10.990789413452035 ], [ -72.032989501953125, -10.99160003662098 ], [ -72.033836364746094, -10.991969108581543 ], [ -72.034782409667969, -10.992178916931152 ], [ -72.035270690917969, -10.99202823638916 ], [ -72.035713195800668, -10.991518020629826 ], [ -72.037345886230469, -10.987639427185002 ], [ -72.038116455078125, -10.987098693847599 ], [ -72.039405822753849, -10.986980438232422 ], [ -72.039970397949162, -10.98649883270258 ], [ -72.040168762206974, -10.985980033874512 ], [ -72.040176391601506, -10.983609199523869 ], [ -72.040740966796818, -10.982659339904671 ], [ -72.041542053222656, -10.981908798217717 ], [ -72.042266845703068, -10.981728553771973 ], [ -72.043899536132756, -10.982428550720215 ], [ -72.045379638671875, -10.981459617614689 ], [ -72.046012878417855, -10.981319427490234 ], [ -72.046646118164006, -10.981428146362248 ], [ -72.047607421874943, -10.982000350952092 ], [ -72.04901123046875, -10.980710029602051 ], [ -72.049575805664062, -10.980480194091797 ], [ -72.05059814453125, -10.980480194091797 ], [ -72.051292419433594, -10.981059074401799 ], [ -72.051666259765625, -10.98173809051508 ], [ -72.052085876464787, -10.983529090881348 ], [ -72.051956176757812, -10.984430313110352 ], [ -72.050880432128793, -10.986039161682129 ], [ -72.04888916015625, -10.987149238586426 ], [ -72.048233032226562, -10.988218307495004 ], [ -72.048393249511662, -10.989137649536076 ], [ -72.049102783203125, -10.989870071411133 ], [ -72.050132751464844, -10.990260124206543 ], [ -72.050582885742131, -10.991228103637695 ], [ -72.051567077636719, -10.99147891998291 ], [ -72.053138732910099, -10.990918159484863 ], [ -72.0540771484375, -10.990859031677246 ], [ -72.056213378906193, -10.991739273071232 ], [ -72.057579040527344, -10.991998672485295 ], [ -72.061073303222599, -10.991088867187443 ], [ -72.0623779296875, -10.991119384765568 ], [ -72.064430236816406, -10.99170017242426 ], [ -72.065452575683537, -10.991780281066838 ], [ -72.067726135253849, -10.991370201110783 ], [ -72.070365905761719, -10.990468978881779 ], [ -72.072219848632756, -10.990440368652287 ], [ -72.073677062988281, -10.990719795227051 ], [ -72.076171875, -10.991928100585938 ], [ -72.08056640625, -10.996319770812988 ], [ -72.083297729492131, -10.998371124267464 ], [ -72.087738037109375, -11.00375938415516 ], [ -72.088333129882756, -11.004000663757324 ], [ -72.091217041015511, -11.004038810729924 ], [ -72.092460632324105, -11.003679275512695 ], [ -72.093597412109318, -11.002900123596191 ], [ -72.095832824707031, -11.000099182128906 ], [ -72.096817016601506, -10.998400688171387 ], [ -72.098663330078125, -10.995978355407715 ], [ -72.100471496581918, -10.994269371032715 ], [ -72.101615905761605, -10.99368953704834 ], [ -72.102737426757756, -10.993559837341252 ], [ -72.104530334472656, -10.99297046661377 ], [ -72.105590820312443, -10.99297046661377 ], [ -72.107460021972656, -10.993869781494084 ], [ -72.108352661132756, -10.995139122009277 ], [ -72.109527587890511, -10.996019363403263 ], [ -72.11238861083973, -10.996229171752816 ], [ -72.115150451660099, -10.997039794921761 ], [ -72.117279052734375, -10.996780395507812 ], [ -72.119041442871037, -10.99623966217041 ], [ -72.122940063476506, -10.994528770446721 ], [ -72.125633239746037, -10.991998672485295 ], [ -72.127662658691406, -10.989268302917424 ], [ -72.129417419433594, -10.98776912689209 ], [ -72.131637573242131, -10.987748146057129 ], [ -72.133460998535099, -10.986650466918945 ], [ -72.134811401367188, -10.986280441284123 ], [ -72.135421752929688, -10.985870361328068 ], [ -72.136886596679631, -10.985690116882324 ], [ -72.139518737792969, -10.986260414123478 ], [ -72.142295837402344, -10.987290382385254 ], [ -72.144638061523438, -10.990118026733342 ], [ -72.147781372070312, -10.99198055267334 ], [ -72.149589538574219, -10.992728233337402 ], [ -72.152946472167969, -10.993399620056152 ], [ -72.154319763183537, -10.99396800994873 ], [ -72.154891967773381, -10.994819641113224 ], [ -72.154891967773381, -10.99811840057373 ], [ -72.155372619628849, -10.999107360839787 ], [ -72.155403137206918, -11.001580238342285 ], [ -72.156883239746094, -11.003398895263615 ], [ -72.157485961914006, -11.003800392150822 ], [ -72.158607482910099, -11.004049301147347 ], [ -72.160270690917969, -11.004010200500431 ], [ -72.163436889648438, -11.002799987792969 ], [ -72.166030883789062, -11.002567291259652 ], [ -72.168670654296875, -11.000878334045296 ], [ -72.172477722167969, -10.99684906005848 ], [ -72.173660278320312, -10.996370315551758 ], [ -72.174942016601506, -10.996649742126465 ], [ -72.176956176757699, -10.999009132385254 ], [ -72.179771423339844, -11.004219055175781 ], [ -72.181076049804688, -11.006099700927621 ], [ -72.18257904052723, -11.00747013092041 ], [ -72.185577392578125, -11.009320259094238 ], [ -72.186836242675724, -11.010469436645508 ], [ -72.185600280761662, -11.011949539184513 ], [ -72.183990478515568, -11.012809753417969 ], [ -72.181930541992188, -11.015168190002385 ], [ -72.179046630859318, -11.017768859863281 ], [ -72.176643371581974, -11.0213108062743 ], [ -72.175651550292969, -11.023388862609863 ], [ -72.175186157226562, -11.024979591369572 ], [ -72.173995971679574, -11.027669906616154 ], [ -72.173637390136719, -11.029470443725586 ], [ -72.173942565917969, -11.031289100646916 ], [ -72.175315856933537, -11.034990310668945 ], [ -72.17547607421875, -11.039029121398926 ], [ -72.176048278808594, -11.04331111907959 ], [ -72.176986694335938, -11.046389579772892 ], [ -72.178115844726562, -11.047969818115234 ], [ -72.180107116699219, -11.049329757690373 ], [ -72.181488037109375, -11.05058765411377 ], [ -72.18316650390625, -11.053558349609318 ], [ -72.183479309082031, -11.055998802185059 ], [ -72.183006286621094, -11.060960769653263 ], [ -72.182662963867131, -11.062279701232853 ], [ -72.181106567382812, -11.064660072326603 ], [ -72.1790771484375, -11.066088676452637 ], [ -72.177177429199219, -11.067838668823185 ], [ -72.174110412597656, -11.070210456848031 ], [ -72.170196533203125, -11.075098037719613 ], [ -72.169181823730469, -11.077288627624455 ], [ -72.168190002441406, -11.084299087524414 ], [ -72.167633056640625, -11.085838317871094 ], [ -72.166397094726562, -11.087800025939941 ], [ -72.164077758788949, -11.089899063110352 ], [ -72.159721374511719, -11.090159416198674 ], [ -72.154586791992188, -11.088918685913029 ], [ -72.148773193359375, -11.086729049682504 ], [ -72.147026062011719, -11.0868883132934 ], [ -72.145187377929631, -11.08828067779541 ], [ -72.143692016601562, -11.091130256652832 ], [ -72.142829895019531, -11.092219352722168 ], [ -72.137687683105469, -11.094318389892578 ], [ -72.134376525878906, -11.095209121704045 ], [ -72.132736206054688, -11.096549987792969 ], [ -72.130966186523381, -11.099020004272404 ], [ -72.129692077636719, -11.100079536437988 ], [ -72.127281188964844, -11.101030349731388 ], [ -72.1236572265625, -11.100899696350041 ], [ -72.122543334960938, -11.101328849792424 ], [ -72.121551513671875, -11.102399826049805 ], [ -72.120925903320312, -11.104149818420353 ], [ -72.120750427246037, -11.109098434448242 ], [ -72.118370056152287, -11.113129615783691 ], [ -72.118118286132812, -11.115530014037972 ], [ -72.118316650390625, -11.116879463195801 ], [ -72.120391845703068, -11.121210098266602 ], [ -72.122383117675724, -11.124458312988281 ], [ -72.127548217773381, -11.129758834838867 ], [ -72.130889892578011, -11.132528305053711 ], [ -72.133132934570312, -11.134738922119084 ], [ -72.135749816894474, -11.137968063354492 ], [ -72.137435913085881, -11.140829086303711 ], [ -72.138893127441349, -11.142749786376896 ], [ -72.142318725585881, -11.146750450134277 ], [ -72.145393371582031, -11.149820327758789 ], [ -72.149070739746037, -11.152619361877441 ], [ -72.153633117675781, -11.154919624328613 ], [ -72.155197143554631, -11.155368804931641 ], [ -72.157051086425781, -11.155428886413574 ], [ -72.161552429199219, -11.156899452209359 ], [ -72.167060852050781, -11.161689758300781 ], [ -72.168678283691406, -11.16259860992426 ], [ -72.171638488769531, -11.163398742675781 ], [ -72.175247192382812, -11.163318634033203 ], [ -72.178192138671761, -11.163649559020996 ], [ -72.181022644042912, -11.165027618408203 ], [ -72.182037353515625, -11.166468620300236 ], [ -72.1826171875, -11.168788909912053 ], [ -72.182662963867131, -11.173500061035156 ], [ -72.182876586914062, -11.175200462341309 ], [ -72.184806823730469, -11.179698944091797 ], [ -72.185676574707031, -11.182598114013615 ], [ -72.185577392578125, -11.184328079223633 ], [ -72.183403015136662, -11.188608169555664 ], [ -72.183219909667912, -11.189608573913574 ], [ -72.183341979980355, -11.190328598022461 ], [ -72.184570312499943, -11.191448211669922 ], [ -72.185989379882756, -11.191869735717773 ], [ -72.193511962890568, -11.191889762878418 ], [ -72.195686340332031, -11.192378044128418 ], [ -72.196510314941406, -11.192819595336914 ], [ -72.197761535644531, -11.19429874420166 ], [ -72.198432922363281, -11.195718765258732 ], [ -72.199356079101506, -11.199379920959473 ], [ -72.199356079101506, -11.200760841369572 ], [ -72.200782775878849, -11.205428123474121 ], [ -72.201026916503906, -11.207630157470703 ], [ -72.201011657714844, -11.210378646850586 ], [ -72.200447082519531, -11.212569236755371 ], [ -72.199760437011719, -11.214268684387207 ], [ -72.199172973632699, -11.217720031738168 ], [ -72.198257446289062, -11.220898628234863 ], [ -72.1978759765625, -11.225199699401799 ], [ -72.197273254394531, -11.228738784790039 ], [ -72.197257995605412, -11.232780456542912 ], [ -72.197792053222656, -11.23655891418457 ], [ -72.197372436523438, -11.238259315490723 ], [ -72.196548461914062, -11.239118576049748 ], [ -72.195968627929688, -11.240269660949707 ], [ -72.195816040039006, -11.241458892822209 ], [ -72.195892333984375, -11.242929458618107 ], [ -72.19631195068348, -11.24462985992426 ], [ -72.198188781738224, -11.250709533691349 ], [ -72.199501037597656, -11.253750801086426 ], [ -72.201316833496094, -11.256489753723145 ], [ -72.202102661132756, -11.25825023651123 ], [ -72.201866149902344, -11.260248184204102 ], [ -72.200080871582031, -11.262709617614632 ], [ -72.199966430664062, -11.263811111450138 ], [ -72.201156616210881, -11.26508903503418 ], [ -72.201927185058537, -11.266349792480412 ], [ -72.203025817871094, -11.270438194274902 ], [ -72.205329895019531, -11.274798393249455 ], [ -72.206016540527287, -11.277000427246037 ], [ -72.20941162109375, -11.281139373779183 ], [ -72.210372924804688, -11.282720565795898 ], [ -72.211036682128906, -11.284829139709473 ], [ -72.211196899414062, -11.28748893737793 ], [ -72.211700439453125, -11.288689613342228 ], [ -72.212677001953125, -11.289909362792855 ], [ -72.215911865234375, -11.292680740356445 ], [ -72.218437194824105, -11.297518730163461 ], [ -72.219551086425724, -11.299199104309082 ], [ -72.221626281738281, -11.30059814453125 ], [ -72.222717285156193, -11.300869941711369 ], [ -72.224006652832031, -11.300819396972656 ], [ -72.225769042968693, -11.300009727478027 ], [ -72.227806091308594, -11.298130035400391 ], [ -72.229339599609375, -11.297490119934082 ], [ -72.232643127441349, -11.297969818115234 ], [ -72.233558654785156, -11.298439979553223 ], [ -72.235221862792855, -11.299759864807015 ], [ -72.236251831054631, -11.302328109741154 ], [ -72.236991882324219, -11.305740356445199 ], [ -72.237960815429631, -11.308730125427246 ], [ -72.239402770996037, -11.311299324035531 ], [ -72.241470336914062, -11.314020156860352 ], [ -72.241577148437443, -11.31704044342041 ], [ -72.243438720703125, -11.31895923614502 ], [ -72.243438720703125, -11.320699691772461 ], [ -72.242523193359375, -11.323209762573185 ], [ -72.242630004882756, -11.324128150939941 ], [ -72.242927551269474, -11.324538230895996 ], [ -72.243675231933537, -11.324093818664551 ], [ -72.244400024414062, -11.323658943176213 ], [ -72.246078491210881, -11.322252273559513 ], [ -72.246810913085938, -11.321639060974064 ], [ -72.247077941894531, -11.321550369262695 ], [ -72.247673034667969, -11.321350097656193 ], [ -72.249137878417912, -11.321704864501953 ], [ -72.250267028808537, -11.321978569030762 ], [ -72.25191497802723, -11.323030471801701 ], [ -72.252983093261719, -11.324069023132324 ], [ -72.253417968749943, -11.324210166931096 ], [ -72.254287719726506, -11.323451042175236 ], [ -72.256759643554631, -11.321288108825684 ], [ -72.257148742675724, -11.320564270019531 ], [ -72.257667541503906, -11.319589614868107 ], [ -72.258193969726506, -11.318106651306096 ], [ -72.258499145507812, -11.31725025177002 ], [ -72.259361267089844, -11.316616058349496 ], [ -72.260215759277344, -11.315988540649357 ], [ -72.260932922363281, -11.315750122070256 ], [ -72.261085510253906, -11.315743446350041 ], [ -72.266113281249943, -11.315540313720646 ], [ -72.266944885253849, -11.315309524536076 ], [ -72.267196655273438, -11.315238952636719 ], [ -72.267532348632756, -11.315071105956974 ], [ -72.268196105956974, -11.314740180969238 ], [ -72.270843505859375, -11.311962127685547 ], [ -72.271171569824162, -11.311619758605957 ], [ -72.273445129394474, -11.311276435851994 ], [ -72.275596618652344, -11.310950279235783 ], [ -72.278678894042912, -11.309309005737248 ], [ -72.282775878906193, -11.307129859924316 ], [ -72.28448486328125, -11.306911468505859 ], [ -72.28607177734375, -11.306709289550781 ], [ -72.288223266601506, -11.305451393127385 ], [ -72.288772583007812, -11.304840087890625 ], [ -72.289131164550781, -11.303984642028752 ], [ -72.290290832519531, -11.303069114685059 ], [ -72.290367126464844, -11.302906990051156 ], [ -72.290756225585938, -11.302088737487736 ], [ -72.291183471679631, -11.301836013793945 ], [ -72.291397094726449, -11.30170822143549 ], [ -72.291763305664006, -11.301624298095646 ], [ -72.292121887206974, -11.301536560058537 ], [ -72.294631958007756, -11.301667213439828 ], [ -72.298858642578125, -11.302285194396973 ], [ -72.299560546874943, -11.302267074584961 ], [ -72.300247192382756, -11.302248001098576 ], [ -72.30230712890625, -11.301749229431152 ], [ -72.302764892578125, -11.301429748535099 ], [ -72.3038330078125, -11.300688743591309 ], [ -72.304359436035099, -11.300479888915959 ], [ -72.304939270019418, -11.300250053405705 ], [ -72.307823181152344, -11.300530433654785 ], [ -72.307586669921818, -11.301388740539551 ], [ -72.306556701660043, -11.301767349243107 ], [ -72.306381225585938, -11.301947593688965 ], [ -72.306152343749943, -11.302180290222111 ], [ -72.306282043457031, -11.303639411926213 ], [ -72.307464599609375, -11.30450534820551 ], [ -72.3077392578125, -11.305789947509766 ], [ -72.307846069335938, -11.306307792663574 ], [ -72.308052062988224, -11.306477546691895 ], [ -72.308753967285043, -11.307064056396428 ], [ -72.309013366699162, -11.30765247344965 ], [ -72.309387207031193, -11.308480262756348 ], [ -72.312515258789062, -11.310450553893986 ], [ -72.312690734863281, -11.311055183410645 ], [ -72.312423706054688, -11.311545372009277 ], [ -72.312171936035099, -11.31200122833252 ], [ -72.312240600585938, -11.312458992004395 ], [ -72.312759399413949, -11.313090324401855 ], [ -72.312911987304631, -11.313085556030273 ], [ -72.313133239746037, -11.313078880310059 ], [ -72.313682556152287, -11.312602043151855 ], [ -72.313743591308594, -11.31268215179432 ], [ -72.314285278320199, -11.313402175903263 ], [ -72.314949035644418, -11.313700675964299 ], [ -72.315124511718693, -11.313780784606934 ], [ -72.315231323242131, -11.314609527587777 ], [ -72.314979553222656, -11.315089225769043 ], [ -72.314987182617188, -11.315830230712834 ], [ -72.315742492675781, -11.316484451293945 ], [ -72.315895080566349, -11.316616058349496 ], [ -72.315925598144531, -11.317190170288086 ], [ -72.315963745117131, -11.317790031433105 ], [ -72.316085815429631, -11.317839622497559 ], [ -72.316810607910156, -11.318134307861271 ], [ -72.31707763671875, -11.318629264831543 ], [ -72.31719970703125, -11.318859100341797 ], [ -72.317771911621094, -11.319326400756779 ], [ -72.317741394042969, -11.319685935974121 ], [ -72.317535400390625, -11.31981372833252 ], [ -72.317253112792969, -11.319989204406738 ], [ -72.315414428710881, -11.319753646850586 ], [ -72.315040588378849, -11.319944381713867 ], [ -72.314674377441406, -11.320128440856934 ], [ -72.314636230468693, -11.320531845092773 ], [ -72.314605712890625, -11.320859909057504 ], [ -72.315269470214844, -11.321632385253849 ], [ -72.315773010253849, -11.321670532226449 ], [ -72.316268920898381, -11.321709632873535 ], [ -72.317123413085881, -11.321247100830078 ], [ -72.317398071289006, -11.321099281310978 ], [ -72.318359374999943, -11.321378707885742 ], [ -72.319702148437443, -11.321460723876896 ], [ -72.320297241210938, -11.321499824523812 ], [ -72.321968078613281, -11.322813034057617 ], [ -72.322807312011719, -11.324239730834961 ], [ -72.323242187499943, -11.324397087097111 ], [ -72.323989868164006, -11.324666023254395 ], [ -72.324729919433594, -11.324149131774902 ], [ -72.32470703125, -11.323598861694279 ], [ -72.324623107910156, -11.323519706726017 ], [ -72.324172973632756, -11.323080062866211 ], [ -72.324081420898381, -11.32280158996582 ], [ -72.323997497558537, -11.322529792785588 ], [ -72.324760437011662, -11.321699142455998 ], [ -72.324470520019474, -11.318838119506779 ], [ -72.323905944824162, -11.318169593811035 ], [ -72.323348999023438, -11.3175048828125 ], [ -72.323448181152344, -11.317165374755803 ], [ -72.323532104492074, -11.316864013671818 ], [ -72.325294494628906, -11.317396163940373 ], [ -72.327339172363224, -11.317496299743652 ], [ -72.328941345214787, -11.316616058349496 ], [ -72.329231262206974, -11.316801071166992 ], [ -72.329559326171875, -11.317006111144963 ], [ -72.329872131347656, -11.31719970703125 ], [ -72.330940246581974, -11.316850662231332 ], [ -72.333168029785043, -11.316858291625977 ], [ -72.333824157714787, -11.316394805908146 ], [ -72.334602355957031, -11.315846443176213 ], [ -72.334953308105412, -11.31649112701416 ], [ -72.335144042968693, -11.316622734069824 ], [ -72.335395812988281, -11.316798210144043 ], [ -72.337440490722599, -11.316780090331974 ], [ -72.338546752929688, -11.317006111144963 ], [ -72.338722229003906, -11.31704044342041 ], [ -72.339042663574162, -11.317449569702148 ], [ -72.338851928710881, -11.317539215087834 ], [ -72.337509155273438, -11.318165779113656 ], [ -72.337432861328068, -11.318405151367131 ], [ -72.337272644042969, -11.31889533996582 ], [ -72.339355468749943, -11.323057174682617 ], [ -72.339591979980469, -11.323524475097656 ], [ -72.340499877929631, -11.323713302612248 ], [ -72.341346740722599, -11.323360443115178 ], [ -72.342193603515568, -11.323411941528263 ], [ -72.342308044433537, -11.323506355285531 ], [ -72.343849182128793, -11.324769020080566 ], [ -72.343986511230469, -11.323708534240723 ], [ -72.34432220458973, -11.32337760925293 ], [ -72.345657348632699, -11.323555946350098 ], [ -72.346061706542969, -11.3236083984375 ], [ -72.347770690917969, -11.322519302368164 ], [ -72.349182128906193, -11.322681427001896 ], [ -72.349876403808594, -11.322760581970158 ], [ -72.35028076171875, -11.323264122009164 ], [ -72.350349426269531, -11.32335090637207 ], [ -72.350486755371037, -11.325489044189453 ], [ -72.351264953613224, -11.326455116271916 ], [ -72.351661682128849, -11.326950073242188 ], [ -72.354072570800781, -11.329065322875977 ], [ -72.355537414550781, -11.329990386962891 ], [ -72.3560791015625, -11.330108642578125 ], [ -72.357437133789062, -11.329728126525879 ], [ -72.357864379882699, -11.329607009887638 ], [ -72.358322143554631, -11.329746246337834 ], [ -72.358474731445312, -11.329792022705078 ], [ -72.358604431152287, -11.330003738403263 ], [ -72.358718872070256, -11.330192565917969 ], [ -72.358818054199105, -11.332173347473088 ], [ -72.359062194824219, -11.332322120666504 ], [ -72.359474182128849, -11.332576751708984 ], [ -72.360626220703068, -11.332865715026799 ], [ -72.361198425292912, -11.333308219909668 ], [ -72.361808776855469, -11.333780288696289 ], [ -72.363929748535156, -11.333842277526799 ], [ -72.365844726562443, -11.334765434265137 ], [ -72.367591857910043, -11.334564208984375 ], [ -72.367721557617188, -11.334733009338322 ], [ -72.368492126464844, -11.335744857788086 ], [ -72.369003295898381, -11.335949897766113 ], [ -72.369308471679574, -11.335679054260197 ], [ -72.369476318359318, -11.335528373718262 ], [ -72.369560241699162, -11.33345890045166 ], [ -72.369773864746037, -11.333450317382812 ], [ -72.370635986328068, -11.333415985107422 ], [ -72.371604919433594, -11.33411979675293 ], [ -72.371871948242131, -11.334039688110352 ], [ -72.372077941894418, -11.333750724792424 ], [ -72.372406005859375, -11.333290100097599 ], [ -72.372451782226506, -11.332420349121037 ], [ -72.372482299804688, -11.331740379333439 ], [ -72.373130798339844, -11.331184387206974 ], [ -72.37322998046875, -11.331097602844181 ], [ -72.373336791992188, -11.331176757812443 ], [ -72.373916625976562, -11.331591606140137 ], [ -72.374031066894531, -11.33216381072998 ], [ -72.374183654785156, -11.332896232604867 ], [ -72.374122619628906, -11.333719253539982 ], [ -72.373886108398324, -11.333993911743107 ], [ -72.373519897460938, -11.33442497253418 ], [ -72.373497009277287, -11.334556579589844 ], [ -72.373382568359318, -11.335282325744629 ], [ -72.373466491699219, -11.335779190063477 ], [ -72.373863220214787, -11.335890769958496 ], [ -72.374710083007756, -11.335338592529297 ], [ -72.375686645507756, -11.333819389343205 ], [ -72.376449584960881, -11.332627296447697 ], [ -72.378120422363281, -11.33211612701416 ], [ -72.379394531249943, -11.332327842712289 ], [ -72.380271911621037, -11.333745956420898 ], [ -72.381088256835938, -11.333783149719181 ], [ -72.381462097167969, -11.33380126953125 ], [ -72.381568908691406, -11.333857536315918 ], [ -72.381950378417969, -11.334057807922306 ], [ -72.382362365722599, -11.334585189819279 ], [ -72.382484436035156, -11.33521842956543 ], [ -72.382537841796818, -11.335518836974984 ], [ -72.382125854492188, -11.336581230163517 ], [ -72.381813049316406, -11.336840629577637 ], [ -72.380043029785156, -11.338313102722111 ], [ -72.380043029785156, -11.338878631591797 ], [ -72.380554199218693, -11.33923435211176 ], [ -72.380691528320312, -11.3393297195434 ], [ -72.381538391113281, -11.33809852600092 ], [ -72.382087707519418, -11.337937355041504 ], [ -72.384712219238281, -11.339429855346623 ], [ -72.384880065917969, -11.340285301208496 ], [ -72.385047912597543, -11.341133117675781 ], [ -72.3858642578125, -11.342487335205078 ], [ -72.386383056640511, -11.343340873718262 ], [ -72.386474609374886, -11.344758987426701 ], [ -72.386528015136719, -11.345636367797795 ], [ -72.386245727539062, -11.346707344055176 ], [ -72.386581420898438, -11.347343444824219 ], [ -72.387260437011719, -11.347602844238224 ], [ -72.388854980468693, -11.346666336059513 ], [ -72.390037536621094, -11.346876144409123 ], [ -72.390243530273438, -11.346794128417969 ], [ -72.390457153320256, -11.346707344055176 ], [ -72.390739440917912, -11.346248626708928 ], [ -72.390693664550781, -11.346076011657715 ], [ -72.390541076660099, -11.345528602600041 ], [ -72.389976501464787, -11.345029830932617 ], [ -72.388526916503906, -11.344418525695801 ], [ -72.388359069824162, -11.344099998474121 ], [ -72.388496398925781, -11.343660354614258 ], [ -72.388847351074162, -11.343368530273438 ], [ -72.393241882324162, -11.341900825500431 ], [ -72.394432067871094, -11.342212677001953 ], [ -72.395477294921875, -11.342489242553654 ], [ -72.395919799804574, -11.342817306518555 ], [ -72.396430969238281, -11.343193054199162 ], [ -72.396377563476506, -11.343425750732422 ], [ -72.396316528320312, -11.343671798706055 ], [ -72.395111083984375, -11.344149589538461 ], [ -72.39467620849598, -11.344750404357853 ], [ -72.39453125, -11.346308708190861 ], [ -72.394653320312443, -11.346685409545842 ], [ -72.394996643066406, -11.347707748413086 ], [ -72.39501953125, -11.349278450012207 ], [ -72.395660400390625, -11.349609374999886 ], [ -72.396957397460881, -11.349637985229435 ], [ -72.399276733398438, -11.347518920898438 ], [ -72.399368286132812, -11.347071647643986 ], [ -72.399398803710938, -11.346919059753304 ], [ -72.399116516113281, -11.345698356628418 ], [ -72.398376464843693, -11.344298362731934 ], [ -72.398422241210938, -11.343962669372445 ], [ -72.398506164550781, -11.343299865722599 ], [ -72.399391174316406, -11.343088150024414 ], [ -72.400177001953068, -11.343398094177246 ], [ -72.400978088378906, -11.34484958648676 ], [ -72.401214599609375, -11.346536636352539 ], [ -72.401290893554688, -11.347099304199162 ], [ -72.402046203613281, -11.347908973693791 ], [ -72.402809143066406, -11.348727226257211 ], [ -72.402908325195312, -11.34906005859375 ], [ -72.403106689453125, -11.349695205688477 ], [ -72.403175354003906, -11.349790573120117 ], [ -72.404113769531193, -11.351140022277775 ], [ -72.404342651367188, -11.351684570312443 ], [ -72.404685974121037, -11.352492332458496 ], [ -72.404647827148438, -11.353025436401367 ], [ -72.404594421386605, -11.35377311706543 ], [ -72.402656555175724, -11.355459213256779 ], [ -72.402717590332031, -11.355755805969238 ], [ -72.402755737304631, -11.355927467346078 ], [ -72.402938842773381, -11.356134414672795 ], [ -72.403244018554631, -11.356479644775277 ], [ -72.403480529785156, -11.356631278991642 ], [ -72.404571533203068, -11.357333183288574 ], [ -72.40576171875, -11.357343673706055 ], [ -72.40728759765625, -11.356662750244084 ], [ -72.408447265625, -11.355480194091797 ], [ -72.408676147460881, -11.354119300842171 ], [ -72.409278869628906, -11.35312557220459 ], [ -72.409362792968636, -11.352989196777344 ], [ -72.409873962402344, -11.352630615234318 ], [ -72.410881042480412, -11.3519287109375 ], [ -72.412055969238281, -11.35165977478016 ], [ -72.413169860839787, -11.351728439330998 ], [ -72.413856506347656, -11.352020263671875 ], [ -72.415130615234375, -11.353916168212891 ], [ -72.415817260742131, -11.354940414428711 ], [ -72.417808532714844, -11.356662750244084 ], [ -72.419342041015568, -11.356233596801701 ], [ -72.421653747558537, -11.354673385620117 ], [ -72.422492980956974, -11.354591369628906 ], [ -72.423461914062443, -11.354834556579476 ], [ -72.424407958984318, -11.35560131072998 ], [ -72.424728393554688, -11.356167793273926 ], [ -72.425041198730469, -11.356726646423283 ], [ -72.425392150878906, -11.357077598571777 ], [ -72.425827026367131, -11.357510566711426 ], [ -72.426315307617131, -11.358806610107422 ], [ -72.426475524902344, -11.364219665527344 ], [ -72.426040649414006, -11.36563587188715 ], [ -72.425834655761662, -11.365996360778809 ], [ -72.424934387207031, -11.367549896240234 ], [ -72.425056457519531, -11.367979049682617 ], [ -72.425514221191406, -11.368302345275822 ], [ -72.425682067871094, -11.36841869354248 ], [ -72.426971435546818, -11.368358612060547 ], [ -72.429046630859375, -11.367354393005371 ], [ -72.4302978515625, -11.36674785614008 ], [ -72.430519104003849, -11.36674785614008 ], [ -72.430946350097656, -11.36674976348877 ], [ -72.432159423828011, -11.367170333862248 ], [ -72.433883666992188, -11.36639499664301 ], [ -72.434524536132756, -11.366105079650822 ], [ -72.436271667480469, -11.365888595581055 ], [ -72.436729431152287, -11.366216659545842 ], [ -72.436828613281136, -11.366839408874455 ], [ -72.436859130859375, -11.367031097412053 ], [ -72.434776306152344, -11.368969917297306 ], [ -72.434715270996037, -11.369084358215275 ], [ -72.434371948242188, -11.369692802429142 ], [ -72.434379577636719, -11.370168685913086 ], [ -72.434585571289062, -11.370570182800179 ], [ -72.434982299804631, -11.371352195739746 ], [ -72.436126708984318, -11.372728347778263 ], [ -72.437744140625, -11.372792243957463 ], [ -72.438491821289062, -11.373154640197697 ], [ -72.439430236816406, -11.373233795165959 ], [ -72.439888000488281, -11.37360954284668 ], [ -72.440933227538949, -11.374476432800179 ], [ -72.441543579101562, -11.374670028686523 ], [ -72.441680908203068, -11.37464332580555 ], [ -72.442008972167969, -11.374579429626465 ], [ -72.44232177734375, -11.374327659606934 ], [ -72.442855834960938, -11.373900413513127 ], [ -72.443389892578068, -11.373950004577637 ], [ -72.443885803222543, -11.373999595641976 ], [ -72.444160461425724, -11.373689651489144 ], [ -72.445228576660156, -11.372488975524902 ], [ -72.446861267089844, -11.372846603393555 ], [ -72.447067260742188, -11.37280368804926 ], [ -72.447410583496037, -11.372728347778263 ], [ -72.448043823242188, -11.372136116027775 ], [ -72.448287963867188, -11.371910095214787 ], [ -72.448448181152287, -11.371467590332031 ], [ -72.448722839355412, -11.370718002319279 ], [ -72.449134826660043, -11.370565414428711 ], [ -72.449234008789062, -11.370527267455998 ], [ -72.449729919433594, -11.371405601501408 ], [ -72.449745178222656, -11.37153434753418 ], [ -72.449798583984261, -11.37205791473383 ], [ -72.448928833007756, -11.373847007751465 ], [ -72.44964599609375, -11.37448787689209 ], [ -72.449790954589787, -11.374565124511662 ], [ -72.450881958007812, -11.375148773193303 ], [ -72.451301574706974, -11.375978469848519 ], [ -72.451469421386719, -11.376970291137695 ], [ -72.450942993163949, -11.377498626708984 ], [ -72.448890686035156, -11.378105163574162 ], [ -72.448387145996094, -11.378531455993652 ], [ -72.447906494140625, -11.378936767578125 ], [ -72.447769165039006, -11.37929725646967 ], [ -72.447669982910099, -11.383889198303223 ], [ -72.448348999023381, -11.384757995605469 ], [ -72.449111938476506, -11.38528919219965 ], [ -72.450294494628906, -11.385517120361328 ], [ -72.451576232910099, -11.385174751281681 ], [ -72.454154968261662, -11.385396003723031 ], [ -72.456123352050781, -11.383695602416935 ], [ -72.457427978515511, -11.383625030517521 ], [ -72.458137512207031, -11.384066581726074 ], [ -72.45831298828125, -11.384361267089844 ], [ -72.458511352539062, -11.384692192077637 ], [ -72.45880126953125, -11.385668754577637 ], [ -72.458839416503849, -11.386309623718262 ], [ -72.458915710449219, -11.387595176696777 ], [ -72.460159301757756, -11.389551162719727 ], [ -72.460357666015568, -11.389653205871525 ], [ -72.461151123046761, -11.390056610107422 ], [ -72.461334228515568, -11.390018463134709 ], [ -72.461746215820312, -11.389928817749023 ], [ -72.462165832519474, -11.389438629150334 ], [ -72.461837768554688, -11.389005661010742 ], [ -72.461326599121037, -11.388339996337891 ], [ -72.461509704589787, -11.387628555297852 ], [ -72.462532043457031, -11.387509346008301 ], [ -72.463882446289006, -11.387349128723145 ], [ -72.463966369628906, -11.38748836517334 ], [ -72.464126586914062, -11.387741088867131 ], [ -72.46392822265625, -11.38956356048584 ], [ -72.464172363281193, -11.389858245849496 ], [ -72.46453857421875, -11.390291213989258 ], [ -72.464881896972656, -11.390355110168343 ], [ -72.465187072753906, -11.390410423278809 ], [ -72.466232299804688, -11.389719009399414 ], [ -72.467407226562443, -11.38839054107666 ], [ -72.466552734374943, -11.387180328369084 ], [ -72.466491699218636, -11.386526107788086 ], [ -72.466468811035099, -11.386280059814453 ], [ -72.466743469238224, -11.386109352111816 ], [ -72.468116760253906, -11.385250091552678 ], [ -72.469070434570312, -11.38519287109375 ], [ -72.469505310058537, -11.385168075561523 ], [ -72.469612121581974, -11.385256767272836 ], [ -72.47015380859375, -11.385714530944767 ], [ -72.470542907714844, -11.386478424072266 ], [ -72.470695495605469, -11.386786460876465 ], [ -72.470909118652344, -11.389858245849496 ], [ -72.471237182617131, -11.390850067138672 ], [ -72.472793579101562, -11.391945838928166 ], [ -72.474349975585938, -11.39224720001215 ], [ -72.474769592285099, -11.392224311828613 ], [ -72.475189208984375, -11.39219856262207 ], [ -72.475723266601506, -11.391781806945744 ], [ -72.476356506347656, -11.391289710998478 ], [ -72.477188110351562, -11.389869689941406 ], [ -72.478134155273438, -11.389054298400879 ], [ -72.479080200195199, -11.388239860534668 ], [ -72.479728698730412, -11.387219429016113 ], [ -72.480369567871094, -11.387019157409668 ], [ -72.482696533203068, -11.389079093933105 ], [ -72.484100341796818, -11.389589309692326 ], [ -72.484794616699162, -11.389553070068303 ], [ -72.485488891601562, -11.38951587677002 ], [ -72.486007690429631, -11.389727592468205 ], [ -72.486236572265625, -11.39058780670166 ], [ -72.485015869140625, -11.391957283019963 ], [ -72.485076904296818, -11.392612457275334 ], [ -72.485466003417855, -11.392967224121037 ], [ -72.487243652343693, -11.392844200134277 ], [ -72.487472534179574, -11.393074035644474 ], [ -72.487419128417969, -11.39352989196766 ], [ -72.486877441406193, -11.394195556640625 ], [ -72.486366271972656, -11.394818305969181 ], [ -72.485221862792969, -11.395745277404785 ], [ -72.484710693359375, -11.396018981933537 ], [ -72.482597351074162, -11.39714527130127 ], [ -72.482429504394531, -11.397416114807015 ], [ -72.482307434081974, -11.397611618041935 ], [ -72.482810974121094, -11.398113250732422 ], [ -72.485496520996094, -11.398251533508244 ], [ -72.487716674804688, -11.398921966552734 ], [ -72.487968444824219, -11.399582862853947 ], [ -72.487686157226562, -11.400448799133244 ], [ -72.487655639648381, -11.401930809020939 ], [ -72.487739562988224, -11.402283668518066 ], [ -72.488128662109318, -11.402542114257699 ], [ -72.488250732421875, -11.402507781982365 ], [ -72.488822937011719, -11.402350425720215 ], [ -72.489143371582031, -11.400980949401799 ], [ -72.489433288574219, -11.399759292602539 ], [ -72.490058898925781, -11.399230003356934 ], [ -72.490547180175781, -11.399180412292367 ], [ -72.491851806640568, -11.399649620056096 ], [ -72.492202758789006, -11.399958610534668 ], [ -72.492614746093693, -11.401058197021484 ], [ -72.492851257324219, -11.401678085327148 ], [ -72.493034362792969, -11.403603553771916 ], [ -72.493347167968693, -11.403731346130314 ], [ -72.494171142578125, -11.402924537658635 ], [ -72.494369506835938, -11.402729034423714 ], [ -72.494956970214844, -11.401698112487793 ], [ -72.494812011718636, -11.401179313659554 ], [ -72.4942626953125, -11.40054988861084 ], [ -72.493537902831974, -11.399718284606877 ], [ -72.493560791015568, -11.399236679077092 ], [ -72.493606567382812, -11.398009300231877 ], [ -72.493728637695256, -11.397885322570744 ], [ -72.494125366210881, -11.397475242614746 ], [ -72.494590759277287, -11.397508621215763 ], [ -72.494735717773438, -11.397847175598145 ], [ -72.495086669921818, -11.398659706115723 ], [ -72.495323181152344, -11.398744583129826 ], [ -72.49560546875, -11.398844718933105 ], [ -72.496139526367131, -11.398795127868539 ], [ -72.496520996093693, -11.398760795593205 ], [ -72.497383117675724, -11.397808074951172 ], [ -72.497909545898438, -11.396527290344181 ], [ -72.498069763183594, -11.39534854888916 ], [ -72.498176574707031, -11.395218849182015 ], [ -72.498527526855412, -11.394795417785645 ], [ -72.499244689941406, -11.394900321960449 ], [ -72.502922058105355, -11.398698806762695 ], [ -72.503829956054688, -11.400100708007812 ], [ -72.503715515136719, -11.400379180908203 ], [ -72.50360107421875, -11.400674819946232 ], [ -72.501129150390625, -11.400518417358398 ], [ -72.498825073242188, -11.402468681335449 ], [ -72.498207092285156, -11.40264701843256 ], [ -72.497665405273381, -11.402802467346191 ], [ -72.497673034667855, -11.403044700622559 ], [ -72.497673034667855, -11.403227806091309 ], [ -72.498634338378906, -11.404643058776855 ], [ -72.499046325683594, -11.405108451843262 ], [ -72.501106262206918, -11.407440185546875 ], [ -72.501510620117188, -11.408747673034668 ], [ -72.501640319824219, -11.409178733825627 ], [ -72.503486633300724, -11.409260749816895 ], [ -72.504615783691349, -11.408068656921387 ], [ -72.506027221679688, -11.406578063964844 ], [ -72.506851196289062, -11.406484603881779 ], [ -72.507209777831918, -11.407230377197266 ], [ -72.506568908691406, -11.408334732055664 ], [ -72.506599426269531, -11.408437728881836 ], [ -72.506698608398381, -11.40878868103016 ], [ -72.507156372070312, -11.409239768981934 ], [ -72.508209228515625, -11.409785270690918 ], [ -72.508895874023381, -11.410138130187988 ], [ -72.510009765625, -11.411373138427678 ], [ -72.510040283203068, -11.411566734313908 ], [ -72.51019287109375, -11.412647247314339 ], [ -72.508384704589844, -11.414205551147404 ], [ -72.508979797363281, -11.41544246673584 ], [ -72.509033203125, -11.416179656982308 ], [ -72.507232666015625, -11.419158935546875 ], [ -72.507072448730469, -11.420137405395394 ], [ -72.507049560546875, -11.420256614684945 ], [ -72.507270812988224, -11.420948028564339 ], [ -72.508506774902344, -11.422060012817383 ], [ -72.509040832519531, -11.422542572021428 ], [ -72.509635925292969, -11.423789978027287 ], [ -72.510299682617188, -11.424496650695687 ], [ -72.510475158691406, -11.424688339233342 ], [ -72.51104736328125, -11.424896240234375 ], [ -72.511428833007812, -11.425039291381836 ], [ -72.512359619140511, -11.424970626830998 ], [ -72.51287841796875, -11.424539566040039 ], [ -72.513000488281193, -11.424440383911133 ], [ -72.513313293456918, -11.42377853393549 ], [ -72.512519836425724, -11.421036720275822 ], [ -72.512916564941349, -11.419380187988281 ], [ -72.513191223144474, -11.41886043548584 ], [ -72.513572692871037, -11.418140411376953 ], [ -72.515228271484375, -11.41697978973383 ], [ -72.516593933105469, -11.417084693908691 ], [ -72.517181396484375, -11.417130470275822 ], [ -72.517547607421875, -11.417365074157658 ], [ -72.518096923828125, -11.41772270202631 ], [ -72.518516540527344, -11.418389320373478 ], [ -72.519073486328125, -11.419275283813363 ], [ -72.519302368164006, -11.421834945678654 ], [ -72.518562316894418, -11.424298286437931 ], [ -72.517410278320256, -11.42618274688715 ], [ -72.516197204589844, -11.429150581359806 ], [ -72.516029357910156, -11.431060791015625 ], [ -72.517082214355469, -11.432332038879395 ], [ -72.518913269042912, -11.432674407958871 ], [ -72.519996643066406, -11.43251895904541 ], [ -72.520637512206974, -11.432430267333984 ], [ -72.523216247558537, -11.430931091308537 ], [ -72.523551940917969, -11.43096923828125 ], [ -72.523956298828125, -11.43101692199707 ], [ -72.524658203124943, -11.431474685668888 ], [ -72.52490234375, -11.431743621826172 ], [ -72.525596618652287, -11.43250560760498 ], [ -72.526206970214844, -11.43377685546875 ], [ -72.526443481445256, -11.434273719787598 ], [ -72.524932861328068, -11.437279701232796 ], [ -72.525009155273381, -11.438379287719727 ], [ -72.52504730224598, -11.439005851745549 ], [ -72.525726318359375, -11.43926811218256 ], [ -72.526176452636662, -11.439438819885197 ], [ -72.527381896972656, -11.439040184020882 ], [ -72.52984619140625, -11.437733650207463 ], [ -72.530311584472656, -11.43748760223383 ], [ -72.530654907226506, -11.437623977661133 ], [ -72.531051635742074, -11.437782287597656 ], [ -72.531219482421818, -11.438059806823674 ], [ -72.5318603515625, -11.439107894897404 ], [ -72.532814025878906, -11.439504623413086 ], [ -72.533897399902287, -11.439002990722656 ], [ -72.534545898437443, -11.438369750976506 ], [ -72.534988403320312, -11.437015533447266 ], [ -72.535285949707031, -11.436101913452148 ], [ -72.535186767578125, -11.435188293457031 ], [ -72.534904479980469, -11.434823036193848 ], [ -72.534622192382812, -11.434458732604924 ], [ -72.534339904785156, -11.434281349182129 ], [ -72.532829284667912, -11.433319091796818 ], [ -72.532127380371094, -11.432451248168945 ], [ -72.531745910644531, -11.431349754333496 ], [ -72.531501770019474, -11.429760932922363 ], [ -72.531341552734261, -11.428679466247559 ], [ -72.531417846679631, -11.42786979675293 ], [ -72.531448364257812, -11.427589416503849 ], [ -72.531982421874943, -11.426118850707951 ], [ -72.532073974609318, -11.426005363464355 ], [ -72.532768249511605, -11.42516899108881 ], [ -72.533309936523381, -11.424980163574219 ], [ -72.533515930175724, -11.424908638000488 ], [ -72.5352783203125, -11.425142288208008 ], [ -72.535682678222656, -11.425472259521484 ], [ -72.536071777343693, -11.425788879394474 ], [ -72.537124633789006, -11.427425384521428 ], [ -72.537391662597656, -11.431269645690918 ], [ -72.536956787109318, -11.432266235351506 ], [ -72.536277770996037, -11.43383884429926 ], [ -72.536338806152344, -11.434739112854004 ], [ -72.537117004394531, -11.434909820556641 ], [ -72.53955078125, -11.434142112731877 ], [ -72.543830871581918, -11.432789802551213 ], [ -72.546066284179688, -11.432838439941349 ], [ -72.546752929687443, -11.433302879333439 ], [ -72.547058105468693, -11.433510780334473 ], [ -72.54803466796875, -11.435791969299316 ], [ -72.54833984375, -11.436126708984375 ], [ -72.549217224121094, -11.437095642089844 ], [ -72.549217224121094, -11.437252998351994 ], [ -72.549224853515625, -11.437644958496094 ], [ -72.548614501953125, -11.43897819519043 ], [ -72.548614501953125, -11.440359115600586 ], [ -72.548370361328125, -11.441254615783635 ], [ -72.548278808593693, -11.441605567932129 ], [ -72.546516418457031, -11.443115234375 ], [ -72.546257019042969, -11.443558692932072 ], [ -72.546112060546818, -11.443800926208439 ], [ -72.546600341796761, -11.447369575500431 ], [ -72.546836853027344, -11.447949409484806 ], [ -72.547325134277287, -11.448361396789551 ], [ -72.547416687011719, -11.448438644409123 ], [ -72.547729492187443, -11.44842529296875 ], [ -72.548507690429574, -11.448389053344727 ], [ -72.549880981445312, -11.447270393371525 ], [ -72.551376342773438, -11.44423866271967 ], [ -72.552719116210938, -11.442869186401367 ], [ -72.552642822265625, -11.442543029785156 ], [ -72.551971435546875, -11.439538955688477 ], [ -72.551956176757812, -11.437813758850041 ], [ -72.551933288574162, -11.434399604797306 ], [ -72.55224609375, -11.433159828185978 ], [ -72.553436279296818, -11.432123184204045 ], [ -72.554283142089844, -11.432026863098088 ], [ -72.554901123046875, -11.431956291198674 ], [ -72.555839538574162, -11.432161331176758 ], [ -72.556541442871094, -11.43231201171875 ], [ -72.557456970214787, -11.433097839355469 ], [ -72.558486938476506, -11.43471622467041 ], [ -72.559455871581974, -11.435270309448185 ], [ -72.56024169921875, -11.435424804687443 ], [ -72.560569763183594, -11.435488700866642 ], [ -72.562339782714844, -11.434698104858342 ], [ -72.562950134277344, -11.434123992919922 ], [ -72.565032958984375, -11.432168006896973 ], [ -72.566017150878849, -11.431659698486328 ], [ -72.566566467285156, -11.431628227233887 ], [ -72.567283630371037, -11.431983947753849 ], [ -72.567642211914006, -11.432161331176758 ], [ -72.567901611328125, -11.432630538940316 ], [ -72.568397521972656, -11.433532714843636 ], [ -72.568840026855469, -11.433978080749455 ], [ -72.569114685058594, -11.434250831604004 ], [ -72.571632385253906, -11.435418128967285 ], [ -72.572158813476449, -11.435849189758187 ], [ -72.573066711425781, -11.436590194702148 ], [ -72.574867248535156, -11.437700271606445 ], [ -72.576789855957031, -11.438886642455998 ], [ -72.577110290527287, -11.438896179199219 ], [ -72.577919006347656, -11.438919067382812 ], [ -72.579429626464844, -11.43853759765625 ], [ -72.582412719726562, -11.439240455627441 ], [ -72.583190917968693, -11.438630104064941 ], [ -72.583549499511719, -11.438348770141488 ], [ -72.583480834960881, -11.438164710998535 ], [ -72.583297729492131, -11.437649726867619 ], [ -72.582206726074219, -11.436510086059513 ], [ -72.581443786621094, -11.436124801635685 ], [ -72.580062866210881, -11.435429573059025 ], [ -72.579216003417855, -11.434308052062931 ], [ -72.578956604003906, -11.433551788330078 ], [ -72.578918457031193, -11.433438301086369 ], [ -72.578987121581974, -11.432248115539551 ], [ -72.579696655273438, -11.431170463562012 ], [ -72.580001831054688, -11.431010246276799 ], [ -72.580429077148381, -11.430788993835449 ], [ -72.581550598144531, -11.430797576904297 ], [ -72.58428955078125, -11.43163871765131 ], [ -72.585876464843693, -11.432418823242188 ], [ -72.587020874023381, -11.432486534118652 ], [ -72.588851928710938, -11.432599067687931 ], [ -72.590614318847656, -11.433425903320256 ], [ -72.591072082519531, -11.434006690978947 ], [ -72.591232299804574, -11.434460639953613 ], [ -72.591445922851562, -11.435049057006836 ], [ -72.591217041015568, -11.437779426574707 ], [ -72.591506958007756, -11.43853569030756 ], [ -72.592002868652344, -11.439834594726562 ], [ -72.592559814453068, -11.440327644348031 ], [ -72.594078063964787, -11.44102668762207 ], [ -72.594291687011719, -11.441052436828613 ], [ -72.594917297363224, -11.441118240356332 ], [ -72.596321105957031, -11.440778732299805 ], [ -72.596992492675781, -11.440080642700195 ], [ -72.597091674804688, -11.439978599548283 ], [ -72.597213745117131, -11.439680099487248 ], [ -72.597557067871094, -11.438869476318303 ], [ -72.597587585449162, -11.437690734863281 ], [ -72.597229003906193, -11.436448097229004 ], [ -72.595680236816349, -11.434719085693359 ], [ -72.594856262206918, -11.434696197509766 ], [ -72.594223022460938, -11.434679985046387 ], [ -72.592384338378906, -11.43370246887207 ], [ -72.592002868652344, -11.433499336242676 ], [ -72.591903686523438, -11.433309555053711 ], [ -72.591583251953068, -11.43267917633051 ], [ -72.591590881347599, -11.431885719299316 ], [ -72.591590881347599, -11.431669235229435 ], [ -72.591705322265511, -11.431466102600098 ], [ -72.59185791015625, -11.431189537048283 ], [ -72.594078063964787, -11.429098129272347 ], [ -72.594856262206918, -11.427949905395451 ], [ -72.595100402832031, -11.426874160766545 ], [ -72.595436096191406, -11.425359725952092 ], [ -72.595527648925781, -11.423445701599121 ], [ -72.595596313476506, -11.422140121459847 ], [ -72.595726013183594, -11.421859741210938 ], [ -72.596321105957031, -11.420549392700195 ], [ -72.596809387207031, -11.420106887817326 ], [ -72.596931457519474, -11.419995307922306 ], [ -72.601615905761662, -11.418345451354867 ], [ -72.601966857910156, -11.418430328369084 ], [ -72.603759765625, -11.420162200927678 ], [ -72.604103088378793, -11.420566558837777 ], [ -72.604774475097543, -11.421372413635254 ], [ -72.605232238769474, -11.42238807678217 ], [ -72.605262756347656, -11.424321174621582 ], [ -72.604759216308537, -11.425620079040527 ], [ -72.604637145996094, -11.425938606262207 ], [ -72.603858947753906, -11.429788589477539 ], [ -72.603843688964844, -11.430890083312875 ], [ -72.603820800781136, -11.432090759277287 ], [ -72.604141235351562, -11.433159828185978 ], [ -72.606132507324219, -11.435855865478516 ], [ -72.606437683105469, -11.436267852783146 ], [ -72.606544494628906, -11.436965942382699 ], [ -72.606834411621037, -11.438892364501953 ], [ -72.607429504394474, -11.439709663391113 ], [ -72.608421325683594, -11.440209388732853 ], [ -72.610527038574219, -11.439789772033691 ], [ -72.610855102539006, -11.439565658569279 ], [ -72.611198425292969, -11.439329147338867 ], [ -72.611259460449105, -11.439217567443848 ], [ -72.611595153808594, -11.438594818115234 ], [ -72.611297607421875, -11.436690330505371 ], [ -72.610649108886662, -11.435049057006836 ], [ -72.610656738281193, -11.433218955993596 ], [ -72.610137939453125, -11.432351112365723 ], [ -72.608169555664006, -11.43052959442133 ], [ -72.608039855957031, -11.429909706115666 ], [ -72.608200073242131, -11.429490089416504 ], [ -72.608489990234261, -11.429301261901799 ], [ -72.60888671875, -11.429039001464787 ], [ -72.611541748046761, -11.428468704223633 ], [ -72.616386413574162, -11.428440093994141 ], [ -72.618988037109375, -11.427651405334473 ], [ -72.620437622070312, -11.42720890045166 ], [ -72.621871948242188, -11.426980972289982 ], [ -72.623573303222656, -11.426710128784123 ], [ -72.624252319335938, -11.42633056640625 ], [ -72.624687194824162, -11.426090240478459 ], [ -72.625411987304688, -11.424929618835336 ], [ -72.625274658203011, -11.423933982849121 ], [ -72.625198364257812, -11.423368453979435 ], [ -72.624069213867188, -11.421789169311523 ], [ -72.622093200683537, -11.420590400695687 ], [ -72.619514465332031, -11.420280456542855 ], [ -72.618179321289062, -11.419509887695256 ], [ -72.61745452880848, -11.418672561645451 ], [ -72.61745452880848, -11.417933464050236 ], [ -72.617599487304688, -11.41772270202631 ], [ -72.617668151855469, -11.417630195617562 ], [ -72.619384765625, -11.417092323303223 ], [ -72.619873046875, -11.416938781738168 ], [ -72.620872497558537, -11.415990829467773 ], [ -72.621856689453125, -11.414139747619629 ], [ -72.622306823730412, -11.41365909576416 ], [ -72.623863220214844, -11.412850379943791 ], [ -72.624916076660156, -11.413130760192871 ], [ -72.625587463378906, -11.413854598999023 ], [ -72.627235412597656, -11.415654182434082 ], [ -72.628768920898381, -11.416702270507812 ], [ -72.630607604980412, -11.416708946227971 ], [ -72.630828857421875, -11.416610717773438 ], [ -72.632637023925781, -11.415799140930119 ], [ -72.633583068847656, -11.414898872375488 ], [ -72.633682250976562, -11.414380073547306 ], [ -72.633491516113281, -11.413458824157658 ], [ -72.632400512695256, -11.411449432373047 ], [ -72.632049560546761, -11.409255981445312 ], [ -72.631919860839787, -11.408449172973633 ], [ -72.632095336914062, -11.407955169677678 ], [ -72.632537841796875, -11.406678199768066 ], [ -72.633621215820312, -11.405659675598145 ], [ -72.633865356445312, -11.405584335327148 ], [ -72.634323120117131, -11.405439376830998 ], [ -72.636245727538949, -11.40546989440918 ], [ -72.637397766113281, -11.405488967895508 ], [ -72.638214111328068, -11.405685424804574 ], [ -72.639495849609375, -11.405991554260197 ], [ -72.640434265136662, -11.406469345092717 ], [ -72.640708923339787, -11.406607627868596 ], [ -72.641822814941406, -11.407870292663574 ], [ -72.642127990722599, -11.408527374267521 ], [ -72.642868041992188, -11.410113334655705 ], [ -72.643547058105469, -11.412089347839355 ], [ -72.643829345703125, -11.412896156311035 ], [ -72.644226074218693, -11.413093566894474 ], [ -72.644577026367188, -11.413269996643066 ], [ -72.645118713378906, -11.413191795349064 ], [ -72.645683288574105, -11.41310977935791 ], [ -72.646408081054688, -11.412253379821777 ], [ -72.646820068359318, -11.411769866943303 ], [ -72.646911621093693, -11.41022872924799 ], [ -72.647132873535156, -11.409709930419922 ], [ -72.648971557617188, -11.408398628234863 ], [ -72.649040222167969, -11.407512664794922 ], [ -72.649147033691406, -11.406097412109375 ], [ -72.649436950683594, -11.405359268188477 ], [ -72.650360107421761, -11.404708862304631 ], [ -72.651298522949162, -11.404442787170353 ], [ -72.652603149414062, -11.404068946838322 ], [ -72.653495788574162, -11.403129577636719 ], [ -72.653472900390568, -11.40176868438715 ], [ -72.652297973632812, -11.400215148925724 ], [ -72.6512451171875, -11.398819923400822 ], [ -72.651527404785156, -11.398054122924805 ], [ -72.651588439941349, -11.397885322570744 ], [ -72.653472900390568, -11.396119117736816 ], [ -72.654281616210938, -11.395852088928166 ], [ -72.655372619628906, -11.395852088928166 ], [ -72.6578369140625, -11.396552085876465 ], [ -72.657966613769474, -11.396589279174805 ], [ -72.658515930175781, -11.396624565124512 ], [ -72.65936279296875, -11.396679878234863 ], [ -72.661880493164006, -11.396089553832951 ], [ -72.66259765625, -11.395786285400391 ], [ -72.664100646972656, -11.395159721374455 ], [ -72.664916992187443, -11.394400596618596 ], [ -72.664993286132812, -11.39421367645258 ], [ -72.665206909179631, -11.393718719482422 ], [ -72.66475677490223, -11.392251014709416 ], [ -72.664619445800781, -11.391818046569767 ], [ -72.6646728515625, -11.390946388244629 ], [ -72.664878845214844, -11.387788772582951 ], [ -72.665573120117188, -11.386809349060059 ], [ -72.666168212890568, -11.386391639709473 ], [ -72.666397094726562, -11.386230468749886 ], [ -72.666587829589844, -11.386173248291016 ], [ -72.667549133300781, -11.385898590087891 ], [ -72.668663024902287, -11.386079788207951 ], [ -72.669456481933594, -11.386768341064396 ], [ -72.669921875, -11.387168884277287 ], [ -72.670692443847656, -11.38843822479248 ], [ -72.671424865722599, -11.388798713684025 ], [ -72.672546386718693, -11.388798713684025 ], [ -72.673843383789062, -11.387640953063851 ], [ -72.674919128417969, -11.387370109558105 ], [ -72.676940917968693, -11.3876695632934 ], [ -72.678413391113281, -11.388178825378361 ], [ -72.679580688476562, -11.388582229614258 ], [ -72.68221282958973, -11.390300750732365 ], [ -72.682518005371094, -11.390694618225098 ], [ -72.683120727539062, -11.391473770141602 ], [ -72.683525085449162, -11.392768859863281 ], [ -72.68511962890625, -11.394186019897404 ], [ -72.686470031738224, -11.395387649536133 ], [ -72.686958312988224, -11.395707130432129 ], [ -72.687828063964787, -11.396273612976074 ], [ -72.690086364746094, -11.396842002868652 ], [ -72.690650939941406, -11.39673900604248 ], [ -72.691261291503849, -11.396630287170353 ], [ -72.691688537597656, -11.396384239196721 ], [ -72.692787170410099, -11.395758628845215 ], [ -72.693138122558594, -11.395161628723145 ], [ -72.693206787109375, -11.395038604736328 ], [ -72.693237304687443, -11.394303321838379 ], [ -72.693283081054688, -11.393300056457463 ], [ -72.693199157714844, -11.391740798950195 ], [ -72.693107604980469, -11.391420364379826 ], [ -72.692626953125, -11.389799118041935 ], [ -72.692871093749943, -11.388338088989258 ], [ -72.694908142089844, -11.386383056640625 ], [ -72.696517944335824, -11.384840011596623 ], [ -72.697059631347599, -11.384069442748967 ], [ -72.697586059570312, -11.383329391479492 ], [ -72.698257446289062, -11.381909370422363 ], [ -72.699783325195312, -11.380438804626465 ], [ -72.700843811035156, -11.380109786987305 ], [ -72.702323913574162, -11.380165100097656 ], [ -72.7039794921875, -11.380458831787109 ], [ -72.705429077148438, -11.381099700927734 ], [ -72.707183837890568, -11.381091117858887 ], [ -72.707725524902344, -11.380947113037109 ], [ -72.708992004394474, -11.380610466003418 ], [ -72.709327697753906, -11.380235671997013 ], [ -72.710281372070312, -11.379190444946232 ], [ -72.710731506347656, -11.377708435058537 ], [ -72.710716247558537, -11.373200416564941 ], [ -72.710952758789062, -11.371768951416016 ], [ -72.712432861328068, -11.369460105895996 ], [ -72.712692260742131, -11.368489265441838 ], [ -72.71380615234375, -11.366390228271428 ], [ -72.714340209960881, -11.364258766174316 ], [ -72.715057373046875, -11.362859725952148 ], [ -72.715202331542912, -11.361092567443848 ], [ -72.71533203125, -11.359560012817326 ], [ -72.715209960937386, -11.35914230346674 ], [ -72.715103149414006, -11.358779907226562 ], [ -72.714988708496037, -11.358681678771916 ], [ -72.714447021484261, -11.358219146728516 ], [ -72.710517883300724, -11.356758117675724 ], [ -72.709075927734318, -11.355870246887207 ], [ -72.707977294921875, -11.354768753051758 ], [ -72.707656860351506, -11.353296279907227 ], [ -72.707588195800781, -11.352979660034123 ], [ -72.707656860351506, -11.352564811706543 ], [ -72.707832336425724, -11.351518630981445 ], [ -72.708213806152287, -11.350873947143498 ], [ -72.708580017089844, -11.350257873535099 ], [ -72.711387634277287, -11.348345756530648 ], [ -72.712677001953125, -11.347776412963867 ], [ -72.714363098144531, -11.347725868224984 ], [ -72.715324401855469, -11.347869873046818 ], [ -72.716285705566406, -11.348011016845703 ], [ -72.718193054199219, -11.349004745483398 ], [ -72.718284606933594, -11.349117279052678 ], [ -72.718963623046875, -11.349931716918888 ], [ -72.71893310546875, -11.351938247680607 ], [ -72.718780517578125, -11.352154731750488 ], [ -72.71856689453125, -11.352458000183105 ], [ -72.717918395996094, -11.354345321655273 ], [ -72.717849731445256, -11.35454082489008 ], [ -72.716957092285156, -11.356079101562443 ], [ -72.716850280761719, -11.356682777404728 ], [ -72.716766357421875, -11.357125282287598 ], [ -72.717185974121037, -11.360988616943359 ], [ -72.717666625976506, -11.361877441406193 ], [ -72.718246459960881, -11.362351417541504 ], [ -72.7188720703125, -11.362387657165527 ], [ -72.719627380371094, -11.362428665161076 ], [ -72.721206665039006, -11.361911773681527 ], [ -72.721305847167912, -11.361880302429142 ], [ -72.721595764160043, -11.361738204955998 ], [ -72.722465515136719, -11.361308097839299 ], [ -72.723159790039062, -11.360450744628849 ], [ -72.723236083984375, -11.359873771667424 ], [ -72.723480224609318, -11.358089447021428 ], [ -72.72265625, -11.356049537658691 ], [ -72.722480773925781, -11.353850364685002 ], [ -72.722816467285099, -11.352129936218205 ], [ -72.723518371582031, -11.351228713989258 ], [ -72.723716735839844, -11.350969314575138 ], [ -72.724967956542969, -11.350370407104492 ], [ -72.727027893066349, -11.349818229675293 ], [ -72.727638244628906, -11.350040435791016 ], [ -72.728370666503793, -11.350826263427678 ], [ -72.728897094726562, -11.351388931274414 ], [ -72.729347229003906, -11.351407051086426 ], [ -72.730552673339787, -11.351458549499455 ], [ -72.730758666992188, -11.351413726806584 ], [ -72.731697082519474, -11.351200103759709 ], [ -72.733520507812386, -11.352100372314453 ], [ -72.734725952148381, -11.352139472961426 ], [ -72.735771179199162, -11.351388931274414 ], [ -72.737541198730469, -11.347940444946175 ], [ -72.737686157226506, -11.347842216491642 ], [ -72.737846374511719, -11.347735404968262 ], [ -72.73834228515625, -11.347743988037109 ], [ -72.73867034912098, -11.347750663757267 ], [ -72.738990783691406, -11.34792518615717 ], [ -72.739570617675781, -11.348237037658691 ], [ -72.744422912597656, -11.354066848754883 ], [ -72.745742797851562, -11.354916572570801 ], [ -72.746200561523324, -11.355213165283146 ], [ -72.749031066894474, -11.358123779296875 ], [ -72.750434875488281, -11.359091758727971 ], [ -72.752082824706974, -11.360226631164551 ], [ -72.756103515624943, -11.361667633056641 ], [ -72.758041381835938, -11.362936973571664 ], [ -72.759658813476562, -11.365055084228459 ], [ -72.75994873046875, -11.365694999694767 ], [ -72.761146545410099, -11.36832141876215 ], [ -72.762611389160156, -11.370112419128418 ], [ -72.76348876953125, -11.371185302734375 ], [ -72.764595031738224, -11.372033119201603 ], [ -72.771049499511719, -11.374694824218636 ], [ -72.775627136230469, -11.375930786132699 ], [ -72.777397155761719, -11.375965118408203 ], [ -72.781898498535156, -11.375283241271916 ], [ -72.784294128417969, -11.375589370727482 ], [ -72.787887573242188, -11.37804985046381 ], [ -72.788032531738224, -11.378182411193848 ], [ -72.793998718261719, -11.383725166320801 ], [ -72.794876098632812, -11.384220123290959 ], [ -72.795280456542912, -11.384448051452637 ], [ -72.796379089355469, -11.384420394897461 ], [ -72.797195434570256, -11.383502006530705 ], [ -72.797492980956974, -11.382829666137638 ], [ -72.797401428222599, -11.381642341613713 ], [ -72.797332763671875, -11.38079929351801 ], [ -72.795928955078125, -11.378108978271428 ], [ -72.792984008789062, -11.375166893005371 ], [ -72.790626525878849, -11.371895790100098 ], [ -72.79046630859375, -11.371547698974496 ], [ -72.789863586425724, -11.370219230651855 ], [ -72.789749145507756, -11.368210792541447 ], [ -72.789817810058594, -11.368013381958008 ], [ -72.790496826171875, -11.36613941192627 ], [ -72.792007446289062, -11.364640235900879 ], [ -72.793228149414062, -11.364276885986271 ], [ -72.793792724609261, -11.364109039306527 ], [ -72.793991088867188, -11.364094734191838 ], [ -72.795265197753906, -11.363994598388615 ], [ -72.798072814941349, -11.364596366882324 ], [ -72.799423217773438, -11.36543083190918 ], [ -72.799568176269531, -11.365518569946289 ], [ -72.799659729003906, -11.365662574768066 ], [ -72.800254821777287, -11.366626739501953 ], [ -72.800323486328125, -11.367349624633789 ], [ -72.799896240234261, -11.368048667907715 ], [ -72.798896789550781, -11.368789672851562 ], [ -72.798477172851562, -11.369097709655762 ], [ -72.797035217285043, -11.370524406433105 ], [ -72.796913146972599, -11.371081352233887 ], [ -72.796813964843693, -11.37150859832758 ], [ -72.796829223632756, -11.372456550598145 ], [ -72.796836853027287, -11.373172760009766 ], [ -72.797286987304631, -11.374668121337834 ], [ -72.797378540039006, -11.37650012969965 ], [ -72.797836303710938, -11.377772331237793 ], [ -72.798683166503906, -11.380142211914062 ], [ -72.799087524414062, -11.382785797119084 ], [ -72.799278259277344, -11.38404369354248 ], [ -72.799819946289062, -11.385212898254395 ], [ -72.800529479980412, -11.385871887207031 ], [ -72.801048278808594, -11.385976791381779 ], [ -72.801643371582031, -11.386099815368596 ], [ -72.802825927734318, -11.38556003570551 ], [ -72.804092407226449, -11.384285926818848 ], [ -72.804306030273438, -11.384069442748967 ], [ -72.804527282714844, -11.383269309997559 ], [ -72.804702758789062, -11.382649421691895 ], [ -72.804695129394531, -11.381546020507756 ], [ -72.8046875, -11.38079929351801 ], [ -72.804916381835881, -11.379449844360352 ], [ -72.805145263671875, -11.378520011901855 ], [ -72.805496215820256, -11.377128601074219 ], [ -72.805908203125, -11.376580238342285 ], [ -72.806060791015568, -11.376379966735783 ], [ -72.806549072265568, -11.376270294189453 ], [ -72.806861877441406, -11.376198768615723 ], [ -72.807746887207031, -11.37647819519043 ], [ -72.808395385742188, -11.376837730407658 ], [ -72.810104370117188, -11.377779006957951 ], [ -72.810928344726506, -11.378339767455998 ], [ -72.813026428222599, -11.379763603210449 ], [ -72.81429290771473, -11.38004207611084 ], [ -72.814613342285156, -11.379876136779785 ], [ -72.814781188964844, -11.379789352416935 ], [ -72.814987182617188, -11.379289627075138 ], [ -72.814437866210938, -11.377639770507756 ], [ -72.814552307128849, -11.376886367797852 ], [ -72.814651489257756, -11.376188278198242 ], [ -72.815483093261719, -11.375443458557072 ], [ -72.816459655761662, -11.375178337097168 ], [ -72.817550659179688, -11.375343322753849 ], [ -72.819923400878793, -11.376814842224121 ], [ -72.820976257324219, -11.377210617065373 ], [ -72.822761535644474, -11.378829956054688 ], [ -72.82379150390625, -11.380458831787109 ], [ -72.824371337890568, -11.382223129272461 ], [ -72.824142456054688, -11.382911682128906 ], [ -72.824028015136719, -11.383259773254395 ], [ -72.8238525390625, -11.383485794067326 ], [ -72.823341369628849, -11.384140014648438 ], [ -72.820640563964844, -11.386280059814453 ], [ -72.8203125, -11.386980056762695 ], [ -72.820571899414006, -11.388479232788086 ], [ -72.821098327636719, -11.388954162597656 ], [ -72.821411132812443, -11.389233589172363 ], [ -72.822410583496094, -11.389694213867188 ], [ -72.822853088378849, -11.389645576477051 ], [ -72.823143005371037, -11.389616966247502 ], [ -72.824851989746037, -11.388697624206543 ], [ -72.826446533203125, -11.388190269470158 ], [ -72.828506469726449, -11.388155937194824 ], [ -72.831275939941406, -11.38811016082758 ], [ -72.833602905273438, -11.38660812377924 ], [ -72.833953857421875, -11.386499404907227 ], [ -72.8348388671875, -11.386216163635254 ], [ -72.835624694824162, -11.386280059814453 ], [ -72.836410522460881, -11.386343955993652 ], [ -72.8394775390625, -11.387649536132756 ], [ -72.842056274414062, -11.387290000915527 ], [ -72.843452453613224, -11.386548995971623 ], [ -72.844306945800724, -11.385358810424805 ], [ -72.844383239746094, -11.38444995880127 ], [ -72.844245910644531, -11.383448600769043 ], [ -72.843467712402287, -11.382022857665959 ], [ -72.843276977539006, -11.381678581237793 ], [ -72.842323303222599, -11.380688667297306 ], [ -72.841468811035099, -11.380255699157715 ], [ -72.841316223144531, -11.380179405212346 ], [ -72.838485717773381, -11.380284309387207 ], [ -72.836120605468693, -11.380368232727051 ], [ -72.834831237792969, -11.37969970703125 ], [ -72.834609985351449, -11.379404067993107 ], [ -72.83404541015625, -11.378653526306096 ], [ -72.833816528320256, -11.377479553222656 ], [ -72.833816528320256, -11.377091407775822 ], [ -72.833816528320256, -11.376449584960938 ], [ -72.834411621093693, -11.374629020690918 ], [ -72.835586547851562, -11.372529983520451 ], [ -72.836105346679631, -11.372101783752441 ], [ -72.837165832519474, -11.37122917175293 ], [ -72.838645935058594, -11.370478630065918 ], [ -72.840599060058537, -11.370439529418888 ], [ -72.841484069824219, -11.370894432067871 ], [ -72.841667175292855, -11.370988845825138 ], [ -72.842262268066406, -11.371641159057617 ], [ -72.843666076660043, -11.373184204101562 ], [ -72.84481048583973, -11.373412132263127 ], [ -72.845069885253849, -11.373277664184513 ], [ -72.845359802246037, -11.373128890991211 ], [ -72.845573425292855, -11.372690200805664 ], [ -72.846115112304631, -11.371557235717717 ], [ -72.846138000488224, -11.371009826660156 ], [ -72.845230102539062, -11.368594169616699 ], [ -72.84481048583973, -11.367469787597656 ], [ -72.844482421875, -11.365839004516545 ], [ -72.844474792480469, -11.365406036376896 ], [ -72.844467163085938, -11.365109443664551 ], [ -72.845077514648381, -11.362990379333496 ], [ -72.84588623046875, -11.362218856811467 ], [ -72.846878051757756, -11.362089157104492 ], [ -72.848167419433594, -11.362348556518555 ], [ -72.851486206054574, -11.36487865447998 ], [ -72.85243988037098, -11.365212440490723 ], [ -72.852638244628906, -11.365278244018498 ], [ -72.852890014648381, -11.365257263183594 ], [ -72.853370666503849, -11.365209579467773 ], [ -72.854217529296818, -11.364238739013672 ], [ -72.855117797851562, -11.363210678100586 ], [ -72.85601806640625, -11.359929084777775 ], [ -72.856185913085938, -11.359578132629395 ], [ -72.857307434081918, -11.357179641723576 ], [ -72.858917236328068, -11.355895042419434 ], [ -72.859901428222656, -11.355111122131348 ], [ -72.861152648925781, -11.354709625244141 ], [ -72.862640380859318, -11.354716300964299 ], [ -72.863365173339844, -11.354719161987305 ], [ -72.863502502441293, -11.354762077331543 ], [ -72.865501403808537, -11.355377197265625 ], [ -72.868515014648438, -11.355949401855469 ], [ -72.869186401367188, -11.356241226196175 ], [ -72.869712829589844, -11.356471061706543 ], [ -72.871162414550781, -11.357889175415039 ], [ -72.872169494628849, -11.360928535461426 ], [ -72.872283935546875, -11.361111640930176 ], [ -72.872657775878793, -11.361700057983398 ], [ -72.872726440429631, -11.362092018127385 ], [ -72.872833251953068, -11.362705230712891 ], [ -72.873573303222656, -11.363979339599553 ], [ -72.874755859374886, -11.36498832702631 ], [ -72.876602172851562, -11.364849090576115 ], [ -72.878028869628906, -11.363520622253418 ], [ -72.87811279296875, -11.363017082214299 ], [ -72.878250122070256, -11.362180709838867 ], [ -72.87823486328125, -11.362021446228027 ], [ -72.878143310546875, -11.360979080200138 ], [ -72.877433776855469, -11.359965324401799 ], [ -72.877189636230469, -11.359619140624943 ], [ -72.877037048339787, -11.359235763549805 ], [ -72.876647949218693, -11.358248710632267 ], [ -72.87652587890625, -11.355229377746525 ], [ -72.877372741699219, -11.354240417480469 ], [ -72.877601623535099, -11.35407829284668 ], [ -72.879325866699162, -11.352868080139103 ], [ -72.880355834960881, -11.352400779724121 ], [ -72.880714416503906, -11.352351188659554 ], [ -72.8814697265625, -11.352246284484863 ], [ -72.882080078124943, -11.352449417114258 ], [ -72.882362365722599, -11.352999687194767 ], [ -72.881935119628906, -11.354757308959961 ], [ -72.881607055664006, -11.356079101562443 ], [ -72.882339477539062, -11.356928825378304 ], [ -72.883506774902287, -11.357448577880859 ], [ -72.885009765625, -11.357589721679631 ], [ -72.886177062988224, -11.357359886169434 ], [ -72.886672973632756, -11.357036590576115 ], [ -72.887283325195312, -11.35663986206049 ], [ -72.888481140136662, -11.355531692504883 ], [ -72.888702392578125, -11.355328559875431 ], [ -72.890686035156136, -11.352248191833439 ], [ -72.890769958496037, -11.350959777832031 ], [ -72.890747070312443, -11.350832939147949 ], [ -72.8905029296875, -11.349599838256836 ], [ -72.889602661132756, -11.348079681396428 ], [ -72.889137268066349, -11.347289085388127 ], [ -72.888755798339787, -11.345600128173771 ], [ -72.88909912109375, -11.343999862670842 ], [ -72.890014648437386, -11.343215942382756 ], [ -72.890876770019418, -11.342897415161133 ], [ -72.891853332519531, -11.342983245849609 ], [ -72.892822265625, -11.343071937561035 ], [ -72.894058227539062, -11.343453407287598 ], [ -72.894569396972599, -11.343839645385629 ], [ -72.894950866699162, -11.344126701354924 ], [ -72.895698547363281, -11.345606803894043 ], [ -72.895797729492131, -11.347350120544434 ], [ -72.895759582519531, -11.347466468811035 ], [ -72.895584106445312, -11.347953796386662 ], [ -72.894561767578068, -11.349808692932072 ], [ -72.893920898437443, -11.350637435913086 ], [ -72.892135620117188, -11.352938652038574 ], [ -72.891906738281193, -11.3536376953125 ], [ -72.891761779785156, -11.354083061218262 ], [ -72.892036437988281, -11.354940414428711 ], [ -72.892333984375, -11.35540676116932 ], [ -72.892936706542912, -11.356360435485726 ], [ -72.893966674804688, -11.357423782348633 ], [ -72.895423889160099, -11.35821342468256 ], [ -72.896331787109375, -11.358110427856388 ], [ -72.897659301757812, -11.357259750366154 ], [ -72.898025512695199, -11.356939315795898 ], [ -72.900077819824219, -11.35513973236084 ], [ -72.900909423828125, -11.35405254364008 ], [ -72.901710510253849, -11.353009223937988 ], [ -72.903053283691349, -11.352199554443359 ], [ -72.904914855957031, -11.351628303527775 ], [ -72.907211303710938, -11.351690292358398 ], [ -72.909378051757699, -11.351749420166016 ], [ -72.910713195800668, -11.351380348205566 ], [ -72.911819458007756, -11.350391387939453 ], [ -72.913467407226506, -11.347530364990234 ], [ -72.915435791015625, -11.345583915710336 ], [ -72.918731689453125, -11.343888282775822 ], [ -72.919181823730412, -11.343790054321289 ], [ -72.921279907226506, -11.343337059020996 ], [ -72.922424316406193, -11.343345642089844 ], [ -72.9229736328125, -11.343350410461426 ], [ -72.9232177734375, -11.343501091003418 ], [ -72.924285888671875, -11.34416389465332 ], [ -72.925308227539062, -11.345329284667969 ], [ -72.925514221191406, -11.345562934875488 ], [ -72.925933837890568, -11.346648216247559 ], [ -72.926277160644531, -11.347530364990234 ], [ -72.925926208496094, -11.348947525024414 ], [ -72.924957275390625, -11.350190162658635 ], [ -72.924110412597656, -11.350896835327035 ], [ -72.921432495117188, -11.352377891540527 ], [ -72.920196533203125, -11.353368759155217 ], [ -72.920158386230469, -11.353853225707894 ], [ -72.920135498046818, -11.354204177856388 ], [ -72.920402526855412, -11.354570388793945 ], [ -72.920684814453125, -11.354955673217773 ], [ -72.921257019042969, -11.355188369750863 ], [ -72.922286987304688, -11.354998588561955 ], [ -72.923812866210938, -11.354298591613713 ], [ -72.924301147460938, -11.353951454162598 ], [ -72.926277160644531, -11.352527618408203 ], [ -72.927650451660099, -11.35176944732666 ], [ -72.92864990234375, -11.351218223571777 ], [ -72.929779052734318, -11.350836753845215 ], [ -72.932708740234318, -11.35037708282465 ], [ -72.934196472167969, -11.349008560180664 ], [ -72.934471130371094, -11.348286628723088 ], [ -72.934776306152344, -11.347469329833984 ], [ -72.93475341796875, -11.346794128417969 ], [ -72.934722900390568, -11.346090316772461 ], [ -72.93398284912098, -11.34390926361084 ], [ -72.93316650390625, -11.343020439147949 ], [ -72.929176330566349, -11.340490341186467 ], [ -72.924209594726562, -11.337889671325684 ], [ -72.923271179199162, -11.337099075317383 ], [ -72.921882629394531, -11.335928916931096 ], [ -72.921081542968693, -11.334149360656681 ], [ -72.920890808105412, -11.332430839538574 ], [ -72.921241760253906, -11.330810546874943 ], [ -72.922607421874943, -11.328529357910099 ], [ -72.924491882324219, -11.327327728271484 ], [ -72.924873352050781, -11.327086448669434 ], [ -72.92559814453125, -11.327045440673828 ], [ -72.926689147949219, -11.327378273010197 ], [ -72.928054809570256, -11.328544616699219 ], [ -72.929771423339787, -11.330013275146484 ], [ -72.930206298828125, -11.33028602600092 ], [ -72.931182861328068, -11.33090877532959 ], [ -72.934997558593693, -11.331437110900879 ], [ -72.935218811035043, -11.33146858215332 ], [ -72.9364013671875, -11.331822395324707 ], [ -72.937705993652344, -11.332535743713322 ], [ -72.938247680664006, -11.333288192749023 ], [ -72.938179016113168, -11.335041046142578 ], [ -72.938262939453068, -11.335315704345703 ], [ -72.938392639160156, -11.335721969604435 ], [ -72.940345764160099, -11.338650703430119 ], [ -72.940467834472543, -11.338736534118652 ], [ -72.940734863281193, -11.33892917633051 ], [ -72.944633483886662, -11.339770317077637 ], [ -72.9481201171875, -11.339419364929199 ], [ -72.949310302734318, -11.338549613952637 ], [ -72.949501037597599, -11.338014602661076 ], [ -72.949737548828125, -11.337355613708439 ], [ -72.949668884277344, -11.334698677062988 ], [ -72.948722839355469, -11.332798004150334 ], [ -72.948547363281193, -11.331958770751896 ], [ -72.948677062988281, -11.331000328063965 ], [ -72.949485778808594, -11.330339431762695 ], [ -72.949661254882812, -11.330302238464299 ], [ -72.950302124023438, -11.330156326293945 ], [ -72.951080322265625, -11.330236434936523 ], [ -72.951515197753849, -11.330284118652344 ], [ -72.957069396972656, -11.333301544189339 ], [ -72.958282470703068, -11.333865165710449 ], [ -72.959861755371094, -11.334595680236816 ], [ -72.960937499999943, -11.334864616393986 ], [ -72.961471557617188, -11.334813117980957 ], [ -72.961860656738281, -11.334772109985295 ], [ -72.963088989257812, -11.334098815917969 ], [ -72.963821411132756, -11.333306312560978 ], [ -72.965156555175724, -11.33185863494873 ], [ -72.965408325195312, -11.331100463867131 ], [ -72.965278625488281, -11.330269813537541 ], [ -72.9652099609375, -11.329816818237248 ], [ -72.964469909667912, -11.329106330871525 ], [ -72.963340759277287, -11.328700065612679 ], [ -72.957824707031136, -11.327378273010197 ], [ -72.957191467285156, -11.32740306854248 ], [ -72.954849243164006, -11.327503204345703 ], [ -72.95452880859375, -11.32761287689209 ], [ -72.954055786132812, -11.327776908874512 ], [ -72.953247070312386, -11.328378677368107 ], [ -72.952705383300781, -11.328236579894963 ], [ -72.952133178710938, -11.327758789062443 ], [ -72.951858520507812, -11.326960563659611 ], [ -72.951446533203125, -11.325749397277832 ], [ -72.951362609863281, -11.325210571289062 ], [ -72.951255798339844, -11.324489593505859 ], [ -72.951499938964787, -11.321629524230957 ], [ -72.951911926269418, -11.320528984069824 ], [ -72.952400207519531, -11.320135116577148 ], [ -72.952919006347656, -11.319720268249455 ], [ -72.953727722167969, -11.319464683532715 ], [ -72.954505920410156, -11.319218635559082 ], [ -72.95489501953125, -11.31926441192627 ], [ -72.955535888671761, -11.319339752197266 ], [ -72.956352233886719, -11.319595336914062 ], [ -72.957931518554688, -11.320089340209904 ], [ -72.958900451660156, -11.320110321044865 ], [ -72.959747314453125, -11.31974983215332 ], [ -72.960540771484375, -11.31895923614502 ], [ -72.96099853515625, -11.318070411682015 ], [ -72.961006164550781, -11.317886352539062 ], [ -72.961067199706918, -11.316688537597599 ], [ -72.960861206054631, -11.315510749816895 ], [ -72.960289001464787, -11.314459800720158 ], [ -72.959411621093693, -11.313628196716252 ], [ -72.958831787109375, -11.313329696655273 ], [ -72.956962585449105, -11.313158988952523 ], [ -72.956146240234375, -11.313228607177734 ], [ -72.955917358398324, -11.313334465026799 ], [ -72.955207824707031, -11.313657760620117 ], [ -72.955093383789062, -11.313654899597168 ], [ -72.954467773437443, -11.313639640808105 ], [ -72.952369689941349, -11.312881469726506 ], [ -72.950546264648381, -11.311619758605957 ], [ -72.948112487792969, -11.310471534729004 ], [ -72.947074890136719, -11.310164451599064 ], [ -72.945877075195256, -11.309805870056096 ], [ -72.944488525390625, -11.309805870056096 ], [ -72.943931579589844, -11.310037612915039 ], [ -72.943809509277344, -11.310091018676758 ], [ -72.942832946777287, -11.311079978942871 ], [ -72.942710876464844, -11.311334609985352 ], [ -72.942405700683594, -11.311996459960938 ], [ -72.942306518554688, -11.312854766845703 ], [ -72.943191528320312, -11.313523292541504 ], [ -72.943679809570256, -11.313895225524846 ], [ -72.945709228515511, -11.314487457275334 ], [ -72.946029663085938, -11.314863204956055 ], [ -72.94618988037098, -11.31505012512207 ], [ -72.94622802734375, -11.315692901611328 ], [ -72.944129943847656, -11.320079803466797 ], [ -72.942276000976449, -11.322279930114689 ], [ -72.941635131835938, -11.322585105895939 ], [ -72.94061279296875, -11.322640419006291 ], [ -72.938758850097656, -11.32205867767334 ], [ -72.937408447265568, -11.320929527282715 ], [ -72.936798095703125, -11.31970024108881 ], [ -72.936798095703125, -11.318969726562443 ], [ -72.936790466308594, -11.318241119384766 ], [ -72.93695068359375, -11.3178453445434 ], [ -72.937507629394418, -11.316450119018498 ], [ -72.937545776367188, -11.315535545349064 ], [ -72.93756103515625, -11.315079689025822 ], [ -72.937370300292969, -11.314886093139648 ], [ -72.936782836914062, -11.314289093017521 ], [ -72.936180114746094, -11.31402683258051 ], [ -72.934646606445199, -11.313359260559025 ], [ -72.933509826660156, -11.312159538269043 ], [ -72.933410644531136, -11.311957359313965 ], [ -72.932777404785156, -11.310669898986816 ], [ -72.932586669921875, -11.309309005737248 ], [ -72.932991027831974, -11.30502891540516 ], [ -72.933563232421818, -11.304430007934513 ], [ -72.934158325195256, -11.304220199584961 ], [ -72.935165405273438, -11.303867340087891 ], [ -72.935615539550781, -11.304094314575195 ], [ -72.9368896484375, -11.304737091064453 ], [ -72.937866210937443, -11.305576324462891 ], [ -72.938262939453068, -11.305697441101017 ], [ -72.938766479492188, -11.305851936340275 ], [ -72.940834045410099, -11.30589485168457 ], [ -72.941551208496094, -11.305909156799316 ], [ -72.943786621093693, -11.305788040161019 ], [ -72.945022583007756, -11.305502891540471 ], [ -72.947410583496037, -11.304948806762695 ], [ -72.94891357421875, -11.304830551147404 ], [ -72.949432373046761, -11.304786682128793 ], [ -72.953430175781193, -11.304915428161621 ], [ -72.954948425292912, -11.305375099182072 ], [ -72.9552001953125, -11.30525016784668 ], [ -72.955726623535043, -11.30497932434082 ], [ -72.955841064453125, -11.304292678833008 ], [ -72.955886840820256, -11.303992271423283 ], [ -72.955207824707031, -11.302480697631836 ], [ -72.954689025878906, -11.302083969116211 ], [ -72.952400207519531, -11.300350189208984 ], [ -72.952186584472599, -11.299945831298828 ], [ -72.951683044433537, -11.298979759216309 ], [ -72.951751708984375, -11.298159599304142 ], [ -72.953460693359375, -11.294489860534668 ], [ -72.953414916992131, -11.293907165527287 ], [ -72.953399658203068, -11.293759346008301 ], [ -72.952949523925724, -11.293161392211914 ], [ -72.952560424804631, -11.293057441711369 ], [ -72.952163696289006, -11.292949676513615 ], [ -72.951034545898381, -11.292985916137638 ], [ -72.948516845703125, -11.294178009033146 ], [ -72.946868896484375, -11.294740676879883 ], [ -72.945808410644418, -11.295101165771484 ], [ -72.945106506347599, -11.295060157775822 ], [ -72.943031311035099, -11.294939041137695 ], [ -72.942489624023438, -11.294740676879883 ], [ -72.941886901855412, -11.294520378112793 ], [ -72.939872741699162, -11.293069839477482 ], [ -72.936492919921875, -11.292039871215763 ], [ -72.936264038085881, -11.291869163513127 ], [ -72.936058044433537, -11.291719436645508 ], [ -72.935966491699162, -11.290349006652832 ], [ -72.936080932617074, -11.290137290954533 ], [ -72.936271667480355, -11.289778709411564 ], [ -72.938087463378906, -11.287933349609375 ], [ -72.938407897949219, -11.28760910034174 ], [ -72.939628601074219, -11.285770416259766 ], [ -72.939796447753793, -11.284589767455998 ], [ -72.939598083496037, -11.283304214477539 ], [ -72.939521789550781, -11.282779693603516 ], [ -72.939651489257812, -11.282228469848576 ], [ -72.939796447753793, -11.281628608703556 ], [ -72.940353393554631, -11.281182289123535 ], [ -72.941169738769531, -11.280528068542424 ], [ -72.942970275878906, -11.280263900756836 ], [ -72.943077087402344, -11.280249595642033 ], [ -72.945365905761719, -11.278847694396916 ], [ -72.945266723632812, -11.277789115905762 ], [ -72.945137023925668, -11.276359558105412 ], [ -72.945289611816406, -11.275919914245605 ], [ -72.945396423339787, -11.275628089904671 ], [ -72.945892333984318, -11.275367736816406 ], [ -72.946380615234261, -11.275108337402287 ], [ -72.947311401367131, -11.27519512176508 ], [ -72.94915771484375, -11.275370597839299 ], [ -72.951492309570256, -11.275019645690918 ], [ -72.953750610351562, -11.274678230285531 ], [ -72.954742431640568, -11.274148941040039 ], [ -72.955619812011662, -11.273678779602051 ], [ -72.956886291503906, -11.272410392761174 ], [ -72.957443237304574, -11.271149635314828 ], [ -72.957519531249943, -11.269308090209961 ], [ -72.955513000488224, -11.264551162719727 ], [ -72.955528259277287, -11.264055252075195 ], [ -72.955528259277287, -11.263909339904785 ], [ -72.955780029296875, -11.263644218444767 ], [ -72.955917358398324, -11.26349925994873 ], [ -72.957412719726506, -11.262998580932617 ], [ -72.958717346191406, -11.263009071350041 ], [ -72.959327697753849, -11.263201713562012 ], [ -72.959770202636719, -11.263339042663517 ], [ -72.961006164550781, -11.264178276062012 ], [ -72.961845397949219, -11.265610694885197 ], [ -72.962081909179631, -11.267245292663574 ], [ -72.962272644042912, -11.268596649169922 ], [ -72.962875366210824, -11.268988609313908 ], [ -72.963027954101562, -11.269088745117131 ], [ -72.964225769042969, -11.269016265869084 ], [ -72.9652099609375, -11.268519401550236 ], [ -72.9659423828125, -11.267847061157227 ], [ -72.967750549316406, -11.266189575195312 ], [ -72.968215942382699, -11.26551342010498 ], [ -72.968467712402287, -11.265149116516113 ], [ -72.968505859374886, -11.263308525085449 ], [ -72.967437744140568, -11.258650779724121 ], [ -72.967491149902344, -11.257901191711426 ], [ -72.967613220214787, -11.256169319152775 ], [ -72.967910766601506, -11.254849433898926 ], [ -72.968116760253849, -11.253928184509221 ], [ -72.968566894531193, -11.253114700317326 ], [ -72.968650817871094, -11.252958297729379 ], [ -72.969398498535156, -11.25226879119873 ], [ -72.970008850097599, -11.25207328796381 ], [ -72.970451354980469, -11.251930236816349 ], [ -72.973075866699162, -11.251648902893066 ], [ -72.973716735839787, -11.251300811767578 ], [ -72.974502563476506, -11.250389099121094 ], [ -72.974632263183594, -11.245710372924691 ], [ -72.974472045898438, -11.24146842956543 ], [ -72.974418640136605, -11.24009895324707 ], [ -72.974517822265625, -11.239433288574162 ], [ -72.974761962890568, -11.237739562988224 ], [ -72.974822998046875, -11.235204696655217 ], [ -72.974906921386719, -11.231588363647404 ], [ -72.975379943847656, -11.228726387023926 ], [ -72.975540161132756, -11.227780342102051 ], [ -72.975723266601506, -11.225028991699162 ], [ -72.974922180175781, -11.222188949584961 ], [ -72.974533081054688, -11.221653938293343 ], [ -72.973937988281136, -11.220840454101506 ], [ -72.973403930664062, -11.22044563293457 ], [ -72.973052978515568, -11.220188140869084 ], [ -72.971206665039062, -11.21929931640625 ], [ -72.969917297363224, -11.219119071960392 ], [ -72.967811584472599, -11.218830108642521 ], [ -72.967391967773438, -11.218667984008789 ], [ -72.966476440429631, -11.218318939208984 ], [ -72.966255187988281, -11.218007087707463 ], [ -72.966186523437443, -11.21790885925293 ], [ -72.966194152831974, -11.217676162719727 ], [ -72.966201782226506, -11.217518806457463 ], [ -72.966941833496037, -11.216468811035099 ], [ -72.968437194824219, -11.215750694274846 ], [ -72.972076416015625, -11.21479320526123 ], [ -72.974533081054688, -11.214147567749023 ], [ -72.975570678710938, -11.213540077209416 ], [ -72.977088928222543, -11.212058067321721 ], [ -72.977516174316406, -11.211810111999512 ], [ -72.977897644042969, -11.211588859557992 ], [ -72.979911804199162, -11.211449623107796 ], [ -72.981346130371037, -11.21135044097889 ], [ -72.981727600097599, -11.211387634277287 ], [ -72.982620239257699, -11.211477279663086 ], [ -72.984031677246037, -11.212241172790471 ], [ -72.986457824707031, -11.213554382324219 ], [ -72.988105773925781, -11.215147018432617 ], [ -72.988784790039006, -11.215801239013615 ], [ -72.989189147949162, -11.216334342956486 ], [ -72.989906311035156, -11.217272758483887 ], [ -72.990791320800724, -11.218784332275391 ], [ -72.991714477539062, -11.220368385314941 ], [ -72.992179870605469, -11.223389625549316 ], [ -72.992446899414062, -11.223736763000431 ], [ -72.993614196777344, -11.225260734558105 ], [ -72.994499206542969, -11.226108551025277 ], [ -72.9951171875, -11.226699829101562 ], [ -73.001441955566406, -11.231451988220215 ], [ -73.004623413085881, -11.233242988586426 ], [ -73.005653381347656, -11.233592033386174 ], [ -73.006698608398438, -11.233944892883244 ], [ -73.007621765136719, -11.234519004821777 ], [ -73.009689331054631, -11.235248565673771 ], [ -73.012901306152344, -11.236780166625977 ], [ -73.014739990234318, -11.237978935241642 ], [ -73.01641845703125, -11.239505767822266 ], [ -73.017471313476562, -11.242286682128849 ], [ -73.017524719238168, -11.245162963867131 ], [ -73.019210815429631, -11.246204376220646 ], [ -73.019897460937443, -11.246921539306641 ], [ -73.020126342773438, -11.250602722167912 ], [ -73.020309448242188, -11.25133037567133 ], [ -73.020462036132756, -11.25191593170166 ], [ -73.020919799804631, -11.252798080444336 ], [ -73.02154541015625, -11.25400352478016 ], [ -73.021995544433537, -11.256146430969181 ], [ -73.022384643554574, -11.257985115051156 ], [ -73.024642944335881, -11.260839462280217 ], [ -73.025924682617188, -11.262030601501408 ], [ -73.030021667480469, -11.264742851257324 ], [ -73.034751892089787, -11.267873764038086 ], [ -73.037971496582031, -11.269534111022949 ], [ -73.040740966796875, -11.271700859069824 ], [ -73.042831420898438, -11.27236175537098 ], [ -73.044998168945312, -11.273048400878906 ], [ -73.047943115234261, -11.273365020751953 ], [ -73.049743652343693, -11.273857116699162 ], [ -73.059196472167855, -11.279196739196721 ], [ -73.061454772949162, -11.280170440673771 ], [ -73.063270568847599, -11.280949592590275 ], [ -73.065017700195199, -11.281421661376839 ], [ -73.065971374511605, -11.281328201293945 ], [ -73.066856384277344, -11.281238555908203 ], [ -73.06744384765625, -11.280983924865723 ], [ -73.069412231445312, -11.280129432678223 ], [ -73.074676513671875, -11.277259826660156 ], [ -73.080261230468693, -11.273457527160645 ], [ -73.080894470214844, -11.273171424865723 ], [ -73.08270263671875, -11.272348403930664 ], [ -73.085609436035099, -11.271748542785645 ], [ -73.089332580566293, -11.271782875060978 ], [ -73.091438293457031, -11.272184371948185 ], [ -73.093536376953125, -11.272587776184082 ], [ -73.097190856933594, -11.273947715759221 ], [ -73.1063232421875, -11.279916763305607 ], [ -73.108230590820312, -11.280879020690918 ], [ -73.110382080078068, -11.28265476226801 ], [ -73.111503601074219, -11.283097267150879 ], [ -73.114402770996037, -11.285030364990178 ], [ -73.114570617675724, -11.285139083862305 ], [ -73.118095397949219, -11.286979675292969 ], [ -73.120285034179688, -11.287787437438851 ], [ -73.120620727539062, -11.287910461425668 ], [ -73.120895385742131, -11.287972450256348 ], [ -73.122886657714787, -11.288432121276799 ], [ -73.125495910644531, -11.288719177246094 ], [ -73.131942749023381, -11.289437294006291 ], [ -73.136001586914062, -11.290465354919434 ], [ -73.140121459960938, -11.290691375732422 ], [ -73.143188476562443, -11.290860176086369 ], [ -73.148567199707031, -11.29058837890625 ], [ -73.153793334960881, -11.28964900970459 ], [ -73.156700134277344, -11.288728713989258 ], [ -73.158843994140568, -11.288559913635254 ], [ -73.160881042480469, -11.288395881652775 ], [ -73.163177490234375, -11.288653373718262 ], [ -73.165473937988281, -11.290016174316406 ], [ -73.166313171386719, -11.289058685302734 ], [ -73.168128967285156, -11.284950256347543 ], [ -73.169532775878849, -11.283766746520939 ], [ -73.170440673828125, -11.283548355102482 ], [ -73.1712646484375, -11.28367805480957 ], [ -73.174972534179574, -11.285601615905762 ], [ -73.177009582519531, -11.285811424255371 ], [ -73.177513122558537, -11.285613059997559 ], [ -73.17812347412098, -11.285375595092717 ], [ -73.180641174316406, -11.283084869384766 ], [ -73.182655334472656, -11.282446861266976 ], [ -73.183303833007812, -11.282479286193791 ], [ -73.18575286865223, -11.28355884552002 ], [ -73.187774658203125, -11.286088943481445 ], [ -73.189796447753906, -11.288619041442814 ], [ -73.191566467285043, -11.289978027343693 ], [ -73.193412780761719, -11.290658950805664 ], [ -73.193901062011719, -11.290670394897461 ], [ -73.194427490234261, -11.290678977966309 ], [ -73.195457458496037, -11.290278434753418 ], [ -73.195816040039062, -11.290008544921761 ], [ -73.199508666992188, -11.287205696105957 ], [ -73.201454162597599, -11.286554336547852 ], [ -73.202011108398438, -11.286565780639648 ], [ -73.202919006347543, -11.286583900451603 ], [ -73.204025268554631, -11.286887168884277 ], [ -73.204635620117074, -11.287055969238281 ], [ -73.205085754394474, -11.28737735748291 ], [ -73.206138610839787, -11.288130760192871 ], [ -73.207595825195312, -11.289692878723145 ], [ -73.212074279785043, -11.29449462890625 ], [ -73.213211059570256, -11.2952880859375 ], [ -73.218177795410043, -11.294966697692871 ], [ -73.220344543456974, -11.295565605163574 ], [ -73.221664428710938, -11.296165466308594 ], [ -73.222625732421818, -11.296601295471135 ], [ -73.224456787109318, -11.296882629394531 ], [ -73.229019165039006, -11.296804428100529 ], [ -73.231407165527287, -11.296426773071232 ], [ -73.233505249023381, -11.296096801757756 ], [ -73.235359191894531, -11.296206474304199 ], [ -73.236015319824219, -11.296449661254883 ], [ -73.236495971679688, -11.296627998352051 ], [ -73.237815856933537, -11.297629356384277 ], [ -73.23870849609375, -11.298710823058968 ], [ -73.240936279296818, -11.301421165466252 ], [ -73.241722106933537, -11.30284595489502 ], [ -73.242401123046761, -11.304076194763127 ], [ -73.244117736816293, -11.305906295776367 ], [ -73.245819091796818, -11.306637763977051 ], [ -73.248542785644531, -11.307173728942871 ], [ -73.249176025390625, -11.307298660278263 ], [ -73.254386901855412, -11.307249069213867 ], [ -73.255989074707031, -11.307478904724121 ], [ -73.259437561035099, -11.307519912719727 ], [ -73.261444091796818, -11.307000160217228 ], [ -73.263031005859375, -11.30659008026123 ], [ -73.263740539550724, -11.306239128112793 ], [ -73.264862060546875, -11.305689811706486 ], [ -73.266090393066406, -11.30555534362793 ], [ -73.266799926757756, -11.305478096008187 ], [ -73.267662048339787, -11.305644035339355 ], [ -73.268623352050668, -11.305829048156681 ], [ -73.270118713378849, -11.305820465087834 ], [ -73.272476196289062, -11.307109832763672 ], [ -73.273536682128906, -11.307449340820256 ], [ -73.274658203125, -11.307499885559082 ], [ -73.276802062988224, -11.306908607482796 ], [ -73.277076721191349, -11.306911468505859 ], [ -73.277915954589844, -11.306918144226074 ], [ -73.278724670410099, -11.307129859924316 ], [ -73.280570983886719, -11.308226585388184 ], [ -73.282119750976562, -11.308839797973519 ], [ -73.285652160644531, -11.308839797973519 ], [ -73.287300109863224, -11.308568000793457 ], [ -73.289489746093693, -11.307829856872559 ], [ -73.290817260742131, -11.307029724121094 ], [ -73.291397094726506, -11.306678771972599 ], [ -73.293571472167969, -11.304956436157227 ], [ -73.294563293456918, -11.304448127746582 ], [ -73.295204162597599, -11.304368019104004 ], [ -73.296043395996094, -11.304407119750977 ], [ -73.298080444335881, -11.304501533508244 ], [ -73.303016662597599, -11.307060241699162 ], [ -73.304458618164006, -11.30742359161377 ], [ -73.305587768554688, -11.307419776916504 ], [ -73.307289123535156, -11.306953430175724 ], [ -73.308128356933594, -11.306537628173828 ], [ -73.309608459472599, -11.305808067321721 ], [ -73.310356140136719, -11.305069923400822 ], [ -73.31072998046875, -11.30469799041748 ], [ -73.311248779296818, -11.303844451904297 ], [ -73.312019348144418, -11.302566528320256 ], [ -73.31325531005848, -11.302275657653752 ], [ -73.313453674316406, -11.302426338195687 ], [ -73.313987731933537, -11.302839279174805 ], [ -73.314582824706974, -11.304269790649414 ], [ -73.316085815429631, -11.305158615112305 ], [ -73.318786621093636, -11.305868148803654 ], [ -73.321952819824219, -11.305858612060547 ], [ -73.323204040527344, -11.306120872497559 ], [ -73.324401855468693, -11.306370735168457 ], [ -73.325042724609375, -11.30657863616932 ], [ -73.330947875976562, -11.308494567871037 ], [ -73.332183837890625, -11.309174537658635 ], [ -73.333869934082031, -11.310102462768555 ], [ -73.33502197265625, -11.31102275848383 ], [ -73.335632324218693, -11.311629295349007 ], [ -73.340003967285156, -11.315986633300781 ], [ -73.343147277832031, -11.319817543029785 ], [ -73.343406677246094, -11.320135116577148 ], [ -73.343788146972656, -11.320404052734318 ], [ -73.3458251953125, -11.321842193603459 ], [ -73.346946716308594, -11.322950363159123 ], [ -73.34979248046875, -11.328045845031681 ], [ -73.350852966308594, -11.329941749572754 ], [ -73.361457824707031, -11.340667724609375 ], [ -73.362556457519474, -11.341361045837346 ], [ -73.364151000976506, -11.341894149780273 ], [ -73.365295410156193, -11.342091560363713 ], [ -73.368453979492131, -11.341964721679631 ], [ -73.369476318359375, -11.342158317565918 ], [ -73.370368957519474, -11.342327117919865 ], [ -73.372268676757756, -11.343106269836426 ], [ -73.374374389648381, -11.344619750976506 ], [ -73.377090454101562, -11.349016189575195 ], [ -73.377540588378906, -11.351571083068848 ], [ -73.377967834472656, -11.353996276855355 ], [ -73.37811279296875, -11.354331016540471 ], [ -73.378639221191406, -11.35551643371582 ], [ -73.379791259765568, -11.359401702880803 ], [ -73.380455017089787, -11.360936164855957 ], [ -73.381538391113168, -11.363460540771484 ], [ -73.383193969726562, -11.365934371948185 ], [ -73.385543823242074, -11.369440078735352 ], [ -73.388000488281193, -11.372149467468262 ], [ -73.389518737792912, -11.373820304870605 ], [ -73.389945983886719, -11.374102592468262 ], [ -73.391311645507812, -11.375004768371468 ], [ -73.392532348632812, -11.375419616699162 ], [ -73.39312744140625, -11.375527381896973 ], [ -73.394638061523438, -11.375801086425724 ], [ -73.399101257324219, -11.375761985778809 ], [ -73.399810791015625, -11.375891685485783 ], [ -73.400932312011719, -11.376096725463867 ], [ -73.401611328125, -11.376347541809082 ], [ -73.402252197265625, -11.376582145690918 ], [ -73.404495239257756, -11.378357887268066 ], [ -73.404747009277344, -11.379578590392953 ], [ -73.404769897460938, -11.379707336425781 ], [ -73.405860900878793, -11.381529808044377 ], [ -73.408699035644474, -11.381852149963322 ], [ -73.410125732421818, -11.382824897766 ], [ -73.410675048828125, -11.383200645446777 ], [ -73.412742614746094, -11.383124351501408 ], [ -73.415168762206974, -11.381443977355957 ], [ -73.416946411132812, -11.381093025207463 ], [ -73.418792724609318, -11.37880897521967 ], [ -73.421630859375, -11.376699447631836 ], [ -73.421752929687443, -11.376606941223088 ], [ -73.421859741210881, -11.376564025878849 ], [ -73.422279357910156, -11.376401901245117 ], [ -73.425621032714844, -11.376401901245117 ], [ -73.427230834960938, -11.37595272064209 ], [ -73.427497863769474, -11.375880241393986 ], [ -73.428131103515625, -11.375435829162598 ], [ -73.429168701171875, -11.374709129333496 ], [ -73.432807922363281, -11.371438026428166 ], [ -73.433334350585938, -11.371185302734375 ], [ -73.435150146484375, -11.370306015014648 ], [ -73.436920166015568, -11.369735717773324 ], [ -73.439422607421818, -11.369750022888184 ], [ -73.441062927246094, -11.370439529418888 ], [ -73.441757202148438, -11.370890617370605 ], [ -73.444450378417912, -11.373592376708984 ], [ -73.445335388183537, -11.373459815978947 ], [ -73.445938110351562, -11.373020172119141 ], [ -73.445999145507756, -11.372930526733285 ], [ -73.44708251953125, -11.371360778808594 ], [ -73.447731018066406, -11.368169784545898 ], [ -73.448066711425781, -11.366515159606934 ], [ -73.450248718261719, -11.363540649414062 ], [ -73.451042175292912, -11.362069129943848 ], [ -73.452049255371094, -11.358917236328125 ], [ -73.452209472656136, -11.358406066894531 ], [ -73.453315734863224, -11.35743522644043 ], [ -73.45556640625, -11.356360435485726 ], [ -73.457839965820312, -11.354068756103459 ], [ -73.460479736328068, -11.353569984436035 ], [ -73.462196350097599, -11.351370811462346 ], [ -73.462989807128906, -11.349404335021973 ], [ -73.463539123535099, -11.348050117492676 ], [ -73.464492797851506, -11.341879844665527 ], [ -73.465255737304631, -11.341007232665959 ], [ -73.465637207031193, -11.340570449829045 ], [ -73.466049194335938, -11.340437889099121 ], [ -73.467292785644531, -11.340041160583439 ], [ -73.467765808105469, -11.340105056762638 ], [ -73.468215942382756, -11.340168952941838 ], [ -73.469314575195312, -11.340652465820312 ], [ -73.470970153808537, -11.342760086059513 ], [ -73.471244812011662, -11.342912673950195 ], [ -73.47194671630848, -11.343304634094181 ], [ -73.4725341796875, -11.343852043151799 ], [ -73.472900390624886, -11.344196319580078 ], [ -73.473983764648438, -11.34601879119873 ], [ -73.476394653320256, -11.349168777465763 ], [ -73.477294921875, -11.349978446960449 ], [ -73.478378295898438, -11.350495338439828 ], [ -73.478813171386605, -11.350391387939453 ], [ -73.479881286621094, -11.350128173828125 ], [ -73.480690002441349, -11.34924411773676 ], [ -73.481056213378906, -11.348840713500977 ], [ -73.481788635253906, -11.346584320068359 ], [ -73.48333740234375, -11.341848373413086 ], [ -73.483428955078125, -11.3397216796875 ], [ -73.483467102050724, -11.338826179504338 ], [ -73.483116149902344, -11.337018966674805 ], [ -73.482406616210881, -11.335453033447266 ], [ -73.481781005859375, -11.334078788757324 ], [ -73.481399536132812, -11.333481788635197 ], [ -73.479957580566293, -11.331209182739258 ], [ -73.479545593261662, -11.330354690551758 ], [ -73.478836059570312, -11.328868865966797 ], [ -73.478607177734318, -11.32780933380127 ], [ -73.47872161865223, -11.325308799743652 ], [ -73.478202819824219, -11.323469161987305 ], [ -73.478126525878849, -11.323367118835449 ], [ -73.477622985839844, -11.322649002075138 ], [ -73.477462768554631, -11.321538925170898 ], [ -73.477676391601562, -11.320479393005314 ], [ -73.478225708007756, -11.319446563720646 ], [ -73.478416442871037, -11.319080352783146 ], [ -73.479316711425781, -11.31846904754633 ], [ -73.480560302734375, -11.317627906799316 ], [ -73.481826782226562, -11.316296577453613 ], [ -73.482238769531193, -11.315269470214787 ], [ -73.482215881347599, -11.314738273620605 ], [ -73.482200622558594, -11.314269065856877 ], [ -73.481178283691349, -11.313191413879338 ], [ -73.478202819824219, -11.310989379882699 ], [ -73.476127624511662, -11.308289527893066 ], [ -73.473960876464844, -11.307039260864258 ], [ -73.471305847167969, -11.304730415344238 ], [ -73.469047546386719, -11.303900718688908 ], [ -73.464401245117131, -11.304099082946664 ], [ -73.462150573730469, -11.303689002990723 ], [ -73.457733154296818, -11.301749229431152 ], [ -73.457527160644474, -11.30159854888916 ], [ -73.456298828124943, -11.300699234008732 ], [ -73.455787658691406, -11.299843788146916 ], [ -73.455673217773438, -11.298558235168457 ], [ -73.457244873046818, -11.294656753540039 ], [ -73.457389831542969, -11.294299125671387 ], [ -73.457633972167912, -11.29409122467041 ], [ -73.458160400390625, -11.293638229370117 ], [ -73.460441589355469, -11.292313575744572 ], [ -73.460571289062443, -11.292238235473576 ], [ -73.460838317871094, -11.291851043701172 ], [ -73.461456298828011, -11.290950775146428 ], [ -73.461372375488281, -11.290131568908691 ], [ -73.461227416992188, -11.288769721984806 ], [ -73.460487365722599, -11.286716461181641 ], [ -73.459953308105469, -11.285229682922306 ], [ -73.460044860839844, -11.284514427185002 ], [ -73.460060119628906, -11.284410476684513 ], [ -73.460136413574219, -11.28423023223877 ], [ -73.460990905761719, -11.282299041748047 ], [ -73.461166381835881, -11.279840469360295 ], [ -73.459602355957031, -11.27659893035883 ], [ -73.459220886230469, -11.273030281066838 ], [ -73.458686828613224, -11.271368026733398 ], [ -73.457595825195312, -11.269119262695199 ], [ -73.453987121581974, -11.263811111450138 ], [ -73.452911376953125, -11.260969161987191 ], [ -73.452583312988224, -11.25786018371582 ], [ -73.453170776367188, -11.254049301147461 ], [ -73.453193664550781, -11.253424644470158 ], [ -73.453247070312443, -11.252215385436898 ], [ -73.452796936035156, -11.24452018737793 ], [ -73.451995849609318, -11.24225902557373 ], [ -73.448478698730412, -11.235871315002441 ], [ -73.447425842285099, -11.233015060424748 ], [ -73.447196960449219, -11.23092079162592 ], [ -73.447463989257812, -11.229678153991642 ], [ -73.447601318359318, -11.229038238525334 ], [ -73.448593139648438, -11.226071357727051 ], [ -73.448623657226562, -11.225283622741699 ], [ -73.448646545410099, -11.224686622619572 ], [ -73.448348999023438, -11.223730087280273 ], [ -73.446952819824162, -11.22112941741932 ], [ -73.446479797363224, -11.219320297241211 ], [ -73.44635009765625, -11.21880912780756 ], [ -73.446846008300724, -11.217726707458496 ], [ -73.447433471679631, -11.217449188232422 ], [ -73.4495849609375, -11.218861579894963 ], [ -73.450675964355412, -11.219100952148438 ], [ -73.450904846191406, -11.219071388244572 ], [ -73.451408386230412, -11.219000816345158 ], [ -73.452171325683537, -11.218189239501896 ], [ -73.452270507812443, -11.217764854431096 ], [ -73.452575683593693, -11.21651554107666 ], [ -73.453285217285156, -11.215895652770996 ], [ -73.454299926757756, -11.215485572814941 ], [ -73.454811096191406, -11.214939117431584 ], [ -73.454933166503906, -11.214670181274414 ], [ -73.455268859863281, -11.213946342468205 ], [ -73.454658508300724, -11.210868835449219 ], [ -73.454673767089787, -11.210442543029785 ], [ -73.4547119140625, -11.209579467773381 ], [ -73.4552001953125, -11.208589553832951 ], [ -73.457176208496094, -11.206048011779785 ], [ -73.45794677734375, -11.20408821105957 ], [ -73.458183288574162, -11.202449798583928 ], [ -73.458091735839787, -11.201242446899357 ], [ -73.45806884765625, -11.200977325439453 ], [ -73.456016540527287, -11.195979118347168 ], [ -73.4559326171875, -11.195601463317871 ], [ -73.455757141113281, -11.194799423217773 ], [ -73.455802917480412, -11.19342041015625 ], [ -73.456123352050781, -11.192507743835392 ], [ -73.456436157226562, -11.191600799560547 ], [ -73.456871032714787, -11.190931320190373 ], [ -73.458786010742074, -11.187978744506779 ], [ -73.459175109863281, -11.186925888061467 ], [ -73.459487915039062, -11.186084747314453 ], [ -73.459526062011662, -11.184459686279297 ], [ -73.461021423339844, -11.182456970214844 ], [ -73.461570739746094, -11.181720733642578 ], [ -73.461349487304631, -11.179984092712402 ], [ -73.461189270019531, -11.178744316101074 ], [ -73.459976196289062, -11.177230834960938 ], [ -73.459686279296875, -11.17603874206543 ], [ -73.460945129394474, -11.173933029174805 ], [ -73.4617919921875, -11.172519683837891 ], [ -73.461700439453125, -11.169919013977051 ], [ -73.462348937988281, -11.168364524841252 ], [ -73.463287353515625, -11.166109085083008 ], [ -73.463508605957031, -11.163948059082031 ], [ -73.463600158691406, -11.163088798522949 ], [ -73.463356018066349, -11.161819458007756 ], [ -73.461875915527344, -11.158941268920898 ], [ -73.4591064453125, -11.153582572936955 ], [ -73.458328247070312, -11.149518966674805 ], [ -73.458137512207031, -11.145978927612305 ], [ -73.4586181640625, -11.144319534301701 ], [ -73.458793640136719, -11.144069671630803 ], [ -73.459709167480412, -11.142724990844727 ], [ -73.461723327636662, -11.140880584716797 ], [ -73.462242126464844, -11.140406608581543 ], [ -73.464218139648381, -11.13903903961176 ], [ -73.466377258300781, -11.137129783630371 ], [ -73.469398498535156, -11.133868217468148 ], [ -73.469490051269531, -11.133717536926213 ], [ -73.472045898437386, -11.129549026489144 ], [ -73.473068237304631, -11.127203941345215 ], [ -73.474037170410099, -11.124988555908146 ], [ -73.474159240722656, -11.124345779418945 ], [ -73.474227905273381, -11.124009132385254 ], [ -73.4739990234375, -11.12263011932373 ], [ -73.473556518554631, -11.121823310852051 ], [ -73.472206115722599, -11.120288848876953 ], [ -73.469947814941293, -11.118837356567326 ], [ -73.467376708984375, -11.117594718933105 ], [ -73.466018676757756, -11.116938591003418 ], [ -73.465232849121094, -11.116259574890137 ], [ -73.465042114257812, -11.115019798278809 ], [ -73.465133666992188, -11.112829208373967 ], [ -73.465187072753906, -11.11139965057373 ], [ -73.464950561523381, -11.110556602478027 ], [ -73.464607238769418, -11.109360694885254 ], [ -73.46453857421875, -11.108489990234318 ], [ -73.464508056640511, -11.108050346374512 ], [ -73.464561462402344, -11.107901573181096 ], [ -73.464881896972599, -11.107040405273438 ], [ -73.465408325195312, -11.106208801269474 ], [ -73.466133117675668, -11.105079650878849 ], [ -73.466522216796875, -11.103536605834961 ], [ -73.466712951660156, -11.102766990661564 ], [ -73.468215942382756, -11.101529121398926 ], [ -73.469284057617188, -11.100358009338379 ], [ -73.469848632812386, -11.099738121032715 ], [ -73.471900939941406, -11.096689224243164 ], [ -73.472419738769474, -11.095499038696232 ], [ -73.472129821777287, -11.094169616699219 ], [ -73.469673156738281, -11.091038703918457 ], [ -73.468940734863281, -11.089640617370605 ], [ -73.468681335449162, -11.087732315063477 ], [ -73.468704223632699, -11.084766387939396 ], [ -73.469650268554631, -11.081110954284611 ], [ -73.470870971679631, -11.078728675842285 ], [ -73.473854064941293, -11.075843811035156 ], [ -73.4747314453125, -11.074653625488224 ], [ -73.475463867187443, -11.072966575622559 ], [ -73.476043701171818, -11.070547103881836 ], [ -73.476684570312443, -11.06902027130127 ], [ -73.480690002441349, -11.061859130859318 ], [ -73.485809326171875, -11.058768272399902 ], [ -73.488349914550668, -11.05792045593256 ], [ -73.48992919921875, -11.058020591735783 ], [ -73.491241455078125, -11.058489799499455 ], [ -73.495010375976506, -11.061339378356934 ], [ -73.495147705078125, -11.061387062072754 ], [ -73.496406555175781, -11.06182861328125 ], [ -73.497901916503906, -11.061939239501953 ], [ -73.499511718749886, -11.061249732971191 ], [ -73.500167846679631, -11.060529708862305 ], [ -73.50079345703125, -11.060262680053711 ], [ -73.501411437988224, -11.059999465942326 ], [ -73.502182006835824, -11.059281349182129 ], [ -73.503578186035099, -11.057979583740121 ], [ -73.505149841308594, -11.057546615600472 ], [ -73.506057739257756, -11.057297706603947 ], [ -73.507080078125, -11.057357788085938 ], [ -73.510910034179688, -11.058996200561523 ], [ -73.511566162109375, -11.059142112731934 ], [ -73.512535095214844, -11.059365272521973 ], [ -73.513328552246037, -11.059380531311035 ], [ -73.513641357421875, -11.059388160705566 ], [ -73.514259338378849, -11.059242248535156 ], [ -73.515808105468693, -11.058869361877441 ], [ -73.519218444824162, -11.059189796447754 ], [ -73.522186279296818, -11.056870460510254 ], [ -73.524963378906193, -11.056811332702523 ], [ -73.525962829589844, -11.056359291076603 ], [ -73.527069091796761, -11.055529594421387 ], [ -73.527763366699219, -11.054788589477539 ], [ -73.52825927734375, -11.053845405578613 ], [ -73.528656005859318, -11.053079605102539 ], [ -73.529808044433537, -11.051529884338379 ], [ -73.531349182128849, -11.050095558166504 ], [ -73.532302856445256, -11.049209594726562 ], [ -73.535911560058537, -11.046584129333439 ], [ -73.536987304687386, -11.045798301696777 ], [ -73.53729248046875, -11.045478820800724 ], [ -73.538963317871037, -11.043719291686955 ], [ -73.539581298828125, -11.042738914489746 ], [ -73.540092468261719, -11.04191875457758 ], [ -73.540817260742188, -11.040239334106445 ], [ -73.541488647460938, -11.036576271057129 ], [ -73.541618347167969, -11.035889625549316 ], [ -73.541732788085881, -11.033096313476562 ], [ -73.542236328124886, -11.021209716796875 ], [ -73.543472290038949, -11.018539428710938 ], [ -73.545364379882756, -11.016102790832463 ], [ -73.546592712402287, -11.014530181884766 ], [ -73.547073364257756, -11.00774955749506 ], [ -73.547370910644474, -11.007308006286564 ], [ -73.547531127929688, -11.00707817077631 ], [ -73.54913330078125, -11.006150245666504 ], [ -73.549530029296875, -11.005329132080021 ], [ -73.549484252929574, -11.005202293395939 ], [ -73.549362182617131, -11.004818916320801 ], [ -73.548439025878906, -11.004317283630371 ], [ -73.548423767089787, -11.004203796386719 ], [ -73.548286437988281, -11.003169059753418 ], [ -73.548667907714844, -11.002539634704533 ], [ -73.549209594726562, -11.002306938171387 ], [ -73.549491882324219, -11.002185821533089 ], [ -73.552139282226506, -11.0023193359375 ], [ -73.553321838378906, -11.002054214477539 ], [ -73.553657531738224, -11.001978874206543 ], [ -73.555328369140625, -11.000458717346135 ], [ -73.555274963378849, -10.999715805053711 ], [ -73.555122375488281, -10.997559547424316 ], [ -73.554695129394474, -10.996616363525391 ], [ -73.554588317871094, -10.996378898620605 ], [ -73.553627014160156, -10.995248794555607 ], [ -73.553512573242188, -10.994368553161621 ], [ -73.553451538085881, -10.993869781494084 ], [ -73.554496765136719, -10.992160797119084 ], [ -73.557556152343693, -10.989478111266976 ], [ -73.55877685546875, -10.986818313598633 ], [ -73.558944702148438, -10.985919952392578 ], [ -73.559066772460938, -10.985288619995117 ], [ -73.558807373046818, -10.979119300842228 ], [ -73.559013366699162, -10.974699974059945 ], [ -73.559616088867188, -10.974035263061523 ], [ -73.560920715331974, -10.972599029540959 ], [ -73.566329956054631, -10.967999458312988 ], [ -73.567092895507756, -10.965918540954533 ], [ -73.568046569824162, -10.964590072631836 ], [ -73.569557189941406, -10.960939407348519 ], [ -73.571342468261719, -10.958608627319336 ], [ -73.571891784667855, -10.957529067993164 ], [ -73.572746276855412, -10.954059600830078 ], [ -73.572715759277287, -10.952499389648324 ], [ -73.571777343749943, -10.948470115661507 ], [ -73.570999145507756, -10.94700908660883 ], [ -73.570556640624886, -10.945630073547306 ], [ -73.569686889648381, -10.944228172302246 ], [ -73.5667724609375, -10.939528465270996 ], [ -73.565422058105469, -10.936509132385254 ], [ -73.564750671386719, -10.935519218444824 ], [ -73.564407348632812, -10.934369087219181 ], [ -73.564682006835938, -10.930430412292424 ], [ -73.565910339355469, -10.925740242004395 ], [ -73.565910339355469, -10.924697875976562 ], [ -73.56591796875, -10.922619819641113 ], [ -73.566009521484375, -10.922155380249023 ], [ -73.566192626953125, -10.921178817749023 ], [ -73.566116333007812, -10.919720649719125 ], [ -73.565452575683594, -10.916949272155762 ], [ -73.565460205078125, -10.916007995605469 ], [ -73.565467834472599, -10.915398597717228 ], [ -73.56591796875, -10.913149833679142 ], [ -73.566047668456974, -10.912951469421387 ], [ -73.566757202148438, -10.911836624145508 ], [ -73.567207336425724, -10.910639762878418 ], [ -73.567329406738281, -10.907059669494629 ], [ -73.56732177734375, -10.906948089599609 ], [ -73.567207336425724, -10.905050277709904 ], [ -73.566688537597656, -10.902809143066349 ], [ -73.565109252929631, -10.900539398193359 ], [ -73.564163208007756, -10.89795017242426 ], [ -73.564109802246094, -10.897121429443359 ], [ -73.564262390136605, -10.896659851074219 ], [ -73.564567565917969, -10.895728111267033 ], [ -73.564582824707031, -10.895344734191895 ], [ -73.564613342285099, -10.894618034362793 ], [ -73.564262390136605, -10.892630577087402 ], [ -73.563751220703068, -10.891349792480412 ], [ -73.563766479492131, -10.890708923339844 ], [ -73.564811706542912, -10.888460159301644 ], [ -73.564964294433594, -10.88826847076416 ], [ -73.565910339355469, -10.887110710144043 ], [ -73.566017150878906, -10.886814117431641 ], [ -73.566429138183537, -10.885720252990723 ], [ -73.567596435546818, -10.884350776672363 ], [ -73.567741394042969, -10.884177207946721 ], [ -73.568649291992074, -10.883550643920898 ], [ -73.569229125976562, -10.883406639099064 ], [ -73.570075988769474, -10.883199691772404 ], [ -73.574172973632756, -10.881018638610783 ], [ -73.575416564941349, -10.88068962097168 ], [ -73.576431274414062, -10.879688262939453 ], [ -73.576530456542912, -10.879590034484863 ], [ -73.576637268066349, -10.879326820373535 ], [ -73.578086853027287, -10.875848770141545 ], [ -73.578186035156136, -10.875328063964787 ], [ -73.578292846679688, -10.87476921081543 ], [ -73.578544616699162, -10.874303817749023 ], [ -73.579086303710938, -10.873319625854492 ], [ -73.579216003417912, -10.872504234313965 ], [ -73.580947875976506, -10.868847846984863 ], [ -73.581077575683594, -10.868129730224609 ], [ -73.582878112792969, -10.86484432220459 ], [ -73.583419799804631, -10.863849639892578 ], [ -73.584426879882812, -10.862419128417969 ], [ -73.585052490234261, -10.860499382019043 ], [ -73.587982177734318, -10.854920387268066 ], [ -73.589859008789062, -10.852939605712777 ], [ -73.590072631835881, -10.852831840515137 ], [ -73.59063720703125, -10.852547645568791 ], [ -73.593536376953068, -10.852409362792969 ], [ -73.594520568847656, -10.85210990905756 ], [ -73.595046997070256, -10.851949691772461 ], [ -73.596969604492131, -10.851740837097111 ], [ -73.605537414550724, -10.849413871765137 ], [ -73.605735778808537, -10.849358558654785 ], [ -73.60927581787098, -10.84802055358881 ], [ -73.612831115722656, -10.845861434936523 ], [ -73.61358642578125, -10.845245361328125 ], [ -73.615676879882812, -10.843549728393555 ], [ -73.629013061523381, -10.830289840698129 ], [ -73.632843017578125, -10.827869415283203 ], [ -73.635101318359318, -10.824849128723145 ], [ -73.635894775390625, -10.824083328247013 ], [ -73.636428833007756, -10.823566436767464 ], [ -73.637199401855412, -10.823060035705566 ], [ -73.637916564941406, -10.822866439819336 ], [ -73.638717651367131, -10.822649955749455 ], [ -73.639656066894531, -10.822196006774846 ], [ -73.639877319335881, -10.822089195251408 ], [ -73.641098022460881, -10.8208971023559 ], [ -73.642906188964787, -10.819128990173283 ], [ -73.645828247070312, -10.817507743835392 ], [ -73.647911071777344, -10.816348075866699 ], [ -73.648231506347656, -10.815987586975098 ], [ -73.651069641113281, -10.812817573547363 ], [ -73.654541015624943, -10.811548233032227 ], [ -73.657562255859375, -10.808450698852425 ], [ -73.660469055175724, -10.807038307189941 ], [ -73.66156005859375, -10.805029869079533 ], [ -73.661552429199219, -10.803127288818303 ], [ -73.662193298339787, -10.802550315856877 ], [ -73.666351318359375, -10.802568435668945 ], [ -73.666641235351562, -10.802445411682129 ], [ -73.667427062988224, -10.802109718322697 ], [ -73.667816162109318, -10.801551818847656 ], [ -73.668235778808594, -10.800958633422852 ], [ -73.668350219726562, -10.799513816833496 ], [ -73.668380737304631, -10.79911994934082 ], [ -73.6683349609375, -10.798992156982422 ], [ -73.667716979980412, -10.797309875488224 ], [ -73.666282653808537, -10.795079231262207 ], [ -73.666168212890625, -10.79491138458252 ], [ -73.666244506835938, -10.794160842895508 ], [ -73.66632080078125, -10.793360710144043 ], [ -73.667236328124943, -10.79257869720459 ], [ -73.668571472167912, -10.791790008544865 ], [ -73.670028686523324, -10.790928840637207 ], [ -73.670364379882812, -10.790559768676758 ], [ -73.67138671875, -10.7894287109375 ], [ -73.671913146972599, -10.788578987121525 ], [ -73.672126770019418, -10.788482666015625 ], [ -73.672401428222599, -10.788359642028809 ], [ -73.672935485839844, -10.788404464721623 ], [ -73.673156738281193, -10.788419723510629 ], [ -73.674079895019531, -10.788900375366097 ], [ -73.675575256347656, -10.789677619934082 ], [ -73.67718505859375, -10.789715766906681 ], [ -73.677711486816406, -10.789730072021484 ], [ -73.678932189941406, -10.789328575134277 ], [ -73.680648803710938, -10.788057327270508 ], [ -73.681129455566406, -10.787516593933105 ], [ -73.681198120117188, -10.78743934631342 ], [ -73.682235717773324, -10.785490989684945 ], [ -73.684127807617131, -10.783720016479435 ], [ -73.684844970703125, -10.783123016357365 ], [ -73.685256958007756, -10.782778739929199 ], [ -73.686378479003906, -10.782349586486816 ], [ -73.687950134277287, -10.780806541442814 ], [ -73.689140319824219, -10.779640197753906 ], [ -73.689163208007756, -10.77925968170166 ], [ -73.689521789550781, -10.778859138488656 ], [ -73.689628601074219, -10.778797149658203 ], [ -73.691535949707031, -10.777718544006234 ], [ -73.693717956542969, -10.775735855102425 ], [ -73.694801330566349, -10.774748802185059 ], [ -73.697052001953125, -10.773328781127873 ], [ -73.699287414550724, -10.772747993469181 ], [ -73.701004028320256, -10.772046089172363 ], [ -73.702125549316406, -10.771588325500431 ], [ -73.705032348632812, -10.771178245544377 ], [ -73.706886291503906, -10.769120216369572 ], [ -73.707389831542912, -10.768010139465332 ], [ -73.707916259765625, -10.76686954498291 ], [ -73.709220886230355, -10.764968872070312 ], [ -73.710479736328125, -10.763774871826172 ], [ -73.712966918945312, -10.761408805847168 ], [ -73.714485168457031, -10.760196685791016 ], [ -73.71527099609375, -10.759570121765137 ], [ -73.716392517089844, -10.759127616882324 ], [ -73.71649169921875, -10.759089469909668 ], [ -73.717781066894474, -10.75905704498291 ], [ -73.719436645507812, -10.758484840393066 ], [ -73.722473144531193, -10.758120536804086 ], [ -73.722885131835938, -10.757990837097111 ], [ -73.726181030273381, -10.756970405578613 ], [ -73.727500915527287, -10.756379127502441 ], [ -73.729141235351506, -10.755649566650334 ], [ -73.729866027832031, -10.755178451538086 ], [ -73.731925964355469, -10.753840446472168 ], [ -73.733482360839844, -10.752200126647892 ], [ -73.733680725097656, -10.751990318298283 ], [ -73.734230041503906, -10.750718116760197 ], [ -73.735176086425781, -10.748530387878418 ], [ -73.735336303710881, -10.74735164642334 ], [ -73.735542297363168, -10.745808601379395 ], [ -73.735504150390625, -10.743786811828613 ], [ -73.735443115234318, -10.741020202636719 ], [ -73.735786437988281, -10.739459037780762 ], [ -73.7359619140625, -10.738679885864258 ], [ -73.736900329589844, -10.737019538879395 ], [ -73.738990783691406, -10.73517894744873 ], [ -73.740402221679631, -10.7345933914184 ], [ -73.741127014160156, -10.73429012298584 ], [ -73.742088317871037, -10.734134674072266 ], [ -73.743125915527344, -10.733968734741097 ], [ -73.74530029296875, -10.734460830688477 ], [ -73.745521545410099, -10.734460830688477 ], [ -73.746414184570199, -10.734462738037053 ], [ -73.747840881347599, -10.734692573547306 ], [ -73.748435974121094, -10.734786987304688 ], [ -73.752578735351506, -10.736106872558537 ], [ -73.754661560058594, -10.736116409301758 ], [ -73.756744384765625, -10.736122131347656 ], [ -73.761337280273438, -10.737536430358887 ], [ -73.762069702148438, -10.738057136535645 ], [ -73.762542724609375, -10.738396644592228 ], [ -73.763740539550724, -10.739670753479004 ], [ -73.764411926269474, -10.740384101867676 ], [ -73.768302917480469, -10.742732048034611 ], [ -73.769203186035099, -10.743778228759766 ], [ -73.769477844238224, -10.744806289672795 ], [ -73.769676208496037, -10.745551109313965 ], [ -73.77001953125, -10.750219345092773 ], [ -73.770881652832031, -10.751859664916935 ], [ -73.772262573242074, -10.753445625305176 ], [ -73.772476196289062, -10.75429630279541 ], [ -73.772529602050724, -10.754524230957031 ], [ -73.772537231445256, -10.75691032409668 ], [ -73.773178100585881, -10.758058547973576 ], [ -73.773483276367131, -10.758599281311035 ], [ -73.774269104003906, -10.759053230285645 ], [ -73.774688720703125, -10.759297370910588 ], [ -73.77559661865223, -10.759506225585938 ], [ -73.780448913574162, -10.75916671752924 ], [ -73.781974792480412, -10.760066986083984 ], [ -73.782157897949162, -10.761805534362736 ], [ -73.782188415527344, -10.762057304382324 ], [ -73.782173156738224, -10.762472152709904 ], [ -73.7821044921875, -10.764451980590763 ], [ -73.781745910644531, -10.76531791687006 ], [ -73.781677246093693, -10.765480041503849 ], [ -73.781455993652344, -10.766939163207951 ], [ -73.781044006347656, -10.767764091491699 ], [ -73.780754089355469, -10.768336296081543 ], [ -73.780227661132812, -10.770238876342773 ], [ -73.780189514160156, -10.770368576049748 ], [ -73.778778076171875, -10.773056030273438 ], [ -73.778778076171875, -10.773974418640137 ], [ -73.778770446777344, -10.774892807006836 ], [ -73.778793334960938, -10.774997711181584 ], [ -73.779045104980469, -10.77616024017334 ], [ -73.780616760253849, -10.779582977294865 ], [ -73.780677795410156, -10.782170295715275 ], [ -73.781158447265625, -10.783736228942814 ], [ -73.782928466796818, -10.786730766296273 ], [ -73.785057067871094, -10.789196968078613 ], [ -73.785636901855469, -10.78986740112299 ], [ -73.786796569824219, -10.791968345642033 ], [ -73.787155151367188, -10.792922973632756 ], [ -73.787834167480469, -10.79472827911377 ], [ -73.789093017578125, -10.795802116394043 ], [ -73.789344787597656, -10.795892715454102 ], [ -73.790489196777344, -10.796304702758732 ], [ -73.790954589843636, -10.796364784240723 ], [ -73.791595458984318, -10.796443939208928 ], [ -73.791854858398438, -10.796729087829533 ], [ -73.792022705078125, -10.796916007995549 ], [ -73.792213439941406, -10.798001289367619 ], [ -73.791542053222656, -10.799908638000431 ], [ -73.791519165039006, -10.803117752075195 ], [ -73.791419982910099, -10.803607940673771 ], [ -73.790931701660099, -10.806000709533691 ], [ -73.790901184082031, -10.80728816986084 ], [ -73.791290283203125, -10.808319091796875 ], [ -73.792091369628849, -10.809533119201603 ], [ -73.792358398437443, -10.809939384460449 ], [ -73.792480468749886, -10.810259819030705 ], [ -73.793045043945256, -10.811751365661621 ], [ -73.794403076171875, -10.813770294189453 ], [ -73.796257019042912, -10.815170288085824 ], [ -73.797660827636719, -10.815882682800236 ], [ -73.798278808593693, -10.816046714782715 ], [ -73.799179077148438, -10.816284179687443 ], [ -73.801399230957031, -10.816149711608887 ], [ -73.803222656249943, -10.815477371215763 ], [ -73.806007385253849, -10.813508033752441 ], [ -73.808303833007756, -10.810789108276367 ], [ -73.809158325195256, -10.809780120849609 ], [ -73.809684753417969, -10.809549331665039 ], [ -73.810409545898324, -10.809229850768986 ], [ -73.811134338378849, -10.809103012084904 ], [ -73.811973571777344, -10.808957099914551 ], [ -73.813262939453068, -10.809088706970215 ], [ -73.814353942871094, -10.809572219848576 ], [ -73.815299987792969, -10.809991836547852 ], [ -73.815773010253906, -10.810465812683049 ], [ -73.816474914550724, -10.811171531677246 ], [ -73.817169189453068, -10.81227970123291 ], [ -73.817359924316349, -10.813015937805176 ], [ -73.817817687988224, -10.814765930175724 ], [ -73.81817626953125, -10.81870174407959 ], [ -73.818138122558594, -10.818861961364689 ], [ -73.81805419921875, -10.819243431091252 ], [ -73.818756103515625, -10.823040008544922 ], [ -73.818420410156136, -10.824112892150879 ], [ -73.818298339843693, -10.824506759643555 ], [ -73.818305969238224, -10.825157165527287 ], [ -73.817741394042912, -10.826141357421761 ], [ -73.817489624023438, -10.826583862304631 ], [ -73.817314147949219, -10.82759952545166 ], [ -73.817008972167969, -10.829347610473633 ], [ -73.817245483398381, -10.829929351806584 ], [ -73.817733764648381, -10.830422401428166 ], [ -73.817901611328125, -10.83059024810791 ], [ -73.818099975585881, -10.830754280090332 ], [ -73.819465637206918, -10.831879615783635 ], [ -73.821807861328125, -10.833381652831974 ], [ -73.822731018066406, -10.834598541259709 ], [ -73.822807312011605, -10.834696769714242 ], [ -73.822692871093693, -10.836668968200627 ], [ -73.822463989257812, -10.840473175048828 ], [ -73.822029113769474, -10.843379020690804 ], [ -73.821090698242074, -10.845278739929142 ], [ -73.818405151367131, -10.847934722900391 ], [ -73.817596435546875, -10.849072456359863 ], [ -73.817344665527287, -10.851799964904728 ], [ -73.817329406738281, -10.851980209350586 ], [ -73.817253112792912, -10.852413177490234 ], [ -73.816566467285156, -10.856328964233398 ], [ -73.816726684570312, -10.858887672424316 ], [ -73.817977905273438, -10.862545967102051 ], [ -73.818046569824219, -10.866497993469181 ], [ -73.818412780761662, -10.86767578125 ], [ -73.818962097167912, -10.86945629119873 ], [ -73.819084167480355, -10.873039245605412 ], [ -73.820472717285156, -10.876355171203613 ], [ -73.820976257324162, -10.878639221191406 ], [ -73.82025146484375, -10.880041122436467 ], [ -73.81866455078125, -10.881528854370117 ], [ -73.817794799804688, -10.881669998168888 ], [ -73.816085815429688, -10.881953239440918 ], [ -73.814491271972599, -10.883061408996525 ], [ -73.814353942871094, -10.883334159850961 ], [ -73.814117431640568, -10.883798599243164 ], [ -73.814064025878906, -10.884506225585824 ], [ -73.813972473144531, -10.885634422302246 ], [ -73.813484191894531, -10.887204170227051 ], [ -73.813125610351562, -10.888343811035156 ], [ -73.813499450683594, -10.889184951782227 ], [ -73.814918518066406, -10.890501976013184 ], [ -73.815238952636662, -10.891641616821289 ], [ -73.817092895507812, -10.892461776733342 ], [ -73.817268371581974, -10.893022537231388 ], [ -73.817535400390568, -10.893857002258244 ], [ -73.81787109375, -10.894291877746582 ], [ -73.818656921386719, -10.894794464111271 ], [ -73.820129394531193, -10.894962310790959 ], [ -73.820411682128849, -10.895301818847656 ], [ -73.820953369140625, -10.895951271057072 ], [ -73.820671081542912, -10.896926879882812 ], [ -73.819328308105469, -10.897907257080078 ], [ -73.819168090820256, -10.898892402648869 ], [ -73.8187255859375, -10.899345397949162 ], [ -73.817810058593693, -10.900277137756348 ], [ -73.817779541015625, -10.900437355041447 ], [ -73.817680358886719, -10.900911331176758 ], [ -73.817764282226562, -10.901165962219238 ], [ -73.817947387695312, -10.90169715881342 ], [ -73.820907592773438, -10.904768943786564 ], [ -73.82289886474598, -10.905895233154297 ], [ -73.824981689453068, -10.907836914062443 ], [ -73.825965881347656, -10.909400939941406 ], [ -73.826995849609318, -10.911027908325138 ], [ -73.827003479003793, -10.912331581115723 ], [ -73.827011108398438, -10.912972450256348 ], [ -73.825874328613281, -10.914640426635742 ], [ -73.825515747070312, -10.915162086486816 ], [ -73.825248718261662, -10.916044235229492 ], [ -73.824974060058537, -10.916926383972168 ], [ -73.823692321777344, -10.919469833374023 ], [ -73.823600769042969, -10.920940399169922 ], [ -73.823822021484318, -10.921566963195801 ], [ -73.823928833007756, -10.921886444091683 ], [ -73.825363159179631, -10.923446655273438 ], [ -73.827667236328011, -10.925217628478947 ], [ -73.828140258789006, -10.925580024719238 ], [ -73.829612731933594, -10.92723274230957 ], [ -73.829986572265625, -10.927913665771484 ], [ -73.830856323242188, -10.929507255554199 ], [ -73.831619262695312, -10.932450294494629 ], [ -73.832015991210938, -10.933160781860295 ], [ -73.834243774414006, -10.934323310852051 ], [ -73.836051940917912, -10.93394947052002 ], [ -73.837257385253906, -10.934389114379883 ], [ -73.837745666503849, -10.934820175170898 ], [ -73.838096618652344, -10.935132026672306 ], [ -73.839546203613281, -10.937678337097111 ], [ -73.839843749999943, -10.93790340423584 ], [ -73.84088134765625, -10.93869686126709 ], [ -73.842308044433594, -10.939135551452637 ], [ -73.842552185058594, -10.939291000366097 ], [ -73.842987060546818, -10.939572334289551 ], [ -73.84344482421875, -10.940274238586426 ], [ -73.843528747558594, -10.94040584564209 ], [ -73.843505859375, -10.940896034240723 ], [ -73.843414306640625, -10.943163871765137 ], [ -73.844100952148438, -10.944759368896428 ], [ -73.844444274902287, -10.946846961975098 ], [ -73.845504760742074, -10.948352813720703 ], [ -73.846153259277287, -10.949780464172363 ], [ -73.846321105957031, -10.949928283691293 ], [ -73.847274780273438, -10.95075607299799 ], [ -73.848487854003906, -10.951284408569279 ], [ -73.848800659179688, -10.951420783996582 ], [ -73.850257873535099, -10.952411651611328 ], [ -73.85256195068348, -10.954933166503906 ], [ -73.853439331054688, -10.955897331237736 ], [ -73.854553222656193, -10.956597328185978 ], [ -73.85546875, -10.957171440124512 ], [ -73.855812072753906, -10.957586288452092 ], [ -73.856460571289006, -10.958376884460392 ], [ -73.856651306152287, -10.958998680114746 ], [ -73.857185363769531, -10.960783958435059 ], [ -73.857131958007756, -10.963061332702523 ], [ -73.857101440429631, -10.964175224304142 ], [ -73.857345581054688, -10.965115547180062 ], [ -73.857566833496094, -10.965959548950138 ], [ -73.85821533203125, -10.970887184143066 ], [ -73.859657287597656, -10.973199844360352 ], [ -73.861289978027344, -10.973811149597111 ], [ -73.861907958984261, -10.974373817443848 ], [ -73.862564086914006, -10.97543907165516 ], [ -73.862632751464787, -10.975552558898926 ], [ -73.862899780273438, -10.976485252380314 ], [ -73.863258361816406, -10.977733612060547 ], [ -73.86324310302723, -10.977950096130371 ], [ -73.863113403320256, -10.979460716247502 ], [ -73.861846923828125, -10.982419967651367 ], [ -73.861778259277287, -10.984188079833984 ], [ -73.861747741699219, -10.984906196594238 ], [ -73.861915588378906, -10.98560619354248 ], [ -73.862342834472656, -10.987415313720703 ], [ -73.862854003906193, -10.988491058349609 ], [ -73.863365173339844, -10.989570617675724 ], [ -73.863906860351449, -10.991436004638672 ], [ -73.863868713378906, -10.992529869079476 ], [ -73.863639831542969, -10.99286937713623 ], [ -73.863250732421875, -10.993440628051701 ], [ -73.863227844238224, -10.993648529052734 ], [ -73.863197326660156, -10.994002342224121 ], [ -73.863960266113281, -10.995342254638672 ], [ -73.864311218261719, -10.99658012390131 ], [ -73.864662170410099, -10.998669624328556 ], [ -73.864601135253906, -11.000550270080566 ], [ -73.864356994628849, -11.00214958190918 ], [ -73.863609313964787, -11.003269195556641 ], [ -73.863479614257812, -11.007387161254769 ], [ -73.864517211914062, -11.012339591979924 ], [ -73.864219665527344, -11.015528678894043 ], [ -73.864295959472656, -11.016315460205078 ], [ -73.864410400390625, -11.017452239990234 ], [ -73.86480712890625, -11.01887035369873 ], [ -73.866271972656193, -11.022258758544922 ], [ -73.86651611328125, -11.023368835449219 ], [ -73.866867065429574, -11.024956703186035 ], [ -73.866905212402344, -11.027343749999943 ], [ -73.866714477539062, -11.029099464416447 ], [ -73.866523742675781, -11.030905723571777 ], [ -73.867134094238224, -11.034334182739258 ], [ -73.867172241210938, -11.035889625549316 ], [ -73.866691589355469, -11.040079116821232 ], [ -73.865562438964844, -11.045679092407227 ], [ -73.865242004394418, -11.052838325500431 ], [ -73.86468505859375, -11.056751251220703 ], [ -73.864471435546818, -11.062080383300668 ], [ -73.863090515136719, -11.068361282348633 ], [ -73.862899780273438, -11.070099830627385 ], [ -73.862892150878906, -11.07514762878418 ], [ -73.863212585449162, -11.077213287353459 ], [ -73.863288879394531, -11.07769680023182 ], [ -73.863189697265625, -11.080068588256836 ], [ -73.862922668456974, -11.086429595947266 ], [ -73.862945556640568, -11.088075637817383 ], [ -73.86297607421875, -11.089730262756291 ], [ -73.86334228515625, -11.091947555541935 ], [ -73.863853454589844, -11.095086097717228 ], [ -73.864799499511719, -11.097875595092717 ], [ -73.864929199218693, -11.102368354797363 ], [ -73.864669799804574, -11.103626251220646 ], [ -73.864662170410099, -11.103854179382324 ], [ -73.864433288574219, -11.109511375427189 ], [ -73.864036560058594, -11.112968444824162 ], [ -73.862350463867131, -11.117830276489258 ], [ -73.861930847167969, -11.122500419616642 ], [ -73.860992431640625, -11.127907752990609 ], [ -73.861114501953068, -11.130936622619572 ], [ -73.862083435058537, -11.135335922241154 ], [ -73.862205505371094, -11.136628150939941 ], [ -73.862297058105469, -11.137623786926213 ], [ -73.861961364746094, -11.141457557678223 ], [ -73.861572265625, -11.145847320556641 ], [ -73.860794067382812, -11.148369789123535 ], [ -73.860298156738281, -11.14997673034668 ], [ -73.860237121582031, -11.150983810424748 ], [ -73.860092163085824, -11.153456687927246 ], [ -73.860298156738281, -11.154359817504883 ], [ -73.860565185546818, -11.155522346496582 ], [ -73.861061096191406, -11.156731605529785 ], [ -73.861473083496094, -11.157739639282227 ], [ -73.862312316894531, -11.159134864807129 ], [ -73.862518310546875, -11.159479141235295 ], [ -73.862770080566406, -11.159770011901799 ], [ -73.863731384277344, -11.160876274108887 ], [ -73.865577697753906, -11.162565231323242 ], [ -73.867446899414062, -11.163314819335938 ], [ -73.869789123535099, -11.164254188537598 ], [ -73.873481750488281, -11.166564941406193 ], [ -73.874114990234261, -11.167219161987191 ], [ -73.874572753906193, -11.16768836975092 ], [ -73.875602722167912, -11.169219970703125 ], [ -73.878250122070312, -11.175510406494141 ], [ -73.878883361816293, -11.176522254943791 ], [ -73.880149841308594, -11.177450180053711 ], [ -73.884620666503906, -11.179510116577092 ], [ -73.88604736328125, -11.180768013000488 ], [ -73.886482238769474, -11.181384086608887 ], [ -73.886955261230412, -11.182058334350586 ], [ -73.8880615234375, -11.182471275329533 ], [ -73.888389587402287, -11.182364463806152 ], [ -73.889472961425781, -11.182009696960392 ], [ -73.89111328125, -11.180451393127328 ], [ -73.891548156738224, -11.180039405822697 ], [ -73.892494201660099, -11.178775787353459 ], [ -73.896446228027344, -11.173488616943359 ], [ -73.898948669433594, -11.170900344848633 ], [ -73.903297424316293, -11.16747856140131 ], [ -73.906539916992074, -11.165710449218693 ], [ -73.908477783203125, -11.164978027343636 ], [ -73.911476135253849, -11.163849830627385 ], [ -73.914413452148438, -11.163314819335938 ], [ -73.917678833007756, -11.1627197265625 ], [ -73.919296264648381, -11.162290573120117 ], [ -73.920356750488224, -11.162009239196777 ], [ -73.920951843261719, -11.162001609802132 ], [ -73.923286437988224, -11.161968231201172 ], [ -73.926353454589787, -11.162895202636719 ], [ -73.92742919921875, -11.163219451904297 ], [ -73.930122375488281, -11.163219451904297 ], [ -73.934196472167855, -11.162409782409668 ], [ -73.942306518554688, -11.157649040222168 ], [ -73.945152282714787, -11.155322074890023 ], [ -73.9478759765625, -11.153089523315373 ], [ -73.950798034667969, -11.152295112609806 ], [ -73.952606201171875, -11.151798248290959 ], [ -73.953651428222543, -11.151353836059513 ], [ -73.955162048339787, -11.150709152221623 ], [ -73.955604553222656, -11.150407791137638 ], [ -73.9561767578125, -11.150019645690918 ], [ -73.956619262695312, -11.149379730224609 ], [ -73.956787109374943, -11.149128913879395 ], [ -73.958740234375, -11.144499778747559 ], [ -73.959053039550724, -11.143344879150391 ], [ -73.959655761718636, -11.141139030456543 ], [ -73.959968566894531, -11.140686988830453 ], [ -73.960281372070312, -11.140229225158691 ], [ -73.962593078613224, -11.138204574584904 ], [ -73.964370727539062, -11.136649131774902 ], [ -73.964897155761662, -11.135983467101994 ], [ -73.965438842773381, -11.135298728942757 ], [ -73.967170715331974, -11.132159233093262 ], [ -73.967506408691406, -11.131771087646428 ], [ -73.968315124511662, -11.130837440490666 ], [ -73.969642639160099, -11.129838943481332 ], [ -73.974105834960938, -11.127612113952637 ], [ -73.975326538085938, -11.126239776611271 ], [ -73.977188110351506, -11.121938705444336 ], [ -73.977340698242188, -11.121456146240178 ], [ -73.977989196777344, -11.119388580322209 ], [ -73.980712890624943, -11.106169700622559 ], [ -73.981246948242188, -11.10187816619873 ], [ -73.981170654296875, -11.099208831787109 ], [ -73.980827331542855, -11.097014427185059 ], [ -73.980690002441406, -11.096110343933105 ], [ -73.9830322265625, -11.093998908996582 ], [ -73.983253479003906, -11.093428611755257 ], [ -73.983398437499943, -11.093049049377441 ], [ -73.982940673828125, -11.091799736022892 ], [ -73.981239318847656, -11.089899063110352 ], [ -73.979255676269531, -11.08689975738514 ], [ -73.978233337402287, -11.084539413452035 ], [ -73.978385925292969, -11.078085899353027 ], [ -73.97857666015625, -11.070298194885197 ], [ -73.979766845703068, -11.067953109741211 ], [ -73.980445861816293, -11.066603660583439 ], [ -73.986686706542969, -11.058865547180176 ], [ -73.987846374511719, -11.056819915771428 ], [ -73.9884033203125, -11.055511474609375 ], [ -73.989227294921875, -11.05359935760498 ], [ -73.989662170410099, -11.051992416381779 ], [ -73.990036010742188, -11.05058765411377 ], [ -73.990447998046818, -11.046380996704045 ], [ -73.991569519042912, -11.040054321289062 ], [ -73.991767883300724, -11.033809661865234 ], [ -73.992156982421818, -11.030671119689941 ], [ -73.992240905761662, -11.029980659484863 ], [ -73.992866516113281, -11.026538848876953 ], [ -73.994079589843693, -11.023058891296387 ], [ -73.994194030761719, -11.021696090698242 ], [ -73.994239807128849, -11.021148681640568 ], [ -73.995216369628849, -11.019170761108398 ], [ -73.996711730957031, -11.016130447387638 ], [ -73.997306823730412, -11.015476226806641 ], [ -74.000465393066349, -11.012019157409668 ], [ -74.001739501953125, -11.009819030761605 ], [ -74.001876831054631, -11.009290695190316 ], [ -74.002243041992188, -11.0079088211059 ], [ -74.002693176269531, -11.003129959106445 ], [ -74.004089355468693, -10.997098922729492 ], [ -74.005462646484375, -10.99367618560791 ], [ -74.006652832031193, -10.992513656616211 ], [ -74.007293701171875, -10.992172241210824 ], [ -74.008834838867131, -10.991788864135742 ], [ -74.009307861328068, -10.9917955398559 ], [ -74.010597229003906, -10.991809844970703 ], [ -74.012191772460881, -10.992320060729924 ], [ -74.01519775390625, -10.993799209594727 ], [ -74.018447875976562, -10.994079589843636 ], [ -74.020736694335938, -10.99384880065918 ], [ -74.022750854492188, -10.99285984039301 ], [ -74.024642944335938, -10.991370201110783 ], [ -74.025230407714844, -10.991329193115234 ], [ -74.026306152343693, -10.991257667541504 ], [ -74.028236389160156, -10.990479469299203 ], [ -74.028701782226449, -10.990406036376953 ], [ -74.030616760253906, -10.990109443664551 ], [ -74.032135009765511, -10.989599227905273 ], [ -74.032730102539062, -10.989396095275822 ], [ -74.033638000488224, -10.988759994506779 ], [ -74.034927368164062, -10.98752498626709 ], [ -74.037506103515625, -10.985058784484863 ], [ -74.038970947265568, -10.984479904174748 ], [ -74.040611267089787, -10.984128952026367 ], [ -74.041397094726562, -10.984292984008732 ], [ -74.041946411132756, -10.984409332275391 ], [ -74.042388916015625, -10.984793663024846 ], [ -74.043205261230469, -10.985514640808105 ], [ -74.044967651367188, -10.986515045165959 ], [ -74.045738220214787, -10.987354278564453 ], [ -74.0467529296875, -10.989079475402832 ], [ -74.047569274902287, -10.989794731140137 ], [ -74.049957275390568, -10.991893768310547 ], [ -74.052238464355412, -10.992334365844727 ], [ -74.054557800292969, -10.99218559265131 ], [ -74.055480957031193, -10.99212646484375 ], [ -74.056259155273381, -10.992559432983398 ], [ -74.056594848632812, -10.992746353149414 ], [ -74.057899475097656, -10.993471145629883 ], [ -74.059097290039006, -10.993730545043888 ], [ -74.059494018554631, -10.993662834167424 ], [ -74.060386657714844, -10.993510246276855 ], [ -74.061180114746094, -10.993179321289062 ], [ -74.062171936035099, -10.992769241332951 ], [ -74.063468933105469, -10.992618560790959 ], [ -74.065582275390568, -10.992375373840275 ], [ -74.06781005859375, -10.99241828918457 ], [ -74.068321228027344, -10.992525100708008 ], [ -74.0711669921875, -10.993128776550293 ], [ -74.076446533203068, -10.992818832397461 ], [ -74.078269958496037, -10.992367744445744 ], [ -74.078590393066406, -10.992289543151855 ], [ -74.078994750976562, -10.992092132568359 ], [ -74.083831787109375, -10.989748954772892 ], [ -74.088470458984318, -10.989548683166504 ], [ -74.089538574218693, -10.989199638366699 ], [ -74.091232299804631, -10.988249778747559 ], [ -74.095787048339844, -10.987356185912972 ], [ -74.097297668457031, -10.986654281616154 ], [ -74.098457336425781, -10.986390113830566 ], [ -74.099365234374943, -10.986385345458984 ], [ -74.102081298828125, -10.986369132995605 ], [ -74.102653503417969, -10.986213684082031 ], [ -74.102897644042855, -10.986147880554199 ], [ -74.103851318359261, -10.986211776733285 ], [ -74.105018615722656, -10.986289978027344 ], [ -74.107063293456974, -10.987182617187443 ], [ -74.110527038574105, -10.9878892898559 ], [ -74.111915588378906, -10.988612174987736 ], [ -74.112831115722656, -10.98908805847168 ], [ -74.113609313964844, -10.989396095275822 ], [ -74.116203308105469, -10.990419387817383 ], [ -74.118247985839787, -10.990818023681584 ], [ -74.120162963867074, -10.990498542785645 ], [ -74.122817993164006, -10.989648818969613 ], [ -74.12420654296875, -10.988739967346135 ], [ -74.126197814941406, -10.987949371337834 ], [ -74.128616333007756, -10.986609458923283 ], [ -74.130256652831974, -10.986437797546387 ], [ -74.131111145019474, -10.986347198486271 ], [ -74.136390686035156, -10.988126754760742 ], [ -74.138565063476449, -10.98847675323475 ], [ -74.139038085937443, -10.98913383483881 ], [ -74.139495849609318, -10.989763259887695 ], [ -74.140777587890625, -10.993290901184082 ], [ -74.140930175781193, -10.993699073791447 ], [ -74.141006469726562, -10.993799209594727 ], [ -74.143035888671818, -10.996401786804199 ], [ -74.144271850585881, -10.997382164001408 ], [ -74.146026611328125, -10.997314453124943 ], [ -74.148139953613281, -10.998244285583439 ], [ -74.151573181152344, -10.998162269592285 ], [ -74.151939392089844, -10.99838924407959 ], [ -74.153335571289006, -10.99843692779541 ], [ -74.154731750488281, -10.99803638458252 ], [ -74.156105041503849, -10.998318672180176 ], [ -74.156547546386719, -10.998412132263127 ], [ -74.158065795898438, -10.998469352722168 ], [ -74.158988952636719, -10.998146057128849 ], [ -74.160186767578068, -10.996959686279297 ], [ -74.161430358886662, -10.996175765991211 ], [ -74.161743164062386, -10.995978355407715 ], [ -74.161827087402287, -10.995896339416447 ], [ -74.163795471191406, -10.994000434875431 ], [ -74.164680480956974, -10.993500709533635 ], [ -74.165916442871037, -10.993100166320801 ], [ -74.168136596679688, -10.993069648742676 ], [ -74.169876098632812, -10.992449760437012 ], [ -74.173492431640625, -10.992511749267578 ], [ -74.174606323242131, -10.992529869079476 ], [ -74.176162719726562, -10.991657257080078 ], [ -74.178718566894418, -10.990219116210938 ], [ -74.17910003662098, -10.989868164062443 ], [ -74.179725646972656, -10.989287376403695 ], [ -74.180603027343693, -10.987990379333496 ], [ -74.182075500488281, -10.986739158630371 ], [ -74.182701110839787, -10.986209869384766 ], [ -74.185379028320256, -10.985398292541447 ], [ -74.188796997070256, -10.98523044586176 ], [ -74.190910339355412, -10.98546028137207 ], [ -74.191879272460938, -10.985788345336914 ], [ -74.193367004394474, -10.986289978027344 ], [ -74.194068908691293, -10.986919403076115 ], [ -74.194427490234318, -10.987752914428711 ], [ -74.194465637207031, -10.988581657409668 ], [ -74.194564819335938, -10.990519523620549 ], [ -74.194160461425724, -10.993048667907715 ], [ -74.192146301269474, -10.997770309448242 ], [ -74.192008972167969, -10.998874664306641 ], [ -74.191947937011662, -10.999410629272461 ], [ -74.192115783691406, -11.000796318054142 ], [ -74.192916870117131, -11.002596855163574 ], [ -74.193565368652287, -11.003105163574162 ], [ -74.194183349609375, -11.003232955932617 ], [ -74.195594787597543, -11.003021240234318 ], [ -74.196441650390568, -11.002895355224609 ], [ -74.197044372558594, -11.003006935119629 ], [ -74.197341918945312, -11.003059387207031 ], [ -74.197456359863281, -11.003128051757756 ], [ -74.198272705078125, -11.003605842590275 ], [ -74.198898315429631, -11.004497528076172 ], [ -74.199325561523438, -11.005110740661564 ], [ -74.200469970703125, -11.010402679443359 ], [ -74.200889587402344, -11.014321327209359 ], [ -74.201019287109318, -11.014710426330566 ], [ -74.201530456542969, -11.016240119934082 ], [ -74.201812744140625, -11.020877838134652 ], [ -74.202430725097599, -11.022931098937988 ], [ -74.202766418457031, -11.02404594421381 ], [ -74.203704833984375, -11.024692535400277 ], [ -74.203887939453068, -11.024818420410156 ], [ -74.204559326171761, -11.024870872497559 ], [ -74.206741333007756, -11.025038719177189 ], [ -74.214378356933537, -11.024388313293457 ], [ -74.215766906738281, -11.024377822875977 ], [ -74.217613220214787, -11.024365425109863 ], [ -74.219108581542969, -11.023645401000977 ], [ -74.220909118652344, -11.022061347961426 ], [ -74.221214294433537, -11.021911621093693 ], [ -74.222236633300781, -11.021419525146428 ], [ -74.224853515624943, -11.021281242370605 ], [ -74.226760864257756, -11.02117919921875 ], [ -74.227645874023438, -11.021061897277775 ], [ -74.232437133789062, -11.020428657531625 ], [ -74.237922668456974, -11.018363952636662 ], [ -74.239799499511719, -11.017657279968262 ], [ -74.243179321289006, -11.017368316650391 ], [ -74.249107360839844, -11.017608642578068 ], [ -74.249671936035156, -11.017742156982422 ], [ -74.251625061035156, -11.01820182800293 ], [ -74.256858825683594, -11.020530700683594 ], [ -74.258956909179688, -11.022001266479492 ], [ -74.263191223144474, -11.024966239929199 ], [ -74.265670776367131, -11.025679588317871 ], [ -74.272048950195256, -11.025894165039062 ], [ -74.273674011230412, -11.026715278625431 ], [ -74.273864746093693, -11.026812553405762 ], [ -74.276947021484375, -11.029149055480957 ], [ -74.277450561523438, -11.029180526733398 ], [ -74.278060913085881, -11.029218673705998 ], [ -74.281898498535099, -11.027878761291504 ], [ -74.282318115234375, -11.027612686157227 ], [ -74.287117004394474, -11.024558067321721 ], [ -74.288269042968693, -11.024298667907715 ], [ -74.290359497070256, -11.025490760803223 ], [ -74.291885375976506, -11.026976585388184 ], [ -74.294532775878906, -11.029549598693791 ], [ -74.296951293945256, -11.030735015869141 ], [ -74.298019409179574, -11.031044960021973 ], [ -74.302169799804688, -11.031336784362736 ], [ -74.304031372070312, -11.032081604003906 ], [ -74.305961608886719, -11.032855033874455 ], [ -74.307945251464844, -11.033283233642578 ], [ -74.309448242187443, -11.034016609191895 ], [ -74.309700012207031, -11.034137725829964 ], [ -74.310356140136719, -11.034075736999455 ], [ -74.310623168945312, -11.034049034118652 ], [ -74.312973022460881, -11.034588813781738 ], [ -74.317047119140625, -11.034687042236271 ], [ -74.317237854003906, -11.034723281860295 ], [ -74.318489074706974, -11.03496265411377 ], [ -74.320854187011719, -11.036433219909668 ], [ -74.321578979492188, -11.037097930908203 ], [ -74.328765869140625, -11.043719291686955 ], [ -74.330978393554688, -11.045390129089355 ], [ -74.331512451171875, -11.046110153198242 ], [ -74.333274841308537, -11.048488616943359 ], [ -74.334533691406193, -11.049073219299316 ], [ -74.336196899414062, -11.049842834472599 ], [ -74.336723327636662, -11.050355911254883 ], [ -74.337242126464844, -11.05086708068842 ], [ -74.338584899902344, -11.052656173705998 ], [ -74.338966369628906, -11.053168296813908 ], [ -74.339065551757812, -11.053224563598576 ], [ -74.340217590332031, -11.053920745849609 ], [ -74.341300964355412, -11.054221153259221 ], [ -74.342239379882756, -11.054299354553223 ], [ -74.344055175781193, -11.054445266723633 ], [ -74.347908020019531, -11.05562782287592 ], [ -74.353363037109375, -11.055570602416992 ], [ -74.353614807128849, -11.05546760559082 ], [ -74.355506896972599, -11.054709434509164 ], [ -74.357292175292969, -11.053569793701115 ], [ -74.358795166015625, -11.053091049194336 ], [ -74.36212158203125, -11.05327129364008 ], [ -74.366737365722656, -11.051933288574162 ], [ -74.369888305664062, -11.051847457885742 ], [ -74.371170043945312, -11.051810264587402 ], [ -74.371833801269418, -11.051423072814828 ], [ -74.373489379882812, -11.050460815429688 ], [ -74.3753662109375, -11.049678802490121 ], [ -74.379989624023438, -11.049498558044434 ], [ -74.380271911621094, -11.049399375915527 ], [ -74.380577087402287, -11.049288749694824 ], [ -74.380958557128849, -11.048937797546387 ], [ -74.381942749023324, -11.048028945922852 ], [ -74.382217407226506, -11.047353744506836 ], [ -74.382217407226506, -11.046428680419865 ], [ -74.382522583007812, -11.04607963562006 ], [ -74.382637023925781, -11.046073913574219 ], [ -74.386222839355412, -11.045908927917424 ], [ -74.390037536621037, -11.044719696044808 ], [ -74.394287109375, -11.04485893249506 ], [ -74.39544677734375, -11.04460334777832 ], [ -74.395652770996037, -11.044560432434082 ], [ -74.399063110351562, -11.042363166808968 ], [ -74.40228271484375, -11.040288925170785 ], [ -74.404296875, -11.039388656616211 ], [ -74.407890319824219, -11.036108970642033 ], [ -74.411087036132812, -11.034949302673283 ], [ -74.41192626953125, -11.034467697143441 ], [ -74.412620544433537, -11.034069061279297 ], [ -74.412895202636719, -11.033670425414982 ], [ -74.414115905761719, -11.031879425048828 ], [ -74.414421081542969, -11.029629707336426 ], [ -74.420486450195312, -11.022601127624512 ], [ -74.421066284179688, -11.021078109741211 ], [ -74.420608520507812, -11.019904136657601 ], [ -74.420257568359318, -11.019020080566406 ], [ -74.418106079101562, -11.016240119934082 ], [ -74.417816162109375, -11.015439987182617 ], [ -74.417701721191349, -11.015121459960881 ], [ -74.417900085449219, -11.014516830444279 ], [ -74.419700622558537, -11.012939453124943 ], [ -74.419891357421818, -11.012557029724007 ], [ -74.420280456542855, -11.011778831481877 ], [ -74.420562744140568, -11.010049819946232 ], [ -74.420082092285099, -11.007998466491699 ], [ -74.419151306152344, -11.006078720092773 ], [ -74.418159484863224, -11.00465011596674 ], [ -74.417610168456918, -11.004213333129826 ], [ -74.416625976562443, -11.003429412841683 ], [ -74.414558410644418, -11.002218246459904 ], [ -74.414299011230469, -11.001931190490723 ], [ -74.413246154785156, -11.000760078430119 ], [ -74.413101196289006, -11.000314712524357 ], [ -74.412933349609318, -10.999799728393555 ], [ -74.41326904296875, -10.998771667480469 ], [ -74.413642883300781, -10.997639656066895 ], [ -74.414268493652287, -10.996873855590763 ], [ -74.414695739746094, -10.996350288391113 ], [ -74.4156494140625, -10.995644569396973 ], [ -74.417335510253906, -10.995107650756836 ], [ -74.42138671875, -10.994528770446721 ], [ -74.423362731933594, -10.993988037109261 ], [ -74.424057006835938, -10.993799209594727 ], [ -74.431877136230469, -10.989798545837402 ], [ -74.433990478515568, -10.988300323486328 ], [ -74.435340881347599, -10.986511230468693 ], [ -74.435607910156193, -10.986160278320256 ], [ -74.436599731445312, -10.98357105255127 ], [ -74.437782287597656, -10.980498313903752 ], [ -74.440055847167969, -10.975619316101017 ], [ -74.440170288085938, -10.97551441192627 ], [ -74.442276000976506, -10.973540306091252 ], [ -74.446868896484318, -10.970939636230469 ], [ -74.449752807617188, -10.968929290771484 ], [ -74.451225280761719, -10.967187881469727 ], [ -74.451416015625, -10.966958045959473 ], [ -74.452224731445256, -10.965347290039006 ], [ -74.453231811523438, -10.963340759277287 ], [ -74.45461273193348, -10.961489677429199 ], [ -74.454841613769531, -10.961261749267521 ], [ -74.455802917480469, -10.960318565368652 ], [ -74.457252502441349, -10.959624290466252 ], [ -74.458221435546818, -10.959160804748535 ], [ -74.459579467773438, -10.958949089050236 ], [ -74.460235595703068, -10.95884895324707 ], [ -74.465454101562443, -10.96018028259266 ], [ -74.466308593749943, -10.960580825805664 ], [ -74.468467712402344, -10.961594581604004 ], [ -74.471168518066406, -10.96230411529541 ], [ -74.474426269531193, -10.962310791015568 ], [ -74.475921630859375, -10.961828231811523 ], [ -74.477516174316406, -10.960289001464787 ], [ -74.47772216796875, -10.959882736205998 ], [ -74.478096008300781, -10.959139823913517 ], [ -74.480316162109375, -10.956318855285588 ], [ -74.481254577636719, -10.954383850097599 ], [ -74.482139587402287, -10.952569961547852 ], [ -74.482658386230469, -10.951777458190861 ], [ -74.483039855957031, -10.951189041137638 ], [ -74.491355895996094, -10.943070411682072 ], [ -74.497138977050724, -10.936209678649902 ], [ -74.498367309570256, -10.934410095214844 ], [ -74.502052307128906, -10.930330276489144 ], [ -74.503395080566406, -10.930045127868596 ], [ -74.503517150878849, -10.930020332336312 ], [ -74.507316589355412, -10.930061340331974 ], [ -74.511314392089844, -10.930880546569824 ], [ -74.513916015624943, -10.930952072143555 ], [ -74.515853881835938, -10.931007385253849 ], [ -74.519920349121037, -10.930687904357796 ], [ -74.523529052734318, -10.930765151977539 ], [ -74.532226562499943, -10.929384231567383 ], [ -74.5341796875, -10.929497718811035 ], [ -74.538383483886719, -10.930235862731877 ], [ -74.539253234863281, -10.930184364318791 ], [ -74.540435791015568, -10.930109024047795 ], [ -74.541091918945256, -10.929789543151855 ], [ -74.542030334472599, -10.92889404296875 ], [ -74.547714233398438, -10.920944213867188 ], [ -74.549270629882812, -10.919518470764103 ], [ -74.551475524902287, -10.918807029724064 ], [ -74.553771972656193, -10.91912841796875 ], [ -74.554611206054688, -10.919048309326172 ], [ -74.55523681640625, -10.918807029724064 ], [ -74.555900573730469, -10.918548583984261 ], [ -74.55684661865223, -10.91785812377924 ], [ -74.557991027831918, -10.91702747344965 ], [ -74.559791564941349, -10.916290283203125 ], [ -74.561370849609375, -10.916083335876465 ], [ -74.566131591796875, -10.915458679199219 ], [ -74.568305969238281, -10.914994239807129 ], [ -74.568763732910099, -10.914897918701115 ], [ -74.571281433105469, -10.913717269897404 ], [ -74.573928833007812, -10.912055969238224 ], [ -74.574165344238281, -10.911744117736816 ], [ -74.574249267578125, -10.911631584167424 ], [ -74.573127746581974, -10.910770416259766 ], [ -74.572708129882812, -10.90972900390625 ], [ -74.572624206542969, -10.906285285949707 ], [ -74.572540283203125, -10.902838706970215 ], [ -74.572418212890625, -10.902384757995549 ], [ -74.572113037109375, -10.901249885559082 ], [ -74.571632385253906, -10.900382041931096 ], [ -74.5711669921875, -10.899538993835392 ], [ -74.570167541503849, -10.898711204528809 ], [ -74.568336486816406, -10.898048400878793 ], [ -74.567520141601506, -10.89756965637207 ], [ -74.565696716308537, -10.896500587463379 ], [ -74.561546325683594, -10.892369270324707 ], [ -74.560127258300781, -10.891228675842285 ], [ -74.559555053710938, -10.89092826843256 ], [ -74.557998657226562, -10.890110015869084 ], [ -74.556907653808537, -10.889668464660588 ], [ -74.554542541503849, -10.888708114624023 ], [ -74.553024291992131, -10.888273239135629 ], [ -74.552665710449219, -10.888168334960938 ], [ -74.552169799804631, -10.888127326965275 ], [ -74.547203063964787, -10.887725830078068 ], [ -74.546150207519474, -10.887815475463867 ], [ -74.545730590820312, -10.887850761413574 ], [ -74.544853210449219, -10.888398170471191 ], [ -74.543769836425724, -10.88907527923584 ], [ -74.542945861816406, -10.890052795410156 ], [ -74.542861938476562, -10.890315055847168 ], [ -74.542724609374943, -10.89076042175293 ], [ -74.540702819824162, -10.89266300201416 ], [ -74.539505004882812, -10.893214225769043 ], [ -74.538932800292969, -10.893475532531681 ], [ -74.538139343261662, -10.893668174743652 ], [ -74.537673950195256, -10.893781661987248 ], [ -74.536918640136719, -10.893799781799316 ], [ -74.534149169921761, -10.893865585327092 ], [ -74.532417297363224, -10.893479347228947 ], [ -74.530532836914062, -10.893058776855412 ], [ -74.527023315429688, -10.893009185791016 ], [ -74.525787353515625, -10.892619132995605 ], [ -74.523231506347656, -10.893680572509766 ], [ -74.521766662597656, -10.894289970397892 ], [ -74.519401550292969, -10.894737243652344 ], [ -74.51751708984375, -10.895359039306584 ], [ -74.513778686523438, -10.896592140197754 ], [ -74.509437561035099, -10.896979331970215 ], [ -74.507148742675724, -10.896933555603027 ], [ -74.504890441894531, -10.896885871887207 ], [ -74.502792358398438, -10.897615432739144 ], [ -74.501487731933594, -10.897369384765568 ], [ -74.500022888183594, -10.896444320678654 ], [ -74.499465942382812, -10.895929336547852 ], [ -74.499298095703125, -10.895529747009221 ], [ -74.499229431152287, -10.895369529724121 ], [ -74.498512268066406, -10.892699241638184 ], [ -74.49886322021473, -10.886999130248967 ], [ -74.498367309570256, -10.882258415222111 ], [ -74.495376586914062, -10.875097274780217 ], [ -74.494476318359261, -10.87165355682373 ], [ -74.49395751953125, -10.869688987731877 ], [ -74.491851806640625, -10.866194725036621 ], [ -74.4915771484375, -10.865738868713265 ], [ -74.491516113281193, -10.865601539611816 ], [ -74.490547180175724, -10.863459587097168 ], [ -74.488082885742131, -10.860007286071777 ], [ -74.4874267578125, -10.85821342468256 ], [ -74.487228393554574, -10.857668876647892 ], [ -74.487052917480469, -10.855740547180176 ], [ -74.487678527831974, -10.853521347045842 ], [ -74.491249084472656, -10.84954833984375 ], [ -74.491897583007756, -10.847929954528752 ], [ -74.490959167480469, -10.845028877258244 ], [ -74.490913391113224, -10.844732284545898 ], [ -74.490646362304631, -10.843048095703125 ], [ -74.490066528320256, -10.841690063476562 ], [ -74.489692687988224, -10.841183662414551 ], [ -74.489295959472599, -10.840639114379883 ], [ -74.485496520996037, -10.838521957397461 ], [ -74.481216430664006, -10.835267066955566 ], [ -74.479812622070312, -10.834778785705566 ], [ -74.479164123535156, -10.834778785705566 ], [ -74.477859497070256, -10.834778785705566 ], [ -74.473846435546818, -10.83622932434082 ], [ -74.471336364746094, -10.83685111999506 ], [ -74.468826293945312, -10.836821556091309 ], [ -74.466987609863224, -10.836418151855412 ], [ -74.463249206542969, -10.832718849182072 ], [ -74.461868286132812, -10.831736564636174 ], [ -74.461280822753849, -10.831319808959904 ], [ -74.460319519042912, -10.830326080322209 ], [ -74.458900451660099, -10.828858375549316 ], [ -74.455429077148438, -10.826070785522404 ], [ -74.451271057128849, -10.823821067810002 ], [ -74.448699951171761, -10.822750091552734 ], [ -74.444038391113281, -10.819891929626408 ], [ -74.44061279296875, -10.819089889526367 ], [ -74.440116882324105, -10.818668365478459 ], [ -74.439720153808537, -10.817651748657227 ], [ -74.439079284667969, -10.817089080810547 ], [ -74.438095092773381, -10.816916465759277 ], [ -74.437355041503906, -10.816986083984261 ], [ -74.436882019042969, -10.817031860351562 ], [ -74.436714172363281, -10.816974639892521 ], [ -74.436180114746037, -10.81679534912098 ], [ -74.435478210449219, -10.816188812255803 ], [ -74.433929443359375, -10.813778877258301 ], [ -74.431419372558537, -10.812346458435002 ], [ -74.429580688476562, -10.812289237975961 ], [ -74.428939819335881, -10.812619209289437 ], [ -74.425071716308594, -10.814620018005371 ], [ -74.423713684081918, -10.814864158630257 ], [ -74.423507690429631, -10.814899444580078 ], [ -74.423377990722656, -10.814883232116699 ], [ -74.422592163085938, -10.814798355102539 ], [ -74.420440673828068, -10.813711166381836 ], [ -74.417510986328068, -10.810479164123535 ], [ -74.416374206542969, -10.809490203857422 ], [ -74.415573120117131, -10.808788299560547 ], [ -74.415084838867188, -10.808614730834904 ], [ -74.413719177246094, -10.808129310607853 ], [ -74.410720825195256, -10.806459426879883 ], [ -74.407882690429574, -10.805770874023438 ], [ -74.406227111816349, -10.80536937713623 ], [ -74.405158996582031, -10.805628776550293 ], [ -74.404235839843693, -10.806535720825138 ], [ -74.398696899414006, -10.811964988708439 ], [ -74.397537231445312, -10.812886238098088 ], [ -74.396820068359261, -10.813235282897892 ], [ -74.396293640136719, -10.813489913940373 ], [ -74.394966125488281, -10.81373405456543 ], [ -74.394828796386719, -10.813758850097656 ], [ -74.392967224121094, -10.8135986328125 ], [ -74.390602111816349, -10.812324523925781 ], [ -74.389381408691293, -10.811669349670296 ], [ -74.388076782226562, -10.810128211975041 ], [ -74.387031555175781, -10.807689666748047 ], [ -74.384078979492188, -10.805191993713379 ], [ -74.383178710937443, -10.803689956665039 ], [ -74.382942199707031, -10.802947044372559 ], [ -74.382232666015625, -10.800697326660156 ], [ -74.381362915039006, -10.79896068572998 ], [ -74.379302978515625, -10.796525955200082 ], [ -74.376815795898438, -10.793588638305664 ], [ -74.375236511230412, -10.791088104248047 ], [ -74.374893188476562, -10.790046691894531 ], [ -74.374465942382812, -10.788728713989258 ], [ -74.373977661132812, -10.785584449768066 ], [ -74.373939514160156, -10.785359382629395 ], [ -74.373497009277344, -10.783916473388672 ], [ -74.373100280761719, -10.782619476318303 ], [ -74.373100280761719, -10.782427787780705 ], [ -74.37310791015625, -10.782072067260742 ], [ -74.370796203613281, -10.777365684509221 ], [ -74.370567321777287, -10.77534008026123 ], [ -74.370597839355469, -10.774381637573185 ], [ -74.370666503906193, -10.772029876708928 ], [ -74.3702392578125, -10.77063083648676 ], [ -74.369194030761719, -10.769707679748421 ], [ -74.368217468261719, -10.768851280212402 ], [ -74.36611175537098, -10.76785945892334 ], [ -74.363197326660156, -10.766050338745117 ], [ -74.360496520996094, -10.765028953552246 ], [ -74.35687255859375, -10.764269828796387 ], [ -74.356185913085881, -10.763797760009766 ], [ -74.355583190917969, -10.763379096984806 ], [ -74.353752136230469, -10.760293006896973 ], [ -74.353462219238281, -10.759798049926701 ], [ -74.351486206054631, -10.757229804992676 ], [ -74.350296020507812, -10.754611015319824 ], [ -74.349555969238281, -10.752985954284668 ], [ -74.348747253417912, -10.746626853942871 ], [ -74.347785949706974, -10.744326591491699 ], [ -74.345687866210881, -10.741999626159554 ], [ -74.341491699218693, -10.739108085632267 ], [ -74.340309143066406, -10.738194465637207 ], [ -74.338417053222656, -10.736728668212891 ], [ -74.337547302246094, -10.735566139221078 ], [ -74.336982727050781, -10.734809875488281 ], [ -74.336242675781193, -10.734142303466797 ], [ -74.334426879882756, -10.732499122619572 ], [ -74.333381652831974, -10.731910705566349 ], [ -74.330917358398381, -10.7310791015625 ], [ -74.329071044921875, -10.729839324951172 ], [ -74.328079223632812, -10.728398323059025 ], [ -74.327941894531193, -10.727910995483398 ], [ -74.327156066894531, -10.725101470947266 ], [ -74.326461791992188, -10.72393798828125 ], [ -74.325721740722656, -10.723505020141602 ], [ -74.32501220703125, -10.723090171813908 ], [ -74.322311401367131, -10.722489356994572 ], [ -74.321144104003906, -10.721666336059457 ], [ -74.320404052734318, -10.72114372253418 ], [ -74.318962097167969, -10.719710350036621 ], [ -74.318473815917969, -10.718855857849121 ], [ -74.317413330078125, -10.71697998046875 ], [ -74.316947937011719, -10.71644210815424 ], [ -74.316429138183594, -10.715840339660645 ], [ -74.315673828125, -10.715512275695744 ], [ -74.315345764160099, -10.715371131896973 ], [ -74.312316894531193, -10.714818954467773 ], [ -74.311370849609261, -10.714144706726017 ], [ -74.310623168945312, -10.713608741760197 ], [ -74.309471130371094, -10.71150970458973 ], [ -74.307533264160099, -10.709498405456543 ], [ -74.306068420410156, -10.707980155944824 ], [ -74.305809020996037, -10.706757545471135 ], [ -74.305023193359375, -10.70299053192133 ], [ -74.304603576660156, -10.702603340148926 ], [ -74.304122924804574, -10.70215892791748 ], [ -74.302803039550781, -10.701821327209473 ], [ -74.301902770996037, -10.701588630676213 ], [ -74.300140380859375, -10.700410842895508 ], [ -74.298576354980412, -10.698339462280273 ], [ -74.296752929687443, -10.696499824523926 ], [ -74.296310424804688, -10.695713043212891 ], [ -74.293975830078125, -10.69159984588623 ], [ -74.291023254394474, -10.68822193145752 ], [ -74.289962768554688, -10.687008857726994 ], [ -74.288818359375, -10.685422897338754 ], [ -74.287956237792969, -10.684228897094727 ], [ -74.287445068359375, -10.682892799377385 ], [ -74.286972045898438, -10.681659698486214 ], [ -74.286979675292969, -10.680951118469238 ], [ -74.2869873046875, -10.680270195007267 ], [ -74.287071228027344, -10.679835319519043 ], [ -74.287345886230469, -10.678378105163517 ], [ -74.287330627441349, -10.675518035888615 ], [ -74.287010192871094, -10.674469947814941 ], [ -74.286834716796818, -10.674262046813908 ], [ -74.286407470703125, -10.673757553100529 ], [ -74.284538269042912, -10.672969818115178 ], [ -74.281837463378906, -10.672917366027832 ], [ -74.280838012695256, -10.673318862915039 ], [ -74.278663635253906, -10.674186706542912 ], [ -74.278297424316406, -10.674239158630371 ], [ -74.277328491210938, -10.674383163452148 ], [ -74.275169372558594, -10.675848007202148 ], [ -74.274787902832031, -10.675944328308105 ], [ -74.274208068847656, -10.676090240478459 ], [ -74.273117065429631, -10.675768852233887 ], [ -74.270790100097656, -10.673929214477539 ], [ -74.268920898437443, -10.673843383789062 ], [ -74.268615722656193, -10.673827171325684 ], [ -74.266532897949162, -10.673728942871037 ], [ -74.26580810546875, -10.674118995666447 ], [ -74.265190124511662, -10.675458908081055 ], [ -74.264396667480469, -10.67620944976801 ], [ -74.26387786865223, -10.676213264465275 ], [ -74.263076782226562, -10.676219940185433 ], [ -74.261695861816406, -10.675708770751896 ], [ -74.261283874511662, -10.675271987915039 ], [ -74.260932922363281, -10.674898147582951 ], [ -74.2608642578125, -10.672774314880371 ], [ -74.260772705078125, -10.670039176940918 ], [ -74.259880065917969, -10.668992996215763 ], [ -74.258956909179688, -10.667909622192383 ], [ -74.258209228515625, -10.665918350219727 ], [ -74.256370544433594, -10.662820816039925 ], [ -74.252922058105469, -10.659326553344727 ], [ -74.251106262207031, -10.657489776611328 ], [ -74.249740600585881, -10.65551853179926 ], [ -74.248367309570312, -10.654665946960449 ], [ -74.247566223144474, -10.654169082641602 ], [ -74.247138977050781, -10.653483390808049 ], [ -74.246353149414062, -10.652220726013184 ], [ -74.245033264160156, -10.650910377502441 ], [ -74.244209289550724, -10.649164199829045 ], [ -74.2432861328125, -10.648249626159611 ], [ -74.242782592773381, -10.647952079772892 ], [ -74.242095947265625, -10.647550582885685 ], [ -74.241615295410156, -10.646622657775879 ], [ -74.241256713867131, -10.645930290222111 ], [ -74.240402221679631, -10.645485877990723 ], [ -74.239036560058594, -10.644779205322266 ], [ -74.236358642578125, -10.64459228515625 ], [ -74.235710144042912, -10.644549369812012 ], [ -74.234016418456974, -10.643252372741699 ], [ -74.232048034667969, -10.640696525573674 ], [ -74.230606079101562, -10.63593864440918 ], [ -74.230331420898438, -10.635605812072697 ], [ -74.229431152343693, -10.63450908660883 ], [ -74.227546691894531, -10.633308410644418 ], [ -74.2264404296875, -10.633147239685059 ], [ -74.225517272949162, -10.633009910583496 ], [ -74.224754333496037, -10.633262634277344 ], [ -74.224212646484375, -10.633436203002873 ], [ -74.222656249999943, -10.635112762451115 ], [ -74.222206115722656, -10.635812759399357 ], [ -74.220672607421818, -10.638201713562012 ], [ -74.219490051269531, -10.63892936706543 ], [ -74.219078063964844, -10.638998985290471 ], [ -74.217849731445312, -10.639208793640137 ], [ -74.217010498046875, -10.639190673828068 ], [ -74.216255187988224, -10.638952255248967 ], [ -74.215522766113224, -10.638718605041504 ], [ -74.213996887206974, -10.63916969299305 ], [ -74.212432861328125, -10.63916969299305 ], [ -74.210975646972656, -10.638580322265625 ], [ -74.209503173828068, -10.637983322143555 ], [ -74.204986572265625, -10.636569976806641 ], [ -74.203536987304688, -10.635894775390625 ], [ -74.202896118164062, -10.635597229003793 ], [ -74.201560974121094, -10.635704040527344 ], [ -74.199867248535099, -10.635843276977539 ], [ -74.196044921874943, -10.638237953186035 ], [ -74.194511413574162, -10.638595581054688 ], [ -74.189872741699105, -10.638375282287541 ], [ -74.185028076171875, -10.636527061462289 ], [ -74.183021545410156, -10.636286735534668 ], [ -74.181526184082031, -10.636561393737793 ], [ -74.177009582519531, -10.637383460998535 ], [ -74.174850463867188, -10.637168884277344 ], [ -74.172943115234375, -10.636980056762582 ], [ -74.170448303222656, -10.637060165405217 ], [ -74.169372558593636, -10.637310981750431 ], [ -74.166122436523381, -10.638070106506291 ], [ -74.164680480956974, -10.638718605041504 ], [ -74.162765502929631, -10.639580726623535 ], [ -74.161376953125, -10.640602111816406 ], [ -74.160308837890511, -10.641383171081486 ], [ -74.159706115722599, -10.64280986785883 ], [ -74.159530639648381, -10.645565986633301 ], [ -74.159423828124943, -10.646015167236328 ], [ -74.158988952636719, -10.64789867401123 ], [ -74.158851623535099, -10.648198127746525 ], [ -74.158493041992131, -10.648990631103516 ], [ -74.157035827636662, -10.650520324707031 ], [ -74.147850036621094, -10.653619766235352 ], [ -74.145843505859375, -10.65455436706543 ], [ -74.14544677734375, -10.654873847961369 ], [ -74.144844055175724, -10.655357360839844 ], [ -74.143913269042969, -10.656945228576603 ], [ -74.143135070800724, -10.659834861755371 ], [ -74.142005920410156, -10.664047241210938 ], [ -74.141487121581974, -10.664934158325195 ], [ -74.139549255371094, -10.667140007018929 ], [ -74.1387939453125, -10.667236328124943 ], [ -74.138526916503906, -10.667269706726074 ], [ -74.137466430664062, -10.666889190673828 ], [ -74.135581970214787, -10.664628028869629 ], [ -74.133537292480469, -10.661759376525879 ], [ -74.131767272949162, -10.657020568847599 ], [ -74.131401062011662, -10.654828071594238 ], [ -74.131561279296875, -10.654039382934513 ], [ -74.132553100585881, -10.652468681335449 ], [ -74.132843017578011, -10.650867462158203 ], [ -74.133026123046818, -10.64983940124506 ], [ -74.133224487304574, -10.649437904357853 ], [ -74.134902954101562, -10.646039962768441 ], [ -74.134910583496037, -10.639674186706429 ], [ -74.135215759277287, -10.638539314269963 ], [ -74.135940551757812, -10.63714599609375 ], [ -74.136451721191349, -10.636159896850586 ], [ -74.137062072753906, -10.634320259094238 ], [ -74.137046813964844, -10.631661415100098 ], [ -74.137512207031193, -10.630812644958496 ], [ -74.137992858886605, -10.629948616027832 ], [ -74.138908386230469, -10.62896728515625 ], [ -74.139251708984375, -10.628600120544377 ], [ -74.139930725097656, -10.626029014587346 ], [ -74.139923095703125, -10.623931884765568 ], [ -74.139907836914062, -10.619858741760197 ], [ -74.140037536621094, -10.618822097778263 ], [ -74.140266418456974, -10.616939544677734 ], [ -74.140251159667912, -10.615009307861328 ], [ -74.138900756835938, -10.61238956451416 ], [ -74.138786315917969, -10.609740257263184 ], [ -74.138206481933594, -10.609081268310433 ], [ -74.137702941894474, -10.608509063720589 ], [ -74.135108947753849, -10.607489585876465 ], [ -74.134544372558537, -10.607103347778263 ], [ -74.134346008300724, -10.60697078704834 ], [ -74.133720397949219, -10.606237411498967 ], [ -74.133560180664062, -10.606049537658635 ], [ -74.133483886718693, -10.605819702148381 ], [ -74.133186340332031, -10.60491943359375 ], [ -74.133201599121037, -10.604635238647404 ], [ -74.133216857910099, -10.604179382324219 ], [ -74.133644104003906, -10.602989196777344 ], [ -74.134185791015625, -10.60148906707758 ], [ -74.134407043457031, -10.600426673889046 ], [ -74.134666442871094, -10.599140167236271 ], [ -74.135597229003849, -10.598002433776855 ], [ -74.136405944824219, -10.59700870513916 ], [ -74.136802673339844, -10.595634460449105 ], [ -74.136970520019531, -10.595060348510742 ], [ -74.138381958007812, -10.593250274658089 ], [ -74.1405029296875, -10.589409828186035 ], [ -74.141708374023381, -10.584119796752873 ], [ -74.144012451171875, -10.57991981506342 ], [ -74.144386291503793, -10.579388618469238 ], [ -74.147026062011662, -10.575659751892033 ], [ -74.148811340332031, -10.574344635009709 ], [ -74.149551391601562, -10.573800086975041 ], [ -74.151130676269474, -10.572230339050236 ], [ -74.154106140136662, -10.566768646240234 ], [ -74.155639648437386, -10.561650276184082 ], [ -74.155647277832031, -10.561299324035588 ], [ -74.155838012695312, -10.555025100707951 ], [ -74.156288146972599, -10.552486419677734 ], [ -74.157119750976562, -10.550250053405762 ], [ -74.157485961914062, -10.54959774017334 ], [ -74.158287048339787, -10.548159599304199 ], [ -74.160690307617074, -10.541888236999455 ], [ -74.160949707031193, -10.541475296020508 ], [ -74.162948608398381, -10.538299560546818 ], [ -74.164138793945312, -10.536775588989258 ], [ -74.164817810058594, -10.535909652709961 ], [ -74.168617248535156, -10.53229904174799 ], [ -74.16961669921875, -10.531068801879883 ], [ -74.171920776367131, -10.524879455566406 ], [ -74.173713684082031, -10.521567344665527 ], [ -74.174896240234318, -10.519370079040527 ], [ -74.176956176757812, -10.515192031860238 ], [ -74.178352355957031, -10.512358665466195 ], [ -74.179565429687443, -10.509537696838322 ], [ -74.179840087890568, -10.508888244628906 ], [ -74.181816101074219, -10.505449295043888 ], [ -74.181724548339844, -10.502470016479492 ], [ -74.181671142578011, -10.500720024108773 ], [ -74.181236267089844, -10.499529838562012 ], [ -74.181915283203125, -10.492665290832406 ], [ -74.182128906249943, -10.490509033203068 ], [ -74.182281494140625, -10.489618301391545 ], [ -74.182662963867188, -10.487330436706543 ], [ -74.185440063476562, -10.47438907623291 ], [ -74.187629699707031, -10.466308593749943 ], [ -74.188255310058594, -10.464935302734375 ], [ -74.189079284667912, -10.463107109069824 ], [ -74.191299438476506, -10.460409164428711 ], [ -74.193000793456974, -10.458853721618539 ], [ -74.193283081054631, -10.458599090576172 ], [ -74.195869445800724, -10.457035064697209 ], [ -74.196182250976562, -10.456846237182617 ], [ -74.197731018066406, -10.456536293029785 ], [ -74.198913574218693, -10.456618309020996 ], [ -74.199722290039062, -10.456393241882324 ], [ -74.205703735351449, -10.455939292907715 ], [ -74.206321716308594, -10.455765724182129 ], [ -74.207130432128849, -10.455539703369027 ], [ -74.208221435546875, -10.455057144165039 ], [ -74.210350036621037, -10.454119682312012 ], [ -74.211433410644531, -10.453403472900391 ], [ -74.211723327636719, -10.453208923339844 ], [ -74.211906433105469, -10.453040122985726 ], [ -74.213287353515625, -10.451749801635685 ], [ -74.214263916015568, -10.450588226318359 ], [ -74.216178894042912, -10.448300361633244 ], [ -74.217658996582031, -10.446913719177189 ], [ -74.21868896484375, -10.445949554443359 ], [ -74.226730346679688, -10.441069602966309 ], [ -74.228630065917969, -10.440291404724121 ], [ -74.233818054199162, -10.438166618347168 ], [ -74.235755920410156, -10.437548637390137 ], [ -74.239028930664062, -10.436956405639592 ], [ -74.241981506347656, -10.436417579650879 ], [ -74.248428344726449, -10.434478759765625 ], [ -74.249237060546875, -10.434158325195256 ], [ -74.250228881835881, -10.433758735656738 ], [ -74.251930236816349, -10.432832717895508 ], [ -74.253387451171761, -10.432040214538517 ], [ -74.2554931640625, -10.431324958801213 ], [ -74.256790161132756, -10.430887222289925 ], [ -74.265052795410156, -10.428899765014648 ], [ -74.265625, -10.428890228271484 ], [ -74.267089843749943, -10.42887020111084 ], [ -74.268829345703068, -10.429149627685547 ], [ -74.269096374511662, -10.429129600524902 ], [ -74.270217895507812, -10.429039001464844 ], [ -74.274192810058594, -10.427300453185978 ], [ -74.275482177734318, -10.427083015441895 ], [ -74.278747558593693, -10.426538467407227 ], [ -74.283798217773381, -10.425080299377441 ], [ -74.285331726074162, -10.424639701843262 ], [ -74.288650512695256, -10.423040390014592 ], [ -74.292282104492131, -10.419790267944279 ], [ -74.293952941894531, -10.417455673217773 ], [ -74.294158935546875, -10.417168617248535 ], [ -74.294258117675781, -10.416975021362305 ], [ -74.295227050781193, -10.415028572082463 ], [ -74.299072265625, -10.411320686340332 ], [ -74.299812316894474, -10.410135269165039 ], [ -74.300727844238281, -10.408664703369141 ], [ -74.301567077636719, -10.406329154968262 ], [ -74.302085876464787, -10.403988838195801 ], [ -74.302169799804688, -10.403628349304142 ], [ -74.302406311035043, -10.398216247558537 ], [ -74.303077697753906, -10.394589424133244 ], [ -74.305496215820312, -10.385929107666016 ], [ -74.306625366210938, -10.383515357971191 ], [ -74.308425903320312, -10.379678726196175 ], [ -74.309272766113168, -10.378490447998047 ], [ -74.309608459472656, -10.378197669982853 ], [ -74.31109619140625, -10.376910209655705 ], [ -74.313232421875, -10.375824928283635 ], [ -74.319572448730355, -10.37260913848877 ], [ -74.323699951171875, -10.371269226074219 ], [ -74.326148986816349, -10.371224403381291 ], [ -74.328590393066406, -10.37117958068842 ], [ -74.333900451660156, -10.37071514129633 ], [ -74.335128784179688, -10.370608329772892 ], [ -74.341880798339787, -10.369519233703556 ], [ -74.343086242675781, -10.369078636169377 ], [ -74.343505859374943, -10.369047164916992 ], [ -74.344657897949219, -10.368961334228516 ], [ -74.344963073730469, -10.36884689331049 ], [ -74.345611572265625, -10.368610382080078 ], [ -74.349769592285099, -10.368329048156738 ], [ -74.352439880371037, -10.367953300476017 ], [ -74.353881835937443, -10.367750167846623 ], [ -74.355758666992188, -10.367112159729004 ], [ -74.356056213378906, -10.367010116577148 ], [ -74.358627319335938, -10.36538028717041 ], [ -74.358779907226562, -10.365323066711369 ], [ -74.360427856445312, -10.364709854125977 ], [ -74.363571166992188, -10.364258766174316 ], [ -74.365997314453068, -10.363907814025822 ], [ -74.370941162109318, -10.362148284912053 ], [ -74.373115539550781, -10.361083984375 ], [ -74.373863220214844, -10.360718727111816 ], [ -74.378211975097599, -10.357987403869572 ], [ -74.381820678710881, -10.355718612670842 ], [ -74.382331848144531, -10.355278968811035 ], [ -74.389785766601562, -10.348878860473633 ], [ -74.390518188476506, -10.348550796508732 ], [ -74.392379760742188, -10.347709655761719 ], [ -74.393913269042969, -10.346219062805176 ], [ -74.398460388183594, -10.341799736022949 ], [ -74.400711059570256, -10.339126586914062 ], [ -74.401069641113281, -10.338700294494629 ], [ -74.401878356933594, -10.337527275085392 ], [ -74.404975891113281, -10.333019256591797 ], [ -74.407455444335938, -10.328154563903809 ], [ -74.408256530761662, -10.326580047607365 ], [ -74.408500671386719, -10.325907707214299 ], [ -74.409416198730469, -10.323380470275822 ], [ -74.409996032714844, -10.320309638976994 ], [ -74.410057067871037, -10.317481994628906 ], [ -74.410087585449219, -10.316068649291879 ], [ -74.409797668457031, -10.314461708068848 ], [ -74.409561157226562, -10.313179016113281 ], [ -74.409317016601562, -10.312296867370605 ], [ -74.408363342285156, -10.308818817138672 ], [ -74.406967163085938, -10.305986404418945 ], [ -74.406410217285156, -10.304850578308105 ], [ -74.405807495117188, -10.303977966308537 ], [ -74.404777526855469, -10.302498817443734 ], [ -74.402931213378906, -10.299030303955021 ], [ -74.402000427246094, -10.297636985778809 ], [ -74.397293090820256, -10.290598869323674 ], [ -74.395370483398381, -10.286369323730469 ], [ -74.395011901855469, -10.282978057861328 ], [ -74.395217895507812, -10.281338691711426 ], [ -74.395576477050724, -10.278408050537053 ], [ -74.3980712890625, -10.272767066955566 ], [ -74.398170471191406, -10.272537231445312 ], [ -74.399490356445199, -10.270110130310002 ], [ -74.399856567382756, -10.267668724060059 ], [ -74.399658203124943, -10.265425682067814 ], [ -74.39959716796875, -10.264738082885685 ], [ -74.399444580078125, -10.264252662658635 ], [ -74.398666381835938, -10.26183032989502 ], [ -74.397232055664062, -10.259910583496037 ], [ -74.397064208984375, -10.25977611541748 ], [ -74.395378112792912, -10.258408546447697 ], [ -74.392951965332031, -10.256879806518555 ], [ -74.389785766601562, -10.255840301513558 ], [ -74.387863159179688, -10.255840301513558 ], [ -74.384307861328068, -10.256519317626953 ], [ -74.383361816406193, -10.256858825683537 ], [ -74.381179809570199, -10.257636070251465 ], [ -74.379150390624943, -10.258816719055119 ], [ -74.378868103027287, -10.258980751037541 ], [ -74.368461608886662, -10.269506454467717 ], [ -74.366050720214844, -10.270918846130371 ], [ -74.363128662109318, -10.272632598876953 ], [ -74.361427307128849, -10.273050308227482 ], [ -74.358207702636719, -10.274688720703068 ], [ -74.356597900390625, -10.274959564208984 ], [ -74.3514404296875, -10.274519920349121 ], [ -74.344482421875, -10.273929595947209 ], [ -74.342109680175781, -10.273038864135685 ], [ -74.341873168945256, -10.272950172424316 ], [ -74.339141845703125, -10.271222114562875 ], [ -74.338264465331918, -10.270464897155762 ], [ -74.335357666015625, -10.267970085144043 ], [ -74.334175109863281, -10.266804695129338 ], [ -74.332992553710881, -10.26563835144043 ], [ -74.330993652343693, -10.26411056518549 ], [ -74.330352783203125, -10.263619422912598 ], [ -74.329338073730469, -10.263114929199219 ], [ -74.328117370605469, -10.262509346008244 ], [ -74.325485229492074, -10.261633872985726 ], [ -74.323631286621094, -10.261020660400391 ], [ -74.322257995605469, -10.260202407836914 ], [ -74.321983337402344, -10.260038375854492 ], [ -74.317550659179631, -10.255728721618652 ], [ -74.310562133789062, -10.247019767761174 ], [ -74.310104370117131, -10.246596336364746 ], [ -74.307991027832031, -10.24462890625 ], [ -74.305549621581974, -10.242810249328613 ], [ -74.304420471191406, -10.24217510223383 ], [ -74.302825927734375, -10.241278648376465 ], [ -74.296569824218693, -10.239310264587346 ], [ -74.290550231933537, -10.237707138061523 ], [ -74.288261413574162, -10.237098693847656 ], [ -74.284339904785156, -10.236449241638127 ], [ -74.278602600097656, -10.234578132629338 ], [ -74.277877807617131, -10.234416007995605 ], [ -74.275543212890625, -10.233889579772949 ], [ -74.266693115234375, -10.23118877410883 ], [ -74.266342163085881, -10.231049537658635 ], [ -74.264022827148438, -10.230129241943359 ], [ -74.261238098144531, -10.228354454040414 ], [ -74.256782531738281, -10.225508689880371 ], [ -74.254585266113281, -10.223587989807129 ], [ -74.253166198730412, -10.222348213195801 ], [ -74.250694274902287, -10.219416618347168 ], [ -74.249176025390568, -10.217618942260685 ], [ -74.248489379882756, -10.216219902038517 ], [ -74.248039245605412, -10.21562671661377 ], [ -74.247650146484318, -10.215119361877385 ], [ -74.247276306152287, -10.214079856872559 ], [ -74.248741149902344, -10.212079048156681 ], [ -74.251007080078125, -10.208998680114746 ], [ -74.253517150878906, -10.206540107726994 ], [ -74.255447387695312, -10.203850746154785 ], [ -74.259819030761719, -10.199631690979004 ], [ -74.26226806640625, -10.197269439697209 ], [ -74.267227172851562, -10.190340042114201 ], [ -74.271461486816406, -10.186235427856388 ], [ -74.274841308593693, -10.181868553161621 ], [ -74.27532958984375, -10.181330680847111 ], [ -74.27783203125, -10.178580284118652 ], [ -74.283378601074219, -10.174359321594238 ], [ -74.285667419433594, -10.173169136047306 ], [ -74.28631591796875, -10.172746658325195 ], [ -74.288520812988281, -10.171309471130314 ], [ -74.289840698242188, -10.17011547088623 ], [ -74.293373107910156, -10.166919708251953 ], [ -74.299079895019531, -10.162487030029297 ], [ -74.300430297851562, -10.16143798828125 ], [ -74.303306579589844, -10.158448219299316 ], [ -74.304519653320312, -10.156613349914551 ], [ -74.306236267089844, -10.153999328613281 ], [ -74.308570861816349, -10.149389266967773 ], [ -74.311798095703125, -10.144919395446777 ], [ -74.311996459960938, -10.144365310668945 ], [ -74.313606262207031, -10.139808654785156 ], [ -74.314369201660156, -10.138430595397949 ], [ -74.321327209472656, -10.131340026855469 ], [ -74.330093383789062, -10.124597549438477 ], [ -74.334877014160156, -10.119219779968205 ], [ -74.335670471191349, -10.11754035949707 ], [ -74.338287353515625, -10.108058929443359 ], [ -74.339332580566406, -10.105282783508187 ], [ -74.340232849121037, -10.102890014648438 ], [ -74.342567443847656, -10.098679542541447 ], [ -74.344642639160099, -10.094928741455021 ], [ -74.347648620605469, -10.090888023376465 ], [ -74.348266601562443, -10.090058326721191 ], [ -74.349769592285099, -10.08887767791748 ], [ -74.355331420898381, -10.084506034851017 ], [ -74.368118286132812, -10.077574729919377 ], [ -74.374061584472656, -10.073058128356934 ], [ -74.3751220703125, -10.072136878967285 ], [ -74.378509521484261, -10.069188117980957 ], [ -74.383026123046875, -10.066300392150879 ], [ -74.384429931640625, -10.065088272094727 ], [ -74.384956359863281, -10.064329147338867 ], [ -74.386054992675781, -10.061616897582951 ], [ -74.386642456054688, -10.060170173644963 ], [ -74.387702941894531, -10.058417320251465 ], [ -74.389869689941406, -10.054818153381291 ], [ -74.390098571777344, -10.054219245910645 ], [ -74.391853332519474, -10.049580574035588 ], [ -74.392478942871094, -10.047491073608342 ], [ -74.392837524414062, -10.04627799987793 ], [ -74.393226623535156, -10.044329643249512 ], [ -74.393470764160099, -10.043089866638184 ], [ -74.393257141113224, -10.040329933166447 ], [ -74.392387390136719, -10.037520408630314 ], [ -74.390602111816349, -10.032899856567326 ], [ -74.386512756347599, -10.025559425354004 ], [ -74.386093139648438, -10.024271011352539 ], [ -74.385917663574162, -10.023728370666447 ], [ -74.385826110839787, -10.022331237792969 ], [ -74.386276245117188, -10.0208482742309 ], [ -74.386680603027287, -10.020259857177678 ], [ -74.387008666992188, -10.019781112670898 ], [ -74.390861511230469, -10.016929626464787 ], [ -74.393226623535156, -10.01418304443348 ], [ -74.3939208984375, -10.013377189636174 ], [ -74.394805908203068, -10.011768341064396 ], [ -74.3955078125, -10.009230613708496 ], [ -74.396232604980412, -10.006619453430176 ], [ -74.396690368652287, -10.003080368041992 ], [ -74.396575927734375, -9.9996080398559 ], [ -74.396942138671875, -9.99419975280756 ], [ -74.396797180175724, -9.990708351135254 ], [ -74.396369934082031, -9.987351417541504 ], [ -74.396278381347656, -9.986598968505803 ], [ -74.396240234374943, -9.98533916473383 ], [ -74.396171569824219, -9.98292064666748 ], [ -74.396400451660156, -9.978569984436035 ], [ -74.397087097167912, -9.973739624023381 ], [ -74.397293090820256, -9.963859558105469 ], [ -74.397453308105412, -9.955989837646428 ], [ -74.398017883300781, -9.951519012451115 ], [ -74.398475646972656, -9.945381164550781 ], [ -74.400337219238224, -9.937508583068791 ], [ -74.400993347167912, -9.935681343078613 ], [ -74.402397155761719, -9.931770324706974 ], [ -74.403671264648381, -9.927439689636174 ], [ -74.404373168945312, -9.924309730529785 ], [ -74.40460205078125, -9.921660423278809 ], [ -74.405235290527344, -9.918373107910156 ], [ -74.405578613281193, -9.916618347167912 ], [ -74.406852722167969, -9.911349296569767 ], [ -74.409065246582031, -9.905497550964355 ], [ -74.410469055175781, -9.90259933471674 ], [ -74.412918090820256, -9.899165153503418 ], [ -74.413558959960938, -9.898270606994629 ], [ -74.413932800292969, -9.897822380065918 ], [ -74.416946411132812, -9.894219398498478 ], [ -74.418525695800781, -9.891983032226506 ], [ -74.419151306152344, -9.891098976135254 ], [ -74.426307678222656, -9.883428573608398 ], [ -74.42803955078125, -9.881288528442269 ], [ -74.429733276367188, -9.878329277038517 ], [ -74.43292236328125, -9.871440887451172 ], [ -74.433746337890625, -9.869659423828125 ], [ -74.434173583984318, -9.869023323059025 ], [ -74.442413330078125, -9.856650352478027 ], [ -74.445777893066406, -9.849673271179199 ], [ -74.446647644042969, -9.847869873046875 ], [ -74.447853088378906, -9.840629577636719 ], [ -74.447898864746094, -9.838535308837891 ], [ -74.447921752929631, -9.837499618530217 ], [ -74.447517395019531, -9.832059860229435 ], [ -74.447792053222656, -9.829531669616699 ], [ -74.448013305664006, -9.827489852905217 ], [ -74.448089599609375, -9.825395584106388 ], [ -74.448165893554688, -9.823248863220215 ], [ -74.447746276855355, -9.819401741027832 ], [ -74.44732666015625, -9.815580368041879 ], [ -74.447647094726506, -9.806586265563965 ], [ -74.447669982910156, -9.806020736694279 ], [ -74.447647094726506, -9.805774688720646 ], [ -74.447425842285099, -9.803370475768986 ], [ -74.447341918945256, -9.792791366577148 ], [ -74.447319030761719, -9.790210723876953 ], [ -74.446907043457031, -9.786068916320744 ], [ -74.446563720703125, -9.784507751464787 ], [ -74.446281433105412, -9.783200263976994 ], [ -74.446281433105412, -9.782088279724121 ], [ -74.445762634277344, -9.779209136962891 ], [ -74.445480346679688, -9.77424144744873 ], [ -74.445602416992188, -9.7715806961059 ], [ -74.447242736816349, -9.765650749206543 ], [ -74.44818115234375, -9.763366699218636 ], [ -74.449615478515625, -9.759865760803223 ], [ -74.453208923339844, -9.752716064453125 ], [ -74.454536437988281, -9.748889923095703 ], [ -74.454818725585938, -9.747486114501953 ], [ -74.455116271972656, -9.746020317077637 ], [ -74.455726623535099, -9.740810394287109 ], [ -74.456520080566293, -9.737909317016602 ], [ -74.458518981933537, -9.733368873596191 ], [ -74.458992004394474, -9.732619285583439 ], [ -74.460037231445256, -9.730959892272949 ], [ -74.460639953613281, -9.730266571044865 ], [ -74.4622802734375, -9.728388786315918 ], [ -74.464836120605469, -9.727060317993107 ], [ -74.466690063476506, -9.726094245910588 ], [ -74.467391967773324, -9.725517272949219 ], [ -74.467979431152344, -9.725323677062931 ], [ -74.469131469726562, -9.724938392639103 ], [ -74.469451904296875, -9.724610328674316 ], [ -74.469833374023438, -9.72453498840332 ], [ -74.470069885253906, -9.724489212036076 ], [ -74.471511840820312, -9.723669052124023 ], [ -74.472251892089787, -9.722883224487191 ], [ -74.47265625, -9.722452163696289 ], [ -74.473167419433594, -9.721378326415959 ], [ -74.4732666015625, -9.716409683227539 ], [ -74.473724365234375, -9.713936805725098 ], [ -74.474403381347656, -9.710269927978516 ], [ -74.474327087402287, -9.698768615722599 ], [ -74.475936889648438, -9.694560050964299 ], [ -74.476272583007812, -9.693127632141113 ], [ -74.476104736328125, -9.69064903259266 ], [ -74.475997924804688, -9.688989639282227 ], [ -74.475753784179631, -9.687359809875431 ], [ -74.475227355957031, -9.683899879455566 ], [ -74.475227355957031, -9.680282592773381 ], [ -74.475227355957031, -9.678850173950195 ], [ -74.475349426269531, -9.677210807800236 ], [ -74.475585937499943, -9.673909187316838 ], [ -74.475227355957031, -9.670989036560059 ], [ -74.475227355957031, -9.66862773895258 ], [ -74.475227355957031, -9.667689323425179 ], [ -74.475402832031136, -9.663891792297306 ], [ -74.475692749023438, -9.657770156860352 ], [ -74.476547241210824, -9.654959678649902 ], [ -74.477073669433594, -9.654018402099609 ], [ -74.477485656738224, -9.653268814086914 ], [ -74.47894287109375, -9.651999473571777 ], [ -74.479759216308537, -9.651655197143555 ], [ -74.4813232421875, -9.650999069213867 ], [ -74.481498718261662, -9.650656700134277 ], [ -74.482032775878906, -9.649628639221191 ], [ -74.481842041015625, -9.647698402404728 ], [ -74.480316162109375, -9.644149780273381 ], [ -74.479385375976506, -9.639858245849553 ], [ -74.479339599609375, -9.637919425964299 ], [ -74.479782104492131, -9.633259773254395 ], [ -74.478271484375, -9.627961158752385 ], [ -74.478332519531193, -9.627426147460938 ], [ -74.478446960449162, -9.626399993896428 ], [ -74.479278564453068, -9.624547004699707 ], [ -74.480628967285099, -9.623046874999943 ], [ -74.482337951660099, -9.621969223022404 ], [ -74.483581542968693, -9.620849609375 ], [ -74.48480224609375, -9.619749069213867 ], [ -74.48583984375, -9.619072914123478 ], [ -74.486808776855469, -9.618438720703125 ], [ -74.488578796386719, -9.616669654846191 ], [ -74.489280700683594, -9.615970611572266 ], [ -74.489997863769531, -9.615477561950684 ], [ -74.492317199707031, -9.613884925842285 ], [ -74.495475769042969, -9.611057281494084 ], [ -74.496452331542912, -9.610815048217717 ], [ -74.498291015624886, -9.609786987304688 ], [ -74.499961853027344, -9.609358787536621 ], [ -74.500373840331974, -9.609078407287541 ], [ -74.501037597656193, -9.60863018035883 ], [ -74.501220703124943, -9.608230590820312 ], [ -74.501785278320256, -9.607694625854492 ], [ -74.502830505371094, -9.606710433959904 ], [ -74.503013610839844, -9.606680870056152 ], [ -74.503273010253906, -9.606639862060547 ], [ -74.5035400390625, -9.606295585632324 ], [ -74.503776550292969, -9.605990409851074 ], [ -74.504936218261662, -9.605278968811035 ], [ -74.507560729980469, -9.603908538818303 ], [ -74.510780334472599, -9.602510452270451 ], [ -74.514328002929688, -9.600969314575138 ], [ -74.518829345703125, -9.598320960998535 ], [ -74.520362854003906, -9.597420692443791 ], [ -74.521888732910156, -9.596798896789551 ], [ -74.525917053222599, -9.595157623291016 ], [ -74.530662536621094, -9.594459533691349 ], [ -74.531158447265568, -9.594264030456543 ], [ -74.533065795898381, -9.593521118164062 ], [ -74.533615112304688, -9.593199729919377 ], [ -74.535301208496094, -9.592210769653263 ], [ -74.537834167480412, -9.590082168579102 ], [ -74.538909912109318, -9.589179039001408 ], [ -74.540756225585938, -9.58812427520752 ], [ -74.541557312011662, -9.587668418884221 ], [ -74.545143127441406, -9.584193229675293 ], [ -74.546928405761605, -9.582883834838754 ], [ -74.548843383789062, -9.581986427307072 ], [ -74.549522399902344, -9.581669807434082 ], [ -74.550445556640568, -9.581398010253849 ], [ -74.551918029785156, -9.580969810485783 ], [ -74.556739807128849, -9.580707550048771 ], [ -74.556877136230469, -9.580698966979924 ], [ -74.558158874511662, -9.58080959320057 ], [ -74.559883117675724, -9.580458641052246 ], [ -74.560890197753906, -9.580569267272949 ], [ -74.566841125488224, -9.579389572143555 ], [ -74.572547912597599, -9.577298164367619 ], [ -74.574913024902344, -9.576028823852539 ], [ -74.576316833496094, -9.574746131896916 ], [ -74.576980590820312, -9.573929786682129 ], [ -74.577445983886605, -9.572640419006291 ], [ -74.578666687011662, -9.570910453796387 ], [ -74.578880310058594, -9.570366859435921 ], [ -74.580177307128849, -9.567060470581055 ], [ -74.581855773925781, -9.564120292663461 ], [ -74.583801269531193, -9.558180809020939 ], [ -74.584701538085938, -9.551628112792912 ], [ -74.583847045898438, -9.546078681945801 ], [ -74.584075927734375, -9.542551040649414 ], [ -74.58416748046875, -9.541128158569336 ], [ -74.583808898925724, -9.53655910491932 ], [ -74.583106994628906, -9.53437328338623 ], [ -74.582611083984375, -9.532818794250488 ], [ -74.581489562988281, -9.531597137451115 ], [ -74.578872680664006, -9.528750419616699 ], [ -74.578048706054688, -9.527216911315918 ], [ -74.577217102050781, -9.52565956115717 ], [ -74.575759887695312, -9.522277832031136 ], [ -74.57550048828125, -9.521679878234863 ], [ -74.574546813964844, -9.518230438232422 ], [ -74.574096679687443, -9.517219543456974 ], [ -74.573753356933594, -9.514949798583984 ], [ -74.573242187499943, -9.513759613037053 ], [ -74.572700500488281, -9.511428833007812 ], [ -74.572067260742188, -9.505949974060059 ], [ -74.571456909179688, -9.504408836364689 ], [ -74.570724487304688, -9.503206253051758 ], [ -74.570449829101506, -9.502763748168888 ], [ -74.569625854492074, -9.500420570373535 ], [ -74.569732666015625, -9.498667716979924 ], [ -74.569770812988281, -9.498088836669922 ], [ -74.569999694824162, -9.497167587280273 ], [ -74.570396423339844, -9.495538711547852 ], [ -74.571258544921875, -9.493839263915959 ], [ -74.571952819824219, -9.49248027801508 ], [ -74.576927185058594, -9.485239028930664 ], [ -74.579231262206974, -9.482428550720215 ], [ -74.580528259277344, -9.481059074401855 ], [ -74.581855773925781, -9.479660034179688 ], [ -74.582649230957031, -9.47856426239008 ], [ -74.583259582519474, -9.477718353271428 ], [ -74.590011596679631, -9.471339225769043 ], [ -74.590164184570312, -9.471236228942871 ], [ -74.592079162597656, -9.469964981079045 ], [ -74.594039916992074, -9.468936920165959 ], [ -74.598869323730412, -9.467020034790039 ], [ -74.600593566894474, -9.466541290283203 ], [ -74.601966857910156, -9.466160774230957 ], [ -74.604217529296818, -9.465099334716797 ], [ -74.607772827148324, -9.464110374450684 ], [ -74.609809875488281, -9.4632692337035 ], [ -74.618873596191406, -9.46185111999506 ], [ -74.620101928710938, -9.46165943145752 ], [ -74.620643615722599, -9.461516380310059 ], [ -74.622962951660156, -9.460898399352971 ], [ -74.6236572265625, -9.460841178894043 ], [ -74.624420166015625, -9.460777282714844 ], [ -74.627189636230469, -9.460127830505371 ], [ -74.632827758789006, -9.458420753479004 ], [ -74.633796691894474, -9.458237648010254 ], [ -74.634742736816349, -9.45805835723877 ], [ -74.639106750488281, -9.456359863281193 ], [ -74.645767211914062, -9.45420932769764 ], [ -74.651573181152344, -9.451158523559513 ], [ -74.652870178222599, -9.450480461120605 ], [ -74.654747009277344, -9.449110984802246 ], [ -74.656295776367131, -9.447979927062931 ], [ -74.665756225585824, -9.438686370849609 ], [ -74.667388916015625, -9.437358856201172 ], [ -74.671058654785156, -9.433211326599121 ], [ -74.672294616699219, -9.432106018066406 ], [ -74.672317504882756, -9.431898117065373 ], [ -74.672332763671818, -9.431720733642578 ], [ -74.674659729003906, -9.428580284118596 ], [ -74.6763916015625, -9.426248550415039 ], [ -74.677566528320256, -9.424074172973576 ], [ -74.677886962890625, -9.423487663269043 ], [ -74.678993225097599, -9.420548439025879 ], [ -74.681571960449162, -9.413679122924748 ], [ -74.682159423828011, -9.411198616027718 ], [ -74.682647705078125, -9.409109115600529 ], [ -74.682594299316406, -9.406981468200684 ], [ -74.682502746582031, -9.403630256652775 ], [ -74.682151794433537, -9.401349067687931 ], [ -74.681350708007812, -9.39850902557373 ], [ -74.680549621582031, -9.396526336669922 ], [ -74.678825378417969, -9.392264366149846 ], [ -74.675437927246094, -9.386560440063477 ], [ -74.675247192382812, -9.386236190795785 ], [ -74.674171447753906, -9.385465621948185 ], [ -74.672645568847656, -9.384767532348633 ], [ -74.66998291015625, -9.383548736572266 ], [ -74.662338256835938, -9.37930965423584 ], [ -74.6622314453125, -9.379249572753906 ], [ -74.661911010742131, -9.379037857055664 ], [ -74.656272888183594, -9.375288963317814 ], [ -74.652252197265625, -9.372041702270508 ], [ -74.651100158691406, -9.371109008789006 ], [ -74.649559020996094, -9.370159149169865 ], [ -74.646171569824162, -9.368378639221078 ], [ -74.64605712890625, -9.368320465087834 ], [ -74.639747619628906, -9.365530014038029 ], [ -74.637672424316406, -9.364334106445256 ], [ -74.635459899902344, -9.363059043884221 ], [ -74.633735656738281, -9.361848831176758 ], [ -74.630172729492131, -9.359351158142033 ], [ -74.627372741699219, -9.357058525085392 ], [ -74.624687194824219, -9.354387283325195 ], [ -74.623382568359318, -9.352645874023438 ], [ -74.620376586914062, -9.348628044128418 ], [ -74.614898681640568, -9.342749595642033 ], [ -74.614318847656193, -9.34169864654541 ], [ -74.611900329589844, -9.338749885559082 ], [ -74.608642578125, -9.334779739379883 ], [ -74.606857299804688, -9.332308769226074 ], [ -74.602882385253849, -9.325980186462346 ], [ -74.600433349609375, -9.322905540466252 ], [ -74.599105834960938, -9.321240425109806 ], [ -74.597465515136662, -9.319461822509766 ], [ -74.596160888671875, -9.318049430847111 ], [ -74.595436096191349, -9.316875457763672 ], [ -74.593696594238281, -9.314048767089844 ], [ -74.592536926269531, -9.311234474182072 ], [ -74.589347839355412, -9.301211357116699 ], [ -74.586761474609318, -9.295820236205998 ], [ -74.586776733398381, -9.294979095458984 ], [ -74.587196350097656, -9.294380187988281 ], [ -74.590248107910156, -9.292860031127873 ], [ -74.590896606445312, -9.292201042175236 ], [ -74.591049194335881, -9.291768074035588 ], [ -74.590705871582031, -9.287629127502441 ], [ -74.590751647949219, -9.282120704650879 ], [ -74.590492248535099, -9.279930114746037 ], [ -74.590408325195256, -9.279190063476562 ], [ -74.59041595458973, -9.276969909667912 ], [ -74.590248107910156, -9.275814056396428 ], [ -74.590103149414006, -9.274779319763184 ], [ -74.589599609375, -9.273118019104004 ], [ -74.589538574218693, -9.272929191589299 ], [ -74.589515686035156, -9.27034854888916 ], [ -74.590309143066349, -9.268188476562443 ], [ -74.592781066894474, -9.263969421386719 ], [ -74.593482971191406, -9.263326644897461 ], [ -74.595756530761605, -9.261249542236271 ], [ -74.596031188964787, -9.260089874267521 ], [ -74.59661865234375, -9.258830070495549 ], [ -74.600746154785156, -9.255019187927189 ], [ -74.601905822753906, -9.25171947479248 ], [ -74.602386474609375, -9.250876426696777 ], [ -74.602546691894531, -9.250601768493652 ], [ -74.602806091308537, -9.25035381317133 ], [ -74.603874206542969, -9.249319076538086 ], [ -74.605522155761719, -9.248751640319824 ], [ -74.607650756835881, -9.247341156005859 ], [ -74.608634948730469, -9.246003150939885 ], [ -74.610740661621094, -9.241800308227539 ], [ -74.614624023437443, -9.237752914428711 ], [ -74.617454528808594, -9.231559753417969 ], [ -74.619674682617131, -9.224119186401367 ], [ -74.619361877441406, -9.216656684875488 ], [ -74.619392395019474, -9.211846351623478 ], [ -74.61944580078125, -9.202168464660645 ], [ -74.620147705078068, -9.196315765380859 ], [ -74.620338439941349, -9.192168235778752 ], [ -74.620513916015625, -9.19135570526123 ], [ -74.620986938476562, -9.189200401306096 ], [ -74.622123718261719, -9.185873031616211 ], [ -74.623046875, -9.18319034576416 ], [ -74.624031066894531, -9.180901527404785 ], [ -74.625045776367188, -9.178528785705566 ], [ -74.633216857910099, -9.167349815368652 ], [ -74.634941101074162, -9.162579536437988 ], [ -74.635711669921818, -9.158409118652344 ], [ -74.635536193847656, -9.152979850768986 ], [ -74.634773254394531, -9.148520469665527 ], [ -74.634246826171875, -9.146469116210938 ], [ -74.633605957031193, -9.143967628478947 ], [ -74.633285522460938, -9.140610694885197 ], [ -74.633171081542969, -9.139369010925293 ], [ -74.632843017578068, -9.138339042663574 ], [ -74.632789611816406, -9.135946273803711 ], [ -74.633079528808594, -9.133379936218262 ], [ -74.633903503417855, -9.131678581237793 ], [ -74.636093139648381, -9.127178192138672 ], [ -74.637016296386662, -9.125690460205078 ], [ -74.638175964355412, -9.12267017364502 ], [ -74.640663146972599, -9.118900299072266 ], [ -74.644470214843693, -9.113918304443359 ], [ -74.647743225097656, -9.108579635620117 ], [ -74.650009155273381, -9.105678558349553 ], [ -74.654891967773438, -9.09774112701416 ], [ -74.657333374023381, -9.09417819976801 ], [ -74.657768249511719, -9.093320846557617 ], [ -74.658546447753906, -9.091790199279728 ], [ -74.658981323242131, -9.091209411621037 ], [ -74.659706115722656, -9.090239524841195 ], [ -74.661537170410099, -9.087265968322754 ], [ -74.663375854492188, -9.084276199340763 ], [ -74.664527893066406, -9.082837104797306 ], [ -74.665580749511719, -9.080598831176758 ], [ -74.665351867675724, -9.079230308532715 ], [ -74.665237426757812, -9.07898998260498 ], [ -74.664756774902344, -9.077982902526855 ], [ -74.661155700683537, -9.074297904968205 ], [ -74.659538269042912, -9.072278022766113 ], [ -74.659072875976506, -9.071597099304199 ], [ -74.657196044921875, -9.068849563598576 ], [ -74.656166076660156, -9.066368103027344 ], [ -74.655891418457031, -9.064558982849064 ], [ -74.655868530273438, -9.06253719329834 ], [ -74.655838012695199, -9.06049728393549 ], [ -74.655029296875, -9.056520462036076 ], [ -74.653167724609261, -9.051709175109863 ], [ -74.652427673339844, -9.050697326660156 ], [ -74.650985717773438, -9.048736572265625 ], [ -74.650779724121037, -9.04773044586176 ], [ -74.651069641113168, -9.047050476074162 ], [ -74.651527404785099, -9.045968055725098 ], [ -74.652252197265625, -9.045495986938477 ], [ -74.65374755859375, -9.04451847076416 ], [ -74.655189514160156, -9.042498588562012 ], [ -74.655456542968636, -9.04060077667225 ], [ -74.655357360839787, -9.038849830627385 ], [ -74.655105590820312, -9.03783988952631 ], [ -74.654869079589787, -9.036870002746525 ], [ -74.653709411621037, -9.034159660339299 ], [ -74.651939392089844, -9.031249046325684 ], [ -74.649955749511719, -9.029574394226017 ], [ -74.648696899414062, -9.028510093688908 ], [ -74.648391723632756, -9.028138160705566 ], [ -74.648002624511662, -9.027668952941895 ], [ -74.643516540527287, -9.016460418701172 ], [ -74.642143249511719, -9.01195240020752 ], [ -74.641807556152287, -9.010848999023438 ], [ -74.641906738281193, -9.008494377136174 ], [ -74.641960144042969, -9.007338523864689 ], [ -74.64263916015625, -9.00464916229248 ], [ -74.643531799316349, -9.002840042114201 ], [ -74.647117614746094, -8.997599601745605 ], [ -74.647415161132756, -8.996973037719727 ], [ -74.648422241210938, -8.994829177856388 ], [ -74.649009704589844, -8.991948127746525 ], [ -74.649497985839844, -8.989518165588379 ], [ -74.650978088378906, -8.986149787902832 ], [ -74.651039123535099, -8.985784530639592 ], [ -74.651100158691406, -8.985420227050724 ], [ -74.651947021484375, -8.983811378479004 ], [ -74.652427673339844, -8.982899665832463 ], [ -74.652793884277344, -8.981781005859375 ], [ -74.653312683105469, -8.9801988601684 ], [ -74.653396606445312, -8.976529121398926 ], [ -74.65283203125, -8.97515964508051 ], [ -74.652587890624943, -8.974569320678711 ], [ -74.651580810546875, -8.973178863525391 ], [ -74.651290893554688, -8.972780227661133 ], [ -74.651290893554688, -8.972575187683105 ], [ -74.651275634765625, -8.971766471862736 ], [ -74.652366638183594, -8.970168113708439 ], [ -74.652938842773438, -8.969792366027832 ], [ -74.653480529785156, -8.969438552856445 ], [ -74.655036926269531, -8.968818664550781 ], [ -74.656677246093693, -8.967209815979004 ], [ -74.657638549804631, -8.965592384338379 ], [ -74.657997131347599, -8.964979171752873 ], [ -74.658020019531193, -8.964468002319336 ], [ -74.658065795898438, -8.96343803405756 ], [ -74.657310485839844, -8.961368560791016 ], [ -74.656982421874886, -8.960894584655705 ], [ -74.656150817871094, -8.959705352783089 ], [ -74.652519226074219, -8.955650329589844 ], [ -74.647590637207031, -8.950679779052734 ], [ -74.645378112792969, -8.947730064392033 ], [ -74.644737243652344, -8.946880340576172 ], [ -74.643356323242188, -8.945389747619572 ], [ -74.643058776855355, -8.944820404052678 ], [ -74.642890930175781, -8.944498062133789 ], [ -74.642440795898438, -8.941779136657715 ], [ -74.642562866210881, -8.940609931945801 ], [ -74.6427001953125, -8.939217567443791 ], [ -74.642707824707031, -8.939117431640625 ], [ -74.642906188964844, -8.938359260559025 ], [ -74.644081115722599, -8.936180114746094 ], [ -74.644020080566406, -8.934530258178711 ], [ -74.644668579101506, -8.932800292968693 ], [ -74.645973205566406, -8.931049346923828 ], [ -74.645942687988281, -8.929658889770508 ], [ -74.646415710449219, -8.928378105163517 ], [ -74.646530151367188, -8.928068161010685 ], [ -74.646751403808537, -8.925928115844727 ], [ -74.64642333984375, -8.924079895019531 ], [ -74.645088195800781, -8.921520233154297 ], [ -74.644447326660156, -8.919409751892033 ], [ -74.643577575683594, -8.917999267578068 ], [ -74.643501281738224, -8.917812347412053 ], [ -74.642692565917969, -8.915882110595703 ], [ -74.641761779785156, -8.914728164672795 ], [ -74.641059875488281, -8.914260864257812 ], [ -74.639846801757812, -8.913450241088867 ], [ -74.633476257324219, -8.912069320678597 ], [ -74.631385803222656, -8.910419464111328 ], [ -74.630073547363224, -8.908939361572209 ], [ -74.629302978515568, -8.90806865692133 ], [ -74.628311157226562, -8.906631469726562 ], [ -74.627365112304688, -8.904288291931152 ], [ -74.625457763671875, -8.899538040161133 ], [ -74.62398529052723, -8.893580436706486 ], [ -74.623649597167969, -8.892219543457031 ], [ -74.623512268066406, -8.891929626464844 ], [ -74.623176574707031, -8.891219139099121 ], [ -74.623031616210824, -8.89029598236084 ], [ -74.622856140136719, -8.889220237731934 ], [ -74.621994018554688, -8.886015892028809 ], [ -74.621948242187443, -8.885848999023438 ], [ -74.621925354003906, -8.885619163513184 ], [ -74.621726989746094, -8.883918762207031 ], [ -74.620849609375, -8.880606651306096 ], [ -74.620246887206974, -8.878318786621094 ], [ -74.619979858398324, -8.876557350158635 ], [ -74.619537353515625, -8.873679161071777 ], [ -74.617919921875, -8.866785049438477 ], [ -74.617774963378849, -8.859514236450138 ], [ -74.618133544921818, -8.853660583496094 ], [ -74.618415832519531, -8.849055290222054 ], [ -74.618438720703068, -8.838557243347111 ], [ -74.618377685546875, -8.837191581726074 ], [ -74.618133544921818, -8.831392288208008 ], [ -74.617271423339844, -8.829057693481445 ], [ -74.617370605468693, -8.82675838470459 ], [ -74.616928100585824, -8.826330184936467 ], [ -74.616226196289006, -8.824538230895939 ], [ -74.612541198730355, -8.820199012756291 ], [ -74.610816955566349, -8.818808555602971 ], [ -74.605133056640625, -8.815417289733887 ], [ -74.594757080078125, -8.811098098754883 ], [ -74.592697143554631, -8.810399055480957 ], [ -74.586067199707031, -8.808849334716797 ], [ -74.581161499023381, -8.806750297546387 ], [ -74.577186584472656, -8.805560111999455 ], [ -74.572257995605469, -8.803748130798283 ], [ -74.565719604492188, -8.801009178161621 ], [ -74.561111450195256, -8.79779052734375 ], [ -74.557907104492188, -8.79478931427002 ], [ -74.556678771972656, -8.793310165405217 ], [ -74.549339294433594, -8.785929679870605 ], [ -74.544998168945256, -8.782668113708439 ], [ -74.541046142578125, -8.780288696289006 ], [ -74.538200378417969, -8.778999328613281 ], [ -74.534431457519474, -8.777779579162598 ], [ -74.529266357421818, -8.776769638061523 ], [ -74.526969909667912, -8.775680541992188 ], [ -74.523147583007756, -8.772390365600586 ], [ -74.519439697265568, -8.769968986511174 ], [ -74.515525817871037, -8.766328811645451 ], [ -74.513603210449219, -8.76375770568842 ], [ -74.511466979980469, -8.759588241577148 ], [ -74.50927734375, -8.752758979797306 ], [ -74.508468627929631, -8.749270439147892 ], [ -74.508148193359375, -8.74412822723383 ], [ -74.508430480957031, -8.738800048828068 ], [ -74.508338928222656, -8.734569549560547 ], [ -74.508583068847599, -8.732580184936467 ], [ -74.508491516113224, -8.729358673095646 ], [ -74.508842468261662, -8.725699424743652 ], [ -74.508872985839787, -8.720730781555119 ], [ -74.509338378906193, -8.716808319091797 ], [ -74.509338378906193, -8.715048789977971 ], [ -74.509773254394531, -8.711588859558105 ], [ -74.510406494140625, -8.708710670471135 ], [ -74.510940551757756, -8.703959465026855 ], [ -74.51251220703125, -8.696968078613168 ], [ -74.513687133789062, -8.692999839782658 ], [ -74.513648986816406, -8.692448616027832 ], [ -74.514068603515625, -8.692020416259766 ], [ -74.514739990234375, -8.690018653869572 ], [ -74.515777587890625, -8.687858581542969 ], [ -74.516258239746094, -8.685990333557072 ], [ -74.519538879394474, -8.677210807800293 ], [ -74.520095825195256, -8.676469802856445 ], [ -74.521270751953068, -8.673810005187931 ], [ -74.521926879882756, -8.672939300537109 ], [ -74.522972106933537, -8.670779228210392 ], [ -74.525436401367131, -8.66658973693842 ], [ -74.528343200683594, -8.662929534912109 ], [ -74.530899047851506, -8.659228324890137 ], [ -74.536102294921875, -8.653639793395939 ], [ -74.537178039550724, -8.652929306030217 ], [ -74.544296264648438, -8.646449089050293 ], [ -74.551429748535156, -8.641399383544922 ], [ -74.558021545410156, -8.638148307800293 ], [ -74.558670043945312, -8.638048171997013 ], [ -74.562507629394531, -8.636329650878906 ], [ -74.566383361816293, -8.635149002075195 ], [ -74.570426940917969, -8.633399009704533 ], [ -74.575889587402287, -8.631508827209473 ], [ -74.584182739257756, -8.627979278564453 ], [ -74.586936950683594, -8.627279281616154 ], [ -74.592849731445312, -8.625219345092773 ], [ -74.595649719238224, -8.624698638916016 ], [ -74.600746154785156, -8.623120307922363 ], [ -74.604782104492131, -8.622220039367619 ], [ -74.606163024902344, -8.621659278869629 ], [ -74.610137939453068, -8.620980262756291 ], [ -74.614280700683594, -8.621000289916935 ], [ -74.61517333984375, -8.620779037475586 ], [ -74.617012023925724, -8.620791435241699 ], [ -74.619110107421818, -8.620469093322754 ], [ -74.62725830078125, -8.619868278503361 ], [ -74.638031005859375, -8.620079040527287 ], [ -74.649391174316406, -8.620738029479924 ], [ -74.650169372558594, -8.620980262756291 ], [ -74.653297424316406, -8.621109962463379 ], [ -74.656929016113281, -8.621708869934082 ], [ -74.661247253417912, -8.622080802917367 ], [ -74.666221618652287, -8.622919082641602 ], [ -74.669067382812443, -8.622890472412109 ], [ -74.675743103027287, -8.62471961975092 ], [ -74.678169250488281, -8.624708175659123 ], [ -74.678672790527344, -8.624938964843693 ], [ -74.683441162109375, -8.625289916992188 ], [ -74.687416076660156, -8.626028060913029 ], [ -74.695106506347599, -8.626849174499398 ], [ -74.69722747802723, -8.627458572387638 ], [ -74.70050048828125, -8.627958297729435 ], [ -74.708671569824105, -8.630768775939941 ], [ -74.713462829589844, -8.633079528808594 ], [ -74.717506408691349, -8.634738922119141 ], [ -74.722999572753906, -8.636269569396973 ], [ -74.727470397949219, -8.637059211730957 ], [ -74.730216979980412, -8.636870384216309 ], [ -74.733695983886719, -8.635970115661564 ], [ -74.737236022949219, -8.635499954223576 ], [ -74.739990234375, -8.635739326476994 ], [ -74.743942260742131, -8.636870384216309 ], [ -74.746421813964787, -8.636798858642578 ], [ -74.748489379882812, -8.635588645935002 ], [ -74.750923156738281, -8.632840156555176 ], [ -74.752418518066349, -8.631759643554688 ], [ -74.759101867675724, -8.628919601440373 ], [ -74.765235900878906, -8.626680374145508 ], [ -74.766281127929688, -8.626110076904183 ], [ -74.771507263183537, -8.624368667602539 ], [ -74.776596069335938, -8.625098228454533 ], [ -74.779525756835881, -8.625939369201603 ], [ -74.782218933105469, -8.626869201660099 ], [ -74.786109924316293, -8.628769874572697 ], [ -74.789253234863224, -8.629419326782227 ], [ -74.794181823730412, -8.631198883056641 ], [ -74.798400878906193, -8.63214111328125 ], [ -74.801422119140625, -8.632430076599121 ], [ -74.801582336425781, -8.633589744567814 ], [ -74.800956726074162, -8.635598182678223 ], [ -74.801300048828125, -8.637028694152832 ], [ -74.801856994628906, -8.637648582458496 ], [ -74.802490234374943, -8.637939453125 ], [ -74.803497314453125, -8.639078140258789 ], [ -74.805160522460881, -8.642160415649357 ], [ -74.806861877441406, -8.643979072570801 ], [ -74.808792114257756, -8.645380020141602 ], [ -74.810279846191406, -8.64612960815424 ], [ -74.813919067382812, -8.647098541259766 ], [ -74.814872741699219, -8.647688865661621 ], [ -74.816566467285156, -8.652439117431641 ], [ -74.818222045898381, -8.654138565063477 ], [ -74.818977355956974, -8.654338836669808 ], [ -74.821556091308537, -8.653749465942383 ], [ -74.824508666992131, -8.653569221496525 ], [ -74.826568603515625, -8.655089378356934 ], [ -74.828330993652287, -8.658939361572266 ], [ -74.829376220703068, -8.662959098815861 ], [ -74.830307006835938, -8.665228843688965 ], [ -74.832420349121094, -8.667038917541447 ], [ -74.834167480468693, -8.667498588562012 ], [ -74.836380004882812, -8.669028282165527 ], [ -74.836891174316406, -8.669669151306039 ], [ -74.837013244628849, -8.670949935913029 ], [ -74.837760925292969, -8.671768188476506 ], [ -74.839385986328068, -8.671930313110295 ], [ -74.839767456054631, -8.672219276428223 ], [ -74.839752197265625, -8.673931121826172 ], [ -74.841537475585938, -8.675921440124512 ], [ -74.841423034667855, -8.679869651794377 ], [ -74.841583251953068, -8.680959701538029 ], [ -74.847129821777287, -8.688960075378418 ], [ -74.847732543945312, -8.693880081176758 ], [ -74.847892761230412, -8.699229240417424 ], [ -74.847633361816406, -8.701788902282658 ], [ -74.846382141113168, -8.708758354186955 ], [ -74.846366882324162, -8.712710380554199 ], [ -74.846939086914006, -8.714859962463379 ], [ -74.848793029785156, -8.718358039855957 ], [ -74.849876403808537, -8.721970558166447 ], [ -74.850471496581974, -8.72465991973877 ], [ -74.851081848144531, -8.731080055236816 ], [ -74.85101318359375, -8.733739852905273 ], [ -74.850196838378793, -8.739089012145939 ], [ -74.850296020507812, -8.742950439453125 ], [ -74.849899291992131, -8.745099067687988 ], [ -74.849807739257756, -8.750628471374455 ], [ -74.849411010742131, -8.752699851989689 ], [ -74.849349975585938, -8.754460334777832 ], [ -74.849906921386662, -8.756189346313477 ], [ -74.850608825683594, -8.757369995117188 ], [ -74.8514404296875, -8.760189056396428 ], [ -74.85296630859375, -8.763339042663574 ], [ -74.854469299316349, -8.765629768371525 ], [ -74.85888671875, -8.770319938659668 ], [ -74.860519409179688, -8.772989273071232 ], [ -74.862846374511662, -8.77582931518549 ], [ -74.863746643066406, -8.777638435363713 ], [ -74.864791870117188, -8.778689384460449 ], [ -74.865768432617188, -8.780357360839844 ], [ -74.867721557617131, -8.782800674438477 ], [ -74.869667053222656, -8.784189224243164 ], [ -74.873817443847599, -8.788120269775334 ], [ -74.879096984863281, -8.791869163513184 ], [ -74.883438110351562, -8.795998573303223 ], [ -74.886711120605412, -8.798239707946777 ], [ -74.894271850585938, -8.804710388183537 ], [ -74.899597167968636, -8.810189247131291 ], [ -74.902740478515568, -8.813019752502385 ], [ -74.910087585449105, -8.820650100708008 ], [ -74.911102294921818, -8.821450233459473 ], [ -74.911758422851562, -8.822788238525391 ], [ -74.912513732910156, -8.823884010314941 ], [ -74.91290283203125, -8.82444953918457 ], [ -74.916465759277287, -8.832130432128906 ], [ -74.917510986328068, -8.83699893951416 ], [ -74.917869567871094, -8.837845802307072 ], [ -74.918083190917912, -8.840043067932015 ], [ -74.918640136718693, -8.842368125915471 ], [ -74.91888427734375, -8.845075607299805 ], [ -74.918930053710881, -8.845573425292969 ], [ -74.918960571289062, -8.849162101745605 ], [ -74.918716430664062, -8.852828979492188 ], [ -74.918136596679688, -8.855999946594238 ], [ -74.917739868164062, -8.869823455810547 ], [ -74.9195556640625, -8.882836341857853 ], [ -74.920486450195312, -8.886680603027344 ], [ -74.922386169433537, -8.892571449279728 ], [ -74.922721862792969, -8.893950462341252 ], [ -74.923194885253906, -8.895871162414551 ], [ -74.924705505371094, -8.899928092956543 ], [ -74.925239562988224, -8.901353836059513 ], [ -74.925819396972599, -8.904140472412109 ], [ -74.928192138671818, -8.910423278808594 ], [ -74.93068695068348, -8.920342445373421 ], [ -74.931159973144474, -8.922212600708008 ], [ -74.933036804199162, -8.927413940429688 ], [ -74.933799743652287, -8.928879737854004 ], [ -74.934402465820256, -8.930036544799805 ], [ -74.935813903808537, -8.931997299194279 ], [ -74.936279296874943, -8.932640075683594 ], [ -74.937286376953125, -8.933746337890568 ], [ -74.938484191894474, -8.934560775756779 ], [ -74.938705444335938, -8.93456840515131 ], [ -74.939521789550724, -8.934596061706486 ], [ -74.940132141113281, -8.934206008911133 ], [ -74.941314697265625, -8.93400764465332 ], [ -74.943305969238281, -8.934388160705566 ], [ -74.944297790527287, -8.933730125427189 ], [ -74.945213317871094, -8.933547019958439 ], [ -74.947341918945256, -8.934425354003849 ], [ -74.948158264160156, -8.934760093688908 ], [ -74.953002929687386, -8.935250282287598 ], [ -74.9534912109375, -8.935621261596623 ], [ -74.954811096191349, -8.936623573303166 ], [ -74.955520629882812, -8.937400817871094 ], [ -74.9566650390625, -8.938658714294434 ], [ -74.956825256347656, -8.938638687133789 ], [ -74.957138061523438, -8.938599586486816 ], [ -74.957839965820256, -8.937725067138672 ], [ -74.958000183105469, -8.937528610229435 ], [ -74.958381652832031, -8.937421798705998 ], [ -74.958992004394474, -8.937249183654785 ], [ -74.959999084472656, -8.937357902526799 ], [ -74.96026611328125, -8.937511444091797 ], [ -74.960617065429631, -8.937710762023926 ], [ -74.96273040771473, -8.937817573547363 ], [ -74.963127136230469, -8.938063621520996 ], [ -74.965827941894531, -8.940423011779785 ], [ -74.967430114746094, -8.941147804260254 ], [ -74.970199584960938, -8.943128585815373 ], [ -74.973304748535099, -8.944748878478947 ], [ -74.974739074706974, -8.946421623229924 ], [ -74.974830627441349, -8.946973800659066 ], [ -74.975502014160099, -8.94804859161377 ], [ -74.975639343261719, -8.948945045471135 ], [ -74.976631164550724, -8.949905395507812 ], [ -74.978416442871094, -8.950358390808105 ], [ -74.980812072753906, -8.950301170349064 ], [ -74.982070922851506, -8.950014114379826 ], [ -74.984275817871037, -8.949099540710449 ], [ -74.985382080078125, -8.947880744934025 ], [ -74.98724365234375, -8.944279670715218 ], [ -74.989105224609375, -8.938217163085881 ], [ -74.990715026855469, -8.934809684753418 ], [ -74.996467590331974, -8.928994178771916 ], [ -75.000289916992131, -8.926777839660645 ], [ -75.001632690429631, -8.925518035888672 ], [ -75.003555297851562, -8.923414230346623 ], [ -75.008392333984318, -8.917162895202637 ], [ -75.011917114257756, -8.914049148559513 ], [ -75.013893127441406, -8.913056373596191 ], [ -75.017745971679631, -8.913220405578613 ], [ -75.022674560546875, -8.912069320678597 ], [ -75.025489807128906, -8.910928726196289 ], [ -75.027168273925724, -8.909978866577148 ], [ -75.031677246093693, -8.908370018005314 ], [ -75.039199829101506, -8.904569625854492 ], [ -75.043388366699162, -8.902858734130803 ], [ -75.045692443847599, -8.902279853820801 ], [ -75.048461914062443, -8.902252197265625 ], [ -75.052497863769531, -8.902742385864258 ], [ -75.057540893554688, -8.904729843139648 ], [ -75.059562683105469, -8.905805587768555 ], [ -75.06378173828125, -8.908952713012695 ], [ -75.067428588867131, -8.910717010498047 ], [ -75.069152832031193, -8.912389755249023 ], [ -75.069999694824162, -8.912932395935002 ], [ -75.071762084960938, -8.913493156433049 ], [ -75.075965881347656, -8.914106369018555 ], [ -75.077873229980469, -8.915011405944824 ], [ -75.079719543456974, -8.916384696960336 ], [ -75.0830078125, -8.919856071472168 ], [ -75.084541320800781, -8.920888900756836 ], [ -75.086502075195256, -8.921692848205566 ], [ -75.088813781738281, -8.923519134521484 ], [ -75.089889526367188, -8.92381763458252 ], [ -75.091575622558594, -8.924775123596191 ], [ -75.092552185058594, -8.925064086914006 ], [ -75.093368530273381, -8.925039291381722 ], [ -75.095764160156193, -8.924350738525391 ], [ -75.098320007324162, -8.924576759338379 ], [ -75.099594116210938, -8.925119400024357 ], [ -75.102600097656193, -8.927261352539006 ], [ -75.110916137695256, -8.935662269592228 ], [ -75.115257263183594, -8.941267013549805 ], [ -75.116325378417969, -8.943005561828556 ], [ -75.118209838867188, -8.943384170532227 ], [ -75.119369506835938, -8.944297790527344 ], [ -75.120712280273438, -8.944566726684513 ], [ -75.122375488281136, -8.945896148681641 ], [ -75.125190734863281, -8.94764137268055 ], [ -75.12599945068348, -8.948409080505314 ], [ -75.126754760742131, -8.949792861938477 ], [ -75.127021789550724, -8.95106029510498 ], [ -75.126869201660156, -8.951865196228027 ], [ -75.125892639160099, -8.953077316284066 ], [ -75.125862121582031, -8.954740524291992 ], [ -75.126091003417912, -8.955907821655217 ], [ -75.127677917480469, -8.958918571472054 ], [ -75.130882263183594, -8.96269702911377 ], [ -75.131134033203068, -8.963702201843262 ], [ -75.131912231445199, -8.96514987945551 ], [ -75.133224487304631, -8.966435432434082 ], [ -75.135162353515625, -8.967691421508789 ], [ -75.136421203613281, -8.969154357910156 ], [ -75.137016296386719, -8.969425201415959 ], [ -75.139289855957031, -8.969598770141602 ], [ -75.141960144042969, -8.971405982971191 ], [ -75.143020629882812, -8.972563743591309 ], [ -75.143157958984318, -8.973539352416992 ], [ -75.142837524414062, -8.977725982665959 ], [ -75.142379760742131, -8.978532791137638 ], [ -75.141525268554631, -8.981635093688965 ], [ -75.14007568359375, -8.983545303344727 ], [ -75.139923095703011, -8.984439849853516 ], [ -75.140922546386719, -8.986412048339844 ], [ -75.143013000488281, -8.989224433898926 ], [ -75.143943786621094, -8.992387771606445 ], [ -75.146652221679688, -8.997527122497502 ], [ -75.147636413574162, -8.998853683471566 ], [ -75.148948669433537, -8.999678611755371 ], [ -75.149269104003793, -9.000175476074219 ], [ -75.149070739746037, -9.004885673522836 ], [ -75.148704528808594, -9.006559371948185 ], [ -75.146820068359375, -9.008823394775391 ], [ -75.14430999755848, -9.01318264007557 ], [ -75.143341064453068, -9.016350746154728 ], [ -75.142723083496094, -9.017687797546387 ], [ -75.142242431640625, -9.023466110229492 ], [ -75.142669677734318, -9.025540351867676 ], [ -75.143829345703068, -9.027411460876465 ], [ -75.144508361816406, -9.029110908508301 ], [ -75.145767211914062, -9.030927658081055 ], [ -75.148124694824105, -9.033387184143066 ], [ -75.148910522460938, -9.034635543823242 ], [ -75.149124145507812, -9.035430908203125 ], [ -75.148948669433537, -9.03856086730957 ], [ -75.150169372558594, -9.039690971374455 ], [ -75.150527954101562, -9.040425300598145 ], [ -75.150428771972656, -9.041065216064453 ], [ -75.149070739746037, -9.041817665100041 ], [ -75.148391723632756, -9.04278564453125 ], [ -75.148971557617131, -9.04443168640131 ], [ -75.148239135742188, -9.046015739440918 ], [ -75.148117065429631, -9.046737670898438 ], [ -75.148139953613281, -9.049505233764648 ], [ -75.148544311523438, -9.051955223083496 ], [ -75.150283813476506, -9.055809020996037 ], [ -75.154014587402287, -9.061290740966797 ], [ -75.154670715331974, -9.063214302062988 ], [ -75.154792785644474, -9.065874099731388 ], [ -75.155204772949219, -9.066797256469727 ], [ -75.156448364257812, -9.067864418029728 ], [ -75.1571044921875, -9.067809104919377 ], [ -75.157913208007756, -9.067366600036621 ], [ -75.159751892089787, -9.06752872467041 ], [ -75.160690307617131, -9.068550109863281 ], [ -75.161231994628906, -9.069723129272461 ], [ -75.161407470703125, -9.071182250976506 ], [ -75.161209106445312, -9.072456359863281 ], [ -75.159713745117188, -9.075116157531681 ], [ -75.158622741699219, -9.077848434448242 ], [ -75.158424377441293, -9.07940483093256 ], [ -75.158538818359375, -9.081239700317326 ], [ -75.159286499023438, -9.084478378295842 ], [ -75.160316467285099, -9.087244987487793 ], [ -75.161544799804631, -9.092057228088379 ], [ -75.164352416992188, -9.098467826843262 ], [ -75.165214538574219, -9.102231025695801 ], [ -75.166854858398438, -9.106289863586369 ], [ -75.167457580566349, -9.107096672058049 ], [ -75.170295715332031, -9.109328269958496 ], [ -75.173820495605469, -9.111099243164062 ], [ -75.175765991210881, -9.113069534301701 ], [ -75.17694091796875, -9.113957405090332 ], [ -75.179054260253906, -9.114887237548828 ], [ -75.183006286621037, -9.115806579589787 ], [ -75.183799743652344, -9.116312980651855 ], [ -75.184471130371094, -9.117806434631348 ], [ -75.185249328613281, -9.121045112609863 ], [ -75.185691833496037, -9.124687194824162 ], [ -75.185562133789062, -9.125774383544922 ], [ -75.185813903808594, -9.126453399658203 ], [ -75.185256958007812, -9.128089904785099 ], [ -75.185401916503849, -9.13001632690424 ], [ -75.186164855956974, -9.131797790527344 ], [ -75.18792724609375, -9.133535385131836 ], [ -75.189186096191406, -9.133892059326172 ], [ -75.191314697265568, -9.13401985168457 ], [ -75.192863464355469, -9.13349437713623 ], [ -75.196357727050724, -9.131784439086857 ], [ -75.198829650878849, -9.131953239440918 ], [ -75.2021484375, -9.134592056274414 ], [ -75.203849792480469, -9.136997222900391 ], [ -75.204803466796875, -9.137865066528263 ], [ -75.205970764160156, -9.13813400268549 ], [ -75.207855224609375, -9.137194633483887 ], [ -75.209037780761662, -9.137384414672852 ], [ -75.210800170898438, -9.139018058776855 ], [ -75.212318420410156, -9.14266300201416 ], [ -75.212356567382812, -9.144509315490723 ], [ -75.212051391601562, -9.145757675170898 ], [ -75.210639953613281, -9.148344039916992 ], [ -75.207481384277344, -9.152959823608342 ], [ -75.2073974609375, -9.155257225036564 ], [ -75.208534240722656, -9.156802177429142 ], [ -75.208808898925781, -9.15817928314209 ], [ -75.207313537597599, -9.160231590270939 ], [ -75.207000732421875, -9.162774085998535 ], [ -75.206222534179688, -9.164430618286133 ], [ -75.206130981445312, -9.165152549743652 ], [ -75.206336975097656, -9.166880607604924 ], [ -75.209297180175781, -9.169916152954045 ], [ -75.209548950195312, -9.172013282775822 ], [ -75.209060668945256, -9.176673889160156 ], [ -75.209388732910156, -9.180248260498047 ], [ -75.209297180175781, -9.184200286865121 ], [ -75.208206176757699, -9.188803672790527 ], [ -75.205528259277287, -9.196637153625488 ], [ -75.204666137695256, -9.201250076293945 ], [ -75.203971862792969, -9.208208084106445 ], [ -75.203880310058537, -9.21290111541748 ], [ -75.204086303710881, -9.215923309326115 ], [ -75.204772949218636, -9.220109939575195 ], [ -75.205940246582031, -9.22493934631342 ], [ -75.206550598144474, -9.231172561645508 ], [ -75.207420349121037, -9.233315467834416 ], [ -75.208206176757699, -9.23432731628418 ], [ -75.211326599121037, -9.236295700073185 ], [ -75.212921142578125, -9.23703670501709 ], [ -75.218666076660099, -9.239032745361271 ], [ -75.223777770996094, -9.241977691650334 ], [ -75.225753784179574, -9.243495941162053 ], [ -75.227043151855469, -9.244807243347111 ], [ -75.235076904296818, -9.250862121581918 ], [ -75.236824035644531, -9.252362251281738 ], [ -75.238937377929688, -9.254802703857422 ], [ -75.241943359374943, -9.260399818420353 ], [ -75.243721008300781, -9.262134552001953 ], [ -75.246795654296818, -9.263816833496037 ], [ -75.251144409179688, -9.265213966369629 ], [ -75.255805969238281, -9.266350746154785 ], [ -75.258773803710938, -9.26764965057373 ], [ -75.259117126464787, -9.268254280090332 ], [ -75.259017944335881, -9.269016265869141 ], [ -75.257072448730469, -9.272888183593693 ], [ -75.256668090820312, -9.274082183837891 ], [ -75.256950378417969, -9.275810241699219 ], [ -75.257873535156193, -9.27708625793457 ], [ -75.259239196777344, -9.278303146362305 ], [ -75.259857177734375, -9.280041694641056 ], [ -75.259658813476562, -9.281489372253418 ], [ -75.257949829101562, -9.284547805786076 ], [ -75.257820129394531, -9.286654472351074 ], [ -75.258155822753849, -9.286979675292912 ], [ -75.259796142578068, -9.290379524230957 ], [ -75.264381408691406, -9.295308113098088 ], [ -75.265266418457031, -9.296923637390137 ], [ -75.266868591308594, -9.298940658569279 ], [ -75.267379760742188, -9.30003547668457 ], [ -75.268730163574162, -9.301551818847656 ], [ -75.270339965820312, -9.303070068359375 ], [ -75.271881103515568, -9.304109573364201 ], [ -75.275581359863281, -9.304775238037109 ], [ -75.276481628417912, -9.305551528930607 ], [ -75.277755737304688, -9.307135581970215 ], [ -75.278861999511662, -9.307161331176701 ], [ -75.280395507812443, -9.306626319885254 ], [ -75.2808837890625, -9.307223320007324 ], [ -75.281616210937443, -9.309014320373535 ], [ -75.283477783203125, -9.310667037963867 ], [ -75.286712646484375, -9.312435150146428 ], [ -75.288734436035156, -9.312579154968262 ], [ -75.290931701660156, -9.311647415161076 ], [ -75.295402526855469, -9.310188293457031 ], [ -75.297073364257756, -9.309399604797363 ], [ -75.300857543945312, -9.306329727172852 ], [ -75.302978515624943, -9.306138038635254 ], [ -75.304588317871037, -9.30451774597168 ], [ -75.306785583496037, -9.304153442382756 ], [ -75.309303283691406, -9.302297592163029 ], [ -75.311195373535099, -9.301344871520996 ], [ -75.315475463867131, -9.300021171569767 ], [ -75.318992614746037, -9.298634529113713 ], [ -75.32318115234375, -9.297517776489201 ], [ -75.328437805175724, -9.297343254089299 ], [ -75.330169677734318, -9.297566413879395 ], [ -75.331192016601562, -9.298035621643066 ], [ -75.331420898437386, -9.29841423034668 ], [ -75.331207275390568, -9.301726341247559 ], [ -75.331840515136719, -9.302620887756348 ], [ -75.332778930664062, -9.303378105163517 ], [ -75.335105895996037, -9.304498672485295 ], [ -75.33657073974598, -9.304381370544434 ], [ -75.338333129882812, -9.303347587585449 ], [ -75.339302062988224, -9.303056716918888 ], [ -75.343734741210938, -9.302709579467773 ], [ -75.344688415527344, -9.302933692932072 ], [ -75.346931457519474, -9.304080009460449 ], [ -75.350936889648381, -9.30471134185791 ], [ -75.353660583496094, -9.306144714355412 ], [ -75.356903076171875, -9.3072252273559 ], [ -75.358009338378849, -9.307243347167969 ], [ -75.362686157226506, -9.306172370910588 ], [ -75.364067077636719, -9.306126594543457 ], [ -75.36556243896473, -9.306612014770508 ], [ -75.367530822753849, -9.307812690734806 ], [ -75.3695068359375, -9.308535575866586 ], [ -75.37103271484375, -9.30888652801508 ], [ -75.372329711914006, -9.30887508392334 ], [ -75.374137878417912, -9.308559417724496 ], [ -75.376762390136719, -9.307676315307617 ], [ -75.380859375, -9.305575370788517 ], [ -75.385429382324219, -9.301995277404728 ], [ -75.390754699707031, -9.296030044555664 ], [ -75.392807006835881, -9.29521369934082 ], [ -75.401100158691349, -9.294798851013127 ], [ -75.403030395507756, -9.294877052307129 ], [ -75.405380249023438, -9.295336723327637 ], [ -75.408752441406193, -9.295324325561467 ], [ -75.412025451660156, -9.294795036315861 ], [ -75.416641235351562, -9.293178558349553 ], [ -75.418746948242131, -9.292950630187988 ], [ -75.422668457031193, -9.293524742126465 ], [ -75.426773071289006, -9.294913291931152 ], [ -75.43117523193348, -9.29539680480957 ], [ -75.433967590332031, -9.29631519317627 ], [ -75.435638427734318, -9.296276092529297 ], [ -75.437149047851506, -9.295923233032113 ], [ -75.439483642578125, -9.29636287689209 ], [ -75.441841125488224, -9.295936584472599 ], [ -75.442817687988281, -9.296194076538029 ], [ -75.444480895996094, -9.296184539794922 ], [ -75.445091247558537, -9.295977592468262 ], [ -75.44610595703125, -9.294790267944336 ], [ -75.44720458984375, -9.294608116149846 ], [ -75.450485229492188, -9.295516967773438 ], [ -75.452232360839787, -9.295551300048828 ], [ -75.452621459960881, -9.295839309692383 ], [ -75.452339172363224, -9.298084259033203 ], [ -75.452400207519531, -9.299153327941895 ], [ -75.453880310058594, -9.301375389099064 ], [ -75.4541015625, -9.302268028259277 ], [ -75.454048156738224, -9.303091049194336 ], [ -75.453437805175781, -9.30443096160883 ], [ -75.453399658203125, -9.305551528930607 ], [ -75.454124450683537, -9.306915283203068 ], [ -75.455924987792969, -9.309148788452092 ], [ -75.456573486328125, -9.310968399047795 ], [ -75.456565856933594, -9.312810897827148 ], [ -75.455970764160043, -9.314050674438477 ], [ -75.455795288085938, -9.315507888793945 ], [ -75.456085205078125, -9.319730758666935 ], [ -75.455894470214844, -9.325157165527344 ], [ -75.458961486816406, -9.32884502410883 ], [ -75.461753845214787, -9.33277416229248 ], [ -75.46474456787098, -9.337637901306152 ], [ -75.46783447265625, -9.340933799743596 ], [ -75.470550537109318, -9.344766616821289 ], [ -75.474281311035043, -9.349001884460449 ], [ -75.4761962890625, -9.351605415344238 ], [ -75.478614807128906, -9.356876373290959 ], [ -75.47918701171875, -9.358908653259277 ], [ -75.481956481933594, -9.365544319152832 ], [ -75.483863830566406, -9.368435859680176 ], [ -75.488296508789006, -9.373376846313477 ], [ -75.490455627441406, -9.374622344970646 ], [ -75.496772766113224, -9.377228736877385 ], [ -75.500465393066406, -9.379058837890625 ], [ -75.512313842773381, -9.383400917053223 ], [ -75.516212463378849, -9.384219169616699 ], [ -75.517837524414006, -9.384857177734375 ], [ -75.524772644042969, -9.388166427612305 ], [ -75.527557373046818, -9.38915824890131 ], [ -75.529495239257756, -9.390258789062443 ], [ -75.534034729003906, -9.391842842102051 ], [ -75.536575317382812, -9.393358230590763 ], [ -75.538108825683594, -9.39366436004633 ], [ -75.544326782226562, -9.396729469299316 ], [ -75.547462463378906, -9.397854804992676 ], [ -75.550544738769474, -9.39842700958252 ], [ -75.554214477539062, -9.39996147155756 ], [ -75.560928344726562, -9.401685714721566 ], [ -75.563774108886719, -9.403220176696721 ], [ -75.566970825195256, -9.404373168945256 ], [ -75.568954467773381, -9.405327796936035 ], [ -75.571685791015625, -9.405793190002441 ], [ -75.575073242187443, -9.406739234924316 ], [ -75.578369140625, -9.407201766967717 ], [ -75.579635620117131, -9.407790184020939 ], [ -75.582382202148438, -9.408596992492619 ], [ -75.58380126953125, -9.409294128417969 ], [ -75.586952209472656, -9.410002708435002 ], [ -75.589164733886662, -9.410150527954045 ], [ -75.592895507812443, -9.410868644714355 ], [ -75.595893859863281, -9.410837173461857 ], [ -75.599098205566349, -9.411309242248535 ], [ -75.603073120117188, -9.411438941955566 ], [ -75.605545043945312, -9.411796569824219 ], [ -75.60665130615223, -9.411684989929199 ], [ -75.608375549316406, -9.412035942077637 ], [ -75.612075805664006, -9.41228199005127 ], [ -75.612762451171875, -9.412054061889592 ], [ -75.619598388671818, -9.411808013915959 ], [ -75.625572204589844, -9.41112041473383 ], [ -75.630218505859375, -9.410314559936523 ], [ -75.634544372558594, -9.408980369567871 ], [ -75.6380615234375, -9.407144546508789 ], [ -75.643318176269531, -9.403546333312931 ], [ -75.645614624023438, -9.401388168334904 ], [ -75.648483276367131, -9.399229049682617 ], [ -75.653129577636719, -9.394499778747559 ], [ -75.656669616699219, -9.388887405395451 ], [ -75.658859252929688, -9.383717536926213 ], [ -75.661430358886719, -9.374860763549748 ], [ -75.663162231445312, -9.367238998413029 ], [ -75.663719177246094, -9.366264343261719 ], [ -75.663963317871037, -9.36462497711176 ], [ -75.665321350097656, -9.361104011535588 ], [ -75.667427062988281, -9.357970237731934 ], [ -75.669670104980412, -9.355914115905705 ], [ -75.672325134277287, -9.354090690612736 ], [ -75.674308776855469, -9.352422714233398 ], [ -75.676414489746094, -9.350358009338379 ], [ -75.677627563476562, -9.348736763000488 ], [ -75.678634643554631, -9.346565246582031 ], [ -75.678787231445312, -9.34444618225092 ], [ -75.681694030761662, -9.338698387145996 ], [ -75.684127807617188, -9.332534790039062 ], [ -75.685546875, -9.330488204956055 ], [ -75.687576293945312, -9.328268051147461 ], [ -75.690505981445312, -9.322428703308049 ], [ -75.693878173828068, -9.317934989929199 ], [ -75.695228576660099, -9.315519332885742 ], [ -75.695938110351562, -9.313825607299748 ], [ -75.697036743164006, -9.309094429016113 ], [ -75.698509216308594, -9.30551815032959 ], [ -75.698883056640625, -9.30362606048584 ], [ -75.701461791992188, -9.296758651733342 ], [ -75.707595825195312, -9.284746170043888 ], [ -75.708854675292912, -9.282709121704102 ], [ -75.709747314453125, -9.280579566955566 ], [ -75.711181640625, -9.278670310974064 ], [ -75.71368408203125, -9.274051666259766 ], [ -75.714828491210938, -9.272601127624512 ], [ -75.717208862304688, -9.270154953002873 ], [ -75.721809387207031, -9.266609191894531 ], [ -75.728271484375, -9.260701179504338 ], [ -75.729232788085938, -9.258961677551213 ], [ -75.729942321777287, -9.258247375488281 ], [ -75.730316162109318, -9.257403373718205 ], [ -75.731369018554631, -9.256008148193303 ], [ -75.732040405273381, -9.254190444946289 ], [ -75.7322998046875, -9.251629829406681 ], [ -75.732284545898438, -9.249504089355412 ], [ -75.731437683105469, -9.242948532104492 ], [ -75.731689453125, -9.239917755126953 ], [ -75.733695983886719, -9.233330726623478 ], [ -75.737617492675781, -9.225726127624455 ], [ -75.737991333007812, -9.225326538085938 ], [ -75.738670349121094, -9.223517417907715 ], [ -75.742729187011662, -9.217764854431152 ], [ -75.745315551757699, -9.214928627014103 ], [ -75.746650695800668, -9.213535308837891 ], [ -75.747459411621094, -9.213114738464355 ], [ -75.751747131347656, -9.208179473876953 ], [ -75.755401611328068, -9.205510139465332 ], [ -75.759284973144531, -9.203603744506779 ], [ -75.763465881347656, -9.201847076416016 ], [ -75.766624450683594, -9.200802803039494 ], [ -75.771385192871094, -9.200261116027832 ], [ -75.773818969726506, -9.199692726135254 ], [ -75.778068542480469, -9.19976615905756 ], [ -75.779830932617131, -9.197860717773438 ], [ -75.781227111816406, -9.195063591003418 ], [ -75.783226013183594, -9.189217567443848 ], [ -75.785385131835938, -9.179417610168457 ], [ -75.786758422851562, -9.175896644592228 ], [ -75.787429809570312, -9.174800872802734 ], [ -75.788154602050781, -9.174084663391056 ], [ -75.792839050292969, -9.171995162963867 ], [ -75.794494628906193, -9.170813560485783 ], [ -75.795166015624943, -9.170062065124398 ], [ -75.796440124511719, -9.16710186004633 ], [ -75.797035217285156, -9.164975166320801 ], [ -75.800415039062443, -9.158322334289551 ], [ -75.801994323730469, -9.151986122131291 ], [ -75.803741455078068, -9.149957656860352 ], [ -75.80621337890625, -9.144716262817383 ], [ -75.808341979980412, -9.138145446777344 ], [ -75.809112548828068, -9.134352684020996 ], [ -75.809211730956918, -9.130211830139103 ], [ -75.808815002441349, -9.126558303833008 ], [ -75.809745788574219, -9.11979961395258 ], [ -75.811431884765625, -9.113972663879395 ], [ -75.814376831054688, -9.105770111083984 ], [ -75.816352844238224, -9.102784156799316 ], [ -75.818122863769531, -9.101034164428711 ], [ -75.819892883300668, -9.100022315979004 ], [ -75.822967529296875, -9.099033355712834 ], [ -75.825172424316406, -9.097880363464355 ], [ -75.827064514160156, -9.096716880798283 ], [ -75.830398559570312, -9.093581199645996 ], [ -75.834671020507756, -9.088143348693848 ], [ -75.835922241210938, -9.08599853515625 ], [ -75.837509155273381, -9.083861351013184 ], [ -75.838363647460881, -9.081623077392578 ], [ -75.838630676269531, -9.077761650085449 ], [ -75.838867187499943, -9.076966285705566 ], [ -75.838432312011719, -9.075382232665959 ], [ -75.838409423828125, -9.070862770080566 ], [ -75.838943481445256, -9.066302299499398 ], [ -75.839805603027287, -9.062827110290527 ], [ -75.841476440429688, -9.057748794555664 ], [ -75.842529296875, -9.055287361144906 ], [ -75.843391418457031, -9.053882598876953 ], [ -75.845710754394474, -9.050892829894963 ], [ -75.847984313964844, -9.048734664916992 ], [ -75.850334167480469, -9.047112464904785 ], [ -75.854087829589844, -9.045141220092773 ], [ -75.857086181640511, -9.042537689208984 ], [ -75.858474731445312, -9.041068077087402 ], [ -75.859931945800724, -9.038713455200138 ], [ -75.862373352050781, -9.035833358764592 ], [ -75.866645812988281, -9.033718109130859 ], [ -75.869338989257812, -9.031222343444824 ], [ -75.872756958007812, -9.027215003967228 ], [ -75.874290466308594, -9.024933815002385 ], [ -75.876670837402344, -9.022366523742619 ], [ -75.878860473632812, -9.018012046813908 ], [ -75.880096435546875, -9.014538764953556 ], [ -75.881469726562443, -9.008148193359318 ], [ -75.882049560546818, -9.002115249633789 ], [ -75.88250732421875, -9.000638008117619 ], [ -75.882316589355469, -8.999483108520508 ], [ -75.882766723632812, -8.994814872741699 ], [ -75.883750915527344, -8.991845130920353 ], [ -75.883811950683594, -8.988445281982422 ], [ -75.885101318359318, -8.985420227050724 ], [ -75.884979248046875, -8.982104301452637 ], [ -75.885231018066406, -8.979913711547852 ], [ -75.885147094726562, -8.975961685180607 ], [ -75.885421752929688, -8.971458435058594 ], [ -75.88588714599598, -8.969682693481445 ], [ -75.885902404785156, -8.968391418457031 ], [ -75.886260986328068, -8.966680526733342 ], [ -75.888137817382812, -8.962260246276855 ], [ -75.889488220214787, -8.958359718322697 ], [ -75.889442443847656, -8.956607818603516 ], [ -75.888900756835938, -8.953802108764648 ], [ -75.88897705078125, -8.949843406677189 ], [ -75.889221191406193, -8.948684692382812 ], [ -75.890258789062443, -8.946021080017033 ], [ -75.890480041503906, -8.944194793701172 ], [ -75.891372680664062, -8.940999984741211 ], [ -75.891921997070312, -8.937182426452637 ], [ -75.892509460449219, -8.935463905334473 ], [ -75.893463134765625, -8.934050559997559 ], [ -75.894020080566406, -8.932293891906738 ], [ -75.894546508789006, -8.93144416809082 ], [ -75.895256042480469, -8.929061889648381 ], [ -75.896141052246094, -8.927343368530273 ], [ -75.897842407226562, -8.925167083740178 ], [ -75.902763366699162, -8.919936180114746 ], [ -75.904876708984375, -8.917281150817871 ], [ -75.905807495117131, -8.915805816650334 ], [ -75.908172607421818, -8.912869453430119 ], [ -75.910980224609375, -8.908242225646973 ], [ -75.911308288574219, -8.906440734863281 ], [ -75.910873413085824, -8.904949188232365 ], [ -75.910812377929688, -8.903214454650879 ], [ -75.910087585449162, -8.900636672973633 ], [ -75.908920288085938, -8.898134231567326 ], [ -75.907897949218693, -8.894095420837402 ], [ -75.907981872558537, -8.892891883850098 ], [ -75.908416748046875, -8.891299247741642 ], [ -75.909698486328068, -8.889974594116211 ], [ -75.910171508789006, -8.888978958129826 ], [ -75.910346984863281, -8.884285926818791 ], [ -75.909934997558594, -8.883011817932129 ], [ -75.90997314453125, -8.881068229675236 ], [ -75.911094665527344, -8.879753112792912 ], [ -75.913833618164062, -8.877421379089355 ], [ -75.915245056152287, -8.876550674438477 ], [ -75.916877746581974, -8.874799728393555 ], [ -75.917770385742188, -8.873630523681641 ], [ -75.919067382812443, -8.870986938476506 ], [ -75.920425415039062, -8.868904113769474 ], [ -75.920906066894531, -8.867518424987793 ], [ -75.921653747558594, -8.863809585571232 ], [ -75.922622680664062, -8.855849266052246 ], [ -75.923370361328125, -8.853876113891545 ], [ -75.924499511718693, -8.852090835571289 ], [ -75.925384521484375, -8.849566459655762 ], [ -75.926795959472599, -8.84666919708252 ], [ -75.9271240234375, -8.845337867736816 ], [ -75.927299499511719, -8.84201717376709 ], [ -75.926521301269531, -8.837860107421875 ], [ -75.926437377929688, -8.836105346679631 ], [ -75.927925109863224, -8.830801963806152 ], [ -75.927848815917855, -8.827953338623047 ], [ -75.928848266601562, -8.825753211975098 ], [ -75.929039001464844, -8.824885368347168 ], [ -75.928688049316349, -8.822127342224064 ], [ -75.929092407226562, -8.820812225341797 ], [ -75.929023742675781, -8.819992065429574 ], [ -75.9287109375, -8.819421768188477 ], [ -75.928825378417969, -8.817124366760197 ], [ -75.928153991699219, -8.815407752990666 ], [ -75.928588867187443, -8.808416366577148 ], [ -75.928543090820312, -8.807601928710938 ], [ -75.927886962890625, -8.806273460388184 ], [ -75.92779541015625, -8.805170059204102 ], [ -75.927001953125, -8.803200721740666 ], [ -75.926879882812443, -8.802106857299748 ], [ -75.925163269042912, -8.798846244812012 ], [ -75.925193786621094, -8.796937942504826 ], [ -75.924911499023438, -8.795112609863281 ], [ -75.922927856445312, -8.791272163391113 ], [ -75.9227294921875, -8.78925704956049 ], [ -75.922248840332031, -8.788471221923828 ], [ -75.921936035156136, -8.787223815917969 ], [ -75.922195434570256, -8.782013893127441 ], [ -75.922904968261719, -8.77934455871582 ], [ -75.923492431640625, -8.775329589843693 ], [ -75.925323486328125, -8.772256851196232 ], [ -75.926322937011605, -8.771295547485295 ], [ -75.927650451660099, -8.770480155944824 ], [ -75.928382873535156, -8.769644737243652 ], [ -75.929496765136719, -8.766331672668457 ], [ -75.930953979492188, -8.764086723327637 ], [ -75.9306640625, -8.76153564453125 ], [ -75.931068420410099, -8.760216712951603 ], [ -75.931816101074219, -8.758947372436523 ], [ -75.935256958007756, -8.755357742309513 ], [ -75.935890197753906, -8.754351615905705 ], [ -75.936676025390625, -8.752178192138615 ], [ -75.937187194824162, -8.749283790588379 ], [ -75.939033508300781, -8.745482444763127 ], [ -75.939903259277344, -8.742476463317871 ], [ -75.941116333007812, -8.739497184753418 ], [ -75.941688537597656, -8.73717021942133 ], [ -75.941947937011662, -8.734113693237191 ], [ -75.942283630371094, -8.733157157897892 ], [ -75.943641662597656, -8.732067108154297 ], [ -75.945968627929574, -8.731562614440804 ], [ -75.948081970214844, -8.729640007018986 ], [ -75.951171875, -8.72747898101801 ], [ -75.953315734863281, -8.725205421447697 ], [ -75.954498291015625, -8.723013877868652 ], [ -75.955062866210938, -8.720785140991211 ], [ -75.954803466796818, -8.716472625732422 ], [ -75.953727722167969, -8.712497711181584 ], [ -75.952346801757756, -8.708974838256836 ], [ -75.952079772949219, -8.70716476440424 ], [ -75.952499389648438, -8.703510284423828 ], [ -75.953201293945256, -8.701121330261174 ], [ -75.953849792480412, -8.699898719787598 ], [ -75.953498840331974, -8.6994371414184 ], [ -75.952735900878849, -8.6990966796875 ], [ -75.950180053710938, -8.699065208435059 ], [ -75.947761535644474, -8.698468208312988 ], [ -75.946640014648438, -8.698409080505371 ], [ -75.944625854492131, -8.698299407958928 ], [ -75.941535949707031, -8.697369575500431 ], [ -75.939720153808594, -8.695979118347111 ], [ -75.938240051269474, -8.693769454955998 ], [ -75.936386108398438, -8.692382812499943 ], [ -75.933822631835881, -8.691656112670842 ], [ -75.932723999023438, -8.691169738769531 ], [ -75.931968688964844, -8.690834999084473 ], [ -75.930900573730355, -8.690703392028809 ], [ -75.9296875, -8.690552711486816 ], [ -75.926406860351506, -8.689693450927678 ], [ -75.926124572753849, -8.689620018005371 ], [ -75.924842834472656, -8.68866062164301 ], [ -75.923316955566406, -8.687519073486271 ], [ -75.922065734863281, -8.687061309814453 ], [ -75.920555114746094, -8.686505317687988 ], [ -75.919387817382812, -8.685592651367131 ], [ -75.916481018066349, -8.683320999145508 ], [ -75.914001464843693, -8.682058334350586 ], [ -75.913528442382756, -8.681818962097168 ], [ -75.905776977539062, -8.680797576904297 ], [ -75.904182434081974, -8.680115699768066 ], [ -75.903228759765568, -8.679709434509277 ], [ -75.900451660156193, -8.67745399475092 ], [ -75.900169372558537, -8.676914215087834 ], [ -75.899459838867188, -8.675576210021973 ], [ -75.899093627929688, -8.673498153686523 ], [ -75.898635864257756, -8.672470092773438 ], [ -75.898345947265568, -8.671807289123478 ], [ -75.892898559570312, -8.666058540344181 ], [ -75.89276123046875, -8.66552543640131 ], [ -75.892204284667969, -8.663382530212402 ], [ -75.891250610351562, -8.661478042602539 ], [ -75.890747070312443, -8.660915374755803 ], [ -75.890335083007756, -8.660456657409668 ], [ -75.888504028320312, -8.659041404724121 ], [ -75.888092041015625, -8.658841133117619 ], [ -75.887100219726506, -8.658359527587891 ], [ -75.885589599609318, -8.657893180847168 ], [ -75.882339477539006, -8.656889915466195 ], [ -75.875167846679688, -8.655190467834416 ], [ -75.873497009277344, -8.655110359191838 ], [ -75.871627807617188, -8.655479431152287 ], [ -75.869781494140625, -8.65518665313715 ], [ -75.868705749511662, -8.655018806457463 ], [ -75.864456176757812, -8.651365280151367 ], [ -75.862663269042969, -8.650370597839299 ], [ -75.862297058105412, -8.650169372558594 ], [ -75.861801147460938, -8.65001106262207 ], [ -75.860366821289062, -8.649559974670353 ], [ -75.857658386230355, -8.649592399597168 ], [ -75.857131958007812, -8.649599075317326 ], [ -75.855239868164006, -8.648892402648869 ], [ -75.854026794433537, -8.648439407348576 ], [ -75.852638244628906, -8.647456169128418 ], [ -75.852294921874943, -8.647212982177734 ], [ -75.850601196288949, -8.64551734924305 ], [ -75.849311828613281, -8.643351554870605 ], [ -75.847686767578125, -8.64061164855957 ], [ -75.847175598144531, -8.64006519317627 ], [ -75.84698486328125, -8.639862060546875 ], [ -75.846847534179631, -8.639792442321721 ], [ -75.845672607421875, -8.639189720153809 ], [ -75.845176696777344, -8.63905143737793 ], [ -75.844520568847656, -8.638869285583496 ], [ -75.842956542968693, -8.638989448547306 ], [ -75.841224670410099, -8.640576362609863 ], [ -75.840850830078068, -8.64091968536377 ], [ -75.840126037597656, -8.641239166259709 ], [ -75.83917236328125, -8.641660690307617 ], [ -75.835777282714844, -8.644058227539062 ], [ -75.835487365722656, -8.644192695617676 ], [ -75.8341064453125, -8.644828796386719 ], [ -75.832496643066406, -8.645168304443303 ], [ -75.830978393554688, -8.64509105682373 ], [ -75.829452514648438, -8.645010948181152 ], [ -75.828567504882756, -8.644576072692814 ], [ -75.825317382812443, -8.642975807189941 ], [ -75.823020935058537, -8.642285346984863 ], [ -75.821907043457031, -8.642131805419808 ], [ -75.820747375488224, -8.641972541809082 ], [ -75.81884765625, -8.641054153442383 ], [ -75.818397521972656, -8.639425277709961 ], [ -75.818260192871037, -8.638938903808594 ], [ -75.81793212890625, -8.636470794677678 ], [ -75.818740844726506, -8.633287429809513 ], [ -75.818778991699219, -8.632938385009766 ], [ -75.818946838378906, -8.631367683410588 ], [ -75.819427490234375, -8.63005542755127 ], [ -75.820198059082031, -8.624971389770508 ], [ -75.820144653320256, -8.624291419982853 ], [ -75.820091247558594, -8.623596191406193 ], [ -75.819480895996037, -8.621866226196175 ], [ -75.819297790527287, -8.621335029601994 ], [ -75.819190979003849, -8.621164321899357 ], [ -75.817283630371037, -8.618030548095703 ], [ -75.814956665039062, -8.615288734436035 ], [ -75.812820434570256, -8.611420631408635 ], [ -75.81268310546875, -8.611239433288574 ], [ -75.811309814453011, -8.609442710876465 ], [ -75.809875488281193, -8.608135223388672 ], [ -75.808486938476562, -8.607363700866642 ], [ -75.807701110839844, -8.606926918029785 ], [ -75.807327270507812, -8.606602668762207 ], [ -75.806655883789062, -8.606023788452092 ], [ -75.805068969726562, -8.605077743530217 ], [ -75.80169677734375, -8.601669311523381 ], [ -75.801078796386662, -8.600546836853027 ], [ -75.800674438476562, -8.598936080932617 ], [ -75.799911499023438, -8.597160339355469 ], [ -75.796623229980355, -8.592831611633244 ], [ -75.795509338378906, -8.591038703918343 ], [ -75.79541015625, -8.59088134765625 ], [ -75.795249938964844, -8.590435028076115 ], [ -75.794258117675781, -8.58768177032465 ], [ -75.794158935546875, -8.585471153259277 ], [ -75.793991088867188, -8.581804275512638 ], [ -75.793663024902287, -8.580558776855469 ], [ -75.793571472167855, -8.578989028930664 ], [ -75.791351318359318, -8.574000358581486 ], [ -75.792022705078068, -8.571043968200627 ], [ -75.791046142578125, -8.568758010864258 ], [ -75.788871765136662, -8.565452575683537 ], [ -75.788833618164062, -8.564661979675236 ], [ -75.788818359375, -8.564258575439453 ], [ -75.789237976074219, -8.563046455383301 ], [ -75.789085388183537, -8.562249183654785 ], [ -75.786666870117188, -8.558979988098088 ], [ -75.785835266113224, -8.558432579040527 ], [ -75.784530639648438, -8.557574272155762 ], [ -75.783897399902344, -8.555849075317326 ], [ -75.782104492187443, -8.552641868591252 ], [ -75.781593322753906, -8.55191516876215 ], [ -75.780776977539006, -8.550752639770508 ], [ -75.77996826171875, -8.547924041748047 ], [ -75.779190063476562, -8.546472549438477 ], [ -75.7784423828125, -8.545078277587891 ], [ -75.778472900390568, -8.543338775634766 ], [ -75.779441833496037, -8.540264129638615 ], [ -75.779525756835881, -8.539745330810547 ], [ -75.779655456542969, -8.538916587829533 ], [ -75.779640197753849, -8.537089347839299 ], [ -75.779624938964787, -8.534765243530217 ], [ -75.779411315917969, -8.532770156860295 ], [ -75.780471801757756, -8.529780387878418 ], [ -75.781951904296875, -8.526719093322754 ], [ -75.782928466796875, -8.52374267578125 ], [ -75.783638000488224, -8.521571159362793 ], [ -75.783935546874943, -8.520041465759277 ], [ -75.785697937011719, -8.518157005310059 ], [ -75.7867431640625, -8.51738166809082 ], [ -75.787620544433594, -8.516732215881291 ], [ -75.788619995117188, -8.516383171081486 ], [ -75.789710998535156, -8.516004562377873 ], [ -75.791969299316406, -8.515745162963867 ], [ -75.792366027832031, -8.514830589294434 ], [ -75.793060302734318, -8.513209342956543 ], [ -75.793769836425781, -8.512144088745117 ], [ -75.793640136718693, -8.51113224029541 ], [ -75.793609619140625, -8.510878562927189 ], [ -75.792503356933537, -8.509510040283203 ], [ -75.786552429199219, -8.506360054016113 ], [ -75.785224914550781, -8.505409240722656 ], [ -75.785057067871037, -8.50528621673584 ], [ -75.784423828125, -8.504630088806152 ], [ -75.783782958984375, -8.503961563110295 ], [ -75.782981872558537, -8.501952171325684 ], [ -75.782699584960824, -8.501229286193848 ], [ -75.780715942382812, -8.499371528625431 ], [ -75.779556274414062, -8.498669624328613 ], [ -75.779129028320312, -8.498618125915527 ], [ -75.775848388671875, -8.498207092285099 ], [ -75.773445129394474, -8.498369216918945 ], [ -75.771080017089844, -8.498529434204045 ], [ -75.769142150878849, -8.498390197753849 ], [ -75.768272399902287, -8.498129844665527 ], [ -75.767112731933594, -8.497370719909668 ], [ -75.766136169433594, -8.496347427368107 ], [ -75.765403747558537, -8.495576858520451 ], [ -75.763870239257812, -8.49494552612299 ], [ -75.763542175292969, -8.494811058044434 ], [ -75.762756347656193, -8.494599342346135 ], [ -75.760498046875, -8.493986129760742 ], [ -75.758934020996037, -8.494128227233887 ], [ -75.758491516113281, -8.494169235229379 ], [ -75.756912231445312, -8.494669914245492 ], [ -75.75518798828125, -8.495529174804631 ], [ -75.754447937011662, -8.495624542236271 ], [ -75.753562927246094, -8.49573898315424 ], [ -75.752265930175724, -8.495747566223088 ], [ -75.750831604003849, -8.495443344116211 ], [ -75.748374938964844, -8.494922637939453 ], [ -75.74658203125, -8.494761466979924 ], [ -75.745445251464844, -8.494659423828068 ], [ -75.743949890136662, -8.494197845458928 ], [ -75.743537902832031, -8.494216918945199 ], [ -75.741928100585938, -8.494289398193303 ], [ -75.740829467773381, -8.493968009948674 ], [ -75.73895263671875, -8.492970466613713 ], [ -75.736984252929631, -8.490557670593205 ], [ -75.735198974609318, -8.48926830291748 ], [ -75.734794616699162, -8.489266395568791 ], [ -75.733985900878906, -8.48925876617426 ], [ -75.730735778808594, -8.489888191223145 ], [ -75.727203369140625, -8.489398002624455 ], [ -75.723678588867188, -8.488069534301758 ], [ -75.722137451171818, -8.487808227539006 ], [ -75.720420837402287, -8.486907005310059 ], [ -75.71759033203125, -8.486685752868652 ], [ -75.71661376953125, -8.486150741577092 ], [ -75.715972900390625, -8.485799789428711 ], [ -75.715583801269531, -8.485062599182072 ], [ -75.715484619140625, -8.484048843383732 ], [ -75.716705322265511, -8.481093406677189 ], [ -75.716987609863224, -8.480400085449219 ], [ -75.71673583984375, -8.477933883666935 ], [ -75.716865539550724, -8.477252960205078 ], [ -75.717002868652344, -8.476510047912598 ], [ -75.716636657714844, -8.475470542907658 ], [ -75.715476989746094, -8.473809242248478 ], [ -75.714782714843693, -8.472208976745605 ], [ -75.714591979980412, -8.470288276672306 ], [ -75.714973449706974, -8.468873023986703 ], [ -75.714881896972599, -8.467840194702092 ], [ -75.714859008789006, -8.4676256179809 ], [ -75.714279174804688, -8.466726303100586 ], [ -75.713356018066349, -8.465296745300179 ], [ -75.713096618652344, -8.464508056640625 ], [ -75.712783813476506, -8.463541984558105 ], [ -75.712295532226506, -8.46260929107666 ], [ -75.71197509765625, -8.462004661560059 ], [ -75.703765869140625, -8.449349403381348 ], [ -75.702598571777344, -8.446961402893066 ], [ -75.702308654785156, -8.44637489318842 ], [ -75.699859619140625, -8.440048217773324 ], [ -75.696670532226506, -8.433931350708008 ], [ -75.69573974609375, -8.432683944702148 ], [ -75.695396423339844, -8.431635856628418 ], [ -75.694023132324219, -8.430246353149357 ], [ -75.693634033203125, -8.429315567016545 ], [ -75.692962646484375, -8.428438186645451 ], [ -75.688224792480469, -8.423544883728027 ], [ -75.684303283691406, -8.420610427856388 ], [ -75.682922363281193, -8.419574737548828 ], [ -75.680534362792912, -8.418302536010742 ], [ -75.677825927734375, -8.41742992401123 ], [ -75.676177978515625, -8.417140960693303 ], [ -75.674110412597656, -8.416777610778809 ], [ -75.669532775878906, -8.416389465331974 ], [ -75.664390563964844, -8.414976119995117 ], [ -75.662048339843693, -8.414545059204102 ], [ -75.65618896484375, -8.412628173828125 ], [ -75.655708312988281, -8.412429809570312 ], [ -75.652626037597656, -8.411150932312012 ], [ -75.645599365234375, -8.408974647521916 ], [ -75.640586853027287, -8.408464431762695 ], [ -75.638175964355469, -8.408220291137638 ], [ -75.636947631835881, -8.408181190490723 ], [ -75.635147094726506, -8.408128738403263 ], [ -75.633949279785156, -8.40817928314209 ], [ -75.633216857910156, -8.408208847045842 ], [ -75.630157470703125, -8.408836364746037 ], [ -75.628730773925781, -8.408832550048771 ], [ -75.627769470214844, -8.408830642700195 ], [ -75.624404907226562, -8.40782356262207 ], [ -75.622749328613224, -8.407328605651855 ], [ -75.618507385253906, -8.40496635437006 ], [ -75.612739562988224, -8.403817176818791 ], [ -75.606666564941406, -8.403899192810059 ], [ -75.604011535644531, -8.404607772827092 ], [ -75.603248596191406, -8.404642105102539 ], [ -75.601722717285156, -8.404709815979004 ], [ -75.599029541015625, -8.405288696289062 ], [ -75.597663879394474, -8.405179977416935 ], [ -75.596916198730412, -8.405117988586426 ], [ -75.596092224121094, -8.404902458190861 ], [ -75.594306945800781, -8.404430389404297 ], [ -75.591201782226449, -8.403999328613168 ], [ -75.587463378906193, -8.405229568481445 ], [ -75.583511352539062, -8.405360221862793 ], [ -75.580619812011719, -8.406281471252385 ], [ -75.580192565917969, -8.406270980834961 ], [ -75.579978942871094, -8.406269073486271 ], [ -75.578872680664006, -8.406244277954102 ], [ -75.577606201171875, -8.406467437744084 ], [ -75.572830200195312, -8.406347274780273 ], [ -75.569335937499943, -8.407164573669434 ], [ -75.568298339843693, -8.407656669616699 ], [ -75.567596435546875, -8.407990455627441 ], [ -75.566291809081974, -8.408025741577092 ], [ -75.565048217773381, -8.408058166503906 ], [ -75.564292907714787, -8.408466339111271 ], [ -75.562461853027287, -8.40944862365717 ], [ -75.559776306152344, -8.411670684814453 ], [ -75.557106018066406, -8.412380218505803 ], [ -75.554954528808537, -8.412566184997559 ], [ -75.553459167480469, -8.412698745727482 ], [ -75.550346374511719, -8.414048194885254 ], [ -75.549331665039006, -8.414694786071777 ], [ -75.548019409179688, -8.415532112121525 ], [ -75.544578552246094, -8.417329788208008 ], [ -75.538932800292912, -8.419258117675668 ], [ -75.535636901855469, -8.420117378234806 ], [ -75.534713745117131, -8.420538902282658 ], [ -75.533882141113224, -8.420919418334904 ], [ -75.528472900390625, -8.421965599060002 ], [ -75.523422241210938, -8.423356056213322 ], [ -75.522148132324162, -8.423579216003418 ], [ -75.520866394042969, -8.423803329467773 ], [ -75.516357421875, -8.423762321472168 ], [ -75.515571594238224, -8.423528671264648 ], [ -75.513458251953068, -8.42344856262207 ], [ -75.512977600097599, -8.42351055145258 ], [ -75.511451721191349, -8.423708915710392 ], [ -75.510261535644531, -8.424187660217285 ], [ -75.5086669921875, -8.425578117370605 ], [ -75.506385803222599, -8.427968978881779 ], [ -75.505928039550724, -8.42855167388916 ], [ -75.504173278808594, -8.430788040161133 ], [ -75.500297546386662, -8.434590339660645 ], [ -75.498992919921875, -8.435179710388184 ], [ -75.496047973632812, -8.437399864196777 ], [ -75.494415283203125, -8.438037872314396 ], [ -75.494003295898381, -8.438199996948242 ], [ -75.493545532226449, -8.438270568847656 ], [ -75.492530822753906, -8.438429832458496 ], [ -75.488212585449219, -8.43856239318842 ], [ -75.487663269042969, -8.438581466674805 ], [ -75.486717224121094, -8.438920021057072 ], [ -75.48480224609375, -8.439607620239201 ], [ -75.483283996582031, -8.439864158630371 ], [ -75.482711791992188, -8.439958572387695 ], [ -75.476943969726506, -8.44011211395258 ], [ -75.466583251953125, -8.440389633178711 ], [ -75.465126037597543, -8.440690994262695 ], [ -75.461090087890568, -8.441530227661133 ], [ -75.457695007324219, -8.441558837890568 ], [ -75.454277038574219, -8.44158935546875 ], [ -75.453117370605469, -8.441760063171387 ], [ -75.451370239257756, -8.442020416259709 ], [ -75.449752807617131, -8.441864967346135 ], [ -75.449264526367131, -8.441819190979004 ], [ -75.447517395019531, -8.441287994384652 ], [ -75.445854187011662, -8.440510749816895 ], [ -75.442893981933537, -8.438480377197266 ], [ -75.441680908203125, -8.437348365783691 ], [ -75.440475463867188, -8.436219215393066 ], [ -75.439338684082031, -8.434602737426758 ], [ -75.438026428222599, -8.432242393493652 ], [ -75.435813903808537, -8.428249359130859 ], [ -75.435592651367188, -8.427236557006836 ], [ -75.435325622558594, -8.426012992858887 ], [ -75.435935974121037, -8.423064231872559 ], [ -75.435234069824219, -8.421029090881348 ], [ -75.435188293457031, -8.42089653015131 ], [ -75.434860229492131, -8.420296669006291 ], [ -75.432975769042912, -8.416855812072754 ], [ -75.432685852050724, -8.416069030761719 ], [ -75.43255615234375, -8.415730476379338 ], [ -75.432632446289062, -8.411690711975098 ], [ -75.433036804199219, -8.408563613891602 ], [ -75.433555603027287, -8.40457820892334 ], [ -75.433639526367131, -8.397310256958008 ], [ -75.433700561523438, -8.39708232879633 ], [ -75.433982849121094, -8.39606761932373 ], [ -75.434967041015568, -8.394630432128849 ], [ -75.435592651367188, -8.394219398498535 ], [ -75.438560485839844, -8.393009185790959 ], [ -75.440597534179631, -8.391600608825684 ], [ -75.44195556640625, -8.389980316161996 ], [ -75.442665100097656, -8.388667106628418 ], [ -75.443580627441406, -8.386984825134221 ], [ -75.444046020507756, -8.386517524719238 ], [ -75.444358825683594, -8.386205673217717 ], [ -75.446235656738224, -8.385321617126465 ], [ -75.447357177734318, -8.384793281555176 ], [ -75.448165893554688, -8.384578704833984 ], [ -75.449050903320312, -8.384346008300724 ], [ -75.449874877929688, -8.384403228759766 ], [ -75.450698852539006, -8.384462356567326 ], [ -75.452377319335938, -8.385046005248967 ], [ -75.454246520996037, -8.385698318481445 ], [ -75.454666137695312, -8.386024475097656 ], [ -75.454826354980355, -8.386149406433105 ], [ -75.455200195312443, -8.386264801025391 ], [ -75.455696105957031, -8.386420249938908 ], [ -75.456138610839787, -8.38677978515625 ], [ -75.456550598144531, -8.38712024688715 ], [ -75.458206176757812, -8.387709617614746 ], [ -75.458900451660099, -8.387692451476994 ], [ -75.461975097656193, -8.387617111205998 ], [ -75.465240478515625, -8.386589050292969 ], [ -75.468269348144474, -8.385255813598576 ], [ -75.469398498535099, -8.3843736648559 ], [ -75.470588684082031, -8.383443832397404 ], [ -75.472663879394531, -8.382382392883301 ], [ -75.473121643066349, -8.382146835327148 ], [ -75.473564147949219, -8.381604194641056 ], [ -75.475433349609375, -8.379318237304688 ], [ -75.476562499999943, -8.379398345947266 ], [ -75.476730346679631, -8.379470825195256 ], [ -75.477142333984261, -8.379647254943848 ], [ -75.478492736816406, -8.379329681396484 ], [ -75.478683471679688, -8.379165649414062 ], [ -75.479248046875, -8.378676414489689 ], [ -75.480377197265568, -8.376774787902832 ], [ -75.480438232421875, -8.371726989746094 ], [ -75.480354309081974, -8.371496200561467 ], [ -75.479331970214787, -8.368806838989258 ], [ -75.479263305664062, -8.36778354644764 ], [ -75.479156494140625, -8.366320610046387 ], [ -75.479248046875, -8.366046905517578 ], [ -75.479393005371094, -8.365628242492676 ], [ -75.480690002441406, -8.36421012878418 ], [ -75.480735778808537, -8.363603591918888 ], [ -75.480819702148438, -8.362375259399414 ], [ -75.480514526367188, -8.361612319946289 ], [ -75.47967529296875, -8.359500885009766 ], [ -75.478309631347656, -8.358505249023381 ], [ -75.477745056152344, -8.358091354370117 ], [ -75.47695159912098, -8.357913017272836 ], [ -75.475860595703125, -8.357668876647949 ], [ -75.475654602050781, -8.357488632202092 ], [ -75.474845886230412, -8.356784820556584 ], [ -75.474357604980412, -8.356076240539551 ], [ -75.474266052246037, -8.355938911437931 ], [ -75.474174499511662, -8.353472709655762 ], [ -75.474891662597656, -8.351685523986816 ], [ -75.474998474121094, -8.351420402526799 ], [ -75.475166320800781, -8.350727081298828 ], [ -75.475540161132812, -8.349190711975098 ], [ -75.477432250976562, -8.346829414367676 ], [ -75.479568481445312, -8.343390464782658 ], [ -75.482276916503849, -8.340778350830078 ], [ -75.483497619628849, -8.338950157165527 ], [ -75.484863281249943, -8.338191032409668 ], [ -75.486587524414062, -8.33775615692133 ], [ -75.488517761230469, -8.33726596832264 ], [ -75.490608215332031, -8.336383819579964 ], [ -75.491401672363281, -8.33604907989502 ], [ -75.493759155273438, -8.334300994873047 ], [ -75.494277954101506, -8.333748817443848 ], [ -75.495338439941349, -8.332626342773438 ], [ -75.495521545410099, -8.332324981689453 ], [ -75.495903015136662, -8.331684112548771 ], [ -75.496192932128849, -8.330327987670785 ], [ -75.497451782226506, -8.329402923583928 ], [ -75.499183654785156, -8.326616287231445 ], [ -75.500083923339844, -8.325654029846191 ], [ -75.501655578613281, -8.323971748352051 ], [ -75.502151489257812, -8.323191642761174 ], [ -75.502983093261662, -8.321880340576115 ], [ -75.504020690917912, -8.319373130798283 ], [ -75.505836486816349, -8.316707611083928 ], [ -75.506477355957031, -8.315769195556584 ], [ -75.506645202636719, -8.315591812133789 ], [ -75.507209777832031, -8.314977645874023 ], [ -75.50885009765625, -8.313998222351074 ], [ -75.509368896484318, -8.313371658325195 ], [ -75.509666442871094, -8.312527656555176 ], [ -75.510902404785043, -8.309008598327637 ], [ -75.511085510253849, -8.307753562927246 ], [ -75.511375427246037, -8.305795669555607 ], [ -75.511360168456974, -8.304091453552189 ], [ -75.511352539062443, -8.302811622619572 ], [ -75.511085510253849, -8.300367355346623 ], [ -75.510826110839844, -8.297945976257324 ], [ -75.511138916015625, -8.290612220764103 ], [ -75.51123046875, -8.288470268249455 ], [ -75.511032104492188, -8.281949043273869 ], [ -75.511329650878906, -8.279800415039006 ], [ -75.512199401855469, -8.277810096740723 ], [ -75.512214660644474, -8.277708053588867 ], [ -75.512397766113224, -8.276201248168945 ], [ -75.512168884277344, -8.273218154907227 ], [ -75.511459350585881, -8.27115535736084 ], [ -75.510711669921761, -8.269713401794434 ], [ -75.510581970214787, -8.269469261169434 ], [ -75.508316040039006, -8.267119407653752 ], [ -75.500633239746094, -8.257959365844727 ], [ -75.499977111816406, -8.256698608398438 ], [ -75.498428344726562, -8.25514030456543 ], [ -75.495841979980469, -8.250999450683537 ], [ -75.493530273437443, -8.248858451843262 ], [ -75.490837097167969, -8.246370315551701 ], [ -75.488784790039062, -8.243550300598145 ], [ -75.487815856933537, -8.243206024169865 ], [ -75.487525939941349, -8.243366241455021 ], [ -75.487052917480412, -8.243618965148926 ], [ -75.486442565917969, -8.243602752685547 ], [ -75.486312866210938, -8.243597984313965 ], [ -75.484970092773438, -8.242600440979004 ], [ -75.484771728515511, -8.242451667785588 ], [ -75.484390258788949, -8.24188232421875 ], [ -75.482368469238224, -8.238862037658691 ], [ -75.481742858886719, -8.238125801086426 ], [ -75.481056213378906, -8.237318992614746 ], [ -75.4788818359375, -8.233900070190373 ], [ -75.478630065917969, -8.233594894409123 ], [ -75.476959228515625, -8.231553077697754 ], [ -75.476493835449219, -8.231126785278263 ], [ -75.475303649902287, -8.230034828186035 ], [ -75.4742431640625, -8.229275703430119 ], [ -75.473358154296875, -8.228645324707031 ], [ -75.471343994140625, -8.227750778198242 ], [ -75.466072082519474, -8.227151870727539 ], [ -75.463508605957031, -8.226428985595703 ], [ -75.462936401367188, -8.226140022277775 ], [ -75.461204528808537, -8.22526741027832 ], [ -75.459770202636662, -8.223957061767578 ], [ -75.458450317382699, -8.221235275268555 ], [ -75.457809448242188, -8.218480110168457 ], [ -75.457687377929574, -8.216360092163029 ], [ -75.457229614257812, -8.214959144592285 ], [ -75.455596923828125, -8.212519645690918 ], [ -75.455436706542969, -8.212045669555607 ], [ -75.455154418945312, -8.211209297180176 ], [ -75.454078674316406, -8.210079193115234 ], [ -75.453742980956974, -8.209989547729492 ], [ -75.452102661132812, -8.208339691162109 ], [ -75.449722290039062, -8.207360267639103 ], [ -75.448921203613281, -8.206589698791447 ], [ -75.448883056640568, -8.206048965454045 ], [ -75.449249267578125, -8.205039978027287 ], [ -75.449043273925781, -8.203018188476562 ], [ -75.447639465331974, -8.200650215148926 ], [ -75.446907043456974, -8.198861122131291 ], [ -75.445716857910156, -8.197339057922306 ], [ -75.443572998046761, -8.196529388427734 ], [ -75.440849304199219, -8.193799018859806 ], [ -75.436279296875, -8.192391395568791 ], [ -75.432952880859318, -8.189908981323242 ], [ -75.429389953613281, -8.18842887878418 ], [ -75.425849914550781, -8.187419891357308 ], [ -75.425018310546875, -8.18683910369873 ], [ -75.424186706542912, -8.186770439147949 ], [ -75.423599243164062, -8.186339378356877 ], [ -75.421897888183537, -8.183699607849121 ], [ -75.415992736816349, -8.172380447387638 ], [ -75.415039062499943, -8.171680450439396 ], [ -75.411605834960881, -8.169629096984863 ], [ -75.404281616210824, -8.167010307312012 ], [ -75.400146484374943, -8.166080474853516 ], [ -75.396125793457031, -8.165888786315918 ], [ -75.392967224121094, -8.163998603820801 ], [ -75.390632629394474, -8.161169052124023 ], [ -75.388931274414062, -8.159867286682072 ], [ -75.387123107910156, -8.15950870513916 ], [ -75.383537292480469, -8.159309387207031 ], [ -75.380928039550781, -8.158760070800781 ], [ -75.380012512207031, -8.158148765563965 ], [ -75.378379821777344, -8.156528472900391 ], [ -75.376266479492188, -8.156490325927678 ], [ -75.374229431152287, -8.156020164489632 ], [ -75.371086120605412, -8.154680252075195 ], [ -75.368141174316406, -8.152809143066406 ], [ -75.365898132324219, -8.151748657226506 ], [ -75.359550476074162, -8.150751113891488 ], [ -75.357063293456974, -8.149367332458496 ], [ -75.354042053222656, -8.148508071899414 ], [ -75.350410461425781, -8.146388053893929 ], [ -75.346595764160156, -8.143199920654297 ], [ -75.342651367187443, -8.14098930358881 ], [ -75.339912414550781, -8.139139175415039 ], [ -75.335327148437443, -8.134480476379338 ], [ -75.332443237304631, -8.132550239562988 ], [ -75.327476501464787, -8.130338668823185 ], [ -75.322669982910156, -8.126619338989201 ], [ -75.321952819824162, -8.126480102538949 ], [ -75.321250915527344, -8.125909805297852 ], [ -75.31826019287098, -8.124968528747559 ], [ -75.314628601074162, -8.124397277832031 ], [ -75.310882568359318, -8.12401008605957 ], [ -75.304168701171875, -8.123867988586426 ], [ -75.300765991210938, -8.123100280761719 ], [ -75.297920227050724, -8.123228073120117 ], [ -75.295356750488224, -8.122998237609863 ], [ -75.29290771484375, -8.124038696289062 ], [ -75.290657043457031, -8.124528884887695 ], [ -75.288398742675724, -8.126250267028752 ], [ -75.285316467285156, -8.127459526062012 ], [ -75.2847900390625, -8.128398895263672 ], [ -75.283943176269531, -8.129238128662053 ], [ -75.281272888183594, -8.130660057067871 ], [ -75.279823303222599, -8.131791114807129 ], [ -75.276947021484318, -8.132378578186035 ], [ -75.275482177734375, -8.132419586181641 ], [ -75.274200439453011, -8.132909774780217 ], [ -75.273567199707031, -8.133719444274902 ], [ -75.273017883300781, -8.135180473327637 ], [ -75.271926879882812, -8.136558532714787 ], [ -75.267631530761719, -8.138829231262207 ], [ -75.265579223632812, -8.140558242797852 ], [ -75.264556884765568, -8.142169952392578 ], [ -75.262077331542912, -8.147320747375488 ], [ -75.260307312011719, -8.149429321289006 ], [ -75.257125854492131, -8.152230262756291 ], [ -75.255027770996037, -8.152819633483887 ], [ -75.251686096191349, -8.152938842773438 ], [ -75.245597839355469, -8.150910377502385 ], [ -75.243431091308594, -8.151228904724064 ], [ -75.242317199706974, -8.150769233703613 ], [ -75.240791320800724, -8.151058197021428 ], [ -75.237701416015625, -8.150208473205566 ], [ -75.235786437988281, -8.150428771972656 ], [ -75.235031127929688, -8.15009880065918 ], [ -75.233070373535099, -8.148109436035099 ], [ -75.231292724609375, -8.145228385925236 ], [ -75.230659484863281, -8.14290809631342 ], [ -75.23065185546875, -8.139598846435547 ], [ -75.230407714843693, -8.137579917907658 ], [ -75.229606628417969, -8.135129928588867 ], [ -75.228279113769531, -8.132088661193848 ], [ -75.226058959960938, -8.128470420837402 ], [ -75.223716735839787, -8.125288009643441 ], [ -75.220207214355412, -8.1222887039184 ], [ -75.219245910644474, -8.12117862701416 ], [ -75.218246459960938, -8.11951732635498 ], [ -75.217796325683594, -8.11830997467041 ], [ -75.21746826171875, -8.116308212280217 ], [ -75.217041015624943, -8.103420257568359 ], [ -75.216377258300724, -8.101308822631836 ], [ -75.214958190917912, -8.098719596862793 ], [ -75.213462829589844, -8.09496021270752 ], [ -75.21051025390625, -8.084429740905762 ], [ -75.209800720214787, -8.075460433959961 ], [ -75.209938049316406, -8.066860198974553 ], [ -75.209136962890568, -8.058979034423828 ], [ -75.209022521972656, -8.054649353027287 ], [ -75.208717346191406, -8.051998138427621 ], [ -75.207809448242131, -8.048419952392578 ], [ -75.206672668456974, -8.045409202575684 ], [ -75.205223083496037, -8.042649269103947 ], [ -75.203453063964844, -8.040168762206974 ], [ -75.200782775878906, -8.037137985229435 ], [ -75.197349548339844, -8.03405857086176 ], [ -75.191452026367188, -8.03029823303217 ], [ -75.188682556152344, -8.028809547424316 ], [ -75.182907104492131, -8.02616024017334 ], [ -75.180877685546875, -8.024740219116154 ], [ -75.170539855957031, -8.021759033203068 ], [ -75.164398193359318, -8.018850326538029 ], [ -75.162742614746094, -8.017837524414006 ], [ -75.156112670898381, -8.015649795532227 ], [ -75.150833129882812, -8.013478279113713 ], [ -75.143218994140625, -8.010829925537109 ], [ -75.123573303222656, -8.002769470214787 ], [ -75.117973327636662, -8.00010871887207 ], [ -75.106666564941406, -7.994558811187744 ], [ -75.101997375488281, -7.992000102996712 ], [ -75.090881347656193, -7.98746919631958 ], [ -75.085830688476506, -7.985768795013428 ], [ -75.082489013671818, -7.985130786895695 ], [ -75.081512451171875, -7.984609127044564 ], [ -75.077926635742131, -7.98340988159174 ], [ -75.076026916503793, -7.982500076293888 ], [ -75.069313049316406, -7.98002099990839 ], [ -75.065437316894474, -7.979188919067383 ], [ -75.060768127441293, -7.979078769683781 ], [ -75.053886413574162, -7.979498863220215 ], [ -75.042228698730469, -7.981509208679199 ], [ -75.037986755371094, -7.982510089874268 ], [ -75.034729003906193, -7.982978820800781 ], [ -75.026008605957031, -7.985189914703312 ], [ -75.020149230957031, -7.986161231994629 ], [ -75.012779235839787, -7.988080024719238 ], [ -75.005897521972599, -7.990328788757324 ], [ -75.003532409667912, -7.991339206695557 ], [ -74.996757507324162, -7.995668888091984 ], [ -74.989219665527287, -7.999928951263371 ], [ -74.987167358398438, -8.000738143920785 ], [ -74.985450744628906, -8.001959800720215 ], [ -74.983695983886662, -8.002778053283635 ], [ -74.976409912109375, -8.004980087280273 ], [ -74.967903137207031, -8.008209228515568 ], [ -74.966300964355469, -8.008529663085938 ], [ -74.96502685546875, -8.009089469909668 ], [ -74.960441589355355, -8.010398864746037 ], [ -74.954536437988281, -8.011408805847111 ], [ -74.946197509765568, -8.01356029510498 ], [ -74.939582824707031, -8.014679908752441 ], [ -74.932601928710938, -8.016749382018986 ], [ -74.927139282226506, -8.018030166625977 ], [ -74.92431640625, -8.018930435180607 ], [ -74.919998168945256, -8.019809722900391 ], [ -74.917182922363281, -8.020668983459473 ], [ -74.914901733398438, -8.020990371704102 ], [ -74.910102844238281, -8.022249221801758 ], [ -74.904762268066406, -8.023049354553223 ], [ -74.895988464355469, -8.025839805602971 ], [ -74.8902587890625, -8.026769638061467 ], [ -74.880111694335881, -8.029168128967285 ], [ -74.87728118896473, -8.029509544372559 ], [ -74.875228881835938, -8.030050277709961 ], [ -74.869117736816406, -8.030838966369572 ], [ -74.861557006835938, -8.030758857727051 ], [ -74.853881835937443, -8.029858589172363 ], [ -74.846176147460881, -8.027910232543888 ], [ -74.837860107421818, -8.025178909301758 ], [ -74.831001281738224, -8.022148132324105 ], [ -74.822006225585938, -8.016778945922852 ], [ -74.814971923828068, -8.01312065124506 ], [ -74.812126159667912, -8.012100219726506 ], [ -74.810646057128906, -8.011328697204533 ], [ -74.80853271484375, -8.010739326477051 ], [ -74.804901123046875, -8.009058952331429 ], [ -74.802978515624943, -8.008419036865234 ], [ -74.801620483398381, -8.007648468017521 ], [ -74.798271179199219, -8.006649971008301 ], [ -74.793998718261662, -8.006048202514592 ], [ -74.789398193359375, -8.006059646606388 ], [ -74.783042907714787, -8.007548332214355 ], [ -74.780349731445312, -8.0085191726684 ], [ -74.776260375976506, -8.009629249572754 ], [ -74.773429870605469, -8.009071350097599 ], [ -74.770118713378906, -8.007669448852482 ], [ -74.760871887207031, -8.001659393310547 ], [ -74.758552551269531, -8.000838279724064 ], [ -74.742881774902287, -7.993218898773193 ], [ -74.731658935546875, -7.988979816436768 ], [ -74.716506958007812, -7.985159873962402 ], [ -74.705039978027287, -7.980909824371281 ], [ -74.701972961425724, -7.979310035705566 ], [ -74.701339721679688, -7.979170799255371 ], [ -74.693267822265625, -7.974559783935433 ], [ -74.687026977539062, -7.971389770507756 ], [ -74.683158874511719, -7.968910217285099 ], [ -74.676528930664006, -7.963779926299992 ], [ -74.671897888183594, -7.959838867187443 ], [ -74.667900085449219, -7.95720911026001 ], [ -74.662528991699219, -7.952169895172119 ], [ -74.654510498046875, -7.945679187774658 ], [ -74.648086547851506, -7.938549995422363 ], [ -74.641136169433537, -7.92828893661499 ], [ -74.634262084960881, -7.919649124145451 ], [ -74.633247375488281, -7.917779922485352 ], [ -74.631698608398381, -7.91572904586792 ], [ -74.629577636718693, -7.912269115447941 ], [ -74.628219604492188, -7.910638809204102 ], [ -74.623870849609318, -7.904239177703801 ], [ -74.621322631835938, -7.900069236755371 ], [ -74.617759704589787, -7.89491081237793 ], [ -74.616477966308594, -7.892579078674316 ], [ -74.613792419433594, -7.889400005340576 ], [ -74.612327575683537, -7.88704776763916 ], [ -74.608772277832031, -7.882581233978271 ], [ -74.603073120117131, -7.873239040374756 ], [ -74.595619201660156, -7.863099098205453 ], [ -74.592948913574219, -7.859130859374943 ], [ -74.590766906738224, -7.855269908905029 ], [ -74.588821411132812, -7.852519035339355 ], [ -74.585609436035156, -7.846609115600529 ], [ -74.58184814453125, -7.841478824615422 ], [ -74.579940795898438, -7.837289810180664 ], [ -74.576866149902287, -7.833609104156494 ], [ -74.575241088867131, -7.831138134002686 ], [ -74.572097778320256, -7.825098991394043 ], [ -74.570381164550724, -7.820870876312256 ], [ -74.569419860839787, -7.81731986999506 ], [ -74.568710327148438, -7.815720081329346 ], [ -74.565277099609375, -7.813329219818002 ], [ -74.560691833496094, -7.808930873870793 ], [ -74.557449340820312, -7.804688930511475 ], [ -74.554550170898381, -7.799650192260742 ], [ -74.551918029785156, -7.798590183258057 ], [ -74.551033020019531, -7.797790050506592 ], [ -74.550537109374943, -7.796807765960637 ], [ -74.549263000488281, -7.792660236358643 ], [ -74.54769134521473, -7.790979862213135 ], [ -74.542076110839844, -7.78928899765009 ], [ -74.540718078613224, -7.789169788360539 ], [ -74.539962768554631, -7.788818836212158 ], [ -74.533447265624943, -7.787320137023926 ], [ -74.530426025390568, -7.786977767944336 ], [ -74.526199340820256, -7.786859035491943 ], [ -74.525032043457031, -7.786618232727051 ], [ -74.523796081542969, -7.785820007324162 ], [ -74.522712707519531, -7.784319877624512 ], [ -74.521575927734375, -7.782110214233398 ], [ -74.521553039550724, -7.781418800354004 ], [ -74.521812438964787, -7.780669212341309 ], [ -74.524421691894418, -7.777791023254395 ], [ -74.524696350097599, -7.776840209960881 ], [ -74.524620056152344, -7.775909900665226 ], [ -74.523506164550781, -7.77257776260376 ], [ -74.52252197265625, -7.77068901062006 ], [ -74.521286010742188, -7.76898002624506 ], [ -74.519111633300781, -7.766609191894531 ], [ -74.518440246582031, -7.765281200408879 ], [ -74.518325805664062, -7.762441158294678 ], [ -74.518806457519531, -7.761290073394775 ], [ -74.519950866699219, -7.7600998878479 ], [ -74.524276733398438, -7.756838798522949 ], [ -74.526176452636719, -7.755720138549748 ], [ -74.527900695800781, -7.755070209503174 ], [ -74.532028198242131, -7.754740238189697 ], [ -74.534027099609318, -7.754809856414738 ], [ -74.538040161132756, -7.754370212554932 ], [ -74.541427612304688, -7.753490924835148 ], [ -74.544067382812386, -7.752230167388916 ], [ -74.54541015625, -7.750969886779785 ], [ -74.546272277832031, -7.748829841613713 ], [ -74.54656982421875, -7.74397087097168 ], [ -74.546920776367131, -7.741970062255859 ], [ -74.547492980956974, -7.741048812866154 ], [ -74.548477172851562, -7.740570068359375 ], [ -74.549873352050724, -7.740579128265381 ], [ -74.555206298828068, -7.741730213165283 ], [ -74.556808471679688, -7.741580009460449 ], [ -74.558280944824219, -7.740439891815186 ], [ -74.563346862792969, -7.735381126403809 ], [ -74.565345764160156, -7.734060764312744 ], [ -74.56829833984375, -7.732570171356144 ], [ -74.569160461425781, -7.731880187988281 ], [ -74.570686340332031, -7.73016977310175 ], [ -74.571662902832031, -7.727880001068002 ], [ -74.572158813476562, -7.725358963012695 ], [ -74.572357177734318, -7.721399784088078 ], [ -74.572738647460881, -7.719219207763672 ], [ -74.573127746581974, -7.71751880645752 ], [ -74.574279785156193, -7.71439886093134 ], [ -74.575965881347656, -7.711090087890625 ], [ -74.578506469726562, -7.708610057830811 ], [ -74.580726623535156, -7.706980228424072 ], [ -74.582206726074162, -7.705238819122258 ], [ -74.583900451660099, -7.701159000396729 ], [ -74.584251403808594, -7.700209140777588 ], [ -74.584457397460938, -7.698488235473576 ], [ -74.584327697753906, -7.697199821472111 ], [ -74.583641052246037, -7.694990158080941 ], [ -74.583831787109318, -7.685880184173584 ], [ -74.583335876464787, -7.684188842773438 ], [ -74.581840515136719, -7.681758880615178 ], [ -74.580009460449162, -7.679811000823918 ], [ -74.578956604003849, -7.679549217224064 ], [ -74.576477050781193, -7.679739952087346 ], [ -74.575141906738224, -7.678909778594914 ], [ -74.572586059570312, -7.674328804016113 ], [ -74.571662902832031, -7.671150207519531 ], [ -74.571586608886719, -7.6663498878479 ], [ -74.573318481445256, -7.656838893890381 ], [ -74.573722839355412, -7.649119853973332 ], [ -74.574310302734375, -7.647290229797363 ], [ -74.576828002929688, -7.642168045043945 ], [ -74.577133178710881, -7.636300086975041 ], [ -74.578117370605469, -7.635609149932804 ], [ -74.580093383789006, -7.63510084152216 ], [ -74.581512451171818, -7.634459972381535 ], [ -74.585266113281136, -7.630838871002197 ], [ -74.586631774902344, -7.630290031433105 ], [ -74.589256286621037, -7.629849910736084 ], [ -74.5908203125, -7.628589153289795 ], [ -74.594017028808537, -7.624811172485352 ], [ -74.594932556152344, -7.623208045959473 ], [ -74.595382690429688, -7.62161111831665 ], [ -74.595275878906193, -7.617920875549316 ], [ -74.595657348632756, -7.616628170013428 ], [ -74.5965576171875, -7.615970134735107 ], [ -74.599220275878906, -7.615979194641056 ], [ -74.600288391113281, -7.615668773651066 ], [ -74.603363037109318, -7.612770080566406 ], [ -74.606216430664006, -7.611098766326847 ], [ -74.607559204101506, -7.60998010635376 ], [ -74.608963012695312, -7.608288764953613 ], [ -74.611930847167969, -7.603309154510498 ], [ -74.617973327636662, -7.596758842468205 ], [ -74.621070861816406, -7.592528820037842 ], [ -74.622642517089787, -7.590740203857422 ], [ -74.62551116943348, -7.586600780487061 ], [ -74.626747131347599, -7.58526086807251 ], [ -74.630332946777344, -7.582379817962646 ], [ -74.632759094238168, -7.581289768218937 ], [ -74.64111328125, -7.578468799591064 ], [ -74.643249511718636, -7.576729774475098 ], [ -74.64382171630848, -7.575579166412297 ], [ -74.644157409667969, -7.572739124298096 ], [ -74.64459228515625, -7.570950031280461 ], [ -74.646408081054688, -7.567449092864933 ], [ -74.647590637207031, -7.564529895782471 ], [ -74.647857666015625, -7.56282901763916 ], [ -74.647926330566406, -7.559408187866211 ], [ -74.647468566894531, -7.558720111846924 ], [ -74.646171569824162, -7.554110050201359 ], [ -74.642478942871037, -7.54617977142334 ], [ -74.641456604003906, -7.543378829956055 ], [ -74.640838623046818, -7.540870189666748 ], [ -74.640792846679688, -7.538027763366642 ], [ -74.641197204589844, -7.533238887786865 ], [ -74.643516540527287, -7.526069164276123 ], [ -74.644302368164062, -7.521759033203125 ], [ -74.645851135253906, -7.515799999237004 ], [ -74.645317077636662, -7.514328956603947 ], [ -74.641990661621037, -7.51145076751709 ], [ -74.641456604003906, -7.510580062866211 ], [ -74.641517639160099, -7.508470058441162 ], [ -74.642738342285099, -7.504329204559326 ], [ -74.642608642578125, -7.503139019012394 ], [ -74.641502380371037, -7.49936914443964 ], [ -74.637351989746094, -7.49249076843256 ], [ -74.635757446289062, -7.490230083465576 ], [ -74.631523132324219, -7.486149787902832 ], [ -74.628067016601506, -7.484139919281006 ], [ -74.627250671386719, -7.483419895172119 ], [ -74.623191833496037, -7.478519916534424 ], [ -74.620231628417912, -7.473740100860596 ], [ -74.618476867675781, -7.470298767089844 ], [ -74.617652893066406, -7.467860221862793 ], [ -74.614006042480469, -7.460928916931152 ], [ -74.612953186035156, -7.456917762756291 ], [ -74.612922668456918, -7.45452976226801 ], [ -74.612358093261719, -7.450419902801514 ], [ -74.612236022949162, -7.446848869323674 ], [ -74.611549377441406, -7.444950103759709 ], [ -74.606727600097656, -7.437257766723633 ], [ -74.605583190917969, -7.434840202331486 ], [ -74.604446411132812, -7.433379173278809 ], [ -74.603202819824219, -7.430959224700928 ], [ -74.599822998046818, -7.425798892974854 ], [ -74.597450256347599, -7.420810222625676 ], [ -74.595878601074219, -7.418108940124512 ], [ -74.594985961914006, -7.415390014648381 ], [ -74.588088989257812, -7.40398979187006 ], [ -74.584892272949219, -7.40057992935175 ], [ -74.580818176269531, -7.397288799285775 ], [ -74.579048156738224, -7.39529895782465 ], [ -74.577552795410156, -7.391621112823486 ], [ -74.577629089355412, -7.388150215148869 ], [ -74.577186584472656, -7.38588905334467 ], [ -74.576431274414062, -7.383709907531738 ], [ -74.574546813964844, -7.379699230194092 ], [ -74.572563171386662, -7.374350070953312 ], [ -74.568649291992131, -7.368000030517521 ], [ -74.567352294921875, -7.364649772643986 ], [ -74.565933227539062, -7.362400054931641 ], [ -74.564537048339787, -7.359379768371582 ], [ -74.56195068359375, -7.355940818786621 ], [ -74.560157775878849, -7.354518890380859 ], [ -74.552772521972656, -7.347071170806828 ], [ -74.552398681640625, -7.345920085906982 ], [ -74.551071166992188, -7.343820095062199 ], [ -74.54931640625, -7.339570045471191 ], [ -74.546592712402344, -7.335089206695557 ], [ -74.545303344726506, -7.331960201263428 ], [ -74.543296813964787, -7.32866001129139 ], [ -74.542572021484375, -7.326959133148193 ], [ -74.541267395019474, -7.32528018951416 ], [ -74.540908813476506, -7.32443904876709 ], [ -74.540542602539062, -7.324090003967285 ], [ -74.538436889648381, -7.323429107666016 ], [ -74.535598754882812, -7.321539878845158 ], [ -74.532562255859375, -7.318880081176758 ], [ -74.527549743652287, -7.313849925994873 ], [ -74.525810241699219, -7.311700820922795 ], [ -74.524147033691406, -7.308011054992676 ], [ -74.523239135742188, -7.306509017944336 ], [ -74.519279479980469, -7.30196905136097 ], [ -74.516586303710881, -7.300590038299561 ], [ -74.513442993164006, -7.299530029296818 ], [ -74.511726379394474, -7.299200057983342 ], [ -74.509902954101506, -7.299388885498047 ], [ -74.507575988769531, -7.300268173217773 ], [ -74.506309509277344, -7.300401210784912 ], [ -74.505355834960938, -7.300748825073242 ], [ -74.503898620605412, -7.300640106201172 ], [ -74.501556396484375, -7.299190044403076 ], [ -74.499832153320312, -7.296350955963078 ], [ -74.497001647949219, -7.293210029602051 ], [ -74.496429443359375, -7.292930126190129 ], [ -74.488227844238281, -7.296800136566105 ], [ -74.484786987304688, -7.297749996185246 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/poland.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/poland.geojson new file mode 100644 index 000000000000..edbee262a540 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/poland.geojson @@ -0,0 +1,22 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "PL-SL", "NAME_1": "Silesian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.448870070097655, 49.60035777449167 ], [ 19.443391561000055, 49.601779684000022 ], [ 19.43760380100008, 49.600126038000056 ], [ 19.433779745000066, 49.59516510100012 ], [ 19.347066691000094, 49.532998353000025 ], [ 19.339521931000036, 49.528760885000068 ], [ 19.325362590000083, 49.525040182000069 ], [ 19.315027303000079, 49.523954977000059 ], [ 19.284228150000104, 49.524161683000031 ], [ 19.265004517000079, 49.521474508 ], [ 19.248674764000071, 49.516255189000091 ], [ 19.2341020100001, 49.507211813000126 ], [ 19.220459432000098, 49.493000794000054 ], [ 19.204439738000133, 49.460547995000056 ], [ 19.206196737000113, 49.45941111300003 ], [ 19.209400676000087, 49.456413880000028 ], [ 19.211364380000106, 49.451659648000131 ], [ 19.208987264000086, 49.444993388000015 ], [ 19.204543091000062, 49.442822978000024 ], [ 19.192244100000039, 49.44261627200008 ], [ 19.189350220000051, 49.442202861000069 ], [ 19.182322225000121, 49.422720846000075 ], [ 19.179738403000044, 49.410266825000079 ], [ 19.172503703000075, 49.402256978000096 ], [ 19.141704549000082, 49.39419545600002 ], [ 19.116589803000068, 49.39093984000003 ], [ 19.106254517000053, 49.391404928000057 ], [ 19.096642700000132, 49.394608867000031 ], [ 19.076798951000058, 49.404065654000092 ], [ 19.067600545000062, 49.406132711000069 ], [ 19.045793091000121, 49.402773743000054 ], [ 19.007139120000119, 49.388097637000058 ], [ 18.981817668000133, 49.38680572600002 ], [ 18.962283977000141, 49.38918284100005 ], [ 18.956702922000119, 49.400448303000118 ], [ 18.960837036000044, 49.433314515000049 ], [ 18.958253214000138, 49.448145650000086 ], [ 18.953395630000045, 49.461684876000064 ], [ 18.952362101000062, 49.47594757100002 ], [ 18.96114709500003, 49.492794088000025 ], [ 18.932208293000059, 49.504317932000035 ], [ 18.833196249000082, 49.510260722000041 ], [ 18.837433716000106, 49.52695221000009 ], [ 18.834539836000118, 49.54762278200009 ], [ 18.820173788000119, 49.590255839000079 ], [ 18.815729614000105, 49.599299215000045 ], [ 18.803947387000107, 49.616765849000089 ], [ 18.799296508000054, 49.62637766600001 ], [ 18.792578573000128, 49.660794169000056 ], [ 18.7884444580001, 49.668597311000084 ], [ 18.773458293000118, 49.675832011000054 ], [ 18.757852010000107, 49.674075013000063 ], [ 18.742245727000068, 49.669682516000066 ], [ 18.727672974000086, 49.668907369000053 ], [ 18.715063924000077, 49.67381663 ], [ 18.695426880000127, 49.688854472000074 ], [ 18.68240441800009, 49.695779114000047 ], [ 18.668141724000122, 49.69856964100002 ], [ 18.637342570000044, 49.700326640000085 ], [ 18.624010050000038, 49.706372783000049 ], [ 18.617705526000123, 49.713865866000063 ], [ 18.607680298000105, 49.742959697000074 ], [ 18.584115845000099, 49.774378967000118 ], [ 18.566752564000069, 49.804764710000072 ], [ 18.566339152000069, 49.83158477800005 ], [ 18.593831014000045, 49.852203675000069 ], [ 18.567269328000123, 49.861453756000074 ], [ 18.562928507000038, 49.873701071000099 ], [ 18.5654089760001, 49.889048971000065 ], [ 18.559207804000039, 49.90718739800009 ], [ 18.544428345000114, 49.912975159000084 ], [ 18.505050903000097, 49.896697083000063 ], [ 18.481796509000077, 49.896645407000037 ], [ 18.407485800000103, 49.923155416000029 ], [ 18.368831827000093, 49.932043763000067 ], [ 18.328524211000058, 49.928839824000093 ], [ 18.330694621000134, 49.928839824000093 ], [ 18.332451619000011, 49.928271383000023 ], [ 18.333795206000076, 49.927134501000026 ], [ 18.334932088000073, 49.925429179000062 ], [ 18.306923462000071, 49.909667868000085 ], [ 18.292454061000058, 49.907807516000062 ], [ 18.272610311000051, 49.918297831000118 ], [ 18.267029256000029, 49.925067444000049 ], [ 18.260104614000056, 49.940570374000075 ], [ 18.255867147000089, 49.946048076000054 ], [ 18.243981567000077, 49.9517324830001 ], [ 18.220520467000085, 49.954884746000047 ], [ 18.208738241000106, 49.958295390000089 ], [ 18.17721561700003, 49.975813700000046 ], [ 18.162022746000105, 49.981239726000027 ], [ 18.098150675000056, 49.989042867000038 ], [ 18.085128214000122, 49.998758036000069 ], [ 18.091639445000084, 50.017206523000098 ], [ 18.0332450760001, 50.041804505000087 ], [ 18.019073899000148, 50.04408711000012 ], [ 18.019086541210868, 50.044232490237221 ], [ 18.02053348203458, 50.060872300716085 ], [ 18.079961378914504, 50.135699775524188 ], [ 18.206051873195349, 50.152597968421503 ], [ 18.266099887699625, 50.18179515202462 ], [ 18.362838168746464, 50.210914822161271 ], [ 18.373586866740482, 50.239982815454539 ], [ 18.374413689939843, 50.291194159882536 ], [ 18.357463820199143, 50.419455064499573 ], [ 18.366558871794496, 50.439918931713294 ], [ 18.388056267782531, 50.442606105986954 ], [ 18.410070427708035, 50.449220688883656 ], [ 18.412034133368536, 50.467178249876326 ], [ 18.400872023325178, 50.48477407476372 ], [ 18.414101190017902, 50.507382513891855 ], [ 18.44335005136378, 50.511826687351686 ], [ 18.588664177609701, 50.510974025730661 ], [ 18.577398715678157, 50.546940822760746 ], [ 18.545255975382929, 50.56877411643228 ], [ 18.513009881400876, 50.584664618976944 ], [ 18.486448195228036, 50.607583116467652 ], [ 18.46701785678863, 50.645616970147046 ], [ 18.490892367788547, 50.686389674943541 ], [ 18.50866906072855, 50.749099026199076 ], [ 18.535437453375778, 50.78480744081071 ], [ 18.613572219182572, 50.816743476430247 ], [ 18.620806918804249, 50.852167670201766 ], [ 18.60737104743589, 50.870693671076026 ], [ 18.601169874789889, 50.893431301413386 ], [ 18.608611280885896, 50.908882555285686 ], [ 18.621116978066084, 50.918339342086938 ], [ 18.655636834272457, 50.995233873544407 ], [ 18.705762973982075, 51.01068512651733 ], [ 18.847046339716769, 51.013656520731843 ], [ 18.879705844848843, 51.023320014007425 ], [ 18.91143517399405, 51.037117621481002 ], [ 18.946575147824774, 51.032750963286276 ], [ 18.977270949094986, 51.013088079950876 ], [ 19.108012323310049, 50.968517157740621 ], [ 19.172814568737351, 50.959990546026859 ], [ 19.252602980043491, 50.960300605288694 ], [ 19.287019484361679, 50.979240017312918 ], [ 19.35430219938695, 50.971359360745851 ], [ 19.414556918566916, 50.936374417445393 ], [ 19.507884555827559, 50.842323309772894 ], [ 19.541680941622133, 50.835863756507138 ], [ 19.641829868253808, 50.839326077136718 ], [ 19.75055708164399, 50.8042894560935 ], [ 19.836133254446111, 50.793747464573812 ], [ 19.848638949827659, 50.789406643002167 ], [ 19.852359652875691, 50.778244533858128 ], [ 19.852566359349964, 50.76594554315227 ], [ 19.847812126628298, 50.758039049062859 ], [ 19.779289178153022, 50.750907701329311 ], [ 19.741668734724328, 50.705690823072985 ], [ 19.769160596884035, 50.684916897496805 ], [ 19.844504835629664, 50.671170965967292 ], [ 19.879024691836037, 50.654479479544307 ], [ 19.906929966045084, 50.614998684141938 ], [ 19.954368930581666, 50.578101712024363 ], [ 19.914268019353585, 50.574329332132947 ], [ 19.845331658828968, 50.537329007227868 ], [ 19.825281202765268, 50.509578761750447 ], [ 19.860317823808487, 50.497951565512324 ], [ 19.928324009245614, 50.491440335403126 ], [ 19.956332635342847, 50.484464016401205 ], [ 19.963050571026997, 50.46278575325988 ], [ 19.965634393412529, 50.44487986911065 ], [ 19.839233839869792, 50.394288642306947 ], [ 19.80760786261277, 50.391058864774777 ], [ 19.751487257630799, 50.393978583045168 ], [ 19.696710238886396, 50.388500881710286 ], [ 19.60813683434742, 50.3444725609599 ], [ 19.582712029736342, 50.340777696333589 ], [ 19.557080518650992, 50.340700181967804 ], [ 19.501683384080877, 50.361138210759805 ], [ 19.474811638646202, 50.335480862152053 ], [ 19.447009719023299, 50.299720770696979 ], [ 19.403601514997888, 50.260033271518239 ], [ 19.336835564809462, 50.26618276642148 ], [ 19.305312941239208, 50.250473131030162 ], [ 19.358436313585003, 50.216495877182979 ], [ 19.405048454922223, 50.175025540396348 ], [ 19.167853631339995, 50.00392487253481 ], [ 19.145942824201938, 49.98307343169347 ], [ 19.123721957802104, 49.953669542515343 ], [ 19.112353143083055, 49.920209051706365 ], [ 19.132506951934261, 49.903207506021545 ], [ 19.159068638107158, 49.901450506835374 ], [ 19.180462681307688, 49.883983873157206 ], [ 19.182633090744503, 49.850600898512653 ], [ 19.212502068815411, 49.815951850197678 ], [ 19.263455030825014, 49.803058580289246 ], [ 19.283712191564348, 49.779003201236719 ], [ 19.298905063917573, 49.748281562444106 ], [ 19.33135786257526, 49.728618679108706 ], [ 19.368771600429, 49.717637438017334 ], [ 19.436364372917467, 49.709885973558812 ], [ 19.43295372913127, 49.683582668905046 ], [ 19.415900505703746, 49.661206772874266 ], [ 19.407425570833425, 49.640329495409844 ], [ 19.420137973588567, 49.622294420051446 ], [ 19.443702427125288, 49.611959133207392 ], [ 19.448870070097655, 49.60035777449167 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PL-MA", "NAME_1": "Lesser Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.706321249000098, 49.387529196000102 ], [ 19.684513794000082, 49.389079489000025 ], [ 19.627043767000117, 49.40186758800003 ], [ 19.627097479000042, 49.402165448000076 ], [ 19.629220012000047, 49.41393585200008 ], [ 19.628599894000075, 49.429593811000032 ], [ 19.630150187000112, 49.435019836000023 ], [ 19.63480106600008, 49.441324362000032 ], [ 19.594803507000108, 49.441582743000097 ], [ 19.573926229000023, 49.445251770000098 ], [ 19.556769654000078, 49.453881735000024 ], [ 19.551602010000067, 49.461013082000065 ], [ 19.535478963000088, 49.492845765000126 ], [ 19.517288859000132, 49.543281963000126 ], [ 19.505196574000138, 49.563384095000075 ], [ 19.481735473000072, 49.573512675000032 ], [ 19.474190714000116, 49.578731995000069 ], [ 19.457344197000054, 49.598058981000108 ], [ 19.448870070097655, 49.60035777449167 ], [ 19.443702427125288, 49.611959133207392 ], [ 19.420137973588567, 49.622294420051446 ], [ 19.407425570833425, 49.640329495409844 ], [ 19.415900505703746, 49.661206772874266 ], [ 19.43295372913127, 49.683582668905046 ], [ 19.436364372917467, 49.709885973558812 ], [ 19.368771600429, 49.717637438017334 ], [ 19.33135786257526, 49.728618679108706 ], [ 19.298905063917573, 49.748281562444106 ], [ 19.283712191564348, 49.779003201236719 ], [ 19.263455030825014, 49.803058580289246 ], [ 19.212502068815411, 49.815951850197678 ], [ 19.182633090744503, 49.850600898512653 ], [ 19.180462681307688, 49.883983873157206 ], [ 19.159068638107158, 49.901450506835374 ], [ 19.132506951934261, 49.903207506021545 ], [ 19.112353143083055, 49.920209051706365 ], [ 19.123721957802104, 49.953669542515343 ], [ 19.145942824201938, 49.98307343169347 ], [ 19.167853631339995, 50.00392487253481 ], [ 19.405048454922223, 50.175025540396348 ], [ 19.358436313585003, 50.216495877182979 ], [ 19.305312941239208, 50.250473131030162 ], [ 19.336835564809462, 50.26618276642148 ], [ 19.403601514997888, 50.260033271518239 ], [ 19.447009719023299, 50.299720770696979 ], [ 19.474811638646202, 50.335480862152053 ], [ 19.501683384080877, 50.361138210759805 ], [ 19.557080518650992, 50.340700181967804 ], [ 19.582712029736342, 50.340777696333589 ], [ 19.60813683434742, 50.3444725609599 ], [ 19.696710238886396, 50.388500881710286 ], [ 19.751487257630799, 50.393978583045168 ], [ 19.80760786261277, 50.391058864774777 ], [ 19.839233839869792, 50.394288642306947 ], [ 19.965634393412529, 50.44487986911065 ], [ 19.963050571026997, 50.46278575325988 ], [ 19.956332635342847, 50.484464016401205 ], [ 20.050693801377804, 50.48436066271438 ], [ 20.08996788940658, 50.470924791346022 ], [ 20.123660923312968, 50.448342189740231 ], [ 20.207583448817104, 50.431443996842972 ], [ 20.284581333062079, 50.398629462080009 ], [ 20.33026329931181, 50.340855210699374 ], [ 20.347109816265004, 50.294863186087127 ], [ 20.364369745267538, 50.271557114968857 ], [ 20.409741652255434, 50.230629381440792 ], [ 20.428655225857995, 50.204997870355385 ], [ 20.502139112629948, 50.176705024317414 ], [ 20.633500603569985, 50.174405422771997 ], [ 20.663472935327661, 50.194920965929782 ], [ 20.667400343950703, 50.20551463519223 ], [ 20.679699333757242, 50.217865301842153 ], [ 20.71204878142612, 50.227838854379627 ], [ 20.726001417631323, 50.236546332347359 ], [ 20.728895298379314, 50.241817328107174 ], [ 20.730135531829319, 50.252436834891967 ], [ 20.733546177414155, 50.257346096345259 ], [ 20.737680290712831, 50.259206448318935 ], [ 20.746568637632492, 50.259516507580713 ], [ 20.749979282318009, 50.260756741030775 ], [ 20.771063267156023, 50.274399318873463 ], [ 20.77736779079089, 50.291555895088436 ], [ 20.783879021799407, 50.297757065935798 ], [ 20.822222934740637, 50.274399318873463 ], [ 20.838656039644491, 50.279308580326699 ], [ 20.852195264699674, 50.288455308765435 ], [ 20.865424432291718, 50.293933010100318 ], [ 20.880927362108082, 50.287421779991121 ], [ 20.89456993995077, 50.293183702166118 ], [ 20.921855095636147, 50.294889024508848 ], [ 20.931156853705829, 50.298299669194364 ], [ 20.940975375712981, 50.306645412855516 ], [ 20.949346957795854, 50.311347967834422 ], [ 20.959682244639851, 50.313828437432392 ], [ 21.03388960092434, 50.315378730144232 ], [ 21.049082472378188, 50.318014228473828 ], [ 21.060244582421547, 50.324060369690301 ], [ 21.069546339591909, 50.330881659960596 ], [ 21.07895145044904, 50.335842597357953 ], [ 21.12018924323894, 50.348580838534872 ], [ 21.130111118033653, 50.350131131246656 ], [ 21.144890578337481, 50.346332912933576 ], [ 21.15377892435788, 50.33889150683757 ], [ 21.163597446365031, 50.333413805502687 ], [ 21.181270785618267, 50.335842597357953 ], [ 21.181270785618267, 50.337496242857299 ], [ 21.198737420195755, 50.353231717569656 ], [ 21.205868767929303, 50.356616522934132 ], [ 21.211243117375943, 50.356874905352583 ], [ 21.21486046673715, 50.358812770792724 ], [ 21.216100701985795, 50.367210191297261 ], [ 21.22137169774561, 50.372481187956453 ], [ 21.232947218938989, 50.376253566948549 ], [ 21.244832797595507, 50.383100693841925 ], [ 21.250207147042204, 50.397285874943123 ], [ 21.259508905111886, 50.392273260702382 ], [ 21.266330193583542, 50.392014879183307 ], [ 21.27749230272758, 50.397285874943123 ], [ 21.278732537976225, 50.400334785322059 ], [ 21.27749230272758, 50.405192369032591 ], [ 21.276975538790055, 50.409636542492422 ], [ 21.280902948312416, 50.411574408831882 ], [ 21.295268995667584, 50.410799262475962 ], [ 21.284003533736097, 50.32672170734088 ], [ 21.253514438940215, 50.279463609058269 ], [ 21.21620405387398, 50.238199977846648 ], [ 21.210106234914804, 50.182079372864735 ], [ 21.236977980349479, 50.031158352276123 ], [ 21.228813103841674, 49.986871650006606 ], [ 21.227986280642313, 49.948243517124581 ], [ 21.236977980349479, 49.936693834352923 ], [ 21.244936151282332, 49.923051256510234 ], [ 21.266226840796037, 49.906643989128781 ], [ 21.2948555836183, 49.905145372361005 ], [ 21.332165968684478, 49.892148748765692 ], [ 21.345498488164708, 49.863545844365206 ], [ 21.246279738419162, 49.813858954227328 ], [ 21.229019810316004, 49.789105943184722 ], [ 21.25857872912502, 49.771535955819672 ], [ 21.366169060953382, 49.741718655491525 ], [ 21.426320428245162, 49.699679877024664 ], [ 21.46094363813836, 49.629942531722463 ], [ 21.464354281924557, 49.594440822685783 ], [ 21.458773227802226, 49.55971426000508 ], [ 21.47717003836658, 49.486850490857421 ], [ 21.513033481709783, 49.420394599031511 ], [ 21.514273716059108, 49.417552395126904 ], [ 21.514421954000113, 49.417212682000056 ], [ 21.496186157000125, 49.412385560000061 ], [ 21.481510051000043, 49.415227764000022 ], [ 21.44440637200006, 49.409905091000084 ], [ 21.427869913000052, 49.40980173800007 ], [ 21.330408163000072, 49.427785136000054 ], [ 21.274390910000051, 49.447267151000048 ], [ 21.260541626000105, 49.449437561000124 ], [ 21.242454875000078, 49.441272685000015 ], [ 21.211242310000102, 49.411093649000108 ], [ 21.194085734000055, 49.400603333000063 ], [ 21.172588338000082, 49.398277893000042 ], [ 21.157292114000143, 49.405150859000102 ], [ 21.143029419000072, 49.415537822000019 ], [ 21.124942667000141, 49.423651022000016 ], [ 21.109439738000049, 49.42458119800007 ], [ 21.068822062000095, 49.41920684800003 ], [ 21.053525838000041, 49.41445261600002 ], [ 21.033268677000137, 49.399673157 ], [ 21.045464315000061, 49.390578105000131 ], [ 21.068512003000109, 49.381431376000037 ], [ 21.080707641000117, 49.366341858000041 ], [ 21.072542766000112, 49.357195130000051 ], [ 21.054042602000095, 49.3547663370001 ], [ 21.032958618000066, 49.354611308000059 ], [ 21.017248983000087, 49.352440898000069 ], [ 20.996681763000112, 49.339366761000022 ], [ 20.964022258000114, 49.30810251900003 ], [ 20.94242150900007, 49.29585520500008 ], [ 20.918960408000089, 49.290325826000085 ], [ 20.900563599000094, 49.292599589000119 ], [ 20.884337199000072, 49.30029937800002 ], [ 20.868007446000036, 49.311409811000019 ], [ 20.849300578000054, 49.320504862000078 ], [ 20.833590943000075, 49.322055156000019 ], [ 20.816537719000053, 49.321383362000049 ], [ 20.794110148000073, 49.323657126000043 ], [ 20.778297160000079, 49.331201884 ], [ 20.689517049000131, 49.400499980000021 ], [ 20.673910766000091, 49.402308655000027 ], [ 20.636083618000043, 49.39832957000003 ], [ 20.614482870000046, 49.400448303000118 ], [ 20.60528446400005, 49.400034892000107 ], [ 20.595052531000078, 49.396262512000064 ], [ 20.579136189000053, 49.383395081000074 ], [ 20.567664022000116, 49.376367086000059 ], [ 20.543996215000107, 49.370837708000082 ], [ 20.522085408000066, 49.374351705000024 ], [ 20.437542765000074, 49.402515361000084 ], [ 20.421936483000138, 49.400189922000052 ], [ 20.422143188000092, 49.382981670000063 ], [ 20.37046675600007, 49.381689758000036 ], [ 20.32953902100013, 49.39176666300007 ], [ 20.317653443000097, 49.391611633000096 ], [ 20.307421509000022, 49.386599020000048 ], [ 20.303700806000109, 49.380397848000072 ], [ 20.301633748000143, 49.371199443000066 ], [ 20.296466105000064, 49.356936747000091 ], [ 20.28933475700012, 49.343087464000021 ], [ 20.28437382000007, 49.338643291000025 ], [ 20.20716923000009, 49.334199117000097 ], [ 20.191976359000051, 49.328618063000093 ], [ 20.170168904000036, 49.311616516000086 ], [ 20.160350382000075, 49.305622050000053 ], [ 20.138336222000078, 49.30732737300012 ], [ 20.135855754000119, 49.308877665000026 ], [ 20.130171346000054, 49.30391672800009 ], [ 20.111051066000073, 49.275856425000072 ], [ 20.105366659000111, 49.263970846000049 ], [ 20.098442017000139, 49.252860413000022 ], [ 20.086039673000073, 49.243041891000061 ], [ 20.080355265000037, 49.208108623000058 ], [ 20.070019979000108, 49.183097229000069 ], [ 20.050486287000098, 49.173227031000081 ], [ 20.017310018000103, 49.183872376000082 ], [ 19.965736939000095, 49.215653382000099 ], [ 19.937935018000132, 49.225110168000086 ], [ 19.905895630000117, 49.222784729000054 ], [ 19.887808878000101, 49.213999736000048 ], [ 19.86829182280934, 49.200788190822323 ], [ 19.854219197000077, 49.191262106000082 ], [ 19.83199833200004, 49.185887756000014 ], [ 19.785902954000022, 49.188161520000037 ], [ 19.760684855000079, 49.194207663000086 ], [ 19.747765747000074, 49.205886536000051 ], [ 19.747786945000144, 49.205955836 ], [ 19.751796508000069, 49.219064026000027 ], [ 19.78962365700005, 49.259474996 ], [ 19.794067830000131, 49.261852112000057 ], [ 19.800475708000079, 49.26304067000008 ], [ 19.806263469000072, 49.265262757000087 ], [ 19.808640585000092, 49.270895488000022 ], [ 19.806780233000097, 49.275236308 ], [ 19.806415196000103, 49.275487567000098 ], [ 19.798822062000028, 49.280714010000068 ], [ 19.798563188000116, 49.281080748000036 ], [ 19.796961711000023, 49.283349508000086 ], [ 19.796859623000017, 49.283399017000093 ], [ 19.783215779000102, 49.290015768 ], [ 19.779701783000036, 49.293374735000029 ], [ 19.77971320600011, 49.293452792 ], [ 19.780321899000114, 49.297612203000071 ], [ 19.787970011000084, 49.305105286000114 ], [ 19.78952030500011, 49.309187725000115 ], [ 19.783629191000102, 49.357556865000063 ], [ 19.778564901000038, 49.374196676000068 ], [ 19.769263143000103, 49.393110250000021 ], [ 19.769056060000111, 49.393212628000057 ], [ 19.760064738000096, 49.397657776000059 ], [ 19.726578409000098, 49.388872783000082 ], [ 19.706321249000098, 49.387529196000102 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PL-PK", "NAME_1": "Subcarpathian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.666304972000148, 49.401791890000069 ], [ 21.658760213000079, 49.402463684000068 ], [ 21.648631632000047, 49.407062887 ], [ 21.63002811700008, 49.418896790000034 ], [ 21.619899536000048, 49.42334096300003 ], [ 21.601192668000067, 49.42649322600009 ], [ 21.529569133000081, 49.421222229000065 ], [ 21.514421954000113, 49.417212682000056 ], [ 21.514273716059108, 49.417552395126904 ], [ 21.513033481709783, 49.420394599031511 ], [ 21.47717003836658, 49.486850490857421 ], [ 21.458773227802226, 49.55971426000508 ], [ 21.464354281924557, 49.594440822685783 ], [ 21.46094363813836, 49.629942531722463 ], [ 21.426320428245162, 49.699679877024664 ], [ 21.366169060953382, 49.741718655491525 ], [ 21.25857872912502, 49.771535955819672 ], [ 21.229019810316004, 49.789105943184722 ], [ 21.246279738419162, 49.813858954227328 ], [ 21.345498488164708, 49.863545844365206 ], [ 21.332165968684478, 49.892148748765692 ], [ 21.2948555836183, 49.905145372361005 ], [ 21.266226840796037, 49.906643989128781 ], [ 21.244936151282332, 49.923051256510234 ], [ 21.236977980349479, 49.936693834352923 ], [ 21.227986280642313, 49.948243517124581 ], [ 21.228813103841674, 49.986871650006606 ], [ 21.236977980349479, 50.031158352276123 ], [ 21.210106234914804, 50.182079372864735 ], [ 21.21620405387398, 50.238199977846648 ], [ 21.253514438940215, 50.279463609058269 ], [ 21.284003533736097, 50.32672170734088 ], [ 21.295268995667584, 50.410799262475962 ], [ 21.2986796403531, 50.411574408831882 ], [ 21.360071241994206, 50.445706692309955 ], [ 21.378881462809261, 50.440358181285035 ], [ 21.404306268319601, 50.44389801717972 ], [ 21.429834425718184, 50.453458156768477 ], [ 21.448851353007512, 50.466170559523675 ], [ 21.439032830100984, 50.48208690049006 ], [ 21.435208775164824, 50.48668610358078 ], [ 21.530810173750524, 50.513971259266157 ], [ 21.59488894966529, 50.524539090106884 ], [ 21.613285760229644, 50.534486803323261 ], [ 21.643981560600537, 50.557999579117279 ], [ 21.65659060966891, 50.573554185777027 ], [ 21.66175825443986, 50.592829495484807 ], [ 21.668786247587263, 50.608487454032741 ], [ 21.71632856581067, 50.64435089827532 ], [ 21.744957310431516, 50.674684964339633 ], [ 21.762113884847906, 50.682591458429044 ], [ 21.788365512658288, 50.685304470225105 ], [ 21.806245558385797, 50.691376450762561 ], [ 21.821541781727831, 50.706104234223005 ], [ 21.833324009395483, 50.724035955894635 ], [ 21.840455357129031, 50.739900620916899 ], [ 21.848620232737517, 50.779226385789059 ], [ 21.847483351175697, 50.816226712492778 ], [ 21.844279412964511, 50.829765937547961 ], [ 21.976364373417084, 50.772818508467367 ], [ 22.051295200113373, 50.770441393455542 ], [ 22.117441033576824, 50.799845283532989 ], [ 22.156818475292368, 50.800930488251424 ], [ 22.195059035446093, 50.791680406125806 ], [ 22.230509066740012, 50.777727769920602 ], [ 22.262445103258869, 50.759899400137158 ], [ 22.248492466154346, 50.734526272369521 ], [ 22.203017206378945, 50.680059312886954 ], [ 22.221517367932165, 50.659647122516674 ], [ 22.454681431003223, 50.621975003143859 ], [ 22.612087844178632, 50.568102321964545 ], [ 22.621286247662169, 50.558929755104089 ], [ 22.620252719787175, 50.545338854104784 ], [ 22.622733189385144, 50.531489569787766 ], [ 22.646400994810051, 50.503351752481365 ], [ 22.657873163215868, 50.478986314167059 ], [ 22.630484652944347, 50.468857733797336 ], [ 22.599478794210995, 50.471312364074322 ], [ 22.568059523428246, 50.464646105233555 ], [ 22.543358189229025, 50.44369131070539 ], [ 22.526615025063336, 50.42291738512921 ], [ 22.533849724685012, 50.398061022198362 ], [ 22.559791294132879, 50.372532863900517 ], [ 22.594931267963602, 50.362068385847294 ], [ 22.734250928937229, 50.379715888477449 ], [ 22.761122674371904, 50.367933660809797 ], [ 22.74541303898053, 50.362094225168335 ], [ 22.711409945812306, 50.356668198878253 ], [ 22.721228468718834, 50.34199209226125 ], [ 22.858067660993754, 50.317135729330403 ], [ 23.082756789194434, 50.312459010974578 ], [ 23.158411086302578, 50.32269094503107 ], [ 23.223109978942375, 50.356203110884849 ], [ 23.30548221173467, 50.415837714239103 ], [ 23.331837192332557, 50.423175768446924 ], [ 23.388887974200657, 50.426689765020626 ], [ 23.462578565648244, 50.421470445204875 ], [ 23.525520460900509, 50.395683906287218 ], [ 23.557973259558253, 50.36467804575517 ], [ 23.658122186189928, 50.327212632856686 ], [ 23.658677406000038, 50.32700492700009 ], [ 23.658018026000093, 50.325611471000073 ], [ 23.644168741000044, 50.312692363000068 ], [ 23.565310506000117, 50.257811992000072 ], [ 23.536371704000146, 50.2428258260001 ], [ 23.536268351000018, 50.2428258260001 ], [ 23.536164999000107, 50.242774150000074 ], [ 23.536061646000064, 50.242774150000074 ], [ 23.481594686000079, 50.215954082000096 ], [ 23.436429484000087, 50.193474834000071 ], [ 23.207916301000097, 50.033949687000032 ], [ 23.177840617000129, 50.003977356000107 ], [ 23.141253702000085, 49.985477194000069 ], [ 23.101462850000075, 49.957106832000065 ], [ 22.99304569500012, 49.854425761000059 ], [ 22.951187785000059, 49.826623841000114 ], [ 22.945916788000119, 49.818355611000058 ], [ 22.937751913000113, 49.798201803 ], [ 22.933101034000032, 49.791070456000043 ], [ 22.92441939200009, 49.785437725000023 ], [ 22.906746053000091, 49.781200257000066 ], [ 22.897961060000085, 49.777427877000051 ], [ 22.888245890000064, 49.769728088000065 ], [ 22.826647583000124, 49.697381083 ], [ 22.809801066000119, 49.686322327000099 ], [ 22.798845662000076, 49.683273417000052 ], [ 22.777348266000018, 49.680482890000107 ], [ 22.766186157000078, 49.674230042000019 ], [ 22.758951456000119, 49.665600078000054 ], [ 22.741691528000047, 49.633664042000092 ], [ 22.665830526000036, 49.567363180000072 ], [ 22.640922485000146, 49.528760885000068 ], [ 22.660146118000085, 49.493000794000054 ], [ 22.666864054000087, 49.478376364 ], [ 22.673065226000091, 49.435846660000024 ], [ 22.67678592900009, 49.424477845000055 ], [ 22.679576456000063, 49.41894846700005 ], [ 22.692598917000083, 49.405512594000086 ], [ 22.71419966600007, 49.390629781000044 ], [ 22.719780721000092, 49.382981670000063 ], [ 22.724224894000088, 49.367065329000056 ], [ 22.737764120000065, 49.275391338000034 ], [ 22.733940063000119, 49.26087026000009 ], [ 22.717093547000047, 49.230432841000024 ], [ 22.702934204000087, 49.195034485000107 ], [ 22.687121216000094, 49.173382060000037 ], [ 22.681746867000129, 49.161238098000027 ], [ 22.687844686000091, 49.155915426000078 ], [ 22.692495565000058, 49.157930807000028 ], [ 22.705724731000146, 49.168834534000084 ], [ 22.721434367000114, 49.161599833000125 ], [ 22.720194132000103, 49.161186422000114 ], [ 22.716370077000136, 49.160566305000131 ], [ 22.748822876000077, 49.145580140000064 ], [ 22.778071737000118, 49.120310364000019 ], [ 22.796468546000114, 49.111370342000058 ], [ 22.84132369000011, 49.094885559 ], [ 22.853415975000075, 49.084756979000034 ], [ 22.853519328000118, 49.076282044000052 ], [ 22.844424276000041, 49.056696676000016 ], [ 22.843184041000114, 49.043105774000125 ], [ 22.847524862000085, 49.033700664000079 ], [ 22.86375126100009, 49.015355530000093 ], [ 22.865014019981004, 49.013237354320438 ], [ 22.866955200000064, 49.009981181000015 ], [ 22.85527632600008, 48.994013164000094 ], [ 22.835019165000091, 48.999749248000043 ], [ 22.812901652000079, 49.01287506200002 ], [ 22.79502160600012, 49.019024556 ], [ 22.783962850000108, 49.021349996000097 ], [ 22.765462687000081, 49.038403219000045 ], [ 22.755334106000134, 49.044707743000046 ], [ 22.744482055000077, 49.045534567000075 ], [ 22.721951132000072, 49.041038717000063 ], [ 22.685777629000142, 49.042795716000043 ], [ 22.664383586000042, 49.041452128000074 ], [ 22.642886190000098, 49.043157451000027 ], [ 22.618288208000109, 49.054216207000039 ], [ 22.580771118000115, 49.081449687000045 ], [ 22.560720663000069, 49.085532125000057 ], [ 22.539636678000136, 49.072199606000126 ], [ 22.505013469000119, 49.083413392000082 ], [ 22.426775350000071, 49.085635478000071 ], [ 22.390085083000088, 49.093025208000071 ], [ 22.339442179000031, 49.126459860000082 ], [ 22.318151489000059, 49.13198923800006 ], [ 22.262857707000137, 49.130593974000092 ], [ 22.215935506000079, 49.139999085000042 ], [ 22.208494100000053, 49.144184876000097 ], [ 22.206220337000047, 49.150489400000097 ], [ 22.209010864000106, 49.156948954000043 ], [ 22.208907511000064, 49.163976949000059 ], [ 22.197952108000095, 49.171986796000041 ], [ 22.189683878000039, 49.173020325000024 ], [ 22.165706014000136, 49.171108297 ], [ 22.155680786000119, 49.171521708000014 ], [ 22.144105265000064, 49.174880677000019 ], [ 22.111549113000109, 49.188626608000064 ], [ 22.040752401000077, 49.197463278000058 ], [ 22.012433716000089, 49.211054180000062 ], [ 22.005819133000102, 49.242886861 ], [ 21.993210083000065, 49.278181865000093 ], [ 21.964477986000048, 49.308567607000057 ], [ 21.928407836000048, 49.330788472000094 ], [ 21.87456099500011, 49.348358460000057 ], [ 21.837870727000052, 49.370424297000071 ], [ 21.819577270000082, 49.377245586000114 ], [ 21.799423461000117, 49.374816793000051 ], [ 21.78216353300013, 49.364481506000047 ], [ 21.768004191000074, 49.353474427000052 ], [ 21.757565552000131, 49.348926901000098 ], [ 21.742165975000148, 49.357091777000036 ], [ 21.708576294000125, 49.390888164000032 ], [ 21.691729777000148, 49.402153626000072 ], [ 21.68180790200006, 49.404065654000092 ], [ 21.666304972000148, 49.401791890000069 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PL-DS", "NAME_1": "Lower Silesian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.107945597000082, 50.981023662000055 ], [ 15.093889607000079, 50.985416158000064 ], [ 15.082107381000071, 50.992754212000065 ], [ 15.073632446000062, 51.002624410000053 ], [ 15.022989543000108, 51.00965240500004 ], [ 15.003972616000055, 51.020685323000052 ], [ 15.001182088000093, 51.012442932000013 ], [ 14.996531209000125, 51.007843730000062 ], [ 14.982061808000083, 51.001177470000059 ], [ 14.976377401000036, 51.000402324000035 ], [ 14.970692993000085, 50.998697002000071 ], [ 14.965628703000021, 50.996061503000064 ], [ 14.961081176000079, 50.992650859000022 ], [ 14.960977824000054, 50.992650859000022 ], [ 14.965215291000106, 50.981333720000052 ], [ 14.981441691000015, 50.973220520000055 ], [ 14.996634562000054, 50.95921620700004 ], [ 14.997771444000051, 50.930174052000055 ], [ 14.994670857000102, 50.925109762000076 ], [ 14.984852335000141, 50.918081767000061 ], [ 14.982061808000083, 50.914671123000048 ], [ 14.981131632000142, 50.909090068000026 ], [ 14.981751749000097, 50.90526601200007 ], [ 14.982888631, 50.902423808000023 ], [ 14.984128865000059, 50.867697246000077 ], [ 14.982061808000083, 50.859067282000026 ], [ 14.867856893000067, 50.864389954000089 ], [ 14.831683390000137, 50.857982076000027 ], [ 14.810392700000136, 50.858447164000054 ], [ 14.810496053000065, 50.877050680000124 ], [ 14.824655395000036, 50.891830139000049 ], [ 14.860208781000068, 50.916841533000124 ], [ 14.910644979000097, 50.992650859000022 ], [ 14.955293417000121, 51.064041850000123 ], [ 14.958290649000048, 51.07551401800005 ], [ 14.958497355000077, 51.094737651000074 ], [ 14.960254354000057, 51.104582011000034 ], [ 14.965628703000021, 51.111506653000035 ], [ 14.973380168000119, 51.116131694000089 ], [ 14.979994751000021, 51.122797954000092 ], [ 14.982061808000083, 51.135639547000082 ], [ 14.983198690000108, 51.160909323000041 ], [ 14.991363566000103, 51.18896962500007 ], [ 15.004902792000081, 51.215608826 ], [ 15.022059367000054, 51.236770325000052 ], [ 15.017925252000026, 51.23956085200011 ], [ 15.014307901000052, 51.242661439000059 ], [ 15.019475545000148, 51.271677755000056 ], [ 15.004902792000081, 51.291288961000063 ], [ 14.982268514000054, 51.308006287000111 ], [ 14.963768352000017, 51.328392639000057 ], [ 14.960977824000054, 51.335291443000031 ], [ 14.956637004000072, 51.353223165000102 ], [ 14.956637004000072, 51.354153341000043 ], [ 14.950647846000038, 51.396539377000025 ], [ 14.969453566029244, 51.403503526566453 ], [ 15.129443800690808, 51.455619208559597 ], [ 15.158279249987402, 51.455955105343833 ], [ 15.217087030142295, 51.4240965849894 ], [ 15.246232537801347, 51.422649645065064 ], [ 15.29677208776161, 51.477064927704248 ], [ 15.330051711417354, 51.501921292433678 ], [ 15.403328891714978, 51.517837633400063 ], [ 15.543888787937192, 51.469468491977295 ], [ 15.614685500435485, 51.480423896445643 ], [ 15.725376417687528, 51.571581122470775 ], [ 15.823768345133033, 51.6911862250642 ], [ 15.845265741121068, 51.701056423914793 ], [ 15.880405714951792, 51.708265286014125 ], [ 15.910481397698334, 51.72723053646007 ], [ 15.925157505214656, 51.753120429064495 ], [ 15.944794549229073, 51.769889430752585 ], [ 16.096516553696006, 51.752345282708632 ], [ 16.123181592656351, 51.734516912925187 ], [ 16.126488884554362, 51.699893703931252 ], [ 16.181989372811302, 51.655787868815082 ], [ 16.26115766829173, 51.666769110805774 ], [ 16.322135857883495, 51.699945379875373 ], [ 16.371125116031237, 51.74919302044151 ], [ 16.458458286220889, 51.759631660073012 ], [ 16.499075962285815, 51.752913723489542 ], [ 16.611833937086487, 51.714879868910771 ], [ 16.629507277239043, 51.68966176987476 ], [ 16.632814569137054, 51.657131455951912 ], [ 16.676119418576263, 51.609511624262041 ], [ 16.773064406097433, 51.575896104721437 ], [ 16.827738071155068, 51.538301499714407 ], [ 16.94297651465439, 51.512669990427696 ], [ 17.149578891552608, 51.535381782343336 ], [ 17.187406039656992, 51.588944404260815 ], [ 17.229263950071243, 51.594318752808192 ], [ 17.346776156694261, 51.594008694445677 ], [ 17.457260370169934, 51.575146795887918 ], [ 17.556582471803608, 51.535045885559157 ], [ 17.546660597008952, 51.506262112206684 ], [ 17.532811313591253, 51.481586616429183 ], [ 17.508523389642676, 51.471587226369365 ], [ 17.495190871061823, 51.45027069843394 ], [ 17.500668573296025, 51.406991686517074 ], [ 17.523922966671535, 51.370327257496911 ], [ 17.58304080608832, 51.361697292995643 ], [ 17.644329054042601, 51.369422919032445 ], [ 17.682362908621315, 51.362808336135799 ], [ 17.718433058438904, 51.344669907989839 ], [ 17.690217725867342, 51.302553616056514 ], [ 17.701586540586391, 51.199975898468892 ], [ 17.714609001704048, 51.150159817121846 ], [ 17.681432732634505, 51.137447415265967 ], [ 17.64660281716624, 51.132021388975886 ], [ 17.612289665635558, 51.133545844165326 ], [ 17.579733514190309, 51.126750393216071 ], [ 17.553791944742443, 51.109077053063515 ], [ 17.495604282211843, 51.02479279235348 ], [ 17.485062289792836, 51.000349840572653 ], [ 17.478654413370464, 50.974382432703067 ], [ 17.462531365929806, 50.94402252911641 ], [ 17.430802035885222, 50.930638332792796 ], [ 17.383259718561135, 50.891725979070657 ], [ 17.347499627106117, 50.839248561871614 ], [ 17.264197219226276, 50.761062120120698 ], [ 17.192366977953668, 50.674219876346172 ], [ 17.169319289253792, 50.618047594520817 ], [ 17.133352492223707, 50.578721828749394 ], [ 17.072787712882644, 50.572417304215207 ], [ 17.020387810948705, 50.54681163245084 ], [ 16.948247511313582, 50.432167467254772 ], [ 16.944004628610685, 50.42026669725027 ], [ 16.915793904000083, 50.431083069000053 ], [ 16.892952921000102, 50.432943421000047 ], [ 16.865771118000112, 50.422401429000089 ], [ 16.865874471000041, 50.408448792000101 ], [ 16.897913859000141, 50.378218079000092 ], [ 16.909282674000025, 50.359924622 ], [ 16.916724080000051, 50.338633932000036 ], [ 16.926542602000012, 50.319255270000056 ], [ 16.945249471000096, 50.306904602000102 ], [ 16.969640747000113, 50.297757874000027 ], [ 16.987830851000069, 50.284942119000036 ], [ 16.998372843000141, 50.26701039600006 ], [ 16.999819783000135, 50.242722473000057 ], [ 17.012842244000069, 50.231663717000075 ], [ 17.014805949000106, 50.218486227000071 ], [ 17.008398071000073, 50.209959615000074 ], [ 16.996305786000079, 50.212905172000077 ], [ 16.985660441000078, 50.223137106000038 ], [ 16.981009563000015, 50.229183248000098 ], [ 16.975015096000078, 50.23181874700002 ], [ 16.960338989000093, 50.231973775000043 ], [ 16.957548462000148, 50.229234925000085 ], [ 16.957755167000101, 50.21714264000012 ], [ 16.955274699000114, 50.213473613000119 ], [ 16.946283, 50.213060202000108 ], [ 16.927782837000052, 50.217297669000047 ], [ 16.918997843000056, 50.217090963000018 ], [ 16.907008911000105, 50.211768290000052 ], [ 16.8903691000001, 50.196937154000025 ], [ 16.880963990000026, 50.191562806000078 ], [ 16.869762082000079, 50.189728865000021 ], [ 16.857606242000088, 50.187738750000037 ], [ 16.837555786000053, 50.188617249000075 ], [ 16.817712036000046, 50.186756897000052 ], [ 16.795284464000048, 50.17440623 ], [ 16.777301066000064, 50.156939596000072 ], [ 16.766449016000109, 50.143400371000084 ], [ 16.754253377000111, 50.132289938000056 ], [ 16.732032511000057, 50.121954652000042 ], [ 16.701233357000092, 50.094927877000018 ], [ 16.660615682000071, 50.0930158500001 ], [ 16.618654419000052, 50.107020163000087 ], [ 16.584237915000102, 50.127432353000032 ], [ 16.566667928000129, 50.14221181200007 ], [ 16.557262817000094, 50.154717510000054 ], [ 16.545894003000086, 50.188823955000018 ], [ 16.535041952000142, 50.207737529000056 ], [ 16.504759563000107, 50.227994691000063 ], [ 16.492047160000055, 50.242722473000057 ], [ 16.477577759000042, 50.255331523000095 ], [ 16.452152954000042, 50.284993795000062 ], [ 16.437786906000014, 50.297964580000084 ], [ 16.415566040000073, 50.307938131000085 ], [ 16.371020956000081, 50.318376770000029 ], [ 16.353244263000136, 50.333517965000041 ], [ 16.350660441000059, 50.342251282000106 ], [ 16.35148726400007, 50.35134633400007 ], [ 16.350763794000073, 50.360648092000091 ], [ 16.343735799000058, 50.369949850000026 ], [ 16.334227335000094, 50.371861878000047 ], [ 16.28864872200009, 50.371861878000047 ], [ 16.276969849000125, 50.369433085000097 ], [ 16.269838501000095, 50.365454001000032 ], [ 16.262500448000083, 50.364420472000049 ], [ 16.249684692000102, 50.371035055000036 ], [ 16.24493046000012, 50.376822815000097 ], [ 16.232011352000114, 50.402609355000024 ], [ 16.199558553000088, 50.406278381 ], [ 16.190153443000042, 50.424158427000052 ], [ 16.19800826000008, 50.440023092000061 ], [ 16.217955363000101, 50.437129211000084 ], [ 16.216095011000078, 50.44017812200012 ], [ 16.211237427000071, 50.451288554000129 ], [ 16.217335246000118, 50.451650289000028 ], [ 16.226533651000125, 50.455370992000056 ], [ 16.232011352000114, 50.456766256000023 ], [ 16.247410929000097, 50.464982809000063 ], [ 16.264980917000059, 50.471649068000076 ], [ 16.279967082000042, 50.479865621 ], [ 16.287718547000054, 50.492784729 ], [ 16.303428182000118, 50.496040344000093 ], [ 16.335467570000105, 50.490355937000047 ], [ 16.352624145000078, 50.492784729 ], [ 16.362029256000142, 50.501207988000019 ], [ 16.382596476000117, 50.514178772000022 ], [ 16.391174764000141, 50.521826884000106 ], [ 16.388384237000082, 50.521258443000036 ], [ 16.388280884000068, 50.527149557000044 ], [ 16.389624471000047, 50.53484934500004 ], [ 16.391174764000141, 50.539913635000019 ], [ 16.395515584000123, 50.545701396000098 ], [ 16.398306111000096, 50.548491923000043 ], [ 16.398306111000096, 50.551799215000059 ], [ 16.394482056000044, 50.5593439740001 ], [ 16.425901326000087, 50.567560527000026 ], [ 16.416806275000113, 50.586629130000105 ], [ 16.331643514000092, 50.644041647 ], [ 16.300947714000131, 50.65510040300002 ], [ 16.268288208000058, 50.660423076000072 ], [ 16.232011352000114, 50.66088816400007 ], [ 16.219092245000098, 50.65913116500009 ], [ 16.211754191000097, 50.649105937000073 ], [ 16.204519491000042, 50.636341858000023 ], [ 16.192323852000129, 50.62657501300005 ], [ 16.175477335000039, 50.624094544000073 ], [ 16.160284465000103, 50.628642070000026 ], [ 16.128658488000042, 50.644041647 ], [ 16.08649051900008, 50.646780498000041 ], [ 16.024478800000111, 50.608591614000076 ], [ 15.982000773000067, 50.603630677000027 ], [ 15.979933715000101, 50.606627910000057 ], [ 15.979210246000036, 50.6097801720001 ], [ 15.980037068000058, 50.612984111000074 ], [ 15.982000773000067, 50.616239726000046 ], [ 15.996366821000095, 50.623681132000073 ], [ 15.9986405840001, 50.635566712000113 ], [ 15.993162882000121, 50.649364319000043 ], [ 15.984481242000044, 50.662903544000031 ], [ 15.971458781000109, 50.678613180000085 ], [ 15.958022908000146, 50.686881409000037 ], [ 15.94148645000007, 50.688380026000047 ], [ 15.882265258000075, 50.674220683 ], [ 15.854566691000059, 50.673703919000062 ], [ 15.848158813000111, 50.675150859000055 ], [ 15.797619263000087, 50.729772848 ], [ 15.794415323000095, 50.735870667000071 ], [ 15.792244914000037, 50.74269195600003 ], [ 15.767440226000076, 50.744190572000022 ], [ 15.684344523000107, 50.731426494000047 ], [ 15.673802530000046, 50.733545227000022 ], [ 15.666464477000147, 50.73809275300006 ], [ 15.653235310000042, 50.750960185000068 ], [ 15.641866496000148, 50.755766094000066 ], [ 15.522128063259878, 50.782360890044664 ], [ 15.441775350000086, 50.800207825000044 ], [ 15.400124145000092, 50.797985738000037 ], [ 15.390822388000061, 50.790647685000053 ], [ 15.381313924000068, 50.780002340000053 ], [ 15.370255168000057, 50.772612610000053 ], [ 15.368578785000096, 50.772949110000084 ], [ 15.356095825000125, 50.775454814000014 ], [ 15.349687948000081, 50.783723043000052 ], [ 15.350514770000103, 50.793231506000055 ], [ 15.353305298000066, 50.803256735000062 ], [ 15.35299523900008, 50.812971904 ], [ 15.341006306000111, 50.831730449000091 ], [ 15.325813436000089, 50.839688619000057 ], [ 15.307726685000063, 50.844752910000054 ], [ 15.287779581000052, 50.854881490000096 ], [ 15.277134236000052, 50.86573354100004 ], [ 15.265352010000072, 50.88227 ], [ 15.256050252000136, 50.89989166300002 ], [ 15.253053019000106, 50.914102682000092 ], [ 15.260081014000036, 50.932499491000087 ], [ 15.268762655000074, 50.942989807000046 ], [ 15.269796183000068, 50.952653300000051 ], [ 15.253776489000103, 50.969034729000029 ], [ 15.227111450000081, 50.977406311 ], [ 15.170164022000108, 50.977974752000037 ], [ 15.16075891100013, 50.992650859000022 ], [ 15.156108032000077, 51.007843730000062 ], [ 15.144429158000094, 51.011564433000061 ], [ 15.131510051000106, 51.005828349000112 ], [ 15.122518351000053, 50.992754212000065 ], [ 15.122518351000053, 50.992650859000022 ], [ 15.119211059000065, 50.982470602000049 ], [ 15.107945597000082, 50.981023662000055 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PL-OP", "NAME_1": "Opole" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.958788696000084, 50.414598287000061 ], [ 16.944004628610685, 50.42026669725027 ], [ 16.948247511313582, 50.432167467254772 ], [ 17.020387810948705, 50.54681163245084 ], [ 17.072787712882644, 50.572417304215207 ], [ 17.133352492223707, 50.578721828749394 ], [ 17.169319289253792, 50.618047594520817 ], [ 17.192366977953668, 50.674219876346172 ], [ 17.264197219226276, 50.761062120120698 ], [ 17.347499627106117, 50.839248561871614 ], [ 17.383259718561135, 50.891725979070657 ], [ 17.430802035885222, 50.930638332792796 ], [ 17.462531365929806, 50.94402252911641 ], [ 17.478654413370464, 50.974382432703067 ], [ 17.485062289792836, 51.000349840572653 ], [ 17.495604282211843, 51.02479279235348 ], [ 17.553791944742443, 51.109077053063515 ], [ 17.579733514190309, 51.126750393216071 ], [ 17.612289665635558, 51.133545844165326 ], [ 17.64660281716624, 51.132021388975886 ], [ 17.681432732634505, 51.137447415265967 ], [ 17.714609001704048, 51.150159817121846 ], [ 17.749232211597246, 51.151400051471171 ], [ 17.782201775991155, 51.140703030320594 ], [ 17.795534294572008, 51.119205634332559 ], [ 17.80121870328054, 51.094788520074133 ], [ 17.853721958001927, 51.068045965848626 ], [ 17.917387322766729, 51.06582388046769 ], [ 18.035829705376614, 51.093212388940572 ], [ 18.150137973788446, 51.136129666550858 ], [ 18.172565544863971, 51.110756536984582 ], [ 18.202021111784859, 51.095899563214232 ], [ 18.425676711211224, 51.059622707821688 ], [ 18.496370070022692, 51.060837103749293 ], [ 18.509392531140406, 51.068045965848626 ], [ 18.518590936422584, 51.078381252692623 ], [ 18.530476515079101, 51.082618720577443 ], [ 18.557348259614457, 51.061922309367048 ], [ 18.580602654788663, 51.033422756854691 ], [ 18.655636834272457, 50.995233873544407 ], [ 18.621116978066084, 50.918339342086938 ], [ 18.608611280885896, 50.908882555285686 ], [ 18.601169874789889, 50.893431301413386 ], [ 18.60737104743589, 50.870693671076026 ], [ 18.620806918804249, 50.852167670201766 ], [ 18.613572219182572, 50.816743476430247 ], [ 18.535437453375778, 50.78480744081071 ], [ 18.50866906072855, 50.749099026199076 ], [ 18.490892367788547, 50.686389674943541 ], [ 18.46701785678863, 50.645616970147046 ], [ 18.486448195228036, 50.607583116467652 ], [ 18.513009881400876, 50.584664618976944 ], [ 18.545255975382929, 50.56877411643228 ], [ 18.577398715678157, 50.546940822760746 ], [ 18.588664177609701, 50.510974025730661 ], [ 18.44335005136378, 50.511826687351686 ], [ 18.414101190017902, 50.507382513891855 ], [ 18.400872023325178, 50.48477407476372 ], [ 18.412034133368536, 50.467178249876326 ], [ 18.410070427708035, 50.449220688883656 ], [ 18.388056267782531, 50.442606105986954 ], [ 18.366558871794496, 50.439918931713294 ], [ 18.357463820199143, 50.419455064499573 ], [ 18.374413689939843, 50.291194159882536 ], [ 18.373586866740482, 50.239982815454539 ], [ 18.362838168746464, 50.210914822161271 ], [ 18.266099887699625, 50.18179515202462 ], [ 18.206051873195349, 50.152597968421503 ], [ 18.079961378914504, 50.135699775524188 ], [ 18.02053348203458, 50.060872300716085 ], [ 18.019086541210868, 50.044232490237221 ], [ 18.019073899000148, 50.04408711000012 ], [ 18.002445923000039, 50.046765442000023 ], [ 18.006890096000063, 50.024131165000071 ], [ 18.012161092000099, 50.022684225 ], [ 18.020119262000065, 50.024286195000016 ], [ 18.028697550000089, 50.024131165000071 ], [ 18.035725545000076, 50.017206523000098 ], [ 18.037482544000056, 50.007232971000079 ], [ 18.032418253000088, 50.002840475000099 ], [ 17.999862101000133, 49.996587627000096 ], [ 17.959761190000052, 49.995812480000083 ], [ 17.941571085000106, 49.992763570000065 ], [ 17.91211551900011, 49.975813700000046 ], [ 17.875735311000113, 49.968682353000091 ], [ 17.839355102000127, 49.973643291000045 ], [ 17.774552857000117, 50.015191142000035 ], [ 17.763287394000059, 50.025216370000081 ], [ 17.755432577000136, 50.037153626000119 ], [ 17.749851522000114, 50.049504294000073 ], [ 17.743030232000052, 50.060563050000084 ], [ 17.731971476000069, 50.069089661000092 ], [ 17.722566365000091, 50.075135804000027 ], [ 17.719465780000064, 50.08087188800009 ], [ 17.722669719000123, 50.086349590000069 ], [ 17.731971476000069, 50.091465556000074 ], [ 17.73238488800007, 50.092189026000071 ], [ 17.732591594000041, 50.092964173000084 ], [ 17.73238488800007, 50.093894349000024 ], [ 17.731971476000069, 50.094876201 ], [ 17.717915487000141, 50.096788228000023 ], [ 17.690733683000047, 50.105469869000061 ], [ 17.677607869000099, 50.107743632000094 ], [ 17.666962524000098, 50.106141663000059 ], [ 17.658487589000089, 50.102989400000084 ], [ 17.648359009000046, 50.101800843000078 ], [ 17.632752726000092, 50.106348369000031 ], [ 17.584176880000086, 50.145880839000043 ], [ 17.582109823000053, 50.153167216000028 ], [ 17.589447876000122, 50.163244120000073 ], [ 17.600403279000119, 50.166809795000049 ], [ 17.648669067000128, 50.167998352000055 ], [ 17.675334106000065, 50.174716289000074 ], [ 17.717915487000141, 50.191097718000051 ], [ 17.738172648000045, 50.202363180000091 ], [ 17.747577759000109, 50.217504374000029 ], [ 17.731971476000069, 50.236004538000046 ], [ 17.721429484000083, 50.242722473000057 ], [ 17.719155721000078, 50.252799378000091 ], [ 17.721119425000097, 50.261946106 ], [ 17.731971476000069, 50.280652975000081 ], [ 17.734245239000074, 50.283805237000124 ], [ 17.734968709000071, 50.28680247000004 ], [ 17.734451945000046, 50.289489645000074 ], [ 17.731971476000069, 50.29176340700009 ], [ 17.713574666000056, 50.30767974900003 ], [ 17.707993611000035, 50.31103871700013 ], [ 17.691043741000044, 50.315069478000041 ], [ 17.684532511000072, 50.312382304 ], [ 17.68194869000007, 50.305561015000038 ], [ 17.676367635000133, 50.297396139000014 ], [ 17.646705363000081, 50.271092835000061 ], [ 17.629548787000118, 50.262101136000027 ], [ 17.606397746000141, 50.258225403000083 ], [ 17.516997518000039, 50.268353984000029 ], [ 17.469351847000098, 50.265563456000066 ], [ 17.439999634000117, 50.242722473000057 ], [ 17.434831991000124, 50.240500387000068 ], [ 17.429560994000099, 50.239776917000071 ], [ 17.424186645000134, 50.240552063000067 ], [ 17.41912235500007, 50.242722473000057 ], [ 17.409820597000135, 50.261325989000014 ], [ 17.388013142792317, 50.272643128177776 ], [ 17.365895630000097, 50.271557923 ], [ 17.355043579000039, 50.253264466000033 ], [ 17.341711060000108, 50.259724020000093 ], [ 17.334786418000135, 50.27000763000008 ], [ 17.332822713000098, 50.28266835600003 ], [ 17.334062947000035, 50.29569081700005 ], [ 17.3295154220001, 50.298222962000054 ], [ 17.325381307000072, 50.301116842000042 ], [ 17.321867309000112, 50.304475810000056 ], [ 17.319076782000081, 50.308248190000072 ], [ 17.337473592000066, 50.313002422000054 ], [ 17.316803019000048, 50.318635153000102 ], [ 17.269880819000093, 50.317756653000046 ], [ 17.246109659000041, 50.322149150000044 ], [ 17.21086633300007, 50.336411845000029 ], [ 17.201047811000109, 50.343233134000073 ], [ 17.195053345000076, 50.351914775000026 ], [ 17.1888521730001, 50.36483388300006 ], [ 17.185441528000069, 50.375685934 ], [ 17.187611939000135, 50.378476461000062 ], [ 17.175933065000066, 50.380750224000067 ], [ 17.145443970000088, 50.376719463000072 ], [ 17.131698038000053, 50.376822815000097 ], [ 17.11888228400008, 50.381163636000068 ], [ 17.09562788900007, 50.393669332000073 ], [ 17.084672485000084, 50.397958476000056 ], [ 16.981939738000079, 50.416355286000041 ], [ 16.958788696000084, 50.414598287000061 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PL-PD", "NAME_1": "Podlachian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.837602986000093, 54.40091827500008 ], [ 22.858893677000083, 54.399212952000099 ], [ 22.918838338000057, 54.3811262010001 ], [ 22.929690389000115, 54.380299378000061 ], [ 22.952428019000081, 54.383089905000034 ], [ 22.96265995300007, 54.381694642000056 ], [ 22.973305298000071, 54.375390117000038 ], [ 22.978989706000107, 54.367586976000027 ], [ 22.983433878000113, 54.359783835000101 ], [ 22.989738404000036, 54.35337595600005 ], [ 23.001003866000076, 54.348880107000028 ], [ 23.035317016000107, 54.346502991000094 ], [ 23.041621542000115, 54.340973613000088 ], [ 23.038004191000141, 54.33146514900001 ], [ 23.03221643100008, 54.320148010000125 ], [ 23.032113078000037, 54.309554342000055 ], [ 23.050096476000135, 54.294826559000043 ], [ 23.073040812000073, 54.29487823500007 ], [ 23.096915324000065, 54.300821025000076 ], [ 23.11706913200004, 54.303456523000094 ], [ 23.135259236000081, 54.298288880000101 ], [ 23.197270956000125, 54.26785146100012 ], [ 23.235408162000084, 54.254157207 ], [ 23.316023397000095, 54.236277161000046 ], [ 23.335990125743706, 54.226293795822016 ], [ 23.35447066200004, 54.217053528000022 ], [ 23.364082479000047, 54.208268535000045 ], [ 23.382272583000088, 54.187856344000082 ], [ 23.391470988000094, 54.180104879000069 ], [ 23.40180627400008, 54.175970765000059 ], [ 23.423303670000024, 54.172508443000098 ], [ 23.432502075000116, 54.169304505000056 ], [ 23.449038534000124, 54.154938457000057 ], [ 23.462991170000123, 54.134939678000094 ], [ 23.473946574000081, 54.112563782000038 ], [ 23.481594686000079, 54.091221415000021 ], [ 23.496167440000136, 54.044557597000065 ], [ 23.496477498000104, 54.021974996000026 ], [ 23.481594686000079, 54.006627096000059 ], [ 23.469502401000085, 54.000684306000025 ], [ 23.464128052000035, 53.996756897000054 ], [ 23.459270467000096, 53.992312724000058 ], [ 23.458650350000141, 53.98161570300006 ], [ 23.46288781700008, 53.972520650000078 ], [ 23.470949341000079, 53.965285950000109 ], [ 23.481594686000079, 53.960118307000116 ], [ 23.487485799000069, 53.955622457000075 ], [ 23.490379679000057, 53.950609843000038 ], [ 23.489759562000074, 53.945132142000048 ], [ 23.485625448000064, 53.939292704000039 ], [ 23.486865682000087, 53.909992168000073 ], [ 23.497200968000101, 53.88554921500004 ], [ 23.510430135000092, 53.862501527000077 ], [ 23.520662069000082, 53.837335103000058 ], [ 23.529860474000088, 53.7841600550001 ], [ 23.540402466000046, 53.763592835000011 ], [ 23.564690389000134, 53.742405498000053 ], [ 23.564793742000063, 53.742405498000053 ], [ 23.567067504000079, 53.681013896000067 ], [ 23.590942016000071, 53.611250712000114 ], [ 23.675794719000123, 53.455704651000062 ], [ 23.722923625000135, 53.397103577000038 ], [ 23.742974080000096, 53.365477600000034 ], [ 23.782971639000067, 53.270935568000041 ], [ 23.80064497900014, 53.242461854000013 ], [ 23.818628377000039, 53.227966614000067 ], [ 23.828446899000113, 53.213833110000039 ], [ 23.836198365000115, 53.199286195000084 ], [ 23.848083943000063, 53.183809103000087 ], [ 23.865963989000107, 53.172001038000062 ], [ 23.88312056500007, 53.163991191 ], [ 23.893662557000113, 53.151950582000026 ], [ 23.891388794000108, 53.127714336000039 ], [ 23.882397095000073, 53.113296611000024 ], [ 23.870304810000079, 53.101256002000056 ], [ 23.860692993000072, 53.087484233000012 ], [ 23.859349406, 53.067976380000104 ], [ 23.867927694000031, 53.05102651 ], [ 23.898210083000066, 53.02753957100002 ], [ 23.909682251000078, 53.012734274000096 ], [ 23.911335897000129, 53.005060324000013 ], [ 23.908958781000081, 52.993045553000044 ], [ 23.909062134000123, 52.986663514000028 ], [ 23.917537069000105, 52.958809917000039 ], [ 23.917950480000115, 52.950800070000057 ], [ 23.914953247000113, 52.94462473500009 ], [ 23.903894491000102, 52.931137187000033 ], [ 23.901103963000139, 52.923256532 ], [ 23.902034139000108, 52.912533671000077 ], [ 23.905444783000121, 52.906539205000044 ], [ 23.909475545000134, 52.901500753000064 ], [ 23.91205936700004, 52.893852641000095 ], [ 23.920425638832171, 52.772624529698248 ], [ 23.922498006000069, 52.742595724000083 ], [ 23.908752075000024, 52.699859315000097 ], [ 23.86896122200011, 52.670042013000071 ], [ 23.736152792000041, 52.614903259000087 ], [ 23.569031209000116, 52.585886943000034 ], [ 23.480457805000071, 52.55441599500007 ], [ 23.392297810000116, 52.509638367000022 ], [ 23.27054813700002, 52.395123394000095 ], [ 23.23044722500012, 52.365073547000023 ], [ 23.212050415000135, 52.347503561000039 ], [ 23.165644979000035, 52.28939341300007 ], [ 23.16874556500008, 52.288928325000128 ], [ 23.176084425555757, 52.285129299777338 ], [ 23.168126254622962, 52.281718655091822 ], [ 23.150246208895396, 52.281563626360253 ], [ 23.118826939012024, 52.293190823497696 ], [ 23.100533482134495, 52.295981350558861 ], [ 23.086994256179935, 52.292338161876671 ], [ 23.071904738412911, 52.285956122077323 ], [ 23.055678338184748, 52.282855537552962 ], [ 23.039038526806564, 52.289160061187829 ], [ 23.04203576034206, 52.293759264278606 ], [ 23.047100051426241, 52.304197903010788 ], [ 23.052060987924222, 52.30962392840155 ], [ 23.023949009039541, 52.33047536924289 ], [ 23.00575890494946, 52.337012437773751 ], [ 22.984468215435754, 52.330139472458654 ], [ 22.975063103679247, 52.352825425952631 ], [ 22.952015414979428, 52.366519679739383 ], [ 22.922766553633551, 52.37225576439198 ], [ 22.844631788726076, 52.365641181495278 ], [ 22.688982374736781, 52.385381578297199 ], [ 22.636272414440384, 52.383624579111029 ], [ 22.611881137704302, 52.387267767793219 ], [ 22.600202263723475, 52.399024156139888 ], [ 22.58294233562026, 52.394528306735936 ], [ 22.562685173981549, 52.404062607903029 ], [ 22.545838657028355, 52.418712876997631 ], [ 22.538810662981689, 52.429435737469305 ], [ 22.54480512915336, 52.462534492173063 ], [ 22.542221306767885, 52.46728872309609 ], [ 22.528165316875857, 52.468683987076304 ], [ 22.519793734792984, 52.473334866111145 ], [ 22.515039503870014, 52.481758124138082 ], [ 22.511422152710168, 52.494573880580106 ], [ 22.512352328696977, 52.503410549757064 ], [ 22.516693150268679, 52.511317043846475 ], [ 22.520103794054819, 52.519533596298402 ], [ 22.517623325356169, 52.52935211920493 ], [ 22.510698683197631, 52.53529490853316 ], [ 22.488581169585302, 52.546767076039714 ], [ 22.467807244908386, 52.564337063404707 ], [ 22.411893344602163, 52.600639757218971 ], [ 22.414993930925164, 52.622343857882697 ], [ 22.411789991814658, 52.659705918892996 ], [ 22.39969770668381, 52.695000922354666 ], [ 22.393496534937128, 52.747116604347809 ], [ 22.377890252333259, 52.79411631931265 ], [ 22.31990929537767, 52.784220282939657 ], [ 22.263581983921426, 52.767089545146348 ], [ 22.232369418713688, 52.780292874316672 ], [ 22.207254673364446, 52.801686917517202 ], [ 22.223067660644006, 52.856877346512306 ], [ 22.174698521019934, 52.879046536068756 ], [ 22.124779086885326, 52.846387030936683 ], [ 22.048918084202228, 52.839565742465027 ], [ 21.977604607766409, 52.861993313540552 ], [ 21.951146275280337, 52.891242173987109 ], [ 21.937400343750824, 52.927932441428993 ], [ 21.922827589921326, 52.95276296683744 ], [ 21.898332961297115, 52.968007514235353 ], [ 21.860195753930896, 52.980642401725447 ], [ 21.834667595632993, 53.008185939829218 ], [ 21.830533482334317, 53.033610745339615 ], [ 21.846759880763841, 53.051645819798694 ], [ 21.8008712089391, 53.073039862999224 ], [ 21.745887484619686, 53.077819933243291 ], [ 21.692764113173268, 53.095260729399115 ], [ 21.655970492943879, 53.137997138057472 ], [ 21.600366651899435, 53.222074693192496 ], [ 21.57525190565093, 53.33700307922868 ], [ 21.55923221189704, 53.37635468252256 ], [ 21.536287875984669, 53.408755805236183 ], [ 21.522955357403816, 53.443508206338606 ], [ 21.595715772864594, 53.462576809572056 ], [ 21.738756137785515, 53.457564195331315 ], [ 21.801594679350956, 53.47079336202404 ], [ 21.830946892585018, 53.484642646341001 ], [ 21.86257286984204, 53.492678330740318 ], [ 21.937296990963318, 53.499318752958061 ], [ 22.109896274693313, 53.569857083037903 ], [ 22.207047966890116, 53.635227770145434 ], [ 22.485583936949126, 53.73790884141988 ], [ 22.54304812996719, 53.773901475972309 ], [ 22.577878045435455, 53.832192491290414 ], [ 22.618495720601004, 53.87815867838026 ], [ 22.622113070861531, 53.924796658139257 ], [ 22.515969678957504, 54.012362372325583 ], [ 22.465223423422231, 54.041714586458966 ], [ 22.454578078215718, 54.069413154193683 ], [ 22.449100375981573, 54.09923045542115 ], [ 22.348124627049856, 54.178605455577269 ], [ 22.442175733823035, 54.256998602903195 ], [ 22.665314569311931, 54.275343735724789 ], [ 22.731667108350337, 54.301698717221996 ], [ 22.788717889319116, 54.336580309533645 ], [ 22.813935988355183, 54.385001126001157 ], [ 22.811343908000055, 54.39263336100008 ], [ 22.812694946000107, 54.394096985000019 ], [ 22.837602986000093, 54.40091827500008 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PL-WN", "NAME_1": "Warmian-Masurian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.767219686000061, 54.356269837000056 ], [ 22.786029907000085, 54.365209860000064 ], [ 22.811343908000055, 54.39263336100008 ], [ 22.813935988355183, 54.385001126001157 ], [ 22.788717889319116, 54.336580309533645 ], [ 22.731667108350337, 54.301698717221996 ], [ 22.665314569311931, 54.275343735724789 ], [ 22.442175733823035, 54.256998602903195 ], [ 22.348124627049856, 54.178605455577269 ], [ 22.449100375981573, 54.09923045542115 ], [ 22.454578078215718, 54.069413154193683 ], [ 22.465223423422231, 54.041714586458966 ], [ 22.515969678957504, 54.012362372325583 ], [ 22.622113070861531, 53.924796658139257 ], [ 22.618495720601004, 53.87815867838026 ], [ 22.577878045435455, 53.832192491290414 ], [ 22.54304812996719, 53.773901475972309 ], [ 22.485583936949126, 53.73790884141988 ], [ 22.207047966890116, 53.635227770145434 ], [ 22.109896274693313, 53.569857083037903 ], [ 21.937296990963318, 53.499318752958061 ], [ 21.86257286984204, 53.492678330740318 ], [ 21.830946892585018, 53.484642646341001 ], [ 21.801594679350956, 53.47079336202404 ], [ 21.738756137785515, 53.457564195331315 ], [ 21.595715772864594, 53.462576809572056 ], [ 21.522955357403816, 53.443508206338606 ], [ 21.402032505195962, 53.437875475372891 ], [ 21.377434522884926, 53.429917304440039 ], [ 21.348805780062662, 53.396095079324425 ], [ 21.307981398422783, 53.378809312799547 ], [ 21.262609491434887, 53.37462352175811 ], [ 21.173726026734755, 53.379636135099531 ], [ 21.09786502495092, 53.325608426087967 ], [ 21.007948032375793, 53.308400173928874 ], [ 20.912346632890774, 53.308632717026228 ], [ 20.839069451693831, 53.283362942046097 ], [ 20.775610793403359, 53.275430610434285 ], [ 20.703987257705762, 53.27594737437181 ], [ 20.667813755100724, 53.258325711062696 ], [ 20.634637485131805, 53.234632066316806 ], [ 20.494801060220709, 53.186107897061788 ], [ 20.45821414556633, 53.179544990109207 ], [ 20.419766879837596, 53.181973781964416 ], [ 20.38886437299243, 53.167478543400023 ], [ 20.37191450415105, 53.133733831750931 ], [ 20.345972934703184, 53.115466214194385 ], [ 20.31579389826976, 53.106319484856328 ], [ 20.240553013210956, 53.097999578717577 ], [ 19.924810010873273, 53.127300116906838 ], [ 19.916025017640436, 53.133604641441025 ], [ 19.909513788430559, 53.142441311517302 ], [ 19.89390750492737, 53.148900864783059 ], [ 19.876750928712397, 53.151122951962634 ], [ 19.837063428634281, 53.143681545866627 ], [ 19.811225212873239, 53.11288239180891 ], [ 19.782389763576703, 53.09841299076686 ], [ 19.74786990737033, 53.093141995007045 ], [ 19.732883742390754, 53.184583441872292 ], [ 19.681310662756857, 53.262950750776497 ], [ 19.625603468924908, 53.286411852425033 ], [ 19.511501906088085, 53.304343574096663 ], [ 19.404531690984754, 53.342868354191182 ], [ 19.327843866001615, 53.35803538722331 ], [ 19.308930290600415, 53.358500475216715 ], [ 19.285469190750518, 53.364546617332508 ], [ 19.269862909046026, 53.377982490499505 ], [ 19.239580518925777, 53.412243964287484 ], [ 19.21477583193905, 53.455238756263554 ], [ 19.12826948404944, 53.555878608411035 ], [ 19.275857375217697, 53.719253648437075 ], [ 19.311307407410879, 53.742094632461317 ], [ 19.353165316925811, 53.75775259100925 ], [ 19.433883905118137, 53.754600327842809 ], [ 19.490417922149391, 53.769328111303253 ], [ 19.492381626011195, 53.785554511531473 ], [ 19.504370558354594, 53.796561591044565 ], [ 19.520080193745912, 53.825086981978586 ], [ 19.538373650623441, 53.836016547125951 ], [ 19.550362582966841, 53.849271552240339 ], [ 19.550362582966841, 53.866014716406028 ], [ 19.554393345276651, 53.88221527821247 ], [ 19.504370558354594, 53.890302639455228 ], [ 19.405358514184059, 53.885496730789441 ], [ 19.369805129203314, 53.89575450326771 ], [ 19.389235466743401, 53.935157783404975 ], [ 19.363190545407349, 53.956086737712724 ], [ 19.311824172247725, 53.960117499123271 ], [ 19.263558383612519, 53.976912340132344 ], [ 19.230072056180404, 54.009468492476913 ], [ 19.21188195209038, 54.052463284452983 ], [ 19.209298129704905, 54.072100328467343 ], [ 19.22521447067129, 54.086052965571866 ], [ 19.268829380271654, 54.112046210064534 ], [ 19.284435662875524, 54.128220934348633 ], [ 19.295804477594572, 54.146514391226162 ], [ 19.285262485175508, 54.171577459731964 ], [ 19.264798617961844, 54.192919826988373 ], [ 19.242784458036283, 54.231315415873723 ], [ 19.249709100194821, 54.265370184986011 ], [ 19.273893669557197, 54.281596585214231 ], [ 19.362880487044833, 54.274878647731384 ], [ 19.38634158689473, 54.276583970973434 ], [ 19.38634158689473, 54.269142564877427 ], [ 19.376936476037542, 54.263923245061676 ], [ 19.369805129203314, 54.254983222197893 ], [ 19.365774366893504, 54.242890937067045 ], [ 19.365154250168473, 54.228163154505921 ], [ 19.378486768749383, 54.235914618964443 ], [ 19.396263461689387, 54.263173937127476 ], [ 19.403084751060419, 54.269142564877427 ], [ 19.409389275594549, 54.272914943869523 ], [ 19.434710728317441, 54.297099514131219 ], [ 19.460032179241637, 54.310948798448237 ], [ 19.47284793478434, 54.315703030270583 ], [ 19.485560336640219, 54.317563382244259 ], [ 19.563385044084498, 54.346347153798092 ], [ 19.579818149887672, 54.350326240163838 ], [ 19.619195590703953, 54.353478502430903 ], [ 19.683894484243012, 54.381383774841311 ], [ 19.697433709298252, 54.384587713951817 ], [ 19.71179975755274, 54.385827949200461 ], [ 19.720481397998128, 54.391047268116893 ], [ 19.725855747444768, 54.402002671685921 ], [ 19.733607211903291, 54.411924547379954 ], [ 19.74942020008217, 54.413784898454253 ], [ 19.747559849007814, 54.418280747858205 ], [ 19.744976026622339, 54.429184475483112 ], [ 19.743219028335488, 54.433628648043623 ], [ 19.754174431904516, 54.433008531318649 ], [ 19.758255974000093, 54.434255669 ], [ 19.964703410000112, 54.427841696000101 ], [ 20.352069946000142, 54.415749411000021 ], [ 20.640837849500059, 54.40678354950002 ], [ 20.929605753000089, 54.397817688000046 ], [ 21.287413371000099, 54.386758932000035 ], [ 21.720771932000048, 54.373271383000073 ], [ 21.998946167000042, 54.364667257500074 ], [ 22.277120402000094, 54.356063131999989 ], [ 22.510387817000094, 54.348776754000099 ], [ 22.698386678000077, 54.34293731800004 ], [ 22.767219686000061, 54.356269837000056 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PL-LB", "NAME_1": "Lubusz" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.950647846000038, 51.396539377000025 ], [ 14.946921835000126, 51.42290883400004 ], [ 14.95539676900006, 51.435414530000045 ], [ 14.945061483000131, 51.449186300000079 ], [ 14.926561320000104, 51.461330261000072 ], [ 14.910955038000083, 51.468978373000041 ], [ 14.888320760000113, 51.475747987 ], [ 14.841398559000083, 51.48442962700004 ], [ 14.818557576000075, 51.492594504000053 ], [ 14.818557576000075, 51.492697856000078 ], [ 14.797473592000131, 51.502102966000038 ], [ 14.732154582000078, 51.515823059000084 ], [ 14.710037068000076, 51.5302407840001 ], [ 14.706769960000116, 51.540828064000081 ], [ 14.704559367000087, 51.547991638000028 ], [ 14.71272424300011, 51.567421977 ], [ 14.732154582000078, 51.58661977200002 ], [ 14.743936808000086, 51.606644390000056 ], [ 14.74228316200012, 51.632973532 ], [ 14.732464640000074, 51.658346659000088 ], [ 14.719545532000069, 51.675632426 ], [ 14.670969686000149, 51.700773011000123 ], [ 14.648438761000136, 51.717206116000099 ], [ 14.638103475000037, 51.742630921000099 ], [ 14.634176066000066, 51.769011739000078 ], [ 14.620326782000092, 51.780535584000106 ], [ 14.602240031000093, 51.788312887000117 ], [ 14.585806925000043, 51.803893332000044 ], [ 14.582809693000115, 51.825080668000012 ], [ 14.595935507000064, 51.842418112000118 ], [ 14.653296346000076, 51.878617453000047 ], [ 14.67169315600006, 51.893887838000083 ], [ 14.687092733000043, 51.911897074000095 ], [ 14.695567667000148, 51.931456604000104 ], [ 14.699081665000108, 51.992512309000105 ], [ 14.704456014000073, 52.002227478000052 ], [ 14.726056762000042, 52.026437887000029 ], [ 14.730294230000084, 52.03589467400009 ], [ 14.732154582000078, 52.045067241000069 ], [ 14.735358520000148, 52.05403310200002 ], [ 14.74300663300005, 52.062533875000028 ], [ 14.76140344300012, 52.076667379000057 ], [ 14.696394491000063, 52.106691386000122 ], [ 14.686369263000131, 52.121031596000122 ], [ 14.692467082000093, 52.146973165000063 ], [ 14.703215780000022, 52.16516327 ], [ 14.707039836000149, 52.179451803000077 ], [ 14.69257043500005, 52.193378601000077 ], [ 14.69257043500005, 52.199579773000053 ], [ 14.712104126000042, 52.215444438000063 ], [ 14.712414184000124, 52.235908305000024 ], [ 14.696911255000117, 52.2534782930001 ], [ 14.668902628000097, 52.260997213000039 ], [ 14.640480590000067, 52.265053813000051 ], [ 14.606580851000075, 52.275750835000068 ], [ 14.584153280000066, 52.291227926000047 ], [ 14.590147746000099, 52.309418030000089 ], [ 14.569167114000095, 52.3385118610001 ], [ 14.54539595600005, 52.382152608000055 ], [ 14.539814901000113, 52.421865947000057 ], [ 14.591594686000093, 52.449797059000034 ], [ 14.615779256000081, 52.473283997000024 ], [ 14.632315715000061, 52.49674509800009 ], [ 14.627664836000093, 52.507416280000101 ], [ 14.609061320000137, 52.517803243000017 ], [ 14.616812785000064, 52.541031800000027 ], [ 14.644821411000066, 52.576921082000084 ], [ 14.613712199000105, 52.59252736400002 ], [ 14.607964828000092, 52.596462963000064 ], [ 14.632419875077176, 52.649913235307565 ], [ 14.654330682215175, 52.669912014527824 ], [ 14.739390090180507, 52.678180243823192 ], [ 14.78992964014077, 52.691099352153344 ], [ 14.868271112421894, 52.758123683860902 ], [ 14.931936476287319, 52.842562975101202 ], [ 15.029811638895978, 52.875325833020725 ], [ 15.19579633972927, 52.841968695898572 ], [ 15.248713005600735, 52.846490383724188 ], [ 15.31010460814116, 52.889640204431885 ], [ 15.348138461820554, 52.933306789976371 ], [ 15.320749953347672, 52.936097317037536 ], [ 15.301009555646488, 52.952323717265699 ], [ 15.357543572677741, 52.954184068340055 ], [ 15.527042270983998, 52.989272366226714 ], [ 15.73312788304537, 52.988936469442478 ], [ 15.783564080218127, 53.011183173364714 ], [ 15.873274367218244, 53.080326240363661 ], [ 15.925777621939687, 53.105337632925398 ], [ 15.980141228634807, 53.109936835116798 ], [ 16.030370721131874, 53.103218899432648 ], [ 16.056725701729761, 53.054255479706569 ], [ 16.03853559674036, 53.006738999904883 ], [ 16.018588495262804, 52.949145616576914 ], [ 16.021895786261496, 52.885299383759502 ], [ 15.924640741277187, 52.809645087550734 ], [ 15.95533654074876, 52.792333481704816 ], [ 15.976833936736796, 52.743085842037942 ], [ 15.967222121203918, 52.727376207545888 ], [ 15.947895134652754, 52.719779771818992 ], [ 15.853223911154544, 52.701589666829648 ], [ 15.838031039700695, 52.702674872447403 ], [ 15.831106398441534, 52.6933214384336 ], [ 15.830072869667163, 52.670868028037034 ], [ 15.825732048994837, 52.649654852889114 ], [ 15.829556104830374, 52.593844306269716 ], [ 15.864902785135428, 52.534778143696371 ], [ 15.877098423053781, 52.499844876339921 ], [ 15.884953241199128, 52.463309638528983 ], [ 15.884849888411622, 52.433285630827186 ], [ 15.85797814297689, 52.43333730677125 ], [ 15.83658409977636, 52.424242255175898 ], [ 15.879062126915585, 52.378198553720267 ], [ 15.89900923019178, 52.348484606179625 ], [ 15.901179639628651, 52.286989650851694 ], [ 15.868726840970908, 52.228052680386838 ], [ 15.863559197998597, 52.213609116867246 ], [ 15.861285434874901, 52.198442083835062 ], [ 15.849813267368404, 52.168986517813494 ], [ 15.849193148844734, 52.135267646384762 ], [ 15.857047966990081, 52.103745021915188 ], [ 15.88050906683992, 52.082350978714658 ], [ 15.907897577111498, 52.064858507514089 ], [ 15.962984653319097, 52.046771756211569 ], [ 15.980864699046606, 52.015585029425552 ], [ 16.003912387746482, 51.989565944712524 ], [ 16.039362419939721, 51.967629300052124 ], [ 16.076672804106636, 51.967215888002784 ], [ 16.093932733109114, 51.971815091093561 ], [ 16.110469190800472, 51.965407212872549 ], [ 16.112019484411633, 51.945382595230569 ], [ 16.102924431916961, 51.92613312394451 ], [ 16.098376905669625, 51.891664944581521 ], [ 16.113156365973509, 51.864948228777735 ], [ 16.15615115705026, 51.846706447844269 ], [ 16.201523064937476, 51.837456367517348 ], [ 16.274696893346913, 51.868229682254025 ], [ 16.339912550823556, 51.823658759144394 ], [ 16.371125116031237, 51.74919302044151 ], [ 16.322135857883495, 51.699945379875373 ], [ 16.26115766829173, 51.666769110805774 ], [ 16.181989372811302, 51.655787868815082 ], [ 16.126488884554362, 51.699893703931252 ], [ 16.123181592656351, 51.734516912925187 ], [ 16.096516553696006, 51.752345282708632 ], [ 15.944794549229073, 51.769889430752585 ], [ 15.925157505214656, 51.753120429064495 ], [ 15.910481397698334, 51.72723053646007 ], [ 15.880405714951792, 51.708265286014125 ], [ 15.845265741121068, 51.701056423914793 ], [ 15.823768345133033, 51.6911862250642 ], [ 15.725376417687528, 51.571581122470775 ], [ 15.614685500435485, 51.480423896445643 ], [ 15.543888787937192, 51.469468491977295 ], [ 15.403328891714978, 51.517837633400063 ], [ 15.330051711417354, 51.501921292433678 ], [ 15.29677208776161, 51.477064927704248 ], [ 15.246232537801347, 51.422649645065064 ], [ 15.217087030142295, 51.4240965849894 ], [ 15.158279249987402, 51.455955105343833 ], [ 15.129443800690808, 51.455619208559597 ], [ 14.969453566029244, 51.403503526566453 ], [ 14.950647846000038, 51.396539377000025 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PL-ZP", "NAME_1": "West Pomeranian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.607964828000092, 52.596462963000064 ], [ 14.549943481000071, 52.636193950000077 ], [ 14.49010217300011, 52.650637512000017 ], [ 14.461370076, 52.67456370100011 ], [ 14.442353149000041, 52.679963887999989 ], [ 14.431914510000098, 52.686087546000053 ], [ 14.39770471200012, 52.727118632999989 ], [ 14.382201782000095, 52.738151551 ], [ 14.275955037000131, 52.785719706000023 ], [ 14.248669882000115, 52.794582215000034 ], [ 14.216010375000053, 52.817991639000084 ], [ 14.195959920000092, 52.823365987000059 ], [ 14.173739054000066, 52.824347839000026 ], [ 14.152758423000051, 52.828326925000098 ], [ 14.13539514200005, 52.836595154000051 ], [ 14.12392297300002, 52.850651144000054 ], [ 14.150484660000131, 52.86462961900007 ], [ 14.160819946000061, 52.876747742000063 ], [ 14.164954061000088, 52.895661317000091 ], [ 14.162680298000055, 52.908167013000096 ], [ 14.150484660000131, 52.943642884000027 ], [ 14.144490193000109, 52.953693950000044 ], [ 14.144490193000109, 52.959920960000048 ], [ 14.192859334000048, 52.981650900000048 ], [ 14.253734172000094, 53.000874533000072 ], [ 14.312645305000103, 53.02921905500007 ], [ 14.343341105000036, 53.048623555000049 ], [ 14.356776977000095, 53.066684469000066 ], [ 14.359567505000143, 53.075056051000033 ], [ 14.389539835000107, 53.131667583000095 ], [ 14.38747277900012, 53.146136984000051 ], [ 14.381478312000098, 53.160296326 ], [ 14.377860962000113, 53.1765485640001 ], [ 14.380651489000087, 53.189855245000032 ], [ 14.387782837000117, 53.202076722000058 ], [ 14.39770471200012, 53.210990906000077 ], [ 14.408246704000078, 53.214401551 ], [ 14.415584757000062, 53.220990296000068 ], [ 14.441629680000062, 53.251841126000059 ], [ 14.428607219000099, 53.259075827000046 ], [ 14.424679810000043, 53.26465688100005 ], [ 14.409383586000075, 53.272434184000062 ], [ 14.403285767000028, 53.278790385 ], [ 14.400185180000079, 53.288608908000057 ], [ 14.399565064000114, 53.306747335000082 ], [ 14.398014770000088, 53.315222270000092 ], [ 14.391260510763971, 53.334017003581835 ], [ 14.370316202000083, 53.39229766900003 ], [ 14.359877564000044, 53.444077454000094 ], [ 14.338896932000125, 53.465213115000054 ], [ 14.328458293000097, 53.486090394000101 ], [ 14.304170370000094, 53.508517965000109 ], [ 14.29693566900005, 53.529136862000101 ], [ 14.296212199000138, 53.551306051000026 ], [ 14.298899373000069, 53.58789296500008 ], [ 14.297039022000149, 53.597763164000057 ], [ 14.27605839000006, 53.636623841000116 ], [ 14.260968872000149, 53.656209209000039 ], [ 14.265102986000073, 53.671763815000062 ], [ 14.263862752000136, 53.699875794 ], [ 14.263900720257396, 53.699976159680759 ], [ 14.273692254000082, 53.70062897300005 ], [ 14.291677280000044, 53.705267645000049 ], [ 14.304860873000052, 53.712551174000055 ], [ 14.306162957000083, 53.720689195000034 ], [ 14.288584832000083, 53.72797272300005 ], [ 14.298350457000083, 53.731431382000039 ], [ 14.301605665000068, 53.734849351000037 ], [ 14.298350457000083, 53.738267320000034 ], [ 14.288584832000083, 53.74164459800005 ], [ 14.294200066000087, 53.749090887000079 ], [ 14.30404707100007, 53.743882554000038 ], [ 14.31804446700005, 53.739732164000031 ], [ 14.330414259000065, 53.734198309000078 ], [ 14.342051629000082, 53.714911200000074 ], [ 14.356211785000085, 53.70844147300005 ], [ 14.383555535000085, 53.70062897300005 ], [ 14.403575066000087, 53.68781159100007 ], [ 14.414561394000089, 53.682359117000033 ], [ 14.45866946700005, 53.677883205000057 ], [ 14.512380405000044, 53.666449286000045 ], [ 14.53101647200009, 53.657782294000071 ], [ 14.54623457100007, 53.644761460000041 ], [ 14.579112175000091, 53.607245184000078 ], [ 14.590586785000085, 53.598374742000033 ], [ 14.595876498000052, 53.601304429000038 ], [ 14.59701582100007, 53.617336330000057 ], [ 14.601573113000086, 53.626654364000046 ], [ 14.610036655000044, 53.632757880000042 ], [ 14.623789910000085, 53.639227606000077 ], [ 14.623057488000086, 53.643011786000045 ], [ 14.62281334700009, 53.646958726000037 ], [ 14.623789910000085, 53.652818101000037 ], [ 14.61304772200009, 53.654689846000053 ], [ 14.587412957000083, 53.656073309000078 ], [ 14.57593834700009, 53.659654039000031 ], [ 14.544932488000086, 53.704046942000048 ], [ 14.551442905000044, 53.726141669000071 ], [ 14.57593834700009, 53.769517320000034 ], [ 14.587412957000083, 53.763495184000078 ], [ 14.59734134200005, 53.765204169000071 ], [ 14.608246290000068, 53.769029039000031 ], [ 14.623789910000085, 53.769517320000034 ], [ 14.616709832000083, 53.794745184000078 ], [ 14.620371941000087, 53.814846096000053 ], [ 14.627289259000065, 53.832709052000041 ], [ 14.63062584700009, 53.851507880000042 ], [ 14.623789910000085, 53.851507880000042 ], [ 14.621348504000082, 53.839544989000046 ], [ 14.613536004000082, 53.831610419000071 ], [ 14.58961022200009, 53.817328192000048 ], [ 14.595876498000052, 53.810492255000042 ], [ 14.587087436000047, 53.812648830000057 ], [ 14.580088738000086, 53.815334377000056 ], [ 14.574473504000082, 53.819077867000033 ], [ 14.569102410000085, 53.824164130000042 ], [ 14.574229363000086, 53.827093817000048 ], [ 14.583262566000087, 53.834214585000041 ], [ 14.58961022200009, 53.837836005000042 ], [ 14.57585696700005, 53.854803778000075 ], [ 14.55209394600007, 53.862779039000031 ], [ 14.44117272200009, 53.869614976000037 ], [ 14.42554772200009, 53.879828192000048 ], [ 14.438161655000044, 53.899318752000056 ], [ 14.43490644600007, 53.901312567000048 ], [ 14.434092644000089, 53.901597398000035 ], [ 14.433767123000052, 53.902411200000074 ], [ 14.431895379000082, 53.906154690000051 ], [ 14.422048373000052, 53.896144924000055 ], [ 14.414235873000052, 53.894720770000049 ], [ 14.405772332000083, 53.897406317000048 ], [ 14.393809441000087, 53.899318752000056 ], [ 14.385101759000065, 53.897284247000073 ], [ 14.37826582100007, 53.892320054000038 ], [ 14.371592644000089, 53.885891018000052 ], [ 14.36304772200009, 53.879380601000037 ], [ 14.392914259000065, 53.875962632000039 ], [ 14.409190300000091, 53.871568101000037 ], [ 14.41765384200005, 53.865139065000051 ], [ 14.41570071700005, 53.853013414000031 ], [ 14.405284050000091, 53.844183661000045 ], [ 14.392588738000086, 53.840725002000056 ], [ 14.383555535000085, 53.844671942000048 ], [ 14.356211785000085, 53.834458726000037 ], [ 14.342621290000068, 53.831854559000078 ], [ 14.328298373000052, 53.831000067000048 ], [ 14.328298373000052, 53.824164130000042 ], [ 14.342051629000082, 53.820990302000041 ], [ 14.341319207000083, 53.818915106000077 ], [ 14.328298373000052, 53.817328192000048 ], [ 14.318858269000089, 53.818182684000078 ], [ 14.303070509000065, 53.823065497000073 ], [ 14.291351759000065, 53.824164130000042 ], [ 14.274668816000087, 53.830796617000033 ], [ 14.226573113000086, 53.871975002000056 ], [ 14.203135613000086, 53.878322658000059 ], [ 14.200818737000134, 53.878157293000029 ], [ 14.192755981000118, 53.89376576800008 ], [ 14.175289348000092, 53.906478170000028 ], [ 14.184797811000067, 53.908131816 ], [ 14.193066040000105, 53.911490784000094 ], [ 14.210052931000064, 53.938462632000039 ], [ 14.226573113000086, 53.934027411000045 ], [ 14.237478061000047, 53.928656317000048 ], [ 14.268077019000089, 53.921820380000042 ], [ 14.367035352000073, 53.916978257000039 ], [ 14.406748894000089, 53.921820380000042 ], [ 14.445567254000082, 53.934027411000045 ], [ 14.51734459700009, 53.965236721000053 ], [ 14.781911655000044, 54.03461334800005 ], [ 15.010101759000065, 54.069810289000031 ], [ 15.288340691000087, 54.138861395000049 ], [ 15.46851647200009, 54.167141018000052 ], [ 15.66578209700009, 54.198431708000044 ], [ 15.859711134000065, 54.249986070000034 ], [ 16.02084394600007, 54.261786200000074 ], [ 16.131521030000044, 54.28351471600007 ], [ 16.11890709700009, 54.27602773600006 ], [ 16.069346550000091, 54.263006903000075 ], [ 16.091075066000087, 54.253973700000074 ], [ 16.179209832000083, 54.263006903000075 ], [ 16.179209832000083, 54.269191799000055 ], [ 16.172373894000089, 54.269191799000055 ], [ 16.172373894000089, 54.276597398000035 ], [ 16.22006269600007, 54.276597398000035 ], [ 16.219574415000068, 54.281480210000041 ], [ 16.21851647200009, 54.282375393000052 ], [ 16.216644727000073, 54.282049872000073 ], [ 16.213226759000065, 54.28351471600007 ], [ 16.215179884000065, 54.299627997000073 ], [ 16.192149285000085, 54.300279039000031 ], [ 16.137705925000091, 54.290269273000035 ], [ 16.172129754000082, 54.30023834800005 ], [ 16.213552280000044, 54.316107489000046 ], [ 16.275401238000086, 54.358587958000044 ], [ 16.262868686000047, 54.343695380000042 ], [ 16.240489129000082, 54.330023505000042 ], [ 16.23178144600007, 54.32257721600007 ], [ 16.240896030000044, 54.32453034100007 ], [ 16.259043816000087, 54.326727606000077 ], [ 16.274912957000083, 54.330471096000053 ], [ 16.28882897200009, 54.340236721000053 ], [ 16.32390384200005, 54.34992096600007 ], [ 16.336761915000068, 54.358587958000044 ], [ 16.324880405000044, 54.373114325000074 ], [ 16.305023634000065, 54.373480536000045 ], [ 16.29623457100007, 54.367254950000074 ], [ 16.281586134000065, 54.358587958000044 ], [ 16.32398522200009, 54.401312567000048 ], [ 16.439789259000065, 54.488267320000034 ], [ 16.439789259000065, 54.482123114000046 ], [ 16.434418165000068, 54.472357489000046 ], [ 16.444509311000047, 54.469875393000052 ], [ 16.46062259200005, 54.473456122000073 ], [ 16.473399285000085, 54.482123114000046 ], [ 16.479746941000087, 54.49555084800005 ], [ 16.473887566000087, 54.499660549000055 ], [ 16.460948113000086, 54.496486721000053 ], [ 16.446055535000085, 54.488267320000034 ], [ 16.46656334700009, 54.512152411000045 ], [ 16.50131269600007, 54.532416083000044 ], [ 16.569590691000087, 54.557196356000077 ], [ 16.778493686000047, 54.575140692000048 ], [ 16.78520975544988, 54.576696772267866 ], [ 16.785260044015786, 54.576643175442143 ], [ 16.787223747877647, 54.574550279471794 ], [ 16.856780226026615, 54.492901516191978 ], [ 16.93915245881891, 54.423396714886451 ], [ 16.970054965664133, 54.386603095556382 ], [ 16.977289666185129, 54.338750718970459 ], [ 16.966644320978617, 54.311930650379168 ], [ 16.940185987593225, 54.295962633468719 ], [ 16.932951287971548, 54.278160102106995 ], [ 16.943906690641256, 54.263664863542601 ], [ 16.96282026514308, 54.248265286513742 ], [ 16.966644320978617, 54.223357244940871 ], [ 16.950727980012232, 54.209042874429088 ], [ 16.811304966251157, 54.188837388734498 ], [ 16.874970330116639, 54.075123399525239 ], [ 16.882825148261986, 54.0200104839966 ], [ 16.883135206624445, 53.965026760576507 ], [ 16.925716586551232, 53.946888333329866 ], [ 16.949797804025422, 53.929938462689847 ], [ 16.987624953029126, 53.884644070067736 ], [ 17.015736931913864, 53.869838772241508 ], [ 17.03878462061374, 53.850227565749549 ], [ 17.05769819511562, 53.826378893171352 ], [ 17.002404413333011, 53.830771388888479 ], [ 16.952174919936567, 53.816818753582595 ], [ 16.953311802397764, 53.797130031825475 ], [ 16.973362257562144, 53.791497300859703 ], [ 16.990622185665302, 53.774444078331499 ], [ 17.00178429480934, 53.75330841754942 ], [ 16.972018670425257, 53.722018337975896 ], [ 16.930264112798568, 53.696671047730661 ], [ 16.947730747376056, 53.588150539915432 ], [ 16.910317010421693, 53.595204373283195 ], [ 16.872179803055474, 53.594584256558164 ], [ 16.836523065287224, 53.585204983223377 ], [ 16.810168083790018, 53.557919827538001 ], [ 16.790841099037493, 53.525001939987533 ], [ 16.765312940739591, 53.461207384013562 ], [ 16.735133905205544, 53.457719224962261 ], [ 16.551062453069733, 53.460638943232595 ], [ 16.528531528307383, 53.441518663155762 ], [ 16.529565057081697, 53.401676134346076 ], [ 16.545067986898061, 53.366045234100227 ], [ 16.607803175675997, 53.329561673132673 ], [ 16.683250767209131, 53.318037827883416 ], [ 16.720354444901716, 53.306358953902588 ], [ 16.751567010109397, 53.282406928536886 ], [ 16.757871534643584, 53.253700670449575 ], [ 16.727175734272691, 53.230885524847054 ], [ 16.703611280736027, 53.205796617020212 ], [ 16.674672478651928, 53.189311835272974 ], [ 16.600981886305021, 53.17551422779934 ], [ 16.456184523097249, 53.124716295420683 ], [ 16.37525923022929, 53.048235175113234 ], [ 16.278831008444286, 52.9931997748497 ], [ 16.21743940590386, 52.978704536285306 ], [ 16.155014276387703, 52.973614406779404 ], [ 16.093829380321608, 52.995628566704966 ], [ 16.03853559674036, 53.006738999904883 ], [ 16.056725701729761, 53.054255479706569 ], [ 16.030370721131874, 53.103218899432648 ], [ 15.980141228634807, 53.109936835116798 ], [ 15.925777621939687, 53.105337632925398 ], [ 15.873274367218244, 53.080326240363661 ], [ 15.783564080218127, 53.011183173364714 ], [ 15.73312788304537, 52.988936469442478 ], [ 15.527042270983998, 52.989272366226714 ], [ 15.357543572677741, 52.954184068340055 ], [ 15.301009555646488, 52.952323717265699 ], [ 15.320749953347672, 52.936097317037536 ], [ 15.348138461820554, 52.933306789976371 ], [ 15.31010460814116, 52.889640204431885 ], [ 15.248713005600735, 52.846490383724188 ], [ 15.19579633972927, 52.841968695898572 ], [ 15.029811638895978, 52.875325833020725 ], [ 14.931936476287319, 52.842562975101202 ], [ 14.868271112421894, 52.758123683860902 ], [ 14.78992964014077, 52.691099352153344 ], [ 14.739390090180507, 52.678180243823192 ], [ 14.654330682215175, 52.669912014527824 ], [ 14.632419875077176, 52.649913235307565 ], [ 14.607964828000092, 52.596462963000064 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PL-LU", "NAME_1": "Lublin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.176084425555757, 52.285129299777338 ], [ 23.18352502400009, 52.281306051000072 ], [ 23.194480428000048, 52.271461690000095 ], [ 23.197684367000136, 52.258310039000023 ], [ 23.189726196000066, 52.240533346000078 ], [ 23.212257121000079, 52.231670837000067 ], [ 23.284190715000136, 52.219733582000046 ], [ 23.299590292000119, 52.223428446000028 ], [ 23.312716105000078, 52.215289408000032 ], [ 23.374831177000146, 52.200949199000021 ], [ 23.395811808000076, 52.199579773000053 ], [ 23.395811808000076, 52.193378601000077 ], [ 23.388473755000064, 52.184154358000072 ], [ 23.391367635000051, 52.182500712000021 ], [ 23.405733684000069, 52.185911357000052 ], [ 23.418239380000045, 52.182500712000021 ], [ 23.427231079000109, 52.17679046700006 ], [ 23.436739542000083, 52.175679424000052 ], [ 23.450485474000118, 52.185911357000052 ], [ 23.454412882000071, 52.181467184000027 ], [ 23.464334757000074, 52.176351217000061 ], [ 23.470949341000079, 52.171622824000067 ], [ 23.487692505000041, 52.181622213000068 ], [ 23.491516561000054, 52.174103292000026 ], [ 23.488726033000091, 52.162140199000092 ], [ 23.484695272000096, 52.158626201000047 ], [ 23.512497192000069, 52.12444224100004 ], [ 23.531927531000036, 52.120644023000111 ], [ 23.579366496000119, 52.121548361000052 ], [ 23.598176717000058, 52.114520366000036 ], [ 23.604791301000148, 52.106768901000052 ], [ 23.609855591000013, 52.098629862000038 ], [ 23.615850057000046, 52.092299500000095 ], [ 23.625255168000109, 52.089715678000104 ], [ 23.637450806000118, 52.084470521000085 ], [ 23.641481567000113, 52.072920838000059 ], [ 23.642515096000096, 52.06139699400002 ], [ 23.650783325000134, 52.048942973000024 ], [ 23.664942668000094, 52.01116750100006 ], [ 23.676414835000088, 51.994088440000027 ], [ 23.660705200000052, 51.986879578000057 ], [ 23.647579386000075, 51.974089661000093 ], [ 23.628665812000122, 51.946339417000061 ], [ 23.622154582000064, 51.927942607000048 ], [ 23.621431111000078, 51.895567322000048 ], [ 23.614919881000105, 51.884250184000066 ], [ 23.618847290000076, 51.883268332000014 ], [ 23.620604289000141, 51.883216655000084 ], [ 23.62132775800012, 51.882028097000088 ], [ 23.621844523000078, 51.877428894000033 ], [ 23.609855591000013, 51.873268942 ], [ 23.605721476000099, 51.851590678000022 ], [ 23.594559367000073, 51.843296611000042 ], [ 23.610269002000024, 51.825184021000027 ], [ 23.628665812000122, 51.809758606000045 ], [ 23.617503703000096, 51.786504212000025 ], [ 23.598280070000072, 51.774670309 ], [ 23.577299439000086, 51.766686300000046 ], [ 23.560349569000067, 51.754542338000036 ], [ 23.556318806000064, 51.747359314000093 ], [ 23.552288045000068, 51.736636455000067 ], [ 23.546603637000118, 51.713588766000029 ], [ 23.550220988000035, 51.708421122000104 ], [ 23.556938924000036, 51.701393127000088 ], [ 23.55921268700007, 51.695166118000017 ], [ 23.550014282000063, 51.69242726700007 ], [ 23.546086873000093, 51.689636739000022 ], [ 23.549290812000066, 51.683203023000047 ], [ 23.555388631000113, 51.676304220000091 ], [ 23.560349569000067, 51.6719634 ], [ 23.547533813000086, 51.66206736300002 ], [ 23.541435994000039, 51.659741923000084 ], [ 23.53244429500009, 51.65896677700006 ], [ 23.53244429500009, 51.651499533000035 ], [ 23.543813110000087, 51.643799744000049 ], [ 23.545156697000039, 51.634110413000101 ], [ 23.539885702000106, 51.607109478000083 ], [ 23.543399699000076, 51.592743429000066 ], [ 23.55208133900004, 51.578816631000095 ], [ 23.57399214700007, 51.555303854 ], [ 23.567170857000121, 51.554890442 ], [ 23.560349569000067, 51.555303854 ], [ 23.57275191200003, 51.539671733000048 ], [ 23.588668253000066, 51.535899353000033 ], [ 23.602310832000057, 51.530783387000056 ], [ 23.606238241000142, 51.517399191000024 ], [ 23.608098592000147, 51.511223857000019 ], [ 23.614816528000063, 51.497219544000117 ], [ 23.630526164000031, 51.490424093000073 ], [ 23.648612915000058, 51.486212464000047 ], [ 23.662772258000103, 51.480192159000083 ], [ 23.647165975000064, 51.460193380000064 ], [ 23.648716268000072, 51.45396637000006 ], [ 23.68943729700004, 51.416423442000067 ], [ 23.697602173000064, 51.404434509000012 ], [ 23.686026652000123, 51.401049703000083 ], [ 23.678895304000065, 51.394073385000084 ], [ 23.677655070000128, 51.383789775000096 ], [ 23.683856242000019, 51.370276388000022 ], [ 23.665562785000049, 51.365806376000123 ], [ 23.647786092000018, 51.353998312 ], [ 23.634040161000087, 51.339296367000102 ], [ 23.628665812000122, 51.325963848000086 ], [ 23.635177043000084, 51.304698996000113 ], [ 23.650886678000063, 51.299608867000032 ], [ 23.670213664000102, 51.299376323000061 ], [ 23.687266886000145, 51.292400005000061 ], [ 23.742664022000099, 51.216254780999989 ], [ 23.765194946000122, 51.199020692000019 ], [ 23.816044556000037, 51.178789368000096 ], [ 23.863586873000145, 51.148274434000101 ], [ 23.874748983000103, 51.136130473000023 ], [ 23.858212524000095, 51.130730286000059 ], [ 23.854491821000096, 51.121531881000053 ], [ 23.869271281000096, 51.101739807000072 ], [ 23.895522909000135, 51.07610829700009 ], [ 23.904204549000099, 51.062724101000057 ], [ 23.915986776000096, 51.020866191 ], [ 23.915986776000096, 51.014665019000105 ], [ 23.91174930800014, 51.006810201000079 ], [ 23.919087361000038, 51.002727763000067 ], [ 23.93179976400009, 50.999472148000066 ], [ 23.943995402000098, 50.994201151000041 ], [ 23.95505415800011, 50.983555807000059 ], [ 23.957844685000083, 50.975339254000019 ], [ 23.958878214000066, 50.96634755500007 ], [ 23.964355916000045, 50.953221741 ], [ 23.979342081000112, 50.937512106000057 ], [ 24.046934855000075, 50.898031311000025 ], [ 24.130237264000101, 50.868937480000014 ], [ 24.143156372000107, 50.856431783000019 ], [ 24.130857381000084, 50.839068502000018 ], [ 24.100471639000119, 50.834986064000091 ], [ 24.067295369000107, 50.834831034000061 ], [ 24.046934855000075, 50.829094951000073 ], [ 24.020476521000091, 50.83855173700006 ], [ 23.99288130700009, 50.836226298000028 ], [ 23.969936971000067, 50.825167542000102 ], [ 23.957637980000101, 50.808010967000072 ], [ 23.959498332000123, 50.788890687000062 ], [ 23.974277791000134, 50.776178284000096 ], [ 23.997945598000058, 50.769201966000097 ], [ 24.025850871000046, 50.767031555000031 ], [ 24.025850871000046, 50.760830384000045 ], [ 24.012828410000111, 50.74331207300007 ], [ 24.026884400000114, 50.72801584900013 ], [ 24.054169555000044, 50.717163798000072 ], [ 24.081041301000141, 50.712978007000046 ], [ 24.074943482000094, 50.690188701000054 ], [ 24.082798299000018, 50.669156393000023 ], [ 24.108165422895922, 50.630287410735377 ], [ 24.108429809000086, 50.629882304000049 ], [ 24.08527876800008, 50.60440582300005 ], [ 24.095407349000141, 50.556863505000123 ], [ 24.102538696000096, 50.543634338000018 ], [ 24.107706340000078, 50.540843811000073 ], [ 24.106466105000067, 50.538621725000056 ], [ 24.093960408000044, 50.527149557000044 ], [ 24.075046835000109, 50.514282125000065 ], [ 24.010657999000017, 50.492784729 ], [ 24.007867472000072, 50.480744121000029 ], [ 24.00941776500008, 50.461468811000103 ], [ 24.007764120000047, 50.44849802700007 ], [ 24.003216593000104, 50.43769765200004 ], [ 23.981305786000036, 50.4047797650001 ], [ 23.928699178000045, 50.390827128000112 ], [ 23.747521606000106, 50.389380188000118 ], [ 23.713001749000057, 50.382403870000118 ], [ 23.69574182100007, 50.376771138 ], [ 23.682202596000081, 50.368244528000062 ], [ 23.671247193000085, 50.353568421 ], [ 23.658677406000038, 50.32700492700009 ], [ 23.658122186189928, 50.327212632856686 ], [ 23.557973259558253, 50.36467804575517 ], [ 23.525520460900509, 50.395683906287218 ], [ 23.462578565648244, 50.421470445204875 ], [ 23.388887974200657, 50.426689765020626 ], [ 23.331837192332557, 50.423175768446924 ], [ 23.30548221173467, 50.415837714239103 ], [ 23.223109978942375, 50.356203110884849 ], [ 23.158411086302578, 50.32269094503107 ], [ 23.082756789194434, 50.312459010974578 ], [ 22.858067660993754, 50.317135729330403 ], [ 22.721228468718834, 50.34199209226125 ], [ 22.711409945812306, 50.356668198878253 ], [ 22.74541303898053, 50.362094225168335 ], [ 22.761122674371904, 50.367933660809797 ], [ 22.734250928937229, 50.379715888477449 ], [ 22.594931267963602, 50.362068385847294 ], [ 22.559791294132879, 50.372532863900517 ], [ 22.533849724685012, 50.398061022198362 ], [ 22.526615025063336, 50.42291738512921 ], [ 22.543358189229025, 50.44369131070539 ], [ 22.568059523428246, 50.464646105233555 ], [ 22.599478794210995, 50.471312364074322 ], [ 22.630484652944347, 50.468857733797336 ], [ 22.657873163215868, 50.478986314167059 ], [ 22.646400994810051, 50.503351752481365 ], [ 22.622733189385144, 50.531489569787766 ], [ 22.620252719787175, 50.545338854104784 ], [ 22.621286247662169, 50.558929755104089 ], [ 22.612087844178632, 50.568102321964545 ], [ 22.454681431003223, 50.621975003143859 ], [ 22.221517367932165, 50.659647122516674 ], [ 22.203017206378945, 50.680059312886954 ], [ 22.248492466154346, 50.734526272369521 ], [ 22.262445103258869, 50.759899400137158 ], [ 22.230509066740012, 50.777727769920602 ], [ 22.195059035446093, 50.791680406125806 ], [ 22.156818475292368, 50.800930488251424 ], [ 22.117441033576824, 50.799845283532989 ], [ 22.051295200113373, 50.770441393455542 ], [ 21.976364373417084, 50.772818508467367 ], [ 21.844279412964511, 50.829765937547961 ], [ 21.839215121880329, 50.851263333535996 ], [ 21.813790317269309, 50.912448228702772 ], [ 21.811929966194953, 50.921775825194175 ], [ 21.809759555858818, 50.925263984245476 ], [ 21.805108676823977, 50.927124335319775 ], [ 21.800457797789136, 50.92973399522765 ], [ 21.798287388352264, 50.935444241458526 ], [ 21.799424269014764, 50.94172292757105 ], [ 21.802008091400296, 50.944642645841384 ], [ 21.804591912886451, 50.94652883623678 ], [ 21.805728794448271, 50.949706936026246 ], [ 21.813066846857453, 50.992908434476647 ], [ 21.809966261433829, 51.012442124804181 ], [ 21.791466098981289, 51.021072089305449 ], [ 21.791466098981289, 51.027919217098145 ], [ 21.79859744581546, 51.028823553763971 ], [ 21.807382439947617, 51.031459052093567 ], [ 21.815133905305458, 51.035696519978387 ], [ 21.819371372290959, 51.041587633362553 ], [ 21.815443962768654, 51.055075182473672 ], [ 21.790949334144443, 51.093574124146471 ], [ 21.783094516898416, 51.125665188497635 ], [ 21.773792758828733, 51.143596910169265 ], [ 21.771622349391919, 51.151451728314612 ], [ 21.773172642103759, 51.162923895821109 ], [ 21.776893345151734, 51.171605536266441 ], [ 21.785264927234607, 51.186178290095995 ], [ 21.803455031324631, 51.248448390880526 ], [ 21.815650669242984, 51.264416408690295 ], [ 21.825055780100172, 51.269429022931035 ], [ 21.83601118276988, 51.27046255080603 ], [ 21.834150831695524, 51.291443182856597 ], [ 21.846346469613877, 51.321673896133348 ], [ 21.852444288573054, 51.350405991743116 ], [ 21.812446730132478, 51.380326647556728 ], [ 21.814513787681165, 51.404666246549994 ], [ 21.837974888430324, 51.416500149262447 ], [ 21.8621594577927, 51.437480781312956 ], [ 21.863192986567071, 51.478434353262742 ], [ 21.832393833408673, 51.480372218702882 ], [ 21.832393833408673, 51.487245184917299 ], [ 21.847586703963202, 51.498407294061337 ], [ 21.844176060177006, 51.510757962509956 ], [ 21.826192660762672, 51.528198757766404 ], [ 21.8240222513258, 51.542383937968339 ], [ 21.824849073625842, 51.553752752687387 ], [ 21.821231724264635, 51.562589422763608 ], [ 21.805728794448271, 51.569152329716189 ], [ 21.796220330803635, 51.569720771396476 ], [ 21.771622349391919, 51.562951157969565 ], [ 21.754052362026869, 51.561788438885344 ], [ 21.702582635180477, 51.568583888935279 ], [ 21.674780714658255, 51.576593735812253 ], [ 21.66000125525369, 51.587549140280601 ], [ 21.647288853397868, 51.600881659760773 ], [ 21.645945265361718, 51.611165269761386 ], [ 21.656280552205715, 51.636745104003296 ], [ 21.692454053911433, 51.642739570175024 ], [ 21.728214146265827, 51.633644518579615 ], [ 21.80107791541343, 51.626564845890925 ], [ 21.871977979799908, 51.642119453449993 ], [ 21.896886021372779, 51.656795559167676 ], [ 21.90360395705693, 51.679610703870878 ], [ 21.853167758984853, 51.727747301296915 ], [ 21.891718376601773, 51.761388658359863 ], [ 21.946805453708691, 51.782059231148594 ], [ 21.911768832665473, 51.815235501117456 ], [ 21.887480909616272, 51.852390856552745 ], [ 21.883450148205782, 51.878900864982882 ], [ 21.86370975140386, 51.905049140005758 ], [ 21.847586703963202, 51.933135281368095 ], [ 21.841282179429015, 51.958379217926563 ], [ 21.912285596602999, 51.991012885536236 ], [ 21.988353305760427, 52.004526272169699 ], [ 22.133150668968199, 52.003983669810509 ], [ 22.270093214929886, 52.020804348341983 ], [ 22.320839471364479, 52.014913234957817 ], [ 22.355876092407698, 52.021889553060419 ], [ 22.451374139105212, 52.065969549754868 ], [ 22.489821404833947, 52.06873423929369 ], [ 22.599685499785949, 52.062300523550277 ], [ 22.655289340830393, 52.090154120016621 ], [ 22.660043572652739, 52.105088609052018 ], [ 22.666451449974431, 52.117801011807217 ], [ 22.68298790856511, 52.128601385745355 ], [ 22.701178012655134, 52.136094469584066 ], [ 22.742105747082519, 52.130255032143964 ], [ 22.859307896242399, 52.093151354451436 ], [ 22.898271925908659, 52.102143053259283 ], [ 22.931344842190697, 52.128213813017055 ], [ 22.959973585912223, 52.169296577075329 ], [ 23.054954867772892, 52.255415351337376 ], [ 23.086994256179935, 52.292338161876671 ], [ 23.100533482134495, 52.295981350558861 ], [ 23.118826939012024, 52.293190823497696 ], [ 23.150246208895396, 52.281563626360253 ], [ 23.168126254622962, 52.281718655091822 ], [ 23.176084425555757, 52.285129299777338 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PL-PM", "NAME_1": "Pomeranian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.609548373000052, 54.456732489000046 ], [ 19.630770304000066, 54.446651917000011 ], [ 19.680276326000126, 54.436678365 ], [ 19.758255974000093, 54.434255669 ], [ 19.754174431904516, 54.433008531318649 ], [ 19.743219028335488, 54.433628648043623 ], [ 19.744976026622339, 54.429184475483112 ], [ 19.747559849007814, 54.418280747858205 ], [ 19.74942020008217, 54.413784898454253 ], [ 19.733607211903291, 54.411924547379954 ], [ 19.725855747444768, 54.402002671685921 ], [ 19.720481397998128, 54.391047268116893 ], [ 19.71179975755274, 54.385827949200461 ], [ 19.697433709298252, 54.384587713951817 ], [ 19.683894484243012, 54.381383774841311 ], [ 19.619195590703953, 54.353478502430903 ], [ 19.579818149887672, 54.350326240163838 ], [ 19.563385044084498, 54.346347153798092 ], [ 19.485560336640219, 54.317563382244259 ], [ 19.47284793478434, 54.315703030270583 ], [ 19.460032179241637, 54.310948798448237 ], [ 19.434710728317441, 54.297099514131219 ], [ 19.409389275594549, 54.272914943869523 ], [ 19.403084751060419, 54.269142564877427 ], [ 19.396263461689387, 54.263173937127476 ], [ 19.378486768749383, 54.235914618964443 ], [ 19.365154250168473, 54.228163154505921 ], [ 19.365774366893504, 54.242890937067045 ], [ 19.369805129203314, 54.254983222197893 ], [ 19.376936476037542, 54.263923245061676 ], [ 19.38634158689473, 54.269142564877427 ], [ 19.38634158689473, 54.276583970973434 ], [ 19.362880487044833, 54.274878647731384 ], [ 19.273893669557197, 54.281596585214231 ], [ 19.249709100194821, 54.265370184986011 ], [ 19.242784458036283, 54.231315415873723 ], [ 19.264798617961844, 54.192919826988373 ], [ 19.285262485175508, 54.171577459731964 ], [ 19.295804477594572, 54.146514391226162 ], [ 19.284435662875524, 54.128220934348633 ], [ 19.268829380271654, 54.112046210064534 ], [ 19.22521447067129, 54.086052965571866 ], [ 19.209298129704905, 54.072100328467343 ], [ 19.21188195209038, 54.052463284452983 ], [ 19.230072056180404, 54.009468492476913 ], [ 19.263558383612519, 53.976912340132344 ], [ 19.311824172247725, 53.960117499123271 ], [ 19.363190545407349, 53.956086737712724 ], [ 19.389235466743401, 53.935157783404975 ], [ 19.369805129203314, 53.89575450326771 ], [ 19.405358514184059, 53.885496730789441 ], [ 19.504370558354594, 53.890302639455228 ], [ 19.554393345276651, 53.88221527821247 ], [ 19.550362582966841, 53.866014716406028 ], [ 19.550362582966841, 53.849271552240339 ], [ 19.538373650623441, 53.836016547125951 ], [ 19.520080193745912, 53.825086981978586 ], [ 19.504370558354594, 53.796561591044565 ], [ 19.492381626011195, 53.785554511531473 ], [ 19.490417922149391, 53.769328111303253 ], [ 19.433883905118137, 53.754600327842809 ], [ 19.353165316925811, 53.75775259100925 ], [ 19.311307407410879, 53.742094632461317 ], [ 19.275857375217697, 53.719253648437075 ], [ 19.12826948404944, 53.555878608411035 ], [ 19.074112582929331, 53.541590074522276 ], [ 18.960114372880014, 53.537533473790745 ], [ 18.905647414296709, 53.550426743699234 ], [ 18.874641553764661, 53.562260647311007 ], [ 18.808805779563045, 53.602749132166707 ], [ 18.792682733021707, 53.608976142335052 ], [ 18.779143507966523, 53.618639634711371 ], [ 18.759403110265282, 53.625228380085673 ], [ 18.677857699773028, 53.632075506979049 ], [ 18.620290154866723, 53.619854031538296 ], [ 18.582979770699865, 53.605255439287077 ], [ 18.497817009947028, 53.635434474821125 ], [ 18.317879672908589, 53.653211167761128 ], [ 18.285220167776515, 53.671711331112988 ], [ 18.255661248068122, 53.694190579031954 ], [ 18.220521274237399, 53.696025092583909 ], [ 18.051125928718648, 53.680961412339286 ], [ 17.924105259350199, 53.695637518956289 ], [ 17.897130161128018, 53.683209337041262 ], [ 17.856409133174964, 53.63879344356252 ], [ 17.7876794782253, 53.623600572108671 ], [ 17.755640089818257, 53.605772203224547 ], [ 17.750059034796607, 53.592801418950273 ], [ 17.746028273386116, 53.57848704753917 ], [ 17.74551150944859, 53.55729970991365 ], [ 17.683189731820676, 53.542365220878196 ], [ 17.544490186672761, 53.563914292810352 ], [ 17.507593214555186, 53.561588853742592 ], [ 17.479687941245459, 53.538644517830221 ], [ 17.455400018196258, 53.506915187785637 ], [ 17.425220981762891, 53.444024970276132 ], [ 17.397212354766339, 53.43379303711896 ], [ 17.352770622865933, 53.465574042208232 ], [ 17.29933719215768, 53.483092352729841 ], [ 17.095732048795014, 53.488053290127198 ], [ 17.037234327901899, 53.509343981439542 ], [ 16.995789828637669, 53.552855537353139 ], [ 16.947730747376056, 53.588150539915432 ], [ 16.930264112798568, 53.696671047730661 ], [ 16.972018670425257, 53.722018337975896 ], [ 17.00178429480934, 53.75330841754942 ], [ 16.990622185665302, 53.774444078331499 ], [ 16.973362257562144, 53.791497300859703 ], [ 16.953311802397764, 53.797130031825475 ], [ 16.952174919936567, 53.816818753582595 ], [ 17.002404413333011, 53.830771388888479 ], [ 17.05769819511562, 53.826378893171352 ], [ 17.03878462061374, 53.850227565749549 ], [ 17.015736931913864, 53.869838772241508 ], [ 16.987624953029126, 53.884644070067736 ], [ 16.949797804025422, 53.929938462689847 ], [ 16.925716586551232, 53.946888333329866 ], [ 16.883135206624445, 53.965026760576507 ], [ 16.882825148261986, 54.0200104839966 ], [ 16.874970330116639, 54.075123399525239 ], [ 16.811304966251157, 54.188837388734498 ], [ 16.950727980012232, 54.209042874429088 ], [ 16.966644320978617, 54.223357244940871 ], [ 16.96282026514308, 54.248265286513742 ], [ 16.943906690641256, 54.263664863542601 ], [ 16.932951287971548, 54.278160102106995 ], [ 16.940185987593225, 54.295962633468719 ], [ 16.966644320978617, 54.311930650379168 ], [ 16.977289666185129, 54.338750718970459 ], [ 16.970054965664133, 54.386603095556382 ], [ 16.93915245881891, 54.423396714886451 ], [ 16.856780226026615, 54.492901516191978 ], [ 16.787223747877647, 54.574550279471794 ], [ 16.785260044015786, 54.576643175442143 ], [ 16.78520975544988, 54.576696772267866 ], [ 16.859629754000082, 54.593939520000049 ], [ 16.902191602000073, 54.598130601000037 ], [ 16.939952019000089, 54.606024481000077 ], [ 17.035817905000044, 54.667059637000079 ], [ 17.337412957000083, 54.749009507000039 ], [ 17.715668165000068, 54.790432033000059 ], [ 17.885427280000044, 54.824123440000051 ], [ 18.152354363000086, 54.838324286000045 ], [ 18.316905144000089, 54.838324286000045 ], [ 18.33952884200005, 54.833482164000031 ], [ 18.375824415000068, 54.815130927000041 ], [ 18.389170769000089, 54.811102606000077 ], [ 18.410166863000086, 54.808294989000046 ], [ 18.75171959700009, 54.69009023600006 ], [ 18.813975457000083, 54.64321523600006 ], [ 18.824066602000073, 54.632228908000059 ], [ 18.834320509000065, 54.616685289000031 ], [ 18.83529707100007, 54.603094794000071 ], [ 18.817637566000087, 54.598130601000037 ], [ 18.813243035000085, 54.601548570000034 ], [ 18.80836022200009, 54.60883209800005 ], [ 18.802256707000083, 54.616034247000073 ], [ 18.784027540000068, 54.623521226000037 ], [ 18.771820509000065, 54.642279364000046 ], [ 18.755381707000083, 54.654486395000049 ], [ 18.707774285000085, 54.701239325000074 ], [ 18.698496941000087, 54.703802802000041 ], [ 18.66342207100007, 54.707993882000039 ], [ 18.654551629000082, 54.710150458000044 ], [ 18.645030144000089, 54.719549872000073 ], [ 18.616709832000083, 54.72524648600006 ], [ 18.556976759000065, 54.749009507000039 ], [ 18.498220248000052, 54.765366929000038 ], [ 18.488780144000089, 54.773179429000038 ], [ 18.456309441000087, 54.787665106000077 ], [ 18.447764519000089, 54.789984442000048 ], [ 18.435557488000086, 54.786810614000046 ], [ 18.429209832000083, 54.781683661000045 ], [ 18.415049675000091, 54.753119208000044 ], [ 18.413096550000091, 54.746527411000045 ], [ 18.413096550000091, 54.731919664000031 ], [ 18.418467644000089, 54.728216864000046 ], [ 18.442393425000091, 54.721991278000075 ], [ 18.447764519000089, 54.718247789000031 ], [ 18.459808790000068, 54.706040757000039 ], [ 18.474457227000073, 54.687567450000074 ], [ 18.473887566000087, 54.679917710000041 ], [ 18.47006269600007, 54.67328522300005 ], [ 18.47038821700005, 54.666734117000033 ], [ 18.481944207000083, 54.65961334800005 ], [ 18.47592207100007, 54.64008209800005 ], [ 18.487315300000091, 54.631781317000048 ], [ 18.506358269000089, 54.634100653000075 ], [ 18.522959832000083, 54.646551825000074 ], [ 18.517100457000083, 54.629950262000079 ], [ 18.52515709700009, 54.616685289000031 ], [ 18.537608269000089, 54.605454820000034 ], [ 18.562836134000065, 54.56000397300005 ], [ 18.570648634000065, 54.550360419000071 ], [ 18.566742384000065, 54.527411200000074 ], [ 18.567556186000047, 54.487860419000071 ], [ 18.574066602000073, 54.450384833000044 ], [ 18.588063998000052, 54.433661200000074 ], [ 18.603770379000082, 54.430609442000048 ], [ 18.634287957000083, 54.416937567000048 ], [ 18.649912957000083, 54.413804429000038 ], [ 18.663340691000087, 54.412990627000056 ], [ 18.680023634000065, 54.409979559000078 ], [ 18.694346550000091, 54.404527085000041 ], [ 18.700450066000087, 54.395819403000075 ], [ 18.717295769000089, 54.382025458000044 ], [ 18.885915561000047, 54.350165106000077 ], [ 18.92318769600007, 54.348537502000056 ], [ 18.954356316000087, 54.358587958000044 ], [ 18.962901238000086, 54.353501695000034 ], [ 18.974619988000086, 54.349758205000057 ], [ 19.002126498000052, 54.344916083000044 ], [ 19.377207879000082, 54.377630927000041 ], [ 19.459971550000091, 54.40102773600006 ], [ 19.499278191000087, 54.406398830000057 ], [ 19.53101647200009, 54.414943752000056 ], [ 19.592539910000085, 54.452378648000035 ], [ 19.609548373000052, 54.456732489000046 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PL-MZ", "NAME_1": "Masovian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.522955357403816, 53.443508206338606 ], [ 21.536287875984669, 53.408755805236183 ], [ 21.55923221189704, 53.37635468252256 ], [ 21.57525190565093, 53.33700307922868 ], [ 21.600366651899435, 53.222074693192496 ], [ 21.655970492943879, 53.137997138057472 ], [ 21.692764113173268, 53.095260729399115 ], [ 21.745887484619686, 53.077819933243291 ], [ 21.8008712089391, 53.073039862999224 ], [ 21.846759880763841, 53.051645819798694 ], [ 21.830533482334317, 53.033610745339615 ], [ 21.834667595632993, 53.008185939829218 ], [ 21.860195753930896, 52.980642401725447 ], [ 21.898332961297115, 52.968007514235353 ], [ 21.922827589921326, 52.95276296683744 ], [ 21.937400343750824, 52.927932441428993 ], [ 21.951146275280337, 52.891242173987109 ], [ 21.977604607766409, 52.861993313540552 ], [ 22.048918084202228, 52.839565742465027 ], [ 22.124779086885326, 52.846387030936683 ], [ 22.174698521019934, 52.879046536068756 ], [ 22.223067660644006, 52.856877346512306 ], [ 22.207254673364446, 52.801686917517202 ], [ 22.232369418713688, 52.780292874316672 ], [ 22.263581983921426, 52.767089545146348 ], [ 22.31990929537767, 52.784220282939657 ], [ 22.377890252333259, 52.79411631931265 ], [ 22.393496534937128, 52.747116604347809 ], [ 22.39969770668381, 52.695000922354666 ], [ 22.411789991814658, 52.659705918892996 ], [ 22.414993930925164, 52.622343857882697 ], [ 22.411893344602163, 52.600639757218971 ], [ 22.467807244908386, 52.564337063404707 ], [ 22.488581169585302, 52.546767076039714 ], [ 22.510698683197631, 52.53529490853316 ], [ 22.517623325356169, 52.52935211920493 ], [ 22.520103794054819, 52.519533596298402 ], [ 22.516693150268679, 52.511317043846475 ], [ 22.512352328696977, 52.503410549757064 ], [ 22.511422152710168, 52.494573880580106 ], [ 22.515039503870014, 52.481758124138082 ], [ 22.519793734792984, 52.473334866111145 ], [ 22.528165316875857, 52.468683987076304 ], [ 22.542221306767885, 52.46728872309609 ], [ 22.54480512915336, 52.462534492173063 ], [ 22.538810662981689, 52.429435737469305 ], [ 22.545838657028355, 52.418712876997631 ], [ 22.562685173981549, 52.404062607903029 ], [ 22.58294233562026, 52.394528306735936 ], [ 22.600202263723475, 52.399024156139888 ], [ 22.611881137704302, 52.387267767793219 ], [ 22.636272414440384, 52.383624579111029 ], [ 22.688982374736781, 52.385381578297199 ], [ 22.844631788726076, 52.365641181495278 ], [ 22.922766553633551, 52.37225576439198 ], [ 22.952015414979428, 52.366519679739383 ], [ 22.975063103679247, 52.352825425952631 ], [ 22.984468215435754, 52.330139472458654 ], [ 23.00575890494946, 52.337012437773751 ], [ 23.023949009039541, 52.33047536924289 ], [ 23.052060987924222, 52.30962392840155 ], [ 23.047100051426241, 52.304197903010788 ], [ 23.04203576034206, 52.293759264278606 ], [ 23.039038526806564, 52.289160061187829 ], [ 23.055678338184748, 52.282855537552962 ], [ 23.071904738412911, 52.285956122077323 ], [ 23.086994256179935, 52.292338161876671 ], [ 23.054954867772892, 52.255415351337376 ], [ 22.959973585912223, 52.169296577075329 ], [ 22.931344842190697, 52.128213813017055 ], [ 22.898271925908659, 52.102143053259283 ], [ 22.859307896242399, 52.093151354451436 ], [ 22.742105747082519, 52.130255032143964 ], [ 22.701178012655134, 52.136094469584066 ], [ 22.68298790856511, 52.128601385745355 ], [ 22.666451449974431, 52.117801011807217 ], [ 22.660043572652739, 52.105088609052018 ], [ 22.655289340830393, 52.090154120016621 ], [ 22.599685499785949, 52.062300523550277 ], [ 22.489821404833947, 52.06873423929369 ], [ 22.451374139105212, 52.065969549754868 ], [ 22.355876092407698, 52.021889553060419 ], [ 22.320839471364479, 52.014913234957817 ], [ 22.270093214929886, 52.020804348341983 ], [ 22.133150668968199, 52.003983669810509 ], [ 21.988353305760427, 52.004526272169699 ], [ 21.912285596602999, 51.991012885536236 ], [ 21.841282179429015, 51.958379217926563 ], [ 21.847586703963202, 51.933135281368095 ], [ 21.86370975140386, 51.905049140005758 ], [ 21.883450148205782, 51.878900864982882 ], [ 21.887480909616272, 51.852390856552745 ], [ 21.911768832665473, 51.815235501117456 ], [ 21.946805453708691, 51.782059231148594 ], [ 21.891718376601773, 51.761388658359863 ], [ 21.853167758984853, 51.727747301296915 ], [ 21.90360395705693, 51.679610703870878 ], [ 21.896886021372779, 51.656795559167676 ], [ 21.871977979799908, 51.642119453449993 ], [ 21.80107791541343, 51.626564845890925 ], [ 21.728214146265827, 51.633644518579615 ], [ 21.692454053911433, 51.642739570175024 ], [ 21.656280552205715, 51.636745104003296 ], [ 21.645945265361718, 51.611165269761386 ], [ 21.647288853397868, 51.600881659760773 ], [ 21.66000125525369, 51.587549140280601 ], [ 21.674780714658255, 51.576593735812253 ], [ 21.702582635180477, 51.568583888935279 ], [ 21.754052362026869, 51.561788438885344 ], [ 21.771622349391919, 51.562951157969565 ], [ 21.796220330803635, 51.569720771396476 ], [ 21.805728794448271, 51.569152329716189 ], [ 21.821231724264635, 51.562589422763608 ], [ 21.824849073625842, 51.553752752687387 ], [ 21.8240222513258, 51.542383937968339 ], [ 21.826192660762672, 51.528198757766404 ], [ 21.844176060177006, 51.510757962509956 ], [ 21.847586703963202, 51.498407294061337 ], [ 21.832393833408673, 51.487245184917299 ], [ 21.832393833408673, 51.480372218702882 ], [ 21.863192986567071, 51.478434353262742 ], [ 21.8621594577927, 51.437480781312956 ], [ 21.837974888430324, 51.416500149262447 ], [ 21.814513787681165, 51.404666246549994 ], [ 21.812446730132478, 51.380326647556728 ], [ 21.852444288573054, 51.350405991743116 ], [ 21.846346469613877, 51.321673896133348 ], [ 21.834150831695524, 51.291443182856597 ], [ 21.83601118276988, 51.27046255080603 ], [ 21.825055780100172, 51.269429022931035 ], [ 21.815650669242984, 51.264416408690295 ], [ 21.803455031324631, 51.248448390880526 ], [ 21.785264927234607, 51.186178290095995 ], [ 21.776893345151734, 51.171605536266441 ], [ 21.773172642103759, 51.162923895821109 ], [ 21.771622349391919, 51.151451728314612 ], [ 21.773792758828733, 51.143596910169265 ], [ 21.783094516898416, 51.125665188497635 ], [ 21.790949334144443, 51.093574124146471 ], [ 21.815443962768654, 51.055075182473672 ], [ 21.495566847132295, 51.013165595216037 ], [ 21.329995558348344, 51.045825100348054 ], [ 21.253101026890874, 51.050010891389491 ], [ 21.184681431203046, 51.077993679065003 ], [ 21.178273552982091, 51.093212388940572 ], [ 21.174036085996534, 51.109852200318755 ], [ 21.144063755138177, 51.131065375466676 ], [ 21.135692173055304, 51.16468089500728 ], [ 21.105513135722617, 51.171192125116477 ], [ 21.074093865839245, 51.152536933032991 ], [ 21.044741651705863, 51.126802070059455 ], [ 21.011668735423768, 51.114942328026018 ], [ 20.8727624847009, 51.100963854298413 ], [ 20.75173628060486, 51.116751004055573 ], [ 20.726001417631323, 51.12902415633971 ], [ 20.704814080005747, 51.15021149396523 ], [ 20.681559685730917, 51.166902981287535 ], [ 20.516918572933776, 51.23038747799967 ], [ 20.487256301337197, 51.277490545752073 ], [ 20.432065871442774, 51.28994456608882 ], [ 20.428655225857995, 51.319400133009708 ], [ 20.441367628613136, 51.3466077743293 ], [ 20.505446405427278, 51.384124864071168 ], [ 20.522189568693648, 51.411616726230932 ], [ 20.522292922380473, 51.443733629003759 ], [ 20.509373814050264, 51.452880357442496 ], [ 20.47247684103337, 51.463939113799029 ], [ 20.464932082149858, 51.480113837183808 ], [ 20.461211379101826, 51.511998195959961 ], [ 20.451392857094675, 51.542797350017679 ], [ 20.421627231811271, 51.587239081018765 ], [ 20.447568801259138, 51.643463039687504 ], [ 20.525496859692282, 51.643514716530944 ], [ 20.585441522308372, 51.623360908579059 ], [ 20.658098585881021, 51.617108059089617 ], [ 20.67101769421123, 51.633541164892847 ], [ 20.673601514798065, 51.657363999948586 ], [ 20.658305290556711, 51.682840481403048 ], [ 20.604458448698438, 51.717670396871313 ], [ 20.595156690628755, 51.746247463749398 ], [ 20.600427687287947, 51.758934028082876 ], [ 20.610452914870109, 51.76810659404407 ], [ 20.619341260890451, 51.779578762449887 ], [ 20.612933383568759, 51.796011868253117 ], [ 20.55402225062636, 51.844794419926529 ], [ 20.481571892628722, 51.879546821028953 ], [ 20.415116000802755, 51.898512071474897 ], [ 20.30907596168629, 51.890993150113786 ], [ 20.273109164656205, 51.898176174690661 ], [ 20.264427525110193, 51.91435089807544 ], [ 20.266907992909523, 51.933212795733937 ], [ 20.243136833797848, 51.955252794081161 ], [ 20.21616173737425, 51.974295558892891 ], [ 20.207893508078939, 51.995534573361851 ], [ 20.241276482723492, 52.007575182548635 ], [ 20.251715122354994, 52.057649645414756 ], [ 20.237865838037976, 52.068398342509454 ], [ 20.198798454684948, 52.084521389050849 ], [ 20.130068800634604, 52.101574612478373 ], [ 20.11456587081824, 52.099249173410612 ], [ 20.100199822563752, 52.103977565911919 ], [ 20.079942660925042, 52.131831163277525 ], [ 20.07642866435134, 52.166945298686585 ], [ 20.063819614383704, 52.192473456085111 ], [ 20.036224400335811, 52.204255682853443 ], [ 20.000877720030758, 52.210715237018519 ], [ 19.969458449248009, 52.220688787757297 ], [ 19.945377231773818, 52.246423652529529 ], [ 19.918195427976627, 52.267688504520834 ], [ 19.880988396597218, 52.265647285393868 ], [ 19.849155714664505, 52.245648505274289 ], [ 19.641416457103787, 52.219241847832961 ], [ 19.548915643042449, 52.265053006191238 ], [ 19.497549268983562, 52.279858303118147 ], [ 19.392336053066401, 52.293500881860211 ], [ 19.295907830382077, 52.334170233869145 ], [ 19.302522414178043, 52.35127513324079 ], [ 19.30655317558859, 52.368069973350543 ], [ 19.380450474409827, 52.442639064840932 ], [ 19.376419712100017, 52.461165065715193 ], [ 19.355852492098791, 52.47400666057888 ], [ 19.361123487858663, 52.512428086986574 ], [ 19.38768517403156, 52.545501004167988 ], [ 19.454967889056832, 52.664692694712073 ], [ 19.497859328245397, 52.671694851236396 ], [ 19.497032505046036, 52.704793605940154 ], [ 19.468197055749499, 52.747013251560304 ], [ 19.45145389158381, 52.765875149218743 ], [ 19.440395135227277, 52.786778266004148 ], [ 19.448870070097655, 52.806983750799418 ], [ 19.46881717337385, 52.820393785544752 ], [ 19.473881462659335, 52.857290758561646 ], [ 19.458378533742348, 52.898321844877216 ], [ 19.507264439102585, 52.894471951519336 ], [ 19.549018995829954, 52.91573680351064 ], [ 19.567725863857504, 52.932790025139525 ], [ 19.588913202382344, 52.945089015845383 ], [ 19.608240187134925, 52.940231432134851 ], [ 19.626740349587465, 52.932273261201999 ], [ 19.645757276876793, 52.930929674065169 ], [ 19.655369094208311, 52.947982897492693 ], [ 19.660640089968183, 52.967464911876164 ], [ 19.663533969816854, 52.987205309577348 ], [ 19.655472446096496, 53.016660874699596 ], [ 19.654645622897135, 53.036401272400781 ], [ 19.648651156725464, 53.05526317005922 ], [ 19.699914177996902, 53.069784247045334 ], [ 19.74786990737033, 53.093141995007045 ], [ 19.782389763576703, 53.09841299076686 ], [ 19.811225212873239, 53.11288239180891 ], [ 19.837063428634281, 53.143681545866627 ], [ 19.876750928712397, 53.151122951962634 ], [ 19.89390750492737, 53.148900864783059 ], [ 19.909513788430559, 53.142441311517302 ], [ 19.916025017640436, 53.133604641441025 ], [ 19.924810010873273, 53.127300116906838 ], [ 20.240553013210956, 53.097999578717577 ], [ 20.31579389826976, 53.106319484856328 ], [ 20.345972934703184, 53.115466214194385 ], [ 20.37191450415105, 53.133733831750931 ], [ 20.38886437299243, 53.167478543400023 ], [ 20.419766879837596, 53.181973781964416 ], [ 20.45821414556633, 53.179544990109207 ], [ 20.494801060220709, 53.186107897061788 ], [ 20.634637485131805, 53.234632066316806 ], [ 20.667813755100724, 53.258325711062696 ], [ 20.703987257705762, 53.27594737437181 ], [ 20.775610793403359, 53.275430610434285 ], [ 20.839069451693831, 53.283362942046097 ], [ 20.912346632890774, 53.308632717026228 ], [ 21.007948032375793, 53.308400173928874 ], [ 21.09786502495092, 53.325608426087967 ], [ 21.173726026734755, 53.379636135099531 ], [ 21.262609491434887, 53.37462352175811 ], [ 21.307981398422783, 53.378809312799547 ], [ 21.348805780062662, 53.396095079324425 ], [ 21.377434522884926, 53.429917304440039 ], [ 21.402032505195962, 53.437875475372891 ], [ 21.522955357403816, 53.443508206338606 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PL-LD", "NAME_1": "Łódź" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.295907830382077, 52.334170233869145 ], [ 19.392336053066401, 52.293500881860211 ], [ 19.497549268983562, 52.279858303118147 ], [ 19.548915643042449, 52.265053006191238 ], [ 19.641416457103787, 52.219241847832961 ], [ 19.849155714664505, 52.245648505274289 ], [ 19.880988396597218, 52.265647285393868 ], [ 19.918195427976627, 52.267688504520834 ], [ 19.945377231773818, 52.246423652529529 ], [ 19.969458449248009, 52.220688787757297 ], [ 20.000877720030758, 52.210715237018519 ], [ 20.036224400335811, 52.204255682853443 ], [ 20.063819614383704, 52.192473456085111 ], [ 20.07642866435134, 52.166945298686585 ], [ 20.079942660925042, 52.131831163277525 ], [ 20.100199822563752, 52.103977565911919 ], [ 20.11456587081824, 52.099249173410612 ], [ 20.130068800634604, 52.101574612478373 ], [ 20.198798454684948, 52.084521389050849 ], [ 20.237865838037976, 52.068398342509454 ], [ 20.251715122354994, 52.057649645414756 ], [ 20.241276482723492, 52.007575182548635 ], [ 20.207893508078939, 51.995534573361851 ], [ 20.21616173737425, 51.974295558892891 ], [ 20.243136833797848, 51.955252794081161 ], [ 20.266907992909523, 51.933212795733937 ], [ 20.264427525110193, 51.91435089807544 ], [ 20.273109164656205, 51.898176174690661 ], [ 20.30907596168629, 51.890993150113786 ], [ 20.415116000802755, 51.898512071474897 ], [ 20.481571892628722, 51.879546821028953 ], [ 20.55402225062636, 51.844794419926529 ], [ 20.612933383568759, 51.796011868253117 ], [ 20.619341260890451, 51.779578762449887 ], [ 20.610452914870109, 51.76810659404407 ], [ 20.600427687287947, 51.758934028082876 ], [ 20.595156690628755, 51.746247463749398 ], [ 20.604458448698438, 51.717670396871313 ], [ 20.658305290556711, 51.682840481403048 ], [ 20.673601514798065, 51.657363999948586 ], [ 20.67101769421123, 51.633541164892847 ], [ 20.658098585881021, 51.617108059089617 ], [ 20.585441522308372, 51.623360908579059 ], [ 20.525496859692282, 51.643514716530944 ], [ 20.447568801259138, 51.643463039687504 ], [ 20.421627231811271, 51.587239081018765 ], [ 20.451392857094675, 51.542797350017679 ], [ 20.461211379101826, 51.511998195959961 ], [ 20.464932082149858, 51.480113837183808 ], [ 20.47247684103337, 51.463939113799029 ], [ 20.509373814050264, 51.452880357442496 ], [ 20.522292922380473, 51.443733629003759 ], [ 20.522189568693648, 51.411616726230932 ], [ 20.505446405427278, 51.384124864071168 ], [ 20.441367628613136, 51.3466077743293 ], [ 20.428655225857995, 51.319400133009708 ], [ 20.432065871442774, 51.28994456608882 ], [ 20.403437126821927, 51.276560369765207 ], [ 20.366643508391178, 51.219612942483309 ], [ 20.333467238422315, 51.210052801995175 ], [ 20.300187615665891, 51.206771349418204 ], [ 20.268458285621364, 51.197056179299182 ], [ 20.199005161159221, 51.155585842512608 ], [ 20.166862419964673, 51.14982392033761 ], [ 20.056274854600815, 51.159513251135593 ], [ 20.025062290292453, 51.152330227457981 ], [ 20.000567660768922, 51.132073065819327 ], [ 19.975762973782196, 51.071714992952536 ], [ 20.021444940031927, 51.028100084251435 ], [ 20.05234744597783, 51.012493800748302 ], [ 20.062062616096853, 50.979033311737908 ], [ 20.054104445164, 50.94634796818417 ], [ 20.031470167614145, 50.929423936865192 ], [ 19.899385207161572, 50.990479640822741 ], [ 19.863935174069013, 50.986448880311571 ], [ 19.851119419425629, 50.954202786329517 ], [ 19.85039594901383, 50.92224091228826 ], [ 19.85442671132364, 50.890692451195662 ], [ 19.837373487896116, 50.860694281915528 ], [ 19.802750278002918, 50.84594066003342 ], [ 19.773811475918876, 50.828964951871001 ], [ 19.75055708164399, 50.8042894560935 ], [ 19.641829868253808, 50.839326077136718 ], [ 19.541680941622133, 50.835863756507138 ], [ 19.507884555827559, 50.842323309772894 ], [ 19.414556918566916, 50.936374417445393 ], [ 19.35430219938695, 50.971359360745851 ], [ 19.287019484361679, 50.979240017312918 ], [ 19.252602980043491, 50.960300605288694 ], [ 19.172814568737351, 50.959990546026859 ], [ 19.108012323310049, 50.968517157740621 ], [ 18.977270949094986, 51.013088079950876 ], [ 18.946575147824774, 51.032750963286276 ], [ 18.91143517399405, 51.037117621481002 ], [ 18.879705844848843, 51.023320014007425 ], [ 18.847046339716769, 51.013656520731843 ], [ 18.705762973982075, 51.01068512651733 ], [ 18.655636834272457, 50.995233873544407 ], [ 18.580602654788663, 51.033422756854691 ], [ 18.557348259614457, 51.061922309367048 ], [ 18.530476515079101, 51.082618720577443 ], [ 18.518590936422584, 51.078381252692623 ], [ 18.509392531140406, 51.068045965848626 ], [ 18.496370070022692, 51.060837103749293 ], [ 18.425676711211224, 51.059622707821688 ], [ 18.202021111784859, 51.095899563214232 ], [ 18.172565544863971, 51.110756536984582 ], [ 18.150137973788446, 51.136129666550858 ], [ 18.143833449254259, 51.18281932225392 ], [ 18.133601515197768, 51.210259508469505 ], [ 18.076344027754658, 51.242428087186454 ], [ 18.057637159727108, 51.270100816499451 ], [ 18.054846632665942, 51.302450263269009 ], [ 18.070969679207337, 51.324696967191244 ], [ 18.144143507616775, 51.334799710038567 ], [ 18.16925825386528, 51.359707749812799 ], [ 18.185898065243521, 51.39112702149481 ], [ 18.235817497579433, 51.400532132351998 ], [ 18.290284457961377, 51.383737291342868 ], [ 18.337826776184784, 51.40502798085663 ], [ 18.365732048595135, 51.452621975024101 ], [ 18.364078403095789, 51.505848701056664 ], [ 18.354156528301132, 51.560599881379403 ], [ 18.359117465698489, 51.626926581096825 ], [ 18.384852328672025, 51.687878933166189 ], [ 18.43136111812106, 51.756815293690806 ], [ 18.457199333882158, 51.778726100828862 ], [ 18.514456821325211, 51.795495104315592 ], [ 18.659254185432303, 51.785728258252504 ], [ 18.670623000151295, 51.793428045867586 ], [ 18.718682082312228, 51.845931301488349 ], [ 18.722712843722718, 51.877428087536202 ], [ 18.7039026220084, 51.909622503775495 ], [ 18.692637160076856, 51.944788316027939 ], [ 18.699768507810347, 51.978946437927732 ], [ 18.71351443933986, 52.009693915142066 ], [ 18.7451404147983, 52.011399238384115 ], [ 18.779660271903992, 52.008944607207809 ], [ 18.846632927667486, 52.018685614849232 ], [ 18.897275832213893, 52.055479234179302 ], [ 18.90647423659675, 52.118059394225611 ], [ 18.916912876228253, 52.146068020322843 ], [ 19.016648389911268, 52.172267971289841 ], [ 19.078556756389162, 52.208803209100779 ], [ 19.075869582115502, 52.218518378320482 ], [ 19.061090121811674, 52.221153875750758 ], [ 19.041866488947278, 52.246242784476919 ], [ 19.040212844347252, 52.278411363193811 ], [ 19.049721307092625, 52.286111151708269 ], [ 19.056956007613621, 52.295464585722016 ], [ 19.074422642191166, 52.301355699106182 ], [ 19.197825962198408, 52.302905991818022 ], [ 19.235653110302792, 52.309882310819944 ], [ 19.244851514685649, 52.321199448695552 ], [ 19.257253859078332, 52.332516588369856 ], [ 19.276270786367661, 52.334686997806671 ], [ 19.295907830382077, 52.334170233869145 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PL-KP", "NAME_1": "Kuyavian-Pomeranian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.74786990737033, 53.093141995007045 ], [ 19.699914177996902, 53.069784247045334 ], [ 19.648651156725464, 53.05526317005922 ], [ 19.654645622897135, 53.036401272400781 ], [ 19.655472446096496, 53.016660874699596 ], [ 19.663533969816854, 52.987205309577348 ], [ 19.660640089968183, 52.967464911876164 ], [ 19.655369094208311, 52.947982897492693 ], [ 19.645757276876793, 52.930929674065169 ], [ 19.626740349587465, 52.932273261201999 ], [ 19.608240187134925, 52.940231432134851 ], [ 19.588913202382344, 52.945089015845383 ], [ 19.567725863857504, 52.932790025139525 ], [ 19.549018995829954, 52.91573680351064 ], [ 19.507264439102585, 52.894471951519336 ], [ 19.458378533742348, 52.898321844877216 ], [ 19.473881462659335, 52.857290758561646 ], [ 19.46881717337385, 52.820393785544752 ], [ 19.448870070097655, 52.806983750799418 ], [ 19.440395135227277, 52.786778266004148 ], [ 19.45145389158381, 52.765875149218743 ], [ 19.468197055749499, 52.747013251560304 ], [ 19.497032505046036, 52.704793605940154 ], [ 19.497859328245397, 52.671694851236396 ], [ 19.454967889056832, 52.664692694712073 ], [ 19.38768517403156, 52.545501004167988 ], [ 19.361123487858663, 52.512428086986574 ], [ 19.355852492098791, 52.47400666057888 ], [ 19.376419712100017, 52.461165065715193 ], [ 19.380450474409827, 52.442639064840932 ], [ 19.30655317558859, 52.368069973350543 ], [ 19.302522414178043, 52.35127513324079 ], [ 19.295907830382077, 52.334170233869145 ], [ 19.276270786367661, 52.334686997806671 ], [ 19.257253859078332, 52.332516588369856 ], [ 19.244851514685649, 52.321199448695552 ], [ 19.235653110302792, 52.309882310819944 ], [ 19.197825962198408, 52.302905991818022 ], [ 19.074422642191166, 52.301355699106182 ], [ 19.056956007613621, 52.295464585722016 ], [ 19.049721307092625, 52.286111151708269 ], [ 19.040212844347252, 52.278411363193811 ], [ 18.945128207900439, 52.323008123825844 ], [ 18.909678175707199, 52.319959215245547 ], [ 18.80487837094006, 52.29285492581414 ], [ 18.768911573909975, 52.29112376594901 ], [ 18.741523065437093, 52.328950914053394 ], [ 18.576055129440647, 52.41194326447004 ], [ 18.546082797682971, 52.433621528510685 ], [ 18.511356235002211, 52.443465888040294 ], [ 18.492132603037192, 52.442277330534353 ], [ 18.473735793372157, 52.437471421868622 ], [ 18.464123976040639, 52.426360989567968 ], [ 18.449034458273616, 52.420909124856223 ], [ 18.42484988801192, 52.425560003891064 ], [ 18.40593631440936, 52.442819932893542 ], [ 18.393637322804182, 52.458968817856658 ], [ 18.385885858345659, 52.477313951577571 ], [ 18.371519810091172, 52.483411770536748 ], [ 18.352296177226776, 52.486615708747934 ], [ 18.294108513796857, 52.444861152020508 ], [ 18.259898715952943, 52.435404365219256 ], [ 18.158612908658768, 52.451785794179045 ], [ 18.126263461889266, 52.470415147840754 ], [ 18.097324659805167, 52.492455146188036 ], [ 18.063528273111274, 52.500826728270852 ], [ 18.026527948206251, 52.502402859404413 ], [ 17.990871208639362, 52.513642482914236 ], [ 17.888551872570872, 52.570848294413224 ], [ 17.813207634724563, 52.595704658243335 ], [ 17.743651156575595, 52.598030097311096 ], [ 17.679882439922665, 52.611155911216315 ], [ 17.668616977991121, 52.615134995783421 ], [ 17.660762159845774, 52.621129461955093 ], [ 17.656421340072768, 52.637769273333276 ], [ 17.647739698728117, 52.651179308078554 ], [ 17.616527134419698, 52.667173163410723 ], [ 17.598957147054705, 52.657406318246956 ], [ 17.558856234927305, 52.649293118582534 ], [ 17.518238559761699, 52.65399567356144 ], [ 17.498291457384823, 52.67347768794491 ], [ 17.482581821094129, 52.69699046553751 ], [ 17.446615024064101, 52.717971095789437 ], [ 17.453332960647572, 52.743809313349118 ], [ 17.470179477600823, 52.751612453751704 ], [ 17.488059523328332, 52.750940660183289 ], [ 17.50418256986967, 52.75445465855563 ], [ 17.516068149425564, 52.768148912342383 ], [ 17.537462191726775, 52.838893947997292 ], [ 17.488472935377672, 52.904161282317318 ], [ 17.412611931795198, 52.938500271370401 ], [ 17.331273227777217, 52.956225287467021 ], [ 17.376231723615149, 53.018702093826562 ], [ 17.390391066294683, 53.080972195510412 ], [ 17.359385206661955, 53.116809801331215 ], [ 17.350703566216566, 53.159132798839551 ], [ 17.442067497816765, 53.205486559557073 ], [ 17.393905063767647, 53.270624701768554 ], [ 17.308949008589877, 53.310389716212399 ], [ 17.297476841083324, 53.340310370227371 ], [ 17.369513787930941, 53.396999416889571 ], [ 17.397212354766339, 53.43379303711896 ], [ 17.425220981762891, 53.444024970276132 ], [ 17.455400018196258, 53.506915187785637 ], [ 17.479687941245459, 53.538644517830221 ], [ 17.507593214555186, 53.561588853742592 ], [ 17.544490186672761, 53.563914292810352 ], [ 17.683189731820676, 53.542365220878196 ], [ 17.74551150944859, 53.55729970991365 ], [ 17.746028273386116, 53.57848704753917 ], [ 17.750059034796607, 53.592801418950273 ], [ 17.755640089818257, 53.605772203224547 ], [ 17.7876794782253, 53.623600572108671 ], [ 17.856409133174964, 53.63879344356252 ], [ 17.897130161128018, 53.683209337041262 ], [ 17.924105259350199, 53.695637518956289 ], [ 18.051125928718648, 53.680961412339286 ], [ 18.220521274237399, 53.696025092583909 ], [ 18.255661248068122, 53.694190579031954 ], [ 18.285220167776515, 53.671711331112988 ], [ 18.317879672908589, 53.653211167761128 ], [ 18.497817009947028, 53.635434474821125 ], [ 18.582979770699865, 53.605255439287077 ], [ 18.620290154866723, 53.619854031538296 ], [ 18.677857699773028, 53.632075506979049 ], [ 18.759403110265282, 53.625228380085673 ], [ 18.779143507966523, 53.618639634711371 ], [ 18.792682733021707, 53.608976142335052 ], [ 18.808805779563045, 53.602749132166707 ], [ 18.874641553764661, 53.562260647311007 ], [ 18.905647414296709, 53.550426743699234 ], [ 18.960114372880014, 53.537533473790745 ], [ 19.074112582929331, 53.541590074522276 ], [ 19.12826948404944, 53.555878608411035 ], [ 19.21477583193905, 53.455238756263554 ], [ 19.239580518925777, 53.412243964287484 ], [ 19.269862909046026, 53.377982490499505 ], [ 19.285469190750518, 53.364546617332508 ], [ 19.308930290600415, 53.358500475216715 ], [ 19.327843866001615, 53.35803538722331 ], [ 19.404531690984754, 53.342868354191182 ], [ 19.511501906088085, 53.304343574096663 ], [ 19.625603468924908, 53.286411852425033 ], [ 19.681310662756857, 53.262950750776497 ], [ 19.732883742390754, 53.184583441872292 ], [ 19.74786990737033, 53.093141995007045 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PL-WP", "NAME_1": "Greater Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.040212844347252, 52.278411363193811 ], [ 19.041866488947278, 52.246242784476919 ], [ 19.061090121811674, 52.221153875750758 ], [ 19.075869582115502, 52.218518378320482 ], [ 19.078556756389162, 52.208803209100779 ], [ 19.016648389911268, 52.172267971289841 ], [ 18.916912876228253, 52.146068020322843 ], [ 18.90647423659675, 52.118059394225611 ], [ 18.897275832213893, 52.055479234179302 ], [ 18.846632927667486, 52.018685614849232 ], [ 18.779660271903992, 52.008944607207809 ], [ 18.7451404147983, 52.011399238384115 ], [ 18.71351443933986, 52.009693915142066 ], [ 18.699768507810347, 51.978946437927732 ], [ 18.692637160076856, 51.944788316027939 ], [ 18.7039026220084, 51.909622503775495 ], [ 18.722712843722718, 51.877428087536202 ], [ 18.718682082312228, 51.845931301488349 ], [ 18.670623000151295, 51.793428045867586 ], [ 18.659254185432303, 51.785728258252504 ], [ 18.514456821325211, 51.795495104315592 ], [ 18.457199333882158, 51.778726100828862 ], [ 18.43136111812106, 51.756815293690806 ], [ 18.384852328672025, 51.687878933166189 ], [ 18.359117465698489, 51.626926581096825 ], [ 18.354156528301132, 51.560599881379403 ], [ 18.364078403095789, 51.505848701056664 ], [ 18.365732048595135, 51.452621975024101 ], [ 18.337826776184784, 51.40502798085663 ], [ 18.290284457961377, 51.383737291342868 ], [ 18.235817497579433, 51.400532132351998 ], [ 18.185898065243521, 51.39112702149481 ], [ 18.16925825386528, 51.359707749812799 ], [ 18.144143507616775, 51.334799710038567 ], [ 18.070969679207337, 51.324696967191244 ], [ 18.054846632665942, 51.302450263269009 ], [ 18.057637159727108, 51.270100816499451 ], [ 18.076344027754658, 51.242428087186454 ], [ 18.133601515197768, 51.210259508469505 ], [ 18.143833449254259, 51.18281932225392 ], [ 18.150137973788446, 51.136129666550858 ], [ 18.035829705376614, 51.093212388940572 ], [ 17.917387322766729, 51.06582388046769 ], [ 17.853721958001927, 51.068045965848626 ], [ 17.80121870328054, 51.094788520074133 ], [ 17.795534294572008, 51.119205634332559 ], [ 17.782201775991155, 51.140703030320594 ], [ 17.749232211597246, 51.151400051471171 ], [ 17.714609001704048, 51.150159817121846 ], [ 17.701586540586391, 51.199975898468892 ], [ 17.690217725867342, 51.302553616056514 ], [ 17.718433058438904, 51.344669907989839 ], [ 17.682362908621315, 51.362808336135799 ], [ 17.644329054042601, 51.369422919032445 ], [ 17.58304080608832, 51.361697292995643 ], [ 17.523922966671535, 51.370327257496911 ], [ 17.500668573296025, 51.406991686517074 ], [ 17.495190871061823, 51.45027069843394 ], [ 17.508523389642676, 51.471587226369365 ], [ 17.532811313591253, 51.481586616429183 ], [ 17.546660597008952, 51.506262112206684 ], [ 17.556582471803608, 51.535045885559157 ], [ 17.457260370169934, 51.575146795887918 ], [ 17.346776156694261, 51.594008694445677 ], [ 17.229263950071243, 51.594318752808192 ], [ 17.187406039656992, 51.588944404260815 ], [ 17.149578891552608, 51.535381782343336 ], [ 16.94297651465439, 51.512669990427696 ], [ 16.827738071155068, 51.538301499714407 ], [ 16.773064406097433, 51.575896104721437 ], [ 16.676119418576263, 51.609511624262041 ], [ 16.632814569137054, 51.657131455951912 ], [ 16.629507277239043, 51.68966176987476 ], [ 16.611833937086487, 51.714879868910771 ], [ 16.499075962285815, 51.752913723489542 ], [ 16.458458286220889, 51.759631660073012 ], [ 16.371125116031237, 51.74919302044151 ], [ 16.339912550823556, 51.823658759144394 ], [ 16.274696893346913, 51.868229682254025 ], [ 16.201523064937476, 51.837456367517348 ], [ 16.15615115705026, 51.846706447844269 ], [ 16.113156365973509, 51.864948228777735 ], [ 16.098376905669625, 51.891664944581521 ], [ 16.102924431916961, 51.92613312394451 ], [ 16.112019484411633, 51.945382595230569 ], [ 16.110469190800472, 51.965407212872549 ], [ 16.093932733109114, 51.971815091093561 ], [ 16.076672804106636, 51.967215888002784 ], [ 16.039362419939721, 51.967629300052124 ], [ 16.003912387746482, 51.989565944712524 ], [ 15.980864699046606, 52.015585029425552 ], [ 15.962984653319097, 52.046771756211569 ], [ 15.907897577111498, 52.064858507514089 ], [ 15.88050906683992, 52.082350978714658 ], [ 15.857047966990081, 52.103745021915188 ], [ 15.849193148844734, 52.135267646384762 ], [ 15.849813267368404, 52.168986517813494 ], [ 15.861285434874901, 52.198442083835062 ], [ 15.863559197998597, 52.213609116867246 ], [ 15.868726840970908, 52.228052680386838 ], [ 15.901179639628651, 52.286989650851694 ], [ 15.89900923019178, 52.348484606179625 ], [ 15.879062126915585, 52.378198553720267 ], [ 15.83658409977636, 52.424242255175898 ], [ 15.85797814297689, 52.43333730677125 ], [ 15.884849888411622, 52.433285630827186 ], [ 15.884953241199128, 52.463309638528983 ], [ 15.877098423053781, 52.499844876339921 ], [ 15.864902785135428, 52.534778143696371 ], [ 15.829556104830374, 52.593844306269716 ], [ 15.825732048994837, 52.649654852889114 ], [ 15.830072869667163, 52.670868028037034 ], [ 15.831106398441534, 52.6933214384336 ], [ 15.838031039700695, 52.702674872447403 ], [ 15.853223911154544, 52.701589666829648 ], [ 15.947895134652754, 52.719779771818992 ], [ 15.967222121203918, 52.727376207545888 ], [ 15.976833936736796, 52.743085842037942 ], [ 15.95533654074876, 52.792333481704816 ], [ 15.924640741277187, 52.809645087550734 ], [ 16.021895786261496, 52.885299383759502 ], [ 16.018588495262804, 52.949145616576914 ], [ 16.03853559674036, 53.006738999904883 ], [ 16.093829380321608, 52.995628566704966 ], [ 16.155014276387703, 52.973614406779404 ], [ 16.21743940590386, 52.978704536285306 ], [ 16.278831008444286, 52.9931997748497 ], [ 16.37525923022929, 53.048235175113234 ], [ 16.456184523097249, 53.124716295420683 ], [ 16.600981886305021, 53.17551422779934 ], [ 16.674672478651928, 53.189311835272974 ], [ 16.703611280736027, 53.205796617020212 ], [ 16.727175734272691, 53.230885524847054 ], [ 16.757871534643584, 53.253700670449575 ], [ 16.751567010109397, 53.282406928536886 ], [ 16.720354444901716, 53.306358953902588 ], [ 16.683250767209131, 53.318037827883416 ], [ 16.607803175675997, 53.329561673132673 ], [ 16.545067986898061, 53.366045234100227 ], [ 16.529565057081697, 53.401676134346076 ], [ 16.528531528307383, 53.441518663155762 ], [ 16.551062453069733, 53.460638943232595 ], [ 16.735133905205544, 53.457719224962261 ], [ 16.765312940739591, 53.461207384013562 ], [ 16.790841099037493, 53.525001939987533 ], [ 16.810168083790018, 53.557919827538001 ], [ 16.836523065287224, 53.585204983223377 ], [ 16.872179803055474, 53.594584256558164 ], [ 16.910317010421693, 53.595204373283195 ], [ 16.947730747376056, 53.588150539915432 ], [ 16.995789828637669, 53.552855537353139 ], [ 17.037234327901899, 53.509343981439542 ], [ 17.095732048795014, 53.488053290127198 ], [ 17.29933719215768, 53.483092352729841 ], [ 17.352770622865933, 53.465574042208232 ], [ 17.397212354766339, 53.43379303711896 ], [ 17.369513787930941, 53.396999416889571 ], [ 17.297476841083324, 53.340310370227371 ], [ 17.308949008589877, 53.310389716212399 ], [ 17.393905063767647, 53.270624701768554 ], [ 17.442067497816765, 53.205486559557073 ], [ 17.350703566216566, 53.159132798839551 ], [ 17.359385206661955, 53.116809801331215 ], [ 17.390391066294683, 53.080972195510412 ], [ 17.376231723615149, 53.018702093826562 ], [ 17.331273227777217, 52.956225287467021 ], [ 17.412611931795198, 52.938500271370401 ], [ 17.488472935377672, 52.904161282317318 ], [ 17.537462191726775, 52.838893947997292 ], [ 17.516068149425564, 52.768148912342383 ], [ 17.50418256986967, 52.75445465855563 ], [ 17.488059523328332, 52.750940660183289 ], [ 17.470179477600823, 52.751612453751704 ], [ 17.453332960647572, 52.743809313349118 ], [ 17.446615024064101, 52.717971095789437 ], [ 17.482581821094129, 52.69699046553751 ], [ 17.498291457384823, 52.67347768794491 ], [ 17.518238559761699, 52.65399567356144 ], [ 17.558856234927305, 52.649293118582534 ], [ 17.598957147054705, 52.657406318246956 ], [ 17.616527134419698, 52.667173163410723 ], [ 17.647739698728117, 52.651179308078554 ], [ 17.656421340072768, 52.637769273333276 ], [ 17.660762159845774, 52.621129461955093 ], [ 17.668616977991121, 52.615134995783421 ], [ 17.679882439922665, 52.611155911216315 ], [ 17.743651156575595, 52.598030097311096 ], [ 17.813207634724563, 52.595704658243335 ], [ 17.888551872570872, 52.570848294413224 ], [ 17.990871208639362, 52.513642482914236 ], [ 18.026527948206251, 52.502402859404413 ], [ 18.063528273111274, 52.500826728270852 ], [ 18.097324659805167, 52.492455146188036 ], [ 18.126263461889266, 52.470415147840754 ], [ 18.158612908658768, 52.451785794179045 ], [ 18.259898715952943, 52.435404365219256 ], [ 18.294108513796857, 52.444861152020508 ], [ 18.352296177226776, 52.486615708747934 ], [ 18.371519810091172, 52.483411770536748 ], [ 18.385885858345659, 52.477313951577571 ], [ 18.393637322804182, 52.458968817856658 ], [ 18.40593631440936, 52.442819932893542 ], [ 18.42484988801192, 52.425560003891064 ], [ 18.449034458273616, 52.420909124856223 ], [ 18.464123976040639, 52.426360989567968 ], [ 18.473735793372157, 52.437471421868622 ], [ 18.492132603037192, 52.442277330534353 ], [ 18.511356235002211, 52.443465888040294 ], [ 18.546082797682971, 52.433621528510685 ], [ 18.576055129440647, 52.41194326447004 ], [ 18.741523065437093, 52.328950914053394 ], [ 18.768911573909975, 52.29112376594901 ], [ 18.80487837094006, 52.29285492581414 ], [ 18.909678175707199, 52.319959215245547 ], [ 18.945128207900439, 52.323008123825844 ], [ 19.040212844347252, 52.278411363193811 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PL-SK", "NAME_1": "Świętokrzyskie" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.432065871442774, 51.28994456608882 ], [ 20.487256301337197, 51.277490545752073 ], [ 20.516918572933776, 51.23038747799967 ], [ 20.681559685730917, 51.166902981287535 ], [ 20.704814080005747, 51.15021149396523 ], [ 20.726001417631323, 51.12902415633971 ], [ 20.75173628060486, 51.116751004055573 ], [ 20.8727624847009, 51.100963854298413 ], [ 21.011668735423768, 51.114942328026018 ], [ 21.044741651705863, 51.126802070059455 ], [ 21.074093865839245, 51.152536933032991 ], [ 21.105513135722617, 51.171192125116477 ], [ 21.135692173055304, 51.16468089500728 ], [ 21.144063755138177, 51.131065375466676 ], [ 21.174036085996534, 51.109852200318755 ], [ 21.178273552982091, 51.093212388940572 ], [ 21.184681431203046, 51.077993679065003 ], [ 21.253101026890874, 51.050010891389491 ], [ 21.329995558348344, 51.045825100348054 ], [ 21.495566847132295, 51.013165595216037 ], [ 21.815443962768654, 51.055075182473672 ], [ 21.819371372290959, 51.041587633362553 ], [ 21.815133905305458, 51.035696519978387 ], [ 21.807382439947617, 51.031459052093567 ], [ 21.79859744581546, 51.028823553763971 ], [ 21.791466098981289, 51.027919217098145 ], [ 21.791466098981289, 51.021072089305449 ], [ 21.809966261433829, 51.012442124804181 ], [ 21.813066846857453, 50.992908434476647 ], [ 21.805728794448271, 50.949706936026246 ], [ 21.804591912886451, 50.94652883623678 ], [ 21.802008091400296, 50.944642645841384 ], [ 21.799424269014764, 50.94172292757105 ], [ 21.798287388352264, 50.935444241458526 ], [ 21.800457797789136, 50.92973399522765 ], [ 21.805108676823977, 50.927124335319775 ], [ 21.809759555858818, 50.925263984245476 ], [ 21.811929966194953, 50.921775825194175 ], [ 21.813790317269309, 50.912448228702772 ], [ 21.839215121880329, 50.851263333535996 ], [ 21.844279412964511, 50.829765937547961 ], [ 21.847483351175697, 50.816226712492778 ], [ 21.848620232737517, 50.779226385789059 ], [ 21.840455357129031, 50.739900620916899 ], [ 21.833324009395483, 50.724035955894635 ], [ 21.821541781727831, 50.706104234223005 ], [ 21.806245558385797, 50.691376450762561 ], [ 21.788365512658288, 50.685304470225105 ], [ 21.762113884847906, 50.682591458429044 ], [ 21.744957310431516, 50.674684964339633 ], [ 21.71632856581067, 50.64435089827532 ], [ 21.668786247587263, 50.608487454032741 ], [ 21.66175825443986, 50.592829495484807 ], [ 21.65659060966891, 50.573554185777027 ], [ 21.643981560600537, 50.557999579117279 ], [ 21.613285760229644, 50.534486803323261 ], [ 21.59488894966529, 50.524539090106884 ], [ 21.530810173750524, 50.513971259266157 ], [ 21.435208775164824, 50.48668610358078 ], [ 21.439032830100984, 50.48208690049006 ], [ 21.448851353007512, 50.466170559523675 ], [ 21.429834425718184, 50.453458156768477 ], [ 21.404306268319601, 50.44389801717972 ], [ 21.378881462809261, 50.440358181285035 ], [ 21.360071241994206, 50.445706692309955 ], [ 21.2986796403531, 50.411574408831882 ], [ 21.295268995667584, 50.410799262475962 ], [ 21.280902948312416, 50.411574408831882 ], [ 21.276975538790055, 50.409636542492422 ], [ 21.27749230272758, 50.405192369032591 ], [ 21.278732537976225, 50.400334785322059 ], [ 21.27749230272758, 50.397285874943123 ], [ 21.266330193583542, 50.392014879183307 ], [ 21.259508905111886, 50.392273260702382 ], [ 21.250207147042204, 50.397285874943123 ], [ 21.244832797595507, 50.383100693841925 ], [ 21.232947218938989, 50.376253566948549 ], [ 21.22137169774561, 50.372481187956453 ], [ 21.216100701985795, 50.367210191297261 ], [ 21.21486046673715, 50.358812770792724 ], [ 21.211243117375943, 50.356874905352583 ], [ 21.205868767929303, 50.356616522934132 ], [ 21.198737420195755, 50.353231717569656 ], [ 21.181270785618267, 50.337496242857299 ], [ 21.181270785618267, 50.335842597357953 ], [ 21.163597446365031, 50.333413805502687 ], [ 21.15377892435788, 50.33889150683757 ], [ 21.144890578337481, 50.346332912933576 ], [ 21.130111118033653, 50.350131131246656 ], [ 21.12018924323894, 50.348580838534872 ], [ 21.07895145044904, 50.335842597357953 ], [ 21.069546339591909, 50.330881659960596 ], [ 21.060244582421547, 50.324060369690301 ], [ 21.049082472378188, 50.318014228473828 ], [ 21.03388960092434, 50.315378730144232 ], [ 20.959682244639851, 50.313828437432392 ], [ 20.949346957795854, 50.311347967834422 ], [ 20.940975375712981, 50.306645412855516 ], [ 20.931156853705829, 50.298299669194364 ], [ 20.921855095636147, 50.294889024508848 ], [ 20.89456993995077, 50.293183702166118 ], [ 20.880927362108082, 50.287421779991121 ], [ 20.865424432291718, 50.293933010100318 ], [ 20.852195264699674, 50.288455308765435 ], [ 20.838656039644491, 50.279308580326699 ], [ 20.822222934740637, 50.274399318873463 ], [ 20.783879021799407, 50.297757065935798 ], [ 20.77736779079089, 50.291555895088436 ], [ 20.771063267156023, 50.274399318873463 ], [ 20.749979282318009, 50.260756741030775 ], [ 20.746568637632492, 50.259516507580713 ], [ 20.737680290712831, 50.259206448318935 ], [ 20.733546177414155, 50.257346096345259 ], [ 20.730135531829319, 50.252436834891967 ], [ 20.728895298379314, 50.241817328107174 ], [ 20.726001417631323, 50.236546332347359 ], [ 20.71204878142612, 50.227838854379627 ], [ 20.679699333757242, 50.217865301842153 ], [ 20.667400343950703, 50.20551463519223 ], [ 20.663472935327661, 50.194920965929782 ], [ 20.633500603569985, 50.174405422771997 ], [ 20.502139112629948, 50.176705024317414 ], [ 20.428655225857995, 50.204997870355385 ], [ 20.409741652255434, 50.230629381440792 ], [ 20.364369745267538, 50.271557114968857 ], [ 20.347109816265004, 50.294863186087127 ], [ 20.33026329931181, 50.340855210699374 ], [ 20.284581333062079, 50.398629462080009 ], [ 20.207583448817104, 50.431443996842972 ], [ 20.123660923312968, 50.448342189740231 ], [ 20.08996788940658, 50.470924791346022 ], [ 20.050693801377804, 50.48436066271438 ], [ 19.956332635342847, 50.484464016401205 ], [ 19.928324009245614, 50.491440335403126 ], [ 19.860317823808487, 50.497951565512324 ], [ 19.825281202765268, 50.509578761750447 ], [ 19.845331658828968, 50.537329007227868 ], [ 19.914268019353585, 50.574329332132947 ], [ 19.954368930581666, 50.578101712024363 ], [ 19.906929966045084, 50.614998684141938 ], [ 19.879024691836037, 50.654479479544307 ], [ 19.844504835629664, 50.671170965967292 ], [ 19.769160596884035, 50.684916897496805 ], [ 19.741668734724328, 50.705690823072985 ], [ 19.779289178153022, 50.750907701329311 ], [ 19.847812126628298, 50.758039049062859 ], [ 19.852566359349964, 50.76594554315227 ], [ 19.852359652875691, 50.778244533858128 ], [ 19.848638949827659, 50.789406643002167 ], [ 19.836133254446111, 50.793747464573812 ], [ 19.75055708164399, 50.8042894560935 ], [ 19.773811475918876, 50.828964951871001 ], [ 19.802750278002918, 50.84594066003342 ], [ 19.837373487896116, 50.860694281915528 ], [ 19.85442671132364, 50.890692451195662 ], [ 19.85039594901383, 50.92224091228826 ], [ 19.851119419425629, 50.954202786329517 ], [ 19.863935174069013, 50.986448880311571 ], [ 19.899385207161572, 50.990479640822741 ], [ 20.031470167614145, 50.929423936865192 ], [ 20.054104445164, 50.94634796818417 ], [ 20.062062616096853, 50.979033311737908 ], [ 20.05234744597783, 51.012493800748302 ], [ 20.021444940031927, 51.028100084251435 ], [ 19.975762973782196, 51.071714992952536 ], [ 20.000567660768922, 51.132073065819327 ], [ 20.025062290292453, 51.152330227457981 ], [ 20.056274854600815, 51.159513251135593 ], [ 20.166862419964673, 51.14982392033761 ], [ 20.199005161159221, 51.155585842512608 ], [ 20.268458285621364, 51.197056179299182 ], [ 20.300187615665891, 51.206771349418204 ], [ 20.333467238422315, 51.210052801995175 ], [ 20.366643508391178, 51.219612942483309 ], [ 20.403437126821927, 51.276560369765207 ], [ 20.432065871442774, 51.28994456608882 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/portugal.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/portugal.geojson new file mode 100644 index 000000000000..aad5a22f0389 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/portugal.geojson @@ -0,0 +1,26 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "PT-16", "NAME_1": "Viana do Castelo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.222361612999919, 42.153629660000021 ], [ -8.204326537999918, 42.128799133000072 ], [ -8.204016479999922, 42.069552104000067 ], [ -8.137612263999898, 42.072911072000082 ], [ -8.095082559999923, 42.040923361000083 ], [ -8.108027506999861, 42.010899353000028 ], [ -8.182131509999891, 41.965424093000067 ], [ -8.23021643099986, 41.904678447000052 ], [ -8.220397908999871, 41.86819488600004 ], [ -8.177041381999885, 41.849849752000054 ], [ -8.179265101103567, 41.81261252514787 ], [ -8.315171678430204, 41.76592641906899 ], [ -8.417671881652041, 41.760345364047282 ], [ -8.503067186401552, 41.733835353818506 ], [ -8.552056443649974, 41.62888052031974 ], [ -8.63680579325279, 41.650894680245301 ], [ -8.81980032540668, 41.617801991486395 ], [ -8.827056443999936, 41.682806708000044 ], [ -8.743275519999941, 41.696966864000046 ], [ -8.696156378999945, 41.721991278000075 ], [ -8.829986131999931, 41.694647528000075 ], [ -8.861112562999949, 41.70436810700005 ], [ -8.880306243999939, 41.736861603000079 ], [ -8.874745245999918, 41.849554755000042 ], [ -8.762766079999949, 41.93195221600007 ], [ -8.750803188999953, 41.968980210000041 ], [ -8.670809691999864, 41.999814758000113 ], [ -8.626884724999911, 42.051026103000126 ], [ -8.346746785999898, 42.101694845000097 ], [ -8.222361612999919, 42.153629660000021 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-03", "NAME_1": "Braga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.179265101103567, 41.81261252514787 ], [ -8.047927007825137, 41.814037177173986 ], [ -8.084720628054527, 41.72773753485933 ], [ -8.118000250810951, 41.692339179509531 ], [ -8.028548346229229, 41.702002671885793 ], [ -7.990721198124788, 41.683760890952328 ], [ -7.998498501005031, 41.611207180167185 ], [ -7.89633419366811, 41.589709785078469 ], [ -7.845897995596033, 41.613842678496781 ], [ -7.813548549725795, 41.582578437344978 ], [ -7.855742356924225, 41.525631008264384 ], [ -7.932791917113263, 41.475659898185711 ], [ -7.980902676117637, 41.355951442804837 ], [ -8.01829057465028, 41.327813626397699 ], [ -8.111824916586613, 41.349672756692371 ], [ -8.169754197598138, 41.400780748332863 ], [ -8.219286058105126, 41.414578354907121 ], [ -8.31568844236773, 41.366881007952145 ], [ -8.467720506096498, 41.375924384502696 ], [ -8.53464148591587, 41.351223049404211 ], [ -8.604223801587182, 41.34941437427392 ], [ -8.622543096886432, 41.380781969112547 ], [ -8.596446498706939, 41.398145250003267 ], [ -8.609882370974674, 41.411064358333419 ], [ -8.666984828786838, 41.444137275514834 ], [ -8.775097442947354, 41.46756333867858 ], [ -8.81980032540668, 41.617801991486395 ], [ -8.63680579325279, 41.650894680245301 ], [ -8.552056443649974, 41.62888052031974 ], [ -8.503067186401552, 41.733835353818506 ], [ -8.417671881652041, 41.760345364047282 ], [ -8.315171678430204, 41.76592641906899 ], [ -8.179265101103567, 41.81261252514787 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-04", "NAME_1": "Bragança" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.1453730879999, 41.987489929000063 ], [ -7.051270303999928, 41.942014669000017 ], [ -6.992359170999919, 41.966380107000035 ], [ -6.945126911999893, 41.943358257000071 ], [ -6.854951537999881, 41.942944845000071 ], [ -6.831232055999919, 41.953951925000055 ], [ -6.824927530999929, 41.983769226000064 ], [ -6.794386759999924, 41.979712626000051 ], [ -6.757903197999894, 41.937570496000021 ], [ -6.727982543999872, 41.930852559000087 ], [ -6.622821003999917, 41.94095530200012 ], [ -6.609488484999872, 41.962323507000022 ], [ -6.585148885999956, 41.954649557000053 ], [ -6.567630574999896, 41.926072490000067 ], [ -6.575795450999919, 41.882896831000053 ], [ -6.524222371999912, 41.867419740000045 ], [ -6.577397419999954, 41.73972727500005 ], [ -6.541533976999915, 41.658905335000085 ], [ -6.503035033999964, 41.653091737000111 ], [ -6.46081538999988, 41.676552836000084 ], [ -6.365937459999913, 41.663607890000051 ], [ -6.272248087999856, 41.628235372000049 ], [ -6.205947224999932, 41.570280253000092 ], [ -6.279534463999937, 41.497003072 ], [ -6.282945108999854, 41.465635478000067 ], [ -6.321133991999943, 41.411013489000126 ], [ -6.379166625999915, 41.397319234000108 ], [ -6.379166625999915, 41.377475485000033 ], [ -6.399578816999849, 41.377475485000033 ], [ -6.495852010999897, 41.294948222000087 ], [ -6.563496459999897, 41.270711975000026 ], [ -6.646643839999882, 41.267611390000056 ], [ -6.755216023999878, 41.158832500000116 ], [ -6.764776163999954, 41.10886139000003 ], [ -6.818002888999928, 41.054136048000075 ], [ -6.987139044831054, 41.052739976968326 ], [ -7.07532487574241, 41.086691393293165 ], [ -7.098966843644916, 41.12395009971732 ], [ -7.09268815843177, 41.149064845965825 ], [ -7.126277838651333, 41.164309394263114 ], [ -7.112635259909325, 41.192240505994505 ], [ -7.170125291349109, 41.157591458578906 ], [ -7.359674444819802, 41.166066393449285 ], [ -7.402204148802412, 41.207485053392475 ], [ -7.43227983244833, 41.215985825785197 ], [ -7.420394252892493, 41.239808660840993 ], [ -7.39297990599789, 41.246371567793574 ], [ -7.369286261251943, 41.317685045128712 ], [ -7.317428961677251, 41.340215968991743 ], [ -7.356470505709297, 41.37235871018629 ], [ -7.362309943149342, 41.441915188335258 ], [ -7.311977097864769, 41.467184964214709 ], [ -7.274640876175511, 41.516949367819052 ], [ -7.236193610446776, 41.530281887299225 ], [ -7.255236375258505, 41.564698390718149 ], [ -7.252523362563124, 41.604282538008704 ], [ -7.220173915793566, 41.68784332920626 ], [ -7.1726574368912, 41.747374578873689 ], [ -7.206350469898268, 41.83393260450606 ], [ -7.1999434, 41.963718771000103 ], [ -7.1453730879999, 41.987489929000063 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-17", "NAME_1": "Vila Real" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.340503295999895, 41.843209331000068 ], [ -7.251464802999919, 41.863699036000028 ], [ -7.209316118344191, 41.889160873375602 ], [ -7.204025030830508, 41.816259264353562 ], [ -7.1726574368912, 41.747374578873689 ], [ -7.220173915793566, 41.68784332920626 ], [ -7.252523362563124, 41.604282538008704 ], [ -7.255236375258505, 41.564698390718149 ], [ -7.236193610446776, 41.530281887299225 ], [ -7.274640876175511, 41.516949367819052 ], [ -7.311977097864769, 41.467184964214709 ], [ -7.362309943149342, 41.441915188335258 ], [ -7.356470505709297, 41.37235871018629 ], [ -7.317428961677251, 41.340215968991743 ], [ -7.369286261251943, 41.317685045128712 ], [ -7.39297990599789, 41.246371567793574 ], [ -7.420394252892493, 41.239808660840993 ], [ -7.43227983244833, 41.215985825785197 ], [ -7.550153774277248, 41.182757879872213 ], [ -7.658570929304972, 41.180122382441994 ], [ -7.737868415095306, 41.152578844338166 ], [ -7.823444586998107, 41.18642690697618 ], [ -7.896049973727315, 41.159115911969764 ], [ -7.875456916203746, 41.246784979842914 ], [ -7.909356654785825, 41.278901881716422 ], [ -7.909356654785825, 41.306755479082085 ], [ -7.951214565200019, 41.32825287507012 ], [ -7.975502489148539, 41.370084947062651 ], [ -7.932791917113263, 41.475659898185711 ], [ -7.855742356924225, 41.525631008264384 ], [ -7.813548549725795, 41.582578437344978 ], [ -7.845897995596033, 41.613842678496781 ], [ -7.89633419366811, 41.589709785078469 ], [ -7.998498501005031, 41.611207180167185 ], [ -7.988189052582698, 41.677921454411546 ], [ -8.028548346229229, 41.702002671885793 ], [ -8.118000250810951, 41.692339179509531 ], [ -8.084720628054527, 41.72773753485933 ], [ -8.050445716999889, 41.815986438000053 ], [ -7.993641723999872, 41.863673198000029 ], [ -7.94475581899988, 41.866954652000018 ], [ -7.92579056799994, 41.908166606000108 ], [ -7.906101846999888, 41.913851014000059 ], [ -7.896593383999885, 41.857937113000062 ], [ -7.722030395999866, 41.899252421000099 ], [ -7.661155557999933, 41.87491282200007 ], [ -7.607360391999919, 41.873181662000022 ], [ -7.622811644999899, 41.841736552000057 ], [ -7.606068480999852, 41.825535991000052 ], [ -7.546692260999919, 41.832047221000025 ], [ -7.515841430999927, 41.864990947000067 ], [ -7.469384318999914, 41.852536926000099 ], [ -7.442719278999959, 41.805950623000044 ], [ -7.391921345999975, 41.842046611000043 ], [ -7.340503295999895, 41.843209331000068 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-09", "NAME_1": "Guarda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.874509092120888, 40.279188166700521 ], [ -6.896447712999958, 40.255476786000074 ], [ -6.942100807999878, 40.254977731000068 ], [ -6.997500169197451, 40.285551663378556 ], [ -7.075402391007572, 40.286275132891035 ], [ -7.1102581448975, 40.319296373229008 ], [ -7.15379553923276, 40.279970608356848 ], [ -7.292986008997104, 40.275113022847677 ], [ -7.321227179091068, 40.291184394344327 ], [ -7.279756842304437, 40.350457262492625 ], [ -7.27115271622489, 40.409781805685782 ], [ -7.326136439644984, 40.409781805685782 ], [ -7.390938686870925, 40.3827550324188 ], [ -7.453518846017914, 40.413424994367972 ], [ -7.543306647383872, 40.32456736898888 ], [ -7.601856045120371, 40.326763617746735 ], [ -7.643248866641898, 40.28674022088444 ], [ -7.733941005572945, 40.24415884005839 ], [ -7.782129278943103, 40.232040717405141 ], [ -7.824633145403368, 40.261470445004989 ], [ -7.767298142695154, 40.334101671055237 ], [ -7.791741095375244, 40.356942654180102 ], [ -7.799027471840361, 40.402107856492364 ], [ -7.837603928778321, 40.42378611873437 ], [ -7.800965339079141, 40.456962388703232 ], [ -7.824633145403368, 40.497838447186552 ], [ -7.686682909088972, 40.551530260313257 ], [ -7.577697313280396, 40.572304185889436 ], [ -7.581728074690886, 40.592768053103157 ], [ -7.539896002698356, 40.685372219052624 ], [ -7.579247605992236, 40.714104316461032 ], [ -7.589479539149409, 40.728832099022156 ], [ -7.57565609415343, 40.752344875715437 ], [ -7.61859920928606, 40.795443020479013 ], [ -7.557905238735771, 40.871562405580505 ], [ -7.522971971379377, 40.867169908064795 ], [ -7.445508999140998, 40.819550076374924 ], [ -7.412513597224745, 40.870580552750312 ], [ -7.423391486427988, 40.917296047774357 ], [ -7.372981125878255, 40.915642402275012 ], [ -7.341484340729721, 40.937759914988078 ], [ -7.334068773055435, 40.973442491177991 ], [ -7.373549566659165, 41.009564316939645 ], [ -7.333526169796926, 41.019822089417858 ], [ -7.334998949042244, 41.065349026036699 ], [ -7.300659959089842, 41.159348455966438 ], [ -7.170125291349109, 41.157591458578906 ], [ -7.112635259909325, 41.192240505994505 ], [ -7.126277838651333, 41.164309394263114 ], [ -7.09268815843177, 41.149064845965825 ], [ -7.086125250579869, 41.097285060756917 ], [ -6.987139044831054, 41.052739976968326 ], [ -6.927447857032973, 41.04809758393634 ], [ -6.940424356999898, 41.003389791000089 ], [ -6.885182251999879, 40.948922832000065 ], [ -6.855261596999867, 40.88722117200011 ], [ -6.821155151999903, 40.870064596000063 ], [ -6.82032832799996, 40.844226380000023 ], [ -6.836658080999911, 40.840247294000065 ], [ -6.839138549999888, 40.75751332600008 ], [ -6.814282185999929, 40.647184143000104 ], [ -6.850455688999944, 40.582226868000035 ], [ -6.812525186999949, 40.51463409500009 ], [ -6.857121948999861, 40.442132060000077 ], [ -6.85128251099988, 40.40952423100002 ], [ -6.794438435999922, 40.35640085900009 ], [ -6.874509092120888, 40.279188166700521 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-05", "NAME_1": "Castelo Branco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.942100807999878, 40.254977731000068 ], [ -7.015768594999884, 40.225504456000024 ], [ -7.043105428999894, 40.181372783000128 ], [ -7.015768594999884, 40.119051005000088 ], [ -6.955720581999856, 40.102927959000013 ], [ -6.879704548999911, 40.009186910000054 ], [ -6.925231485999888, 39.917926331000061 ], [ -6.927660278999923, 39.861909078000039 ], [ -7.000265664999858, 39.802532858000106 ], [ -6.993030964999889, 39.77421417300009 ], [ -7.021142944999923, 39.694012350000023 ], [ -7.182890177999894, 39.67509877500008 ], [ -7.235755167999855, 39.686519267000065 ], [ -7.341433470999959, 39.67184316 ], [ -7.566095953665354, 39.680420641099658 ], [ -7.638856370025451, 39.642231756890055 ], [ -7.695467902321866, 39.652696234943278 ], [ -7.804711879649517, 39.557120672980659 ], [ -7.866801113280758, 39.635927232355868 ], [ -7.950258550791489, 39.666157944733357 ], [ -7.964960495830212, 39.737729804486889 ], [ -8.041880865709402, 39.743930976233571 ], [ -8.070948859002669, 39.66233388889782 ], [ -8.061543748145482, 39.624222519953321 ], [ -8.139471808377266, 39.616160997132283 ], [ -8.229104580112278, 39.659440009049149 ], [ -8.228717007383977, 39.756591702145329 ], [ -8.273236252750849, 39.779381008426753 ], [ -8.284217494741597, 39.80594269549897 ], [ -8.264942185933137, 39.84046255080608 ], [ -8.15554317897454, 39.884413357190681 ], [ -8.100843674595922, 39.94355703412981 ], [ -7.907703009286479, 40.009522000439972 ], [ -7.894861416221374, 40.046858222129231 ], [ -7.844916143665102, 40.058175360904158 ], [ -7.807192349247543, 40.040708727225933 ], [ -7.800965339079141, 40.083264268731 ], [ -7.768745082619489, 40.077502346556003 ], [ -7.73556881265057, 40.105510973552555 ], [ -7.741899175606477, 40.128300278934717 ], [ -7.806882289985708, 40.1850410024403 ], [ -7.782129278943103, 40.232040717405141 ], [ -7.643248866641898, 40.28674022088444 ], [ -7.601856045120371, 40.326763617746735 ], [ -7.543306647383872, 40.32456736898888 ], [ -7.453518846017914, 40.413424994367972 ], [ -7.390938686870925, 40.3827550324188 ], [ -7.326136439644984, 40.409781805685782 ], [ -7.27115271622489, 40.409781805685782 ], [ -7.279756842304437, 40.350457262492625 ], [ -7.321227179091068, 40.291184394344327 ], [ -7.309729173162793, 40.279608873150949 ], [ -7.246554734813174, 40.267258206501026 ], [ -7.15379553923276, 40.279970608356848 ], [ -7.1102581448975, 40.319296373229008 ], [ -7.075402391007572, 40.286275132891035 ], [ -6.997500169197451, 40.285551663378556 ], [ -6.942100807999878, 40.254977731000068 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-12", "NAME_1": "Portalegre" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.250844686233279, 39.270627339580017 ], [ -7.264332233999909, 39.252333883000105 ], [ -7.258079386999896, 39.211302795000066 ], [ -7.168059040999935, 39.170633443 ], [ -7.155811726999929, 39.151513163000018 ], [ -7.167490600999884, 39.113479310000073 ], [ -7.127286336999873, 39.097485453000033 ], [ -7.091267862999899, 39.112445781000091 ], [ -7.038816283999921, 39.109138489000102 ], [ -6.985692911999905, 39.066763815000073 ], [ -6.973290567999925, 39.013950501000025 ], [ -7.066049764999917, 38.904603170000129 ], [ -7.056076212999926, 38.855148824000096 ], [ -7.15100581899992, 38.819285380000039 ], [ -7.22587838499993, 38.766133828000093 ], [ -7.21505794876532, 38.825795802734092 ], [ -7.242523973402683, 38.843391629420125 ], [ -7.290221320357659, 38.835020047337309 ], [ -7.346858690176418, 38.80011261750326 ], [ -7.393264125938686, 38.814917914430168 ], [ -7.465972866354718, 38.965580553499706 ], [ -7.527054408733989, 39.000203762493641 ], [ -7.549120246402254, 38.992607326766688 ], [ -7.542505661706912, 38.966174831803016 ], [ -7.602346970636177, 38.948889065278138 ], [ -7.638132899613652, 38.919278468726304 ], [ -7.729445156169049, 38.931525784387418 ], [ -7.754947476045174, 38.908219713269148 ], [ -7.838456590399346, 38.90015818954879 ], [ -7.923257615946227, 38.970231432534547 ], [ -7.990669522180724, 38.942868761584066 ], [ -8.018523118647011, 38.947597154085372 ], [ -8.021236131342391, 38.982117011191065 ], [ -8.049322271805408, 39.003976142385056 ], [ -8.085314907257157, 39.000617174542924 ], [ -8.09810482437814, 38.977853704884524 ], [ -8.102833217778766, 39.022062892788256 ], [ -8.118000250810951, 39.026739610244817 ], [ -8.196910162973666, 39.000901394483719 ], [ -8.241377733295735, 39.012270209202768 ], [ -8.291012945690909, 39.07957876175044 ], [ -8.334085252032764, 39.100662747487775 ], [ -8.291245489687583, 39.163811347415731 ], [ -8.15267513664827, 39.252281399167202 ], [ -8.129084844689828, 39.283132229169041 ], [ -8.078286912311171, 39.290160224115027 ], [ -8.024026659302876, 39.3598200550515 ], [ -7.968862066930853, 39.390205797059878 ], [ -7.950491094788219, 39.42105662706166 ], [ -8.010229050929979, 39.468702298072571 ], [ -7.968009406209148, 39.536863512241268 ], [ -7.9365901354264, 39.553348293988563 ], [ -7.861814338361057, 39.520223700863085 ], [ -7.740116339797225, 39.604301255998166 ], [ -7.695467902321866, 39.652696234943278 ], [ -7.638856370025451, 39.642231756890055 ], [ -7.566095953665354, 39.680420641099658 ], [ -7.515841430999927, 39.593760071000062 ], [ -7.468092406999887, 39.550248515000064 ], [ -7.417552856999947, 39.524203593000081 ], [ -7.384169880999877, 39.483999329000042 ], [ -7.320917927999886, 39.467411194000036 ], [ -7.326654011999949, 39.341320699000093 ], [ -7.250844686233279, 39.270627339580017 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-07", "NAME_1": "Évora" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.22587838499993, 38.766133828000093 ], [ -7.284072631999976, 38.713245341000047 ], [ -7.292495889999941, 38.646117656000101 ], [ -7.27043005399986, 38.61769561800007 ], [ -7.317713988999913, 38.556252340000086 ], [ -7.34561926299989, 38.494137268000102 ], [ -7.335180623999861, 38.469435934000089 ], [ -7.359210163999876, 38.446362407000024 ], [ -7.317145547999871, 38.424580791 ], [ -7.167180541999898, 38.272083639000058 ], [ -7.117068156999977, 38.183633156000056 ], [ -7.137491623739436, 38.175577094307414 ], [ -7.172967495253715, 38.190330715290258 ], [ -7.200071783785802, 38.246089585965592 ], [ -7.25247168571974, 38.276992091911495 ], [ -7.288050910021468, 38.331872464342723 ], [ -7.400472988037961, 38.299755561569896 ], [ -7.414167242724091, 38.267948717159527 ], [ -7.517132533939275, 38.19632518236125 ], [ -7.683711513975197, 38.210949612134868 ], [ -7.908555670907504, 38.281177882952932 ], [ -7.969094610927584, 38.313579006565874 ], [ -8.011030035707563, 38.305414130058011 ], [ -8.061931321773102, 38.327583320513781 ], [ -8.162131924348841, 38.3175580920323 ], [ -8.308350389059228, 38.377037664856346 ], [ -8.288558315413923, 38.424838365498147 ], [ -8.320029263040055, 38.447860215776302 ], [ -8.330855475399858, 38.50007925145627 ], [ -8.368501756351009, 38.53573598922452 ], [ -8.461881068656396, 38.519096177846336 ], [ -8.4993206449318, 38.541730455396191 ], [ -8.516554734613294, 38.519406236208795 ], [ -8.569936489377483, 38.528940538275208 ], [ -8.6381235419679, 38.550360418998139 ], [ -8.651404384604689, 38.588859361570258 ], [ -8.615463425996325, 38.642292792278511 ], [ -8.507821418223898, 38.712831122358409 ], [ -8.498623012941721, 38.75794464782723 ], [ -8.546578742315091, 38.767039700321902 ], [ -8.498674688885785, 38.79876902946711 ], [ -8.388423021205483, 38.833030504154408 ], [ -8.374599575310185, 38.852667548168768 ], [ -8.292847459242864, 38.86140086545754 ], [ -8.250033535319403, 38.830136624305737 ], [ -8.208098109640048, 38.821971746898555 ], [ -8.167790492836957, 38.7812507189455 ], [ -8.134200811718074, 38.787374376326397 ], [ -8.130635138300988, 38.810137844186158 ], [ -8.1755677957172, 38.841815497387245 ], [ -8.175102707723795, 38.874268296944308 ], [ -8.260058762901622, 38.913955797022368 ], [ -8.230138108886649, 38.983047187177931 ], [ -8.145776332911453, 39.025473538373092 ], [ -8.102833217778766, 39.022062892788256 ], [ -8.09810482437814, 38.977853704884524 ], [ -8.085314907257157, 39.000617174542924 ], [ -8.044361335307372, 39.00170237926136 ], [ -8.021236131342391, 38.982117011191065 ], [ -8.01503495869639, 38.945633450223511 ], [ -7.923257615946227, 38.970231432534547 ], [ -7.866775274859037, 38.915299384159255 ], [ -7.827966273924403, 38.899098823252075 ], [ -7.754947476045174, 38.908219713269148 ], [ -7.729445156169049, 38.931525784387418 ], [ -7.638132899613652, 38.919278468726304 ], [ -7.602346970636177, 38.948889065278138 ], [ -7.542505661706912, 38.966174831803016 ], [ -7.549120246402254, 38.992607326766688 ], [ -7.527054408733989, 39.000203762493641 ], [ -7.465972866354718, 38.965580553499706 ], [ -7.393264125938686, 38.814917914430168 ], [ -7.346858690176418, 38.80011261750326 ], [ -7.290221320357659, 38.835020047337309 ], [ -7.242523973402683, 38.843391629420125 ], [ -7.21505794876532, 38.825795802734092 ], [ -7.22587838499993, 38.766133828000093 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-02", "NAME_1": "Beja" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.117068156999977, 38.183633156000056 ], [ -7.088322306999885, 38.17338165300005 ], [ -7.026413939999969, 38.199633281000089 ], [ -6.947504027999912, 38.196636047000069 ], [ -7.023985148999913, 38.022563985000076 ], [ -7.12325557399987, 38.040004781 ], [ -7.159739135999899, 37.99680328400008 ], [ -7.272703816999893, 37.9770112100001 ], [ -7.268621378999882, 37.949235128000041 ], [ -7.306861937999969, 37.850765686000088 ], [ -7.334405476999848, 37.811930847000028 ], [ -7.444011189999912, 37.730152893000124 ], [ -7.471606404999932, 37.636902771000067 ], [ -7.514342813999946, 37.601401062000051 ], [ -7.529690714999902, 37.56716542600013 ], [ -7.514613427999933, 37.528333923000091 ], [ -7.568447231154778, 37.524428208994607 ], [ -7.619658575582832, 37.494481716557971 ], [ -7.707327642556663, 37.500398668363857 ], [ -7.785643276416067, 37.474095363710035 ], [ -7.908581509329224, 37.409293118282733 ], [ -7.982401291986037, 37.401386624193321 ], [ -8.001237352122132, 37.380612697717822 ], [ -7.990721198124788, 37.363869534451453 ], [ -8.070690476584218, 37.326740017437828 ], [ -8.170787726372509, 37.337049464960842 ], [ -8.256105515856859, 37.385082708699997 ], [ -8.280703498167895, 37.428310045572118 ], [ -8.305714890729632, 37.433891099694449 ], [ -8.413977017025729, 37.413943997317574 ], [ -8.431391973860514, 37.387149767148003 ], [ -8.465963507809647, 37.375393377902071 ], [ -8.574044766053134, 37.405830796753833 ], [ -8.636702439565966, 37.383609931253318 ], [ -8.719281378832591, 37.400301419474886 ], [ -8.807616720977862, 37.449418619582758 ], [ -8.795496837999906, 37.535362436000071 ], [ -8.826527472999942, 37.600572007000039 ], [ -8.799305792999917, 37.69757721600007 ], [ -8.757639126999948, 37.706732489000046 ], [ -8.75218665299991, 37.73078034100007 ], [ -8.808705206999946, 37.722886460000041 ], [ -8.801369137991232, 37.8267594857953 ], [ -8.78108639162366, 37.810069688365388 ], [ -8.73411251508054, 37.813454495528504 ], [ -8.683547125799237, 37.757540595222281 ], [ -8.664168464203271, 37.770511380395874 ], [ -8.612569546147654, 37.754362494533495 ], [ -8.589961107019462, 37.765886338883433 ], [ -8.548981695748694, 37.839499416864555 ], [ -8.521670701641597, 37.853012804397395 ], [ -8.432477178578949, 37.866552029452578 ], [ -8.328555873854498, 37.846734117385608 ], [ -8.299462043038886, 37.908719998229287 ], [ -8.29336422407971, 37.981532091432825 ], [ -8.309487270621048, 38.012770494162964 ], [ -8.35982011590562, 38.028971055969407 ], [ -8.401342128636315, 38.075996609356025 ], [ -8.385813361297608, 38.110671495193344 ], [ -8.359277512647111, 38.111730862389379 ], [ -8.347805345140557, 38.143201809116192 ], [ -8.302562629361887, 38.141315618720796 ], [ -8.277267015060715, 38.180563870126491 ], [ -8.241661953236587, 38.17937531172123 ], [ -8.222722541212306, 38.201570339699401 ], [ -8.135079311760819, 38.223248602840727 ], [ -8.130092535941799, 38.250714627478033 ], [ -8.158256190770601, 38.326523953317746 ], [ -8.047539435096837, 38.325877997271732 ], [ -8.011030035707563, 38.305414130058011 ], [ -7.969094610927584, 38.313579006565874 ], [ -7.908555670907504, 38.281177882952932 ], [ -7.683711513975197, 38.210949612134868 ], [ -7.517132533939275, 38.19632518236125 ], [ -7.414167242724091, 38.267948717159527 ], [ -7.400472988037961, 38.299755561569896 ], [ -7.288050910021468, 38.331872464342723 ], [ -7.25247168571974, 38.276992091911495 ], [ -7.200071783785802, 38.246089585965592 ], [ -7.172967495253715, 38.190330715290258 ], [ -7.152141892834095, 38.17648143187256 ], [ -7.117068156999977, 38.183633156000056 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-08", "NAME_1": "Faro" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.514613427999933, 37.528333923000091 ], [ -7.468867553999871, 37.475568950000039 ], [ -7.429386758999954, 37.236746318000044 ], [ -7.400217251999948, 37.172349351000037 ], [ -7.511789516999954, 37.171779690000051 ], [ -7.819569464999915, 36.998724677000041 ], [ -7.991200324999909, 37.014105536000045 ], [ -7.97679602799991, 36.986761786000045 ], [ -8.035267706999946, 37.037502346000053 ], [ -8.179151775999912, 37.088099083000088 ], [ -8.29320227799991, 37.077704169000071 ], [ -8.365383983999948, 37.097998535000045 ], [ -8.438834223999947, 37.08273401100007 ], [ -8.580148891999954, 37.123968817000048 ], [ -8.641590949999909, 37.117743231000077 ], [ -8.686268683999913, 37.082953192000048 ], [ -8.747670050999943, 37.082953192000048 ], [ -8.859157616999937, 37.040797603000044 ], [ -8.878919101999941, 37.047208779000073 ], [ -8.946034308999913, 37.007879950000074 ], [ -8.997873501999948, 37.021470445000034 ], [ -8.985585089999915, 37.063381252000056 ], [ -8.913563605999911, 37.169907945000034 ], [ -8.922718878999945, 37.199652411000045 ], [ -8.88136486399992, 37.23248011000004 ], [ -8.8670899599999, 37.276724649000073 ], [ -8.882767549999926, 37.309931281000047 ], [ -8.838656939999908, 37.360318145000065 ], [ -8.807616720977862, 37.449418619582758 ], [ -8.719281378832591, 37.400301419474886 ], [ -8.636702439565966, 37.383609931253318 ], [ -8.574044766053134, 37.405830796753833 ], [ -8.465963507809647, 37.375393377902071 ], [ -8.431391973860514, 37.387149767148003 ], [ -8.413977017025729, 37.413943997317574 ], [ -8.305714890729632, 37.433891099694449 ], [ -8.280703498167895, 37.428310045572118 ], [ -8.256105515856859, 37.385082708699997 ], [ -8.170787726372509, 37.337049464960842 ], [ -8.070690476584218, 37.326740017437828 ], [ -7.990721198124788, 37.363869534451453 ], [ -8.001237352122132, 37.380612697717822 ], [ -7.982401291986037, 37.401386624193321 ], [ -7.908581509329224, 37.409293118282733 ], [ -7.785643276416067, 37.474095363710035 ], [ -7.707327642556663, 37.500398668363857 ], [ -7.619658575582832, 37.494481716557971 ], [ -7.568447231154778, 37.524428208994607 ], [ -7.514613427999933, 37.528333923000091 ] ] ], [ [ [ -7.95571855399993, 36.980536200000074 ], [ -7.903960740999935, 36.974839585000041 ], [ -7.860096808999913, 37.000433661000045 ], [ -7.853260870999918, 36.986761786000045 ], [ -7.903879360999952, 36.965887762000079 ], [ -7.95571855399993, 36.980536200000074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-15", "NAME_1": "Setúbal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.801369137991232, 37.8267594857953 ], [ -8.798955973999909, 37.87809298600007 ], [ -8.820668952999938, 37.927266814000063 ], [ -8.89484615799995, 37.952541408000059 ], [ -8.8156834399999, 38.062115348000077 ], [ -8.774395582999944, 38.186949270000071 ], [ -8.795070658999919, 38.359227269000087 ], [ -8.878285285999937, 38.449164130000042 ], [ -8.942616339999915, 38.481390692000048 ], [ -8.927316860999952, 38.493801174000055 ], [ -8.90453040299991, 38.486395575000074 ], [ -8.800160285999937, 38.439113674000055 ], [ -8.798573370999918, 38.42609284100007 ], [ -8.65689042899993, 38.405951239000046 ], [ -8.606800910999937, 38.41868724200009 ], [ -8.736154751999948, 38.451849677000041 ], [ -8.752512173999946, 38.487982489000046 ], [ -8.737172003999945, 38.522365627000056 ], [ -8.761219855999911, 38.538072007000039 ], [ -8.757639126999948, 38.563299872000073 ], [ -8.773345506999931, 38.565334377000056 ], [ -8.812855597999942, 38.528550523000035 ], [ -8.780262824999909, 38.505438544000071 ], [ -8.788400844999956, 38.481390692000048 ], [ -8.905832485999952, 38.512396552000041 ], [ -8.954890212999942, 38.505143733000068 ], [ -8.991864489999955, 38.45947786000005 ], [ -9.048595104999947, 38.440670552000086 ], [ -9.230620897999927, 38.41868724200009 ], [ -9.231068488999938, 38.437689520000049 ], [ -9.190026551999949, 38.472531708000076 ], [ -9.18379286499993, 38.551536973000054 ], [ -9.252674913999954, 38.665483907000066 ], [ -9.145041681999942, 38.68106793700008 ], [ -9.10773678299995, 38.658880927000041 ], [ -9.11392167899993, 38.679388739000046 ], [ -9.052398240999935, 38.69367096600007 ], [ -8.931538653186294, 38.778143882334291 ], [ -8.901311610942116, 38.74058136693651 ], [ -8.84219377332397, 38.756187649540379 ], [ -8.762043625912611, 38.73810089823786 ], [ -8.703158332291196, 38.834399928813639 ], [ -8.643730435411271, 38.815305488057788 ], [ -8.607815314325308, 38.830369168302468 ], [ -8.593216722074089, 38.772465724813344 ], [ -8.504850023110066, 38.760890204519285 ], [ -8.49629757297464, 38.747712713770682 ], [ -8.531747606067199, 38.688258979368356 ], [ -8.651585251757979, 38.606170966516856 ], [ -8.6381235419679, 38.550360418998139 ], [ -8.516554734613294, 38.519406236208795 ], [ -8.508648241423202, 38.542557277696176 ], [ -8.461881068656396, 38.519096177846336 ], [ -8.368501756351009, 38.53573598922452 ], [ -8.330855475399858, 38.50007925145627 ], [ -8.320029263040055, 38.447860215776302 ], [ -8.288558315413923, 38.424838365498147 ], [ -8.308350389059228, 38.377037664856346 ], [ -8.162131924348841, 38.3175580920323 ], [ -8.130480108670099, 38.234565742514974 ], [ -8.230835740876728, 38.198185533435606 ], [ -8.241661953236587, 38.17937531172123 ], [ -8.277267015060715, 38.180563870126491 ], [ -8.295741339990855, 38.144390367521396 ], [ -8.335015428019574, 38.150023098487168 ], [ -8.362920702228621, 38.107338364873613 ], [ -8.391187709844928, 38.101653957963777 ], [ -8.394081589693599, 38.05509349257062 ], [ -8.309487270621048, 38.012770494162964 ], [ -8.29336422407971, 37.981532091432825 ], [ -8.299462043038886, 37.908719998229287 ], [ -8.328555873854498, 37.846734117385608 ], [ -8.432477178578949, 37.866552029452578 ], [ -8.521670701641597, 37.853012804397395 ], [ -8.548981695748694, 37.839499416864555 ], [ -8.589961107019462, 37.765886338883433 ], [ -8.612569546147654, 37.754362494533495 ], [ -8.664168464203271, 37.770511380395874 ], [ -8.683547125799237, 37.757540595222281 ], [ -8.73411251508054, 37.813454495528504 ], [ -8.78108639162366, 37.810069688365388 ], [ -8.801369137991232, 37.8267594857953 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-11", "NAME_1": "Lisboa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -8.942616340271911, 38.775580145407389 ], [ -8.970285610999952, 38.835435289000088 ], [ -8.96312415299991, 38.850653387000079 ], [ -8.986317511999914, 38.849432684000078 ], [ -9.011545376999948, 38.913397528000075 ], [ -8.943226691999939, 39.015204169000071 ], [ -8.790353969999956, 39.07062409100007 ], [ -8.817311571072139, 39.03968455699669 ], [ -8.85436357282066, 39.031390489279659 ], [ -8.8404626116602, 39.016068427515904 ], [ -8.955752732902283, 38.840911159822156 ], [ -8.923093227770266, 38.7777625598942 ], [ -8.942616340271911, 38.775580145407389 ] ] ], [ [ [ -8.791753952782699, 39.082414713568141 ], [ -8.836415167999917, 39.056708075000074 ], [ -8.93586178299995, 39.040716864000046 ], [ -9.10024980399993, 38.830226955000057 ], [ -9.098247540999921, 38.73785767600009 ], [ -9.112503309999909, 38.714182291000043 ], [ -9.220170787999905, 38.693895440000063 ], [ -9.28520930399992, 38.698757565000051 ], [ -9.321777364999946, 38.670324513000082 ], [ -9.404774542999917, 38.704087632000039 ], [ -9.491688605999911, 38.707586981000077 ], [ -9.497466600999928, 38.809759833000044 ], [ -9.455495665999933, 38.850468694000085 ], [ -9.422724913999957, 38.931403791000037 ], [ -9.436634894999941, 39.029486395000049 ], [ -9.350859757999956, 39.197309245000042 ], [ -9.347591295801001, 39.29247756566528 ], [ -9.231188116638293, 39.316360175081968 ], [ -9.169357266324766, 39.22119802516869 ], [ -9.067037930256276, 39.311657620103063 ], [ -8.994148321787634, 39.298996894191305 ], [ -8.984097255783752, 39.260394598831624 ], [ -8.914850836896619, 39.244788316227812 ], [ -8.874646571981714, 39.254245103928383 ], [ -8.81658810066034, 39.200915025108316 ], [ -8.90270687492233, 39.171511135030812 ], [ -8.791753952782699, 39.082414713568141 ] ] ], [ [ [ -9.041127081999946, 38.867621161000045 ], [ -9.041411912999934, 38.849188544000071 ], [ -9.079660610999952, 38.820135809000078 ], [ -9.061390753999945, 38.852240302000041 ], [ -9.041127081999946, 38.867621161000045 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-14", "NAME_1": "Santarém" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.790353969999956, 39.07062409100007 ], [ -8.765126105999911, 39.097723700000074 ], [ -8.791753952782699, 39.082414713568141 ], [ -8.90270687492233, 39.171511135030812 ], [ -8.81658810066034, 39.200915025108316 ], [ -8.874646571981714, 39.254245103928383 ], [ -8.914850836896619, 39.244788316227812 ], [ -8.984097255783752, 39.260394598831624 ], [ -9.002855800654686, 39.349433092263382 ], [ -8.894516160892124, 39.470640164412032 ], [ -8.751114060765303, 39.479554347954775 ], [ -8.733104823828569, 39.498416246512534 ], [ -8.742277390689026, 39.528078518109112 ], [ -8.704321051375416, 39.531540838738692 ], [ -8.672204148602589, 39.565104682335175 ], [ -8.69460588215577, 39.641766668896651 ], [ -8.644402228080367, 39.678870348387818 ], [ -8.67398698621048, 39.720883287533695 ], [ -8.665822108803297, 39.773309027889297 ], [ -8.589521857447778, 39.787003282575427 ], [ -8.470769415576058, 39.837310289438278 ], [ -8.442915819109771, 39.742277329834906 ], [ -8.324266730025556, 39.768683987276177 ], [ -8.328297492335423, 39.800206610846374 ], [ -8.279101527713351, 39.794780585455612 ], [ -8.228717007383977, 39.756591702145329 ], [ -8.220190395670215, 39.646495063196596 ], [ -8.139471808377266, 39.616160997132283 ], [ -8.061543748145482, 39.624222519953321 ], [ -8.070948859002669, 39.66233388889782 ], [ -8.041880865709402, 39.743930976233571 ], [ -7.964960495830212, 39.737729804486889 ], [ -7.950258550791489, 39.666157944733357 ], [ -7.866801113280758, 39.635927232355868 ], [ -7.804711879649517, 39.557120672980659 ], [ -7.861814338361057, 39.520223700863085 ], [ -7.9365901354264, 39.553348293988563 ], [ -7.968009406209148, 39.536863512241268 ], [ -8.010229050929979, 39.468702298072571 ], [ -7.950491094788219, 39.42105662706166 ], [ -7.968862066930853, 39.390205797059878 ], [ -8.024026659302876, 39.3598200550515 ], [ -8.078286912311171, 39.290160224115027 ], [ -8.129084844689828, 39.283132229169041 ], [ -8.33362016403936, 39.11696666118246 ], [ -8.334085252032764, 39.100662747487775 ], [ -8.291012945690909, 39.07957876175044 ], [ -8.254736091197685, 39.02139110011916 ], [ -8.196910162973666, 39.000901394483719 ], [ -8.235021531918164, 38.976846015431249 ], [ -8.260058762901622, 38.913955797022368 ], [ -8.175102707723795, 38.874268296944308 ], [ -8.1755677957172, 38.841815497387245 ], [ -8.130635138300988, 38.810137844186158 ], [ -8.151615770351555, 38.774481106417909 ], [ -8.208098109640048, 38.821971746898555 ], [ -8.299151983777051, 38.861478379823325 ], [ -8.310882533701999, 38.849670315532592 ], [ -8.374599575310185, 38.852667548168768 ], [ -8.388423021205483, 38.833030504154408 ], [ -8.498674688885785, 38.79876902946711 ], [ -8.546578742315091, 38.767039700321902 ], [ -8.604533860849017, 38.783576158013261 ], [ -8.602673508875341, 38.828121242701172 ], [ -8.643730435411271, 38.815305488057788 ], [ -8.696466234129389, 38.83638947199654 ], [ -8.762043625912611, 38.73810089823786 ], [ -8.84219377332397, 38.756187649540379 ], [ -8.911078457005203, 38.743113512478601 ], [ -8.955752732902283, 38.840911159822156 ], [ -8.8404626116602, 39.016068427515904 ], [ -8.85436357282066, 39.031390489279659 ], [ -8.817311571072139, 39.03968455699669 ], [ -8.790353969999956, 39.07062409100007 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-10", "NAME_1": "Leiria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.347591295801001, 39.29247756566528 ], [ -9.365834113999938, 39.336004950000074 ], [ -9.409291144999941, 39.375189520000049 ], [ -9.352921539999954, 39.36793401400007 ], [ -9.260803351999925, 39.418442396000046 ], [ -9.205922003999945, 39.41547272300005 ], [ -9.229888475999928, 39.440741278000075 ], [ -9.182873267999923, 39.492583818000071 ], [ -9.135694137999906, 39.516180299000041 ], [ -9.090434486999925, 39.57927490600008 ], [ -9.071692364999933, 39.680436886000052 ], [ -8.902476147221698, 40.047409913287467 ], [ -8.8154253806768, 40.021071682312254 ], [ -8.768942429649428, 40.037298082540474 ], [ -8.698016526841229, 40.032337145143117 ], [ -8.629002651051508, 39.996318671269648 ], [ -8.567300991047887, 40.028048001314176 ], [ -8.535468309115174, 39.955959378522493 ], [ -8.450873989143304, 40.012131659448528 ], [ -8.419868130409895, 40.014973863353077 ], [ -8.385348273304203, 39.956605332769868 ], [ -8.404830287687616, 39.934306952004192 ], [ -8.389947476394923, 39.932549953717341 ], [ -8.313983120025, 39.975105496121728 ], [ -8.273158739284384, 39.976371567993453 ], [ -8.293054164817875, 40.015955715284008 ], [ -8.235073207862285, 40.06398895902322 ], [ -8.205204229791377, 40.055100613002878 ], [ -8.174560106263925, 40.08633901573296 ], [ -8.149186977596969, 40.06879486768895 ], [ -8.149419521593643, 40.017040920901763 ], [ -8.107975023228732, 39.96531281253624 ], [ -8.145776332911453, 39.891467190558387 ], [ -8.205540126575613, 39.854260159178978 ], [ -8.25959367490816, 39.844803372377726 ], [ -8.284372524372486, 39.810800279209502 ], [ -8.279101527713351, 39.794780585455612 ], [ -8.328297492335423, 39.800206610846374 ], [ -8.329098477113064, 39.766461900096601 ], [ -8.442915819109771, 39.742277329834906 ], [ -8.470769415576058, 39.837310289438278 ], [ -8.589521857447778, 39.787003282575427 ], [ -8.665822108803297, 39.773309027889297 ], [ -8.67398698621048, 39.720883287533695 ], [ -8.644402228080367, 39.678870348387818 ], [ -8.69460588215577, 39.641766668896651 ], [ -8.672204148602589, 39.565104682335175 ], [ -8.704321051375416, 39.531540838738692 ], [ -8.742277390689026, 39.528078518109112 ], [ -8.733104823828569, 39.498416246512534 ], [ -8.751114060765303, 39.479554347954775 ], [ -8.865138109236341, 39.479373480801485 ], [ -8.908132900313092, 39.45981395115291 ], [ -8.93970720072673, 39.408344225205781 ], [ -8.998721685557371, 39.361422023707405 ], [ -8.994148321787634, 39.298996894191305 ], [ -9.073885057149653, 39.309228827348477 ], [ -9.169357266324766, 39.22119802516869 ], [ -9.231188116638293, 39.316360175081968 ], [ -9.347591295801001, 39.29247756566528 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-06", "NAME_1": "Coimbra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.902476147221698, 40.047409913287467 ], [ -8.853260870999918, 40.139227606000077 ], [ -8.825062628999945, 40.120062567000048 ], [ -8.784982876999948, 40.118719794000071 ], [ -8.816151495999918, 40.146551825000074 ], [ -8.896473761999914, 40.164740302000041 ], [ -8.90843665299991, 40.200669664000088 ], [ -8.865386522999927, 40.275458075000074 ], [ -8.78790289051096, 40.52295838274182 ], [ -8.675382249291374, 40.434689846359277 ], [ -8.642076789012606, 40.431692612823781 ], [ -8.608874680622023, 40.483989162869534 ], [ -8.570479091736729, 40.463783678074265 ], [ -8.565595668705157, 40.404407457138404 ], [ -8.504927536576531, 40.420065415686338 ], [ -8.486479050967432, 40.376424669462892 ], [ -8.522445847997517, 40.296765449365978 ], [ -8.457204352099154, 40.285655016166061 ], [ -8.350208298574103, 40.372006334424782 ], [ -8.235409104646465, 40.320639960365838 ], [ -8.216676398197251, 40.339708564498608 ], [ -8.11621741410238, 40.338907578821704 ], [ -7.924652879027178, 40.430116481690277 ], [ -7.845200365404537, 40.493730170510958 ], [ -7.824633145403368, 40.497838447186552 ], [ -7.802231410950867, 40.464145413280164 ], [ -7.837603928778321, 40.42378611873437 ], [ -7.799027471840361, 40.402107856492364 ], [ -7.791741095375244, 40.356942654180102 ], [ -7.767298142695154, 40.334101671055237 ], [ -7.824633145403368, 40.261470445004989 ], [ -7.782129278943103, 40.232040717405141 ], [ -7.801662970169957, 40.172845364521947 ], [ -7.741899175606477, 40.128300278934717 ], [ -7.73556881265057, 40.105510973552555 ], [ -7.768745082619489, 40.077502346556003 ], [ -7.800965339079141, 40.083264268731 ], [ -7.807192349247543, 40.040708727225933 ], [ -7.871374477949814, 40.056159980198913 ], [ -7.907031215718064, 40.036677964916123 ], [ -7.907703009286479, 40.009522000439972 ], [ -8.025731980746343, 39.975415554484243 ], [ -8.126345993572727, 39.921232814942414 ], [ -8.128387213599012, 39.944022122123215 ], [ -8.107975023228732, 39.96531281253624 ], [ -8.149419521593643, 40.017040920901763 ], [ -8.145466273649618, 40.062386990367315 ], [ -8.174560106263925, 40.08633901573296 ], [ -8.205204229791377, 40.055100613002878 ], [ -8.235073207862285, 40.06398895902322 ], [ -8.277654587789016, 40.034533393001652 ], [ -8.293054164817875, 40.015955715284008 ], [ -8.270988328048929, 39.98476898939731 ], [ -8.279101527713351, 39.971617337070427 ], [ -8.313983120025, 39.975105496121728 ], [ -8.389947476394923, 39.932549953717341 ], [ -8.404830287687616, 39.934306952004192 ], [ -8.385348273304203, 39.956605332769868 ], [ -8.419868130409895, 40.014973863353077 ], [ -8.450873989143304, 40.012131659448528 ], [ -8.535468309115174, 39.955959378522493 ], [ -8.567300991047887, 40.028048001314176 ], [ -8.629002651051508, 39.996318671269648 ], [ -8.698016526841229, 40.032337145143117 ], [ -8.768942429649428, 40.037298082540474 ], [ -8.8154253806768, 40.021071682312254 ], [ -8.902476147221698, 40.047409913287467 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-01", "NAME_1": "Aveiro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.78790289051096, 40.52295838274182 ], [ -8.750355597999942, 40.643947658000059 ], [ -8.744618292999917, 40.619045315000051 ], [ -8.710275844999956, 40.653469143000052 ], [ -8.690012173999946, 40.646918036000045 ], [ -8.696156378999945, 40.673651434000078 ], [ -8.662098761999914, 40.669867255000042 ], [ -8.641590949999909, 40.694159247000073 ], [ -8.663644985999952, 40.72406647300005 ], [ -8.572661912999934, 40.755560614000046 ], [ -8.668446417999917, 40.747463283000059 ], [ -8.683705206999946, 40.783107815000051 ], [ -8.645578579999949, 40.82367584800005 ], [ -8.655262824999909, 40.844916083000044 ], [ -8.663197394999941, 40.814927476000037 ], [ -8.675689256999931, 40.824448960000041 ], [ -8.689808722999942, 40.804103908000059 ], [ -8.714263475999928, 40.709051825000074 ], [ -8.750803188999953, 40.653143622000073 ], [ -8.65520139824288, 41.016651963915109 ], [ -8.526089035780387, 41.032224432911221 ], [ -8.484308640631241, 41.017289943875767 ], [ -8.448135138026203, 41.055478827186107 ], [ -8.389611578711424, 41.011863919384325 ], [ -8.392272914563364, 41.039665839007228 ], [ -8.346177537163612, 41.043954982836169 ], [ -8.290186123390868, 41.083384101395154 ], [ -8.229569668105682, 41.053825181686761 ], [ -8.224376186711652, 41.009409288208076 ], [ -8.149264491962754, 40.982046617257538 ], [ -8.087743700011742, 41.006696275512695 ], [ -8.128929815958259, 40.935977078279507 ], [ -8.115390590903075, 40.853475654277986 ], [ -8.249645961691783, 40.855361842874743 ], [ -8.239646571631965, 40.818852444384788 ], [ -8.324990200437412, 40.727178453522811 ], [ -8.288299932995528, 40.637571520209463 ], [ -8.248638272238509, 40.618968004070098 ], [ -8.301994187681601, 40.593904933765657 ], [ -8.253237474429909, 40.514529934508857 ], [ -8.331346400915663, 40.48435089807549 ], [ -8.321631231696017, 40.44502513320333 ], [ -8.35423906088397, 40.402883001948965 ], [ -8.350208298574103, 40.372006334424782 ], [ -8.370465461112133, 40.34423025232428 ], [ -8.399197556721845, 40.343739325909155 ], [ -8.457204352099154, 40.285655016166061 ], [ -8.515469529894915, 40.290357571144966 ], [ -8.520818040020515, 40.322396959552009 ], [ -8.486479050967432, 40.376424669462892 ], [ -8.504927536576531, 40.420065415686338 ], [ -8.565595668705157, 40.404407457138404 ], [ -8.570479091736729, 40.463783678074265 ], [ -8.608874680622023, 40.483989162869534 ], [ -8.642076789012606, 40.431692612823781 ], [ -8.675382249291374, 40.434689846359277 ], [ -8.78790289051096, 40.52295838274182 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-13", "NAME_1": "Porto" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.65520139824288, 41.016651963915109 ], [ -8.666127081999946, 41.132757880000042 ], [ -8.648345506999931, 41.152777411000045 ], [ -8.68578040299991, 41.159491278000075 ], [ -8.737172003999945, 41.249660549000055 ], [ -8.74445553299995, 41.328111070000034 ], [ -8.783802863999938, 41.393866278000075 ], [ -8.775097442947354, 41.46756333867858 ], [ -8.666984828786838, 41.444137275514834 ], [ -8.609882370974674, 41.411064358333419 ], [ -8.596446498706939, 41.398145250003267 ], [ -8.622543096886432, 41.380781969112547 ], [ -8.604223801587182, 41.34941437427392 ], [ -8.53464148591587, 41.351223049404211 ], [ -8.467720506096498, 41.375924384502696 ], [ -8.31568844236773, 41.366881007952145 ], [ -8.219286058105126, 41.414578354907121 ], [ -8.169754197598138, 41.400780748332863 ], [ -8.111824916586613, 41.349672756692371 ], [ -8.036144781956125, 41.325023098437214 ], [ -7.989248419778733, 41.347373155146954 ], [ -7.975502489148539, 41.370084947062651 ], [ -7.951214565200019, 41.32825287507012 ], [ -7.909356654785825, 41.306755479082085 ], [ -7.909356654785825, 41.278901881716422 ], [ -7.875456916203746, 41.246784979842914 ], [ -7.896049973727315, 41.159115911969764 ], [ -7.940155808843485, 41.138006090508668 ], [ -8.062060512982271, 41.10586334931412 ], [ -8.223032598675502, 41.103486233402919 ], [ -8.290186123390868, 41.083384101395154 ], [ -8.346177537163612, 41.043954982836169 ], [ -8.392272914563364, 41.039665839007228 ], [ -8.389611578711424, 41.011863919384325 ], [ -8.448135138026203, 41.055478827186107 ], [ -8.484308640631241, 41.017289943875767 ], [ -8.526089035780387, 41.032224432911221 ], [ -8.65520139824288, 41.016651963915109 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-30", "NAME_1": "Madeira" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -10.339955206999946, 35.057196356000077 ], [ -10.398345506999931, 35.03978099200009 ], [ -10.341297980999911, 35.105943101000037 ], [ -10.289133266999954, 35.108710028000075 ], [ -10.275380011999914, 35.060248114000046 ], [ -10.339955206999946, 35.057196356000077 ] ] ], [ [ [ -10.788685675999943, 34.686672268000052 ], [ -10.847808397999927, 34.644029039000088 ], [ -10.97679602799991, 34.64720286700009 ], [ -11.180653449999909, 34.725978908000059 ], [ -11.252105272999927, 34.814520575000074 ], [ -11.184885219999956, 34.874172268000052 ], [ -11.067982550999943, 34.814154364000046 ], [ -10.919748501999948, 34.841213283000059 ], [ -10.797474738999938, 34.774562893000052 ], [ -10.672678188999953, 34.758612372000073 ], [ -10.749989386999914, 34.730617580000057 ], [ -10.788685675999943, 34.686672268000052 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-20", "NAME_1": "Azores" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -14.066802537999934, 37.021470445000034 ], [ -14.016916469999956, 36.970445054000038 ], [ -14.012196417999917, 36.949204820000034 ], [ -14.027088995999918, 36.93431224200009 ], [ -14.119007941999939, 36.952622789000088 ], [ -14.169097459999932, 36.945990302000041 ], [ -14.201649542999917, 36.990423895000049 ], [ -14.170318162999934, 37.015529690000051 ], [ -14.066802537999934, 37.021470445000034 ] ] ], [ [ [ -14.197824673999946, 37.864406643000052 ], [ -14.159169074999909, 37.852036851000037 ], [ -14.135161912999934, 37.822333075000074 ], [ -14.132313605999911, 37.786200262000079 ], [ -14.156849738999938, 37.75454336100006 ], [ -14.505686001999948, 37.706732489000046 ], [ -14.61554928299995, 37.740912177000041 ], [ -14.704253709999932, 37.744045315000051 ], [ -14.825062628999945, 37.815415757000039 ], [ -14.859486456999946, 37.853908596000053 ], [ -14.841460740999935, 37.905991929000038 ], [ -14.764556443999936, 37.91156647300005 ], [ -14.704213019999941, 37.882635809000078 ], [ -14.688832160999937, 37.845851955000057 ], [ -14.553781704999949, 37.829657294000071 ], [ -14.498890753999945, 37.850775458000044 ], [ -14.458485480999911, 37.829657294000071 ], [ -14.339751756999931, 37.861802476000037 ], [ -14.197824673999946, 37.864406643000052 ] ] ], [ [ [ -17.109486456999946, 38.446600653000075 ], [ -17.063832160999937, 38.442775783000059 ], [ -17.040598110999952, 38.409084377000056 ], [ -17.054188605999911, 38.398504950000074 ], [ -17.185210740999935, 38.405951239000046 ], [ -17.241851365999935, 38.37759023600006 ], [ -17.296783006999931, 38.411322333000044 ], [ -17.459543423999946, 38.405666408000059 ], [ -17.548898891999954, 38.484442450000074 ], [ -17.548898891999954, 38.528550523000035 ], [ -17.485259568999936, 38.557806708000044 ], [ -17.374501105999911, 38.550482489000046 ], [ -17.206288214999915, 38.470851955000057 ], [ -17.109486456999946, 38.446600653000075 ] ] ], [ [ [ -17.609730597999942, 38.597398179000038 ], [ -17.596058722999942, 38.552720445000034 ], [ -17.643950975999928, 38.535345770000049 ], [ -17.623402472999942, 38.522365627000056 ], [ -17.727040167999917, 38.514878648000035 ], [ -17.842396613999938, 38.599432684000078 ], [ -17.766346808999913, 38.606756903000075 ], [ -17.719593878999945, 38.645209052000041 ], [ -17.609730597999942, 38.597398179000038 ] ] ], [ [ [ -16.890980597999942, 38.60423411700009 ], [ -16.760609503999945, 38.549017645000049 ], [ -16.835764126999948, 38.542792059000078 ], [ -16.97687740799995, 38.593085028000075 ], [ -17.034535285999937, 38.590073960000041 ], [ -17.074370897999927, 38.617621161000045 ], [ -17.177886522999927, 38.645086981000077 ], [ -17.312123175999943, 38.735256252000056 ], [ -17.315541144999941, 38.755072333000044 ], [ -17.034331834999932, 38.66632721600007 ], [ -16.890980597999942, 38.60423411700009 ] ] ], [ [ [ -16.020130988999938, 38.69367096600007 ], [ -16.054351365999935, 38.679388739000046 ], [ -16.054351365999935, 38.645209052000041 ], [ -16.089100714999915, 38.631008205000057 ], [ -16.204497850999928, 38.65265534100007 ], [ -16.228382941999939, 38.641099351000037 ], [ -16.352691209999932, 38.684393622000073 ], [ -16.391713019999941, 38.758856512000079 ], [ -16.368763800999943, 38.78266022300005 ], [ -16.298207160999937, 38.803534247000073 ], [ -16.144276495999918, 38.796087958000044 ], [ -16.042551235999952, 38.74445221600007 ], [ -16.040882941999939, 38.714422919000071 ], [ -16.020130988999938, 38.69367096600007 ] ] ], [ [ [ -16.983469204999949, 39.015122789000088 ], [ -17.061634894999941, 39.036281643000052 ], [ -17.071522589999915, 39.067613023000035 ], [ -17.054839647999927, 39.097723700000074 ], [ -17.007069464999915, 39.104559637000079 ], [ -16.942209438999953, 39.05304596600007 ], [ -16.947173631999931, 39.024237372000073 ], [ -16.983469204999949, 39.015122789000088 ] ] ], [ [ [ -20.207915818999936, 39.508612372000073 ], [ -20.159535285999937, 39.501776434000078 ], [ -20.140736456999946, 39.48273346600007 ], [ -20.131581183999913, 39.423000393000052 ], [ -20.177235480999911, 39.355617580000057 ], [ -20.254750128999945, 39.358099677000041 ], [ -20.284657355999911, 39.39789459800005 ], [ -20.280913865999935, 39.443101304000038 ], [ -20.255767381999931, 39.507473049000055 ], [ -20.200510219999956, 39.52220286700009 ], [ -20.207915818999936, 39.508612372000073 ] ] ], [ [ [ -20.117298956999946, 39.728338934000078 ], [ -20.08267167899993, 39.722723700000074 ], [ -20.080230272999927, 39.693304755000042 ], [ -20.099964972999942, 39.664007880000042 ], [ -20.131581183999913, 39.65884023600006 ], [ -20.152699347999942, 39.701076565000051 ], [ -20.117298956999946, 39.728338934000078 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "PT-18", "NAME_1": "Viseu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.596765915614526, 41.177848619318297 ], [ -7.417422857778661, 41.215727444266122 ], [ -7.359674444819802, 41.166066393449285 ], [ -7.300659959089842, 41.159348455966438 ], [ -7.334998949042244, 41.065349026036699 ], [ -7.333526169796926, 41.019822089417858 ], [ -7.373549566659165, 41.009564316939645 ], [ -7.334068773055435, 40.973442491177991 ], [ -7.341484340729721, 40.937759914988078 ], [ -7.372981125878255, 40.915642402275012 ], [ -7.423391486427988, 40.917296047774357 ], [ -7.412513597224745, 40.870580552750312 ], [ -7.445508999140998, 40.819550076374924 ], [ -7.522971971379377, 40.867169908064795 ], [ -7.557905238735771, 40.871562405580505 ], [ -7.61859920928606, 40.795443020479013 ], [ -7.57565609415343, 40.752344875715437 ], [ -7.589479539149409, 40.728832099022156 ], [ -7.579247605992236, 40.714104316461032 ], [ -7.539896002698356, 40.685372219052624 ], [ -7.581728074690886, 40.592768053103157 ], [ -7.577697313280396, 40.572304185889436 ], [ -7.686682909088972, 40.551530260313257 ], [ -7.845200365404537, 40.493730170510958 ], [ -7.924652879027178, 40.430116481690277 ], [ -8.11621741410238, 40.338907578821704 ], [ -8.216676398197251, 40.339708564498608 ], [ -8.235409104646465, 40.320639960365838 ], [ -8.350208298574103, 40.372006334424782 ], [ -8.35423906088397, 40.402883001948965 ], [ -8.321631231696017, 40.44502513320333 ], [ -8.331346400915663, 40.48435089807549 ], [ -8.253237474429909, 40.514529934508857 ], [ -8.301994187681601, 40.593904933765657 ], [ -8.248638272238509, 40.618968004070098 ], [ -8.288299932995528, 40.637571520209463 ], [ -8.324990200437412, 40.727178453522811 ], [ -8.239646571631965, 40.818852444384788 ], [ -8.249645961691783, 40.855361842874743 ], [ -8.115390590903075, 40.853475654277986 ], [ -8.128929815958259, 40.935977078279507 ], [ -8.087201096753233, 40.999900825462703 ], [ -8.098130661900541, 41.010572008191616 ], [ -8.123891364195117, 40.983751938701005 ], [ -8.149264491962754, 40.982046617257538 ], [ -8.224376186711652, 41.009409288208076 ], [ -8.229569668105682, 41.053825181686761 ], [ -8.290186123390868, 41.083384101395154 ], [ -8.190218064811859, 41.109144801891091 ], [ -8.062060512982271, 41.10586334931412 ], [ -7.940155808843485, 41.138006090508668 ], [ -7.843288336587477, 41.184437363793279 ], [ -7.737868415095306, 41.152578844338166 ], [ -7.658570929304972, 41.180122382441994 ], [ -7.596765915614526, 41.177848619318297 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/russia.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/russia.geojson new file mode 100644 index 000000000000..2bb4a35042f5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/russia.geojson @@ -0,0 +1,92 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "RU-AL", "NAME_1": "Gorno-Altay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.816324097000063, 49.165837301000082 ], [ 87.400432170000045, 49.071011048000102 ], [ 87.323796021000135, 49.085273743000087 ], [ 87.271757853000111, 49.205111389000038 ], [ 87.024537801000122, 49.248933004000051 ], [ 86.913020061000111, 49.338694967000052 ], [ 86.933070516000043, 49.390113017000019 ], [ 86.814008016000116, 49.45000600200008 ], [ 86.824343303000035, 49.509227194000076 ], [ 86.591799357000127, 49.58720693000005 ], [ 86.775870809000139, 49.695003968000051 ], [ 86.748378947000106, 49.782957255000056 ], [ 86.61019616700014, 49.795514628000049 ], [ 86.475475708000033, 49.670819397000074 ], [ 86.272128947000056, 49.583641256000092 ], [ 86.177251017000117, 49.463338522000086 ], [ 86.070487508000099, 49.526280416000091 ], [ 85.946257365000122, 49.481373596000097 ], [ 85.940572957000086, 49.559611715000059 ], [ 85.673302449000062, 49.560438538000071 ], [ 85.614856404000079, 49.617127584000073 ], [ 85.223614136000094, 49.595733541000087 ], [ 85.05628584800013, 49.873339336000086 ], [ 84.954586629000119, 49.906929017000024 ], [ 84.954793336000137, 49.990489808000049 ], [ 85.028328898000041, 50.020513815000086 ], [ 84.975773967000066, 50.075187480000054 ], [ 84.838676392000082, 50.080820211000074 ], [ 84.440767863000076, 50.244634501000078 ], [ 84.33136885600004, 50.213473613000119 ], [ 84.249978476000138, 50.259930725000046 ], [ 84.176752970000052, 50.439144593000051 ], [ 84.195614868000064, 50.51143992099999 ], [ 84.088597274744416, 50.634612502265156 ], [ 84.541641066182194, 50.691066393299366 ], [ 84.607270134808857, 50.842685044978793 ], [ 84.531305780237517, 50.876843166878643 ], [ 84.505674270051486, 50.959938870082738 ], [ 84.017952101608159, 51.063834337284788 ], [ 84.004929641389822, 51.126569526062724 ], [ 84.144145948676567, 51.119722398270028 ], [ 84.27912478987713, 51.283019924829659 ], [ 84.394156528700819, 51.266018378245519 ], [ 84.715480585160833, 51.399472765155963 ], [ 84.924356724283371, 51.424148260933464 ], [ 85.007659133062532, 51.48900218410347 ], [ 85.231521438063851, 51.46838328725886 ], [ 85.299734328176669, 51.508406684121155 ], [ 85.294566685204302, 51.565483303511598 ], [ 85.471300083132292, 51.568532212991215 ], [ 85.536825799870712, 51.700100410405582 ], [ 85.6699442890976, 51.753973089786257 ], [ 85.745391879731415, 51.729659329214655 ], [ 85.788800082857506, 51.846964830262664 ], [ 85.740327590445929, 51.860607408105352 ], [ 85.876546665096498, 51.919415188260302 ], [ 85.837169224280217, 51.982925523394158 ], [ 85.920988396996904, 52.072119046456805 ], [ 86.36840294773782, 52.01015900313547 ], [ 86.453979119640621, 52.031759751911011 ], [ 86.498524204328533, 52.118524482219073 ], [ 86.7738562361763, 52.113098455928991 ], [ 86.822122023012923, 52.158418687872143 ], [ 86.780057407922982, 52.233065293728316 ], [ 86.811373325918225, 52.287997342103608 ], [ 86.616656528575902, 52.385019843091243 ], [ 86.84982059074764, 52.65115346875757 ], [ 87.116574334937582, 52.667793281035074 ], [ 87.175278762305027, 52.586919664111178 ], [ 87.342090285438303, 52.597099921324286 ], [ 87.377953728781506, 52.50873322236032 ], [ 87.63550906768927, 52.449796250996144 ], [ 87.923760206967927, 52.547593899239018 ], [ 88.208393995986114, 52.414010322018726 ], [ 88.420680779794111, 52.453904526772476 ], [ 88.345749953097823, 52.13345897125447 ], [ 88.249528435988509, 52.116405747827002 ], [ 88.263584425880538, 52.069354356018664 ], [ 88.219556106029415, 52.055634263810191 ], [ 88.095119257247859, 52.086795152174489 ], [ 87.839114211051935, 51.810636298026679 ], [ 87.849036085846649, 51.77213735635388 ], [ 88.105867954342557, 51.761414495882264 ], [ 87.973472934628205, 51.602276922841668 ], [ 87.861541783026837, 51.54936025697026 ], [ 87.923450147706092, 51.479028632465372 ], [ 88.363733351612836, 51.319813544159729 ], [ 88.553385857870978, 51.336479193959633 ], [ 88.665420363159171, 51.423631496995938 ], [ 88.659322544199995, 51.534890855928211 ], [ 88.735700310820675, 51.559385484552422 ], [ 88.824997185771451, 51.516494046263176 ], [ 88.967210728392388, 51.427868963981496 ], [ 88.943749627643172, 51.232997137907546 ], [ 89.040591262376836, 51.173827623446016 ], [ 89.05971154155435, 51.055902004773657 ], [ 89.392404412733413, 50.852684435038611 ], [ 89.666082798182572, 50.582545885484194 ], [ 89.828346795967832, 50.543065090981145 ], [ 89.868447707195912, 50.474542140707229 ], [ 89.834547966815194, 50.4261730010831 ], [ 89.619884067995315, 50.384676825874806 ], [ 89.513740676091288, 50.469426175477565 ], [ 89.51725467266499, 50.369794012783416 ], [ 89.395608351843919, 50.325714016088966 ], [ 89.33669721890152, 50.214868069205977 ], [ 89.507332797870276, 50.204377752731091 ], [ 89.5212854349748, 50.124330959905876 ], [ 89.588981561150092, 50.100249742431629 ], [ 89.549397413859538, 50.039478258414874 ], [ 89.633210984699133, 49.907939134283595 ], [ 89.626446167000097, 49.788021546000024 ], [ 89.702410523000083, 49.719963685000025 ], [ 89.441599569000061, 49.643585917000067 ], [ 89.371939738000037, 49.581677552000045 ], [ 89.216445354000086, 49.634490866000093 ], [ 89.178204793000077, 49.598472392000119 ], [ 89.195258016000082, 49.521526184000024 ], [ 89.014080445000104, 49.460547995000056 ], [ 88.888920125000084, 49.541679993000074 ], [ 88.870626668000114, 49.436001689000065 ], [ 88.615758505000088, 49.492949117000038 ], [ 88.199969930000066, 49.454346822000062 ], [ 88.115530640000031, 49.356575012000079 ], [ 88.143952677000073, 49.270740459000066 ], [ 87.956780640000034, 49.1688862110001 ], [ 87.816324097000063, 49.165837301000082 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-PSK", "NAME_1": "Pskov" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.694408720000069, 57.356375287 ], [ 27.511322876000065, 57.430397441000096 ], [ 27.528169393000042, 57.528479309000048 ], [ 27.352934611000137, 57.527600810000123 ], [ 27.32854333500012, 57.57056976299999 ], [ 27.38487064600011, 57.606975810000094 ], [ 27.391433553000098, 57.680201314000087 ], [ 27.507757202000107, 57.714772847000077 ], [ 27.502434530000073, 57.772547099000079 ], [ 27.553852580000125, 57.794767965000105 ], [ 27.524603719000083, 57.807299500000013 ], [ 27.79931563300002, 57.86106882700004 ], [ 27.664956909000125, 57.918403829000098 ], [ 27.630437053000037, 58.088290100000066 ], [ 27.495354859000116, 58.221460266000051 ], [ 27.494114624000105, 58.319542135000077 ], [ 27.554886108000119, 58.395248109000065 ], [ 27.410605509000106, 58.754864400000073 ], [ 27.477784871000068, 58.875425517000039 ], [ 27.873162061979542, 59.01438263624965 ], [ 28.122449171591995, 58.992575181899099 ], [ 28.279958936655589, 58.852015286576204 ], [ 28.978727654557588, 58.811500963298784 ], [ 28.964568311878054, 58.782820542733816 ], [ 29.256953566254083, 58.694815578975749 ], [ 29.303462354803798, 58.645128688837872 ], [ 29.248271925808695, 58.623295396964977 ], [ 29.559364048212217, 58.533585109964804 ], [ 29.545824823157034, 58.47705109293355 ], [ 29.975049268908606, 58.444649970219928 ], [ 29.658479445170258, 58.243576972399353 ], [ 29.681320428295123, 58.073354804580561 ], [ 29.797902458931333, 58.092552599023179 ], [ 29.926680129284534, 58.024210516801872 ], [ 30.001300896718988, 58.037181301076146 ], [ 29.918101840727331, 57.975531317915966 ], [ 29.937532179166737, 57.945507311113488 ], [ 30.542869907020588, 57.875666612124405 ], [ 30.517755160772026, 57.807221178014913 ], [ 30.412955356904206, 57.777352199944062 ], [ 30.517755160772026, 57.746372178733054 ], [ 30.472073195421615, 57.682215888452447 ], [ 30.608809034909029, 57.617413642125882 ], [ 30.490056593936629, 57.482899888918723 ], [ 30.49315717936031, 57.389262193295565 ], [ 30.441170688576392, 57.365336005452264 ], [ 30.773140090242975, 57.257745672724582 ], [ 30.641055128891082, 57.183951728489433 ], [ 30.650873650898234, 56.967220771221605 ], [ 31.000102979768656, 56.96520539051636 ], [ 30.89633670377583, 56.896682441141706 ], [ 30.887345004967983, 56.804595038230389 ], [ 30.780788201913992, 56.774312649009516 ], [ 30.879386834035131, 56.655250148775337 ], [ 31.060667759109776, 56.677781074437007 ], [ 31.080098096649806, 56.622849026061658 ], [ 31.01601932073504, 56.479963690771683 ], [ 31.202777948043831, 56.445908922558715 ], [ 31.236160922688384, 56.3434862328034 ], [ 31.491545851260014, 56.301292426504233 ], [ 31.47376915921933, 56.125411689298005 ], [ 31.510562777650023, 56.052444566463521 ], [ 31.344681431402933, 55.96402619155549 ], [ 31.467361280998318, 55.729001777410076 ], [ 31.205878534366832, 55.717891344210159 ], [ 31.047335238730284, 55.768534246957927 ], [ 30.907121887000073, 55.577769863000086 ], [ 30.742185099000039, 55.594385478000063 ], [ 30.468816773000128, 55.793520610000044 ], [ 30.200254353000048, 55.857986959000058 ], [ 30.106254924000041, 55.821916809000058 ], [ 29.90781742300004, 55.843207500000048 ], [ 29.805704794000064, 55.771454774000048 ], [ 29.684161825000047, 55.77060211200002 ], [ 29.480866740000124, 55.681098532000092 ], [ 29.350745483000139, 55.766054586000095 ], [ 29.384128459000124, 55.879949443000029 ], [ 29.444434855000111, 55.906924540000077 ], [ 29.377410523000094, 55.954027608000061 ], [ 29.030765015000014, 56.024178366000044 ], [ 28.830880574000105, 55.937672018000015 ], [ 28.731920207000115, 55.946792908000091 ], [ 28.620712524000112, 56.08298614600001 ], [ 28.537823527000086, 56.09771392800009 ], [ 28.289828329000102, 56.046605937000024 ], [ 28.148906697000115, 56.142414043000045 ], [ 28.217274617000072, 56.270726624000119 ], [ 28.16425459800007, 56.437951559000041 ], [ 28.093251180000095, 56.501591086000033 ], [ 28.132215210000084, 56.535981751000079 ], [ 28.010982299000119, 56.58755483 ], [ 27.981009969000098, 56.687006124000035 ], [ 27.86546146677324, 56.742687480242978 ], [ 27.913520548000065, 56.820150452000107 ], [ 27.7863965250001, 56.871258443000087 ], [ 27.628369995000071, 56.844154155000027 ], [ 27.750739786000111, 57.042359111000067 ], [ 27.682216838000102, 57.103699036000037 ], [ 27.824327027000038, 57.159070333000088 ], [ 27.841173543000082, 57.211211853000052 ], [ 27.827737671000136, 57.304952902000124 ], [ 27.694408720000069, 57.356375287 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KDA", "NAME_1": "Krasnodar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.519624471000043, 43.505175069000032 ], [ 40.233130331000098, 43.575765076000025 ], [ 40.096704549000094, 43.562639262000047 ], [ 39.96257571700005, 43.392645575000074 ], [ 39.329356316000087, 43.896226304000038 ], [ 38.758311394000089, 44.273627020000049 ], [ 38.217295769000089, 44.387193101000037 ], [ 38.056162957000083, 44.558986721000053 ], [ 37.984548373000052, 44.564276434000078 ], [ 37.778493686000047, 44.729803778000075 ], [ 37.800059441000087, 44.635239976000037 ], [ 37.498708530000044, 44.668402411000045 ], [ 37.371104363000086, 44.747870184000078 ], [ 37.30600019600007, 44.909654039000088 ], [ 37.191905144000089, 44.991034247000073 ], [ 36.840098504000082, 45.109361070000034 ], [ 36.701670769000089, 45.10382721600007 ], [ 36.577321811000047, 45.194159247000073 ], [ 36.961680535000085, 45.282945054000038 ], [ 36.947276238000086, 45.320217190000051 ], [ 36.78882897200009, 45.292181708000044 ], [ 36.758067254000082, 45.354234117000033 ], [ 36.80250084700009, 45.312689520000049 ], [ 36.847504102000073, 45.367336330000057 ], [ 36.781586134000065, 45.387640692000048 ], [ 36.668142123000052, 45.326361395000049 ], [ 36.705088738000086, 45.391017971000053 ], [ 36.833262566000087, 45.443019924000055 ], [ 37.139414910000085, 45.335516669000071 ], [ 37.078379754000082, 45.238959052000041 ], [ 37.319183790000068, 45.271673895000049 ], [ 37.158946160000085, 45.326076565000051 ], [ 37.381358269000089, 45.306463934000078 ], [ 37.51929772200009, 45.369289455000057 ], [ 37.504730665000068, 45.333807684000078 ], [ 37.600840691000087, 45.331366278000075 ], [ 37.591075066000087, 45.28937409100007 ], [ 37.635101759000065, 45.333807684000078 ], [ 37.729258660000085, 45.301662502000056 ], [ 37.699880405000044, 45.339178778000075 ], [ 37.758067254000082, 45.402044989000046 ], [ 37.717051629000082, 45.38898346600007 ], [ 37.70289147200009, 45.457261460000041 ], [ 37.744395379000082, 45.450425523000035 ], [ 37.635101759000065, 45.608099677000041 ], [ 37.640798373000052, 45.455959377000056 ], [ 37.586273634000065, 45.432440497000073 ], [ 37.59506269600007, 45.635321356000077 ], [ 37.626475457000083, 45.66828034100007 ], [ 37.70289147200009, 45.621771552000041 ], [ 37.666840040000068, 45.669012762000079 ], [ 37.82943769600007, 45.753159898000035 ], [ 37.940114780000044, 46.020331122000073 ], [ 38.097504102000073, 46.057806708000044 ], [ 38.032481316000087, 46.025213934000078 ], [ 38.07398522200009, 46.025213934000078 ], [ 38.041840040000068, 45.961086330000057 ], [ 38.080332879000082, 45.946356512000079 ], [ 38.001231316000087, 45.832586981000077 ], [ 38.039561394000089, 45.816066799000055 ], [ 38.167491082000083, 46.120510158000059 ], [ 38.248789910000085, 46.141546942000048 ], [ 38.42741946700005, 46.038275458000044 ], [ 38.55990644600007, 46.03266022300005 ], [ 38.570811394000089, 46.104681708000044 ], [ 38.300059441000087, 46.218654690000051 ], [ 38.122894727000073, 46.377508856000077 ], [ 37.980642123000052, 46.400336005000042 ], [ 37.995371941000087, 46.354437567000048 ], [ 37.905039910000085, 46.411037502000056 ], [ 37.827321811000047, 46.476507880000042 ], [ 37.737559441000087, 46.676336981000077 ], [ 37.982269727000073, 46.61749909100007 ], [ 38.271739129000082, 46.732367255000042 ], [ 38.313649936000047, 46.676336981000077 ], [ 38.591644727000073, 46.659247137000079 ], [ 38.470550977000073, 46.743475653000075 ], [ 38.378184441000087, 46.708156643000052 ], [ 38.403005405000044, 46.82094961100006 ], [ 38.474619988000086, 46.861883856000077 ], [ 38.907423943660035, 46.818331204221693 ], [ 38.849236281129436, 46.712549547523565 ], [ 38.860398390273474, 46.58798350753284 ], [ 38.884479607747664, 46.634776516023351 ], [ 39.167769809628965, 46.618550116694507 ], [ 39.175831333349322, 46.684230862164554 ], [ 39.241770461237763, 46.700147203130882 ], [ 39.238049758189788, 46.769238593286445 ], [ 39.44351525172749, 46.808900254942785 ], [ 40.122853631190083, 46.726605536516274 ], [ 40.04595909973267, 46.547830919461319 ], [ 40.214424269264612, 46.524938259493069 ], [ 40.285634392912868, 46.432153225490936 ], [ 40.233544549341445, 46.351176255779535 ], [ 40.339481235670462, 46.279888617765494 ], [ 40.72819135904399, 46.280741279386518 ], [ 40.756613397190506, 46.232527166695377 ], [ 40.913296339954115, 46.234749253874952 ], [ 40.998252394232566, 46.294383857229207 ], [ 40.95463748643084, 46.193408108297547 ], [ 41.125893182124628, 46.067886053898235 ], [ 41.165684034990193, 45.900557765928113 ], [ 41.260561964962676, 45.872032375893411 ], [ 41.232863397227959, 45.820407620315393 ], [ 41.280302361764541, 45.764958808002575 ], [ 41.179016555369685, 45.750127671754626 ], [ 41.132921177070671, 45.683310044722759 ], [ 40.856658970135356, 45.69044139335557 ], [ 40.842602980243328, 45.52719554274006 ], [ 41.008070917139094, 45.38482697228693 ], [ 41.025640902705447, 45.220211697012189 ], [ 41.292601353369719, 45.242820136140324 ], [ 41.359574009133212, 45.212020982082606 ], [ 41.352752719762179, 45.105619207760185 ], [ 41.464167108325341, 44.989192205855602 ], [ 41.653199496959189, 44.973430895419483 ], [ 41.587053664395057, 44.788170884878411 ], [ 41.41404096861578, 44.686730047953347 ], [ 41.573411085653049, 44.536765041773208 ], [ 41.729060499642344, 44.485088609351806 ], [ 41.599766066250936, 44.372795722544538 ], [ 41.699604932721456, 44.316261705513284 ], [ 41.69867475763391, 44.211255195171077 ], [ 41.449491000809019, 43.993904120278899 ], [ 41.288053827122383, 44.001552231949915 ], [ 41.274204542805364, 44.076896470695544 ], [ 40.856658970135356, 44.121028144233435 ], [ 40.95308719281968, 43.980933336004625 ], [ 40.776973910717402, 43.923210761467431 ], [ 40.689965575650774, 43.5231293169644 ], [ 40.519624471000043, 43.505175069000032 ] ], [ [ 39.751506788707331, 45.12654816296731 ], [ 39.612083774946257, 45.192952378849157 ], [ 39.315254347110397, 44.998959051918689 ], [ 39.042299432073094, 44.965937812480036 ], [ 38.899775831989018, 45.050687161183532 ], [ 38.806654901202705, 45.00454010694034 ], [ 38.685938754569861, 45.036579495347382 ], [ 38.671882764677832, 44.96180369738272 ], [ 39.063796828061129, 44.810340074434862 ], [ 39.46987023322464, 44.794682114987609 ], [ 39.637198521194762, 44.870749824145037 ], [ 39.496431919397537, 44.953742174561683 ], [ 39.499842564083053, 45.037302964859919 ], [ 39.639162225056623, 45.033969835439507 ], [ 39.667170851153855, 45.010017809174542 ], [ 39.603092075239033, 44.958548082328093 ], [ 39.680503370634028, 44.981234035822069 ], [ 39.739724561938942, 44.931934719311812 ], [ 39.883798455634178, 45.00743398678901 ], [ 40.026632114080769, 44.736184394094494 ], [ 39.914907668054411, 44.698615628408504 ], [ 39.920488722176742, 44.592678941180168 ], [ 39.793571404696536, 44.350213120938747 ], [ 40.078618604864687, 44.236628322938714 ], [ 39.959969516679848, 44.064597479989686 ], [ 39.81331180239772, 44.184900214573247 ], [ 39.737244094139612, 44.186553860072536 ], [ 39.724221633021898, 43.931944077856883 ], [ 40.320360955593628, 43.760274970113755 ], [ 40.456683383931022, 43.965740465450097 ], [ 40.383406202734022, 44.033384914781948 ], [ 40.366456332993323, 44.19805186600081 ], [ 40.438079867791657, 44.291612047258127 ], [ 40.406350538646393, 44.499299627975404 ], [ 40.323668246592263, 44.608414414993206 ], [ 40.404696893147104, 44.737398790022098 ], [ 40.539365675985152, 44.733290514245823 ], [ 40.676514926622531, 44.535679837054829 ], [ 40.640651483279328, 44.457622586513139 ], [ 40.754132927592536, 44.474572455354519 ], [ 40.728398064618943, 44.607768459846511 ], [ 40.527583449216763, 44.915191555146123 ], [ 40.255662062054512, 45.088100898137895 ], [ 39.903022087599254, 45.078644111336644 ], [ 39.751506788707331, 45.12654816296731 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KC", "NAME_1": "Karachay-Cherkess" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.042486613000108, 43.369834494000045 ], [ 40.689965575650774, 43.5231293169644 ], [ 40.776973910717402, 43.923210761467431 ], [ 40.95308719281968, 43.980933336004625 ], [ 40.845703565667009, 44.108625799840752 ], [ 40.869888136828024, 44.129244696685362 ], [ 41.274204542805364, 44.076896470695544 ], [ 41.288053827122383, 44.001552231949915 ], [ 41.449491000809019, 43.993904120278899 ], [ 41.628704868334978, 44.117927557910434 ], [ 41.708906690791139, 44.233398546305864 ], [ 41.690613233913609, 44.328974107369163 ], [ 41.602246534949586, 44.367473049041962 ], [ 41.626534457998787, 44.407496445904258 ], [ 41.848536411026544, 44.490721341216897 ], [ 41.91437218612748, 44.490282090745893 ], [ 41.972249790295564, 44.385043036406955 ], [ 42.286545850910272, 44.328147285069122 ], [ 42.352278273223703, 44.270476386476048 ], [ 42.557020298148245, 44.289079901716093 ], [ 42.555470005436405, 44.244896552234081 ], [ 42.2963643738168, 44.103458156868442 ], [ 42.391449009364294, 43.967549140580331 ], [ 42.499762810705136, 43.972716783552698 ], [ 42.487257114424267, 44.025530097535921 ], [ 42.590713332054634, 44.040257880097045 ], [ 42.559810825209411, 43.981760159203986 ], [ 42.649831169672723, 43.965068670982362 ], [ 42.611797315993329, 43.933752752987118 ], [ 42.663990513251576, 43.910653388343178 ], [ 42.683214146115915, 43.807171332291148 ], [ 42.66192345570289, 43.681261705163536 ], [ 42.456664666840879, 43.610671699139573 ], [ 42.478678826766441, 43.499825751357321 ], [ 42.362560099868688, 43.235194463853418 ], [ 42.043355754000117, 43.180569560000023 ], [ 41.577544393000039, 43.215296123000073 ], [ 41.380657185000075, 43.334772034000125 ], [ 41.042486613000108, 43.369834494000045 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KB", "NAME_1": "Kabardin-Balkar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.615207153000085, 43.13698049 ], [ 42.362560099868688, 43.235194463853418 ], [ 42.478678826766441, 43.499825751357321 ], [ 42.456664666840879, 43.610671699139573 ], [ 42.66192345570289, 43.681261705163536 ], [ 42.69737348789613, 43.817842515919324 ], [ 42.852092725898558, 43.817119046406845 ], [ 43.195017531134113, 43.951451931561394 ], [ 43.316043736129473, 43.806525377144396 ], [ 43.459084100151074, 43.867813625997996 ], [ 43.728731724189686, 43.838719794283065 ], [ 43.90608523884265, 43.994214179540734 ], [ 44.258518507722954, 43.924606025447702 ], [ 44.422229445432549, 43.995196031471664 ], [ 44.416751743198347, 43.946361802954812 ], [ 44.298722771738483, 43.890396226704468 ], [ 44.279809198135979, 43.751438300037478 ], [ 44.32776492661003, 43.664208481736011 ], [ 44.433081496214072, 43.654079902265664 ], [ 44.399285108620859, 43.423913071830782 ], [ 44.319703403789049, 43.431302801982724 ], [ 44.176869745342458, 43.355596828930459 ], [ 44.107830031131016, 43.430656846835973 ], [ 44.035689732395213, 43.364795234212693 ], [ 44.084265577594294, 43.274361476800664 ], [ 44.023080682427519, 43.208887437805004 ], [ 44.013675570671012, 43.252864080812628 ], [ 43.898230421596679, 43.25389761048632 ], [ 43.848104281887061, 43.310069892311674 ], [ 43.735242954298883, 43.110237127941105 ], [ 43.560679965807765, 42.935415757930855 ], [ 43.458567336213548, 42.959703680980056 ], [ 43.386178312878826, 42.886882356235731 ], [ 43.194344930000057, 42.926760763000075 ], [ 42.998852986000145, 43.042205913000132 ], [ 43.0000932210001, 43.098662415000078 ], [ 42.829767700000104, 43.168761495000027 ], [ 42.615207153000085, 43.13698049 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-SE", "NAME_1": "North Ossetia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.939725789000079, 42.552209982000093 ], [ 43.722581421000086, 42.624867045000045 ], [ 43.800612834000106, 42.746461690000089 ], [ 43.392628208325107, 42.900198268835027 ], [ 43.458567336213548, 42.959703680980056 ], [ 43.56615766804191, 42.938826401717051 ], [ 43.735242954298883, 43.110237127941105 ], [ 43.848104281887061, 43.310069892311674 ], [ 43.898230421596679, 43.25389761048632 ], [ 44.013675570671012, 43.252864080812628 ], [ 44.023080682427519, 43.208887437805004 ], [ 44.084265577594294, 43.274361476800664 ], [ 44.035689732395213, 43.364795234212693 ], [ 44.107830031131016, 43.430656846835973 ], [ 44.176869745342458, 43.355596828930459 ], [ 44.319703403789049, 43.431302801982724 ], [ 44.399285108620859, 43.423913071830782 ], [ 44.433081496214072, 43.654079902265664 ], [ 44.311745232856197, 43.675318914935929 ], [ 44.284873488320784, 43.818850206271975 ], [ 44.80938927609418, 43.79926483820168 ], [ 44.838534783753232, 43.584110012067356 ], [ 44.711307407011191, 43.615219225386909 ], [ 44.696114535557342, 43.561630764148447 ], [ 44.621597120910394, 43.548453274299163 ], [ 44.621287061648559, 43.609793199096828 ], [ 44.543255650427909, 43.596796577300154 ], [ 44.497780388853812, 43.396937975407241 ], [ 44.572401157187642, 43.392493801048033 ], [ 44.588834262990815, 43.227232571525917 ], [ 44.660147739426634, 43.208577379442488 ], [ 44.679371372290973, 43.249866848176453 ], [ 44.915325962423196, 43.070911363068944 ], [ 44.932482537738906, 42.91373749389021 ], [ 44.852177361595921, 42.836403713760376 ], [ 44.62841841028137, 42.882783312000242 ], [ 44.638758823000046, 42.740148766000075 ], [ 44.272005249000074, 42.70238169400001 ], [ 44.197384481000086, 42.629104512000097 ], [ 43.939725789000079, 42.552209982000093 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-IN", "NAME_1": "Ingush" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.048081909000132, 42.685896912000132 ], [ 44.859359579000056, 42.759509990000126 ], [ 44.773473348000039, 42.60964833700011 ], [ 44.615602654738723, 42.778500271170572 ], [ 44.62841841028137, 42.882783312000242 ], [ 44.852177361595921, 42.836403713760376 ], [ 44.944368117294744, 42.954122625958405 ], [ 44.922664014832378, 43.061247869793306 ], [ 44.808562452894876, 43.172403875938073 ], [ 44.671723259720636, 43.252140611300149 ], [ 44.660147739426634, 43.208577379442488 ], [ 44.574881625886292, 43.240306707688376 ], [ 44.572401157187642, 43.392493801048033 ], [ 44.497780388853812, 43.396937975407241 ], [ 44.543255650427909, 43.596796577300154 ], [ 44.621287061648559, 43.609793199096828 ], [ 44.621597120910394, 43.548453274299163 ], [ 44.774042595789126, 43.6185265163856 ], [ 45.065084263028268, 43.466856187862732 ], [ 45.169263950171114, 43.127367865734413 ], [ 45.136604445039097, 42.835137640989331 ], [ 45.180219353740142, 42.810255438737499 ], [ 45.048081909000132, 42.685896912000132 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-CE", "NAME_1": "Chechnya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.35597009300011, 42.519963888000049 ], [ 45.15536218200009, 42.693260804000019 ], [ 45.07601819078684, 42.691411917126231 ], [ 45.179289177753333, 42.804105942934882 ], [ 45.136604445039097, 42.835137640989331 ], [ 45.167196892622485, 43.137806505365916 ], [ 45.046687453363234, 43.494348049123118 ], [ 44.838534783753232, 43.584110012067356 ], [ 44.838741489328243, 43.661056220368266 ], [ 44.961421339822948, 43.671391507212263 ], [ 45.004416130899699, 43.758207913464389 ], [ 45.076866488897338, 43.781384793373491 ], [ 45.0688049660763, 43.945483302912066 ], [ 45.197892693892697, 43.950289212477173 ], [ 45.221043736279398, 43.882748115033451 ], [ 45.431780225576915, 43.878613999936135 ], [ 45.453174268777445, 43.994472561059808 ], [ 45.50939822834556, 44.015194810691924 ], [ 45.72850630062527, 43.951736152401509 ], [ 45.831652459893064, 43.978504544149359 ], [ 46.0501404154478, 43.930548813876612 ], [ 46.015207147192086, 43.88081024779467 ], [ 46.056548292769492, 43.819935410990411 ], [ 46.08889773863973, 43.858201809565855 ], [ 46.200002068840377, 43.847659817146848 ], [ 46.246407504602644, 43.942796129537726 ], [ 46.419006789231901, 44.000156968869021 ], [ 46.462311638671167, 43.961968085558681 ], [ 46.455180291836996, 43.881249498265731 ], [ 46.67552859936535, 43.815465400008179 ], [ 46.486289504257172, 43.6755772982537 ], [ 46.438540479559435, 43.540960191359716 ], [ 46.327126091895593, 43.43486847629913 ], [ 46.427791781565418, 43.306349189263642 ], [ 46.408774855175409, 43.216638902263526 ], [ 46.447738884841613, 43.181059678861061 ], [ 46.403297153840526, 43.113751126313389 ], [ 46.534555291993115, 43.079954738720176 ], [ 46.488769972955879, 43.007607734409419 ], [ 46.53693240700494, 42.940583400903222 ], [ 46.393271926258365, 42.872189642737794 ], [ 46.196178013004896, 42.904099839935668 ], [ 46.121350539096056, 42.837928168050496 ], [ 46.169512974044494, 42.729691881075439 ], [ 46.047349888386634, 42.690262763415774 ], [ 46.013243443330225, 42.592025864701895 ], [ 45.961980422058787, 42.61579702381357 ], [ 45.821110466574737, 42.487226060834018 ], [ 45.739506285000118, 42.470646785 ], [ 45.53683760600012, 42.541357931000064 ], [ 45.35597009300011, 42.519963888000049 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-DA", "NAME_1": "Dagestan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.966372111000055, 42.022061463000071 ], [ 45.621380249000083, 42.224478048000051 ], [ 45.739506285000118, 42.470646785 ], [ 45.829068638406909, 42.491437690297118 ], [ 45.968078241017963, 42.619000962924076 ], [ 46.013243443330225, 42.592025864701895 ], [ 46.047349888386634, 42.690262763415774 ], [ 46.169512974044494, 42.729691881075439 ], [ 46.121350539096056, 42.837928168050496 ], [ 46.196178013004896, 42.904099839935668 ], [ 46.393271926258365, 42.872189642737794 ], [ 46.53693240700494, 42.940583400903222 ], [ 46.488769972955879, 43.007607734409419 ], [ 46.534555291993115, 43.079954738720176 ], [ 46.403297153840526, 43.113751126313389 ], [ 46.447738884841613, 43.181059678861061 ], [ 46.408774855175409, 43.216638902263526 ], [ 46.427791781565418, 43.306349189263642 ], [ 46.327126091895593, 43.43486847629913 ], [ 46.438540479559435, 43.540960191359716 ], [ 46.486289504257172, 43.6755772982537 ], [ 46.67552859936535, 43.815465400008179 ], [ 46.455180291836996, 43.881249498265731 ], [ 46.462311638671167, 43.961968085558681 ], [ 46.419006789231901, 44.000156968869021 ], [ 46.246407504602644, 43.942796129537726 ], [ 46.200002068840377, 43.847659817146848 ], [ 46.048693474624145, 43.821356513392345 ], [ 46.015207147192086, 43.88081024779467 ], [ 46.044662713213597, 43.933649400199613 ], [ 45.50939822834556, 44.015194810691924 ], [ 45.511568637782375, 44.188620916721902 ], [ 45.104978468681338, 44.215802721418413 ], [ 45.130713331654931, 44.268305976139857 ], [ 45.404495069891539, 44.317501938963289 ], [ 45.446869745142578, 44.392406928137177 ], [ 45.41048953606321, 44.439199938426384 ], [ 45.226211379251708, 44.465968329274972 ], [ 45.265795525642943, 44.585134182296656 ], [ 45.434880811899916, 44.617483629066214 ], [ 45.646340773407928, 44.799746406071733 ], [ 45.622362908721243, 44.903435166799511 ], [ 45.705975375862863, 44.975782172009588 ], [ 45.853666619818625, 45.000509345529849 ], [ 46.43368289584896, 44.936559759924933 ], [ 46.771956821150354, 44.810650132797377 ], [ 46.792937453200864, 44.765071520234471 ], [ 46.889882439822713, 44.780729478782405 ], [ 46.831309441000087, 44.696356512000079 ], [ 46.72201582100007, 44.655340887000079 ], [ 46.700938347000033, 44.446193752000056 ], [ 46.773203972000033, 44.394680080000057 ], [ 47.025645379000082, 44.359605210000041 ], [ 47.122243686000047, 44.222723700000074 ], [ 47.245941602000073, 44.211981512000079 ], [ 47.461924675000034, 43.860296942000048 ], [ 47.441416863000086, 43.819281317000048 ], [ 47.502777540000068, 43.780991929000038 ], [ 47.393565300000034, 43.606390692000048 ], [ 47.365733269000089, 43.620672919000071 ], [ 47.404307488000086, 43.511379299000055 ], [ 47.465342644000089, 43.552150783000059 ], [ 47.544444207000083, 43.865220445000034 ], [ 47.595713738000086, 43.901190497000073 ], [ 47.701508009000065, 43.874497789000088 ], [ 47.601573113000086, 43.765692450000074 ], [ 47.490896030000044, 43.462836005000042 ], [ 47.493418816000087, 43.29633209800005 ], [ 47.570323113000086, 43.333726304000038 ], [ 47.585703972000033, 43.299546617000033 ], [ 47.485850457000083, 43.212836005000042 ], [ 47.461924675000034, 43.020819403000075 ], [ 47.698090040000068, 42.867132880000042 ], [ 47.727305535000085, 42.662787177000041 ], [ 47.867686394000089, 42.584662177000041 ], [ 48.095957879000082, 42.349798895000049 ], [ 48.386729363000086, 41.937201239000046 ], [ 48.578949415000068, 41.845282294000071 ], [ 48.370153035000044, 41.580150452000098 ], [ 48.053531535000047, 41.461294658 ], [ 47.892146037000089, 41.283269348000019 ], [ 47.894626506000066, 41.219293925000031 ], [ 47.54730920500009, 41.205651347000028 ], [ 47.250841512000136, 41.316032206000031 ], [ 47.239059285000053, 41.415716044000092 ], [ 47.141390828000112, 41.552400208000037 ], [ 47.027030884000112, 41.556947734000076 ], [ 46.902232300000037, 41.712752177000098 ], [ 46.769113811000068, 41.77571991000012 ], [ 46.740795125000034, 41.85124501600005 ], [ 46.567575725000097, 41.786675314000021 ], [ 46.525511109000036, 41.88230255200007 ], [ 46.224340861000144, 41.993484395000095 ], [ 45.966372111000055, 42.022061463000071 ] ] ], [ [ [ 47.851084832000083, 43.999212958000044 ], [ 47.762950066000087, 43.928412177000041 ], [ 47.628184441000087, 43.962591864000046 ], [ 47.66570071700005, 43.996283270000049 ], [ 47.851084832000083, 43.999212958000044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-MUR", "NAME_1": "Murmansk" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.444237508000043, 68.865823466000094 ], [ 28.410234415000104, 68.89853464800008 ], [ 29.172978556000146, 69.0693769330001 ], [ 29.376790405000122, 69.301610820000079 ], [ 29.948073364000038, 69.365586243000067 ], [ 30.123411499000099, 69.441912334 ], [ 30.231621948000111, 69.55833933600006 ], [ 30.119070679000117, 69.634562073000055 ], [ 30.5116565350001, 69.536325176000062 ], [ 30.852979370000128, 69.527436829000052 ], [ 30.927031697000132, 69.578389792000095 ], [ 30.927703491000045, 69.672130839000076 ], [ 30.840953890666185, 69.805841902463143 ], [ 31.409027540000068, 69.715806382000039 ], [ 31.296722852000073, 69.612616278000075 ], [ 31.477793816000087, 69.697658596000053 ], [ 31.810557488000086, 69.687730210000041 ], [ 31.70085696700005, 69.736558335000041 ], [ 31.710948113000086, 69.827378648000035 ], [ 31.848155144000089, 69.852850653000075 ], [ 32.098887566000087, 69.791896877000056 ], [ 31.913340691000087, 69.93618398600006 ], [ 32.05445397200009, 69.963771877000056 ], [ 32.26726321700005, 69.876288153000075 ], [ 32.488291863000086, 69.850897528000075 ], [ 32.52320397200009, 69.803168036000045 ], [ 33.133311394000089, 69.728664455000057 ], [ 33.106700066000087, 69.648911851000037 ], [ 32.871755405000044, 69.582505601000037 ], [ 32.16968834700009, 69.654852606000077 ], [ 32.173675977000073, 69.728664455000057 ], [ 32.111664259000065, 69.752875067000048 ], [ 32.101573113000086, 69.673976955000057 ], [ 31.968272332000083, 69.654201565000051 ], [ 32.055918816000087, 69.636542059000078 ], [ 32.016123894000089, 69.564195054000038 ], [ 32.399099155000044, 69.584214585000041 ], [ 32.433848504000082, 69.564195054000038 ], [ 32.392100457000083, 69.536851304000038 ], [ 32.501963738000086, 69.51703522300005 ], [ 32.193614129000082, 69.434515692000048 ], [ 32.53687584700009, 69.509588934000078 ], [ 32.899261915000068, 69.482245184000078 ], [ 32.769541863000086, 69.414007880000042 ], [ 33.084971550000034, 69.476060289000031 ], [ 32.861827019000089, 69.365220445000034 ], [ 32.823496941000087, 69.301214911000045 ], [ 32.989268425000034, 69.393540757000039 ], [ 33.317637566000087, 69.451239325000074 ], [ 33.523692254000082, 69.428290106000077 ], [ 33.375987175000034, 69.307562567000048 ], [ 33.235118035000085, 69.270005601000037 ], [ 33.447764519000089, 69.288397528000075 ], [ 33.47592207100007, 69.270005601000037 ], [ 33.29656009200005, 69.229071356000077 ], [ 33.544200066000087, 69.208563544000071 ], [ 33.060557488000086, 69.083319403000075 ], [ 33.016368035000085, 69.038723049000055 ], [ 33.023448113000086, 68.954738674000055 ], [ 33.064300977000073, 69.057766018000052 ], [ 33.426605665000068, 69.104681708000044 ], [ 33.576182488000086, 69.199204820000034 ], [ 33.571543816000087, 69.30414459800005 ], [ 33.72396894600007, 69.336818752000056 ], [ 33.72234134200005, 69.30414459800005 ], [ 33.873220248000052, 69.310980536000045 ], [ 33.852061394000089, 69.338934637000079 ], [ 34.420583530000044, 69.310980536000045 ], [ 34.982269727000073, 69.229071356000077 ], [ 34.972666863000086, 69.193345445000034 ], [ 35.264170769000089, 69.215399481000077 ], [ 35.147471550000034, 69.270005601000037 ], [ 35.182627800000034, 69.27993398600006 ], [ 35.966970248000052, 69.176825262000079 ], [ 37.680511915000068, 68.713446356000077 ], [ 38.066579623000052, 68.509670315000051 ], [ 38.32984459700009, 68.442206122000073 ], [ 38.391286655000044, 68.399481512000079 ], [ 38.388682488000086, 68.343166408000059 ], [ 38.765391472000033, 68.290594794000071 ], [ 38.510101759000065, 68.365464585000041 ], [ 38.639170769000089, 68.384955145000049 ], [ 39.520762566000087, 68.075995184000078 ], [ 39.859548373000052, 68.046616929000038 ], [ 39.709808790000068, 68.168768622000073 ], [ 39.793223504000082, 68.164740302000041 ], [ 39.912852410000085, 68.122870184000078 ], [ 40.004405144000089, 68.01984284100007 ], [ 40.410655144000089, 67.875067450000074 ], [ 40.321543816000087, 67.844916083000044 ], [ 40.466807488000086, 67.76117584800005 ], [ 40.654633009000065, 67.814601955000057 ], [ 40.800629102000073, 67.728216864000046 ], [ 40.965830925000034, 67.725083726000037 ], [ 41.053965691000087, 67.653143622000073 ], [ 40.989431186000047, 67.563706773000035 ], [ 40.999278191000087, 67.467474677000041 ], [ 41.15007571700005, 67.423488674000055 ], [ 41.108897332000083, 67.253810940000051 ], [ 41.339691602000073, 67.223822333000044 ], [ 41.335703972000033, 67.159654039000031 ], [ 41.390391472000033, 67.124904690000051 ], [ 41.342539910000085, 67.08734772300005 ], [ 41.360036655000044, 67.013617255000042 ], [ 41.267344597000033, 66.988348700000074 ], [ 41.304698113000086, 66.949896552000041 ], [ 41.178070509000065, 66.809556382000039 ], [ 40.444346550000034, 66.405503648000035 ], [ 39.343597852000073, 66.134711005000042 ], [ 38.55437259200005, 66.05499909100007 ], [ 37.655528191000087, 66.123114325000074 ], [ 36.887380405000044, 66.285223700000074 ], [ 35.557790561000047, 66.38703034100007 ], [ 34.803558790000068, 66.613511460000041 ], [ 34.48015384200005, 66.537583726000037 ], [ 34.355967644000089, 66.629787502000056 ], [ 34.503184441000087, 66.638251044000071 ], [ 34.521657748000052, 66.657171942000048 ], [ 34.092295769000089, 66.672430731000077 ], [ 34.161143425000034, 66.735093492000033 ], [ 34.141368035000085, 66.773830471000053 ], [ 34.069021030000044, 66.701849677000041 ], [ 33.947276238000086, 66.684881903000075 ], [ 33.523692254000082, 66.83071523600006 ], [ 33.626149936000047, 66.748114325000074 ], [ 33.523692254000082, 66.782294012000079 ], [ 33.571543816000087, 66.741929429000038 ], [ 33.488942905000044, 66.768622137000079 ], [ 33.557871941000087, 66.727687893000052 ], [ 33.483246290000068, 66.730414130000042 ], [ 32.804860873000052, 67.010321356000077 ], [ 32.817393425000034, 67.063421942000048 ], [ 32.968760613000086, 67.090765692000048 ], [ 32.38257897200009, 67.159654039000031 ], [ 31.85092207100007, 67.152818101000037 ], [ 32.261973504000082, 67.124986070000034 ], [ 32.358083530000044, 67.070257880000042 ], [ 32.31413821700005, 67.060248114000046 ], [ 32.549815300000034, 67.000067450000074 ], [ 32.506683790000068, 66.948919989000046 ], [ 32.392100457000083, 66.953558661000045 ], [ 32.49586022200009, 66.933091539000031 ], [ 32.420176629000082, 66.885931708000044 ], [ 32.545420769000089, 66.883002020000049 ], [ 32.934743686000047, 66.741929429000038 ], [ 32.769541863000086, 66.741929429000038 ], [ 33.183441602000073, 66.692450262000079 ], [ 33.318614129000082, 66.629339911000045 ], [ 33.156260613000086, 66.653225002000056 ], [ 33.03484134200005, 66.591620184000078 ], [ 32.593597446365038, 66.582344469221823 ], [ 32.54026736844429, 66.492220771071686 ], [ 32.362707147316996, 66.466744290516544 ], [ 32.328704055048092, 66.359153957788862 ], [ 31.90154666504651, 66.356363429828377 ], [ 31.831576775747578, 66.384682115187445 ], [ 31.800674268902355, 66.494184474933547 ], [ 31.652362909120939, 66.537101752543833 ], [ 31.555314568812264, 66.655208238369482 ], [ 31.07327680817815, 66.684147040453524 ], [ 29.362497842000096, 66.626552831000097 ], [ 29.089159383000094, 66.837549337 ], [ 29.051538940000057, 66.907803447000063 ], [ 29.099908081000109, 66.991209208000029 ], [ 29.519830770000112, 67.298167216000039 ], [ 29.91624068200008, 67.50812856099999 ], [ 30.009413290000111, 67.685843811999987 ], [ 29.651192261000062, 67.823561503000079 ], [ 29.330850057000134, 68.072693583000088 ], [ 28.690320679000109, 68.18317779600001 ], [ 28.447906535000044, 68.529719950000057 ], [ 28.801476684000107, 68.835489400000043 ], [ 28.444237508000043, 68.865823466000094 ] ] ], [ [ [ 33.045930453693096, 66.576245388379093 ], [ 33.259613477000073, 66.618394273000035 ], [ 33.53679446700005, 66.535874742000033 ], [ 33.499196811000047, 66.522853908000059 ], [ 33.045930453693096, 66.576245388379093 ] ] ], [ [ [ 32.385996941000087, 67.132310289000031 ], [ 32.393728061000047, 67.100327867000033 ], [ 32.33765709700009, 67.124904690000051 ], [ 32.356130405000044, 67.139064846000053 ], [ 32.385996941000087, 67.132310289000031 ] ] ], [ [ [ 34.030121290000068, 69.393540757000039 ], [ 34.215830925000034, 69.407782294000071 ], [ 34.406911655000044, 69.352525132000039 ], [ 33.975596550000034, 69.369614976000037 ], [ 34.030121290000068, 69.393540757000039 ] ] ], [ [ [ 36.593597852000073, 80.158758856000077 ], [ 36.652598504000082, 80.174872137000079 ], [ 36.853688998000052, 80.151922919000071 ], [ 36.785899285000085, 80.139837958000044 ], [ 36.593597852000073, 80.158758856000077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KR", "NAME_1": "Karelia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.546194294000145, 66.431969319000117 ], [ 29.362497842000096, 66.626552831000097 ], [ 31.07327680817815, 66.684147040453524 ], [ 31.555314568812264, 66.655208238369482 ], [ 31.652362909120939, 66.537101752543833 ], [ 31.800674268902355, 66.494184474933547 ], [ 31.831576775747578, 66.384682115187445 ], [ 31.90154666504651, 66.356363429828377 ], [ 32.328704055048092, 66.359153957788862 ], [ 32.362707147316996, 66.466744290516544 ], [ 32.54026736844429, 66.492220771071686 ], [ 32.593597446365038, 66.582344469221823 ], [ 33.045930453693096, 66.576245388379093 ], [ 33.165847221272202, 66.555932945548989 ], [ 32.940928582000083, 66.528469143000052 ], [ 33.228688998000052, 66.532863674000055 ], [ 33.508636915000068, 66.463812567000048 ], [ 33.602224155000044, 66.501654364000046 ], [ 33.633636915000068, 66.47406647300005 ], [ 33.585215691000087, 66.460150458000044 ], [ 33.735362175000034, 66.426011460000041 ], [ 33.516286655000044, 66.405503648000035 ], [ 33.674571160000085, 66.357123114000046 ], [ 33.629079623000052, 66.344305731000077 ], [ 33.310801629000082, 66.316799221000053 ], [ 33.598806186000047, 66.33038971600007 ], [ 33.899668816000087, 66.228908596000053 ], [ 34.102793816000087, 66.246893622000073 ], [ 34.161387566000087, 66.185492255000042 ], [ 34.552989129000082, 66.093695380000042 ], [ 34.722911004000082, 65.987779039000031 ], [ 34.660899285000085, 65.953029690000051 ], [ 34.716075066000087, 65.932562567000048 ], [ 34.69507897200009, 65.909491278000075 ], [ 34.852386915000068, 65.900336005000042 ], [ 34.825368686000047, 65.84320709800005 ], [ 34.899668816000087, 65.823716539000031 ], [ 34.870616082000083, 65.774481512000079 ], [ 34.968597852000073, 65.727728583000044 ], [ 34.900401238000086, 65.706000067000048 ], [ 34.688731316000087, 65.809719143000052 ], [ 34.688731316000087, 65.727728583000044 ], [ 34.757009311000047, 65.713446356000077 ], [ 34.69499759200005, 65.68618398600006 ], [ 34.776621941000087, 65.596584377000056 ], [ 34.633474155000044, 65.487494208000044 ], [ 34.681895379000082, 65.453355210000041 ], [ 34.510915561000047, 65.455511786000045 ], [ 34.510590040000068, 65.411810614000046 ], [ 34.297048373000052, 65.38507721600007 ], [ 34.462901238000086, 65.364406643000052 ], [ 34.479746941000087, 65.281073309000078 ], [ 34.64031009200005, 65.241156317000048 ], [ 34.606211785000085, 65.22687409100007 ], [ 34.681895379000082, 65.200140692000048 ], [ 34.62671959700009, 65.17218659100007 ], [ 34.663096550000034, 65.126776434000078 ], [ 34.773692254000082, 65.10024648600006 ], [ 34.754405144000089, 65.054877020000049 ], [ 34.81609134200005, 65.043402411000045 ], [ 34.702403191000087, 64.980414130000042 ], [ 34.942067905000044, 64.857570705000057 ], [ 34.757009311000047, 64.774359442000048 ], [ 35.00903061300005, 64.743184417000066 ], [ 34.832286004000082, 64.697943427000041 ], [ 34.97759177800009, 64.611916583000038 ], [ 34.743337436000047, 64.555853583000044 ], [ 35.00896401600005, 64.493906277000065 ], [ 34.955577019000089, 64.452215887000079 ], [ 35.013988861000087, 64.423321447000035 ], [ 35.307302280000044, 64.372219143000052 ], [ 35.34875211700006, 64.296073257000046 ], [ 35.589069842000072, 64.322312605000036 ], [ 35.618157772000075, 64.340428681000049 ], [ 35.582530144000089, 64.411281643000052 ], [ 35.810801629000082, 64.342027085000041 ], [ 35.976735873000052, 64.198960679000038 ], [ 36.059789657000067, 64.218132771000057 ], [ 36.227210561000049, 64.136205516000075 ], [ 36.222138856000072, 64.075298782000061 ], [ 36.292165561000047, 64.009711005000042 ], [ 36.523406226628119, 63.971429154705895 ], [ 36.556663039167915, 63.769544583315849 ], [ 36.469329868078944, 63.675545152486791 ], [ 35.857377557328391, 63.598650621029321 ], [ 36.027599725147184, 63.473955389829371 ], [ 36.21983605289148, 63.416491196811251 ], [ 36.262004021668247, 63.23552033099844 ], [ 36.412279087110164, 63.205599676983468 ], [ 36.31450727728901, 63.155783596535741 ], [ 36.258903436244566, 63.031760158904206 ], [ 36.500542433286626, 62.826036282048733 ], [ 36.759544712118725, 62.717670802965131 ], [ 37.097818638319495, 62.651886704707636 ], [ 37.352273390004939, 62.683822740327173 ], [ 37.512263624666502, 62.637572333296532 ], [ 37.589984979323333, 62.461562404881079 ], [ 37.572621698432613, 62.360638332792803 ], [ 37.428754510312388, 62.213205471255492 ], [ 37.729304640296903, 62.199847114252918 ], [ 37.807749465365532, 61.997559718706043 ], [ 37.929499138974052, 61.962109687412124 ], [ 37.881543409600624, 61.718248603190432 ], [ 37.761964146328296, 61.648227037048116 ], [ 37.772919548997947, 61.522136541867894 ], [ 37.27827273929546, 61.500535793991673 ], [ 37.25594852100744, 61.539913234807898 ], [ 36.996429478237815, 61.594431871133906 ], [ 36.849875115843872, 61.540791733951323 ], [ 36.632317336276003, 61.553142402399942 ], [ 36.466849400279557, 61.406588040006 ], [ 35.436317987185362, 61.161590074222545 ], [ 35.332138299143196, 61.180193590361853 ], [ 35.331828240780681, 61.286853746203406 ], [ 35.258034294746892, 61.254245917015453 ], [ 34.822195265199298, 61.278327135388963 ], [ 34.733311802297806, 61.321011868103199 ], [ 34.53218712673447, 61.266441554933806 ], [ 34.40599327966612, 61.147068997236431 ], [ 34.216134067832968, 61.241946927208915 ], [ 33.534935337295963, 61.220811266426779 ], [ 33.447498814318806, 61.168256333962631 ], [ 33.458557569776019, 61.127225246747685 ], [ 33.584958124218019, 61.071285508919061 ], [ 33.742157830919155, 61.12448639652996 ], [ 33.86711144363818, 61.070536200984861 ], [ 33.752286411288821, 60.943670559448719 ], [ 33.417423129773624, 61.000333766789879 ], [ 33.422590772745934, 60.935970770934318 ], [ 33.235418735186443, 60.892924303014127 ], [ 33.148188917784296, 60.829749863765187 ], [ 33.207306756301762, 60.806779690330416 ], [ 33.10550418507006, 60.745879015104435 ], [ 32.703358189428855, 60.645704250950416 ], [ 29.86952599462893, 61.176292019261268 ], [ 29.576417270740421, 61.170736803560601 ], [ 29.277058695702237, 61.304598834268745 ], [ 29.779143107000039, 61.593114930000056 ], [ 30.647720581000044, 62.192768250000071 ], [ 30.925636433000079, 62.302115581000081 ], [ 31.243756551000104, 62.503343608000066 ], [ 31.569524780000108, 62.905928854000038 ], [ 31.262773478000042, 63.100593974000034 ], [ 31.203965698000104, 63.212680155 ], [ 30.461065307000126, 63.472870993000086 ], [ 29.980784546000052, 63.741536764000088 ], [ 30.201546265000047, 63.792644756000058 ], [ 30.586432332000072, 64.084668275000112 ], [ 30.536202841000147, 64.234684957000084 ], [ 30.032460978000074, 64.39694895500007 ], [ 30.070391479000079, 64.471879781000027 ], [ 29.954842977000112, 64.568979798 ], [ 30.180824015000098, 64.642773743000063 ], [ 30.118863973000146, 64.767934062000066 ], [ 29.780279989000064, 64.795580954000073 ], [ 29.588147013000082, 64.991434632000093 ], [ 29.627317749000099, 65.06223134400004 ], [ 29.850198201000069, 65.121504211000044 ], [ 29.808185262000052, 65.135301819000077 ], [ 29.833196655000052, 65.205013327000117 ], [ 29.580085490000045, 65.235399069000081 ], [ 29.720128622000118, 65.329088440000035 ], [ 29.726329793000104, 65.491507467000062 ], [ 29.838571004000073, 65.564888001 ], [ 29.702868693000141, 65.629380189000031 ], [ 30.116280151000069, 65.687206116000041 ], [ 29.900169311000127, 66.10805898100007 ], [ 29.650882202000105, 66.28789296500004 ], [ 29.546194294000145, 66.431969319000117 ] ] ], [ [ [ 35.94312584700009, 64.405096747000073 ], [ 36.031260613000086, 64.373114325000074 ], [ 36.044932488000086, 64.360337632000039 ], [ 35.975108269000089, 64.332586981000077 ], [ 35.85678144600007, 64.38735586100006 ], [ 35.94312584700009, 64.405096747000073 ] ] ], [ [ [ 35.86687259200005, 65.031317450000074 ], [ 35.744659990000059, 64.961550857000077 ], [ 35.723317905000044, 65.026353257000039 ], [ 35.563260549000063, 65.052138226000068 ], [ 35.506113249000066, 65.121288256000071 ], [ 35.786449566000044, 65.16510551500005 ], [ 35.86687259200005, 65.075995184000078 ], [ 35.79664147200009, 65.114406643000052 ], [ 35.781260613000086, 65.072739976000037 ], [ 35.86687259200005, 65.031317450000074 ] ] ], [ [ [ 36.012950066000087, 65.051703192000048 ], [ 36.005137566000087, 65.026516018000052 ], [ 35.891856316000087, 65.040716864000046 ], [ 35.92741946700005, 65.054103908000059 ], [ 36.012950066000087, 65.051703192000048 ] ] ], [ [ [ 36.211436394000089, 65.158270575000074 ], [ 36.260996941000087, 65.154527085000041 ], [ 35.942230665000068, 65.15460846600007 ], [ 35.990407748000052, 65.191229559000078 ], [ 36.211436394000089, 65.158270575000074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-LEN", "NAME_1": "Leningrad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.003781678781422, 60.664225534880529 ], [ 29.277058695702237, 61.304598834268745 ], [ 29.576417270740421, 61.170736803560601 ], [ 29.86952599462893, 61.176292019261268 ], [ 32.703358189428855, 60.645704250950416 ], [ 33.10550418507006, 60.745879015104435 ], [ 33.207306756301762, 60.806779690330416 ], [ 33.148188917784296, 60.829749863765187 ], [ 33.235418735186443, 60.892924303014127 ], [ 33.422590772745934, 60.935970770934318 ], [ 33.417423129773624, 61.000333766789879 ], [ 33.752286411288821, 60.943670559448719 ], [ 33.86711144363818, 61.070536200984861 ], [ 33.742157830919155, 61.12448639652996 ], [ 33.584958124218019, 61.071285508919061 ], [ 33.458557569776019, 61.127225246747685 ], [ 33.447498814318806, 61.168256333962631 ], [ 33.534935337295963, 61.220811266426779 ], [ 34.216134067832968, 61.241946927208915 ], [ 34.40599327966612, 61.147068997236431 ], [ 34.53218712673447, 61.266441554933806 ], [ 34.733311802297806, 61.321011868103199 ], [ 34.822195265199298, 61.278327135388963 ], [ 35.258034294746892, 61.254245917015453 ], [ 35.331828240780681, 61.286853746203406 ], [ 35.332138299143196, 61.180193590361853 ], [ 35.603852979831117, 61.188306790026331 ], [ 35.69180626764512, 61.128052069947046 ], [ 35.497709587927147, 60.981342677922214 ], [ 35.515382928079646, 60.926669012864636 ], [ 35.44954715297871, 60.86352041293668 ], [ 35.280875277871758, 60.850007026303217 ], [ 35.143829380021828, 60.776548977053608 ], [ 35.238707309994368, 60.658520006493063 ], [ 35.251729771112025, 60.445354723541641 ], [ 35.226718376751649, 60.332441718210703 ], [ 35.147446730282354, 60.268828030289342 ], [ 35.172768182105926, 60.079898994442999 ], [ 35.085331659128769, 60.023778388561766 ], [ 35.413063592011156, 59.972825426552163 ], [ 35.474248488077251, 59.922905992417611 ], [ 35.382471144427768, 59.875415351037589 ], [ 35.405622185915149, 59.712427883739792 ], [ 35.627210727792828, 59.709766546988533 ], [ 35.640543247273001, 59.653465073953953 ], [ 35.497089471202116, 59.647367254994776 ], [ 35.493782180203425, 59.547166653318357 ], [ 35.434974400048475, 59.525152493392852 ], [ 35.485824009270573, 59.485464993314736 ], [ 35.288936801592115, 59.49926259988905 ], [ 35.448513625103715, 59.427690741934157 ], [ 35.320252719587302, 59.339065660551739 ], [ 35.381851026803417, 59.30033417398289 ], [ 34.916246371972477, 59.246823228908852 ], [ 34.798114047725107, 59.102439276851101 ], [ 34.554407993134362, 59.109415594953703 ], [ 34.253134392737991, 59.198505764329525 ], [ 33.999919875401929, 59.148793037568623 ], [ 33.520259229779583, 59.372965400033138 ], [ 33.354274529845668, 59.377719631855484 ], [ 33.339805128803619, 59.320875556461715 ], [ 33.255882603299483, 59.323252672372917 ], [ 33.009902784685721, 59.429990343479517 ], [ 32.73684451686097, 59.272299710363313 ], [ 32.760098911135799, 59.200676175565036 ], [ 32.653232048819973, 59.124711819195056 ], [ 32.58398562993284, 59.180522365814511 ], [ 32.302349073550886, 59.200056057041365 ], [ 32.310410597271243, 59.258398749202911 ], [ 32.124065382911056, 59.394333604812005 ], [ 31.915499302151034, 59.391982327322523 ], [ 31.807392206385202, 59.312090563228878 ], [ 31.551800571339299, 59.368056139479222 ], [ 31.557484979148455, 59.215300605338655 ], [ 31.306027459199868, 58.985237127691278 ], [ 31.154718865882955, 59.076911119452575 ], [ 31.001343215017357, 59.074792385060505 ], [ 30.964963005937932, 58.978467516063006 ], [ 30.727974887930714, 58.828580024248708 ], [ 30.705650668743374, 58.749334215301758 ], [ 30.390011020991778, 58.709956774485534 ], [ 30.165942010415449, 58.765405584999712 ], [ 30.100623000151302, 58.729593818499893 ], [ 30.09173465323164, 58.624277248895908 ], [ 30.167182244764774, 58.536168932350336 ], [ 30.122637160076863, 58.488678290070993 ], [ 30.040988396797047, 58.442996323821262 ], [ 29.658789504432036, 58.450618597969878 ], [ 29.538693475423543, 58.479893296838156 ], [ 29.564221632822068, 58.530122789335223 ], [ 29.457251417718737, 58.59156606692045 ], [ 29.248271925808695, 58.623295396964977 ], [ 29.303462354803798, 58.645128688837872 ], [ 29.256953566254083, 58.694815578975749 ], [ 28.964568311878054, 58.782820542733816 ], [ 28.978727654557588, 58.811500963298784 ], [ 28.279958936655589, 58.852015286576204 ], [ 28.122449171591995, 58.992575181899099 ], [ 27.873162061979542, 59.01438263624965 ], [ 27.69588933300011, 58.977183033000088 ], [ 27.882307984000079, 59.275659485000077 ], [ 28.181824585000044, 59.35606801400003 ], [ 28.019053582000083, 59.481756903000075 ], [ 28.072601759000065, 59.578029690000051 ], [ 28.000173373000052, 59.681382554000038 ], [ 28.007009311000047, 59.758246161000045 ], [ 28.123871290000068, 59.792303778000075 ], [ 28.223887566000087, 59.691107489000046 ], [ 28.375254754000082, 59.66632721600007 ], [ 28.476084832000083, 59.851752020000049 ], [ 28.832530144000089, 59.786525783000059 ], [ 28.97632897200009, 59.831284898000035 ], [ 29.034434441000087, 59.886704820000034 ], [ 28.98023522200009, 59.929877020000049 ], [ 29.161387566000087, 60.002630927000041 ], [ 29.697139291337795, 59.950047624764714 ], [ 29.679563429108953, 59.868852444085007 ], [ 29.849992303402075, 59.827562975350986 ], [ 30.259372999564278, 59.609850165252908 ], [ 30.502458937429992, 59.630727444515912 ], [ 30.55558230977573, 59.685917874410336 ], [ 30.747715284732578, 59.725657050432517 ], [ 30.756190219602956, 59.777488512484808 ], [ 30.51165734181285, 59.862392889919931 ], [ 30.527263625316039, 59.970344956954193 ], [ 30.349910108864435, 60.0625873894964 ], [ 30.390424432141799, 60.122738755888861 ], [ 29.632951287771675, 60.266011663907136 ], [ 29.504483676680309, 60.241672064913814 ], [ 29.417897983000046, 60.168850002000056 ], [ 29.092295769000089, 60.177964585000041 ], [ 28.799489780000044, 60.368841864000046 ], [ 28.746348504000082, 60.34210846600007 ], [ 28.61695397200009, 60.381984768000052 ], [ 28.438975457000083, 60.559881903000075 ], [ 28.70281009200005, 60.461167710000041 ], [ 28.644541863000086, 60.669745184000078 ], [ 28.734548373000052, 60.69281647300005 ], [ 28.690440300000034, 60.738470770000049 ], [ 28.400563998000052, 60.665269273000035 ], [ 28.215830925000034, 60.547552802000041 ], [ 27.900401238000086, 60.528469143000052 ], [ 27.86304772200009, 60.567328192000048 ], [ 27.794118686000047, 60.533189195000034 ], [ 28.003781678781422, 60.664225534880529 ] ] ], [ [ [ 28.634613477000073, 60.601385809000078 ], [ 28.57553144600007, 60.58038971600007 ], [ 28.561045769000089, 60.629461981000077 ], [ 28.604502800000034, 60.645005601000037 ], [ 28.634613477000073, 60.601385809000078 ] ] ], [ [ [ 27.885020379000082, 60.011053778000075 ], [ 27.820485873000052, 59.98273346600007 ], [ 27.802582227000073, 59.999335028000075 ], [ 27.82007897200009, 60.030829169000071 ], [ 27.885020379000082, 60.011053778000075 ] ] ], [ [ [ 27.022227410000085, 60.042181708000044 ], [ 26.984711134000065, 60.017726955000057 ], [ 26.950043165000068, 60.099554755000042 ], [ 26.964121941000087, 60.099432684000078 ], [ 27.022227410000085, 60.042181708000044 ] ] ], [ [ [ 28.711761915000068, 60.294989325000074 ], [ 28.624196811000047, 60.270209052000041 ], [ 28.541351759000065, 60.347357489000046 ], [ 28.580332879000082, 60.348944403000075 ], [ 28.711761915000068, 60.294989325000074 ] ] ], [ [ [ 28.516856316000087, 60.337713934000078 ], [ 28.50367272200009, 60.311021226000037 ], [ 28.42554772200009, 60.36078522300005 ], [ 28.484873894000089, 60.361883856000077 ], [ 28.516856316000087, 60.337713934000078 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KGD", "NAME_1": "Kaliningrad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.374849894000135, 55.289959615000029 ], [ 21.503937622000109, 55.194409892000081 ], [ 22.003442017000054, 55.093485820000055 ], [ 22.049950805000094, 55.033541158000062 ], [ 22.580667765000072, 55.057622376000026 ], [ 22.63348107900012, 54.957938538000022 ], [ 22.752130168000065, 54.931118469000026 ], [ 22.844320923000112, 54.832261455000079 ], [ 22.8328487550001, 54.778672994000019 ], [ 22.72484501100007, 54.723379212000097 ], [ 22.681746867000129, 54.56990020799999 ], [ 22.680403279000075, 54.453214824000085 ], [ 22.767219686000061, 54.356269837000056 ], [ 19.609548373000052, 54.456732489000046 ], [ 19.90015709700009, 54.667059637000079 ], [ 19.961680535000085, 54.773179429000038 ], [ 19.920664910000085, 54.889593817000048 ], [ 19.976735873000052, 54.964585679000038 ], [ 20.482432488000086, 54.975531317000048 ], [ 20.924568700365, 55.282657778829943 ], [ 20.989512566000087, 55.270412502000056 ], [ 20.53093509200005, 54.964667059000078 ], [ 21.090668165000068, 54.901556708000044 ], [ 21.243418816000087, 54.96124909100007 ], [ 21.183441602000073, 55.201727606000077 ], [ 21.374849894000135, 55.289959615000029 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-SMO", "NAME_1": "Smolensk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.980620158000079, 55.018658346000038 ], [ 30.98403080200012, 55.13089955700012 ], [ 30.794274943000062, 55.285515442000033 ], [ 30.918298380000067, 55.387783102000114 ], [ 30.881298055000116, 55.451448466000031 ], [ 30.907121887000073, 55.577769863000086 ], [ 31.047335238730284, 55.768534246957927 ], [ 31.205878534366832, 55.717891344210159 ], [ 31.585596958033193, 55.746623439819871 ], [ 31.754888949865119, 55.714351508315417 ], [ 31.910124952704393, 55.771014716555896 ], [ 32.090992465729698, 55.704042059893141 ], [ 32.053888788037113, 55.660685532711113 ], [ 32.33676557786913, 55.711638494720717 ], [ 32.496445754168178, 55.704507147886545 ], [ 32.552669711937654, 55.659548652048613 ], [ 32.708112420351881, 55.690347805207011 ], [ 32.939312777762439, 55.631798408369832 ], [ 33.165448845887511, 55.64559601494409 ], [ 33.225496860391786, 55.698357652083928 ], [ 33.515504998856613, 55.761299547336193 ], [ 33.670017531284032, 55.865298367325749 ], [ 33.659992302802493, 55.94624949771611 ], [ 33.82742394356012, 55.929816392812256 ], [ 33.898427361633424, 56.070789700184491 ], [ 34.220268182030964, 56.074355374500897 ], [ 34.30656782434562, 56.000768134042119 ], [ 34.63088911344181, 55.917879137312298 ], [ 35.031484816371176, 55.98443838192577 ], [ 35.206977979949784, 55.937929593375998 ], [ 35.352085402419391, 55.784528103189359 ], [ 35.31177778471698, 55.717374579373313 ], [ 35.398490838181601, 55.610869453162707 ], [ 35.380507439666587, 55.56430898687023 ], [ 35.282012160332897, 55.559244696685369 ], [ 35.319942661224786, 55.499455065498864 ], [ 35.289763624791419, 55.324116929752506 ], [ 35.369655388885064, 55.2387991402681 ], [ 35.240257602706151, 55.064856269401275 ], [ 35.127602979793664, 55.012508043411458 ], [ 35.141348911323178, 54.965224106707126 ], [ 35.064867791015729, 54.957110907942024 ], [ 34.992107374655575, 54.88202505071547 ], [ 34.8658101739004, 54.883833726745081 ], [ 34.84999718572152, 54.818359686850044 ], [ 34.921000603794823, 54.771592515881878 ], [ 34.654040154929191, 54.66291697933508 ], [ 34.408060337214749, 54.68012523149423 ], [ 34.499630975289278, 54.631988634068193 ], [ 34.374574008883371, 54.421743069387105 ], [ 34.107510207230234, 54.550314033265977 ], [ 33.724794549129115, 54.55925405523044 ], [ 33.637151319677628, 54.47677846875132 ], [ 33.674358351057037, 54.449183254703428 ], [ 33.616790806150789, 54.373890692801183 ], [ 33.68366010912672, 54.321335761236355 ], [ 33.586198357668025, 54.254724839779499 ], [ 33.617100863613928, 54.182791245719386 ], [ 33.4242444191446, 54.048897610136578 ], [ 33.493490838031732, 54.030733344468274 ], [ 33.445018344720836, 53.999081528789475 ], [ 33.476851026653549, 53.974406033011974 ], [ 33.248131137941641, 53.953968004219973 ], [ 33.288955518682201, 53.821728014136511 ], [ 32.923706496057946, 53.590992743820038 ], [ 32.870169711662868, 53.449864406816914 ], [ 32.766196730094975, 53.414388536201955 ], [ 32.429420614000037, 53.561589661000127 ], [ 32.399086548000128, 53.635383606000076 ], [ 32.487814982000089, 53.66964508100007 ], [ 32.461563354000077, 53.70680043600008 ], [ 32.106029500000091, 53.806949361000093 ], [ 31.744656209000084, 53.794857076000099 ], [ 31.837932170000045, 53.962133687000048 ], [ 31.822635945000059, 54.053445944000075 ], [ 31.324681844000111, 54.229249166000031 ], [ 31.209029988000054, 54.448047181000092 ], [ 31.064646037000045, 54.492282206000098 ], [ 31.167947225000091, 54.621576640000043 ], [ 30.770607137000127, 54.78601104800002 ], [ 30.814842163000037, 54.928017884 ], [ 30.917368205000116, 54.953959452000035 ], [ 30.913234090000117, 55.024601135000026 ], [ 30.980620158000079, 55.018658346000038 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-BRY", "NAME_1": "Bryansk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.697931356000083, 53.325893454 ], [ 32.717794068000046, 53.431061874000093 ], [ 32.857147251444474, 53.43818553283603 ], [ 32.923706496057946, 53.590992743820038 ], [ 33.288955518682201, 53.821728014136511 ], [ 33.248131137941641, 53.953968004219973 ], [ 33.656374953441343, 54.031741034820868 ], [ 33.780191684598549, 53.981537380745522 ], [ 33.873519320959872, 53.874282944802019 ], [ 34.20631554492644, 53.888028876331532 ], [ 34.217167595707963, 53.830254624950953 ], [ 34.290548129692411, 53.815061754396424 ], [ 34.537251417818652, 53.59817576839697 ], [ 34.489192335657719, 53.565180366480718 ], [ 34.536011182570007, 53.468364570168774 ], [ 34.500044387338562, 53.427281806110443 ], [ 35.017222120904137, 53.39178009707382 ], [ 35.010090773170646, 53.290339260148698 ], [ 35.103521763218794, 53.310777288940699 ], [ 35.108999464553619, 53.145180161735027 ], [ 35.313638136690656, 53.062187812217758 ], [ 35.205014276087923, 52.999969387377291 ], [ 35.134527621952145, 53.012371730870655 ], [ 35.151477491692845, 52.960333564142672 ], [ 34.97081668514187, 52.97278758447942 ], [ 34.796150343863246, 52.864499619761602 ], [ 34.873044875320716, 52.781274726247602 ], [ 35.091532830875451, 52.697972317468441 ], [ 34.992934197854936, 52.654124863871345 ], [ 34.989626905956925, 52.510541897490555 ], [ 34.832943963193316, 52.424035550500207 ], [ 34.917176547959286, 52.321819566319903 ], [ 34.855681594429996, 52.25526032170643 ], [ 34.882243279703573, 52.23102407550067 ], [ 34.804625277834305, 52.185135402776609 ], [ 34.678844841915918, 52.202705390141602 ], [ 34.71067752474795, 52.115113837533556 ], [ 34.672333611806721, 52.065478624239063 ], [ 34.567740512614535, 52.034343574296486 ], [ 34.525779250312155, 52.070594591267366 ], [ 34.396278110446417, 52.007601020070979 ], [ 34.335609979217168, 51.934659736557592 ], [ 34.436482375361322, 51.902827052826183 ], [ 34.371101382000063, 51.826811306000124 ], [ 34.096243937000054, 51.95181711900004 ], [ 34.065341431000036, 52.158626201000047 ], [ 33.778950643000144, 52.36006093400006 ], [ 33.510078166000085, 52.287533061000047 ], [ 33.480519246000142, 52.357761333000028 ], [ 33.182862996000097, 52.367295635000019 ], [ 32.908977905000143, 52.241101787000034 ], [ 32.353559611000037, 52.321587830000013 ], [ 32.366995484000086, 52.247199606 ], [ 32.233308553000086, 52.080853170000083 ], [ 31.910382528000127, 52.029073385000046 ], [ 31.858706095000059, 52.099870097000078 ], [ 31.76434493000005, 52.100567729000048 ], [ 31.68238610800006, 52.201931051000102 ], [ 31.699439331000121, 52.251462911000047 ], [ 31.567354370000146, 52.311381734000051 ], [ 31.608075398000096, 52.372463278000041 ], [ 31.550559529000054, 52.511886292000028 ], [ 31.628642618000072, 52.548059795000043 ], [ 31.48064131700005, 52.682521871000077 ], [ 31.570248250000134, 52.725258281 ], [ 31.560843139000042, 52.787063294000077 ], [ 31.247063843000092, 53.014387919000043 ], [ 31.363697550000097, 53.08877614400005 ], [ 31.416355835000104, 53.199983826000064 ], [ 31.738558390000037, 53.192542419000048 ], [ 31.79628096600004, 53.112392273000083 ], [ 32.117294963000063, 53.081102193000063 ], [ 32.423632853000072, 53.204402161000061 ], [ 32.479133342000068, 53.274914653000039 ], [ 32.454845419000037, 53.300442811000082 ], [ 32.697931356000083, 53.325893454 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KRS", "NAME_1": "Kursk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.356899862000091, 51.705553081000019 ], [ 34.414157349000106, 51.736455587000123 ], [ 34.371101382000063, 51.826811306000124 ], [ 34.436482375361322, 51.902827052826183 ], [ 34.335609979217168, 51.934659736557592 ], [ 34.384909294828049, 51.996413072505277 ], [ 34.521025017590489, 52.069483548127209 ], [ 34.588204379828255, 52.033878486303081 ], [ 34.684115837675733, 52.071550604776576 ], [ 34.7100574071236, 52.133924059247931 ], [ 34.675434198129722, 52.199889023759397 ], [ 34.842349074050503, 52.200173245498831 ], [ 34.915936313609961, 52.316186835354131 ], [ 34.896816034432447, 52.353238837102651 ], [ 35.105072055930634, 52.33024282524616 ], [ 35.548662550836013, 52.43297557246467 ], [ 35.640129836123037, 52.328175767697473 ], [ 35.62938113812902, 52.248904120328859 ], [ 36.350680779894049, 52.368069973350543 ], [ 36.493101027190619, 52.240351671092697 ], [ 36.820212844247351, 52.120281481405243 ], [ 37.186598749332802, 52.079147040503472 ], [ 37.386896599898137, 51.926598211937915 ], [ 37.512573683029018, 52.01147675185058 ], [ 37.651789992114402, 51.971143297525145 ], [ 37.758656854430285, 52.014913234957817 ], [ 37.808369582090506, 51.917193101980047 ], [ 37.891051874144637, 51.884197700063794 ], [ 38.298778923908174, 51.961014716256102 ], [ 38.30394656777986, 51.915074368487296 ], [ 38.409779901321372, 51.920190335515542 ], [ 38.426419711800236, 51.814563707549041 ], [ 38.386835565409001, 51.776219793708492 ], [ 38.505071242443876, 51.731881415494911 ], [ 38.409779901321372, 51.687801418800404 ], [ 38.213202752005373, 51.707180081295689 ], [ 38.218887159814528, 51.631784165706677 ], [ 38.13992557080843, 51.628683580282996 ], [ 38.274801060120808, 51.53142853529863 ], [ 38.28637658131413, 51.367278347117974 ], [ 38.352005649940793, 51.371851711787031 ], [ 38.291544224286497, 51.292450873209191 ], [ 38.039673293187889, 51.355754502768036 ], [ 38.041740349837255, 51.421202704241409 ], [ 37.818084751310209, 51.419032293905218 ], [ 37.666672805205792, 51.365650540040349 ], [ 37.368603143020607, 51.385778510469834 ], [ 37.249127231636407, 51.33097565420303 ], [ 37.136886020773204, 51.341104234572754 ], [ 37.124690382854851, 51.232997137907546 ], [ 37.053997023144063, 51.246898098168685 ], [ 36.611026645862978, 51.078045355908444 ], [ 36.505606724370807, 51.12308136701148 ], [ 36.4761511565506, 51.086339422726155 ], [ 35.983984816446082, 51.159668280766539 ], [ 35.939749790120686, 51.116105048009558 ], [ 35.998867628638152, 51.053318183287502 ], [ 35.81014529836682, 50.940405177956563 ], [ 35.731080356573159, 50.971049303282712 ], [ 35.710823194934505, 50.93089671521119 ], [ 35.546388787712374, 50.905730292119244 ], [ 35.45512820800036, 50.962858588353129 ], [ 35.282218058000069, 50.961107412000032 ], [ 35.346400187000086, 51.036601664000059 ], [ 35.143621867000036, 51.058486634000118 ], [ 35.078716268000107, 51.207624817000053 ], [ 34.674916626000083, 51.167678935000069 ], [ 34.608357381000076, 51.234005636000106 ], [ 34.185954224000113, 51.248914286000044 ], [ 34.283622681000054, 51.301236674000066 ], [ 34.300159139000129, 51.368390198000029 ], [ 34.185850871000071, 51.394150899000024 ], [ 34.223678019000147, 51.514763692000074 ], [ 34.07950077400011, 51.643102112000051 ], [ 34.356899862000091, 51.705553081000019 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-BEL", "NAME_1": "Belgorod" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.67320194500013, 50.340184225000044 ], [ 35.425258423000059, 50.500484518000107 ], [ 35.376165812000124, 50.634584860000032 ], [ 35.468873332000101, 50.668536275000051 ], [ 35.282218058000069, 50.961107412000032 ], [ 35.45512820800036, 50.962858588353129 ], [ 35.546388787712374, 50.905730292119244 ], [ 35.710823194934505, 50.93089671521119 ], [ 35.731080356573159, 50.971049303282712 ], [ 35.804150832195148, 50.938234768519749 ], [ 35.998867628638152, 51.053318183287502 ], [ 35.939749790120686, 51.116105048009558 ], [ 35.983984816446082, 51.159668280766539 ], [ 36.4761511565506, 51.086339422726155 ], [ 36.505606724370807, 51.12308136701148 ], [ 36.611026645862978, 51.078045355908444 ], [ 37.053997023144063, 51.246898098168685 ], [ 37.124690382854851, 51.232997137907546 ], [ 37.144224074081706, 51.342912909702989 ], [ 38.041740349837255, 51.421202704241409 ], [ 38.044014112960895, 51.353919990115401 ], [ 38.439855584067914, 51.263486232703428 ], [ 38.501040480134009, 51.185558173370964 ], [ 38.369472283618961, 51.146025702923851 ], [ 38.398927849640529, 51.073471992138707 ], [ 38.618449333969579, 50.998386134912153 ], [ 38.737615186991263, 51.073678696814397 ], [ 38.845825637343239, 51.036471666334307 ], [ 38.871870557779971, 50.900924384352834 ], [ 38.732860956068237, 50.899529120372563 ], [ 38.724489373985421, 50.790078437469901 ], [ 38.793942499346826, 50.783618883304769 ], [ 38.818230422396027, 50.711581936457151 ], [ 39.118780552380542, 50.610502834737986 ], [ 39.067414178321656, 50.598152167188744 ], [ 39.097696568441847, 50.506064765176745 ], [ 38.990416294076681, 50.432735908035681 ], [ 39.084777459212376, 50.348710028844721 ], [ 39.055735305240148, 50.311554674308752 ], [ 39.1079285006997, 50.274761054079363 ], [ 39.099040154679358, 50.164741930395735 ], [ 39.272362908821151, 50.059580390422639 ], [ 39.181005517000074, 49.859486931000063 ], [ 38.937395467000101, 49.803472799000119 ], [ 38.687281535000068, 49.913801982000095 ], [ 38.664647257000127, 49.965168356000063 ], [ 38.356035604000056, 49.980567932000028 ], [ 38.299914999000123, 50.060511373000068 ], [ 38.173927856000091, 50.060149638000055 ], [ 38.166176392000068, 49.940570374000075 ], [ 38.00039839700014, 49.89979766900008 ], [ 37.915855754000063, 50.003305563000097 ], [ 37.727650187000108, 50.078701477 ], [ 37.597115519000056, 50.196937154000025 ], [ 37.599182576000089, 50.290884908000052 ], [ 37.480016724000052, 50.340029195000014 ], [ 37.415214478000053, 50.431858216000066 ], [ 36.848634074000074, 50.323699443000081 ], [ 36.594386027000098, 50.204430237000068 ], [ 36.410004516000129, 50.304579163000071 ], [ 36.269031209000104, 50.281376445000078 ], [ 36.105837036000082, 50.421109518000051 ], [ 35.837429646000146, 50.423228251000111 ], [ 35.67320194500013, 50.340184225000044 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-VOR", "NAME_1": "Voronezh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.327655884000137, 49.726319885000052 ], [ 39.23804895100011, 49.765128886000085 ], [ 39.181005517000074, 49.859486931000063 ], [ 39.272362908821151, 50.059580390422639 ], [ 39.099040154679358, 50.164741930395735 ], [ 39.1079285006997, 50.274761054079363 ], [ 39.055735305240148, 50.311554674308752 ], [ 39.084777459212376, 50.348710028844721 ], [ 38.990416294076681, 50.432735908035681 ], [ 39.097696568441847, 50.506064765176745 ], [ 39.067414178321656, 50.598152167188744 ], [ 39.118780552380542, 50.610502834737986 ], [ 38.818230422396027, 50.711581936457151 ], [ 38.793942499346826, 50.783618883304769 ], [ 38.724489373985421, 50.790078437469901 ], [ 38.732860956068237, 50.899529120372563 ], [ 38.871870557779971, 50.900924384352834 ], [ 38.845825637343239, 51.036471666334307 ], [ 38.737615186991263, 51.073678696814397 ], [ 38.618449333969579, 50.998386134912153 ], [ 38.40337202310036, 51.071353257746637 ], [ 38.369472283618961, 51.146025702923851 ], [ 38.501040480134009, 51.188865465268975 ], [ 38.420321892841059, 51.274855048321797 ], [ 38.293714633723368, 51.284725247172389 ], [ 38.352005649940793, 51.371851711787031 ], [ 38.28637658131413, 51.367278347117974 ], [ 38.274801060120808, 51.53142853529863 ], [ 38.13992557080843, 51.628683580282996 ], [ 38.218887159814528, 51.631784165706677 ], [ 38.213202752005373, 51.707180081295689 ], [ 38.409779901321372, 51.687801418800404 ], [ 38.505071242443876, 51.731881415494911 ], [ 38.386835565409001, 51.776219793708492 ], [ 38.426419711800236, 51.814563707549041 ], [ 38.409779901321372, 51.920190335515542 ], [ 38.30394656777986, 51.915074368487296 ], [ 38.298778923908174, 51.961014716256102 ], [ 38.687695753756032, 52.100153510076382 ], [ 38.762006462827969, 52.052378647856301 ], [ 38.870526970643141, 52.095683499094207 ], [ 39.035891554751402, 51.988299871941535 ], [ 39.160535109107968, 52.09299632392117 ], [ 39.26523156108766, 52.105011094686233 ], [ 39.44713260288728, 52.082195949983088 ], [ 39.514415317912551, 52.023853257821543 ], [ 39.496638624972547, 51.972693590236986 ], [ 39.738070917338916, 51.924479479344484 ], [ 40.122440220040119, 51.99238231109473 ], [ 40.734599237264945, 51.940395820310812 ], [ 40.777697381129201, 51.896832587553831 ], [ 40.937687615790821, 51.89024384217953 ], [ 40.88756147608126, 51.746557522111914 ], [ 41.066051874094683, 51.710177313931865 ], [ 41.278131952327726, 51.736635647317257 ], [ 41.298905877004586, 51.79466828111623 ], [ 41.436365186903856, 51.764024155790139 ], [ 41.492279087210079, 51.801101995960323 ], [ 41.952199334231864, 51.656382148017713 ], [ 42.116943800715831, 51.643333849377598 ], [ 42.11901085826446, 51.71410472345417 ], [ 42.192391392248908, 51.72630036137258 ], [ 42.273730096266888, 51.600416571767369 ], [ 42.455837843641575, 51.628063463557964 ], [ 42.863978306353715, 51.375882473197578 ], [ 42.844547967015046, 51.316661281892607 ], [ 42.904492628731816, 51.240800279209509 ], [ 42.669054803436381, 51.229689846009535 ], [ 42.573039991902078, 51.16850495084276 ], [ 42.254816521765065, 51.132486476969291 ], [ 41.97700402211791, 51.203283189467584 ], [ 41.854944289247555, 51.18855540600714 ], [ 41.724409620607503, 51.018229885400842 ], [ 41.444323357836652, 50.917357490156007 ], [ 41.369805943189704, 50.830773627001236 ], [ 41.167544386963868, 50.780518296981768 ], [ 41.329911736637314, 50.716852932217023 ], [ 41.408769972855964, 50.619287827970879 ], [ 41.525765414642137, 50.598668932025589 ], [ 41.418898553225631, 50.502240709341265 ], [ 41.508608840225747, 50.392118231970812 ], [ 41.280509068238871, 50.164586899865526 ], [ 41.35047895663854, 50.083558255109381 ], [ 41.109976841158243, 49.972453924908677 ], [ 41.029258253865294, 49.794221910212968 ], [ 40.884770949020037, 49.690300605488517 ], [ 40.490479770624916, 49.594854233835804 ], [ 39.998105916000043, 49.608239238000081 ], [ 39.828710571000101, 49.541473288000034 ], [ 39.622935018000078, 49.61345855800009 ], [ 39.557512655000096, 49.72399444600002 ], [ 39.327655884000137, 49.726319885000052 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-ROS", "NAME_1": "Rostov" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.891342407000081, 49.04176218700006 ], [ 40.141663045000143, 49.24578074099999 ], [ 40.159543091000103, 49.333579 ], [ 40.034899536000125, 49.487058004000048 ], [ 40.118504096000095, 49.588451001000053 ], [ 40.198094517148206, 49.626712755089557 ], [ 40.490479770624916, 49.594854233835804 ], [ 40.884770949020037, 49.690300605488517 ], [ 41.029258253865294, 49.794221910212968 ], [ 41.109976841158243, 49.972453924908677 ], [ 41.35047895663854, 50.083558255109381 ], [ 41.280509068238871, 50.164586899865526 ], [ 41.362054477831862, 50.226340236712531 ], [ 41.492382439997584, 50.083558255109381 ], [ 41.591394484168063, 50.051105455552317 ], [ 41.616715935991635, 49.962170314908064 ], [ 41.876131625973755, 49.900416978960379 ], [ 42.115083448742155, 49.750348619093472 ], [ 42.180505811793751, 49.673919176528727 ], [ 42.071985304877899, 49.501784979892875 ], [ 42.092345819304114, 49.288671372885517 ], [ 42.0342615086617, 49.261024481994241 ], [ 42.070641716841749, 49.151883857454038 ], [ 42.343803338353382, 49.152142238973113 ], [ 42.392585890026794, 49.053078517959193 ], [ 42.662750278902251, 48.967295641380701 ], [ 42.66037316299105, 48.90037466156133 ], [ 42.745432570057062, 48.796866767087579 ], [ 42.653138461570734, 48.710102036779574 ], [ 42.700887486268471, 48.618221341241906 ], [ 42.628643832946523, 48.548044745468587 ], [ 42.27652062422743, 48.497970283501729 ], [ 42.077876418262065, 48.411257229137789 ], [ 42.146502720424166, 48.287182115562132 ], [ 42.049454380115549, 48.259896958977436 ], [ 42.09896040220076, 48.160936590751021 ], [ 42.020618930818955, 48.037481593900395 ], [ 42.491907992559788, 48.013607082900535 ], [ 42.730963169015013, 47.851601467533669 ], [ 42.955342237953914, 47.51033030869678 ], [ 43.081122673872301, 47.577509670934546 ], [ 43.153262974406744, 47.567329412822119 ], [ 43.156053500568589, 47.49526662935142 ], [ 43.225713332404325, 47.450153102983279 ], [ 43.731522251250851, 47.476611437267991 ], [ 43.802318962849824, 47.282540595072362 ], [ 43.939158156024064, 47.268898017229674 ], [ 43.973678013129756, 47.393386541955294 ], [ 44.116408318788842, 47.418449612259792 ], [ 44.120852492248673, 47.542214667472876 ], [ 44.24456587061843, 47.569318956004963 ], [ 44.250560336790102, 47.508883368772445 ], [ 44.333966099256031, 47.475242010810121 ], [ 44.327558221035076, 47.110768134541729 ], [ 44.262445917245259, 46.900134996233078 ], [ 44.072586703613467, 46.827736314179504 ], [ 43.814307896092487, 46.580051174122389 ], [ 43.926445754168185, 46.528323065756865 ], [ 43.918384230447828, 46.415978502106157 ], [ 43.96644331170944, 46.339755764217102 ], [ 43.861746860629069, 46.291825873265395 ], [ 43.772966749615762, 46.407916979285119 ], [ 43.619384393175153, 46.197283840976468 ], [ 43.355627883420084, 46.172349961881196 ], [ 42.928367139731677, 46.435615546120516 ], [ 42.776645135264744, 46.388434964002386 ], [ 42.609936964918973, 46.407555244079219 ], [ 42.409329055091803, 46.524938259493069 ], [ 42.168516880349728, 46.578707586985502 ], [ 42.0342615086617, 46.543257554792319 ], [ 42.087694940269273, 46.417890530023897 ], [ 42.172650995447043, 46.385541083254338 ], [ 42.206344027554792, 46.317018133879742 ], [ 41.963051385013387, 46.289112861469334 ], [ 41.85690799310936, 46.155012519412196 ], [ 41.736811965000186, 46.212838446736896 ], [ 41.659193963130861, 46.178318590530523 ], [ 41.712627393839114, 45.996004137580883 ], [ 41.162376743092182, 45.953551947964002 ], [ 41.125893182124628, 46.067886053898235 ], [ 40.95463748643084, 46.193408108297547 ], [ 40.998252394232566, 46.294383857229207 ], [ 40.913296339954115, 46.234749253874952 ], [ 40.756613397190506, 46.232527166695377 ], [ 40.72819135904399, 46.280741279386518 ], [ 40.339481235670462, 46.279888617765494 ], [ 40.236748487552632, 46.345982774385504 ], [ 40.282223749126672, 46.443211981847469 ], [ 40.206362746443574, 46.530028388099595 ], [ 40.04595909973267, 46.547830919461319 ], [ 40.046889275719479, 46.623200994830029 ], [ 40.131535271635471, 46.722264715843949 ], [ 40.023428175869583, 46.764846095770679 ], [ 39.44351525172749, 46.808900254942785 ], [ 39.238049758189788, 46.769238593286445 ], [ 39.241770461237763, 46.700147203130882 ], [ 39.175831333349322, 46.684230862164554 ], [ 39.167769809628965, 46.618550116694507 ], [ 38.884479607747664, 46.634776516023351 ], [ 38.860398390273474, 46.58798350753284 ], [ 38.849236281129436, 46.712549547523565 ], [ 38.911454705969902, 46.81497223637956 ], [ 38.690486280817197, 46.821483466488758 ], [ 38.673527437142944, 46.862954815742064 ], [ 39.075205925000034, 47.03266022300005 ], [ 39.280039910000085, 47.012762762000079 ], [ 39.303558790000068, 47.084702867000033 ], [ 39.388682488000086, 47.115179755000042 ], [ 39.280039910000085, 47.087836005000042 ], [ 39.264008009000065, 47.260809637000079 ], [ 39.088145379000082, 47.286444403000075 ], [ 38.944590691000087, 47.252752997000073 ], [ 38.937754754000082, 47.18976471600007 ], [ 38.847422722000033, 47.163560289000088 ], [ 38.56804446700005, 47.115179755000042 ], [ 38.478037957000083, 47.142482815000051 ], [ 38.55990644600007, 47.21820709800005 ], [ 38.775645379000082, 47.245510158000059 ], [ 38.810394727000073, 47.287827867000033 ], [ 38.553396030000044, 47.229803778000075 ], [ 38.427907748000052, 47.133530992000033 ], [ 38.216644727000073, 47.103257554000038 ], [ 38.203486776000034, 47.192314352000054 ], [ 38.30094852700006, 47.276030172 ], [ 38.188707316000091, 47.300989889000064 ], [ 38.257953736000104, 47.393232321000042 ], [ 38.274386840000091, 47.527849427000021 ], [ 38.352935018000039, 47.607095236000063 ], [ 38.734513794000065, 47.677142639000081 ], [ 38.796215454000048, 47.819924622000073 ], [ 38.877244100000098, 47.86123993000011 ], [ 39.759050741000067, 47.832947083000121 ], [ 39.796154419000061, 47.961363017000011 ], [ 39.759877563000089, 48.014951478000071 ], [ 39.842973266000058, 48.036397197 ], [ 39.843076619000101, 48.119751282000053 ], [ 39.993248332000121, 48.273230286000043 ], [ 39.815894816000082, 48.308163554000046 ], [ 39.924105266000083, 48.37611806299999 ], [ 39.835325155000078, 48.573470358000023 ], [ 39.631720011000084, 48.586906230000082 ], [ 39.77941125500007, 48.807719625000075 ], [ 39.975264933000119, 48.789684550000075 ], [ 40.052779582000085, 48.849732565000082 ], [ 40.034279419000143, 48.885596009000025 ], [ 39.950356893000048, 48.852781474000025 ], [ 39.758740682000052, 48.8954145310001 ], [ 39.67399133300006, 48.970138652000102 ], [ 39.698279256000035, 49.028377991000028 ], [ 39.891342407000081, 49.04176218700006 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-BU", "NAME_1": "Buryat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.005967652000038, 51.731727193000054 ], [ 99.709654989000057, 51.880581156000076 ], [ 99.323890422000034, 51.934221294000068 ], [ 98.994711548000112, 52.058296407000071 ], [ 98.932390577563069, 52.19185333936008 ], [ 98.808987257555827, 52.196400864708096 ], [ 98.799478793911192, 52.274225572152432 ], [ 98.646103143045593, 52.262753403746558 ], [ 98.677109002678264, 52.369697781327545 ], [ 98.629256626092399, 52.424293932019339 ], [ 98.805576612870368, 52.514004218120135 ], [ 98.800408969898001, 52.606143296975574 ], [ 98.934044223961735, 52.665622869799563 ], [ 98.937764927009709, 52.797501126475765 ], [ 98.866451450573948, 52.792850247440924 ], [ 98.850741815182573, 52.83553498015516 ], [ 98.938074986271545, 52.924857693527713 ], [ 99.206689080636522, 52.853440864304446 ], [ 99.370296664659293, 53.109265042447703 ], [ 99.690173781195028, 53.131950995042359 ], [ 99.877655878016299, 53.204194648364307 ], [ 99.842102492136235, 53.26010854777121 ], [ 99.869387648720988, 53.29752228472563 ], [ 100.079814080555309, 53.300312811786796 ], [ 100.247865838937287, 53.37653555057517 ], [ 100.401034784227875, 53.234218655166785 ], [ 100.350805291730808, 53.159365342836281 ], [ 100.395143670843709, 53.101177680305682 ], [ 100.865605910284501, 52.800291653536931 ], [ 101.459988233670003, 52.620974433223466 ], [ 101.48210574728239, 52.562425035486967 ], [ 101.687571241719411, 52.460622464255323 ], [ 101.673618606413527, 52.409023546199649 ], [ 101.910400017946415, 52.317091172919277 ], [ 101.893863560255056, 52.285025946989833 ], [ 101.963213331929694, 52.222445786943467 ], [ 102.045688918408814, 52.212188015364575 ], [ 102.176533645411382, 52.277119452900422 ], [ 102.542092727297472, 52.227613429915834 ], [ 102.573511997180901, 52.149065252959019 ], [ 102.768848912147519, 51.989643459977685 ], [ 103.208925408680614, 51.80913768215828 ], [ 103.181433547420227, 51.611061916973881 ], [ 103.327781203339839, 51.438049221194603 ], [ 103.576344843439756, 51.479235338040382 ], [ 103.816743606132491, 51.401255601864534 ], [ 103.813746371697675, 51.131866360244317 ], [ 104.21237837076518, 51.281107896911863 ], [ 104.488433872125484, 51.310330918936756 ], [ 104.609356724333338, 51.268292141369216 ], [ 104.668887974000768, 51.338313707511588 ], [ 104.628683709985182, 51.44337189379786 ], [ 104.649871046711382, 51.622430731692873 ], [ 105.123123814112716, 51.73108043071727 ], [ 105.4611910338391, 51.863346259222453 ], [ 105.751509230666443, 52.03098460645441 ], [ 106.198303663783008, 52.440184435463323 ], [ 108.060825636793652, 53.205124824351117 ], [ 108.423490838831128, 53.783177394720951 ], [ 109.040714146240816, 54.480886746326235 ], [ 108.557849563306661, 54.542975979058156 ], [ 108.698616164204566, 54.681003729738336 ], [ 108.694895461156591, 54.889983222547642 ], [ 108.762694940119331, 54.930084133775722 ], [ 108.690347934909198, 55.062324123859185 ], [ 108.782228632245562, 55.169501044537526 ], [ 108.778921340347551, 55.232959702827998 ], [ 108.652004021967969, 55.301017565108509 ], [ 108.667713658258663, 55.400753078791524 ], [ 108.622238396684622, 55.455891831842564 ], [ 108.690657994171033, 55.52131419489416 ], [ 108.688074171785559, 55.604874986091716 ], [ 108.77137658056472, 55.62327179575675 ], [ 108.85405887261885, 55.86625438083496 ], [ 108.970744256941884, 55.945629380991136 ], [ 109.187991978147238, 55.914003403734057 ], [ 109.25506798669818, 55.979529120472478 ], [ 108.991208124155548, 56.039680487764258 ], [ 108.829564243994639, 56.239719956810518 ], [ 108.583894483743393, 56.281655382489873 ], [ 108.5570227401073, 56.345656643139534 ], [ 108.720423618555117, 56.501616116390608 ], [ 108.672364537293504, 56.563989569962644 ], [ 108.699029576253906, 56.582903144464524 ], [ 108.929609816939433, 56.588174140224339 ], [ 109.143136835096811, 56.676075751194958 ], [ 109.308088007155789, 56.668479316367325 ], [ 109.410200636749948, 56.734935208193292 ], [ 109.767078078190707, 56.704084378191453 ], [ 109.888414340649263, 56.78976390198244 ], [ 109.886864047937422, 56.890868842123325 ], [ 109.988976679330221, 56.96902944635184 ], [ 110.339239536975015, 56.937351793150697 ], [ 110.60010216688147, 56.83027822525986 ], [ 110.752547641760202, 56.874099840435235 ], [ 111.152316522389526, 56.813431708306666 ], [ 111.372148065081092, 56.900351468245617 ], [ 111.336077915263559, 56.955076809247316 ], [ 111.462478468806239, 57.102457993941243 ], [ 111.586915317587795, 57.107160549819469 ], [ 111.631770460638222, 57.01197256148447 ], [ 111.813671503337162, 56.908412991066655 ], [ 112.109570754286892, 56.94437978809674 ], [ 112.234937779055258, 56.877717189796442 ], [ 112.457766555282205, 56.863712876747854 ], [ 112.662095168157407, 56.959650173916373 ], [ 112.745914340874037, 56.933941148465181 ], [ 112.698475376337456, 56.861077379317578 ], [ 112.747154576122739, 56.761031806372728 ], [ 112.895775995165991, 56.691707872220491 ], [ 113.369545525605531, 56.626052965172164 ], [ 113.513722772088272, 56.678788763890338 ], [ 113.803007440141187, 56.602436834792059 ], [ 113.89747195806433, 56.525438951446404 ], [ 114.004958938004506, 56.541200262781899 ], [ 113.997104119859159, 56.58497020111389 ], [ 114.144795362915602, 56.681140042279083 ], [ 114.440591261977147, 56.654164944056902 ], [ 114.500122511644577, 56.701087145555277 ], [ 114.779278599327881, 56.699381822313228 ], [ 114.845734491153848, 56.832035224446031 ], [ 115.046549106555972, 56.985281684102404 ], [ 115.025051710567936, 57.037190660520537 ], [ 115.085926548271573, 57.118581041381901 ], [ 115.449935337445822, 57.097031969449802 ], [ 115.689197218576737, 57.13320547115552 ], [ 115.862726679192861, 57.243276272581909 ], [ 116.131030715195266, 57.238573716703627 ], [ 116.238414341448674, 57.149328517696915 ], [ 115.8048490741254, 57.031299547136371 ], [ 115.622017857238234, 56.933682766046786 ], [ 115.598660110175842, 56.764907538152329 ], [ 115.434122349267, 56.689795844302751 ], [ 115.435569289191335, 56.641090806995123 ], [ 115.68785363233917, 56.595357163901951 ], [ 115.680515578131349, 56.525335597759579 ], [ 115.800508254352394, 56.466114407353984 ], [ 115.694364862448424, 56.439190985975188 ], [ 115.687956985126675, 56.32669139269359 ], [ 115.837611932044979, 56.178948472793763 ], [ 115.777563918440023, 56.154092108963653 ], [ 115.762474399773737, 56.075957343156858 ], [ 115.89703982982428, 55.948084011268065 ], [ 115.844433222315274, 55.856849269977772 ], [ 115.844846632566032, 55.704817206249061 ], [ 115.913266229153123, 55.674948229077472 ], [ 115.886704542980283, 55.545343736424286 ], [ 115.967939895110021, 55.476355699056228 ], [ 115.94499555919765, 55.413775539909238 ], [ 116.131444126345286, 55.374398098193637 ], [ 116.393340285026056, 55.40220001871586 ], [ 116.468787875659928, 55.257867744400869 ], [ 116.782463820448925, 55.143662827877165 ], [ 116.923437127821103, 54.885487372244427 ], [ 116.927467889231707, 54.825878608211156 ], [ 116.866076287590545, 54.791126207108732 ], [ 116.883646274955595, 54.73753774676959 ], [ 116.774092238366052, 54.690305487807962 ], [ 116.777296176577238, 54.626640123043217 ], [ 116.703605585129594, 54.554034736314009 ], [ 116.538241001021333, 54.541632391921326 ], [ 116.492145623621582, 54.496906440080124 ], [ 116.19045861207519, 54.53848013055358 ], [ 115.629355909647416, 54.442284450966611 ], [ 115.514324171723047, 54.39719676391951 ], [ 115.491069777448274, 54.328673815444176 ], [ 115.179150831845391, 54.210593167140928 ], [ 114.957562290867031, 54.01923533854 ], [ 114.605955845186031, 53.93908519112864 ], [ 114.500742629268871, 53.844930732467276 ], [ 114.377546013937376, 53.843690497218631 ], [ 114.326076287990304, 53.790024523413024 ], [ 113.983461542016471, 53.743748277061286 ], [ 113.982221306767883, 53.681374824388627 ], [ 113.806108025564868, 53.643134264234902 ], [ 113.889410435243349, 53.535388901876274 ], [ 113.829982538363424, 53.454721992326085 ], [ 113.842488234644293, 53.381806546335042 ], [ 113.946151157849613, 53.351834215476629 ], [ 113.982841425291554, 53.23623403587203 ], [ 114.197712029686386, 53.19251577438348 ], [ 114.128982374736779, 53.076347153997915 ], [ 114.325146112003381, 53.067717190395967 ], [ 114.284631788726074, 53.01805613957913 ], [ 114.312847121297523, 52.971805732548489 ], [ 114.228304478169093, 52.955372625845996 ], [ 114.238019647388796, 52.825458075729557 ], [ 114.102937453400727, 52.704638577208527 ], [ 113.744199659986293, 52.57363882147439 ], [ 113.580592075963523, 52.454472968452706 ], [ 113.266089308874484, 52.475453600503215 ], [ 112.930605909734936, 52.337167467404697 ], [ 112.544789667109399, 52.34703766535597 ], [ 112.405366652449061, 52.208389797950815 ], [ 112.206205681646793, 52.244770006130864 ], [ 112.167138300092461, 52.299547023975947 ], [ 112.069573194946997, 52.280375067954992 ], [ 111.594666782945637, 51.925513007219479 ], [ 111.055061477405218, 51.793686428286037 ], [ 111.002454868996949, 51.725266831698889 ], [ 110.844945103034036, 51.664624538891303 ], [ 110.862411736712261, 51.594990546376607 ], [ 110.676996698338939, 51.50445343707645 ], [ 110.544808384199541, 51.495926826262007 ], [ 110.4225419448548, 51.523315334734889 ], [ 110.389158970210246, 51.577007147861536 ], [ 110.049231399409507, 51.616074531214622 ], [ 109.448544549691178, 51.419729925895354 ], [ 109.366792433623857, 51.352783108553581 ], [ 109.332169223730659, 51.388775743106009 ], [ 109.247213168552832, 51.365960598402864 ], [ 109.073890415310359, 51.506623847412584 ], [ 108.942012160432796, 51.440478013949132 ], [ 108.59154259631373, 51.506158759419179 ], [ 108.354244419044676, 51.267310289438285 ], [ 108.570045201225014, 51.110782376305622 ], [ 108.49749149043987, 51.058847561465768 ], [ 108.335744256592136, 51.045825100348054 ], [ 108.249651319852489, 50.843511868178155 ], [ 108.067026809439653, 50.753491522815523 ], [ 108.179784784240383, 50.659595444773913 ], [ 108.416772902247601, 50.609882717113692 ], [ 108.545757277276493, 50.528647365883216 ], [ 108.65975548732581, 50.533504951392388 ], [ 108.6757751810797, 50.494747626401818 ], [ 108.200972120966583, 50.408292955355591 ], [ 108.13172570207945, 50.318220934048838 ], [ 107.990235629870369, 50.334757391740197 ], [ 107.926260206743109, 50.214816393261913 ], [ 107.772367791939985, 50.152081204483977 ], [ 107.797069126139206, 50.033690496918894 ], [ 107.744604144765447, 49.967352880331134 ], [ 107.192195679000122, 50.006044414000073 ], [ 107.057113485000116, 50.074102275000044 ], [ 106.973656047000134, 50.196368713000069 ], [ 106.656517782000037, 50.327006735000069 ], [ 106.222280721000061, 50.292383525000062 ], [ 106.055934286000081, 50.333569642000057 ], [ 105.984879192000051, 50.399767151000034 ], [ 105.328640178000057, 50.476454977000074 ], [ 105.105759726000031, 50.390051982 ], [ 104.405802450000124, 50.300548401000086 ], [ 104.121685425000123, 50.148257955000091 ], [ 103.785271851000118, 50.186136780000098 ], [ 103.601407104000089, 50.133530172000107 ], [ 103.306593058000033, 50.190425924000053 ], [ 103.201689901000066, 50.296982727000014 ], [ 102.927391398000111, 50.302977193000046 ], [ 102.617797893000102, 50.399302063 ], [ 102.51310144100006, 50.503688457000081 ], [ 102.302933390000078, 50.563891500000025 ], [ 102.2759066160001, 50.650191142000082 ], [ 102.329391724000061, 50.718817445000028 ], [ 102.216788778000137, 50.798864237000075 ], [ 102.229656209000041, 50.97926666299999 ], [ 102.146508830000073, 51.097631531000061 ], [ 102.135295044000031, 51.240284323000097 ], [ 102.183870890000094, 51.323896790000035 ], [ 101.723692261000053, 51.450581563000057 ], [ 101.350175008000065, 51.4504523720001 ], [ 100.510898072000032, 51.726895447000018 ], [ 100.005967652000038, 51.731727193000054 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-TY", "NAME_1": "Tuva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.937651562969222, 52.124687488536722 ], [ 98.855598592000092, 52.106691386000122 ], [ 98.682689250000124, 51.819473776000066 ], [ 98.332219686000087, 51.718317160000097 ], [ 98.228246704000128, 51.583415833000046 ], [ 98.220391886000073, 51.475205383000045 ], [ 98.050893189000135, 51.466420390000067 ], [ 97.915707642000029, 51.300616557000112 ], [ 97.929040162000035, 51.215040385000052 ], [ 97.808530721000068, 50.970481669000023 ], [ 97.984644003000028, 50.84692332000013 ], [ 97.944026327000131, 50.774472962000047 ], [ 98.038490845000069, 50.622957663000065 ], [ 98.293462362000071, 50.518622946000036 ], [ 98.262456502000134, 50.283805237000124 ], [ 98.047999308000044, 50.02304596000009 ], [ 97.829924765000101, 49.923310446000087 ], [ 97.756337525000106, 49.961499329000063 ], [ 97.566581665000058, 49.916799215000097 ], [ 97.542707153000094, 49.822748108000056 ], [ 97.301688274000071, 49.725544739000057 ], [ 97.152963501000102, 49.75024607400006 ], [ 96.969202108000047, 49.886671855000131 ], [ 96.701931600000137, 49.913750305000079 ], [ 96.585142863000101, 49.857526347000018 ], [ 96.50328739400004, 49.922121887000046 ], [ 96.346294393000107, 49.888583883000038 ], [ 96.055976196000131, 49.998809713000085 ], [ 95.946318807000125, 49.938503316000023 ], [ 95.827876424000124, 50.020152079000084 ], [ 95.500661255000125, 49.886723532000033 ], [ 95.35472701000009, 49.947701721 ], [ 95.076397746000055, 49.945531311000124 ], [ 94.921575155000085, 50.04588694300007 ], [ 94.60345503800005, 50.019738668000073 ], [ 94.491730591000078, 50.15228871699999 ], [ 94.354477987000109, 50.223602193000076 ], [ 94.258669882000049, 50.557535299 ], [ 93.104941854000117, 50.598824768000028 ], [ 93.011407512000062, 50.623319397000088 ], [ 92.961694783000098, 50.77788360600006 ], [ 92.796123495000074, 50.788012187000035 ], [ 92.649775839000029, 50.674065653000056 ], [ 92.360904582000046, 50.868369040000047 ], [ 92.30168339100004, 50.843357646000058 ], [ 92.242772258000059, 50.720006002000062 ], [ 92.158849731000032, 50.689103495000055 ], [ 91.749779093000086, 50.684090882000092 ], [ 91.415742635000129, 50.46136545800006 ], [ 90.975149374000125, 50.41392649400008 ], [ 90.726585735000072, 50.291866761000037 ], [ 90.683901001000095, 50.216212464000066 ], [ 90.475231567000094, 50.214610494000041 ], [ 90.020530640000061, 50.070743307000029 ], [ 89.96942264900008, 49.967080384000084 ], [ 89.633210984699133, 49.907939134283595 ], [ 89.584950799739602, 49.933748276761548 ], [ 89.603657667767095, 49.998860582349948 ], [ 89.548880649922012, 50.04668712051415 ], [ 89.591151970586907, 50.095185452246824 ], [ 89.5212854349748, 50.124330959905876 ], [ 89.513223912153762, 50.19936513938967 ], [ 89.345068800984336, 50.204481106417916 ], [ 89.349409620757342, 50.264219062559675 ], [ 89.51725467266499, 50.369794012783416 ], [ 89.513740676091288, 50.469426175477565 ], [ 89.633319940262993, 50.385193589812275 ], [ 89.843643020209186, 50.429919542552796 ], [ 89.86565718013469, 50.501723945403739 ], [ 89.666082798182572, 50.582545885484194 ], [ 89.392404412733413, 50.852684435038611 ], [ 89.05971154155435, 51.055902004773657 ], [ 89.040591262376836, 51.173827623446016 ], [ 88.943749627643172, 51.232997137907546 ], [ 88.967210728392388, 51.427868963981496 ], [ 88.735700310820675, 51.559385484552422 ], [ 89.206162551160787, 51.658500882409783 ], [ 89.215567661118655, 51.568532212991215 ], [ 89.259079217032195, 51.548636786558404 ], [ 89.420929802768171, 51.605377509164668 ], [ 89.580609979067219, 51.553029283174851 ], [ 89.730368279672348, 51.582226466777968 ], [ 89.964979282667741, 51.761414495882264 ], [ 90.100888299855114, 51.75089834188492 ], [ 90.027507765870666, 51.984372464217813 ], [ 90.118871698370128, 52.043800361097738 ], [ 90.129413689889816, 52.135215969541321 ], [ 90.350072055780686, 52.191594956941685 ], [ 90.491252068727931, 52.181853950199638 ], [ 90.735991652093048, 52.069380195339704 ], [ 90.849266391730566, 51.908046373541254 ], [ 91.100517206104143, 51.942721259378573 ], [ 91.238906691090904, 51.882311510567718 ], [ 91.557750278852268, 51.899881497033448 ], [ 92.105210401638658, 51.783041083079468 ], [ 92.852554965639115, 51.833115545945645 ], [ 93.360430942933647, 52.12942820894466 ], [ 93.678034296345686, 52.223841050923738 ], [ 93.764540643335977, 52.439486803473187 ], [ 94.071395297854679, 52.667199001832444 ], [ 94.148703241361488, 52.841736151901841 ], [ 94.304972772075757, 52.903954575842988 ], [ 94.512298619385717, 52.910827542057405 ], [ 94.604282667710891, 53.049423733518438 ], [ 94.604179314923385, 53.175772610217734 ], [ 94.701124302444555, 53.237629299852301 ], [ 94.594464145703739, 53.315660711972271 ], [ 94.739881625636485, 53.382736721422532 ], [ 95.053040805588694, 53.37746572476334 ], [ 95.246827426944151, 53.456582343400385 ], [ 95.396275669186764, 53.372194729003525 ], [ 95.757080520149827, 53.520454412840877 ], [ 96.091633742403246, 53.450536201284649 ], [ 96.252037388214831, 53.6161074900686 ], [ 96.287590774094895, 53.580657456976041 ], [ 96.372443474686577, 53.599054267540396 ], [ 96.354666782645836, 53.561020412961682 ], [ 96.443653599234153, 53.510687568576429 ], [ 96.652839796719206, 53.551796170157104 ], [ 96.718365512558307, 53.698634752491785 ], [ 96.874945103433731, 53.729072171343603 ], [ 97.127539504044819, 53.612696845383084 ], [ 97.333935175368026, 53.594403388505555 ], [ 97.447830030831199, 53.461491603954357 ], [ 97.585806105567258, 53.438082180048525 ], [ 97.606269972780979, 53.373021552202829 ], [ 97.957566359200086, 53.357725327961475 ], [ 98.030843540397029, 53.25261546483182 ], [ 98.28912234881733, 53.223263250698437 ], [ 98.303178338709301, 53.103735663370117 ], [ 98.937661574222204, 53.149365952776463 ], [ 99.064372186127457, 53.097405301313586 ], [ 98.989338006643663, 53.034489244483041 ], [ 99.249787225400098, 52.953822333134156 ], [ 99.206689080636522, 52.853440864304446 ], [ 98.928669875414357, 52.918475653728422 ], [ 98.850741815182573, 52.83553498015516 ], [ 98.866451450573948, 52.792850247440924 ], [ 98.937764927009709, 52.797501126475765 ], [ 98.934044223961735, 52.665622869799563 ], [ 98.800408969898001, 52.606143296975574 ], [ 98.805576612870368, 52.514004218120135 ], [ 98.629256626092399, 52.424293932019339 ], [ 98.677109002678264, 52.369697781327545 ], [ 98.646103143045593, 52.262753403746558 ], [ 98.799478793911192, 52.274225572152432 ], [ 98.808987257555827, 52.196400864708096 ], [ 98.926809524340058, 52.195367336833101 ], [ 98.937651562969222, 52.124687488536722 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-ZAB", "NAME_1": "Chita" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.473043254000061, 50.234040833 ], [ 114.286284628000089, 50.276880595000037 ], [ 113.84982548000005, 50.080716858000059 ], [ 113.579661092000038, 50.01994537400013 ], [ 113.182682740000075, 49.801974182000023 ], [ 113.060829712000157, 49.595991923000057 ], [ 112.777126099000043, 49.501372375000031 ], [ 112.473268678000125, 49.534135234000033 ], [ 112.030194947000041, 49.411868795000018 ], [ 111.661018514000034, 49.396365865000107 ], [ 111.479117473000088, 49.34334584600002 ], [ 111.338454224000088, 49.36473988900012 ], [ 110.688054647000058, 49.134521383000063 ], [ 110.371174764000045, 49.24174998000008 ], [ 110.1814189050001, 49.161961569000098 ], [ 109.728526652000028, 49.266451315000026 ], [ 109.516239868000071, 49.25590932300004 ], [ 109.286693156000069, 49.338539938000096 ], [ 108.538056681000057, 49.327429505000069 ], [ 108.236369670000101, 49.532481588000095 ], [ 108.106196737000062, 49.554340719000024 ], [ 108.015711304000035, 49.602244772000049 ], [ 108.015814657000078, 49.655729879000077 ], [ 107.927447958000073, 49.670044251000078 ], [ 107.95649011200004, 49.923362122000086 ], [ 107.744604144765447, 49.967352880331134 ], [ 107.797069126139206, 50.033690496918894 ], [ 107.772367791939985, 50.152081204483977 ], [ 107.926260206743109, 50.214816393261913 ], [ 107.990235629870369, 50.334757391740197 ], [ 108.13172570207945, 50.318220934048838 ], [ 108.200972120966583, 50.408292955355591 ], [ 108.6757751810797, 50.494747626401818 ], [ 108.65975548732581, 50.533504951392388 ], [ 108.545757277276493, 50.528647365883216 ], [ 108.416772902247601, 50.609882717113692 ], [ 108.179784784240383, 50.659595444773913 ], [ 108.067026809439653, 50.753491522815523 ], [ 108.249651319852489, 50.843511868178155 ], [ 108.335744256592136, 51.045825100348054 ], [ 108.49749149043987, 51.058847561465768 ], [ 108.570045201225014, 51.110782376305622 ], [ 108.354244419044676, 51.267310289438285 ], [ 108.59154259631373, 51.506158759419179 ], [ 108.942012160432796, 51.440478013949132 ], [ 109.073890415310359, 51.506623847412584 ], [ 109.247213168552832, 51.365960598402864 ], [ 109.332169223730659, 51.388775743106009 ], [ 109.366792433623857, 51.352783108553581 ], [ 109.448544549691178, 51.419729925895354 ], [ 110.049231399409507, 51.616074531214622 ], [ 110.389158970210246, 51.577007147861536 ], [ 110.4225419448548, 51.523315334734889 ], [ 110.544808384199541, 51.495926826262007 ], [ 110.676996698338939, 51.50445343707645 ], [ 110.862411736712261, 51.594990546376607 ], [ 110.844945103034036, 51.664624538891303 ], [ 111.002454868996949, 51.725266831698889 ], [ 111.055061477405218, 51.793686428286037 ], [ 111.594666782945637, 51.925513007219479 ], [ 112.069573194946997, 52.280375067954992 ], [ 112.167138300092461, 52.299547023975947 ], [ 112.206205681646793, 52.244770006130864 ], [ 112.405366652449061, 52.208389797950815 ], [ 112.544789667109399, 52.34703766535597 ], [ 112.930605909734936, 52.337167467404697 ], [ 113.266089308874484, 52.475453600503215 ], [ 113.580592075963523, 52.454472968452706 ], [ 113.744199659986293, 52.57363882147439 ], [ 114.102937453400727, 52.704638577208527 ], [ 114.238019647388796, 52.825458075729557 ], [ 114.228304478169093, 52.955372625845996 ], [ 114.312847121297523, 52.971805732548489 ], [ 114.284631788726074, 53.01805613957913 ], [ 114.325146112003381, 53.067717190395967 ], [ 114.128982374736779, 53.076347153997915 ], [ 114.197712029686386, 53.19251577438348 ], [ 113.982841425291554, 53.23623403587203 ], [ 113.946151157849613, 53.351834215476629 ], [ 113.842488234644293, 53.381806546335042 ], [ 113.829982538363424, 53.454721992326085 ], [ 113.889410435243349, 53.535388901876274 ], [ 113.814479607647741, 53.649025376719749 ], [ 113.982221306767883, 53.681374824388627 ], [ 113.983461542016471, 53.743748277061286 ], [ 114.326076287990304, 53.790024523413024 ], [ 114.377546013937376, 53.843690497218631 ], [ 114.500742629268871, 53.844930732467276 ], [ 114.605955845186031, 53.93908519112864 ], [ 114.957562290867031, 54.01923533854 ], [ 115.179150831845391, 54.210593167140928 ], [ 115.491069777448274, 54.328673815444176 ], [ 115.514324171723047, 54.39719676391951 ], [ 115.629355909647416, 54.442284450966611 ], [ 116.19045861207519, 54.53848013055358 ], [ 116.508165318274791, 54.497552395226819 ], [ 116.538241001021333, 54.541632391921326 ], [ 116.723345981931516, 54.565196845458047 ], [ 116.774092238366052, 54.690305487807962 ], [ 116.883646274955595, 54.73753774676959 ], [ 116.866076287590545, 54.791126207108732 ], [ 116.927467889231707, 54.825878608211156 ], [ 116.89274132655089, 54.976696275113 ], [ 116.824425082751304, 55.013954983335793 ], [ 116.782463820448925, 55.143662827877165 ], [ 116.468787875659928, 55.257867744400869 ], [ 116.393340285026056, 55.40220001871586 ], [ 116.131444126345286, 55.374398098193637 ], [ 115.94499555919765, 55.413775539909238 ], [ 115.967939895110021, 55.476355699056228 ], [ 115.886704542980283, 55.545343736424286 ], [ 115.913266229153123, 55.674948229077472 ], [ 115.844846632566032, 55.704817206249061 ], [ 115.844433222315274, 55.856849269977772 ], [ 115.89703982982428, 55.948084011268065 ], [ 115.762474399773737, 56.075957343156858 ], [ 115.777563918440023, 56.154092108963653 ], [ 115.837611932044979, 56.178948472793763 ], [ 115.687956985126675, 56.32669139269359 ], [ 115.694364862448424, 56.439190985975188 ], [ 115.800508254352394, 56.466114407353984 ], [ 115.680515578131349, 56.525335597759579 ], [ 115.68785363233917, 56.595357163901951 ], [ 115.490449659823867, 56.619903469369603 ], [ 115.434122349267, 56.689795844302751 ], [ 115.587291293658268, 56.747182522055709 ], [ 115.589048292844382, 56.901953436901579 ], [ 115.710797968251541, 56.963500068173573 ], [ 116.122039016387475, 56.812656561950746 ], [ 116.361610955880906, 56.847331447788065 ], [ 116.568730096716536, 56.756949368118796 ], [ 116.796519810340897, 56.72449656856179 ], [ 117.031337518012037, 56.775087796264756 ], [ 117.030510694812619, 56.812346502688911 ], [ 117.131073032594372, 56.804181627080425 ], [ 117.327856886586005, 56.942726141698074 ], [ 117.41136600094012, 56.82660919905527 ], [ 117.570839471664272, 56.851207180466986 ], [ 117.572286411588607, 56.929962062998754 ], [ 117.685354444751738, 57.013600369461471 ], [ 117.600915155310076, 57.149690252902815 ], [ 117.742818637769915, 57.195837307146007 ], [ 117.79449507019126, 57.292678940980295 ], [ 117.597091098575333, 57.321152655970252 ], [ 117.541073847280131, 57.261052965521912 ], [ 117.431933221840723, 57.254748440088406 ], [ 117.443612094922173, 57.329317532478115 ], [ 117.365684034690389, 57.328180650016975 ], [ 117.32640994666167, 57.453289293266266 ], [ 117.25426964702649, 57.51385407170801 ], [ 117.286619093796048, 57.61250438157191 ], [ 117.141925083375895, 57.641288154025062 ], [ 117.172724237433613, 57.736476142360061 ], [ 117.08611453675644, 57.81027008749453 ], [ 117.409298944290754, 57.905819811035428 ], [ 117.366304152314683, 57.994599921149415 ], [ 117.408058709941429, 58.126788235288814 ], [ 117.569289178952431, 58.140947577968348 ], [ 117.587272576568125, 58.180169990052946 ], [ 117.467796666083245, 58.298922431025346 ], [ 117.668611280586106, 58.395195624078781 ], [ 118.317357211565991, 58.352510891364489 ], [ 118.398385858120832, 58.264815985968937 ], [ 118.630413038730694, 58.175157375812205 ], [ 119.108109978692482, 58.222699693136292 ], [ 119.159786412013204, 58.041625475435296 ], [ 119.044237909252047, 57.740816962133067 ], [ 119.155652296915946, 57.6944115263708 ], [ 119.142319778335036, 57.533439439778306 ], [ 119.200507439966373, 57.505430812781754 ], [ 119.32122358569984, 57.610075588817324 ], [ 119.495166456566722, 57.585891018555628 ], [ 119.404629348165827, 57.431895250065736 ], [ 119.686265903648518, 57.168397121829685 ], [ 119.619293247885025, 57.095481675838641 ], [ 119.621256951746886, 57.020860908404188 ], [ 119.780317011321017, 56.980088202708373 ], [ 119.898449334669067, 56.889396063777269 ], [ 119.669522740382149, 56.76495921499577 ], [ 119.865893182324498, 56.685455024529745 ], [ 119.809255813405002, 56.597630927025648 ], [ 119.960357701146904, 56.493141181520286 ], [ 120.266075474103786, 56.457510281274438 ], [ 120.260494419082079, 56.395214342068186 ], [ 120.54058068185293, 56.274834093118898 ], [ 120.526834751222736, 56.231710109933601 ], [ 120.06164350844108, 56.138201606418988 ], [ 120.055338983007573, 56.078127753492993 ], [ 120.162722610160245, 55.984128323563255 ], [ 120.133990512751893, 55.909016628814356 ], [ 120.179775831789129, 55.874160874924428 ], [ 120.319095493662076, 55.911367906303781 ], [ 120.401777784816886, 55.864678249701456 ], [ 120.8876396021858, 56.010173244899306 ], [ 121.20699995298537, 56.015857651809142 ], [ 121.275936314409364, 55.945551865725974 ], [ 121.278210076633627, 55.862223619424469 ], [ 121.354277784891792, 55.808816026238617 ], [ 121.3016711773829, 55.731947333202811 ], [ 121.363372837386464, 55.507361558688956 ], [ 121.547754347884847, 55.503330797278466 ], [ 121.686350539345881, 55.597278551264083 ], [ 121.798385043734697, 55.613763333011377 ], [ 121.890885857796093, 55.600947578367993 ], [ 121.983593378331648, 55.476433214321332 ], [ 121.939254999218747, 55.214149482012942 ], [ 122.0240043479223, 55.180921536099959 ], [ 121.933157180259627, 55.121364448010866 ], [ 121.94669640531481, 54.994111232847104 ], [ 121.670227491905166, 54.826007799420381 ], [ 121.652037387815199, 54.741051744242554 ], [ 121.896776972079579, 54.801151434690951 ], [ 121.924372186127471, 54.575041204987599 ], [ 122.13510867722357, 54.427944241133787 ], [ 121.901841262264384, 54.369136460978837 ], [ 121.814301385600402, 54.435799059279134 ], [ 121.713222283881237, 54.415205999956925 ], [ 121.654827915775627, 54.355493883136148 ], [ 121.752599724697461, 54.276222235767534 ], [ 121.752599724697461, 54.144395656834092 ], [ 121.653794387001312, 54.128996079805233 ], [ 121.633537225362602, 54.082435615311397 ], [ 121.6431490417948, 54.012103989907189 ], [ 121.803449334818879, 53.963218085446272 ], [ 121.925922478839311, 53.822709866067441 ], [ 121.925612421376059, 53.722509264391022 ], [ 121.970777622789001, 53.696102606949751 ], [ 121.947006463677326, 53.604712836028511 ], [ 122.017906528963067, 53.520506090583581 ], [ 122.025051942000061, 53.429823366000036 ], [ 121.203485149000073, 53.276749166000045 ], [ 120.845729207000147, 53.273441875000046 ], [ 120.280182332000095, 52.865921530000023 ], [ 120.032962280000106, 52.76065663700011 ], [ 120.033789103000061, 52.625367737000047 ], [ 120.079367717000139, 52.589969381000046 ], [ 120.454021851000107, 52.639036154000067 ], [ 120.72397953300009, 52.542168681000035 ], [ 120.62615604699999, 52.34680592900007 ], [ 120.758085979000043, 52.237406922000034 ], [ 120.779169963000072, 52.117595114000082 ], [ 120.697314494000011, 52.048710429000053 ], [ 120.710905396000044, 51.988326518000051 ], [ 120.647601766000093, 51.911018575000057 ], [ 120.493140910000079, 51.875723572000069 ], [ 120.100451701000054, 51.659948629000027 ], [ 119.952863811000043, 51.39766489700007 ], [ 119.895296265000127, 51.383970642000051 ], [ 119.915656779000074, 51.330743917000078 ], [ 119.819641968000042, 51.274726665000074 ], [ 119.814991090000092, 51.21589304600009 ], [ 119.762177776000044, 51.215040385000052 ], [ 119.740835409000056, 51.071534932000063 ], [ 119.517954956000096, 50.904800924000071 ], [ 119.496664267000028, 50.737059225000067 ], [ 119.293575887000145, 50.599238179000039 ], [ 119.243656454000075, 50.445500793000051 ], [ 119.133482300000139, 50.381473694000064 ], [ 119.36395918900007, 50.319461975000124 ], [ 119.337759237000057, 50.124125061000044 ], [ 119.208516480000128, 50.015139466000036 ], [ 118.644364868000025, 49.954574687000061 ], [ 117.873765910000145, 49.513206279000045 ], [ 117.768862752000075, 49.510984192000038 ], [ 117.472860149000098, 49.614285381000016 ], [ 117.057588338000073, 49.67288645400005 ], [ 116.722311646000094, 49.801664124000027 ], [ 116.575447225000062, 49.921760153000051 ], [ 116.21763960800007, 50.013847555000083 ], [ 115.716274862000148, 49.877783509000025 ], [ 115.387819459000127, 49.891064352000015 ], [ 114.99735233600012, 50.144330547000024 ], [ 114.753749634000144, 50.236211243000085 ], [ 114.473043254000061, 50.234040833 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-AMU", "NAME_1": "Amur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.481537313000103, 53.5180781050001 ], [ 123.27731205300006, 53.569444479000069 ], [ 122.859663127000147, 53.473946432 ], [ 122.401603231000081, 53.450950419000051 ], [ 122.316750529000046, 53.496012269000104 ], [ 122.025051942000061, 53.429823366000036 ], [ 122.017906528963067, 53.520506090583581 ], [ 121.947006463677326, 53.604712836028511 ], [ 121.970777622789001, 53.696102606949751 ], [ 121.925612421376059, 53.722509264391022 ], [ 121.925922478839311, 53.822709866067441 ], [ 121.803449334818879, 53.963218085446272 ], [ 121.6431490417948, 54.012103989907189 ], [ 121.633537225362602, 54.082435615311397 ], [ 121.653794387001312, 54.128996079805233 ], [ 121.752599724697461, 54.144395656834092 ], [ 121.752599724697461, 54.276222235767534 ], [ 121.654827915775627, 54.355493883136148 ], [ 121.713222283881237, 54.415205999956925 ], [ 121.814301385600402, 54.435799059279134 ], [ 121.901841262264384, 54.369136460978837 ], [ 122.13510867722357, 54.427944241133787 ], [ 121.924372186127471, 54.575041204987599 ], [ 121.896776972079579, 54.801151434690951 ], [ 121.652037387815199, 54.741051744242554 ], [ 121.670227491905166, 54.826007799420381 ], [ 121.94669640531481, 54.994111232847104 ], [ 121.933157180259627, 55.121364448010866 ], [ 122.024314406284816, 55.1852106799289 ], [ 121.939254999218747, 55.214149482012942 ], [ 121.979459263234389, 55.48317698842726 ], [ 121.890885857796093, 55.600947578367993 ], [ 121.768929477713186, 55.615210272935713 ], [ 121.547754347884847, 55.503330797278466 ], [ 121.363372837386464, 55.507361558688956 ], [ 121.3016711773829, 55.731947333202811 ], [ 121.354277784891792, 55.808816026238617 ], [ 121.278210076633627, 55.862223619424469 ], [ 121.275936314409364, 55.945551865725974 ], [ 121.20699995298537, 56.015857651809142 ], [ 120.8876396021858, 56.010173244899306 ], [ 120.466373325568497, 55.871525377494152 ], [ 120.269279413214349, 55.917982490099803 ], [ 120.179775831789129, 55.874160874924428 ], [ 120.131613396840748, 55.915140286195196 ], [ 120.147943149856474, 56.010586656049327 ], [ 120.055338983007573, 56.078127753492993 ], [ 120.06164350844108, 56.138201606418988 ], [ 120.526834751222736, 56.231710109933601 ], [ 120.54058068185293, 56.274834093118898 ], [ 120.260494419082079, 56.395214342068186 ], [ 120.266075474103786, 56.457510281274438 ], [ 119.960357701146904, 56.493141181520286 ], [ 119.809255813405002, 56.597630927025648 ], [ 119.865893182324498, 56.685455024529745 ], [ 119.675930616804521, 56.779428616037762 ], [ 120.30276574064635, 57.004143581760843 ], [ 120.888776482848357, 57.040652981150117 ], [ 121.019104445014023, 57.031222031871266 ], [ 121.081012810592711, 56.980139879551757 ], [ 121.406884393300061, 56.975514838039317 ], [ 121.598707309894394, 56.817100735410577 ], [ 121.598707309894394, 56.743875231057018 ], [ 122.159603305847895, 56.738371690401152 ], [ 122.282799921179389, 56.6506509474832 ], [ 122.46666466684087, 56.601868394910468 ], [ 122.589241163648694, 56.489575507203881 ], [ 122.781374138605543, 56.497792060555128 ], [ 122.803078241067965, 56.576960354236917 ], [ 122.887517531408889, 56.594737047176977 ], [ 123.042650180561282, 56.493141181520286 ], [ 123.289250115900131, 56.423481350583813 ], [ 123.915361770229424, 56.377334296340678 ], [ 124.060469191799712, 56.231348374727702 ], [ 124.205576613369999, 56.165099189376065 ], [ 124.250431757319689, 56.075337226431827 ], [ 124.369080844605264, 56.053323066506266 ], [ 124.509330681565643, 55.873644110986902 ], [ 124.675522088873208, 55.904598293776189 ], [ 124.957675409192689, 55.82620514645032 ], [ 125.247683546758253, 55.879586900315189 ], [ 125.426587355921697, 55.844653632059419 ], [ 125.54626997288085, 55.735771389038348 ], [ 125.824599237364851, 55.794889228455077 ], [ 126.05859012273595, 55.713963934687797 ], [ 126.127526483260567, 55.637612006488894 ], [ 126.064998000057585, 55.636759344867869 ], [ 126.061587356271389, 55.584566148508941 ], [ 126.4225989119102, 55.553818671294607 ], [ 126.611631301443367, 55.653063259461817 ], [ 126.683461541816655, 55.655001125801277 ], [ 126.724492629031602, 55.596451728064778 ], [ 126.88572309804249, 55.615365302566659 ], [ 126.943290642948796, 55.686627102159036 ], [ 127.187616815163892, 55.690812893200416 ], [ 127.312880487144753, 55.667816881343981 ], [ 127.477521599941838, 55.552371731370272 ], [ 127.674615513195363, 55.683164781529399 ], [ 127.910570103327586, 55.624305325430385 ], [ 128.222178989668578, 55.663786119034114 ], [ 128.49606408069269, 55.516663315859319 ], [ 128.956501092551321, 55.46519358991219 ], [ 129.087139113079502, 55.528083808321071 ], [ 129.039803502229802, 55.651952216321718 ], [ 129.643384230897482, 55.744608059114626 ], [ 130.017831658803971, 55.688074042083372 ], [ 130.695826451129733, 55.724712633581134 ], [ 131.106964145578786, 55.615365302566659 ], [ 131.437486607321034, 55.64637116219933 ], [ 131.573602330083418, 55.612833157024568 ], [ 131.618147413871952, 55.653244127514427 ], [ 131.803665805932155, 55.614305935370567 ], [ 132.126023391166541, 55.644769191744786 ], [ 132.23971154195408, 55.704042059893141 ], [ 132.530649856405716, 55.679030667331403 ], [ 132.662941522433243, 55.560743313453145 ], [ 132.628938430164339, 55.500075182223839 ], [ 132.945508253902744, 55.374656481511408 ], [ 132.682165155297639, 55.367473456035157 ], [ 132.68660932785815, 55.270166734207407 ], [ 132.60640750540199, 55.202005520038711 ], [ 132.354846632665954, 55.191360174832198 ], [ 132.385129021886769, 55.06395193093681 ], [ 132.062047968039224, 55.04490916612508 ], [ 131.961072219107564, 54.990493883485897 ], [ 131.976885207286387, 54.892515367190413 ], [ 131.532467890080966, 54.722396552159125 ], [ 131.388807408435127, 54.716608792461784 ], [ 131.199464959640068, 54.612790838726198 ], [ 131.224476353101181, 54.539694526481185 ], [ 131.114095494211597, 54.323273627575816 ], [ 131.04309207613835, 54.282061673207636 ], [ 130.927646926164698, 54.326141669002823 ], [ 130.742128534104495, 54.280459702753035 ], [ 130.506897414384071, 54.11984935226576 ], [ 130.4789921410744, 53.982312527101442 ], [ 130.398583612143966, 53.909319565845237 ], [ 130.822123650985645, 53.838729559821275 ], [ 130.921135696055444, 53.767777817692092 ], [ 131.096732212421671, 53.812943020004354 ], [ 131.420846795942794, 53.751344712788239 ], [ 131.499911736837134, 53.569056098260319 ], [ 131.461567823895962, 53.499809679373186 ], [ 131.533294712381007, 53.314187934525535 ], [ 131.445858189403907, 53.219180813343826 ], [ 131.853068475229861, 53.23354686069905 ], [ 131.837358839838544, 53.161975002744157 ], [ 131.894202916131576, 53.127971910475253 ], [ 132.019879999262457, 53.138513901994941 ], [ 132.099668409669334, 53.222333076510267 ], [ 132.87502159976691, 53.231118068843784 ], [ 132.942821079629084, 53.287393704355964 ], [ 133.153350865150287, 53.29116608334806 ], [ 133.215155877941356, 53.425421454136767 ], [ 133.529348585768616, 53.49678660741597 ], [ 133.573273553731497, 53.546034247082787 ], [ 133.727062615747059, 53.467615261335197 ], [ 134.010559524102746, 53.433172919494609 ], [ 134.214578077716055, 53.471826890798354 ], [ 134.226050246121872, 53.518439033034895 ], [ 134.432032505395796, 53.520816148046777 ], [ 134.442884556177319, 53.591716214231894 ], [ 134.555229119827914, 53.620861720991627 ], [ 134.753563267430764, 53.535595608350604 ], [ 134.761418084676848, 53.47521169706215 ], [ 134.915517205954188, 53.427023423692049 ], [ 134.911486443644435, 53.373796699458069 ], [ 134.830354446100728, 53.381574002338311 ], [ 134.814231398660013, 53.340646267011607 ], [ 134.95644494038163, 53.253855699181145 ], [ 134.859396600072955, 53.184402573819682 ], [ 134.867148065430797, 53.076347153997915 ], [ 134.658892043033347, 52.939146227416416 ], [ 134.691964960214705, 52.870881660460213 ], [ 134.635741002445229, 52.864422106295137 ], [ 134.631296828086079, 52.800550035056062 ], [ 134.711602004229007, 52.760862534978003 ], [ 134.657961867046424, 52.724327298066328 ], [ 134.754493443417573, 52.710994777686835 ], [ 134.783949009439198, 52.654667467129855 ], [ 134.643492466004432, 52.559376126007407 ], [ 134.634707472771652, 52.427032783136383 ], [ 134.116392856744937, 52.484367784045958 ], [ 134.003118117107419, 52.539222317156202 ], [ 133.874960565277775, 52.519740301873412 ], [ 133.321299269845326, 52.681823432505382 ], [ 133.239960564928083, 52.627589016120169 ], [ 133.286366001589613, 52.522220771471382 ], [ 133.246161736674708, 52.45013214778038 ], [ 133.436124302194685, 52.280685126317508 ], [ 133.340109490660438, 52.203945624490927 ], [ 133.006796502756401, 52.154697983924791 ], [ 132.828926223266535, 52.177823187889771 ], [ 132.579122348817236, 52.074237779050236 ], [ 132.516903924876146, 51.952979030957465 ], [ 132.403732538026134, 51.963417669689704 ], [ 132.427296990663535, 51.863863023159979 ], [ 132.278675571620283, 51.792988797195221 ], [ 132.215733677267394, 51.816837469773361 ], [ 132.092640415622668, 51.7683133005184 ], [ 132.049335565284082, 51.802316392787247 ], [ 131.967996861266101, 51.738599352078381 ], [ 131.863920526011384, 51.754619045832271 ], [ 131.727804804148377, 51.681083482216877 ], [ 131.40958133401125, 51.681290187791888 ], [ 131.393561640257417, 51.594008694445677 ], [ 131.487302687768761, 51.471897284731881 ], [ 131.497431268138484, 51.352938137285207 ], [ 131.329482863443332, 51.375985825985083 ], [ 131.185202265072462, 51.252220770771942 ], [ 131.060455357029014, 51.243022366389084 ], [ 130.926199986240363, 51.027376613839635 ], [ 130.782332798120137, 50.993063463208216 ], [ 130.76744998592801, 50.948699246572971 ], [ 130.839796991138201, 50.875861314048393 ], [ 130.64508019379582, 50.657295844127873 ], [ 130.728382602575039, 50.597687079195339 ], [ 130.758354934332715, 50.665383206269951 ], [ 130.932607862662735, 50.665667426210746 ], [ 131.011052687731308, 50.568128160386266 ], [ 130.870182733146521, 50.475058906443337 ], [ 130.919895460806856, 50.392996731114238 ], [ 131.119883253908938, 50.431004747271231 ], [ 131.172489862317207, 50.333827215753388 ], [ 131.296926711098763, 50.365298163379521 ], [ 131.328242629094007, 50.264322415347181 ], [ 131.441517368731525, 50.186187649540386 ], [ 131.465598586205715, 50.145466619788635 ], [ 131.30726199794276, 50.060562242353569 ], [ 131.295376418386923, 49.982272446915886 ], [ 131.452266066725542, 49.962325344539011 ], [ 131.497224562563474, 49.910364692176756 ], [ 131.484512159808332, 49.741201891553999 ], [ 131.354494256904331, 49.703736476856875 ], [ 131.499911736837134, 49.611313178060698 ], [ 131.498671503387072, 49.421841538955846 ], [ 131.395732049694288, 49.243609524260137 ], [ 131.164118280234447, 49.24112905556143 ], [ 130.982734003271617, 48.972153225091233 ], [ 130.829048293144183, 48.983444526343817 ], [ 130.540899699000079, 48.853453268000081 ], [ 130.439717245, 48.896499736000081 ], [ 130.24934126800008, 48.864512024000092 ], [ 129.926466920000053, 49.025690816000079 ], [ 129.920679159000088, 49.081863099000046 ], [ 129.741775351, 49.195706278000088 ], [ 129.711182902000076, 49.274151103000108 ], [ 129.551812785000038, 49.29048085600003 ], [ 129.480602662000024, 49.421273906000081 ], [ 129.378696737000041, 49.425046286000097 ], [ 129.340972941000075, 49.341175436000114 ], [ 129.21787968000001, 49.390784811000074 ], [ 129.087861776000068, 49.352079163000084 ], [ 128.998151490000112, 49.441272685000015 ], [ 128.76012984200014, 49.470883281000042 ], [ 128.801677694000148, 49.565141093000065 ], [ 128.671866496000064, 49.611443177000055 ], [ 128.628664998000147, 49.575321350000124 ], [ 128.092470338000055, 49.541576640000059 ], [ 127.703605185000015, 49.660639141 ], [ 127.679989055000078, 49.739187318000049 ], [ 127.508113241000046, 49.822334697000045 ], [ 127.534003133000112, 49.922483622000058 ], [ 127.486667522000062, 50.025629782000081 ], [ 127.590640503000088, 50.208719381000023 ], [ 127.330656372000078, 50.32819529199999 ], [ 127.35850997, 50.415115051 ], [ 127.288953492000019, 50.466016337000028 ], [ 127.367088258000138, 50.577792460000111 ], [ 127.288953492000019, 50.675150859000055 ], [ 127.28735152199999, 50.751011862000084 ], [ 126.931765992000066, 51.063783468000068 ], [ 126.905152629000156, 51.208115743000079 ], [ 126.981168661000083, 51.308858948000037 ], [ 126.917296591000138, 51.324723613000046 ], [ 126.869909302, 51.251730652000035 ], [ 126.823710572000095, 51.265554098000067 ], [ 126.814150432000019, 51.324930319000018 ], [ 126.909441773000026, 51.39110199 ], [ 126.800301148000074, 51.41895558700007 ], [ 126.830376832000127, 51.508123271000088 ], [ 126.676897827000118, 51.576594543000098 ], [ 126.725577027000156, 51.708731182000079 ], [ 126.64790734900015, 51.741261496000035 ], [ 126.446059204000107, 51.982538757000086 ], [ 126.555974976000073, 52.130643412000026 ], [ 126.316713095000068, 52.199760641000111 ], [ 126.43928959200008, 52.275285747000041 ], [ 126.315731242000084, 52.316213481000048 ], [ 126.350716187000103, 52.376907451000037 ], [ 126.275992066000072, 52.463284608000023 ], [ 126.200337769000043, 52.467082825000048 ], [ 126.212326701000109, 52.533047791000072 ], [ 126.082773885000108, 52.59335418700006 ], [ 126.009238323000091, 52.568394471000076 ], [ 125.977302287000043, 52.610769145000077 ], [ 125.982779989000051, 52.653040467000054 ], [ 126.068614543000137, 52.679886373000059 ], [ 126.035128215000157, 52.727118632999989 ], [ 126.088044881000144, 52.775410258000122 ], [ 125.976940552000144, 52.764997458 ], [ 125.837362508000126, 52.906720073000102 ], [ 125.646469768000145, 52.884886780000059 ], [ 125.733544556000084, 52.981650900000048 ], [ 125.621355022000103, 53.062136943000027 ], [ 125.521309449000057, 53.042422384000062 ], [ 125.127431681000132, 53.206546733000053 ], [ 124.919175660000064, 53.193937683000044 ], [ 124.870134725000128, 53.107999776000085 ], [ 124.65159509300014, 53.20876882000006 ], [ 124.408199097000079, 53.235692241000081 ], [ 124.253066447000037, 53.375502828000052 ], [ 124.121808309000016, 53.35268768400006 ], [ 123.876551962000065, 53.488674215000017 ], [ 123.614294068000106, 53.563346660000022 ], [ 123.541895386000135, 53.514099020000018 ], [ 123.494766480000123, 53.560091045000021 ], [ 123.481537313000103, 53.5180781050001 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-YEV", "NAME_1": "Yevrey" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.639291627000034, 48.477248841000076 ], [ 130.607665650000058, 48.576725973000109 ], [ 130.529737590000082, 48.616258443000035 ], [ 130.676498658000071, 48.857432353000078 ], [ 130.625286399747552, 48.874359528469427 ], [ 130.673915643092414, 48.924249173460566 ], [ 130.840210403187484, 48.986105862195757 ], [ 130.982734003271617, 48.972153225091233 ], [ 131.010742629368792, 49.064912421570966 ], [ 131.18241173711192, 49.249862371950883 ], [ 131.37960900315295, 49.249603990431808 ], [ 131.462704706357044, 49.205808214577416 ], [ 131.798291457384835, 49.325413316271522 ], [ 131.986393670931079, 49.236426500582525 ], [ 131.998279249587654, 49.373627428063344 ], [ 132.072589959558968, 49.389440416242167 ], [ 132.063804966326074, 49.461942451083246 ], [ 132.119822219419802, 49.485506903720591 ], [ 132.397738071854519, 49.392954412815868 ], [ 132.391640252895286, 49.292392075933549 ], [ 132.650022414103091, 49.289601548872383 ], [ 132.76980838384975, 49.348021756298976 ], [ 132.815386998211352, 49.234721178239738 ], [ 133.173401321213987, 49.175086574885484 ], [ 133.321299269845326, 48.819190986274975 ], [ 133.770057407723129, 48.759246324558205 ], [ 133.921366001939418, 48.641604925826641 ], [ 134.105024042025889, 48.63274241822802 ], [ 134.391828241380153, 48.742968248385921 ], [ 134.561120233212137, 48.59765412034136 ], [ 134.666023390766782, 48.613363755732735 ], [ 134.745605097397288, 48.569128730306659 ], [ 134.868801710930143, 48.626489570537217 ], [ 134.986623976815054, 48.594811917336074 ], [ 134.979595981869011, 48.510424302939214 ], [ 134.905905390421367, 48.427948717359413 ], [ 134.76916955003469, 48.373740139395863 ], [ 134.505102981017671, 48.413660183470654 ], [ 133.737913860000049, 48.251086935000032 ], [ 133.524386841000023, 48.095437521000051 ], [ 133.091958456000043, 48.106780497000031 ], [ 132.805877727000109, 47.936196594000066 ], [ 132.674619589000031, 47.950614319000081 ], [ 132.536436809000122, 47.711068217 ], [ 132.332418254000061, 47.736518860000032 ], [ 131.914045858, 47.66763417599999 ], [ 131.702999309000063, 47.696159567000038 ], [ 131.593962037000097, 47.662311503000055 ], [ 131.418365520000123, 47.742616679000079 ], [ 131.084329061000062, 47.675127259000035 ], [ 130.941805461000115, 47.717967021000064 ], [ 130.906975546000069, 47.884261780000045 ], [ 130.674741659000063, 48.063940735000088 ], [ 130.674741659000063, 48.135926006000048 ], [ 130.825120077000122, 48.317775371000053 ], [ 130.743264608, 48.411593934000038 ], [ 130.758974243000068, 48.485723775000068 ], [ 130.639291627000034, 48.477248841000076 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KHA", "NAME_1": "Khabarovsk" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.489805949000072, 48.339169414000068 ], [ 134.386349731554787, 48.381337382714037 ], [ 134.580240513289027, 48.41782013609037 ], [ 134.751496209882134, 48.371518053115608 ], [ 134.905905390421367, 48.427948717359413 ], [ 134.979595981869011, 48.510424302939214 ], [ 134.98300662655447, 48.604527086555777 ], [ 134.868801710930143, 48.626489570537217 ], [ 134.745605097397288, 48.569128730306659 ], [ 134.666023390766782, 48.613363755732735 ], [ 134.561120233212137, 48.59765412034136 ], [ 134.391828241380153, 48.742968248385921 ], [ 134.278346796167625, 48.721987617234731 ], [ 134.253542108281636, 48.664833482579127 ], [ 133.934698521419591, 48.63982208911807 ], [ 133.770057407723129, 48.759246324558205 ], [ 133.321299269845326, 48.819190986274975 ], [ 133.173401321213987, 49.175086574885484 ], [ 132.815386998211352, 49.234721178239738 ], [ 132.76980838384975, 49.348021756298976 ], [ 132.650022414103091, 49.289601548872383 ], [ 132.391640252895286, 49.292392075933549 ], [ 132.397738071854519, 49.392954412815868 ], [ 132.138529087447409, 49.483904934165366 ], [ 132.063804966326074, 49.461942451083246 ], [ 132.072589959558968, 49.389440416242167 ], [ 131.998279249587654, 49.373627428063344 ], [ 131.986393670931079, 49.236426500582525 ], [ 131.798291457384835, 49.325413316271522 ], [ 131.446995070965727, 49.207746080017557 ], [ 131.395732049694288, 49.243609524260137 ], [ 131.498671503387072, 49.421841538955846 ], [ 131.499911736837134, 49.611313178060698 ], [ 131.354494256904331, 49.703736476856875 ], [ 131.484512159808332, 49.741201891553999 ], [ 131.498981560850325, 49.90522288672679 ], [ 131.452266066725542, 49.962325344539011 ], [ 131.295169711912649, 49.989765529855276 ], [ 131.30726199794276, 50.060562242353569 ], [ 131.464461704643895, 50.149807441360281 ], [ 131.328242629094007, 50.264322415347181 ], [ 131.296926711098763, 50.365298163379521 ], [ 131.172489862317207, 50.333827215753388 ], [ 131.119883253908938, 50.431004747271231 ], [ 130.919895460806856, 50.392996731114238 ], [ 130.870182733146521, 50.475058906443337 ], [ 131.011052687731308, 50.568128160386266 ], [ 130.932607862662735, 50.665667426210746 ], [ 130.758354934332715, 50.665383206269951 ], [ 130.728382602575039, 50.597687079195339 ], [ 130.64508019379582, 50.657295844127873 ], [ 130.839796991138201, 50.875861314048393 ], [ 130.76744998592801, 50.948699246572971 ], [ 130.782332798120137, 50.993063463208216 ], [ 130.926199986240363, 51.027376613839635 ], [ 131.060455357029014, 51.243022366389084 ], [ 131.185202265072462, 51.252220770771942 ], [ 131.329482863443332, 51.375985825985083 ], [ 131.497431268138484, 51.352938137285207 ], [ 131.487302687768761, 51.471897284731881 ], [ 131.393561640257417, 51.594008694445677 ], [ 131.40958133401125, 51.681290187791888 ], [ 131.727804804148377, 51.681083482216877 ], [ 131.863920526011384, 51.754619045832271 ], [ 131.967996861266101, 51.738599352078381 ], [ 132.049335565284082, 51.802316392787247 ], [ 132.092640415622668, 51.7683133005184 ], [ 132.215733677267394, 51.816837469773361 ], [ 132.285496860991316, 51.794874985791921 ], [ 132.423472934828055, 51.859935615436257 ], [ 132.403732538026134, 51.963417669689704 ], [ 132.516903924876146, 51.952979030957465 ], [ 132.589767694023863, 52.081524156414673 ], [ 132.834093866238845, 52.179295966235827 ], [ 133.180119256898138, 52.165343329131304 ], [ 133.426202427400085, 52.254976100866315 ], [ 133.430336541598081, 52.295412909777951 ], [ 133.324709913631523, 52.341844183961882 ], [ 133.325433384043436, 52.407757473428603 ], [ 133.246161736674708, 52.45013214778038 ], [ 133.286366001589613, 52.522220771471382 ], [ 133.239960564928083, 52.627589016120169 ], [ 133.305279576091493, 52.676009833487001 ], [ 133.874960565277775, 52.519740301873412 ], [ 134.003118117107419, 52.539222317156202 ], [ 134.116392856744937, 52.484367784045958 ], [ 134.634707472771652, 52.427032783136383 ], [ 134.643492466004432, 52.559376126007407 ], [ 134.783949009439198, 52.654667467129855 ], [ 134.754493443417573, 52.710994777686835 ], [ 134.657961867046424, 52.724327298066328 ], [ 134.711602004229007, 52.760862534978003 ], [ 134.631296828086079, 52.800550035056062 ], [ 134.635741002445229, 52.864422106295137 ], [ 134.691964960214705, 52.870881660460213 ], [ 134.658892043033347, 52.939146227416416 ], [ 134.867148065430797, 53.076347153997915 ], [ 134.859396600072955, 53.184402573819682 ], [ 134.95644494038163, 53.253855699181145 ], [ 134.814231398660013, 53.340646267011607 ], [ 134.830354446100728, 53.381574002338311 ], [ 134.911486443644435, 53.373796699458069 ], [ 134.915517205954188, 53.427023423692049 ], [ 134.761418084676848, 53.47521169706215 ], [ 134.753563267430764, 53.535595608350604 ], [ 134.555229119827914, 53.620861720991627 ], [ 134.442884556177319, 53.591716214231894 ], [ 134.432032505395796, 53.520816148046777 ], [ 134.226050246121872, 53.518439033034895 ], [ 134.214578077716055, 53.471826890798354 ], [ 134.010559524102746, 53.433172919494609 ], [ 133.727062615747059, 53.467615261335197 ], [ 133.573273553731497, 53.546034247082787 ], [ 133.529348585768616, 53.49678660741597 ], [ 133.215155877941356, 53.425421454136767 ], [ 133.153350865150287, 53.29116608334806 ], [ 132.942821079629084, 53.287393704355964 ], [ 132.87502159976691, 53.231118068843784 ], [ 132.099668409669334, 53.222333076510267 ], [ 132.019879999262457, 53.138513901994941 ], [ 131.894202916131576, 53.127971910475253 ], [ 131.837358839838544, 53.161975002744157 ], [ 131.853068475229861, 53.23354686069905 ], [ 131.445858189403907, 53.219180813343826 ], [ 131.533294712381007, 53.314187934525535 ], [ 131.461567823895962, 53.499809679373186 ], [ 131.499911736837134, 53.569056098260319 ], [ 131.420846795942794, 53.751344712788239 ], [ 131.096732212421671, 53.812943020004354 ], [ 130.921135696055444, 53.767777817692092 ], [ 130.822123650985645, 53.838729559821275 ], [ 130.393622674746553, 53.915314032916285 ], [ 130.4789921410744, 53.982312527101442 ], [ 130.506897414384071, 54.11984935226576 ], [ 130.742128534104495, 54.280459702753035 ], [ 131.106033969591977, 54.316245633529149 ], [ 131.224476353101181, 54.539694526481185 ], [ 131.199464959640068, 54.612790838726198 ], [ 131.388807408435127, 54.716608792461784 ], [ 131.532467890080966, 54.722396552159125 ], [ 131.976885207286387, 54.892515367190413 ], [ 131.961072219107564, 54.990493883485897 ], [ 132.062047968039224, 55.04490916612508 ], [ 132.385129021886769, 55.06395193093681 ], [ 132.354846632665954, 55.191360174832198 ], [ 132.60640750540199, 55.202005520038711 ], [ 132.68660932785815, 55.270166734207407 ], [ 132.682165155297639, 55.367473456035157 ], [ 132.945508253902744, 55.374656481511408 ], [ 132.755028925344618, 55.421010240430235 ], [ 132.625631138266385, 55.502865709285004 ], [ 132.662941522433243, 55.560743313453145 ], [ 132.538401320864182, 55.675620021746568 ], [ 132.400011834978159, 55.703215236693779 ], [ 131.803665805932155, 55.614305935370567 ], [ 131.618147413871952, 55.653244127514427 ], [ 131.573602330083418, 55.612833157024568 ], [ 131.437486607321034, 55.64637116219933 ], [ 131.096112094797263, 55.616011257713353 ], [ 130.9229960471298, 55.678565579337999 ], [ 130.86460167902419, 55.899482326747943 ], [ 130.924236280579862, 55.941805325155599 ], [ 130.963613723194726, 56.12856395156507 ], [ 131.092598098223561, 56.20587189417256 ], [ 131.125567661718151, 56.41051056630954 ], [ 131.306538528430337, 56.497275295718282 ], [ 131.40193322234029, 56.421620999509514 ], [ 131.397799107242918, 56.485544745793334 ], [ 131.497431268138484, 56.549520168920651 ], [ 131.618870884283865, 56.500737617247182 ], [ 131.603884719304347, 56.452265123036966 ], [ 131.701449822651171, 56.459086412407999 ], [ 131.649773391129088, 56.514328518246487 ], [ 131.673854607703902, 56.653725694485161 ], [ 131.79953169173416, 56.722377835068983 ], [ 131.751059198423263, 56.842913112749898 ], [ 131.439036900032875, 57.042229112283678 ], [ 131.482238396684579, 57.075999661455171 ], [ 131.275325962323222, 57.163746242794844 ], [ 131.192747023955917, 57.13072500335619 ], [ 131.101693149818971, 57.23092560503261 ], [ 131.183341913098729, 57.235473131279946 ], [ 131.26064985570622, 57.304771227010463 ], [ 131.345295851622154, 57.250717677778596 ], [ 131.505906203008863, 57.245808417224623 ], [ 131.510247023681131, 57.284462389427688 ], [ 131.598613722645155, 57.295831204146737 ], [ 131.585384555952487, 57.425590725531549 ], [ 131.735866326969358, 57.50925486951661 ], [ 131.693078240568298, 57.560517889888672 ], [ 131.970477329964751, 57.582945461863574 ], [ 131.96448286289376, 57.62795563454489 ], [ 132.047475214209726, 57.661080226771048 ], [ 131.888001744384951, 57.808616441095865 ], [ 131.759947544443548, 57.841896063852232 ], [ 131.798704869434118, 57.920392564864926 ], [ 131.604608188816769, 57.999509181703331 ], [ 131.633133579750847, 58.058937079482575 ], [ 131.463738235131359, 58.159912828414292 ], [ 131.714472283768828, 58.17257355432605 ], [ 132.047475214209726, 58.01702749312426 ], [ 132.119822219419802, 58.046483059145828 ], [ 132.008511183644146, 58.11454092142634 ], [ 132.022463820748726, 58.195362861506851 ], [ 132.1093835797883, 58.250966702551239 ], [ 132.194753046116148, 58.242543442725662 ], [ 132.209532504621393, 58.344604397275077 ], [ 132.124163039192808, 58.486843777418358 ], [ 132.416961704718801, 58.481960354386842 ], [ 132.371899856093478, 58.523895779166821 ], [ 132.566823358111492, 58.645619615252997 ], [ 132.571164178783761, 58.75594879819846 ], [ 132.521348098336034, 58.784887600282502 ], [ 132.599276157668442, 58.891030992186529 ], [ 132.807945591216026, 58.880178941405006 ], [ 132.873264602379436, 58.983325099773481 ], [ 132.815903762148878, 59.014227607518023 ], [ 132.863962844309754, 59.054121813171093 ], [ 132.836367629362599, 59.103317775994526 ], [ 132.935999791157428, 59.092801621997239 ], [ 133.103534783803184, 59.200211087571631 ], [ 133.428992955360513, 59.275632839783725 ], [ 133.570172968307816, 59.292401842371078 ], [ 133.614924757671361, 59.234059150209589 ], [ 133.76664676303767, 59.222742011434661 ], [ 134.046526321132774, 59.255995794869989 ], [ 134.522052849859051, 59.147449449532417 ], [ 134.724934523709294, 59.211347358293949 ], [ 134.7792981304043, 59.192097887007833 ], [ 134.751702916356408, 59.152617093404103 ], [ 134.854539016362423, 59.127037259162137 ], [ 135.186921828279651, 59.116236884324735 ], [ 135.421739536850055, 59.386918037137661 ], [ 135.75722293509034, 59.528795681175723 ], [ 136.005269810353411, 59.484483141383862 ], [ 136.075446405227353, 59.427380683571641 ], [ 136.312537876921397, 59.433685208105828 ], [ 136.758712193313045, 59.354646104733945 ], [ 137.465749139611034, 59.555254015460434 ], [ 137.447042270684165, 59.636050117119169 ], [ 137.615714145791117, 59.73976471626861 ], [ 137.948717076232015, 59.752528794967873 ], [ 137.999876743816571, 59.7970222028124 ], [ 138.034913364859904, 59.685762843880127 ], [ 138.252987909264561, 59.712531236527298 ], [ 138.173819614683453, 59.831232001555577 ], [ 138.273141718115767, 59.955410467918739 ], [ 138.200691360118071, 60.236685289094794 ], [ 138.315206334105028, 60.318075669956158 ], [ 138.32905561662335, 60.390629380741302 ], [ 138.24275597520807, 60.492690335290717 ], [ 138.328538852685824, 60.529535631464171 ], [ 138.315516391568167, 60.587774969938891 ], [ 138.404399856268356, 60.611391100318997 ], [ 138.437472771651073, 60.680379136787678 ], [ 138.284303827259805, 60.754844876389882 ], [ 138.182811314390619, 60.889410305541162 ], [ 138.214850701898285, 60.9625841339506 ], [ 138.345798780789096, 61.000101222793148 ], [ 138.291641879668987, 61.109965317745207 ], [ 138.395098098198673, 61.100250149424824 ], [ 138.702986280592313, 61.193086860270341 ], [ 138.643661737399157, 61.269283758838355 ], [ 138.734612257849335, 61.343077704872144 ], [ 138.920027297122033, 61.317446193786793 ], [ 139.097690871036775, 61.447567451276825 ], [ 139.548206008100692, 61.481673896333234 ], [ 139.672746209669754, 61.65153432894607 ], [ 139.95314253080312, 61.832608548445705 ], [ 139.994276971704835, 61.977664293172552 ], [ 140.127188755356769, 61.972341621468615 ], [ 140.279634231134764, 62.053370266224761 ], [ 140.253796015373723, 62.094349677495586 ], [ 140.304542270908996, 62.124838772291469 ], [ 140.29441368964001, 62.274235337690641 ], [ 140.347227003623289, 62.387458401384094 ], [ 140.627623325655918, 62.420479640822748 ], [ 140.683950637112162, 62.48838247347237 ], [ 140.648810663281438, 62.535330512493147 ], [ 140.704724562688398, 62.572718411025846 ], [ 141.048062779073916, 62.485514431146044 ], [ 141.088577102351337, 62.408542385322789 ], [ 141.295386183925189, 62.435104072395006 ], [ 141.409901157912032, 62.296507880034596 ], [ 141.51821496015225, 62.262530626187413 ], [ 141.54477664632509, 62.178582262261557 ], [ 141.740423618754903, 62.079673569979263 ], [ 141.870958287394956, 62.089078680836394 ], [ 141.861449822851, 62.027118639313699 ], [ 142.177296177076869, 62.085254625000914 ], [ 142.264215936116557, 61.973995266068641 ], [ 142.393923781557191, 61.94738190395168 ], [ 142.413250767209092, 61.871262518850131 ], [ 142.681141392061591, 61.965623683985825 ], [ 142.981174758108523, 61.90557567038087 ], [ 143.120701124657103, 62.096571763775842 ], [ 143.213201938718498, 62.115511175800066 ], [ 143.362340122598539, 62.024121405778203 ], [ 143.609353469087296, 62.02468984655917 ], [ 143.619171991094504, 61.971669827000881 ], [ 143.560777622988894, 61.939656277015558 ], [ 143.646870558829164, 61.869944770135021 ], [ 143.753634068357542, 61.906970934361084 ], [ 143.762212356015311, 61.951877753355632 ], [ 143.927163528074288, 61.989136461578425 ], [ 143.934398227695965, 61.756850898550113 ], [ 144.222442662298931, 61.733183092225886 ], [ 144.5464538921334, 61.859738675399512 ], [ 144.585521274587109, 61.977509264440982 ], [ 144.714505649615944, 62.04375844979262 ], [ 144.945189243988352, 62.063343817862858 ], [ 145.15582238229706, 61.967587388746949 ], [ 145.468361443725598, 61.955701809191112 ], [ 145.7328414247919, 62.059959010699743 ], [ 146.212088658364792, 61.9065575223118 ], [ 146.579714796900248, 61.640759793429709 ], [ 146.61475141794358, 61.434079902165706 ], [ 146.767610304871596, 61.403280748107989 ], [ 146.683274367318177, 61.312588609176942 ], [ 146.749936964719041, 61.216418768911012 ], [ 146.741151972385524, 61.097356269576153 ], [ 146.665601028064884, 61.066092027525031 ], [ 146.731540155054063, 61.007180895481895 ], [ 146.701154413045629, 60.958863430003248 ], [ 146.486077102176523, 60.932921861454702 ], [ 146.475741815332412, 60.727559718905866 ], [ 146.404014926847367, 60.666116441320696 ], [ 146.059849888161807, 60.737274889024889 ], [ 145.874848260938393, 60.614388332955173 ], [ 145.620186801879299, 60.557337551986393 ], [ 145.510012648564839, 60.463699856363235 ], [ 145.530269810203549, 60.414917303790503 ], [ 145.636723261369411, 60.382464505132759 ], [ 145.568303663882944, 60.344947415390891 ], [ 145.594038527755743, 60.306965236756241 ], [ 145.792992792083623, 60.198160509000274 ], [ 146.374249301563964, 60.271205146200487 ], [ 146.4601355327286, 60.187230942953647 ], [ 146.453934360981862, 60.131782132439412 ], [ 146.676039666797124, 60.102042345577729 ], [ 146.645137159951901, 59.989568589818532 ], [ 146.776085239741974, 59.906421209770997 ], [ 146.99788048719472, 59.947969061822732 ], [ 147.111258579619744, 59.884923815581601 ], [ 147.148052198949813, 59.752477119023808 ], [ 147.087074009357934, 59.691085517382703 ], [ 147.158800896943831, 59.641217760091536 ], [ 147.092861769954652, 59.41756216156449 ], [ 146.860524936000047, 59.361314195000034 ], [ 146.439641574, 59.460408655000037 ], [ 146.319140979000053, 59.401693611000042 ], [ 146.319021030000044, 59.237860419000071 ], [ 146.363107906000096, 59.212811464000083 ], [ 146.050291999000024, 59.138872719000062 ], [ 145.824961785000028, 59.241278387000079 ], [ 145.957005529000071, 59.416722807000042 ], [ 145.818125847000033, 59.415961005000042 ], [ 145.80889757, 59.366828259000044 ], [ 145.674652540000011, 59.436428127000056 ], [ 145.000758577000056, 59.369582966000053 ], [ 143.903911341000025, 59.422709542000064 ], [ 143.493616866000025, 59.318518018000077 ], [ 143.164805535000028, 59.381008205000057 ], [ 142.262380405000044, 59.124579169000071 ], [ 142.01531009200005, 58.997259833000044 ], [ 141.583733889000086, 58.617748978000066 ], [ 140.987315300000091, 58.418524481000077 ], [ 140.740000847000033, 58.271307684000078 ], [ 140.495727974000033, 57.844773602000032 ], [ 140.302445932000069, 57.747788421000052 ], [ 140.03484134200005, 57.713080145000049 ], [ 139.789677801000039, 57.482731369000078 ], [ 139.620571540000014, 57.467344273000037 ], [ 139.418458932000021, 57.297193759000038 ], [ 139.19654381600003, 57.272650458000044 ], [ 139.025624070000049, 57.140003190000073 ], [ 138.932957226000099, 57.135024933000068 ], [ 138.885110403, 57.019112791000055 ], [ 138.623057488000086, 56.95929596600007 ], [ 138.581736352, 56.784509175000039 ], [ 138.543363155000065, 56.793858920000048 ], [ 138.549834936000025, 56.859517536000055 ], [ 138.454448482000089, 56.839336696000032 ], [ 138.26051050500007, 56.615820669000072 ], [ 138.129649285000028, 56.585638739000046 ], [ 138.125125783000044, 56.506933447000051 ], [ 138.257773217000022, 56.466050049000046 ], [ 138.223477099000092, 56.424160253000082 ], [ 138.069428154000093, 56.437754732000087 ], [ 138.053682592000087, 56.387850831000037 ], [ 137.914067012000032, 56.35952565000008 ], [ 137.723597340000083, 56.136323947000051 ], [ 137.443660893000015, 56.048511524000048 ], [ 137.390830770000093, 55.945607438000081 ], [ 137.295634026000016, 55.961322457000051 ], [ 136.773285352000016, 55.660549221000053 ], [ 136.430160600000022, 55.56524642800008 ], [ 136.161626584000032, 55.318283990000054 ], [ 135.868942505000064, 55.173885616000064 ], [ 135.46906384600004, 55.056664459000046 ], [ 135.183724246, 54.85915536300007 ], [ 135.244151238000086, 54.701239325000074 ], [ 135.654144727000016, 54.665961005000042 ], [ 135.750173373000052, 54.57094961100006 ], [ 136.20671634200005, 54.620672919000071 ], [ 136.534922722000033, 54.595526434000078 ], [ 136.662445509, 54.685248114000046 ], [ 136.681407097000033, 54.61469147300005 ], [ 136.82349694100003, 54.647528387000079 ], [ 136.883311394000089, 54.591376044000071 ], [ 136.807465040000011, 54.51626211100006 ], [ 136.840830925000091, 54.432318427000041 ], [ 136.738617384, 54.413804429000038 ], [ 136.820648634, 54.316107489000046 ], [ 136.752289259, 54.28351471600007 ], [ 136.814463738000086, 54.248724677000041 ], [ 136.762868686000047, 54.204046942000048 ], [ 136.814463738000086, 54.159328518000052 ], [ 136.659190300000091, 53.935044664000031 ], [ 136.684743686000047, 53.808498440000051 ], [ 136.764333530000044, 53.775295315000051 ], [ 136.957774285000028, 53.857652085000041 ], [ 137.107920769000089, 53.807928778000075 ], [ 137.185720248000052, 53.851060289000031 ], [ 137.290863477000016, 54.035711981000077 ], [ 137.156993035000028, 54.044012762000079 ], [ 137.061371290000011, 54.145697333000044 ], [ 137.394786004000025, 54.308294989000046 ], [ 137.735850457000083, 54.320990302000041 ], [ 137.483897332000083, 54.084662177000041 ], [ 137.436859571000014, 54.145697333000044 ], [ 137.30787194100003, 54.118353583000044 ], [ 137.320078972000033, 54.04946523600006 ], [ 137.590505405000044, 53.956122137000079 ], [ 137.862803582000083, 53.967596747000073 ], [ 137.609141472000033, 53.834418036000045 ], [ 137.48796634200005, 53.67055898600006 ], [ 137.34538821700005, 53.664740302000041 ], [ 137.217621290000011, 53.600572007000039 ], [ 137.335134311000047, 53.529364325000074 ], [ 137.918223504000025, 53.586615302000041 ], [ 138.15007571700005, 53.672756252000056 ], [ 138.284190300000091, 53.738511460000041 ], [ 138.366384311000047, 53.909491278000075 ], [ 138.578623894000089, 53.999335028000075 ], [ 138.579925977000016, 53.828314520000049 ], [ 138.246104363000086, 53.566351630000042 ], [ 138.215586785000028, 53.491766669000071 ], [ 138.439219597000033, 53.513657945000034 ], [ 138.655772332000083, 53.731756903000075 ], [ 138.771820509, 54.015570380000042 ], [ 138.767100457000083, 54.104681708000044 ], [ 138.664724155000044, 54.077460028000075 ], [ 138.746592644000089, 54.24249909100007 ], [ 138.643565300000091, 54.29718659100007 ], [ 138.738536004000025, 54.315985419000071 ], [ 139.302256707000083, 54.190619208000044 ], [ 139.767588738000086, 54.303941148000035 ], [ 139.815928582000083, 54.21515534100007 ], [ 140.240570509, 54.05695221600007 ], [ 140.235687696000014, 54.001288153000075 ], [ 140.330821160000028, 53.970282294000071 ], [ 140.257334832000083, 53.868557033000059 ], [ 140.521739129000025, 53.727036851000037 ], [ 140.581228061000047, 53.63930898600006 ], [ 141.097829623000052, 53.474758205000057 ], [ 140.949717644000089, 53.488959052000041 ], [ 140.93091881600003, 53.436346747000073 ], [ 140.99537194100003, 53.448431708000044 ], [ 141.229258660000028, 53.315985419000071 ], [ 141.40748131600003, 53.303778387000079 ], [ 141.357758009, 53.220892645000049 ], [ 141.424001498000052, 53.217840887000079 ], [ 141.432953321000014, 53.148871161000045 ], [ 141.364431186000047, 53.073391018000052 ], [ 141.186371290000011, 53.050197658000059 ], [ 141.261566602000016, 53.035874742000033 ], [ 141.188812696000014, 52.987494208000044 ], [ 140.860687696000014, 53.118475653000075 ], [ 140.70671634200005, 53.111029364000046 ], [ 140.933441602000016, 53.03156159100007 ], [ 140.96607506600003, 52.944647528000075 ], [ 141.082530144000089, 52.883978583000044 ], [ 141.260590040000011, 52.852240302000041 ], [ 141.201019727000016, 52.777411200000074 ], [ 141.316254102000016, 52.659125067000048 ], [ 141.12818444100003, 52.422919012000079 ], [ 141.402110222000033, 52.225531317000048 ], [ 141.540049675000091, 52.220770575000074 ], [ 141.555837436000047, 52.162298895000049 ], [ 141.354991082000083, 52.105902411000045 ], [ 141.302582227000016, 52.021673895000049 ], [ 141.425547722000033, 51.925482489000046 ], [ 141.200205925000091, 51.82367584800005 ], [ 141.109222852000016, 51.678778387000079 ], [ 140.91529381600003, 51.623846747000073 ], [ 140.901377800000091, 51.494086005000042 ], [ 140.80005944100003, 51.454169012000079 ], [ 140.818858269000089, 51.416734117000033 ], [ 140.896006707000083, 51.428778387000079 ], [ 140.873789910000028, 51.371771552000041 ], [ 140.686289910000028, 51.31281159100007 ], [ 140.713552280000044, 51.261379299000055 ], [ 140.658946160000028, 51.223822333000044 ], [ 140.70671634200005, 51.031683661000045 ], [ 140.673594597000033, 50.948309637000079 ], [ 140.529795769000089, 50.862372137000079 ], [ 140.54224694100003, 50.805121161000045 ], [ 140.463389519000089, 50.698960679000038 ], [ 140.51490319100003, 50.617092190000051 ], [ 140.442149285000028, 50.530096747000073 ], [ 140.545420769000089, 50.34406159100007 ], [ 140.522959832000083, 50.151068427000041 ], [ 140.600596550000091, 50.075181382000039 ], [ 140.690928582000083, 50.080267645000049 ], [ 140.482269727000016, 49.975287177000041 ], [ 140.415212436000047, 49.874579169000071 ], [ 140.535004102000016, 49.777411200000074 ], [ 140.50749759200005, 49.691636460000041 ], [ 140.560801629000025, 49.575384833000044 ], [ 140.454274936000047, 49.420843817000048 ], [ 140.435557488000086, 49.29437897300005 ], [ 140.335948113000086, 49.287543036000045 ], [ 140.390228712000066, 49.275051174000055 ], [ 140.345713738000086, 49.229193427000041 ], [ 140.356455925000091, 49.095770575000074 ], [ 140.294932488000086, 49.088324286000045 ], [ 140.343597852000016, 49.047064520000049 ], [ 140.219248894000089, 49.013861395000049 ], [ 140.281260613000086, 48.965399481000077 ], [ 140.359141472000033, 49.021307684000078 ], [ 140.397959832000083, 48.992743231000077 ], [ 140.212982618000069, 48.767401434000078 ], [ 140.17701256600003, 48.461818752000056 ], [ 139.261729363000086, 47.787909247000073 ], [ 139.026376218287737, 47.389429364873251 ], [ 138.856155226782221, 47.466301987946338 ], [ 138.730581496438845, 47.437053128399157 ], [ 138.551574335387158, 47.476611437267991 ], [ 138.622474399773637, 47.510020250334264 ], [ 138.59229536423959, 47.542912299463012 ], [ 138.642731561412347, 47.605673325763348 ], [ 138.512610304821692, 47.663447577143927 ], [ 138.816261021129208, 47.769771837100564 ], [ 138.82556277919889, 47.860903224704032 ], [ 138.579479607797566, 48.021875312195903 ], [ 138.626505162083504, 48.121094061941392 ], [ 138.722416619930982, 48.136131903764294 ], [ 138.707843866101484, 48.188790188116684 ], [ 138.542996046830012, 48.189203600165968 ], [ 138.537414991808419, 48.262868354091268 ], [ 138.481087681251438, 48.291522936234514 ], [ 138.485118442661928, 48.406632189423988 ], [ 138.305594516773454, 48.444588527838278 ], [ 138.180640904054371, 48.384023749396476 ], [ 138.165137974238064, 48.322942206117887 ], [ 137.994915806419272, 48.297052314412781 ], [ 137.885568475404739, 48.220674546892781 ], [ 137.435880162439503, 48.198712062911341 ], [ 137.315474074169174, 48.090294907883674 ], [ 137.416863235150117, 47.977950344232966 ], [ 137.605172154271486, 47.898265285714331 ], [ 137.440324335000014, 47.782044990284021 ], [ 138.0502095891012, 47.675901598380051 ], [ 137.972281528869416, 47.597663478886432 ], [ 138.06643598932942, 47.582780666694362 ], [ 138.086796502856259, 47.516608994809246 ], [ 137.452416620130862, 47.198359687149832 ], [ 137.361982863618209, 47.198669745512348 ], [ 137.262247349035874, 47.281145331092148 ], [ 137.203439568880981, 47.248485825960074 ], [ 137.065463495044241, 47.294865424199941 ], [ 136.949811640394842, 47.155907498432271 ], [ 136.932448357705539, 47.061778876393987 ], [ 136.978337030429543, 47.015683498994235 ], [ 136.607196892622483, 46.787325343689645 ], [ 136.451134068382544, 46.81016632681451 ], [ 136.263651971561217, 46.765001126300888 ], [ 136.068625115856321, 46.851042385297831 ], [ 135.941501092801104, 46.78975413734355 ], [ 135.715881788613615, 46.903442288131089 ], [ 135.745854120371291, 46.94855581270059 ], [ 135.367272577367544, 46.916413072405362 ], [ 135.423289829561895, 47.040591538768467 ], [ 135.304744094164562, 47.097745673424072 ], [ 135.309084913937568, 47.144357814761293 ], [ 135.089976840758595, 47.19443227852679 ], [ 134.998716261945901, 47.116710923870016 ], [ 134.851128370777587, 47.154072983980996 ], [ 134.674394972849655, 47.105600491569419 ], [ 134.537245722212219, 46.956772366051837 ], [ 134.444538201676664, 46.947367255194649 ], [ 134.410741814982771, 46.860085760949062 ], [ 134.468206008000834, 46.776111559500862 ], [ 134.41932010264054, 46.680148423910623 ], [ 134.014900343875752, 46.626456610783919 ], [ 134.069159790000072, 46.981241964 ], [ 134.124246867000011, 47.070513001000066 ], [ 134.227289673000087, 47.117745260000092 ], [ 134.154115845000149, 47.257891744000077 ], [ 134.183571411000059, 47.327499899000074 ], [ 134.31286584500009, 47.420129904000063 ], [ 134.556881959000066, 47.471186219000018 ], [ 134.772579387000064, 47.710732321000094 ], [ 134.559362427000053, 48.009525452000091 ], [ 134.682972453000048, 48.135512594000019 ], [ 134.718732544000147, 48.263411764000082 ], [ 134.61134891800009, 48.285425924000052 ], [ 134.542619263, 48.357307841000093 ], [ 134.489805949000072, 48.339169414000068 ] ] ], [ [ [ 137.821787957000083, 54.457831122000073 ], [ 137.917979363000086, 54.509426174000055 ], [ 137.921722852000016, 54.464097398000035 ], [ 137.819672071000014, 54.384955145000049 ], [ 137.715098504000025, 54.367173570000034 ], [ 137.821787957000083, 54.457831122000073 ] ] ], [ [ [ 137.622569207000083, 54.570786851000037 ], [ 137.641123894000089, 54.400458075000074 ], [ 137.568125847000033, 54.396633205000057 ], [ 137.546722852000016, 54.51626211100006 ], [ 137.622569207000083, 54.570786851000037 ] ] ], [ [ [ 137.171234571000014, 55.119533596000053 ], [ 137.065114780000044, 55.000230210000041 ], [ 137.074961785000028, 54.933172919000071 ], [ 136.895843946000014, 54.960150458000044 ], [ 136.748871290000011, 54.93109772300005 ], [ 136.738129102000016, 54.88507721600007 ], [ 136.670420769000089, 54.907294012000079 ], [ 136.809255405000044, 55.018052476000037 ], [ 137.171234571000014, 55.119533596000053 ] ] ], [ [ [ 138.046722852000016, 55.05805084800005 ], [ 138.21216881600003, 55.036363023000035 ], [ 138.010915561000047, 54.933254299000055 ], [ 137.986175977000016, 54.797430731000077 ], [ 137.718923373000052, 54.624335028000075 ], [ 137.485362175000091, 54.879339911000045 ], [ 137.225922071000014, 54.777818101000037 ], [ 137.274912957000083, 54.898260809000078 ], [ 137.461436394000089, 55.02680084800005 ], [ 137.567881707000083, 55.194647528000075 ], [ 137.952159050000091, 55.146877346000053 ], [ 137.986175977000016, 55.09906647300005 ], [ 137.883148634, 55.002875067000048 ], [ 138.046722852000016, 55.05805084800005 ] ] ], [ [ [ 139.225456078000093, 54.589357775000053 ], [ 139.261461626000028, 54.599233545000061 ], [ 139.276750074, 54.613109683000062 ], [ 139.243593280000027, 54.581031644000063 ], [ 139.225456078000093, 54.589357775000053 ] ] ], [ [ [ 138.190013372000067, 54.715578920000041 ], [ 138.226782555, 54.715626317000044 ], [ 138.240995078000083, 54.713711659000069 ], [ 138.19594380500007, 54.701110441000083 ], [ 138.190013372000067, 54.715578920000041 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-PRI", "NAME_1": "Primor'ye" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.874442994000162, 46.319783631000078 ], [ 133.933870891000083, 46.390761211000054 ], [ 133.847777955000083, 46.456984558000059 ], [ 133.902451620000079, 46.573644104000053 ], [ 133.998497620768489, 46.637704224770118 ], [ 134.41932010264054, 46.680148423910623 ], [ 134.468206008000834, 46.776111559500862 ], [ 134.410741814982771, 46.860085760949062 ], [ 134.444538201676664, 46.947367255194649 ], [ 134.537245722212219, 46.956772366051837 ], [ 134.704987421332362, 47.116814277556841 ], [ 134.851128370777587, 47.154072983980996 ], [ 134.998716261945901, 47.116710923870016 ], [ 135.108580356897846, 47.191693427409746 ], [ 135.309084913937568, 47.144357814761293 ], [ 135.304744094164562, 47.097745673424072 ], [ 135.423289829561895, 47.040591538768467 ], [ 135.367272577367544, 46.916413072405362 ], [ 135.745854120371291, 46.94855581270059 ], [ 135.715881788613615, 46.903442288131089 ], [ 135.941501092801104, 46.78975413734355 ], [ 136.068625115856321, 46.851042385297831 ], [ 136.263651971561217, 46.765001126300888 ], [ 136.451134068382544, 46.81016632681451 ], [ 136.577224562663332, 46.777455145738372 ], [ 136.978337030429543, 47.015683498994235 ], [ 136.932448357705539, 47.061778876393987 ], [ 136.949811640394842, 47.155907498432271 ], [ 137.065463495044241, 47.294865424199941 ], [ 137.203439568880981, 47.248485825960074 ], [ 137.262247349035874, 47.281145331092148 ], [ 137.361982863618209, 47.198669745512348 ], [ 137.452416620130862, 47.198359687149832 ], [ 137.603105096722743, 47.303417874335423 ], [ 137.822213169901829, 47.357161363406192 ], [ 138.086796502856259, 47.516608994809246 ], [ 138.06643598932942, 47.582780666694362 ], [ 137.972281528869416, 47.597663478886432 ], [ 138.0502095891012, 47.675901598380051 ], [ 137.440324335000014, 47.782044990284021 ], [ 137.605172154271486, 47.898265285714331 ], [ 137.416863235150117, 47.977950344232966 ], [ 137.315474074169174, 48.090294907883674 ], [ 137.435880162439503, 48.198712062911341 ], [ 137.885568475404739, 48.220674546892781 ], [ 137.994915806419272, 48.297052314412781 ], [ 138.165137974238064, 48.322942206117887 ], [ 138.180640904054371, 48.384023749396476 ], [ 138.305594516773454, 48.444588527838278 ], [ 138.485118442661928, 48.406632189423988 ], [ 138.481087681251438, 48.291522936234514 ], [ 138.537414991808419, 48.262868354091268 ], [ 138.542996046830012, 48.189203600165968 ], [ 138.707843866101484, 48.188790188116684 ], [ 138.722416619930982, 48.136131903764294 ], [ 138.626505162083504, 48.121094061941392 ], [ 138.579479607797566, 48.021875312195903 ], [ 138.82556277919889, 47.860903224704032 ], [ 138.816261021129208, 47.769771837100564 ], [ 138.512610304821692, 47.663447577143927 ], [ 138.642731561412347, 47.605673325763348 ], [ 138.59229536423959, 47.542912299463012 ], [ 138.622474399773637, 47.510020250334264 ], [ 138.551574335387158, 47.476611437267991 ], [ 138.730581496438845, 47.437053128399157 ], [ 138.856155226782221, 47.466301987946338 ], [ 139.026376218287737, 47.389429364873251 ], [ 138.562754754000025, 47.02993398600006 ], [ 138.349131707000083, 46.664252020000049 ], [ 138.344574415000011, 46.548732815000051 ], [ 138.20240319100003, 46.454331773000035 ], [ 138.034027540000011, 46.155951239000046 ], [ 137.671478712000066, 45.794623114000046 ], [ 137.396739129000025, 45.623928127000056 ], [ 137.144541863000086, 45.374660549000055 ], [ 136.810801629000025, 45.193182684000078 ], [ 136.780039910000028, 45.107855536000045 ], [ 136.558197462000066, 44.948309637000079 ], [ 136.443614129000025, 44.785101630000042 ], [ 136.354584181000064, 44.788804429000038 ], [ 136.16529381600003, 44.496527411000045 ], [ 135.837901238000086, 44.362697658000059 ], [ 135.819427931000064, 44.290594794000071 ], [ 135.655853712000066, 44.168687242000033 ], [ 135.624034050000091, 44.038478908000059 ], [ 135.541270379000025, 44.003973700000074 ], [ 135.511973504000025, 43.921698309000078 ], [ 135.463633660000028, 43.949652411000045 ], [ 135.463633660000028, 43.894435940000051 ], [ 135.51880944100003, 43.880764065000051 ], [ 135.425791863000086, 43.763169664000088 ], [ 135.275401238000086, 43.688950914000088 ], [ 135.23560631600003, 43.734076239000046 ], [ 135.182220899000072, 43.710638739000046 ], [ 135.22388756600003, 43.644598700000074 ], [ 135.128428582000083, 43.500555731000077 ], [ 134.193695509, 43.079779364000046 ], [ 133.926768425000091, 42.882717190000051 ], [ 133.839610222000033, 42.897609768000052 ], [ 133.717295769000089, 42.816636460000041 ], [ 133.593353712000066, 42.852850653000075 ], [ 133.157725457000083, 42.688421942000048 ], [ 133.024424675000091, 42.699367580000057 ], [ 132.996348504000025, 42.722560940000051 ], [ 133.078868035000028, 42.749823309000078 ], [ 132.989756707000083, 42.826971747000073 ], [ 132.815928582000083, 42.756415106000077 ], [ 132.757334832000083, 42.832424221000053 ], [ 132.763438347000033, 42.908148505000042 ], [ 132.577891472000033, 42.840399481000077 ], [ 132.502696160000028, 42.924302476000037 ], [ 132.404388868000069, 42.942287502000056 ], [ 132.311534050000091, 42.845445054000038 ], [ 132.291107618000069, 43.085638739000046 ], [ 132.381683790000011, 43.191229559000078 ], [ 132.307709181000064, 43.238185940000051 ], [ 132.345795118000069, 43.297919012000079 ], [ 132.289561394000089, 43.312567450000074 ], [ 132.226654493000069, 43.229803778000075 ], [ 131.929942254000025, 43.069566148000035 ], [ 131.886485222000033, 43.085638739000046 ], [ 131.920664910000028, 43.120428778000075 ], [ 131.849864129000025, 43.100490627000056 ], [ 132.05201256600003, 43.31476471600007 ], [ 131.968353712000066, 43.270575262000079 ], [ 131.81568444100003, 43.336737372000073 ], [ 131.722666863000086, 43.209784247000073 ], [ 131.763926629000025, 43.18585846600007 ], [ 131.646983269000089, 43.168850002000056 ], [ 131.694672071000014, 43.174994208000044 ], [ 131.564952019000089, 42.996283270000049 ], [ 131.499522332000083, 42.999986070000034 ], [ 131.496104363000086, 42.942287502000056 ], [ 131.393890821000014, 42.945013739000046 ], [ 131.400401238000086, 42.87335846600007 ], [ 131.471690300000091, 42.873236395000049 ], [ 131.352017262, 42.774327567000057 ], [ 131.273127171000056, 42.777331349000065 ], [ 131.20118160800007, 42.614024597000082 ], [ 131.219547211000076, 42.554711688000054 ], [ 131.120346581000035, 42.667190491000042 ], [ 130.889659050000091, 42.599595445000034 ], [ 130.815478427000016, 42.634171579000053 ], [ 130.932139519000089, 42.618353583000044 ], [ 130.949713986, 42.65312261400004 ], [ 130.786981479000019, 42.653763563000041 ], [ 130.825456917, 42.69932245800004 ], [ 130.656670389000055, 42.664079512000058 ], [ 130.729502800000091, 42.579169012000079 ], [ 130.774180535000028, 42.596828518000052 ], [ 130.872894727000016, 42.52765534100007 ], [ 130.786631707000083, 42.461859442000048 ], [ 130.703603160000057, 42.295241320000059 ], [ 130.672881308000058, 42.311139425000093 ], [ 130.530771119000065, 42.530480042000093 ], [ 130.584514608000063, 42.568901469000039 ], [ 130.571905559000015, 42.621818136000016 ], [ 130.379669231000094, 42.69667144800006 ], [ 130.5864783130001, 42.817258403000025 ], [ 130.794320923000157, 42.869064026 ], [ 130.992448365000087, 42.848729350000056 ], [ 131.103035929000043, 42.910431010000039 ], [ 131.078334595, 43.031818950000016 ], [ 131.183961223000097, 43.120805766 ], [ 131.16907841, 43.201705221000068 ], [ 131.280906210000069, 43.380221456000086 ], [ 131.274291626000092, 43.451199036000062 ], [ 131.160706828, 43.532770284000023 ], [ 131.206698853000091, 43.974784648000124 ], [ 131.264473104000103, 44.054211325000026 ], [ 131.065828899000053, 44.682028301000074 ], [ 130.933433879000063, 44.841708476000079 ], [ 131.051566203000164, 44.909042867000082 ], [ 131.433765097000105, 44.96128774000006 ], [ 131.609051555000121, 45.089703674000063 ], [ 131.627758424000035, 45.19848256500002 ], [ 131.723153118000027, 45.215329082 ], [ 131.853067668000051, 45.337595520000022 ], [ 131.968822876000161, 45.233984274000065 ], [ 132.966178020000086, 45.028880514000022 ], [ 133.121517375000053, 45.131251526000042 ], [ 133.101880331000132, 45.287210999000123 ], [ 133.179808391000108, 45.493813375000045 ], [ 133.477257935000011, 45.627707011000027 ], [ 133.487799927000083, 45.686669820000063 ], [ 133.443048137000062, 45.709665833000102 ], [ 133.511364381000021, 45.778550517000028 ], [ 133.477257935000011, 45.820098369 ], [ 133.514361613, 45.879267884000072 ], [ 133.658125448000078, 45.93450999 ], [ 133.720033814000089, 46.063752747000095 ], [ 133.687374309, 46.141835836000027 ], [ 133.902451620000079, 46.258986308000047 ], [ 133.91599084500001, 46.312988180000033 ], [ 133.874442994000162, 46.319783631000078 ] ] ], [ [ [ 131.920095248000052, 43.019517320000034 ], [ 131.883311394000089, 42.960760809000078 ], [ 131.757009311000047, 42.990057684000078 ], [ 131.777517123000052, 43.044623114000046 ], [ 131.859385613000086, 43.037258205000057 ], [ 131.826508009, 43.065171617000033 ], [ 131.920095248000052, 43.019517320000034 ] ] ], [ [ [ 132.449880405000044, 42.828111070000034 ], [ 132.475596550000091, 42.80023834800005 ], [ 132.401540561000047, 42.831976630000042 ], [ 132.427500847000033, 42.895900783000059 ], [ 132.449880405000044, 42.828111070000034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-TYU", "NAME_1": "Tyumen'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.186143432000108, 55.32577138300006 ], [ 69.12258142100012, 55.397860006000045 ], [ 68.927296183000067, 55.433723450000102 ], [ 68.91783939600009, 55.370936585000052 ], [ 68.983261759000072, 55.308563131000099 ], [ 68.945641317000138, 55.270374247000021 ], [ 68.606076287990277, 55.423387356341379 ], [ 68.466343214967367, 55.406721707440795 ], [ 68.435854120171484, 55.466847236310855 ], [ 68.335498487964799, 55.491703600141022 ], [ 68.310797153765577, 55.560794990296529 ], [ 68.174888136578204, 55.586168118064165 ], [ 68.176438430189364, 55.709623114914791 ], [ 67.940690545632151, 55.663527737515039 ], [ 67.824625278933468, 55.720681871271324 ], [ 67.446663852654638, 55.735047919525812 ], [ 67.298662551235736, 55.896743476530162 ], [ 67.297422315987035, 55.959013577314693 ], [ 66.821068963162077, 55.960615545970654 ], [ 66.737663201595467, 56.04898224583394 ], [ 66.434839309386575, 55.953174139874648 ], [ 66.298103468999841, 56.058077298328612 ], [ 66.185552198874859, 56.068025011545046 ], [ 66.014916619906046, 55.991207994453362 ], [ 65.794051548440166, 56.112905992117817 ], [ 65.66713423006064, 56.273516344403731 ], [ 65.156674432179273, 56.293334256470757 ], [ 65.114713168977516, 56.32917186139224 ], [ 65.208144159025665, 56.368084215114436 ], [ 64.967228630596821, 56.500840969135368 ], [ 65.02365929573989, 56.639695543014852 ], [ 64.980871210238149, 56.746614081274799 ], [ 65.174347772331771, 56.779325263250257 ], [ 65.237289666684717, 56.923554186576439 ], [ 65.067997673953471, 56.907844550285745 ], [ 64.990793085032806, 57.053675442267831 ], [ 64.989966261833501, 57.237333482354302 ], [ 64.829252556760082, 57.304719550167079 ], [ 64.884029574605165, 57.350091458054294 ], [ 64.842585077139574, 57.451067206086691 ], [ 65.002265253438679, 57.592970690345055 ], [ 64.839277785241563, 57.640719713244152 ], [ 65.427872348929725, 57.83393789291938 ], [ 65.472727491980152, 57.77670624479731 ], [ 65.539596795855402, 57.779522610280196 ], [ 65.655041944929792, 57.836108303255571 ], [ 65.662793410287634, 57.887009589321053 ], [ 66.196610956130712, 58.032504584518904 ], [ 65.990215284807505, 58.319618842235741 ], [ 65.934508090975612, 58.614355374101194 ], [ 66.380165643429677, 58.589085598221743 ], [ 66.740660435130962, 58.669597479939739 ], [ 66.783035108583363, 58.700448309941521 ], [ 66.779004348072192, 58.932010403457298 ], [ 66.965969680056673, 58.97505687137749 ], [ 67.070872836711999, 58.924879054824487 ], [ 67.564486117640172, 59.092930813206408 ], [ 67.74214969335361, 59.211941637496523 ], [ 68.35813276641403, 59.282919217148105 ], [ 68.571349725309517, 59.574245104328099 ], [ 68.843994581984362, 59.621322332759405 ], [ 69.295233188560758, 59.782888699453906 ], [ 69.071370883559382, 59.897403673440749 ], [ 69.3060852402416, 59.988896796250117 ], [ 69.535011835427838, 59.98450430053299 ], [ 69.615627069033962, 59.904870917059156 ], [ 70.154922316211866, 59.900013333348625 ], [ 70.398525018015164, 59.817486070026064 ], [ 70.797570428232632, 59.863013007544225 ], [ 70.985569288991485, 59.818648790009604 ], [ 71.187520785955485, 59.908850003424902 ], [ 71.296454705819997, 59.799089260361029 ], [ 72.015997349298175, 59.559310615292645 ], [ 72.437160272228766, 59.303357245940106 ], [ 72.444291619962257, 59.225816759335942 ], [ 72.523769972905882, 59.155045885259369 ], [ 72.647276645700629, 59.106315009530022 ], [ 72.926122674122098, 59.143961290481116 ], [ 72.975628697106629, 59.09897695622152 ], [ 72.949997186021278, 59.0168631049483 ], [ 73.09324425561789, 58.952267565096008 ], [ 73.032059361350434, 58.863125718876802 ], [ 73.444127231786297, 58.81759878225796 ], [ 73.632642857381938, 58.853513902444604 ], [ 73.979081659191195, 58.805919908277133 ], [ 74.100107863287235, 58.739412340507101 ], [ 74.743066033670459, 58.748093980952433 ], [ 74.899128858809775, 58.696417548531031 ], [ 75.008786249086086, 58.717088121319705 ], [ 75.159474724778704, 58.650218818343774 ], [ 74.880628697256554, 58.431730861889719 ], [ 74.206251255191262, 58.133557847816405 ], [ 73.087353143133043, 58.146321926515668 ], [ 72.861217075007971, 58.0105162621158 ], [ 72.149115839424439, 58.026225898406437 ], [ 71.988918898288489, 58.122705797034882 ], [ 71.249429152433379, 58.076455390004242 ], [ 71.244984978973548, 58.340935371070486 ], [ 71.301622348792307, 58.385092882130778 ], [ 71.12809288907556, 58.447957262117939 ], [ 71.077346632640968, 58.522423000820822 ], [ 70.864646436783573, 58.534618638739175 ], [ 70.436145461443857, 57.933828437132661 ], [ 70.383952264185609, 57.922304592782723 ], [ 70.432941522333351, 57.778799139868397 ], [ 70.572571241669436, 57.697253730275406 ], [ 70.579909295877258, 57.583565579487868 ], [ 70.69018680197928, 57.567804267253109 ], [ 70.686466098931305, 57.518840847527088 ], [ 70.432011346346542, 57.383784491960682 ], [ 70.498157179809994, 57.298259996002002 ], [ 70.654736768886721, 57.257952379198912 ], [ 70.612362095434321, 57.200591538968297 ], [ 70.776796502656453, 57.209428209044574 ], [ 70.754058872319092, 57.271284897779765 ], [ 70.800050896931339, 57.319059759999902 ], [ 71.098327263792157, 57.339136054485323 ], [ 71.144319289303724, 57.258055731986417 ], [ 71.092436151307311, 57.224155992505018 ], [ 71.224211053397369, 57.201625067742668 ], [ 71.371178826941275, 57.063752345794114 ], [ 71.617675408593186, 56.952854722967061 ], [ 71.67172895692579, 56.832035224446031 ], [ 71.556697219001421, 56.732196357076191 ], [ 71.415310499579846, 56.73273895943538 ], [ 71.357019484261741, 56.671114813797601 ], [ 71.059569939700907, 56.701629747015204 ], [ 71.106905552349303, 56.639023749446437 ], [ 71.053058709591767, 56.544404201892348 ], [ 70.780413852916922, 56.471669623054652 ], [ 70.938647089291692, 56.404257717719474 ], [ 70.927484979248334, 56.347000231175684 ], [ 70.76842492057358, 56.288812567745765 ], [ 70.849453566229045, 56.242252102352609 ], [ 70.827852818352881, 56.159569811197798 ], [ 70.90991499188334, 56.131819565720377 ], [ 70.860925733735598, 55.983973293932365 ], [ 70.762223748826898, 55.90351308905781 ], [ 70.475522902260082, 55.876486314891508 ], [ 70.753852166744082, 55.853128566929797 ], [ 70.588900994685105, 55.798609931503108 ], [ 70.543632439585394, 55.710294908483206 ], [ 70.747134230160555, 55.590302232262161 ], [ 70.691633741903615, 55.508756821769907 ], [ 70.486995069766635, 55.436926581396563 ], [ 70.499707473421154, 55.332798570197838 ], [ 70.382452841000031, 55.206243796000095 ], [ 70.197037801000079, 55.133483378000037 ], [ 69.673865601000045, 55.334039612000097 ], [ 69.334558147000052, 55.385147604000096 ], [ 69.186143432000108, 55.32577138300006 ] ], [ [ 70.763360630388775, 55.992551580690872 ], [ 70.800567660868808, 56.013713079894671 ], [ 70.806665479827984, 56.04340119081229 ], [ 70.749097934921735, 56.019475002968989 ], [ 70.763360630388775, 55.992551580690872 ] ], [ [ 70.729047478858035, 55.941805325155599 ], [ 70.75033816927106, 55.943148912292429 ], [ 70.77018191886043, 55.950073554450967 ], [ 70.700522088823334, 55.953949287129888 ], [ 70.729047478858035, 55.941805325155599 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KGN", "NAME_1": "Kurgan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.734233685000049, 55.351714066000014 ], [ 68.700591675000055, 55.360497946000109 ], [ 68.605300334000106, 55.19559845 ], [ 68.177109416000064, 55.170535380000089 ], [ 68.308160848000057, 55.072815247000037 ], [ 68.166050659000121, 54.956129863000044 ], [ 67.882243693000134, 54.970444235000016 ], [ 67.69848230000008, 54.867918192000062 ], [ 67.311322470000107, 54.859908346000097 ], [ 67.213343953000106, 54.797173157000046 ], [ 65.977450399000077, 54.611706442000056 ], [ 65.932801961000052, 54.702553609000049 ], [ 65.743976278000048, 54.600854391 ], [ 65.449782348000099, 54.627467754000023 ], [ 65.449007202000075, 54.556619364000071 ], [ 65.19816980000013, 54.51615671800009 ], [ 65.184217164000074, 54.310432841000093 ], [ 65.085411825000108, 54.308572490000088 ], [ 64.910642131000031, 54.402726950000059 ], [ 64.720162801000072, 54.333842265000058 ], [ 64.578517701000067, 54.385570373000107 ], [ 64.004495891000033, 54.319734599000114 ], [ 64.007854859000133, 54.228680725000075 ], [ 63.897473999000056, 54.1941608690001 ], [ 63.708648316000051, 54.250436504000092 ], [ 63.368307333000075, 54.162844951000082 ], [ 63.328591957000071, 54.163110075000091 ], [ 63.326398553150682, 54.253639635061063 ], [ 63.091890903842113, 54.31854523417519 ], [ 63.119072706739985, 54.392080796891264 ], [ 63.185838656928468, 54.409340724994422 ], [ 63.134472283768844, 54.479052231874959 ], [ 63.193590122286309, 54.455823676021794 ], [ 63.298493279840955, 54.526155301426002 ], [ 63.192143182361974, 54.686429755129041 ], [ 62.915364210589814, 54.695731513198723 ], [ 62.57130252469176, 54.624728095125477 ], [ 62.529237908702498, 54.67702464517123 ], [ 62.563861117696376, 54.721052965022295 ], [ 62.430742629368808, 54.725290432007796 ], [ 62.379066196947406, 54.672063706874553 ], [ 62.105697869860762, 54.653821925941088 ], [ 62.019398228445482, 54.728494371118302 ], [ 62.123371210013318, 54.815104071795474 ], [ 61.979917433942376, 54.933830675245417 ], [ 61.966894972824718, 55.000725815743749 ], [ 62.109108513646959, 55.046795356520477 ], [ 62.198302035810286, 54.9967467311767 ], [ 62.201092563770771, 55.06015371442237 ], [ 62.266411574034862, 55.104750475054345 ], [ 62.188793573064913, 55.158338935393544 ], [ 62.226103957231828, 55.214201157957064 ], [ 62.030560336690144, 55.272802232536947 ], [ 62.241400180573862, 55.345821031315495 ], [ 62.167296177076878, 55.401114813997424 ], [ 62.198302035810286, 55.438373522220274 ], [ 62.2976241392426, 55.40222585713758 ], [ 62.465055780000228, 55.423516547550605 ], [ 62.449966262233204, 55.476665758318063 ], [ 62.586805453608747, 55.509066881031686 ], [ 62.456684197917355, 55.568443101967546 ], [ 62.548978306403683, 55.639394843197408 ], [ 62.516835565209135, 55.737786769743593 ], [ 62.420200636949801, 55.820572415484548 ], [ 62.264241163698728, 55.833491522915438 ], [ 62.268375278796043, 55.889767158427617 ], [ 62.342892694342368, 55.905063381769651 ], [ 62.325322706977317, 55.957359930916027 ], [ 62.212047967339799, 55.943407293811561 ], [ 62.218455844661491, 56.025934557134065 ], [ 62.071798130379364, 56.133524888962427 ], [ 62.067664016181368, 56.280699368081343 ], [ 62.252562289717844, 56.362709866567059 ], [ 62.332970818648334, 56.469163315934281 ], [ 62.542157017032707, 56.577735501492157 ], [ 62.602618442686946, 56.567348537804776 ], [ 62.624219190563167, 56.498360501336037 ], [ 63.001147088067626, 56.597992662231547 ], [ 63.306038038724466, 56.577580470961948 ], [ 63.356680943270874, 56.514586899765561 ], [ 63.408460727580461, 56.624140937254424 ], [ 63.846263461889237, 56.49029897671636 ], [ 64.173271926158463, 56.468388170477681 ], [ 64.235697055674564, 56.511202094401085 ], [ 64.212442661399677, 56.594271959183516 ], [ 64.361064081342249, 56.657627264686482 ], [ 64.323236932338546, 56.746924140536635 ], [ 64.838244255567929, 56.841802070509118 ], [ 64.995443963168327, 56.768266506893724 ], [ 64.98645226436048, 56.664655260531845 ], [ 65.02365929573989, 56.639695543014852 ], [ 64.967228630596821, 56.500840969135368 ], [ 65.208144159025665, 56.368084215114436 ], [ 65.114713168977516, 56.32917186139224 ], [ 65.156674432179273, 56.293334256470757 ], [ 65.66713423006064, 56.273516344403731 ], [ 65.794051548440166, 56.112905992117817 ], [ 66.014916619906046, 55.991207994453362 ], [ 66.185552198874859, 56.068025011545046 ], [ 66.298103468999841, 56.058077298328612 ], [ 66.434839309386575, 55.953174139874648 ], [ 66.737663201595467, 56.04898224583394 ], [ 66.821068963162077, 55.960615545970654 ], [ 67.297422315987035, 55.959013577314693 ], [ 67.298662551235736, 55.896743476530162 ], [ 67.446663852654638, 55.735047919525812 ], [ 67.824625278933468, 55.720681871271324 ], [ 67.940690545632151, 55.663527737515039 ], [ 68.176438430189364, 55.709623114914791 ], [ 68.174888136578204, 55.586168118064165 ], [ 68.310797153765577, 55.560794990296529 ], [ 68.335498487964799, 55.491703600141022 ], [ 68.435854120171484, 55.466847236310855 ], [ 68.466343214967367, 55.406721707440795 ], [ 68.59863488099495, 55.42493764905322 ], [ 68.734233685000049, 55.351714066000014 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-OMS", "NAME_1": "Omsk" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.136928752000131, 54.727048239000098 ], [ 71.005980673000067, 54.774228821000108 ], [ 70.945932658000061, 54.887916973000088 ], [ 70.977145223000036, 55.07798289000003 ], [ 70.793177124000067, 55.233167216000098 ], [ 70.820358928000132, 55.294145406000084 ], [ 70.46858559900005, 55.285462098000053 ], [ 70.502497999582999, 55.347138780030662 ], [ 70.475006138322613, 55.424110825853916 ], [ 70.549936965018901, 55.490101629686421 ], [ 70.691633741903615, 55.508756821769907 ], [ 70.747134230160555, 55.590302232262161 ], [ 70.556034783978077, 55.670193997255126 ], [ 70.549006789032035, 55.726211249449591 ], [ 70.594068637657472, 55.801658840982725 ], [ 70.765634392613094, 55.838039049162774 ], [ 70.475522902260082, 55.876486314891508 ], [ 70.762223748826898, 55.90351308905781 ], [ 70.855034621250752, 55.973715522353473 ], [ 70.90991499188334, 56.131819565720377 ], [ 70.827852818352881, 56.159569811197798 ], [ 70.849453566229045, 56.242252102352609 ], [ 70.76842492057358, 56.288812567745765 ], [ 70.927484979248334, 56.347000231175684 ], [ 70.938647089291692, 56.404257717719474 ], [ 70.774316033957746, 56.459654853188908 ], [ 71.053058709591767, 56.544404201892348 ], [ 71.106905552349303, 56.639023749446437 ], [ 71.044790480296399, 56.694679267334266 ], [ 71.357019484261741, 56.671114813797601 ], [ 71.415310499579846, 56.73273895943538 ], [ 71.556697219001421, 56.732196357076191 ], [ 71.673279249637631, 56.837771308199308 ], [ 71.617675408593186, 56.952854722967061 ], [ 71.371178826941275, 57.063752345794114 ], [ 71.224211053397369, 57.201625067742668 ], [ 71.092436151307311, 57.224155992505018 ], [ 71.144319289303724, 57.258055731986417 ], [ 71.098327263792157, 57.339136054485323 ], [ 70.800050896931339, 57.319059759999902 ], [ 70.754058872319092, 57.271284897779765 ], [ 70.776796502656453, 57.209428209044574 ], [ 70.612362095434321, 57.200591538968297 ], [ 70.654736768886721, 57.257952379198912 ], [ 70.498157179809994, 57.298259996002002 ], [ 70.432011346346542, 57.383784491960682 ], [ 70.686466098931305, 57.518840847527088 ], [ 70.69018680197928, 57.567804267253109 ], [ 70.579909295877258, 57.583565579487868 ], [ 70.572571241669436, 57.697253730275406 ], [ 70.432941522333351, 57.778799139868397 ], [ 70.383952264185609, 57.922304592782723 ], [ 70.436145461443857, 57.933828437132661 ], [ 70.864646436783573, 58.534618638739175 ], [ 71.077346632640968, 58.522423000820822 ], [ 71.12809288907556, 58.447957262117939 ], [ 71.301622348792307, 58.385092882130778 ], [ 71.244984978973548, 58.340935371070486 ], [ 71.249429152433379, 58.076455390004242 ], [ 71.988918898288489, 58.122705797034882 ], [ 72.149115839424439, 58.026225898406437 ], [ 72.861217075007971, 58.0105162621158 ], [ 73.087353143133043, 58.146321926515668 ], [ 74.206251255191262, 58.133557847816405 ], [ 74.613564894704098, 58.294271551990505 ], [ 75.10521447087109, 58.581024075400705 ], [ 75.302928500849589, 58.486921291784142 ], [ 75.304272088885739, 58.451057848440939 ], [ 75.069144321952876, 58.342899074932348 ], [ 75.221899855194124, 58.222079576411318 ], [ 75.080409783884363, 58.118726712467776 ], [ 75.557383254333672, 57.931399645277395 ], [ 75.58394493960725, 57.661907049970353 ], [ 75.727088658214996, 57.598861802829902 ], [ 75.858553501043218, 57.399080716202036 ], [ 75.99249881436873, 57.384869697578438 ], [ 76.108667433854976, 57.250252591583831 ], [ 76.284780715057934, 56.736795559267591 ], [ 75.84625451033736, 56.462083645044174 ], [ 76.138639763814012, 56.447097480064599 ], [ 76.081072218907764, 56.413662828576662 ], [ 76.11083784419111, 56.323590807269909 ], [ 76.298629999374953, 56.236722724174342 ], [ 76.313822869929481, 56.185330511693735 ], [ 75.763158807133209, 56.141224677476885 ], [ 75.700423618355273, 56.070582993710161 ], [ 75.549941848237665, 56.048362128209646 ], [ 75.311093378256771, 55.890335598309207 ], [ 75.300448033050259, 55.841604723479179 ], [ 75.374862094909702, 55.80806671830436 ], [ 75.352124464572341, 55.767862454288831 ], [ 75.08692101399356, 55.754064845915877 ], [ 75.233992141224292, 55.659729519201903 ], [ 75.136427036078828, 55.597071844789753 ], [ 75.321015253051428, 55.540486151814434 ], [ 75.097463006412568, 55.38178782834558 ], [ 75.257143181812353, 55.26577423849028 ], [ 75.254766065901208, 55.136893216248893 ], [ 75.394292434248428, 55.03741608318569 ], [ 75.337448357955338, 54.918922023732364 ], [ 75.535472447195673, 54.900240994126534 ], [ 75.499505650165588, 54.836653143727574 ], [ 75.649987421182516, 54.809264635254692 ], [ 75.702904087053923, 54.693767809336919 ], [ 75.794474725128453, 54.69940054030269 ], [ 75.830338169370975, 54.614599513856433 ], [ 75.792614374054097, 54.555274969764014 ], [ 75.685024042225734, 54.530521958721408 ], [ 75.691233574000137, 54.113138241000044 ], [ 75.360701946000063, 54.059543763000121 ], [ 75.433979126000054, 53.986524964000083 ], [ 75.027905722000071, 53.80793121300006 ], [ 74.77200402800014, 53.830875549 ], [ 74.616457967000031, 53.680703838000099 ], [ 74.453470500000094, 53.684992981000065 ], [ 74.420810995000068, 53.60308583699999 ], [ 74.456881144000079, 53.569754537000037 ], [ 74.38835819500008, 53.462215882000024 ], [ 74.269605754000111, 53.515235902000128 ], [ 74.223303670000121, 53.594610902000099 ], [ 74.076852661000032, 53.566188864000068 ], [ 74.058042440000122, 53.624583232000035 ], [ 73.904150025000035, 53.639155985000102 ], [ 73.652899211000033, 53.60918365600007 ], [ 73.41095015500008, 53.430021465000081 ], [ 73.347181438000064, 53.459373678000063 ], [ 73.39120975700007, 53.520248515000091 ], [ 73.230599406000124, 53.572338359000057 ], [ 73.22966923000007, 53.6624103810001 ], [ 73.306563762000053, 53.685664775000035 ], [ 73.347388143000046, 53.787622376000044 ], [ 73.437821900000131, 53.808499654000016 ], [ 73.39120975700007, 53.828240052000083 ], [ 73.43182743300008, 53.865447083000092 ], [ 73.682871541000111, 53.874128724000045 ], [ 73.740645793000112, 54.057941793000097 ], [ 73.601532837000093, 54.071222636000087 ], [ 73.518023722000123, 53.956035868000086 ], [ 73.392760051000096, 53.974019267000088 ], [ 73.360307251000052, 53.938414205000115 ], [ 73.062754354000106, 53.979083557000067 ], [ 72.942038208000099, 54.121762187000044 ], [ 72.624228149000032, 54.134991354000121 ], [ 72.503098593000061, 54.050862122000055 ], [ 72.656164185000137, 54.042542216000086 ], [ 72.700192505000075, 53.957637838000025 ], [ 72.55684208200006, 53.977223206000062 ], [ 72.3922009690001, 53.908235169000093 ], [ 72.418659302000094, 54.016032207000094 ], [ 72.358404582000048, 54.092978414000115 ], [ 72.48294478400004, 54.135611471000075 ], [ 72.29856327300007, 54.17839955700002 ], [ 72.324401490000071, 54.253485413000121 ], [ 72.184771770000054, 54.356838278000097 ], [ 72.043178345000058, 54.378025615000055 ], [ 72.103019654000036, 54.311569723 ], [ 72.066742798000064, 54.222376201000074 ], [ 72.169992309000122, 54.196848043000031 ], [ 72.177640422000081, 54.135973205000099 ], [ 72.099505656000076, 54.131890768000076 ], [ 71.983647095000094, 54.231574606000052 ], [ 71.762471965000032, 54.247645976000044 ], [ 71.7087284750001, 54.132200827000062 ], [ 71.647233521000089, 54.10858469700004 ], [ 71.477114706000066, 54.10966990200005 ], [ 71.45313684100006, 54.18134511300012 ], [ 71.320586793000132, 54.201033834000057 ], [ 71.161268351000047, 54.101970113000064 ], [ 71.043962850000071, 54.185944316000061 ], [ 71.052076050000096, 54.263200582000067 ], [ 70.970840698000131, 54.305006816000017 ], [ 71.190620565000131, 54.318184307000095 ], [ 71.141217895000125, 54.563750712000015 ], [ 71.264672892000135, 54.661729228000056 ], [ 71.136928752000131, 54.727048239000098 ] ] ], [ [ [ 70.794779901171466, 56.045003160367514 ], [ 70.787648553437975, 56.000173854839488 ], [ 70.738969353652692, 56.000716458098054 ], [ 70.762223748826898, 56.03066295053469 ], [ 70.794779901171466, 56.045003160367514 ] ] ], [ [ [ 70.740519647263852, 55.962010809950868 ], [ 70.77018191886043, 55.950073554450967 ], [ 70.701245559235133, 55.9491433784641 ], [ 70.706516554995005, 55.958445136533783 ], [ 70.740519647263852, 55.962010809950868 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-NVS", "NAME_1": "Novosibirsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 76.664601685000036, 54.134061178000067 ], [ 76.837717732000101, 54.29689361600002 ], [ 76.83420373600012, 54.345676168000054 ], [ 76.752968384000042, 54.376682027000086 ], [ 76.910478150000074, 54.454610088000052 ], [ 76.67276656100006, 54.436471660000038 ], [ 76.623053833000085, 54.355908102000043 ], [ 76.476499471000125, 54.32314524400006 ], [ 76.214810018000037, 54.342213847000025 ], [ 76.183804159000033, 54.2515733850001 ], [ 75.691233574000137, 54.113138241000044 ], [ 75.685024042225734, 54.530521958721408 ], [ 75.824136996724974, 54.590880032487462 ], [ 75.802122836799469, 54.690176297498112 ], [ 75.708485142075631, 54.689530341452041 ], [ 75.658048944003554, 54.803683580233042 ], [ 75.499505650165588, 54.836653143727574 ], [ 75.529167921762166, 54.903522446703505 ], [ 75.337448357955338, 54.918922023732364 ], [ 75.394292434248428, 55.03741608318569 ], [ 75.254766065901208, 55.136893216248893 ], [ 75.257143181812353, 55.26577423849028 ], [ 75.097463006412568, 55.38178782834558 ], [ 75.322565545763268, 55.532114569731561 ], [ 75.136427036078828, 55.597071844789753 ], [ 75.233992141224292, 55.659729519201903 ], [ 75.094362420988887, 55.76321157525399 ], [ 75.352124464572341, 55.767862454288831 ], [ 75.374862094909702, 55.80806671830436 ], [ 75.300448033050259, 55.841604723479179 ], [ 75.311093378256771, 55.890335598309207 ], [ 75.549941848237665, 56.048362128209646 ], [ 75.700423618355273, 56.070582993710161 ], [ 75.763158807133209, 56.141224677476885 ], [ 76.318990512901792, 56.191299140343006 ], [ 76.11083784419111, 56.323590807269909 ], [ 76.080142042920897, 56.409115302329326 ], [ 76.130578240992975, 56.45174835909944 ], [ 75.84625451033736, 56.462083645044174 ], [ 76.014202915032456, 56.552414048769322 ], [ 76.047379185001375, 56.620161851787998 ], [ 76.147631464420499, 56.631892401712946 ], [ 76.284160598332903, 56.72620189090452 ], [ 76.108667433854976, 57.250252591583831 ], [ 76.918540480158981, 57.187879137112475 ], [ 78.444338819680752, 57.161317450939578 ], [ 78.447646111578763, 57.121888333279912 ], [ 79.589798617911867, 56.92856679991786 ], [ 80.248569777373291, 56.454719754213272 ], [ 81.122314894916428, 56.532621975124016 ], [ 81.557430454052167, 56.258271796106499 ], [ 81.944383579138844, 56.339455471392853 ], [ 82.761077914813882, 56.411285711766141 ], [ 82.834355096010825, 56.448751126463264 ], [ 82.814718051996465, 56.523630276316169 ], [ 82.995895624283605, 56.50786896408141 ], [ 83.085089146446933, 56.552724107131837 ], [ 83.255724725415689, 56.439397691550198 ], [ 83.149271275149204, 56.378626207533443 ], [ 83.201567824295637, 56.338938707455384 ], [ 83.069689569418074, 56.233932197113177 ], [ 83.218207634774501, 56.208404038815331 ], [ 83.141106397742021, 56.191815904280531 ], [ 83.118265414617156, 56.136625475285427 ], [ 83.285593702587278, 56.103810940522465 ], [ 83.230920038429019, 56.041230781375418 ], [ 83.407343377994437, 55.900619208309763 ], [ 83.360214470921051, 55.844550279271971 ], [ 83.289004348172114, 55.84796092395743 ], [ 83.227819452106019, 55.748638821424436 ], [ 83.29468875508195, 55.6824413111176 ], [ 83.402899203635286, 55.735202949156758 ], [ 83.408583612343818, 55.682027899967579 ], [ 83.644951612726686, 55.701199855988534 ], [ 83.768871697570773, 55.872868963731662 ], [ 83.909534946580493, 55.913176581434072 ], [ 83.969686313872273, 56.014669094303258 ], [ 84.21762983634784, 56.055131740737238 ], [ 84.347441033676716, 55.98402496987643 ], [ 84.410382928029662, 56.044072984380705 ], [ 84.533579543361213, 56.038853665464273 ], [ 84.571820102615618, 55.962708441941004 ], [ 84.50112674380415, 55.954466051067357 ], [ 84.506294386776517, 55.868218084696821 ], [ 84.605616490208831, 55.840726223436434 ], [ 84.585566034145131, 55.800728664995859 ], [ 84.631351353182367, 55.768482571013806 ], [ 84.551252882614392, 55.722645576032505 ], [ 84.701321241581979, 55.669057114793986 ], [ 84.770981073417772, 55.539814358246019 ], [ 84.7217851087957, 55.499713447017939 ], [ 84.761059197723739, 55.454625759071519 ], [ 84.635072056230399, 55.408737088146097 ], [ 84.875470818923134, 55.388531603350771 ], [ 84.82255415215235, 55.246240546364106 ], [ 84.915778435726168, 55.165263577552025 ], [ 84.882602166656625, 54.985274562770826 ], [ 85.076078728750304, 54.868279120085276 ], [ 84.940479770824709, 54.731388250966972 ], [ 85.043315870830725, 54.662322700132506 ], [ 84.948334588970056, 54.604109199180186 ], [ 85.079386020648315, 54.469388740398017 ], [ 84.693259718760999, 54.337407131833629 ], [ 84.531925896962548, 54.169717109556927 ], [ 84.445936313909726, 54.139822293064356 ], [ 84.390022413603447, 54.187752184016063 ], [ 84.288943312783601, 54.172145901412193 ], [ 84.265585564821947, 54.215709134169174 ], [ 83.905297478695672, 54.095354722742229 ], [ 83.912118768066648, 54.139951484273581 ], [ 83.567850375694263, 54.126412259218341 ], [ 83.488372022750639, 54.082383938467956 ], [ 83.501704543130131, 53.993190416304628 ], [ 83.406103142745792, 53.940583807896417 ], [ 83.29489546065696, 54.083004055192987 ], [ 83.189682244739743, 54.065382391883873 ], [ 82.732965935929144, 53.786898097768983 ], [ 82.763455030725027, 53.757959296584261 ], [ 82.543210076883497, 53.555646064414304 ], [ 82.600777621789803, 53.506811834998132 ], [ 82.485539178290423, 53.468622951687848 ], [ 82.173930291949375, 53.601534736239046 ], [ 82.205142857157114, 53.697885444557585 ], [ 82.113055454245796, 53.661221015537421 ], [ 81.83482954344862, 53.713052476690393 ], [ 81.726102329159119, 53.840538234951566 ], [ 81.846921827680148, 53.89975942625648 ], [ 81.854569940250485, 53.968644110837033 ], [ 81.714423456077611, 53.99897817600197 ], [ 81.55401981026597, 53.935028592195749 ], [ 81.581718378000687, 54.016651516154525 ], [ 81.473611281335536, 54.071686917317379 ], [ 81.116217075957252, 54.14199270340049 ], [ 81.103711378777064, 54.212556871002789 ], [ 80.993950636612567, 54.264801744205101 ], [ 80.92480756961362, 54.396059882357633 ], [ 80.801714308868213, 54.330172431312633 ], [ 80.838611280985788, 54.257127794112364 ], [ 80.585086704387834, 54.202531643420571 ], [ 80.487935012191031, 54.109565742265147 ], [ 80.421582473152569, 54.126825670368362 ], [ 80.20557498629654, 54.042851467121466 ], [ 80.12847374926406, 54.07514923794696 ], [ 79.866474236896465, 53.932470608231938 ], [ 79.862443474586655, 53.857694811166596 ], [ 79.673927849890333, 53.829376125807528 ], [ 79.571505161034338, 53.732741197548194 ], [ 78.665617303195972, 53.656053372565054 ], [ 78.602572056055521, 53.616055813225159 ], [ 78.622209100069881, 53.525725410399332 ], [ 78.376642694404779, 53.488104966970639 ], [ 78.245591261827258, 53.499938870582412 ], [ 78.204456821824806, 53.611921699027164 ], [ 77.963747999870236, 53.57657501872211 ], [ 77.926334262915873, 53.50004222336986 ], [ 78.05769575385591, 53.465160631058268 ], [ 77.936049432135576, 53.444903469419557 ], [ 77.936979608122385, 53.389247952431049 ], [ 77.847579380384047, 53.386224881373153 ], [ 77.784656738717501, 53.327440475497497 ], [ 76.525695435000102, 53.961306865000026 ], [ 76.374386841000103, 54.147755432000096 ], [ 76.664601685000036, 54.134061178000067 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-CHE", "NAME_1": "Chelyabinsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 63.328591957000071, 54.163110075000091 ], [ 63.123774455000103, 54.174110413000065 ], [ 63.084655396000073, 54.085640361000017 ], [ 62.62912764500004, 54.071170960000089 ], [ 62.550579467000091, 54.02683258100005 ], [ 62.586546264000049, 53.969833476000062 ], [ 62.525258016000066, 53.871854961000039 ], [ 62.389969116000032, 53.941566467000072 ], [ 62.444022664000045, 53.992312724000058 ], [ 62.412706746000083, 54.026625875000079 ], [ 62.002602580000087, 54.017375794000074 ], [ 62.00363610900007, 53.932006328000071 ], [ 61.856409953000082, 53.94270334900007 ], [ 61.791297648000068, 54.000787659000068 ], [ 61.619938599000136, 53.992571106000028 ], [ 61.581801392000045, 53.947664286000119 ], [ 61.33768192500014, 54.063161113000021 ], [ 61.193504680000046, 54.018254293 ], [ 61.210764608000034, 53.907666728000052 ], [ 61.145238891000133, 53.950144755000096 ], [ 60.996100708000085, 53.941411439000021 ], [ 60.978013957000087, 53.882603659000054 ], [ 61.084984172000077, 53.875317281000079 ], [ 61.19908573400005, 53.797130839000019 ], [ 61.00757287600004, 53.635745342000078 ], [ 60.880242147000047, 53.632799785000074 ], [ 61.28073449700014, 53.542417704000016 ], [ 61.503046509000058, 53.588978170000061 ], [ 61.555343059000052, 53.505727438000051 ], [ 61.412302694000118, 53.43575754900003 ], [ 61.235259237000093, 53.503040264000035 ], [ 61.137177368000039, 53.373125713000022 ], [ 61.162705526000082, 53.299150899000026 ], [ 61.514311972000087, 53.208665467000046 ], [ 61.643089640000085, 53.24334035300005 ], [ 61.764219198000035, 53.169468892000069 ], [ 62.050661662000039, 53.124768779000036 ], [ 62.116032349000079, 53.064591573000072 ], [ 62.094173218000094, 52.992477112000088 ], [ 61.959246054000118, 52.934935405000047 ], [ 61.819823039000141, 52.978240255000017 ], [ 61.605572550000034, 52.94831960099999 ], [ 61.448269491000076, 53.021415914000059 ], [ 60.974603312000056, 52.971238098000029 ], [ 61.058422485000051, 52.922171326000083 ], [ 60.696170695000035, 52.734921774000028 ], [ 60.672606242000086, 52.672160747000063 ], [ 60.803140910000081, 52.627744853000095 ], [ 60.814923137000108, 52.521911520000046 ], [ 60.936466105000079, 52.488580221000078 ], [ 61.039922323000042, 52.334997864000044 ], [ 60.672192830000085, 52.144337667000045 ], [ 60.506518189000076, 52.151649882000029 ], [ 60.20276412000004, 51.992744853000048 ], [ 60.029775856670426, 51.992610475393121 ], [ 59.913686964781562, 52.100437730916497 ], [ 59.962882927604994, 52.175626939131917 ], [ 60.14953820212628, 52.277558702472106 ], [ 60.143957147104629, 52.426050930306189 ], [ 59.936631300693932, 52.429564927779154 ], [ 59.809610630426221, 52.496847642804426 ], [ 59.684967075170334, 52.428014635067314 ], [ 59.272795851047647, 52.494134630109045 ], [ 59.175024042125813, 52.277377835318816 ], [ 58.978756952071649, 52.372204088447916 ], [ 58.976483188948009, 52.43028839819101 ], [ 58.800473259633179, 52.438892524270557 ], [ 58.766056756214311, 52.516691393293115 ], [ 58.83850711511127, 52.540565904293032 ], [ 58.723682081862535, 52.645055649798394 ], [ 58.78414350841615, 52.724766546738692 ], [ 58.747453240974266, 52.853518377770911 ], [ 58.836026646412563, 53.000822048998316 ], [ 59.027642857431886, 53.014955553256129 ], [ 58.907443474736567, 53.055159817271715 ], [ 58.891423780982677, 53.188381660185428 ], [ 58.822797478820576, 53.21137767204192 ], [ 58.9022758317642, 53.548824775043329 ], [ 58.82093712774622, 53.59564362195556 ], [ 58.907133417273371, 53.654089666904554 ], [ 58.871890089755823, 53.750517890488254 ], [ 58.94754438686391, 53.899707750312416 ], [ 58.923359815702895, 53.935157783404975 ], [ 58.955812616159278, 53.974793605740274 ], [ 59.153836703600973, 53.984198717496781 ], [ 59.322198521244729, 54.181551012269381 ], [ 59.534898716202747, 54.19754486850087 ], [ 59.728995395920776, 54.138659573080815 ], [ 59.727031691159596, 54.194056708550249 ], [ 59.802892693842693, 54.254466458260424 ], [ 59.666673618292805, 54.339680894957326 ], [ 59.746255324023934, 54.447142036475782 ], [ 59.679489373835509, 54.498146674429449 ], [ 59.869968703293011, 54.613307604462364 ], [ 59.974251743223363, 54.795622057412004 ], [ 59.919164667015764, 54.832208971167063 ], [ 59.943969354002434, 54.857427070203073 ], [ 59.805993280165694, 54.846368312947277 ], [ 59.631533643562761, 54.911067206486337 ], [ 59.411598748983067, 54.707203680705277 ], [ 59.227837355209772, 54.611188870070293 ], [ 59.061439243226459, 54.631859442858968 ], [ 58.613817986910533, 54.470267239541442 ], [ 58.354195591353403, 54.546593329318682 ], [ 57.961144647307606, 54.392365016832059 ], [ 57.742863397327881, 54.500601304706436 ], [ 57.747204217100887, 54.579356188137524 ], [ 57.580082634705775, 54.634856676394463 ], [ 57.581322869954477, 54.673252265279814 ], [ 57.165120884421242, 54.818979804474395 ], [ 57.155922479139065, 54.866987209791887 ], [ 57.244289178103031, 54.951219794557858 ], [ 57.136905551849736, 55.092141425086652 ], [ 57.239638299068247, 55.157563788138305 ], [ 57.215247023231484, 55.223244534507614 ], [ 57.256691521596395, 55.258022773132438 ], [ 57.51796756355219, 55.334038805446482 ], [ 58.030184360619728, 55.274765937298127 ], [ 58.143975864194772, 55.208955999719592 ], [ 57.963831821581266, 55.167123927727062 ], [ 58.031321242181548, 55.074674791408484 ], [ 57.96176476403258, 54.946310533104565 ], [ 58.000832147385665, 54.916725775873829 ], [ 58.105735304940367, 54.957110907942024 ], [ 58.089302199137137, 55.020104479138354 ], [ 58.193481887179303, 55.08402822542223 ], [ 58.141495396395385, 55.113690497018808 ], [ 58.299005160559659, 55.173686835578962 ], [ 58.372385695443484, 55.154979967551412 ], [ 58.364014113360611, 55.08438995972881 ], [ 58.433467237822754, 55.056898098468423 ], [ 58.387371861322322, 54.999795641555579 ], [ 58.523487583185386, 55.021551419062689 ], [ 58.550979445345092, 54.952666734482193 ], [ 58.815666131087028, 55.02485871006138 ], [ 58.755824823057083, 55.111726793156947 ], [ 58.577644484305495, 55.16154287450405 ], [ 58.665287712857662, 55.189913234907863 ], [ 58.744766065801286, 55.155703437063949 ], [ 58.802953729231206, 55.213632718075473 ], [ 58.726782668185535, 55.257454332351529 ], [ 58.92077599511606, 55.278538316290224 ], [ 58.848428989905926, 55.298382065879593 ], [ 58.871993443442648, 55.323290107452465 ], [ 58.970282017201328, 55.310836087115717 ], [ 58.997360467311694, 55.24417348881542 ], [ 59.159211053047613, 55.331558335848513 ], [ 59.201275669036875, 55.450104072145166 ], [ 59.475057407273482, 55.46754486830099 ], [ 59.641352167368609, 55.565342516543865 ], [ 59.498001743185853, 55.579889431052379 ], [ 59.436713495231572, 55.632625231569136 ], [ 59.239722934765609, 55.58435944293393 ], [ 59.344316033957796, 55.643994046288185 ], [ 59.279617141317999, 55.693629259582622 ], [ 59.313000115962552, 55.774735418704608 ], [ 59.153940057287798, 55.799540107489918 ], [ 59.229801059970896, 55.90578685218145 ], [ 59.173473749413972, 56.005496528342064 ], [ 59.28137413870553, 56.054821682374723 ], [ 59.296050246221853, 56.130889391532151 ], [ 59.063609653562651, 56.155642402574813 ], [ 58.997257115423508, 56.20855906844622 ], [ 59.134613071635897, 56.205975246960065 ], [ 59.165412224794295, 56.255377916257828 ], [ 59.115286085984053, 56.312428697226551 ], [ 59.194351026878337, 56.351806138942152 ], [ 59.701296828186059, 56.30607249584898 ], [ 59.66140262163367, 56.252277329934827 ], [ 59.788733351163216, 56.232640285920411 ], [ 59.920818311615733, 56.264679674327454 ], [ 60.199354281674744, 56.20799062856463 ], [ 60.75084516767032, 56.237342840899373 ], [ 60.908975051257585, 56.1880952012325 ], [ 61.156608513571996, 56.221633206407319 ], [ 61.084158155574414, 56.32570953986334 ], [ 61.150097284362175, 56.375784002729517 ], [ 61.267299431723359, 56.331393948571815 ], [ 61.373236118052375, 56.369117743888751 ], [ 61.528988884829118, 56.298811956906263 ], [ 61.641953566104178, 56.319405016228473 ], [ 61.863542107981857, 56.180705471080614 ], [ 62.126161737074483, 56.127478745947315 ], [ 62.109831984058815, 56.079678046204833 ], [ 62.218455844661491, 56.025934557134065 ], [ 62.212047967339799, 55.943407293811561 ], [ 62.305168898126112, 55.978702298172493 ], [ 62.344339634266703, 55.926095689764225 ], [ 62.256282992765875, 55.841191311429839 ], [ 62.420200636949801, 55.820572415484548 ], [ 62.516835565209135, 55.737786769743593 ], [ 62.548978306403683, 55.639394843197408 ], [ 62.456684197917355, 55.568443101967546 ], [ 62.585461867371237, 55.504467677940966 ], [ 62.449966262233204, 55.476665758318063 ], [ 62.465055780000228, 55.423516547550605 ], [ 62.2976241392426, 55.40222585713758 ], [ 62.205433384443097, 55.441990872480744 ], [ 62.167296177076878, 55.401114813997424 ], [ 62.241400180573862, 55.345821031315495 ], [ 62.034591099000011, 55.293679510900688 ], [ 62.226103957231828, 55.214201157957064 ], [ 62.188793573064913, 55.158338935393544 ], [ 62.269512160357863, 55.130511176449602 ], [ 62.198302035810286, 54.9967467311767 ], [ 62.109108513646959, 55.046795356520477 ], [ 61.97020226382341, 55.021293037543614 ], [ 61.979917433942376, 54.933830675245417 ], [ 62.123371210013318, 54.815104071795474 ], [ 62.03800174278615, 54.774899806880569 ], [ 62.024772576992802, 54.716505438774959 ], [ 62.147245721013178, 54.64441681598322 ], [ 62.551562127889838, 54.727770900706503 ], [ 62.529237908702498, 54.67702464517123 ], [ 62.588872512056753, 54.624159654344567 ], [ 62.915364210589814, 54.695731513198723 ], [ 63.192143182361974, 54.686429755129041 ], [ 63.298493279840955, 54.526155301426002 ], [ 63.193590122286309, 54.455823676021794 ], [ 63.134472283768844, 54.479052231874959 ], [ 63.185838656928468, 54.409340724994422 ], [ 63.119072706739985, 54.392080796891264 ], [ 63.091890903842113, 54.31854523417519 ], [ 63.326398553150682, 54.253639635061063 ], [ 63.328591957000071, 54.163110075000091 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-ALT", "NAME_1": "Altay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.0427510990001, 51.992512309000105 ], [ 78.476480754000136, 52.637925111000058 ], [ 77.784656738717501, 53.327440475497497 ], [ 77.847579380384047, 53.386224881373153 ], [ 77.936979608122385, 53.389247952431049 ], [ 77.936049432135576, 53.444903469419557 ], [ 78.05769575385591, 53.465160631058268 ], [ 77.926334262915873, 53.50004222336986 ], [ 77.925300734141558, 53.564844468797162 ], [ 78.204456821824806, 53.611921699027164 ], [ 78.245591261827258, 53.499938870582412 ], [ 78.376642694404779, 53.488104966970639 ], [ 78.622209100069881, 53.525725410399332 ], [ 78.602572056055521, 53.616055813225159 ], [ 78.665617303195972, 53.656053372565054 ], [ 79.381852654776139, 53.72013214847982 ], [ 79.441900669280415, 53.692950343783309 ], [ 79.602511020667009, 53.747391465743533 ], [ 79.691187778892868, 53.836662503171965 ], [ 79.862443474586655, 53.857694811166596 ], [ 79.866474236896465, 53.932470608231938 ], [ 80.12847374926406, 54.07514923794696 ], [ 80.20557498629654, 54.042851467121466 ], [ 80.421582473152569, 54.126825670368362 ], [ 80.487935012191031, 54.109565742265147 ], [ 80.585086704387834, 54.202531643420571 ], [ 80.838611280985788, 54.257127794112364 ], [ 80.801714308868213, 54.330172431312633 ], [ 80.92480756961362, 54.396059882357633 ], [ 80.993950636612567, 54.264801744205101 ], [ 81.103711378777064, 54.212556871002789 ], [ 81.116217075957252, 54.14199270340049 ], [ 81.473611281335536, 54.071686917317379 ], [ 81.581718378000687, 54.016651516154525 ], [ 81.55401981026597, 53.935028592195749 ], [ 81.714423456077611, 53.99897817600197 ], [ 81.854569940250485, 53.968644110837033 ], [ 81.846921827680148, 53.89975942625648 ], [ 81.726102329159119, 53.840538234951566 ], [ 81.83482954344862, 53.713052476690393 ], [ 82.113055454245796, 53.661221015537421 ], [ 82.205142857157114, 53.697885444557585 ], [ 82.173930291949375, 53.601534736239046 ], [ 82.485539178290423, 53.468622951687848 ], [ 82.600777621789803, 53.506811834998132 ], [ 82.543210076883497, 53.555646064414304 ], [ 82.763455030725027, 53.757959296584261 ], [ 82.732965935929144, 53.786898097768983 ], [ 83.189682244739743, 54.065382391883873 ], [ 83.29489546065696, 54.083004055192987 ], [ 83.406103142745792, 53.940583807896417 ], [ 83.501704543130131, 53.993190416304628 ], [ 83.488372022750639, 54.082383938467956 ], [ 83.567850375694263, 54.126412259218341 ], [ 83.912118768066648, 54.139951484273581 ], [ 83.905297478695672, 54.095354722742229 ], [ 84.265585564821947, 54.215709134169174 ], [ 84.288943312783601, 54.172145901412193 ], [ 84.390022413603447, 54.187752184016063 ], [ 84.457925246253069, 54.14160512977287 ], [ 84.693259718760999, 54.337407131833629 ], [ 85.160001255153759, 54.487165432438701 ], [ 85.434816522164738, 54.211549181549458 ], [ 85.602868279647339, 54.233899238259198 ], [ 85.94382938012177, 54.039905911328731 ], [ 86.139166294189067, 53.987764390913867 ], [ 86.385146111903509, 53.784986069851243 ], [ 86.454805942839926, 53.614040432519914 ], [ 86.56880415198998, 53.53802440020587 ], [ 86.799384392675563, 53.474359036340445 ], [ 87.005366651949373, 53.508103746190898 ], [ 87.01435835165654, 53.476606961042364 ], [ 86.922787713582068, 53.445575262987973 ], [ 86.988623487783684, 53.41487946171776 ], [ 86.869457634762, 53.29788401993153 ], [ 86.666575961811134, 53.249876613714719 ], [ 86.927025180567568, 53.084201972143262 ], [ 87.076990187647027, 53.075210273335415 ], [ 87.023143344889434, 52.915504259513966 ], [ 86.944078403995093, 52.855120348225455 ], [ 87.079987421182523, 52.708824368249964 ], [ 87.168147413672159, 52.719263006982146 ], [ 87.18747440022338, 52.635030423115495 ], [ 86.84982059074764, 52.65115346875757 ], [ 86.711327752973375, 52.5125572781958 ], [ 86.615829706275861, 52.378560288926167 ], [ 86.811373325918225, 52.287997342103608 ], [ 86.780057407922982, 52.233065293728316 ], [ 86.822122023012923, 52.158418687872143 ], [ 86.7738562361763, 52.113098455928991 ], [ 86.498524204328533, 52.118524482219073 ], [ 86.453979119640621, 52.031759751911011 ], [ 86.36840294773782, 52.01015900313547 ], [ 85.920988396996904, 52.072119046456805 ], [ 85.837169224280217, 51.982925523394158 ], [ 85.876546665096498, 51.919415188260302 ], [ 85.740327590445929, 51.860607408105352 ], [ 85.788800082857506, 51.846964830262664 ], [ 85.745391879731415, 51.729659329214655 ], [ 85.6699442890976, 51.753973089786257 ], [ 85.536825799870712, 51.700100410405582 ], [ 85.471300083132292, 51.568532212991215 ], [ 85.294566685204302, 51.565483303511598 ], [ 85.299734328176669, 51.508406684121155 ], [ 85.231521438063851, 51.46838328725886 ], [ 85.007659133062532, 51.48900218410347 ], [ 84.924356724283371, 51.424148260933464 ], [ 84.715480585160833, 51.399472765155963 ], [ 84.394156528700819, 51.266018378245519 ], [ 84.27912478987713, 51.283019924829659 ], [ 84.144145948676567, 51.119722398270028 ], [ 84.014438104135138, 51.137602443997594 ], [ 84.010200637149637, 51.067064113917695 ], [ 84.505674270051486, 50.959938870082738 ], [ 84.531305780237517, 50.876843166878643 ], [ 84.608717075632512, 50.836173813970333 ], [ 84.541641066182194, 50.691066393299366 ], [ 84.088597274744416, 50.634612502265156 ], [ 83.975835002000053, 50.686364645000097 ], [ 83.950565226000094, 50.780415752000053 ], [ 83.82049564600004, 50.868007304000074 ], [ 83.323781779000115, 51.00241770500007 ], [ 83.107567587000062, 50.992650859000022 ], [ 82.975896037000098, 50.881908265000035 ], [ 82.726453898000102, 50.900718485000041 ], [ 82.672762085000102, 50.7897691860001 ], [ 82.475823201000082, 50.714011536000029 ], [ 82.328390340000055, 50.752097066000076 ], [ 82.147316121000131, 50.701609192000049 ], [ 81.744136597000079, 50.78491160099999 ], [ 81.674115031000042, 50.736025696000084 ], [ 81.460226277000061, 50.730341289000066 ], [ 81.418781779000085, 50.762484029000078 ], [ 81.466117391000068, 50.833745830000041 ], [ 81.400798381000129, 50.959112854000111 ], [ 81.051517375000117, 50.955702210000098 ], [ 81.152028036000104, 51.186540833000024 ], [ 81.022113485000034, 51.177394104000129 ], [ 80.924238322000122, 51.216073914000035 ], [ 80.905738160000112, 51.283563335000068 ], [ 80.842537883000034, 51.257518413000085 ], [ 80.68275435400011, 51.302011820000089 ], [ 80.59924523900014, 51.208554993000078 ], [ 80.421995077000076, 51.187574362000092 ], [ 80.410522908000132, 51.104840394000107 ], [ 80.464473104000092, 51.04370717400009 ], [ 80.439048299000092, 50.958131003000048 ], [ 80.181286255000032, 50.875655416000043 ], [ 80.142735636000054, 50.817106018000047 ], [ 80.015404908000107, 50.839481913000029 ], [ 80.085994914000082, 50.752148743000092 ], [ 80.054989055000135, 50.752872213000089 ], [ 79.966519002000098, 50.810181376000045 ], [ 79.0427510990001, 51.992512309000105 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-ORE", "NAME_1": "Orenburg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.029775856670426, 51.992610475393121 ], [ 59.985723104000101, 51.952282207000067 ], [ 60.06075728400009, 51.858670349000036 ], [ 60.138065226000094, 51.888875224000046 ], [ 60.479749797000125, 51.784256287000019 ], [ 60.356036418000031, 51.692272237000012 ], [ 60.375880167000105, 51.662532451000047 ], [ 60.51509647600011, 51.617909851000022 ], [ 60.937396281000076, 51.611166077000078 ], [ 60.944630981000046, 51.544374288000128 ], [ 61.029380330000038, 51.48267262800006 ], [ 61.473797648000129, 51.425802714000028 ], [ 61.562991170000032, 51.29552642900002 ], [ 61.663656860000117, 51.258396912000038 ], [ 61.534155721000104, 51.206074524000101 ], [ 61.404034465000052, 50.802584941000092 ], [ 60.718494914000075, 50.652671611000059 ], [ 60.300432577000095, 50.684659323000048 ], [ 60.176719197000068, 50.742175192000062 ], [ 60.136204875000089, 50.844494528000084 ], [ 60.021276489000059, 50.854054667000057 ], [ 59.962158651000095, 50.829508362000084 ], [ 59.91513309700008, 50.67380727199999 ], [ 59.815707642000064, 50.562909648000058 ], [ 59.522805623000124, 50.474646302000068 ], [ 59.451698853000096, 50.537278138000019 ], [ 59.563423300000068, 50.579859518000077 ], [ 59.437642863000065, 50.631122538000099 ], [ 59.27331180800013, 50.61598134399999 ], [ 59.19745080600012, 50.662748516000093 ], [ 58.925942830000054, 50.678148092000086 ], [ 58.747762492000049, 50.795091858000049 ], [ 58.664356730000065, 50.789924215000056 ], [ 58.640998983000031, 50.863408101000019 ], [ 58.550151815000049, 50.893277079000129 ], [ 58.595006959000045, 51.023372498000086 ], [ 58.377965943000049, 51.070656433000025 ], [ 58.308409465000068, 51.150031434000098 ], [ 58.167642863000083, 51.055179342000102 ], [ 57.768804158000137, 51.119671530000048 ], [ 57.72239872300014, 50.908728333000042 ], [ 57.555897258000073, 50.918753561000059 ], [ 57.46763391200011, 50.85849884100007 ], [ 57.334308716000066, 50.897411194000043 ], [ 57.15447473200004, 51.099956971000083 ], [ 56.716051880000066, 51.072465108000117 ], [ 56.688353312000061, 50.969138082000043 ], [ 56.478340291000109, 51.073033549000073 ], [ 56.315456177000044, 50.883820293000056 ], [ 56.158359823000069, 50.905524394000068 ], [ 56.078881470000056, 50.724760234000044 ], [ 55.659992310000064, 50.530043437000032 ], [ 55.467755981000039, 50.656960755000014 ], [ 55.305388631000085, 50.664970602 ], [ 55.08400679500005, 50.796900534000045 ], [ 55.047729940000124, 50.884233704000067 ], [ 54.638245890000064, 51.02768748000004 ], [ 54.533756145000041, 51.003244527 ], [ 54.545951783000078, 50.953273418000023 ], [ 54.502956991000076, 50.928262024000034 ], [ 54.638245890000064, 50.885732320000088 ], [ 54.676279745000102, 50.602545471000028 ], [ 54.499442993000116, 50.5232738240001 ], [ 54.379760376000036, 50.61944366500002 ], [ 54.478565715000059, 50.853486227000118 ], [ 54.275787395000066, 50.904284160000017 ], [ 54.145356079000123, 50.992650859000022 ], [ 54.111559692000128, 51.096003724000113 ], [ 53.935859823000101, 51.185610657000055 ], [ 53.673860311000112, 51.219872132000077 ], [ 53.594071899000141, 51.289428610000058 ], [ 53.610298300000125, 51.388414815000047 ], [ 53.407313273000113, 51.48417124500007 ], [ 53.165777629000047, 51.514556987000034 ], [ 52.944292440000083, 51.452881165000079 ], [ 52.779754680000053, 51.508123271000088 ], [ 52.545815470000036, 51.459521586000065 ], [ 52.307793823000054, 51.774541117000084 ], [ 52.091786336000041, 51.65870839500009 ], [ 51.869164266000041, 51.67307444300009 ], [ 51.764726196000083, 51.593311870000022 ], [ 51.782296184000074, 51.492852885000033 ], [ 51.693309367000097, 51.454095561000102 ], [ 51.584323771000072, 51.534917501000066 ], [ 51.461850626000114, 51.475282899000049 ], [ 51.304237508000085, 51.471639710000076 ], [ 51.236541382000098, 51.535899353000033 ], [ 51.358962850000125, 51.561479186999989 ], [ 51.371933635000062, 51.62958872500009 ], [ 51.233854207000036, 51.685476786000081 ], [ 50.92544926000005, 51.679689026000105 ], [ 50.76700931792567, 51.759399922768182 ], [ 51.415187615715865, 52.102711494040193 ], [ 51.452601352670285, 52.219345201519786 ], [ 51.406816033632992, 52.257120672780786 ], [ 51.412913852592169, 52.350034897992145 ], [ 51.562672154096617, 52.447289943875774 ], [ 51.471204867910274, 52.527388414443749 ], [ 51.475442335795151, 52.576455186957276 ], [ 51.545825637143423, 52.574258938199421 ], [ 51.509755487325833, 52.631258043224079 ], [ 51.539831170072432, 52.67694000947381 ], [ 51.727003207631924, 52.664382636349558 ], [ 51.772065057156624, 52.796260891227121 ], [ 51.717494744886551, 52.826181546141413 ], [ 51.728036737305558, 52.869486396479999 ], [ 52.052461379189253, 52.99340648132403 ], [ 52.063520134646467, 53.07546865485449 ], [ 52.157881300681481, 53.102572944285896 ], [ 52.05855919814843, 53.139134020518611 ], [ 52.128425733760594, 53.173860582299994 ], [ 52.192607863362184, 53.3751661241173 ], [ 52.07995324134896, 53.514098212362569 ], [ 52.253482700166444, 53.654348050222325 ], [ 52.412542758841198, 53.927354641203692 ], [ 52.375542433036856, 53.980452176027086 ], [ 52.484683057577001, 54.058509426568776 ], [ 52.396523065087365, 54.127962551030862 ], [ 52.271156040318999, 54.118402412341425 ], [ 52.348567335713938, 54.217414456511904 ], [ 52.203666619718717, 54.298649806843059 ], [ 52.505663689627568, 54.322472642798175 ], [ 52.538529901233915, 54.377249661542635 ], [ 52.925379672633767, 54.310509548876553 ], [ 52.888999465353038, 54.282733465876731 ], [ 52.936025017840279, 54.268470771309012 ], [ 53.013022902085254, 54.274258531006353 ], [ 53.003721144015572, 54.313119207885109 ], [ 53.059118280384325, 54.334306546409948 ], [ 53.107487420008397, 54.247025051265098 ], [ 52.938402133751424, 54.213797106251434 ], [ 53.087850375994037, 54.114888413969084 ], [ 53.067179803205306, 54.073495592447614 ], [ 53.25848595586217, 54.071351020533143 ], [ 53.371657341812863, 53.969160874774502 ], [ 53.470462681307652, 54.045745347869456 ], [ 53.65990848199084, 53.746280423502697 ], [ 53.877983026395498, 53.658017076426916 ], [ 54.093783806777253, 53.424439602205837 ], [ 54.519597608742629, 53.359792385510161 ], [ 54.56817345574035, 53.327882189211664 ], [ 54.563625930392334, 53.263829250819242 ], [ 54.639590284963674, 53.237422594277291 ], [ 54.822318149962598, 53.273027656101419 ], [ 54.926601189892949, 53.219542548549725 ], [ 54.962464634135529, 53.09725027078332 ], [ 55.161832309613374, 52.823184313505237 ], [ 55.263944940106853, 52.862458401533956 ], [ 55.406675245765939, 52.837111111288721 ], [ 55.421868117219788, 52.786907457213374 ], [ 55.353758578995212, 52.765358385281218 ], [ 55.420214470821122, 52.712855130559774 ], [ 55.351794875133351, 52.68815379546129 ], [ 55.285235629620558, 52.73264720330576 ], [ 55.24906212791484, 52.647794500915438 ], [ 55.411636183163296, 52.657613022922646 ], [ 55.455147739076892, 52.59043366248352 ], [ 55.544961378864514, 52.593844306269716 ], [ 55.543411086152673, 52.536586818826606 ], [ 55.495041944729962, 52.525321356895063 ], [ 55.535762973582337, 52.388688870195153 ], [ 55.71022260928595, 52.390910956475409 ], [ 55.768720331078384, 52.344014594298073 ], [ 55.861324497027908, 52.373495998741305 ], [ 55.930570916814304, 52.51503774689445 ], [ 56.077642043145772, 52.603611152332803 ], [ 56.054284295184061, 52.644745592335198 ], [ 56.270601841301925, 52.554208482135721 ], [ 56.427904900790509, 52.595136217462425 ], [ 56.359588656990923, 52.502118639463617 ], [ 56.443407830606873, 52.425715034421273 ], [ 56.451366000640405, 52.308822944523229 ], [ 56.190916781883971, 52.172681383339125 ], [ 56.238769159369156, 52.121573390799313 ], [ 56.324552035947647, 52.122761949204573 ], [ 56.45643029172453, 52.196865952701557 ], [ 56.419843377969471, 52.161312567720813 ], [ 56.621691522146023, 52.123795477978888 ], [ 56.587895134552809, 52.060595201207548 ], [ 56.682876418212118, 52.051810207974711 ], [ 56.65073367701757, 51.960342922687687 ], [ 56.737136672119675, 51.905178331214984 ], [ 56.619521111809831, 51.888461005471015 ], [ 56.607945590616509, 51.822005112745728 ], [ 56.753776482598539, 51.768830064455869 ], [ 56.714605747357325, 51.720977687869947 ], [ 56.780131463196426, 51.592200019315385 ], [ 56.889685499785969, 51.624756170760634 ], [ 56.884311151238592, 51.69059194586157 ], [ 56.799355096060822, 51.75208690029018 ], [ 56.99551883332748, 51.73089956356398 ], [ 57.020220168426022, 51.66537384682556 ], [ 57.197677035866491, 51.572097887307621 ], [ 57.392807245258155, 51.648113918722345 ], [ 57.422366164067171, 51.725060126123878 ], [ 57.633309360738394, 51.764747626201938 ], [ 57.677957798213811, 51.868462226250699 ], [ 58.091679315048339, 51.794564928328725 ], [ 58.159788853272914, 51.739219468803412 ], [ 58.544778272699091, 51.771233018788735 ], [ 58.64037967308343, 52.021579494697903 ], [ 58.694226515841024, 52.048761298495094 ], [ 58.606066521552691, 52.180536201484472 ], [ 58.690505811893672, 52.265285550187969 ], [ 58.93968956871862, 52.293397529072706 ], [ 58.813495720750893, 52.362643947959782 ], [ 58.867342564407807, 52.452457586848141 ], [ 58.976483188948009, 52.43028839819101 ], [ 58.978756952071649, 52.372204088447916 ], [ 59.175024042125813, 52.277377835318816 ], [ 59.272795851047647, 52.494134630109045 ], [ 59.684967075170334, 52.428014635067314 ], [ 59.809610630426221, 52.496847642804426 ], [ 59.936631300693932, 52.429564927779154 ], [ 60.136825799371138, 52.429254869416638 ], [ 60.14953820212628, 52.277558702472106 ], [ 59.962882927604994, 52.175626939131917 ], [ 59.913686964781562, 52.100437730916497 ], [ 60.029775856670426, 51.992610475393121 ] ], [ [ 52.273016392292618, 53.341886502260252 ], [ 52.300508253553005, 53.380152899936377 ], [ 52.250485466630948, 53.394932359340885 ], [ 52.229091424329738, 53.354883124056926 ], [ 52.273016392292618, 53.341886502260252 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-SAR", "NAME_1": "Saratov" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.76700931792567, 51.759399922768182 ], [ 50.790677124000126, 51.59729095500002 ], [ 50.67089115400006, 51.567525330000123 ], [ 50.694197225000039, 51.611166077000078 ], [ 50.581697632000044, 51.63529897100004 ], [ 50.525370321000139, 51.565587464000018 ], [ 50.527230672000144, 51.47008941700004 ], [ 50.359592326000097, 51.413322856000022 ], [ 50.325382528000034, 51.303458761000073 ], [ 49.986850220000122, 51.22981984500008 ], [ 49.779059286000063, 51.102179057000072 ], [ 49.436547892000078, 51.112333476000046 ], [ 49.347354370000062, 50.964280497000018 ], [ 49.423732137000115, 50.882063293000087 ], [ 49.369420207000076, 50.82676951200007 ], [ 49.144059285000139, 50.781707662000102 ], [ 48.830435018000117, 50.596034241000055 ], [ 48.568280477000087, 50.63654856400008 ], [ 48.67339034000014, 50.579549460000081 ], [ 48.782841024000106, 50.111464335 ], [ 48.865523315000075, 50.086194560000038 ], [ 48.88567712400004, 50.019893697000029 ], [ 48.784598022000068, 49.933387350000018 ], [ 48.429890991000093, 49.809673971 ], [ 48.23930830900008, 49.864761048000062 ], [ 47.99322513900006, 50.181795960000031 ], [ 47.624668823000093, 50.440798238000085 ], [ 47.556921021000107, 50.452580465 ], [ 47.434460435000062, 50.376528084000043 ], [ 47.239525180742476, 50.378527330072188 ], [ 47.202111443788056, 50.508028469038607 ], [ 46.93835493313361, 50.488856513017652 ], [ 46.803686151194881, 50.5865249700513 ], [ 46.831591423605289, 50.640061754446378 ], [ 46.716249627318405, 50.689722805263216 ], [ 46.575586379208005, 50.698714504970383 ], [ 46.561013625378507, 50.632103583513526 ], [ 46.472233514365143, 50.608797512395256 ], [ 46.469753044767174, 50.548181057110071 ], [ 46.320718214573901, 50.571693833803351 ], [ 46.093755324148844, 50.526063544397005 ], [ 46.064919874852308, 50.663161119090375 ], [ 45.810671827842555, 50.773593654823287 ], [ 45.678173456240017, 50.729461982184716 ], [ 45.667631462921634, 50.593604640941408 ], [ 45.520353631015212, 50.556190903986987 ], [ 45.495135531979201, 50.612569892286672 ], [ 45.22817508311357, 50.58843699796904 ], [ 45.254736769286467, 50.678560696119177 ], [ 45.16998741968365, 50.715199285818358 ], [ 45.2707564630403, 50.752018745368787 ], [ 45.308066848106535, 50.876843166878643 ], [ 45.211328566160375, 50.946296292240049 ], [ 45.201820103415002, 51.039623927702053 ], [ 45.042449986377733, 51.126259466800946 ], [ 44.643611280835898, 51.173930976233521 ], [ 44.576948683434978, 51.134553535417297 ], [ 44.44631066290674, 51.211551418762951 ], [ 44.210252719987011, 51.193516344303816 ], [ 44.161676873888609, 51.092643948159662 ], [ 44.008094517448001, 51.08298045488408 ], [ 43.989594354096141, 51.173724269759191 ], [ 43.864434034902786, 51.113030300108221 ], [ 43.682326288427419, 51.112952785742436 ], [ 43.652767367819763, 51.0671674667052 ], [ 43.329789666759666, 51.017661445519252 ], [ 42.872866652374057, 51.2313434924082 ], [ 42.905422804718626, 51.24906850940414 ], [ 42.844547967015046, 51.316661281892607 ], [ 42.860877720030714, 51.381411852275164 ], [ 42.529631788775987, 51.575482693571416 ], [ 42.47960900185393, 51.676535955969541 ], [ 42.651278111395698, 51.81278086994115 ], [ 42.703057895705285, 51.981840317776403 ], [ 42.805997349398126, 52.012226061583476 ], [ 42.751323683441228, 52.077751777422577 ], [ 42.751530389016239, 52.173766588057561 ], [ 42.921752556835031, 52.305438137360113 ], [ 42.919892205760675, 52.369723618849889 ], [ 43.002574496915486, 52.365796210226904 ], [ 43.175277134332248, 52.462121080123723 ], [ 43.352734001772717, 52.39251292603069 ], [ 43.771623163378251, 52.431580309383719 ], [ 44.34667850111191, 52.316135159410067 ], [ 44.421919387070034, 52.415818997148961 ], [ 44.537261183356918, 52.426360989567968 ], [ 44.500260857552519, 52.521213080219468 ], [ 44.548113234138441, 52.552399807005486 ], [ 44.848766716910461, 52.449796250996144 ], [ 45.045240513438898, 52.320889391232413 ], [ 45.139911736937108, 52.420521552127923 ], [ 45.431470168113719, 52.400496935385206 ], [ 45.644377068646804, 52.518551744367471 ], [ 45.732227003673245, 52.522763372931308 ], [ 45.725819126351553, 52.461604316186197 ], [ 45.980583937298832, 52.40716319422603 ], [ 46.01272667759406, 52.461500963398692 ], [ 45.974899530388996, 52.492196763769584 ], [ 46.131892530615744, 52.546973782514044 ], [ 46.150496046755109, 52.597978421367031 ], [ 46.276276482673495, 52.618597317312322 ], [ 46.300254348259557, 52.675699775124485 ], [ 46.582097609317202, 52.730812689753805 ], [ 46.614653761661771, 52.666036281848903 ], [ 46.713045689107219, 52.627899075382004 ], [ 46.942489048230982, 52.635237127791186 ], [ 47.061861606827676, 52.570176499945489 ], [ 47.154465772777144, 52.606789252122269 ], [ 47.206969029297227, 52.567075914521808 ], [ 47.435378858747299, 52.569763088795469 ], [ 47.572838168646513, 52.616168525457056 ], [ 47.707817009847076, 52.581235257201342 ], [ 47.843415968671991, 52.723138740560387 ], [ 47.927441847862951, 52.668465073704169 ], [ 48.019632602662455, 52.679678859691592 ], [ 48.08505496571405, 52.720399889443343 ], [ 47.997825148311904, 52.754351304868806 ], [ 48.252176548109162, 52.810110175544139 ], [ 48.436971469757509, 52.780447903048241 ], [ 48.355839471314539, 52.664175929875228 ], [ 48.691012811192252, 52.644771429857599 ], [ 48.737418246954519, 52.559066066745572 ], [ 48.830332473065141, 52.545991930583114 ], [ 48.890690545032612, 52.411038926904951 ], [ 48.961900668680869, 52.486719062434759 ], [ 49.28704878097642, 52.493540350906414 ], [ 49.352987908864861, 52.459278876219116 ], [ 49.319604933320988, 52.39036835411622 ], [ 49.413035923369137, 52.405173651942448 ], [ 49.499335564784474, 52.327917385279079 ], [ 49.520832960772509, 52.393959865955026 ], [ 49.58367150233795, 52.397577216215552 ], [ 49.649817335801401, 52.266887518843873 ], [ 49.70449100085898, 52.290451972380595 ], [ 49.812288039161672, 52.193093573709405 ], [ 50.006384718879644, 52.202421170200807 ], [ 50.221462029748864, 52.129893296938064 ], [ 50.167511835103085, 52.023594876302468 ], [ 50.331326124700865, 52.057804674146382 ], [ 50.388583612143975, 51.999306953253267 ], [ 50.661848586443057, 51.95424510372851 ], [ 50.728097771794694, 51.922619127370808 ], [ 50.717865837738202, 51.816269028992451 ], [ 50.76700931792567, 51.759399922768182 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-AST", "NAME_1": "Astrakhan'" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.620191910000074, 48.669596618000085 ], [ 46.478278849000048, 48.410560405000055 ], [ 47.09891280100004, 48.265375468000016 ], [ 47.103563680000036, 48.101199443 ], [ 47.192033732000141, 48.071795553000115 ], [ 47.044239136000101, 47.986219381000055 ], [ 47.158650757000089, 47.871549378000012 ], [ 47.140564006000091, 47.792665304000067 ], [ 47.359672078000074, 47.683343811000057 ], [ 47.412175334000096, 47.835866801000108 ], [ 47.649731893000137, 47.765586854 ], [ 48.044488159000082, 47.769695129000027 ], [ 48.17435103400004, 47.712851054000069 ], [ 48.411080770000069, 47.445761414000017 ], [ 48.525078980000046, 47.41023386600007 ], [ 48.697264852000046, 47.100976258000046 ], [ 49.006289917000117, 46.769110210000051 ], [ 48.916889689000129, 46.702576803000071 ], [ 48.764030802000093, 46.682836406000021 ], [ 48.676594279000142, 46.758025615000051 ], [ 48.556704956000033, 46.76174631800005 ], [ 48.455109090000064, 46.660796407000035 ], [ 48.530039917000124, 46.638187968000082 ], [ 48.539393351000058, 46.567959697 ], [ 48.91797489400011, 46.474322002000079 ], [ 49.29851321700005, 46.251776434000078 ], [ 49.159678582000083, 46.291937567000048 ], [ 49.150157097000033, 46.335760809000078 ], [ 49.058929884000065, 46.251776434000078 ], [ 49.104746941000087, 46.240668036000045 ], [ 49.114512566000087, 46.151271877000056 ], [ 49.042246941000087, 46.196234442000048 ], [ 48.934825066000087, 46.141913153000075 ], [ 48.931813998000052, 46.085272528000075 ], [ 48.899261915000068, 46.148382880000042 ], [ 48.886973504000082, 46.107814846000053 ], [ 48.83920332100007, 46.149359442000048 ], [ 48.874196811000047, 46.078192450000074 ], [ 48.791351759000065, 46.128241278000075 ], [ 48.817881707000083, 46.056219794000071 ], [ 48.714121941000087, 46.129584052000041 ], [ 48.626963738000086, 46.087307033000059 ], [ 48.729014519000089, 46.019964911000045 ], [ 48.654795769000089, 45.956935940000051 ], [ 48.752207879000082, 45.965562242000033 ], [ 48.791351759000065, 45.840887762000079 ], [ 48.716319207000083, 45.813544012000079 ], [ 48.710134311000047, 45.881822007000039 ], [ 48.573415561000047, 45.971136786000045 ], [ 48.356944207000083, 45.869370835000041 ], [ 48.399424675000034, 45.83539459800005 ], [ 48.28874759200005, 45.83734772300005 ], [ 48.220876498000052, 45.765204169000071 ], [ 48.242849155000044, 45.709906317000048 ], [ 48.078868035000085, 45.751532294000071 ], [ 48.00749759200005, 45.700506903000075 ], [ 47.859141472000033, 45.724188544000071 ], [ 47.818207227000073, 45.608099677000041 ], [ 47.751719597000033, 45.69086334800005 ], [ 47.560069207000083, 45.771551825000074 ], [ 47.626149936000047, 45.709051825000074 ], [ 47.65365644600007, 45.559068101000037 ], [ 47.54070071700005, 45.665838934000078 ], [ 47.432627800000034, 45.694484768000052 ], [ 47.503428582000083, 45.717352606000077 ], [ 47.396739129000082, 45.752875067000048 ], [ 47.427744988000086, 45.67641836100006 ], [ 47.551280144000089, 45.627997137000079 ], [ 47.56771894600007, 45.553615627000056 ], [ 47.364582147148326, 45.685428779114829 ], [ 46.888952263835904, 45.578277695958889 ], [ 47.040157505264631, 45.965721747460634 ], [ 47.173792759328364, 46.10483470285925 ], [ 46.840169712162435, 46.075534166468572 ], [ 46.869625279083323, 46.239296780122288 ], [ 46.49300743994138, 46.285702215884555 ], [ 46.663643018910193, 46.429000963223871 ], [ 46.954064569424304, 46.434065253408676 ], [ 46.938664992395445, 46.571266180889495 ], [ 47.213480259406424, 46.742315171907649 ], [ 47.125940382742442, 46.850680650091931 ], [ 47.000263298712241, 46.855434881914221 ], [ 46.924815708078427, 46.973980618210931 ], [ 46.800895624133716, 47.003642889807509 ], [ 46.515641716591915, 47.392611396498751 ], [ 46.805856560631753, 47.578181464502961 ], [ 46.665400018096307, 47.624121813171143 ], [ 46.346246371972484, 47.433280748507684 ], [ 46.116286248911251, 47.502423813707992 ], [ 45.734087354747601, 47.843488267869247 ], [ 45.722098423303578, 48.029135851138619 ], [ 45.546915318087429, 47.997070624309856 ], [ 45.404908481940879, 48.091690171863888 ], [ 45.300625441111208, 48.097684638035616 ], [ 45.261351353082432, 48.162486884362181 ], [ 45.165026483185613, 48.184552721131126 ], [ 45.156034784377766, 48.235634874349955 ], [ 44.984158970160308, 48.273229479356985 ], [ 45.033768345033081, 48.388777981218823 ], [ 45.19386193158283, 48.484172675128832 ], [ 45.323156365873558, 48.430429186058063 ], [ 45.374936151082466, 48.464070543121068 ], [ 45.210191684598556, 48.536055813125245 ], [ 45.618332147310753, 48.59553538684861 ], [ 46.014897087930251, 48.866991686017457 ], [ 46.297980585135861, 48.839990750272875 ], [ 46.620191910000074, 48.669596618000085 ] ] ], [ [ [ 47.997080925000034, 45.467840887000079 ], [ 47.917735222000033, 45.570054429000038 ], [ 47.957041863000086, 45.650458075000074 ], [ 47.997080925000034, 45.520493882000039 ], [ 47.997080925000034, 45.467840887000079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-VGG", "NAME_1": "Volgograd" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.434460435000062, 50.376528084000043 ], [ 47.294766480000078, 50.275433655000043 ], [ 47.322310018000053, 50.237399801000024 ], [ 47.265104207000036, 50.186343486000041 ], [ 47.327632691000076, 50.10929392600012 ], [ 47.308719116000077, 50.044801738000089 ], [ 46.89990686100009, 49.820319316000095 ], [ 46.775108277000072, 49.332545472000064 ], [ 46.97923018400013, 49.244282125000083 ], [ 47.040001668000059, 49.150334371000056 ], [ 46.930034220000096, 49.004038391 ], [ 46.753817586000082, 48.914069723000054 ], [ 46.620191910000074, 48.669596618000085 ], [ 46.297980585135861, 48.839990750272875 ], [ 46.032467075295244, 48.868903713935197 ], [ 45.618332147310753, 48.59553538684861 ], [ 45.24708865671613, 48.556468004394844 ], [ 45.223420851291223, 48.508667303753043 ], [ 45.37173221197196, 48.459212958511216 ], [ 45.323156365873558, 48.430429186058063 ], [ 45.19386193158283, 48.484172675128832 ], [ 45.033768345033081, 48.388777981218823 ], [ 44.984158970160308, 48.273229479356985 ], [ 45.156034784377766, 48.235634874349955 ], [ 45.165026483185613, 48.184552721131126 ], [ 45.261351353082432, 48.162486884362181 ], [ 45.300625441111208, 48.097684638035616 ], [ 45.129163038943091, 48.11391103826378 ], [ 44.954600051351292, 48.208478908974428 ], [ 44.941474237446073, 48.144193427484652 ], [ 44.829749789621076, 48.071691393542949 ], [ 44.568990513401445, 48.056524360510821 ], [ 44.534780714658211, 48.205481676338252 ], [ 44.311125116131166, 48.258191637534026 ], [ 44.328074985871865, 48.063836575397602 ], [ 44.46522423740862, 48.038773505093161 ], [ 44.38905317636295, 47.868267117333573 ], [ 44.058840772983274, 47.900487371994586 ], [ 43.974298129854787, 47.766826280408509 ], [ 43.705167270653021, 47.683136298001727 ], [ 43.633647087742872, 47.570378323201055 ], [ 43.731522251250851, 47.476611437267991 ], [ 43.66713341697357, 47.445993150363563 ], [ 43.572152134213582, 47.486094062490963 ], [ 43.225713332404325, 47.450153102983279 ], [ 43.161737909277065, 47.487282619996904 ], [ 43.136519810241055, 47.574254054980656 ], [ 42.945110304796685, 47.516634833230967 ], [ 42.730963169015013, 47.851601467533669 ], [ 42.491907992559788, 48.013607082900535 ], [ 42.020618930818955, 48.037481593900395 ], [ 42.09896040220076, 48.160936590751021 ], [ 42.049454380115549, 48.259896958977436 ], [ 42.146502720424166, 48.287182115562132 ], [ 42.077876418262065, 48.411257229137789 ], [ 42.27652062422743, 48.497970283501729 ], [ 42.628643832946523, 48.548044745468587 ], [ 42.700887486268471, 48.618221341241906 ], [ 42.653138461570734, 48.710102036779574 ], [ 42.745122511694547, 48.804721585232926 ], [ 42.66037316299105, 48.90037466156133 ], [ 42.662750278902251, 48.967295641380701 ], [ 42.392585890026794, 49.053078517959193 ], [ 42.343803338353382, 49.152142238973113 ], [ 42.070641716841749, 49.151883857454038 ], [ 42.0342615086617, 49.261024481994241 ], [ 42.092345819304114, 49.288671372885517 ], [ 42.071985304877899, 49.501784979892875 ], [ 42.178748814406219, 49.686218167234586 ], [ 41.876131625973755, 49.900416978960379 ], [ 41.616715935991635, 49.962170314908064 ], [ 41.591394484168063, 50.051105455552317 ], [ 41.492382439997584, 50.083558255109381 ], [ 41.362054477831862, 50.226340236712531 ], [ 41.508608840225747, 50.392118231970812 ], [ 41.418898553225631, 50.502240709341265 ], [ 41.525765414642137, 50.598668932025589 ], [ 41.408769972855964, 50.619287827970879 ], [ 41.329911736637314, 50.716852932217023 ], [ 41.165787387777698, 50.777521064345592 ], [ 41.369805943189704, 50.830773627001236 ], [ 41.444323357836652, 50.917357490156007 ], [ 41.724409620607503, 51.018229885400842 ], [ 41.854944289247555, 51.18855540600714 ], [ 41.947548456096342, 51.20418752703273 ], [ 42.282825147862241, 51.132796536231126 ], [ 42.844134555865026, 51.236201077018052 ], [ 43.35976199671876, 51.014767563871942 ], [ 43.982359653575145, 51.173052477090096 ], [ 44.008094517448001, 51.08298045488408 ], [ 44.161676873888609, 51.092643948159662 ], [ 44.210252719987011, 51.193516344303816 ], [ 44.44631066290674, 51.211551418762951 ], [ 44.576948683434978, 51.134553535417297 ], [ 44.631415642917545, 51.173465888240116 ], [ 44.872434523234631, 51.153312079388911 ], [ 45.18828087656118, 51.05135447942564 ], [ 45.211328566160375, 50.946296292240049 ], [ 45.312717726242056, 50.847542630487965 ], [ 45.261661411444948, 50.743569648020809 ], [ 45.16998741968365, 50.715199285818358 ], [ 45.254736769286467, 50.678560696119177 ], [ 45.22817508311357, 50.58843699796904 ], [ 45.495135531979201, 50.612569892286672 ], [ 45.520353631015212, 50.556190903986987 ], [ 45.667631462921634, 50.593604640941408 ], [ 45.678173456240017, 50.729461982184716 ], [ 45.810671827842555, 50.773593654823287 ], [ 46.064919874852308, 50.663161119090375 ], [ 46.093755324148844, 50.526063544397005 ], [ 46.320718214573901, 50.571693833803351 ], [ 46.469753044767174, 50.548181057110071 ], [ 46.472233514365143, 50.608797512395256 ], [ 46.561013625378507, 50.632103583513526 ], [ 46.575586379208005, 50.698714504970383 ], [ 46.707567986873073, 50.690885525246756 ], [ 46.831591423605289, 50.640061754446378 ], [ 46.803686151194881, 50.5865249700513 ], [ 46.928846470388294, 50.492732244797253 ], [ 47.193739861705239, 50.510353909005687 ], [ 47.239525180742476, 50.378527330072188 ], [ 47.434460435000062, 50.376528084000043 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-43", "NAME_1": "Crimea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.628517493895586, 46.12493524180271 ], [ 33.670279785283867, 46.218105600592992 ], [ 33.801878173838645, 46.202705858988168 ], [ 34.10524310448568, 46.095361345149911 ], [ 34.333933591661889, 46.069692004982016 ], [ 34.464613869534446, 45.955346761843543 ], [ 34.68863720264477, 45.974015372711278 ], [ 34.784313834915508, 45.899340928341132 ], [ 34.80998317508346, 45.784995685202659 ], [ 35.001891221798623, 45.729002575039836 ], [ 35.332204623000052, 45.371242580000057 ], [ 35.480723504000082, 45.297796942000048 ], [ 35.715993686000047, 45.340562242000033 ], [ 35.833262566000087, 45.470892645000049 ], [ 35.854014519000089, 45.414007880000042 ], [ 35.98601321700005, 45.36273834800005 ], [ 36.117930535000085, 45.457098700000074 ], [ 36.284027540000068, 45.476629950000074 ], [ 36.298838738000086, 45.443019924000055 ], [ 36.583262566000087, 45.427394924000055 ], [ 36.63835696700005, 45.351263739000046 ], [ 36.502452019000089, 45.346869208000044 ], [ 36.43726647200009, 45.272040106000077 ], [ 36.408864780000044, 45.149481512000079 ], [ 36.440114780000044, 45.067450262000079 ], [ 36.224619988000086, 45.007513739000046 ], [ 36.047862175000034, 45.048773505000042 ], [ 35.993418816000087, 44.997992255000042 ], [ 35.847992384000065, 44.992417710000041 ], [ 35.70639082100007, 45.094671942000048 ], [ 35.506195509000065, 45.113511460000041 ], [ 35.408050977000073, 45.062486070000034 ], [ 35.435394727000073, 45.004828192000048 ], [ 35.374034050000034, 44.997992255000042 ], [ 35.367198113000086, 44.943345445000034 ], [ 35.256032748000052, 44.958685614000046 ], [ 35.080821160000085, 44.793768622000073 ], [ 34.98601321700005, 44.840277411000045 ], [ 34.720957879000082, 44.810980536000045 ], [ 34.469004754000082, 44.729803778000075 ], [ 34.331309441000087, 44.545477606000077 ], [ 34.102549675000034, 44.425116278000075 ], [ 33.937754754000082, 44.381048895000049 ], [ 33.729997684176972, 44.397974268572824 ], [ 33.852068870481958, 44.431631863719531 ], [ 33.805710906333218, 44.527306810660775 ], [ 33.72976275214927, 44.553937981152899 ], [ 33.750475885353808, 44.623968097149941 ], [ 33.709049619844052, 44.666380702207618 ], [ 33.625210748377299, 44.661449004467954 ], [ 33.611401992907645, 44.720629383639107 ], [ 33.689322826187436, 44.754164932765434 ], [ 33.580825463324459, 44.819263350123492 ], [ 33.619639519000089, 44.931463934000078 ], [ 33.537445509000065, 45.117377020000049 ], [ 33.396494988000086, 45.18976471600007 ], [ 33.259613477000073, 45.156073309000078 ], [ 32.899261915000068, 45.354234117000033 ], [ 32.59148196700005, 45.320135809000078 ], [ 32.512868686000047, 45.340562242000033 ], [ 32.481618686000047, 45.408880927000041 ], [ 32.643565300000034, 45.521673895000049 ], [ 32.82789147200009, 45.562404690000051 ], [ 32.868174675000034, 45.630072333000044 ], [ 33.176117384000065, 45.743109442000048 ], [ 33.169200066000087, 45.784409898000035 ], [ 33.26539147200009, 45.753810940000051 ], [ 33.48218834700009, 45.854478257000039 ], [ 33.691661004000082, 45.860744533000059 ], [ 33.693532748000052, 45.914496161000045 ], [ 33.77702884200005, 45.929632880000042 ], [ 33.619883660000085, 45.950751044000071 ], [ 33.628517493895586, 46.12493524180271 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-MAG", "NAME_1": "Maga Buryatdan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.22078779800006, 59.090294861000075 ], [ 153.006707780000056, 59.060565006000047 ], [ 152.899912957000083, 58.903631903000075 ], [ 152.556739526, 58.94998146100005 ], [ 152.363291863000086, 59.059719143000052 ], [ 152.020298305000097, 58.87503653300007 ], [ 151.353664542000047, 58.832562286000041 ], [ 151.236027989000036, 58.998267490000046 ], [ 151.088049855, 59.10202038500006 ], [ 151.216527622000058, 59.091682053000056 ], [ 151.437731344000099, 59.170316693000075 ], [ 151.924342012000011, 59.13777929400004 ], [ 152.322238140000081, 59.20740928400005 ], [ 152.136729363000086, 59.296210028000075 ], [ 151.979014519000089, 59.26508209800005 ], [ 151.734297835, 59.307264023000073 ], [ 151.770277723000049, 59.349664226000073 ], [ 151.665508991000024, 59.45943976500007 ], [ 151.39605662200006, 59.604162942000073 ], [ 151.322099810000054, 59.55588838500006 ], [ 150.906742501000053, 59.559351568000068 ], [ 150.94183317, 59.461225048000074 ], [ 150.779911935000086, 59.43226300200007 ], [ 150.740120393000097, 59.439772518000041 ], [ 150.765621805000023, 59.484321381000086 ], [ 150.503740514000015, 59.488665913000034 ], [ 150.77434801000004, 59.561914982000076 ], [ 150.601303057, 59.540960483000049 ], [ 150.306000196000014, 59.646185614000046 ], [ 149.375254754000025, 59.772202867000033 ], [ 149.326833530000044, 59.758612372000073 ], [ 149.378593037000087, 59.724654262000058 ], [ 149.04070071700005, 59.64288971600007 ], [ 149.1040187750001, 59.592341170000054 ], [ 149.081065300000091, 59.559963283000059 ], [ 149.201345248000052, 59.524888414000031 ], [ 149.212087436000047, 59.469142971000053 ], [ 148.89226321700005, 59.466782945000034 ], [ 148.840179884, 59.501288153000075 ], [ 148.88795006600003, 59.546291408000059 ], [ 148.845957879000025, 59.552720445000034 ], [ 148.743428864000066, 59.47157799200005 ], [ 148.735705207000024, 59.368390868000063 ], [ 148.865407748000052, 59.404852606000077 ], [ 148.861338738000086, 59.353908596000053 ], [ 148.915863477000016, 59.395453192000048 ], [ 148.989905678000014, 59.375376721000066 ], [ 148.933744226000044, 59.317273315000079 ], [ 148.964190142, 59.273270079000042 ], [ 148.934522469000058, 59.233272922000083 ], [ 148.841563347000033, 59.276556708000044 ], [ 148.787937207000027, 59.236484372000064 ], [ 148.437465897000038, 59.262317397000061 ], [ 148.393728061000047, 59.379299221000053 ], [ 148.219436473000087, 59.408869890000062 ], [ 147.845462541000074, 59.376615327000081 ], [ 147.78874759200005, 59.343939520000049 ], [ 147.846569197, 59.296919360000061 ], [ 147.82550079300006, 59.269604611000034 ], [ 147.59107506600003, 59.30414459800005 ], [ 147.545999066000036, 59.23754682200007 ], [ 147.271494988000086, 59.332098700000074 ], [ 146.886566602000016, 59.364732164000031 ], [ 147.101853468762556, 59.423866686098677 ], [ 147.158800896943831, 59.641217760091536 ], [ 147.087074009357934, 59.691085517382703 ], [ 147.148052198949813, 59.752477119023808 ], [ 147.103093703111881, 59.806634020143861 ], [ 147.117459752265745, 59.880169582859935 ], [ 146.99788048719472, 59.947969061822732 ], [ 146.776085239741974, 59.906421209770997 ], [ 146.645137159951901, 59.989568589818532 ], [ 146.676039666797124, 60.102042345577729 ], [ 146.453934360981862, 60.131782132439412 ], [ 146.4601355327286, 60.187230942953647 ], [ 146.374249301563964, 60.271205146200487 ], [ 145.792992792083623, 60.198160509000274 ], [ 145.594038527755743, 60.306965236756241 ], [ 145.568303663882944, 60.344947415390891 ], [ 145.636723261369411, 60.382464505132759 ], [ 145.530269810203549, 60.414917303790503 ], [ 145.510012648564839, 60.463699856363235 ], [ 145.620186801879299, 60.557337551986393 ], [ 145.874848260938393, 60.614388332955173 ], [ 146.059849888161807, 60.737274889024889 ], [ 146.320092401343231, 60.65867503522469 ], [ 146.443082310200452, 60.689680894857361 ], [ 146.502716912655387, 60.841609605798624 ], [ 146.486077102176523, 60.932921861454702 ], [ 146.687201775941162, 60.951266995175672 ], [ 146.731333448579676, 61.003511868377984 ], [ 146.665601028064884, 61.066092027525031 ], [ 146.747249791344757, 61.114874580097762 ], [ 146.749936964719041, 61.216418768911012 ], [ 146.682034132968852, 61.303803615944105 ], [ 146.764199660186136, 61.40813833271784 ], [ 146.61475141794358, 61.434079902165706 ], [ 146.583435499948337, 61.635514635192237 ], [ 146.364740838818648, 61.770958564386206 ], [ 146.355439080748965, 61.826510729486529 ], [ 145.958770787341905, 62.005259508119764 ], [ 145.791545852159288, 62.011305650235556 ], [ 145.721575962860356, 62.060191554696473 ], [ 145.484174432803798, 61.956270249972022 ], [ 145.16760460816613, 61.965416979310135 ], [ 144.945189243988352, 62.063343817862858 ], [ 144.745098098098651, 62.046884874537284 ], [ 144.72174035103626, 62.095899970207427 ], [ 144.990974563025588, 62.17114085616555 ], [ 144.979709101094045, 62.244211330888163 ], [ 145.173805779912755, 62.276405748026832 ], [ 145.126160109801162, 62.308703517952949 ], [ 145.17907677567257, 62.337073880155401 ], [ 145.176492955085791, 62.441822008079157 ], [ 145.124299757827544, 62.48990692776249 ], [ 145.482314080830065, 62.55271963180553 ], [ 145.388883090781974, 62.612405911103906 ], [ 145.428570590859977, 62.650853176832641 ], [ 145.326147902903358, 62.754412747250456 ], [ 145.366042107657108, 62.910320542758825 ], [ 145.270957473008934, 63.023181871246322 ], [ 145.299792922305414, 63.103900458539329 ], [ 145.251733840144539, 63.190303452742114 ], [ 145.451411573984842, 63.527905585374413 ], [ 145.640547317204891, 63.667121894459854 ], [ 145.62173709459114, 63.780034898891415 ], [ 145.556211378752096, 63.828223172261573 ], [ 146.108735792622724, 63.941575426264876 ], [ 146.316061639932627, 64.073608709874009 ], [ 146.390475701792184, 64.206649684735112 ], [ 146.996433547270385, 64.146989243858513 ], [ 147.266597935246409, 64.052576401879435 ], [ 147.338428175619697, 64.08192861601276 ], [ 147.298120558816663, 64.129470934236224 ], [ 147.623165318324709, 64.168331611114922 ], [ 147.663059523977836, 64.1158800323376 ], [ 147.610452915569567, 64.037331855380785 ], [ 147.766722447183156, 64.014077460206579 ], [ 147.795867954842151, 63.947311510018153 ], [ 147.875553013360786, 63.97614695931469 ], [ 147.938391554926284, 63.943590806970121 ], [ 148.120809360663429, 64.05557363631425 ], [ 148.128560826021271, 64.118722236242206 ], [ 148.258888788186937, 64.2395934107073 ], [ 148.000713331654879, 64.362712510773747 ], [ 148.055800408761797, 64.394906927912359 ], [ 148.022624139692198, 64.431002916151613 ], [ 148.16132368394085, 64.45777130789952 ], [ 148.302503696888039, 64.554406236158854 ], [ 148.612562291416566, 64.42092601172601 ], [ 149.097597283787536, 64.44097646778971 ], [ 149.219140252720422, 64.408420315445198 ], [ 149.816416456853972, 64.567273668544942 ], [ 150.086064080892584, 64.489293932369037 ], [ 150.025602655238345, 64.359017646147436 ], [ 150.193034295995858, 64.223909613737646 ], [ 150.608719516692304, 64.166212876722852 ], [ 150.654194778266401, 64.334367987892279 ], [ 151.175093214879894, 64.375760810313125 ], [ 151.31461958232785, 64.360154526809936 ], [ 151.391720819360216, 64.295636502222749 ], [ 151.479984166436111, 64.435550442398949 ], [ 152.037056105654642, 64.505081082126196 ], [ 152.134207797851559, 64.445575669981167 ], [ 152.106095818966764, 64.362531642721081 ], [ 152.379877558102748, 64.393511663932088 ], [ 152.413777296684884, 64.406766669046533 ], [ 152.335125766940564, 64.516269028792635 ], [ 152.748227167050118, 64.685922756729781 ], [ 152.674846633065613, 64.780490628339805 ], [ 152.549893020346531, 64.81759430603239 ], [ 152.563845656551734, 64.864361477000557 ], [ 152.499663527849521, 64.938258774922474 ], [ 152.654382765851892, 65.034273587356154 ], [ 152.609010857964677, 65.152147529185072 ], [ 152.688179153445162, 65.233434557258988 ], [ 153.115853305585574, 65.270331529376563 ], [ 153.461568637882237, 65.363039049012855 ], [ 153.523890416409586, 65.41926300678233 ], [ 153.399350213941148, 65.497087714226609 ], [ 153.506837192982061, 65.616615302454193 ], [ 153.531331821606273, 65.705550442199126 ], [ 153.454437291048066, 65.771437893244126 ], [ 153.494641555063708, 65.835180773274033 ], [ 153.912910598145572, 65.886934719161957 ], [ 154.048612908858559, 65.864765530504826 ], [ 154.083132765964365, 65.797198595538703 ], [ 154.249634230735069, 65.829987290980682 ], [ 154.381719192086962, 65.944243883448451 ], [ 154.354434034602946, 66.037778225384784 ], [ 154.216147903303067, 66.064546617132635 ], [ 154.385749952598189, 66.200714015839139 ], [ 154.528170200794079, 66.237559312911912 ], [ 154.872541945954026, 66.134774888850018 ], [ 155.169991489615541, 66.209033921977891 ], [ 155.304660271554212, 66.143740750135464 ], [ 155.773468866394978, 66.177459622463573 ], [ 155.958263788043269, 66.096327623121283 ], [ 156.33591515506032, 66.062789618845784 ], [ 156.630780878134942, 66.202936103018715 ], [ 156.973085564846883, 66.032507228725592 ], [ 156.926576776297111, 65.96540538175293 ], [ 157.124394159063172, 65.915150051733463 ], [ 157.390321080053695, 65.929619452775512 ], [ 157.373474563100558, 65.996075343702103 ], [ 157.717639601786118, 66.112037259411977 ], [ 158.12412641809965, 66.155807196844648 ], [ 158.476973098129861, 66.114621079998813 ], [ 158.396047805261901, 66.260555324768404 ], [ 158.528959588913835, 66.359386501785593 ], [ 158.618566522227184, 66.356105048309303 ], [ 159.202406854092942, 66.202057603875289 ], [ 158.92872846864384, 65.895823066081618 ], [ 158.938650344337816, 65.813709214808398 ], [ 158.890384555702667, 65.78502879514275 ], [ 158.921700473697797, 65.74301585599693 ], [ 160.027369419962724, 65.514864407166613 ], [ 160.169996372834248, 65.450527248833453 ], [ 160.209063756187334, 65.347820340036606 ], [ 160.519535760966505, 65.165531725508686 ], [ 161.348012323409989, 65.12264028632012 ], [ 161.68990359897191, 64.994172675228754 ], [ 161.784471469682558, 64.838084010768455 ], [ 161.867257115423513, 64.812710883000818 ], [ 162.554036900082792, 64.746720079168313 ], [ 162.735731236307402, 64.661221422530616 ], [ 162.996903924576372, 64.648664049406307 ], [ 163.109248489126458, 64.684889227955466 ], [ 163.155137160051822, 64.767726548741223 ], [ 163.259006788832153, 64.717807115505934 ], [ 163.158754511211669, 64.631404121303149 ], [ 163.169916620355707, 64.552261664244384 ], [ 163.460338169970555, 64.390953680867653 ], [ 163.255906203408472, 64.320673733206206 ], [ 163.158857863999174, 64.185152288747076 ], [ 162.942230258619475, 64.199621690688446 ], [ 162.78720096315385, 64.143216864866417 ], [ 162.829162226355606, 64.023947659057171 ], [ 162.894791294982269, 64.017539780836159 ], [ 162.929104445613575, 63.945451158044477 ], [ 162.868229607910052, 63.907830716414423 ], [ 162.893654413420336, 63.879124457427736 ], [ 162.814692825313614, 63.881604926126386 ], [ 162.721571893627925, 63.79765656220053 ], [ 162.86812625602181, 63.657251694709885 ], [ 162.977060174987059, 63.626271674398197 ], [ 162.964864537068706, 63.498837592081202 ], [ 162.673926222617069, 63.380524399781223 ], [ 162.805597771919565, 63.246165677104273 ], [ 162.755781692371102, 63.184308987469763 ], [ 162.596721632797085, 63.178779609291496 ], [ 162.591140577775377, 63.131340643855594 ], [ 162.379887322741638, 63.118938300362231 ], [ 162.294104446163146, 63.067261867940829 ], [ 162.322216425047941, 63.032121894110105 ], [ 162.277361281997514, 62.916883449711406 ], [ 162.547525669973652, 62.844743150076283 ], [ 162.68043745272621, 62.706973781814554 ], [ 162.818620233037223, 62.70826569300732 ], [ 162.694596796305063, 62.583518784963928 ], [ 162.770664503663852, 62.496909085186076 ], [ 162.728599887674591, 62.290306708287915 ], [ 162.1629496598988, 62.186437080406904 ], [ 162.274570754036972, 62.125407213072378 ], [ 162.531816033682958, 62.092334295891021 ], [ 162.506081170709422, 61.972083238150901 ], [ 162.311157667792031, 61.934204413203076 ], [ 162.46380984914515, 61.827492581417459 ], [ 162.423708937917127, 61.767108670129005 ], [ 162.477555779775344, 61.75116648984158 ], [ 162.510458947200391, 61.658359879198308 ], [ 162.41724694100003, 61.675848700000074 ], [ 162.292002800000091, 61.617621161000045 ], [ 162.327822796000078, 61.590454855000075 ], [ 162.21648196700005, 61.557847398000035 ], [ 162.215449002000014, 61.512910869000052 ], [ 161.986390231000087, 61.372619497000073 ], [ 161.88835696700005, 61.430731512000079 ], [ 161.89023062800004, 61.335518685000068 ], [ 161.80729264199999, 61.372207072000037 ], [ 161.802100311, 61.317111769000064 ], [ 161.595627497, 61.255177569000068 ], [ 161.567145383000025, 61.18374418500008 ], [ 161.471195192000096, 61.195590917000061 ], [ 161.411906418000058, 61.151759864000041 ], [ 161.445836135000036, 61.120964406000041 ], [ 160.915149244000077, 60.89964503200008 ], [ 160.791623752000078, 60.717700269000034 ], [ 160.686757043000057, 60.760112314000082 ], [ 160.635878987000069, 60.715577026000062 ], [ 160.410319376000075, 60.706086075000087 ], [ 160.431016276000037, 60.749204122000037 ], [ 160.281822994000095, 60.609231253000075 ], [ 160.154392683000083, 60.576336133000041 ], [ 160.146998671, 60.662010639000073 ], [ 160.219626839000057, 60.665107945000045 ], [ 160.251410240000041, 60.734811683000032 ], [ 160.170095248000052, 60.824896552000041 ], [ 160.253712373000099, 60.824550286000033 ], [ 160.241489083000033, 60.874577070000043 ], [ 160.357525556000041, 60.910754953000037 ], [ 160.444214536, 61.036219521000078 ], [ 160.201973145000011, 61.038219966000042 ], [ 159.898666866000099, 60.91552652200005 ], [ 159.797539083000061, 60.931102543000065 ], [ 160.000140500000043, 61.106117512000083 ], [ 159.918198152000059, 61.213638016000061 ], [ 159.943292631000077, 61.243773889000067 ], [ 159.77561830500008, 61.242205661000071 ], [ 159.818522114000075, 61.289178250000077 ], [ 159.996382849000042, 61.284324292000065 ], [ 159.910166863000086, 61.31391022300005 ], [ 160.10685275700007, 61.429962523000086 ], [ 160.034989349000057, 61.459046152000042 ], [ 160.285139987000093, 61.55410723500006 ], [ 160.2598315460001, 61.625070386000061 ], [ 160.318794129000025, 61.666769938000073 ], [ 160.259055168000032, 61.690378211000052 ], [ 160.413958351000019, 61.764781215000085 ], [ 160.361977768000088, 61.81354353200004 ], [ 160.4002547, 61.83135352100004 ], [ 160.345713738000086, 61.944728908000059 ], [ 160.039012102000015, 61.846246223000037 ], [ 159.880743830000029, 61.705208025000047 ], [ 159.707728830000065, 61.720991725000033 ], [ 159.707987358000082, 61.685159103000046 ], [ 159.57721252500005, 61.652771070000085 ], [ 159.511656425000069, 61.700354187000073 ], [ 159.56558576899999, 61.816648017000034 ], [ 159.477568703000088, 61.763558853000063 ], [ 159.356068343000061, 61.816505857000038 ], [ 159.394018096000082, 61.87554579600004 ], [ 159.2122886840001, 61.911854848000075 ], [ 158.920746290000011, 61.903021552000041 ], [ 158.83716881600003, 61.821112372000073 ], [ 158.548491621000039, 61.830418518000045 ], [ 158.48498832100006, 61.789697647000082 ], [ 158.260226741, 61.825933858000042 ], [ 158.080163581000079, 61.733999544000085 ], [ 157.464508871000021, 61.782105424000065 ], [ 157.364643738000041, 61.685393521000037 ], [ 157.027598504000025, 61.650580145000049 ], [ 156.92383327499999, 61.551813184000082 ], [ 156.679462945000068, 61.524017068000035 ], [ 156.623793706000015, 61.370591382000043 ], [ 156.654971258000046, 61.196760199000039 ], [ 156.546888384, 61.209225586000059 ], [ 156.373896755000032, 61.148768450000034 ], [ 155.943059713000025, 60.922629065000081 ], [ 155.972620981000091, 60.904677304000074 ], [ 155.916779070000075, 60.859377976000076 ], [ 155.913620654000056, 60.703583117000051 ], [ 155.829844597000033, 60.728989976000037 ], [ 155.492073190000042, 60.581981560000031 ], [ 155.479773033000015, 60.533923860000073 ], [ 155.300036225000099, 60.510618990000069 ], [ 154.820994986000073, 60.300232171000061 ], [ 154.535655144000089, 60.052801825000074 ], [ 154.487589875000026, 59.946306572000083 ], [ 154.49897538499999, 60.028848483000047 ], [ 154.563698362000082, 60.093704759000047 ], [ 154.407835273000046, 60.062927667000054 ], [ 154.473480665000011, 59.879339911000045 ], [ 154.220770298000048, 59.869620187000066 ], [ 154.228770379000025, 59.730373440000051 ], [ 154.368251316000055, 59.574686270000086 ], [ 154.2200736100001, 59.663976280000043 ], [ 154.196601032000103, 59.583166796000057 ], [ 154.075043165000011, 59.509182033000059 ], [ 154.138438347000033, 59.456976630000042 ], [ 154.297877204000088, 59.44255329300006 ], [ 154.402310525000075, 59.535015035000072 ], [ 154.379893425000091, 59.470038153000075 ], [ 154.426850373000093, 59.420881577000046 ], [ 154.536779300000035, 59.422840588000042 ], [ 154.436045769000089, 59.484198309000078 ], [ 154.428762257000017, 59.54703399300007 ], [ 154.554123928000081, 59.51339871600004 ], [ 154.644287070000019, 59.543434400000081 ], [ 154.877595837000058, 59.46080965200008 ], [ 154.962901238000086, 59.496079820000034 ], [ 155.209713214000089, 59.343879542000082 ], [ 155.215758099000027, 59.305493069000079 ], [ 155.157625126000084, 59.296358341000087 ], [ 155.197175659000095, 59.237229321000086 ], [ 155.14960807600005, 59.221568739000077 ], [ 155.194102410000028, 59.175767320000034 ], [ 154.81330107799999, 59.194172126000069 ], [ 154.790697922000049, 59.131347484000059 ], [ 154.438020693, 59.215520509000044 ], [ 154.332723095, 59.19175311500004 ], [ 154.357710274000056, 59.110587450000082 ], [ 154.048675977000016, 59.052801825000074 ], [ 153.691974772000094, 59.185061060000066 ], [ 153.768556553000053, 59.246583379000072 ], [ 153.648023949000049, 59.190771057000063 ], [ 153.369151238000086, 59.241278387000079 ], [ 153.348389975000032, 59.153625051000063 ], [ 153.283539259, 59.148993231000077 ], [ 153.350220267000054, 59.134019837000039 ], [ 153.337275275000025, 59.089886939000053 ], [ 153.22078779800006, 59.090294861000075 ] ] ], [ [ [ 150.725271030000044, 59.127997137000079 ], [ 150.782800263000013, 59.090863816000081 ], [ 150.61069988700001, 59.005719788000079 ], [ 150.472075559000018, 59.00415294700008 ], [ 150.725271030000044, 59.127997137000079 ] ] ], [ [ [ 155.50771059200008, 59.328127136000035 ], [ 155.566932497000039, 59.340423609000084 ], [ 155.600049352000042, 59.319428777000041 ], [ 155.509035809000011, 59.320147796000072 ], [ 155.50771059200008, 59.328127136000035 ] ] ], [ [ [ 149.032789258000093, 59.192177739000044 ], [ 149.040028655000015, 59.20292969500008 ], [ 149.14110770700006, 59.207690353000032 ], [ 149.103481109000086, 59.161529008000059 ], [ 149.032789258000093, 59.192177739000044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-SAK", "NAME_1": "Sakhalin" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.529063347000033, 54.29718659100007 ], [ 142.543223504000025, 54.237209377000056 ], [ 142.635101759, 54.266058661000045 ], [ 142.625498894000089, 54.327297268000052 ], [ 142.723155144000089, 54.425604559000078 ], [ 143.01295006600003, 54.119086005000042 ], [ 142.851817254000025, 53.871975002000056 ], [ 142.933767123000052, 53.857652085000041 ], [ 143.002126498000052, 53.70062897300005 ], [ 142.926768425000091, 53.829779364000046 ], [ 142.906504754000025, 53.766791083000044 ], [ 143.029307488000086, 53.646063544000071 ], [ 142.995860222000033, 53.625555731000077 ], [ 143.070811394000089, 53.598211981000077 ], [ 142.988454623000052, 53.562892971000053 ], [ 143.121104363000086, 53.518052476000037 ], [ 143.125498894000089, 53.467922268000052 ], [ 143.070811394000089, 53.461086330000057 ], [ 143.094086134, 53.381903387000079 ], [ 143.18287194100003, 53.398993231000077 ], [ 143.21062259200005, 53.363226630000042 ], [ 143.360524936000047, 52.87140534100007 ], [ 143.296885613000086, 52.453680731000077 ], [ 143.193695509, 52.336981512000079 ], [ 143.197764519000089, 52.425848700000074 ], [ 143.272308790000011, 52.463324286000045 ], [ 143.235362175000091, 52.480943101000037 ], [ 143.293467644000089, 52.591864325000074 ], [ 143.26140384200005, 52.597601630000042 ], [ 143.118662957000083, 52.337795315000051 ], [ 143.177500847000033, 52.313788153000075 ], [ 143.151377800000091, 52.120062567000048 ], [ 143.115570509, 52.153021552000041 ], [ 143.097666863000086, 52.104234117000033 ], [ 143.159353061000047, 51.995672919000071 ], [ 143.125498894000089, 51.967027085000041 ], [ 143.163096550000091, 51.873968817000048 ], [ 143.213063998000052, 51.854803778000075 ], [ 143.238454623000052, 51.891546942000048 ], [ 143.317881707000083, 51.706366278000075 ], [ 143.261078321000014, 51.678208726000037 ], [ 143.224131707000083, 51.522162177000041 ], [ 143.337901238000086, 51.508368231000077 ], [ 143.365082227000016, 51.644964911000045 ], [ 143.447764519000089, 51.508368231000077 ], [ 143.474945509, 51.343247789000088 ], [ 143.379405144000089, 51.350083726000037 ], [ 143.474945509, 51.289252020000049 ], [ 143.483083530000044, 51.213568427000041 ], [ 143.521250847000033, 51.246771552000041 ], [ 143.495453321000014, 51.309149481000077 ], [ 143.521657748000052, 51.285101630000042 ], [ 143.79029381600003, 50.30923086100006 ], [ 144.002696160000028, 50.012844143000052 ], [ 144.385020379000025, 49.072699286000045 ], [ 144.684743686000047, 48.873236395000049 ], [ 144.702891472000033, 48.688666083000044 ], [ 144.756602410000028, 48.643255927000041 ], [ 144.677256707000083, 48.656439520000049 ], [ 144.632578972000033, 48.808294989000046 ], [ 144.503672722000033, 48.948716539000088 ], [ 144.05787194100003, 49.253404039000088 ], [ 143.403493686000047, 49.400458075000074 ], [ 143.258636915000011, 49.393377997000073 ], [ 143.33130944100003, 49.31391022300005 ], [ 143.666758660000028, 49.314886786000045 ], [ 143.174164259, 49.245998440000051 ], [ 143.008799675000091, 49.123032945000034 ], [ 142.988454623000052, 48.916693427000041 ], [ 142.537445509, 48.01007721600007 ], [ 142.545258009, 47.766669012000079 ], [ 142.748057488000086, 47.44476959800005 ], [ 142.714040561000047, 47.437241929000038 ], [ 142.87859134200005, 47.389349677000041 ], [ 143.016368035000028, 47.253607489000046 ], [ 143.097666863000086, 46.875555731000077 ], [ 143.174082879000025, 46.86273834800005 ], [ 143.083832227000016, 46.813462632000039 ], [ 143.172862175000091, 46.707831122000073 ], [ 143.389659050000091, 46.708075262000079 ], [ 143.193695509, 46.779974677000041 ], [ 143.197113477000016, 46.840806382000039 ], [ 143.320974155000044, 46.795721747000073 ], [ 143.47820071700005, 46.82843659100007 ], [ 143.557627800000091, 46.396429755000042 ], [ 143.625743035000028, 46.374701239000046 ], [ 143.47584069100003, 46.190008856000077 ], [ 143.430511915000011, 46.025213934000078 ], [ 143.421397332000083, 46.223130601000037 ], [ 143.337901238000086, 46.409409898000035 ], [ 143.368662957000083, 46.555487372000073 ], [ 143.276377800000091, 46.560248114000046 ], [ 143.303233269000089, 46.514390367000033 ], [ 143.159515821000014, 46.59829336100006 ], [ 142.796641472000033, 46.59438711100006 ], [ 142.724619988000086, 46.740790106000077 ], [ 142.61841881600003, 46.718573309000078 ], [ 142.406504754000025, 46.553656317000048 ], [ 142.281911655000044, 46.327460028000075 ], [ 142.201670769000089, 46.030666408000059 ], [ 142.119965040000011, 45.992173570000034 ], [ 142.085297071000014, 45.900824286000045 ], [ 141.932627800000091, 46.03579336100006 ], [ 141.814219597000033, 46.538397528000075 ], [ 142.056651238000086, 47.053697007000039 ], [ 142.056651238000086, 47.169745184000078 ], [ 141.975108269000089, 47.297593492000033 ], [ 141.965830925000091, 47.612494208000044 ], [ 142.19109134200005, 47.966742255000042 ], [ 142.133148634, 48.333685614000046 ], [ 141.91960696700005, 48.609116929000038 ], [ 141.857432488000086, 48.774237372000073 ], [ 141.967295769000089, 48.862372137000079 ], [ 142.125010613000086, 49.462307033000059 ], [ 142.159678582000083, 49.677964585000041 ], [ 142.125010613000086, 49.897650458000044 ], [ 142.173838738000086, 50.086411851000037 ], [ 142.145518425000091, 50.363836981000077 ], [ 142.041351759, 50.550970770000049 ], [ 142.097015821000014, 50.821926174000055 ], [ 142.26921634200005, 51.11241282800006 ], [ 142.078949415000011, 51.471380927000041 ], [ 141.942718946000014, 51.559271552000041 ], [ 141.939219597000033, 51.611883856000077 ], [ 141.866709832000083, 51.612453518000052 ], [ 141.68677819100003, 51.747300523000035 ], [ 141.823008660000028, 51.744208075000074 ], [ 141.809580925000091, 51.806219794000071 ], [ 141.639008009, 51.884507554000038 ], [ 141.675547722000033, 51.91242096600007 ], [ 141.645030144000089, 52.084784247000073 ], [ 141.699880405000044, 52.165716864000046 ], [ 141.64185631600003, 52.318182684000078 ], [ 141.843760613000086, 52.590806382000039 ], [ 141.809743686000047, 52.603908596000053 ], [ 141.928396030000044, 53.020656643000052 ], [ 141.76880944100003, 53.371649481000077 ], [ 142.241058790000011, 53.529364325000074 ], [ 142.263926629000025, 53.380072333000044 ], [ 142.455332879000025, 53.380275783000059 ], [ 142.576670769000089, 53.500067450000074 ], [ 142.687266472000033, 53.529364325000074 ], [ 142.586192254000025, 53.575832424000055 ], [ 142.514008009, 53.545599677000041 ], [ 142.49773196700005, 53.658270575000074 ], [ 142.641368035000028, 53.681789455000057 ], [ 142.718516472000033, 53.640204169000071 ], [ 142.804453972000033, 53.706976630000042 ], [ 142.739105665000011, 53.845689195000034 ], [ 142.67310631600003, 53.71430084800005 ], [ 142.604177280000044, 53.69757721600007 ], [ 142.706065300000091, 53.864325262000079 ], [ 142.70826256600003, 53.948228257000039 ], [ 142.282562696000014, 54.303941148000035 ], [ 142.443369988000086, 54.269191799000055 ], [ 142.529063347000033, 54.29718659100007 ] ] ], [ [ [ 146.17505944100003, 43.538153387000079 ], [ 146.229502800000091, 43.531317450000074 ], [ 146.151866082000083, 43.462795315000051 ], [ 146.07935631600003, 43.517645575000074 ], [ 146.17505944100003, 43.538153387000079 ] ] ], [ [ [ 146.881683790000011, 43.859198309000078 ], [ 146.942149285000028, 43.846625067000048 ], [ 146.914561394000089, 43.802720445000034 ], [ 146.681895379000025, 43.711371161000045 ], [ 146.602224155000044, 43.736070054000038 ], [ 146.604665561000047, 43.808579820000034 ], [ 146.881683790000011, 43.859198309000078 ] ] ], [ [ [ 146.469248894000089, 44.428778387000079 ], [ 146.572113477000016, 44.449896552000041 ], [ 146.513926629000025, 44.363959052000041 ], [ 146.448008660000028, 44.378729559000078 ], [ 146.303721550000091, 44.282131252000056 ], [ 146.116547071000014, 44.254380601000037 ], [ 145.923024936000047, 44.113714911000045 ], [ 145.778168165000011, 43.932562567000048 ], [ 145.588715040000011, 43.847560940000051 ], [ 145.556162957000083, 43.65265534100007 ], [ 145.551768425000091, 43.71625397300005 ], [ 145.443125847000033, 43.724514065000051 ], [ 145.410899285000028, 43.836004950000074 ], [ 145.728770379000025, 44.043768622000073 ], [ 146.119313998000052, 44.506048895000049 ], [ 146.469248894000089, 44.428778387000079 ] ] ], [ [ [ 148.799164259, 45.415676174000055 ], [ 148.844004754000025, 45.371039130000042 ], [ 148.816661004000025, 45.333482164000088 ], [ 148.277679884, 45.222560940000051 ], [ 147.913024045000043, 44.963001684000062 ], [ 147.768321160000028, 44.943345445000034 ], [ 147.70077651500003, 45.007986257000084 ], [ 147.653800747000105, 44.994851055000083 ], [ 147.645449155000051, 44.908095700000047 ], [ 147.226026802000092, 44.581002046000037 ], [ 147.054698958000017, 44.537169815000084 ], [ 146.958343946000014, 44.421047268000052 ], [ 146.861795804000053, 44.445337234000078 ], [ 146.949854703000028, 44.548943313000052 ], [ 146.937026549000052, 44.624822397000059 ], [ 147.000743035000028, 44.565985419000071 ], [ 147.037824672000056, 44.599012264000066 ], [ 146.998623144000021, 44.66261245700008 ], [ 147.091427334000059, 44.637358174000042 ], [ 147.196580001000029, 44.713681755000039 ], [ 147.203931401000091, 44.755435427000066 ], [ 147.121885699000018, 44.776301204000049 ], [ 147.109198899000035, 44.827148130000069 ], [ 147.216540316000078, 44.799007136000057 ], [ 147.264414910000028, 44.867621161000045 ], [ 147.466563347000033, 44.966945705000057 ], [ 147.51140384200005, 45.08734772300005 ], [ 147.619639519000089, 45.065334377000056 ], [ 147.757009311000047, 45.185736395000049 ], [ 147.894867384, 45.223944403000075 ], [ 147.860687696000014, 45.354234117000033 ], [ 147.939952019000089, 45.426255601000037 ], [ 148.004649285000028, 45.281195380000042 ], [ 148.06959069100003, 45.251166083000044 ], [ 148.311859571000014, 45.275295315000051 ], [ 148.560313347000033, 45.463446356000077 ], [ 148.726573113000086, 45.525213934000078 ], [ 148.851328972000033, 45.481512762000079 ], [ 148.799164259, 45.415676174000055 ] ] ], [ [ [ 150.334239129000025, 46.210842190000051 ], [ 150.569349547, 46.231757902000084 ], [ 150.245368626000072, 46.03703213700004 ], [ 150.197601759, 45.929632880000042 ], [ 150.022950596000101, 45.823796886000082 ], [ 149.922873669000069, 45.81071206200005 ], [ 149.637765911000088, 45.610946079000087 ], [ 149.577159050000091, 45.637274481000077 ], [ 149.549978061000047, 45.590399481000077 ], [ 149.436696811000047, 45.586981512000079 ], [ 149.667328321000014, 45.853216864000046 ], [ 149.811045769000089, 45.879828192000048 ], [ 150.020168907000084, 46.07302358000004 ], [ 150.180674675000091, 46.105414130000042 ], [ 150.211436394000089, 46.134751695000034 ], [ 150.181905327000095, 46.159732715000075 ], [ 150.334239129000025, 46.210842190000051 ] ] ], [ [ [ 152.205577019000089, 47.128810940000051 ], [ 152.294932488000086, 47.142482815000051 ], [ 151.850600911000015, 46.790473206000058 ], [ 151.71216881600003, 46.806626695000034 ], [ 151.705332879000025, 46.84829336100006 ], [ 151.873301629000025, 46.871812242000033 ], [ 152.225433790000011, 47.176581122000073 ], [ 152.205577019000089, 47.128810940000051 ] ] ], [ [ [ 152.503428582000083, 47.383246161000045 ], [ 152.52444390900007, 47.298645934000035 ], [ 152.413154194000072, 47.34067053800004 ], [ 152.426280144000089, 47.383490302000041 ], [ 152.503428582000083, 47.383246161000045 ] ] ], [ [ [ 153.02127099400002, 47.799596579000081 ], [ 153.068818794000094, 47.743296497000074 ], [ 152.978253835000032, 47.684332818000087 ], [ 152.970189196000092, 47.751570356000059 ], [ 153.02127099400002, 47.799596579000081 ] ] ], [ [ [ 153.288422071000014, 48.077460028000075 ], [ 153.293630405000044, 48.042181708000044 ], [ 153.233300945, 48.039808964000088 ], [ 153.164555774000064, 48.121415472000081 ], [ 153.288422071000014, 48.077460028000075 ] ] ], [ [ [ 154.212901238000086, 48.917669989000046 ], [ 154.221364780000044, 48.872870184000078 ], [ 154.056407097000033, 48.737779039000088 ], [ 153.973317905000044, 48.739488023000035 ], [ 154.119476759, 48.899603583000044 ], [ 154.212901238000086, 48.917669989000046 ] ] ], [ [ [ 153.986989780000044, 48.965399481000077 ], [ 154.014333530000044, 48.944525458000044 ], [ 153.960703972000033, 48.926703192000048 ], [ 153.902110222000033, 48.95648834800005 ], [ 153.986989780000044, 48.965399481000077 ] ] ], [ [ [ 154.562998894000089, 49.157171942000048 ], [ 154.601328972000033, 49.111070054000038 ], [ 154.511729363000086, 49.080226955000057 ], [ 154.439463738000086, 49.157171942000048 ], [ 154.562998894000089, 49.157171942000048 ] ] ], [ [ [ 154.447557670000037, 49.816984250000075 ], [ 154.491337965000071, 49.783252395000034 ], [ 154.411916978000022, 49.73309557400006 ], [ 154.373904417000062, 49.778467248000084 ], [ 154.447557670000037, 49.816984250000075 ] ] ], [ [ [ 156.125254754000025, 50.637518622000073 ], [ 156.152517123000052, 50.519029039000088 ], [ 156.049327019000089, 50.479315497000073 ], [ 156.037608269000089, 50.409898179000038 ], [ 155.884938998000052, 50.253729559000078 ], [ 155.773203972000033, 50.186590887000079 ], [ 155.501475457000083, 50.137274481000077 ], [ 155.39576256600003, 49.995794989000046 ], [ 155.376719597000033, 50.046861070000034 ], [ 155.216563347000033, 50.067084052000041 ], [ 155.255056186000047, 50.154689846000053 ], [ 155.201914910000028, 50.293524481000077 ], [ 155.320160352000016, 50.288885809000078 ], [ 155.441742384, 50.37055084800005 ], [ 155.689626498000052, 50.403713283000059 ], [ 155.889496290000011, 50.69086334800005 ], [ 156.041188998000052, 50.772772528000075 ], [ 156.117198113000086, 50.749090887000079 ], [ 156.125254754000025, 50.637518622000073 ] ] ], [ [ [ 156.460459832000083, 50.873724677000041 ], [ 156.510990243000037, 50.765848551000033 ], [ 156.405772332000083, 50.630113023000035 ], [ 156.272442703000024, 50.633406049000087 ], [ 156.180023634, 50.688421942000048 ], [ 156.199392123000052, 50.780503648000035 ], [ 156.460459832000083, 50.873724677000041 ] ] ], [ [ [ 155.563487175000091, 50.808254299000055 ], [ 155.467621290000011, 50.852484442000048 ], [ 155.474131707000083, 50.921820380000042 ], [ 155.6312646, 50.912283522000052 ], [ 155.672862175000091, 50.870306708000044 ], [ 155.66994119900005, 50.811953876000075 ], [ 155.563487175000091, 50.808254299000055 ] ] ], [ [ [ 142.549652540000011, 54.302232164000031 ], [ 142.58716881600003, 54.313299872000073 ], [ 142.604177280000044, 54.310207424000055 ], [ 142.54070071700005, 54.297796942000048 ], [ 142.549652540000011, 54.302232164000031 ] ] ], [ [ [ 150.843331080000098, 46.448224466000056 ], [ 150.832855665000011, 46.44086334800005 ], [ 150.780076983000072, 46.45715948600008 ], [ 150.808480581000026, 46.486437534000061 ], [ 150.843331080000098, 46.448224466000056 ] ] ], [ [ [ 154.836680535000028, 49.650051174000055 ], [ 154.905039910000028, 49.630804755000042 ], [ 154.802744988000086, 49.478664455000057 ], [ 154.815114780000044, 49.310207424000055 ], [ 154.71998131600003, 49.26703522300005 ], [ 154.605967644000089, 49.292669989000046 ], [ 154.63835696700005, 49.424261786000045 ], [ 154.836680535000028, 49.650051174000055 ] ] ], [ [ [ 146.092133009, 43.44814687700017 ], [ 146.080739780000158, 43.416164455000171 ], [ 146.026459181000178, 43.410752671000182 ], [ 146.080902540000125, 43.431097723000107 ], [ 146.092133009, 43.44814687700017 ] ] ], [ [ [ 145.934743686000047, 43.439601955000114 ], [ 145.896006707000197, 43.417344468000181 ], [ 145.865000847000147, 43.456162828000174 ], [ 145.938161655000044, 43.455349026000192 ], [ 145.934743686000047, 43.439601955000114 ] ] ], [ [ [ 146.352386915000125, 43.638169664000088 ], [ 146.344574415000125, 43.619086004999986 ], [ 146.269704623000052, 43.628159898000035 ], [ 146.317718946000014, 43.650580145000106 ], [ 146.352386915000125, 43.638169664000088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-40", "NAME_1": "Sevastopol" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.729997684176972, 44.397974268572824 ], [ 33.372325066000087, 44.57648346600007 ], [ 33.571543816000087, 44.62055084800005 ], [ 33.514821811000047, 44.649115302000041 ], [ 33.559580925000034, 44.849758205000057 ], [ 33.67452773116986, 44.791645839184127 ], [ 33.689322826187436, 44.754164932765434 ], [ 33.611401992907645, 44.720629383639107 ], [ 33.625210748377299, 44.661449004467954 ], [ 33.709049619844052, 44.666380702207618 ], [ 33.750475885353808, 44.623968097149941 ], [ 33.72976275214927, 44.553937981152899 ], [ 33.805710906333218, 44.527306810660775 ], [ 33.852068870481958, 44.431631863719531 ], [ 33.729997684176972, 44.397974268572824 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-CHU", "NAME_1": "Chukchi Autonomous Okrug" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 190.916636589000092, 65.81586334800005 ], [ 190.936778191000087, 65.828192450000074 ], [ 191.005381707000083, 65.81586334800005 ], [ 190.923472527000087, 65.755072333000044 ], [ 190.916636589000092, 65.81586334800005 ] ] ], [ [ [ 187.524709506000079, 64.641831773000035 ], [ 187.541514519000089, 64.611029364000046 ], [ 187.480601433000089, 64.593003648000035 ], [ 187.274953647000075, 64.626450914000031 ], [ 187.524709506000079, 64.641831773000035 ] ] ], [ [ [ 187.756903993000094, 64.815942334000056 ], [ 187.956643989000099, 64.751182997000058 ], [ 187.366807070000078, 64.684439315000077 ], [ 187.5386559210001, 64.827594598000076 ], [ 187.756903993000094, 64.815942334000056 ] ] ], [ [ [ 180.0, 68.98236981000008 ], [ 180.420095248000081, 68.908636786000045 ], [ 180.485972527000087, 68.921128648000035 ], [ 180.477224155000101, 68.964544989000046 ], [ 180.680469607000077, 68.811951714000031 ], [ 181.155187423000086, 68.75236095300005 ], [ 181.515065951000082, 68.591538804000038 ], [ 181.275381879000093, 68.675685689000034 ], [ 181.300072008000086, 68.543189316000053 ], [ 181.978648308000089, 68.415961005000042 ], [ 182.049489780000101, 68.337713934000078 ], [ 181.92632083400008, 68.259263414000031 ], [ 182.295298699000085, 68.344549872000073 ], [ 181.624929233000074, 68.557440497000073 ], [ 182.507741733000074, 68.291734117000033 ], [ 182.234426303000077, 68.262640692000048 ], [ 182.365285678000077, 68.195298570000034 ], [ 182.661916537000081, 68.244574286000045 ], [ 182.826467319000074, 68.19867584800005 ], [ 182.740896030000101, 68.211127020000049 ], [ 182.781260613000086, 68.139553127000056 ], [ 182.924571160000085, 68.164252020000049 ], [ 183.435461893000081, 68.010315615000081 ], [ 183.274955452000086, 68.03785176100007 ], [ 183.21066418400008, 67.978618188000041 ], [ 183.460628634000074, 67.895096721000073 ], [ 183.791205008000077, 67.901770042000066 ], [ 183.466681105000077, 68.002962025000045 ], [ 184.079274936000076, 67.85101959800005 ], [ 183.884090027000099, 67.806537153000079 ], [ 183.86261980000009, 67.777358908000053 ], [ 183.930340655000094, 67.72731413300005 ], [ 183.65912678300009, 67.695902431000036 ], [ 183.79420783100008, 67.645151930000054 ], [ 184.318210783000097, 67.589579382000068 ], [ 184.232648830000073, 67.65164718300008 ], [ 184.10325771300009, 67.64991331300007 ], [ 184.151398256000078, 67.704555906000053 ], [ 183.988034089000081, 67.727347765000047 ], [ 184.175970849000095, 67.812960127000053 ], [ 184.734471269000096, 67.658555079000053 ], [ 184.687637768000087, 67.634651509000037 ], [ 184.709226342000079, 67.605616571000041 ], [ 184.873229965000093, 67.499889843000062 ], [ 184.773470085000099, 67.53258846500006 ], [ 184.827602370000079, 67.435113931000046 ], [ 184.633116833000088, 67.357788629000083 ], [ 184.840411025000094, 67.337476791000086 ], [ 185.031051927000078, 67.424748405000059 ], [ 184.920176629000082, 67.481146552000041 ], [ 185.193890979000088, 67.364670886000056 ], [ 185.243564420000098, 67.303236781000066 ], [ 185.139745401000084, 67.275458437000054 ], [ 185.092391906000074, 67.037384961000043 ], [ 185.299978849000098, 66.916520407000064 ], [ 185.237144227000073, 66.899404292000042 ], [ 185.312179862000079, 66.732416879000084 ], [ 185.236302269000078, 66.753655572000071 ], [ 185.028665389000082, 66.66541324800005 ], [ 185.193556193000092, 66.592516837000062 ], [ 185.564336837000099, 66.531544989000054 ], [ 185.604758479000083, 66.474523361000081 ], [ 185.538685774000101, 66.45923143400006 ], [ 185.534321114000079, 66.401356838000083 ], [ 185.610623542000098, 66.337510940000072 ], [ 185.561921272000092, 66.343515641000067 ], [ 185.536500024000077, 66.279748138000059 ], [ 185.646324296000074, 66.27701985200008 ], [ 185.703942494000074, 66.34252755600005 ], [ 185.631809201000095, 66.33748571700005 ], [ 185.834025984000078, 66.399375494000083 ], [ 185.794443575000088, 66.472609964000071 ], [ 185.984092882000084, 66.472171315000082 ], [ 186.047489867000081, 66.445594447000076 ], [ 186.02112929000009, 66.405705433000037 ], [ 186.070812569000083, 66.340817981000043 ], [ 185.98109326000008, 66.30536535400006 ], [ 186.000687335000094, 66.219249533000038 ], [ 186.203461144000073, 66.307992862000049 ], [ 186.10464009800009, 66.336442101000046 ], [ 186.294744063000081, 66.370523947000038 ], [ 186.308870184000085, 66.439098868000031 ], [ 186.166858656000073, 66.506251196000051 ], [ 185.736050022000086, 66.56587565500007 ], [ 186.06944860200008, 66.667626946000041 ], [ 186.065408006000098, 66.78043832000003 ], [ 185.973785638000095, 66.961110898000072 ], [ 185.760808407000098, 66.971785226000065 ], [ 185.809309440000078, 67.027020242000049 ], [ 185.717873411000085, 67.046761142000037 ], [ 185.503947050000079, 67.021386882000058 ], [ 185.643691388000093, 67.061357921000081 ], [ 185.387999611000083, 67.061414029000048 ], [ 186.24916134500009, 67.073431629000083 ], [ 186.353531115000095, 67.115614853000068 ], [ 186.553406165000098, 67.074606276000054 ], [ 186.504714940000099, 67.062995435000062 ], [ 186.536418412000074, 67.029487330000052 ], [ 186.610604410000093, 67.078459294000083 ], [ 186.928740402000074, 67.044232524000051 ], [ 186.727840919000073, 67.051950533000081 ], [ 186.856629584000075, 66.999645489000045 ], [ 186.70504494700009, 66.981327641000064 ], [ 186.692658490000099, 66.903905204000068 ], [ 186.732707448000099, 66.878048592000084 ], [ 186.679829327000078, 66.862265381000043 ], [ 186.697458375000082, 66.822105105000048 ], [ 186.913424089000074, 66.846746868000082 ], [ 186.773521397000081, 66.910935063000068 ], [ 186.926037353000083, 66.993073229000061 ], [ 186.948814913000092, 66.934109099000068 ], [ 187.217671029000087, 66.894004186000075 ], [ 187.63751342900008, 66.933213360000082 ], [ 186.964764917000082, 67.02341461900005 ], [ 187.013655823000079, 67.039175243000045 ], [ 188.281483190000074, 66.950777496000057 ], [ 188.35978469300008, 66.929814613000076 ], [ 188.305831056000073, 66.879571698000063 ], [ 188.36996668900008, 66.83005821200004 ], [ 188.646599327000075, 66.771852598000066 ], [ 188.636640671000094, 66.67482907200008 ], [ 189.614807116000094, 66.316531756000074 ], [ 189.485967953000085, 66.283435826000073 ], [ 189.461768146000082, 66.234404522000034 ], [ 189.346934441000087, 66.248480536000045 ], [ 189.374318881000079, 66.234808661000045 ], [ 189.489063526000081, 66.22543399500006 ], [ 189.725742912000072, 66.290403867000066 ], [ 189.893795620000077, 66.193047453000077 ], [ 189.661631707000083, 66.185777085000041 ], [ 189.863732642000087, 66.13924380800006 ], [ 190.077321811000076, 66.150295315000051 ], [ 189.95643151100009, 66.193304755000042 ], [ 190.047902866000072, 66.183783270000049 ], [ 190.292531772000075, 66.13117096600007 ], [ 190.358615810000089, 66.06832743700005 ], [ 190.281389716000092, 66.006133269000031 ], [ 190.018483920000079, 66.039007880000042 ], [ 189.393687371000084, 65.861314195000034 ], [ 189.484060092000078, 65.830145575000074 ], [ 189.428843621000084, 65.761216539000031 ], [ 189.51122674700008, 65.670757691000063 ], [ 189.411834276000093, 65.604565845000081 ], [ 189.124563022000075, 65.62335846600007 ], [ 188.536734530000075, 65.832589628000051 ], [ 188.736135287000081, 65.655585028000075 ], [ 189.018187673000085, 65.592053828000076 ], [ 189.0246743780001, 65.511143614000048 ], [ 188.961346084000098, 65.466987232000065 ], [ 188.749107208000083, 65.521991025000034 ], [ 187.965796698000077, 65.47443813600006 ], [ 188.256380834000083, 65.499661274000061 ], [ 187.906667514000077, 65.568019924000055 ], [ 187.739919467000078, 65.54523346600007 ], [ 187.793971196000086, 65.580765982000059 ], [ 187.677648232000081, 65.622113155000079 ], [ 187.709518021000093, 65.666174070000068 ], [ 187.14039147200009, 65.69985586100006 ], [ 187.610277896000099, 65.581816507000042 ], [ 187.601882646000092, 65.527453358000059 ], [ 187.680312618000073, 65.465254506000065 ], [ 187.571973048000075, 65.470459086000062 ], [ 187.611391455000074, 65.432236488000058 ], [ 187.735895534000093, 65.418212826000058 ], [ 187.906596882000088, 65.483570521000047 ], [ 187.797050321000086, 65.324536826000042 ], [ 187.811461220000098, 65.242449841000052 ], [ 187.623220248000081, 65.275213934000078 ], [ 187.298024936000076, 65.247626044000071 ], [ 187.449357002000085, 65.206026867000048 ], [ 187.798468710000094, 65.21687429900004 ], [ 187.829136270000078, 65.152328957000066 ], [ 187.743703647000075, 65.137437242000033 ], [ 187.773244662000081, 65.099758205000057 ], [ 187.919907038000076, 65.075904770000079 ], [ 187.676995893000083, 64.948344936000069 ], [ 187.442027214000092, 64.925197658000059 ], [ 187.237154393000083, 64.837868135000065 ], [ 186.999866708000098, 64.855267827000034 ], [ 186.835883610000081, 64.764602660000037 ], [ 187.0783405600001, 64.821234250000032 ], [ 187.194265170000079, 64.80337148600006 ], [ 187.244690906000073, 64.733467983000082 ], [ 186.957128392000101, 64.659684678000076 ], [ 187.155366796000095, 64.648869998000066 ], [ 187.032807157000093, 64.56113681800008 ], [ 187.1840943710001, 64.611734848000083 ], [ 187.53492272200009, 64.558417059000078 ], [ 187.589366082000083, 64.489162502000056 ], [ 187.779755940000086, 64.407338186000061 ], [ 187.40992741800008, 64.37042419200003 ], [ 187.288460556000075, 64.400349591000065 ], [ 187.184743686000076, 64.504055080000057 ], [ 187.116654394000079, 64.494710751000071 ], [ 186.986949089000092, 64.46157461100006 ], [ 187.21167640200008, 64.43786076300006 ], [ 187.177828621000089, 64.32036164200008 ], [ 187.048544667000073, 64.33884318500003 ], [ 187.075896136000097, 64.264429288000031 ], [ 186.893735424000084, 64.240980280000031 ], [ 186.631747158000081, 64.285478215000069 ], [ 186.636623873000076, 64.365952847000074 ], [ 186.736338738000086, 64.445990302000041 ], [ 186.687876824000085, 64.452215887000079 ], [ 186.715830925000091, 64.521144924000055 ], [ 186.585459832000083, 64.61664459800005 ], [ 186.646901889000077, 64.507473049000055 ], [ 186.614822185000094, 64.395040744000084 ], [ 186.364566250000081, 64.332230639000045 ], [ 186.010670447000081, 64.41234776500005 ], [ 185.957707019000082, 64.528258234000077 ], [ 185.653208855000088, 64.64398834800005 ], [ 185.694102410000085, 64.666164455000057 ], [ 185.347707553000077, 64.725327867000033 ], [ 185.40802568400008, 64.817404857000042 ], [ 185.346776919000092, 64.897900993000064 ], [ 185.276917847000078, 64.807209897000064 ], [ 185.102017249000085, 64.798138080000058 ], [ 185.048065438000094, 64.861496698000053 ], [ 185.012201020000077, 64.766255915000045 ], [ 184.588547971000082, 64.771263662000081 ], [ 184.5431590150001, 64.797215393000045 ], [ 184.631644669000082, 64.846507818000077 ], [ 184.518206157000094, 64.843586106000032 ], [ 184.135264519000089, 64.999212958000044 ], [ 184.232538860000091, 65.03750375900006 ], [ 184.189504428000077, 65.087225653000075 ], [ 184.264958730000075, 65.146845106000058 ], [ 184.118446461000076, 65.258454500000084 ], [ 184.091160688000087, 65.402952760000062 ], [ 183.955943230000088, 65.452093817000048 ], [ 183.023448113000086, 65.60805898600006 ], [ 182.754005585000101, 65.53886308500006 ], [ 182.584074527000098, 65.440748491000079 ], [ 181.53889943900009, 65.472741276000079 ], [ 181.467720496000084, 65.522986466000077 ], [ 181.575765108000098, 65.712878750000073 ], [ 181.486460808000089, 65.762640692000048 ], [ 181.371783058000091, 65.729499826000051 ], [ 181.364268425000091, 65.774888414000031 ], [ 181.096730991000101, 65.919582424000055 ], [ 181.131154819000074, 65.938177802000041 ], [ 181.021617058000089, 66.049261786000045 ], [ 181.201101108000074, 65.994086005000042 ], [ 181.315743886000092, 66.012571875000049 ], [ 181.317556186000076, 66.10187409100007 ], [ 181.504324545000088, 66.140127301000064 ], [ 181.459849480000088, 66.268377997000073 ], [ 181.522875956000092, 66.38276195900005 ], [ 181.396280860000076, 66.360756045000073 ], [ 181.377601971000075, 66.295777073000068 ], [ 181.214865439000079, 66.16724307800007 ], [ 181.017560677000091, 66.158947453000053 ], [ 180.882334832000083, 66.242661851000037 ], [ 180.917979363000086, 66.306219794000071 ], [ 180.83570397200009, 66.41437409100007 ], [ 180.801890496000084, 66.399318752000056 ], [ 180.828542514000077, 66.289455471000053 ], [ 180.575979037000081, 66.34406159100007 ], [ 180.782052233000087, 66.182195855000032 ], [ 180.748045303000083, 66.145170391000079 ], [ 180.425417192000083, 66.111297266000065 ], [ 180.308645053000077, 66.141669012000079 ], [ 180.418345574000085, 66.15851471600007 ], [ 180.307017449000085, 66.18390534100007 ], [ 180.17127526100009, 65.946844794000071 ], [ 180.233327670000079, 65.819810289000031 ], [ 180.722955607000074, 65.630256202000055 ], [ 180.678734451000082, 65.574524620000034 ], [ 180.739489589000101, 65.53217898500003 ], [ 180.500996968000095, 65.395711238000047 ], [ 180.475790103000094, 65.235360732000061 ], [ 180.336910161000077, 65.141263257000048 ], [ 180.0, 65.066229475000057 ], [ 180.0, 68.98236981000008 ] ] ], [ [ [ 180.0, 70.992422908000037 ], [ 179.666993361000095, 70.874778509000066 ], [ 179.131032748000052, 70.878729559000078 ], [ 178.793304884, 70.80499909100007 ], [ 178.622243686000047, 71.051011460000041 ], [ 178.905446811000047, 71.237005927000041 ], [ 179.563487175000091, 71.45148346600007 ], [ 180.0, 71.536419634000083 ], [ 180.0, 70.992422908000037 ] ] ], [ [ [ 180.0, 71.53668798800004 ], [ 180.264048699000085, 71.586411851000037 ], [ 180.67322838600009, 71.555487372000073 ], [ 180.925425652000087, 71.600043036000045 ], [ 181.605153842000078, 71.540716864000046 ], [ 181.994273308000089, 71.448635158000059 ], [ 181.960093621000084, 71.40766022300005 ], [ 182.281626824000085, 71.305243231000077 ], [ 182.485891147000075, 71.293402411000045 ], [ 182.556569858000074, 71.237005927000041 ], [ 182.362355991000101, 71.117010809000078 ], [ 182.069509311000076, 71.041449286000045 ], [ 180.498789910000085, 70.919663804000038 ], [ 180.0, 70.992010355000048 ], [ 180.0, 71.53668798800004 ] ] ], [ [ [ 184.414317254000082, 71.379868882000039 ], [ 184.371348504000082, 71.351752020000049 ], [ 184.18921959700009, 71.411688544000071 ], [ 184.382701043000083, 71.381048895000049 ], [ 184.414317254000082, 71.379868882000039 ] ] ], [ [ [ 162.431769440628528, 69.677134817858786 ], [ 162.76880944100003, 69.654201565000051 ], [ 163.165049675000091, 69.720892645000049 ], [ 163.773030399000049, 69.694402194000077 ], [ 164.02702884200005, 69.773830471000053 ], [ 164.43913821700005, 69.620754299000055 ], [ 164.834258050000017, 69.567404028000055 ], [ 165.674729139000078, 69.595977554000058 ], [ 166.075205925000091, 69.523260809000078 ], [ 166.89380944100003, 69.495917059000078 ], [ 167.674082879000025, 69.771877346000053 ], [ 167.80201256600003, 69.775213934000078 ], [ 168.083343946000014, 69.708807684000078 ], [ 167.926442905000044, 69.654201565000051 ], [ 168.254079623000052, 69.544338283000059 ], [ 168.192067905000044, 69.379868882000039 ], [ 168.288259311000047, 69.242661851000037 ], [ 168.850596550000091, 69.188055731000077 ], [ 169.371267123000052, 69.076564846000053 ], [ 169.453868035000028, 68.845445054000038 ], [ 169.625498894000089, 68.777248440000051 ], [ 170.351084832000083, 68.828070380000042 ], [ 170.625173373000052, 68.748602606000077 ], [ 170.549327019000089, 68.793036200000074 ], [ 170.56373131600003, 68.824937242000033 ], [ 170.449229363000086, 68.863470770000049 ], [ 170.633067254000025, 68.918158270000049 ], [ 170.728037957000083, 68.821966864000046 ], [ 170.680430535000028, 68.940375067000048 ], [ 170.979258660000028, 69.055853583000044 ], [ 171.050303582000083, 69.027736721000053 ], [ 171.15943444100003, 69.044094143000052 ], [ 171.027598504000025, 69.054754950000074 ], [ 170.980235222000033, 69.144354559000078 ], [ 170.90007571700005, 69.171210028000075 ], [ 170.913096550000091, 69.30414459800005 ], [ 170.748545769000089, 69.391180731000077 ], [ 170.606130405000044, 69.589789130000042 ], [ 170.160732902000063, 69.613366631000076 ], [ 170.23155301700001, 69.68858894400006 ], [ 170.591775559000098, 69.764724761000082 ], [ 170.52271569100003, 69.938462632000039 ], [ 170.556813998000052, 70.09243398600006 ], [ 170.406748894000089, 70.112860419000071 ], [ 170.481618686000047, 70.14203522300005 ], [ 171.994476759, 69.993068752000056 ], [ 172.725352410000028, 69.980861721000053 ], [ 172.860687696000014, 69.903469143000052 ], [ 173.236338738000086, 69.81867096600007 ], [ 173.198008660000028, 69.783433335000041 ], [ 173.479258660000028, 69.835760809000078 ], [ 173.253672722000033, 69.918687242000033 ], [ 173.164073113000086, 69.886664130000042 ], [ 173.27857506600003, 69.941839911000045 ], [ 173.460785352000016, 69.948553778000075 ], [ 173.737803582000083, 69.851996161000045 ], [ 173.787852410000028, 69.884466864000046 ], [ 173.928477410000028, 69.845404364000046 ], [ 174.070811394000089, 69.886908270000049 ], [ 175.088384157000064, 69.845748928000035 ], [ 175.715541793000057, 69.88145348200004 ], [ 175.529736586000013, 69.85630401700007 ], [ 175.99717651800006, 69.769362901000079 ], [ 176.14348226200002, 69.782090286000084 ], [ 176.157669637000026, 69.821481912000081 ], [ 175.781566228000088, 69.885282897000081 ], [ 176.127614780000044, 69.893784898000035 ], [ 176.272146030000044, 69.81867096600007 ], [ 176.242035352000016, 69.774359442000048 ], [ 176.503916863000086, 69.754095770000049 ], [ 176.734548373000052, 69.674750067000048 ], [ 177.357920769000089, 69.617173570000034 ], [ 178.21216881600003, 69.443426825000074 ], [ 178.36491946700005, 69.486802476000037 ], [ 178.772634311000047, 69.415228583000044 ], [ 179.067718946000014, 69.325262762000079 ], [ 178.666188998000052, 69.383286851000037 ], [ 178.65398196700005, 69.317450262000079 ], [ 179.261485222000033, 69.272162177000041 ], [ 179.958506707000083, 68.995672919000071 ], [ 179.54810631600003, 69.112982489000046 ], [ 179.692149285000028, 69.016099351000037 ], [ 180.0, 68.981050321000055 ], [ 180.0, 65.06618951300004 ], [ 179.779551629000025, 65.01821523600006 ], [ 179.478688998000052, 64.822739976000037 ], [ 179.17115319100003, 64.792669989000046 ], [ 178.561534050000091, 64.591538804000038 ], [ 178.48560631600003, 64.610500393000052 ], [ 178.755869988000086, 64.682196356000077 ], [ 178.217946811000047, 64.658270575000074 ], [ 178.273448113000086, 64.669338283000059 ], [ 177.625010613000086, 64.72016022300005 ], [ 177.642588738000086, 64.747707424000055 ], [ 177.389414910000028, 64.835842190000051 ], [ 177.49187259200005, 64.850083726000037 ], [ 177.432953321000014, 64.929022528000075 ], [ 177.238291863000086, 64.94562409100007 ], [ 177.169688347000033, 65.027573960000041 ], [ 176.936859571000014, 65.082831122000073 ], [ 176.608409050000091, 65.031805731000077 ], [ 176.418630405000044, 65.090236721000053 ], [ 176.30632571700005, 65.055487372000073 ], [ 176.54615319100003, 65.000921942000048 ], [ 176.958506707000083, 65.046576239000046 ], [ 177.221527540000011, 64.914618231000077 ], [ 177.22429446700005, 64.863714911000045 ], [ 177.30005944100003, 64.822739976000037 ], [ 177.039805535000028, 64.772772528000075 ], [ 176.885590040000011, 64.84210846600007 ], [ 176.626149936000047, 64.867905992000033 ], [ 176.435801629000025, 64.810939846000053 ], [ 176.397146030000044, 64.859930731000077 ], [ 176.045664910000028, 64.962795315000051 ], [ 175.714610222000033, 64.793646552000041 ], [ 175.040782097000033, 64.778062242000033 ], [ 174.750336134, 64.68891022300005 ], [ 174.441742384, 64.692450262000079 ], [ 174.771739129000025, 64.680650132000039 ], [ 175.107188347000033, 64.764797268000052 ], [ 175.711680535000028, 64.774725653000075 ], [ 176.082367384, 64.918931382000039 ], [ 176.423675977000016, 64.70962148600006 ], [ 176.145274285000028, 64.62759023600006 ], [ 176.11451256600003, 64.590033270000049 ], [ 176.114268425000091, 64.541937567000048 ], [ 176.209971550000091, 64.620062567000048 ], [ 176.36841881600003, 64.634263414000031 ], [ 176.457530144000089, 64.692450262000079 ], [ 176.582286004000025, 64.673732815000051 ], [ 176.742930535000028, 64.571234442000048 ], [ 176.985850457000083, 64.711127020000049 ], [ 177.338389519000089, 64.781480210000041 ], [ 177.49187259200005, 64.767523505000042 ], [ 177.361501498000052, 64.548407294000071 ], [ 177.453623894000089, 64.420640367000033 ], [ 177.813324415000011, 64.25421784100007 ], [ 178.183848504000025, 64.205796617000033 ], [ 178.074554884, 64.25421784100007 ], [ 178.282562696000014, 64.353989976000037 ], [ 178.217946811000047, 64.426825262000079 ], [ 178.183848504000025, 64.411281643000052 ], [ 178.200043165000011, 64.440171617000033 ], [ 178.222015821000014, 64.429429429000038 ], [ 178.399912957000083, 64.243353583000044 ], [ 178.440765821000014, 64.165187893000052 ], [ 178.588633660000028, 64.035101630000042 ], [ 178.48406009200005, 64.070868231000077 ], [ 178.382578972000033, 64.000962632000039 ], [ 178.492442254000025, 63.986721096000053 ], [ 178.382578972000033, 63.973049221000053 ], [ 178.639414910000028, 63.946356512000079 ], [ 178.643239780000044, 64.000962632000039 ], [ 178.759287957000083, 63.622992255000042 ], [ 178.608571811000047, 63.676499742000033 ], [ 178.733083530000044, 63.608343817000048 ], [ 178.355235222000033, 63.630438544000071 ], [ 178.26880944100003, 63.565415757000039 ], [ 178.37232506600003, 63.522365627000056 ], [ 178.509532097000033, 63.578517971000053 ], [ 178.711273634, 63.570013739000046 ], [ 178.720225457000083, 63.476467190000051 ], [ 178.595469597000033, 63.411322333000044 ], [ 178.698985222000033, 63.385687567000048 ], [ 178.838389519000089, 63.434881903000075 ], [ 178.754242384, 63.538275458000044 ], [ 178.77702884200005, 63.59516022300005 ], [ 178.815603061000047, 63.491156317000048 ], [ 179.00554446700005, 63.321356512000079 ], [ 178.848155144000089, 63.404201565000051 ], [ 178.809336785000028, 63.350490627000056 ], [ 179.232758009, 63.239406643000052 ], [ 179.407399936000047, 63.141343492000033 ], [ 179.417816602000016, 63.068060614000046 ], [ 179.273610873000052, 63.044134833000044 ], [ 179.249522332000083, 62.98468659100007 ], [ 179.316172722000033, 62.906154690000051 ], [ 179.511729363000086, 62.87250397300005 ], [ 179.60906009200005, 62.705633856000077 ], [ 179.562998894000089, 62.624741929000038 ], [ 179.433441602000016, 62.616115627000056 ], [ 179.383636915000011, 62.520819403000075 ], [ 179.116058790000011, 62.472235419000071 ], [ 179.150401238000086, 62.341864325000074 ], [ 179.073578321000014, 62.287176825000074 ], [ 178.938161655000044, 62.366034247000073 ], [ 178.061045769000089, 62.541083075000074 ], [ 177.306813998000052, 62.582098700000074 ], [ 177.34107506600003, 62.588324286000045 ], [ 177.265879754000025, 62.615627346000053 ], [ 177.334157748000052, 62.688177802000041 ], [ 177.319834832000083, 62.745917059000078 ], [ 177.457774285000028, 62.814846096000053 ], [ 177.332530144000089, 62.806789455000057 ], [ 177.265879754000025, 62.712469794000071 ], [ 177.188975457000083, 62.709662177000041 ], [ 177.12818444100003, 62.745917059000078 ], [ 177.147959832000083, 62.795843817000048 ], [ 176.992198113000086, 62.86945221600007 ], [ 177.04224694100003, 62.768703518000052 ], [ 176.927907748000052, 62.672919012000079 ], [ 177.05005944100003, 62.584214585000041 ], [ 177.265879754000025, 62.588324286000045 ], [ 176.708994988000086, 62.499212958000044 ], [ 176.723968946000014, 62.541083075000074 ], [ 176.661875847000033, 62.53461334800005 ], [ 176.594248894000089, 62.485825914000031 ], [ 176.642100457000083, 62.472235419000071 ], [ 176.279307488000086, 62.317084052000041 ], [ 175.633474155000044, 62.191310940000051 ], [ 175.306407097000033, 62.074937242000033 ], [ 175.395192905000044, 62.122748114000046 ], [ 175.318369988000086, 62.11001211100006 ], [ 175.258067254000025, 62.168768622000073 ], [ 175.250987175000091, 62.065741278000075 ], [ 175.174489780000044, 62.021918036000045 ], [ 174.765147332000083, 61.916693427000041 ], [ 174.804860873000052, 61.944037177000041 ], [ 174.599945509, 61.98501211100006 ], [ 174.726898634, 61.886297919000071 ], [ 174.489756707000083, 61.814642645000049 ], [ 174.445197382353285, 61.849145006137121 ], [ 174.512376743691675, 61.87162425405603 ], [ 174.450261671638827, 61.913172106107766 ], [ 174.467831659003764, 61.983607083400159 ], [ 174.329132114755225, 62.093161119090325 ], [ 174.107336868201855, 62.078485012473323 ], [ 174.112194451912387, 62.18850413705627 ], [ 174.010391880680686, 62.278472805575461 ], [ 174.093384231097275, 62.339812731272502 ], [ 174.079845006042092, 62.447041327894965 ], [ 173.87241580594457, 62.440530096886448 ], [ 173.806373326168, 62.513600572508381 ], [ 173.68762088429628, 62.534684557346395 ], [ 173.503859491422304, 62.534090278143765 ], [ 173.171476678605814, 62.395261541786681 ], [ 172.903172641704032, 62.39272939714391 ], [ 172.852529738956264, 62.331492825133751 ], [ 172.487177361745808, 62.440065008893043 ], [ 172.293907506126402, 62.403374742350422 ], [ 172.054748976883729, 62.466523343177698 ], [ 171.856724887643395, 62.381412259268302 ], [ 171.48558475163486, 62.311649075544381 ], [ 171.358047317429737, 62.356504217695488 ], [ 171.259655389984232, 62.326015122899548 ], [ 171.217590773994971, 62.368544826882214 ], [ 171.031865676359757, 62.336092027325151 ], [ 171.078271112122025, 62.289324856356984 ], [ 170.858852980580536, 62.249275621073025 ], [ 170.423220656608009, 62.31371613219369 ], [ 170.282970818748254, 62.278886216725482 ], [ 170.040608352193658, 62.44711884226075 ], [ 170.0907344910039, 62.487374783119719 ], [ 169.986141391811771, 62.545019843291129 ], [ 170.07833214661116, 62.661291816464143 ], [ 169.842480911065081, 62.655349026236536 ], [ 169.126658969735558, 62.972538968498554 ], [ 168.925741002445193, 62.943806871090203 ], [ 168.463753696975459, 63.078217272409177 ], [ 168.604623650660869, 63.188753160030274 ], [ 168.72223921097077, 63.192008775084901 ], [ 168.686685825990025, 63.240326240563547 ], [ 168.777843052015214, 63.241256414751717 ], [ 168.78755822213418, 63.299599107812526 ], [ 169.205207146692373, 63.51570994745606 ], [ 169.492218051621762, 63.568316554965008 ], [ 169.512888625309756, 63.628571275044294 ], [ 169.598361444425109, 63.656063137204001 ], [ 169.546995071265428, 63.815743313503106 ], [ 169.370468378013129, 63.874447739971174 ], [ 169.353518508272487, 63.946329658087222 ], [ 169.112086216805437, 63.952479152990463 ], [ 168.859698520869983, 64.026583157386767 ], [ 168.777946404802719, 64.184506334499702 ], [ 168.624984165986461, 64.214426988514674 ], [ 168.498686965231173, 64.317366441308195 ], [ 168.223044875020946, 64.345943509085657 ], [ 168.151834752271952, 64.290985623187908 ], [ 168.025744257091674, 64.285998847368887 ], [ 167.714135369851419, 64.340724189269906 ], [ 167.508359817051883, 64.47761505838821 ], [ 167.372554152652015, 64.493789780873669 ], [ 167.236955193827043, 64.623652655945307 ], [ 166.806800572088719, 64.532934679491859 ], [ 166.198568964386141, 64.608976549328247 ], [ 165.871457147329465, 64.554664619476569 ], [ 165.819780714908006, 64.590011297982983 ], [ 165.890060662569454, 64.61734813141112 ], [ 165.742989537137419, 64.67879140899629 ], [ 165.683975051407401, 64.753980618111029 ], [ 165.359343703049376, 64.761318671419531 ], [ 165.262708774790099, 64.850615546370364 ], [ 165.028407831056484, 64.84239899391838 ], [ 165.018796014624286, 64.694035956394259 ], [ 164.881956822349366, 64.685922756729781 ], [ 164.797930943158462, 64.771602281420144 ], [ 164.187838982582889, 64.934124660724478 ], [ 163.872819451556438, 64.865395005774872 ], [ 163.503332961047249, 64.928285224183696 ], [ 163.345203078359305, 64.818472805175816 ], [ 163.116483188748134, 64.800541083504186 ], [ 163.117310011947438, 64.693260810038339 ], [ 163.043929477962934, 64.654451809103705 ], [ 162.735731236307402, 64.661221422530616 ], [ 162.554036900082792, 64.746720079168313 ], [ 162.292864210914558, 64.742353420973586 ], [ 161.809379511255429, 64.826534328896116 ], [ 161.68990359897191, 64.994172675228754 ], [ 161.281143020434001, 65.140675360779255 ], [ 160.519535760966505, 65.165531725508686 ], [ 160.209063756187334, 65.347820340036606 ], [ 160.169996372834248, 65.450527248833453 ], [ 160.027369419962724, 65.514864407166613 ], [ 158.910124953403852, 65.750043850043596 ], [ 158.92872846864384, 65.895823066081618 ], [ 159.194862095209487, 66.151518053015707 ], [ 159.197652623169915, 66.211359361045652 ], [ 158.77586958171571, 66.283758043099169 ], [ 158.358944126670053, 66.447727363227216 ], [ 158.630142043420506, 66.613040270492036 ], [ 158.715821568110869, 66.730862535477627 ], [ 158.898756137785426, 66.79080719719434 ], [ 158.784241163798583, 66.926096095858099 ], [ 158.800570916814308, 66.981338203495284 ], [ 158.702592401418087, 67.055235501417201 ], [ 157.860369908344524, 67.271966457785766 ], [ 157.783372024099549, 67.346173814969575 ], [ 157.88476118418123, 67.437744453044047 ], [ 157.691077915613278, 67.539469509909907 ], [ 157.737586705062313, 67.652563382394135 ], [ 157.923725213847433, 67.736150011114091 ], [ 158.325457798338675, 67.74868154581668 ], [ 158.257658319375878, 67.831932277752401 ], [ 158.078857863899202, 67.842577622958913 ], [ 158.052812941663888, 67.89280711545598 ], [ 158.191615838699931, 67.9552322458714 ], [ 158.256418085026553, 68.068506985508918 ], [ 158.419405552324292, 68.11098501174888 ], [ 159.552876418212122, 68.239194241321172 ], [ 159.781389602248282, 68.20906688083187 ], [ 159.850119257197889, 68.277434801474897 ], [ 160.997025995353397, 68.300999254112241 ], [ 161.406199985940589, 68.411845200995174 ], [ 162.383918085051505, 68.310662747387823 ], [ 162.528612094572395, 68.352184760118575 ], [ 162.582252231754978, 68.506413071705879 ], [ 162.72322553912727, 68.605166734357283 ], [ 162.610467564326541, 68.704488836890278 ], [ 162.596101516072054, 68.800555325268022 ], [ 162.741725701579753, 68.797532254210125 ], [ 162.84693891839629, 68.869284980217628 ], [ 162.532126092944736, 69.004677233467532 ], [ 162.509801873757397, 69.109218654916958 ], [ 162.78048302567106, 69.19386465083295 ], [ 162.540497675027609, 69.306725979320447 ], [ 162.494919061565383, 69.388323065756822 ], [ 162.368105096872682, 69.41741689747181 ], [ 162.411720005573784, 69.464184068439977 ], [ 162.311364374266418, 69.539838365548121 ], [ 162.3788537948667, 69.572549547523579 ], [ 162.349294875158307, 69.618386542504879 ], [ 162.445516392267677, 69.640271512120535 ], [ 162.431769440628528, 69.677134817858786 ] ] ], [ [ [ 170.124870704000045, 69.773377874000062 ], [ 170.27527685699999, 69.773371433000079 ], [ 170.101484665000044, 69.687211061000085 ], [ 169.955210375000092, 69.726741718000085 ], [ 170.124870704000045, 69.773377874000062 ] ] ], [ [ [ 169.446462436000047, 69.849107164000031 ], [ 169.412282748000052, 69.763413804000038 ], [ 169.277598504000025, 69.759507554000038 ], [ 169.309906446000014, 69.664455471000053 ], [ 169.234711134, 69.59210846600007 ], [ 168.874522332000083, 69.567857164000031 ], [ 168.172536655000044, 69.695217190000051 ], [ 167.753754102000016, 69.83234284100007 ], [ 167.991058790000011, 69.957098700000074 ], [ 168.264659050000091, 70.024115302000041 ], [ 169.446462436000047, 69.849107164000031 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-YAN", "NAME_1": "Yamal-Nenets" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.130625847000033, 66.556341864000046 ], [ 69.870616082000083, 66.477850653000075 ], [ 69.545420769000032, 66.591009833000044 ], [ 69.575205925000034, 66.638251044000071 ], [ 69.424571160000085, 66.768377997000073 ], [ 69.25709069100003, 66.746283270000049 ], [ 69.130707227000073, 66.796576239000046 ], [ 69.472992384000065, 66.797674872000073 ], [ 69.516774936000047, 66.738959052000041 ], [ 69.635508660000085, 66.693833726000037 ], [ 69.54037519600007, 66.763657945000034 ], [ 70.049815300000034, 66.708929755000042 ], [ 70.079844597000033, 66.639105536000045 ], [ 70.027110222000033, 66.625230210000041 ], [ 70.130625847000033, 66.556341864000046 ] ] ], [ [ [ 65.037913577176994, 69.271049953167491 ], [ 65.902598504000082, 69.112982489000046 ], [ 65.635020379000082, 69.126654364000046 ], [ 65.689707879000082, 69.085028387000079 ], [ 67.090098504000082, 68.855658270000049 ], [ 67.129079623000052, 68.838609117000033 ], [ 67.039724155000044, 68.797064520000049 ], [ 67.196299675000034, 68.70734284100007 ], [ 67.583506707000083, 68.603338934000078 ], [ 67.793223504000082, 68.478583075000074 ], [ 68.134938998000052, 68.423407294000071 ], [ 68.258636915000068, 68.333889065000051 ], [ 68.184255405000044, 68.242132880000042 ], [ 68.262543165000068, 68.249090887000079 ], [ 68.288096550000034, 68.188299872000073 ], [ 68.650889519000032, 68.317857164000031 ], [ 68.561045769000032, 68.37250397300005 ], [ 68.92351321700005, 68.637274481000077 ], [ 69.01295006600003, 68.806463934000078 ], [ 69.10906009200005, 68.878973700000074 ], [ 68.951426629000082, 68.903225002000056 ], [ 69.218923373000052, 68.962144273000035 ], [ 68.686045769000032, 68.918443101000037 ], [ 68.458018425000034, 68.984564520000049 ], [ 68.026215040000068, 69.319403387000079 ], [ 68.104991082000083, 69.397040106000077 ], [ 68.106618686000047, 69.548732815000051 ], [ 68.03060957100007, 69.540594794000071 ], [ 68.040212436000047, 69.48969147300005 ], [ 67.824392123000052, 69.510728257000039 ], [ 67.629079623000052, 69.590765692000048 ], [ 67.01726321700005, 69.703070380000042 ], [ 66.971364780000044, 69.687730210000041 ], [ 66.99968509200005, 69.653225002000056 ], [ 66.855235222000033, 69.636867580000057 ], [ 66.957692905000044, 69.536851304000038 ], [ 66.795746290000068, 69.586167710000041 ], [ 66.76880944100003, 69.761623440000051 ], [ 66.884776238000086, 70.012884833000044 ], [ 66.97820071700005, 70.057603257000039 ], [ 66.985036655000044, 69.969549872000073 ], [ 67.143321160000085, 69.983140367000033 ], [ 67.327647332000083, 70.106024481000077 ], [ 67.279144727000073, 70.106024481000077 ], [ 67.271739129000082, 70.188869533000059 ], [ 67.24350019600007, 70.145249742000033 ], [ 67.094248894000032, 70.220892645000049 ], [ 67.193207227000073, 70.381577867000033 ], [ 67.266286655000044, 70.414536851000037 ], [ 67.292816602000073, 70.476629950000074 ], [ 67.215098504000082, 70.523911851000037 ], [ 67.334483269000032, 70.757798570000034 ], [ 67.257009311000047, 70.825588283000059 ], [ 67.138438347000033, 70.841782945000034 ], [ 66.68873131600003, 70.76984284100007 ], [ 66.608246290000068, 70.880682684000078 ], [ 66.889496290000068, 71.078680731000077 ], [ 66.819509311000047, 71.100978908000059 ], [ 66.73796634200005, 71.051988023000035 ], [ 66.772227410000085, 71.024115302000041 ], [ 66.690277540000068, 71.001369533000059 ], [ 66.62045332100007, 71.057847398000035 ], [ 66.811289910000085, 71.161200262000079 ], [ 66.912119988000086, 71.294745184000078 ], [ 67.588389519000032, 71.415106512000079 ], [ 67.947276238000086, 71.527573960000041 ], [ 68.255056186000047, 71.688299872000073 ], [ 68.348806186000047, 71.675197658000059 ], [ 68.307790561000047, 71.716742255000042 ], [ 68.468516472000033, 71.825995184000078 ], [ 68.643728061000047, 72.033189195000034 ], [ 68.82162519600007, 72.326320705000057 ], [ 68.852305535000085, 72.466864325000074 ], [ 68.91724694100003, 72.483954169000071 ], [ 68.869395379000082, 72.532375393000052 ], [ 68.976817254000082, 72.65570709800005 ], [ 69.054453972000033, 72.662054755000042 ], [ 68.975759311000047, 72.695990302000041 ], [ 69.23178144600007, 72.804510809000078 ], [ 69.353770379000082, 72.95258209800005 ], [ 69.794932488000086, 72.963690497000073 ], [ 69.556651238000086, 72.913763739000046 ], [ 69.588226759000065, 72.878485419000071 ], [ 71.563243035000085, 72.915961005000042 ], [ 72.008311394000032, 72.833970445000034 ], [ 71.816579623000052, 72.812323309000078 ], [ 71.886485222000033, 72.796616929000038 ], [ 72.131032748000052, 72.831610419000071 ], [ 72.836924675000034, 72.709906317000048 ], [ 72.721446160000085, 72.703029690000051 ], [ 72.809580925000034, 72.655218817000048 ], [ 72.731455925000034, 72.597235419000071 ], [ 72.84498131600003, 72.520412502000056 ], [ 72.79851321700005, 72.413275458000044 ], [ 72.87427819100003, 72.281073309000078 ], [ 72.576996290000068, 72.044501044000071 ], [ 72.522227410000085, 71.922267971000053 ], [ 72.35084069100003, 71.864203192000048 ], [ 72.34498131600003, 71.708156643000052 ], [ 72.233897332000083, 71.685370184000078 ], [ 72.16732832100007, 71.598863023000035 ], [ 71.838145379000082, 71.532416083000044 ], [ 71.803396030000044, 71.480292059000078 ], [ 72.105723504000082, 71.290350653000075 ], [ 72.636485222000033, 71.131659247000073 ], [ 72.676442905000044, 71.089544989000046 ], [ 72.63209069100003, 71.011053778000075 ], [ 72.836924675000034, 70.859605210000041 ], [ 72.775401238000029, 70.695135809000078 ], [ 72.68327884200005, 70.616603908000059 ], [ 72.775401238000029, 70.538072007000039 ], [ 72.771332227000073, 70.42523834800005 ], [ 72.435557488000029, 70.285874742000033 ], [ 72.621592644000032, 70.161688544000071 ], [ 72.491953972000033, 70.041205145000049 ], [ 72.691661004000082, 69.836859442000048 ], [ 72.649587436000047, 69.748114325000074 ], [ 72.501719597000033, 69.646714585000041 ], [ 72.63835696700005, 69.441351630000042 ], [ 72.488047722000033, 69.414007880000042 ], [ 72.613291863000029, 69.359361070000034 ], [ 72.64771569100003, 69.292222398000035 ], [ 72.47787519600007, 69.176947333000044 ], [ 72.57740319100003, 68.940375067000048 ], [ 72.851817254000082, 68.797756252000056 ], [ 73.539073113000029, 68.581000067000048 ], [ 73.634613477000073, 68.51703522300005 ], [ 73.646250847000033, 68.457831122000073 ], [ 73.604991082000083, 68.432196356000077 ], [ 73.604665561000047, 68.482367255000042 ], [ 73.533702019000032, 68.481512762000079 ], [ 73.39771569100003, 68.360500393000052 ], [ 73.090830925000034, 68.214260158000059 ], [ 73.137054884000065, 68.166245835000041 ], [ 73.072764519000032, 68.090399481000077 ], [ 73.20443769600007, 67.957220770000049 ], [ 73.195485873000052, 67.849514065000051 ], [ 73.07154381600003, 67.815578518000052 ], [ 73.151377800000034, 67.73187897300005 ], [ 73.114268425000034, 67.690375067000048 ], [ 73.039398634000065, 67.728583075000074 ], [ 72.852061394000032, 67.635321356000077 ], [ 72.58130944100003, 67.620184637000079 ], [ 72.53288821700005, 67.520086981000077 ], [ 72.39185631600003, 67.467474677000041 ], [ 72.454274936000047, 67.400620835000041 ], [ 72.402598504000082, 67.328070380000042 ], [ 72.048350457000083, 67.302883205000057 ], [ 72.051768425000034, 67.267523505000042 ], [ 72.21420332100007, 67.223781643000052 ], [ 72.22592207100007, 67.159491278000075 ], [ 72.127940300000034, 67.206773179000038 ], [ 72.138519727000073, 67.159654039000031 ], [ 71.913259311000047, 67.132310289000031 ], [ 72.01498457100007, 67.111273505000042 ], [ 71.994639519000032, 67.055975653000075 ], [ 71.747569207000083, 66.916083075000074 ], [ 71.301931186000047, 66.953558661000045 ], [ 71.51490319100003, 66.878485419000071 ], [ 71.480723504000082, 66.826971747000073 ], [ 71.584239129000082, 66.731634833000044 ], [ 71.576914910000085, 66.658758856000077 ], [ 71.16537519600007, 66.658758856000077 ], [ 71.23365319100003, 66.625230210000041 ], [ 71.056813998000052, 66.625189520000049 ], [ 71.123789910000085, 66.58429596600007 ], [ 71.079844597000033, 66.569037177000041 ], [ 70.939463738000086, 66.58429596600007 ], [ 70.980316602000073, 66.535874742000033 ], [ 70.688649936000047, 66.515366929000038 ], [ 70.413259311000047, 66.563177802000041 ], [ 70.295176629000082, 66.638251044000071 ], [ 70.679942254000082, 66.716009833000044 ], [ 70.723399285000085, 66.761786200000074 ], [ 70.31568444100003, 66.679877020000049 ], [ 70.172536655000044, 66.707098700000074 ], [ 70.178477410000085, 66.741929429000038 ], [ 70.067067905000044, 66.759833075000074 ], [ 69.89779707100007, 66.871649481000077 ], [ 69.836599155000044, 66.816310940000051 ], [ 69.602549675000034, 66.837551174000055 ], [ 69.637217644000032, 66.796576239000046 ], [ 69.597992384000065, 66.789048570000034 ], [ 69.39771569100003, 66.830226955000057 ], [ 68.965017123000052, 66.809556382000039 ], [ 69.103770379000082, 66.771307684000078 ], [ 69.11264082100007, 66.618841864000046 ], [ 69.386485222000033, 66.513373114000046 ], [ 69.729340040000068, 66.484076239000046 ], [ 70.36264082100007, 66.334418036000045 ], [ 71.428884311000047, 66.355943101000037 ], [ 71.678721550000034, 66.323635158000059 ], [ 71.832855665000068, 66.234523830000057 ], [ 71.990082227000073, 66.23078034100007 ], [ 72.30632571700005, 66.28851959800005 ], [ 72.37623131600003, 66.34125397300005 ], [ 72.366709832000083, 66.471177476000037 ], [ 72.412364129000082, 66.508530992000033 ], [ 72.288828972000033, 66.501125393000052 ], [ 72.317556186000047, 66.527533270000049 ], [ 72.493662957000083, 66.618801174000055 ], [ 72.942393425000034, 66.656683661000045 ], [ 73.003103061000047, 66.739447333000044 ], [ 73.492360873000052, 66.823431708000044 ], [ 73.657074415000068, 66.941961981000077 ], [ 73.797129754000082, 66.964097398000035 ], [ 73.919932488000029, 67.077704169000071 ], [ 73.892100457000083, 67.118719794000071 ], [ 73.952891472000033, 67.230943101000037 ], [ 73.899587436000047, 67.296210028000075 ], [ 74.098317905000044, 67.431870835000041 ], [ 74.748871290000068, 67.706529039000031 ], [ 74.824961785000085, 67.940497137000079 ], [ 74.725433790000068, 68.152411200000074 ], [ 74.331553582000083, 68.385565497000073 ], [ 74.457774285000085, 68.506293036000045 ], [ 74.41342207100007, 68.619533596000053 ], [ 74.481130405000044, 68.720526434000078 ], [ 75.19068444100003, 68.874823309000078 ], [ 76.113129102000073, 68.977728583000044 ], [ 76.60906009200005, 68.966009833000044 ], [ 76.696299675000034, 68.85773346600007 ], [ 76.61882571700005, 68.805365302000041 ], [ 76.662608269000032, 68.762640692000048 ], [ 77.006683790000068, 68.653143622000073 ], [ 77.113780144000032, 68.567124742000033 ], [ 77.127452019000032, 68.605861721000053 ], [ 77.325694207000083, 68.523342190000051 ], [ 77.247813347000033, 68.456935940000051 ], [ 77.295095248000052, 68.381740627000056 ], [ 77.161875847000033, 68.293646552000041 ], [ 77.356618686000047, 68.232896226000037 ], [ 77.216563347000033, 68.104966539000031 ], [ 77.241221550000034, 68.044012762000079 ], [ 77.192556186000047, 67.985174872000073 ], [ 77.305186394000032, 67.910101630000042 ], [ 77.216563347000033, 67.831244208000044 ], [ 77.08326256600003, 67.833075262000079 ], [ 77.120290561000047, 67.768540757000039 ], [ 77.675547722000033, 67.617173570000034 ], [ 77.69304446700005, 67.545314846000053 ], [ 79.052500847000033, 67.570542710000041 ], [ 78.80600019600007, 67.625189520000049 ], [ 78.868011915000068, 67.653143622000073 ], [ 78.564707879000082, 67.604071356000077 ], [ 78.463389519000032, 67.632635809000078 ], [ 78.610362175000034, 67.662543036000045 ], [ 78.438487175000034, 67.702541408000059 ], [ 78.400157097000033, 67.637396552000041 ], [ 78.326833530000044, 67.679754950000074 ], [ 77.87427819100003, 67.685288804000038 ], [ 77.94890384200005, 67.728216864000046 ], [ 77.775726759000065, 67.778387762000079 ], [ 77.738047722000033, 67.739813544000071 ], [ 77.494151238000029, 67.751288153000075 ], [ 77.459483269000032, 67.786281643000052 ], [ 77.478770379000082, 67.907294012000079 ], [ 77.586436394000032, 67.947943427000041 ], [ 77.469737175000034, 67.995103257000039 ], [ 77.536957227000073, 68.128607489000046 ], [ 77.708506707000083, 68.221869208000044 ], [ 78.172618035000085, 68.274359442000048 ], [ 78.090098504000082, 68.36001211100006 ], [ 77.958506707000083, 68.398382880000042 ], [ 77.908539259000065, 68.468695380000042 ], [ 77.95630944100003, 68.495428778000075 ], [ 77.927907748000052, 68.519029039000031 ], [ 77.786875847000033, 68.514593817000048 ], [ 77.715098504000082, 68.621039130000042 ], [ 77.743988477000073, 68.715073960000041 ], [ 77.646983269000032, 68.911118882000039 ], [ 76.92904707100007, 69.009344794000071 ], [ 76.731211785000085, 69.131252346000053 ], [ 76.427582227000073, 69.144273179000038 ], [ 76.042002800000034, 69.239081122000073 ], [ 75.508555535000085, 69.261419989000046 ], [ 75.129242384000065, 69.157294012000079 ], [ 75.091970248000052, 69.132798570000034 ], [ 75.15398196700005, 69.119208075000074 ], [ 75.10710696700005, 69.103949286000045 ], [ 74.77279707100007, 69.081244208000044 ], [ 74.31373131600003, 69.146389065000051 ], [ 73.961273634000065, 69.083807684000078 ], [ 73.77662194100003, 69.153957424000055 ], [ 73.756602410000085, 69.199042059000078 ], [ 73.899587436000047, 69.420843817000048 ], [ 73.515961134000065, 69.74640534100007 ], [ 73.659922722000033, 69.85968659100007 ], [ 73.764821811000047, 70.079046942000048 ], [ 73.707692905000044, 70.161322333000044 ], [ 74.316172722000033, 70.520331122000073 ], [ 74.317881707000083, 70.667792059000078 ], [ 73.927500847000033, 70.855373440000051 ], [ 73.89576256600003, 70.972601630000042 ], [ 73.703623894000032, 71.071437893000052 ], [ 73.556162957000083, 71.255113023000035 ], [ 73.022471550000034, 71.428778387000079 ], [ 73.498545769000032, 71.664943752000056 ], [ 73.524912957000083, 71.706244208000044 ], [ 73.470225457000083, 71.773423570000034 ], [ 73.525889519000032, 71.822211005000042 ], [ 74.331553582000083, 71.95571523600006 ], [ 74.994883660000085, 72.137844143000052 ], [ 75.075694207000083, 72.210150458000044 ], [ 75.111094597000033, 72.346421617000033 ], [ 75.058848504000082, 72.595038153000075 ], [ 74.999522332000083, 72.673895575000074 ], [ 74.74154707100007, 72.814398505000042 ], [ 75.036631707000083, 72.881659247000073 ], [ 75.522308790000068, 72.759833075000074 ], [ 75.338226759000065, 72.683172919000071 ], [ 75.420909050000034, 72.696844794000071 ], [ 75.68718509200005, 72.58539459800005 ], [ 75.701996290000068, 72.547023830000057 ], [ 75.596853061000047, 72.547105210000041 ], [ 75.556488477000073, 72.49750397300005 ], [ 75.66724694100003, 72.333075262000079 ], [ 75.754730665000068, 72.306382554000038 ], [ 75.735524936000047, 72.257391669000071 ], [ 75.517832879000082, 72.153225002000056 ], [ 75.51693769600007, 72.076402085000041 ], [ 75.414073113000029, 72.031439520000049 ], [ 75.438975457000083, 71.985337632000039 ], [ 75.253672722000033, 71.942206122000073 ], [ 75.283539259000065, 71.894232489000046 ], [ 75.224131707000083, 71.842230536000045 ], [ 75.227549675000034, 71.777411200000074 ], [ 75.491709832000083, 71.666083075000074 ], [ 75.392425977000073, 71.617865302000041 ], [ 75.53288821700005, 71.542303778000075 ], [ 75.433767123000052, 71.501654364000046 ], [ 75.441905144000032, 71.462225653000075 ], [ 75.24154707100007, 71.453558661000045 ], [ 75.26303144600007, 71.36554596600007 ], [ 76.108409050000034, 71.204494533000059 ], [ 76.888926629000082, 71.190415757000039 ], [ 76.914235873000052, 71.072455145000049 ], [ 76.96257571700005, 71.113470770000049 ], [ 76.92904707100007, 71.160589911000045 ], [ 77.00513756600003, 71.184475002000056 ], [ 77.782725457000083, 71.142482815000051 ], [ 77.865407748000052, 71.110052802000041 ], [ 77.94890384200005, 70.976263739000046 ], [ 78.41138756600003, 70.895453192000048 ], [ 79.053396030000044, 70.941961981000077 ], [ 79.018321160000085, 70.968817450000074 ], [ 79.10279381600003, 71.020249742000033 ], [ 78.84498131600003, 71.013251044000071 ], [ 78.785655144000032, 70.99054596600007 ], [ 78.90162194100003, 70.976263739000046 ], [ 78.757578972000033, 70.93500397300005 ], [ 78.564707879000082, 70.962551174000055 ], [ 78.442393425000034, 70.914252020000049 ], [ 78.463389519000032, 71.024115302000041 ], [ 78.559743686000047, 71.045152085000041 ], [ 78.497569207000083, 71.078680731000077 ], [ 78.525401238000029, 71.092962958000044 ], [ 78.346202019000032, 71.099798895000049 ], [ 78.497569207000083, 71.045152085000041 ], [ 78.430430535000085, 71.044745184000078 ], [ 78.23755944100003, 71.10968659100007 ], [ 78.311045769000032, 71.20844147300005 ], [ 78.27898196700005, 71.258937893000052 ], [ 77.928477410000085, 71.257473049000055 ], [ 77.901133660000085, 71.312689520000049 ], [ 77.988291863000029, 71.374741929000038 ], [ 77.711924675000034, 71.281317450000074 ], [ 77.435557488000029, 71.333197333000044 ], [ 77.524912957000083, 71.305243231000077 ], [ 77.492198113000029, 71.301336981000077 ], [ 77.103526238000029, 71.423976955000057 ], [ 76.712657097000033, 71.463446356000077 ], [ 76.581065300000034, 71.52875397300005 ], [ 76.272308790000068, 71.57290273600006 ], [ 76.263519727000073, 71.653143622000073 ], [ 75.996836785000085, 71.907904364000046 ], [ 76.353770379000082, 71.999090887000079 ], [ 76.87818444100003, 72.050034898000035 ], [ 77.584646030000044, 71.831122137000079 ], [ 78.109548373000052, 71.880438544000071 ], [ 78.225759311000047, 71.982570705000057 ], [ 77.98560631600003, 72.109523830000057 ], [ 77.71257571700005, 72.115179755000042 ], [ 77.510590040000068, 72.062079169000071 ], [ 77.377207879000082, 72.110174872000073 ], [ 77.490733269000032, 72.175441799000055 ], [ 77.441742384000065, 72.20962148600006 ], [ 77.47388756600003, 72.222357489000046 ], [ 77.668223504000082, 72.19281647300005 ], [ 78.124522332000083, 72.384588934000078 ], [ 78.502764071404727, 72.381906521968403 ], [ 78.447439406003753, 72.347573961269291 ], [ 78.655798781188764, 72.258328762262522 ], [ 78.664687128108426, 72.219519762227208 ], [ 78.609910109364023, 72.20820262345228 ], [ 78.914180943295889, 72.116218574227787 ], [ 79.436319615158084, 72.039634101132833 ], [ 79.694908481940843, 72.057695014013632 ], [ 80.339106886673449, 71.88979828616192 ], [ 80.036386346352742, 71.830757962010296 ], [ 80.119378696769388, 71.778719794382994 ], [ 80.076177199218307, 71.764663805390285 ], [ 80.102325474241184, 71.664566554702731 ], [ 79.868231236082636, 71.601650498771448 ], [ 79.371000603994617, 71.612373359243122 ], [ 79.338444451650105, 71.597903958201073 ], [ 79.388984003409007, 71.543488675561889 ], [ 79.357978142876959, 71.494266873417416 ], [ 79.143210891269575, 71.415227770045533 ], [ 79.227030063986206, 71.320814928066454 ], [ 79.565200637399471, 71.277355048096979 ], [ 79.954427524710468, 71.134107978500367 ], [ 80.537647739851252, 71.059358018957369 ], [ 80.564726189961675, 70.860377916207824 ], [ 80.68585574684522, 70.801208400846974 ], [ 80.592838168846356, 70.722246812740195 ], [ 80.757479283442137, 70.655584215339218 ], [ 80.609581333012102, 70.50109752133352 ], [ 80.794582961134722, 70.438336494133864 ], [ 80.747143995698821, 70.394049790965028 ], [ 80.569067009734681, 70.46081574205283 ], [ 80.180873651197999, 70.434305731824054 ], [ 80.182734003171674, 70.393274645508427 ], [ 80.095400832082703, 70.395419217422898 ], [ 80.095090772820868, 70.353432114900158 ], [ 79.880426874000989, 70.278087877053849 ], [ 79.717232701128239, 70.279586493821625 ], [ 79.496367628763039, 70.111741441913978 ], [ 79.333483514252748, 70.147604886156557 ], [ 79.355497674178309, 70.049962267544572 ], [ 79.196644321977828, 70.050427355537977 ], [ 79.192613559668018, 70.010352280932977 ], [ 79.133805780412388, 70.008414415492837 ], [ 79.171839634091782, 69.963326728445736 ], [ 78.87986779176515, 69.879662584460675 ], [ 79.130395134827552, 69.738792629875945 ], [ 79.011952753117043, 69.70339427452609 ], [ 79.491096633003167, 69.654456692322469 ], [ 79.649846633315462, 69.483872789297777 ], [ 79.814074334962527, 69.423256334012592 ], [ 79.86461388492279, 69.348583888835378 ], [ 80.734224888267931, 69.308121243300718 ], [ 80.966872185602824, 69.209109199130182 ], [ 81.323852979831145, 69.285641995381752 ], [ 81.571073032794175, 69.27329132783251 ], [ 81.636081983796487, 69.305563260236227 ], [ 81.626160109001773, 69.414781399142214 ], [ 81.684967889156724, 69.446510729186798 ], [ 81.929397414159325, 69.349307359247177 ], [ 81.761449008564853, 69.252362373524704 ], [ 81.841030715195302, 69.196396796375041 ], [ 82.45308637873336, 69.161876940168611 ], [ 82.493704054798229, 69.105394599081478 ], [ 82.328959589213639, 69.046483466139023 ], [ 82.49277387881142, 68.986797186840647 ], [ 82.55158165896637, 68.826910304966589 ], [ 82.787432896311088, 68.794974270246371 ], [ 82.803452590064921, 68.741799221057192 ], [ 83.038787062572851, 68.667333483253628 ], [ 82.46889936691224, 68.576641344322525 ], [ 82.679325798746561, 68.49178864193226 ], [ 82.702683546708272, 68.298002021476066 ], [ 82.5741125828294, 68.255368963806575 ], [ 82.533288202088841, 68.170309556740619 ], [ 82.394588657840245, 68.176614081274806 ], [ 82.364616326981889, 67.945878810958334 ], [ 81.72558556522165, 67.923812975088708 ], [ 81.895084262628586, 67.788834133888145 ], [ 82.100343052389917, 67.724393622767423 ], [ 82.11233198383394, 67.686411445032149 ], [ 82.049183383905984, 67.65457876220006 ], [ 82.10964480956028, 67.609000148737834 ], [ 82.389007602818594, 67.534198513250772 ], [ 82.37443484898904, 67.480635891333293 ], [ 82.251341587344371, 67.419244289692188 ], [ 82.357898391297681, 67.330851752306501 ], [ 82.117292922130616, 67.243802802057644 ], [ 83.161880324217577, 66.817989000092268 ], [ 83.186891716779257, 66.746933906074901 ], [ 83.296549107055625, 66.673243312828617 ], [ 83.088913202282413, 66.609732977694762 ], [ 83.090980258931779, 66.459173692311992 ], [ 83.53539757703652, 66.192600817074037 ], [ 83.292828404007594, 66.06599355705697 ], [ 83.521238234356986, 65.908328762362487 ], [ 83.518137648033985, 65.822494208041235 ], [ 83.592345005217794, 65.775416978710552 ], [ 84.030974562725874, 65.793038642019667 ], [ 84.168330519837582, 65.703380031862935 ], [ 84.319432407579484, 65.68441478141699 ], [ 84.29741824675466, 65.617493802496938 ], [ 84.195822381997289, 65.595376288884609 ], [ 84.498336215843665, 65.50380564991076 ], [ 84.550219353840077, 65.433422350361127 ], [ 84.506811150713986, 65.394509995739668 ], [ 84.583912387746466, 65.291208807740247 ], [ 84.312817823783519, 65.098455716058425 ], [ 84.386818475392317, 64.993862616866238 ], [ 84.283362257761951, 64.908906561688468 ], [ 84.92011925729787, 64.927871813033732 ], [ 84.966731397735771, 64.899243069312149 ], [ 84.939239535576064, 64.823278713841546 ], [ 85.092718540128487, 64.810876370348183 ], [ 85.16082807835312, 64.750569973425513 ], [ 85.558943312583779, 64.829996650425073 ], [ 85.837996046580258, 64.777338365173364 ], [ 85.810194126058036, 64.647733873419497 ], [ 85.916027459599547, 64.588486843692863 ], [ 85.84151004405328, 64.459166571879734 ], [ 86.030232375223875, 64.264553128224236 ], [ 85.934217563689572, 64.122752996753377 ], [ 85.957885370013798, 64.059604396825421 ], [ 85.533518507972701, 63.936717840755705 ], [ 85.373114862161117, 63.808405260194547 ], [ 85.269451938955797, 63.651463935012544 ], [ 85.031843703324228, 63.586351630323463 ], [ 85.096749302438297, 63.534158433964535 ], [ 85.299114210552318, 63.517415269798846 ], [ 85.377869093983463, 63.466513983733307 ], [ 85.364846632865749, 63.404760646886302 ], [ 85.418900181198353, 63.349208482685299 ], [ 85.672114699433791, 63.359750475104306 ], [ 85.530934685587226, 63.262805488482456 ], [ 85.469439732057936, 63.14919485116144 ], [ 85.58633182195598, 63.07418651009931 ], [ 85.496104771018338, 62.986233222285364 ], [ 85.518325637418172, 62.93256724758038 ], [ 85.225216912630401, 62.801231594162687 ], [ 85.090031365854827, 62.637985745345816 ], [ 84.894074335062498, 62.541066596246367 ], [ 84.871750115875102, 62.458616848188967 ], [ 84.435704379853235, 62.177962145536583 ], [ 84.289046664671787, 62.276224880873542 ], [ 84.236956821999684, 62.376709703390077 ], [ 84.019192335957484, 62.396760159453777 ], [ 83.788818800846968, 62.563106593694329 ], [ 83.282906529212937, 62.460528876106707 ], [ 82.758080682177706, 62.670128486540364 ], [ 82.749295688944869, 62.75389598331293 ], [ 82.164938592242208, 62.80944814751399 ], [ 81.783979934226522, 62.688447780940294 ], [ 81.339355909647452, 62.825777900529658 ], [ 81.320752395306783, 62.884844062203683 ], [ 81.174714796850367, 62.971660468455809 ], [ 81.114976840708607, 63.115527656576035 ], [ 80.584156529300344, 63.082558092182182 ], [ 80.552943964092606, 63.000857652058983 ], [ 79.914740024632408, 62.792033189779829 ], [ 79.820068801134255, 62.603724269759198 ], [ 78.793051384613648, 62.615093085377566 ], [ 78.379433220566625, 62.56775747272917 ], [ 78.026276483073218, 62.461097316887617 ], [ 77.889023878748958, 62.557267158052866 ], [ 77.158009067764226, 62.791464748998919 ], [ 77.026234164774849, 62.975019436297941 ], [ 76.688373650623419, 63.039408271474542 ], [ 76.297389764126308, 62.949646308530305 ], [ 76.240235630370023, 63.018841051473316 ], [ 75.861240676216198, 63.111083483116204 ], [ 75.363596632978215, 63.107827867162314 ], [ 74.914528435838633, 63.0320185413226 ], [ 74.507421502800071, 63.043232327310022 ], [ 74.24108117065947, 63.172009995864585 ], [ 73.368059522628812, 63.206943264120298 ], [ 73.103786248936217, 63.436257432934156 ], [ 72.655028111058471, 63.280168769373176 ], [ 72.160794711606627, 63.299237371707306 ], [ 71.987678663939164, 63.201930649879557 ], [ 71.60796024027286, 63.185239163456572 ], [ 71.551012811192265, 63.589968981483253 ], [ 71.387611931845129, 63.674614977399244 ], [ 70.923454216938524, 63.687224026467618 ], [ 70.813176710836501, 63.821711941253056 ], [ 70.637683547257893, 63.903231513323647 ], [ 70.558308547101717, 64.002243557494126 ], [ 70.775762973882081, 64.11432973872644 ], [ 70.768941685410425, 64.19354971015099 ], [ 70.472732375198916, 64.251608181472363 ], [ 70.30685102715313, 64.343566393174456 ], [ 69.99989301894766, 64.315893662962139 ], [ 69.693141717216463, 64.399997057418261 ], [ 69.378535598239239, 64.390385240086744 ], [ 69.230844354283477, 64.470018621761938 ], [ 68.85918745343821, 64.435705471130575 ], [ 68.990445590691422, 64.329613756069932 ], [ 68.882131789350581, 64.222643540966601 ], [ 68.425002069389961, 64.295972399006985 ], [ 67.798890415060555, 64.031647447571629 ], [ 67.679104445313897, 64.07903473616409 ], [ 67.280679151821346, 64.080610867297651 ], [ 67.166164177834503, 64.125130113563841 ], [ 67.170918409656849, 64.162853908880777 ], [ 66.818691848150252, 64.225614936080433 ], [ 66.796367628962855, 64.326151435440352 ], [ 66.887318150312353, 64.378137926224269 ], [ 66.936307407560776, 64.487046006767741 ], [ 66.681645949401002, 64.557455146537734 ], [ 66.465638461645653, 64.511979885863013 ], [ 66.019050734104042, 64.594817205749393 ], [ 65.399657017257482, 64.571356105899554 ], [ 65.175898065043611, 64.445782376455497 ], [ 64.601152784773149, 64.4373074406858 ], [ 64.477025995253427, 64.36020620455264 ], [ 64.016175572244833, 64.357441515013875 ], [ 63.887914666728477, 64.284396877813606 ], [ 63.611445754218153, 64.268480536847278 ], [ 63.413421664977818, 64.328218492089718 ], [ 63.505302362314126, 64.375192369532215 ], [ 63.458276808927565, 64.45947663024225 ], [ 63.236998325412344, 64.523555406157016 ], [ 62.89986128077345, 64.476607368035559 ], [ 62.543190545807022, 64.550272121960802 ], [ 62.592593215104785, 64.64044749605506 ], [ 62.806430291624622, 64.735170397295974 ], [ 62.810461053035112, 64.835732734178293 ], [ 62.67765262217074, 64.891233222435233 ], [ 62.801469354227265, 65.051430161772544 ], [ 62.816662224781794, 65.291570542946147 ], [ 62.481282180228391, 65.349293118382661 ], [ 62.373588494713204, 65.448873603334107 ], [ 62.410588819618283, 65.515407010425179 ], [ 62.325012647715482, 65.540702622927654 ], [ 62.278400506378262, 65.62291982698838 ], [ 62.018468051559296, 65.717125963392448 ], [ 62.850665317950018, 65.872982082956753 ], [ 62.802812941364095, 65.931479803849811 ], [ 62.884151646281396, 65.979848945272579 ], [ 62.82141645660414, 66.012456774460532 ], [ 62.862240838244077, 66.074726874345743 ], [ 63.105430128897297, 66.249909980461211 ], [ 63.295496047204779, 66.239212958411258 ], [ 63.24154585076036, 66.328044746268006 ], [ 63.414868604902153, 66.480128485940838 ], [ 63.540959100082375, 66.470826727871156 ], [ 63.808539666572301, 66.547152818547715 ], [ 63.981345655877305, 66.651461696899787 ], [ 64.294814894191973, 66.663114733358213 ], [ 64.534076776222207, 66.727865301942074 ], [ 64.576451449674607, 66.797990220871952 ], [ 65.104687941395355, 66.894625149131286 ], [ 65.078126255222458, 67.041541245831809 ], [ 65.215792270696681, 67.075596014944097 ], [ 65.190160759611331, 67.144997464361438 ], [ 65.661863234300768, 67.310723781877016 ], [ 65.71260949073536, 67.340153510376183 ], [ 65.690905389172315, 67.384724433485758 ], [ 65.973782179903651, 67.402139391219919 ], [ 66.11000125455422, 67.488774929419435 ], [ 66.036000603844741, 67.575100410155756 ], [ 65.796118605089532, 67.567839871213039 ], [ 65.858750441079962, 67.605796210526648 ], [ 65.82423058487359, 67.63049754472587 ], [ 65.851619094245791, 67.654475410311932 ], [ 66.104730258794405, 67.646568915323144 ], [ 66.205912713301075, 67.693026027928795 ], [ 66.198161248842553, 67.739586494221328 ], [ 66.019567498940887, 67.798135891058507 ], [ 66.089537388239819, 67.92965241252881 ], [ 65.911253696700726, 67.960761624049667 ], [ 65.436553990274376, 67.919963080831508 ], [ 65.28979292230548, 68.012334702784301 ], [ 65.33061730304604, 68.090650335744385 ], [ 65.276563754713493, 68.23562856700471 ], [ 65.654318475417256, 68.556177477108861 ], [ 65.408338656803551, 68.661028957820122 ], [ 65.411232537551541, 68.723299059503972 ], [ 65.329997186321066, 68.725805365725023 ], [ 65.314907667654722, 68.803294176385123 ], [ 64.52756554611301, 68.899438178229332 ], [ 64.581102328709449, 68.946386217250108 ], [ 64.527255486851232, 69.023229071864137 ], [ 64.989966261833501, 69.204716702513792 ], [ 65.037913577176994, 69.271049953167491 ] ] ], [ [ [ 71.353363477000073, 73.385199286000045 ], [ 71.342539910000085, 73.331366278000075 ], [ 71.137461785000085, 73.292669989000046 ], [ 71.14380944100003, 73.347316799000055 ], [ 71.249522332000083, 73.417873440000051 ], [ 71.353363477000073, 73.385199286000045 ] ] ], [ [ [ 78.279063347000033, 72.55219147300005 ], [ 78.394541863000029, 72.491400458000044 ], [ 77.77076256600003, 72.30499909100007 ], [ 77.127126498000052, 72.277899481000077 ], [ 76.852712436000047, 72.333075262000079 ], [ 77.610199415000068, 72.634711005000042 ], [ 78.279063347000033, 72.55219147300005 ] ] ], [ [ [ 74.725352410000085, 73.107123114000046 ], [ 74.845225457000083, 73.093695380000042 ], [ 74.961599155000044, 73.059963283000059 ], [ 74.702647332000083, 73.07876211100006 ], [ 74.639414910000085, 72.960272528000075 ], [ 74.70826256600003, 72.901678778000075 ], [ 74.656260613000029, 72.858628648000035 ], [ 74.093272332000083, 73.027777411000045 ], [ 74.211680535000085, 73.114569403000075 ], [ 74.725352410000085, 73.107123114000046 ] ] ], [ [ [ 76.695078972000033, 73.186224677000041 ], [ 76.728851759000065, 73.14398834800005 ], [ 76.632578972000033, 73.131252346000053 ], [ 76.318369988000029, 73.148098049000055 ], [ 76.133311394000032, 73.208319403000075 ], [ 76.695078972000033, 73.186224677000041 ] ] ], [ [ [ 71.669118686000047, 73.227484442000048 ], [ 71.730236288000071, 73.034408710000037 ], [ 71.374501464000048, 73.178934145000085 ], [ 70.461924675000034, 73.051174221000053 ], [ 70.256602410000085, 73.038275458000044 ], [ 70.109548373000052, 73.100897528000075 ], [ 69.99935957100007, 73.060980536000045 ], [ 70.10084069100003, 73.017971096000053 ], [ 69.874847852000073, 73.038275458000044 ], [ 70.064952019000032, 73.237127997000073 ], [ 69.959320509000065, 73.398830471000053 ], [ 70.469574415000068, 73.499212958000044 ], [ 70.948741082000083, 73.517482815000051 ], [ 71.229177280000044, 73.464748440000051 ], [ 71.267832879000082, 73.443548895000049 ], [ 71.111501498000052, 73.447333075000074 ], [ 71.136485222000033, 73.392523505000042 ], [ 71.096446160000085, 73.313177802000041 ], [ 70.980316602000073, 73.265366929000038 ], [ 71.288910352000073, 73.251695054000038 ], [ 71.296397332000083, 73.295640367000033 ], [ 71.435720248000052, 73.35297272300005 ], [ 71.669118686000047, 73.227484442000048 ] ] ], [ [ [ 76.756602410000085, 73.449693101000037 ], [ 76.754405144000032, 73.429877020000049 ], [ 76.07195071700005, 73.525458075000074 ], [ 76.250743035000085, 73.554185289000031 ], [ 76.756602410000085, 73.449693101000037 ] ] ], [ [ [ 75.922618035000085, 73.523667710000041 ], [ 75.865896030000044, 73.501532294000071 ], [ 75.900645379000082, 73.470851955000057 ], [ 75.496429884000065, 73.449693101000037 ], [ 75.54428144600007, 73.498114325000074 ], [ 75.379730665000068, 73.449693101000037 ], [ 75.360036655000044, 73.396958726000037 ], [ 75.304209832000083, 73.408758856000077 ], [ 75.420909050000034, 73.498114325000074 ], [ 75.619395379000082, 73.553412177000041 ], [ 76.07935631600003, 73.559556382000039 ], [ 75.922618035000085, 73.523667710000041 ] ] ], [ [ [ 67.217295769000032, 69.42055898600006 ], [ 67.30827884200005, 69.437689520000049 ], [ 67.13217207100007, 69.36391836100006 ], [ 66.938649936000047, 69.439398505000042 ], [ 67.217295769000032, 69.42055898600006 ] ] ], [ [ [ 67.327972852000073, 69.572699286000045 ], [ 67.34498131600003, 69.52212148600006 ], [ 67.258962436000047, 69.438625393000052 ], [ 67.021820509000065, 69.476955471000053 ], [ 67.188243035000085, 69.570990302000041 ], [ 67.327972852000073, 69.572699286000045 ] ] ], [ [ [ 66.837087436000047, 70.391913153000075 ], [ 66.867523634000065, 70.380804755000042 ], [ 66.763682488000086, 70.403143622000073 ], [ 66.590342644000032, 70.473049221000053 ], [ 66.668467644000032, 70.538275458000044 ], [ 66.837087436000047, 70.391913153000075 ] ] ], [ [ [ 66.559255405000044, 70.544256903000075 ], [ 66.582530144000032, 70.501654364000046 ], [ 66.47820071700005, 70.535060940000051 ], [ 66.397308790000068, 70.63031647300005 ], [ 66.427989129000082, 70.799505927000041 ], [ 66.559255405000044, 70.544256903000075 ] ] ], [ [ [ 66.600433790000068, 70.913763739000046 ], [ 66.508474155000044, 70.827948309000078 ], [ 66.433929884000065, 70.827134507000039 ], [ 66.599619988000086, 71.004380601000037 ], [ 66.600433790000068, 70.913763739000046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-NEN", "NAME_1": "Nenets" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 51.299571160000085, 68.495428778000075 ], [ 51.498301629000082, 68.48859284100007 ], [ 50.792491082000083, 68.379299221000053 ], [ 51.171722852000073, 68.501450914000031 ], [ 51.299571160000085, 68.495428778000075 ] ] ], [ [ [ 55.369476759000065, 68.94790273600006 ], [ 55.506602410000085, 68.913763739000046 ], [ 55.225433790000068, 68.913763739000046 ], [ 55.239756707000083, 68.927394924000055 ], [ 55.369476759000065, 68.94790273600006 ] ] ], [ [ [ 54.643321160000085, 69.009344794000071 ], [ 54.697927280000044, 68.982001044000071 ], [ 54.570811394000032, 68.964056708000044 ], [ 54.628916863000086, 69.005845445000034 ], [ 54.643321160000085, 69.009344794000071 ] ] ], [ [ [ 44.214162803225165, 66.408148754847886 ], [ 44.360199415000068, 66.508246161000045 ], [ 44.394786004000082, 66.621812242000033 ], [ 44.563243035000085, 66.666205145000049 ], [ 44.364024285000085, 66.782294012000079 ], [ 44.466075066000087, 66.819728908000059 ], [ 44.521657748000052, 66.919419664000031 ], [ 44.302500847000033, 67.055975653000075 ], [ 44.377696160000085, 67.104437567000048 ], [ 43.815329312000074, 67.177452523000056 ], [ 43.766698982000037, 67.277688506000061 ], [ 44.041840040000068, 67.680405992000033 ], [ 44.144541863000086, 67.679429429000038 ], [ 44.069509311000047, 67.714422919000071 ], [ 44.130625847000033, 67.792181708000044 ], [ 44.087412957000083, 67.88507721600007 ], [ 44.268402540000068, 67.926825262000079 ], [ 44.124522332000083, 67.934271552000041 ], [ 44.213877800000034, 67.988959052000041 ], [ 44.13803144600007, 67.995103257000039 ], [ 44.41179446700005, 68.063421942000048 ], [ 44.180837436000047, 68.036078192000048 ], [ 44.227549675000034, 68.296779690000051 ], [ 43.273672822000037, 68.658176276000063 ], [ 43.477292802000079, 68.669065644000057 ], [ 43.984548373000052, 68.551336981000077 ], [ 45.582137180000075, 68.514198463000071 ], [ 45.943858269000089, 68.446234442000048 ], [ 46.029307488000086, 68.324042059000078 ], [ 46.534922722000033, 68.132554429000038 ], [ 46.461436394000089, 68.111802476000037 ], [ 46.540212436000047, 68.108384507000039 ], [ 46.557627800000034, 68.016180731000077 ], [ 46.702647332000083, 67.891669012000079 ], [ 46.698252800000034, 67.816473700000074 ], [ 45.350433790000068, 67.730414130000042 ], [ 45.303070509000065, 67.694037177000041 ], [ 45.35092207100007, 67.663031317000048 ], [ 45.314626498000052, 67.59210846600007 ], [ 45.028168165000068, 67.531927802000041 ], [ 44.918955925000034, 67.44086334800005 ], [ 44.912119988000086, 67.371975002000056 ], [ 45.055047779000063, 67.283797493000066 ], [ 45.593893033000086, 67.158239759000082 ], [ 45.824473504000082, 66.89907461100006 ], [ 46.025157097000033, 66.833400783000059 ], [ 46.597911004000082, 66.857977606000077 ], [ 46.406748894000089, 66.746161200000074 ], [ 46.58334394600007, 66.815497137000079 ], [ 47.40984134200005, 66.929266669000071 ], [ 47.58139082100007, 66.869859117000033 ], [ 47.606618686000047, 66.946112372000073 ], [ 47.742035352000073, 67.03070709800005 ], [ 47.749766472000033, 67.121323960000041 ], [ 47.689463738000086, 67.196437893000052 ], [ 47.787119988000086, 67.251532294000071 ], [ 47.770355665000068, 67.337836005000042 ], [ 47.947927280000044, 67.444322007000039 ], [ 47.824717644000089, 67.560288804000038 ], [ 47.845713738000086, 67.600897528000075 ], [ 48.052256707000083, 67.651922919000071 ], [ 48.099375847000033, 67.639471747000073 ], [ 48.092946811000047, 67.592230536000045 ], [ 48.255707227000073, 67.682684637000079 ], [ 48.486501498000052, 67.664292710000041 ], [ 48.699961785000085, 67.715887762000079 ], [ 49.106700066000087, 67.639471747000073 ], [ 48.777842644000089, 67.727362372000073 ], [ 48.793630405000044, 67.831244208000044 ], [ 48.585948113000086, 67.934271552000041 ], [ 48.842784050000034, 67.865057684000078 ], [ 49.133311394000089, 67.862616278000075 ], [ 50.017832879000082, 68.091294664000031 ], [ 49.846527540000068, 68.016180731000077 ], [ 50.001149936000047, 68.05805084800005 ], [ 50.778819207000083, 68.379299221000053 ], [ 51.058848504000082, 68.351385809000078 ], [ 52.17709394600007, 68.582424221000053 ], [ 52.217051629000082, 68.584784247000073 ], [ 52.051768425000034, 68.492417710000041 ], [ 52.36101321700005, 68.47492096600007 ], [ 52.135590040000068, 68.379299221000053 ], [ 52.248545769000032, 68.317694403000075 ], [ 52.40202884200005, 68.337713934000078 ], [ 52.731293165000068, 68.474188544000071 ], [ 52.491384311000047, 68.591538804000038 ], [ 52.63445071700005, 68.65851471600007 ], [ 52.410655144000032, 68.586493231000077 ], [ 52.279063347000033, 68.597805080000057 ], [ 52.328461134000065, 68.63344961100006 ], [ 53.250010613000086, 68.878404039000031 ], [ 53.87859134200005, 68.974107164000031 ], [ 54.561289910000085, 68.999701239000046 ], [ 53.594899936000047, 68.906927802000041 ], [ 53.665537957000083, 68.866278387000079 ], [ 53.73210696700005, 68.865912177000041 ], [ 53.691172722000033, 68.885809637000079 ], [ 53.728037957000083, 68.897447007000039 ], [ 54.026215040000068, 68.845445054000038 ], [ 53.865000847000033, 68.797919012000079 ], [ 53.81771894600007, 68.689154364000046 ], [ 53.720469597000033, 68.656927802000041 ], [ 53.904470248000052, 68.507310289000031 ], [ 53.944346550000034, 68.405991929000038 ], [ 53.803721550000034, 68.344549872000073 ], [ 53.608897332000083, 68.413478908000059 ], [ 53.574473504000082, 68.399807033000059 ], [ 53.691172722000033, 68.344549872000073 ], [ 53.440440300000034, 68.37250397300005 ], [ 53.210703972000033, 68.269354559000078 ], [ 53.992523634000065, 68.221380927000041 ], [ 54.18490644600007, 68.320542710000041 ], [ 54.218760613000086, 68.317857164000031 ], [ 54.173106316000087, 68.261786200000074 ], [ 54.203298373000052, 68.209540106000077 ], [ 54.504405144000032, 68.312201239000046 ], [ 54.69109134200005, 68.175970770000049 ], [ 54.831879102000073, 68.17328522300005 ], [ 54.924489780000044, 68.252671617000033 ], [ 54.856130405000044, 68.324042059000078 ], [ 54.908050977000073, 68.329494533000059 ], [ 54.936696811000047, 68.398423570000034 ], [ 55.392914259000065, 68.564276434000078 ], [ 55.699554884000065, 68.576564846000053 ], [ 55.997080925000034, 68.66046784100007 ], [ 56.504405144000032, 68.627834377000056 ], [ 56.49350019600007, 68.584784247000073 ], [ 56.629649285000085, 68.64203522300005 ], [ 56.848399285000085, 68.571600653000075 ], [ 57.329844597000033, 68.56476471600007 ], [ 57.604014519000032, 68.742417710000041 ], [ 57.929535352000073, 68.751044012000079 ], [ 57.980723504000082, 68.793646552000041 ], [ 57.95671634200005, 68.845526434000078 ], [ 58.171153191000087, 68.889349677000041 ], [ 58.245127800000034, 68.888413804000038 ], [ 58.203623894000032, 68.832098700000074 ], [ 58.264170769000032, 68.781195380000042 ], [ 58.377940300000034, 68.756048895000049 ], [ 58.336924675000034, 68.735581773000035 ], [ 58.424082879000082, 68.742743231000077 ], [ 58.285411004000082, 68.800482489000046 ], [ 58.270518425000034, 68.893703518000052 ], [ 58.878754102000073, 69.003119208000044 ], [ 59.223887566000087, 68.999701239000046 ], [ 58.891856316000087, 68.93423086100006 ], [ 59.105479363000086, 68.903306382000039 ], [ 59.423024936000047, 68.757025458000044 ], [ 59.398448113000086, 68.701117255000042 ], [ 59.201508009000065, 68.705959377000056 ], [ 59.056407097000033, 68.619533596000053 ], [ 59.11882571700005, 68.531683661000045 ], [ 59.087087436000047, 68.416896877000056 ], [ 59.674815300000034, 68.336167710000041 ], [ 59.857432488000086, 68.381293036000045 ], [ 59.963877800000034, 68.466009833000044 ], [ 59.92904707100007, 68.537787177000041 ], [ 59.762705925000034, 68.638739325000074 ], [ 59.811208530000044, 68.687933661000045 ], [ 60.466644727000073, 68.722316799000055 ], [ 60.818858269000032, 68.894354559000078 ], [ 60.968760613000086, 68.906927802000041 ], [ 60.907237175000034, 68.927394924000055 ], [ 60.948252800000034, 69.003119208000044 ], [ 60.902679884000065, 69.122259833000044 ], [ 60.77670332100007, 69.17719147300005 ], [ 60.721690300000034, 69.17446523600006 ], [ 60.710948113000086, 69.106268622000073 ], [ 60.591319207000083, 69.132798570000034 ], [ 60.589691602000073, 69.256415106000077 ], [ 60.542491082000083, 69.315578518000052 ], [ 60.138845248000052, 69.577866929000038 ], [ 60.232595248000052, 69.664780992000033 ], [ 60.653575066000087, 69.672756252000056 ], [ 60.633474155000044, 69.72492096600007 ], [ 60.721690300000034, 69.742987372000073 ], [ 60.705577019000032, 69.82367584800005 ], [ 60.926605665000068, 69.86749909100007 ], [ 61.770518425000034, 69.76203034100007 ], [ 63.410492384000065, 69.671291408000059 ], [ 64.548024936000047, 69.451727606000077 ], [ 65.004405144000032, 69.30414459800005 ], [ 64.831065300000034, 69.294419664000031 ], [ 64.785899285000085, 69.14712148600006 ], [ 64.931813998000052, 69.197088934000078 ], [ 64.92318769600007, 69.260687567000048 ], [ 65.037913577176994, 69.271049953167491 ], [ 64.989966261833501, 69.204716702513792 ], [ 64.527255486851232, 69.023229071864137 ], [ 64.580172153621959, 68.952484036209285 ], [ 64.52601525340117, 68.906543688440422 ], [ 64.554127232285907, 68.871403713710379 ], [ 64.743573032069719, 68.857115179821676 ], [ 64.789771763156295, 68.89228099207412 ], [ 65.080296664659329, 68.809676215285094 ], [ 65.314907667654722, 68.803294176385123 ], [ 65.329997186321066, 68.725805365725023 ], [ 65.411232537551541, 68.723299059503972 ], [ 65.408338656803551, 68.661028957820122 ], [ 65.654318475417256, 68.556177477108861 ], [ 65.480478957337994, 68.430448717134539 ], [ 64.761453077797285, 68.406496690869574 ], [ 64.555677524997748, 68.358463447130362 ], [ 64.494079216882312, 68.315106919948391 ], [ 64.530252720386727, 68.200126857968087 ], [ 63.833964471183378, 68.028457750224959 ], [ 63.946722446883371, 67.893995672961921 ], [ 63.871378208137742, 67.835963040062211 ], [ 63.708700799202518, 67.809504705777499 ], [ 63.689683871913132, 67.762065742140237 ], [ 63.421689894273186, 67.767646796262625 ], [ 63.105430128897297, 67.674784246995387 ], [ 62.871232537951244, 67.579647936403092 ], [ 62.821313103816635, 67.388031725383769 ], [ 61.8505196468642, 67.126135565803679 ], [ 61.624796990788468, 67.011723945503661 ], [ 60.082048780626678, 66.989864814309726 ], [ 59.918647902178918, 66.953536282073742 ], [ 59.871932407154816, 66.97100291575191 ], [ 59.917717726192109, 67.001595364234618 ], [ 53.772459751216502, 66.998546454755058 ], [ 52.155194126407764, 67.08551788973881 ], [ 51.846582472702949, 67.001698717022123 ], [ 51.810719029359689, 66.954208076541477 ], [ 51.524638298618584, 66.927801419100206 ], [ 51.481953565904291, 66.828065904517871 ], [ 51.54923628092962, 66.798041896816073 ], [ 51.510168897576534, 66.783262438310828 ], [ 49.006032342218816, 66.119116930302084 ], [ 48.139108514046654, 66.12728180591057 ], [ 47.753188917734349, 65.940704047553709 ], [ 47.760010207105324, 65.84360403130097 ], [ 47.660791457359835, 65.808076483842626 ], [ 47.110437452926078, 65.821176459326125 ], [ 46.347486607221128, 66.028011380221017 ], [ 45.741322056167917, 66.06790558497471 ], [ 44.214162803225165, 66.408148754847886 ] ] ], [ [ [ 59.241953972000033, 69.177557684000078 ], [ 59.244639519000032, 69.145697333000044 ], [ 58.762054884000065, 69.338934637000079 ], [ 59.150726759000065, 69.254624742000033 ], [ 59.241953972000033, 69.177557684000078 ] ] ], [ [ [ 50.323008660000085, 69.150539455000057 ], [ 50.16928144600007, 69.011623440000051 ], [ 50.113454623000052, 68.995672919000071 ], [ 50.223317905000044, 69.153957424000055 ], [ 49.954925977000073, 69.074693101000037 ], [ 49.854014519000032, 69.009344794000071 ], [ 49.908539259000065, 68.995672919000071 ], [ 49.719737175000034, 68.889960028000075 ], [ 49.248545769000089, 68.779974677000041 ], [ 48.592051629000082, 68.730861721000053 ], [ 48.290537957000083, 68.865912177000041 ], [ 48.332041863000086, 68.885809637000079 ], [ 48.219411655000044, 68.895656643000052 ], [ 48.265879754000082, 68.982855536000045 ], [ 48.211680535000085, 69.001654364000046 ], [ 48.256358269000089, 69.044094143000052 ], [ 48.216970248000052, 69.064439195000034 ], [ 48.304209832000083, 69.27680084800005 ], [ 48.565684441000087, 69.419989325000074 ], [ 48.906260613000086, 69.507961330000057 ], [ 49.271739129000082, 69.507961330000057 ], [ 50.164398634000065, 69.260891018000052 ], [ 50.323008660000085, 69.150539455000057 ] ] ], [ [ [ 60.539805535000085, 69.81867096600007 ], [ 60.448496941000087, 69.76593659100007 ], [ 60.47592207100007, 69.722479559000078 ], [ 60.254079623000052, 69.689439195000034 ], [ 60.032725457000083, 69.722479559000078 ], [ 59.934092644000032, 69.667873440000051 ], [ 59.563487175000034, 69.715033270000049 ], [ 59.546885613000086, 69.778998114000046 ], [ 59.623708530000044, 69.804348049000055 ], [ 59.431488477000073, 69.889471747000073 ], [ 58.939707879000082, 69.942206122000073 ], [ 59.132090691000087, 69.873277085000041 ], [ 59.015961134000065, 69.85968659100007 ], [ 58.695567254000082, 70.002834377000056 ], [ 58.570485873000052, 70.078802802000041 ], [ 58.604502800000034, 70.112860419000071 ], [ 58.549164259000065, 70.133978583000044 ], [ 58.611338738000086, 70.140204169000071 ], [ 58.590830925000034, 70.181219794000071 ], [ 58.452972852000073, 70.195461330000057 ], [ 58.501475457000083, 70.229559637000079 ], [ 58.412119988000086, 70.260321356000077 ], [ 58.824229363000086, 70.215887762000079 ], [ 58.494639519000032, 70.331976630000042 ], [ 58.638682488000086, 70.331976630000042 ], [ 58.75521894600007, 70.386908270000049 ], [ 58.740977410000085, 70.428208726000037 ], [ 59.023610873000052, 70.479803778000075 ], [ 59.533213738000086, 70.264878648000035 ], [ 59.553965691000087, 70.199611721000053 ], [ 60.03646894600007, 70.098578192000048 ], [ 60.328461134000065, 69.957261460000041 ], [ 60.413828972000033, 69.962713934000078 ], [ 60.539805535000085, 69.81867096600007 ] ] ], [ [ [ 54.32976321700005, 68.311468817000048 ], [ 54.316905144000032, 68.259100653000075 ], [ 54.199473504000082, 68.25649648600006 ], [ 54.239431186000047, 68.303778387000079 ], [ 54.32976321700005, 68.311468817000048 ] ] ], [ [ [ 53.912282748000052, 68.36196523600006 ], [ 53.991465691000087, 68.345851955000057 ], [ 53.957692905000044, 68.293361721000053 ], [ 53.865733269000032, 68.30695221600007 ], [ 53.857920769000032, 68.345526434000078 ], [ 53.912282748000052, 68.36196523600006 ] ] ], [ [ [ 49.049082879000082, 68.678412177000041 ], [ 49.124278191000087, 68.667669989000046 ], [ 48.765961134000065, 68.696600653000075 ], [ 48.812347852000073, 68.696519273000035 ], [ 49.049082879000082, 68.678412177000041 ] ] ], [ [ [ 49.579274936000047, 68.819281317000048 ], [ 49.598480665000068, 68.81476471600007 ], [ 49.491953972000033, 68.79242584800005 ], [ 49.570323113000086, 68.817084052000041 ], [ 49.579274936000047, 68.819281317000048 ] ] ], [ [ [ 54.266774936000047, 68.816839911000045 ], [ 54.374847852000073, 68.790961005000042 ], [ 54.395355665000068, 68.782538153000075 ], [ 54.19271894600007, 68.813706773000035 ], [ 54.266774936000047, 68.816839911000045 ] ] ], [ [ [ 49.814300977000073, 68.899481512000079 ], [ 49.841807488000086, 68.906236070000034 ], [ 49.751719597000033, 68.877427476000037 ], [ 49.753103061000047, 68.88031647300005 ], [ 49.814300977000073, 68.899481512000079 ] ] ], [ [ [ 54.97429446700005, 68.939886786000045 ], [ 55.019541863000086, 68.915432033000059 ], [ 54.911875847000033, 68.930975653000075 ], [ 54.927989129000082, 68.940171617000033 ], [ 54.97429446700005, 68.939886786000045 ] ] ], [ [ [ 50.082855665000068, 68.960923570000034 ], [ 50.107676629000082, 68.96352773600006 ], [ 50.069834832000083, 68.943060614000046 ], [ 50.000743035000085, 68.932318427000041 ], [ 50.082855665000068, 68.960923570000034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-SA", "NAME_1": "Sakha (Yakutia)" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.487071160000028, 69.026678778000075 ], [ 161.514984571000014, 68.934637762000079 ], [ 161.409190300000091, 68.893255927000041 ], [ 161.477386915000011, 68.975165106000077 ], [ 161.455577019000089, 69.000962632000039 ], [ 161.134776238000086, 69.091864325000074 ], [ 161.168955925000091, 69.325262762000079 ], [ 161.065928582000083, 69.41742584800005 ], [ 161.092458530000044, 69.464789130000042 ], [ 161.374522332000083, 69.545884507000039 ], [ 161.388682488000086, 69.461818752000056 ], [ 161.292491082000083, 69.414007880000042 ], [ 161.374359571000014, 69.296047268000052 ], [ 161.319102410000028, 69.242661851000037 ], [ 161.487071160000028, 69.026678778000075 ] ] ], [ [ [ 161.631114129000025, 69.561102606000077 ], [ 161.615733269000089, 69.450384833000044 ], [ 161.360687696000014, 69.414007880000042 ], [ 161.425629102000016, 69.464992580000057 ], [ 161.394786004000025, 69.59210846600007 ], [ 161.475108269000089, 69.638006903000075 ], [ 161.590098504000025, 69.618394273000035 ], [ 161.631114129000025, 69.561102606000077 ] ] ], [ [ [ 127.404795769000089, 73.518622137000079 ], [ 127.690928582000083, 73.542873440000051 ], [ 128.063324415000011, 73.491359768000052 ], [ 127.77507571700005, 73.492580471000053 ], [ 127.404795769000089, 73.518622137000079 ] ] ], [ [ [ 111.295176628998206, 73.869126694940974 ], [ 111.803721550000034, 73.744208075000074 ], [ 112.371836785000028, 73.705308335000041 ], [ 112.945323113000086, 73.79047272300005 ], [ 112.934580925000091, 73.882310289000031 ], [ 112.822927280000044, 73.998439846000053 ], [ 113.111501498000052, 73.892157294000071 ], [ 113.395518425000091, 73.685777085000041 ], [ 113.430511915000011, 73.609930731000077 ], [ 113.131358269000089, 73.449693101000037 ], [ 113.272308790000011, 73.375189520000049 ], [ 113.494639519000089, 73.339911200000074 ], [ 113.52116946700005, 73.103989976000037 ], [ 113.455251498000052, 72.993109442000048 ], [ 113.487071160000028, 72.963690497000073 ], [ 113.117686394000089, 72.860663153000075 ], [ 113.104502800000091, 72.821966864000046 ], [ 113.189219597000033, 72.721909898000035 ], [ 113.368174675000091, 72.66547272300005 ], [ 114.090342644000089, 72.600653387000079 ], [ 113.390961134, 72.680609442000048 ], [ 113.238047722000033, 72.735419012000079 ], [ 113.158213738000086, 72.822699286000045 ], [ 113.54224694100003, 72.977362372000073 ], [ 113.53093509200005, 73.048407294000071 ], [ 113.600596550000091, 73.103989976000037 ], [ 113.529307488000086, 73.182684637000079 ], [ 113.562347852000016, 73.253404039000031 ], [ 113.724131707000083, 73.32062409100007 ], [ 114.035817905000044, 73.347316799000055 ], [ 113.77507571700005, 73.356146552000041 ], [ 113.466563347000033, 73.504950262000079 ], [ 113.915049675000091, 73.535834052000041 ], [ 114.109141472000033, 73.599554755000042 ], [ 114.853526238000086, 73.608872789000031 ], [ 115.413096550000091, 73.71039459800005 ], [ 116.602875196000014, 73.674790757000039 ], [ 117.443858269000089, 73.588771877000056 ], [ 118.450205925000091, 73.588771877000056 ], [ 118.997569207000083, 73.491359768000052 ], [ 118.706553582000083, 73.443915106000077 ], [ 118.467133009, 73.478094794000071 ], [ 118.346446160000028, 73.402533270000049 ], [ 118.428396030000044, 73.374660549000055 ], [ 118.353282097000033, 73.282416083000044 ], [ 118.39421634200005, 73.238023179000038 ], [ 118.91765384200005, 73.119533596000053 ], [ 119.534515821000014, 73.055243231000077 ], [ 119.722504102000016, 72.958929755000042 ], [ 120.533702019000089, 72.874212958000044 ], [ 120.57349694100003, 72.888617255000042 ], [ 119.841563347000033, 72.956854559000078 ], [ 119.763845248000052, 73.008286851000037 ], [ 121.054698113000086, 72.931789455000057 ], [ 121.791351759, 72.97687409100007 ], [ 121.963715040000011, 72.963690497000073 ], [ 121.92351321700005, 72.925848700000074 ], [ 122.043304884, 72.891546942000048 ], [ 122.732188347000033, 72.826564846000053 ], [ 122.30827884200005, 72.941351630000042 ], [ 122.872569207000083, 72.87250397300005 ], [ 122.953379754000025, 72.891546942000048 ], [ 122.430430535000028, 72.984808661000045 ], [ 122.613780144000089, 73.030951239000046 ], [ 123.13795006600003, 72.918036200000074 ], [ 123.338145379000025, 72.98110586100006 ], [ 123.322601759, 73.034572658000059 ], [ 123.400401238000086, 73.09320709800005 ], [ 123.470469597000033, 73.08539459800005 ], [ 123.397308790000011, 73.121649481000077 ], [ 123.400889519000089, 73.174302476000037 ], [ 123.547129754000025, 73.197088934000078 ], [ 123.51295006600003, 73.175970770000049 ], [ 123.585297071000014, 73.160345770000049 ], [ 123.670664910000028, 73.203314520000049 ], [ 123.538584832000083, 73.220404364000046 ], [ 123.331797722000033, 73.350734768000052 ], [ 123.41334069100003, 73.39093659100007 ], [ 123.218109571000014, 73.408758856000077 ], [ 123.307465040000011, 73.426459052000041 ], [ 123.281911655000044, 73.464178778000075 ], [ 123.417328321000014, 73.443548895000049 ], [ 123.246104363000086, 73.545884507000039 ], [ 123.369639519000089, 73.559556382000039 ], [ 123.314300977000016, 73.59438711100006 ], [ 123.424164259, 73.58071523600006 ], [ 123.369639519000089, 73.662665106000077 ], [ 123.568858269000089, 73.716050523000035 ], [ 123.629079623000052, 73.69672272300005 ], [ 123.561696811000047, 73.643377997000073 ], [ 123.656993035000028, 73.635321356000077 ], [ 123.601817254000025, 73.614813544000071 ], [ 123.645518425000091, 73.60297272300005 ], [ 123.999522332000083, 73.641506252000056 ], [ 123.921397332000083, 73.668768622000073 ], [ 123.931407097000033, 73.745184637000079 ], [ 123.876719597000033, 73.772528387000079 ], [ 123.98601321700005, 73.758856512000079 ], [ 124.054942254000025, 73.72406647300005 ], [ 123.992849155000044, 73.690578518000052 ], [ 124.059580925000091, 73.684800523000035 ], [ 124.383067254000025, 73.806382554000038 ], [ 124.725922071000014, 73.708400783000059 ], [ 124.856211785000028, 73.72406647300005 ], [ 124.97974694100003, 73.676255601000037 ], [ 124.986582879000025, 73.627875067000048 ], [ 125.137461785000028, 73.704169012000079 ], [ 125.151052280000044, 73.655747789000031 ], [ 125.212412957000083, 73.648911851000037 ], [ 125.177744988000086, 73.621649481000077 ], [ 125.213877800000091, 73.616156317000048 ], [ 125.17156009200005, 73.577297268000052 ], [ 125.197520379000025, 73.550930080000057 ], [ 125.36491946700005, 73.582709052000041 ], [ 125.651866082000083, 73.525458075000074 ], [ 125.521006707000083, 73.457180080000057 ], [ 125.562510613000086, 73.408758856000077 ], [ 125.638682488000086, 73.458197333000044 ], [ 125.87663821700005, 73.460598049000055 ], [ 125.815765821000014, 73.491359768000052 ], [ 125.918467644000089, 73.53969961100006 ], [ 125.972829623000052, 73.532294012000079 ], [ 125.911875847000033, 73.436102606000077 ], [ 125.941172722000033, 73.428290106000077 ], [ 126.014008009, 73.508693752000056 ], [ 126.288096550000091, 73.55727773600006 ], [ 126.404795769000089, 73.512396552000041 ], [ 126.391123894000089, 73.464016018000052 ], [ 126.329112175000091, 73.429877020000049 ], [ 126.170746290000011, 73.45929596600007 ], [ 126.15162194100003, 73.436102606000077 ], [ 126.254567905000044, 73.402533270000049 ], [ 126.158457879000025, 73.38149648600006 ], [ 126.419688347000033, 73.409491278000075 ], [ 126.548838738000086, 73.347316799000055 ], [ 126.589691602000016, 73.295803127000056 ], [ 126.565196160000028, 73.233465887000079 ], [ 126.658702019000089, 73.302639065000051 ], [ 126.562998894000089, 73.38149648600006 ], [ 126.73015384200005, 73.444159247000073 ], [ 126.80591881600003, 73.383246161000045 ], [ 126.833181186000047, 73.440130927000041 ], [ 126.932383660000028, 73.429877020000049 ], [ 126.917735222000033, 73.504299221000053 ], [ 126.830088738000086, 73.518622137000079 ], [ 126.858164910000028, 73.533392645000049 ], [ 127.98755944100003, 73.470851955000057 ], [ 127.899424675000091, 73.436102606000077 ], [ 128.076914910000028, 73.405666408000059 ], [ 127.96021569100003, 73.347316799000055 ], [ 128.340342644000089, 73.361029364000046 ], [ 128.234629754000025, 73.265366929000038 ], [ 128.65943444100003, 73.261297919000071 ], [ 128.969248894000089, 73.177394924000055 ], [ 128.850922071000014, 73.155503648000035 ], [ 128.864268425000091, 73.116156317000048 ], [ 128.777354363000086, 73.070786851000037 ], [ 129.113536004000025, 73.121649481000077 ], [ 129.443508491000102, 73.028944249000062 ], [ 129.4789311400001, 72.979239844000062 ], [ 129.359618418000082, 72.940011765000065 ], [ 128.771250847000033, 72.971747137000079 ], [ 128.290782097000033, 72.908636786000045 ], [ 128.213552280000044, 72.860663153000075 ], [ 128.228037957000083, 72.819484768000052 ], [ 128.129242384, 72.786078192000048 ], [ 129.358083530000044, 72.703029690000051 ], [ 129.198415561000047, 72.655178127000056 ], [ 128.479177280000044, 72.724554755000042 ], [ 128.396006707000083, 72.673163153000075 ], [ 127.905446811000047, 72.667141018000052 ], [ 128.611338738000086, 72.48273346600007 ], [ 129.258311394000089, 72.463934637000079 ], [ 129.241953972000033, 72.415676174000055 ], [ 129.500743035000028, 72.332464911000045 ], [ 129.340098504000025, 72.305080471000053 ], [ 129.357595248000052, 72.262884833000044 ], [ 129.56413821700005, 72.230658270000049 ], [ 129.241953972000033, 72.134466864000046 ], [ 129.489024285000028, 72.127630927000041 ], [ 128.934092644000089, 72.072984117000033 ], [ 128.494313998000052, 72.202785549000055 ], [ 128.569509311000047, 72.243719794000071 ], [ 128.528819207000083, 72.259344794000071 ], [ 128.149750196000014, 72.316636460000041 ], [ 127.858897332000083, 72.42914459800005 ], [ 127.665782097000033, 72.430080471000053 ], [ 127.864431186000047, 72.332464911000045 ], [ 127.747080925000091, 72.32562897300005 ], [ 128.249359571000014, 72.204820054000038 ], [ 128.453379754000025, 72.092922268000052 ], [ 128.453379754000025, 72.023993231000077 ], [ 128.623545769000089, 71.962591864000046 ], [ 128.663910352000016, 71.862982489000046 ], [ 128.926605665000011, 71.738755601000037 ], [ 129.183929884, 71.809271552000041 ], [ 129.041188998000052, 72.018784898000035 ], [ 129.286875847000033, 71.883490302000041 ], [ 129.309906446000014, 71.804185289000031 ], [ 129.543711785000028, 71.72296784100007 ], [ 129.305430535000028, 71.760891018000052 ], [ 128.907725457000083, 71.708156643000052 ], [ 128.820485873000052, 71.658107815000051 ], [ 128.875254754000025, 71.596747137000079 ], [ 129.14576256600003, 71.613104559000078 ], [ 129.248708530000044, 71.549872137000079 ], [ 129.235687696000014, 71.497015692000048 ], [ 129.314300977000016, 71.466009833000044 ], [ 129.392100457000083, 71.346828518000052 ], [ 129.652598504000025, 71.260891018000052 ], [ 129.762705925000091, 71.147609768000052 ], [ 129.62623131600003, 71.086127020000049 ], [ 130.080414259, 71.08344147300005 ], [ 130.221690300000091, 70.993638414000031 ], [ 130.167328321000014, 70.968817450000074 ], [ 130.619883660000028, 70.866400458000044 ], [ 130.699473504000025, 70.887884833000044 ], [ 130.768890821000014, 70.977525132000039 ], [ 130.890798373000052, 70.845282294000071 ], [ 130.888438347000033, 70.762762762000079 ], [ 131.042002800000091, 70.738755601000037 ], [ 131.226328972000033, 70.750230210000041 ], [ 131.54615319100003, 70.887111721000053 ], [ 131.77076256600003, 71.099798895000049 ], [ 131.76140384200005, 71.135199286000045 ], [ 131.865896030000044, 71.148871161000045 ], [ 131.826508009, 71.182318427000041 ], [ 131.850922071000014, 71.208197333000044 ], [ 132.188324415000011, 71.215887762000079 ], [ 131.941905144000089, 71.267401434000078 ], [ 132.264170769000089, 71.682033596000053 ], [ 132.539317254000025, 71.883612372000073 ], [ 132.717784050000091, 71.946234442000048 ], [ 133.066274404000069, 71.971290715000066 ], [ 133.341360795000014, 71.886264828000037 ], [ 133.354002727000079, 71.833959655000058 ], [ 133.031344913, 71.955098626000051 ], [ 132.796394937000059, 71.910922306000032 ], [ 132.813128411000093, 71.831469953000067 ], [ 132.715098504000025, 71.810695705000057 ], [ 132.729665561000047, 71.769232489000046 ], [ 132.985216044000026, 71.719717242000058 ], [ 133.15162194100003, 71.579169012000079 ], [ 133.908702019000089, 71.399400132000039 ], [ 134.16765384200005, 71.370794989000046 ], [ 134.585297071000014, 71.405829169000071 ], [ 134.739024285000028, 71.367987372000073 ], [ 134.650645379000025, 71.297308661000045 ], [ 134.668630405000044, 71.26430898600006 ], [ 134.770030144000089, 71.366929429000038 ], [ 134.69654381600003, 71.42133209800005 ], [ 134.778493686000047, 71.428778387000079 ], [ 134.81023196700005, 71.481838283000059 ], [ 135.032969597000033, 71.539129950000074 ], [ 135.423350457000083, 71.531195380000042 ], [ 135.340830925000091, 71.565904039000031 ], [ 135.621592644000089, 71.623114325000074 ], [ 135.985118035000028, 71.634833075000074 ], [ 136.443858269000089, 71.575873114000046 ], [ 136.516368035000028, 71.558498440000051 ], [ 136.546885613000086, 71.476548570000034 ], [ 136.774587436000047, 71.523423570000034 ], [ 137.27466881600003, 71.385239976000037 ], [ 137.238942905000044, 71.367336330000057 ], [ 137.492198113000086, 71.346828518000052 ], [ 137.44499759200005, 71.312933661000045 ], [ 137.485362175000091, 71.298407294000071 ], [ 137.403493686000047, 71.284735419000071 ], [ 137.53248131600003, 71.245672919000071 ], [ 137.704925977000016, 71.284735419000071 ], [ 137.670909050000091, 71.25063711100006 ], [ 137.739268425000091, 71.25063711100006 ], [ 137.692393425000091, 71.220933335000041 ], [ 137.526133660000028, 71.220282294000071 ], [ 137.766449415000011, 71.168036200000074 ], [ 137.812998894000089, 71.119614976000037 ], [ 138.074392123000052, 71.133978583000044 ], [ 137.994151238000086, 71.190619208000044 ], [ 137.842295769000089, 71.182318427000041 ], [ 137.739268425000091, 71.229478257000039 ], [ 138.067230665000011, 71.22492096600007 ], [ 138.23951256600003, 71.277899481000077 ], [ 137.996104363000086, 71.30219147300005 ], [ 138.36296634200005, 71.318915106000077 ], [ 137.828623894000089, 71.387152411000045 ], [ 138.014984571000014, 71.473618882000039 ], [ 138.038584832000083, 71.558742580000057 ], [ 138.098643425000091, 71.581447658000059 ], [ 138.500254754000025, 71.613104559000078 ], [ 138.40398196700005, 71.57953522300005 ], [ 138.438161655000044, 71.538641669000071 ], [ 138.577159050000091, 71.551947333000044 ], [ 138.554860873000052, 71.60687897300005 ], [ 138.756032748000052, 71.643011786000045 ], [ 139.045095248000052, 71.569037177000041 ], [ 139.158050977000016, 71.448635158000059 ], [ 139.11646569100003, 71.428778387000079 ], [ 139.192230665000011, 71.415106512000079 ], [ 139.346364780000044, 71.421820380000042 ], [ 139.443369988000086, 71.495103257000039 ], [ 140.033213738000086, 71.47211334800005 ], [ 139.734548373000052, 71.67218659100007 ], [ 139.691905144000089, 71.791815497000073 ], [ 139.809255405000044, 71.86078522300005 ], [ 139.336192254000025, 71.94953034100007 ], [ 139.634532097000033, 71.95453522300005 ], [ 139.712250196000014, 71.997951565000051 ], [ 139.715668165000011, 72.082953192000048 ], [ 139.874196811000047, 72.178168036000045 ], [ 140.13209069100003, 72.153876044000071 ], [ 140.219493035000028, 72.186346747000073 ], [ 140.197113477000016, 72.213812567000048 ], [ 139.560720248000052, 72.232001044000071 ], [ 139.432383660000028, 72.182847398000035 ], [ 139.532969597000033, 72.164292710000041 ], [ 139.256683790000011, 72.179022528000075 ], [ 139.349864129000025, 72.134466864000046 ], [ 139.191579623000052, 72.162665106000077 ], [ 139.089203321000014, 72.236883856000077 ], [ 139.328786655000044, 72.42251211100006 ], [ 139.541758660000028, 72.497626044000071 ], [ 140.576508009, 72.496323960000041 ], [ 141.110850457000083, 72.586981512000079 ], [ 140.932627800000091, 72.600653387000079 ], [ 141.01099694100003, 72.668402411000045 ], [ 140.991547071000014, 72.709418036000045 ], [ 140.664235873000052, 72.809027411000045 ], [ 140.594248894000089, 72.89288971600007 ], [ 141.27271569100003, 72.866359768000052 ], [ 141.550629102000016, 72.774318752000056 ], [ 142.23170006600003, 72.701564846000053 ], [ 143.486827019000089, 72.700100002000056 ], [ 145.409515821000014, 72.555894273000035 ], [ 146.854014519000089, 72.354193427000041 ], [ 145.352875196000014, 72.346747137000079 ], [ 145.170258009, 72.420599677000041 ], [ 144.943207227000016, 72.438177802000041 ], [ 144.70826256600003, 72.374090887000079 ], [ 144.52076256600003, 72.225002346000053 ], [ 144.342458530000044, 72.293768622000073 ], [ 144.105479363000086, 72.277899481000077 ], [ 144.415537957000083, 72.175034898000035 ], [ 145.068695509, 72.264349677000041 ], [ 146.929209832000083, 72.312648830000057 ], [ 146.49537194100003, 72.065985419000071 ], [ 145.972504102000016, 71.856268622000073 ], [ 145.941661004000025, 71.888088283000059 ], [ 145.999034050000091, 71.938706773000035 ], [ 145.993011915000011, 72.029730536000045 ], [ 146.34693444100003, 72.127630927000041 ], [ 146.078949415000011, 72.170396226000037 ], [ 145.96802819100003, 72.070502020000049 ], [ 145.941661004000025, 72.154974677000041 ], [ 145.849375847000033, 72.162176825000074 ], [ 145.90748131600003, 72.203355210000041 ], [ 145.880056186000047, 72.21906159100007 ], [ 145.613291863000086, 72.244330145000049 ], [ 145.750336134, 72.20962148600006 ], [ 145.621104363000086, 72.080267645000049 ], [ 145.791270379000025, 72.028306382000039 ], [ 145.805674675000091, 71.929022528000075 ], [ 145.32935631600003, 71.870998440000051 ], [ 144.970957879000025, 71.980292059000078 ], [ 144.974375847000033, 71.913723049000055 ], [ 145.215993686000047, 71.843329169000071 ], [ 145.029063347000033, 71.770656643000052 ], [ 144.88640384200005, 71.771389065000051 ], [ 144.920664910000028, 71.743475653000075 ], [ 144.893239780000044, 71.675197658000059 ], [ 145.33326256600003, 71.661078192000048 ], [ 145.56999759200005, 71.740952867000033 ], [ 146.036306186000047, 71.786363023000035 ], [ 146.365407748000052, 71.905951239000046 ], [ 146.619476759, 72.07485586100006 ], [ 147.195567254000025, 72.329901434000078 ], [ 148.40202884200005, 72.310939846000053 ], [ 149.724782748000052, 72.120794989000046 ], [ 150.074229363000086, 71.894232489000046 ], [ 149.709483269000089, 71.77289459800005 ], [ 149.368988477000016, 71.903794664000031 ], [ 149.148692254000025, 71.771389065000051 ], [ 148.833994988000086, 71.812323309000078 ], [ 149.039398634, 71.757757880000042 ], [ 149.005218946000014, 71.703111070000034 ], [ 148.827159050000091, 71.675197658000059 ], [ 149.953298373000052, 71.669867255000042 ], [ 150.102061394000089, 71.594712632000039 ], [ 149.951670769000089, 71.591620184000078 ], [ 149.964610222000033, 71.529364325000074 ], [ 149.868011915000011, 71.462225653000075 ], [ 150.117198113000086, 71.515692450000074 ], [ 150.670664910000028, 71.490179755000042 ], [ 150.515147332000083, 71.346421617000033 ], [ 150.026866082000083, 71.222642320000034 ], [ 150.046722852000016, 71.209662177000041 ], [ 150.408702019000089, 71.284979559000078 ], [ 150.656993035000028, 71.390285549000055 ], [ 150.738942905000044, 71.39398834800005 ], [ 150.594899936000047, 71.277899481000077 ], [ 151.033050977000016, 71.39398834800005 ], [ 151.492442254000025, 71.333156643000052 ], [ 152.136729363000086, 71.017279364000046 ], [ 151.681488477000016, 70.975897528000075 ], [ 152.504893425000091, 70.847845770000049 ], [ 152.540782097000033, 70.79132721600007 ], [ 152.613047722000033, 70.83462148600006 ], [ 153.66374759200005, 70.861029364000046 ], [ 154.238780144000089, 70.964992580000057 ], [ 155.479828321000014, 71.061590887000079 ], [ 155.529795769000089, 70.976223049000055 ], [ 155.604502800000091, 71.065659898000035 ], [ 155.936371290000011, 71.099351304000038 ], [ 157.989105665000011, 71.04751211100006 ], [ 159.237803582000083, 70.829291083000044 ], [ 159.843109571000014, 70.581529039000031 ], [ 160.094248894000089, 70.309881903000075 ], [ 160.088145379000025, 70.238348700000074 ], [ 159.938243035000028, 70.128485419000071 ], [ 159.688649936000047, 70.133978583000044 ], [ 159.914561394000089, 70.098578192000048 ], [ 159.851328972000033, 70.054917710000041 ], [ 159.863047722000033, 69.99282461100006 ], [ 159.692067905000044, 69.910874742000033 ], [ 159.801117384, 69.807033596000053 ], [ 159.769053582000083, 69.76203034100007 ], [ 159.861827019000089, 69.789862372000073 ], [ 160.169444207000083, 69.703273830000057 ], [ 160.141123894000089, 69.728664455000057 ], [ 160.255869988000086, 69.718695380000042 ], [ 160.318614129000025, 69.654201565000051 ], [ 160.515961134, 69.687201239000046 ], [ 160.925547722000033, 69.642075914000031 ], [ 161.006358269000089, 69.577337958000044 ], [ 160.921234571000014, 69.461818752000056 ], [ 161.038584832000083, 69.194891669000071 ], [ 160.962901238000086, 69.105536200000074 ], [ 161.415375196000014, 68.982001044000071 ], [ 161.219411655000044, 68.792181708000044 ], [ 161.209646030000044, 68.692084052000041 ], [ 161.106944207000083, 68.605210679000038 ], [ 161.031748894000089, 68.560492255000042 ], [ 160.758067254000025, 68.564276434000078 ], [ 160.779470248000052, 68.539455471000053 ], [ 161.134125196000014, 68.561428127000056 ], [ 161.347015821000014, 68.701402085000041 ], [ 161.29029381600003, 68.753729559000078 ], [ 161.319102410000028, 68.790228583000044 ], [ 161.574066602000016, 68.921128648000035 ], [ 161.558767123000052, 69.029771226000037 ], [ 161.399261915000011, 69.221258856000077 ], [ 161.463145379000025, 69.287054755000042 ], [ 161.415375196000014, 69.331447658000059 ], [ 161.48365319100003, 69.345119533000059 ], [ 161.435801629000025, 69.379868882000039 ], [ 161.600352410000028, 69.428290106000077 ], [ 161.804453972000033, 69.529730536000045 ], [ 162.025563998000052, 69.551174221000053 ], [ 162.189707879000025, 69.650458075000074 ], [ 162.29851321700005, 69.651678778000075 ], [ 162.327159050000091, 69.701971747000073 ], [ 162.445516392267677, 69.640271512120535 ], [ 162.349294875158307, 69.618386542504879 ], [ 162.3788537948667, 69.572549547523579 ], [ 162.311364374266418, 69.539838365548121 ], [ 162.411720005573784, 69.464184068439977 ], [ 162.368105096872682, 69.41741689747181 ], [ 162.494919061565383, 69.388323065756822 ], [ 162.540497675027609, 69.306725979320447 ], [ 162.78048302567106, 69.19386465083295 ], [ 162.509801873757397, 69.109218654916958 ], [ 162.532126092944736, 69.004677233467532 ], [ 162.84693891839629, 68.869284980217628 ], [ 162.741725701579753, 68.797532254210125 ], [ 162.596101516072054, 68.800555325268022 ], [ 162.610467564326541, 68.704488836890278 ], [ 162.72322553912727, 68.605166734357283 ], [ 162.582252231754978, 68.506413071705879 ], [ 162.534503208855995, 68.357662462352721 ], [ 162.417611118957893, 68.309060776933279 ], [ 161.406199985940589, 68.411845200995174 ], [ 160.997025995353397, 68.300999254112241 ], [ 159.850119257197889, 68.277434801474897 ], [ 159.781389602248282, 68.20906688083187 ], [ 159.552876418212122, 68.239194241321172 ], [ 158.256418085026553, 68.068506985508918 ], [ 158.198230421596577, 67.961278387987193 ], [ 158.065835402781545, 67.920970771184102 ], [ 158.053123000026403, 67.863454902221918 ], [ 158.257658319375878, 67.831932277752401 ], [ 158.325457798338675, 67.74868154581668 ], [ 157.805902947962636, 67.705480048265599 ], [ 157.691077915613278, 67.539469509909907 ], [ 157.88476118418123, 67.437744453044047 ], [ 157.783372024099549, 67.346173814969575 ], [ 157.860369908344524, 67.271966457785766 ], [ 158.702592401418087, 67.055235501417201 ], [ 158.903407016820324, 66.80780874287916 ], [ 158.715821568110869, 66.730862535477627 ], [ 158.470358515233215, 66.48803498003025 ], [ 158.360597772169399, 66.453876858130457 ], [ 158.528959588913835, 66.359386501785593 ], [ 158.390880162289591, 66.248953966052682 ], [ 158.476973098129861, 66.114621079998813 ], [ 158.12412641809965, 66.155807196844648 ], [ 157.717639601786118, 66.112037259411977 ], [ 157.373474563100558, 65.996075343702103 ], [ 157.390321080053695, 65.929619452775512 ], [ 157.124394159063172, 65.915150051733463 ], [ 156.926576776297111, 65.96540538175293 ], [ 156.973085564846883, 66.032507228725592 ], [ 156.630780878134942, 66.202936103018715 ], [ 156.33591515506032, 66.062789618845784 ], [ 155.958263788043269, 66.096327623121283 ], [ 155.773468866394978, 66.177459622463573 ], [ 155.31985314390738, 66.141854559740125 ], [ 155.169991489615541, 66.209033921977891 ], [ 154.885254347809791, 66.133586331344077 ], [ 154.548013951282769, 66.237817695330364 ], [ 154.395258417142145, 66.20458974941738 ], [ 154.216147903303067, 66.064546617132635 ], [ 154.354434034602946, 66.037778225384784 ], [ 154.381719192086962, 65.944243883448451 ], [ 154.259866163892298, 65.834224758865503 ], [ 154.083132765964365, 65.797198595538703 ], [ 154.018950637262037, 65.875824286861302 ], [ 153.697523228014461, 65.88559113202507 ], [ 153.483169386657778, 65.825517279998451 ], [ 153.455677525397391, 65.766218574327695 ], [ 153.531331821606273, 65.705550442199126 ], [ 153.399350213941148, 65.497087714226609 ], [ 153.523890416409586, 65.41926300678233 ], [ 153.461568637882237, 65.363039049012855 ], [ 153.115853305585574, 65.270331529376563 ], [ 152.688179153445162, 65.233434557258988 ], [ 152.609010857964677, 65.152147529185072 ], [ 152.654382765851892, 65.034273587356154 ], [ 152.499663527849521, 64.938258774922474 ], [ 152.563845656551734, 64.864361477000557 ], [ 152.549893020346531, 64.81759430603239 ], [ 152.674846633065613, 64.780490628339805 ], [ 152.748227167050118, 64.685922756729781 ], [ 152.347218052071412, 64.523787950153746 ], [ 152.413777296684884, 64.406766669046533 ], [ 152.203867628787975, 64.357105618229696 ], [ 152.096794060897082, 64.365890611462532 ], [ 152.134207797851559, 64.445575669981167 ], [ 152.015765416140994, 64.503659979724262 ], [ 151.479984166436111, 64.435550442398949 ], [ 151.391720819360216, 64.295636502222749 ], [ 151.31461958232785, 64.360154526809936 ], [ 151.175093214879894, 64.375760810313125 ], [ 150.631043735879643, 64.331112371938389 ], [ 150.608719516692304, 64.166212876722852 ], [ 150.193034295995858, 64.223909613737646 ], [ 150.025602655238345, 64.359017646147436 ], [ 150.086064080892584, 64.489293932369037 ], [ 149.816416456853972, 64.567273668544942 ], [ 149.219140252720422, 64.408420315445198 ], [ 149.097597283787536, 64.44097646778971 ], [ 148.612562291416566, 64.42092601172601 ], [ 148.302503696888039, 64.554406236158854 ], [ 148.16132368394085, 64.45777130789952 ], [ 148.022624139692198, 64.431002916151613 ], [ 148.055800408761797, 64.394906927912359 ], [ 148.000713331654879, 64.362712510773747 ], [ 148.258888788186937, 64.2395934107073 ], [ 148.128560826021271, 64.118722236242206 ], [ 148.120809360663429, 64.05557363631425 ], [ 147.938391554926284, 63.943590806970121 ], [ 147.875553013360786, 63.97614695931469 ], [ 147.795867954842151, 63.947311510018153 ], [ 147.766722447183156, 64.014077460206579 ], [ 147.610452915569567, 64.037331855380785 ], [ 147.663059523977836, 64.1158800323376 ], [ 147.623165318324709, 64.168331611114922 ], [ 147.298120558816663, 64.129470934236224 ], [ 147.338428175619697, 64.08192861601276 ], [ 147.266597935246409, 64.052576401879435 ], [ 146.996433547270385, 64.146989243858513 ], [ 146.390475701792184, 64.206649684735112 ], [ 146.316061639932627, 64.073608709874009 ], [ 146.108735792622724, 63.941575426264876 ], [ 145.553317498903425, 63.824114894686602 ], [ 145.62173709459114, 63.780034898891415 ], [ 145.640547317204891, 63.667121894459854 ], [ 145.451411573984842, 63.527905585374413 ], [ 145.251733840144539, 63.190303452742114 ], [ 145.299792922305414, 63.103900458539329 ], [ 145.270957473008934, 63.023181871246322 ], [ 145.366042107657108, 62.910320542758825 ], [ 145.326147902903358, 62.754412747250456 ], [ 145.428570590859977, 62.650853176832641 ], [ 145.388883090781974, 62.612405911103906 ], [ 145.479833612131415, 62.548017075927305 ], [ 145.124299757827544, 62.48990692776249 ], [ 145.176492955085791, 62.441822008079157 ], [ 145.17907677567257, 62.337073880155401 ], [ 145.126160109801162, 62.308703517952949 ], [ 145.173805779912755, 62.276405748026832 ], [ 144.979709101094045, 62.244211330888163 ], [ 144.990974563025588, 62.17114085616555 ], [ 144.754503208955839, 62.116105455002696 ], [ 144.71925988233761, 62.08830353537985 ], [ 144.745098098098651, 62.046884874537284 ], [ 144.585521274587109, 61.977509264440982 ], [ 144.5464538921334, 61.859738675399512 ], [ 144.222442662298931, 61.733183092225886 ], [ 143.934398227695965, 61.756850898550113 ], [ 143.927163528074288, 61.989136461578425 ], [ 143.762212356015311, 61.951877753355632 ], [ 143.753634068357542, 61.906970934361084 ], [ 143.646870558829164, 61.869944770135021 ], [ 143.560777622988894, 61.939656277015558 ], [ 143.619171991094504, 61.971669827000881 ], [ 143.609353469087296, 62.02468984655917 ], [ 143.362340122598539, 62.024121405778203 ], [ 143.213201938718498, 62.115511175800066 ], [ 143.120701124657103, 62.096571763775842 ], [ 142.981174758108523, 61.90557567038087 ], [ 142.681141392061591, 61.965623683985825 ], [ 142.413250767209092, 61.871262518850131 ], [ 142.393923781557191, 61.94738190395168 ], [ 142.264215936116557, 61.973995266068641 ], [ 142.177296177076869, 62.085254625000914 ], [ 141.861449822851, 62.027118639313699 ], [ 141.870958287394956, 62.089078680836394 ], [ 141.740423618754903, 62.079673569979263 ], [ 141.54477664632509, 62.178582262261557 ], [ 141.51821496015225, 62.262530626187413 ], [ 141.409901157912032, 62.296507880034596 ], [ 141.295386183925189, 62.435104072395006 ], [ 141.088577102351337, 62.408542385322789 ], [ 141.048062779073916, 62.485514431146044 ], [ 140.704724562688398, 62.572718411025846 ], [ 140.648810663281438, 62.535330512493147 ], [ 140.683950637112162, 62.48838247347237 ], [ 140.627623325655918, 62.420479640822748 ], [ 140.347227003623289, 62.387458401384094 ], [ 140.29441368964001, 62.274235337690641 ], [ 140.304542270908996, 62.124838772291469 ], [ 140.253796015373723, 62.094349677495586 ], [ 140.279634231134764, 62.053370266224761 ], [ 140.127188755356769, 61.972341621468615 ], [ 139.994276971704835, 61.977664293172552 ], [ 139.95314253080312, 61.832608548445705 ], [ 139.672746209669754, 61.65153432894607 ], [ 139.548206008100692, 61.481673896333234 ], [ 139.097690871036775, 61.447567451276825 ], [ 138.920027297122033, 61.317446193786793 ], [ 138.734612257849335, 61.343077704872144 ], [ 138.643661737399157, 61.269283758838355 ], [ 138.702986280592313, 61.193086860270341 ], [ 138.395098098198673, 61.100250149424824 ], [ 138.291641879668987, 61.109965317745207 ], [ 138.345798780789096, 61.000101222793148 ], [ 138.214850701898285, 60.9625841339506 ], [ 138.182811314390619, 60.889410305541162 ], [ 138.284303827259805, 60.754844876389882 ], [ 138.437472771651073, 60.680379136787678 ], [ 138.404399856268356, 60.611391100318997 ], [ 138.315516391568167, 60.587774969938891 ], [ 138.328538852685824, 60.529535631464171 ], [ 138.24275597520807, 60.492690335290717 ], [ 138.32905561662335, 60.390629380741302 ], [ 138.315206334105028, 60.318075669956158 ], [ 138.200691360118071, 60.236685289094794 ], [ 138.273141718115767, 59.955410467918739 ], [ 138.173819614683453, 59.831232001555577 ], [ 138.252987909264561, 59.712531236527298 ], [ 138.034913364859904, 59.685762843880127 ], [ 137.999876743816571, 59.7970222028124 ], [ 137.948717076232015, 59.752528794967873 ], [ 137.615714145791117, 59.73976471626861 ], [ 137.447042270684165, 59.636050117119169 ], [ 137.465749139611034, 59.555254015460434 ], [ 136.758712193313045, 59.354646104733945 ], [ 136.312537876921397, 59.433685208105828 ], [ 136.075446405227353, 59.427380683571641 ], [ 136.005269810353411, 59.484483141383862 ], [ 135.75722293509034, 59.528795681175723 ], [ 135.421739536850055, 59.386918037137661 ], [ 135.186921828279651, 59.116236884324735 ], [ 134.854539016362423, 59.127037259162137 ], [ 134.751702916356408, 59.152617093404103 ], [ 134.7792981304043, 59.192097887007833 ], [ 134.724934523709294, 59.211347358293949 ], [ 134.522052849859051, 59.147449449532417 ], [ 134.046526321132774, 59.255995794869989 ], [ 133.76664676303767, 59.222742011434661 ], [ 133.614924757671361, 59.234059150209589 ], [ 133.570172968307816, 59.292401842371078 ], [ 133.428992955360513, 59.275632839783725 ], [ 133.103534783803184, 59.200211087571631 ], [ 132.935999791157428, 59.092801621997239 ], [ 132.836367629362599, 59.103317775994526 ], [ 132.863962844309754, 59.054121813171093 ], [ 132.815903762148878, 59.014227607518023 ], [ 132.873264602379436, 58.983325099773481 ], [ 132.807945591216026, 58.880178941405006 ], [ 132.599276157668442, 58.891030992186529 ], [ 132.521348098336034, 58.784887600282502 ], [ 132.571164178783761, 58.75594879819846 ], [ 132.566823358111492, 58.645619615252997 ], [ 132.371899856093478, 58.523895779166821 ], [ 132.416961704718801, 58.481960354386842 ], [ 132.124163039192808, 58.486843777418358 ], [ 132.209532504621393, 58.344604397275077 ], [ 132.194753046116148, 58.242543442725662 ], [ 132.1093835797883, 58.250966702551239 ], [ 132.022463820748726, 58.195362861506851 ], [ 132.008511183644146, 58.11454092142634 ], [ 132.119822219419802, 58.046483059145828 ], [ 132.047475214209726, 58.01702749312426 ], [ 131.714472283768828, 58.17257355432605 ], [ 131.468699171629396, 58.164667060236638 ], [ 131.633133579750847, 58.058937079482575 ], [ 131.604608188816769, 57.999509181703331 ], [ 131.798704869434118, 57.920392564864926 ], [ 131.759947544443548, 57.841896063852232 ], [ 131.888001744384951, 57.808616441095865 ], [ 132.047475214209726, 57.661080226771048 ], [ 131.96448286289376, 57.62795563454489 ], [ 131.970477329964751, 57.582945461863574 ], [ 131.693078240568298, 57.560517889888672 ], [ 131.735866326969358, 57.50925486951661 ], [ 131.585384555952487, 57.425590725531549 ], [ 131.598613722645155, 57.295831204146737 ], [ 131.510247023681131, 57.284462389427688 ], [ 131.505906203008863, 57.245808417224623 ], [ 131.345295851622154, 57.250717677778596 ], [ 131.26064985570622, 57.304771227010463 ], [ 131.183341913098729, 57.235473131279946 ], [ 131.101693149818971, 57.23092560503261 ], [ 131.192747023955917, 57.13072500335619 ], [ 131.275325962323222, 57.163746242794844 ], [ 131.482238396684579, 57.075999661455171 ], [ 131.439036900032875, 57.042229112283678 ], [ 131.751059198423263, 56.842913112749898 ], [ 131.79953169173416, 56.722377835068983 ], [ 131.673854607703902, 56.653725694485161 ], [ 131.649773391129088, 56.514328518246487 ], [ 131.701449822651171, 56.459086412407999 ], [ 131.603884719304347, 56.452265123036966 ], [ 131.618870884283865, 56.500737617247182 ], [ 131.497431268138484, 56.549520168920651 ], [ 131.397799107242918, 56.485544745793334 ], [ 131.40193322234029, 56.421620999509514 ], [ 131.306538528430337, 56.497275295718282 ], [ 131.125567661718151, 56.41051056630954 ], [ 131.092598098223561, 56.20587189417256 ], [ 130.963613723194726, 56.12856395156507 ], [ 130.924236280579862, 55.941805325155599 ], [ 130.86460167902419, 55.899482326747943 ], [ 130.9229960471298, 55.678565579337999 ], [ 130.695826451129733, 55.724712633581134 ], [ 130.017831658803971, 55.688074042083372 ], [ 129.892257929359857, 55.734427801901518 ], [ 129.474092238166236, 55.7271414254364 ], [ 129.039803502229802, 55.651952216321718 ], [ 129.087139113079502, 55.528083808321071 ], [ 128.956501092551321, 55.46519358991219 ], [ 128.49606408069269, 55.516663315859319 ], [ 128.222178989668578, 55.663786119034114 ], [ 127.910570103327586, 55.624305325430385 ], [ 127.674615513195363, 55.683164781529399 ], [ 127.477521599941838, 55.552371731370272 ], [ 127.312880487144753, 55.667816881343981 ], [ 127.187616815163892, 55.690812893200416 ], [ 126.943290642948796, 55.686627102159036 ], [ 126.88572309804249, 55.615365302566659 ], [ 126.724492629031602, 55.596451728064778 ], [ 126.683461541816655, 55.655001125801277 ], [ 126.611631301443367, 55.653063259461817 ], [ 126.4225989119102, 55.553818671294607 ], [ 126.061587356271389, 55.584566148508941 ], [ 126.064998000057585, 55.636759344867869 ], [ 126.127526483260567, 55.637612006488894 ], [ 126.05859012273595, 55.713963934687797 ], [ 125.824599237364851, 55.794889228455077 ], [ 125.54626997288085, 55.735771389038348 ], [ 125.426587355921697, 55.844653632059419 ], [ 125.247683546758253, 55.879586900315189 ], [ 124.957675409192689, 55.82620514645032 ], [ 124.675522088873208, 55.904598293776189 ], [ 124.500959100382147, 55.876176256528993 ], [ 124.369080844605264, 56.053323066506266 ], [ 124.250431757319689, 56.075337226431827 ], [ 124.205576613369999, 56.165099189376065 ], [ 123.88569949773364, 56.387256171135334 ], [ 123.289250115900131, 56.423481350583813 ], [ 123.042650180561282, 56.493141181520286 ], [ 122.887517531408889, 56.594737047176977 ], [ 122.803078241067965, 56.576960354236917 ], [ 122.781374138605543, 56.497792060555128 ], [ 122.589241163648694, 56.489575507203881 ], [ 122.46666466684087, 56.601868394910468 ], [ 122.282799921179389, 56.6506509474832 ], [ 122.159603305847895, 56.738371690401152 ], [ 121.598707309894394, 56.743875231057018 ], [ 121.598707309894394, 56.817100735410577 ], [ 121.420216912780234, 56.972956854974825 ], [ 120.65550906788917, 57.032074693492291 ], [ 120.30276574064635, 57.004143581760843 ], [ 119.898449334669067, 56.889396063777269 ], [ 119.780317011321017, 56.980088202708373 ], [ 119.645338169221077, 57.002257392264823 ], [ 119.617432895911406, 57.08984894487287 ], [ 119.686265903648518, 57.168397121829685 ], [ 119.404629348165827, 57.431895250065736 ], [ 119.495166456566722, 57.585891018555628 ], [ 119.32122358569984, 57.610075588817324 ], [ 119.178699985615822, 57.505534166468578 ], [ 119.141079543086448, 57.538917141113131 ], [ 119.155652296915946, 57.6944115263708 ], [ 119.044858025977078, 57.733272203249555 ], [ 119.159786412013204, 58.041625475435296 ], [ 119.124129673345692, 58.288535468237228 ], [ 119.068732537876258, 58.357265123186835 ], [ 119.13239790264106, 58.472348537954645 ], [ 118.776347284399662, 58.603968411313076 ], [ 118.875876093406987, 58.689079495222472 ], [ 118.893342727085155, 58.804834703558697 ], [ 118.785545688782463, 58.899996853471976 ], [ 118.84952111190978, 59.009008286802953 ], [ 118.707204218300035, 59.063836982390796 ], [ 118.688704054948175, 59.191451930961819 ], [ 118.845903761649197, 59.291058255234248 ], [ 118.758053826622699, 59.332916164749179 ], [ 118.75464318193724, 59.407795315501403 ], [ 118.397662387709033, 59.516057440898123 ], [ 118.282630649784664, 59.609333401315382 ], [ 118.058251580845763, 59.582642523933316 ], [ 117.883068474730294, 59.441901760557755 ], [ 117.758011509223707, 59.539415187960515 ], [ 117.597504510624617, 59.472313340987853 ], [ 117.337778762279981, 59.499727687882455 ], [ 117.089318474967627, 59.588404446108257 ], [ 117.195358514084091, 59.650597032527003 ], [ 117.229671665614774, 59.80430858017678 ], [ 117.0645137879809, 59.91882355416368 ], [ 117.301915318037459, 60.013934028132837 ], [ 117.054281853924408, 60.035405584799889 ], [ 116.976767205741908, 60.154442247511668 ], [ 116.582372674559224, 60.359933580370409 ], [ 116.075426874150821, 60.406907456913586 ], [ 115.708937616277922, 60.524781398742505 ], [ 115.238165317575294, 60.446956692197546 ], [ 114.83591596914664, 60.190383206120032 ], [ 114.697113072110596, 60.219218655416569 ], [ 114.543117303620647, 60.107778429331006 ], [ 114.522963494769442, 60.045585842912317 ], [ 114.569472284218477, 60.000575670230944 ], [ 114.30902306456278, 59.878877672566489 ], [ 114.174767693774015, 59.753458970954739 ], [ 114.042682733321385, 59.73671580678905 ], [ 114.038031854286601, 59.682403876037995 ], [ 113.854477166987635, 59.684212552067606 ], [ 113.779339633817017, 59.608558254959462 ], [ 113.591754185107561, 59.565201727777492 ], [ 113.604983351800229, 59.49905589521336 ], [ 113.424322544349934, 59.382732246096225 ], [ 113.472484979298315, 59.338962306864914 ], [ 113.461012810892498, 59.261628525835761 ], [ 113.264228956900752, 59.156854560389604 ], [ 112.91613650869283, 59.151635240573853 ], [ 112.644421828004965, 59.03365794505811 ], [ 112.569077590158599, 59.067118434967767 ], [ 112.616413201907676, 58.962241115834786 ], [ 112.502621698332632, 58.870360419397798 ], [ 112.447741326800724, 58.928496405984333 ], [ 112.451462029848699, 59.125228583132582 ], [ 112.526186150970034, 59.227651271988577 ], [ 112.635740187559577, 59.270336004702813 ], [ 112.631089309424056, 59.310488592774334 ], [ 112.293125441585858, 59.300566717979621 ], [ 112.275245395858292, 59.365265611518737 ], [ 112.332502883301345, 59.41658030873424 ], [ 112.270594516823394, 59.50039948235019 ], [ 111.942139112629889, 59.273850003075154 ], [ 111.763648716415105, 59.273643297500143 ], [ 111.637248162872368, 59.207600815924877 ], [ 111.470126581376576, 59.267287096122573 ], [ 111.296803827234783, 59.253179430286423 ], [ 111.175157504615129, 59.187808743178948 ], [ 111.091338331898442, 59.236539618908239 ], [ 111.000904576285109, 59.208479315967622 ], [ 110.68505822115992, 59.254626370210815 ], [ 110.576331007769738, 59.186103420836162 ], [ 110.589353468887452, 59.131326402091759 ], [ 110.531165806356853, 59.058721015362551 ], [ 110.27826134558461, 58.984048570185337 ], [ 109.822165155297625, 58.981258043124171 ], [ 109.74227339120398, 59.066369127033568 ], [ 109.636440056763149, 59.065955715883547 ], [ 109.633752883388809, 59.141610012092372 ], [ 109.531743605682834, 59.184191392918422 ], [ 109.504561801885586, 59.292556871102704 ], [ 109.261269159344181, 59.321340644455177 ], [ 109.252070754062004, 59.367410183433208 ], [ 109.347775507233848, 59.409552313788197 ], [ 109.268193800603399, 59.461435451784666 ], [ 109.523268670812456, 59.636153469007354 ], [ 109.500531039575776, 59.759143377864575 ], [ 109.645121698107857, 59.860635890733761 ], [ 109.624967889256652, 59.908436591375562 ], [ 109.763874139080201, 60.026982326772952 ], [ 109.694421013718738, 60.114728909011887 ], [ 109.732041457147488, 60.225058091957351 ], [ 109.946291944817347, 60.401946520415549 ], [ 109.922624139392497, 60.463338121157335 ], [ 110.116204055172943, 60.587051500426355 ], [ 110.045924106612176, 60.667615058088415 ], [ 110.266789178977376, 60.696502184228393 ], [ 110.288493279641102, 60.770166938153636 ], [ 110.235059848932849, 60.824918118476376 ], [ 110.447243279953341, 60.976976019727488 ], [ 110.517006463677319, 61.085005602026911 ], [ 110.48134972500975, 61.159212958311343 ], [ 110.190101353094917, 61.155285549688358 ], [ 110.08085737486789, 61.270368964456111 ], [ 109.800150995372121, 61.316490180277583 ], [ 109.870120883771733, 61.532885239861912 ], [ 109.620006951859295, 61.718093574458862 ], [ 109.603677198843627, 61.884284979967845 ], [ 109.999518670849909, 62.163544420438598 ], [ 109.936060011660174, 62.238940335128348 ], [ 109.997348261413094, 62.288187974795164 ], [ 109.894512159608439, 62.354230455471111 ], [ 109.902263624966281, 62.41355499956353 ], [ 109.486991815419913, 62.410997016499095 ], [ 109.267160271829027, 62.523522447303094 ], [ 109.249280227000838, 62.57028961917058 ], [ 109.369893019946858, 62.577007554854731 ], [ 109.472729119952874, 62.746041165167583 ], [ 109.646878697294028, 62.826191310780359 ], [ 109.471592238391054, 62.93179210122446 ], [ 109.452988723151009, 63.148962307164709 ], [ 109.407513461576968, 63.181518460408597 ], [ 109.451645136014179, 63.222756253198497 ], [ 109.380745069829061, 63.257327786248311 ], [ 109.364725376075228, 63.354169420082656 ], [ 109.278735793022406, 63.348536689116884 ], [ 109.222615188040436, 63.437213447342685 ], [ 109.042161086165152, 63.552296861211119 ], [ 108.857056106154346, 63.536948961025701 ], [ 108.571285434675019, 63.598495592297695 ], [ 108.124904412708418, 63.579995428945836 ], [ 108.117463006612411, 63.621594956941692 ], [ 108.265050896881348, 63.672651271738744 ], [ 108.297503697337731, 63.810523993687355 ], [ 108.647663202194963, 63.786752835474942 ], [ 108.766415643167363, 63.860443426922586 ], [ 108.687867466210548, 63.914238592836739 ], [ 108.73148237491165, 63.983640042254137 ], [ 108.495011020841901, 64.115725002706654 ], [ 108.540279575941611, 64.17773672107279 ], [ 108.484882439572857, 64.200112617103571 ], [ 108.533664992145646, 64.23535594282248 ], [ 108.467519158682194, 64.281709703539946 ], [ 108.042015415079277, 64.239438381975731 ], [ 107.967704706007339, 64.169881903826763 ], [ 107.606796503156033, 64.294318753507639 ], [ 107.327950473835244, 64.248585110414467 ], [ 107.221910434718723, 64.330182196850899 ], [ 106.735325148736592, 64.41860057175893 ], [ 106.621636997949054, 64.510377916307789 ], [ 106.569030388641465, 64.501799627750586 ], [ 106.584326612882819, 64.445317288462036 ], [ 106.169881625636492, 64.401133938080761 ], [ 106.068905877604152, 64.421546129350361 ], [ 106.144456821924734, 64.467770697959338 ], [ 106.042034133068739, 64.512858385006439 ], [ 105.790679965907657, 64.488725490688807 ], [ 105.706964145978532, 64.658430895469394 ], [ 105.875325961823648, 64.658534247357579 ], [ 105.847730747775756, 64.791291002277887 ], [ 106.006687452763686, 64.818782864437594 ], [ 105.950773553356782, 64.893920396708893 ], [ 106.220214470921064, 64.857178453322945 ], [ 105.983329705701294, 65.027969061922647 ], [ 106.373900181048498, 65.204185695913111 ], [ 106.498233677042492, 65.204676622328236 ], [ 106.426093378306746, 65.265680650341722 ], [ 106.443456659197409, 65.308468735843462 ], [ 106.62391076107275, 65.392959703027827 ], [ 106.828859490672926, 65.375079658199638 ], [ 106.958153924963597, 65.502203681254855 ], [ 106.420305616810708, 65.671443997142717 ], [ 106.48242068886367, 65.855308742804198 ], [ 106.471258579719631, 66.00739248337635 ], [ 106.34155073427894, 66.152396552159132 ], [ 106.116551547715687, 66.198646959189773 ], [ 106.103322381922339, 66.378325913809817 ], [ 106.321913690264523, 66.478888250692194 ], [ 106.243778925357049, 66.592007962497462 ], [ 106.254010857614958, 66.697272854358687 ], [ 106.142699822738564, 66.740474351909768 ], [ 106.184351026678485, 66.800625719201548 ], [ 106.008857863099877, 66.791789049125271 ], [ 106.056606886898294, 66.896020413111557 ], [ 105.686706984339821, 66.939480292181713 ], [ 105.540152622845198, 67.023402817685849 ], [ 105.893826125175508, 67.043659980223879 ], [ 105.993458286970338, 67.078128160486187 ], [ 106.054746534924618, 67.167166653018569 ], [ 106.492342563658326, 67.28382619891994 ], [ 106.666802199361996, 67.245353094769484 ], [ 106.802401158186854, 67.348240872518204 ], [ 106.894075149048831, 68.109331367148854 ], [ 106.890044386739021, 68.859931546203882 ], [ 106.145386997911601, 69.423101305280966 ], [ 106.455445590641432, 69.571309313174254 ], [ 106.590217727166305, 69.518857734396875 ], [ 106.838574659892572, 69.518237616772581 ], [ 107.925226678868114, 69.68122508407032 ], [ 108.014626905707075, 69.708045151762292 ], [ 108.05441775857264, 69.779513657829 ], [ 108.290579055179194, 69.856769925391689 ], [ 108.87100874235955, 69.840285142745131 ], [ 108.940978631658481, 69.789228827948023 ], [ 109.23698123629498, 69.77589630846785 ], [ 109.366585728048847, 69.84369578743059 ], [ 109.414954868572295, 69.892194119163264 ], [ 109.385189244188211, 69.929478664908402 ], [ 109.509005975345417, 70.033451647375614 ], [ 109.351702914957514, 70.073449204916869 ], [ 109.281526320083572, 70.212303778796297 ], [ 109.535464308730809, 70.263980211217756 ], [ 109.601506789406756, 70.378185125942764 ], [ 110.26317182781753, 70.427381090564836 ], [ 110.110519647363787, 70.482313137141546 ], [ 110.064217564389025, 70.548614000235887 ], [ 110.135014275987999, 70.55967275749174 ], [ 110.102768182005946, 70.631916409015048 ], [ 110.473701613338733, 70.715632228944173 ], [ 110.539434034752844, 70.800639960066064 ], [ 111.334941033701682, 70.855313626022962 ], [ 111.522423129623689, 70.938616034802124 ], [ 111.980276319996108, 70.988742174511685 ], [ 112.076394485217293, 71.061244208453445 ], [ 112.249407180097251, 71.00331492834124 ], [ 112.555538365103416, 71.096642564702563 ], [ 112.518641392086579, 71.161703193447579 ], [ 112.694858026076986, 71.217332872014424 ], [ 112.628195428676008, 71.287586982153471 ], [ 112.501381463983307, 71.267174790883871 ], [ 112.000016717697349, 71.407786363050207 ], [ 111.996089309074307, 72.132729194396745 ], [ 111.763648716415105, 72.143503729913164 ], [ 111.714452752692353, 72.206187241847715 ], [ 111.618127882795534, 72.213008531218691 ], [ 111.646653273729555, 72.26964590103745 ], [ 111.555496046805047, 72.316464748849057 ], [ 111.056715122904563, 72.380595200707887 ], [ 111.295356887310447, 72.503326728046034 ], [ 110.701698033437424, 72.650449531220829 ], [ 110.608783807326802, 72.785841783571414 ], [ 110.695290155216469, 72.826046048486319 ], [ 110.627387322566847, 72.894517320118212 ], [ 110.837296991363019, 72.945108547821178 ], [ 110.753684524221399, 72.999472154516297 ], [ 110.901272413590959, 73.050476793369285 ], [ 110.770427688387088, 73.171347967834436 ], [ 110.396807081881263, 73.193620511077711 ], [ 110.592557407997958, 73.263461209167417 ], [ 110.535609978917364, 73.316817125509885 ], [ 110.157648554437174, 73.39495189131668 ], [ 110.537780389253498, 73.406217353248223 ], [ 110.827375115668985, 73.563468735893423 ], [ 111.08493045457675, 73.587601630211054 ], [ 111.119553663570684, 73.63586741794694 ], [ 110.907188964456893, 73.691852473738265 ], [ 110.876475457000026, 73.734605210000041 ], [ 110.917979363000029, 73.765611070000034 ], [ 110.877730878377292, 73.76785161745812 ], [ 111.295176628998206, 73.869126694940974 ] ] ], [ [ [ 162.381683790000011, 70.681463934000078 ], [ 162.484141472000033, 70.654120184000078 ], [ 162.237803582000083, 70.654120184000078 ], [ 162.345550977000016, 70.662054755000042 ], [ 162.381683790000011, 70.681463934000078 ] ] ], [ [ [ 161.662282748000052, 70.79132721600007 ], [ 161.69459069100003, 70.750433661000045 ], [ 161.463145379000025, 70.80499909100007 ], [ 161.53052819100003, 70.841620184000078 ], [ 161.662282748000052, 70.79132721600007 ] ] ], [ [ [ 160.723480665000011, 70.838446356000077 ], [ 160.76397367800007, 70.804044887000032 ], [ 160.504065691000051, 70.805012156000032 ], [ 160.552810503000046, 70.88478811400006 ], [ 160.450745979000089, 70.872185860000059 ], [ 160.407969597000033, 70.914252020000049 ], [ 160.674385118000032, 70.914210700000069 ], [ 160.723480665000011, 70.838446356000077 ] ] ], [ [ [ 137.914235873000052, 71.558498440000051 ], [ 137.965830925000091, 71.510687567000048 ], [ 137.693369988000086, 71.41937897300005 ], [ 137.26685631600003, 71.490179755000042 ], [ 137.410899285000028, 71.456040757000039 ], [ 137.344086134, 71.427557684000078 ], [ 136.99187259200005, 71.517523505000042 ], [ 137.218272332000083, 71.576239325000074 ], [ 137.706065300000091, 71.596421617000033 ], [ 137.914235873000052, 71.558498440000051 ] ] ], [ [ [ 128.831065300000091, 72.655218817000048 ], [ 128.974457227000016, 72.593817450000074 ], [ 128.653330925000091, 72.527492580000057 ], [ 128.103688998000052, 72.634711005000042 ], [ 128.831065300000091, 72.655218817000048 ] ] ], [ [ [ 128.317149285000028, 72.812323309000078 ], [ 128.419006702000047, 72.869261872000038 ], [ 128.994082622000064, 72.932471077000059 ], [ 129.219659835000016, 72.926406027000041 ], [ 129.398612546000095, 72.866022627000063 ], [ 129.417138999000031, 72.812595702000067 ], [ 129.207042752, 72.761894598000083 ], [ 128.317149285000028, 72.812323309000078 ] ] ], [ [ [ 120.27857506600003, 73.100897528000075 ], [ 120.230235222000033, 73.039496161000045 ], [ 119.720713738000086, 73.03384023600006 ], [ 119.764659050000091, 73.072943427000041 ], [ 119.63445071700005, 73.128159898000035 ], [ 120.021983269000089, 73.168117580000057 ], [ 120.27857506600003, 73.100897528000075 ] ] ], [ [ [ 143.474945509, 73.32062409100007 ], [ 143.565113328000052, 73.231150289000084 ], [ 143.174945069000046, 73.176580216000048 ], [ 141.512434795000104, 73.299351709000064 ], [ 140.788620751000053, 73.410005352000042 ], [ 139.965100003000089, 73.326566625000055 ], [ 139.816695939000056, 73.339069220000056 ], [ 139.767087831000026, 73.418344749000084 ], [ 139.906518497000093, 73.471029485000031 ], [ 140.493302439000104, 73.485043916000052 ], [ 140.899180535000028, 73.801459052000041 ], [ 141.127207879000025, 73.881659247000073 ], [ 142.045176629000025, 73.916571356000077 ], [ 142.582774285000028, 73.825344143000052 ], [ 143.407237175000091, 73.542792059000078 ], [ 143.536957227000016, 73.443548895000049 ], [ 143.440928582000083, 73.408758856000077 ], [ 143.474945509, 73.32062409100007 ] ] ], [ [ [ 124.585948113000086, 73.915838934000078 ], [ 124.660655144000089, 73.891994533000059 ], [ 124.514170769000089, 73.841376044000071 ], [ 124.287852410000028, 73.880926825000074 ], [ 124.381032748000052, 73.939398505000042 ], [ 124.575694207000083, 73.950018622000073 ], [ 124.458832227000016, 73.92328522300005 ], [ 124.585948113000086, 73.915838934000078 ] ] ], [ [ [ 136.258962436000047, 73.957464911000045 ], [ 136.248301629000025, 73.912095445000034 ], [ 136.135264519000089, 73.87921784100007 ], [ 135.732676629000025, 74.041205145000049 ], [ 135.660166863000086, 74.110174872000073 ], [ 135.439300977000016, 74.161118882000039 ], [ 135.354014519000089, 74.259100653000075 ], [ 135.58952884200005, 74.235052802000041 ], [ 136.010752800000091, 74.103461005000042 ], [ 136.258962436000047, 73.957464911000045 ] ] ], [ [ [ 141.097829623000052, 74.149237372000073 ], [ 141.037771030000044, 74.003851630000042 ], [ 140.545095248000052, 73.915838934000078 ], [ 140.326670769000089, 73.938625393000052 ], [ 140.16471625500003, 74.070638190000068 ], [ 140.221888828000033, 74.220082318000038 ], [ 140.349900026, 74.254215725000051 ], [ 140.891449415000011, 74.276516018000052 ], [ 141.058360222000033, 74.234442450000074 ], [ 141.097829623000052, 74.149237372000073 ] ] ], [ [ [ 116.098317905000044, 74.354681708000044 ], [ 116.118174675000091, 74.307440497000073 ], [ 116.052989129000025, 74.285223700000074 ], [ 115.885752800000091, 74.323635158000059 ], [ 115.980723504000025, 74.377508856000077 ], [ 116.098317905000044, 74.354681708000044 ] ] ], [ [ [ 113.405772332000083, 74.444037177000041 ], [ 113.429453972000033, 74.394191799000055 ], [ 113.241221550000091, 74.300034898000035 ], [ 113.281586134, 74.27960846600007 ], [ 113.220062696000014, 74.244818427000041 ], [ 112.966563347000033, 74.193589585000041 ], [ 112.774912957000083, 74.088080145000049 ], [ 112.162852410000028, 74.138576565000051 ], [ 111.459239129000025, 74.313706773000035 ], [ 111.64771569100003, 74.379950262000079 ], [ 111.951345248000052, 74.370794989000046 ], [ 112.007334832000083, 74.538153387000079 ], [ 112.110118035000028, 74.551214911000045 ], [ 113.405772332000083, 74.444037177000041 ] ] ], [ [ [ 150.827647332000083, 75.163397528000075 ], [ 150.958018425000091, 75.142320054000038 ], [ 150.654063347000033, 75.007879950000074 ], [ 150.680511915000011, 74.933783270000049 ], [ 150.609222852000016, 74.893500067000048 ], [ 149.717539910000028, 74.765570380000042 ], [ 149.208994988000086, 74.758002020000049 ], [ 148.172129754000025, 74.803534247000073 ], [ 147.663828972000033, 74.95343659100007 ], [ 147.087901238000086, 75.005194403000075 ], [ 146.071787957000083, 75.240301825000074 ], [ 146.172862175000091, 75.290716864000046 ], [ 146.168630405000044, 75.396185614000046 ], [ 146.263926629000025, 75.391343492000033 ], [ 146.263845248000052, 75.436672268000052 ], [ 146.407074415000011, 75.47134023600006 ], [ 146.34148196700005, 75.522650458000044 ], [ 146.436208530000044, 75.596747137000079 ], [ 146.77076256600003, 75.506740627000056 ], [ 146.634287957000083, 75.437730210000041 ], [ 146.796722852000016, 75.366359768000052 ], [ 147.32545006600003, 75.349839585000041 ], [ 147.168142123000052, 75.362046617000033 ], [ 147.271657748000052, 75.406317450000074 ], [ 147.436208530000044, 75.389349677000041 ], [ 147.333181186000047, 75.430365302000041 ], [ 147.373871290000011, 75.440375067000048 ], [ 148.407725457000083, 75.421087958000044 ], [ 148.580088738000086, 75.382513739000046 ], [ 148.444509311000047, 75.287298895000049 ], [ 148.610362175000091, 75.215521552000041 ], [ 149.126800977000016, 75.268622137000079 ], [ 150.129405144000089, 75.225531317000048 ], [ 150.214691602000016, 75.186997789000031 ], [ 150.163422071000014, 75.156642971000053 ], [ 150.560801629000025, 75.128729559000078 ], [ 150.500254754000025, 75.094468492000033 ], [ 150.827647332000083, 75.163397528000075 ] ] ], [ [ [ 136.975108269000089, 75.591742255000042 ], [ 136.967621290000011, 75.601792710000041 ], [ 136.969818556000064, 75.609035549000055 ], [ 137.08130944100003, 75.568182684000078 ], [ 136.975108269000089, 75.591742255000042 ] ] ], [ [ [ 137.059906446000014, 75.640773830000057 ], [ 137.13990319100003, 75.652818101000037 ], [ 136.970225457000083, 75.60968659100007 ], [ 136.984629754000025, 75.621649481000077 ], [ 137.059906446000014, 75.640773830000057 ] ] ], [ [ [ 135.991384311000047, 75.527167059000078 ], [ 135.967133009, 75.479478257000039 ], [ 136.032969597000033, 75.444037177000041 ], [ 135.983409050000091, 75.417181708000044 ], [ 135.450043165000011, 75.375677802000041 ], [ 135.461599155000044, 75.462062893000052 ], [ 135.594086134, 75.568182684000078 ], [ 135.539398634, 75.677964585000041 ], [ 135.693125847000033, 75.869330145000049 ], [ 135.864756707000083, 75.704657294000071 ], [ 136.184336785000028, 75.615912177000041 ], [ 135.991384311000047, 75.527167059000078 ] ] ], [ [ [ 145.366221550000091, 75.540228583000044 ], [ 145.390391472000033, 75.516831773000035 ], [ 144.729340040000011, 75.431586005000042 ], [ 144.677744988000086, 75.327826239000046 ], [ 144.94109134200005, 75.273342190000051 ], [ 144.721364780000044, 75.246039130000042 ], [ 144.688161655000044, 75.159979559000078 ], [ 144.376312696000014, 75.05304596600007 ], [ 143.998545769000089, 75.024969794000071 ], [ 142.88445071700005, 75.14679596600007 ], [ 142.83757571700005, 75.225531317000048 ], [ 142.707774285000028, 75.23859284100007 ], [ 142.642100457000083, 75.319973049000055 ], [ 142.494313998000052, 75.375677802000041 ], [ 142.534515821000014, 75.476548570000034 ], [ 143.013519727000016, 75.602443752000056 ], [ 143.042979363000086, 75.646673895000049 ], [ 143.001149936000047, 75.707953192000048 ], [ 142.337901238000086, 75.725653387000079 ], [ 142.290049675000091, 75.711493231000077 ], [ 142.434092644000089, 75.677964585000041 ], [ 142.008311394000089, 75.663723049000055 ], [ 142.206879102000016, 75.635809637000079 ], [ 142.008311394000089, 75.622748114000046 ], [ 142.139659050000091, 75.59516022300005 ], [ 142.080577019000089, 75.534735419000071 ], [ 142.187022332000083, 75.47134023600006 ], [ 142.162852410000028, 75.379095770000049 ], [ 142.410166863000086, 75.266750393000052 ], [ 142.439463738000086, 75.203111070000034 ], [ 142.668711785000028, 75.087958075000074 ], [ 143.61451256600003, 75.011135158000059 ], [ 143.707774285000028, 74.947455145000049 ], [ 143.46452884200005, 74.900051174000055 ], [ 142.715098504000025, 74.89516836100006 ], [ 142.625254754000025, 74.848130601000037 ], [ 142.714040561000047, 74.848130601000037 ], [ 142.677989129000025, 74.833970445000034 ], [ 142.514008009, 74.817368882000039 ], [ 141.974131707000083, 74.933783270000049 ], [ 142.080577019000089, 74.964829820000034 ], [ 142.36451256600003, 74.930650132000039 ], [ 142.198741082000083, 75.00421784100007 ], [ 141.843760613000086, 74.998968817000048 ], [ 141.371104363000086, 74.919501044000071 ], [ 140.068695509, 74.827948309000078 ], [ 139.849619988000086, 74.964829820000034 ], [ 139.65202884200005, 74.98078034100007 ], [ 139.458506707000083, 74.930650132000039 ], [ 139.516612175000091, 74.855943101000037 ], [ 139.644786004000025, 74.889105536000045 ], [ 139.496267123000052, 74.767564195000034 ], [ 139.34343509200005, 74.687404690000051 ], [ 139.127207879000025, 74.652289130000042 ], [ 137.895274285000028, 74.846177476000037 ], [ 137.793793165000011, 74.975409247000073 ], [ 137.134125196000014, 75.141546942000048 ], [ 136.909922722000033, 75.273342190000051 ], [ 136.924327019000089, 75.320502020000049 ], [ 136.862152540000011, 75.362046617000033 ], [ 137.039317254000025, 75.388006903000075 ], [ 137.253754102000016, 75.336371161000045 ], [ 137.422373894000089, 75.369818427000041 ], [ 137.397308790000011, 75.417181708000044 ], [ 137.143321160000028, 75.410223700000074 ], [ 137.148692254000025, 75.464829820000034 ], [ 137.301036004000025, 75.47134023600006 ], [ 137.180674675000091, 75.550726630000042 ], [ 137.293630405000044, 75.601629950000074 ], [ 137.06763756600003, 75.725775458000044 ], [ 137.19849694100003, 75.789618231000077 ], [ 137.742686394000089, 75.749090887000079 ], [ 137.431976759, 75.887274481000077 ], [ 137.432953321000014, 75.953192450000074 ], [ 138.027517123000052, 76.031927802000041 ], [ 138.115977410000028, 76.075262762000079 ], [ 137.972666863000086, 76.05414459800005 ], [ 138.37663821700005, 76.157171942000048 ], [ 138.328298373000052, 76.136053778000075 ], [ 138.432139519000089, 76.063381252000056 ], [ 138.532725457000083, 76.186102606000077 ], [ 139.048838738000086, 76.239081122000073 ], [ 138.897308790000011, 76.218736070000034 ], [ 139.109629754000025, 76.096869208000044 ], [ 139.82545006600003, 75.970038153000075 ], [ 139.911631707000083, 75.937445380000042 ], [ 139.798594597000033, 75.88617584800005 ], [ 139.956065300000091, 75.835842190000051 ], [ 140.509532097000033, 75.79047272300005 ], [ 140.545909050000091, 75.755519924000055 ], [ 140.432953321000014, 75.65656159100007 ], [ 140.47584069100003, 75.640326239000046 ], [ 140.901866082000083, 75.615912177000041 ], [ 141.062266472000033, 75.650091864000046 ], [ 140.864431186000047, 75.738836981000077 ], [ 140.908946160000028, 75.984116929000038 ], [ 141.000987175000091, 76.047430731000077 ], [ 141.62468509200005, 76.01312897300005 ], [ 141.310069207000083, 76.184475002000056 ], [ 142.145681186000047, 76.011908270000049 ], [ 142.546885613000086, 75.862982489000046 ], [ 143.058848504000025, 75.806830145000049 ], [ 143.385590040000011, 75.807074286000045 ], [ 143.358897332000083, 75.834418036000045 ], [ 143.584808790000011, 75.869818427000041 ], [ 143.947113477000016, 75.834784247000073 ], [ 145.366221550000091, 75.540228583000044 ] ] ], [ [ [ 149.374713116000066, 76.738201573000083 ], [ 149.263218302000041, 76.710583314000075 ], [ 149.255800625, 76.633767985000077 ], [ 149.200090368000019, 76.62680582400003 ], [ 148.431788852000068, 76.629325828000049 ], [ 148.866735460000086, 76.733997870000053 ], [ 149.453496564000034, 76.768779133000066 ], [ 149.374713116000066, 76.738201573000083 ] ] ], [ [ [ 152.875254754000025, 76.151353257000039 ], [ 152.884287957000083, 76.116115627000056 ], [ 152.773448113000086, 76.083400783000059 ], [ 152.554860873000052, 76.139349677000041 ], [ 152.829274936000047, 76.196193752000056 ], [ 152.877696160000028, 76.191229559000078 ], [ 152.875254754000025, 76.151353257000039 ] ] ], [ [ [ 156.660980665000011, 77.107611395000049 ], [ 156.653330925000091, 77.084173895000049 ], [ 156.491709832000083, 77.098211981000077 ], [ 156.550303582000083, 77.125799872000073 ], [ 156.660980665000011, 77.107611395000049 ] ] ], [ [ [ 161.893766933000052, 69.653837723000038 ], [ 161.866936048000071, 69.554553803000033 ], [ 161.751563900000065, 69.553235414000085 ], [ 161.665616534000037, 69.620548109000083 ], [ 161.893766933000052, 69.653837723000038 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-SPE", "NAME_1": "City of St. Petersburg" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.697139291337795, 59.950047624764714 ], [ 30.161957227000073, 59.868475653000075 ], [ 30.246104363000086, 59.97492096600007 ], [ 29.948252800000034, 60.029689846000053 ], [ 29.84896894600007, 60.166937567000048 ], [ 29.701019727000073, 60.200506903000075 ], [ 29.417897983000046, 60.168850002000056 ], [ 29.446606073411544, 60.210795397389631 ], [ 29.632951287771675, 60.266011663907136 ], [ 30.390424432141799, 60.122738755888861 ], [ 30.349910108864435, 60.0625873894964 ], [ 30.527263625316039, 59.970344956954193 ], [ 30.51165734181285, 59.862392889919931 ], [ 30.756190219602956, 59.777488512484808 ], [ 30.747715284732578, 59.725657050432517 ], [ 30.55558230977573, 59.685917874410336 ], [ 30.469282668360449, 59.620237128040969 ], [ 30.259372999564278, 59.609850165252908 ], [ 29.849992303402075, 59.827562975350986 ], [ 29.679563429108953, 59.868852444085007 ], [ 29.697139291337795, 59.950047624764714 ] ] ], [ [ [ 29.791351759000065, 59.994859117000033 ], [ 29.78687584700009, 59.975083726000037 ], [ 29.657399936000047, 60.025458075000074 ], [ 29.713552280000044, 60.021877346000053 ], [ 29.791351759000065, 59.994859117000033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-ARK", "NAME_1": "Arkhangel'sk" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.523406226628119, 63.971429154705895 ], [ 37.194183790000068, 63.890814520000049 ], [ 37.27898196700005, 63.822211005000042 ], [ 37.437810567000042, 63.792280503000086 ], [ 37.608423075000076, 63.815586401000076 ], [ 37.657391082000061, 63.898636898000063 ], [ 37.984629754000082, 63.945746161000045 ], [ 38.088063998000052, 64.034898179000038 ], [ 38.045664910000085, 64.148342190000051 ], [ 37.90202884200005, 64.239935614000046 ], [ 38.026215040000068, 64.29523346600007 ], [ 37.908864780000044, 64.342962958000044 ], [ 37.95671634200005, 64.364081122000073 ], [ 37.83252523200008, 64.35833357100006 ], [ 37.749026731000072, 64.441713930000049 ], [ 37.629893425000034, 64.377020575000074 ], [ 37.286228154000071, 64.352206061000061 ], [ 37.121500624000078, 64.394739991000051 ], [ 36.695262278000087, 64.707875905000037 ], [ 36.559760947000086, 64.717422723000084 ], [ 36.504242384000065, 64.835842190000051 ], [ 36.572520379000082, 64.829575914000031 ], [ 36.439952019000089, 64.917059637000079 ], [ 36.631017159000066, 64.904162555000084 ], [ 36.807444256000053, 64.959052297000085 ], [ 36.867360873000052, 65.075995184000078 ], [ 36.820001697000066, 65.147141284000043 ], [ 37.217388236000033, 65.140221343000064 ], [ 37.67266027900007, 65.035662968000054 ], [ 37.794594757000084, 64.920614885000077 ], [ 38.046434246000047, 64.853671569000085 ], [ 38.385021487000074, 64.844626712000036 ], [ 38.403005405000044, 64.774359442000048 ], [ 38.066579623000052, 64.781195380000042 ], [ 38.045420769000089, 64.743719794000071 ], [ 38.125743035000085, 64.69594961100006 ], [ 38.048106316000087, 64.64594147300005 ], [ 38.339040561000047, 64.758368231000077 ], [ 38.472504102000073, 64.743475653000075 ], [ 38.491709832000083, 64.767523505000042 ], [ 38.416026238000086, 64.802313544000071 ], [ 38.448030871000071, 64.817878104000044 ], [ 39.330821160000085, 64.639715887000079 ], [ 39.566524317000074, 64.545267993000039 ], [ 39.923594597000033, 64.603013414000031 ], [ 39.786387566000087, 64.596869208000044 ], [ 39.850352410000085, 64.675970770000049 ], [ 40.181651238000086, 64.558661200000074 ], [ 40.517100457000083, 64.541449286000045 ], [ 40.410899285000085, 64.736802476000037 ], [ 40.517344597000033, 64.774115302000041 ], [ 40.43685957100007, 64.809149481000077 ], [ 40.27312259200005, 65.021429755000042 ], [ 40.114024285000085, 65.074693101000037 ], [ 39.740896030000044, 65.356512762000079 ], [ 39.709483269000089, 65.447699286000045 ], [ 39.749278191000087, 65.552069403000075 ], [ 40.471690300000034, 65.81281159100007 ], [ 40.710134311000047, 65.972316799000055 ], [ 41.342539910000085, 66.062892971000053 ], [ 41.643565300000034, 66.172756252000056 ], [ 42.200938347000033, 66.532171942000048 ], [ 42.66146894600007, 66.443345445000034 ], [ 42.548594597000033, 66.38507721600007 ], [ 43.30209394600007, 66.426011460000041 ], [ 43.367198113000086, 66.347154039000031 ], [ 43.555349155000044, 66.323635158000059 ], [ 43.692637566000087, 66.237209377000056 ], [ 43.288340691000087, 66.090236721000053 ], [ 43.352793816000087, 66.041489976000037 ], [ 43.45085696700005, 66.037054755000042 ], [ 43.514903191000087, 65.974188544000071 ], [ 43.500987175000034, 66.052679755000042 ], [ 43.382334832000083, 66.071926174000055 ], [ 43.47982832100007, 66.13117096600007 ], [ 43.836436394000089, 66.185777085000041 ], [ 44.045664910000085, 66.081040757000039 ], [ 44.040537957000083, 65.99359772300005 ], [ 44.179698113000086, 65.864325262000079 ], [ 44.124522332000083, 65.987779039000031 ], [ 44.158539259000065, 66.086818752000056 ], [ 44.079356316000087, 66.206691799000055 ], [ 44.165863477000073, 66.372951565000051 ], [ 44.303166945198313, 66.413000800546456 ], [ 44.860238885316278, 66.236319078562587 ], [ 45.741322056167917, 66.06790558497471 ], [ 46.347486607221128, 66.028011380221017 ], [ 47.154465772777144, 65.815750433935364 ], [ 47.726110466724663, 65.818928535523469 ], [ 47.763730910153356, 65.849805203047652 ], [ 47.753188917734349, 65.940704047553709 ], [ 48.156265090261684, 66.130279039446066 ], [ 49.006032342218816, 66.119116930302084 ], [ 48.998694288910258, 65.240333360096486 ], [ 49.605789015950279, 65.289193427035002 ], [ 50.063022087799084, 64.890199692761598 ], [ 50.467441848362569, 64.791601061539723 ], [ 50.314686314222001, 64.512444972957098 ], [ 49.595350376318777, 64.591354886019133 ], [ 49.450139601061721, 64.462990627715271 ], [ 48.950015090024351, 64.490611681084204 ], [ 48.840150995072349, 64.357312323804649 ], [ 48.51831017377549, 64.355503649573734 ], [ 48.408342726035926, 64.224219672100162 ], [ 48.196159295015434, 64.238921617138885 ], [ 48.115750766984263, 64.348113919421792 ], [ 46.611449822551265, 64.326564845691053 ], [ 46.322888624910092, 64.264708156955862 ], [ 45.824521112159573, 64.283621731457686 ], [ 45.427129348340713, 64.171690578956998 ], [ 45.883638949777662, 63.964313055702917 ], [ 46.43574995339759, 63.887728583507283 ], [ 46.819189081011245, 63.746961981710058 ], [ 47.021347284449575, 63.559169827425592 ], [ 46.946829868003988, 63.341560371014282 ], [ 47.090903761699224, 63.246475735466788 ], [ 47.554648064556488, 63.148497219171304 ], [ 47.51578738767779, 63.036772773144946 ], [ 47.435688918009134, 62.972745673174245 ], [ 47.082635532403856, 62.839627183947357 ], [ 47.2376648287688, 62.635660305378735 ], [ 47.234874301707634, 62.35149160435401 ], [ 47.386286248711372, 62.320434067877898 ], [ 47.413364698821795, 62.192793280885155 ], [ 47.62100060359495, 62.185455227576654 ], [ 47.649836052891487, 62.296662910564862 ], [ 47.751121861084982, 62.321829331858169 ], [ 48.290830519412907, 62.321622626283158 ], [ 48.302302686919461, 62.402806302468832 ], [ 48.234503207956664, 62.464146227266554 ], [ 48.366071405371031, 62.729298001001894 ], [ 48.657009718923348, 62.707077135501379 ], [ 48.714473911042148, 62.815545966473167 ], [ 48.875084263328063, 62.829136868371734 ], [ 49.608992954161465, 62.770225735429335 ], [ 49.369421013768772, 62.149385077759121 ], [ 49.216458774952457, 62.096881822138357 ], [ 49.051610955681042, 61.690963447505055 ], [ 49.461405063892585, 61.586111965894474 ], [ 49.313920526411152, 61.187893377976991 ], [ 48.509318474967642, 61.04774689380406 ], [ 48.446479933402202, 60.984107368360355 ], [ 48.418988071242495, 60.853805243716977 ], [ 47.984182569569896, 60.896489977330532 ], [ 47.958034295446339, 61.007335924213521 ], [ 47.568497348873507, 61.059115709422429 ], [ 47.196116977616384, 61.04831533548429 ], [ 47.07271365670988, 60.860135607572204 ], [ 46.946519809641472, 60.857009181928163 ], [ 46.761724887993182, 60.901657620302899 ], [ 46.746221958176818, 60.98284129468999 ], [ 46.581580845379676, 60.999997870904963 ], [ 46.508510369757744, 61.063663234770445 ], [ 46.285061475906389, 60.96775177692291 ], [ 45.878161249342156, 61.016275947077247 ], [ 45.766643507991489, 61.054594020697493 ], [ 45.786693963155869, 61.166757718094175 ], [ 45.378760206918002, 61.205463365341984 ], [ 45.332354771155735, 61.189340317901326 ], [ 45.229105259100379, 60.903879706583155 ], [ 44.2058085474265, 60.971808376755178 ], [ 44.157542758791237, 60.994778551089212 ], [ 44.16725792801094, 61.079734606267039 ], [ 44.052949659599108, 61.079217841430193 ], [ 43.775963983151257, 61.020771796481199 ], [ 43.74692182827971, 60.894836330931923 ], [ 43.52491987525201, 60.847190659921012 ], [ 43.510863885359981, 60.767453925458256 ], [ 43.149852328821908, 60.806004543974495 ], [ 42.97994022026495, 60.736861476975548 ], [ 42.823050571027011, 60.855303860484753 ], [ 42.650451288196393, 60.863107000887339 ], [ 42.558467238072581, 60.831687731003967 ], [ 42.550509068039048, 60.782646796012784 ], [ 42.394756301262248, 60.769417630219436 ], [ 41.947238396834507, 60.834943346058537 ], [ 41.923467237722832, 60.917470608481779 ], [ 41.719448683210146, 60.84021434181841 ], [ 41.536307407061145, 60.900365709110133 ], [ 41.394093866238904, 60.857991034758413 ], [ 41.412077263854599, 60.791199246148267 ], [ 41.343037551441796, 60.645962633368811 ], [ 41.059333936611836, 60.649683336416786 ], [ 40.799608189166577, 60.717379461692758 ], [ 40.746484815921519, 60.779649563376609 ], [ 40.55507531137647, 60.719808255346663 ], [ 40.407590772995775, 60.783990384048934 ], [ 40.351470168013805, 60.70797435173489 ], [ 39.953768344933167, 60.649993394779301 ], [ 39.636681756357973, 60.746473294307066 ], [ 39.358765903023993, 60.68218781191797 ], [ 39.176658155649363, 60.714227200325013 ], [ 39.190610792753887, 60.652938951471413 ], [ 38.957240025007138, 60.806883043117921 ], [ 38.811409133025052, 60.717947903372988 ], [ 38.661340773158145, 60.711384996420406 ], [ 38.585789828837505, 60.797219549842339 ], [ 38.42094200956609, 60.811223862890927 ], [ 38.372262810680127, 60.950543524763816 ], [ 38.328647901979082, 60.910235907960782 ], [ 38.212996047329682, 60.923981839490295 ], [ 38.144886509105106, 61.072964992840127 ], [ 38.178579543011494, 61.125933336454295 ], [ 37.969393344627122, 61.143658352550915 ], [ 37.973010694887648, 61.204739894930185 ], [ 37.857358840238248, 61.284579983079709 ], [ 37.761964146328296, 61.648227037048116 ], [ 37.881543409600624, 61.718248603190432 ], [ 37.929499138974052, 61.962109687412124 ], [ 37.807749465365532, 61.997559718706043 ], [ 37.729304640296903, 62.199847114252918 ], [ 37.428754510312388, 62.213205471255492 ], [ 37.569004347272767, 62.353765367477706 ], [ 37.590295037685792, 62.453604233948226 ], [ 37.504925571358001, 62.645323797755054 ], [ 37.352273390004939, 62.683822740327173 ], [ 37.097818638319495, 62.651886704707636 ], [ 36.759544712118725, 62.717670802965131 ], [ 36.500542433286626, 62.826036282048733 ], [ 36.258903436244566, 63.031760158904206 ], [ 36.31450727728901, 63.155783596535741 ], [ 36.412279087110164, 63.205599676983468 ], [ 36.262004021668247, 63.23552033099844 ], [ 36.21983605289148, 63.416491196811251 ], [ 36.027599725147184, 63.473955389829371 ], [ 35.857377557328391, 63.598650621029321 ], [ 36.469329868078944, 63.675545152486791 ], [ 36.556663039167915, 63.769544583315849 ], [ 36.523406226628119, 63.971429154705895 ] ] ], [ [ [ 51.40951582100007, 71.806138414000031 ], [ 51.439626498000052, 71.942206122000073 ], [ 51.610036655000044, 72.091701565000051 ], [ 51.865733269000032, 72.158677476000037 ], [ 52.066742384000065, 72.074286200000074 ], [ 52.187754754000082, 72.12921784100007 ], [ 52.200368686000047, 72.082749742000033 ], [ 52.368418816000087, 72.075344143000052 ], [ 52.409434441000087, 72.086086330000057 ], [ 52.368418816000087, 72.16242096600007 ], [ 52.490082227000073, 72.164211330000057 ], [ 52.40202884200005, 72.223211981000077 ], [ 52.484548373000052, 72.20962148600006 ], [ 52.416514519000032, 72.289292710000041 ], [ 52.58757571700005, 72.264227606000077 ], [ 52.684336785000085, 72.32257721600007 ], [ 52.580739780000044, 72.374090887000079 ], [ 52.722911004000082, 72.34516022300005 ], [ 52.868174675000034, 72.346747137000079 ], [ 52.689952019000032, 72.367173570000034 ], [ 52.684092644000032, 72.446926174000055 ], [ 52.820323113000086, 72.450384833000044 ], [ 52.680023634000065, 72.478745835000041 ], [ 53.102061394000032, 72.600653387000079 ], [ 52.72396894600007, 72.559027411000045 ], [ 52.811778191000087, 72.61391836100006 ], [ 52.754893425000034, 72.638373114000046 ], [ 52.980235222000033, 72.675848700000074 ], [ 53.21810957100007, 72.648423570000034 ], [ 53.005869988000086, 72.683172919000071 ], [ 52.575043165000068, 72.670640367000033 ], [ 52.375254754000082, 72.730373440000051 ], [ 52.616709832000083, 72.863226630000042 ], [ 53.026866082000083, 72.924994208000044 ], [ 53.382009311000047, 72.888617255000042 ], [ 53.293304884000065, 72.908433335000041 ], [ 53.395681186000047, 72.929632880000042 ], [ 53.14193769600007, 72.962469794000071 ], [ 53.152842644000032, 73.014227606000077 ], [ 53.382009311000047, 73.011542059000078 ], [ 53.121918165000068, 73.100897528000075 ], [ 53.322520379000082, 73.220851955000057 ], [ 53.753184441000087, 73.298895575000074 ], [ 54.19076582100007, 73.272202867000033 ], [ 54.531993035000085, 73.37641022300005 ], [ 54.934825066000087, 73.425360419000071 ], [ 55.304209832000083, 73.339341539000031 ], [ 55.489756707000083, 73.32062409100007 ], [ 55.758067254000082, 73.327948309000078 ], [ 56.43523196700005, 73.230129299000055 ], [ 56.582041863000086, 73.129584052000041 ], [ 55.808360222000033, 73.066107489000046 ], [ 56.46615644600007, 73.052476304000038 ], [ 56.377207879000082, 73.006659247000073 ], [ 55.616465691000087, 72.963690497000073 ], [ 56.251800977000073, 72.972357489000046 ], [ 56.219899936000047, 72.826564846000053 ], [ 56.062673373000052, 72.777777411000045 ], [ 55.480723504000082, 72.805812893000052 ], [ 55.431651238000086, 72.785589911000045 ], [ 55.810720248000052, 72.758368231000077 ], [ 55.946055535000085, 72.668890692000048 ], [ 55.616465691000087, 72.696844794000071 ], [ 55.723480665000068, 72.638332424000055 ], [ 55.62273196700005, 72.620510158000059 ], [ 55.684825066000087, 72.573309637000079 ], [ 55.618174675000034, 72.542181708000044 ], [ 55.267100457000083, 72.586981512000079 ], [ 55.542735222000033, 72.526841539000031 ], [ 55.536143425000034, 72.472479559000078 ], [ 55.115570509000065, 72.450384833000044 ], [ 55.465668165000068, 72.43618398600006 ], [ 55.475596550000034, 72.37055084800005 ], [ 55.376963738000086, 72.302679755000042 ], [ 55.574961785000085, 72.199652411000045 ], [ 55.342784050000034, 72.065578518000052 ], [ 55.452647332000083, 72.058783270000049 ], [ 55.349619988000086, 71.976263739000046 ], [ 55.390472852000073, 71.942694403000075 ], [ 55.225433790000068, 71.929022528000075 ], [ 55.506358269000032, 71.898016669000071 ], [ 55.52865644600007, 71.785142320000034 ], [ 55.672129754000082, 71.611029364000046 ], [ 56.014414910000085, 71.387152411000045 ], [ 56.105723504000082, 71.258978583000044 ], [ 57.03874759200005, 70.869818427000041 ], [ 57.466807488000086, 70.818019924000055 ], [ 57.638682488000086, 70.729885158000059 ], [ 57.432627800000034, 70.743557033000059 ], [ 57.539317254000082, 70.704779364000046 ], [ 57.39779707100007, 70.626206773000035 ], [ 57.45248457100007, 70.606350002000056 ], [ 56.740489129000082, 70.70258209800005 ], [ 57.343272332000083, 70.571600653000075 ], [ 57.295746290000068, 70.564683335000041 ], [ 56.596527540000068, 70.674627997000073 ], [ 56.698985222000033, 70.633693752000056 ], [ 56.58529707100007, 70.642320054000038 ], [ 56.49350019600007, 70.695135809000078 ], [ 56.581309441000087, 70.73773834800005 ], [ 56.55209394600007, 70.753973700000074 ], [ 56.199229363000086, 70.709377346000053 ], [ 56.301768425000034, 70.681463934000078 ], [ 56.23796634200005, 70.653143622000073 ], [ 56.433604363000086, 70.676214911000045 ], [ 56.527598504000082, 70.640529690000051 ], [ 56.453298373000052, 70.626206773000035 ], [ 56.654551629000082, 70.589992580000057 ], [ 56.514008009000065, 70.544867255000042 ], [ 56.400645379000082, 70.563869533000059 ], [ 56.562510613000086, 70.579046942000048 ], [ 56.041026238000086, 70.647935289000031 ], [ 56.178233269000032, 70.609767971000053 ], [ 56.131521030000044, 70.595892645000049 ], [ 55.808360222000033, 70.695135809000078 ], [ 56.047862175000034, 70.585272528000075 ], [ 55.719248894000032, 70.611395575000074 ], [ 55.625254754000082, 70.633734442000048 ], [ 55.602793816000087, 70.647935289000031 ], [ 55.791514519000032, 70.633693752000056 ], [ 55.738047722000033, 70.707586981000077 ], [ 55.599375847000033, 70.721421617000033 ], [ 55.693695509000065, 70.69867584800005 ], [ 55.746836785000085, 70.647935289000031 ], [ 55.404795769000032, 70.750392971000053 ], [ 55.349619988000086, 70.70258209800005 ], [ 55.420664910000085, 70.696234442000048 ], [ 55.472504102000073, 70.654120184000078 ], [ 55.250010613000086, 70.678534247000073 ], [ 55.295583530000044, 70.606350002000056 ], [ 55.162608269000032, 70.553127346000053 ], [ 54.760590040000068, 70.680609442000048 ], [ 54.712168816000087, 70.757798570000034 ], [ 54.513438347000033, 70.825425523000035 ], [ 54.568125847000033, 70.777044989000046 ], [ 54.492442254000082, 70.784491278000075 ], [ 54.478770379000082, 70.736029364000046 ], [ 54.767425977000073, 70.647935289000031 ], [ 54.286957227000073, 70.777044989000046 ], [ 54.294444207000083, 70.743557033000059 ], [ 54.225108269000032, 70.729559637000079 ], [ 53.85482832100007, 70.822211005000042 ], [ 53.889821811000047, 70.784491278000075 ], [ 53.54460696700005, 70.854315497000073 ], [ 53.539724155000044, 70.80499909100007 ], [ 53.30014082100007, 70.866400458000044 ], [ 53.576833530000044, 70.888739325000074 ], [ 53.70476321700005, 70.845933335000041 ], [ 53.673594597000033, 70.890366929000038 ], [ 53.724619988000086, 70.968817450000074 ], [ 53.501719597000033, 71.094427802000041 ], [ 53.904307488000086, 71.054632880000042 ], [ 53.93685957100007, 71.059475002000056 ], [ 53.807139519000032, 71.133978583000044 ], [ 54.243988477000073, 71.122870184000078 ], [ 53.992198113000086, 71.160589911000045 ], [ 54.164073113000086, 71.209662177000041 ], [ 54.064463738000086, 71.237005927000041 ], [ 53.94304446700005, 71.17641836100006 ], [ 53.801036004000082, 71.209662177000041 ], [ 53.832286004000082, 71.170111395000049 ], [ 53.795909050000034, 71.155340887000079 ], [ 53.450938347000033, 71.26430898600006 ], [ 53.594899936000047, 71.301825262000079 ], [ 53.682383660000085, 71.398342190000051 ], [ 53.951182488000086, 71.462225653000075 ], [ 53.576345248000052, 71.390814520000049 ], [ 53.543630405000044, 71.316839911000045 ], [ 53.413340691000087, 71.311753648000035 ], [ 53.251719597000033, 71.456040757000039 ], [ 53.444102410000085, 71.545477606000077 ], [ 53.347829623000052, 71.567531643000052 ], [ 53.113047722000033, 71.422430731000077 ], [ 53.029633009000065, 71.499579169000071 ], [ 53.03874759200005, 71.442775783000059 ], [ 52.882334832000083, 71.39398834800005 ], [ 52.821299675000034, 71.469916083000044 ], [ 52.820323113000086, 71.428778387000079 ], [ 52.71810957100007, 71.489732164000031 ], [ 52.609873894000032, 71.468695380000042 ], [ 52.643809441000087, 71.546087958000044 ], [ 52.547211134000065, 71.634833075000074 ], [ 52.498789910000085, 71.565904039000031 ], [ 52.368418816000087, 71.534898179000038 ], [ 52.416270379000082, 71.476548570000034 ], [ 52.280446811000047, 71.513739325000074 ], [ 52.268809441000087, 71.587958075000074 ], [ 52.141856316000087, 71.545477606000077 ], [ 52.279063347000033, 71.476548570000034 ], [ 51.840342644000032, 71.456040757000039 ], [ 51.532399936000047, 71.565904039000031 ], [ 51.549652540000068, 71.613511460000041 ], [ 51.40951582100007, 71.806138414000031 ] ] ], [ [ [ 56.986989780000044, 74.690497137000079 ], [ 56.602793816000087, 74.697333075000074 ], [ 56.416840040000068, 74.753119208000044 ], [ 56.500987175000034, 74.793524481000077 ], [ 56.465993686000047, 74.799261786000045 ], [ 55.832692905000044, 74.800034898000035 ], [ 55.884938998000052, 74.846177476000037 ], [ 56.678477410000085, 74.94867584800005 ], [ 56.294932488000086, 74.964829820000034 ], [ 56.46648196700005, 75.012762762000079 ], [ 56.420583530000044, 75.037258205000057 ], [ 55.903330925000034, 74.991278387000079 ], [ 55.865000847000033, 75.003607489000046 ], [ 55.946055535000085, 75.074042059000078 ], [ 55.726328972000033, 75.08148834800005 ], [ 55.808360222000033, 75.156642971000053 ], [ 56.071136915000068, 75.218939520000049 ], [ 56.233571811000047, 75.19757721600007 ], [ 56.137217644000032, 75.156642971000053 ], [ 56.173594597000033, 75.150213934000078 ], [ 56.371348504000082, 75.188177802000041 ], [ 56.453379754000082, 75.118963934000078 ], [ 56.445811394000032, 75.067287502000056 ], [ 56.530446811000047, 75.07843659100007 ], [ 56.907074415000068, 75.240179755000042 ], [ 56.892100457000083, 75.280462958000044 ], [ 56.733246290000068, 75.296576239000046 ], [ 56.757985873000052, 75.318426825000074 ], [ 57.04623457100007, 75.398138739000046 ], [ 57.741058790000068, 75.327866929000038 ], [ 57.640391472000033, 75.439398505000042 ], [ 57.500824415000068, 75.499212958000044 ], [ 58.164724155000044, 75.578355210000041 ], [ 58.195648634000065, 75.603216864000046 ], [ 58.146820509000065, 75.628851630000042 ], [ 57.925547722000033, 75.628973700000074 ], [ 58.019297722000033, 75.681341864000046 ], [ 58.604502800000034, 75.732611395000049 ], [ 58.536143425000034, 75.759955145000049 ], [ 58.93100019600007, 75.867621161000045 ], [ 60.347666863000086, 76.005682684000078 ], [ 60.042735222000033, 76.05414459800005 ], [ 60.268077019000032, 76.110093492000033 ], [ 60.838389519000032, 76.122992255000042 ], [ 60.46843509200005, 76.01312897300005 ], [ 60.734711134000065, 76.005357164000031 ], [ 60.818369988000086, 76.060126044000071 ], [ 61.14576256600003, 76.116115627000056 ], [ 61.119313998000052, 76.151190497000073 ], [ 60.89975019600007, 76.157171942000048 ], [ 61.076914910000085, 76.279974677000041 ], [ 61.67514082100007, 76.315171617000033 ], [ 62.093760613000086, 76.253404039000031 ], [ 62.38249759200005, 76.271185614000046 ], [ 62.388926629000082, 76.197088934000078 ], [ 62.503672722000033, 76.177679755000042 ], [ 62.779470248000052, 76.270697333000044 ], [ 62.956797722000033, 76.206935940000051 ], [ 63.719248894000032, 76.349676825000074 ], [ 63.956065300000034, 76.363226630000042 ], [ 64.090830925000034, 76.31281159100007 ], [ 64.475271030000044, 76.398667710000041 ], [ 64.676036004000082, 76.38312409100007 ], [ 64.669769727000073, 76.41860586100006 ], [ 64.825938347000033, 76.484198309000078 ], [ 65.168955925000034, 76.475287177000041 ], [ 65.484873894000032, 76.574896552000041 ], [ 65.998789910000085, 76.533351955000057 ], [ 66.03288821700005, 76.547552802000041 ], [ 65.753428582000083, 76.682847398000035 ], [ 66.654063347000033, 76.90070221600007 ], [ 67.588063998000052, 77.013373114000046 ], [ 68.462901238000086, 76.966701565000051 ], [ 68.513194207000083, 76.952297268000052 ], [ 68.488291863000086, 76.926214911000045 ], [ 68.808604363000086, 76.869086005000042 ], [ 68.75912519600007, 76.827378648000035 ], [ 68.93091881600003, 76.787176825000074 ], [ 68.893565300000034, 76.74835846600007 ], [ 68.930674675000034, 76.71938711100006 ], [ 69.033946160000085, 76.712062893000052 ], [ 68.89389082100007, 76.67914459800005 ], [ 68.787608269000032, 76.588568427000041 ], [ 68.938324415000068, 76.568060614000046 ], [ 68.177744988000086, 76.314601955000057 ], [ 68.32748457100007, 76.294338283000059 ], [ 68.287933790000068, 76.281317450000074 ], [ 63.761729363000086, 75.641587632000039 ], [ 63.709646030000044, 75.635809637000079 ], [ 63.72592207100007, 75.666571356000077 ], [ 63.648448113000086, 75.719549872000073 ], [ 63.55201256600003, 75.711493231000077 ], [ 63.62037194100003, 75.691066799000055 ], [ 63.30437259200005, 75.588609117000033 ], [ 63.029958530000044, 75.587713934000078 ], [ 62.27279707100007, 75.44009023600006 ], [ 62.028819207000083, 75.448797919000071 ], [ 61.845713738000086, 75.362046617000033 ], [ 61.694183790000068, 75.375677802000041 ], [ 61.65398196700005, 75.279527085000041 ], [ 61.48170006600003, 75.223456122000073 ], [ 61.379649285000085, 75.259670315000051 ], [ 61.379649285000085, 75.334173895000049 ], [ 61.27662194100003, 75.327866929000038 ], [ 61.271657748000052, 75.263495184000078 ], [ 61.107432488000086, 75.197658596000053 ], [ 60.812754754000082, 75.146144924000055 ], [ 60.724782748000052, 75.02765534100007 ], [ 60.59148196700005, 75.034165757000039 ], [ 60.611827019000032, 75.101385809000078 ], [ 60.571055535000085, 75.117905992000033 ], [ 60.49382571700005, 75.110256252000056 ], [ 60.416026238000086, 75.010931708000044 ], [ 59.927256707000083, 75.005804755000042 ], [ 60.621267123000052, 74.968410549000055 ], [ 60.687510613000086, 74.923814195000034 ], [ 60.560557488000086, 74.866278387000079 ], [ 60.194102410000085, 74.854966539000031 ], [ 60.372325066000087, 74.793524481000077 ], [ 60.276377800000034, 74.749660549000055 ], [ 59.933767123000052, 74.725287177000041 ], [ 59.508799675000034, 74.799750067000048 ], [ 59.872569207000083, 74.676825262000079 ], [ 59.874766472000033, 74.628485419000071 ], [ 59.75521894600007, 74.587469794000071 ], [ 59.090505405000044, 74.738267320000034 ], [ 59.289805535000085, 74.642645575000074 ], [ 59.08366946700005, 74.648871161000045 ], [ 59.221446160000085, 74.615423895000049 ], [ 59.09115644600007, 74.494940497000073 ], [ 59.145762566000087, 74.444037177000041 ], [ 58.186778191000087, 74.581244208000044 ], [ 58.638682488000086, 74.423570054000038 ], [ 58.570485873000052, 74.388861395000049 ], [ 58.728037957000083, 74.300034898000035 ], [ 58.680349155000044, 74.251654364000046 ], [ 58.728037957000083, 74.23859284100007 ], [ 58.536143425000034, 74.23859284100007 ], [ 58.659027540000068, 74.217474677000041 ], [ 58.508311394000032, 74.217474677000041 ], [ 58.590830925000034, 74.184027411000045 ], [ 58.529470248000052, 74.171779690000051 ], [ 58.292246941000087, 74.221625067000048 ], [ 58.248301629000082, 74.190171617000033 ], [ 58.300629102000073, 74.160630601000037 ], [ 58.521983269000032, 74.149237372000073 ], [ 58.30795332100007, 74.087632554000038 ], [ 58.162119988000086, 74.150376695000034 ], [ 58.173106316000087, 74.101385809000078 ], [ 58.097422722000033, 74.059881903000075 ], [ 58.213389519000032, 74.008368231000077 ], [ 58.123301629000082, 73.986721096000053 ], [ 57.739268425000034, 74.050930080000057 ], [ 57.531748894000032, 74.191839911000045 ], [ 57.412119988000086, 74.184027411000045 ], [ 57.535655144000032, 74.093980210000041 ], [ 57.260752800000034, 74.080308335000041 ], [ 57.547699415000068, 74.060777085000041 ], [ 57.911875847000033, 73.915838934000078 ], [ 57.809418165000068, 73.895412502000056 ], [ 57.905039910000085, 73.875474351000037 ], [ 57.945974155000044, 73.806586005000042 ], [ 57.748708530000044, 73.72601959800005 ], [ 57.395355665000068, 73.845526434000078 ], [ 56.555674675000034, 73.888576565000051 ], [ 57.349864129000082, 73.82758209800005 ], [ 57.617523634000065, 73.668850002000056 ], [ 57.585785352000073, 73.613674221000053 ], [ 57.350108269000032, 73.553412177000041 ], [ 57.020192905000044, 73.584214585000041 ], [ 56.735118035000085, 73.680243231000077 ], [ 56.850352410000085, 73.614813544000071 ], [ 56.746755405000044, 73.607367255000042 ], [ 57.237559441000087, 73.509588934000078 ], [ 57.253916863000086, 73.457180080000057 ], [ 56.908457879000082, 73.314683335000041 ], [ 56.749278191000087, 73.361517645000049 ], [ 56.795176629000082, 73.32062409100007 ], [ 56.72982832100007, 73.244533596000053 ], [ 56.120860222000033, 73.290025132000039 ], [ 56.04623457100007, 73.330267645000049 ], [ 56.015798373000052, 73.412298895000049 ], [ 55.917491082000083, 73.448391018000052 ], [ 55.870371941000087, 73.436102606000077 ], [ 55.986501498000052, 73.385199286000045 ], [ 55.980235222000033, 73.329657294000071 ], [ 55.924001498000052, 73.311997789000031 ], [ 55.772308790000068, 73.348049221000053 ], [ 55.43490644600007, 73.332098700000074 ], [ 54.90007571700005, 73.448391018000052 ], [ 54.250010613000086, 73.328273830000057 ], [ 54.033050977000073, 73.374660549000055 ], [ 54.293630405000044, 73.417710679000038 ], [ 54.41732832100007, 73.477687893000052 ], [ 54.184580925000034, 73.491359768000052 ], [ 54.541514519000032, 73.610988674000055 ], [ 55.349619988000086, 73.717230536000045 ], [ 54.530039910000085, 73.704169012000079 ], [ 54.280772332000083, 73.600531317000048 ], [ 53.96648196700005, 73.626654364000046 ], [ 53.631114129000082, 73.759588934000078 ], [ 53.653575066000087, 73.812486070000034 ], [ 53.868662957000083, 73.778713283000059 ], [ 54.315928582000083, 73.930975653000075 ], [ 54.801524285000085, 73.970445054000038 ], [ 54.588633660000085, 74.018866278000075 ], [ 55.01889082100007, 74.173000393000052 ], [ 55.864431186000047, 74.105943101000037 ], [ 55.62273196700005, 74.190171617000033 ], [ 55.07585696700005, 74.26593659100007 ], [ 55.228363477000073, 74.307440497000073 ], [ 55.286143425000034, 74.274359442000048 ], [ 55.746836785000085, 74.29633209800005 ], [ 55.232920769000032, 74.375799872000073 ], [ 55.38835696700005, 74.445054429000038 ], [ 56.287364129000082, 74.491685289000031 ], [ 56.014414910000085, 74.491888739000046 ], [ 56.082041863000086, 74.519761460000041 ], [ 55.86654707100007, 74.553290106000077 ], [ 55.656911655000044, 74.519761460000041 ], [ 55.705821160000085, 74.549872137000079 ], [ 55.499766472000033, 74.566961981000077 ], [ 55.561045769000032, 74.614488023000035 ], [ 55.529551629000082, 74.654852606000077 ], [ 56.387054884000065, 74.721380927000041 ], [ 56.555674675000034, 74.683661200000074 ], [ 56.986989780000044, 74.690497137000079 ] ] ], [ [ [ 42.645837652000068, 66.74234467000008 ], [ 42.668028742000047, 66.666691259000061 ], [ 42.426499751000051, 66.752008942000032 ], [ 42.504490695000072, 66.777905783000051 ], [ 42.645837652000068, 66.74234467000008 ] ] ], [ [ [ 57.117360873000052, 70.558539130000042 ], [ 57.221690300000034, 70.526068427000041 ], [ 57.035411004000082, 70.544867255000042 ], [ 57.138438347000033, 70.497056382000039 ], [ 57.063649936000047, 70.502427476000037 ], [ 56.92904707100007, 70.532171942000048 ], [ 56.843028191000087, 70.606350002000056 ], [ 57.117360873000052, 70.558539130000042 ] ] ], [ [ [ 53.23178144600007, 71.215887762000079 ], [ 53.151052280000044, 71.095526434000078 ], [ 53.046885613000086, 71.072455145000049 ], [ 53.041351759000065, 71.034328518000052 ], [ 53.139333530000044, 70.993638414000031 ], [ 53.009776238000086, 70.96820709800005 ], [ 52.956309441000087, 71.057074286000045 ], [ 52.799815300000034, 71.092962958000044 ], [ 52.756358269000032, 71.176703192000048 ], [ 52.211761915000068, 71.308091539000031 ], [ 52.529551629000082, 71.387844143000052 ], [ 52.720876498000052, 71.349310614000046 ], [ 52.68718509200005, 71.397691148000035 ], [ 52.741058790000068, 71.405829169000071 ], [ 52.909678582000083, 71.367336330000057 ], [ 53.019541863000086, 71.281317450000074 ], [ 52.861989780000044, 71.353664455000057 ], [ 52.803070509000065, 71.372259833000044 ], [ 52.744639519000032, 71.374172268000052 ], [ 52.875498894000032, 71.333197333000044 ], [ 52.779307488000086, 71.318915106000077 ], [ 53.061045769000032, 71.238185940000051 ], [ 53.160899285000085, 71.26898834800005 ], [ 53.23178144600007, 71.215887762000079 ] ] ], [ [ [ 51.346853061000047, 79.953314520000049 ], [ 51.505137566000087, 79.933417059000078 ], [ 50.045258009000065, 79.974432684000078 ], [ 50.552500847000033, 79.988023179000038 ], [ 51.000987175000034, 80.102525132000039 ], [ 51.264821811000047, 80.056341864000046 ], [ 51.201182488000086, 80.010891018000052 ], [ 51.388438347000033, 79.966986395000049 ], [ 51.346853061000047, 79.953314520000049 ] ] ], [ [ [ 50.081309441000087, 80.068060614000046 ], [ 49.883148634000065, 80.069891669000071 ], [ 49.531260613000086, 80.158758856000077 ], [ 49.898610873000052, 80.233954169000071 ], [ 50.228526238000086, 80.22601959800005 ], [ 50.33562259200005, 80.181586005000042 ], [ 50.125987175000034, 80.142157294000071 ], [ 50.052012566000087, 80.083644924000055 ], [ 50.081309441000087, 80.068060614000046 ] ] ], [ [ [ 55.794932488000086, 80.642279364000046 ], [ 55.602793816000087, 80.665838934000078 ], [ 55.705821160000085, 80.700018622000073 ], [ 55.431651238000086, 80.714260158000059 ], [ 56.530446811000047, 80.787095445000034 ], [ 56.946055535000085, 80.693793036000045 ], [ 56.329112175000034, 80.624904690000051 ], [ 55.794932488000086, 80.642279364000046 ] ] ], [ [ [ 46.687266472000033, 80.529282945000034 ], [ 46.51921634200005, 80.518622137000079 ], [ 46.530121290000068, 80.47406647300005 ], [ 46.480479363000086, 80.459702867000033 ], [ 46.083994988000086, 80.439886786000045 ], [ 46.021250847000033, 80.48859284100007 ], [ 46.083994988000086, 80.555975653000075 ], [ 46.043711785000085, 80.573553778000075 ], [ 45.51531009200005, 80.519761460000041 ], [ 45.27116946700005, 80.589504299000055 ], [ 44.857432488000086, 80.617417710000041 ], [ 46.920746290000068, 80.74868398600006 ], [ 47.201182488000086, 80.809881903000075 ], [ 47.091970248000052, 80.830959377000056 ], [ 47.138194207000083, 80.842230536000045 ], [ 47.536306186000047, 80.856675523000035 ], [ 48.496348504000082, 80.798081773000035 ], [ 48.654795769000089, 80.755194403000075 ], [ 48.455577019000089, 80.727280992000033 ], [ 48.764008009000065, 80.65961334800005 ], [ 48.726817254000082, 80.610744533000059 ], [ 48.063731316000087, 80.66242096600007 ], [ 47.748789910000085, 80.770493882000039 ], [ 47.475596550000034, 80.734767971000053 ], [ 47.571787957000083, 80.680121161000045 ], [ 47.304209832000083, 80.652777411000045 ], [ 47.430674675000034, 80.593817450000074 ], [ 47.200043165000068, 80.625555731000077 ], [ 46.992442254000082, 80.552720445000034 ], [ 46.632578972000033, 80.555975653000075 ], [ 46.687266472000033, 80.529282945000034 ] ] ], [ [ [ 62.22193444100003, 80.813218492000033 ], [ 62.275238477000073, 80.783880927000041 ], [ 62.25945071700005, 80.741441148000035 ], [ 62.037445509000065, 80.665838934000078 ], [ 62.147308790000068, 80.639146226000037 ], [ 62.115977410000085, 80.622381903000075 ], [ 61.706228061000047, 80.597479559000078 ], [ 61.587657097000033, 80.555975653000075 ], [ 61.606211785000085, 80.529282945000034 ], [ 61.310801629000082, 80.510728257000039 ], [ 61.27662194100003, 80.501369533000059 ], [ 61.383067254000082, 80.490790106000077 ], [ 61.04460696700005, 80.405178127000056 ], [ 60.307383660000085, 80.49555084800005 ], [ 59.63640384200005, 80.431219794000071 ], [ 59.241953972000033, 80.529282945000034 ], [ 59.372325066000087, 80.570257880000042 ], [ 59.286143425000034, 80.581976630000042 ], [ 59.221446160000085, 80.652777411000045 ], [ 59.570811394000032, 80.789984442000048 ], [ 59.508799675000034, 80.803656317000048 ], [ 59.693858269000032, 80.837144273000035 ], [ 60.170909050000034, 80.853949286000045 ], [ 60.256195509000065, 80.830959377000056 ], [ 59.96810957100007, 80.809881903000075 ], [ 60.361989780000044, 80.789984442000048 ], [ 61.602549675000034, 80.895656643000052 ], [ 62.06771894600007, 80.879868882000039 ], [ 62.22193444100003, 80.813218492000033 ] ] ], [ [ [ 58.130056186000047, 80.780747789000031 ], [ 57.815684441000087, 80.809881903000075 ], [ 58.745860222000033, 80.902736721000053 ], [ 59.029063347000033, 80.824123440000051 ], [ 58.895518425000034, 80.77374909100007 ], [ 58.542735222000033, 80.754299221000053 ], [ 58.130056186000047, 80.780747789000031 ] ] ], [ [ [ 55.765879754000082, 80.783677476000037 ], [ 54.876719597000033, 80.721136786000045 ], [ 54.663828972000033, 80.741603908000059 ], [ 54.656993035000085, 80.788031317000048 ], [ 53.980316602000073, 80.816229559000078 ], [ 54.323415561000047, 80.864447333000044 ], [ 54.722422722000033, 80.871893622000073 ], [ 54.822927280000044, 80.835923570000034 ], [ 55.09701582100007, 80.902818101000037 ], [ 55.986501498000052, 80.803656317000048 ], [ 55.765879754000082, 80.783677476000037 ] ] ], [ [ [ 51.689300977000073, 80.727280992000033 ], [ 51.743988477000073, 80.714260158000059 ], [ 51.174571160000085, 80.618150132000039 ], [ 50.949554884000065, 80.536769924000055 ], [ 49.675303582000083, 80.481512762000079 ], [ 49.798106316000087, 80.452093817000048 ], [ 49.816172722000033, 80.40102773600006 ], [ 49.490407748000052, 80.363511460000041 ], [ 48.83952884200005, 80.387844143000052 ], [ 48.626963738000086, 80.295314846000053 ], [ 48.942637566000087, 80.273016669000071 ], [ 49.037852410000085, 80.241278387000079 ], [ 48.975759311000047, 80.213364976000037 ], [ 49.107188347000033, 80.189520575000074 ], [ 48.733897332000083, 80.159084377000056 ], [ 48.528330925000034, 80.209133205000057 ], [ 48.496592644000089, 80.192857164000031 ], [ 48.551768425000034, 80.158758856000077 ], [ 48.510590040000068, 80.124212958000044 ], [ 48.37240644600007, 80.091782945000034 ], [ 48.116058790000068, 80.136786200000074 ], [ 48.01921634200005, 80.089056708000044 ], [ 47.627696160000085, 80.072211005000042 ], [ 47.633148634000065, 80.11782461100006 ], [ 47.736501498000052, 80.162014065000051 ], [ 48.085134311000047, 80.207180080000057 ], [ 47.845469597000033, 80.213364976000037 ], [ 47.969004754000082, 80.235093492000033 ], [ 47.92937259200005, 80.247137762000079 ], [ 47.451345248000052, 80.239813544000071 ], [ 47.338389519000089, 80.213364976000037 ], [ 47.386892123000052, 80.186712958000044 ], [ 47.101817254000082, 80.170314846000053 ], [ 46.894541863000086, 80.191799221000053 ], [ 46.890147332000083, 80.23663971600007 ], [ 46.618418816000087, 80.295314846000053 ], [ 47.088552280000044, 80.371649481000077 ], [ 47.223887566000087, 80.308986721000053 ], [ 48.132985873000052, 80.32648346600007 ], [ 48.188731316000087, 80.337551174000055 ], [ 47.619476759000065, 80.405178127000056 ], [ 48.235850457000083, 80.426906643000052 ], [ 48.100108269000089, 80.476304429000038 ], [ 47.379405144000089, 80.453558661000045 ], [ 48.375498894000089, 80.571112372000073 ], [ 48.565440300000034, 80.542914130000042 ], [ 48.530772332000083, 80.515041408000059 ], [ 48.569021030000044, 80.505601304000038 ], [ 49.188243035000085, 80.521429755000042 ], [ 49.229665561000047, 80.536769924000055 ], [ 49.175059441000087, 80.555975653000075 ], [ 49.407074415000068, 80.617417710000041 ], [ 49.284922722000033, 80.645331122000073 ], [ 49.631032748000052, 80.639593817000048 ], [ 49.668467644000032, 80.652777411000045 ], [ 49.613291863000086, 80.68695709800005 ], [ 49.681976759000065, 80.721136786000045 ], [ 49.202891472000033, 80.693793036000045 ], [ 49.33952884200005, 80.734767971000053 ], [ 48.955332879000082, 80.734767971000053 ], [ 49.113536004000082, 80.769476630000042 ], [ 49.003672722000033, 80.77570221600007 ], [ 50.237152540000068, 80.933498440000051 ], [ 50.44304446700005, 80.906073309000078 ], [ 49.997325066000087, 80.865057684000078 ], [ 50.855967644000032, 80.918524481000077 ], [ 51.045176629000082, 80.851467190000051 ], [ 50.47038821700005, 80.809881903000075 ], [ 50.545420769000032, 80.789984442000048 ], [ 50.251231316000087, 80.741603908000059 ], [ 50.37240644600007, 80.713446356000077 ], [ 51.312673373000052, 80.789984442000048 ], [ 51.689300977000073, 80.727280992000033 ] ] ], [ [ [ 58.65365644600007, 81.043768622000073 ], [ 58.69662519600007, 81.024725653000075 ], [ 58.561289910000085, 80.957017320000034 ], [ 58.366953972000033, 80.94594961100006 ], [ 57.840993686000047, 81.047674872000073 ], [ 58.069509311000047, 81.111517645000049 ], [ 58.65365644600007, 81.043768622000073 ] ] ], [ [ [ 57.336436394000032, 80.891791083000044 ], [ 57.19857832100007, 80.906073309000078 ], [ 57.23406009200005, 80.933335679000038 ], [ 57.201426629000082, 80.953924872000073 ], [ 56.932383660000085, 80.974310614000046 ], [ 56.896739129000082, 81.016099351000037 ], [ 56.095550977000073, 81.091009833000044 ], [ 56.147146030000044, 81.123195705000057 ], [ 56.702891472000033, 81.113104559000078 ], [ 58.282399936000047, 80.926499742000033 ], [ 57.838145379000082, 80.853338934000078 ], [ 57.336436394000032, 80.891791083000044 ] ] ], [ [ [ 54.56413821700005, 80.995428778000075 ], [ 54.41732832100007, 81.00844961100006 ], [ 54.670909050000034, 81.125189520000049 ], [ 55.520274285000085, 81.00844961100006 ], [ 56.01921634200005, 81.04360586100006 ], [ 57.716075066000087, 80.793158270000049 ], [ 57.058767123000052, 80.691839911000045 ], [ 56.668467644000032, 80.80923086100006 ], [ 55.798838738000086, 80.854437567000048 ], [ 55.376963738000086, 80.933335679000038 ], [ 55.380625847000033, 80.968573309000078 ], [ 54.56413821700005, 80.995428778000075 ] ] ], [ [ [ 50.476573113000086, 81.069973049000055 ], [ 50.347422722000033, 81.091009833000044 ], [ 50.519053582000083, 81.128973700000074 ], [ 50.490896030000044, 81.159247137000079 ], [ 50.529633009000065, 81.167873440000051 ], [ 50.819834832000083, 81.166164455000057 ], [ 50.976817254000082, 81.105902411000045 ], [ 50.765961134000065, 81.088364976000037 ], [ 50.774424675000034, 81.044012762000079 ], [ 50.374278191000087, 81.022772528000075 ], [ 50.476573113000086, 81.069973049000055 ] ] ], [ [ [ 57.266123894000032, 81.426825262000079 ], [ 56.740489129000082, 81.453517971000053 ], [ 56.98178144600007, 81.493231512000079 ], [ 57.00749759200005, 81.508734442000048 ], [ 56.946055535000085, 81.522406317000048 ], [ 57.01303144600007, 81.536810614000046 ], [ 57.784027540000068, 81.56476471600007 ], [ 57.888845248000052, 81.485581773000035 ], [ 58.399912957000083, 81.474188544000071 ], [ 58.570485873000052, 81.413153387000079 ], [ 57.797618035000085, 81.378892320000034 ], [ 57.266123894000032, 81.426825262000079 ] ] ], [ [ [ 62.503672722000033, 81.652777411000045 ], [ 62.106455925000034, 81.680080471000053 ], [ 62.804698113000086, 81.721625067000048 ], [ 62.765961134000065, 81.706610419000071 ], [ 63.80591881600003, 81.660142320000034 ], [ 63.467458530000044, 81.589056708000044 ], [ 62.503672722000033, 81.652777411000045 ] ] ], [ [ [ 58.295420769000032, 81.714178778000075 ], [ 57.891286655000044, 81.707953192000048 ], [ 57.945974155000044, 81.755194403000075 ], [ 58.145274285000085, 81.776841539000031 ], [ 57.939707879000082, 81.803615627000056 ], [ 58.156097852000073, 81.830267645000049 ], [ 59.214691602000073, 81.858710028000075 ], [ 59.439952019000032, 81.81781647300005 ], [ 59.331309441000087, 81.789862372000073 ], [ 59.355642123000052, 81.753322658000059 ], [ 58.295420769000032, 81.714178778000075 ] ] ], [ [ [ 59.034353061000047, 75.959865627000056 ], [ 59.262461785000085, 75.965399481000077 ], [ 58.693207227000073, 75.903265692000048 ], [ 58.731700066000087, 75.916896877000056 ], [ 59.034353061000047, 75.959865627000056 ] ] ], [ [ [ 59.001719597000033, 79.980617580000057 ], [ 58.768728061000047, 80.021063544000071 ], [ 59.529144727000073, 80.120917059000078 ], [ 59.809580925000034, 80.088934637000079 ], [ 59.836110873000052, 80.027289130000042 ], [ 59.927256707000083, 79.994859117000033 ], [ 59.372080925000034, 79.919663804000038 ], [ 59.001719597000033, 79.980617580000057 ] ] ], [ [ [ 55.712087436000047, 80.103461005000042 ], [ 56.019053582000083, 80.181830145000049 ], [ 56.047862175000034, 80.200344143000052 ], [ 55.952321811000047, 80.261786200000074 ], [ 55.972829623000052, 80.323187567000048 ], [ 56.129893425000034, 80.351223049000055 ], [ 56.642751498000052, 80.32453034100007 ], [ 56.71225019600007, 80.368353583000044 ], [ 57.021983269000032, 80.363999742000033 ], [ 57.131032748000052, 80.306138414000031 ], [ 57.08366946700005, 80.25812409100007 ], [ 57.153575066000087, 80.198960679000038 ], [ 57.046885613000086, 80.154364325000074 ], [ 57.117930535000085, 80.09601471600007 ], [ 56.956797722000033, 80.066310940000051 ], [ 55.712087436000047, 80.103461005000042 ] ] ], [ [ [ 52.622894727000073, 80.183294989000046 ], [ 52.356618686000047, 80.208685614000046 ], [ 52.182871941000087, 80.276068427000041 ], [ 52.568858269000032, 80.289496161000045 ], [ 52.859548373000052, 80.405462958000044 ], [ 53.149587436000047, 80.412583726000037 ], [ 53.869476759000065, 80.27094147300005 ], [ 53.733409050000034, 80.217678127000056 ], [ 53.589854363000086, 80.242377020000049 ], [ 53.48991946700005, 80.171820380000042 ], [ 52.622894727000073, 80.183294989000046 ] ] ], [ [ [ 57.528819207000083, 80.131415106000077 ], [ 57.277679884000065, 80.17837148600006 ], [ 57.302256707000083, 80.207180080000057 ], [ 57.219737175000034, 80.241278387000079 ], [ 57.258962436000047, 80.325873114000046 ], [ 57.192393425000034, 80.364203192000048 ], [ 57.274424675000034, 80.391546942000048 ], [ 57.242849155000044, 80.411525783000059 ], [ 56.946055535000085, 80.481512762000079 ], [ 58.452403191000087, 80.468085028000075 ], [ 59.193369988000086, 80.378485419000071 ], [ 59.276133660000085, 80.330023505000042 ], [ 58.390961134000065, 80.320217190000051 ], [ 58.076914910000085, 80.261786200000074 ], [ 58.474864129000082, 80.222357489000046 ], [ 58.406504754000082, 80.165594794000071 ], [ 58.041351759000065, 80.205755927000041 ], [ 57.905039910000085, 80.172430731000077 ], [ 58.014903191000087, 80.110988674000055 ], [ 57.970469597000033, 80.098944403000075 ], [ 57.528819207000083, 80.131415106000077 ] ] ], [ [ [ 53.798024936000047, 80.472886460000041 ], [ 53.972911004000082, 80.529282945000034 ], [ 53.85873457100007, 80.554429429000038 ], [ 53.883311394000032, 80.610744533000059 ], [ 54.269053582000083, 80.588690497000073 ], [ 54.314952019000032, 80.577093817000048 ], [ 54.13607832100007, 80.555975653000075 ], [ 54.40984134200005, 80.542914130000042 ], [ 54.465098504000082, 80.481512762000079 ], [ 54.288259311000047, 80.420355536000045 ], [ 53.798024936000047, 80.472886460000041 ] ] ], [ [ [ 60.256195509000065, 81.036363023000035 ], [ 60.612803582000083, 81.092474677000041 ], [ 61.701670769000032, 81.105292059000078 ], [ 61.606211785000085, 81.077378648000035 ], [ 61.599782748000052, 81.031398830000057 ], [ 60.987803582000083, 80.922023830000057 ], [ 60.022715691000087, 80.995428778000075 ], [ 60.256195509000065, 81.036363023000035 ] ] ], [ [ [ 62.770518425000034, 80.885565497000073 ], [ 63.14226321700005, 80.971380927000041 ], [ 64.03646894600007, 80.986883856000077 ], [ 64.186045769000032, 81.019029039000031 ], [ 64.216807488000086, 81.056870835000041 ], [ 64.12037194100003, 81.093573309000078 ], [ 64.27475019600007, 81.169134833000044 ], [ 64.704844597000033, 81.205267645000049 ], [ 65.22982832100007, 81.136704820000034 ], [ 65.436289910000085, 81.037054755000042 ], [ 65.306162957000083, 80.995428778000075 ], [ 65.465668165000068, 80.934881903000075 ], [ 64.999766472000033, 80.808823960000041 ], [ 64.586680535000085, 80.755194403000075 ], [ 63.130707227000073, 80.683091539000031 ], [ 62.503672722000033, 80.824123440000051 ], [ 62.770518425000034, 80.885565497000073 ] ] ], [ [ [ 57.336192254000082, 81.205267645000049 ], [ 57.887868686000047, 81.24555084800005 ], [ 58.083750847000033, 81.214544989000046 ], [ 57.700450066000087, 81.137152411000045 ], [ 56.994395379000082, 81.166164455000057 ], [ 57.336192254000082, 81.205267645000049 ] ] ], [ [ [ 55.646820509000065, 81.200262762000079 ], [ 55.560557488000086, 81.223089911000045 ], [ 55.60906009200005, 81.275946356000077 ], [ 55.431651238000086, 81.283433335000041 ], [ 55.540782097000033, 81.297105210000041 ], [ 55.465668165000068, 81.324408270000049 ], [ 55.712087436000047, 81.330552476000037 ], [ 56.544769727000073, 81.254787502000056 ], [ 56.602793816000087, 81.269110419000071 ], [ 56.391123894000032, 81.324408270000049 ], [ 56.418304884000065, 81.338080145000049 ], [ 56.335948113000086, 81.385199286000045 ], [ 56.72624759200005, 81.397162177000041 ], [ 57.905039910000085, 81.297105210000041 ], [ 57.047536655000044, 81.253241278000075 ], [ 56.614512566000087, 81.178534247000073 ], [ 56.240407748000052, 81.228216864000046 ], [ 55.646820509000065, 81.200262762000079 ] ] ], [ [ [ 58.563487175000034, 81.324408270000049 ], [ 58.464121941000087, 81.334947007000039 ], [ 59.017914259000065, 81.403387762000079 ], [ 59.385427280000044, 81.330552476000037 ], [ 59.05437259200005, 81.287054755000042 ], [ 58.563487175000034, 81.324408270000049 ] ] ], [ [ [ 61.90365644600007, 81.60492584800005 ], [ 62.141123894000032, 81.586086330000057 ], [ 62.196299675000034, 81.564846096000053 ], [ 61.65398196700005, 81.60492584800005 ], [ 61.90365644600007, 81.60492584800005 ] ] ], [ [ [ 40.454925977000073, 64.581854559000078 ], [ 40.194834832000083, 64.574164130000042 ], [ 40.054698113000086, 64.652533270000049 ], [ 39.824229363000086, 64.679754950000074 ], [ 40.188487175000034, 64.708238023000035 ], [ 40.302256707000083, 64.635484117000033 ], [ 40.431407097000033, 64.612697658000059 ], [ 40.454925977000073, 64.581854559000078 ] ] ], [ [ [ 40.001963738000086, 64.737372137000079 ], [ 39.980479363000086, 64.729437567000048 ], [ 39.943695509000065, 64.72797272300005 ], [ 39.949717644000089, 64.741929429000038 ], [ 40.001963738000086, 64.737372137000079 ] ] ], [ [ [ 40.145192905000044, 64.734279690000051 ], [ 40.03484134200005, 64.760565497000073 ], [ 40.333506707000083, 64.772406317000048 ], [ 40.406748894000089, 64.642482815000051 ], [ 40.325694207000083, 64.637640692000048 ], [ 40.252207879000082, 64.698919989000046 ], [ 40.145192905000044, 64.734279690000051 ] ] ], [ [ [ 53.369802280000044, 71.291734117000033 ], [ 53.395355665000068, 71.280503648000035 ], [ 53.16146894600007, 71.354885158000059 ], [ 53.23991946700005, 71.354437567000048 ], [ 53.369802280000044, 71.291734117000033 ] ] ], [ [ [ 58.814789259000065, 79.916693427000041 ], [ 58.870371941000087, 79.901312567000048 ], [ 58.248301629000082, 79.933417059000078 ], [ 58.613942905000044, 79.979437567000048 ], [ 58.814789259000065, 79.916693427000041 ] ] ], [ [ [ 60.167246941000087, 80.168524481000077 ], [ 60.210459832000083, 80.149155992000033 ], [ 59.891286655000044, 80.175441799000055 ], [ 60.052256707000083, 80.187689520000049 ], [ 60.167246941000087, 80.168524481000077 ] ] ], [ [ [ 54.407725457000083, 80.284816799000055 ], [ 54.382090691000087, 80.210353908000059 ], [ 54.178070509000065, 80.189276434000078 ], [ 54.10124759200005, 80.27289459800005 ], [ 54.193532748000052, 80.307114976000037 ], [ 54.407725457000083, 80.284816799000055 ] ] ], [ [ [ 55.498789910000085, 80.316839911000045 ], [ 55.498301629000082, 80.277167059000078 ], [ 55.234873894000032, 80.227932033000059 ], [ 54.929698113000086, 80.259588934000078 ], [ 55.296397332000083, 80.332180080000057 ], [ 55.498789910000085, 80.316839911000045 ] ] ], [ [ [ 54.987478061000047, 80.41437409100007 ], [ 55.244965040000068, 80.438462632000039 ], [ 55.270518425000034, 80.409369208000044 ], [ 55.129893425000034, 80.374335028000075 ], [ 54.987478061000047, 80.41437409100007 ] ] ], [ [ [ 54.841807488000086, 80.431341864000046 ], [ 54.771494988000086, 80.393011786000045 ], [ 54.390391472000033, 80.386542059000078 ], [ 54.626719597000033, 80.477240302000041 ], [ 54.841807488000086, 80.431341864000046 ] ] ], [ [ [ 54.821462436000047, 80.464789130000042 ], [ 54.62240644600007, 80.511297919000071 ], [ 54.886241082000083, 80.533107815000051 ], [ 55.073008660000085, 80.484076239000046 ], [ 54.821462436000047, 80.464789130000042 ] ] ], [ [ [ 59.737152540000068, 81.18976471600007 ], [ 59.75554446700005, 81.169989325000074 ], [ 58.994639519000032, 81.198187567000048 ], [ 59.097666863000086, 81.213120835000041 ], [ 59.737152540000068, 81.18976471600007 ] ] ], [ [ [ 60.562754754000082, 81.273627020000049 ], [ 60.432302280000044, 81.244370835000041 ], [ 59.840586785000085, 81.291571356000077 ], [ 60.031993035000085, 81.311102606000077 ], [ 60.562754754000082, 81.273627020000049 ] ] ], [ [ [ 58.368907097000033, 81.579657294000071 ], [ 58.275726759000065, 81.592718817000048 ], [ 58.702321811000047, 81.612616278000075 ], [ 58.493011915000068, 81.579087632000039 ], [ 58.368907097000033, 81.579657294000071 ] ] ], [ [ [ 38.041533644262245, 61.049710598565241 ], [ 38.087525668874491, 61.041649074844884 ], [ 38.124836053041406, 61.017361151795683 ], [ 38.036572706864888, 61.020875149268704 ], [ 38.041533644262245, 61.049710598565241 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KYA", "NAME_1": "Krasnoyarsk" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.502764071404727, 72.381906521968403 ], [ 79.513845248000052, 72.362209377000056 ], [ 80.010101759000065, 72.207749742000033 ], [ 80.834646030000044, 72.083319403000075 ], [ 80.820811394000032, 72.024603583000044 ], [ 80.73210696700005, 72.045111395000049 ], [ 80.813975457000083, 72.079901434000078 ], [ 80.632334832000083, 72.046087958000044 ], [ 81.249766472000033, 71.859198309000078 ], [ 81.342295769000032, 71.764227606000077 ], [ 81.736664259000065, 71.699896552000041 ], [ 82.867360873000052, 71.786444403000075 ], [ 83.01921634200005, 71.729437567000048 ], [ 83.251719597000033, 71.725653387000079 ], [ 83.305186394000032, 71.658392645000049 ], [ 83.011973504000082, 71.528957424000055 ], [ 82.985362175000034, 71.462836005000042 ], [ 83.047862175000034, 71.415106512000079 ], [ 82.272634311000047, 71.278794664000031 ], [ 82.279307488000029, 71.188055731000077 ], [ 82.35279381600003, 71.096258856000077 ], [ 82.20834394600007, 70.986802476000037 ], [ 82.41724694100003, 70.777044989000046 ], [ 82.082041863000029, 70.565375067000048 ], [ 82.153330925000034, 70.518133856000077 ], [ 82.23959394600007, 70.277329820000034 ], [ 82.34888756600003, 70.202297268000052 ], [ 82.251800977000073, 70.375921942000048 ], [ 82.23959394600007, 70.497056382000039 ], [ 82.157237175000034, 70.571600653000075 ], [ 82.464610222000033, 70.613185940000051 ], [ 82.43091881600003, 70.695135809000078 ], [ 82.554209832000083, 70.761542059000078 ], [ 82.478688998000052, 70.80499909100007 ], [ 82.568614129000082, 70.853176174000055 ], [ 82.578623894000032, 70.911118882000039 ], [ 82.734548373000052, 70.965521552000041 ], [ 82.87663821700005, 70.916978257000039 ], [ 82.90162194100003, 71.001044012000079 ], [ 82.966644727000073, 70.933986721000053 ], [ 83.133799675000034, 70.882391669000071 ], [ 83.137217644000032, 70.76398346600007 ], [ 83.064952019000032, 70.692531643000052 ], [ 83.057139519000032, 70.59711334800005 ], [ 82.993174675000034, 70.571600653000075 ], [ 83.052500847000033, 70.499904690000051 ], [ 83.010508660000028, 70.426581122000073 ], [ 82.664073113000029, 70.260158596000053 ], [ 82.64380944100003, 70.181219794000071 ], [ 82.91928144600007, 70.08071523600006 ], [ 83.149424675000034, 70.07648346600007 ], [ 83.18873131600003, 70.122870184000078 ], [ 83.129730665000068, 70.208563544000071 ], [ 82.951670769000032, 70.325140692000048 ], [ 83.53443444100003, 70.331976630000042 ], [ 83.77466881600003, 70.476629950000074 ], [ 83.757334832000083, 70.568508205000057 ], [ 83.602712436000047, 70.70258209800005 ], [ 83.601573113000029, 70.76984284100007 ], [ 83.383067254000082, 70.976263739000046 ], [ 83.381846550000034, 71.03266022300005 ], [ 83.116058790000068, 71.113470770000049 ], [ 83.257009311000047, 71.116522528000075 ], [ 83.147634311000047, 71.244818427000041 ], [ 83.375824415000068, 71.369818427000041 ], [ 83.38217207100007, 71.465033270000049 ], [ 83.562836134000065, 71.509914455000057 ], [ 83.630625847000033, 71.575873114000046 ], [ 83.618907097000033, 71.63117096600007 ], [ 83.410899285000028, 71.750921942000048 ], [ 83.415537957000083, 71.807766018000052 ], [ 83.360524936000047, 71.840643622000073 ], [ 82.96998131600003, 71.897935289000031 ], [ 82.678070509000065, 71.879461981000077 ], [ 82.470550977000073, 72.020819403000075 ], [ 82.185069207000083, 72.093491929000038 ], [ 82.299571160000085, 72.134466864000046 ], [ 82.307383660000085, 72.182847398000035 ], [ 82.198090040000068, 72.28156159100007 ], [ 81.208181186000047, 72.35492584800005 ], [ 80.704112175000034, 72.545355536000045 ], [ 80.834483269000032, 72.620510158000059 ], [ 80.685883009000065, 72.646307684000078 ], [ 80.63209069100003, 72.733791408000059 ], [ 80.772959832000083, 72.80609772300005 ], [ 80.841970248000052, 72.922105210000041 ], [ 80.814300977000073, 72.974269924000055 ], [ 80.750498894000032, 73.03774648600006 ], [ 80.43718509200005, 73.100897528000075 ], [ 80.59498131600003, 73.114569403000075 ], [ 80.568614129000082, 73.141546942000048 ], [ 80.231130405000044, 73.175970770000049 ], [ 80.563487175000034, 73.221502997000073 ], [ 80.528330925000034, 73.281480210000041 ], [ 80.254893425000034, 73.329738674000055 ], [ 80.67741946700005, 73.504950262000079 ], [ 80.50554446700005, 73.498114325000074 ], [ 80.51295006600003, 73.56704336100006 ], [ 81.956879102000073, 73.662665106000077 ], [ 83.48365319100003, 73.655462958000044 ], [ 84.793223504000082, 73.764715887000079 ], [ 85.007985873000052, 73.71039459800005 ], [ 85.42701256600003, 73.711900132000039 ], [ 85.585459832000083, 73.81867096600007 ], [ 86.016123894000032, 73.866522528000075 ], [ 86.783213738000029, 73.902248440000051 ], [ 87.080088738000029, 73.871527411000045 ], [ 87.103526238000029, 73.844875393000052 ], [ 87.010752800000034, 73.778713283000059 ], [ 85.78679446700005, 73.48078034100007 ], [ 85.833181186000047, 73.331773179000038 ], [ 86.66334069100003, 73.122137762000079 ], [ 86.78248131600003, 73.000881252000056 ], [ 86.765472852000073, 73.083563544000071 ], [ 86.659678582000083, 73.15180084800005 ], [ 85.933929884000065, 73.323919989000046 ], [ 85.852305535000028, 73.375189520000049 ], [ 85.844004754000082, 73.439846096000053 ], [ 85.882334832000083, 73.496242580000057 ], [ 86.203623894000032, 73.557847398000035 ], [ 87.164805535000028, 73.611395575000074 ], [ 87.344248894000032, 73.704169012000079 ], [ 87.248708530000044, 73.690578518000052 ], [ 87.28052819100003, 73.72992584800005 ], [ 87.617360873000052, 73.823553778000075 ], [ 87.664073113000029, 73.890855210000041 ], [ 87.544932488000029, 73.914292710000041 ], [ 87.454274936000047, 73.824693101000037 ], [ 87.296397332000083, 73.841376044000071 ], [ 86.940196160000028, 74.033148505000042 ], [ 87.419932488000029, 74.012111721000053 ], [ 87.362315300000034, 74.047756252000056 ], [ 86.89576256600003, 74.070217190000051 ], [ 86.72388756600003, 74.132147528000075 ], [ 86.802989129000082, 74.184027411000045 ], [ 86.711436394000032, 74.224351304000038 ], [ 86.020030144000032, 74.262518622000073 ], [ 85.90552819100003, 74.354681708000044 ], [ 86.297129754000082, 74.313055731000077 ], [ 86.254893425000034, 74.388861395000049 ], [ 86.049489780000044, 74.416164455000057 ], [ 86.475271030000044, 74.458197333000044 ], [ 86.590668165000068, 74.437241929000038 ], [ 86.623545769000032, 74.387518622000073 ], [ 86.953868035000028, 74.388861395000049 ], [ 86.715830925000034, 74.301825262000079 ], [ 86.94890384200005, 74.342596747000073 ], [ 86.992930535000028, 74.270249742000033 ], [ 87.05005944100003, 74.306301174000055 ], [ 87.015961134000065, 74.367254950000074 ], [ 87.262380405000044, 74.354681708000044 ], [ 87.080088738000029, 74.389960028000075 ], [ 87.079112175000034, 74.44204336100006 ], [ 86.795909050000034, 74.423570054000038 ], [ 86.535492384000065, 74.51235586100006 ], [ 86.78248131600003, 74.560736395000049 ], [ 85.740407748000052, 74.635891018000052 ], [ 85.900157097000033, 74.72329336100006 ], [ 86.101084832000083, 74.73578522300005 ], [ 86.125254754000082, 74.773016669000071 ], [ 86.028330925000034, 74.813950914000031 ], [ 86.090586785000028, 74.820786851000037 ], [ 86.367035352000073, 74.775051174000055 ], [ 86.213389519000032, 74.765570380000042 ], [ 86.321462436000047, 74.70766836100006 ], [ 86.47396894600007, 74.725287177000041 ], [ 86.639170769000032, 74.697333075000074 ], [ 86.604991082000083, 74.663153387000079 ], [ 86.691661004000082, 74.621893622000073 ], [ 86.957530144000032, 74.60883209800005 ], [ 86.902598504000082, 74.654120184000078 ], [ 86.953868035000028, 74.683661200000074 ], [ 86.762054884000065, 74.704087632000039 ], [ 86.914235873000052, 74.757717190000051 ], [ 87.06373131600003, 74.725287177000041 ], [ 87.061289910000028, 74.839667059000078 ], [ 87.385752800000034, 74.944322007000039 ], [ 87.172862175000034, 74.985296942000048 ], [ 87.426280144000032, 75.005804755000042 ], [ 87.479991082000083, 74.987250067000048 ], [ 87.445485873000052, 74.953273830000057 ], [ 87.574066602000073, 74.929673570000034 ], [ 87.56373131600003, 74.964829820000034 ], [ 87.789886915000068, 75.026271877000056 ], [ 86.898610873000052, 75.087713934000078 ], [ 87.024587436000047, 75.164211330000057 ], [ 87.952647332000083, 75.100043036000045 ], [ 88.306651238000029, 75.176011460000041 ], [ 88.371348504000082, 75.25531647300005 ], [ 88.625987175000034, 75.266506252000056 ], [ 88.550303582000083, 75.314276434000078 ], [ 88.611664259000065, 75.344224351000037 ], [ 89.08521569100003, 75.403021552000041 ], [ 88.75717207100007, 75.41665273600006 ], [ 89.132334832000083, 75.452826239000046 ], [ 89.24577884200005, 75.506740627000056 ], [ 89.395192905000044, 75.448960679000038 ], [ 89.703623894000032, 75.443508205000057 ], [ 89.612803582000083, 75.492377020000049 ], [ 90.05787194100003, 75.519720770000049 ], [ 89.914561394000032, 75.560695705000057 ], [ 89.954112175000034, 75.577622789000031 ], [ 90.886729363000029, 75.67055898600006 ], [ 90.978037957000083, 75.620428778000075 ], [ 91.12818444100003, 75.665716864000046 ], [ 91.580251498000052, 75.637762762000079 ], [ 91.700205925000034, 75.736395575000074 ], [ 92.371348504000082, 75.740464585000041 ], [ 93.549815300000034, 75.853013414000031 ], [ 94.163096550000034, 75.944281317000048 ], [ 93.740489129000082, 75.900213934000078 ], [ 93.546071811000047, 75.95343659100007 ], [ 93.418955925000034, 75.872870184000078 ], [ 93.258148634000065, 75.951727606000077 ], [ 93.320160352000073, 75.972235419000071 ], [ 93.277354363000029, 75.982123114000046 ], [ 92.964040561000047, 75.930609442000048 ], [ 93.107920769000032, 75.91079336100006 ], [ 93.007009311000047, 75.886664130000042 ], [ 92.888194207000083, 75.896470445000034 ], [ 92.826833530000044, 75.965399481000077 ], [ 92.929209832000083, 75.992661851000037 ], [ 92.95248457100007, 76.066839911000045 ], [ 93.101084832000083, 76.02374909100007 ], [ 93.230804884000065, 76.05414459800005 ], [ 93.120941602000073, 76.095689195000034 ], [ 93.430349155000044, 76.10687897300005 ], [ 93.333832227000073, 76.067775783000059 ], [ 93.42701256600003, 76.01203034100007 ], [ 93.998708530000044, 76.05414459800005 ], [ 93.635508660000028, 76.122992255000042 ], [ 93.685801629000082, 76.13226959800005 ], [ 94.374196811000047, 76.120794989000046 ], [ 94.459483269000032, 76.051703192000048 ], [ 94.738536004000082, 76.115627346000053 ], [ 94.539886915000068, 76.149725653000075 ], [ 94.572764519000032, 76.159979559000078 ], [ 95.055430535000028, 76.112005927000041 ], [ 95.389821811000047, 76.164007880000042 ], [ 96.196462436000047, 76.087551174000055 ], [ 96.037608269000032, 76.081366278000075 ], [ 95.992930535000028, 76.061590887000079 ], [ 96.074961785000028, 76.047308661000045 ], [ 95.978688998000052, 76.033636786000045 ], [ 96.004893425000034, 75.993353583000044 ], [ 95.575205925000034, 75.88898346600007 ], [ 95.73951256600003, 75.856431382000039 ], [ 95.937266472000033, 75.949164130000042 ], [ 96.341807488000029, 75.972235419000071 ], [ 96.265961134000065, 75.992661851000037 ], [ 96.301117384000065, 75.999335028000075 ], [ 96.518565300000034, 76.015773830000057 ], [ 96.547862175000034, 76.006333726000037 ], [ 96.500010613000029, 75.978420315000051 ], [ 96.664561394000032, 75.965399481000077 ], [ 96.461436394000032, 75.871893622000073 ], [ 96.83521569100003, 75.88898346600007 ], [ 97.250987175000034, 76.043402411000045 ], [ 97.396820509000065, 76.047308661000045 ], [ 97.199229363000029, 75.993109442000048 ], [ 97.246755405000044, 75.957953192000048 ], [ 97.185313347000033, 75.930609442000048 ], [ 97.312266472000033, 75.934515692000048 ], [ 97.394379102000073, 75.988714911000045 ], [ 97.82390384200005, 75.988104559000078 ], [ 97.700938347000033, 76.051499742000033 ], [ 97.548350457000026, 76.05414459800005 ], [ 97.71216881600003, 76.096096096000053 ], [ 97.912852410000028, 76.059312242000033 ], [ 98.16138756600003, 76.090806382000039 ], [ 98.21998131600003, 76.102525132000039 ], [ 97.917735222000033, 76.122992255000042 ], [ 98.816416863000029, 76.26703522300005 ], [ 98.712738477000073, 76.204982815000051 ], [ 99.235036655000044, 76.223578192000048 ], [ 99.295583530000044, 76.204982815000051 ], [ 99.090179884000065, 76.164007880000042 ], [ 99.214366082000026, 76.129950262000079 ], [ 99.574229363000029, 76.155096747000073 ], [ 99.599782748000052, 76.130560614000046 ], [ 99.467539910000028, 76.108710028000075 ], [ 99.754893425000034, 76.049017645000049 ], [ 99.681813998000052, 75.966009833000044 ], [ 99.679209832000026, 75.875962632000039 ], [ 99.424001498000052, 75.793443101000037 ], [ 99.570648634000065, 75.779730536000045 ], [ 99.902354363000029, 75.92719147300005 ], [ 99.825205925000034, 76.024359442000048 ], [ 99.865733269000032, 76.107652085000041 ], [ 99.643077019000032, 76.196275132000039 ], [ 99.590668165000068, 76.272406317000048 ], [ 99.020192905000044, 76.362372137000079 ], [ 99.020192905000044, 76.399481512000079 ], [ 98.817881707000026, 76.494208075000074 ], [ 100.304453972000033, 76.461859442000048 ], [ 100.851084832000026, 76.540106512000079 ], [ 101.057139519000032, 76.486151434000078 ], [ 101.015635613000029, 76.458807684000078 ], [ 101.316172722000033, 76.483954169000071 ], [ 102.249522332000026, 76.38312409100007 ], [ 100.87826582100007, 76.55499909100007 ], [ 101.10482832100007, 76.616441148000035 ], [ 101.125987175000034, 76.732611395000049 ], [ 101.234629754000082, 76.767279364000046 ], [ 100.981293165000068, 76.787176825000074 ], [ 100.857676629000082, 76.873236395000049 ], [ 100.91928144600007, 76.975897528000075 ], [ 101.20630944100003, 76.986029364000046 ], [ 101.238047722000033, 77.050970770000049 ], [ 101.166351759000065, 77.061468817000048 ], [ 101.207041863000029, 77.098537502000056 ], [ 102.043142123000052, 77.380601304000038 ], [ 102.27076256600003, 77.380560614000046 ], [ 103.19662519600007, 77.658921617000033 ], [ 103.592539910000028, 77.631577867000033 ], [ 104.060801629000082, 77.735541083000044 ], [ 104.325694207000026, 77.729966539000031 ], [ 104.25749759200005, 77.685288804000038 ], [ 104.323985222000033, 77.66860586100006 ], [ 104.75163821700005, 77.706203518000052 ], [ 104.86687259200005, 77.612982489000046 ], [ 105.334239129000025, 77.541001695000034 ], [ 105.873708530000044, 77.568589585000041 ], [ 105.83334394600007, 77.540716864000046 ], [ 105.977305535000028, 77.42523834800005 ], [ 106.292002800000034, 77.370021877000056 ], [ 105.758148634000065, 77.36945221600007 ], [ 105.435394727000073, 77.274400132000039 ], [ 105.53842207100007, 77.266994533000059 ], [ 105.455821160000028, 77.240464585000041 ], [ 104.14193769600007, 77.088853257000039 ], [ 104.771983269000032, 77.12173086100006 ], [ 105.340668165000068, 77.088812567000048 ], [ 105.928477410000028, 77.144110419000071 ], [ 105.737071160000028, 77.061468817000048 ], [ 105.784922722000033, 77.041001695000034 ], [ 105.435394727000073, 77.000067450000074 ], [ 105.895355665000068, 76.995062567000048 ], [ 106.205577019000032, 77.06195709800005 ], [ 106.755381707000026, 77.001166083000044 ], [ 106.648936394000032, 77.034247137000079 ], [ 106.829844597000033, 77.054673570000034 ], [ 107.002940300000034, 77.003119208000044 ], [ 107.285817905000044, 77.020575262000079 ], [ 107.23796634200005, 77.006293036000045 ], [ 107.499766472000033, 76.924505927000041 ], [ 107.265879754000025, 76.890814520000049 ], [ 107.354665561000047, 76.869086005000042 ], [ 107.225352410000028, 76.857855536000045 ], [ 107.190196160000028, 76.842352606000077 ], [ 107.285817905000044, 76.835598049000055 ], [ 107.190196160000028, 76.801459052000041 ], [ 107.080332879000025, 76.808294989000046 ], [ 106.925547722000033, 76.712795315000051 ], [ 106.724131707000026, 76.718898830000057 ], [ 106.799082879000025, 76.674505927000041 ], [ 106.612315300000034, 76.559637762000079 ], [ 106.396657748000052, 76.604315497000073 ], [ 106.367035352000073, 76.574896552000041 ], [ 106.417002800000034, 76.50922272300005 ], [ 106.819834832000026, 76.468939520000049 ], [ 107.270030144000032, 76.53461334800005 ], [ 107.845469597000033, 76.534816799000055 ], [ 107.984629754000025, 76.622707424000055 ], [ 107.902110222000033, 76.671087958000044 ], [ 107.946055535000028, 76.737290757000039 ], [ 108.320485873000052, 76.725083726000037 ], [ 108.286306186000047, 76.705267645000049 ], [ 109.39779707100007, 76.759995835000041 ], [ 110.061371290000068, 76.691595770000049 ], [ 110.358571811000047, 76.755682684000078 ], [ 110.704844597000033, 76.726507880000042 ], [ 111.090342644000032, 76.762274481000077 ], [ 111.137054884000065, 76.746812242000033 ], [ 111.068858269000032, 76.718898830000057 ], [ 111.119395379000025, 76.682114976000037 ], [ 111.555430535000028, 76.684149481000077 ], [ 111.445567254000025, 76.630072333000044 ], [ 111.826426629000025, 76.596380927000041 ], [ 112.199066602000016, 76.471869208000044 ], [ 111.829112175000034, 76.341498114000046 ], [ 112.256846550000091, 76.454413153000075 ], [ 112.747813347000033, 76.335272528000075 ], [ 112.658376498000052, 76.322251695000034 ], [ 112.740407748000052, 76.26703522300005 ], [ 112.69263756600003, 76.231634833000044 ], [ 112.500743035000028, 76.239081122000073 ], [ 112.857676629000025, 76.143500067000048 ], [ 112.761485222000033, 76.075262762000079 ], [ 112.569672071000014, 76.047308661000045 ], [ 112.96216881600003, 76.06509023600006 ], [ 113.042002800000091, 76.115627346000053 ], [ 112.987315300000091, 76.143500067000048 ], [ 113.059336785000028, 76.163763739000046 ], [ 113.302744988000086, 76.115627346000053 ], [ 113.256114129000025, 76.159247137000079 ], [ 113.289073113000086, 76.170843817000048 ], [ 112.932139519000089, 76.259588934000078 ], [ 113.259287957000083, 76.266424872000073 ], [ 113.295909050000091, 76.245917059000078 ], [ 113.241221550000091, 76.204982815000051 ], [ 113.358897332000083, 76.211330471000053 ], [ 113.459727410000028, 76.148382880000042 ], [ 113.45281009200005, 76.04132721600007 ], [ 113.549082879000025, 76.020656643000052 ], [ 113.500743035000028, 75.985825914000031 ], [ 113.55591881600003, 75.972235419000071 ], [ 113.531993035000028, 75.954046942000048 ], [ 113.439789259, 75.944281317000048 ], [ 113.562754754000025, 75.896470445000034 ], [ 113.480804884, 75.855536200000074 ], [ 113.78093509200005, 75.939276434000078 ], [ 113.890147332000083, 75.853989976000037 ], [ 113.720469597000033, 75.67055898600006 ], [ 113.720469597000033, 75.619330145000049 ], [ 113.55591881600003, 75.540228583000044 ], [ 113.426117384, 75.540228583000044 ], [ 113.617442254000025, 75.656236070000034 ], [ 113.067556186000047, 75.683498440000051 ], [ 113.137543165000011, 75.711493231000077 ], [ 112.559092644000089, 75.851304429000038 ], [ 112.336924675000091, 75.848089911000045 ], [ 112.870616082000083, 75.711493231000077 ], [ 112.747813347000033, 75.698472398000035 ], [ 112.878103061000047, 75.646673895000049 ], [ 112.788828972000033, 75.588609117000033 ], [ 112.813649936000047, 75.557318427000041 ], [ 113.035492384, 75.55304596600007 ], [ 112.993011915000011, 75.609849351000037 ], [ 113.267425977000016, 75.651109117000033 ], [ 113.309418165000011, 75.615912177000041 ], [ 113.254893425000091, 75.574367580000057 ], [ 113.290537957000083, 75.550523179000038 ], [ 113.637705925000091, 75.52407461100006 ], [ 113.720469597000033, 75.409857489000046 ], [ 113.549082879000025, 75.406439520000049 ], [ 113.670664910000028, 75.368882554000038 ], [ 113.605235222000033, 75.284979559000078 ], [ 112.879649285000028, 74.992905992000033 ], [ 112.146820509, 74.87836334800005 ], [ 112.056488477000016, 74.789496161000045 ], [ 111.772308790000068, 74.668524481000077 ], [ 111.402842644000032, 74.691107489000046 ], [ 110.986175977000073, 74.594224351000037 ], [ 111.05209394600007, 74.579169012000079 ], [ 110.96021569100003, 74.548488674000055 ], [ 110.557139519000032, 74.48110586100006 ], [ 110.331553582000026, 74.496161200000074 ], [ 110.28052819100003, 74.478216864000046 ], [ 110.389821811000047, 74.450873114000046 ], [ 110.36255944100003, 74.41828034100007 ], [ 110.212087436000047, 74.372381903000075 ], [ 109.561208530000044, 74.313706773000035 ], [ 109.979502800000034, 74.29633209800005 ], [ 109.796885613000029, 74.161688544000071 ], [ 108.996104363000029, 74.015570380000042 ], [ 108.550791863000029, 73.811835028000075 ], [ 108.437754754000025, 73.820257880000042 ], [ 108.491709832000026, 73.772528387000079 ], [ 108.066579623000052, 73.635321356000077 ], [ 108.094493035000028, 73.662665106000077 ], [ 108.03679446700005, 73.677232164000031 ], [ 107.748708530000044, 73.612046617000033 ], [ 107.146820509000065, 73.617661851000037 ], [ 107.101328972000033, 73.573879299000055 ], [ 107.169688347000033, 73.553412177000041 ], [ 106.881602410000028, 73.443548895000049 ], [ 106.785411004000025, 73.340521552000041 ], [ 106.232432488000029, 73.322821356000077 ], [ 106.062754754000025, 73.273016669000071 ], [ 106.009287957000026, 73.155096747000073 ], [ 105.873708530000044, 73.114569403000075 ], [ 105.833832227000073, 73.00226471600007 ], [ 105.650645379000025, 72.911078192000048 ], [ 105.290049675000034, 72.800279039000031 ], [ 105.066742384000065, 72.785589911000045 ], [ 105.482595248000052, 72.768133856000077 ], [ 106.036367876000043, 72.952521541000067 ], [ 106.657134699000039, 72.831952970000032 ], [ 107.103262717000064, 72.856405815000073 ], [ 106.254639767000072, 72.967199506000043 ], [ 106.175629102000073, 73.09438711100006 ], [ 106.359873894000032, 73.194281317000048 ], [ 106.775563998000052, 73.141017971000053 ], [ 107.035899285000028, 73.182196356000077 ], [ 107.72234134200005, 73.168524481000077 ], [ 108.091644727000073, 73.24640534100007 ], [ 108.316661004000025, 73.221584377000056 ], [ 108.39616946700005, 73.257879950000074 ], [ 108.197520379000025, 73.279038804000038 ], [ 109.221202019000032, 73.387111721000053 ], [ 109.254893425000034, 73.42023346600007 ], [ 109.209239129000025, 73.468817450000074 ], [ 109.43490644600007, 73.426703192000048 ], [ 109.180186394000032, 73.510199286000045 ], [ 109.193614129000025, 73.551662502000056 ], [ 109.512054884000065, 73.457505601000037 ], [ 109.713877800000034, 73.45258209800005 ], [ 110.103770379000025, 73.516058661000045 ], [ 110.156993035000028, 73.545884507000039 ], [ 110.089366082000026, 73.559556382000039 ], [ 110.12427819100003, 73.580308335000041 ], [ 110.424571160000028, 73.607367255000042 ], [ 110.470550977000073, 73.649359442000048 ], [ 110.931968214861172, 73.687905585574299 ], [ 111.12296430915552, 73.620364488130576 ], [ 111.018991326688308, 73.568636379765053 ], [ 110.827375115668985, 73.563468735893423 ], [ 110.537780389253498, 73.406217353248223 ], [ 110.157648554437174, 73.39495189131668 ], [ 110.535609978917364, 73.316817125509885 ], [ 110.592557407997958, 73.263461209167417 ], [ 110.396807081881263, 73.193620511077711 ], [ 110.770427688387088, 73.171347967834436 ], [ 110.901272413590959, 73.050476793369285 ], [ 110.753684524221399, 72.999472154516297 ], [ 110.837296991363019, 72.945108547821178 ], [ 110.627387322566847, 72.894517320118212 ], [ 110.695290155216469, 72.826046048486319 ], [ 110.608783807326802, 72.785841783571414 ], [ 110.701698033437424, 72.650449531220829 ], [ 111.295356887310447, 72.503326728046034 ], [ 111.056715122904563, 72.380595200707887 ], [ 111.555496046805047, 72.316464748849057 ], [ 111.646653273729555, 72.26964590103745 ], [ 111.618127882795534, 72.213008531218691 ], [ 111.714452752692353, 72.206187241847715 ], [ 111.763648716415105, 72.143503729913164 ], [ 111.996089309074307, 72.132729194396745 ], [ 112.000016717697349, 71.407786363050207 ], [ 112.709430779906484, 71.24288686783467 ], [ 112.518641392086579, 71.161703193447579 ], [ 112.555538365103416, 71.096642564702563 ], [ 112.249407180097251, 71.00331492834124 ], [ 112.076394485217293, 71.061244208453445 ], [ 111.980276319996108, 70.988742174511685 ], [ 111.522423129623689, 70.938616034802124 ], [ 111.334941033701682, 70.855313626022962 ], [ 110.539434034752844, 70.800639960066064 ], [ 110.473701613338733, 70.715632228944173 ], [ 110.102768182005946, 70.631916409015048 ], [ 110.135014275987999, 70.55967275749174 ], [ 110.064217564389025, 70.548614000235887 ], [ 110.110519647363787, 70.482313137141546 ], [ 110.26317182781753, 70.427381090564836 ], [ 109.601506789406756, 70.378185125942764 ], [ 109.535464308730809, 70.263980211217756 ], [ 109.281526320083572, 70.212303778796297 ], [ 109.351702914957514, 70.073449204916869 ], [ 109.509005975345417, 70.033451647375614 ], [ 109.385189244188211, 69.929478664908402 ], [ 109.414954868572295, 69.892194119163264 ], [ 109.366585728048847, 69.84369578743059 ], [ 109.23698123629498, 69.77589630846785 ], [ 108.940978631658481, 69.789228827948023 ], [ 108.87100874235955, 69.840285142745131 ], [ 108.290579055179194, 69.856769925391689 ], [ 108.05441775857264, 69.779513657829 ], [ 108.014626905707075, 69.708045151762292 ], [ 107.925226678868114, 69.68122508407032 ], [ 106.838574659892572, 69.518237616772581 ], [ 106.590217727166305, 69.518857734396875 ], [ 106.455445590641432, 69.571309313174254 ], [ 106.139599237314883, 69.41628001590999 ], [ 106.890044386739021, 68.859931546203882 ], [ 106.894075149048831, 68.109331367148854 ], [ 106.802401158186854, 67.348240872518204 ], [ 106.666802199361996, 67.245353094769484 ], [ 106.492342563658326, 67.28382619891994 ], [ 106.054746534924618, 67.167166653018569 ], [ 105.993458286970338, 67.078128160486187 ], [ 105.893826125175508, 67.043659980223879 ], [ 105.540152622845198, 67.023402817685849 ], [ 105.686706984339821, 66.939480292181713 ], [ 106.056606886898294, 66.896020413111557 ], [ 106.008857863099877, 66.791789049125271 ], [ 106.184351026678485, 66.800625719201548 ], [ 106.142699822738564, 66.740474351909768 ], [ 106.254010857614958, 66.697272854358687 ], [ 106.243778925357049, 66.592007962497462 ], [ 106.321913690264523, 66.478888250692194 ], [ 106.103322381922339, 66.378325913809817 ], [ 106.116551547715687, 66.198646959189773 ], [ 106.34155073427894, 66.152396552159132 ], [ 106.471258579719631, 66.00739248337635 ], [ 106.48242068886367, 65.855308742804198 ], [ 106.420305616810708, 65.671443997142717 ], [ 106.958153924963597, 65.502203681254855 ], [ 106.828859490672926, 65.375079658199638 ], [ 106.62391076107275, 65.392959703027827 ], [ 106.443456659197409, 65.308468735843462 ], [ 106.426093378306746, 65.265680650341722 ], [ 106.498233677042492, 65.204676622328236 ], [ 106.393227166700342, 65.210748602865692 ], [ 105.989840935810491, 65.033188381738398 ], [ 106.220214470921064, 64.857178453322945 ], [ 105.950773553356782, 64.893920396708893 ], [ 106.006687452763686, 64.818782864437594 ], [ 105.852588332385608, 64.797027086031164 ], [ 105.829954054835696, 64.742250068186081 ], [ 105.875325961823648, 64.658534247357579 ], [ 105.710684849026507, 64.663598538441761 ], [ 105.722673781369849, 64.58205312794945 ], [ 105.806492954985856, 64.479940497455971 ], [ 106.028081495964216, 64.51443451614 ], [ 106.131847771957041, 64.480818997498716 ], [ 106.067045525630476, 64.426610419535223 ], [ 106.134018182293232, 64.404389553135331 ], [ 106.584326612882819, 64.445317288462036 ], [ 106.567170037567109, 64.496218574527575 ], [ 106.604687128208354, 64.512703356274869 ], [ 106.735325148736592, 64.41860057175893 ], [ 107.221910434718723, 64.330182196850899 ], [ 107.327950473835244, 64.248585110414467 ], [ 107.606796503156033, 64.294318753507639 ], [ 107.967704706007339, 64.169881903826763 ], [ 108.026512486162289, 64.223522040110026 ], [ 108.161491327362796, 64.23804311799546 ], [ 108.320137973988267, 64.039037176824195 ], [ 108.252028435763634, 63.992399197065254 ], [ 107.679763625091198, 63.989221096376468 ], [ 107.55026248612478, 63.85700694381535 ], [ 107.372495559422475, 63.865507718006768 ], [ 107.289813267368345, 63.949998684291813 ], [ 107.190181105573515, 63.95532135689507 ], [ 107.070808546976821, 63.887005113095483 ], [ 106.709900344125515, 63.986611437367912 ], [ 106.681478305978999, 63.925323188514312 ], [ 106.793409457580367, 63.842382514041788 ], [ 106.629491815195081, 63.696784166056375 ], [ 106.685509068288809, 63.620458076279192 ], [ 106.509602491761541, 63.495091051510769 ], [ 106.730570916914246, 63.367476101141108 ], [ 106.672693312746162, 63.297583727107281 ], [ 106.437565545813243, 63.319959622238741 ], [ 106.365115187815604, 63.262960517214083 ], [ 106.361807895917593, 63.220895901224822 ], [ 106.424543084695586, 63.196607978175621 ], [ 106.403252395181823, 63.113305569396459 ], [ 106.12337283708672, 63.059510403482307 ], [ 106.217734003121677, 62.896781317703642 ], [ 106.4425264832106, 62.843037827733554 ], [ 106.524795363215389, 62.746764635579439 ], [ 106.504434848789174, 62.675037747094336 ], [ 106.796923455952708, 62.601760565897393 ], [ 106.669075961586316, 62.548559679185814 ], [ 106.70349246590456, 62.474481513211231 ], [ 106.532650181360736, 62.376502996915747 ], [ 106.428367141430385, 62.382833359871654 ], [ 106.478079869090664, 62.323534654200898 ], [ 106.327391391599406, 62.265812080563023 ], [ 106.446143832571749, 62.235478014498767 ], [ 106.375140415397823, 62.103238024415248 ], [ 106.407283155693051, 62.034766750984716 ], [ 106.209465773826366, 62.000350247565848 ], [ 105.902197707258324, 61.834882311569402 ], [ 105.946742791946235, 61.688844713112985 ], [ 105.809076775572692, 61.622388821287018 ], [ 105.696112095197009, 61.64522980441194 ], [ 105.367449986327756, 61.529836331281615 ], [ 105.271745233155968, 61.42493317282765 ], [ 104.788984003009261, 61.3484003774754 ], [ 104.926236607333522, 61.318996487397953 ], [ 105.007368605776492, 61.182183133544754 ], [ 104.836629673120854, 61.176162828052043 ], [ 104.614937779354989, 61.074076035980227 ], [ 104.635194940094379, 61.036378079085068 ], [ 104.564501581282912, 60.944807441010539 ], [ 104.628580357197677, 60.890004583844416 ], [ 104.463112421201231, 60.84445180880391 ], [ 104.596127556741294, 60.752881170729438 ], [ 104.521506789306841, 60.638986315266209 ], [ 104.664857211690901, 60.402773342715591 ], [ 104.889236280629802, 60.301694240996369 ], [ 105.296859979404474, 60.298128567579283 ], [ 105.47855431472982, 60.249035955744716 ], [ 105.423673944097175, 60.109664618827082 ], [ 105.488682895998807, 60.001169949433574 ], [ 105.432872349379352, 59.896163439091424 ], [ 105.490543247972482, 59.845236315503541 ], [ 105.024421828304696, 59.834694322185214 ], [ 105.012432895961354, 59.769788723071088 ], [ 104.79880252501647, 59.690878810908373 ], [ 104.862674595356225, 59.543239243796052 ], [ 104.977809686068099, 59.463760890852427 ], [ 105.172423129723597, 59.474483751324044 ], [ 105.225339797393701, 59.429292711489438 ], [ 105.241462843935039, 59.353380031962899 ], [ 105.190716586601127, 59.308318183337462 ], [ 105.294069452343308, 59.259923204392351 ], [ 105.346986119114035, 59.091690578857083 ], [ 105.144931267563891, 59.044768378258027 ], [ 104.798182408291439, 58.863229072563627 ], [ 104.76045861207524, 58.81413646072906 ], [ 104.872493117363433, 58.71853506124404 ], [ 104.793944940406618, 58.669287421577224 ], [ 104.458151482904555, 58.602263088970346 ], [ 104.393142531002979, 58.703910631470421 ], [ 104.220129836123022, 58.757964178903705 ], [ 103.869143508066429, 58.735174871722904 ], [ 103.95182580012056, 58.784887600282502 ], [ 103.901079542786647, 58.897077135201584 ], [ 103.603526646337627, 58.913148504899539 ], [ 103.548749627593224, 58.978002428069544 ], [ 103.375220167876421, 59.034123033051515 ], [ 103.246029087272518, 59.180057277821106 ], [ 103.240241326675857, 59.227341214525381 ], [ 103.334705844599, 59.229072374390512 ], [ 103.324370558654323, 59.26010407244496 ], [ 103.082628207925438, 59.264393216273902 ], [ 103.01059126197714, 59.31808502940055 ], [ 102.831480747238629, 59.214577134926799 ], [ 102.521835564759442, 59.186051743992778 ], [ 102.405873650848264, 59.072544461257849 ], [ 102.438636508767843, 58.943740953382246 ], [ 102.537338494575806, 58.896586208786459 ], [ 102.564933710422338, 58.796669827050835 ], [ 102.513257277101616, 58.721428941092711 ], [ 102.317920363034261, 58.647324938495103 ], [ 102.186145460944203, 58.522681383239217 ], [ 101.700800409311398, 58.423876043744372 ], [ 101.530888299855121, 58.225309353044167 ], [ 101.297620883996558, 58.219289049350095 ], [ 101.117993606219898, 58.118985093986851 ], [ 101.153960402350663, 58.01682078754925 ], [ 101.030247023980905, 57.897603258583501 ], [ 100.812689244413036, 57.883650621478978 ], [ 100.884622836674509, 57.769678249851324 ], [ 100.80142378068291, 57.67301748317027 ], [ 100.952422315637307, 57.560569565832793 ], [ 100.957796665084004, 57.498299465947582 ], [ 100.748817173173961, 57.403240667922432 ], [ 100.40496219285086, 57.55028595583218 ], [ 100.330754835667108, 57.688985500980039 ], [ 100.365171339985295, 57.732367866583729 ], [ 100.129320102640577, 57.866804104525784 ], [ 100.04343387237526, 58.078574124396312 ], [ 99.702782831162665, 58.085705471230483 ], [ 99.497524042300654, 57.929022529366193 ], [ 99.42207645076752, 57.798746243144592 ], [ 98.961639438908946, 57.723298652510778 ], [ 98.745218540003577, 57.792751776972921 ], [ 97.934001905663365, 57.811303616268845 ], [ 97.348507928298204, 57.048016872880339 ], [ 97.481936476786927, 56.965541287300539 ], [ 97.619912550623667, 56.953629869322981 ], [ 97.484933710322423, 56.892574164466112 ], [ 97.486277296559933, 56.810537828457996 ], [ 97.775045200675436, 56.779997056818672 ], [ 97.751480747138714, 56.560268866914669 ], [ 97.87705447838141, 56.544920965829874 ], [ 97.878088007155782, 56.411234035822076 ], [ 97.568236119101584, 56.382760321731439 ], [ 97.580225051444927, 56.195123196178542 ], [ 97.440181919160182, 56.146754054755775 ], [ 97.35191857298372, 56.051204332114196 ], [ 97.125265740921179, 56.101743882973778 ], [ 96.986462843885079, 56.018338121407169 ], [ 96.960004509600424, 55.860931708231703 ], [ 96.767561477180379, 55.768999334951332 ], [ 96.818101027140642, 55.700786444838513 ], [ 96.752782016876552, 55.650711981972336 ], [ 96.854791293683206, 55.593971259366072 ], [ 96.819961379114318, 55.557591051186023 ], [ 96.843112420601699, 55.441396593278114 ], [ 96.918043247297987, 55.329517116721547 ], [ 96.706583286689295, 55.258694565801534 ], [ 96.681571893228238, 55.077930406463054 ], [ 96.584936964968904, 55.023205065461354 ], [ 96.713817987210291, 54.919387111725825 ], [ 96.564886508905204, 54.6968683947606 ], [ 96.572844679838056, 54.51837799674712 ], [ 96.064658645080385, 54.573335883544189 ], [ 95.922031691309485, 54.399806423827386 ], [ 95.797388136952918, 54.417505602401604 ], [ 95.66675011642468, 54.335417589550104 ], [ 95.670780877835227, 54.239066881231565 ], [ 96.054943474961362, 54.087861639802782 ], [ 96.058560826121209, 53.993758857085538 ], [ 96.505148552763444, 53.684372057024802 ], [ 96.684052361926945, 53.638535061144125 ], [ 96.657697382228378, 53.556007798720884 ], [ 96.443653599234153, 53.510687568576429 ], [ 96.354666782645836, 53.561020412961682 ], [ 96.372443474686577, 53.599054267540396 ], [ 96.287590774094895, 53.580657456976041 ], [ 96.252037388214831, 53.6161074900686 ], [ 96.091633742403246, 53.450536201284649 ], [ 95.757080520149827, 53.520454412840877 ], [ 95.396275669186764, 53.372194729003525 ], [ 95.260366651999334, 53.456375636926055 ], [ 95.053040805588694, 53.37746572476334 ], [ 94.739881625636485, 53.382736721422532 ], [ 94.585679151571526, 53.307004909948603 ], [ 94.701124302444555, 53.237629299852301 ], [ 94.604179314923385, 53.175772610217734 ], [ 94.604282667710891, 53.049423733518438 ], [ 94.512298619385717, 52.910827542057405 ], [ 94.304972772075757, 52.903954575842988 ], [ 94.148703241361488, 52.841736151901841 ], [ 94.071395297854679, 52.667199001832444 ], [ 93.764540643335977, 52.439486803473187 ], [ 93.765574172110291, 52.365796210226904 ], [ 93.667182244664843, 52.215624498471811 ], [ 93.360430942933647, 52.12942820894466 ], [ 93.074556918666815, 51.945253404021344 ], [ 92.901234165424341, 51.89507558926698 ], [ 92.859582960585101, 51.835596015543672 ], [ 92.672824335074949, 51.839833482529173 ], [ 92.505392694317322, 51.781439114423563 ], [ 91.986664667140644, 51.793608913920195 ], [ 91.884241978284649, 51.855749824394877 ], [ 91.543074172235208, 51.900915024908443 ], [ 91.238906691090904, 51.882311510567718 ], [ 91.100517206104143, 51.942721259378573 ], [ 90.849266391730566, 51.908046373541254 ], [ 90.735991652093048, 52.069380195339704 ], [ 90.476589160561275, 52.183400842574827 ], [ 90.700334914324799, 52.458193671500737 ], [ 91.396313104266312, 52.867987778812903 ], [ 91.35114790195405, 53.077484036459111 ], [ 91.659862909345748, 53.158486842793536 ], [ 91.841247186308578, 53.288272203499389 ], [ 91.846414829280889, 53.351937568264134 ], [ 91.743992141324213, 53.446712145449112 ], [ 91.46969363825076, 53.513891506787559 ], [ 91.32654992144171, 53.816663723052329 ], [ 91.465146112003424, 53.966034450929158 ], [ 91.463905877654099, 54.056545721807595 ], [ 91.251722446633551, 54.274826971787263 ], [ 91.159014926997258, 54.487888901951237 ], [ 90.854950800439042, 54.626743475830722 ], [ 90.915308872406513, 54.791074531164668 ], [ 90.84048139759841, 54.838875230907149 ], [ 90.714907668154297, 54.831175442392748 ], [ 90.684831983609115, 54.904659329164701 ], [ 90.458282505233399, 54.870759588783983 ], [ 90.482673781070105, 54.927810369752763 ], [ 90.435544874896038, 55.016332099246938 ], [ 90.228839146109692, 55.06627737090389 ], [ 90.195869581715783, 55.151414293235007 ], [ 89.657814568887204, 55.00307709413255 ], [ 89.567277459587046, 55.0580349800303 ], [ 89.447181430578496, 55.03855296474751 ], [ 89.391680943220933, 54.973647366532703 ], [ 89.20078820171409, 54.990390529799072 ], [ 89.147354771005837, 55.076302599385428 ], [ 89.037904087203799, 55.084131578209735 ], [ 89.067049594862851, 55.132009793217378 ], [ 88.966073845931191, 55.184771430357216 ], [ 88.950157504964864, 55.289080308709231 ], [ 88.608773519881993, 55.445589632855217 ], [ 88.878120559016565, 55.620687975169915 ], [ 89.370493605595357, 55.774993801123003 ], [ 89.382069125889416, 55.833284817340427 ], [ 89.449041782552172, 55.861965237006075 ], [ 89.311479119865453, 55.914106757420882 ], [ 89.242956171390176, 56.043711249174805 ], [ 89.271584914212383, 56.069420273726621 ], [ 89.056300896868834, 56.210109361158061 ], [ 89.056610956130669, 56.301679999232533 ], [ 88.904682245189406, 56.311989448554186 ], [ 88.91501753113414, 56.345915025557929 ], [ 88.592453241224064, 56.443635159435019 ], [ 88.617774693047636, 56.529469712856951 ], [ 88.502742954223947, 56.589982815354631 ], [ 88.509770949169933, 56.624606025247829 ], [ 88.676375766728199, 56.641504218145144 ], [ 88.7407646019048, 56.713541164992762 ], [ 88.651674431629658, 56.741756497564268 ], [ 88.623975864794261, 56.83296540043284 ], [ 88.722367792239766, 57.086386624243289 ], [ 88.526204054973107, 57.122095037955603 ], [ 88.7327030781845, 57.227437445981309 ], [ 88.872332798419848, 57.444400947245867 ], [ 89.070666945123378, 57.509771634353399 ], [ 89.147354771005837, 57.614209703015376 ], [ 89.38041548128939, 57.637154038927747 ], [ 89.377418246854575, 57.916878567391961 ], [ 88.850835402431812, 57.960648504824633 ], [ 88.687434523084733, 58.036561184351172 ], [ 88.130465935754273, 58.114024155690231 ], [ 88.018121372103622, 58.242646796412487 ], [ 87.918179151946276, 58.499943752901856 ], [ 88.391845331396894, 58.914466254514025 ], [ 88.826547479382612, 59.024459539775933 ], [ 88.607542758991087, 59.214938870132698 ], [ 88.621495396095611, 59.293021959096109 ], [ 87.910634393062765, 59.268139756844278 ], [ 87.522337680839257, 59.667211005483466 ], [ 87.190574985647061, 59.689741930245873 ], [ 87.084121535380518, 59.88275340434609 ], [ 86.625441521808739, 59.950036119371362 ], [ 85.968220655958476, 59.955875555912144 ], [ 85.496311476593348, 59.891590074422368 ], [ 84.691916131624112, 59.904819241115035 ], [ 84.531305780237517, 59.974995835989034 ], [ 84.606236606933805, 60.046025092484001 ], [ 84.631868117119893, 60.20557607757388 ], [ 84.783590121586826, 60.370527248733538 ], [ 84.259591098650219, 60.855510566059763 ], [ 84.622669711837716, 61.000101222793148 ], [ 85.671184523446982, 61.28923086211455 ], [ 85.702087030292205, 61.30618073185525 ], [ 85.643899366862229, 61.387596951138335 ], [ 85.968220655958476, 61.474645901387191 ], [ 85.963363072247944, 61.544900011526295 ], [ 85.854015741233411, 61.595051987858938 ], [ 85.721930779881575, 61.574743150276163 ], [ 85.479568313326979, 61.62786652352122 ], [ 85.375905389222282, 61.701117866296443 ], [ 85.272655878066303, 61.682591865422239 ], [ 85.000527785328984, 61.785427965428255 ], [ 84.689745721287977, 61.80997426999653 ], [ 84.523347609304665, 61.93004446148268 ], [ 84.552699823438047, 61.999058336373082 ], [ 84.435704379853235, 62.177962145536583 ], [ 84.871750115875102, 62.458616848188967 ], [ 84.894074335062498, 62.541066596246367 ], [ 85.090031365854827, 62.637985745345816 ], [ 85.225216912630401, 62.801231594162687 ], [ 85.518325637418172, 62.93256724758038 ], [ 85.496104771018338, 62.986233222285364 ], [ 85.58633182195598, 63.07418651009931 ], [ 85.469439732057936, 63.14919485116144 ], [ 85.530934685587226, 63.262805488482456 ], [ 85.672114699433791, 63.359750475104306 ], [ 85.418900181198353, 63.349208482685299 ], [ 85.364846632865749, 63.404760646886302 ], [ 85.377869093983463, 63.466513983733307 ], [ 85.299114210552318, 63.517415269798846 ], [ 85.096749302438297, 63.534158433964535 ], [ 85.031843703324228, 63.586351630323463 ], [ 85.269451938955797, 63.651463935012544 ], [ 85.373114862161117, 63.808405260194547 ], [ 85.533518507972701, 63.936717840755705 ], [ 85.963466425035449, 64.065702215784597 ], [ 85.934217563689572, 64.122752996753377 ], [ 86.029922315962096, 64.274991766956475 ], [ 85.84151004405328, 64.459166571879734 ], [ 85.916027459599547, 64.588486843692863 ], [ 85.810194126058036, 64.647733873419497 ], [ 85.855669386732757, 64.763437404912281 ], [ 85.558943312583779, 64.829996650425073 ], [ 85.149045851584731, 64.751810207774838 ], [ 85.092718540128487, 64.810876370348183 ], [ 84.939239535576064, 64.823278713841546 ], [ 84.966731397735771, 64.899243069312149 ], [ 84.92011925729787, 64.927871813033732 ], [ 84.292147250994788, 64.902653713997665 ], [ 84.27891808520144, 64.94032583337048 ], [ 84.388988884829132, 65.008228665120782 ], [ 84.312817823783519, 65.098455716058425 ], [ 84.583912387746466, 65.291208807740247 ], [ 84.506811150713986, 65.394509995739668 ], [ 84.550219353840077, 65.433422350361127 ], [ 84.498336215843665, 65.50380564991076 ], [ 84.195822381997289, 65.595376288884609 ], [ 84.29741824675466, 65.617493802496938 ], [ 84.319432407579484, 65.68441478141699 ], [ 84.168330519837582, 65.703380031862935 ], [ 84.030974562725874, 65.793038642019667 ], [ 83.592345005217794, 65.775416978710552 ], [ 83.518137648033985, 65.822494208041235 ], [ 83.521238234356986, 65.908328762362487 ], [ 83.292828404007594, 66.06599355705697 ], [ 83.53539757703652, 66.192600817074037 ], [ 83.090980258931779, 66.459173692311992 ], [ 83.088913202282413, 66.609732977694762 ], [ 83.296549107055625, 66.673243312828617 ], [ 83.186891716779257, 66.746933906074901 ], [ 83.161880324217577, 66.817989000092268 ], [ 82.117292922130616, 67.243802802057644 ], [ 82.357898391297681, 67.330851752306501 ], [ 82.251341587344371, 67.419244289692188 ], [ 82.37443484898904, 67.480635891333293 ], [ 82.389007602818594, 67.534198513250772 ], [ 82.10964480956028, 67.609000148737834 ], [ 82.049183383905984, 67.65457876220006 ], [ 82.11233198383394, 67.686411445032149 ], [ 82.100343052389917, 67.724393622767423 ], [ 81.895084262628586, 67.788834133888145 ], [ 81.72558556522165, 67.923812975088708 ], [ 82.364616326981889, 67.945878810958334 ], [ 82.394588657840245, 68.176614081274806 ], [ 82.533288202088841, 68.170309556740619 ], [ 82.5741125828294, 68.255368963806575 ], [ 82.702683546708272, 68.298002021476066 ], [ 82.679325798746561, 68.49178864193226 ], [ 82.46889936691224, 68.576641344322525 ], [ 83.038787062572851, 68.667333483253628 ], [ 82.803452590064921, 68.741799221057192 ], [ 82.787432896311088, 68.794974270246371 ], [ 82.55158165896637, 68.826910304966589 ], [ 82.49277387881142, 68.986797186840647 ], [ 82.328959589213639, 69.046483466139023 ], [ 82.493704054798229, 69.105394599081478 ], [ 82.45308637873336, 69.161876940168611 ], [ 81.841030715195302, 69.196396796375041 ], [ 81.761449008564853, 69.252362373524704 ], [ 81.929397414159325, 69.349307359247177 ], [ 81.684967889156724, 69.446510729186798 ], [ 81.626160109001773, 69.414781399142214 ], [ 81.636081983796487, 69.305563260236227 ], [ 81.571073032794175, 69.27329132783251 ], [ 81.323852979831145, 69.285641995381752 ], [ 80.966872185602824, 69.209109199130182 ], [ 80.734224888267931, 69.308121243300718 ], [ 79.86461388492279, 69.348583888835378 ], [ 79.814074334962527, 69.423256334012592 ], [ 79.649846633315462, 69.483872789297777 ], [ 79.491096633003167, 69.654456692322469 ], [ 79.011952753117043, 69.70339427452609 ], [ 79.130395134827552, 69.738792629875945 ], [ 78.87986779176515, 69.879662584460675 ], [ 79.171839634091782, 69.963326728445736 ], [ 79.133805780412388, 70.008414415492837 ], [ 79.192613559668018, 70.010352280932977 ], [ 79.196644321977828, 70.050427355537977 ], [ 79.355497674178309, 70.049962267544572 ], [ 79.333483514252748, 70.147604886156557 ], [ 79.496367628763039, 70.111741441913978 ], [ 79.717232701128239, 70.279586493821625 ], [ 79.880426874000989, 70.278087877053849 ], [ 80.095090772820868, 70.353432114900158 ], [ 80.095400832082703, 70.395419217422898 ], [ 80.182734003171674, 70.393274645508427 ], [ 80.180873651197999, 70.434305731824054 ], [ 80.569067009734681, 70.46081574205283 ], [ 80.747143995698821, 70.394049790965028 ], [ 80.794582961134722, 70.438336494133864 ], [ 80.609581333012102, 70.50109752133352 ], [ 80.757479283442137, 70.655584215339218 ], [ 80.592838168846356, 70.722246812740195 ], [ 80.68585574684522, 70.801208400846974 ], [ 80.564726189961675, 70.860377916207824 ], [ 80.537647739851252, 71.059358018957369 ], [ 79.954427524710468, 71.134107978500367 ], [ 79.565200637399471, 71.277355048096979 ], [ 79.227030063986206, 71.320814928066454 ], [ 79.143210891269575, 71.415227770045533 ], [ 79.357978142876959, 71.494266873417416 ], [ 79.388984003409007, 71.543488675561889 ], [ 79.338444451650105, 71.597903958201073 ], [ 79.371000603994617, 71.612373359243122 ], [ 79.868231236082636, 71.601650498771448 ], [ 80.102325474241184, 71.664566554702731 ], [ 80.076177199218307, 71.764663805390285 ], [ 80.119378696769388, 71.778719794382994 ], [ 80.036386346352742, 71.830757962010296 ], [ 80.339106886673449, 71.88979828616192 ], [ 79.694908481940843, 72.057695014013632 ], [ 79.436319615158084, 72.039634101132833 ], [ 78.914180943295889, 72.116218574227787 ], [ 78.609910109364023, 72.20820262345228 ], [ 78.664687128108426, 72.219519762227208 ], [ 78.655798781188764, 72.258328762262522 ], [ 78.447439406003753, 72.347573961269291 ], [ 78.502764071404727, 72.381906521968403 ] ] ], [ [ [ 86.892344597000033, 73.69672272300005 ], [ 86.783946160000028, 73.608221747000073 ], [ 86.398936394000032, 73.59438711100006 ], [ 86.509613477000073, 73.641831773000035 ], [ 86.892344597000033, 73.69672272300005 ] ] ], [ [ [ 97.158050977000073, 76.088283596000053 ], [ 97.334808790000068, 76.108710028000075 ], [ 97.047373894000032, 76.006333726000037 ], [ 96.69857832100007, 75.995794989000046 ], [ 97.158050977000073, 76.088283596000053 ] ] ], [ [ [ 95.17741946700005, 76.170843817000048 ], [ 95.197276238000029, 76.164007880000042 ], [ 95.006032748000052, 76.177679755000042 ], [ 95.101573113000029, 76.225409247000073 ], [ 95.17741946700005, 76.170843817000048 ] ] ], [ [ [ 94.999196811000047, 76.273260809000078 ], [ 94.855235222000033, 76.239081122000073 ], [ 94.90357506600003, 76.212388414000031 ], [ 94.84888756600003, 76.186102606000077 ], [ 94.410166863000029, 76.212388414000031 ], [ 94.77865644600007, 76.210923570000034 ], [ 94.74537194100003, 76.259588934000078 ], [ 94.999196811000047, 76.273260809000078 ] ] ], [ [ [ 96.574880405000044, 76.341498114000046 ], [ 96.724619988000029, 76.346380927000041 ], [ 96.76693769600007, 76.335272528000075 ], [ 96.684743686000047, 76.294338283000059 ], [ 96.383311394000032, 76.335272528000075 ], [ 96.574880405000044, 76.341498114000046 ] ] ], [ [ [ 96.896657748000052, 76.25649648600006 ], [ 97.041270379000082, 76.239081122000073 ], [ 96.760915561000047, 76.17641836100006 ], [ 96.715993686000047, 76.208685614000046 ], [ 96.72584069100003, 76.259588934000078 ], [ 96.876800977000073, 76.322251695000034 ], [ 96.854014519000032, 76.355658270000049 ], [ 97.07545006600003, 76.308010158000059 ], [ 96.859548373000052, 76.272162177000041 ], [ 96.787364129000082, 76.212388414000031 ], [ 96.896657748000052, 76.25649648600006 ] ] ], [ [ [ 94.163096550000034, 76.59601471600007 ], [ 94.362315300000034, 76.574896552000041 ], [ 93.868337436000047, 76.588568427000041 ], [ 93.944102410000028, 76.616441148000035 ], [ 94.163096550000034, 76.59601471600007 ] ] ], [ [ [ 95.266123894000032, 76.671087958000044 ], [ 95.32748457100007, 76.664252020000049 ], [ 94.81763756600003, 76.653998114000046 ], [ 95.122080925000034, 76.718898830000057 ], [ 95.266123894000032, 76.671087958000044 ] ] ], [ [ [ 110.877730878377292, 73.76785161745812 ], [ 110.66374759200005, 73.787258205000057 ], [ 110.286875847000033, 73.705755927000041 ], [ 109.799571160000028, 73.705064195000034 ], [ 109.737478061000047, 73.661688544000071 ], [ 109.52702884200005, 73.796087958000044 ], [ 109.819834832000026, 73.87726471600007 ], [ 109.886729363000029, 73.960882880000042 ], [ 110.021494988000029, 74.014471747000073 ], [ 110.580821160000028, 73.991400458000044 ], [ 110.958994988000029, 73.908636786000045 ], [ 111.103037957000026, 73.950018622000073 ], [ 111.075694207000026, 73.998439846000053 ], [ 111.159027540000068, 74.037339585000041 ], [ 111.582204623000052, 74.02570221600007 ], [ 111.223399285000028, 73.992580471000053 ], [ 111.28078413258163, 73.859729722948316 ], [ 110.877730878377292, 73.76785161745812 ] ] ], [ [ [ 93.868399504000081, 78.147089685000083 ], [ 93.629079623000052, 78.157049872000073 ], [ 93.592913510000074, 78.17239763200007 ], [ 93.792723366000075, 78.203024739000057 ], [ 93.920874367000067, 78.157024306000039 ], [ 93.868399504000081, 78.147089685000083 ] ] ], [ [ [ 92.456797722000033, 79.110419012000079 ], [ 92.724375847000033, 79.076849677000041 ], [ 92.175629102000073, 79.130845445000034 ], [ 92.213389519000032, 79.139553127000056 ], [ 92.456797722000033, 79.110419012000079 ] ] ], [ [ [ 92.990570509000065, 79.419501044000071 ], [ 92.791840040000068, 79.383246161000045 ], [ 92.58725019600007, 79.415106512000079 ], [ 92.791270379000082, 79.440008856000077 ], [ 92.990570509000065, 79.419501044000071 ] ] ], [ [ [ 92.305430535000028, 79.453029690000051 ], [ 92.470550977000073, 79.432562567000048 ], [ 92.24382571700005, 79.382310289000031 ], [ 91.784678582000083, 79.419501044000071 ], [ 92.305430535000028, 79.453029690000051 ] ] ], [ [ [ 91.372243686000047, 79.485541083000044 ], [ 91.531260613000029, 79.449286200000074 ], [ 90.793793165000068, 79.563544012000079 ], [ 91.14421634200005, 79.537339585000041 ], [ 91.372243686000047, 79.485541083000044 ] ] ], [ [ [ 100.199961785000028, 79.678941148000035 ], [ 100.30982506600003, 79.665961005000042 ], [ 99.905772332000026, 79.60382721600007 ], [ 99.982920769000032, 79.69790273600006 ], [ 100.199961785000028, 79.678941148000035 ] ] ], [ [ [ 94.327647332000026, 80.028998114000046 ], [ 94.154144727000073, 79.983343817000048 ], [ 93.929860873000052, 79.974432684000078 ], [ 93.984385613000029, 80.015366929000038 ], [ 94.327647332000026, 80.028998114000046 ] ] ], [ [ [ 79.562998894000032, 72.768255927000041 ], [ 79.395274285000085, 72.704046942000048 ], [ 78.909922722000033, 72.741278387000079 ], [ 78.584646030000044, 72.841864325000074 ], [ 79.17310631600003, 73.101385809000078 ], [ 79.541351759000065, 72.925523179000038 ], [ 79.490733269000032, 72.908433335000041 ], [ 79.562998894000032, 72.768255927000041 ] ] ], [ [ [ 84.355235222000033, 74.018866278000075 ], [ 84.418304884000065, 73.970445054000038 ], [ 83.884532097000033, 74.018866278000075 ], [ 84.418304884000065, 74.039984442000048 ], [ 84.355235222000033, 74.018866278000075 ] ] ], [ [ [ 83.513438347000033, 74.121283270000049 ], [ 83.620127800000034, 74.090887762000079 ], [ 83.395518425000034, 74.07453034100007 ], [ 83.465586785000028, 74.046820380000042 ], [ 83.392344597000033, 74.03579336100006 ], [ 82.814463738000029, 74.093980210000041 ], [ 83.180023634000065, 74.155178127000056 ], [ 83.513438347000033, 74.121283270000049 ] ] ], [ [ [ 82.56804446700005, 74.162909247000073 ], [ 82.740000847000033, 74.101385809000078 ], [ 82.619639519000032, 74.05499909100007 ], [ 82.317556186000047, 74.116848049000055 ], [ 82.56804446700005, 74.162909247000073 ] ] ], [ [ [ 84.870860222000033, 74.505560614000046 ], [ 84.93482506600003, 74.482001044000071 ], [ 84.541840040000068, 74.457098700000074 ], [ 84.767832879000082, 74.409898179000038 ], [ 84.732758009000065, 74.395697333000044 ], [ 84.386566602000073, 74.45766836100006 ], [ 84.870860222000033, 74.505560614000046 ] ] ], [ [ [ 85.538910352000073, 74.574408270000049 ], [ 85.644786004000082, 74.546454169000071 ], [ 85.630707227000073, 74.511297919000071 ], [ 85.31185957100007, 74.465643622000073 ], [ 85.14812259200005, 74.537176825000074 ], [ 85.538910352000073, 74.574408270000049 ] ] ], [ [ [ 86.078461134000065, 74.555243231000077 ], [ 86.207204623000052, 74.51235586100006 ], [ 85.968272332000083, 74.51235586100006 ], [ 86.008555535000028, 74.491888739000046 ], [ 85.858409050000034, 74.444037177000041 ], [ 85.658457879000082, 74.471380927000041 ], [ 85.802989129000082, 74.574408270000049 ], [ 86.078461134000065, 74.555243231000077 ] ] ], [ [ [ 79.614105665000068, 74.601752020000049 ], [ 79.490000847000033, 74.516913153000075 ], [ 79.148692254000082, 74.607896226000037 ], [ 79.316905144000032, 74.590806382000039 ], [ 79.182790561000047, 74.629055080000057 ], [ 79.244313998000052, 74.658636786000045 ], [ 79.614105665000068, 74.601752020000049 ] ] ], [ [ [ 85.227061394000032, 74.745103257000039 ], [ 85.096690300000034, 74.755601304000038 ], [ 85.495860222000033, 74.813869533000059 ], [ 85.658457879000082, 74.793524481000077 ], [ 85.706228061000047, 74.731431382000039 ], [ 85.227061394000032, 74.745103257000039 ] ] ], [ [ [ 87.02898196700005, 74.991522528000075 ], [ 87.138845248000052, 74.936916408000059 ], [ 86.994151238000029, 74.883734442000048 ], [ 86.68685957100007, 74.89594147300005 ], [ 86.947032097000033, 74.840725002000056 ], [ 86.91960696700005, 74.819810289000031 ], [ 86.319834832000083, 74.850897528000075 ], [ 86.213389519000032, 74.903387762000079 ], [ 86.597504102000073, 74.917059637000079 ], [ 86.50131269600007, 74.930650132000039 ], [ 86.523936394000032, 74.98696523600006 ], [ 86.618662957000083, 74.950588283000059 ], [ 87.02898196700005, 74.991522528000075 ] ] ], [ [ [ 82.136566602000073, 75.142320054000038 ], [ 82.150401238000029, 75.09516022300005 ], [ 82.02670332100007, 75.128729559000078 ], [ 82.082530144000032, 75.158026434000078 ], [ 82.136566602000073, 75.142320054000038 ] ] ], [ [ [ 82.23959394600007, 75.375677802000041 ], [ 82.29428144600007, 75.334173895000049 ], [ 82.041188998000052, 75.337836005000042 ], [ 82.01303144600007, 75.177150783000059 ], [ 81.906586134000065, 75.208156643000052 ], [ 81.87077884200005, 75.315904039000031 ], [ 81.711599155000044, 75.314276434000078 ], [ 81.688487175000034, 75.277044989000046 ], [ 81.492442254000082, 75.362046617000033 ], [ 81.751800977000073, 75.463283596000053 ], [ 81.793304884000065, 75.465073960000041 ], [ 81.738780144000032, 75.382513739000046 ], [ 81.939626498000052, 75.393500067000048 ], [ 81.869151238000029, 75.444037177000041 ], [ 81.951019727000073, 75.465073960000041 ], [ 81.896983269000032, 75.492377020000049 ], [ 82.170746290000068, 75.519720770000049 ], [ 82.13013756600003, 75.457220770000049 ], [ 82.164561394000032, 75.437730210000041 ], [ 82.01303144600007, 75.444037177000041 ], [ 82.23959394600007, 75.375677802000041 ] ] ], [ [ [ 82.109548373000052, 75.88898346600007 ], [ 82.25904381600003, 75.875962632000039 ], [ 81.553884311000047, 75.930609442000048 ], [ 81.627614780000044, 75.936753648000035 ], [ 82.109548373000052, 75.88898346600007 ] ] ], [ [ [ 83.279470248000052, 75.956284898000035 ], [ 83.212901238000029, 75.916937567000048 ], [ 82.862315300000034, 75.917181708000044 ], [ 82.823985222000033, 75.954779364000046 ], [ 82.389414910000085, 75.944281317000048 ], [ 82.25904381600003, 75.972235419000071 ], [ 82.65748131600003, 75.998846747000073 ], [ 83.279470248000052, 75.956284898000035 ] ] ], [ [ [ 96.644053582000026, 76.26703522300005 ], [ 96.578379754000082, 76.194647528000075 ], [ 96.595550977000073, 76.157171942000048 ], [ 96.519867384000065, 76.190659898000035 ], [ 96.561534050000034, 76.231634833000044 ], [ 96.446787957000026, 76.271633205000057 ], [ 96.346853061000047, 76.254706122000073 ], [ 96.424327019000032, 76.212388414000031 ], [ 96.246104363000029, 76.204982815000051 ], [ 96.396494988000029, 76.177679755000042 ], [ 96.321299675000034, 76.136053778000075 ], [ 96.344737175000034, 76.105047919000071 ], [ 96.181407097000033, 76.154689846000053 ], [ 95.266123894000032, 76.218573309000078 ], [ 95.349945509000065, 76.288763739000046 ], [ 95.570160352000073, 76.238185940000051 ], [ 95.812266472000033, 76.302923895000049 ], [ 96.068125847000033, 76.280015367000033 ], [ 96.104177280000044, 76.231634833000044 ], [ 96.282969597000033, 76.309271552000041 ], [ 96.644053582000026, 76.26703522300005 ] ] ], [ [ [ 113.292491082000083, 76.363226630000042 ], [ 113.137543165000011, 76.36945221600007 ], [ 113.117686394000089, 76.376898505000042 ], [ 113.264333530000044, 76.444322007000039 ], [ 113.309418165000011, 76.423488674000055 ], [ 113.261729363000086, 76.396714585000041 ], [ 113.446625196000014, 76.36945221600007 ], [ 113.292491082000083, 76.363226630000042 ] ] ], [ [ [ 111.958832227000073, 76.60219961100006 ], [ 112.367198113000086, 76.658148505000042 ], [ 112.528086785000028, 76.622707424000055 ], [ 112.486501498000052, 76.60219961100006 ], [ 112.569672071000014, 76.55499909100007 ], [ 112.507578972000033, 76.540716864000046 ], [ 112.71412194100003, 76.520453192000048 ], [ 112.575938347000033, 76.499741929000038 ], [ 112.618011915000011, 76.458807684000078 ], [ 112.567881707000083, 76.443508205000057 ], [ 111.958832227000073, 76.60219961100006 ] ] ], [ [ [ 96.47201582100007, 76.691595770000049 ], [ 96.313487175000034, 76.622544664000031 ], [ 95.88990319100003, 76.616441148000035 ], [ 95.925629102000073, 76.665920315000051 ], [ 96.232432488000029, 76.712062893000052 ], [ 96.47201582100007, 76.691595770000049 ] ] ], [ [ [ 95.650238477000073, 76.677923895000049 ], [ 95.834727410000028, 76.691595770000049 ], [ 95.52865644600007, 76.64874909100007 ], [ 95.417002800000034, 76.705267645000049 ], [ 95.650238477000073, 76.677923895000049 ] ] ], [ [ [ 97.476328972000033, 76.650336005000042 ], [ 97.596202019000032, 76.60219961100006 ], [ 97.34310957100007, 76.599310614000046 ], [ 97.386973504000082, 76.653998114000046 ], [ 97.288259311000047, 76.691595770000049 ], [ 97.446299675000034, 76.714748440000051 ], [ 97.476328972000033, 76.650336005000042 ] ] ], [ [ [ 96.527354363000029, 77.205511786000045 ], [ 96.589366082000026, 77.144110419000071 ], [ 96.235036655000044, 76.990464585000041 ], [ 95.684418165000068, 76.952297268000052 ], [ 95.951426629000082, 77.013657945000034 ], [ 95.231944207000026, 77.006293036000045 ], [ 96.527354363000029, 77.205511786000045 ] ] ], [ [ [ 105.784922722000033, 77.280585028000075 ], [ 105.902679884000065, 77.304022528000075 ], [ 106.011485222000033, 77.28742096600007 ], [ 105.861827019000032, 77.254868882000039 ], [ 105.784922722000033, 77.280585028000075 ] ] ], [ [ [ 89.689219597000033, 77.280585028000075 ], [ 89.817020347000039, 77.210589664000054 ], [ 89.74679532600004, 77.164424359000066 ], [ 89.492790485000057, 77.140757023000049 ], [ 89.301216310000029, 77.147222364000072 ], [ 89.134613477000073, 77.217718817000048 ], [ 89.30437259200005, 77.307928778000075 ], [ 89.689219597000033, 77.280585028000075 ] ] ], [ [ [ 106.361175977000073, 77.321926174000055 ], [ 106.408457879000025, 77.331000067000048 ], [ 106.456553582000026, 77.321600653000075 ], [ 106.333018425000034, 77.321600653000075 ], [ 106.361175977000073, 77.321926174000055 ] ] ], [ [ [ 107.745127800000034, 77.329046942000048 ], [ 107.721690300000034, 77.269720770000049 ], [ 107.204844597000033, 77.234320380000042 ], [ 107.457041863000029, 77.280585028000075 ], [ 107.279551629000025, 77.301703192000048 ], [ 107.395355665000068, 77.360256252000056 ], [ 107.745127800000034, 77.329046942000048 ] ] ], [ [ [ 106.861175977000073, 77.445746161000045 ], [ 106.700938347000033, 77.383612372000073 ], [ 106.52475019600007, 77.390448309000078 ], [ 106.559580925000034, 77.438299872000073 ], [ 106.730316602000073, 77.470445054000038 ], [ 106.943125847000033, 77.458726304000038 ], [ 106.861175977000073, 77.445746161000045 ] ] ], [ [ [ 107.704112175000034, 78.137152411000045 ], [ 107.451019727000073, 78.053168036000045 ], [ 107.390635613000029, 78.102484442000048 ], [ 106.395030144000032, 78.130926825000074 ], [ 107.337901238000029, 78.190741278000075 ], [ 107.704112175000034, 78.137152411000045 ] ] ], [ [ [ 106.532237175000034, 78.253851630000042 ], [ 106.193858269000032, 78.193060614000046 ], [ 105.990977410000028, 78.219142971000053 ], [ 106.068858269000032, 78.270575262000079 ], [ 106.337901238000029, 78.265855210000041 ], [ 106.47006269600007, 78.342596747000073 ], [ 106.765635613000029, 78.308498440000051 ], [ 106.713389519000032, 78.261908270000049 ], [ 106.450205925000034, 78.261297919000071 ], [ 106.532237175000034, 78.253851630000042 ] ] ], [ [ [ 105.415537957000026, 78.58344147300005 ], [ 105.357432488000029, 78.506252346000053 ], [ 104.787364129000082, 78.336371161000045 ], [ 104.353282097000033, 78.341457424000055 ], [ 103.71257571700005, 78.256293036000045 ], [ 103.015961134000065, 78.25649648600006 ], [ 102.660329623000052, 78.164496161000045 ], [ 102.681488477000073, 78.212876695000034 ], [ 102.60710696700005, 78.225531317000048 ], [ 101.209808790000068, 78.193508205000057 ], [ 100.483164910000028, 78.029974677000041 ], [ 99.871267123000052, 77.952215887000079 ], [ 99.371348504000082, 77.959662177000041 ], [ 99.426036004000082, 77.987005927000041 ], [ 99.268321160000028, 78.041571356000077 ], [ 99.426036004000082, 78.075669664000031 ], [ 99.543142123000052, 78.179673570000034 ], [ 99.75513756600003, 78.264553127000056 ], [ 100.049652540000068, 78.34320709800005 ], [ 100.000743035000028, 78.417710679000038 ], [ 100.275645379000082, 78.579738674000055 ], [ 100.254649285000028, 78.665350653000075 ], [ 100.385264519000032, 78.751613674000055 ], [ 100.601573113000029, 78.798163153000075 ], [ 101.166351759000065, 78.760972398000035 ], [ 100.823741082000026, 78.808783270000049 ], [ 100.784922722000033, 78.895086981000077 ], [ 100.907237175000034, 78.985093492000033 ], [ 101.070078972000033, 79.034654039000031 ], [ 101.591644727000073, 78.976996161000045 ], [ 101.625661655000044, 78.986883856000077 ], [ 100.988129102000073, 79.062648830000057 ], [ 101.04265384200005, 79.133002020000049 ], [ 101.195648634000065, 79.147162177000041 ], [ 101.125987175000034, 79.165025132000039 ], [ 101.194183790000068, 79.202866929000038 ], [ 101.557383660000028, 79.254380601000037 ], [ 101.543711785000028, 79.340765692000048 ], [ 101.817556186000047, 79.371039130000042 ], [ 101.960785352000073, 79.261216539000031 ], [ 102.246267123000052, 79.24164459800005 ], [ 102.139659050000034, 79.356838283000059 ], [ 102.302907748000052, 79.432806708000044 ], [ 102.893728061000047, 79.381333726000037 ], [ 103.153168165000068, 79.309637762000079 ], [ 102.82545006600003, 79.227118231000077 ], [ 102.859629754000082, 79.220282294000071 ], [ 102.742930535000028, 79.15884023600006 ], [ 102.797618035000028, 79.138332424000055 ], [ 102.674001498000052, 79.076849677000041 ], [ 102.691416863000029, 79.032212632000039 ], [ 102.379161004000082, 78.822455145000049 ], [ 102.665782097000033, 78.892401434000078 ], [ 102.92115319100003, 79.058417059000078 ], [ 103.144297722000033, 79.057766018000052 ], [ 103.62427819100003, 79.171210028000075 ], [ 103.606293165000068, 79.138332424000055 ], [ 104.00131269600007, 79.127671617000033 ], [ 104.023285352000073, 79.096747137000079 ], [ 103.97624759200005, 79.062648830000057 ], [ 104.07349694100003, 79.004828192000048 ], [ 104.455332879000082, 78.966742255000042 ], [ 104.524912957000026, 78.88507721600007 ], [ 104.366709832000026, 78.857123114000046 ], [ 104.654551629000082, 78.829901434000078 ], [ 104.578868035000028, 78.775213934000078 ], [ 104.725108269000032, 78.790838934000078 ], [ 104.75904381600003, 78.853338934000078 ], [ 105.17505944100003, 78.809271552000041 ], [ 105.343760613000029, 78.642320054000038 ], [ 105.333506707000026, 78.604803778000075 ], [ 105.415537957000026, 78.58344147300005 ] ] ], [ [ [ 77.613617384000065, 79.521918036000045 ], [ 76.696055535000085, 79.477606512000079 ], [ 76.640961134000065, 79.487127997000073 ], [ 76.698741082000083, 79.51821523600006 ], [ 76.620616082000083, 79.548570054000038 ], [ 76.174327019000032, 79.569077867000033 ], [ 76.051442905000044, 79.648504950000074 ], [ 76.224375847000033, 79.657375393000052 ], [ 76.277354363000029, 79.645453192000048 ], [ 76.140147332000083, 79.638617255000042 ], [ 76.26880944100003, 79.604315497000073 ], [ 76.482269727000073, 79.643744208000044 ], [ 77.613617384000065, 79.521918036000045 ] ] ], [ [ [ 93.62818444100003, 79.933417059000078 ], [ 93.81373131600003, 79.898667710000041 ], [ 93.669932488000029, 79.831732489000046 ], [ 93.05209394600007, 79.715277411000045 ], [ 91.921885613000029, 79.678941148000035 ], [ 91.970225457000083, 79.693264065000051 ], [ 91.91570071700005, 79.706935940000051 ], [ 91.944509311000047, 79.715887762000079 ], [ 92.353282097000033, 79.734198309000078 ], [ 92.099457227000073, 79.809881903000075 ], [ 91.072520379000082, 79.850978908000059 ], [ 91.298594597000033, 79.919134833000044 ], [ 91.017588738000029, 79.966986395000049 ], [ 91.181895379000082, 79.994859117000033 ], [ 91.113617384000065, 80.048895575000074 ], [ 90.86654707100007, 80.062567450000074 ], [ 91.782074415000068, 80.063788153000075 ], [ 93.62818444100003, 79.933417059000078 ] ] ], [ [ [ 99.88599694100003, 79.041489976000037 ], [ 99.925547722000033, 78.945990302000041 ], [ 99.40560957100007, 78.822455145000049 ], [ 98.602712436000047, 78.81586334800005 ], [ 98.555186394000032, 78.802557684000078 ], [ 98.579600457000026, 78.782171942000048 ], [ 97.442230665000068, 78.817206122000073 ], [ 97.404470248000052, 78.829901434000078 ], [ 97.603037957000026, 78.843491929000038 ], [ 97.263926629000082, 78.853013414000031 ], [ 96.79851321700005, 78.989203192000048 ], [ 95.672536655000044, 79.000962632000039 ], [ 95.670176629000082, 79.069403387000079 ], [ 95.523773634000065, 79.109076239000046 ], [ 95.066579623000052, 79.038153387000079 ], [ 94.826670769000032, 79.066636460000041 ], [ 94.632334832000026, 79.127427476000037 ], [ 94.617360873000052, 79.201320705000057 ], [ 94.333994988000029, 79.248602606000077 ], [ 94.35482832100007, 79.31586334800005 ], [ 94.313324415000068, 79.350002346000053 ], [ 94.362315300000034, 79.440008856000077 ], [ 94.312266472000033, 79.479193427000041 ], [ 94.053233269000032, 79.473537502000056 ], [ 94.080577019000032, 79.446844794000071 ], [ 93.988047722000033, 79.427150783000059 ], [ 93.69695071700005, 79.459865627000056 ], [ 93.991221550000034, 79.494045315000051 ], [ 93.690196160000028, 79.54242584800005 ], [ 93.882009311000047, 79.60382721600007 ], [ 93.720957879000082, 79.595404364000046 ], [ 93.443125847000033, 79.501450914000031 ], [ 93.539317254000082, 79.487127997000073 ], [ 93.235850457000083, 79.438950914000031 ], [ 93.114105665000068, 79.467271226000037 ], [ 93.320160352000073, 79.501450914000031 ], [ 92.854177280000044, 79.55609772300005 ], [ 93.280284050000034, 79.552476304000038 ], [ 94.169444207000026, 79.775213934000078 ], [ 94.690114780000044, 79.816107489000046 ], [ 94.224619988000029, 79.898667710000041 ], [ 94.382334832000026, 79.933417059000078 ], [ 94.320811394000032, 79.966986395000049 ], [ 94.35124759200005, 79.976996161000045 ], [ 94.749766472000033, 80.007473049000055 ], [ 94.951996290000068, 80.104478257000039 ], [ 95.24187259200005, 80.021551825000074 ], [ 95.502126498000052, 80.111476955000057 ], [ 96.174082879000082, 80.091498114000046 ], [ 97.592133009000065, 80.174872137000079 ], [ 98.089610222000033, 80.056341864000046 ], [ 97.847829623000052, 79.996527411000045 ], [ 97.768077019000032, 79.946478583000044 ], [ 97.814219597000033, 79.91632721600007 ], [ 97.520518425000034, 79.809271552000041 ], [ 97.60873457100007, 79.776597398000035 ], [ 97.191579623000052, 79.706935940000051 ], [ 97.705821160000028, 79.763169664000031 ], [ 97.723155144000032, 79.805365302000041 ], [ 97.917735222000033, 79.857123114000046 ], [ 97.88404381600003, 79.877183335000041 ], [ 97.926117384000065, 79.902167059000078 ], [ 98.377207879000082, 79.877875067000048 ], [ 98.582367384000065, 79.975978908000059 ], [ 98.43913821700005, 80.015366929000038 ], [ 98.556976759000065, 80.058539130000042 ], [ 99.198985222000033, 80.049994208000044 ], [ 99.247813347000033, 80.035834052000041 ], [ 99.158457879000082, 80.015366929000038 ], [ 99.33171634200005, 80.019761460000041 ], [ 100.022471550000034, 79.823553778000075 ], [ 100.076996290000068, 79.78266022300005 ], [ 99.817067905000044, 79.74164459800005 ], [ 99.88599694100003, 79.693264065000051 ], [ 99.707204623000052, 79.569077867000033 ], [ 99.789073113000029, 79.521918036000045 ], [ 99.686045769000032, 79.473537502000056 ], [ 99.73373457100007, 79.419501044000071 ], [ 99.696299675000034, 79.388169664000031 ], [ 99.748057488000029, 79.364243882000039 ], [ 99.666677280000044, 79.312241929000038 ], [ 99.460134311000047, 79.247544664000031 ], [ 99.034922722000033, 79.295965887000079 ], [ 99.583181186000047, 79.172796942000048 ], [ 99.610850457000026, 79.15884023600006 ], [ 99.488047722000033, 79.14516836100006 ], [ 99.821055535000028, 79.101467190000051 ], [ 99.88599694100003, 79.041489976000037 ] ] ], [ [ [ 79.806651238000029, 80.974310614000046 ], [ 80.43718509200005, 80.940171617000033 ], [ 80.326426629000082, 80.860541083000044 ], [ 79.127614780000044, 80.806708075000074 ], [ 78.974619988000029, 80.842596747000073 ], [ 79.210703972000033, 80.961330471000053 ], [ 79.806651238000029, 80.974310614000046 ] ] ], [ [ [ 91.547211134000065, 81.153794664000031 ], [ 91.57390384200005, 81.135565497000073 ], [ 91.186208530000044, 81.056830145000049 ], [ 89.996348504000082, 81.105292059000078 ], [ 89.89389082100007, 81.173570054000038 ], [ 90.07154381600003, 81.214544989000046 ], [ 91.454844597000033, 81.192613023000035 ], [ 91.547211134000065, 81.153794664000031 ] ] ], [ [ [ 97.747080925000034, 80.741603908000059 ], [ 97.972911004000082, 80.721136786000045 ], [ 97.719004754000082, 80.663641669000071 ], [ 97.130625847000033, 80.665838934000078 ], [ 97.191579623000052, 80.645331122000073 ], [ 97.047373894000032, 80.583929755000042 ], [ 97.02076256600003, 80.525864976000037 ], [ 97.148773634000065, 80.487005927000041 ], [ 97.208506707000026, 80.430853583000044 ], [ 97.205821160000028, 80.355617580000057 ], [ 97.422862175000034, 80.326971747000073 ], [ 97.187998894000032, 80.233587958000044 ], [ 94.530039910000028, 80.131008205000057 ], [ 93.749847852000073, 79.996771552000041 ], [ 92.965017123000052, 80.111029364000046 ], [ 92.06576582100007, 80.172430731000077 ], [ 92.195323113000029, 80.208156643000052 ], [ 92.888194207000083, 80.172430731000077 ], [ 92.281016472000033, 80.230414130000042 ], [ 92.107432488000029, 80.289740302000041 ], [ 93.320160352000073, 80.276068427000041 ], [ 93.244395379000082, 80.309556382000039 ], [ 91.422129754000082, 80.309556382000039 ], [ 91.662364129000082, 80.385239976000037 ], [ 92.627614780000044, 80.391546942000048 ], [ 91.887705925000034, 80.46039459800005 ], [ 92.769297722000033, 80.516750393000052 ], [ 92.825205925000034, 80.650620835000041 ], [ 93.270274285000028, 80.797105210000041 ], [ 92.497243686000047, 80.77570221600007 ], [ 92.731211785000028, 80.851467190000051 ], [ 92.676524285000028, 80.878729559000078 ], [ 93.162608269000032, 80.946966864000046 ], [ 93.052744988000029, 80.995428778000075 ], [ 95.547211134000065, 81.220770575000074 ], [ 95.033946160000028, 81.24868398600006 ], [ 95.103526238000029, 81.271307684000078 ], [ 95.77662194100003, 81.288804429000038 ], [ 96.020274285000028, 81.234442450000074 ], [ 95.967539910000028, 81.205023505000042 ], [ 96.135264519000032, 81.202460028000075 ], [ 96.554698113000029, 81.077378648000035 ], [ 96.544118686000047, 81.029852606000077 ], [ 96.732758009000065, 81.00844961100006 ], [ 96.644053582000026, 80.987982489000046 ], [ 96.766368035000028, 80.949937242000033 ], [ 97.410655144000032, 80.837144273000035 ], [ 97.754649285000028, 80.829291083000044 ], [ 97.788584832000026, 80.816636460000041 ], [ 97.747080925000034, 80.796210028000075 ], [ 97.883555535000028, 80.769476630000042 ], [ 97.747080925000034, 80.741603908000059 ] ] ], [ [ [ 92.062266472000033, 77.629950262000079 ], [ 92.110118035000028, 77.610907294000071 ], [ 91.984548373000052, 77.587225653000075 ], [ 91.865977410000028, 77.628648179000038 ], [ 92.062266472000033, 77.629950262000079 ] ] ], [ [ [ 83.305108873000052, 70.805514753000068 ], [ 83.469408132000069, 70.737734944000067 ], [ 83.304760029000079, 70.644604345000062 ], [ 83.259191102000045, 70.548806536000086 ], [ 83.309572222000043, 70.44310013300003 ], [ 83.065270919000056, 70.36532894700008 ], [ 83.132231687000058, 70.433807366000053 ], [ 83.147059101000082, 70.649908559000039 ], [ 83.256721668000068, 70.801032681000038 ], [ 83.305108873000052, 70.805514753000068 ] ] ], [ [ [ 97.645681186000047, 76.756211656000062 ], [ 97.459808790000068, 76.718451239000046 ], [ 97.160736524000072, 76.753607489000046 ], [ 97.639008009000065, 76.773098049000055 ], [ 97.645681186000047, 76.756211656000062 ] ] ], [ [ [ 89.047127915000033, 77.140894532000061 ], [ 89.135898317000056, 77.127114433000031 ], [ 88.919571261000044, 76.977100910000047 ], [ 88.816333806000046, 76.985409984000057 ], [ 88.663875129000076, 77.080350503000034 ], [ 89.047127915000033, 77.140894532000061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KL", "NAME_1": "Kalmyk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.496429884000065, 45.565252997000073 ], [ 47.538259311000047, 45.50649648600006 ], [ 47.496755405000044, 45.42999909100007 ], [ 47.381358269000089, 45.411037502000056 ], [ 47.460134311000047, 45.390814520000049 ], [ 47.384043816000087, 45.29946523600006 ], [ 47.379405144000089, 45.202826239000046 ], [ 47.297129754000082, 45.187445380000042 ], [ 47.201182488000086, 44.970038153000075 ], [ 47.146006707000083, 44.929103908000059 ], [ 47.098806186000047, 44.956366278000075 ], [ 47.078298373000052, 44.785101630000042 ], [ 47.003184441000087, 44.921576239000046 ], [ 47.003184441000087, 44.817613023000035 ], [ 46.888140135558785, 44.751867995011935 ], [ 46.43368289584896, 44.936559759924933 ], [ 45.853666619818625, 45.000509345529849 ], [ 45.705975375862863, 44.975782172009588 ], [ 45.586189406116148, 45.158303331433558 ], [ 44.737662387609078, 45.496603095156672 ], [ 44.420989211083224, 45.526730454746655 ], [ 44.20715213366401, 45.610007026003416 ], [ 44.080028110608794, 45.795809638004357 ], [ 43.877559848807948, 45.945490424243644 ], [ 43.392524854638282, 46.016002915901822 ], [ 42.915551385088349, 46.241415514514358 ], [ 42.51660932765833, 45.989699612147376 ], [ 42.325509880576476, 45.971948758528356 ], [ 42.332537876421839, 46.124781806135445 ], [ 42.17740522637007, 46.099098619105973 ], [ 42.157148064731359, 45.960399074857378 ], [ 42.104851514685606, 45.92789459935625 ], [ 41.712627393839114, 45.996004137580883 ], [ 41.647101678000013, 46.16707896612138 ], [ 41.725959914218663, 46.213561917148752 ], [ 41.85690799310936, 46.155012519412196 ], [ 41.963051385013387, 46.289112861469334 ], [ 42.206344027554792, 46.317018133879742 ], [ 42.172650995447043, 46.385541083254338 ], [ 42.087694940269273, 46.417890530023897 ], [ 42.0342615086617, 46.543257554792319 ], [ 42.168516880349728, 46.578707586985502 ], [ 42.409329055091803, 46.524938259493069 ], [ 42.609936964918973, 46.407555244079219 ], [ 42.776645135264744, 46.388434964002386 ], [ 42.928367139731677, 46.435615546120516 ], [ 43.355627883420084, 46.172349961881196 ], [ 43.619384393175153, 46.197283840976468 ], [ 43.772966749615762, 46.407916979285119 ], [ 43.861746860629069, 46.291825873265395 ], [ 43.960758904799604, 46.336138413956633 ], [ 43.926445754168185, 46.528323065756865 ], [ 43.817098423153709, 46.58873281546704 ], [ 44.072586703613467, 46.827736314179504 ], [ 44.262445917245259, 46.900134996233078 ], [ 44.327558221035076, 47.110768134541729 ], [ 44.332725864007386, 47.480719713044323 ], [ 44.250560336790102, 47.508883368772445 ], [ 44.238778110921032, 47.573375555837231 ], [ 44.126330193583556, 47.544643460227462 ], [ 44.116408318788842, 47.418449612259792 ], [ 43.973678013129756, 47.393386541955294 ], [ 43.939158156024064, 47.268898017229674 ], [ 43.802318962849824, 47.282540595072362 ], [ 43.784025505972295, 47.404083564005248 ], [ 43.636334262915852, 47.575726834225975 ], [ 43.729041781652882, 47.703496813327263 ], [ 44.004063755138191, 47.78938304269326 ], [ 44.071553175738472, 47.906559353431419 ], [ 44.38905317636295, 47.868267117333573 ], [ 44.46522423740862, 48.038773505093161 ], [ 44.328074985871865, 48.063836575397602 ], [ 44.311125116131166, 48.258191637534026 ], [ 44.534780714658211, 48.205481676338252 ], [ 44.568990513401445, 48.056524360510821 ], [ 44.829749789621076, 48.071691393542949 ], [ 44.962558221384768, 48.208685615448758 ], [ 45.136914504300933, 48.111843979815774 ], [ 45.404908481940879, 48.091690171863888 ], [ 45.546915318087429, 47.997070624309856 ], [ 45.71651736828187, 48.032934068552379 ], [ 45.71269331244639, 47.886328030214372 ], [ 45.828861931932579, 47.728198147526484 ], [ 45.907203404213703, 47.710163072168029 ], [ 45.925393508303728, 47.645050768378212 ], [ 46.116286248911251, 47.502423813707992 ], [ 46.297050409149051, 47.437001451555716 ], [ 46.388000929599173, 47.444804591958302 ], [ 46.672531365829855, 47.626292223507278 ], [ 46.805856560631753, 47.578181464502961 ], [ 46.515641716591915, 47.392611396498751 ], [ 46.800895624133716, 47.003642889807509 ], [ 46.924815708078427, 46.973980618210931 ], [ 47.000263298712241, 46.855434881914221 ], [ 47.125940382742442, 46.850680650091931 ], [ 47.213480259406424, 46.742315171907649 ], [ 46.938664992395445, 46.571266180889495 ], [ 46.954064569424304, 46.434065253408676 ], [ 46.663643018910193, 46.429000963223871 ], [ 46.49300743994138, 46.285702215884555 ], [ 46.869625279083323, 46.239296780122288 ], [ 46.840169712162435, 46.075534166468572 ], [ 47.173792759328364, 46.10483470285925 ], [ 47.040157505264631, 45.965721747460634 ], [ 46.888952263835904, 45.578277695958889 ], [ 47.364582147148326, 45.685428779114829 ], [ 47.466281365592522, 45.639023342453243 ], [ 47.496429884000065, 45.565252997000073 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KAM", "NAME_1": "Kamchatka" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 168.059255405000044, 54.546616929000038 ], [ 168.110362175000091, 54.503485419000071 ], [ 167.501149936000047, 54.785101630000042 ], [ 167.43913821700005, 54.866278387000079 ], [ 167.73406009200005, 54.762640692000048 ], [ 168.059255405000044, 54.546616929000038 ] ] ], [ [ [ 166.664398634, 54.756415106000077 ], [ 166.664398634, 54.680080471000053 ], [ 166.501963738000086, 54.780462958000044 ], [ 166.500010613000086, 54.824693101000037 ], [ 166.356455925000091, 54.839544989000046 ], [ 166.082855665000011, 55.060614325000074 ], [ 165.992930535000028, 55.221909898000035 ], [ 165.746429884, 55.297064520000049 ], [ 165.940440300000091, 55.364976304000038 ], [ 166.253672722000033, 55.331854559000078 ], [ 166.287771030000044, 55.303900458000044 ], [ 166.226328972000033, 55.250067450000074 ], [ 166.250254754000025, 55.152289130000042 ], [ 166.448090040000011, 54.961127020000049 ], [ 166.649750196000014, 54.844549872000073 ], [ 166.664398634, 54.756415106000077 ] ] ], [ [ [ 164.706900488000088, 58.976828187000081 ], [ 164.631873543000097, 58.865365928000074 ], [ 164.407725457000083, 58.864894924000055 ], [ 164.25600978500006, 58.798603587000059 ], [ 164.170176629000025, 58.824286200000074 ], [ 163.846034882000026, 58.690514681000082 ], [ 163.585462414000062, 58.55789026900004 ], [ 163.490018932, 58.444503218000079 ], [ 163.412854354000046, 58.535368944000084 ], [ 163.610542686000031, 58.607463142000086 ], [ 163.779551613000081, 58.810402262000082 ], [ 163.781757680000055, 58.893873475000078 ], [ 163.913191360000042, 58.994291270000076 ], [ 163.69638634099999, 58.991944791000037 ], [ 163.749282562000076, 59.018959858000073 ], [ 164.283050977000016, 59.113714911000045 ], [ 164.558116082000083, 59.23969147300005 ], [ 164.734071723000056, 59.02325303300006 ], [ 164.706900488000088, 58.976828187000081 ] ] ], [ [ [ 174.453570079595465, 61.814805667247697 ], [ 174.353037957000083, 61.848456122000073 ], [ 174.155039910000028, 61.800604559000078 ], [ 174.193369988000086, 61.816799221000053 ], [ 174.073008660000028, 61.841620184000078 ], [ 174.020681186000047, 61.796861070000034 ], [ 174.106618686000047, 61.780178127000056 ], [ 173.804942254000025, 61.64984772300005 ], [ 173.801931186000047, 61.691799221000053 ], [ 173.54460696700005, 61.749090887000079 ], [ 173.47388756600003, 61.642808335000041 ], [ 173.481130405000044, 61.555243231000077 ], [ 173.331228061000047, 61.547308661000045 ], [ 173.285899285000028, 61.465073960000041 ], [ 173.128428582000083, 61.396958726000037 ], [ 172.897146030000044, 61.472316799000055 ], [ 172.715586785000028, 61.430731512000079 ], [ 172.93132571700005, 61.351548570000034 ], [ 172.955088738000086, 61.314032294000071 ], [ 172.894541863000086, 61.277899481000077 ], [ 172.667816602000016, 61.334458726000037 ], [ 172.766774936000047, 61.262518622000073 ], [ 172.646739129000025, 61.191107489000046 ], [ 172.386078321000014, 61.227443752000056 ], [ 172.338226759, 61.211004950000074 ], [ 172.434418165000011, 61.142726955000057 ], [ 172.242686394000089, 61.142726955000057 ], [ 172.476084832000083, 61.055731512000079 ], [ 172.263031446000014, 61.014960028000075 ], [ 172.009287957000083, 61.101141669000071 ], [ 172.20085696700005, 60.975775458000044 ], [ 172.047129754000025, 60.860663153000075 ], [ 172.006846550000091, 60.855210679000038 ], [ 172.004405144000089, 60.936468817000048 ], [ 171.957774285000028, 60.953111070000034 ], [ 171.949392123000052, 60.84829336100006 ], [ 171.536875847000033, 60.80695221600007 ], [ 171.632578972000033, 60.744818427000041 ], [ 171.413422071000014, 60.690171617000033 ], [ 171.467946811000047, 60.731146552000041 ], [ 171.396332227000016, 60.782945054000038 ], [ 171.372406446000014, 60.643052476000037 ], [ 171.179453972000033, 60.55890534100007 ], [ 170.750743035000028, 60.529486395000049 ], [ 170.810720248000052, 60.498439846000053 ], [ 170.717295769000089, 60.428168036000045 ], [ 170.515879754000025, 60.45062897300005 ], [ 170.662119988000086, 60.332017320000034 ], [ 170.502289259, 60.272528387000079 ], [ 170.400645379000025, 59.965643622000073 ], [ 170.265147332000083, 59.920355536000045 ], [ 170.118907097000033, 59.968003648000035 ], [ 170.118662957000083, 60.019273179000038 ], [ 169.955821160000028, 60.05923086100006 ], [ 169.848806186000047, 60.181626695000034 ], [ 169.974619988000086, 60.232163804000038 ], [ 169.755218946000014, 60.275580145000049 ], [ 169.693369988000086, 60.416489976000037 ], [ 169.264170769000089, 60.550482489000046 ], [ 169.371348504000025, 60.567328192000048 ], [ 169.214366082000083, 60.628729559000078 ], [ 169.132578972000033, 60.587225653000075 ], [ 169.166514519000089, 60.567328192000048 ], [ 168.650401238000086, 60.552679755000042 ], [ 168.280121290000011, 60.596421617000033 ], [ 167.837657097000033, 60.510565497000073 ], [ 167.768077019000089, 60.55304596600007 ], [ 167.771983269000089, 60.49673086100006 ], [ 167.592295769000089, 60.445461330000057 ], [ 167.48015384200005, 60.468003648000035 ], [ 167.433604363000086, 60.420396226000037 ], [ 167.336110873000052, 60.471136786000045 ], [ 167.374034050000091, 60.405951239000046 ], [ 167.281504754000025, 60.416489976000037 ], [ 167.306407097000033, 60.393011786000045 ], [ 167.192149285000028, 60.355047919000071 ], [ 167.024912957000083, 60.427679755000042 ], [ 167.04810631600003, 60.32843659100007 ], [ 166.897797071000014, 60.299790757000039 ], [ 166.931813998000052, 60.259019273000035 ], [ 166.245127800000091, 59.830633856000077 ], [ 166.109548373000052, 59.827460028000075 ], [ 166.10279381600003, 59.909409898000035 ], [ 166.175303582000083, 60.120306708000044 ], [ 166.285411004000025, 60.197251695000034 ], [ 166.232595248000052, 60.395982164000031 ], [ 166.312673373000052, 60.392726955000057 ], [ 166.373301629000025, 60.49945709800005 ], [ 166.013438347000033, 60.440375067000048 ], [ 165.924082879000025, 60.382391669000071 ], [ 165.97974694100003, 60.375718492000033 ], [ 166.040782097000033, 60.423325914000031 ], [ 166.080577019000089, 60.437404690000051 ], [ 166.212087436000047, 60.457464911000045 ], [ 165.670909050000091, 60.252020575000074 ], [ 165.461273634, 60.219468492000033 ], [ 165.44499759200005, 60.258856512000079 ], [ 165.44499759200005, 60.196763414000031 ], [ 165.229258660000028, 60.097235419000071 ], [ 165.160004102000016, 60.129095770000049 ], [ 165.191661004000025, 60.170111395000049 ], [ 165.082286004000025, 60.113104559000078 ], [ 164.99927819100003, 60.135321356000077 ], [ 165.024099155000044, 60.072211005000042 ], [ 165.129649285000028, 60.084173895000049 ], [ 165.212087436000047, 59.991359768000052 ], [ 165.013519727000016, 59.84796784100007 ], [ 164.838633660000028, 59.78742096600007 ], [ 164.701670769000089, 59.98110586100006 ], [ 164.488536004000025, 60.111029364000046 ], [ 164.320567254000025, 60.088609117000033 ], [ 164.368662957000083, 60.025458075000074 ], [ 164.33912194100003, 59.991522528000075 ], [ 164.117930535000028, 59.941392320000034 ], [ 164.109141472000033, 59.902533270000049 ], [ 164.190440300000091, 59.854193427000041 ], [ 164.041677280000044, 59.907538153000075 ], [ 164.204844597000033, 59.99750397300005 ], [ 163.628672722000033, 60.046576239000046 ], [ 163.683116082000083, 59.974269924000055 ], [ 163.793793165000011, 59.991359768000052 ], [ 163.688487175000091, 59.898342190000051 ], [ 163.534515821000014, 59.905422268000052 ], [ 163.361827019000089, 59.827460028000075 ], [ 163.390147332000083, 59.631537177000041 ], [ 163.180186394000089, 59.558254299000055 ], [ 163.210459832000083, 59.559963283000059 ], [ 163.170909050000091, 59.505682684000078 ], [ 163.321462436000047, 59.411037502000056 ], [ 163.312510613000086, 59.287543036000045 ], [ 163.244476759, 59.237860419000071 ], [ 163.286143425000091, 59.299261786000045 ], [ 163.133474155000044, 59.291083075000074 ], [ 163.066905144000089, 59.234076239000046 ], [ 163.261868851000031, 59.080830376000051 ], [ 163.164317254000025, 59.033677476000037 ], [ 163.165049675000091, 59.096665757000039 ], [ 163.074473504000025, 59.142238674000055 ], [ 162.882660352000016, 59.132798570000034 ], [ 163.077757778000091, 59.007594079000057 ], [ 163.068549302000065, 58.968053169000086 ], [ 162.878189701, 58.906477327000061 ], [ 162.91960696700005, 58.971625067000048 ], [ 162.88990319100003, 58.978745835000041 ], [ 162.816195490000041, 58.887224155000069 ], [ 162.676605665000011, 58.874090887000079 ], [ 162.785899285000028, 58.874090887000079 ], [ 162.78768745800005, 58.831921244000057 ], [ 162.405294473000026, 58.654444867000052 ], [ 162.169868003000033, 58.405916981000075 ], [ 161.993228165, 58.087392175000048 ], [ 162.025563998000052, 57.928778387000079 ], [ 162.082041863000086, 57.882473049000055 ], [ 162.455539485000031, 57.784350824000057 ], [ 162.354502800000091, 57.688544012000079 ], [ 162.52178931900005, 57.75415576100005 ], [ 162.491154975000086, 57.887320336000073 ], [ 162.529795769000089, 57.936509507000039 ], [ 162.689952019000089, 57.969712632000039 ], [ 163.00387038100007, 57.83752790300008 ], [ 163.218941847, 57.813458381000032 ], [ 163.329510112000094, 57.708944701000064 ], [ 163.242469026000094, 57.670345073000078 ], [ 163.242884547000017, 57.594992094000077 ], [ 163.074833846000047, 57.461000052000031 ], [ 162.800195794000047, 57.346434455000065 ], [ 162.785899285000028, 57.145453192000048 ], [ 162.859850845000096, 57.051442541000085 ], [ 162.789561394000089, 56.921861070000034 ], [ 162.783500266000033, 56.763028714000086 ], [ 162.967186912000102, 56.703559946000041 ], [ 163.238968537, 56.733020511000063 ], [ 163.280572402000075, 56.688011773000085 ], [ 163.23871269599999, 56.623415439000041 ], [ 163.278471184000068, 56.563520683000036 ], [ 163.250254754000025, 56.451117255000042 ], [ 163.353284323000025, 56.321979488000068 ], [ 163.366068623000047, 56.180658663000031 ], [ 163.117930535000028, 56.106431382000039 ], [ 163.05120846300008, 56.005403993000073 ], [ 162.821618084000079, 56.056198838000057 ], [ 162.638024593000068, 56.220794046000037 ], [ 162.556813998000052, 56.228501695000034 ], [ 163.11605243200006, 56.500504295000042 ], [ 163.020133205000093, 56.53764086800004 ], [ 162.909901772000012, 56.425690686000053 ], [ 162.682943846000057, 56.483866811000041 ], [ 162.41404181200005, 56.383870265000041 ], [ 162.59254035399999, 56.268490028000087 ], [ 162.056752367000058, 56.069135218000042 ], [ 162.076929068000027, 56.022471556000085 ], [ 161.764131177000081, 55.554845542000066 ], [ 161.747685524000076, 55.375954486000069 ], [ 161.812980583000012, 55.179183574000035 ], [ 161.874766472000033, 55.078599351000037 ], [ 162.151703321000014, 54.862616278000075 ], [ 162.107432488000086, 54.824693101000037 ], [ 162.127609226, 54.760405265000031 ], [ 161.723806186000047, 54.509426174000055 ], [ 161.311859571000014, 54.490139065000051 ], [ 161.150889519000089, 54.597316799000055 ], [ 160.741221550000091, 54.535223700000074 ], [ 160.052989129000025, 54.175726630000042 ], [ 159.901540561000047, 53.98187897300005 ], [ 159.844086134, 53.796942450000074 ], [ 159.866709832000083, 53.694484768000052 ], [ 159.818207227000016, 53.659654039000031 ], [ 159.914561394000089, 53.590765692000048 ], [ 159.872894727000016, 53.666489976000037 ], [ 159.930674675000091, 53.645086981000077 ], [ 159.960459832000083, 53.496771552000041 ], [ 159.791026238000086, 53.516302802000041 ], [ 159.975352410000028, 53.331610419000071 ], [ 159.914561394000089, 53.268622137000079 ], [ 159.969248894000089, 53.214667059000078 ], [ 160.017588738000086, 53.265204169000071 ], [ 160.058604363000086, 53.097357489000046 ], [ 159.771494988000086, 53.203599351000037 ], [ 159.825043165000011, 53.282945054000038 ], [ 159.163828972000033, 53.134914455000057 ], [ 158.70866946700005, 52.891791083000044 ], [ 158.591563347000033, 53.062160549000055 ], [ 158.437836134, 53.025336005000042 ], [ 158.435557488000086, 52.919745184000078 ], [ 158.530446811000047, 52.905585028000075 ], [ 158.506195509, 52.947455145000049 ], [ 158.647146030000044, 52.899359442000048 ], [ 158.499766472000033, 52.778957424000055 ], [ 158.599375847000033, 52.713771877000056 ], [ 158.564707879000025, 52.647365627000056 ], [ 158.50043947100005, 52.621315029000073 ], [ 158.42115319100003, 52.659125067000048 ], [ 158.427333843000042, 52.593767798000044 ], [ 158.523610873000052, 52.570379950000074 ], [ 158.530446811000047, 52.487860419000071 ], [ 158.42115319100003, 52.412095445000034 ], [ 158.543467644000089, 52.420721747000073 ], [ 158.571299675000091, 52.391669012000079 ], [ 158.50318444100003, 52.358099677000041 ], [ 158.55787194100003, 52.313055731000077 ], [ 158.390147332000083, 52.226223049000055 ], [ 158.42701256600003, 52.184271552000041 ], [ 158.319021030000044, 52.13031647300005 ], [ 158.286875847000033, 51.967515367000033 ], [ 158.014821811000047, 51.766017971000053 ], [ 157.91334069100003, 51.631293036000045 ], [ 157.536875847000033, 51.486070054000038 ], [ 157.475738209000042, 51.361473738000086 ], [ 157.388504204000014, 51.351317954000081 ], [ 156.658235246, 50.882605568000088 ], [ 156.761937298000021, 50.984430585000041 ], [ 156.761545361, 51.077973901000064 ], [ 156.708093580000082, 51.087703605000058 ], [ 156.721874035000042, 51.195482086000084 ], [ 156.523610873000052, 51.311509507000039 ], [ 156.439191879000077, 52.216030948000082 ], [ 156.282237175000091, 52.529445705000057 ], [ 156.370860222000033, 52.490057684000078 ], [ 156.37232506600003, 52.446844794000071 ], [ 156.446625196000014, 52.511419989000046 ], [ 156.265725830000065, 52.598171273000048 ], [ 156.11119584000005, 52.935420328000077 ], [ 155.954682694000098, 53.78610475000005 ], [ 155.728037957000083, 54.426825262000079 ], [ 155.55117716699999, 55.284204852000073 ], [ 155.686208530000044, 56.039129950000074 ], [ 155.762054884, 56.11945221600007 ], [ 155.94654381600003, 56.621893622000073 ], [ 156.125254754000025, 56.832017320000034 ], [ 156.174001498000052, 56.845851955000057 ], [ 156.082530144000089, 56.767075914000031 ], [ 156.06373131600003, 56.715969143000052 ], [ 156.205821160000028, 56.854315497000073 ], [ 156.461274804000027, 56.948406315000057 ], [ 156.552093946000014, 57.108954169000071 ], [ 156.683848504000025, 57.048325914000031 ], [ 157.00128759100005, 57.425505311000052 ], [ 156.930674675000091, 57.658433335000041 ], [ 156.820078972000033, 57.735988674000055 ], [ 156.749034050000091, 57.729559637000079 ], [ 156.981455925000091, 57.857123114000046 ], [ 157.24187259200005, 57.770493882000039 ], [ 157.469899936000047, 57.803941148000035 ], [ 157.639659050000091, 58.024969794000071 ], [ 157.947032097000033, 57.983099677000041 ], [ 158.224619988000086, 58.025458075000074 ], [ 158.338226759, 57.953029690000051 ], [ 158.295258009, 58.02484772300005 ], [ 158.228770379000025, 58.038641669000071 ], [ 159.152517123000052, 58.507879950000074 ], [ 159.236989780000044, 58.467840887000079 ], [ 159.193695509, 58.541978257000039 ], [ 159.503672722000033, 58.696600653000075 ], [ 159.72779381600003, 58.883042710000041 ], [ 159.729665561000047, 59.011297919000071 ], [ 159.803477410000028, 59.096380927000041 ], [ 160.336273634, 59.361070054000038 ], [ 160.49732506600003, 59.552476304000038 ], [ 160.846853061000047, 59.617987372000073 ], [ 161.283895958000016, 59.870533943000055 ], [ 161.466655284000012, 60.032238907000078 ], [ 161.897214502, 60.202960662000066 ], [ 161.948050444000046, 60.270097504000034 ], [ 161.893144038000059, 60.30310640600004 ], [ 161.938555114, 60.416787772000077 ], [ 162.206228061000047, 60.538031317000048 ], [ 162.753672722000033, 60.64594147300005 ], [ 162.916688331000046, 60.760006461000046 ], [ 163.324820507000027, 60.804664759000048 ], [ 163.314789259, 60.721747137000079 ], [ 163.43623420599999, 60.831511807000084 ], [ 163.751039605000074, 60.883058333000065 ], [ 163.77426304700009, 60.918520022000052 ], [ 163.734141472000033, 60.938544012000079 ], [ 163.487303348000069, 61.001664093000045 ], [ 163.6182050110001, 61.059158043000082 ], [ 163.666256507000071, 61.144859608000047 ], [ 163.932790561000047, 61.235296942000048 ], [ 164.028819207000083, 61.346625067000048 ], [ 163.952321811000047, 61.434515692000048 ], [ 163.751475457000083, 61.443304755000042 ], [ 163.866056571000058, 61.646523696000031 ], [ 164.044815335000067, 61.68343317700004 ], [ 164.127194414000087, 62.26237935100005 ], [ 164.418061348000037, 62.353483483000048 ], [ 164.538312870000027, 62.451109514000052 ], [ 165.225433790000011, 62.382879950000074 ], [ 165.296885613000086, 62.32257721600007 ], [ 165.287282748000052, 62.366115627000056 ], [ 165.123782056000096, 62.450613973000031 ], [ 165.650889519000089, 62.459173895000049 ], [ 165.11002850300008, 62.485325793000072 ], [ 164.765657525000051, 62.558323291000079 ], [ 164.5979370660001, 62.673065416000043 ], [ 164.446918688000096, 62.689418849000049 ], [ 164.05512614700001, 62.656095813000036 ], [ 163.90840567500004, 62.584373612000036 ], [ 163.763869129, 62.602200692000054 ], [ 163.475535819000015, 62.545069537000074 ], [ 163.398933680000027, 62.575901669000075 ], [ 163.167730730000017, 62.43205473900008 ], [ 163.368918351000048, 62.327669530000037 ], [ 163.23152305799999, 62.31139896600007 ], [ 163.091486597000085, 62.226638062000063 ], [ 163.150406726000028, 62.113302478000037 ], [ 163.105023220000021, 62.079971173000047 ], [ 163.193123654000033, 62.066623191000076 ], [ 163.026242762000038, 61.920971145000067 ], [ 163.058382361000099, 61.898198572000069 ], [ 162.976734166000028, 61.799570369000037 ], [ 163.343387025000084, 61.705686053000079 ], [ 163.326549085000011, 61.657855754000082 ], [ 163.112096768000015, 61.615925856000047 ], [ 163.075938347000033, 61.585150458000044 ], [ 163.112069141, 61.548096686000065 ], [ 163.017283612000028, 61.516584564000084 ], [ 162.859798357000045, 61.602535571000033 ], [ 162.94318783599999, 61.650097488000085 ], [ 162.838817237000058, 61.707571198000039 ], [ 162.622666721000087, 61.659068809000075 ], [ 162.774839956000051, 61.593885395000086 ], [ 162.510458947200391, 61.658359879198308 ], [ 162.477555779775344, 61.75116648984158 ], [ 162.423708937917127, 61.767108670129005 ], [ 162.46380984914515, 61.827492581417459 ], [ 162.311157667792031, 61.934204413203076 ], [ 162.506081170709422, 61.972083238150901 ], [ 162.531816033682958, 62.092334295891021 ], [ 162.274570754036972, 62.125407213072378 ], [ 162.1629496598988, 62.186437080406904 ], [ 162.728599887674591, 62.290306708287915 ], [ 162.770664503663852, 62.496909085186076 ], [ 162.694596796305063, 62.583518784963928 ], [ 162.818620233037223, 62.70826569300732 ], [ 162.68043745272621, 62.706973781814554 ], [ 162.547525669973652, 62.844743150076283 ], [ 162.277361281997514, 62.916883449711406 ], [ 162.322216425047941, 63.032121894110105 ], [ 162.294104446163146, 63.067261867940829 ], [ 162.379887322741638, 63.118938300362231 ], [ 162.591140577775377, 63.131340643855594 ], [ 162.596721632797085, 63.178779609291496 ], [ 162.755781692371102, 63.184308987469763 ], [ 162.805597771919565, 63.246165677104273 ], [ 162.673926222617069, 63.380524399781223 ], [ 162.964864537068706, 63.498837592081202 ], [ 162.977060174987059, 63.626271674398197 ], [ 162.86812625602181, 63.657251694709885 ], [ 162.721571893627925, 63.79765656220053 ], [ 162.814692825313614, 63.881604926126386 ], [ 162.893654413420336, 63.879124457427736 ], [ 162.868229607910052, 63.907830716414423 ], [ 162.929104445613575, 63.945451158044477 ], [ 162.894791294982269, 64.017539780836159 ], [ 162.829162226355606, 64.023947659057171 ], [ 162.78720096315385, 64.143216864866417 ], [ 162.942230258619475, 64.199621690688446 ], [ 163.149762812403765, 64.181819160226041 ], [ 163.255906203408472, 64.320673733206206 ], [ 163.460854933907967, 64.385579332320276 ], [ 163.351921014942832, 64.482834378203961 ], [ 163.169916620355707, 64.552261664244384 ], [ 163.158754511211669, 64.631404121303149 ], [ 163.259006788832153, 64.717807115505934 ], [ 163.116483188748134, 64.800541083504186 ], [ 163.345203078359305, 64.818472805175816 ], [ 163.520282830788005, 64.931437486450818 ], [ 163.872819451556438, 64.865395005774872 ], [ 164.187838982582889, 64.934124660724478 ], [ 164.797930943158462, 64.771602281420144 ], [ 164.850744257141741, 64.695896308367878 ], [ 164.931876255584712, 64.684940903899587 ], [ 165.022516717672374, 64.698893541004111 ], [ 165.028407831056484, 64.84239899391838 ], [ 165.262708774790099, 64.850615546370364 ], [ 165.359343703049376, 64.761318671419531 ], [ 165.683975051407401, 64.753980618111029 ], [ 165.742989537137419, 64.67879140899629 ], [ 165.890060662569454, 64.61734813141112 ], [ 165.819780714908006, 64.590011297982983 ], [ 165.871457147329465, 64.554664619476569 ], [ 166.198568964386141, 64.608976549328247 ], [ 166.806800572088719, 64.532934679491859 ], [ 167.236955193827043, 64.623652655945307 ], [ 167.372554152652015, 64.493789780873669 ], [ 167.508359817051883, 64.47761505838821 ], [ 167.714135369851419, 64.340724189269906 ], [ 168.025744257091674, 64.285998847368887 ], [ 168.151834752271952, 64.290985623187908 ], [ 168.223044875020946, 64.345943509085657 ], [ 168.498686965231173, 64.317366441308195 ], [ 168.624984165986461, 64.214426988514674 ], [ 168.777946404802719, 64.184506334499702 ], [ 168.859698520869983, 64.026583157386767 ], [ 169.112086216805437, 63.952479152990463 ], [ 169.353518508272487, 63.946329658087222 ], [ 169.370468378013129, 63.874447739971174 ], [ 169.546995071265428, 63.815743313503106 ], [ 169.598361444425109, 63.656063137204001 ], [ 169.512888625309756, 63.628571275044294 ], [ 169.492218051621762, 63.568316554965008 ], [ 169.205207146692373, 63.51570994745606 ], [ 168.78755822213418, 63.299599107812526 ], [ 168.777843052015214, 63.241256414751717 ], [ 168.686685825990025, 63.240326240563547 ], [ 168.72223921097077, 63.192008775084901 ], [ 168.604623650660869, 63.188753160030274 ], [ 168.463753696975459, 63.078217272409177 ], [ 168.925741002445193, 62.943806871090203 ], [ 169.126658969735558, 62.972538968498554 ], [ 169.842480911065081, 62.655349026236536 ], [ 170.07833214661116, 62.661291816464143 ], [ 169.986141391811771, 62.545019843291129 ], [ 170.0907344910039, 62.487374783119719 ], [ 170.040608352193658, 62.44711884226075 ], [ 170.261576776446987, 62.285397446834679 ], [ 170.423220656608009, 62.31371613219369 ], [ 170.847690871436498, 62.248293769142094 ], [ 171.078271112122025, 62.289324856356984 ], [ 171.031865676359757, 62.336092027325151 ], [ 171.217590773994971, 62.368544826882214 ], [ 171.259655389984232, 62.326015122899548 ], [ 171.358047317429737, 62.356504217695488 ], [ 171.48558475163486, 62.311649075544381 ], [ 171.856724887643395, 62.381412259268302 ], [ 172.054748976883729, 62.466523343177698 ], [ 172.293907506126402, 62.403374742350422 ], [ 172.487177361745808, 62.440065008893043 ], [ 172.852529738956264, 62.331492825133751 ], [ 172.903172641704032, 62.39272939714391 ], [ 173.171476678605814, 62.395261541786681 ], [ 173.503859491422304, 62.534090278143765 ], [ 173.68762088429628, 62.534684557346395 ], [ 173.806373326168, 62.513600572508381 ], [ 173.87241580594457, 62.440530096886448 ], [ 174.079845006042092, 62.447041327894965 ], [ 174.093384231097275, 62.339812731272502 ], [ 174.010391880680686, 62.278472805575461 ], [ 174.112194451912387, 62.18850413705627 ], [ 174.107336868201855, 62.078485012473323 ], [ 174.335126580926953, 62.08866526968643 ], [ 174.467831659003764, 61.983607083400159 ], [ 174.450261671638827, 61.913172106107766 ], [ 174.512376743691675, 61.87162425405603 ], [ 174.44530073514079, 61.853615017119296 ], [ 174.453570079595465, 61.814805667247697 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-X01~", "NAME_1": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.381195509000065, 68.792263088000084 ], [ 67.393077019000032, 68.757310289000031 ], [ 67.115814649000072, 68.79836660400008 ], [ 67.23560631600003, 68.820379950000074 ], [ 67.381195509000065, 68.792263088000084 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-BA", "NAME_1": "Bashkortostan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.408413526962647, 56.329120185448176 ], [ 57.410790642873849, 56.235379137037512 ], [ 57.4776599467491, 56.178896795950322 ], [ 57.45533572756176, 56.13029511232952 ], [ 57.537191197315849, 56.100193590261938 ], [ 57.802084587733532, 56.150629788334015 ], [ 57.907194451762507, 56.115489814503292 ], [ 58.07938032434248, 56.141017971002555 ], [ 58.299935337445845, 56.114042874578956 ], [ 58.351611768967928, 56.058955797472038 ], [ 58.455067986598294, 56.147219142749236 ], [ 58.564725375975286, 56.162412014203085 ], [ 58.824347772431736, 56.053994859175361 ], [ 58.952712029836277, 56.070117905716756 ], [ 59.026299269395736, 56.169388333205006 ], [ 59.288815544801537, 56.134661770524247 ], [ 59.28137413870553, 56.054821682374723 ], [ 59.173473749413972, 56.005496528342064 ], [ 59.229801059970896, 55.90578685218145 ], [ 59.153629998925283, 55.80519867597809 ], [ 59.316617466223079, 55.767707425557205 ], [ 59.279617141317999, 55.693629259582622 ], [ 59.344316033957796, 55.643994046288185 ], [ 59.239722934765609, 55.58435944293393 ], [ 59.436713495231572, 55.632625231569136 ], [ 59.498001743185853, 55.579889431052379 ], [ 59.641352167368609, 55.565342516543865 ], [ 59.475057407273482, 55.46754486830099 ], [ 59.201275669036875, 55.450104072145166 ], [ 59.159211053047613, 55.331558335848513 ], [ 58.997360467311694, 55.24417348881542 ], [ 58.925426874150901, 55.32644236882021 ], [ 58.846568637932251, 55.304324856107201 ], [ 58.900415479790524, 55.268254706289611 ], [ 58.735257603055913, 55.26458568008502 ], [ 58.729883253609216, 55.226345119931295 ], [ 58.802953729231206, 55.213632718075473 ], [ 58.755514763795304, 55.163351548734965 ], [ 58.658776482748465, 55.189344794126896 ], [ 58.575474073969303, 55.143817857508111 ], [ 58.755824823057083, 55.111726793156947 ], [ 58.819696893396895, 55.031524969801467 ], [ 58.619502393820369, 54.949669500946698 ], [ 58.533306105192594, 54.957782701510439 ], [ 58.523487583185386, 55.021551419062689 ], [ 58.387371861322322, 54.999795641555579 ], [ 58.433467237822754, 55.056898098468423 ], [ 58.364014113360611, 55.08438995972881 ], [ 58.372385695443484, 55.154979967551412 ], [ 58.299005160559659, 55.173686835578962 ], [ 58.141495396395385, 55.113690497018808 ], [ 58.193481887179303, 55.08402822542223 ], [ 58.089302199137137, 55.020104479138354 ], [ 58.105735304940367, 54.957110907942024 ], [ 58.000832147385665, 54.916725775873829 ], [ 57.96176476403258, 54.946310533104565 ], [ 58.031321242181548, 55.074674791408484 ], [ 57.963831821581266, 55.167123927727062 ], [ 58.135397577436208, 55.215493069149773 ], [ 57.916599561720375, 55.292956041388152 ], [ 57.425363396703347, 55.325512192833401 ], [ 57.256691521596395, 55.258022773132438 ], [ 57.215247023231484, 55.223244534507614 ], [ 57.239638299068247, 55.157563788138305 ], [ 57.136905551849736, 55.092141425086652 ], [ 57.244289178103031, 54.951219794557858 ], [ 57.154268832740399, 54.86336985953136 ], [ 57.186721633196782, 54.802288316252771 ], [ 57.581322869954477, 54.673252265279814 ], [ 57.580082634705775, 54.634856676394463 ], [ 57.747204217100887, 54.579356188137524 ], [ 57.742863397327881, 54.500601304706436 ], [ 57.961144647307606, 54.392365016832059 ], [ 58.354195591353403, 54.546593329318682 ], [ 58.613817986910533, 54.470267239541442 ], [ 59.061439243226459, 54.631859442858968 ], [ 59.227837355209772, 54.611188870070293 ], [ 59.411598748983067, 54.707203680705277 ], [ 59.631533643562761, 54.911067206486337 ], [ 59.805993280165694, 54.846368312947277 ], [ 59.943969354002434, 54.857427070203073 ], [ 59.919164667015764, 54.832208971167063 ], [ 59.974251743223363, 54.795622057412004 ], [ 59.869968703293011, 54.613307604462364 ], [ 59.679489373835509, 54.498146674429449 ], [ 59.746255324023934, 54.447142036475782 ], [ 59.666673618292805, 54.339680894957326 ], [ 59.802892693842693, 54.254466458260424 ], [ 59.727031691159596, 54.194056708550249 ], [ 59.728995395920776, 54.138659573080815 ], [ 59.534898716202747, 54.19754486850087 ], [ 59.322198521244729, 54.181551012269381 ], [ 59.153836703600973, 53.984198717496781 ], [ 58.955812616159278, 53.974793605740274 ], [ 58.923359815702895, 53.935157783404975 ], [ 58.94754438686391, 53.899707750312416 ], [ 58.871890089755823, 53.750517890488254 ], [ 58.907133417273371, 53.654089666904554 ], [ 58.82093712774622, 53.59564362195556 ], [ 58.9022758317642, 53.548824775043329 ], [ 58.822797478820576, 53.21137767204192 ], [ 58.891423780982677, 53.188381660185428 ], [ 58.907443474736567, 53.055159817271715 ], [ 59.027642857431886, 53.014955553256129 ], [ 58.836026646412563, 53.000822048998316 ], [ 58.747453240974266, 52.853518377770911 ], [ 58.78414350841615, 52.724766546738692 ], [ 58.723682081862535, 52.645055649798394 ], [ 58.83850711511127, 52.540565904293032 ], [ 58.766056756214311, 52.516691393293115 ], [ 58.827965121792886, 52.432717190046276 ], [ 58.813495720750893, 52.362643947959782 ], [ 58.94103315585545, 52.299236966512751 ], [ 58.690505811893672, 52.265285550187969 ], [ 58.5989351738192, 52.170924384152954 ], [ 58.694949986252823, 52.058011379721393 ], [ 58.64037967308343, 52.021579494697903 ], [ 58.572373487646303, 51.788027858898545 ], [ 58.159788853272914, 51.739219468803412 ], [ 58.091679315048339, 51.794564928328725 ], [ 57.677957798213811, 51.868462226250699 ], [ 57.633309360738394, 51.764747626201938 ], [ 57.422366164067171, 51.725060126123878 ], [ 57.392807245258155, 51.648113918722345 ], [ 57.197677035866491, 51.572097887307621 ], [ 57.020220168426022, 51.66537384682556 ], [ 56.99551883332748, 51.73089956356398 ], [ 56.799355096060822, 51.75208690029018 ], [ 56.884311151238592, 51.69059194586157 ], [ 56.889685499785969, 51.624756170760634 ], [ 56.780131463196426, 51.592200019315385 ], [ 56.714605747357325, 51.720977687869947 ], [ 56.753776482598539, 51.768830064455869 ], [ 56.607945590616509, 51.822005112745728 ], [ 56.619521111809831, 51.888461005471015 ], [ 56.737136672119675, 51.905178331214984 ], [ 56.65073367701757, 51.960342922687687 ], [ 56.682876418212118, 52.051810207974711 ], [ 56.587895134552809, 52.060595201207548 ], [ 56.621691522146023, 52.123795477978888 ], [ 56.419843377969471, 52.161312567720813 ], [ 56.45643029172453, 52.196865952701557 ], [ 56.324552035947647, 52.122761949204573 ], [ 56.238769159369156, 52.121573390799313 ], [ 56.190916781883971, 52.172681383339125 ], [ 56.451366000640405, 52.308822944523229 ], [ 56.443407830606873, 52.425715034421273 ], [ 56.359588656990923, 52.502118639463617 ], [ 56.427904900790509, 52.595136217462425 ], [ 56.270601841301925, 52.554208482135721 ], [ 56.054284295184061, 52.644745592335198 ], [ 56.077642043145772, 52.603611152332803 ], [ 55.930570916814304, 52.51503774689445 ], [ 55.861324497027908, 52.373495998741305 ], [ 55.768720331078384, 52.344014594298073 ], [ 55.71022260928595, 52.390910956475409 ], [ 55.535762973582337, 52.388688870195153 ], [ 55.495041944729962, 52.525321356895063 ], [ 55.543411086152673, 52.536586818826606 ], [ 55.544961378864514, 52.593844306269716 ], [ 55.455147739076892, 52.59043366248352 ], [ 55.411636183163296, 52.657613022922646 ], [ 55.24906212791484, 52.647794500915438 ], [ 55.285235629620558, 52.73264720330576 ], [ 55.351794875133351, 52.68815379546129 ], [ 55.420214470821122, 52.712855130559774 ], [ 55.353758578995212, 52.765358385281218 ], [ 55.421868117219788, 52.786907457213374 ], [ 55.406675245765939, 52.837111111288721 ], [ 55.263944940106853, 52.862458401533956 ], [ 55.161832309613374, 52.823184313505237 ], [ 54.962464634135529, 53.09725027078332 ], [ 54.926601189892949, 53.219542548549725 ], [ 54.822318149962598, 53.273027656101419 ], [ 54.639590284963674, 53.237422594277291 ], [ 54.563625930392334, 53.263829250819242 ], [ 54.56817345574035, 53.327882189211664 ], [ 54.519597608742629, 53.359792385510161 ], [ 54.108356560606751, 53.416558946538146 ], [ 53.877983026395498, 53.658017076426916 ], [ 53.65990848199084, 53.746280423502697 ], [ 53.457130160928159, 54.066157538239793 ], [ 53.430258417292123, 54.265680244247847 ], [ 53.347782830812946, 54.381590481315641 ], [ 53.425917595720421, 54.498792630475464 ], [ 53.416822544125068, 54.559486599227171 ], [ 53.605648228083226, 54.713714911713794 ], [ 53.578673129861045, 54.822183742685525 ], [ 53.64275190577581, 54.899930934864699 ], [ 53.499298129704869, 54.891326808785152 ], [ 53.413515253126377, 54.988736884299726 ], [ 53.263756951621986, 55.014110012067363 ], [ 53.143867629087765, 55.131828925164712 ], [ 53.418372836836909, 55.222004300158289 ], [ 53.591385531716867, 55.211927394833367 ], [ 53.713962030323387, 55.333470363766253 ], [ 53.90712853405455, 55.393156643064572 ], [ 54.00314334468959, 55.554361274553173 ], [ 54.180806918604389, 55.628129381265921 ], [ 54.230933058313951, 55.692466538699762 ], [ 54.095230746701588, 55.772875068529572 ], [ 54.026294387076291, 55.7637800160349 ], [ 54.039936964918979, 55.802072252132689 ], [ 53.96552290216016, 55.782357692853225 ], [ 53.993841586619908, 55.84775421838242 ], [ 53.631693150318597, 55.906691188847276 ], [ 53.837778762379969, 56.038646958989943 ], [ 54.005830518963251, 56.028880112926856 ], [ 54.117244906627093, 56.158226223161648 ], [ 54.34575809066331, 56.252587389196606 ], [ 54.371389600849398, 56.299251207377267 ], [ 54.320643345314124, 56.34482981994023 ], [ 54.430197381004291, 56.342685248025759 ], [ 54.559181756033183, 56.538409735720677 ], [ 54.930218540153476, 56.386532700723535 ], [ 54.968355746620375, 56.320438544103524 ], [ 55.172374302032381, 56.317751369829807 ], [ 55.224360792816299, 56.364156806491394 ], [ 55.412152948000141, 56.334597886783001 ], [ 55.913621047073661, 56.466346951350715 ], [ 56.07330122337271, 56.28948436131418 ], [ 56.266984491041399, 56.300827338510828 ], [ 56.393281690897311, 56.388289699909706 ], [ 56.528467237672828, 56.383302924090628 ], [ 56.558232862956231, 56.360229396969089 ], [ 56.500975376412441, 56.322402248864648 ], [ 56.574045851135111, 56.263232734403118 ], [ 56.737653436057201, 56.222976793544149 ], [ 56.896506789156945, 56.100684515777743 ], [ 57.165637648358768, 56.159569811197798 ], [ 57.267026809339768, 56.301912543229264 ], [ 57.408413526962647, 56.329120185448176 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-SVE", "NAME_1": "Sverdlovsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.637340122148885, 56.098824163804068 ], [ 57.459986606596601, 56.125463365242069 ], [ 57.420092400943531, 56.319792588956773 ], [ 57.317463005613206, 56.373355210874251 ], [ 57.380921664802941, 56.56721934749487 ], [ 57.353946568379399, 56.60729442030123 ], [ 57.425776808752687, 56.659125882353578 ], [ 57.310641717141493, 56.724393215774285 ], [ 57.218657667917, 56.85301585649654 ], [ 57.33834028487621, 56.924639391294818 ], [ 57.559618768391431, 56.88831085905889 ], [ 57.749167921862067, 56.934923001295431 ], [ 57.88218305920077, 57.06773143215986 ], [ 57.996077914663999, 57.089254666569559 ], [ 57.971376581364098, 57.057706204577642 ], [ 58.071938918246474, 57.050626532788215 ], [ 58.02305301288618, 57.114007676712902 ], [ 58.105115187316017, 57.127055976252279 ], [ 57.989049919718013, 57.193098456028906 ], [ 58.038555942702544, 57.236506660054317 ], [ 57.937993604920905, 57.331953029908391 ], [ 57.997318149912644, 57.486000475241724 ], [ 57.97530398908782, 57.540932521818377 ], [ 58.053025343744594, 57.605114651420024 ], [ 58.1217549986942, 57.560827949150507 ], [ 58.170744255942623, 57.685962429022879 ], [ 58.436464471358249, 57.675963039862381 ], [ 58.444836053441065, 57.597208157330556 ], [ 58.52317752482287, 57.576124173391861 ], [ 58.829825473766562, 57.726244208303569 ], [ 58.860417922249269, 57.83393789291938 ], [ 58.764299757927461, 57.842774562995658 ], [ 58.604619581628356, 57.99563344992373 ], [ 58.671798943866122, 58.101440945043578 ], [ 58.839127231836244, 58.201021429994967 ], [ 58.997257115423508, 58.203346869962047 ], [ 59.202515904285519, 58.304606838834502 ], [ 59.285818312165361, 58.417261460847726 ], [ 59.456040479984154, 58.492760729224244 ], [ 59.388551060283191, 58.590119126996058 ], [ 59.421520623777724, 58.680346177933757 ], [ 59.195901319590178, 58.707062892838223 ], [ 59.172853630890302, 58.755483710205056 ], [ 59.082729933639484, 58.769332994522074 ], [ 59.066710239885651, 58.890462552304939 ], [ 59.181225212973175, 58.952991035507864 ], [ 59.091101515722357, 59.021979071976546 ], [ 59.173990513351498, 59.168378403840222 ], [ 58.669525180742482, 59.293228665570439 ], [ 58.518526645788029, 59.437302558366355 ], [ 58.310890741014873, 59.468050035580632 ], [ 58.400290968753154, 59.546830756534177 ], [ 58.451037225187747, 59.705038154487227 ], [ 58.581881952190315, 59.715838528425309 ], [ 58.675106235764133, 59.859240628552129 ], [ 58.805020785880515, 59.862806301969215 ], [ 58.855870396001933, 59.932156074543173 ], [ 58.999530877647885, 59.931303412922148 ], [ 58.951265089911942, 59.995046292052734 ], [ 59.051414015644298, 60.043002021426105 ], [ 59.04562625504758, 60.113230292244168 ], [ 59.18690962078233, 60.270688382263018 ], [ 59.1643786969193, 60.36685822252889 ], [ 59.233521763018928, 60.475223700713173 ], [ 59.390101352995032, 60.582607326966524 ], [ 59.469476353151151, 60.941241766694134 ], [ 59.372944776780002, 60.970490628040011 ], [ 59.356821730238607, 61.151048081803481 ], [ 59.269591912836461, 61.20675527653475 ], [ 59.257602979593798, 61.281117662450129 ], [ 59.311346469563887, 61.373205065361446 ], [ 59.417799919830429, 61.42896393513746 ], [ 59.400953403776555, 61.60492218670953 ], [ 59.343695917232765, 61.664505113220343 ], [ 59.391858351281883, 61.757600206484312 ], [ 59.333463983176273, 61.825942287806299 ], [ 59.485392694117536, 61.993270575776421 ], [ 59.984276970805524, 61.902785143319704 ], [ 59.978282504633853, 61.756747544863288 ], [ 60.056623976015658, 61.721194159882543 ], [ 60.430864699246456, 61.747084052487025 ], [ 61.165186802129199, 61.682746894153809 ], [ 62.620085077264491, 61.210734361101856 ], [ 62.85976037044469, 61.001263942776689 ], [ 62.759714796600576, 60.859437975582068 ], [ 62.8811544127459, 60.639968167197139 ], [ 63.220048455671645, 60.300505683490485 ], [ 63.1976208836968, 60.231052558129022 ], [ 63.637697381129215, 60.122842109575686 ], [ 63.795517206353964, 59.791596178320958 ], [ 63.825076125163037, 59.477041734388479 ], [ 64.028681267626382, 59.395031235902763 ], [ 64.32427046111286, 59.411205960186862 ], [ 65.038232048670068, 59.326870021734067 ], [ 65.098796828011189, 59.23734060278656 ], [ 65.200289340880374, 59.21537811970444 ], [ 65.382293736366819, 58.919091295127146 ], [ 65.668994582034315, 58.663292955405552 ], [ 65.934508090975612, 58.614355374101194 ], [ 65.990215284807505, 58.319618842235741 ], [ 66.197024367280676, 58.040281887399146 ], [ 65.84965538858529, 57.954292304346325 ], [ 65.800459425761858, 57.89408926021116 ], [ 65.662793410287634, 57.887009589321053 ], [ 65.655041944929792, 57.836108303255571 ], [ 65.539596795855402, 57.779522610280196 ], [ 65.472727491980152, 57.77670624479731 ], [ 65.427872348929725, 57.83393789291938 ], [ 64.839277785241563, 57.640719713244152 ], [ 65.002265253438679, 57.592970690345055 ], [ 64.842585077139574, 57.451067206086691 ], [ 64.884029574605165, 57.350091458054294 ], [ 64.829252556760082, 57.304719550167079 ], [ 64.989966261833501, 57.237333482354302 ], [ 64.990793085032806, 57.053675442267831 ], [ 65.067997673953471, 56.907844550285745 ], [ 65.233258905274226, 56.92758494708761 ], [ 65.231605258875561, 56.86826040299519 ], [ 65.140344680062924, 56.77012685796808 ], [ 64.955032992678412, 56.773175768347016 ], [ 64.838244255567929, 56.841802070509118 ], [ 64.327991164160892, 56.749430446757685 ], [ 64.363854608403415, 56.663363349339079 ], [ 64.207585076789826, 56.588742581005306 ], [ 64.237454054860734, 56.519392809330668 ], [ 64.20283084496748, 56.473710843080937 ], [ 63.846263461889237, 56.49029897671636 ], [ 63.408460727580461, 56.624140937254424 ], [ 63.356680943270874, 56.514586899765561 ], [ 63.306038038724466, 56.577580470961948 ], [ 63.001147088067626, 56.597992662231547 ], [ 62.624219190563167, 56.498360501336037 ], [ 62.602618442686946, 56.567348537804776 ], [ 62.542157017032707, 56.577735501492157 ], [ 62.332970818648334, 56.469163315934281 ], [ 62.252562289717844, 56.362709866567059 ], [ 62.074898715803045, 56.287882391758956 ], [ 62.071798130379364, 56.133524888962427 ], [ 61.851656529325339, 56.185666409377291 ], [ 61.641953566104178, 56.319405016228473 ], [ 61.537050409448796, 56.297442532247032 ], [ 61.384914992033202, 56.366999010396 ], [ 61.267299431723359, 56.331393948571815 ], [ 61.150097284362175, 56.375784002729517 ], [ 61.084158155574414, 56.32570953986334 ], [ 61.160639275881863, 56.228661201353304 ], [ 61.072375929705345, 56.199412340007484 ], [ 60.719012485737608, 56.238376370573008 ], [ 60.199354281674744, 56.20799062856463 ], [ 59.920818311615733, 56.264679674327454 ], [ 59.788733351163216, 56.232640285920411 ], [ 59.66140262163367, 56.252277329934827 ], [ 59.701296828186059, 56.30607249584898 ], [ 59.209233839969727, 56.353666490016451 ], [ 59.115286085984053, 56.312428697226551 ], [ 59.165412224794295, 56.255377916257828 ], [ 59.134613071635897, 56.205975246960065 ], [ 59.002631463071509, 56.215225328186307 ], [ 59.006972283743892, 56.109650377063247 ], [ 58.925220167676571, 56.061229559696415 ], [ 58.746523064987457, 56.062754014885854 ], [ 58.54302127531156, 56.1630838077715 ], [ 58.351611768967928, 56.058955797472038 ], [ 58.299935337445845, 56.114042874578956 ], [ 58.07938032434248, 56.141017971002555 ], [ 57.907194451762507, 56.115489814503292 ], [ 57.802084587733532, 56.150629788334015 ], [ 57.637340122148885, 56.098824163804068 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KHM", "NAME_1": "Khanty-Mansiy" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.673288202088827, 61.935496324395842 ], [ 59.512057733077881, 61.974382839696261 ], [ 59.404053990099555, 62.108043932181715 ], [ 59.50740685404304, 62.306791490035209 ], [ 59.602904900740555, 62.375572821828257 ], [ 59.643729282380434, 62.510267442188649 ], [ 59.510817498728557, 62.547758694408174 ], [ 59.398679640652858, 62.718032538171087 ], [ 59.476711052772828, 62.906754869341739 ], [ 59.285094841753505, 62.964787503140712 ], [ 59.223186476174931, 63.07191274697567 ], [ 59.291606072762022, 63.123511664131968 ], [ 59.26225385862864, 63.199424344557826 ], [ 59.333980747113742, 63.285930691548174 ], [ 59.287265252989016, 63.337167874397835 ], [ 59.348966912992637, 63.364065457354968 ], [ 59.318891229346718, 63.398249416777105 ], [ 59.493764276200352, 63.610536201484479 ], [ 59.572932569882141, 63.927157701166948 ], [ 59.770129835923171, 63.999608059164586 ], [ 59.856429478237828, 64.131331285310523 ], [ 59.588435499698505, 64.232642931026419 ], [ 59.633704054798272, 64.336409207019244 ], [ 59.606108839851061, 64.454153958538313 ], [ 59.482292107794535, 64.486916816457892 ], [ 59.704087355247225, 64.667680975796372 ], [ 59.640938755319269, 64.718995673011875 ], [ 59.650860630113982, 64.777855130010209 ], [ 60.147367791790145, 65.064788520573757 ], [ 60.420322706827449, 65.052567044233683 ], [ 60.645218539703819, 64.891233222435233 ], [ 60.80810265511343, 65.043782050101527 ], [ 60.979048293344022, 65.048277900404742 ], [ 61.106689081236084, 65.160829168731141 ], [ 61.240531039975508, 65.191886705207253 ], [ 61.331378207638124, 65.28201040335739 ], [ 61.253760206668176, 65.31942414031181 ], [ 61.583042434061042, 65.548919176278957 ], [ 61.870983514077864, 65.699013372768889 ], [ 62.018468051559296, 65.717125963392448 ], [ 62.278400506378262, 65.62291982698838 ], [ 62.325012647715482, 65.540702622927654 ], [ 62.410588819618283, 65.515407010425179 ], [ 62.373588494713204, 65.448873603334107 ], [ 62.481282180228391, 65.349293118382661 ], [ 62.816662224781794, 65.291570542946147 ], [ 62.801469354227265, 65.051430161772544 ], [ 62.67765262217074, 64.891233222435233 ], [ 62.810461053035112, 64.835732734178293 ], [ 62.806430291624622, 64.735170397295974 ], [ 62.592593215104785, 64.64044749605506 ], [ 62.53564578602419, 64.554767971364754 ], [ 62.89986128077345, 64.476607368035559 ], [ 63.236998325412344, 64.523555406157016 ], [ 63.463134392638096, 64.455187486413365 ], [ 63.505302362314126, 64.375192369532215 ], [ 63.413421664977818, 64.328218492089718 ], [ 63.487939081423463, 64.288530992011658 ], [ 63.878199496609454, 64.282562364261651 ], [ 64.00201622866598, 64.355607001461919 ], [ 64.477025995253427, 64.36020620455264 ], [ 64.601152784773149, 64.4373074406858 ], [ 65.175898065043611, 64.445782376455497 ], [ 65.399657017257482, 64.571356105899554 ], [ 66.019050734104042, 64.594817205749393 ], [ 66.465638461645653, 64.511979885863013 ], [ 66.681645949401002, 64.557455146537734 ], [ 66.936307407560776, 64.487046006767741 ], [ 66.887318150312353, 64.378137926224269 ], [ 66.796367628962855, 64.326151435440352 ], [ 66.818691848150252, 64.225614936080433 ], [ 67.170918409656849, 64.162853908880777 ], [ 67.166164177834503, 64.125130113563841 ], [ 67.280679151821346, 64.080610867297651 ], [ 67.679104445313897, 64.07903473616409 ], [ 67.798890415060555, 64.031647447571629 ], [ 68.425002069389961, 64.295972399006985 ], [ 68.882131789350581, 64.222643540966601 ], [ 68.990445590691422, 64.329613756069932 ], [ 68.85918745343821, 64.435705471130575 ], [ 69.014836867427448, 64.471827297791549 ], [ 69.230844354283477, 64.470018621761938 ], [ 69.389594353696452, 64.388524889012388 ], [ 69.732932570082028, 64.394157619978159 ], [ 69.99989301894766, 64.315893662962139 ], [ 70.30685102715313, 64.343566393174456 ], [ 70.472732375198916, 64.251608181472363 ], [ 70.768941685410425, 64.19354971015099 ], [ 70.775762973882081, 64.11432973872644 ], [ 70.558618604564913, 64.000486559207332 ], [ 70.644194777367034, 63.89713369436447 ], [ 70.819377882583183, 63.81638926954912 ], [ 70.913842401405645, 63.692391669439985 ], [ 71.387611931845129, 63.674614977399244 ], [ 71.551012811192265, 63.589968981483253 ], [ 71.60796024027286, 63.185239163456572 ], [ 71.987678663939164, 63.201930649879557 ], [ 72.160794711606627, 63.299237371707306 ], [ 72.655028111058471, 63.280168769373176 ], [ 73.103786248936217, 63.436257432934156 ], [ 73.368059522628812, 63.206943264120298 ], [ 74.24108117065947, 63.172009995864585 ], [ 74.507421502800071, 63.043232327310022 ], [ 74.914528435838633, 63.0320185413226 ], [ 75.363596632978215, 63.107827867162314 ], [ 75.861240676216198, 63.111083483116204 ], [ 76.240235630370023, 63.018841051473316 ], [ 76.297389764126308, 62.949646308530305 ], [ 76.688373650623419, 63.039408271474542 ], [ 77.026234164774849, 62.975019436297941 ], [ 77.158009067764226, 62.791464748998919 ], [ 77.889023878748958, 62.557267158052866 ], [ 78.014700961879839, 62.461459052093574 ], [ 78.379433220566625, 62.56775747272917 ], [ 78.793051384613648, 62.615093085377566 ], [ 79.820068801134255, 62.603724269759198 ], [ 79.914740024632408, 62.792033189779829 ], [ 80.552943964092606, 63.000857652058983 ], [ 80.584156529300344, 63.082558092182182 ], [ 81.114976840708607, 63.115527656576035 ], [ 81.174714796850367, 62.971660468455809 ], [ 81.320752395306783, 62.884844062203683 ], [ 81.339355909647452, 62.825777900529658 ], [ 81.783979934226522, 62.688447780940294 ], [ 82.164938592242208, 62.80944814751399 ], [ 82.749295688944869, 62.75389598331293 ], [ 82.758080682177706, 62.670128486540364 ], [ 83.282906529212937, 62.460528876106707 ], [ 83.798223910804779, 62.560264390689042 ], [ 84.019192335957484, 62.396760159453777 ], [ 84.24284793538385, 62.372575589192081 ], [ 84.289046664671787, 62.276224880873542 ], [ 84.404388461857991, 62.230362047470464 ], [ 84.551252882614392, 62.001487128228348 ], [ 84.537610304771704, 61.911776842127551 ], [ 84.689745721287977, 61.80997426999653 ], [ 85.000527785328984, 61.785427965428255 ], [ 85.272655878066303, 61.682591865422239 ], [ 85.375905389222282, 61.701117866296443 ], [ 85.479568313326979, 61.62786652352122 ], [ 85.721930779881575, 61.574743150276163 ], [ 85.854015741233411, 61.595051987858938 ], [ 85.973905063767631, 61.50833893529358 ], [ 85.950443963917792, 61.464724025693215 ], [ 85.643899366862229, 61.387596951138335 ], [ 85.702087030292205, 61.30618073185525 ], [ 85.671184523446982, 61.28923086211455 ], [ 84.622669711837716, 61.000101222793148 ], [ 84.259591098650219, 60.855510566059763 ], [ 83.988806593949107, 60.82688182233818 ], [ 83.503564895103807, 61.047230129866591 ], [ 83.144206984065022, 61.028213203476525 ], [ 82.407404413382949, 60.72301219355785 ], [ 82.380739374422546, 60.611959540200587 ], [ 82.165352004291549, 60.526280016409601 ], [ 81.83038536998879, 60.644722399019486 ], [ 81.140504999006453, 60.636660875299128 ], [ 81.02754031773145, 60.754741522703057 ], [ 80.723476190273914, 60.796625271539028 ], [ 80.428403761624281, 60.76481842712866 ], [ 80.18573123580785, 60.664721178239745 ], [ 79.373687779167653, 60.662292385485159 ], [ 79.285424432091816, 60.7205317248592 ], [ 79.311779412689702, 60.800656032949519 ], [ 79.185172153572012, 60.837578844388133 ], [ 78.806487257780702, 60.779830431429218 ], [ 78.687838168696487, 60.828948879886866 ], [ 78.474414504225933, 60.777479153040474 ], [ 78.12053429632067, 60.801767076089675 ], [ 77.920443150431026, 60.747455146237996 ], [ 77.702265253238807, 60.82517649999545 ], [ 77.104782341731664, 60.852461656580147 ], [ 77.067575311251574, 60.726319485455861 ], [ 76.970940382992239, 60.710351468545412 ], [ 77.046594680100384, 60.558991197485739 ], [ 76.805885858145814, 60.471141262459241 ], [ 76.752659133012571, 60.377451890892019 ], [ 76.847950474135018, 60.266140856015681 ], [ 76.693954705645126, 60.112610175519137 ], [ 76.756999952785577, 60.065998033282597 ], [ 76.741497022969213, 59.757799790727745 ], [ 76.656334263115696, 59.692739162882049 ], [ 76.645482212334173, 59.585097154210246 ], [ 76.17171268099537, 59.542774155802647 ], [ 75.996219517416762, 59.422471422118406 ], [ 75.895140414798277, 59.426398830741391 ], [ 75.818659296289468, 59.294520575863828 ], [ 75.628386672406975, 59.237779853257621 ], [ 75.68688439330009, 59.040065823279065 ], [ 75.641615839099643, 58.982394924685991 ], [ 75.159474724778704, 58.650218818343774 ], [ 75.008786249086086, 58.717088121319705 ], [ 74.899128858809775, 58.696417548531031 ], [ 74.743066033670459, 58.748093980952433 ], [ 74.100107863287235, 58.739412340507101 ], [ 73.979081659191195, 58.805919908277133 ], [ 73.632642857381938, 58.853513902444604 ], [ 73.444127231786297, 58.81759878225796 ], [ 73.032059361350434, 58.863125718876802 ], [ 73.09324425561789, 58.952267565096008 ], [ 72.949997186021278, 59.0168631049483 ], [ 72.975628697106629, 59.09897695622152 ], [ 72.926122674122098, 59.143961290481116 ], [ 72.647276645700629, 59.106315009530022 ], [ 72.523769972905882, 59.155045885259369 ], [ 72.444291619962257, 59.225816759335942 ], [ 72.437160272228766, 59.303357245940106 ], [ 72.015997349298175, 59.559310615292645 ], [ 71.296454705819997, 59.799089260361029 ], [ 71.187520785955485, 59.908850003424902 ], [ 70.985569288991485, 59.818648790009604 ], [ 70.797570428232632, 59.863013007544225 ], [ 70.398525018015164, 59.817486070026064 ], [ 70.154922316211866, 59.900013333348625 ], [ 69.615627069033962, 59.904870917059156 ], [ 69.535011835427838, 59.98450430053299 ], [ 69.3060852402416, 59.988896796250117 ], [ 69.071370883559382, 59.897403673440749 ], [ 69.295233188560758, 59.782888699453906 ], [ 68.843994581984362, 59.621322332759405 ], [ 68.571349725309517, 59.574245104328099 ], [ 68.35813276641403, 59.282919217148105 ], [ 67.74214969335361, 59.211941637496523 ], [ 67.564486117640172, 59.092930813206408 ], [ 67.070872836711999, 58.924879054824487 ], [ 66.965969680056673, 58.97505687137749 ], [ 66.779004348072192, 58.932010403457298 ], [ 66.77259646985118, 58.682516588269891 ], [ 66.380165643429677, 58.589085598221743 ], [ 65.668994582034315, 58.663292955405552 ], [ 65.382293736366819, 58.919091295127146 ], [ 65.200289340880374, 59.21537811970444 ], [ 65.098796828011189, 59.23734060278656 ], [ 65.019421827855069, 59.333484606429408 ], [ 64.32427046111286, 59.411205960186862 ], [ 64.028681267626382, 59.395031235902763 ], [ 63.841405878178705, 59.463140774127396 ], [ 63.795517206353964, 59.791596178320958 ], [ 63.637697381129215, 60.122842109575686 ], [ 63.1976208836968, 60.231052558129022 ], [ 63.220048455671645, 60.300505683490485 ], [ 62.8811544127459, 60.639968167197139 ], [ 62.759714796600576, 60.859437975582068 ], [ 62.85976037044469, 61.001263942776689 ], [ 62.620085077264491, 61.210734361101856 ], [ 61.165186802129199, 61.682746894153809 ], [ 60.430864699246456, 61.747084052487025 ], [ 60.056623976015658, 61.721194159882543 ], [ 59.978282504633853, 61.756747544863288 ], [ 59.984276970805524, 61.902785143319704 ], [ 59.673288202088827, 61.935496324395842 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-LIP", "NAME_1": "Lipetsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.160164015356997, 53.342170722201047 ], [ 40.106627231861239, 53.275663154431015 ], [ 40.145074496690654, 53.087974352034678 ], [ 40.075104608291042, 52.955682685107831 ], [ 40.083579543161363, 52.813288276232925 ], [ 39.95263146337129, 52.743266710090552 ], [ 39.984154086941544, 52.709806220180894 ], [ 39.951597934596975, 52.658853258171291 ], [ 40.335967238197441, 52.399127508927393 ], [ 40.69232791480141, 52.280530096686562 ], [ 40.698839145809927, 52.219190171888897 ], [ 40.615846795393281, 52.129169827425585 ], [ 40.63196984193462, 52.066486313692394 ], [ 40.512390577762915, 52.035222073439911 ], [ 40.503812290105088, 51.953521634216031 ], [ 40.122440220040119, 51.99238231109473 ], [ 39.738070917338916, 51.924479479344484 ], [ 39.496638624972547, 51.972693590236986 ], [ 39.514415317912551, 52.023853257821543 ], [ 39.44713260288728, 52.082195949983088 ], [ 39.26523156108766, 52.105011094686233 ], [ 39.160535109107968, 52.09299632392117 ], [ 39.035891554751402, 51.988299871941535 ], [ 38.870526970643141, 52.095683499094207 ], [ 38.762006462827969, 52.052378647856301 ], [ 38.687695753756032, 52.100153510076382 ], [ 37.996988559574334, 51.878952541826322 ], [ 37.779017367957124, 51.951971341504191 ], [ 37.747081333236906, 52.016902778140661 ], [ 37.777570428032789, 52.161493434874103 ], [ 38.017039014738714, 52.251746324233466 ], [ 38.038433057939244, 52.344505519813879 ], [ 37.87937300016381, 52.430391750978515 ], [ 37.903764276000516, 52.480569565732822 ], [ 37.77819054475782, 52.511110338271465 ], [ 37.810643345214203, 52.558756009282376 ], [ 37.711838005719358, 52.613016262290671 ], [ 37.808679639553702, 52.640611477237883 ], [ 37.777467075245283, 52.722983710030178 ], [ 37.872758417267107, 52.776262112006862 ], [ 37.790489536362998, 52.845250149374863 ], [ 37.84350955592123, 52.882095445548373 ], [ 37.794933708923509, 52.91209361392913 ], [ 37.905107863137346, 53.068905747901908 ], [ 38.265912713201146, 53.022603664927146 ], [ 38.327511021316582, 52.961832180011072 ], [ 38.472928501249328, 53.041233019488232 ], [ 38.594574822969662, 53.048545234375013 ], [ 38.635502557397103, 53.113605862220766 ], [ 38.576901482817163, 53.167556056866488 ], [ 38.597985466755858, 53.236492418290425 ], [ 38.477269321022334, 53.310027981006499 ], [ 38.753944940006932, 53.376380520044961 ], [ 38.697204217400667, 53.500093899313981 ], [ 38.886443311609526, 53.565412910477392 ], [ 39.047673780620471, 53.547119452700542 ], [ 39.181619093945983, 53.385733954058708 ], [ 39.483616163854833, 53.431829332357779 ], [ 39.511521437164561, 53.525363675193432 ], [ 39.727322219344899, 53.59238800690099 ], [ 39.885658806708534, 53.519265856234256 ], [ 39.903745558011053, 53.422320868713086 ], [ 40.123370396026928, 53.398058784085606 ], [ 40.160164015356997, 53.342170722201047 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-TAM", "NAME_1": "Tambov" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.099289177653418, 52.969583645368914 ], [ 40.145074496690654, 53.087974352034678 ], [ 40.115928989031602, 53.297987371819715 ], [ 40.305478143401558, 53.374546007392325 ], [ 40.38919396333074, 53.345374661311553 ], [ 40.423403762073917, 53.493608506727185 ], [ 40.480971306980223, 53.453533433920825 ], [ 40.686746860679079, 53.564689440065592 ], [ 40.85169803183868, 53.482162176743032 ], [ 40.926835565009299, 53.505364895073797 ], [ 41.166924269339518, 53.431415921207758 ], [ 41.348928663926699, 53.548773098199888 ], [ 41.351099074262834, 53.75330841754942 ], [ 41.400088332410576, 53.783177394720951 ], [ 42.134410435293319, 53.812167874547754 ], [ 42.087488233794943, 53.736306870965279 ], [ 42.121387974175661, 53.688583686487902 ], [ 42.10071740138693, 53.528257555042103 ], [ 42.277760857677436, 53.467744453443743 ], [ 42.313314242658123, 53.435963447455094 ], [ 42.252646112328193, 53.370799465922573 ], [ 42.354241977984884, 53.368215644436418 ], [ 42.55536665174958, 53.207140204157042 ], [ 42.511855095835983, 53.166496690569772 ], [ 42.545134718592351, 53.120478828435182 ], [ 42.920202264123191, 52.962684842531417 ], [ 43.237908970322678, 52.65611440705419 ], [ 43.041641880268514, 52.560590521935012 ], [ 43.096108839751139, 52.514572658901045 ], [ 43.001437616252986, 52.503203844182053 ], [ 43.07957238116046, 52.402744859187862 ], [ 42.919892205760675, 52.369723618849889 ], [ 42.921752556835031, 52.305438137360113 ], [ 42.751530389016239, 52.173766588057561 ], [ 42.751323683441228, 52.077751777422577 ], [ 42.805997349398126, 52.012226061583476 ], [ 42.703057895705285, 51.981840317776403 ], [ 42.651278111395698, 51.81278086994115 ], [ 42.483329705801282, 51.684184068539878 ], [ 42.489220819185448, 51.607702949131749 ], [ 42.4208012225983, 51.636176663222386 ], [ 42.273730096266888, 51.600416571767369 ], [ 42.192391392248908, 51.72630036137258 ], [ 42.11901085826446, 51.71410472345417 ], [ 42.116943800715831, 51.643333849377598 ], [ 41.952199334231864, 51.656382148017713 ], [ 41.500443962818622, 51.800946967228754 ], [ 41.436365186903856, 51.764024155790139 ], [ 41.298905877004586, 51.79466828111623 ], [ 41.278131952327726, 51.736635647317257 ], [ 41.066051874094683, 51.710177313931865 ], [ 40.88756147608126, 51.746557522111914 ], [ 40.937687615790821, 51.89024384217953 ], [ 40.503812290105088, 51.953521634216031 ], [ 40.512390577762915, 52.035222073439911 ], [ 40.63196984193462, 52.066486313692394 ], [ 40.615846795393281, 52.129169827425585 ], [ 40.701836379345423, 52.225804754785599 ], [ 40.683956332718537, 52.289056708400324 ], [ 40.335967238197441, 52.399127508927393 ], [ 39.953148228208136, 52.654357407868076 ], [ 39.984154086941544, 52.709806220180894 ], [ 39.95263146337129, 52.743266710090552 ], [ 40.079858840113332, 52.804167385316532 ], [ 40.099289177653418, 52.969583645368914 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-TOM", "NAME_1": "Tomsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.503564895103807, 61.047230129866591 ], [ 83.988806593949107, 60.82688182233818 ], [ 84.259591098650219, 60.855510566059763 ], [ 84.708349237427342, 60.458945624540888 ], [ 84.78421024011044, 60.36267243148751 ], [ 84.631868117119893, 60.20557607757388 ], [ 84.606236606933805, 60.046025092484001 ], [ 84.529445428263841, 59.979750067811324 ], [ 84.691916131624112, 59.904819241115035 ], [ 85.496311476593348, 59.891590074422368 ], [ 85.968220655958476, 59.955875555912144 ], [ 86.625441521808739, 59.950036119371362 ], [ 87.084121535380518, 59.88275340434609 ], [ 87.190574985647061, 59.689741930245873 ], [ 87.522337680839257, 59.667211005483466 ], [ 87.910634393062765, 59.268139756844278 ], [ 88.621495396095611, 59.293021959096109 ], [ 88.607542758991087, 59.214938870132698 ], [ 88.826547479382612, 59.024459539775933 ], [ 88.391845331396894, 58.914466254514025 ], [ 87.932235141838305, 58.526143703868797 ], [ 88.018121372103622, 58.242646796412487 ], [ 88.15568403479034, 58.106531074549423 ], [ 88.687434523084733, 58.036561184351172 ], [ 88.850835402431812, 57.960648504824633 ], [ 89.338867629237654, 57.947936102968754 ], [ 89.390647414446562, 57.877552802519801 ], [ 89.354370559054018, 57.796291611968286 ], [ 89.38041548128939, 57.637154038927747 ], [ 89.147354771005837, 57.614209703015376 ], [ 89.070666945123378, 57.509771634353399 ], [ 88.872332798419848, 57.444400947245867 ], [ 88.7327030781845, 57.227437445981309 ], [ 88.531268345157969, 57.127882799451584 ], [ 88.529614698759303, 57.095843411044541 ], [ 88.725261672088436, 57.075276191043372 ], [ 88.623975864794261, 56.83296540043284 ], [ 88.543877395125662, 56.783924466341034 ], [ 88.391948684184399, 56.826299139793434 ], [ 87.787851189780554, 56.54641958349697 ], [ 87.620419549922246, 56.639747218958973 ], [ 87.384568312577528, 56.614115708772886 ], [ 87.166700473747824, 56.675558987257432 ], [ 87.138278435601308, 56.654319972788471 ], [ 87.178689406091166, 56.600343939721029 ], [ 87.129803500730929, 56.539960029331837 ], [ 86.867700637374469, 56.563679510700808 ], [ 86.837108188891762, 56.614735826397236 ], [ 86.695514763895176, 56.633804430530006 ], [ 86.397858513759388, 56.548021552152875 ], [ 86.313419224317727, 56.626931464315589 ], [ 86.217404412783367, 56.624192613198488 ], [ 86.10630008258272, 56.492340195843326 ], [ 85.854429152383432, 56.439785265177818 ], [ 85.780738560036468, 56.401828924964889 ], [ 85.799858840113359, 56.364570218540734 ], [ 85.569381952215281, 56.299587104161503 ], [ 85.687927687612671, 56.238841458566412 ], [ 85.139123976790074, 56.22514720298102 ], [ 85.076388788012139, 56.147012438073546 ], [ 84.892937452601302, 56.16959503788064 ], [ 84.431363560080172, 56.056630357504957 ], [ 84.347441033676716, 55.98402496987643 ], [ 84.21762983634784, 56.055131740737238 ], [ 83.969686313872273, 56.014669094303258 ], [ 83.909534946580493, 55.913176581434072 ], [ 83.768871697570773, 55.872868963731662 ], [ 83.644951612726686, 55.701199855988534 ], [ 83.408583612343818, 55.682027899967579 ], [ 83.402899203635286, 55.735202949156758 ], [ 83.302130161177956, 55.682157091176805 ], [ 83.227819452106019, 55.748638821424436 ], [ 83.289004348172114, 55.84796092395743 ], [ 83.360214470921051, 55.844550279271971 ], [ 83.407343377994437, 55.900619208309763 ], [ 83.230920038429019, 56.041230781375418 ], [ 83.285593702587278, 56.103810940522465 ], [ 83.118265414617156, 56.136625475285427 ], [ 83.141106397742021, 56.191815904280531 ], [ 83.218207634774501, 56.208404038815331 ], [ 83.069689569418074, 56.233932197113177 ], [ 83.201567824295637, 56.338938707455384 ], [ 83.149271275149204, 56.378626207533443 ], [ 83.255724725415689, 56.439397691550198 ], [ 83.085089146446933, 56.552724107131837 ], [ 82.995895624283605, 56.50786896408141 ], [ 82.814718051996465, 56.523630276316169 ], [ 82.834355096010825, 56.448751126463264 ], [ 82.761077914813882, 56.411285711766141 ], [ 81.944383579138844, 56.339455471392853 ], [ 81.557430454052167, 56.258271796106499 ], [ 81.122314894916428, 56.532621975124016 ], [ 80.248569777373291, 56.454719754213272 ], [ 79.589798617911867, 56.92856679991786 ], [ 78.447646111578763, 57.121888333279912 ], [ 78.444338819680752, 57.161317450939578 ], [ 76.918540480158981, 57.187879137112475 ], [ 76.108667433854976, 57.250252591583831 ], [ 75.99249881436873, 57.384869697578438 ], [ 75.858553501043218, 57.399080716202036 ], [ 75.727088658214996, 57.598861802829902 ], [ 75.591696404965091, 57.650951647300644 ], [ 75.557383254333672, 57.931399645277395 ], [ 75.080409783884363, 58.118726712467776 ], [ 75.221899855194124, 58.222079576411318 ], [ 75.069144321952876, 58.342899074932348 ], [ 75.304272088885739, 58.451057848440939 ], [ 75.10521447087109, 58.581024075400705 ], [ 75.160714960027349, 58.67765900276072 ], [ 75.671898228320572, 59.015622871498294 ], [ 75.628386672406975, 59.237779853257621 ], [ 75.818659296289468, 59.294520575863828 ], [ 75.895140414798277, 59.426398830741391 ], [ 75.996219517416762, 59.422471422118406 ], [ 76.17171268099537, 59.542774155802647 ], [ 76.645482212334173, 59.585097154210246 ], [ 76.656334263115696, 59.692739162882049 ], [ 76.741497022969213, 59.757799790727745 ], [ 76.756999952785577, 60.065998033282597 ], [ 76.693954705645126, 60.112610175519137 ], [ 76.847950474135018, 60.266140856015681 ], [ 76.752659133012571, 60.377451890892019 ], [ 76.805885858145814, 60.471141262459241 ], [ 77.046594680100384, 60.558991197485739 ], [ 76.970940382992239, 60.710351468545412 ], [ 77.067575311251574, 60.726319485455861 ], [ 77.104782341731664, 60.852461656580147 ], [ 77.702265253238807, 60.82517649999545 ], [ 77.920443150431026, 60.747455146237996 ], [ 78.12053429632067, 60.801767076089675 ], [ 78.474414504225933, 60.777479153040474 ], [ 78.687838168696487, 60.828948879886866 ], [ 78.806487257780702, 60.779830431429218 ], [ 79.185172153572012, 60.837578844388133 ], [ 79.311779412689702, 60.800656032949519 ], [ 79.285424432091816, 60.7205317248592 ], [ 79.373687779167653, 60.662292385485159 ], [ 80.18573123580785, 60.664721178239745 ], [ 80.428403761624281, 60.76481842712866 ], [ 80.723476190273914, 60.796625271539028 ], [ 81.02754031773145, 60.754741522703057 ], [ 81.140504999006453, 60.636660875299128 ], [ 81.83038536998879, 60.644722399019486 ], [ 82.165352004291549, 60.526280016409601 ], [ 82.380739374422546, 60.611959540200587 ], [ 82.407404413382949, 60.72301219355785 ], [ 83.144206984065022, 61.028213203476525 ], [ 83.503564895103807, 61.047230129866591 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-TA", "NAME_1": "Tatarstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.631693150318597, 55.906691188847276 ], [ 53.98578006379887, 55.851061510280431 ], [ 53.96552290216016, 55.782357692853225 ], [ 54.039936964918979, 55.802072252132689 ], [ 54.026294387076291, 55.7637800160349 ], [ 54.095230746701588, 55.772875068529572 ], [ 54.230933058313951, 55.692466538699762 ], [ 54.00314334468959, 55.554361274553173 ], [ 53.90712853405455, 55.393156643064572 ], [ 53.713962030323387, 55.333470363766253 ], [ 53.591385531716867, 55.211927394833367 ], [ 53.418372836836909, 55.222004300158289 ], [ 53.146761508936436, 55.146556707725836 ], [ 53.14107710112728, 55.098911038513563 ], [ 53.263756951621986, 55.014110012067363 ], [ 53.413515253126377, 54.988736884299726 ], [ 53.499298129704869, 54.891326808785152 ], [ 53.64275190577581, 54.899930934864699 ], [ 53.578673129861045, 54.822183742685525 ], [ 53.605648228083226, 54.713714911713794 ], [ 53.416822544125068, 54.559486599227171 ], [ 53.425917595720421, 54.498792630475464 ], [ 53.349333124424106, 54.391253973691903 ], [ 53.430258417292123, 54.265680244247847 ], [ 53.470462681307652, 54.045745347869456 ], [ 53.37909874880819, 53.970194404448193 ], [ 53.25848595586217, 54.071351020533143 ], [ 53.073277622164483, 54.069929918131209 ], [ 53.087850375994037, 54.114888413969084 ], [ 52.942432896061291, 54.204056097710691 ], [ 53.107487420008397, 54.247025051265098 ], [ 53.052710402163314, 54.337122910993514 ], [ 53.013022902085254, 54.274258531006353 ], [ 52.89788781137338, 54.275472926934015 ], [ 52.933131137991609, 54.306013699472601 ], [ 52.538529901233915, 54.377249661542635 ], [ 52.439827915425951, 54.478070379944029 ], [ 52.368721143665823, 54.419055895113445 ], [ 52.352908156386263, 54.458433335929669 ], [ 52.210591261877198, 54.442155259757385 ], [ 52.0784029477378, 54.342936510011896 ], [ 52.03375451026244, 54.424378566817381 ], [ 51.932675409442538, 54.43631582321666 ], [ 51.931641879768904, 54.531865545858238 ], [ 51.696410760048536, 54.557264512946915 ], [ 51.513476190373865, 54.639300848954974 ], [ 51.491668736023314, 54.596512763453234 ], [ 51.408676384707348, 54.594600735535494 ], [ 51.386042108056813, 54.676352850703495 ], [ 51.186984490941484, 54.648034166243747 ], [ 51.092933384168305, 54.553517971477163 ], [ 51.008184034565545, 54.544991359763401 ], [ 50.942761672413212, 54.34319489243029 ], [ 50.696885206587012, 54.426652329941021 ], [ 50.512090284938665, 54.329655667375107 ], [ 50.384242792370969, 54.485770169357806 ], [ 50.276135694806442, 54.444377346037641 ], [ 50.215570917264017, 54.504425361441236 ], [ 49.559383579288749, 54.569382636499427 ], [ 49.581191033639243, 54.5985798201026 ], [ 49.520832960772509, 54.63769888029907 ], [ 49.557936639364414, 54.667619534314042 ], [ 49.475771112147072, 54.775416571717358 ], [ 49.283948194653419, 54.885228989825976 ], [ 49.117756789144494, 54.795492866202778 ], [ 48.997350701773428, 54.786216946554816 ], [ 48.827541945104656, 54.647827459769417 ], [ 48.475005324336223, 54.632376206796494 ], [ 48.357389764026379, 54.697540188329015 ], [ 48.295067987297728, 54.678316555464619 ], [ 48.303852979631301, 54.736297512420208 ], [ 48.07968061716673, 54.767639268837172 ], [ 47.839901971198969, 54.644003403933937 ], [ 47.841555616698315, 54.725135403276226 ], [ 47.760940383092191, 54.735005602126819 ], [ 47.637433710297444, 54.565403551033 ], [ 47.47475630136222, 54.553724677052173 ], [ 47.410367466185619, 54.500497951918931 ], [ 47.24190229665362, 54.677722276261989 ], [ 47.370369906845724, 54.752575589491812 ], [ 47.432381626111123, 54.891791896778614 ], [ 47.748227980336992, 54.828539944063152 ], [ 47.757529738406674, 54.903005682766036 ], [ 47.800524530382745, 54.81923818599347 ], [ 47.846929966145012, 54.815724189419768 ], [ 47.788018833202557, 54.939230862214515 ], [ 47.996274854700744, 54.968247179563662 ], [ 48.028934360732137, 55.019122626308103 ], [ 47.917933384218259, 55.060102037578929 ], [ 48.068725212698382, 55.098600979251785 ], [ 48.084641554564087, 55.150535794091581 ], [ 48.012707961403294, 55.28083791783564 ], [ 47.923411085553141, 55.314246730901857 ], [ 47.871527947556729, 55.284868679246131 ], [ 47.892611932394743, 55.241848049747659 ], [ 47.818611280785944, 55.276419582797473 ], [ 47.785435011716402, 55.220247300972119 ], [ 47.69903201661424, 55.222727770570145 ], [ 47.696034783978064, 55.323135077821576 ], [ 47.834114210602309, 55.34210032826752 ], [ 47.973847283625219, 55.499506741442929 ], [ 48.091566195823248, 55.536455390403944 ], [ 48.025006952109152, 55.630454820333682 ], [ 48.383331332574926, 55.788894762283405 ], [ 48.415474073769474, 55.901704413028199 ], [ 48.68481163944557, 55.951675523106871 ], [ 48.698144158925743, 56.076319078362758 ], [ 48.827748650679666, 56.066810614718065 ], [ 48.995180292336613, 56.208817450864615 ], [ 49.050887486168506, 56.20680207015937 ], [ 48.933065220283652, 56.261579088004453 ], [ 49.037038201851487, 56.357852281057887 ], [ 49.116826613157627, 56.397281398717553 ], [ 49.137600538733864, 56.362503160092729 ], [ 49.225553827447129, 56.395059313336617 ], [ 49.34337609243272, 56.355268460471052 ], [ 49.405284458011295, 56.380434881764359 ], [ 49.417066684779627, 56.480170397246013 ], [ 49.463575474228719, 56.430250963111405 ], [ 49.5441907078349, 56.432473050291037 ], [ 49.572406040406406, 56.500530910772909 ], [ 49.650644159000706, 56.530141507324686 ], [ 49.787793409638141, 56.532673651967457 ], [ 49.812288039161672, 56.499755764416989 ], [ 49.749242792021221, 56.469990139133586 ], [ 49.854042595889041, 56.441361396311379 ], [ 49.964526807566074, 56.500944321922873 ], [ 49.980959914268624, 56.438002428469247 ], [ 50.174023065212282, 56.543215644386464 ], [ 50.193660109226641, 56.588484199486174 ], [ 50.07201378840557, 56.622745673274153 ], [ 50.193350050864126, 56.657265530379902 ], [ 50.297323032431962, 56.640625719001719 ], [ 50.324814893692349, 56.676101590515941 ], [ 50.418555943002332, 56.592669990527611 ], [ 50.483771599579654, 56.617061266364317 ], [ 50.45204227133371, 56.549597683286436 ], [ 50.547230258769389, 56.420768337888433 ], [ 50.624434848589374, 56.399451809053744 ], [ 50.582886997436958, 56.358627428313127 ], [ 50.729648065405854, 56.330412095741622 ], [ 50.779154086591802, 56.357903957901328 ], [ 50.76737186072279, 56.404257717719474 ], [ 50.85119103433874, 56.390253403771567 ], [ 50.907828404157499, 56.295995592322697 ], [ 50.840442336344722, 56.240701808741449 ], [ 51.073089633679615, 56.130527656326251 ], [ 51.193185662688165, 56.140759589483423 ], [ 51.313488397271669, 56.073011787364067 ], [ 51.372709587677321, 56.131070257786121 ], [ 51.643287387702742, 56.147942613161035 ], [ 51.483917270665472, 56.069342760260156 ], [ 51.405369093708657, 55.961080633964059 ], [ 51.441852654676268, 55.924648748940569 ], [ 51.735994907339091, 55.956584785459427 ], [ 51.781780226376327, 55.887545071247985 ], [ 51.957066685279301, 55.977462062923848 ], [ 52.041609328407731, 55.954776109429872 ], [ 52.058455845360925, 55.897053534892677 ], [ 52.168009881051148, 55.898500474817013 ], [ 52.247694939569783, 55.951675523106871 ], [ 52.204596794806207, 56.020431017377518 ], [ 52.244801059721112, 56.065622057212124 ], [ 52.187543573177322, 56.065415350737794 ], [ 52.224750603657412, 56.08634430594492 ], [ 52.655318638344454, 56.017821357469643 ], [ 52.72053429492172, 56.058051459007572 ], [ 52.716813591873745, 56.136160387292023 ], [ 52.834222446608578, 56.094302476877772 ], [ 52.813138461770563, 56.201065986406093 ], [ 52.561991001083811, 56.259434516090039 ], [ 52.731076288240104, 56.394077460506367 ], [ 52.956695590628954, 56.455779121409307 ], [ 52.830191685198088, 56.520271308474094 ], [ 53.086610141644712, 56.525671495443135 ], [ 52.942742954423807, 56.372425034887442 ], [ 52.993282505283389, 56.193417873835756 ], [ 53.063562452944836, 56.192177639486431 ], [ 53.049299758377117, 56.136031196082797 ], [ 53.145211216224595, 56.160629177494513 ], [ 53.334863723382114, 56.085879217951515 ], [ 53.335587192894593, 56.156520900818862 ], [ 53.257452427087799, 56.248918362092695 ], [ 53.320084263078229, 56.269537258937305 ], [ 53.53753868985865, 56.24845327409929 ], [ 53.563997023243985, 56.181067206286514 ], [ 53.375688104122673, 55.998003445402674 ], [ 53.197714470946039, 55.920669664373463 ], [ 53.310989210583557, 55.856720078768603 ], [ 53.631693150318597, 55.906691188847276 ] ], [ [ 48.028727655157127, 54.960779934146615 ], [ 48.075959914118698, 54.973337307270867 ], [ 48.112960239023778, 55.006203517977951 ], [ 48.086501905638386, 55.011836248943723 ], [ 48.028727655157127, 54.960779934146615 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-ULY", "NAME_1": "Ul'yanovsk" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.099007602818574, 55.016280423302874 ], [ 48.111720004674453, 55.000829169430574 ], [ 48.028727655157127, 54.960779934146615 ], [ 48.079163853229204, 55.007702134745671 ], [ 48.099007602818574, 55.016280423302874 ] ] ], [ [ [ 49.283948194653419, 54.885228989825976 ], [ 49.475771112147072, 54.775416571717358 ], [ 49.557936639364414, 54.667619534314042 ], [ 49.520832960772509, 54.63769888029907 ], [ 49.581191033639243, 54.5985798201026 ], [ 49.559383579288749, 54.569382636499427 ], [ 50.060851678362269, 54.521995347906966 ], [ 50.120176223354008, 54.431535752972593 ], [ 50.205649041569984, 54.418074042283195 ], [ 50.257118768416376, 54.294412339857558 ], [ 50.202858513609499, 54.138427029084085 ], [ 50.224149204022524, 54.07380564991081 ], [ 49.974138624897591, 53.959600735185745 ], [ 49.957188755156892, 53.906787421202523 ], [ 50.048035922819565, 53.873042711352014 ], [ 50.034289992189372, 53.826327216327968 ], [ 49.855902947862717, 53.837773546312064 ], [ 49.82686079299117, 53.887150377188107 ], [ 49.617054477881823, 53.814286607141185 ], [ 49.413656040094168, 53.868340156373108 ], [ 49.029286737392965, 53.85717804632975 ], [ 48.874257440128758, 53.716437282954246 ], [ 48.466323682991572, 53.766537584242087 ], [ 48.598718702705924, 53.668326523949872 ], [ 48.420848423216114, 53.633522446903385 ], [ 48.326487258080476, 53.662151191524231 ], [ 48.345710890944815, 53.608666083073274 ], [ 48.434801060320638, 53.580709133819425 ], [ 48.384984978973591, 53.552287096572229 ], [ 48.375579868116404, 53.471180934752283 ], [ 48.219310337402135, 53.428832098822284 ], [ 48.166497023418856, 53.477459621764126 ], [ 48.056839634041864, 53.476064357783855 ], [ 47.945115187116187, 53.374313463395595 ], [ 48.201947055612095, 53.146575425715298 ], [ 48.159985793309716, 53.044514472065202 ], [ 48.230265740971163, 52.996610419535216 ], [ 48.270159945724913, 53.056632594718451 ], [ 48.363797642247391, 53.063169664148631 ], [ 48.324316847744285, 52.984363104773422 ], [ 48.521720819360326, 52.978213608970862 ], [ 48.590347120623107, 52.880596828780597 ], [ 48.436971469757509, 52.780447903048241 ], [ 48.098284133306095, 52.794607244828455 ], [ 47.989763624591603, 52.747917589125393 ], [ 48.08505496571405, 52.720399889443343 ], [ 48.019632602662455, 52.679678859691592 ], [ 47.927441847862951, 52.668465073704169 ], [ 47.843415968671991, 52.723138740560387 ], [ 47.718255650377955, 52.581958726713822 ], [ 47.572838168646513, 52.616168525457056 ], [ 47.435378858747299, 52.569763088795469 ], [ 47.206969029297227, 52.567075914521808 ], [ 47.154465772777144, 52.606789252122269 ], [ 47.061861606827676, 52.570176499945489 ], [ 46.942489048230982, 52.635237127791186 ], [ 46.830661249417119, 52.616271878244561 ], [ 46.835518833127594, 52.7130101592914 ], [ 46.983210077083356, 52.771275336187784 ], [ 46.972047967039998, 52.838041287275587 ], [ 46.901768019378551, 52.881785387185857 ], [ 46.935254347709929, 52.90976817486137 ], [ 46.912620070160074, 53.079189357902521 ], [ 46.969567499240668, 53.178356431703946 ], [ 46.874379510006349, 53.186676336943378 ], [ 46.879030389041191, 53.241608385318727 ], [ 46.943109164955956, 53.262640693313301 ], [ 46.905902133576603, 53.335323595307671 ], [ 46.680179478400191, 53.476451931411475 ], [ 46.493627556666411, 53.510894273252063 ], [ 46.463551873919812, 53.604997056868626 ], [ 46.498795199638721, 53.623962307314628 ], [ 46.338288201938951, 53.756564033503309 ], [ 46.271418898063644, 53.757313341437509 ], [ 46.282787712782692, 53.801057441347837 ], [ 46.19256066274437, 53.850253404171212 ], [ 46.199588656791036, 53.923427232580707 ], [ 46.007042270684224, 53.998358059276995 ], [ 45.85356326703112, 53.967042141281752 ], [ 45.791551547765664, 54.003887438354582 ], [ 45.879091424429646, 54.031275946827463 ], [ 46.018307732615767, 54.189405829515408 ], [ 46.272245721263005, 54.206045640893592 ], [ 46.73816043535578, 54.344538479567177 ], [ 46.73371626189595, 54.384484361164311 ], [ 46.5554325703568, 54.400891629445141 ], [ 46.514918247079436, 54.444480698825146 ], [ 46.590469191400018, 54.50122142233073 ], [ 46.481948682685527, 54.497190660020919 ], [ 46.53693240700494, 54.584472154266507 ], [ 46.438540479559435, 54.578426012150715 ], [ 46.519362419639947, 54.645502020701656 ], [ 46.444121534581143, 54.687876695053433 ], [ 46.441331008419297, 54.772160955763468 ], [ 46.851021762943958, 54.631239326133993 ], [ 47.062998488389496, 54.690202135020513 ], [ 47.24190229665362, 54.677722276261989 ], [ 47.410367466185619, 54.500497951918931 ], [ 47.47475630136222, 54.553724677052173 ], [ 47.637433710297444, 54.565403551033 ], [ 47.760940383092191, 54.735005602126819 ], [ 47.841555616698315, 54.725135403276226 ], [ 47.839901971198969, 54.644003403933937 ], [ 48.07968061716673, 54.767639268837172 ], [ 48.303852979631301, 54.736297512420208 ], [ 48.295067987297728, 54.678316555464619 ], [ 48.357389764026379, 54.697540188329015 ], [ 48.475005324336223, 54.632376206796494 ], [ 48.827541945104656, 54.647827459769417 ], [ 48.997350701773428, 54.786216946554816 ], [ 49.117756789144494, 54.795492866202778 ], [ 49.283948194653419, 54.885228989825976 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-PNZ", "NAME_1": "Penza" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.113119744880294, 53.525105291875718 ], [ 42.087488233794943, 53.736306870965279 ], [ 42.134410435293319, 53.812167874547754 ], [ 42.307733189435112, 53.847462877110047 ], [ 42.53531619568588, 53.730829168731134 ], [ 42.509994744761627, 53.801315822866911 ], [ 42.574176874363218, 53.831029772206193 ], [ 42.573246698376408, 53.760000514811907 ], [ 42.719697707083469, 53.811186021717504 ], [ 42.737991163960999, 53.756150621453969 ], [ 42.771374138605609, 53.828445949820718 ], [ 42.918135206574505, 53.796975003093905 ], [ 43.075644973436738, 53.864981188530976 ], [ 43.161324497227724, 53.830564684212789 ], [ 43.160084262878399, 53.898157456701256 ], [ 43.106340772908311, 53.909216213957109 ], [ 43.128044875370676, 53.972623196303459 ], [ 43.296716749578309, 54.015721341067035 ], [ 43.751779412889562, 53.963218085446272 ], [ 43.910426060414352, 53.893764960084809 ], [ 43.932956984277382, 53.86177724942047 ], [ 43.867534621225786, 53.847282009057437 ], [ 43.876939732082917, 53.809687404949727 ], [ 43.98918094294612, 53.75465200468625 ], [ 44.198780551581194, 53.763281969187517 ], [ 44.555657993021953, 53.66135020584727 ], [ 44.736422154159072, 53.704629217764136 ], [ 44.646298456008935, 53.774935003847304 ], [ 44.616532830725532, 53.891542873804553 ], [ 44.871194288885306, 53.967352200543587 ], [ 45.176188592329652, 53.9787726912067 ], [ 45.339279413314273, 53.884876614064467 ], [ 45.713933546795715, 53.919344794326776 ], [ 45.791551547765664, 54.003887438354582 ], [ 45.85356326703112, 53.967042141281752 ], [ 45.970868768079185, 54.004869290285512 ], [ 46.206513298949574, 53.918698839180081 ], [ 46.19256066274437, 53.850253404171212 ], [ 46.282787712782692, 53.801057441347837 ], [ 46.271418898063644, 53.757313341437509 ], [ 46.338288201938951, 53.756564033503309 ], [ 46.498795199638721, 53.623962307314628 ], [ 46.463551873919812, 53.604997056868626 ], [ 46.493627556666411, 53.510894273252063 ], [ 46.680179478400191, 53.476451931411475 ], [ 46.901768019378551, 53.340775458220776 ], [ 46.944246047417153, 53.268531805798148 ], [ 46.879030389041191, 53.241608385318727 ], [ 46.874379510006349, 53.186676336943378 ], [ 46.969567499240668, 53.178356431703946 ], [ 46.912620070160074, 53.079189357902521 ], [ 46.935254347709929, 52.90976817486137 ], [ 46.901768019378551, 52.881785387185857 ], [ 46.972047967039998, 52.838041287275587 ], [ 46.983210077083356, 52.771275336187784 ], [ 46.835518833127594, 52.7130101592914 ], [ 46.830661249417119, 52.616271878244561 ], [ 46.614653761661771, 52.666036281848903 ], [ 46.59015913303756, 52.730993556907094 ], [ 46.288782179853683, 52.671875719289005 ], [ 46.276276482673495, 52.618597317312322 ], [ 46.156077100877496, 52.600768948428197 ], [ 46.131892530615744, 52.546973782514044 ], [ 45.974899530388996, 52.492196763769584 ], [ 46.01272667759406, 52.461500963398692 ], [ 45.980583937298832, 52.40716319422603 ], [ 45.725819126351553, 52.461604316186197 ], [ 45.732227003673245, 52.522763372931308 ], [ 45.644377068646804, 52.518551744367471 ], [ 45.431470168113719, 52.400496935385206 ], [ 45.139911736937108, 52.420521552127923 ], [ 45.032838169046215, 52.320889391232413 ], [ 44.848766716910461, 52.449796250996144 ], [ 44.548113234138441, 52.552399807005486 ], [ 44.500260857552519, 52.521213080219468 ], [ 44.537261183356918, 52.426360989567968 ], [ 44.421919387070034, 52.415818997148961 ], [ 44.34667850111191, 52.316135159410067 ], [ 43.747025181067215, 52.433440660458075 ], [ 43.352734001772717, 52.39251292603069 ], [ 43.175277134332248, 52.462121080123723 ], [ 43.07957238116046, 52.402744859187862 ], [ 43.001437616252986, 52.503203844182053 ], [ 43.096108839751139, 52.514572658901045 ], [ 43.041641880268514, 52.560590521935012 ], [ 43.236978794335869, 52.650688382562805 ], [ 43.209900344225503, 52.699212550918446 ], [ 42.920202264123191, 52.962684842531417 ], [ 42.545134718592351, 53.120478828435182 ], [ 42.511855095835983, 53.166496690569772 ], [ 42.55536665174958, 53.207140204157042 ], [ 42.354241977984884, 53.368215644436418 ], [ 42.252646112328193, 53.370799465922573 ], [ 42.312177361995623, 53.440407620015606 ], [ 42.113119744880294, 53.525105291875718 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KEM", "NAME_1": "Kemerovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.534678989843485, 56.782942613510784 ], [ 88.623975864794261, 56.83296540043284 ], [ 88.651674431629658, 56.741756497564268 ], [ 88.740144484280506, 56.719173895958477 ], [ 88.669451124569719, 56.638093574358948 ], [ 88.506360305383737, 56.620420234206392 ], [ 88.522483351925132, 56.551432196838391 ], [ 88.625009392669313, 56.516628119791847 ], [ 88.592453241224064, 56.443635159435019 ], [ 88.91501753113414, 56.345915025557929 ], [ 88.904682245189406, 56.311989448554186 ], [ 89.056610956130669, 56.301679999232533 ], [ 89.056300896868834, 56.210109361158061 ], [ 89.271584914212383, 56.069420273726621 ], [ 89.242956171390176, 56.043711249174805 ], [ 89.311479119865453, 55.914106757420882 ], [ 89.449041782552172, 55.861965237006075 ], [ 89.382069125889416, 55.833284817340427 ], [ 89.370493605595357, 55.774993801123003 ], [ 89.061571892628706, 55.692854112327382 ], [ 88.682266880112365, 55.516043199134288 ], [ 88.394325800095544, 55.273344834896193 ], [ 88.549975214084839, 55.083356431853815 ], [ 88.548424921372998, 55.016745510396959 ], [ 88.669141066207203, 54.967136135524186 ], [ 88.664490188071682, 54.880836494108905 ], [ 88.743451776178517, 54.895435086360123 ], [ 88.75657759008368, 54.832777411947973 ], [ 88.717716913204924, 54.764151108886551 ], [ 88.630590447690963, 54.746529446476757 ], [ 88.564341262339326, 54.46267080291517 ], [ 88.377996047079876, 54.388515123474122 ], [ 88.540156691178311, 54.340766100575081 ], [ 88.571162550811039, 54.287022609705673 ], [ 88.844737582573316, 54.415671087950329 ], [ 88.960802850171376, 54.364485581944052 ], [ 89.004314406084916, 54.290123196028674 ], [ 89.175156690628739, 54.334771634403353 ], [ 89.222492303277136, 54.250306504741388 ], [ 89.192623326105604, 54.149718329437349 ], [ 88.98147342296005, 54.065227363152246 ], [ 89.065395949363563, 53.954794827419335 ], [ 89.214327426769273, 53.941203925520711 ], [ 89.18208133278722, 53.872060859421083 ], [ 89.273755323649254, 53.849116523508712 ], [ 89.031599562669669, 53.75312755039613 ], [ 89.003797642147447, 53.667628892859113 ], [ 88.837192823689804, 53.588305569546378 ], [ 88.863031040350222, 53.48019847288117 ], [ 88.761228469118521, 53.365063382169353 ], [ 88.89517378064545, 53.386612454101453 ], [ 89.050616489958998, 53.249437364143034 ], [ 89.005864698796756, 53.19230906790915 ], [ 89.049066197247157, 53.13045237917396 ], [ 88.895070427857945, 52.987360338308918 ], [ 89.065085891001047, 52.954029038709166 ], [ 89.121723259920486, 52.915581772980431 ], [ 89.111077914713974, 52.866747545362898 ], [ 89.18228803926155, 52.865610662901759 ], [ 89.234687941195489, 52.804322414947478 ], [ 89.042141555088676, 52.706447252338819 ], [ 89.115418736285619, 52.597771714892701 ], [ 88.664283481597352, 52.344014594298073 ], [ 88.722367792239766, 52.313137925874571 ], [ 88.681853468962402, 52.25107453156437 ], [ 88.364766880387208, 52.16800466588262 ], [ 88.420680779794111, 52.453904526772476 ], [ 88.208393995986114, 52.414010322018726 ], [ 87.923760206967927, 52.547593899239018 ], [ 87.63550906768927, 52.449796250996144 ], [ 87.377953728781506, 52.50873322236032 ], [ 87.349635044321815, 52.594851995722991 ], [ 87.167527296947185, 52.591105455152615 ], [ 87.168147413672159, 52.719263006982146 ], [ 87.079987421182523, 52.708824368249964 ], [ 86.944078403995093, 52.855120348225455 ], [ 87.023143344889434, 52.915504259513966 ], [ 87.076990187647027, 53.075210273335415 ], [ 86.927025180567568, 53.084201972143262 ], [ 86.666575961811134, 53.249876613714719 ], [ 86.869457634762, 53.29788401993153 ], [ 86.988623487783684, 53.41487946171776 ], [ 86.922787713582068, 53.445575262987973 ], [ 87.01435835165654, 53.476606961042364 ], [ 87.005366651949373, 53.508103746190898 ], [ 86.799384392675563, 53.474359036340445 ], [ 86.56880415198998, 53.53802440020587 ], [ 86.454805942839926, 53.614040432519914 ], [ 86.385146111903509, 53.784986069851243 ], [ 86.139166294189067, 53.987764390913867 ], [ 85.94382938012177, 54.039905911328731 ], [ 85.602868279647339, 54.233899238259198 ], [ 85.448769159269261, 54.204443671338311 ], [ 85.160001255153759, 54.487165432438701 ], [ 85.079386020648315, 54.469388740398017 ], [ 84.948334588970056, 54.604109199180186 ], [ 85.043315870830725, 54.662322700132506 ], [ 84.94244347468657, 54.73696930598868 ], [ 85.076078728750304, 54.868279120085276 ], [ 84.882602166656625, 54.985274562770826 ], [ 84.915778435726168, 55.165263577552025 ], [ 84.82255415215235, 55.246240546364106 ], [ 84.875470818923134, 55.388531603350771 ], [ 84.635072056230399, 55.408737088146097 ], [ 84.761059197723739, 55.454625759071519 ], [ 84.7217851087957, 55.499713447017939 ], [ 84.770981073417772, 55.539814358246019 ], [ 84.701321241581979, 55.669057114793986 ], [ 84.551252882614392, 55.722645576032505 ], [ 84.631351353182367, 55.768482571013806 ], [ 84.585566034145131, 55.800728664995859 ], [ 84.605616490208831, 55.840726223436434 ], [ 84.506294386776517, 55.868218084696821 ], [ 84.50112674380415, 55.954466051067357 ], [ 84.571820102615618, 55.962708441941004 ], [ 84.544431594142736, 56.02585704186896 ], [ 84.410382928029662, 56.044072984380705 ], [ 84.892937452601302, 56.16959503788064 ], [ 85.076388788012139, 56.147012438073546 ], [ 85.130132277082907, 56.221529852720494 ], [ 85.254362421188773, 56.245145982201279 ], [ 85.379316033907799, 56.212693183543536 ], [ 85.687927687612671, 56.238841458566412 ], [ 85.569381952215281, 56.299587104161503 ], [ 85.799858840113359, 56.364570218540734 ], [ 85.780738560036468, 56.401828924964889 ], [ 85.854429152383432, 56.439785265177818 ], [ 86.10630008258272, 56.492340195843326 ], [ 86.217404412783367, 56.624192613198488 ], [ 86.313419224317727, 56.626931464315589 ], [ 86.397858513759388, 56.548021552152875 ], [ 86.695514763895176, 56.633804430530006 ], [ 86.837108188891762, 56.614735826397236 ], [ 86.867700637374469, 56.563679510700808 ], [ 87.129803500730929, 56.539960029331837 ], [ 87.178689406091166, 56.600343939721029 ], [ 87.138278435601308, 56.654319972788471 ], [ 87.166700473747824, 56.675558987257432 ], [ 87.384568312577528, 56.614115708772886 ], [ 87.620419549922246, 56.639747218958973 ], [ 87.787851189780554, 56.54641958349697 ], [ 88.391948684184399, 56.826299139793434 ], [ 88.534678989843485, 56.782942613510784 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-ORL", "NAME_1": "Orel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.84102908722258, 53.008547675035175 ], [ 37.794933708923509, 52.91209361392913 ], [ 37.84350955592123, 52.882095445548373 ], [ 37.790489536362998, 52.845250149374863 ], [ 37.874412061867133, 52.781119697515976 ], [ 37.777467075245283, 52.722983710030178 ], [ 37.808679639553702, 52.640611477237883 ], [ 37.711838005719358, 52.613016262290671 ], [ 37.810643345214203, 52.558756009282376 ], [ 37.77819054475782, 52.511110338271465 ], [ 37.903764276000516, 52.480569565732822 ], [ 37.87937300016381, 52.430391750978515 ], [ 38.038433057939244, 52.344505519813879 ], [ 38.017039014738714, 52.251746324233466 ], [ 37.777570428032789, 52.161493434874103 ], [ 37.747081333236906, 52.016902778140661 ], [ 37.68258914617212, 51.974708970942231 ], [ 37.480741001096305, 52.009487210466375 ], [ 37.404259880788857, 51.92845856391159 ], [ 37.353513625253584, 51.936158352425991 ], [ 37.186598749332802, 52.079147040503472 ], [ 36.820212844247351, 52.120281481405243 ], [ 36.493101027190619, 52.240351671092697 ], [ 36.337761671563896, 52.37034373647424 ], [ 35.652945590766365, 52.248284002704509 ], [ 35.556517368082041, 52.432097073321245 ], [ 35.105072055930634, 52.33024282524616 ], [ 34.834597608692661, 52.390833442109624 ], [ 34.902293735767273, 52.49364370369392 ], [ 34.992727492279926, 52.515321966835302 ], [ 34.992934197854936, 52.654124863871345 ], [ 35.091532830875451, 52.697972317468441 ], [ 34.873044875320716, 52.781274726247602 ], [ 34.796150343863246, 52.864499619761602 ], [ 34.97081668514187, 52.97278758447942 ], [ 35.151477491692845, 52.960333564142672 ], [ 35.134527621952145, 53.012371730870655 ], [ 35.205014276087923, 52.999969387377291 ], [ 35.313638136690656, 53.062187812217758 ], [ 35.108999464553619, 53.145180161735027 ], [ 35.103521763218794, 53.310777288940699 ], [ 35.188374464709739, 53.271167304127744 ], [ 35.280461866721737, 53.322585354130752 ], [ 35.355702751780541, 53.284241441189522 ], [ 35.452854444876721, 53.443714911913617 ], [ 35.647054478281518, 53.547584539794627 ], [ 35.772421502150564, 53.519782620171782 ], [ 35.910604281562314, 53.644038600900672 ], [ 36.098293083958652, 53.555852769989315 ], [ 36.23161827965987, 53.574146226866844 ], [ 36.398016391643125, 53.428522040459768 ], [ 36.53516564317988, 53.391366685923799 ], [ 36.666837193381753, 53.41586131544733 ], [ 36.807293735917142, 53.296617947160485 ], [ 36.990848423216164, 53.307004909948603 ], [ 37.196934035277479, 53.25070343691408 ], [ 37.340181104874091, 53.307237453945334 ], [ 37.560632765189951, 53.296230374432184 ], [ 37.585850864225961, 53.13541331657126 ], [ 37.712561476131214, 53.131511746369995 ], [ 37.84102908722258, 53.008547675035175 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-IRK", "NAME_1": "Irkutsk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.786273228426694, 58.453228257877754 ], [ 102.186145460944203, 58.522681383239217 ], [ 102.317920363034261, 58.647324938495103 ], [ 102.513257277101616, 58.721428941092711 ], [ 102.564933710422338, 58.802121689963997 ], [ 102.534031202677795, 58.900746162305495 ], [ 102.438636508767843, 58.943740953382246 ], [ 102.405873650848264, 59.072544461257849 ], [ 102.438739861555348, 59.136339016332499 ], [ 102.588498163059739, 59.203053290576861 ], [ 102.831480747238629, 59.214577134926799 ], [ 103.01059126197714, 59.31808502940055 ], [ 103.082628207925438, 59.264393216273902 ], [ 103.330261672038489, 59.256176662922655 ], [ 103.240241326675857, 59.227341214525381 ], [ 103.248612908758673, 59.17530304599876 ], [ 103.375220167876421, 59.034123033051515 ], [ 103.582235955924602, 58.960174059185476 ], [ 103.59391482990543, 58.916714179215944 ], [ 103.896325310964301, 58.900487778987781 ], [ 103.95182580012056, 58.784887600282502 ], [ 103.869143508066429, 58.735174871722904 ], [ 104.220129836123022, 58.757964178903705 ], [ 104.393142531002979, 58.703910631470421 ], [ 104.458151482904555, 58.602263088970346 ], [ 104.793944940406618, 58.669287421577224 ], [ 104.872493117363433, 58.71853506124404 ], [ 104.76045861207524, 58.81413646072906 ], [ 104.798182408291439, 58.863229072563627 ], [ 105.144931267563891, 59.044768378258027 ], [ 105.346986119114035, 59.091690578857083 ], [ 105.294069452343308, 59.259923204392351 ], [ 105.190716586601127, 59.308318183337462 ], [ 105.241462843935039, 59.353380031962899 ], [ 105.225339797393701, 59.429292711489438 ], [ 105.172423129723597, 59.474483751324044 ], [ 104.977809686068099, 59.463760890852427 ], [ 104.862674595356225, 59.543239243796052 ], [ 104.79880252501647, 59.690878810908373 ], [ 105.012432895961354, 59.769788723071088 ], [ 105.024421828304696, 59.834694322185214 ], [ 105.490543247972482, 59.845236315503541 ], [ 105.432872349379352, 59.896163439091424 ], [ 105.488682895998807, 60.001169949433574 ], [ 105.423673944097175, 60.109664618827082 ], [ 105.47855431472982, 60.249035955744716 ], [ 105.296859979404474, 60.298128567579283 ], [ 104.889236280629802, 60.301694240996369 ], [ 104.664857211690901, 60.402773342715591 ], [ 104.521506789306841, 60.638986315266209 ], [ 104.596127556741294, 60.752881170729438 ], [ 104.459701775616395, 60.838767401894074 ], [ 104.628580357197677, 60.890004583844416 ], [ 104.564501581282912, 60.944807441010539 ], [ 104.635194940094379, 61.036378079085068 ], [ 104.614937779354989, 61.074076035980227 ], [ 104.836629673120854, 61.176162828052043 ], [ 105.007368605776492, 61.182183133544754 ], [ 104.926236607333522, 61.318996487397953 ], [ 104.788984003009261, 61.3484003774754 ], [ 105.271745233155968, 61.42493317282765 ], [ 105.367449986327756, 61.529836331281615 ], [ 105.696112095197009, 61.64522980441194 ], [ 105.809076775572692, 61.622388821287018 ], [ 105.946742791946235, 61.688844713112985 ], [ 105.902197707258324, 61.834882311569402 ], [ 106.209465773826366, 62.000350247565848 ], [ 106.407283155693051, 62.034766750984716 ], [ 106.375140415397823, 62.103238024415248 ], [ 106.446143832571749, 62.235478014498767 ], [ 106.327391391599406, 62.265812080563023 ], [ 106.478079869090664, 62.323534654200898 ], [ 106.428367141430385, 62.382833359871654 ], [ 106.532650181360736, 62.376502996915747 ], [ 106.70349246590456, 62.474481513211231 ], [ 106.669075961586316, 62.548559679185814 ], [ 106.796923455952708, 62.601760565897393 ], [ 106.504434848789174, 62.675037747094336 ], [ 106.524795363215389, 62.746764635579439 ], [ 106.4425264832106, 62.843037827733554 ], [ 106.217734003121677, 62.896781317703642 ], [ 106.12337283708672, 63.059510403482307 ], [ 106.403252395181823, 63.113305569396459 ], [ 106.424543084695586, 63.196607978175621 ], [ 106.361807895917593, 63.220895901224822 ], [ 106.365115187815604, 63.262960517214083 ], [ 106.437565545813243, 63.319959622238741 ], [ 106.672693312746162, 63.297583727107281 ], [ 106.730570916914246, 63.367476101141108 ], [ 106.509602491761541, 63.495091051510769 ], [ 106.685509068288809, 63.620458076279192 ], [ 106.629491815195081, 63.696784166056375 ], [ 106.793409457580367, 63.842382514041788 ], [ 106.681478305978999, 63.925323188514312 ], [ 106.709900344125515, 63.986611437367912 ], [ 107.070808546976821, 63.887005113095483 ], [ 107.190181105573515, 63.95532135689507 ], [ 107.289813267368345, 63.949998684291813 ], [ 107.372495559422475, 63.865507718006768 ], [ 107.562974887980658, 63.858531399004846 ], [ 107.679763625091198, 63.989221096376468 ], [ 108.262880487444477, 63.995887356116555 ], [ 108.320137973988267, 64.039037176824195 ], [ 108.21554487479608, 64.212411607809429 ], [ 108.026512486162289, 64.223522040110026 ], [ 108.306185336883743, 64.250083727182243 ], [ 108.357655063730135, 64.29971894047668 ], [ 108.533664992145646, 64.23535594282248 ], [ 108.484882439572857, 64.200112617103571 ], [ 108.540279575941611, 64.17773672107279 ], [ 108.495011020841901, 64.115725002706654 ], [ 108.73148237491165, 63.983640042254137 ], [ 108.687867466210548, 63.914238592836739 ], [ 108.766415643167363, 63.860443426922586 ], [ 108.647663202194963, 63.786752835474942 ], [ 108.297503697337731, 63.810523993687355 ], [ 108.265050896881348, 63.672651271738744 ], [ 108.117463006612411, 63.621594956941692 ], [ 108.124904412708418, 63.579995428945836 ], [ 108.571285434675019, 63.598495592297695 ], [ 108.857056106154346, 63.536948961025701 ], [ 109.042161086165152, 63.552296861211119 ], [ 109.222615188040436, 63.437213447342685 ], [ 109.278735793022406, 63.348536689116884 ], [ 109.364725376075228, 63.354169420082656 ], [ 109.380745069829061, 63.257327786248311 ], [ 109.451645136014179, 63.222756253198497 ], [ 109.407513461576968, 63.181518460408597 ], [ 109.452988723151009, 63.148962307164709 ], [ 109.471592238391054, 62.93179210122446 ], [ 109.646878697294028, 62.826191310780359 ], [ 109.472729119952874, 62.746041165167583 ], [ 109.369893019946858, 62.577007554854731 ], [ 109.249280227000838, 62.57028961917058 ], [ 109.267160271829027, 62.523522447303094 ], [ 109.486991815419913, 62.410997016499095 ], [ 109.911978794185984, 62.410402737296465 ], [ 109.894512159608439, 62.354230455471111 ], [ 109.998278435601264, 62.284622301378079 ], [ 109.936060011660174, 62.238940335128348 ], [ 109.999518670849909, 62.163544420438598 ], [ 109.597786086358781, 61.870435696550146 ], [ 109.620006951859295, 61.718093574458862 ], [ 109.870120883771733, 61.532885239861912 ], [ 109.792399530014279, 61.325197659144635 ], [ 110.08085737486789, 61.270368964456111 ], [ 110.190101353094917, 61.155285549688358 ], [ 110.397840610655635, 61.180193590361853 ], [ 110.506051060108291, 61.138128974372648 ], [ 110.458405389097379, 60.988267320080752 ], [ 110.235059848932849, 60.824918118476376 ], [ 110.288493279641102, 60.770166938153636 ], [ 110.266789178977376, 60.696502184228393 ], [ 110.049334751297692, 60.671542466711458 ], [ 110.116204055172943, 60.587051500426355 ], [ 109.922624139392497, 60.463338121157335 ], [ 109.946291944817347, 60.401946520415549 ], [ 109.732041457147488, 60.225058091957351 ], [ 109.694421013718738, 60.114728909011887 ], [ 109.763874139080201, 60.026982326772952 ], [ 109.624967889256652, 59.908436591375562 ], [ 109.645121698107857, 59.860635890733761 ], [ 109.500531039575776, 59.759143377864575 ], [ 109.523268670812456, 59.636153469007354 ], [ 109.268193800603399, 59.461435451784666 ], [ 109.347775507233848, 59.409552313788197 ], [ 109.252070754062004, 59.367410183433208 ], [ 109.261269159344181, 59.321340644455177 ], [ 109.510246209694799, 59.288862006476393 ], [ 109.528332960997318, 59.189824123884193 ], [ 109.626311477292802, 59.152048651723874 ], [ 109.641917758997351, 59.061924954473056 ], [ 109.74227339120398, 59.066369127033568 ], [ 109.822165155297625, 58.981258043124171 ], [ 110.27826134558461, 58.984048570185337 ], [ 110.531165806356853, 59.058721015362551 ], [ 110.589353468887452, 59.131326402091759 ], [ 110.576331007769738, 59.186103420836162 ], [ 110.697150507190088, 59.25723603011869 ], [ 111.000904576285109, 59.208479315967622 ], [ 111.091338331898442, 59.236539618908239 ], [ 111.175157504615129, 59.187808743178948 ], [ 111.296803827234783, 59.253179430286423 ], [ 111.470126581376576, 59.267287096122573 ], [ 111.637248162872368, 59.207600815924877 ], [ 111.763648716415105, 59.273643297500143 ], [ 111.942139112629889, 59.273850003075154 ], [ 112.270594516823394, 59.50039948235019 ], [ 112.332502883301345, 59.41658030873424 ], [ 112.275245395858292, 59.365265611518737 ], [ 112.293125441585858, 59.300566717979621 ], [ 112.631089309424056, 59.310488592774334 ], [ 112.635740187559577, 59.270336004702813 ], [ 112.526186150970034, 59.227651271988577 ], [ 112.451462029848699, 59.125228583132582 ], [ 112.447741326800724, 58.928496405984333 ], [ 112.502621698332632, 58.870360419397798 ], [ 112.616413201907676, 58.962241115834786 ], [ 112.569077590158599, 59.067118434967767 ], [ 112.644421828004965, 59.03365794505811 ], [ 112.91613650869283, 59.151635240573853 ], [ 113.264228956900752, 59.156854560389604 ], [ 113.461012810892498, 59.261628525835761 ], [ 113.472484979298315, 59.338962306864914 ], [ 113.424322544349934, 59.382732246096225 ], [ 113.604983351800229, 59.49905589521336 ], [ 113.591754185107561, 59.565201727777492 ], [ 113.779339633817017, 59.608558254959462 ], [ 113.854477166987635, 59.684212552067606 ], [ 114.038031854286601, 59.682403876037995 ], [ 114.042682733321385, 59.73671580678905 ], [ 114.174767693774015, 59.753458970954739 ], [ 114.30902306456278, 59.878877672566489 ], [ 114.569472284218477, 60.000575670230944 ], [ 114.522963494769442, 60.045585842912317 ], [ 114.543117303620647, 60.107778429331006 ], [ 114.697113072110596, 60.219218655416569 ], [ 114.824960564678236, 60.186662503072057 ], [ 115.238165317575294, 60.446956692197546 ], [ 115.686303338728067, 60.526228339566217 ], [ 116.075426874150821, 60.406907456913586 ], [ 116.599425897087485, 60.354765937398042 ], [ 116.976767205741908, 60.154442247511668 ], [ 117.054281853924408, 60.035405584799889 ], [ 117.296334263015751, 60.018920803052595 ], [ 117.06358361199409, 59.913397528772919 ], [ 117.226261020929314, 59.820819200345795 ], [ 117.198459100407149, 59.65537710187175 ], [ 117.087148064631378, 59.590781562019458 ], [ 117.233702427025378, 59.531250312352029 ], [ 117.597504510624617, 59.472313340987853 ], [ 117.758011509223707, 59.539415187960515 ], [ 117.883068474730294, 59.441901760557755 ], [ 118.058251580845763, 59.582642523933316 ], [ 118.282630649784664, 59.609333401315382 ], [ 118.397662387709033, 59.516057440898123 ], [ 118.748752068553131, 59.413428046467118 ], [ 118.758053826622699, 59.332916164749179 ], [ 118.845903761649197, 59.291058255234248 ], [ 118.688704054948175, 59.191451930961819 ], [ 118.707204218300035, 59.063836982390796 ], [ 118.84952111190978, 59.009008286802953 ], [ 118.785545688782463, 58.899996853471976 ], [ 118.893342727085155, 58.804834703558697 ], [ 118.875876093406987, 58.689079495222472 ], [ 118.776347284399662, 58.603968411313076 ], [ 119.13281131379108, 58.460876370448091 ], [ 119.068732537876258, 58.357265123186835 ], [ 119.124129673345692, 58.288535468237228 ], [ 119.108109978692482, 58.222699693136292 ], [ 118.661315545575917, 58.17489899429313 ], [ 118.490990024969619, 58.216446845445546 ], [ 118.317357211565991, 58.352510891364489 ], [ 118.157573684278077, 58.385583808545903 ], [ 118.070033806714719, 58.340263577502071 ], [ 117.994586216080961, 58.394627184197191 ], [ 117.683804152039897, 58.397986152039266 ], [ 117.475548129642448, 58.309051012294333 ], [ 117.587272576568125, 58.180169990052946 ], [ 117.569289178952431, 58.140947577968348 ], [ 117.408058709941429, 58.126788235288814 ], [ 117.366304152314683, 57.994599921149415 ], [ 117.409298944290754, 57.905819811035428 ], [ 117.085804478393925, 57.804430650054428 ], [ 117.172724237433613, 57.736476142360061 ], [ 117.141925083375895, 57.641288154025062 ], [ 117.286619093796048, 57.61250438157191 ], [ 117.25426964702649, 57.51385407170801 ], [ 117.32640994666167, 57.453289293266266 ], [ 117.365684034690389, 57.328180650016975 ], [ 117.443612094922173, 57.329317532478115 ], [ 117.431933221840723, 57.254748440088406 ], [ 117.541073847280131, 57.261052965521912 ], [ 117.597091098575333, 57.321152655970252 ], [ 117.79449507019126, 57.292678940980295 ], [ 117.742818637769915, 57.195837307146007 ], [ 117.600915155310076, 57.149690252902815 ], [ 117.676569452418221, 57.065819404242063 ], [ 117.672538690108468, 56.977504381222161 ], [ 117.575800409061571, 56.934716294821101 ], [ 117.570839471664272, 56.851207180466986 ], [ 117.499009231290984, 56.869500637344515 ], [ 117.451363560280015, 56.819012763328317 ], [ 117.348320753799726, 56.86769196221428 ], [ 117.337055291868182, 56.944069728834904 ], [ 117.131073032594372, 56.804181627080425 ], [ 117.030510694812619, 56.812346502688911 ], [ 117.031337518012037, 56.775087796264756 ], [ 116.806131625873832, 56.724651598192679 ], [ 116.568730096716536, 56.756949368118796 ], [ 116.361610955880906, 56.847331447788065 ], [ 116.122039016387475, 56.812656561950746 ], [ 115.710797968251541, 56.963500068173573 ], [ 115.8048490741254, 57.031299547136371 ], [ 116.238414341448674, 57.149328517696915 ], [ 116.131030715195266, 57.238573716703627 ], [ 115.862726679192861, 57.243276272581909 ], [ 115.679275343782024, 57.130931708031881 ], [ 115.370043573352177, 57.091657620003105 ], [ 115.085926548271573, 57.118581041381901 ], [ 115.025051710567936, 57.037190660520537 ], [ 115.046549106555972, 56.985281684102404 ], [ 114.845734491153848, 56.832035224446031 ], [ 114.779278599327881, 56.699381822313228 ], [ 114.500122511644577, 56.701087145555277 ], [ 114.440591261977147, 56.654164944056902 ], [ 114.144795362915602, 56.681140042279083 ], [ 113.997104119859159, 56.58497020111389 ], [ 114.004958938004506, 56.541200262781899 ], [ 113.89747195806433, 56.525438951446404 ], [ 113.803007440141187, 56.602436834792059 ], [ 113.513722772088272, 56.678788763890338 ], [ 113.369545525605531, 56.626052965172164 ], [ 112.895775995165991, 56.691707872220491 ], [ 112.747154576122739, 56.761031806372728 ], [ 112.698475376337456, 56.861077379317578 ], [ 112.745914340874037, 56.933941148465181 ], [ 112.662095168157407, 56.959650173916373 ], [ 112.457766555282205, 56.863712876747854 ], [ 112.234937779055258, 56.877717189796442 ], [ 112.109570754286892, 56.94437978809674 ], [ 111.813671503337162, 56.908412991066655 ], [ 111.631770460638222, 57.01197256148447 ], [ 111.586915317587795, 57.107160549819469 ], [ 111.462478468806239, 57.102457993941243 ], [ 111.336077915263559, 56.955076809247316 ], [ 111.372148065081092, 56.900351468245617 ], [ 111.165028925144725, 56.815292060280342 ], [ 110.752547641760202, 56.874099840435235 ], [ 110.60010216688147, 56.83027822525986 ], [ 110.339239536975015, 56.937351793150697 ], [ 109.995797967801934, 56.970218003857781 ], [ 109.886864047937422, 56.890868842123325 ], [ 109.888414340649263, 56.78976390198244 ], [ 109.767078078190707, 56.704084378191453 ], [ 109.410200636749948, 56.734935208193292 ], [ 109.308088007155789, 56.668479316367325 ], [ 109.143136835096811, 56.676075751194958 ], [ 108.929609816939433, 56.588174140224339 ], [ 108.692414991558564, 56.579673366932298 ], [ 108.727141555138587, 56.513863430253082 ], [ 108.5570227401073, 56.345656643139534 ], [ 108.576349724859881, 56.285040187854349 ], [ 108.798971796411251, 56.257393296963073 ], [ 108.991208124155548, 56.039680487764258 ], [ 109.256308221047505, 55.974309801556046 ], [ 109.180033807214386, 55.913021551803126 ], [ 108.970744256941884, 55.945629380991136 ], [ 108.85405887261885, 55.86625438083496 ], [ 108.77137658056472, 55.62327179575675 ], [ 108.688074171785559, 55.604874986091716 ], [ 108.690657994171033, 55.52131419489416 ], [ 108.622238396684622, 55.455891831842564 ], [ 108.667713658258663, 55.400753078791524 ], [ 108.652004021967969, 55.301017565108509 ], [ 108.778921340347551, 55.232959702827998 ], [ 108.782228632245562, 55.169501044537526 ], [ 108.690347934909198, 55.062324123859185 ], [ 108.762694940119331, 54.930084133775722 ], [ 108.694895461156591, 54.889983222547642 ], [ 108.698616164204566, 54.681003729738336 ], [ 108.557849563306661, 54.542975979058156 ], [ 109.03844038311712, 54.488560696418972 ], [ 109.007331170696943, 54.424947008497611 ], [ 108.423490838831128, 53.783177394720951 ], [ 108.060825636793652, 53.205124824351117 ], [ 106.198303663783008, 52.440184435463323 ], [ 105.751509230666443, 52.03098460645441 ], [ 105.4611910338391, 51.863346259222453 ], [ 105.123123814112716, 51.73108043071727 ], [ 104.649871046711382, 51.622430731692873 ], [ 104.628683709985182, 51.44337189379786 ], [ 104.668887974000768, 51.338313707511588 ], [ 104.609356724333338, 51.268292141369216 ], [ 104.488433872125484, 51.310330918936756 ], [ 104.21237837076518, 51.281107896911863 ], [ 103.813746371697675, 51.131866360244317 ], [ 103.816743606132491, 51.401255601864534 ], [ 103.576344843439756, 51.479235338040382 ], [ 103.327781203339839, 51.438049221194603 ], [ 103.181433547420227, 51.611061916973881 ], [ 103.208925408680614, 51.80913768215828 ], [ 102.768848912147519, 51.989643459977685 ], [ 102.573511997180901, 52.149065252959019 ], [ 102.542092727297472, 52.227613429915834 ], [ 102.176533645411382, 52.277119452900422 ], [ 102.045688918408814, 52.212188015364575 ], [ 101.963213331929694, 52.222445786943467 ], [ 101.893863560255056, 52.285025946989833 ], [ 101.910400017946415, 52.317091172919277 ], [ 101.673618606413527, 52.409023546199649 ], [ 101.687571241719411, 52.460622464255323 ], [ 101.48210574728239, 52.562425035486967 ], [ 101.459988233670003, 52.620974433223466 ], [ 100.865605910284501, 52.800291653536931 ], [ 100.395143670843709, 53.101177680305682 ], [ 100.350805291730808, 53.159365342836281 ], [ 100.401034784227875, 53.234218655166785 ], [ 100.26047488800566, 53.374830227333121 ], [ 100.079814080555309, 53.300312811786796 ], [ 99.869387648720988, 53.29752228472563 ], [ 99.842102492136235, 53.26010854777121 ], [ 99.877655878016299, 53.204194648364307 ], [ 99.690173781195028, 53.131950995042359 ], [ 99.370296664659293, 53.109265042447703 ], [ 99.356240675666584, 53.035884508463255 ], [ 99.249787225400098, 52.953822333134156 ], [ 98.989338006643663, 53.034489244483041 ], [ 99.064372186127457, 53.097405301313586 ], [ 98.937661574222204, 53.149365952776463 ], [ 98.347620069710388, 53.092521878282014 ], [ 98.287572056105489, 53.125284736201593 ], [ 98.28912234881733, 53.223263250698437 ], [ 98.030843540397029, 53.25261546483182 ], [ 97.957566359200086, 53.357725327961475 ], [ 97.606269972780979, 53.373021552202829 ], [ 97.585806105567258, 53.438082180048525 ], [ 97.447830030831199, 53.461491603954357 ], [ 97.328354120346319, 53.596367092367416 ], [ 97.127539504044819, 53.612696845383084 ], [ 96.874945103433731, 53.729072171343603 ], [ 96.72673709464118, 53.705094305757598 ], [ 96.684052361926945, 53.638535061144125 ], [ 96.56829715359072, 53.650136419859848 ], [ 96.050189244038336, 53.99975332325721 ], [ 96.054943474961362, 54.087861639802782 ], [ 95.665716586751046, 54.244027817729602 ], [ 95.716669549659969, 54.387946681793892 ], [ 95.914693638000927, 54.395543118420164 ], [ 96.064658645080385, 54.573335883544189 ], [ 96.572844679838056, 54.51837799674712 ], [ 96.564886508905204, 54.6968683947606 ], [ 96.713817987210291, 54.919387111725825 ], [ 96.584936964968904, 55.023205065461354 ], [ 96.681571893228238, 55.077930406463054 ], [ 96.706583286689295, 55.258694565801534 ], [ 96.918043247297987, 55.329517116721547 ], [ 96.843112420601699, 55.441396593278114 ], [ 96.819961379114318, 55.557591051186023 ], [ 96.854791293683206, 55.593971259366072 ], [ 96.752782016876552, 55.650711981972336 ], [ 96.818101027140642, 55.700786444838513 ], [ 96.767561477180379, 55.768999334951332 ], [ 96.960004509600424, 55.860931708231703 ], [ 96.986462843885079, 56.018338121407169 ], [ 97.125265740921179, 56.101743882973778 ], [ 97.35191857298372, 56.051204332114196 ], [ 97.440181919160182, 56.146754054755775 ], [ 97.580225051444927, 56.195123196178542 ], [ 97.568236119101584, 56.382760321731439 ], [ 97.878088007155782, 56.411234035822076 ], [ 97.87705447838141, 56.544920965829874 ], [ 97.751480747138714, 56.560268866914669 ], [ 97.775045200675436, 56.779997056818672 ], [ 97.486277296559933, 56.810537828457996 ], [ 97.484933710322423, 56.892574164466112 ], [ 97.619912550623667, 56.953629869322981 ], [ 97.481936476786927, 56.965541287300539 ], [ 97.348507928298204, 57.048016872880339 ], [ 97.934001905663365, 57.811303616268845 ], [ 98.745218540003577, 57.792751776972921 ], [ 98.961639438908946, 57.723298652510778 ], [ 99.42207645076752, 57.798746243144592 ], [ 99.497524042300654, 57.929022529366193 ], [ 99.702782831162665, 58.085705471230483 ], [ 100.04343387237526, 58.078574124396312 ], [ 100.129320102640577, 57.866804104525784 ], [ 100.365171339985295, 57.732367866583729 ], [ 100.330754835667108, 57.688985500980039 ], [ 100.40496219285086, 57.55028595583218 ], [ 100.748817173173961, 57.403240667922432 ], [ 100.957796665084004, 57.498299465947582 ], [ 100.952422315637307, 57.560569565832793 ], [ 100.80142378068291, 57.67301748317027 ], [ 100.884622836674509, 57.769678249851324 ], [ 100.812689244413036, 57.883650621478978 ], [ 101.022392205835615, 57.892487291555256 ], [ 101.153960402350663, 58.01682078754925 ], [ 101.117993606219898, 58.118985093986851 ], [ 101.297620883996558, 58.219289049350095 ], [ 101.530888299855121, 58.225309353044167 ], [ 101.690258416892391, 58.417209784903605 ], [ 101.786273228426694, 58.453228257877754 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KK", "NAME_1": "Khakass" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.626869744642988, 54.96703278273668 ], [ 88.548424921372998, 55.016745510396959 ], [ 88.549975214084839, 55.083356431853815 ], [ 88.392775507383703, 55.267789619195526 ], [ 88.608773519881993, 55.445589632855217 ], [ 88.950157504964864, 55.289080308709231 ], [ 88.966073845931191, 55.184771430357216 ], [ 89.067049594862851, 55.132009793217378 ], [ 89.037904087203799, 55.084131578209735 ], [ 89.147354771005837, 55.076302599385428 ], [ 89.20078820171409, 54.990390529799072 ], [ 89.391680943220933, 54.973647366532703 ], [ 89.447181430578496, 55.03855296474751 ], [ 89.567277459587046, 55.0580349800303 ], [ 89.657814568887204, 55.00307709413255 ], [ 90.195869581715783, 55.151414293235007 ], [ 90.228839146109692, 55.06627737090389 ], [ 90.435544874896038, 55.016332099246938 ], [ 90.482673781070105, 54.927810369752763 ], [ 90.458282505233399, 54.870759588783983 ], [ 90.684831983609115, 54.904659329164701 ], [ 90.714907668154297, 54.831175442392748 ], [ 90.84048139759841, 54.838875230907149 ], [ 90.915308872406513, 54.791074531164668 ], [ 90.854950800439042, 54.626743475830722 ], [ 91.159014926997258, 54.487888901951237 ], [ 91.251722446633551, 54.274826971787263 ], [ 91.463905877654099, 54.056545721807595 ], [ 91.465146112003424, 53.966034450929158 ], [ 91.32654992144171, 53.816663723052329 ], [ 91.46969363825076, 53.513891506787559 ], [ 91.743992141324213, 53.446712145449112 ], [ 91.846414829280889, 53.351937568264134 ], [ 91.841247186308578, 53.288272203499389 ], [ 91.659862909345748, 53.158486842793536 ], [ 91.35114790195405, 53.077484036459111 ], [ 91.396313104266312, 52.867987778812903 ], [ 90.700334914324799, 52.458193671500737 ], [ 90.476589160561275, 52.183400842574827 ], [ 90.129413689889816, 52.135215969541321 ], [ 90.118871698370128, 52.043800361097738 ], [ 90.027507765870666, 51.984372464217813 ], [ 90.100888299855114, 51.75089834188492 ], [ 89.964979282667741, 51.761414495882264 ], [ 89.730368279672348, 51.582226466777968 ], [ 89.601383904643455, 51.553029283174851 ], [ 89.420929802768171, 51.605377509164668 ], [ 89.242336052866506, 51.552254136818931 ], [ 89.206162551160787, 51.658500882409783 ], [ 88.735700310820675, 51.559385484552422 ], [ 88.654051548440179, 51.531531887186816 ], [ 88.665420363159171, 51.423631496995938 ], [ 88.553385857870978, 51.336479193959633 ], [ 88.363733351612836, 51.319813544159729 ], [ 87.910014276337733, 51.490294094396916 ], [ 87.861541783026837, 51.54936025697026 ], [ 87.973472934628205, 51.602276922841668 ], [ 88.105867954342557, 51.761414495882264 ], [ 87.849036085846649, 51.77213735635388 ], [ 87.839114211051935, 51.810636298026679 ], [ 88.095119257247859, 52.086795152174489 ], [ 88.249218377625994, 52.062610581912793 ], [ 88.242190382679951, 52.11134145854146 ], [ 88.364766880387208, 52.16800466588262 ], [ 88.681853468962402, 52.25107453156437 ], [ 88.722367792239766, 52.313137925874571 ], [ 88.664283481597352, 52.344014594298073 ], [ 89.115418736285619, 52.597771714892701 ], [ 89.042141555088676, 52.706447252338819 ], [ 89.235618117182298, 52.810032661178354 ], [ 89.111077914713974, 52.866747545362898 ], [ 89.121723259920486, 52.915581772980431 ], [ 89.065085891001047, 52.954029038709166 ], [ 88.895070427857945, 52.987360338308918 ], [ 89.051443313158359, 53.13562002214627 ], [ 89.005864698796756, 53.19230906790915 ], [ 89.052890253082694, 53.243933824386431 ], [ 88.968761021104228, 53.345581366886563 ], [ 88.888869257010583, 53.387542630088262 ], [ 88.761228469118521, 53.365063382169353 ], [ 88.863031040350222, 53.48019847288117 ], [ 88.837192823689804, 53.588305569546378 ], [ 89.003797642147447, 53.667628892859113 ], [ 89.031599562669669, 53.75312755039613 ], [ 89.273755323649254, 53.849116523508712 ], [ 89.18208133278722, 53.872060859421083 ], [ 89.214327426769273, 53.941203925520711 ], [ 89.065395949363563, 53.954794827419335 ], [ 88.98147342296005, 54.065227363152246 ], [ 89.192623326105604, 54.149718329437349 ], [ 89.222492303277136, 54.250306504741388 ], [ 89.190039503720072, 54.321852525173881 ], [ 89.129164666915813, 54.350481268895408 ], [ 89.004314406084916, 54.290123196028674 ], [ 88.960802850171376, 54.364485581944052 ], [ 88.844737582573316, 54.415671087950329 ], [ 88.560827263967042, 54.287746080117472 ], [ 88.540156691178311, 54.340766100575081 ], [ 88.377996047079876, 54.388515123474122 ], [ 88.530544874746113, 54.42319000931144 ], [ 88.605475702341778, 54.526930446882602 ], [ 88.580464308880721, 54.578115952888879 ], [ 88.630590447690963, 54.746529446476757 ], [ 88.753063591711339, 54.80456207937641 ], [ 88.747585891275833, 54.890138251279268 ], [ 88.668004184645383, 54.876857407743159 ], [ 88.67699588435255, 54.956542467161114 ], [ 88.626869744642988, 54.96703278273668 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-MO", "NAME_1": "Mordovia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.42508100788217, 53.988539537269787 ], [ 43.173830194407913, 54.00016673440723 ], [ 43.106340772908311, 53.909216213957109 ], [ 43.160084262878399, 53.898157456701256 ], [ 43.168145785699437, 53.833975327998985 ], [ 43.075644973436738, 53.864981188530976 ], [ 42.918135206574505, 53.796975003093905 ], [ 42.771374138605609, 53.828445949820718 ], [ 42.737991163960999, 53.756150621453969 ], [ 42.719697707083469, 53.811186021717504 ], [ 42.573246698376408, 53.760000514811907 ], [ 42.574176874363218, 53.831029772206193 ], [ 42.509994744761627, 53.801315822866911 ], [ 42.525704380153002, 53.732017727136395 ], [ 42.307733189435112, 53.847462877110047 ], [ 42.461935662600752, 53.965440171726527 ], [ 42.273523389792558, 54.082022203262056 ], [ 42.282411736712277, 54.122226467277642 ], [ 42.534696078960849, 54.082745672774536 ], [ 42.529321730413528, 54.14199270340049 ], [ 42.599911737336811, 54.187855536803568 ], [ 42.438991326688381, 54.26015086517026 ], [ 42.258227167349844, 54.170698961487858 ], [ 42.183606398116751, 54.261856188412366 ], [ 42.278070916939214, 54.235656236546049 ], [ 42.632364535994498, 54.377663071793279 ], [ 42.543894484243026, 54.438537910396235 ], [ 42.556606886998225, 54.492229723522883 ], [ 42.645180292436521, 54.498792630475464 ], [ 42.620995721275506, 54.543182685532486 ], [ 42.69933719265731, 54.5823534207737 ], [ 42.608696729670328, 54.646690579106917 ], [ 42.623476189974156, 54.715084337272344 ], [ 42.560120883571869, 54.690615546170477 ], [ 42.419250929886459, 54.736297512420208 ], [ 42.386074659917597, 54.802236640308649 ], [ 42.466793247210546, 54.871302192042492 ], [ 42.616758254290005, 54.785855211348917 ], [ 42.694376255259954, 54.818566393324375 ], [ 43.079985793209744, 54.786423652129827 ], [ 43.155226678268548, 54.902747301246904 ], [ 43.388494094127111, 54.950444648201938 ], [ 43.610496047154811, 54.90114533079236 ], [ 43.72532107860485, 54.819858302718444 ], [ 43.94908003081872, 54.806990872130996 ], [ 43.946496209332565, 54.737589422713654 ], [ 44.109587030317186, 54.725807196844642 ], [ 44.100905388972478, 54.649171047805567 ], [ 44.437939080823924, 54.53842845281082 ], [ 44.638340285076083, 54.579356188137524 ], [ 44.670069614221291, 54.53806671850424 ], [ 44.600099724922359, 54.472541001765819 ], [ 44.784067824270664, 54.520186672776674 ], [ 44.930105421827705, 54.474556383370384 ], [ 45.090715773214356, 54.489490872405781 ], [ 45.146526319833754, 54.51995412878 ], [ 45.021366000640398, 54.576979072226379 ], [ 45.091439242726835, 54.65888621702527 ], [ 45.054748976184271, 54.751852119080013 ], [ 45.151693962806121, 54.796500556555429 ], [ 45.196239048393352, 54.750999457458988 ], [ 45.258767530696957, 54.870294500790578 ], [ 45.424442173167733, 54.881766669196395 ], [ 45.473224724841145, 55.080875963155165 ], [ 45.571306593924135, 55.085268459771555 ], [ 45.598385044034558, 55.160690212882969 ], [ 45.710316195635869, 55.176761583480243 ], [ 45.784523552819678, 55.112346909881978 ], [ 45.741632113631113, 55.08361481427221 ], [ 45.76995079899018, 55.038397936015883 ], [ 45.686855095786029, 54.994369615265498 ], [ 45.71341678195887, 54.970701808941328 ], [ 46.05572146957013, 55.042118639063915 ], [ 46.160417922449142, 54.972097072921542 ], [ 46.200208775314707, 55.071470852297978 ], [ 46.284648064756368, 55.038423774437604 ], [ 46.286508416730044, 54.963467109319595 ], [ 46.414665968559575, 54.895357571095019 ], [ 46.394202101345854, 54.817739570125013 ], [ 46.444121534581143, 54.687876695053433 ], [ 46.518638950127411, 54.650049546948992 ], [ 46.4370935396351, 54.582921861554667 ], [ 46.53693240700494, 54.584472154266507 ], [ 46.481948682685527, 54.497190660020919 ], [ 46.590469191400018, 54.50122142233073 ], [ 46.514918247079436, 54.444480698825146 ], [ 46.741777784716987, 54.365519110718367 ], [ 46.379422641941346, 54.230514431096083 ], [ 46.018307732615767, 54.189405829515408 ], [ 45.713933546795715, 53.919344794326776 ], [ 45.339279413314273, 53.884876614064467 ], [ 45.176188592329652, 53.9787726912067 ], [ 44.871194288885306, 53.967352200543587 ], [ 44.62707482314454, 53.896142075996011 ], [ 44.616842889088048, 53.825965481122012 ], [ 44.736422154159072, 53.704629217764136 ], [ 44.555657993021953, 53.66135020584727 ], [ 44.198780551581194, 53.763281969187517 ], [ 43.98918094294612, 53.75465200468625 ], [ 43.876939732082917, 53.809687404949727 ], [ 43.867534621225786, 53.847282009057437 ], [ 43.933473749114228, 53.867177436389568 ], [ 43.837975702416713, 53.934330960205614 ], [ 43.548794387151247, 54.012724107531483 ], [ 43.42508100788217, 53.988539537269787 ] ], [ [ 42.495111931670294, 54.754926866081973 ], [ 42.503070102603147, 54.791281235840358 ], [ 42.443952264085681, 54.803941961752116 ], [ 42.452117139694224, 54.770869046369342 ], [ 42.495111931670294, 54.754926866081973 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KLU", "NAME_1": "Kaluga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.00961632663217, 53.618277900404735 ], [ 35.910604281562314, 53.644038600900672 ], [ 35.772421502150564, 53.519782620171782 ], [ 35.640853305635517, 53.545827542407153 ], [ 35.448823682566854, 53.440872708009067 ], [ 35.355702751780541, 53.284241441189522 ], [ 35.280461866721737, 53.322585354130752 ], [ 35.194782342031431, 53.270547187402769 ], [ 35.103521763218794, 53.310777288940699 ], [ 35.013811476218621, 53.288375556286894 ], [ 35.013811476218621, 53.392865301792199 ], [ 34.500044387338562, 53.427281806110443 ], [ 34.536011182570007, 53.468364570168774 ], [ 34.489192335657719, 53.565180366480718 ], [ 34.537251417818652, 53.59817576839697 ], [ 34.290548129692411, 53.815061754396424 ], [ 34.217167595707963, 53.830254624950953 ], [ 34.199184198092269, 53.891594549748618 ], [ 33.881684198367054, 53.872474270571104 ], [ 33.68231652198989, 54.026392523795892 ], [ 33.4242444191446, 54.048897610136578 ], [ 33.617100863613928, 54.182791245719386 ], [ 33.586198357668025, 54.254724839779499 ], [ 33.68366010912672, 54.321335761236355 ], [ 33.616790806150789, 54.373890692801183 ], [ 33.674358351057037, 54.449183254703428 ], [ 33.637151319677628, 54.47677846875132 ], [ 33.7287219577521, 54.561682847985026 ], [ 34.107510207230234, 54.550314033265977 ], [ 34.382118767766883, 54.42375845009235 ], [ 34.415811801673271, 54.450836900202773 ], [ 34.386769646801724, 54.498999335151154 ], [ 34.499630975289278, 54.631988634068193 ], [ 34.408060337214749, 54.68012523149423 ], [ 34.654040154929191, 54.66291697933508 ], [ 34.823125441186164, 54.711751206952613 ], [ 34.923791130855989, 54.774383042943043 ], [ 34.84999718572152, 54.818359686850044 ], [ 34.8658101739004, 54.883833726745081 ], [ 34.992107374655575, 54.88202505071547 ], [ 35.064867791015729, 54.957110907942024 ], [ 35.141348911323178, 54.965224106707126 ], [ 35.127602979793664, 55.012508043411458 ], [ 35.240257602706151, 55.064856269401275 ], [ 35.369655388885064, 55.2387991402681 ], [ 35.47342166487789, 55.220764064909645 ], [ 35.567472771651069, 55.289855455065151 ], [ 35.706689080736453, 55.294299628524982 ], [ 36.139737583222882, 55.184952298409826 ], [ 36.317607862712691, 55.225311591156981 ], [ 36.352954543017745, 55.297141832429588 ], [ 36.557593215154725, 55.319672757191938 ], [ 36.591286249061113, 55.274636746088959 ], [ 36.751483189297744, 55.255749010008799 ], [ 36.785589634354096, 55.190585029375598 ], [ 36.924909295327723, 55.222469387252374 ], [ 37.081178826941311, 55.099634508026099 ], [ 37.187528924420292, 54.867891547356976 ], [ 37.259049107330441, 54.835826321427589 ], [ 37.183291457434791, 54.718365789849315 ], [ 37.207579379584672, 54.687669990377742 ], [ 37.072083775345959, 54.536051336899675 ], [ 36.805019971894183, 54.609948634821592 ], [ 36.850805290931419, 54.467993476417803 ], [ 36.964390089830772, 54.404638170015517 ], [ 36.926046176889542, 54.293559679135853 ], [ 36.461475050832917, 54.288159492166812 ], [ 36.405871208889153, 54.210903225503444 ], [ 36.244950799140042, 54.234777737402624 ], [ 36.19689171697911, 54.158451646726064 ], [ 36.023052198899848, 54.185116685686467 ], [ 36.112969190575654, 54.136385809957119 ], [ 36.087957798013917, 54.098868720215251 ], [ 36.216425409105341, 54.069878242187087 ], [ 35.910604281562314, 53.850150051383764 ], [ 35.963624302019923, 53.82188304286808 ], [ 35.957423130273241, 53.725584011392982 ], [ 36.058295526417396, 53.703957425095041 ], [ 35.990185988192763, 53.653727931698654 ], [ 36.00961632663217, 53.618277900404735 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KOS", "NAME_1": "Kostroma" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.607475213310408, 57.538658758694737 ], [ 40.665249464691044, 57.588991603979309 ], [ 40.622564731976752, 57.654930731867751 ], [ 40.607681918885419, 57.926903794974123 ], [ 40.884667596232532, 58.125548000939489 ], [ 40.881463657122083, 58.194019274369964 ], [ 41.163927035804022, 58.360882473447361 ], [ 41.075456984052551, 58.395970771334021 ], [ 41.03421919126265, 58.522061266514186 ], [ 40.926008741809937, 58.579112047482965 ], [ 41.220254348159642, 58.729593818499893 ], [ 41.134161411419996, 58.7990986189061 ], [ 41.247229444583184, 58.877104194403046 ], [ 41.168267857375668, 58.906068834009432 ], [ 41.167544386963868, 58.954799709738779 ], [ 41.341280552255682, 58.956608384869014 ], [ 41.743633254371161, 59.120836087415455 ], [ 41.874581333261915, 59.085902818260422 ], [ 42.026199985840663, 59.121611232872056 ], [ 42.089865349706088, 59.229718329537263 ], [ 41.95829715319104, 59.289973050515812 ], [ 42.049351027328044, 59.427225653940752 ], [ 42.1818493998299, 59.396581529513924 ], [ 42.190427686588464, 59.309300035268393 ], [ 42.284065383110942, 59.26160268831336 ], [ 42.601462030048651, 59.315966295008479 ], [ 42.671431919347583, 59.228426419243817 ], [ 42.854056430659739, 59.16158295379023 ], [ 43.025725539302186, 59.207807522399207 ], [ 43.111921827930018, 59.290128079247438 ], [ 43.336300896868863, 59.211683255078128 ], [ 43.340848423116199, 59.270646063964648 ], [ 43.492880486844967, 59.297207750137545 ], [ 43.525953404026325, 59.169360257569792 ], [ 43.7417541853074, 59.259535630764731 ], [ 43.935954216913558, 59.207135728830792 ], [ 44.145553827347214, 59.227031155263603 ], [ 44.331795688919897, 59.137605089103545 ], [ 44.991083612318846, 59.121611232872056 ], [ 45.06632449737765, 59.182434393732251 ], [ 45.95205854726413, 59.194319973288088 ], [ 46.029366488972244, 59.304339097871036 ], [ 46.356271599554645, 59.346972153741888 ], [ 46.406397739264207, 59.632536118746827 ], [ 47.113538039249079, 59.611297106076563 ], [ 47.056280551805969, 59.378546454155526 ], [ 47.252444289072685, 59.35549876635497 ], [ 47.23921512237996, 59.220209865892571 ], [ 47.441993443442641, 59.164244290541546 ], [ 47.570874464784708, 59.05985789692437 ], [ 47.549893832734142, 58.99800120728986 ], [ 47.604360793116086, 58.913045152112034 ], [ 47.300193311971725, 58.913148504899539 ], [ 47.31652306498745, 58.797780870190991 ], [ 47.221541782227462, 58.750445258441914 ], [ 47.107336866603077, 58.768609524110218 ], [ 47.007911411282578, 58.692800198270504 ], [ 47.000366652399066, 58.620143133798535 ], [ 46.59305301288623, 58.560611884131106 ], [ 46.551505160834495, 58.482580471111817 ], [ 46.584061314078383, 58.430387274752889 ], [ 46.411255323874059, 58.353647772926365 ], [ 46.479674919561887, 58.338248195897506 ], [ 46.41435591019706, 58.308327541882534 ], [ 46.412598911010889, 58.213501287854115 ], [ 46.31358686684041, 58.11606537481714 ], [ 46.341285434575127, 58.07464671487395 ], [ 45.828241815207605, 58.049221910262929 ], [ 45.562935011841319, 57.935094509903706 ], [ 45.462062615697107, 58.03532095000179 ], [ 44.862616001227423, 58.07542186122987 ], [ 44.792025995203517, 57.961320299292368 ], [ 44.864579705988604, 57.879826564744121 ], [ 44.737869094083408, 57.705780341089849 ], [ 44.566820103065254, 57.695651759820805 ], [ 44.342957798063878, 57.53214752948486 ], [ 43.995382113793482, 57.439517524214352 ], [ 43.727388137052856, 57.465794990446398 ], [ 43.537942336369724, 57.572403469444509 ], [ 43.576389601199139, 57.654982407811815 ], [ 43.312323032182178, 57.517058009919197 ], [ 43.263540479609446, 57.424350491182167 ], [ 43.193157180059814, 57.424505519913794 ], [ 43.207109816264961, 57.63389842387312 ], [ 43.158017206229033, 57.428458766958499 ], [ 42.853332961147203, 57.394326484379746 ], [ 42.818399692891489, 57.426753445515089 ], [ 42.870076125312892, 57.497369289960716 ], [ 42.826151157350012, 57.52987376636122 ], [ 42.854676548284033, 57.659736640533481 ], [ 42.775818312065439, 57.703248196447078 ], [ 42.649727817784537, 57.63524201100995 ], [ 42.414496698064113, 57.635086982278381 ], [ 42.35300174273624, 57.583307197069473 ], [ 42.180195754330555, 57.560052801895267 ], [ 41.630048456371128, 57.749860337784355 ], [ 41.567209913906368, 57.704204209956288 ], [ 41.608757765058783, 57.563980211417572 ], [ 41.560078566172876, 57.463676256054327 ], [ 41.16971479730006, 57.43520254196369 ], [ 41.062124464572378, 57.342882595055698 ], [ 40.445211216424468, 57.276349188863946 ], [ 40.399735955749748, 57.418252672222991 ], [ 40.450172152922505, 57.436442776313072 ], [ 40.386713494632033, 57.503260403344939 ], [ 40.489859653000565, 57.499436347509402 ], [ 40.440250278127792, 57.552301337436745 ], [ 40.503502231742573, 57.581240139520787 ], [ 40.607475213310408, 57.538658758694737 ] ] ], [ [ [ 44.442589958959388, 59.212871813483389 ], [ 44.483827751749345, 59.192072049485489 ], [ 44.494369745067672, 59.162177232093541 ], [ 44.42533003085623, 59.184553128124321 ], [ 44.442589958959388, 59.212871813483389 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-YAR", "NAME_1": "Yaroslavl'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.926008741809937, 58.579112047482965 ], [ 41.03421919126265, 58.522061266514186 ], [ 41.075456984052551, 58.395970771334021 ], [ 41.163927035804022, 58.360882473447361 ], [ 40.881463657122083, 58.194019274369964 ], [ 40.884667596232532, 58.125548000939489 ], [ 40.607681918885419, 57.926903794974123 ], [ 40.664422642391003, 57.584960843468139 ], [ 40.607475213310408, 57.538658758694737 ], [ 40.499058058282742, 57.580309964433297 ], [ 40.440250278127792, 57.552301337436745 ], [ 40.489859653000565, 57.499436347509402 ], [ 40.386713494632033, 57.503260403344939 ], [ 40.450172152922505, 57.436442776313072 ], [ 40.399735955749748, 57.418252672222991 ], [ 40.445211216424468, 57.276349188863946 ], [ 40.1948905780377, 57.284514065371809 ], [ 40.224966261683619, 57.263585110164684 ], [ 40.177940708297001, 57.205604153209094 ], [ 39.841733839644974, 57.176820379856622 ], [ 39.826954380240409, 57.109589342574054 ], [ 39.520203077609949, 57.02685537457586 ], [ 39.579320917026678, 56.967530829584064 ], [ 39.390495233068521, 56.84397247994599 ], [ 39.417160272028923, 56.772090562729261 ], [ 39.356285435224606, 56.772090562729261 ], [ 39.309776645775571, 56.684447333277774 ], [ 39.337371860722783, 56.609361476950596 ], [ 39.271639439308672, 56.538306382933172 ], [ 39.121054314604919, 56.593677679980942 ], [ 39.000028111408199, 56.542750556393059 ], [ 38.758802524616783, 56.609826564944001 ], [ 38.548066034419946, 56.54734975948378 ], [ 38.510445590991196, 56.644449774837199 ], [ 38.322756788594916, 56.710983181028951 ], [ 38.121115349993374, 56.874926662735277 ], [ 38.201833937286381, 56.897922675491031 ], [ 38.210102166581692, 56.962621568130828 ], [ 38.152637973563628, 56.98752960880438 ], [ 38.219507277438879, 57.00817434317139 ], [ 38.259918247029475, 57.089073798516949 ], [ 38.152637973563628, 57.22710154919713 ], [ 38.30642703557919, 57.276349188863946 ], [ 38.285756462790516, 57.365775255023948 ], [ 38.086285435424486, 57.341771551915542 ], [ 37.794830357035323, 57.433548896464345 ], [ 37.840615676072559, 57.466725165533944 ], [ 37.795243768185344, 57.51000417745081 ], [ 37.827593214954902, 57.630746162505375 ], [ 37.655614047949939, 57.67513621756234 ], [ 37.346382276620773, 57.886854559690164 ], [ 37.495520461400133, 57.893624173117075 ], [ 37.366536086371241, 57.97713328747119 ], [ 37.51515750541455, 57.987055162265904 ], [ 37.539755486826209, 58.049376939893818 ], [ 37.672253859328123, 58.07542186122987 ], [ 37.346795688670056, 58.248279527378259 ], [ 37.421933220941355, 58.315252184041015 ], [ 37.369843377369932, 58.349410305041488 ], [ 37.449115024738603, 58.407546292527343 ], [ 37.64403852675656, 58.429353745978574 ], [ 37.626261833816557, 58.490228582782834 ], [ 37.722379999037685, 58.627171128744578 ], [ 37.891361931607833, 58.61714590116236 ], [ 38.047631463221421, 58.735743313403191 ], [ 38.478199497009143, 58.706029364963172 ], [ 38.56336225776198, 58.779306546160171 ], [ 38.908974237271195, 58.740135810019581 ], [ 38.901842888638384, 58.793414211996264 ], [ 39.002198520845013, 58.849276435459103 ], [ 38.918069288866548, 58.884881497283232 ], [ 38.940290155266439, 58.944309394163156 ], [ 39.530538363554626, 58.876923326350379 ], [ 39.595030552418052, 58.906378893271267 ], [ 39.838633254221293, 58.767679348123409 ], [ 39.968961216387015, 58.759462796570801 ], [ 40.195303989187721, 58.549759833349583 ], [ 40.495647413597226, 58.556400255567326 ], [ 40.625458611825479, 58.605983792018378 ], [ 40.926008741809937, 58.579112047482965 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-VLA", "NAME_1": "Vladimir" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.271639439308672, 56.538306382933172 ], [ 39.337371860722783, 56.609361476950596 ], [ 39.309776645775571, 56.684447333277774 ], [ 39.356285435224606, 56.772090562729261 ], [ 39.679366489072208, 56.821777451967819 ], [ 39.858787062173178, 56.779635322512092 ], [ 39.880077751686883, 56.64966909375363 ], [ 39.828401320164744, 56.615898546380777 ], [ 39.947980584336449, 56.483477688244704 ], [ 40.155926548371497, 56.434281725421272 ], [ 40.458233676642863, 56.531950182454921 ], [ 40.505362582816929, 56.596132311157191 ], [ 40.837125278009125, 56.580164293347423 ], [ 40.913606398316631, 56.499445706054473 ], [ 40.962802362039326, 56.532156887130611 ], [ 41.084965447697243, 56.472832343038192 ], [ 41.900729608284792, 56.540941881262768 ], [ 41.966978793636372, 56.386532700723535 ], [ 42.066404249856248, 56.368394273476895 ], [ 42.288612909358278, 56.471282050326352 ], [ 42.587922804993411, 56.420225735529243 ], [ 42.760832147085921, 56.30607249584898 ], [ 42.754734328126744, 56.220134588740223 ], [ 42.947900831857908, 56.168716538737272 ], [ 42.698303663882939, 56.130424303538746 ], [ 42.694066195998118, 56.002783514747364 ], [ 42.644766880387181, 55.951649685584471 ], [ 42.57541710781328, 55.975575873427772 ], [ 42.391862419614938, 55.78264191279402 ], [ 42.263394810322211, 55.76471019112239 ], [ 42.106608513871777, 55.663837795877555 ], [ 42.11653038866649, 55.612936509812073 ], [ 42.040359327620877, 55.608699041927196 ], [ 42.068367953718052, 55.48126496050952 ], [ 42.133997023243978, 55.442094225268249 ], [ 41.932975702266845, 55.329853014405046 ], [ 41.954059686205539, 55.277711493990239 ], [ 41.85866499229553, 55.24091787376085 ], [ 41.902589959359091, 55.199008287402535 ], [ 41.870240512589589, 55.157615464981689 ], [ 41.658263788043371, 55.108936266095782 ], [ 41.496619906983085, 55.156995348256714 ], [ 41.421999138649312, 55.129270942100277 ], [ 41.196793247410426, 55.221745916840575 ], [ 41.096127556841225, 55.199266668921609 ], [ 41.080934686286696, 55.147383530925197 ], [ 40.964559361225497, 55.26039988904364 ], [ 40.621117792052416, 55.205209459149216 ], [ 40.535748324825306, 55.326752428082045 ], [ 40.400149366899768, 55.287323310422437 ], [ 40.322738070605453, 55.293757026165792 ], [ 40.345372349054628, 55.33998159387545 ], [ 40.206466099231079, 55.309337470347941 ], [ 40.142697380779452, 55.406127428238221 ], [ 40.183418409631884, 55.449173896158356 ], [ 40.143317499303123, 55.513924466540857 ], [ 40.035933872150451, 55.516559963971133 ], [ 40.085026483085699, 55.612600613027837 ], [ 39.900231561437408, 55.734479478744902 ], [ 39.856720004624492, 55.82561086724769 ], [ 39.358145786298962, 55.761041164917799 ], [ 39.324659457967584, 55.827600410430591 ], [ 39.054391717203941, 55.852456773361382 ], [ 39.015841098687758, 55.925217189721479 ], [ 38.839417759122284, 55.900903429149935 ], [ 38.597882113968353, 55.962320869212704 ], [ 38.506311475893881, 56.225767319705994 ], [ 38.402751906375329, 56.26424042385645 ], [ 38.393346794618878, 56.455727444565866 ], [ 38.293404575360853, 56.533035387173356 ], [ 38.323170199744879, 56.671889960153521 ], [ 38.374123162653802, 56.696591295252063 ], [ 38.533286574116062, 56.626466376322185 ], [ 38.562122023412655, 56.541923733193698 ], [ 38.758802524616783, 56.609826564944001 ], [ 39.000028111408199, 56.542750556393059 ], [ 39.121054314604919, 56.593677679980942 ], [ 39.271639439308672, 56.538306382933172 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-RYA", "NAME_1": "Ryazan'" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.05226362516612, 53.382039090331716 ], [ 39.903745558011053, 53.422320868713086 ], [ 39.885658806708534, 53.519265856234256 ], [ 39.727322219344899, 53.59238800690099 ], [ 39.511521437164561, 53.525363675193432 ], [ 39.483616163854833, 53.431829332357779 ], [ 39.181619093945983, 53.385733954058708 ], [ 39.047673780620471, 53.547119452700542 ], [ 38.895435012216012, 53.565206204003061 ], [ 38.914968703442867, 53.609131171066679 ], [ 38.865669386932666, 53.628639023871813 ], [ 38.921686639127074, 53.732767035969914 ], [ 38.806964958665901, 53.772377020782869 ], [ 38.793322380823213, 53.88105255822893 ], [ 38.844275343732079, 53.936294664067475 ], [ 38.713740675991403, 54.001251940024986 ], [ 38.696274042313178, 54.089773667720578 ], [ 38.763866814801645, 54.134809678823615 ], [ 38.745676710711621, 54.183308010556232 ], [ 38.671882764677832, 54.177416897172066 ], [ 38.736891716579407, 54.345055244403966 ], [ 38.917759229604712, 54.404534817228011 ], [ 38.793839145660002, 54.457399807155355 ], [ 38.80768842997702, 54.589949856500652 ], [ 39.232055292018117, 54.635270087544484 ], [ 39.237946405402283, 54.711027737440077 ], [ 39.354735141613446, 54.728856106324201 ], [ 39.32744998592807, 54.751748766292508 ], [ 39.379126418349529, 54.853396307893263 ], [ 39.48837039567718, 54.94083283087042 ], [ 39.684534132943838, 55.020724595863385 ], [ 39.812795037560932, 54.997470200689179 ], [ 39.889172805080875, 55.08477753425575 ], [ 39.720190870712088, 55.12604116546737 ], [ 40.012059361150591, 55.20350413680643 ], [ 40.235818311565822, 55.335950833364222 ], [ 40.35157352080131, 55.33920644841885 ], [ 40.320981073217922, 55.296857612488793 ], [ 40.375344679913042, 55.286238104804681 ], [ 40.535748324825306, 55.326752428082045 ], [ 40.621117792052416, 55.205209459149216 ], [ 40.964559361225497, 55.26039988904364 ], [ 41.080934686286696, 55.147383530925197 ], [ 41.096127556841225, 55.199266668921609 ], [ 41.210332473364929, 55.221177476958985 ], [ 41.41156049991713, 55.130976264443007 ], [ 41.783217400762396, 55.11911652330889 ], [ 41.872617629400054, 55.058758450442099 ], [ 41.981241489103411, 55.088989162819587 ], [ 42.006666293714488, 55.023954373395611 ], [ 41.964808384199557, 55.001811022260824 ], [ 42.166656528376052, 54.949049384221667 ], [ 42.482399529814415, 54.999976507809549 ], [ 42.442712029736356, 54.956542467161114 ], [ 42.466793247210546, 54.871302192042492 ], [ 42.385764600655762, 54.788542384723257 ], [ 42.477748650779574, 54.714903469219678 ], [ 42.623476189974156, 54.715084337272344 ], [ 42.608696729670328, 54.646690579106917 ], [ 42.69933719265731, 54.5823534207737 ], [ 42.620995721275506, 54.543182685532486 ], [ 42.645180292436521, 54.498792630475464 ], [ 42.556606886998225, 54.492229723522883 ], [ 42.543894484243026, 54.438537910396235 ], [ 42.632364535994498, 54.377663071793279 ], [ 42.278070916939214, 54.235656236546049 ], [ 42.183606398116751, 54.261856188412366 ], [ 42.258227167349844, 54.170698961487858 ], [ 42.438991326688381, 54.26015086517026 ], [ 42.599911737336811, 54.187855536803568 ], [ 42.529321730413528, 54.14199270340049 ], [ 42.534696078960849, 54.082745672774536 ], [ 42.282411736712277, 54.122226467277642 ], [ 42.273523389792558, 54.082022203262056 ], [ 42.461935662600752, 53.965440171726527 ], [ 42.307733189435112, 53.847462877110047 ], [ 41.400088332410576, 53.783177394720951 ], [ 41.351099074262834, 53.75330841754942 ], [ 41.348928663926699, 53.548773098199888 ], [ 41.166924269339518, 53.431415921207758 ], [ 40.926835565009299, 53.505364895073797 ], [ 40.85169803183868, 53.482162176743032 ], [ 40.686746860679079, 53.564689440065592 ], [ 40.480971306980223, 53.453533433920825 ], [ 40.423403762073917, 53.493608506727185 ], [ 40.382062615597192, 53.342945869456287 ], [ 40.305478143401558, 53.374546007392325 ], [ 40.190239699002859, 53.334677639261599 ], [ 40.123370396026928, 53.398058784085606 ], [ 40.05226362516612, 53.382039090331716 ] ] ], [ [ [ 42.464622836874412, 54.810711575179027 ], [ 42.503070102603147, 54.791281235840358 ], [ 42.506894159337946, 54.75872508439511 ], [ 42.452117139694224, 54.770869046369342 ], [ 42.464622836874412, 54.810711575179027 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-IVA", "NAME_1": "Ivanovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.630048456371128, 57.749860337784355 ], [ 42.180195754330555, 57.560052801895267 ], [ 42.35300174273624, 57.583307197069473 ], [ 42.414496698064113, 57.635086982278381 ], [ 42.649727817784537, 57.63524201100995 ], [ 42.775818312065439, 57.703248196447078 ], [ 42.854676548284033, 57.659736640533481 ], [ 42.826151157350012, 57.52987376636122 ], [ 42.870076125312892, 57.497369289960716 ], [ 42.822223748727026, 57.415410468318441 ], [ 42.973118930893918, 57.387505195008714 ], [ 43.158017206229033, 57.428458766958499 ], [ 43.167525668974406, 57.588939928035245 ], [ 43.207109816264961, 57.63389842387312 ], [ 43.213310988011642, 57.415410468318441 ], [ 43.476757440303629, 57.623976549078463 ], [ 43.583831008194466, 57.654982407811815 ], [ 43.542386508930235, 57.566925768109684 ], [ 43.714158970360188, 57.491839911782449 ], [ 43.70702762172732, 57.424660550444003 ], [ 43.863297154240229, 57.371072089205541 ], [ 43.698035922919473, 57.337430732142536 ], [ 43.676641879718943, 57.268494370718599 ], [ 43.538562453094698, 57.261776435034449 ], [ 43.500942009666005, 57.122405097217438 ], [ 43.680362582766975, 57.057964586096716 ], [ 43.50125206892784, 56.906449287204794 ], [ 42.843617791927556, 56.815292060280342 ], [ 42.786567010059457, 56.669047757148235 ], [ 42.904492628731816, 56.642227688556943 ], [ 42.906042922342976, 56.583058173196093 ], [ 42.830181918760502, 56.532621975124016 ], [ 42.888472934977926, 56.513837591831361 ], [ 42.881858351181961, 56.47159210868881 ], [ 42.638669061428004, 56.479033514784874 ], [ 42.64052941340168, 56.441490587520548 ], [ 42.552369419113404, 56.413714505420046 ], [ 42.288612909358278, 56.471282050326352 ], [ 42.058962843760185, 56.368006699849275 ], [ 41.957677035566689, 56.390563463033345 ], [ 41.909514600618309, 56.539701646913443 ], [ 41.084965447697243, 56.472832343038192 ], [ 40.71465213398875, 56.598457750224952 ], [ 40.505362582816929, 56.596132311157191 ], [ 40.458233676642863, 56.531950182454921 ], [ 40.155926548371497, 56.434281725421272 ], [ 39.951391229021965, 56.480816352392708 ], [ 39.833672315924616, 56.608586331493996 ], [ 39.880077751686883, 56.64966909375363 ], [ 39.858787062173178, 56.779635322512092 ], [ 39.625416294426429, 56.824697171137529 ], [ 39.484339634266689, 56.765889390982579 ], [ 39.392045525780361, 56.793277900354781 ], [ 39.461085239092483, 56.915854397162661 ], [ 39.579320917026678, 56.967530829584064 ], [ 39.516482374561917, 57.024039008193654 ], [ 39.826954380240409, 57.109589342574054 ], [ 39.841733839644974, 57.176820379856622 ], [ 40.177940708297001, 57.205604153209094 ], [ 40.205122512094249, 57.286891181282954 ], [ 41.007967564351588, 57.335673732956366 ], [ 41.16971479730006, 57.43520254196369 ], [ 41.560078566172876, 57.463676256054327 ], [ 41.608757765058783, 57.563980211417572 ], [ 41.567209913906368, 57.704204209956288 ], [ 41.630048456371128, 57.749860337784355 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-NIZ", "NAME_1": "Nizhegorod" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.722615187241047, 54.969823309797903 ], [ 45.686855095786029, 54.994369615265498 ], [ 45.76995079899018, 55.038397936015883 ], [ 45.740391880181107, 55.077284451316359 ], [ 45.782043085020348, 55.11720449539115 ], [ 45.735120884421235, 55.172188218811243 ], [ 45.604689568568688, 55.16381663672837 ], [ 45.571306593924135, 55.085268459771555 ], [ 45.489864536219329, 55.092709865867562 ], [ 45.439118279784736, 55.033230292144253 ], [ 45.424442173167733, 54.881766669196395 ], [ 45.258767530696957, 54.870294500790578 ], [ 45.196239048393352, 54.750999457458988 ], [ 45.151693962806121, 54.796500556555429 ], [ 45.054748976184271, 54.751852119080013 ], [ 45.091439242726835, 54.65888621702527 ], [ 45.021366000640398, 54.576979072226379 ], [ 45.132263625266091, 54.504399523019572 ], [ 44.930105421827705, 54.474556383370384 ], [ 44.76298384033197, 54.51935985047669 ], [ 44.60723107265585, 54.471042384998043 ], [ 44.670069614221291, 54.53806671850424 ], [ 44.638340285076083, 54.579356188137524 ], [ 44.437939080823924, 54.53842845281082 ], [ 44.100905388972478, 54.649171047805567 ], [ 44.109587030317186, 54.725807196844642 ], [ 43.946496209332565, 54.737589422713654 ], [ 43.94908003081872, 54.806990872130996 ], [ 43.72532107860485, 54.819858302718444 ], [ 43.587758416817451, 54.907863268275207 ], [ 43.249484490616737, 54.935406806378978 ], [ 43.150162388083743, 54.899284979718004 ], [ 43.079985793209744, 54.786423652129827 ], [ 42.694376255259954, 54.818566393324375 ], [ 42.616758254290005, 54.785855211348917 ], [ 42.466793247210546, 54.871302192042492 ], [ 42.472477655019759, 55.005221666047021 ], [ 42.166656528376052, 54.949049384221667 ], [ 41.964808384199557, 55.001811022260824 ], [ 42.006149529776962, 55.021706447794315 ], [ 41.987442660850093, 55.086508694120937 ], [ 41.854117466048194, 55.060980536722354 ], [ 41.781667108050556, 55.112346909881978 ], [ 41.885640089618391, 55.170017809374372 ], [ 41.85866499229553, 55.24091787376085 ], [ 41.954059686205539, 55.277711493990239 ], [ 41.932975702266845, 55.329853014405046 ], [ 42.133997023243978, 55.442094225268249 ], [ 42.068367953718052, 55.48126496050952 ], [ 42.040359327620877, 55.608699041927196 ], [ 42.11653038866649, 55.612936509812073 ], [ 42.106608513871777, 55.663837795877555 ], [ 42.263394810322211, 55.76471019112239 ], [ 42.391862419614938, 55.78264191279402 ], [ 42.57541710781328, 55.975575873427772 ], [ 42.644766880387181, 55.951649685584471 ], [ 42.694066195998118, 56.002783514747364 ], [ 42.698303663882939, 56.130424303538746 ], [ 42.947900831857908, 56.168716538737272 ], [ 42.754734328126744, 56.220134588740223 ], [ 42.760832147085921, 56.30607249584898 ], [ 42.587922804993411, 56.420225735529243 ], [ 42.638669061428004, 56.479033514784874 ], [ 42.881858351181961, 56.47159210868881 ], [ 42.888472934977926, 56.513837591831361 ], [ 42.830181918760502, 56.532621975124016 ], [ 42.906042922342976, 56.583058173196093 ], [ 42.904492628731816, 56.642227688556943 ], [ 42.786567010059457, 56.669047757148235 ], [ 42.829975213185492, 56.802269599162628 ], [ 43.50125206892784, 56.906449287204794 ], [ 43.680362582766975, 57.057964586096716 ], [ 43.500942009666005, 57.122405097217438 ], [ 43.538562453094698, 57.261776435034449 ], [ 43.676641879718943, 57.268494370718599 ], [ 43.698035922919473, 57.337430732142536 ], [ 43.862056918991584, 57.365775255023948 ], [ 43.70702762172732, 57.424660550444003 ], [ 43.727388137052856, 57.465794990446398 ], [ 43.845727166875236, 57.430861721291365 ], [ 44.062871535293084, 57.453392646053771 ], [ 44.413341099412207, 57.565272121711018 ], [ 44.566820103065254, 57.695651759820805 ], [ 44.737869094083408, 57.705780341089849 ], [ 44.864579705988604, 57.879826564744121 ], [ 44.792025995203517, 57.961320299292368 ], [ 44.862616001227423, 58.07542186122987 ], [ 45.462062615697107, 58.03532095000179 ], [ 45.562935011841319, 57.935094509903706 ], [ 45.828241815207605, 58.049221910262929 ], [ 46.341285434575127, 58.07464671487395 ], [ 46.442571241869302, 58.019559637767031 ], [ 47.354246861203649, 58.025502427994638 ], [ 47.739236280629825, 57.936489772984601 ], [ 47.762283970229021, 57.876002508908641 ], [ 47.566223585749867, 57.803035386973477 ], [ 47.535011021441449, 57.616121730933116 ], [ 47.471035598314188, 57.528530178325013 ], [ 47.260505811893665, 57.569122015968219 ], [ 47.036746860579115, 57.494604601321271 ], [ 46.749012486137303, 57.521863919484247 ], [ 46.798105096173231, 57.461919256868157 ], [ 46.701056755864556, 57.418562731484826 ], [ 46.750459426061639, 57.385489814303469 ], [ 46.680179478400191, 57.351331692403676 ], [ 46.844820591197276, 57.229065253058934 ], [ 46.734336378620924, 57.199919746299202 ], [ 46.764825474316183, 57.035381985390302 ], [ 46.713149041894724, 57.012437649477931 ], [ 46.746428663751828, 56.970321357544606 ], [ 46.601011182919706, 56.919962673838313 ], [ 46.336014438815255, 56.952079575711821 ], [ 46.302734816058887, 56.900635688186412 ], [ 45.958569777373327, 56.87208445883067 ], [ 45.908753696026224, 56.780229600815403 ], [ 45.921776157143938, 56.652252916139162 ], [ 45.644480422333572, 56.584014186705303 ], [ 45.662670526423653, 56.460920925959954 ], [ 45.948957960941129, 56.433222358225237 ], [ 45.943273553131974, 56.318113105035764 ], [ 45.873510370307315, 56.304883938343039 ], [ 45.873820427770511, 56.258840236887409 ], [ 46.067710401913473, 56.181919867907538 ], [ 46.092205031437004, 56.056371975086563 ], [ 46.2139547059449, 56.049809068133982 ], [ 46.098819614333706, 55.940771796381284 ], [ 46.135199823413075, 55.896407578846663 ], [ 46.093755324148844, 55.807963365516855 ], [ 45.988335401757354, 55.776802477152557 ], [ 46.009522739382874, 55.742670192775165 ], [ 45.920122511644593, 55.688048204560971 ], [ 46.118766716710581, 55.530409247388832 ], [ 46.386760695249848, 55.451551012069501 ], [ 46.220155876792262, 55.356983141358853 ], [ 46.226563755013274, 55.265257472754115 ], [ 46.097889439246217, 55.204175930374845 ], [ 46.081766391805502, 55.064649562926945 ], [ 46.034430780056425, 55.02485871006138 ], [ 45.722615187241047, 54.969823309797903 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-TUL", "NAME_1": "Tula" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.895435012216012, 53.565206204003061 ], [ 38.704128858659885, 53.509757391690243 ], [ 38.753944940006932, 53.376380520044961 ], [ 38.477269321022334, 53.310027981006499 ], [ 38.597985466755858, 53.236492418290425 ], [ 38.576901482817163, 53.167556056866488 ], [ 38.635502557397103, 53.117223212481235 ], [ 38.603153110627545, 53.055779933996746 ], [ 38.327511021316582, 52.961832180011072 ], [ 38.271080357072776, 53.021260077790316 ], [ 38.099617954005339, 53.060792548237487 ], [ 37.912445917345167, 53.07262645094994 ], [ 37.84102908722258, 53.008547675035175 ], [ 37.712561476131214, 53.131511746369995 ], [ 37.585850864225961, 53.13541331657126 ], [ 37.560632765189951, 53.296230374432184 ], [ 37.340181104874091, 53.307237453945334 ], [ 37.196934035277479, 53.25070343691408 ], [ 36.780938755319255, 53.304343574096663 ], [ 36.666837193381753, 53.41586131544733 ], [ 36.53516564317988, 53.391366685923799 ], [ 36.398016391643125, 53.428522040459768 ], [ 36.23161827965987, 53.574146226866844 ], [ 36.014577264029469, 53.586290187941813 ], [ 35.990185988192763, 53.653727931698654 ], [ 36.058295526417396, 53.703957425095041 ], [ 35.957423130273241, 53.725584011392982 ], [ 35.963624302019923, 53.82188304286808 ], [ 35.910604281562314, 53.850150051383764 ], [ 36.216425409105341, 54.069878242187087 ], [ 36.087957798013917, 54.098868720215251 ], [ 36.112969190575654, 54.136385809957119 ], [ 36.0310103698327, 54.190801093495622 ], [ 36.190173781294959, 54.157211412376739 ], [ 36.244950799140042, 54.234777737402624 ], [ 36.405871208889153, 54.210903225503444 ], [ 36.461475050832917, 54.288159492166812 ], [ 36.926046176889542, 54.293559679135853 ], [ 36.964390089830772, 54.404638170015517 ], [ 36.850805290931419, 54.467993476417803 ], [ 36.805019971894183, 54.609948634821592 ], [ 37.072083775345959, 54.536051336899675 ], [ 37.207579379584672, 54.687669990377742 ], [ 37.183291457434791, 54.718365789849315 ], [ 37.259049107330441, 54.835826321427589 ], [ 37.447668083914891, 54.830245266405882 ], [ 37.671323683341313, 54.713508206138783 ], [ 37.75834679516845, 54.736219998054423 ], [ 37.755866327369063, 54.823165595515775 ], [ 37.938594190569404, 54.832260647111127 ], [ 38.049491815195097, 54.709270738253963 ], [ 38.515096470026037, 54.597701320959175 ], [ 38.377223748976803, 54.514760647385913 ], [ 38.388385858120841, 54.472334296190809 ], [ 38.50455447760703, 54.388566800317562 ], [ 38.521194288985214, 54.288831284835908 ], [ 38.675086703788338, 54.244673773775617 ], [ 38.674776646325142, 54.169820462344433 ], [ 38.751671176883292, 54.177830309221349 ], [ 38.763866814801645, 54.134809678823615 ], [ 38.694310336652677, 54.074916693950229 ], [ 38.713740675991403, 54.001251940024986 ], [ 38.844275343732079, 53.936294664067475 ], [ 38.793322380823213, 53.88105255822893 ], [ 38.804071078817231, 53.77775137022951 ], [ 38.916518996154707, 53.745608629034962 ], [ 38.865669386932666, 53.628639023871813 ], [ 38.914968703442867, 53.609131171066679 ], [ 38.895435012216012, 53.565206204003061 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-CU", "NAME_1": "Chuvash" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.412373488345793, 55.829357407818065 ], [ 48.224994745211291, 55.701406562462864 ], [ 48.08102420430356, 55.680270900781409 ], [ 48.01839236831313, 55.614435126579792 ], [ 48.091566195823248, 55.536455390403944 ], [ 47.973847283625219, 55.499506741442929 ], [ 47.834114210602309, 55.34210032826752 ], [ 47.696034783978064, 55.323135077821576 ], [ 47.69903201661424, 55.222727770570145 ], [ 47.785435011716402, 55.220247300972119 ], [ 47.818611280785944, 55.276419582797473 ], [ 47.892611932394743, 55.241848049747659 ], [ 47.871527947556729, 55.284868679246131 ], [ 47.923411085553141, 55.314246730901857 ], [ 48.012707961403294, 55.28083791783564 ], [ 48.084641554564087, 55.150535794091581 ], [ 48.068725212698382, 55.098600979251785 ], [ 47.917933384218259, 55.060102037578929 ], [ 48.028934360732137, 55.019122626308103 ], [ 47.996274854700744, 54.968247179563662 ], [ 47.788018833202557, 54.939230862214515 ], [ 47.846929966145012, 54.815724189419768 ], [ 47.757529738406674, 54.903005682766036 ], [ 47.748227980336992, 54.828539944063152 ], [ 47.432381626111123, 54.891791896778614 ], [ 47.370369906845724, 54.752575589491812 ], [ 47.203971794862412, 54.657852688250955 ], [ 47.062998488389496, 54.690202135020513 ], [ 46.860943637738671, 54.630257473303743 ], [ 46.411668735923399, 54.792779853507398 ], [ 46.414665968559575, 54.895357571095019 ], [ 46.286508416730044, 54.963467109319595 ], [ 46.261600376056492, 55.054210924194763 ], [ 46.200208775314707, 55.071470852297978 ], [ 46.160417922449142, 54.972097072921542 ], [ 46.05572146957013, 55.042118639063915 ], [ 46.097889439246217, 55.204175930374845 ], [ 46.226563755013274, 55.265257472754115 ], [ 46.220155876792262, 55.356983141358853 ], [ 46.386760695249848, 55.451551012069501 ], [ 46.118766716710581, 55.530409247388832 ], [ 45.920122511644593, 55.688048204560971 ], [ 46.009522739382874, 55.742670192775165 ], [ 45.988335401757354, 55.776802477152557 ], [ 46.093755324148844, 55.807963365516855 ], [ 46.135199823413075, 55.896407578846663 ], [ 46.098819614333706, 55.940771796381284 ], [ 46.231421339623125, 56.059291694256274 ], [ 46.53579552634244, 56.140501207065029 ], [ 46.710255161146733, 56.122104397399994 ], [ 47.043671501838332, 56.284626776704329 ], [ 47.27662885933438, 56.335166328463288 ], [ 47.384735955999531, 56.330076198957386 ], [ 47.446334263215647, 56.181583971123359 ], [ 47.871011182719883, 56.135850328030187 ], [ 47.994207798051434, 55.951675523106871 ], [ 48.412373488345793, 55.829357407818065 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-VLG", "NAME_1": "Vologda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.772919548997947, 61.522136541867894 ], [ 37.857358840238248, 61.284579983079709 ], [ 37.973010694887648, 61.204739894930185 ], [ 37.96453576001727, 61.14836090842914 ], [ 38.178579543011494, 61.125933336454295 ], [ 38.144886509105106, 61.072964992840127 ], [ 38.22012739416391, 60.919537665131088 ], [ 38.328647901979082, 60.910235907960782 ], [ 38.372262810680127, 60.950543524763816 ], [ 38.42094200956609, 60.811223862890927 ], [ 38.585789828837505, 60.797219549842339 ], [ 38.661340773158145, 60.711384996420406 ], [ 38.811409133025052, 60.717947903372988 ], [ 38.957240025007138, 60.806883043117921 ], [ 39.190610792753887, 60.652938951471413 ], [ 39.176658155649363, 60.714227200325013 ], [ 39.358765903023993, 60.68218781191797 ], [ 39.636681756357973, 60.746473294307066 ], [ 39.953768344933167, 60.649993394779301 ], [ 40.351470168013805, 60.70797435173489 ], [ 40.418029412627277, 60.785488999917391 ], [ 40.542569614196339, 60.72130687121512 ], [ 40.746484815921519, 60.779649563376609 ], [ 40.799608189166577, 60.717379461692758 ], [ 41.059333936611836, 60.649683336416786 ], [ 41.343037551441796, 60.645962633368811 ], [ 41.412077263854599, 60.791199246148267 ], [ 41.394093866238904, 60.857991034758413 ], [ 41.536307407061145, 60.900365709110133 ], [ 41.719448683210146, 60.84021434181841 ], [ 41.923467237722832, 60.917470608481779 ], [ 41.947238396834507, 60.834943346058537 ], [ 42.394756301262248, 60.769417630219436 ], [ 42.550509068039048, 60.782646796012784 ], [ 42.558467238072581, 60.831687731003967 ], [ 42.650451288196393, 60.863107000887339 ], [ 42.823050571027011, 60.855303860484753 ], [ 42.97994022026495, 60.736861476975548 ], [ 43.149852328821908, 60.806004543974495 ], [ 43.510863885359981, 60.767453925458256 ], [ 43.52491987525201, 60.847190659921012 ], [ 43.74692182827971, 60.894836330931923 ], [ 43.775963983151257, 61.020771796481199 ], [ 44.107830031131016, 61.08345530931507 ], [ 44.16725792801094, 61.079734606267039 ], [ 44.157542758791237, 60.994778551089212 ], [ 44.2058085474265, 60.971808376755178 ], [ 45.229105259100379, 60.903879706583155 ], [ 45.332354771155735, 61.189340317901326 ], [ 45.378760206918002, 61.205463365341984 ], [ 45.786693963155869, 61.166757718094175 ], [ 45.766643507991489, 61.054594020697493 ], [ 45.878161249342156, 61.016275947077247 ], [ 46.285061475906389, 60.96775177692291 ], [ 46.508510369757744, 61.063663234770445 ], [ 46.581580845379676, 60.999997870904963 ], [ 46.746221958176818, 60.98284129468999 ], [ 46.761724887993182, 60.901657620302899 ], [ 47.081291945267026, 60.825848294463185 ], [ 46.959128858709846, 60.66022532793653 ], [ 47.051939732032963, 60.581754666244819 ], [ 46.861873813725481, 60.512895820085987 ], [ 46.810197381304079, 60.322984931409451 ], [ 46.749529250074829, 60.261128241774884 ], [ 46.301701288183892, 60.241852932067104 ], [ 46.37580529168082, 60.116227524880344 ], [ 46.598944126270396, 60.068736884399641 ], [ 47.034989862292264, 60.117106024923089 ], [ 46.925745884065293, 59.802809964308381 ], [ 47.112607863262269, 59.752683823699499 ], [ 47.13668908073646, 59.697855129910295 ], [ 47.113538039249079, 59.611297106076563 ], [ 46.406397739264207, 59.632536118746827 ], [ 46.356271599554645, 59.346972153741888 ], [ 46.029366488972244, 59.304339097871036 ], [ 45.918262159670917, 59.184423936915152 ], [ 45.09112918526364, 59.184191392918422 ], [ 44.991083612318846, 59.121611232872056 ], [ 44.331795688919897, 59.137605089103545 ], [ 44.145553827347214, 59.227031155263603 ], [ 43.935954216913558, 59.207135728830792 ], [ 43.7417541853074, 59.259535630764731 ], [ 43.525953404026325, 59.169360257569792 ], [ 43.492880486844967, 59.297207750137545 ], [ 43.340848423116199, 59.270646063964648 ], [ 43.336300896868863, 59.211683255078128 ], [ 43.111921827930018, 59.290128079247438 ], [ 43.025725539302186, 59.207807522399207 ], [ 42.854056430659739, 59.16158295379023 ], [ 42.671431919347583, 59.228426419243817 ], [ 42.601462030048651, 59.315966295008479 ], [ 42.284065383110942, 59.26160268831336 ], [ 42.190427686588464, 59.309300035268393 ], [ 42.1818493998299, 59.396581529513924 ], [ 42.049351027328044, 59.427225653940752 ], [ 41.95829715319104, 59.289973050515812 ], [ 42.089865349706088, 59.229718329537263 ], [ 42.026199985840663, 59.121611232872056 ], [ 41.874581333261915, 59.085902818260422 ], [ 41.743633254371161, 59.120836087415455 ], [ 41.341280552255682, 58.956608384869014 ], [ 41.177156203396066, 58.962861233459137 ], [ 41.168267857375668, 58.906068834009432 ], [ 41.247229444583184, 58.877104194403046 ], [ 41.134161411419996, 58.7990986189061 ], [ 41.220254348159642, 58.729593818499893 ], [ 40.926008741809937, 58.579112047482965 ], [ 40.625458611825479, 58.605983792018378 ], [ 40.292765740646416, 58.544152939906212 ], [ 40.160784132981348, 58.558596503425861 ], [ 39.968961216387015, 58.759462796570801 ], [ 39.838633254221293, 58.767679348123409 ], [ 39.595030552418052, 58.906378893271267 ], [ 39.530538363554626, 58.876923326350379 ], [ 39.101210565015549, 58.953714505020343 ], [ 38.933985629832932, 58.937539780736245 ], [ 38.918069288866548, 58.884881497283232 ], [ 39.002198520845013, 58.849276435459103 ], [ 38.901842888638384, 58.793414211996264 ], [ 38.908974237271195, 58.740135810019581 ], [ 38.56336225776198, 58.779306546160171 ], [ 38.478199497009143, 58.706029364963172 ], [ 38.047631463221421, 58.735743313403191 ], [ 37.891361931607833, 58.61714590116236 ], [ 37.722379999037685, 58.627171128744578 ], [ 37.626261833816557, 58.490228582782834 ], [ 37.187528924420292, 58.770857448812194 ], [ 37.122209914156201, 58.866045437147193 ], [ 36.848014763870253, 58.841111558951241 ], [ 36.783832635167983, 58.806488349058043 ], [ 36.796441685135619, 58.729903875963089 ], [ 36.704871047061147, 58.73398631511634 ], [ 36.714069452343324, 58.69600413738101 ], [ 36.511911248904994, 58.586140042429008 ], [ 36.499715610986641, 58.534618638739175 ], [ 36.326909620782374, 58.497618312934776 ], [ 36.173327264341765, 58.524955146362913 ], [ 36.237406040256531, 58.594873358818404 ], [ 36.139427524860366, 58.616835842799901 ], [ 36.120100539208522, 58.699621486742217 ], [ 35.786167432780758, 58.749489244033384 ], [ 35.765290155316393, 58.777368678921391 ], [ 35.820583937099002, 58.786592923524552 ], [ 35.724672479251467, 58.833463447280224 ], [ 35.398490838181601, 58.843540350806506 ], [ 35.273433871775751, 58.762511705151041 ], [ 35.216383090806971, 58.828244127464473 ], [ 35.124605747157489, 58.815014959872485 ], [ 35.168427362332864, 58.93325063690736 ], [ 35.039442987304028, 58.917851060777821 ], [ 34.830773552857181, 58.987407538027412 ], [ 34.872424757696365, 59.0535016955468 ], [ 34.736412387721487, 59.066808377504572 ], [ 34.72990115671297, 59.103214423207021 ], [ 34.803385044384243, 59.105643215961607 ], [ 34.916246371972477, 59.246823228908852 ], [ 35.381851026803417, 59.30033417398289 ], [ 35.320252719587302, 59.339065660551739 ], [ 35.448513625103715, 59.427690741934157 ], [ 35.288936801592115, 59.49926259988905 ], [ 35.485824009270573, 59.485464993314736 ], [ 35.434974400048475, 59.525152493392852 ], [ 35.493782180203425, 59.547166653318357 ], [ 35.500293410312622, 59.650777900579612 ], [ 35.638062777675032, 59.646747138269802 ], [ 35.627210727792828, 59.709766546988533 ], [ 35.405622185915149, 59.712427883739792 ], [ 35.382471144427768, 59.875415351037589 ], [ 35.474248488077251, 59.922905992417611 ], [ 35.413063592011156, 59.972825426552163 ], [ 35.084401483141903, 60.029566149158427 ], [ 35.172768182105926, 60.079898994442999 ], [ 35.147446730282354, 60.268828030289342 ], [ 35.226718376751649, 60.332441718210703 ], [ 35.251729771112025, 60.445354723541641 ], [ 35.238707309994368, 60.658520006493063 ], [ 35.143829380021828, 60.776548977053608 ], [ 35.471561313803591, 60.877705594037877 ], [ 35.515382928079646, 60.926669012864636 ], [ 35.497709587927147, 60.981342677922214 ], [ 35.69180626764512, 61.128052069947046 ], [ 35.603852979831117, 61.188306790026331 ], [ 36.466849400279557, 61.406588040006 ], [ 36.632317336276003, 61.553142402399942 ], [ 36.849875115843872, 61.540791733951323 ], [ 36.996429478237815, 61.594431871133906 ], [ 37.25594852100744, 61.539913234807898 ], [ 37.27827273929546, 61.500535793991673 ], [ 37.772919548997947, 61.522136541867894 ] ], [ [ 38.109849888061888, 61.012736111182562 ], [ 38.087525668874491, 61.041649074844884 ], [ 38.022620069760364, 61.041855781319214 ], [ 38.036572706864888, 61.020875149268704 ], [ 38.109849888061888, 61.012736111182562 ] ], [ [ 44.480933871900618, 59.156854560389604 ], [ 44.46656782364613, 59.207910875186712 ], [ 44.426156854055534, 59.2018647321716 ], [ 44.42533003085623, 59.184553128124321 ], [ 44.480933871900618, 59.156854560389604 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-NGR", "NAME_1": "Novgorod" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.72990115671297, 59.103214423207021 ], [ 34.753568963037196, 59.059160264934235 ], [ 34.877592400668732, 59.048850816511958 ], [ 34.830773552857181, 58.987407538027412 ], [ 35.039442987304028, 58.917851060777821 ], [ 35.168427362332864, 58.93325063690736 ], [ 35.124605747157489, 58.815014959872485 ], [ 35.216383090806971, 58.828244127464473 ], [ 35.265682407317229, 58.764785468274738 ], [ 35.398490838181601, 58.843540350806506 ], [ 35.734284294784345, 58.83245575602831 ], [ 35.820583937099002, 58.786592923524552 ], [ 35.774901970849271, 58.754346829542499 ], [ 36.109765252364468, 58.703290513846127 ], [ 36.139427524860366, 58.616835842799901 ], [ 36.237406040256531, 58.594873358818404 ], [ 36.163302035860227, 58.51079580278406 ], [ 35.957009719123221, 58.466612454201368 ], [ 35.95142866410157, 58.426149806868068 ], [ 35.385778436325779, 58.430542304383835 ], [ 35.257414178021861, 58.384136867722248 ], [ 35.263615349768543, 58.265591132324857 ], [ 35.052672153097376, 58.199135240498947 ], [ 34.765041131443013, 58.240269680501342 ], [ 34.684425896937569, 58.197274889424591 ], [ 34.7131579934466, 58.095239773296896 ], [ 34.678844841915918, 58.07792816835024 ], [ 34.00415734238743, 58.219676622078396 ], [ 33.878273552782218, 58.145753485734758 ], [ 33.677355583693213, 58.15293651031169 ], [ 33.538035922719644, 58.056017361212241 ], [ 33.686037225037865, 58.002609768026332 ], [ 33.70216027157926, 57.91548330341169 ], [ 33.575656366148337, 57.853109849839655 ], [ 33.536795689269638, 57.719732978194372 ], [ 33.324922315712286, 57.654620673505235 ], [ 33.308695916383442, 57.565530504129413 ], [ 33.234798617562149, 57.542689521004547 ], [ 33.294846632965744, 57.43215363248413 ], [ 32.811982049132268, 57.462074287398423 ], [ 32.688785434700037, 57.404765123111929 ], [ 32.654575636856123, 57.332728176264311 ], [ 32.394643182037214, 57.23573151279902 ], [ 32.257080519350495, 57.275522366563962 ], [ 32.276717564264175, 57.197542630388057 ], [ 32.125098910786107, 57.182039700571693 ], [ 31.93720340281476, 57.084009508332088 ], [ 31.714684685849534, 57.104008287552404 ], [ 31.677167596107665, 57.00892365200491 ], [ 31.537951287921601, 56.937661852412532 ], [ 30.650873650898234, 56.967220771221605 ], [ 30.641055128891082, 57.183951728489433 ], [ 30.773140090242975, 57.257745672724582 ], [ 30.441170688576392, 57.365336005452264 ], [ 30.49315717936031, 57.389262193295565 ], [ 30.490056593936629, 57.482899888918723 ], [ 30.608809034909029, 57.617413642125882 ], [ 30.472073195421615, 57.682215888452447 ], [ 30.517755160772026, 57.746372178733054 ], [ 30.412955356904206, 57.777352199944062 ], [ 30.517755160772026, 57.807221178014913 ], [ 30.542869907020588, 57.875666612124405 ], [ 29.937532179166737, 57.945507311113488 ], [ 29.918101840727331, 57.975531317915966 ], [ 30.001300896718988, 58.037181301076146 ], [ 29.679356724433262, 58.077282213203546 ], [ 29.658479445170258, 58.243576972399353 ], [ 30.167182244764774, 58.533120021971399 ], [ 30.089564242895449, 58.6306851262176 ], [ 30.104343703199334, 58.735071519834719 ], [ 30.184545525655437, 58.766800848979983 ], [ 30.390011020991778, 58.709956774485534 ], [ 30.705650668743374, 58.749334215301758 ], [ 30.727974887930714, 58.828580024248708 ], [ 30.961965773301756, 58.975211900109059 ], [ 31.022840610106073, 59.08104523454989 ], [ 31.154718865882955, 59.076911119452575 ], [ 31.306027459199868, 58.985237127691278 ], [ 31.557484979148455, 59.215300605338655 ], [ 31.551800571339299, 59.368056139479222 ], [ 31.807392206385202, 59.312090563228878 ], [ 31.915499302151034, 59.391982327322523 ], [ 32.124065382911056, 59.394333604812005 ], [ 32.310410597271243, 59.258398749202911 ], [ 32.302349073550886, 59.200056057041365 ], [ 32.58398562993284, 59.180522365814511 ], [ 32.653232048819973, 59.124711819195056 ], [ 32.760098911135799, 59.200676175565036 ], [ 32.73684451686097, 59.272299710363313 ], [ 33.009902784685721, 59.429990343479517 ], [ 33.255882603299483, 59.323252672372917 ], [ 33.339805128803619, 59.320875556461715 ], [ 33.354274529845668, 59.377719631855484 ], [ 33.520259229779583, 59.372965400033138 ], [ 33.999919875401929, 59.148793037568623 ], [ 34.253134392737991, 59.198505764329525 ], [ 34.72990115671297, 59.103214423207021 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-TVE", "NAME_1": "Tver'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.626261833816557, 58.490228582782834 ], [ 37.64403852675656, 58.429353745978574 ], [ 37.449115024738603, 58.407546292527343 ], [ 37.369843377369932, 58.349410305041488 ], [ 37.421933220941355, 58.315252184041015 ], [ 37.346795688670056, 58.248279527378259 ], [ 37.672253859328123, 58.07542186122987 ], [ 37.539755486826209, 58.049376939893818 ], [ 37.51515750541455, 57.987055162265904 ], [ 37.366536086371241, 57.97713328747119 ], [ 37.495520461400133, 57.893624173117075 ], [ 37.346382276620773, 57.886854559690164 ], [ 37.655614047949939, 57.67513621756234 ], [ 37.827593214954902, 57.630746162505375 ], [ 37.795243768185344, 57.51000417745081 ], [ 37.840615676072559, 57.466725165533944 ], [ 37.794830357035323, 57.433548896464345 ], [ 38.086285435424486, 57.341771551915542 ], [ 38.285756462790516, 57.365775255023948 ], [ 38.30642703557919, 57.276349188863946 ], [ 38.152637973563628, 57.22710154919713 ], [ 38.259918247029475, 57.089073798516949 ], [ 38.219507277438879, 57.00817434317139 ], [ 38.152637973563628, 56.98752960880438 ], [ 38.210102166581692, 56.962621568130828 ], [ 38.201833937286381, 56.897922675491031 ], [ 38.1204952332684, 56.879009100989208 ], [ 38.256507603243278, 56.770230210755585 ], [ 38.014661899726889, 56.77358917949698 ], [ 37.941281365742441, 56.876580309133942 ], [ 37.711631301043667, 56.952751370179556 ], [ 37.553398064668954, 56.905622464005489 ], [ 37.49893110518633, 56.784751287741699 ], [ 37.152078892227053, 56.754055488270126 ], [ 37.117042271183834, 56.709458726738831 ], [ 37.159106887173095, 56.681708482160673 ], [ 37.146394484417897, 56.576495266243512 ], [ 37.052136672069764, 56.515517075752427 ], [ 36.825793898369682, 56.583239041248703 ], [ 36.550461867421234, 56.48704336256111 ], [ 36.521626418124697, 56.437227281214007 ], [ 36.172500441142404, 56.408443508760911 ], [ 36.078449334369282, 56.344106350427694 ], [ 35.765186801629568, 56.393870754931356 ], [ 35.645090772621018, 56.474124254230901 ], [ 35.475488722426576, 56.463582261811894 ], [ 35.550109490760349, 56.366275539984144 ], [ 35.498329705551441, 56.349480698975071 ], [ 35.520757276626966, 56.256101385770307 ], [ 35.365727980262079, 56.232433580345457 ], [ 35.382367790740943, 56.178845120006258 ], [ 35.303509556320932, 56.111743273033596 ], [ 35.332448358404974, 56.061823838899045 ], [ 35.218243442780647, 56.026554673859096 ], [ 35.174111769242757, 55.948264879320675 ], [ 35.031484816371176, 55.98443838192577 ], [ 34.63088911344181, 55.917879137312298 ], [ 34.30656782434562, 56.000768134042119 ], [ 34.235357699797987, 56.071409816909522 ], [ 33.904008415755754, 56.072908434576561 ], [ 33.82742394356012, 55.929816392812256 ], [ 33.659992302802493, 55.94624949771611 ], [ 33.670017531284032, 55.865298367325749 ], [ 33.515504998856613, 55.761299547336193 ], [ 33.225496860391786, 55.698357652083928 ], [ 33.165448845887511, 55.64559601494409 ], [ 32.939312777762439, 55.631798408369832 ], [ 32.708112420351881, 55.690347805207011 ], [ 32.552669711937654, 55.659548652048613 ], [ 32.496445754168178, 55.704507147886545 ], [ 32.33676557786913, 55.711638494720717 ], [ 32.053888788037113, 55.660685532711113 ], [ 32.090992465729698, 55.704042059893141 ], [ 31.910124952704393, 55.771014716555896 ], [ 31.754888949865119, 55.714351508315417 ], [ 31.467361280998318, 55.729001777410076 ], [ 31.344681431402933, 55.96402619155549 ], [ 31.510562777650023, 56.052444566463521 ], [ 31.47376915921933, 56.125411689298005 ], [ 31.491545851260014, 56.301292426504233 ], [ 31.236160922688384, 56.3434862328034 ], [ 31.202777948043831, 56.445908922558715 ], [ 31.020153435832356, 56.477018134079572 ], [ 31.060667759109776, 56.677781074437007 ], [ 30.879386834035131, 56.655250148775337 ], [ 30.781098260276451, 56.769816800504884 ], [ 30.887345004967983, 56.804595038230389 ], [ 30.89633670377583, 56.896682441141706 ], [ 31.000102979768656, 56.96520539051636 ], [ 31.537951287921601, 56.937661852412532 ], [ 31.677167596107665, 57.00892365200491 ], [ 31.714684685849534, 57.104008287552404 ], [ 31.93720340281476, 57.084009508332088 ], [ 32.125098910786107, 57.182039700571693 ], [ 32.276717564264175, 57.197542630388057 ], [ 32.257080519350495, 57.275522366563962 ], [ 32.394643182037214, 57.23573151279902 ], [ 32.654575636856123, 57.332728176264311 ], [ 32.688785434700037, 57.404765123111929 ], [ 32.811982049132268, 57.462074287398423 ], [ 33.294846632965744, 57.43215363248413 ], [ 33.234798617562149, 57.542689521004547 ], [ 33.308695916383442, 57.565530504129413 ], [ 33.324922315712286, 57.654620673505235 ], [ 33.536795689269638, 57.719732978194372 ], [ 33.575656366148337, 57.853109849839655 ], [ 33.70216027157926, 57.91548330341169 ], [ 33.686037225037865, 58.002609768026332 ], [ 33.538035922719644, 58.056017361212241 ], [ 33.677355583693213, 58.15293651031169 ], [ 33.878273552782218, 58.145753485734758 ], [ 34.00415734238743, 58.219676622078396 ], [ 34.687526483260569, 58.079452623539737 ], [ 34.718118930843957, 58.224353339534957 ], [ 35.147550083069859, 58.223836574698112 ], [ 35.269093052002745, 58.271327216078134 ], [ 35.257414178021861, 58.384136867722248 ], [ 35.385778436325779, 58.430542304383835 ], [ 35.934892206410154, 58.423307603862781 ], [ 35.957009719123221, 58.466612454201368 ], [ 36.173327264341765, 58.524955146362913 ], [ 36.333524203679019, 58.49710154899725 ], [ 36.489173617668314, 58.530897935691144 ], [ 36.511911248904994, 58.586140042429008 ], [ 36.714069452343324, 58.69600413738101 ], [ 36.704871047061147, 58.73398631511634 ], [ 36.81287479003953, 58.743753160280107 ], [ 36.79706180186065, 58.820156765322452 ], [ 37.092030876823458, 58.869481920254373 ], [ 37.626261833816557, 58.490228582782834 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-MOW", "NAME_1": "Moskovsskaya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.597694126382805, 55.272879746902788 ], [ 36.57847049261909, 55.317295641280793 ], [ 36.422924432316677, 55.318690904361745 ], [ 36.348613722345362, 55.295694892505253 ], [ 36.317607862712691, 55.225311591156981 ], [ 36.139737583222882, 55.184952298409826 ], [ 35.706689080736453, 55.294299628524982 ], [ 35.567472771651069, 55.289855455065151 ], [ 35.465360142056909, 55.220350653759624 ], [ 35.301235793197293, 55.299105537190769 ], [ 35.319942661224786, 55.499455065498864 ], [ 35.282012160332897, 55.559244696685369 ], [ 35.380507439666587, 55.56430898687023 ], [ 35.398490838181601, 55.610869453162707 ], [ 35.31177778471698, 55.717374579373313 ], [ 35.352085402419391, 55.784528103189359 ], [ 35.171321242181534, 55.960047106089064 ], [ 35.22909549266285, 56.033815212801812 ], [ 35.332448358404974, 56.061823838899045 ], [ 35.303509556320932, 56.111743273033596 ], [ 35.382367790740943, 56.178845120006258 ], [ 35.365727980262079, 56.232433580345457 ], [ 35.520757276626966, 56.256101385770307 ], [ 35.498329705551441, 56.349480698975071 ], [ 35.550109490760349, 56.366275539984144 ], [ 35.463086378933212, 56.458879705933668 ], [ 35.645090772621018, 56.474124254230901 ], [ 35.765186801629568, 56.393870754931356 ], [ 36.078449334369282, 56.344106350427694 ], [ 36.172500441142404, 56.408443508760911 ], [ 36.521626418124697, 56.437227281214007 ], [ 36.550461867421234, 56.48704336256111 ], [ 36.825793898369682, 56.583239041248703 ], [ 37.052136672069764, 56.515517075752427 ], [ 37.146394484417897, 56.576495266243512 ], [ 37.159106887173095, 56.681708482160673 ], [ 37.117042271183834, 56.709458726738831 ], [ 37.152078892227053, 56.754055488270126 ], [ 37.49893110518633, 56.784751287741699 ], [ 37.553398064668954, 56.905622464005489 ], [ 37.723930291749525, 56.953578193378917 ], [ 37.941281365742441, 56.876580309133942 ], [ 38.011251255041373, 56.774881089790426 ], [ 38.256507603243278, 56.770230210755585 ], [ 38.374123162653802, 56.696591295252063 ], [ 38.323170199744879, 56.671889960153521 ], [ 38.293404575360853, 56.533035387173356 ], [ 38.393346794618878, 56.455727444565866 ], [ 38.402751906375329, 56.26424042385645 ], [ 38.506311475893881, 56.225767319705994 ], [ 38.597882113968353, 55.962320869212704 ], [ 38.839417759122284, 55.900903429149935 ], [ 39.015841098687758, 55.925217189721479 ], [ 39.054391717203941, 55.852456773361382 ], [ 39.324659457967584, 55.827600410430591 ], [ 39.358145786298962, 55.761041164917799 ], [ 39.856720004624492, 55.82561086724769 ], [ 39.900231561437408, 55.734479478744902 ], [ 40.085026483085699, 55.612600613027837 ], [ 40.035933872150451, 55.516559963971133 ], [ 40.143317499303123, 55.513924466540857 ], [ 40.183418409631884, 55.449173896158356 ], [ 40.142697380779452, 55.406127428238221 ], [ 40.206466099231079, 55.309337470347941 ], [ 40.012059361150591, 55.20350413680643 ], [ 39.720190870712088, 55.12604116546737 ], [ 39.889172805080875, 55.08477753425575 ], [ 39.812795037560932, 54.997470200689179 ], [ 39.684534132943838, 55.020724595863385 ], [ 39.48837039567718, 54.94083283087042 ], [ 39.379126418349529, 54.853396307893263 ], [ 39.32744998592807, 54.751748766292508 ], [ 39.354735141613446, 54.728856106324201 ], [ 39.237946405402283, 54.711027737440077 ], [ 39.232055292018117, 54.635270087544484 ], [ 38.820400831832899, 54.601938787944675 ], [ 38.790531853762047, 54.463756009432245 ], [ 38.917759229604712, 54.404534817228011 ], [ 38.736891716579407, 54.345055244403966 ], [ 38.675086703788338, 54.244673773775617 ], [ 38.521194288985214, 54.288831284835908 ], [ 38.50455447760703, 54.388566800317562 ], [ 38.388385858120841, 54.472334296190809 ], [ 38.377223748976803, 54.514760647385913 ], [ 38.516646762737878, 54.585919094190842 ], [ 38.471584914112498, 54.638370672968165 ], [ 38.049491815195097, 54.709270738253963 ], [ 37.938594190569404, 54.832260647111127 ], [ 37.755866327369063, 54.823165595515775 ], [ 37.75834679516845, 54.736219998054423 ], [ 37.671323683341313, 54.713508206138783 ], [ 37.447668083914891, 54.830245266405882 ], [ 37.187528924420292, 54.867891547356976 ], [ 37.120038918361388, 54.990824175695138 ], [ 37.210731555516873, 55.016425450673978 ], [ 37.283676361674736, 55.148991034908306 ], [ 37.339528498341508, 55.118599793545627 ], [ 37.42475346609956, 55.184244114674129 ], [ 37.463036037183372, 55.280717305259429 ], [ 37.411254179037087, 55.320476431841826 ], [ 37.462969731967519, 55.379017830108751 ], [ 37.565594257469002, 55.358492925008477 ], [ 37.659115446820408, 55.56891644303937 ], [ 37.878423627248594, 55.71514164636983 ], [ 37.800506617886072, 55.837653304756202 ], [ 37.375327597890305, 55.922886259393351 ], [ 37.431105591749656, 55.877723104837401 ], [ 37.348242142960487, 55.744016767459811 ], [ 37.414078402796008, 55.659858710411129 ], [ 37.210574702960173, 55.601618114684243 ], [ 37.17487824303646, 55.447848746922091 ], [ 37.02385475639187, 55.447848746922091 ], [ 37.021108874375045, 55.51924166766878 ], [ 36.912781945630286, 55.516590057085466 ], [ 36.914019492805323, 55.425881693485337 ], [ 37.014455569369034, 55.301191475106464 ], [ 36.785589634354096, 55.190585029375598 ], [ 36.751483189297744, 55.255749010008799 ], [ 36.597694126382805, 55.272879746902788 ] ], [ [ 37.254081281126219, 55.959506850960395 ], [ 37.2937160125839, 56.0304321611153 ], [ 37.201930317829863, 56.059636700273472 ], [ 37.176897855051948, 55.990797428758299 ], [ 37.254081281126219, 55.959506850960395 ] ], [ [ 37.043391390200497, 55.669547496219934 ], [ 37.153951431813084, 55.696665996738318 ], [ 37.16438162411265, 55.732128651815799 ], [ 37.001670619203708, 55.732128651815799 ], [ 36.991240426904142, 55.67997768941882 ], [ 37.043391390200497, 55.669547496219934 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-MOS", "NAME_1": "Moskva" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 37.120038918361388, 54.990824175695138 ], [ 37.081178826941311, 55.099634508026099 ], [ 36.904342075326497, 55.229135646992461 ], [ 37.014455569369034, 55.301191475106464 ], [ 36.914019492805323, 55.425881693485337 ], [ 36.912781945630286, 55.516590057085466 ], [ 37.021108874375045, 55.51924166766878 ], [ 37.02385475639187, 55.447848746922091 ], [ 37.17487824303646, 55.447848746922091 ], [ 37.210574702960173, 55.601618114684243 ], [ 37.414078402796008, 55.659858710411129 ], [ 37.348242142960487, 55.744016767459811 ], [ 37.431105591749656, 55.877723104837401 ], [ 37.375327597890305, 55.922886259393351 ], [ 37.413769939830843, 55.939361548796398 ], [ 37.458920628883902, 55.881269669459641 ], [ 37.611473413567182, 55.903665087973422 ], [ 37.800506617886072, 55.837653304756202 ], [ 37.878423627248594, 55.71514164636983 ], [ 37.659115446820408, 55.56891644303937 ], [ 37.565594257469002, 55.358492925008477 ], [ 37.462969731967519, 55.379017830108751 ], [ 37.411254179037087, 55.320476431841826 ], [ 37.463036037183372, 55.280717305259429 ], [ 37.42475346609956, 55.184244114674129 ], [ 37.339528498341508, 55.118599793545627 ], [ 37.283676361674736, 55.148991034908306 ], [ 37.210731555516873, 55.016425450673978 ], [ 37.120038918361388, 54.990824175695138 ] ] ], [ [ [ 37.201930317829863, 56.059636700273472 ], [ 37.2937160125839, 56.0304321611153 ], [ 37.302060167142997, 55.997055544677607 ], [ 37.254081281126219, 55.959506850960395 ], [ 37.176897855051948, 55.990797428758299 ], [ 37.201930317829863, 56.059636700273472 ] ] ], [ [ [ 37.08094008301839, 55.742558845014685 ], [ 37.16438162411265, 55.732128651815799 ], [ 37.153951431813084, 55.696665996738318 ], [ 36.991240426904142, 55.67997768941882 ], [ 37.001670619203708, 55.732128651815799 ], [ 37.08094008301839, 55.742558845014685 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-ME", "NAME_1": "Mariy-El" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.07201378840557, 56.622745673274153 ], [ 50.197587517849627, 56.582748114833578 ], [ 49.980959914268624, 56.438002428469247 ], [ 49.964526807566074, 56.500944321922873 ], [ 49.854042595889041, 56.441361396311379 ], [ 49.749242792021221, 56.469990139133586 ], [ 49.812288039161672, 56.499755764416989 ], [ 49.787793409638141, 56.532673651967457 ], [ 49.650644159000706, 56.530141507324686 ], [ 49.572406040406406, 56.500530910772909 ], [ 49.5441907078349, 56.432473050291037 ], [ 49.463575474228719, 56.430250963111405 ], [ 49.417066684779627, 56.480170397246013 ], [ 49.405284458011295, 56.380434881764359 ], [ 49.329113396965681, 56.351496080579636 ], [ 49.091505161334112, 56.391752021438606 ], [ 48.933065220283652, 56.261579088004453 ], [ 49.050887486168506, 56.20680207015937 ], [ 48.995180292336613, 56.208817450864615 ], [ 48.827748650679666, 56.066810614718065 ], [ 48.698144158925743, 56.076319078362758 ], [ 48.68481163944557, 55.951675523106871 ], [ 48.421468539941145, 55.905270087344604 ], [ 48.412373488345793, 55.829357407818065 ], [ 47.994207798051434, 55.951675523106871 ], [ 47.871011182719883, 56.135850328030187 ], [ 47.446334263215647, 56.181583971123359 ], [ 47.365822380598388, 56.334649562727122 ], [ 47.043671501838332, 56.284626776704329 ], [ 46.710255161146733, 56.122104397399994 ], [ 46.53579552634244, 56.140501207065029 ], [ 46.092205031437004, 56.056371975086563 ], [ 46.067710401913473, 56.181919867907538 ], [ 45.873820427770511, 56.258840236887409 ], [ 45.873510370307315, 56.304883938343039 ], [ 45.943273553131974, 56.318113105035764 ], [ 45.948957960941129, 56.433222358225237 ], [ 45.780906202559152, 56.426375231331861 ], [ 45.662670526423653, 56.460920925959954 ], [ 45.62866743325543, 56.522493394754349 ], [ 45.658639764113786, 56.594737047176977 ], [ 45.921776157143938, 56.652252916139162 ], [ 45.908753696026224, 56.780229600815403 ], [ 45.966631301093628, 56.874358221954367 ], [ 46.302734816058887, 56.900635688186412 ], [ 46.336014438815255, 56.952079575711821 ], [ 46.610519646564398, 56.921022040135028 ], [ 46.687104119659352, 56.967944240734084 ], [ 47.148884718654813, 56.910583401402846 ], [ 47.158703240662021, 56.815757148273747 ], [ 47.427627394288777, 56.877252101803037 ], [ 47.498837517937091, 56.853325913959736 ], [ 47.615006138322599, 56.973499457334071 ], [ 47.759803500631051, 57.01313528146801 ], [ 47.734585401594984, 57.054502265467136 ], [ 47.915452914620289, 56.981690172263598 ], [ 48.130736931963838, 57.000190334716137 ], [ 48.202257113974611, 57.028147284869249 ], [ 48.167737257768181, 57.073984279850606 ], [ 48.243701613238841, 57.099822496510967 ], [ 48.195435824603578, 57.120389716512193 ], [ 48.30075239420762, 57.165038153987609 ], [ 48.434801060320638, 57.126952623464774 ], [ 48.758502231792534, 57.171652736884255 ], [ 48.830642531427657, 57.160542304583657 ], [ 48.84552534361967, 57.093750515074191 ], [ 48.953529086598053, 57.086231593713023 ], [ 49.046236607133665, 57.21206370737417 ], [ 49.012646926014781, 57.277072659275802 ], [ 49.18493615138226, 57.330118517255755 ], [ 49.213048130266998, 57.291490384373731 ], [ 49.144008416954875, 57.159973862903428 ], [ 49.227620884096496, 57.125092272390418 ], [ 49.263794386701534, 57.048326931242855 ], [ 49.410865513033002, 57.025356756908764 ], [ 49.707901646443815, 57.07248566308283 ], [ 49.758957961240867, 56.970476386276175 ], [ 49.741801385025894, 56.899524645046313 ], [ 50.016926711298652, 56.863661200803733 ], [ 50.101262647952808, 56.792399400312036 ], [ 50.07201378840557, 56.622745673274153 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KIR", "NAME_1": "Kirov" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.429924757721381, 56.589414374573721 ], [ 50.324814893692349, 56.676101590515941 ], [ 50.07201378840557, 56.622745673274153 ], [ 50.101262647952808, 56.792399400312036 ], [ 50.016926711298652, 56.863661200803733 ], [ 49.741801385025894, 56.899524645046313 ], [ 49.758957961240867, 56.970476386276175 ], [ 49.707901646443815, 57.07248566308283 ], [ 49.410865513033002, 57.025356756908764 ], [ 49.263794386701534, 57.048326931242855 ], [ 49.227620884096496, 57.125092272390418 ], [ 49.144008416954875, 57.159973862903428 ], [ 49.213048130266998, 57.291490384373731 ], [ 49.18493615138226, 57.330118517255755 ], [ 49.012646926014781, 57.277072659275802 ], [ 49.046236607133665, 57.21206370737417 ], [ 48.953529086598053, 57.086231593713023 ], [ 48.84552534361967, 57.093750515074191 ], [ 48.830642531427657, 57.160542304583657 ], [ 48.758502231792534, 57.171652736884255 ], [ 48.434801060320638, 57.126952623464774 ], [ 48.30075239420762, 57.165038153987609 ], [ 48.195435824603578, 57.120389716512193 ], [ 48.243701613238841, 57.099822496510967 ], [ 48.167737257768181, 57.073984279850606 ], [ 48.202257113974611, 57.028147284869249 ], [ 48.130736931963838, 57.000190334716137 ], [ 47.915452914620289, 56.981690172263598 ], [ 47.734585401594984, 57.054502265467136 ], [ 47.759803500631051, 57.01313528146801 ], [ 47.615006138322599, 56.973499457334071 ], [ 47.498837517937091, 56.853325913959736 ], [ 47.427627394288777, 56.877252101803037 ], [ 47.158703240662021, 56.815757148273747 ], [ 47.128627557016102, 56.835910956225632 ], [ 47.160977003785661, 56.901229967389042 ], [ 47.084702589952542, 56.93125397419152 ], [ 46.705294223749377, 56.944069728834904 ], [ 46.751389601149128, 56.978279527578081 ], [ 46.713149041894724, 57.012437649477931 ], [ 46.764825474316183, 57.035381985390302 ], [ 46.734336378620924, 57.199919746299202 ], [ 46.844820591197276, 57.229065253058934 ], [ 46.680179478400191, 57.351331692403676 ], [ 46.750459426061639, 57.385489814303469 ], [ 46.701056755864556, 57.418562731484826 ], [ 46.798105096173231, 57.461919256868157 ], [ 46.749012486137303, 57.521863919484247 ], [ 47.036746860579115, 57.494604601321271 ], [ 47.260505811893665, 57.569122015968219 ], [ 47.471035598314188, 57.528530178325013 ], [ 47.535011021441449, 57.616121730933116 ], [ 47.566223585749867, 57.803035386973477 ], [ 47.767451613201388, 57.900419623167068 ], [ 47.703062778924107, 57.958374741700936 ], [ 47.354246861203649, 58.025502427994638 ], [ 46.429858840013424, 58.020489813753898 ], [ 46.312966750115379, 58.111181953584264 ], [ 46.412598911010889, 58.213501287854115 ], [ 46.41435591019706, 58.308327541882534 ], [ 46.479674919561887, 58.338248195897506 ], [ 46.415596143647065, 58.360572415084846 ], [ 46.590882603449359, 58.438164578532451 ], [ 46.551505160834495, 58.482580471111817 ], [ 46.59305301288623, 58.560611884131106 ], [ 47.000366652399066, 58.620143133798535 ], [ 47.007911411282578, 58.692800198270504 ], [ 47.107336866603077, 58.768609524110218 ], [ 47.221541782227462, 58.750445258441914 ], [ 47.31652306498745, 58.797780870190991 ], [ 47.300193311971725, 58.913148504899539 ], [ 47.604360793116086, 58.913045152112034 ], [ 47.549893832734142, 58.99800120728986 ], [ 47.570874464784708, 59.05985789692437 ], [ 47.441993443442641, 59.164244290541546 ], [ 47.23921512237996, 59.220209865892571 ], [ 47.252444289072685, 59.35549876635497 ], [ 47.056280551805969, 59.378546454155526 ], [ 47.133898552775975, 59.724985256864102 ], [ 46.922231886592272, 59.81820954043792 ], [ 47.034989862292264, 60.117106024923089 ], [ 46.598944126270396, 60.068736884399641 ], [ 46.368260531897988, 60.120775052027 ], [ 46.303354932783918, 60.250896307718392 ], [ 46.749529250074829, 60.261128241774884 ], [ 46.810197381304079, 60.322984931409451 ], [ 46.861873813725481, 60.512895820085987 ], [ 47.048839145709962, 60.575165920870518 ], [ 46.95995568190915, 60.666271470951585 ], [ 47.083772413965733, 60.818587755520468 ], [ 47.042948032325796, 60.853805243716977 ], [ 47.103719517241927, 60.956072902942083 ], [ 47.194256625642709, 60.999817002852353 ], [ 47.196116977616384, 61.04831533548429 ], [ 47.568497348873507, 61.059115709422429 ], [ 47.958034295446339, 61.007335924213521 ], [ 47.984182569569896, 60.896489977330532 ], [ 48.418988071242495, 60.853805243716977 ], [ 48.538463982626695, 60.598058579939504 ], [ 48.485547315855911, 60.52509145800434 ], [ 48.611844516611143, 60.436104641416023 ], [ 48.547455682333862, 60.415020657477328 ], [ 48.753747999970187, 60.367219956835527 ], [ 48.457331984183725, 60.186507473441111 ], [ 48.507561475781472, 59.715115058013509 ], [ 49.072591586832232, 59.65961456975657 ], [ 49.04251590408569, 59.488203844431837 ], [ 49.137497185946359, 59.508357652383722 ], [ 49.534578892302022, 59.395031235902763 ], [ 49.509877557203481, 59.246616523333842 ], [ 49.66366662011842, 59.208375963180117 ], [ 49.794924758270952, 59.233077298278658 ], [ 49.825207146592504, 59.477403468695115 ], [ 49.789757114399265, 59.513396105046183 ], [ 49.844844190606864, 59.653878486003293 ], [ 50.047209099620204, 59.684858507214301 ], [ 49.958428988606897, 59.74379547857842 ], [ 49.983026970917933, 59.771545722257258 ], [ 50.236034783578361, 59.755887762810005 ], [ 50.386413201807784, 59.839500230850945 ], [ 50.810676711061319, 59.862961330700841 ], [ 51.075363396803311, 60.060727037522724 ], [ 51.307183871838163, 60.028015856446586 ], [ 51.421078729100032, 59.943421536474716 ], [ 51.533113234388225, 59.949209296172057 ], [ 52.042229445132762, 60.313657334918048 ], [ 52.453780551631098, 60.200511787389075 ], [ 53.35811811675768, 60.166457018276731 ], [ 53.457233513715664, 60.20480093031864 ], [ 53.607611931945087, 60.14273753510912 ], [ 53.70652062422738, 60.001195786955975 ], [ 53.623114861761451, 59.754389146941548 ], [ 53.592109003028042, 59.708500475116807 ], [ 53.423127068659255, 59.684212552067606 ], [ 53.354294060922143, 59.500812893500211 ], [ 53.205775994666396, 59.363999538747692 ], [ 53.402663202344911, 59.149568183025224 ], [ 53.716132439760258, 59.093757636405769 ], [ 53.692981398272877, 59.12207632086546 ], [ 53.753959587864642, 59.140989895367341 ], [ 53.876536085571843, 59.092801621997239 ], [ 53.725744256192456, 58.938521634465815 ], [ 53.771839633592208, 58.856562811924221 ], [ 53.92201134624662, 58.782820542733816 ], [ 53.770909457605342, 58.71584788697038 ], [ 53.705590448240571, 58.61332184532688 ], [ 53.78455203634735, 58.439895738397581 ], [ 53.498367953718059, 58.450334378029083 ], [ 53.32091108627759, 58.388994453231419 ], [ 53.165054965814022, 58.456173815469185 ], [ 53.117616001277383, 58.543817044021353 ], [ 52.92134891122322, 58.53430858037666 ], [ 52.870085890851158, 58.410621039529303 ], [ 52.178861931832671, 58.489660142901243 ], [ 51.971019322383768, 58.464131985502718 ], [ 51.796146274630871, 58.361295885496702 ], [ 51.79149539559603, 58.281145738085343 ], [ 51.67315636577365, 58.171850083914194 ], [ 51.791805453958489, 58.126504015348019 ], [ 51.79418256986969, 58.036044420413646 ], [ 51.888543735904648, 57.978735257026472 ], [ 51.836867302583926, 57.85207632106534 ], [ 51.921099888249216, 57.824687811693138 ], [ 51.925544060809727, 57.758671170338232 ], [ 51.852473586087115, 57.631185411177739 ], [ 51.741989374410082, 57.542896227478877 ], [ 51.632952100858745, 57.541294257024333 ], [ 51.5931612488925, 57.441662096128823 ], [ 51.397204217200851, 57.478093981152256 ], [ 51.195149367449346, 57.453754381259671 ], [ 51.11556766081884, 57.305081285372978 ], [ 51.324857211990718, 56.9467052271645 ], [ 51.540451287696726, 56.882988186455634 ], [ 51.400304802624532, 56.76707794938784 ], [ 51.378600701960806, 56.679899807030438 ], [ 51.196596307373682, 56.66744578669369 ], [ 51.195459425811805, 56.529702256853625 ], [ 51.137891880006237, 56.500117498723569 ], [ 51.201867303133497, 56.439397691550198 ], [ 51.291060825296825, 56.435676988502166 ], [ 51.319896274593361, 56.329120185448176 ], [ 51.416737909327026, 56.290156154882595 ], [ 51.375293410062795, 56.234345608263197 ], [ 51.462419874677437, 56.216620592166578 ], [ 51.43647830612889, 56.144428615688014 ], [ 51.313488397271669, 56.073011787364067 ], [ 51.193185662688165, 56.140759589483423 ], [ 51.073089633679615, 56.130527656326251 ], [ 50.840442336344722, 56.240701808741449 ], [ 50.907828404157499, 56.295995592322697 ], [ 50.85119103433874, 56.390253403771567 ], [ 50.76737186072279, 56.404257717719474 ], [ 50.779154086591802, 56.357903957901328 ], [ 50.729648065405854, 56.330412095741622 ], [ 50.582886997436958, 56.358627428313127 ], [ 50.624434848589374, 56.399451809053744 ], [ 50.547230258769389, 56.420768337888433 ], [ 50.45204227133371, 56.549597683286436 ], [ 50.488732537876274, 56.613082179998571 ], [ 50.429924757721381, 56.589414374573721 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-UD", "NAME_1": "Udmurt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.352476027246837, 56.358524075525622 ], [ 54.319713169327258, 56.339042060242832 ], [ 54.371389600849398, 56.299251207377267 ], [ 54.34575809066331, 56.252587389196606 ], [ 54.117244906627093, 56.158226223161648 ], [ 54.005830518963251, 56.028880112926856 ], [ 53.837778762379969, 56.038646958989943 ], [ 53.631693150318597, 55.906691188847276 ], [ 53.289078404344878, 55.858270372379764 ], [ 53.194097120685569, 55.935139065415513 ], [ 53.286907993109367, 55.937929593375998 ], [ 53.405453729406076, 56.02298900044201 ], [ 53.552111443688148, 56.152490139408371 ], [ 53.550871210238142, 56.241011868003284 ], [ 53.417132603386904, 56.277030340977433 ], [ 53.260346306936469, 56.253879300389372 ], [ 53.33827436716831, 56.150113023497227 ], [ 53.325251906050596, 56.0837088085147 ], [ 53.145211216224595, 56.160629177494513 ], [ 53.049299758377117, 56.136031196082797 ], [ 53.063562452944836, 56.192177639486431 ], [ 52.993282505283389, 56.193417873835756 ], [ 52.942742954423807, 56.372425034887442 ], [ 53.089814080755218, 56.521563218767483 ], [ 52.939435663425115, 56.541303616468724 ], [ 52.924449496646901, 56.506163641738624 ], [ 52.828331333224412, 56.517067369363588 ], [ 52.948737419696158, 56.445340480878485 ], [ 52.731076288240104, 56.394077460506367 ], [ 52.561991001083811, 56.259434516090039 ], [ 52.813138461770563, 56.201065986406093 ], [ 52.84176720639141, 56.157864487955749 ], [ 52.834222446608578, 56.094302476877772 ], [ 52.716813591873745, 56.136160387292023 ], [ 52.725185173956561, 56.06825755554172 ], [ 52.670201449637148, 56.022317205974275 ], [ 52.224750603657412, 56.08634430594492 ], [ 52.187543573177322, 56.065415350737794 ], [ 52.244801059721112, 56.065622057212124 ], [ 52.204596794806207, 56.020431017377518 ], [ 52.247694939569783, 55.951675523106871 ], [ 52.15705447838144, 55.895968329274922 ], [ 52.058455845360925, 55.897053534892677 ], [ 52.041609328407731, 55.954776109429872 ], [ 51.957066685279301, 55.977462062923848 ], [ 51.781780226376327, 55.887545071247985 ], [ 51.726693150168728, 55.958290106902894 ], [ 51.441852654676268, 55.924648748940569 ], [ 51.399064569174527, 55.993636787207947 ], [ 51.648248325100099, 56.144273586956444 ], [ 51.43647830612889, 56.144428615688014 ], [ 51.462419874677437, 56.216620592166578 ], [ 51.375293410062795, 56.234345608263197 ], [ 51.416737909327026, 56.290156154882595 ], [ 51.319896274593361, 56.329120185448176 ], [ 51.291060825296825, 56.435676988502166 ], [ 51.201867303133497, 56.439397691550198 ], [ 51.137891880006237, 56.500117498723569 ], [ 51.195459425811805, 56.529702256853625 ], [ 51.196596307373682, 56.66744578669369 ], [ 51.378600701960806, 56.679899807030438 ], [ 51.400304802624532, 56.76707794938784 ], [ 51.540451287696726, 56.882988186455634 ], [ 51.324857211990718, 56.9467052271645 ], [ 51.325477328715749, 57.001482245908903 ], [ 51.227498814218848, 57.067473049741409 ], [ 51.242071568048402, 57.141525377294272 ], [ 51.122699008552388, 57.260071112691662 ], [ 51.135928176144375, 57.377066555377212 ], [ 51.225638462245229, 57.462358507339218 ], [ 51.5931612488925, 57.441662096128823 ], [ 51.632952100858745, 57.541294257024333 ], [ 51.741989374410082, 57.542896227478877 ], [ 51.852473586087115, 57.631185411177739 ], [ 51.925544060809727, 57.758671170338232 ], [ 51.921099888249216, 57.824687811693138 ], [ 51.836867302583926, 57.85207632106534 ], [ 51.888543735904648, 57.978735257026472 ], [ 51.79418256986969, 58.036044420413646 ], [ 51.791805453958489, 58.126504015348019 ], [ 51.67315636577365, 58.171850083914194 ], [ 51.79149539559603, 58.281145738085343 ], [ 51.796146274630871, 58.361295885496702 ], [ 51.971019322383768, 58.464131985502718 ], [ 52.178861931832671, 58.489660142901243 ], [ 52.870085890851158, 58.410621039529303 ], [ 52.92134891122322, 58.53430858037666 ], [ 53.117616001277383, 58.543817044021353 ], [ 53.165054965814022, 58.456173815469185 ], [ 53.32091108627759, 58.388994453231419 ], [ 53.498367953718059, 58.450334378029083 ], [ 53.78455203634735, 58.439895738397581 ], [ 53.886044549216535, 58.319102078298272 ], [ 53.810183547432757, 58.228125719426373 ], [ 54.092440219640423, 57.990000718957958 ], [ 54.136468540390808, 57.829390367571364 ], [ 54.156312289980178, 57.706245429083253 ], [ 54.076213820311523, 57.665989488224284 ], [ 54.116624789902119, 57.615708319783096 ], [ 53.990017530784371, 57.573230291744551 ], [ 54.091510043653557, 57.521502184278347 ], [ 54.176362746043878, 57.555918687697272 ], [ 54.18101362507872, 57.465794990446398 ], [ 54.263592564345345, 57.464037991260284 ], [ 54.270827263967021, 57.427347723818343 ], [ 54.157449172441318, 57.39220774998762 ], [ 54.119208612287593, 57.309267076414415 ], [ 54.319299758177294, 57.286400254867829 ], [ 54.323123814012774, 57.138373115027207 ], [ 54.276718378250507, 57.103646552346504 ], [ 54.399811638995914, 57.042875068329693 ], [ 54.098641392286424, 56.965928860028839 ], [ 54.095230746701588, 56.797825425702797 ], [ 54.045724724616321, 56.753021959495811 ], [ 53.949503208406327, 56.739741115959703 ], [ 53.821655714939254, 56.799479072101462 ], [ 53.872815383423188, 56.698089912019782 ], [ 53.844600050851625, 56.638093574358948 ], [ 54.075800409161502, 56.668815213151561 ], [ 54.041073845581479, 56.592514959997402 ], [ 54.179256625892549, 56.527350979364201 ], [ 54.24498904820598, 56.431852931767366 ], [ 54.317852818252959, 56.451283271106035 ], [ 54.352476027246837, 56.358524075525622 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-KO", "NAME_1": "Komi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.485392694117536, 61.993270575776421 ], [ 59.338011509423609, 61.844649155833849 ], [ 59.391858351281883, 61.757600206484312 ], [ 59.348656853730802, 61.682178453372899 ], [ 59.015240513039203, 61.549059964146011 ], [ 58.691539340667987, 61.502732041850209 ], [ 57.085952589840133, 61.488030096811485 ], [ 56.67574506957925, 61.522343248342224 ], [ 56.538182406892531, 61.431186022317036 ], [ 56.390801223097924, 61.420230617848688 ], [ 56.287345004568294, 61.209416612386747 ], [ 55.830215284607675, 61.24894908283386 ], [ 55.715700310620832, 61.088261217081481 ], [ 55.287509392744255, 61.121230781475333 ], [ 55.199039340992783, 61.009454657706272 ], [ 55.062096795031039, 61.008989569712867 ], [ 54.979517856663733, 60.863830471299195 ], [ 53.853488396871967, 60.980205797259714 ], [ 53.803982374786756, 60.849851995772951 ], [ 53.353984002559628, 60.893441066951652 ], [ 53.372070753862147, 61.028962511410725 ], [ 52.87649376817285, 61.093842272103132 ], [ 52.789780714708172, 60.94888987926447 ], [ 52.430629510143774, 60.977880357292634 ], [ 52.354768508359939, 60.843909207344041 ], [ 51.901256137760527, 60.882278957807614 ], [ 51.77661258340396, 60.600719915791444 ], [ 52.133800083207234, 60.546847236410827 ], [ 52.138450962242075, 60.472846584802028 ], [ 52.323866000615396, 60.432125555949597 ], [ 52.297821079279345, 60.241594550548029 ], [ 52.060936314059632, 60.316912949972618 ], [ 51.99572065568367, 60.298025213892458 ], [ 51.802244093590048, 60.115245672949413 ], [ 51.521331007619892, 59.946212063535881 ], [ 51.075363396803311, 60.060727037522724 ], [ 50.810676711061319, 59.862961330700841 ], [ 50.386413201807784, 59.839500230850945 ], [ 50.236034783578361, 59.755887762810005 ], [ 49.983026970917933, 59.771545722257258 ], [ 49.958428988606897, 59.74379547857842 ], [ 50.047209099620204, 59.684858507214301 ], [ 49.844844190606864, 59.653878486003293 ], [ 49.789757114399265, 59.513396105046183 ], [ 49.825207146592504, 59.477403468695115 ], [ 49.794924758270952, 59.233077298278658 ], [ 49.58656538308594, 59.21943471953665 ], [ 49.509877557203481, 59.246616523333842 ], [ 49.534578892302022, 59.395031235902763 ], [ 49.137497185946359, 59.508357652383722 ], [ 49.04251590408569, 59.488203844431837 ], [ 49.072591586832232, 59.65961456975657 ], [ 48.507561475781472, 59.715115058013509 ], [ 48.457331984183725, 60.186507473441111 ], [ 48.754678175957054, 60.361225491563175 ], [ 48.547455682333862, 60.415020657477328 ], [ 48.611844516611143, 60.436104641416023 ], [ 48.485547315855911, 60.52509145800434 ], [ 48.538463982626695, 60.598058579939504 ], [ 48.418988071242495, 60.853805243716977 ], [ 48.446479933402202, 60.984107368360355 ], [ 48.509318474967642, 61.04774689380406 ], [ 49.313920526411152, 61.187893377976991 ], [ 49.461405063892585, 61.586111965894474 ], [ 49.051610955681042, 61.690963447505055 ], [ 49.216458774952457, 62.096881822138357 ], [ 49.369421013768772, 62.149385077759121 ], [ 49.608992954161465, 62.770225735429335 ], [ 48.875084263328063, 62.829136868371734 ], [ 48.714473911042148, 62.815545966473167 ], [ 48.657009718923348, 62.707077135501379 ], [ 48.366071405371031, 62.729298001001894 ], [ 48.234503207956664, 62.464146227266554 ], [ 48.302302686919461, 62.402806302468832 ], [ 48.290830519412907, 62.321622626283158 ], [ 47.751121861084982, 62.321829331858169 ], [ 47.649836052891487, 62.296662910564862 ], [ 47.62100060359495, 62.185455227576654 ], [ 47.413364698821795, 62.192793280885155 ], [ 47.386286248711372, 62.320434067877898 ], [ 47.234874301707634, 62.35149160435401 ], [ 47.2376648287688, 62.635660305378735 ], [ 47.082635532403856, 62.839627183947357 ], [ 47.435688918009134, 62.972745673174245 ], [ 47.51578738767779, 63.036772773144946 ], [ 47.554648064556488, 63.148497219171304 ], [ 47.090903761699224, 63.246475735466788 ], [ 46.946829868003988, 63.341560371014282 ], [ 47.021347284449575, 63.559169827425592 ], [ 46.819189081011245, 63.746961981710058 ], [ 46.43574995339759, 63.887728583507283 ], [ 45.883638949777662, 63.964313055702917 ], [ 45.427129348340713, 64.171690578956998 ], [ 45.824521112159573, 64.283621731457686 ], [ 46.322888624910092, 64.264708156955862 ], [ 46.611449822551265, 64.326564845691053 ], [ 48.115750766984263, 64.348113919421792 ], [ 48.196159295015434, 64.238921617138885 ], [ 48.408342726035926, 64.224219672100162 ], [ 48.51831017377549, 64.355503649573734 ], [ 48.840150995072349, 64.357312323804649 ], [ 48.950015090024351, 64.490611681084204 ], [ 49.450139601061721, 64.462990627715271 ], [ 49.595350376318777, 64.591354886019133 ], [ 50.314686314222001, 64.512444972957098 ], [ 50.467441848362569, 64.791601061539723 ], [ 50.063022087799084, 64.890199692761598 ], [ 49.636588169108677, 65.273845526849527 ], [ 48.998694288910258, 65.240333360096486 ], [ 49.006032342218816, 66.119116930302084 ], [ 51.510168897576534, 66.783262438310828 ], [ 51.54923628092962, 66.798041896816073 ], [ 51.481953565904291, 66.828065904517871 ], [ 51.524638298618584, 66.927801419100206 ], [ 51.810719029359689, 66.954208076541477 ], [ 51.846582472702949, 67.001698717022123 ], [ 52.155194126407764, 67.08551788973881 ], [ 53.772459751216502, 66.998546454755058 ], [ 59.917717726192109, 67.001595364234618 ], [ 59.871932407154816, 66.97100291575191 ], [ 59.918647902178918, 66.953536282073742 ], [ 60.082048780626678, 66.989864814309726 ], [ 61.43173383984481, 66.999683336316878 ], [ 61.660660435031048, 67.016064765276667 ], [ 61.8505196468642, 67.126135565803679 ], [ 62.821313103816635, 67.388031725383769 ], [ 62.893453404351078, 67.595667630156981 ], [ 63.327638788399327, 67.745787665068633 ], [ 63.689683871913132, 67.762065742140237 ], [ 63.708700799202518, 67.809504705777499 ], [ 63.861766391705601, 67.831570543445764 ], [ 63.946722446883371, 67.893995672961921 ], [ 63.833964471183378, 68.028457750224959 ], [ 64.530252720386727, 68.200126857968087 ], [ 64.499143507966494, 68.325907293886473 ], [ 64.745123324781559, 68.404455470843288 ], [ 65.480478957337994, 68.430448717134539 ], [ 65.273773227652327, 68.2304609240324 ], [ 65.33061730304604, 68.090650335744385 ], [ 65.28979292230548, 68.012334702784301 ], [ 65.436553990274376, 67.919963080831508 ], [ 65.911253696700726, 67.960761624049667 ], [ 66.089537388239819, 67.92965241252881 ], [ 66.019567498940887, 67.798135891058507 ], [ 66.198161248842553, 67.739586494221328 ], [ 66.205912713301075, 67.693026027928795 ], [ 66.104730258794405, 67.646568915323144 ], [ 65.851619094245791, 67.654475410311932 ], [ 65.82423058487359, 67.63049754472587 ], [ 65.858750441079962, 67.605796210526648 ], [ 65.796118605089532, 67.567839871213039 ], [ 66.036000603844741, 67.575100410155756 ], [ 66.103076613295059, 67.479809068133932 ], [ 65.937195266148592, 67.393225205878537 ], [ 65.701654087166332, 67.388729357373904 ], [ 65.71260949073536, 67.340153510376183 ], [ 65.661863234300768, 67.310723781877016 ], [ 65.190160759611331, 67.144997464361438 ], [ 65.215792270696681, 67.075596014944097 ], [ 65.078126255222458, 67.041541245831809 ], [ 65.104687941395355, 66.894625149131286 ], [ 64.576451449674607, 66.797990220871952 ], [ 64.534076776222207, 66.727865301942074 ], [ 64.294814894191973, 66.663114733358213 ], [ 63.981345655877305, 66.651461696899787 ], [ 63.808539666572301, 66.547152818547715 ], [ 63.540959100082375, 66.470826727871156 ], [ 63.414868604902153, 66.480128485940838 ], [ 63.24154585076036, 66.328044746268006 ], [ 63.295496047204779, 66.239212958411258 ], [ 63.105430128897297, 66.249909980461211 ], [ 62.862240838244077, 66.074726874345743 ], [ 62.82141645660414, 66.012456774460532 ], [ 62.884151646281396, 65.979848945272579 ], [ 62.802812941364095, 65.931479803849811 ], [ 62.850665317950018, 65.872982082956753 ], [ 61.870983514077864, 65.699013372768889 ], [ 61.253760206668176, 65.31942414031181 ], [ 61.331378207638124, 65.28201040335739 ], [ 61.240531039975508, 65.191886705207253 ], [ 61.106689081236084, 65.160829168731141 ], [ 60.979048293344022, 65.048277900404742 ], [ 60.80810265511343, 65.043782050101527 ], [ 60.645218539703819, 64.891233222435233 ], [ 60.420322706827449, 65.052567044233683 ], [ 60.147367791790145, 65.064788520573757 ], [ 59.674115025288131, 64.80214305305941 ], [ 59.638458285721299, 64.725610256807897 ], [ 59.704087355247225, 64.667680975796372 ], [ 59.482292107794535, 64.486916816457892 ], [ 59.606108839851061, 64.454153958538313 ], [ 59.633704054798272, 64.336409207019244 ], [ 59.588435499698505, 64.232642931026419 ], [ 59.856429478237828, 64.131331285310523 ], [ 59.770129835923171, 63.999608059164586 ], [ 59.572932569882141, 63.927157701166948 ], [ 59.493764276200352, 63.610536201484479 ], [ 59.318891229346718, 63.398249416777105 ], [ 59.348966912992637, 63.364065457354968 ], [ 59.287265252989016, 63.337167874397835 ], [ 59.333980747113742, 63.285930691548174 ], [ 59.26225385862864, 63.199424344557826 ], [ 59.291606072762022, 63.123511664131968 ], [ 59.223186476174931, 63.07191274697567 ], [ 59.285094841753505, 62.964787503140712 ], [ 59.476711052772828, 62.906754869341739 ], [ 59.398679640652858, 62.718032538171087 ], [ 59.510817498728557, 62.547758694408174 ], [ 59.643729282380434, 62.510267442188649 ], [ 59.602904900740555, 62.375572821828257 ], [ 59.401780226076539, 62.131505032031555 ], [ 59.485392694117536, 61.993270575776421 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-PER", "NAME_1": "Perm'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.968355746620375, 56.320438544103524 ], [ 54.930218540153476, 56.386532700723535 ], [ 54.559181756033183, 56.538409735720677 ], [ 54.419655388585284, 56.337646796262618 ], [ 54.352476027246837, 56.358524075525622 ], [ 54.317852818252959, 56.451283271106035 ], [ 54.24498904820598, 56.431852931767366 ], [ 54.179256625892549, 56.527350979364201 ], [ 54.041073845581479, 56.592514959997402 ], [ 54.075800409161502, 56.668815213151561 ], [ 53.844600050851625, 56.638093574358948 ], [ 53.872815383423188, 56.698089912019782 ], [ 53.821655714939254, 56.799479072101462 ], [ 53.949503208406327, 56.739741115959703 ], [ 54.045724724616321, 56.753021959495811 ], [ 54.095230746701588, 56.797825425702797 ], [ 54.098641392286424, 56.965928860028839 ], [ 54.399811638995914, 57.042875068329693 ], [ 54.276718378250507, 57.103646552346504 ], [ 54.323123814012774, 57.138373115027207 ], [ 54.319299758177294, 57.286400254867829 ], [ 54.119208612287593, 57.309267076414415 ], [ 54.157449172441318, 57.39220774998762 ], [ 54.270827263967021, 57.427347723818343 ], [ 54.263592564345345, 57.464037991260284 ], [ 54.18101362507872, 57.465794990446398 ], [ 54.176362746043878, 57.555918687697272 ], [ 54.091510043653557, 57.521502184278347 ], [ 53.990017530784371, 57.573230291744551 ], [ 54.116624789902119, 57.615708319783096 ], [ 54.078590936222724, 57.675032863875515 ], [ 54.156312289980178, 57.706245429083253 ], [ 54.099364861798904, 57.971655585237045 ], [ 53.810183547432757, 58.228125719426373 ], [ 53.886044549216535, 58.319102078298272 ], [ 53.785585565121721, 58.402430325499097 ], [ 53.704660272253761, 58.594976712505229 ], [ 53.770909457605342, 58.71584788697038 ], [ 53.92201134624662, 58.782820542733816 ], [ 53.806876254635426, 58.829174303451339 ], [ 53.724917432993095, 58.925860908554057 ], [ 53.760780878134995, 59.017121487366694 ], [ 53.876536085571843, 59.092801621997239 ], [ 53.753959587864642, 59.140989895367341 ], [ 53.692981398272877, 59.12207632086546 ], [ 53.716132439760258, 59.093757636405769 ], [ 53.402663202344911, 59.149568183025224 ], [ 53.205775994666396, 59.363999538747692 ], [ 53.354294060922143, 59.500812893500211 ], [ 53.423127068659255, 59.684212552067606 ], [ 53.592109003028042, 59.708500475116807 ], [ 53.702903273067591, 60.011065985806567 ], [ 53.607611931945087, 60.14273753510912 ], [ 53.457233513715664, 60.20480093031864 ], [ 53.35811811675768, 60.166457018276731 ], [ 52.297821079279345, 60.241594550548029 ], [ 52.323866000615396, 60.432125555949597 ], [ 52.138450962242075, 60.472846584802028 ], [ 52.133800083207234, 60.546847236410827 ], [ 51.77661258340396, 60.600719915791444 ], [ 51.889783970253973, 60.875819404541858 ], [ 52.354768508359939, 60.843909207344041 ], [ 52.430629510143774, 60.977880357292634 ], [ 52.789780714708172, 60.94888987926447 ], [ 52.87649376817285, 61.093842272103132 ], [ 53.372070753862147, 61.028962511410725 ], [ 53.353984002559628, 60.893441066951652 ], [ 53.803982374786756, 60.849851995772951 ], [ 53.853488396871967, 60.980205797259714 ], [ 54.979517856663733, 60.863830471299195 ], [ 55.062096795031039, 61.008989569712867 ], [ 55.199039340992783, 61.009454657706272 ], [ 55.287509392744255, 61.121230781475333 ], [ 55.715700310620832, 61.088261217081481 ], [ 55.830215284607675, 61.24894908283386 ], [ 56.287345004568294, 61.209416612386747 ], [ 56.390801223097924, 61.420230617848688 ], [ 56.538182406892531, 61.431186022317036 ], [ 56.67574506957925, 61.522343248342224 ], [ 57.085952589840133, 61.488030096811485 ], [ 58.810705193689728, 61.508959052018611 ], [ 59.348656853730802, 61.682178453372899 ], [ 59.427825148311911, 61.512524726335016 ], [ 59.417799919830429, 61.42896393513746 ], [ 59.306798944215871, 61.3684508335391 ], [ 59.256569451718804, 61.244427395008245 ], [ 59.356821730238607, 61.151048081803481 ], [ 59.372944776780002, 60.970490628040011 ], [ 59.469476353151151, 60.941241766694134 ], [ 59.390101352995032, 60.582607326966524 ], [ 59.233521763018928, 60.475223700713173 ], [ 59.1643786969193, 60.36685822252889 ], [ 59.18690962078233, 60.270688382263018 ], [ 59.04562625504758, 60.113230292244168 ], [ 59.051414015644298, 60.043002021426105 ], [ 58.951265089911942, 59.995046292052734 ], [ 58.999530877647885, 59.931303412922148 ], [ 58.855870396001933, 59.932156074543173 ], [ 58.805020785880515, 59.862806301969215 ], [ 58.675106235764133, 59.859240628552129 ], [ 58.581881952190315, 59.715838528425309 ], [ 58.451037225187747, 59.705038154487227 ], [ 58.400290968753154, 59.546830756534177 ], [ 58.310890741014873, 59.468050035580632 ], [ 58.518526645788029, 59.437302558366355 ], [ 58.669525180742482, 59.293228665570439 ], [ 59.173990513351498, 59.168378403840222 ], [ 59.091101515722357, 59.021979071976546 ], [ 59.181225212973175, 58.952991035507864 ], [ 59.066710239885651, 58.890462552304939 ], [ 59.082729933639484, 58.769332994522074 ], [ 59.425344679613261, 58.674661770124544 ], [ 59.388551060283191, 58.590119126996058 ], [ 59.448909133149925, 58.483303941523673 ], [ 58.997257115423508, 58.203346869962047 ], [ 58.839127231836244, 58.201021429994967 ], [ 58.605549757615165, 58.01625234586902 ], [ 58.755824823057083, 57.848355618017308 ], [ 58.860417922249269, 57.83393789291938 ], [ 58.852769809678932, 57.747896633922494 ], [ 58.52317752482287, 57.576124173391861 ], [ 58.444836053441065, 57.597208157330556 ], [ 58.436464471358249, 57.675963039862381 ], [ 58.16257938033408, 57.683507798745893 ], [ 58.1217549986942, 57.560827949150507 ], [ 58.053025343744594, 57.605114651420024 ], [ 57.97530398908782, 57.540932521818377 ], [ 57.997318149912644, 57.486000475241724 ], [ 57.937993604920905, 57.331953029908391 ], [ 58.038555942702544, 57.236506660054317 ], [ 57.989049919718013, 57.193098456028906 ], [ 58.105115187316017, 57.127055976252279 ], [ 58.02305301288618, 57.114007676712902 ], [ 58.071938918246474, 57.050626532788215 ], [ 57.971376581364098, 57.057706204577642 ], [ 57.996077914663999, 57.089254666569559 ], [ 57.88218305920077, 57.06773143215986 ], [ 57.749167921862067, 56.934923001295431 ], [ 57.559618768391431, 56.88831085905889 ], [ 57.33834028487621, 56.924639391294818 ], [ 57.218657667917, 56.85301585649654 ], [ 57.310641717141493, 56.724393215774285 ], [ 57.425776808752687, 56.659125882353578 ], [ 57.353946568379399, 56.60729442030123 ], [ 57.380921664802941, 56.56721934749487 ], [ 57.317463005613206, 56.373355210874251 ], [ 57.408413526962647, 56.329120185448176 ], [ 57.267026809339768, 56.301912543229264 ], [ 57.165637648358768, 56.159569811197798 ], [ 56.864053988700618, 56.108100084351406 ], [ 56.737653436057201, 56.222976793544149 ], [ 56.645566034045203, 56.222304999076414 ], [ 56.502215610761823, 56.319611720904163 ], [ 56.558232862956231, 56.360229396969089 ], [ 56.528467237672828, 56.383302924090628 ], [ 56.393281690897311, 56.388289699909706 ], [ 56.266984491041399, 56.300827338510828 ], [ 56.064516229240553, 56.291344713287856 ], [ 55.913621047073661, 56.466346951350715 ], [ 55.412152948000141, 56.334597886783001 ], [ 55.224360792816299, 56.364156806491394 ], [ 55.172374302032381, 56.317751369829807 ], [ 54.968355746620375, 56.320438544103524 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-SAM", "NAME_1": "Samara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 51.386042108056813, 54.676352850703495 ], [ 51.408676384707348, 54.594600735535494 ], [ 51.491668736023314, 54.596512763453234 ], [ 51.513476190373865, 54.639300848954974 ], [ 51.696410760048536, 54.557264512946915 ], [ 51.931641879768904, 54.531865545858238 ], [ 51.932675409442538, 54.43631582321666 ], [ 52.03375451026244, 54.424378566817381 ], [ 52.0784029477378, 54.342936510011896 ], [ 52.210591261877198, 54.442155259757385 ], [ 52.352908156386263, 54.458433335929669 ], [ 52.368721143665823, 54.419055895113445 ], [ 52.41512658122673, 54.473006089759224 ], [ 52.481995884202661, 54.467166653218442 ], [ 52.538529901233915, 54.377249661542635 ], [ 52.51496544769725, 54.325831611539627 ], [ 52.203666619718717, 54.298649806843059 ], [ 52.348567335713938, 54.217414456511904 ], [ 52.271156040318999, 54.118402412341425 ], [ 52.396523065087365, 54.127962551030862 ], [ 52.484683057577001, 54.058509426568776 ], [ 52.375542433036856, 53.980452176027086 ], [ 52.412542758841198, 53.927354641203692 ], [ 52.253482700166444, 53.654348050222325 ], [ 52.07995324134896, 53.514098212362569 ], [ 52.192607863362184, 53.3751661241173 ], [ 52.128425733760594, 53.173860582299994 ], [ 52.05855919814843, 53.139134020518611 ], [ 52.157881300681481, 53.102572944285896 ], [ 52.063520134646467, 53.07546865485449 ], [ 52.052461379189253, 52.99340648132403 ], [ 51.728036737305558, 52.869486396479999 ], [ 51.717494744886551, 52.826181546141413 ], [ 51.772065057156624, 52.796260891227121 ], [ 51.732274204291059, 52.668413397760048 ], [ 51.545205518619753, 52.681384182034321 ], [ 51.509755487325833, 52.631258043224079 ], [ 51.545825637143423, 52.574258938199421 ], [ 51.471411574384604, 52.569142971171175 ], [ 51.562672154096617, 52.447289943875774 ], [ 51.412913852592169, 52.350034897992145 ], [ 51.406816033632992, 52.257120672780786 ], [ 51.452601352670285, 52.219345201519786 ], [ 51.415187615715865, 52.102711494040193 ], [ 50.76700931792567, 51.759399922768182 ], [ 50.717865837738202, 51.816269028992451 ], [ 50.722103305623023, 51.92804515186225 ], [ 50.36977339132892, 52.005430609734844 ], [ 50.331326124700865, 52.057804674146382 ], [ 50.167511835103085, 52.023594876302468 ], [ 50.221462029748864, 52.129893296938064 ], [ 50.006384718879644, 52.202421170200807 ], [ 49.812288039161672, 52.193093573709405 ], [ 49.70449100085898, 52.290451972380595 ], [ 49.649817335801401, 52.266887518843873 ], [ 49.58367150233795, 52.397577216215552 ], [ 49.520832960772509, 52.393959865955026 ], [ 49.521453078396803, 52.340371406515146 ], [ 49.477734816008933, 52.3314313827521 ], [ 49.413035923369137, 52.405173651942448 ], [ 49.319604933320988, 52.39036835411622 ], [ 49.352987908864861, 52.459278876219116 ], [ 49.22865441287081, 52.508009751948464 ], [ 48.961900668680869, 52.486719062434759 ], [ 48.890690545032612, 52.411038926904951 ], [ 48.830332473065141, 52.545991930583114 ], [ 48.737418246954519, 52.559066066745572 ], [ 48.691012811192252, 52.644771429857599 ], [ 48.355839471314539, 52.664175929875228 ], [ 48.592517530959242, 52.919405828815911 ], [ 48.521720819360326, 52.978213608970862 ], [ 48.324316847744285, 52.984363104773422 ], [ 48.357079705663864, 53.065495104115712 ], [ 48.270159945724913, 53.056632594718451 ], [ 48.221584099626455, 52.998935859502296 ], [ 48.148513624903842, 53.058673813845417 ], [ 48.201947055612095, 53.146575425715298 ], [ 47.948525831801646, 53.358681342370005 ], [ 48.056839634041864, 53.476064357783855 ], [ 48.166497023418856, 53.477459621764126 ], [ 48.219310337402135, 53.428832098822284 ], [ 48.375579868116404, 53.471180934752283 ], [ 48.384984978973591, 53.552287096572229 ], [ 48.434801060320638, 53.580709133819425 ], [ 48.345710890944815, 53.608666083073274 ], [ 48.326487258080476, 53.662151191524231 ], [ 48.420848423216114, 53.633522446903385 ], [ 48.598718702705924, 53.668326523949872 ], [ 48.514382766051767, 53.695637518956289 ], [ 48.473144973261867, 53.769896552084163 ], [ 48.874257440128758, 53.716437282954246 ], [ 49.029286737392965, 53.85717804632975 ], [ 49.413656040094168, 53.868340156373108 ], [ 49.617054477881823, 53.814286607141185 ], [ 49.82686079299117, 53.887150377188107 ], [ 49.855902947862717, 53.837773546312064 ], [ 50.034289992189372, 53.826327216327968 ], [ 50.048035922819565, 53.873042711352014 ], [ 49.957188755156892, 53.906787421202523 ], [ 49.974138624897591, 53.959600735185745 ], [ 50.197380812274616, 54.03814891214256 ], [ 50.257118768416376, 54.294412339857558 ], [ 50.205649041569984, 54.418074042283195 ], [ 50.120176223354008, 54.431535752972593 ], [ 50.077491488841133, 54.51646596882938 ], [ 50.215570917264017, 54.504425361441236 ], [ 50.276135694806442, 54.444377346037641 ], [ 50.384242792370969, 54.485770169357806 ], [ 50.512090284938665, 54.329655667375107 ], [ 50.696885206587012, 54.426652329941021 ], [ 50.935423618205391, 54.340378526048084 ], [ 51.008184034565545, 54.544991359763401 ], [ 51.092933384168305, 54.553517971477163 ], [ 51.186984490941484, 54.648034166243747 ], [ 51.386042108056813, 54.676352850703495 ] ] ], [ [ [ 52.258133579201285, 53.395087388971774 ], [ 52.300508253553005, 53.380152899936377 ], [ 52.273016392292618, 53.341886502260252 ], [ 52.229091424329738, 53.354883124056926 ], [ 52.258133579201285, 53.395087388971774 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-STA", "NAME_1": "Stavropol'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.641727328553372, 45.975385239836896 ], [ 42.110949333644783, 45.928721422555554 ], [ 42.157148064731359, 45.960399074857378 ], [ 42.17740522637007, 46.099098619105973 ], [ 42.325406527789028, 46.12584117333148 ], [ 42.319515415304124, 45.975514431046122 ], [ 42.51660932765833, 45.989699612147376 ], [ 42.915551385088349, 46.241415514514358 ], [ 43.392524854638282, 46.016002915901822 ], [ 43.877559848807948, 45.945490424243644 ], [ 44.080028110608794, 45.795809638004357 ], [ 44.148241000721555, 45.652510891564361 ], [ 44.277122022962942, 45.580215563197669 ], [ 44.737662387609078, 45.496603095156672 ], [ 45.586189406116148, 45.158303331433558 ], [ 45.717344190581912, 44.99994090384962 ], [ 45.622362908721243, 44.903435166799511 ], [ 45.646340773407928, 44.799746406071733 ], [ 45.429609816140101, 44.614538072374103 ], [ 45.270859815827805, 44.590560207687417 ], [ 45.227554966388539, 44.487155666900492 ], [ 45.40511518661657, 44.44222300948428 ], [ 45.441392042908433, 44.376051336699788 ], [ 45.404495069891539, 44.317501938963289 ], [ 45.130713331654931, 44.268305976139857 ], [ 45.104978468681338, 44.215802721418413 ], [ 45.517253044692211, 44.185287787301547 ], [ 45.452554152052471, 43.888535874730792 ], [ 45.221043736279398, 43.882748115033451 ], [ 45.203990512851874, 43.947705390091642 ], [ 45.075936313809791, 43.950340888421238 ], [ 45.076866488897338, 43.781384793373491 ], [ 44.892588332085836, 43.652116197504483 ], [ 44.829129672896045, 43.668187568101757 ], [ 44.803498162710014, 43.802055366162222 ], [ 44.284873488320784, 43.818850206271975 ], [ 44.298722771738483, 43.890396226704468 ], [ 44.416751743198347, 43.946361802954812 ], [ 44.420472446246379, 43.99855499931374 ], [ 44.258518507722954, 43.924606025447702 ], [ 43.90608523884265, 43.994214179540734 ], [ 43.797358026351787, 43.936026516110815 ], [ 43.738653598984399, 43.840941881462641 ], [ 43.459084100151074, 43.867813625997996 ], [ 43.326999138799181, 43.805026760376677 ], [ 43.216101515072864, 43.950056668480443 ], [ 42.948417595795377, 43.884660142951191 ], [ 42.852092725898558, 43.817119046406845 ], [ 42.683214146115915, 43.807171332291148 ], [ 42.663990513251576, 43.910653388343178 ], [ 42.611797315993329, 43.933752752987118 ], [ 42.649831169672723, 43.965068670982362 ], [ 42.559810825209411, 43.981760159203986 ], [ 42.590713332054634, 44.040257880097045 ], [ 42.487257114424267, 44.025530097535921 ], [ 42.499762810705136, 43.972716783552698 ], [ 42.378116488984745, 43.971476549203373 ], [ 42.303082310400271, 44.128521227172882 ], [ 42.555470005436405, 44.244896552234081 ], [ 42.557020298148245, 44.289079901716093 ], [ 42.352278273223703, 44.270476386476048 ], [ 42.286545850910272, 44.328147285069122 ], [ 41.952716099068709, 44.394603175995769 ], [ 41.908894483893278, 44.493305161803733 ], [ 41.729370558004803, 44.458552760701309 ], [ 41.573411085653049, 44.536765041773208 ], [ 41.414557732553305, 44.702077949038085 ], [ 41.587053664395057, 44.788170884878411 ], [ 41.656920200007221, 44.968909206694491 ], [ 41.464167108325341, 44.989192205855602 ], [ 41.352752719762179, 45.105619207760185 ], [ 41.359574009133212, 45.212020982082606 ], [ 41.292601353369719, 45.242820136140324 ], [ 41.025640902705447, 45.220211697012189 ], [ 41.008070917139094, 45.38482697228693 ], [ 40.842602980243328, 45.52719554274006 ], [ 40.856658970135356, 45.69044139335557 ], [ 41.132921177070671, 45.683310044722759 ], [ 41.179016555369685, 45.750127671754626 ], [ 41.274411249279694, 45.754106757221052 ], [ 41.281129184963902, 45.803767808937209 ], [ 41.232863397227959, 45.820407620315393 ], [ 41.260561964962676, 45.872032375893411 ], [ 41.171368442799348, 45.890067451251866 ], [ 41.162376743092182, 45.953551947964002 ], [ 41.641727328553372, 45.975385239836896 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "RU-AD", "NAME_1": "Adygey" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.634924758071122, 45.193520820529443 ], [ 39.890102980168365, 45.080788683251114 ], [ 40.255662062054512, 45.088100898137895 ], [ 40.527583449216763, 44.915191555146123 ], [ 40.728398064618943, 44.607768459846511 ], [ 40.754132927592536, 44.474572455354519 ], [ 40.640651483279328, 44.457622586513139 ], [ 40.676514926622531, 44.535679837054829 ], [ 40.539365675985152, 44.733290514245823 ], [ 40.404696893147104, 44.737398790022098 ], [ 40.323668246592263, 44.608414414993206 ], [ 40.406350538646393, 44.499299627975404 ], [ 40.438079867791657, 44.291612047258127 ], [ 40.366456332993323, 44.19805186600081 ], [ 40.383406202734022, 44.033384914781948 ], [ 40.456683383931022, 43.965740465450097 ], [ 40.320360955593628, 43.760274970113755 ], [ 39.724221633021898, 43.931944077856883 ], [ 39.737244094139612, 44.186553860072536 ], [ 39.81331180239772, 44.184900214573247 ], [ 39.959969516679848, 44.064597479989686 ], [ 40.078618604864687, 44.236628322938714 ], [ 39.793571404696536, 44.350213120938747 ], [ 39.920488722176742, 44.592678941180168 ], [ 39.914907668054411, 44.698615628408504 ], [ 40.026632114080769, 44.736184394094494 ], [ 39.883798455634178, 45.00743398678901 ], [ 39.739724561938942, 44.931934719311812 ], [ 39.680503370634028, 44.981234035822069 ], [ 39.603092075239033, 44.958548082328093 ], [ 39.667170851153855, 45.010017809174542 ], [ 39.639162225056623, 45.033969835439507 ], [ 39.499842564083053, 45.037302964859919 ], [ 39.496431919397537, 44.953742174561683 ], [ 39.637198521194762, 44.870749824145037 ], [ 39.46987023322464, 44.794682114987609 ], [ 39.063796828061129, 44.810340074434862 ], [ 38.672916294351467, 44.955654202479423 ], [ 38.685938754569861, 45.036579495347382 ], [ 38.806654901202705, 45.00454010694034 ], [ 38.90618370931071, 45.050118720402622 ], [ 39.077646112378147, 44.963767402143844 ], [ 39.315254347110397, 44.998959051918689 ], [ 39.634924758071122, 45.193520820529443 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/saudi_arabia.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/saudi_arabia.geojson new file mode 100755 index 000000000000..303739c0b422 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/saudi_arabia.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[44.627998,27.222161],[44.69201,27.196696],[44.737162,27.169463],[44.778313,27.137986],[44.798317,27.119242],[44.814892,27.098375],[44.828037,27.077154],[44.837754,27.05558],[44.843469,27.034714],[44.845755,27.01703],[44.845184,26.999346],[44.834324,26.971053],[44.821179,26.954076],[44.801175,26.940283],[44.777742,26.930026],[44.729161,26.913757],[44.704584,26.902086],[44.680008,26.886171],[44.634856,26.849743],[44.597134,26.8119],[44.524549,26.716054],[44.507402,26.702615],[44.495971,26.696602],[44.457107,26.689529],[44.43253,26.682809],[44.41024,26.670784],[44.391951,26.648149],[44.388522,26.625514],[44.395952,26.57989],[44.397095,26.536034],[44.375948,26.405883],[44.375948,26.385016],[44.38052,26.364857],[44.391951,26.344344],[44.408526,26.324538],[44.487398,26.254157],[44.511403,26.226924],[44.599992,26.092882],[44.676007,26.000927],[44.683437,25.96556],[44.672006,25.918521],[44.668006,25.890227],[44.674864,25.866531],[44.70287,25.821261],[44.716015,25.79226],[44.726874,25.756892],[44.736019,25.697122],[44.737162,25.661754],[44.735448,25.633107],[44.730304,25.612594],[44.723445,25.594203],[44.712586,25.578641],[44.693725,25.571568],[44.672578,25.569446],[44.581703,25.576519],[44.342798,25.560957],[44.130756,25.586776],[44.08389,25.586422],[44.061028,25.582531],[44.038738,25.576165],[44.019305,25.567323],[44.002731,25.557774],[43.974154,25.533017],[43.947291,25.499772],[43.910141,25.43222],[43.890137,25.40428],[43.869561,25.384828],[43.798119,25.343095],[43.744394,25.297117],[43.719817,25.280495],[43.679809,25.263872],[43.346029,25.191369],[43.322596,25.181112],[43.297448,25.165904],[43.203143,25.078901],[43.105981,24.961835],[43.092264,24.934248],[43.087692,24.910199],[43.091693,24.889686],[43.101981,24.869526],[43.128271,24.8285],[43.13513,24.804804],[43.133987,24.778279],[43.117984,24.741143],[43.09798,24.716032],[43.073975,24.697287],[43.050542,24.686677],[43.028823,24.681726],[43.009962,24.682079],[42.931661,24.702239],[42.884223,24.705068],[42.742481,24.685616],[42.692756,24.684201],[42.511578,24.701885],[42.440706,24.718154],[42.396698,24.732655],[42.290391,24.782523],[42.268672,24.786059],[42.245239,24.782523],[42.222377,24.772973],[42.195515,24.753521],[42.181798,24.741143],[42.114928,24.649541],[42.096067,24.611698],[42.096067,24.576685],[42.084636,24.532829],[42.068633,24.499938],[42.022338,24.444765],[42.006906,24.421069],[42.001191,24.405153],[42.001762,24.382518],[42.016051,24.34998],[42.017194,24.326284],[42.013193,24.288087],[41.995475,24.212755],[41.983473,24.041931],[41.986902,23.949268],[41.976043,23.854838],[41.979472,23.792238],[41.986902,23.771725],[41.998333,23.757578],[42.009764,23.748382],[42.046343,23.728223],[42.06749,23.713015],[42.088065,23.693209],[42.106926,23.66244],[42.159508,23.504348],[42.185799,23.452358],[42.194943,23.426893],[42.224092,23.284363],[42.352689,23.000717],[42.362977,22.98657],[42.377265,22.971362],[42.396698,22.956861],[42.417845,22.944483],[42.439563,22.934934],[42.461282,22.928568],[42.497861,22.922909],[42.652749,22.925738],[42.871078,22.908762],[42.915658,22.900274],[42.940234,22.892493],[42.96481,22.880114],[42.992244,22.859601],[43.005962,22.838027],[43.010534,22.817514],[43.006533,22.799477],[42.991101,22.755621],[42.985958,22.653763],[42.987101,22.630067],[42.993388,22.604249],[43.015106,22.567467],[43.036253,22.549076],[43.059115,22.53599],[43.101981,22.522197],[43.125414,22.520075],[43.148847,22.522197],[43.266585,22.552259],[43.288875,22.555089],[43.310593,22.554028],[43.430046,22.532807],[43.451193,22.526795],[43.470625,22.517246],[43.485485,22.502038],[43.486628,22.497794],[43.458623,22.351373],[43.458051,22.309639],[43.508347,21.975772],[43.507775,21.955966],[43.504346,21.934038],[43.498059,21.913525],[43.488343,21.89372],[43.476341,21.874621],[43.44662,21.837486],[43.433475,21.818741],[43.425473,21.799289],[43.423759,21.778422],[43.436333,21.611488],[43.429474,21.569048],[43.388895,21.422981],[43.387752,21.402821],[43.388895,21.381955],[43.39461,21.361795],[43.406612,21.341282],[43.667236,20.976291],[43.81355,20.853567],[43.868418,20.793089],[43.900425,20.744989],[43.959865,20.670364],[44.042739,20.584775],[44.055884,20.560725],[44.0616,20.539151],[44.063886,20.52076],[44.062743,20.497772],[44.046739,20.459575],[43.988442,20.372571],[43.968438,20.334021],[43.929573,20.163197],[43.929002,20.13844],[43.937003,20.106963],[43.952435,20.082913],[44.010161,20.018544],[44.106751,19.866818],[44.499401,19.524109],[44.517118,19.512792],[44.794888,19.347626],[44.866902,19.314381],[44.920056,19.295283],[45.01436,19.273708],[45.272697,19.256732],[47.614876,19.496169],[47.745188,19.531536],[48.014384,21.500081],[48.299012,23.655012],[48.304727,23.87818],[48.289867,23.999844],[48.265291,24.070932],[48.223568,24.158643],[48.181274,24.222304],[48.141266,24.27005],[47.888645,24.502413],[47.534289,24.734423],[47.517142,24.753521],[47.503425,24.773327],[47.495995,24.788889],[47.487422,24.833805],[47.465132,26.17458],[47.458845,26.206411],[47.452558,26.225509],[47.442842,26.2439],[47.430268,26.261584],[47.415408,26.27467],[47.402834,26.282451],[47.08277,26.398102],[47.062195,26.408712],[47.043906,26.427457],[47.017043,26.4653],[46.851867,26.609952],[46.830149,26.623038],[46.807287,26.629404],[46.782711,26.630465],[46.633538,26.606769],[46.610677,26.607476],[46.587815,26.61066],[46.563239,26.618087],[46.540377,26.627282],[46.294042,26.786081],[46.23003,26.818619],[46.186593,26.832059],[46.142584,26.840547],[45.977408,26.844791],[45.933971,26.852926],[45.912252,26.861767],[45.869387,26.888293],[45.773939,26.969284],[45.712213,27.037189],[45.692209,27.053105],[45.67049,27.063715],[45.647628,27.067605],[45.575043,27.073264],[45.528748,27.085996],[45.245263,27.23171],[45.222401,27.250808],[45.197825,27.278748],[45.185251,27.30492],[45.158389,27.39157],[45.145243,27.415266],[45.127525,27.436133],[45.085803,27.472207],[45.000643,27.527734],[44.990355,27.532686],[44.948633,27.479988],[44.927486,27.468317],[44.901195,27.458414],[44.878905,27.460536],[44.857757,27.469024],[44.839468,27.481403],[44.817178,27.505806],[44.798889,27.520661],[44.740591,27.501209],[44.72516,27.490952],[44.693725,27.464073],[44.667434,27.434718],[44.640572,27.394753],[44.624568,27.363276],[44.613709,27.332153],[44.610851,27.312347],[44.609708,27.29148],[44.611423,27.27026],[44.621139,27.2356],[44.627998,27.222161]]]},"properties":{"ISO":"SA-01","label_ar":"منطقة الرياض","NAME_1":"Ar Riyad"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[41.597111,18.121441],[41.6154,18.163175],[41.625688,18.180151],[41.641691,18.196774],[41.660552,18.209152],[41.722278,18.24169],[41.739996,18.259727],[41.75257,18.274935],[41.770288,18.314193],[41.806295,18.440808],[41.810296,18.469102],[41.809724,18.495274],[41.802866,18.525336],[41.734281,18.723039],[41.723421,18.742491],[41.706275,18.75876],[41.686843,18.769017],[41.666267,18.776444],[41.623401,18.783871],[41.579964,18.787408],[41.4708,18.785639],[41.451367,18.790591],[41.431363,18.801201],[41.414217,18.817824],[41.402786,18.837276],[41.394785,18.858142],[41.389641,18.879009],[41.383354,18.920389],[41.390212,19.15346],[41.394213,19.171143],[41.402215,19.1814],[41.418218,19.173973],[41.435364,19.160887],[41.455368,19.151338],[41.474801,19.150984],[41.493661,19.159826],[41.543957,19.1959],[41.588537,19.220657],[41.610828,19.227731],[41.631975,19.231268],[41.654265,19.231975],[41.765144,19.220657],[41.794293,19.224194],[41.813725,19.231975],[41.832014,19.244707],[41.845731,19.262037],[41.855448,19.281489],[41.889168,19.383347],[41.889168,19.408104],[41.882882,19.432508],[41.840016,19.500059],[41.834872,19.519865],[41.832014,19.546744],[41.833729,19.57044],[41.864021,19.700592],[41.866307,19.720398],[41.865164,19.740557],[41.858305,19.762131],[41.846874,19.782291],[41.832014,19.798913],[41.81944,19.807401],[41.80458,19.81306],[41.785719,19.816597],[41.743425,19.814121],[41.698845,19.797145],[41.670839,19.784413],[41.636547,19.779815],[41.542814,19.779815],[41.522239,19.776632],[41.505664,19.768851],[41.495376,19.760717],[41.483374,19.747277],[41.456511,19.703775],[41.391927,19.543561],[41.368494,19.436044],[41.361064,19.416592],[41.34849,19.398555],[41.3302,19.383701],[41.310196,19.374152],[41.288478,19.367786],[41.265616,19.364603],[41.242183,19.364956],[41.215892,19.369908],[41.191887,19.380871],[41.17074,19.396787],[41.107871,19.476717],[41.083866,19.497937],[41.006708,19.536841],[40.995277,19.544976],[40.979845,19.560184],[40.969557,19.579636],[40.964414,19.599795],[40.96327,19.619247],[40.969557,19.702007],[40.9667,19.722873],[40.947839,19.787596],[40.946696,19.808816],[40.958127,19.911381],[40.956412,19.932955],[40.950697,19.954176],[40.94098,19.973981],[40.928978,19.989897],[40.915833,20.000507],[40.840961,20.020666],[40.821528,20.030569],[40.805525,20.046838],[40.799238,20.064875],[40.802096,20.083974],[40.815241,20.102719],[40.892399,20.177344],[40.914689,20.193966],[40.939837,20.205637],[40.970701,20.214126],[41.067863,20.228273],[41.091296,20.234992],[41.114729,20.244895],[41.138734,20.265055],[41.151308,20.28486],[41.179313,20.350643],[41.249613,20.469124],[41.257043,20.496003],[41.257615,20.505906],[41.254757,20.535968],[41.237039,20.595385],[41.228466,20.637119],[41.227323,20.658693],[41.229038,20.677438],[41.234181,20.694767],[41.249613,20.720939],[41.265045,20.737562],[41.285049,20.752063],[41.306767,20.760197],[41.330772,20.763026],[41.355348,20.759136],[41.38564,20.74605],[41.406787,20.72872],[41.423362,20.708561],[41.454225,20.626155],[41.466227,20.606349],[41.478801,20.589373],[41.494233,20.576994],[41.506807,20.573104],[41.527954,20.572043],[41.557674,20.580531],[41.606827,20.599629],[41.633689,20.605996],[41.666267,20.61024],[41.773145,20.611301],[41.794864,20.617313],[41.816583,20.626155],[41.909744,20.675315],[41.932034,20.680974],[41.95661,20.677084],[41.976043,20.670718],[42.032054,20.62474],[42.050343,20.596446],[42.152649,20.398743],[42.169224,20.378584],[42.189228,20.363022],[42.209232,20.351351],[42.230951,20.344631],[42.259528,20.346753],[42.293249,20.35701],[42.347545,20.385657],[42.381266,20.407939],[42.634459,20.624033],[42.832784,20.725183],[42.860218,20.746757],[42.898512,20.783186],[42.924231,20.799101],[42.951665,20.810419],[42.988244,20.817138],[43.050542,20.818199],[43.085406,20.826688],[43.145989,20.851445],[43.178567,20.860287],[43.222004,20.865238],[43.250581,20.863823],[43.276301,20.858518],[43.340314,20.837651],[43.370034,20.840127],[43.403755,20.850737],[43.5615,20.937741],[43.667236,20.976291],[43.406612,21.341282],[43.39461,21.361795],[43.388895,21.381955],[43.387752,21.402821],[43.388895,21.422981],[43.429474,21.569048],[43.436333,21.611488],[43.423759,21.778422],[43.425473,21.799289],[43.433475,21.818741],[43.44662,21.837486],[43.476341,21.874621],[43.488343,21.89372],[43.498059,21.913525],[43.504346,21.934038],[43.507775,21.955966],[43.508347,21.975772],[43.458051,22.309639],[43.458623,22.351373],[43.486628,22.497794],[43.485485,22.502038],[43.470625,22.517246],[43.451193,22.526795],[43.430046,22.532807],[43.310593,22.554028],[43.288875,22.555089],[43.266585,22.552259],[43.148847,22.522197],[43.125414,22.520075],[43.101981,22.522197],[43.059115,22.53599],[43.036253,22.549076],[43.015106,22.567467],[42.993388,22.604249],[42.987101,22.630067],[42.985958,22.653763],[42.991101,22.755621],[43.006533,22.799477],[43.010534,22.817514],[43.005962,22.838027],[42.992244,22.859601],[42.96481,22.880114],[42.940234,22.892493],[42.915658,22.900274],[42.871078,22.908762],[42.652749,22.925738],[42.497861,22.922909],[42.461282,22.928568],[42.439563,22.934934],[42.417845,22.944483],[42.396698,22.956861],[42.377265,22.971362],[42.362977,22.98657],[42.352689,23.000717],[42.224092,23.284363],[42.194943,23.426893],[42.185799,23.452358],[42.159508,23.504348],[42.106926,23.66244],[42.088065,23.693209],[42.06749,23.713015],[42.046343,23.728223],[42.009764,23.748382],[41.998333,23.757578],[41.986902,23.771725],[41.979472,23.792238],[41.976043,23.854838],[41.986902,23.949268],[41.855448,23.967306],[41.792578,23.964123],[41.769716,23.954927],[41.749712,23.941488],[41.736567,23.923097],[41.731423,23.902937],[41.733709,23.881717],[41.759428,23.816641],[41.764001,23.795774],[41.766287,23.7742],[41.764572,23.730345],[41.757142,23.705588],[41.743997,23.679062],[41.717706,23.641926],[41.692558,23.619291],[41.669125,23.602315],[41.490804,23.530873],[41.361064,23.463321],[41.317055,23.433259],[41.286192,23.40249],[41.275332,23.378086],[41.281619,23.357573],[41.299337,23.33989],[41.321056,23.325035],[41.43022,23.270923],[41.446223,23.254654],[41.45251,23.232019],[41.442794,23.204433],[41.423362,23.185334],[41.4005,23.173309],[41.283906,23.133698],[41.257615,23.117075],[41.22618,23.094087],[41.086724,22.964996],[40.802096,22.75739],[40.762088,22.714949],[40.690645,22.61203],[40.664926,22.586212],[40.641492,22.575955],[40.616916,22.574894],[40.463743,22.61875],[40.439738,22.621579],[40.408875,22.616274],[40.367724,22.592578],[40.265989,22.512294],[40.24027,22.499208],[40.215122,22.493196],[40.192832,22.491074],[40.16997,22.491074],[40.100242,22.500977],[40.080238,22.512648],[40.068807,22.529271],[40.064235,22.548723],[40.067093,22.568882],[40.076809,22.609201],[40.083096,22.652349],[40.082524,22.674277],[40.076809,22.695497],[40.067664,22.715303],[40.051661,22.734755],[40.0328,22.751377],[40.014511,22.763756],[39.984219,22.778256],[39.91792,22.797001],[39.897916,22.805136],[39.884771,22.821405],[39.881913,22.840857],[39.887057,22.86137],[39.942497,22.980911],[39.94764,22.999302],[39.953927,23.047402],[39.953356,23.077464],[39.949927,23.095855],[39.942497,23.114953],[39.930494,23.132637],[39.912776,23.14643],[39.891629,23.152443],[39.869339,23.153504],[39.776178,23.142894],[39.562993,23.081354],[39.486406,23.067915],[39.463544,23.077464],[39.453257,23.094087],[39.449256,23.135113],[39.444683,23.154565],[39.433824,23.171187],[39.415535,23.180737],[39.385815,23.181798],[39.278365,23.164114],[39.2395,23.160931],[39.206922,23.16659],[39.182917,23.180737],[39.160056,23.199128],[39.082326,23.284363],[39.001167,23.349439],[38.988593,23.362525],[38.945727,23.424771],[38.926866,23.441747],[38.900004,23.449175],[38.869712,23.446699],[38.799413,23.431491],[38.674816,23.423003],[38.643953,23.419466],[38.646811,23.400721],[38.659385,23.372074],[38.67253,23.348024],[38.680532,23.318315],[38.67996,23.303815],[38.688533,23.286485],[38.691963,23.273045],[38.703965,23.257837],[38.711395,23.23591],[38.729113,23.216458],[38.747974,23.183212],[38.76512,23.160931],[38.777694,23.139357],[38.786839,23.154565],[38.798269,23.149613],[38.799413,23.137235],[38.803985,23.121673],[38.806271,23.093026],[38.803985,23.079232],[38.798841,23.064732],[38.790268,23.051292],[38.779409,23.041036],[38.799413,22.998595],[38.814273,22.98268],[38.834277,22.986216],[38.850851,22.978082],[38.873713,22.972777],[38.894289,22.96535],[38.902862,22.949434],[38.905148,22.93847],[38.919436,22.92114],[38.937154,22.912299],[38.9543,22.881883],[38.964588,22.870211],[38.958301,22.859248],[38.950871,22.85182],[38.941727,22.850406],[38.930296,22.856772],[38.912578,22.862077],[38.880572,22.928214],[38.850851,22.943068],[38.850851,22.929629],[38.902862,22.842979],[38.929724,22.815038],[38.95773,22.775073],[38.970875,22.74678],[38.978305,22.753853],[38.971447,22.763756],[38.968017,22.783915],[38.958301,22.803367],[38.936583,22.826356],[38.945156,22.831307],[38.96516,22.816453],[39.012598,22.766939],[39.014312,22.758804],[38.988593,22.736523],[38.985735,22.724498],[38.993165,22.708583],[39.012598,22.678521],[39.038317,22.622994],[39.066323,22.587627],[39.074324,22.574187],[39.081754,22.5466],[39.074324,22.491074],[39.082326,22.436254],[39.06918,22.394521],[39.070323,22.365873],[39.0949,22.370118],[39.101187,22.380374],[39.108045,22.409022],[39.114904,22.418571],[39.128049,22.421046],[39.137194,22.41468],[39.142909,22.403009],[39.142909,22.390631],[39.122334,22.370118],[39.108617,22.342177],[39.090327,22.323433],[39.083469,22.31353],[39.073181,22.271089],[39.040603,22.235722],[39.033173,22.208843],[39.033173,22.167816],[39.029172,22.153316],[39.022314,22.142352],[39.019456,22.131388],[39.026315,22.116888],[39.040603,22.15084],[39.046319,22.15084],[39.044033,22.130681],[39.035459,22.091069],[39.033173,22.072325],[39.029744,22.06702],[39.012598,22.054287],[39.010312,22.043677],[39.010312,22.024225],[39.005739,22.001944],[38.986307,22.002297],[38.958873,22.034128],[38.932582,22.024932],[38.931439,22.005834],[38.949728,21.922014],[38.978877,21.861889],[39.012598,21.821924],[39.019456,21.807777],[39.033173,21.801057],[39.037174,21.775947],[39.045176,21.75897],[39.060036,21.746238],[39.066894,21.725018],[39.080611,21.725725],[39.088613,21.730323],[39.093757,21.739165],[39.101187,21.760031],[39.109188,21.748006],[39.108617,21.732091],[39.103473,21.718651],[39.098329,21.712993],[39.079468,21.706273],[39.077182,21.691419],[39.088041,21.664539],[39.090327,21.636953],[39.088613,21.60583],[39.092042,21.576475],[39.108617,21.554547],[39.101187,21.548535],[39.110331,21.528022],[39.120048,21.517058],[39.129764,21.519533],[39.142909,21.541108],[39.158912,21.507862],[39.160056,21.494423],[39.149768,21.485581],[39.149768,21.479922],[39.164628,21.464714],[39.172629,21.436067],[39.170915,21.404236],[39.160056,21.379833],[39.080611,21.314757],[39.112046,21.268072],[39.125763,21.260645],[39.162913,21.205825],[39.169772,21.191325],[39.168057,21.185312],[39.156626,21.167629],[39.158912,21.155957],[39.168057,21.136152],[39.174344,21.108919],[39.185203,21.097248],[39.237785,21.062941],[39.241786,21.041721],[39.255503,21.032879],[39.258932,21.024037],[39.259504,20.999987],[39.262362,20.983011],[39.26922,20.968511],[39.296654,20.928192],[39.297226,20.923948],[39.328089,20.932082],[39.358381,20.91546],[39.36181,20.903788],[39.359524,20.896715],[39.352665,20.899191],[39.340663,20.910154],[39.338948,20.887519],[39.360095,20.862762],[39.388101,20.841188],[39.409248,20.828456],[39.410962,20.846847],[39.416678,20.846493],[39.430395,20.828456],[39.437253,20.82598],[39.448684,20.827041],[39.452685,20.806175],[39.457257,20.79415],[39.435539,20.800869],[39.423536,20.813955],[39.417249,20.805467],[39.420679,20.791674],[39.430395,20.78743],[39.423536,20.771868],[39.43611,20.75666],[39.4584,20.744635],[39.477833,20.738977],[39.464687,20.74605],[39.457257,20.75949],[39.470974,20.757368],[39.505838,20.746404],[39.489835,20.723061],[39.493265,20.706085],[39.526414,20.670718],[39.530986,20.6594],[39.536702,20.630399],[39.54356,20.619081],[39.566422,20.598215],[39.579567,20.591141],[39.594999,20.589019],[39.585283,20.57558],[39.567565,20.575226],[39.567565,20.567799],[39.587569,20.551884],[39.646438,20.461697],[39.6733,20.436232],[39.727025,20.396621],[39.744743,20.381413],[39.760175,20.350643],[39.778464,20.342863],[39.797896,20.337558],[39.811613,20.331545],[39.82533,20.319874],[39.923064,20.26364],[39.940782,20.259042],[39.947069,20.261871],[39.941353,20.268591],[39.909919,20.288397],[39.904203,20.29547],[39.90306,20.308203],[39.92535,20.299361],[39.968216,20.275311],[39.991649,20.266469],[40.000222,20.275311],[40.020226,20.282031],[40.045374,20.285921],[40.067664,20.286275],[40.084239,20.279201],[40.115674,20.251969],[40.125962,20.245602],[40.124818,20.241358],[40.149395,20.218016],[40.164826,20.200332],[40.19569,20.196088],[40.221981,20.189015],[40.239127,20.178051],[40.232268,20.16355],[40.267704,20.125354],[40.313427,20.090694],[40.333431,20.079376],[40.385442,20.068412],[40.393443,20.064168],[40.418591,20.031277],[40.436309,20.023496],[40.445453,20.009702],[40.454598,20.006519],[40.49232,19.984945],[40.522612,19.972213],[40.534614,19.961957],[40.540901,19.943919],[40.527756,19.917747],[40.527184,19.91032],[40.533471,19.903954],[40.564906,19.885917],[40.604914,19.829683],[40.619774,19.821195],[40.620345,19.812353],[40.628347,19.792193],[40.641492,19.771327],[40.656924,19.759302],[40.644922,19.784766],[40.654066,19.794315],[40.67407,19.795023],[40.725509,19.78901],[40.744941,19.776985],[40.791236,19.714032],[40.798095,19.692104],[40.800381,19.642236],[40.794666,19.60121],[40.771232,19.613588],[40.760373,19.614649],[40.760373,19.608991],[40.784378,19.596258],[40.835817,19.546744],[40.85925,19.534366],[40.944981,19.505718],[40.946696,19.493693],[40.952411,19.485205],[40.954697,19.474595],[40.952411,19.464338],[40.95927,19.45585],[40.944981,19.440642],[40.938694,19.430739],[40.938123,19.419422],[40.943267,19.403153],[40.946696,19.384055],[40.956412,19.368493],[40.95927,19.35859],[40.95584,19.343382],[40.983274,19.322869],[40.998135,19.314735],[41.008994,19.304124],[41.013566,19.282904],[41.017567,19.274062],[41.036428,19.264513],[41.047859,19.227731],[41.047859,19.217828],[41.040429,19.194486],[41.039857,19.183522],[41.044429,19.174326],[41.058146,19.153106],[41.069006,19.125519],[41.086724,19.113495],[41.129589,19.101823],[41.149022,19.093689],[41.167883,19.082371],[41.176456,19.067517],[41.163882,19.043114],[41.158738,19.022247],[41.156452,19.003856],[41.143306,18.97733],[41.137019,18.957525],[41.136448,18.936658],[41.14102,18.933121],[41.160452,18.909071],[41.161024,18.903059],[41.171312,18.871582],[41.211891,18.862033],[41.239897,18.84824],[41.249041,18.834093],[41.242183,18.824897],[41.235896,18.796603],[41.211891,18.73082],[41.209605,18.711368],[41.210177,18.697928],[41.216464,18.686611],[41.229038,18.673171],[41.24104,18.65761],[41.267331,18.601376],[41.275332,18.591827],[41.296479,18.577326],[41.30791,18.573435],[41.322199,18.58546],[41.327914,18.587582],[41.340488,18.575558],[41.35592,18.569191],[41.36335,18.558581],[41.369637,18.535946],[41.375352,18.52958],[41.411931,18.505884],[41.415932,18.48148],[41.433078,18.474053],[41.438222,18.464504],[41.439936,18.410746],[41.444509,18.394123],[41.451367,18.355926],[41.455368,18.343902],[41.464513,18.330816],[41.471943,18.312071],[41.475372,18.292973],[41.472514,18.279179],[41.487946,18.280948],[41.50052,18.279179],[41.506235,18.272106],[41.499948,18.258666],[41.505664,18.251947],[41.505092,18.242751],[41.49309,18.224006],[41.506807,18.22825],[41.518809,18.227897],[41.527954,18.222592],[41.533669,18.210213],[41.521667,18.196774],[41.540528,18.191822],[41.560532,18.1897],[41.556531,18.174492],[41.561675,18.168126],[41.57082,18.164943],[41.575392,18.159638],[41.577678,18.146198],[41.597111,18.121441]]]},"properties":{"ISO":"SA-02","label_ar":"منطقة مكة المكرمة","NAME_1":"Makkah"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[38.643953,23.419466],[38.674816,23.423003],[38.799413,23.431491],[38.869712,23.446699],[38.900004,23.449175],[38.926866,23.441747],[38.945727,23.424771],[38.988593,23.362525],[39.001167,23.349439],[39.082326,23.284363],[39.160056,23.199128],[39.182917,23.180737],[39.206922,23.16659],[39.2395,23.160931],[39.278365,23.164114],[39.385815,23.181798],[39.415535,23.180737],[39.433824,23.171187],[39.444683,23.154565],[39.449256,23.135113],[39.453257,23.094087],[39.463544,23.077464],[39.486406,23.067915],[39.562993,23.081354],[39.776178,23.142894],[39.869339,23.153504],[39.891629,23.152443],[39.912776,23.14643],[39.930494,23.132637],[39.942497,23.114953],[39.949927,23.095855],[39.953356,23.077464],[39.953927,23.047402],[39.94764,22.999302],[39.942497,22.980911],[39.887057,22.86137],[39.881913,22.840857],[39.884771,22.821405],[39.897916,22.805136],[39.91792,22.797001],[39.984219,22.778256],[40.014511,22.763756],[40.0328,22.751377],[40.051661,22.734755],[40.067664,22.715303],[40.076809,22.695497],[40.082524,22.674277],[40.083096,22.652349],[40.076809,22.609201],[40.067093,22.568882],[40.064235,22.548723],[40.068807,22.529271],[40.080238,22.512648],[40.100242,22.500977],[40.16997,22.491074],[40.192832,22.491074],[40.215122,22.493196],[40.24027,22.499208],[40.265989,22.512294],[40.367724,22.592578],[40.408875,22.616274],[40.439738,22.621579],[40.463743,22.61875],[40.616916,22.574894],[40.641492,22.575955],[40.664926,22.586212],[40.690645,22.61203],[40.762088,22.714949],[40.802096,22.75739],[41.086724,22.964996],[41.22618,23.094087],[41.257615,23.117075],[41.283906,23.133698],[41.4005,23.173309],[41.423362,23.185334],[41.442794,23.204433],[41.45251,23.232019],[41.446223,23.254654],[41.43022,23.270923],[41.321056,23.325035],[41.299337,23.33989],[41.281619,23.357573],[41.275332,23.378086],[41.286192,23.40249],[41.317055,23.433259],[41.361064,23.463321],[41.490804,23.530873],[41.669125,23.602315],[41.692558,23.619291],[41.717706,23.641926],[41.743997,23.679062],[41.757142,23.705588],[41.764572,23.730345],[41.766287,23.7742],[41.764001,23.795774],[41.759428,23.816641],[41.733709,23.881717],[41.731423,23.902937],[41.736567,23.923097],[41.749712,23.941488],[41.769716,23.954927],[41.792578,23.964123],[41.855448,23.967306],[41.986902,23.949268],[41.983473,24.041931],[41.995475,24.212755],[42.013193,24.288087],[42.017194,24.326284],[42.016051,24.34998],[42.001762,24.382518],[42.001191,24.405153],[42.006906,24.421069],[42.022338,24.444765],[42.068633,24.499938],[42.084636,24.532829],[42.096067,24.576685],[42.096067,24.611698],[42.008621,24.670762],[41.992046,24.685616],[41.979472,24.702946],[41.96004,24.743972],[41.907458,24.93248],[41.890883,24.97103],[41.873165,24.998971],[41.86002,25.007812],[41.844017,25.01524],[41.714848,25.046717],[41.691415,25.058034],[41.669696,25.074657],[41.650264,25.10189],[41.641119,25.124878],[41.63769,25.14716],[41.656551,25.406402],[41.653122,25.430098],[41.64512,25.454148],[41.629688,25.4736],[41.610256,25.485979],[41.566247,25.500126],[41.434221,25.528773],[41.409645,25.5362],[41.323342,25.558482],[41.044429,25.598093],[40.871252,25.591373],[40.843247,25.585714],[40.808954,25.574397],[40.782092,25.559189],[40.75923,25.541152],[40.686073,25.458392],[40.666069,25.440708],[40.646065,25.427623],[40.61463,25.413476],[40.595197,25.408171],[40.57405,25.404634],[40.531185,25.401097],[40.411732,25.403573],[40.362008,25.395792],[40.113959,25.316216],[40.090526,25.312679],[40.067664,25.311971],[40.044803,25.314801],[40.023084,25.321167],[40.005366,25.329301],[39.993364,25.337436],[39.977361,25.352644],[39.964215,25.370681],[39.952784,25.394731],[39.94764,25.421964],[39.956214,25.687926],[39.938496,25.788016],[39.907061,25.898362],[39.903632,25.922411],[39.904203,25.952827],[39.960214,26.288463],[39.956214,26.310037],[39.947069,26.330197],[39.92535,26.346466],[39.901917,26.347527],[39.853336,26.338331],[39.831046,26.340099],[39.809327,26.34788],[39.790466,26.363442],[39.780179,26.384662],[39.779036,26.408712],[39.791038,26.439482],[39.827617,26.499252],[39.831617,26.511277],[39.840191,26.547352],[39.841334,26.569987],[39.838476,26.594744],[39.834475,26.613843],[39.816186,26.656991],[39.781893,26.7012],[39.765319,26.714639],[39.742457,26.727018],[39.719595,26.729494],[39.304084,26.671845],[39.204064,26.671491],[39.153769,26.67715],[39.115475,26.688821],[38.995451,26.771934],[38.868569,26.812961],[38.833705,26.82923],[38.810843,26.847974],[38.793697,26.888293],[38.782266,26.908099],[38.759405,26.926136],[38.741115,26.927551],[38.728541,26.916233],[38.727398,26.89855],[38.732542,26.879097],[38.734257,26.859645],[38.730256,26.84373],[38.704537,26.833474],[38.681675,26.835596],[38.657099,26.842315],[38.58337,26.874146],[38.55022,26.882988],[38.525644,26.884403],[38.504497,26.880866],[38.49078,26.8745],[38.400476,26.810839],[38.374757,26.795984],[38.343894,26.788557],[38.322747,26.794216],[38.313602,26.80907],[38.313602,26.828522],[38.31646,26.849389],[38.31646,26.869548],[38.309601,26.888647],[38.292455,26.904916],[38.2313,26.939929],[38.214725,26.955845],[38.207295,26.973175],[38.205009,27.018091],[38.195864,27.032592],[38.178718,27.043909],[38.158142,27.050275],[38.135852,27.053105],[38.035261,27.057349],[37.991824,27.064422],[37.963247,27.077508],[37.940957,27.095545],[37.884945,27.171585],[37.864941,27.205184],[37.845509,27.246918],[37.817503,27.338519],[37.80893,27.354788],[37.794642,27.372118],[37.768351,27.389448],[37.74949,27.394399],[37.731772,27.393338],[37.544878,27.303152],[37.522588,27.296078],[37.499155,27.292895],[37.476864,27.293602],[37.435713,27.300322],[37.405422,27.311286],[37.320833,27.359032],[37.276825,27.376008],[37.24539,27.381667],[37.218527,27.38096],[37.195666,27.374594],[36.939043,27.26637],[36.824164,27.240905],[36.803016,27.23171],[36.785299,27.216148],[36.779012,27.198464],[36.783584,27.182549],[36.800159,27.172293],[36.821877,27.170878],[36.887033,27.181842],[36.917325,27.180781],[36.935614,27.174415],[36.953332,27.164158],[36.968764,27.149304],[36.976765,27.137986],[36.985338,27.119949],[37.000198,27.05841],[37.002485,27.033299],[37.00077,26.977419],[36.979051,26.841608],[36.981338,26.799875],[36.985338,26.776179],[36.992768,26.753897],[37.001913,26.73303],[37.01563,26.712517],[37.032205,26.692358],[37.053923,26.673967],[37.076214,26.660881],[37.099647,26.651686],[37.214527,26.62127],[37.236245,26.609952],[37.253963,26.592622],[37.264251,26.568572],[37.265394,26.544876],[37.26025,26.523656],[37.25282,26.507741],[37.191665,26.4172],[37.172804,26.376528],[37.168803,26.356015],[37.167089,26.335502],[37.168803,26.314989],[37.175662,26.294122],[37.233959,26.188374],[37.248248,26.147701],[37.257964,26.107029],[37.264822,26.089699],[37.272252,26.077674],[37.288256,26.081564],[37.324263,26.10809],[37.34541,26.115517],[37.3677,26.112334],[37.546021,26.019672],[37.562024,26.009061],[37.571169,25.999158],[37.586601,25.944693],[37.595745,25.923119],[37.607748,25.903313],[37.624894,25.884215],[37.754634,25.785894],[37.772923,25.765734],[37.787212,25.746989],[37.803215,25.719049],[37.833507,25.643363],[37.868942,25.5217],[37.878087,25.501894],[37.887232,25.496589],[37.902663,25.492345],[37.966104,25.489515],[37.987251,25.485625],[38.000968,25.478552],[38.013542,25.46688],[38.020972,25.449197],[38.023259,25.429037],[37.987823,25.201979],[38.000397,24.872709],[37.996396,24.858562],[37.98668,24.839464],[37.966676,24.814],[37.943814,24.797023],[37.919238,24.786767],[37.89409,24.782523],[37.846081,24.784291],[37.800929,24.791718],[37.778639,24.792425],[37.75692,24.789242],[37.73463,24.777218],[37.713483,24.756704],[37.68662,24.725581],[37.662044,24.704361],[37.638039,24.689507],[37.614606,24.681372],[37.591744,24.675713],[37.553451,24.670762],[37.471721,24.671116],[37.451717,24.666518],[37.431141,24.656969],[37.414566,24.641053],[37.404279,24.62337],[37.39742,24.604271],[37.384846,24.545915],[37.38256,24.539549],[37.45686,24.441228],[37.463147,24.422483],[37.455146,24.406922],[37.435713,24.418947],[37.428283,24.421069],[37.417996,24.401263],[37.429426,24.36731],[37.464862,24.33937],[37.486581,24.311076],[37.500298,24.288795],[37.522588,24.267574],[37.545449,24.274648],[37.57517,24.261562],[37.585457,24.246708],[37.628323,24.248122],[37.622608,24.268282],[37.626037,24.281368],[37.640897,24.291624],[37.676333,24.291271],[37.695765,24.279246],[37.710054,24.26616],[37.746061,24.249891],[37.758635,24.241756],[37.767779,24.221597],[37.806644,24.193303],[37.820361,24.181632],[37.865513,24.149801],[37.895805,24.157228],[37.918095,24.149801],[37.92381,24.15546],[37.921524,24.177388],[37.912379,24.191535],[37.918095,24.201438],[37.930669,24.203206],[37.937527,24.210987],[37.948387,24.207096],[37.943814,24.191535],[37.932383,24.174205],[37.939813,24.161472],[37.958103,24.170314],[37.972963,24.174558],[37.983251,24.165717],[37.958103,24.16218],[37.940957,24.150862],[37.935241,24.139191],[37.966104,24.11691],[38.007827,24.09286],[38.045549,24.067395],[38.063267,24.076237],[38.07927,24.070225],[38.126136,24.029199],[38.146712,24.014698],[38.166144,23.99277],[38.185577,23.976148],[38.222155,23.952452],[38.238158,23.950683],[38.259305,23.944671],[38.28331,23.927694],[38.299313,23.910011],[38.30903,23.893388],[38.332463,23.879595],[38.365612,23.870399],[38.377043,23.855899],[38.385616,23.838569],[38.390189,23.824068],[38.399333,23.814165],[38.427339,23.806738],[38.437055,23.80214],[38.453058,23.783749],[38.459917,23.760761],[38.464489,23.736004],[38.471347,23.713368],[38.494781,23.644756],[38.538789,23.591705],[38.539933,23.543252],[38.562223,23.524507],[38.595372,23.521678],[38.595372,23.528397],[38.570224,23.536886],[38.56108,23.545727],[38.559936,23.56235],[38.567938,23.56235],[38.577654,23.556338],[38.600516,23.568362],[38.604517,23.535471],[38.611947,23.524153],[38.629093,23.507884],[38.631379,23.489847],[38.637095,23.468273],[38.643953,23.419466]]]},"properties":{"ISO":"SA-03","label_ar":"منطقة المدينة المنورة","NAME_1":"Al Madinah"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[50.808081,24.746802],[50.786362,24.72735],[50.771502,24.726996],[50.760643,24.736191],[50.749784,24.753168],[50.73721,24.782169],[50.734924,24.843354],[50.72635,24.881551],[50.706346,24.898881],[50.681199,24.913735],[50.661766,24.980226],[50.64462,24.99508],[50.633189,25.011349],[50.606327,25.042826],[50.580607,25.062278],[50.572606,25.042826],[50.561746,25.054851],[50.553745,25.07784],[50.545743,25.118512],[50.551459,25.159538],[50.549172,25.174746],[50.534884,25.198796],[50.529168,25.21648],[50.520024,25.232041],[50.517738,25.244774],[50.518881,25.257859],[50.525168,25.292519],[50.520595,25.314801],[50.509165,25.343448],[50.495448,25.369974],[50.483445,25.385535],[50.490875,25.392255],[50.471443,25.437172],[50.46287,25.447075],[50.429149,25.45627],[50.410288,25.464051],[50.402286,25.478198],[50.390284,25.488454],[50.385711,25.510736],[50.381711,25.512858],[50.361707,25.502955],[50.364564,25.489869],[50.371423,25.474307],[50.374281,25.461222],[50.34799,25.482088],[50.234253,25.615069],[50.196531,25.687219],[50.189101,25.687219],[50.182243,25.672718],[50.174241,25.682975],[50.149093,25.699951],[50.141663,25.713744],[50.144521,25.73355],[50.158809,25.731782],[50.174812,25.720464],[50.187386,25.703488],[50.214249,25.689694],[50.226823,25.687219],[50.233681,25.679438],[50.251399,25.632046],[50.257686,25.632046],[50.247398,25.679438],[50.221679,25.717281],[50.161667,25.78271],[50.142235,25.816309],[50.118801,25.867946],[50.107942,25.914631],[50.127374,25.933375],[50.127374,25.940449],[50.117087,25.958132],[50.111371,25.975816],[50.101655,25.989609],[50.066791,25.996329],[50.065076,26.013305],[50.051931,26.015427],[50.033642,26.033465],[50.024497,26.035941],[50.027926,26.019318],[50.021068,26.004464],[50.006779,25.996329],[49.989633,26.001634],[49.996491,26.017196],[49.99592,26.031696],[49.989633,26.060344],[49.993062,26.067771],[50.01078,26.076967],[50.009065,26.086516],[49.999349,26.101016],[49.997063,26.10809],[49.98106,26.126127],[49.975916,26.139567],[49.994777,26.152299],[50.021068,26.197923],[50.032499,26.201106],[50.045644,26.194386],[50.065648,26.173873],[50.071935,26.159372],[50.073078,26.131432],[50.08108,26.12931],[50.113086,26.103138],[50.119944,26.091467],[50.121088,26.060698],[50.126231,26.046551],[50.141663,26.035941],[50.150236,26.063173],[50.158238,26.102431],[50.161095,26.140981],[50.154808,26.166092],[50.163382,26.17741],[50.173669,26.180593],[50.181671,26.175288],[50.182243,26.16008],[50.202246,26.171397],[50.212534,26.191203],[50.215963,26.215253],[50.216535,26.323831],[50.209105,26.369454],[50.191387,26.403407],[50.162239,26.427103],[50.076507,26.453982],[50.058218,26.463885],[50.041643,26.478386],[50.030784,26.494655],[50.00335,26.570694],[50.002207,26.587317],[50.006208,26.648503],[49.986775,26.672552],[49.983346,26.68387],[49.983917,26.708273],[49.98849,26.724542],[49.997634,26.741519],[50.006208,26.747885],[50.014209,26.710749],[50.023925,26.699785],[50.037642,26.695541],[50.09251,26.689175],[50.117087,26.675382],[50.161667,26.639307],[50.158238,26.664772],[50.142235,26.68104],[50.069077,26.728786],[50.051931,26.756019],[50.002207,26.816851],[49.973058,26.842315],[49.942195,26.858584],[49.917619,26.861414],[49.894185,26.859999],[49.871895,26.862475],[49.83303,26.888293],[49.770732,26.913404],[49.760445,26.920831],[49.737011,26.94099],[49.707863,26.951954],[49.699861,26.95832],[49.670141,26.990858],[49.612415,27.072203],[49.594126,27.090948],[49.575836,27.098729],[49.564406,27.116412],[49.55869,27.139755],[49.559833,27.154255],[49.568406,27.178305],[49.572407,27.19422],[49.552403,27.17689],[49.544402,27.173707],[49.535257,27.176183],[49.516396,27.188208],[49.504394,27.188208],[49.489534,27.174768],[49.497535,27.159207],[49.524398,27.132681],[49.508395,27.134096],[49.481532,27.144706],[49.4661,27.146828],[49.440381,27.140108],[49.431808,27.142938],[49.442096,27.160621],[49.435237,27.166987],[49.423806,27.146474],[49.416948,27.13834],[49.407232,27.132681],[49.39923,27.144706],[49.374654,27.149304],[49.366652,27.160621],[49.388942,27.159207],[49.396944,27.162743],[49.412375,27.203769],[49.407232,27.215441],[49.400945,27.20766],[49.386656,27.219685],[49.370653,27.218624],[49.36208,27.209075],[49.366652,27.19422],[49.356364,27.185025],[49.344934,27.182903],[49.338647,27.189623],[49.33979,27.20766],[49.322643,27.205892],[49.316928,27.223575],[49.319214,27.26637],[49.315213,27.286883],[49.307783,27.306335],[49.304926,27.325433],[49.312356,27.344885],[49.292352,27.355495],[49.279206,27.358678],[49.267204,27.355142],[49.246057,27.339226],[49.223767,27.331446],[49.226053,27.342763],[49.226624,27.368581],[49.229482,27.379899],[49.237484,27.388033],[49.256916,27.400058],[49.263775,27.413851],[49.240341,27.427291],[49.229482,27.411729],[49.212336,27.396521],[49.207192,27.39546],[49.19519,27.406424],[49.183187,27.411022],[49.161469,27.426937],[49.128319,27.43684],[49.119746,27.441084],[49.157468,27.458768],[49.175186,27.458414],[49.182044,27.441084],[49.188903,27.441084],[49.208907,27.458061],[49.264346,27.453109],[49.284922,27.475391],[49.29178,27.475391],[49.289494,27.462305],[49.292923,27.453109],[49.300353,27.448158],[49.312356,27.448865],[49.307783,27.47433],[49.29921,27.489891],[49.278063,27.502977],[49.255201,27.532332],[49.23977,27.545418],[49.208907,27.55143],[49.188903,27.556735],[49.170613,27.555674],[49.152895,27.546125],[49.144322,27.544357],[49.106601,27.546833],[49.088883,27.551077],[49.071736,27.557796],[49.078023,27.546479],[49.071165,27.539405],[49.059163,27.537991],[49.044874,27.544357],[49.063735,27.556382],[49.05459,27.568407],[49.016868,27.585029],[48.981433,27.614384],[48.968859,27.620397],[48.948855,27.618628],[48.925993,27.613677],[48.915705,27.608372],[48.907704,27.599176],[48.909419,27.59281],[48.921992,27.579017],[48.914562,27.57159],[48.896845,27.571943],[48.891129,27.588212],[48.89513,27.608018],[48.907704,27.618628],[48.900274,27.632775],[48.893415,27.632775],[48.884271,27.615091],[48.870554,27.605542],[48.852836,27.604481],[48.831689,27.612616],[48.838547,27.622872],[48.848835,27.623226],[48.873411,27.612616],[48.859694,27.640556],[48.876841,27.644446],[48.877984,27.650812],[48.873411,27.659654],[48.88027,27.670264],[48.88027,27.687594],[48.867696,27.667789],[48.85798,27.662837],[48.845406,27.667081],[48.84712,27.683704],[48.845977,27.697144],[48.839119,27.708108],[48.833975,27.697497],[48.824259,27.689009],[48.815114,27.687594],[48.811113,27.698205],[48.811113,27.742767],[48.804255,27.736401],[48.796825,27.719779],[48.791109,27.714827],[48.78025,27.71412],[48.778535,27.719779],[48.784251,27.728621],[48.784822,27.744536],[48.804255,27.81527],[48.812828,27.82871],[48.82083,27.830125],[48.825402,27.81138],[48.823116,27.799709],[48.805398,27.756561],[48.821973,27.766817],[48.837976,27.803953],[48.853407,27.817746],[48.857408,27.803599],[48.848264,27.78733],[48.845406,27.773183],[48.847692,27.74878],[48.839119,27.728621],[48.852836,27.737462],[48.86541,27.754085],[48.876841,27.777074],[48.873411,27.782379],[48.873983,27.806429],[48.882556,27.826588],[48.877984,27.836845],[48.837976,27.872212],[48.815114,27.902274],[48.814543,27.906872],[48.796253,27.913592],[48.773392,27.929861],[48.752816,27.947898],[48.743671,27.961338],[48.742528,27.975484],[48.746529,27.981497],[48.764247,27.989278],[48.777964,27.986448],[48.784251,27.989278],[48.791681,28.006961],[48.775678,28.011913],[48.747101,28.023938],[48.71338,28.022877],[48.701949,28.023938],[48.667656,28.037731],[48.651653,28.046219],[48.654511,28.061781],[48.648224,28.072037],[48.616218,28.110588],[48.606501,28.126503],[48.600786,28.147723],[48.601929,28.167529],[48.609359,28.186274],[48.623648,28.205372],[48.618504,28.217043],[48.535059,28.299095],[48.521913,28.318547],[48.517341,28.342597],[48.517912,28.354268],[48.524199,28.38044],[48.535059,28.398831],[48.535059,28.407673],[48.524199,28.414747],[48.517341,28.399185],[48.504767,28.389636],[48.488192,28.386099],[48.46876,28.38716],[48.47619,28.4006],[48.499051,28.393526],[48.507625,28.415454],[48.507625,28.449053],[48.49848,28.492908],[48.495051,28.500336],[48.46876,28.510592],[48.456757,28.518373],[48.432753,28.540654],[48.255003,28.538886],[48.077253,28.537118],[47.899504,28.535703],[47.668029,28.533581],[47.659456,28.560106],[47.641167,28.577436],[47.618305,28.591583],[47.596587,28.60856],[47.581727,28.631548],[47.56801,28.661257],[47.558293,28.691319],[47.554864,28.745431],[47.54972,28.770542],[47.494281,28.903877],[47.446271,28.976026],[47.433126,28.994771],[47.178218,29.024126],[46.979321,29.047468],[46.755848,29.071518],[46.532375,29.095921],[46.427212,29.076116],[46.414638,29.062676],[45.94083,28.906352],[45.800802,28.838093],[45.701925,28.758163],[45.624767,28.681416],[45.564755,28.602547],[45.212685,28.016511],[45.164104,27.953203],[44.994928,27.77283],[44.974352,27.739584],[44.948633,27.68335],[44.941203,27.653996],[44.938916,27.637727],[44.938916,27.619336],[44.942346,27.59953],[44.950919,27.579724],[44.97721,27.545772],[44.990355,27.532686],[45.000643,27.527734],[45.085803,27.472207],[45.127525,27.436133],[45.145243,27.415266],[45.158389,27.39157],[45.185251,27.30492],[45.197825,27.278748],[45.222401,27.250808],[45.245263,27.23171],[45.528748,27.085996],[45.575043,27.073264],[45.647628,27.067605],[45.67049,27.063715],[45.692209,27.053105],[45.712213,27.037189],[45.773939,26.969284],[45.869387,26.888293],[45.912252,26.861767],[45.933971,26.852926],[45.977408,26.844791],[46.142584,26.840547],[46.186593,26.832059],[46.23003,26.818619],[46.294042,26.786081],[46.540377,26.627282],[46.563239,26.618087],[46.587815,26.61066],[46.610677,26.607476],[46.633538,26.606769],[46.782711,26.630465],[46.807287,26.629404],[46.830149,26.623038],[46.851867,26.609952],[47.017043,26.4653],[47.043906,26.427457],[47.062195,26.408712],[47.08277,26.398102],[47.402834,26.282451],[47.415408,26.27467],[47.430268,26.261584],[47.442842,26.2439],[47.452558,26.225509],[47.458845,26.206411],[47.465132,26.17458],[47.487422,24.833805],[47.495995,24.788889],[47.503425,24.773327],[47.517142,24.753521],[47.534289,24.734423],[47.888645,24.502413],[48.141266,24.27005],[48.181274,24.222304],[48.223568,24.158643],[48.265291,24.070932],[48.289867,23.999844],[48.304727,23.87818],[48.299012,23.655012],[48.014384,21.500081],[47.745188,19.531536],[47.428553,17.093667],[47.428553,17.092959],[47.457702,17.131156],[47.525144,17.307639],[47.57201,17.432132],[47.588585,17.463255],[47.686319,17.579614],[47.835491,17.758219],[47.993237,17.947788],[48.084683,18.056012],[48.161842,18.149028],[48.184703,18.163882],[48.312729,18.226836],[48.484191,18.310303],[48.675658,18.404026],[48.84712,18.487847],[49.035729,18.579802],[49.128891,18.611986],[49.257488,18.629316],[49.418091,18.651244],[49.578123,18.672464],[49.738726,18.694038],[49.898758,18.715612],[50.058789,18.737186],[50.219393,18.759114],[50.378853,18.780334],[50.538885,18.801908],[50.699488,18.823482],[50.85952,18.845057],[51.020123,18.866631],[51.180155,18.888205],[51.340187,18.909425],[51.500218,18.931353],[51.66025,18.952573],[51.820282,18.974501],[51.978599,18.995721],[52.09005,19.032503],[52.260941,19.089798],[52.432403,19.14674],[52.603294,19.203681],[52.774757,19.260976],[52.945648,19.317918],[53.116539,19.374859],[53.288002,19.4318],[53.458893,19.488742],[53.629784,19.546037],[53.800675,19.602978],[53.972137,19.660273],[54.143028,19.717215],[54.314491,19.774156],[54.485382,19.831451],[54.656845,19.888393],[54.827736,19.945334],[54.978623,19.995556],[55.035777,20.167441],[55.102076,20.366912],[55.146085,20.499894],[55.195809,20.648436],[55.248391,20.807236],[55.302687,20.971694],[55.357555,21.135798],[55.41128,21.298488],[55.459861,21.44314],[55.50387,21.576121],[55.54102,21.688589],[55.60046,21.86578],[55.637611,21.978955],[55.637039,22.001944],[55.626751,22.023871],[55.573598,22.105924],[55.493011,22.23077],[55.411852,22.355617],[55.330693,22.480464],[55.250677,22.60531],[55.186664,22.703631],[55.120365,22.623701],[55.105505,22.620872],[54.968335,22.637848],[54.82945,22.654824],[54.690566,22.671801],[54.551681,22.689131],[54.412796,22.706107],[54.27334,22.723437],[54.134455,22.74006],[53.994999,22.75739],[53.856114,22.774366],[53.716658,22.791696],[53.577773,22.808672],[53.438889,22.826002],[53.300004,22.842979],[53.161119,22.860309],[53.021663,22.877285],[52.882778,22.893908],[52.743894,22.911238],[52.582719,22.931043],[52.558142,22.93847],[52.53871,22.954739],[52.432975,23.080293],[52.328383,23.204433],[52.224362,23.328572],[52.11977,23.452711],[52.015178,23.576497],[51.911157,23.700636],[51.806565,23.824422],[51.702544,23.948561],[51.593951,24.078359],[51.57852,24.101702],[51.572804,24.127873],[51.575662,24.217706],[51.569375,24.256257],[51.525938,24.268282],[51.496789,24.298344],[51.4785,24.310723],[51.412772,24.323455],[51.397912,24.321686],[51.368192,24.302942],[51.34533,24.29799],[51.282461,24.302942],[51.27846,24.307893],[51.27846,24.340431],[51.280175,24.34326],[51.299607,24.346444],[51.299607,24.364481],[51.301893,24.37403],[51.306466,24.405861],[51.311609,24.415056],[51.336186,24.447948],[51.395055,24.487913],[51.400198,24.494633],[51.409343,24.515853],[51.432205,24.538842],[51.436206,24.538842],[51.443636,24.554757],[51.461353,24.563599],[51.481929,24.569258],[51.498504,24.575977],[51.498504,24.583758],[51.483072,24.592246],[51.455066,24.594368],[51.443636,24.619479],[51.428204,24.623016],[51.409915,24.624077],[51.395055,24.631504],[51.395626,24.608515],[51.387625,24.597198],[51.375051,24.589417],[51.361334,24.575977],[51.333328,24.531768],[51.320183,24.522573],[51.302465,24.516914],[51.296749,24.521865],[51.299607,24.556172],[51.292177,24.567843],[51.290462,24.578453],[51.302465,24.586588],[51.306466,24.594368],[51.306466,24.610637],[51.295035,24.602857],[51.286462,24.608515],[51.277888,24.618772],[51.268744,24.624431],[51.217305,24.617711],[51.215019,24.625845],[51.147577,24.576331],[51.095567,24.560416],[51.038984,24.560062],[50.978972,24.567843],[50.928676,24.587295],[50.880667,24.636456],[50.808081,24.746802]]],[[[49.565549,27.351959],[49.542687,27.36363],[49.531256,27.365398],[49.500964,27.360447],[49.472387,27.342056],[49.453526,27.316238],[49.456384,27.290066],[49.463814,27.306688],[49.474674,27.32225],[49.487819,27.333921],[49.520397,27.344531],[49.531256,27.3463],[49.541544,27.342056],[49.554118,27.328262],[49.551832,27.322957],[49.538115,27.317652],[49.538115,27.31164],[49.551832,27.304213],[49.557547,27.305274],[49.565549,27.297847],[49.577551,27.308457],[49.59184,27.316945],[49.607271,27.322604],[49.623846,27.324372],[49.640421,27.320835],[49.654709,27.314469],[49.670141,27.311286],[49.689002,27.317652],[49.584981,27.344178],[49.565549,27.351959]]]]},"properties":{"ISO":"SA-04","label_ar":"المنطقة الشرقية","NAME_1":"Ash Sharqiyah"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[44.627998,27.222161],[44.586275,27.188208],[44.508545,27.09307],[44.495971,27.083167],[44.478254,27.073264],[44.457678,27.069374],[44.435388,27.070081],[44.368518,27.082813],[44.265068,27.087057],[44.239921,27.093777],[44.196483,27.117827],[44.06903,27.209782],[43.997587,27.278748],[43.960437,27.305981],[43.937575,27.318006],[43.914713,27.324726],[43.892423,27.327909],[43.869561,27.326494],[43.846128,27.321543],[43.796976,27.304566],[43.417472,27.131266],[43.343171,27.087765],[43.294019,27.045678],[43.259155,27.005359],[43.217432,26.926136],[43.202572,26.903147],[43.181425,26.880512],[43.147132,26.858938],[42.918516,26.771227],[42.798492,26.701907],[42.535011,26.51057],[42.417845,26.38926],[42.389268,26.345758],[42.372693,26.310037],[42.365834,26.288817],[42.352117,26.27078],[42.332114,26.260877],[42.284676,26.250974],[42.260099,26.249205],[42.236094,26.251328],[42.214376,26.251328],[42.194943,26.242132],[42.180655,26.226217],[42.158365,26.184837],[42.142362,26.142396],[42.137789,26.121883],[42.136075,26.10137],[42.137789,26.081918],[42.155507,25.999866],[42.157222,25.975816],[42.153792,25.957779],[42.14179,25.942571],[42.122358,25.937266],[42.099496,25.937973],[42.075491,25.942924],[41.996618,25.970865],[41.979472,25.975109],[41.958325,25.972633],[41.93432,25.96273],[41.909172,25.937973],[41.896027,25.915692],[41.890312,25.892703],[41.893169,25.870421],[41.900028,25.848847],[41.946894,25.770332],[41.95261,25.757953],[41.955467,25.742392],[41.949752,25.725769],[41.932034,25.71233],[41.909172,25.705963],[41.812582,25.697122],[41.781147,25.688987],[41.743425,25.67484],[41.583394,25.595617],[41.548529,25.587129],[41.489089,25.580763],[41.44851,25.568738],[41.409645,25.5362],[41.434221,25.528773],[41.566247,25.500126],[41.610256,25.485979],[41.629688,25.4736],[41.64512,25.454148],[41.653122,25.430098],[41.656551,25.406402],[41.63769,25.14716],[41.641119,25.124878],[41.650264,25.10189],[41.669696,25.074657],[41.691415,25.058034],[41.714848,25.046717],[41.844017,25.01524],[41.86002,25.007812],[41.873165,24.998971],[41.890883,24.97103],[41.907458,24.93248],[41.96004,24.743972],[41.979472,24.702946],[41.992046,24.685616],[42.008621,24.670762],[42.096067,24.611698],[42.114928,24.649541],[42.181798,24.741143],[42.195515,24.753521],[42.222377,24.772973],[42.245239,24.782523],[42.268672,24.786059],[42.290391,24.782523],[42.396698,24.732655],[42.440706,24.718154],[42.511578,24.701885],[42.692756,24.684201],[42.742481,24.685616],[42.884223,24.705068],[42.931661,24.702239],[43.009962,24.682079],[43.028823,24.681726],[43.050542,24.686677],[43.073975,24.697287],[43.09798,24.716032],[43.117984,24.741143],[43.133987,24.778279],[43.13513,24.804804],[43.128271,24.8285],[43.101981,24.869526],[43.091693,24.889686],[43.087692,24.910199],[43.092264,24.934248],[43.105981,24.961835],[43.203143,25.078901],[43.297448,25.165904],[43.322596,25.181112],[43.346029,25.191369],[43.679809,25.263872],[43.719817,25.280495],[43.744394,25.297117],[43.798119,25.343095],[43.869561,25.384828],[43.890137,25.40428],[43.910141,25.43222],[43.947291,25.499772],[43.974154,25.533017],[44.002731,25.557774],[44.019305,25.567323],[44.038738,25.576165],[44.061028,25.582531],[44.08389,25.586422],[44.130756,25.586776],[44.342798,25.560957],[44.581703,25.576519],[44.672578,25.569446],[44.693725,25.571568],[44.712586,25.578641],[44.723445,25.594203],[44.730304,25.612594],[44.735448,25.633107],[44.737162,25.661754],[44.736019,25.697122],[44.726874,25.756892],[44.716015,25.79226],[44.70287,25.821261],[44.674864,25.866531],[44.668006,25.890227],[44.672006,25.918521],[44.683437,25.96556],[44.676007,26.000927],[44.599992,26.092882],[44.511403,26.226924],[44.487398,26.254157],[44.408526,26.324538],[44.391951,26.344344],[44.38052,26.364857],[44.375948,26.385016],[44.375948,26.405883],[44.397095,26.536034],[44.395952,26.57989],[44.388522,26.625514],[44.391951,26.648149],[44.41024,26.670784],[44.43253,26.682809],[44.457107,26.689529],[44.495971,26.696602],[44.507402,26.702615],[44.524549,26.716054],[44.597134,26.8119],[44.634856,26.849743],[44.680008,26.886171],[44.704584,26.902086],[44.729161,26.913757],[44.777742,26.930026],[44.801175,26.940283],[44.821179,26.954076],[44.834324,26.971053],[44.845184,26.999346],[44.845755,27.01703],[44.843469,27.034714],[44.837754,27.05558],[44.828037,27.077154],[44.814892,27.098375],[44.798317,27.119242],[44.778313,27.137986],[44.737162,27.169463],[44.69201,27.196696],[44.627998,27.222161]]]},"properties":{"ISO":"SA-05","label_ar":"منطقة القصيم","NAME_1":"Al Quassim"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[41.409645,25.5362],[41.44851,25.568738],[41.489089,25.580763],[41.548529,25.587129],[41.583394,25.595617],[41.743425,25.67484],[41.781147,25.688987],[41.812582,25.697122],[41.909172,25.705963],[41.932034,25.71233],[41.949752,25.725769],[41.955467,25.742392],[41.95261,25.757953],[41.946894,25.770332],[41.900028,25.848847],[41.893169,25.870421],[41.890312,25.892703],[41.896027,25.915692],[41.909172,25.937973],[41.93432,25.96273],[41.958325,25.972633],[41.979472,25.975109],[41.996618,25.970865],[42.075491,25.942924],[42.099496,25.937973],[42.122358,25.937266],[42.14179,25.942571],[42.153792,25.957779],[42.157222,25.975816],[42.155507,25.999866],[42.137789,26.081918],[42.136075,26.10137],[42.137789,26.121883],[42.142362,26.142396],[42.158365,26.184837],[42.180655,26.226217],[42.194943,26.242132],[42.214376,26.251328],[42.236094,26.251328],[42.260099,26.249205],[42.284676,26.250974],[42.332114,26.260877],[42.352117,26.27078],[42.365834,26.288817],[42.372693,26.310037],[42.389268,26.345758],[42.417845,26.38926],[42.535011,26.51057],[42.798492,26.701907],[42.918516,26.771227],[43.147132,26.858938],[43.181425,26.880512],[43.202572,26.903147],[43.217432,26.926136],[43.259155,27.005359],[43.294019,27.045678],[43.343171,27.087765],[43.417472,27.131266],[43.796976,27.304566],[43.846128,27.321543],[43.869561,27.326494],[43.892423,27.327909],[43.914713,27.324726],[43.937575,27.318006],[43.960437,27.305981],[43.997587,27.278748],[44.06903,27.209782],[44.196483,27.117827],[44.239921,27.093777],[44.265068,27.087057],[44.368518,27.082813],[44.435388,27.070081],[44.457678,27.069374],[44.478254,27.073264],[44.495971,27.083167],[44.508545,27.09307],[44.586275,27.188208],[44.627998,27.222161],[44.621139,27.2356],[44.611423,27.27026],[44.609708,27.29148],[44.610851,27.312347],[44.613709,27.332153],[44.624568,27.363276],[44.640572,27.394753],[44.667434,27.434718],[44.693725,27.464073],[44.72516,27.490952],[44.740591,27.501209],[44.798889,27.520661],[44.785172,27.549662],[44.759452,27.576541],[44.593705,27.709522],[44.570843,27.723315],[44.52512,27.745597],[44.490828,27.757622],[44.182195,27.799002],[44.154761,27.80749],[44.120468,27.822344],[44.093606,27.840381],[44.069601,27.860541],[44.035309,27.903335],[43.951292,28.101038],[43.782115,28.370891],[43.764969,28.390697],[43.742108,28.406612],[43.715245,28.4151],[43.680953,28.412978],[43.652947,28.402368],[43.536352,28.335877],[43.495773,28.318547],[43.474054,28.315718],[43.447763,28.31784],[43.408899,28.329511],[43.302592,28.379026],[43.275729,28.386099],[43.240865,28.388928],[43.141417,28.380087],[43.115126,28.382562],[43.08712,28.389636],[43.052828,28.408734],[43.029966,28.432077],[43.013963,28.461785],[43.004818,28.497152],[43.000246,28.571424],[42.99796,28.579558],[42.989387,28.589108],[42.96824,28.598657],[42.933376,28.598657],[42.904227,28.593352],[42.876221,28.582388],[42.795634,28.542776],[42.767057,28.532873],[42.737908,28.526507],[42.704187,28.525093],[42.66818,28.530044],[42.618456,28.545959],[42.584735,28.564704],[42.555015,28.586632],[42.433848,28.715015],[42.411558,28.731638],[42.388696,28.744016],[42.342401,28.760639],[42.001191,28.830666],[41.976043,28.832081],[41.866878,28.826422],[41.746283,28.798836],[41.721135,28.795653],[41.693701,28.796006],[41.658837,28.800958],[41.416503,28.870278],[41.383354,28.874875],[41.342774,28.875936],[41.27076,28.867802],[40.739798,28.759932],[40.716364,28.760285],[40.658067,28.773725],[40.543187,28.816166],[40.480889,28.829252],[40.458599,28.82713],[40.080238,28.690612],[39.709879,28.503872],[39.534416,28.461431],[39.156626,28.302632],[39.13205,28.289546],[39.109188,28.273985],[39.000024,28.167883],[39.017742,28.146662],[39.034316,28.13782],[39.058321,28.129686],[39.380099,28.061781],[39.434396,28.043036],[39.471546,28.024291],[39.497837,27.99812],[39.520127,27.978314],[39.550419,27.959569],[39.611002,27.933044],[39.728168,27.847455],[39.787609,27.795465],[39.800754,27.774244],[39.811613,27.753024],[39.920206,27.361154],[39.930494,27.341702],[39.945926,27.322604],[39.961929,27.309518],[39.999651,27.285468],[40.121389,27.228173],[40.143679,27.210843],[40.165398,27.187501],[40.16997,27.166634],[40.166541,27.145413],[40.157396,27.125608],[40.141965,27.105095],[40.123104,27.08635],[39.999651,26.990151],[39.95507,26.936393],[39.924779,26.881573],[39.867053,26.719945],[39.848192,26.688114],[39.831046,26.66654],[39.816186,26.656991],[39.834475,26.613843],[39.838476,26.594744],[39.841334,26.569987],[39.840191,26.547352],[39.831617,26.511277],[39.827617,26.499252],[39.791038,26.439482],[39.779036,26.408712],[39.780179,26.384662],[39.790466,26.363442],[39.809327,26.34788],[39.831046,26.340099],[39.853336,26.338331],[39.901917,26.347527],[39.92535,26.346466],[39.947069,26.330197],[39.956214,26.310037],[39.960214,26.288463],[39.904203,25.952827],[39.903632,25.922411],[39.907061,25.898362],[39.938496,25.788016],[39.956214,25.687926],[39.94764,25.421964],[39.952784,25.394731],[39.964215,25.370681],[39.977361,25.352644],[39.993364,25.337436],[40.005366,25.329301],[40.023084,25.321167],[40.044803,25.314801],[40.067664,25.311971],[40.090526,25.312679],[40.113959,25.316216],[40.362008,25.395792],[40.411732,25.403573],[40.531185,25.401097],[40.57405,25.404634],[40.595197,25.408171],[40.61463,25.413476],[40.646065,25.427623],[40.666069,25.440708],[40.686073,25.458392],[40.75923,25.541152],[40.782092,25.559189],[40.808954,25.574397],[40.843247,25.585714],[40.871252,25.591373],[41.044429,25.598093],[41.323342,25.558482],[41.409645,25.5362]]]},"properties":{"ISO":"SA-06","label_ar":"منطقة حائل","NAME_1":"Ha'il"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[37.38256,24.539549],[37.384846,24.545915],[37.39742,24.604271],[37.404279,24.62337],[37.414566,24.641053],[37.431141,24.656969],[37.451717,24.666518],[37.471721,24.671116],[37.553451,24.670762],[37.591744,24.675713],[37.614606,24.681372],[37.638039,24.689507],[37.662044,24.704361],[37.68662,24.725581],[37.713483,24.756704],[37.73463,24.777218],[37.75692,24.789242],[37.778639,24.792425],[37.800929,24.791718],[37.846081,24.784291],[37.89409,24.782523],[37.919238,24.786767],[37.943814,24.797023],[37.966676,24.814],[37.98668,24.839464],[37.996396,24.858562],[38.000397,24.872709],[37.987823,25.201979],[38.023259,25.429037],[38.020972,25.449197],[38.013542,25.46688],[38.000968,25.478552],[37.987251,25.485625],[37.966104,25.489515],[37.902663,25.492345],[37.887232,25.496589],[37.878087,25.501894],[37.868942,25.5217],[37.833507,25.643363],[37.803215,25.719049],[37.787212,25.746989],[37.772923,25.765734],[37.754634,25.785894],[37.624894,25.884215],[37.607748,25.903313],[37.595745,25.923119],[37.586601,25.944693],[37.571169,25.999158],[37.562024,26.009061],[37.546021,26.019672],[37.3677,26.112334],[37.34541,26.115517],[37.324263,26.10809],[37.288256,26.081564],[37.272252,26.077674],[37.264822,26.089699],[37.257964,26.107029],[37.248248,26.147701],[37.233959,26.188374],[37.175662,26.294122],[37.168803,26.314989],[37.167089,26.335502],[37.168803,26.356015],[37.172804,26.376528],[37.191665,26.4172],[37.25282,26.507741],[37.26025,26.523656],[37.265394,26.544876],[37.264251,26.568572],[37.253963,26.592622],[37.236245,26.609952],[37.214527,26.62127],[37.099647,26.651686],[37.076214,26.660881],[37.053923,26.673967],[37.032205,26.692358],[37.01563,26.712517],[37.001913,26.73303],[36.992768,26.753897],[36.985338,26.776179],[36.981338,26.799875],[36.979051,26.841608],[37.00077,26.977419],[37.002485,27.033299],[37.000198,27.05841],[36.985338,27.119949],[36.976765,27.137986],[36.968764,27.149304],[36.953332,27.164158],[36.935614,27.174415],[36.917325,27.180781],[36.887033,27.181842],[36.821877,27.170878],[36.800159,27.172293],[36.783584,27.182549],[36.779012,27.198464],[36.785299,27.216148],[36.803016,27.23171],[36.824164,27.240905],[36.939043,27.26637],[37.195666,27.374594],[37.218527,27.38096],[37.24539,27.381667],[37.276825,27.376008],[37.320833,27.359032],[37.405422,27.311286],[37.435713,27.300322],[37.476864,27.293602],[37.499155,27.292895],[37.522588,27.296078],[37.544878,27.303152],[37.731772,27.393338],[37.74949,27.394399],[37.768351,27.389448],[37.794642,27.372118],[37.80893,27.354788],[37.817503,27.338519],[37.845509,27.246918],[37.864941,27.205184],[37.884945,27.171585],[37.940957,27.095545],[37.963247,27.077508],[37.991824,27.064422],[38.035261,27.057349],[38.135852,27.053105],[38.158142,27.050275],[38.178718,27.043909],[38.195864,27.032592],[38.205009,27.018091],[38.207295,26.973175],[38.214725,26.955845],[38.2313,26.939929],[38.292455,26.904916],[38.309601,26.888647],[38.31646,26.869548],[38.31646,26.849389],[38.313602,26.828522],[38.313602,26.80907],[38.322747,26.794216],[38.343894,26.788557],[38.374757,26.795984],[38.400476,26.810839],[38.49078,26.8745],[38.504497,26.880866],[38.525644,26.884403],[38.55022,26.882988],[38.58337,26.874146],[38.657099,26.842315],[38.681675,26.835596],[38.704537,26.833474],[38.730256,26.84373],[38.734257,26.859645],[38.732542,26.879097],[38.727398,26.89855],[38.728541,26.916233],[38.741115,26.927551],[38.759405,26.926136],[38.782266,26.908099],[38.793697,26.888293],[38.810843,26.847974],[38.833705,26.82923],[38.868569,26.812961],[38.995451,26.771934],[39.115475,26.688821],[39.153769,26.67715],[39.204064,26.671491],[39.304084,26.671845],[39.719595,26.729494],[39.742457,26.727018],[39.765319,26.714639],[39.781893,26.7012],[39.816186,26.656991],[39.831046,26.66654],[39.848192,26.688114],[39.867053,26.719945],[39.924779,26.881573],[39.95507,26.936393],[39.999651,26.990151],[40.123104,27.08635],[40.141965,27.105095],[40.157396,27.125608],[40.166541,27.145413],[40.16997,27.166634],[40.165398,27.187501],[40.143679,27.210843],[40.121389,27.228173],[39.999651,27.285468],[39.961929,27.309518],[39.945926,27.322604],[39.930494,27.341702],[39.920206,27.361154],[39.811613,27.753024],[39.800754,27.774244],[39.787609,27.795465],[39.728168,27.847455],[39.611002,27.933044],[39.550419,27.959569],[39.520127,27.978314],[39.497837,27.99812],[39.471546,28.024291],[39.434396,28.043036],[39.380099,28.061781],[39.058321,28.129686],[39.034316,28.13782],[39.017742,28.146662],[39.000024,28.167883],[38.961159,28.195823],[38.928581,28.206787],[38.904005,28.207848],[38.869141,28.20325],[38.840564,28.195823],[38.735971,28.148784],[38.710252,28.140296],[38.685676,28.136759],[38.662243,28.139589],[38.639952,28.152675],[38.624521,28.168236],[38.596515,28.227653],[38.552506,28.226946],[38.533646,28.228714],[38.512499,28.236142],[38.479349,28.253118],[38.455916,28.258069],[38.423338,28.250996],[38.397047,28.238617],[38.363898,28.229422],[38.32789,28.228007],[38.127851,28.246044],[38.066124,28.257362],[37.956388,28.290961],[37.910093,28.31395],[37.844366,28.36311],[37.826077,28.382562],[37.810645,28.403429],[37.798643,28.423942],[37.783782,28.457895],[37.772352,28.500689],[37.765493,28.558338],[37.762064,28.646049],[37.772352,28.80697],[37.767779,28.829959],[37.756348,28.849411],[37.738059,28.863204],[37.716341,28.867448],[37.694622,28.859668],[37.632895,28.808385],[37.565453,28.770542],[37.544878,28.754273],[37.530018,28.734467],[37.518015,28.713954],[37.478008,28.622353],[37.466005,28.602193],[37.450002,28.58451],[37.425997,28.574253],[37.397992,28.568594],[37.225958,28.577436],[37.142512,28.592644],[36.991054,28.637561],[36.933328,28.644988],[36.854455,28.644634],[36.614408,28.598657],[36.504672,28.561875],[36.488668,28.560814],[36.464664,28.562228],[36.422941,28.574253],[36.410367,28.583095],[36.152602,28.87912],[36.120024,28.904938],[36.075444,28.931817],[36.051439,28.94172],[35.8554,28.984514],[35.789673,28.984161],[35.711943,28.971075],[35.578774,28.964001],[35.37359,28.929341],[35.331296,28.91767],[35.296432,28.902108],[35.261568,28.873461],[35.244993,28.864973],[35.219845,28.861082],[35.077531,28.873107],[34.996944,28.890791],[34.961508,28.891852],[34.927216,28.886193],[34.842628,28.884425],[34.843771,28.87629],[34.832911,28.845874],[34.838627,28.828544],[34.835769,28.816166],[34.818623,28.790701],[34.825481,28.790701],[34.825481,28.784335],[34.81005,28.758163],[34.796904,28.725625],[34.778615,28.66444],[34.793475,28.619523],[34.795761,28.572131],[34.803763,28.526861],[34.775186,28.483359],[34.767756,28.466383],[34.760325,28.436674],[34.740893,28.410503],[34.730605,28.363464],[34.715174,28.327743],[34.694598,28.294498],[34.674594,28.277168],[34.68031,28.271509],[34.688883,28.277168],[34.688883,28.263728],[34.674594,28.270448],[34.664878,28.22447],[34.668307,28.208909],[34.656876,28.206433],[34.649446,28.200774],[34.647732,28.194055],[34.660877,28.180969],[34.657448,28.170358],[34.651732,28.167883],[34.633443,28.174956],[34.640302,28.180969],[34.627156,28.176725],[34.620298,28.167529],[34.626585,28.160456],[34.606581,28.147723],[34.605438,28.142418],[34.587148,28.131808],[34.57286,28.11271],[34.578575,28.10599],[34.574574,28.093965],[34.599151,28.103161],[34.606581,28.096087],[34.606581,28.072037],[34.612868,28.044451],[34.620298,28.037731],[34.612868,28.030304],[34.635158,28.033487],[34.641445,28.041621],[34.642016,28.054707],[34.64716,28.07133],[34.655733,28.064964],[34.668307,28.07133],[34.668307,28.078403],[34.64716,28.092904],[34.64716,28.09927],[34.674594,28.11271],[34.678595,28.130747],[34.682024,28.134991],[34.694598,28.126503],[34.709458,28.139943],[34.715174,28.127564],[34.727176,28.112002],[34.736321,28.10599],[34.747752,28.112002],[34.756896,28.09927],[34.764898,28.09927],[34.771185,28.10599],[34.771185,28.092904],[34.777472,28.096441],[34.78433,28.092904],[34.786616,28.104929],[34.794046,28.110941],[34.804906,28.113417],[34.818623,28.11271],[34.818623,28.09927],[34.802048,28.090428],[34.79176,28.078403],[34.804906,28.07133],[34.81405,28.089014],[34.82148,28.095733],[34.832911,28.09927],[34.832911,28.10599],[34.825481,28.10599],[34.825481,28.11271],[34.8472,28.117661],[34.866061,28.11271],[34.847771,28.105636],[34.842628,28.099977],[34.846628,28.085477],[34.839198,28.085477],[34.839198,28.078403],[34.846628,28.07133],[34.860345,28.085477],[34.880921,28.085831],[34.900925,28.08194],[34.920929,28.085477],[34.920929,28.078403],[34.927216,28.078403],[34.931217,28.086184],[34.945505,28.09538],[34.975797,28.103514],[34.997515,28.114124],[35.009518,28.110588],[35.030665,28.09927],[35.019806,28.113417],[35.042096,28.113063],[35.051812,28.119783],[35.098107,28.089721],[35.110109,28.078757],[35.136972,28.078403],[35.151832,28.070976],[35.161548,28.05789],[35.167835,28.05789],[35.167835,28.064964],[35.210129,28.056829],[35.216416,28.054354],[35.226704,28.033133],[35.216416,28.037731],[35.19927,28.028535],[35.176408,28.01934],[35.163263,28.009437],[35.174693,27.995998],[35.181552,27.995998],[35.181552,28.003071],[35.230133,27.968765],[35.245565,27.962399],[35.255281,27.952849],[35.270712,27.927739],[35.322723,27.876102],[35.332439,27.862309],[35.337011,27.833662],[35.346728,27.81527],[35.3513,27.801477],[35.364445,27.789806],[35.385021,27.782379],[35.394166,27.777074],[35.415313,27.751256],[35.44046,27.690424],[35.45875,27.663191],[35.491899,27.632421],[35.500472,27.619336],[35.506188,27.600591],[35.506759,27.564516],[35.510189,27.544357],[35.521619,27.518539],[35.559341,27.455585],[35.589633,27.429059],[35.617067,27.389802],[35.6405,27.363276],[35.652502,27.353727],[35.69994,27.324726],[35.783957,27.2356],[35.807962,27.203062],[35.812534,27.191037],[35.81082,27.182549],[35.800532,27.168402],[35.798246,27.159914],[35.80339,27.141877],[35.831395,27.092716],[35.911983,26.9997],[35.976567,26.94771],[36,26.913404],[36.014289,26.90244],[36.032006,26.907038],[36.05201,26.844791],[36.081731,26.797045],[36.097734,26.753897],[36.124025,26.726664],[36.182322,26.680333],[36.22976,26.625514],[36.309204,26.498191],[36.382933,26.334441],[36.42637,26.281743],[36.449232,26.24673],[36.512673,26.111273],[36.536678,26.082272],[36.572685,26.0706],[36.605263,26.068125],[36.640699,26.060344],[36.672705,26.045136],[36.696138,26.022501],[36.705854,25.999512],[36.709284,25.970865],[36.705854,25.943632],[36.692709,25.923119],[36.671562,25.901545],[36.661846,25.879263],[36.66356,25.855567],[36.675563,25.83081],[36.68185,25.825859],[36.693852,25.822676],[36.696138,25.817017],[36.694995,25.795796],[36.702425,25.779881],[36.724715,25.753709],[36.74872,25.74416],[36.779583,25.724354],[36.792157,25.720464],[36.80416,25.72683],[36.793872,25.748404],[36.795586,25.759368],[36.817305,25.757953],[36.842453,25.72966],[36.881889,25.672718],[36.893892,25.665645],[36.923612,25.654681],[36.936186,25.646193],[36.944187,25.635229],[36.958476,25.606228],[36.969907,25.588544],[36.969335,25.576165],[36.975622,25.565201],[36.989339,25.556713],[36.994483,25.549994],[37.010486,25.507199],[37.017916,25.49482],[37.063068,25.453794],[37.077357,25.430806],[37.059639,25.419842],[37.064211,25.409939],[37.079643,25.394731],[37.088787,25.377047],[37.09336,25.344509],[37.105362,25.322228],[37.122508,25.299593],[37.141941,25.279787],[37.162516,25.26564],[37.17109,25.257859],[37.179663,25.239115],[37.211669,25.214358],[37.23053,25.193491],[37.241961,25.1751],[37.250534,25.155294],[37.256249,25.134074],[37.257392,25.111439],[37.251105,25.052729],[37.257392,25.028679],[37.276825,24.986592],[37.280254,24.963957],[37.257964,24.92187],[37.256821,24.871295],[37.244247,24.854672],[37.218527,24.846537],[37.196237,24.847245],[37.173947,24.850428],[37.148799,24.850782],[37.165374,24.815768],[37.179091,24.799499],[37.196237,24.789596],[37.206525,24.791011],[37.219671,24.802682],[37.227101,24.799499],[37.23053,24.792425],[37.23053,24.772973],[37.227101,24.765193],[37.228244,24.737606],[37.257392,24.702239],[37.31969,24.624077],[37.38256,24.539549]]],[[[37.026489,25.419842],[37.021917,25.452733],[37.017345,25.457685],[37.01563,25.450611],[37.008772,25.44955],[36.999627,25.469356],[36.987053,25.476076],[36.961905,25.477844],[36.952189,25.467588],[36.944187,25.448843],[36.947045,25.441769],[36.957333,25.449197],[36.966477,25.449197],[36.97105,25.43505],[36.977908,25.426915],[36.990482,25.430098],[37.000198,25.429391],[36.998484,25.422317],[37.003628,25.411354],[37.023632,25.400036],[37.031633,25.398621],[37.028204,25.409232],[37.042493,25.407463],[37.026489,25.419842]]],[[[36.941901,25.418427],[36.928756,25.409232],[36.916182,25.396853],[36.904179,25.394024],[36.896178,25.405695],[36.899607,25.418781],[36.920183,25.419842],[36.91561,25.426562],[36.906466,25.431513],[36.876745,25.436818],[36.841881,25.450611],[36.815019,25.465819],[36.79673,25.486686],[36.787013,25.494113],[36.776154,25.496589],[36.776154,25.489162],[36.797301,25.464405],[36.795015,25.456977],[36.799016,25.447428],[36.84131,25.405695],[36.859599,25.392963],[36.87846,25.373511],[36.900179,25.361132],[36.915039,25.371035],[36.924755,25.389072],[36.943044,25.405695],[36.961905,25.414537],[36.958476,25.419134],[36.941901,25.418427]]],[[[36.849311,25.533017],[36.865886,25.546103],[36.866458,25.557421],[36.855598,25.568385],[36.84131,25.570153],[36.829307,25.561311],[36.827021,25.547164],[36.839595,25.535847],[36.849311,25.533017]]],[[[36.790443,25.49765],[36.80073,25.488454],[36.809875,25.485625],[36.816162,25.488101],[36.825307,25.483857],[36.835023,25.46688],[36.845311,25.464405],[36.879032,25.443538],[36.883604,25.454148],[36.874459,25.463344],[36.839024,25.489869],[36.816733,25.502601],[36.80073,25.507553],[36.78587,25.516041],[36.775582,25.535493],[36.725858,25.565201],[36.706426,25.571214],[36.690994,25.567323],[36.68185,25.55353],[36.681278,25.544335],[36.688708,25.546103],[36.701282,25.554945],[36.719571,25.555652],[36.734431,25.546457],[36.743005,25.535847],[36.742433,25.529127],[36.765295,25.524175],[36.765866,25.514273],[36.77101,25.507199],[36.790443,25.49765]]],[[[36.90075,25.549286],[36.905322,25.53903],[36.912181,25.535139],[36.923612,25.519578],[36.927613,25.528419],[36.920754,25.555299],[36.913896,25.569092],[36.915039,25.580409],[36.925898,25.576519],[36.927613,25.593142],[36.92304,25.603044],[36.914467,25.606581],[36.904751,25.603398],[36.898464,25.595264],[36.90075,25.549286]]],[[[36.682993,25.572275],[36.667561,25.580763],[36.659559,25.582178],[36.65613,25.571921],[36.646986,25.57086],[36.637841,25.574751],[36.630982,25.592434],[36.609264,25.591373],[36.59669,25.600215],[36.570399,25.624265],[36.553824,25.631338],[36.549252,25.637704],[36.537821,25.639827],[36.524104,25.652912],[36.522389,25.662108],[36.539536,25.685097],[36.545251,25.696414],[36.543536,25.70278],[36.534963,25.698183],[36.524676,25.685804],[36.499528,25.662462],[36.491526,25.645132],[36.497813,25.623911],[36.529248,25.593849],[36.539536,25.589251],[36.545823,25.603398],[36.567541,25.598447],[36.647557,25.561311],[36.667561,25.549994],[36.675563,25.554945],[36.682993,25.572275]]],[[[36.544108,25.731428],[36.551538,25.719757],[36.582973,25.69889],[36.595547,25.696414],[36.605263,25.701012],[36.610978,25.7095],[36.596118,25.709146],[36.588688,25.714452],[36.585259,25.725415],[36.588688,25.738501],[36.597261,25.751587],[36.597833,25.758307],[36.582973,25.762551],[36.564112,25.77882],[36.555539,25.796504],[36.558397,25.815956],[36.566398,25.832932],[36.577257,25.848494],[36.590403,25.860519],[36.583544,25.858043],[36.558397,25.836115],[36.542965,25.801809],[36.540107,25.760429],[36.544108,25.731428]]]]},"properties":{"ISO":"SA-07","label_ar":"منطقة تبوك","NAME_1":"Tabuk"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[42.783632,30.550933],[42.574447,30.70761],[42.479571,30.778698],[42.310966,30.904606],[42.14179,31.030514],[42.075491,31.080028],[41.986331,31.125298],[41.810296,31.214778],[41.723421,31.25934],[41.547386,31.34882],[41.372495,31.438299],[41.19646,31.527425],[41.021568,31.616904],[40.93355,31.661467],[40.758087,31.750946],[40.670069,31.795863],[40.480318,31.893123],[40.424306,31.920709],[40.370581,31.938393],[40.029371,31.994627],[39.948783,32.005945],[39.750458,32.034946],[39.553276,32.063593],[39.355523,32.092594],[39.157769,32.121242],[39.146339,32.118059],[39.136622,32.11523],[39.116618,32.102851],[38.997738,32.007006],[38.963445,31.994627],[38.849708,31.966333],[38.624521,31.910806],[38.399905,31.85528],[38.175289,31.800107],[37.98668,31.753068],[37.866085,31.371808],[37.861512,31.338209],[37.867228,31.276317],[37.876372,31.2314],[37.883802,31.214424],[37.899806,31.197448],[37.986108,31.144043],[38.0164,31.117871],[38.04955,31.077906],[38.077555,31.034758],[38.096416,31.000098],[38.129565,30.948815],[38.147283,30.930071],[38.16843,30.914155],[38.190149,30.902838],[38.213011,30.89435],[38.258162,30.885861],[38.306172,30.883032],[38.750832,30.921582],[39.059464,30.96084],[39.19149,30.958011],[39.867625,30.868531],[39.900774,30.860397],[39.924779,30.849433],[39.948212,30.834579],[40.021941,30.777284],[40.047089,30.765259],[40.081381,30.753234],[40.175686,30.736258],[40.72208,30.724586],[40.782092,30.732014],[40.879825,30.733075],[40.91869,30.723879],[40.951268,30.710793],[41.150165,30.572153],[41.177027,30.560128],[41.210748,30.550579],[41.265045,30.54492],[41.346204,30.544213],[41.464513,30.530066],[41.494233,30.521224],[41.531383,30.500711],[41.551959,30.48232],[41.577107,30.454734],[41.589109,30.438465],[41.635404,30.347571],[41.662838,30.303362],[41.681127,30.281434],[41.729708,30.240761],[41.878881,30.139611],[41.897742,30.121927],[41.9046,30.102475],[41.900028,30.08267],[41.882882,30.061803],[41.838301,30.021838],[41.754285,29.964189],[40.919833,29.511134],[40.81124,29.438277],[40.787236,29.41741],[40.767803,29.396543],[40.752943,29.37603],[40.745513,29.354456],[40.742084,29.33359],[40.716364,29.000076],[40.710649,28.979209],[40.701504,28.960464],[40.684358,28.939244],[40.543187,28.816166],[40.658067,28.773725],[40.716364,28.760285],[40.739798,28.759932],[41.27076,28.867802],[41.342774,28.875936],[41.383354,28.874875],[41.416503,28.870278],[41.658837,28.800958],[41.693701,28.796006],[41.721135,28.795653],[41.746283,28.798836],[41.866878,28.826422],[41.976043,28.832081],[42.001191,28.830666],[42.342401,28.760639],[42.388696,28.744016],[42.411558,28.731638],[42.433848,28.715015],[42.555015,28.586632],[42.584735,28.564704],[42.618456,28.545959],[42.66818,28.530044],[42.704187,28.525093],[42.737908,28.526507],[42.767057,28.532873],[42.795634,28.542776],[42.876221,28.582388],[42.904227,28.593352],[42.933376,28.598657],[42.96824,28.598657],[42.989387,28.589108],[42.99796,28.579558],[43.000246,28.571424],[43.004818,28.497152],[43.013963,28.461785],[43.029966,28.432077],[43.052828,28.408734],[43.08712,28.389636],[43.115126,28.382562],[43.141417,28.380087],[43.240865,28.388928],[43.275729,28.386099],[43.302592,28.379026],[43.408899,28.329511],[43.447763,28.31784],[43.474054,28.315718],[43.495773,28.318547],[43.536352,28.335877],[43.652947,28.402368],[43.680953,28.412978],[43.715245,28.4151],[43.742108,28.406612],[43.764969,28.390697],[43.782115,28.370891],[43.951292,28.101038],[44.035309,27.903335],[44.069601,27.860541],[44.093606,27.840381],[44.120468,27.822344],[44.154761,27.80749],[44.182195,27.799002],[44.490828,27.757622],[44.52512,27.745597],[44.570843,27.723315],[44.593705,27.709522],[44.759452,27.576541],[44.785172,27.549662],[44.798889,27.520661],[44.817178,27.505806],[44.839468,27.481403],[44.857757,27.469024],[44.878905,27.460536],[44.901195,27.458414],[44.927486,27.468317],[44.948633,27.479988],[44.990355,27.532686],[44.97721,27.545772],[44.950919,27.579724],[44.942346,27.59953],[44.938916,27.619336],[44.938916,27.637727],[44.941203,27.653996],[44.948633,27.68335],[44.974352,27.739584],[44.994928,27.77283],[45.164104,27.953203],[45.212685,28.016511],[45.564755,28.602547],[45.624767,28.681416],[45.701925,28.758163],[45.800802,28.838093],[45.94083,28.906352],[46.414638,29.062676],[46.427212,29.076116],[46.357484,29.06303],[46.175733,29.077177],[46.023703,29.089555],[45.84481,29.103702],[45.742504,29.111837],[45.537321,29.128106],[45.435015,29.13624],[45.229831,29.152509],[45.047509,29.16701],[44.888621,29.179388],[44.71773,29.192828],[44.691439,29.202023],[44.614852,29.255782],[44.424529,29.390531],[44.329081,29.458083],[44.233634,29.524927],[44.119325,29.605918],[44.005017,29.686556],[43.823838,29.813878],[43.660949,29.928822],[43.54664,30.009813],[43.43176,30.090804],[43.229434,30.233334],[43.052828,30.357827],[42.859075,30.494345],[42.783632,30.550933]]]},"properties":{"ISO":"SA-08","label_ar":"منطقة الحدود الشمالية","NAME_1":"Al Hudud ash Shamaliyah"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[43.185426,16.68482],[43.17971,16.708163],[43.170566,16.723371],[43.168279,16.737164],[43.18314,16.758031],[43.208287,16.773592],[43.21286,16.783849],[43.211717,16.796935],[43.204858,16.807899],[43.19457,16.815326],[43.15742,16.825582],[43.145418,16.834424],[43.133987,16.870853],[43.11284,16.909757],[43.108839,16.927087],[43.115126,16.951844],[43.131701,16.990394],[43.136273,17.009846],[43.136273,17.03142],[43.129986,17.053702],[43.121985,17.069971],[43.118555,17.08624],[43.124271,17.107106],[43.144846,17.146364],[43.151133,17.166877],[43.14999,17.189866],[43.156277,17.209672],[43.176853,17.225587],[43.203143,17.236551],[43.226005,17.241502],[43.248295,17.252112],[43.252296,17.271918],[43.242008,17.293492],[43.222576,17.307993],[43.16485,17.325676],[43.168279,17.330274],[43.215717,17.387216],[43.303163,17.459011],[43.342028,17.482354],[43.259155,17.602603],[43.242008,17.623116],[43.222004,17.639738],[43.144846,17.66591],[43.125985,17.680057],[43.111125,17.698802],[43.079119,17.762463],[43.065402,17.78333],[43.039682,17.807379],[42.962524,17.86715],[42.946521,17.892968],[42.940234,17.917372],[42.943092,17.958751],[42.937948,17.977496],[42.925374,17.992704],[42.886509,18.000131],[42.877936,17.998363],[42.831641,17.972898],[42.789919,17.94319],[42.772201,17.925506],[42.758484,17.906761],[42.736194,17.866796],[42.69047,17.701631],[42.682469,17.682533],[42.66818,17.667678],[42.649319,17.660605],[42.629315,17.660959],[42.606454,17.669093],[42.581877,17.685008],[42.488716,17.77661],[42.47157,17.801367],[42.460139,17.824356],[42.452137,17.845222],[42.438992,17.866443],[42.420131,17.885541],[42.392125,17.899688],[42.368121,17.904993],[42.210375,17.907115],[42.188085,17.913128],[42.166366,17.923384],[42.145219,17.948141],[42.135503,17.968654],[42.122929,18.005436],[42.115499,18.015693],[42.100639,18.031254],[42.074348,18.046109],[42.050915,18.052121],[42.029196,18.053536],[41.962326,18.045048],[41.942893,18.049999],[41.926319,18.0645],[41.917746,18.092086],[41.916031,18.115075],[41.917746,18.13771],[41.938321,18.257959],[41.937178,18.278118],[41.933177,18.296156],[41.922889,18.312071],[41.883453,18.322328],[41.770288,18.314193],[41.75257,18.274935],[41.739996,18.259727],[41.722278,18.24169],[41.660552,18.209152],[41.641691,18.196774],[41.625688,18.180151],[41.6154,18.163175],[41.597111,18.121441],[41.602254,18.114721],[41.59311,18.095977],[41.608541,18.07511],[41.651407,18.039035],[41.653693,18.015339],[41.673697,18.009327],[41.675412,18.001192],[41.670839,17.977496],[41.677126,17.96052],[41.719421,17.909237],[41.738853,17.890493],[41.761143,17.876346],[41.778289,17.860077],[41.787434,17.833551],[41.810296,17.836734],[41.847446,17.811977],[41.869736,17.820465],[41.928605,17.767061],[41.938893,17.761755],[41.969756,17.720022],[41.979472,17.710827],[41.992618,17.712595],[42.000619,17.717546],[42.043485,17.674398],[42.053201,17.653178],[42.063489,17.651056],[42.08635,17.6553],[42.093781,17.652117],[42.103497,17.627713],[42.123501,17.600834],[42.13436,17.579967],[42.141218,17.571126],[42.143505,17.576431],[42.152649,17.573955],[42.260671,17.484829],[42.268672,17.46467],[42.273816,17.459719],[42.291534,17.457596],[42.30125,17.453706],[42.307537,17.444511],[42.314967,17.421875],[42.316682,17.401009],[42.310966,17.351141],[42.321254,17.309407],[42.338972,17.173597],[42.352689,17.134693],[42.35669,17.11418],[42.357261,17.045567],[42.362977,17.025054],[42.373836,17.043445],[42.363548,17.108521],[42.383552,17.121253],[42.366406,17.149547],[42.359548,17.165109],[42.35669,17.182439],[42.401842,17.163694],[42.410986,17.15556],[42.415559,17.141766],[42.420703,17.10746],[42.424703,17.092959],[42.437849,17.065019],[42.447565,17.049104],[42.460139,17.038494],[42.494431,17.038494],[42.512721,17.037079],[42.520722,17.028237],[42.524723,17.015151],[42.544156,17.004541],[42.548728,16.987211],[42.548156,16.938051],[42.555586,16.922135],[42.541869,16.877926],[42.576162,16.832302],[42.587021,16.837961],[42.596737,16.836546],[42.635602,16.815326],[42.659036,16.789861],[42.678468,16.764397],[42.706474,16.740347],[42.712189,16.730444],[42.701901,16.723371],[42.703616,16.709224],[42.713904,16.693662],[42.725906,16.682698],[42.719047,16.675271],[42.737337,16.671381],[42.737908,16.65299],[42.725906,16.610195],[42.725334,16.56634],[42.728764,16.546888],[42.740194,16.524607],[42.788204,16.471909],[42.795063,16.452811],[42.781346,16.420273],[42.788204,16.410016],[42.787632,16.373588],[42.789347,16.371112],[42.837357,16.387381],[42.872792,16.401882],[42.89794,16.418858],[42.906513,16.435127],[42.903084,16.46625],[42.906513,16.479336],[42.917372,16.483934],[42.956237,16.490654],[42.971097,16.495605],[43.014535,16.520716],[43.036253,16.536278],[43.048827,16.553254],[43.074547,16.619037],[43.078547,16.637782],[43.080262,16.658649],[43.084834,16.672442],[43.09798,16.677747],[43.122556,16.673149],[43.162564,16.661478],[43.180282,16.664661],[43.185426,16.68482]]],[[[42.18637,16.705687],[42.147505,16.721249],[42.141218,16.740347],[42.116642,16.744238],[42.118928,16.754848],[42.105211,16.775361],[42.104068,16.792337],[42.076634,16.808606],[42.062346,16.814265],[42.048057,16.812143],[42.04177,16.802594],[42.033769,16.773946],[42.021766,16.755555],[42.036626,16.733981],[42.064632,16.728322],[42.034912,16.715944],[42.022909,16.715944],[42.022909,16.727261],[42.010907,16.739286],[41.993761,16.737871],[41.973185,16.731505],[41.953181,16.733274],[41.941179,16.750957],[41.905172,16.747774],[41.898313,16.751311],[41.881167,16.765812],[41.863449,16.78491],[41.863449,16.796935],[41.86002,16.821338],[41.849161,16.835485],[41.828013,16.858474],[41.789149,16.87545],[41.777146,16.884646],[41.771431,16.892427],[41.757142,16.896317],[41.755428,16.87828],[41.764572,16.859181],[41.779432,16.841144],[41.780576,16.819216],[41.777718,16.812497],[41.790292,16.810021],[41.80801,16.810021],[41.824584,16.797996],[41.831443,16.76758],[41.843445,16.746713],[41.86745,16.728676],[41.894312,16.710639],[41.917174,16.705334],[41.955467,16.669966],[41.975471,16.6636],[42.010907,16.682345],[42.030911,16.687296],[42.06006,16.689772],[42.085779,16.693309],[42.111498,16.680576],[42.117785,16.65971],[42.101782,16.647331],[42.072633,16.63566],[42.083493,16.626818],[42.105211,16.62505],[42.127501,16.617269],[42.156079,16.585085],[42.178369,16.58367],[42.188656,16.605244],[42.17894,16.634953],[42.176654,16.651575],[42.183513,16.673503],[42.18637,16.69154],[42.18637,16.705687]]],[[[41.918889,16.791276],[41.936035,16.788447],[41.972042,16.77819],[42.001762,16.76086],[42.002334,16.772531],[41.995475,16.796935],[41.962897,16.81285],[41.938321,16.821338],[41.932606,16.838315],[41.944037,16.852815],[41.985188,16.853523],[41.976043,16.87545],[41.943465,16.883585],[41.940036,16.901268],[41.945751,16.92355],[41.94518,16.942295],[41.938321,16.97271],[41.921175,16.991809],[41.895455,17.001712],[41.863449,17.004895],[41.861163,17.013737],[41.851447,17.0102],[41.844017,17.001712],[41.846303,16.997468],[41.858305,16.996407],[41.881167,16.991455],[41.894312,16.990748],[41.920603,16.979077],[41.928605,16.955027],[41.923461,16.934867],[41.910887,16.935928],[41.901171,16.918598],[41.888025,16.907988],[41.870879,16.902683],[41.846303,16.901268],[41.834872,16.891719],[41.864021,16.851754],[41.904029,16.802947],[41.918889,16.791276]]]]},"properties":{"ISO":"SA-09","label_ar":"منطقة جازان","NAME_1":"Jizan"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[47.428553,17.092959],[47.428553,17.093667],[47.745188,19.531536],[47.614876,19.496169],[45.272697,19.256732],[45.01436,19.273708],[44.920056,19.295283],[44.866902,19.314381],[44.794888,19.347626],[44.517118,19.512792],[44.517118,19.387238],[44.513118,19.354346],[44.505116,19.331711],[44.495971,19.319686],[44.479968,19.307661],[44.413669,19.274416],[44.390236,19.255317],[44.36566,19.218889],[44.358801,19.192717],[44.359944,19.168668],[44.39538,19.041699],[44.399381,18.996782],[44.399381,18.962122],[44.39538,18.924633],[44.388522,18.8974],[44.379377,18.872643],[44.366803,18.853191],[44.3508,18.834093],[44.33251,18.816763],[44.288502,18.788469],[44.242778,18.766895],[44.19877,18.75204],[44.129041,18.738601],[44.106751,18.729405],[44.082747,18.713844],[44.061028,18.691562],[44.047311,18.667513],[44.023306,18.613754],[44.011875,18.592888],[43.999301,18.575911],[43.967867,18.544081],[43.855844,18.45354],[43.694098,18.290497],[43.667807,18.258313],[43.648375,18.222238],[43.63923,18.193944],[43.638087,18.169187],[43.648946,18.125332],[43.663806,18.080769],[43.673523,18.039743],[43.67638,17.998009],[43.650661,17.776256],[43.641516,17.736291],[43.640945,17.708704],[43.643231,17.684655],[43.663806,17.623469],[43.666092,17.570418],[43.638658,17.469621],[43.638658,17.438498],[43.688954,17.383679],[43.730677,17.352556],[43.750681,17.345482],[43.76897,17.345482],[43.80612,17.349372],[43.845557,17.346189],[43.863274,17.346897],[43.886708,17.353617],[43.892423,17.351141],[43.890137,17.320018],[43.897567,17.307285],[43.914713,17.301627],[43.938718,17.305163],[43.95415,17.320018],[43.967295,17.33947],[43.982727,17.3568],[44.003874,17.368117],[44.02102,17.365995],[44.059313,17.34725],[44.085033,17.343714],[44.104465,17.352202],[44.119897,17.369886],[44.134185,17.394643],[44.149045,17.404899],[44.169621,17.40207],[44.211344,17.390752],[44.230776,17.392167],[44.307363,17.40879],[44.403953,17.418692],[44.465108,17.416217],[44.534265,17.402777],[44.561699,17.404545],[44.624568,17.427181],[44.646287,17.431778],[44.849184,17.430717],[44.972637,17.429656],[45.165247,17.428242],[45.22183,17.417278],[45.384719,17.326384],[45.430443,17.311883],[45.642485,17.291016],[45.891105,17.266613],[46.080286,17.247868],[46.32262,17.223818],[46.487795,17.2461],[46.710125,17.275455],[46.747275,17.254942],[46.88616,17.069617],[46.970177,16.957149],[46.982751,16.949014],[46.997039,16.948307],[47.129065,16.943002],[47.161072,16.9476],[47.191363,16.958917],[47.313673,17.027884],[47.42741,17.091898],[47.428553,17.092959]]]},"properties":{"ISO":"SA-10","label_ar":"منطقة نجران","NAME_1":"Najran"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[42.032054,20.62474],[41.976043,20.670718],[41.95661,20.677084],[41.932034,20.680974],[41.909744,20.675315],[41.816583,20.626155],[41.794864,20.617313],[41.773145,20.611301],[41.666267,20.61024],[41.633689,20.605996],[41.606827,20.599629],[41.557674,20.580531],[41.527954,20.572043],[41.506807,20.573104],[41.494233,20.576994],[41.478801,20.589373],[41.466227,20.606349],[41.454225,20.626155],[41.423362,20.708561],[41.406787,20.72872],[41.38564,20.74605],[41.355348,20.759136],[41.330772,20.763026],[41.306767,20.760197],[41.285049,20.752063],[41.265045,20.737562],[41.249613,20.720939],[41.234181,20.694767],[41.229038,20.677438],[41.227323,20.658693],[41.228466,20.637119],[41.237039,20.595385],[41.254757,20.535968],[41.257615,20.505906],[41.257043,20.496003],[41.249613,20.469124],[41.179313,20.350643],[41.151308,20.28486],[41.138734,20.265055],[41.114729,20.244895],[41.091296,20.234992],[41.067863,20.228273],[40.970701,20.214126],[40.939837,20.205637],[40.914689,20.193966],[40.892399,20.177344],[40.815241,20.102719],[40.802096,20.083974],[40.799238,20.064875],[40.805525,20.046838],[40.821528,20.030569],[40.840961,20.020666],[40.915833,20.000507],[40.928978,19.989897],[40.94098,19.973981],[40.950697,19.954176],[40.956412,19.932955],[40.958127,19.911381],[40.946696,19.808816],[40.947839,19.787596],[40.9667,19.722873],[40.969557,19.702007],[40.96327,19.619247],[40.964414,19.599795],[40.969557,19.579636],[40.979845,19.560184],[40.995277,19.544976],[41.006708,19.536841],[41.083866,19.497937],[41.107871,19.476717],[41.17074,19.396787],[41.191887,19.380871],[41.215892,19.369908],[41.242183,19.364956],[41.265616,19.364603],[41.288478,19.367786],[41.310196,19.374152],[41.3302,19.383701],[41.34849,19.398555],[41.361064,19.416592],[41.368494,19.436044],[41.391927,19.543561],[41.456511,19.703775],[41.483374,19.747277],[41.495376,19.760717],[41.505664,19.768851],[41.522239,19.776632],[41.542814,19.779815],[41.636547,19.779815],[41.670839,19.784413],[41.698845,19.797145],[41.800008,20.00369],[41.814868,20.053204],[41.820012,20.124646],[41.828013,20.151172],[41.843445,20.178405],[41.864592,20.197503],[41.983473,20.276018],[42.004048,20.294763],[42.02691,20.324825],[42.033769,20.349936],[42.030911,20.372925],[42.018337,20.391316],[41.993761,20.415366],[41.986331,20.445074],[41.984616,20.471246],[42.032054,20.62474]]]},"properties":{"ISO":"SA-11","label_ar":"منطقة الباحة","NAME_1":"Al Bahah"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[37.221385,31.247315],[37.349982,31.128128],[37.480294,31.007171],[37.602032,30.883386],[37.71234,30.772332],[37.822076,30.660925],[37.980964,30.49965],[37.972963,30.494345],[37.77921,30.400622],[37.670617,30.347571],[37.647184,30.330948],[37.63461,30.312911],[37.605461,30.250664],[37.536305,30.105305],[37.491725,30.011228],[37.470006,29.994605],[37.352268,29.973385],[37.218527,29.948981],[37.075642,29.923163],[36.931613,29.897345],[36.75615,29.865514],[36.728716,29.853489],[36.705283,29.830854],[36.603548,29.68125],[36.477238,29.494511],[36.284056,29.35481],[36.069157,29.199901],[36.044009,29.191059],[36.016003,29.189998],[35.74052,29.231732],[35.622211,29.249769],[35.47361,29.272051],[35.334725,29.293271],[35.179266,29.316613],[35.059813,29.334651],[34.949506,29.351981],[34.944934,29.337126],[34.948363,29.319796],[34.955793,29.304942],[34.948363,29.298222],[34.93636,29.303881],[34.932931,29.28938],[34.935217,29.267099],[34.942076,29.250476],[34.919214,29.239159],[34.909498,29.230671],[34.909498,29.210158],[34.893495,29.17479],[34.873491,29.085311],[34.864346,29.063737],[34.852344,29.044992],[34.852344,29.031553],[34.863775,29.006088],[34.856345,28.964001],[34.840341,28.922268],[34.825481,28.90034],[34.825481,28.893974],[34.842056,28.889376],[34.842628,28.884425],[34.927216,28.886193],[34.961508,28.891852],[34.996944,28.890791],[35.077531,28.873107],[35.219845,28.861082],[35.244993,28.864973],[35.261568,28.873461],[35.296432,28.902108],[35.331296,28.91767],[35.37359,28.929341],[35.578774,28.964001],[35.711943,28.971075],[35.789673,28.984161],[35.8554,28.984514],[36.051439,28.94172],[36.075444,28.931817],[36.120024,28.904938],[36.152602,28.87912],[36.410367,28.583095],[36.422941,28.574253],[36.464664,28.562228],[36.488668,28.560814],[36.504672,28.561875],[36.614408,28.598657],[36.854455,28.644634],[36.933328,28.644988],[36.991054,28.637561],[37.142512,28.592644],[37.225958,28.577436],[37.397992,28.568594],[37.425997,28.574253],[37.450002,28.58451],[37.466005,28.602193],[37.478008,28.622353],[37.518015,28.713954],[37.530018,28.734467],[37.544878,28.754273],[37.565453,28.770542],[37.632895,28.808385],[37.694622,28.859668],[37.716341,28.867448],[37.738059,28.863204],[37.756348,28.849411],[37.767779,28.829959],[37.772352,28.80697],[37.762064,28.646049],[37.765493,28.558338],[37.772352,28.500689],[37.783782,28.457895],[37.798643,28.423942],[37.810645,28.403429],[37.826077,28.382562],[37.844366,28.36311],[37.910093,28.31395],[37.956388,28.290961],[38.066124,28.257362],[38.127851,28.246044],[38.32789,28.228007],[38.363898,28.229422],[38.397047,28.238617],[38.423338,28.250996],[38.455916,28.258069],[38.479349,28.253118],[38.512499,28.236142],[38.533646,28.228714],[38.552506,28.226946],[38.596515,28.227653],[38.624521,28.168236],[38.639952,28.152675],[38.662243,28.139589],[38.685676,28.136759],[38.710252,28.140296],[38.735971,28.148784],[38.840564,28.195823],[38.869141,28.20325],[38.904005,28.207848],[38.928581,28.206787],[38.961159,28.195823],[39.000024,28.167883],[39.109188,28.273985],[39.13205,28.289546],[39.156626,28.302632],[39.534416,28.461431],[39.709879,28.503872],[40.080238,28.690612],[40.458599,28.82713],[40.480889,28.829252],[40.543187,28.816166],[40.684358,28.939244],[40.701504,28.960464],[40.710649,28.979209],[40.716364,29.000076],[40.742084,29.33359],[40.745513,29.354456],[40.752943,29.37603],[40.767803,29.396543],[40.787236,29.41741],[40.81124,29.438277],[40.919833,29.511134],[41.754285,29.964189],[41.838301,30.021838],[41.882882,30.061803],[41.900028,30.08267],[41.9046,30.102475],[41.897742,30.121927],[41.878881,30.139611],[41.729708,30.240761],[41.681127,30.281434],[41.662838,30.303362],[41.635404,30.347571],[41.589109,30.438465],[41.577107,30.454734],[41.551959,30.48232],[41.531383,30.500711],[41.494233,30.521224],[41.464513,30.530066],[41.346204,30.544213],[41.265045,30.54492],[41.210748,30.550579],[41.177027,30.560128],[41.150165,30.572153],[40.951268,30.710793],[40.91869,30.723879],[40.879825,30.733075],[40.782092,30.732014],[40.72208,30.724586],[40.175686,30.736258],[40.081381,30.753234],[40.047089,30.765259],[40.021941,30.777284],[39.948212,30.834579],[39.924779,30.849433],[39.900774,30.860397],[39.867625,30.868531],[39.19149,30.958011],[39.059464,30.96084],[38.750832,30.921582],[38.306172,30.883032],[38.258162,30.885861],[38.213011,30.89435],[38.190149,30.902838],[38.16843,30.914155],[38.147283,30.930071],[38.129565,30.948815],[38.096416,31.000098],[38.077555,31.034758],[38.04955,31.077906],[38.0164,31.117871],[37.986108,31.144043],[37.899806,31.197448],[37.883802,31.214424],[37.876372,31.2314],[37.867228,31.276317],[37.861512,31.338209],[37.866085,31.371808],[37.98668,31.753068],[37.950101,31.744226],[37.761492,31.696127],[37.702624,31.680919],[37.455146,31.617611],[37.207097,31.554657],[36.997912,31.500899],[36.959619,31.490996],[37.089359,31.37004],[37.221385,31.247315]]]},"properties":{"ISO":"SA-12","label_ar":"منطقة الجوف","NAME_1":"Al Jawf"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[43.638658,17.438498],[43.638658,17.469621],[43.666092,17.570418],[43.663806,17.623469],[43.643231,17.684655],[43.640945,17.708704],[43.641516,17.736291],[43.650661,17.776256],[43.67638,17.998009],[43.673523,18.039743],[43.663806,18.080769],[43.648946,18.125332],[43.638087,18.169187],[43.63923,18.193944],[43.648375,18.222238],[43.667807,18.258313],[43.694098,18.290497],[43.855844,18.45354],[43.967867,18.544081],[43.999301,18.575911],[44.011875,18.592888],[44.023306,18.613754],[44.047311,18.667513],[44.061028,18.691562],[44.082747,18.713844],[44.106751,18.729405],[44.129041,18.738601],[44.19877,18.75204],[44.242778,18.766895],[44.288502,18.788469],[44.33251,18.816763],[44.3508,18.834093],[44.366803,18.853191],[44.379377,18.872643],[44.388522,18.8974],[44.39538,18.924633],[44.399381,18.962122],[44.399381,18.996782],[44.39538,19.041699],[44.359944,19.168668],[44.358801,19.192717],[44.36566,19.218889],[44.390236,19.255317],[44.413669,19.274416],[44.479968,19.307661],[44.495971,19.319686],[44.505116,19.331711],[44.513118,19.354346],[44.517118,19.387238],[44.517118,19.512792],[44.499401,19.524109],[44.106751,19.866818],[44.010161,20.018544],[43.952435,20.082913],[43.937003,20.106963],[43.929002,20.13844],[43.929573,20.163197],[43.968438,20.334021],[43.988442,20.372571],[44.046739,20.459575],[44.062743,20.497772],[44.063886,20.52076],[44.0616,20.539151],[44.055884,20.560725],[44.042739,20.584775],[43.959865,20.670364],[43.900425,20.744989],[43.868418,20.793089],[43.81355,20.853567],[43.667236,20.976291],[43.5615,20.937741],[43.403755,20.850737],[43.370034,20.840127],[43.340314,20.837651],[43.276301,20.858518],[43.250581,20.863823],[43.222004,20.865238],[43.178567,20.860287],[43.145989,20.851445],[43.085406,20.826688],[43.050542,20.818199],[42.988244,20.817138],[42.951665,20.810419],[42.924231,20.799101],[42.898512,20.783186],[42.860218,20.746757],[42.832784,20.725183],[42.634459,20.624033],[42.381266,20.407939],[42.347545,20.385657],[42.293249,20.35701],[42.259528,20.346753],[42.230951,20.344631],[42.209232,20.351351],[42.189228,20.363022],[42.169224,20.378584],[42.152649,20.398743],[42.050343,20.596446],[42.032054,20.62474],[41.984616,20.471246],[41.986331,20.445074],[41.993761,20.415366],[42.018337,20.391316],[42.030911,20.372925],[42.033769,20.349936],[42.02691,20.324825],[42.004048,20.294763],[41.983473,20.276018],[41.864592,20.197503],[41.843445,20.178405],[41.828013,20.151172],[41.820012,20.124646],[41.814868,20.053204],[41.800008,20.00369],[41.698845,19.797145],[41.743425,19.814121],[41.785719,19.816597],[41.80458,19.81306],[41.81944,19.807401],[41.832014,19.798913],[41.846874,19.782291],[41.858305,19.762131],[41.865164,19.740557],[41.866307,19.720398],[41.864021,19.700592],[41.833729,19.57044],[41.832014,19.546744],[41.834872,19.519865],[41.840016,19.500059],[41.882882,19.432508],[41.889168,19.408104],[41.889168,19.383347],[41.855448,19.281489],[41.845731,19.262037],[41.832014,19.244707],[41.813725,19.231975],[41.794293,19.224194],[41.765144,19.220657],[41.654265,19.231975],[41.631975,19.231268],[41.610828,19.227731],[41.588537,19.220657],[41.543957,19.1959],[41.493661,19.159826],[41.474801,19.150984],[41.455368,19.151338],[41.435364,19.160887],[41.418218,19.173973],[41.402215,19.1814],[41.394213,19.171143],[41.390212,19.15346],[41.383354,18.920389],[41.389641,18.879009],[41.394785,18.858142],[41.402786,18.837276],[41.414217,18.817824],[41.431363,18.801201],[41.451367,18.790591],[41.4708,18.785639],[41.579964,18.787408],[41.623401,18.783871],[41.666267,18.776444],[41.686843,18.769017],[41.706275,18.75876],[41.723421,18.742491],[41.734281,18.723039],[41.802866,18.525336],[41.809724,18.495274],[41.810296,18.469102],[41.806295,18.440808],[41.770288,18.314193],[41.883453,18.322328],[41.922889,18.312071],[41.933177,18.296156],[41.937178,18.278118],[41.938321,18.257959],[41.917746,18.13771],[41.916031,18.115075],[41.917746,18.092086],[41.926319,18.0645],[41.942893,18.049999],[41.962326,18.045048],[42.029196,18.053536],[42.050915,18.052121],[42.074348,18.046109],[42.100639,18.031254],[42.115499,18.015693],[42.122929,18.005436],[42.135503,17.968654],[42.145219,17.948141],[42.166366,17.923384],[42.188085,17.913128],[42.210375,17.907115],[42.368121,17.904993],[42.392125,17.899688],[42.420131,17.885541],[42.438992,17.866443],[42.452137,17.845222],[42.460139,17.824356],[42.47157,17.801367],[42.488716,17.77661],[42.581877,17.685008],[42.606454,17.669093],[42.629315,17.660959],[42.649319,17.660605],[42.66818,17.667678],[42.682469,17.682533],[42.69047,17.701631],[42.736194,17.866796],[42.758484,17.906761],[42.772201,17.925506],[42.789919,17.94319],[42.831641,17.972898],[42.877936,17.998363],[42.886509,18.000131],[42.925374,17.992704],[42.937948,17.977496],[42.943092,17.958751],[42.940234,17.917372],[42.946521,17.892968],[42.962524,17.86715],[43.039682,17.807379],[43.065402,17.78333],[43.079119,17.762463],[43.111125,17.698802],[43.125985,17.680057],[43.144846,17.66591],[43.222004,17.639738],[43.242008,17.623116],[43.259155,17.602603],[43.342028,17.482354],[43.391181,17.512062],[43.412899,17.519843],[43.434618,17.522672],[43.453479,17.518782],[43.486628,17.517721],[43.503203,17.513477],[43.576932,17.483061],[43.619226,17.459011],[43.638658,17.438498]]]},"properties":{"ISO":"SA-14","label_ar":"منطقة عسير","NAME_1":"Asir"}}]} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/singapore.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/singapore.geojson new file mode 100644 index 000000000000..6f24168250ce --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/singapore.geojson @@ -0,0 +1,11 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "SG-05", "NAME_1": "South West" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.846934440771804, 1.271918036188424 ], [ 103.844086134000065, 1.268500067000048 ], [ 103.838877800000034, 1.26626211100006 ], [ 103.826019727000073, 1.26430898600006 ], [ 103.801605665000068, 1.264797268000052 ], [ 103.789561394000032, 1.26788971600007 ], [ 103.78443444100003, 1.273871161000045 ], [ 103.775889519000032, 1.287583726000094 ], [ 103.75513756600003, 1.297105210000041 ], [ 103.73015384200005, 1.302923895000049 ], [ 103.708750847000033, 1.305243231000077 ], [ 103.66529381600003, 1.304103908000059 ], [ 103.647634311000047, 1.308417059000078 ], [ 103.640391472000033, 1.322251695000091 ], [ 103.644704623000052, 1.338039455000057 ], [ 103.674571160000028, 1.38031647300005 ], [ 103.678884311000047, 1.399237372000073 ], [ 103.683848504000082, 1.409898179000038 ], [ 103.695078972000033, 1.42133209800005 ], [ 103.70834394600007, 1.429388739000046 ], [ 103.717946811000047, 1.430975653000075 ], [ 103.739756707000026, 1.428127346000053 ], [ 103.762217643929091, 1.430975653203802 ], [ 103.761041700314195, 1.421328622018279 ], [ 103.759099872461093, 1.410324929351987 ], [ 103.758452596210304, 1.401910341688904 ], [ 103.758452596210304, 1.390259372771823 ], [ 103.763630804418028, 1.383139336710997 ], [ 103.770750840478854, 1.376019300650171 ], [ 103.777870877439, 1.370193816191659 ], [ 103.787580017603659, 1.362426503880044 ], [ 103.788227293854504, 1.355953744070007 ], [ 103.784343637249037, 1.351422811213752 ], [ 103.78045998154289, 1.347539155507604 ], [ 103.782401809395935, 1.343008223550669 ], [ 103.790169121707549, 1.340419119446778 ], [ 103.797936434019164, 1.333946358737478 ], [ 103.806351021682246, 1.32488449482355 ], [ 103.80764557418388, 1.311938974304212 ], [ 103.806998297933035, 1.30352438574181 ], [ 103.809587402036925, 1.293815245577093 ], [ 103.819296542201641, 1.283458829161646 ], [ 103.828358407014832, 1.278280620953865 ], [ 103.840009375032594, 1.273749688996929 ], [ 103.846934440771804, 1.271918036188424 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SG-01", "NAME_1": "Central Singapore" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.898102451400945, 1.305240936031707 ], [ 103.887705925000034, 1.301255601000094 ], [ 103.852712436000047, 1.277289130000042 ], [ 103.846934440771804, 1.271918036188424 ], [ 103.840009375032594, 1.273749688996929 ], [ 103.828358407014832, 1.278280620953865 ], [ 103.819296542201641, 1.283458829161646 ], [ 103.809587402036925, 1.293815245577093 ], [ 103.806998297933035, 1.30352438574181 ], [ 103.80764557418388, 1.311938974304212 ], [ 103.806351021682246, 1.32488449482355 ], [ 103.814765610244649, 1.331357254633588 ], [ 103.823827475057897, 1.340419119446778 ], [ 103.823827475057897, 1.350775535862283 ], [ 103.819296542201641, 1.357895571923109 ], [ 103.824474750409365, 1.365662884234723 ], [ 103.83483116682487, 1.371488367793916 ], [ 103.842598479136484, 1.377961128503273 ], [ 103.84130392753417, 1.385728440814887 ], [ 103.837420270928703, 1.393495753126501 ], [ 103.830947511118723, 1.400615789187327 ], [ 103.833536615222556, 1.40903037774973 ], [ 103.84130392753417, 1.416797690061344 ], [ 103.850365791448098, 1.417444965412813 ], [ 103.862664035716648, 1.416797690061344 ], [ 103.874315004633729, 1.418092241663601 ], [ 103.881470338242082, 1.426578902907377 ], [ 103.909439152633183, 1.412609614136894 ], [ 103.904736977629398, 1.406441273645839 ], [ 103.900853321023931, 1.39673213348118 ], [ 103.898911493170829, 1.386375717065675 ], [ 103.890496904608426, 1.383139336710997 ], [ 103.884024144798389, 1.379902956356318 ], [ 103.876904108737563, 1.372782920295549 ], [ 103.873020452132096, 1.363073780130833 ], [ 103.873020452132096, 1.353364639966173 ], [ 103.874962280884517, 1.343008223550669 ], [ 103.88078776444371, 1.333299082486633 ], [ 103.887907801403856, 1.322295390719717 ], [ 103.895027837464681, 1.310644421802635 ], [ 103.898102451400945, 1.305240936031707 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SG-04", "NAME_1": "South East" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.965806699048386, 1.389958881762213 ], [ 103.98568769600007, 1.385443427000041 ], [ 103.999522332000026, 1.38031647300005 ], [ 104.003428582000026, 1.374172268000052 ], [ 103.99187259200005, 1.35492584800005 ], [ 103.974864129000082, 1.334458726000094 ], [ 103.95435631600003, 1.318101304000038 ], [ 103.931895379000082, 1.311468817000048 ], [ 103.907237175000034, 1.308742580000057 ], [ 103.898102451400945, 1.305240936031707 ], [ 103.895027837464681, 1.310644421802635 ], [ 103.887907801403856, 1.322295390719717 ], [ 103.88078776444371, 1.333299082486633 ], [ 103.874962280884517, 1.343008223550669 ], [ 103.873020452132096, 1.353364639966173 ], [ 103.873020452132096, 1.363073780130833 ], [ 103.876904108737563, 1.372782920295549 ], [ 103.884024144798389, 1.379902956356318 ], [ 103.890496904608426, 1.383139336710997 ], [ 103.898911493170829, 1.386375717065675 ], [ 103.897616941568572, 1.374724748148594 ], [ 103.906031529231655, 1.368251988338557 ], [ 103.917035221897947, 1.36436833173309 ], [ 103.929980742417285, 1.358542848173897 ], [ 103.935158950625009, 1.354011915317642 ], [ 103.942278986685835, 1.354011915317642 ], [ 103.945515367040514, 1.365015607983935 ], [ 103.945515367040514, 1.372782920295549 ], [ 103.954577230954385, 1.376666576001696 ], [ 103.962344543265999, 1.383139336710997 ], [ 103.965806699048386, 1.389958881762213 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SG-02", "NAME_1": "North East" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.909439152633183, 1.412609614136894 ], [ 103.932465040000068, 1.40110911700009 ], [ 103.960785352000073, 1.391099351000094 ], [ 103.965806699048386, 1.389958881762213 ], [ 103.962344543265999, 1.383139336710997 ], [ 103.954577230954385, 1.376666576001696 ], [ 103.945515367040514, 1.372782920295549 ], [ 103.945515367040514, 1.365015607983935 ], [ 103.942278986685835, 1.354011915317642 ], [ 103.935158950625009, 1.354011915317642 ], [ 103.929980742417285, 1.358542848173897 ], [ 103.917035221897947, 1.36436833173309 ], [ 103.906031529231655, 1.368251988338557 ], [ 103.897616941568572, 1.374724748148594 ], [ 103.898911493170829, 1.386375717065675 ], [ 103.900853321023931, 1.39673213348118 ], [ 103.904736977629398, 1.406441273645839 ], [ 103.909439152633183, 1.412609614136894 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SG-03", "NAME_1": "North West" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.762217643929091, 1.430975653203802 ], [ 103.790049675000034, 1.444281317000048 ], [ 103.804942254000082, 1.448635158000059 ], [ 103.831553582000026, 1.447088934000078 ], [ 103.857188347000033, 1.438706773000092 ], [ 103.881470338242082, 1.426578902907377 ], [ 103.874315004633729, 1.418092241663601 ], [ 103.862664035716648, 1.416797690061344 ], [ 103.850365791448098, 1.417444965412813 ], [ 103.84130392753417, 1.416797690061344 ], [ 103.833536615222556, 1.40903037774973 ], [ 103.830947511118723, 1.400615789187327 ], [ 103.837420270928703, 1.393495753126501 ], [ 103.84130392753417, 1.385728440814887 ], [ 103.842598479136484, 1.377961128503273 ], [ 103.83483116682487, 1.371488367793916 ], [ 103.824474750409365, 1.365662884234723 ], [ 103.819296542201641, 1.357895571923109 ], [ 103.823827475057897, 1.350775535862283 ], [ 103.823827475057897, 1.340419119446778 ], [ 103.814765610244649, 1.331357254633588 ], [ 103.806351021682246, 1.32488449482355 ], [ 103.797936434019164, 1.333946358737478 ], [ 103.790169121707549, 1.340419119446778 ], [ 103.782401809395935, 1.343008223550669 ], [ 103.78045998154289, 1.347539155507604 ], [ 103.784343637249037, 1.351422811213752 ], [ 103.788227293854504, 1.355953744070007 ], [ 103.787580017603659, 1.362426503880044 ], [ 103.777870877439, 1.370193816191659 ], [ 103.770750840478854, 1.376019300650171 ], [ 103.763630804418028, 1.383139336710997 ], [ 103.758452596210304, 1.390259372771823 ], [ 103.758452596210304, 1.401910341688904 ], [ 103.759099872461093, 1.410324929351987 ], [ 103.761041700314195, 1.421328622018279 ], [ 103.762217643929091, 1.430975653203802 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/slovenia.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/slovenia.geojson new file mode 100644 index 000000000000..47d1902b89b2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/slovenia.geojson @@ -0,0 +1,199 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "SI-059", "NAME_1": "Lendava" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.382183065000106, 46.539382630000048 ], [ 16.36947066200014, 46.540571188000072 ], [ 16.357895142000103, 46.546979065000116 ], [ 16.351693970000042, 46.539485982000073 ], [ 16.351254482000087, 46.539922460000028 ], [ 16.344149210000069, 46.546979065000116 ], [ 16.340276430912525, 46.543827132316267 ], [ 16.339654168405104, 46.543981025204118 ], [ 16.334848259739374, 46.545169582710059 ], [ 16.328647087992692, 46.548735257026465 ], [ 16.334538202276178, 46.556486721484987 ], [ 16.344305047439946, 46.556745103903381 ], [ 16.350661247918254, 46.557649441468527 ], [ 16.367456088927327, 46.562946274750743 ], [ 16.383114048374637, 46.57002594743949 ], [ 16.389625277584457, 46.574780178362516 ], [ 16.397531772573245, 46.578190823048033 ], [ 16.378463169339796, 46.599791571823573 ], [ 16.347870720857088, 46.615346178483321 ], [ 16.366991000933922, 46.634233914563481 ], [ 16.371951939230598, 46.636223455947686 ], [ 16.372245691985086, 46.636341263538441 ], [ 16.376395304000141, 46.629092916000033 ], [ 16.394585408000069, 46.619016012000074 ], [ 16.430242147000058, 46.604391582000105 ], [ 16.46713911900008, 46.564704082000034 ], [ 16.500832153000147, 46.544808655000011 ], [ 16.515301554000075, 46.501710510000109 ], [ 16.491116984000115, 46.515146383000072 ], [ 16.481298462000041, 46.519022115000027 ], [ 16.470756469000065, 46.520262350000039 ], [ 16.449052368000082, 46.518350322000046 ], [ 16.440370727000129, 46.519022115000027 ], [ 16.431999145000134, 46.523207906000053 ], [ 16.415152628000072, 46.535558574 ], [ 16.406264282000052, 46.539485982000073 ], [ 16.394895467000055, 46.540106100000045 ], [ 16.382183065000106, 46.539382630000048 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-015", "NAME_1": "Črenšovci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.340276430912525, 46.543827132316267 ], [ 16.329989868000041, 46.535455221000078 ], [ 16.310662882785778, 46.530985209200026 ], [ 16.292163527025139, 46.534730943078557 ], [ 16.281621534606131, 46.547236640258689 ], [ 16.274645217402849, 46.544497789141644 ], [ 16.271803012598923, 46.542740789955474 ], [ 16.267978956763443, 46.539769395741018 ], [ 16.254077995602984, 46.547417508311355 ], [ 16.247515090449042, 46.553851223155391 ], [ 16.265963576058198, 46.569147447396745 ], [ 16.27945112516926, 46.576511339126967 ], [ 16.287047559996893, 46.578190823048033 ], [ 16.299811638696156, 46.589456284979519 ], [ 16.300535109108012, 46.597336941546587 ], [ 16.328492059261123, 46.583823554013804 ], [ 16.334538202276178, 46.577622382267123 ], [ 16.337948846062375, 46.563824774793488 ], [ 16.334538202276178, 46.556486721484987 ], [ 16.328647087992692, 46.548735257026465 ], [ 16.334848259739374, 46.545169582710059 ], [ 16.339654168405104, 46.543981025204118 ], [ 16.340276430912525, 46.543827132316267 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-063", "NAME_1": "Ljutomer" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.310662882785778, 46.530985209200026 ], [ 16.301527099270544, 46.527080896558182 ], [ 16.277590773195584, 46.533878282356795 ], [ 16.25960737468057, 46.519331366949018 ], [ 16.260795933085831, 46.514163723077331 ], [ 16.260931084000106, 46.513576112000081 ], [ 16.234905233000092, 46.493338928000028 ], [ 16.234187646742498, 46.484892336412145 ], [ 16.233665806132024, 46.484708157055763 ], [ 16.231030307802428, 46.483777981068954 ], [ 16.226999546391937, 46.481245836426183 ], [ 16.224364048062341, 46.477861030162387 ], [ 16.221883579363691, 46.475406398986081 ], [ 16.216767612335445, 46.474553738264376 ], [ 16.210411410957818, 46.476181546241321 ], [ 16.206535679178216, 46.473442695124277 ], [ 16.203900180848677, 46.472925930287431 ], [ 16.201884800143375, 46.47346853354594 ], [ 16.191652866086883, 46.483984687543284 ], [ 16.183384636791516, 46.489384874512325 ], [ 16.170672234935694, 46.495741074990576 ], [ 16.155634393112734, 46.493234767870206 ], [ 16.152533806789734, 46.489617418509056 ], [ 16.147727899023323, 46.488480536047859 ], [ 16.136565788979965, 46.489229844881436 ], [ 16.113724805855099, 46.495896105520842 ], [ 16.067629429354668, 46.501606349953079 ], [ 16.051506381913953, 46.506308905831304 ], [ 16.020345492650335, 46.511295680751061 ], [ 16.026546665296337, 46.521553453229274 ], [ 16.026701694027963, 46.524757392339779 ], [ 16.028251986739804, 46.528374741700929 ], [ 16.026856723658852, 46.53090688724302 ], [ 16.028251986739804, 46.533284003154222 ], [ 16.034298129754859, 46.539149278116668 ], [ 16.040964390394265, 46.542379054749574 ], [ 16.045615269429106, 46.545272936396884 ], [ 16.077758009724334, 46.541862290812048 ], [ 16.09775678894465, 46.539020086907442 ], [ 16.122251417568862, 46.529020697747001 ], [ 16.142766960726647, 46.525842597058158 ], [ 16.154084100400894, 46.525429185908195 ], [ 16.166021355900853, 46.527754624975955 ], [ 16.170672234935694, 46.530260932096326 ], [ 16.173927849990264, 46.532948106369986 ], [ 16.1750130547087, 46.535738634330471 ], [ 16.176098260326455, 46.541913966756113 ], [ 16.177183465044834, 46.545014553079113 ], [ 16.178423700293536, 46.547546699520524 ], [ 16.178733757756675, 46.54997549137579 ], [ 16.17578820196394, 46.552042548025156 ], [ 16.173927849990264, 46.554057928730401 ], [ 16.176718377051429, 46.560052394902073 ], [ 16.190412631737559, 46.566356920335579 ], [ 16.194753452409884, 46.566666978698095 ], [ 16.201729771411806, 46.566511949067149 ], [ 16.204210239211136, 46.567958888991484 ], [ 16.216767612335445, 46.584133613275583 ], [ 16.247515090449042, 46.553851223155391 ], [ 16.254077995602984, 46.547417508311355 ], [ 16.267978956763443, 46.539769395741018 ], [ 16.271803012598923, 46.542740789955474 ], [ 16.274645217402849, 46.544497789141644 ], [ 16.281621534606131, 46.547236640258689 ], [ 16.292163527025139, 46.534730943078557 ], [ 16.310662882785778, 46.530985209200026 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-176", "NAME_1": "Razkrižje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.301527099270544, 46.527080896558182 ], [ 16.295366659000109, 46.524448141000093 ], [ 16.263947388000076, 46.515921530000057 ], [ 16.260931084000106, 46.513576112000081 ], [ 16.260795933085831, 46.514163723077331 ], [ 16.25960737468057, 46.519331366949018 ], [ 16.277590773195584, 46.533878282356795 ], [ 16.301527099270544, 46.527080896558182 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-087", "NAME_1": "Ormož" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.234187646742498, 46.484892336412145 ], [ 16.233664999000069, 46.478740336000058 ], [ 16.237489054000093, 46.465071920000057 ], [ 16.24937463400002, 46.437528382000082 ], [ 16.250098103000113, 46.429441020000084 ], [ 16.248237752000108, 46.413343811000104 ], [ 16.250924927000142, 46.40499806800004 ], [ 16.257022746000104, 46.399907939000045 ], [ 16.274075968000119, 46.392104798000034 ], [ 16.278726847000087, 46.387350566000052 ], [ 16.279936481000078, 46.378661362000074 ], [ 16.280277140000123, 46.376214294000093 ], [ 16.27562626200006, 46.373165385000092 ], [ 16.252785279000136, 46.373423767000062 ], [ 16.217128540000147, 46.367351787000089 ], [ 16.208653605000052, 46.367093404000045 ], [ 16.191807088000076, 46.36978057900005 ], [ 16.177544393000119, 46.375594178000043 ], [ 16.153566528000084, 46.391433004000035 ], [ 16.143851359000053, 46.394714458000053 ], [ 16.131552368000115, 46.393060811000097 ], [ 16.12318078600012, 46.38688547800011 ], [ 16.115532674000065, 46.379289042000053 ], [ 16.10602421100009, 46.373733826000048 ], [ 16.094345337000107, 46.372261047000038 ], [ 16.088654305000148, 46.373085600000039 ], [ 16.075742629019089, 46.38445587853596 ], [ 16.065924107011938, 46.404092923449639 ], [ 16.050576205927143, 46.424866848126499 ], [ 16.026081577302932, 46.432308255121825 ], [ 16.039104038420646, 46.449258123963205 ], [ 16.040034214407456, 46.468636786458489 ], [ 16.020965610274686, 46.490702623227435 ], [ 16.01409264495959, 46.507549140180629 ], [ 16.020345492650335, 46.511295680751061 ], [ 16.051506381913953, 46.506308905831304 ], [ 16.067629429354668, 46.501606349953079 ], [ 16.113724805855099, 46.495896105520842 ], [ 16.136565788979965, 46.489229844881436 ], [ 16.147727899023323, 46.488480536047859 ], [ 16.152533806789734, 46.489617418509056 ], [ 16.155634393112734, 46.493234767870206 ], [ 16.170672234935694, 46.495741074990576 ], [ 16.183384636791516, 46.489384874512325 ], [ 16.191652866086883, 46.483984687543284 ], [ 16.201884800143375, 46.47346853354594 ], [ 16.203900180848677, 46.472925930287431 ], [ 16.206535679178216, 46.473442695124277 ], [ 16.210411410957818, 46.476181546241321 ], [ 16.216767612335445, 46.474553738264376 ], [ 16.221883579363691, 46.475406398986081 ], [ 16.224364048062341, 46.477861030162387 ], [ 16.226999546391937, 46.481245836426183 ], [ 16.231030307802428, 46.483777981068954 ], [ 16.233665806132024, 46.484708157055763 ], [ 16.234187646742498, 46.484892336412145 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-143", "NAME_1": "Zavrc" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.088654305000148, 46.373085600000039 ], [ 16.05796512800012, 46.377532044000063 ], [ 16.057448365000084, 46.359651998000018 ], [ 16.0597221270001, 46.345311788000018 ], [ 16.059618774000057, 46.332315166000072 ], [ 16.052384073000098, 46.318595073000054 ], [ 16.049922397900332, 46.316734615410155 ], [ 16.049697706783718, 46.317276516298136 ], [ 16.042669711837732, 46.334226386038836 ], [ 16.040654331132487, 46.345698554444709 ], [ 16.03817386243378, 46.351331285410481 ], [ 16.034453159385805, 46.354018460583461 ], [ 16.031352573062804, 46.358333441934747 ], [ 16.031507602693694, 46.364121202531464 ], [ 16.040654331132487, 46.379598293926108 ], [ 16.055227084961984, 46.388073228796429 ], [ 16.075742629019089, 46.38445587853596 ], [ 16.088654305000148, 46.373085600000039 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-028", "NAME_1": "Gorišnica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.049922397900332, 46.316734615410155 ], [ 16.038948201000068, 46.308440654 ], [ 16.019207804000075, 46.298828837000073 ], [ 15.998433879000061, 46.291542460000088 ], [ 15.993668239997248, 46.290613311055438 ], [ 15.993422072170858, 46.290869858856865 ], [ 15.989132928341974, 46.295339870738417 ], [ 15.97518029123745, 46.327715155929695 ], [ 15.97611046722426, 46.335466620388218 ], [ 15.973319940163094, 46.342287909759193 ], [ 15.970994500196014, 46.346525376744694 ], [ 15.967273797147982, 46.34918671349601 ], [ 15.969289177853284, 46.361899116251209 ], [ 15.977350701573585, 46.362209173714348 ], [ 15.985567254025511, 46.364276231263034 ], [ 15.988822869979458, 46.365852363295915 ], [ 15.998434686411656, 46.373035386973527 ], [ 15.998124627149821, 46.376084296453087 ], [ 15.996729364068869, 46.381251939425454 ], [ 15.988667840348512, 46.393757635706322 ], [ 15.987892693992592, 46.402594305782543 ], [ 15.983086786226181, 46.416650296573891 ], [ 15.991303337778788, 46.425538641694914 ], [ 15.995489128820225, 46.428820095171204 ], [ 16.011922234623398, 46.434943753451421 ], [ 16.026081577302932, 46.432308255121825 ], [ 16.050576205927143, 46.424866848126499 ], [ 16.065924107011938, 46.404092923449639 ], [ 16.075742629019089, 46.38445587853596 ], [ 16.055227084961984, 46.388073228796429 ], [ 16.040654331132487, 46.379598293926108 ], [ 16.031507602693694, 46.364121202531464 ], [ 16.031352573062804, 46.358333441934747 ], [ 16.034453159385805, 46.354018460583461 ], [ 16.03817386243378, 46.351331285410481 ], [ 16.040654331132487, 46.345698554444709 ], [ 16.042669711837732, 46.334226386038836 ], [ 16.049697706783718, 46.317276516298136 ], [ 16.049922397900332, 46.316734615410155 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-135", "NAME_1": "Videm" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.993668239997248, 46.290613311055438 ], [ 15.982000773000067, 46.288338522000046 ], [ 15.94872115000004, 46.284204407000018 ], [ 15.918903311000093, 46.272827171000031 ], [ 15.918749626993701, 46.27322235802535 ], [ 15.918387891787745, 46.274152534012217 ], [ 15.9163725110825, 46.282963364767454 ], [ 15.916682570344335, 46.284720363953625 ], [ 15.917302687069309, 46.286839098345695 ], [ 15.918542922318011, 46.2884410670016 ], [ 15.917767775062771, 46.29097321254369 ], [ 15.917767775062771, 46.293763740504176 ], [ 15.918387891787745, 46.296450913878573 ], [ 15.91869795104958, 46.299344793727244 ], [ 15.918077834324606, 46.302342027262739 ], [ 15.914357131276574, 46.308569037431084 ], [ 15.911876661678605, 46.311824653385031 ], [ 15.910171340235138, 46.315467841167901 ], [ 15.909396192979898, 46.319343573846822 ], [ 15.910171340235138, 46.322702541688898 ], [ 15.912341749672009, 46.32528636317511 ], [ 15.913581984021334, 46.327663479086254 ], [ 15.913426955289765, 46.33221100533359 ], [ 15.912806837665414, 46.334794826819802 ], [ 15.910481397698334, 46.338127957139477 ], [ 15.906243930712833, 46.340892645778979 ], [ 15.900507846959556, 46.343398952899349 ], [ 15.883919712424756, 46.34843740556181 ], [ 15.879888950114946, 46.350401109423615 ], [ 15.868881869702534, 46.351537990985491 ], [ 15.864851108291987, 46.351589666929556 ], [ 15.859580111632852, 46.350194403848661 ], [ 15.853999058409784, 46.349470934336125 ], [ 15.846505974571073, 46.34745555273156 ], [ 15.842165154798067, 46.34688711195065 ], [ 15.83735924613228, 46.345181790507183 ], [ 15.831778192009949, 46.339368191488802 ], [ 15.828367547324433, 46.333709622101367 ], [ 15.828987664049464, 46.327353420723739 ], [ 15.825111932269863, 46.3084915230653 ], [ 15.801082390739737, 46.320583808196147 ], [ 15.813329704602154, 46.338928941017798 ], [ 15.811624383158744, 46.342391262546698 ], [ 15.808833856097579, 46.344871731245348 ], [ 15.802477654719951, 46.354948634771631 ], [ 15.818755730892235, 46.359134425813068 ], [ 15.821236199590942, 46.366059067971605 ], [ 15.824646844276401, 46.371562607728151 ], [ 15.831468132748114, 46.394791165379957 ], [ 15.850226677619048, 46.381872057049748 ], [ 15.869501987326828, 46.384016628964218 ], [ 15.89632205591812, 46.396858222029323 ], [ 15.904073521275961, 46.393602606974696 ], [ 15.928464797112667, 46.386884671290545 ], [ 15.935131055953434, 46.383396511339924 ], [ 15.936371291202136, 46.380735175487928 ], [ 15.942572462948817, 46.369573066343889 ], [ 15.951254103394149, 46.365852363295915 ], [ 15.969289177853284, 46.361899116251209 ], [ 15.967273797147982, 46.34918671349601 ], [ 15.970994500196014, 46.346525376744694 ], [ 15.973319940163094, 46.342287909759193 ], [ 15.97611046722426, 46.335466620388218 ], [ 15.97518029123745, 46.327715155929695 ], [ 15.989132928341974, 46.295339870738417 ], [ 15.993422072170858, 46.290869858856865 ], [ 15.993668239997248, 46.290613311055438 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-172", "NAME_1": "Podlehnik" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.918903311000093, 46.272827171000031 ], [ 15.883712199000087, 46.259399720000076 ], [ 15.880894659000091, 46.259340899000094 ], [ 15.880664097370186, 46.259605617705063 ], [ 15.875083042348535, 46.266013495026755 ], [ 15.866866488997232, 46.281774807261513 ], [ 15.862060581230821, 46.283841864810199 ], [ 15.825111932269863, 46.3084915230653 ], [ 15.828987664049464, 46.327353420723739 ], [ 15.828367547324433, 46.333709622101367 ], [ 15.831778192009949, 46.339368191488802 ], [ 15.83735924613228, 46.345181790507183 ], [ 15.842165154798067, 46.34688711195065 ], [ 15.846505974571073, 46.34745555273156 ], [ 15.853999058409784, 46.349470934336125 ], [ 15.859580111632852, 46.350194403848661 ], [ 15.864851108291987, 46.351589666929556 ], [ 15.868881869702534, 46.351537990985491 ], [ 15.879888950114946, 46.350401109423615 ], [ 15.883919712424756, 46.34843740556181 ], [ 15.900507846959556, 46.343398952899349 ], [ 15.906243930712833, 46.340892645778979 ], [ 15.910481397698334, 46.338127957139477 ], [ 15.912806837665414, 46.334794826819802 ], [ 15.913426955289765, 46.33221100533359 ], [ 15.913581984021334, 46.327663479086254 ], [ 15.912341749672009, 46.32528636317511 ], [ 15.910171340235138, 46.322702541688898 ], [ 15.909396192979898, 46.319343573846822 ], [ 15.910171340235138, 46.315467841167901 ], [ 15.911876661678605, 46.311824653385031 ], [ 15.914357131276574, 46.308569037431084 ], [ 15.918077834324606, 46.302342027262739 ], [ 15.91869795104958, 46.299344793727244 ], [ 15.918387891787745, 46.296450913878573 ], [ 15.917767775062771, 46.293763740504176 ], [ 15.917767775062771, 46.29097321254369 ], [ 15.918542922318011, 46.2884410670016 ], [ 15.917302687069309, 46.286839098345695 ], [ 15.916682570344335, 46.284720363953625 ], [ 15.9163725110825, 46.282963364767454 ], [ 15.918387891787745, 46.274152534012217 ], [ 15.918749626993701, 46.27322235802535 ], [ 15.918903311000093, 46.272827171000031 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-191", "NAME_1": "Žetale" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.880894659000091, 46.259340899000094 ], [ 15.879323324000012, 46.259308094000048 ], [ 15.834206176000123, 46.258366191000093 ], [ 15.818289835000087, 46.255523987000018 ], [ 15.803096965000066, 46.250511373000066 ], [ 15.799526193000133, 46.24860696100005 ], [ 15.798911981302865, 46.248805243766981 ], [ 15.75793257003204, 46.262034410459648 ], [ 15.761808301811641, 46.285753892727939 ], [ 15.772970411854999, 46.297742825071282 ], [ 15.801082390739737, 46.320583808196147 ], [ 15.825111932269863, 46.3084915230653 ], [ 15.862060581230821, 46.283841864810199 ], [ 15.866866488997232, 46.281774807261513 ], [ 15.875083042348535, 46.266013495026755 ], [ 15.880664097370186, 46.259605617705063 ], [ 15.880894659000091, 46.259340899000094 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-107", "NAME_1": "Rogatec" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.799526193000133, 46.24860696100005 ], [ 15.789144328000077, 46.243069967000039 ], [ 15.76888716600007, 46.219350484000088 ], [ 15.749766886000089, 46.210772197000054 ], [ 15.67797529200007, 46.214462419000128 ], [ 15.67798912909501, 46.214698797811252 ], [ 15.678299188356846, 46.219995632892108 ], [ 15.691838413412029, 46.237333076260427 ], [ 15.701450229844227, 46.241673896033433 ], [ 15.708426547946829, 46.251699124514971 ], [ 15.71633304203624, 46.256892605009682 ], [ 15.721759067427001, 46.259347236185988 ], [ 15.741344434597977, 46.266065171870139 ], [ 15.75793257003204, 46.262034410459648 ], [ 15.798911981302865, 46.248805243766981 ], [ 15.799526193000133, 46.24860696100005 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-106", "NAME_1": "Rogaška Slatina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.67797529200007, 46.214462419000128 ], [ 15.661296834000041, 46.215319723000093 ], [ 15.639799438000097, 46.20767161000002 ], [ 15.626571312000095, 46.195209748000096 ], [ 15.626105991098598, 46.195526841790297 ], [ 15.613290235555894, 46.20426015907907 ], [ 15.607089063809212, 46.219969794470387 ], [ 15.603988478385531, 46.222605291900663 ], [ 15.59685713065204, 46.22544749580527 ], [ 15.585850051138948, 46.235989488224277 ], [ 15.565799595075248, 46.273661606697772 ], [ 15.571380649197579, 46.279165147353638 ], [ 15.57701338106267, 46.281774807261513 ], [ 15.587865430944873, 46.28404857038521 ], [ 15.608949415782888, 46.283841864810199 ], [ 15.653029413376714, 46.273661606697772 ], [ 15.684862095309427, 46.274075018747112 ], [ 15.703775668911987, 46.264178982374119 ], [ 15.741344434597977, 46.266065171870139 ], [ 15.721759067427001, 46.259347236185988 ], [ 15.71633304203624, 46.256892605009682 ], [ 15.708426547946829, 46.251699124514971 ], [ 15.701450229844227, 46.241673896033433 ], [ 15.691838413412029, 46.237333076260427 ], [ 15.678299188356846, 46.219995632892108 ], [ 15.67798912909501, 46.214698797811252 ], [ 15.67797529200007, 46.214462419000128 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-149", "NAME_1": "Bistrica ob Sotli" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.626571312000095, 46.195209748000096 ], [ 15.622849568000106, 46.191703594000089 ], [ 15.604349406000068, 46.167002258000068 ], [ 15.589983358000069, 46.138683574000069 ], [ 15.589880005000055, 46.113517151000039 ], [ 15.603832641000025, 46.090986227000101 ], [ 15.623604837992843, 46.07641529792761 ], [ 15.623522169612443, 46.076360988768613 ], [ 15.607554151802674, 46.06587067319299 ], [ 15.599027540988232, 46.06912628824756 ], [ 15.5953068379402, 46.078738105579077 ], [ 15.596237013027689, 46.082407131783668 ], [ 15.59933759935069, 46.086024482044195 ], [ 15.584609815890303, 46.108581244328946 ], [ 15.575618117082399, 46.112017727436125 ], [ 15.558978305704215, 46.121965439753239 ], [ 15.546575962210852, 46.123825791726858 ], [ 15.536033969791845, 46.130362861157096 ], [ 15.545490756593153, 46.155167548143822 ], [ 15.567504917417978, 46.164727687732579 ], [ 15.5787187034054, 46.179222927196292 ], [ 15.613290235555894, 46.20426015907907 ], [ 15.626105991098598, 46.195526841790297 ], [ 15.626571312000095, 46.195209748000096 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-092", "NAME_1": "Podcetrtek" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.623604837992843, 46.07641529792761 ], [ 15.631531209000059, 46.070574036000053 ], [ 15.643726847000067, 46.065509746000075 ], [ 15.671735474000087, 46.057396546000078 ], [ 15.683931112000096, 46.051143697000086 ], [ 15.692879847000114, 46.041635666000033 ], [ 15.692613559767949, 46.041582750143789 ], [ 15.684552036047592, 46.039980781487827 ], [ 15.667757195937838, 46.02638987868994 ], [ 15.663261345634567, 46.032177639286601 ], [ 15.638611688278786, 46.032280992074107 ], [ 15.631170282182779, 46.034193019991847 ], [ 15.624142287236737, 46.037810370252373 ], [ 15.619646436933522, 46.040859279731933 ], [ 15.607554151802674, 46.06587067319299 ], [ 15.623522169612443, 46.076360988768613 ], [ 15.623604837992843, 46.07641529792761 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-009", "NAME_1": "Brežice" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.692879847000114, 46.041635666000033 ], [ 15.697987101000109, 46.036209208000045 ], [ 15.693646281000042, 46.025770570000091 ], [ 15.681967407000059, 46.013523255000067 ], [ 15.674319295000089, 45.993317770000075 ], [ 15.674215943000149, 45.993162740000045 ], [ 15.675380807000067, 45.972486394000086 ], [ 15.677109822000119, 45.941796366000077 ], [ 15.675559530000015, 45.925156556000061 ], [ 15.670391887000108, 45.912650859000067 ], [ 15.663363892000092, 45.900816956000043 ], [ 15.659436483000036, 45.888828024000091 ], [ 15.663673950000089, 45.876063945000013 ], [ 15.675456177000086, 45.855961813000064 ], [ 15.676076294000069, 45.84169911700009 ], [ 15.666051066000136, 45.831673890000062 ], [ 15.645587199000062, 45.824129130000088 ], [ 15.626053508000069, 45.820201721000032 ], [ 15.58729618300012, 45.819219870000083 ], [ 15.549748078810751, 45.82369277989784 ], [ 15.549573194847028, 45.823921616889095 ], [ 15.544715610237233, 45.830277818266666 ], [ 15.522701450311672, 45.852782905506672 ], [ 15.517895541645942, 45.860586045909258 ], [ 15.512882928304464, 45.866916408865166 ], [ 15.509782341981463, 45.874151109386162 ], [ 15.510092401243298, 45.882160956263078 ], [ 15.515260044215665, 45.894046535818973 ], [ 15.530142857306998, 45.900557765928113 ], [ 15.541770054444441, 45.903503323519544 ], [ 15.546265902949074, 45.903296617045214 ], [ 15.550451693990453, 45.906035468162315 ], [ 15.556497837005566, 45.90820587849845 ], [ 15.558978305704215, 45.916732490212212 ], [ 15.566884799793684, 45.920143133998408 ], [ 15.569830357385058, 45.926292629801026 ], [ 15.57220747239694, 45.936731269432528 ], [ 15.571380649197579, 45.972232978469151 ], [ 15.583679639903437, 45.993988755976261 ], [ 15.597632277007961, 45.994453843969723 ], [ 15.623832227974901, 46.003703925195964 ], [ 15.667757195937838, 46.02638987868994 ], [ 15.684552036047592, 46.039980781487827 ], [ 15.692613559767949, 46.041582750143789 ], [ 15.692879847000114, 46.041635666000033 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-054", "NAME_1": "Krško" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.549748078810751, 45.82369277989784 ], [ 15.523527466000104, 45.826816305000037 ], [ 15.513915649000097, 45.823405661000024 ], [ 15.495312133000141, 45.812656963000094 ], [ 15.485390259000042, 45.810176494000117 ], [ 15.473918091000115, 45.811571757000095 ], [ 15.462549275000129, 45.814207255000028 ], [ 15.451283813000089, 45.815137431000053 ], [ 15.440328410000092, 45.811468404000053 ], [ 15.43557417800011, 45.802114970000034 ], [ 15.43950158700008, 45.791676330000072 ], [ 15.441051879000099, 45.782167868 ], [ 15.429754502000065, 45.775691354000074 ], [ 15.429373813950349, 45.775965888414987 ], [ 15.423999465402972, 45.779841620194588 ], [ 15.401055128591281, 45.80991730384045 ], [ 15.399608188666946, 45.823559882582515 ], [ 15.396817660706461, 45.835497138082417 ], [ 15.395577427256455, 45.857201240544782 ], [ 15.388136021160449, 45.876579902140747 ], [ 15.361005894206642, 45.883737088295959 ], [ 15.350618931418524, 45.891695258329491 ], [ 15.3532544288488, 45.899524238053118 ], [ 15.354184604835609, 45.916448269372097 ], [ 15.363021274012567, 45.934767563772027 ], [ 15.371547885726329, 45.951097316787695 ], [ 15.389531284241343, 45.969649156083676 ], [ 15.424154494134598, 45.993988755976261 ], [ 15.429425489894413, 46.000629177294684 ], [ 15.429890577887818, 46.006985379571574 ], [ 15.427875197182573, 46.012618110537346 ], [ 15.422604201422757, 46.017889106297218 ], [ 15.419038527106352, 46.02582143790903 ], [ 15.416713088038591, 46.033159492116852 ], [ 15.416713088038591, 46.041789455718799 ], [ 15.419503615099757, 46.04644033475364 ], [ 15.420278760556357, 46.049928493804941 ], [ 15.418418410381321, 46.063312690128498 ], [ 15.492574089822369, 46.067679348323225 ], [ 15.51743045365248, 46.059876207021318 ], [ 15.524871859748487, 46.059256090296287 ], [ 15.537739292134631, 46.052641507399642 ], [ 15.548436314184528, 46.04411489478656 ], [ 15.55944339369762, 46.017113959041978 ], [ 15.563939243101572, 46.004634101182774 ], [ 15.564714390356812, 45.999983222147932 ], [ 15.568590122136413, 45.997761134968357 ], [ 15.583679639903437, 45.993988755976261 ], [ 15.571380649197579, 45.972232978469151 ], [ 15.57220747239694, 45.936731269432528 ], [ 15.569830357385058, 45.926292629801026 ], [ 15.566884799793684, 45.920143133998408 ], [ 15.558978305704215, 45.916732490212212 ], [ 15.556497837005566, 45.90820587849845 ], [ 15.550451693990453, 45.906035468162315 ], [ 15.546265902949074, 45.903296617045214 ], [ 15.541770054444441, 45.903503323519544 ], [ 15.530142857306998, 45.900557765928113 ], [ 15.515260044215665, 45.894046535818973 ], [ 15.510092401243298, 45.882160956263078 ], [ 15.509782341981463, 45.874151109386162 ], [ 15.512882928304464, 45.866916408865166 ], [ 15.517895541645942, 45.860586045909258 ], [ 15.522701450311672, 45.852782905506672 ], [ 15.544715610237233, 45.830277818266666 ], [ 15.549573194847028, 45.823921616889095 ], [ 15.549748078810751, 45.82369277989784 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-119", "NAME_1": "Šentjernej" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.429754502000065, 45.775691354000074 ], [ 15.429062947000148, 45.775294902000027 ], [ 15.331031282667539, 45.752485553865199 ], [ 15.33093020966146, 45.752866522871727 ], [ 15.330258416092988, 45.755398668413818 ], [ 15.330258416092988, 45.755527858723667 ], [ 15.320491570929221, 45.782451280102464 ], [ 15.297237175755015, 45.807385159197736 ], [ 15.279202101295937, 45.820355943472009 ], [ 15.273931104636745, 45.829916083060766 ], [ 15.271295607206469, 45.841879176982388 ], [ 15.276411574234771, 45.850457465539591 ], [ 15.280907423638666, 45.855754298821807 ], [ 15.303748406763532, 45.864461777688859 ], [ 15.329483269737068, 45.874719550167072 ], [ 15.340025262156132, 45.87081797996575 ], [ 15.341420526136346, 45.86849253999867 ], [ 15.343900994835053, 45.86831167284538 ], [ 15.347983433088928, 45.86986196645654 ], [ 15.355734898446769, 45.874099433442098 ], [ 15.361005894206642, 45.883737088295959 ], [ 15.388136021160449, 45.876579902140747 ], [ 15.395577427256455, 45.857201240544782 ], [ 15.396817660706461, 45.835497138082417 ], [ 15.399608188666946, 45.823559882582515 ], [ 15.401055128591281, 45.80991730384045 ], [ 15.423999465402972, 45.779841620194588 ], [ 15.429373813950349, 45.775965888414987 ], [ 15.429754502000065, 45.775691354000074 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-085", "NAME_1": "Novo Mesto" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.331031282667539, 45.752485553865199 ], [ 15.303799276000092, 45.746149394000028 ], [ 15.263491658000049, 45.730388083000051 ], [ 15.255016723000068, 45.72346344000006 ], [ 15.249912988993231, 45.713731743425171 ], [ 15.249023064862513, 45.713282376480493 ], [ 15.228145785599509, 45.702740383162109 ], [ 15.190783726387849, 45.684446926284579 ], [ 15.184582553741848, 45.683258368778695 ], [ 15.17150841578075, 45.68237986873595 ], [ 15.156160515595332, 45.683258368778695 ], [ 15.126239861580359, 45.681914780742488 ], [ 15.102778760831143, 45.684421087862916 ], [ 15.105724318422517, 45.692766832423331 ], [ 15.112855666156065, 45.696022447477958 ], [ 15.115956251579746, 45.697004299408889 ], [ 15.118436720278396, 45.698580431441712 ], [ 15.120038689833677, 45.700466620038469 ], [ 15.121899040907977, 45.702378647956209 ], [ 15.124069452143488, 45.70682282231536 ], [ 15.121072217708672, 45.711732082869332 ], [ 15.11425092923696, 45.718372504187698 ], [ 15.080609572174012, 45.744159044004675 ], [ 15.079369337824687, 45.749145819823696 ], [ 15.07611372187074, 45.754313462796063 ], [ 15.062884556077393, 45.768369451788772 ], [ 15.058078648310982, 45.781081855443233 ], [ 15.086035596665454, 45.806144923949034 ], [ 15.096267530721946, 45.810149847837181 ], [ 15.101228468119302, 45.815317490809548 ], [ 15.10928999183966, 45.816867784420708 ], [ 15.112700635625799, 45.820355943472009 ], [ 15.115181105223826, 45.823714911314084 ], [ 15.118281690647507, 45.829037583917341 ], [ 15.119676954627721, 45.832396551759416 ], [ 15.120038689833677, 45.835962226075821 ], [ 15.119676954627721, 45.838804429980428 ], [ 15.118591749909342, 45.842576808972524 ], [ 15.120142042621183, 45.843817044221169 ], [ 15.122002393695482, 45.844023748896859 ], [ 15.125309685593493, 45.843791204900185 ], [ 15.128720330279009, 45.845005601727109 ], [ 15.135231561287526, 45.849139715925105 ], [ 15.144843376820347, 45.873324286186858 ], [ 15.184737583372737, 45.867484850545395 ], [ 15.196519810141126, 45.86986196645654 ], [ 15.209852328721979, 45.873815213501302 ], [ 15.21775882281139, 45.879628810720988 ], [ 15.228765903223859, 45.895803535005086 ], [ 15.228300816129718, 45.900506089984049 ], [ 15.226905552149503, 45.90479523381299 ], [ 15.227370640142908, 45.909084378541195 ], [ 15.23858442613033, 45.924354763461565 ], [ 15.268505080145303, 45.906913967305741 ], [ 15.277651807684776, 45.903839220303723 ], [ 15.288503859365619, 45.898516546801147 ], [ 15.298167351741881, 45.890455023980167 ], [ 15.303128289139238, 45.88531321942952 ], [ 15.306073845831293, 45.881230781175589 ], [ 15.301733026058287, 45.874874578898698 ], [ 15.303748406763532, 45.864461777688859 ], [ 15.280907423638666, 45.855754298821807 ], [ 15.276411574234771, 45.850457465539591 ], [ 15.271295607206469, 45.841879176982388 ], [ 15.273931104636745, 45.829916083060766 ], [ 15.279202101295937, 45.820355943472009 ], [ 15.297237175755015, 45.807385159197736 ], [ 15.320491570929221, 45.782451280102464 ], [ 15.330258416092988, 45.755527858723667 ], [ 15.330258416092988, 45.755398668413818 ], [ 15.33093020966146, 45.752866522871727 ], [ 15.331031282667539, 45.752485553865199 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-073", "NAME_1": "Metlika" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249912988993231, 45.713731743425171 ], [ 15.248918904000107, 45.711836243000093 ], [ 15.250882609000115, 45.707650452000067 ], [ 15.258220663000117, 45.705118307000063 ], [ 15.267832479000049, 45.69845204700006 ], [ 15.277754354000137, 45.685016175 ], [ 15.283025350000059, 45.680106913000074 ], [ 15.29191369600008, 45.675559388000053 ], [ 15.304936158000118, 45.672148743000022 ], [ 15.309070272000042, 45.674164124000058 ], [ 15.310413859000107, 45.678194885000053 ], [ 15.314961385000032, 45.680882060000087 ], [ 15.327053670000112, 45.683155823 ], [ 15.330774373000054, 45.684551087000088 ], [ 15.333874960000088, 45.682639059000067 ], [ 15.350034462920121, 45.669619115729574 ], [ 15.351961711000087, 45.668066305000096 ], [ 15.368291463000048, 45.649049378000129 ], [ 15.373769165000112, 45.64021270800005 ], [ 15.353098592000094, 45.640316060000075 ], [ 15.339145955000106, 45.636905417000051 ], [ 15.326743612000143, 45.632254538000083 ], [ 15.297391398000059, 45.625691631000095 ], [ 15.291603637000094, 45.618250224000079 ], [ 15.287882934000095, 45.610343730000025 ], [ 15.281061646000126, 45.606157939000084 ], [ 15.268555948000113, 45.601662089000072 ], [ 15.269589477000096, 45.593445537000022 ], [ 15.276720825000041, 45.582696839 ], [ 15.282178582000085, 45.571494074000086 ], [ 15.281630894050522, 45.571947333002981 ], [ 15.280132277282746, 45.573187568251626 ], [ 15.270830519213064, 45.576236476831923 ], [ 15.261373732411812, 45.582385973533803 ], [ 15.255947707021051, 45.589207262005516 ], [ 15.25284712069805, 45.594219876246257 ], [ 15.253157179060565, 45.596803696833092 ], [ 15.248971388019129, 45.598198960813363 ], [ 15.239049513224415, 45.596390286582448 ], [ 15.223649937094933, 45.599955959999534 ], [ 15.225045200175828, 45.608275865238966 ], [ 15.233726840621159, 45.60835338050407 ], [ 15.23625898616325, 45.608663437967266 ], [ 15.238894483593526, 45.609981188481015 ], [ 15.241840041184957, 45.610704657993551 ], [ 15.244320509883607, 45.612926744273807 ], [ 15.248816359287559, 45.614838772191547 ], [ 15.253157179060565, 45.618197740033679 ], [ 15.258893262813785, 45.621608384719138 ], [ 15.261683790774327, 45.625639147029005 ], [ 15.264939405828898, 45.632873847550002 ], [ 15.268195020883468, 45.636129461705252 ], [ 15.2719157239315, 45.637912299313143 ], [ 15.279202101295937, 45.638558255359158 ], [ 15.283542921968262, 45.643415839069689 ], [ 15.284318068324183, 45.650133774753897 ], [ 15.274551222261096, 45.663207912714995 ], [ 15.264629346567062, 45.673026434722146 ], [ 15.250986768724374, 45.681294664017514 ], [ 15.238119338136926, 45.700905870509473 ], [ 15.236414014894876, 45.702533678486475 ], [ 15.228145785599509, 45.702740383162109 ], [ 15.249023064862513, 45.713282376480493 ], [ 15.249912988993231, 45.713731743425171 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-165", "NAME_1": "Kostel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.781143839000094, 45.493348288000035 ], [ 14.688332967000093, 45.522028707000018 ], [ 14.668489217000086, 45.533965963000057 ], [ 14.6681791580001, 45.539133607000068 ], [ 14.67169315600006, 45.556806946000066 ], [ 14.669832804000066, 45.564558411000078 ], [ 14.66404504400009, 45.570036113000057 ], [ 14.663674873896298, 45.570187027909014 ], [ 14.680582310025557, 45.576236476831923 ], [ 14.723680453889813, 45.596984564885759 ], [ 14.730088332110824, 45.575771388838518 ], [ 14.73365400642723, 45.571895657058917 ], [ 14.733343947165395, 45.567244778024076 ], [ 14.731638624822665, 45.565332750106336 ], [ 14.733033887903616, 45.561637885480025 ], [ 14.739235059650241, 45.553576361759667 ], [ 14.756133254346196, 45.54497223657944 ], [ 14.795872430368377, 45.518927314344069 ], [ 14.817111443937961, 45.501253974191513 ], [ 14.831219109774054, 45.499703681479673 ], [ 14.835559930446436, 45.501719062184975 ], [ 14.838505487138491, 45.504457913302019 ], [ 14.843518101379289, 45.513759671371702 ], [ 14.845843540446992, 45.520270901480899 ], [ 14.848479037877269, 45.52417247258154 ], [ 14.858245883940356, 45.529779365125592 ], [ 14.864602085317983, 45.531148789784822 ], [ 14.870338169071204, 45.530296129063061 ], [ 14.885220982162593, 45.5241466332605 ], [ 14.901705763010511, 45.521381943721678 ], [ 14.913798049040736, 45.521976222924309 ], [ 14.929766065951185, 45.525412706031545 ], [ 14.937827589671485, 45.526317044495954 ], [ 14.943873731787278, 45.525412706031545 ], [ 14.965319451831249, 45.511537584192126 ], [ 14.977205031387086, 45.491952216121831 ], [ 14.977340821821429, 45.491728454904262 ], [ 14.962631470000105, 45.493141581000074 ], [ 14.945371541000014, 45.504510397000061 ], [ 14.922633911000048, 45.51494903600009 ], [ 14.904443807000092, 45.514432272000064 ], [ 14.900826456000118, 45.493141581000074 ], [ 14.881602823000094, 45.46978383400004 ], [ 14.838814738000082, 45.458983460000084 ], [ 14.797163533000059, 45.465184632000089 ], [ 14.78145389800008, 45.493141581000074 ], [ 14.781350545000066, 45.49319325800009 ], [ 14.781247192000109, 45.493348288000035 ], [ 14.781143839000094, 45.493348288000035 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-066", "NAME_1": "Loški Potok" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.663674873896298, 45.570187027909014 ], [ 14.657327107000071, 45.572774964000118 ], [ 14.650299113000131, 45.574842021000066 ], [ 14.61598596200011, 45.59406565400009 ], [ 14.603066853000115, 45.603574117000065 ], [ 14.593868449000098, 45.616183167000102 ], [ 14.592938273000073, 45.629670716000064 ], [ 14.59407515500007, 45.64801584900006 ], [ 14.59190474400009, 45.66336375000013 ], [ 14.580949341000093, 45.667807922000023 ], [ 14.569094979000084, 45.664251613000047 ], [ 14.568961215887384, 45.66462901511693 ], [ 14.568237746374905, 45.666670234243895 ], [ 14.558625929043387, 45.681294664017514 ], [ 14.556713901125647, 45.692198390743101 ], [ 14.537490269160571, 45.734418036363252 ], [ 14.550047642284824, 45.738267931519772 ], [ 14.555628696407211, 45.734676418781703 ], [ 14.576144239564996, 45.735322373928398 ], [ 14.598933546745798, 45.729534614231056 ], [ 14.619604120433792, 45.728888658184985 ], [ 14.629681023960075, 45.72457367593438 ], [ 14.634641961357431, 45.720387884892943 ], [ 14.646269159394194, 45.707494614984455 ], [ 14.667198113701943, 45.689407864581256 ], [ 14.676551547715746, 45.683103339147749 ], [ 14.708022495341879, 45.675558580264237 ], [ 14.720579867566812, 45.669770820566896 ], [ 14.73117353682926, 45.66731618939059 ], [ 14.733033887903616, 45.664215603067589 ], [ 14.73520429913907, 45.659487210566283 ], [ 14.7345841806154, 45.655559801043978 ], [ 14.73520429913907, 45.652149156358462 ], [ 14.731793653554234, 45.646981513386095 ], [ 14.726626010581924, 45.637783108103918 ], [ 14.710968052033934, 45.628119614828336 ], [ 14.723680453889813, 45.596984564885759 ], [ 14.680582310025557, 45.576236476831923 ], [ 14.663674873896298, 45.570187027909014 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-065", "NAME_1": "Loška dolina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.569094979000084, 45.664251613000047 ], [ 14.563896118000059, 45.662691955000057 ], [ 14.556144654000065, 45.656697490000013 ], [ 14.54363895600008, 45.636440329000024 ], [ 14.533096964000094, 45.625691631000095 ], [ 14.507878866000055, 45.605847880000098 ], [ 14.49857710800012, 45.596184388000083 ], [ 14.492272583000101, 45.58342030900009 ], [ 14.4915018290001, 45.579164764000055 ], [ 14.4910331556556, 45.579311224733203 ], [ 14.48813927580693, 45.580215563197669 ], [ 14.480697869710923, 45.57985382709245 ], [ 14.474031609970837, 45.580422267873359 ], [ 14.467985466955724, 45.578923652004903 ], [ 14.460389032128091, 45.580163886354228 ], [ 14.449381951715679, 45.579802151148328 ], [ 14.438943312084177, 45.580732327135138 ], [ 14.438168165728257, 45.582980251837114 ], [ 14.443439162387392, 45.587631130871955 ], [ 14.443904250380854, 45.594633287396277 ], [ 14.441268752051258, 45.600007635943598 ], [ 14.428091261302654, 45.608663437967266 ], [ 14.421890089555973, 45.616879991318513 ], [ 14.422510207180324, 45.623907986264555 ], [ 14.426230910228298, 45.64403595579472 ], [ 14.425765822234894, 45.661605943159714 ], [ 14.416619092896781, 45.670752672497827 ], [ 14.393364698621951, 45.689304510894431 ], [ 14.386181674944339, 45.707494614984455 ], [ 14.410572950781045, 45.710078437369987 ], [ 14.478372429743843, 45.747853909530249 ], [ 14.50818973187063, 45.73111074536456 ], [ 14.525242954398834, 45.728914495707386 ], [ 14.52958377417184, 45.730232245321815 ], [ 14.537490269160571, 45.734418036363252 ], [ 14.556713901125647, 45.692198390743101 ], [ 14.558625929043387, 45.681294664017514 ], [ 14.568237746374905, 45.666670234243895 ], [ 14.568961215887384, 45.66462901511693 ], [ 14.569094979000084, 45.664251613000047 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-038", "NAME_1": "Ilirska Bistrica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4915018290001, 45.579164764000055 ], [ 14.487414999000094, 45.556600240000122 ], [ 14.482144002000069, 45.542440898000066 ], [ 14.468914835000078, 45.52559438100009 ], [ 14.429744100000107, 45.505388896000099 ], [ 14.41124393700008, 45.49319325800009 ], [ 14.37279667100006, 45.477845358000124 ], [ 14.326804646000141, 45.474899801000035 ], [ 14.280399211000145, 45.481100973000096 ], [ 14.240608358000117, 45.493348288000035 ], [ 14.218697551000076, 45.497172344000077 ], [ 14.193066040000105, 45.491901347000052 ], [ 14.145523722000092, 45.476243388000071 ], [ 14.119685506000081, 45.472884420000057 ], [ 14.117320712000065, 45.472975725000069 ], [ 14.116747015762144, 45.472997875351666 ], [ 14.116792433324122, 45.473219508773298 ], [ 14.118084343617568, 45.479524034206804 ], [ 14.118239373248457, 45.491797187390262 ], [ 14.112141554289281, 45.501357326979019 ], [ 14.107490676153759, 45.504767970765215 ], [ 14.08919721837691, 45.515284124762502 ], [ 14.087181837671665, 45.517997138357202 ], [ 14.094468215036102, 45.531174628206486 ], [ 14.102684766588709, 45.550398261070882 ], [ 14.104855176924843, 45.560320135865538 ], [ 14.105630324180083, 45.56595286683131 ], [ 14.099584181165028, 45.568665880426011 ], [ 14.093693067780862, 45.567451484498406 ], [ 14.090437452726235, 45.570190334716131 ], [ 14.089507276739425, 45.574686184120083 ], [ 14.093693067780862, 45.5865459252542 ], [ 14.099119093171623, 45.594064845716048 ], [ 14.102219678595304, 45.601454575867933 ], [ 14.104545118562385, 45.60471019092256 ], [ 14.089817336001261, 45.614089464257347 ], [ 14.090592482357181, 45.624243883048734 ], [ 14.102839797118918, 45.622796943124399 ], [ 14.110281203214925, 45.626000882234905 ], [ 14.127541131318139, 45.630393377952032 ], [ 14.151880731210781, 45.631426906726347 ], [ 14.194100375931612, 45.629514878808607 ], [ 14.215649447863711, 45.631323553938842 ], [ 14.226708205119564, 45.633338935543406 ], [ 14.237870314263603, 45.640676987952588 ], [ 14.246551954708934, 45.644139309481545 ], [ 14.285515985274515, 45.655043036207132 ], [ 14.316986932001271, 45.659487210566283 ], [ 14.328304070776255, 45.66387970628341 ], [ 14.330784538575585, 45.667600410230705 ], [ 14.328459100407144, 45.670649318811002 ], [ 14.332644891448581, 45.671889553160327 ], [ 14.3472693212222, 45.672199612422162 ], [ 14.369128452416135, 45.659693915241974 ], [ 14.378585239217387, 45.651994126727516 ], [ 14.426230910228298, 45.64403595579472 ], [ 14.422510207180324, 45.623907986264555 ], [ 14.421890089555973, 45.616879991318513 ], [ 14.428091261302654, 45.608663437967266 ], [ 14.441268752051258, 45.600007635943598 ], [ 14.443904250380854, 45.594633287396277 ], [ 14.443439162387392, 45.587631130871955 ], [ 14.438168165728257, 45.582980251837114 ], [ 14.438943312084177, 45.580732327135138 ], [ 14.449381951715679, 45.579802151148328 ], [ 14.460389032128091, 45.580163886354228 ], [ 14.467985466955724, 45.578923652004903 ], [ 14.474031609970837, 45.580422267873359 ], [ 14.480697869710923, 45.57985382709245 ], [ 14.48813927580693, 45.580215563197669 ], [ 14.4910331556556, 45.579311224733203 ], [ 14.4915018290001, 45.579164764000055 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-017", "NAME_1": "Crnomelj" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.282178582000085, 45.571494074000086 ], [ 15.282611938000059, 45.570604553000024 ], [ 15.288606405000081, 45.544559632000059 ], [ 15.296667928000062, 45.522958883000072 ], [ 15.311033977000079, 45.505905660000039 ], [ 15.361366821000047, 45.482031149000065 ], [ 15.35175500400004, 45.476140036000047 ], [ 15.333874960000088, 45.458518372000057 ], [ 15.325193318000117, 45.452833964000021 ], [ 15.314031209000092, 45.450508525000075 ], [ 15.281578410000066, 45.450973612000027 ], [ 15.225849151816874, 45.436449692699114 ], [ 15.184220011000036, 45.425600485000118 ], [ 15.139261515000101, 45.430044658000028 ], [ 15.066128234000104, 45.473933723000115 ], [ 15.074873488420735, 45.488954983485655 ], [ 15.086655715189067, 45.499186917542204 ], [ 15.092856886036429, 45.502442531697454 ], [ 15.103708936817952, 45.50639577874216 ], [ 15.118126661915881, 45.508747057130961 ], [ 15.121278924183002, 45.511640936979632 ], [ 15.120762160245476, 45.516498520690163 ], [ 15.113010694887635, 45.520322577424963 ], [ 15.101538527381138, 45.519444078281538 ], [ 15.090531446968669, 45.516446844746042 ], [ 15.079679396187146, 45.514534816828302 ], [ 15.073013136447059, 45.517066962370393 ], [ 15.069757521392489, 45.522854722967054 ], [ 15.073168166078005, 45.534223537686103 ], [ 15.081849805624017, 45.542440091037349 ], [ 15.086810743920694, 45.544352118955089 ], [ 15.090066358975264, 45.546419176503775 ], [ 15.093942091654185, 45.546160794085381 ], [ 15.097197706708755, 45.544920558836679 ], [ 15.100608351394271, 45.54608327882022 ], [ 15.100608351394271, 45.550630805067556 ], [ 15.088981154256828, 45.558511460735303 ], [ 15.083555128866067, 45.563575750920165 ], [ 15.083710157597693, 45.574737860963467 ], [ 15.079059278562852, 45.583987942189765 ], [ 15.079989455448981, 45.589879055573931 ], [ 15.07363325407141, 45.601945502283058 ], [ 15.105414260060058, 45.594504096187052 ], [ 15.133216179682904, 45.596338608839687 ], [ 15.141277704302581, 45.598353990444252 ], [ 15.146083612069049, 45.600679430411333 ], [ 15.147478875149943, 45.602849839848204 ], [ 15.15073449110389, 45.606363837321226 ], [ 15.155850457232816, 45.610523789940942 ], [ 15.173988885378719, 45.617422594577079 ], [ 15.188613315152338, 45.617009182527738 ], [ 15.206751743298298, 45.614580389773153 ], [ 15.225045200175828, 45.608275865238966 ], [ 15.223649937094933, 45.599955959999534 ], [ 15.239049513224415, 45.596390286582448 ], [ 15.248971388019129, 45.598198960813363 ], [ 15.253157179060565, 45.596803696833092 ], [ 15.25284712069805, 45.594219876246257 ], [ 15.255947707021051, 45.589207262005516 ], [ 15.261373732411812, 45.582385973533803 ], [ 15.270830519213064, 45.576236476831923 ], [ 15.280132277282746, 45.573187568251626 ], [ 15.281630894050522, 45.571947333002981 ], [ 15.282178582000085, 45.571494074000086 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-048", "NAME_1": "Kocevje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.066128234000104, 45.473933723000115 ], [ 15.056165812000131, 45.479912415000072 ], [ 15.007383260000069, 45.480842591000041 ], [ 14.997461385000065, 45.487198792000058 ], [ 14.986299275000135, 45.490867818000069 ], [ 14.977340821821429, 45.491728454904262 ], [ 14.977205031387086, 45.491952216121831 ], [ 14.965319451831249, 45.511537584192126 ], [ 14.943873731787278, 45.525412706031545 ], [ 14.937827589671485, 45.526317044495954 ], [ 14.929766065951185, 45.525412706031545 ], [ 14.913798049040736, 45.521976222924309 ], [ 14.901705763010511, 45.521381943721678 ], [ 14.885220982162593, 45.5241466332605 ], [ 14.870338169071204, 45.530296129063061 ], [ 14.864602085317983, 45.531148789784822 ], [ 14.858245883940356, 45.529779365125592 ], [ 14.848479037877269, 45.52417247258154 ], [ 14.845843540446992, 45.520270901480899 ], [ 14.843518101379289, 45.513759671371702 ], [ 14.838505487138491, 45.504457913302019 ], [ 14.835559930446436, 45.501719062184975 ], [ 14.831219109774054, 45.499703681479673 ], [ 14.817111443937961, 45.501253974191513 ], [ 14.795872430368377, 45.518927314344069 ], [ 14.756133254346196, 45.54497223657944 ], [ 14.739235059650241, 45.553576361759667 ], [ 14.733033887903616, 45.561637885480025 ], [ 14.731638624822665, 45.565332750106336 ], [ 14.733343947165395, 45.567244778024076 ], [ 14.73365400642723, 45.571895657058917 ], [ 14.730088332110824, 45.575771388838518 ], [ 14.723680453889813, 45.596984564885759 ], [ 14.710968052033934, 45.628119614828336 ], [ 14.726626010581924, 45.637783108103918 ], [ 14.731793653554234, 45.646981513386095 ], [ 14.754737990365925, 45.639540107290088 ], [ 14.770706008175694, 45.641865546357849 ], [ 14.777837355009922, 45.648686834829562 ], [ 14.788275994641424, 45.663466295133389 ], [ 14.789361200259179, 45.674111640339902 ], [ 14.822382439697833, 45.72785513030999 ], [ 14.795872430368377, 45.74309967680864 ], [ 14.813700799252445, 45.757672431537458 ], [ 14.826878289101728, 45.757620754694074 ], [ 14.835714959178006, 45.760540472964408 ], [ 14.846463657172023, 45.759584459455198 ], [ 14.862431674981792, 45.755657049932893 ], [ 14.869718052346229, 45.752246406146696 ], [ 14.877004428811347, 45.743926500007944 ], [ 14.895762973682281, 45.745115058413205 ], [ 14.926355422164988, 45.769196274988076 ], [ 14.939222852752437, 45.771547553376877 ], [ 14.982062615996938, 45.766302395139405 ], [ 14.983612908708778, 45.749171658245416 ], [ 14.980202264023262, 45.741446031309295 ], [ 14.971985710672016, 45.711577053238386 ], [ 14.976636589706857, 45.702895412793055 ], [ 14.981132440010072, 45.696590888258868 ], [ 14.999890984881006, 45.681785590432639 ], [ 15.020096469676332, 45.66501658784523 ], [ 15.024592319080227, 45.647498277323621 ], [ 15.037614780197941, 45.631323553938842 ], [ 15.056373325068876, 45.60682892531463 ], [ 15.07363325407141, 45.601945502283058 ], [ 15.079989455448981, 45.589879055573931 ], [ 15.079059278562852, 45.583987942189765 ], [ 15.083710157597693, 45.574737860963467 ], [ 15.083555128866067, 45.563575750920165 ], [ 15.088981154256828, 45.558511460735303 ], [ 15.100608351394271, 45.550630805067556 ], [ 15.100608351394271, 45.54608327882022 ], [ 15.097197706708755, 45.544920558836679 ], [ 15.093942091654185, 45.546160794085381 ], [ 15.090066358975264, 45.546419176503775 ], [ 15.086810743920694, 45.544352118955089 ], [ 15.081849805624017, 45.542440091037349 ], [ 15.073168166078005, 45.534223537686103 ], [ 15.069757521392489, 45.522854722967054 ], [ 15.073013136447059, 45.517066962370393 ], [ 15.079679396187146, 45.514534816828302 ], [ 15.090531446968669, 45.516446844746042 ], [ 15.101538527381138, 45.519444078281538 ], [ 15.113010694887635, 45.520322577424963 ], [ 15.120762160245476, 45.516498520690163 ], [ 15.121278924183002, 45.511640936979632 ], [ 15.118126661915881, 45.508747057130961 ], [ 15.103708936817952, 45.50639577874216 ], [ 15.092856886036429, 45.502442531697454 ], [ 15.086655715189067, 45.499186917542204 ], [ 15.074873488420735, 45.488954983485655 ], [ 15.066128234000104, 45.473933723000115 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-035", "NAME_1": "Hrpelje-Kozina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.116747015762144, 45.472997875351666 ], [ 14.092917114000102, 45.47391794800005 ], [ 14.06666548700008, 45.480274150000085 ], [ 14.041550741000037, 45.49319325800009 ], [ 14.028321574000046, 45.502650045000067 ], [ 14.013955526000132, 45.507972717000101 ], [ 13.987476489948051, 45.511908790158543 ], [ 13.987394647145209, 45.512080187450692 ], [ 13.983828972828803, 45.519547431069043 ], [ 13.952202995571781, 45.545954088510371 ], [ 13.910448438844355, 45.552026069047827 ], [ 13.894635450665476, 45.559777534405669 ], [ 13.884816928658324, 45.567709866017481 ], [ 13.880011020891914, 45.572464097839827 ], [ 13.870554233191285, 45.597475491300884 ], [ 13.867925706000079, 45.602169289000116 ], [ 13.887038208000149, 45.618766988000104 ], [ 13.894686320000034, 45.631841125000065 ], [ 13.89364052978658, 45.633758406325342 ], [ 13.908898146132515, 45.643777574275589 ], [ 13.938353713053402, 45.642640692713769 ], [ 13.95080773339015, 45.635974432973683 ], [ 13.97142662933544, 45.633080553125012 ], [ 13.987704704608404, 45.627137762897405 ], [ 14.006204867960264, 45.617784328883658 ], [ 14.024963412831198, 45.61142812840535 ], [ 14.039691196291642, 45.602436427798864 ], [ 14.059586622724453, 45.599594224793634 ], [ 14.066407912095428, 45.600989487874529 ], [ 14.071988967117136, 45.60357331026006 ], [ 14.077259962876951, 45.60987783479419 ], [ 14.089817336001261, 45.614089464257347 ], [ 14.104545118562385, 45.60471019092256 ], [ 14.102219678595304, 45.601454575867933 ], [ 14.099119093171623, 45.594064845716048 ], [ 14.093693067780862, 45.5865459252542 ], [ 14.089507276739425, 45.574686184120083 ], [ 14.090437452726235, 45.570190334716131 ], [ 14.093693067780862, 45.567451484498406 ], [ 14.099584181165028, 45.568665880426011 ], [ 14.105630324180083, 45.56595286683131 ], [ 14.104855176924843, 45.560320135865538 ], [ 14.102684766588709, 45.550398261070882 ], [ 14.094468215036102, 45.531174628206486 ], [ 14.087181837671665, 45.517997138357202 ], [ 14.08919721837691, 45.515284124762502 ], [ 14.107490676153759, 45.504767970765215 ], [ 14.112141554289281, 45.501357326979019 ], [ 14.118239373248457, 45.491797187390262 ], [ 14.118084343617568, 45.479524034206804 ], [ 14.116792433324122, 45.473219508773298 ], [ 14.116747015762144, 45.472997875351666 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-050", "NAME_1": "Koper" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.987476489948051, 45.511908790158543 ], [ 13.971890910000127, 45.514225566 ], [ 13.964966268000126, 45.510969951000035 ], [ 13.96145227000008, 45.503890279000089 ], [ 13.96145227000008, 45.493141581000074 ], [ 13.982639608000056, 45.475313212000046 ], [ 13.969823852000047, 45.462962545000082 ], [ 13.923005004000032, 45.448958232000066 ], [ 13.908432251000079, 45.438881327000033 ], [ 13.899647257000083, 45.429217835000102 ], [ 13.889001912000083, 45.42363678 ], [ 13.835568481000081, 45.429114482000088 ], [ 13.819858846000102, 45.432628480000048 ], [ 13.806526327000086, 45.442136943000023 ], [ 13.759294068000145, 45.463169251000025 ], [ 13.659969793000073, 45.459977951000027 ], [ 13.660024447670082, 45.460222886976624 ], [ 13.661419711650353, 45.466475735566746 ], [ 13.666070590685194, 45.46880117373513 ], [ 13.667000766672004, 45.469059557052901 ], [ 13.670876499350925, 45.471229967389036 ], [ 13.672426792062765, 45.474201362502868 ], [ 13.674752232029846, 45.477534491923223 ], [ 13.677697787822638, 45.48290884136992 ], [ 13.68870486823505, 45.490867011403452 ], [ 13.693200717639002, 45.495388699229068 ], [ 13.691495396195592, 45.497791653561933 ], [ 13.689790072953485, 45.499445299061279 ], [ 13.662763298787183, 45.50699005794479 ], [ 13.674287144036441, 45.520684313530239 ], [ 13.67514082100007, 45.544745184000078 ], [ 13.752940300000091, 45.552883205000057 ], [ 13.752940300000091, 45.559068101000037 ], [ 13.742360873000052, 45.56976959800005 ], [ 13.727386915000068, 45.581203518000052 ], [ 13.711761915000068, 45.59320709800005 ], [ 13.76105106600005, 45.596236064 ], [ 13.800531860000149, 45.581249899000014 ], [ 13.84776411900009, 45.584660543000055 ], [ 13.867925706000079, 45.602169289000116 ], [ 13.870554233191285, 45.597475491300884 ], [ 13.880011020891914, 45.572464097839827 ], [ 13.884816928658324, 45.567709866017481 ], [ 13.894635450665476, 45.559777534405669 ], [ 13.910448438844355, 45.552026069047827 ], [ 13.952202995571781, 45.545954088510371 ], [ 13.983828972828803, 45.519547431069043 ], [ 13.987394647145209, 45.512080187450692 ], [ 13.987476489948051, 45.511908790158543 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-090", "NAME_1": "Piran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.629017781000073, 45.458983460000084 ], [ 13.58952884200005, 45.488836981000077 ], [ 13.591644727000073, 45.493109442000048 ], [ 13.589121941000087, 45.501613674000055 ], [ 13.595957879000082, 45.511908270000049 ], [ 13.595957879000082, 45.518133856000077 ], [ 13.586192254000082, 45.519476630000042 ], [ 13.578623894000089, 45.523382880000042 ], [ 13.572764519000089, 45.529974677000041 ], [ 13.568614129000082, 45.539252020000049 ], [ 13.58961022200009, 45.53579336100006 ], [ 13.61092905333938, 45.538024637373056 ], [ 13.611448601571681, 45.533551744117688 ], [ 13.616564568599927, 45.525541897240714 ], [ 13.618579950204548, 45.521614487718409 ], [ 13.618890007667687, 45.515620022446058 ], [ 13.622145622722314, 45.50675751394806 ], [ 13.628656853730774, 45.50218415017838 ], [ 13.633462762396562, 45.499652005535609 ], [ 13.639663934143243, 45.493218288892876 ], [ 13.639973993405079, 45.490970364190957 ], [ 13.641679314848489, 45.489575100210686 ], [ 13.646640252245845, 45.488179837129735 ], [ 13.654236687972741, 45.490660304929122 ], [ 13.657492303027368, 45.492158921696841 ], [ 13.662763298787183, 45.50699005794479 ], [ 13.689790072953485, 45.499445299061279 ], [ 13.691495396195592, 45.497791653561933 ], [ 13.693200717639002, 45.495388699229068 ], [ 13.68870486823505, 45.490867011403452 ], [ 13.677697787822638, 45.48290884136992 ], [ 13.674752232029846, 45.477534491923223 ], [ 13.672426792062765, 45.474201362502868 ], [ 13.670876499350925, 45.471229967389036 ], [ 13.667000766672004, 45.469059557052901 ], [ 13.666070590685194, 45.46880117373513 ], [ 13.661419711650353, 45.466475735566746 ], [ 13.660024447670082, 45.460222886976624 ], [ 13.659969793000073, 45.459977951000027 ], [ 13.629017781000073, 45.458983460000084 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-078", "NAME_1": "Moravske Toplice" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.299489883751107, 46.779509941930257 ], [ 16.298157186000083, 46.775802308000081 ], [ 16.300430949000088, 46.772081605000082 ], [ 16.31417687900003, 46.743323670000066 ], [ 16.32554569500013, 46.733272604000021 ], [ 16.334123983000069, 46.721748759 ], [ 16.34342574100009, 46.714178162000039 ], [ 16.357275024000046, 46.71583180800009 ], [ 16.357585082000128, 46.699011129000027 ], [ 16.365383073000061, 46.696712468000086 ], [ 16.363934640571188, 46.694808349925381 ], [ 16.356242302939904, 46.684695950157959 ], [ 16.351706815017508, 46.685920531807085 ], [ 16.34073937312354, 46.688881741199395 ], [ 16.3342281430144, 46.683765774171093 ], [ 16.327406853643367, 46.676169339343517 ], [ 16.317484978848654, 46.660769762314658 ], [ 16.314384393424973, 46.645137641289068 ], [ 16.297899610778416, 46.647850653984449 ], [ 16.283481885680487, 46.655963854548247 ], [ 16.276505567577885, 46.657307440785758 ], [ 16.268599074387737, 46.65151968018904 ], [ 16.240797152966195, 46.653586737737726 ], [ 16.225914340774182, 46.655498766554786 ], [ 16.203590121586842, 46.663482774110719 ], [ 16.1981640970954, 46.666919257217899 ], [ 16.192117954080288, 46.672061061768545 ], [ 16.191652866086883, 46.679476630342208 ], [ 16.178733757756675, 46.697563382544047 ], [ 16.175633172332994, 46.718699042426863 ], [ 16.17826866976327, 46.720869451863678 ], [ 16.184314812778382, 46.72712230135312 ], [ 16.190102573375043, 46.727225654140625 ], [ 16.210566440588764, 46.745002346181309 ], [ 16.217852817053824, 46.744382229456278 ], [ 16.223743931337367, 46.746862698154985 ], [ 16.232115513420183, 46.757094632211476 ], [ 16.240642124234625, 46.762365627971349 ], [ 16.257747022706894, 46.780038967224527 ], [ 16.290458204682409, 46.777093411431792 ], [ 16.296349318066575, 46.778178616150171 ], [ 16.29872643397772, 46.779186306502822 ], [ 16.299489883751107, 46.779509941930257 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-033", "NAME_1": "Šalovci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.311097363000044, 46.797519062000063 ], [ 16.302187948000068, 46.78701609300002 ], [ 16.299489883751107, 46.779509941930257 ], [ 16.29872643397772, 46.779186306502822 ], [ 16.296349318066575, 46.778178616150171 ], [ 16.290458204682409, 46.777093411431792 ], [ 16.257747022706894, 46.780038967224527 ], [ 16.26038252103649, 46.787687078895544 ], [ 16.263173048996975, 46.791407782842896 ], [ 16.266428664051602, 46.801949775261903 ], [ 16.265343459333167, 46.80959788693292 ], [ 16.25883222832465, 46.817917792172352 ], [ 16.244517856913546, 46.827787991022944 ], [ 16.227619663116968, 46.834325060453125 ], [ 16.179486394981154, 46.858468339242449 ], [ 16.272008911000086, 46.863962301000029 ], [ 16.282240845000047, 46.859931539000044 ], [ 16.297392208783378, 46.847032943215709 ], [ 16.297434522785011, 46.84680491831233 ], [ 16.297899610778416, 46.844298611191903 ], [ 16.303067253750726, 46.835591132324851 ], [ 16.303067253750726, 46.822336127210463 ], [ 16.301155225832986, 46.816677557823027 ], [ 16.29588423007317, 46.81016632681451 ], [ 16.29681440605998, 46.807014065446765 ], [ 16.298209670040251, 46.804016831911213 ], [ 16.310560336690173, 46.797789821742867 ], [ 16.311097363000044, 46.797519062000063 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-161", "NAME_1": "Hodoš" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.297392208783378, 46.847032943215709 ], [ 16.301877889000082, 46.843214213000081 ], [ 16.310662883000077, 46.84001027500004 ], [ 16.325338989000073, 46.839441834000084 ], [ 16.329783162000069, 46.834403382000104 ], [ 16.327509400000054, 46.825463359000068 ], [ 16.321824992000103, 46.813267721000059 ], [ 16.31490035000013, 46.802002259000105 ], [ 16.311097363000044, 46.797519062000063 ], [ 16.310560336690173, 46.797789821742867 ], [ 16.298209670040251, 46.804016831911213 ], [ 16.29681440605998, 46.807014065446765 ], [ 16.29588423007317, 46.81016632681451 ], [ 16.301155225832986, 46.816677557823027 ], [ 16.303067253750726, 46.822336127210463 ], [ 16.303067253750726, 46.835591132324851 ], [ 16.297899610778416, 46.844298611191903 ], [ 16.297434522785011, 46.84680491831233 ], [ 16.297392208783378, 46.847032943215709 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-031", "NAME_1": "Gornji Petrovci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.135376424000043, 46.855849101000032 ], [ 16.179486394981154, 46.858468339242449 ], [ 16.227619663116968, 46.834325060453125 ], [ 16.244517856913546, 46.827787991022944 ], [ 16.25883222832465, 46.817917792172352 ], [ 16.265343459333167, 46.80959788693292 ], [ 16.266428664051602, 46.801949775261903 ], [ 16.263173048996975, 46.791407782842896 ], [ 16.26038252103649, 46.787687078895544 ], [ 16.257747022706894, 46.780038967224527 ], [ 16.240642124234625, 46.762365627971349 ], [ 16.232115513420183, 46.757094632211476 ], [ 16.223743931337367, 46.746862698154985 ], [ 16.217852817053824, 46.744382229456278 ], [ 16.210566440588764, 46.745002346181309 ], [ 16.197233921108534, 46.757353013730551 ], [ 16.193358189328933, 46.762262275183843 ], [ 16.203900180848677, 46.781899319198203 ], [ 16.201884800143375, 46.79029673880342 ], [ 16.197854037833565, 46.793629869123151 ], [ 16.191032749361852, 46.796006985034296 ], [ 16.183694696053351, 46.797583116167857 ], [ 16.164471063189012, 46.810476386076346 ], [ 16.16075036014098, 46.817917792172352 ], [ 16.154549188394299, 46.822258612844678 ], [ 16.150053338091084, 46.826547757572939 ], [ 16.136410760248395, 46.82944163742161 ], [ 16.125196974260916, 46.833007310838696 ], [ 16.122871535193156, 46.843368435205093 ], [ 16.130245696000088, 46.856708498000089 ], [ 16.135376424000043, 46.855849101000032 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-056", "NAME_1": "Kuzma" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.094035278000121, 46.862773743 ], [ 16.130245696000088, 46.856708498000089 ], [ 16.122871535193156, 46.843368435205093 ], [ 16.125196974260916, 46.833007310838696 ], [ 16.098841993663086, 46.832077134851886 ], [ 16.092020705191374, 46.83021678287821 ], [ 16.077758009724334, 46.822516995263072 ], [ 16.072435337121078, 46.818796292215097 ], [ 16.056002232217224, 46.816057441097996 ], [ 16.05293554583875, 46.846059852480209 ], [ 16.094035278000121, 46.862773743 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-156", "NAME_1": "Dobrovnik" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.402607056970112, 46.663108786541216 ], [ 16.396652466000148, 46.659142762000087 ], [ 16.377635539000067, 46.652864075000068 ], [ 16.368437133000072, 46.642993876 ], [ 16.372245691985086, 46.636341263538441 ], [ 16.371951939230598, 46.636223455947686 ], [ 16.366991000933922, 46.634233914563481 ], [ 16.347870720857088, 46.615346178483321 ], [ 16.314384393424973, 46.645137641289068 ], [ 16.317484978848654, 46.660769762314658 ], [ 16.327406853643367, 46.676169339343517 ], [ 16.3342281430144, 46.683765774171093 ], [ 16.34073937312354, 46.688881741199395 ], [ 16.351706815017508, 46.685920531807085 ], [ 16.356242302939904, 46.684695950157959 ], [ 16.363890414610921, 46.67485158972903 ], [ 16.373192172680604, 46.670019843540899 ], [ 16.392570835175889, 46.664335435731743 ], [ 16.401872593245571, 46.663198554169924 ], [ 16.402607056970112, 46.663108786541216 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-047", "NAME_1": "Kobilje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.36621637258753, 46.696466831079363 ], [ 16.371434367000091, 46.694928691000101 ], [ 16.390037882000058, 46.694153545000106 ], [ 16.405024048000115, 46.687254741000018 ], [ 16.410501749000105, 46.668367005000093 ], [ 16.402607056970112, 46.663108786541216 ], [ 16.401872593245571, 46.663198554169924 ], [ 16.392570835175889, 46.664335435731743 ], [ 16.373192172680604, 46.670019843540899 ], [ 16.363890414610921, 46.67485158972903 ], [ 16.356242302939904, 46.684695950157959 ], [ 16.363934640571188, 46.694808349925381 ], [ 16.365383073000061, 46.696712468000086 ], [ 16.36621637258753, 46.696466831079363 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-053", "NAME_1": "Kranjska Gora" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.685852877000059, 46.464047231000094 ], [ 13.688445678000107, 46.46775909500009 ], [ 13.689892619000091, 46.493338928000028 ], [ 13.695473673, 46.498635762000063 ], [ 13.699194376000037, 46.504836935000057 ], [ 13.701054728000116, 46.511890768000072 ], [ 13.700951375000102, 46.519745586000013 ], [ 13.716092570000114, 46.518867087000061 ], [ 13.782135051000068, 46.507782492000061 ], [ 13.795777629000071, 46.507885845 ], [ 13.860683228000113, 46.515249736000087 ], [ 13.890862264000106, 46.511787415000057 ], [ 13.98232954900007, 46.481918437000033 ], [ 13.998762654000103, 46.480523174000055 ], [ 14.014921608945087, 46.482530651967977 ], [ 14.014266391680621, 46.468972683242725 ], [ 14.012251010975376, 46.460626939581573 ], [ 14.004654575248423, 46.455459295709886 ], [ 13.999693637851067, 46.452927151067115 ], [ 13.992355583643246, 46.444813951402693 ], [ 13.979488153055797, 46.442230129916538 ], [ 13.972356805322306, 46.436183986901426 ], [ 13.960419548923028, 46.432075711125151 ], [ 13.947242059073744, 46.425719508848204 ], [ 13.918044874571308, 46.407503567235835 ], [ 13.84791995564143, 46.381226101003733 ], [ 13.841718783894748, 46.382182115412263 ], [ 13.824148797429018, 46.397633369284563 ], [ 13.820893182374448, 46.401276557067433 ], [ 13.817327508058042, 46.407555244079219 ], [ 13.81128136594225, 46.412981269469981 ], [ 13.798723992817997, 46.419957587572583 ], [ 13.76735639797937, 46.433083401477745 ], [ 13.750923293075516, 46.438199368506048 ], [ 13.738365919951207, 46.440266425155357 ], [ 13.712579380134287, 46.432256578278441 ], [ 13.702347446077738, 46.430215359151475 ], [ 13.691960483289677, 46.429311022485649 ], [ 13.68699954589232, 46.431739814340915 ], [ 13.69025516094689, 46.453960679841487 ], [ 13.685852877000059, 46.464047231000094 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-006", "NAME_1": "Bovec" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.658783407000044, 46.445124817000035 ], [ 13.67749027500011, 46.452075297000121 ], [ 13.685852877000059, 46.464047231000094 ], [ 13.69025516094689, 46.453960679841487 ], [ 13.68699954589232, 46.431739814340915 ], [ 13.691960483289677, 46.429311022485649 ], [ 13.702347446077738, 46.430215359151475 ], [ 13.712579380134287, 46.432256578278441 ], [ 13.738365919951207, 46.440266425155357 ], [ 13.750923293075516, 46.438199368506048 ], [ 13.76735639797937, 46.433083401477745 ], [ 13.798723992817997, 46.419957587572583 ], [ 13.81128136594225, 46.412981269469981 ], [ 13.817327508058042, 46.407555244079219 ], [ 13.820893182374448, 46.401276557067433 ], [ 13.824148797429018, 46.397633369284563 ], [ 13.841718783894748, 46.382182115412263 ], [ 13.828024530107939, 46.369082139928764 ], [ 13.7641007829248, 46.345078436820359 ], [ 13.749528029095245, 46.335259914813207 ], [ 13.742241651730808, 46.326009832687589 ], [ 13.727358840438114, 46.301670233694324 ], [ 13.671496616075956, 46.294900621166732 ], [ 13.651446160911576, 46.296295885146947 ], [ 13.629432000086695, 46.300533352132447 ], [ 13.584421828304698, 46.299603176145638 ], [ 13.550108676774016, 46.302031968900224 ], [ 13.532435336621461, 46.298001207489733 ], [ 13.52607913614321, 46.294383857229207 ], [ 13.529489779929406, 46.29097321254369 ], [ 13.530264927184646, 46.286218979822024 ], [ 13.527319369593215, 46.281490587320718 ], [ 13.515227085361687, 46.277227281014177 ], [ 13.477038202051347, 46.281025499327313 ], [ 13.44897789911073, 46.287226671073995 ], [ 13.432648146095062, 46.292549342777932 ], [ 13.419005568252373, 46.295469061947642 ], [ 13.403967726429414, 46.303220527305484 ], [ 13.395637648000076, 46.306727928000058 ], [ 13.409806355000086, 46.323607687000035 ], [ 13.423242229000039, 46.344846700000076 ], [ 13.434094279000107, 46.353864238000043 ], [ 13.44732344500008, 46.354846090000095 ], [ 13.45972579000005, 46.359031881000035 ], [ 13.483703654000067, 46.371150004000029 ], [ 13.530005737000067, 46.388332418000104 ], [ 13.554397013000084, 46.405954081000075 ], [ 13.575687703000057, 46.426676331000024 ], [ 13.600182332000117, 46.442644349000048 ], [ 13.634082072000126, 46.445719097000094 ], [ 13.658783407000044, 46.445124817000035 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-046", "NAME_1": "Kobarid" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.41011641500009, 46.20798167 ], [ 13.40164148000008, 46.216663310000072 ], [ 13.39812748200012, 46.230512594000018 ], [ 13.384898316000118, 46.243121644000055 ], [ 13.384794963000104, 46.24322499600008 ], [ 13.384691610000061, 46.243328349000095 ], [ 13.37859379000011, 46.26839141900011 ], [ 13.373012736000106, 46.280276998000048 ], [ 13.365261271000094, 46.290302226000065 ], [ 13.391306193000077, 46.30156768800002 ], [ 13.395637648000076, 46.306727928000058 ], [ 13.403967726429414, 46.303220527305484 ], [ 13.419005568252373, 46.295469061947642 ], [ 13.432648146095062, 46.292549342777932 ], [ 13.44897789911073, 46.287226671073995 ], [ 13.477038202051347, 46.281025499327313 ], [ 13.515227085361687, 46.277227281014177 ], [ 13.527319369593215, 46.281490587320718 ], [ 13.530264927184646, 46.286218979822024 ], [ 13.529489779929406, 46.29097321254369 ], [ 13.52607913614321, 46.294383857229207 ], [ 13.532435336621461, 46.298001207489733 ], [ 13.550108676774016, 46.302031968900224 ], [ 13.584421828304698, 46.299603176145638 ], [ 13.629432000086695, 46.300533352132447 ], [ 13.651446160911576, 46.296295885146947 ], [ 13.671496616075956, 46.294900621166732 ], [ 13.727358840438114, 46.301670233694324 ], [ 13.736660596709157, 46.286115627933839 ], [ 13.726583693182874, 46.285908922358828 ], [ 13.718780551880968, 46.28443614401283 ], [ 13.709013705817881, 46.277382311544443 ], [ 13.702037387715279, 46.26880402298724 ], [ 13.695216099243567, 46.25051056610971 ], [ 13.692425571283081, 46.238676663397257 ], [ 13.68529422444891, 46.233999945940752 ], [ 13.667310825034519, 46.233612372313132 ], [ 13.659507683732613, 46.232268785176245 ], [ 13.648190544957686, 46.226894435729605 ], [ 13.643694695553734, 46.225550849492095 ], [ 13.639663934143243, 46.225938422220395 ], [ 13.634237908752482, 46.227643744563125 ], [ 13.629276971355125, 46.224233099877608 ], [ 13.624005974695933, 46.218936265696072 ], [ 13.621990593990688, 46.210306301194805 ], [ 13.622765741245928, 46.204363511866575 ], [ 13.622765741245928, 46.200487779187654 ], [ 13.636873407082078, 46.191082669229786 ], [ 13.627519972168955, 46.181884263947609 ], [ 13.627366323896695, 46.18173316345468 ], [ 13.613928264000066, 46.183538717000047 ], [ 13.584472697000137, 46.181316631000058 ], [ 13.559047892000137, 46.184107158000117 ], [ 13.528972208000084, 46.204829407000048 ], [ 13.510161988000078, 46.213976136000028 ], [ 13.482256713000083, 46.217903545000084 ], [ 13.468304077000084, 46.22343292300009 ], [ 13.438331746000131, 46.224879863000083 ], [ 13.422828816000049, 46.228600566000111 ], [ 13.437401570000105, 46.210927226000095 ], [ 13.41011641500009, 46.20798167 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-128", "NAME_1": "Tolmin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.64107145100013, 46.171405145000037 ], [ 13.637389363000125, 46.18038645500009 ], [ 13.627366323896695, 46.18173316345468 ], [ 13.627519972168955, 46.181884263947609 ], [ 13.636873407082078, 46.191082669229786 ], [ 13.622765741245928, 46.200487779187654 ], [ 13.622765741245928, 46.204363511866575 ], [ 13.621990593990688, 46.210306301194805 ], [ 13.624005974695933, 46.218936265696072 ], [ 13.629276971355125, 46.224233099877608 ], [ 13.634237908752482, 46.227643744563125 ], [ 13.639663934143243, 46.225938422220395 ], [ 13.643694695553734, 46.225550849492095 ], [ 13.648190544957686, 46.226894435729605 ], [ 13.659507683732613, 46.232268785176245 ], [ 13.667310825034519, 46.233612372313132 ], [ 13.68529422444891, 46.233999945940752 ], [ 13.692425571283081, 46.238676663397257 ], [ 13.695216099243567, 46.25051056610971 ], [ 13.702037387715279, 46.26880402298724 ], [ 13.709013705817881, 46.277382311544443 ], [ 13.718780551880968, 46.28443614401283 ], [ 13.726583693182874, 46.285908922358828 ], [ 13.736660596709157, 46.286115627933839 ], [ 13.770767042664886, 46.261982734515584 ], [ 13.820893182374448, 46.241803087242658 ], [ 13.865748325424875, 46.231700344395335 ], [ 13.880631137616888, 46.230124213261831 ], [ 13.894945509927311, 46.229995022052606 ], [ 13.997006462678087, 46.239400132909793 ], [ 13.997006462678087, 46.239296780122288 ], [ 14.005119663241828, 46.226558538945369 ], [ 14.004964633610939, 46.219866440783619 ], [ 13.989254998219565, 46.194596665803488 ], [ 13.957939080224378, 46.178370266474587 ], [ 13.923625928693639, 46.170722153904251 ], [ 13.906572707064754, 46.163539130226638 ], [ 13.893550245947097, 46.154211533735293 ], [ 13.889829542899065, 46.147932848522089 ], [ 13.886212191739219, 46.140026354432678 ], [ 13.88610883985109, 46.134548652198532 ], [ 13.89029463089247, 46.124833482079509 ], [ 13.899596388062832, 46.113128771475601 ], [ 13.901611768768078, 46.10519643806515 ], [ 13.901456740036508, 46.097444972707308 ], [ 13.903782179104269, 46.08860830353035 ], [ 13.906417677433865, 46.082872218877753 ], [ 13.907812941414079, 46.076386827190277 ], [ 13.90688276542727, 46.073208727400811 ], [ 13.894945509927311, 46.067653509901561 ], [ 13.887659132562931, 46.068816229885101 ], [ 13.88610883985109, 46.066594142705469 ], [ 13.882181431228048, 46.063286851706835 ], [ 13.876910434568913, 46.062847602135093 ], [ 13.867453647767604, 46.064837145317995 ], [ 13.863577915088683, 46.063157660497609 ], [ 13.860942416759087, 46.058739326358818 ], [ 13.862027622376843, 46.055406196039087 ], [ 13.864818149438008, 46.052408963402911 ], [ 13.87101932118469, 46.049902656282541 ], [ 13.873654818614966, 46.04680206995954 ], [ 13.874584994601832, 46.042978014124003 ], [ 13.87256961389653, 46.041169338993768 ], [ 13.868228794123524, 46.040807603787869 ], [ 13.867143589405089, 46.037164415105622 ], [ 13.86776370613012, 46.031815904080702 ], [ 13.86776370613012, 46.02582143790903 ], [ 13.865903355055764, 46.006985379571574 ], [ 13.838308140108552, 46.019206855012328 ], [ 13.830815057169161, 46.025201321183999 ], [ 13.820428094381043, 46.036001695122081 ], [ 13.81128136594225, 46.050006008170726 ], [ 13.807870721256791, 46.062304998876584 ], [ 13.80709557490087, 46.074345608063311 ], [ 13.80802574998836, 46.081373603009354 ], [ 13.799964227167322, 46.103646145353309 ], [ 13.792832879433831, 46.108607082750666 ], [ 13.780740594302983, 46.108968817956566 ], [ 13.76890669069121, 46.101604926226344 ], [ 13.70854861782442, 46.128037421190015 ], [ 13.704207798051414, 46.133334256270871 ], [ 13.696921420686976, 46.136253974541262 ], [ 13.68684451716075, 46.146020819705029 ], [ 13.684984165187075, 46.153462225801036 ], [ 13.666535678678599, 46.175166327364082 ], [ 13.64107145100013, 46.171405145000037 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-044", "NAME_1": "Kanal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.522585296973887, 46.075298023385074 ], [ 13.616408732000139, 46.125040995000077 ], [ 13.645037475, 46.16173126300005 ], [ 13.64107145100013, 46.171405145000037 ], [ 13.666535678678599, 46.175166327364082 ], [ 13.684984165187075, 46.153462225801036 ], [ 13.68684451716075, 46.146020819705029 ], [ 13.696921420686976, 46.136253974541262 ], [ 13.704207798051414, 46.133334256270871 ], [ 13.70854861782442, 46.128037421190015 ], [ 13.76890669069121, 46.101604926226344 ], [ 13.766891309985965, 46.08189036694688 ], [ 13.760690138239283, 46.075637519256077 ], [ 13.751698439431436, 46.064578762000224 ], [ 13.739761183032158, 46.058170885577908 ], [ 13.732164748204525, 46.057886663838417 ], [ 13.70513797403828, 46.065767320405484 ], [ 13.681418490870669, 46.066955877911425 ], [ 13.666845737041115, 46.061478176576543 ], [ 13.654856804697772, 46.054708564048951 ], [ 13.632842644772211, 46.031118272090566 ], [ 13.625401238676204, 46.02732005557607 ], [ 13.624626092320284, 46.023599352528095 ], [ 13.638268670162972, 46.01073192014195 ], [ 13.643539665922845, 46.0047891299144 ], [ 13.640594110130053, 46.002101956540059 ], [ 13.636563347820243, 46.001120103709809 ], [ 13.632532586409695, 46.001481838915709 ], [ 13.629121941724236, 46.0036522492519 ], [ 13.625246209045315, 46.00652029157817 ], [ 13.619045037298633, 46.010060126573535 ], [ 13.615169304619712, 46.011636257707096 ], [ 13.60395551863229, 46.012928168000542 ], [ 13.587212355365921, 46.028043525088606 ], [ 13.571089307925206, 46.038559679085893 ], [ 13.562097609117359, 46.04928253775887 ], [ 13.556516554095708, 46.058687649515377 ], [ 13.546077915363469, 46.066180732454825 ], [ 13.531815219896487, 46.070314845753501 ], [ 13.522585296973887, 46.075298023385074 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-007", "NAME_1": "Brda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.461792846000037, 46.006391907000122 ], [ 13.47708907000009, 46.016055400000042 ], [ 13.482256713000083, 46.0184325150001 ], [ 13.490008179000085, 46.025563863000045 ], [ 13.492798706000144, 46.032488505000018 ], [ 13.490318237000082, 46.038948059000077 ], [ 13.482256713000083, 46.044839173000085 ], [ 13.505097697000082, 46.066026510000128 ], [ 13.522585296973887, 46.075298023385074 ], [ 13.531815219896487, 46.070314845753501 ], [ 13.546077915363469, 46.066180732454825 ], [ 13.556516554095708, 46.058687649515377 ], [ 13.562097609117359, 46.04928253775887 ], [ 13.571089307925206, 46.038559679085893 ], [ 13.587212355365921, 46.028043525088606 ], [ 13.60395551863229, 46.012928168000542 ], [ 13.626176385032124, 45.996624254305857 ], [ 13.610983513578276, 45.991146552071712 ], [ 13.601475050832903, 45.985048733112535 ], [ 13.600734871916814, 45.984574052950165 ], [ 13.571656942000061, 45.979830221000029 ], [ 13.539410848000102, 45.969029847000073 ], [ 13.509438517000149, 45.967427877000048 ], [ 13.482256713000083, 45.989235332000064 ], [ 13.481843302000073, 45.990372213000072 ], [ 13.481223186000108, 45.991354065000039 ], [ 13.480396362000079, 45.992284241000092 ], [ 13.47946618600011, 45.993111064000018 ], [ 13.474815307000142, 45.995746562000036 ], [ 13.461792846000037, 46.006391907000122 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-084", "NAME_1": "Nova Goriška" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.615325176000084, 45.945912448000016 ], [ 13.622816610000086, 45.966394349000055 ], [ 13.605866740000067, 45.985411276000022 ], [ 13.600734871916814, 45.984574052950165 ], [ 13.601475050832903, 45.985048733112535 ], [ 13.610983513578276, 45.991146552071712 ], [ 13.626176385032124, 45.996624254305857 ], [ 13.60395551863229, 46.012928168000542 ], [ 13.615169304619712, 46.011636257707096 ], [ 13.619045037298633, 46.010060126573535 ], [ 13.625246209045315, 46.00652029157817 ], [ 13.629121941724236, 46.0036522492519 ], [ 13.632532586409695, 46.001481838915709 ], [ 13.636563347820243, 46.001120103709809 ], [ 13.640594110130053, 46.002101956540059 ], [ 13.643539665922845, 46.0047891299144 ], [ 13.638268670162972, 46.01073192014195 ], [ 13.624626092320284, 46.023599352528095 ], [ 13.625401238676204, 46.02732005557607 ], [ 13.632842644772211, 46.031118272090566 ], [ 13.654856804697772, 46.054708564048951 ], [ 13.666845737041115, 46.061478176576543 ], [ 13.681418490870669, 46.066955877911425 ], [ 13.70513797403828, 46.065767320405484 ], [ 13.732164748204525, 46.057886663838417 ], [ 13.739761183032158, 46.058170885577908 ], [ 13.751698439431436, 46.064578762000224 ], [ 13.760690138239283, 46.075637519256077 ], [ 13.766891309985965, 46.08189036694688 ], [ 13.76890669069121, 46.101604926226344 ], [ 13.780740594302983, 46.108968817956566 ], [ 13.792832879433831, 46.108607082750666 ], [ 13.799964227167322, 46.103646145353309 ], [ 13.80802574998836, 46.081373603009354 ], [ 13.80709557490087, 46.074345608063311 ], [ 13.807870721256791, 46.062304998876584 ], [ 13.81128136594225, 46.050006008170726 ], [ 13.820428094381043, 46.036001695122081 ], [ 13.830815057169161, 46.025201321183999 ], [ 13.838308140108552, 46.019206855012328 ], [ 13.865903355055764, 46.006985379571574 ], [ 13.852260776313756, 46.002050278797299 ], [ 13.844044223861829, 45.993420315195351 ], [ 13.844044223861829, 45.983705145975705 ], [ 13.798879022448887, 45.960864162850783 ], [ 13.774384392925356, 45.931977036710862 ], [ 13.75309370341165, 45.914277859035963 ], [ 13.74658247240319, 45.912650051058961 ], [ 13.732784864929556, 45.905854601009025 ], [ 13.733870069647992, 45.90324494110115 ], [ 13.738831007944668, 45.901798001176815 ], [ 13.747047560396595, 45.898284002804473 ], [ 13.755109084116896, 45.891385199966976 ], [ 13.76890669069121, 45.88531321942952 ], [ 13.786941766049665, 45.872730007883547 ], [ 13.791282585822671, 45.868828436782906 ], [ 13.794848260139077, 45.864952704103985 ], [ 13.797948845562757, 45.862601427513823 ], [ 13.800739372623923, 45.858544826782293 ], [ 13.804925163665359, 45.856012682139522 ], [ 13.820583123112613, 45.849708156706015 ], [ 13.823218621442209, 45.847486070425759 ], [ 13.833967319436226, 45.835497138082417 ], [ 13.811901482667281, 45.842008369090934 ], [ 13.801049431885758, 45.841026516260683 ], [ 13.779655388685228, 45.840949001894899 ], [ 13.762395460582013, 45.844488836890264 ], [ 13.70916873544877, 45.865004380947425 ], [ 13.679248081433798, 45.86851837842039 ], [ 13.665295444329274, 45.868027452005265 ], [ 13.639198846149839, 45.874306139017051 ], [ 13.629276971355125, 45.879008693996013 ], [ 13.620440301278848, 45.886036688941999 ], [ 13.620595330010474, 45.889214788731465 ], [ 13.62555626830715, 45.891152655970245 ], [ 13.633927850389966, 45.891695258329491 ], [ 13.639508905411617, 45.892625434316301 ], [ 13.646950310608361, 45.897198798086038 ], [ 13.666535678678599, 45.910066230472125 ], [ 13.677232699829233, 45.912650051058961 ], [ 13.682503695589048, 45.911719875971471 ], [ 13.685139193918644, 45.912960110320796 ], [ 13.686379429167289, 45.915285549388557 ], [ 13.687309605154155, 45.922210191547094 ], [ 13.68622439863708, 45.925750027441779 ], [ 13.682658726119314, 45.925569160288489 ], [ 13.679248081433798, 45.925879217751685 ], [ 13.676612583104202, 45.926809393738495 ], [ 13.674442172768067, 45.92843720171544 ], [ 13.672426792062765, 45.929393216124026 ], [ 13.669481235370711, 45.92980662727399 ], [ 13.665450473960163, 45.929496568012155 ], [ 13.660489535663544, 45.929961656005617 ], [ 13.655786980684582, 45.931822007979235 ], [ 13.646640252245845, 45.938074856569358 ], [ 13.639353874881408, 45.940813706787139 ], [ 13.632997674403157, 45.941795558718013 ], [ 13.615325176000084, 45.945912448000016 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-183", "NAME_1": "Šempeter-Vrtojba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.599306242000097, 45.912327499000028 ], [ 13.608243856000115, 45.926551819000039 ], [ 13.615325176000084, 45.945912448000016 ], [ 13.632997674403157, 45.941795558718013 ], [ 13.639353874881408, 45.940813706787139 ], [ 13.646640252245845, 45.938074856569358 ], [ 13.655786980684582, 45.931822007979235 ], [ 13.660489535663544, 45.929961656005617 ], [ 13.665450473960163, 45.929496568012155 ], [ 13.669481235370711, 45.92980662727399 ], [ 13.672426792062765, 45.929393216124026 ], [ 13.674442172768067, 45.92843720171544 ], [ 13.676612583104202, 45.926809393738495 ], [ 13.679248081433798, 45.925879217751685 ], [ 13.682658726119314, 45.925569160288489 ], [ 13.68622439863708, 45.925750027441779 ], [ 13.687309605154155, 45.922210191547094 ], [ 13.686379429167289, 45.915285549388557 ], [ 13.685139193918644, 45.912960110320796 ], [ 13.682503695589048, 45.911719875971471 ], [ 13.677232699829233, 45.912650051058961 ], [ 13.666535678678599, 45.910066230472125 ], [ 13.646950310608361, 45.897198798086038 ], [ 13.613619011907872, 45.90402008745707 ], [ 13.599306242000097, 45.912327499000028 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-075", "NAME_1": "Miren-Kostanjevica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.574172201885574, 45.819028056699437 ], [ 13.56597253400011, 45.830330303 ], [ 13.569279826000127, 45.864540101000088 ], [ 13.599306242000097, 45.912327499000028 ], [ 13.613619011907872, 45.90402008745707 ], [ 13.646950310608361, 45.897198798086038 ], [ 13.639508905411617, 45.892625434316301 ], [ 13.633927850389966, 45.891695258329491 ], [ 13.62555626830715, 45.891152655970245 ], [ 13.620595330010474, 45.889214788731465 ], [ 13.620440301278848, 45.886036688941999 ], [ 13.629276971355125, 45.879008693996013 ], [ 13.639198846149839, 45.874306139017051 ], [ 13.665295444329274, 45.868027452005265 ], [ 13.679248081433798, 45.86851837842039 ], [ 13.70916873544877, 45.865004380947425 ], [ 13.706378208387605, 45.846426703229724 ], [ 13.700642123735008, 45.842886868234359 ], [ 13.693975863994922, 45.836298122860057 ], [ 13.682038607595643, 45.831673082246937 ], [ 13.670101352995005, 45.822603868173928 ], [ 13.648965692212926, 45.820045885109494 ], [ 13.592018263132331, 45.821182765771994 ], [ 13.574172201885574, 45.819028056699437 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-049", "NAME_1": "Komen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.588513778236168, 45.806482477016267 ], [ 13.581268758000078, 45.809246318000064 ], [ 13.574172201885574, 45.819028056699437 ], [ 13.592018263132331, 45.821182765771994 ], [ 13.648965692212926, 45.820045885109494 ], [ 13.670101352995005, 45.822603868173928 ], [ 13.682038607595643, 45.831673082246937 ], [ 13.693975863994922, 45.836298122860057 ], [ 13.700642123735008, 45.842886868234359 ], [ 13.706378208387605, 45.846426703229724 ], [ 13.70916873544877, 45.865004380947425 ], [ 13.762395460582013, 45.844488836890264 ], [ 13.779655388685228, 45.840949001894899 ], [ 13.801049431885758, 45.841026516260683 ], [ 13.811901482667281, 45.842008369090934 ], [ 13.833967319436226, 45.835497138082417 ], [ 13.857996860067033, 45.82650543927457 ], [ 13.86373294382031, 45.826195380012734 ], [ 13.88590213427608, 45.82865001118904 ], [ 13.902541944754944, 45.810227363102285 ], [ 13.85272586430716, 45.799582017895773 ], [ 13.75309370341165, 45.790874539028721 ], [ 13.731854688942747, 45.791339627022126 ], [ 13.725808546826954, 45.789763494989302 ], [ 13.705758090763254, 45.779738268306403 ], [ 13.699908416000142, 45.770523736000072 ], [ 13.660333699000148, 45.792038066000075 ], [ 13.643590535000016, 45.795655416000059 ], [ 13.609174032000055, 45.798600973000063 ], [ 13.588513778236168, 45.806482477016267 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-111", "NAME_1": "Sežana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.89364052978658, 45.633758406325342 ], [ 13.893136027000111, 45.634683329000026 ], [ 13.884144327000087, 45.635148417000053 ], [ 13.869158163000094, 45.641142884 ], [ 13.858409465000079, 45.649359436000012 ], [ 13.778724406000038, 45.743410543000081 ], [ 13.70947798600011, 45.765321351000026 ], [ 13.699908416000142, 45.770523736000072 ], [ 13.705758090763254, 45.779738268306403 ], [ 13.725808546826954, 45.789763494989302 ], [ 13.731854688942747, 45.791339627022126 ], [ 13.75309370341165, 45.790874539028721 ], [ 13.85272586430716, 45.799582017895773 ], [ 13.902541944754944, 45.810227363102285 ], [ 13.931377394051481, 45.793225816518202 ], [ 13.983518913566968, 45.772942817357091 ], [ 13.989875115843915, 45.765010483946639 ], [ 13.975612420376876, 45.74847402625528 ], [ 13.964450311232838, 45.744339911157965 ], [ 13.956698845874996, 45.739973252963239 ], [ 13.955613641156617, 45.733281154801432 ], [ 13.959644402567108, 45.722093207235673 ], [ 13.965070427957869, 45.714109198780477 ], [ 13.967860955019034, 45.705272528704199 ], [ 13.962434929628273, 45.698115343448308 ], [ 13.936493361079727, 45.67039093729187 ], [ 13.943676384757339, 45.661140855166309 ], [ 13.938353713053402, 45.642640692713769 ], [ 13.908898146132515, 45.643777574275589 ], [ 13.89364052978658, 45.633758406325342 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-105", "NAME_1": "Rogašovci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.028440945000114, 46.83694743300002 ], [ 16.032023560000084, 46.837555644000062 ], [ 16.05293554583875, 46.846059852480209 ], [ 16.056002232217224, 46.816057441097996 ], [ 16.051661410645579, 46.775672309029801 ], [ 16.052126498638984, 46.77009125400815 ], [ 16.063598667044857, 46.764174303101584 ], [ 16.05553714422382, 46.755957749750337 ], [ 16.024841342953607, 46.758954983285832 ], [ 16.018485141575979, 46.761642158458812 ], [ 16.007116326856988, 46.77027212206076 ], [ 16.004945915621477, 46.774044501052856 ], [ 15.987737664361703, 46.775827337761427 ], [ 15.97098466500006, 46.775049879000093 ], [ 15.971252075000052, 46.778076070000097 ], [ 15.978176717000053, 46.809133607000049 ], [ 15.977349894000014, 46.816213277000074 ], [ 15.972905721000103, 46.818435364000052 ], [ 15.971975545000049, 46.820631612000071 ], [ 15.981690715000099, 46.827685446 ], [ 15.987581828000089, 46.830010885000021 ], [ 16.028440945000114, 46.83694743300002 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-152", "NAME_1": "Cankova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.01672257900006, 46.670691342000012 ], [ 16.014556925000107, 46.693714295000078 ], [ 16.003291463000068, 46.709191386000086 ], [ 15.982000773000067, 46.71854482000002 ], [ 15.970528606000073, 46.74301361100008 ], [ 15.969701782000129, 46.760531922000027 ], [ 15.97098466500006, 46.775049879000093 ], [ 15.987737664361703, 46.775827337761427 ], [ 16.004945915621477, 46.774044501052856 ], [ 16.007116326856988, 46.77027212206076 ], [ 16.018485141575979, 46.761642158458812 ], [ 16.024841342953607, 46.758954983285832 ], [ 16.05553714422382, 46.755957749750337 ], [ 16.05786258329158, 46.735364692226767 ], [ 16.056467319311309, 46.728930976483355 ], [ 16.053366732988309, 46.719810086466282 ], [ 16.059102816741586, 46.70919057878217 ], [ 16.066544223736912, 46.704332994172319 ], [ 16.075122511394795, 46.701309923114422 ], [ 16.084114211101962, 46.699604600771693 ], [ 16.092330762654569, 46.694927883315131 ], [ 16.108298781363658, 46.690380357067795 ], [ 16.103027784704466, 46.676789456068491 ], [ 16.104423048684737, 46.67157013625274 ], [ 16.108453810095227, 46.661544907771258 ], [ 16.114034865116935, 46.656454780063996 ], [ 16.118685744151776, 46.650744533833119 ], [ 16.123026563924782, 46.643871568518023 ], [ 16.120391065595186, 46.636946926359542 ], [ 16.110314162068903, 46.623872789297764 ], [ 16.067112663618502, 46.644336656511484 ], [ 16.042049595112701, 46.662681790232398 ], [ 16.041739535850866, 46.662733466176519 ], [ 16.027838575589783, 46.665058906143599 ], [ 16.01672257900006, 46.670691342000012 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-029", "NAME_1": "Gornja Radgona" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.967600178096905, 46.694554607004314 ], [ 15.986961710000116, 46.692189840000069 ], [ 15.997917114000103, 46.686918844000033 ], [ 16.016593059000115, 46.670756969000038 ], [ 16.01672257900006, 46.670691342000012 ], [ 16.027838575589783, 46.665058906143599 ], [ 16.041739535850866, 46.662733466176519 ], [ 16.007736443582019, 46.63283865058321 ], [ 16.006806267595152, 46.621392319699794 ], [ 16.013627556966185, 46.593693752864397 ], [ 15.978280876661131, 46.585968125928218 ], [ 15.95590498242899, 46.588216051529514 ], [ 15.933270704879135, 46.596406765559777 ], [ 15.9163725110825, 46.610798652235985 ], [ 15.913581984021334, 46.618550116694507 ], [ 15.913271925658819, 46.624079494872774 ], [ 15.928464797112667, 46.633484604830642 ], [ 15.931100295442263, 46.638264675074652 ], [ 15.927999709119263, 46.639504910323353 ], [ 15.922883742091017, 46.640719306250958 ], [ 15.918387891787745, 46.639944159895038 ], [ 15.913271925658819, 46.639659939054923 ], [ 15.909241164248328, 46.639840807107532 ], [ 15.904383578739157, 46.641649482237767 ], [ 15.900662875691125, 46.642114570231229 ], [ 15.888105502566873, 46.645886949223325 ], [ 15.888570590560278, 46.662785143019903 ], [ 15.911257292290202, 46.66363270098833 ], [ 15.932115839574294, 46.665177778531643 ], [ 15.946794076685251, 46.674448244690723 ], [ 15.967600178096905, 46.694554607004314 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-195", "NAME_1": "Apace" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.850742635000103, 46.724487611000043 ], [ 15.878544555000076, 46.720715231000028 ], [ 15.946344034000077, 46.697150777 ], [ 15.967600178096905, 46.694554607004314 ], [ 15.946794076685251, 46.674448244690723 ], [ 15.932115839574294, 46.665177778531643 ], [ 15.911257292290202, 46.66363270098833 ], [ 15.888570590560278, 46.662785143019903 ], [ 15.876788363791945, 46.668366197142234 ], [ 15.858804966176251, 46.67159597377514 ], [ 15.827282341706677, 46.686375434078968 ], [ 15.81829064289883, 46.696168118563776 ], [ 15.804338005794307, 46.699759630402582 ], [ 15.786612989697687, 46.709991563559811 ], [ 15.784609909919368, 46.71219950350428 ], [ 15.822940714000055, 46.722833964000088 ], [ 15.850742635000103, 46.724487611000043 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-118", "NAME_1": "Šentilj" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.72868290200006, 46.702990215000099 ], [ 15.755141235000053, 46.704023743000064 ], [ 15.784609909919368, 46.71219950350428 ], [ 15.786612989697687, 46.709991563559811 ], [ 15.804338005794307, 46.699759630402582 ], [ 15.803872917800902, 46.682525539821768 ], [ 15.799997186021301, 46.676272691231702 ], [ 15.799067010034491, 46.670484931534361 ], [ 15.792814162343689, 46.665679022868574 ], [ 15.792504103081853, 46.660873115102163 ], [ 15.79441613099965, 46.654723619299546 ], [ 15.80015221475287, 46.646868801154199 ], [ 15.77839643724576, 46.648160712346964 ], [ 15.776226026909626, 46.645266832498294 ], [ 15.773280470217514, 46.643277289315449 ], [ 15.770644971887918, 46.634259752085882 ], [ 15.760723097093262, 46.644129950936474 ], [ 15.75622724768931, 46.64769562435356 ], [ 15.752816603003794, 46.651984768182501 ], [ 15.748940871224193, 46.655240383237071 ], [ 15.744445020920978, 46.657565823204152 ], [ 15.738812289955206, 46.662113349451488 ], [ 15.73808882044267, 46.664645494094259 ], [ 15.737572055605881, 46.667591050786314 ], [ 15.7352466156388, 46.67043325469092 ], [ 15.730595736603959, 46.67332713543891 ], [ 15.716488070767809, 46.676117662500076 ], [ 15.704550816167227, 46.675471707353381 ], [ 15.698659701883741, 46.676866970434332 ], [ 15.694163853379109, 46.676789456068491 ], [ 15.691528355049513, 46.676401883340247 ], [ 15.687962680733108, 46.673172104908701 ], [ 15.685172152772623, 46.665782376555399 ], [ 15.678454217088415, 46.657152411154811 ], [ 15.676748894745685, 46.652268989022616 ], [ 15.677058954007521, 46.649943549055536 ], [ 15.677834100363441, 46.648935858702885 ], [ 15.675043573302275, 46.64769562435356 ], [ 15.67240807497268, 46.646041978854214 ], [ 15.645743036012277, 46.642760525377923 ], [ 15.622436964894007, 46.666712550743625 ], [ 15.621745271000123, 46.678174918000067 ], [ 15.626983684000038, 46.680872701000098 ], [ 15.632978150000042, 46.689631857000066 ], [ 15.632874796000124, 46.702473450000056 ], [ 15.635975382000055, 46.717562968000053 ], [ 15.652098429000148, 46.71081919300012 ], [ 15.72868290200006, 46.702990215000099 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-055", "NAME_1": "Kungota" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.603729288000096, 46.67301788400006 ], [ 15.61664839700012, 46.675550028000046 ], [ 15.621745271000123, 46.678174918000067 ], [ 15.622436964894007, 46.666712550743625 ], [ 15.645743036012277, 46.642760525377923 ], [ 15.664346551252322, 46.603563950815669 ], [ 15.647138299093228, 46.594081326492017 ], [ 15.630860222920944, 46.602530422940617 ], [ 15.627294548604539, 46.609661769774846 ], [ 15.613755324448675, 46.618291734276113 ], [ 15.605383742365802, 46.622064114167529 ], [ 15.5984074242632, 46.6280585803392 ], [ 15.590810987636928, 46.63038402030628 ], [ 15.570760531573285, 46.62997060825694 ], [ 15.536809116147765, 46.636275132791127 ], [ 15.520308137610471, 46.647720171348794 ], [ 15.520840292000088, 46.649608460000096 ], [ 15.530658814000049, 46.663845317000053 ], [ 15.545955037000112, 46.671881002000035 ], [ 15.567349080000014, 46.675756735 ], [ 15.588639771000089, 46.675963440000046 ], [ 15.603729288000096, 46.67301788400006 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-070", "NAME_1": "Maribor" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.513939450000123, 46.632545221000029 ], [ 15.517636353000114, 46.638239645000013 ], [ 15.520308137610471, 46.647720171348794 ], [ 15.536809116147765, 46.636275132791127 ], [ 15.570760531573285, 46.62997060825694 ], [ 15.590810987636928, 46.63038402030628 ], [ 15.5984074242632, 46.6280585803392 ], [ 15.605383742365802, 46.622064114167529 ], [ 15.613755324448675, 46.618291734276113 ], [ 15.627294548604539, 46.609661769774846 ], [ 15.630860222920944, 46.602530422940617 ], [ 15.647138299093228, 46.594081326492017 ], [ 15.679849481068686, 46.592815252821651 ], [ 15.69896976114552, 46.579482734240742 ], [ 15.720673861809246, 46.569302477027691 ], [ 15.744755080182813, 46.568527329772451 ], [ 15.754676954977469, 46.573281562494117 ], [ 15.760413038730746, 46.567597153785584 ], [ 15.763668653785317, 46.565013333198749 ], [ 15.765684035389882, 46.561292630150717 ], [ 15.769249708807024, 46.559406439755378 ], [ 15.75374677899066, 46.546978257840294 ], [ 15.73808882044267, 46.532663886429191 ], [ 15.723154331407272, 46.52708283140754 ], [ 15.720828892339512, 46.523620509878583 ], [ 15.720053745084272, 46.521295070810822 ], [ 15.721293980332916, 46.518452866906273 ], [ 15.724394565756597, 46.5135436063523 ], [ 15.731680942221715, 46.504758613119463 ], [ 15.69648929244687, 46.512148342372086 ], [ 15.608484327789483, 46.516644191775981 ], [ 15.563784214370003, 46.50987457924839 ], [ 15.550296665258884, 46.518013618233852 ], [ 15.560373568785167, 46.562119452450759 ], [ 15.548591342916154, 46.572248032820426 ], [ 15.548591342916154, 46.578707586985502 ], [ 15.547041050204314, 46.588112697842689 ], [ 15.541925083176011, 46.592815252821651 ], [ 15.537429232872796, 46.595011502478826 ], [ 15.532003208381354, 46.596742662343956 ], [ 15.527972446071487, 46.600747586232103 ], [ 15.524406772654402, 46.606380317197875 ], [ 15.524716831016917, 46.613847560816282 ], [ 15.520220981613022, 46.627205918718175 ], [ 15.513939450000123, 46.632545221000029 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-178", "NAME_1": "Selnica ob Dravi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.462652628000058, 46.614649353000104 ], [ 15.492624959000096, 46.618292542000077 ], [ 15.511228475000081, 46.628369446000121 ], [ 15.513939450000123, 46.632545221000029 ], [ 15.520220981613022, 46.627205918718175 ], [ 15.524716831016917, 46.613847560816282 ], [ 15.524406772654402, 46.606380317197875 ], [ 15.527972446071487, 46.600747586232103 ], [ 15.532003208381354, 46.596742662343956 ], [ 15.537429232872796, 46.595011502478826 ], [ 15.541925083176011, 46.592815252821651 ], [ 15.547041050204314, 46.588112697842689 ], [ 15.548591342916154, 46.578707586985502 ], [ 15.548591342916154, 46.572248032820426 ], [ 15.560373568785167, 46.562119452450759 ], [ 15.495984735407205, 46.537754015035716 ], [ 15.482807244658602, 46.534498399081826 ], [ 15.458105909560061, 46.538606675757478 ], [ 15.459656203171221, 46.550027167319911 ], [ 15.461723259820587, 46.568268948253319 ], [ 15.45748579283503, 46.576640530336192 ], [ 15.451129592356779, 46.581084702896703 ], [ 15.443378126998937, 46.58470205315723 ], [ 15.440432570306882, 46.590334785022264 ], [ 15.434851515285175, 46.592453518515015 ], [ 15.434851515285175, 46.596949367918967 ], [ 15.436401807997015, 46.602375393309728 ], [ 15.439657423950962, 46.609661769774846 ], [ 15.441207716662802, 46.619583645468822 ], [ 15.435471632909525, 46.627076728408269 ], [ 15.435380874000089, 46.627195287000049 ], [ 15.440018352000038, 46.624390361000039 ], [ 15.462652628000058, 46.614649353000104 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-101", "NAME_1": "Radlje ob Dravi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.172556750993238, 46.64135951293116 ], [ 15.204890585000044, 46.638963115000095 ], [ 15.332783733982126, 46.643579675561568 ], [ 15.332583856060069, 46.635034898441802 ], [ 15.329173211374609, 46.619221910262922 ], [ 15.320956658922682, 46.614622708071522 ], [ 15.304678581851078, 46.609300035468266 ], [ 15.297857293379366, 46.60780141870049 ], [ 15.284473097055752, 46.598577174996592 ], [ 15.270365431219659, 46.572583930503981 ], [ 15.220239292409417, 46.550853990519215 ], [ 15.214813267018656, 46.547546699520524 ], [ 15.210317416715384, 46.543257554792319 ], [ 15.209077183265379, 46.535609443121302 ], [ 15.199310337202292, 46.529201564900291 ], [ 15.180551792331357, 46.533955796722637 ], [ 15.17553917809056, 46.542559922802184 ], [ 15.176055942028086, 46.54749502177782 ], [ 15.178226353263597, 46.554109605573785 ], [ 15.183652377755038, 46.560801702836272 ], [ 15.187373080803013, 46.568837389034229 ], [ 15.186752964078039, 46.573126532863171 ], [ 15.183807407385927, 46.577260647061166 ], [ 15.185977816822799, 46.578397529522363 ], [ 15.189543491139204, 46.578294175835538 ], [ 15.195899691617456, 46.579482734240742 ], [ 15.201635776270052, 46.581963202040129 ], [ 15.209852328721979, 46.591936754577546 ], [ 15.211557651064709, 46.597466131856493 ], [ 15.211557651064709, 46.601651922897872 ], [ 15.209232211996948, 46.604830024486034 ], [ 15.203186068981893, 46.608240668272174 ], [ 15.197294955597727, 46.609713447517549 ], [ 15.194969517429286, 46.61069529944848 ], [ 15.191868931106285, 46.612581488944556 ], [ 15.183497349023412, 46.619454454259653 ], [ 15.183962437016817, 46.625578110741174 ], [ 15.181636997049736, 46.629557197106919 ], [ 15.173678827016261, 46.637773749558846 ], [ 15.172556750993238, 46.64135951293116 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-081", "NAME_1": "Muta" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.105591441791603, 46.646322596110906 ], [ 15.172556750993238, 46.64135951293116 ], [ 15.173678827016261, 46.637773749558846 ], [ 15.181636997049736, 46.629557197106919 ], [ 15.183962437016817, 46.625578110741174 ], [ 15.183497349023412, 46.619454454259653 ], [ 15.154455194151865, 46.603615628558373 ], [ 15.140192497785506, 46.599791571823573 ], [ 15.125774773586897, 46.601238511747908 ], [ 15.104794142435708, 46.61165131295769 ], [ 15.093787062023296, 46.625500597274709 ], [ 15.088826124625939, 46.634363104873387 ], [ 15.085722503990326, 46.647795166713536 ], [ 15.105591441791603, 46.646322596110906 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-025", "NAME_1": "Dravograd" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.061953572000107, 46.649556783000079 ], [ 15.085722503990326, 46.647795166713536 ], [ 15.088826124625939, 46.634363104873387 ], [ 15.093787062023296, 46.625500597274709 ], [ 15.104794142435708, 46.61165131295769 ], [ 15.125774773586897, 46.601238511747908 ], [ 15.111925490169199, 46.598654690261696 ], [ 15.108669875114629, 46.594933987213722 ], [ 15.103863967348218, 46.586769110705859 ], [ 15.106034376785033, 46.579224351822347 ], [ 15.103398879354756, 46.57002594743949 ], [ 15.070997755741814, 46.550337226581689 ], [ 15.068982375036569, 46.545738023490969 ], [ 15.064331496001728, 46.542327378805453 ], [ 15.060249057747797, 46.541500556505468 ], [ 15.048776890241299, 46.544601141929149 ], [ 15.03621951711699, 46.541552232449533 ], [ 15.033584018787394, 46.540001938838373 ], [ 15.030328402833504, 46.538606675757478 ], [ 15.02815799339669, 46.538089910920633 ], [ 15.024592319080227, 46.538141587764017 ], [ 15.010484653244134, 46.550440579369194 ], [ 15.014205357191486, 46.559070542971142 ], [ 15.01234500521781, 46.562532864500099 ], [ 15.007487419708639, 46.568940741821734 ], [ 14.997875604175761, 46.57310069444145 ], [ 14.981907586365992, 46.582014878883513 ], [ 14.97090050595358, 46.59160085689399 ], [ 14.966249626918739, 46.596897691075583 ], [ 14.960203484802946, 46.599688219036068 ], [ 14.943408643793873, 46.600747586232103 ], [ 14.920154250418307, 46.613640855241272 ], [ 14.919506769000122, 46.615016752000102 ], [ 14.93358931500012, 46.621134746000067 ], [ 14.94795536200013, 46.619274394000044 ], [ 14.96717899500004, 46.600257467000077 ], [ 15.004386027000066, 46.636844381000017 ], [ 15.061953572000107, 46.649556783000079 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-093", "NAME_1": "Podvelka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.388135214000016, 46.645577698000082 ], [ 15.417590780000126, 46.637955424000026 ], [ 15.435380874000089, 46.627195287000049 ], [ 15.435471632909525, 46.627076728408269 ], [ 15.441207716662802, 46.619583645468822 ], [ 15.439657423950962, 46.609661769774846 ], [ 15.436401807997015, 46.602375393309728 ], [ 15.434851515285175, 46.596949367918967 ], [ 15.434851515285175, 46.592453518515015 ], [ 15.440432570306882, 46.590334785022264 ], [ 15.443378126998937, 46.58470205315723 ], [ 15.43593672000361, 46.574780178362516 ], [ 15.430355665881279, 46.574780178362516 ], [ 15.425549758114812, 46.575141913568416 ], [ 15.410201857030074, 46.582428290033533 ], [ 15.407566358700478, 46.583358466020343 ], [ 15.388291049892018, 46.58780263948023 ], [ 15.376043735130281, 46.58873281546704 ], [ 15.37139285699476, 46.587337551486769 ], [ 15.369067417027679, 46.58392690680131 ], [ 15.369222445759249, 46.575451971930931 ], [ 15.366586948328973, 46.568837389034229 ], [ 15.348448521082389, 46.55131907851262 ], [ 15.339250115800212, 46.534498399081826 ], [ 15.329173211374609, 46.524757392339779 ], [ 15.322817009996982, 46.51064972650363 ], [ 15.317235954975331, 46.527496243456824 ], [ 15.317546014237166, 46.532017931282496 ], [ 15.319871454204247, 46.534679267134436 ], [ 15.320646599660847, 46.537469794195601 ], [ 15.317546014237166, 46.540544542096939 ], [ 15.301888054789856, 46.546642361056115 ], [ 15.29351647270704, 46.557106839109338 ], [ 15.270365431219659, 46.572583930503981 ], [ 15.284473097055752, 46.598577174996592 ], [ 15.297857293379366, 46.60780141870049 ], [ 15.304678581851078, 46.609300035468266 ], [ 15.320956658922682, 46.614622708071522 ], [ 15.329173211374609, 46.619221910262922 ], [ 15.332583856060069, 46.635034898441802 ], [ 15.332783733982126, 46.643579675561568 ], [ 15.388135214000016, 46.645577698000082 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-103", "NAME_1": "Ravne na Koroškem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.894062721717205, 46.605215461324462 ], [ 14.897725871000063, 46.605554302000129 ], [ 14.919506769000122, 46.615016752000102 ], [ 14.920154250418307, 46.613640855241272 ], [ 14.943408643793873, 46.600747586232103 ], [ 14.960203484802946, 46.599688219036068 ], [ 14.966249626918739, 46.596897691075583 ], [ 14.97090050595358, 46.59160085689399 ], [ 14.981907586365992, 46.582014878883513 ], [ 14.997875604175761, 46.57310069444145 ], [ 15.007487419708639, 46.568940741821734 ], [ 15.01234500521781, 46.562532864500099 ], [ 15.014205357191486, 46.559070542971142 ], [ 15.010484653244134, 46.550440579369194 ], [ 15.003766716660607, 46.531888740073271 ], [ 15.002216423948767, 46.514241238342436 ], [ 14.998495720900792, 46.505792140994458 ], [ 14.991984490791594, 46.498686632582007 ], [ 14.986713495031779, 46.495870266199802 ], [ 14.965629510193708, 46.48946238887811 ], [ 14.943408643793873, 46.49080597601494 ], [ 14.940618116732708, 46.492407945570221 ], [ 14.924029982197908, 46.504784451541184 ], [ 14.947904494097088, 46.521398424497647 ], [ 14.95069502115831, 46.530596828880505 ], [ 14.948524610822119, 46.532663886429191 ], [ 14.947284377372114, 46.534214179141031 ], [ 14.946974318110279, 46.535919501483761 ], [ 14.946819289378709, 46.539536851744288 ], [ 14.946199171754358, 46.544962877135049 ], [ 14.946664259747763, 46.557158515053402 ], [ 14.945268995767549, 46.562739570075053 ], [ 14.942633498337273, 46.565917669864575 ], [ 14.934571973717595, 46.56715790511322 ], [ 14.931626417924861, 46.569302477027691 ], [ 14.926820510158393, 46.575762031192767 ], [ 14.922789747848583, 46.582428290033533 ], [ 14.919224074431497, 46.586510729186784 ], [ 14.915658400115035, 46.589249579404566 ], [ 14.91286787305387, 46.590593167440716 ], [ 14.910852492348624, 46.592220974518341 ], [ 14.908837110744059, 46.59315115050515 ], [ 14.906356642045353, 46.59297028335186 ], [ 14.903256055722352, 46.593021959295982 ], [ 14.900930616654648, 46.594520576063701 ], [ 14.895452915319765, 46.602504584518954 ], [ 14.894062721717205, 46.605215461324462 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-175", "NAME_1": "Prevalje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.877055298000073, 46.603642274000023 ], [ 14.894062721717205, 46.605215461324462 ], [ 14.895452915319765, 46.602504584518954 ], [ 14.900930616654648, 46.594520576063701 ], [ 14.903256055722352, 46.593021959295982 ], [ 14.906356642045353, 46.59297028335186 ], [ 14.908837110744059, 46.59315115050515 ], [ 14.910852492348624, 46.592220974518341 ], [ 14.91286787305387, 46.590593167440716 ], [ 14.915658400115035, 46.589249579404566 ], [ 14.919224074431497, 46.586510729186784 ], [ 14.922789747848583, 46.582428290033533 ], [ 14.926820510158393, 46.575762031192767 ], [ 14.931626417924861, 46.569302477027691 ], [ 14.934571973717595, 46.56715790511322 ], [ 14.942633498337273, 46.565917669864575 ], [ 14.945268995767549, 46.562739570075053 ], [ 14.946664259747763, 46.557158515053402 ], [ 14.946199171754358, 46.544962877135049 ], [ 14.946819289378709, 46.539536851744288 ], [ 14.946974318110279, 46.535919501483761 ], [ 14.947284377372114, 46.534214179141031 ], [ 14.948524610822119, 46.532663886429191 ], [ 14.95069502115831, 46.530596828880505 ], [ 14.947904494097088, 46.521398424497647 ], [ 14.924029982197908, 46.504784451541184 ], [ 14.899535352674377, 46.504448553857628 ], [ 14.902635938997378, 46.516566677410196 ], [ 14.898915235949346, 46.519434718837203 ], [ 14.89188724100336, 46.523413805202949 ], [ 14.881810336577757, 46.530855211298956 ], [ 14.878554722422507, 46.537288927042312 ], [ 14.878089634429045, 46.542094834808779 ], [ 14.872663608138964, 46.545324612340949 ], [ 14.866927524385744, 46.547184964314624 ], [ 14.863361850968658, 46.551939195237651 ], [ 14.857160679221977, 46.552507636018561 ], [ 14.85312991691211, 46.553463650427091 ], [ 14.849564242595704, 46.552817695280396 ], [ 14.847083773897054, 46.552145900812661 ], [ 14.843828158842427, 46.551784166506081 ], [ 14.841192661412151, 46.552145900812661 ], [ 14.825638054752403, 46.552610988806066 ], [ 14.814519309000076, 46.551337476000029 ], [ 14.822278279000074, 46.567546285 ], [ 14.83364709500006, 46.584392802000067 ], [ 14.850390259000108, 46.601135967000019 ], [ 14.862999308000042, 46.604830831000029 ], [ 14.877055298000073, 46.603642274000023 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-074", "NAME_1": "Mežica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.796662503671598, 46.519400947495683 ], [ 14.807188762000067, 46.536023662000034 ], [ 14.814519309000076, 46.551337476000029 ], [ 14.825638054752403, 46.552610988806066 ], [ 14.841192661412151, 46.552145900812661 ], [ 14.843828158842427, 46.551784166506081 ], [ 14.847083773897054, 46.552145900812661 ], [ 14.849564242595704, 46.552817695280396 ], [ 14.85312991691211, 46.553463650427091 ], [ 14.857160679221977, 46.552507636018561 ], [ 14.863361850968658, 46.551939195237651 ], [ 14.866927524385744, 46.547184964314624 ], [ 14.872663608138964, 46.545324612340949 ], [ 14.878089634429045, 46.542094834808779 ], [ 14.878554722422507, 46.537288927042312 ], [ 14.881810336577757, 46.530855211298956 ], [ 14.89188724100336, 46.523413805202949 ], [ 14.898915235949346, 46.519434718837203 ], [ 14.902635938997378, 46.516566677410196 ], [ 14.899535352674377, 46.504448553857628 ], [ 14.894677768963845, 46.497730618173478 ], [ 14.886151157250083, 46.496490382924833 ], [ 14.873438755394204, 46.497317206124137 ], [ 14.851579624200269, 46.502278144420814 ], [ 14.831374139405, 46.5135436063523 ], [ 14.812925652896524, 46.517212633456268 ], [ 14.796662503671598, 46.519400947495683 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-016", "NAME_1": "Črna na Koroškem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.735255167000048, 46.493338928000028 ], [ 14.760886678000105, 46.496284485000032 ], [ 14.783004191000089, 46.503260804000021 ], [ 14.788585245000121, 46.506645610000064 ], [ 14.796662503671598, 46.519400947495683 ], [ 14.812925652896524, 46.517212633456268 ], [ 14.831374139405, 46.5135436063523 ], [ 14.851579624200269, 46.502278144420814 ], [ 14.873438755394204, 46.497317206124137 ], [ 14.886151157250083, 46.496490382924833 ], [ 14.894677768963845, 46.497730618173478 ], [ 14.899535352674377, 46.504448553857628 ], [ 14.924029982197908, 46.504784451541184 ], [ 14.940618116732708, 46.492407945570221 ], [ 14.943408643793873, 46.49080597601494 ], [ 14.965629510193708, 46.48946238887811 ], [ 14.956327752124025, 46.459851793225653 ], [ 14.95586266413062, 46.447242744157279 ], [ 14.942013380712922, 46.440008042736963 ], [ 14.891732212271791, 46.423549099411389 ], [ 14.804088982820303, 46.42512523054495 ], [ 14.775666944673731, 46.431894843072541 ], [ 14.769930860920454, 46.43127472634751 ], [ 14.754582960735036, 46.421456204340359 ], [ 14.73365400642723, 46.442385159547428 ], [ 14.722130161177972, 46.447992052091479 ], [ 14.675776401359826, 46.454348253469107 ], [ 14.672545839618806, 46.459790506226852 ], [ 14.679961385000098, 46.458870748000081 ], [ 14.687092733000043, 46.471221416000034 ], [ 14.698771607000111, 46.480962423000065 ], [ 14.703732544000076, 46.487757874000025 ], [ 14.70972701000008, 46.492512106 ], [ 14.726366821000113, 46.497705587000027 ], [ 14.735255167000048, 46.493338928000028 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-131", "NAME_1": "Tržič" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.242323221939102, 46.438237461989274 ], [ 14.362151327000049, 46.435874736000116 ], [ 14.395844361000115, 46.440990702000093 ], [ 14.406489705000098, 46.43933705700006 ], [ 14.41124393700008, 46.434634502000094 ], [ 14.414447876000054, 46.429001770000056 ], [ 14.420028931000076, 46.424350892000078 ], [ 14.437144751628978, 46.418884133396034 ], [ 14.434292433049336, 46.416081854893662 ], [ 14.422665235911893, 46.396470649301023 ], [ 14.418789504132292, 46.38696218475701 ], [ 14.408247510813965, 46.373035386973527 ], [ 14.4085575700758, 46.364121202531464 ], [ 14.405456983752799, 46.351641343772997 ], [ 14.359516635983937, 46.350814521472955 ], [ 14.35052493717609, 46.34838572871837 ], [ 14.338122592783407, 46.340169176266443 ], [ 14.33031945238082, 46.336810208424367 ], [ 14.326288690070953, 46.321358954552068 ], [ 14.300708855829043, 46.318981839540243 ], [ 14.295127800807336, 46.319705309052722 ], [ 14.289236688322489, 46.322392483326439 ], [ 14.267170850654225, 46.326139023896815 ], [ 14.260194532551623, 46.330350654259234 ], [ 14.256318800772021, 46.337507840414503 ], [ 14.258334180577947, 46.342236232915809 ], [ 14.253063184818132, 46.344406643251943 ], [ 14.250427687387855, 46.347507229574944 ], [ 14.248567336313499, 46.353346666115726 ], [ 14.255233595154266, 46.39019196228918 ], [ 14.252908156086505, 46.413498033407507 ], [ 14.238180372626061, 46.425254421754119 ], [ 14.242056105304982, 46.437114162888292 ], [ 14.242211134935928, 46.437527574038313 ], [ 14.242323221939102, 46.438237461989274 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-192", "NAME_1": "Žirovnica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.147933084000044, 46.440424654000068 ], [ 14.149864543000064, 46.440060527000057 ], [ 14.242323221939102, 46.438237461989274 ], [ 14.242211134935928, 46.437527574038313 ], [ 14.242056105304982, 46.437114162888292 ], [ 14.238180372626061, 46.425254421754119 ], [ 14.223142530803159, 46.421766261803498 ], [ 14.214564243145276, 46.416986192458808 ], [ 14.200146518946667, 46.403834540131925 ], [ 14.194875523186852, 46.393680121340481 ], [ 14.19053470161515, 46.386936347234609 ], [ 14.180147738827088, 46.381768704262242 ], [ 14.168675571320534, 46.381045233850443 ], [ 14.159322137306788, 46.381717027418858 ], [ 14.137463006112853, 46.372156886930782 ], [ 14.120874870678733, 46.392724106931951 ], [ 14.127851189680655, 46.406831772768101 ], [ 14.129401483291815, 46.42512523054495 ], [ 14.137773065374631, 46.434116930252117 ], [ 14.140873650798312, 46.436390693375756 ], [ 14.147933084000044, 46.440424654000068 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-041", "NAME_1": "Jesenice" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.032455688000084, 46.484708965 ], [ 14.050025676000132, 46.48439890500002 ], [ 14.066355428000094, 46.481039938 ], [ 14.081031535000079, 46.475949809000028 ], [ 14.137255493000055, 46.442437643000105 ], [ 14.147933084000044, 46.440424654000068 ], [ 14.140873650798312, 46.436390693375756 ], [ 14.137773065374631, 46.434116930252117 ], [ 14.129401483291815, 46.42512523054495 ], [ 14.127851189680655, 46.406831772768101 ], [ 14.101599561870273, 46.403576157713474 ], [ 14.096638625372236, 46.404609687387165 ], [ 14.081910841911792, 46.409208889578565 ], [ 14.072764112573736, 46.414583238125942 ], [ 13.992355583643246, 46.444813951402693 ], [ 13.999693637851067, 46.452927151067115 ], [ 14.004654575248423, 46.455459295709886 ], [ 14.012251010975376, 46.460626939581573 ], [ 14.014266391680621, 46.468972683242725 ], [ 14.014921608945087, 46.482530651967977 ], [ 14.032455688000084, 46.484708965 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-180", "NAME_1": "Solcava" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.666628865000092, 46.460524394000018 ], [ 14.672545839618806, 46.459790506226852 ], [ 14.675776401359826, 46.454348253469107 ], [ 14.722130161177972, 46.447992052091479 ], [ 14.73365400642723, 46.442385159547428 ], [ 14.754582960735036, 46.421456204340359 ], [ 14.740165235637107, 46.407090156085815 ], [ 14.739855177274592, 46.398615221215437 ], [ 14.741870557979837, 46.395695502045783 ], [ 14.742955762698273, 46.392879137462216 ], [ 14.737529738206831, 46.388951727939855 ], [ 14.726470981850298, 46.383422349761588 ], [ 14.669368524038134, 46.364586290524869 ], [ 14.639912957117247, 46.366369127233384 ], [ 14.609785596627944, 46.361976629717674 ], [ 14.595677930791851, 46.361408188936764 ], [ 14.56870283436831, 46.368797919088649 ], [ 14.562966749715713, 46.389726874295775 ], [ 14.562108198000118, 46.391736666000028 ], [ 14.566996704000104, 46.400373027000072 ], [ 14.575368286000099, 46.419725851000024 ], [ 14.590147746000099, 46.434427795000019 ], [ 14.599862915000131, 46.43716664600008 ], [ 14.621567017000132, 46.438510234000049 ], [ 14.631695597000089, 46.440577291000082 ], [ 14.642030884000093, 46.44522817000005 ], [ 14.662081339000054, 46.459697571000092 ], [ 14.666628865000092, 46.460524394000018 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-163", "NAME_1": "Jezersko" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.540331665000082, 46.378643087000071 ], [ 14.557694946000083, 46.383939921000021 ], [ 14.562108198000118, 46.391736666000028 ], [ 14.562966749715713, 46.389726874295775 ], [ 14.56870283436831, 46.368797919088649 ], [ 14.535939976448731, 46.360322984218328 ], [ 14.469225702204369, 46.364276231263034 ], [ 14.454652948374871, 46.366885891170909 ], [ 14.449847038809764, 46.36709259674592 ], [ 14.444679395837454, 46.366369127233384 ], [ 14.440493604796018, 46.364715480834775 ], [ 14.437237989741391, 46.360503852270938 ], [ 14.433982374686821, 46.355387885242692 ], [ 14.432122022713145, 46.353527534168336 ], [ 14.427006055684899, 46.35050446221112 ], [ 14.405456983752799, 46.351641343772997 ], [ 14.4085575700758, 46.364121202531464 ], [ 14.408247510813965, 46.373035386973527 ], [ 14.418789504132292, 46.38696218475701 ], [ 14.422665235911893, 46.396470649301023 ], [ 14.434292433049336, 46.416081854893662 ], [ 14.437144751628978, 46.418884133396034 ], [ 14.450931437000065, 46.414480693000101 ], [ 14.467674601000112, 46.412672018000123 ], [ 14.502194458000105, 46.418356426000074 ], [ 14.515837036000107, 46.405359803000024 ], [ 14.527102498000062, 46.388229065000061 ], [ 14.540331665000082, 46.378643087000071 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-040", "NAME_1": "Izola" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.61092905333938, 45.538024637373056 ], [ 13.67514082100007, 45.544745184000078 ], [ 13.674287144036441, 45.520684313530239 ], [ 13.662763298787183, 45.50699005794479 ], [ 13.657492303027368, 45.492158921696841 ], [ 13.654236687972741, 45.490660304929122 ], [ 13.646640252245845, 45.488179837129735 ], [ 13.641679314848489, 45.489575100210686 ], [ 13.639973993405079, 45.490970364190957 ], [ 13.639663934143243, 45.493218288892876 ], [ 13.633462762396562, 45.499652005535609 ], [ 13.628656853730774, 45.50218415017838 ], [ 13.622145622722314, 45.50675751394806 ], [ 13.618890007667687, 45.515620022446058 ], [ 13.618579950204548, 45.521614487718409 ], [ 13.616564568599927, 45.525541897240714 ], [ 13.611448601571681, 45.533551744117688 ], [ 13.61092905333938, 45.538024637373056 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-089", "NAME_1": "Pesnica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.744755080182813, 46.568527329772451 ], [ 15.720673861809246, 46.569302477027691 ], [ 15.69896976114552, 46.579482734240742 ], [ 15.679849481068686, 46.592815252821651 ], [ 15.647138299093228, 46.594081326492017 ], [ 15.664346551252322, 46.603563950815669 ], [ 15.645743036012277, 46.642760525377923 ], [ 15.67240807497268, 46.646041978854214 ], [ 15.675043573302275, 46.64769562435356 ], [ 15.677834100363441, 46.648935858702885 ], [ 15.677058954007521, 46.649943549055536 ], [ 15.676748894745685, 46.652268989022616 ], [ 15.678454217088415, 46.657152411154811 ], [ 15.685172152772623, 46.665782376555399 ], [ 15.687962680733108, 46.673172104908701 ], [ 15.691528355049513, 46.676401883340247 ], [ 15.694163853379109, 46.676789456068491 ], [ 15.698659701883741, 46.676866970434332 ], [ 15.704550816167227, 46.675471707353381 ], [ 15.716488070767809, 46.676117662500076 ], [ 15.730595736603959, 46.67332713543891 ], [ 15.7352466156388, 46.67043325469092 ], [ 15.737572055605881, 46.667591050786314 ], [ 15.73808882044267, 46.664645494094259 ], [ 15.738812289955206, 46.662113349451488 ], [ 15.744445020920978, 46.657565823204152 ], [ 15.748940871224193, 46.655240383237071 ], [ 15.752816603003794, 46.651984768182501 ], [ 15.75622724768931, 46.64769562435356 ], [ 15.760723097093262, 46.644129950936474 ], [ 15.770644971887918, 46.634259752085882 ], [ 15.760723097093262, 46.614932766433981 ], [ 15.75777754130047, 46.602685452571563 ], [ 15.759947950737342, 46.588112697842689 ], [ 15.754676954977469, 46.573281562494117 ], [ 15.744755080182813, 46.568527329772451 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-026", "NAME_1": "Duplek" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.731680942221715, 46.504758613119463 ], [ 15.724394565756597, 46.5135436063523 ], [ 15.721293980332916, 46.518452866906273 ], [ 15.720053745084272, 46.521295070810822 ], [ 15.720828892339512, 46.523620509878583 ], [ 15.723154331407272, 46.52708283140754 ], [ 15.73808882044267, 46.532663886429191 ], [ 15.75374677899066, 46.546978257840294 ], [ 15.769094679176078, 46.54710744904952 ], [ 15.775605910184595, 46.547960109771225 ], [ 15.78087690594441, 46.546978257840294 ], [ 15.784907668254277, 46.544962877135049 ], [ 15.787698195315443, 46.541784776446264 ], [ 15.788783400033878, 46.537624823826548 ], [ 15.790953810370013, 46.534627591190372 ], [ 15.809298944090983, 46.525325833120689 ], [ 15.81519005657583, 46.520158189249003 ], [ 15.817670526173856, 46.514861355067467 ], [ 15.814414911119229, 46.512044990483901 ], [ 15.811779412789633, 46.508660183320785 ], [ 15.810384148809419, 46.50625722898792 ], [ 15.816275262193585, 46.497317206124137 ], [ 15.806508416130498, 46.485431627467619 ], [ 15.794726190261429, 46.480005602076858 ], [ 15.781497022669441, 46.4677324488934 ], [ 15.756537306051825, 46.485741685830135 ], [ 15.750491163936033, 46.48793793368867 ], [ 15.742429640215732, 46.489979152815636 ], [ 15.739432406680237, 46.491787827945871 ], [ 15.737778761180891, 46.493725694285331 ], [ 15.733076206201929, 46.503234157930024 ], [ 15.731680942221715, 46.504758613119463 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-169", "NAME_1": "Miklavž na Dravskem polju" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.69648929244687, 46.512148342372086 ], [ 15.731680942221715, 46.504758613119463 ], [ 15.733076206201929, 46.503234157930024 ], [ 15.724549595387487, 46.494655870272197 ], [ 15.723309360138842, 46.491684475158365 ], [ 15.727650180811168, 46.486155096980099 ], [ 15.729820591147359, 46.480186469230148 ], [ 15.732766147839413, 46.47442454705515 ], [ 15.716953158761271, 46.460006821957222 ], [ 15.709511752665264, 46.464967760253899 ], [ 15.697729525896875, 46.481452542001193 ], [ 15.695094027567279, 46.48662018497356 ], [ 15.699434849138981, 46.494319973487961 ], [ 15.70052005385736, 46.498092353379377 ], [ 15.694473910842305, 46.506024684991189 ], [ 15.69648929244687, 46.512148342372086 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-160", "NAME_1": "Hoce-Slivnica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.608484327789483, 46.516644191775981 ], [ 15.69648929244687, 46.512148342372086 ], [ 15.694473910842305, 46.506024684991189 ], [ 15.70052005385736, 46.498092353379377 ], [ 15.699434849138981, 46.494319973487961 ], [ 15.695094027567279, 46.48662018497356 ], [ 15.697729525896875, 46.481452542001193 ], [ 15.709511752665264, 46.464967760253899 ], [ 15.686877476014672, 46.462383937868424 ], [ 15.683105096123256, 46.461195380362483 ], [ 15.676128778020654, 46.460316881219057 ], [ 15.658765496230671, 46.459851793225653 ], [ 15.653959587564884, 46.460575262738132 ], [ 15.647138299093228, 46.462745673074323 ], [ 15.63675133630511, 46.468740139245995 ], [ 15.612980177193435, 46.476620794913742 ], [ 15.586780226226438, 46.476646633335463 ], [ 15.571380649197579, 46.481142482739358 ], [ 15.545800815854932, 46.483209540288044 ], [ 15.539444613578041, 46.497420558911642 ], [ 15.563784214370003, 46.50987457924839 ], [ 15.608484327789483, 46.516644191775981 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-058", "NAME_1": "Lenart" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.77839643724576, 46.648160712346964 ], [ 15.80015221475287, 46.646868801154199 ], [ 15.81829064289883, 46.645447700550903 ], [ 15.823406609927076, 46.640150865470048 ], [ 15.825266961001432, 46.636378486477952 ], [ 15.828522576955322, 46.62749013955829 ], [ 15.829142693680353, 46.623769436510258 ], [ 15.829297723311242, 46.618989366266192 ], [ 15.834568719071115, 46.614932766433981 ], [ 15.844800653127606, 46.60917084425904 ], [ 15.851776971230208, 46.607491360337974 ], [ 15.856789584571629, 46.607336330707085 ], [ 15.862835727586742, 46.610953680967555 ], [ 15.875393100710994, 46.605941066726814 ], [ 15.893066440863549, 46.58819021310785 ], [ 15.898182406992476, 46.584288642007209 ], [ 15.902368198033912, 46.583461818807848 ], [ 15.905313754725967, 46.585037949941409 ], [ 15.911411573685143, 46.585167141150635 ], [ 15.915132276733175, 46.58583893471905 ], [ 15.926139357145587, 46.59100657769136 ], [ 15.933270704879135, 46.596406765559777 ], [ 15.95590498242899, 46.588216051529514 ], [ 15.943502638036307, 46.581188056583528 ], [ 15.938076612645546, 46.579586087028247 ], [ 15.926449416407422, 46.573591619957256 ], [ 15.922263625365986, 46.568837389034229 ], [ 15.919628127036447, 46.565323391561265 ], [ 15.928464797112667, 46.541913966756113 ], [ 15.924123976440342, 46.534369207872601 ], [ 15.892136264876683, 46.546409817059384 ], [ 15.884229770787272, 46.542224026017948 ], [ 15.872912632012344, 46.537934882189063 ], [ 15.867641636252472, 46.533723252725906 ], [ 15.865006137922933, 46.529485785740405 ], [ 15.861905551599932, 46.525635891483205 ], [ 15.860045199626256, 46.519899806830608 ], [ 15.856944614202575, 46.515791531054276 ], [ 15.854464146403245, 46.506308905831304 ], [ 15.823406609927076, 46.494940091112312 ], [ 15.816275262193585, 46.497317206124137 ], [ 15.810384148809419, 46.50625722898792 ], [ 15.811779412789633, 46.508660183320785 ], [ 15.814414911119229, 46.512044990483901 ], [ 15.817670526173856, 46.514861355067467 ], [ 15.81519005657583, 46.520158189249003 ], [ 15.809298944090983, 46.525325833120689 ], [ 15.790953810370013, 46.534627591190372 ], [ 15.788783400033878, 46.537624823826548 ], [ 15.787698195315443, 46.541784776446264 ], [ 15.784907668254277, 46.544962877135049 ], [ 15.78087690594441, 46.546978257840294 ], [ 15.775605910184595, 46.547960109771225 ], [ 15.769094679176078, 46.54710744904952 ], [ 15.75374677899066, 46.546978257840294 ], [ 15.769249708807024, 46.559406439755378 ], [ 15.765684035389882, 46.561292630150717 ], [ 15.763668653785317, 46.565013333198749 ], [ 15.760413038730746, 46.567597153785584 ], [ 15.754676954977469, 46.573281562494117 ], [ 15.759947950737342, 46.588112697842689 ], [ 15.75777754130047, 46.602685452571563 ], [ 15.760723097093262, 46.614932766433981 ], [ 15.770644971887918, 46.634259752085882 ], [ 15.773280470217514, 46.643277289315449 ], [ 15.776226026909626, 46.645266832498294 ], [ 15.77839643724576, 46.648160712346964 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-181", "NAME_1": "Sveta Ana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.80015221475287, 46.646868801154199 ], [ 15.79441613099965, 46.654723619299546 ], [ 15.792504103081853, 46.660873115102163 ], [ 15.792814162343689, 46.665679022868574 ], [ 15.799067010034491, 46.670484931534361 ], [ 15.799997186021301, 46.676272691231702 ], [ 15.803872917800902, 46.682525539821768 ], [ 15.804338005794307, 46.699759630402582 ], [ 15.81829064289883, 46.696168118563776 ], [ 15.827282341706677, 46.686375434078968 ], [ 15.858804966176251, 46.67159597377514 ], [ 15.876788363791945, 46.668366197142234 ], [ 15.888570590560278, 46.662785143019903 ], [ 15.888105502566873, 46.645886949223325 ], [ 15.8747729830867, 46.636430162422016 ], [ 15.865781284278853, 46.623252672572733 ], [ 15.862835727586742, 46.610953680967555 ], [ 15.856789584571629, 46.607336330707085 ], [ 15.851776971230208, 46.607491360337974 ], [ 15.844800653127606, 46.60917084425904 ], [ 15.834568719071115, 46.614932766433981 ], [ 15.829297723311242, 46.618989366266192 ], [ 15.829142693680353, 46.623769436510258 ], [ 15.828522576955322, 46.62749013955829 ], [ 15.825266961001432, 46.636378486477952 ], [ 15.823406609927076, 46.640150865470048 ], [ 15.81829064289883, 46.645447700550903 ], [ 15.80015221475287, 46.646868801154199 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-167", "NAME_1": "Lovrenc na Pohorju" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.376043735130281, 46.58873281546704 ], [ 15.388291049892018, 46.58780263948023 ], [ 15.407566358700478, 46.583358466020343 ], [ 15.410201857030074, 46.582428290033533 ], [ 15.425549758114812, 46.575141913568416 ], [ 15.430355665881279, 46.574780178362516 ], [ 15.43593672000361, 46.574780178362516 ], [ 15.443378126998937, 46.58470205315723 ], [ 15.451129592356779, 46.581084702896703 ], [ 15.45748579283503, 46.576640530336192 ], [ 15.461723259820587, 46.568268948253319 ], [ 15.459656203171221, 46.550027167319911 ], [ 15.449889357108134, 46.541913966756113 ], [ 15.450819533094943, 46.537754015035716 ], [ 15.449114210752214, 46.531552843289035 ], [ 15.440587599038452, 46.518478705327936 ], [ 15.415162795326751, 46.499461778038608 ], [ 15.408186476324829, 46.477706000531498 ], [ 15.390771518590668, 46.47209910708807 ], [ 15.387360873905209, 46.47036794722294 ], [ 15.381159702158527, 46.4688434920335 ], [ 15.376818882385521, 46.46941193281441 ], [ 15.363951449999377, 46.478171088524903 ], [ 15.359145542232966, 46.480186469230148 ], [ 15.335064324758775, 46.477395942168982 ], [ 15.31568566316281, 46.482176012412992 ], [ 15.312119988846405, 46.492459622413605 ], [ 15.322817009996982, 46.51064972650363 ], [ 15.329173211374609, 46.524757392339779 ], [ 15.339250115800212, 46.534498399081826 ], [ 15.348448521082389, 46.55131907851262 ], [ 15.366586948328973, 46.568837389034229 ], [ 15.369222445759249, 46.575451971930931 ], [ 15.369067417027679, 46.58392690680131 ], [ 15.37139285699476, 46.587337551486769 ], [ 15.376043735130281, 46.58873281546704 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-177", "NAME_1": "Ribnica na Pohorju" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.270365431219659, 46.572583930503981 ], [ 15.29351647270704, 46.557106839109338 ], [ 15.301888054789856, 46.546642361056115 ], [ 15.317546014237166, 46.540544542096939 ], [ 15.320646599660847, 46.537469794195601 ], [ 15.319871454204247, 46.534679267134436 ], [ 15.317546014237166, 46.532017931282496 ], [ 15.317235954975331, 46.527496243456824 ], [ 15.322817009996982, 46.51064972650363 ], [ 15.312119988846405, 46.492459622413605 ], [ 15.2584281757197, 46.495586046259007 ], [ 15.238274366868495, 46.494630031850477 ], [ 15.222719761108067, 46.496955470918238 ], [ 15.195744662885886, 46.510908108022761 ], [ 15.188768344783284, 46.517212633456268 ], [ 15.199310337202292, 46.529201564900291 ], [ 15.209077183265379, 46.535609443121302 ], [ 15.210317416715384, 46.543257554792319 ], [ 15.214813267018656, 46.547546699520524 ], [ 15.220239292409417, 46.550853990519215 ], [ 15.270365431219659, 46.572583930503981 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-112", "NAME_1": "Slovenj Gradec" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.965629510193708, 46.48946238887811 ], [ 14.986713495031779, 46.495870266199802 ], [ 14.991984490791594, 46.498686632582007 ], [ 14.998495720900792, 46.505792140994458 ], [ 15.002216423948767, 46.514241238342436 ], [ 15.003766716660607, 46.531888740073271 ], [ 15.010484653244134, 46.550440579369194 ], [ 15.024592319080227, 46.538141587764017 ], [ 15.02815799339669, 46.538089910920633 ], [ 15.030328402833504, 46.538606675757478 ], [ 15.033584018787394, 46.540001938838373 ], [ 15.03621951711699, 46.541552232449533 ], [ 15.048776890241299, 46.544601141929149 ], [ 15.060249057747797, 46.541500556505468 ], [ 15.064331496001728, 46.542327378805453 ], [ 15.068982375036569, 46.545738023490969 ], [ 15.070997755741814, 46.550337226581689 ], [ 15.103398879354756, 46.57002594743949 ], [ 15.113165723619261, 46.559897366170503 ], [ 15.127170037567168, 46.55188751929353 ], [ 15.138022088348691, 46.541397202818644 ], [ 15.143293084108507, 46.533568223994337 ], [ 15.188768344783284, 46.517212633456268 ], [ 15.195744662885886, 46.510908108022761 ], [ 15.186132847353008, 46.491865343210975 ], [ 15.162206658610387, 46.467809964158505 ], [ 15.151199579097295, 46.460239365953953 ], [ 15.149494255855188, 46.449723211956666 ], [ 15.144533319357208, 46.445124009765209 ], [ 15.142672967383533, 46.444374701831009 ], [ 15.139727410691421, 46.444658921771804 ], [ 15.134921502025691, 46.443909613837604 ], [ 15.123604364150083, 46.421998805800229 ], [ 15.111925490169199, 46.430757962409984 ], [ 15.098592969789706, 46.433832709412002 ], [ 15.092236769311455, 46.434168606196181 ], [ 15.089291212619344, 46.4264688185811 ], [ 14.999890984881006, 46.446829332107939 ], [ 14.956327752124025, 46.459851793225653 ], [ 14.965629510193708, 46.48946238887811 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-141", "NAME_1": "Vuzenica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.183497349023412, 46.619454454259653 ], [ 15.191868931106285, 46.612581488944556 ], [ 15.194969517429286, 46.61069529944848 ], [ 15.197294955597727, 46.609713447517549 ], [ 15.203186068981893, 46.608240668272174 ], [ 15.209232211996948, 46.604830024486034 ], [ 15.211557651064709, 46.601651922897872 ], [ 15.211557651064709, 46.597466131856493 ], [ 15.209852328721979, 46.591936754577546 ], [ 15.201635776270052, 46.581963202040129 ], [ 15.195899691617456, 46.579482734240742 ], [ 15.189543491139204, 46.578294175835538 ], [ 15.185977816822799, 46.578397529522363 ], [ 15.183807407385927, 46.577260647061166 ], [ 15.186752964078039, 46.573126532863171 ], [ 15.187373080803013, 46.568837389034229 ], [ 15.183652377755038, 46.560801702836272 ], [ 15.178226353263597, 46.554109605573785 ], [ 15.176055942028086, 46.54749502177782 ], [ 15.17553917809056, 46.542559922802184 ], [ 15.180551792331357, 46.533955796722637 ], [ 15.199310337202292, 46.529201564900291 ], [ 15.188768344783284, 46.517212633456268 ], [ 15.143293084108507, 46.533568223994337 ], [ 15.138022088348691, 46.541397202818644 ], [ 15.127170037567168, 46.55188751929353 ], [ 15.113165723619261, 46.559897366170503 ], [ 15.103398879354756, 46.57002594743949 ], [ 15.106034376785033, 46.579224351822347 ], [ 15.103863967348218, 46.586769110705859 ], [ 15.108669875114629, 46.594933987213722 ], [ 15.111925490169199, 46.598654690261696 ], [ 15.125774773586897, 46.601238511747908 ], [ 15.140192497785506, 46.599791571823573 ], [ 15.154455194151865, 46.603615628558373 ], [ 15.183497349023412, 46.619454454259653 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-095", "NAME_1": "Preddvor" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.467210320599804, 46.291645006112105 ], [ 14.417239211420451, 46.288906154995004 ], [ 14.389592318730536, 46.291231594062765 ], [ 14.379825473566711, 46.289267890200961 ], [ 14.371298861852949, 46.293479518764741 ], [ 14.368198276429325, 46.298001207489733 ], [ 14.366803013348374, 46.303737291242953 ], [ 14.368973422785245, 46.306269435885724 ], [ 14.378740268848333, 46.304047350504788 ], [ 14.382771030258823, 46.303530584768623 ], [ 14.386646762937744, 46.307044583140964 ], [ 14.38928226126734, 46.312057197381705 ], [ 14.39367475788373, 46.326216539161919 ], [ 14.405456983752799, 46.351641343772997 ], [ 14.427006055684899, 46.35050446221112 ], [ 14.432122022713145, 46.353527534168336 ], [ 14.433982374686821, 46.355387885242692 ], [ 14.437237989741391, 46.360503852270938 ], [ 14.440493604796018, 46.364715480834775 ], [ 14.444679395837454, 46.366369127233384 ], [ 14.449847038809764, 46.36709259674592 ], [ 14.454652948374871, 46.366885891170909 ], [ 14.469225702204369, 46.364276231263034 ], [ 14.535939976448731, 46.360322984218328 ], [ 14.545551791981609, 46.352674872547311 ], [ 14.546792026330934, 46.346266995225619 ], [ 14.544466587263173, 46.336551826005916 ], [ 14.54865237830461, 46.329368801429041 ], [ 14.550512730278285, 46.325079658499419 ], [ 14.553148227708505, 46.321333116130404 ], [ 14.544001499269768, 46.311979682116601 ], [ 14.515321078704801, 46.299809881720648 ], [ 14.500851677662752, 46.296605943509462 ], [ 14.483798455134604, 46.296244208303563 ], [ 14.467210320599804, 46.291645006112105 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-117", "NAME_1": "Šenčur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.417239211420451, 46.288906154995004 ], [ 14.467210320599804, 46.291645006112105 ], [ 14.459923944134687, 46.28443614401283 ], [ 14.45573815309325, 46.281774807261513 ], [ 14.45263756677025, 46.278157457001043 ], [ 14.449071893353164, 46.276297105027368 ], [ 14.446591423755194, 46.272473049191831 ], [ 14.443904250380854, 46.266995347857005 ], [ 14.442198927138747, 46.255187283566272 ], [ 14.443129103125614, 46.232785549113771 ], [ 14.444524367105828, 46.223173733580893 ], [ 14.462869499927479, 46.206146349474409 ], [ 14.467365350230693, 46.198885810531692 ], [ 14.466900262237289, 46.198058987332388 ], [ 14.458683708886042, 46.19325307956592 ], [ 14.406542189370555, 46.191754461898881 ], [ 14.388972202005505, 46.217075913722397 ], [ 14.386801791669313, 46.219401353689477 ], [ 14.384166294239094, 46.221700955234894 ], [ 14.383081088621338, 46.224517319818403 ], [ 14.384476352601553, 46.230356757258505 ], [ 14.392434522635085, 46.240485338527549 ], [ 14.402201368698172, 46.26668528949449 ], [ 14.414913770554051, 46.279139308931917 ], [ 14.417239211420451, 46.288906154995004 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-012", "NAME_1": "Cerklje na Gorenjskem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.467210320599804, 46.291645006112105 ], [ 14.483798455134604, 46.296244208303563 ], [ 14.500851677662752, 46.296605943509462 ], [ 14.515321078704801, 46.299809881720648 ], [ 14.544001499269768, 46.311979682116601 ], [ 14.543691440007933, 46.298750515423933 ], [ 14.55035769974802, 46.289371242988466 ], [ 14.553303257339451, 46.278622544994448 ], [ 14.558625929043387, 46.274488429897076 ], [ 14.569943067818315, 46.261465968779419 ], [ 14.56947797982491, 46.257538561055696 ], [ 14.568547803838044, 46.253559474690007 ], [ 14.566687452763745, 46.250019639694585 ], [ 14.564051955333468, 46.24725495105514 ], [ 14.552528110084211, 46.243198351222929 ], [ 14.500696648931182, 46.202864895098799 ], [ 14.462869499927479, 46.206146349474409 ], [ 14.444524367105828, 46.223173733580893 ], [ 14.443129103125614, 46.232785549113771 ], [ 14.442198927138747, 46.255187283566272 ], [ 14.443904250380854, 46.266995347857005 ], [ 14.446591423755194, 46.272473049191831 ], [ 14.449071893353164, 46.276297105027368 ], [ 14.45263756677025, 46.278157457001043 ], [ 14.45573815309325, 46.281774807261513 ], [ 14.459923944134687, 46.28443614401283 ], [ 14.467210320599804, 46.291645006112105 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-043", "NAME_1": "Kamnik" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.544001499269768, 46.311979682116601 ], [ 14.553148227708505, 46.321333116130404 ], [ 14.550512730278285, 46.325079658499419 ], [ 14.54865237830461, 46.329368801429041 ], [ 14.544466587263173, 46.336551826005916 ], [ 14.546792026330934, 46.346266995225619 ], [ 14.545551791981609, 46.352674872547311 ], [ 14.535939976448731, 46.360322984218328 ], [ 14.56870283436831, 46.368797919088649 ], [ 14.595677930791851, 46.361408188936764 ], [ 14.609785596627944, 46.361976629717674 ], [ 14.639912957117247, 46.366369127233384 ], [ 14.646734245588959, 46.333864650832936 ], [ 14.670608758387459, 46.31061025745737 ], [ 14.676861606977582, 46.299654852989022 ], [ 14.680117222032152, 46.290611477337791 ], [ 14.685543247422913, 46.286425686296354 ], [ 14.705697056274118, 46.28691661181216 ], [ 14.703991733032012, 46.269785874918171 ], [ 14.714068638356935, 46.263067939233963 ], [ 14.753032668023195, 46.254334621945247 ], [ 14.788741081735509, 46.253016873230081 ], [ 14.811220329654475, 46.254386297889312 ], [ 14.854835239254896, 46.252861842699872 ], [ 14.884910922900758, 46.240537014471613 ], [ 14.93007612521302, 46.218781236065183 ], [ 14.910077345093384, 46.210538845191536 ], [ 14.898915235949346, 46.20867849411718 ], [ 14.785795525942774, 46.199764308775798 ], [ 14.769775832188884, 46.195914415417917 ], [ 14.748691847350869, 46.195991929783702 ], [ 14.735049268608861, 46.197645576182367 ], [ 14.715928989431291, 46.202193102429703 ], [ 14.683062777824944, 46.199170030472487 ], [ 14.657741326900691, 46.206637274990214 ], [ 14.651850212617205, 46.206120510153369 ], [ 14.645338983407328, 46.204596055863249 ], [ 14.639137810761326, 46.202193102429703 ], [ 14.632006463027835, 46.197309679398188 ], [ 14.609475539164805, 46.188498846844254 ], [ 14.59009687666952, 46.189118964468605 ], [ 14.579864942612971, 46.192426256366616 ], [ 14.582655469674194, 46.198058987332388 ], [ 14.569943067818315, 46.214853827442141 ], [ 14.565447218414363, 46.228108832556529 ], [ 14.552528110084211, 46.243198351222929 ], [ 14.564051955333468, 46.24725495105514 ], [ 14.566687452763745, 46.250019639694585 ], [ 14.568547803838044, 46.253559474690007 ], [ 14.56947797982491, 46.257538561055696 ], [ 14.569943067818315, 46.261465968779419 ], [ 14.558625929043387, 46.274488429897076 ], [ 14.553303257339451, 46.278622544994448 ], [ 14.55035769974802, 46.289371242988466 ], [ 14.543691440007933, 46.298750515423933 ], [ 14.544001499269768, 46.311979682116601 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-071", "NAME_1": "Medvode" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.393829786615356, 46.160335191116133 ], [ 14.41429365382902, 46.170541286750961 ], [ 14.411348097136965, 46.175011297733192 ], [ 14.406542189370555, 46.191754461898881 ], [ 14.458683708886042, 46.19325307956592 ], [ 14.469225702204369, 46.143462835741275 ], [ 14.460389032128091, 46.133980211417622 ], [ 14.446281366291998, 46.128347480451851 ], [ 14.4332072283309, 46.128399156395915 ], [ 14.426851026953329, 46.126538805321559 ], [ 14.422510207180324, 46.12312815973678 ], [ 14.421114943200052, 46.119717515950583 ], [ 14.420649855206648, 46.117443752826887 ], [ 14.424680616617138, 46.115583400853268 ], [ 14.427936231671765, 46.108813788325619 ], [ 14.431036817994766, 46.104576321340119 ], [ 14.434912550673687, 46.100907294236208 ], [ 14.437858107365741, 46.097444972707308 ], [ 14.435687697029607, 46.095636298476393 ], [ 14.430571730001304, 46.094189358552057 ], [ 14.4085575700758, 46.082872218877753 ], [ 14.37191898037662, 46.090081081876406 ], [ 14.350369906645881, 46.083414822136319 ], [ 14.338122592783407, 46.086954658031004 ], [ 14.333109979441986, 46.090468655504026 ], [ 14.325048454822308, 46.098323472750053 ], [ 14.330629509844016, 46.113361314573012 ], [ 14.327838982782794, 46.118632311232147 ], [ 14.330939569105794, 46.126900540527515 ], [ 14.337812534420891, 46.134600328142596 ], [ 14.357346225647802, 46.145349026136614 ], [ 14.369128452416135, 46.14718353878925 ], [ 14.377500033599631, 46.150206610746466 ], [ 14.382305942265418, 46.155425930562217 ], [ 14.384166294239094, 46.158164780779998 ], [ 14.393829786615356, 46.160335191116133 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-052", "NAME_1": "Kranj" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.406542189370555, 46.191754461898881 ], [ 14.411348097136965, 46.175011297733192 ], [ 14.41429365382902, 46.170541286750961 ], [ 14.393829786615356, 46.160335191116133 ], [ 14.385096470225903, 46.176354884870022 ], [ 14.379825473566711, 46.181470851898268 ], [ 14.371763949846411, 46.182969469565364 ], [ 14.368043246798379, 46.182349351941014 ], [ 14.364167515018778, 46.183176174240998 ], [ 14.363082310300342, 46.187930406063344 ], [ 14.364942661374698, 46.191651109111376 ], [ 14.36711307081157, 46.194519151437646 ], [ 14.365407749368103, 46.195578517734361 ], [ 14.34959476118928, 46.19247793231068 ], [ 14.337967564051837, 46.192917181882422 ], [ 14.275852491998876, 46.210823066031651 ], [ 14.269496290621305, 46.214388740348056 ], [ 14.269651320252194, 46.219453030532918 ], [ 14.272131788950901, 46.222656968744104 ], [ 14.275542432737041, 46.224672350348669 ], [ 14.278022902335067, 46.226713569475635 ], [ 14.278643019060041, 46.22968496369009 ], [ 14.277247755979147, 46.232139593967077 ], [ 14.275387404005471, 46.234077460306537 ], [ 14.248567336313499, 46.242965807226199 ], [ 14.221902297353154, 46.250407213322205 ], [ 14.208053013036135, 46.255729885026142 ], [ 14.192240023957936, 46.268080553474761 ], [ 14.1665051609844, 46.281309719268108 ], [ 14.179062534108652, 46.284151923172715 ], [ 14.22794843856957, 46.275056871577362 ], [ 14.23430463994714, 46.273196520503006 ], [ 14.274612257649551, 46.274901841946416 ], [ 14.298383415861963, 46.268287258150394 ], [ 14.325048454822308, 46.254748033095211 ], [ 14.330009393118985, 46.256505032281382 ], [ 14.33279992018015, 46.260742499266883 ], [ 14.334660272153826, 46.270457669385905 ], [ 14.330164421850554, 46.277278957857618 ], [ 14.31543663928943, 46.291257433383805 ], [ 14.311560906610509, 46.293298652510771 ], [ 14.311250848248051, 46.297071031502867 ], [ 14.312491081698056, 46.300636704919953 ], [ 14.320862663780872, 46.306346951150829 ], [ 14.322878045385494, 46.311669622854765 ], [ 14.328614129138714, 46.314124254031071 ], [ 14.326288690070953, 46.321358954552068 ], [ 14.33031945238082, 46.336810208424367 ], [ 14.338122592783407, 46.340169176266443 ], [ 14.35052493717609, 46.34838572871837 ], [ 14.359516635983937, 46.350814521472955 ], [ 14.405456983752799, 46.351641343772997 ], [ 14.39367475788373, 46.326216539161919 ], [ 14.38928226126734, 46.312057197381705 ], [ 14.386646762937744, 46.307044583140964 ], [ 14.382771030258823, 46.303530584768623 ], [ 14.378740268848333, 46.304047350504788 ], [ 14.368973422785245, 46.306269435885724 ], [ 14.366803013348374, 46.303737291242953 ], [ 14.368198276429325, 46.298001207489733 ], [ 14.371298861852949, 46.293479518764741 ], [ 14.379825473566711, 46.289267890200961 ], [ 14.389592318730536, 46.291231594062765 ], [ 14.417239211420451, 46.288906154995004 ], [ 14.414913770554051, 46.279139308931917 ], [ 14.402201368698172, 46.26668528949449 ], [ 14.392434522635085, 46.240485338527549 ], [ 14.384476352601553, 46.230356757258505 ], [ 14.383081088621338, 46.224517319818403 ], [ 14.384166294239094, 46.221700955234894 ], [ 14.386801791669313, 46.219401353689477 ], [ 14.388972202005505, 46.217075913722397 ], [ 14.406542189370555, 46.191754461898881 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-122", "NAME_1": "Škofja Loka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.248567336313499, 46.242965807226199 ], [ 14.275387404005471, 46.234077460306537 ], [ 14.277247755979147, 46.232139593967077 ], [ 14.278643019060041, 46.22968496369009 ], [ 14.278022902335067, 46.226713569475635 ], [ 14.275542432737041, 46.224672350348669 ], [ 14.272131788950901, 46.222656968744104 ], [ 14.269651320252194, 46.219453030532918 ], [ 14.269496290621305, 46.214388740348056 ], [ 14.275852491998876, 46.210823066031651 ], [ 14.337967564051837, 46.192917181882422 ], [ 14.34959476118928, 46.19247793231068 ], [ 14.365407749368103, 46.195578517734361 ], [ 14.36711307081157, 46.194519151437646 ], [ 14.364942661374698, 46.191651109111376 ], [ 14.363082310300342, 46.187930406063344 ], [ 14.364167515018778, 46.183176174240998 ], [ 14.368043246798379, 46.182349351941014 ], [ 14.371763949846411, 46.182969469565364 ], [ 14.379825473566711, 46.181470851898268 ], [ 14.385096470225903, 46.176354884870022 ], [ 14.393829786615356, 46.160335191116133 ], [ 14.384166294239094, 46.158164780779998 ], [ 14.382305942265418, 46.155425930562217 ], [ 14.377500033599631, 46.150206610746466 ], [ 14.369128452416135, 46.14718353878925 ], [ 14.357346225647802, 46.145349026136614 ], [ 14.337812534420891, 46.134600328142596 ], [ 14.330939569105794, 46.126900540527515 ], [ 14.327838982782794, 46.118632311232147 ], [ 14.330629509844016, 46.113361314573012 ], [ 14.325048454822308, 46.098323472750053 ], [ 14.267325881184433, 46.106488349257916 ], [ 14.23197920087938, 46.099899603883614 ], [ 14.211153599359136, 46.088143216436265 ], [ 14.208053013036135, 46.097134915244112 ], [ 14.200766635671698, 46.10250926379149 ], [ 14.199836459684832, 46.111087551449316 ], [ 14.199991489315778, 46.119975898368978 ], [ 14.203092074739459, 46.12545359970386 ], [ 14.2069678083177, 46.13005280189526 ], [ 14.206347689794029, 46.134703680930102 ], [ 14.204797397981508, 46.137985134406392 ], [ 14.200456577309183, 46.141008206363608 ], [ 14.201076694034214, 46.144212145474114 ], [ 14.203557162732864, 46.148966376397141 ], [ 14.208363071398594, 46.155167548143822 ], [ 14.214564243145276, 46.159146632710929 ], [ 14.222832472440643, 46.170825506691756 ], [ 14.219060093448547, 46.175166327364082 ], [ 14.213013950433435, 46.179197088774629 ], [ 14.204332309988104, 46.180850735173237 ], [ 14.185883822580308, 46.180075588817317 ], [ 14.173481479986322, 46.178292752108803 ], [ 14.161957634737064, 46.179377956827238 ], [ 14.16976077603897, 46.188705553318584 ], [ 14.190844760876985, 46.193692328238342 ], [ 14.198751254966453, 46.198937486475813 ], [ 14.215959507125547, 46.204751085494195 ], [ 14.221540562147197, 46.205448717484273 ], [ 14.22546796987092, 46.206843980565225 ], [ 14.230428908167539, 46.210668036400762 ], [ 14.235234815934007, 46.228186346922371 ], [ 14.242831251660903, 46.233664049156516 ], [ 14.248567336313499, 46.242965807226199 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-146", "NAME_1": "Železniki" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.1665051609844, 46.281309719268108 ], [ 14.192240023957936, 46.268080553474761 ], [ 14.208053013036135, 46.255729885026142 ], [ 14.221902297353154, 46.250407213322205 ], [ 14.248567336313499, 46.242965807226199 ], [ 14.242831251660903, 46.233664049156516 ], [ 14.235234815934007, 46.228186346922371 ], [ 14.230428908167539, 46.210668036400762 ], [ 14.22546796987092, 46.206843980565225 ], [ 14.221540562147197, 46.205448717484273 ], [ 14.215959507125547, 46.204751085494195 ], [ 14.198751254966453, 46.198937486475813 ], [ 14.190844760876985, 46.193692328238342 ], [ 14.16976077603897, 46.188705553318584 ], [ 14.161957634737064, 46.179377956827238 ], [ 14.097723830090672, 46.170360418698351 ], [ 14.094313185405156, 46.167595730058849 ], [ 14.073694288560546, 46.158061427992493 ], [ 14.067493116813864, 46.167285671696391 ], [ 14.040621372278508, 46.173150947558156 ], [ 14.002949252905694, 46.175683092200927 ], [ 13.99359581889189, 46.178060208112072 ], [ 13.988479851863644, 46.180669868019947 ], [ 13.988169792601809, 46.18612173093311 ], [ 13.989254998219565, 46.194596665803488 ], [ 14.004964633610939, 46.219866440783619 ], [ 14.005119663241828, 46.226558538945369 ], [ 13.997006462678087, 46.239296780122288 ], [ 14.00961551264578, 46.2464539662775 ], [ 14.029149203872635, 46.25009715406037 ], [ 14.085321485697989, 46.243947659157129 ], [ 14.093538039049236, 46.2464539662775 ], [ 14.095863478116996, 46.251905829190662 ], [ 14.098964064439997, 46.267408759007026 ], [ 14.103149854582114, 46.274126694691176 ], [ 14.11059126067812, 46.281309719268108 ], [ 14.121494989202347, 46.283040880032559 ], [ 14.13312218633979, 46.283841864810199 ], [ 14.1665051609844, 46.281309719268108 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-004", "NAME_1": "Bohinj" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.179062534108652, 46.284151923172715 ], [ 14.1665051609844, 46.281309719268108 ], [ 14.13312218633979, 46.283841864810199 ], [ 14.121494989202347, 46.283040880032559 ], [ 14.11059126067812, 46.281309719268108 ], [ 14.103149854582114, 46.274126694691176 ], [ 14.098964064439997, 46.267408759007026 ], [ 14.095863478116996, 46.251905829190662 ], [ 14.093538039049236, 46.2464539662775 ], [ 14.085321485697989, 46.243947659157129 ], [ 14.029149203872635, 46.25009715406037 ], [ 14.00961551264578, 46.2464539662775 ], [ 13.997006462678087, 46.239296780122288 ], [ 13.997006462678087, 46.239400132909793 ], [ 13.894945509927311, 46.229995022052606 ], [ 13.880631137616888, 46.230124213261831 ], [ 13.865748325424875, 46.231700344395335 ], [ 13.820893182374448, 46.241803087242658 ], [ 13.770767042664886, 46.261982734515584 ], [ 13.736660596709157, 46.286115627933839 ], [ 13.727358840438114, 46.301670233694324 ], [ 13.742241651730808, 46.326009832687589 ], [ 13.749528029095245, 46.335259914813207 ], [ 13.7641007829248, 46.345078436820359 ], [ 13.828024530107939, 46.369082139928764 ], [ 13.841718783894748, 46.382182115412263 ], [ 13.84791995564143, 46.381226101003733 ], [ 13.878925815274158, 46.366472480020889 ], [ 13.899286329700317, 46.366601671230114 ], [ 13.947087030342175, 46.359806220280802 ], [ 13.96414025197106, 46.352313137341412 ], [ 13.983208856103829, 46.34766225830657 ], [ 13.998246697926731, 46.337947089086867 ], [ 14.009305454283265, 46.336396796375027 ], [ 14.022327915400979, 46.330350654259234 ], [ 14.028374058416034, 46.32626821600536 ], [ 14.033955111639102, 46.321333116130404 ], [ 14.043566928970563, 46.315235297171228 ], [ 14.057881301281043, 46.312108873325826 ], [ 14.065787795370454, 46.31293569652513 ], [ 14.074159376553951, 46.314744370756102 ], [ 14.080050489938174, 46.316630561151442 ], [ 14.08671674967826, 46.316010444426468 ], [ 14.09152265834399, 46.310661933401491 ], [ 14.097258742097267, 46.300946764181788 ], [ 14.101599561870273, 46.298931383476543 ], [ 14.111108026414286, 46.306708686356785 ], [ 14.159632195669303, 46.302936306465369 ], [ 14.164903192328438, 46.304305732023863 ], [ 14.171621128012646, 46.304977524692958 ], [ 14.175186802329051, 46.303788967187074 ], [ 14.180147738827088, 46.298776353845653 ], [ 14.179062534108652, 46.284151923172715 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-082", "NAME_1": "Naklo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.326288690070953, 46.321358954552068 ], [ 14.328614129138714, 46.314124254031071 ], [ 14.322878045385494, 46.311669622854765 ], [ 14.320862663780872, 46.306346951150829 ], [ 14.312491081698056, 46.300636704919953 ], [ 14.311250848248051, 46.297071031502867 ], [ 14.311560906610509, 46.293298652510771 ], [ 14.31543663928943, 46.291257433383805 ], [ 14.330164421850554, 46.277278957857618 ], [ 14.334660272153826, 46.270457669385905 ], [ 14.33279992018015, 46.260742499266883 ], [ 14.330009393118985, 46.256505032281382 ], [ 14.325048454822308, 46.254748033095211 ], [ 14.298383415861963, 46.268287258150394 ], [ 14.274612257649551, 46.274901841946416 ], [ 14.267635938647629, 46.290353094919396 ], [ 14.266085645935789, 46.297174384290372 ], [ 14.267170850654225, 46.326139023896815 ], [ 14.289236688322489, 46.322392483326439 ], [ 14.295127800807336, 46.319705309052722 ], [ 14.300708855829043, 46.318981839540243 ], [ 14.326288690070953, 46.321358954552068 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-102", "NAME_1": "Radovljica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.23430463994714, 46.273196520503006 ], [ 14.22794843856957, 46.275056871577362 ], [ 14.179062534108652, 46.284151923172715 ], [ 14.180147738827088, 46.298776353845653 ], [ 14.175186802329051, 46.303788967187074 ], [ 14.171621128012646, 46.304977524692958 ], [ 14.164903192328438, 46.304305732023863 ], [ 14.159632195669303, 46.302936306465369 ], [ 14.111108026414286, 46.306708686356785 ], [ 14.116223993442532, 46.318206692285003 ], [ 14.12909142402998, 46.325958156743525 ], [ 14.132502068715496, 46.330040594997456 ], [ 14.136067743031902, 46.336551826005916 ], [ 14.150795525593026, 46.346809596685489 ], [ 14.15219078867392, 46.35184804934795 ], [ 14.149245232881185, 46.356964016376253 ], [ 14.142734001872668, 46.366059067971605 ], [ 14.137463006112853, 46.372156886930782 ], [ 14.159322137306788, 46.381717027418858 ], [ 14.168675571320534, 46.381045233850443 ], [ 14.180147738827088, 46.381768704262242 ], [ 14.19053470161515, 46.386936347234609 ], [ 14.194875523186852, 46.393680121340481 ], [ 14.200146518946667, 46.403834540131925 ], [ 14.214564243145276, 46.416986192458808 ], [ 14.223142530803159, 46.421766261803498 ], [ 14.238180372626061, 46.425254421754119 ], [ 14.252908156086505, 46.413498033407507 ], [ 14.255233595154266, 46.39019196228918 ], [ 14.248567336313499, 46.353346666115726 ], [ 14.250427687387855, 46.347507229574944 ], [ 14.253063184818132, 46.344406643251943 ], [ 14.258334180577947, 46.342236232915809 ], [ 14.256318800772021, 46.337507840414503 ], [ 14.260194532551623, 46.330350654259234 ], [ 14.267170850654225, 46.326139023896815 ], [ 14.266085645935789, 46.297174384290372 ], [ 14.267635938647629, 46.290353094919396 ], [ 14.274612257649551, 46.274901841946416 ], [ 14.23430463994714, 46.273196520503006 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-126", "NAME_1": "Šoštanj" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.956327752124025, 46.459851793225653 ], [ 14.999890984881006, 46.446829332107939 ], [ 15.089291212619344, 46.4264688185811 ], [ 15.087740919907503, 46.399881293087162 ], [ 15.082314893617422, 46.38618703930041 ], [ 15.069757521392489, 46.371795151724825 ], [ 15.066605259125367, 46.351693019717061 ], [ 15.039010044178156, 46.355517076451918 ], [ 15.01389529792965, 46.364457099315644 ], [ 14.999890984881006, 46.377221178014906 ], [ 15.002526483210602, 46.386522936084589 ], [ 15.001906365586308, 46.388073228796429 ], [ 15.000201043243521, 46.390295315076685 ], [ 14.997875604175761, 46.392052314262855 ], [ 14.993534784402755, 46.394429430174057 ], [ 14.985628289414024, 46.395773017310887 ], [ 14.971985710672016, 46.393447577343807 ], [ 14.962994011864168, 46.394274400543111 ], [ 14.949764845171444, 46.396780706764162 ], [ 14.939532912014272, 46.401302395489154 ], [ 14.902170851003973, 46.393912665337211 ], [ 14.900930616654648, 46.417632148504822 ], [ 14.891732212271791, 46.423549099411389 ], [ 14.942013380712922, 46.440008042736963 ], [ 14.95586266413062, 46.447242744157279 ], [ 14.956327752124025, 46.459851793225653 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-062", "NAME_1": "Ljubno" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.891732212271791, 46.423549099411389 ], [ 14.900930616654648, 46.417632148504822 ], [ 14.902170851003973, 46.393912665337211 ], [ 14.881655307846188, 46.352468166972301 ], [ 14.881500278215242, 46.337662869146072 ], [ 14.866927524385744, 46.315545356433006 ], [ 14.848013949883864, 46.316087957892933 ], [ 14.810600212929444, 46.337068589943442 ], [ 14.800833367765676, 46.340995999465804 ], [ 14.797577751811787, 46.343373115376949 ], [ 14.780782911701976, 46.338515529867777 ], [ 14.806879509881469, 46.38848663994645 ], [ 14.809049920217603, 46.399131985152962 ], [ 14.805639276431464, 46.408847154372665 ], [ 14.804088982820303, 46.42512523054495 ], [ 14.891732212271791, 46.423549099411389 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-067", "NAME_1": "Luce" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.804088982820303, 46.42512523054495 ], [ 14.805639276431464, 46.408847154372665 ], [ 14.809049920217603, 46.399131985152962 ], [ 14.806879509881469, 46.38848663994645 ], [ 14.780782911701976, 46.338515529867777 ], [ 14.73132856556083, 46.310765286188996 ], [ 14.705697056274118, 46.28691661181216 ], [ 14.685543247422913, 46.286425686296354 ], [ 14.680117222032152, 46.290611477337791 ], [ 14.676861606977582, 46.299654852989022 ], [ 14.670608758387459, 46.31061025745737 ], [ 14.646734245588959, 46.333864650832936 ], [ 14.639912957117247, 46.366369127233384 ], [ 14.669368524038134, 46.364586290524869 ], [ 14.726470981850298, 46.383422349761588 ], [ 14.737529738206831, 46.388951727939855 ], [ 14.742955762698273, 46.392879137462216 ], [ 14.741870557979837, 46.395695502045783 ], [ 14.739855177274592, 46.398615221215437 ], [ 14.740165235637107, 46.407090156085815 ], [ 14.754582960735036, 46.421456204340359 ], [ 14.769930860920454, 46.43127472634751 ], [ 14.775666944673731, 46.431894843072541 ], [ 14.804088982820303, 46.42512523054495 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-068", "NAME_1": "Lukovica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.769775832188884, 46.195914415417917 ], [ 14.785795525942774, 46.199764308775798 ], [ 14.898915235949346, 46.20867849411718 ], [ 14.901705763010511, 46.190979316442281 ], [ 14.8926623882586, 46.179248766517333 ], [ 14.885686069256678, 46.177285060856832 ], [ 14.819901970999126, 46.171910712309511 ], [ 14.816801384676126, 46.17051544922856 ], [ 14.818196648656397, 46.16875845004239 ], [ 14.825017938027429, 46.166019598925345 ], [ 14.828428581813569, 46.160283515172068 ], [ 14.804554070813708, 46.165192775725984 ], [ 14.772101271256645, 46.168370877314089 ], [ 14.729881625636494, 46.162247219033929 ], [ 14.71112308076556, 46.151860257145131 ], [ 14.683837925080184, 46.1439537621564 ], [ 14.676086459722342, 46.150749213105655 ], [ 14.667973260057863, 46.152428697026721 ], [ 14.664407585741458, 46.153772285062871 ], [ 14.661307000317777, 46.156459459336531 ], [ 14.658516473256611, 46.159301663241138 ], [ 14.655105828571095, 46.160877794374699 ], [ 14.651540155154009, 46.161472073577329 ], [ 14.650454950435574, 46.16457265900101 ], [ 14.652470330241556, 46.17030874275423 ], [ 14.663477410653968, 46.185708319783089 ], [ 14.683062777824944, 46.199170030472487 ], [ 14.715928989431291, 46.202193102429703 ], [ 14.735049268608861, 46.197645576182367 ], [ 14.748691847350869, 46.195991929783702 ], [ 14.769775832188884, 46.195914415417917 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-148", "NAME_1": "Benedikt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.902368198033912, 46.583461818807848 ], [ 15.898182406992476, 46.584288642007209 ], [ 15.893066440863549, 46.58819021310785 ], [ 15.875393100710994, 46.605941066726814 ], [ 15.862835727586742, 46.610953680967555 ], [ 15.865781284278853, 46.623252672572733 ], [ 15.8747729830867, 46.636430162422016 ], [ 15.888105502566873, 46.645886949223325 ], [ 15.900662875691125, 46.642114570231229 ], [ 15.904383578739157, 46.641649482237767 ], [ 15.909241164248328, 46.639840807107532 ], [ 15.913271925658819, 46.639659939054923 ], [ 15.918387891787745, 46.639944159895038 ], [ 15.922883742091017, 46.640719306250958 ], [ 15.927999709119263, 46.639504910323353 ], [ 15.931100295442263, 46.638264675074652 ], [ 15.928464797112667, 46.633484604830642 ], [ 15.913271925658819, 46.624079494872774 ], [ 15.913581984021334, 46.618550116694507 ], [ 15.9163725110825, 46.610798652235985 ], [ 15.933270704879135, 46.596406765559777 ], [ 15.926139357145587, 46.59100657769136 ], [ 15.915132276733175, 46.58583893471905 ], [ 15.911411573685143, 46.585167141150635 ], [ 15.905313754725967, 46.585037949941409 ], [ 15.902368198033912, 46.583461818807848 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-057", "NAME_1": "Laško" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.370927769001298, 46.135737209704416 ], [ 15.382709994870368, 46.108193670701326 ], [ 15.378989291822336, 46.097806707913207 ], [ 15.380074497440091, 46.089150905889596 ], [ 15.377283970378926, 46.083854071708004 ], [ 15.368447300302648, 46.072123521783055 ], [ 15.316770867881246, 46.068661201153475 ], [ 15.302663202045096, 46.064707953209449 ], [ 15.292121208726769, 46.059049383821957 ], [ 15.287108595385348, 46.059101061564718 ], [ 15.284008009961667, 46.061994941413388 ], [ 15.282612745981453, 46.067731025166665 ], [ 15.281062453269612, 46.07145172821464 ], [ 15.27672163259723, 46.076076768827818 ], [ 15.268815137608499, 46.079642442244904 ], [ 15.253932326315805, 46.083337306871215 ], [ 15.203496128243728, 46.083699042077114 ], [ 15.19388431181153, 46.082174587786994 ], [ 15.192954135824721, 46.080882677493548 ], [ 15.193729282180641, 46.078479723160683 ], [ 15.200860629914132, 46.072588608877197 ], [ 15.203806186606187, 46.0687903923627 ], [ 15.204891392223942, 46.066413276451499 ], [ 15.201945834632568, 46.060754706164744 ], [ 15.163446892959712, 46.092484036209271 ], [ 15.150114372580219, 46.096928208769782 ], [ 15.146238640800618, 46.099253647837543 ], [ 15.143448113739453, 46.101527410961239 ], [ 15.141897821027612, 46.104266262078283 ], [ 15.142207879390128, 46.10638499647041 ], [ 15.144998407350613, 46.109666449946701 ], [ 15.149029167861784, 46.110028185152601 ], [ 15.15321495890322, 46.108581244328946 ], [ 15.161121453891951, 46.105144762121029 ], [ 15.173213739022799, 46.102250882272358 ], [ 15.176676059652436, 46.103336086990794 ], [ 15.185047641735252, 46.10731517245722 ], [ 15.188458286420769, 46.110880845874306 ], [ 15.188458286420769, 46.116203518477562 ], [ 15.180241733069522, 46.129122625908451 ], [ 15.171663446310959, 46.138166002459002 ], [ 15.159261101918332, 46.14875967082213 ], [ 15.134766473294064, 46.161497911099673 ], [ 15.131045770246089, 46.167285671696391 ], [ 15.11332075414947, 46.183382879816008 ], [ 15.176469354077426, 46.184545599799549 ], [ 15.203961216237133, 46.18824046532518 ], [ 15.216363559730496, 46.198239855384998 ], [ 15.218223910804852, 46.193098049035711 ], [ 15.221634556389631, 46.19247793231068 ], [ 15.229075961586318, 46.191961168373211 ], [ 15.248506300925044, 46.197490546551478 ], [ 15.257342970102002, 46.197128811345522 ], [ 15.264629346567062, 46.193821520346887 ], [ 15.301422966796451, 46.188912257994275 ], [ 15.302973260407612, 46.182194322310124 ], [ 15.301422966796451, 46.179145412830508 ], [ 15.298787469366175, 46.175941473720002 ], [ 15.2950667663182, 46.173564357808857 ], [ 15.290880975276764, 46.172065741940401 ], [ 15.288710564940629, 46.170076198757556 ], [ 15.29005415207746, 46.16744070132728 ], [ 15.293826531968875, 46.165451158144435 ], [ 15.312275017577974, 46.166200466078635 ], [ 15.363331333274402, 46.181315823166699 ], [ 15.374958530411845, 46.167776598111516 ], [ 15.373253208069059, 46.158061427992493 ], [ 15.367052036322377, 46.149638169965556 ], [ 15.370927769001298, 46.135737209704416 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-154", "NAME_1": "Dobje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.382709994870368, 46.108193670701326 ], [ 15.370927769001298, 46.135737209704416 ], [ 15.403328891714978, 46.152170315507647 ], [ 15.407101270707074, 46.152687079445116 ], [ 15.411752149741915, 46.152066961820822 ], [ 15.413302443353075, 46.14912140602803 ], [ 15.421984083798407, 46.141292426304403 ], [ 15.425704786846438, 46.138889471971538 ], [ 15.435006544916121, 46.135013740191937 ], [ 15.438572218333206, 46.13178396355903 ], [ 15.440277540675936, 46.128554186026861 ], [ 15.439037306326611, 46.125763658066319 ], [ 15.43841718870226, 46.122611395799254 ], [ 15.437331983983881, 46.119614163163078 ], [ 15.435626661641095, 46.118115546395302 ], [ 15.431595900230604, 46.118322251970312 ], [ 15.427100050826652, 46.120337633574877 ], [ 15.423069289416162, 46.124006659779525 ], [ 15.420123731824731, 46.125660305278814 ], [ 15.416868116770161, 46.124833482079509 ], [ 15.415782912051725, 46.122353014280179 ], [ 15.413922560078049, 46.120079251156483 ], [ 15.405706007626122, 46.115299180912473 ], [ 15.398367954317621, 46.109511420315755 ], [ 15.394182163276184, 46.108141994757204 ], [ 15.389996372234748, 46.107470201188789 ], [ 15.382709994870368, 46.108193670701326 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-108", "NAME_1": "Ruše" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.563784214370003, 46.50987457924839 ], [ 15.539444613578041, 46.497420558911642 ], [ 15.500480583911781, 46.499280910885318 ], [ 15.408186476324829, 46.477706000531498 ], [ 15.415162795326751, 46.499461778038608 ], [ 15.440587599038452, 46.518478705327936 ], [ 15.449114210752214, 46.531552843289035 ], [ 15.450819533094943, 46.537754015035716 ], [ 15.449889357108134, 46.541913966756113 ], [ 15.459656203171221, 46.550027167319911 ], [ 15.458105909560061, 46.538606675757478 ], [ 15.482807244658602, 46.534498399081826 ], [ 15.495984735407205, 46.537754015035716 ], [ 15.560373568785167, 46.562119452450759 ], [ 15.550296665258884, 46.518013618233852 ], [ 15.563784214370003, 46.50987457924839 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-138", "NAME_1": "Vodice" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.469225702204369, 46.143462835741275 ], [ 14.458683708886042, 46.19325307956592 ], [ 14.466900262237289, 46.198058987332388 ], [ 14.467365350230693, 46.198885810531692 ], [ 14.462869499927479, 46.206146349474409 ], [ 14.500696648931182, 46.202864895098799 ], [ 14.524622836774483, 46.177078355281822 ], [ 14.537800326623767, 46.174184475433151 ], [ 14.537025181167166, 46.161342882368103 ], [ 14.527878451829054, 46.156872870486552 ], [ 14.523847690418563, 46.150309964433291 ], [ 14.51392581472453, 46.145555731711625 ], [ 14.487209099820063, 46.139587103961674 ], [ 14.47635704903854, 46.138786119184033 ], [ 14.469225702204369, 46.143462835741275 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-164", "NAME_1": "Komenda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.537800326623767, 46.174184475433151 ], [ 14.524622836774483, 46.177078355281822 ], [ 14.500696648931182, 46.202864895098799 ], [ 14.552528110084211, 46.243198351222929 ], [ 14.565447218414363, 46.228108832556529 ], [ 14.569943067818315, 46.214853827442141 ], [ 14.582655469674194, 46.198058987332388 ], [ 14.537800326623767, 46.174184475433151 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-072", "NAME_1": "Mengeš" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.51392581472453, 46.145555731711625 ], [ 14.523847690418563, 46.150309964433291 ], [ 14.527878451829054, 46.156872870486552 ], [ 14.537025181167166, 46.161342882368103 ], [ 14.537800326623767, 46.174184475433151 ], [ 14.582655469674194, 46.198058987332388 ], [ 14.579864942612971, 46.192426256366616 ], [ 14.59009687666952, 46.189118964468605 ], [ 14.583740676191212, 46.176458238556847 ], [ 14.589786818307005, 46.147674466103695 ], [ 14.520592075363993, 46.132378241862341 ], [ 14.51392581472453, 46.145555731711625 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-140", "NAME_1": "Vrhnika" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.244071486010284, 46.020240382887323 ], [ 14.246396925977365, 46.013057359209711 ], [ 14.238955518981982, 46.008923245011715 ], [ 14.240505811693822, 46.005460924382135 ], [ 14.245466749990499, 46.001481838915709 ], [ 14.267325881184433, 45.994505519913787 ], [ 14.273837111293631, 45.993937079132877 ], [ 14.276782667985742, 45.995642402374926 ], [ 14.276162551260711, 45.998691310955223 ], [ 14.277557814341662, 46.001946926009794 ], [ 14.283035515676488, 46.003858953927534 ], [ 14.308615349918455, 46.007062893038039 ], [ 14.315591668021057, 46.00918162743011 ], [ 14.341998324563008, 46.014013372718978 ], [ 14.359516635983937, 46.020705470880728 ], [ 14.366647982818165, 46.027475084307696 ], [ 14.385251498957473, 46.032229316129985 ], [ 14.396775343307411, 46.024116116465564 ], [ 14.399100783274491, 46.019361883743898 ], [ 14.398635695281087, 46.015847887170253 ], [ 14.397395460931762, 46.010886948873576 ], [ 14.385871615682504, 46.007941393080785 ], [ 14.378740268848333, 46.002515366790703 ], [ 14.372229037839816, 45.993937079132877 ], [ 14.375329624162816, 45.980449530921078 ], [ 14.365562778099729, 45.96546336504224 ], [ 14.344168734899199, 45.961122545269234 ], [ 14.341688267099812, 45.957918606158728 ], [ 14.337812534420891, 45.954766343891606 ], [ 14.333730096167017, 45.943294176385109 ], [ 14.334350212891991, 45.934354153521326 ], [ 14.337502476058432, 45.925517483445105 ], [ 14.357501255278692, 45.889214788731465 ], [ 14.363857455756943, 45.882315985894024 ], [ 14.376259800149626, 45.871489773534222 ], [ 14.364787631743809, 45.867484850545395 ], [ 14.325668573345979, 45.887328600134765 ], [ 14.309390496274375, 45.891230170336087 ], [ 14.299158563117203, 45.885726630579541 ], [ 14.285671014006084, 45.907379055299145 ], [ 14.260349562182512, 45.92923818649308 ], [ 14.238955518981982, 45.944379381103545 ], [ 14.229963820174135, 45.948720200876551 ], [ 14.223555941953123, 45.950735582481116 ], [ 14.218750034186712, 45.950658067216011 ], [ 14.21425418478276, 45.952492580767967 ], [ 14.21099856882887, 45.957195135746872 ], [ 14.21270389207092, 45.962052721256043 ], [ 14.217044711843982, 45.967892157796825 ], [ 14.215494419132142, 45.975385239836896 ], [ 14.219835238905148, 45.98918284820985 ], [ 14.22856855619392, 45.993136095254556 ], [ 14.229808791442565, 45.995022284750632 ], [ 14.205882602699944, 46.006184393894614 ], [ 14.196270786267746, 46.008096421812411 ], [ 14.19037967288358, 46.024684557246474 ], [ 14.244071486010284, 46.020240382887323 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-162", "NAME_1": "Horjul" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.273837111293631, 45.993937079132877 ], [ 14.267325881184433, 45.994505519913787 ], [ 14.245466749990499, 46.001481838915709 ], [ 14.240505811693822, 46.005460924382135 ], [ 14.238955518981982, 46.008923245011715 ], [ 14.246396925977365, 46.013057359209711 ], [ 14.244071486010284, 46.020240382887323 ], [ 14.243451369285253, 46.031454168874745 ], [ 14.25259809682467, 46.039722398170113 ], [ 14.257093947127942, 46.041246853359553 ], [ 14.282415398951514, 46.045561834710895 ], [ 14.323188103747952, 46.042667954862225 ], [ 14.330939569105794, 46.040652574156923 ], [ 14.337140740852476, 46.037629503099083 ], [ 14.343083530180763, 46.029102892284641 ], [ 14.344323765429408, 46.025201321183999 ], [ 14.344478794161034, 46.021894029285988 ], [ 14.343238559811653, 46.019413561486658 ], [ 14.341998324563008, 46.014013372718978 ], [ 14.315591668021057, 46.00918162743011 ], [ 14.308615349918455, 46.007062893038039 ], [ 14.283035515676488, 46.003858953927534 ], [ 14.277557814341662, 46.001946926009794 ], [ 14.276162551260711, 45.998691310955223 ], [ 14.276782667985742, 45.995642402374926 ], [ 14.273837111293631, 45.993937079132877 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-153", "NAME_1": "Cerkvenjak" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.928464797112667, 46.541913966756113 ], [ 15.919628127036447, 46.565323391561265 ], [ 15.922263625365986, 46.568837389034229 ], [ 15.926449416407422, 46.573591619957256 ], [ 15.938076612645546, 46.579586087028247 ], [ 15.943502638036307, 46.581188056583528 ], [ 15.95590498242899, 46.588216051529514 ], [ 15.978280876661131, 46.585968125928218 ], [ 15.968514032396683, 46.566150213861249 ], [ 15.986652458743947, 46.546668199477779 ], [ 15.95916059658424, 46.533439032785111 ], [ 15.954199660086203, 46.532973944791706 ], [ 15.947533400346117, 46.533413194363391 ], [ 15.945207961278356, 46.535867825539697 ], [ 15.928464797112667, 46.541913966756113 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-186", "NAME_1": "Trzin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.520592075363993, 46.132378241862341 ], [ 14.589786818307005, 46.147674466103695 ], [ 14.575834181202481, 46.134445299411027 ], [ 14.57102827343607, 46.124523423716994 ], [ 14.569322951093284, 46.107780260450625 ], [ 14.539660678597443, 46.116229355999963 ], [ 14.520592075363993, 46.132378241862341 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-097", "NAME_1": "Puconci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.097446729682815, 46.762107245552897 ], [ 16.105198195040657, 46.763838406317348 ], [ 16.112019484411633, 46.767378242212089 ], [ 16.126902296603703, 46.787506211742254 ], [ 16.136410760248395, 46.82944163742161 ], [ 16.150053338091084, 46.826547757572939 ], [ 16.154549188394299, 46.822258612844678 ], [ 16.16075036014098, 46.817917792172352 ], [ 16.164471063189012, 46.810476386076346 ], [ 16.183694696053351, 46.797583116167857 ], [ 16.191032749361852, 46.796006985034296 ], [ 16.197854037833565, 46.793629869123151 ], [ 16.201884800143375, 46.79029673880342 ], [ 16.203900180848677, 46.781899319198203 ], [ 16.193358189328933, 46.762262275183843 ], [ 16.197233921108534, 46.757353013730551 ], [ 16.210566440588764, 46.745002346181309 ], [ 16.190102573375043, 46.727225654140625 ], [ 16.184314812778382, 46.72712230135312 ], [ 16.17826866976327, 46.720869451863678 ], [ 16.175633172332994, 46.718699042426863 ], [ 16.178733757756675, 46.697563382544047 ], [ 16.151448602071298, 46.689966945917774 ], [ 16.144317254337807, 46.691775621048066 ], [ 16.108298781363658, 46.690380357067795 ], [ 16.092330762654569, 46.694927883315131 ], [ 16.084114211101962, 46.699604600771693 ], [ 16.075122511394795, 46.701309923114422 ], [ 16.066544223736912, 46.704332994172319 ], [ 16.059102816741586, 46.70919057878217 ], [ 16.053366732988309, 46.719810086466282 ], [ 16.056467319311309, 46.728930976483355 ], [ 16.05786258329158, 46.735364692226767 ], [ 16.05553714422382, 46.755957749750337 ], [ 16.063598667044857, 46.764174303101584 ], [ 16.082408887859856, 46.764846095770679 ], [ 16.091245557936134, 46.763683376686458 ], [ 16.097446729682815, 46.762107245552897 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-158", "NAME_1": "Grad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.136410760248395, 46.82944163742161 ], [ 16.126902296603703, 46.787506211742254 ], [ 16.112019484411633, 46.767378242212089 ], [ 16.105198195040657, 46.763838406317348 ], [ 16.097446729682815, 46.762107245552897 ], [ 16.091245557936134, 46.763683376686458 ], [ 16.082408887859856, 46.764846095770679 ], [ 16.063598667044857, 46.764174303101584 ], [ 16.052126498638984, 46.77009125400815 ], [ 16.051661410645579, 46.775672309029801 ], [ 16.056002232217224, 46.816057441097996 ], [ 16.072435337121078, 46.818796292215097 ], [ 16.077758009724334, 46.822516995263072 ], [ 16.092020705191374, 46.83021678287821 ], [ 16.098841993663086, 46.832077134851886 ], [ 16.125196974260916, 46.833007310838696 ], [ 16.136410760248395, 46.82944163742161 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-080", "NAME_1": "Murska Sobota" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.151448602071298, 46.689966945917774 ], [ 16.178733757756675, 46.697563382544047 ], [ 16.191652866086883, 46.679476630342208 ], [ 16.192117954080288, 46.672061061768545 ], [ 16.1981640970954, 46.666919257217899 ], [ 16.203590121586842, 46.663482774110719 ], [ 16.225914340774182, 46.655498766554786 ], [ 16.240797152966195, 46.653586737737726 ], [ 16.205295443929572, 46.629350491531909 ], [ 16.192272982811915, 46.625629788483934 ], [ 16.182609491334915, 46.615268663218217 ], [ 16.160802036085101, 46.60588939078275 ], [ 16.120391065595186, 46.619118557475417 ], [ 16.110314162068903, 46.623872789297764 ], [ 16.120391065595186, 46.636946926359542 ], [ 16.123026563924782, 46.643871568518023 ], [ 16.118685744151776, 46.650744533833119 ], [ 16.114034865116935, 46.656454780063996 ], [ 16.108453810095227, 46.661544907771258 ], [ 16.104423048684737, 46.67157013625274 ], [ 16.103027784704466, 46.676789456068491 ], [ 16.108298781363658, 46.690380357067795 ], [ 16.144317254337807, 46.691775621048066 ], [ 16.151448602071298, 46.689966945917774 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-182", "NAME_1": "Sveti Andraž v Slovenskih Goricah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.924123976440342, 46.534369207872601 ], [ 15.928464797112667, 46.541913966756113 ], [ 15.945207961278356, 46.535867825539697 ], [ 15.947533400346117, 46.533413194363391 ], [ 15.954199660086203, 46.532973944791706 ], [ 15.95916059658424, 46.533439032785111 ], [ 15.986652458743947, 46.546668199477779 ], [ 16.007426385219503, 46.524395657133823 ], [ 15.983241814957751, 46.519253852583233 ], [ 15.971459588189418, 46.5139311790806 ], [ 15.962157830119736, 46.510908108022761 ], [ 15.954664748079665, 46.506102200256294 ], [ 15.949548781051362, 46.501632188374742 ], [ 15.947223341983658, 46.48716278733275 ], [ 15.928619825844294, 46.504086819551048 ], [ 15.934200880865944, 46.518917954899678 ], [ 15.93373579287254, 46.522690334791093 ], [ 15.932340528892269, 46.527341213825935 ], [ 15.930325148187023, 46.529821682524585 ], [ 15.924123976440342, 46.534369207872601 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-008", "NAME_1": "Brezovica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.407317335726475, 46.035769151125407 ], [ 14.412433301855401, 46.034864814459581 ], [ 14.428866407658575, 46.029025377019536 ], [ 14.443129103125614, 46.016002915901822 ], [ 14.455428093831472, 46.009543361736746 ], [ 14.457753533798552, 46.00535757069531 ], [ 14.451862420414329, 45.999699002207137 ], [ 14.443284132756503, 45.993937079132877 ], [ 14.435997756291385, 45.986754055455265 ], [ 14.435532668297981, 45.979932766084289 ], [ 14.445144483830859, 45.974093329543507 ], [ 14.459148796879447, 45.948151760095641 ], [ 14.458838739416251, 45.937118842160828 ], [ 14.463954704645914, 45.920608221991813 ], [ 14.466900262237289, 45.905983792218194 ], [ 14.490154657411495, 45.880869045969689 ], [ 14.442198927138747, 45.863454088235585 ], [ 14.435842725761177, 45.862937324298059 ], [ 14.417549268883647, 45.870895494331592 ], [ 14.407007277363959, 45.891617743963707 ], [ 14.409952834056014, 45.898955797272208 ], [ 14.411658156398801, 45.909704495266226 ], [ 14.414758741822482, 45.922623602697058 ], [ 14.41274336111718, 45.926215115435184 ], [ 14.406852247733013, 45.92923818649308 ], [ 14.401581251973198, 45.929186510549016 ], [ 14.391917758697616, 45.933734035897032 ], [ 14.384166294239094, 45.939315090918683 ], [ 14.370058628402944, 45.951975815931121 ], [ 14.365562778099729, 45.96546336504224 ], [ 14.375329624162816, 45.980449530921078 ], [ 14.372229037839816, 45.993937079132877 ], [ 14.378740268848333, 46.002515366790703 ], [ 14.385871615682504, 46.007941393080785 ], [ 14.397395460931762, 46.010886948873576 ], [ 14.398635695281087, 46.015847887170253 ], [ 14.399100783274491, 46.019361883743898 ], [ 14.396775343307411, 46.024116116465564 ], [ 14.385251498957473, 46.032229316129985 ], [ 14.407317335726475, 46.035769151125407 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-021", "NAME_1": "Dobrova-Polhov Gradec" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.428866407658575, 46.029025377019536 ], [ 14.412433301855401, 46.034864814459581 ], [ 14.407317335726475, 46.035769151125407 ], [ 14.385251498957473, 46.032229316129985 ], [ 14.366647982818165, 46.027475084307696 ], [ 14.359516635983937, 46.020705470880728 ], [ 14.341998324563008, 46.014013372718978 ], [ 14.343238559811653, 46.019413561486658 ], [ 14.344478794161034, 46.021894029285988 ], [ 14.344323765429408, 46.025201321183999 ], [ 14.343083530180763, 46.029102892284641 ], [ 14.337140740852476, 46.037629503099083 ], [ 14.330939569105794, 46.040652574156923 ], [ 14.323188103747952, 46.042667954862225 ], [ 14.282415398951514, 46.045561834710895 ], [ 14.257093947127942, 46.041246853359553 ], [ 14.25259809682467, 46.039722398170113 ], [ 14.243451369285253, 46.031454168874745 ], [ 14.244071486010284, 46.020240382887323 ], [ 14.19037967288358, 46.024684557246474 ], [ 14.19286014158223, 46.034683946406972 ], [ 14.186813998567175, 46.037913723039878 ], [ 14.206812777787434, 46.060082913495648 ], [ 14.207587925042674, 46.066904201967304 ], [ 14.210068393741381, 46.073467108919942 ], [ 14.211153599359136, 46.088143216436265 ], [ 14.23197920087938, 46.099899603883614 ], [ 14.267325881184433, 46.106488349257916 ], [ 14.325048454822308, 46.098323472750053 ], [ 14.333109979441986, 46.090468655504026 ], [ 14.338122592783407, 46.086954658031004 ], [ 14.350369906645881, 46.083414822136319 ], [ 14.37191898037662, 46.090081081876406 ], [ 14.4085575700758, 46.082872218877753 ], [ 14.41506880108426, 46.082768866989568 ], [ 14.420804884837537, 46.081063543747518 ], [ 14.424060499892164, 46.078247179163952 ], [ 14.43243208197498, 46.063028469288383 ], [ 14.434757521042741, 46.060651354276558 ], [ 14.437237989741391, 46.056181342395007 ], [ 14.439873488070987, 46.050212713745736 ], [ 14.440803664057853, 46.040962633418758 ], [ 14.440338576064391, 46.036156724753027 ], [ 14.439563428809151, 46.033753771319482 ], [ 14.428866407658575, 46.029025377019536 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-027", "NAME_1": "Gorenja vas-Poljane" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.211153599359136, 46.088143216436265 ], [ 14.210068393741381, 46.073467108919942 ], [ 14.207587925042674, 46.066904201967304 ], [ 14.206812777787434, 46.060082913495648 ], [ 14.186813998567175, 46.037913723039878 ], [ 14.165885044259369, 46.050006008170726 ], [ 14.159012078944272, 46.054966946467403 ], [ 14.1464547049207, 46.066129054712064 ], [ 14.140563592435853, 46.069746405871911 ], [ 14.12986657128522, 46.073157050557427 ], [ 14.050233188710649, 46.085094306057329 ], [ 14.038761021204152, 46.083337306871215 ], [ 14.033024936551556, 46.081631985427748 ], [ 14.030079379859501, 46.073157050557427 ], [ 14.023258091387788, 46.079048163042273 ], [ 14.021862827407517, 46.082200426208658 ], [ 14.024343296106224, 46.092690741784281 ], [ 14.02775393989242, 46.101630763748744 ], [ 14.073694288560546, 46.158061427992493 ], [ 14.094313185405156, 46.167595730058849 ], [ 14.097723830090672, 46.170360418698351 ], [ 14.161957634737064, 46.179377956827238 ], [ 14.173481479986322, 46.178292752108803 ], [ 14.185883822580308, 46.180075588817317 ], [ 14.204332309988104, 46.180850735173237 ], [ 14.213013950433435, 46.179197088774629 ], [ 14.219060093448547, 46.175166327364082 ], [ 14.222832472440643, 46.170825506691756 ], [ 14.214564243145276, 46.159146632710929 ], [ 14.208363071398594, 46.155167548143822 ], [ 14.203557162732864, 46.148966376397141 ], [ 14.201076694034214, 46.144212145474114 ], [ 14.200456577309183, 46.141008206363608 ], [ 14.204797397981508, 46.137985134406392 ], [ 14.206347689794029, 46.134703680930102 ], [ 14.2069678083177, 46.13005280189526 ], [ 14.203092074739459, 46.12545359970386 ], [ 14.199991489315778, 46.119975898368978 ], [ 14.199836459684832, 46.111087551449316 ], [ 14.200766635671698, 46.10250926379149 ], [ 14.208053013036135, 46.097134915244112 ], [ 14.211153599359136, 46.088143216436265 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-064", "NAME_1": "Logatec" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.186813998567175, 46.037913723039878 ], [ 14.19286014158223, 46.034683946406972 ], [ 14.19037967288358, 46.024684557246474 ], [ 14.196270786267746, 46.008096421812411 ], [ 14.205882602699944, 46.006184393894614 ], [ 14.229808791442565, 45.995022284750632 ], [ 14.22856855619392, 45.993136095254556 ], [ 14.219835238905148, 45.98918284820985 ], [ 14.215494419132142, 45.975385239836896 ], [ 14.217044711843982, 45.967892157796825 ], [ 14.21270389207092, 45.962052721256043 ], [ 14.21099856882887, 45.957195135746872 ], [ 14.21425418478276, 45.952492580767967 ], [ 14.218750034186712, 45.950658067216011 ], [ 14.223555941953123, 45.950735582481116 ], [ 14.229963820174135, 45.948720200876551 ], [ 14.238955518981982, 45.944379381103545 ], [ 14.260349562182512, 45.92923818649308 ], [ 14.285671014006084, 45.907379055299145 ], [ 14.299158563117203, 45.885726630579541 ], [ 14.276472608723907, 45.846116644867266 ], [ 14.222005649241282, 45.862833971510554 ], [ 14.199681430953262, 45.872419949521031 ], [ 14.179062534108652, 45.875494697422312 ], [ 14.125990837706979, 45.868802599260505 ], [ 14.120874870678733, 45.878750312476939 ], [ 14.10904096796628, 45.901487941914979 ], [ 14.104235060199869, 45.906190496893885 ], [ 14.100669385883464, 45.913967799774127 ], [ 14.100359328420268, 45.921538397978679 ], [ 14.101754592400482, 45.9303750680549 ], [ 14.108730909603764, 45.939754340490424 ], [ 14.114828728562941, 45.951562404781157 ], [ 14.116068962912266, 45.961587633262639 ], [ 14.114053582207021, 45.966083481767271 ], [ 14.109557732803125, 45.967323717015915 ], [ 14.108575880872195, 45.96928742087772 ], [ 14.11079796715245, 45.973266507243466 ], [ 14.120719841947107, 45.978666694212563 ], [ 14.12893639529841, 45.984609483540794 ], [ 14.137307977381226, 45.992335110476915 ], [ 14.138703241361497, 46.00577098184533 ], [ 14.171156040019241, 46.020188706943259 ], [ 14.186813998567175, 46.037913723039878 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-185", "NAME_1": "Trnovska vas" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.892136264876683, 46.546409817059384 ], [ 15.924123976440342, 46.534369207872601 ], [ 15.930325148187023, 46.529821682524585 ], [ 15.932340528892269, 46.527341213825935 ], [ 15.93373579287254, 46.522690334791093 ], [ 15.934200880865944, 46.518917954899678 ], [ 15.928619825844294, 46.504086819551048 ], [ 15.887950473835303, 46.499849352565548 ], [ 15.867331576990694, 46.500056057241238 ], [ 15.854464146403245, 46.506308905831304 ], [ 15.856944614202575, 46.515791531054276 ], [ 15.860045199626256, 46.519899806830608 ], [ 15.861905551599932, 46.525635891483205 ], [ 15.865006137922933, 46.529485785740405 ], [ 15.867641636252472, 46.533723252725906 ], [ 15.872912632012344, 46.537934882189063 ], [ 15.884229770787272, 46.542224026017948 ], [ 15.892136264876683, 46.546409817059384 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-018", "NAME_1": "Destrnik" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.823406609927076, 46.494940091112312 ], [ 15.854464146403245, 46.506308905831304 ], [ 15.867331576990694, 46.500056057241238 ], [ 15.887950473835303, 46.499849352565548 ], [ 15.928619825844294, 46.504086819551048 ], [ 15.947223341983658, 46.48716278733275 ], [ 15.944277785291547, 46.480522366014384 ], [ 15.922418654097612, 46.47096222642557 ], [ 15.908414341048967, 46.460394396484162 ], [ 15.905468784356913, 46.456544501327642 ], [ 15.900507846959556, 46.453728135844756 ], [ 15.892911411232603, 46.4522553574987 ], [ 15.884849888411622, 46.453573106213867 ], [ 15.869967075320233, 46.460006821957222 ], [ 15.845420769852637, 46.482847805082088 ], [ 15.823406609927076, 46.494940091112312 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-098", "NAME_1": "Race-Fram" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.709511752665264, 46.464967760253899 ], [ 15.716953158761271, 46.460006821957222 ], [ 15.723309360138842, 46.449723211956666 ], [ 15.723309360138842, 46.44631256817047 ], [ 15.721914097057891, 46.443418688321799 ], [ 15.7344714701822, 46.428329168756136 ], [ 15.687497592739703, 46.408614610375935 ], [ 15.667602166306892, 46.423729967463998 ], [ 15.65333947083991, 46.428484199286345 ], [ 15.641712273702467, 46.431119696716621 ], [ 15.640161980990626, 46.434530341402137 ], [ 15.55711795373054, 46.46868846330193 ], [ 15.547971226191123, 46.47442454705515 ], [ 15.547816195660914, 46.476594957391342 ], [ 15.545800815854932, 46.483209540288044 ], [ 15.571380649197579, 46.481142482739358 ], [ 15.586780226226438, 46.476646633335463 ], [ 15.612980177193435, 46.476620794913742 ], [ 15.63675133630511, 46.468740139245995 ], [ 15.647138299093228, 46.462745673074323 ], [ 15.653959587564884, 46.460575262738132 ], [ 15.658765496230671, 46.459851793225653 ], [ 15.676128778020654, 46.460316881219057 ], [ 15.683105096123256, 46.461195380362483 ], [ 15.686877476014672, 46.462383937868424 ], [ 15.709511752665264, 46.464967760253899 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-115", "NAME_1": "Starše" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.733076206201929, 46.503234157930024 ], [ 15.737778761180891, 46.493725694285331 ], [ 15.739432406680237, 46.491787827945871 ], [ 15.742429640215732, 46.489979152815636 ], [ 15.750491163936033, 46.48793793368867 ], [ 15.756537306051825, 46.485741685830135 ], [ 15.781497022669441, 46.4677324488934 ], [ 15.796069777398316, 46.469205227239399 ], [ 15.801547478733141, 46.468016668834196 ], [ 15.804803093787712, 46.466828111328255 ], [ 15.818600702160666, 46.454787503040791 ], [ 15.805578241042952, 46.449103095231635 ], [ 15.803717889069333, 46.444917304190199 ], [ 15.805888299405467, 46.437579250881697 ], [ 15.800462274014706, 46.431584784710026 ], [ 15.782272169924681, 46.434788722921212 ], [ 15.769869826431318, 46.431016343929116 ], [ 15.75219648627882, 46.432385769487666 ], [ 15.7344714701822, 46.428329168756136 ], [ 15.721914097057891, 46.443418688321799 ], [ 15.723309360138842, 46.44631256817047 ], [ 15.723309360138842, 46.449723211956666 ], [ 15.716953158761271, 46.460006821957222 ], [ 15.732766147839413, 46.47442454705515 ], [ 15.729820591147359, 46.480186469230148 ], [ 15.727650180811168, 46.486155096980099 ], [ 15.723309360138842, 46.491684475158365 ], [ 15.724549595387487, 46.494655870272197 ], [ 15.733076206201929, 46.503234157930024 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-189", "NAME_1": "Vransko" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.910077345093384, 46.210538845191536 ], [ 14.93007612521302, 46.218781236065183 ], [ 14.884910922900758, 46.240537014471613 ], [ 14.897519971969132, 46.254231269157742 ], [ 14.897519971969132, 46.258830471349142 ], [ 14.900310499929617, 46.263274644808973 ], [ 14.907751906025624, 46.264824938420134 ], [ 14.918293898444631, 46.265315863935939 ], [ 14.925735303641318, 46.268959051718809 ], [ 14.945734083760954, 46.274695136371406 ], [ 14.950384962795795, 46.278002428269417 ], [ 14.950384962795795, 46.281878160049018 ], [ 14.95488081219969, 46.283635159235189 ], [ 14.957102899379265, 46.283273424029289 ], [ 14.970280389228549, 46.283841864810199 ], [ 15.009967889306608, 46.257977809728118 ], [ 14.97493126826339, 46.218419500859227 ], [ 14.97245079866542, 46.211649889230955 ], [ 14.970745477221953, 46.197774767391593 ], [ 14.937362501678081, 46.191857814686387 ], [ 14.93007612521302, 46.193666489816621 ], [ 14.915348341752576, 46.201366279230399 ], [ 14.910077345093384, 46.210538845191536 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-133", "NAME_1": "Velenje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.092236769311455, 46.434168606196181 ], [ 15.098592969789706, 46.433832709412002 ], [ 15.111925490169199, 46.430757962409984 ], [ 15.123604364150083, 46.421998805800229 ], [ 15.155075310876896, 46.412774562995651 ], [ 15.161741570616982, 46.412516181476576 ], [ 15.169958123068909, 46.410914211921295 ], [ 15.17553917809056, 46.40910553589174 ], [ 15.176159294815591, 46.402361761785869 ], [ 15.17553917809056, 46.398098456378648 ], [ 15.175849237352395, 46.394016018124717 ], [ 15.190318638394444, 46.388434964002386 ], [ 15.201170689175967, 46.360529689793339 ], [ 15.204736361693733, 46.353915106896636 ], [ 15.206286655304893, 46.345698554444709 ], [ 15.206286655304893, 46.341977851396678 ], [ 15.196519810141126, 46.327663479086254 ], [ 15.181636997049736, 46.325234687230989 ], [ 15.158485954663035, 46.336086738012511 ], [ 15.146083612069049, 46.335802517172397 ], [ 15.138022088348691, 46.332831122058622 ], [ 15.131200798977659, 46.327663479086254 ], [ 15.122829216894843, 46.316966457935678 ], [ 15.110375196558039, 46.323012600051413 ], [ 15.102468703367947, 46.332624417382931 ], [ 15.087275831914098, 46.339859117004607 ], [ 15.081384717630613, 46.346422023957189 ], [ 15.066605259125367, 46.351693019717061 ], [ 15.069757521392489, 46.371795151724825 ], [ 15.082314893617422, 46.38618703930041 ], [ 15.087740919907503, 46.399881293087162 ], [ 15.089291212619344, 46.4264688185811 ], [ 15.092236769311455, 46.434168606196181 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-173", "NAME_1": "Polzela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.066605259125367, 46.351693019717061 ], [ 15.081384717630613, 46.346422023957189 ], [ 15.087275831914098, 46.339859117004607 ], [ 15.102468703367947, 46.332624417382931 ], [ 15.110375196558039, 46.323012600051413 ], [ 15.122829216894843, 46.316966457935678 ], [ 15.121588983444838, 46.293608709973967 ], [ 15.118436720278396, 46.28751089101479 ], [ 15.110685255819874, 46.277175605070113 ], [ 15.107429639865984, 46.271387844473395 ], [ 15.110220167826469, 46.26593598156029 ], [ 15.104018996079787, 46.255006415513662 ], [ 15.09502729727194, 46.257667752264922 ], [ 15.05125735804063, 46.307251287816655 ], [ 15.058078648310982, 46.314485989236971 ], [ 15.059628940123446, 46.32471792329352 ], [ 15.060249057747797, 46.337068589943442 ], [ 15.066605259125367, 46.351693019717061 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-125", "NAME_1": "Šmartno ob Paki" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.999890984881006, 46.377221178014906 ], [ 15.01389529792965, 46.364457099315644 ], [ 15.039010044178156, 46.355517076451918 ], [ 15.066605259125367, 46.351693019717061 ], [ 15.060249057747797, 46.337068589943442 ], [ 15.059628940123446, 46.32471792329352 ], [ 15.058078648310982, 46.314485989236971 ], [ 15.05125735804063, 46.307251287816655 ], [ 15.037304721835426, 46.324433702453405 ], [ 15.008417595695448, 46.337197781152668 ], [ 15.000356072874467, 46.349987698273651 ], [ 14.998650749632361, 46.355982164445322 ], [ 14.999890984881006, 46.377221178014906 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-079", "NAME_1": "Mozirje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.866927524385744, 46.315545356433006 ], [ 14.881500278215242, 46.337662869146072 ], [ 14.881655307846188, 46.352468166972301 ], [ 14.902170851003973, 46.393912665337211 ], [ 14.939532912014272, 46.401302395489154 ], [ 14.949764845171444, 46.396780706764162 ], [ 14.962994011864168, 46.394274400543111 ], [ 14.971985710672016, 46.393447577343807 ], [ 14.985628289414024, 46.395773017310887 ], [ 14.993534784402755, 46.394429430174057 ], [ 14.997875604175761, 46.392052314262855 ], [ 15.000201043243521, 46.390295315076685 ], [ 15.001906365586308, 46.388073228796429 ], [ 15.002526483210602, 46.386522936084589 ], [ 14.999890984881006, 46.377221178014906 ], [ 14.998650749632361, 46.355982164445322 ], [ 15.000356072874467, 46.349987698273651 ], [ 15.008417595695448, 46.337197781152668 ], [ 14.999890984881006, 46.333115342898736 ], [ 14.990124138817919, 46.322547512058009 ], [ 14.988728874837705, 46.316966457935678 ], [ 14.984853143058103, 46.312289741378436 ], [ 14.970590447591064, 46.302936306465369 ], [ 14.966404657448948, 46.318723456222529 ], [ 14.959893426440487, 46.324588731184974 ], [ 14.953847284324695, 46.325803128011898 ], [ 14.947749465365519, 46.323632716776444 ], [ 14.924805128553828, 46.31004181577714 ], [ 14.877004428811347, 46.300998440125909 ], [ 14.866927524385744, 46.315545356433006 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-137", "NAME_1": "Vitanje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.331188592079855, 46.365206407249843 ], [ 15.267729932890063, 46.365025540096553 ], [ 15.232486607171154, 46.39251740225626 ], [ 15.253932326315805, 46.414066474188417 ], [ 15.267109816165089, 46.437269192519182 ], [ 15.27346601664334, 46.443289496213254 ], [ 15.281062453269612, 46.44672597932049 ], [ 15.298012323010312, 46.449929918430939 ], [ 15.324832390702227, 46.451247667146106 ], [ 15.334134148771909, 46.446932684895444 ], [ 15.336924675833131, 46.445899156121129 ], [ 15.336769647101505, 46.443728745784938 ], [ 15.33149865134169, 46.441713365079693 ], [ 15.326847772306849, 46.439077866750154 ], [ 15.324677361970657, 46.435202134970552 ], [ 15.325297478695688, 46.429207668798824 ], [ 15.340180290887702, 46.411379299015437 ], [ 15.348758579444848, 46.406159980099005 ], [ 15.35557986791656, 46.402852688200994 ], [ 15.358370395877046, 46.397633369284563 ], [ 15.356665072634996, 46.38833161121488 ], [ 15.35402957520472, 46.383086452977409 ], [ 15.331188592079855, 46.365206407249843 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-139", "NAME_1": "Vojnik" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.267729932890063, 46.365025540096553 ], [ 15.331188592079855, 46.365206407249843 ], [ 15.336924675833131, 46.358462633143972 ], [ 15.33878502780675, 46.34936758154862 ], [ 15.349843784163284, 46.341357733772384 ], [ 15.368757357765844, 46.333968004519761 ], [ 15.364416537992838, 46.324201158456674 ], [ 15.365656773241483, 46.321462307339573 ], [ 15.367827182678298, 46.317586575559972 ], [ 15.369842564282919, 46.315545356433006 ], [ 15.376508823123686, 46.311333726969906 ], [ 15.373563267330894, 46.300378323400878 ], [ 15.37635379439206, 46.298673001058148 ], [ 15.379919467809202, 46.294642238748281 ], [ 15.378059115835526, 46.28962962540686 ], [ 15.374183384055925, 46.28691661181216 ], [ 15.369532505021084, 46.282394923986544 ], [ 15.363796421267807, 46.280095323340447 ], [ 15.358525424608672, 46.260535793691929 ], [ 15.325762566689093, 46.272162990829315 ], [ 15.321111687654252, 46.273351549234576 ], [ 15.314600456645735, 46.273816637227981 ], [ 15.311034784127969, 46.272473049191831 ], [ 15.305918817099723, 46.272137153306971 ], [ 15.301577996427397, 46.273868313172102 ], [ 15.29181115126363, 46.280172837706289 ], [ 15.287263625016294, 46.289087022148351 ], [ 15.270055372857144, 46.307302965559415 ], [ 15.240134717942851, 46.320532132252083 ], [ 15.259203322075621, 46.335569973175723 ], [ 15.260598586055892, 46.338360501136208 ], [ 15.261528761143381, 46.342623806543429 ], [ 15.260908644418407, 46.346163642438114 ], [ 15.261218702780866, 46.352468166972301 ], [ 15.263234084385488, 46.355697944504527 ], [ 15.267729932890063, 46.358669338718983 ], [ 15.269435256132169, 46.360271308274207 ], [ 15.267729932890063, 46.365025540096553 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-144", "NAME_1": "Zrece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.331188592079855, 46.365206407249843 ], [ 15.35402957520472, 46.383086452977409 ], [ 15.356665072634996, 46.38833161121488 ], [ 15.358370395877046, 46.397633369284563 ], [ 15.35557986791656, 46.402852688200994 ], [ 15.348758579444848, 46.406159980099005 ], [ 15.340180290887702, 46.411379299015437 ], [ 15.325297478695688, 46.429207668798824 ], [ 15.324677361970657, 46.435202134970552 ], [ 15.326847772306849, 46.439077866750154 ], [ 15.33149865134169, 46.441713365079693 ], [ 15.336769647101505, 46.443728745784938 ], [ 15.336924675833131, 46.445899156121129 ], [ 15.334134148771909, 46.446932684895444 ], [ 15.324832390702227, 46.451247667146106 ], [ 15.327002801038418, 46.458534044510543 ], [ 15.324522332339768, 46.463055732336159 ], [ 15.317701042968736, 46.469721992076245 ], [ 15.31568566316281, 46.482176012412992 ], [ 15.335064324758775, 46.477395942168982 ], [ 15.338474969444292, 46.465432848247303 ], [ 15.345657993121847, 46.459541733963817 ], [ 15.35247928159356, 46.452565415861216 ], [ 15.368137241040813, 46.4476561553073 ], [ 15.382089878145337, 46.440783189092883 ], [ 15.398367954317621, 46.437889309244213 ], [ 15.422759230154327, 46.424608465708104 ], [ 15.416558058407645, 46.417451280452212 ], [ 15.414697707333289, 46.41236115184563 ], [ 15.412372267366209, 46.407658595967405 ], [ 15.409891798667559, 46.405488186530533 ], [ 15.409891798667559, 46.402490952995038 ], [ 15.415162795326751, 46.397788398016132 ], [ 15.419038527106352, 46.393292547712861 ], [ 15.417488234394511, 46.390346991920126 ], [ 15.414852736064915, 46.387659816747146 ], [ 15.409891798667559, 46.383706569702383 ], [ 15.409116652311639, 46.380890204219497 ], [ 15.425239698852977, 46.371252550264956 ], [ 15.412217237735319, 46.354845282883446 ], [ 15.407721388331368, 46.354896958827567 ], [ 15.401468539741302, 46.356964016376253 ], [ 15.39371707528278, 46.358462633143972 ], [ 15.388136021160449, 46.356292222807838 ], [ 15.382089878145337, 46.35166718219466 ], [ 15.368757357765844, 46.333968004519761 ], [ 15.349843784163284, 46.341357733772384 ], [ 15.33878502780675, 46.34936758154862 ], [ 15.336924675833131, 46.358462633143972 ], [ 15.331188592079855, 46.365206407249843 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-076", "NAME_1": "Mislinja" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.312119988846405, 46.492459622413605 ], [ 15.31568566316281, 46.482176012412992 ], [ 15.317701042968736, 46.469721992076245 ], [ 15.324522332339768, 46.463055732336159 ], [ 15.327002801038418, 46.458534044510543 ], [ 15.324832390702227, 46.451247667146106 ], [ 15.298012323010312, 46.449929918430939 ], [ 15.281062453269612, 46.44672597932049 ], [ 15.27346601664334, 46.443289496213254 ], [ 15.267109816165089, 46.437269192519182 ], [ 15.253932326315805, 46.414066474188417 ], [ 15.232486607171154, 46.39251740225626 ], [ 15.190318638394444, 46.388434964002386 ], [ 15.175849237352395, 46.394016018124717 ], [ 15.17553917809056, 46.398098456378648 ], [ 15.176159294815591, 46.402361761785869 ], [ 15.17553917809056, 46.40910553589174 ], [ 15.169958123068909, 46.410914211921295 ], [ 15.161741570616982, 46.412516181476576 ], [ 15.155075310876896, 46.412774562995651 ], [ 15.123604364150083, 46.421998805800229 ], [ 15.134921502025691, 46.443909613837604 ], [ 15.139727410691421, 46.444658921771804 ], [ 15.142672967383533, 46.444374701831009 ], [ 15.144533319357208, 46.445124009765209 ], [ 15.149494255855188, 46.449723211956666 ], [ 15.151199579097295, 46.460239365953953 ], [ 15.162206658610387, 46.467809964158505 ], [ 15.186132847353008, 46.491865343210975 ], [ 15.195744662885886, 46.510908108022761 ], [ 15.222719761108067, 46.496955470918238 ], [ 15.238274366868495, 46.494630031850477 ], [ 15.2584281757197, 46.495586046259007 ], [ 15.312119988846405, 46.492459622413605 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-05", "NAME_1": "Zasavska" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.911317580342029, 46.092871608937571 ], [ 14.908061965287459, 46.093569240927707 ], [ 14.903411086252618, 46.095739651263898 ], [ 14.892352328996765, 46.10886546516906 ], [ 14.891732212271791, 46.113619696991407 ], [ 14.893127476252005, 46.116978664833482 ], [ 14.894057651339551, 46.121500353558417 ], [ 14.893902621708605, 46.12467845334794 ], [ 14.890491977922409, 46.127779038771621 ], [ 14.881810336577757, 46.129225978695956 ], [ 14.839332310337852, 46.129587713901856 ], [ 14.834784784090516, 46.136977444053798 ], [ 14.839642367800991, 46.141421617513629 ], [ 14.839435663125357, 46.145245673349109 ], [ 14.840572543787857, 46.148966376397141 ], [ 14.828428581813569, 46.160283515172068 ], [ 14.825017938027429, 46.166019598925345 ], [ 14.818196648656397, 46.16875845004239 ], [ 14.816801384676126, 46.17051544922856 ], [ 14.819901970999126, 46.171910712309511 ], [ 14.885686069256678, 46.177285060856832 ], [ 14.8926623882586, 46.179248766517333 ], [ 14.901705763010511, 46.190979316442281 ], [ 14.898915235949346, 46.20867849411718 ], [ 14.910077345093384, 46.210538845191536 ], [ 14.915348341752576, 46.201366279230399 ], [ 14.93007612521302, 46.193666489816621 ], [ 14.937362501678081, 46.191857814686387 ], [ 14.970745477221953, 46.197774767391593 ], [ 14.999890984881006, 46.198989163319197 ], [ 15.012810093211215, 46.182194322310124 ], [ 15.008314242907943, 46.179248766517333 ], [ 15.004386834284958, 46.177207547390367 ], [ 14.992759637147515, 46.173254299446342 ], [ 14.986403435769944, 46.16875845004239 ], [ 14.985938347776539, 46.166794745281265 ], [ 14.987798699750158, 46.16648468691875 ], [ 14.991209344435674, 46.167905789320685 ], [ 14.995240105846165, 46.168680934777285 ], [ 14.999115837625766, 46.168060818052311 ], [ 15.013430209936246, 46.155916856078022 ], [ 15.027072787778934, 46.140181383164304 ], [ 15.031103550088744, 46.131344713088026 ], [ 15.031258578820314, 46.125918687697265 ], [ 15.028623081390094, 46.123541571786063 ], [ 15.024437290348658, 46.120570177571608 ], [ 15.021956820750688, 46.119304103901243 ], [ 15.014670444285571, 46.116668606470967 ], [ 15.013120150674411, 46.116565252784142 ], [ 15.011724887593459, 46.116694443993367 ], [ 14.999890984881006, 46.119097398326232 ], [ 14.976171501713395, 46.112198595488792 ], [ 14.96842003815425, 46.10865875869473 ], [ 14.959118280084567, 46.101113999811218 ], [ 14.955552605768105, 46.099098619105973 ], [ 14.95147016841355, 46.097393296763187 ], [ 14.946974318110279, 46.096178900835582 ], [ 14.930696241937994, 46.094034328921111 ], [ 14.918448927176257, 46.094086004865233 ], [ 14.914573195396656, 46.093646756192811 ], [ 14.911317580342029, 46.092871608937571 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-060", "NAME_1": "Litija" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.834784784090516, 46.136977444053798 ], [ 14.839332310337852, 46.129587713901856 ], [ 14.881810336577757, 46.129225978695956 ], [ 14.890491977922409, 46.127779038771621 ], [ 14.893902621708605, 46.12467845334794 ], [ 14.894057651339551, 46.121500353558417 ], [ 14.893127476252005, 46.116978664833482 ], [ 14.891732212271791, 46.113619696991407 ], [ 14.892352328996765, 46.10886546516906 ], [ 14.903411086252618, 46.095739651263898 ], [ 14.908061965287459, 46.093569240927707 ], [ 14.911317580342029, 46.092871608937571 ], [ 14.914573195396656, 46.093646756192811 ], [ 14.918448927176257, 46.094086004865233 ], [ 14.930696241937994, 46.094034328921111 ], [ 14.946974318110279, 46.096178900835582 ], [ 14.95147016841355, 46.097393296763187 ], [ 14.955552605768105, 46.099098619105973 ], [ 14.959118280084567, 46.101113999811218 ], [ 14.96842003815425, 46.10865875869473 ], [ 14.976171501713395, 46.112198595488792 ], [ 14.999890984881006, 46.119097398326232 ], [ 15.004696892647473, 46.098943590374347 ], [ 15.001906365586308, 46.093310859408632 ], [ 14.997720575444191, 46.088298245167834 ], [ 14.99306969640935, 46.085275174109995 ], [ 14.993379753872546, 46.081270250221849 ], [ 14.995240105846165, 46.075430812781747 ], [ 14.996790398558005, 46.068092760372565 ], [ 15.001596307223792, 46.061581529364048 ], [ 15.002371453579713, 46.056362210447617 ], [ 15.016840854621705, 46.053468328800307 ], [ 15.026762730315738, 46.054398504787116 ], [ 15.071462842835899, 46.064707953209449 ], [ 15.075028517152305, 46.053468328800307 ], [ 15.078284133106251, 46.04850739230227 ], [ 15.094097121285131, 46.040290838951023 ], [ 15.093321974029891, 46.030730699362266 ], [ 15.116111281210635, 46.00419485071177 ], [ 15.102313673737058, 46.004969997967009 ], [ 15.100298293031756, 46.006442776313065 ], [ 15.097197706708755, 46.00690786430647 ], [ 15.089291212619344, 46.00633942352556 ], [ 15.079214308193741, 46.001275133340698 ], [ 15.054823032357035, 46.002153632484124 ], [ 15.040560336889996, 46.000551662928899 ], [ 15.037924838560457, 45.993885403188756 ], [ 15.036684605110395, 45.98572052758027 ], [ 15.03218875480718, 45.977452298284902 ], [ 15.024127231986142, 45.970217596864586 ], [ 14.999890984881006, 45.964429837167245 ], [ 14.982217644728507, 45.972465522465882 ], [ 14.968265007623984, 45.974635931902696 ], [ 14.954467401049726, 45.975075182373757 ], [ 14.949932757590659, 45.993909553583023 ], [ 14.935889625305947, 46.018300255652264 ], [ 14.912977147877086, 46.033082499357818 ], [ 14.889325557228688, 46.054516753045675 ], [ 14.865673967479609, 46.070038109071447 ], [ 14.844239713791751, 46.07299455745283 ], [ 14.805805880337118, 46.059690538387599 ], [ 14.751850689957337, 46.066342548369903 ], [ 14.736134474226617, 46.065612290774595 ], [ 14.725230746601653, 46.069488023453516 ], [ 14.723370396426617, 46.073363756132437 ], [ 14.712363315114885, 46.079306546359987 ], [ 14.744661085940322, 46.09052033144809 ], [ 14.749932081700194, 46.093155828878366 ], [ 14.753962843110685, 46.100183823824409 ], [ 14.806259393156438, 46.115454210543362 ], [ 14.834784784090516, 46.136977444053798 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-030", "NAME_1": "Gornji Grad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.797577751811787, 46.343373115376949 ], [ 14.800833367765676, 46.340995999465804 ], [ 14.810600212929444, 46.337068589943442 ], [ 14.848013949883864, 46.316087957892933 ], [ 14.866927524385744, 46.315545356433006 ], [ 14.877004428811347, 46.300998440125909 ], [ 14.871888461783044, 46.288234361426589 ], [ 14.862121615719957, 46.279010117722748 ], [ 14.857470736685116, 46.268752346143856 ], [ 14.854835239254896, 46.252861842699872 ], [ 14.811220329654475, 46.254386297889312 ], [ 14.788741081735509, 46.253016873230081 ], [ 14.753032668023195, 46.254334621945247 ], [ 14.714068638356935, 46.263067939233963 ], [ 14.703991733032012, 46.269785874918171 ], [ 14.705697056274118, 46.28691661181216 ], [ 14.73132856556083, 46.310765286188996 ], [ 14.780782911701976, 46.338515529867777 ], [ 14.797577751811787, 46.343373115376949 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-013", "NAME_1": "Cerknica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.435842725761177, 45.862937324298059 ], [ 14.442198927138747, 45.863454088235585 ], [ 14.490154657411495, 45.880869045969689 ], [ 14.498216180232532, 45.870352891972345 ], [ 14.496200798627967, 45.862162177042819 ], [ 14.497130974614777, 45.851826891098142 ], [ 14.505089146446949, 45.840768133842289 ], [ 14.493100213204286, 45.835548814026538 ], [ 14.483488396772088, 45.832887478174541 ], [ 14.457133416174202, 45.817203681204887 ], [ 14.450622186065004, 45.811777655814126 ], [ 14.446281366291998, 45.80686839526021 ], [ 14.442198927138747, 45.800486355460919 ], [ 14.442198927138747, 45.795757962060293 ], [ 14.446591423755194, 45.789246731051776 ], [ 14.463489617551772, 45.775449124477461 ], [ 14.481317987335217, 45.765656439992711 ], [ 14.486588983095089, 45.76408030885915 ], [ 14.490154657411495, 45.759610296977598 ], [ 14.492480095579936, 45.755708726776277 ], [ 14.478372429743843, 45.747853909530249 ], [ 14.410572950781045, 45.710078437369987 ], [ 14.386181674944339, 45.707494614984455 ], [ 14.327683954051224, 45.739818224231612 ], [ 14.323188103747952, 45.754106757221052 ], [ 14.299313591848772, 45.757259020387437 ], [ 14.28753136597976, 45.762891751353209 ], [ 14.269496290621305, 45.776327622721567 ], [ 14.258334180577947, 45.790590318188606 ], [ 14.259419386195702, 45.801442368970129 ], [ 14.279263135785072, 45.837228298846867 ], [ 14.276472608723907, 45.846116644867266 ], [ 14.299158563117203, 45.885726630579541 ], [ 14.309390496274375, 45.891230170336087 ], [ 14.325668573345979, 45.887328600134765 ], [ 14.364787631743809, 45.867484850545395 ], [ 14.376259800149626, 45.871489773534222 ], [ 14.384631382232499, 45.86505605689149 ], [ 14.388817173273935, 45.862989000242123 ], [ 14.393054640259436, 45.860405177856649 ], [ 14.399875928731092, 45.861206163533609 ], [ 14.406077101377093, 45.86738149685857 ], [ 14.417549268883647, 45.870895494331592 ], [ 14.435842725761177, 45.862937324298059 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-134", "NAME_1": "Velike Lašče" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.505089146446949, 45.840768133842289 ], [ 14.497130974614777, 45.851826891098142 ], [ 14.496200798627967, 45.862162177042819 ], [ 14.498216180232532, 45.870352891972345 ], [ 14.490154657411495, 45.880869045969689 ], [ 14.507879672608794, 45.88453807217428 ], [ 14.530668979789596, 45.878750312476939 ], [ 14.542606235289497, 45.872574978252601 ], [ 14.549737583023045, 45.87043040633813 ], [ 14.554853550051291, 45.867846584851975 ], [ 14.561726515366388, 45.867278144071065 ], [ 14.570098097449204, 45.86756236401186 ], [ 14.581260206593242, 45.874512843692742 ], [ 14.586531203252434, 45.882315985894024 ], [ 14.585290968003733, 45.896268622099228 ], [ 14.59164717028068, 45.894950873384062 ], [ 14.593817579717495, 45.897043769354468 ], [ 14.594592726073415, 45.901642971545868 ], [ 14.600948926551723, 45.908877672066865 ], [ 14.621619500239717, 45.894563299756442 ], [ 14.625960320912043, 45.886243395416329 ], [ 14.640223016379082, 45.874771227010513 ], [ 14.640223016379082, 45.862756456245449 ], [ 14.639137810761326, 45.858725693935583 ], [ 14.636967401324512, 45.853893947747451 ], [ 14.638827752398868, 45.849346422399435 ], [ 14.645183953776439, 45.848571275144195 ], [ 14.651695183885636, 45.846426703229724 ], [ 14.669213495306565, 45.837305813212708 ], [ 14.687713656859785, 45.817978827560808 ], [ 14.67045372875657, 45.814180610146991 ], [ 14.654485710946801, 45.805163072018161 ], [ 14.627820671986399, 45.798341783546448 ], [ 14.586996291245839, 45.793432522093212 ], [ 14.564206984065038, 45.79007355425108 ], [ 14.52958377417184, 45.812914537376002 ], [ 14.505089146446949, 45.840768133842289 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-005", "NAME_1": "Borovnica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.393054640259436, 45.860405177856649 ], [ 14.388817173273935, 45.862989000242123 ], [ 14.384631382232499, 45.86505605689149 ], [ 14.376259800149626, 45.871489773534222 ], [ 14.363857455756943, 45.882315985894024 ], [ 14.357501255278692, 45.889214788731465 ], [ 14.337502476058432, 45.925517483445105 ], [ 14.334350212891991, 45.934354153521326 ], [ 14.333730096167017, 45.943294176385109 ], [ 14.337812534420891, 45.954766343891606 ], [ 14.341688267099812, 45.957918606158728 ], [ 14.344168734899199, 45.961122545269234 ], [ 14.365562778099729, 45.96546336504224 ], [ 14.370058628402944, 45.951975815931121 ], [ 14.384166294239094, 45.939315090918683 ], [ 14.391917758697616, 45.933734035897032 ], [ 14.401581251973198, 45.929186510549016 ], [ 14.406852247733013, 45.92923818649308 ], [ 14.41274336111718, 45.926215115435184 ], [ 14.414758741822482, 45.922623602697058 ], [ 14.411658156398801, 45.909704495266226 ], [ 14.409952834056014, 45.898955797272208 ], [ 14.407007277363959, 45.891617743963707 ], [ 14.417549268883647, 45.870895494331592 ], [ 14.406077101377093, 45.86738149685857 ], [ 14.399875928731092, 45.861206163533609 ], [ 14.393054640259436, 45.860405177856649 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-094", "NAME_1": "Postojna" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.276472608723907, 45.846116644867266 ], [ 14.279263135785072, 45.837228298846867 ], [ 14.259419386195702, 45.801442368970129 ], [ 14.258334180577947, 45.790590318188606 ], [ 14.269496290621305, 45.776327622721567 ], [ 14.28753136597976, 45.762891751353209 ], [ 14.299313591848772, 45.757259020387437 ], [ 14.323188103747952, 45.754106757221052 ], [ 14.27151167222587, 45.734857285934993 ], [ 14.256473830402911, 45.726744086270514 ], [ 14.219680210173522, 45.717106432315973 ], [ 14.201696811658508, 45.716305447538332 ], [ 14.17224124473762, 45.70682282231536 ], [ 14.149865349606159, 45.703670559148975 ], [ 14.133897331796391, 45.703618883204854 ], [ 14.117154167630702, 45.706771145471976 ], [ 14.093383010317666, 45.714290065933767 ], [ 14.081910841911792, 45.734237169209962 ], [ 14.072143995848705, 45.743358059227035 ], [ 14.037210727592992, 45.761005560957869 ], [ 14.043566928970563, 45.772916978935427 ], [ 14.048837924730435, 45.778084621907738 ], [ 14.052093539785005, 45.796946520465497 ], [ 14.058656446737587, 45.808625393547061 ], [ 14.04604739766927, 45.836944078006752 ], [ 14.093072951055831, 45.848829658461966 ], [ 14.096638625372236, 45.851852729519806 ], [ 14.125990837706979, 45.868802599260505 ], [ 14.179062534108652, 45.875494697422312 ], [ 14.199681430953262, 45.872419949521031 ], [ 14.222005649241282, 45.862833971510554 ], [ 14.276472608723907, 45.846116644867266 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-091", "NAME_1": "Pivka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.323188103747952, 45.754106757221052 ], [ 14.327683954051224, 45.739818224231612 ], [ 14.386181674944339, 45.707494614984455 ], [ 14.393364698621951, 45.689304510894431 ], [ 14.416619092896781, 45.670752672497827 ], [ 14.425765822234894, 45.661605943159714 ], [ 14.426230910228298, 45.64403595579472 ], [ 14.378585239217387, 45.651994126727516 ], [ 14.369128452416135, 45.659693915241974 ], [ 14.3472693212222, 45.672199612422162 ], [ 14.332644891448581, 45.671889553160327 ], [ 14.328459100407144, 45.670649318811002 ], [ 14.330784538575585, 45.667600410230705 ], [ 14.328304070776255, 45.66387970628341 ], [ 14.316986932001271, 45.659487210566283 ], [ 14.285515985274515, 45.655043036207132 ], [ 14.246551954708934, 45.644139309481545 ], [ 14.237870314263603, 45.640676987952588 ], [ 14.226708205119564, 45.633338935543406 ], [ 14.215649447863711, 45.631323553938842 ], [ 14.194100375931612, 45.629514878808607 ], [ 14.151880731210781, 45.631426906726347 ], [ 14.127541131318139, 45.630393377952032 ], [ 14.110281203214925, 45.626000882234905 ], [ 14.102839797118918, 45.622796943124399 ], [ 14.090592482357181, 45.624243883048734 ], [ 14.079895461206547, 45.627912910152645 ], [ 14.079585401944712, 45.629618232495432 ], [ 14.083151076261174, 45.635561021823662 ], [ 14.077880079601982, 45.645431219774935 ], [ 14.072764112573736, 45.653027656401207 ], [ 14.069198439156651, 45.659693915241974 ], [ 14.06857832243162, 45.673594876402376 ], [ 14.06454756012181, 45.679692695361553 ], [ 14.062532179416507, 45.686462306989824 ], [ 14.064702589752699, 45.693541978779251 ], [ 14.071678907855301, 45.702688707218044 ], [ 14.083151076261174, 45.706512763053524 ], [ 14.093383010317666, 45.714290065933767 ], [ 14.117154167630702, 45.706771145471976 ], [ 14.133897331796391, 45.703618883204854 ], [ 14.149865349606159, 45.703670559148975 ], [ 14.17224124473762, 45.70682282231536 ], [ 14.201696811658508, 45.716305447538332 ], [ 14.219680210173522, 45.717106432315973 ], [ 14.256473830402911, 45.726744086270514 ], [ 14.27151167222587, 45.734857285934993 ], [ 14.323188103747952, 45.754106757221052 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-155", "NAME_1": "Dobrna" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.267729932890063, 46.365025540096553 ], [ 15.269435256132169, 46.360271308274207 ], [ 15.267729932890063, 46.358669338718983 ], [ 15.263234084385488, 46.355697944504527 ], [ 15.261218702780866, 46.352468166972301 ], [ 15.260908644418407, 46.346163642438114 ], [ 15.261528761143381, 46.342623806543429 ], [ 15.260598586055892, 46.338360501136208 ], [ 15.259203322075621, 46.335569973175723 ], [ 15.240134717942851, 46.320532132252083 ], [ 15.226130404894263, 46.317379869085642 ], [ 15.196519810141126, 46.327663479086254 ], [ 15.206286655304893, 46.341977851396678 ], [ 15.206286655304893, 46.345698554444709 ], [ 15.204736361693733, 46.353915106896636 ], [ 15.201170689175967, 46.360529689793339 ], [ 15.190318638394444, 46.388434964002386 ], [ 15.232486607171154, 46.39251740225626 ], [ 15.267729932890063, 46.365025540096553 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-011", "NAME_1": "Celje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.226130404894263, 46.317379869085642 ], [ 15.240134717942851, 46.320532132252083 ], [ 15.270055372857144, 46.307302965559415 ], [ 15.287263625016294, 46.289087022148351 ], [ 15.29181115126363, 46.280172837706289 ], [ 15.301577996427397, 46.273868313172102 ], [ 15.305918817099723, 46.272137153306971 ], [ 15.311034784127969, 46.272473049191831 ], [ 15.314600456645735, 46.273816637227981 ], [ 15.321111687654252, 46.273351549234576 ], [ 15.325762566689093, 46.272162990829315 ], [ 15.358525424608672, 46.260535793691929 ], [ 15.356199984641535, 46.250846462893946 ], [ 15.35154910740539, 46.246738186218295 ], [ 15.343590935573218, 46.241803087242658 ], [ 15.339405145431101, 46.229039008543396 ], [ 15.33227379679829, 46.22965912526837 ], [ 15.327777948293658, 46.228496406184149 ], [ 15.321731805278603, 46.226377671792079 ], [ 15.31413536955165, 46.222708644688169 ], [ 15.308244256167484, 46.218264472127657 ], [ 15.308244256167484, 46.199325060103433 ], [ 15.309949579409533, 46.193769843503446 ], [ 15.301422966796451, 46.188912257994275 ], [ 15.264629346567062, 46.193821520346887 ], [ 15.257342970102002, 46.197128811345522 ], [ 15.248506300925044, 46.197490546551478 ], [ 15.229075961586318, 46.191961168373211 ], [ 15.221634556389631, 46.19247793231068 ], [ 15.218223910804852, 46.193098049035711 ], [ 15.216363559730496, 46.198239855384998 ], [ 15.223959994558072, 46.236170356276887 ], [ 15.222719761108067, 46.243844306369624 ], [ 15.219619174785066, 46.256194973019547 ], [ 15.218999058060092, 46.259993191332683 ], [ 15.220549350771932, 46.262163600769554 ], [ 15.220704380402822, 46.263403836018199 ], [ 15.218068882073226, 46.270199286068191 ], [ 15.219154086791661, 46.274023341903671 ], [ 15.222564732376497, 46.281051336849714 ], [ 15.226130404894263, 46.285366319100319 ], [ 15.226130404894263, 46.317379869085642 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-083", "NAME_1": "Nazarje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.884910922900758, 46.240537014471613 ], [ 14.854835239254896, 46.252861842699872 ], [ 14.857470736685116, 46.268752346143856 ], [ 14.862121615719957, 46.279010117722748 ], [ 14.871888461783044, 46.288234361426589 ], [ 14.877004428811347, 46.300998440125909 ], [ 14.924805128553828, 46.31004181577714 ], [ 14.947749465365519, 46.323632716776444 ], [ 14.953847284324695, 46.325803128011898 ], [ 14.959893426440487, 46.324588731184974 ], [ 14.966404657448948, 46.318723456222529 ], [ 14.970590447591064, 46.302936306465369 ], [ 14.970280389228549, 46.283841864810199 ], [ 14.957102899379265, 46.283273424029289 ], [ 14.95488081219969, 46.283635159235189 ], [ 14.950384962795795, 46.281878160049018 ], [ 14.950384962795795, 46.278002428269417 ], [ 14.945734083760954, 46.274695136371406 ], [ 14.925735303641318, 46.268959051718809 ], [ 14.918293898444631, 46.265315863935939 ], [ 14.907751906025624, 46.264824938420134 ], [ 14.900310499929617, 46.263274644808973 ], [ 14.897519971969132, 46.258830471349142 ], [ 14.897519971969132, 46.254231269157742 ], [ 14.884910922900758, 46.240537014471613 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-023", "NAME_1": "Domžale" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.589786818307005, 46.147674466103695 ], [ 14.583740676191212, 46.176458238556847 ], [ 14.59009687666952, 46.189118964468605 ], [ 14.609475539164805, 46.188498846844254 ], [ 14.632006463027835, 46.197309679398188 ], [ 14.639137810761326, 46.202193102429703 ], [ 14.645338983407328, 46.204596055863249 ], [ 14.651850212617205, 46.206120510153369 ], [ 14.657741326900691, 46.206637274990214 ], [ 14.683062777824944, 46.199170030472487 ], [ 14.663477410653968, 46.185708319783089 ], [ 14.652470330241556, 46.17030874275423 ], [ 14.650454950435574, 46.16457265900101 ], [ 14.651540155154009, 46.161472073577329 ], [ 14.655105828571095, 46.160877794374699 ], [ 14.658516473256611, 46.159301663241138 ], [ 14.661307000317777, 46.156459459336531 ], [ 14.664407585741458, 46.153772285062871 ], [ 14.667973260057863, 46.152428697026721 ], [ 14.676086459722342, 46.150749213105655 ], [ 14.683837925080184, 46.1439537621564 ], [ 14.674536167010501, 46.138889471971538 ], [ 14.675156283735475, 46.13273997706824 ], [ 14.679342074776912, 46.130853787572221 ], [ 14.683372837086722, 46.128218289242625 ], [ 14.689418980101834, 46.125660305278814 ], [ 14.687248568866323, 46.117288723195998 ], [ 14.66642296734608, 46.117624619980177 ], [ 14.65309044786585, 46.113051256210497 ], [ 14.62921593596667, 46.102225042951375 ], [ 14.617433709198281, 46.098375148694117 ], [ 14.594282667710957, 46.096618150407267 ], [ 14.592267287005654, 46.105454820483544 ], [ 14.569322951093284, 46.107780260450625 ], [ 14.57102827343607, 46.124523423716994 ], [ 14.575834181202481, 46.134445299411027 ], [ 14.589786818307005, 46.147674466103695 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-039", "NAME_1": "Ivancna Gorica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.740165235637107, 45.998148709495297 ], [ 14.749622023337679, 46.002954617261764 ], [ 14.772721387981676, 46.004530748395325 ], [ 14.775201856680326, 46.006287747581439 ], [ 14.781403029326327, 46.008535672283415 ], [ 14.810910272191279, 46.007760525028175 ], [ 14.843053013385827, 46.000629177294684 ], [ 14.855920443973275, 45.999983222147932 ], [ 14.862896762975197, 46.000784206925573 ], [ 14.863671909331117, 46.004324041920995 ], [ 14.865687290036419, 46.006442776313065 ], [ 14.871423373789639, 46.005254217907805 ], [ 14.877469516804751, 46.002101956540059 ], [ 14.905581495689432, 45.972904772037566 ], [ 14.927285597252478, 45.96298289724291 ], [ 14.908837110744059, 45.949185288869955 ], [ 14.888786654680359, 45.941330470724608 ], [ 14.881965366208647, 45.932622992756876 ], [ 14.878709751154076, 45.92500071950758 ], [ 14.874058872119235, 45.898749090797878 ], [ 14.86878787635942, 45.887354438556486 ], [ 14.871423373789639, 45.877510077228237 ], [ 14.877159458442236, 45.869551907194761 ], [ 14.876539340817885, 45.857097886857957 ], [ 14.850494418582514, 45.853687242172441 ], [ 14.847393833158833, 45.850922553532996 ], [ 14.847393833158833, 45.845005601727109 ], [ 14.850339389850944, 45.839837957855423 ], [ 14.856230503235111, 45.825058499350234 ], [ 14.855765415241706, 45.80782440876942 ], [ 14.848944125870673, 45.799685369783958 ], [ 14.837110223158277, 45.796016344478687 ], [ 14.824397821302398, 45.797980048340548 ], [ 14.804554070813708, 45.797514960347144 ], [ 14.784658644380897, 45.808315335184545 ], [ 14.781713087688843, 45.815136624555578 ], [ 14.771016065638889, 45.822991440902229 ], [ 14.764194777167233, 45.831776435034442 ], [ 14.758768751776472, 45.837357490056093 ], [ 14.760474074119202, 45.850948391055397 ], [ 14.767295362590914, 45.863815823441485 ], [ 14.768070509846154, 45.866761380133539 ], [ 14.75179243277455, 45.883297837824955 ], [ 14.747296584269918, 45.892444566263691 ], [ 14.747451613001545, 45.896992092511027 ], [ 14.749932081700194, 45.903219103578749 ], [ 14.75024214006271, 45.907895820135991 ], [ 14.736599562220022, 45.927067776156946 ], [ 14.73442915188383, 45.935284329508193 ], [ 14.732258742447016, 45.941175441993039 ], [ 14.733809035158856, 45.944611925100219 ], [ 14.733188918433825, 45.947014879433141 ], [ 14.728951449649685, 45.94928864255678 ], [ 14.718409458129997, 45.952130846461387 ], [ 14.714843783813535, 45.952595934454791 ], [ 14.717479282143131, 45.965747585882355 ], [ 14.733188918433825, 45.982077337998703 ], [ 14.740165235637107, 45.998148709495297 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-061", "NAME_1": "Ljubljana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.749622023337679, 46.002954617261764 ], [ 14.740165235637107, 45.998148709495297 ], [ 14.724610629876679, 46.003807277983469 ], [ 14.715308871806997, 46.009233303374231 ], [ 14.709727816785289, 46.011145331291971 ], [ 14.701201205970847, 46.01093862571696 ], [ 14.686473423409723, 46.005150865120299 ], [ 14.682597689831482, 46.000448310141394 ], [ 14.676861606977582, 45.996236681577557 ], [ 14.660686882693483, 45.989802964934881 ], [ 14.630611199946884, 45.989234524153915 ], [ 14.616193474848956, 45.996675930249978 ], [ 14.586996291245839, 46.015408636699192 ], [ 14.562966749715713, 46.018845119806429 ], [ 14.541831088933577, 46.016312975163657 ], [ 14.535474887556006, 46.013057359209711 ], [ 14.536095005180357, 46.003729762718365 ], [ 14.533304478119135, 45.990216376084845 ], [ 14.513305697999556, 45.998019518286128 ], [ 14.502918735211438, 45.997606106236788 ], [ 14.480542840079977, 45.991895860005911 ], [ 14.474341668333295, 45.983085029250674 ], [ 14.445144483830859, 45.974093329543507 ], [ 14.435532668297981, 45.979932766084289 ], [ 14.435997756291385, 45.986754055455265 ], [ 14.443284132756503, 45.993937079132877 ], [ 14.451862420414329, 45.999699002207137 ], [ 14.457753533798552, 46.00535757069531 ], [ 14.455428093831472, 46.009543361736746 ], [ 14.443129103125614, 46.016002915901822 ], [ 14.428866407658575, 46.029025377019536 ], [ 14.439563428809151, 46.033753771319482 ], [ 14.440338576064391, 46.036156724753027 ], [ 14.440803664057853, 46.040962633418758 ], [ 14.439873488070987, 46.050212713745736 ], [ 14.437237989741391, 46.056181342395007 ], [ 14.434757521042741, 46.060651354276558 ], [ 14.43243208197498, 46.063028469288383 ], [ 14.424060499892164, 46.078247179163952 ], [ 14.420804884837537, 46.081063543747518 ], [ 14.41506880108426, 46.082768866989568 ], [ 14.4085575700758, 46.082872218877753 ], [ 14.430571730001304, 46.094189358552057 ], [ 14.435687697029607, 46.095636298476393 ], [ 14.437858107365741, 46.097444972707308 ], [ 14.434912550673687, 46.100907294236208 ], [ 14.431036817994766, 46.104576321340119 ], [ 14.427936231671765, 46.108813788325619 ], [ 14.424680616617138, 46.115583400853268 ], [ 14.420649855206648, 46.117443752826887 ], [ 14.421114943200052, 46.119717515950583 ], [ 14.422510207180324, 46.12312815973678 ], [ 14.426851026953329, 46.126538805321559 ], [ 14.4332072283309, 46.128399156395915 ], [ 14.446281366291998, 46.128347480451851 ], [ 14.460389032128091, 46.133980211417622 ], [ 14.469225702204369, 46.143462835741275 ], [ 14.47635704903854, 46.138786119184033 ], [ 14.487209099820063, 46.139587103961674 ], [ 14.51392581472453, 46.145555731711625 ], [ 14.520592075363993, 46.132378241862341 ], [ 14.539660678597443, 46.116229355999963 ], [ 14.569322951093284, 46.107780260450625 ], [ 14.592267287005654, 46.105454820483544 ], [ 14.594282667710957, 46.096618150407267 ], [ 14.595832961322117, 46.08840159795534 ], [ 14.615573358123982, 46.080081691816588 ], [ 14.633091667746271, 46.076877752706082 ], [ 14.657431267638856, 46.077911282379773 ], [ 14.677946811695961, 46.082613837358679 ], [ 14.683837925080184, 46.081812853480358 ], [ 14.692209507163, 46.077859605536332 ], [ 14.712363315114885, 46.079306546359987 ], [ 14.723370396426617, 46.073363756132437 ], [ 14.725230746601653, 46.069488023453516 ], [ 14.736134474226617, 46.065612290774595 ], [ 14.733188918433825, 46.058119207835148 ], [ 14.733188918433825, 46.053830064006206 ], [ 14.73132856556083, 46.050677801739141 ], [ 14.737529738206831, 46.0448900420418 ], [ 14.743730909953513, 46.040187486163518 ], [ 14.748691847350869, 46.034218858413567 ], [ 14.751327344781146, 46.028146877876111 ], [ 14.747761672263323, 46.022617498798525 ], [ 14.749622023337679, 46.002954617261764 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-194", "NAME_1": "Šmartno in Litiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.749622023337679, 46.002954617261764 ], [ 14.747761672263323, 46.022617498798525 ], [ 14.751327344781146, 46.028146877876111 ], [ 14.748691847350869, 46.034218858413567 ], [ 14.743730909953513, 46.040187486163518 ], [ 14.737529738206831, 46.0448900420418 ], [ 14.73132856556083, 46.050677801739141 ], [ 14.733188918433825, 46.053830064006206 ], [ 14.733188918433825, 46.058119207835148 ], [ 14.736134474226617, 46.065612290774595 ], [ 14.751850689957337, 46.066342548369903 ], [ 14.805805880337118, 46.059690538387599 ], [ 14.844239713791751, 46.07299455745283 ], [ 14.865673967479609, 46.070038109071447 ], [ 14.889325557228688, 46.054516753045675 ], [ 14.912977147877086, 46.033082499357818 ], [ 14.935889625305947, 46.018300255652264 ], [ 14.949932757590659, 45.993909553583023 ], [ 14.954467401049726, 45.975075182373757 ], [ 14.939532912014272, 45.966186835454096 ], [ 14.927285597252478, 45.96298289724291 ], [ 14.905581495689432, 45.972904772037566 ], [ 14.877469516804751, 46.002101956540059 ], [ 14.871423373789639, 46.005254217907805 ], [ 14.865687290036419, 46.006442776313065 ], [ 14.863671909331117, 46.004324041920995 ], [ 14.862896762975197, 46.000784206925573 ], [ 14.855920443973275, 45.999983222147932 ], [ 14.843053013385827, 46.000629177294684 ], [ 14.810910272191279, 46.007760525028175 ], [ 14.781403029326327, 46.008535672283415 ], [ 14.775201856680326, 46.006287747581439 ], [ 14.772721387981676, 46.004530748395325 ], [ 14.749622023337679, 46.002954617261764 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-037", "NAME_1": "Ig" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.513305697999556, 45.998019518286128 ], [ 14.533304478119135, 45.990216376084845 ], [ 14.554078402796051, 45.97238800720072 ], [ 14.559969517079537, 45.955128079097562 ], [ 14.561519809791378, 45.943655910691689 ], [ 14.556868930756536, 45.921124985929339 ], [ 14.560486281017063, 45.918618678808969 ], [ 14.563741896071633, 45.915027166970162 ], [ 14.564982131320278, 45.910427964778705 ], [ 14.564517043326873, 45.904743556969549 ], [ 14.566687452763745, 45.901978868330104 ], [ 14.585290968003733, 45.896268622099228 ], [ 14.586531203252434, 45.882315985894024 ], [ 14.581260206593242, 45.874512843692742 ], [ 14.570098097449204, 45.86756236401186 ], [ 14.561726515366388, 45.867278144071065 ], [ 14.554853550051291, 45.867846584851975 ], [ 14.549737583023045, 45.87043040633813 ], [ 14.542606235289497, 45.872574978252601 ], [ 14.530668979789596, 45.878750312476939 ], [ 14.507879672608794, 45.88453807217428 ], [ 14.490154657411495, 45.880869045969689 ], [ 14.466900262237289, 45.905983792218194 ], [ 14.463954704645914, 45.920608221991813 ], [ 14.458838739416251, 45.937118842160828 ], [ 14.459148796879447, 45.948151760095641 ], [ 14.445144483830859, 45.974093329543507 ], [ 14.474341668333295, 45.983085029250674 ], [ 14.480542840079977, 45.991895860005911 ], [ 14.502918735211438, 45.997606106236788 ], [ 14.513305697999556, 45.998019518286128 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-022", "NAME_1": "Dol pri Ljubljani" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.753962843110685, 46.100183823824409 ], [ 14.749932081700194, 46.093155828878366 ], [ 14.744661085940322, 46.09052033144809 ], [ 14.712363315114885, 46.079306546359987 ], [ 14.692209507163, 46.077859605536332 ], [ 14.683837925080184, 46.081812853480358 ], [ 14.677946811695961, 46.082613837358679 ], [ 14.657431267638856, 46.077911282379773 ], [ 14.633091667746271, 46.076877752706082 ], [ 14.615573358123982, 46.080081691816588 ], [ 14.595832961322117, 46.08840159795534 ], [ 14.594282667710957, 46.096618150407267 ], [ 14.617433709198281, 46.098375148694117 ], [ 14.62921593596667, 46.102225042951375 ], [ 14.65309044786585, 46.113051256210497 ], [ 14.66642296734608, 46.117624619980177 ], [ 14.687248568866323, 46.117288723195998 ], [ 14.703526645937927, 46.111552639442721 ], [ 14.715928989431291, 46.109950669887496 ], [ 14.721665073184568, 46.106229966839464 ], [ 14.726315952219409, 46.100338854354618 ], [ 14.734739211145666, 46.099046943161852 ], [ 14.753962843110685, 46.100183823824409 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-174", "NAME_1": "Prebold" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.09502729727194, 46.257667752264922 ], [ 15.104018996079787, 46.255006415513662 ], [ 15.123759392881652, 46.241570543245928 ], [ 15.137712029986176, 46.235989488224277 ], [ 15.143138055376937, 46.23159699250715 ], [ 15.143603143370342, 46.229969184530205 ], [ 15.140657585778968, 46.230150050784175 ], [ 15.138022088348691, 46.229839993321036 ], [ 15.135696649280931, 46.227023626938831 ], [ 15.13430138530066, 46.222140203907259 ], [ 15.13414635566977, 46.206843980565225 ], [ 15.13244103422636, 46.198394884116567 ], [ 15.1308907406152, 46.195061753796892 ], [ 15.128410271916493, 46.192426256366616 ], [ 15.125154656861923, 46.190204169187041 ], [ 15.121588983444838, 46.1886538764752 ], [ 15.118281690647507, 46.18787873011928 ], [ 15.110995314182389, 46.18731028933837 ], [ 15.077664014582581, 46.184364731746939 ], [ 15.045056187193268, 46.193304755510042 ], [ 15.051567417302465, 46.207567450977081 ], [ 15.052497593289274, 46.211339829969177 ], [ 15.05110232930906, 46.226093451851284 ], [ 15.066605259125367, 46.230511785990132 ], [ 15.09502729727194, 46.257667752264922 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-077", "NAME_1": "Moravce" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.834784784090516, 46.136977444053798 ], [ 14.806259393156438, 46.115454210543362 ], [ 14.753962843110685, 46.100183823824409 ], [ 14.734739211145666, 46.099046943161852 ], [ 14.726315952219409, 46.100338854354618 ], [ 14.721665073184568, 46.106229966839464 ], [ 14.715928989431291, 46.109950669887496 ], [ 14.703526645937927, 46.111552639442721 ], [ 14.687248568866323, 46.117288723195998 ], [ 14.689418980101834, 46.125660305278814 ], [ 14.683372837086722, 46.128218289242625 ], [ 14.679342074776912, 46.130853787572221 ], [ 14.675156283735475, 46.13273997706824 ], [ 14.674536167010501, 46.138889471971538 ], [ 14.683837925080184, 46.1439537621564 ], [ 14.71112308076556, 46.151860257145131 ], [ 14.729881625636494, 46.162247219033929 ], [ 14.772101271256645, 46.168370877314089 ], [ 14.804554070813708, 46.165192775725984 ], [ 14.828428581813569, 46.160283515172068 ], [ 14.840572543787857, 46.148966376397141 ], [ 14.839435663125357, 46.145245673349109 ], [ 14.839642367800991, 46.141421617513629 ], [ 14.834784784090516, 46.136977444053798 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-020", "NAME_1": "Dobrepolje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.75179243277455, 45.883297837824955 ], [ 14.768070509846154, 45.866761380133539 ], [ 14.767295362590914, 45.863815823441485 ], [ 14.760474074119202, 45.850948391055397 ], [ 14.758768751776472, 45.837357490056093 ], [ 14.764194777167233, 45.831776435034442 ], [ 14.771016065638889, 45.822991440902229 ], [ 14.781713087688843, 45.815136624555578 ], [ 14.784658644380897, 45.808315335184545 ], [ 14.804554070813708, 45.797514960347144 ], [ 14.802538690108463, 45.780280869766329 ], [ 14.803933954088677, 45.775319933268293 ], [ 14.813700799252445, 45.757672431537458 ], [ 14.795872430368377, 45.74309967680864 ], [ 14.687713656859785, 45.817978827560808 ], [ 14.669213495306565, 45.837305813212708 ], [ 14.651695183885636, 45.846426703229724 ], [ 14.645183953776439, 45.848571275144195 ], [ 14.638827752398868, 45.849346422399435 ], [ 14.636967401324512, 45.853893947747451 ], [ 14.639137810761326, 45.858725693935583 ], [ 14.640223016379082, 45.862756456245449 ], [ 14.640223016379082, 45.874771227010513 ], [ 14.659756706706617, 45.883297837824955 ], [ 14.664562616271724, 45.888672187271595 ], [ 14.671693963105895, 45.890119127195931 ], [ 14.678101841326907, 45.888723863215716 ], [ 14.684768101066993, 45.885778307422925 ], [ 14.723060337164839, 45.876424872509858 ], [ 14.73132856556083, 45.876424872509858 ], [ 14.75179243277455, 45.883297837824955 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-099", "NAME_1": "Radece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.094097121285131, 46.040290838951023 ], [ 15.078284133106251, 46.04850739230227 ], [ 15.075028517152305, 46.053468328800307 ], [ 15.071462842835899, 46.064707953209449 ], [ 15.088981154256828, 46.067886053898235 ], [ 15.087740919907503, 46.077601223117938 ], [ 15.097507765071271, 46.079461575091614 ], [ 15.102003615374542, 46.081347765486953 ], [ 15.106344435147548, 46.093517564084266 ], [ 15.128410271916493, 46.085972805200754 ], [ 15.163446892959712, 46.092484036209271 ], [ 15.201945834632568, 46.060754706164744 ], [ 15.204581332962107, 46.053003241706222 ], [ 15.206906772929187, 46.050987861000976 ], [ 15.210162387983814, 46.048972480295731 ], [ 15.218378941335061, 46.047525540371339 ], [ 15.222099644383093, 46.046492010697705 ], [ 15.225045200175828, 46.045251777247699 ], [ 15.233106723896185, 46.040471707003633 ], [ 15.236879102888281, 46.038998927758257 ], [ 15.239204542855362, 46.036854355843843 ], [ 15.240289747573797, 46.033676256054321 ], [ 15.234863722183036, 46.030575669731377 ], [ 15.220704380402822, 46.029490465012941 ], [ 15.144533319357208, 46.042487087708878 ], [ 15.094097121285131, 46.040290838951023 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-127", "NAME_1": "Štore" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.33227379679829, 46.22965912526837 ], [ 15.339405145431101, 46.229039008543396 ], [ 15.361781039663242, 46.222372747903989 ], [ 15.363796421267807, 46.218910427274352 ], [ 15.366431918698083, 46.213045152311906 ], [ 15.364106479630323, 46.206688950934335 ], [ 15.363331333274402, 46.181315823166699 ], [ 15.312275017577974, 46.166200466078635 ], [ 15.293826531968875, 46.165451158144435 ], [ 15.29005415207746, 46.16744070132728 ], [ 15.288710564940629, 46.170076198757556 ], [ 15.290880975276764, 46.172065741940401 ], [ 15.2950667663182, 46.173564357808857 ], [ 15.298787469366175, 46.175941473720002 ], [ 15.301422966796451, 46.179145412830508 ], [ 15.302973260407612, 46.182194322310124 ], [ 15.301422966796451, 46.188912257994275 ], [ 15.309949579409533, 46.193769843503446 ], [ 15.308244256167484, 46.199325060103433 ], [ 15.308244256167484, 46.218264472127657 ], [ 15.31413536955165, 46.222708644688169 ], [ 15.321731805278603, 46.226377671792079 ], [ 15.327777948293658, 46.228496406184149 ], [ 15.33227379679829, 46.22965912526837 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-114", "NAME_1": "Slovenske Konjice" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.376508823123686, 46.311333726969906 ], [ 15.369842564282919, 46.315545356433006 ], [ 15.367827182678298, 46.317586575559972 ], [ 15.365656773241483, 46.321462307339573 ], [ 15.364416537992838, 46.324201158456674 ], [ 15.368757357765844, 46.333968004519761 ], [ 15.382089878145337, 46.35166718219466 ], [ 15.388136021160449, 46.356292222807838 ], [ 15.39371707528278, 46.358462633143972 ], [ 15.401468539741302, 46.356964016376253 ], [ 15.407721388331368, 46.354896958827567 ], [ 15.412217237735319, 46.354845282883446 ], [ 15.425239698852977, 46.371252550264956 ], [ 15.453765089787055, 46.359961249012429 ], [ 15.461568231088961, 46.358152573882137 ], [ 15.502961052610488, 46.359547837862408 ], [ 15.524561802285348, 46.350556139054561 ], [ 15.53231326674387, 46.349961859851931 ], [ 15.540994907189202, 46.344716702513779 ], [ 15.547816195660914, 46.333864650832936 ], [ 15.555102573025295, 46.308646551796926 ], [ 15.55789310098578, 46.293453681242397 ], [ 15.552467074695699, 46.277744045851023 ], [ 15.529987826776789, 46.276633001811547 ], [ 15.511952752317654, 46.282885851300989 ], [ 15.506061638933488, 46.280792955330583 ], [ 15.500015495918376, 46.280069484918783 ], [ 15.39619754398143, 46.301876939269334 ], [ 15.376508823123686, 46.311333726969906 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-147", "NAME_1": "Žiri" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.050233188710649, 46.085094306057329 ], [ 14.12986657128522, 46.073157050557427 ], [ 14.140563592435853, 46.069746405871911 ], [ 14.1464547049207, 46.066129054712064 ], [ 14.159012078944272, 46.054966946467403 ], [ 14.165885044259369, 46.050006008170726 ], [ 14.186813998567175, 46.037913723039878 ], [ 14.171156040019241, 46.020188706943259 ], [ 14.138703241361497, 46.00577098184533 ], [ 14.111211379201791, 46.012643948059747 ], [ 14.108575880872195, 46.015227770445222 ], [ 14.105630324180083, 46.018793442962988 ], [ 14.100669385883464, 46.02732005557607 ], [ 14.096483594842027, 46.032177639286601 ], [ 14.08997236473283, 46.032358507339211 ], [ 14.081755812280903, 46.034761460772756 ], [ 14.053953891758681, 46.063028469288383 ], [ 14.030079379859501, 46.073157050557427 ], [ 14.033024936551556, 46.081631985427748 ], [ 14.038761021204152, 46.083337306871215 ], [ 14.050233188710649, 46.085094306057329 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-171", "NAME_1": "Oplotnica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.461568231088961, 46.358152573882137 ], [ 15.453765089787055, 46.359961249012429 ], [ 15.425239698852977, 46.371252550264956 ], [ 15.409116652311639, 46.380890204219497 ], [ 15.409891798667559, 46.383706569702383 ], [ 15.414852736064915, 46.387659816747146 ], [ 15.417488234394511, 46.390346991920126 ], [ 15.419038527106352, 46.393292547712861 ], [ 15.415162795326751, 46.397788398016132 ], [ 15.409891798667559, 46.402490952995038 ], [ 15.409891798667559, 46.405488186530533 ], [ 15.412372267366209, 46.407658595967405 ], [ 15.414697707333289, 46.41236115184563 ], [ 15.416558058407645, 46.417451280452212 ], [ 15.422759230154327, 46.424608465708104 ], [ 15.440742628669341, 46.418820706010763 ], [ 15.451284621088405, 46.40969981509437 ], [ 15.454540236142975, 46.405488186530533 ], [ 15.45748579283503, 46.399881293087162 ], [ 15.460327995840316, 46.397788398016132 ], [ 15.463583611794206, 46.396935737294427 ], [ 15.468854607554078, 46.397555854019402 ], [ 15.47598595528757, 46.397736721172691 ], [ 15.490093621123719, 46.394920355689862 ], [ 15.494744500158561, 46.39251740225626 ], [ 15.49567467614537, 46.389881903926721 ], [ 15.49412438343353, 46.380838528275433 ], [ 15.496914911394015, 46.37169179893732 ], [ 15.502961052610488, 46.359547837862408 ], [ 15.461568231088961, 46.358152573882137 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-014", "NAME_1": "Cerkno" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.073694288560546, 46.158061427992493 ], [ 14.02775393989242, 46.101630763748744 ], [ 14.024343296106224, 46.092690741784281 ], [ 14.021862827407517, 46.082200426208658 ], [ 14.023258091387788, 46.079048163042273 ], [ 14.030079379859501, 46.073157050557427 ], [ 14.029924351127875, 46.066129054712064 ], [ 14.024498324837793, 46.06452708605616 ], [ 14.019227329077978, 46.063855292487744 ], [ 14.009150424652375, 46.06455292447788 ], [ 13.999796990638572, 46.067188421908099 ], [ 13.981968620855127, 46.076050930406097 ], [ 13.964605339964464, 46.086825465922516 ], [ 13.960109490560512, 46.087316393236961 ], [ 13.959024285842077, 46.085404365319164 ], [ 13.958249138586837, 46.082019558156048 ], [ 13.956853874606622, 46.079306546359987 ], [ 13.949257439778989, 46.074190579331741 ], [ 13.94507164873761, 46.069746405871911 ], [ 13.939593947402727, 46.069074612303496 ], [ 13.935563185092917, 46.069281317878506 ], [ 13.930912306058076, 46.071580919423866 ], [ 13.927501662271879, 46.071141668952862 ], [ 13.926261427023235, 46.069074612303496 ], [ 13.926416456654124, 46.065638129196259 ], [ 13.923470899962069, 46.061271471001589 ], [ 13.913859084429191, 46.060909735795633 ], [ 13.907967970145705, 46.061994941413388 ], [ 13.894945509927311, 46.067653509901561 ], [ 13.90688276542727, 46.073208727400811 ], [ 13.907812941414079, 46.076386827190277 ], [ 13.906417677433865, 46.082872218877753 ], [ 13.903782179104269, 46.08860830353035 ], [ 13.901456740036508, 46.097444972707308 ], [ 13.901611768768078, 46.10519643806515 ], [ 13.899596388062832, 46.113128771475601 ], [ 13.89029463089247, 46.124833482079509 ], [ 13.88610883985109, 46.134548652198532 ], [ 13.886212191739219, 46.140026354432678 ], [ 13.889829542899065, 46.147932848522089 ], [ 13.893550245947097, 46.154211533735293 ], [ 13.906572707064754, 46.163539130226638 ], [ 13.923625928693639, 46.170722153904251 ], [ 13.957939080224378, 46.178370266474587 ], [ 13.989254998219565, 46.194596665803488 ], [ 13.988169792601809, 46.18612173093311 ], [ 13.988479851863644, 46.180669868019947 ], [ 13.99359581889189, 46.178060208112072 ], [ 14.002949252905694, 46.175683092200927 ], [ 14.040621372278508, 46.173150947558156 ], [ 14.067493116813864, 46.167285671696391 ], [ 14.073694288560546, 46.158061427992493 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-003", "NAME_1": "Bled" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.878925815274158, 46.366472480020889 ], [ 13.84791995564143, 46.381226101003733 ], [ 13.918044874571308, 46.407503567235835 ], [ 13.947242059073744, 46.425719508848204 ], [ 13.960419548923028, 46.432075711125151 ], [ 13.972356805322306, 46.436183986901426 ], [ 13.979488153055797, 46.442230129916538 ], [ 13.992355583643246, 46.444813951402693 ], [ 14.072764112573736, 46.414583238125942 ], [ 14.081910841911792, 46.409208889578565 ], [ 14.096638625372236, 46.404609687387165 ], [ 14.101599561870273, 46.403576157713474 ], [ 14.127851189680655, 46.406831772768101 ], [ 14.120874870678733, 46.392724106931951 ], [ 14.137463006112853, 46.372156886930782 ], [ 14.142734001872668, 46.366059067971605 ], [ 14.149245232881185, 46.356964016376253 ], [ 14.15219078867392, 46.35184804934795 ], [ 14.150795525593026, 46.346809596685489 ], [ 14.136067743031902, 46.336551826005916 ], [ 14.132502068715496, 46.330040594997456 ], [ 14.12909142402998, 46.325958156743525 ], [ 14.116223993442532, 46.318206692285003 ], [ 14.111108026414286, 46.306708686356785 ], [ 14.101599561870273, 46.298931383476543 ], [ 14.097258742097267, 46.300946764181788 ], [ 14.09152265834399, 46.310661933401491 ], [ 14.08671674967826, 46.316010444426468 ], [ 14.080050489938174, 46.316630561151442 ], [ 14.074159376553951, 46.314744370756102 ], [ 14.065787795370454, 46.31293569652513 ], [ 14.057881301281043, 46.312108873325826 ], [ 14.043566928970563, 46.315235297171228 ], [ 14.033955111639102, 46.321333116130404 ], [ 14.028374058416034, 46.32626821600536 ], [ 14.022327915400979, 46.330350654259234 ], [ 14.009305454283265, 46.336396796375027 ], [ 13.998246697926731, 46.337947089086867 ], [ 13.983208856103829, 46.34766225830657 ], [ 13.96414025197106, 46.352313137341412 ], [ 13.947087030342175, 46.359806220280802 ], [ 13.899286329700317, 46.366601671230114 ], [ 13.878925815274158, 46.366472480020889 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-001", "NAME_1": "Ajdovščina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.120874870678733, 45.878750312476939 ], [ 14.125990837706979, 45.868802599260505 ], [ 14.096638625372236, 45.851852729519806 ], [ 14.093072951055831, 45.848829658461966 ], [ 14.04604739766927, 45.836944078006752 ], [ 14.021707797776628, 45.848054511206726 ], [ 14.018142124359542, 45.855289211727722 ], [ 14.014731479674026, 45.865159410578315 ], [ 14.005119663241828, 45.873014227824342 ], [ 13.997316521939922, 45.875908108572332 ], [ 13.986774530420234, 45.877716782803247 ], [ 13.973442010040742, 45.877200018865778 ], [ 13.956543817143427, 45.873686022292077 ], [ 13.932462598769916, 45.863454088235585 ], [ 13.921920607250229, 45.855650946933622 ], [ 13.90750288305162, 45.849372259921836 ], [ 13.89184492360431, 45.840664781054784 ], [ 13.88590213427608, 45.82865001118904 ], [ 13.86373294382031, 45.826195380012734 ], [ 13.857996860067033, 45.82650543927457 ], [ 13.833967319436226, 45.835497138082417 ], [ 13.823218621442209, 45.847486070425759 ], [ 13.820583123112613, 45.849708156706015 ], [ 13.804925163665359, 45.856012682139522 ], [ 13.800739372623923, 45.858544826782293 ], [ 13.797948845562757, 45.862601427513823 ], [ 13.794848260139077, 45.864952704103985 ], [ 13.791282585822671, 45.868828436782906 ], [ 13.786941766049665, 45.872730007883547 ], [ 13.76890669069121, 45.88531321942952 ], [ 13.755109084116896, 45.891385199966976 ], [ 13.747047560396595, 45.898284002804473 ], [ 13.738831007944668, 45.901798001176815 ], [ 13.733870069647992, 45.90324494110115 ], [ 13.732784864929556, 45.905854601009025 ], [ 13.74658247240319, 45.912650051058961 ], [ 13.75309370341165, 45.914277859035963 ], [ 13.774384392925356, 45.931977036710862 ], [ 13.798879022448887, 45.960864162850783 ], [ 13.844044223861829, 45.983705145975705 ], [ 13.844044223861829, 45.993420315195351 ], [ 13.852260776313756, 46.002050278797299 ], [ 13.865748325424875, 45.98876943616051 ], [ 13.866678501411684, 45.984842027537525 ], [ 13.873189732420201, 45.980242825346068 ], [ 13.882956576684649, 45.975540270367162 ], [ 13.900991652043103, 45.96913239214615 ], [ 13.923625928693639, 45.950890611212685 ], [ 13.947862175798775, 45.936524562958198 ], [ 13.961194696178268, 45.933682359053591 ], [ 13.970806511711146, 45.927739569725361 ], [ 13.99049523256889, 45.918799546861578 ], [ 14.003259312167529, 45.909497788791896 ], [ 14.042791781715323, 45.890170803140052 ], [ 14.120874870678733, 45.878750312476939 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-019", "NAME_1": "Divaca" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.037210727592992, 45.761005560957869 ], [ 14.072143995848705, 45.743358059227035 ], [ 14.081910841911792, 45.734237169209962 ], [ 14.093383010317666, 45.714290065933767 ], [ 14.083151076261174, 45.706512763053524 ], [ 14.071678907855301, 45.702688707218044 ], [ 14.064702589752699, 45.693541978779251 ], [ 14.062532179416507, 45.686462306989824 ], [ 14.06454756012181, 45.679692695361553 ], [ 14.06857832243162, 45.673594876402376 ], [ 14.069198439156651, 45.659693915241974 ], [ 14.072764112573736, 45.653027656401207 ], [ 14.077880079601982, 45.645431219774935 ], [ 14.083151076261174, 45.635561021823662 ], [ 14.079585401944712, 45.629618232495432 ], [ 14.079895461206547, 45.627912910152645 ], [ 14.090592482357181, 45.624243883048734 ], [ 14.089817336001261, 45.614089464257347 ], [ 14.077259962876951, 45.60987783479419 ], [ 14.071988967117136, 45.60357331026006 ], [ 14.066407912095428, 45.600989487874529 ], [ 14.059586622724453, 45.599594224793634 ], [ 14.039691196291642, 45.602436427798864 ], [ 14.024963412831198, 45.61142812840535 ], [ 14.006204867960264, 45.617784328883658 ], [ 13.987704704608404, 45.627137762897405 ], [ 13.97142662933544, 45.633080553125012 ], [ 13.95080773339015, 45.635974432973683 ], [ 13.938353713053402, 45.642640692713769 ], [ 13.943676384757339, 45.661140855166309 ], [ 13.936493361079727, 45.67039093729187 ], [ 13.962434929628273, 45.698115343448308 ], [ 13.967860955019034, 45.705272528704199 ], [ 13.965070427957869, 45.714109198780477 ], [ 13.959644402567108, 45.722093207235673 ], [ 13.955613641156617, 45.733281154801432 ], [ 13.956698845874996, 45.739973252963239 ], [ 13.964450311232838, 45.744339911157965 ], [ 13.975612420376876, 45.74847402625528 ], [ 13.989875115843915, 45.765010483946639 ], [ 14.002794224174067, 45.769919745399932 ], [ 14.005274691973455, 45.771366686223587 ], [ 14.012251010975376, 45.771056626961752 ], [ 14.015816685291782, 45.770539863024226 ], [ 14.037210727592992, 45.761005560957869 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-036", "NAME_1": "Idrija" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.138703241361497, 46.00577098184533 ], [ 14.137307977381226, 45.992335110476915 ], [ 14.12893639529841, 45.984609483540794 ], [ 14.120719841947107, 45.978666694212563 ], [ 14.11079796715245, 45.973266507243466 ], [ 14.108575880872195, 45.96928742087772 ], [ 14.109557732803125, 45.967323717015915 ], [ 14.114053582207021, 45.966083481767271 ], [ 14.116068962912266, 45.961587633262639 ], [ 14.114828728562941, 45.951562404781157 ], [ 14.108730909603764, 45.939754340490424 ], [ 14.101754592400482, 45.9303750680549 ], [ 14.100359328420268, 45.921538397978679 ], [ 14.100669385883464, 45.913967799774127 ], [ 14.104235060199869, 45.906190496893885 ], [ 14.10904096796628, 45.901487941914979 ], [ 14.120874870678733, 45.878750312476939 ], [ 14.042791781715323, 45.890170803140052 ], [ 14.003259312167529, 45.909497788791896 ], [ 13.99049523256889, 45.918799546861578 ], [ 13.970806511711146, 45.927739569725361 ], [ 13.961194696178268, 45.933682359053591 ], [ 13.947862175798775, 45.936524562958198 ], [ 13.923625928693639, 45.950890611212685 ], [ 13.900991652043103, 45.96913239214615 ], [ 13.882956576684649, 45.975540270367162 ], [ 13.873189732420201, 45.980242825346068 ], [ 13.866678501411684, 45.984842027537525 ], [ 13.865748325424875, 45.98876943616051 ], [ 13.852260776313756, 46.002050278797299 ], [ 13.865903355055764, 46.006985379571574 ], [ 13.86776370613012, 46.02582143790903 ], [ 13.86776370613012, 46.031815904080702 ], [ 13.867143589405089, 46.037164415105622 ], [ 13.868228794123524, 46.040807603787869 ], [ 13.87256961389653, 46.041169338993768 ], [ 13.874584994601832, 46.042978014124003 ], [ 13.873654818614966, 46.04680206995954 ], [ 13.87101932118469, 46.049902656282541 ], [ 13.864818149438008, 46.052408963402911 ], [ 13.862027622376843, 46.055406196039087 ], [ 13.860942416759087, 46.058739326358818 ], [ 13.863577915088683, 46.063157660497609 ], [ 13.867453647767604, 46.064837145317995 ], [ 13.876910434568913, 46.062847602135093 ], [ 13.882181431228048, 46.063286851706835 ], [ 13.88610883985109, 46.066594142705469 ], [ 13.887659132562931, 46.068816229885101 ], [ 13.894945509927311, 46.067653509901561 ], [ 13.907967970145705, 46.061994941413388 ], [ 13.913859084429191, 46.060909735795633 ], [ 13.923470899962069, 46.061271471001589 ], [ 13.926416456654124, 46.065638129196259 ], [ 13.926261427023235, 46.069074612303496 ], [ 13.927501662271879, 46.071141668952862 ], [ 13.930912306058076, 46.071580919423866 ], [ 13.935563185092917, 46.069281317878506 ], [ 13.939593947402727, 46.069074612303496 ], [ 13.94507164873761, 46.069746405871911 ], [ 13.949257439778989, 46.074190579331741 ], [ 13.956853874606622, 46.079306546359987 ], [ 13.958249138586837, 46.082019558156048 ], [ 13.959024285842077, 46.085404365319164 ], [ 13.960109490560512, 46.087316393236961 ], [ 13.964605339964464, 46.086825465922516 ], [ 13.981968620855127, 46.076050930406097 ], [ 13.999796990638572, 46.067188421908099 ], [ 14.009150424652375, 46.06455292447788 ], [ 14.019227329077978, 46.063855292487744 ], [ 14.024498324837793, 46.06452708605616 ], [ 14.029924351127875, 46.066129054712064 ], [ 14.030079379859501, 46.073157050557427 ], [ 14.053953891758681, 46.063028469288383 ], [ 14.081755812280903, 46.034761460772756 ], [ 14.08997236473283, 46.032358507339211 ], [ 14.096483594842027, 46.032177639286601 ], [ 14.100669385883464, 46.02732005557607 ], [ 14.105630324180083, 46.018793442962988 ], [ 14.108575880872195, 46.015227770445222 ], [ 14.111211379201791, 46.012643948059747 ], [ 14.138703241361497, 46.00577098184533 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-136", "NAME_1": "Vipava" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.04604739766927, 45.836944078006752 ], [ 14.058656446737587, 45.808625393547061 ], [ 14.052093539785005, 45.796946520465497 ], [ 14.048837924730435, 45.778084621907738 ], [ 14.043566928970563, 45.772916978935427 ], [ 14.037210727592992, 45.761005560957869 ], [ 14.015816685291782, 45.770539863024226 ], [ 14.012251010975376, 45.771056626961752 ], [ 14.005274691973455, 45.771366686223587 ], [ 14.002794224174067, 45.769919745399932 ], [ 13.989875115843915, 45.765010483946639 ], [ 13.983518913566968, 45.772942817357091 ], [ 13.931377394051481, 45.793225816518202 ], [ 13.902541944754944, 45.810227363102285 ], [ 13.88590213427608, 45.82865001118904 ], [ 13.89184492360431, 45.840664781054784 ], [ 13.90750288305162, 45.849372259921836 ], [ 13.921920607250229, 45.855650946933622 ], [ 13.932462598769916, 45.863454088235585 ], [ 13.956543817143427, 45.873686022292077 ], [ 13.973442010040742, 45.877200018865778 ], [ 13.986774530420234, 45.877716782803247 ], [ 13.997316521939922, 45.875908108572332 ], [ 14.005119663241828, 45.873014227824342 ], [ 14.014731479674026, 45.865159410578315 ], [ 14.018142124359542, 45.855289211727722 ], [ 14.021707797776628, 45.848054511206726 ], [ 14.04604739766927, 45.836944078006752 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-150", "NAME_1": "Bloke" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.505089146446949, 45.840768133842289 ], [ 14.52958377417184, 45.812914537376002 ], [ 14.564206984065038, 45.79007355425108 ], [ 14.553303257339451, 45.781288561018243 ], [ 14.566067336038714, 45.76676748313281 ], [ 14.569633010355119, 45.759481105768373 ], [ 14.569788039086745, 45.752143053359191 ], [ 14.576144239564996, 45.735322373928398 ], [ 14.555628696407211, 45.734676418781703 ], [ 14.550047642284824, 45.738267931519772 ], [ 14.537490269160571, 45.734418036363252 ], [ 14.52958377417184, 45.730232245321815 ], [ 14.525242954398834, 45.728914495707386 ], [ 14.50818973187063, 45.73111074536456 ], [ 14.478372429743843, 45.747853909530249 ], [ 14.492480095579936, 45.755708726776277 ], [ 14.490154657411495, 45.759610296977598 ], [ 14.486588983095089, 45.76408030885915 ], [ 14.481317987335217, 45.765656439992711 ], [ 14.463489617551772, 45.775449124477461 ], [ 14.446591423755194, 45.789246731051776 ], [ 14.442198927138747, 45.795757962060293 ], [ 14.442198927138747, 45.800486355460919 ], [ 14.446281366291998, 45.80686839526021 ], [ 14.450622186065004, 45.811777655814126 ], [ 14.457133416174202, 45.817203681204887 ], [ 14.483488396772088, 45.832887478174541 ], [ 14.493100213204286, 45.835548814026538 ], [ 14.505089146446949, 45.840768133842289 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-120", "NAME_1": "Šentjur pri Celju" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.363331333274402, 46.181315823166699 ], [ 15.364106479630323, 46.206688950934335 ], [ 15.366431918698083, 46.213045152311906 ], [ 15.363796421267807, 46.218910427274352 ], [ 15.361781039663242, 46.222372747903989 ], [ 15.339405145431101, 46.229039008543396 ], [ 15.343590935573218, 46.241803087242658 ], [ 15.35154910740539, 46.246738186218295 ], [ 15.356199984641535, 46.250846462893946 ], [ 15.358525424608672, 46.260535793691929 ], [ 15.363796421267807, 46.280095323340447 ], [ 15.369532505021084, 46.282394923986544 ], [ 15.374183384055925, 46.28691661181216 ], [ 15.378059115835526, 46.28962962540686 ], [ 15.379919467809202, 46.294642238748281 ], [ 15.37635379439206, 46.298673001058148 ], [ 15.373563267330894, 46.300378323400878 ], [ 15.376508823123686, 46.311333726969906 ], [ 15.39619754398143, 46.301876939269334 ], [ 15.500015495918376, 46.280069484918783 ], [ 15.506061638933488, 46.280792955330583 ], [ 15.511952752317654, 46.282885851300989 ], [ 15.529987826776789, 46.276633001811547 ], [ 15.524096714291943, 46.272137153306971 ], [ 15.520996127968942, 46.268855698931361 ], [ 15.51494998495383, 46.265005805573423 ], [ 15.502806023878861, 46.254257107579406 ], [ 15.487768182055959, 46.24725495105514 ], [ 15.476296013650085, 46.243482571163725 ], [ 15.458726027184412, 46.234749253874952 ], [ 15.450354445101539, 46.228496406184149 ], [ 15.447873976402889, 46.226093451851284 ], [ 15.447098830046968, 46.221468411238163 ], [ 15.450044385839703, 46.21309682915529 ], [ 15.458312616034391, 46.198394884116567 ], [ 15.476140984918516, 46.179067898464723 ], [ 15.478466423986276, 46.173331813812126 ], [ 15.483582391014522, 46.16591624613784 ], [ 15.491178826741418, 46.160800279109594 ], [ 15.505131462946622, 46.156976223274057 ], [ 15.516500277665671, 46.159405016028643 ], [ 15.526422153359647, 46.160128486440499 ], [ 15.532003208381354, 46.161420396733888 ], [ 15.545490756593153, 46.155167548143822 ], [ 15.536033969791845, 46.130362861157096 ], [ 15.517895541645942, 46.121681219812444 ], [ 15.507456902913702, 46.112482815429587 ], [ 15.499240349562456, 46.109330553162465 ], [ 15.491798944365769, 46.110415757880901 ], [ 15.487923210787528, 46.111966051492061 ], [ 15.481567010309277, 46.11268952100454 ], [ 15.478466423986276, 46.108116157234861 ], [ 15.476451043281031, 46.102225042951375 ], [ 15.486527947706634, 46.087755641909325 ], [ 15.492574089822369, 46.067679348323225 ], [ 15.418418410381321, 46.063312690128498 ], [ 15.368447300302648, 46.072123521783055 ], [ 15.377283970378926, 46.083854071708004 ], [ 15.380074497440091, 46.089150905889596 ], [ 15.378989291822336, 46.097806707913207 ], [ 15.382709994870368, 46.108193670701326 ], [ 15.389996372234748, 46.107470201188789 ], [ 15.394182163276184, 46.108141994757204 ], [ 15.398367954317621, 46.109511420315755 ], [ 15.405706007626122, 46.115299180912473 ], [ 15.413922560078049, 46.120079251156483 ], [ 15.415782912051725, 46.122353014280179 ], [ 15.416868116770161, 46.124833482079509 ], [ 15.420123731824731, 46.125660305278814 ], [ 15.423069289416162, 46.124006659779525 ], [ 15.427100050826652, 46.120337633574877 ], [ 15.431595900230604, 46.118322251970312 ], [ 15.435626661641095, 46.118115546395302 ], [ 15.437331983983881, 46.119614163163078 ], [ 15.43841718870226, 46.122611395799254 ], [ 15.439037306326611, 46.125763658066319 ], [ 15.440277540675936, 46.128554186026861 ], [ 15.438572218333206, 46.13178396355903 ], [ 15.435006544916121, 46.135013740191937 ], [ 15.425704786846438, 46.138889471971538 ], [ 15.421984083798407, 46.141292426304403 ], [ 15.413302443353075, 46.14912140602803 ], [ 15.411752149741915, 46.152066961820822 ], [ 15.407101270707074, 46.152687079445116 ], [ 15.403328891714978, 46.152170315507647 ], [ 15.370927769001298, 46.135737209704416 ], [ 15.367052036322377, 46.149638169965556 ], [ 15.373253208069059, 46.158061427992493 ], [ 15.374958530411845, 46.167776598111516 ], [ 15.363331333274402, 46.181315823166699 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-051", "NAME_1": "Kozje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.499240349562456, 46.109330553162465 ], [ 15.507456902913702, 46.112482815429587 ], [ 15.517895541645942, 46.121681219812444 ], [ 15.536033969791845, 46.130362861157096 ], [ 15.546575962210852, 46.123825791726858 ], [ 15.558978305704215, 46.121965439753239 ], [ 15.575618117082399, 46.112017727436125 ], [ 15.584609815890303, 46.108581244328946 ], [ 15.59933759935069, 46.086024482044195 ], [ 15.596237013027689, 46.082407131783668 ], [ 15.5953068379402, 46.078738105579077 ], [ 15.599027540988232, 46.06912628824756 ], [ 15.607554151802674, 46.06587067319299 ], [ 15.619646436933522, 46.040859279731933 ], [ 15.624142287236737, 46.037810370252373 ], [ 15.631170282182779, 46.034193019991847 ], [ 15.638611688278786, 46.032280992074107 ], [ 15.663261345634567, 46.032177639286601 ], [ 15.667757195937838, 46.02638987868994 ], [ 15.623832227974901, 46.003703925195964 ], [ 15.597632277007961, 45.994453843969723 ], [ 15.583679639903437, 45.993988755976261 ], [ 15.603678420023073, 46.018225003081398 ], [ 15.601818068049397, 46.020498766205094 ], [ 15.59933759935069, 46.022307441335329 ], [ 15.585074903883708, 46.021015530142563 ], [ 15.57794355615016, 46.019310207799833 ], [ 15.571897414034424, 46.019000149437318 ], [ 15.567349887787088, 46.017734077565592 ], [ 15.55944339369762, 46.017113959041978 ], [ 15.548436314184528, 46.04411489478656 ], [ 15.537739292134631, 46.052641507399642 ], [ 15.524871859748487, 46.059256090296287 ], [ 15.51743045365248, 46.059876207021318 ], [ 15.492574089822369, 46.067679348323225 ], [ 15.486527947706634, 46.087755641909325 ], [ 15.476451043281031, 46.102225042951375 ], [ 15.478466423986276, 46.108116157234861 ], [ 15.481567010309277, 46.11268952100454 ], [ 15.487923210787528, 46.111966051492061 ], [ 15.491798944365769, 46.110415757880901 ], [ 15.499240349562456, 46.109330553162465 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-124", "NAME_1": "Šmarje pri Jelšah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.505131462946622, 46.156976223274057 ], [ 15.491178826741418, 46.160800279109594 ], [ 15.483582391014522, 46.16591624613784 ], [ 15.478466423986276, 46.173331813812126 ], [ 15.476140984918516, 46.179067898464723 ], [ 15.458312616034391, 46.198394884116567 ], [ 15.450044385839703, 46.21309682915529 ], [ 15.447098830046968, 46.221468411238163 ], [ 15.447873976402889, 46.226093451851284 ], [ 15.450354445101539, 46.228496406184149 ], [ 15.458726027184412, 46.234749253874952 ], [ 15.476296013650085, 46.243482571163725 ], [ 15.487768182055959, 46.24725495105514 ], [ 15.502806023878861, 46.254257107579406 ], [ 15.51494998495383, 46.265005805573423 ], [ 15.520996127968942, 46.268855698931361 ], [ 15.524096714291943, 46.272137153306971 ], [ 15.529987826776789, 46.276633001811547 ], [ 15.552467074695699, 46.277744045851023 ], [ 15.565799595075248, 46.273661606697772 ], [ 15.585850051138948, 46.235989488224277 ], [ 15.59685713065204, 46.22544749580527 ], [ 15.603988478385531, 46.222605291900663 ], [ 15.607089063809212, 46.219969794470387 ], [ 15.613290235555894, 46.20426015907907 ], [ 15.5787187034054, 46.179222927196292 ], [ 15.567504917417978, 46.164727687732579 ], [ 15.545490756593153, 46.155167548143822 ], [ 15.532003208381354, 46.161420396733888 ], [ 15.526422153359647, 46.160128486440499 ], [ 15.516500277665671, 46.159405016028643 ], [ 15.505131462946622, 46.156976223274057 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-110", "NAME_1": "Sevnica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.368447300302648, 46.072123521783055 ], [ 15.418418410381321, 46.063312690128498 ], [ 15.420278760556357, 46.049928493804941 ], [ 15.419503615099757, 46.04644033475364 ], [ 15.416713088038591, 46.041789455718799 ], [ 15.416713088038591, 46.033159492116852 ], [ 15.419038527106352, 46.02582143790903 ], [ 15.422604201422757, 46.017889106297218 ], [ 15.427875197182573, 46.012618110537346 ], [ 15.429890577887818, 46.006985379571574 ], [ 15.429425489894413, 46.000629177294684 ], [ 15.424154494134598, 45.993988755976261 ], [ 15.389531284241343, 45.969649156083676 ], [ 15.371547885726329, 45.951097316787695 ], [ 15.363021274012567, 45.934767563772027 ], [ 15.346381462634383, 45.94448273389105 ], [ 15.342505730854782, 45.951407376049531 ], [ 15.334599236765371, 45.954197903110696 ], [ 15.327157829769988, 45.955851549509362 ], [ 15.317080926243761, 45.957143459802808 ], [ 15.295686883043231, 45.956058255084372 ], [ 15.289640740927439, 45.953836167904797 ], [ 15.286488477760997, 45.951820787199551 ], [ 15.285403273042618, 45.94908193608245 ], [ 15.285093214680103, 45.945464585821981 ], [ 15.286643508291263, 45.940400296536438 ], [ 15.284008009961667, 45.935749417501597 ], [ 15.279357130926826, 45.936162827752298 ], [ 15.266024611446653, 45.944766953831845 ], [ 15.259668410069082, 45.944999497828519 ], [ 15.257342970102002, 45.94391429311014 ], [ 15.257032911739486, 45.941588854042379 ], [ 15.255172559765811, 45.938539944562763 ], [ 15.238119338136926, 45.932132066341751 ], [ 15.23858442613033, 45.924354763461565 ], [ 15.203651156975297, 45.937351386157502 ], [ 15.180706821062927, 45.951355699206147 ], [ 15.166082391289308, 45.96432648437974 ], [ 15.158951042656497, 45.974170843909292 ], [ 15.159881218643307, 45.980449530921078 ], [ 15.163136833697877, 45.984609483540794 ], [ 15.167632684001148, 45.98861440742894 ], [ 15.168872918350473, 45.994143784707887 ], [ 15.166237420020877, 45.995900783894058 ], [ 15.161741570616982, 45.995435695900596 ], [ 15.156935662850572, 45.993885403188756 ], [ 15.15150963656049, 45.991120714549311 ], [ 15.143448113739453, 45.989234524153915 ], [ 15.137246941992771, 45.991301580803281 ], [ 15.133061150951335, 45.996469225574288 ], [ 15.116111281210635, 46.00419485071177 ], [ 15.093321974029891, 46.030730699362266 ], [ 15.094097121285131, 46.040290838951023 ], [ 15.144533319357208, 46.042487087708878 ], [ 15.220704380402822, 46.029490465012941 ], [ 15.234863722183036, 46.030575669731377 ], [ 15.240289747573797, 46.033676256054321 ], [ 15.239204542855362, 46.036854355843843 ], [ 15.236879102888281, 46.038998927758257 ], [ 15.233106723896185, 46.040471707003633 ], [ 15.225045200175828, 46.045251777247699 ], [ 15.222099644383093, 46.046492010697705 ], [ 15.218378941335061, 46.047525540371339 ], [ 15.210162387983814, 46.048972480295731 ], [ 15.206906772929187, 46.050987861000976 ], [ 15.204581332962107, 46.053003241706222 ], [ 15.201945834632568, 46.060754706164744 ], [ 15.204891392223942, 46.066413276451499 ], [ 15.203806186606187, 46.0687903923627 ], [ 15.200860629914132, 46.072588608877197 ], [ 15.193729282180641, 46.078479723160683 ], [ 15.192954135824721, 46.080882677493548 ], [ 15.19388431181153, 46.082174587786994 ], [ 15.203496128243728, 46.083699042077114 ], [ 15.253932326315805, 46.083337306871215 ], [ 15.268815137608499, 46.079642442244904 ], [ 15.27672163259723, 46.076076768827818 ], [ 15.281062453269612, 46.07145172821464 ], [ 15.282612745981453, 46.067731025166665 ], [ 15.284008009961667, 46.061994941413388 ], [ 15.287108595385348, 46.059101061564718 ], [ 15.292121208726769, 46.059049383821957 ], [ 15.302663202045096, 46.064707953209449 ], [ 15.316770867881246, 46.068661201153475 ], [ 15.368447300302648, 46.072123521783055 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-170", "NAME_1": "Mirna Pec" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.144843376820347, 45.873324286186858 ], [ 15.135231561287526, 45.849139715925105 ], [ 15.128720330279009, 45.845005601727109 ], [ 15.125309685593493, 45.843791204900185 ], [ 15.122002393695482, 45.844023748896859 ], [ 15.120142042621183, 45.843817044221169 ], [ 15.118591749909342, 45.842576808972524 ], [ 15.119676954627721, 45.838804429980428 ], [ 15.120038689833677, 45.835962226075821 ], [ 15.119676954627721, 45.832396551759416 ], [ 15.118281690647507, 45.829037583917341 ], [ 15.115181105223826, 45.823714911314084 ], [ 15.112700635625799, 45.820355943472009 ], [ 15.10928999183966, 45.816867784420708 ], [ 15.101228468119302, 45.815317490809548 ], [ 15.096267530721946, 45.810149847837181 ], [ 15.086035596665454, 45.806144923949034 ], [ 15.052497593289274, 45.82366323537002 ], [ 15.048776890241299, 45.82614370406867 ], [ 15.037304721835426, 45.840871487529114 ], [ 15.037769809828831, 45.860973619536878 ], [ 15.043350863951218, 45.866864732021725 ], [ 15.050482211684709, 45.872600815775002 ], [ 15.060404087378743, 45.878026842065083 ], [ 15.070687697379299, 45.879783841251253 ], [ 15.0745634291589, 45.880093898714449 ], [ 15.082935011241773, 45.881902573844684 ], [ 15.08867109499505, 45.886346747304515 ], [ 15.093942091654185, 45.892961331100537 ], [ 15.097507765071271, 45.894666653443267 ], [ 15.102003615374542, 45.894795843753172 ], [ 15.105414260060058, 45.891772772695276 ], [ 15.111925490169199, 45.88836212800976 ], [ 15.117041457197502, 45.88435720502099 ], [ 15.123139276156678, 45.881566677060448 ], [ 15.127945183923089, 45.878336900427598 ], [ 15.144843376820347, 45.873324286186858 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-130", "NAME_1": "Trebnje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.144843376820347, 45.873324286186858 ], [ 15.127945183923089, 45.878336900427598 ], [ 15.123139276156678, 45.881566677060448 ], [ 15.117041457197502, 45.88435720502099 ], [ 15.111925490169199, 45.88836212800976 ], [ 15.105414260060058, 45.891772772695276 ], [ 15.102003615374542, 45.894795843753172 ], [ 15.097507765071271, 45.894666653443267 ], [ 15.093942091654185, 45.892961331100537 ], [ 15.08867109499505, 45.886346747304515 ], [ 15.082935011241773, 45.881902573844684 ], [ 15.0745634291589, 45.880093898714449 ], [ 15.070687697379299, 45.879783841251253 ], [ 15.060404087378743, 45.878026842065083 ], [ 15.050482211684709, 45.872600815775002 ], [ 15.043350863951218, 45.866864732021725 ], [ 15.037769809828831, 45.860973619536878 ], [ 15.037304721835426, 45.840871487529114 ], [ 15.025677523798663, 45.837977606781124 ], [ 15.019631381682927, 45.839708767545574 ], [ 15.015445590641491, 45.84485057209622 ], [ 14.999890984881006, 45.849139715925105 ], [ 14.978962029673937, 45.842163397822503 ], [ 14.967024774173979, 45.843817044221169 ], [ 14.958963249554301, 45.848054511206726 ], [ 14.954777459412185, 45.853428859754047 ], [ 14.952917108337886, 45.859061590719818 ], [ 14.948679639553689, 45.863660793810539 ], [ 14.938602736027406, 45.868621731207895 ], [ 14.929456007588669, 45.870585435969076 ], [ 14.877159458442236, 45.869551907194761 ], [ 14.871423373789639, 45.877510077228237 ], [ 14.86878787635942, 45.887354438556486 ], [ 14.874058872119235, 45.898749090797878 ], [ 14.878709751154076, 45.92500071950758 ], [ 14.881965366208647, 45.932622992756876 ], [ 14.888786654680359, 45.941330470724608 ], [ 14.908837110744059, 45.949185288869955 ], [ 14.927285597252478, 45.96298289724291 ], [ 14.939532912014272, 45.966186835454096 ], [ 14.954467401049726, 45.975075182373757 ], [ 14.968265007623984, 45.974635931902696 ], [ 14.982217644728507, 45.972465522465882 ], [ 14.999890984881006, 45.964429837167245 ], [ 15.024127231986142, 45.970217596864586 ], [ 15.03218875480718, 45.977452298284902 ], [ 15.036684605110395, 45.98572052758027 ], [ 15.037924838560457, 45.993885403188756 ], [ 15.040560336889996, 46.000551662928899 ], [ 15.054823032357035, 46.002153632484124 ], [ 15.079214308193741, 46.001275133340698 ], [ 15.089291212619344, 46.00633942352556 ], [ 15.097197706708755, 46.00690786430647 ], [ 15.100298293031756, 46.006442776313065 ], [ 15.102313673737058, 46.004969997967009 ], [ 15.116111281210635, 46.00419485071177 ], [ 15.133061150951335, 45.996469225574288 ], [ 15.137246941992771, 45.991301580803281 ], [ 15.143448113739453, 45.989234524153915 ], [ 15.15150963656049, 45.991120714549311 ], [ 15.156935662850572, 45.993885403188756 ], [ 15.161741570616982, 45.995435695900596 ], [ 15.166237420020877, 45.995900783894058 ], [ 15.168872918350473, 45.994143784707887 ], [ 15.167632684001148, 45.98861440742894 ], [ 15.163136833697877, 45.984609483540794 ], [ 15.159881218643307, 45.980449530921078 ], [ 15.158951042656497, 45.974170843909292 ], [ 15.166082391289308, 45.96432648437974 ], [ 15.180706821062927, 45.951355699206147 ], [ 15.203651156975297, 45.937351386157502 ], [ 15.23858442613033, 45.924354763461565 ], [ 15.227370640142908, 45.909084378541195 ], [ 15.226905552149503, 45.90479523381299 ], [ 15.228300816129718, 45.900506089984049 ], [ 15.228765903223859, 45.895803535005086 ], [ 15.21775882281139, 45.879628810720988 ], [ 15.209852328721979, 45.873815213501302 ], [ 15.196519810141126, 45.86986196645654 ], [ 15.184737583372737, 45.867484850545395 ], [ 15.144843376820347, 45.873324286186858 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-193", "NAME_1": "Žužemberk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.037304721835426, 45.840871487529114 ], [ 15.048776890241299, 45.82614370406867 ], [ 15.052497593289274, 45.82366323537002 ], [ 15.086035596665454, 45.806144923949034 ], [ 15.058078648310982, 45.781081855443233 ], [ 15.033428989156505, 45.781211045753139 ], [ 15.014980502648086, 45.784776720069544 ], [ 15.003611687929038, 45.782373765736679 ], [ 14.996480340195546, 45.779738268306403 ], [ 14.982062615996938, 45.766302395139405 ], [ 14.939222852752437, 45.771547553376877 ], [ 14.926355422164988, 45.769196274988076 ], [ 14.895762973682281, 45.745115058413205 ], [ 14.877004428811347, 45.743926500007944 ], [ 14.869718052346229, 45.752246406146696 ], [ 14.862431674981792, 45.755657049932893 ], [ 14.846463657172023, 45.759584459455198 ], [ 14.835714959178006, 45.760540472964408 ], [ 14.826878289101728, 45.757620754694074 ], [ 14.813700799252445, 45.757672431537458 ], [ 14.803933954088677, 45.775319933268293 ], [ 14.802538690108463, 45.780280869766329 ], [ 14.804554070813708, 45.797514960347144 ], [ 14.824397821302398, 45.797980048340548 ], [ 14.837110223158277, 45.796016344478687 ], [ 14.848944125870673, 45.799685369783958 ], [ 14.855765415241706, 45.80782440876942 ], [ 14.856230503235111, 45.825058499350234 ], [ 14.850339389850944, 45.839837957855423 ], [ 14.847393833158833, 45.845005601727109 ], [ 14.847393833158833, 45.850922553532996 ], [ 14.850494418582514, 45.853687242172441 ], [ 14.876539340817885, 45.857097886857957 ], [ 14.877159458442236, 45.869551907194761 ], [ 14.929456007588669, 45.870585435969076 ], [ 14.938602736027406, 45.868621731207895 ], [ 14.948679639553689, 45.863660793810539 ], [ 14.952917108337886, 45.859061590719818 ], [ 14.954777459412185, 45.853428859754047 ], [ 14.958963249554301, 45.848054511206726 ], [ 14.967024774173979, 45.843817044221169 ], [ 14.978962029673937, 45.842163397822503 ], [ 14.999890984881006, 45.849139715925105 ], [ 15.015445590641491, 45.84485057209622 ], [ 15.019631381682927, 45.839708767545574 ], [ 15.025677523798663, 45.837977606781124 ], [ 15.037304721835426, 45.840871487529114 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-132", "NAME_1": "Turnišče" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347870720857088, 46.615346178483321 ], [ 16.378463169339796, 46.599791571823573 ], [ 16.363890414610921, 46.597414455912372 ], [ 16.349110955206413, 46.600566718179493 ], [ 16.340429314761025, 46.599352322251832 ], [ 16.335623406994614, 46.597156074393297 ], [ 16.335158319001209, 46.593952135282791 ], [ 16.328492059261123, 46.583823554013804 ], [ 16.300535109108012, 46.597336941546587 ], [ 16.298209670040251, 46.617878323126092 ], [ 16.283171828217291, 46.62767100671158 ], [ 16.286427443271862, 46.636223455947686 ], [ 16.286272413640972, 46.641236070188484 ], [ 16.297899610778416, 46.647850653984449 ], [ 16.314384393424973, 46.645137641289068 ], [ 16.347870720857088, 46.615346178483321 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-100", "NAME_1": "Radenci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.013627556966185, 46.593693752864397 ], [ 16.006806267595152, 46.621392319699794 ], [ 16.007736443582019, 46.63283865058321 ], [ 16.041739535850866, 46.662733466176519 ], [ 16.042049595112701, 46.662681790232398 ], [ 16.067112663618502, 46.644336656511484 ], [ 16.110314162068903, 46.623872789297764 ], [ 16.105198195040657, 46.617206529557677 ], [ 16.112019484411633, 46.6080081242755 ], [ 16.095586378608459, 46.60743968439391 ], [ 16.079308302436175, 46.59315115050515 ], [ 16.072280308389509, 46.588061021898625 ], [ 16.069644810059913, 46.587285875542705 ], [ 16.066079135743507, 46.590799872116406 ], [ 16.060963168715261, 46.602013658103829 ], [ 16.055847201687016, 46.605786037995244 ], [ 16.048870883584414, 46.606251125988649 ], [ 16.036933628084455, 46.596484279925562 ], [ 16.031042514700289, 46.592711900034146 ], [ 16.027321811652257, 46.589559637767024 ], [ 16.013627556966185, 46.593693752864397 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-116", "NAME_1": "Sveti Jurij" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.978280876661131, 46.585968125928218 ], [ 16.013627556966185, 46.593693752864397 ], [ 16.027321811652257, 46.589559637767024 ], [ 16.031042514700289, 46.592711900034146 ], [ 16.036933628084455, 46.596484279925562 ], [ 16.048870883584414, 46.606251125988649 ], [ 16.055847201687016, 46.605786037995244 ], [ 16.060963168715261, 46.602013658103829 ], [ 16.066079135743507, 46.590799872116406 ], [ 16.069644810059913, 46.587285875542705 ], [ 16.072280308389509, 46.588061021898625 ], [ 16.079308302436175, 46.59315115050515 ], [ 16.090315382848644, 46.56963837291255 ], [ 16.089230177230888, 46.56408315721194 ], [ 16.077758009724334, 46.541862290812048 ], [ 16.045615269429106, 46.545272936396884 ], [ 16.040964390394265, 46.542379054749574 ], [ 16.034298129754859, 46.539149278116668 ], [ 16.028251986739804, 46.533284003154222 ], [ 16.026856723658852, 46.53090688724302 ], [ 16.028251986739804, 46.528374741700929 ], [ 16.026701694027963, 46.524757392339779 ], [ 16.026546665296337, 46.521553453229274 ], [ 16.020345492650335, 46.511295680751061 ], [ 16.007426385219503, 46.524395657133823 ], [ 15.986652458743947, 46.546668199477779 ], [ 15.968514032396683, 46.566150213861249 ], [ 15.978280876661131, 46.585968125928218 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-187", "NAME_1": "Velika Polana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.378463169339796, 46.599791571823573 ], [ 16.397531772573245, 46.578190823048033 ], [ 16.389625277584457, 46.574780178362516 ], [ 16.383114048374637, 46.57002594743949 ], [ 16.367456088927327, 46.562946274750743 ], [ 16.350661247918254, 46.557649441468527 ], [ 16.344305047439946, 46.556745103903381 ], [ 16.334538202276178, 46.556486721484987 ], [ 16.337948846062375, 46.563824774793488 ], [ 16.334538202276178, 46.577622382267123 ], [ 16.328492059261123, 46.583823554013804 ], [ 16.335158319001209, 46.593952135282791 ], [ 16.335623406994614, 46.597156074393297 ], [ 16.340429314761025, 46.599352322251832 ], [ 16.349110955206413, 46.600566718179493 ], [ 16.363890414610921, 46.597414455912372 ], [ 16.378463169339796, 46.599791571823573 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-002", "NAME_1": "Beltinci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.160802036085101, 46.60588939078275 ], [ 16.182609491334915, 46.615268663218217 ], [ 16.192272982811915, 46.625629788483934 ], [ 16.205295443929572, 46.629350491531909 ], [ 16.240797152966195, 46.653586737737726 ], [ 16.268599074387737, 46.65151968018904 ], [ 16.276505567577885, 46.657307440785758 ], [ 16.283481885680487, 46.655963854548247 ], [ 16.297899610778416, 46.647850653984449 ], [ 16.286272413640972, 46.641236070188484 ], [ 16.286427443271862, 46.636223455947686 ], [ 16.283171828217291, 46.62767100671158 ], [ 16.298209670040251, 46.617878323126092 ], [ 16.300535109108012, 46.597336941546587 ], [ 16.274025098879179, 46.598447983787423 ], [ 16.266273635319976, 46.592918606508476 ], [ 16.261932813748331, 46.58914622751638 ], [ 16.259452345049681, 46.583358466020343 ], [ 16.261312697023357, 46.579379381453293 ], [ 16.261932813748331, 46.576278795130293 ], [ 16.265963576058198, 46.569147447396745 ], [ 16.247515090449042, 46.553851223155391 ], [ 16.216767612335445, 46.584133613275583 ], [ 16.203435092855216, 46.591936754577546 ], [ 16.160802036085101, 46.60588939078275 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-188", "NAME_1": "Veržej" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.160802036085101, 46.60588939078275 ], [ 16.203435092855216, 46.591936754577546 ], [ 16.216767612335445, 46.584133613275583 ], [ 16.204210239211136, 46.567958888991484 ], [ 16.201729771411806, 46.566511949067149 ], [ 16.194753452409884, 46.566666978698095 ], [ 16.190412631737559, 46.566356920335579 ], [ 16.176718377051429, 46.560052394902073 ], [ 16.1584249201739, 46.568527329772451 ], [ 16.155479364381165, 46.578190823048033 ], [ 16.144162224706918, 46.585037949941409 ], [ 16.138116081691805, 46.593073635240046 ], [ 16.137495964966774, 46.595011502478826 ], [ 16.136410760248395, 46.603098862822264 ], [ 16.150053338091084, 46.601238511747908 ], [ 16.160802036085101, 46.60588939078275 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-086", "NAME_1": "Odranci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.274025098879179, 46.598447983787423 ], [ 16.300535109108012, 46.597336941546587 ], [ 16.299811638696156, 46.589456284979519 ], [ 16.287047559996893, 46.578190823048033 ], [ 16.27945112516926, 46.576511339126967 ], [ 16.265963576058198, 46.569147447396745 ], [ 16.261932813748331, 46.576278795130293 ], [ 16.261312697023357, 46.579379381453293 ], [ 16.259452345049681, 46.583358466020343 ], [ 16.261932813748331, 46.58914622751638 ], [ 16.266273635319976, 46.592918606508476 ], [ 16.274025098879179, 46.598447983787423 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-032", "NAME_1": "Grosuplje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.740165235637107, 45.998148709495297 ], [ 14.733188918433825, 45.982077337998703 ], [ 14.717479282143131, 45.965747585882355 ], [ 14.714843783813535, 45.952595934454791 ], [ 14.718409458129997, 45.952130846461387 ], [ 14.728951449649685, 45.94928864255678 ], [ 14.733188918433825, 45.947014879433141 ], [ 14.733809035158856, 45.944611925100219 ], [ 14.732258742447016, 45.941175441993039 ], [ 14.73442915188383, 45.935284329508193 ], [ 14.736599562220022, 45.927067776156946 ], [ 14.75024214006271, 45.907895820135991 ], [ 14.749932081700194, 45.903219103578749 ], [ 14.747451613001545, 45.896992092511027 ], [ 14.747296584269918, 45.892444566263691 ], [ 14.75179243277455, 45.883297837824955 ], [ 14.73132856556083, 45.876424872509858 ], [ 14.723060337164839, 45.876424872509858 ], [ 14.684768101066993, 45.885778307422925 ], [ 14.678101841326907, 45.888723863215716 ], [ 14.671693963105895, 45.890119127195931 ], [ 14.664562616271724, 45.888672187271595 ], [ 14.659756706706617, 45.883297837824955 ], [ 14.640223016379082, 45.874771227010513 ], [ 14.625960320912043, 45.886243395416329 ], [ 14.621619500239717, 45.894563299756442 ], [ 14.600948926551723, 45.908877672066865 ], [ 14.59164717028068, 45.928747260077955 ], [ 14.595367873328655, 45.960347398013994 ], [ 14.594747755704361, 45.968848172205355 ], [ 14.59102705175701, 45.980139472558562 ], [ 14.594282667710957, 45.9847386738507 ], [ 14.597383254033957, 45.987890937017085 ], [ 14.600328809826692, 45.989389552885541 ], [ 14.603894484143098, 45.991740831274342 ], [ 14.606529981573374, 45.991559964120995 ], [ 14.616193474848956, 45.996675930249978 ], [ 14.630611199946884, 45.989234524153915 ], [ 14.660686882693483, 45.989802964934881 ], [ 14.676861606977582, 45.996236681577557 ], [ 14.682597689831482, 46.000448310141394 ], [ 14.686473423409723, 46.005150865120299 ], [ 14.701201205970847, 46.01093862571696 ], [ 14.709727816785289, 46.011145331291971 ], [ 14.715308871806997, 46.009233303374231 ], [ 14.724610629876679, 46.003807277983469 ], [ 14.740165235637107, 45.998148709495297 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-123", "NAME_1": "Škofljica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.600948926551723, 45.908877672066865 ], [ 14.594592726073415, 45.901642971545868 ], [ 14.593817579717495, 45.897043769354468 ], [ 14.59164717028068, 45.894950873384062 ], [ 14.585290968003733, 45.896268622099228 ], [ 14.566687452763745, 45.901978868330104 ], [ 14.564517043326873, 45.904743556969549 ], [ 14.564982131320278, 45.910427964778705 ], [ 14.563741896071633, 45.915027166970162 ], [ 14.560486281017063, 45.918618678808969 ], [ 14.556868930756536, 45.921124985929339 ], [ 14.561519809791378, 45.943655910691689 ], [ 14.559969517079537, 45.955128079097562 ], [ 14.554078402796051, 45.97238800720072 ], [ 14.533304478119135, 45.990216376084845 ], [ 14.536095005180357, 46.003729762718365 ], [ 14.535474887556006, 46.013057359209711 ], [ 14.541831088933577, 46.016312975163657 ], [ 14.562966749715713, 46.018845119806429 ], [ 14.586996291245839, 46.015408636699192 ], [ 14.616193474848956, 45.996675930249978 ], [ 14.606529981573374, 45.991559964120995 ], [ 14.603894484143098, 45.991740831274342 ], [ 14.600328809826692, 45.989389552885541 ], [ 14.597383254033957, 45.987890937017085 ], [ 14.594282667710957, 45.9847386738507 ], [ 14.59102705175701, 45.980139472558562 ], [ 14.594747755704361, 45.968848172205355 ], [ 14.595367873328655, 45.960347398013994 ], [ 14.59164717028068, 45.928747260077955 ], [ 14.600948926551723, 45.908877672066865 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-034", "NAME_1": "Hrastnik" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.128410271916493, 46.085972805200754 ], [ 15.106344435147548, 46.093517564084266 ], [ 15.099058057783111, 46.103310248569073 ], [ 15.097352736339701, 46.107366848401284 ], [ 15.088050978270019, 46.113671372935471 ], [ 15.080919631435847, 46.115945136059167 ], [ 15.077508985851011, 46.119200751113738 ], [ 15.07130781410433, 46.126848862784755 ], [ 15.068362258311538, 46.129225978695956 ], [ 15.065054966413527, 46.136512356060337 ], [ 15.065675083138558, 46.141576647144518 ], [ 15.070532667748409, 46.149741522753061 ], [ 15.084020216859528, 46.165606187775325 ], [ 15.102003615374542, 46.173926093014757 ], [ 15.11332075414947, 46.183382879816008 ], [ 15.131045770246089, 46.167285671696391 ], [ 15.134766473294064, 46.161497911099673 ], [ 15.159261101918332, 46.14875967082213 ], [ 15.171663446310959, 46.138166002459002 ], [ 15.180241733069522, 46.129122625908451 ], [ 15.188458286420769, 46.116203518477562 ], [ 15.188458286420769, 46.110880845874306 ], [ 15.185047641735252, 46.10731517245722 ], [ 15.176676059652436, 46.103336086990794 ], [ 15.173213739022799, 46.102250882272358 ], [ 15.161121453891951, 46.105144762121029 ], [ 15.15321495890322, 46.108581244328946 ], [ 15.149029167861784, 46.110028185152601 ], [ 15.144998407350613, 46.109666449946701 ], [ 15.142207879390128, 46.10638499647041 ], [ 15.141897821027612, 46.104266262078283 ], [ 15.143448113739453, 46.101527410961239 ], [ 15.146238640800618, 46.099253647837543 ], [ 15.150114372580219, 46.096928208769782 ], [ 15.163446892959712, 46.092484036209271 ], [ 15.128410271916493, 46.085972805200754 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-190", "NAME_1": "Žalec" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.226130404894263, 46.317379869085642 ], [ 15.226130404894263, 46.285366319100319 ], [ 15.222564732376497, 46.281051336849714 ], [ 15.219154086791661, 46.274023341903671 ], [ 15.218068882073226, 46.270199286068191 ], [ 15.220704380402822, 46.263403836018199 ], [ 15.220549350771932, 46.262163600769554 ], [ 15.218999058060092, 46.259993191332683 ], [ 15.219619174785066, 46.256194973019547 ], [ 15.222719761108067, 46.243844306369624 ], [ 15.223959994558072, 46.236170356276887 ], [ 15.216363559730496, 46.198239855384998 ], [ 15.203961216237133, 46.18824046532518 ], [ 15.176469354077426, 46.184545599799549 ], [ 15.11332075414947, 46.183382879816008 ], [ 15.110995314182389, 46.18731028933837 ], [ 15.118281690647507, 46.18787873011928 ], [ 15.121588983444838, 46.1886538764752 ], [ 15.125154656861923, 46.190204169187041 ], [ 15.128410271916493, 46.192426256366616 ], [ 15.1308907406152, 46.195061753796892 ], [ 15.13244103422636, 46.198394884116567 ], [ 15.13414635566977, 46.206843980565225 ], [ 15.13430138530066, 46.222140203907259 ], [ 15.135696649280931, 46.227023626938831 ], [ 15.138022088348691, 46.229839993321036 ], [ 15.140657585778968, 46.230150050784175 ], [ 15.143603143370342, 46.229969184530205 ], [ 15.143138055376937, 46.23159699250715 ], [ 15.137712029986176, 46.235989488224277 ], [ 15.123759392881652, 46.241570543245928 ], [ 15.104018996079787, 46.255006415513662 ], [ 15.110220167826469, 46.26593598156029 ], [ 15.107429639865984, 46.271387844473395 ], [ 15.110685255819874, 46.277175605070113 ], [ 15.118436720278396, 46.28751089101479 ], [ 15.121588983444838, 46.293608709973967 ], [ 15.122829216894843, 46.316966457935678 ], [ 15.131200798977659, 46.327663479086254 ], [ 15.138022088348691, 46.332831122058622 ], [ 15.146083612069049, 46.335802517172397 ], [ 15.158485954663035, 46.336086738012511 ], [ 15.181636997049736, 46.325234687230989 ], [ 15.196519810141126, 46.327663479086254 ], [ 15.226130404894263, 46.317379869085642 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-129", "NAME_1": "Trbovlje" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.106344435147548, 46.093517564084266 ], [ 15.102003615374542, 46.081347765486953 ], [ 15.097507765071271, 46.079461575091614 ], [ 15.087740919907503, 46.077601223117938 ], [ 15.088981154256828, 46.067886053898235 ], [ 15.071462842835899, 46.064707953209449 ], [ 15.026762730315738, 46.054398504787116 ], [ 15.016840854621705, 46.053468328800307 ], [ 15.002371453579713, 46.056362210447617 ], [ 15.001596307223792, 46.061581529364048 ], [ 14.996790398558005, 46.068092760372565 ], [ 14.995240105846165, 46.075430812781747 ], [ 14.993379753872546, 46.081270250221849 ], [ 14.99306969640935, 46.085275174109995 ], [ 14.997720575444191, 46.088298245167834 ], [ 15.001906365586308, 46.093310859408632 ], [ 15.004696892647473, 46.098943590374347 ], [ 14.999890984881006, 46.119097398326232 ], [ 15.011724887593459, 46.116694443993367 ], [ 15.013120150674411, 46.116565252784142 ], [ 15.014670444285571, 46.116668606470967 ], [ 15.021956820750688, 46.119304103901243 ], [ 15.024437290348658, 46.120570177571608 ], [ 15.028623081390094, 46.123541571786063 ], [ 15.031258578820314, 46.125918687697265 ], [ 15.031103550088744, 46.131344713088026 ], [ 15.027072787778934, 46.140181383164304 ], [ 15.013430209936246, 46.155916856078022 ], [ 14.999115837625766, 46.168060818052311 ], [ 14.995240105846165, 46.168680934777285 ], [ 14.991209344435674, 46.167905789320685 ], [ 14.987798699750158, 46.16648468691875 ], [ 14.985938347776539, 46.166794745281265 ], [ 14.986403435769944, 46.16875845004239 ], [ 14.992759637147515, 46.173254299446342 ], [ 15.004386834284958, 46.177207547390367 ], [ 15.008314242907943, 46.179248766517333 ], [ 15.012810093211215, 46.182194322310124 ], [ 14.999890984881006, 46.198989163319197 ], [ 15.018391148232865, 46.191211860439012 ], [ 15.045056187193268, 46.193304755510042 ], [ 15.077664014582581, 46.184364731746939 ], [ 15.110995314182389, 46.18731028933837 ], [ 15.11332075414947, 46.183382879816008 ], [ 15.102003615374542, 46.173926093014757 ], [ 15.084020216859528, 46.165606187775325 ], [ 15.070532667748409, 46.149741522753061 ], [ 15.065675083138558, 46.141576647144518 ], [ 15.065054966413527, 46.136512356060337 ], [ 15.068362258311538, 46.129225978695956 ], [ 15.07130781410433, 46.126848862784755 ], [ 15.077508985851011, 46.119200751113738 ], [ 15.080919631435847, 46.115945136059167 ], [ 15.088050978270019, 46.113671372935471 ], [ 15.097352736339701, 46.107366848401284 ], [ 15.099058057783111, 46.103310248569073 ], [ 15.106344435147548, 46.093517564084266 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-151", "NAME_1": "Braslovce" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.009967889306608, 46.257977809728118 ], [ 14.970280389228549, 46.283841864810199 ], [ 14.970590447591064, 46.302936306465369 ], [ 14.984853143058103, 46.312289741378436 ], [ 14.988728874837705, 46.316966457935678 ], [ 14.990124138817919, 46.322547512058009 ], [ 14.999890984881006, 46.333115342898736 ], [ 15.008417595695448, 46.337197781152668 ], [ 15.037304721835426, 46.324433702453405 ], [ 15.05125735804063, 46.307251287816655 ], [ 15.09502729727194, 46.257667752264922 ], [ 15.066605259125367, 46.230511785990132 ], [ 15.05110232930906, 46.226093451851284 ], [ 15.045521274287353, 46.237746487410448 ], [ 15.042420688863672, 46.242138984026894 ], [ 15.03048343336377, 46.253326930693277 ], [ 15.009967889306608, 46.257977809728118 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-184", "NAME_1": "Tabor" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.970745477221953, 46.197774767391593 ], [ 14.97245079866542, 46.211649889230955 ], [ 14.97493126826339, 46.218419500859227 ], [ 15.009967889306608, 46.257977809728118 ], [ 15.03048343336377, 46.253326930693277 ], [ 15.042420688863672, 46.242138984026894 ], [ 15.045521274287353, 46.237746487410448 ], [ 15.05110232930906, 46.226093451851284 ], [ 15.052497593289274, 46.211339829969177 ], [ 15.051567417302465, 46.207567450977081 ], [ 15.045056187193268, 46.193304755510042 ], [ 15.018391148232865, 46.191211860439012 ], [ 14.999890984881006, 46.198989163319197 ], [ 14.970745477221953, 46.197774767391593 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-054", "NAME_1": "Krsko" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.583679639903437, 45.993988755976261 ], [ 15.568590122136413, 45.997761134968357 ], [ 15.564714390356812, 45.999983222147932 ], [ 15.563939243101572, 46.004634101182774 ], [ 15.55944339369762, 46.017113959041978 ], [ 15.567349887787088, 46.017734077565592 ], [ 15.571897414034424, 46.019000149437318 ], [ 15.57794355615016, 46.019310207799833 ], [ 15.585074903883708, 46.021015530142563 ], [ 15.59933759935069, 46.022307441335329 ], [ 15.601818068049397, 46.020498766205094 ], [ 15.603678420023073, 46.018225003081398 ], [ 15.583679639903437, 45.993988755976261 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-159", "NAME_1": "Hajdina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.800462274014706, 46.431584784710026 ], [ 15.805888299405467, 46.437579250881697 ], [ 15.803717889069333, 46.444917304190199 ], [ 15.805578241042952, 46.449103095231635 ], [ 15.818600702160666, 46.454787503040791 ], [ 15.847436150557883, 46.43068044714488 ], [ 15.85833987818279, 46.414996650175226 ], [ 15.859735142163061, 46.411250107806211 ], [ 15.859735142163061, 46.408433743222645 ], [ 15.858649937444625, 46.406521715304905 ], [ 15.858959994907821, 46.400475572289793 ], [ 15.857874790189385, 46.397840073960197 ], [ 15.860355258888092, 46.395385444582587 ], [ 15.863455845211092, 46.393447577343807 ], [ 15.869346957695939, 46.391535549426067 ], [ 15.871207309669614, 46.389571845564205 ], [ 15.869501987326828, 46.384016628964218 ], [ 15.850226677619048, 46.381872057049748 ], [ 15.831468132748114, 46.394791165379957 ], [ 15.800462274014706, 46.431584784710026 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-096", "NAME_1": "Ptuj" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.816275262193585, 46.497317206124137 ], [ 15.823406609927076, 46.494940091112312 ], [ 15.845420769852637, 46.482847805082088 ], [ 15.869967075320233, 46.460006821957222 ], [ 15.884849888411622, 46.453573106213867 ], [ 15.892911411232603, 46.4522553574987 ], [ 15.900507846959556, 46.453728135844756 ], [ 15.905468784356913, 46.456544501327642 ], [ 15.908414341048967, 46.460394396484162 ], [ 15.922418654097612, 46.47096222642557 ], [ 15.944277785291547, 46.480522366014384 ], [ 15.943502638036307, 46.460006821957222 ], [ 15.953114455367825, 46.450963447205311 ], [ 15.943037550942222, 46.420526028353493 ], [ 15.942882521311276, 46.414221502919986 ], [ 15.939161818263301, 46.410500799872011 ], [ 15.935441115215269, 46.407296860761505 ], [ 15.904073521275961, 46.393602606974696 ], [ 15.89632205591812, 46.396858222029323 ], [ 15.869501987326828, 46.384016628964218 ], [ 15.871207309669614, 46.389571845564205 ], [ 15.869346957695939, 46.391535549426067 ], [ 15.863455845211092, 46.393447577343807 ], [ 15.860355258888092, 46.395385444582587 ], [ 15.857874790189385, 46.397840073960197 ], [ 15.858959994907821, 46.400475572289793 ], [ 15.858649937444625, 46.406521715304905 ], [ 15.859735142163061, 46.408433743222645 ], [ 15.859735142163061, 46.411250107806211 ], [ 15.85833987818279, 46.414996650175226 ], [ 15.847436150557883, 46.43068044714488 ], [ 15.818600702160666, 46.454787503040791 ], [ 15.804803093787712, 46.466828111328255 ], [ 15.801547478733141, 46.468016668834196 ], [ 15.796069777398316, 46.469205227239399 ], [ 15.781497022669441, 46.4677324488934 ], [ 15.794726190261429, 46.480005602076858 ], [ 15.806508416130498, 46.485431627467619 ], [ 15.816275262193585, 46.497317206124137 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-069", "NAME_1": "Majšperk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.75793257003204, 46.262034410459648 ], [ 15.741344434597977, 46.266065171870139 ], [ 15.703775668911987, 46.264178982374119 ], [ 15.684862095309427, 46.274075018747112 ], [ 15.711837191733025, 46.296864325927856 ], [ 15.714937778056026, 46.303246364827828 ], [ 15.71958865709081, 46.311333726969906 ], [ 15.721293980332916, 46.325234687230989 ], [ 15.721449009064486, 46.336732693159263 ], [ 15.716022982774405, 46.344096584889485 ], [ 15.708891635940233, 46.346628730431519 ], [ 15.690133091069299, 46.348695787080885 ], [ 15.68046959779366, 46.356602281170296 ], [ 15.677679070732495, 46.361976629717674 ], [ 15.680779657055496, 46.36768687594855 ], [ 15.769094679176078, 46.363423570541329 ], [ 15.784287550629926, 46.361123968995969 ], [ 15.802477654719951, 46.354948634771631 ], [ 15.808833856097579, 46.344871731245348 ], [ 15.811624383158744, 46.342391262546698 ], [ 15.813329704602154, 46.338928941017798 ], [ 15.801082390739737, 46.320583808196147 ], [ 15.772970411854999, 46.297742825071282 ], [ 15.761808301811641, 46.285753892727939 ], [ 15.75793257003204, 46.262034410459648 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-113", "NAME_1": "Slovenska Bistrica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.552467074695699, 46.277744045851023 ], [ 15.55789310098578, 46.293453681242397 ], [ 15.555102573025295, 46.308646551796926 ], [ 15.547816195660914, 46.333864650832936 ], [ 15.540994907189202, 46.344716702513779 ], [ 15.53231326674387, 46.349961859851931 ], [ 15.524561802285348, 46.350556139054561 ], [ 15.502961052610488, 46.359547837862408 ], [ 15.496914911394015, 46.37169179893732 ], [ 15.49412438343353, 46.380838528275433 ], [ 15.49567467614537, 46.389881903926721 ], [ 15.494744500158561, 46.39251740225626 ], [ 15.490093621123719, 46.394920355689862 ], [ 15.47598595528757, 46.397736721172691 ], [ 15.468854607554078, 46.397555854019402 ], [ 15.463583611794206, 46.396935737294427 ], [ 15.460327995840316, 46.397788398016132 ], [ 15.45748579283503, 46.399881293087162 ], [ 15.454540236142975, 46.405488186530533 ], [ 15.451284621088405, 46.40969981509437 ], [ 15.440742628669341, 46.418820706010763 ], [ 15.422759230154327, 46.424608465708104 ], [ 15.398367954317621, 46.437889309244213 ], [ 15.382089878145337, 46.440783189092883 ], [ 15.368137241040813, 46.4476561553073 ], [ 15.35247928159356, 46.452565415861216 ], [ 15.345657993121847, 46.459541733963817 ], [ 15.338474969444292, 46.465432848247303 ], [ 15.335064324758775, 46.477395942168982 ], [ 15.359145542232966, 46.480186469230148 ], [ 15.363951449999377, 46.478171088524903 ], [ 15.376818882385521, 46.46941193281441 ], [ 15.381159702158527, 46.4688434920335 ], [ 15.387360873905209, 46.47036794722294 ], [ 15.390771518590668, 46.47209910708807 ], [ 15.408186476324829, 46.477706000531498 ], [ 15.500480583911781, 46.499280910885318 ], [ 15.539444613578041, 46.497420558911642 ], [ 15.545800815854932, 46.483209540288044 ], [ 15.547816195660914, 46.476594957391342 ], [ 15.547971226191123, 46.47442454705515 ], [ 15.55711795373054, 46.46868846330193 ], [ 15.640161980990626, 46.434530341402137 ], [ 15.641712273702467, 46.431119696716621 ], [ 15.65333947083991, 46.428484199286345 ], [ 15.667602166306892, 46.423729967463998 ], [ 15.687497592739703, 46.408614610375935 ], [ 15.677369012370036, 46.402335924263468 ], [ 15.679229364343655, 46.400191352348997 ], [ 15.685172152772623, 46.396651516454313 ], [ 15.685172152772623, 46.395462958049052 ], [ 15.683725212848287, 46.392465725412876 ], [ 15.685482212034458, 46.38734975838463 ], [ 15.682381625711457, 46.380011705076129 ], [ 15.67798912909501, 46.375360826041288 ], [ 15.680779657055496, 46.36768687594855 ], [ 15.677679070732495, 46.361976629717674 ], [ 15.68046959779366, 46.356602281170296 ], [ 15.690133091069299, 46.348695787080885 ], [ 15.708891635940233, 46.346628730431519 ], [ 15.716022982774405, 46.344096584889485 ], [ 15.721449009064486, 46.336732693159263 ], [ 15.721293980332916, 46.325234687230989 ], [ 15.71958865709081, 46.311333726969906 ], [ 15.714937778056026, 46.303246364827828 ], [ 15.711837191733025, 46.296864325927856 ], [ 15.684862095309427, 46.274075018747112 ], [ 15.653029413376714, 46.273661606697772 ], [ 15.608949415782888, 46.283841864810199 ], [ 15.587865430944873, 46.28404857038521 ], [ 15.57701338106267, 46.281774807261513 ], [ 15.571380649197579, 46.279165147353638 ], [ 15.565799595075248, 46.273661606697772 ], [ 15.552467074695699, 46.277744045851023 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-168", "NAME_1": "Markovci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.969289177853284, 46.361899116251209 ], [ 15.951254103394149, 46.365852363295915 ], [ 15.942572462948817, 46.369573066343889 ], [ 15.936371291202136, 46.380735175487928 ], [ 15.935131055953434, 46.383396511339924 ], [ 15.928464797112667, 46.386884671290545 ], [ 15.904073521275961, 46.393602606974696 ], [ 15.935441115215269, 46.407296860761505 ], [ 15.939161818263301, 46.410500799872011 ], [ 15.942882521311276, 46.414221502919986 ], [ 15.943037550942222, 46.420526028353493 ], [ 15.983086786226181, 46.416650296573891 ], [ 15.987892693992592, 46.402594305782543 ], [ 15.988667840348512, 46.393757635706322 ], [ 15.996729364068869, 46.381251939425454 ], [ 15.998124627149821, 46.376084296453087 ], [ 15.998434686411656, 46.373035386973527 ], [ 15.988822869979458, 46.365852363295915 ], [ 15.985567254025511, 46.364276231263034 ], [ 15.977350701573585, 46.362209173714348 ], [ 15.969289177853284, 46.361899116251209 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-045", "NAME_1": "Kidricevo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.687497592739703, 46.408614610375935 ], [ 15.7344714701822, 46.428329168756136 ], [ 15.75219648627882, 46.432385769487666 ], [ 15.769869826431318, 46.431016343929116 ], [ 15.782272169924681, 46.434788722921212 ], [ 15.800462274014706, 46.431584784710026 ], [ 15.831468132748114, 46.394791165379957 ], [ 15.824646844276401, 46.371562607728151 ], [ 15.821236199590942, 46.366059067971605 ], [ 15.818755730892235, 46.359134425813068 ], [ 15.802477654719951, 46.354948634771631 ], [ 15.784287550629926, 46.361123968995969 ], [ 15.769094679176078, 46.363423570541329 ], [ 15.680779657055496, 46.36768687594855 ], [ 15.67798912909501, 46.375360826041288 ], [ 15.682381625711457, 46.380011705076129 ], [ 15.685482212034458, 46.38734975838463 ], [ 15.683725212848287, 46.392465725412876 ], [ 15.685172152772623, 46.395462958049052 ], [ 15.685172152772623, 46.396651516454313 ], [ 15.679229364343655, 46.400191352348997 ], [ 15.677369012370036, 46.402335924263468 ], [ 15.687497592739703, 46.408614610375935 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-024", "NAME_1": "Dornava" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.026081577302932, 46.432308255121825 ], [ 16.011922234623398, 46.434943753451421 ], [ 15.995489128820225, 46.428820095171204 ], [ 15.991303337778788, 46.425538641694914 ], [ 15.983086786226181, 46.416650296573891 ], [ 15.943037550942222, 46.420526028353493 ], [ 15.953114455367825, 46.450963447205311 ], [ 15.977195671942695, 46.44631256817047 ], [ 15.996729364068869, 46.458663234820392 ], [ 16.004015741433307, 46.466621405753244 ], [ 16.008356561206313, 46.473752753486735 ], [ 16.020965610274686, 46.490702623227435 ], [ 16.040034214407456, 46.468636786458489 ], [ 16.039104038420646, 46.449258123963205 ], [ 16.026081577302932, 46.432308255121825 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-166", "NAME_1": "Križevci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.110314162068903, 46.623872789297764 ], [ 16.120391065595186, 46.619118557475417 ], [ 16.160802036085101, 46.60588939078275 ], [ 16.150053338091084, 46.601238511747908 ], [ 16.136410760248395, 46.603098862822264 ], [ 16.137495964966774, 46.595011502478826 ], [ 16.138116081691805, 46.593073635240046 ], [ 16.144162224706918, 46.585037949941409 ], [ 16.155479364381165, 46.578190823048033 ], [ 16.1584249201739, 46.568527329772451 ], [ 16.176718377051429, 46.560052394902073 ], [ 16.173927849990264, 46.554057928730401 ], [ 16.17578820196394, 46.552042548025156 ], [ 16.178733757756675, 46.54997549137579 ], [ 16.178423700293536, 46.547546699520524 ], [ 16.177183465044834, 46.545014553079113 ], [ 16.176098260326455, 46.541913966756113 ], [ 16.1750130547087, 46.535738634330471 ], [ 16.173927849990264, 46.532948106369986 ], [ 16.170672234935694, 46.530260932096326 ], [ 16.166021355900853, 46.527754624975955 ], [ 16.154084100400894, 46.525429185908195 ], [ 16.142766960726647, 46.525842597058158 ], [ 16.122251417568862, 46.529020697747001 ], [ 16.09775678894465, 46.539020086907442 ], [ 16.077758009724334, 46.541862290812048 ], [ 16.089230177230888, 46.56408315721194 ], [ 16.090315382848644, 46.56963837291255 ], [ 16.079308302436175, 46.59315115050515 ], [ 16.095586378608459, 46.60743968439391 ], [ 16.112019484411633, 46.6080081242755 ], [ 16.105198195040657, 46.617206529557677 ], [ 16.110314162068903, 46.623872789297764 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-042", "NAME_1": "Juršinci" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.947223341983658, 46.48716278733275 ], [ 15.949548781051362, 46.501632188374742 ], [ 15.954664748079665, 46.506102200256294 ], [ 15.962157830119736, 46.510908108022761 ], [ 15.971459588189418, 46.5139311790806 ], [ 15.983241814957751, 46.519253852583233 ], [ 16.007426385219503, 46.524395657133823 ], [ 16.020345492650335, 46.511295680751061 ], [ 16.01409264495959, 46.507549140180629 ], [ 16.020965610274686, 46.490702623227435 ], [ 16.008356561206313, 46.473752753486735 ], [ 16.004015741433307, 46.466621405753244 ], [ 15.996729364068869, 46.458663234820392 ], [ 15.977195671942695, 46.44631256817047 ], [ 15.953114455367825, 46.450963447205311 ], [ 15.943502638036307, 46.460006821957222 ], [ 15.944277785291547, 46.480522366014384 ], [ 15.947223341983658, 46.48716278733275 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-109", "NAME_1": "Semic" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.17150841578075, 45.68237986873595 ], [ 15.184582553741848, 45.683258368778695 ], [ 15.190783726387849, 45.684446926284579 ], [ 15.228145785599509, 45.702740383162109 ], [ 15.236414014894876, 45.702533678486475 ], [ 15.238119338136926, 45.700905870509473 ], [ 15.250986768724374, 45.681294664017514 ], [ 15.264629346567062, 45.673026434722146 ], [ 15.274551222261096, 45.663207912714995 ], [ 15.284318068324183, 45.650133774753897 ], [ 15.283542921968262, 45.643415839069689 ], [ 15.279202101295937, 45.638558255359158 ], [ 15.2719157239315, 45.637912299313143 ], [ 15.268195020883468, 45.636129461705252 ], [ 15.264939405828898, 45.632873847550002 ], [ 15.261683790774327, 45.625639147029005 ], [ 15.258893262813785, 45.621608384719138 ], [ 15.253157179060565, 45.618197740033679 ], [ 15.248816359287559, 45.614838772191547 ], [ 15.244320509883607, 45.612926744273807 ], [ 15.241840041184957, 45.610704657993551 ], [ 15.238894483593526, 45.609981188481015 ], [ 15.23625898616325, 45.608663437967266 ], [ 15.233726840621159, 45.60835338050407 ], [ 15.225045200175828, 45.608275865238966 ], [ 15.206751743298298, 45.614580389773153 ], [ 15.188613315152338, 45.617009182527738 ], [ 15.173988885378719, 45.617422594577079 ], [ 15.155850457232816, 45.610523789940942 ], [ 15.15073449110389, 45.606363837321226 ], [ 15.147478875149943, 45.602849839848204 ], [ 15.146083612069049, 45.600679430411333 ], [ 15.141277704302581, 45.598353990444252 ], [ 15.133216179682904, 45.596338608839687 ], [ 15.105414260060058, 45.594504096187052 ], [ 15.07363325407141, 45.601945502283058 ], [ 15.056373325068876, 45.60682892531463 ], [ 15.037614780197941, 45.631323553938842 ], [ 15.040870396151831, 45.651425685946606 ], [ 15.045211215924837, 45.657110093755819 ], [ 15.063659702433313, 45.675558580264237 ], [ 15.07285810681617, 45.682224840004324 ], [ 15.084485303953613, 45.686281439836534 ], [ 15.102778760831143, 45.684421087862916 ], [ 15.126239861580359, 45.681914780742488 ], [ 15.156160515595332, 45.683258368778695 ], [ 15.17150841578075, 45.68237986873595 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-157", "NAME_1": "Dolenjske Toplice" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.058078648310982, 45.781081855443233 ], [ 15.062884556077393, 45.768369451788772 ], [ 15.07611372187074, 45.754313462796063 ], [ 15.079369337824687, 45.749145819823696 ], [ 15.080609572174012, 45.744159044004675 ], [ 15.11425092923696, 45.718372504187698 ], [ 15.121072217708672, 45.711732082869332 ], [ 15.124069452143488, 45.70682282231536 ], [ 15.121899040907977, 45.702378647956209 ], [ 15.120038689833677, 45.700466620038469 ], [ 15.118436720278396, 45.698580431441712 ], [ 15.115956251579746, 45.697004299408889 ], [ 15.112855666156065, 45.696022447477958 ], [ 15.105724318422517, 45.692766832423331 ], [ 15.102778760831143, 45.684421087862916 ], [ 15.084485303953613, 45.686281439836534 ], [ 15.07285810681617, 45.682224840004324 ], [ 15.063659702433313, 45.675558580264237 ], [ 15.045211215924837, 45.657110093755819 ], [ 15.040870396151831, 45.651425685946606 ], [ 15.037614780197941, 45.631323553938842 ], [ 15.024592319080227, 45.647498277323621 ], [ 15.020096469676332, 45.66501658784523 ], [ 14.999890984881006, 45.681785590432639 ], [ 14.981132440010072, 45.696590888258868 ], [ 14.976636589706857, 45.702895412793055 ], [ 14.971985710672016, 45.711577053238386 ], [ 14.980202264023262, 45.741446031309295 ], [ 14.983612908708778, 45.749171658245416 ], [ 14.982062615996938, 45.766302395139405 ], [ 14.996480340195546, 45.779738268306403 ], [ 15.003611687929038, 45.782373765736679 ], [ 15.014980502648086, 45.784776720069544 ], [ 15.033428989156505, 45.781211045753139 ], [ 15.058078648310982, 45.781081855443233 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-179", "NAME_1": "Sodražica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.564206984065038, 45.79007355425108 ], [ 14.586996291245839, 45.793432522093212 ], [ 14.599553664370092, 45.785551866425465 ], [ 14.60916547990297, 45.781908677743274 ], [ 14.61397138766938, 45.780771796181398 ], [ 14.623479852213393, 45.779531561832073 ], [ 14.643788689796168, 45.774544786013053 ], [ 14.663012322660563, 45.772038478892682 ], [ 14.668593376782894, 45.770281479706512 ], [ 14.675156283735475, 45.767645982276235 ], [ 14.678101841326907, 45.759532783511133 ], [ 14.677481723702556, 45.750644435692152 ], [ 14.663787469016484, 45.723152574431765 ], [ 14.657586297269802, 45.714574285874562 ], [ 14.646269159394194, 45.707494614984455 ], [ 14.634641961357431, 45.720387884892943 ], [ 14.629681023960075, 45.72457367593438 ], [ 14.619604120433792, 45.728888658184985 ], [ 14.598933546745798, 45.729534614231056 ], [ 14.576144239564996, 45.735322373928398 ], [ 14.569788039086745, 45.752143053359191 ], [ 14.569633010355119, 45.759481105768373 ], [ 14.566067336038714, 45.76676748313281 ], [ 14.553303257339451, 45.781288561018243 ], [ 14.564206984065038, 45.79007355425108 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-104", "NAME_1": "Ribnica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.586996291245839, 45.793432522093212 ], [ 14.627820671986399, 45.798341783546448 ], [ 14.654485710946801, 45.805163072018161 ], [ 14.67045372875657, 45.814180610146991 ], [ 14.687713656859785, 45.817978827560808 ], [ 14.795872430368377, 45.74309967680864 ], [ 14.822382439697833, 45.72785513030999 ], [ 14.789361200259179, 45.674111640339902 ], [ 14.788275994641424, 45.663466295133389 ], [ 14.777837355009922, 45.648686834829562 ], [ 14.770706008175694, 45.641865546357849 ], [ 14.754737990365925, 45.639540107290088 ], [ 14.731793653554234, 45.646981513386095 ], [ 14.73520429913907, 45.652149156358462 ], [ 14.7345841806154, 45.655559801043978 ], [ 14.73520429913907, 45.659487210566283 ], [ 14.733033887903616, 45.664215603067589 ], [ 14.73117353682926, 45.66731618939059 ], [ 14.720579867566812, 45.669770820566896 ], [ 14.708022495341879, 45.675558580264237 ], [ 14.676551547715746, 45.683103339147749 ], [ 14.667198113701943, 45.689407864581256 ], [ 14.646269159394194, 45.707494614984455 ], [ 14.657586297269802, 45.714574285874562 ], [ 14.663787469016484, 45.723152574431765 ], [ 14.677481723702556, 45.750644435692152 ], [ 14.678101841326907, 45.759532783511133 ], [ 14.675156283735475, 45.767645982276235 ], [ 14.668593376782894, 45.770281479706512 ], [ 14.663012322660563, 45.772038478892682 ], [ 14.643788689796168, 45.774544786013053 ], [ 14.623479852213393, 45.779531561832073 ], [ 14.61397138766938, 45.780771796181398 ], [ 14.60916547990297, 45.781908677743274 ], [ 14.599553664370092, 45.785551866425465 ], [ 14.586996291245839, 45.793432522093212 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SI-121", "NAME_1": "Škocjan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.303748406763532, 45.864461777688859 ], [ 15.301733026058287, 45.874874578898698 ], [ 15.306073845831293, 45.881230781175589 ], [ 15.303128289139238, 45.88531321942952 ], [ 15.298167351741881, 45.890455023980167 ], [ 15.288503859365619, 45.898516546801147 ], [ 15.277651807684776, 45.903839220303723 ], [ 15.268505080145303, 45.906913967305741 ], [ 15.23858442613033, 45.924354763461565 ], [ 15.238119338136926, 45.932132066341751 ], [ 15.255172559765811, 45.938539944562763 ], [ 15.257032911739486, 45.941588854042379 ], [ 15.257342970102002, 45.94391429311014 ], [ 15.259668410069082, 45.944999497828519 ], [ 15.266024611446653, 45.944766953831845 ], [ 15.279357130926826, 45.936162827752298 ], [ 15.284008009961667, 45.935749417501597 ], [ 15.286643508291263, 45.940400296536438 ], [ 15.285093214680103, 45.945464585821981 ], [ 15.285403273042618, 45.94908193608245 ], [ 15.286488477760997, 45.951820787199551 ], [ 15.289640740927439, 45.953836167904797 ], [ 15.295686883043231, 45.956058255084372 ], [ 15.317080926243761, 45.957143459802808 ], [ 15.327157829769988, 45.955851549509362 ], [ 15.334599236765371, 45.954197903110696 ], [ 15.342505730854782, 45.951407376049531 ], [ 15.346381462634383, 45.94448273389105 ], [ 15.363021274012567, 45.934767563772027 ], [ 15.354184604835609, 45.916448269372097 ], [ 15.3532544288488, 45.899524238053118 ], [ 15.350618931418524, 45.891695258329491 ], [ 15.361005894206642, 45.883737088295959 ], [ 15.355734898446769, 45.874099433442098 ], [ 15.347983433088928, 45.86986196645654 ], [ 15.343900994835053, 45.86831167284538 ], [ 15.341420526136346, 45.86849253999867 ], [ 15.340025262156132, 45.87081797996575 ], [ 15.329483269737068, 45.874719550167072 ], [ 15.303748406763532, 45.864461777688859 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/spain.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/spain.geojson new file mode 100644 index 000000000000..f406d45e8d50 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/spain.geojson @@ -0,0 +1,58 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "ES-CE", "NAME_1": "Ceuta" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.340728318999936, 35.847357489000046 ], [ -5.378400837999891, 35.881686910000084 ], [ -5.398858678999886, 35.924503853000076 ], [ -5.309315558999913, 35.900824286000045 ], [ -5.283070441999939, 35.911688544000071 ], [ -5.340728318999936, 35.847357489000046 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-ML", "NAME_1": "Melilla" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.943045613999885, 35.267874248000098 ], [ -2.966920125999877, 35.313866272 ], [ -2.947824673999946, 35.329779364000046 ], [ -2.912912563999953, 35.276922919000071 ], [ -2.943045613999885, 35.267874248000098 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-NA", "NAME_1": "Navarra" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.74972998599992, 43.294792691000069 ], [ -1.654907185999889, 43.297539164000014 ], [ -1.621885945999907, 43.246999613000085 ], [ -1.587572794999886, 43.251598817000044 ], [ -1.559047403999926, 43.284077454000069 ], [ -1.432233438999987, 43.265008850000086 ], [ -1.403501342999959, 43.243330587000074 ], [ -1.399677286999946, 43.206743673000048 ], [ -1.425773884999927, 43.135275167000131 ], [ -1.487837279999894, 43.081815898000102 ], [ -1.435023965999932, 43.035720520000083 ], [ -1.366139282999939, 43.033317567000026 ], [ -1.348259236999866, 43.093081360000056 ], [ -1.308623412999907, 43.113571066000034 ], [ -1.286040811999953, 43.109178569000036 ], [ -1.315082966999853, 43.082875265 ], [ -1.310587117999944, 43.069491069000051 ], [ -1.274878702999928, 43.046830953 ], [ -1.216897745999887, 43.039260356000042 ], [ -1.149925088999879, 43.00572235200012 ], [ -1.028485473999893, 42.98670542400005 ], [ -0.943219360999905, 42.947896423000103 ], [ -0.786433064999926, 42.953270773000085 ], [ -0.759664672999861, 42.946501160000039 ], [ -0.745031962999889, 42.91872722699999 ], [ -0.806224331187934, 42.904358222354062 ], [ -0.850381842248225, 42.840486152014307 ], [ -0.867021653626409, 42.769947821934409 ], [ -0.904357876215045, 42.742559313461527 ], [ -1.024634772376828, 42.69612803837822 ], [ -1.044452684443854, 42.649955145713363 ], [ -1.145015021326174, 42.641376858055537 ], [ -1.17232601633259, 42.61347158474581 ], [ -1.154781867389261, 42.601792710764983 ], [ -1.205347255771244, 42.558100286798776 ], [ -1.257411260920946, 42.553216865565844 ], [ -1.278159348974782, 42.532029527041004 ], [ -1.272681646740637, 42.487639471984039 ], [ -1.341953904948753, 42.414827378780501 ], [ -1.349111090204644, 42.379170641012252 ], [ -1.331024338902125, 42.357983303386732 ], [ -1.384018520938014, 42.300415758480426 ], [ -1.416419643651636, 42.220575670330902 ], [ -1.392467617386615, 42.120788478905126 ], [ -1.350661382916485, 42.072729396744251 ], [ -1.316451585072627, 42.062755846005473 ], [ -1.315960658657502, 42.037150174241106 ], [ -1.419287685977963, 41.908863430303029 ], [ -1.49070451520123, 41.922661037776663 ], [ -1.555946011099536, 41.91160228142013 ], [ -1.639403448610267, 41.957594306032377 ], [ -1.704179857414488, 41.955062161389606 ], [ -1.767716030070744, 41.99061554637035 ], [ -1.85241370283012, 42.001209214733478 ], [ -1.89060258614046, 42.025316271528709 ], [ -1.899930181732486, 42.069370428902175 ], [ -1.823423223902694, 42.145619005212893 ], [ -1.688186001182999, 42.143061021249082 ], [ -1.697074347203397, 42.215821438508556 ], [ -1.82931433818618, 42.277574775355561 ], [ -1.857271287439971, 42.277574775355561 ], [ -1.863472459186653, 42.304911606985058 ], [ -1.976747198824171, 42.393045762851671 ], [ -2.055605435042821, 42.399066067445006 ], [ -2.069558071248025, 42.41477570193706 ], [ -2.055269538258585, 42.428418281578388 ], [ -2.076508550928907, 42.442577623358602 ], [ -2.191385260121649, 42.442939358564502 ], [ -2.278382534426441, 42.489861559163614 ], [ -2.343262295118848, 42.483040269792582 ], [ -2.406074998262568, 42.497096258785291 ], [ -2.400674811293527, 42.590733954408449 ], [ -2.421319545660538, 42.598795478128807 ], [ -2.450051642169569, 42.576006170948006 ], [ -2.493278978142314, 42.595307319077506 ], [ -2.492736374883805, 42.609337470547814 ], [ -2.418012253762527, 42.657525743018596 ], [ -2.348094041306979, 42.638121243000967 ], [ -2.292696905837545, 42.663080960517902 ], [ -2.312023892388709, 42.682924710107272 ], [ -2.320369635150541, 42.728994249085304 ], [ -2.279416063200756, 42.750930895544343 ], [ -2.274429287381736, 42.790980129929039 ], [ -2.242312383709532, 42.839194240821541 ], [ -2.252957728916044, 42.900069078525121 ], [ -2.231692877824059, 42.93515737641178 ], [ -2.200816209400557, 42.951642158159075 ], [ -2.122758957959547, 42.949626777453773 ], [ -2.04940426329614, 42.988229071914134 ], [ -2.014600186249595, 43.066958116024239 ], [ -1.937912360367136, 43.105586248906263 ], [ -1.912487554856796, 43.135145169513919 ], [ -1.90853430781209, 43.218344225505575 ], [ -1.833680996380906, 43.229506333750294 ], [ -1.791306322029129, 43.2774103871796 ], [ -1.74972998599992, 43.294792691000069 ] ] ], [ [ [ -1.163928594928734, 42.440872301015872 ], [ -1.1655822413274, 42.41193349893183 ], [ -1.190386928314126, 42.402838446437158 ], [ -1.194521043411441, 42.424335842425137 ], [ -1.163928594928734, 42.440872301015872 ] ] ], [ [ [ -1.10605099076065, 42.483040269792582 ], [ -1.067190313881895, 42.445833238413172 ], [ -1.067190313881895, 42.4367381859185 ], [ -1.13416297144397, 42.446660062511853 ], [ -1.10605099076065, 42.483040269792582 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-SS", "NAME_1": "Gipuzkoa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.794074744885912, 43.386015332062847 ], [ -1.796914021999953, 43.341128235000056 ], [ -1.768233601999981, 43.330922140000084 ], [ -1.74972998599992, 43.294792691000069 ], [ -1.791306322029129, 43.2774103871796 ], [ -1.833680996380906, 43.229506333750294 ], [ -1.90853430781209, 43.218344225505575 ], [ -1.912487554856796, 43.135145169513919 ], [ -1.926724411902114, 43.11437124303842 ], [ -2.014600186249595, 43.066958116024239 ], [ -2.042660488290892, 42.994456082082479 ], [ -2.122758957959547, 42.949626777453773 ], [ -2.21414872888073, 42.949626777453773 ], [ -2.252957728916044, 42.900069078525121 ], [ -2.281194392507246, 42.900990176755215 ], [ -2.354703917152051, 42.950099065419522 ], [ -2.535187321637579, 42.973379095768621 ], [ -2.559016668684308, 42.962832220930238 ], [ -2.602819160675722, 42.982354926038965 ], [ -2.588921455061097, 43.01011737891389 ], [ -2.533660222441313, 43.034452096387099 ], [ -2.546547185404279, 43.088043406677855 ], [ -2.501722965542456, 43.103226513292952 ], [ -2.507051334451546, 43.161530958187143 ], [ -2.488945865559231, 43.183657424550461 ], [ -2.490527896245453, 43.22235127359238 ], [ -2.459359682003708, 43.227306107290985 ], [ -2.418193909621266, 43.267538042546619 ], [ -2.440166566733694, 43.288126422696223 ], [ -2.406783742297463, 43.329305821579709 ], [ -2.284657355999911, 43.303493557000081 ], [ -2.196278449999909, 43.31476471600007 ], [ -2.127797003999945, 43.28742096600007 ], [ -1.960357225999928, 43.343085028000075 ], [ -1.918690558999913, 43.320990302000041 ], [ -1.904652472999942, 43.32843659100007 ], [ -1.925689256999931, 43.342637437000064 ], [ -1.811268683999913, 43.395086981000077 ], [ -1.794074744885912, 43.386015332062847 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-HU", "NAME_1": "Huesca" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.745031962999889, 42.91872722699999 ], [ -0.740286010999881, 42.884799499000067 ], [ -0.648301961999891, 42.849788717000067 ], [ -0.56903031399986, 42.772635804000103 ], [ -0.535647338999894, 42.784211324000054 ], [ -0.533890339999914, 42.80800832200002 ], [ -0.423922892999911, 42.790670878000086 ], [ -0.322792113999952, 42.842502340000081 ], [ -0.235148885999934, 42.78622670500009 ], [ -0.161406615999908, 42.79534759600007 ], [ -0.157789265999924, 42.760698547000047 ], [ -0.119031941999879, 42.716851095000052 ], [ -0.038933471999911, 42.685147604000022 ], [ 0.169167521000134, 42.726462911000041 ], [ 0.238362264000045, 42.710365703000079 ], [ 0.275388428000099, 42.668688660000058 ], [ 0.354169148000096, 42.717497050000119 ], [ 0.409282064000081, 42.68225372300013 ], [ 0.64360884600012, 42.684475810000052 ], [ 0.663425813950141, 42.696214350811601 ], [ 0.716318394178529, 42.625718899507604 ], [ 0.768925001687478, 42.605590929078119 ], [ 0.730271030383733, 42.500713609045818 ], [ 0.701435581087196, 42.484332180086028 ], [ 0.746394076925071, 42.3905394557313 ], [ 0.751251662434242, 42.328682766096733 ], [ 0.705466343397006, 42.178356024710752 ], [ 0.703140903429926, 42.120323390911722 ], [ 0.651619499740093, 42.001881008301893 ], [ 0.566095004680733, 41.938887438004826 ], [ 0.593276807578604, 41.91372101491288 ], [ 0.59358686684044, 41.867548123147344 ], [ 0.500931024047532, 41.812435208518025 ], [ 0.464602491811547, 41.767425034937389 ], [ 0.405949741287543, 41.75295563389534 ], [ 0.328538445892548, 41.677404690474077 ], [ 0.351482781804918, 41.607228094700758 ], [ 0.423984815746621, 41.592913723289655 ], [ 0.441193067905772, 41.546146552321488 ], [ 0.397423129573781, 41.494289251847476 ], [ 0.351172723442403, 41.477597765424491 ], [ 0.338305291056315, 41.405896715361109 ], [ 0.240651406637085, 41.428481576063859 ], [ 0.219030312498887, 41.403443733541451 ], [ 0.182687537699678, 41.394522834761005 ], [ 0.163791052115357, 41.406530892087005 ], [ 0.129118199645177, 41.387656379638202 ], [ 0.10613479988109, 41.35092908261106 ], [ 0.019112091849536, 41.360311407345534 ], [ -0.014725800355393, 41.383404670089419 ], [ -0.069910128349761, 41.372890753605361 ], [ -0.103264621465144, 41.4754151719726 ], [ -0.18550827728518, 41.591035293144216 ], [ -0.258303689863396, 41.578181288535632 ], [ -0.344194807044744, 41.631179337656306 ], [ -0.380669417959268, 41.684682758102781 ], [ -0.488774890448838, 41.735549458940341 ], [ -0.524897938389131, 41.839831689480889 ], [ -0.60711962197297, 41.888149562352396 ], [ -0.652064691832095, 41.94581680070479 ], [ -0.778209715605897, 41.957308500586805 ], [ -0.853685793164857, 41.996705474677867 ], [ -0.866067385701285, 42.027159577752286 ], [ -0.848115724261277, 42.07271988191701 ], [ -0.819199707400571, 42.082102206651484 ], [ -0.781714354733708, 42.056580965039473 ], [ -0.747865476410595, 42.086540682906161 ], [ -0.757390623378569, 42.258454752484795 ], [ -0.731440915066173, 42.30857438290144 ], [ -0.74547045679617, 42.385313888325243 ], [ -0.780198241655512, 42.39185075360939 ], [ -0.772683592973465, 42.344950116954294 ], [ -0.808323242723475, 42.279196940986026 ], [ -0.861541017803745, 42.282569743099145 ], [ -0.892939945022476, 42.249841470407489 ], [ -0.922855717517336, 42.262310953687518 ], [ -0.834690430718808, 42.380677657447904 ], [ -0.842270997908258, 42.407484299161069 ], [ -0.901289554869095, 42.435982835439461 ], [ -0.888831057707137, 42.471831225030996 ], [ -0.904827152351231, 42.613104423929997 ], [ -0.924690434316119, 42.651446710896948 ], [ -0.879822269082467, 42.679121272129009 ], [ -0.911309086145422, 42.71526629320482 ], [ -0.896425543703913, 42.755013332898955 ], [ -0.856944749200807, 42.786897690775788 ], [ -0.846221889628509, 42.849477850822154 ], [ -0.806224331187934, 42.904358222354062 ], [ -0.745031962999889, 42.91872722699999 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-L", "NAME_1": "Lérida" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.706757446000097, 42.846584779000082 ], [ 0.812900838000132, 42.831624451000025 ], [ 0.921111287000116, 42.784366354000085 ], [ 0.950256795000143, 42.796122742000065 ], [ 1.089059692000149, 42.771318054000048 ], [ 1.151484823000118, 42.70672251399999 ], [ 1.342584269000042, 42.708660381000115 ], [ 1.338243449000061, 42.694449361000053 ], [ 1.361084432000069, 42.686723735000058 ], [ 1.42929732200011, 42.59538564100005 ], [ 1.406456339000101, 42.529239808000071 ], [ 1.428987264000114, 42.53146189400006 ], [ 1.449967895000043, 42.504073384000023 ], [ 1.407593221000099, 42.486761780000037 ], [ 1.436428670000055, 42.440950623000063 ], [ 1.516630493000122, 42.429504293000051 ], [ 1.544432414000084, 42.450355734000127 ], [ 1.639517049000119, 42.466427104 ], [ 1.653986450000076, 42.496528626000085 ], [ 1.707006470000067, 42.502781474000059 ], [ 1.728749608407668, 42.446826341762232 ], [ 1.807170021379363, 42.41854753144338 ], [ 1.842545998898743, 42.30631119940233 ], [ 1.715587986196567, 42.288117839766471 ], [ 1.686320407260951, 42.262124186082303 ], [ 1.690627048299632, 42.212356117740626 ], [ 1.732067479030945, 42.189372717976539 ], [ 1.737165135862313, 42.168289953518524 ], [ 1.708183201393638, 42.138868566231338 ], [ 1.715697850075685, 42.104810947167437 ], [ 1.690143650109349, 42.084694979989308 ], [ 1.688781345382779, 42.041881257513978 ], [ 1.657843844118077, 42.011679840552176 ], [ 1.669137789377487, 41.997617339568535 ], [ 1.707282322621097, 42.00322036772576 ], [ 1.715807713055483, 41.98789443887722 ], [ 1.646242281256264, 41.961593168489912 ], [ 1.643188081065091, 41.929161527282645 ], [ 1.615612396694758, 41.895686184170017 ], [ 1.630224213476652, 41.829054100766086 ], [ 1.560241301095175, 41.767838278813485 ], [ 1.482238368705737, 41.776836081320084 ], [ 1.444643152159756, 41.802016746975255 ], [ 1.412189537816914, 41.789250633110214 ], [ 1.406806236518605, 41.704150531721666 ], [ 1.438512780440476, 41.643505998702835 ], [ 1.374198813824194, 41.619336075699323 ], [ 1.369980063529113, 41.602933487490418 ], [ 1.40709188098549, 41.590464004210389 ], [ 1.392677817926938, 41.575028212382051 ], [ 1.201010330262534, 41.57040296852216 ], [ 1.178004958262193, 41.54451917781779 ], [ 1.167502027896262, 41.486566294998511 ], [ 1.13036823730431, 41.473217906081459 ], [ 1.065109446543715, 41.480831431625234 ], [ 1.045509835910195, 41.426679818518778 ], [ 0.989457587497668, 41.398313118355702 ], [ 0.957685125967771, 41.354510626364288 ], [ 0.879044986137217, 41.342008183830615 ], [ 0.833517640326818, 41.358487676664936 ], [ 0.804975158676598, 41.331340458994987 ], [ 0.620756402086272, 41.298667117793229 ], [ 0.561869681240807, 41.323913701056426 ], [ 0.520934620935975, 41.28892224486566 ], [ 0.454445360664863, 41.334603399027628 ], [ 0.438053758574085, 41.324759648339068 ], [ 0.433175828601577, 41.276112185628847 ], [ 0.385802779874382, 41.278858767318241 ], [ 0.36037112782526, 41.232832342738391 ], [ 0.352361280948344, 41.279211940978257 ], [ 0.374013705667949, 41.338924058698353 ], [ 0.327298210643903, 41.370110785484314 ], [ 0.324197625220222, 41.390161241548014 ], [ 0.348537225112864, 41.433233547889927 ], [ 0.351172723442403, 41.477597765424491 ], [ 0.397423129573781, 41.494289251847476 ], [ 0.441193067905772, 41.546146552321488 ], [ 0.423984815746621, 41.592913723289655 ], [ 0.351482781804918, 41.607228094700758 ], [ 0.328538445892548, 41.677404690474077 ], [ 0.405949741287543, 41.75295563389534 ], [ 0.464602491811547, 41.767425034937389 ], [ 0.500931024047532, 41.812435208518025 ], [ 0.59358686684044, 41.867548123147344 ], [ 0.593276807578604, 41.91372101491288 ], [ 0.566095004680733, 41.938887438004826 ], [ 0.651619499740093, 42.001881008301893 ], [ 0.703140903429926, 42.120323390911722 ], [ 0.705466343397006, 42.178356024710752 ], [ 0.743448521132336, 42.27065013319708 ], [ 0.746394076925071, 42.3905394557313 ], [ 0.701435581087196, 42.484332180086028 ], [ 0.730271030383733, 42.500713609045818 ], [ 0.768925001687478, 42.605590929078119 ], [ 0.716318394178529, 42.625718899507604 ], [ 0.663425813950141, 42.696214350811601 ], [ 0.659628540000085, 42.729899394000071 ], [ 0.633480265000088, 42.744782206000124 ], [ 0.650740194000065, 42.76338572300007 ], [ 0.639681437000149, 42.774677023000052 ], [ 0.656321248000097, 42.838419902000069 ], [ 0.706757446000097, 42.846584779000082 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-GI", "NAME_1": "Gerona" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.712174112944922, 42.493712260112716 ], [ 1.927458129000058, 42.436894023000079 ], [ 1.963734985000116, 42.367234192000055 ], [ 2.009210245000077, 42.347080383000062 ], [ 2.063263794000079, 42.35790659700011 ], [ 2.136954386000099, 42.416223450000061 ], [ 2.277410930000144, 42.428625794000126 ], [ 2.422518351000065, 42.383693136000019 ], [ 2.445566040000131, 42.351963806000086 ], [ 2.514812459000069, 42.325660503000037 ], [ 2.548092081000107, 42.352248027000073 ], [ 2.662193644000098, 42.339018861000071 ], [ 2.640282837000143, 42.372841085000076 ], [ 2.690408976000072, 42.406172384000016 ], [ 2.788594198000055, 42.412011821000092 ], [ 2.850812622000149, 42.44836619100009 ], [ 2.933701619000061, 42.470225322000019 ], [ 3.029613077000135, 42.46565195699999 ], [ 3.086147094000097, 42.427178854000047 ], [ 3.180969656804698, 42.43148414767083 ], [ 3.170176629000082, 42.396592515000066 ], [ 3.187347852000073, 42.349514065000051 ], [ 3.31771894600007, 42.322984117000033 ], [ 3.26303144600007, 42.239854234000063 ], [ 3.210134311000047, 42.239732164000088 ], [ 3.170176629000082, 42.259670315000051 ], [ 3.11882571700005, 42.218329169000071 ], [ 3.122487826000054, 42.14048899900007 ], [ 3.21449569300006, 42.068333846000087 ], [ 3.195896147000042, 42.033117872000048 ], [ 3.207855665000068, 41.990016994000086 ], [ 3.23568769600007, 41.965521552000041 ], [ 3.23218834700009, 41.946030992000033 ], [ 3.150165377000064, 41.845350970000084 ], [ 3.116829332000066, 41.847569212000053 ], [ 3.078630960000055, 41.826618274000054 ], [ 3.069057555000086, 41.79907611200008 ], [ 2.932990851000056, 41.712464376000071 ], [ 2.840179884000065, 41.694647528000075 ], [ 2.778496577555018, 41.64558226081266 ], [ 2.760783338979877, 41.673542620295677 ], [ 2.767770644099926, 41.721344135723257 ], [ 2.747929334371292, 41.735725240427485 ], [ 2.683988902066176, 41.749677877532008 ], [ 2.54742883866993, 41.719157856849563 ], [ 2.436598756727221, 41.802873680376024 ], [ 2.362704710753803, 41.79866591619907 ], [ 2.31794640760063, 41.846192773277835 ], [ 2.331745236353584, 41.8867213400178 ], [ 2.382853637185576, 41.871472315794733 ], [ 2.442751100682756, 41.887644191026595 ], [ 2.462262819673356, 41.910605617655108 ], [ 2.439850709742473, 41.949420316694216 ], [ 2.48937707898898, 41.990871734442976 ], [ 2.502648563280559, 42.025940095259159 ], [ 2.478434695804538, 42.063820955372762 ], [ 2.419547974059753, 42.073236239360938 ], [ 2.365890746160972, 42.121345372390977 ], [ 2.30779504020893, 42.112962803290714 ], [ 2.28015343823057, 42.143449864719457 ], [ 2.129333119228079, 42.119587559318404 ], [ 2.065546496173852, 42.13715469853048 ], [ 2.050868760884612, 42.19681046293249 ], [ 2.023886338583623, 42.227341469733005 ], [ 2.04671592909682, 42.272725993309905 ], [ 2.040651475884886, 42.293523113301035 ], [ 1.973085555354089, 42.294962321753701 ], [ 1.913913189142363, 42.318374188218172 ], [ 1.842545998898743, 42.30631119940233 ], [ 1.807170021379363, 42.41854753144338 ], [ 1.728749608407668, 42.446826341762232 ], [ 1.712174112944922, 42.493712260112716 ] ] ], [ [ [ 1.967972453000073, 42.485702413000027 ], [ 1.978307740000076, 42.474979554000114 ], [ 1.99949507600013, 42.443896180000067 ], [ 1.947508585000122, 42.451234233000079 ], [ 1.967972453000073, 42.485702413000027 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-OR", "NAME_1": "Orense" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.19130407699987, 42.062084859000024 ], [ -8.222361612999919, 42.153629660000021 ], [ -8.18335665128842, 42.173116382015394 ], [ -8.164867712375042, 42.24590836547867 ], [ -8.235630654431191, 42.231812905241384 ], [ -8.268435831748263, 42.256685953294095 ], [ -8.26197587019027, 42.315232098182776 ], [ -8.31810502322827, 42.360836347719271 ], [ -8.34228593234991, 42.432544114818995 ], [ -8.340572064649052, 42.492309741301483 ], [ -8.302823039751502, 42.490255298543161 ], [ -8.17377762503736, 42.571927664530051 ], [ -8.146674352739183, 42.548592702691053 ], [ -8.018672639031081, 42.54206682352509 ], [ -7.992613067738887, 42.570246756082895 ], [ -7.930803982817565, 42.578453543696071 ], [ -7.894417262646584, 42.546362478445587 ], [ -7.896845241514711, 42.50569108947218 ], [ -7.861502222349714, 42.503977222670642 ], [ -7.75272658316527, 42.451132981901594 ], [ -7.715406025867424, 42.451143968918984 ], [ -7.617342056890436, 42.402090011744633 ], [ -7.520871105617061, 42.395003829762913 ], [ -7.406371590076844, 42.444321458268689 ], [ -7.361986823033476, 42.419536300959521 ], [ -7.269317141472925, 42.414691330240657 ], [ -7.202630127478415, 42.325526287807918 ], [ -7.150829587715293, 42.427226731128712 ], [ -7.103214839892928, 42.457823656436574 ], [ -7.071035731913526, 42.503452460162862 ], [ -6.983134120942907, 42.494822496560971 ], [ -6.919985521015008, 42.512831733497705 ], [ -6.821050991210257, 42.485055650497827 ], [ -6.81304114433334, 42.438908596254691 ], [ -6.839111904091112, 42.410124823801539 ], [ -6.735707363304186, 42.341136786433538 ], [ -6.740616623858102, 42.298193671300851 ], [ -6.805470547028108, 42.217940172001306 ], [ -6.866758795881708, 42.217009996014497 ], [ -6.898410609761811, 42.200163479061302 ], [ -7.024656133673659, 42.075726630279746 ], [ -7.019772712440727, 42.056244614996956 ], [ -6.966003384048918, 42.032964382300406 ], [ -6.98345618299993, 41.962996166 ], [ -7.051270303999928, 41.942014669000017 ], [ -7.159739135999899, 41.985732931000072 ], [ -7.1999434, 41.963718771000103 ], [ -7.19792801899996, 41.90150034600002 ], [ -7.218650268999909, 41.879046937000098 ], [ -7.322468220999895, 41.845405579000058 ], [ -7.391921345999975, 41.842046611000043 ], [ -7.442719278999959, 41.805950623000044 ], [ -7.469384318999914, 41.852536926000099 ], [ -7.515841430999927, 41.864990947000067 ], [ -7.546692260999919, 41.832047221000025 ], [ -7.606068480999852, 41.825535991000052 ], [ -7.622811644999899, 41.841736552000057 ], [ -7.607360391999919, 41.873181662000022 ], [ -7.661155557999933, 41.87491282200007 ], [ -7.722030395999866, 41.899252421000099 ], [ -7.896593383999885, 41.857937113000062 ], [ -7.906101846999888, 41.913851014000059 ], [ -7.92579056799994, 41.908166606000108 ], [ -7.94475581899988, 41.866954652000018 ], [ -7.993641723999872, 41.863673198000029 ], [ -8.048573770999894, 41.816389262000072 ], [ -8.179573526999889, 41.810704854000036 ], [ -8.177041381999885, 41.849849752000054 ], [ -8.220397908999871, 41.86819488600004 ], [ -8.23021643099986, 41.904678447000052 ], [ -8.182131509999891, 41.965424093000067 ], [ -8.108027506999861, 42.010899353000028 ], [ -8.095082559999923, 42.040923361000083 ], [ -8.137612263999898, 42.072911072000082 ], [ -8.19130407699987, 42.062084859000024 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-PO", "NAME_1": "Pontevedra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.222361612999919, 42.153629660000021 ], [ -8.346746785999898, 42.101694845000097 ], [ -8.626884724999911, 42.051026103000126 ], [ -8.670809691999864, 41.999814758000113 ], [ -8.750803188999953, 41.968980210000041 ], [ -8.777088995999918, 41.937160549000055 ], [ -8.864654100999928, 41.888902085000041 ], [ -8.881255662999934, 41.893296617000033 ], [ -8.895497199999909, 42.119086005000042 ], [ -8.826527472999942, 42.130519924000055 ], [ -8.823719855999911, 42.147609768000052 ], [ -8.846994594999956, 42.160834052000041 ], [ -8.771962042999917, 42.222235419000071 ], [ -8.625152147999927, 42.301947333000044 ], [ -8.621652798999946, 42.340806382000039 ], [ -8.649891730999911, 42.335598049000055 ], [ -8.674794074999909, 42.299017645000049 ], [ -8.784982876999948, 42.26007721600007 ], [ -8.86750240799995, 42.256415106000077 ], [ -8.853260870999918, 42.304836330000057 ], [ -8.827219204999949, 42.296698309000078 ], [ -8.83071855399993, 42.341620184000078 ], [ -8.771962042999917, 42.342718817000048 ], [ -8.655262824999909, 42.441351630000042 ], [ -8.694488084999932, 42.439642645000049 ], [ -8.757639126999948, 42.407212632000039 ], [ -8.843576626999948, 42.403713283000059 ], [ -8.86750240799995, 42.41469961100006 ], [ -8.888010219999956, 42.455633856000077 ], [ -8.942616339999915, 42.469305731000077 ], [ -8.881255662999934, 42.496568101000037 ], [ -8.860829230999911, 42.48501211100006 ], [ -8.874338344999956, 42.469305731000077 ], [ -8.826527472999942, 42.461859442000048 ], [ -8.812855597999942, 42.502752997000073 ], [ -8.822987433999913, 42.569525458000044 ], [ -8.775502081999946, 42.604722398000035 ], [ -8.716337459805914, 42.706455257404173 ], [ -8.645431695516322, 42.725516537458191 ], [ -8.608748344760329, 42.717804135052745 ], [ -8.578052542590797, 42.745874204630809 ], [ -8.502334766836043, 42.75606951739428 ], [ -8.445370652633528, 42.744292173045324 ], [ -8.392032027556013, 42.789489929017009 ], [ -8.342220013842564, 42.783985778620774 ], [ -8.32932206476147, 42.845717958017303 ], [ -8.289661418439721, 42.820031921935652 ], [ -8.252066201893683, 42.836302674928504 ], [ -8.209944618349482, 42.830699646771279 ], [ -8.174447790832915, 42.853012880739811 ], [ -8.049214631949724, 42.834533875737748 ], [ -7.96445510741728, 42.842356142022311 ], [ -7.978517607501601, 42.781151305288461 ], [ -7.932254178287678, 42.739952573652317 ], [ -7.868148951512921, 42.713211849547179 ], [ -7.893000026430059, 42.635307794019468 ], [ -7.930803982817565, 42.578453543696071 ], [ -7.992613067738887, 42.570246756082895 ], [ -8.018672639031081, 42.54206682352509 ], [ -8.146674352739183, 42.548592702691053 ], [ -8.17377762503736, 42.571927664530051 ], [ -8.302823039751502, 42.490255298543161 ], [ -8.340572064649052, 42.492309741301483 ], [ -8.34228593234991, 42.432544114818995 ], [ -8.31810502322827, 42.360836347719271 ], [ -8.26197587019027, 42.315232098182776 ], [ -8.268435831748263, 42.256685953294095 ], [ -8.235630654431191, 42.231812905241384 ], [ -8.164867712375042, 42.24590836547867 ], [ -8.18335665128842, 42.173116382015394 ], [ -8.222361612999919, 42.153629660000021 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-ZA", "NAME_1": "Zamora" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.727982543999872, 41.930852559000087 ], [ -6.757903197999894, 41.937570496000021 ], [ -6.794386759999924, 41.979712626000051 ], [ -6.824927530999929, 41.983769226000064 ], [ -6.831232055999919, 41.953951925000055 ], [ -6.854951537999881, 41.942944845000071 ], [ -6.945126911999893, 41.943358257000071 ], [ -6.98345618299993, 41.962996166 ], [ -6.967501999917374, 42.035935777414181 ], [ -7.019772712440727, 42.056244614996956 ], [ -7.024656133673659, 42.075726630279746 ], [ -6.898410609761811, 42.200163479061302 ], [ -6.866758795881708, 42.217009996014497 ], [ -6.805470547028108, 42.217940172001306 ], [ -6.783249680628273, 42.252873440257019 ], [ -6.690557353239285, 42.213608559487398 ], [ -6.55780954567399, 42.207137611811333 ], [ -6.490584201100035, 42.184165199064637 ], [ -6.311529018949045, 42.20811539520929 ], [ -6.279536830560289, 42.177837073622015 ], [ -6.203698203908971, 42.148338781709413 ], [ -6.045022661166911, 42.157688147190242 ], [ -5.955879590970369, 42.125827794017482 ], [ -5.893037792060454, 42.150459142975023 ], [ -5.869417185754514, 42.122037510422729 ], [ -5.755137396173893, 42.136792150337442 ], [ -5.743129338847893, 42.113468174616514 ], [ -5.676914736925596, 42.120312657503121 ], [ -5.679650332496863, 42.140208897822333 ], [ -5.625125184179922, 42.111194004100014 ], [ -5.624740662851309, 42.083585360475979 ], [ -5.553362485590242, 42.063007967343822 ], [ -5.541695005120403, 42.098010410551979 ], [ -5.52075506289583, 42.096977695664123 ], [ -5.471690119603352, 42.006384429997411 ], [ -5.484741877935335, 41.984411772884982 ], [ -5.438390557977868, 41.967251128137036 ], [ -5.421581475304833, 42.030752106724321 ], [ -5.376295828589605, 42.041386873205624 ], [ -5.280549975501003, 41.978929594725003 ], [ -5.303928882711773, 41.95531997543651 ], [ -5.307905933911741, 41.871153712074147 ], [ -5.279594165238564, 41.813332665370183 ], [ -5.391215262974015, 41.760993795926936 ], [ -5.326923268593987, 41.670268695044228 ], [ -5.313992359359929, 41.614238418867899 ], [ -5.27885808093572, 41.59724256858965 ], [ -5.289800464120106, 41.563009168937981 ], [ -5.228727463501627, 41.528358288704055 ], [ -5.264389086387212, 41.503397350807063 ], [ -5.319683278260698, 41.492301158371731 ], [ -5.338623708317471, 41.466010874102551 ], [ -5.339337819484797, 41.433194710667351 ], [ -5.321232350592538, 41.411375862805812 ], [ -5.327890064974554, 41.343546270044328 ], [ -5.302368824261862, 41.305533572916033 ], [ -5.294414721861926, 41.252821169161621 ], [ -5.308268482104779, 41.218181275045765 ], [ -5.340260671392855, 41.194110228903924 ], [ -5.325484059241944, 41.177982299043833 ], [ -5.288778735350377, 41.182091185459797 ], [ -5.296337329404253, 41.124511837851003 ], [ -5.329142506721325, 41.117821164215343 ], [ -5.36263982207015, 41.143924680879309 ], [ -5.401685234086301, 41.147780882082031 ], [ -5.407518974321192, 41.185529906979582 ], [ -5.496749935261334, 41.177290160112761 ], [ -5.54914373619448, 41.206678589045623 ], [ -5.611205505429723, 41.208689087331493 ], [ -5.673267275564342, 41.245405397341187 ], [ -5.811266548312574, 41.216577271224082 ], [ -5.90808906166086, 41.232990845551058 ], [ -5.920767284782357, 41.205195434321809 ], [ -5.914658886198652, 41.16266735721274 ], [ -5.946760938466525, 41.141145139036894 ], [ -5.969722365095095, 41.163084837794997 ], [ -6.007691116851561, 41.151637083284754 ], [ -6.027642289560049, 41.165018431455451 ], [ -6.025620805156052, 41.196186645697139 ], [ -6.056360551798036, 41.208359497492779 ], [ -6.109303669428812, 41.212644165395886 ], [ -6.128650593949772, 41.197175415213223 ], [ -6.321889127081533, 41.28047375815737 ], [ -6.482128385697165, 41.302991610357729 ], [ -6.399578816999849, 41.377475485000033 ], [ -6.379166625999915, 41.377475485000033 ], [ -6.379166625999915, 41.397319234000108 ], [ -6.321133991999943, 41.411013489000126 ], [ -6.282945108999854, 41.465635478000067 ], [ -6.279534463999937, 41.497003072 ], [ -6.205947224999932, 41.570280253000092 ], [ -6.272248087999856, 41.628235372000049 ], [ -6.365937459999913, 41.663607890000051 ], [ -6.46081538999988, 41.676552836000084 ], [ -6.503035033999964, 41.653091737000111 ], [ -6.541533976999915, 41.658905335000085 ], [ -6.577397419999954, 41.73972727500005 ], [ -6.524222371999912, 41.867419740000045 ], [ -6.575795450999919, 41.882896831000053 ], [ -6.571661335999892, 41.942608948000057 ], [ -6.609488484999872, 41.962323507000022 ], [ -6.622821003999917, 41.94095530200012 ], [ -6.727982543999872, 41.930852559000087 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-SA", "NAME_1": "Salamanca" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.845288044999933, 41.051913961000068 ], [ -6.804360310999925, 41.064419658000062 ], [ -6.764776163999954, 41.10886139000003 ], [ -6.755216023999878, 41.158832500000116 ], [ -6.646643839999882, 41.267611390000056 ], [ -6.563496459999897, 41.270711975000026 ], [ -6.482128385697165, 41.302991610357729 ], [ -6.321889127081533, 41.28047375815737 ], [ -6.128650593949772, 41.197175415213223 ], [ -6.109303669428812, 41.212644165395886 ], [ -6.056360551798036, 41.208359497492779 ], [ -6.025620805156052, 41.196186645697139 ], [ -6.027642289560049, 41.165018431455451 ], [ -6.007691116851561, 41.151637083284754 ], [ -5.969722365095095, 41.163084837794997 ], [ -5.946760938466525, 41.141145139036894 ], [ -5.914658886198652, 41.16266735721274 ], [ -5.917735058626079, 41.221861694761401 ], [ -5.889181590857731, 41.235276002185742 ], [ -5.811266548312574, 41.216577271224082 ], [ -5.660457216327472, 41.244076051868262 ], [ -5.630486512342657, 41.216247681385369 ], [ -5.54914373619448, 41.206678589045623 ], [ -5.496749935261334, 41.177290160112761 ], [ -5.407518974321192, 41.185529906979582 ], [ -5.401685234086301, 41.147780882082031 ], [ -5.36263982207015, 41.143924680879309 ], [ -5.320078785707381, 41.116151241886257 ], [ -5.296337329404253, 41.124511837851003 ], [ -5.288778735350377, 41.182091185459797 ], [ -5.253084154110411, 41.196757934630966 ], [ -5.125104412638564, 41.131993527279462 ], [ -5.151526533023116, 41.08331310621486 ], [ -5.147153974376408, 41.050244256667099 ], [ -5.111074871807887, 41.034885369464234 ], [ -5.095759929077474, 41.001662712464167 ], [ -5.127499432252989, 40.9542457183652 ], [ -5.111371502392956, 40.914771839648665 ], [ -5.162490889343076, 40.868101915970612 ], [ -5.161513105945119, 40.818542588369723 ], [ -5.179640547972895, 40.792944442132296 ], [ -5.36304631653428, 40.674390970766638 ], [ -5.385546317208764, 40.619723000216254 ], [ -5.413484550671512, 40.599497169159008 ], [ -5.517316342275365, 40.582929786480463 ], [ -5.511834164115385, 40.54827890624648 ], [ -5.436544854161696, 40.547828466410579 ], [ -5.467185724841329, 40.468496187648896 ], [ -5.515382748614968, 40.4557081015476 ], [ -5.520359555449147, 40.419233490633076 ], [ -5.549385435289594, 40.426495454101882 ], [ -5.59050726319964, 40.473582858362192 ], [ -5.687714297876539, 40.42458383267774 ], [ -5.675134951616712, 40.358830656709415 ], [ -5.727732713394005, 40.293974921405493 ], [ -5.783646612800965, 40.286145942581186 ], [ -5.781579556151598, 40.323352973061219 ], [ -5.804162156858069, 40.342964179553235 ], [ -5.875062222143868, 40.32167348914021 ], [ -5.912450119777191, 40.280745754712768 ], [ -5.951543340652677, 40.289143175217362 ], [ -6.093162604070926, 40.353687039125532 ], [ -6.06913306344012, 40.400169990152904 ], [ -6.224110683860999, 40.480320135765623 ], [ -6.515539923828442, 40.352420966354487 ], [ -6.557966274124283, 40.321570136352705 ], [ -6.553186203880216, 40.293871567718668 ], [ -6.57101457366366, 40.276534125249668 ], [ -6.68857845713012, 40.249739895080097 ], [ -6.717646450423331, 40.258938300362274 ], [ -6.814694789832686, 40.244417223376161 ], [ -6.874509092120888, 40.279188166700521 ], [ -6.794438435999922, 40.35640085900009 ], [ -6.85128251099988, 40.40952423100002 ], [ -6.857121948999861, 40.442132060000077 ], [ -6.812525186999949, 40.51463409500009 ], [ -6.850455688999944, 40.582226868000035 ], [ -6.814282185999929, 40.647184143000104 ], [ -6.839138549999888, 40.75751332600008 ], [ -6.836658080999911, 40.840247294000065 ], [ -6.81619421399995, 40.856835429000071 ], [ -6.855261596999867, 40.88722117200011 ], [ -6.942491414999949, 41.015998840000108 ], [ -6.927866983999877, 41.04793487600007 ], [ -6.90683467599996, 41.056099752000094 ], [ -6.845288044999933, 41.051913961000068 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-CC", "NAME_1": "Cáceres" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.915826374999909, 40.25444325799999 ], [ -6.878050903999849, 40.265243632000121 ], [ -6.874509092120888, 40.279188166700521 ], [ -6.814694789832686, 40.244417223376161 ], [ -6.717646450423331, 40.258938300362274 ], [ -6.68857845713012, 40.249739895080097 ], [ -6.57101457366366, 40.276534125249668 ], [ -6.553186203880216, 40.293871567718668 ], [ -6.557966274124283, 40.321570136352705 ], [ -6.515539923828442, 40.352420966354487 ], [ -6.224110683860999, 40.480320135765623 ], [ -6.06913306344012, 40.400169990152904 ], [ -6.093162604070926, 40.353687039125532 ], [ -5.925550096160009, 40.281495063546345 ], [ -5.896456265344398, 40.289995835939067 ], [ -5.875062222143868, 40.32167348914021 ], [ -5.804162156858069, 40.342964179553235 ], [ -5.781579556151598, 40.323352973061219 ], [ -5.783646612800965, 40.286145942581186 ], [ -5.727732713394005, 40.293974921405493 ], [ -5.686908331754125, 40.281495063546345 ], [ -5.603812629449294, 40.219405829015784 ], [ -5.539811367000993, 40.197443345933664 ], [ -5.486300421926956, 40.201344916134929 ], [ -5.423591070671364, 40.243125312183395 ], [ -5.354603034202682, 40.255165921370178 ], [ -5.3615018379395, 40.164835516745654 ], [ -5.327963832764681, 40.115897936340673 ], [ -5.365041672934865, 40.093263657891498 ], [ -5.3861514961946, 39.881028550926885 ], [ -5.321504278599605, 39.887488105091961 ], [ -5.289309862360255, 39.861701565274984 ], [ -5.314347093343713, 39.793436998318782 ], [ -5.308120083175311, 39.758297024488058 ], [ -5.260267706589389, 39.752250882372323 ], [ -5.208746303798875, 39.792739366328647 ], [ -5.168128627734006, 39.792894395959593 ], [ -5.165363939094505, 39.747186591288141 ], [ -5.140585089630179, 39.712356675819933 ], [ -5.157379929739989, 39.649673162986062 ], [ -5.196447313093017, 39.587661445519245 ], [ -4.944369676419456, 39.391911119402607 ], [ -5.056813394822314, 39.363315481524239 ], [ -5.098704265389529, 39.398383842340422 ], [ -5.122786297649498, 39.339431203886932 ], [ -5.178761641436608, 39.309976856446724 ], [ -5.339623463951682, 39.323588917594464 ], [ -5.35514714652362, 39.263054247555431 ], [ -5.347215017259259, 39.228754929396473 ], [ -5.39641179666711, 39.171637007741708 ], [ -5.444487970443504, 39.158640180899624 ], [ -5.517470150626934, 39.209056442800545 ], [ -5.566282408706229, 39.209089401154927 ], [ -5.612831482387037, 39.188533981158287 ], [ -5.577894957686169, 39.137579388677807 ], [ -5.614424500090593, 39.101577190734758 ], [ -5.689944522122005, 39.082944377381068 ], [ -5.767848578549092, 39.136821332138766 ], [ -5.810398628793678, 39.144720503048745 ], [ -5.858101267359586, 39.103126263066542 ], [ -5.924656445238782, 39.083295939456036 ], [ -5.941839063122302, 39.108685344952676 ], [ -6.003087845227867, 39.063333780629478 ], [ -6.021435013215296, 39.127559857401479 ], [ -6.14222969584381, 39.031473428356037 ], [ -6.167970663415417, 39.058917276610998 ], [ -6.205620811451297, 39.06105961101224 ], [ -6.230790490089078, 39.089832805639446 ], [ -6.3121991847446, 39.115914349167838 ], [ -6.319307339861837, 39.184523970704674 ], [ -6.371470427817997, 39.162902876566477 ], [ -6.528563938974628, 39.174130904217861 ], [ -6.554975073241053, 39.153773237045243 ], [ -6.585308326318227, 39.181821334387053 ], [ -6.6597297158537, 39.198938033763227 ], [ -6.681043193288758, 39.177327925743157 ], [ -6.769549056044127, 39.190610397052183 ], [ -6.800772201775715, 39.23942265513142 ], [ -6.751685285347662, 39.302736866113435 ], [ -6.815109360208794, 39.387814994366465 ], [ -6.888783679323353, 39.383475394973459 ], [ -7.04922802125617, 39.436737115425501 ], [ -7.067069818817117, 39.414434868474359 ], [ -7.02157543226042, 39.382069144875118 ], [ -7.045042230214733, 39.314920704027259 ], [ -7.072859614579556, 39.315997364286886 ], [ -7.072969477559354, 39.380585990151303 ], [ -7.11826611039271, 39.380014701217476 ], [ -7.16365063307029, 39.358415579315533 ], [ -7.155004392638602, 39.318908741345297 ], [ -7.203992432204984, 39.265844774616653 ], [ -7.250844686233279, 39.270627339580017 ], [ -7.326654011999949, 39.341320699000093 ], [ -7.320917927999886, 39.467411194000036 ], [ -7.384169880999877, 39.483999329000042 ], [ -7.417552856999947, 39.524203593000081 ], [ -7.468092406999887, 39.550248515000064 ], [ -7.515841430999927, 39.593760071000062 ], [ -7.557285929999892, 39.679801331000064 ], [ -7.341433470999959, 39.67184316 ], [ -7.235755167999855, 39.686519267000065 ], [ -7.182890177999894, 39.67509877500008 ], [ -7.021142944999923, 39.694012350000023 ], [ -6.993030964999889, 39.77421417300009 ], [ -7.000265664999858, 39.802532858000106 ], [ -6.927660278999923, 39.861909078000039 ], [ -6.925231485999888, 39.917926331000061 ], [ -6.879704548999911, 40.009186910000054 ], [ -6.955720581999856, 40.102927959000013 ], [ -7.015768594999884, 40.119051005000088 ], [ -7.043105428999894, 40.181372783000128 ], [ -7.015768594999884, 40.225504456000024 ], [ -6.915826374999909, 40.25444325799999 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-BA", "NAME_1": "Badajoz" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.127286336999873, 39.097485453000033 ], [ -7.167490600999884, 39.113479310000073 ], [ -7.155811726999929, 39.151513163000018 ], [ -7.168059040999935, 39.170633443 ], [ -7.258079386999896, 39.211302795000066 ], [ -7.264332233999909, 39.252333883000105 ], [ -7.250844686233279, 39.270627339580017 ], [ -7.203992432204984, 39.265844774616653 ], [ -7.155004392638602, 39.318908741345297 ], [ -7.16365063307029, 39.358415579315533 ], [ -7.11826611039271, 39.380014701217476 ], [ -7.072969477559354, 39.380585990151303 ], [ -7.072859614579556, 39.315997364286886 ], [ -7.045042230214733, 39.314920704027259 ], [ -7.02157543226042, 39.382069144875118 ], [ -7.067069818817117, 39.414434868474359 ], [ -7.04922802125617, 39.436737115425501 ], [ -6.888783679323353, 39.383475394973459 ], [ -6.799464828538987, 39.377048392669167 ], [ -6.751685285347662, 39.302736866113435 ], [ -6.800772201775715, 39.23942265513142 ], [ -6.769549056044127, 39.190610397052183 ], [ -6.681043193288758, 39.177327925743157 ], [ -6.6597297158537, 39.198938033763227 ], [ -6.585308326318227, 39.181821334387053 ], [ -6.554975073241053, 39.153773237045243 ], [ -6.528563938974628, 39.174130904217861 ], [ -6.371470427817997, 39.162902876566477 ], [ -6.319307339861837, 39.184523970704674 ], [ -6.3121991847446, 39.115914349167838 ], [ -6.230790490089078, 39.089832805639446 ], [ -6.205620811451297, 39.06105961101224 ], [ -6.167970663415417, 39.058917276610998 ], [ -6.14222969584381, 39.031473428356037 ], [ -6.021435013215296, 39.127559857401479 ], [ -6.003087845227867, 39.063333780629478 ], [ -5.941839063122302, 39.108685344952676 ], [ -5.924656445238782, 39.083295939456036 ], [ -5.858101267359586, 39.103126263066542 ], [ -5.810398628793678, 39.144720503048745 ], [ -5.767848578549092, 39.136821332138766 ], [ -5.689944522122005, 39.082944377381068 ], [ -5.614424500090593, 39.101577190734758 ], [ -5.577894957686169, 39.137579388677807 ], [ -5.612831482387037, 39.188533981158287 ], [ -5.541651059748631, 39.214198044104421 ], [ -5.444487970443504, 39.158640180899624 ], [ -5.410386406007831, 39.163847700710789 ], [ -5.347215017259259, 39.228754929396473 ], [ -5.35514714652362, 39.263054247555431 ], [ -5.339623463951682, 39.323588917594464 ], [ -5.178761641436608, 39.309976856446724 ], [ -5.122786297649498, 39.339431203886932 ], [ -5.098704265389529, 39.398383842340422 ], [ -5.056813394822314, 39.363315481524239 ], [ -4.944369676419456, 39.391911119402607 ], [ -4.880135870873744, 39.366873888419207 ], [ -4.767016159967795, 39.404649360579526 ], [ -4.692731289317578, 39.449814561992412 ], [ -4.677874314647909, 39.417594306432079 ], [ -4.710947230929946, 39.344136257182527 ], [ -4.756189947607993, 39.306154080346516 ], [ -4.715675625229949, 39.232075914371933 ], [ -4.658392300264438, 39.173939927785398 ], [ -4.727328659889736, 39.196496690070148 ], [ -4.806781175311016, 39.198796292514885 ], [ -4.847037116169986, 39.165490831336797 ], [ -4.867397629696882, 39.106140448822657 ], [ -4.834712287042407, 39.047591051086101 ], [ -4.877293666969138, 39.032604885207263 ], [ -4.928582525762977, 39.051518459709143 ], [ -4.954136521583223, 39.045575670380856 ], [ -4.920624354830125, 38.96413361357537 ], [ -4.840060798067384, 38.93963898405184 ], [ -4.845719366555556, 38.892044989884369 ], [ -4.927342292312971, 38.870315049899602 ], [ -4.990775112181666, 38.739315294165465 ], [ -5.170454066801767, 38.713812975188659 ], [ -5.180815192067485, 38.666038112968522 ], [ -5.255771857185493, 38.634386298189099 ], [ -5.306828171982545, 38.585500392828862 ], [ -5.362406174605269, 38.583872585751237 ], [ -5.419637823626658, 38.515840561892389 ], [ -5.569370285810066, 38.425329291013952 ], [ -5.56712236200741, 38.336290798481571 ], [ -5.522939011626079, 38.270739244220749 ], [ -5.517823044597833, 38.237614651095271 ], [ -5.538209398345089, 38.162373766036467 ], [ -5.581049159790894, 38.13508860945177 ], [ -5.623449672564334, 38.136897284582005 ], [ -5.710886196440811, 38.088683172790184 ], [ -5.72824947823085, 38.095401109373654 ], [ -5.734657354653223, 38.123409736370206 ], [ -5.691714240419856, 38.153847154322705 ], [ -5.713780077188801, 38.179995429345581 ], [ -5.740393439305763, 38.190201524081033 ], [ -5.837080044408538, 38.174259344692985 ], [ -5.915395677368622, 38.114082139878803 ], [ -5.91092566638639, 38.066513984133053 ], [ -5.952111782332906, 38.007990423918898 ], [ -6.114091559278052, 37.978586533841451 ], [ -6.1832604637994, 37.938976549028496 ], [ -6.356273158679357, 38.000006415463702 ], [ -6.372422043642416, 38.031167303827999 ], [ -6.423969284854593, 38.05679881401403 ], [ -6.484792445714788, 38.016387844423434 ], [ -6.571712204754476, 38.023855088941161 ], [ -6.617342495060086, 38.086771144872444 ], [ -6.801904872711702, 38.108681952010443 ], [ -6.813144497120845, 38.118810533279486 ], [ -6.797899949722932, 38.172941595977875 ], [ -6.933808966010986, 38.209295965736203 ], [ -7.103515176999906, 38.173588359000107 ], [ -7.126872924999873, 38.190899964000025 ], [ -7.167180541999898, 38.272083639000058 ], [ -7.317145547999871, 38.424580791 ], [ -7.359210163999876, 38.446362407000024 ], [ -7.335180623999861, 38.469435934000089 ], [ -7.34561926299989, 38.494137268000102 ], [ -7.317713988999913, 38.556252340000086 ], [ -7.27043005399986, 38.61769561800007 ], [ -7.292960977999883, 38.656272074000057 ], [ -7.27043005399986, 38.737507427000125 ], [ -7.15100581899992, 38.819285380000039 ], [ -7.056076212999926, 38.855148824000096 ], [ -7.066049764999917, 38.904603170000129 ], [ -6.973290567999925, 39.013950501000025 ], [ -6.985692911999905, 39.066763815000073 ], [ -7.015768594999884, 39.096813660000052 ], [ -7.06491288299992, 39.114771220000122 ], [ -7.127286336999873, 39.097485453000033 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-CA", "NAME_1": "Cádiz" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.338773483242616, 36.141119671999917 ], [ -5.358386758461411, 36.141109447000375 ], [ -5.382517055999926, 36.172308661000045 ], [ -5.425445115999935, 36.179754950000074 ], [ -5.442331508999928, 36.148789781000062 ], [ -5.428700324999909, 36.08079661700009 ], [ -5.438628709999932, 36.06281159100007 ], [ -5.611765102999925, 36.006455796000068 ], [ -5.629709438999953, 36.036769924000055 ], [ -5.689361131999931, 36.06712474200009 ], [ -5.71312415299991, 36.059963283000059 ], [ -5.796050584999932, 36.085516669000071 ], [ -5.917185024999924, 36.184068101000037 ], [ -5.983550584999932, 36.176988023000035 ], [ -6.036773240999935, 36.189520575000074 ], [ -6.104725714999915, 36.28070709800005 ], [ -6.159453904999907, 36.304307359000063 ], [ -6.184193488999938, 36.370713609000063 ], [ -6.218373175999943, 36.402451890000066 ], [ -6.27961178299995, 36.511297919000071 ], [ -6.31000729099992, 36.534125067000048 ], [ -6.28937740799995, 36.537298895000049 ], [ -6.257517055999926, 36.513780015000066 ], [ -6.231475389999957, 36.472683010000083 ], [ -6.179351365999935, 36.51353587400007 ], [ -6.224354620999918, 36.51085032800006 ], [ -6.234893357999908, 36.575751044000071 ], [ -6.283192511999914, 36.612372137000079 ], [ -6.394683397999927, 36.636908270000049 ], [ -6.437896287999934, 36.733303127000056 ], [ -6.433338995999918, 36.751206773000035 ], [ -6.345611131999931, 36.794989325000074 ], [ -6.33820553299995, 36.883734442000048 ], [ -6.304351365999935, 36.907212632000039 ], [ -6.157687459908345, 36.88599727165672 ], [ -6.105183795995401, 36.857498735378329 ], [ -5.891038279892712, 36.842073930567437 ], [ -5.866242136465416, 36.896994587230381 ], [ -5.843445505205921, 36.911079060450277 ], [ -5.717047795319502, 36.919626424020237 ], [ -5.669070498404778, 36.96518672818496 ], [ -5.586870787956514, 36.922351033473376 ], [ -5.544639341432458, 36.927020222705096 ], [ -5.506736507284018, 36.954782674680644 ], [ -5.494519710116549, 37.033752404349968 ], [ -5.47149236588001, 37.045496789445281 ], [ -5.426184746928527, 37.025051232428439 ], [ -5.447761895694953, 36.977019004023816 ], [ -5.436698663412585, 36.948762166840481 ], [ -5.314970142757886, 37.016372032743107 ], [ -5.23645085292452, 36.949311483538111 ], [ -5.196460616764057, 36.958276327690328 ], [ -5.142243085150255, 37.003704795739736 ], [ -5.084663737541462, 36.925383259629712 ], [ -5.105493816786236, 36.866276811925331 ], [ -5.161765791158359, 36.830043901005183 ], [ -5.194076583267702, 36.829055131489099 ], [ -5.262708177940056, 36.873879351350979 ], [ -5.304906666109787, 36.865068316449594 ], [ -5.341392263142438, 36.825572464597542 ], [ -5.29740300354581, 36.77069575420569 ], [ -5.339282887994898, 36.666347605157853 ], [ -5.383744559663683, 36.63459711586421 ], [ -5.444938409380086, 36.618172554519731 ], [ -5.483467463952309, 36.573139593917119 ], [ -5.592704528191405, 36.538642522034763 ], [ -5.607843689434731, 36.519669132724289 ], [ -5.550154477946819, 36.493203067867285 ], [ -5.477095393137915, 36.521833439361728 ], [ -5.426206719164782, 36.518054142784422 ], [ -5.355355886365089, 36.433690125698718 ], [ -5.320001881081964, 36.324914486514331 ], [ -5.277792406794163, 36.336911557722203 ], [ -5.253651495999918, 36.297105210000041 ], [ -5.290598110999952, 36.277411200000074 ], [ -5.285308397999927, 36.260809637000079 ], [ -5.334055141999954, 36.18781159100007 ], [ -5.338773483242616, 36.141119671999917 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-H", "NAME_1": "Huelva" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.049358275999907, 38.02021270800013 ], [ -7.023985148999913, 38.022563985000076 ], [ -6.950575759999879, 38.198385888000061 ], [ -6.933808966010986, 38.209295965736203 ], [ -6.797899949722932, 38.172941595977875 ], [ -6.813144497120845, 38.118810533279486 ], [ -6.801904872711702, 38.108681952010443 ], [ -6.617342495060086, 38.086771144872444 ], [ -6.571712204754476, 38.023855088941161 ], [ -6.484792445714788, 38.016387844423434 ], [ -6.442676153781463, 38.055351874089695 ], [ -6.413065558129006, 38.053698229489669 ], [ -6.372422043642416, 38.031167303827999 ], [ -6.356273158679357, 38.000006415463702 ], [ -6.200287847905884, 37.951973171724489 ], [ -6.167036825389175, 37.908989254350558 ], [ -6.127068562364286, 37.907220455159859 ], [ -6.146712118369578, 37.848476556547837 ], [ -6.124409871418436, 37.804663078438296 ], [ -6.202874229761903, 37.799103996552162 ], [ -6.22199044130582, 37.729384755502053 ], [ -6.247544641272214, 37.733988027125747 ], [ -6.266221399997619, 37.764255361695575 ], [ -6.448935029627933, 37.734405507708004 ], [ -6.527728978709433, 37.658039537494631 ], [ -6.531376439171311, 37.631716294871069 ], [ -6.394135222962177, 37.604228500345016 ], [ -6.401342254941142, 37.575411360345981 ], [ -6.315187466428426, 37.438225076526066 ], [ -6.317659389769005, 37.420284402103448 ], [ -6.359594206607369, 37.406760231699309 ], [ -6.359737028840811, 37.359782690418797 ], [ -6.380369353462925, 37.339446996381753 ], [ -6.339236539434751, 37.289602023414602 ], [ -6.355287565568688, 37.235571260305392 ], [ -6.344114469407259, 37.176728483932379 ], [ -6.352881559836135, 37.114139370235705 ], [ -6.381621795209696, 37.061503870207446 ], [ -6.354320768288858, 36.985170860147036 ], [ -6.3783368829408, 36.934040487078789 ], [ -6.339066520790106, 36.904695773281396 ], [ -6.352447068999936, 36.808579820000034 ], [ -6.388010219999956, 36.808172919000071 ], [ -6.499582485999952, 36.959662177000041 ], [ -6.744862433999913, 37.101385809000078 ], [ -6.89289303299995, 37.166571356000077 ], [ -6.917632615999935, 37.215073960000041 ], [ -6.852691209999932, 37.29523346600007 ], [ -6.931141730999911, 37.233872789000088 ], [ -6.962554490999935, 37.23383209800005 ], [ -6.928456183999913, 37.172349351000037 ], [ -7.101040416999922, 37.224250751000056 ], [ -7.127349412999934, 37.214748440000051 ], [ -7.085560675999943, 37.20648834800005 ], [ -7.327870245999918, 37.201564846000053 ], [ -7.381418423999946, 37.179917710000041 ], [ -7.414418097999942, 37.19281647300005 ], [ -7.468867553999871, 37.475568950000039 ], [ -7.529690714999902, 37.56716542600013 ], [ -7.514342813999946, 37.601401062000051 ], [ -7.471606404999932, 37.636902771000067 ], [ -7.444011189999912, 37.730152893000124 ], [ -7.334405476999848, 37.811930847000028 ], [ -7.306861937999969, 37.850765686000088 ], [ -7.268621378999882, 37.949235128000041 ], [ -7.272703816999893, 37.9770112100001 ], [ -7.159739135999899, 37.99680328400008 ], [ -7.12325557399987, 38.040004781 ], [ -7.049358275999907, 38.02021270800013 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-B", "NAME_1": "Barcelona" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.778496577555018, 41.64558226081266 ], [ 2.449473504000082, 41.535223700000074 ], [ 2.296722852000073, 41.465318101000037 ], [ 2.163259311000047, 41.326646226000037 ], [ 2.06031334700009, 41.274603583000044 ], [ 1.624359570737568, 41.192165432388776 ], [ 1.624225678772063, 41.223169067998072 ], [ 1.573930265969011, 41.234353150277627 ], [ 1.613942475264992, 41.281792117512168 ], [ 1.586081145528453, 41.30102917905333 ], [ 1.559626066789519, 41.3662550114596 ], [ 1.471867274455121, 41.426635873147006 ], [ 1.482765712267792, 41.476601695212025 ], [ 1.404718834506582, 41.506682263075959 ], [ 1.397423911784074, 41.521250134486081 ], [ 1.43110799563749, 41.573962538240551 ], [ 1.392677817926938, 41.575028212382051 ], [ 1.40709188098549, 41.590464004210389 ], [ 1.369980063529113, 41.602933487490418 ], [ 1.389447837147941, 41.628520645811136 ], [ 1.438512780440476, 41.643505998702835 ], [ 1.406806236518605, 41.704150531721666 ], [ 1.412189537816914, 41.789250633110214 ], [ 1.444643152159756, 41.802016746975255 ], [ 1.482238368705737, 41.776836081320084 ], [ 1.560241301095175, 41.767838278813485 ], [ 1.630224213476652, 41.829054100766086 ], [ 1.615612396694758, 41.895686184170017 ], [ 1.643188081065091, 41.929161527282645 ], [ 1.646242281256264, 41.961593168489912 ], [ 1.712358006316947, 41.980039214238332 ], [ 1.707282322621097, 42.00322036772576 ], [ 1.669137789377487, 41.997617339568535 ], [ 1.657843844118077, 42.011679840552176 ], [ 1.688781345382779, 42.041881257513978 ], [ 1.690143650109349, 42.084694979989308 ], [ 1.715697850075685, 42.104810947167437 ], [ 1.708183201393638, 42.138868566231338 ], [ 1.737165135862313, 42.168289953518524 ], [ 1.732067479030945, 42.189372717976539 ], [ 1.690627048299632, 42.212356117740626 ], [ 1.686320407260951, 42.262124186082303 ], [ 1.715587986196567, 42.288117839766471 ], [ 1.913913189142363, 42.318374188218172 ], [ 1.973085555354089, 42.294962321753701 ], [ 2.040651475884886, 42.293523113301035 ], [ 2.04671592909682, 42.272725993309905 ], [ 2.023886338583623, 42.227341469733005 ], [ 2.050868760884612, 42.19681046293249 ], [ 2.065546496173852, 42.13715469853048 ], [ 2.129333119228079, 42.119587559318404 ], [ 2.28015343823057, 42.143449864719457 ], [ 2.30779504020893, 42.112962803290714 ], [ 2.365890746160972, 42.121345372390977 ], [ 2.419547974059753, 42.073236239360938 ], [ 2.478434695804538, 42.063820955372762 ], [ 2.502648563280559, 42.025940095259159 ], [ 2.48937707898898, 41.990871734442976 ], [ 2.439850709742473, 41.949420316694216 ], [ 2.462262819673356, 41.910605617655108 ], [ 2.442751100682756, 41.887644191026595 ], [ 2.382853637185576, 41.871472315794733 ], [ 2.331745236353584, 41.8867213400178 ], [ 2.315309688891034, 41.864847559767043 ], [ 2.329679806577815, 41.825483544030305 ], [ 2.362704710753803, 41.79866591619907 ], [ 2.436598756727221, 41.802873680376024 ], [ 2.54742883866993, 41.719157856849563 ], [ 2.683988902066176, 41.749677877532008 ], [ 2.747929334371292, 41.735725240427485 ], [ 2.767770644099926, 41.721344135723257 ], [ 2.760783338979877, 41.673542620295677 ], [ 2.778496577555018, 41.64558226081266 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-T", "NAME_1": "Tarragona" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.624359570737568, 41.192165432388776 ], [ 1.539235873000052, 41.187445380000042 ], [ 1.217784050000091, 41.104681708000044 ], [ 1.172943556000064, 41.058661200000074 ], [ 1.097666863000086, 41.070868231000077 ], [ 0.990407748000052, 41.03969961100006 ], [ 0.694834832000083, 40.785996812000064 ], [ 0.750173373000052, 40.765570380000042 ], [ 0.76726321700005, 40.77102285400008 ], [ 0.750173373000052, 40.785996812000064 ], [ 0.780528191000087, 40.779486395000049 ], [ 0.841807488000086, 40.732123114000046 ], [ 0.873708530000044, 40.727932033000059 ], [ 0.87240644600007, 40.707098700000074 ], [ 0.848317905000044, 40.675360419000071 ], [ 0.756358269000089, 40.642238674000055 ], [ 0.67709394600007, 40.56517161700009 ], [ 0.615896030000044, 40.55345286700009 ], [ 0.592458530000044, 40.582098700000074 ], [ 0.663177931000064, 40.574733791000085 ], [ 0.732676629000082, 40.633734442000048 ], [ 0.682220899000072, 40.63422272300005 ], [ 0.580170118000069, 40.603664455000057 ], [ 0.523759592033164, 40.526163029399385 ], [ 0.456075880997105, 40.549204820346176 ], [ 0.418403760724971, 40.590830186763696 ], [ 0.29314008964343, 40.632145493919381 ], [ 0.276241895846795, 40.654314684375152 ], [ 0.287714064252668, 40.683821926340784 ], [ 0.21929446766552, 40.730537421364886 ], [ 0.173044060634879, 40.730899156570786 ], [ 0.167463005613229, 40.743198147276644 ], [ 0.227355991385878, 40.771723538210722 ], [ 0.271280959348758, 40.821384589027559 ], [ 0.249576856886449, 40.888563951265326 ], [ 0.289729444957914, 40.982460029306878 ], [ 0.274226515141549, 41.018891913431048 ], [ 0.227821079379282, 41.043179837379569 ], [ 0.208907504877459, 41.119609279944314 ], [ 0.29314008964343, 41.158263251248002 ], [ 0.313345575338019, 41.206890774189844 ], [ 0.36037112782526, 41.232832342738391 ], [ 0.385802779874382, 41.278858767318241 ], [ 0.433175828601577, 41.276112185628847 ], [ 0.445238817417476, 41.331779911813442 ], [ 0.464135302102477, 41.333383916534501 ], [ 0.500016650947657, 41.291767703416781 ], [ 0.520934620935975, 41.28892224486566 ], [ 0.561869681240807, 41.323913701056426 ], [ 0.620756402086272, 41.298667117793229 ], [ 0.804975158676598, 41.331340458994987 ], [ 0.833517640326818, 41.358487676664936 ], [ 0.879044986137217, 41.342008183830615 ], [ 0.957685125967771, 41.354510626364288 ], [ 0.989457587497668, 41.398313118355702 ], [ 1.045509835910195, 41.426679818518778 ], [ 1.065109446543715, 41.480831431625234 ], [ 1.13036823730431, 41.473217906081459 ], [ 1.167502027896262, 41.486566294998511 ], [ 1.178004958262193, 41.54451917781779 ], [ 1.201010330262534, 41.57040296852216 ], [ 1.43110799563749, 41.573962538240551 ], [ 1.397423911784074, 41.521250134486081 ], [ 1.404718834506582, 41.506682263075959 ], [ 1.482765712267792, 41.476601695212025 ], [ 1.471867274455121, 41.426635873147006 ], [ 1.559626066789519, 41.3662550114596 ], [ 1.566064055211996, 41.334109013819898 ], [ 1.61550253371496, 41.272398806659567 ], [ 1.573930265969011, 41.234353150277627 ], [ 1.624225678772063, 41.223169067998072 ], [ 1.624359570737568, 41.192165432388776 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-CS", "NAME_1": "Castellón" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.523759592033164, 40.526163029399385 ], [ 0.350596550000091, 40.284898179000038 ], [ 0.205251498000052, 40.171535549000055 ], [ 0.144541863000086, 40.07884349200009 ], [ 0.06617272200009, 40.031927802000041 ], [ -0.002919074999909, 39.93195221600007 ], [ -0.091297980999911, 39.847927151000079 ], [ -0.194488085256921, 39.715440171426735 ], [ -0.345392316402297, 39.797473213218211 ], [ -0.45594774089551, 39.722919987567366 ], [ -0.478195056356753, 39.728083562006759 ], [ -0.533104726002307, 39.796187812217738 ], [ -0.601395744717877, 39.750803289540158 ], [ -0.634475579484388, 39.748463201415575 ], [ -0.656030756014616, 39.835859444657615 ], [ -0.691033199222773, 39.852327951373809 ], [ -0.71265429336097, 39.816984932208811 ], [ -0.737010983969753, 39.82075324356731 ], [ -0.832501797420036, 39.919424139812179 ], [ -0.831209886227271, 39.974821275281613 ], [ -0.775089281245357, 40.00138296235383 ], [ -0.753901942720518, 40.039778551239124 ], [ -0.683854539055744, 40.044429430273965 ], [ -0.614349737750217, 40.071740424381062 ], [ -0.617657029648228, 40.107087103786796 ], [ -0.57003719705898, 40.153518377970727 ], [ -0.544224818820339, 40.240102241125498 ], [ -0.495493943990311, 40.230464586271637 ], [ -0.4058611722553, 40.251135159060311 ], [ -0.390926683219845, 40.295576890960717 ], [ -0.286488612759285, 40.371747952006331 ], [ -0.339896205945138, 40.44269969323625 ], [ -0.272174242247502, 40.475720934473543 ], [ -0.297934942743439, 40.513703111309496 ], [ -0.294369269326353, 40.605764674899831 ], [ -0.374596930204177, 40.618192856814858 ], [ -0.377309942899558, 40.660154120016614 ], [ -0.345813157751024, 40.673900051546127 ], [ -0.30449784969602, 40.663254706339615 ], [ -0.234088710825347, 40.694803168331532 ], [ -0.223417528096434, 40.745316880769394 ], [ -0.194814621897308, 40.775986842718567 ], [ -0.152155727604736, 40.774901638000188 ], [ -0.074486049791403, 40.730847479727402 ], [ 0.018169793001562, 40.72614492384912 ], [ 0.03620486835996, 40.696689357827552 ], [ 0.093152297440554, 40.719504503430073 ], [ 0.21929446766552, 40.730537421364886 ], [ 0.287714064252668, 40.683821926340784 ], [ 0.276241895846795, 40.654314684375152 ], [ 0.29314008964343, 40.632145493919381 ], [ 0.418403760724971, 40.590830186763696 ], [ 0.456075880997105, 40.549204820346176 ], [ 0.523759592033164, 40.526163029399385 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-V", "NAME_1": "Valencia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.194488085256921, 39.715440171426735 ], [ -0.208933071999923, 39.664089260000083 ], [ -0.323353644999941, 39.516221421000068 ], [ -0.320668097999942, 39.38812897300005 ], [ -0.301340298999946, 39.322007554000038 ], [ -0.215492823999909, 39.181838544000072 ], [ -0.242182165999907, 39.166275180000071 ], [ -0.210026595999921, 39.078690194000046 ], [ -0.120676235999952, 38.951117255000042 ], [ -0.030995245999918, 38.882757880000042 ], [ -0.230508278634147, 38.853374055568167 ], [ -0.31080735467566, 38.881510043653577 ], [ -0.416583725158773, 38.819228546660099 ], [ -0.595298332252241, 38.795036651420332 ], [ -0.565767081085937, 38.755562772703797 ], [ -0.532884999143391, 38.762583037077491 ], [ -0.507111073217459, 38.742873563464173 ], [ -0.615469230920269, 38.693830593307212 ], [ -0.730056638103349, 38.752673368780904 ], [ -0.816354248849507, 38.740775174434702 ], [ -0.866880373730282, 38.77425051754733 ], [ -0.916143070746102, 38.773437529518333 ], [ -0.930643004670912, 38.785508015982145 ], [ -0.912574428666971, 38.81980133746174 ], [ -0.920946010749788, 38.886153876500202 ], [ -0.971072149560086, 38.946253566948542 ], [ -1.121037156639488, 38.932585151583453 ], [ -1.15147457459193, 38.948527330072181 ], [ -1.248367886169035, 39.038134264284849 ], [ -1.262113816799229, 39.073687649265594 ], [ -1.181162686408868, 39.213214015814174 ], [ -1.171473353812246, 39.296077175021594 ], [ -1.406239386438529, 39.370594591467182 ], [ -1.445746019363298, 39.366899725941551 ], [ -1.455512865426385, 39.394236559369688 ], [ -1.517447069426737, 39.441081243804319 ], [ -1.498352626872247, 39.496090807444773 ], [ -1.503158534638658, 39.552934881939223 ], [ -1.421483933836498, 39.651378486228111 ], [ -1.372029587695351, 39.68357290336678 ], [ -1.301749640033847, 39.671015530242528 ], [ -1.269942795623535, 39.686776842477286 ], [ -1.267048915774865, 39.74346588824011 ], [ -1.225578578988234, 39.796305039745789 ], [ -1.202866787072594, 39.863303533930946 ], [ -1.20661332764297, 39.938570258310733 ], [ -1.145480109319578, 39.972289129739522 ], [ -1.000269334062523, 39.97921377189806 ], [ -0.923064744242538, 39.955985216044837 ], [ -0.904771287365008, 39.934617011266027 ], [ -0.912109340673567, 39.906401678694522 ], [ -0.896890631697318, 39.859686184569739 ], [ -0.859812790627814, 39.853097439195437 ], [ -0.79128984215248, 39.877540391875584 ], [ -0.737010983969753, 39.82075324356731 ], [ -0.71265429336097, 39.816984932208811 ], [ -0.691033199222773, 39.852327951373809 ], [ -0.656030756014616, 39.835859444657615 ], [ -0.634475579484388, 39.748463201415575 ], [ -0.601395744717877, 39.750803289540158 ], [ -0.533104726002307, 39.796187812217738 ], [ -0.478195056356753, 39.728083562006759 ], [ -0.45594774089551, 39.722919987567366 ], [ -0.345392316402297, 39.797473213218211 ], [ -0.194488085256921, 39.715440171426735 ] ] ], [ [ [ -1.300819464946358, 40.203205268108604 ], [ -1.234673630583586, 40.12295176880906 ], [ -1.125843065305219, 40.097914536926339 ], [ -1.079954392581158, 40.065771795731791 ], [ -1.078765835075217, 40.0451270622641 ], [ -1.139072231098623, 40.016214097702402 ], [ -1.242967699199994, 39.997378038465683 ], [ -1.378308274707138, 40.022131049508289 ], [ -1.412931483701016, 40.104787503140756 ], [ -1.45233476383828, 40.130677394845861 ], [ -1.448536546424464, 40.149797674922752 ], [ -1.324538947214648, 40.149280910985226 ], [ -1.320017259389033, 40.187418118351445 ], [ -1.300819464946358, 40.203205268108604 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-A", "NAME_1": "Alicante" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.030995245999918, 38.882757880000042 ], [ 0.15398196700005, 38.831000067000048 ], [ 0.18531334700009, 38.803534247000073 ], [ 0.170909050000091, 38.796087958000044 ], [ 0.227712436000047, 38.770209052000041 ], [ 0.234548373000052, 38.742254950000074 ], [ 0.176768425000091, 38.724025783000059 ], [ 0.145030144000089, 38.686346747000073 ], [ 0.083018425000091, 38.660956122000073 ], [ 0.080577019000089, 38.631008205000057 ], [ -0.042958136999914, 38.611721096000053 ], [ -0.075428839999915, 38.539943752000056 ], [ -0.176991339999915, 38.527248440000051 ], [ -0.329416469999956, 38.470038153000075 ], [ -0.39517167899993, 38.413763739000046 ], [ -0.413685675999943, 38.364813544000071 ], [ -0.460194464999915, 38.360052802000041 ], [ -0.474354620999918, 38.336737372000073 ], [ -0.509836391999954, 38.338364976000037 ], [ -0.518788214999915, 38.298651434000078 ], [ -0.504017706999946, 38.207220770000049 ], [ -0.591379360999952, 38.189642645000049 ], [ -0.62368730399993, 38.16242096600007 ], [ -0.645008917999917, 38.116034247000073 ], [ -0.65453040299991, 37.989325262000079 ], [ -0.708851691999939, 37.956284898000035 ], [ -0.760574989644056, 37.845898277583444 ], [ -0.838702969166718, 37.867973130955193 ], [ -0.888699916767735, 37.908022366239209 ], [ -1.030810105701846, 38.097054754873 ], [ -1.028097093006465, 38.135346991870165 ], [ -0.985954962651419, 38.19518829990011 ], [ -0.969418504060741, 38.258698635033966 ], [ -0.983629522684339, 38.310917669814614 ], [ -1.011870692778245, 38.334818020135515 ], [ -1.076672939104867, 38.349700833226848 ], [ -1.083959315569984, 38.37460887300108 ], [ -1.082098965394948, 38.431142890032334 ], [ -1.016547410234807, 38.498425605057605 ], [ -1.00543697793421, 38.590306301494593 ], [ -1.022128465256458, 38.654540107040305 ], [ -0.957145351776546, 38.658829250869189 ], [ -0.903479377071619, 38.685080877780251 ], [ -0.948877121581916, 38.743346056475332 ], [ -0.949083828056246, 38.777271633479074 ], [ -0.866880373730282, 38.77425051754733 ], [ -0.816354248849507, 38.740775174434702 ], [ -0.730056638103349, 38.752673368780904 ], [ -0.615469230920269, 38.693830593307212 ], [ -0.507111073217459, 38.742873563464173 ], [ -0.532884999143391, 38.762583037077491 ], [ -0.565767081085937, 38.755562772703797 ], [ -0.595298332252241, 38.795036651420332 ], [ -0.416583725158773, 38.819228546660099 ], [ -0.31080735467566, 38.881510043653577 ], [ -0.230508278634147, 38.853374055568167 ], [ -0.030995245999918, 38.882757880000042 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-MU", "NAME_1": "Murcia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.760574989644056, 37.845898277583444 ], [ -0.760731574999909, 37.796128648000035 ], [ -0.787993943999936, 37.822821356000077 ], [ -0.812408006999931, 37.770086981000077 ], [ -0.85610917899993, 37.74249909100007 ], [ -0.809925910999937, 37.666896877000056 ], [ -0.754790818999936, 37.641302802000041 ], [ -0.707997199999909, 37.643011786000045 ], [ -0.70531165299991, 37.619533596000053 ], [ -0.727894660999937, 37.603420315000051 ], [ -0.925160285999937, 37.555894273000035 ], [ -0.973500128999945, 37.576402085000041 ], [ -1.087757941999939, 37.580877997000073 ], [ -1.119984503999945, 37.559027411000045 ], [ -1.10576668799996, 37.532134935000045 ], [ -1.242698867999934, 37.57920279700005 ], [ -1.261670586999912, 37.557661268000061 ], [ -1.323735140999929, 37.561990821000052 ], [ -1.470895962999919, 37.482245184000078 ], [ -1.496937628999945, 37.427801825000074 ], [ -1.515004035999937, 37.433213609000063 ], [ -1.64161771299996, 37.381036447000042 ], [ -1.732421026609074, 37.438438625941785 ], [ -1.826446295859853, 37.445363268100323 ], [ -2.000725062611536, 37.65382599517352 ], [ -2.002817958581943, 37.788029690018163 ], [ -1.975687831628136, 37.865854397462442 ], [ -2.17179989295073, 37.89644684504583 ], [ -2.232235480183249, 37.926419175904243 ], [ -2.29623674173223, 38.000574856244612 ], [ -2.338533900818902, 38.026490587270757 ], [ -2.324219530307062, 38.062379869035681 ], [ -2.211926641701154, 38.19593760783431 ], [ -2.127409836994389, 38.235185859240005 ], [ -2.042893032287623, 38.298360296690305 ], [ -1.992792730999724, 38.279524238352906 ], [ -1.926181810442188, 38.291048081803524 ], [ -1.750533617232634, 38.380344956754357 ], [ -1.690873174557396, 38.370216376384633 ], [ -1.681933152592933, 38.331562405080888 ], [ -1.654596320064115, 38.314664212183629 ], [ -1.567314825818585, 38.326213894055968 ], [ -1.481015184403248, 38.388277289265488 ], [ -1.501995814655118, 38.534909166025159 ], [ -1.454272630177741, 38.589686183870242 ], [ -1.43362789581073, 38.655832018233014 ], [ -1.371486986235425, 38.702702541988685 ], [ -1.334202439590911, 38.686734524178917 ], [ -1.243174403875628, 38.73807505981614 ], [ -1.174186367406946, 38.754094754469349 ], [ -1.119926112600012, 38.740064602099665 ], [ -1.105301682826394, 38.707508449755153 ], [ -1.022128465256458, 38.654540107040305 ], [ -1.00543697793421, 38.590306301494593 ], [ -1.019441290982797, 38.490622463755699 ], [ -1.075613572808152, 38.442124132023025 ], [ -1.084450242884429, 38.415691637059354 ], [ -1.076672939104867, 38.349700833226848 ], [ -0.994662440619152, 38.324947822184242 ], [ -0.96916012164229, 38.270842597008198 ], [ -0.985954962651419, 38.19518829990011 ], [ -1.028097093006465, 38.135346991870165 ], [ -1.025849168304489, 38.078864650782975 ], [ -0.888699916767735, 37.908022366239209 ], [ -0.838702969166718, 37.867973130955193 ], [ -0.760574989644056, 37.845898277583444 ] ] ], [ [ [ -0.73273678299995, 37.747748114000046 ], [ -0.740142381999931, 37.702460028000075 ], [ -0.726470506999931, 37.665187893000052 ], [ -0.746896938999953, 37.683783270000049 ], [ -0.754505988999938, 37.774400132000039 ], [ -0.73273678299995, 37.747748114000046 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-AL", "NAME_1": "Almería" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.64161771299996, 37.381036447000042 ], [ -1.81273352799991, 37.207058010000083 ], [ -1.855213995999918, 37.076605536000045 ], [ -1.906117316999939, 36.987616278000075 ], [ -1.900339321999923, 36.941188869000086 ], [ -1.98892167899993, 36.900498765000066 ], [ -2.071156378999945, 36.775336005000042 ], [ -2.126698370999918, 36.736395575000074 ], [ -2.203643357999908, 36.737127997000073 ], [ -2.282785610999952, 36.81008535400008 ], [ -2.361683722999942, 36.836778062000064 ], [ -2.433094855999911, 36.81627024900007 ], [ -2.481434699999909, 36.82994212400007 ], [ -2.576893683999913, 36.811306057000081 ], [ -2.617176886999914, 36.728420315000051 ], [ -2.684356248999961, 36.685980536000045 ], [ -2.756662563999953, 36.680365302000041 ], [ -2.820993618999921, 36.713893947000088 ], [ -2.848255988999938, 36.700222072000088 ], [ -2.913970506999931, 36.75031159100007 ], [ -2.987718933999929, 36.73710894900006 ], [ -3.12822435814422, 36.746382254978286 ], [ -3.140226408022329, 36.787845412835509 ], [ -3.029022789969815, 36.844457964063793 ], [ -3.072660487491532, 36.902268024649572 ], [ -2.990801353000052, 36.986181601899375 ], [ -3.011126060918969, 37.085080531141557 ], [ -2.952338216935175, 37.100823940572354 ], [ -2.927860677228466, 37.157370573293292 ], [ -2.884717364914479, 37.17939816189562 ], [ -2.854823564655817, 37.267102022740119 ], [ -2.804385330518585, 37.268530245974034 ], [ -2.756946363284044, 37.232374237880776 ], [ -2.660112863817631, 37.212005585489351 ], [ -2.665562082723966, 37.284405490620884 ], [ -2.642139230141368, 37.383216529119522 ], [ -2.490154361034968, 37.489366435712441 ], [ -2.358483213729357, 37.522226544519413 ], [ -2.375995421451535, 37.612138657373123 ], [ -2.315933163484715, 37.622092271041481 ], [ -2.321492245370848, 37.697744129188209 ], [ -2.282358943510417, 37.764068594090304 ], [ -2.285918514128127, 37.864780267895014 ], [ -2.209652878577515, 37.915670477910226 ], [ -2.17179989295073, 37.89644684504583 ], [ -1.975687831628136, 37.865854397462442 ], [ -2.002817958581943, 37.788029690018163 ], [ -2.000725062611536, 37.65382599517352 ], [ -1.826446295859853, 37.445363268100323 ], [ -1.732421026609074, 37.438438625941785 ], [ -1.64161771299996, 37.381036447000042 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-GR", "NAME_1": "Granada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.12822435814422, 36.746382254978286 ], [ -3.329579230999911, 36.744899807000081 ], [ -3.415154668999946, 36.695516287000089 ], [ -3.477602127999944, 36.696095994000075 ], [ -3.515962546999958, 36.721046505000061 ], [ -3.54983156499992, 36.712372686000037 ], [ -3.601100173999953, 36.742550294000068 ], [ -3.731281329999945, 36.72409732400007 ], [ -3.777241765695506, 36.735803426684569 ], [ -3.768204947000697, 36.801918899937277 ], [ -3.827234490079661, 36.855455278738077 ], [ -3.875618281458515, 36.853049273005524 ], [ -4.148474736919582, 36.948465536255469 ], [ -4.260963755073249, 37.023974572168754 ], [ -4.320300915754672, 37.186572234620883 ], [ -4.255162973192682, 37.229495820076011 ], [ -4.263402720059503, 37.260389375968884 ], [ -4.217216194571733, 37.350400365684322 ], [ -4.154725957736787, 37.348895238724253 ], [ -4.076382449390508, 37.403519264802185 ], [ -4.000873413477279, 37.402113014703843 ], [ -3.950786741415016, 37.378437476008685 ], [ -3.84130797718143, 37.386336646918721 ], [ -3.791880484796536, 37.466295146104073 ], [ -3.62716246107874, 37.529422589480873 ], [ -3.507136822006714, 37.613347152848803 ], [ -3.399262061594868, 37.5641064289685 ], [ -3.315106785249952, 37.577817366977854 ], [ -3.251825532622263, 37.633034654225867 ], [ -3.223403900969288, 37.639252915789427 ], [ -3.090798915637436, 37.59602171273184 ], [ -3.051336023039028, 37.612885727794094 ], [ -2.983385581179618, 37.601492904773693 ], [ -2.976189536218158, 37.632727036623407 ], [ -2.90206477726764, 37.665664050055852 ], [ -2.88965022637683, 37.774318839242994 ], [ -2.786279860727007, 37.912449948106598 ], [ -2.699641674024065, 37.97264404218879 ], [ -2.670769602535131, 37.961481932145432 ], [ -2.5983477251674, 38.005745850090875 ], [ -2.602478584718938, 38.062028810581126 ], [ -2.547384202419039, 38.080647488390866 ], [ -2.304298264553267, 38.006362616841272 ], [ -2.209652878577515, 37.915670477910226 ], [ -2.285918514128127, 37.864780267895014 ], [ -2.282358943510417, 37.764068594090304 ], [ -2.321492245370848, 37.697744129188209 ], [ -2.315933163484715, 37.622092271041481 ], [ -2.375995421451535, 37.612138657373123 ], [ -2.358483213729357, 37.522226544519413 ], [ -2.490154361034968, 37.489366435712441 ], [ -2.642139230141368, 37.383216529119522 ], [ -2.665562082723966, 37.284405490620884 ], [ -2.660112863817631, 37.212005585489351 ], [ -2.756946363284044, 37.232374237880776 ], [ -2.804385330518585, 37.268530245974034 ], [ -2.854823564655817, 37.267102022740119 ], [ -2.884717364914479, 37.17939816189562 ], [ -2.927860677228466, 37.157370573293292 ], [ -2.952338216935175, 37.100823940572354 ], [ -3.011126060918969, 37.085080531141557 ], [ -2.990801353000052, 36.986181601899375 ], [ -3.072660487491532, 36.902268024649572 ], [ -3.029022789969815, 36.844457964063793 ], [ -3.140226408022329, 36.787845412835509 ], [ -3.12822435814422, 36.746382254978286 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-MA", "NAME_1": "Málaga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.777241765695506, 36.735803426684569 ], [ -3.838541254999939, 36.751969933000055 ], [ -3.960961123999937, 36.72679277900005 ], [ -4.056711391999954, 36.747992255000042 ], [ -4.110172195999951, 36.725732647000086 ], [ -4.224720831999946, 36.712388414000088 ], [ -4.420318162999934, 36.719875393000052 ], [ -4.524826052999913, 36.580715264000048 ], [ -4.58779979399992, 36.573817661000078 ], [ -4.615021325999919, 36.530555761000073 ], [ -4.649810350999928, 36.512111721000053 ], [ -4.722767706999946, 36.492987372000073 ], [ -4.90265865799995, 36.506537177000041 ], [ -4.994166374999907, 36.457093958000087 ], [ -5.173654751999948, 36.41742584800005 ], [ -5.227121548999946, 36.357936916000085 ], [ -5.253651495999918, 36.297105210000041 ], [ -5.277792406794163, 36.336911557722203 ], [ -5.320001881081964, 36.324914486514331 ], [ -5.355355886365089, 36.433690125698718 ], [ -5.426206719164782, 36.518054142784422 ], [ -5.477095393137915, 36.521833439361728 ], [ -5.550154477946819, 36.493203067867285 ], [ -5.607843689434731, 36.519669132724289 ], [ -5.592704528191405, 36.538642522034763 ], [ -5.483467463952309, 36.573139593917119 ], [ -5.444938409380086, 36.618172554519731 ], [ -5.383744559663683, 36.63459711586421 ], [ -5.339282887994898, 36.666347605157853 ], [ -5.29740300354581, 36.77069575420569 ], [ -5.341392263142438, 36.825572464597542 ], [ -5.304906666109787, 36.865068316449594 ], [ -5.262708177940056, 36.873879351350979 ], [ -5.194076583267702, 36.829055131489099 ], [ -5.161765791158359, 36.830043901005183 ], [ -5.105493816786236, 36.866276811925331 ], [ -5.084663737541462, 36.925383259629712 ], [ -5.142243085150255, 37.003704795739736 ], [ -4.916594883946743, 37.113040737739823 ], [ -4.902103916262718, 37.134211392941381 ], [ -4.946411779579989, 37.155327116653098 ], [ -4.952168615189464, 37.17280636512163 ], [ -4.870166659363861, 37.166840788771367 ], [ -4.848128083744086, 37.192658660968391 ], [ -4.796349518015859, 37.158524138178393 ], [ -4.777266264826267, 37.162248503265801 ], [ -4.72170840162147, 37.195646941752955 ], [ -4.735595121117967, 37.244931611904349 ], [ -4.719818753332788, 37.25970822405526 ], [ -4.613778709719668, 37.255236787647618 ], [ -4.596266501997491, 37.221607636183421 ], [ -4.539313374812423, 37.211313446558279 ], [ -4.4806244076903, 37.238757294813297 ], [ -4.444940812568461, 37.277550021616207 ], [ -4.383505263756945, 37.277550021616207 ], [ -4.372200331480144, 37.215510223717843 ], [ -4.326266492104935, 37.20271115149842 ], [ -4.260963755073249, 37.023974572168754 ], [ -4.148474736919582, 36.948465536255469 ], [ -3.875618281458515, 36.853049273005524 ], [ -3.827234490079661, 36.855455278738077 ], [ -3.768204947000697, 36.801918899937277 ], [ -3.777241765695506, 36.735803426684569 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-SE", "NAME_1": "Sevilla" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.231609804904291, 36.9028328093695 ], [ -6.194813605999911, 36.932114976000037 ], [ -6.239654100999928, 36.913397528000075 ], [ -6.283558722999942, 36.925930080000057 ], [ -6.339066520790106, 36.904695773281396 ], [ -6.3783368829408, 36.934040487078789 ], [ -6.354320768288858, 36.985170860147036 ], [ -6.381621795209696, 37.061503870207446 ], [ -6.352881559836135, 37.114139370235705 ], [ -6.344114469407259, 37.176728483932379 ], [ -6.355287565568688, 37.235571260305392 ], [ -6.339236539434751, 37.289602023414602 ], [ -6.380369353462925, 37.339446996381753 ], [ -6.359737028840811, 37.359782690418797 ], [ -6.359594206607369, 37.406760231699309 ], [ -6.317659389769005, 37.420284402103448 ], [ -6.315187466428426, 37.438225076526066 ], [ -6.401342254941142, 37.575411360345981 ], [ -6.394135222962177, 37.604228500345016 ], [ -6.531376439171311, 37.631716294871069 ], [ -6.527728978709433, 37.658039537494631 ], [ -6.448935029627933, 37.734405507708004 ], [ -6.266221399997619, 37.764255361695575 ], [ -6.247544641272214, 37.733988027125747 ], [ -6.22199044130582, 37.729384755502053 ], [ -6.202874229761903, 37.799103996552162 ], [ -6.124409871418436, 37.804663078438296 ], [ -6.146712118369578, 37.848476556547837 ], [ -6.127068562364286, 37.907220455159859 ], [ -6.167036825389175, 37.908989254350558 ], [ -6.1832604637994, 37.938976549028496 ], [ -6.114091559278052, 37.978586533841451 ], [ -5.952111782332906, 38.007990423918898 ], [ -5.91092566638639, 38.066513984133053 ], [ -5.915395677368622, 38.114082139878803 ], [ -5.807211066337629, 38.183044338825141 ], [ -5.727526007818994, 38.188315335484333 ], [ -5.697992925633002, 38.165913601031832 ], [ -5.696029221771198, 38.148498644197048 ], [ -5.734088913872313, 38.129688422482673 ], [ -5.722048305584849, 38.090181790457223 ], [ -5.693574590594892, 38.091266995175658 ], [ -5.623449672564334, 38.136897284582005 ], [ -5.581049159790894, 38.13508860945177 ], [ -5.581828063514308, 38.115554203263855 ], [ -5.496068782448333, 38.042835695311055 ], [ -5.4785895339798, 37.981290282620421 ], [ -5.421834160518074, 37.940684812154359 ], [ -5.404508720401111, 37.866823725434585 ], [ -5.360112967239672, 37.841796869030247 ], [ -5.341205495537224, 37.792292472919257 ], [ -5.309707691456822, 37.773428946588581 ], [ -5.311080982301519, 37.697919910675296 ], [ -5.390028739734532, 37.697579333819192 ], [ -5.414022881250958, 37.673903796023353 ], [ -5.380108085319875, 37.611765122162637 ], [ -5.276770678923697, 37.624487290655907 ], [ -5.191055343229493, 37.669586168866601 ], [ -5.129422039795315, 37.665554186176735 ], [ -5.10502140471408, 37.690932605555304 ], [ -5.052429850057536, 37.708280017908464 ], [ -5.002112465018229, 37.703995350005357 ], [ -4.966538732876245, 37.670882555985145 ], [ -4.955222814481317, 37.618367905054754 ], [ -4.932283360988322, 37.602492660407904 ], [ -4.943884923850192, 37.520183086979841 ], [ -4.908267246336379, 37.494771709246947 ], [ -4.884877353007425, 37.438148171900593 ], [ -4.849863923681141, 37.410693336628185 ], [ -4.822068512451892, 37.358189672715184 ], [ -4.763445463837115, 37.328823216917897 ], [ -4.710579250831756, 37.361606421099452 ], [ -4.691946437478123, 37.354575170607632 ], [ -4.658075586918812, 37.277407199382708 ], [ -4.653230615300686, 37.25592892657869 ], [ -4.719818753332788, 37.25970822405526 ], [ -4.735595121117967, 37.244931611904349 ], [ -4.72170840162147, 37.195646941752955 ], [ -4.777266264826267, 37.162248503265801 ], [ -4.796349518015859, 37.158524138178393 ], [ -4.848128083744086, 37.192658660968391 ], [ -4.870166659363861, 37.166840788771367 ], [ -4.952168615189464, 37.17280636512163 ], [ -4.946411779579989, 37.155327116653098 ], [ -4.902103916262718, 37.134211392941381 ], [ -4.916594883946743, 37.113040737739823 ], [ -5.142243085150255, 37.003704795739736 ], [ -5.218993576692242, 36.949641073376824 ], [ -5.250392503910916, 36.956694296104843 ], [ -5.306345875461773, 37.017591515236234 ], [ -5.436698663412585, 36.948762166840481 ], [ -5.447761895694953, 36.977019004023816 ], [ -5.426184746928527, 37.025051232428439 ], [ -5.47149236588001, 37.045496789445281 ], [ -5.494519710116549, 37.033752404349968 ], [ -5.506736507284018, 36.954782674680644 ], [ -5.544639341432458, 36.927020222705096 ], [ -5.586870787956514, 36.922351033473376 ], [ -5.669070498404778, 36.96518672818496 ], [ -5.717047795319502, 36.919626424020237 ], [ -5.843445505205921, 36.911079060450277 ], [ -5.866242136465416, 36.896994587230381 ], [ -5.891038279892712, 36.842073930567437 ], [ -6.105183795995401, 36.857498735378329 ], [ -6.231609804904291, 36.9028328093695 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-C", "NAME_1": "La Coruña" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.730946417999917, 42.688421942000048 ], [ -8.784982876999948, 42.640570380000042 ], [ -8.839507615999935, 42.682440497000073 ], [ -8.857004360999952, 42.649115302000041 ], [ -8.846994594999956, 42.640570380000042 ], [ -8.868763800999943, 42.61749909100007 ], [ -8.903431769999941, 42.625474351000037 ], [ -8.936390753999945, 42.606431382000039 ], [ -8.922230597999942, 42.593695380000042 ], [ -8.969878709999932, 42.579169012000079 ], [ -8.98078365799995, 42.551214911000045 ], [ -9.011545376999948, 42.53070709800005 ], [ -9.026356574999909, 42.543117580000057 ], [ -9.033355272999927, 42.578111070000034 ], [ -9.070871548999946, 42.596136786000045 ], [ -9.030140753999945, 42.707709052000041 ], [ -8.898264126999948, 42.792303778000075 ], [ -8.887684699999909, 42.831122137000079 ], [ -8.90843665299991, 42.839463609000063 ], [ -8.912587042999917, 42.816595770000049 ], [ -8.951039191999939, 42.795111395000049 ], [ -9.048939581999946, 42.794745184000078 ], [ -9.045643683999913, 42.778021552000041 ], [ -9.06867428299995, 42.759711005000042 ], [ -9.10024980399993, 42.757513739000046 ], [ -9.13499915299991, 42.812770901000079 ], [ -9.10024980399993, 42.833278713000084 ], [ -9.141224738999938, 42.857448635000083 ], [ -9.14867102799991, 42.884466864000046 ], [ -9.134510870999918, 42.917547919000071 ], [ -9.195871548999946, 42.949326890000066 ], [ -9.195790167999917, 42.926581122000073 ], [ -9.224232550999943, 42.940212307000081 ], [ -9.273060675999943, 42.893337307000081 ], [ -9.291981574999909, 42.928778387000079 ], [ -9.250965949999909, 43.016791083000044 ], [ -9.27953040299991, 43.05499909100007 ], [ -9.257923956999946, 43.060899156000062 ], [ -9.217600063999953, 43.114447333000044 ], [ -9.189808722999942, 43.102321682000081 ], [ -9.10773678299995, 43.141140041000085 ], [ -9.208363410999937, 43.137884833000044 ], [ -9.217600063999953, 43.155340887000079 ], [ -9.137928839999915, 43.201524156000062 ], [ -9.052398240999935, 43.196356512000079 ], [ -9.011545376999948, 43.238755601000037 ], [ -8.985747850999928, 43.22687409100007 ], [ -8.932525193999936, 43.235296942000048 ], [ -8.915272589999915, 43.245021877000056 ], [ -8.948150193999936, 43.249945380000042 ], [ -8.988026495999918, 43.283026434000078 ], [ -8.829986131999931, 43.341213283000059 ], [ -8.785552537999934, 43.312445380000042 ], [ -8.693104620999918, 43.293402411000045 ], [ -8.592518683999913, 43.324204820000034 ], [ -8.558420376999948, 43.313218492000033 ], [ -8.443023240999935, 43.37531159100007 ], [ -8.388295050999943, 43.385891018000052 ], [ -8.353586391999954, 43.348618882000039 ], [ -8.33071855399993, 43.405666408000059 ], [ -8.267201300999943, 43.385931708000044 ], [ -8.210194464999915, 43.313218492000033 ], [ -8.20962480399993, 43.390692450000074 ], [ -8.175404425999943, 43.41632721600007 ], [ -8.264759894999941, 43.427313544000071 ], [ -8.305165167999917, 43.451076565000051 ], [ -8.178781704999949, 43.47329336100006 ], [ -8.168568488999938, 43.492010809000078 ], [ -8.257313605999911, 43.477728583000044 ], [ -8.243723110999952, 43.485174872000073 ], [ -8.257313605999911, 43.492010809000078 ], [ -8.288970506999931, 43.47296784100007 ], [ -8.333119269999941, 43.471502997000073 ], [ -8.31663977799991, 43.52289459800005 ], [ -8.292103644999941, 43.532945054000038 ], [ -8.312652147999927, 43.567124742000033 ], [ -8.232248501999948, 43.575506903000075 ], [ -8.086659308999913, 43.656480210000041 ], [ -8.074615037999934, 43.639634507000039 ], [ -8.051869269999941, 43.642808335000041 ], [ -8.065541144999941, 43.642808335000041 ], [ -8.051869269999941, 43.656480210000041 ], [ -8.073963995999918, 43.678534247000073 ], [ -8.059315558999913, 43.709418036000045 ], [ -7.981190558999913, 43.717840887000079 ], [ -7.908558722999942, 43.766343492000033 ], [ -7.880848761999914, 43.763251044000071 ], [ -7.846506313999953, 43.717962958000044 ], [ -7.867583787999934, 43.717962958000044 ], [ -7.873768683999913, 43.684475002000056 ], [ -7.908558722999942, 43.670152085000041 ], [ -7.858387824999909, 43.668198960000041 ], [ -7.849232550999943, 43.675604559000078 ], [ -7.867583787999934, 43.697455145000049 ], [ -7.819162563999953, 43.697455145000049 ], [ -7.826039191999939, 43.711737372000073 ], [ -7.812001105999911, 43.723089911000045 ], [ -7.712757941999939, 43.760687567000048 ], [ -7.678334113999938, 43.79047272300005 ], [ -7.668324347999942, 43.772528387000079 ], [ -7.69562740799995, 43.745917059000078 ], [ -7.709473407871485, 43.674175021360099 ], [ -7.690950458396969, 43.653927218066656 ], [ -7.723634785716797, 43.625802216998693 ], [ -7.726590108146979, 43.586482146633728 ], [ -7.758428488184165, 43.554753629576339 ], [ -7.744805440918356, 43.526321011805237 ], [ -7.780170432319608, 43.449054162819323 ], [ -7.807284690735912, 43.437397668467611 ], [ -7.824610130852875, 43.406592003318281 ], [ -7.882090602499318, 43.407525841344466 ], [ -7.889308619697033, 43.341454060756291 ], [ -7.936758573049701, 43.293202106392073 ], [ -7.928397977084956, 43.25516743702758 ], [ -7.961356962753655, 43.189952590739438 ], [ -7.924684598115732, 43.092174266229392 ], [ -7.934846951625502, 43.051843454112088 ], [ -7.906414333854457, 42.987639350475604 ], [ -7.911775662017192, 42.936728704266272 ], [ -7.935626981300175, 42.903429141741469 ], [ -8.032834015977073, 42.836456483280074 ], [ -8.174447790832915, 42.853012880739811 ], [ -8.209944618349482, 42.830699646771279 ], [ -8.252066201893683, 42.836302674928504 ], [ -8.289661418439721, 42.820031921935652 ], [ -8.32932206476147, 42.845717958017303 ], [ -8.342220013842564, 42.783985778620774 ], [ -8.392032027556013, 42.789489929017009 ], [ -8.458290575749459, 42.742018003428086 ], [ -8.502334766836043, 42.75606951739428 ], [ -8.578052542590797, 42.745874204630809 ], [ -8.603474907341081, 42.719419124992612 ], [ -8.645431695516322, 42.725516537458191 ], [ -8.716337459805914, 42.706455257404173 ], [ -8.730946417999917, 42.688421942000048 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-LU", "NAME_1": "Lugo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.696156379213562, 43.73151276160462 ], [ -7.641021287999934, 43.752671617000033 ], [ -7.615956183999913, 43.688544012000079 ], [ -7.586415167999917, 43.717962958000044 ], [ -7.541411912999934, 43.731634833000044 ], [ -7.367054816999939, 43.680080471000053 ], [ -7.304107225999928, 43.598578192000048 ], [ -7.256743943999936, 43.581610419000071 ], [ -7.271066860999952, 43.568630276000079 ], [ -7.257720506999931, 43.556667385000083 ], [ -7.230091925999943, 43.568630276000079 ], [ -7.079335089999915, 43.568630276000079 ], [ -7.032338019999941, 43.553005276000079 ], [ -7.048892380778739, 43.477889105797544 ], [ -7.11273861269683, 43.429339098120863 ], [ -7.160901047645268, 43.429132392545853 ], [ -7.170125291349109, 43.390840156448064 ], [ -7.130050217643429, 43.378618679208671 ], [ -7.121601121194772, 43.336786607216141 ], [ -7.071268275910199, 43.297719224762375 ], [ -7.050959438327425, 43.2373094750522 ], [ -6.965564133577914, 43.195012315066265 ], [ -6.97378068692916, 43.159226386088847 ], [ -6.959285448364767, 43.13884003414023 ], [ -6.926651780755094, 43.13803904936259 ], [ -6.866293707888303, 43.17529775668612 ], [ -6.832161424410231, 43.139899400436946 ], [ -6.83154130678588, 43.120159002735761 ], [ -6.868980882161964, 43.09530263890565 ], [ -6.945203620051018, 43.076724962087326 ], [ -6.98845679444554, 43.01933828433431 ], [ -6.966390956777218, 42.994275214029869 ], [ -6.945203620051018, 43.024609280094182 ], [ -6.913706834003222, 42.994740302023274 ], [ -6.868851690952795, 42.988668321485818 ], [ -6.836889817810857, 42.962700914515551 ], [ -6.82828569173131, 42.914796861086245 ], [ -6.860480108869922, 42.874463405861491 ], [ -6.857534552177867, 42.81813609530451 ], [ -6.928589647094554, 42.750052395501655 ], [ -6.965693324787139, 42.747029324443758 ], [ -7.032795172659121, 42.706256618747943 ], [ -7.036179978922917, 42.67592255358295 ], [ -7.014295010206581, 42.641325182111416 ], [ -7.044344855430722, 42.617088935006336 ], [ -7.061966518739837, 42.522004299458843 ], [ -7.103214839892928, 42.457823656436574 ], [ -7.150829587715293, 42.427226731128712 ], [ -7.202630127478415, 42.325526287807918 ], [ -7.269317141472925, 42.414691330240657 ], [ -7.361986823033476, 42.419536300959521 ], [ -7.406371590076844, 42.444321458268689 ], [ -7.520871105617061, 42.395003829762913 ], [ -7.617342056890436, 42.402090011744633 ], [ -7.715406025867424, 42.451143968918984 ], [ -7.75272658316527, 42.451132981901594 ], [ -7.861502222349714, 42.503977222670642 ], [ -7.896845241514711, 42.50569108947218 ], [ -7.894417262646584, 42.546362478445587 ], [ -7.930803982817565, 42.578453543696071 ], [ -7.893000026430059, 42.635307794019468 ], [ -7.868148951512921, 42.713211849547179 ], [ -7.932254178287678, 42.739952573652317 ], [ -7.978517607501601, 42.781151305288461 ], [ -7.96445510741728, 42.842356142022311 ], [ -7.999809112700405, 42.848860048052757 ], [ -7.97526565448635, 42.883049502332653 ], [ -7.935626981300175, 42.903429141741469 ], [ -7.906601101459671, 42.961909369022123 ], [ -7.934846951625502, 43.051843454112088 ], [ -7.924684598115732, 43.092174266229392 ], [ -7.961356962753655, 43.189952590739438 ], [ -7.928397977084956, 43.25516743702758 ], [ -7.936758573049701, 43.293202106392073 ], [ -7.889308619697033, 43.341454060756291 ], [ -7.882090602499318, 43.407525841344466 ], [ -7.824610130852875, 43.406592003318281 ], [ -7.807284690735912, 43.437397668467611 ], [ -7.780170432319608, 43.449054162819323 ], [ -7.744805440918356, 43.526321011805237 ], [ -7.758428488184165, 43.554753629576339 ], [ -7.726590108146979, 43.586482146633728 ], [ -7.723634785716797, 43.625802216998693 ], [ -7.690950458396969, 43.653927218066656 ], [ -7.709473407871485, 43.674175021360099 ], [ -7.696156379213562, 43.73151276160462 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-O", "NAME_1": "Asturias" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.046922738074349, 43.48367793486463 ], [ -7.001372850999928, 43.556667385000083 ], [ -6.943959113999938, 43.565985419000071 ], [ -6.703724738999938, 43.557562567000048 ], [ -6.64867102799991, 43.579046942000048 ], [ -6.510121222999942, 43.547471421000068 ], [ -6.462961391999954, 43.554958401000079 ], [ -6.469105597999942, 43.575384833000044 ], [ -6.417632615999935, 43.561143296000068 ], [ -6.314605272999927, 43.568630276000079 ], [ -6.222767706999946, 43.595892645000049 ], [ -6.17804928299995, 43.575384833000044 ], [ -6.069162563999953, 43.569688218000067 ], [ -6.023508266999954, 43.588446356000077 ], [ -5.907378709999932, 43.588446356000077 ], [ -5.907378709999932, 43.636826890000066 ], [ -5.86351477799991, 43.641424872000073 ], [ -5.85220292899993, 43.662949937000064 ], [ -5.803822394999941, 43.650498765000066 ], [ -5.708851691999939, 43.568630276000079 ], [ -5.696766730999911, 43.582831122000073 ], [ -5.677479620999918, 43.561143296000068 ], [ -5.424224412999934, 43.561143296000068 ], [ -5.393869594999956, 43.555243231000077 ], [ -5.390736456999946, 43.54132721600007 ], [ -5.413929816999939, 43.506537177000041 ], [ -5.356800910999937, 43.53860097900008 ], [ -5.299875454999949, 43.537665106000077 ], [ -5.177886522999927, 43.48936595300006 ], [ -4.975168423999946, 43.458766994000086 ], [ -4.941029425999943, 43.471747137000079 ], [ -4.734934048999946, 43.41710032800006 ], [ -4.513830313924713, 43.402834267007492 ], [ -4.513259040272487, 43.384354762961891 ], [ -4.537314419325014, 43.348310452465398 ], [ -4.518710903185649, 43.305987454057743 ], [ -4.537159389694068, 43.27720368070527 ], [ -4.592608202006943, 43.298158474334116 ], [ -4.643173591288189, 43.272191067363849 ], [ -4.715675625229949, 43.264697984424402 ], [ -4.74267656097453, 43.192144272739995 ], [ -4.831870083137858, 43.188681952110358 ], [ -4.859413621241629, 43.223408514791117 ], [ -4.908480393755156, 43.2373094750522 ], [ -5.062889574294445, 43.178760077315701 ], [ -5.118131680132933, 43.108583482441759 ], [ -5.374007534220311, 43.089669907939879 ], [ -5.398502162844522, 43.056493638870336 ], [ -5.473381312697427, 43.051119290322958 ], [ -5.490770432909187, 43.028640042403993 ], [ -5.540999925406254, 43.021792913711977 ], [ -5.705175951109254, 43.048793850355878 ], [ -5.729980638095981, 43.040577297903951 ], [ -5.778685675403608, 42.97466400843723 ], [ -5.804833950426485, 42.9706074077057 ], [ -5.918651292423192, 42.998796901855485 ], [ -5.954669766296661, 43.01758128514814 ], [ -5.987794359422139, 43.062333076310381 ], [ -6.079106615078217, 43.065097764949883 ], [ -6.122023891789183, 43.027916571992193 ], [ -6.199745246445957, 43.041042384998036 ], [ -6.234445969805677, 43.01435150851529 ], [ -6.364851447236504, 43.051429347786154 ], [ -6.392756719646911, 43.042205104981576 ], [ -6.418698289094777, 43.000528063519312 ], [ -6.480270757889173, 42.987867336708177 ], [ -6.444846564117654, 42.957714137797211 ], [ -6.501561449201517, 42.929705511699979 ], [ -6.562100389221598, 42.916657213059921 ], [ -6.701109991832652, 42.924512031205268 ], [ -6.763483446304008, 42.892834378004125 ], [ -6.82828569173131, 42.914796861086245 ], [ -6.836889817810857, 42.962700914515551 ], [ -6.868851690952795, 42.988668321485818 ], [ -6.913706834003222, 42.994740302023274 ], [ -6.951327277431915, 43.025126044031708 ], [ -6.966390956777218, 42.994275214029869 ], [ -6.98845679444554, 43.01933828433431 ], [ -6.945203620051018, 43.076724962087326 ], [ -6.877223273035611, 43.091788642331949 ], [ -6.83154130678588, 43.120159002735761 ], [ -6.847586838961433, 43.159226386088847 ], [ -6.873812629249471, 43.174625963117705 ], [ -6.898462286605252, 43.149123644140843 ], [ -6.959285448364767, 43.13884003414023 ], [ -6.97378068692916, 43.159226386088847 ], [ -6.965564133577914, 43.195012315066265 ], [ -7.050959438327425, 43.2373094750522 ], [ -7.071268275910199, 43.297719224762375 ], [ -7.121601121194772, 43.336786607216141 ], [ -7.130050217643429, 43.378618679208671 ], [ -7.170125291349109, 43.390840156448064 ], [ -7.160901047645268, 43.429132392545853 ], [ -7.11273861269683, 43.429339098120863 ], [ -7.046922738074349, 43.48367793486463 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-S", "NAME_1": "Cantabria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.513830313924713, 43.402834267007492 ], [ -4.481678839999915, 43.383612372000073 ], [ -4.432525193999936, 43.402614651000079 ], [ -4.379261847999942, 43.383612372000073 ], [ -4.359364386999914, 43.399684963000084 ], [ -4.188588019999941, 43.40538157800006 ], [ -4.012766079999949, 43.452500718000067 ], [ -3.981434699999909, 43.438259182000081 ], [ -3.961008266999954, 43.445095119000086 ], [ -3.974598761999914, 43.458766994000086 ], [ -3.922718878999945, 43.482611395000049 ], [ -3.826730923999946, 43.497015692000048 ], [ -3.769154425999943, 43.479193427000041 ], [ -3.844309048999946, 43.445095119000086 ], [ -3.820220506999931, 43.424261786000045 ], [ -3.772287563999953, 43.452500718000067 ], [ -3.744984503999945, 43.438259182000081 ], [ -3.755523240999935, 43.471747137000079 ], [ -3.728871222999942, 43.465521552000041 ], [ -3.717925584999932, 43.48273346600007 ], [ -3.554351365999935, 43.516913153000075 ], [ -3.556263800999943, 43.499701239000046 ], [ -3.428293423999946, 43.461737372000073 ], [ -3.428618943999936, 43.446844794000071 ], [ -3.470041469999956, 43.454169012000079 ], [ -3.501698370999918, 43.43077220300006 ], [ -3.461089647999927, 43.412461656000062 ], [ -3.447010870999918, 43.43077220300006 ], [ -3.210519985999952, 43.389837958000044 ], [ -3.150601676019186, 43.360154508954992 ], [ -3.149543829584104, 43.324435940566161 ], [ -3.203545701972587, 43.292293199371613 ], [ -3.322944098091682, 43.300096341572896 ], [ -3.430896165125944, 43.243458970854817 ], [ -3.445029670283077, 43.224235337990422 ], [ -3.423790655814116, 43.140622869949482 ], [ -3.500065069647235, 43.140700385214586 ], [ -3.647807990446438, 43.176176255829546 ], [ -3.766224534634603, 43.093442287831294 ], [ -3.838287319004564, 43.084657293699138 ], [ -3.854901291961085, 43.047656968794058 ], [ -3.952621425838117, 42.999236152326546 ], [ -3.984790004555066, 42.925829779920377 ], [ -3.946110194829657, 42.904358222354062 ], [ -3.881333786924756, 42.943864854379513 ], [ -3.848519253061113, 42.940996812952505 ], [ -3.834101527963128, 42.921566474513156 ], [ -3.89815446635555, 42.898570461757402 ], [ -3.904639858043026, 42.861544298430601 ], [ -3.885312873290502, 42.851234850008325 ], [ -3.86208431563864, 42.872008775584504 ], [ -3.831388516167124, 42.87231883394702 ], [ -3.815756395141534, 42.810048733162489 ], [ -3.96520463738409, 42.762506414939082 ], [ -4.000189581583925, 42.769792792303519 ], [ -4.00277340307008, 42.823587958217672 ], [ -4.047163459026422, 42.770102851565298 ], [ -4.085765754386046, 42.763126533462753 ], [ -4.185242885650666, 42.811960761080229 ], [ -4.135530157990388, 42.839504299184057 ], [ -4.14116288895616, 42.858831284835901 ], [ -4.221390549834041, 42.850201321233953 ], [ -4.239916550708244, 42.950246894178804 ], [ -4.356550259087214, 42.985412706431248 ], [ -4.409647793011231, 43.038329373201975 ], [ -4.462874518144531, 43.050938422270349 ], [ -4.552378098670317, 43.023937486525767 ], [ -4.726863572795651, 43.015927638749531 ], [ -4.770452643075032, 43.078636990005066 ], [ -4.827890997671432, 43.108066718504233 ], [ -4.831870083137858, 43.188681952110358 ], [ -4.734537522888388, 43.196898505461661 ], [ -4.715675625229949, 43.264697984424402 ], [ -4.643173591288189, 43.272191067363849 ], [ -4.592608202006943, 43.298158474334116 ], [ -4.529821336385567, 43.281699531008542 ], [ -4.518710903185649, 43.305987454057743 ], [ -4.537314419325014, 43.348310452465398 ], [ -4.513830313924713, 43.402834267007492 ] ] ], [ [ [ -3.304197361319154, 43.260682573541885 ], [ -3.286146823017475, 43.256364946385133 ], [ -3.267360201312272, 43.227393998034586 ], [ -3.299198581349458, 43.216869095432401 ], [ -3.304197361319154, 43.260682573541885 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-BI", "NAME_1": "Bizkaia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.150601676019186, 43.360154508954992 ], [ -3.112375454999949, 43.354071356000077 ], [ -3.089507615999935, 43.366888739000046 ], [ -3.008168097999942, 43.320908921000068 ], [ -3.029286261999914, 43.376166083000044 ], [ -2.939930792999917, 43.41710032800006 ], [ -2.946685350999928, 43.43077220300006 ], [ -2.768625454999949, 43.452500718000067 ], [ -2.715199347999942, 43.424505927000041 ], [ -2.691029425999943, 43.367539781000062 ], [ -2.677805141999954, 43.406195380000042 ], [ -2.661203579999949, 43.411932684000078 ], [ -2.483509894999941, 43.37063222900008 ], [ -2.406783742297463, 43.329305821579709 ], [ -2.440166566733694, 43.288126422696223 ], [ -2.418193909621266, 43.267538042546619 ], [ -2.459359682003708, 43.227306107290985 ], [ -2.490527896245453, 43.22235127359238 ], [ -2.488945865559231, 43.183657424550461 ], [ -2.507051334451546, 43.161530958187143 ], [ -2.501722965542456, 43.103226513292952 ], [ -2.656849924684309, 43.07576069190236 ], [ -2.629801583876031, 43.035473825156885 ], [ -2.63664606586326, 43.022839547407159 ], [ -2.895385089750107, 43.047481881583565 ], [ -2.956787680207299, 43.096019481313988 ], [ -2.935913655590753, 43.14686420991535 ], [ -2.970476645081135, 43.193259475244588 ], [ -2.999326744333814, 43.204981888103646 ], [ -3.021837731126425, 43.191677444558422 ], [ -3.03147274107414, 43.160882765527163 ], [ -3.104081386946461, 43.145216260721838 ], [ -3.151507534345228, 43.181447252488681 ], [ -3.25945960137949, 43.201187649290546 ], [ -3.423790655814116, 43.140622869949482 ], [ -3.445029670283077, 43.224235337990422 ], [ -3.430896165125944, 43.243458970854817 ], [ -3.322944098091682, 43.300096341572896 ], [ -3.203545701972587, 43.292293199371613 ], [ -3.160240850734681, 43.307796129187977 ], [ -3.150601676019186, 43.360154508954992 ] ], [ [ -3.299198581349458, 43.216869095432401 ], [ -3.267360201312272, 43.227393998034586 ], [ -3.304197361319154, 43.260682573541885 ], [ -3.304241306690983, 43.222153519869039 ], [ -3.299198581349458, 43.216869095432401 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-TF", "NAME_1": "Santa Cruz de Tenerife" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -14.933949347999942, 34.852036851000037 ], [ -14.896473761999914, 34.840318101000037 ], [ -14.879261847999942, 34.814520575000074 ], [ -14.930165167999917, 34.718654690000051 ], [ -14.965240037999934, 34.686997789000088 ], [ -14.979481574999909, 34.642523505000042 ], [ -15.015777147999927, 34.653469143000052 ], [ -15.053130662999934, 34.691229559000078 ], [ -15.126942511999914, 34.700262762000079 ], [ -15.16038977799991, 34.722357489000046 ], [ -15.167225714999915, 34.757554429000038 ], [ -15.140492316999939, 34.768784898000035 ], [ -15.056792772999927, 34.75649648600006 ], [ -14.989857550999943, 34.823716539000088 ], [ -14.933949347999942, 34.852036851000037 ] ] ], [ [ [ -14.309673192999924, 35.207117355000037 ], [ -14.259173290999911, 35.21771663800007 ], [ -14.212721082999906, 35.205449330000079 ], [ -14.116118943999936, 35.146226304000038 ], [ -14.09841969699994, 35.100763585000038 ], [ -14.18497531099996, 35.031619039000077 ], [ -14.257887594999943, 35.024569541000062 ], [ -14.310073186999944, 35.053473574000066 ], [ -14.343220901999928, 35.097660414000075 ], [ -14.338816928999904, 35.171047137000073 ], [ -14.309673192999924, 35.207117355000037 ] ] ], [ [ [ -13.427695488999916, 35.149669540000048 ], [ -13.545765753999945, 35.023993231000077 ], [ -13.579710212999942, 35.030332462000047 ], [ -13.692683274999922, 34.99984694200009 ], [ -13.727894660999937, 35.078599351000037 ], [ -13.837147589999915, 35.208970445000091 ], [ -13.847238735999952, 35.262518622000073 ], [ -13.916058089999922, 35.354969806000042 ], [ -13.837439856999936, 35.391082809000068 ], [ -13.770130988999938, 35.366278387000079 ], [ -13.664179502999957, 35.400726786000064 ], [ -13.584633967999935, 35.401099510000051 ], [ -13.507135176999952, 35.424134052000056 ], [ -13.420399542999917, 35.490627346000053 ], [ -13.408273891999954, 35.51984284100007 ], [ -13.322743292999917, 35.55345286700009 ], [ -13.316395636999914, 35.572088934000078 ], [ -13.202707485999952, 35.564032294000071 ], [ -13.141346808999913, 35.58344147300005 ], [ -13.117746548999946, 35.572088934000078 ], [ -13.127070471999957, 35.543818502000079 ], [ -13.231391362999943, 35.488415548000035 ], [ -13.296135933999949, 35.417762461000052 ], [ -13.355513648999931, 35.381149772000072 ], [ -13.35810622799994, 35.314630928000042 ], [ -13.419232876999956, 35.211382738000054 ], [ -13.427695488999916, 35.149669540000048 ] ] ], [ [ [ -14.755767381999931, 35.818508205000057 ], [ -14.750602426999933, 35.774762657000053 ], [ -14.721044159999906, 35.730643804000067 ], [ -14.765253519999931, 35.677548591000061 ], [ -14.745604195999931, 35.621886961000087 ], [ -14.759856402999958, 35.576821003000077 ], [ -14.837066209999932, 35.45538971600007 ], [ -14.865122056999951, 35.475381034000065 ], [ -14.879687701999956, 35.543712542000037 ], [ -14.963098057999957, 35.67148878100005 ], [ -14.976144985999952, 35.728176174000055 ], [ -15.00218665299991, 35.749579169000071 ], [ -14.996815558999913, 35.780096747000073 ], [ -14.911145077999947, 35.85561903200005 ], [ -14.841664191999939, 35.835435289000088 ], [ -14.801380988999938, 35.849310614000046 ], [ -14.755767381999931, 35.818508205000057 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-GC", "NAME_1": "Las Palmas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -12.391590949999909, 35.030218817000048 ], [ -12.363636847999942, 35.009711005000042 ], [ -12.376698370999918, 34.957505601000037 ], [ -12.363636847999942, 34.934637762000079 ], [ -12.391590949999909, 34.89984772300005 ], [ -12.377837693999936, 34.85228099200009 ], [ -12.453033006999931, 34.791245835000041 ], [ -12.539662238999938, 34.765611070000091 ], [ -12.577951626999948, 34.734361070000091 ], [ -12.685699022999927, 34.763332424000055 ], [ -12.739654100999928, 34.804348049000055 ], [ -12.786000128999945, 34.844224351000037 ], [ -12.821197068999936, 34.921779690000051 ], [ -12.816070115999935, 34.996039130000042 ], [ -12.749826626999948, 35.035956122000073 ], [ -12.708363410999937, 35.081935940000051 ], [ -12.706206834999932, 35.167385158000059 ], [ -12.458729620999918, 35.13422272300005 ], [ -12.435047980999911, 35.14093659100007 ], [ -12.438710089999915, 35.174872137000079 ], [ -12.409291144999941, 35.179754950000074 ], [ -12.400135870999918, 35.157212632000039 ], [ -12.414947068999936, 35.114488023000035 ], [ -12.391590949999909, 35.030218817000048 ] ] ], [ [ [ -10.972645636999914, 35.735907294000071 ], [ -10.89867102799991, 35.753892320000091 ], [ -10.864572719999956, 35.744208075000074 ], [ -10.824370897999927, 35.681789455000057 ], [ -10.828684048999946, 35.551581122000073 ], [ -10.856556769999941, 35.478989976000037 ], [ -10.842925584999932, 35.406927802000041 ], [ -10.933705206999946, 35.244208075000074 ], [ -11.19163977799991, 35.170843817000048 ], [ -11.301340298999946, 35.067857164000088 ], [ -11.343169725999928, 35.050685940000051 ], [ -11.507069464999915, 35.071193752000056 ], [ -11.496896938999953, 35.102525132000039 ], [ -11.436024542999917, 35.100531317000048 ], [ -11.341175910999937, 35.134507554000038 ], [ -11.224436001999948, 35.218573309000078 ], [ -11.14085852799991, 35.434881903000075 ], [ -11.036122199999909, 35.587388414000088 ], [ -10.999908006999931, 35.716742255000042 ], [ -10.972645636999914, 35.735907294000071 ] ] ], [ [ [ -10.482980923999946, 36.239935614000046 ], [ -10.465402798999946, 36.243312893000052 ], [ -10.417795376999948, 36.208929755000042 ], [ -10.438791469999956, 36.159002997000073 ], [ -10.458729620999918, 36.147406317000048 ], [ -10.451893683999913, 36.086004950000074 ], [ -10.482045050999943, 35.99945709800005 ], [ -10.607574022999927, 35.932603257000039 ], [ -10.70929928299995, 35.91469961100006 ], [ -10.774647589999915, 35.839585679000038 ], [ -10.867298956999946, 35.864894924000055 ], [ -10.876332160999937, 35.888820705000057 ], [ -10.842925584999932, 35.921535549000055 ], [ -10.832102016999954, 36.000392971000053 ], [ -10.798491990999935, 36.048081773000035 ], [ -10.636830206999946, 36.126939195000091 ], [ -10.537220831999946, 36.138251044000071 ], [ -10.482980923999946, 36.239935614000046 ] ] ], [ [ [ -10.486683722999942, 36.28461334800005 ], [ -10.477894660999937, 36.26626211100006 ], [ -10.492014126999948, 36.242661851000037 ], [ -10.54124915299991, 36.229396877000056 ], [ -10.508168097999942, 36.289455471000053 ], [ -10.486683722999942, 36.28461334800005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-PM", "NAME_1": "Baleares" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.52638326400006, 38.677767624000069 ], [ 1.565683815000057, 38.69148550500006 ], [ 1.58139082100007, 38.65306224200009 ], [ 1.523448113000086, 38.649400132000039 ], [ 1.458085631000074, 38.681340739000063 ], [ 1.382950333000053, 38.642060925000067 ], [ 1.393728061000047, 38.70420970300006 ], [ 1.382823113000086, 38.71157461100006 ], [ 1.418142123000052, 38.727891343000067 ], [ 1.43132571700005, 38.754868882000039 ], [ 1.48609459700009, 38.694566148000035 ], [ 1.52638326400006, 38.677767624000069 ] ] ], [ [ [ 1.605967644000089, 39.091294664000088 ], [ 1.623057488000086, 39.029201565000051 ], [ 1.593272332000083, 39.02024974200009 ], [ 1.576182488000086, 38.985825914000088 ], [ 1.509776238000086, 38.930161851000037 ], [ 1.414728475000061, 38.89062173700006 ], [ 1.403104951000046, 38.832277563000048 ], [ 1.370650433000094, 38.831809407000037 ], [ 1.34351647200009, 38.862372137000079 ], [ 1.307790561000047, 38.857896226000037 ], [ 1.283457879000082, 38.874619859000063 ], [ 1.259938998000052, 38.857896226000037 ], [ 1.216644727000073, 38.88507721600007 ], [ 1.21843509200005, 38.954087632000039 ], [ 1.300954623000052, 38.967759507000039 ], [ 1.292816602000073, 39.033270575000074 ], [ 1.35678144600007, 39.077622789000088 ], [ 1.403330925000091, 39.077622789000088 ], [ 1.522715691000087, 39.118882554000038 ], [ 1.605967644000089, 39.091294664000088 ] ] ], [ [ [ 3.354502800000091, 39.784369208000044 ], [ 3.47437584700009, 39.749701239000046 ], [ 3.453868035000085, 39.65969472900008 ], [ 3.401866082000083, 39.623236395000049 ], [ 3.40601647200009, 39.591986395000049 ], [ 3.323252800000091, 39.523871161000045 ], [ 3.291758660000085, 39.475775458000044 ], [ 3.282481316000087, 39.420111395000049 ], [ 3.268809441000087, 39.427557684000078 ], [ 3.252614780000044, 39.38617584800005 ], [ 3.060801629000082, 39.26906972900008 ], [ 3.00131269600007, 39.317694403000075 ], [ 2.991384311000047, 39.347276109000063 ], [ 2.958832227000073, 39.363226630000042 ], [ 2.786631707000083, 39.375921942000048 ], [ 2.736582879000082, 39.462103583000044 ], [ 2.754893425000091, 39.502630927000041 ], [ 2.74350019600007, 39.523382880000042 ], [ 2.681651238000086, 39.558661200000074 ], [ 2.655284050000091, 39.564724026000079 ], [ 2.569102410000085, 39.531520901000079 ], [ 2.520192905000044, 39.472845770000049 ], [ 2.492686394000089, 39.47024160400008 ], [ 2.469004754000082, 39.505886135000083 ], [ 2.480642123000052, 39.516221421000068 ], [ 2.453949415000068, 39.53742096600007 ], [ 2.391856316000087, 39.52374909100007 ], [ 2.350759311000047, 39.57648346600007 ], [ 2.357676629000082, 39.611883856000077 ], [ 2.468272332000083, 39.659369208000044 ], [ 2.517588738000086, 39.700140692000048 ], [ 2.56967207100007, 39.713080145000049 ], [ 2.631358269000089, 39.770127671000068 ], [ 2.651866082000083, 39.770127671000068 ], [ 2.813243035000085, 39.87258535400008 ], [ 2.843597852000073, 39.87258535400008 ], [ 2.93327884200005, 39.914496161000045 ], [ 3.17945397200009, 39.968776760000083 ], [ 3.21420332100007, 39.955104885000083 ], [ 3.115489129000082, 39.908758856000077 ], [ 3.096934441000087, 39.91351959800005 ], [ 3.094737175000091, 39.881211656000062 ], [ 3.20679772200009, 39.893011786000045 ], [ 3.18718509200005, 39.854356187000064 ], [ 3.12631269600007, 39.831854559000078 ], [ 3.13648522200009, 39.788763739000046 ], [ 3.223887566000087, 39.749701239000046 ], [ 3.292491082000083, 39.749701239000046 ], [ 3.354502800000091, 39.784369208000044 ] ] ], [ [ [ 4.302907748000052, 39.925523179000038 ], [ 4.337087436000047, 39.867173570000034 ], [ 4.302907748000052, 39.887600002000056 ], [ 4.300059441000087, 39.821763414000088 ], [ 4.248138868000069, 39.816473700000074 ], [ 3.981374545000051, 39.936061916000085 ], [ 3.869313998000052, 39.925523179000038 ], [ 3.830658399000072, 39.936061916000085 ], [ 3.850515170000051, 39.983872789000088 ], [ 3.803151889000048, 40.018133856000077 ], [ 3.821869337000066, 40.047634182000081 ], [ 4.052012566000087, 40.058172919000071 ], [ 4.105072462000066, 40.079413153000075 ], [ 4.14226321700005, 40.024807033000059 ], [ 4.170502149000072, 40.064601955000057 ], [ 4.178640170000051, 40.038845119000086 ], [ 4.264903191000087, 39.986395575000074 ], [ 4.272390170000051, 39.955349026000079 ], [ 4.254567905000044, 39.949693101000037 ], [ 4.298024936000047, 39.941961981000077 ], [ 4.302907748000052, 39.925523179000038 ] ] ], [ [ [ 2.985366533000047, 39.166176140000061 ], [ 2.962154470000087, 39.116062235000072 ], [ 2.930866760000072, 39.118175889000042 ], [ 2.913614193000058, 39.15196267500005 ], [ 2.980582428000048, 39.185560431000056 ], [ 2.985366533000047, 39.166176140000061 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-Z", "NAME_1": "Zaragoza" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.075665248752216, 42.645355943521963 ], [ -1.044452684443854, 42.649955145713363 ], [ -1.024634772376828, 42.69612803837822 ], [ -0.904357876215045, 42.742559313461527 ], [ -0.909199710997882, 42.706850765750232 ], [ -0.879822269082467, 42.679121272129009 ], [ -0.924690434316119, 42.651446710896948 ], [ -0.904827152351231, 42.613104423929997 ], [ -0.888831057707137, 42.471831225030996 ], [ -0.901289554869095, 42.435982835439461 ], [ -0.842270997908258, 42.407484299161069 ], [ -0.834690430718808, 42.380677657447904 ], [ -0.922482182306851, 42.27163834693215 ], [ -0.915978276276462, 42.25414811144617 ], [ -0.892939945022476, 42.249841470407489 ], [ -0.861541017803745, 42.282569743099145 ], [ -0.808323242723475, 42.279196940986026 ], [ -0.772683592973465, 42.344950116954294 ], [ -0.782549315898223, 42.38903825341265 ], [ -0.755391111210827, 42.391740890629592 ], [ -0.740054197143479, 42.375294356149595 ], [ -0.731550778945291, 42.297807781204142 ], [ -0.757390623378569, 42.258454752484795 ], [ -0.747865476410595, 42.086540682906161 ], [ -0.781714354733708, 42.056580965039473 ], [ -0.819199707400571, 42.082102206651484 ], [ -0.848115724261277, 42.07271988191701 ], [ -0.866067385701285, 42.027159577752286 ], [ -0.853685793164857, 41.996705474677867 ], [ -0.778209715605897, 41.957308500586805 ], [ -0.652064691832095, 41.94581680070479 ], [ -0.60711962197297, 41.888149562352396 ], [ -0.524897938389131, 41.839831689480889 ], [ -0.488774890448838, 41.735549458940341 ], [ -0.380669417959268, 41.684682758102781 ], [ -0.344194807044744, 41.631179337656306 ], [ -0.258303689863396, 41.578181288535632 ], [ -0.18550827728518, 41.591035293144216 ], [ -0.103264621465144, 41.4754151719726 ], [ -0.069910128349761, 41.372890753605361 ], [ -0.014725800355393, 41.383404670089419 ], [ 0.019112091849536, 41.360311407345534 ], [ 0.10613479988109, 41.35092908261106 ], [ 0.129118199645177, 41.387656379638202 ], [ 0.163791052115357, 41.406530892087005 ], [ 0.182687537699678, 41.394522834761005 ], [ 0.219030312498887, 41.403443733541451 ], [ 0.240651406637085, 41.428481576063859 ], [ 0.338305291056315, 41.405896715361109 ], [ 0.327298210643903, 41.370110785484314 ], [ 0.365073682804223, 41.352566637440361 ], [ 0.377269320722576, 41.321405748176687 ], [ 0.352361280948344, 41.279211940978257 ], [ 0.36037112782526, 41.232832342738391 ], [ 0.313345575338019, 41.206890774189844 ], [ 0.29314008964343, 41.158263251248002 ], [ 0.21371341264387, 41.125758774847554 ], [ 0.216503939705035, 41.070620021796572 ], [ 0.07245074210806, 41.077050898380207 ], [ 0.039645564790987, 41.04864025284536 ], [ 0.021034723673552, 41.054232293985137 ], [ -0.036204047978458, 41.134069944072621 ], [ -0.268597855206849, 41.215028198892242 ], [ -0.313202349109133, 41.255534792496633 ], [ -0.337229449879203, 41.241461305394921 ], [ -0.405861044551557, 41.272354861287795 ], [ -0.493004602580356, 41.354345830995271 ], [ -0.562548062143378, 41.346457647102682 ], [ -0.509297327809463, 41.249964723593109 ], [ -0.516724085747967, 41.227970094244426 ], [ -0.601461637144837, 41.319618046135872 ], [ -0.628927458535372, 41.320398075810544 ], [ -0.625499724033034, 41.248327760517725 ], [ -0.642627410426655, 41.238374146849367 ], [ -0.610052946086626, 41.191704223171314 ], [ -0.69401046960752, 41.112569699032349 ], [ -0.751183322752127, 41.162601438705394 ], [ -0.772518773322759, 41.15185680924435 ], [ -0.801215063324548, 41.093607295840002 ], [ -0.883535622870681, 41.130268674359797 ], [ -0.945685283748844, 41.079369014268593 ], [ -0.989015363668102, 41.092168086487959 ], [ -1.000561994140753, 41.114843868649587 ], [ -1.086497056693815, 41.159250608828529 ], [ -1.15868822108456, 41.122292599723664 ], [ -1.235977042306672, 41.136728635018471 ], [ -1.266508050006507, 41.107900508901366 ], [ -1.254016594490281, 41.07139293963246 ], [ -1.270188469722086, 41.054177362495238 ], [ -1.329207026682923, 41.054649774567395 ], [ -1.369746578641696, 41.073249628667384 ], [ -1.403331785633384, 41.064054071538123 ], [ -1.422667723136897, 41.032479363731625 ], [ -1.458208496025293, 41.01390148186789 ], [ -1.449221679636821, 40.97018688062002 ], [ -1.475116456459318, 40.949016225418461 ], [ -1.621885138088658, 40.946751613795925 ], [ -1.767328457342444, 41.0649872908308 ], [ -1.944862840048017, 41.164412747050619 ], [ -2.05322831913162, 41.15035675715859 ], [ -2.145057338725223, 41.18658193570775 ], [ -2.171877407316515, 41.327761949554315 ], [ -2.127952440252898, 41.376751206802737 ], [ -2.116273566272071, 41.431373195916251 ], [ -2.099711270158991, 41.442612820325394 ], [ -2.052117275092201, 41.434990546176721 ], [ -2.030619880003485, 41.385432848147389 ], [ -1.945948044766453, 41.415534369315651 ], [ -1.975274421377435, 41.491136990479731 ], [ -1.988271043174109, 41.595497544775867 ], [ -1.964551560905818, 41.60867503552447 ], [ -1.923520473690928, 41.602990627715258 ], [ -1.854299893225516, 41.65260000348735 ], [ -1.815878465019182, 41.661669215761663 ], [ -1.788179897284465, 41.705749213355489 ], [ -1.845850795877539, 41.790731106055659 ], [ -1.816033493750751, 41.851683458125081 ], [ -1.851586879630815, 41.906150418506968 ], [ -1.85241370283012, 42.001209214733478 ], [ -1.767716030070744, 41.99061554637035 ], [ -1.704179857414488, 41.955062161389606 ], [ -1.639403448610267, 41.957594306032377 ], [ -1.555946011099536, 41.91160228142013 ], [ -1.49070451520123, 41.922661037776663 ], [ -1.414662645364785, 41.91082713506421 ], [ -1.312446662083801, 42.054280911135095 ], [ -1.350661382916485, 42.072729396744251 ], [ -1.392467617386615, 42.120788478905126 ], [ -1.396627570006387, 42.177968451083132 ], [ -1.417039761275987, 42.211945705829635 ], [ -1.384018520938014, 42.300415758480426 ], [ -1.331024338902125, 42.357983303386732 ], [ -1.349111090204644, 42.379170641012252 ], [ -1.341953904948753, 42.414827378780501 ], [ -1.272681646740637, 42.487639471984039 ], [ -1.284515550352353, 42.516578274068081 ], [ -1.265007696647899, 42.548462632844235 ], [ -1.205347255771244, 42.558100286798776 ], [ -1.154781867389261, 42.601792710764983 ], [ -1.17232601633259, 42.61347158474581 ], [ -1.145015021326174, 42.641376858055537 ], [ -1.075665248752216, 42.645355943521963 ] ], [ [ -1.190386928314126, 42.402838446437158 ], [ -1.1655822413274, 42.41193349893183 ], [ -1.158140835231393, 42.4367381859185 ], [ -1.194521043411441, 42.424335842425137 ], [ -1.190386928314126, 42.402838446437158 ] ], [ [ -1.075458543177263, 42.432604071720505 ], [ -1.067190313881895, 42.445833238413172 ], [ -1.098609584664587, 42.482213447492597 ], [ -1.124241095749994, 42.473118394098606 ], [ -1.13416297144397, 42.446660062511853 ], [ -1.075458543177263, 42.432604071720505 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-LO", "NAME_1": "La Rioja" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.406074998262568, 42.497096258785291 ], [ -2.343262295118848, 42.483040269792582 ], [ -2.278382534426441, 42.489861559163614 ], [ -2.191385260121649, 42.442939358564502 ], [ -2.076508550928907, 42.442577623358602 ], [ -2.055269538258585, 42.428418281578388 ], [ -2.069558071248025, 42.41477570193706 ], [ -2.055605435042821, 42.399066067445006 ], [ -1.976747198824171, 42.393045762851671 ], [ -1.863472459186653, 42.304911606985058 ], [ -1.857271287439971, 42.277574775355561 ], [ -1.82931433818618, 42.277574775355561 ], [ -1.697074347203397, 42.215821438508556 ], [ -1.688186001182999, 42.143061021249082 ], [ -1.823423223902694, 42.145619005212893 ], [ -1.901480475343647, 42.061929022806112 ], [ -1.89060258614046, 42.025316271528709 ], [ -1.844533047162429, 41.982037257813147 ], [ -1.857736375433376, 41.954803778971211 ], [ -1.967884691225549, 41.918449409212826 ], [ -2.105369838647164, 41.957077542094851 ], [ -2.11720374225888, 41.984931139460514 ], [ -2.106661749839873, 42.009219062509715 ], [ -2.149449836240933, 42.050766912762811 ], [ -2.123224045952952, 42.083684801212598 ], [ -2.137874315047611, 42.101564846040787 ], [ -2.256290859235776, 42.089420884965818 ], [ -2.296133388944781, 42.137790025489267 ], [ -2.410467494879015, 42.138565171845187 ], [ -2.508394334331058, 42.110349840172944 ], [ -2.515654873273775, 42.068801988121209 ], [ -2.572938198239285, 42.000149848436706 ], [ -2.664147101107858, 41.999555569234133 ], [ -2.743599615629762, 42.022525743568167 ], [ -2.71256791757537, 42.101254788577592 ], [ -2.725202805964727, 42.117765407847287 ], [ -2.762228970190847, 42.118101305530786 ], [ -2.79504350405449, 42.084950873084324 ], [ -2.801632249428792, 42.047304592133173 ], [ -2.870930345159309, 42.014748439788661 ], [ -2.910178594766364, 42.023430081133313 ], [ -2.934156460352369, 42.082702949281668 ], [ -3.026321376730152, 42.087973945041483 ], [ -3.120449997869116, 42.196287747281701 ], [ -3.087893846423867, 42.269952501206944 ], [ -3.107866787222463, 42.348965766157164 ], [ -3.056035326069434, 42.380281684152351 ], [ -3.049214035799139, 42.452344469421689 ], [ -3.083191291444962, 42.491463527819519 ], [ -3.070013799797039, 42.529135647192334 ], [ -3.11515316368758, 42.540762844329777 ], [ -3.060531174574066, 42.599415594853781 ], [ -3.072106695767388, 42.632075099985855 ], [ -3.01415157723352, 42.640885932539732 ], [ -2.906716274136727, 42.626261501866793 ], [ -2.837314825618705, 42.644115709172638 ], [ -2.836022915325316, 42.621455593201063 ], [ -2.812665168262924, 42.611094468834665 ], [ -2.821036750345741, 42.584274400243373 ], [ -2.779979823809811, 42.585617988279523 ], [ -2.761841395663907, 42.614505113520124 ], [ -2.733987799197564, 42.615719509447786 ], [ -2.689132656147194, 42.589493720059124 ], [ -2.684662645164963, 42.537765610794281 ], [ -2.632081875178415, 42.51252167423587 ], [ -2.595055710952295, 42.517508450054891 ], [ -2.583454352236572, 42.49668284853459 ], [ -2.522036912173746, 42.510351263899679 ], [ -2.524026455356648, 42.525104884882523 ], [ -2.501521369015961, 42.537662258006776 ], [ -2.462040575412232, 42.507250678475998 ], [ -2.406074998262568, 42.497096258785291 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-VI", "NAME_1": "Álava" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.829925096366139, 42.613807481530046 ], [ -2.852456021128489, 42.665406398686343 ], [ -3.031437343758398, 42.772738348995574 ], [ -3.063502569687842, 42.785295722119884 ], [ -3.13631466289138, 42.769896145091025 ], [ -3.129002448004599, 42.786251736528413 ], [ -3.151197475982713, 42.817593492046001 ], [ -3.112543503779705, 42.868262234114809 ], [ -3.114222987700714, 42.886917426198238 ], [ -3.19569088382724, 42.860329902502997 ], [ -3.217394985390285, 42.82973745402029 ], [ -3.2800784982241, 42.880354519245657 ], [ -3.224112921973756, 42.943787340013728 ], [ -3.166054449753062, 42.942857164026861 ], [ -3.141043057191325, 42.916088772279011 ], [ -3.084741584156802, 42.905546779860003 ], [ -2.97906328024618, 42.93360708280062 ], [ -2.983378261597522, 42.950996202113004 ], [ -3.039628057788661, 42.978048813801706 ], [ -2.999320440985571, 42.989469306263459 ], [ -2.987409023008013, 43.008925483124528 ], [ -3.028620978275512, 43.047346910431543 ], [ -3.055260178814194, 43.043135280968443 ], [ -3.084948288832493, 43.010708319833043 ], [ -3.165124273766253, 43.026676336743549 ], [ -3.141844041069646, 43.104139308981928 ], [ -3.170834519997129, 43.122432765859458 ], [ -3.159543218744545, 43.154937242259905 ], [ -3.141844041069646, 43.165117499473013 ], [ -3.104081386946461, 43.145216260721838 ], [ -3.043261071541224, 43.154708448436111 ], [ -3.015377770467751, 43.19984028590045 ], [ -2.984308433087733, 43.201817825831995 ], [ -2.935913655590753, 43.14686420991535 ], [ -2.956787680207299, 43.096019481313988 ], [ -2.948273274991664, 43.083868601754546 ], [ -2.895385089750107, 43.047481881583565 ], [ -2.781863356708527, 43.026706734728009 ], [ -2.63664606586326, 43.022839547407159 ], [ -2.629801583876031, 43.035473825156885 ], [ -2.656849924684309, 43.07576069190236 ], [ -2.546547185404279, 43.088043406677855 ], [ -2.533660222441313, 43.034452096387099 ], [ -2.588921455061097, 43.01011737891389 ], [ -2.602819160675722, 42.982354926038965 ], [ -2.559016668684308, 42.962832220930238 ], [ -2.535187321637579, 42.973379095768621 ], [ -2.354703917152051, 42.950099065419522 ], [ -2.281194392507246, 42.900990176755215 ], [ -2.252957728916044, 42.900069078525121 ], [ -2.242312383709532, 42.839194240821541 ], [ -2.274429287381736, 42.790980129929039 ], [ -2.279416063200756, 42.750930895544343 ], [ -2.320369635150541, 42.728994249085304 ], [ -2.312023892388709, 42.682924710107272 ], [ -2.292696905837545, 42.663080960517902 ], [ -2.348094041306979, 42.638121243000967 ], [ -2.408710495692844, 42.660212918191576 ], [ -2.492736374883805, 42.609337470547814 ], [ -2.488085495848964, 42.589907132108465 ], [ -2.450051642169569, 42.576006170948006 ], [ -2.421319545660538, 42.598795478128807 ], [ -2.400674811293527, 42.590733954408449 ], [ -2.406074998262568, 42.497096258785291 ], [ -2.462040575412232, 42.507250678475998 ], [ -2.501521369015961, 42.537662258006776 ], [ -2.524026455356648, 42.525104884882523 ], [ -2.522036912173746, 42.510351263899679 ], [ -2.583454352236572, 42.49668284853459 ], [ -2.595055710952295, 42.517508450054891 ], [ -2.617870855655497, 42.507715766469403 ], [ -2.684662645164963, 42.537765610794281 ], [ -2.689132656147194, 42.589493720059124 ], [ -2.733987799197564, 42.615719509447786 ], [ -2.761841395663907, 42.614505113520124 ], [ -2.779979823809811, 42.585617988279523 ], [ -2.813001064147784, 42.580812078714416 ], [ -2.826824510043139, 42.59019135204926 ], [ -2.81623084078069, 42.620215358851681 ], [ -2.829925096366139, 42.613807481530046 ] ], [ [ -2.626294114581754, 42.773203436988979 ], [ -2.726132981951594, 42.795062568182971 ], [ -2.81659257598659, 42.793977363464535 ], [ -2.870155198803388, 42.744678046054958 ], [ -2.81413794570966, 42.702923489327532 ], [ -2.75243628570604, 42.681839505388837 ], [ -2.634071418361259, 42.654761054379151 ], [ -2.515267299646155, 42.649309190566669 ], [ -2.525783453643498, 42.689487617059854 ], [ -2.566065232924188, 42.674527288703359 ], [ -2.600791794705572, 42.704370429251867 ], [ -2.556065842864371, 42.756382758457505 ], [ -2.626294114581754, 42.773203436988979 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-AB", "NAME_1": "Albacete" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.022128465256458, 38.654540107040305 ], [ -1.105301682826394, 38.707508449755153 ], [ -1.119926112600012, 38.740064602099665 ], [ -1.174186367406946, 38.754094754469349 ], [ -1.243174403875628, 38.73807505981614 ], [ -1.334202439590911, 38.686734524178917 ], [ -1.385775519224865, 38.696914781392024 ], [ -1.43362789581073, 38.655832018233014 ], [ -1.454272630177741, 38.589686183870242 ], [ -1.501995814655118, 38.534909166025159 ], [ -1.481015184403248, 38.388277289265488 ], [ -1.567314825818585, 38.326213894055968 ], [ -1.654596320064115, 38.314664212183629 ], [ -1.681933152592933, 38.331562405080888 ], [ -1.690873174557396, 38.370216376384633 ], [ -1.750533617232634, 38.380344956754357 ], [ -1.926181810442188, 38.291048081803524 ], [ -1.992792730999724, 38.279524238352906 ], [ -2.042893032287623, 38.298360296690305 ], [ -2.127409836994389, 38.235185859240005 ], [ -2.211926641701154, 38.19593760783431 ], [ -2.324219530307062, 38.062379869035681 ], [ -2.338533900818902, 38.026490587270757 ], [ -2.465838791926728, 38.049383246339744 ], [ -2.547384202419039, 38.080647488390866 ], [ -2.444806483932098, 38.188186144275107 ], [ -2.448863083764309, 38.222266750909796 ], [ -2.430259569423583, 38.258801987821471 ], [ -2.477569341851677, 38.308127142753392 ], [ -2.488731451894978, 38.398741767318711 ], [ -2.571517095837294, 38.427628893458632 ], [ -2.573842535804374, 38.502042955318132 ], [ -2.675205858363654, 38.50023428018784 ], [ -2.756027798444165, 38.533126329316644 ], [ -2.746937818125843, 38.546921407896662 ], [ -2.765482740735933, 38.573673117220551 ], [ -2.750969800815653, 38.605533470393311 ], [ -2.679327952223218, 38.635504174378127 ], [ -2.643842111724098, 38.726097440044782 ], [ -2.681755931091345, 38.777063017744069 ], [ -2.731765698528193, 38.790103789957925 ], [ -2.749211988642344, 38.811252472023966 ], [ -2.762384596072252, 38.880806918604378 ], [ -2.799452469056234, 38.90793216313881 ], [ -2.870610918559066, 38.912128941197636 ], [ -2.882124591576655, 38.931267124977808 ], [ -2.807439529810438, 39.053808633661504 ], [ -2.809801590171276, 39.084504435831036 ], [ -2.842683672113765, 39.134426312524283 ], [ -2.722229565442092, 39.268613329441564 ], [ -2.742125806660681, 39.318018848690883 ], [ -2.662178293593399, 39.321787160049382 ], [ -2.619287667391973, 39.339969533567114 ], [ -2.529364567520759, 39.327620900284273 ], [ -2.511182194003084, 39.342034963342883 ], [ -2.373929991675766, 39.232907762083528 ], [ -2.349210752873944, 39.278885546830509 ], [ -2.321074764788591, 39.283697558295671 ], [ -2.288818904169091, 39.226733444992476 ], [ -2.168364798396738, 39.280950976606277 ], [ -2.048954393630368, 39.266767626524711 ], [ -2.090658496592368, 39.359481253457034 ], [ -2.020807419426887, 39.351988577011184 ], [ -2.029047166293708, 39.337926076027543 ], [ -1.989913863533957, 39.293651171963973 ], [ -1.886971965483838, 39.304637500520187 ], [ -1.76995658033195, 39.280610400649437 ], [ -1.739414586513988, 39.321106007236438 ], [ -1.487009649675599, 39.419635525559045 ], [ -1.445746019363298, 39.366899725941551 ], [ -1.406239386438529, 39.370594591467182 ], [ -1.177726203301631, 39.304112861219551 ], [ -1.178578864023393, 39.220552070021995 ], [ -1.254982469065681, 39.096063544397055 ], [ -1.255809292265042, 39.047280991824266 ], [ -1.134395513642062, 38.937985338552494 ], [ -0.981304083616578, 38.949535020424833 ], [ -0.926527064872175, 38.895533148935669 ], [ -0.912574428666971, 38.81980133746174 ], [ -0.953683031146966, 38.762647202806136 ], [ -0.903479377071619, 38.685080877780251 ], [ -0.957145351776546, 38.658829250869189 ], [ -1.022128465256458, 38.654540107040305 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-TE", "NAME_1": "Teruel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.145480109319578, 39.972289129739522 ], [ -1.162714199001073, 40.011459865880056 ], [ -1.084114346100193, 40.039261786402278 ], [ -1.076698778425907, 40.059002184103463 ], [ -1.093002692120535, 40.077011420140877 ], [ -1.151061164341286, 40.110058498900571 ], [ -1.234673630583586, 40.12295176880906 ], [ -1.300819464946358, 40.203205268108604 ], [ -1.320017259389033, 40.187418118351445 ], [ -1.324538947214648, 40.149280910985226 ], [ -1.448536546424464, 40.149797674922752 ], [ -1.444376592905428, 40.196719876421128 ], [ -1.541709154054217, 40.197908433927068 ], [ -1.660099859820662, 40.283019517836465 ], [ -1.719036831184837, 40.289763291942336 ], [ -1.720638799840742, 40.335367742926962 ], [ -1.808256190870509, 40.40203034122726 ], [ -1.699761522376377, 40.493342596883338 ], [ -1.698598802392837, 40.542383530975144 ], [ -1.677799038394937, 40.585274970163709 ], [ -1.595711024644061, 40.569772040347345 ], [ -1.55119177927719, 40.595093492170918 ], [ -1.537058275019376, 40.684131984703299 ], [ -1.556695319033736, 40.735395005974738 ], [ -1.541399094792382, 40.809757391890116 ], [ -1.6088368394486, 40.871872463943021 ], [ -1.621885138088658, 40.946751613795925 ], [ -1.464382813116345, 40.951279409816891 ], [ -1.449221679636821, 40.97018688062002 ], [ -1.458208496025293, 41.01390148186789 ], [ -1.393345212711381, 41.070261347882877 ], [ -1.270188469722086, 41.054177362495238 ], [ -1.254016594490281, 41.07139293963246 ], [ -1.266508050006507, 41.107900508901366 ], [ -1.246875480119343, 41.13387218944996 ], [ -1.15868822108456, 41.122292599723664 ], [ -1.100823229008824, 41.161118284880899 ], [ -0.954287578808703, 41.078995479058108 ], [ -0.883535622870681, 41.130268674359797 ], [ -0.801215063324548, 41.093607295840002 ], [ -0.762191624443915, 41.161261107114399 ], [ -0.69401046960752, 41.112569699032349 ], [ -0.610052946086626, 41.191704223171314 ], [ -0.642627410426655, 41.238374146849367 ], [ -0.625499724033034, 41.248327760517725 ], [ -0.628927458535372, 41.320398075810544 ], [ -0.601461637144837, 41.319618046135872 ], [ -0.532566371141115, 41.232485475124577 ], [ -0.510209192700074, 41.237308472707809 ], [ -0.564382778942104, 41.336284306575465 ], [ -0.550507045563734, 41.352983526268702 ], [ -0.485588830759923, 41.35182996228292 ], [ -0.470845177862657, 41.32223279260927 ], [ -0.440237266436725, 41.314256717973137 ], [ -0.405861044551557, 41.272354861287795 ], [ -0.337229449879203, 41.241461305394921 ], [ -0.313202349109133, 41.255534792496633 ], [ -0.268597855206849, 41.215028198892242 ], [ -0.036204047978458, 41.134069944072621 ], [ 0.021034723673552, 41.054232293985137 ], [ 0.039645564790987, 41.04864025284536 ], [ 0.07245074210806, 41.077050898380207 ], [ 0.216503939705035, 41.070620021796572 ], [ 0.227821079379282, 41.043179837379569 ], [ 0.274226515141549, 41.018891913431048 ], [ 0.285543653916477, 40.959308986920178 ], [ 0.249576856886449, 40.888563951265326 ], [ 0.271280959348758, 40.821384589027559 ], [ 0.227355991385878, 40.771723538210722 ], [ 0.167463005613229, 40.743198147276644 ], [ 0.173044060634879, 40.730899156570786 ], [ 0.03620486835996, 40.696689357827552 ], [ 0.018169793001562, 40.72614492384912 ], [ -0.074486049791403, 40.730847479727402 ], [ -0.18388505675, 40.779423325825803 ], [ -0.223417528096434, 40.745316880769394 ], [ -0.234088710825347, 40.694803168331532 ], [ -0.30449784969602, 40.663254706339615 ], [ -0.345813157751024, 40.673900051546127 ], [ -0.377309942899558, 40.660154120016614 ], [ -0.374596930204177, 40.618192856814858 ], [ -0.294369269326353, 40.605764674899831 ], [ -0.297934942743439, 40.513703111309496 ], [ -0.272174242247502, 40.475720934473543 ], [ -0.339896205945138, 40.44269969323625 ], [ -0.286488612759285, 40.371747952006331 ], [ -0.390926683219845, 40.295576890960717 ], [ -0.4058611722553, 40.251135159060311 ], [ -0.495493943990311, 40.230464586271637 ], [ -0.549960902573616, 40.235063788463037 ], [ -0.57003719705898, 40.153518377970727 ], [ -0.617657029648228, 40.107087103786796 ], [ -0.614349737750217, 40.071740424381062 ], [ -0.683854539055744, 40.044429430273965 ], [ -0.753901942720518, 40.039778551239124 ], [ -0.775089281245357, 40.00138296235383 ], [ -0.824440272800359, 39.981487535021699 ], [ -0.838702969166718, 39.952574571359378 ], [ -0.832501797420036, 39.919424139812179 ], [ -0.79128984215248, 39.877540391875584 ], [ -0.878054571561222, 39.852244778473732 ], [ -0.902394172353183, 39.865396429901296 ], [ -0.904771287365008, 39.934617011266027 ], [ -0.923064744242538, 39.955985216044837 ], [ -1.000269334062523, 39.97921377189806 ], [ -1.145480109319578, 39.972289129739522 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-CU", "NAME_1": "Cuenca" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.162714199001073, 40.011459865880056 ], [ -1.145480109319578, 39.972289129739522 ], [ -1.20661332764297, 39.938570258310733 ], [ -1.202866787072594, 39.863303533930946 ], [ -1.225578578988234, 39.796305039745789 ], [ -1.267048915774865, 39.74346588824011 ], [ -1.265498623063024, 39.693804837423272 ], [ -1.301749640033847, 39.671015530242528 ], [ -1.372029587695351, 39.68357290336678 ], [ -1.427530075952234, 39.645228990425551 ], [ -1.503158534638658, 39.552934881939223 ], [ -1.498352626872247, 39.496090807444773 ], [ -1.518273891726722, 39.446016344578595 ], [ -1.50101613998288, 39.422041627519093 ], [ -1.739414586513988, 39.321106007236438 ], [ -1.76995658033195, 39.280610400649437 ], [ -1.886971965483838, 39.304637500520187 ], [ -1.989913863533957, 39.293651171963973 ], [ -2.029047166293708, 39.337926076027543 ], [ -2.020807419426887, 39.351988577011184 ], [ -2.090658496592368, 39.359481253457034 ], [ -2.048954393630368, 39.266767626524711 ], [ -2.168364798396738, 39.280950976606277 ], [ -2.288818904169091, 39.226733444992476 ], [ -2.321074764788591, 39.283697558295671 ], [ -2.349210752873944, 39.278885546830509 ], [ -2.373929991675766, 39.232907762083528 ], [ -2.511182194003084, 39.342034963342883 ], [ -2.529364567520759, 39.327620900284273 ], [ -2.619287667391973, 39.339969533567114 ], [ -2.662178293593399, 39.321787160049382 ], [ -2.742125806660681, 39.318018848690883 ], [ -2.789147292413645, 39.397636771919451 ], [ -2.830675614787822, 39.355075735556738 ], [ -2.882498125887821, 39.350966848241455 ], [ -2.896560626871462, 39.366743216026578 ], [ -2.869808916648196, 39.390429740839863 ], [ -2.931222493223515, 39.471409967895681 ], [ -2.925388752988567, 39.601817688235712 ], [ -2.908239094358748, 39.642313294822657 ], [ -2.999502524921581, 39.721920231933154 ], [ -3.059553796770331, 39.837562326240345 ], [ -3.12509823289713, 39.878068918945416 ], [ -3.096973231829168, 39.933330151565201 ], [ -3.096643641990511, 39.986844558129803 ], [ -3.142621427636811, 39.985130691328322 ], [ -3.170065275891773, 40.04826912082325 ], [ -3.163548142632692, 40.066185207781075 ], [ -3.09375912138637, 40.072644761946208 ], [ -3.068696051081929, 40.090550646095437 ], [ -3.062236496916796, 40.105330105499945 ], [ -3.086963670437058, 40.154706936375987 ], [ -3.063684656321868, 40.168382650638819 ], [ -3.014279137072549, 40.155341879324226 ], [ -3.019772301350656, 40.193079917204386 ], [ -2.998129234076885, 40.209207847963796 ], [ -2.912765461356969, 40.157572103569692 ], [ -2.866183428422516, 40.197924888822513 ], [ -2.816294510083594, 40.209878013759294 ], [ -2.801012527506145, 40.266534510359349 ], [ -2.815382645192926, 40.325388271951169 ], [ -2.807692215023735, 40.406873871232165 ], [ -2.769943190126128, 40.421309906526915 ], [ -2.722910718255036, 40.397271819638718 ], [ -2.626879219800173, 40.453060396719934 ], [ -2.50738092429026, 40.420793549082987 ], [ -2.50190973314767, 40.443062837679804 ], [ -2.534978581796111, 40.469792574767496 ], [ -2.541372624846758, 40.540456639961917 ], [ -2.488001040515599, 40.513023777825083 ], [ -2.432080628218444, 40.535622655361237 ], [ -2.397858215584165, 40.528690281731087 ], [ -2.390090880789501, 40.550234472143131 ], [ -2.416644837289425, 40.589071143418494 ], [ -2.400374084296573, 40.610791115317681 ], [ -2.320184872134178, 40.572360937607186 ], [ -2.292883846112602, 40.594795020673644 ], [ -2.287039118860264, 40.644200539922963 ], [ -2.194666068784045, 40.62380991439602 ], [ -2.145710988471365, 40.659790140102871 ], [ -1.99355033877714, 40.587511084968583 ], [ -1.929895550938909, 40.592652687171778 ], [ -1.891597209343729, 40.532985936651642 ], [ -1.856429971665875, 40.428846528344593 ], [ -1.762134975948413, 40.378285021436568 ], [ -1.720638799840742, 40.335367742926962 ], [ -1.719036831184837, 40.289763291942336 ], [ -1.660099859820662, 40.283019517836465 ], [ -1.541709154054217, 40.197908433927068 ], [ -1.444376592905428, 40.196719876421128 ], [ -1.45233476383828, 40.130677394845861 ], [ -1.412931483701016, 40.104787503140756 ], [ -1.369549118996645, 40.016343288911628 ], [ -1.242967699199994, 39.997378038465683 ], [ -1.162714199001073, 40.011459865880056 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-TO", "NAME_1": "Toledo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.3861514961946, 39.881028550926885 ], [ -5.357626105260579, 40.105330105499945 ], [ -5.327963832764681, 40.115897936340673 ], [ -5.166785040597176, 40.088819485330987 ], [ -5.021290046298589, 40.155172024369392 ], [ -5.003099941309245, 40.117086492947294 ], [ -4.96617713076995, 40.117861640202534 ], [ -4.826960821684565, 40.217648830728933 ], [ -4.800760870717625, 40.265656236046425 ], [ -4.710792202198377, 40.275836493259533 ], [ -4.694927537176113, 40.269531968725346 ], [ -4.672009039685463, 40.206745104003346 ], [ -4.62547441181465, 40.197598375564553 ], [ -4.571885952374828, 40.212016099763161 ], [ -4.520571255159325, 40.198838609014558 ], [ -4.439749315078814, 40.239172065138689 ], [ -4.365852017156897, 40.309477851221857 ], [ -4.349935675291192, 40.298315742077818 ], [ -4.340995653326729, 40.249274807086636 ], [ -4.296037156589534, 40.220801092995998 ], [ -4.234102951689863, 40.268886013578651 ], [ -4.174675054809939, 40.283665472983159 ], [ -4.132558762876613, 40.251806951729407 ], [ -4.057292039396089, 40.258266506793859 ], [ -3.999026861600385, 40.221576240251238 ], [ -3.793819748682438, 40.1649905463766 ], [ -3.75865393732937, 40.137757065735968 ], [ -3.673336146945644, 40.131943468516226 ], [ -3.614114955640673, 40.106492825483485 ], [ -3.633674486188568, 40.043447577443715 ], [ -3.778601039706246, 39.953737291342918 ], [ -3.873866543306349, 39.92673635469896 ], [ -3.825704108357911, 39.895446275125494 ], [ -3.638712937951709, 39.968310045172416 ], [ -3.632666794936654, 39.991719469078191 ], [ -3.526730108607637, 40.023242091749125 ], [ -3.502054612830136, 40.048666897259466 ], [ -3.371752489086134, 40.057400214548238 ], [ -3.341909349436946, 40.044636134949656 ], [ -3.187267624900983, 40.088354397337525 ], [ -3.169387580072794, 40.08039622730405 ], [ -3.142621427636811, 39.985130691328322 ], [ -3.096643641990511, 39.986844558129803 ], [ -3.096973231829168, 39.933330151565201 ], [ -3.12509823289713, 39.878068918945416 ], [ -3.059553796770331, 39.837562326240345 ], [ -2.999502524921581, 39.721920231933154 ], [ -2.908239094358748, 39.642313294822657 ], [ -2.925388752988567, 39.601817688235712 ], [ -2.931222493223515, 39.471409967895681 ], [ -2.977903403019639, 39.444647271554288 ], [ -3.069518397456079, 39.450129449714325 ], [ -3.143302579550436, 39.495426082547624 ], [ -3.184490325068452, 39.487889460730003 ], [ -3.185171477881397, 39.474156550484395 ], [ -3.294155856907253, 39.470728815982056 ], [ -3.326719334229892, 39.410227104297405 ], [ -3.398756691168387, 39.405008598368113 ], [ -3.470343607371603, 39.372247366422812 ], [ -3.476858500419496, 39.343067678230739 ], [ -3.556135847691223, 39.29914433624208 ], [ -3.678984973078059, 39.295013476690599 ], [ -3.722205190017519, 39.269854785070265 ], [ -3.780377798796394, 39.294376270148746 ], [ -3.841648553138214, 39.259670458424921 ], [ -3.875958857415355, 39.262087450275601 ], [ -3.966914671275049, 39.298452198210384 ], [ -3.972056273478245, 39.352318166849898 ], [ -4.073284304726883, 39.365369925181881 ], [ -4.106177371888236, 39.342309621691641 ], [ -4.145794072838214, 39.36794072628345 ], [ -4.118251347721525, 39.456995904837129 ], [ -4.079810183892903, 39.451854303533253 ], [ -4.060573122351741, 39.473552302296866 ], [ -4.078294070814707, 39.509675350237217 ], [ -4.041522828415793, 39.538887998582254 ], [ -4.041720583038511, 39.57539556785116 ], [ -4.12441467779513, 39.563728087381321 ], [ -4.158724982072272, 39.576768858695857 ], [ -4.19270569561138, 39.498172664237018 ], [ -4.242133187996217, 39.477935847061644 ], [ -4.426780412186304, 39.508807430718321 ], [ -4.476065081438378, 39.486164607810395 ], [ -4.499026508066891, 39.502742977506387 ], [ -4.51224306176789, 39.548533994648096 ], [ -4.538423482158009, 39.548105527947712 ], [ -4.567822897208941, 39.497469539187875 ], [ -4.600243553197458, 39.482890681659626 ], [ -4.618239159109919, 39.454260309265862 ], [ -4.692731289317578, 39.449814561992412 ], [ -4.752960170975143, 39.418162747212989 ], [ -4.76614810015468, 39.434353081929146 ], [ -4.742099027148413, 39.477705134084658 ], [ -4.754030179848939, 39.502182674690687 ], [ -4.862695956053528, 39.556037657212073 ], [ -4.898544345645064, 39.517014218331497 ], [ -4.944369676419456, 39.391911119402607 ], [ -5.196447313093017, 39.587661445519245 ], [ -5.157379929739989, 39.649673162986062 ], [ -5.140585089630179, 39.712356675819933 ], [ -5.165363939094505, 39.747186591288141 ], [ -5.168128627734006, 39.792894395959593 ], [ -5.208746303798875, 39.792739366328647 ], [ -5.260267706589389, 39.752250882372323 ], [ -5.308120083175311, 39.758297024488058 ], [ -5.314347093343713, 39.793436998318782 ], [ -5.289309862360255, 39.861701565274984 ], [ -5.321504278599605, 39.887488105091961 ], [ -5.3861514961946, 39.881028550926885 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-LE", "NAME_1": "León" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.898377650907889, 43.238549710300845 ], [ -4.859413621241629, 43.223408514791117 ], [ -4.831870083137858, 43.188681952110358 ], [ -4.827890997671432, 43.108066718504233 ], [ -4.770452643075032, 43.078636990005066 ], [ -4.726863572795651, 43.015927638749531 ], [ -4.789197417526793, 42.989792670994973 ], [ -4.813433258138389, 42.925720402574484 ], [ -4.847622713317548, 42.902363468499232 ], [ -4.86565127848371, 42.860516542404469 ], [ -4.900335117072018, 42.854594911425977 ], [ -4.903674960830813, 42.779569273702975 ], [ -4.932074620247533, 42.739985532006699 ], [ -4.881021151804703, 42.704763362838889 ], [ -4.914397618055659, 42.544813406113803 ], [ -4.88796451155298, 42.536914235203767 ], [ -4.911310459510105, 42.381468673240647 ], [ -4.972735022203494, 42.374261641261739 ], [ -4.979590491208228, 42.337885908108149 ], [ -4.942511633005495, 42.346455243914363 ], [ -4.954893224642603, 42.296017009777131 ], [ -5.038268472212224, 42.297049724665044 ], [ -5.041707192832689, 42.267540445734937 ], [ -5.093848308552595, 42.309398357947828 ], [ -5.112415203398939, 42.306201336422532 ], [ -5.170368086218218, 42.267902994827352 ], [ -5.229848069133084, 42.269331217161891 ], [ -5.265333910531581, 42.218178871857447 ], [ -5.309224293266539, 42.204094398637551 ], [ -5.3611896274993, 42.224979409372224 ], [ -5.381459403029055, 42.214773109591306 ], [ -5.376295828589605, 42.041386873205624 ], [ -5.421581475304833, 42.030752106724321 ], [ -5.52075506289583, 42.096977695664123 ], [ -5.541695005120403, 42.098010410551979 ], [ -5.553362485590242, 42.063007967343822 ], [ -5.624740662851309, 42.083585360475979 ], [ -5.625125184179922, 42.111194004100014 ], [ -5.679650332496863, 42.140208897822333 ], [ -5.676914736925596, 42.120312657503121 ], [ -5.743129338847893, 42.113468174616514 ], [ -5.755137396173893, 42.136792150337442 ], [ -5.869417185754514, 42.122037510422729 ], [ -5.903584666898894, 42.151074377280679 ], [ -5.955879590970369, 42.125827794017482 ], [ -6.045022661166911, 42.157688147190242 ], [ -6.214717491718886, 42.150470129093151 ], [ -6.311529018949045, 42.20811539520929 ], [ -6.490584201100035, 42.184165199064637 ], [ -6.55780954567399, 42.207137611811333 ], [ -6.705630595975208, 42.217179116223235 ], [ -6.783249680628273, 42.252873440257019 ], [ -6.740616623858102, 42.298193671300851 ], [ -6.735707363304186, 42.341136786433538 ], [ -6.839111904091112, 42.410124823801539 ], [ -6.81304114433334, 42.438908596254691 ], [ -6.821050991210257, 42.485055650497827 ], [ -6.919985521015008, 42.512831733497705 ], [ -6.983134120942907, 42.494822496560971 ], [ -7.071035731913526, 42.503452460162862 ], [ -7.042794561819562, 42.577608141402607 ], [ -7.044344855430722, 42.617088935006336 ], [ -7.014295010206581, 42.641325182111416 ], [ -7.037652757268916, 42.698169257505185 ], [ -6.965693324787139, 42.747029324443758 ], [ -6.928589647094554, 42.750052395501655 ], [ -6.863348151196249, 42.808446764506527 ], [ -6.860480108869922, 42.874463405861491 ], [ -6.82828569173131, 42.914796861086245 ], [ -6.763483446304008, 42.892834378004125 ], [ -6.701109991832652, 42.924512031205268 ], [ -6.562100389221598, 42.916657213059921 ], [ -6.501561449201517, 42.929705511699979 ], [ -6.444846564117654, 42.957714137797211 ], [ -6.480270757889173, 42.987867336708177 ], [ -6.418698289094777, 43.000528063519312 ], [ -6.392756719646911, 43.042205104981576 ], [ -6.364851447236504, 43.051429347786154 ], [ -6.234445969805677, 43.01435150851529 ], [ -6.199745246445957, 43.041042384998036 ], [ -6.122023891789183, 43.027916571992193 ], [ -6.079106615078217, 43.065097764949883 ], [ -5.987794359422139, 43.062333076310381 ], [ -5.954669766296661, 43.01758128514814 ], [ -5.918651292423192, 42.998796901855485 ], [ -5.84483150886706, 42.971692613323398 ], [ -5.789279343766736, 42.972364406891813 ], [ -5.729980638095981, 43.040577297903951 ], [ -5.705175951109254, 43.048793850355878 ], [ -5.540999925406254, 43.021792913711977 ], [ -5.490770432909187, 43.028640042403993 ], [ -5.473381312697427, 43.051119290322958 ], [ -5.398502162844522, 43.056493638870336 ], [ -5.374007534220311, 43.089669907939879 ], [ -5.118131680132933, 43.108583482441759 ], [ -5.062889574294445, 43.178760077315701 ], [ -4.898377650907889, 43.238549710300845 ] ], [ [ -5.319287769914638, 42.244985513570555 ], [ -5.303192798408929, 42.252082681670402 ], [ -5.309224293266539, 42.293171550326747 ], [ -5.348335622890716, 42.278153239080723 ], [ -5.33716252672923, 42.24655655813865 ], [ -5.319287769914638, 42.244985513570555 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-SO", "NAME_1": "Soria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.857736375433376, 41.954803778971211 ], [ -1.851586879630815, 41.906150418506968 ], [ -1.816033493750751, 41.851683458125081 ], [ -1.845850795877539, 41.790731106055659 ], [ -1.788179897284465, 41.705749213355489 ], [ -1.815878465019182, 41.661669215761663 ], [ -1.854299893225516, 41.65260000348735 ], [ -1.923520473690928, 41.602990627715258 ], [ -1.964551560905818, 41.60867503552447 ], [ -1.988271043174109, 41.595497544775867 ], [ -1.975274421377435, 41.491136990479731 ], [ -1.945948044766453, 41.415534369315651 ], [ -2.030619880003485, 41.385432848147389 ], [ -2.045218472254703, 41.43075307919122 ], [ -2.099711270158991, 41.442612820325394 ], [ -2.119580858170082, 41.423673408301113 ], [ -2.127952440252898, 41.376751206802737 ], [ -2.171877407316515, 41.327761949554315 ], [ -2.145057338725223, 41.18658193570775 ], [ -2.05322831913162, 41.15035675715859 ], [ -2.065268927419083, 41.076872870386637 ], [ -2.137099167792371, 41.118317368751548 ], [ -2.177613491069792, 41.090670477860215 ], [ -2.237041387949716, 41.088965156416805 ], [ -2.288356086064539, 41.067519436372891 ], [ -2.364475470266768, 41.080671087800454 ], [ -2.422482265644078, 41.065426541301804 ], [ -2.460386929013566, 41.079740911813587 ], [ -2.522786221007323, 41.152630520282287 ], [ -2.586322393663522, 41.14958161080267 ], [ -2.579501105191866, 41.172370917084152 ], [ -2.610041876831133, 41.191697902735996 ], [ -2.59192928710695, 41.221980291956868 ], [ -2.698124354955041, 41.247973538248175 ], [ -2.728096685813398, 41.272778225234902 ], [ -2.844084438146297, 41.26792064152437 ], [ -2.89715613364865, 41.321405748176687 ], [ -2.959994676113411, 41.291433417318331 ], [ -3.048903978335943, 41.280917263321044 ], [ -3.19879147015024, 41.301200263381418 ], [ -3.343660253018299, 41.388007941713113 ], [ -3.340979588936875, 41.457089975322106 ], [ -3.41471982655878, 41.479600963014036 ], [ -3.437373635584834, 41.524633923616648 ], [ -3.482780131397931, 41.522777233682348 ], [ -3.523550397233066, 41.540662976615067 ], [ -3.541732770750798, 41.577774794970765 ], [ -3.527681256784604, 41.607470840606766 ], [ -3.45970884178962, 41.589431289322533 ], [ -3.393483252849876, 41.690670306689299 ], [ -3.358469824422855, 41.693405902260565 ], [ -3.354349950989445, 41.737340230367295 ], [ -3.279533054007231, 41.767299948233983 ], [ -3.28642148136629, 41.855234522055525 ], [ -3.272095309051281, 41.865396875565352 ], [ -3.194839447082813, 41.826922753382348 ], [ -3.17143856673647, 41.79294203894392 ], [ -3.075352137691027, 41.883194728653791 ], [ -3.016849938174119, 41.886831202997598 ], [ -2.999052085984999, 41.926447903947576 ], [ -2.973750571231903, 41.930820462594227 ], [ -2.932266194229499, 42.01805191136657 ], [ -2.870930345159309, 42.014748439788661 ], [ -2.812846035416214, 42.038054510906932 ], [ -2.785896775615697, 42.101099758047383 ], [ -2.762228970190847, 42.118101305530786 ], [ -2.725202805964727, 42.117765407847287 ], [ -2.71256791757537, 42.101254788577592 ], [ -2.743599615629762, 42.022525743568167 ], [ -2.671846889622259, 42.000459906799222 ], [ -2.572938198239285, 42.000149848436706 ], [ -2.515654873273775, 42.068801988121209 ], [ -2.508394334331058, 42.110349840172944 ], [ -2.410467494879015, 42.138565171845187 ], [ -2.296133388944781, 42.137790025489267 ], [ -2.256290859235776, 42.089420884965818 ], [ -2.17179989295073, 42.105492255563092 ], [ -2.127797409722689, 42.096655585486872 ], [ -2.149449836240933, 42.050766912762811 ], [ -2.106661749839873, 42.009219062509715 ], [ -2.116118536641181, 41.978109850089481 ], [ -2.095215419855776, 41.952736721422525 ], [ -1.967884691225549, 41.918449409212826 ], [ -1.857736375433376, 41.954803778971211 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-BU", "NAME_1": "Burgos" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.837314825618705, 42.644115709172638 ], [ -2.906716274136727, 42.626261501866793 ], [ -3.01415157723352, 42.640885932539732 ], [ -3.072106695767388, 42.632075099985855 ], [ -3.060531174574066, 42.599415594853781 ], [ -3.113887090916535, 42.548410956000794 ], [ -3.110708991127069, 42.536809597285071 ], [ -3.072390915708183, 42.53523346615151 ], [ -3.083191291444962, 42.491463527819519 ], [ -3.049214035799139, 42.452344469421689 ], [ -3.056035326069434, 42.380281684152351 ], [ -3.109417079934303, 42.343462226400618 ], [ -3.087893846423867, 42.269952501206944 ], [ -3.120449997869116, 42.196287747281701 ], [ -3.026321376730152, 42.087973945041483 ], [ -2.934156460352369, 42.082702949281668 ], [ -2.910178594766364, 42.023430081133313 ], [ -2.932266194229499, 42.01805191136657 ], [ -2.973750571231903, 41.930820462594227 ], [ -2.999052085984999, 41.926447903947576 ], [ -3.016849938174119, 41.886831202997598 ], [ -3.075352137691027, 41.883194728653791 ], [ -3.17143856673647, 41.79294203894392 ], [ -3.194839447082813, 41.826922753382348 ], [ -3.272095309051281, 41.865396875565352 ], [ -3.28642148136629, 41.855234522055525 ], [ -3.279533054007231, 41.767299948233983 ], [ -3.354349950989445, 41.737340230367295 ], [ -3.358469824422855, 41.693405902260565 ], [ -3.393483252849876, 41.690670306689299 ], [ -3.45970884178962, 41.589431289322533 ], [ -3.527681256784604, 41.607470840606766 ], [ -3.541732770750798, 41.577774794970765 ], [ -3.572944930364258, 41.565415174670534 ], [ -3.623317245994144, 41.573610976165583 ], [ -3.672766711514555, 41.559240858478802 ], [ -3.72722594132415, 41.514076061760818 ], [ -3.729093617376577, 41.457650278137805 ], [ -3.769918814701555, 41.460067270887805 ], [ -3.786046744561645, 41.50210096368852 ], [ -3.835803826785195, 41.499870738543734 ], [ -3.889010615747338, 41.547100965037487 ], [ -3.980614623166332, 41.583245986113354 ], [ -4.030382691508009, 41.630619034840549 ], [ -4.031382447142221, 41.701074360193559 ], [ -4.055794069240903, 41.74077895098776 ], [ -4.037941285561885, 41.789843894280295 ], [ -4.090104373518045, 41.831031640697631 ], [ -4.088731082673348, 41.870483546278592 ], [ -3.998049926263093, 41.88566665199437 ], [ -3.976088256168111, 41.930128323663212 ], [ -3.901128536053079, 41.950595853815571 ], [ -3.896195674590729, 41.984301909905184 ], [ -3.915125118529431, 41.992915191083171 ], [ -4.024570923509316, 41.957517240428274 ], [ -4.029009400663313, 41.97653457511052 ], [ -3.972671507783843, 42.030763092842449 ], [ -3.978296508177323, 42.04845108205177 ], [ -4.079931032990771, 42.040112459222598 ], [ -4.104177860619757, 42.061623690380998 ], [ -4.120305790479847, 42.12821182751378 ], [ -4.205405891868452, 42.134726720561673 ], [ -4.190991828809842, 42.181056067383565 ], [ -4.238079233070152, 42.214377602144623 ], [ -4.27267518091486, 42.38557755965661 ], [ -4.326980603272204, 42.390741134096061 ], [ -4.330595105379814, 42.43869645877453 ], [ -4.302470104311851, 42.459361742650287 ], [ -4.243934945541298, 42.455274828470522 ], [ -4.26317200708246, 42.536035329566801 ], [ -4.304249889620735, 42.568829519866426 ], [ -4.282628794583218, 42.576047537963461 ], [ -4.293933726860018, 42.605205253919337 ], [ -4.274048472658876, 42.616883721406566 ], [ -4.285045787333218, 42.675968195975429 ], [ -4.266830454561841, 42.70541155639819 ], [ -4.245176401169999, 42.692370784184334 ], [ -4.145881963581758, 42.751631040240284 ], [ -4.103375858708944, 42.738755063395445 ], [ -4.085765754386046, 42.763126533462753 ], [ -4.047163459026422, 42.770102851565298 ], [ -4.00277340307008, 42.823587958217672 ], [ -4.000189581583925, 42.769792792303519 ], [ -3.96520463738409, 42.762506414939082 ], [ -3.815756395141534, 42.810048733162489 ], [ -3.831388516167124, 42.87231883394702 ], [ -3.86208431563864, 42.872008775584504 ], [ -3.885312873290502, 42.851234850008325 ], [ -3.904639858043026, 42.861544298430601 ], [ -3.89815446635555, 42.898570461757402 ], [ -3.834101527963128, 42.921566474513156 ], [ -3.848519253061113, 42.940996812952505 ], [ -3.881333786924756, 42.943864854379513 ], [ -3.946110194829657, 42.904358222354062 ], [ -3.98065589035707, 42.918491725712556 ], [ -3.983627284571526, 42.94032501938409 ], [ -3.951148646592799, 43.000631415407497 ], [ -3.854901291961085, 43.047656968794058 ], [ -3.838287319004564, 43.084657293699138 ], [ -3.766224534634603, 43.093442287831294 ], [ -3.647807990446438, 43.176176255829546 ], [ -3.452005988385679, 43.138865872561951 ], [ -3.362424892594731, 43.157934474896081 ], [ -3.268322108978168, 43.199947414941221 ], [ -3.151507534345228, 43.181447252488681 ], [ -3.141844041069646, 43.165117499473013 ], [ -3.172565679862259, 43.131372788723183 ], [ -3.141844041069646, 43.104139308981928 ], [ -3.165124273766253, 43.026676336743549 ], [ -3.084948288832493, 43.010708319833043 ], [ -3.055260178814194, 43.043135280968443 ], [ -3.028620978275512, 43.047346910431543 ], [ -2.987409023008013, 43.008925483124528 ], [ -2.999320440985571, 42.989469306263459 ], [ -3.039628057788661, 42.978048813801706 ], [ -2.983378261597522, 42.950996202113004 ], [ -2.97906328024618, 42.93360708280062 ], [ -3.084741584156802, 42.905546779860003 ], [ -3.141043057191325, 42.916088772279011 ], [ -3.166054449753062, 42.942857164026861 ], [ -3.224112921973756, 42.943787340013728 ], [ -3.2800784982241, 42.880354519245657 ], [ -3.217394985390285, 42.82973745402029 ], [ -3.19569088382724, 42.860329902502997 ], [ -3.114222987700714, 42.886917426198238 ], [ -3.112543503779705, 42.868262234114809 ], [ -3.151197475982713, 42.817593492046001 ], [ -3.129002448004599, 42.786251736528413 ], [ -3.13631466289138, 42.769896145091025 ], [ -3.063502569687842, 42.785295722119884 ], [ -3.031437343758398, 42.772738348995574 ], [ -2.837314825618705, 42.644115709172638 ] ], [ [ -4.073778689035294, 42.133781896417361 ], [ -4.053981325577695, 42.139483800536937 ], [ -4.054398806160009, 42.157292638844183 ], [ -4.093147586691771, 42.172398840833807 ], [ -4.100047001068276, 42.145207677792087 ], [ -4.073778689035294, 42.133781896417361 ] ] ], [ [ [ -2.752798020911939, 42.796974596100711 ], [ -2.559192266709772, 42.75935415357128 ], [ -2.57128455184062, 42.725247708514928 ], [ -2.600791794705572, 42.704370429251867 ], [ -2.566065232924188, 42.674527288703359 ], [ -2.525783453643498, 42.689487617059854 ], [ -2.515267299646155, 42.649309190566669 ], [ -2.634071418361259, 42.654761054379151 ], [ -2.75243628570604, 42.681839505388837 ], [ -2.81413794570966, 42.702923489327532 ], [ -2.870155198803388, 42.744678046054958 ], [ -2.827082891562213, 42.791832791550064 ], [ -2.752798020911939, 42.796974596100711 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-AV", "NAME_1": "Ávila" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.63937537297511, 40.197081610727707 ], [ -4.68407548729391, 40.217080389948023 ], [ -4.700043504204359, 40.275603950162122 ], [ -4.800760870717625, 40.265656236046425 ], [ -4.826960821684565, 40.217648830728933 ], [ -4.903493617936135, 40.173956406762727 ], [ -4.951656052884516, 40.12277090075645 ], [ -5.003099941309245, 40.117086492947294 ], [ -5.014546271293398, 40.150882880540507 ], [ -5.032322964233401, 40.154810289163493 ], [ -5.141179368832809, 40.094788113080938 ], [ -5.190582038130572, 40.089439602055961 ], [ -5.327963832764681, 40.115897936340673 ], [ -5.3615018379395, 40.164835516745654 ], [ -5.354603034202682, 40.255165921370178 ], [ -5.423591070671364, 40.243125312183395 ], [ -5.486300421926956, 40.201344916134929 ], [ -5.539811367000993, 40.197443345933664 ], [ -5.727732713394005, 40.293974921405493 ], [ -5.675134951616712, 40.358830656709415 ], [ -5.687714297876539, 40.42458383267774 ], [ -5.59050726319964, 40.473582858362192 ], [ -5.549385435289594, 40.426495454101882 ], [ -5.520359555449147, 40.419233490633076 ], [ -5.515382748614968, 40.4557081015476 ], [ -5.467185724841329, 40.468496187648896 ], [ -5.436544854161696, 40.547828466410579 ], [ -5.511834164115385, 40.54827890624648 ], [ -5.517316342275365, 40.582929786480463 ], [ -5.413484550671512, 40.599497169159008 ], [ -5.385546317208764, 40.619723000216254 ], [ -5.36304631653428, 40.674390970766638 ], [ -5.179640547972895, 40.792944442132296 ], [ -5.161513105945119, 40.818542588369723 ], [ -5.162490889343076, 40.868101915970612 ], [ -5.111371502392956, 40.914771839648665 ], [ -5.127499432252989, 40.9542457183652 ], [ -5.097385906034731, 40.985424918725016 ], [ -5.104505047270152, 41.028117791203101 ], [ -5.147153974376408, 41.050244256667099 ], [ -5.151526533023116, 41.08331310621486 ], [ -5.125104412638564, 41.131993527279462 ], [ -4.998607825890474, 41.160788695042243 ], [ -4.856620515824147, 41.097507442414496 ], [ -4.794064361381174, 41.136025509969272 ], [ -4.701515529817868, 41.154998899279747 ], [ -4.713853176982525, 41.090564082666276 ], [ -4.642650781208602, 41.029018669975642 ], [ -4.601836570901014, 40.967649038772095 ], [ -4.563648093184952, 40.946302602982712 ], [ -4.545542623393374, 40.875726427632515 ], [ -4.559780904964782, 40.830638535539947 ], [ -4.487446918340595, 40.824046738765958 ], [ -4.475098285057811, 40.783078719207481 ], [ -4.444578264375423, 40.751427106775509 ], [ -4.419540420953695, 40.633368020617638 ], [ -4.258436899343451, 40.661646830037171 ], [ -4.276278696904342, 40.692661235927289 ], [ -4.261018686563148, 40.698857525254539 ], [ -4.161290859385645, 40.687310086291404 ], [ -4.184364385607921, 40.616358344162222 ], [ -4.242086961044436, 40.602793280685319 ], [ -4.290301072836257, 40.621629339922094 ], [ -4.284461636295475, 40.584138089501209 ], [ -4.318981493401225, 40.544037177373809 ], [ -4.32482092904263, 40.413269964737083 ], [ -4.418794520550705, 40.402495429220664 ], [ -4.469463262619456, 40.320097358006649 ], [ -4.496360845576589, 40.316454169324459 ], [ -4.532146776352647, 40.338416653305899 ], [ -4.529821336385567, 40.296662096578473 ], [ -4.558140020845315, 40.229172675078871 ], [ -4.571885952374828, 40.212016099763161 ], [ -4.63937537297511, 40.197081610727707 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-P", "NAME_1": "Palencia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.085765754386046, 42.763126533462753 ], [ -4.103375858708944, 42.738755063395445 ], [ -4.159131475637082, 42.748752622435575 ], [ -4.218446663182988, 42.704730404484565 ], [ -4.245176401169999, 42.692370784184334 ], [ -4.266830454561841, 42.70541155639819 ], [ -4.282903452932032, 42.686009700387331 ], [ -4.274048472658876, 42.616883721406566 ], [ -4.293933726860018, 42.605205253919337 ], [ -4.282628794583218, 42.576047537963461 ], [ -4.304249889620735, 42.568829519866426 ], [ -4.26317200708246, 42.536035329566801 ], [ -4.243934945541298, 42.455274828470522 ], [ -4.31589539785432, 42.456340501712759 ], [ -4.330759900748831, 42.405561691618743 ], [ -4.317466442422415, 42.382457442756731 ], [ -4.27267518091486, 42.38557755965661 ], [ -4.238079233070152, 42.214377602144623 ], [ -4.190991828809842, 42.181056067383565 ], [ -4.205405891868452, 42.134726720561673 ], [ -4.120305790479847, 42.12821182751378 ], [ -4.104177860619757, 42.061623690380998 ], [ -4.079931032990771, 42.040112459222598 ], [ -3.988524780194439, 42.051538240597324 ], [ -3.970946653964916, 42.039815827738209 ], [ -4.029009400663313, 41.97653457511052 ], [ -4.024570923509316, 41.957517240428274 ], [ -3.915125118529431, 41.992915191083171 ], [ -3.896195674590729, 41.984301909905184 ], [ -3.901128536053079, 41.950595853815571 ], [ -3.976088256168111, 41.930128323663212 ], [ -3.998049926263093, 41.88566665199437 ], [ -4.088731082673348, 41.870483546278592 ], [ -4.090104373518045, 41.831031640697631 ], [ -4.037941285561885, 41.789843894280295 ], [ -4.04102844410744, 41.768222800142098 ], [ -4.099376835272722, 41.77439711633383 ], [ -4.123041386950433, 41.807356102002473 ], [ -4.240133675828474, 41.804345848082392 ], [ -4.312138073513267, 41.771628561508862 ], [ -4.399743057496096, 41.781032859378911 ], [ -4.443457658743966, 41.763256979426046 ], [ -4.493665179904156, 41.780230857468098 ], [ -4.491951313102618, 41.838568261615933 ], [ -4.572250388244811, 41.815925438708007 ], [ -4.660130029677134, 41.897378078735301 ], [ -4.69341860518449, 41.88968764856611 ], [ -4.758589506100861, 41.825868066258238 ], [ -4.789131499918767, 41.817990868483776 ], [ -4.869089999104176, 41.931578519133325 ], [ -4.927767980108229, 41.915099026299004 ], [ -4.94972965020321, 41.933973538747807 ], [ -4.986808509305263, 41.913385159497466 ], [ -5.005045814312894, 41.938016507555744 ], [ -4.94410465070905, 42.018348541951639 ], [ -4.945466955435677, 42.054295809304108 ], [ -4.922066075089276, 42.091869052714571 ], [ -4.927427403252068, 42.150173498508138 ], [ -5.026952553817296, 42.153952795085388 ], [ -5.019086342160961, 42.23027481992699 ], [ -5.002233315015474, 42.289150554654327 ], [ -4.954893224642603, 42.296017009777131 ], [ -4.942511633005495, 42.346455243914363 ], [ -4.979590491208228, 42.337885908108149 ], [ -4.972735022203494, 42.374261641261739 ], [ -4.911310459510105, 42.381468673240647 ], [ -4.888052402296523, 42.517995777383192 ], [ -4.88796451155298, 42.536914235203767 ], [ -4.914397618055659, 42.544813406113803 ], [ -4.881021151804703, 42.704763362838889 ], [ -4.932074620247533, 42.739985532006699 ], [ -4.903674960830813, 42.779569273702975 ], [ -4.900335117072018, 42.854594911425977 ], [ -4.86565127848371, 42.860516542404469 ], [ -4.847622713317548, 42.902363468499232 ], [ -4.813433258138389, 42.925720402574484 ], [ -4.789197417526793, 42.989792670994973 ], [ -4.726863572795651, 43.015927638749531 ], [ -4.552378098670317, 43.023937486525767 ], [ -4.433961553582833, 43.048018703999958 ], [ -4.356550259087214, 42.985412706431248 ], [ -4.239916550708244, 42.950246894178804 ], [ -4.221390549834041, 42.850201321233953 ], [ -4.14116288895616, 42.858831284835901 ], [ -4.135530157990388, 42.839504299184057 ], [ -4.185242885650666, 42.811960761080229 ], [ -4.085765754386046, 42.763126533462753 ] ] ], [ [ [ -4.083007205418198, 42.17448624284583 ], [ -4.059935915809888, 42.165949866293261 ], [ -4.053981325577695, 42.139483800536937 ], [ -4.096838992525477, 42.141120763612321 ], [ -4.102991337380331, 42.160061193669151 ], [ -4.083007205418198, 42.17448624284583 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-CR", "NAME_1": "Ciudad Real" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.742125806660681, 39.318018848690883 ], [ -2.722229565442092, 39.268613329441564 ], [ -2.842683672113765, 39.134426312524283 ], [ -2.809801590171276, 39.084504435831036 ], [ -2.807439529810438, 39.053808633661504 ], [ -2.882124591576655, 38.931267124977808 ], [ -2.870610918559066, 38.912128941197636 ], [ -2.799452469056234, 38.90793216313881 ], [ -2.762384596072252, 38.880806918604378 ], [ -2.749211988642344, 38.811252472023966 ], [ -2.731765698528193, 38.790103789957925 ], [ -2.681755931091345, 38.777063017744069 ], [ -2.650686593711328, 38.742170438414973 ], [ -2.645292306294891, 38.70740969520125 ], [ -2.679327952223218, 38.635504174378127 ], [ -2.750969800815653, 38.605533470393311 ], [ -2.765482740735933, 38.573673117220551 ], [ -2.746937818125843, 38.546921407896662 ], [ -2.756027798444165, 38.533126329316644 ], [ -2.878991867980346, 38.460598456053901 ], [ -2.950796270831233, 38.474473577893264 ], [ -2.992731695611269, 38.451968492451954 ], [ -3.000870733697411, 38.430057685313898 ], [ -3.060608689839171, 38.482612616878725 ], [ -3.137348191665694, 38.452795314751938 ], [ -3.322814906882456, 38.482405911303715 ], [ -3.361882290235542, 38.473259181965659 ], [ -3.39593705934783, 38.426440335053371 ], [ -3.457328660089615, 38.404839586277888 ], [ -3.51908199693662, 38.413340359569929 ], [ -3.553601854042313, 38.450159817321662 ], [ -3.576752896429014, 38.443493557581576 ], [ -3.588741827873093, 38.407681790182437 ], [ -3.607061123172286, 38.401687324010766 ], [ -3.778368495709515, 38.427344671719197 ], [ -3.893736131317439, 38.381611030424665 ], [ -4.256065435671303, 38.402772528729201 ], [ -4.274849818963958, 38.387993069324693 ], [ -4.275495775010029, 38.350915229154452 ], [ -4.301799078764475, 38.350114244376869 ], [ -4.460058152661645, 38.400912176755526 ], [ -4.543050503078291, 38.472923285181423 ], [ -4.610488246835132, 38.49697866513327 ], [ -4.727974615935807, 38.579764309075586 ], [ -4.849285040871962, 38.614852606962245 ], [ -4.873495448656058, 38.680688381163861 ], [ -4.94597164597468, 38.683737291542741 ], [ -5.036586269640623, 38.728411567439878 ], [ -4.981370002223855, 38.749598904166078 ], [ -4.919745855686699, 38.877162176792979 ], [ -4.845719366555556, 38.892044989884369 ], [ -4.840060798067384, 38.93963898405184 ], [ -4.920624354830125, 38.96413361357537 ], [ -4.954136521583223, 39.045575670380856 ], [ -4.928582525762977, 39.051518459709143 ], [ -4.877293666969138, 39.032604885207263 ], [ -4.834712287042407, 39.047591051086101 ], [ -4.867397629696882, 39.106140448822657 ], [ -4.847037116169986, 39.165490831336797 ], [ -4.806781175311016, 39.198796292514885 ], [ -4.727328659889736, 39.196496690070148 ], [ -4.658392300264438, 39.173939927785398 ], [ -4.715675625229949, 39.232075914371933 ], [ -4.756758389288223, 39.316515203813594 ], [ -4.710947230929946, 39.344136257182527 ], [ -4.68136247369921, 39.400127671854534 ], [ -4.692731289317578, 39.449814561992412 ], [ -4.618239159109919, 39.454260309265862 ], [ -4.600243553197458, 39.482890681659626 ], [ -4.567822897208941, 39.497469539187875 ], [ -4.538423482158009, 39.548105527947712 ], [ -4.51224306176789, 39.548533994648096 ], [ -4.499026508066891, 39.502742977506387 ], [ -4.476065081438378, 39.486164607810395 ], [ -4.426780412186304, 39.508807430718321 ], [ -4.242133187996217, 39.477935847061644 ], [ -4.19270569561138, 39.498172664237018 ], [ -4.158724982072272, 39.576768858695857 ], [ -4.12441467779513, 39.563728087381321 ], [ -4.041720583038511, 39.57539556785116 ], [ -4.041522828415793, 39.538887998582254 ], [ -4.078294070814707, 39.509675350237217 ], [ -4.060573122351741, 39.473552302296866 ], [ -4.079810183892903, 39.451854303533253 ], [ -4.118251347721525, 39.456995904837129 ], [ -4.145794072838214, 39.36794072628345 ], [ -4.106177371888236, 39.342309621691641 ], [ -4.073284304726883, 39.365369925181881 ], [ -3.972056273478245, 39.352318166849898 ], [ -3.966914671275049, 39.298452198210384 ], [ -3.875958857415355, 39.262087450275601 ], [ -3.841648553138214, 39.259670458424921 ], [ -3.780377798796394, 39.294376270148746 ], [ -3.722205190017519, 39.269854785070265 ], [ -3.678984973078059, 39.295013476690599 ], [ -3.556135847691223, 39.29914433624208 ], [ -3.476858500419496, 39.343067678230739 ], [ -3.470343607371603, 39.372247366422812 ], [ -3.398756691168387, 39.405008598368113 ], [ -3.326719334229892, 39.410227104297405 ], [ -3.294155856907253, 39.470728815982056 ], [ -3.185171477881397, 39.474156550484395 ], [ -3.184490325068452, 39.487889460730003 ], [ -3.143302579550436, 39.495426082547624 ], [ -3.069518397456079, 39.450129449714325 ], [ -2.977903403019639, 39.444647271554288 ], [ -2.931222493223515, 39.471409967895681 ], [ -2.869808916648196, 39.390429740839863 ], [ -2.896560626871462, 39.366743216026578 ], [ -2.882498125887821, 39.350966848241455 ], [ -2.830675614787822, 39.355075735556738 ], [ -2.789147292413645, 39.397636771919451 ], [ -2.742125806660681, 39.318018848690883 ] ] ], [ [ [ -4.862695956053528, 39.556037657212073 ], [ -4.774915190583613, 39.519420224064049 ], [ -4.742099027148413, 39.477705134084658 ], [ -4.767016159967795, 39.404649360579526 ], [ -4.880135870873744, 39.366873888419207 ], [ -4.944369676419456, 39.391911119402607 ], [ -4.898544345645064, 39.517014218331497 ], [ -4.862695956053528, 39.556037657212073 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-CO", "NAME_1": "Córdoba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.000873413477279, 37.402113014703843 ], [ -4.076382449390508, 37.403519264802185 ], [ -4.154725957736787, 37.348895238724253 ], [ -4.217216194571733, 37.350400365684322 ], [ -4.263402720059503, 37.260389375968884 ], [ -4.255162973192682, 37.229495820076011 ], [ -4.320300915754672, 37.186572234620883 ], [ -4.326266492104935, 37.20271115149842 ], [ -4.372200331480144, 37.215510223717843 ], [ -4.383505263756945, 37.277550021616207 ], [ -4.444940812568461, 37.277550021616207 ], [ -4.4806244076903, 37.238757294813297 ], [ -4.539313374812423, 37.211313446558279 ], [ -4.596266501997491, 37.221607636183421 ], [ -4.613778709719668, 37.255236787647618 ], [ -4.653230615300686, 37.25592892657869 ], [ -4.691946437478123, 37.354575170607632 ], [ -4.710579250831756, 37.361606421099452 ], [ -4.763445463837115, 37.328823216917897 ], [ -4.822068512451892, 37.358189672715184 ], [ -4.849863923681141, 37.410693336628185 ], [ -4.884877353007425, 37.438148171900593 ], [ -4.908267246336379, 37.494771709246947 ], [ -4.943884923850192, 37.520183086979841 ], [ -4.932283360988322, 37.602492660407904 ], [ -4.955222814481317, 37.618367905054754 ], [ -4.966538732876245, 37.670882555985145 ], [ -5.002112465018229, 37.703995350005357 ], [ -5.052429850057536, 37.708280017908464 ], [ -5.10502140471408, 37.690932605555304 ], [ -5.129422039795315, 37.665554186176735 ], [ -5.191055343229493, 37.669586168866601 ], [ -5.276770678923697, 37.624487290655907 ], [ -5.380108085319875, 37.611765122162637 ], [ -5.414022881250958, 37.673903796023353 ], [ -5.390028739734532, 37.697579333819192 ], [ -5.311080982301519, 37.697919910675296 ], [ -5.309707691456822, 37.773428946588581 ], [ -5.341205495537224, 37.792292472919257 ], [ -5.360112967239672, 37.841796869030247 ], [ -5.404508720401111, 37.866823725434585 ], [ -5.421834160518074, 37.940684812154359 ], [ -5.4785895339798, 37.981290282620421 ], [ -5.496068782448333, 38.042835695311055 ], [ -5.581828063514308, 38.115554203263855 ], [ -5.581049159790894, 38.13508860945177 ], [ -5.533403489679301, 38.167644761796282 ], [ -5.517306280660307, 38.222886868534147 ], [ -5.522939011626079, 38.270739244220749 ], [ -5.56712236200741, 38.336290798481571 ], [ -5.569370285810066, 38.425329291013952 ], [ -5.419637823626658, 38.515840561892389 ], [ -5.362406174605269, 38.583872585751237 ], [ -5.306828171982545, 38.585500392828862 ], [ -5.255771857185493, 38.634386298189099 ], [ -5.180815192067485, 38.666038112968522 ], [ -5.170454066801767, 38.713812975188659 ], [ -5.036586269640623, 38.728411567439878 ], [ -4.94597164597468, 38.683737291542741 ], [ -4.873495448656058, 38.680688381163861 ], [ -4.849285040871962, 38.614852606962245 ], [ -4.727974615935807, 38.579764309075586 ], [ -4.610488246835132, 38.49697866513327 ], [ -4.543050503078291, 38.472923285181423 ], [ -4.460058152661645, 38.400912176755526 ], [ -4.243528451976488, 38.339301770959935 ], [ -4.214557503625883, 38.28927003038757 ], [ -4.209998177374018, 38.23499756728387 ], [ -4.168008429045756, 38.180758063433871 ], [ -4.168349005002597, 38.136834722344531 ], [ -4.193046271568164, 38.127562260589855 ], [ -4.284320689148501, 38.003691406433234 ], [ -4.260996714326893, 37.963536375803073 ], [ -4.283837290958218, 37.820483391595246 ], [ -4.230718392739618, 37.774560538338164 ], [ -4.219808967909557, 37.716069324939383 ], [ -4.171985480245723, 37.697150867118808 ], [ -4.213096322037643, 37.62626707596479 ], [ -4.11013245085195, 37.53781614469932 ], [ -4.086610721407681, 37.486542949397574 ], [ -4.037501832743374, 37.456341532435772 ], [ -4.000873413477279, 37.402113014703843 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-GU", "NAME_1": "Guadalajara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.982827681552294, 40.587214454383513 ], [ -2.145710988471365, 40.659790140102871 ], [ -2.194666068784045, 40.62380991439602 ], [ -2.287039118860264, 40.644200539922963 ], [ -2.292883846112602, 40.594795020673644 ], [ -2.320184872134178, 40.572360937607186 ], [ -2.400374084296573, 40.610791115317681 ], [ -2.416106506709923, 40.580051367776377 ], [ -2.391508117006026, 40.531063329109315 ], [ -2.432080628218444, 40.535622655361237 ], [ -2.488001040515599, 40.513023777825083 ], [ -2.527771550716523, 40.544093114305781 ], [ -2.545360662164853, 40.537248632318494 ], [ -2.528694401725261, 40.498862399979771 ], [ -2.534978581796111, 40.469792574767496 ], [ -2.50190973314767, 40.443062837679804 ], [ -2.50738092429026, 40.420793549082987 ], [ -2.626879219800173, 40.453060396719934 ], [ -2.722910718255036, 40.397271819638718 ], [ -2.769943190126128, 40.421309906526915 ], [ -2.807692215023735, 40.406873871232165 ], [ -2.815382645192926, 40.325388271951169 ], [ -2.801012527506145, 40.266534510359349 ], [ -2.823743241157672, 40.204077232778047 ], [ -2.866183428422516, 40.197924888822513 ], [ -2.912765461356969, 40.157572103569692 ], [ -2.998129234076885, 40.209207847963796 ], [ -3.019772301350656, 40.193079917204386 ], [ -3.014279137072549, 40.155341879324226 ], [ -3.063684656321868, 40.168382650638819 ], [ -3.07275265091414, 40.157600816224658 ], [ -3.103758511446131, 40.269893703931245 ], [ -3.124842495384883, 40.274854641328602 ], [ -3.171092902415523, 40.242505195458364 ], [ -3.185924037764153, 40.249455675139245 ], [ -3.17796586773062, 40.312578437544857 ], [ -3.153057827057069, 40.336246242969708 ], [ -3.138665941280181, 40.394743963862823 ], [ -3.157140265311, 40.425388089188914 ], [ -3.19646603018316, 40.443526516435554 ], [ -3.204527553903517, 40.513031317741081 ], [ -3.248530036232182, 40.541530870253439 ], [ -3.292997605654989, 40.535510566559367 ], [ -3.293075120020774, 40.56853180599802 ], [ -3.325967170048841, 40.597780667343898 ], [ -3.318164027847615, 40.646253159755474 ], [ -3.35547441201453, 40.649715481284431 ], [ -3.389193285241902, 40.686405747826996 ], [ -3.43430680981146, 40.675476183579008 ], [ -3.458801439334991, 40.694958197962421 ], [ -3.43965532083638, 40.723199368056385 ], [ -3.446373257419907, 40.761439928210109 ], [ -3.49843726167029, 40.796218166834933 ], [ -3.469782681325682, 40.863009955445079 ], [ -3.447380946873182, 40.880450750701584 ], [ -3.451644253179722, 40.907038276195465 ], [ -3.409786342765528, 41.012199815269241 ], [ -3.436451381725874, 41.077415472745827 ], [ -3.484045375893402, 41.095011298532597 ], [ -3.545772874318686, 41.161751410299303 ], [ -3.411310797954968, 41.213608709874052 ], [ -3.416891852077299, 41.264096584789513 ], [ -3.339764776623156, 41.253554592370506 ], [ -3.249175991378934, 41.266628730331604 ], [ -3.19879147015024, 41.301200263381418 ], [ -3.083811408169936, 41.280762233690098 ], [ -2.982267217558046, 41.287247626276894 ], [ -2.909713506772903, 41.322129217689223 ], [ -2.879637824026361, 41.314584458805712 ], [ -2.844084438146297, 41.26792064152437 ], [ -2.728096685813398, 41.272778225234902 ], [ -2.698124354955041, 41.247973538248175 ], [ -2.59192928710695, 41.221980291956868 ], [ -2.610041876831133, 41.191697902735996 ], [ -2.579501105191866, 41.172370917084152 ], [ -2.586322393663522, 41.14958161080267 ], [ -2.522786221007323, 41.152630520282287 ], [ -2.460386929013566, 41.079740911813587 ], [ -2.422482265644078, 41.065426541301804 ], [ -2.364475470266768, 41.080671087800454 ], [ -2.288356086064539, 41.067519436372891 ], [ -2.237041387949716, 41.088965156416805 ], [ -2.177613491069792, 41.090670477860215 ], [ -2.137099167792371, 41.118317368751548 ], [ -2.065268927419083, 41.076872870386637 ], [ -2.05322831913162, 41.15035675715859 ], [ -1.944862840048017, 41.164412747050619 ], [ -1.767328457342444, 41.0649872908308 ], [ -1.621885138088658, 40.946751613795925 ], [ -1.6088368394486, 40.871872463943021 ], [ -1.541399094792382, 40.809757391890116 ], [ -1.557005378295571, 40.725163071918189 ], [ -1.537445847747676, 40.662996323921163 ], [ -1.55119177927719, 40.595093492170918 ], [ -1.56989864730474, 40.578143622430218 ], [ -1.595711024644061, 40.569772040347345 ], [ -1.677799038394937, 40.585274970163709 ], [ -1.698598802392837, 40.542383530975144 ], [ -1.699761522376377, 40.493342596883338 ], [ -1.808256190870509, 40.40203034122726 ], [ -1.856429971665875, 40.428846528344593 ], [ -1.891597209343729, 40.532985936651642 ], [ -1.929895550938909, 40.592652687171778 ], [ -1.982827681552294, 40.587214454383513 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-J", "NAME_1": "Jaén" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.547384202419039, 38.080647488390866 ], [ -2.602478584718938, 38.062028810581126 ], [ -2.5983477251674, 38.005745850090875 ], [ -2.670769602535131, 37.961481932145432 ], [ -2.699641674024065, 37.97264404218879 ], [ -2.786279860727007, 37.912449948106598 ], [ -2.88965022637683, 37.774318839242994 ], [ -2.90206477726764, 37.665664050055852 ], [ -2.976189536218158, 37.632727036623407 ], [ -2.983385581179618, 37.601492904773693 ], [ -3.051336023039028, 37.612885727794094 ], [ -3.090798915637436, 37.59602171273184 ], [ -3.223403900969288, 37.639252915789427 ], [ -3.251825532622263, 37.633034654225867 ], [ -3.315106785249952, 37.577817366977854 ], [ -3.399262061594868, 37.5641064289685 ], [ -3.507136822006714, 37.613347152848803 ], [ -3.62716246107874, 37.529422589480873 ], [ -3.791880484796536, 37.466295146104073 ], [ -3.84130797718143, 37.386336646918721 ], [ -3.950786741415016, 37.378437476008685 ], [ -4.000873413477279, 37.402113014703843 ], [ -4.037501832743374, 37.456341532435772 ], [ -4.086610721407681, 37.486542949397574 ], [ -4.11013245085195, 37.53781614469932 ], [ -4.213096322037643, 37.62626707596479 ], [ -4.171985480245723, 37.697150867118808 ], [ -4.219808967909557, 37.716069324939383 ], [ -4.230718392739618, 37.774560538338164 ], [ -4.283837290958218, 37.820483391595246 ], [ -4.260996714326893, 37.963536375803073 ], [ -4.284320689148501, 38.003691406433234 ], [ -4.193046271568164, 38.127562260589855 ], [ -4.168349005002597, 38.136834722344531 ], [ -4.168008429045756, 38.180758063433871 ], [ -4.209998177374018, 38.23499756728387 ], [ -4.214557503625883, 38.28927003038757 ], [ -4.241199349970032, 38.337576917141007 ], [ -4.275495775010029, 38.350915229154452 ], [ -4.274849818963958, 38.387993069324693 ], [ -4.256065435671303, 38.402772528729201 ], [ -3.893736131317439, 38.381611030424665 ], [ -3.778368495709515, 38.427344671719197 ], [ -3.607061123172286, 38.401687324010766 ], [ -3.588741827873093, 38.407681790182437 ], [ -3.576752896429014, 38.443493557581576 ], [ -3.553601854042313, 38.450159817321662 ], [ -3.51908199693662, 38.413340359569929 ], [ -3.457328660089615, 38.404839586277888 ], [ -3.39593705934783, 38.426440335053371 ], [ -3.361882290235542, 38.473259181965659 ], [ -3.322814906882456, 38.482405911303715 ], [ -3.137348191665694, 38.452795314751938 ], [ -3.060608689839171, 38.482612616878725 ], [ -3.000870733697411, 38.430057685313898 ], [ -2.966557583065992, 38.468608302930818 ], [ -2.923459438302473, 38.476333929866939 ], [ -2.878991867980346, 38.460598456053901 ], [ -2.756027798444165, 38.533126329316644 ], [ -2.675205858363654, 38.50023428018784 ], [ -2.598750575578606, 38.509949449407543 ], [ -2.571387904628125, 38.49987254498194 ], [ -2.567408820061019, 38.422797146371181 ], [ -2.488731451894978, 38.398741767318711 ], [ -2.477569341851677, 38.308127142753392 ], [ -2.43062130373022, 38.265623277192446 ], [ -2.448863083764309, 38.222266750909796 ], [ -2.444806483932098, 38.188186144275107 ], [ -2.547384202419039, 38.080647488390866 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-M", "NAME_1": "Madrid" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.276278696904342, 40.692661235927289 ], [ -4.258436899343451, 40.661646830037171 ], [ -4.321926891812609, 40.657878519577991 ], [ -4.318488171192143, 40.6823560592847 ], [ -4.276278696904342, 40.692661235927289 ] ] ], [ [ [ -3.07275265091414, 40.157600816224658 ], [ -3.085671759244292, 40.145663560724699 ], [ -3.063037481694437, 40.098121243400612 ], [ -3.09375912138637, 40.072644761946208 ], [ -3.163548142632692, 40.066185207781075 ], [ -3.187267624900983, 40.088354397337525 ], [ -3.341909349436946, 40.044636134949656 ], [ -3.371752489086134, 40.057400214548238 ], [ -3.502054612830136, 40.048666897259466 ], [ -3.526730108607637, 40.023242091749125 ], [ -3.632666794936654, 39.991719469078191 ], [ -3.638712937951709, 39.968310045172416 ], [ -3.73591630699201, 39.938957831039033 ], [ -3.809710252126422, 39.893534247207697 ], [ -3.873866543306349, 39.92673635469896 ], [ -3.778601039706246, 39.953737291342918 ], [ -3.633674486188568, 40.043447577443715 ], [ -3.614114955640673, 40.106492825483485 ], [ -3.673336146945644, 40.131943468516226 ], [ -3.75865393732937, 40.137757065735968 ], [ -3.793819748682438, 40.1649905463766 ], [ -3.999026861600385, 40.221576240251238 ], [ -4.057292039396089, 40.258266506793859 ], [ -4.132558762876613, 40.251806951729407 ], [ -4.174675054809939, 40.283665472983159 ], [ -4.234102951689863, 40.268886013578651 ], [ -4.296037156589534, 40.220801092995998 ], [ -4.340995653326729, 40.249274807086636 ], [ -4.349935675291192, 40.298315742077818 ], [ -4.365852017156897, 40.309477851221857 ], [ -4.439749315078814, 40.239172065138689 ], [ -4.511243658667922, 40.202817695380304 ], [ -4.571885952374828, 40.212016099763161 ], [ -4.531578334672417, 40.289298203948931 ], [ -4.53762447768753, 40.334075833532893 ], [ -4.469463262619456, 40.320097358006649 ], [ -4.418794520550705, 40.402495429220664 ], [ -4.32482092904263, 40.413269964737083 ], [ -4.318981493401225, 40.544037177373809 ], [ -4.288621588915191, 40.572950141036131 ], [ -4.285960252163932, 40.626771145372061 ], [ -4.242086961044436, 40.602793280685319 ], [ -4.173951585297459, 40.622869575170739 ], [ -4.161290859385645, 40.687310086291404 ], [ -4.090106574159051, 40.76913971582519 ], [ -3.98409237256493, 40.788725083895486 ], [ -3.947893032437491, 40.90827851054479 ], [ -3.902081874978535, 40.958533840564257 ], [ -3.79622270301536, 40.991451728114725 ], [ -3.743021816303781, 41.051758124138075 ], [ -3.623881801703817, 41.139401354488882 ], [ -3.545772874318686, 41.161751410299303 ], [ -3.484045375893402, 41.095011298532597 ], [ -3.436451381725874, 41.077415472745827 ], [ -3.409786342765528, 41.012199815269241 ], [ -3.451644253179722, 40.907038276195465 ], [ -3.447380946873182, 40.880450750701584 ], [ -3.469782681325682, 40.863009955445079 ], [ -3.49843726167029, 40.796218166834933 ], [ -3.446373257419907, 40.761439928210109 ], [ -3.43965532083638, 40.723199368056385 ], [ -3.458801439334991, 40.694958197962421 ], [ -3.43430680981146, 40.675476183579008 ], [ -3.389193285241902, 40.686405747826996 ], [ -3.35547441201453, 40.649715481284431 ], [ -3.318164027847615, 40.646253159755474 ], [ -3.325967170048841, 40.597780667343898 ], [ -3.293075120020774, 40.56853180599802 ], [ -3.292997605654989, 40.535510566559367 ], [ -3.248530036232182, 40.541530870253439 ], [ -3.204527553903517, 40.513031317741081 ], [ -3.19646603018316, 40.443526516435554 ], [ -3.157140265311, 40.425388089188914 ], [ -3.138665941280181, 40.394743963862823 ], [ -3.153057827057069, 40.336246242969708 ], [ -3.17796586773062, 40.312578437544857 ], [ -3.185924037764153, 40.249455675139245 ], [ -3.171092902415523, 40.242505195458364 ], [ -3.124842495384883, 40.274854641328602 ], [ -3.103758511446131, 40.269893703931245 ], [ -3.07275265091414, 40.157600816224658 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-SG", "NAME_1": "Segovia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.161290859385645, 40.687310086291404 ], [ -4.299349987411972, 40.69623179266307 ], [ -4.321926891812609, 40.657878519577991 ], [ -4.419540420953695, 40.633368020617638 ], [ -4.444578264375423, 40.751427106775509 ], [ -4.475098285057811, 40.783078719207481 ], [ -4.487446918340595, 40.824046738765958 ], [ -4.559780904964782, 40.830638535539947 ], [ -4.545542623393374, 40.875726427632515 ], [ -4.563648093184952, 40.946302602982712 ], [ -4.601836570901014, 40.967649038772095 ], [ -4.642650781208602, 41.029018669975642 ], [ -4.713853176982525, 41.090564082666276 ], [ -4.701515529817868, 41.154998899279747 ], [ -4.650495019729362, 41.199943970038191 ], [ -4.650835595686203, 41.221554078058205 ], [ -4.579138815603869, 41.278847781200113 ], [ -4.606989159222337, 41.298018924233929 ], [ -4.596958640928563, 41.320738651767329 ], [ -4.557506735347545, 41.302545292131526 ], [ -4.53416078739042, 41.319376347040759 ], [ -4.471362932953014, 41.291569949693383 ], [ -4.514934711967385, 41.409618049733183 ], [ -4.407532364527015, 41.441873910352683 ], [ -4.252372446131517, 41.4520472508799 ], [ -4.014946899679671, 41.513911267291121 ], [ -3.980614623166332, 41.583245986113354 ], [ -3.889010615747338, 41.547100965037487 ], [ -3.835803826785195, 41.499870738543734 ], [ -3.786046744561645, 41.50210096368852 ], [ -3.769918814701555, 41.460067270887805 ], [ -3.729093617376577, 41.457650278137805 ], [ -3.72722594132415, 41.514076061760818 ], [ -3.672766711514555, 41.559240858478802 ], [ -3.541732770750798, 41.577774794970765 ], [ -3.523550397233066, 41.540662976615067 ], [ -3.482780131397931, 41.522777233682348 ], [ -3.437373635584834, 41.524633923616648 ], [ -3.41471982655878, 41.479600963014036 ], [ -3.340979588936875, 41.457089975322106 ], [ -3.343660253018299, 41.388007941713113 ], [ -3.19879147015024, 41.301200263381418 ], [ -3.249175991378934, 41.266628730331604 ], [ -3.339764776623156, 41.253554592370506 ], [ -3.416891852077299, 41.264096584789513 ], [ -3.411310797954968, 41.213608709874052 ], [ -3.519624600195129, 41.162216498292764 ], [ -3.623881801703817, 41.139401354488882 ], [ -3.743021816303781, 41.051758124138075 ], [ -3.787127651420008, 40.996774399818662 ], [ -3.902081874978535, 40.958533840564257 ], [ -3.947893032437491, 40.90827851054479 ], [ -3.98409237256493, 40.788725083895486 ], [ -4.079642096105886, 40.776451930712028 ], [ -4.161290859385645, 40.687310086291404 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ES-VA", "NAME_1": "Valladolid" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.52075506289583, 42.096977695664123 ], [ -5.421581475304833, 42.030752106724321 ], [ -5.438390557977868, 41.967251128137036 ], [ -5.484741877935335, 41.984411772884982 ], [ -5.471690119603352, 42.006384429997411 ], [ -5.52075506289583, 42.096977695664123 ] ] ], [ [ [ -5.309224293266539, 42.293171550326747 ], [ -5.303192798408929, 42.252082681670402 ], [ -5.33716252672923, 42.24655655813865 ], [ -5.348335622890716, 42.278153239080723 ], [ -5.309224293266539, 42.293171550326747 ] ] ], [ [ [ -3.980614623166332, 41.583245986113354 ], [ -4.014946899679671, 41.513911267291121 ], [ -4.252372446131517, 41.4520472508799 ], [ -4.407532364527015, 41.441873910352683 ], [ -4.514934711967385, 41.409618049733183 ], [ -4.471362932953014, 41.291569949693383 ], [ -4.53416078739042, 41.319376347040759 ], [ -4.557506735347545, 41.302545292131526 ], [ -4.596958640928563, 41.320738651767329 ], [ -4.606989159222337, 41.298018924233929 ], [ -4.579138815603869, 41.278847781200113 ], [ -4.650835595686203, 41.221554078058205 ], [ -4.650495019729362, 41.199943970038191 ], [ -4.701515529817868, 41.154998899279747 ], [ -4.794064361381174, 41.136025509969272 ], [ -4.856620515824147, 41.097507442414496 ], [ -4.998607825890474, 41.160788695042243 ], [ -5.125104412638564, 41.131993527279462 ], [ -5.253084154110411, 41.196757934630966 ], [ -5.325484059241944, 41.177982299043833 ], [ -5.340260671392855, 41.194110228903924 ], [ -5.308268482104779, 41.218181275045765 ], [ -5.294414721861926, 41.252821169161621 ], [ -5.302368824261862, 41.305533572916033 ], [ -5.327890064974554, 41.343546270044328 ], [ -5.321232350592538, 41.411375862805812 ], [ -5.339337819484797, 41.433194710667351 ], [ -5.338623708317471, 41.466010874102551 ], [ -5.319683278260698, 41.492301158371731 ], [ -5.264389086387212, 41.503397350807063 ], [ -5.228727463501627, 41.528358288704055 ], [ -5.289800464120106, 41.563009168937981 ], [ -5.27885808093572, 41.59724256858965 ], [ -5.313992359359929, 41.614238418867899 ], [ -5.326923268593987, 41.670268695044228 ], [ -5.391215262974015, 41.760993795926936 ], [ -5.279594165238564, 41.813332665370183 ], [ -5.307905933911741, 41.871153712074147 ], [ -5.303928882711773, 41.95531997543651 ], [ -5.280549975501003, 41.978929594725003 ], [ -5.376295828589605, 42.041386873205624 ], [ -5.381459403029055, 42.214773109591306 ], [ -5.3611896274993, 42.224979409372224 ], [ -5.309224293266539, 42.204094398637551 ], [ -5.265333910531581, 42.218178871857447 ], [ -5.229848069133084, 42.269331217161891 ], [ -5.170368086218218, 42.267902994827352 ], [ -5.112415203398939, 42.306201336422532 ], [ -5.093848308552595, 42.309398357947828 ], [ -5.041707192832689, 42.267540445734937 ], [ -5.038268472212224, 42.297049724665044 ], [ -5.002233315015474, 42.289150554654327 ], [ -5.026952553817296, 42.153952795085388 ], [ -4.927427403252068, 42.150173498508138 ], [ -4.922066075089276, 42.091869052714571 ], [ -4.945466955435677, 42.054295809304108 ], [ -4.94410465070905, 42.018348541951639 ], [ -5.005045814312894, 41.938016507555744 ], [ -4.986808509305263, 41.913385159497466 ], [ -4.94972965020321, 41.933973538747807 ], [ -4.927767980108229, 41.915099026299004 ], [ -4.869089999104176, 41.931578519133325 ], [ -4.789131499918767, 41.817990868483776 ], [ -4.758589506100861, 41.825868066258238 ], [ -4.69341860518449, 41.88968764856611 ], [ -4.660130029677134, 41.897378078735301 ], [ -4.572250388244811, 41.815925438708007 ], [ -4.491951313102618, 41.838568261615933 ], [ -4.493665179904156, 41.780230857468098 ], [ -4.443457658743966, 41.763256979426046 ], [ -4.399743057496096, 41.781032859378911 ], [ -4.312138073513267, 41.771628561508862 ], [ -4.240133675828474, 41.804345848082392 ], [ -4.123041386950433, 41.807356102002473 ], [ -4.099376835272722, 41.77439711633383 ], [ -4.04102844410744, 41.768222800142098 ], [ -4.055794069240903, 41.74077895098776 ], [ -4.031382447142221, 41.701074360193559 ], [ -4.030382691508009, 41.630619034840549 ], [ -3.980614623166332, 41.583245986113354 ] ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/sweden.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/sweden.geojson new file mode 100644 index 000000000000..78ee965df683 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/sweden.geojson @@ -0,0 +1,27 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "SE-BD", "NAME_1": "Norrbotten" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.931010376000046, 68.350196025000074 ], [ 20.010282023000087, 68.363890279000017 ], [ 20.245926554000107, 68.477371724000037 ], [ 19.96222294100005, 68.541192119000087 ], [ 20.151772095000126, 68.606821187000023 ], [ 20.236624796000086, 68.659066061000019 ], [ 20.352173299000071, 68.785673320000015 ], [ 20.341114543000089, 68.910058493000108 ], [ 20.102266073000095, 69.022144674000046 ], [ 20.62316451, 69.036355693000118 ], [ 20.911208944000066, 68.980700175 ], [ 20.934566691000043, 68.966954245000053 ], [ 20.934256632000142, 68.949022522000078 ], [ 20.887644490000071, 68.927060038000022 ], [ 20.884543905000044, 68.906699525000093 ], [ 20.905731242000087, 68.894607240000099 ], [ 21.072129353000093, 68.869440817000068 ], [ 21.216616658000049, 68.817247620000089 ], [ 21.305396769000083, 68.755804342 ], [ 21.406372518000126, 68.748879700000018 ], [ 21.463630005000084, 68.686867981000049 ], [ 21.716844523000077, 68.619223532 ], [ 21.737101685000084, 68.587907614000059 ], [ 21.919209432000059, 68.568218893000036 ], [ 22.07217167200011, 68.477009990000042 ], [ 22.303061971000147, 68.476131490000014 ], [ 22.371068156000035, 68.468380026 ], [ 22.377992798, 68.454117330000017 ], [ 22.662213175000119, 68.427400615000053 ], [ 22.748616170000105, 68.385491028000061 ], [ 22.808250773000111, 68.394896139000039 ], [ 22.903748820000146, 68.336605124000087 ], [ 23.066942993000112, 68.290251364000099 ], [ 23.155206340000092, 68.217439271000032 ], [ 23.149418579000013, 68.139407857000023 ], [ 23.165644979000035, 68.122044577000096 ], [ 23.306514933000102, 68.145609029000084 ], [ 23.382996053000085, 68.051247864000047 ], [ 23.573682088000083, 67.97331980400007 ], [ 23.64313521300005, 67.963191223000038 ], [ 23.661221964000077, 67.9328571570001 ], [ 23.636107219000053, 67.913478496000025 ], [ 23.532547648000104, 67.893169658000019 ], [ 23.481284627000093, 67.86464426700006 ], [ 23.484591919000081, 67.737158509000025 ], [ 23.553528279000119, 67.587038473000021 ], [ 23.473429810000141, 67.554999085000034 ], [ 23.484695272000096, 67.542958477000056 ], [ 23.431261841000094, 67.48552012200004 ], [ 23.477150513000055, 67.443817241000019 ], [ 23.594559367000073, 67.453609925000066 ], [ 23.765194946000122, 67.420071920000069 ], [ 23.751449015000077, 67.346226299000094 ], [ 23.785658814000072, 67.337518820000028 ], [ 23.73542932100014, 67.289692281000029 ], [ 23.602724243000068, 67.260262553000032 ], [ 23.591458781000114, 67.225019226000072 ], [ 23.614919881000105, 67.213986308000059 ], [ 23.57399214700007, 67.173032736000053 ], [ 23.581330200000082, 67.15313730900003 ], [ 23.666596313000127, 67.097921041000049 ], [ 23.676724894000074, 67.058491923000119 ], [ 23.72033980300003, 67.016866558000018 ], [ 23.816664672000115, 66.975499573000079 ], [ 23.933350057000013, 66.888760682000012 ], [ 24.004043416000115, 66.8051998910001 ], [ 23.939241170000116, 66.79111806300007 ], [ 23.892422322000101, 66.750913798000042 ], [ 23.903171020000116, 66.686318258000099 ], [ 23.881880330000115, 66.631799622000088 ], [ 23.893249146000102, 66.596039531000073 ], [ 23.881880330000115, 66.563535055000031 ], [ 23.6524369710001, 66.458838603000075 ], [ 23.642308390000039, 66.436256002000064 ], [ 23.67703495300006, 66.363624776000037 ], [ 23.662772258000103, 66.316521709000128 ], [ 23.724163859000072, 66.206631775000076 ], [ 23.785555461000058, 66.176685283000026 ], [ 23.889321737000046, 66.161104839000089 ], [ 23.97458785000012, 66.072815654000109 ], [ 24.01964969900007, 66.048941142000032 ], [ 24.055306437000041, 65.985172424999988 ], [ 24.054789673000101, 65.947913717000077 ], [ 24.163413534000114, 65.840788473000075 ], [ 24.163096550000091, 65.822699286000031 ], [ 24.14031009200005, 65.804510809000078 ], [ 24.032725457000083, 65.809719143000052 ], [ 24.053233269000089, 65.796047268000052 ], [ 23.957041863000086, 65.789129950000074 ], [ 23.926442905000044, 65.76040273600006 ], [ 23.885427280000044, 65.773627020000049 ], [ 23.871836785000085, 65.794867255000042 ], [ 23.781748894000089, 65.793036200000074 ], [ 23.739431186000047, 65.829291083000044 ], [ 23.690196160000085, 65.830145575000074 ], [ 23.623301629000082, 65.796210028000075 ], [ 23.607595248000052, 65.809719143000052 ], [ 23.48414147200009, 65.81586334800005 ], [ 23.490570509000065, 65.829779364000046 ], [ 23.47006269600007, 65.833319403000075 ], [ 23.422048373000052, 65.802232164000031 ], [ 23.437836134000065, 65.792303778000075 ], [ 23.428477410000085, 65.765326239000046 ], [ 23.385020379000082, 65.775213934000078 ], [ 23.374278191000087, 65.822699286000045 ], [ 23.289724155000044, 65.795843817000048 ], [ 23.195974155000044, 65.826971747000073 ], [ 23.183767123000052, 65.819647528000075 ], [ 23.19076582100007, 65.789862372000073 ], [ 23.23764082100007, 65.768703518000052 ], [ 23.14820397200009, 65.745591539000031 ], [ 23.128428582000083, 65.733954169000071 ], [ 23.129567905000044, 65.715033270000049 ], [ 23.103037957000083, 65.704657294000071 ], [ 23.078786655000044, 65.707220770000049 ], [ 23.086761915000068, 65.727728583000044 ], [ 23.045909050000091, 65.761216539000031 ], [ 22.944021030000044, 65.775336005000042 ], [ 22.901052280000044, 65.798651434000078 ], [ 22.860199415000068, 65.796047268000052 ], [ 22.785166863000086, 65.864325262000079 ], [ 22.653005405000044, 65.908392645000049 ], [ 22.634287957000083, 65.905218817000048 ], [ 22.682139519000089, 65.871079820000034 ], [ 22.699717644000089, 65.803941148000035 ], [ 22.66374759200005, 65.757513739000046 ], [ 22.64812259200005, 65.755072333000044 ], [ 22.653005405000044, 65.778062242000033 ], [ 22.627940300000091, 65.790350653000075 ], [ 22.569834832000083, 65.796047268000052 ], [ 22.51148522200009, 65.774888414000031 ], [ 22.531993035000085, 65.809719143000052 ], [ 22.518402540000068, 65.822658596000053 ], [ 22.469899936000047, 65.84320709800005 ], [ 22.477305535000085, 65.85687897300005 ], [ 22.405528191000087, 65.86391836100006 ], [ 22.32593834700009, 65.836981512000079 ], [ 22.367442254000082, 65.809719143000052 ], [ 22.364512566000087, 65.797796942000048 ], [ 22.319102410000085, 65.802232164000031 ], [ 22.360606316000087, 65.761216539000031 ], [ 22.326019727000073, 65.735500393000052 ], [ 22.209239129000082, 65.761216539000031 ], [ 22.249847852000073, 65.735744533000059 ], [ 22.361827019000089, 65.71625397300005 ], [ 22.387950066000087, 65.67251211100006 ], [ 22.33961022200009, 65.665025132000039 ], [ 22.32943769600007, 65.689276434000078 ], [ 22.281504754000082, 65.70148346600007 ], [ 22.25757897200009, 65.693019924000055 ], [ 22.268077019000089, 65.681219794000071 ], [ 22.25757897200009, 65.665025132000039 ], [ 22.28492272200009, 65.631537177000041 ], [ 22.18921959700009, 65.624090887000079 ], [ 22.300629102000073, 65.611517645000049 ], [ 22.319102410000085, 65.631537177000041 ], [ 22.28492272200009, 65.665025132000039 ], [ 22.308604363000086, 65.66937897300005 ], [ 22.32593834700009, 65.645209052000041 ], [ 22.380381707000083, 65.634019273000035 ], [ 22.33334394600007, 65.604193427000041 ], [ 22.411387566000087, 65.579006252000056 ], [ 22.428965691000087, 65.548976955000057 ], [ 22.405284050000091, 65.541937567000048 ], [ 22.274912957000083, 65.587876695000034 ], [ 22.250743035000085, 65.583156643000052 ], [ 22.256602410000085, 65.569037177000041 ], [ 22.22828209700009, 65.572088934000078 ], [ 22.051280144000089, 65.617336330000057 ], [ 22.006195509000065, 65.641791083000044 ], [ 21.852793816000087, 65.678290106000077 ], [ 21.764170769000089, 65.727728583000044 ], [ 21.787771030000044, 65.686712958000044 ], [ 21.847911004000082, 65.660956122000073 ], [ 22.202972852000073, 65.548976955000057 ], [ 22.09310957100007, 65.535345770000049 ], [ 22.065928582000083, 65.51430898600006 ], [ 21.853526238000086, 65.535345770000049 ], [ 21.927907748000052, 65.489447333000044 ], [ 21.950368686000047, 65.494940497000073 ], [ 21.921722852000073, 65.508002020000049 ], [ 21.947113477000073, 65.509426174000055 ], [ 22.031586134000065, 65.467027085000041 ], [ 21.997569207000083, 65.42609284100007 ], [ 21.942230665000068, 65.453355210000041 ], [ 21.942230665000068, 65.411810614000046 ], [ 21.927744988000086, 65.404120184000078 ], [ 21.880869988000086, 65.418646552000041 ], [ 21.790212436000047, 65.400091864000046 ], [ 21.705902540000068, 65.414496161000045 ], [ 21.688324415000068, 65.412339585000041 ], [ 21.702647332000083, 65.398138739000046 ], [ 21.656097852000073, 65.397162177000041 ], [ 21.586680535000085, 65.418198960000041 ], [ 21.544444207000083, 65.405585028000075 ], [ 21.599619988000086, 65.391913153000075 ], [ 21.489105665000068, 65.393377997000073 ], [ 21.469981316000087, 65.377630927000041 ], [ 21.489756707000083, 65.370835679000038 ], [ 21.44890384200005, 65.357163804000038 ], [ 21.542979363000086, 65.318589585000041 ], [ 21.604746941000087, 65.333726304000038 ], [ 21.701670769000089, 65.285874742000033 ], [ 21.668142123000052, 65.252752997000073 ], [ 21.62281334700009, 65.240790106000077 ], [ 21.544444207000083, 65.247300523000035 ], [ 21.48959394600007, 65.305487372000073 ], [ 21.345550977000073, 65.372788804000038 ], [ 21.31226647200009, 65.370835679000038 ], [ 21.332774285000085, 65.363999742000033 ], [ 21.264414910000085, 65.336655992000033 ], [ 21.391368035000085, 65.321844794000071 ], [ 21.537608269000089, 65.230902411000045 ], [ 21.61882571700005, 65.148016669000071 ], [ 21.544444207000083, 65.137437242000033 ], [ 21.562836134000065, 65.12250397300005 ], [ 21.543793165000068, 65.083075262000079 ], [ 21.581661846206675, 65.067674361735527 ], [ 21.266226840796037, 65.164498195835051 ], [ 20.114875929180755, 65.311569322166463 ], [ 19.703634881044934, 65.249867662162842 ], [ 19.628549024717699, 65.208474839742053 ], [ 19.423135207124119, 65.159537259337014 ], [ 19.331874627412105, 65.200258287290069 ], [ 19.25084598175664, 65.213849189188693 ], [ 19.23115726089884, 65.261908271349625 ], [ 19.203096957958223, 65.276997789116649 ], [ 18.820432976700488, 65.374666246150298 ], [ 18.719715610187222, 65.437918198865759 ], [ 18.526859164818575, 65.452232571176182 ], [ 18.464227328828144, 65.482101549247091 ], [ 18.303203566291529, 65.509205837779177 ], [ 18.18279747892052, 65.581061917473505 ], [ 17.78059980643593, 65.657077948888173 ], [ 17.472143182361947, 65.755392361068573 ], [ 16.881378208337651, 66.005945543452015 ], [ 16.497939079824675, 66.075605374388488 ], [ 15.863455845211092, 66.276161608271593 ], [ 15.476076321864753, 66.354937142834842 ], [ 15.426272420000089, 66.491213888000075 ], [ 15.669461711000054, 66.599424337000087 ], [ 16.03884484800011, 66.887546285999989 ], [ 16.415566040000073, 67.052704163000058 ], [ 16.437890259000142, 67.200317892000058 ], [ 16.127108195000091, 67.422759095000103 ], [ 16.180748332000093, 67.496398010000107 ], [ 16.428588501000036, 67.534018454000019 ], [ 16.482952107000102, 67.557841289000081 ], [ 16.608732544000077, 67.64729319300001 ], [ 16.782882121000085, 67.896993714000061 ], [ 17.220064738000076, 68.040085755000021 ], [ 17.321453898000101, 68.10530141200006 ], [ 17.921003865000017, 67.972854717000061 ], [ 18.166673625000072, 68.158476462000081 ], [ 18.188584432000113, 68.198732402000033 ], [ 18.135667765000051, 68.39572296200005 ], [ 18.15623498500014, 68.518609518000048 ], [ 18.171841268000065, 68.535921123000051 ], [ 18.436217895000112, 68.573851624000056 ], [ 18.644577270000127, 68.501246236000028 ], [ 19.038144979000066, 68.505638733000026 ], [ 19.931010376000046, 68.350196025000074 ] ] ], [ [ [ 22.408050977000073, 65.455267645000049 ], [ 22.410411004000082, 65.441310940000051 ], [ 22.375661655000044, 65.430731512000079 ], [ 22.285166863000086, 65.431626695000034 ], [ 22.30640709700009, 65.45538971600007 ], [ 22.332530144000089, 65.443019924000055 ], [ 22.37086022200009, 65.459458726000037 ], [ 22.408050977000073, 65.455267645000049 ] ] ], [ [ [ 22.153575066000087, 65.430365302000041 ], [ 22.147308790000068, 65.468654690000051 ], [ 22.174001498000052, 65.474310614000046 ], [ 22.210215691000087, 65.465806382000039 ], [ 22.206553582000083, 65.450181382000039 ], [ 22.233164910000085, 65.423895575000074 ], [ 22.153575066000087, 65.430365302000041 ] ] ], [ [ [ 22.594899936000047, 65.528265692000048 ], [ 22.614268425000091, 65.511908270000049 ], [ 22.552989129000082, 65.530096747000073 ], [ 22.558929884000065, 65.538275458000044 ], [ 22.594899936000047, 65.528265692000048 ] ] ], [ [ [ 22.218760613000086, 65.506781317000048 ], [ 22.186778191000087, 65.537827867000033 ], [ 22.226410352000073, 65.543931382000039 ], [ 22.35873457100007, 65.503973700000074 ], [ 22.332692905000044, 65.49164459800005 ], [ 22.278819207000083, 65.513251044000071 ], [ 22.280121290000068, 65.478216864000046 ], [ 22.218760613000086, 65.506781317000048 ] ] ], [ [ [ 22.577972852000073, 65.582749742000033 ], [ 22.625824415000068, 65.593410549000055 ], [ 22.641449415000068, 65.589097398000035 ], [ 22.59742272200009, 65.553941148000035 ], [ 22.529144727000073, 65.576239325000074 ], [ 22.577972852000073, 65.582749742000033 ] ] ], [ [ [ 22.570160352000073, 65.594794012000079 ], [ 22.55445397200009, 65.605373440000051 ], [ 22.59506269600007, 65.612982489000046 ], [ 22.604502800000091, 65.600287177000041 ], [ 22.570160352000073, 65.594794012000079 ] ] ], [ [ [ 22.96265709700009, 65.716294664000031 ], [ 22.985118035000085, 65.700262762000079 ], [ 22.960948113000086, 65.690130927000041 ], [ 22.971934441000087, 65.667059637000079 ], [ 22.88217207100007, 65.720445054000038 ], [ 22.886241082000083, 65.737372137000079 ], [ 22.930023634000065, 65.741888739000046 ], [ 22.96265709700009, 65.716294664000031 ] ] ], [ [ [ 23.797211134000065, 65.753729559000078 ], [ 23.784678582000083, 65.71820709800005 ], [ 23.738291863000086, 65.69672272300005 ], [ 23.681488477000073, 65.721665757000039 ], [ 23.689626498000052, 65.748439846000053 ], [ 23.70476321700005, 65.735988674000055 ], [ 23.713552280000044, 65.751898505000042 ], [ 23.75367272200009, 65.741278387000079 ], [ 23.797211134000065, 65.753729559000078 ] ] ], [ [ [ 22.741058790000068, 65.713609117000033 ], [ 22.72624759200005, 65.729966539000031 ], [ 22.746836785000085, 65.770412502000056 ], [ 22.79078209700009, 65.75031159100007 ], [ 22.811371290000068, 65.714097398000035 ], [ 22.741058790000068, 65.713609117000033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-AC", "NAME_1": "Västerbotten" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.332849860000096, 65.11504586000008 ], [ 14.380238078000076, 65.240282492000105 ], [ 14.514286743000099, 65.31808136000005 ], [ 14.510359335000118, 65.464739075000082 ], [ 14.560692179000085, 65.701055400000101 ], [ 14.648852172000147, 65.802392884000128 ], [ 14.54053837100011, 66.125448100000099 ], [ 15.053375285000072, 66.153275859000061 ], [ 15.481876261000082, 66.27487050400002 ], [ 15.491798136000085, 66.287996318000083 ], [ 15.476076321864753, 66.354937142834842 ], [ 15.863455845211092, 66.276161608271593 ], [ 16.497939079824675, 66.075605374388488 ], [ 16.881378208337651, 66.005945543452015 ], [ 17.472143182361947, 65.755392361068573 ], [ 17.78059980643593, 65.657077948888173 ], [ 18.18279747892052, 65.581061917473505 ], [ 18.303203566291529, 65.509205837779177 ], [ 18.464227328828144, 65.482101549247091 ], [ 18.526859164818575, 65.452232571176182 ], [ 18.719715610187222, 65.437918198865759 ], [ 18.820432976700488, 65.374666246150298 ], [ 19.203096957958223, 65.276997789116649 ], [ 19.23115726089884, 65.261908271349625 ], [ 19.25084598175664, 65.213849189188693 ], [ 19.331874627412105, 65.200258287290069 ], [ 19.403239779791988, 65.162250271133075 ], [ 19.505507439916414, 65.172792263552083 ], [ 19.628549024717699, 65.208474839742053 ], [ 19.703634881044934, 65.249867662162842 ], [ 20.114875929180755, 65.311569322166463 ], [ 21.266226840796037, 65.164498195835051 ], [ 21.581556431084437, 65.067708237944771 ], [ 21.479258660000085, 65.062323309000078 ], [ 21.467051629000082, 65.055487372000073 ], [ 21.503428582000083, 65.021429755000042 ], [ 21.463145379000082, 65.007717190000051 ], [ 21.422129754000082, 65.014593817000048 ], [ 21.383148634000065, 64.986558335000041 ], [ 21.39421634200005, 64.966782945000034 ], [ 21.377777540000068, 64.960028387000079 ], [ 21.243418816000087, 64.953111070000034 ], [ 21.246836785000085, 64.921779690000051 ], [ 21.202403191000087, 64.898504950000074 ], [ 21.21257571700005, 64.871975002000056 ], [ 21.172699415000068, 64.853420315000051 ], [ 21.18132571700005, 64.835842190000051 ], [ 21.11304772200009, 64.822739976000037 ], [ 21.069102410000085, 64.860744533000059 ], [ 21.037364129000082, 64.832709052000041 ], [ 21.085215691000087, 64.809149481000077 ], [ 21.078949415000068, 64.794867255000042 ], [ 21.097178582000083, 64.785305080000057 ], [ 21.217539910000085, 64.789252020000049 ], [ 21.305837436000047, 64.768296617000033 ], [ 21.31226647200009, 64.753851630000042 ], [ 21.299489780000044, 64.748846747000073 ], [ 21.229177280000044, 64.747707424000055 ], [ 21.31226647200009, 64.699286200000074 ], [ 21.28874759200005, 64.686835028000075 ], [ 21.304942254000082, 64.665716864000046 ], [ 21.14389082100007, 64.732977606000077 ], [ 21.119883660000085, 64.729681708000044 ], [ 21.111175977000073, 64.699367580000057 ], [ 21.14039147200009, 64.671942450000074 ], [ 21.231944207000083, 64.661078192000048 ], [ 21.250254754000082, 64.64398834800005 ], [ 21.231700066000087, 64.642645575000074 ], [ 21.245127800000091, 64.622015692000048 ], [ 21.304942254000082, 64.610500393000052 ], [ 21.35328209700009, 64.569525458000044 ], [ 21.374034050000091, 64.607977606000077 ], [ 21.455577019000089, 64.562486070000034 ], [ 21.467295769000089, 64.58734772300005 ], [ 21.485606316000087, 64.58344147300005 ], [ 21.501231316000087, 64.544175523000035 ], [ 21.551931186000047, 64.534735419000071 ], [ 21.510996941000087, 64.52094147300005 ], [ 21.463145379000082, 64.548407294000071 ], [ 21.386566602000073, 64.521714585000041 ], [ 21.36459394600007, 64.541693427000041 ], [ 21.34734134200005, 64.531968492000033 ], [ 21.399180535000085, 64.505194403000075 ], [ 21.476084832000083, 64.514960028000075 ], [ 21.489756707000083, 64.487005927000041 ], [ 21.479665561000047, 64.460842190000051 ], [ 21.49195397200009, 64.454331773000035 ], [ 21.537608269000089, 64.472723700000074 ], [ 21.578623894000089, 64.465887762000079 ], [ 21.572438998000052, 64.480169989000046 ], [ 21.585948113000086, 64.480169989000046 ], [ 21.606455925000091, 64.452215887000079 ], [ 21.525726759000065, 64.421779690000051 ], [ 21.373220248000052, 64.33038971600007 ], [ 21.318532748000052, 64.364081122000073 ], [ 21.332774285000085, 64.315008856000077 ], [ 21.24390709700009, 64.307074286000045 ], [ 21.117035352000073, 64.221136786000045 ], [ 21.078949415000068, 64.22687409100007 ], [ 20.96656334700009, 64.149400132000039 ], [ 20.948496941000087, 64.130072333000044 ], [ 20.954274936000047, 64.094794012000079 ], [ 20.912364129000082, 64.052923895000049 ], [ 20.896983269000089, 63.983710028000075 ], [ 20.824961785000085, 63.944728908000059 ], [ 20.777191602000073, 63.869370835000041 ], [ 20.674815300000091, 63.842718817000048 ], [ 20.677907748000052, 63.82257721600007 ], [ 20.708994988000086, 63.822211005000042 ], [ 20.674652540000068, 63.789252020000049 ], [ 20.61264082100007, 63.822211005000042 ], [ 20.54265384200005, 63.775336005000042 ], [ 20.53093509200005, 63.781236070000034 ], [ 20.53874759200005, 63.800767320000034 ], [ 20.503428582000083, 63.822007554000038 ], [ 20.455821160000085, 63.772202867000033 ], [ 20.413584832000083, 63.767564195000034 ], [ 20.421071811000047, 63.71234772300005 ], [ 20.39429772200009, 63.68109772300005 ], [ 20.354746941000087, 63.689154364000046 ], [ 20.361664259000065, 63.725490627000056 ], [ 20.325450066000087, 63.753973700000074 ], [ 20.30795332100007, 63.654364325000074 ], [ 20.267588738000086, 63.670599677000041 ], [ 20.284434441000087, 63.732855536000045 ], [ 20.246104363000086, 63.698228257000039 ], [ 20.242849155000044, 63.650864976000037 ], [ 20.119883660000085, 63.642482815000051 ], [ 20.092051629000082, 63.664536851000037 ], [ 20.03451582100007, 63.656805731000077 ], [ 20.01107832100007, 63.634100653000075 ], [ 20.030528191000087, 63.602484442000048 ], [ 19.937754754000082, 63.619859117000033 ], [ 19.886973504000082, 63.603094794000071 ], [ 19.864431186000047, 63.573187567000048 ], [ 19.753184441000087, 63.524318752000056 ], [ 19.76889082100007, 63.460760809000078 ], [ 19.687347852000073, 63.431341864000046 ], [ 19.639496290000068, 63.444891669000071 ], [ 19.637054884000065, 63.478338934000078 ], [ 19.578623894000089, 63.521185614000046 ], [ 19.470225457000083, 63.561468817000048 ], [ 19.420420769000089, 63.548529364000046 ], [ 19.468760613000086, 63.534247137000079 ], [ 19.454600457000083, 63.508937893000052 ], [ 19.467051629000082, 63.500881252000056 ], [ 19.523448113000086, 63.485825914000031 ], [ 19.461436394000089, 63.468939520000049 ], [ 19.511729363000086, 63.433335679000038 ], [ 19.507985873000052, 63.411851304000038 ], [ 19.346202019000089, 63.485907294000071 ], [ 19.372569207000083, 63.444891669000071 ], [ 19.315550363767844, 63.457739733656162 ], [ 19.206042514650335, 63.59420644846881 ], [ 19.047292515237359, 63.715129299777345 ], [ 18.969364455005575, 63.740347398813356 ], [ 18.933862745968952, 63.780810045247335 ], [ 18.854229364293701, 63.785977688219702 ], [ 18.692068719295946, 63.830729479381944 ], [ 18.579569126014349, 63.834476019952319 ], [ 18.505568475304869, 63.859461574991656 ], [ 18.426606886298771, 63.936407783292509 ], [ 18.474562615672141, 63.941523749421492 ], [ 18.476422966746497, 63.957801826493096 ], [ 18.42676191592966, 63.982916571842281 ], [ 17.729853550001337, 63.889485581794133 ], [ 16.90173872186449, 63.959868883142406 ], [ 16.784226515241471, 63.997230943253385 ], [ 16.263018019366086, 64.255561428517069 ], [ 16.193823276423075, 64.274009915025545 ], [ 16.069076369279003, 64.270237535134129 ], [ 16.023446078973336, 64.330078844063394 ], [ 15.985412225293942, 64.353565782334954 ], [ 15.787594841628618, 64.426713772322728 ], [ 15.764908888134642, 64.445368964406157 ], [ 15.744600050551867, 64.507122301253162 ], [ 15.713232455713239, 64.530480048315553 ], [ 15.673079867641775, 64.527172757316862 ], [ 15.639386833735387, 64.472602444147469 ], [ 15.605538771097372, 64.467848212325123 ], [ 15.557944776929901, 64.526966050842532 ], [ 15.291501092001795, 64.644581611152375 ], [ 15.368912388296053, 64.670109768550958 ], [ 15.269280225601904, 64.722483832063176 ], [ 15.170009799912293, 64.754910794097839 ], [ 15.100453321763382, 64.759096585139275 ], [ 15.043815951944623, 64.831546943136914 ], [ 14.886151157250083, 64.879166774826786 ], [ 14.708487583335284, 65.000425523818819 ], [ 14.332849860000096, 65.11504586000008 ] ] ], [ [ [ 20.83920332100007, 63.767564195000034 ], [ 20.86491946700005, 63.796820380000042 ], [ 20.904633009000065, 63.793524481000077 ], [ 20.920420769000089, 63.77374909100007 ], [ 20.873545769000089, 63.753973700000074 ], [ 20.873220248000052, 63.770697333000044 ], [ 20.83920332100007, 63.767564195000034 ] ] ], [ [ [ 20.87086022200009, 63.66937897300005 ], [ 20.856130405000044, 63.650946356000077 ], [ 20.82593834700009, 63.643622137000079 ], [ 20.86459394600007, 63.676743882000039 ], [ 20.87086022200009, 63.66937897300005 ] ] ], [ [ [ 20.89812259200005, 63.754095770000049 ], [ 20.948496941000087, 63.774603583000044 ], [ 20.923106316000087, 63.703192450000074 ], [ 20.864756707000083, 63.683091539000031 ], [ 20.880869988000086, 63.742377020000049 ], [ 20.89812259200005, 63.754095770000049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-Z", "NAME_1": "Jämtland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.332073666000099, 65.113963805000068 ], [ 14.708487583335284, 65.000425523818819 ], [ 14.886151157250083, 64.879166774826786 ], [ 15.043815951944623, 64.831546943136914 ], [ 15.100453321763382, 64.759096585139275 ], [ 15.170009799912293, 64.754910794097839 ], [ 15.269280225601904, 64.722483832063176 ], [ 15.368912388296053, 64.670109768550958 ], [ 15.291501092001795, 64.644581611152375 ], [ 15.557944776929901, 64.526966050842532 ], [ 15.605538771097372, 64.467848212325123 ], [ 15.639386833735387, 64.472602444147469 ], [ 15.673079867641775, 64.527172757316862 ], [ 15.713232455713239, 64.530480048315553 ], [ 15.744600050551867, 64.507122301253162 ], [ 15.764908888134642, 64.445368964406157 ], [ 15.787594841628618, 64.426713772322728 ], [ 15.985412225293942, 64.353565782334954 ], [ 16.023446078973336, 64.330078844063394 ], [ 16.069076369279003, 64.270237535134129 ], [ 16.193823276423075, 64.274009915025545 ], [ 16.263018019366086, 64.255561428517069 ], [ 16.745004103156816, 64.017462267369694 ], [ 16.630334100438347, 63.852046007317369 ], [ 16.591990186597798, 63.736936754127896 ], [ 16.487397088304988, 63.707274482531318 ], [ 16.104268019053848, 63.695647285393875 ], [ 15.93776655428303, 63.663762925718402 ], [ 15.912341749672009, 63.639655869822491 ], [ 15.989753045066948, 63.561236884074901 ], [ 16.020500523180601, 63.461940619963627 ], [ 16.137340936235205, 63.420160223915161 ], [ 16.181265903298765, 63.377837226406825 ], [ 16.969073113733202, 62.99344208438464 ], [ 16.964887322691766, 62.979308580126826 ], [ 16.65839440337902, 62.922490343154777 ], [ 16.354898715803074, 62.731416734494644 ], [ 15.886090121861628, 62.710487779287575 ], [ 15.609104445413834, 62.653385322374675 ], [ 15.172490268611, 62.603155829877608 ], [ 14.994051548340281, 62.610803941548625 ], [ 14.834371372041176, 62.593078925452005 ], [ 14.831115756986605, 62.549515692695024 ], [ 14.871888461783044, 62.475670070717172 ], [ 14.837782016726692, 62.454534409935036 ], [ 14.85142459456938, 62.425233873544414 ], [ 15.066036818344458, 62.297696438439857 ], [ 15.193729282180641, 62.274131984903136 ], [ 15.358680454239561, 62.281986803048483 ], [ 15.454901971348875, 62.160082098909697 ], [ 15.416713088038591, 62.116906439780337 ], [ 15.125154656861923, 62.000298569823087 ], [ 15.145308464813809, 61.942472643397764 ], [ 15.111822137381694, 61.838267116933878 ], [ 15.006143832571809, 61.857103177069916 ], [ 14.960513543165462, 61.853692532384457 ], [ 14.937517531309027, 61.832918605908901 ], [ 14.863206821337712, 61.84619944944501 ], [ 14.837626987095746, 61.839972439276607 ], [ 14.850184360220055, 61.813359077159646 ], [ 14.838402134350986, 61.796280016209778 ], [ 14.734119092621995, 61.880719306550702 ], [ 14.684147983442642, 61.868678697363976 ], [ 14.569788039086745, 61.774730943378302 ], [ 14.521677280082372, 61.631432196938306 ], [ 14.481628044798413, 61.591486315341172 ], [ 14.382357619108802, 61.582029526741223 ], [ 13.606487664174324, 61.658458971104608 ], [ 13.545664504213505, 61.685614936480079 ], [ 13.494608189416397, 61.752820136240246 ], [ 13.32702151902788, 61.90578237595588 ], [ 13.382108595235479, 62.004406847398059 ], [ 13.285421991032024, 62.04742747689653 ], [ 13.186720005224061, 62.043345037743279 ], [ 13.048640577700496, 62.081172186746983 ], [ 12.975363397402873, 62.130574856044746 ], [ 12.797079704964403, 62.207107652296315 ], [ 12.315149305000119, 62.271760746 ], [ 12.28636071800014, 62.335421041000032 ], [ 12.091230509000127, 62.586310120000107 ], [ 12.156239461000098, 62.73369130500005 ], [ 12.093297567000093, 62.907427471000048 ], [ 12.222695353000063, 63.001478577000015 ], [ 11.992425171000093, 63.288902893000099 ], [ 12.219801472000057, 63.474266256000064 ], [ 12.170295450000111, 63.598134665000018 ], [ 12.293182006000109, 63.656994121000096 ], [ 12.681892131000012, 63.956355693000049 ], [ 12.755272665000064, 63.991392314000066 ], [ 12.982442261000074, 64.058830058000083 ], [ 13.234106486000144, 64.090869446000099 ], [ 13.939438110000111, 64.009530742 ], [ 13.98232954900007, 64.019504293000111 ], [ 14.160509887000075, 64.187245992000086 ], [ 14.115551391000054, 64.441235657 ], [ 14.096947876000087, 64.465316874000038 ], [ 14.060877726000086, 64.476634013000094 ], [ 13.940058228000083, 64.49131012 ], [ 13.642763713000079, 64.584017639000095 ], [ 14.310681600000066, 65.08414215100008 ], [ 14.332073666000099, 65.113963805000068 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-W", "NAME_1": "Dalarna" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.710825598000071, 61.05701155800007 ], [ 12.739149617000066, 61.142444763000086 ], [ 12.839815308000112, 61.226987406000049 ], [ 12.886944214000039, 61.36150116 ], [ 12.613782592000121, 61.547045390000036 ], [ 12.416481975000096, 61.582288717 ], [ 12.161717163000077, 61.724838155000029 ], [ 12.317469929000112, 62.234031881000092 ], [ 12.315149305000119, 62.271760746 ], [ 12.797079704964403, 62.207107652296315 ], [ 12.975363397402873, 62.130574856044746 ], [ 13.048640577700496, 62.081172186746983 ], [ 13.186720005224061, 62.043345037743279 ], [ 13.285421991032024, 62.04742747689653 ], [ 13.382108595235479, 62.004406847398059 ], [ 13.32702151902788, 61.90578237595588 ], [ 13.494608189416397, 61.752820136240246 ], [ 13.545664504213505, 61.685614936480079 ], [ 13.606487664174324, 61.658458971104608 ], [ 14.382357619108802, 61.582029526741223 ], [ 14.481628044798413, 61.591486315341172 ], [ 14.666784701652659, 61.562986761929494 ], [ 14.679962192401263, 61.523531805848108 ], [ 14.712208286383316, 61.492345079062147 ], [ 15.101538527381138, 61.492370917483811 ], [ 15.185512729728657, 61.544150702692718 ], [ 15.450716180307438, 61.34591990787743 ], [ 15.676025425233149, 61.217038886535363 ], [ 15.702535434562662, 61.127845364372035 ], [ 15.766769240108317, 61.081801662916405 ], [ 15.918232863056176, 61.030538642544286 ], [ 16.15594445237457, 60.999403591702389 ], [ 16.261467725754926, 60.889772039847742 ], [ 16.386214633798318, 60.813549302858007 ], [ 16.407040236217938, 60.780579739363475 ], [ 16.395413039080495, 60.749883938093262 ], [ 16.262087843379277, 60.648391425224077 ], [ 16.204830356835487, 60.62472361889985 ], [ 16.202504916868406, 60.579971829536248 ], [ 16.39892703565414, 60.418689684581238 ], [ 16.5971061536261, 60.319548448302214 ], [ 16.659789665560595, 60.254100246828898 ], [ 16.708210482927427, 60.227150987028381 ], [ 16.719372592970785, 60.201622830529175 ], [ 16.553956332918403, 60.175629584237868 ], [ 16.449518263357163, 60.099536038457359 ], [ 16.319965448446681, 60.07762523131936 ], [ 16.177080112257386, 60.097003892915325 ], [ 16.153619012407489, 60.149197089274196 ], [ 16.053521762619255, 60.18149485920037 ], [ 15.815345086206776, 60.178110052936574 ], [ 15.749716016680793, 60.146845811784772 ], [ 15.7545219262459, 60.127699693286161 ], [ 15.708581576678398, 60.077883612838434 ], [ 15.723516065713852, 60.000394802178334 ], [ 15.708736607208664, 59.983780830121191 ], [ 15.662641228909592, 59.964763901932486 ], [ 15.593136426704689, 59.98011180301728 ], [ 15.53479373544252, 59.972670396921274 ], [ 15.454746941717985, 59.883218492339495 ], [ 15.258118117357242, 60.007965400382886 ], [ 14.927440626883424, 60.075506496927289 ], [ 14.862431674981792, 60.097882392058693 ], [ 14.848634066608895, 60.120051580715824 ], [ 14.769155714564533, 60.09845083283966 ], [ 14.75179243277455, 60.059951891166804 ], [ 14.771532829576415, 60.022486477369 ], [ 14.451087274058409, 60.036594143205093 ], [ 14.257404006389777, 60.107132473284992 ], [ 14.143044061134503, 60.238080553075008 ], [ 13.980573357774233, 60.258906155494628 ], [ 13.976077508370281, 60.24335154883488 ], [ 14.017522006735192, 60.212604072519923 ], [ 13.952047966840155, 60.203767402443646 ], [ 13.845284458211154, 60.26148997698084 ], [ 13.668551060283164, 60.406984972178691 ], [ 13.505615268929489, 60.456361803054733 ], [ 13.261237419871009, 60.682601223067934 ], [ 13.204289991689734, 60.705803941398756 ], [ 13.141451450124293, 60.78662588237853 ], [ 12.755996941805392, 61.000928045992509 ], [ 12.710825598000071, 61.05701155800007 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-S", "NAME_1": "Värmland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.682512247000091, 61.040332134000053 ], [ 12.710825598000071, 61.05701155800007 ], [ 12.755996941805392, 61.000928045992509 ], [ 13.098301629416653, 60.816649889181008 ], [ 13.165791050016935, 60.76275137047935 ], [ 13.204289991689734, 60.705803941398756 ], [ 13.261237419871009, 60.682601223067934 ], [ 13.491662631824966, 60.464914252290896 ], [ 13.668551060283164, 60.406984972178691 ], [ 13.845284458211154, 60.26148997698084 ], [ 13.974682245289387, 60.197385361745035 ], [ 14.017522006735192, 60.212604072519923 ], [ 13.971891717328901, 60.257252509095963 ], [ 14.143044061134503, 60.238080553075008 ], [ 14.257404006389777, 60.107132473284992 ], [ 14.451087274058409, 60.036594143205093 ], [ 14.455893181824877, 60.001764227736885 ], [ 14.352385288250446, 59.959441230228549 ], [ 14.418169385608621, 59.925748196322161 ], [ 14.428091261302654, 59.906576240301206 ], [ 14.435532668297981, 59.726793931994337 ], [ 14.482093132791817, 59.58365021428591 ], [ 14.47558190268262, 59.562514553503831 ], [ 14.436462843385527, 59.557036852168949 ], [ 14.429796583645384, 59.528511461234928 ], [ 14.47325646271554, 59.48246775977924 ], [ 14.417239211420451, 59.436475735166994 ], [ 14.32990604033148, 59.300515042035556 ], [ 14.30985558426778, 59.207342434405803 ], [ 14.33223148029856, 59.096444811578749 ], [ 14.312646112228265, 59.016346341010774 ], [ 14.226708205119564, 59.044509995839633 ], [ 13.587832472090895, 59.051331285210608 ], [ 13.516002231717607, 59.017793280935166 ], [ 13.457039421931768, 58.967770494013052 ], [ 13.3859843279144, 58.856433620714995 ], [ 13.38443403520256, 58.826797187540137 ], [ 13.44572228405616, 58.759643662824772 ], [ 13.288212518093246, 58.742202867568267 ], [ 12.928079460698541, 58.815169990402694 ], [ 12.858988071442354, 58.988079332495147 ], [ 12.777235955375033, 59.061485704001996 ], [ 12.756307000167908, 59.13675242838184 ], [ 12.68675052291826, 59.175613105260595 ], [ 12.58499962673136, 59.123109850539151 ], [ 12.548516065763806, 59.148793037568623 ], [ 12.485212437104281, 59.142178452873281 ], [ 12.416327751624408, 59.171504829484263 ], [ 12.476685825390518, 59.191116035076902 ], [ 12.468727655356986, 59.199901028309796 ], [ 12.352817417389872, 59.188532212691428 ], [ 12.256337517862164, 59.214732164557745 ], [ 12.214117873141333, 59.252145901512108 ], [ 12.127508171564841, 59.248683579983208 ], [ 12.108749626693907, 59.240363674743776 ], [ 12.107354363612956, 59.209977931836079 ], [ 12.08223961826377, 59.200004381097301 ], [ 11.96384891069863, 59.245427964928638 ], [ 11.898168166127959, 59.233749090947754 ], [ 11.811088077752572, 59.248716717302614 ], [ 11.783962443000036, 59.360615540000069 ], [ 11.670997762000042, 59.580550436000024 ], [ 11.693735392000121, 59.622304993000071 ], [ 11.828404175000117, 59.659718730000023 ], [ 11.897237183000129, 59.713978984000065 ], [ 11.902094767000051, 59.785137431000109 ], [ 11.842976929000088, 59.83841583300007 ], [ 11.849591512000075, 59.872418925000019 ], [ 11.942195678000132, 59.902029521000074 ], [ 12.143733764000103, 59.898412170000071 ], [ 12.290598185000107, 59.958718567000076 ], [ 12.446764364000046, 60.051116028000067 ], [ 12.510946492000073, 60.117985332000032 ], [ 12.52469242300009, 60.161703593000098 ], [ 12.491722860000039, 60.312288717000044 ], [ 12.577919148000149, 60.375902405000019 ], [ 12.6053076580001, 60.419155579000076 ], [ 12.612645711000113, 60.455380758 ], [ 12.594352254000029, 60.51493784600008 ], [ 12.482524454000043, 60.657332256000089 ], [ 12.377001180000065, 60.75409637500006 ], [ 12.253287801000056, 61.001704 ], [ 12.511773316000102, 61.049117127000031 ], [ 12.682512247000091, 61.040332134000053 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-O", "NAME_1": "Västra Götaland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.547077678000079, 58.88472727500006 ], [ 11.611569865000092, 58.893150533000053 ], [ 11.66438317900014, 58.920073955000063 ], [ 11.745308472000147, 59.092156474000021 ], [ 11.775590861000069, 59.202537333000109 ], [ 11.811088077752572, 59.248716717302614 ], [ 11.898168166127959, 59.233749090947754 ], [ 11.96384891069863, 59.245427964928638 ], [ 12.08223961826377, 59.200004381097301 ], [ 12.107354363612956, 59.209977931836079 ], [ 12.108749626693907, 59.240363674743776 ], [ 12.185850863726387, 59.254936428573274 ], [ 12.233651564368188, 59.244291083366761 ], [ 12.271375359685067, 59.208427639124238 ], [ 12.352817417389872, 59.188532212691428 ], [ 12.468727655356986, 59.199901028309796 ], [ 12.476685825390518, 59.191116035076902 ], [ 12.414467401449429, 59.177163397972436 ], [ 12.485212437104281, 59.142178452873281 ], [ 12.548516065763806, 59.148793037568623 ], [ 12.58499962673136, 59.123109850539151 ], [ 12.68675052291826, 59.175613105260595 ], [ 12.743387891837699, 59.146777655964001 ], [ 12.777235955375033, 59.061485704001996 ], [ 12.858988071442354, 58.988079332495147 ], [ 12.928079460698541, 58.815169990402694 ], [ 13.288212518093246, 58.742202867568267 ], [ 13.404742872785334, 58.746414496132047 ], [ 13.44572228405616, 58.759643662824772 ], [ 13.379783156167719, 58.842868557238091 ], [ 13.421537712895145, 58.921778469400806 ], [ 13.492127719818427, 58.99973236805431 ], [ 13.587832472090895, 59.051331285210608 ], [ 14.226708205119564, 59.044509995839633 ], [ 14.312646112228265, 59.016346341010774 ], [ 14.398325636019251, 58.894389960028604 ], [ 14.399875928731092, 58.859766751034726 ], [ 14.480232781717461, 58.779668281366071 ], [ 14.496407505102241, 58.734606431841314 ], [ 14.589011671951084, 58.709078274442788 ], [ 14.644408807420518, 58.741531073999852 ], [ 14.675156283735475, 58.741944485149816 ], [ 14.746676466645624, 58.672026271795005 ], [ 14.81153038891631, 58.645516262465492 ], [ 14.237095167907682, 58.001524563307896 ], [ 14.250272657756909, 57.953000393153616 ], [ 14.233839551953736, 57.928195706166889 ], [ 14.04950971829885, 57.867527574038263 ], [ 14.018452182722058, 57.828666897159565 ], [ 13.931687453313316, 57.855486965750856 ], [ 13.750613233813681, 57.853084011417991 ], [ 13.766632927567514, 57.780762843730201 ], [ 13.724413282846683, 57.720198066187777 ], [ 13.729994337868391, 57.676815701483406 ], [ 13.694906039981731, 57.63121124870014 ], [ 13.682658726119314, 57.565117092979449 ], [ 13.529024691935945, 57.423575343926927 ], [ 13.315084262628602, 57.317018540872937 ], [ 13.275035028243963, 57.270871487529121 ], [ 13.232195264999461, 57.257461452783787 ], [ 13.116595086294183, 57.156976630267252 ], [ 12.937536248399113, 57.20860138584527 ], [ 12.930714959028137, 57.23268260421878 ], [ 12.951488884604316, 57.275961616135646 ], [ 12.819920688988589, 57.302239081468429 ], [ 12.770259637272432, 57.296192939352636 ], [ 12.674193148894688, 57.346680813368835 ], [ 12.594611444062878, 57.350556546047756 ], [ 12.514823031857418, 57.298053290426992 ], [ 12.446558464901216, 57.295056056891497 ], [ 12.394882033379133, 57.370193590062115 ], [ 12.415500929324423, 57.435926012375546 ], [ 12.336849398680783, 57.490832221429855 ], [ 12.331888462182746, 57.583823961006942 ], [ 12.30191613132439, 57.616431790194952 ], [ 12.069320509034242, 57.572558499075456 ], [ 11.912840095445848, 57.582923907816323 ], [ 11.916840040000068, 57.620917059000078 ], [ 11.897146030000044, 57.627142645000049 ], [ 11.867360873000052, 57.607407945000034 ], [ 11.834971550000091, 57.661932684000078 ], [ 11.844574415000068, 57.683010158000059 ], [ 11.90951582100007, 57.686835028000075 ], [ 11.923675977000073, 57.702826239000046 ], [ 11.845876498000052, 57.693304755000042 ], [ 11.74773196700005, 57.713609117000033 ], [ 11.751800977000073, 57.695990302000041 ], [ 11.705414259000065, 57.698431708000044 ], [ 11.706309441000087, 57.721991278000075 ], [ 11.810394727000073, 57.781398830000057 ], [ 11.751800977000073, 57.784816799000055 ], [ 11.686778191000087, 57.837632554000038 ], [ 11.656260613000086, 57.839422919000071 ], [ 11.703949415000068, 57.860500393000052 ], [ 11.693614129000082, 57.88117096600007 ], [ 11.707286004000082, 57.891424872000073 ], [ 11.759287957000083, 57.902085679000038 ], [ 11.745616082000083, 57.915106512000079 ], [ 11.766123894000089, 57.928778387000079 ], [ 11.736582879000082, 57.938666083000044 ], [ 11.80014082100007, 58.022284247000073 ], [ 11.78296959700009, 58.069159247000073 ], [ 11.800954623000052, 58.086411851000037 ], [ 11.793467644000089, 58.100083726000037 ], [ 11.81812584700009, 58.103176174000055 ], [ 11.828461134000065, 58.121242580000057 ], [ 11.841319207000083, 58.193793036000045 ], [ 11.889659050000091, 58.216782945000034 ], [ 11.851817254000082, 58.226629950000074 ], [ 11.808929884000065, 58.30219147300005 ], [ 11.882823113000086, 58.332831122000073 ], [ 11.870371941000087, 58.345363674000055 ], [ 11.806976759000065, 58.326605536000045 ], [ 11.726735873000052, 58.327093817000048 ], [ 11.725759311000047, 58.312974351000037 ], [ 11.678965691000087, 58.307440497000073 ], [ 11.581065300000091, 58.250921942000048 ], [ 11.525889519000089, 58.257757880000042 ], [ 11.539561394000089, 58.237250067000048 ], [ 11.505869988000086, 58.243068752000056 ], [ 11.50367272200009, 58.280218817000048 ], [ 11.541758660000085, 58.333563544000071 ], [ 11.622080925000091, 58.38812897300005 ], [ 11.607758009000065, 58.394964911000045 ], [ 11.621755405000044, 58.405991929000038 ], [ 11.669932488000086, 58.42218659100007 ], [ 11.652598504000082, 58.437404690000051 ], [ 11.628916863000086, 58.431341864000046 ], [ 11.588633660000085, 58.401109117000033 ], [ 11.553233269000089, 58.46320221600007 ], [ 11.551768425000091, 58.399359442000048 ], [ 11.522471550000091, 58.33624909100007 ], [ 11.39616946700005, 58.264593817000048 ], [ 11.443369988000086, 58.305568752000056 ], [ 11.399180535000085, 58.302964585000041 ], [ 11.383799675000091, 58.318182684000078 ], [ 11.401052280000044, 58.336818752000056 ], [ 11.44857832100007, 58.341742255000042 ], [ 11.422862175000091, 58.363836981000077 ], [ 11.424082879000082, 58.38812897300005 ], [ 11.370616082000083, 58.347479559000078 ], [ 11.345876498000052, 58.34601471600007 ], [ 11.424082879000082, 58.442694403000075 ], [ 11.334157748000052, 58.367621161000045 ], [ 11.25359134200005, 58.365912177000041 ], [ 11.231700066000087, 58.339667059000078 ], [ 11.220876498000052, 58.346258856000077 ], [ 11.208994988000086, 58.418931382000039 ], [ 11.259043816000087, 58.42218659100007 ], [ 11.251475457000083, 58.442328192000048 ], [ 11.293711785000085, 58.470038153000075 ], [ 11.257660352000073, 58.482163804000038 ], [ 11.238536004000082, 58.507879950000074 ], [ 11.25562584700009, 58.555731512000079 ], [ 11.286306186000047, 58.579901434000078 ], [ 11.265798373000052, 58.579901434000078 ], [ 11.252207879000082, 58.607163804000038 ], [ 11.259043816000087, 58.634507554000038 ], [ 11.21062259200005, 58.679185289000031 ], [ 11.218028191000087, 58.707953192000048 ], [ 11.17741946700005, 58.718573309000078 ], [ 11.233409050000091, 58.808172919000071 ], [ 11.231700066000087, 58.843695380000042 ], [ 11.197601759000065, 58.864162502000056 ], [ 11.197601759000065, 58.92251211100006 ], [ 11.108164910000085, 58.953558661000045 ], [ 11.183848504000082, 58.991400458000044 ], [ 11.12281334700009, 58.994086005000042 ], [ 11.11500084700009, 59.008205471000053 ], [ 11.22006269600007, 59.09015534100007 ], [ 11.354665561000047, 59.091620184000078 ], [ 11.393809441000087, 59.019435940000051 ], [ 11.438143758000081, 58.991129049000065 ], [ 11.453233276000077, 58.960484925000046 ], [ 11.45199304200014, 58.896044414000031 ], [ 11.547077678000079, 58.88472727500006 ] ] ], [ [ [ 11.738780144000089, 58.058539130000042 ], [ 11.731944207000083, 57.997707424000055 ], [ 11.710215691000087, 57.992905992000033 ], [ 11.711436394000089, 58.011379299000055 ], [ 11.69507897200009, 58.01508209800005 ], [ 11.650645379000082, 57.95538971600007 ], [ 11.594737175000091, 57.935614325000074 ], [ 11.527842644000089, 57.954291083000044 ], [ 11.515635613000086, 58.000799872000073 ], [ 11.567556186000047, 58.003892320000034 ], [ 11.50562584700009, 58.013006903000075 ], [ 11.497894727000073, 58.028062242000033 ], [ 11.52475019600007, 58.050726630000042 ], [ 11.659678582000083, 58.045477606000077 ], [ 11.738780144000089, 58.058539130000042 ] ] ], [ [ [ 11.806976759000065, 58.230414130000042 ], [ 11.804698113000086, 58.125718492000033 ], [ 11.708181186000047, 58.098211981000077 ], [ 11.628916863000086, 58.100083726000037 ], [ 11.58529707100007, 58.123114325000074 ], [ 11.533946160000085, 58.10687897300005 ], [ 11.516286655000044, 58.086004950000074 ], [ 11.463877800000091, 58.10687897300005 ], [ 11.457692905000044, 58.072170315000051 ], [ 11.447438998000052, 58.103461005000042 ], [ 11.406586134000065, 58.131089585000041 ], [ 11.428965691000087, 58.160956122000073 ], [ 11.527842644000089, 58.212795315000051 ], [ 11.601573113000086, 58.237250067000048 ], [ 11.663096550000091, 58.237250067000048 ], [ 11.669932488000086, 58.285101630000042 ], [ 11.686371290000068, 58.291205145000049 ], [ 11.738780144000089, 58.285101630000042 ], [ 11.749847852000073, 58.262884833000044 ], [ 11.806976759000065, 58.230414130000042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-Y", "NAME_1": "Västernorrland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.315550363767844, 63.457739733656162 ], [ 19.280772332000083, 63.459418036000045 ], [ 19.259287957000083, 63.329046942000048 ], [ 19.233653191000087, 63.325669664000031 ], [ 19.229258660000085, 63.342474677000041 ], [ 19.133067254000082, 63.308294989000046 ], [ 19.153493686000047, 63.294012762000079 ], [ 19.111989780000044, 63.253078518000052 ], [ 19.133067254000082, 63.253078518000052 ], [ 19.116709832000083, 63.23663971600007 ], [ 19.057383660000085, 63.260484117000033 ], [ 19.039886915000068, 63.238959052000041 ], [ 19.05640709700009, 63.226507880000042 ], [ 19.111989780000044, 63.219549872000073 ], [ 19.067881707000083, 63.202134507000039 ], [ 19.052744988000086, 63.178859768000052 ], [ 18.906748894000089, 63.267075914000031 ], [ 18.872894727000073, 63.269191799000055 ], [ 18.879161004000082, 63.253078518000052 ], [ 18.866058790000068, 63.249904690000051 ], [ 18.751149936000047, 63.259466864000046 ], [ 18.735199415000068, 63.253078518000052 ], [ 18.913340691000087, 63.212062893000052 ], [ 18.86264082100007, 63.19204336100006 ], [ 18.79664147200009, 63.191595770000049 ], [ 18.803477410000085, 63.177923895000049 ], [ 18.77312259200005, 63.168768622000073 ], [ 18.752940300000091, 63.20766836100006 ], [ 18.82390384200005, 63.219549872000073 ], [ 18.700450066000087, 63.225775458000044 ], [ 18.75562584700009, 63.157456773000035 ], [ 18.564463738000086, 63.177923895000049 ], [ 18.643077019000089, 63.146918036000045 ], [ 18.654633009000065, 63.113714911000045 ], [ 18.556976759000065, 63.116522528000075 ], [ 18.522959832000083, 63.075506903000075 ], [ 18.556976759000065, 63.075506903000075 ], [ 18.499034050000091, 63.055080471000053 ], [ 18.47820071700005, 63.020249742000033 ], [ 18.403819207000083, 63.055650132000039 ], [ 18.372080925000091, 63.047552802000041 ], [ 18.434092644000089, 63.014105536000045 ], [ 18.368337436000047, 63.020249742000033 ], [ 18.34310957100007, 63.039536851000037 ], [ 18.324229363000086, 63.014105536000045 ], [ 18.241709832000083, 62.999823309000078 ], [ 18.524424675000091, 62.991888739000046 ], [ 18.576670769000089, 62.958400783000059 ], [ 18.543955925000091, 62.973089911000045 ], [ 18.504893425000091, 62.949204820000034 ], [ 18.403330925000091, 62.964829820000034 ], [ 18.392588738000086, 62.945217190000051 ], [ 18.439626498000052, 62.928168036000045 ], [ 18.522959832000083, 62.924750067000048 ], [ 18.512543165000068, 62.904120184000078 ], [ 18.40007571700005, 62.911078192000048 ], [ 18.474457227000073, 62.876898505000042 ], [ 18.377614780000044, 62.836737372000073 ], [ 18.324229363000086, 62.841538804000038 ], [ 18.268321160000085, 62.883490302000041 ], [ 18.248545769000089, 62.883734442000048 ], [ 18.255381707000083, 62.86945221600007 ], [ 18.207041863000086, 62.86945221600007 ], [ 18.220225457000083, 62.852280992000033 ], [ 18.207041863000086, 62.835353908000059 ], [ 18.282725457000083, 62.841538804000038 ], [ 18.243662957000083, 62.799017645000049 ], [ 18.19507897200009, 62.777411200000074 ], [ 18.182871941000087, 62.789984442000048 ], [ 18.20085696700005, 62.808010158000059 ], [ 18.186289910000085, 62.811672268000052 ], [ 18.140472852000073, 62.771918036000045 ], [ 18.008962436000047, 62.79437897300005 ], [ 18.034027540000068, 62.811468817000048 ], [ 18.121429884000065, 62.805812893000052 ], [ 18.14616946700005, 62.822251695000034 ], [ 18.084320509000065, 62.83734772300005 ], [ 18.077321811000047, 62.85578034100007 ], [ 17.967784050000091, 62.807806708000044 ], [ 17.93531334700009, 62.81704336100006 ], [ 17.912771030000044, 62.883734442000048 ], [ 17.921397332000083, 62.915716864000046 ], [ 17.87867272200009, 62.911078192000048 ], [ 17.854502800000091, 62.955145575000074 ], [ 17.809743686000047, 62.979315497000073 ], [ 17.830821160000085, 62.999823309000078 ], [ 17.761973504000082, 62.979315497000073 ], [ 17.693614129000082, 62.99359772300005 ], [ 17.847666863000086, 62.921291408000059 ], [ 17.901866082000083, 62.83930084800005 ], [ 17.885508660000085, 62.814846096000053 ], [ 17.95679772200009, 62.782538153000075 ], [ 17.954925977000073, 62.763332424000055 ], [ 18.002696160000085, 62.708970445000034 ], [ 17.993418816000087, 62.659898179000038 ], [ 17.871836785000085, 62.670843817000048 ], [ 18.043223504000082, 62.626166083000044 ], [ 18.06421959700009, 62.595770575000074 ], [ 17.968272332000083, 62.560492255000042 ], [ 17.953379754000082, 62.611761786000045 ], [ 17.937022332000083, 62.615627346000053 ], [ 17.909353061000047, 62.549383856000077 ], [ 17.87867272200009, 62.541083075000074 ], [ 17.892832879000082, 62.527492580000057 ], [ 17.84310957100007, 62.48969147300005 ], [ 17.734629754000082, 62.505764065000051 ], [ 17.658946160000085, 62.478420315000051 ], [ 17.659678582000083, 62.461371161000045 ], [ 17.707367384000065, 62.437445380000042 ], [ 17.561778191000087, 62.443752346000053 ], [ 17.426768425000091, 62.541083075000074 ], [ 17.406097852000073, 62.535589911000045 ], [ 17.395518425000091, 62.511297919000071 ], [ 17.34148196700005, 62.498114325000074 ], [ 17.330577019000089, 62.472235419000071 ], [ 17.379242384000065, 62.425767320000034 ], [ 17.370941602000073, 62.406236070000034 ], [ 17.337412957000083, 62.403957424000055 ], [ 17.366465691000087, 62.378892320000034 ], [ 17.368011915000068, 62.343085028000075 ], [ 17.454112175000091, 62.321437893000052 ], [ 17.488291863000086, 62.286607164000031 ], [ 17.460215691000087, 62.273016669000071 ], [ 17.652679884000065, 62.232001044000071 ], [ 17.544444207000083, 62.201605536000045 ], [ 17.569509311000047, 62.232001044000071 ], [ 17.519053582000083, 62.227932033000059 ], [ 17.498545769000089, 62.14756907800006 ], [ 17.209575230112762, 62.178065497424711 ], [ 17.011086052879023, 62.180390937391792 ], [ 16.487552117935877, 62.250877591527569 ], [ 16.209481234971008, 62.260566922325552 ], [ 15.581509229567303, 62.358054511306648 ], [ 15.358680454239561, 62.281986803048483 ], [ 15.193729282180641, 62.274131984903136 ], [ 15.066036818344458, 62.297696438439857 ], [ 15.000717808080367, 62.327720445242335 ], [ 14.85142459456938, 62.425233873544414 ], [ 14.837782016726692, 62.454534409935036 ], [ 14.871888461783044, 62.475670070717172 ], [ 14.824759555608978, 62.584681504947469 ], [ 14.861501498994983, 62.601708889053953 ], [ 15.172490268611, 62.603155829877608 ], [ 15.609104445413834, 62.653385322374675 ], [ 15.886090121861628, 62.710487779287575 ], [ 16.354898715803074, 62.731416734494644 ], [ 16.65839440337902, 62.922490343154777 ], [ 16.964887322691766, 62.979308580126826 ], [ 16.969073113733202, 62.99344208438464 ], [ 16.181265903298765, 63.377837226406825 ], [ 16.137340936235205, 63.420160223915161 ], [ 16.020500523180601, 63.461940619963627 ], [ 15.989753045066948, 63.561236884074901 ], [ 15.912341749672009, 63.639655869822491 ], [ 15.93776655428303, 63.663762925718402 ], [ 16.104268019053848, 63.695647285393875 ], [ 16.487397088304988, 63.707274482531318 ], [ 16.591990186597798, 63.736936754127896 ], [ 16.630334100438347, 63.852046007317369 ], [ 16.745004103156816, 64.017462267369694 ], [ 16.90173872186449, 63.959868883142406 ], [ 17.729853550001337, 63.889485581794133 ], [ 18.42676191592966, 63.982916571842281 ], [ 18.467689650357045, 63.971030992286444 ], [ 18.479058465076093, 63.947414862805658 ], [ 18.430637647709261, 63.939301663141237 ], [ 18.430637647709261, 63.927726141947858 ], [ 18.520761345859398, 63.852046007317369 ], [ 18.601169874789889, 63.831065375266803 ], [ 18.692068719295946, 63.830729479381944 ], [ 18.956186965156292, 63.770268052828328 ], [ 18.969364455005575, 63.740347398813356 ], [ 19.047292515237359, 63.715129299777345 ], [ 19.206042514650335, 63.59420644846881 ], [ 19.315550363767844, 63.457739733656162 ] ] ], [ [ [ 18.12468509200005, 62.687933661000045 ], [ 18.02702884200005, 62.684515692000048 ], [ 18.006114129000082, 62.705552476000037 ], [ 18.041026238000086, 62.75454336100006 ], [ 18.15984134200005, 62.747137762000079 ], [ 18.146983269000089, 62.709540106000077 ], [ 18.117035352000073, 62.701727606000077 ], [ 18.12468509200005, 62.687933661000045 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-X", "NAME_1": "Gävleborg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.498545769000089, 62.14756907800006 ], [ 17.474457227000073, 62.116603908000059 ], [ 17.473155144000089, 62.084662177000041 ], [ 17.447276238000086, 62.068182684000078 ], [ 17.469004754000082, 62.062160549000055 ], [ 17.426117384000065, 62.026556708000044 ], [ 17.460459832000083, 62.003322658000059 ], [ 17.392100457000083, 61.992417710000041 ], [ 17.385996941000087, 61.961981512000079 ], [ 17.348155144000089, 61.94757721600007 ], [ 17.36459394600007, 61.886297919000071 ], [ 17.34351647200009, 61.871283270000049 ], [ 17.353770379000082, 61.847316799000055 ], [ 17.337412957000083, 61.82367584800005 ], [ 17.40560957100007, 61.821112372000073 ], [ 17.371592644000089, 61.800604559000078 ], [ 17.38835696700005, 61.788316148000035 ], [ 17.399180535000085, 61.722357489000046 ], [ 17.483083530000044, 61.734564520000049 ], [ 17.514170769000089, 61.713812567000048 ], [ 17.520030144000089, 61.691229559000078 ], [ 17.496348504000082, 61.63507721600007 ], [ 17.432871941000087, 61.639390367000033 ], [ 17.362315300000091, 61.709133205000057 ], [ 17.330577019000089, 61.718085028000075 ], [ 17.35092207100007, 61.677150783000059 ], [ 17.313161655000044, 61.68195221600007 ], [ 17.303233269000089, 61.705064195000034 ], [ 17.266612175000091, 61.721625067000048 ], [ 17.13803144600007, 61.725531317000048 ], [ 17.268565300000091, 61.690822658000059 ], [ 17.228688998000052, 61.663072007000039 ], [ 17.166188998000052, 61.656683661000045 ], [ 17.193369988000086, 61.642320054000038 ], [ 17.097178582000083, 61.636135158000059 ], [ 17.247894727000073, 61.60883209800005 ], [ 17.083506707000083, 61.615668036000045 ], [ 17.145681186000047, 61.595200914000031 ], [ 17.05632571700005, 61.582180080000057 ], [ 17.186534050000091, 61.561021226000037 ], [ 17.080088738000086, 61.550482489000046 ], [ 17.166188998000052, 61.526922919000071 ], [ 17.124522332000083, 61.513251044000071 ], [ 17.172373894000089, 61.498968817000048 ], [ 17.177012566000087, 61.486883856000077 ], [ 17.151866082000083, 61.464829820000034 ], [ 17.16928144600007, 61.441107489000046 ], [ 17.22038821700005, 61.447984117000033 ], [ 17.217051629000082, 61.43390534100007 ], [ 17.166188998000052, 61.416408596000053 ], [ 17.136566602000073, 61.437079169000071 ], [ 17.104014519000089, 61.399359442000048 ], [ 17.201833530000044, 61.337103583000044 ], [ 17.276052280000044, 61.314032294000071 ], [ 17.151866082000083, 61.328314520000049 ], [ 17.166270379000082, 61.308417059000078 ], [ 17.247894727000073, 61.287298895000049 ], [ 17.205088738000086, 61.28851959800005 ], [ 17.097178582000083, 61.320868231000077 ], [ 17.180349155000044, 61.27602773600006 ], [ 17.212738477000073, 61.235296942000048 ], [ 17.151866082000083, 61.204169012000079 ], [ 17.186534050000091, 61.191107489000046 ], [ 17.158702019000089, 61.149562893000052 ], [ 17.182790561000047, 61.123236395000049 ], [ 17.145681186000047, 61.114732164000031 ], [ 17.199880405000044, 61.095892645000049 ], [ 17.168711785000085, 61.059312242000033 ], [ 17.186534050000091, 61.032863674000055 ], [ 17.158702019000089, 61.01984284100007 ], [ 17.247894727000073, 61.01235586100006 ], [ 17.16773522200009, 60.992173570000034 ], [ 17.158213738000086, 60.948431708000044 ], [ 17.205088738000086, 60.93390534100007 ], [ 17.216807488000086, 60.899359442000048 ], [ 17.246267123000052, 60.898016669000071 ], [ 17.282237175000091, 60.841009833000044 ], [ 17.258067254000082, 60.832749742000033 ], [ 17.259287957000083, 60.815659898000035 ], [ 17.282237175000091, 60.81313711100006 ], [ 17.283050977000073, 60.781154690000051 ], [ 17.33570397200009, 60.766913153000075 ], [ 17.186696811000047, 60.692368882000039 ], [ 17.257985873000052, 60.694403387000079 ], [ 17.36459394600007, 60.649237372000073 ], [ 17.323741082000083, 60.628729559000078 ], [ 17.37663821700005, 60.623887437000064 ], [ 17.315873650748358, 60.486024075550631 ], [ 17.223837924680481, 60.404039415486579 ], [ 17.226163363748242, 60.309574897563436 ], [ 17.12033003110605, 60.28417593047476 ], [ 16.951193068005693, 60.292625026923417 ], [ 16.915691358969013, 60.24565115038024 ], [ 16.809702995796613, 60.210588690915301 ], [ 16.71735721226554, 60.215911363518558 ], [ 16.543104282136881, 60.357504788515143 ], [ 16.39892703565414, 60.418689684581238 ], [ 16.202504916868406, 60.579971829536248 ], [ 16.204830356835487, 60.62472361889985 ], [ 16.342806430672226, 60.706269029392161 ], [ 16.395413039080495, 60.749883938093262 ], [ 16.407040236217938, 60.780579739363475 ], [ 16.386214633798318, 60.813549302858007 ], [ 16.261467725754926, 60.889772039847742 ], [ 16.15594445237457, 60.999403591702389 ], [ 15.918232863056176, 61.030538642544286 ], [ 15.766769240108317, 61.081801662916405 ], [ 15.702535434562662, 61.127845364372035 ], [ 15.676025425233149, 61.217038886535363 ], [ 15.450716180307438, 61.34591990787743 ], [ 15.185512729728657, 61.544150702692718 ], [ 15.101538527381138, 61.492370917483811 ], [ 14.712208286383316, 61.492345079062147 ], [ 14.679962192401263, 61.523531805848108 ], [ 14.666784701652659, 61.562986761929494 ], [ 14.481628044798413, 61.591486315341172 ], [ 14.521677280082372, 61.631432196938306 ], [ 14.569788039086745, 61.774730943378302 ], [ 14.684147983442642, 61.868678697363976 ], [ 14.734119092621995, 61.880719306550702 ], [ 14.838402134350986, 61.796280016209778 ], [ 14.850184360220055, 61.813359077159646 ], [ 14.837626987095746, 61.839972439276607 ], [ 14.863206821337712, 61.84619944944501 ], [ 14.937517531309027, 61.832918605908901 ], [ 14.960513543165462, 61.853692532384457 ], [ 15.006143832571809, 61.857103177069916 ], [ 15.111822137381694, 61.838267116933878 ], [ 15.145308464813809, 61.942472643397764 ], [ 15.125154656861923, 62.000298569823087 ], [ 15.445600213279192, 62.139928290058492 ], [ 15.444359978929867, 62.183052273243788 ], [ 15.380074497440091, 62.240464789418468 ], [ 15.358680454239561, 62.281986803048483 ], [ 15.530297886038568, 62.349062812498744 ], [ 15.627139519872912, 62.354979763405311 ], [ 16.209481234971008, 62.260566922325552 ], [ 16.487552117935877, 62.250877591527569 ], [ 17.011086052879023, 62.180390937391792 ], [ 17.209575230112762, 62.178065497424711 ], [ 17.498545769000089, 62.14756907800006 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-C", "NAME_1": "Uppsala" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.37663821700005, 60.623887437000064 ], [ 17.574961785000085, 60.64789459800005 ], [ 17.658946160000085, 60.608303127000056 ], [ 17.603770379000082, 60.584133205000057 ], [ 17.638194207000083, 60.515448309000078 ], [ 17.741465691000087, 60.498439846000053 ], [ 17.727061394000089, 60.534735419000071 ], [ 17.762217644000089, 60.563299872000073 ], [ 17.81609134200005, 60.585272528000075 ], [ 17.948741082000083, 60.599188544000071 ], [ 17.974864129000082, 60.587836005000042 ], [ 17.995371941000087, 60.55304596600007 ], [ 17.967458530000044, 60.512111721000053 ], [ 18.098399285000085, 60.464911200000074 ], [ 18.143321160000085, 60.413560289000031 ], [ 18.262217644000089, 60.382391669000071 ], [ 18.207041863000086, 60.355047919000071 ], [ 18.234873894000089, 60.327093817000048 ], [ 18.296397332000083, 60.355047919000071 ], [ 18.427989129000082, 60.348781643000052 ], [ 18.447764519000089, 60.341376044000071 ], [ 18.447764519000089, 60.313462632000039 ], [ 18.474457227000073, 60.292954820000034 ], [ 18.426768425000091, 60.286200262000079 ], [ 18.565440300000091, 60.259344794000071 ], [ 18.60482832100007, 60.238348700000074 ], [ 18.563731316000087, 60.227606512000079 ], [ 18.400563998000052, 60.259588934000078 ], [ 18.316905144000089, 60.32094961100006 ], [ 18.330902540000068, 60.285711981000077 ], [ 18.447764519000089, 60.211086330000057 ], [ 18.392588738000086, 60.232163804000038 ], [ 18.419932488000086, 60.193508205000057 ], [ 18.506114129000082, 60.155747789000031 ], [ 18.54851321700005, 60.17413971600007 ], [ 18.554525821009804, 60.121422020709645 ], [ 18.461023389717639, 60.04289866773928 ], [ 18.493941278167426, 60.010755927444052 ], [ 18.42691694466123, 59.980008450229775 ], [ 18.411517367632371, 59.90089183249205 ], [ 18.343407830307115, 59.864925035461965 ], [ 18.177836540623844, 59.828803208800991 ], [ 18.089883253709161, 59.752632147755378 ], [ 18.009009636785265, 59.751624457402784 ], [ 17.78137495279185, 59.691912340582007 ], [ 17.672906120920743, 59.709430650204297 ], [ 17.587255917726395, 59.669510517996002 ], [ 17.56242190924371, 59.622510891164666 ], [ 17.593789504082338, 59.57961945287542 ], [ 17.590378859396822, 59.562772935922226 ], [ 17.535291782289903, 59.507014065246892 ], [ 17.528935580912332, 59.461952215722135 ], [ 17.48299523314347, 59.436785794428829 ], [ 17.444496290571351, 59.385316067582437 ], [ 17.394680210123568, 59.427535712303268 ], [ 17.298355340226749, 59.458283190416864 ], [ 17.200583530405595, 59.517814440084294 ], [ 16.966437616302926, 59.532128811495397 ], [ 16.900291781940155, 59.668968003770317 ], [ 16.787533807139482, 59.798417466792614 ], [ 16.852387730309488, 59.833945014250958 ], [ 16.858898960418685, 59.884355373901371 ], [ 17.007210321099421, 59.865131741036976 ], [ 17.050360141807062, 59.83906098127926 ], [ 17.194692417021429, 59.897532863750655 ], [ 17.207714878139086, 59.967451077105522 ], [ 17.165650262149882, 59.997009995914539 ], [ 17.220582309625854, 60.048324693130041 ], [ 17.271483594792073, 60.050391751578047 ], [ 17.307657098296431, 60.077418524845029 ], [ 17.394060093398593, 60.22464467990801 ], [ 17.369410435143436, 60.250896307718392 ], [ 17.226163363748242, 60.309574897563436 ], [ 17.217481724202173, 60.384686591413015 ], [ 17.245903761449426, 60.428482368166726 ], [ 17.315873650748358, 60.486024075550631 ], [ 17.37663821700005, 60.623887437000064 ] ] ], [ [ [ 18.55014082100007, 60.327093817000048 ], [ 18.566905144000089, 60.307440497000073 ], [ 18.402191602000073, 60.369818427000041 ], [ 18.378754102000073, 60.507798570000034 ], [ 18.406260613000086, 60.505845445000034 ], [ 18.426768425000091, 60.464911200000074 ], [ 18.466075066000087, 60.442694403000075 ], [ 18.474457227000073, 60.430812893000052 ], [ 18.419932488000086, 60.443793036000045 ], [ 18.484629754000082, 60.366400458000044 ], [ 18.507823113000086, 60.356024481000077 ], [ 18.529795769000089, 60.368109442000048 ], [ 18.55014082100007, 60.327093817000048 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-AB", "NAME_1": "Stockholm" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.554525821009804, 60.121422020709645 ], [ 18.584320509000065, 60.073919989000046 ], [ 18.578135613000086, 60.142157294000071 ], [ 18.651377800000091, 60.148260809000078 ], [ 18.720713738000086, 60.126044012000079 ], [ 18.735199415000068, 60.114813544000071 ], [ 18.745127800000091, 60.049709377000056 ], [ 18.79664147200009, 60.004950262000079 ], [ 18.753103061000047, 60.082180080000057 ], [ 18.765879754000082, 60.111070054000038 ], [ 18.816905144000089, 60.117580471000053 ], [ 18.824473504000082, 60.068304755000042 ], [ 18.903086785000085, 59.947211005000042 ], [ 19.00554446700005, 59.911810614000046 ], [ 19.032074415000068, 59.88149648600006 ], [ 19.043630405000044, 59.882066148000035 ], [ 19.03679446700005, 59.902533270000049 ], [ 19.07162519600007, 59.896307684000078 ], [ 19.067881707000083, 59.833685614000046 ], [ 19.034678582000083, 59.835028387000079 ], [ 18.885996941000087, 59.929877020000049 ], [ 18.930674675000091, 59.885484117000033 ], [ 18.924082879000082, 59.852280992000033 ], [ 18.861582879000082, 59.80304596600007 ], [ 18.754567905000044, 59.791164455000057 ], [ 18.733897332000083, 59.768784898000035 ], [ 19.042002800000091, 59.784979559000078 ], [ 19.085215691000087, 59.772202867000033 ], [ 19.074473504000082, 59.749701239000046 ], [ 19.035980665000068, 59.728501695000034 ], [ 18.95679772200009, 59.719224351000037 ], [ 18.913340691000087, 59.751776434000078 ], [ 18.879893425000091, 59.721584377000056 ], [ 18.714121941000087, 59.673244533000059 ], [ 18.693614129000082, 59.649359442000048 ], [ 18.742035352000073, 59.649359442000048 ], [ 18.735606316000087, 59.641506252000056 ], [ 18.700450066000087, 59.62140534100007 ], [ 18.660004102000073, 59.635687567000048 ], [ 18.686534050000091, 59.60578034100007 ], [ 18.63998457100007, 59.583644924000055 ], [ 18.48406009200005, 59.534409898000035 ], [ 18.379649285000085, 59.476385809000078 ], [ 18.269053582000083, 59.477443752000056 ], [ 18.303233269000089, 59.456976630000042 ], [ 18.248545769000089, 59.450100002000056 ], [ 18.282725457000083, 59.436428127000056 ], [ 18.276866082000083, 59.422552802000041 ], [ 18.293142123000052, 59.414048570000034 ], [ 18.337901238000086, 59.40851471600007 ], [ 18.307302280000044, 59.39679596600007 ], [ 18.188487175000091, 59.407416083000044 ], [ 18.159190300000091, 59.42218659100007 ], [ 18.207041863000086, 59.42218659100007 ], [ 18.199473504000082, 59.450873114000046 ], [ 18.18140709700009, 59.458197333000044 ], [ 18.145518425000091, 59.443833726000037 ], [ 18.113291863000086, 59.454657294000071 ], [ 18.084483269000089, 59.438950914000031 ], [ 18.098399285000085, 59.40851471600007 ], [ 18.065440300000091, 59.397162177000041 ], [ 18.008962436000047, 59.40851471600007 ], [ 18.14616946700005, 59.340236721000053 ], [ 18.09506269600007, 59.338405666000085 ], [ 18.095144076000054, 59.32680898600006 ], [ 18.19662519600007, 59.334173895000049 ], [ 18.220550977000073, 59.31976959800005 ], [ 18.254730665000068, 59.362779039000031 ], [ 18.31812584700009, 59.375921942000048 ], [ 18.389659050000091, 59.36945221600007 ], [ 18.447764519000089, 59.353908596000053 ], [ 18.426768425000091, 59.340236721000053 ], [ 18.47006269600007, 59.337103583000044 ], [ 18.481944207000083, 59.347723700000074 ], [ 18.447764519000089, 59.395453192000048 ], [ 18.495616082000083, 59.395453192000048 ], [ 18.426768425000091, 59.436428127000056 ], [ 18.484629754000082, 59.43423086100006 ], [ 18.536631707000083, 59.415961005000042 ], [ 18.543955925000091, 59.395453192000048 ], [ 18.612315300000091, 59.374945380000042 ], [ 18.600840691000087, 59.362494208000044 ], [ 18.543955925000091, 59.368150132000039 ], [ 18.63257897200009, 59.346909898000035 ], [ 18.646494988000086, 59.330267645000049 ], [ 18.638926629000082, 59.31509023600006 ], [ 18.51929772200009, 59.29828522300005 ], [ 18.461192254000082, 59.312445380000042 ], [ 18.364431186000047, 59.306586005000042 ], [ 18.337901238000086, 59.312933661000045 ], [ 18.344737175000091, 59.334051825000074 ], [ 18.291270379000082, 59.322699286000045 ], [ 18.275889519000089, 59.312933661000045 ], [ 18.316905144000089, 59.27875397300005 ], [ 18.283050977000073, 59.278998114000046 ], [ 18.279307488000086, 59.261704820000034 ], [ 18.412282748000052, 59.215033270000049 ], [ 18.426768425000091, 59.196844794000071 ], [ 18.313731316000087, 59.234076239000046 ], [ 18.387054884000065, 59.183091539000031 ], [ 18.406260613000086, 59.189398505000042 ], [ 18.392588738000086, 59.168890692000048 ], [ 18.429698113000086, 59.174627997000073 ], [ 18.424164259000065, 59.143947658000059 ], [ 18.343760613000086, 59.141750393000052 ], [ 18.290212436000047, 59.12055084800005 ], [ 18.324229363000086, 59.108099677000041 ], [ 18.20085696700005, 59.080755927000041 ], [ 18.255381707000083, 59.101263739000046 ], [ 18.241709832000083, 59.108099677000041 ], [ 18.255381707000083, 59.12055084800005 ], [ 18.223643425000091, 59.119533596000053 ], [ 18.138682488000086, 59.093817450000074 ], [ 18.096202019000089, 59.058335679000038 ], [ 18.043223504000082, 59.059719143000052 ], [ 18.05054772200009, 59.038560289000031 ], [ 18.013682488000086, 59.044907945000034 ], [ 18.002696160000085, 59.038560289000031 ], [ 18.018565300000091, 59.02289459800005 ], [ 17.961192254000082, 58.963446356000077 ], [ 17.961192254000082, 58.92251211100006 ], [ 17.899668816000087, 58.915716864000046 ], [ 17.892832879000082, 58.861029364000046 ], [ 17.869395379000082, 58.877020575000074 ], [ 17.861175977000073, 58.919094143000052 ], [ 17.814707879000082, 58.928208726000037 ], [ 17.773610873000052, 58.960679429000038 ], [ 17.803477410000085, 58.908270575000074 ], [ 17.774424675000091, 58.886216539000031 ], [ 17.78296959700009, 58.915716864000046 ], [ 17.749278191000087, 58.923814195000034 ], [ 17.741465691000087, 58.983954169000071 ], [ 17.768809441000087, 59.12055084800005 ], [ 17.732758009000065, 59.114447333000044 ], [ 17.710459832000083, 59.052801825000074 ], [ 17.66578209700009, 59.080755927000041 ], [ 17.693614129000082, 59.131415106000077 ], [ 17.658946160000085, 59.168890692000048 ], [ 17.673106316000087, 59.134751695000034 ], [ 17.61109459700009, 59.093817450000074 ], [ 17.614512566000087, 59.032131252000056 ], [ 17.631602410000085, 59.018133856000077 ], [ 17.60710696700005, 58.965969143000052 ], [ 17.524749789870896, 58.990353094719524 ], [ 17.395765414842003, 58.995236517751039 ], [ 17.364914584840221, 59.020454616787106 ], [ 17.335097283612754, 59.121249498565476 ], [ 17.295823194684658, 59.172305813362584 ], [ 17.28218061684197, 59.22000316031756 ], [ 17.333029281775907, 59.254309350196309 ], [ 17.354038988008881, 59.33706629857079 ], [ 17.449147169606192, 59.356403103020739 ], [ 17.444496290571351, 59.385316067582437 ], [ 17.475553827047463, 59.429964505057853 ], [ 17.528935580912332, 59.461952215722135 ], [ 17.535291782289903, 59.507014065246892 ], [ 17.594874708800774, 59.572023017148467 ], [ 17.563972201955551, 59.608584093381182 ], [ 17.581724915372547, 59.666191917123228 ], [ 17.672906120920743, 59.709430650204297 ], [ 17.78137495279185, 59.691912340582007 ], [ 18.009009636785265, 59.751624457402784 ], [ 18.089883253709161, 59.752632147755378 ], [ 18.177836540623844, 59.828803208800991 ], [ 18.389968295700271, 59.882029933934291 ], [ 18.421490920169788, 59.922311713214981 ], [ 18.42691694466123, 59.980008450229775 ], [ 18.493941278167426, 60.010755927444052 ], [ 18.461023389717639, 60.04289866773928 ], [ 18.554525821009804, 60.121422020709645 ] ] ], [ [ [ 18.430430535000085, 59.258286851000037 ], [ 18.413096550000091, 59.27875397300005 ], [ 18.344737175000091, 59.299261786000045 ], [ 18.461680535000085, 59.298244533000059 ], [ 18.612315300000091, 59.258286851000037 ], [ 18.516123894000089, 59.271307684000078 ], [ 18.532399936000047, 59.241888739000046 ], [ 18.578135613000086, 59.244614976000037 ], [ 18.551605665000068, 59.225897528000075 ], [ 18.430430535000085, 59.258286851000037 ] ] ], [ [ [ 18.485362175000091, 59.097560940000051 ], [ 18.413584832000083, 59.011664130000042 ], [ 18.37671959700009, 59.006903387000079 ], [ 18.344411655000044, 59.02570221600007 ], [ 18.37476647200009, 59.078355210000041 ], [ 18.465993686000047, 59.117254950000074 ], [ 18.485362175000091, 59.097560940000051 ] ] ], [ [ [ 18.715830925000091, 59.208807684000078 ], [ 18.750010613000086, 59.205145575000074 ], [ 18.659678582000083, 59.176906643000052 ], [ 18.690928582000083, 59.208807684000078 ], [ 18.715830925000091, 59.208807684000078 ] ] ], [ [ [ 18.797048373000052, 59.294867255000042 ], [ 18.810801629000082, 59.289252020000049 ], [ 18.77515709700009, 59.252183335000041 ], [ 18.722666863000086, 59.262396552000041 ], [ 18.757660352000073, 59.294582424000055 ], [ 18.797048373000052, 59.294867255000042 ] ] ], [ [ [ 18.676036004000082, 59.340277411000045 ], [ 18.63803144600007, 59.367987372000073 ], [ 18.705902540000068, 59.371242580000057 ], [ 18.747080925000091, 59.331854559000078 ], [ 18.67750084700009, 59.299546617000033 ], [ 18.676036004000082, 59.340277411000045 ] ] ], [ [ [ 18.106700066000087, 59.384955145000049 ], [ 18.12273196700005, 59.389105536000045 ], [ 18.249278191000087, 59.366685289000031 ], [ 18.203949415000068, 59.365912177000041 ], [ 18.22242272200009, 59.351792710000041 ], [ 18.212087436000047, 59.341498114000046 ], [ 18.165537957000083, 59.340643622000073 ], [ 18.12281334700009, 59.356756903000075 ], [ 18.106700066000087, 59.384955145000049 ] ] ], [ [ [ 18.854258660000085, 59.402533270000049 ], [ 18.865082227000073, 59.39984772300005 ], [ 18.869476759000065, 59.393459377000056 ], [ 18.847666863000086, 59.389349677000041 ], [ 18.854258660000085, 59.402533270000049 ] ] ], [ [ [ 18.942393425000091, 59.393622137000079 ], [ 18.937673373000052, 59.373236395000049 ], [ 18.899424675000091, 59.40070221600007 ], [ 18.92156009200005, 59.405910549000055 ], [ 18.942393425000091, 59.393622137000079 ] ] ], [ [ [ 18.925791863000086, 59.434027411000045 ], [ 18.89389082100007, 59.407171942000048 ], [ 18.860606316000087, 59.424505927000041 ], [ 18.898610873000052, 59.445705471000053 ], [ 18.925791863000086, 59.434027411000045 ] ] ], [ [ [ 18.656586134000065, 59.506740627000056 ], [ 18.594411655000044, 59.486883856000077 ], [ 18.601817254000082, 59.456122137000079 ], [ 18.578461134000065, 59.463934637000079 ], [ 18.580902540000068, 59.430731512000079 ], [ 18.55640709700009, 59.422308661000045 ], [ 18.510508660000085, 59.483140367000033 ], [ 18.538096550000091, 59.49555084800005 ], [ 18.557383660000085, 59.482001044000071 ], [ 18.577647332000083, 59.495062567000048 ], [ 18.548106316000087, 59.498968817000048 ], [ 18.551117384000065, 59.51007721600007 ], [ 18.609711134000065, 59.545640367000033 ], [ 18.739105665000068, 59.540432033000059 ], [ 18.656586134000065, 59.506740627000056 ] ] ], [ [ [ 18.977712436000047, 59.633856512000079 ], [ 18.984629754000082, 59.624335028000075 ], [ 18.968028191000087, 59.619370835000041 ], [ 18.92750084700009, 59.622463283000059 ], [ 18.905284050000091, 59.583238023000035 ], [ 18.863454623000052, 59.583970445000034 ], [ 18.858571811000047, 59.595770575000074 ], [ 18.937754754000082, 59.64907461100006 ], [ 18.977712436000047, 59.633856512000079 ] ] ], [ [ [ 18.854258660000085, 59.601141669000071 ], [ 18.82390384200005, 59.583889065000051 ], [ 18.756846550000091, 59.572658596000053 ], [ 18.924327019000089, 59.656927802000041 ], [ 18.854258660000085, 59.601141669000071 ] ] ], [ [ [ 18.996348504000082, 59.809759833000044 ], [ 18.99781334700009, 59.794623114000046 ], [ 18.97201582100007, 59.786607164000031 ], [ 18.885752800000091, 59.793931382000039 ], [ 18.959157748000052, 59.863714911000045 ], [ 18.98796634200005, 59.850531317000048 ], [ 18.996348504000082, 59.809759833000044 ] ] ], [ [ [ 18.72396894600007, 60.196600653000075 ], [ 18.71851647200009, 60.216457424000055 ], [ 18.753103061000047, 60.209173895000049 ], [ 18.806895379000082, 60.160589911000045 ], [ 18.72437584700009, 60.155462958000044 ], [ 18.713063998000052, 60.182562567000048 ], [ 18.72396894600007, 60.196600653000075 ] ] ], [ [ [ 18.321462436000047, 58.969142971000053 ], [ 18.35710696700005, 58.976996161000045 ], [ 18.289805535000085, 58.941392320000034 ], [ 18.316416863000086, 58.926947333000044 ], [ 18.193614129000082, 58.911322333000044 ], [ 18.226410352000073, 58.944728908000059 ], [ 18.321462436000047, 58.969142971000053 ] ] ], [ [ [ 18.198252800000091, 59.009670315000051 ], [ 18.190196160000085, 58.993882554000038 ], [ 18.14584394600007, 59.004380601000037 ], [ 18.144704623000052, 58.96906159100007 ], [ 18.09896894600007, 58.97882721600007 ], [ 18.050629102000073, 58.960923570000034 ], [ 18.103526238000086, 59.022650458000044 ], [ 18.21656334700009, 59.024481512000079 ], [ 18.178721550000091, 59.011419989000046 ], [ 18.198252800000091, 59.009670315000051 ] ] ], [ [ [ 17.707286004000082, 58.993353583000044 ], [ 17.684825066000087, 58.900824286000045 ], [ 17.64812259200005, 58.918931382000039 ], [ 17.624278191000087, 58.963934637000079 ], [ 17.652191602000073, 59.071519273000035 ], [ 17.686696811000047, 59.050360419000071 ], [ 17.707286004000082, 58.993353583000044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-D", "NAME_1": "Södermanland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.586273634000065, 58.964911200000074 ], [ 17.576914910000085, 58.956691799000055 ], [ 17.61109459700009, 58.943019924000055 ], [ 17.60124759200005, 58.927801825000074 ], [ 17.62671959700009, 58.917792059000078 ], [ 17.617930535000085, 58.902044989000046 ], [ 17.535980665000068, 58.902044989000046 ], [ 17.590668165000068, 58.867254950000074 ], [ 17.569509311000047, 58.861029364000046 ], [ 17.58375084700009, 58.853583075000074 ], [ 17.447276238000086, 58.895209052000041 ], [ 17.469086134000065, 58.870428778000075 ], [ 17.449961785000085, 58.81586334800005 ], [ 17.488291863000086, 58.799627997000073 ], [ 17.337412957000083, 58.806463934000078 ], [ 17.376800977000073, 58.764390367000033 ], [ 17.357758009000065, 58.751166083000044 ], [ 17.276052280000044, 58.748846747000073 ], [ 17.276052280000044, 58.730698960000041 ], [ 17.162364129000082, 58.732001044000071 ], [ 17.086924675000091, 58.764837958000044 ], [ 17.028168165000068, 58.751166083000044 ], [ 17.083506707000083, 58.737534898000035 ], [ 17.062510613000086, 58.710191148000035 ], [ 17.145681186000047, 58.696600653000075 ], [ 17.093028191000087, 58.660834052000041 ], [ 16.974945509000065, 58.685370184000078 ], [ 16.953868035000085, 58.669256903000075 ], [ 17.00163821700005, 58.667873440000051 ], [ 17.035817905000044, 58.641302802000041 ], [ 16.924164259000065, 58.625433661000045 ], [ 16.781435028351435, 58.634493030438968 ], [ 16.735340609881234, 58.664714056908167 ], [ 16.630179070807458, 58.688924466490903 ], [ 16.440991651643401, 58.695487372544164 ], [ 16.298106317252746, 58.823851629948763 ], [ 16.07806806808685, 58.925034085354753 ], [ 15.866711460265662, 59.009990138733883 ], [ 15.828057488961917, 59.003892319774707 ], [ 15.776742790847095, 58.969320786724893 ], [ 15.660160760210886, 59.015261135393075 ], [ 15.639851921728791, 59.036500148962659 ], [ 15.712457310256639, 59.0947394883367 ], [ 15.804182977062737, 59.122179674552285 ], [ 15.778603142820771, 59.206205552843983 ], [ 15.899939406178646, 59.242275703560836 ], [ 15.907070753912137, 59.278655910841564 ], [ 15.984171990944617, 59.349659328914868 ], [ 16.045615269429106, 59.367384345011487 ], [ 16.175684849176434, 59.358108426262845 ], [ 16.277280714833125, 59.375187486313393 ], [ 16.31764000758028, 59.398338527800775 ], [ 16.274955274866045, 59.424486802823651 ], [ 16.269839307837799, 59.442056790188701 ], [ 16.287099236840277, 59.453735663270209 ], [ 16.893470492569179, 59.509158637161363 ], [ 16.966437616302926, 59.532128811495397 ], [ 17.148131951628272, 59.527167874098097 ], [ 17.240116000852765, 59.502621567731126 ], [ 17.298355340226749, 59.458283190416864 ], [ 17.394680210123568, 59.427535712303268 ], [ 17.455658399715333, 59.37611766230026 ], [ 17.449147169606192, 59.356403103020739 ], [ 17.364693910995186, 59.344676957975196 ], [ 17.341861932781967, 59.324889243343875 ], [ 17.333029281775907, 59.254309350196309 ], [ 17.28218061684197, 59.22000316031756 ], [ 17.288846876582056, 59.186465156042061 ], [ 17.335097283612754, 59.121249498565476 ], [ 17.352770622865933, 59.042391262346825 ], [ 17.385998568778916, 58.998259588808935 ], [ 17.524749789870896, 58.990353094719524 ], [ 17.586273634000065, 58.964911200000074 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-E", "NAME_1": "Östergötland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.781435028351435, 58.634493030438968 ], [ 16.23373457100007, 58.669256903000075 ], [ 16.257090691000087, 58.651760158000059 ], [ 16.254893425000091, 58.634507554000038 ], [ 16.179209832000083, 58.634507554000038 ], [ 16.285411004000082, 58.615912177000041 ], [ 16.333994988000086, 58.639146226000037 ], [ 16.371592644000089, 58.62055084800005 ], [ 16.387705925000091, 58.591620184000078 ], [ 16.409190300000091, 58.596625067000048 ], [ 16.439789259000065, 58.648138739000046 ], [ 16.517832879000082, 58.624579169000071 ], [ 16.635915561000047, 58.626776434000078 ], [ 16.748301629000082, 58.592922268000052 ], [ 16.74154707100007, 58.613999742000033 ], [ 16.789317254000082, 58.607163804000038 ], [ 16.785980665000068, 58.572739976000037 ], [ 16.830332879000082, 58.559393622000073 ], [ 16.816661004000082, 58.546372789000031 ], [ 16.844004754000082, 58.546372789000031 ], [ 16.834157748000052, 58.529527085000041 ], [ 16.940196160000085, 58.491115627000056 ], [ 16.844004754000082, 58.477484442000048 ], [ 16.85287519600007, 58.463080145000049 ], [ 16.748301629000082, 58.429022528000075 ], [ 16.441416863000086, 58.485988674000055 ], [ 16.412608269000089, 58.477484442000048 ], [ 16.692556186000047, 58.41274648600006 ], [ 16.714854363000086, 58.394964911000045 ], [ 16.714854363000086, 58.360174872000073 ], [ 16.754567905000044, 58.373765367000033 ], [ 16.77125084700009, 58.363104559000078 ], [ 16.77507571700005, 58.339667059000078 ], [ 16.631683790000068, 58.353949286000045 ], [ 16.699961785000085, 58.319159247000073 ], [ 16.710785352000073, 58.298732815000051 ], [ 16.727061394000089, 58.303615627000056 ], [ 16.72046959700009, 58.319159247000073 ], [ 16.799164259000065, 58.323635158000059 ], [ 16.789317254000082, 58.305568752000056 ], [ 16.76140384200005, 58.305568752000056 ], [ 16.754567905000044, 58.285101630000042 ], [ 16.70679772200009, 58.271389065000051 ], [ 16.802989129000082, 58.244696356000077 ], [ 16.789317254000082, 58.237250067000048 ], [ 16.813731316000087, 58.220404364000046 ], [ 16.822276238000086, 58.179632880000042 ], [ 16.788259311000047, 58.179266669000071 ], [ 16.809825066000087, 58.162095445000034 ], [ 16.777191602000073, 58.130519924000055 ], [ 16.617442254000082, 58.203111070000034 ], [ 16.671885613000086, 58.165269273000035 ], [ 16.686289910000085, 58.14789459800005 ], [ 16.65951582100007, 58.14789459800005 ], [ 16.73609459700009, 58.084784247000073 ], [ 16.714854363000086, 58.079575914000031 ], [ 16.71225019600007, 58.059515692000048 ], [ 16.686289910000085, 58.058539130000042 ], [ 16.740244988000086, 58.039780992000033 ], [ 16.754567905000044, 58.024969794000071 ], [ 16.746429884000065, 58.016587632000039 ], [ 16.691579623000052, 58.014837958000044 ], [ 16.699961785000085, 57.997707424000055 ], [ 16.644704623000052, 58.038641669000071 ], [ 16.637217644000089, 58.014471747000073 ], [ 16.65951582100007, 57.990220445000034 ], [ 16.68685957100007, 57.989243882000039 ], [ 16.660874871178351, 57.989225571702718 ], [ 16.645526970992876, 57.992507026078385 ], [ 16.579587844003754, 58.095058906143549 ], [ 16.501504754141081, 58.098650417982356 ], [ 16.439906446924965, 58.125392971308543 ], [ 16.277125685202179, 58.121775621048073 ], [ 16.197078892376965, 58.102061061768552 ], [ 16.160440300879145, 58.070796821516069 ], [ 16.022825962248362, 58.07831574197786 ], [ 16.026391635665448, 58.026535955869633 ], [ 16.076207717012494, 57.975841376278481 ], [ 16.043289828562706, 57.933854275554324 ], [ 16.053211704256739, 57.875847480177015 ], [ 16.001845330197796, 57.834196275337831 ], [ 15.930790236180428, 57.819184271936592 ], [ 15.766769240108317, 57.858380846498846 ], [ 15.669979282218094, 57.857192288093586 ], [ 15.633960809243945, 57.846030178050228 ], [ 15.552001986702294, 57.777791450415066 ], [ 15.469164665916594, 57.756423244736936 ], [ 15.443119744580542, 57.711619778529951 ], [ 15.1971399268661, 57.723402005298283 ], [ 15.153525018165055, 57.740300198195541 ], [ 15.080764600905582, 57.85667552415606 ], [ 15.024747348711173, 57.914088040330796 ], [ 15.025212436704578, 57.95594594984567 ], [ 15.045521274287353, 57.992842922862565 ], [ 15.102313673737058, 58.014753730000621 ], [ 14.999787632093557, 58.1538666862985 ], [ 14.929611037219559, 58.143428045767678 ], [ 14.91193769706706, 58.111440335103339 ], [ 14.875144076837671, 58.097177638737037 ], [ 14.597848342027362, 58.11187958377576 ], [ 14.485968866370058, 58.153918362242621 ], [ 14.428556349296059, 58.224379177057358 ], [ 14.81153038891631, 58.645516262465492 ], [ 14.89457441617634, 58.681276353920566 ], [ 15.011259799600055, 58.699285589957981 ], [ 15.170939975899159, 58.807857773717274 ], [ 15.279253778139321, 58.845400702780182 ], [ 15.400590040597876, 58.841473294157197 ], [ 15.539444613578041, 58.873977770557644 ], [ 15.593136426704689, 58.907412421146319 ], [ 15.603058302398722, 58.957280178437429 ], [ 15.723619419400677, 58.984513658178741 ], [ 15.788369988883858, 58.970819404391989 ], [ 15.848262973757244, 59.009886786845698 ], [ 15.880819126101756, 59.007561346878617 ], [ 16.298106317252746, 58.823851629948763 ], [ 16.440991651643401, 58.695487372544164 ], [ 16.688211703707168, 58.6799844427278 ], [ 16.781435028351435, 58.634493030438968 ] ] ], [ [ [ 16.866709832000083, 58.304592190000051 ], [ 16.879079623000052, 58.280585028000075 ], [ 16.84742272200009, 58.275458075000074 ], [ 16.832530144000089, 58.304185289000031 ], [ 16.866709832000083, 58.304592190000051 ] ] ], [ [ [ 16.891612175000091, 58.333726304000038 ], [ 16.918955925000091, 58.336371161000045 ], [ 16.881846550000091, 58.317124742000033 ], [ 16.827403191000087, 58.327541408000059 ], [ 16.785166863000086, 58.380072333000044 ], [ 16.859711134000065, 58.400295315000051 ], [ 16.85124759200005, 58.383368231000077 ], [ 16.828786655000044, 58.381537177000041 ], [ 16.847178582000083, 58.372137762000079 ], [ 16.830577019000089, 58.355943101000037 ], [ 16.891612175000091, 58.333726304000038 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-H", "NAME_1": "Kalmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.68685957100007, 57.989243882000039 ], [ 16.70639082100007, 57.962103583000044 ], [ 16.735362175000091, 57.971909898000035 ], [ 16.74154707100007, 57.946193752000056 ], [ 16.782481316000087, 57.915106512000079 ], [ 16.727305535000085, 57.928778387000079 ], [ 16.76539147200009, 57.898830471000053 ], [ 16.758148634000065, 57.877020575000074 ], [ 16.723399285000085, 57.883490302000041 ], [ 16.682871941000087, 57.918890692000048 ], [ 16.670746290000068, 57.891424872000073 ], [ 16.610606316000087, 57.894680080000057 ], [ 16.603770379000082, 57.928778387000079 ], [ 16.644704623000052, 57.92133209800005 ], [ 16.51531009200005, 57.998846747000073 ], [ 16.494476759000065, 57.984035549000055 ], [ 16.504567905000044, 57.97016022300005 ], [ 16.590098504000082, 57.935614325000074 ], [ 16.569590691000087, 57.92133209800005 ], [ 16.576996290000068, 57.901922919000071 ], [ 16.562754754000082, 57.887844143000052 ], [ 16.480804884000065, 57.915106512000079 ], [ 16.487071160000085, 57.894680080000057 ], [ 16.46029707100007, 57.894680080000057 ], [ 16.699961785000085, 57.743841864000046 ], [ 16.635101759000065, 57.765692450000074 ], [ 16.541840040000068, 57.839016018000052 ], [ 16.419444207000083, 57.894680080000057 ], [ 16.438975457000083, 57.865383205000057 ], [ 16.530039910000085, 57.825262762000079 ], [ 16.665212436000047, 57.737005927000041 ], [ 16.65211022200009, 57.729559637000079 ], [ 16.69076582100007, 57.725653387000079 ], [ 16.714854363000086, 57.702826239000046 ], [ 16.69312584700009, 57.702826239000046 ], [ 16.70679772200009, 57.688544012000079 ], [ 16.576996290000068, 57.709662177000041 ], [ 16.619965040000068, 57.66665273600006 ], [ 16.583262566000087, 57.661932684000078 ], [ 16.63054446700005, 57.629095770000049 ], [ 16.562754754000082, 57.592962958000044 ], [ 16.555918816000087, 57.627142645000049 ], [ 16.520518425000091, 57.627142645000049 ], [ 16.542246941000087, 57.607326565000051 ], [ 16.520518425000091, 57.586127020000049 ], [ 16.542246941000087, 57.572495835000041 ], [ 16.51498457100007, 57.566310940000051 ], [ 16.629161004000082, 57.556870835000041 ], [ 16.688975457000083, 57.471747137000079 ], [ 16.65951582100007, 57.476263739000046 ], [ 16.672211134000065, 57.459662177000041 ], [ 16.633311394000089, 57.437079169000071 ], [ 16.672618035000085, 57.41547272300005 ], [ 16.625743035000085, 57.398993231000077 ], [ 16.631683790000068, 57.380764065000051 ], [ 16.547618035000085, 57.382513739000046 ], [ 16.53484134200005, 57.360256252000056 ], [ 16.569590691000087, 57.346584377000056 ], [ 16.547373894000089, 57.328802802000041 ], [ 16.562754754000082, 57.319281317000048 ], [ 16.485199415000068, 57.294623114000046 ], [ 16.469086134000065, 57.275376695000034 ], [ 16.494476759000065, 57.242905992000033 ], [ 16.465993686000047, 57.228013414000031 ], [ 16.465017123000052, 57.177313544000071 ], [ 16.50945071700005, 57.127346096000053 ], [ 16.55250084700009, 57.110093492000033 ], [ 16.569590691000087, 57.086493231000077 ], [ 16.55445397200009, 57.080755927000041 ], [ 16.583262566000087, 57.044907945000034 ], [ 16.53484134200005, 57.051743882000039 ], [ 16.527679884000065, 57.065375067000048 ], [ 16.500336134000065, 57.039740302000041 ], [ 16.439789259000065, 57.051743882000039 ], [ 16.473399285000085, 57.031236070000034 ], [ 16.43490644600007, 56.997870184000078 ], [ 16.46810957100007, 56.949286200000074 ], [ 16.436371290000068, 56.911118882000039 ], [ 16.439789259000065, 56.866848049000055 ], [ 16.40796959700009, 56.79913971600007 ], [ 16.428558790000068, 56.782945054000038 ], [ 16.463389519000089, 56.797837632000039 ], [ 16.474457227000073, 56.786322333000044 ], [ 16.45484459700009, 56.768296617000033 ], [ 16.412608269000089, 56.777411200000074 ], [ 16.356618686000047, 56.75844961100006 ], [ 16.377777540000068, 56.725897528000075 ], [ 16.371592644000089, 56.661322333000044 ], [ 16.34156334700009, 56.651271877000056 ], [ 16.301117384000065, 56.663275458000044 ], [ 16.246348504000082, 56.642401434000078 ], [ 16.220957879000082, 56.608710028000075 ], [ 16.207041863000086, 56.53851959800005 ], [ 16.178721550000091, 56.537054755000042 ], [ 16.117686394000089, 56.455267645000049 ], [ 16.066247716358987, 56.335945807752807 ], [ 16.031042514700289, 56.32630381906597 ], [ 15.859580111632852, 56.350617581436211 ], [ 15.578563673774511, 56.509057522486671 ], [ 15.5124695171545, 56.487560126498636 ], [ 15.396869338449221, 56.500608426038013 ], [ 15.363021274012567, 56.482134101107874 ], [ 15.354959751191529, 56.500143338044609 ], [ 15.368602329034218, 56.531872667189816 ], [ 15.409116652311639, 56.569544786562631 ], [ 15.419038527106352, 56.677729396694247 ], [ 15.394078809589359, 56.767698066112814 ], [ 15.55618777774373, 56.814930325074442 ], [ 15.534638705811631, 56.911151842183756 ], [ 15.574842969827159, 56.924070950513908 ], [ 15.665018344820737, 56.901643378539063 ], [ 15.782633905130581, 56.908102931804819 ], [ 15.846092564320372, 56.942622788910569 ], [ 15.805578241042952, 57.020499173198232 ], [ 15.67261477964837, 57.13015656257528 ], [ 15.591431105261279, 57.156666571904736 ], [ 15.583524611171867, 57.19258169209138 ], [ 15.550761753252289, 57.211391912906436 ], [ 15.544870639868122, 57.241157538189782 ], [ 15.504252963803197, 57.276194160132377 ], [ 15.495364617782855, 57.301644802265798 ], [ 15.527507358078083, 57.345130519757674 ], [ 15.532003208381354, 57.453366808531371 ], [ 15.561355421615417, 57.469825750957625 ], [ 15.620938348126231, 57.451170558874139 ], [ 15.664191521621433, 57.519486803573102 ], [ 15.658765496230671, 57.536152452473686 ], [ 15.612825147562489, 57.557985745245901 ], [ 15.666982048682598, 57.609145412830514 ], [ 15.463583611794206, 57.695600083876741 ], [ 15.443119744580542, 57.711619778529951 ], [ 15.460327995840316, 57.750687160983659 ], [ 15.552001986702294, 57.777791450415066 ], [ 15.633960809243945, 57.846030178050228 ], [ 15.669979282218094, 57.857192288093586 ], [ 15.766769240108317, 57.858380846498846 ], [ 15.930790236180428, 57.819184271936592 ], [ 16.001845330197796, 57.834196275337831 ], [ 16.053211704256739, 57.875847480177015 ], [ 16.043289828562706, 57.933854275554324 ], [ 16.076207717012494, 57.975841376278481 ], [ 16.026391635665448, 58.026535955869633 ], [ 16.022825962248362, 58.07831574197786 ], [ 16.160440300879145, 58.070796821516069 ], [ 16.197078892376965, 58.102061061768552 ], [ 16.277125685202179, 58.121775621048073 ], [ 16.439906446924965, 58.125392971308543 ], [ 16.501504754141081, 58.098650417982356 ], [ 16.579587844003754, 58.095058906143549 ], [ 16.632504509875218, 58.001834622569731 ], [ 16.68685957100007, 57.989243882000039 ] ] ], [ [ [ 17.124522332000083, 57.319281317000048 ], [ 17.07553144600007, 57.305121161000045 ], [ 17.042002800000091, 57.270900783000059 ], [ 17.066254102000073, 57.226711330000057 ], [ 17.049489780000044, 57.188299872000073 ], [ 17.028168165000068, 57.181463934000078 ], [ 16.96062259200005, 57.063218492000033 ], [ 16.898610873000052, 57.038072007000039 ], [ 16.933929884000065, 57.017564195000034 ], [ 16.871267123000052, 56.969183661000045 ], [ 16.883067254000082, 56.916245835000041 ], [ 16.858164910000085, 56.89679596600007 ], [ 16.841807488000086, 56.84406159100007 ], [ 16.768728061000047, 56.796779690000051 ], [ 16.682790561000047, 56.593491929000038 ], [ 16.636973504000082, 56.559719143000052 ], [ 16.63843834700009, 56.524155992000033 ], [ 16.541188998000052, 56.306138414000031 ], [ 16.490896030000044, 56.239569403000075 ], [ 16.428477410000085, 56.217962958000044 ], [ 16.412608269000089, 56.229315497000073 ], [ 16.398936394000089, 56.298244533000059 ], [ 16.414073113000086, 56.402777411000045 ], [ 16.391449415000068, 56.458685614000046 ], [ 16.398936394000089, 56.544663804000038 ], [ 16.419444207000083, 56.585638739000046 ], [ 16.62086022200009, 56.872259833000044 ], [ 16.731293165000068, 56.903998114000046 ], [ 16.88835696700005, 57.118231512000079 ], [ 16.90992272200009, 57.202215887000079 ], [ 16.959239129000082, 57.230698960000041 ], [ 16.96648196700005, 57.304592190000051 ], [ 17.054860873000052, 57.358221747000073 ], [ 17.081879102000073, 57.341376044000071 ], [ 17.104014519000089, 57.352769273000035 ], [ 17.124522332000083, 57.319281317000048 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-K", "NAME_1": "Blekinge" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.066247716358987, 56.335945807752807 ], [ 16.038259311000047, 56.255072333000044 ], [ 15.932139519000089, 56.174709377000056 ], [ 15.851735873000052, 56.086371161000045 ], [ 15.78874759200005, 56.106431382000039 ], [ 15.826508009000065, 56.159369208000044 ], [ 15.731211785000085, 56.157212632000039 ], [ 15.64820397200009, 56.194566148000035 ], [ 15.592133009000065, 56.160549221000053 ], [ 15.57593834700009, 56.174709377000056 ], [ 15.596202019000089, 56.20376211100006 ], [ 15.586436394000089, 56.208889065000051 ], [ 15.492930535000085, 56.176336981000077 ], [ 15.479991082000083, 56.151841539000031 ], [ 15.40398196700005, 56.179754950000074 ], [ 15.365570509000065, 56.141099351000037 ], [ 15.295258009000065, 56.147406317000048 ], [ 15.322601759000065, 56.153631903000075 ], [ 15.295258009000065, 56.188381252000056 ], [ 15.192393425000091, 56.152899481000077 ], [ 15.154307488000086, 56.168646552000041 ], [ 15.093028191000087, 56.161078192000048 ], [ 15.07553144600007, 56.188381252000056 ], [ 15.034678582000083, 56.181545315000051 ], [ 15.049001498000052, 56.153631903000075 ], [ 14.953379754000082, 56.172919012000079 ], [ 14.848155144000089, 56.163967190000051 ], [ 14.849619988000086, 56.147406317000048 ], [ 14.830251498000052, 56.142645575000074 ], [ 14.774587436000047, 56.167914130000042 ], [ 14.724945509000065, 56.167629299000055 ], [ 14.685801629000082, 56.147406317000048 ], [ 14.682302280000044, 56.117132880000042 ], [ 14.767751498000052, 56.03070709800005 ], [ 14.715505405000044, 56.002346096000053 ], [ 14.705739780000044, 56.01703522300005 ], [ 14.611501498000052, 56.011135158000059 ], [ 14.623789910000085, 56.024481512000079 ], [ 14.60328209700009, 56.05805084800005 ], [ 14.582204623000052, 56.043768622000073 ], [ 14.553402519119059, 56.054031617297667 ], [ 14.555990430713791, 56.096162827952128 ], [ 14.586996291245839, 56.154660549744563 ], [ 14.576454298826832, 56.200420030360078 ], [ 14.549117466298014, 56.235947577818422 ], [ 14.460699089591287, 56.255532944989397 ], [ 14.410572950781045, 56.337801825893507 ], [ 14.457288445805091, 56.407565008718166 ], [ 14.540745884215141, 56.477483222073033 ], [ 14.725127393814148, 56.401958116174114 ], [ 14.894109328182935, 56.378264472327487 ], [ 14.947956170041209, 56.398573309910319 ], [ 15.003043247148128, 56.451128242374466 ], [ 15.121433953813892, 56.462652085825084 ], [ 15.215743442106145, 56.443066717754789 ], [ 15.246956008213203, 56.467457994490815 ], [ 15.342557406798846, 56.469344183986891 ], [ 15.396869338449221, 56.500608426038013 ], [ 15.520841099237316, 56.48799937607032 ], [ 15.561510451246306, 56.510246079992555 ], [ 15.859580111632852, 56.350617581436211 ], [ 15.97998619990318, 56.326226304700185 ], [ 16.066247716358987, 56.335945807752807 ] ] ], [ [ [ 15.705332879000082, 56.116400458000044 ], [ 15.726898634000065, 56.118353583000044 ], [ 15.70085696700005, 56.105658270000049 ], [ 15.696787957000083, 56.074286200000074 ], [ 15.64234459700009, 56.104641018000052 ], [ 15.669118686000047, 56.123928127000056 ], [ 15.705332879000082, 56.116400458000044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-M", "NAME_1": "Skåne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.553402519119059, 56.054031617297667 ], [ 14.478851759000065, 56.031683661000045 ], [ 14.407725457000083, 55.977036851000037 ], [ 14.346446160000085, 55.953314520000049 ], [ 14.323252800000091, 55.915716864000046 ], [ 14.234711134000065, 55.862697658000059 ], [ 14.208506707000083, 55.821275132000039 ], [ 14.195811394000089, 55.725653387000079 ], [ 14.273692254000082, 55.667629299000055 ], [ 14.28451582100007, 55.622951565000051 ], [ 14.367523634000065, 55.545396226000037 ], [ 14.348806186000047, 55.510565497000073 ], [ 14.181162957000083, 55.390814520000049 ], [ 14.06421959700009, 55.390773830000057 ], [ 13.897227410000085, 55.434881903000075 ], [ 13.842295769000089, 55.421210028000075 ], [ 13.629567905000044, 55.41828034100007 ], [ 13.580821160000085, 55.388820705000057 ], [ 13.503428582000083, 55.388373114000046 ], [ 13.381358269000089, 55.34601471600007 ], [ 13.280528191000087, 55.345445054000038 ], [ 12.979177280000044, 55.403265692000048 ], [ 12.832774285000085, 55.382554429000038 ], [ 12.828786655000044, 55.400091864000046 ], [ 12.859385613000086, 55.434881903000075 ], [ 12.929698113000086, 55.418768622000073 ], [ 12.965830925000091, 55.434881903000075 ], [ 12.963226759000065, 55.454250393000052 ], [ 12.98568769600007, 55.44790273600006 ], [ 12.917491082000083, 55.54718659100007 ], [ 12.92937259200005, 55.578924872000073 ], [ 13.038340691000087, 55.635199286000045 ], [ 13.05795332100007, 55.660711981000077 ], [ 13.054860873000052, 55.694037177000041 ], [ 13.01148522200009, 55.728420315000051 ], [ 12.97437584700009, 55.726467190000051 ], [ 12.965830925000091, 55.746161200000074 ], [ 12.922618035000085, 55.74945709800005 ], [ 12.911306186000047, 55.763861395000049 ], [ 12.931895379000082, 55.769476630000042 ], [ 12.938649936000047, 55.79047272300005 ], [ 12.926036004000082, 55.834051825000074 ], [ 12.821299675000091, 55.886704820000034 ], [ 12.752289259000065, 55.996568101000037 ], [ 12.602224155000044, 56.123195705000057 ], [ 12.504567905000044, 56.275336005000042 ], [ 12.451426629000082, 56.304429429000038 ], [ 12.64625084700009, 56.25726959800005 ], [ 12.70484459700009, 56.222479559000078 ], [ 12.814463738000086, 56.236151434000078 ], [ 12.82943769600007, 56.278550523000035 ], [ 12.783457879000082, 56.293402411000045 ], [ 12.73178144600007, 56.35968659100007 ], [ 12.621592644000089, 56.419338283000059 ], [ 12.656911655000044, 56.455267645000049 ], [ 12.713715040000068, 56.467352606000077 ], [ 12.833262566000087, 56.442572333000044 ], [ 12.910875189614732, 56.474363357426085 ], [ 12.985181919410024, 56.434462592574562 ], [ 12.985181919410024, 56.377179266709788 ], [ 13.208010694737766, 56.338008531468518 ], [ 13.420555860964214, 56.4251866729266 ], [ 13.576670362946857, 56.423791408946329 ], [ 13.993337437372816, 56.479240221259204 ], [ 14.041861606627833, 56.492676093526882 ], [ 14.094674919711736, 56.541200262781899 ], [ 14.162319369942963, 56.523320217953653 ], [ 14.277764519916673, 56.523914496256964 ], [ 14.540745884215141, 56.477483222073033 ], [ 14.457288445805091, 56.407565008718166 ], [ 14.410572950781045, 56.337801825893507 ], [ 14.460699089591287, 56.255532944989397 ], [ 14.549117466298014, 56.235947577818422 ], [ 14.576454298826832, 56.200420030360078 ], [ 14.586996291245839, 56.154660549744563 ], [ 14.555990430713791, 56.096162827952128 ], [ 14.553402519119059, 56.054031617297667 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-N", "NAME_1": "Halland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.910875189614732, 56.474363357426085 ], [ 12.93336022200009, 56.506537177000041 ], [ 12.934418165000068, 56.547064520000049 ], [ 12.871755405000044, 56.649481512000079 ], [ 12.73178144600007, 56.647040106000077 ], [ 12.679860873000052, 56.679592190000051 ], [ 12.664317254000082, 56.71430084800005 ], [ 12.615733269000089, 56.750067450000074 ], [ 12.594737175000091, 56.787990627000056 ], [ 12.598317905000044, 56.820990302000041 ], [ 12.469574415000068, 56.89203522300005 ], [ 12.356455925000091, 56.923814195000034 ], [ 12.340993686000047, 57.014064846000053 ], [ 12.27125084700009, 57.042873440000051 ], [ 12.218597852000073, 57.092718817000048 ], [ 12.23764082100007, 57.10805898600006 ], [ 12.204356316000087, 57.147935289000031 ], [ 12.197438998000052, 57.184881903000075 ], [ 12.149099155000044, 57.188299872000073 ], [ 12.191254102000073, 57.212591864000046 ], [ 12.10132897200009, 57.236721096000053 ], [ 12.156504754000082, 57.242905992000033 ], [ 12.09506269600007, 57.250392971000053 ], [ 12.147227410000085, 57.28546784100007 ], [ 12.144053582000083, 57.310126044000071 ], [ 12.104991082000083, 57.344549872000073 ], [ 12.049815300000091, 57.351141669000071 ], [ 12.10873457100007, 57.394354559000078 ], [ 12.06031334700009, 57.394354559000078 ], [ 12.092051629000082, 57.411363023000035 ], [ 12.059255405000044, 57.458807684000078 ], [ 12.006602410000085, 57.434149481000077 ], [ 11.979014519000089, 57.346584377000056 ], [ 11.972178582000083, 57.364081122000073 ], [ 11.933604363000086, 57.360825914000031 ], [ 11.944834832000083, 57.387600002000056 ], [ 11.903330925000091, 57.394354559000078 ], [ 11.915212436000047, 57.403387762000079 ], [ 11.907074415000068, 57.465277411000045 ], [ 11.944834832000083, 57.489935614000046 ], [ 11.910166863000086, 57.503607489000046 ], [ 11.931162957000083, 57.511053778000075 ], [ 11.903330925000091, 57.524115302000041 ], [ 11.91765384200005, 57.539536851000037 ], [ 11.912840095445848, 57.582923907816323 ], [ 12.069320509034242, 57.572558499075456 ], [ 12.30191613132439, 57.616431790194952 ], [ 12.331888462182746, 57.583823961006942 ], [ 12.336849398680783, 57.490832221429855 ], [ 12.415500929324423, 57.435926012375546 ], [ 12.394882033379133, 57.370193590062115 ], [ 12.446558464901216, 57.295056056891497 ], [ 12.514823031857418, 57.298053290426992 ], [ 12.594611444062878, 57.350556546047756 ], [ 12.687990757267642, 57.343580227045834 ], [ 12.770259637272432, 57.296192939352636 ], [ 12.819920688988589, 57.302239081468429 ], [ 12.951488884604316, 57.275961616135646 ], [ 12.930714959028137, 57.23268260421878 ], [ 12.937536248399113, 57.20860138584527 ], [ 13.116595086294183, 57.156976630267252 ], [ 13.089878371389716, 57.110002752824755 ], [ 13.142484978898665, 57.039128525960678 ], [ 13.244442579761255, 57.100907701229403 ], [ 13.412494338143176, 57.120183010037863 ], [ 13.575895216590936, 57.077136542117671 ], [ 13.601526726777024, 57.05264191349346 ], [ 13.606952752167786, 57.021429348285778 ], [ 13.693665805632406, 56.983421332128728 ], [ 13.693045688907375, 56.95321645817296 ], [ 13.641059198123457, 56.912753810839661 ], [ 13.352136265276386, 56.867640286270159 ], [ 13.321285435274604, 56.832086900390095 ], [ 13.308211297313505, 56.701862291011878 ], [ 13.438280877060834, 56.578872382154657 ], [ 13.456264275575847, 56.473840034290106 ], [ 13.501429477888053, 56.42384308489045 ], [ 13.391100294942646, 56.419140529911488 ], [ 13.230644972287621, 56.342814440134305 ], [ 13.192611117708907, 56.338680325036933 ], [ 13.155094027966982, 56.356767076339452 ], [ 12.985181919410024, 56.377179266709788 ], [ 12.985181919410024, 56.434462592574562 ], [ 12.910875189614732, 56.474363357426085 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-I", "NAME_1": "Gotland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.040212436000047, 57.867905992000033 ], [ 19.085215691000087, 57.825751044000071 ], [ 18.986582879000082, 57.807440497000073 ], [ 18.981618686000047, 57.770493882000039 ], [ 18.948741082000083, 57.78266022300005 ], [ 18.932139519000089, 57.75226471600007 ], [ 18.941254102000073, 57.729559637000079 ], [ 18.807139519000089, 57.734442450000074 ], [ 18.81031334700009, 57.709662177000041 ], [ 18.764659050000091, 57.626898505000042 ], [ 18.81031334700009, 57.607326565000051 ], [ 18.76140384200005, 57.507635809000078 ], [ 18.776133660000085, 57.497463283000059 ], [ 18.77320397200009, 57.472235419000071 ], [ 18.803477410000085, 57.469427802000041 ], [ 18.789805535000085, 57.448960679000038 ], [ 18.908864780000044, 57.439154364000046 ], [ 18.926280144000089, 57.392645575000074 ], [ 18.858164910000085, 57.394354559000078 ], [ 18.801524285000085, 57.376206773000035 ], [ 18.680430535000085, 57.310492255000042 ], [ 18.666758660000085, 57.296779690000051 ], [ 18.673675977000073, 57.27765534100007 ], [ 18.710948113000086, 57.274318752000056 ], [ 18.714121941000087, 57.242905992000033 ], [ 18.59148196700005, 57.218695380000042 ], [ 18.564463738000086, 57.209418036000045 ], [ 18.578135613000086, 57.195746161000045 ], [ 18.406423373000052, 57.143011786000045 ], [ 18.385752800000091, 57.127427476000037 ], [ 18.454600457000083, 57.127427476000037 ], [ 18.359873894000089, 57.096136786000045 ], [ 18.344737175000091, 57.082749742000033 ], [ 18.337901238000086, 57.031236070000034 ], [ 18.40007571700005, 57.003973700000074 ], [ 18.344737175000091, 57.003973700000074 ], [ 18.358409050000091, 56.98969147300005 ], [ 18.311534050000091, 56.948065497000073 ], [ 18.203949415000068, 56.915187893000052 ], [ 18.138682488000086, 56.922023830000057 ], [ 18.203868035000085, 56.986273505000042 ], [ 18.20085696700005, 57.017564195000034 ], [ 18.265635613000086, 57.041489976000037 ], [ 18.290212436000047, 57.092718817000048 ], [ 18.223317905000044, 57.060288804000038 ], [ 18.20085696700005, 57.065375067000048 ], [ 18.225108269000089, 57.094916083000044 ], [ 18.214366082000083, 57.113836981000077 ], [ 18.228037957000083, 57.133693752000056 ], [ 18.18531334700009, 57.14484284100007 ], [ 18.15984134200005, 57.229803778000075 ], [ 18.09937584700009, 57.258978583000044 ], [ 18.115570509000065, 57.297023830000057 ], [ 18.165863477000073, 57.331610419000071 ], [ 18.179209832000083, 57.37954336100006 ], [ 18.14616946700005, 57.408026434000078 ], [ 18.113454623000052, 57.487982489000046 ], [ 18.128184441000087, 57.548163153000075 ], [ 18.325043165000068, 57.672593492000033 ], [ 18.463063998000052, 57.803168036000045 ], [ 18.55014082100007, 57.839422919000071 ], [ 18.608653191000087, 57.836330471000053 ], [ 18.677744988000086, 57.913885809000078 ], [ 18.742442254000082, 57.917914130000042 ], [ 18.76929772200009, 57.887844143000052 ], [ 18.764659050000091, 57.865179755000042 ], [ 18.803477410000085, 57.825751044000071 ], [ 18.810720248000052, 57.851223049000055 ], [ 18.844086134000065, 57.873602606000077 ], [ 18.851898634000065, 57.89126211100006 ], [ 18.837412957000083, 57.912176825000074 ], [ 18.85132897200009, 57.915106512000079 ], [ 18.913340691000087, 57.92133209800005 ], [ 18.897959832000083, 57.897650458000044 ], [ 18.917246941000087, 57.88812897300005 ], [ 18.99577884200005, 57.912054755000042 ], [ 19.040212436000047, 57.867905992000033 ] ] ], [ [ [ 19.272959832000083, 57.976548570000034 ], [ 19.338552280000044, 57.963568427000041 ], [ 19.296071811000047, 57.94367096600007 ], [ 19.247894727000073, 57.952460028000075 ], [ 19.161957227000073, 57.925970770000049 ], [ 19.139903191000087, 57.908270575000074 ], [ 19.160329623000052, 57.88031647300005 ], [ 19.129649285000085, 57.846869208000044 ], [ 19.084483269000089, 57.859361070000034 ], [ 19.03679446700005, 57.905218817000048 ], [ 19.098317905000044, 57.976548570000034 ], [ 19.22242272200009, 57.990220445000034 ], [ 19.226735873000052, 57.973700262000079 ], [ 19.272959832000083, 57.976548570000034 ] ] ], [ [ [ 19.33171634200005, 58.367621161000045 ], [ 19.250336134000065, 58.342840887000079 ], [ 19.214121941000087, 58.354681708000044 ], [ 19.187754754000082, 58.394964911000045 ], [ 19.33171634200005, 58.367621161000045 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-U", "NAME_1": "Västmanland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.966437616302926, 59.532128811495397 ], [ 16.893470492569179, 59.509158637161363 ], [ 16.287099236840277, 59.453735663270209 ], [ 16.269839307837799, 59.442056790188701 ], [ 16.274955274866045, 59.424486802823651 ], [ 16.31764000758028, 59.398338527800775 ], [ 16.29857140524615, 59.382809760462067 ], [ 16.175684849176434, 59.358108426262845 ], [ 16.069541457272408, 59.368831284935823 ], [ 16.004635858158338, 59.35857351335693 ], [ 15.914357131276574, 59.287492580917842 ], [ 15.899939406178646, 59.242275703560836 ], [ 15.778603142820771, 59.206205552843983 ], [ 15.804027948331111, 59.236100369336555 ], [ 15.73405805813286, 59.239536852443734 ], [ 15.699124789877146, 59.269974270396233 ], [ 15.627294548604539, 59.297569485343445 ], [ 15.656750116424746, 59.346610419435308 ], [ 15.629619988571619, 59.379476630142335 ], [ 15.638301629016951, 59.403402817985636 ], [ 15.75219648627882, 59.440609850264366 ], [ 15.745530225639413, 59.469600328292472 ], [ 15.717418246754676, 59.491614488218033 ], [ 15.73963911315451, 59.539776923166414 ], [ 15.678970981925261, 59.547631741311761 ], [ 15.640782097715601, 59.627523505405406 ], [ 15.558254836191736, 59.637807115406019 ], [ 15.57453291236402, 59.76077118584152 ], [ 15.539444613578041, 59.806634020143861 ], [ 15.474900749669871, 59.82474660896878 ], [ 15.481256951946762, 59.856605130222533 ], [ 15.454746941717985, 59.883218492339495 ], [ 15.53479373544252, 59.972670396921274 ], [ 15.593136426704689, 59.98011180301728 ], [ 15.662641228909592, 59.964763901932486 ], [ 15.708736607208664, 59.983780830121191 ], [ 15.723516065713852, 60.000394802178334 ], [ 15.708581576678398, 60.077883612838434 ], [ 15.7545219262459, 60.127699693286161 ], [ 15.749716016680793, 60.146845811784772 ], [ 15.815345086206776, 60.178110052936574 ], [ 16.053521762619255, 60.18149485920037 ], [ 16.153619012407489, 60.149197089274196 ], [ 16.177080112257386, 60.097003892915325 ], [ 16.319965448446681, 60.07762523131936 ], [ 16.449518263357163, 60.099536038457359 ], [ 16.553956332918403, 60.175629584237868 ], [ 16.699063755388011, 60.195860908354234 ], [ 16.719372592970785, 60.201622830529175 ], [ 16.71735721226554, 60.215911363518558 ], [ 16.809702995796613, 60.210588690915301 ], [ 16.915691358969013, 60.24565115038024 ], [ 16.928713820086728, 60.277535509156394 ], [ 16.965662469047686, 60.295648097981314 ], [ 17.12033003110605, 60.28417593047476 ], [ 17.226163363748242, 60.309574897563436 ], [ 17.388944126370347, 60.24007009535859 ], [ 17.38568851131572, 60.201312771267339 ], [ 17.307657098296431, 60.077418524845029 ], [ 17.271483594792073, 60.050391751578047 ], [ 17.220582309625854, 60.048324693130041 ], [ 17.165650262149882, 59.997009995914539 ], [ 17.210970493193713, 59.956288967961484 ], [ 17.204459263084516, 59.914689439965628 ], [ 17.180584751185279, 59.884717109107271 ], [ 17.050360141807062, 59.83906098127926 ], [ 17.007210321099421, 59.865131741036976 ], [ 16.858898960418685, 59.884355373901371 ], [ 16.852387730309488, 59.833945014250958 ], [ 16.791357862974962, 59.806892402562312 ], [ 16.900291781940155, 59.668968003770317 ], [ 16.966437616302926, 59.532128811495397 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-F", "NAME_1": "Jönköping" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.116595086294183, 57.156976630267252 ], [ 13.232195264999461, 57.257461452783787 ], [ 13.275035028243963, 57.270871487529121 ], [ 13.315084262628602, 57.317018540872937 ], [ 13.529024691935945, 57.423575343926927 ], [ 13.682658726119314, 57.565117092979449 ], [ 13.694906039981731, 57.63121124870014 ], [ 13.729994337868391, 57.676815701483406 ], [ 13.724413282846683, 57.720198066187777 ], [ 13.766632927567514, 57.780762843730201 ], [ 13.750613233813681, 57.853084011417991 ], [ 13.931687453313316, 57.855486965750856 ], [ 14.018452182722058, 57.828666897159565 ], [ 14.04950971829885, 57.867527574038263 ], [ 14.211980421659121, 57.915948391405095 ], [ 14.250272657756909, 57.953000393153616 ], [ 14.237095167907682, 58.001524563307896 ], [ 14.428556349296059, 58.224379177057358 ], [ 14.485968866370058, 58.153918362242621 ], [ 14.597848342027362, 58.11187958377576 ], [ 14.875144076837671, 58.097177638737037 ], [ 14.91193769706706, 58.111440335103339 ], [ 14.929611037219559, 58.143428045767678 ], [ 14.999787632093557, 58.1538666862985 ], [ 15.102313673737058, 58.014753730000621 ], [ 15.045521274287353, 57.992842922862565 ], [ 15.025212436704578, 57.95594594984567 ], [ 15.024747348711173, 57.914088040330796 ], [ 15.080764600905582, 57.85667552415606 ], [ 15.153525018165055, 57.740300198195541 ], [ 15.1971399268661, 57.723402005298283 ], [ 15.443119744580542, 57.711619778529951 ], [ 15.666982048682598, 57.609145412830514 ], [ 15.612825147562489, 57.557985745245901 ], [ 15.662796257641162, 57.529718735830954 ], [ 15.629464958940673, 57.461350816087247 ], [ 15.603988478385531, 57.447268989572194 ], [ 15.551536898708889, 57.468482163820795 ], [ 15.527507358078083, 57.440111803416983 ], [ 15.527507358078083, 57.345130519757674 ], [ 15.495364617782855, 57.301644802265798 ], [ 15.544870639868122, 57.241157538189782 ], [ 15.550761753252289, 57.211391912906436 ], [ 15.415782912051725, 57.235834866485845 ], [ 15.164687127309037, 57.241932685445022 ], [ 15.174505649316245, 57.197025865551211 ], [ 15.104535760017313, 57.197697659119626 ], [ 14.983767938339668, 57.150051988108714 ], [ 14.929611037219559, 57.159767158227737 ], [ 14.892559034571775, 57.200979111696597 ], [ 14.769052361777085, 57.227721665922104 ], [ 14.404371779034363, 57.156046454280386 ], [ 14.373159213826625, 57.123774522775989 ], [ 14.35378055223066, 57.032462267119911 ], [ 14.389178907580515, 57.000345364347083 ], [ 14.393054640259436, 56.955257677299926 ], [ 14.320707635049303, 56.88849172621218 ], [ 14.243606398016823, 56.908412991066655 ], [ 14.171776156744215, 57.00623647683193 ], [ 14.065322707377049, 57.05018728321653 ], [ 13.951117790853345, 57.038844306019882 ], [ 13.862027622376843, 57.002283229787224 ], [ 13.762085402219498, 57.033263250998232 ], [ 13.693665805632406, 56.983421332128728 ], [ 13.606952752167786, 57.021429348285778 ], [ 13.601526726777024, 57.05264191349346 ], [ 13.575895216590936, 57.077136542117671 ], [ 13.394665968359732, 57.120596422087203 ], [ 13.244442579761255, 57.100907701229403 ], [ 13.142484978898665, 57.039128525960678 ], [ 13.089878371389716, 57.110002752824755 ], [ 13.116595086294183, 57.156976630267252 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-T", "NAME_1": "Orebro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.47558190268262, 59.562514553503831 ], [ 14.474651726695811, 59.626386623843587 ], [ 14.435532668297981, 59.726793931994337 ], [ 14.428091261302654, 59.906576240301206 ], [ 14.418169385608621, 59.925748196322161 ], [ 14.352385288250446, 59.959441230228549 ], [ 14.455893181824877, 60.001764227736885 ], [ 14.451087274058409, 60.036594143205093 ], [ 14.771532829576415, 60.022486477369 ], [ 14.75179243277455, 60.059951891166804 ], [ 14.769155714564533, 60.09845083283966 ], [ 14.848634066608895, 60.120051580715824 ], [ 14.862431674981792, 60.097882392058693 ], [ 14.927440626883424, 60.075506496927289 ], [ 15.238429395600122, 60.015561835210519 ], [ 15.454746941717985, 59.883218492339495 ], [ 15.481256951946762, 59.856605130222533 ], [ 15.474900749669871, 59.82474660896878 ], [ 15.539444613578041, 59.806634020143861 ], [ 15.579028760868596, 59.741004951517255 ], [ 15.5548441906069, 59.675530910722898 ], [ 15.558254836191736, 59.637807115406019 ], [ 15.640782097715601, 59.627523505405406 ], [ 15.678970981925261, 59.547631741311761 ], [ 15.73963911315451, 59.539776923166414 ], [ 15.717418246754676, 59.491614488218033 ], [ 15.745530225639413, 59.469600328292472 ], [ 15.75219648627882, 59.440609850264366 ], [ 15.638301629016951, 59.403402817985636 ], [ 15.629619988571619, 59.379476630142335 ], [ 15.656750116424746, 59.346610419435308 ], [ 15.627294548604539, 59.297569485343445 ], [ 15.699124789877146, 59.269974270396233 ], [ 15.73405805813286, 59.239536852443734 ], [ 15.804027948331111, 59.236100369336555 ], [ 15.771265090411589, 59.196645413255169 ], [ 15.808988884829148, 59.129026801445718 ], [ 15.712457310256639, 59.0947394883367 ], [ 15.644037712770228, 59.045956935763968 ], [ 15.660160760210886, 59.015261135393075 ], [ 15.723619419400677, 58.984513658178741 ], [ 15.603058302398722, 58.957280178437429 ], [ 15.593136426704689, 58.907412421146319 ], [ 15.566936475737748, 58.885036526014858 ], [ 15.400590040597876, 58.841473294157197 ], [ 15.279253778139321, 58.845400702780182 ], [ 15.170939975899159, 58.807857773717274 ], [ 15.011259799600055, 58.699285589957981 ], [ 14.89457441617634, 58.681276353920566 ], [ 14.81153038891631, 58.645516262465492 ], [ 14.746676466645624, 58.672026271795005 ], [ 14.675156283735475, 58.741944485149816 ], [ 14.644408807420518, 58.741531073999852 ], [ 14.589011671951084, 58.709078274442788 ], [ 14.496407505102241, 58.734606431841314 ], [ 14.480232781717461, 58.779668281366071 ], [ 14.399875928731092, 58.859766751034726 ], [ 14.398325636019251, 58.894389960028604 ], [ 14.312646112228265, 59.016346341010774 ], [ 14.33223148029856, 59.096444811578749 ], [ 14.30985558426778, 59.207342434405803 ], [ 14.32990604033148, 59.300515042035556 ], [ 14.417239211420451, 59.436475735166994 ], [ 14.467830438224155, 59.472158312256283 ], [ 14.468760614210964, 59.498177395170615 ], [ 14.436359490598022, 59.51833120402182 ], [ 14.429486525282925, 59.540810451940786 ], [ 14.445196160674243, 59.565305081464317 ], [ 14.47558190268262, 59.562514553503831 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SE-G", "NAME_1": "Kronoberg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.501429477888053, 56.42384308489045 ], [ 13.456264275575847, 56.473840034290106 ], [ 13.438280877060834, 56.578872382154657 ], [ 13.308211297313505, 56.701862291011878 ], [ 13.321285435274604, 56.832086900390095 ], [ 13.352136265276386, 56.867640286270159 ], [ 13.641059198123457, 56.912753810839661 ], [ 13.693045688907375, 56.95321645817296 ], [ 13.693665805632406, 56.983421332128728 ], [ 13.762085402219498, 57.033263250998232 ], [ 13.862027622376843, 57.002283229787224 ], [ 13.951117790853345, 57.038844306019882 ], [ 14.065322707377049, 57.05018728321653 ], [ 14.171776156744215, 57.00623647683193 ], [ 14.243606398016823, 56.908412991066655 ], [ 14.320707635049303, 56.88849172621218 ], [ 14.393054640259436, 56.955257677299926 ], [ 14.389178907580515, 57.000345364347083 ], [ 14.35378055223066, 57.032462267119911 ], [ 14.373159213826625, 57.123774522775989 ], [ 14.404371779034363, 57.156046454280386 ], [ 14.808739861855145, 57.227773342765545 ], [ 14.892559034571775, 57.200979111696597 ], [ 14.929611037219559, 57.159767158227737 ], [ 15.000872836811936, 57.151447252088985 ], [ 15.104535760017313, 57.197697659119626 ], [ 15.174505649316245, 57.197025865551211 ], [ 15.164687127309037, 57.241932685445022 ], [ 15.370152621746058, 57.238780423177957 ], [ 15.57623823380743, 57.199351305518292 ], [ 15.591431105261279, 57.156666571904736 ], [ 15.67261477964837, 57.13015656257528 ], [ 15.805578241042952, 57.020499173198232 ], [ 15.846402621783568, 56.958229072413758 ], [ 15.835550571002045, 56.926809800731689 ], [ 15.782633905130581, 56.908102931804819 ], [ 15.665018344820737, 56.901643378539063 ], [ 15.574842969827159, 56.924070950513908 ], [ 15.534638705811631, 56.911151842183756 ], [ 15.55618777774373, 56.814930325074442 ], [ 15.394078809589359, 56.767698066112814 ], [ 15.419038527106352, 56.677729396694247 ], [ 15.409116652311639, 56.569544786562631 ], [ 15.368602329034218, 56.531872667189816 ], [ 15.354959751191529, 56.500143338044609 ], [ 15.363021274012567, 56.482134101107874 ], [ 15.342557406798846, 56.469344183986891 ], [ 15.246956008213203, 56.467457994490815 ], [ 15.215743442106145, 56.443066717754789 ], [ 15.121433953813892, 56.462652085825084 ], [ 15.003043247148128, 56.451128242374466 ], [ 14.947956170041209, 56.398573309910319 ], [ 14.869563022715283, 56.379091295526848 ], [ 14.725127393814148, 56.401958116174114 ], [ 14.540745884215141, 56.477483222073033 ], [ 14.277764519916673, 56.523914496256964 ], [ 14.162319369942963, 56.523320217953653 ], [ 14.108937616078094, 56.542233792455534 ], [ 14.063307325772428, 56.525516465812245 ], [ 14.041861606627833, 56.492676093526882 ], [ 13.993337437372816, 56.479240221259204 ], [ 13.501429477888053, 56.42384308489045 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/switzerland.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/switzerland.geojson new file mode 100644 index 000000000000..4b0636ef7794 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/switzerland.geojson @@ -0,0 +1,32 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "CH-VS", "NAME_1": "Valais" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.84962011600004, 45.939712062000112 ], [ 7.848388712000116, 45.938075663000077 ], [ 7.845288127000089, 45.927792053000061 ], [ 7.846114949000111, 45.922572733000052 ], [ 7.843737833000148, 45.919213766000055 ], [ 7.831232137000143, 45.914459534000045 ], [ 7.825444376000092, 45.914666239 ], [ 7.807564331000037, 45.918490296000058 ], [ 7.780072469000061, 45.918128561000046 ], [ 7.732013387000109, 45.930375875000081 ], [ 7.72219486500012, 45.929600728000068 ], [ 7.714650105000089, 45.92712026 ], [ 7.706278523, 45.925724997000103 ], [ 7.693979533000061, 45.928670553000117 ], [ 7.692532593000067, 45.931202698 ], [ 7.673722371000053, 45.950322978000102 ], [ 7.6587362060001, 45.960038147000049 ], [ 7.643026571000121, 45.966342672000039 ], [ 7.541120646000138, 45.984119365000069 ], [ 7.524377482000091, 45.978073223000038 ], [ 7.514662312000041, 45.966704407000051 ], [ 7.503706909000073, 45.956730855000032 ], [ 7.482726278000058, 45.954870504000027 ], [ 7.452960652000087, 45.945878805000078 ], [ 7.393842814000038, 45.915699768000096 ], [ 7.361803426000108, 45.907844951000058 ], [ 7.286665893000105, 45.913426005000062 ], [ 7.273540079000043, 45.910273743000019 ], [ 7.245428100000083, 45.898129782000112 ], [ 7.183726440000044, 45.880456442000096 ], [ 7.153547404000022, 45.87652903300004 ], [ 7.120887899000138, 45.876115621000039 ], [ 7.090192097000113, 45.880508118000122 ], [ 7.066937703000093, 45.890223288000058 ], [ 7.022082560000115, 45.92525990899999 ], [ 7.015157918000114, 45.933321431000067 ], [ 7.009783569000149, 45.943398336000101 ], [ 7.002755575000066, 45.961691793000071 ], [ 6.991283406000122, 45.982465719000018 ], [ 6.987666056000052, 45.993111064000018 ], [ 6.982808471000055, 45.995384827000052 ], [ 6.91511234500004, 46.0486115530001 ], [ 6.892374715000074, 46.0555878710001 ], [ 6.884003133000078, 46.053210755000052 ], [ 6.876871786000066, 46.048094788000057 ], [ 6.869223673000079, 46.044064026000072 ], [ 6.859715210000104, 46.044994202000012 ], [ 6.850930216000108, 46.049645081000065 ], [ 6.850310099000126, 46.052745667000025 ], [ 6.852377156000102, 46.056931458000051 ], [ 6.851963745000091, 46.064682922000074 ], [ 6.853410685000085, 46.06566477500003 ], [ 6.853100627000089, 46.076103414000059 ], [ 6.851343628000109, 46.086025290000052 ], [ 6.848553100000061, 46.085043437000095 ], [ 6.853100627000089, 46.090211081000106 ], [ 6.861162150000098, 46.097032369000047 ], [ 6.868190144000096, 46.104680482000035 ], [ 6.869223673000079, 46.1123285930001 ], [ 6.853927449000111, 46.122612203000088 ], [ 6.774345743000083, 46.134807841000011 ], [ 6.765664103000034, 46.151602681000085 ], [ 6.774862508000126, 46.18586415599999 ], [ 6.792225789000071, 46.221675924000024 ], [ 6.827675822000089, 46.269476624 ], [ 6.804938192000094, 46.296606751000084 ], [ 6.769488159000076, 46.322677511000066 ], [ 6.750367879000095, 46.345518494000075 ], [ 6.755742228000145, 46.357068177000102 ], [ 6.782097209000113, 46.378462220000117 ], [ 6.789228556000126, 46.395205383000061 ], [ 6.78810673300012, 46.405007978000057 ], [ 6.807006055984687, 46.404247952181208 ], [ 6.854600050152158, 46.397736721172691 ], [ 6.866588983394877, 46.402697659469368 ], [ 6.873306919079027, 46.395462958049052 ], [ 6.888138055326976, 46.383318996974083 ], [ 6.894494255805228, 46.374766546838657 ], [ 6.894339227073658, 46.369624742288011 ], [ 6.891858758375008, 46.362958482547924 ], [ 6.890773552757253, 46.355517076451918 ], [ 6.894494255805228, 46.348075670355854 ], [ 6.906896600197911, 46.342184556971688 ], [ 6.920332471566326, 46.340220852210564 ], [ 6.931029493616222, 46.334329738826341 ], [ 6.935473667076053, 46.316708076416546 ], [ 6.940124546110894, 46.307613023022554 ], [ 7.003686558088191, 46.230873522095351 ], [ 7.026062453219652, 46.209970405309946 ], [ 7.033452183371537, 46.200151883302738 ], [ 7.04487267403465, 46.189868272402805 ], [ 7.083164911031815, 46.2048544382817 ], [ 7.116082797682964, 46.219814764839498 ], [ 7.139647251219628, 46.240123603321592 ], [ 7.151171094670246, 46.24358592395123 ], [ 7.170239698803073, 46.257021796218908 ], [ 7.184192335907539, 46.270638536539195 ], [ 7.195974561776609, 46.284927070427955 ], [ 7.199746941668025, 46.292471829311467 ], [ 7.197989943381174, 46.305700995104814 ], [ 7.198455031374579, 46.308853258271256 ], [ 7.215714958578474, 46.321927395332978 ], [ 7.227807244608641, 46.33143585897767 ], [ 7.262585483233465, 46.345672716022989 ], [ 7.270336947691987, 46.354741930095997 ], [ 7.270647006953823, 46.358307604412403 ], [ 7.271112094947227, 46.361149807417632 ], [ 7.272507358028122, 46.362622585763688 ], [ 7.275918002713638, 46.363992011322239 ], [ 7.30831912632658, 46.371588447049191 ], [ 7.314261915654868, 46.371588447049191 ], [ 7.317052442716033, 46.369366359869559 ], [ 7.317672560340384, 46.362338364923573 ], [ 7.316742384353518, 46.357377428425536 ], [ 7.316587354722628, 46.354225165259152 ], [ 7.317672560340384, 46.351899726191391 ], [ 7.323718703355439, 46.350607814998625 ], [ 7.329609815840342, 46.348540758349316 ], [ 7.3672819352131, 46.357222397895328 ], [ 7.390122918338022, 46.368177802363675 ], [ 7.399734734770163, 46.376239326084033 ], [ 7.401905145106355, 46.377634589164927 ], [ 7.404230584174115, 46.378564765151793 ], [ 7.418648309272044, 46.380735175487928 ], [ 7.462263217973145, 46.381045233850443 ], [ 7.48618940581639, 46.376084296453087 ], [ 7.488824904145986, 46.375050768578092 ], [ 7.494716016630832, 46.373991401382057 ], [ 7.500917189276834, 46.374146430113626 ], [ 7.509598829722222, 46.375670885303066 ], [ 7.545307245233175, 46.38621287682281 ], [ 7.559879998163353, 46.395204576529977 ], [ 7.546857537045696, 46.400268866714782 ], [ 7.54096642366153, 46.405643216161479 ], [ 7.563910759573901, 46.415539252534472 ], [ 7.597758823111178, 46.422644761846243 ], [ 7.600859409434179, 46.425021877757445 ], [ 7.611556430584812, 46.430912991141611 ], [ 7.613726840920947, 46.433031725533681 ], [ 7.614967075270272, 46.436752428581713 ], [ 7.616517367982112, 46.439697984374448 ], [ 7.619617954305113, 46.441610012292188 ], [ 7.624423862071581, 46.443367011478358 ], [ 7.64519778764776, 46.441403306717234 ], [ 7.711343621111212, 46.419440822735737 ], [ 7.723125847879544, 46.420164293147593 ], [ 7.844927199230824, 46.481297512370247 ], [ 7.856554396368267, 46.478842882093318 ], [ 7.871747266922796, 46.478868720515038 ], [ 7.880790642574084, 46.479953925233417 ], [ 7.901874627412099, 46.485586656199189 ], [ 7.938513218010598, 46.503518377870819 ], [ 7.96610843295781, 46.515714015789172 ], [ 7.969209019280811, 46.518607897436482 ], [ 7.972929722328786, 46.523620509878583 ], [ 7.972774691798577, 46.526824448989089 ], [ 7.971379428717626, 46.530183416831221 ], [ 7.969209019280811, 46.533464871206832 ], [ 7.966573520951215, 46.536384589477223 ], [ 7.965023228239374, 46.538580838235077 ], [ 7.965178256970944, 46.539950262894308 ], [ 7.9670386080453, 46.541448880561347 ], [ 7.970449252730816, 46.543515937210714 ], [ 8.003057081918769, 46.557442734994197 ], [ 8.028791944892305, 46.558398749402727 ], [ 8.114161411220152, 46.547159124993584 ], [ 8.122688022933914, 46.542068997286378 ], [ 8.146717563564721, 46.534782619921941 ], [ 8.173434279368507, 46.53281891516076 ], [ 8.174829543348721, 46.532198798435786 ], [ 8.175139600811917, 46.53033844736143 ], [ 8.175139600811917, 46.527754624975955 ], [ 8.176069776798727, 46.524550685865449 ], [ 8.179325391853354, 46.522845364421983 ], [ 8.1844413588816, 46.521760158804284 ], [ 8.190332472265766, 46.521915188435173 ], [ 8.24247399268063, 46.529304917687796 ], [ 8.266400181423194, 46.535196031071962 ], [ 8.312443881979561, 46.553024399956087 ], [ 8.323037550342633, 46.559303086967873 ], [ 8.338695508890623, 46.566253567548074 ], [ 8.349082471678685, 46.57348826806907 ], [ 8.354198438706987, 46.578500882309868 ], [ 8.358384229748367, 46.584185289219704 ], [ 8.36350019677667, 46.60609609635776 ], [ 8.369546339791725, 46.621754054905693 ], [ 8.373577101202272, 46.629712225838546 ], [ 8.379519891429823, 46.638083807921362 ], [ 8.398588494663272, 46.654516912825216 ], [ 8.409440545444795, 46.655653795286412 ], [ 8.417657097896722, 46.652940781691711 ], [ 8.419982536964483, 46.650331121783836 ], [ 8.421687860206589, 46.645938626066709 ], [ 8.421222772213127, 46.637412014352947 ], [ 8.419052361876993, 46.625061346803705 ], [ 8.415641717191477, 46.614209296022182 ], [ 8.408510370357305, 46.597982896693281 ], [ 8.407580194370439, 46.593176988027551 ], [ 8.408820427820501, 46.58738922833021 ], [ 8.411610954881667, 46.581188056583528 ], [ 8.422152948199994, 46.562997952493504 ], [ 8.437397494698587, 46.546616523533714 ], [ 8.476929966045077, 46.531837063229887 ], [ 8.447629428755135, 46.504551907544453 ], [ 8.430989618276271, 46.496955470918238 ], [ 8.408045282363901, 46.495043443000498 ], [ 8.399208612287623, 46.493157254403741 ], [ 8.395952996333676, 46.490857651959061 ], [ 8.395487909239591, 46.488480536047859 ], [ 8.396728142689597, 46.486516832186055 ], [ 8.397038201951432, 46.484553128324194 ], [ 8.396418084327138, 46.482382717088683 ], [ 8.391302118198212, 46.475664781404532 ], [ 8.387116327156775, 46.468533434570304 ], [ 8.384635857558749, 46.462073880405228 ], [ 8.385566034444935, 46.454580797465781 ], [ 8.385876091908131, 46.450601711999411 ], [ 8.385906925000114, 46.450206018000088 ], [ 8.343448934000037, 46.443884583000099 ], [ 8.316267130000142, 46.433652649000024 ], [ 8.294976441000074, 46.41804636600007 ], [ 8.286604859000079, 46.405359803000024 ], [ 8.290428914000131, 46.401122335000068 ], [ 8.297043497000118, 46.397634176000039 ], [ 8.297456909000033, 46.387505596000082 ], [ 8.291462443000114, 46.378358866 ], [ 8.281540568000111, 46.370116475000046 ], [ 8.270068400000099, 46.364044495000101 ], [ 8.241749715000111, 46.354122620000012 ], [ 8.192553752000038, 46.309164124000077 ], [ 8.171883178000115, 46.29919057299999 ], [ 8.128474975000131, 46.292472636000056 ], [ 8.106874227000048, 46.285547995000073 ], [ 8.087340535000038, 46.271802063000038 ], [ 8.077315307000021, 46.262035218000094 ], [ 8.073077840000082, 46.253611959000082 ], [ 8.076591837000109, 46.249736226000053 ], [ 8.099949585000076, 46.235628561000013 ], [ 8.129508504000114, 46.196044413000052 ], [ 8.132299032000077, 46.159354147000087 ], [ 8.110594930000076, 46.12695302300007 ], [ 8.066876668000077, 46.100598043000033 ], [ 8.056024617000048, 46.09806589800003 ], [ 8.035354044000115, 46.096515605000022 ], [ 8.025328817000087, 46.091141256000057 ], [ 8.018197469000143, 46.080857646000069 ], [ 8.016027059000066, 46.069385478000058 ], [ 8.015923706000137, 46.058171692000101 ], [ 8.010652710000102, 46.029697978000073 ], [ 8.008792358000107, 46.027682597000094 ], [ 7.999077189000076, 46.01279978400008 ], [ 7.998353719000079, 46.010629375000079 ], [ 7.985848022000084, 45.999312236000023 ], [ 7.978716674000026, 45.99517812100008 ], [ 7.969104858000037, 45.993111064000018 ], [ 7.898204794000065, 45.981948954000089 ], [ 7.883781986184766, 45.973868674622011 ], [ 7.872917431422034, 45.959382601605029 ], [ 7.870201292731351, 45.940369630770249 ], [ 7.84962011600004, 45.939712062000112 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-TI", "NAME_1": "Ticino" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.728973717163285, 46.108235732892751 ], [ 8.723890828000094, 46.109538066000042 ], [ 8.717689656000118, 46.107522685 ], [ 8.702186727000111, 46.097962545000101 ], [ 8.695055379000081, 46.095172018000042 ], [ 8.677485392000079, 46.095792135000025 ], [ 8.630873250000121, 46.114705709000063 ], [ 8.611546264000083, 46.119356588000116 ], [ 8.601831095000136, 46.12281890900006 ], [ 8.538682495000074, 46.187621155000059 ], [ 8.510260457000072, 46.207878317000066 ], [ 8.482665242000053, 46.217541809000082 ], [ 8.456516968000045, 46.224828187000085 ], [ 8.438120158000061, 46.235370178000053 ], [ 8.427164754000074, 46.251441549 ], [ 8.423237345000103, 46.275832825000052 ], [ 8.426647990000049, 46.30156768800002 ], [ 8.442874389000053, 46.353373312000102 ], [ 8.446285034000084, 46.38218292300003 ], [ 8.445768270000116, 46.412361959000023 ], [ 8.441634155000116, 46.434944560000062 ], [ 8.427888224000071, 46.448690491000022 ], [ 8.399156128000072, 46.45217865000005 ], [ 8.385906925000114, 46.450206018000088 ], [ 8.385876091908131, 46.450601711999411 ], [ 8.385566034444935, 46.454580797465781 ], [ 8.384635857558749, 46.462073880405228 ], [ 8.387116327156775, 46.468533434570304 ], [ 8.391302118198212, 46.475664781404532 ], [ 8.396418084327138, 46.482382717088683 ], [ 8.397038201951432, 46.484553128324194 ], [ 8.396728142689597, 46.486516832186055 ], [ 8.395487909239591, 46.488480536047859 ], [ 8.395952996333676, 46.490857651959061 ], [ 8.399208612287623, 46.493157254403741 ], [ 8.408045282363901, 46.495043443000498 ], [ 8.430989618276271, 46.496955470918238 ], [ 8.447629428755135, 46.504551907544453 ], [ 8.476929966045077, 46.531837063229887 ], [ 8.509847852696225, 46.550853990519215 ], [ 8.512173292663306, 46.556047471913246 ], [ 8.516049025342227, 46.562584540444163 ], [ 8.523800489800749, 46.578500882309868 ], [ 8.526280959398719, 46.580903835743413 ], [ 8.529691603184915, 46.583074246079548 ], [ 8.537133009280922, 46.584547024425603 ], [ 8.54865685363086, 46.584986273997345 ], [ 8.636300083082347, 46.57116282810199 ], [ 8.677899611078203, 46.583591010017074 ], [ 8.711230909778635, 46.573023180075666 ], [ 8.788383822755179, 46.56813975704415 ], [ 8.847346633440395, 46.575245266355921 ], [ 8.898092888975611, 46.589249579404566 ], [ 8.907704705407809, 46.594158840857801 ], [ 8.909875115744001, 46.597466131856493 ], [ 8.90925499811965, 46.600721746911063 ], [ 8.907084587783459, 46.603822333234064 ], [ 8.90599938306508, 46.608318183537335 ], [ 8.90754967577692, 46.613330796878756 ], [ 8.9148360531413, 46.620358791824742 ], [ 8.921812371243902, 46.623045966098459 ], [ 8.929563835702425, 46.625113022747769 ], [ 8.939227328978063, 46.626611640414865 ], [ 8.94744388232931, 46.63208934174969 ], [ 8.95302493735096, 46.632347724168085 ], [ 8.955970493143752, 46.630642401825355 ], [ 8.957055697862131, 46.62537140606554 ], [ 8.959846225822673, 46.620410467768863 ], [ 8.964807163219973, 46.614829412747156 ], [ 8.998810256388197, 46.612503974578715 ], [ 9.003771192886234, 46.61108287217678 ], [ 9.010747510988836, 46.608137315484726 ], [ 9.022064649763763, 46.604881700430099 ], [ 9.035242139613047, 46.596174221563047 ], [ 9.037722609211016, 46.593848782495286 ], [ 9.038497755566937, 46.590722357750565 ], [ 9.036482374861691, 46.586872464392684 ], [ 9.029040967866365, 46.577183132695382 ], [ 9.025630324080169, 46.571266180889495 ], [ 9.022839797019003, 46.564031480368499 ], [ 9.021134473776954, 46.557778631778433 ], [ 9.019119093071652, 46.545893053121858 ], [ 9.017568801259131, 46.540518704574538 ], [ 9.016018507647971, 46.536539619108112 ], [ 9.01524336129205, 46.533464871206832 ], [ 9.021444533038732, 46.514215399920772 ], [ 9.024080031368328, 46.508892727317459 ], [ 9.02702558806044, 46.504293525126059 ], [ 9.037722609211016, 46.491839504789311 ], [ 9.048574659992539, 46.480884101220283 ], [ 9.055602654938582, 46.478713690884092 ], [ 9.057773065274716, 46.479592190027518 ], [ 9.062268913779349, 46.480832424376842 ], [ 9.077306755602251, 46.482331041144619 ], [ 9.088778924008125, 46.467396552109165 ], [ 9.08908898326996, 46.461427924359214 ], [ 9.088623895276555, 46.453340563116456 ], [ 9.086608513671933, 46.442385159547428 ], [ 9.08831383601472, 46.434013577464611 ], [ 9.092034539062695, 46.427011420040969 ], [ 9.096995477359371, 46.420215969091657 ], [ 9.097770622815972, 46.416133530837726 ], [ 9.095445183748211, 46.411766873542376 ], [ 9.092189568693641, 46.402077541845074 ], [ 9.088003777652204, 46.393912665337211 ], [ 9.08908898326996, 46.363681952060404 ], [ 9.085523308953555, 46.356757310801243 ], [ 9.07017540876808, 46.336810208424367 ], [ 9.06847008642535, 46.33006643341912 ], [ 9.06924523278127, 46.323426012100754 ], [ 9.070950555124, 46.317173163510688 ], [ 9.06924523278127, 46.312315578900836 ], [ 9.065214471370723, 46.30580434789232 ], [ 9.056997918019476, 46.298983059420607 ], [ 9.056532830026072, 46.294926458689076 ], [ 9.058083122737912, 46.289965522191096 ], [ 9.066144647357589, 46.275961209142451 ], [ 9.076531610145651, 46.261620999309628 ], [ 9.077151726870682, 46.257900296261653 ], [ 9.077461786132517, 46.252913520442576 ], [ 9.074516229440405, 46.240071926478208 ], [ 9.076376579615442, 46.234800929819016 ], [ 9.079632195569332, 46.229555772480865 ], [ 9.0875386896588, 46.220589911195418 ], [ 9.094204950298206, 46.216455796997423 ], [ 9.110689731146181, 46.20849762606457 ], [ 9.131618687252626, 46.190798448389671 ], [ 9.140300326798638, 46.184881497483104 ], [ 9.163141309923503, 46.173150947558156 ], [ 9.163348016397833, 46.173099269815452 ], [ 9.163788024997359, 46.172989267440698 ], [ 9.163243856000065, 46.172273255 ], [ 9.090586792000124, 46.138166809000026 ], [ 9.072086629000097, 46.118891500000089 ], [ 9.068159220000041, 46.105972392000083 ], [ 9.07032963100005, 46.083441467000071 ], [ 9.067125692000076, 46.071142477000123 ], [ 9.059167521000091, 46.06178904299999 ], [ 9.049659057000014, 46.057913310000018 ], [ 9.027748250000059, 46.053107402000123 ], [ 9.002116740000105, 46.039309795000079 ], [ 8.997775919000105, 46.027940979000093 ], [ 9.015552612000135, 45.993111064000018 ], [ 8.982686401000109, 45.971975403000087 ], [ 8.980515991000118, 45.96949493400011 ], [ 8.979792521000121, 45.96691111299999 ], [ 8.980515991000118, 45.96437896800002 ], [ 8.982686401000109, 45.961846822000027 ], [ 8.993435099000124, 45.954250387000073 ], [ 9.001703329000094, 45.936060283000117 ], [ 9.010798380000068, 45.926655172000054 ], [ 9.0205135490001, 45.922779440000014 ], [ 9.042321004000115, 45.919730530000081 ], [ 9.051726115000065, 45.915544739000055 ], [ 9.063094930000148, 45.898956604000048 ], [ 9.059270874000021, 45.881955058000116 ], [ 9.034362834000149, 45.848106995000123 ], [ 9.002426798000073, 45.82071848599999 ], [ 8.972351115, 45.824645895000046 ], [ 8.939588257000111, 45.834826152000019 ], [ 8.908884719317435, 45.828292631305978 ], [ 8.900004109000065, 45.826402893000122 ], [ 8.903724812000064, 45.841802470000104 ], [ 8.909719279000086, 45.853688050000031 ], [ 8.9137500410001, 45.866090393000022 ], [ 8.912096394000031, 45.88340199800011 ], [ 8.906515340000112, 45.896476135000071 ], [ 8.89814375800006, 45.909550273000022 ], [ 8.880780476000041, 45.931099345000078 ], [ 8.870961954000052, 45.947067363000102 ], [ 8.864450724000079, 45.953423564000033 ], [ 8.857732788000078, 45.957092591000034 ], [ 8.800371948000077, 45.978538310000047 ], [ 8.785075724000109, 45.982310690000091 ], [ 8.767919149000079, 45.983085836 ], [ 8.769572794000112, 45.985773010000017 ], [ 8.773396850000069, 45.990578919000129 ], [ 8.790966838000116, 46.01869089800006 ], [ 8.819595581000101, 46.042927145000064 ], [ 8.834375041000015, 46.066388245000027 ], [ 8.808950236000101, 46.089745993000079 ], [ 8.793860717000115, 46.093415019000062 ], [ 8.763164917000068, 46.092898255000037 ], [ 8.747145223000103, 46.094448548000045 ], [ 8.739497111000048, 46.09806589800003 ], [ 8.732159057000047, 46.107419332000077 ], [ 8.728973717163285, 46.108235732892751 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-GR", "NAME_1": "Graubünden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.22483143702118, 46.23118805818234 ], [ 9.215747111000042, 46.221055807000042 ], [ 9.204171590000101, 46.213562724000028 ], [ 9.192182658000121, 46.209635315000057 ], [ 9.181330607000092, 46.204054260000035 ], [ 9.17574955200007, 46.194132385000032 ], [ 9.171098673000103, 46.182608541000022 ], [ 9.163788024997359, 46.172989267440698 ], [ 9.163348016397833, 46.173099269815452 ], [ 9.163141309923503, 46.173150947558156 ], [ 9.140300326798638, 46.184881497483104 ], [ 9.131618687252626, 46.190798448389671 ], [ 9.110689731146181, 46.20849762606457 ], [ 9.094204950298206, 46.216455796997423 ], [ 9.0875386896588, 46.220589911195418 ], [ 9.079632195569332, 46.229555772480865 ], [ 9.076376579615442, 46.234800929819016 ], [ 9.074516229440405, 46.240071926478208 ], [ 9.077461786132517, 46.252913520442576 ], [ 9.077151726870682, 46.257900296261653 ], [ 9.076531610145651, 46.261620999309628 ], [ 9.066144647357589, 46.275961209142451 ], [ 9.058083122737912, 46.289965522191096 ], [ 9.056532830026072, 46.294926458689076 ], [ 9.056997918019476, 46.298983059420607 ], [ 9.065214471370723, 46.30580434789232 ], [ 9.06924523278127, 46.312315578900836 ], [ 9.070950555124, 46.317173163510688 ], [ 9.06924523278127, 46.323426012100754 ], [ 9.06847008642535, 46.33006643341912 ], [ 9.07017540876808, 46.336810208424367 ], [ 9.085523308953555, 46.356757310801243 ], [ 9.08908898326996, 46.363681952060404 ], [ 9.088003777652204, 46.393912665337211 ], [ 9.092189568693641, 46.402077541845074 ], [ 9.095445183748211, 46.411766873542376 ], [ 9.097770622815972, 46.416133530837726 ], [ 9.096995477359371, 46.420215969091657 ], [ 9.092034539062695, 46.427011420040969 ], [ 9.08831383601472, 46.434013577464611 ], [ 9.086608513671933, 46.442385159547428 ], [ 9.088623895276555, 46.453340563116456 ], [ 9.08908898326996, 46.461427924359214 ], [ 9.088778924008125, 46.467396552109165 ], [ 9.077306755602251, 46.482331041144619 ], [ 9.062268913779349, 46.480832424376842 ], [ 9.057773065274716, 46.479592190027518 ], [ 9.055602654938582, 46.478713690884092 ], [ 9.048574659992539, 46.480884101220283 ], [ 9.037722609211016, 46.491839504789311 ], [ 9.02702558806044, 46.504293525126059 ], [ 9.024080031368328, 46.508892727317459 ], [ 9.021444533038732, 46.514215399920772 ], [ 9.01524336129205, 46.533464871206832 ], [ 9.016018507647971, 46.536539619108112 ], [ 9.017568801259131, 46.540518704574538 ], [ 9.019119093071652, 46.545893053121858 ], [ 9.021134473776954, 46.557778631778433 ], [ 9.022839797019003, 46.564031480368499 ], [ 9.025630324080169, 46.571266180889495 ], [ 9.029040967866365, 46.577183132695382 ], [ 9.036482374861691, 46.586872464392684 ], [ 9.038497755566937, 46.590722357750565 ], [ 9.037722609211016, 46.593848782495286 ], [ 9.035242139613047, 46.596174221563047 ], [ 9.022064649763763, 46.604881700430099 ], [ 9.010747510988836, 46.608137315484726 ], [ 9.003771192886234, 46.61108287217678 ], [ 8.998810256388197, 46.612503974578715 ], [ 8.964807163219973, 46.614829412747156 ], [ 8.959846225822673, 46.620410467768863 ], [ 8.957055697862131, 46.62537140606554 ], [ 8.955970493143752, 46.630642401825355 ], [ 8.95302493735096, 46.632347724168085 ], [ 8.94744388232931, 46.63208934174969 ], [ 8.939227328978063, 46.626611640414865 ], [ 8.929563835702425, 46.625113022747769 ], [ 8.921812371243902, 46.623045966098459 ], [ 8.9148360531413, 46.620358791824742 ], [ 8.90754967577692, 46.613330796878756 ], [ 8.90599938306508, 46.608318183537335 ], [ 8.907084587783459, 46.603822333234064 ], [ 8.90925499811965, 46.600721746911063 ], [ 8.909875115744001, 46.597466131856493 ], [ 8.907704705407809, 46.594158840857801 ], [ 8.898092888975611, 46.589249579404566 ], [ 8.847346633440395, 46.575245266355921 ], [ 8.788383822755179, 46.56813975704415 ], [ 8.711230909778635, 46.573023180075666 ], [ 8.677899611078203, 46.583591010017074 ], [ 8.680845167770258, 46.597156074393297 ], [ 8.678674758333443, 46.605346788423503 ], [ 8.673403760774931, 46.617490750397792 ], [ 8.670923292975601, 46.620668850187258 ], [ 8.666892530665734, 46.622632554948439 ], [ 8.662396681261839, 46.624157009238559 ], [ 8.658986036576323, 46.625888170003009 ], [ 8.655988803940147, 46.62901459384841 ], [ 8.653973423234902, 46.633071194579941 ], [ 8.65273318888552, 46.638755602389097 ], [ 8.65350833524144, 46.644284980567363 ], [ 8.660536330187483, 46.659968777537017 ], [ 8.667822706652601, 46.67136342977841 ], [ 8.66952802899533, 46.676531074549416 ], [ 8.669993116988735, 46.680484320694802 ], [ 8.669217969733495, 46.683093979703358 ], [ 8.669062941001926, 46.686349596556624 ], [ 8.672628615318331, 46.690535386698684 ], [ 8.679449903789987, 46.694643663374336 ], [ 8.695727979962271, 46.699630439193413 ], [ 8.705804884387874, 46.701129055061813 ], [ 8.715623407294402, 46.70495311089735 ], [ 8.738877800669968, 46.72577871421629 ], [ 8.748799676363944, 46.733013413837966 ], [ 8.766317986885554, 46.737250881722787 ], [ 8.781252475921008, 46.733556017096475 ], [ 8.785283237331498, 46.733271796256361 ], [ 8.800321079154457, 46.735597236223441 ], [ 8.803731723839974, 46.737199204879403 ], [ 8.80714236762617, 46.740558172721478 ], [ 8.806212191639304, 46.74965322521615 ], [ 8.806522250901139, 46.7509968132523 ], [ 8.807607455619575, 46.753167222689171 ], [ 8.815668980239252, 46.762675686333807 ], [ 8.824815707778669, 46.770582180423276 ], [ 8.826262647703004, 46.778953762506092 ], [ 8.825590855033909, 46.790813504539585 ], [ 8.828433058039195, 46.793268133917195 ], [ 8.835874465034522, 46.794508369165897 ], [ 8.842850783137123, 46.796368720240196 ], [ 8.84951704287721, 46.801329658536872 ], [ 8.860834180752818, 46.805618801466494 ], [ 8.87168623243366, 46.815437324373022 ], [ 8.892511833953961, 46.81476552990523 ], [ 8.902898796742079, 46.812155869997355 ], [ 8.907704705407809, 46.811561590794781 ], [ 8.909565057381485, 46.808900254942785 ], [ 8.911890496449246, 46.802259832725099 ], [ 8.915766229128167, 46.800399482550063 ], [ 8.925223015929419, 46.800554511281632 ], [ 8.980465121767963, 46.81228506120658 ], [ 9.003151076161203, 46.819623115414402 ], [ 9.017413770728922, 46.828795681375595 ], [ 9.024700148093359, 46.835384425850521 ], [ 9.029661086390036, 46.842515774483388 ], [ 9.03260664218277, 46.847476711880745 ], [ 9.035397170143256, 46.851533311712956 ], [ 9.038187697204421, 46.854608058714916 ], [ 9.039427930654483, 46.858044541822096 ], [ 9.039272901922857, 46.865718491914834 ], [ 9.040048049178097, 46.869387519018744 ], [ 9.042373488245858, 46.871764634929946 ], [ 9.049039747985944, 46.873986721210201 ], [ 9.058858269993152, 46.875433661134537 ], [ 9.075446405427272, 46.874400133259542 ], [ 9.085058220960093, 46.872074693292461 ], [ 9.09234459832453, 46.868457343031935 ], [ 9.096840447728482, 46.864116523258929 ], [ 9.105057000180409, 46.862049465710243 ], [ 9.115030551818506, 46.863961494527302 ], [ 9.149136996874915, 46.880007025803593 ], [ 9.163606397916908, 46.882151597718064 ], [ 9.182519972418788, 46.882332464871354 ], [ 9.190736524870715, 46.884812934469323 ], [ 9.196007520630587, 46.887138373537084 ], [ 9.213060744058055, 46.903287258500143 ], [ 9.240862663680957, 46.920340481028347 ], [ 9.256675652759156, 46.907576402329084 ], [ 9.260241327075562, 46.906904608760669 ], [ 9.265512322835434, 46.90693044718239 ], [ 9.26985314260844, 46.908609931103399 ], [ 9.403798455034632, 46.895225734779785 ], [ 9.424262323147673, 46.888146063889735 ], [ 9.435424432291711, 46.882332464871354 ], [ 9.442555780025202, 46.881789863411427 ], [ 9.445708042292324, 46.882720038498974 ], [ 9.448653598984379, 46.890936590950901 ], [ 9.461210972108688, 46.89377879485545 ], [ 9.474388461957915, 46.909720974243555 ], [ 9.477178989019137, 46.915121161212596 ], [ 9.478264193737516, 46.920288805084283 ], [ 9.477799105744111, 46.925043036007253 ], [ 9.480899692067112, 46.936928616462467 ], [ 9.486015659095358, 46.944680080920989 ], [ 9.492836947567071, 46.953206691735431 ], [ 9.497952914595317, 46.957495836463636 ], [ 9.507306348609063, 46.962482612282713 ], [ 9.510096876569605, 46.966642564003109 ], [ 9.51381757961758, 46.975970161393832 ], [ 9.518468458652421, 46.979509996389197 ], [ 9.524359572036587, 46.981938788244463 ], [ 9.53195600776354, 46.983334052224734 ], [ 9.52637495274189, 46.99113719352664 ], [ 9.49588585794595, 47.026561388197479 ], [ 9.484775424746033, 47.043227037098063 ], [ 9.477178989019137, 47.059996038786153 ], [ 9.477023152696347, 47.063898417477958 ], [ 9.499554077000141, 47.059350891000022 ], [ 9.533133795803231, 47.055529849177844 ], [ 9.560635620000141, 47.05240041200004 ], [ 9.581202840000032, 47.056870423000063 ], [ 9.599909709000116, 47.053485616000032 ], [ 9.652309611000049, 47.057929790000046 ], [ 9.669052775000097, 47.056198629000065 ], [ 9.857981812000048, 47.015477600000011 ], [ 9.856328165000093, 47.0040829470001 ], [ 9.860565633000135, 47.001602478000038 ], [ 9.866766805000026, 47.001938375000023 ], [ 9.870590861000068, 46.998837790000081 ], [ 9.870590861000068, 46.992946676000074 ], [ 9.86645674600004, 46.983386536000083 ], [ 9.863976278000081, 46.959925436 ], [ 9.860772339000107, 46.949150899000088 ], [ 9.86242598400014, 46.939771627000127 ], [ 9.875138387000106, 46.927420960000077 ], [ 9.899943075000039, 46.914398499000029 ], [ 10.006913289000096, 46.890756531000122 ], [ 10.045567260000098, 46.865564271000082 ], [ 10.068098185000025, 46.856624248000045 ], [ 10.111299683000084, 46.847115784000053 ], [ 10.125187508000124, 46.846751229000105 ], [ 10.131970255000084, 46.846573182000029 ], [ 10.157808471000095, 46.851611634000065 ], [ 10.201423381000069, 46.866830343000018 ], [ 10.211655314000041, 46.877036438000076 ], [ 10.214342488000057, 46.884684550000074 ], [ 10.215169311000096, 46.893107809000057 ], [ 10.219923543000078, 46.905768535000092 ], [ 10.235116415000107, 46.923312684000066 ], [ 10.251342814000111, 46.925379740000025 ], [ 10.270773152000089, 46.921891581000082 ], [ 10.295681193000064, 46.922692566000094 ], [ 10.296197957000118, 46.941373597000066 ], [ 10.313664592000066, 46.964317933000089 ], [ 10.338882691000094, 46.98411000600008 ], [ 10.367924846000108, 46.995504659000076 ], [ 10.373402547000097, 46.996253967000072 ], [ 10.378983602000091, 46.995504659000076 ], [ 10.384254598000041, 46.993153382000045 ], [ 10.384357950000066, 46.993153382000045 ], [ 10.384357950000066, 46.9929983520001 ], [ 10.39469323700007, 46.985401916000043 ], [ 10.415570516000059, 46.962405905000068 ], [ 10.449573608000094, 46.943905742000069 ], [ 10.458461955000104, 46.936619365000084 ], [ 10.463836303000051, 46.919747009000091 ], [ 10.451433960000088, 46.885769756000073 ], [ 10.453811076000136, 46.864427389000056 ], [ 10.4485400800001, 46.83223297100001 ], [ 10.444922730000116, 46.823241272000061 ], [ 10.439031616000108, 46.816885071000044 ], [ 10.417224162000082, 46.798849997000033 ], [ 10.419084513000087, 46.783967183000087 ], [ 10.426215861000031, 46.769420268000047 ], [ 10.42869633, 46.755648499000088 ], [ 10.41660404400011, 46.74301361100008 ], [ 10.399654175000109, 46.735546367000055 ], [ 10.395623413000123, 46.726399639000064 ], [ 10.396553588000074, 46.715004984000061 ], [ 10.394383179000073, 46.700819804 ], [ 10.384771363000084, 46.689011739000094 ], [ 10.373919312000112, 46.681906230000081 ], [ 10.36916508000013, 46.672397766000088 ], [ 10.377536662000097, 46.65327748599999 ], [ 10.395623413000123, 46.638808085000065 ], [ 10.438204793000097, 46.635655823000022 ], [ 10.459082072000058, 46.623563538000028 ], [ 10.466626831000013, 46.60428822900009 ], [ 10.465903361000102, 46.578475851000078 ], [ 10.457945190000146, 46.553697001000032 ], [ 10.451828554544136, 46.546704427767111 ], [ 10.443992554000147, 46.537728984000083 ], [ 10.425905803000148, 46.535326030000036 ], [ 10.354282267000087, 46.548322653000085 ], [ 10.319452351000024, 46.546048889000062 ], [ 10.306636597000136, 46.547495829000056 ], [ 10.295371135000096, 46.551087341000127 ], [ 10.289066609000059, 46.555686544000068 ], [ 10.283795614000041, 46.560724996000047 ], [ 10.27594079500011, 46.565530905000045 ], [ 10.234703003000106, 46.575297750000104 ], [ 10.230258830000082, 46.586149801000047 ], [ 10.235736531000072, 46.606691183000024 ], [ 10.233772827000053, 46.617982484 ], [ 10.21785648600013, 46.626974182000041 ], [ 10.192121623000048, 46.626819154000103 ], [ 10.097450398000092, 46.608034770000089 ], [ 10.087838582000103, 46.604391582000105 ], [ 10.083497762000121, 46.597001851000087 ], [ 10.07119877100007, 46.564394023000048 ], [ 10.062930542000117, 46.55674591100005 ], [ 10.041329793000074, 46.541863098000121 ], [ 10.032751506000125, 46.532974752000101 ], [ 10.03140791900006, 46.525791728000044 ], [ 10.031201212000099, 46.503829245000091 ], [ 10.026860392000117, 46.493183900000091 ], [ 10.028100627000072, 46.483933818000068 ], [ 10.03047774300012, 46.47667327900011 ], [ 10.035335327000041, 46.471066386000089 ], [ 10.044016968000079, 46.466983948000077 ], [ 10.026343627000074, 46.446261699000033 ], [ 10.042053263000071, 46.432722474000073 ], [ 10.071405477000042, 46.42481598000002 ], [ 10.116157267000091, 46.418821514000072 ], [ 10.133417195000078, 46.414015605000074 ], [ 10.14075524900008, 46.402905172000075 ], [ 10.133210490000124, 46.381097717000031 ], [ 10.125975789000051, 46.37437978200002 ], [ 10.104995158000065, 46.361357321000085 ], [ 10.097450398000092, 46.351642151000036 ], [ 10.092386108000113, 46.338102926000047 ], [ 10.091765991000074, 46.328956198000057 ], [ 10.095796753000059, 46.320532939000074 ], [ 10.104891805000136, 46.309370830000049 ], [ 10.14612959800013, 46.280276998000048 ], [ 10.158945353000121, 46.262448629000104 ], [ 10.145819539000058, 46.243328349000095 ], [ 10.117914266000071, 46.231132711 ], [ 10.075746297000109, 46.220022278000059 ], [ 10.04267338000011, 46.220487366 ], [ 10.041846557000099, 46.243069967000039 ], [ 10.031717977000142, 46.260071513000057 ], [ 9.99223718200011, 46.284359436000059 ], [ 9.977561076000114, 46.298105367000076 ], [ 9.971049846000057, 46.320016175000049 ], [ 9.970636434000141, 46.339808249000029 ], [ 9.964021851000069, 46.356086325000049 ], [ 9.939010457000052, 46.367455140000047 ], [ 9.918443237000076, 46.371150004000029 ], [ 9.899012899000098, 46.372157695000013 ], [ 9.855397990000142, 46.366964213000088 ], [ 9.788838745000049, 46.343296408000057 ], [ 9.768064819000102, 46.338619690000101 ], [ 9.755249064000026, 46.340531718000122 ], [ 9.730857788000094, 46.350711975000067 ], [ 9.720109090000079, 46.35089284300004 ], [ 9.709257039000136, 46.342392070000116 ], [ 9.707293335000088, 46.330971579000035 ], [ 9.708843628000125, 46.319628601000048 ], [ 9.708430217000114, 46.311747946000096 ], [ 9.693133992000043, 46.297071839000111 ], [ 9.674323771000047, 46.291800842000086 ], [ 9.559705444000087, 46.292731018000026 ], [ 9.536451050000068, 46.298622132000034 ], [ 9.51526371300011, 46.308595683000036 ], [ 9.502551310000058, 46.320739645000046 ], [ 9.482604207000065, 46.356809794000029 ], [ 9.47371586100013, 46.36187408500011 ], [ 9.451598348000118, 46.370374858000034 ], [ 9.444363648000149, 46.375284119000057 ], [ 9.442399943000112, 46.380891012000077 ], [ 9.443846883000106, 46.39613555900003 ], [ 9.437852417000101, 46.492047018000093 ], [ 9.434648478000014, 46.498325704000095 ], [ 9.426793660000072, 46.497111308000072 ], [ 9.410670614000111, 46.488894756000022 ], [ 9.403849324000134, 46.482512716000102 ], [ 9.400335327000107, 46.47540720700006 ], [ 9.395477742000082, 46.469412740000038 ], [ 9.384625691000025, 46.466415508000026 ], [ 9.377080933000087, 46.468689270000041 ], [ 9.35155277500013, 46.485484111000105 ], [ 9.350829305000047, 46.497860616000068 ], [ 9.330985555000069, 46.501503805000041 ], [ 9.282306355000117, 46.497369691000031 ], [ 9.263186076000125, 46.485122376 ], [ 9.245822794000105, 46.461041158000072 ], [ 9.237967977000068, 46.43654653 ], [ 9.247579794000103, 46.423033142000023 ], [ 9.260912313000119, 46.416651103 ], [ 9.262876017000053, 46.406625875000074 ], [ 9.260292195000147, 46.394016826000055 ], [ 9.260395548000076, 46.379728292000053 ], [ 9.273831420000107, 46.344252421000121 ], [ 9.275175008000076, 46.331384990000046 ], [ 9.2689738360001, 46.309370830000049 ], [ 9.239724975000058, 46.266996155000029 ], [ 9.22483143702118, 46.23118805818234 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-SH", "NAME_1": "Schaffhausen" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.558216187000085, 47.801166077000076 ], [ 8.58312422700007, 47.800235901000022 ], [ 8.601624390000069, 47.794603170000087 ], [ 8.603174682000088, 47.787316793000016 ], [ 8.604104858000142, 47.774397685000011 ], [ 8.607618856000101, 47.762253723000114 ], [ 8.617437378000091, 47.757318624000064 ], [ 8.629839721000053, 47.762796326000043 ], [ 8.635007365000149, 47.784603780000069 ], [ 8.644102417000113, 47.791011658000016 ], [ 8.657021525000118, 47.788117778000029 ], [ 8.66663334200004, 47.778273417000051 ], [ 8.674488159000077, 47.7666978970001 ], [ 8.681929565000104, 47.758739726000059 ], [ 8.692264852000108, 47.757163595000023 ], [ 8.703323608000119, 47.758713887000042 ], [ 8.71314213000008, 47.75742197699999 ], [ 8.719756714000084, 47.747319234000045 ], [ 8.71706954000004, 47.743546855000019 ], [ 8.703737020000119, 47.730033468000059 ], [ 8.700429728000131, 47.723496399000069 ], [ 8.70466719500007, 47.715331523000046 ], [ 8.712625366000054, 47.708691101000042 ], [ 8.715105835000116, 47.701068827000071 ], [ 8.71706954000004, 47.694557597000099 ], [ 8.769882853000098, 47.695074361000067 ], [ 8.761717977000075, 47.701249695000044 ], [ 8.770709676000109, 47.720860901000052 ], [ 8.797581420000114, 47.72003407900003 ], [ 8.830240926000101, 47.70719248500005 ], [ 8.856079142000112, 47.690681864000069 ], [ 8.837682333000117, 47.687787985000071 ], [ 8.837785685000142, 47.680837504000081 ], [ 8.851935119000075, 47.671281723000092 ], [ 8.821508415880658, 47.682257798858302 ], [ 8.809932895586655, 47.678847154172786 ], [ 8.801096226409697, 47.681792710864897 ], [ 8.800321079154457, 47.681792710864897 ], [ 8.788538853285445, 47.662620754843942 ], [ 8.786213413318364, 47.661070462132102 ], [ 8.781717563914412, 47.657453110972256 ], [ 8.777686801604602, 47.655489407110451 ], [ 8.77319095220065, 47.654610907967026 ], [ 8.76895348521515, 47.654740099176195 ], [ 8.76647301561718, 47.65427501118279 ], [ 8.763527458925068, 47.652853908780855 ], [ 8.759341667883632, 47.649908352088744 ], [ 8.754690788848791, 47.647712104230209 ], [ 8.748644646733055, 47.646135973096648 ], [ 8.707820265093119, 47.647221177815084 ], [ 8.698983595016898, 47.649236559419649 ], [ 8.692007276914296, 47.652233792055824 ], [ 8.685806105167615, 47.658745022165022 ], [ 8.681620314126178, 47.664326077186672 ], [ 8.679966667727513, 47.680242418153057 ], [ 8.683170606838019, 47.695538642394411 ], [ 8.640020786130378, 47.696313787851011 ], [ 8.631649204047505, 47.690577704097734 ], [ 8.624724561889025, 47.681637682133271 ], [ 8.607619663416699, 47.670759792930085 ], [ 8.593770379099681, 47.658331611015001 ], [ 8.593588682771497, 47.658168560330751 ], [ 8.582194051000101, 47.661329651000088 ], [ 8.568241414000113, 47.662931621000027 ], [ 8.519665568000107, 47.657350566 ], [ 8.504679402000136, 47.652260437000038 ], [ 8.490830119000066, 47.645568339000093 ], [ 8.476050659000066, 47.6404006960001 ], [ 8.458273966000121, 47.639883932000046 ], [ 8.437603394000121, 47.647842102000126 ], [ 8.411971883000149, 47.661045430000016 ], [ 8.40701094500011, 47.661562195000059 ], [ 8.391301310000131, 47.665463765000098 ], [ 8.397709188000078, 47.67628997900006 ], [ 8.395228719000102, 47.684816590000068 ], [ 8.390991251000059, 47.692128805000053 ], [ 8.392128133000142, 47.699518535000053 ], [ 8.401946655000131, 47.707089132000121 ], [ 8.427268107000117, 47.716468404000054 ], [ 8.437913452000089, 47.723186341000101 ], [ 8.445458211000044, 47.74318512000012 ], [ 8.450109090000097, 47.750471497000021 ], [ 8.463648315000086, 47.763907370000069 ], [ 8.471503133000112, 47.767059632000027 ], [ 8.482665242000053, 47.766852926000055 ], [ 8.536512085000084, 47.774087626000025 ], [ 8.55160160300008, 47.779255270000121 ], [ 8.542299846000077, 47.795016581000098 ], [ 8.558216187000085, 47.801166077000076 ] ] ], [ [ [ 8.560696655000072, 47.58939605700003 ], [ 8.574132527000103, 47.592444967000077 ], [ 8.576305365999815, 47.595023058567278 ], [ 8.576562126940587, 47.591513983983134 ], [ 8.563694696353139, 47.568517971227379 ], [ 8.555943230995297, 47.560740668347137 ], [ 8.552532586309781, 47.560508124350406 ], [ 8.548966911993375, 47.561386624393151 ], [ 8.54602135620064, 47.563841253770818 ], [ 8.543489210658549, 47.566657620153023 ], [ 8.540388625234868, 47.569163927273394 ], [ 8.533567335863836, 47.573659775778026 ], [ 8.5293815448224, 47.57544261338586 ], [ 8.530311719909946, 47.582884020381186 ], [ 8.551719148619782, 47.59686332957898 ], [ 8.560696655000072, 47.58939605700003 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-TG", "NAME_1": "Thurgau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.851935119000075, 47.671281723000092 ], [ 8.852668498000099, 47.670786438000064 ], [ 8.881710652000095, 47.656136170000067 ], [ 8.906205281000041, 47.651795349000096 ], [ 8.945376017000086, 47.654301656000072 ], [ 8.981756225000055, 47.662156474000099 ], [ 8.997672566000091, 47.673835348000082 ], [ 9.016586141000118, 47.678899639000051 ], [ 9.128103881000129, 47.670424704000069 ], [ 9.183397664000069, 47.670424704000069 ], [ 9.196936890000131, 47.656136170000067 ], [ 9.234350627000083, 47.656162008000067 ], [ 9.273211304000142, 47.650090027000047 ], [ 9.547481674000068, 47.534547102000047 ], [ 9.553058590581486, 47.516891337864934 ], [ 9.552833286127225, 47.51684153880592 ], [ 9.473458285971105, 47.499297389862647 ], [ 9.464466587163258, 47.49699778921655 ], [ 9.459660679396848, 47.496377672491576 ], [ 9.455939976348816, 47.496636054010651 ], [ 9.446018100654783, 47.500150051483672 ], [ 9.445087924667973, 47.501648668251391 ], [ 9.444002719949538, 47.502940579444157 ], [ 9.44849856935349, 47.512190659771079 ], [ 9.438369988983766, 47.516738186018472 ], [ 9.387365350130779, 47.490693263783101 ], [ 9.380492383916362, 47.481417345034401 ], [ 9.373981153807165, 47.483096828955468 ], [ 9.365299513361833, 47.487954413565319 ], [ 9.342975295073813, 47.507513943213894 ], [ 9.340649855106733, 47.51224233751384 ], [ 9.343905470161303, 47.517642524482881 ], [ 9.344370558154708, 47.521337389109192 ], [ 9.344370558154708, 47.525419827363123 ], [ 9.335068800984345, 47.535445054945285 ], [ 9.320909458304868, 47.535134996582826 ], [ 9.315948520907511, 47.534101466909135 ], [ 9.31129764187267, 47.5326545269848 ], [ 9.306336703575994, 47.529476427195334 ], [ 9.303391147783259, 47.528701279940094 ], [ 9.295174595331275, 47.528365383155858 ], [ 9.289438510678735, 47.527538560855874 ], [ 9.283237338932054, 47.525988268144033 ], [ 9.279361606253133, 47.524024563382852 ], [ 9.276261020829452, 47.521389065053313 ], [ 9.273728875287361, 47.520355536278942 ], [ 9.272023552944574, 47.520407213122382 ], [ 9.26985314260844, 47.521182359478303 ], [ 9.267992790634764, 47.520717272384161 ], [ 9.266287469191354, 47.519425361191452 ], [ 9.266442497922924, 47.51684153880592 ], [ 9.270163201870275, 47.515187893306631 ], [ 9.280756870233347, 47.51415436543158 ], [ 9.286958041980029, 47.514981187731621 ], [ 9.29238406737079, 47.51647980449934 ], [ 9.296724888043116, 47.516402289234236 ], [ 9.299825474366116, 47.515756334087541 ], [ 9.304941439595723, 47.500770169107966 ], [ 9.301220737447068, 47.493044542171845 ], [ 9.298895298379307, 47.489969794270564 ], [ 9.295174595331275, 47.486094062490963 ], [ 9.289748569041194, 47.483406887317983 ], [ 9.282927279670218, 47.481908271449527 ], [ 9.274555697587346, 47.483251857687037 ], [ 9.268767937890004, 47.482941800223898 ], [ 9.259621208551948, 47.479505317116661 ], [ 9.255745476772347, 47.477412421146312 ], [ 9.238072136619792, 47.479066067544977 ], [ 9.199108106953588, 47.484957180029824 ], [ 9.166396925877393, 47.495602525236336 ], [ 9.151462436841996, 47.507591458478998 ], [ 9.142470737134772, 47.496532701223146 ], [ 9.137819858099931, 47.492708645387665 ], [ 9.12991336401052, 47.489608059064665 ], [ 9.113325230375096, 47.487851060777814 ], [ 9.100871209138973, 47.487773546412029 ], [ 9.08831383601472, 47.490073147058069 ], [ 9.084438104235119, 47.490073147058069 ], [ 9.075601434158841, 47.489091295127139 ], [ 9.07265587656741, 47.489608059064665 ], [ 9.070330438399026, 47.491339219829115 ], [ 9.068315056794404, 47.493845526949485 ], [ 9.065679559364185, 47.495705878023841 ], [ 9.062423944309558, 47.496119290073182 ], [ 9.045164015307023, 47.494258938099506 ], [ 9.039117873191287, 47.494413966831075 ], [ 9.031211379101876, 47.496377672491576 ], [ 9.027645704785414, 47.495705878023841 ], [ 9.019274122702598, 47.489659735908049 ], [ 9.015088331661161, 47.488626207133734 ], [ 9.0096623062704, 47.487851060777814 ], [ 9.003616164154664, 47.486249091222533 ], [ 9.000360549100037, 47.481856593706823 ], [ 9.001290724187584, 47.476792304421281 ], [ 9.003461133624398, 47.473536689366711 ], [ 9.031211379101876, 47.460100816199656 ], [ 9.031211379101876, 47.45653514278257 ], [ 9.03260664218277, 47.446354885569463 ], [ 9.032141554189366, 47.442995916828067 ], [ 9.03028120311501, 47.440489609707697 ], [ 9.026715528798604, 47.438913479473456 ], [ 9.019739210696002, 47.438448391480051 ], [ 9.014313185305241, 47.437492377071521 ], [ 9.009352247907884, 47.436071275568906 ], [ 9.004701368873043, 47.43421092449455 ], [ 9.000825636194122, 47.433539130026816 ], [ 8.997414992407982, 47.4335908068702 ], [ 8.993642611617247, 47.43457265880113 ], [ 8.989146763112615, 47.433487454082695 ], [ 8.985426060064583, 47.429870103822225 ], [ 8.974263950021282, 47.412661852562394 ], [ 8.964497104857514, 47.404858710361168 ], [ 8.95069949738388, 47.387883002198748 ], [ 8.942482944032633, 47.380415758580341 ], [ 8.932354363662967, 47.379950669687616 ], [ 8.892511833953961, 47.4085794134092 ], [ 8.900108269680914, 47.415555732411121 ], [ 8.902278680017048, 47.418837184988092 ], [ 8.904139031990724, 47.423307196869587 ], [ 8.905534295071675, 47.43033519091631 ], [ 8.911425409355161, 47.435037746794535 ], [ 8.911425409355161, 47.436433009875486 ], [ 8.903363884735484, 47.439481920254366 ], [ 8.89344200994077, 47.446096503151068 ], [ 8.88863610217436, 47.466560370364789 ], [ 8.878817580167151, 47.47082367577201 ], [ 8.876647169831017, 47.47369171809828 ], [ 8.874321729863937, 47.479505317116661 ], [ 8.874631789125772, 47.482735093749568 ], [ 8.875406934582372, 47.484543768879803 ], [ 8.877112257824422, 47.485732327285064 ], [ 8.881608107228374, 47.487851060777814 ], [ 8.883675163877683, 47.48950470627716 ], [ 8.885535515851359, 47.492088527763315 ], [ 8.885535515851359, 47.494000556580374 ], [ 8.885535515851359, 47.495292466873821 ], [ 8.884915399126328, 47.496584378066586 ], [ 8.884450311132923, 47.498444729140886 ], [ 8.884915399126328, 47.500847683473808 ], [ 8.890651482879605, 47.521905828990782 ], [ 8.89111657087301, 47.524903063425597 ], [ 8.88848107344279, 47.528210354424289 ], [ 8.881453077597428, 47.532034410259826 ], [ 8.851842481944971, 47.540199285868312 ], [ 8.841765578418688, 47.544126695390673 ], [ 8.835874465034522, 47.548777574425515 ], [ 8.831998732355601, 47.557795112554402 ], [ 8.836649611390442, 47.564487209816832 ], [ 8.838509963364118, 47.566244208103683 ], [ 8.833083937074036, 47.571515203863555 ], [ 8.827502882951649, 47.57564931896087 ], [ 8.763837518186904, 47.596836655687071 ], [ 8.751745233056056, 47.599523830860107 ], [ 8.742753534248209, 47.606991075377778 ], [ 8.739342888663373, 47.610582587216584 ], [ 8.739032830300857, 47.612752997552775 ], [ 8.741203240637049, 47.614923407888966 ], [ 8.747249382752784, 47.618308214152762 ], [ 8.754380731385652, 47.620013536495492 ], [ 8.761512078219823, 47.619264228561292 ], [ 8.775981480161192, 47.614277451842895 ], [ 8.781407504652577, 47.610401720063294 ], [ 8.785903354955849, 47.608050442573813 ], [ 8.790089145997285, 47.607533677737024 ], [ 8.793344761051856, 47.607533677737024 ], [ 8.799545932798537, 47.61533681903893 ], [ 8.808227573243869, 47.621899725991511 ], [ 8.815824008970822, 47.631873276730289 ], [ 8.820009800012258, 47.63616242145855 ], [ 8.821715122354988, 47.641123358855907 ], [ 8.820164828743827, 47.645257473053903 ], [ 8.8088476899689, 47.654145819973564 ], [ 8.804971958189299, 47.667426663509673 ], [ 8.788538853285445, 47.662620754843942 ], [ 8.800321079154457, 47.681792710864897 ], [ 8.801096226409697, 47.681792710864897 ], [ 8.809932895586655, 47.678847154172786 ], [ 8.821508415880658, 47.682257798858302 ], [ 8.851935119000075, 47.671281723000092 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-ZH", "NAME_1": "Zürich" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.601624390000069, 47.632597555000089 ], [ 8.607308797000115, 47.656291199000023 ], [ 8.598213745000066, 47.656885478000063 ], [ 8.593588682771497, 47.658168560330751 ], [ 8.593770379099681, 47.658331611015001 ], [ 8.607619663416699, 47.670759792930085 ], [ 8.624724561889025, 47.681637682133271 ], [ 8.631649204047505, 47.690577704097734 ], [ 8.640020786130378, 47.696313787851011 ], [ 8.683170606838019, 47.695538642394411 ], [ 8.679966667727513, 47.680242418153057 ], [ 8.681620314126178, 47.664326077186672 ], [ 8.685806105167615, 47.658745022165022 ], [ 8.692007276914296, 47.652233792055824 ], [ 8.698983595016898, 47.649236559419649 ], [ 8.707820265093119, 47.647221177815084 ], [ 8.748644646733055, 47.646135973096648 ], [ 8.754690788848791, 47.647712104230209 ], [ 8.759341667883632, 47.649908352088744 ], [ 8.763527458925068, 47.652853908780855 ], [ 8.76647301561718, 47.65427501118279 ], [ 8.76895348521515, 47.654740099176195 ], [ 8.77319095220065, 47.654610907967026 ], [ 8.777686801604602, 47.655489407110451 ], [ 8.781717563914412, 47.657453110972256 ], [ 8.786213413318364, 47.661070462132102 ], [ 8.788538853285445, 47.662620754843942 ], [ 8.804971958189299, 47.667426663509673 ], [ 8.8088476899689, 47.654145819973564 ], [ 8.820164828743827, 47.645257473053903 ], [ 8.821715122354988, 47.641123358855907 ], [ 8.820009800012258, 47.63616242145855 ], [ 8.815824008970822, 47.631873276730289 ], [ 8.808227573243869, 47.621899725991511 ], [ 8.799545932798537, 47.61533681903893 ], [ 8.793344761051856, 47.607533677737024 ], [ 8.790089145997285, 47.607533677737024 ], [ 8.785903354955849, 47.608050442573813 ], [ 8.781407504652577, 47.610401720063294 ], [ 8.775981480161192, 47.614277451842895 ], [ 8.761512078219823, 47.619264228561292 ], [ 8.754380731385652, 47.620013536495492 ], [ 8.747249382752784, 47.618308214152762 ], [ 8.741203240637049, 47.614923407888966 ], [ 8.739032830300857, 47.612752997552775 ], [ 8.739342888663373, 47.610582587216584 ], [ 8.742753534248209, 47.606991075377778 ], [ 8.751745233056056, 47.599523830860107 ], [ 8.763837518186904, 47.596836655687071 ], [ 8.827502882951649, 47.57564931896087 ], [ 8.833083937074036, 47.571515203863555 ], [ 8.838509963364118, 47.566244208103683 ], [ 8.836649611390442, 47.564487209816832 ], [ 8.831998732355601, 47.557795112554402 ], [ 8.835874465034522, 47.548777574425515 ], [ 8.841765578418688, 47.544126695390673 ], [ 8.851842481944971, 47.540199285868312 ], [ 8.881453077597428, 47.532034410259826 ], [ 8.88848107344279, 47.528210354424289 ], [ 8.89111657087301, 47.524903063425597 ], [ 8.890651482879605, 47.521905828990782 ], [ 8.884915399126328, 47.500847683473808 ], [ 8.884450311132923, 47.498444729140886 ], [ 8.884915399126328, 47.496584378066586 ], [ 8.885535515851359, 47.495292466873821 ], [ 8.885535515851359, 47.494000556580374 ], [ 8.885535515851359, 47.492088527763315 ], [ 8.883675163877683, 47.48950470627716 ], [ 8.881608107228374, 47.487851060777814 ], [ 8.877112257824422, 47.485732327285064 ], [ 8.875406934582372, 47.484543768879803 ], [ 8.874631789125772, 47.482735093749568 ], [ 8.874321729863937, 47.479505317116661 ], [ 8.876647169831017, 47.47369171809828 ], [ 8.878817580167151, 47.47082367577201 ], [ 8.88863610217436, 47.466560370364789 ], [ 8.89344200994077, 47.446096503151068 ], [ 8.903363884735484, 47.439481920254366 ], [ 8.911425409355161, 47.436433009875486 ], [ 8.911425409355161, 47.435037746794535 ], [ 8.905534295071675, 47.43033519091631 ], [ 8.904139031990724, 47.423307196869587 ], [ 8.902278680017048, 47.418837184988092 ], [ 8.900108269680914, 47.415555732411121 ], [ 8.892511833953961, 47.4085794134092 ], [ 8.932354363662967, 47.379950669687616 ], [ 8.936695184335292, 47.375609849914611 ], [ 8.960466343446967, 47.346490179777959 ], [ 8.966202427200244, 47.325121974999149 ], [ 8.969147982993036, 47.317267157753122 ], [ 8.966047397569355, 47.313391425074201 ], [ 8.959846225822673, 47.308378810833403 ], [ 8.946978794335905, 47.300782376005827 ], [ 8.939537388239842, 47.294012763478236 ], [ 8.933904657274127, 47.287811590832234 ], [ 8.93467980273067, 47.279569199958587 ], [ 8.930028923695886, 47.274840807457281 ], [ 8.920727165626204, 47.269104722804684 ], [ 8.861764356739684, 47.250475369142919 ], [ 8.84874189562197, 47.249700221887679 ], [ 8.807607455619575, 47.25360179298832 ], [ 8.789158970010419, 47.243731594137728 ], [ 8.775361361637522, 47.220580553549667 ], [ 8.732056512198255, 47.214560248056955 ], [ 8.693092481632732, 47.197558702372191 ], [ 8.683170606838019, 47.191486720935416 ], [ 8.677279494353172, 47.186706650691349 ], [ 8.675729200742012, 47.183580226845947 ], [ 8.674954054386092, 47.180944729415728 ], [ 8.675109084016981, 47.178283393563731 ], [ 8.676194288735417, 47.176242174436766 ], [ 8.681930373388013, 47.170790309724964 ], [ 8.683480666099854, 47.165364285233579 ], [ 8.661156446912457, 47.163374742050678 ], [ 8.631649204047505, 47.172185573705235 ], [ 8.624207797951499, 47.176087144805877 ], [ 8.620177035641689, 47.180272935847313 ], [ 8.617696566942982, 47.183993638895288 ], [ 8.606224399436485, 47.193527940062381 ], [ 8.589274529695786, 47.203527330122142 ], [ 8.57082604318731, 47.217324938495096 ], [ 8.531551955158591, 47.221769111055607 ], [ 8.503181592956139, 47.217970892742471 ], [ 8.48452640087271, 47.21350088176024 ], [ 8.474139438983912, 47.213449204916856 ], [ 8.462357212215579, 47.214792792053686 ], [ 8.422618036193398, 47.223706977395068 ], [ 8.415951775553992, 47.226626694766139 ], [ 8.413316278123716, 47.230657457075949 ], [ 8.412076042875071, 47.23489492496077 ], [ 8.40742516384023, 47.245514430846299 ], [ 8.384945915921264, 47.278018907246746 ], [ 8.382465448121934, 47.286106269388824 ], [ 8.3852559751831, 47.286519680538788 ], [ 8.38835656060678, 47.286571357382229 ], [ 8.390992058936376, 47.286778062957239 ], [ 8.397658318676463, 47.288638414031539 ], [ 8.414866570835557, 47.295873115451911 ], [ 8.433521762918986, 47.312254544411644 ], [ 8.442668491357779, 47.323158271137288 ], [ 8.44561404804989, 47.332770087569486 ], [ 8.415951775553992, 47.326413886191858 ], [ 8.40416954878566, 47.335095527536566 ], [ 8.401999139348789, 47.338919583372046 ], [ 8.401068963361979, 47.342175198426617 ], [ 8.401379021724438, 47.345430813481244 ], [ 8.40339440332906, 47.356231188318645 ], [ 8.403549432060629, 47.362509874431112 ], [ 8.399053581757357, 47.366101386269918 ], [ 8.379519891429823, 47.372870998797509 ], [ 8.373732130833162, 47.376074937908015 ], [ 8.37078657414105, 47.378297024188271 ], [ 8.372801954846352, 47.383723050478352 ], [ 8.399363641019193, 47.402171536087508 ], [ 8.403549432060629, 47.410439765382819 ], [ 8.401068963361979, 47.41416046843085 ], [ 8.387426384619914, 47.426407783192587 ], [ 8.379984979423227, 47.441859036165567 ], [ 8.357919141754962, 47.473769233363385 ], [ 8.352648145995147, 47.487644355202804 ], [ 8.353113233988552, 47.497876288359976 ], [ 8.358074172285228, 47.51684153880592 ], [ 8.374817335551597, 47.535031642896001 ], [ 8.396418084327138, 47.549862779143893 ], [ 8.419362420239509, 47.575029202235896 ], [ 8.421100325919269, 47.581111870316533 ], [ 8.448868856000075, 47.584280091000053 ], [ 8.450109090000097, 47.589034323000035 ], [ 8.461787964000081, 47.60613922099999 ], [ 8.492380411000084, 47.619833476000011 ], [ 8.522352742000038, 47.621900534000062 ], [ 8.53775231900002, 47.6121336880001 ], [ 8.549637899000061, 47.598594462000037 ], [ 8.551719148619782, 47.59686332957898 ], [ 8.530311719909946, 47.582884020381186 ], [ 8.5293815448224, 47.57544261338586 ], [ 8.533567335863836, 47.573659775778026 ], [ 8.540388625234868, 47.569163927273394 ], [ 8.543489210658549, 47.566657620153023 ], [ 8.54602135620064, 47.563841253770818 ], [ 8.548966911993375, 47.561386624393151 ], [ 8.552532586309781, 47.560508124350406 ], [ 8.555943230995297, 47.560740668347137 ], [ 8.563694696353139, 47.568517971227379 ], [ 8.576562126940587, 47.591513983983134 ], [ 8.576305365999815, 47.595023058567278 ], [ 8.580643758000093, 47.600170594000062 ], [ 8.581780639000101, 47.607663677000104 ], [ 8.581263875000047, 47.614769186000032 ], [ 8.582504110000087, 47.621590475000076 ], [ 8.582090698000087, 47.625026957000031 ], [ 8.579713583000114, 47.628928529000078 ], [ 8.578059936000074, 47.633476054000099 ], [ 8.580333699000107, 47.639005432000019 ], [ 8.583951050000081, 47.641124166000097 ], [ 8.589222046000117, 47.642467754000066 ], [ 8.593562866000099, 47.642571106000091 ], [ 8.594493042000039, 47.640969137000056 ], [ 8.595113159000107, 47.63481964099999 ], [ 8.601624390000069, 47.632597555000089 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-AG", "NAME_1": "Aargau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.251051473000132, 47.622003886000087 ], [ 8.276993042000072, 47.616629537000037 ], [ 8.288568562000108, 47.6158027150001 ], [ 8.293942912000091, 47.611461894000044 ], [ 8.299317260000038, 47.60182423900001 ], [ 8.306345255000053, 47.59218658499999 ], [ 8.316163777000014, 47.587845764000022 ], [ 8.354094279000037, 47.581024475000063 ], [ 8.418069702000111, 47.580766094000083 ], [ 8.421100325919269, 47.581111870316533 ], [ 8.419362420239509, 47.575029202235896 ], [ 8.396418084327138, 47.549862779143893 ], [ 8.374817335551597, 47.535031642896001 ], [ 8.358074172285228, 47.51684153880592 ], [ 8.353113233988552, 47.497876288359976 ], [ 8.352648145995147, 47.487644355202804 ], [ 8.357919141754962, 47.473769233363385 ], [ 8.379984979423227, 47.441859036165567 ], [ 8.387426384619914, 47.426407783192587 ], [ 8.401068963361979, 47.41416046843085 ], [ 8.403549432060629, 47.410439765382819 ], [ 8.399363641019193, 47.402171536087508 ], [ 8.372801954846352, 47.383723050478352 ], [ 8.37078657414105, 47.378297024188271 ], [ 8.373732130833162, 47.376074937908015 ], [ 8.379519891429823, 47.372870998797509 ], [ 8.399053581757357, 47.366101386269918 ], [ 8.403549432060629, 47.362509874431112 ], [ 8.40339440332906, 47.356231188318645 ], [ 8.401379021724438, 47.345430813481244 ], [ 8.401068963361979, 47.342175198426617 ], [ 8.401999139348789, 47.338919583372046 ], [ 8.40416954878566, 47.335095527536566 ], [ 8.415951775553992, 47.326413886191858 ], [ 8.44561404804989, 47.332770087569486 ], [ 8.442668491357779, 47.323158271137288 ], [ 8.433521762918986, 47.312254544411644 ], [ 8.414866570835557, 47.295873115451911 ], [ 8.397658318676463, 47.288638414031539 ], [ 8.390992058936376, 47.286778062957239 ], [ 8.38835656060678, 47.286571357382229 ], [ 8.3852559751831, 47.286519680538788 ], [ 8.382465448121934, 47.286106269388824 ], [ 8.384945915921264, 47.278018907246746 ], [ 8.40742516384023, 47.245514430846299 ], [ 8.394402702722516, 47.228435369896374 ], [ 8.393782585997542, 47.225722358100313 ], [ 8.393007439641622, 47.219521186353631 ], [ 8.398123406669868, 47.177379055099266 ], [ 8.405564812765874, 47.142316596533703 ], [ 8.404789666409954, 47.142316596533703 ], [ 8.376522657894327, 47.143117581311287 ], [ 8.364120314400964, 47.147200019565219 ], [ 8.358694289010202, 47.150610663351415 ], [ 8.351407911645765, 47.156760159153976 ], [ 8.340400832132673, 47.168490709078924 ], [ 8.336835157816267, 47.173348293688775 ], [ 8.303452183171714, 47.238408922433791 ], [ 8.295855747444762, 47.249829413096904 ], [ 8.291669956403325, 47.258304347967282 ], [ 8.288569370080324, 47.268071194030369 ], [ 8.282988315058674, 47.27383311620531 ], [ 8.277097201674508, 47.277631334518446 ], [ 8.260612419927213, 47.282282213553287 ], [ 8.243714227029955, 47.281093655148027 ], [ 8.226971062864266, 47.267761134768534 ], [ 8.222475212560994, 47.259647936003432 ], [ 8.199789259067018, 47.232130235422005 ], [ 8.18351118289479, 47.223862006126637 ], [ 8.174519484086886, 47.223216050979943 ], [ 8.167698194715911, 47.225257270106908 ], [ 8.163047315681069, 47.227453517965444 ], [ 8.159326612633038, 47.22993398756347 ], [ 8.157466260659362, 47.231587633062816 ], [ 8.156226027209357, 47.23492076338249 ], [ 8.154520704866627, 47.236910304766752 ], [ 8.154520704866627, 47.238331407168687 ], [ 8.155915967947578, 47.239287421577217 ], [ 8.163202345311959, 47.241302802282462 ], [ 8.160411818250793, 47.242878933416023 ], [ 8.151368441700185, 47.245359402114673 ], [ 8.124238314746435, 47.246057034104808 ], [ 8.104239536425439, 47.25055288350876 ], [ 8.089305047389985, 47.261249905558657 ], [ 8.020420362809489, 47.243008123725929 ], [ 7.998096143622092, 47.273032132327046 ], [ 7.982696566593233, 47.277398790521715 ], [ 7.961302524292023, 47.277088731259937 ], [ 7.957116733250643, 47.276649481688196 ], [ 7.955566439639483, 47.275357571394807 ], [ 7.954791294182883, 47.27267039712109 ], [ 7.954946322914452, 47.264712226188237 ], [ 7.956031527632888, 47.256211452896196 ], [ 7.955566439639483, 47.252774969789016 ], [ 7.954791294182883, 47.250785427505434 ], [ 7.954171176558532, 47.249829413096904 ], [ 7.952620883846691, 47.2486150171693 ], [ 7.94874515116777, 47.246573798042334 ], [ 7.923268669713309, 47.240346787873932 ], [ 7.900479364331204, 47.240320950351531 ], [ 7.839346144209173, 47.23184601548121 ], [ 7.826323683091516, 47.247038886035739 ], [ 7.82539350800397, 47.249467677891005 ], [ 7.82291303930532, 47.268975532494778 ], [ 7.830354445401326, 47.275357571394807 ], [ 7.854539014763702, 47.308017076526824 ], [ 7.857484572355133, 47.3106525739571 ], [ 7.901874627412099, 47.338299465747696 ], [ 7.909161003877216, 47.337136745764155 ], [ 7.917842645221867, 47.334837145118115 ], [ 7.981611361874855, 47.328274238165534 ], [ 7.988794385552467, 47.330858058752369 ], [ 7.996855910172087, 47.334475409912216 ], [ 8.010498488014775, 47.356153673053541 ], [ 8.02181562678976, 47.367780870190984 ], [ 8.02910200415414, 47.379149684910033 ], [ 8.028016799435704, 47.398140773777641 ], [ 8.015459425412132, 47.400569566532226 ], [ 8.005692580248365, 47.404290270479578 ], [ 7.997010938903713, 47.40992300144535 ], [ 7.992360059868872, 47.41452220273743 ], [ 7.988019240095866, 47.428345649532048 ], [ 7.981301304411659, 47.431162014115614 ], [ 7.980216098793903, 47.440153713822838 ], [ 7.98114627388145, 47.442220771371467 ], [ 7.980836216418254, 47.445476386426094 ], [ 7.979130894075467, 47.448680325536543 ], [ 7.970449252730816, 47.455811673270091 ], [ 7.954946322914452, 47.457723701187831 ], [ 7.9423889497902, 47.463356432153603 ], [ 7.941458773803333, 47.465345974437128 ], [ 7.940373569084954, 47.469428411791739 ], [ 7.940218540353328, 47.483613592892993 ], [ 7.909626091870621, 47.485835680072569 ], [ 7.900479364331204, 47.490434882263969 ], [ 7.896913690014742, 47.497979641147481 ], [ 7.867716506411625, 47.528081163215063 ], [ 7.863065627376784, 47.53497996695188 ], [ 7.857329542724187, 47.537977200487376 ], [ 7.849423048634776, 47.545341091318278 ], [ 7.835160353167737, 47.548157456801164 ], [ 7.829114211052001, 47.547485663232749 ], [ 7.826323683091516, 47.545961208942629 ], [ 7.825083448742134, 47.541904609110418 ], [ 7.82461836074873, 47.535651760520295 ], [ 7.823843215292129, 47.532421982988126 ], [ 7.821362745694159, 47.529657294348624 ], [ 7.796196322602214, 47.51415436543158 ], [ 7.782708774390414, 47.51283661581715 ], [ 7.779918247329249, 47.516324774868451 ], [ 7.777747836993058, 47.522009181778287 ], [ 7.777127720268084, 47.527771104852604 ], [ 7.777747836993058, 47.532602851040735 ], [ 7.774027133945083, 47.535031642896001 ], [ 7.771701693978002, 47.536065172569636 ], [ 7.767050814943161, 47.536607774029505 ], [ 7.730567253975551, 47.548777574425515 ], [ 7.727320446881095, 47.550422624204714 ], [ 7.766739949000055, 47.555961406000065 ], [ 7.78555017100004, 47.56319610600012 ], [ 7.801466512000076, 47.576089376000127 ], [ 7.819656616000117, 47.595338847000065 ], [ 7.83371260600012, 47.590481263000029 ], [ 7.898204794000065, 47.587845764000022 ], [ 7.904302613000112, 47.583556621000056 ], [ 7.907506551000097, 47.574177348000021 ], [ 7.909470256000105, 47.564798076000059 ], [ 7.91215743000015, 47.560560608000102 ], [ 8.042278686000088, 47.560560608000102 ], [ 8.087237182000109, 47.567381897000061 ], [ 8.096952351000141, 47.571851909000074 ], [ 8.101396525000069, 47.576192729000056 ], [ 8.105427286000065, 47.581257019000034 ], [ 8.113902221000075, 47.587845764000022 ], [ 8.122067098000088, 47.592134908000091 ], [ 8.143771199000071, 47.600067241000048 ], [ 8.162064656000041, 47.603762105000058 ], [ 8.168885946000103, 47.608645528000082 ], [ 8.173846883000067, 47.61352895099999 ], [ 8.17901452600006, 47.6158027150001 ], [ 8.232964721000116, 47.621952210000089 ], [ 8.251051473000132, 47.622003886000087 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-BS", "NAME_1": "Basel-Stadt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.65966638200004, 47.596579082000076 ], [ 7.646540568000091, 47.571541850000088 ], [ 7.635895223000091, 47.564591370000088 ], [ 7.612337281000094, 47.564731041000115 ], [ 7.609746948000094, 47.564746399000043 ], [ 7.64690103500007, 47.551445236000049 ], [ 7.64674808125892, 47.53477326137687 ], [ 7.640391879881349, 47.529657294348624 ], [ 7.630314976355066, 47.533739731703236 ], [ 7.622563510997225, 47.537977200487376 ], [ 7.616827427243948, 47.542576401779513 ], [ 7.611711460215702, 47.544023341703848 ], [ 7.60644046355651, 47.542886461041292 ], [ 7.588870477090836, 47.534876614164375 ], [ 7.578793572665234, 47.540664373861716 ], [ 7.576003044704748, 47.544385076909748 ], [ 7.566236200440301, 47.545108548220924 ], [ 7.556779411840353, 47.546762192820893 ], [ 7.526497022619481, 47.561205756340541 ], [ 7.520866595716825, 47.563416048012186 ], [ 7.52634118600011, 47.566451721000092 ], [ 7.550319051000116, 47.575495097000058 ], [ 7.585482836000097, 47.584479135 ], [ 7.586028488000125, 47.584618544000065 ], [ 7.637032104000099, 47.594977112000052 ], [ 7.65966638200004, 47.596579082000076 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-BL", "NAME_1": "Basel-Landschaft" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.683437540000114, 47.544256694000083 ], [ 7.727320446881095, 47.550422624204714 ], [ 7.730567253975551, 47.548777574425515 ], [ 7.767050814943161, 47.536607774029505 ], [ 7.771701693978002, 47.536065172569636 ], [ 7.774027133945083, 47.535031642896001 ], [ 7.777747836993058, 47.532602851040735 ], [ 7.777127720268084, 47.527771104852604 ], [ 7.777747836993058, 47.522009181778287 ], [ 7.779918247329249, 47.516324774868451 ], [ 7.782708774390414, 47.51283661581715 ], [ 7.796196322602214, 47.51415436543158 ], [ 7.821362745694159, 47.529657294348624 ], [ 7.823843215292129, 47.532421982988126 ], [ 7.82461836074873, 47.535651760520295 ], [ 7.825083448742134, 47.541904609110418 ], [ 7.826323683091516, 47.545961208942629 ], [ 7.829114211052001, 47.547485663232749 ], [ 7.835160353167737, 47.548157456801164 ], [ 7.849423048634776, 47.545341091318278 ], [ 7.857329542724187, 47.537977200487376 ], [ 7.863065627376784, 47.53497996695188 ], [ 7.867716506411625, 47.528081163215063 ], [ 7.896913690014742, 47.497979641147481 ], [ 7.900479364331204, 47.490434882263969 ], [ 7.909626091870621, 47.485835680072569 ], [ 7.940218540353328, 47.483613592892993 ], [ 7.940373569084954, 47.469428411791739 ], [ 7.941458773803333, 47.465345974437128 ], [ 7.9423889497902, 47.463356432153603 ], [ 7.954946322914452, 47.457723701187831 ], [ 7.949675327154637, 47.447000840716214 ], [ 7.944869419388169, 47.440567124972802 ], [ 7.945024448119796, 47.438293361849162 ], [ 7.946729771361845, 47.434520981957746 ], [ 7.949675327154637, 47.430696926122209 ], [ 7.953085971840096, 47.426976223074234 ], [ 7.953706088565127, 47.422325344039393 ], [ 7.947814976080281, 47.417131863544626 ], [ 7.928901400679081, 47.407752591109158 ], [ 7.907765740796265, 47.403773504743413 ], [ 7.894898309309497, 47.403101712074317 ], [ 7.886991815220085, 47.403515123224338 ], [ 7.882030876923409, 47.402378242561838 ], [ 7.876449822801078, 47.39178457329939 ], [ 7.873194206847131, 47.387133694264548 ], [ 7.870507032573471, 47.384653225565899 ], [ 7.84601240394926, 47.377108465783067 ], [ 7.838570997853253, 47.373232734003466 ], [ 7.817797072277074, 47.369201971693599 ], [ 7.80534305194027, 47.363595079149547 ], [ 7.789685093392336, 47.345379137537122 ], [ 7.786119419075931, 47.338506171322706 ], [ 7.76488040460697, 47.342743639207583 ], [ 7.758937616178059, 47.344707343069388 ], [ 7.752116326807027, 47.347704575705563 ], [ 7.7446749198117, 47.353750718720676 ], [ 7.734908074647933, 47.358608303330527 ], [ 7.713824089809862, 47.366204739057423 ], [ 7.688967725979751, 47.370287177311354 ], [ 7.653776076204963, 47.368065091031099 ], [ 7.648505080445091, 47.369512030955434 ], [ 7.64519778764776, 47.372199205229094 ], [ 7.639616732626109, 47.384859931140909 ], [ 7.638066439914269, 47.390699368580954 ], [ 7.636981235195833, 47.398140773777641 ], [ 7.637911411182642, 47.406460679916393 ], [ 7.647213169252325, 47.408166002259179 ], [ 7.670984328364057, 47.412920234081525 ], [ 7.675480176868632, 47.41449636521503 ], [ 7.683851758951505, 47.421550198582793 ], [ 7.686952345274506, 47.429921779766289 ], [ 7.68741743326791, 47.442582506577367 ], [ 7.688347609254777, 47.445683092001047 ], [ 7.690362989960022, 47.448241075065539 ], [ 7.693153517021187, 47.45002391177411 ], [ 7.697184279330997, 47.45172923411684 ], [ 7.701215040741545, 47.45405467408392 ], [ 7.704160597433599, 47.45710358356348 ], [ 7.708708122781616, 47.463149726578592 ], [ 7.713359001816457, 47.467335516720709 ], [ 7.710258416392776, 47.471056219768684 ], [ 7.707002801338206, 47.473640042154216 ], [ 7.664318067724651, 47.491571763825789 ], [ 7.656256544903613, 47.491959337453409 ], [ 7.656101515272724, 47.487799383934373 ], [ 7.653776076204963, 47.485267239291659 ], [ 7.649745313895096, 47.483406887317983 ], [ 7.622718539728794, 47.485318915235723 ], [ 7.614501987276867, 47.484078680886398 ], [ 7.608145785899296, 47.472839057376575 ], [ 7.623493686984034, 47.467723090348329 ], [ 7.625974154783421, 47.464183255352907 ], [ 7.626594273307035, 47.461806139441762 ], [ 7.615122104901218, 47.439714464251097 ], [ 7.602874790139424, 47.431162014115614 ], [ 7.580188835746185, 47.429870103822225 ], [ 7.574762811254743, 47.428345649532048 ], [ 7.573987663999503, 47.422687079245293 ], [ 7.575072869617202, 47.418707993778867 ], [ 7.577398308684963, 47.415452378724297 ], [ 7.576003044704748, 47.413436998018994 ], [ 7.570887077676502, 47.412351793300616 ], [ 7.542206658910175, 47.410775662167055 ], [ 7.538330926231254, 47.409664619026898 ], [ 7.534558547239158, 47.407468370269044 ], [ 7.531612989647726, 47.402352403240798 ], [ 7.528047316230641, 47.397985745046071 ], [ 7.523551466826746, 47.3934898947428 ], [ 7.516265090361628, 47.390337633375054 ], [ 7.50680830176168, 47.388580634188884 ], [ 7.490530225589453, 47.39028595653167 ], [ 7.473425327117127, 47.396952216271757 ], [ 7.466293980282956, 47.397830716314502 ], [ 7.452651400641628, 47.395763657866496 ], [ 7.437148471724583, 47.379278876119201 ], [ 7.426296420943061, 47.379330552962642 ], [ 7.423144158675996, 47.380519111367846 ], [ 7.419733513990479, 47.382689520804718 ], [ 7.418183221278639, 47.39064769083825 ], [ 7.411206903176037, 47.398295803408587 ], [ 7.384231804953799, 47.413101101234815 ], [ 7.440404086779154, 47.414573880480191 ], [ 7.455131870239597, 47.421446844895968 ], [ 7.455751986964628, 47.425090034477478 ], [ 7.454976840608708, 47.428009751848549 ], [ 7.445830112169915, 47.438861803529392 ], [ 7.443504673102154, 47.440799668969532 ], [ 7.441179233135074, 47.441342272228042 ], [ 7.434512974294307, 47.441290595384658 ], [ 7.432032504696338, 47.441652329691237 ], [ 7.429241977635172, 47.442737535308993 ], [ 7.426916537668092, 47.444365343285938 ], [ 7.42567630421803, 47.445373032739269 ], [ 7.420818718708915, 47.450644029398404 ], [ 7.42056311969219, 47.450857028429084 ], [ 7.426088908000082, 47.455760803000047 ], [ 7.429292847000056, 47.465114238000083 ], [ 7.427639200000101, 47.470746969000103 ], [ 7.422781616000094, 47.47542368600007 ], [ 7.419474325000095, 47.477852478000031 ], [ 7.414410034000099, 47.484027812000093 ], [ 7.414306681000085, 47.490177307000081 ], [ 7.425985555000068, 47.492502747000017 ], [ 7.44148848500015, 47.488833720000017 ], [ 7.445995796968418, 47.486884129498947 ], [ 7.447225376150186, 47.464751695234497 ], [ 7.450636020835702, 47.456741848357581 ], [ 7.452031283916597, 47.454519762077325 ], [ 7.454201694252788, 47.452039293378675 ], [ 7.470479771324392, 47.451780910960224 ], [ 7.533938428715487, 47.460824285712192 ], [ 7.533318311990513, 47.487334295940968 ], [ 7.531612989647726, 47.49048655910741 ], [ 7.528977492217507, 47.49394887973699 ], [ 7.52091596759783, 47.49508576129881 ], [ 7.501692335632754, 47.500072537117887 ], [ 7.485776134000076, 47.498767511000025 ], [ 7.484896688000049, 47.500900167000097 ], [ 7.477765340000104, 47.507695618000056 ], [ 7.475594930000028, 47.511726379000052 ], [ 7.476938517000093, 47.514878643000102 ], [ 7.482726278000058, 47.516997376000077 ], [ 7.493061564000072, 47.515498759000067 ], [ 7.501123087000082, 47.517307434000045 ], [ 7.505463908000138, 47.523017681000013 ], [ 7.505153850000056, 47.533017070000128 ], [ 7.501743205000139, 47.532965394000101 ], [ 7.485103394000106, 47.541595357000048 ], [ 7.482726278000058, 47.542267151000047 ], [ 7.520866595716825, 47.563416048012186 ], [ 7.526497022619481, 47.561205756340541 ], [ 7.556779411840353, 47.546762192820893 ], [ 7.566236200440301, 47.545108548220924 ], [ 7.576003044704748, 47.544385076909748 ], [ 7.578793572665234, 47.540664373861716 ], [ 7.588870477090836, 47.534876614164375 ], [ 7.60644046355651, 47.542886461041292 ], [ 7.611711460215702, 47.544023341703848 ], [ 7.616827427243948, 47.542576401779513 ], [ 7.622563510997225, 47.537977200487376 ], [ 7.630314976355066, 47.533739731703236 ], [ 7.640391879881349, 47.529657294348624 ], [ 7.64674808125892, 47.53477326137687 ], [ 7.64690103500007, 47.551445236000049 ], [ 7.661423380000116, 47.546246236000016 ], [ 7.683437540000114, 47.544256694000083 ] ] ], [ [ [ 7.37854659000007, 47.430646058000022 ], [ 7.388218887000107, 47.433288860000104 ], [ 7.384231804953799, 47.413101101234815 ], [ 7.34247724822643, 47.427260443914349 ], [ 7.33937666190343, 47.42899160377948 ], [ 7.336930048000085, 47.431853680000089 ], [ 7.37854659000007, 47.430646058000022 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-SG", "NAME_1": "Sankt Gallen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.553058590581486, 47.516891337864934 ], [ 9.554951212000105, 47.510899557000116 ], [ 9.584510132000048, 47.480720521000094 ], [ 9.621717163000142, 47.469196676000067 ], [ 9.650345907000116, 47.452091777000035 ], [ 9.649519084000104, 47.409717103000034 ], [ 9.639803914000055, 47.394524231000091 ], [ 9.601046590000124, 47.361270447000052 ], [ 9.596395711000071, 47.352304586000017 ], [ 9.591228068000078, 47.334682923000045 ], [ 9.587404012000121, 47.327809957000071 ], [ 9.553297567000072, 47.299853008000056 ], [ 9.52115482500011, 47.2628010050001 ], [ 9.504618368000138, 47.24373240200002 ], [ 9.497043626603961, 47.228934441756735 ], [ 9.487358439000047, 47.210013529000051 ], [ 9.486433793458151, 47.196917734867441 ], [ 9.484981323000085, 47.176346334000115 ], [ 9.492629435000083, 47.159809876000011 ], [ 9.495534340722259, 47.155950501228105 ], [ 9.503481486000112, 47.145392151000109 ], [ 9.511853068000107, 47.129372457000059 ], [ 9.512369832000047, 47.10803009100006 ], [ 9.50286136800014, 47.094697572000129 ], [ 9.487565145000104, 47.083948874 ], [ 9.475886271000121, 47.073226014000099 ], [ 9.477023152696347, 47.063898417477958 ], [ 9.477178989019137, 47.059996038786153 ], [ 9.484775424746033, 47.043227037098063 ], [ 9.49588585794595, 47.026561388197479 ], [ 9.52637495274189, 46.99113719352664 ], [ 9.53195600776354, 46.983334052224734 ], [ 9.524359572036587, 46.981938788244463 ], [ 9.518468458652421, 46.979509996389197 ], [ 9.51381757961758, 46.975970161393832 ], [ 9.510096876569605, 46.966642564003109 ], [ 9.507306348609063, 46.962482612282713 ], [ 9.497952914595317, 46.957495836463636 ], [ 9.492836947567071, 46.953206691735431 ], [ 9.486015659095358, 46.944680080920989 ], [ 9.480899692067112, 46.936928616462467 ], [ 9.477799105744111, 46.925043036007253 ], [ 9.478264193737516, 46.920288805084283 ], [ 9.477178989019137, 46.915121161212596 ], [ 9.474388461957915, 46.909720974243555 ], [ 9.461210972108688, 46.89377879485545 ], [ 9.448653598984379, 46.890936590950901 ], [ 9.445708042292324, 46.882720038498974 ], [ 9.442555780025202, 46.881789863411427 ], [ 9.435424432291711, 46.882332464871354 ], [ 9.424262323147673, 46.888146063889735 ], [ 9.403798455034632, 46.895225734779785 ], [ 9.26985314260844, 46.908609931103399 ], [ 9.265512322835434, 46.90693044718239 ], [ 9.260241327075562, 46.906904608760669 ], [ 9.256675652759156, 46.907576402329084 ], [ 9.240862663680957, 46.920340481028347 ], [ 9.242878045285522, 46.929693915042094 ], [ 9.241792839667824, 46.93349213335523 ], [ 9.234041375209301, 46.945455227276909 ], [ 9.230630731423105, 46.954240221409066 ], [ 9.2301656434297, 46.957909246714337 ], [ 9.232181024134945, 46.961009833037338 ], [ 9.233111200121755, 46.963567817001149 ], [ 9.237762078257276, 46.992325751032581 ], [ 9.236211786444755, 46.999405422822008 ], [ 9.23187096487311, 47.008242091998909 ], [ 9.218693475023827, 47.026742255350769 ], [ 9.210425245728516, 47.034390367021786 ], [ 9.202363722008158, 47.038524482119158 ], [ 9.195077344643721, 47.038059394125696 ], [ 9.187635939447034, 47.036457425469791 ], [ 9.176473830302996, 47.032633368734935 ], [ 9.157818638219567, 47.031238104754721 ], [ 9.15130740721105, 47.032504177525766 ], [ 9.132858920702631, 47.039790553990827 ], [ 9.1322388039776, 47.041676744386223 ], [ 9.134719272676307, 47.044105536241489 ], [ 9.169342481670185, 47.060641994832167 ], [ 9.174923536691836, 47.074672146302476 ], [ 9.179884474089192, 47.122240302048283 ], [ 9.074671258172032, 47.136270453518591 ], [ 9.059478386718183, 47.142187405324478 ], [ 9.007026807940804, 47.174691880825605 ], [ 9.001135694556638, 47.174846910456552 ], [ 8.985116000802805, 47.168929959549985 ], [ 8.958450961842402, 47.187249253949858 ], [ 8.951939730833885, 47.195698351297835 ], [ 8.951784702102316, 47.198178819097222 ], [ 8.952559849357556, 47.204354153321503 ], [ 8.955350376418721, 47.21391429291026 ], [ 8.924137811210983, 47.220451362340498 ], [ 8.829983350751036, 47.214017645697766 ], [ 8.775361361637522, 47.220580553549667 ], [ 8.789158970010419, 47.243731594137728 ], [ 8.807607455619575, 47.25360179298832 ], [ 8.84874189562197, 47.249700221887679 ], [ 8.861764356739684, 47.250475369142919 ], [ 8.920727165626204, 47.269104722804684 ], [ 8.930028923695886, 47.274840807457281 ], [ 8.93467980273067, 47.279569199958587 ], [ 8.933904657274127, 47.287811590832234 ], [ 8.939537388239842, 47.294012763478236 ], [ 8.946978794335905, 47.300782376005827 ], [ 8.959846225822673, 47.308378810833403 ], [ 8.966047397569355, 47.313391425074201 ], [ 8.969147982993036, 47.317267157753122 ], [ 8.966202427200244, 47.325121974999149 ], [ 8.960466343446967, 47.346490179777959 ], [ 8.936695184335292, 47.375609849914611 ], [ 8.932354363662967, 47.379950669687616 ], [ 8.942482944032633, 47.380415758580341 ], [ 8.95069949738388, 47.387883002198748 ], [ 8.964497104857514, 47.404858710361168 ], [ 8.974263950021282, 47.412661852562394 ], [ 8.985426060064583, 47.429870103822225 ], [ 8.989146763112615, 47.433487454082695 ], [ 8.993642611617247, 47.43457265880113 ], [ 8.997414992407982, 47.4335908068702 ], [ 9.000825636194122, 47.433539130026816 ], [ 9.004701368873043, 47.43421092449455 ], [ 9.009352247907884, 47.436071275568906 ], [ 9.014313185305241, 47.437492377071521 ], [ 9.019739210696002, 47.438448391480051 ], [ 9.026715528798604, 47.438913479473456 ], [ 9.03028120311501, 47.440489609707697 ], [ 9.032141554189366, 47.442995916828067 ], [ 9.03260664218277, 47.446354885569463 ], [ 9.031211379101876, 47.45653514278257 ], [ 9.031211379101876, 47.460100816199656 ], [ 9.003461133624398, 47.473536689366711 ], [ 9.001290724187584, 47.476792304421281 ], [ 9.000360549100037, 47.481856593706823 ], [ 9.003616164154664, 47.486249091222533 ], [ 9.0096623062704, 47.487851060777814 ], [ 9.015088331661161, 47.488626207133734 ], [ 9.019274122702598, 47.489659735908049 ], [ 9.027645704785414, 47.495705878023841 ], [ 9.031211379101876, 47.496377672491576 ], [ 9.039117873191287, 47.494413966831075 ], [ 9.045164015307023, 47.494258938099506 ], [ 9.062423944309558, 47.496119290073182 ], [ 9.065679559364185, 47.495705878023841 ], [ 9.068315056794404, 47.493845526949485 ], [ 9.070330438399026, 47.491339219829115 ], [ 9.07265587656741, 47.489608059064665 ], [ 9.075601434158841, 47.489091295127139 ], [ 9.084438104235119, 47.490073147058069 ], [ 9.08831383601472, 47.490073147058069 ], [ 9.100871209138973, 47.487773546412029 ], [ 9.113325230375096, 47.487851060777814 ], [ 9.12991336401052, 47.489608059064665 ], [ 9.137819858099931, 47.492708645387665 ], [ 9.142470737134772, 47.496532701223146 ], [ 9.151462436841996, 47.507591458478998 ], [ 9.166396925877393, 47.495602525236336 ], [ 9.199108106953588, 47.484957180029824 ], [ 9.238072136619792, 47.479066067544977 ], [ 9.255745476772347, 47.477412421146312 ], [ 9.259621208551948, 47.479505317116661 ], [ 9.268767937890004, 47.482941800223898 ], [ 9.274555697587346, 47.483251857687037 ], [ 9.282927279670218, 47.481908271449527 ], [ 9.289748569041194, 47.483406887317983 ], [ 9.295174595331275, 47.486094062490963 ], [ 9.298895298379307, 47.489969794270564 ], [ 9.301220737447068, 47.493044542171845 ], [ 9.304941439595723, 47.500770169107966 ], [ 9.299825474366116, 47.515756334087541 ], [ 9.296724888043116, 47.516402289234236 ], [ 9.29238406737079, 47.51647980449934 ], [ 9.286958041980029, 47.514981187731621 ], [ 9.280756870233347, 47.51415436543158 ], [ 9.270163201870275, 47.515187893306631 ], [ 9.266442497922924, 47.51684153880592 ], [ 9.266287469191354, 47.519425361191452 ], [ 9.267992790634764, 47.520717272384161 ], [ 9.26985314260844, 47.521182359478303 ], [ 9.272023552944574, 47.520407213122382 ], [ 9.273728875287361, 47.520355536278942 ], [ 9.276261020829452, 47.521389065053313 ], [ 9.279361606253133, 47.524024563382852 ], [ 9.283237338932054, 47.525988268144033 ], [ 9.289438510678735, 47.527538560855874 ], [ 9.295174595331275, 47.528365383155858 ], [ 9.303391147783259, 47.528701279940094 ], [ 9.306336703575994, 47.529476427195334 ], [ 9.31129764187267, 47.5326545269848 ], [ 9.315948520907511, 47.534101466909135 ], [ 9.320909458304868, 47.535134996582826 ], [ 9.335068800984345, 47.535445054945285 ], [ 9.344370558154708, 47.525419827363123 ], [ 9.344370558154708, 47.521337389109192 ], [ 9.343905470161303, 47.517642524482881 ], [ 9.340649855106733, 47.51224233751384 ], [ 9.342975295073813, 47.507513943213894 ], [ 9.365299513361833, 47.487954413565319 ], [ 9.373981153807165, 47.483096828955468 ], [ 9.380492383916362, 47.481417345034401 ], [ 9.387365350130779, 47.490693263783101 ], [ 9.438369988983766, 47.516738186018472 ], [ 9.44849856935349, 47.512190659771079 ], [ 9.444002719949538, 47.502940579444157 ], [ 9.445087924667973, 47.501648668251391 ], [ 9.446018100654783, 47.500150051483672 ], [ 9.455939976348816, 47.496636054010651 ], [ 9.459660679396848, 47.496377672491576 ], [ 9.464466587163258, 47.49699778921655 ], [ 9.473458285971105, 47.499297389862647 ], [ 9.552833286127225, 47.51684153880592 ], [ 9.553058590581486, 47.516891337864934 ] ], [ [ 9.488186069431549, 47.353388984414096 ], [ 9.481364780060517, 47.368478502181119 ], [ 9.486635775820389, 47.393619085952025 ], [ 9.513662550886011, 47.400776272107237 ], [ 9.52637495274189, 47.402119859244067 ], [ 9.540482618577983, 47.397236437111872 ], [ 9.583167352191538, 47.415245673149286 ], [ 9.581462029848808, 47.424392402487342 ], [ 9.583167352191538, 47.431756293318244 ], [ 9.585337761628409, 47.43415924675179 ], [ 9.608437127171669, 47.449765530254979 ], [ 9.567664422375174, 47.454519762077325 ], [ 9.552109815715426, 47.458705553118762 ], [ 9.549009230291745, 47.460152493043097 ], [ 9.542187940920712, 47.464183255352907 ], [ 9.539242384228658, 47.465216783227959 ], [ 9.530870802145785, 47.466612047208173 ], [ 9.528700391809593, 47.467283840776588 ], [ 9.52637495274189, 47.468343207073303 ], [ 9.522344191331342, 47.468110663076629 ], [ 9.516918165940581, 47.466095283270704 ], [ 9.495937533890071, 47.453227850884559 ], [ 9.445863071023894, 47.437983303486646 ], [ 9.437439812996956, 47.435761217206391 ], [ 9.425657586228624, 47.433952542076156 ], [ 9.420386589569432, 47.427803046273539 ], [ 9.417130975414182, 47.421705227314362 ], [ 9.415425653071395, 47.41643423155449 ], [ 9.40937951005634, 47.41183502936309 ], [ 9.397442253657061, 47.409302882921679 ], [ 9.375376417787436, 47.409509589396009 ], [ 9.339409620757351, 47.405427151142078 ], [ 9.294244419344466, 47.399225979395396 ], [ 9.277966343172181, 47.402843328756603 ], [ 9.27078331859525, 47.402895006499307 ], [ 9.234971551196111, 47.399225979395396 ], [ 9.225979852388264, 47.400311184113832 ], [ 9.222569206803428, 47.397417304265161 ], [ 9.217401563831118, 47.39142283809349 ], [ 9.207634717767974, 47.376695055532366 ], [ 9.200038282940397, 47.367651678981758 ], [ 9.187635939447034, 47.359693508048906 ], [ 9.186085645835874, 47.357703965765381 ], [ 9.199108106953588, 47.340211494564812 ], [ 9.209029981748245, 47.341865139164838 ], [ 9.21337080242057, 47.341865139164838 ], [ 9.216781447106086, 47.340263170508877 ], [ 9.218021680556092, 47.336852524924041 ], [ 9.213680860783086, 47.331400662010935 ], [ 9.210270216996889, 47.327964178903699 ], [ 9.203758985988372, 47.323261623924793 ], [ 9.201898634014753, 47.319256700036647 ], [ 9.201278517289722, 47.312926337080739 ], [ 9.208254836291644, 47.290498766005214 ], [ 9.196627638254881, 47.281093655148027 ], [ 9.204069045250208, 47.275073351453955 ], [ 9.208254836291644, 47.273368028211905 ], [ 9.217401563831118, 47.27153351555927 ], [ 9.267217645178164, 47.267089342099439 ], [ 9.297965122392498, 47.25551382090606 ], [ 9.308352085180559, 47.25013947235874 ], [ 9.311142612241724, 47.250242825146245 ], [ 9.314708285658867, 47.250087796414675 ], [ 9.33150312666794, 47.253110867472515 ], [ 9.344680617416543, 47.246573798042334 ], [ 9.353362257861875, 47.244196682131133 ], [ 9.360338575964477, 47.241147773550892 ], [ 9.369175246040754, 47.239907538302248 ], [ 9.375531447418325, 47.239700832727237 ], [ 9.403798455034632, 47.247038886035739 ], [ 9.423332147160863, 47.253886012929115 ], [ 9.437749871359472, 47.260991523140262 ], [ 9.45159915477717, 47.27153351555927 ], [ 9.471132846903345, 47.296441555333502 ], [ 9.488186069431549, 47.353388984414096 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-SO", "NAME_1": "Solothurn" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.467430053000101, 47.481909078000044 ], [ 7.482726278000058, 47.491262512000063 ], [ 7.484483276000049, 47.492941997000045 ], [ 7.485826864000103, 47.495784200000102 ], [ 7.485930217000146, 47.498393860000121 ], [ 7.485776134000076, 47.498767511000025 ], [ 7.501692335632754, 47.500072537117887 ], [ 7.52091596759783, 47.49508576129881 ], [ 7.528977492217507, 47.49394887973699 ], [ 7.531612989647726, 47.49048655910741 ], [ 7.533318311990513, 47.487334295940968 ], [ 7.533938428715487, 47.460824285712192 ], [ 7.470479771324392, 47.451780910960224 ], [ 7.454201694252788, 47.452039293378675 ], [ 7.452031283916597, 47.454519762077325 ], [ 7.450636020835702, 47.456741848357581 ], [ 7.447225376150186, 47.464751695234497 ], [ 7.445995796968418, 47.486884129498947 ], [ 7.454510946000113, 47.483200989000082 ], [ 7.467430053000101, 47.481909078000044 ] ] ], [ [ [ 7.388218887000107, 47.433288860000104 ], [ 7.406348511000118, 47.438242493000061 ], [ 7.42056311969219, 47.450857028429084 ], [ 7.420818718708915, 47.450644029398404 ], [ 7.42567630421803, 47.445373032739269 ], [ 7.426916537668092, 47.444365343285938 ], [ 7.429241977635172, 47.442737535308993 ], [ 7.432032504696338, 47.441652329691237 ], [ 7.434512974294307, 47.441290595384658 ], [ 7.441179233135074, 47.441342272228042 ], [ 7.443504673102154, 47.440799668969532 ], [ 7.445830112169915, 47.438861803529392 ], [ 7.454976840608708, 47.428009751848549 ], [ 7.455751986964628, 47.425090034477478 ], [ 7.455131870239597, 47.421446844895968 ], [ 7.440404086779154, 47.414573880480191 ], [ 7.384231804953799, 47.413101101234815 ], [ 7.388218887000107, 47.433288860000104 ] ] ], [ [ [ 7.558949823075864, 47.320651964016918 ], [ 7.567476433890306, 47.321117052010322 ], [ 7.56887169787052, 47.323985094336592 ], [ 7.569956902588956, 47.329256090096465 ], [ 7.569181756233036, 47.333700263556295 ], [ 7.567476433890306, 47.337756863388506 ], [ 7.564685906829141, 47.340573228871392 ], [ 7.562050409398864, 47.342614447998358 ], [ 7.554453972772592, 47.344035550400292 ], [ 7.538330926231254, 47.353156440417365 ], [ 7.528977492217507, 47.363750107881174 ], [ 7.520605910134634, 47.36791006140021 ], [ 7.512389356783387, 47.36982208931795 ], [ 7.50510298031827, 47.369512030955434 ], [ 7.485724317822985, 47.370855618092264 ], [ 7.437148471724583, 47.379278876119201 ], [ 7.452651400641628, 47.395763657866496 ], [ 7.466293980282956, 47.397830716314502 ], [ 7.473425327117127, 47.396952216271757 ], [ 7.490530225589453, 47.39028595653167 ], [ 7.50680830176168, 47.388580634188884 ], [ 7.516265090361628, 47.390337633375054 ], [ 7.523551466826746, 47.3934898947428 ], [ 7.528047316230641, 47.397985745046071 ], [ 7.531612989647726, 47.402352403240798 ], [ 7.534558547239158, 47.407468370269044 ], [ 7.538330926231254, 47.409664619026898 ], [ 7.542206658910175, 47.410775662167055 ], [ 7.570887077676502, 47.412351793300616 ], [ 7.576003044704748, 47.413436998018994 ], [ 7.577398308684963, 47.415452378724297 ], [ 7.575072869617202, 47.418707993778867 ], [ 7.573987663999503, 47.422687079245293 ], [ 7.574762811254743, 47.428345649532048 ], [ 7.580188835746185, 47.429870103822225 ], [ 7.602874790139424, 47.431162014115614 ], [ 7.615122104901218, 47.439714464251097 ], [ 7.626594273307035, 47.461806139441762 ], [ 7.625974154783421, 47.464183255352907 ], [ 7.623493686984034, 47.467723090348329 ], [ 7.608145785899296, 47.472839057376575 ], [ 7.614501987276867, 47.484078680886398 ], [ 7.622718539728794, 47.485318915235723 ], [ 7.649745313895096, 47.483406887317983 ], [ 7.653776076204963, 47.485267239291659 ], [ 7.656101515272724, 47.487799383934373 ], [ 7.656256544903613, 47.491959337453409 ], [ 7.664318067724651, 47.491571763825789 ], [ 7.707002801338206, 47.473640042154216 ], [ 7.710258416392776, 47.471056219768684 ], [ 7.713359001816457, 47.467335516720709 ], [ 7.708708122781616, 47.463149726578592 ], [ 7.704160597433599, 47.45710358356348 ], [ 7.701215040741545, 47.45405467408392 ], [ 7.697184279330997, 47.45172923411684 ], [ 7.693153517021187, 47.45002391177411 ], [ 7.690362989960022, 47.448241075065539 ], [ 7.688347609254777, 47.445683092001047 ], [ 7.68741743326791, 47.442582506577367 ], [ 7.686952345274506, 47.429921779766289 ], [ 7.683851758951505, 47.421550198582793 ], [ 7.675480176868632, 47.41449636521503 ], [ 7.670984328364057, 47.412920234081525 ], [ 7.647213169252325, 47.408166002259179 ], [ 7.637911411182642, 47.406460679916393 ], [ 7.636981235195833, 47.398140773777641 ], [ 7.638066439914269, 47.390699368580954 ], [ 7.639616732626109, 47.384859931140909 ], [ 7.64519778764776, 47.372199205229094 ], [ 7.648505080445091, 47.369512030955434 ], [ 7.653776076204963, 47.368065091031099 ], [ 7.688967725979751, 47.370287177311354 ], [ 7.713824089809862, 47.366204739057423 ], [ 7.734908074647933, 47.358608303330527 ], [ 7.7446749198117, 47.353750718720676 ], [ 7.752116326807027, 47.347704575705563 ], [ 7.758937616178059, 47.344707343069388 ], [ 7.76488040460697, 47.342743639207583 ], [ 7.786119419075931, 47.338506171322706 ], [ 7.789685093392336, 47.345379137537122 ], [ 7.80534305194027, 47.363595079149547 ], [ 7.817797072277074, 47.369201971693599 ], [ 7.838570997853253, 47.373232734003466 ], [ 7.84601240394926, 47.377108465783067 ], [ 7.870507032573471, 47.384653225565899 ], [ 7.873194206847131, 47.387133694264548 ], [ 7.876449822801078, 47.39178457329939 ], [ 7.882030876923409, 47.402378242561838 ], [ 7.886991815220085, 47.403515123224338 ], [ 7.894898309309497, 47.403101712074317 ], [ 7.907765740796265, 47.403773504743413 ], [ 7.928901400679081, 47.407752591109158 ], [ 7.947814976080281, 47.417131863544626 ], [ 7.953706088565127, 47.422325344039393 ], [ 7.953085971840096, 47.426976223074234 ], [ 7.949675327154637, 47.430696926122209 ], [ 7.946729771361845, 47.434520981957746 ], [ 7.945024448119796, 47.438293361849162 ], [ 7.944869419388169, 47.440567124972802 ], [ 7.949675327154637, 47.447000840716214 ], [ 7.954946322914452, 47.457723701187831 ], [ 7.970449252730816, 47.455811673270091 ], [ 7.979130894075467, 47.448680325536543 ], [ 7.980836216418254, 47.445476386426094 ], [ 7.98114627388145, 47.442220771371467 ], [ 7.980216098793903, 47.440153713822838 ], [ 7.981301304411659, 47.431162014115614 ], [ 7.988019240095866, 47.428345649532048 ], [ 7.992360059868872, 47.41452220273743 ], [ 7.997010938903713, 47.40992300144535 ], [ 8.005692580248365, 47.404290270479578 ], [ 8.015459425412132, 47.400569566532226 ], [ 8.028016799435704, 47.398140773777641 ], [ 8.02910200415414, 47.379149684910033 ], [ 8.02181562678976, 47.367780870190984 ], [ 8.010498488014775, 47.356153673053541 ], [ 7.996855910172087, 47.334475409912216 ], [ 7.988794385552467, 47.330858058752369 ], [ 7.981611361874855, 47.328274238165534 ], [ 7.917842645221867, 47.334837145118115 ], [ 7.909161003877216, 47.337136745764155 ], [ 7.901874627412099, 47.338299465747696 ], [ 7.857484572355133, 47.3106525739571 ], [ 7.854539014763702, 47.308017076526824 ], [ 7.830354445401326, 47.275357571394807 ], [ 7.82291303930532, 47.268975532494778 ], [ 7.788289829412065, 47.263213609420518 ], [ 7.778833041711493, 47.265539049387598 ], [ 7.759402703272144, 47.260578111090922 ], [ 7.731807489224252, 47.261534125499452 ], [ 7.720180291187489, 47.266572577262593 ], [ 7.686332227650155, 47.294219469053246 ], [ 7.650210401888501, 47.283212389540097 ], [ 7.583444451700075, 47.277553819253342 ], [ 7.597758823111178, 47.265874946171778 ], [ 7.598999058359823, 47.262128403802762 ], [ 7.602099643783504, 47.25494538012515 ], [ 7.602874790139424, 47.247245592510069 ], [ 7.621478306278789, 47.231949368268715 ], [ 7.639771763156318, 47.226264960459559 ], [ 7.655791456910208, 47.210167752339885 ], [ 7.67005415237719, 47.192623603396555 ], [ 7.675170119405493, 47.184510402832814 ], [ 7.676875440848903, 47.178774319079537 ], [ 7.675325148137063, 47.175673732756536 ], [ 7.672689649807467, 47.172418117701966 ], [ 7.669434034752896, 47.170299384209216 ], [ 7.660132276683214, 47.166914577945363 ], [ 7.653931104936532, 47.160480862202007 ], [ 7.64349246620435, 47.15319448483757 ], [ 7.637446323189238, 47.152522691269155 ], [ 7.591350945789486, 47.153504544099405 ], [ 7.564530877198195, 47.166165270011163 ], [ 7.553368768054213, 47.164976712505279 ], [ 7.539416130949689, 47.155726630379661 ], [ 7.513164504038627, 47.129578355356784 ], [ 7.498746778940699, 47.120741686179827 ], [ 7.472030064036232, 47.112292588831906 ], [ 7.468619419350716, 47.109424547404899 ], [ 7.468774448082286, 47.105135403576014 ], [ 7.473890415110532, 47.096247057555615 ], [ 7.475440707822372, 47.091492824833949 ], [ 7.474665562365772, 47.085756741080729 ], [ 7.471099888049366, 47.082397773238597 ], [ 7.464743686671795, 47.079710598065617 ], [ 7.44629520016332, 47.075447293557716 ], [ 7.437613559717988, 47.088909003347794 ], [ 7.436838413362068, 47.097978217420746 ], [ 7.434512974294307, 47.098443305414207 ], [ 7.426141392211491, 47.097358099796452 ], [ 7.397564325333349, 47.0917512072524 ], [ 7.393998651016943, 47.092939764758285 ], [ 7.388262567263666, 47.096247057555615 ], [ 7.382216424248554, 47.104851182735842 ], [ 7.378805779563038, 47.108546048261474 ], [ 7.376015251602553, 47.112421780041075 ], [ 7.374930046884117, 47.115574042308197 ], [ 7.376480339595958, 47.119940701402243 ], [ 7.379735954650585, 47.120690009336442 ], [ 7.391053094324832, 47.119294745356171 ], [ 7.397409294803083, 47.119449774987118 ], [ 7.407641228859632, 47.117615261435162 ], [ 7.412292107894473, 47.117951158219341 ], [ 7.430017123991092, 47.121206773273968 ], [ 7.437613559717988, 47.124281521175249 ], [ 7.438388706073908, 47.129061591419259 ], [ 7.436373325368663, 47.138621731008072 ], [ 7.438233677342339, 47.143427638774483 ], [ 7.444434849089021, 47.149809679473094 ], [ 7.455441928602113, 47.156036688742176 ], [ 7.458852573287629, 47.156036688742176 ], [ 7.46365848105404, 47.154124660824436 ], [ 7.469704624069152, 47.153039456106001 ], [ 7.476680942171754, 47.154124660824436 ], [ 7.487584669796661, 47.159292303796747 ], [ 7.490995313582857, 47.164563300455939 ], [ 7.487584669796661, 47.168077297928903 ], [ 7.48293379076182, 47.170712796258499 ], [ 7.479626498863809, 47.173348293688775 ], [ 7.478231234883594, 47.178102525511122 ], [ 7.475905795815834, 47.190918281053825 ], [ 7.46040286599947, 47.188799547561018 ], [ 7.455131870239597, 47.186887518743958 ], [ 7.447690464143591, 47.182546698970953 ], [ 7.439473910792344, 47.181099758147298 ], [ 7.434047886300903, 47.176810615217676 ], [ 7.425056186593736, 47.171229560196025 ], [ 7.417253045291773, 47.164511624511817 ], [ 7.409191521571472, 47.161514390976322 ], [ 7.398804558783354, 47.160248318205277 ], [ 7.392603387036672, 47.161256008557928 ], [ 7.390277947968912, 47.162392890119747 ], [ 7.390743035962316, 47.164511624511817 ], [ 7.391363152687347, 47.166682033948689 ], [ 7.390743035962316, 47.169730943428249 ], [ 7.383921745692021, 47.181254787778187 ], [ 7.381441277892634, 47.184355374101187 ], [ 7.376635370126223, 47.186784165956453 ], [ 7.36557661287037, 47.189574693017619 ], [ 7.36077070510396, 47.191512560256399 ], [ 7.357670118780959, 47.19422557205246 ], [ 7.354879591719794, 47.200013333548497 ], [ 7.351313918302651, 47.203630682909647 ], [ 7.346197951274405, 47.21179555941751 ], [ 7.348833448704681, 47.216575628762257 ], [ 7.42376427630029, 47.239494127152227 ], [ 7.421128777970694, 47.246522122098213 ], [ 7.442264438752829, 47.258769435960687 ], [ 7.464588657040849, 47.264918931763248 ], [ 7.473890415110532, 47.270344957154009 ], [ 7.48525922982958, 47.278871567968451 ], [ 7.493785842442662, 47.283522447003293 ], [ 7.500762159645944, 47.286442166173003 ], [ 7.533473341621402, 47.293573513007175 ], [ 7.542826775635149, 47.297991848045342 ], [ 7.548717889019372, 47.302797756711072 ], [ 7.556314324746268, 47.318171495318211 ], [ 7.558949823075864, 47.320651964016918 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-JU", "NAME_1": "Jura" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.009783569000149, 47.499246522000035 ], [ 7.018878621000056, 47.49767039000001 ], [ 7.027973674000094, 47.492941997000045 ], [ 7.053915242000073, 47.490384013000053 ], [ 7.10373132300009, 47.496275126000043 ], [ 7.127295776000096, 47.492941997000045 ], [ 7.140318237000116, 47.48785186800005 ], [ 7.142169389000088, 47.48765096800004 ], [ 7.15365075700015, 47.486404928000056 ], [ 7.180832560000056, 47.48826528000005 ], [ 7.1626424560001, 47.459894918000046 ], [ 7.168326863000061, 47.44356516500001 ], [ 7.190030965000034, 47.434728496000034 ], [ 7.219383179000118, 47.428475647000099 ], [ 7.223517293000043, 47.42622772300011 ], [ 7.226307820000102, 47.422636211000039 ], [ 7.230338583000105, 47.419018861000055 ], [ 7.2380900470001, 47.416796773000058 ], [ 7.244807984000118, 47.417726949 ], [ 7.282635132000109, 47.428889059000127 ], [ 7.309093465000103, 47.432661438000068 ], [ 7.336930048000085, 47.431853680000089 ], [ 7.33937666190343, 47.42899160377948 ], [ 7.34247724822643, 47.427260443914349 ], [ 7.384231804953799, 47.413101101234815 ], [ 7.411206903176037, 47.398295803408587 ], [ 7.418183221278639, 47.39064769083825 ], [ 7.419733513990479, 47.382689520804718 ], [ 7.423144158675996, 47.380519111367846 ], [ 7.426296420943061, 47.379330552962642 ], [ 7.437148471724583, 47.379278876119201 ], [ 7.485724317822985, 47.370855618092264 ], [ 7.50510298031827, 47.369512030955434 ], [ 7.512389356783387, 47.36982208931795 ], [ 7.520605910134634, 47.36791006140021 ], [ 7.528977492217507, 47.363750107881174 ], [ 7.538330926231254, 47.353156440417365 ], [ 7.554453972772592, 47.344035550400292 ], [ 7.538175896600308, 47.333700263556295 ], [ 7.535798780689163, 47.32705984133861 ], [ 7.536625603888524, 47.323881741549087 ], [ 7.540191278204929, 47.322279771993863 ], [ 7.558949823075864, 47.320651964016918 ], [ 7.556314324746268, 47.318171495318211 ], [ 7.496576368604508, 47.306621813445929 ], [ 7.387177361645911, 47.312616278718281 ], [ 7.377410515582824, 47.315406805779446 ], [ 7.375395134877579, 47.319075832883357 ], [ 7.371829460561116, 47.323985094336592 ], [ 7.369038934399271, 47.324708563849128 ], [ 7.366661817588806, 47.322951565562278 ], [ 7.364646436883561, 47.318610744889952 ], [ 7.360925733835529, 47.315096747416931 ], [ 7.355344678813879, 47.31142772121234 ], [ 7.347283155992841, 47.309050605301195 ], [ 7.342632276958, 47.306776842177499 ], [ 7.338446485916563, 47.303882962328828 ], [ 7.330695020558721, 47.299645494444007 ], [ 7.319222853052224, 47.294736232990715 ], [ 7.293591342866193, 47.288457546878249 ], [ 7.278243441781399, 47.286261298120394 ], [ 7.259174839447269, 47.285486151764474 ], [ 7.174890577837857, 47.297113348901917 ], [ 7.172410109139207, 47.286881414845368 ], [ 7.174115430582617, 47.282514757550018 ], [ 7.172255080407638, 47.278768216080266 ], [ 7.168224318097771, 47.275822659388211 ], [ 7.158147413672168, 47.27075836920335 ], [ 7.156287061698549, 47.267709458824413 ], [ 7.155821973705088, 47.265435695700774 ], [ 7.155977004235353, 47.262231757489587 ], [ 7.157837355309709, 47.255100409756096 ], [ 7.159852736014955, 47.250966295558044 ], [ 7.154736768986709, 47.247503974029144 ], [ 7.105540806163276, 47.241199449494957 ], [ 7.074328240955538, 47.243163154256138 ], [ 7.067817009947021, 47.242336331056833 ], [ 7.063786247637211, 47.239597479939732 ], [ 7.061925896562855, 47.23396474897396 ], [ 7.060995720576045, 47.232311103474615 ], [ 7.059445427864205, 47.22993398756347 ], [ 7.052159051399087, 47.222544257411528 ], [ 7.047353142733357, 47.216033027302331 ], [ 7.040221794999809, 47.209366767562244 ], [ 7.029628126636737, 47.202132066141928 ], [ 7.013660108826969, 47.196447659232035 ], [ 7.004358350757286, 47.191822617719595 ], [ 6.993506299975763, 47.184355374101187 ], [ 6.983119338086965, 47.182934271699253 ], [ 6.960433383693669, 47.183528550901883 ], [ 6.948806186556226, 47.179136054285436 ], [ 6.912942743213023, 47.160222479783613 ], [ 6.901780633169665, 47.155700791957941 ], [ 6.894029167811823, 47.154305527977726 ], [ 6.889843376770386, 47.155829983167166 ], [ 6.886432732984247, 47.158517158340146 ], [ 6.877286003646134, 47.163658962890793 ], [ 6.849794142385747, 47.165080064393408 ], [ 6.838076255814542, 47.16813159719544 ], [ 6.840284871000108, 47.169525045000071 ], [ 6.859301798000075, 47.190919088000058 ], [ 6.88834395300006, 47.211305441000022 ], [ 6.956246785000104, 47.245231018000126 ], [ 6.952216024000023, 47.270035705000069 ], [ 6.958623901000067, 47.290551250000036 ], [ 6.97743412300008, 47.303728739000022 ], [ 6.986529174000054, 47.304503887000024 ], [ 6.991903524000094, 47.305950827000018 ], [ 7.00647627800015, 47.31936086000006 ], [ 7.016914917000094, 47.323520813000087 ], [ 7.027146850000094, 47.325432841000023 ], [ 7.036551961000043, 47.329515279000034 ], [ 7.044303426000056, 47.34049652100002 ], [ 7.033864787000113, 47.350650940000079 ], [ 7.018878621000056, 47.359901021000084 ], [ 7.003995809000088, 47.368143413000027 ], [ 6.985598999000104, 47.362123108000091 ], [ 6.866639852000077, 47.354164937000021 ], [ 6.871600789000126, 47.366954855000088 ], [ 6.884003133000078, 47.382586976000042 ], [ 6.898782593000107, 47.395712790000019 ], [ 6.924517456000103, 47.4059964 ], [ 6.926067749000111, 47.424858297000029 ], [ 6.939169949951677, 47.426844260931965 ], [ 6.952319376000048, 47.428837383000101 ], [ 6.968545777000145, 47.435193583000043 ], [ 6.983428589000113, 47.443797709000066 ], [ 6.990973348000068, 47.452220968000077 ], [ 6.986115763000043, 47.464132385000099 ], [ 6.975780477000114, 47.477955831000074 ], [ 6.973300008000137, 47.48909210300009 ], [ 6.991903524000094, 47.492941997000045 ], [ 7.000791870000114, 47.49767039000001 ], [ 7.009783569000149, 47.499246522000035 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-GE", "NAME_1": "Genève" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.061882772000104, 46.241157939000018 ], [ 6.067670532000079, 46.241623027000045 ], [ 6.089684692000077, 46.246377259000027 ], [ 6.094025513000133, 46.253043518000041 ], [ 6.093095337000108, 46.262293600000064 ], [ 6.093612101000133, 46.273093974000076 ], [ 6.100743448000088, 46.301412659000093 ], [ 6.104050740000076, 46.309215800000104 ], [ 6.118607036585445, 46.331771084867626 ], [ 6.128391146933893, 46.326190700740199 ], [ 6.174176466870449, 46.300016588194978 ], [ 6.216593978284893, 46.309503894312186 ], [ 6.21825565600011, 46.305495097000104 ], [ 6.227454060000099, 46.288493551000087 ], [ 6.227970825000057, 46.284462789000074 ], [ 6.237582642000064, 46.267926331000083 ], [ 6.241820109000116, 46.263688864000031 ], [ 6.252258748000145, 46.259916484000101 ], [ 6.269001912000078, 46.26523915600005 ], [ 6.276029907000094, 46.26312042299999 ], [ 6.281197550000115, 46.240072734000123 ], [ 6.255359335000094, 46.221107484000058 ], [ 6.191383911000088, 46.191703594000089 ], [ 6.140327596000134, 46.150207418000022 ], [ 6.107874796000118, 46.138631897000053 ], [ 6.073871704000084, 46.149173890000029 ], [ 6.028293090000091, 46.147933655000074 ], [ 5.982921183000144, 46.14044057200006 ], [ 5.958839966000113, 46.13046702100003 ], [ 5.972172485000044, 46.152171122000041 ], [ 5.979820597000128, 46.162248027000075 ], [ 5.982921183000144, 46.170826314000109 ], [ 5.965247843000071, 46.186225891000092 ], [ 5.954809204000128, 46.19992014600011 ], [ 5.958529907000127, 46.211960754000089 ], [ 5.982921183000144, 46.222709452000103 ], [ 6.042865844000062, 46.243069967000039 ], [ 6.044519491000102, 46.243431702000024 ], [ 6.04617313600005, 46.243535055000066 ], [ 6.048033488000044, 46.243431702000024 ], [ 6.055888305000082, 46.241674704000062 ], [ 6.061882772000104, 46.241157939000018 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-VD", "NAME_1": "Vaud" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.118607036585445, 46.331771084867626 ], [ 6.136400187000078, 46.359341940000022 ], [ 6.135056600000098, 46.370400696000033 ], [ 6.12286096200009, 46.385541891000045 ], [ 6.108184855000104, 46.396497294000127 ], [ 6.059013168023284, 46.417385842182853 ], [ 6.054234660000134, 46.419415792000038 ], [ 6.065706827000071, 46.427012228000095 ], [ 6.06756717900015, 46.433600973000111 ], [ 6.065500122000088, 46.440370586000043 ], [ 6.065500122000088, 46.447992859000109 ], [ 6.064776652000091, 46.451067607000041 ], [ 6.062399536000072, 46.455201722000069 ], [ 6.060229126000081, 46.459904277000064 ], [ 6.060229126000081, 46.46502024400003 ], [ 6.064156535000052, 46.471118063000105 ], [ 6.075525349000117, 46.479592998 ], [ 6.110355265000095, 46.52083079 ], [ 6.145701945000098, 46.551629944000084 ], [ 6.137978215924945, 46.557587778130546 ], [ 6.12151737500011, 46.570285137000056 ], [ 6.118416789000065, 46.583462626000127 ], [ 6.131852661000039, 46.595606588000024 ], [ 6.266314738000062, 46.680355937000044 ], [ 6.337938273000105, 46.707408550000096 ], [ 6.347860148000109, 46.713170472000073 ], [ 6.374215128000088, 46.733608501000035 ], [ 6.407391398000101, 46.745700786 ], [ 6.417933390000144, 46.751100973000078 ], [ 6.429198853000116, 46.76081614200011 ], [ 6.433022908000055, 46.769110210000051 ], [ 6.432609497000044, 46.785982565000054 ], [ 6.425168090000113, 46.791615296000074 ], [ 6.419897095000096, 46.796524557000012 ], [ 6.417106568000122, 46.802157288000032 ], [ 6.418553507000127, 46.807014872000067 ], [ 6.434263143000095, 46.839545187000098 ], [ 6.441187785000068, 46.848149313000036 ], [ 6.443117661750705, 46.851455121056972 ], [ 6.461549106106361, 46.853677882728107 ], [ 6.513070508896874, 46.855434881914221 ], [ 6.521752150241525, 46.856520087531976 ], [ 6.531880730611192, 46.860059923426718 ], [ 6.545678338084826, 46.867527167045125 ], [ 6.594409213814174, 46.885303859985129 ], [ 6.624639927090925, 46.892331854931115 ], [ 6.640039504119784, 46.899256497089652 ], [ 6.666549513449297, 46.914552721331006 ], [ 6.725512323235137, 46.938969834690113 ], [ 6.728767938289707, 46.926593328719093 ], [ 6.726442498322626, 46.917007350708616 ], [ 6.729077995752903, 46.91093537017116 ], [ 6.734504022042984, 46.905819404042234 ], [ 6.74272057539423, 46.901271877794898 ], [ 6.745666131186965, 46.896155910766652 ], [ 6.746441278442262, 46.89052317980088 ], [ 6.745821160817911, 46.881014716156187 ], [ 6.747681511892267, 46.874555161991111 ], [ 6.749386834234997, 46.8704985621589 ], [ 6.766026645613181, 46.845280463122833 ], [ 6.770987583010537, 46.819106350577613 ], [ 6.774553257326943, 46.81187165005656 ], [ 6.785715365571662, 46.804042670332933 ], [ 6.788195835169631, 46.802828274405329 ], [ 6.790521274237392, 46.802518216042813 ], [ 6.794862094909718, 46.802983303136898 ], [ 6.796412387621558, 46.802259832725099 ], [ 6.797962681232718, 46.800321967284958 ], [ 6.797497593239314, 46.798306586579656 ], [ 6.795637241265638, 46.796058660978417 ], [ 6.793001742936099, 46.793681545966535 ], [ 6.792071566949232, 46.791433621264559 ], [ 6.793466830929503, 46.790374254068524 ], [ 6.806024204053756, 46.786240138971209 ], [ 6.809176467220198, 46.785620022246178 ], [ 6.812897170268172, 46.785464993514609 ], [ 6.817237990041178, 46.784793199046874 ], [ 6.827779981560866, 46.781330878417293 ], [ 6.832275831864138, 46.780400702430427 ], [ 6.835531446918708, 46.780245672799538 ], [ 6.843748000270011, 46.781072495998842 ], [ 6.849484084023231, 46.783863023060064 ], [ 6.856305373394264, 46.785671699089619 ], [ 6.860801221898839, 46.785878403765309 ], [ 6.867829216844882, 46.787273667745524 ], [ 6.872170036617888, 46.785775050977804 ], [ 6.877286003646134, 46.783242906335033 ], [ 6.881781853949406, 46.781537583992304 ], [ 6.886122673722411, 46.781020820054778 ], [ 6.900230339558505, 46.780762438535703 ], [ 6.90534630658675, 46.781279202473172 ], [ 6.913097771944592, 46.782932847972518 ], [ 6.915423211012353, 46.784121406377778 ], [ 6.918523797335354, 46.786188463027145 ], [ 6.925861850643855, 46.798022365739541 ], [ 6.929892612054402, 46.802802435983608 ], [ 6.930047641685292, 46.804947007898079 ], [ 6.928342319342562, 46.806445623766479 ], [ 6.922141146696561, 46.807117418234213 ], [ 6.914648064656433, 46.804636949535563 ], [ 6.912787712682757, 46.805747993575039 ], [ 6.911237419970917, 46.80843516694938 ], [ 6.914958123018948, 46.828976549428205 ], [ 6.915888299005758, 46.832361354792681 ], [ 6.917128534254459, 46.835642809168291 ], [ 6.918988885328758, 46.838898424222862 ], [ 6.923536410676775, 46.845461331175443 ], [ 6.929582553691887, 46.85215342933725 ], [ 6.929892612054402, 46.855409044391877 ], [ 6.926792025731402, 46.858432115449716 ], [ 6.916353386999219, 46.864142360781273 ], [ 6.910462273614996, 46.866131903964174 ], [ 6.905811394580155, 46.866700343845764 ], [ 6.902245721163069, 46.866338609539184 ], [ 6.901005486813744, 46.866907050320094 ], [ 6.9028658378881, 46.869852607012206 ], [ 6.905811394580155, 46.871583766877336 ], [ 6.909222039265671, 46.87315989801084 ], [ 6.915733270274188, 46.875123602772021 ], [ 6.917748650979433, 46.874968574040452 ], [ 6.919970737259689, 46.87393504526608 ], [ 6.922451205958396, 46.872126370135845 ], [ 6.924001498670236, 46.871764634929946 ], [ 6.920900913246555, 46.875381985190415 ], [ 6.917438591717598, 46.878585924300921 ], [ 6.875115594209319, 46.907162991179064 ], [ 6.907361688191372, 46.925456448056593 ], [ 6.938264194137219, 46.895639146829126 ], [ 6.941519810091165, 46.893727118911386 ], [ 6.947410922576012, 46.889644679758135 ], [ 6.963688998748296, 46.874296780472037 ], [ 6.966479525809461, 46.872694810916755 ], [ 6.968649937044972, 46.872513942864146 ], [ 6.969890171394297, 46.873289090119385 ], [ 6.970975376112733, 46.875175278716142 ], [ 6.971285435374512, 46.876828925114751 ], [ 6.971440464106138, 46.878999335450942 ], [ 6.973145786448868, 46.880136217012762 ], [ 6.975987990353474, 46.881273098574638 ], [ 6.97955366377056, 46.881996568087118 ], [ 6.982499219563294, 46.882099920874623 ], [ 6.984514601167916, 46.881402288884487 ], [ 6.986840041134997, 46.879361069757522 ], [ 6.988855421840242, 46.876002101915446 ], [ 6.989940626558678, 46.871893826139114 ], [ 6.986995069866566, 46.867682197575334 ], [ 6.985289748423156, 46.863289700059568 ], [ 6.98513471789289, 46.858690496968848 ], [ 6.987770217121806, 46.849647122216879 ], [ 6.991490920169838, 46.845926419168904 ], [ 6.994281447231003, 46.844376126457064 ], [ 6.999087354997414, 46.845513007119564 ], [ 7.000327590246059, 46.845409654332059 ], [ 7.001412794964494, 46.844376126457064 ], [ 7.000637647709254, 46.841172187346558 ], [ 6.997382032654684, 46.836934719461681 ], [ 6.987460157859971, 46.828563137378865 ], [ 6.981414014844916, 46.825772610317699 ], [ 6.976918166340283, 46.823059596722999 ], [ 6.973300815180437, 46.819158027420997 ], [ 6.967564731427217, 46.80902944615201 ], [ 6.969270053769947, 46.795128485890871 ], [ 6.942294956447085, 46.76836009414302 ], [ 6.938419223768165, 46.765259507820019 ], [ 6.934388462357617, 46.763244127114774 ], [ 6.92136600123996, 46.760608628785178 ], [ 6.920125766890635, 46.758799954554263 ], [ 6.922761265220174, 46.755130927450296 ], [ 6.926481968268206, 46.753373928264125 ], [ 6.929892612054402, 46.752262885124026 ], [ 6.942605014809601, 46.75004079884377 ], [ 6.9436902204273, 46.749343166853635 ], [ 6.939969517379325, 46.741023260714883 ], [ 6.910772331977512, 46.713531399454496 ], [ 6.876200798927698, 46.678598131198783 ], [ 6.870619744805367, 46.668572902717244 ], [ 6.870309686442852, 46.667125962792909 ], [ 6.871549919892857, 46.665472317293563 ], [ 6.872170036617888, 46.664309597310023 ], [ 6.869844598449447, 46.662914334229129 ], [ 6.86410851379685, 46.662061673507424 ], [ 6.848553908036422, 46.661674098980484 ], [ 6.837236769261494, 46.659942939115297 ], [ 6.82111372182078, 46.652191473757512 ], [ 6.809176467220198, 46.65136465145747 ], [ 6.806799351308996, 46.640977687770032 ], [ 6.806179232785325, 46.636378486477952 ], [ 6.806024204053756, 46.624622097231963 ], [ 6.807626173609037, 46.613589179297151 ], [ 6.809176467220198, 46.607956448331379 ], [ 6.810106642307687, 46.602711290093964 ], [ 6.809486524683336, 46.600670070966999 ], [ 6.807006055984687, 46.599584866248563 ], [ 6.806179232785325, 46.598603014317632 ], [ 6.806334263315591, 46.596303411872952 ], [ 6.806799351308996, 46.593512884811787 ], [ 6.807006055984687, 46.589818020185476 ], [ 6.805869175322186, 46.585425523569029 ], [ 6.805869175322186, 46.582014878883513 ], [ 6.807006055984687, 46.580671291746683 ], [ 6.815532667698449, 46.583229274811174 ], [ 6.82018354673329, 46.584081936432199 ], [ 6.826074660117456, 46.584030260488134 ], [ 6.833981154206867, 46.580102850965773 ], [ 6.848708936767991, 46.581033026952582 ], [ 6.85987104681135, 46.583074246079548 ], [ 6.863798455434335, 46.582299098824308 ], [ 6.869069452093527, 46.580283718119063 ], [ 6.880386589969135, 46.572403063350691 ], [ 6.887207879340167, 46.56906993303096 ], [ 6.891548700012493, 46.56813975704415 ], [ 6.899300163571695, 46.569715888177655 ], [ 6.903020868418309, 46.569974269696786 ], [ 6.904726189861776, 46.56925080018425 ], [ 6.9028658378881, 46.56656362591059 ], [ 6.897594842128228, 46.561344306094838 ], [ 6.872635124611293, 46.541758938024543 ], [ 6.869844598449447, 46.538658351701542 ], [ 6.866588983394877, 46.537056383045638 ], [ 6.854289991789699, 46.542482408436399 ], [ 6.851964551822618, 46.543102525161373 ], [ 6.843748000270011, 46.543670965942283 ], [ 6.830570508622088, 46.543309230736384 ], [ 6.828090040822701, 46.542895820485683 ], [ 6.819563429108939, 46.530958564086461 ], [ 6.826539748110861, 46.517290146922733 ], [ 6.837856885986469, 46.506360581775425 ], [ 6.842197706658851, 46.504836127485248 ], [ 6.849794142385747, 46.503673408401028 ], [ 6.864418573058686, 46.505146185847764 ], [ 6.872945183873128, 46.508117580961596 ], [ 6.880231561237565, 46.511786607166187 ], [ 6.894804315067063, 46.522793688477918 ], [ 6.905501336217696, 46.522535305160204 ], [ 6.919195590903769, 46.518917954899678 ], [ 6.974696079160708, 46.49044424080904 ], [ 6.981414014844916, 46.478713690884092 ], [ 6.984824660429695, 46.4684817568276 ], [ 6.985599805886295, 46.464450995417053 ], [ 6.987460157859971, 46.459257514023022 ], [ 6.990560744182972, 46.454684150253286 ], [ 6.993971387969168, 46.450989284727711 ], [ 6.996141799204679, 46.4472944201014 ], [ 6.999397414259249, 46.44610586169614 ], [ 7.000327590246059, 46.444503893040235 ], [ 7.023581983621625, 46.452307034342141 ], [ 7.027612745931492, 46.461117865996698 ], [ 7.029473097005791, 46.463779201848638 ], [ 7.032625360172233, 46.466983140959144 ], [ 7.042392205336, 46.474682929473602 ], [ 7.05975548712604, 46.484914863530093 ], [ 7.06626671723518, 46.487653713747875 ], [ 7.073553093700298, 46.48966909445312 ], [ 7.10306033656525, 46.492097887207706 ], [ 7.111586948279012, 46.495870266199802 ], [ 7.122128939798699, 46.501968085158978 ], [ 7.137941928876899, 46.514732163858241 ], [ 7.145124952554511, 46.521760158804284 ], [ 7.155201856980113, 46.527599596244329 ], [ 7.212614373154793, 46.539640204531793 ], [ 7.242535028069085, 46.556073310334966 ], [ 7.246875847842091, 46.547469184255419 ], [ 7.249201286909852, 46.544652817873214 ], [ 7.252146843601963, 46.541655585237038 ], [ 7.253852165944693, 46.538606675757478 ], [ 7.254317253938098, 46.534317531928536 ], [ 7.253697137213123, 46.527289536982494 ], [ 7.253852165944693, 46.520829982817418 ], [ 7.252611931595368, 46.512665107208932 ], [ 7.249511346171687, 46.504655260331958 ], [ 7.24206994007568, 46.494707547115581 ], [ 7.236798944315808, 46.489927476871515 ], [ 7.234008416355323, 46.48602590577093 ], [ 7.233388298730972, 46.482331041144619 ], [ 7.235713738698053, 46.468791816089436 ], [ 7.235093621073759, 46.462642320286818 ], [ 7.231527947656673, 46.455821030915843 ], [ 7.22238121921788, 46.447397772888905 ], [ 7.206103143045596, 46.440628160361314 ], [ 7.203157586353541, 46.437217516575117 ], [ 7.206258171777165, 46.42856171275281 ], [ 7.209513786831792, 46.422489732215354 ], [ 7.211529168436357, 46.414479885338437 ], [ 7.211684198067246, 46.409208889578565 ], [ 7.200367059292319, 46.38466258411097 ], [ 7.210133905355463, 46.379262397141872 ], [ 7.224551628654751, 46.369107978350485 ], [ 7.230597771669807, 46.36693756801435 ], [ 7.233233269999403, 46.364147040053808 ], [ 7.233543328361918, 46.360736396267669 ], [ 7.228737419696131, 46.355155341245961 ], [ 7.226722038990886, 46.351641343772997 ], [ 7.227807244608641, 46.33143585897767 ], [ 7.215714958578474, 46.321927395332978 ], [ 7.198455031374579, 46.308853258271256 ], [ 7.197989943381174, 46.305700995104814 ], [ 7.199746941668025, 46.292471829311467 ], [ 7.195974561776609, 46.284927070427955 ], [ 7.184192335907539, 46.270638536539195 ], [ 7.170239698803073, 46.257021796218908 ], [ 7.151171094670246, 46.24358592395123 ], [ 7.139647251219628, 46.240123603321592 ], [ 7.116082797682964, 46.219814764839498 ], [ 7.083164911031815, 46.2048544382817 ], [ 7.04487267403465, 46.189868272402805 ], [ 7.033452183371537, 46.200151883302738 ], [ 7.026062453219652, 46.209970405309946 ], [ 7.003686558088191, 46.230873522095351 ], [ 6.940124546110894, 46.307613023022554 ], [ 6.935473667076053, 46.316708076416546 ], [ 6.931029493616222, 46.334329738826341 ], [ 6.920332471566326, 46.340220852210564 ], [ 6.906896600197911, 46.342184556971688 ], [ 6.894494255805228, 46.348075670355854 ], [ 6.890773552757253, 46.355517076451918 ], [ 6.891858758375008, 46.362958482547924 ], [ 6.894339227073658, 46.369624742288011 ], [ 6.894494255805228, 46.374766546838657 ], [ 6.888138055326976, 46.383318996974083 ], [ 6.873306919079027, 46.395462958049052 ], [ 6.866588983394877, 46.402697659469368 ], [ 6.854600050152158, 46.397736721172691 ], [ 6.807006055984687, 46.404247952181208 ], [ 6.78810673300012, 46.405007978000057 ], [ 6.787058146000049, 46.414170635000019 ], [ 6.77771555400011, 46.424106493000025 ], [ 6.762666870000118, 46.429260152000026 ], [ 6.613683716000139, 46.455899354000067 ], [ 6.547021118000117, 46.45737213200006 ], [ 6.482942342000115, 46.448587138000065 ], [ 6.397676229000069, 46.408176168000082 ], [ 6.365223430000128, 46.402440084000048 ], [ 6.332357218000112, 46.401380717000038 ], [ 6.301558065000052, 46.394481914000082 ], [ 6.269105265000121, 46.375025737000087 ], [ 6.240579874000076, 46.348954977000105 ], [ 6.219495890000132, 46.329111227000013 ], [ 6.214121541000083, 46.315468649000096 ], [ 6.216593978284893, 46.309503894312186 ], [ 6.174176466870449, 46.300016588194978 ], [ 6.128391146933893, 46.326190700740199 ], [ 6.118607036585445, 46.331771084867626 ] ], [ [ 6.772744581297388, 46.718854072057752 ], [ 6.77935916509341, 46.722988186255748 ], [ 6.784320101591391, 46.726295478153759 ], [ 6.791761508586717, 46.732910061050461 ], [ 6.793415154985382, 46.740351467146468 ], [ 6.792588331786078, 46.747792874141794 ], [ 6.786800571189417, 46.75192698833979 ], [ 6.780185988292715, 46.75192698833979 ], [ 6.771917758997347, 46.746139227743129 ], [ 6.765303175201382, 46.740351467146468 ], [ 6.758688592304679, 46.740351467146468 ], [ 6.756208123606029, 46.735390529749111 ], [ 6.760342237804025, 46.730429592351754 ], [ 6.765303175201382, 46.7271223004538 ], [ 6.767783643900032, 46.720507718456417 ], [ 6.772744581297388, 46.718854072057752 ] ], [ [ 6.862868279447525, 46.7271223004538 ], [ 6.870309686442852, 46.72960276915245 ], [ 6.877751093438178, 46.734563707449126 ], [ 6.885192498634865, 46.744485582243783 ], [ 6.888499789633556, 46.75192698833979 ], [ 6.883538852236256, 46.759368394435853 ], [ 6.875270623840208, 46.762675686333807 ], [ 6.868656040044186, 46.764329331833153 ], [ 6.865348748146175, 46.76929026923051 ], [ 6.859560988448834, 46.773424384327825 ], [ 6.854600050152158, 46.770943916528495 ], [ 6.850465935954162, 46.766809801431179 ], [ 6.84385135215814, 46.760195218534477 ], [ 6.838063591561479, 46.756887925737146 ], [ 6.828968539966127, 46.748619696441835 ], [ 6.824834425768131, 46.742005114444453 ], [ 6.814085727774113, 46.738697822546442 ], [ 6.806644321678107, 46.736217352948472 ], [ 6.800856561081389, 46.732910061050461 ], [ 6.797549269183435, 46.730429592351754 ], [ 6.800029737882085, 46.726295478153759 ], [ 6.806644321678107, 46.726295478153759 ], [ 6.814912550074098, 46.7271223004538 ], [ 6.826488071267477, 46.734563707449126 ], [ 6.833929477363483, 46.736217352948472 ], [ 6.845504998556805, 46.73208323875042 ], [ 6.853773227852173, 46.72960276915245 ], [ 6.862868279447525, 46.7271223004538 ] ] ], [ [ [ 7.021101514922975, 46.989664415180584 ], [ 7.062390984556259, 46.978218085196431 ], [ 7.069367302658861, 46.944576728133484 ], [ 7.073243036237102, 46.937290350769047 ], [ 7.094068637757402, 46.90767975511659 ], [ 7.096704136086998, 46.90615529992715 ], [ 7.100114779873195, 46.904734199323798 ], [ 7.106315951619877, 46.902873847350122 ], [ 7.106936069244171, 46.900858465745557 ], [ 7.104920689438245, 46.898119615527833 ], [ 7.097479282442919, 46.892331854931115 ], [ 7.095153843375158, 46.891608385418635 ], [ 7.093138461770593, 46.89243520771862 ], [ 7.090347934709428, 46.894760646786381 ], [ 7.087712437279151, 46.895432441254115 ], [ 7.08440514538114, 46.894967353260711 ], [ 7.080684442333109, 46.891711738206141 ], [ 7.077428827278538, 46.887164211958805 ], [ 7.074948357680569, 46.877991645098291 ], [ 7.072932976975267, 46.872953193335206 ], [ 7.070297478645728, 46.86876740229377 ], [ 7.067506951584562, 46.865770168758274 ], [ 7.0589803398708, 46.858664659446447 ], [ 7.04146203024851, 46.85238597333398 ], [ 7.040376824630755, 46.854788926767526 ], [ 7.03913659028143, 46.862075304131963 ], [ 7.02482221797095, 46.876312161177282 ], [ 7.013505080095342, 46.880497952218718 ], [ 7.008544141798666, 46.88726756384699 ], [ 6.945860629864171, 46.947186388041359 ], [ 7.021101514922975, 46.989664415180584 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-NE", "NAME_1": "Neuchâtel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.443117661750705, 46.851455121056972 ], [ 6.4467688390001, 46.857709453000027 ], [ 6.44842248600014, 46.871558737 ], [ 6.445218546000063, 46.882617493000012 ], [ 6.431886027000132, 46.90003245100003 ], [ 6.427751913000122, 46.909075827 ], [ 6.442634725000062, 46.944164124000039 ], [ 6.491107218000138, 46.963387757000064 ], [ 6.598697550000082, 46.986538798000041 ], [ 6.665411824000103, 47.021291199000089 ], [ 6.688252807000111, 47.043847961000026 ], [ 6.676263875000132, 47.062399801000041 ], [ 6.689699747000105, 47.078290304000078 ], [ 6.699104858000055, 47.084620667000095 ], [ 6.724219604000069, 47.090770162000055 ], [ 6.727940307000097, 47.097126363000072 ], [ 6.731661011000085, 47.09888336300007 ], [ 6.746027059000113, 47.103947653000048 ], [ 6.744786824000073, 47.121052551000091 ], [ 6.774759155000112, 47.128183899000121 ], [ 6.838076255814542, 47.16813159719544 ], [ 6.849794142385747, 47.165080064393408 ], [ 6.870464715174478, 47.157431951823071 ], [ 6.881781853949406, 47.147096665878394 ], [ 6.887827996065141, 47.138259995802116 ], [ 6.890153436032222, 47.133014838464021 ], [ 6.891238640750657, 47.128906561788369 ], [ 6.890153436032222, 47.122343654835788 ], [ 6.886122673722411, 47.109631252979909 ], [ 6.885192497735545, 47.10813263621219 ], [ 6.884107293017166, 47.106737372231919 ], [ 6.880231561237565, 47.104101873902323 ], [ 6.87914635561981, 47.103145860393113 ], [ 6.876820915652729, 47.095988675137221 ], [ 6.877286003646134, 47.089735826547155 ], [ 6.87976647324416, 47.089787503390539 ], [ 7.032160272178828, 47.122136949260778 ], [ 7.03913659028143, 47.123351345188382 ], [ 7.039756707006404, 47.109631252979909 ], [ 7.053554315379358, 47.107150784281259 ], [ 7.082544793407465, 47.095988675137221 ], [ 7.090347934709428, 47.091389472046501 ], [ 7.094223667388349, 47.087048652273438 ], [ 7.094068637757402, 47.085343329031389 ], [ 7.092673373777188, 47.084258124312953 ], [ 7.090192905078482, 47.083121242751133 ], [ 7.088642612366641, 47.082346096395213 ], [ 7.087557406748886, 47.081183377310992 ], [ 7.087867466010721, 47.079607245278112 ], [ 7.088642612366641, 47.077901922935382 ], [ 7.089572788353507, 47.07629995427942 ], [ 7.090502964340317, 47.073690294371545 ], [ 7.092208285783727, 47.065861313748599 ], [ 7.092363315414673, 47.063277493161763 ], [ 7.092363315414673, 47.060486966100598 ], [ 7.091898228320588, 47.058729966914427 ], [ 7.091123081065348, 47.056559557477556 ], [ 7.089572788353507, 47.054647529559816 ], [ 7.086575554818012, 47.053484809576275 ], [ 7.083009881400869, 47.052477119223624 ], [ 7.080219354339704, 47.05123688397498 ], [ 7.073708123331187, 47.047283636930274 ], [ 7.069832390652266, 47.045500800221703 ], [ 7.047508172364246, 47.039041246056627 ], [ 7.043787469316271, 47.035888983789562 ], [ 7.040686882993271, 47.031341458441545 ], [ 7.035260857602509, 47.014753323007426 ], [ 7.030558301724227, 47.00772532806144 ], [ 7.021101514922975, 46.989664415180584 ], [ 6.945860629864171, 46.947186388041359 ], [ 6.907361688191372, 46.925456448056593 ], [ 6.875115594209319, 46.907162991179064 ], [ 6.766026645613181, 46.845280463122833 ], [ 6.749386834234997, 46.8704985621589 ], [ 6.747681511892267, 46.874555161991111 ], [ 6.745821160817911, 46.881014716156187 ], [ 6.746441278442262, 46.89052317980088 ], [ 6.745666131186965, 46.896155910766652 ], [ 6.74272057539423, 46.901271877794898 ], [ 6.734504022042984, 46.905819404042234 ], [ 6.729077995752903, 46.91093537017116 ], [ 6.726442498322626, 46.917007350708616 ], [ 6.728767938289707, 46.926593328719093 ], [ 6.725512323235137, 46.938969834690113 ], [ 6.666549513449297, 46.914552721331006 ], [ 6.640039504119784, 46.899256497089652 ], [ 6.624639927090925, 46.892331854931115 ], [ 6.594409213814174, 46.885303859985129 ], [ 6.545678338084826, 46.867527167045125 ], [ 6.531880730611192, 46.860059923426718 ], [ 6.521752150241525, 46.856520087531976 ], [ 6.513070508896874, 46.855434881914221 ], [ 6.461549106106361, 46.853677882728107 ], [ 6.443117661750705, 46.851455121056972 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-BE", "NAME_1": "Bern" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.554453972772592, 47.344035550400292 ], [ 7.562050409398864, 47.342614447998358 ], [ 7.564685906829141, 47.340573228871392 ], [ 7.567476433890306, 47.337756863388506 ], [ 7.569181756233036, 47.333700263556295 ], [ 7.569956902588956, 47.329256090096465 ], [ 7.56887169787052, 47.323985094336592 ], [ 7.567476433890306, 47.321117052010322 ], [ 7.558949823075864, 47.320651964016918 ], [ 7.540191278204929, 47.322279771993863 ], [ 7.536625603888524, 47.323881741549087 ], [ 7.535798780689163, 47.32705984133861 ], [ 7.538175896600308, 47.333700263556295 ], [ 7.554453972772592, 47.344035550400292 ] ] ], [ [ [ 8.446234164774864, 46.769212754864725 ], [ 8.437707553960422, 46.755389308969427 ], [ 8.436622349241986, 46.750635077147081 ], [ 8.437552524329533, 46.741359158398438 ], [ 8.440653109753214, 46.735338853805047 ], [ 8.446234164774864, 46.72732900692813 ], [ 8.447939487117651, 46.723349921461704 ], [ 8.448249546379429, 46.717820543283437 ], [ 8.449954867822896, 46.71378978097357 ], [ 8.450730015078136, 46.709655666775575 ], [ 8.45057498544719, 46.705366522946633 ], [ 8.449489779829435, 46.699346218353242 ], [ 8.44809451674854, 46.694772854583562 ], [ 8.444683872063024, 46.69105215153553 ], [ 8.437397494698587, 46.689811917186205 ], [ 8.429439324665111, 46.69012197554872 ], [ 8.412851190130311, 46.693093369763176 ], [ 8.40649498875274, 46.692499091459865 ], [ 8.401689080086953, 46.688675034725065 ], [ 8.401999139348789, 46.676789456068491 ], [ 8.406339959121794, 46.668572902717244 ], [ 8.409440545444795, 46.655653795286412 ], [ 8.398588494663272, 46.654516912825216 ], [ 8.379519891429823, 46.638083807921362 ], [ 8.373577101202272, 46.629712225838546 ], [ 8.369546339791725, 46.621754054905693 ], [ 8.36350019677667, 46.60609609635776 ], [ 8.358384229748367, 46.584185289219704 ], [ 8.354198438706987, 46.578500882309868 ], [ 8.349082471678685, 46.57348826806907 ], [ 8.338695508890623, 46.566253567548074 ], [ 8.323037550342633, 46.559303086967873 ], [ 8.312443881979561, 46.553024399956087 ], [ 8.266400181423194, 46.535196031071962 ], [ 8.24247399268063, 46.529304917687796 ], [ 8.190332472265766, 46.521915188435173 ], [ 8.1844413588816, 46.521760158804284 ], [ 8.179325391853354, 46.522845364421983 ], [ 8.176069776798727, 46.524550685865449 ], [ 8.175139600811917, 46.527754624975955 ], [ 8.175139600811917, 46.53033844736143 ], [ 8.174829543348721, 46.532198798435786 ], [ 8.173434279368507, 46.53281891516076 ], [ 8.146717563564721, 46.534782619921941 ], [ 8.122688022933914, 46.542068997286378 ], [ 8.114161411220152, 46.547159124993584 ], [ 8.028791944892305, 46.558398749402727 ], [ 8.003057081918769, 46.557442734994197 ], [ 7.970449252730816, 46.543515937210714 ], [ 7.9670386080453, 46.541448880561347 ], [ 7.965178256970944, 46.539950262894308 ], [ 7.965023228239374, 46.538580838235077 ], [ 7.966573520951215, 46.536384589477223 ], [ 7.969209019280811, 46.533464871206832 ], [ 7.971379428717626, 46.530183416831221 ], [ 7.972774691798577, 46.526824448989089 ], [ 7.972929722328786, 46.523620509878583 ], [ 7.969209019280811, 46.518607897436482 ], [ 7.96610843295781, 46.515714015789172 ], [ 7.938513218010598, 46.503518377870819 ], [ 7.901874627412099, 46.485586656199189 ], [ 7.880790642574084, 46.479953925233417 ], [ 7.871747266922796, 46.478868720515038 ], [ 7.856554396368267, 46.478842882093318 ], [ 7.844927199230824, 46.481297512370247 ], [ 7.723125847879544, 46.420164293147593 ], [ 7.711343621111212, 46.419440822735737 ], [ 7.64519778764776, 46.441403306717234 ], [ 7.624423862071581, 46.443367011478358 ], [ 7.619617954305113, 46.441610012292188 ], [ 7.616517367982112, 46.439697984374448 ], [ 7.614967075270272, 46.436752428581713 ], [ 7.613726840920947, 46.433031725533681 ], [ 7.611556430584812, 46.430912991141611 ], [ 7.600859409434179, 46.425021877757445 ], [ 7.597758823111178, 46.422644761846243 ], [ 7.563910759573901, 46.415539252534472 ], [ 7.54096642366153, 46.405643216161479 ], [ 7.546857537045696, 46.400268866714782 ], [ 7.559879998163353, 46.395204576529977 ], [ 7.545307245233175, 46.38621287682281 ], [ 7.509598829722222, 46.375670885303066 ], [ 7.500917189276834, 46.374146430113626 ], [ 7.494716016630832, 46.373991401382057 ], [ 7.488824904145986, 46.375050768578092 ], [ 7.48618940581639, 46.376084296453087 ], [ 7.462263217973145, 46.381045233850443 ], [ 7.418648309272044, 46.380735175487928 ], [ 7.404230584174115, 46.378564765151793 ], [ 7.401905145106355, 46.377634589164927 ], [ 7.399734734770163, 46.376239326084033 ], [ 7.390122918338022, 46.368177802363675 ], [ 7.3672819352131, 46.357222397895328 ], [ 7.329609815840342, 46.348540758349316 ], [ 7.323718703355439, 46.350607814998625 ], [ 7.317672560340384, 46.351899726191391 ], [ 7.316587354722628, 46.354225165259152 ], [ 7.316742384353518, 46.357377428425536 ], [ 7.317672560340384, 46.362338364923573 ], [ 7.317052442716033, 46.369366359869559 ], [ 7.314261915654868, 46.371588447049191 ], [ 7.30831912632658, 46.371588447049191 ], [ 7.275918002713638, 46.363992011322239 ], [ 7.272507358028122, 46.362622585763688 ], [ 7.271112094947227, 46.361149807417632 ], [ 7.270647006953823, 46.358307604412403 ], [ 7.270336947691987, 46.354741930095997 ], [ 7.262585483233465, 46.345672716022989 ], [ 7.227807244608641, 46.33143585897767 ], [ 7.226722038990886, 46.351641343772997 ], [ 7.228737419696131, 46.355155341245961 ], [ 7.233543328361918, 46.360736396267669 ], [ 7.233233269999403, 46.364147040053808 ], [ 7.230597771669807, 46.36693756801435 ], [ 7.224551628654751, 46.369107978350485 ], [ 7.210133905355463, 46.379262397141872 ], [ 7.200367059292319, 46.38466258411097 ], [ 7.211684198067246, 46.409208889578565 ], [ 7.211529168436357, 46.414479885338437 ], [ 7.209513786831792, 46.422489732215354 ], [ 7.206258171777165, 46.42856171275281 ], [ 7.203157586353541, 46.437217516575117 ], [ 7.206103143045596, 46.440628160361314 ], [ 7.22238121921788, 46.447397772888905 ], [ 7.231527947656673, 46.455821030915843 ], [ 7.235093621073759, 46.462642320286818 ], [ 7.235713738698053, 46.468791816089436 ], [ 7.233388298730972, 46.482331041144619 ], [ 7.234008416355323, 46.48602590577093 ], [ 7.236798944315808, 46.489927476871515 ], [ 7.24206994007568, 46.494707547115581 ], [ 7.249511346171687, 46.504655260331958 ], [ 7.252611931595368, 46.512665107208932 ], [ 7.253852165944693, 46.520829982817418 ], [ 7.253697137213123, 46.527289536982494 ], [ 7.254317253938098, 46.534317531928536 ], [ 7.253852165944693, 46.538606675757478 ], [ 7.252146843601963, 46.541655585237038 ], [ 7.249201286909852, 46.544652817873214 ], [ 7.246875847842091, 46.547469184255419 ], [ 7.242535028069085, 46.556073310334966 ], [ 7.283049351346449, 46.580774645433507 ], [ 7.300567660968738, 46.581808173308502 ], [ 7.310334507031882, 46.582144070092738 ], [ 7.314571974017383, 46.583358466020343 ], [ 7.319067824320598, 46.587647609849284 ], [ 7.321393263388359, 46.596277574350552 ], [ 7.323408644093661, 46.61028188739914 ], [ 7.319687941045629, 46.639608263110802 ], [ 7.330695020558721, 46.64831574197791 ], [ 7.335035842130424, 46.65058950510155 ], [ 7.349453566329032, 46.648444933187079 ], [ 7.358135206774364, 46.646093654798278 ], [ 7.36557661287037, 46.645680244547634 ], [ 7.374464958890712, 46.65213979781339 ], [ 7.378030633207118, 46.655602119342291 ], [ 7.376170282132819, 46.659322822390322 ], [ 7.38004601391242, 46.684075833432928 ], [ 7.382681512241959, 46.690793769117136 ], [ 7.381131218630799, 46.692550768303306 ], [ 7.376790398857793, 46.694721177740121 ], [ 7.372914666178872, 46.695935574567102 ], [ 7.370279167849333, 46.697330838547316 ], [ 7.368108758412461, 46.699475410461787 ], [ 7.365266553608535, 46.701232407849318 ], [ 7.362010938553965, 46.701697495842723 ], [ 7.357825148411848, 46.701361599058544 ], [ 7.354104445363873, 46.702265937522952 ], [ 7.351003859040873, 46.704177965440749 ], [ 7.346818067999436, 46.709293932468995 ], [ 7.338136426654728, 46.714048163392022 ], [ 7.333330518888317, 46.716063544097267 ], [ 7.315967237997597, 46.720714423132108 ], [ 7.312711622943027, 46.722729803837353 ], [ 7.310489535763452, 46.725933742947859 ], [ 7.306613803983851, 46.733530177775435 ], [ 7.304443393647659, 46.748180446870094 ], [ 7.30506351127201, 46.774354560314691 ], [ 7.307388950339771, 46.790167548493571 ], [ 7.319067824320598, 46.823292140719673 ], [ 7.31953291231406, 46.837968248236052 ], [ 7.316897413984464, 46.848251858236665 ], [ 7.313796827661463, 46.852851061327385 ], [ 7.314882033279218, 46.855899969907682 ], [ 7.322168409744279, 46.860085760949062 ], [ 7.328059523128502, 46.859362291436582 ], [ 7.329919875102121, 46.858509629815558 ], [ 7.329454787108716, 46.855899969907682 ], [ 7.331005079820557, 46.854556382770795 ], [ 7.334415723606753, 46.85310944284646 ], [ 7.340461866621808, 46.853057766003076 ], [ 7.346197951274405, 46.855228176339267 ], [ 7.355654738075714, 46.860602524886588 ], [ 7.360460645842124, 46.86876740229377 ], [ 7.355654738075714, 46.891246650212736 ], [ 7.275762973982069, 46.896155910766652 ], [ 7.224396599923125, 46.906284492035638 ], [ 7.214009637135007, 46.904940903999488 ], [ 7.209358758100166, 46.904889228055424 ], [ 7.205948114314026, 46.90615529992715 ], [ 7.205327995790356, 46.908713283890904 ], [ 7.212304314792277, 46.918841865159948 ], [ 7.214939813121873, 46.924629624857289 ], [ 7.216025017840309, 46.929590563153965 ], [ 7.213544549141602, 46.940184231517037 ], [ 7.212924432416628, 46.946592108838729 ], [ 7.211839226798872, 46.950958767033455 ], [ 7.209513786831792, 46.954808661290656 ], [ 7.203932732709461, 46.961345729821574 ], [ 7.203622674346946, 46.964058743416274 ], [ 7.205638055052191, 46.965660712072179 ], [ 7.218505487438279, 46.970079047110289 ], [ 7.22393151192972, 46.973102119067505 ], [ 7.234318474717838, 46.981912949822743 ], [ 7.236488885053973, 46.985607815348374 ], [ 7.229977654944832, 46.99206736951345 ], [ 7.228892450226397, 46.997958481998296 ], [ 7.228737419696131, 46.998785305197657 ], [ 7.22796227423953, 47.000077216390423 ], [ 7.225171746279045, 47.002454332301568 ], [ 7.215869989108683, 47.004185493066018 ], [ 7.192563917990412, 46.997390042116706 ], [ 7.142747836643309, 46.983695787430634 ], [ 7.062390984556259, 46.978218085196431 ], [ 7.021101514922975, 46.989664415180584 ], [ 7.030558301724227, 47.00772532806144 ], [ 7.035260857602509, 47.014753323007426 ], [ 7.040686882993271, 47.031341458441545 ], [ 7.043787469316271, 47.035888983789562 ], [ 7.047508172364246, 47.039041246056627 ], [ 7.069832390652266, 47.045500800221703 ], [ 7.073708123331187, 47.047283636930274 ], [ 7.080219354339704, 47.05123688397498 ], [ 7.083009881400869, 47.052477119223624 ], [ 7.086575554818012, 47.053484809576275 ], [ 7.089572788353507, 47.054647529559816 ], [ 7.091123081065348, 47.056559557477556 ], [ 7.091898228320588, 47.058729966914427 ], [ 7.092363315414673, 47.060486966100598 ], [ 7.092363315414673, 47.063277493161763 ], [ 7.092208285783727, 47.065861313748599 ], [ 7.090502964340317, 47.073690294371545 ], [ 7.089572788353507, 47.07629995427942 ], [ 7.088642612366641, 47.077901922935382 ], [ 7.087867466010721, 47.079607245278112 ], [ 7.087557406748886, 47.081183377310992 ], [ 7.088642612366641, 47.082346096395213 ], [ 7.090192905078482, 47.083121242751133 ], [ 7.092673373777188, 47.084258124312953 ], [ 7.094068637757402, 47.085343329031389 ], [ 7.094223667388349, 47.087048652273438 ], [ 7.090347934709428, 47.091389472046501 ], [ 7.082544793407465, 47.095988675137221 ], [ 7.053554315379358, 47.107150784281259 ], [ 7.039756707006404, 47.109631252979909 ], [ 7.03913659028143, 47.123351345188382 ], [ 7.032160272178828, 47.122136949260778 ], [ 6.87976647324416, 47.089787503390539 ], [ 6.877286003646134, 47.089735826547155 ], [ 6.876820915652729, 47.095988675137221 ], [ 6.87914635561981, 47.103145860393113 ], [ 6.880231561237565, 47.104101873902323 ], [ 6.884107293017166, 47.106737372231919 ], [ 6.885192497735545, 47.10813263621219 ], [ 6.886122673722411, 47.109631252979909 ], [ 6.890153436032222, 47.122343654835788 ], [ 6.891238640750657, 47.128906561788369 ], [ 6.890153436032222, 47.133014838464021 ], [ 6.887827996065141, 47.138259995802116 ], [ 6.881781853949406, 47.147096665878394 ], [ 6.870464715174478, 47.157431951823071 ], [ 6.849794142385747, 47.165080064393408 ], [ 6.877286003646134, 47.163658962890793 ], [ 6.886432732984247, 47.158517158340146 ], [ 6.889843376770386, 47.155829983167166 ], [ 6.894029167811823, 47.154305527977726 ], [ 6.901780633169665, 47.155700791957941 ], [ 6.912942743213023, 47.160222479783613 ], [ 6.948806186556226, 47.179136054285436 ], [ 6.960433383693669, 47.183528550901883 ], [ 6.983119338086965, 47.182934271699253 ], [ 6.993506299975763, 47.184355374101187 ], [ 7.004358350757286, 47.191822617719595 ], [ 7.013660108826969, 47.196447659232035 ], [ 7.029628126636737, 47.202132066141928 ], [ 7.040221794999809, 47.209366767562244 ], [ 7.047353142733357, 47.216033027302331 ], [ 7.052159051399087, 47.222544257411528 ], [ 7.059445427864205, 47.22993398756347 ], [ 7.060995720576045, 47.232311103474615 ], [ 7.061925896562855, 47.23396474897396 ], [ 7.063786247637211, 47.239597479939732 ], [ 7.067817009947021, 47.242336331056833 ], [ 7.074328240955538, 47.243163154256138 ], [ 7.105540806163276, 47.241199449494957 ], [ 7.154736768986709, 47.247503974029144 ], [ 7.159852736014955, 47.250966295558044 ], [ 7.157837355309709, 47.255100409756096 ], [ 7.155977004235353, 47.262231757489587 ], [ 7.155821973705088, 47.265435695700774 ], [ 7.156287061698549, 47.267709458824413 ], [ 7.158147413672168, 47.27075836920335 ], [ 7.168224318097771, 47.275822659388211 ], [ 7.172255080407638, 47.278768216080266 ], [ 7.174115430582617, 47.282514757550018 ], [ 7.172410109139207, 47.286881414845368 ], [ 7.174890577837857, 47.297113348901917 ], [ 7.259174839447269, 47.285486151764474 ], [ 7.278243441781399, 47.286261298120394 ], [ 7.293591342866193, 47.288457546878249 ], [ 7.319222853052224, 47.294736232990715 ], [ 7.330695020558721, 47.299645494444007 ], [ 7.338446485916563, 47.303882962328828 ], [ 7.342632276958, 47.306776842177499 ], [ 7.347283155992841, 47.309050605301195 ], [ 7.355344678813879, 47.31142772121234 ], [ 7.360925733835529, 47.315096747416931 ], [ 7.364646436883561, 47.318610744889952 ], [ 7.366661817588806, 47.322951565562278 ], [ 7.369038934399271, 47.324708563849128 ], [ 7.371829460561116, 47.323985094336592 ], [ 7.375395134877579, 47.319075832883357 ], [ 7.377410515582824, 47.315406805779446 ], [ 7.387177361645911, 47.312616278718281 ], [ 7.496576368604508, 47.306621813445929 ], [ 7.556314324746268, 47.318171495318211 ], [ 7.548717889019372, 47.302797756711072 ], [ 7.542826775635149, 47.297991848045342 ], [ 7.533473341621402, 47.293573513007175 ], [ 7.500762159645944, 47.286442166173003 ], [ 7.493785842442662, 47.283522447003293 ], [ 7.48525922982958, 47.278871567968451 ], [ 7.473890415110532, 47.270344957154009 ], [ 7.464588657040849, 47.264918931763248 ], [ 7.442264438752829, 47.258769435960687 ], [ 7.421128777970694, 47.246522122098213 ], [ 7.42376427630029, 47.239494127152227 ], [ 7.348833448704681, 47.216575628762257 ], [ 7.346197951274405, 47.21179555941751 ], [ 7.351313918302651, 47.203630682909647 ], [ 7.354879591719794, 47.200013333548497 ], [ 7.357670118780959, 47.19422557205246 ], [ 7.36077070510396, 47.191512560256399 ], [ 7.36557661287037, 47.189574693017619 ], [ 7.376635370126223, 47.186784165956453 ], [ 7.381441277892634, 47.184355374101187 ], [ 7.383921745692021, 47.181254787778187 ], [ 7.390743035962316, 47.169730943428249 ], [ 7.391363152687347, 47.166682033948689 ], [ 7.390743035962316, 47.164511624511817 ], [ 7.390277947968912, 47.162392890119747 ], [ 7.392603387036672, 47.161256008557928 ], [ 7.398804558783354, 47.160248318205277 ], [ 7.409191521571472, 47.161514390976322 ], [ 7.417253045291773, 47.164511624511817 ], [ 7.425056186593736, 47.171229560196025 ], [ 7.434047886300903, 47.176810615217676 ], [ 7.439473910792344, 47.181099758147298 ], [ 7.447690464143591, 47.182546698970953 ], [ 7.455131870239597, 47.186887518743958 ], [ 7.46040286599947, 47.188799547561018 ], [ 7.475905795815834, 47.190918281053825 ], [ 7.478231234883594, 47.178102525511122 ], [ 7.479626498863809, 47.173348293688775 ], [ 7.48293379076182, 47.170712796258499 ], [ 7.487584669796661, 47.168077297928903 ], [ 7.490995313582857, 47.164563300455939 ], [ 7.487584669796661, 47.159292303796747 ], [ 7.476680942171754, 47.154124660824436 ], [ 7.469704624069152, 47.153039456106001 ], [ 7.46365848105404, 47.154124660824436 ], [ 7.458852573287629, 47.156036688742176 ], [ 7.455441928602113, 47.156036688742176 ], [ 7.444434849089021, 47.149809679473094 ], [ 7.438233677342339, 47.143427638774483 ], [ 7.436373325368663, 47.138621731008072 ], [ 7.438388706073908, 47.129061591419259 ], [ 7.437613559717988, 47.124281521175249 ], [ 7.430017123991092, 47.121206773273968 ], [ 7.412292107894473, 47.117951158219341 ], [ 7.407641228859632, 47.117615261435162 ], [ 7.397409294803083, 47.119449774987118 ], [ 7.391053094324832, 47.119294745356171 ], [ 7.379735954650585, 47.120690009336442 ], [ 7.376480339595958, 47.119940701402243 ], [ 7.374930046884117, 47.115574042308197 ], [ 7.376015251602553, 47.112421780041075 ], [ 7.378805779563038, 47.108546048261474 ], [ 7.382216424248554, 47.104851182735842 ], [ 7.388262567263666, 47.096247057555615 ], [ 7.393998651016943, 47.092939764758285 ], [ 7.397564325333349, 47.0917512072524 ], [ 7.426141392211491, 47.097358099796452 ], [ 7.434512974294307, 47.098443305414207 ], [ 7.436838413362068, 47.097978217420746 ], [ 7.437613559717988, 47.088909003347794 ], [ 7.44629520016332, 47.075447293557716 ], [ 7.464743686671795, 47.079710598065617 ], [ 7.471099888049366, 47.082397773238597 ], [ 7.474665562365772, 47.085756741080729 ], [ 7.475440707822372, 47.091492824833949 ], [ 7.473890415110532, 47.096247057555615 ], [ 7.468774448082286, 47.105135403576014 ], [ 7.468619419350716, 47.109424547404899 ], [ 7.472030064036232, 47.112292588831906 ], [ 7.498746778940699, 47.120741686179827 ], [ 7.513164504038627, 47.129578355356784 ], [ 7.539416130949689, 47.155726630379661 ], [ 7.553368768054213, 47.164976712505279 ], [ 7.564530877198195, 47.166165270011163 ], [ 7.591350945789486, 47.153504544099405 ], [ 7.637446323189238, 47.152522691269155 ], [ 7.64349246620435, 47.15319448483757 ], [ 7.653931104936532, 47.160480862202007 ], [ 7.660132276683214, 47.166914577945363 ], [ 7.669434034752896, 47.170299384209216 ], [ 7.672689649807467, 47.172418117701966 ], [ 7.675325148137063, 47.175673732756536 ], [ 7.676875440848903, 47.178774319079537 ], [ 7.675170119405493, 47.184510402832814 ], [ 7.67005415237719, 47.192623603396555 ], [ 7.655791456910208, 47.210167752339885 ], [ 7.639771763156318, 47.226264960459559 ], [ 7.621478306278789, 47.231949368268715 ], [ 7.602874790139424, 47.247245592510069 ], [ 7.602099643783504, 47.25494538012515 ], [ 7.598999058359823, 47.262128403802762 ], [ 7.597758823111178, 47.265874946171778 ], [ 7.583444451700075, 47.277553819253342 ], [ 7.650210401888501, 47.283212389540097 ], [ 7.686332227650155, 47.294219469053246 ], [ 7.720180291187489, 47.266572577262593 ], [ 7.731807489224252, 47.261534125499452 ], [ 7.759402703272144, 47.260578111090922 ], [ 7.778833041711493, 47.265539049387598 ], [ 7.788289829412065, 47.263213609420518 ], [ 7.82291303930532, 47.268975532494778 ], [ 7.82539350800397, 47.249467677891005 ], [ 7.826323683091516, 47.247038886035739 ], [ 7.839346144209173, 47.23184601548121 ], [ 7.865236036813656, 47.191280016259725 ], [ 7.869731886217551, 47.185492254763744 ], [ 7.875054558820807, 47.17670726243017 ], [ 7.878310173875434, 47.168774929019719 ], [ 7.878465202607003, 47.158620510228332 ], [ 7.887146843951655, 47.128338121007459 ], [ 7.879085321130674, 47.118467923056187 ], [ 7.875984734807673, 47.11174998647266 ], [ 7.874124382833998, 47.101414700527982 ], [ 7.874124382833998, 47.081622625983357 ], [ 7.870972120566876, 47.061287949978862 ], [ 7.870972120566876, 47.05511261755322 ], [ 7.873349237377397, 47.048136298551299 ], [ 7.881875848191839, 47.040178128517766 ], [ 7.888852166294441, 47.03196157516652 ], [ 7.893968133322687, 47.027646592915914 ], [ 7.897533806739773, 47.011497707952856 ], [ 7.92388878733766, 47.00984406245351 ], [ 7.931071811914592, 47.005761624199579 ], [ 7.952465855115122, 47.002712713820642 ], [ 7.945954624106605, 46.979587510754982 ], [ 7.94316409704544, 46.975350042870161 ], [ 7.939753452359923, 46.96628082879721 ], [ 7.937428013292163, 46.963490301735987 ], [ 7.934017367707327, 46.960260525103138 ], [ 7.932157016632971, 46.957547512407757 ], [ 7.931071811914592, 46.951346341560395 ], [ 7.929986606296836, 46.948245755237394 ], [ 7.928074578379096, 46.946178696789389 ], [ 7.922803581719904, 46.943465684993328 ], [ 7.921253289008064, 46.941527817754547 ], [ 7.919082878671873, 46.937652085974946 ], [ 7.915982293248248, 46.933983058871036 ], [ 7.911176384582461, 46.93155426701577 ], [ 7.906060417554215, 46.93098582623486 ], [ 7.897998894733178, 46.932277737427626 ], [ 7.895518426034528, 46.931916002221726 ], [ 7.888077019938521, 46.928557034379594 ], [ 7.879395378593813, 46.92620575599085 ], [ 7.875674676445158, 46.924371243338157 ], [ 7.873969354102371, 46.920133775453337 ], [ 7.873814325370802, 46.914190986125107 ], [ 7.875984734807673, 46.902047024150818 ], [ 7.875209587552433, 46.894760646786381 ], [ 7.871902296553742, 46.88899872551076 ], [ 7.862600539383379, 46.882616685711469 ], [ 7.86089521704065, 46.877914129833187 ], [ 7.870041944580066, 46.858122057087257 ], [ 7.870507032573471, 46.850318914885975 ], [ 7.886061639233276, 46.838691717748532 ], [ 7.952155795853287, 46.802414863255308 ], [ 7.963938022621619, 46.789857490131055 ], [ 7.977115513370222, 46.778850409718586 ], [ 7.983316685116904, 46.777661852212702 ], [ 7.991119826418867, 46.778669542565297 ], [ 8.006002637711561, 46.784431463840974 ], [ 8.02336592040092, 46.789289049350145 ], [ 8.043726433927759, 46.788333034941559 ], [ 8.075352411184838, 46.787170314958018 ], [ 8.094576043149857, 46.784276435109348 ], [ 8.128424105787815, 46.769031886812115 ], [ 8.138656039844363, 46.764174303101584 ], [ 8.150593296243642, 46.760453600053552 ], [ 8.158086379183032, 46.759006660129216 ], [ 8.163357374942905, 46.759730130541072 ], [ 8.18692182758025, 46.765982978231818 ], [ 8.198704054348639, 46.767636623731164 ], [ 8.251000604394392, 46.763192451170653 ], [ 8.270275913202795, 46.759006660129216 ], [ 8.280042759265939, 46.758774116132543 ], [ 8.290894810047405, 46.761693834402934 ], [ 8.324432814322904, 46.777713528156767 ], [ 8.368151075811511, 46.789495754925099 ], [ 8.391612175661351, 46.775103868248891 ], [ 8.401068963361979, 46.76967784285813 ], [ 8.407890251833635, 46.772235825922621 ], [ 8.421222772213127, 46.77409617789624 ], [ 8.42633873924143, 46.77409617789624 ], [ 8.446234164774864, 46.769212754864725 ] ], [ [ 7.231062859663211, 46.93349213335523 ], [ 7.234163445986212, 46.93444814686444 ], [ 7.236488885053973, 46.936308498838116 ], [ 7.237729120302674, 46.937652085974946 ], [ 7.237419061040839, 46.941217760291352 ], [ 7.222536247949449, 46.938323880442681 ], [ 7.225946892634965, 46.933207913414435 ], [ 7.228892450226397, 46.933724677351961 ], [ 7.231062859663211, 46.93349213335523 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-LU", "NAME_1": "Lucerne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.405564812765874, 47.142316596533703 ], [ 8.417967157158557, 47.128596503425854 ], [ 8.426493767973, 47.127149563501519 ], [ 8.430989618276271, 47.125676785155463 ], [ 8.435227085261772, 47.125030829109448 ], [ 8.436622349241986, 47.124100654021959 ], [ 8.442358432995263, 47.1133002791845 ], [ 8.411610954881667, 47.100587877328678 ], [ 8.406184930390225, 47.097022203012216 ], [ 8.403084344067224, 47.093404852751746 ], [ 8.401999139348789, 47.089580796916209 ], [ 8.401689080086953, 47.084413153943899 ], [ 8.400138787375113, 47.080718289317588 ], [ 8.396728142689597, 47.077385158997856 ], [ 8.387736443881749, 47.07092560483278 ], [ 8.386341179901535, 47.067669989778153 ], [ 8.387891472613376, 47.062192288443327 ], [ 8.393317498004137, 47.057179674202587 ], [ 8.404324578416549, 47.053097235948655 ], [ 8.419672478601967, 47.057954820558507 ], [ 8.459721713885983, 47.050771795981575 ], [ 8.498065626827213, 47.026561388197479 ], [ 8.501786329875188, 47.022969876358673 ], [ 8.505041944929815, 47.018112290849501 ], [ 8.501476270613409, 47.010360826390979 ], [ 8.498220655558782, 47.005270697784454 ], [ 8.465147739276745, 46.993281765441111 ], [ 8.459876742617553, 47.000283921965377 ], [ 8.446079136043295, 47.00927562077328 ], [ 8.431919793363761, 47.011291002377845 ], [ 8.423083123287483, 47.005399888993679 ], [ 8.422152948199994, 47.000697333115397 ], [ 8.41223107340528, 46.998552761200926 ], [ 8.379209832167987, 46.999043688515371 ], [ 8.377814569087093, 46.999973862703598 ], [ 8.377349481093688, 47.000878201168007 ], [ 8.376832717156162, 47.003332831444993 ], [ 8.365980666374639, 47.00772532806144 ], [ 8.350632765289902, 47.002428493879847 ], [ 8.329083693357745, 46.997312526851601 ], [ 8.316629673020998, 46.998992010772668 ], [ 8.305002475883555, 46.999302070034503 ], [ 8.292445102759245, 46.997803453266727 ], [ 8.268105502866661, 46.997906806054232 ], [ 8.251000604394392, 46.995478014198966 ], [ 8.231776970630676, 46.990878811108246 ], [ 8.226195915609026, 46.98826915120037 ], [ 8.222940300554399, 46.983230699437229 ], [ 8.222320183829424, 46.979251613970803 ], [ 8.227126091595835, 46.97162933982213 ], [ 8.171573927394832, 46.967986152039259 ], [ 8.154830763229143, 46.960441393155747 ], [ 8.152608676948887, 46.957805894826151 ], [ 8.156381055940983, 46.94891754790649 ], [ 8.157466260659362, 46.943930772087413 ], [ 8.155915967947578, 46.938969834690113 ], [ 8.135710483152252, 46.926128242524328 ], [ 8.111835972152392, 46.905354316048829 ], [ 8.107495150580746, 46.904475816006084 ], [ 8.105169712412305, 46.905483507258054 ], [ 8.103774448432034, 46.9078864606916 ], [ 8.101914097357678, 46.90902334225342 ], [ 8.098658481403788, 46.909385077459319 ], [ 8.093025750438017, 46.909178371884309 ], [ 8.088219841772286, 46.9078864606916 ], [ 8.08403405073085, 46.905457668836334 ], [ 8.076747674265732, 46.898222968315338 ], [ 8.073492059211162, 46.893365382806167 ], [ 8.06977135616313, 46.886053167919329 ], [ 8.066205681846725, 46.871764634929946 ], [ 8.048842400956005, 46.844531155188633 ], [ 8.046516960988924, 46.839260159428818 ], [ 8.049772576942871, 46.82887319574138 ], [ 8.054733514340228, 46.821690172063768 ], [ 8.060004510100043, 46.80613556630334 ], [ 8.043726433927759, 46.788333034941559 ], [ 8.02336592040092, 46.789289049350145 ], [ 8.006002637711561, 46.784431463840974 ], [ 7.991119826418867, 46.778669542565297 ], [ 7.983316685116904, 46.777661852212702 ], [ 7.977115513370222, 46.778850409718586 ], [ 7.963938022621619, 46.789857490131055 ], [ 7.952155795853287, 46.802414863255308 ], [ 7.886061639233276, 46.838691717748532 ], [ 7.870507032573471, 46.850318914885975 ], [ 7.870041944580066, 46.858122057087257 ], [ 7.86089521704065, 46.877914129833187 ], [ 7.862600539383379, 46.882616685711469 ], [ 7.871902296553742, 46.88899872551076 ], [ 7.875209587552433, 46.894760646786381 ], [ 7.875984734807673, 46.902047024150818 ], [ 7.873814325370802, 46.914190986125107 ], [ 7.873969354102371, 46.920133775453337 ], [ 7.875674676445158, 46.924371243338157 ], [ 7.879395378593813, 46.92620575599085 ], [ 7.888077019938521, 46.928557034379594 ], [ 7.895518426034528, 46.931916002221726 ], [ 7.897998894733178, 46.932277737427626 ], [ 7.906060417554215, 46.93098582623486 ], [ 7.911176384582461, 46.93155426701577 ], [ 7.915982293248248, 46.933983058871036 ], [ 7.919082878671873, 46.937652085974946 ], [ 7.921253289008064, 46.941527817754547 ], [ 7.922803581719904, 46.943465684993328 ], [ 7.928074578379096, 46.946178696789389 ], [ 7.929986606296836, 46.948245755237394 ], [ 7.931071811914592, 46.951346341560395 ], [ 7.932157016632971, 46.957547512407757 ], [ 7.934017367707327, 46.960260525103138 ], [ 7.937428013292163, 46.963490301735987 ], [ 7.939753452359923, 46.96628082879721 ], [ 7.94316409704544, 46.975350042870161 ], [ 7.945954624106605, 46.979587510754982 ], [ 7.952465855115122, 47.002712713820642 ], [ 7.931071811914592, 47.005761624199579 ], [ 7.92388878733766, 47.00984406245351 ], [ 7.897533806739773, 47.011497707952856 ], [ 7.893968133322687, 47.027646592915914 ], [ 7.888852166294441, 47.03196157516652 ], [ 7.881875848191839, 47.040178128517766 ], [ 7.873349237377397, 47.048136298551299 ], [ 7.870972120566876, 47.05511261755322 ], [ 7.870972120566876, 47.061287949978862 ], [ 7.874124382833998, 47.081622625983357 ], [ 7.874124382833998, 47.101414700527982 ], [ 7.875984734807673, 47.11174998647266 ], [ 7.879085321130674, 47.118467923056187 ], [ 7.887146843951655, 47.128338121007459 ], [ 7.878465202607003, 47.158620510228332 ], [ 7.878310173875434, 47.168774929019719 ], [ 7.875054558820807, 47.17670726243017 ], [ 7.869731886217551, 47.185492254763744 ], [ 7.865236036813656, 47.191280016259725 ], [ 7.839346144209173, 47.23184601548121 ], [ 7.900479364331204, 47.240320950351531 ], [ 7.923268669713309, 47.240346787873932 ], [ 7.94874515116777, 47.246573798042334 ], [ 7.952620883846691, 47.2486150171693 ], [ 7.954171176558532, 47.249829413096904 ], [ 7.954791294182883, 47.250785427505434 ], [ 7.955566439639483, 47.252774969789016 ], [ 7.956031527632888, 47.256211452896196 ], [ 7.954946322914452, 47.264712226188237 ], [ 7.954791294182883, 47.27267039712109 ], [ 7.955566439639483, 47.275357571394807 ], [ 7.957116733250643, 47.276649481688196 ], [ 7.961302524292023, 47.277088731259937 ], [ 7.982696566593233, 47.277398790521715 ], [ 7.998096143622092, 47.273032132327046 ], [ 8.020420362809489, 47.243008123725929 ], [ 8.089305047389985, 47.261249905558657 ], [ 8.104239536425439, 47.25055288350876 ], [ 8.124238314746435, 47.246057034104808 ], [ 8.151368441700185, 47.245359402114673 ], [ 8.160411818250793, 47.242878933416023 ], [ 8.163202345311959, 47.241302802282462 ], [ 8.155915967947578, 47.239287421577217 ], [ 8.154520704866627, 47.238331407168687 ], [ 8.154520704866627, 47.236910304766752 ], [ 8.156226027209357, 47.23492076338249 ], [ 8.157466260659362, 47.231587633062816 ], [ 8.159326612633038, 47.22993398756347 ], [ 8.163047315681069, 47.227453517965444 ], [ 8.167698194715911, 47.225257270106908 ], [ 8.174519484086886, 47.223216050979943 ], [ 8.18351118289479, 47.223862006126637 ], [ 8.199789259067018, 47.232130235422005 ], [ 8.222475212560994, 47.259647936003432 ], [ 8.226971062864266, 47.267761134768534 ], [ 8.243714227029955, 47.281093655148027 ], [ 8.260612419927213, 47.282282213553287 ], [ 8.277097201674508, 47.277631334518446 ], [ 8.282988315058674, 47.27383311620531 ], [ 8.288569370080324, 47.268071194030369 ], [ 8.291669956403325, 47.258304347967282 ], [ 8.295855747444762, 47.249829413096904 ], [ 8.303452183171714, 47.238408922433791 ], [ 8.336835157816267, 47.173348293688775 ], [ 8.340400832132673, 47.168490709078924 ], [ 8.351407911645765, 47.156760159153976 ], [ 8.358694289010202, 47.150610663351415 ], [ 8.364120314400964, 47.147200019565219 ], [ 8.376522657894327, 47.143117581311287 ], [ 8.404789666409954, 47.142316596533703 ], [ 8.405564812765874, 47.142316596533703 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-ZG", "NAME_1": "Zug" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.442358432995263, 47.1133002791845 ], [ 8.436622349241986, 47.124100654021959 ], [ 8.435227085261772, 47.125030829109448 ], [ 8.430989618276271, 47.125676785155463 ], [ 8.426493767973, 47.127149563501519 ], [ 8.417967157158557, 47.128596503425854 ], [ 8.405564812765874, 47.142316596533703 ], [ 8.398123406669868, 47.177379055099266 ], [ 8.393007439641622, 47.219521186353631 ], [ 8.393782585997542, 47.225722358100313 ], [ 8.394402702722516, 47.228435369896374 ], [ 8.40742516384023, 47.245514430846299 ], [ 8.412076042875071, 47.23489492496077 ], [ 8.413316278123716, 47.230657457075949 ], [ 8.415951775553992, 47.226626694766139 ], [ 8.422618036193398, 47.223706977395068 ], [ 8.462357212215579, 47.214792792053686 ], [ 8.474139438983912, 47.213449204916856 ], [ 8.48452640087271, 47.21350088176024 ], [ 8.503181592956139, 47.217970892742471 ], [ 8.531551955158591, 47.221769111055607 ], [ 8.57082604318731, 47.217324938495096 ], [ 8.589274529695786, 47.203527330122142 ], [ 8.606224399436485, 47.193527940062381 ], [ 8.617696566942982, 47.183993638895288 ], [ 8.620177035641689, 47.180272935847313 ], [ 8.624207797951499, 47.176087144805877 ], [ 8.631649204047505, 47.172185573705235 ], [ 8.661156446912457, 47.163374742050678 ], [ 8.683480666099854, 47.165364285233579 ], [ 8.701929151708953, 47.15665680636647 ], [ 8.684100782824828, 47.143686022092197 ], [ 8.676504347097932, 47.128958237732434 ], [ 8.648547397844141, 47.105858873088494 ], [ 8.637540317431672, 47.100174466178657 ], [ 8.624052769219929, 47.096402086287242 ], [ 8.610565220108811, 47.09459341115695 ], [ 8.587724236983945, 47.088960680191235 ], [ 8.575786980584667, 47.087229519426728 ], [ 8.567105340139335, 47.087358709736634 ], [ 8.558888786788089, 47.092836411970836 ], [ 8.554702995746652, 47.094851793575401 ], [ 8.54927697125521, 47.095678615875386 ], [ 8.497755567565378, 47.092629706395826 ], [ 8.480340609831273, 47.119501450931182 ], [ 8.469953647942475, 47.120121568555533 ], [ 8.462822300208984, 47.121956082107488 ], [ 8.452745395783381, 47.118571274944372 ], [ 8.442358432995263, 47.1133002791845 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-UR", "NAME_1": "Uri" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.590979852038515, 46.98922516470958 ], [ 8.594855583818116, 46.988114122468744 ], [ 8.599816522114793, 46.986124579285899 ], [ 8.601366814826633, 46.982533067447093 ], [ 8.605139193818729, 46.968528754398449 ], [ 8.60916995612854, 46.959562893113002 ], [ 8.616611362224546, 46.955377102071566 ], [ 8.622347445977823, 46.953568426941331 ], [ 8.631184116054101, 46.952224839804501 ], [ 8.652268100892115, 46.946850491257123 ], [ 8.659606154200617, 46.946101183322924 ], [ 8.682395461381418, 46.947160550518959 ], [ 8.687356397879455, 46.945636095329519 ], [ 8.69030195457151, 46.942768053003192 ], [ 8.695107863237297, 46.931812649434221 ], [ 8.702394239702414, 46.924371243338157 ], [ 8.70828535308658, 46.922975979357943 ], [ 8.715003288770731, 46.924784654488178 ], [ 8.72523522282728, 46.930520738241455 ], [ 8.734692009628532, 46.934086412557861 ], [ 8.742288446254804, 46.935946764531536 ], [ 8.754070672123817, 46.940029201886148 ], [ 8.761202019857308, 46.941217760291352 ], [ 8.76647301561718, 46.939460761105238 ], [ 8.77319095220065, 46.935688382113142 ], [ 8.782337680639444, 46.934603176495386 ], [ 8.810553013211006, 46.935094102910512 ], [ 8.817529331313551, 46.933156236571051 ], [ 8.820474888005663, 46.929383857578955 ], [ 8.819854771280632, 46.924991360063188 ], [ 8.820319858374774, 46.920288805084283 ], [ 8.823265415066828, 46.916826484454646 ], [ 8.829053175663489, 46.912433986938936 ], [ 8.835254347410171, 46.91207225173298 ], [ 8.837579787377251, 46.90902334225342 ], [ 8.838664992095687, 46.898016261841008 ], [ 8.841145460794394, 46.89207347341204 ], [ 8.844866163842369, 46.890238958960765 ], [ 8.849206983615375, 46.891143297425231 ], [ 8.855718214623892, 46.895639146829126 ], [ 8.880677931241507, 46.903623155284379 ], [ 8.885225456589524, 46.904579168793589 ], [ 8.930338982957664, 46.922200833002023 ], [ 8.943878208012904, 46.905509344780398 ], [ 8.945583530355634, 46.902667140875849 ], [ 8.948063999054284, 46.896362617240982 ], [ 8.948684115779315, 46.8905490182226 ], [ 8.94821902778591, 46.880472113796998 ], [ 8.944033236744474, 46.875123602772021 ], [ 8.937315301060266, 46.871144518204915 ], [ 8.915921257859736, 46.865072536768139 ], [ 8.911425409355161, 46.864452420043108 ], [ 8.908014763770325, 46.864478258464828 ], [ 8.905379266340049, 46.864142360781273 ], [ 8.902433708748674, 46.862514552804328 ], [ 8.897782829713833, 46.859207261805636 ], [ 8.87184126116523, 46.845900579847864 ], [ 8.8701359388225, 46.839518540947893 ], [ 8.871066114809366, 46.834609280393977 ], [ 8.87168623243366, 46.815437324373022 ], [ 8.860834180752818, 46.805618801466494 ], [ 8.84951704287721, 46.801329658536872 ], [ 8.842850783137123, 46.796368720240196 ], [ 8.835874465034522, 46.794508369165897 ], [ 8.828433058039195, 46.793268133917195 ], [ 8.825590855033909, 46.790813504539585 ], [ 8.826262647703004, 46.778953762506092 ], [ 8.824815707778669, 46.770582180423276 ], [ 8.815668980239252, 46.762675686333807 ], [ 8.807607455619575, 46.753167222689171 ], [ 8.806522250901139, 46.7509968132523 ], [ 8.806212191639304, 46.74965322521615 ], [ 8.80714236762617, 46.740558172721478 ], [ 8.803731723839974, 46.737199204879403 ], [ 8.800321079154457, 46.735597236223441 ], [ 8.785283237331498, 46.733271796256361 ], [ 8.781252475921008, 46.733556017096475 ], [ 8.766317986885554, 46.737250881722787 ], [ 8.748799676363944, 46.733013413837966 ], [ 8.738877800669968, 46.72577871421629 ], [ 8.715623407294402, 46.70495311089735 ], [ 8.705804884387874, 46.701129055061813 ], [ 8.695727979962271, 46.699630439193413 ], [ 8.679449903789987, 46.694643663374336 ], [ 8.672628615318331, 46.690535386698684 ], [ 8.669062941001926, 46.686349596556624 ], [ 8.669217969733495, 46.683093979703358 ], [ 8.669993116988735, 46.680484320694802 ], [ 8.66952802899533, 46.676531074549416 ], [ 8.667822706652601, 46.67136342977841 ], [ 8.660536330187483, 46.659968777537017 ], [ 8.65350833524144, 46.644284980567363 ], [ 8.65273318888552, 46.638755602389097 ], [ 8.653973423234902, 46.633071194579941 ], [ 8.655988803940147, 46.62901459384841 ], [ 8.658986036576323, 46.625888170003009 ], [ 8.662396681261839, 46.624157009238559 ], [ 8.666892530665734, 46.622632554948439 ], [ 8.670923292975601, 46.620668850187258 ], [ 8.673403760774931, 46.617490750397792 ], [ 8.678674758333443, 46.605346788423503 ], [ 8.680845167770258, 46.597156074393297 ], [ 8.677899611078203, 46.583591010017074 ], [ 8.636300083082347, 46.57116282810199 ], [ 8.54865685363086, 46.584986273997345 ], [ 8.537133009280922, 46.584547024425603 ], [ 8.529691603184915, 46.583074246079548 ], [ 8.526280959398719, 46.580903835743413 ], [ 8.523800489800749, 46.578500882309868 ], [ 8.516049025342227, 46.562584540444163 ], [ 8.512173292663306, 46.556047471913246 ], [ 8.509847852696225, 46.550853990519215 ], [ 8.476929966045077, 46.531837063229887 ], [ 8.437397494698587, 46.546616523533714 ], [ 8.422152948199994, 46.562997952493504 ], [ 8.411610954881667, 46.581188056583528 ], [ 8.408820427820501, 46.58738922833021 ], [ 8.407580194370439, 46.593176988027551 ], [ 8.408510370357305, 46.597982896693281 ], [ 8.415641717191477, 46.614209296022182 ], [ 8.419052361876993, 46.625061346803705 ], [ 8.421222772213127, 46.637412014352947 ], [ 8.421687860206589, 46.645938626066709 ], [ 8.419982536964483, 46.650331121783836 ], [ 8.417657097896722, 46.652940781691711 ], [ 8.409440545444795, 46.655653795286412 ], [ 8.406339959121794, 46.668572902717244 ], [ 8.401999139348789, 46.676789456068491 ], [ 8.401689080086953, 46.688675034725065 ], [ 8.40649498875274, 46.692499091459865 ], [ 8.412851190130311, 46.693093369763176 ], [ 8.429439324665111, 46.69012197554872 ], [ 8.437397494698587, 46.689811917186205 ], [ 8.444683872063024, 46.69105215153553 ], [ 8.44809451674854, 46.694772854583562 ], [ 8.449489779829435, 46.699346218353242 ], [ 8.45057498544719, 46.705366522946633 ], [ 8.450730015078136, 46.709655666775575 ], [ 8.449954867822896, 46.71378978097357 ], [ 8.448249546379429, 46.717820543283437 ], [ 8.447939487117651, 46.723349921461704 ], [ 8.446234164774864, 46.72732900692813 ], [ 8.440653109753214, 46.735338853805047 ], [ 8.437552524329533, 46.741359158398438 ], [ 8.436622349241986, 46.750635077147081 ], [ 8.437707553960422, 46.755389308969427 ], [ 8.446234164774864, 46.769212754864725 ], [ 8.478635288387864, 46.776034044235701 ], [ 8.480650669093109, 46.780891628845552 ], [ 8.481735873811488, 46.785878403765309 ], [ 8.480030552368078, 46.79089101800605 ], [ 8.479255405112838, 46.794275825169166 ], [ 8.478325230025348, 46.796601264236926 ], [ 8.475379673333236, 46.797919012952036 ], [ 8.472899203735267, 46.799520982507318 ], [ 8.470573764667506, 46.803603420761249 ], [ 8.474914585339832, 46.809520372567135 ], [ 8.477240024407593, 46.816729233767092 ], [ 8.482976108160869, 46.829544990209115 ], [ 8.488402133551631, 46.836572984255781 ], [ 8.495895217390341, 46.842205716120873 ], [ 8.498840773183133, 46.84525462470117 ], [ 8.500081008431778, 46.847631741511634 ], [ 8.499460889908107, 46.849440415742549 ], [ 8.497755567565378, 46.851533311712956 ], [ 8.495120070135101, 46.85331614842147 ], [ 8.486696812108164, 46.85465973645762 ], [ 8.483131137791759, 46.856365057901087 ], [ 8.472589146272071, 46.855719102754392 ], [ 8.468403355230635, 46.875847073183877 ], [ 8.47041873503656, 46.882926744073927 ], [ 8.46886844232472, 46.889463813504165 ], [ 8.46623294399518, 46.893830470799571 ], [ 8.458791537899117, 46.901426907425787 ], [ 8.459411654624148, 46.904734199323798 ], [ 8.461582064960339, 46.906697903185659 ], [ 8.478325230025348, 46.91460439727507 ], [ 8.52922651519151, 46.932587795790141 ], [ 8.540853713228273, 46.939925849098643 ], [ 8.54503950426971, 46.943233140996654 ], [ 8.548036736905885, 46.947186388041359 ], [ 8.561834344379463, 46.976822822115537 ], [ 8.563229608359734, 46.982042141031968 ], [ 8.561679314748574, 46.988114122468744 ], [ 8.590979852038515, 46.98922516470958 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-SZ", "NAME_1": "Schwyz" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.659606154200617, 46.946101183322924 ], [ 8.652268100892115, 46.946850491257123 ], [ 8.631184116054101, 46.952224839804501 ], [ 8.622347445977823, 46.953568426941331 ], [ 8.616611362224546, 46.955377102071566 ], [ 8.60916995612854, 46.959562893113002 ], [ 8.605139193818729, 46.968528754398449 ], [ 8.601366814826633, 46.982533067447093 ], [ 8.599816522114793, 46.986124579285899 ], [ 8.594855583818116, 46.988114122468744 ], [ 8.590979852038515, 46.98922516470958 ], [ 8.561679314748574, 46.988114122468744 ], [ 8.489539015113451, 46.981577053038563 ], [ 8.465147739276745, 46.993281765441111 ], [ 8.498220655558782, 47.005270697784454 ], [ 8.501476270613409, 47.010360826390979 ], [ 8.505041944929815, 47.018112290849501 ], [ 8.501786329875188, 47.022969876358673 ], [ 8.498065626827213, 47.026561388197479 ], [ 8.459721713885983, 47.050771795981575 ], [ 8.419672478601967, 47.057954820558507 ], [ 8.404324578416549, 47.053097235948655 ], [ 8.393317498004137, 47.057179674202587 ], [ 8.387891472613376, 47.062192288443327 ], [ 8.386341179901535, 47.067669989778153 ], [ 8.387736443881749, 47.07092560483278 ], [ 8.396728142689597, 47.077385158997856 ], [ 8.400138787375113, 47.080718289317588 ], [ 8.401689080086953, 47.084413153943899 ], [ 8.401999139348789, 47.089580796916209 ], [ 8.403084344067224, 47.093404852751746 ], [ 8.406184930390225, 47.097022203012216 ], [ 8.411610954881667, 47.100587877328678 ], [ 8.442358432995263, 47.1133002791845 ], [ 8.452745395783381, 47.118571274944372 ], [ 8.462822300208984, 47.121956082107488 ], [ 8.469953647942475, 47.120121568555533 ], [ 8.480340609831273, 47.119501450931182 ], [ 8.497755567565378, 47.092629706395826 ], [ 8.54927697125521, 47.095678615875386 ], [ 8.554702995746652, 47.094851793575401 ], [ 8.558888786788089, 47.092836411970836 ], [ 8.567105340139335, 47.087358709736634 ], [ 8.575786980584667, 47.087229519426728 ], [ 8.587724236983945, 47.088960680191235 ], [ 8.610565220108811, 47.09459341115695 ], [ 8.624052769219929, 47.096402086287242 ], [ 8.637540317431672, 47.100174466178657 ], [ 8.648547397844141, 47.105858873088494 ], [ 8.676504347097932, 47.128958237732434 ], [ 8.684100782824828, 47.143686022092197 ], [ 8.701929151708953, 47.15665680636647 ], [ 8.683480666099854, 47.165364285233579 ], [ 8.681930373388013, 47.170790309724964 ], [ 8.676194288735417, 47.176242174436766 ], [ 8.675109084016981, 47.178283393563731 ], [ 8.674954054386092, 47.180944729415728 ], [ 8.675729200742012, 47.183580226845947 ], [ 8.677279494353172, 47.186706650691349 ], [ 8.683170606838019, 47.191486720935416 ], [ 8.693092481632732, 47.197558702372191 ], [ 8.732056512198255, 47.214560248056955 ], [ 8.775361361637522, 47.220580553549667 ], [ 8.829983350751036, 47.214017645697766 ], [ 8.924137811210983, 47.220451362340498 ], [ 8.955350376418721, 47.21391429291026 ], [ 8.952559849357556, 47.204354153321503 ], [ 8.951784702102316, 47.198178819097222 ], [ 8.951939730833885, 47.195698351297835 ], [ 8.958450961842402, 47.187249253949858 ], [ 8.985116000802805, 47.168929959549985 ], [ 8.965892367938409, 47.126761989873899 ], [ 8.965892367938409, 47.121103421385783 ], [ 8.962946812145674, 47.109941311342425 ], [ 8.960621372178593, 47.105858873088494 ], [ 8.955970493143752, 47.100536201384557 ], [ 8.958295933110833, 47.087462063423459 ], [ 8.957365757123966, 47.080253201324183 ], [ 8.94744388232931, 47.066326401742003 ], [ 8.939537388239842, 47.058135687711797 ], [ 8.930804070951126, 47.051391912706606 ], [ 8.90599938306508, 47.043330389885568 ], [ 8.894682245189472, 47.037594306132291 ], [ 8.889876335624365, 47.026483872932374 ], [ 8.903828972728888, 47.017698879699537 ], [ 8.931889275669505, 46.990026150386484 ], [ 8.932044305300451, 46.98845001925298 ], [ 8.929253778239286, 46.985039374567464 ], [ 8.929563835702425, 46.982145493819473 ], [ 8.933904657274127, 46.976719469328032 ], [ 8.938762240984602, 46.973257147799131 ], [ 8.95473025879437, 46.965815741703068 ], [ 8.958605990573972, 46.961268216355052 ], [ 8.960311313816078, 46.954963690921602 ], [ 8.956435581137157, 46.941579495497308 ], [ 8.951629673370689, 46.929590563153965 ], [ 8.930338982957664, 46.922200833002023 ], [ 8.885225456589524, 46.904579168793589 ], [ 8.880677931241507, 46.903623155284379 ], [ 8.855718214623892, 46.895639146829126 ], [ 8.849206983615375, 46.891143297425231 ], [ 8.844866163842369, 46.890238958960765 ], [ 8.841145460794394, 46.89207347341204 ], [ 8.838664992095687, 46.898016261841008 ], [ 8.837579787377251, 46.90902334225342 ], [ 8.835254347410171, 46.91207225173298 ], [ 8.829053175663489, 46.912433986938936 ], [ 8.823265415066828, 46.916826484454646 ], [ 8.820319858374774, 46.920288805084283 ], [ 8.819854771280632, 46.924991360063188 ], [ 8.820474888005663, 46.929383857578955 ], [ 8.817529331313551, 46.933156236571051 ], [ 8.810553013211006, 46.935094102910512 ], [ 8.782337680639444, 46.934603176495386 ], [ 8.77319095220065, 46.935688382113142 ], [ 8.76647301561718, 46.939460761105238 ], [ 8.761202019857308, 46.941217760291352 ], [ 8.754070672123817, 46.940029201886148 ], [ 8.742288446254804, 46.935946764531536 ], [ 8.734692009628532, 46.934086412557861 ], [ 8.72523522282728, 46.930520738241455 ], [ 8.715003288770731, 46.924784654488178 ], [ 8.70828535308658, 46.922975979357943 ], [ 8.702394239702414, 46.924371243338157 ], [ 8.695107863237297, 46.931812649434221 ], [ 8.69030195457151, 46.942768053003192 ], [ 8.687356397879455, 46.945636095329519 ], [ 8.682395461381418, 46.947160550518959 ], [ 8.659606154200617, 46.946101183322924 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-GL", "NAME_1": "Glarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.930338982957664, 46.922200833002023 ], [ 8.951629673370689, 46.929590563153965 ], [ 8.956435581137157, 46.941579495497308 ], [ 8.960311313816078, 46.954963690921602 ], [ 8.958605990573972, 46.961268216355052 ], [ 8.95473025879437, 46.965815741703068 ], [ 8.938762240984602, 46.973257147799131 ], [ 8.933904657274127, 46.976719469328032 ], [ 8.929563835702425, 46.982145493819473 ], [ 8.929253778239286, 46.985039374567464 ], [ 8.932044305300451, 46.98845001925298 ], [ 8.931889275669505, 46.990026150386484 ], [ 8.903828972728888, 47.017698879699537 ], [ 8.889876335624365, 47.026483872932374 ], [ 8.894682245189472, 47.037594306132291 ], [ 8.90599938306508, 47.043330389885568 ], [ 8.930804070951126, 47.051391912706606 ], [ 8.939537388239842, 47.058135687711797 ], [ 8.94744388232931, 47.066326401742003 ], [ 8.957365757123966, 47.080253201324183 ], [ 8.958295933110833, 47.087462063423459 ], [ 8.955970493143752, 47.100536201384557 ], [ 8.960621372178593, 47.105858873088494 ], [ 8.962946812145674, 47.109941311342425 ], [ 8.965892367938409, 47.121103421385783 ], [ 8.965892367938409, 47.126761989873899 ], [ 8.985116000802805, 47.168929959549985 ], [ 9.001135694556638, 47.174846910456552 ], [ 9.007026807940804, 47.174691880825605 ], [ 9.059478386718183, 47.142187405324478 ], [ 9.074671258172032, 47.136270453518591 ], [ 9.179884474089192, 47.122240302048283 ], [ 9.174923536691836, 47.074672146302476 ], [ 9.169342481670185, 47.060641994832167 ], [ 9.134719272676307, 47.044105536241489 ], [ 9.1322388039776, 47.041676744386223 ], [ 9.132858920702631, 47.039790553990827 ], [ 9.15130740721105, 47.032504177525766 ], [ 9.157818638219567, 47.031238104754721 ], [ 9.176473830302996, 47.032633368734935 ], [ 9.187635939447034, 47.036457425469791 ], [ 9.195077344643721, 47.038059394125696 ], [ 9.202363722008158, 47.038524482119158 ], [ 9.210425245728516, 47.034390367021786 ], [ 9.218693475023827, 47.026742255350769 ], [ 9.23187096487311, 47.008242091998909 ], [ 9.236211786444755, 46.999405422822008 ], [ 9.237762078257276, 46.992325751032581 ], [ 9.233111200121755, 46.963567817001149 ], [ 9.232181024134945, 46.961009833037338 ], [ 9.2301656434297, 46.957909246714337 ], [ 9.230630731423105, 46.954240221409066 ], [ 9.234041375209301, 46.945455227276909 ], [ 9.241792839667824, 46.93349213335523 ], [ 9.242878045285522, 46.929693915042094 ], [ 9.240862663680957, 46.920340481028347 ], [ 9.213060744058055, 46.903287258500143 ], [ 9.196007520630587, 46.887138373537084 ], [ 9.190736524870715, 46.884812934469323 ], [ 9.182519972418788, 46.882332464871354 ], [ 9.163606397916908, 46.882151597718064 ], [ 9.149136996874915, 46.880007025803593 ], [ 9.115030551818506, 46.863961494527302 ], [ 9.105057000180409, 46.862049465710243 ], [ 9.096840447728482, 46.864116523258929 ], [ 9.09234459832453, 46.868457343031935 ], [ 9.085058220960093, 46.872074693292461 ], [ 9.075446405427272, 46.874400133259542 ], [ 9.058858269993152, 46.875433661134537 ], [ 9.049039747985944, 46.873986721210201 ], [ 9.042373488245858, 46.871764634929946 ], [ 9.040048049178097, 46.869387519018744 ], [ 9.039272901922857, 46.865718491914834 ], [ 9.039427930654483, 46.858044541822096 ], [ 9.038187697204421, 46.854608058714916 ], [ 9.035397170143256, 46.851533311712956 ], [ 9.03260664218277, 46.847476711880745 ], [ 9.029661086390036, 46.842515774483388 ], [ 9.024700148093359, 46.835384425850521 ], [ 9.017413770728922, 46.828795681375595 ], [ 9.003151076161203, 46.819623115414402 ], [ 8.980465121767963, 46.81228506120658 ], [ 8.925223015929419, 46.800554511281632 ], [ 8.915766229128167, 46.800399482550063 ], [ 8.911890496449246, 46.802259832725099 ], [ 8.909565057381485, 46.808900254942785 ], [ 8.907704705407809, 46.811561590794781 ], [ 8.902898796742079, 46.812155869997355 ], [ 8.892511833953961, 46.81476552990523 ], [ 8.87168623243366, 46.815437324373022 ], [ 8.871066114809366, 46.834609280393977 ], [ 8.8701359388225, 46.839518540947893 ], [ 8.87184126116523, 46.845900579847864 ], [ 8.897782829713833, 46.859207261805636 ], [ 8.902433708748674, 46.862514552804328 ], [ 8.905379266340049, 46.864142360781273 ], [ 8.908014763770325, 46.864478258464828 ], [ 8.911425409355161, 46.864452420043108 ], [ 8.915921257859736, 46.865072536768139 ], [ 8.937315301060266, 46.871144518204915 ], [ 8.944033236744474, 46.875123602772021 ], [ 8.94821902778591, 46.880472113796998 ], [ 8.948684115779315, 46.8905490182226 ], [ 8.948063999054284, 46.896362617240982 ], [ 8.945583530355634, 46.902667140875849 ], [ 8.943878208012904, 46.905509344780398 ], [ 8.930338982957664, 46.922200833002023 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-NW", "NAME_1": "Nidwalden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.465147739276745, 46.993281765441111 ], [ 8.489539015113451, 46.981577053038563 ], [ 8.561679314748574, 46.988114122468744 ], [ 8.563229608359734, 46.982042141031968 ], [ 8.561834344379463, 46.976822822115537 ], [ 8.548036736905885, 46.947186388041359 ], [ 8.54503950426971, 46.943233140996654 ], [ 8.540853713228273, 46.939925849098643 ], [ 8.52922651519151, 46.932587795790141 ], [ 8.478325230025348, 46.91460439727507 ], [ 8.461582064960339, 46.906697903185659 ], [ 8.459411654624148, 46.904734199323798 ], [ 8.458791537899117, 46.901426907425787 ], [ 8.46623294399518, 46.893830470799571 ], [ 8.46886844232472, 46.889463813504165 ], [ 8.47041873503656, 46.882926744073927 ], [ 8.468403355230635, 46.875847073183877 ], [ 8.472589146272071, 46.855719102754392 ], [ 8.42401329927435, 46.85447886840501 ], [ 8.413626335586912, 46.860059923426718 ], [ 8.4099056334382, 46.866131903964174 ], [ 8.405254754403359, 46.867527167045125 ], [ 8.400758904999464, 46.867372138313499 ], [ 8.381690300866694, 46.858742173812232 ], [ 8.377969597818662, 46.857967027456311 ], [ 8.376057569900922, 46.858225409874763 ], [ 8.376057569900922, 46.859362291436582 ], [ 8.376832717156162, 46.861532700873397 ], [ 8.376987745887732, 46.864374904778003 ], [ 8.376987745887732, 46.86817312309114 ], [ 8.371716750127916, 46.87336660448517 ], [ 8.368151075811511, 46.87414175084109 ], [ 8.363965284770075, 46.87217804607991 ], [ 8.360244581722043, 46.867217109581929 ], [ 8.360709669715447, 46.863780626474693 ], [ 8.364120314400964, 46.859129747439852 ], [ 8.365980666374639, 46.847425035037304 ], [ 8.367375928556271, 46.842644964793294 ], [ 8.373112013208811, 46.8300100773032 ], [ 8.373422071571326, 46.826599433517003 ], [ 8.372801954846352, 46.823214627253208 ], [ 8.372801954846352, 46.820604967345332 ], [ 8.375282424444322, 46.819002996890788 ], [ 8.38277550558513, 46.815747381836161 ], [ 8.384170769565344, 46.813706162709195 ], [ 8.38510094555221, 46.809339505413845 ], [ 8.385566034444935, 46.80784088774675 ], [ 8.386496208633105, 46.806755683028314 ], [ 8.388046502244265, 46.805412095891484 ], [ 8.391302118198212, 46.802828274405329 ], [ 8.395177849977756, 46.798022365739541 ], [ 8.398123406669868, 46.795438544253386 ], [ 8.401999139348789, 46.793138942708026 ], [ 8.417657097896722, 46.788668931725795 ], [ 8.420602654588834, 46.786653551020549 ], [ 8.42246300566319, 46.783191230390969 ], [ 8.420137566595429, 46.781330878417293 ], [ 8.391612175661351, 46.775103868248891 ], [ 8.368151075811511, 46.789495754925099 ], [ 8.347377150235275, 46.797996528217197 ], [ 8.326758254289985, 46.817504381022331 ], [ 8.324277784692015, 46.841094672081454 ], [ 8.325828078303175, 46.850577298203746 ], [ 8.32706831175318, 46.870834458943079 ], [ 8.331874220418911, 46.882177436139727 ], [ 8.333269484399182, 46.886802476752848 ], [ 8.333424513130751, 46.913519192556691 ], [ 8.331409133324826, 46.917653306754687 ], [ 8.326448195028149, 46.920805569021752 ], [ 8.302832064648044, 46.928350327905264 ], [ 8.296785923431628, 46.932226061483505 ], [ 8.291669956403325, 46.936721909988137 ], [ 8.293065220383596, 46.943388169728223 ], [ 8.295545689082246, 46.946850491257123 ], [ 8.298801304136873, 46.950028591046589 ], [ 8.301591831198039, 46.953413398209761 ], [ 8.304382358259204, 46.958064277244603 ], [ 8.306087680601991, 46.962198391442598 ], [ 8.307637974213151, 46.967288520049124 ], [ 8.305002475883555, 46.969898179956999 ], [ 8.301746859929608, 46.971448473568159 ], [ 8.263557976619325, 46.979406642702372 ], [ 8.259527215208777, 46.979406642702372 ], [ 8.255186395435771, 46.978373114827377 ], [ 8.249915398776636, 46.976202704491186 ], [ 8.24402428629179, 46.974419867782672 ], [ 8.227126091595835, 46.97162933982213 ], [ 8.222320183829424, 46.979251613970803 ], [ 8.222940300554399, 46.983230699437229 ], [ 8.226195915609026, 46.98826915120037 ], [ 8.231776970630676, 46.990878811108246 ], [ 8.251000604394392, 46.995478014198966 ], [ 8.268105502866661, 46.997906806054232 ], [ 8.292445102759245, 46.997803453266727 ], [ 8.305002475883555, 46.999302070034503 ], [ 8.316629673020998, 46.998992010772668 ], [ 8.329083693357745, 46.997312526851601 ], [ 8.350632765289902, 47.002428493879847 ], [ 8.365980666374639, 47.00772532806144 ], [ 8.376832717156162, 47.003332831444993 ], [ 8.377349481093688, 47.000878201168007 ], [ 8.377814569087093, 46.999973862703598 ], [ 8.379209832167987, 46.999043688515371 ], [ 8.41223107340528, 46.998552761200926 ], [ 8.422152948199994, 47.000697333115397 ], [ 8.423083123287483, 47.005399888993679 ], [ 8.431919793363761, 47.011291002377845 ], [ 8.446079136043295, 47.00927562077328 ], [ 8.459876742617553, 47.000283921965377 ], [ 8.465147739276745, 46.993281765441111 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-FR", "NAME_1": "Fribourg" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.215869989108683, 47.004185493066018 ], [ 7.225171746279045, 47.002454332301568 ], [ 7.22796227423953, 47.000077216390423 ], [ 7.228737419696131, 46.998785305197657 ], [ 7.228892450226397, 46.997958481998296 ], [ 7.229977654944832, 46.99206736951345 ], [ 7.236488885053973, 46.985607815348374 ], [ 7.234318474717838, 46.981912949822743 ], [ 7.22393151192972, 46.973102119067505 ], [ 7.218505487438279, 46.970079047110289 ], [ 7.205638055052191, 46.965660712072179 ], [ 7.203622674346946, 46.964058743416274 ], [ 7.203932732709461, 46.961345729821574 ], [ 7.209513786831792, 46.954808661290656 ], [ 7.211839226798872, 46.950958767033455 ], [ 7.212924432416628, 46.946592108838729 ], [ 7.213544549141602, 46.940184231517037 ], [ 7.216025017840309, 46.929590563153965 ], [ 7.214939813121873, 46.924629624857289 ], [ 7.212304314792277, 46.918841865159948 ], [ 7.205327995790356, 46.908713283890904 ], [ 7.205948114314026, 46.90615529992715 ], [ 7.209358758100166, 46.904889228055424 ], [ 7.214009637135007, 46.904940903999488 ], [ 7.224396599923125, 46.906284492035638 ], [ 7.275762973982069, 46.896155910766652 ], [ 7.355654738075714, 46.891246650212736 ], [ 7.360460645842124, 46.86876740229377 ], [ 7.355654738075714, 46.860602524886588 ], [ 7.346197951274405, 46.855228176339267 ], [ 7.340461866621808, 46.853057766003076 ], [ 7.334415723606753, 46.85310944284646 ], [ 7.331005079820557, 46.854556382770795 ], [ 7.329454787108716, 46.855899969907682 ], [ 7.329919875102121, 46.858509629815558 ], [ 7.328059523128502, 46.859362291436582 ], [ 7.322168409744279, 46.860085760949062 ], [ 7.314882033279218, 46.855899969907682 ], [ 7.313796827661463, 46.852851061327385 ], [ 7.316897413984464, 46.848251858236665 ], [ 7.31953291231406, 46.837968248236052 ], [ 7.319067824320598, 46.823292140719673 ], [ 7.307388950339771, 46.790167548493571 ], [ 7.30506351127201, 46.774354560314691 ], [ 7.304443393647659, 46.748180446870094 ], [ 7.306613803983851, 46.733530177775435 ], [ 7.310489535763452, 46.725933742947859 ], [ 7.312711622943027, 46.722729803837353 ], [ 7.315967237997597, 46.720714423132108 ], [ 7.333330518888317, 46.716063544097267 ], [ 7.338136426654728, 46.714048163392022 ], [ 7.346818067999436, 46.709293932468995 ], [ 7.351003859040873, 46.704177965440749 ], [ 7.354104445363873, 46.702265937522952 ], [ 7.357825148411848, 46.701361599058544 ], [ 7.362010938553965, 46.701697495842723 ], [ 7.365266553608535, 46.701232407849318 ], [ 7.368108758412461, 46.699475410461787 ], [ 7.370279167849333, 46.697330838547316 ], [ 7.372914666178872, 46.695935574567102 ], [ 7.376790398857793, 46.694721177740121 ], [ 7.381131218630799, 46.692550768303306 ], [ 7.382681512241959, 46.690793769117136 ], [ 7.38004601391242, 46.684075833432928 ], [ 7.376170282132819, 46.659322822390322 ], [ 7.378030633207118, 46.655602119342291 ], [ 7.374464958890712, 46.65213979781339 ], [ 7.36557661287037, 46.645680244547634 ], [ 7.358135206774364, 46.646093654798278 ], [ 7.349453566329032, 46.648444933187079 ], [ 7.335035842130424, 46.65058950510155 ], [ 7.330695020558721, 46.64831574197791 ], [ 7.319687941045629, 46.639608263110802 ], [ 7.323408644093661, 46.61028188739914 ], [ 7.321393263388359, 46.596277574350552 ], [ 7.319067824320598, 46.587647609849284 ], [ 7.314571974017383, 46.583358466020343 ], [ 7.310334507031882, 46.582144070092738 ], [ 7.300567660968738, 46.581808173308502 ], [ 7.283049351346449, 46.580774645433507 ], [ 7.242535028069085, 46.556073310334966 ], [ 7.212614373154793, 46.539640204531793 ], [ 7.155201856980113, 46.527599596244329 ], [ 7.145124952554511, 46.521760158804284 ], [ 7.137941928876899, 46.514732163858241 ], [ 7.122128939798699, 46.501968085158978 ], [ 7.111586948279012, 46.495870266199802 ], [ 7.10306033656525, 46.492097887207706 ], [ 7.073553093700298, 46.48966909445312 ], [ 7.06626671723518, 46.487653713747875 ], [ 7.05975548712604, 46.484914863530093 ], [ 7.042392205336, 46.474682929473602 ], [ 7.032625360172233, 46.466983140959144 ], [ 7.029473097005791, 46.463779201848638 ], [ 7.027612745931492, 46.461117865996698 ], [ 7.023581983621625, 46.452307034342141 ], [ 7.000327590246059, 46.444503893040235 ], [ 6.999397414259249, 46.44610586169614 ], [ 6.996141799204679, 46.4472944201014 ], [ 6.993971387969168, 46.450989284727711 ], [ 6.990560744182972, 46.454684150253286 ], [ 6.987460157859971, 46.459257514023022 ], [ 6.985599805886295, 46.464450995417053 ], [ 6.984824660429695, 46.4684817568276 ], [ 6.981414014844916, 46.478713690884092 ], [ 6.974696079160708, 46.49044424080904 ], [ 6.919195590903769, 46.518917954899678 ], [ 6.905501336217696, 46.522535305160204 ], [ 6.894804315067063, 46.522793688477918 ], [ 6.880231561237565, 46.511786607166187 ], [ 6.872945183873128, 46.508117580961596 ], [ 6.864418573058686, 46.505146185847764 ], [ 6.849794142385747, 46.503673408401028 ], [ 6.842197706658851, 46.504836127485248 ], [ 6.837856885986469, 46.506360581775425 ], [ 6.826539748110861, 46.517290146922733 ], [ 6.819563429108939, 46.530958564086461 ], [ 6.828090040822701, 46.542895820485683 ], [ 6.830570508622088, 46.543309230736384 ], [ 6.843748000270011, 46.543670965942283 ], [ 6.851964551822618, 46.543102525161373 ], [ 6.854289991789699, 46.542482408436399 ], [ 6.866588983394877, 46.537056383045638 ], [ 6.869844598449447, 46.538658351701542 ], [ 6.872635124611293, 46.541758938024543 ], [ 6.897594842128228, 46.561344306094838 ], [ 6.9028658378881, 46.56656362591059 ], [ 6.904726189861776, 46.56925080018425 ], [ 6.903020868418309, 46.569974269696786 ], [ 6.899300163571695, 46.569715888177655 ], [ 6.891548700012493, 46.56813975704415 ], [ 6.887207879340167, 46.56906993303096 ], [ 6.880386589969135, 46.572403063350691 ], [ 6.869069452093527, 46.580283718119063 ], [ 6.863798455434335, 46.582299098824308 ], [ 6.85987104681135, 46.583074246079548 ], [ 6.848708936767991, 46.581033026952582 ], [ 6.833981154206867, 46.580102850965773 ], [ 6.826074660117456, 46.584030260488134 ], [ 6.82018354673329, 46.584081936432199 ], [ 6.815532667698449, 46.583229274811174 ], [ 6.807006055984687, 46.580671291746683 ], [ 6.805869175322186, 46.582014878883513 ], [ 6.805869175322186, 46.585425523569029 ], [ 6.807006055984687, 46.589818020185476 ], [ 6.806799351308996, 46.593512884811787 ], [ 6.806334263315591, 46.596303411872952 ], [ 6.806179232785325, 46.598603014317632 ], [ 6.807006055984687, 46.599584866248563 ], [ 6.809486524683336, 46.600670070966999 ], [ 6.810106642307687, 46.602711290093964 ], [ 6.809176467220198, 46.607956448331379 ], [ 6.807626173609037, 46.613589179297151 ], [ 6.806024204053756, 46.624622097231963 ], [ 6.806179232785325, 46.636378486477952 ], [ 6.806799351308996, 46.640977687770032 ], [ 6.809176467220198, 46.65136465145747 ], [ 6.82111372182078, 46.652191473757512 ], [ 6.837236769261494, 46.659942939115297 ], [ 6.848553908036422, 46.661674098980484 ], [ 6.86410851379685, 46.662061673507424 ], [ 6.869844598449447, 46.662914334229129 ], [ 6.872170036617888, 46.664309597310023 ], [ 6.871549919892857, 46.665472317293563 ], [ 6.870309686442852, 46.667125962792909 ], [ 6.870619744805367, 46.668572902717244 ], [ 6.876200798927698, 46.678598131198783 ], [ 6.910772331977512, 46.713531399454496 ], [ 6.939969517379325, 46.741023260714883 ], [ 6.9436902204273, 46.749343166853635 ], [ 6.942605014809601, 46.75004079884377 ], [ 6.929892612054402, 46.752262885124026 ], [ 6.926481968268206, 46.753373928264125 ], [ 6.922761265220174, 46.755130927450296 ], [ 6.920125766890635, 46.758799954554263 ], [ 6.92136600123996, 46.760608628785178 ], [ 6.934388462357617, 46.763244127114774 ], [ 6.938419223768165, 46.765259507820019 ], [ 6.942294956447085, 46.76836009414302 ], [ 6.969270053769947, 46.795128485890871 ], [ 6.967564731427217, 46.80902944615201 ], [ 6.973300815180437, 46.819158027420997 ], [ 6.976918166340283, 46.823059596722999 ], [ 6.981414014844916, 46.825772610317699 ], [ 6.987460157859971, 46.828563137378865 ], [ 6.997382032654684, 46.836934719461681 ], [ 7.000637647709254, 46.841172187346558 ], [ 7.001412794964494, 46.844376126457064 ], [ 7.000327590246059, 46.845409654332059 ], [ 6.999087354997414, 46.845513007119564 ], [ 6.994281447231003, 46.844376126457064 ], [ 6.991490920169838, 46.845926419168904 ], [ 6.987770217121806, 46.849647122216879 ], [ 6.98513471789289, 46.858690496968848 ], [ 6.985289748423156, 46.863289700059568 ], [ 6.986995069866566, 46.867682197575334 ], [ 6.989940626558678, 46.871893826139114 ], [ 6.988855421840242, 46.876002101915446 ], [ 6.986840041134997, 46.879361069757522 ], [ 6.984514601167916, 46.881402288884487 ], [ 6.982499219563294, 46.882099920874623 ], [ 6.97955366377056, 46.881996568087118 ], [ 6.975987990353474, 46.881273098574638 ], [ 6.973145786448868, 46.880136217012762 ], [ 6.971440464106138, 46.878999335450942 ], [ 6.971285435374512, 46.876828925114751 ], [ 6.970975376112733, 46.875175278716142 ], [ 6.969890171394297, 46.873289090119385 ], [ 6.968649937044972, 46.872513942864146 ], [ 6.966479525809461, 46.872694810916755 ], [ 6.963688998748296, 46.874296780472037 ], [ 6.947410922576012, 46.889644679758135 ], [ 6.941519810091165, 46.893727118911386 ], [ 6.938264194137219, 46.895639146829126 ], [ 6.907361688191372, 46.925456448056593 ], [ 6.945860629864171, 46.947186388041359 ], [ 7.008544141798666, 46.88726756384699 ], [ 7.013505080095342, 46.880497952218718 ], [ 7.02482221797095, 46.876312161177282 ], [ 7.03913659028143, 46.862075304131963 ], [ 7.040376824630755, 46.854788926767526 ], [ 7.04146203024851, 46.85238597333398 ], [ 7.0589803398708, 46.858664659446447 ], [ 7.067506951584562, 46.865770168758274 ], [ 7.070297478645728, 46.86876740229377 ], [ 7.072932976975267, 46.872953193335206 ], [ 7.074948357680569, 46.877991645098291 ], [ 7.077428827278538, 46.887164211958805 ], [ 7.080684442333109, 46.891711738206141 ], [ 7.08440514538114, 46.894967353260711 ], [ 7.087712437279151, 46.895432441254115 ], [ 7.090347934709428, 46.894760646786381 ], [ 7.093138461770593, 46.89243520771862 ], [ 7.095153843375158, 46.891608385418635 ], [ 7.097479282442919, 46.892331854931115 ], [ 7.104920689438245, 46.898119615527833 ], [ 7.106936069244171, 46.900858465745557 ], [ 7.106315951619877, 46.902873847350122 ], [ 7.100114779873195, 46.904734199323798 ], [ 7.096704136086998, 46.90615529992715 ], [ 7.094068637757402, 46.90767975511659 ], [ 7.073243036237102, 46.937290350769047 ], [ 7.069367302658861, 46.944576728133484 ], [ 7.062390984556259, 46.978218085196431 ], [ 7.142747836643309, 46.983695787430634 ], [ 7.192563917990412, 46.997390042116706 ], [ 7.215869989108683, 47.004185493066018 ] ] ], [ [ [ 7.237419061040839, 46.941217760291352 ], [ 7.237729120302674, 46.937652085974946 ], [ 7.236488885053973, 46.936308498838116 ], [ 7.234163445986212, 46.93444814686444 ], [ 7.231062859663211, 46.93349213335523 ], [ 7.228892450226397, 46.933724677351961 ], [ 7.225946892634965, 46.933207913414435 ], [ 7.222536247949449, 46.938323880442681 ], [ 7.237419061040839, 46.941217760291352 ] ] ], [ [ [ 6.875115594209319, 46.907162991179064 ], [ 6.917438591717598, 46.878585924300921 ], [ 6.920900913246555, 46.875381985190415 ], [ 6.924001498670236, 46.871764634929946 ], [ 6.922451205958396, 46.872126370135845 ], [ 6.919970737259689, 46.87393504526608 ], [ 6.917748650979433, 46.874968574040452 ], [ 6.915733270274188, 46.875123602772021 ], [ 6.909222039265671, 46.87315989801084 ], [ 6.905811394580155, 46.871583766877336 ], [ 6.9028658378881, 46.869852607012206 ], [ 6.901005486813744, 46.866907050320094 ], [ 6.902245721163069, 46.866338609539184 ], [ 6.905811394580155, 46.866700343845764 ], [ 6.910462273614996, 46.866131903964174 ], [ 6.916353386999219, 46.864142360781273 ], [ 6.926792025731402, 46.858432115449716 ], [ 6.929892612054402, 46.855409044391877 ], [ 6.929582553691887, 46.85215342933725 ], [ 6.923536410676775, 46.845461331175443 ], [ 6.918988885328758, 46.838898424222862 ], [ 6.917128534254459, 46.835642809168291 ], [ 6.915888299005758, 46.832361354792681 ], [ 6.914958123018948, 46.828976549428205 ], [ 6.911237419970917, 46.80843516694938 ], [ 6.912787712682757, 46.805747993575039 ], [ 6.914648064656433, 46.804636949535563 ], [ 6.922141146696561, 46.807117418234213 ], [ 6.928342319342562, 46.806445623766479 ], [ 6.930047641685292, 46.804947007898079 ], [ 6.929892612054402, 46.802802435983608 ], [ 6.925861850643855, 46.798022365739541 ], [ 6.918523797335354, 46.786188463027145 ], [ 6.915423211012353, 46.784121406377778 ], [ 6.913097771944592, 46.782932847972518 ], [ 6.90534630658675, 46.781279202473172 ], [ 6.900230339558505, 46.780762438535703 ], [ 6.886122673722411, 46.781020820054778 ], [ 6.881781853949406, 46.781537583992304 ], [ 6.877286003646134, 46.783242906335033 ], [ 6.872170036617888, 46.785775050977804 ], [ 6.867829216844882, 46.787273667745524 ], [ 6.860801221898839, 46.785878403765309 ], [ 6.856305373394264, 46.785671699089619 ], [ 6.849484084023231, 46.783863023060064 ], [ 6.843748000270011, 46.781072495998842 ], [ 6.835531446918708, 46.780245672799538 ], [ 6.832275831864138, 46.780400702430427 ], [ 6.827779981560866, 46.781330878417293 ], [ 6.817237990041178, 46.784793199046874 ], [ 6.812897170268172, 46.785464993514609 ], [ 6.809176467220198, 46.785620022246178 ], [ 6.806024204053756, 46.786240138971209 ], [ 6.793466830929503, 46.790374254068524 ], [ 6.792071566949232, 46.791433621264559 ], [ 6.793001742936099, 46.793681545966535 ], [ 6.795637241265638, 46.796058660978417 ], [ 6.797497593239314, 46.798306586579656 ], [ 6.797962681232718, 46.800321967284958 ], [ 6.796412387621558, 46.802259832725099 ], [ 6.794862094909718, 46.802983303136898 ], [ 6.790521274237392, 46.802518216042813 ], [ 6.788195835169631, 46.802828274405329 ], [ 6.785715365571662, 46.804042670332933 ], [ 6.774553257326943, 46.81187165005656 ], [ 6.770987583010537, 46.819106350577613 ], [ 6.766026645613181, 46.845280463122833 ], [ 6.875115594209319, 46.907162991179064 ] ] ], [ [ [ 6.786800571189417, 46.75192698833979 ], [ 6.792588331786078, 46.747792874141794 ], [ 6.793415154985382, 46.740351467146468 ], [ 6.791761508586717, 46.732910061050461 ], [ 6.784320101591391, 46.726295478153759 ], [ 6.77935916509341, 46.722988186255748 ], [ 6.772744581297388, 46.718854072057752 ], [ 6.767783643900032, 46.720507718456417 ], [ 6.765303175201382, 46.7271223004538 ], [ 6.760342237804025, 46.730429592351754 ], [ 6.756208123606029, 46.735390529749111 ], [ 6.758688592304679, 46.740351467146468 ], [ 6.765303175201382, 46.740351467146468 ], [ 6.771917758997347, 46.746139227743129 ], [ 6.780185988292715, 46.75192698833979 ], [ 6.786800571189417, 46.75192698833979 ] ] ], [ [ [ 6.859560988448834, 46.773424384327825 ], [ 6.865348748146175, 46.76929026923051 ], [ 6.868656040044186, 46.764329331833153 ], [ 6.875270623840208, 46.762675686333807 ], [ 6.883538852236256, 46.759368394435853 ], [ 6.888499789633556, 46.75192698833979 ], [ 6.885192498634865, 46.744485582243783 ], [ 6.877751093438178, 46.734563707449126 ], [ 6.870309686442852, 46.72960276915245 ], [ 6.862868279447525, 46.7271223004538 ], [ 6.853773227852173, 46.72960276915245 ], [ 6.845504998556805, 46.73208323875042 ], [ 6.833929477363483, 46.736217352948472 ], [ 6.826488071267477, 46.734563707449126 ], [ 6.814912550074098, 46.7271223004538 ], [ 6.806644321678107, 46.726295478153759 ], [ 6.800029737882085, 46.726295478153759 ], [ 6.797549269183435, 46.730429592351754 ], [ 6.800856561081389, 46.732910061050461 ], [ 6.806644321678107, 46.736217352948472 ], [ 6.814085727774113, 46.738697822546442 ], [ 6.824834425768131, 46.742005114444453 ], [ 6.828968539966127, 46.748619696441835 ], [ 6.838063591561479, 46.756887925737146 ], [ 6.84385135215814, 46.760195218534477 ], [ 6.850465935954162, 46.766809801431179 ], [ 6.854600050152158, 46.770943916528495 ], [ 6.859560988448834, 46.773424384327825 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-OW", "NAME_1": "Obwalden" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.368151075811511, 46.789495754925099 ], [ 8.324432814322904, 46.777713528156767 ], [ 8.290894810047405, 46.761693834402934 ], [ 8.280042759265939, 46.758774116132543 ], [ 8.270275913202795, 46.759006660129216 ], [ 8.251000604394392, 46.763192451170653 ], [ 8.198704054348639, 46.767636623731164 ], [ 8.18692182758025, 46.765982978231818 ], [ 8.163357374942905, 46.759730130541072 ], [ 8.158086379183032, 46.759006660129216 ], [ 8.150593296243642, 46.760453600053552 ], [ 8.138656039844363, 46.764174303101584 ], [ 8.128424105787815, 46.769031886812115 ], [ 8.094576043149857, 46.784276435109348 ], [ 8.075352411184838, 46.787170314958018 ], [ 8.043726433927759, 46.788333034941559 ], [ 8.060004510100043, 46.80613556630334 ], [ 8.054733514340228, 46.821690172063768 ], [ 8.049772576942871, 46.82887319574138 ], [ 8.046516960988924, 46.839260159428818 ], [ 8.048842400956005, 46.844531155188633 ], [ 8.066205681846725, 46.871764634929946 ], [ 8.06977135616313, 46.886053167919329 ], [ 8.073492059211162, 46.893365382806167 ], [ 8.076747674265732, 46.898222968315338 ], [ 8.08403405073085, 46.905457668836334 ], [ 8.088219841772286, 46.9078864606916 ], [ 8.093025750438017, 46.909178371884309 ], [ 8.098658481403788, 46.909385077459319 ], [ 8.101914097357678, 46.90902334225342 ], [ 8.103774448432034, 46.9078864606916 ], [ 8.105169712412305, 46.905483507258054 ], [ 8.107495150580746, 46.904475816006084 ], [ 8.111835972152392, 46.905354316048829 ], [ 8.135710483152252, 46.926128242524328 ], [ 8.155915967947578, 46.938969834690113 ], [ 8.157466260659362, 46.943930772087413 ], [ 8.156381055940983, 46.94891754790649 ], [ 8.152608676948887, 46.957805894826151 ], [ 8.154830763229143, 46.960441393155747 ], [ 8.171573927394832, 46.967986152039259 ], [ 8.227126091595835, 46.97162933982213 ], [ 8.24402428629179, 46.974419867782672 ], [ 8.249915398776636, 46.976202704491186 ], [ 8.255186395435771, 46.978373114827377 ], [ 8.259527215208777, 46.979406642702372 ], [ 8.263557976619325, 46.979406642702372 ], [ 8.301746859929608, 46.971448473568159 ], [ 8.305002475883555, 46.969898179956999 ], [ 8.307637974213151, 46.967288520049124 ], [ 8.306087680601991, 46.962198391442598 ], [ 8.304382358259204, 46.958064277244603 ], [ 8.301591831198039, 46.953413398209761 ], [ 8.298801304136873, 46.950028591046589 ], [ 8.295545689082246, 46.946850491257123 ], [ 8.293065220383596, 46.943388169728223 ], [ 8.291669956403325, 46.936721909988137 ], [ 8.296785923431628, 46.932226061483505 ], [ 8.302832064648044, 46.928350327905264 ], [ 8.326448195028149, 46.920805569021752 ], [ 8.331409133324826, 46.917653306754687 ], [ 8.333424513130751, 46.913519192556691 ], [ 8.333269484399182, 46.886802476752848 ], [ 8.331874220418911, 46.882177436139727 ], [ 8.32706831175318, 46.870834458943079 ], [ 8.325828078303175, 46.850577298203746 ], [ 8.324277784692015, 46.841094672081454 ], [ 8.326758254289985, 46.817504381022331 ], [ 8.347377150235275, 46.797996528217197 ], [ 8.368151075811511, 46.789495754925099 ] ] ], [ [ [ 8.401068963361979, 46.76967784285813 ], [ 8.391612175661351, 46.775103868248891 ], [ 8.420137566595429, 46.781330878417293 ], [ 8.42246300566319, 46.783191230390969 ], [ 8.420602654588834, 46.786653551020549 ], [ 8.417657097896722, 46.788668931725795 ], [ 8.401999139348789, 46.793138942708026 ], [ 8.398123406669868, 46.795438544253386 ], [ 8.395177849977756, 46.798022365739541 ], [ 8.391302118198212, 46.802828274405329 ], [ 8.388046502244265, 46.805412095891484 ], [ 8.386496208633105, 46.806755683028314 ], [ 8.385566034444935, 46.80784088774675 ], [ 8.38510094555221, 46.809339505413845 ], [ 8.384170769565344, 46.813706162709195 ], [ 8.38277550558513, 46.815747381836161 ], [ 8.375282424444322, 46.819002996890788 ], [ 8.372801954846352, 46.820604967345332 ], [ 8.372801954846352, 46.823214627253208 ], [ 8.373422071571326, 46.826599433517003 ], [ 8.373112013208811, 46.8300100773032 ], [ 8.367375928556271, 46.842644964793294 ], [ 8.365980666374639, 46.847425035037304 ], [ 8.364120314400964, 46.859129747439852 ], [ 8.360709669715447, 46.863780626474693 ], [ 8.360244581722043, 46.867217109581929 ], [ 8.363965284770075, 46.87217804607991 ], [ 8.368151075811511, 46.87414175084109 ], [ 8.371716750127916, 46.87336660448517 ], [ 8.376987745887732, 46.86817312309114 ], [ 8.376987745887732, 46.864374904778003 ], [ 8.376832717156162, 46.861532700873397 ], [ 8.376057569900922, 46.859362291436582 ], [ 8.376057569900922, 46.858225409874763 ], [ 8.377969597818662, 46.857967027456311 ], [ 8.381690300866694, 46.858742173812232 ], [ 8.400758904999464, 46.867372138313499 ], [ 8.405254754403359, 46.867527167045125 ], [ 8.4099056334382, 46.866131903964174 ], [ 8.413626335586912, 46.860059923426718 ], [ 8.42401329927435, 46.85447886840501 ], [ 8.472589146272071, 46.855719102754392 ], [ 8.483131137791759, 46.856365057901087 ], [ 8.486696812108164, 46.85465973645762 ], [ 8.495120070135101, 46.85331614842147 ], [ 8.497755567565378, 46.851533311712956 ], [ 8.499460889908107, 46.849440415742549 ], [ 8.500081008431778, 46.847631741511634 ], [ 8.498840773183133, 46.84525462470117 ], [ 8.495895217390341, 46.842205716120873 ], [ 8.488402133551631, 46.836572984255781 ], [ 8.482976108160869, 46.829544990209115 ], [ 8.477240024407593, 46.816729233767092 ], [ 8.474914585339832, 46.809520372567135 ], [ 8.470573764667506, 46.803603420761249 ], [ 8.472899203735267, 46.799520982507318 ], [ 8.475379673333236, 46.797919012952036 ], [ 8.478325230025348, 46.796601264236926 ], [ 8.479255405112838, 46.794275825169166 ], [ 8.480030552368078, 46.79089101800605 ], [ 8.481735873811488, 46.785878403765309 ], [ 8.480650669093109, 46.780891628845552 ], [ 8.478635288387864, 46.776034044235701 ], [ 8.446234164774864, 46.769212754864725 ], [ 8.42633873924143, 46.77409617789624 ], [ 8.421222772213127, 46.77409617789624 ], [ 8.407890251833635, 46.772235825922621 ], [ 8.401068963361979, 46.76967784285813 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-AR", "NAME_1": "Appenzell Ausserrhoden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.486635775820389, 47.393619085952025 ], [ 9.481364780060517, 47.368478502181119 ], [ 9.488186069431549, 47.353388984414096 ], [ 9.456095005080385, 47.354060777083191 ], [ 9.349796584444789, 47.388012193407974 ], [ 9.343440383067218, 47.383826402366537 ], [ 9.343595411798788, 47.376488349058036 ], [ 9.342665235811978, 47.364034328721289 ], [ 9.337394240052106, 47.354525865076596 ], [ 9.331813185030455, 47.347549546973994 ], [ 9.323544955735088, 47.340986640021413 ], [ 9.30897220190559, 47.332873440356934 ], [ 9.305561558119393, 47.326982326972768 ], [ 9.302771030158908, 47.303547065544592 ], [ 9.304631382132584, 47.294942939465045 ], [ 9.308197056448989, 47.288845120505869 ], [ 9.315948520907511, 47.281920478347388 ], [ 9.318739047968677, 47.278768216080266 ], [ 9.320909458304868, 47.275667629757265 ], [ 9.324785190084469, 47.267761134768534 ], [ 9.326335482796253, 47.263549506204697 ], [ 9.33150312666794, 47.253110867472515 ], [ 9.314708285658867, 47.250087796414675 ], [ 9.311142612241724, 47.250242825146245 ], [ 9.308352085180559, 47.25013947235874 ], [ 9.297965122392498, 47.25551382090606 ], [ 9.267217645178164, 47.267089342099439 ], [ 9.217401563831118, 47.27153351555927 ], [ 9.208254836291644, 47.273368028211905 ], [ 9.204069045250208, 47.275073351453955 ], [ 9.196627638254881, 47.281093655148027 ], [ 9.208254836291644, 47.290498766005214 ], [ 9.201278517289722, 47.312926337080739 ], [ 9.201898634014753, 47.319256700036647 ], [ 9.203758985988372, 47.323261623924793 ], [ 9.210270216996889, 47.327964178903699 ], [ 9.213680860783086, 47.331400662010935 ], [ 9.218021680556092, 47.336852524924041 ], [ 9.216781447106086, 47.340263170508877 ], [ 9.21337080242057, 47.341865139164838 ], [ 9.209029981748245, 47.341865139164838 ], [ 9.199108106953588, 47.340211494564812 ], [ 9.186085645835874, 47.357703965765381 ], [ 9.187635939447034, 47.359693508048906 ], [ 9.200038282940397, 47.367651678981758 ], [ 9.207634717767974, 47.376695055532366 ], [ 9.217401563831118, 47.39142283809349 ], [ 9.222569206803428, 47.397417304265161 ], [ 9.225979852388264, 47.400311184113832 ], [ 9.234971551196111, 47.399225979395396 ], [ 9.27078331859525, 47.402895006499307 ], [ 9.277966343172181, 47.402843328756603 ], [ 9.294244419344466, 47.399225979395396 ], [ 9.339409620757351, 47.405427151142078 ], [ 9.375376417787436, 47.409509589396009 ], [ 9.397442253657061, 47.409302882921679 ], [ 9.40937951005634, 47.41183502936309 ], [ 9.415425653071395, 47.41643423155449 ], [ 9.417130975414182, 47.421705227314362 ], [ 9.420386589569432, 47.427803046273539 ], [ 9.425657586228624, 47.433952542076156 ], [ 9.437439812996956, 47.435761217206391 ], [ 9.445863071023894, 47.437983303486646 ], [ 9.495937533890071, 47.453227850884559 ], [ 9.516918165940581, 47.466095283270704 ], [ 9.522344191331342, 47.468110663076629 ], [ 9.52637495274189, 47.468343207073303 ], [ 9.528700391809593, 47.467283840776588 ], [ 9.530870802145785, 47.466612047208173 ], [ 9.539242384228658, 47.465216783227959 ], [ 9.542187940920712, 47.464183255352907 ], [ 9.549009230291745, 47.460152493043097 ], [ 9.552109815715426, 47.458705553118762 ], [ 9.567664422375174, 47.454519762077325 ], [ 9.608437127171669, 47.449765530254979 ], [ 9.582392204936298, 47.442504991312262 ], [ 9.567199334381769, 47.440463772185296 ], [ 9.548389112667394, 47.441238919440536 ], [ 9.548389112667394, 47.437156480287285 ], [ 9.549939406278554, 47.435089422738656 ], [ 9.581462029848808, 47.424392402487342 ], [ 9.583167352191538, 47.415245673149286 ], [ 9.540482618577983, 47.397236437111872 ], [ 9.538312209141111, 47.41126658858218 ], [ 9.543583204900983, 47.414987290730835 ], [ 9.543738233632553, 47.419457301713066 ], [ 9.542808057645743, 47.422997138507128 ], [ 9.538777297134516, 47.426924547130113 ], [ 9.534126418099675, 47.43018016218474 ], [ 9.527770216722104, 47.433745836501146 ], [ 9.523894484043183, 47.433125718876795 ], [ 9.520638868988613, 47.43131704374656 ], [ 9.517848341927447, 47.429249986197874 ], [ 9.51381757961758, 47.427441311067639 ], [ 9.511182082187304, 47.426046047986688 ], [ 9.510096876569605, 47.423720608019607 ], [ 9.509631788576144, 47.422015286576197 ], [ 9.508546583857765, 47.420361640177532 ], [ 9.508391554226819, 47.419457301713066 ], [ 9.50978681820709, 47.418449612259792 ], [ 9.512732374899144, 47.416795965861127 ], [ 9.513972609248526, 47.414677232368376 ], [ 9.511802198912335, 47.41261017481969 ], [ 9.500019972144003, 47.408734443040089 ], [ 9.48958133341182, 47.404858710361168 ], [ 9.486635775820389, 47.393619085952025 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "CH-AI", "NAME_1": "Appenzell Innerrhoden" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.608437127171669, 47.449765530254979 ], [ 9.585337761628409, 47.43415924675179 ], [ 9.583167352191538, 47.431756293318244 ], [ 9.581462029848808, 47.424392402487342 ], [ 9.549939406278554, 47.435089422738656 ], [ 9.548389112667394, 47.437156480287285 ], [ 9.548389112667394, 47.441238919440536 ], [ 9.567199334381769, 47.440463772185296 ], [ 9.582392204936298, 47.442504991312262 ], [ 9.608437127171669, 47.449765530254979 ] ] ], [ [ [ 9.488186069431549, 47.353388984414096 ], [ 9.471132846903345, 47.296441555333502 ], [ 9.45159915477717, 47.27153351555927 ], [ 9.437749871359472, 47.260991523140262 ], [ 9.423332147160863, 47.253886012929115 ], [ 9.403798455034632, 47.247038886035739 ], [ 9.375531447418325, 47.239700832727237 ], [ 9.369175246040754, 47.239907538302248 ], [ 9.360338575964477, 47.241147773550892 ], [ 9.353362257861875, 47.244196682131133 ], [ 9.344680617416543, 47.246573798042334 ], [ 9.33150312666794, 47.253110867472515 ], [ 9.326335482796253, 47.263549506204697 ], [ 9.324785190084469, 47.267761134768534 ], [ 9.320909458304868, 47.275667629757265 ], [ 9.318739047968677, 47.278768216080266 ], [ 9.315948520907511, 47.281920478347388 ], [ 9.308197056448989, 47.288845120505869 ], [ 9.304631382132584, 47.294942939465045 ], [ 9.302771030158908, 47.303547065544592 ], [ 9.305561558119393, 47.326982326972768 ], [ 9.30897220190559, 47.332873440356934 ], [ 9.323544955735088, 47.340986640021413 ], [ 9.331813185030455, 47.347549546973994 ], [ 9.337394240052106, 47.354525865076596 ], [ 9.342665235811978, 47.364034328721289 ], [ 9.343595411798788, 47.376488349058036 ], [ 9.343440383067218, 47.383826402366537 ], [ 9.349796584444789, 47.388012193407974 ], [ 9.456095005080385, 47.354060777083191 ], [ 9.488186069431549, 47.353388984414096 ] ] ], [ [ [ 9.540482618577983, 47.397236437111872 ], [ 9.52637495274189, 47.402119859244067 ], [ 9.513662550886011, 47.400776272107237 ], [ 9.486635775820389, 47.393619085952025 ], [ 9.48958133341182, 47.404858710361168 ], [ 9.500019972144003, 47.408734443040089 ], [ 9.511802198912335, 47.41261017481969 ], [ 9.513972609248526, 47.414677232368376 ], [ 9.512732374899144, 47.416795965861127 ], [ 9.50978681820709, 47.418449612259792 ], [ 9.508391554226819, 47.419457301713066 ], [ 9.508546583857765, 47.420361640177532 ], [ 9.509631788576144, 47.422015286576197 ], [ 9.510096876569605, 47.423720608019607 ], [ 9.511182082187304, 47.426046047986688 ], [ 9.51381757961758, 47.427441311067639 ], [ 9.517848341927447, 47.429249986197874 ], [ 9.520638868988613, 47.43131704374656 ], [ 9.523894484043183, 47.433125718876795 ], [ 9.527770216722104, 47.433745836501146 ], [ 9.534126418099675, 47.43018016218474 ], [ 9.538777297134516, 47.426924547130113 ], [ 9.542808057645743, 47.422997138507128 ], [ 9.543738233632553, 47.419457301713066 ], [ 9.543583204900983, 47.414987290730835 ], [ 9.538312209141111, 47.41126658858218 ], [ 9.540482618577983, 47.397236437111872 ] ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/syria.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/syria.geojson new file mode 100644 index 000000000000..ff0ed98c25b5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/syria.geojson @@ -0,0 +1,21 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "SY-X01~", "NAME_1": "UNDOF" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.757590349000111, 32.7443468580001 ], [ 35.784202921000087, 32.777948710000075 ], [ 35.834225708000076, 32.827945658000047 ], [ 35.841873820000046, 32.853577169000019 ], [ 35.838049764000118, 32.866031189000111 ], [ 35.849728638000101, 32.895822653 ], [ 35.866885213000046, 32.920782369000065 ], [ 35.874016561000076, 32.922332662000102 ], [ 35.888072550000118, 32.944941101000055 ], [ 35.864611450000041, 32.977729797000066 ], [ 35.859030395000104, 32.990209656000033 ], [ 35.845801229000131, 33.08542348200011 ], [ 35.848901815000033, 33.0986784870001 ], [ 35.811488078000082, 33.111907654 ], [ 35.811488078000082, 33.12676462900005 ], [ 35.82244348100005, 33.141569926000059 ], [ 35.833398885000122, 33.161129456000069 ], [ 35.830194946000063, 33.189990743000024 ], [ 35.80766402200004, 33.201721294000023 ], [ 35.80363326000014, 33.248462626 ], [ 35.775624634000053, 33.264895732000085 ], [ 35.768596639000123, 33.272698873000095 ], [ 35.802082967000047, 33.312489726000095 ], [ 35.763842407000141, 33.33440053300005 ], [ 35.785753215000113, 33.342875468000059 ], [ 35.79350467900008, 33.349929302000092 ], [ 35.809937785000045, 33.360032044000022 ], [ 35.812314901000036, 33.373364563000038 ], [ 35.815415487000053, 33.378868104000034 ], [ 35.8169657790001, 33.395197856000081 ], [ 35.82244348100005, 33.401373190000058 ], [ 35.821099894000099, 33.4067217 ], [ 35.845116087000065, 33.418742463000044 ], [ 35.870089152000105, 33.431242167000065 ], [ 35.873086385000136, 33.41628184000011 ], [ 35.869985799000062, 33.406928406000063 ], [ 35.861510864000081, 33.399073588000036 ], [ 35.844974405000073, 33.388996684000105 ], [ 35.834949178000045, 33.378067119000022 ], [ 35.830194946000063, 33.364760437000101 ], [ 35.830194946000063, 33.351479594000111 ], [ 35.834949178000045, 33.339025574000019 ], [ 35.84297611895272, 33.322800384230334 ], [ 35.843424113000083, 33.321894836000055 ], [ 35.845801229000131, 33.313264873000023 ], [ 35.844974405000073, 33.303885600000072 ], [ 35.840426880000052, 33.295358988000046 ], [ 35.833398885000122, 33.290630595000081 ], [ 35.826370890000135, 33.28830515600005 ], [ 35.821720011000082, 33.285979716 ], [ 35.819342895000034, 33.284429423000077 ], [ 35.820169718000045, 33.280553691000037 ], [ 35.826370890000135, 33.279804383000041 ], [ 35.835776001000056, 33.279029236000028 ], [ 35.845801229000131, 33.279029236000028 ], [ 35.851278931000081, 33.275825297000054 ], [ 35.853656047000129, 33.272698873000095 ], [ 35.854379516000051, 33.268823141000055 ], [ 35.861510864000081, 33.237558899000064 ], [ 35.866161743000134, 33.225957540000095 ], [ 35.874740031000044, 33.21575144400002 ], [ 35.885592081000141, 33.204046733000055 ], [ 35.888796021000076, 33.198594869000075 ], [ 35.888796021000076, 33.194615783000089 ], [ 35.882491496000057, 33.189241435000028 ], [ 35.882491496000057, 33.18459055600006 ], [ 35.884868611000115, 33.179061178000055 ], [ 35.888072550000118, 33.176761576000033 ], [ 35.890346313000123, 33.176761576000033 ], [ 35.896547485000099, 33.180611470000073 ], [ 35.90037154100014, 33.179810486000051 ], [ 35.905952596000134, 33.176761576000033 ], [ 35.907502889000057, 33.171309713000042 ], [ 35.911326944000109, 33.165806173000064 ], [ 35.911326944000109, 33.149424744 ], [ 35.911326944000109, 33.139270325000055 ], [ 35.91060347500013, 33.135394592000083 ], [ 35.905952596000134, 33.133069153000051 ], [ 35.90037154100014, 33.13074371300003 ], [ 35.894893839000133, 33.12828908300007 ], [ 35.891896606000046, 33.124413350000012 ], [ 35.893446900000072, 33.120511780000058 ], [ 35.897270955000067, 33.116636047 ], [ 35.902748657000075, 33.116636047 ], [ 35.902748657000075, 33.10960805200007 ], [ 35.890346313000123, 33.10960805200007 ], [ 35.868435506000139, 33.107282613000066 ], [ 35.864611450000041, 33.08154775000007 ], [ 35.877117147000035, 32.992638448000022 ], [ 35.898097778000135, 32.985532939000066 ], [ 35.923832642000036, 32.967678731000021 ], [ 35.912153768000053, 32.947292379000075 ], [ 35.890346313000123, 32.928637187 ], [ 35.86068404100007, 32.880164693000054 ], [ 35.846628052000142, 32.836472270000073 ], [ 35.846801924868942, 32.83577678037409 ], [ 35.848178344000075, 32.830271098000097 ], [ 35.842700643000057, 32.821666972000045 ], [ 35.821720011000082, 32.79590627000006 ], [ 35.815415487000053, 32.786526998000099 ], [ 35.807664021000051, 32.782625427000042 ], [ 35.791127563000146, 32.774098816000034 ], [ 35.769733520000045, 32.748053894000051 ], [ 35.763842407000141, 32.74696869000006 ], [ 35.757590349000111, 32.7443468580001 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SY-HI", "NAME_1": "Homs (Hims)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.391194296000094, 34.622487284000059 ], [ 36.367526489000056, 34.629205221000078 ], [ 36.347372680000092, 34.644139710000033 ], [ 36.323808228000075, 34.679486389000132 ], [ 36.308925415000147, 34.687547913000017 ], [ 36.288151489000086, 34.675558981000066 ], [ 36.284844197000098, 34.66791086799999 ], [ 36.284430786000087, 34.648325501000059 ], [ 36.280710083000088, 34.639127096000053 ], [ 36.271511678000081, 34.63096221900004 ], [ 36.261589803000106, 34.627241516000041 ], [ 36.201231730000075, 34.624450989000067 ], [ 36.195133911000141, 34.626207988000047 ], [ 36.183351684000115, 34.633494365000033 ], [ 36.178287394000051, 34.635303040000039 ], [ 36.172189575000061, 34.634062806000074 ], [ 36.160200643000053, 34.628068339000052 ], [ 36.155859822000139, 34.626931458000044 ], [ 36.112139913000135, 34.629532266000027 ], [ 36.112194045119054, 34.629772854233806 ], [ 36.114519484186815, 34.640108141077803 ], [ 36.116069776898655, 34.65995189156655 ], [ 36.118240187234846, 34.66682485598227 ], [ 36.186504754191049, 34.768730780900796 ], [ 36.20965579567843, 34.794724026292783 ], [ 36.211051059658644, 34.795886746276324 ], [ 36.212601353269804, 34.796894435729598 ], [ 36.21446170434416, 34.797669582984838 ], [ 36.220972935352677, 34.799142361330894 ], [ 36.224383579138816, 34.801235256401924 ], [ 36.228569370180253, 34.804723416352545 ], [ 36.244227328728243, 34.821182358778799 ], [ 36.270168898176109, 34.839837550862285 ], [ 36.273424514129999, 34.843196520503 ], [ 36.275284865204355, 34.846193753139175 ], [ 36.275594923566871, 34.848260809788542 ], [ 36.275439893935925, 34.854927070427948 ], [ 36.273579542861569, 34.864538885960769 ], [ 36.273734571593195, 34.867949531545605 ], [ 36.274354689217489, 34.872445380050237 ], [ 36.276525098654361, 34.881230374182394 ], [ 36.27823042189641, 34.885338649958726 ], [ 36.279625684977361, 34.888129177019891 ], [ 36.282261183306957, 34.890635484140262 ], [ 36.283811476018798, 34.891669012914576 ], [ 36.287067091972688, 34.893581040832373 ], [ 36.29481855643121, 34.896268215106033 ], [ 36.31316369015218, 34.900919094140875 ], [ 36.319829949892267, 34.891875719388906 ], [ 36.319984978623836, 34.888878485853411 ], [ 36.317504509925186, 34.887276516298186 ], [ 36.3157991875824, 34.885881253217235 ], [ 36.309598015835718, 34.879163315734388 ], [ 36.308822870379117, 34.876631171091674 ], [ 36.309442987104148, 34.874900011226543 ], [ 36.311458367809394, 34.874124863971247 ], [ 36.313473749413959, 34.873659775977842 ], [ 36.31564415885083, 34.873504747246272 ], [ 36.318589714643622, 34.871308499387737 ], [ 36.322930536215267, 34.867381089865376 ], [ 36.331922235023114, 34.856270657564778 ], [ 36.336573114057956, 34.852033188780638 ], [ 36.340448845837557, 34.849811103399702 ], [ 36.342619256173691, 34.850276191393107 ], [ 36.344324579415797, 34.851051336849707 ], [ 36.347270135208532, 34.853221747185842 ], [ 36.358742302715086, 34.866657620352896 ], [ 36.361532830675571, 34.868879705733832 ], [ 36.364220004949232, 34.869758205776577 ], [ 36.367630649634748, 34.870274969714046 ], [ 36.374917026999185, 34.870326646557487 ], [ 36.378947788409675, 34.868673001058141 ], [ 36.381583285839952, 34.867019355558796 ], [ 36.388714633573443, 34.857200833551587 ], [ 36.419410434843655, 34.851619778529937 ], [ 36.423027785104182, 34.852188219310847 ], [ 36.427833692870593, 34.853531806447677 ], [ 36.430159132837673, 34.856322333508842 ], [ 36.437755567665306, 34.86342784282067 ], [ 36.439460890008036, 34.865624091578525 ], [ 36.439770949269871, 34.867587796339706 ], [ 36.439770949269871, 34.876269435885717 ], [ 36.44070112525668, 34.879111639790324 ], [ 36.442716505961982, 34.882367254844894 ], [ 36.447987501721798, 34.887844957079096 ], [ 36.449847852796154, 34.891100572133666 ], [ 36.450778028782963, 34.893839423250768 ], [ 36.449847852796154, 34.900247301471779 ], [ 36.450157912057989, 34.908153795561191 ], [ 36.474704216626264, 34.930452175427547 ], [ 36.482455681984106, 34.941330063731414 ], [ 36.490517205704464, 34.950115057863627 ], [ 36.491912468785358, 34.951045233850436 ], [ 36.492997674403114, 34.951717027418852 ], [ 36.495013055108359, 34.952543849718893 ], [ 36.504314813178041, 34.954559231323458 ], [ 36.508035516226073, 34.954714260055027 ], [ 36.511136101649754, 34.954455878535953 ], [ 36.515011834328675, 34.953163967343187 ], [ 36.518422479014191, 34.951355292212952 ], [ 36.519972771726032, 34.950270087494516 ], [ 36.521213006075357, 34.949081529089256 ], [ 36.522143182062166, 34.947531236377415 ], [ 36.522763298787197, 34.945851752456406 ], [ 36.522918329317406, 34.943836370851784 ], [ 36.522453241324001, 34.941976019777485 ], [ 36.521678094068761, 34.94034821180054 ], [ 36.51950768373257, 34.937402656007748 ], [ 36.515942010315484, 34.933526923328827 ], [ 36.515166863959564, 34.931924953773603 ], [ 36.51454674723459, 34.930167955486752 ], [ 36.51454674723459, 34.928204250725571 ], [ 36.515011834328675, 34.926395574696016 ], [ 36.516252068678, 34.925181178768355 ], [ 36.518112419752356, 34.92453522452098 ], [ 36.525398797116793, 34.92412181247164 ], [ 36.527620884296368, 34.923811754109124 ], [ 36.529584588158173, 34.923294990171655 ], [ 36.531341587344343, 34.92241649012891 ], [ 36.532891880056184, 34.921331285410474 ], [ 36.533977084774619, 34.919936021430203 ], [ 36.53459720239897, 34.918153184721689 ], [ 36.534752232029859, 34.916060288751282 ], [ 36.534752232029859, 34.911616116190771 ], [ 36.536612583104215, 34.909135647492121 ], [ 36.540178257420621, 34.90660350195003 ], [ 36.549480014590984, 34.903192857264514 ], [ 36.55537112797515, 34.902133490967799 ], [ 36.559711947748156, 34.901849270127684 ], [ 36.562037387715236, 34.902417710908594 ], [ 36.565913120394157, 34.903812974888865 ], [ 36.577695347162546, 34.909781603538136 ], [ 36.600381300656466, 34.914122423311142 ], [ 36.649267206016702, 34.912597968121702 ], [ 36.727918735761023, 34.945360826041281 ], [ 36.73768558092479, 34.94840973642016 ], [ 36.739080844905061, 34.947686266008361 ], [ 36.741716343234657, 34.94742788269059 ], [ 36.745437046282632, 34.94763458916492 ], [ 36.754273716358909, 34.949288235563586 ], [ 36.762231887291762, 34.949494941138596 ], [ 36.763937208735172, 34.949004014723471 ], [ 36.767192823789742, 34.948771470726797 ], [ 36.798663771415875, 34.950683499543857 ], [ 36.802694532826422, 34.951794541784636 ], [ 36.816078729150036, 34.962052314262849 ], [ 36.821969841634882, 34.964248562121441 ], [ 36.828015984649937, 34.965411282104981 ], [ 36.837472772350566, 34.965462958049045 ], [ 36.841813592123572, 34.965876370098385 ], [ 36.846309442426787, 34.967374985966785 ], [ 36.861037224987911, 34.975462348108863 ], [ 36.867445103208922, 34.977348538504202 ], [ 36.873646274955604, 34.978330390435133 ], [ 36.884033236844402, 34.977167670451593 ], [ 36.896745639599544, 34.973989569762807 ], [ 36.911628451791614, 34.963705959762194 ], [ 36.916589390088234, 34.958331611214874 ], [ 36.917364536444154, 34.956677964816208 ], [ 36.948112013658488, 34.906448473218461 ], [ 36.972761671913588, 34.860895698177899 ], [ 36.993432244702319, 34.86686432502853 ], [ 36.999478386818055, 34.869551500201567 ], [ 37.049139439433588, 34.902598578061884 ], [ 37.055805698274355, 34.906241766744131 ], [ 37.064487338719687, 34.90830882429276 ], [ 37.081540562147211, 34.909497381798701 ], [ 37.086346469913622, 34.910840968935531 ], [ 37.089343703449117, 34.912107041706577 ], [ 37.10019575423064, 34.923863430053245 ], [ 37.103761427647726, 34.92624054596439 ], [ 37.106862013970726, 34.927661648366382 ], [ 37.111667921737194, 34.927635809944661 ], [ 37.114148390435844, 34.927377428425586 ], [ 37.116318800772035, 34.926886502010461 ], [ 37.118334180577961, 34.926188870020326 ], [ 37.123605178136415, 34.923605048534114 ], [ 37.126550733929207, 34.921537990985485 ], [ 37.128411085902883, 34.920659491842059 ], [ 37.136472608723864, 34.918023993512463 ], [ 37.144740838019231, 34.914251614520367 ], [ 37.146601189992907, 34.914665024771068 ], [ 37.147841424342232, 34.915956935963777 ], [ 37.149391717054073, 34.921744697459815 ], [ 37.152957391370478, 34.925207018089395 ], [ 37.15915856311716, 34.929754544336731 ], [ 37.182567987022935, 34.942751166133405 ], [ 37.187994012413697, 34.944689033372185 ], [ 37.193265008173569, 34.944637356528744 ], [ 37.195745476872219, 34.944327297266909 ], [ 37.19982791512615, 34.94306122539524 ], [ 37.203548618174182, 34.941381741474174 ], [ 37.206804234128072, 34.939469713556434 ], [ 37.209439731558348, 34.937299303220243 ], [ 37.210834994639242, 34.936084907292638 ], [ 37.211920200256998, 34.934689643312367 ], [ 37.215795932935919, 34.92624054596439 ], [ 37.21951663598395, 34.920349433479544 ], [ 37.221842075051711, 34.917713935149948 ], [ 37.223392367763552, 34.916602892009848 ], [ 37.226803013348388, 34.914897568767742 ], [ 37.235484652894399, 34.911641953713172 ], [ 37.247421909293678, 34.909083971548 ], [ 37.251452670704168, 34.909083971548 ], [ 37.254398228295599, 34.909549059541462 ], [ 37.260599400042281, 34.913476467265127 ], [ 37.266077101377107, 34.918230699087474 ], [ 37.267162306095543, 34.919625963067745 ], [ 37.268092482082352, 34.921176255779585 ], [ 37.269642774794193, 34.924431870834155 ], [ 37.273518508372433, 34.937454331951812 ], [ 37.274293653829034, 34.938952948719589 ], [ 37.275223829815843, 34.940425727065644 ], [ 37.276619093796114, 34.94169179893737 ], [ 37.283905471160551, 34.947324530802462 ], [ 37.285145704610557, 34.948564765151787 ], [ 37.286075880597366, 34.950063381020186 ], [ 37.288401319665127, 34.957995714430638 ], [ 37.289796583645398, 34.960657050282634 ], [ 37.292432081974994, 34.964377753330609 ], [ 37.295532668297994, 34.966263942826686 ], [ 37.29832319535916, 34.96727163317928 ], [ 37.30080366405781, 34.9676592068069 ], [ 37.311552362051827, 34.9676592068069 ], [ 37.327210320599818, 34.96442943017405 ], [ 37.330310906922819, 34.96502370937668 ], [ 37.332171257997118, 34.966238105304285 ], [ 37.332326287628064, 34.968201809166146 ], [ 37.332326287628064, 34.970294705136496 ], [ 37.332946405252358, 34.973162747462823 ], [ 37.334651726695824, 34.976573391248962 ], [ 37.339612664992501, 34.982051093483165 ], [ 37.343178338409587, 34.983963121400905 ], [ 37.346278923833268, 34.98463491496932 ], [ 37.348449334169402, 34.984118150132474 ], [ 37.350309686143078, 34.983343003776554 ], [ 37.360386589669361, 34.977658595967398 ], [ 37.367983026295633, 34.975849920837163 ], [ 37.376716342685029, 34.975023098537122 ], [ 37.384002720049466, 34.976573391248962 ], [ 37.390048862165258, 34.978898831216043 ], [ 37.398885532241479, 34.984014797345026 ], [ 37.403691440907266, 34.985771796531139 ], [ 37.407412143955241, 34.986624457252901 ], [ 37.413148227708518, 34.98654694288706 ], [ 37.426170688826232, 34.988148912442341 ], [ 37.432113478154463, 34.988174749964742 ], [ 37.439554885149789, 34.986908678093016 ], [ 37.451182082287232, 34.987425442030485 ], [ 37.456143018785269, 34.98693451651468 ], [ 37.460173781095079, 34.985720119687755 ], [ 37.461879103437866, 34.984738267756825 ], [ 37.46327436741808, 34.983549710250884 ], [ 37.472421095856873, 34.970733953808917 ], [ 37.47583173964307, 34.966806546085195 ], [ 37.478467237972609, 34.965462958049045 ], [ 37.482187941020641, 34.964171046856279 ], [ 37.490301140685062, 34.962853298141169 ], [ 37.494331902994929, 34.962930813406274 ], [ 37.497277458787664, 34.96347341576552 ], [ 37.498827752398824, 34.964377753330609 ], [ 37.49991295801658, 34.96515289968653 ], [ 37.50084313310407, 34.96592804604245 ], [ 37.502548456346176, 34.968563544372046 ], [ 37.503323601802776, 34.970268866714832 ], [ 37.503788689796181, 34.972129217789131 ], [ 37.50394371942707, 34.974170436916097 ], [ 37.503788689796181, 34.976159980098998 ], [ 37.502703485077745, 34.979932359091094 ], [ 37.498052606042904, 34.991869615490316 ], [ 37.49743248931793, 34.995900376900863 ], [ 37.497277458787664, 35.021790270404608 ], [ 37.499602898754745, 35.035639552922987 ], [ 37.500998162735016, 35.039205227239449 ], [ 37.504408807420532, 35.045613105460404 ], [ 37.505338983407341, 35.047008368541356 ], [ 37.506579216857347, 35.048300278834802 ], [ 37.510920038428992, 35.051710924419581 ], [ 37.517741326900705, 35.055715847408408 ], [ 37.537275018127559, 35.064319973487954 ], [ 37.568332553704352, 35.08256175442142 ], [ 37.574998814343758, 35.0852747671168 ], [ 37.580424838835199, 35.086747545462856 ], [ 37.589416537643103, 35.086359971835236 ], [ 37.593809035158813, 35.08659251583191 ], [ 37.607451613001501, 35.089072984530617 ], [ 37.653857048763768, 35.10258637116408 ], [ 37.736849400079734, 35.118631904238953 ], [ 37.740725131859335, 35.118631904238953 ], [ 37.743825718182336, 35.118270169033053 ], [ 37.745841098887581, 35.117546699520517 ], [ 37.752662388258614, 35.114058539569896 ], [ 37.758708530374349, 35.109691881375227 ], [ 37.770077345992718, 35.098529771331869 ], [ 37.771627638704558, 35.097418728191712 ], [ 37.774883253759128, 35.095532537796373 ], [ 37.77860395680716, 35.094033921927917 ], [ 37.782944776580166, 35.092948717209538 ], [ 37.788060743608412, 35.092431952372692 ], [ 37.807904494097102, 35.092147732431897 ], [ 37.812400344400373, 35.091062526814142 ], [ 37.814105665843783, 35.090287381357541 ], [ 37.817567987372684, 35.088297838174697 ], [ 37.818911573610194, 35.087212633456261 ], [ 37.823769159119365, 35.082019151162854 ], [ 37.826869745442366, 35.077807521699754 ], [ 37.828575066885833, 35.074655260331951 ], [ 37.829195183610807, 35.072898261145838 ], [ 37.830745477221967, 35.069642646091211 ], [ 37.831675653208833, 35.068169866845835 ], [ 37.832915886658839, 35.066800442186661 ], [ 37.83834191294892, 35.062201239995204 ], [ 37.839427117667299, 35.060857651959054 ], [ 37.840357292754845, 35.059359036090598 ], [ 37.845008171789686, 35.045096339724296 ], [ 37.846403435769901, 35.039463608758524 ], [ 37.847333611756767, 35.029024970026342 ], [ 37.850434198079768, 35.015873317699459 ], [ 37.851054314804742, 35.014090480990887 ], [ 37.851984490791608, 35.012488512334983 ], [ 37.855705193839583, 35.008767809286951 ], [ 37.864386834284971, 35.00217906301333 ], [ 37.867642450238861, 35.000318711938974 ], [ 37.867797478970431, 35.000292874416573 ], [ 37.869657830944107, 34.99931102068706 ], [ 37.926140171131976, 34.961173814220103 ], [ 37.932806430872063, 34.955282700835937 ], [ 37.941694776892405, 34.944223945378781 ], [ 37.980452100983655, 34.903244534107955 ], [ 37.986033156005306, 34.898541978229673 ], [ 37.988720331178342, 34.898283595811279 ], [ 37.991975946232913, 34.898748683804683 ], [ 37.999417352328919, 34.901332506190215 ], [ 38.001587761765791, 34.902417710908594 ], [ 38.020036249173529, 34.919315903805909 ], [ 38.021121453891965, 34.920762843730245 ], [ 38.022671746603805, 34.92412181247164 ], [ 38.023756952221561, 34.92779083957555 ], [ 38.024687127309051, 34.929444485074896 ], [ 38.026547479282726, 34.932493395453832 ], [ 38.027787712732732, 34.933836981691343 ], [ 38.028562859987971, 34.935438951246567 ], [ 38.029338006343892, 34.937092596745913 ], [ 38.029958123968242, 34.938875434353804 ], [ 38.030733270324163, 34.942983710130079 ], [ 38.030888299055732, 34.94742788269059 ], [ 38.030268182330701, 34.955696112885278 ], [ 38.030268182330701, 34.957763170433964 ], [ 38.030888299055732, 34.959675198351704 ], [ 38.031663446310972, 34.961328843851049 ], [ 38.036624382809009, 34.968744412424655 ], [ 38.04163699704975, 34.978898831216043 ], [ 38.042670525824064, 34.980552476715388 ], [ 38.048613316051672, 34.986908678093016 ], [ 38.049698520770107, 34.988303941173911 ], [ 38.050628695857597, 34.989931749150855 ], [ 38.051403843112837, 34.991766261803491 ], [ 38.052334019099703, 34.999931139210673 ], [ 38.052334019099703, 35.000189520729805 ], [ 38.052799107093108, 35.00238576948766 ], [ 38.056984898134544, 35.006649074894881 ], [ 38.084270053819921, 35.027578030102006 ], [ 38.100754835567159, 35.037913316046684 ], [ 38.232633091344042, 35.086127427838505 ], [ 38.239764439077589, 35.091398424497697 ], [ 38.243175082863786, 35.096049303532538 ], [ 38.237904087103914, 35.129432278177092 ], [ 38.238059115835483, 35.137700507472402 ], [ 38.239609409446643, 35.146485500705296 ], [ 38.24208987814535, 35.154547024425597 ], [ 38.246740757180191, 35.16542491272952 ], [ 38.250616488959793, 35.172117010891327 ], [ 38.275007764796499, 35.201779283387225 ], [ 38.284619582128016, 35.216352037216723 ], [ 38.295316603278593, 35.237177638737023 ], [ 38.299967482313434, 35.253636582961917 ], [ 38.303068067737115, 35.364973456259975 ], [ 38.301672804656164, 35.382336738050014 ], [ 38.390297886038582, 35.390915024808521 ], [ 38.68418175628301, 35.372311510467796 ], [ 39.242028842756838, 35.249269923867871 ], [ 39.342746209270103, 35.181987209741919 ], [ 39.374372185627863, 35.14922435182234 ], [ 39.437830844817597, 35.038481756827593 ], [ 39.441086459872224, 35.029283352444736 ], [ 39.441551547865629, 35.019826564744164 ], [ 39.435195347387378, 34.962155667050354 ], [ 39.435815464112352, 34.951717027418852 ], [ 39.440621371878763, 34.942415270248489 ], [ 39.444548781401124, 34.936394964755777 ], [ 39.609448276616661, 34.743125108237109 ], [ 40.172824741268755, 34.072623398850737 ], [ 40.173110824604862, 34.072282917322752 ], [ 40.101458781000076, 34.036373189000088 ], [ 39.990871216000073, 33.980976054000038 ], [ 39.880387003000124, 33.925604757000102 ], [ 39.769696085000078, 33.870233460000051 ], [ 39.65921187400005, 33.814810486000098 ], [ 39.548624308000115, 33.759490865000075 ], [ 39.438036743000055, 33.70409373000011 ], [ 39.327449178000109, 33.648722432000071 ], [ 39.216861613000049, 33.593325297000021 ], [ 39.106274048000103, 33.537928161000067 ], [ 38.995686483000043, 33.482479350000105 ], [ 38.885098918000097, 33.427108053000055 ], [ 38.774511352000047, 33.371685079000102 ], [ 38.529565063000121, 33.244250997000066 ], [ 38.31574206300013, 33.131180063000087 ], [ 38.315315383398229, 33.131466375972479 ], [ 37.908156772616962, 33.404679674327497 ], [ 37.877926060239474, 33.420492662506376 ], [ 37.852604608415902, 33.437442532247019 ], [ 37.846403435769901, 33.440594794514141 ], [ 37.836946648968649, 33.444418850349621 ], [ 37.835086296994973, 33.444883938343082 ], [ 37.833380974652243, 33.445504055068056 ], [ 37.816637811385874, 33.447726142247632 ], [ 37.806664259747777, 33.451136786033828 ], [ 37.769147170005851, 33.458991604179175 ], [ 37.753747592976993, 33.464676011988331 ], [ 37.743980746913905, 33.470592962894898 ], [ 37.715920443973289, 33.483899643953407 ], [ 37.647965936278922, 33.527876287860352 ], [ 37.580424838835199, 33.604254055380352 ], [ 37.574998814343758, 33.617819118857255 ], [ 37.571433140027352, 33.623994452182217 ], [ 37.565697056274132, 33.637275295718325 ], [ 37.564921909018892, 33.638773912486045 ], [ 37.563991733931346, 33.641254381184751 ], [ 37.562441441219505, 33.647507228875497 ], [ 37.552829623887988, 33.666653347374051 ], [ 37.546783481772252, 33.675360826241103 ], [ 37.449941847038588, 33.750188300149887 ], [ 37.440019972243874, 33.75664785431502 ], [ 37.422966749715727, 33.765329494760351 ], [ 37.342868280047071, 33.832353827367228 ], [ 37.327675408593223, 33.840880439080991 ], [ 37.320544060859675, 33.845841376478347 ], [ 37.268557570075757, 33.916844794551594 ], [ 37.267782423719837, 33.918188380789104 ], [ 37.264836867027782, 33.922632555148255 ], [ 37.25842898880677, 33.935293281060069 ], [ 37.258015577656749, 33.937205308977809 ], [ 37.257395460931775, 33.938910631320539 ], [ 37.256568637732414, 33.940564276819885 ], [ 37.255535108958099, 33.94201121674422 ], [ 37.249747349260758, 33.945344347063951 ], [ 37.229748569141123, 33.951209622026397 ], [ 37.210059849182699, 33.949065050111926 ], [ 37.199517856763634, 33.949245917265273 ], [ 37.194815300885409, 33.949969386777752 ], [ 37.184583367728237, 33.952837429104022 ], [ 37.087276645900488, 33.999940496856425 ], [ 37.086656528276137, 34.000121364909035 ], [ 37.086553176387952, 34.000198880174139 ], [ 37.086346469913622, 34.00025055611826 ], [ 37.086036410651786, 34.000302232062324 ], [ 37.08014529816694, 34.002886054447856 ], [ 37.068983189022958, 34.009784858184616 ], [ 37.034566684704714, 34.035648912367378 ], [ 37.030174188088267, 34.04244436331669 ], [ 37.027383661027102, 34.045829169580486 ], [ 37.025988397046888, 34.046940212720642 ], [ 37.021337518012047, 34.049937446256138 ], [ 37.019942254031776, 34.051022650974517 ], [ 37.016841667708775, 34.055182602694913 ], [ 37.015291374996934, 34.058153997808745 ], [ 37.014361199909445, 34.060505276197546 ], [ 37.004284294584522, 34.074612942033639 ], [ 37.002734001872682, 34.077765204300704 ], [ 36.995292595776675, 34.087428697576286 ], [ 36.994052362326613, 34.088772283813853 ], [ 36.988316277674073, 34.097841497886805 ], [ 36.97322675990705, 34.117194321960369 ], [ 36.966715528898533, 34.127865506487922 ], [ 36.960824416413686, 34.134454250962904 ], [ 36.942996046630242, 34.149905503935827 ], [ 36.928113234438172, 34.168405667287686 ], [ 36.914263950121153, 34.180007026003409 ], [ 36.892094760564703, 34.202925523494116 ], [ 36.888839146409452, 34.207085476113832 ], [ 36.888063999154213, 34.208635768825673 ], [ 36.875816685291795, 34.223647773126231 ], [ 36.870080600639199, 34.227936916955116 ], [ 36.865274692872731, 34.228143622530126 ], [ 36.85778160993334, 34.227290960909102 ], [ 36.827550896656533, 34.219513658028859 ], [ 36.792617629300139, 34.202925523494116 ], [ 36.790292189333059, 34.202357082713149 ], [ 36.781300489625892, 34.202512112344095 ], [ 36.710555453970983, 34.210186062436833 ], [ 36.692675409142794, 34.218635158885434 ], [ 36.687869499577744, 34.219255276509784 ], [ 36.664460076571231, 34.21920360056572 ], [ 36.648182000399004, 34.216619778180188 ], [ 36.623945754193187, 34.20507009540853 ], [ 36.603553891000047, 34.200100866000028 ], [ 36.59821008300014, 34.209850972000126 ], [ 36.574025512000048, 34.229746399000035 ], [ 36.567514282000104, 34.244138285000034 ], [ 36.562760051000112, 34.262948507000047 ], [ 36.570304809000049, 34.275867615000053 ], [ 36.579916626000056, 34.286900533000065 ], [ 36.581983683000146, 34.299897156 ], [ 36.57681604000004, 34.307674459000012 ], [ 36.570304809000049, 34.30896637000005 ], [ 36.562966756000094, 34.308501282000023 ], [ 36.555835408000121, 34.311085104000128 ], [ 36.545190063000121, 34.320722759000049 ], [ 36.523589314000048, 34.345889181000089 ], [ 36.518628377000141, 34.353640645 ], [ 36.515941203000068, 34.361650493000084 ], [ 36.516768026000136, 34.369867045000021 ], [ 36.519971964000092, 34.375060527000116 ], [ 36.523589314000048, 34.379788920000109 ], [ 36.5262764900001, 34.386687724000083 ], [ 36.529790487000071, 34.403094991000032 ], [ 36.530617309000093, 34.41417958600006 ], [ 36.525139608000075, 34.422938741000038 ], [ 36.509223267000039, 34.432421367000089 ], [ 36.501885213000094, 34.430302633000039 ], [ 36.494650512000078, 34.434255880000094 ], [ 36.480181111000093, 34.449138693000052 ], [ 36.463231242000063, 34.455236512000099 ], [ 36.449795369000128, 34.464538269000045 ], [ 36.439873494000039, 34.47745737700005 ], [ 36.433465617000081, 34.49417470300007 ], [ 36.433465617000081, 34.494329733000129 ], [ 36.419719686000064, 34.498334656000011 ], [ 36.392331177000074, 34.500143331000103 ], [ 36.363082316000146, 34.499032288000095 ], [ 36.343651977000093, 34.49417470300007 ], [ 36.340964803000134, 34.4934770710001 ], [ 36.338174276000075, 34.493296204000032 ], [ 36.33538374800014, 34.4934770710001 ], [ 36.332696574000124, 34.49417470300007 ], [ 36.329851247000136, 34.498603316000029 ], [ 36.319880818000115, 34.514121806 ], [ 36.336623982000049, 34.52884959 ], [ 36.364012492000086, 34.541096904000128 ], [ 36.383546183000135, 34.553809306000076 ], [ 36.388093709000145, 34.569518942000045 ], [ 36.386853475000123, 34.584246724000067 ], [ 36.3889205320001, 34.596235657000094 ], [ 36.403699992000099, 34.603832092000076 ], [ 36.41847945100011, 34.60031809500002 ], [ 36.42912479600011, 34.593186747000075 ], [ 36.43625614400014, 34.597837626000043 ], [ 36.440183553000111, 34.62936025 ], [ 36.415998983000122, 34.622900697000048 ], [ 36.391194296000094, 34.622487284000059 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SY-TA", "NAME_1": "Tartus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.060775188000036, 34.627913310000011 ], [ 36.037934204000123, 34.628430075000054 ], [ 36.016230103000112, 34.633649394000074 ], [ 35.99876346800005, 34.645379944000055 ], [ 35.991425415000094, 34.648222148000045 ], [ 35.982640422000088, 34.65023752899999 ], [ 35.969899655243296, 34.649848955419216 ], [ 35.965668165000068, 34.668443101000037 ], [ 35.947438998000052, 34.69953034100007 ], [ 35.940928582000083, 34.726223049000055 ], [ 35.931162957000083, 34.74095286700009 ], [ 35.928965691000087, 34.749823309000078 ], [ 35.928965691000087, 34.790716864000046 ], [ 35.926036004000082, 34.796942450000074 ], [ 35.908457879000082, 34.821763414000088 ], [ 35.904551629000082, 34.831773179000038 ], [ 35.899099155000044, 34.852769273000035 ], [ 35.86687259200005, 34.924221096000053 ], [ 35.872894727000073, 34.926906643000052 ], [ 35.873545769000089, 34.931626695000034 ], [ 35.879567905000044, 34.938055731000077 ], [ 35.881358269000089, 34.944973049000055 ], [ 35.879567905000044, 34.95189036700009 ], [ 35.873545769000089, 34.958319403000075 ], [ 35.873545769000089, 34.96515534100007 ], [ 35.87859134200005, 34.969549872000073 ], [ 35.878916863000086, 34.97016022300005 ], [ 35.87663821700005, 34.971665757000039 ], [ 35.873545769000089, 34.97882721600007 ], [ 35.881602410000085, 34.992865302000041 ], [ 35.887380405000044, 35.000189520000049 ], [ 35.895355665000068, 35.006781317000048 ], [ 35.900563998000052, 35.021918036000045 ], [ 35.897308790000068, 35.03656647300005 ], [ 35.891449415000068, 35.049953518000052 ], [ 35.887868686000047, 35.061346747000073 ], [ 35.887868686000047, 35.109198309000078 ], [ 35.89421634200005, 35.121079820000034 ], [ 35.941254102000073, 35.180568752000056 ], [ 35.962412957000083, 35.197943427000041 ], [ 35.953298373000052, 35.224798895000049 ], [ 35.931202663471375, 35.261491021316544 ], [ 35.931481560825375, 35.26141388584216 ], [ 35.974269647226436, 35.249579983129706 ], [ 35.9897725770428, 35.241466783465285 ], [ 36.018608026339336, 35.220899563464059 ], [ 36.025636021285322, 35.219504299483788 ], [ 36.175962761772041, 35.229219468703491 ], [ 36.179993524081851, 35.230356350265311 ], [ 36.187279901446288, 35.233198554169917 ], [ 36.201129184863987, 35.240071520384333 ], [ 36.21446170434416, 35.239037990710699 ], [ 36.252960646016959, 35.22343170810683 ], [ 36.25358076364131, 35.204414780817444 ], [ 36.265052931147807, 35.086489163044405 ], [ 36.265207960778753, 35.071115424437266 ], [ 36.256991408326826, 35.047938544528165 ], [ 36.253890822003825, 35.042202459875625 ], [ 36.250428501374245, 35.038455919305193 ], [ 36.243607212003212, 35.034606025047992 ], [ 36.240041537686807, 35.032022203561837 ], [ 36.233220249215094, 35.025407619765815 ], [ 36.229344517435493, 35.023676459001365 ], [ 36.21523685070008, 35.022668769548034 ], [ 36.21120608928959, 35.02148021114283 ], [ 36.205004916643588, 35.017630316885572 ], [ 36.201129184863987, 35.016390082536248 ], [ 36.19213748605614, 35.015227363452027 ], [ 36.187900018171263, 35.014245509722457 ], [ 36.184334343854857, 35.012772732275778 ], [ 36.178133172108176, 35.00871613244351 ], [ 36.174877557053605, 35.007036648522501 ], [ 36.171001825274004, 35.006261502166581 ], [ 36.166661003702359, 35.006390693375749 ], [ 36.157359247431316, 35.00794098608759 ], [ 36.147282342106394, 35.007527574038306 ], [ 36.136843703374211, 35.00220490233437 ], [ 36.144026727051767, 34.975333156899637 ], [ 36.190690545232428, 34.967736721172741 ], [ 36.206865268617207, 34.96711660444771 ], [ 36.245364211189383, 34.970113837083886 ], [ 36.25420088126566, 34.968460191584541 ], [ 36.260091993750507, 34.966289781248406 ], [ 36.266138136765562, 34.953887436855723 ], [ 36.270168898176109, 34.939934801549839 ], [ 36.273114454868164, 34.933630276116332 ], [ 36.275129835573409, 34.930788072211726 ], [ 36.27900556825233, 34.927661648366382 ], [ 36.304585401594977, 34.912727159330927 ], [ 36.309442987104148, 34.907637030724345 ], [ 36.31316369015218, 34.900919094140875 ], [ 36.29481855643121, 34.896268215106033 ], [ 36.287067091972688, 34.893581040832373 ], [ 36.283811476018798, 34.891669012914576 ], [ 36.282261183306957, 34.890635484140262 ], [ 36.279625684977361, 34.888129177019891 ], [ 36.27823042189641, 34.885338649958726 ], [ 36.276525098654361, 34.881230374182394 ], [ 36.274354689217489, 34.872445380050237 ], [ 36.273734571593195, 34.867949531545605 ], [ 36.273579542861569, 34.864538885960769 ], [ 36.275439893935925, 34.854927070427948 ], [ 36.275594923566871, 34.848260809788542 ], [ 36.275284865204355, 34.846193753139175 ], [ 36.273424514129999, 34.843196520503 ], [ 36.270168898176109, 34.839837550862285 ], [ 36.244227328728243, 34.821182358778799 ], [ 36.228569370180253, 34.804723416352545 ], [ 36.224383579138816, 34.801235256401924 ], [ 36.220972935352677, 34.799142361330894 ], [ 36.21446170434416, 34.797669582984838 ], [ 36.212601353269804, 34.796894435729598 ], [ 36.211051059658644, 34.795886746276324 ], [ 36.20965579567843, 34.794724026292783 ], [ 36.186504754191049, 34.768730780900796 ], [ 36.118240187234846, 34.66682485598227 ], [ 36.116069776898655, 34.65995189156655 ], [ 36.114519484186815, 34.640108141077803 ], [ 36.112194045119054, 34.629772854233806 ], [ 36.112139913000135, 34.629532266000027 ], [ 36.087233521000087, 34.631013896000056 ], [ 36.060775188000036, 34.627913310000011 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SY-RD", "NAME_1": "Rif Dimashq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.445144490000075, 34.04614003600004 ], [ 36.458890422000081, 34.046708476 ], [ 36.475220174000128, 34.053503927000051 ], [ 36.480697876000136, 34.062754008000056 ], [ 36.48266158000007, 34.074510397000054 ], [ 36.488449341000035, 34.088643901000083 ], [ 36.507983032000141, 34.109185283000087 ], [ 36.552734823000094, 34.140992127000018 ], [ 36.575885864000099, 34.17326405900009 ], [ 36.604101196000045, 34.199102275000101 ], [ 36.603553891000047, 34.200100866000028 ], [ 36.623945754193187, 34.20507009540853 ], [ 36.648182000399004, 34.216619778180188 ], [ 36.664460076571231, 34.21920360056572 ], [ 36.687869499577744, 34.219255276509784 ], [ 36.692675409142794, 34.218635158885434 ], [ 36.710555453970983, 34.210186062436833 ], [ 36.781300489625892, 34.202512112344095 ], [ 36.790292189333059, 34.202357082713149 ], [ 36.792617629300139, 34.202925523494116 ], [ 36.827550896656533, 34.219513658028859 ], [ 36.85778160993334, 34.227290960909102 ], [ 36.865274692872731, 34.228143622530126 ], [ 36.870080600639199, 34.227936916955116 ], [ 36.875816685291795, 34.223647773126231 ], [ 36.888063999154213, 34.208635768825673 ], [ 36.888839146409452, 34.207085476113832 ], [ 36.892094760564703, 34.202925523494116 ], [ 36.914263950121153, 34.180007026003409 ], [ 36.928113234438172, 34.168405667287686 ], [ 36.942996046630242, 34.149905503935827 ], [ 36.960824416413686, 34.134454250962904 ], [ 36.966715528898533, 34.127865506487922 ], [ 36.97322675990705, 34.117194321960369 ], [ 36.988316277674073, 34.097841497886805 ], [ 36.994052362326613, 34.088772283813853 ], [ 36.995292595776675, 34.087428697576286 ], [ 37.002734001872682, 34.077765204300704 ], [ 37.004284294584522, 34.074612942033639 ], [ 37.014361199909445, 34.060505276197546 ], [ 37.015291374996934, 34.058153997808745 ], [ 37.016841667708775, 34.055182602694913 ], [ 37.019942254031776, 34.051022650974517 ], [ 37.021337518012047, 34.049937446256138 ], [ 37.025988397046888, 34.046940212720642 ], [ 37.027383661027102, 34.045829169580486 ], [ 37.030174188088267, 34.04244436331669 ], [ 37.034566684704714, 34.035648912367378 ], [ 37.068983189022958, 34.009784858184616 ], [ 37.08014529816694, 34.002886054447856 ], [ 37.086036410651786, 34.000302232062324 ], [ 37.086346469913622, 34.00025055611826 ], [ 37.086553176387952, 34.000198880174139 ], [ 37.086656528276137, 34.000121364909035 ], [ 37.087276645900488, 33.999940496856425 ], [ 37.184583367728237, 33.952837429104022 ], [ 37.194815300885409, 33.949969386777752 ], [ 37.199517856763634, 33.949245917265273 ], [ 37.210059849182699, 33.949065050111926 ], [ 37.229748569141123, 33.951209622026397 ], [ 37.249747349260758, 33.945344347063951 ], [ 37.255535108958099, 33.94201121674422 ], [ 37.256568637732414, 33.940564276819885 ], [ 37.257395460931775, 33.938910631320539 ], [ 37.258015577656749, 33.937205308977809 ], [ 37.25842898880677, 33.935293281060069 ], [ 37.264836867027782, 33.922632555148255 ], [ 37.267782423719837, 33.918188380789104 ], [ 37.268557570075757, 33.916844794551594 ], [ 37.320544060859675, 33.845841376478347 ], [ 37.327675408593223, 33.840880439080991 ], [ 37.342868280047071, 33.832353827367228 ], [ 37.422966749715727, 33.765329494760351 ], [ 37.440019972243874, 33.75664785431502 ], [ 37.449941847038588, 33.750188300149887 ], [ 37.546783481772252, 33.675360826241103 ], [ 37.552829623887988, 33.666653347374051 ], [ 37.562441441219505, 33.647507228875497 ], [ 37.563991733931346, 33.641254381184751 ], [ 37.564921909018892, 33.638773912486045 ], [ 37.565697056274132, 33.637275295718325 ], [ 37.571433140027352, 33.623994452182217 ], [ 37.574998814343758, 33.617819118857255 ], [ 37.580424838835199, 33.604254055380352 ], [ 37.647965936278922, 33.527876287860352 ], [ 37.715920443973289, 33.483899643953407 ], [ 37.743980746913905, 33.470592962894898 ], [ 37.753747592976993, 33.464676011988331 ], [ 37.769147170005851, 33.458991604179175 ], [ 37.806664259747777, 33.451136786033828 ], [ 37.816637811385874, 33.447726142247632 ], [ 37.833380974652243, 33.445504055068056 ], [ 37.835086296994973, 33.444883938343082 ], [ 37.836946648968649, 33.444418850349621 ], [ 37.846403435769901, 33.440594794514141 ], [ 37.852604608415902, 33.437442532247019 ], [ 37.877926060239474, 33.420492662506376 ], [ 37.908156772616962, 33.404679674327497 ], [ 38.315315383398229, 33.131466375972479 ], [ 38.31574206300013, 33.131180063000087 ], [ 38.230875285000138, 33.086301982000052 ], [ 38.056725708000045, 32.994292095000063 ], [ 37.929394979000051, 32.925329896 ], [ 37.758035929000073, 32.832519023000103 ], [ 37.586676880000084, 32.73983734200003 ], [ 37.49460567371284, 32.690055622768739 ], [ 37.494331902994929, 32.690356349765693 ], [ 37.477537061985799, 32.708804837173489 ], [ 37.468545363177952, 32.716969712781975 ], [ 37.419814487448605, 32.747148749215398 ], [ 37.283905471160551, 32.862593899189051 ], [ 37.281269971931636, 32.866288763815362 ], [ 37.280649855206605, 32.867167262958787 ], [ 37.2801847672132, 32.868640042204163 ], [ 37.27925459212571, 32.872360745252195 ], [ 37.274758741822438, 32.918146064289431 ], [ 37.271658156398757, 32.927990423818983 ], [ 37.270262892418543, 32.931323554138714 ], [ 37.268402541344187, 32.934449977984059 ], [ 37.264216750302751, 32.94005687142743 ], [ 37.257188755356765, 32.946309719118233 ], [ 37.241375767177885, 32.950728054156343 ], [ 37.212695346612918, 32.951735745408314 ], [ 37.207889438846507, 32.950702215734623 ], [ 37.205202263673527, 32.948325099823478 ], [ 37.203651970961687, 32.947343247892547 ], [ 37.201998324563021, 32.946490587170842 ], [ 37.198225945570925, 32.945250352821517 ], [ 37.19636559359725, 32.944940294459002 ], [ 37.183498163009801, 32.949927070278022 ], [ 37.132596876944319, 32.97478343410819 ], [ 37.130736524970644, 32.980958767433151 ], [ 37.129031202627857, 32.983232530556847 ], [ 37.126550733929207, 32.984937852899577 ], [ 37.124380323593016, 32.987082423914728 ], [ 37.123450147606206, 32.988270982319932 ], [ 37.122830030881175, 32.989562893512698 ], [ 37.12158979743117, 32.991009833437033 ], [ 37.12081465017593, 32.992482611783089 ], [ 37.119419387095036, 32.995350654109359 ], [ 37.118334180577961, 32.996771754712711 ], [ 37.115698683147684, 32.99901968031395 ], [ 37.113993360804955, 33.000079047510042 ], [ 37.113838332073328, 33.000234076241611 ], [ 37.113683303341759, 33.000311591506716 ], [ 37.112443068093114, 33.001396796225151 ], [ 37.110427687387869, 33.003722236192232 ], [ 37.108257277051678, 33.006512763253397 ], [ 37.106551954708948, 33.009432481523788 ], [ 37.106086866715486, 33.010776069559938 ], [ 37.105931837983917, 33.011938787744839 ], [ 37.105621778722082, 33.017674872397436 ], [ 37.106396925977322, 33.0211888698704 ], [ 37.106551954708948, 33.023850205722397 ], [ 37.106396925977322, 33.025555528065127 ], [ 37.105931837983917, 33.027235011986193 ], [ 37.105311721258886, 33.028940335228242 ], [ 37.104381545272076, 33.030516466361803 ], [ 37.103296339654321, 33.031885891021034 ], [ 37.101901075674107, 33.033022773482173 ], [ 37.098800490250426, 33.034986477344034 ], [ 37.087173293112983, 33.040619208309806 ], [ 37.082005650140616, 33.043952337730161 ], [ 37.07937015181102, 33.046148587387393 ], [ 37.077819859099179, 33.047182115262387 ], [ 37.072703892070933, 33.049817612692664 ], [ 37.007694940169358, 33.061677353826781 ], [ 37.001803826785135, 33.061754869091942 ], [ 36.984595574626042, 33.063744412274787 ], [ 36.981184929940525, 33.065217189721523 ], [ 36.96066938678274, 33.07805878278657 ], [ 36.958033889352464, 33.080461738018755 ], [ 36.957103713365655, 33.081882839521427 ], [ 36.956328566110415, 33.083484809076651 ], [ 36.95508833176109, 33.087205512124683 ], [ 36.954313185405169, 33.091236274434493 ], [ 36.953693067780819, 33.100072944510771 ], [ 36.950902540719653, 33.108392848850883 ], [ 36.949352248007813, 33.111829331958063 ], [ 36.947956984027542, 33.113973903872534 ], [ 36.945941603322296, 33.11622182947383 ], [ 36.910698276704068, 33.146297512220372 ], [ 36.908372836736987, 33.148881333706584 ], [ 36.906822544025147, 33.152136948761154 ], [ 36.904652133689012, 33.163945013951206 ], [ 36.903566928970577, 33.167433173002507 ], [ 36.899536166660766, 33.173789374380078 ], [ 36.888374058416048, 33.184486396430032 ], [ 36.885273472093047, 33.186501777135277 ], [ 36.8562313172215, 33.199730942928625 ], [ 36.847549675876792, 33.205441189159558 ], [ 36.839333124324185, 33.212469184105544 ], [ 36.83483727402097, 33.21549225516344 ], [ 36.825535515951287, 33.223657130771926 ], [ 36.823830193608501, 33.224690660445617 ], [ 36.570874057791514, 33.193969020753684 ], [ 36.568548617824433, 33.204511013172691 ], [ 36.567928501099402, 33.220763250923255 ], [ 36.567463413105997, 33.22259776537453 ], [ 36.566843296381023, 33.224458116448886 ], [ 36.566223178756672, 33.226163437892296 ], [ 36.564362826782997, 33.229238185793633 ], [ 36.563122593332992, 33.230865993770578 ], [ 36.529171177008209, 33.263913072530272 ], [ 36.527104120358842, 33.266806952378943 ], [ 36.525398797116793, 33.269959215545327 ], [ 36.52105797734373, 33.282180690986081 ], [ 36.51950768373257, 33.285358792574186 ], [ 36.517647332658271, 33.288407701154483 ], [ 36.516252068678, 33.290268053128102 ], [ 36.514391716704324, 33.292180081045899 ], [ 36.510826043287238, 33.294763902532054 ], [ 36.506640252245802, 33.294815579375495 ], [ 36.503229607560343, 33.294453844169539 ], [ 36.486486444293973, 33.284790350893957 ], [ 36.481060418003892, 33.278847561565669 ], [ 36.477804802949265, 33.2760053567618 ], [ 36.428453809595624, 33.250244656265863 ], [ 36.428298780863997, 33.250167141000759 ], [ 36.428143752132428, 33.250089627534237 ], [ 36.424112989822618, 33.247764187567157 ], [ 36.393985630232635, 33.224690660445617 ], [ 36.390730015178065, 33.220530706926581 ], [ 36.389954867922768, 33.218902899848956 ], [ 36.389489779929363, 33.217094224718664 ], [ 36.388559604841873, 33.206293849881263 ], [ 36.388094516848469, 33.204278469176018 ], [ 36.387474400123438, 33.202495632467446 ], [ 36.386544224136628, 33.201100369386495 ], [ 36.385769076881388, 33.200325222131255 ], [ 36.383443637813627, 33.198852443785256 ], [ 36.381583285839952, 33.198180650216841 ], [ 36.37615726134851, 33.198413194213515 ], [ 36.368250767259099, 33.199550075775335 ], [ 36.342464227442122, 33.205880438731242 ], [ 36.338123406769796, 33.207844143492423 ], [ 36.335642938071089, 33.210376288135194 ], [ 36.332697381379035, 33.212650051258834 ], [ 36.322775505685001, 33.21797272386209 ], [ 36.321380242604107, 33.219212958211415 ], [ 36.320450066617241, 33.22065989813575 ], [ 36.316264275575861, 33.228566393124538 ], [ 36.315179070857425, 33.229961656205433 ], [ 36.313938835608781, 33.231150213711373 ], [ 36.310993279815989, 33.233294786525164 ], [ 36.309132927842313, 33.234044094459364 ], [ 36.304792108069307, 33.235000107968574 ], [ 36.286446974348394, 33.23709300393898 ], [ 36.283656447287171, 33.237868150294901 ], [ 36.281796096212872, 33.238720811016606 ], [ 36.280245802601712, 33.239650987003415 ], [ 36.278695509889872, 33.240736191721851 ], [ 36.277610305171436, 33.242105618179721 ], [ 36.27668012918457, 33.243630073369161 ], [ 36.276060011560276, 33.245412909178413 ], [ 36.27497480594252, 33.255722358500009 ], [ 36.274354689217489, 33.25747935588754 ], [ 36.273424514129999, 33.259055487920421 ], [ 36.272184278881355, 33.260295722269746 ], [ 36.270789014901084, 33.261458442253286 ], [ 36.269238722189243, 33.262466131706617 ], [ 36.258541701038666, 33.267194526006563 ], [ 36.25683637869588, 33.268202216359157 ], [ 36.254045850735395, 33.270372625796028 ], [ 36.249188267024863, 33.275385240036769 ], [ 36.241126743304562, 33.286986598752492 ], [ 36.23988650895518, 33.288304348366978 ], [ 36.238491244974966, 33.289389553085414 ], [ 36.23678592263218, 33.290242213807119 ], [ 36.234925570658561, 33.290862332330732 ], [ 36.231980014865769, 33.289286200297909 ], [ 36.228879429442088, 33.285901394034113 ], [ 36.224073520776358, 33.276625475285414 ], [ 36.222678256796087, 33.272207140247303 ], [ 36.222213168802682, 33.269029039558518 ], [ 36.225778843119087, 33.25789276793688 ], [ 36.226243931112492, 33.253887844048734 ], [ 36.226088902380923, 33.252001655452034 ], [ 36.225778843119087, 33.250451361840874 ], [ 36.225778843119087, 33.250296332209928 ], [ 36.225778843119087, 33.250167141000759 ], [ 36.224383579138816, 33.246213893955996 ], [ 36.222833286427033, 33.242880764535641 ], [ 36.217097201774436, 33.23419912409031 ], [ 36.213376498726404, 33.226266791579121 ], [ 36.203919711925153, 33.222365221377856 ], [ 36.162010124667518, 33.210479640922642 ], [ 36.146972283743878, 33.203787542760892 ], [ 36.142786492702442, 33.202702338042457 ], [ 36.063463169389706, 33.197250475129295 ], [ 36.061757847046977, 33.196371975086549 ], [ 36.047030063586533, 33.185390733095858 ], [ 36.040828891839851, 33.181592516581361 ], [ 36.037263218422765, 33.180145574858386 ], [ 36.031062045776764, 33.178336899728095 ], [ 36.025429314810992, 33.177587591793895 ], [ 36.006205681946653, 33.17789765105573 ], [ 35.999694451837456, 33.17921539977084 ], [ 35.996128778420371, 33.183013617184656 ], [ 35.990082635405258, 33.192599596094453 ], [ 35.986051873994768, 33.195700182417454 ], [ 35.983416374765852, 33.197327989495079 ], [ 35.961660597258742, 33.204821072434527 ], [ 35.963210890869902, 33.211487331275293 ], [ 35.963520949232418, 33.216112372787734 ], [ 35.963210890869902, 33.231279404920599 ], [ 35.964141065957392, 33.23957347353695 ], [ 35.964141065957392, 33.243940130832357 ], [ 35.963831007594877, 33.246033026802706 ], [ 35.963365919601472, 33.247893377877062 ], [ 35.961040481433031, 33.249702053007297 ], [ 35.957009718223901, 33.251536567458629 ], [ 35.944297316368022, 33.253241888902039 ], [ 35.932670119230579, 33.253732815317164 ], [ 35.909570753687319, 33.257169298424344 ], [ 35.907038608145228, 33.257040106315856 ], [ 35.904868198708357, 33.256600856744114 ], [ 35.900992466029436, 33.2551797552415 ], [ 35.899597202049222, 33.254094551422384 ], [ 35.898356967699897, 33.252854315274419 ], [ 35.897581821343977, 33.251639919346758 ], [ 35.896961704618946, 33.250218817844143 ], [ 35.896961704618946, 33.250115465056638 ], [ 35.895566440638731, 33.245955512436922 ], [ 35.89417117665846, 33.242674058960631 ], [ 35.893085971940025, 33.241252957458016 ], [ 35.892000766322269, 33.23996104626525 ], [ 35.889985385617024, 33.240555325467881 ], [ 35.887349888186748, 33.242932440479706 ], [ 35.881148716440066, 33.255024726509873 ], [ 35.880063510822367, 33.25825450314278 ], [ 35.879598422828906, 33.26019236948224 ], [ 35.879288363567127, 33.264481513311182 ], [ 35.879598422828906, 33.268667304352618 ], [ 35.880838657178288, 33.274661771423609 ], [ 35.882854037883533, 33.280346177434126 ], [ 35.884249301863747, 33.283136705394611 ], [ 35.885179477850613, 33.284686998106451 ], [ 35.88936526889205, 33.290242214706439 ], [ 35.89432620628935, 33.29528066646958 ], [ 35.89510135264527, 33.296934312868245 ], [ 35.895256382276216, 33.298665472733376 ], [ 35.884714389857209, 33.304634100483327 ], [ 35.843218214648857, 33.322695014263502 ], [ 35.84297611895272, 33.322800384230334 ], [ 35.834949178000045, 33.339025574000019 ], [ 35.830194946000063, 33.351479594000111 ], [ 35.830194946000063, 33.364760437000101 ], [ 35.834949178000045, 33.378067119000022 ], [ 35.844974405000073, 33.388996684000105 ], [ 35.861510864000081, 33.399073588000036 ], [ 35.869985799000062, 33.406928406000063 ], [ 35.873086385000136, 33.41628184000011 ], [ 35.870089152000105, 33.431242167000065 ], [ 35.888485962000118, 33.440414734000072 ], [ 35.919491821000122, 33.462351380000129 ], [ 35.935408163000034, 33.494261577000103 ], [ 35.921868937000056, 33.514570414000033 ], [ 35.933237752000082, 33.527825420000013 ], [ 35.956802205000088, 33.53420745800004 ], [ 35.98026330600004, 33.533949077000088 ], [ 35.999280233000036, 33.541261292000073 ], [ 36.019847453000068, 33.552630106000052 ], [ 36.035247029000061, 33.567797140000081 ], [ 36.038450968000063, 33.586348979000022 ], [ 36.029665975000057, 33.597640279000089 ], [ 36.012922811000124, 33.608027242 ], [ 35.994526001000111, 33.615701192000088 ], [ 35.98026330600004, 33.619008484000076 ], [ 35.956905558000074, 33.629938050000064 ], [ 35.934788045000062, 33.633400371 ], [ 35.921558878000099, 33.640299174000077 ], [ 35.92538293400014, 33.661667379000093 ], [ 35.929413697000143, 33.665078024000096 ], [ 35.942436157000145, 33.669212138000049 ], [ 35.94719038900007, 33.673087871000078 ], [ 35.949877564000076, 33.682699687000095 ], [ 35.946983683000099, 33.700838114000121 ], [ 35.948430623000093, 33.709209696000087 ], [ 35.955872030000137, 33.718123881000039 ], [ 35.974165487000107, 33.732154032000025 ], [ 35.98026330600004, 33.74354868600004 ], [ 35.994009236000068, 33.760705262 ], [ 36.027082154000084, 33.784295553 ], [ 36.040518026000086, 33.805612081000092 ], [ 36.050439901000118, 33.816438294000037 ], [ 36.066459594000037, 33.821993511000059 ], [ 36.085063111000125, 33.826050110000054 ], [ 36.102426391000051, 33.832277121000047 ], [ 36.138289836000069, 33.850622253000026 ], [ 36.144904419000056, 33.847418315000041 ], [ 36.157616821000147, 33.834059957000122 ], [ 36.165678345000117, 33.82979665200007 ], [ 36.186555623000118, 33.830210063000081 ], [ 36.202678670000068, 33.838297424000061 ], [ 36.216631307000057, 33.847754212000055 ], [ 36.231824178000068, 33.852534281000047 ], [ 36.249187459000098, 33.849743754000073 ], [ 36.300553833000095, 33.828685608000072 ], [ 36.338277629000117, 33.821192526000019 ], [ 36.357501262000142, 33.82377634700002 ], [ 36.369593547000136, 33.83700551400004 ], [ 36.367629842000099, 33.857546896000102 ], [ 36.350369914000112, 33.866409404000095 ], [ 36.311095825000052, 33.871990458000127 ], [ 36.281640259000142, 33.891110738000023 ], [ 36.275335734000123, 33.89720855700007 ], [ 36.268927856000062, 33.906768698000079 ], [ 36.2671708580001, 33.910386048000063 ], [ 36.288564901000086, 33.946507874000062 ], [ 36.302310832000046, 33.964387919000032 ], [ 36.31802046700011, 33.980510966000011 ], [ 36.35781132000011, 34.00955312100011 ], [ 36.391090943000052, 34.044718933000055 ], [ 36.412174927000081, 34.053633118000093 ], [ 36.423647095000035, 34.052806295000053 ], [ 36.445144490000075, 34.04614003600004 ] ], [ [ 36.316608920065562, 33.460690535040158 ], [ 36.320120342779546, 33.472986209945589 ], [ 36.343102069804672, 33.492437363193744 ], [ 36.352092321603322, 33.514351103020942 ], [ 36.35012570393809, 33.532893497636792 ], [ 36.351097636346822, 33.543883161778467 ], [ 36.334954653634327, 33.562111817106654 ], [ 36.307141060811261, 33.564078434771943 ], [ 36.251513876064507, 33.550312111115034 ], [ 36.221628573499856, 33.549457141833614 ], [ 36.183159865235552, 33.531488770989995 ], [ 36.190745390387463, 33.513227320984072 ], [ 36.206478331709604, 33.514912993140115 ], [ 36.23033101886142, 33.505221417634289 ], [ 36.209006839494009, 33.486537510197934 ], [ 36.214344802370704, 33.476423476362299 ], [ 36.236820432317074, 33.489066018881658 ], [ 36.297504634431334, 33.463499989233071 ], [ 36.316608920065562, 33.460690535040158 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SY-HA", "NAME_1": "Hasaka (Al Haksa)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.211200805000033, 37.324906311000106 ], [ 42.222569621000105, 37.313950908000024 ], [ 42.22380985500007, 37.302375387 ], [ 42.222156209000104, 37.292401835000064 ], [ 42.223189738000087, 37.288138530000126 ], [ 42.236832316000118, 37.286304016000102 ], [ 42.267218059000072, 37.274521790000037 ], [ 42.272902465000072, 37.276743877000015 ], [ 42.279206991000081, 37.282273255000021 ], [ 42.285821574000124, 37.28656239900009 ], [ 42.2920227460001, 37.28506378200008 ], [ 42.296363566000082, 37.27968943300003 ], [ 42.301427856000146, 37.269922587000067 ], [ 42.305768677000117, 37.264548239000092 ], [ 42.33987512200008, 37.242637431000063 ], [ 42.346696412000142, 37.239769389000074 ], [ 42.353207642000086, 37.227031149000098 ], [ 42.33532759600007, 37.171168925000032 ], [ 42.346696412000142, 37.158430685000084 ], [ 42.354551229000094, 37.152410381000053 ], [ 42.356514934000131, 37.138276876000091 ], [ 42.35723840300011, 37.109984029000103 ], [ 42.363646281000058, 37.098150127000096 ], [ 42.371191040000099, 37.087944031000021 ], [ 42.376875448000135, 37.076756083000092 ], [ 42.377185506000046, 37.062235006000051 ], [ 42.376805724000064, 37.062000619000102 ], [ 42.345869588000141, 37.042908020000098 ], [ 42.28189416500004, 36.994125468000036 ], [ 42.28189416500004, 36.99397043900008 ], [ 42.281584107000072, 36.99397043900008 ], [ 42.178437948000123, 36.90531952000002 ], [ 41.978553507000129, 36.733624573000057 ], [ 41.84378137300007, 36.6178693640001 ], [ 41.817323039000087, 36.599730937000075 ], [ 41.789934530000096, 36.589292297000028 ], [ 41.479772583000113, 36.5361172490001 ], [ 41.414866984000071, 36.52738393200012 ], [ 41.385411417000057, 36.516376851000032 ], [ 41.365360962000125, 36.494155986000081 ], [ 41.365360962000125, 36.494052633000067 ], [ 41.365257609000082, 36.49400095600005 ], [ 41.365257609000082, 36.493897603000036 ], [ 41.276994262000073, 36.35478464800012 ], [ 41.268829387000096, 36.327964580000028 ], [ 41.236583293000137, 36.077023824000051 ], [ 41.236686645000134, 36.06033233700002 ], [ 41.240614054000105, 36.043020732000016 ], [ 41.266245565000077, 35.994289856000066 ], [ 41.266348918000119, 35.994341532000092 ], [ 41.266348918000119, 35.994238180000067 ], [ 41.343656861000113, 35.857657370000041 ], [ 41.354508911000039, 35.82556630400002 ], [ 41.359263143000135, 35.792751771000027 ], [ 41.363500610000074, 35.655240784000043 ], [ 41.358022909000113, 35.623924866000053 ], [ 41.342209921000119, 35.593694153000044 ], [ 41.308457833662089, 35.552247625327652 ], [ 41.308000930398578, 35.552300523450356 ], [ 41.195966424211065, 35.565271307724629 ], [ 40.999492628581947, 35.569250393191055 ], [ 40.923011509173762, 35.582143663099544 ], [ 40.887148064931239, 35.593047389825131 ], [ 40.825394728084234, 35.60408030955864 ], [ 40.806946241575758, 35.610849921186912 ], [ 40.7749585300121, 35.626301174159835 ], [ 40.025805291780785, 36.221174424859782 ], [ 39.900748325374877, 36.324294744806593 ], [ 39.82607588109704, 36.424391995494148 ], [ 39.804526808265564, 36.463666083522924 ], [ 39.802666457191208, 36.476559353431412 ], [ 39.801426221942563, 36.480460924531997 ], [ 39.799875930130042, 36.483561509955678 ], [ 39.793364699121526, 36.491829739251045 ], [ 39.782512648340003, 36.500821438058892 ], [ 39.720242546656209, 36.529088447473839 ], [ 39.628258498331036, 36.559939277475678 ], [ 39.623452589665249, 36.560740261353942 ], [ 39.618491652267892, 36.560972805350673 ], [ 39.614150831595566, 36.560507717357268 ], [ 39.609913363710746, 36.559629218213843 ], [ 39.594255405162812, 36.554668280816486 ], [ 39.585883823079939, 36.552911282529635 ], [ 39.56759036620241, 36.551205960186905 ], [ 39.556996697839338, 36.551877752856001 ], [ 39.546764763782789, 36.553893134460566 ], [ 39.538238152968347, 36.557122911093472 ], [ 39.524750603857285, 36.566760565947334 ], [ 39.474004347422692, 36.619470527143108 ], [ 39.465167678245734, 36.636006984834466 ], [ 39.441707633000135, 36.692372694000042 ], [ 39.765251913000043, 36.742151184000065 ], [ 39.979812460000062, 36.806953431000082 ], [ 40.079237915000078, 36.854857483 ], [ 40.115204712000036, 36.864727682000066 ], [ 40.152721802000144, 36.870360413000114 ], [ 40.190135539000096, 36.884416403000031 ], [ 40.261409006000065, 36.922784683000103 ], [ 40.3937406820001, 36.994022115000107 ], [ 40.413894491000065, 37.004021505000125 ], [ 40.435185180000076, 37.010610250000113 ], [ 40.45699263500012, 37.014124247000055 ], [ 40.4798336180001, 37.015157776000038 ], [ 40.52572229000009, 37.025880636000053 ], [ 40.659460897000088, 37.085256857 ], [ 40.70896691900009, 37.100475566000043 ], [ 40.896449015000087, 37.122696432000069 ], [ 41.135090780000041, 37.084249166000021 ], [ 41.179739217000076, 37.069624736000051 ], [ 41.201339966000035, 37.064973857000084 ], [ 41.479772583000113, 37.075567526000057 ], [ 41.896365067000033, 37.154283420000027 ], [ 42.00924930900004, 37.175613099000046 ], [ 42.052967570000135, 37.196645406000059 ], [ 42.128311809000081, 37.253282776000063 ], [ 42.178541300000063, 37.306302795000065 ], [ 42.193010701000105, 37.313227437000037 ], [ 42.211200805000033, 37.324906311000106 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SY-RA", "NAME_1": "Ar Raqqah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.185855753000112, 36.659520569000037 ], [ 39.239599243000043, 36.661277567000084 ], [ 39.441707633000135, 36.692372694000042 ], [ 39.465167678245734, 36.636006984834466 ], [ 39.474004347422692, 36.619470527143108 ], [ 39.524750603857285, 36.566760565947334 ], [ 39.538238152968347, 36.557122911093472 ], [ 39.546764763782789, 36.553893134460566 ], [ 39.556996697839338, 36.551877752856001 ], [ 39.56759036620241, 36.551205960186905 ], [ 39.585883823079939, 36.552911282529635 ], [ 39.594255405162812, 36.554668280816486 ], [ 39.609913363710746, 36.559629218213843 ], [ 39.614150831595566, 36.560507717357268 ], [ 39.618491652267892, 36.560972805350673 ], [ 39.623452589665249, 36.560740261353942 ], [ 39.628258498331036, 36.559939277475678 ], [ 39.720242546656209, 36.529088447473839 ], [ 39.782512648340003, 36.500821438058892 ], [ 39.793364699121526, 36.491829739251045 ], [ 39.799875930130042, 36.483561509955678 ], [ 39.801426221942563, 36.480460924531997 ], [ 39.802666457191208, 36.476559353431412 ], [ 39.804526808265564, 36.463666083522924 ], [ 39.739207798001473, 36.227582302181474 ], [ 39.641435988180262, 35.864322821840744 ], [ 39.630945671705376, 35.802569484993739 ], [ 39.63079064297375, 35.7921308462615 ], [ 39.637715285132288, 35.789908759081925 ], [ 39.66686079279134, 35.774018256537261 ], [ 39.674973993355081, 35.770865994270196 ], [ 39.666550734428824, 35.757559312312367 ], [ 39.242028842756838, 35.249269923867871 ], [ 38.68418175628301, 35.372311510467796 ], [ 38.390297886038582, 35.390915024808521 ], [ 38.301672804656164, 35.382336738050014 ], [ 38.286324903571426, 35.401457018126848 ], [ 38.274697707333303, 35.411533922552451 ], [ 38.234803500780913, 35.435873521545773 ], [ 38.042670525824064, 35.60309845582907 ], [ 38.027942743262997, 35.618601386544753 ], [ 38.02561730329586, 35.622167059961839 ], [ 38.023446892959726, 35.626456203790724 ], [ 38.02143151225448, 35.633070786687426 ], [ 38.02081139463013, 35.638160916193328 ], [ 38.02081139463013, 35.642966823959739 ], [ 38.02639244965178, 35.678442695474018 ], [ 38.051868931106242, 35.769134833505746 ], [ 38.079929234046915, 35.824893704181079 ], [ 38.088765903223816, 35.836882636524422 ], [ 38.093726840621173, 35.842308661015863 ], [ 38.096517367682338, 35.844685776927065 ], [ 38.134706251891998, 35.889540920876755 ], [ 38.154601678324752, 35.905974025780665 ], [ 38.159717645353055, 35.911141668752975 ], [ 38.16188805478987, 35.914138902288471 ], [ 38.168864373791791, 35.928091539392994 ], [ 38.173360223195743, 35.940132148579778 ], [ 38.175065544639153, 35.942767646010054 ], [ 38.177080926243718, 35.947056789838939 ], [ 38.178631218955559, 35.952069404079737 ], [ 38.180181511667399, 35.962508042811919 ], [ 38.178786248586505, 35.968192449721755 ], [ 38.175220575169362, 35.973024196809206 ], [ 38.135171339885403, 35.999947618188003 ], [ 38.134551222261052, 36.000593574234017 ], [ 38.12183882040523, 36.018576971849768 ], [ 38.108661329656627, 36.032297064957561 ], [ 38.094191928614578, 36.044208482035799 ], [ 38.085045200175841, 36.054259548039681 ], [ 38.076053501367994, 36.068651434715946 ], [ 38.0638061866062, 36.098417059999292 ], [ 38.05977542519571, 36.114462592174846 ], [ 38.058380161215439, 36.12673574535836 ], [ 38.05977542519571, 36.134022121823421 ], [ 38.062100864263471, 36.140920925560238 ], [ 38.065976596942392, 36.14771637650955 ], [ 38.087835728136326, 36.175285753035041 ], [ 38.10023807073037, 36.198772691306658 ], [ 38.109436476012547, 36.212983709930256 ], [ 38.120133498062444, 36.225127671904488 ], [ 38.131140577575593, 36.234636135549181 ], [ 38.136721632597244, 36.238305161753772 ], [ 38.153361443975427, 36.245901598380044 ], [ 38.194599236765328, 36.262954820008929 ], [ 38.222246127656661, 36.268665066239805 ], [ 38.259608188666959, 36.269827786223345 ], [ 38.425179478350231, 36.29204865172386 ], [ 38.506828240730727, 36.328583889534855 ], [ 38.572457310256652, 36.365920112123433 ], [ 38.584394565756554, 36.374834296565496 ], [ 38.593386264564458, 36.382999173073358 ], [ 38.631420119143172, 36.429378770413905 ], [ 38.643357374643131, 36.449093328794049 ], [ 38.649713576020702, 36.466249905009079 ], [ 38.657516717322608, 36.500304674121367 ], [ 38.657516717322608, 36.500408026908872 ], [ 38.657516717322608, 36.500976466790462 ], [ 38.664958124317934, 36.52986359293044 ], [ 38.669453972822566, 36.558078925502002 ], [ 38.671004266433727, 36.625258286840449 ], [ 38.670384148809376, 36.629030666731865 ], [ 38.669298944090997, 36.632441311417381 ], [ 38.667903680110726, 36.635593574583766 ], [ 38.665423211412076, 36.638125719226537 ], [ 38.662167596357449, 36.640192775875903 ], [ 38.657930129371948, 36.641277981493602 ], [ 38.653744338330512, 36.641536363012733 ], [ 38.649558547289132, 36.640657863869308 ], [ 38.642427198656264, 36.637557278445627 ], [ 38.618242629293889, 36.620349026286533 ], [ 38.608320753599855, 36.614871324052331 ], [ 38.600207553935434, 36.612494208141186 ], [ 38.595866734162428, 36.61213247293523 ], [ 38.591525912590782, 36.61236501693196 ], [ 38.587960239173697, 36.613579412859622 ], [ 38.58470462411907, 36.615594794464187 ], [ 38.581449009064499, 36.621020819854948 ], [ 38.577883334748094, 36.629185696362754 ], [ 38.572767367719848, 36.646936549981774 ], [ 38.571992222263248, 36.655385647329751 ], [ 38.573232455713253, 36.661070055138907 ], [ 38.576643101298089, 36.662672023794869 ], [ 38.58067386180926, 36.663705553468503 ], [ 38.630955031149767, 36.669389960378339 ], [ 38.635915969446387, 36.671560369815211 ], [ 38.640566846682589, 36.675487779337516 ], [ 38.646302931335185, 36.684556993410524 ], [ 38.648318312040431, 36.69042226837297 ], [ 38.648783400033835, 36.695486559457152 ], [ 38.648163283308861, 36.699155584762423 ], [ 38.635191662665079, 36.74403945935353 ], [ 38.664130494000062, 36.719516907000028 ], [ 38.725005330000101, 36.693937073000072 ], [ 38.795388631000037, 36.686650696000086 ], [ 38.957962687000077, 36.69290354499999 ], [ 38.979976848000092, 36.698174540000124 ], [ 39.032170044000054, 36.701171774000031 ], [ 39.185855753000112, 36.659520569000037 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SY-HL", "NAME_1": "Aleppo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.224260702000038, 36.908394267000048 ], [ 38.289889770000059, 36.901702169000103 ], [ 38.479955689000121, 36.855735982000041 ], [ 38.529358358000138, 36.833721822000044 ], [ 38.635191662665079, 36.74403945935353 ], [ 38.648163283308861, 36.699155584762423 ], [ 38.648783400033835, 36.695486559457152 ], [ 38.648318312040431, 36.69042226837297 ], [ 38.646302931335185, 36.684556993410524 ], [ 38.640566846682589, 36.675487779337516 ], [ 38.635915969446387, 36.671560369815211 ], [ 38.630955031149767, 36.669389960378339 ], [ 38.58067386180926, 36.663705553468503 ], [ 38.576643101298089, 36.662672023794869 ], [ 38.573232455713253, 36.661070055138907 ], [ 38.571992222263248, 36.655385647329751 ], [ 38.572767367719848, 36.646936549981774 ], [ 38.577883334748094, 36.629185696362754 ], [ 38.581449009064499, 36.621020819854948 ], [ 38.58470462411907, 36.615594794464187 ], [ 38.587960239173697, 36.613579412859622 ], [ 38.591525912590782, 36.61236501693196 ], [ 38.595866734162428, 36.61213247293523 ], [ 38.600207553935434, 36.612494208141186 ], [ 38.608320753599855, 36.614871324052331 ], [ 38.618242629293889, 36.620349026286533 ], [ 38.642427198656264, 36.637557278445627 ], [ 38.649558547289132, 36.640657863869308 ], [ 38.653744338330512, 36.641536363012733 ], [ 38.657930129371948, 36.641277981493602 ], [ 38.662167596357449, 36.640192775875903 ], [ 38.665423211412076, 36.638125719226537 ], [ 38.667903680110726, 36.635593574583766 ], [ 38.669298944090997, 36.632441311417381 ], [ 38.670384148809376, 36.629030666731865 ], [ 38.671004266433727, 36.625258286840449 ], [ 38.669453972822566, 36.558078925502002 ], [ 38.664958124317934, 36.52986359293044 ], [ 38.657516717322608, 36.500976466790462 ], [ 38.657516717322608, 36.500408026908872 ], [ 38.657516717322608, 36.500304674121367 ], [ 38.649713576020702, 36.466249905009079 ], [ 38.643357374643131, 36.449093328794049 ], [ 38.631420119143172, 36.429378770413905 ], [ 38.593386264564458, 36.382999173073358 ], [ 38.584394565756554, 36.374834296565496 ], [ 38.572457310256652, 36.365920112123433 ], [ 38.506828240730727, 36.328583889534855 ], [ 38.425179478350231, 36.29204865172386 ], [ 38.259608188666959, 36.269827786223345 ], [ 38.222246127656661, 36.268665066239805 ], [ 38.194599236765328, 36.262954820008929 ], [ 38.153361443975427, 36.245901598380044 ], [ 38.136721632597244, 36.238305161753772 ], [ 38.131140577575593, 36.234636135549181 ], [ 38.120133498062444, 36.225127671904488 ], [ 38.109436476012547, 36.212983709930256 ], [ 38.10023807073037, 36.198772691306658 ], [ 38.087835728136326, 36.175285753035041 ], [ 38.065976596942392, 36.14771637650955 ], [ 38.062100864263471, 36.140920925560238 ], [ 38.05977542519571, 36.134022121823421 ], [ 38.058380161215439, 36.12673574535836 ], [ 38.05977542519571, 36.114462592174846 ], [ 38.0638061866062, 36.098417059999292 ], [ 38.076053501367994, 36.068651434715946 ], [ 38.085045200175841, 36.054259548039681 ], [ 38.094191928614578, 36.044208482035799 ], [ 38.108661329656627, 36.032297064957561 ], [ 38.12183882040523, 36.018576971849768 ], [ 38.134551222261052, 36.000593574234017 ], [ 38.135171339885403, 35.999947618188003 ], [ 38.175220575169362, 35.973024196809206 ], [ 38.178786248586505, 35.968192449721755 ], [ 38.180181511667399, 35.962508042811919 ], [ 38.178631218955559, 35.952069404079737 ], [ 38.177080926243718, 35.947056789838939 ], [ 38.175065544639153, 35.942767646010054 ], [ 38.173360223195743, 35.940132148579778 ], [ 38.168864373791791, 35.928091539392994 ], [ 38.16188805478987, 35.914138902288471 ], [ 38.159717645353055, 35.911141668752975 ], [ 38.154601678324752, 35.905974025780665 ], [ 38.134706251891998, 35.889540920876755 ], [ 38.096517367682338, 35.844685776927065 ], [ 38.093726840621173, 35.842308661015863 ], [ 38.088765903223816, 35.836882636524422 ], [ 38.079929234046915, 35.824893704181079 ], [ 38.051868931106242, 35.769134833505746 ], [ 38.02639244965178, 35.678442695474018 ], [ 38.02081139463013, 35.642966823959739 ], [ 38.02081139463013, 35.638160916193328 ], [ 38.02143151225448, 35.633070786687426 ], [ 38.023446892959726, 35.626456203790724 ], [ 38.02561730329586, 35.622167059961839 ], [ 38.027942743262997, 35.618601386544753 ], [ 38.042670525824064, 35.60309845582907 ], [ 38.234803500780913, 35.435873521545773 ], [ 37.808524610822133, 35.434943346458226 ], [ 37.72382693896202, 35.445201117137799 ], [ 37.67897179501233, 35.456027330396978 ], [ 37.662073602115015, 35.462150986878498 ], [ 37.595669387132489, 35.500133165513148 ], [ 37.595152622295643, 35.500443223875664 ], [ 37.575928989431304, 35.51134695150057 ], [ 37.411597934996678, 35.501605942959884 ], [ 37.353410271566759, 35.502226061483555 ], [ 37.346123895101641, 35.504008897292749 ], [ 37.33744225375699, 35.507445380399986 ], [ 37.30157881041373, 35.52713410125773 ], [ 37.21641604966095, 35.551473700251051 ], [ 37.174661492933524, 35.565658881352249 ], [ 37.169545525905278, 35.568475246835135 ], [ 37.154507684082319, 35.580593370387703 ], [ 37.148254836391573, 35.584314073435735 ], [ 37.142673781369865, 35.586872057399489 ], [ 37.134457228018618, 35.58919749646725 ], [ 37.129341261889692, 35.591574612378452 ], [ 37.09787031426356, 35.622296251171008 ], [ 37.092237583297788, 35.62911754054204 ], [ 37.088516880249813, 35.646997586269549 ], [ 37.085726353188647, 35.653689684431356 ], [ 37.079060093448504, 35.661286119258989 ], [ 37.070223423372283, 35.675910549032608 ], [ 37.055650668643409, 35.713686021192927 ], [ 37.060766635671655, 35.720662340194849 ], [ 37.066967808317656, 35.724744778448724 ], [ 37.078284946193264, 35.72872386301583 ], [ 37.08169559087878, 35.730480862202 ], [ 37.087896762625462, 35.734666653243437 ], [ 37.092754347235314, 35.738904120228938 ], [ 37.09616499192083, 35.742418117701959 ], [ 37.099885694968805, 35.748335069507846 ], [ 37.101125930217506, 35.752184963765046 ], [ 37.10174604694248, 35.756267402018977 ], [ 37.101591017311591, 35.760194811541282 ], [ 37.10097089968724, 35.763863836846554 ], [ 37.098025343894506, 35.767997951943926 ], [ 37.093064405597829, 35.772442125403757 ], [ 37.064022250726282, 35.788952745572715 ], [ 37.043868442774396, 35.804817409695659 ], [ 37.031466099281033, 35.811302802282455 ], [ 37.016221550983744, 35.813059801468626 ], [ 37.011415643217333, 35.814196682131126 ], [ 37.007229852175897, 35.815591946111397 ], [ 37.000873650798326, 35.821534736339004 ], [ 36.992967156708914, 35.831120714349481 ], [ 36.942220900274322, 35.905457261843139 ], [ 36.888684115879244, 35.969225979395389 ], [ 36.887288852798292, 35.972869168077636 ], [ 36.886668736073261, 35.976822415122342 ], [ 36.886823764804888, 35.985245673149279 ], [ 36.884808384099642, 36.016742459197133 ], [ 36.883103061756856, 36.02400299724053 ], [ 36.880932652320041, 36.03074677224572 ], [ 36.874886509304929, 36.035320136015457 ], [ 36.865274692872731, 36.041030382246333 ], [ 36.781610548887727, 36.072578844238251 ], [ 36.772618849180503, 36.077229723273092 ], [ 36.763472120741767, 36.083844306169794 ], [ 36.754273716358909, 36.092474269771685 ], [ 36.746987338994472, 36.104463202115085 ], [ 36.726213413418293, 36.126477362939909 ], [ 36.738615756911656, 36.143478909524049 ], [ 36.771998731556209, 36.165493069449553 ], [ 36.777424757846291, 36.17047984526863 ], [ 36.782075636881132, 36.176035060969241 ], [ 36.786881544647542, 36.180789292791587 ], [ 36.789206983715303, 36.182442939190253 ], [ 36.791222365319868, 36.18357981985281 ], [ 36.800989211382955, 36.18820486136525 ], [ 36.803779738444177, 36.190530300433011 ], [ 36.811221143640864, 36.198462632944143 ], [ 36.831271599704564, 36.214818224381531 ], [ 36.836232538001184, 36.220115058563067 ], [ 36.84041832904262, 36.226264553466365 ], [ 36.842123651385407, 36.229881903726834 ], [ 36.843208856103786, 36.233938504458365 ], [ 36.843053827372216, 36.239338691427463 ], [ 36.839023065062406, 36.246159979899119 ], [ 36.812771437252024, 36.273393460539751 ], [ 36.782075636881132, 36.296751206702822 ], [ 36.776649610591051, 36.305355332782369 ], [ 36.774479201154179, 36.320806585755292 ], [ 36.773238966804854, 36.324243068862529 ], [ 36.771533643562805, 36.327240302398025 ], [ 36.769363234125933, 36.33003082945919 ], [ 36.766262647802932, 36.332201239795381 ], [ 36.761146680774687, 36.332666326889466 ], [ 36.754273716358909, 36.331219386965131 ], [ 36.733344761151784, 36.318300279534242 ], [ 36.728228794123538, 36.316956692397412 ], [ 36.695775994566475, 36.317215073916486 ], [ 36.661204460617341, 36.311168931800751 ], [ 36.648761161997982, 36.305718560862886 ], [ 36.64864628100014, 36.305898743000043 ], [ 36.637070761000075, 36.316802470000098 ], [ 36.620741007000049, 36.322021790000022 ], [ 36.587771444000111, 36.324812317000081 ], [ 36.577642863000051, 36.33287384100008 ], [ 36.582190389000061, 36.333080547000023 ], [ 36.587771444000111, 36.342123922000084 ], [ 36.594282674000056, 36.357110087000066 ], [ 36.594489380000141, 36.36594675700006 ], [ 36.593352498000115, 36.373491516000101 ], [ 36.590561971000056, 36.380364482000076 ], [ 36.585704386000145, 36.38703074199999 ], [ 36.58084680200011, 36.38987294500005 ], [ 36.565033814000117, 36.395609030000017 ], [ 36.55800581900013, 36.400621643000065 ], [ 36.552734823000094, 36.408166403000038 ], [ 36.533821248000038, 36.46247833299999 ], [ 36.531237427000065, 36.479014791000068 ], [ 36.535474894000117, 36.49400095600005 ], [ 36.565343872000085, 36.532499899000115 ], [ 36.569994751000081, 36.575701396000042 ], [ 36.569271281000056, 36.62014312700002 ], [ 36.582810507000033, 36.662414449000025 ], [ 36.594696085000066, 36.685823873000075 ], [ 36.59810673000004, 36.705460918000099 ], [ 36.598933553000052, 36.724787903000063 ], [ 36.603274374000137, 36.746957093000063 ], [ 36.615676717000099, 36.766594137000098 ], [ 36.632006469000146, 36.784319153000027 ], [ 36.643271932000061, 36.803646139000065 ], [ 36.639861288000077, 36.828089091000024 ], [ 36.649163046000069, 36.828554179000051 ], [ 36.658568156000058, 36.827520651000057 ], [ 36.659562625000092, 36.827243022000104 ], [ 36.843673137000053, 36.775844218000131 ], [ 36.906821736000097, 36.772588603000045 ], [ 36.925942017000068, 36.768971253000061 ], [ 36.945889120000118, 36.762666728000042 ], [ 36.964699341000141, 36.753830058000048 ], [ 36.980098918000124, 36.742254537000107 ], [ 37.010588012000085, 36.719516907000028 ], [ 37.018442831000129, 36.70664947500002 ], [ 37.019476359000123, 36.685823873000075 ], [ 37.010794718000056, 36.653732809000061 ], [ 37.014515422000045, 36.642260641000021 ], [ 37.033325643000069, 36.628721415000044 ], [ 37.053066040000147, 36.619936422000066 ], [ 37.062367798000139, 36.622106832000057 ], [ 37.070119263000038, 36.631511943000092 ], [ 37.085622193000063, 36.644172669000042 ], [ 37.104432414000087, 36.650993957000097 ], [ 37.120968872000105, 36.64990875300002 ], [ 37.137401977000138, 36.64587799100012 ], [ 37.156108846000052, 36.643914287000072 ], [ 37.219670858000086, 36.657143453000074 ], [ 37.241891724000141, 36.658590393000068 ], [ 37.404465780000123, 36.634457500000011 ], [ 37.446116984000128, 36.634199117000051 ], [ 37.522143502026204, 36.67359952678661 ], [ 37.593394816000057, 36.710525208000078 ], [ 37.654062948000046, 36.732125957000036 ], [ 37.819737589000056, 36.760547994000078 ], [ 37.98003788200009, 36.81966583300003 ], [ 38.007943156000067, 36.825763651000088 ], [ 38.026005169000086, 36.835005625000051 ], [ 38.122974894000038, 36.884623108000071 ], [ 38.190050903000042, 36.90552622500006 ], [ 38.224260702000038, 36.908394267000048 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SY-ID", "NAME_1": "Idlib" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.593455851000044, 36.21810048499999 ], [ 36.664252563000105, 36.22900421100006 ], [ 36.67004032400007, 36.237324117000114 ], [ 36.669110148000129, 36.259855042000126 ], [ 36.665492798000116, 36.274014384000068 ], [ 36.658464803000129, 36.29049916600006 ], [ 36.648761161997982, 36.305718560862886 ], [ 36.661204460617341, 36.311168931800751 ], [ 36.695775994566475, 36.317215073916486 ], [ 36.728228794123538, 36.316956692397412 ], [ 36.733344761151784, 36.318300279534242 ], [ 36.754273716358909, 36.331219386965131 ], [ 36.761146680774687, 36.332666326889466 ], [ 36.766262647802932, 36.332201239795381 ], [ 36.769363234125933, 36.33003082945919 ], [ 36.771533643562805, 36.327240302398025 ], [ 36.773238966804854, 36.324243068862529 ], [ 36.774479201154179, 36.320806585755292 ], [ 36.776649610591051, 36.305355332782369 ], [ 36.782075636881132, 36.296751206702822 ], [ 36.812771437252024, 36.273393460539751 ], [ 36.839023065062406, 36.246159979899119 ], [ 36.843053827372216, 36.239338691427463 ], [ 36.843208856103786, 36.233938504458365 ], [ 36.842123651385407, 36.229881903726834 ], [ 36.84041832904262, 36.226264553466365 ], [ 36.836232538001184, 36.220115058563067 ], [ 36.831271599704564, 36.214818224381531 ], [ 36.811221143640864, 36.198462632944143 ], [ 36.803779738444177, 36.190530300433011 ], [ 36.800989211382955, 36.18820486136525 ], [ 36.791222365319868, 36.18357981985281 ], [ 36.789206983715303, 36.182442939190253 ], [ 36.786881544647542, 36.180789292791587 ], [ 36.782075636881132, 36.176035060969241 ], [ 36.777424757846291, 36.17047984526863 ], [ 36.771998731556209, 36.165493069449553 ], [ 36.738615756911656, 36.143478909524049 ], [ 36.726213413418293, 36.126477362939909 ], [ 36.746987338994472, 36.104463202115085 ], [ 36.754273716358909, 36.092474269771685 ], [ 36.763472120741767, 36.083844306169794 ], [ 36.772618849180503, 36.077229723273092 ], [ 36.781610548887727, 36.072578844238251 ], [ 36.865274692872731, 36.041030382246333 ], [ 36.874886509304929, 36.035320136015457 ], [ 36.880932652320041, 36.03074677224572 ], [ 36.883103061756856, 36.02400299724053 ], [ 36.884808384099642, 36.016742459197133 ], [ 36.886823764804888, 35.985245673149279 ], [ 36.886668736073261, 35.976822415122342 ], [ 36.887288852798292, 35.972869168077636 ], [ 36.888684115879244, 35.969225979395389 ], [ 36.942220900274322, 35.905457261843139 ], [ 36.992967156708914, 35.831120714349481 ], [ 37.000873650798326, 35.821534736339004 ], [ 37.007229852175897, 35.815591946111397 ], [ 37.011415643217333, 35.814196682131126 ], [ 37.016221550983744, 35.813059801468626 ], [ 37.031466099281033, 35.811302802282455 ], [ 37.043868442774396, 35.804817409695659 ], [ 37.064022250726282, 35.788952745572715 ], [ 37.093064405597829, 35.772442125403757 ], [ 37.098025343894506, 35.767997951943926 ], [ 37.10097089968724, 35.763863836846554 ], [ 37.101591017311591, 35.760194811541282 ], [ 37.10174604694248, 35.756267402018977 ], [ 37.101125930217506, 35.752184963765046 ], [ 37.099885694968805, 35.748335069507846 ], [ 37.09616499192083, 35.742418117701959 ], [ 37.092754347235314, 35.738904120228938 ], [ 37.087896762625462, 35.734666653243437 ], [ 37.08169559087878, 35.730480862202 ], [ 37.078284946193264, 35.72872386301583 ], [ 37.066967808317656, 35.724744778448724 ], [ 37.060766635671655, 35.720662340194849 ], [ 37.055650668643409, 35.713686021192927 ], [ 37.070223423372283, 35.675910549032608 ], [ 37.079060093448504, 35.661286119258989 ], [ 37.085726353188647, 35.653689684431356 ], [ 37.088516880249813, 35.646997586269549 ], [ 37.092237583297788, 35.62911754054204 ], [ 37.09787031426356, 35.622296251171008 ], [ 37.129341261889692, 35.591574612378452 ], [ 37.134457228018618, 35.58919749646725 ], [ 37.142673781369865, 35.586872057399489 ], [ 37.148254836391573, 35.584314073435735 ], [ 37.154507684082319, 35.580593370387703 ], [ 37.169545525905278, 35.568475246835135 ], [ 37.174661492933524, 35.565658881352249 ], [ 37.21641604966095, 35.551473700251051 ], [ 37.197605828845894, 35.542947089436609 ], [ 37.194815300885409, 35.539794827169544 ], [ 37.191714714562409, 35.535169786556366 ], [ 37.181017694311095, 35.514214992927577 ], [ 37.156368036055994, 35.478325711162597 ], [ 37.150321893040882, 35.471814480154137 ], [ 37.143293898094896, 35.468429673890341 ], [ 37.122675002149606, 35.460910753428493 ], [ 37.109652541031949, 35.454373683998313 ], [ 37.103916457278672, 35.449541937810181 ], [ 37.098800490250426, 35.442255561345064 ], [ 37.079525181441966, 35.407968248236045 ], [ 37.07688968311237, 35.401146958865013 ], [ 37.076269566387339, 35.396909491879512 ], [ 37.076579623850535, 35.392982083256527 ], [ 37.077819859099179, 35.38972646730258 ], [ 37.080455357428775, 35.387194321760546 ], [ 37.083710971584026, 35.385178941055244 ], [ 37.087896762625462, 35.383912869183519 ], [ 37.092754347235314, 35.383370265925009 ], [ 37.097405226270155, 35.383680325186845 ], [ 37.101435987680645, 35.384662177117775 ], [ 37.105001661997107, 35.386315823516441 ], [ 37.107792189058273, 35.388692939427585 ], [ 37.109962599394407, 35.391483466488751 ], [ 37.115853712778573, 35.401198634809134 ], [ 37.118489211108169, 35.403937485926235 ], [ 37.121124709437765, 35.40631460183738 ], [ 37.124225294861446, 35.408174953811056 ], [ 37.128101026641048, 35.408898424222855 ], [ 37.132286817682484, 35.408174953811056 ], [ 37.135542432737054, 35.406469631468269 ], [ 37.138332960697539, 35.404144192400565 ], [ 37.140193311771895, 35.401301988495959 ], [ 37.14143354702054, 35.397994697497268 ], [ 37.142673781369865, 35.39050161455782 ], [ 37.142053663745571, 35.348850408819317 ], [ 37.140503371033731, 35.34600820581403 ], [ 37.13740278471073, 35.345853176183141 ], [ 37.133527052931129, 35.347015896166681 ], [ 37.128876173896288, 35.347971910575211 ], [ 37.124380323593016, 35.348436998568616 ], [ 37.120349562182525, 35.347791043421921 ], [ 37.116628859134494, 35.346524969751556 ], [ 37.113373244079924, 35.34469045709892 ], [ 37.110272657756923, 35.342649237971955 ], [ 37.104536574003646, 35.336732286166068 ], [ 37.096320020652399, 35.325234280237794 ], [ 37.093167759284654, 35.32270213469576 ], [ 37.089033644187282, 35.320790106777963 ], [ 37.083245883590621, 35.319084784435233 ], [ 37.078129916562375, 35.318361314023377 ], [ 37.057200962254569, 35.319084784435233 ], [ 37.034670038391539, 35.316862698154978 ], [ 37.025058221060021, 35.316836859733257 ], [ 37.02040734202518, 35.317637844510898 ], [ 37.016221550983744, 35.318981432547048 ], [ 37.012500847935769, 35.320867621143805 ], [ 37.009555291243657, 35.323167222689165 ], [ 37.007694940169358, 35.326009425694394 ], [ 37.006609734551603, 35.329368395335166 ], [ 37.006454705819976, 35.341615709197583 ], [ 37.005989617826572, 35.345491440977185 ], [ 37.002423944409486, 35.359547430869213 ], [ 37.002113885147651, 35.363319810760629 ], [ 37.002268914778597, 35.367298896227055 ], [ 37.003354120396295, 35.371148790484256 ], [ 37.012965935929174, 35.387711087496655 ], [ 37.014206170278499, 35.39166433454136 ], [ 37.014826287902849, 35.395824286261757 ], [ 37.014981316634419, 35.399932562937408 ], [ 37.014206170278499, 35.407554837086025 ], [ 37.013431023922578, 35.411275540134056 ], [ 37.012035759942364, 35.414556992711027 ], [ 37.010330437599578, 35.417528387824802 ], [ 37.008315056894332, 35.420370591729409 ], [ 37.005834588195682, 35.422980252536604 ], [ 37.002578973141055, 35.424995632342529 ], [ 36.997618035743756, 35.425899969907675 ], [ 36.994362419789809, 35.424504705927404 ], [ 36.991571892728643, 35.421920885340569 ], [ 36.983355340276717, 35.409518540947886 ], [ 36.979789665960311, 35.405849513843975 ], [ 36.958033889352464, 35.388227851434181 ], [ 36.940515577931535, 35.366136176243515 ], [ 36.93446943491648, 35.362725532457318 ], [ 36.927648146444767, 35.360710150852753 ], [ 36.92036176908033, 35.360245062859349 ], [ 36.910233188710663, 35.358668931725788 ], [ 36.904032016963981, 35.358410549307393 ], [ 36.899846225922545, 35.359857490131049 ], [ 36.897520785955464, 35.362415473195483 ], [ 36.895660434881165, 35.36528351552181 ], [ 36.893024936551569, 35.36773814489942 ], [ 36.882327915400936, 35.373241686454662 ], [ 36.879072300346365, 35.375257066260588 ], [ 36.876436802016769, 35.377582506227668 ], [ 36.872406039706959, 35.383318589980945 ], [ 36.870855746995119, 35.386548367513114 ], [ 36.866928338372077, 35.392284451266391 ], [ 36.837007684357104, 35.414324448714297 ], [ 36.833286981309129, 35.415874742325457 ], [ 36.828946160636804, 35.417037462308997 ], [ 36.824450311232852, 35.417270006305728 ], [ 36.81979943219801, 35.417037462308997 ], [ 36.699393344827001, 35.390088202508537 ], [ 36.647871942036488, 35.391586819276256 ], [ 36.581105990948686, 35.40667633704328 ], [ 36.571184116154029, 35.407761541761715 ], [ 36.551960484188953, 35.40672801388672 ], [ 36.541883578864031, 35.407348131511014 ], [ 36.53707767109762, 35.408174953811056 ], [ 36.532891880056184, 35.409621893735391 ], [ 36.529584588158173, 35.411740628127461 ], [ 36.527104120358842, 35.414169419982727 ], [ 36.525088738754278, 35.417037462308997 ], [ 36.523383416411491, 35.419983019001108 ], [ 36.520747918081952, 35.4263908963228 ], [ 36.517337274295755, 35.432462876860257 ], [ 36.514701775966159, 35.434943346458226 ], [ 36.511446160911589, 35.436907050320087 ], [ 36.493772820759034, 35.44411591241942 ], [ 36.487106561018948, 35.44600210191544 ], [ 36.482455681984106, 35.445511176399634 ], [ 36.447677443359282, 35.431584377716831 ], [ 36.426128371427183, 35.436596991957572 ], [ 36.419617140418666, 35.442591458129243 ], [ 36.414656203021309, 35.460006414964084 ], [ 36.392900424614879, 35.500133165513148 ], [ 36.392900424614879, 35.500598253506553 ], [ 36.393830600601689, 35.50367300140789 ], [ 36.395845982206311, 35.505895086788826 ], [ 36.398016391643125, 35.509874173154572 ], [ 36.399721713985912, 35.515196844858508 ], [ 36.391350131903039, 35.58268626635811 ], [ 36.393365512608284, 35.600462958398793 ], [ 36.407473179343754, 35.654516505832078 ], [ 36.413829379822005, 35.698389797850894 ], [ 36.412279087110164, 35.71120555339354 ], [ 36.405147739376673, 35.714822902754747 ], [ 36.361532830675571, 35.715908108372503 ], [ 36.347890251933563, 35.719473781789588 ], [ 36.346029900859207, 35.722471015325084 ], [ 36.344789665610563, 35.725726630379654 ], [ 36.343859491422393, 35.729163113486891 ], [ 36.341844109817771, 35.733271389263166 ], [ 36.339208612387552, 35.737612209935492 ], [ 36.333627557365844, 35.743348293688769 ], [ 36.329906854317869, 35.745777086443354 ], [ 36.325876092008002, 35.747094835158521 ], [ 36.321535272234996, 35.747094835158521 ], [ 36.31734948119356, 35.746397203168385 ], [ 36.313628778145585, 35.745053616031555 ], [ 36.310063103829179, 35.743322455267048 ], [ 36.298229201116726, 35.739989324947373 ], [ 36.285361768730638, 35.739007473016443 ], [ 36.277610305171436, 35.739834296215804 ], [ 36.270013869444483, 35.741798000976928 ], [ 36.265828078403047, 35.744071764100624 ], [ 36.261952345724183, 35.74670726243022 ], [ 36.259626905757045, 35.74895518623282 ], [ 36.254820997990635, 35.755931505234742 ], [ 36.279935744239197, 35.769806627074161 ], [ 36.287532179966092, 35.777893989216182 ], [ 36.288462355053639, 35.781769720995783 ], [ 36.288462355053639, 35.785877996772115 ], [ 36.287067091972688, 35.789727891928635 ], [ 36.283501417656282, 35.793577786185836 ], [ 36.279470656245792, 35.795748196522027 ], [ 36.274664747580005, 35.796885077184527 ], [ 36.206555210254749, 35.794042874179297 ], [ 36.198338656903445, 35.792544257411521 ], [ 36.189760370144938, 35.789857083137861 ], [ 36.184179315123288, 35.788978583095115 ], [ 36.176427849765446, 35.7886685247326 ], [ 36.162010124667518, 35.78980540629442 ], [ 36.155188836195805, 35.791872463843106 ], [ 36.150848016422799, 35.794714666848392 ], [ 36.149762810805044, 35.798021958746403 ], [ 36.149452752442528, 35.801639309006873 ], [ 36.150227898798448, 35.805360012054905 ], [ 36.151778192409608, 35.809003200737095 ], [ 36.153173456389879, 35.811716214331796 ], [ 36.155343865826751, 35.817297268454126 ], [ 36.155963982551725, 35.818434150016003 ], [ 36.155307556598416, 35.822232044573184 ], [ 36.157616821000147, 35.822569072000121 ], [ 36.168778931000077, 35.852076315000048 ], [ 36.174876749000134, 35.922666321000108 ], [ 36.196890909000103, 35.951708476000093 ], [ 36.229033651000123, 35.961165263000069 ], [ 36.253114868000068, 35.955635885000063 ], [ 36.269031209000104, 35.958736471000108 ], [ 36.2774027910001, 35.99403147400001 ], [ 36.277506144000085, 35.994238180000067 ], [ 36.297349894000092, 36.000749411000029 ], [ 36.336727335000091, 35.988243713000131 ], [ 36.358018026000082, 35.993979798000098 ], [ 36.355537557000105, 36.022401835000025 ], [ 36.358638143000064, 36.16699249300008 ], [ 36.360498494000069, 36.181668600000094 ], [ 36.366286255000034, 36.189213358000032 ], [ 36.374451131000058, 36.195879619000053 ], [ 36.375794719000112, 36.204509583000075 ], [ 36.361428670000123, 36.21815216 ], [ 36.373004191000064, 36.227608948000054 ], [ 36.385613241000101, 36.215464986000072 ], [ 36.398118937000049, 36.208230286000102 ], [ 36.411864868000123, 36.204457907000076 ], [ 36.439253377000057, 36.201408997000058 ], [ 36.445247843000061, 36.199910380000048 ], [ 36.450725545000068, 36.199910380000048 ], [ 36.45920048000005, 36.203114320000012 ], [ 36.463954712000145, 36.208798726000069 ], [ 36.46529829900004, 36.215930074000099 ], [ 36.46891564900011, 36.222389628000045 ], [ 36.480181111000093, 36.22554189100002 ], [ 36.498577922000095, 36.227867331000041 ], [ 36.574438925000095, 36.218358867000049 ], [ 36.593455851000044, 36.21810048499999 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SY-LA", "NAME_1": "Lattakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.138496541000052, 35.819778545000062 ], [ 36.155307556598416, 35.822232044573184 ], [ 36.155963982551725, 35.818434150016003 ], [ 36.155343865826751, 35.817297268454126 ], [ 36.153173456389879, 35.811716214331796 ], [ 36.151778192409608, 35.809003200737095 ], [ 36.150227898798448, 35.805360012054905 ], [ 36.149452752442528, 35.801639309006873 ], [ 36.149762810805044, 35.798021958746403 ], [ 36.150848016422799, 35.794714666848392 ], [ 36.155188836195805, 35.791872463843106 ], [ 36.162010124667518, 35.78980540629442 ], [ 36.176427849765446, 35.7886685247326 ], [ 36.184179315123288, 35.788978583095115 ], [ 36.189760370144938, 35.789857083137861 ], [ 36.198338656903445, 35.792544257411521 ], [ 36.206555210254749, 35.794042874179297 ], [ 36.274664747580005, 35.796885077184527 ], [ 36.279470656245792, 35.795748196522027 ], [ 36.283501417656282, 35.793577786185836 ], [ 36.287067091972688, 35.789727891928635 ], [ 36.288462355053639, 35.785877996772115 ], [ 36.288462355053639, 35.781769720995783 ], [ 36.287532179966092, 35.777893989216182 ], [ 36.279935744239197, 35.769806627074161 ], [ 36.254820997990635, 35.755931505234742 ], [ 36.238646274605856, 35.74438182246314 ], [ 36.234460483564419, 35.735570990808583 ], [ 36.232755161221689, 35.710275377406731 ], [ 36.230739779617124, 35.704022528816608 ], [ 36.228104282186848, 35.699604193778498 ], [ 36.212911410733, 35.69094839085551 ], [ 36.202834507206717, 35.682473455985189 ], [ 36.199888949615286, 35.677254137068758 ], [ 36.199423861621881, 35.673068346027321 ], [ 36.201129184863987, 35.670045274070105 ], [ 36.212911410733, 35.656841945799158 ], [ 36.216477085049405, 35.65105418610176 ], [ 36.218957553748112, 35.644517117570899 ], [ 36.221593052077651, 35.633329169105821 ], [ 36.224383579138816, 35.602013251110634 ], [ 36.220507847359272, 35.535350653709656 ], [ 36.201284213595557, 35.425176500395139 ], [ 36.201904331219907, 35.421455797347164 ], [ 36.208105502966589, 35.40228384042689 ], [ 36.224693638400652, 35.363500677913919 ], [ 36.250428501374245, 35.262395737773033 ], [ 36.252960646016959, 35.22343170810683 ], [ 36.21446170434416, 35.239037990710699 ], [ 36.201129184863987, 35.240071520384333 ], [ 36.187279901446288, 35.233198554169917 ], [ 36.179993524081851, 35.230356350265311 ], [ 36.175962761772041, 35.229219468703491 ], [ 36.025636021285322, 35.219504299483788 ], [ 36.018608026339336, 35.220899563464059 ], [ 35.9897725770428, 35.241466783465285 ], [ 35.974269647226436, 35.249579983129706 ], [ 35.931481560825375, 35.26141388584216 ], [ 35.931202663471375, 35.261491021316544 ], [ 35.915293816000087, 35.287909247000073 ], [ 35.928965691000087, 35.321478583000044 ], [ 35.924082879000082, 35.33852773600006 ], [ 35.916677280000044, 35.403306382000039 ], [ 35.918955925000034, 35.417669989000046 ], [ 35.908864780000044, 35.425726630000042 ], [ 35.860606316000087, 35.479071356000077 ], [ 35.840098504000082, 35.487372137000079 ], [ 35.830088738000086, 35.493475653000075 ], [ 35.82585696700005, 35.503322658000059 ], [ 35.818369988000086, 35.508937893000052 ], [ 35.802256707000083, 35.506903387000079 ], [ 35.78679446700005, 35.502183335000041 ], [ 35.781260613000086, 35.499579169000071 ], [ 35.770518425000034, 35.50421784100007 ], [ 35.771983269000089, 35.515448309000078 ], [ 35.77711022200009, 35.529120184000078 ], [ 35.778086785000085, 35.541164455000057 ], [ 35.771983269000089, 35.54633209800005 ], [ 35.737071160000085, 35.561672268000052 ], [ 35.738780144000089, 35.566595770000049 ], [ 35.740896030000044, 35.57648346600007 ], [ 35.743337436000047, 35.582098700000074 ], [ 35.737071160000085, 35.582098700000074 ], [ 35.723399285000085, 35.575913804000038 ], [ 35.723399285000085, 35.582098700000074 ], [ 35.743418816000087, 35.587958075000074 ], [ 35.76335696700005, 35.59829336100006 ], [ 35.778493686000047, 35.61273834800005 ], [ 35.784353061000047, 35.630560614000046 ], [ 35.782074415000068, 35.641750393000052 ], [ 35.77320397200009, 35.655462958000044 ], [ 35.77116946700005, 35.667792059000078 ], [ 35.776621941000087, 35.675116278000075 ], [ 35.800059441000087, 35.681463934000078 ], [ 35.838552280000044, 35.742092190000051 ], [ 35.840342644000089, 35.747463283000059 ], [ 35.840098504000082, 35.770819403000075 ], [ 35.835948113000086, 35.789984442000048 ], [ 35.825368686000047, 35.813462632000039 ], [ 35.81185957100007, 35.83539459800005 ], [ 35.79859459700009, 35.849676825000074 ], [ 35.846853061000047, 35.847235419000071 ], [ 35.87086022200009, 35.851792710000041 ], [ 35.881032748000052, 35.866685289000088 ], [ 35.885264519000089, 35.885972398000035 ], [ 35.911305418925394, 35.917750432760798 ], [ 35.920835409000119, 35.915121562000067 ], [ 35.94057580600014, 35.918377177000039 ], [ 35.960729615000048, 35.924371643000072 ], [ 35.98026330600004, 35.926852112000049 ], [ 35.992769002000045, 35.915276591000108 ], [ 35.993079060000127, 35.902357483000102 ], [ 35.990081828000086, 35.889283346000056 ], [ 35.992355591000035, 35.877346090000103 ], [ 36.003931111000099, 35.869181214000079 ], [ 36.019434041000068, 35.866183981000077 ], [ 36.050749959000086, 35.865408834000064 ], [ 36.080308879000142, 35.854195048000108 ], [ 36.138496541000052, 35.819778545000062 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SY-SU", "NAME_1": "As Suwayda'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.49460567371284, 32.690055622768739 ], [ 37.415214478000053, 32.647129822000025 ], [ 37.244062134000046, 32.554396464000021 ], [ 37.133371216000057, 32.494529318000062 ], [ 37.133164510000086, 32.494529318000062 ], [ 36.980098918000124, 32.410038351000097 ], [ 36.819385213000146, 32.316788229000068 ], [ 36.80656945800007, 32.313041687000052 ], [ 36.792513468000038, 32.313532614000096 ], [ 36.728641398000093, 32.327795309000052 ], [ 36.706937296000092, 32.328337911000105 ], [ 36.689574015000062, 32.319656271000056 ], [ 36.653503865000062, 32.34285898800006 ], [ 36.516683926721839, 32.357014182458556 ], [ 36.516665479828021, 32.35727590585833 ], [ 36.516252068678, 32.363141180820833 ], [ 36.52028283098781, 32.39161489491147 ], [ 36.52105797734373, 32.394250393241009 ], [ 36.518112419752356, 32.442567856921016 ], [ 36.518732538276026, 32.447037868802568 ], [ 36.525553826747682, 32.466442368820253 ], [ 36.526484001835172, 32.470318102398494 ], [ 36.527310825034533, 32.47868968448131 ], [ 36.526070590685208, 32.482255356999133 ], [ 36.523693474774007, 32.486725368880627 ], [ 36.51377159997935, 32.50008372678252 ], [ 36.499973993405035, 32.513364570318629 ], [ 36.495013055108359, 32.519617418009432 ], [ 36.4947029967459, 32.522227077917307 ], [ 36.49547814310182, 32.525560208236982 ], [ 36.500749138861636, 32.53555959739748 ], [ 36.507260369870153, 32.543181871546096 ], [ 36.508190544957642, 32.544680488313873 ], [ 36.506640252245802, 32.550623276742783 ], [ 36.495013055108359, 32.566177883402588 ], [ 36.478579950204505, 32.564498399481522 ], [ 36.476254510237425, 32.564575913847307 ], [ 36.474187452688795, 32.565170193049937 ], [ 36.470673456115094, 32.566746324183498 ], [ 36.466901076223678, 32.569304308147309 ], [ 36.464575637155917, 32.571965643999249 ], [ 36.460389846114481, 32.575763862312385 ], [ 36.4580644061474, 32.576461493403201 ], [ 36.45558393744875, 32.576926581396606 ], [ 36.45325849838099, 32.576874905452485 ], [ 36.43434492387911, 32.574161891857784 ], [ 36.418686965331176, 32.574368598332114 ], [ 36.402202182684562, 32.576694037399875 ], [ 36.400651889972721, 32.578502713429486 ], [ 36.40003177324769, 32.581422430800501 ], [ 36.401116977966126, 32.587830309021513 ], [ 36.402047153053672, 32.591111762497803 ], [ 36.405302769007562, 32.598734035747157 ], [ 36.406387973725998, 32.602454738795132 ], [ 36.405612827370078, 32.605503648274748 ], [ 36.399721713985912, 32.616794949527275 ], [ 36.398791537999045, 32.621342474875291 ], [ 36.400186801979316, 32.626587633112763 ], [ 36.402357212315451, 32.628603013818008 ], [ 36.404372593020753, 32.629998276898959 ], [ 36.416929966145005, 32.633253892852849 ], [ 36.420702346036421, 32.634649155933801 ], [ 36.422252638748262, 32.635501817554825 ], [ 36.423647901829213, 32.636587022273261 ], [ 36.428763868857459, 32.641625474935722 ], [ 36.430159132837673, 32.642762356497542 ], [ 36.43356977662387, 32.644648545993562 ], [ 36.44070112525668, 32.647723293894899 ], [ 36.443646681049472, 32.649816188965929 ], [ 36.446437209009957, 32.652141628933009 ], [ 36.447367384996824, 32.653485216069839 ], [ 36.448297560084313, 32.655009671259279 ], [ 36.450467971319824, 32.662425238933622 ], [ 36.450623000051394, 32.666766058706628 ], [ 36.448142531352744, 32.670176703392144 ], [ 36.443491652317903, 32.67433665601186 ], [ 36.430469191200189, 32.681881414895372 ], [ 36.424112989822618, 32.684775296542682 ], [ 36.419410434843655, 32.686403102720988 ], [ 36.399411654724076, 32.687979233854549 ], [ 36.395070834951071, 32.688986925106462 ], [ 36.379722934765596, 32.694412950497224 ], [ 36.377397494798515, 32.694878038490685 ], [ 36.375072055730755, 32.69516225843148 ], [ 36.370266147964344, 32.695265611218986 ], [ 36.365770297661072, 32.69606659599657 ], [ 36.362773065024896, 32.697100124770941 ], [ 36.361429477888066, 32.698262843855161 ], [ 36.359672478701896, 32.70032990230311 ], [ 36.357192010003246, 32.704670722076116 ], [ 36.355796746922294, 32.707409573193218 ], [ 36.355176629298001, 32.709812527526083 ], [ 36.354246454210454, 32.715987860851101 ], [ 36.354246454210454, 32.720328681523426 ], [ 36.355021599667054, 32.726736558845118 ], [ 36.357398715578256, 32.731697496242418 ], [ 36.368095736728833, 32.740094915847692 ], [ 36.360292596326246, 32.806990058144663 ], [ 36.360292596326246, 32.822880560689327 ], [ 36.362152948299922, 32.825283515022193 ], [ 36.362669712237391, 32.826162014165618 ], [ 36.363599888224257, 32.829391790798468 ], [ 36.359982537963731, 32.83985626885169 ], [ 36.342154168180286, 32.875771389038334 ], [ 36.339673700380956, 32.886106675882388 ], [ 36.33703820205136, 32.893160509250094 ], [ 36.33626305479612, 32.89920665136583 ], [ 36.336418084427009, 32.901351223280301 ], [ 36.336883172420471, 32.903289088720442 ], [ 36.338123406769796, 32.906751410249342 ], [ 36.346339959221723, 32.920471503357192 ], [ 36.346805047215128, 32.922383531274932 ], [ 36.347115105577643, 32.924269720770951 ], [ 36.346960076846074, 32.926336778319637 ], [ 36.346650017584238, 32.928145453449872 ], [ 36.346029900859207, 32.930005805423548 ], [ 36.345254753603967, 32.931633613400493 ], [ 36.342619256173691, 32.936310329957735 ], [ 36.341379021824366, 32.939746812165652 ], [ 36.341068962562531, 32.941839708136001 ], [ 36.341223993092797, 32.943906764785368 ], [ 36.343239373798042, 32.946774807111638 ], [ 36.346805047215128, 32.949952907800423 ], [ 36.362773065024896, 32.960029812226026 ], [ 36.374761997368239, 32.966024278397697 ], [ 36.388559604841873, 32.977238064385119 ], [ 36.41930708205615, 32.997004298709385 ], [ 36.426748488152157, 33.000079047510042 ], [ 36.43744551020211, 33.002482000943587 ], [ 36.477804802949265, 33.004626572858058 ], [ 36.536767611835785, 33.001267605015926 ], [ 36.541573521400892, 33.001706855486987 ], [ 36.543743930837707, 33.002197781002792 ], [ 36.544829135556142, 33.003825588979737 ], [ 36.545139193918658, 33.006357734521828 ], [ 36.543123814112732, 33.011628730281643 ], [ 36.538472935077891, 33.019586900315176 ], [ 36.536767611835785, 33.022971707478291 ], [ 36.5363025247417, 33.024780381709206 ], [ 36.535837436748295, 33.026640732783562 ], [ 36.534442172768024, 33.050463568738678 ], [ 36.533356968049588, 33.053951727789979 ], [ 36.532375116118715, 33.055502021401139 ], [ 36.531341587344343, 33.05687144606037 ], [ 36.529894647420008, 33.057982490099846 ], [ 36.528241001021343, 33.058757636455709 ], [ 36.525863885110198, 33.059274400393235 ], [ 36.523538446042437, 33.05937775318074 ], [ 36.518732538276026, 33.059067694818225 ], [ 36.516562127040515, 33.058654282768941 ], [ 36.501059198123471, 33.053951727789979 ], [ 36.4996639341432, 33.05379669905841 ], [ 36.49795861180047, 33.053848375002474 ], [ 36.495943231095225, 33.05418427178671 ], [ 36.494237908752439, 33.054856065355125 ], [ 36.492532586409709, 33.05573456539787 ], [ 36.491292352060384, 33.05687144606037 ], [ 36.488966912992623, 33.059429430024181 ], [ 36.488036737005814, 33.061108913945191 ], [ 36.487571649012352, 33.062995103441267 ], [ 36.487106561018948, 33.078523870779975 ], [ 36.486641473025543, 33.082580471511505 ], [ 36.485866326669623, 33.086378688925322 ], [ 36.484471062689352, 33.089918524820064 ], [ 36.477649774217696, 33.102398383578532 ], [ 36.474807570313089, 33.109116319262682 ], [ 36.472637159976955, 33.1164026957278 ], [ 36.47253380718945, 33.11890900284817 ], [ 36.472843865551908, 33.122035426693571 ], [ 36.47408409990129, 33.127435615461252 ], [ 36.4750142758881, 33.133714301573718 ], [ 36.474807570313089, 33.135962226275694 ], [ 36.47387739432628, 33.13973460526779 ], [ 36.471913689565099, 33.144850572296036 ], [ 36.471293572840068, 33.146710924269712 ], [ 36.47098351357829, 33.149113877703257 ], [ 36.471086867265115, 33.151981920029584 ], [ 36.47232710071512, 33.156477769433479 ], [ 36.474187452688795, 33.161180325311761 ], [ 36.477184686224291, 33.165753689081441 ], [ 36.481990593990702, 33.170843817688024 ], [ 36.487726677743979, 33.175313829569575 ], [ 36.504779901171503, 33.186398424347772 ], [ 36.508965692212882, 33.186941025807698 ], [ 36.51532189269119, 33.187070217016867 ], [ 36.543433871575871, 33.184228014011637 ], [ 36.551495396195548, 33.185700792357636 ], [ 36.570874057791514, 33.193969020753684 ], [ 36.823830193608501, 33.224690660445617 ], [ 36.825535515951287, 33.223657130771926 ], [ 36.83483727402097, 33.21549225516344 ], [ 36.839333124324185, 33.212469184105544 ], [ 36.847549675876792, 33.205441189159558 ], [ 36.8562313172215, 33.199730942928625 ], [ 36.885273472093047, 33.186501777135277 ], [ 36.888374058416048, 33.184486396430032 ], [ 36.899536166660766, 33.173789374380078 ], [ 36.903566928970577, 33.167433173002507 ], [ 36.904652133689012, 33.163945013951206 ], [ 36.906822544025147, 33.152136948761154 ], [ 36.908372836736987, 33.148881333706584 ], [ 36.910698276704068, 33.146297512220372 ], [ 36.945941603322296, 33.11622182947383 ], [ 36.947956984027542, 33.113973903872534 ], [ 36.949352248007813, 33.111829331958063 ], [ 36.950902540719653, 33.108392848850883 ], [ 36.953693067780819, 33.100072944510771 ], [ 36.954313185405169, 33.091236274434493 ], [ 36.95508833176109, 33.087205512124683 ], [ 36.956328566110415, 33.083484809076651 ], [ 36.957103713365655, 33.081882839521427 ], [ 36.958033889352464, 33.080461738018755 ], [ 36.96066938678274, 33.07805878278657 ], [ 36.981184929940525, 33.065217189721523 ], [ 36.984595574626042, 33.063744412274787 ], [ 37.001803826785135, 33.061754869091942 ], [ 37.007694940169358, 33.061677353826781 ], [ 37.072703892070933, 33.049817612692664 ], [ 37.077819859099179, 33.047182115262387 ], [ 37.07937015181102, 33.046148587387393 ], [ 37.082005650140616, 33.043952337730161 ], [ 37.087173293112983, 33.040619208309806 ], [ 37.098800490250426, 33.034986477344034 ], [ 37.101901075674107, 33.033022773482173 ], [ 37.103296339654321, 33.031885891021034 ], [ 37.104381545272076, 33.030516466361803 ], [ 37.105311721258886, 33.028940335228242 ], [ 37.105931837983917, 33.027235011986193 ], [ 37.106396925977322, 33.025555528065127 ], [ 37.106551954708948, 33.023850205722397 ], [ 37.106396925977322, 33.0211888698704 ], [ 37.105621778722082, 33.017674872397436 ], [ 37.105931837983917, 33.011938787744839 ], [ 37.106086866715486, 33.010776069559938 ], [ 37.106551954708948, 33.009432481523788 ], [ 37.108257277051678, 33.006512763253397 ], [ 37.110427687387869, 33.003722236192232 ], [ 37.112443068093114, 33.001396796225151 ], [ 37.113683303341759, 33.000311591506716 ], [ 37.113838332073328, 33.000234076241611 ], [ 37.113993360804955, 33.000079047510042 ], [ 37.115698683147684, 32.99901968031395 ], [ 37.118334180577961, 32.996771754712711 ], [ 37.119419387095036, 32.995350654109359 ], [ 37.12081465017593, 32.992482611783089 ], [ 37.12158979743117, 32.991009833437033 ], [ 37.122830030881175, 32.989562893512698 ], [ 37.123450147606206, 32.988270982319932 ], [ 37.124380323593016, 32.987082423914728 ], [ 37.126550733929207, 32.984937852899577 ], [ 37.129031202627857, 32.983232530556847 ], [ 37.130736524970644, 32.980958767433151 ], [ 37.132596876944319, 32.97478343410819 ], [ 37.183498163009801, 32.949927070278022 ], [ 37.19636559359725, 32.944940294459002 ], [ 37.198225945570925, 32.945250352821517 ], [ 37.201998324563021, 32.946490587170842 ], [ 37.203651970961687, 32.947343247892547 ], [ 37.205202263673527, 32.948325099823478 ], [ 37.207889438846507, 32.950702215734623 ], [ 37.212695346612918, 32.951735745408314 ], [ 37.241375767177885, 32.950728054156343 ], [ 37.257188755356765, 32.946309719118233 ], [ 37.264216750302751, 32.94005687142743 ], [ 37.268402541344187, 32.934449977984059 ], [ 37.270262892418543, 32.931323554138714 ], [ 37.271658156398757, 32.927990423818983 ], [ 37.274758741822438, 32.918146064289431 ], [ 37.27925459212571, 32.872360745252195 ], [ 37.2801847672132, 32.868640042204163 ], [ 37.280649855206605, 32.867167262958787 ], [ 37.281269971931636, 32.866288763815362 ], [ 37.283905471160551, 32.862593899189051 ], [ 37.419814487448605, 32.747148749215398 ], [ 37.468545363177952, 32.716969712781975 ], [ 37.477537061985799, 32.708804837173489 ], [ 37.494331902994929, 32.690356349765693 ], [ 37.49460567371284, 32.690055622768739 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SY-DR", "NAME_1": "Dar`a" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.927449992000106, 32.692372539000118 ], [ 35.922489054000039, 32.693767802000096 ], [ 35.905229126000052, 32.708573100000123 ], [ 35.895720663000077, 32.713275656000107 ], [ 35.78823368400009, 32.734411317000038 ], [ 35.779035278000094, 32.744281514000122 ], [ 35.779035278000094, 32.744359030000041 ], [ 35.77913863100008, 32.744462383000084 ], [ 35.774901164000141, 32.747278748000028 ], [ 35.769733520000045, 32.748053894000051 ], [ 35.791127563000146, 32.774098816000034 ], [ 35.807664021000051, 32.782625427000042 ], [ 35.815415487000053, 32.786526998000099 ], [ 35.821720011000082, 32.79590627000006 ], [ 35.842700643000057, 32.821666972000045 ], [ 35.848178344000075, 32.830271098000097 ], [ 35.846801924868942, 32.83577678037409 ], [ 35.853966912642875, 32.845101427089162 ], [ 35.906728549782713, 32.886184190248173 ], [ 35.936700880641126, 32.906751410249342 ], [ 35.941816847669372, 32.912797553264454 ], [ 35.942436964394346, 32.914425360342079 ], [ 35.942902052387808, 32.91886953380191 ], [ 35.939956495695697, 32.938480740293926 ], [ 35.938406202983856, 32.944371852778772 ], [ 35.936855910272016, 32.948170071091909 ], [ 35.934375441573366, 32.950728054156343 ], [ 35.93329023595561, 32.952123318136614 ], [ 35.93251508959969, 32.953725287691839 ], [ 35.932825147962205, 32.955999050815535 ], [ 35.93422041194242, 32.958479520413505 ], [ 35.938406202983856, 32.961580104937866 ], [ 35.941506789306857, 32.962923692074696 ], [ 35.944607374730538, 32.963621324064832 ], [ 35.962280714883036, 32.964422308842472 ], [ 35.967138298593568, 32.963802192117441 ], [ 35.969102003354749, 32.963156236071427 ], [ 35.970652296965909, 32.962122707297056 ], [ 35.971789179427049, 32.960727444216161 ], [ 35.97240929525276, 32.959073797817496 ], [ 35.973494500870515, 32.955559800344474 ], [ 35.974269647226436, 32.954035346054354 ], [ 35.975509881575761, 32.952588406130019 ], [ 35.976595086294196, 32.951322333358974 ], [ 35.978145379006037, 32.950185451797154 ], [ 35.979850701348767, 32.949306953553048 ], [ 35.981556023691496, 32.948557643820209 ], [ 35.983261346034283, 32.948118394248468 ], [ 35.985121698007958, 32.948170071091909 ], [ 35.986361932357283, 32.949100247078718 ], [ 35.987292108344093, 32.950650539790558 ], [ 35.987137078713204, 32.954526272469479 ], [ 35.985896844363879, 32.960184841856972 ], [ 35.979385613355362, 32.97788402043119 ], [ 35.977525262281006, 32.981372179482491 ], [ 35.973494500870515, 32.985092882530466 ], [ 35.969102003354749, 32.990493069499564 ], [ 35.963831007594877, 33.000079048409361 ], [ 35.963675977963987, 33.000234076241611 ], [ 35.963520949232418, 33.000647488290952 ], [ 35.952048780826544, 33.015116889332944 ], [ 35.947087843429188, 33.024625352078317 ], [ 35.947707961053538, 33.032144273439428 ], [ 35.959800246184386, 33.094801947851579 ], [ 35.960885450902822, 33.096248887775914 ], [ 35.967448357855403, 33.109090480841019 ], [ 35.980005730979656, 33.126117865846822 ], [ 35.979695672617197, 33.128779201698762 ], [ 35.978300408636926, 33.13280996310931 ], [ 35.973649529602085, 33.14050975252303 ], [ 35.970652296965909, 33.143868720365106 ], [ 35.968171828267259, 33.146013292279576 ], [ 35.954064162431109, 33.15477244709075 ], [ 35.952978956813411, 33.156219387015085 ], [ 35.953754103169331, 33.166528835437362 ], [ 35.961660597258742, 33.204821072434527 ], [ 35.983416374765852, 33.197327989495079 ], [ 35.986051873994768, 33.195700182417454 ], [ 35.990082635405258, 33.192599596094453 ], [ 35.996128778420371, 33.183013617184656 ], [ 35.999694451837456, 33.17921539977084 ], [ 36.006205681946653, 33.17789765105573 ], [ 36.025429314810992, 33.177587591793895 ], [ 36.031062045776764, 33.178336899728095 ], [ 36.037263218422765, 33.180145574858386 ], [ 36.040828891839851, 33.181592516581361 ], [ 36.047030063586533, 33.185390733095858 ], [ 36.061757847046977, 33.196371975086549 ], [ 36.063463169389706, 33.197250475129295 ], [ 36.142786492702442, 33.202702338042457 ], [ 36.146972283743878, 33.203787542760892 ], [ 36.162010124667518, 33.210479640922642 ], [ 36.203919711925153, 33.222365221377856 ], [ 36.213376498726404, 33.226266791579121 ], [ 36.217097201774436, 33.23419912409031 ], [ 36.222833286427033, 33.242880764535641 ], [ 36.224383579138816, 33.246213893955996 ], [ 36.225778843119087, 33.250167141000759 ], [ 36.225778843119087, 33.250296332209928 ], [ 36.225778843119087, 33.250451361840874 ], [ 36.226088902380923, 33.252001655452034 ], [ 36.226243931112492, 33.253887844048734 ], [ 36.225778843119087, 33.25789276793688 ], [ 36.222213168802682, 33.269029039558518 ], [ 36.222678256796087, 33.272207140247303 ], [ 36.224073520776358, 33.276625475285414 ], [ 36.228879429442088, 33.285901394034113 ], [ 36.231980014865769, 33.289286200297909 ], [ 36.234925570658561, 33.290862332330732 ], [ 36.23678592263218, 33.290242213807119 ], [ 36.238491244974966, 33.289389553085414 ], [ 36.23988650895518, 33.288304348366978 ], [ 36.241126743304562, 33.286986598752492 ], [ 36.249188267024863, 33.275385240036769 ], [ 36.254045850735395, 33.270372625796028 ], [ 36.25683637869588, 33.268202216359157 ], [ 36.258541701038666, 33.267194526006563 ], [ 36.269238722189243, 33.262466131706617 ], [ 36.270789014901084, 33.261458442253286 ], [ 36.272184278881355, 33.260295722269746 ], [ 36.273424514129999, 33.259055487920421 ], [ 36.274354689217489, 33.25747935588754 ], [ 36.27497480594252, 33.255722358500009 ], [ 36.276060011560276, 33.245412909178413 ], [ 36.27668012918457, 33.243630073369161 ], [ 36.277610305171436, 33.242105618179721 ], [ 36.278695509889872, 33.240736191721851 ], [ 36.280245802601712, 33.239650987003415 ], [ 36.281796096212872, 33.238720811016606 ], [ 36.283656447287171, 33.237868150294901 ], [ 36.286446974348394, 33.23709300393898 ], [ 36.304792108069307, 33.235000107968574 ], [ 36.309132927842313, 33.234044094459364 ], [ 36.310993279815989, 33.233294786525164 ], [ 36.313938835608781, 33.231150213711373 ], [ 36.315179070857425, 33.229961656205433 ], [ 36.316264275575861, 33.228566393124538 ], [ 36.320450066617241, 33.22065989813575 ], [ 36.321380242604107, 33.219212958211415 ], [ 36.322775505685001, 33.21797272386209 ], [ 36.332697381379035, 33.212650051258834 ], [ 36.335642938071089, 33.210376288135194 ], [ 36.338123406769796, 33.207844143492423 ], [ 36.342464227442122, 33.205880438731242 ], [ 36.368250767259099, 33.199550075775335 ], [ 36.37615726134851, 33.198413194213515 ], [ 36.381583285839952, 33.198180650216841 ], [ 36.383443637813627, 33.198852443785256 ], [ 36.385769076881388, 33.200325222131255 ], [ 36.386544224136628, 33.201100369386495 ], [ 36.387474400123438, 33.202495632467446 ], [ 36.388094516848469, 33.204278469176018 ], [ 36.388559604841873, 33.206293849881263 ], [ 36.389489779929363, 33.217094224718664 ], [ 36.389954867922768, 33.218902899848956 ], [ 36.390730015178065, 33.220530706926581 ], [ 36.393985630232635, 33.224690660445617 ], [ 36.424112989822618, 33.247764187567157 ], [ 36.428143752132428, 33.250089627534237 ], [ 36.428298780863997, 33.250167141000759 ], [ 36.428453809595624, 33.250244656265863 ], [ 36.477804802949265, 33.2760053567618 ], [ 36.481060418003892, 33.278847561565669 ], [ 36.486486444293973, 33.284790350893957 ], [ 36.503229607560343, 33.294453844169539 ], [ 36.506640252245802, 33.294815579375495 ], [ 36.510826043287238, 33.294763902532054 ], [ 36.514391716704324, 33.292180081045899 ], [ 36.516252068678, 33.290268053128102 ], [ 36.517647332658271, 33.288407701154483 ], [ 36.51950768373257, 33.285358792574186 ], [ 36.52105797734373, 33.282180690986081 ], [ 36.525398797116793, 33.269959215545327 ], [ 36.527104120358842, 33.266806952378943 ], [ 36.529171177008209, 33.263913072530272 ], [ 36.563122593332992, 33.230865993770578 ], [ 36.564362826782997, 33.229238185793633 ], [ 36.566223178756672, 33.226163437892296 ], [ 36.566843296381023, 33.224458116448886 ], [ 36.567463413105997, 33.22259776537453 ], [ 36.567928501099402, 33.220763250923255 ], [ 36.568548617824433, 33.204511013172691 ], [ 36.570874057791514, 33.193969020753684 ], [ 36.551495396195548, 33.185700792357636 ], [ 36.543433871575871, 33.184228014011637 ], [ 36.51532189269119, 33.187070217016867 ], [ 36.508965692212882, 33.186941025807698 ], [ 36.504779901171503, 33.186398424347772 ], [ 36.487726677743979, 33.175313829569575 ], [ 36.481990593990702, 33.170843817688024 ], [ 36.477184686224291, 33.165753689081441 ], [ 36.474187452688795, 33.161180325311761 ], [ 36.47232710071512, 33.156477769433479 ], [ 36.471086867265115, 33.151981920029584 ], [ 36.47098351357829, 33.149113877703257 ], [ 36.471293572840068, 33.146710924269712 ], [ 36.471913689565099, 33.144850572296036 ], [ 36.47387739432628, 33.13973460526779 ], [ 36.474807570313089, 33.135962226275694 ], [ 36.4750142758881, 33.133714301573718 ], [ 36.47408409990129, 33.127435615461252 ], [ 36.472843865551908, 33.122035426693571 ], [ 36.47253380718945, 33.11890900284817 ], [ 36.472637159976955, 33.1164026957278 ], [ 36.474807570313089, 33.109116319262682 ], [ 36.477649774217696, 33.102398383578532 ], [ 36.484471062689352, 33.089918524820064 ], [ 36.485866326669623, 33.086378688925322 ], [ 36.486641473025543, 33.082580471511505 ], [ 36.487106561018948, 33.078523870779975 ], [ 36.487571649012352, 33.062995103441267 ], [ 36.488036737005814, 33.061108913945191 ], [ 36.488966912992623, 33.059429430024181 ], [ 36.491292352060384, 33.05687144606037 ], [ 36.492532586409709, 33.05573456539787 ], [ 36.494237908752439, 33.054856065355125 ], [ 36.495943231095225, 33.05418427178671 ], [ 36.49795861180047, 33.053848375002474 ], [ 36.4996639341432, 33.05379669905841 ], [ 36.501059198123471, 33.053951727789979 ], [ 36.516562127040515, 33.058654282768941 ], [ 36.518732538276026, 33.059067694818225 ], [ 36.523538446042437, 33.05937775318074 ], [ 36.525863885110198, 33.059274400393235 ], [ 36.528241001021343, 33.058757636455709 ], [ 36.529894647420008, 33.057982490099846 ], [ 36.531341587344343, 33.05687144606037 ], [ 36.532375116118715, 33.055502021401139 ], [ 36.533356968049588, 33.053951727789979 ], [ 36.534442172768024, 33.050463568738678 ], [ 36.535837436748295, 33.026640732783562 ], [ 36.5363025247417, 33.024780381709206 ], [ 36.536767611835785, 33.022971707478291 ], [ 36.538472935077891, 33.019586900315176 ], [ 36.543123814112732, 33.011628730281643 ], [ 36.545139193918658, 33.006357734521828 ], [ 36.544829135556142, 33.003825588979737 ], [ 36.543743930837707, 33.002197781002792 ], [ 36.541573521400892, 33.001706855486987 ], [ 36.536767611835785, 33.001267605015926 ], [ 36.477804802949265, 33.004626572858058 ], [ 36.43744551020211, 33.002482000943587 ], [ 36.426748488152157, 33.000079047510042 ], [ 36.41930708205615, 32.997004298709385 ], [ 36.388559604841873, 32.977238064385119 ], [ 36.374761997368239, 32.966024278397697 ], [ 36.362773065024896, 32.960029812226026 ], [ 36.346805047215128, 32.949952907800423 ], [ 36.343239373798042, 32.946774807111638 ], [ 36.341223993092797, 32.943906764785368 ], [ 36.341068962562531, 32.941839708136001 ], [ 36.341379021824366, 32.939746812165652 ], [ 36.342619256173691, 32.936310329957735 ], [ 36.345254753603967, 32.931633613400493 ], [ 36.346029900859207, 32.930005805423548 ], [ 36.346650017584238, 32.928145453449872 ], [ 36.346960076846074, 32.926336778319637 ], [ 36.347115105577643, 32.924269720770951 ], [ 36.346805047215128, 32.922383531274932 ], [ 36.346339959221723, 32.920471503357192 ], [ 36.338123406769796, 32.906751410249342 ], [ 36.336883172420471, 32.903289088720442 ], [ 36.336418084427009, 32.901351223280301 ], [ 36.33626305479612, 32.89920665136583 ], [ 36.33703820205136, 32.893160509250094 ], [ 36.339673700380956, 32.886106675882388 ], [ 36.342154168180286, 32.875771389038334 ], [ 36.359982537963731, 32.83985626885169 ], [ 36.363599888224257, 32.829391790798468 ], [ 36.362669712237391, 32.826162014165618 ], [ 36.362152948299922, 32.825283515022193 ], [ 36.360292596326246, 32.822880560689327 ], [ 36.360292596326246, 32.806990058144663 ], [ 36.368095736728833, 32.740094915847692 ], [ 36.357398715578256, 32.731697496242418 ], [ 36.355021599667054, 32.726736558845118 ], [ 36.354246454210454, 32.720328681523426 ], [ 36.354246454210454, 32.715987860851101 ], [ 36.355176629298001, 32.709812527526083 ], [ 36.355796746922294, 32.707409573193218 ], [ 36.357192010003246, 32.704670722076116 ], [ 36.359672478701896, 32.70032990230311 ], [ 36.361429477888066, 32.698262843855161 ], [ 36.362773065024896, 32.697100124770941 ], [ 36.365770297661072, 32.69606659599657 ], [ 36.370266147964344, 32.695265611218986 ], [ 36.375072055730755, 32.69516225843148 ], [ 36.377397494798515, 32.694878038490685 ], [ 36.379722934765596, 32.694412950497224 ], [ 36.395070834951071, 32.688986925106462 ], [ 36.399411654724076, 32.687979233854549 ], [ 36.419410434843655, 32.686403102720988 ], [ 36.424112989822618, 32.684775296542682 ], [ 36.430469191200189, 32.681881414895372 ], [ 36.443491652317903, 32.67433665601186 ], [ 36.448142531352744, 32.670176703392144 ], [ 36.450623000051394, 32.666766058706628 ], [ 36.450467971319824, 32.662425238933622 ], [ 36.448297560084313, 32.655009671259279 ], [ 36.447367384996824, 32.653485216069839 ], [ 36.446437209009957, 32.652141628933009 ], [ 36.443646681049472, 32.649816188965929 ], [ 36.44070112525668, 32.647723293894899 ], [ 36.43356977662387, 32.644648545993562 ], [ 36.430159132837673, 32.642762356497542 ], [ 36.428763868857459, 32.641625474935722 ], [ 36.423647901829213, 32.636587022273261 ], [ 36.422252638748262, 32.635501817554825 ], [ 36.420702346036421, 32.634649155933801 ], [ 36.416929966145005, 32.633253892852849 ], [ 36.404372593020753, 32.629998276898959 ], [ 36.402357212315451, 32.628603013818008 ], [ 36.400186801979316, 32.626587633112763 ], [ 36.398791537999045, 32.621342474875291 ], [ 36.399721713985912, 32.616794949527275 ], [ 36.405612827370078, 32.605503648274748 ], [ 36.406387973725998, 32.602454738795132 ], [ 36.405302769007562, 32.598734035747157 ], [ 36.402047153053672, 32.591111762497803 ], [ 36.401116977966126, 32.587830309021513 ], [ 36.40003177324769, 32.581422430800501 ], [ 36.400651889972721, 32.578502713429486 ], [ 36.402202182684562, 32.576694037399875 ], [ 36.418686965331176, 32.574368598332114 ], [ 36.43434492387911, 32.574161891857784 ], [ 36.45325849838099, 32.576874905452485 ], [ 36.45558393744875, 32.576926581396606 ], [ 36.4580644061474, 32.576461493403201 ], [ 36.460389846114481, 32.575763862312385 ], [ 36.464575637155917, 32.571965643999249 ], [ 36.466901076223678, 32.569304308147309 ], [ 36.470673456115094, 32.566746324183498 ], [ 36.474187452688795, 32.565170193049937 ], [ 36.476254510237425, 32.564575913847307 ], [ 36.478579950204505, 32.564498399481522 ], [ 36.495013055108359, 32.566177883402588 ], [ 36.506640252245802, 32.550623276742783 ], [ 36.508190544957642, 32.544680488313873 ], [ 36.507260369870153, 32.543181871546096 ], [ 36.500749138861636, 32.53555959739748 ], [ 36.49547814310182, 32.525560208236982 ], [ 36.4947029967459, 32.522227077917307 ], [ 36.495013055108359, 32.519617418009432 ], [ 36.499973993405035, 32.513364570318629 ], [ 36.51377159997935, 32.50008372678252 ], [ 36.523693474774007, 32.486725368880627 ], [ 36.526070590685208, 32.482255356999133 ], [ 36.527310825034533, 32.47868968448131 ], [ 36.526484001835172, 32.470318102398494 ], [ 36.525553826747682, 32.466442368820253 ], [ 36.518732538276026, 32.447037868802568 ], [ 36.518112419752356, 32.442567856921016 ], [ 36.52105797734373, 32.394250393241009 ], [ 36.52028283098781, 32.39161489491147 ], [ 36.516252068678, 32.363141180820833 ], [ 36.516665479828021, 32.35727590585833 ], [ 36.516683926721839, 32.357014182458556 ], [ 36.480181111000093, 32.360790711000035 ], [ 36.463954712000145, 32.369394837000058 ], [ 36.407627400000081, 32.374226583000066 ], [ 36.387887004000106, 32.379316712000062 ], [ 36.373107544000106, 32.386422221000075 ], [ 36.285257609000098, 32.456934713000052 ], [ 36.220765421000067, 32.494580994000088 ], [ 36.18820926900014, 32.522279561000104 ], [ 36.177357218000111, 32.527318014000073 ], [ 36.172189575000061, 32.525922750000078 ], [ 36.160820760000092, 32.51721527100004 ], [ 36.155859822000139, 32.51519989100008 ], [ 36.149865356000134, 32.516130067000049 ], [ 36.139530070000035, 32.519540710000072 ], [ 36.133225546000119, 32.520109151000028 ], [ 36.096225220000065, 32.515871684000061 ], [ 36.081905548602151, 32.516264773300634 ], [ 36.069870239000068, 32.516595154000058 ], [ 36.066252889000111, 32.517318624000055 ], [ 36.06604618300014, 32.521607768000123 ], [ 36.060465128000146, 32.53326080300009 ], [ 36.0154032800001, 32.591164246000019 ], [ 36.005998169000122, 32.607907410000067 ], [ 36.00527469900004, 32.626691793000063 ], [ 36.008271932000071, 32.643719178000097 ], [ 36.003621053000074, 32.655087992000077 ], [ 35.98026330600004, 32.656612448000104 ], [ 35.965793905000112, 32.654364523000098 ], [ 35.955355265000094, 32.65743927100003 ], [ 35.946570272000088, 32.664441427000028 ], [ 35.937475219000135, 32.674001567000019 ], [ 35.941195922000134, 32.673536479000106 ], [ 35.944399862000068, 32.677618917000117 ], [ 35.945743449000076, 32.68410431000008 ], [ 35.94419315600004, 32.690770569000094 ], [ 35.940369100000112, 32.692501729000057 ], [ 35.927449992000106, 32.692372539000118 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SY-DY", "NAME_1": "Dayr Az Zawr" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.308457833662089, 35.552247625327652 ], [ 41.261284627000123, 35.494320374000026 ], [ 41.261284627000123, 35.494165344000081 ], [ 41.26118127400008, 35.494165344000081 ], [ 41.261077921000094, 35.494165344000081 ], [ 41.251879517000077, 35.464089661000017 ], [ 41.243094523000082, 35.366524557 ], [ 41.201339966000035, 35.243017884000054 ], [ 41.191521444000102, 35.182143046000093 ], [ 41.192325857000128, 35.158904437000061 ], [ 41.198032674000046, 34.994040833 ], [ 41.206507609000141, 34.81932281500012 ], [ 41.204233846000136, 34.793122864000011 ], [ 41.195655558000112, 34.76847320600011 ], [ 41.023986451000042, 34.494329733000129 ], [ 41.023986451000042, 34.49417470300007 ], [ 40.988019653000094, 34.428519796000032 ], [ 40.9652820230001, 34.401854757000095 ], [ 40.936033163000047, 34.386067607000101 ], [ 40.690466756000035, 34.331497294000073 ], [ 40.543809041000088, 34.257987570000111 ], [ 40.433221476000142, 34.202538757000056 ], [ 40.322633911000082, 34.14716746 ], [ 40.212046346000136, 34.091796163000041 ], [ 40.173110824604862, 34.072282917322752 ], [ 40.172824741268755, 34.072623398850737 ], [ 39.609448276616661, 34.743125108237109 ], [ 39.444548781401124, 34.936394964755777 ], [ 39.440621371878763, 34.942415270248489 ], [ 39.435815464112352, 34.951717027418852 ], [ 39.435195347387378, 34.962155667050354 ], [ 39.441551547865629, 35.019826564744164 ], [ 39.441086459872224, 35.029283352444736 ], [ 39.437830844817597, 35.038481756827593 ], [ 39.374372185627863, 35.14922435182234 ], [ 39.342746209270103, 35.181987209741919 ], [ 39.242028842756838, 35.249269923867871 ], [ 39.666550734428824, 35.757559312312367 ], [ 39.674973993355081, 35.770865994270196 ], [ 39.66686079279134, 35.774018256537261 ], [ 39.637715285132288, 35.789908759081925 ], [ 39.63079064297375, 35.7921308462615 ], [ 39.630945671705376, 35.802569484993739 ], [ 39.641435988180262, 35.864322821840744 ], [ 39.739207798001473, 36.227582302181474 ], [ 39.804526808265564, 36.463666083522924 ], [ 39.82607588109704, 36.424391995494148 ], [ 39.900748325374877, 36.324294744806593 ], [ 40.025805291780785, 36.221174424859782 ], [ 40.7749585300121, 35.626301174159835 ], [ 40.806946241575758, 35.610849921186912 ], [ 40.825394728084234, 35.60408030955864 ], [ 40.887148064931239, 35.593047389825131 ], [ 40.923011509173762, 35.582143663099544 ], [ 40.999492628581947, 35.569250393191055 ], [ 41.195966424211065, 35.565271307724629 ], [ 41.308000930398578, 35.552300523450356 ], [ 41.308457833662089, 35.552247625327652 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SY-QU", "NAME_1": "Quneitra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.846801924868942, 32.83577678037409 ], [ 35.846628052000142, 32.836472270000073 ], [ 35.86068404100007, 32.880164693000054 ], [ 35.890346313000123, 32.928637187 ], [ 35.912153768000053, 32.947292379000075 ], [ 35.923832642000036, 32.967678731000021 ], [ 35.898097778000135, 32.985532939000066 ], [ 35.877117147000035, 32.992638448000022 ], [ 35.864611450000041, 33.08154775000007 ], [ 35.868435506000139, 33.107282613000066 ], [ 35.890346313000123, 33.10960805200007 ], [ 35.902748657000075, 33.10960805200007 ], [ 35.902748657000075, 33.116636047 ], [ 35.897270955000067, 33.116636047 ], [ 35.893446900000072, 33.120511780000058 ], [ 35.891896606000046, 33.124413350000012 ], [ 35.894893839000133, 33.12828908300007 ], [ 35.90037154100014, 33.13074371300003 ], [ 35.905952596000134, 33.133069153000051 ], [ 35.91060347500013, 33.135394592000083 ], [ 35.911326944000109, 33.139270325000055 ], [ 35.911326944000109, 33.149424744 ], [ 35.911326944000109, 33.165806173000064 ], [ 35.907502889000057, 33.171309713000042 ], [ 35.905952596000134, 33.176761576000033 ], [ 35.90037154100014, 33.179810486000051 ], [ 35.896547485000099, 33.180611470000073 ], [ 35.890346313000123, 33.176761576000033 ], [ 35.888072550000118, 33.176761576000033 ], [ 35.884868611000115, 33.179061178000055 ], [ 35.882491496000057, 33.18459055600006 ], [ 35.882491496000057, 33.189241435000028 ], [ 35.888796021000076, 33.194615783000089 ], [ 35.888796021000076, 33.198594869000075 ], [ 35.885592081000141, 33.204046733000055 ], [ 35.874740031000044, 33.21575144400002 ], [ 35.866161743000134, 33.225957540000095 ], [ 35.861510864000081, 33.237558899000064 ], [ 35.854379516000051, 33.268823141000055 ], [ 35.853656047000129, 33.272698873000095 ], [ 35.851278931000081, 33.275825297000054 ], [ 35.845801229000131, 33.279029236000028 ], [ 35.835776001000056, 33.279029236000028 ], [ 35.826370890000135, 33.279804383000041 ], [ 35.820169718000045, 33.280553691000037 ], [ 35.819342895000034, 33.284429423000077 ], [ 35.821720011000082, 33.285979716 ], [ 35.826370890000135, 33.28830515600005 ], [ 35.833398885000122, 33.290630595000081 ], [ 35.840426880000052, 33.295358988000046 ], [ 35.844974405000073, 33.303885600000072 ], [ 35.845801229000131, 33.313264873000023 ], [ 35.843424113000083, 33.321894836000055 ], [ 35.84297611895272, 33.322800384230334 ], [ 35.843218214648857, 33.322695014263502 ], [ 35.884714389857209, 33.304634100483327 ], [ 35.895256382276216, 33.298665472733376 ], [ 35.89510135264527, 33.296934312868245 ], [ 35.89432620628935, 33.29528066646958 ], [ 35.88936526889205, 33.290242214706439 ], [ 35.885179477850613, 33.284686998106451 ], [ 35.884249301863747, 33.283136705394611 ], [ 35.882854037883533, 33.280346177434126 ], [ 35.880838657178288, 33.274661771423609 ], [ 35.879598422828906, 33.268667304352618 ], [ 35.879288363567127, 33.264481513311182 ], [ 35.879598422828906, 33.26019236948224 ], [ 35.880063510822367, 33.25825450314278 ], [ 35.881148716440066, 33.255024726509873 ], [ 35.887349888186748, 33.242932440479706 ], [ 35.889985385617024, 33.240555325467881 ], [ 35.892000766322269, 33.23996104626525 ], [ 35.893085971940025, 33.241252957458016 ], [ 35.89417117665846, 33.242674058960631 ], [ 35.895566440638731, 33.245955512436922 ], [ 35.896961704618946, 33.250115465056638 ], [ 35.896961704618946, 33.250218817844143 ], [ 35.897581821343977, 33.251639919346758 ], [ 35.898356967699897, 33.252854315274419 ], [ 35.899597202049222, 33.254094551422384 ], [ 35.900992466029436, 33.2551797552415 ], [ 35.904868198708357, 33.256600856744114 ], [ 35.907038608145228, 33.257040106315856 ], [ 35.909570753687319, 33.257169298424344 ], [ 35.932670119230579, 33.253732815317164 ], [ 35.944297316368022, 33.253241888902039 ], [ 35.957009718223901, 33.251536567458629 ], [ 35.961040481433031, 33.249702053007297 ], [ 35.963365919601472, 33.247893377877062 ], [ 35.963831007594877, 33.246033026802706 ], [ 35.964141065957392, 33.243940130832357 ], [ 35.964141065957392, 33.23957347353695 ], [ 35.963210890869902, 33.231279404920599 ], [ 35.963520949232418, 33.216112372787734 ], [ 35.963210890869902, 33.211487331275293 ], [ 35.961660597258742, 33.204821072434527 ], [ 35.953754103169331, 33.166528835437362 ], [ 35.952978956813411, 33.156219387015085 ], [ 35.954064162431109, 33.15477244709075 ], [ 35.968171828267259, 33.146013292279576 ], [ 35.970652296965909, 33.143868720365106 ], [ 35.973649529602085, 33.14050975252303 ], [ 35.978300408636926, 33.13280996310931 ], [ 35.979695672617197, 33.128779201698762 ], [ 35.980005730979656, 33.126117865846822 ], [ 35.967448357855403, 33.109090480841019 ], [ 35.960885450902822, 33.096248887775914 ], [ 35.959800246184386, 33.094801947851579 ], [ 35.947707961053538, 33.032144273439428 ], [ 35.947087843429188, 33.024625352078317 ], [ 35.952048780826544, 33.015116889332944 ], [ 35.963520949232418, 33.000647488290952 ], [ 35.963675977963987, 33.000234076241611 ], [ 35.963831007594877, 33.000079048409361 ], [ 35.969102003354749, 32.990493069499564 ], [ 35.973494500870515, 32.985092882530466 ], [ 35.977525262281006, 32.981372179482491 ], [ 35.979385613355362, 32.97788402043119 ], [ 35.985896844363879, 32.960184841856972 ], [ 35.987137078713204, 32.954526272469479 ], [ 35.987292108344093, 32.950650539790558 ], [ 35.986361932357283, 32.949100247078718 ], [ 35.985121698007958, 32.948170071091909 ], [ 35.983261346034283, 32.948118394248468 ], [ 35.981556023691496, 32.948557643820209 ], [ 35.979850701348767, 32.949306953553048 ], [ 35.978145379006037, 32.950185451797154 ], [ 35.976595086294196, 32.951322333358974 ], [ 35.975509881575761, 32.952588406130019 ], [ 35.974269647226436, 32.954035346054354 ], [ 35.973494500870515, 32.955559800344474 ], [ 35.97240929525276, 32.959073797817496 ], [ 35.971789179427049, 32.960727444216161 ], [ 35.970652296965909, 32.962122707297056 ], [ 35.969102003354749, 32.963156236071427 ], [ 35.967138298593568, 32.963802192117441 ], [ 35.962280714883036, 32.964422308842472 ], [ 35.944607374730538, 32.963621324064832 ], [ 35.941506789306857, 32.962923692074696 ], [ 35.938406202983856, 32.961580104937866 ], [ 35.93422041194242, 32.958479520413505 ], [ 35.932825147962205, 32.955999050815535 ], [ 35.93251508959969, 32.953725287691839 ], [ 35.93329023595561, 32.952123318136614 ], [ 35.934375441573366, 32.950728054156343 ], [ 35.936855910272016, 32.948170071091909 ], [ 35.938406202983856, 32.944371852778772 ], [ 35.939956495695697, 32.938480740293926 ], [ 35.942902052387808, 32.91886953380191 ], [ 35.942436964394346, 32.914425360342079 ], [ 35.941816847669372, 32.912797553264454 ], [ 35.936700880641126, 32.906751410249342 ], [ 35.906728549782713, 32.886184190248173 ], [ 35.853966912642875, 32.845101427089162 ], [ 35.846801924868942, 32.83577678037409 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SY-HM", "NAME_1": "Hamah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.21641604966095, 35.551473700251051 ], [ 37.30157881041373, 35.52713410125773 ], [ 37.33744225375699, 35.507445380399986 ], [ 37.346123895101641, 35.504008897292749 ], [ 37.353410271566759, 35.502226061483555 ], [ 37.411597934996678, 35.501605942959884 ], [ 37.575928989431304, 35.51134695150057 ], [ 37.595152622295643, 35.500443223875664 ], [ 37.595669387132489, 35.500133165513148 ], [ 37.662073602115015, 35.462150986878498 ], [ 37.67897179501233, 35.456027330396978 ], [ 37.72382693896202, 35.445201117137799 ], [ 37.808524610822133, 35.434943346458226 ], [ 38.234803500780913, 35.435873521545773 ], [ 38.274697707333303, 35.411533922552451 ], [ 38.286324903571426, 35.401457018126848 ], [ 38.301672804656164, 35.382336738050014 ], [ 38.303068067737115, 35.364973456259975 ], [ 38.299967482313434, 35.253636582961917 ], [ 38.295316603278593, 35.237177638737023 ], [ 38.284619582128016, 35.216352037216723 ], [ 38.275007764796499, 35.201779283387225 ], [ 38.250616488959793, 35.172117010891327 ], [ 38.246740757180191, 35.16542491272952 ], [ 38.24208987814535, 35.154547024425597 ], [ 38.239609409446643, 35.146485500705296 ], [ 38.238059115835483, 35.137700507472402 ], [ 38.237904087103914, 35.129432278177092 ], [ 38.243175082863786, 35.096049303532538 ], [ 38.239764439077589, 35.091398424497697 ], [ 38.232633091344042, 35.086127427838505 ], [ 38.100754835567159, 35.037913316046684 ], [ 38.084270053819921, 35.027578030102006 ], [ 38.056984898134544, 35.006649074894881 ], [ 38.052799107093108, 35.00238576948766 ], [ 38.052334019099703, 35.000189520729805 ], [ 38.052334019099703, 34.999931139210673 ], [ 38.051403843112837, 34.991766261803491 ], [ 38.050628695857597, 34.989931749150855 ], [ 38.049698520770107, 34.988303941173911 ], [ 38.048613316051672, 34.986908678093016 ], [ 38.042670525824064, 34.980552476715388 ], [ 38.04163699704975, 34.978898831216043 ], [ 38.036624382809009, 34.968744412424655 ], [ 38.031663446310972, 34.961328843851049 ], [ 38.030888299055732, 34.959675198351704 ], [ 38.030268182330701, 34.957763170433964 ], [ 38.030268182330701, 34.955696112885278 ], [ 38.030888299055732, 34.94742788269059 ], [ 38.030733270324163, 34.942983710130079 ], [ 38.029958123968242, 34.938875434353804 ], [ 38.029338006343892, 34.937092596745913 ], [ 38.028562859987971, 34.935438951246567 ], [ 38.027787712732732, 34.933836981691343 ], [ 38.026547479282726, 34.932493395453832 ], [ 38.024687127309051, 34.929444485074896 ], [ 38.023756952221561, 34.92779083957555 ], [ 38.022671746603805, 34.92412181247164 ], [ 38.021121453891965, 34.920762843730245 ], [ 38.020036249173529, 34.919315903805909 ], [ 38.001587761765791, 34.902417710908594 ], [ 37.999417352328919, 34.901332506190215 ], [ 37.991975946232913, 34.898748683804683 ], [ 37.988720331178342, 34.898283595811279 ], [ 37.986033156005306, 34.898541978229673 ], [ 37.980452100983655, 34.903244534107955 ], [ 37.941694776892405, 34.944223945378781 ], [ 37.932806430872063, 34.955282700835937 ], [ 37.926140171131976, 34.961173814220103 ], [ 37.869657830944107, 34.99931102068706 ], [ 37.867797478970431, 35.000292874416573 ], [ 37.867642450238861, 35.000318711938974 ], [ 37.864386834284971, 35.00217906301333 ], [ 37.855705193839583, 35.008767809286951 ], [ 37.851984490791608, 35.012488512334983 ], [ 37.851054314804742, 35.014090480990887 ], [ 37.850434198079768, 35.015873317699459 ], [ 37.847333611756767, 35.029024970026342 ], [ 37.846403435769901, 35.039463608758524 ], [ 37.845008171789686, 35.045096339724296 ], [ 37.840357292754845, 35.059359036090598 ], [ 37.839427117667299, 35.060857651959054 ], [ 37.83834191294892, 35.062201239995204 ], [ 37.832915886658839, 35.066800442186661 ], [ 37.831675653208833, 35.068169866845835 ], [ 37.830745477221967, 35.069642646091211 ], [ 37.829195183610807, 35.072898261145838 ], [ 37.828575066885833, 35.074655260331951 ], [ 37.826869745442366, 35.077807521699754 ], [ 37.823769159119365, 35.082019151162854 ], [ 37.818911573610194, 35.087212633456261 ], [ 37.817567987372684, 35.088297838174697 ], [ 37.814105665843783, 35.090287381357541 ], [ 37.812400344400373, 35.091062526814142 ], [ 37.807904494097102, 35.092147732431897 ], [ 37.788060743608412, 35.092431952372692 ], [ 37.782944776580166, 35.092948717209538 ], [ 37.77860395680716, 35.094033921927917 ], [ 37.774883253759128, 35.095532537796373 ], [ 37.771627638704558, 35.097418728191712 ], [ 37.770077345992718, 35.098529771331869 ], [ 37.758708530374349, 35.109691881375227 ], [ 37.752662388258614, 35.114058539569896 ], [ 37.745841098887581, 35.117546699520517 ], [ 37.743825718182336, 35.118270169033053 ], [ 37.740725131859335, 35.118631904238953 ], [ 37.736849400079734, 35.118631904238953 ], [ 37.653857048763768, 35.10258637116408 ], [ 37.607451613001501, 35.089072984530617 ], [ 37.593809035158813, 35.08659251583191 ], [ 37.589416537643103, 35.086359971835236 ], [ 37.580424838835199, 35.086747545462856 ], [ 37.574998814343758, 35.0852747671168 ], [ 37.568332553704352, 35.08256175442142 ], [ 37.537275018127559, 35.064319973487954 ], [ 37.517741326900705, 35.055715847408408 ], [ 37.510920038428992, 35.051710924419581 ], [ 37.506579216857347, 35.048300278834802 ], [ 37.505338983407341, 35.047008368541356 ], [ 37.504408807420532, 35.045613105460404 ], [ 37.500998162735016, 35.039205227239449 ], [ 37.499602898754745, 35.035639552922987 ], [ 37.497277458787664, 35.021790270404608 ], [ 37.49743248931793, 34.995900376900863 ], [ 37.498052606042904, 34.991869615490316 ], [ 37.502703485077745, 34.979932359091094 ], [ 37.503788689796181, 34.976159980098998 ], [ 37.50394371942707, 34.974170436916097 ], [ 37.503788689796181, 34.972129217789131 ], [ 37.503323601802776, 34.970268866714832 ], [ 37.502548456346176, 34.968563544372046 ], [ 37.50084313310407, 34.96592804604245 ], [ 37.49991295801658, 34.96515289968653 ], [ 37.498827752398824, 34.964377753330609 ], [ 37.497277458787664, 34.96347341576552 ], [ 37.494331902994929, 34.962930813406274 ], [ 37.490301140685062, 34.962853298141169 ], [ 37.482187941020641, 34.964171046856279 ], [ 37.478467237972609, 34.965462958049045 ], [ 37.47583173964307, 34.966806546085195 ], [ 37.472421095856873, 34.970733953808917 ], [ 37.46327436741808, 34.983549710250884 ], [ 37.461879103437866, 34.984738267756825 ], [ 37.460173781095079, 34.985720119687755 ], [ 37.456143018785269, 34.98693451651468 ], [ 37.451182082287232, 34.987425442030485 ], [ 37.439554885149789, 34.986908678093016 ], [ 37.432113478154463, 34.988174749964742 ], [ 37.426170688826232, 34.988148912442341 ], [ 37.413148227708518, 34.98654694288706 ], [ 37.407412143955241, 34.986624457252901 ], [ 37.403691440907266, 34.985771796531139 ], [ 37.398885532241479, 34.984014797345026 ], [ 37.390048862165258, 34.978898831216043 ], [ 37.384002720049466, 34.976573391248962 ], [ 37.376716342685029, 34.975023098537122 ], [ 37.367983026295633, 34.975849920837163 ], [ 37.360386589669361, 34.977658595967398 ], [ 37.350309686143078, 34.983343003776554 ], [ 37.348449334169402, 34.984118150132474 ], [ 37.346278923833268, 34.98463491496932 ], [ 37.343178338409587, 34.983963121400905 ], [ 37.339612664992501, 34.982051093483165 ], [ 37.334651726695824, 34.976573391248962 ], [ 37.332946405252358, 34.973162747462823 ], [ 37.332326287628064, 34.970294705136496 ], [ 37.332326287628064, 34.968201809166146 ], [ 37.332171257997118, 34.966238105304285 ], [ 37.330310906922819, 34.96502370937668 ], [ 37.327210320599818, 34.96442943017405 ], [ 37.311552362051827, 34.9676592068069 ], [ 37.30080366405781, 34.9676592068069 ], [ 37.29832319535916, 34.96727163317928 ], [ 37.295532668297994, 34.966263942826686 ], [ 37.292432081974994, 34.964377753330609 ], [ 37.289796583645398, 34.960657050282634 ], [ 37.288401319665127, 34.957995714430638 ], [ 37.286075880597366, 34.950063381020186 ], [ 37.285145704610557, 34.948564765151787 ], [ 37.283905471160551, 34.947324530802462 ], [ 37.276619093796114, 34.94169179893737 ], [ 37.275223829815843, 34.940425727065644 ], [ 37.274293653829034, 34.938952948719589 ], [ 37.273518508372433, 34.937454331951812 ], [ 37.269642774794193, 34.924431870834155 ], [ 37.268092482082352, 34.921176255779585 ], [ 37.267162306095543, 34.919625963067745 ], [ 37.266077101377107, 34.918230699087474 ], [ 37.260599400042281, 34.913476467265127 ], [ 37.254398228295599, 34.909549059541462 ], [ 37.251452670704168, 34.909083971548 ], [ 37.247421909293678, 34.909083971548 ], [ 37.235484652894399, 34.911641953713172 ], [ 37.226803013348388, 34.914897568767742 ], [ 37.223392367763552, 34.916602892009848 ], [ 37.221842075051711, 34.917713935149948 ], [ 37.21951663598395, 34.920349433479544 ], [ 37.215795932935919, 34.92624054596439 ], [ 37.211920200256998, 34.934689643312367 ], [ 37.210834994639242, 34.936084907292638 ], [ 37.209439731558348, 34.937299303220243 ], [ 37.206804234128072, 34.939469713556434 ], [ 37.203548618174182, 34.941381741474174 ], [ 37.19982791512615, 34.94306122539524 ], [ 37.195745476872219, 34.944327297266909 ], [ 37.193265008173569, 34.944637356528744 ], [ 37.187994012413697, 34.944689033372185 ], [ 37.182567987022935, 34.942751166133405 ], [ 37.15915856311716, 34.929754544336731 ], [ 37.152957391370478, 34.925207018089395 ], [ 37.149391717054073, 34.921744697459815 ], [ 37.147841424342232, 34.915956935963777 ], [ 37.146601189992907, 34.914665024771068 ], [ 37.144740838019231, 34.914251614520367 ], [ 37.136472608723864, 34.918023993512463 ], [ 37.128411085902883, 34.920659491842059 ], [ 37.126550733929207, 34.921537990985485 ], [ 37.123605178136415, 34.923605048534114 ], [ 37.118334180577961, 34.926188870020326 ], [ 37.116318800772035, 34.926886502010461 ], [ 37.114148390435844, 34.927377428425586 ], [ 37.111667921737194, 34.927635809944661 ], [ 37.106862013970726, 34.927661648366382 ], [ 37.103761427647726, 34.92624054596439 ], [ 37.10019575423064, 34.923863430053245 ], [ 37.089343703449117, 34.912107041706577 ], [ 37.086346469913622, 34.910840968935531 ], [ 37.081540562147211, 34.909497381798701 ], [ 37.064487338719687, 34.90830882429276 ], [ 37.055805698274355, 34.906241766744131 ], [ 37.049139439433588, 34.902598578061884 ], [ 36.999478386818055, 34.869551500201567 ], [ 36.993432244702319, 34.86686432502853 ], [ 36.972761671913588, 34.860895698177899 ], [ 36.948112013658488, 34.906448473218461 ], [ 36.917364536444154, 34.956677964816208 ], [ 36.916589390088234, 34.958331611214874 ], [ 36.911628451791614, 34.963705959762194 ], [ 36.896745639599544, 34.973989569762807 ], [ 36.884033236844402, 34.977167670451593 ], [ 36.873646274955604, 34.978330390435133 ], [ 36.867445103208922, 34.977348538504202 ], [ 36.861037224987911, 34.975462348108863 ], [ 36.846309442426787, 34.967374985966785 ], [ 36.841813592123572, 34.965876370098385 ], [ 36.837472772350566, 34.965462958049045 ], [ 36.828015984649937, 34.965411282104981 ], [ 36.821969841634882, 34.964248562121441 ], [ 36.816078729150036, 34.962052314262849 ], [ 36.802694532826422, 34.951794541784636 ], [ 36.798663771415875, 34.950683499543857 ], [ 36.767192823789742, 34.948771470726797 ], [ 36.763937208735172, 34.949004014723471 ], [ 36.762231887291762, 34.949494941138596 ], [ 36.754273716358909, 34.949288235563586 ], [ 36.745437046282632, 34.94763458916492 ], [ 36.741716343234657, 34.94742788269059 ], [ 36.739080844905061, 34.947686266008361 ], [ 36.73768558092479, 34.94840973642016 ], [ 36.727918735761023, 34.945360826041281 ], [ 36.649267206016702, 34.912597968121702 ], [ 36.600381300656466, 34.914122423311142 ], [ 36.577695347162546, 34.909781603538136 ], [ 36.565913120394157, 34.903812974888865 ], [ 36.562037387715236, 34.902417710908594 ], [ 36.559711947748156, 34.901849270127684 ], [ 36.55537112797515, 34.902133490967799 ], [ 36.549480014590984, 34.903192857264514 ], [ 36.540178257420621, 34.90660350195003 ], [ 36.536612583104215, 34.909135647492121 ], [ 36.534752232029859, 34.911616116190771 ], [ 36.534752232029859, 34.916060288751282 ], [ 36.53459720239897, 34.918153184721689 ], [ 36.533977084774619, 34.919936021430203 ], [ 36.532891880056184, 34.921331285410474 ], [ 36.531341587344343, 34.92241649012891 ], [ 36.529584588158173, 34.923294990171655 ], [ 36.527620884296368, 34.923811754109124 ], [ 36.525398797116793, 34.92412181247164 ], [ 36.518112419752356, 34.92453522452098 ], [ 36.516252068678, 34.925181178768355 ], [ 36.515011834328675, 34.926395574696016 ], [ 36.51454674723459, 34.928204250725571 ], [ 36.51454674723459, 34.930167955486752 ], [ 36.515166863959564, 34.931924953773603 ], [ 36.515942010315484, 34.933526923328827 ], [ 36.51950768373257, 34.937402656007748 ], [ 36.521678094068761, 34.94034821180054 ], [ 36.522453241324001, 34.941976019777485 ], [ 36.522918329317406, 34.943836370851784 ], [ 36.522763298787197, 34.945851752456406 ], [ 36.522143182062166, 34.947531236377415 ], [ 36.521213006075357, 34.949081529089256 ], [ 36.519972771726032, 34.950270087494516 ], [ 36.518422479014191, 34.951355292212952 ], [ 36.515011834328675, 34.953163967343187 ], [ 36.511136101649754, 34.954455878535953 ], [ 36.508035516226073, 34.954714260055027 ], [ 36.504314813178041, 34.954559231323458 ], [ 36.495013055108359, 34.952543849718893 ], [ 36.492997674403114, 34.951717027418852 ], [ 36.491912468785358, 34.951045233850436 ], [ 36.490517205704464, 34.950115057863627 ], [ 36.482455681984106, 34.941330063731414 ], [ 36.474704216626264, 34.930452175427547 ], [ 36.450157912057989, 34.908153795561191 ], [ 36.449847852796154, 34.900247301471779 ], [ 36.450778028782963, 34.893839423250768 ], [ 36.449847852796154, 34.891100572133666 ], [ 36.447987501721798, 34.887844957079096 ], [ 36.442716505961982, 34.882367254844894 ], [ 36.44070112525668, 34.879111639790324 ], [ 36.439770949269871, 34.876269435885717 ], [ 36.439770949269871, 34.867587796339706 ], [ 36.439460890008036, 34.865624091578525 ], [ 36.437755567665306, 34.86342784282067 ], [ 36.430159132837673, 34.856322333508842 ], [ 36.427833692870593, 34.853531806447677 ], [ 36.423027785104182, 34.852188219310847 ], [ 36.419410434843655, 34.851619778529937 ], [ 36.388714633573443, 34.857200833551587 ], [ 36.381583285839952, 34.867019355558796 ], [ 36.378947788409675, 34.868673001058141 ], [ 36.374917026999185, 34.870326646557487 ], [ 36.367630649634748, 34.870274969714046 ], [ 36.364220004949232, 34.869758205776577 ], [ 36.361532830675571, 34.868879705733832 ], [ 36.358742302715086, 34.866657620352896 ], [ 36.347270135208532, 34.853221747185842 ], [ 36.344324579415797, 34.851051336849707 ], [ 36.342619256173691, 34.850276191393107 ], [ 36.340448845837557, 34.849811103399702 ], [ 36.336573114057956, 34.852033188780638 ], [ 36.331922235023114, 34.856270657564778 ], [ 36.322930536215267, 34.867381089865376 ], [ 36.318589714643622, 34.871308499387737 ], [ 36.31564415885083, 34.873504747246272 ], [ 36.313473749413959, 34.873659775977842 ], [ 36.311458367809394, 34.874124863971247 ], [ 36.309442987104148, 34.874900011226543 ], [ 36.308822870379117, 34.876631171091674 ], [ 36.309598015835718, 34.879163315734388 ], [ 36.3157991875824, 34.885881253217235 ], [ 36.317504509925186, 34.887276516298186 ], [ 36.319984978623836, 34.888878485853411 ], [ 36.319829949892267, 34.891875719388906 ], [ 36.31316369015218, 34.900919094140875 ], [ 36.309442987104148, 34.907637030724345 ], [ 36.304585401594977, 34.912727159330927 ], [ 36.27900556825233, 34.927661648366382 ], [ 36.275129835573409, 34.930788072211726 ], [ 36.273114454868164, 34.933630276116332 ], [ 36.270168898176109, 34.939934801549839 ], [ 36.266138136765562, 34.953887436855723 ], [ 36.260091993750507, 34.966289781248406 ], [ 36.25420088126566, 34.968460191584541 ], [ 36.245364211189383, 34.970113837083886 ], [ 36.206865268617207, 34.96711660444771 ], [ 36.190690545232428, 34.967736721172741 ], [ 36.144026727051767, 34.975333156899637 ], [ 36.136843703374211, 35.00220490233437 ], [ 36.147282342106394, 35.007527574038306 ], [ 36.157359247431316, 35.00794098608759 ], [ 36.166661003702359, 35.006390693375749 ], [ 36.171001825274004, 35.006261502166581 ], [ 36.174877557053605, 35.007036648522501 ], [ 36.178133172108176, 35.00871613244351 ], [ 36.184334343854857, 35.012772732275778 ], [ 36.187900018171263, 35.014245509722457 ], [ 36.19213748605614, 35.015227363452027 ], [ 36.201129184863987, 35.016390082536248 ], [ 36.205004916643588, 35.017630316885572 ], [ 36.21120608928959, 35.02148021114283 ], [ 36.21523685070008, 35.022668769548034 ], [ 36.229344517435493, 35.023676459001365 ], [ 36.233220249215094, 35.025407619765815 ], [ 36.240041537686807, 35.032022203561837 ], [ 36.243607212003212, 35.034606025047992 ], [ 36.250428501374245, 35.038455919305193 ], [ 36.253890822003825, 35.042202459875625 ], [ 36.256991408326826, 35.047938544528165 ], [ 36.265207960778753, 35.071115424437266 ], [ 36.265052931147807, 35.086489163044405 ], [ 36.25358076364131, 35.204414780817444 ], [ 36.252960646016959, 35.22343170810683 ], [ 36.250428501374245, 35.262395737773033 ], [ 36.224693638400652, 35.363500677913919 ], [ 36.208105502966589, 35.40228384042689 ], [ 36.201904331219907, 35.421455797347164 ], [ 36.201284213595557, 35.425176500395139 ], [ 36.220507847359272, 35.535350653709656 ], [ 36.224383579138816, 35.602013251110634 ], [ 36.221593052077651, 35.633329169105821 ], [ 36.218957553748112, 35.644517117570899 ], [ 36.216477085049405, 35.65105418610176 ], [ 36.212911410733, 35.656841945799158 ], [ 36.201129184863987, 35.670045274070105 ], [ 36.199423861621881, 35.673068346027321 ], [ 36.199888949615286, 35.677254137068758 ], [ 36.202834507206717, 35.682473455985189 ], [ 36.212911410733, 35.69094839085551 ], [ 36.228104282186848, 35.699604193778498 ], [ 36.230739779617124, 35.704022528816608 ], [ 36.232755161221689, 35.710275377406731 ], [ 36.234460483564419, 35.735570990808583 ], [ 36.238646274605856, 35.74438182246314 ], [ 36.254820997990635, 35.755931505234742 ], [ 36.259626905757045, 35.74895518623282 ], [ 36.261952345724183, 35.74670726243022 ], [ 36.265828078403047, 35.744071764100624 ], [ 36.270013869444483, 35.741798000976928 ], [ 36.277610305171436, 35.739834296215804 ], [ 36.285361768730638, 35.739007473016443 ], [ 36.298229201116726, 35.739989324947373 ], [ 36.310063103829179, 35.743322455267048 ], [ 36.313628778145585, 35.745053616031555 ], [ 36.31734948119356, 35.746397203168385 ], [ 36.321535272234996, 35.747094835158521 ], [ 36.325876092008002, 35.747094835158521 ], [ 36.329906854317869, 35.745777086443354 ], [ 36.333627557365844, 35.743348293688769 ], [ 36.339208612387552, 35.737612209935492 ], [ 36.341844109817771, 35.733271389263166 ], [ 36.343859491422393, 35.729163113486891 ], [ 36.344789665610563, 35.725726630379654 ], [ 36.346029900859207, 35.722471015325084 ], [ 36.347890251933563, 35.719473781789588 ], [ 36.361532830675571, 35.715908108372503 ], [ 36.405147739376673, 35.714822902754747 ], [ 36.412279087110164, 35.71120555339354 ], [ 36.413829379822005, 35.698389797850894 ], [ 36.407473179343754, 35.654516505832078 ], [ 36.393365512608284, 35.600462958398793 ], [ 36.391350131903039, 35.58268626635811 ], [ 36.399721713985912, 35.515196844858508 ], [ 36.398016391643125, 35.509874173154572 ], [ 36.395845982206311, 35.505895086788826 ], [ 36.393830600601689, 35.50367300140789 ], [ 36.392900424614879, 35.500598253506553 ], [ 36.392900424614879, 35.500133165513148 ], [ 36.414656203021309, 35.460006414964084 ], [ 36.419617140418666, 35.442591458129243 ], [ 36.426128371427183, 35.436596991957572 ], [ 36.447677443359282, 35.431584377716831 ], [ 36.482455681984106, 35.445511176399634 ], [ 36.487106561018948, 35.44600210191544 ], [ 36.493772820759034, 35.44411591241942 ], [ 36.511446160911589, 35.436907050320087 ], [ 36.514701775966159, 35.434943346458226 ], [ 36.517337274295755, 35.432462876860257 ], [ 36.520747918081952, 35.4263908963228 ], [ 36.523383416411491, 35.419983019001108 ], [ 36.525088738754278, 35.417037462308997 ], [ 36.527104120358842, 35.414169419982727 ], [ 36.529584588158173, 35.411740628127461 ], [ 36.532891880056184, 35.409621893735391 ], [ 36.53707767109762, 35.408174953811056 ], [ 36.541883578864031, 35.407348131511014 ], [ 36.551960484188953, 35.40672801388672 ], [ 36.571184116154029, 35.407761541761715 ], [ 36.581105990948686, 35.40667633704328 ], [ 36.647871942036488, 35.391586819276256 ], [ 36.699393344827001, 35.390088202508537 ], [ 36.81979943219801, 35.417037462308997 ], [ 36.824450311232852, 35.417270006305728 ], [ 36.828946160636804, 35.417037462308997 ], [ 36.833286981309129, 35.415874742325457 ], [ 36.837007684357104, 35.414324448714297 ], [ 36.866928338372077, 35.392284451266391 ], [ 36.870855746995119, 35.386548367513114 ], [ 36.872406039706959, 35.383318589980945 ], [ 36.876436802016769, 35.377582506227668 ], [ 36.879072300346365, 35.375257066260588 ], [ 36.882327915400936, 35.373241686454662 ], [ 36.893024936551569, 35.36773814489942 ], [ 36.895660434881165, 35.36528351552181 ], [ 36.897520785955464, 35.362415473195483 ], [ 36.899846225922545, 35.359857490131049 ], [ 36.904032016963981, 35.358410549307393 ], [ 36.910233188710663, 35.358668931725788 ], [ 36.92036176908033, 35.360245062859349 ], [ 36.927648146444767, 35.360710150852753 ], [ 36.93446943491648, 35.362725532457318 ], [ 36.940515577931535, 35.366136176243515 ], [ 36.958033889352464, 35.388227851434181 ], [ 36.979789665960311, 35.405849513843975 ], [ 36.983355340276717, 35.409518540947886 ], [ 36.991571892728643, 35.421920885340569 ], [ 36.994362419789809, 35.424504705927404 ], [ 36.997618035743756, 35.425899969907675 ], [ 37.002578973141055, 35.424995632342529 ], [ 37.005834588195682, 35.422980252536604 ], [ 37.008315056894332, 35.420370591729409 ], [ 37.010330437599578, 35.417528387824802 ], [ 37.012035759942364, 35.414556992711027 ], [ 37.013431023922578, 35.411275540134056 ], [ 37.014206170278499, 35.407554837086025 ], [ 37.014981316634419, 35.399932562937408 ], [ 37.014826287902849, 35.395824286261757 ], [ 37.014206170278499, 35.39166433454136 ], [ 37.012965935929174, 35.387711087496655 ], [ 37.003354120396295, 35.371148790484256 ], [ 37.002268914778597, 35.367298896227055 ], [ 37.002113885147651, 35.363319810760629 ], [ 37.002423944409486, 35.359547430869213 ], [ 37.005989617826572, 35.345491440977185 ], [ 37.006454705819976, 35.341615709197583 ], [ 37.006609734551603, 35.329368395335166 ], [ 37.007694940169358, 35.326009425694394 ], [ 37.009555291243657, 35.323167222689165 ], [ 37.012500847935769, 35.320867621143805 ], [ 37.016221550983744, 35.318981432547048 ], [ 37.02040734202518, 35.317637844510898 ], [ 37.025058221060021, 35.316836859733257 ], [ 37.034670038391539, 35.316862698154978 ], [ 37.057200962254569, 35.319084784435233 ], [ 37.078129916562375, 35.318361314023377 ], [ 37.083245883590621, 35.319084784435233 ], [ 37.089033644187282, 35.320790106777963 ], [ 37.093167759284654, 35.32270213469576 ], [ 37.096320020652399, 35.325234280237794 ], [ 37.104536574003646, 35.336732286166068 ], [ 37.110272657756923, 35.342649237971955 ], [ 37.113373244079924, 35.34469045709892 ], [ 37.116628859134494, 35.346524969751556 ], [ 37.120349562182525, 35.347791043421921 ], [ 37.124380323593016, 35.348436998568616 ], [ 37.128876173896288, 35.347971910575211 ], [ 37.133527052931129, 35.347015896166681 ], [ 37.13740278471073, 35.345853176183141 ], [ 37.140503371033731, 35.34600820581403 ], [ 37.142053663745571, 35.348850408819317 ], [ 37.142673781369865, 35.39050161455782 ], [ 37.14143354702054, 35.397994697497268 ], [ 37.140193311771895, 35.401301988495959 ], [ 37.138332960697539, 35.404144192400565 ], [ 37.135542432737054, 35.406469631468269 ], [ 37.132286817682484, 35.408174953811056 ], [ 37.128101026641048, 35.408898424222855 ], [ 37.124225294861446, 35.408174953811056 ], [ 37.121124709437765, 35.40631460183738 ], [ 37.118489211108169, 35.403937485926235 ], [ 37.115853712778573, 35.401198634809134 ], [ 37.109962599394407, 35.391483466488751 ], [ 37.107792189058273, 35.388692939427585 ], [ 37.105001661997107, 35.386315823516441 ], [ 37.101435987680645, 35.384662177117775 ], [ 37.097405226270155, 35.383680325186845 ], [ 37.092754347235314, 35.383370265925009 ], [ 37.087896762625462, 35.383912869183519 ], [ 37.083710971584026, 35.385178941055244 ], [ 37.080455357428775, 35.387194321760546 ], [ 37.077819859099179, 35.38972646730258 ], [ 37.076579623850535, 35.392982083256527 ], [ 37.076269566387339, 35.396909491879512 ], [ 37.07688968311237, 35.401146958865013 ], [ 37.079525181441966, 35.407968248236045 ], [ 37.098800490250426, 35.442255561345064 ], [ 37.103916457278672, 35.449541937810181 ], [ 37.109652541031949, 35.454373683998313 ], [ 37.122675002149606, 35.460910753428493 ], [ 37.143293898094896, 35.468429673890341 ], [ 37.150321893040882, 35.471814480154137 ], [ 37.156368036055994, 35.478325711162597 ], [ 37.181017694311095, 35.514214992927577 ], [ 37.191714714562409, 35.535169786556366 ], [ 37.194815300885409, 35.539794827169544 ], [ 37.197605828845894, 35.542947089436609 ], [ 37.21641604966095, 35.551473700251051 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "SY-DI", "NAME_1": "Damascus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.307141060811261, 33.564078434771943 ], [ 36.334954653634327, 33.562111817106654 ], [ 36.351097636346822, 33.543883161778467 ], [ 36.35012570393809, 33.532893497636792 ], [ 36.352092321603322, 33.514351103020942 ], [ 36.343102069804672, 33.492437363193744 ], [ 36.320120342779546, 33.472986209945589 ], [ 36.316608920065562, 33.460690535040158 ], [ 36.297504634431334, 33.463499989233071 ], [ 36.236820432317074, 33.489066018881658 ], [ 36.214344802370704, 33.476423476362299 ], [ 36.209006839494009, 33.486537510197934 ], [ 36.23033101886142, 33.505221417634289 ], [ 36.206478331709604, 33.514912993140115 ], [ 36.190745390387463, 33.513227320984072 ], [ 36.183159865235552, 33.531488770989995 ], [ 36.221628573499856, 33.549457141833614 ], [ 36.251513876064507, 33.550312111115034 ], [ 36.307141060811261, 33.564078434771943 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/thailand.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/thailand.geojson new file mode 100644 index 000000000000..63edef2d4c35 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/thailand.geojson @@ -0,0 +1,83 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "TH-32", "NAME_1": "Surin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.794211874000041, 14.364834900000105 ], [ 103.674890991000041, 14.38648732500009 ], [ 103.671480347000113, 14.429559631000089 ], [ 103.647192423000092, 14.443977356000104 ], [ 103.596136109000042, 14.404341533000135 ], [ 103.533400920000076, 14.419069316000048 ], [ 103.449685100000124, 14.371578674000133 ], [ 103.422503296000059, 14.384833679000039 ], [ 103.362868694000042, 14.353466085000022 ], [ 103.243277626761028, 14.341931315178044 ], [ 103.257242873259941, 14.44989350048462 ], [ 103.230887892662054, 14.533790188466412 ], [ 103.233058302998245, 14.598075669956188 ], [ 103.274141067056576, 14.678742581305073 ], [ 103.287990349574955, 14.770132351326936 ], [ 103.395684035090085, 14.867025662004664 ], [ 103.443174677369427, 14.933404039464847 ], [ 103.440022414202986, 15.002392075933528 ], [ 103.466119012382478, 15.033036200360357 ], [ 103.444879998812837, 15.185998440075934 ], [ 103.499967075919756, 15.299893297337803 ], [ 103.454078404095014, 15.339684150203368 ], [ 103.434648064756345, 15.34588532195005 ], [ 103.429583774571483, 15.322372545256769 ], [ 103.41258222888672, 15.321881618841644 ], [ 103.407311233126848, 15.34588532195005 ], [ 103.366951938581053, 15.352706611321025 ], [ 103.303906692339922, 15.315060330369931 ], [ 103.257087843629051, 15.31175303847192 ], [ 103.191252069427435, 15.37131012656107 ], [ 103.167739291834835, 15.366375026686114 ], [ 103.147223748676993, 15.421617133423979 ], [ 103.119318475367322, 15.414795844052946 ], [ 103.102678663989082, 15.428955185833161 ], [ 103.11575280195018, 15.482285265552548 ], [ 103.343232456312762, 15.401721706991168 ], [ 103.451184524246344, 15.445672512476449 ], [ 103.525546910161722, 15.435233872844947 ], [ 103.574897901716724, 15.463139146154674 ], [ 103.786099480806342, 15.438541164742958 ], [ 103.887436964943959, 15.47091644903486 ], [ 103.909657831343793, 15.443295396565304 ], [ 103.942317335576547, 15.441486721435012 ], [ 103.945366245955427, 15.421746323733828 ], [ 103.97647545837566, 15.429058539519986 ], [ 103.986035597964417, 15.41024831780561 ], [ 104.060966424660705, 15.402135118141189 ], [ 104.073472120941574, 15.346557115518465 ], [ 103.9780257510875, 15.262479560383383 ], [ 103.989342888963108, 15.234367581498645 ], [ 103.97244469606585, 15.164268500091168 ], [ 103.993373651272918, 15.137655137974207 ], [ 104.015284458410974, 15.026008206313634 ], [ 103.91689253096547, 14.858421535925117 ], [ 103.929088168883823, 14.832815863261487 ], [ 103.999884882281435, 14.803722032445819 ], [ 104.008308140308372, 14.729773058579781 ], [ 104.062310011797592, 14.654402981412431 ], [ 104.045980258781867, 14.544202988776874 ], [ 104.062310011797592, 14.454079291526057 ], [ 104.045724185822451, 14.357285453061195 ], [ 104.00138269100006, 14.345068665000042 ], [ 103.97399418100008, 14.367289530000065 ], [ 103.919837281000071, 14.364576518000121 ], [ 103.885162394000076, 14.340417786000074 ], [ 103.824029175000135, 14.368038839000079 ], [ 103.794211874000041, 14.364834900000105 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-33", "NAME_1": "Si Sa Ket" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.838489218000063, 14.411447042000063 ], [ 104.771671590000039, 14.439869080000094 ], [ 104.712863810000044, 14.406847839000108 ], [ 104.69286503100011, 14.433977966000086 ], [ 104.66837040200005, 14.409638367000071 ], [ 104.610441121000122, 14.418965963000105 ], [ 104.542848348000064, 14.360390727000095 ], [ 104.492618856000036, 14.374007467000098 ], [ 104.452621297000064, 14.356928406000051 ], [ 104.24746586100008, 14.40108591700006 ], [ 104.201267131000066, 14.377986552000081 ], [ 104.177030884000089, 14.404212342000093 ], [ 104.140909058000034, 14.365997620000115 ], [ 104.110213257000112, 14.380441183000045 ], [ 104.045724185822451, 14.357285453061195 ], [ 104.062310011797592, 14.454079291526057 ], [ 104.045980258781867, 14.544202988776874 ], [ 104.062310011797592, 14.654402981412431 ], [ 104.008308140308372, 14.729773058579781 ], [ 103.999884882281435, 14.803722032445819 ], [ 103.929088168883823, 14.832815863261487 ], [ 103.91689253096547, 14.858421535925117 ], [ 104.017764927109681, 15.038694769747792 ], [ 103.993373651272918, 15.137655137974207 ], [ 103.97244469606585, 15.164268500091168 ], [ 103.989342888963108, 15.234367581498645 ], [ 103.9780257510875, 15.262479560383383 ], [ 104.076727735996201, 15.354308579976987 ], [ 104.060966424660705, 15.402135118141189 ], [ 103.986035597964417, 15.41024831780561 ], [ 104.084324171723097, 15.536287136142391 ], [ 104.129489374035359, 15.564528307135674 ], [ 104.151038445967458, 15.500630398374199 ], [ 104.254081252447804, 15.367925320297275 ], [ 104.294905634087684, 15.342526353208598 ], [ 104.386631300893782, 15.319194444567927 ], [ 104.403839553052876, 15.289170436866129 ], [ 104.468383416961103, 15.259585680534713 ], [ 104.577317335926296, 15.238760077215773 ], [ 104.601295200612981, 15.254960639022272 ], [ 104.66139489106132, 15.237959093337452 ], [ 104.674469029022418, 15.253875434303836 ], [ 104.715241733818914, 15.198090725206782 ], [ 104.702684360694661, 15.182019355508828 ], [ 104.736842482594454, 15.171477363089821 ], [ 104.721184524046521, 15.139980577041968 ], [ 104.688576694858511, 15.133546861298612 ], [ 104.694312778611788, 14.971567084353467 ], [ 104.724388462257707, 14.927771308499075 ], [ 104.813323602002583, 14.892011217044001 ], [ 104.830066766168272, 14.853563951315266 ], [ 104.817974481037425, 14.811085924176041 ], [ 104.915281202865174, 14.651715807138771 ], [ 104.882518344945595, 14.66096588836507 ], [ 104.860814244281926, 14.650423895946005 ], [ 104.833012322860384, 14.560093492220858 ], [ 104.871666294164129, 14.488211575004186 ], [ 104.852752719662249, 14.447051296580071 ], [ 104.887996047179797, 14.442477931911014 ], [ 104.918381789188174, 14.401472683117845 ], [ 104.838489218000063, 14.411447042000063 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-34", "NAME_1": "Ubon Ratchathani" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.047313681000048, 14.214068909000048 ], [ 105.007729533000088, 14.243834534000115 ], [ 104.975948527000128, 14.301117859000087 ], [ 104.973829794000039, 14.380647888000098 ], [ 104.915620966734195, 14.393216761944018 ], [ 104.8977112163995, 14.434183865093303 ], [ 104.852752719662249, 14.447051296580071 ], [ 104.872131382157534, 14.480098375339708 ], [ 104.833012322860384, 14.560093492220858 ], [ 104.850427280594488, 14.632802231737571 ], [ 104.875076938849588, 14.659493110019014 ], [ 104.914816114871769, 14.654842230984173 ], [ 104.817974481037425, 14.811085924176041 ], [ 104.830066766168272, 14.853563951315266 ], [ 104.813323602002583, 14.892011217044001 ], [ 104.724388462257707, 14.927771308499075 ], [ 104.694312778611788, 14.971567084353467 ], [ 104.688576694858511, 15.133546861298612 ], [ 104.721184524046521, 15.139980577041968 ], [ 104.736842482594454, 15.171477363089821 ], [ 104.702684360694661, 15.182019355508828 ], [ 104.715241733818914, 15.198090725206782 ], [ 104.674469029022418, 15.253875434303836 ], [ 104.66139489106132, 15.237959093337452 ], [ 104.601295200612981, 15.254960639022272 ], [ 104.573596632878264, 15.239173489265113 ], [ 104.468383416961103, 15.259585680534713 ], [ 104.418257277251485, 15.28480377957078 ], [ 104.435775587773094, 15.386864732321499 ], [ 104.423838332273192, 15.374669094403146 ], [ 104.391333855872688, 15.396605739962922 ], [ 104.381928745914877, 15.434019476917285 ], [ 104.403684524321307, 15.52838064205298 ], [ 104.491947869598448, 15.534762681852271 ], [ 104.519129673395696, 15.558249620123831 ], [ 104.512101678449653, 15.583390203894794 ], [ 104.625169711612841, 15.558275458545552 ], [ 104.660154656711995, 15.594862372300611 ], [ 104.642016228566035, 15.627986965426089 ], [ 104.660774774336346, 15.640570176972062 ], [ 104.735602248245129, 15.569566758898816 ], [ 104.789087355796767, 15.563055527890299 ], [ 104.813943719626934, 15.506909085385985 ], [ 104.866240268773367, 15.507038275695834 ], [ 104.895230746801474, 15.471355699505921 ], [ 104.922877638592126, 15.485825100547913 ], [ 104.941739537149886, 15.539749456771972 ], [ 104.939465774026189, 15.613879298690676 ], [ 105.021114537306005, 15.804978745772473 ], [ 105.01909915570144, 15.865104275541853 ], [ 105.057288039011723, 15.904559230723919 ], [ 105.029486119388878, 15.956726589560446 ], [ 105.034757115148693, 15.999747219058918 ], [ 105.091239455336563, 16.054627589691506 ], [ 105.106979007575092, 16.095853281203972 ], [ 105.42207116700007, 16.009876608000084 ], [ 105.362488240000062, 15.954789531000088 ], [ 105.360627889000057, 15.919391175000086 ], [ 105.412045939000109, 15.79976023400009 ], [ 105.447961060000068, 15.764878642 ], [ 105.525424032000046, 15.763483378000032 ], [ 105.612912232000099, 15.7214704390001 ], [ 105.650997762000031, 15.634602356000116 ], [ 105.604282267000031, 15.439213766000123 ], [ 105.486253297000076, 15.37490244600005 ], [ 105.477468302000091, 15.352810771000051 ], [ 105.499017375000051, 15.324672953000089 ], [ 105.558031861000075, 15.325138041000031 ], [ 105.563974650000091, 15.27253143300004 ], [ 105.463102254000091, 15.189435730000056 ], [ 105.443775269000128, 15.133806050000132 ], [ 105.451940145000037, 15.094764506000033 ], [ 105.520876506000093, 15.066135763000148 ], [ 105.553536011000062, 15.005338440000031 ], [ 105.593068482000035, 14.990791525000077 ], [ 105.534157349000111, 14.934024964000059 ], [ 105.550642131000075, 14.902295634000041 ], [ 105.543045695000103, 14.880100607000102 ], [ 105.517775920000133, 14.877671814000053 ], [ 105.524390503000063, 14.837235006000057 ], [ 105.501549520000026, 14.827338970000071 ], [ 105.489147176000074, 14.786333720000115 ], [ 105.505115194000098, 14.736362610000057 ], [ 105.495761759000061, 14.659881490000075 ], [ 105.507543986000087, 14.564047547000129 ], [ 105.41597334800008, 14.428164368000111 ], [ 105.367655884000044, 14.414547628000022 ], [ 105.335099732000117, 14.385712178000077 ], [ 105.294740438000133, 14.399070536000096 ], [ 105.268592163000051, 14.364369812000078 ], [ 105.155007365000074, 14.330470073000072 ], [ 105.101418905000116, 14.230527852000108 ], [ 105.047313681000048, 14.214068909000048 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-27", "NAME_1": "Sa Kaeo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.913929613960477, 14.164946285142946 ], [ 102.869772177000073, 14.020618185000075 ], [ 102.772827189000054, 13.936075541 ], [ 102.698619833000066, 13.761796774000061 ], [ 102.542350301000113, 13.669709371000039 ], [ 102.541058391000035, 13.648599549000096 ], [ 102.597747437000066, 13.605449728000067 ], [ 102.513204794000103, 13.567157491000074 ], [ 102.332233928000107, 13.564599508000072 ], [ 102.313423706000094, 13.541009217000067 ], [ 102.33011519400003, 13.496360779000042 ], [ 102.329185825865125, 13.272626857843193 ], [ 102.28557091716408, 13.23870127994013 ], [ 102.270378045710174, 13.202269394916641 ], [ 102.225522901760485, 13.202682806965981 ], [ 102.174776646225212, 13.244928290108476 ], [ 102.132867058967577, 13.192476711331153 ], [ 102.038867629037782, 13.16136749891092 ], [ 102.033699986065471, 13.26293752704521 ], [ 101.94559166862058, 13.454760444538863 ], [ 101.94962243003107, 13.487161567252485 ], [ 101.993392369262381, 13.505661728805705 ], [ 101.989981723677545, 13.58017914525135 ], [ 101.915360956243092, 13.592064723907868 ], [ 101.920321892741129, 13.633018296756973 ], [ 101.890039504419576, 13.663119818824555 ], [ 101.876241896945942, 13.72314199490711 ], [ 101.904767286980643, 13.755413927310883 ], [ 101.90647260932343, 13.808769842754032 ], [ 101.855881381620407, 13.837088528113043 ], [ 101.869575637205855, 13.933206692434908 ], [ 101.910813429995756, 13.965091051211004 ], [ 101.912518752338485, 14.035810248444193 ], [ 101.990911899664411, 14.066816108076921 ], [ 102.045068800784463, 14.130869045569966 ], [ 102.052820266142305, 14.185620224993386 ], [ 102.154002719749656, 14.135778307023259 ], [ 102.192294955847501, 14.185361843474254 ], [ 102.22986372333213, 14.14174693387389 ], [ 102.290221796198921, 14.127639268037797 ], [ 102.361431918947858, 14.156138821449417 ], [ 102.491036411601044, 14.14311636033176 ], [ 102.517701450561447, 14.087047431293911 ], [ 102.54937910376259, 14.092111721478773 ], [ 102.539612257699503, 14.120301214729238 ], [ 102.594182569969576, 14.14867157603237 ], [ 102.713865187828105, 14.132135118341012 ], [ 102.819388462107781, 14.16525971146649 ], [ 102.875199008727236, 14.154950263044213 ], [ 102.913929613960477, 14.164946285142946 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-31", "NAME_1": "Buri Ram" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.016929610912769, 14.238872480980206 ], [ 102.934057658000029, 14.200968934000073 ], [ 102.913929613960477, 14.164946285142946 ], [ 102.884242385277844, 14.156371365446148 ], [ 102.819388462107781, 14.16525971146649 ], [ 102.713865187828105, 14.132135118341012 ], [ 102.594182569969576, 14.14867157603237 ], [ 102.585966018416968, 14.211045030503726 ], [ 102.617178582725387, 14.285743313203341 ], [ 102.576044142722992, 14.370130926700881 ], [ 102.571961705368381, 14.434984849870887 ], [ 102.51506595313117, 14.489736030193626 ], [ 102.486488886253028, 14.557690537887993 ], [ 102.50932986937795, 14.652956041488096 ], [ 102.442357211815818, 14.853796495311997 ], [ 102.504523959812843, 14.808114529062266 ], [ 102.567827590271008, 14.814625759171406 ], [ 102.575579054729531, 14.837621771927218 ], [ 102.548190546256649, 14.897669786431493 ], [ 102.559145948926357, 14.935548611379318 ], [ 102.523592563945613, 14.96735545489031 ], [ 102.620589227410846, 14.939501858424023 ], [ 102.707353956819588, 14.952911892269981 ], [ 102.75386274626868, 14.984951279777704 ], [ 102.783525017865259, 15.04698883746488 ], [ 102.780424432441578, 15.074971625140392 ], [ 102.853804966426026, 15.153907375724771 ], [ 102.982892694242423, 15.193749905433776 ], [ 102.97467614089112, 15.329917304140281 ], [ 103.001237827963337, 15.356530667156562 ], [ 102.95292036338401, 15.385469469240604 ], [ 102.97529625941479, 15.429058539519986 ], [ 102.995811801673256, 15.421617133423979 ], [ 103.01844608012243, 15.445000718908034 ], [ 103.002168003050883, 15.469753729950639 ], [ 102.964754266096463, 15.472621772276966 ], [ 102.922017857438107, 15.511456610734001 ], [ 102.827760044190654, 15.51161164036489 ], [ 102.798252802225022, 15.547423406864709 ], [ 102.791121453592154, 15.607316391738095 ], [ 102.789261101618479, 15.639510809776027 ], [ 102.817631463820931, 15.621294867264282 ], [ 102.868584425830534, 15.636539415561572 ], [ 102.896489699140261, 15.763379217776674 ], [ 102.946460809218934, 15.789217434437035 ], [ 103.008679234059343, 15.725758775247243 ], [ 103.010539585133699, 15.699222927496066 ], [ 102.978551873570041, 15.666795966360723 ], [ 103.088415969421419, 15.548973700475869 ], [ 103.079734328076711, 15.511689154730675 ], [ 103.11575280195018, 15.482285265552548 ], [ 103.102678663989082, 15.428955185833161 ], [ 103.119318475367322, 15.414795844052946 ], [ 103.147223748676993, 15.421617133423979 ], [ 103.167739291834835, 15.366375026686114 ], [ 103.191252069427435, 15.37131012656107 ], [ 103.257087843629051, 15.31175303847192 ], [ 103.303906692339922, 15.315060330369931 ], [ 103.366951938581053, 15.352706611321025 ], [ 103.407311233126848, 15.34588532195005 ], [ 103.41258222888672, 15.321881618841644 ], [ 103.429583774571483, 15.322372545256769 ], [ 103.434648064756345, 15.34588532195005 ], [ 103.454078404095014, 15.339684150203368 ], [ 103.499967075919756, 15.299893297337803 ], [ 103.444879998812837, 15.185998440075934 ], [ 103.466119012382478, 15.033036200360357 ], [ 103.440022414202986, 15.002392075933528 ], [ 103.443174677369427, 14.933404039464847 ], [ 103.395684035090085, 14.867025662004664 ], [ 103.287990349574955, 14.770132351326936 ], [ 103.274141067056576, 14.678742581305073 ], [ 103.233058302998245, 14.598075669956188 ], [ 103.230887892662054, 14.533790188466412 ], [ 103.257242873259941, 14.44989350048462 ], [ 103.243277626761028, 14.341931315178044 ], [ 103.118025757000112, 14.31323598200008 ], [ 103.016929610912769, 14.238872480980206 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-23", "NAME_1": "Trat" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.765012412000033, 12.044563616000119 ], [ 102.843003785000121, 11.866046855000064 ], [ 102.913800496000135, 11.765536194000063 ], [ 102.928786662000107, 11.668694560000048 ], [ 102.913584832000026, 11.645900783000059 ], [ 102.893321160000028, 11.769680080000057 ], [ 102.77702884200005, 11.902533270000049 ], [ 102.76693769600007, 12.011786200000074 ], [ 102.631846550000034, 12.152044989000046 ], [ 102.65357506600003, 12.159165757000039 ], [ 102.604502800000034, 12.203924872000073 ], [ 102.605723504000082, 12.221258856000077 ], [ 102.56185957100007, 12.202093817000048 ], [ 102.557302280000044, 12.183742580000057 ], [ 102.582367384000065, 12.049261786000045 ], [ 102.553884311000047, 12.056789455000057 ], [ 102.55046634200005, 12.090969143000052 ], [ 102.504242384000065, 12.133368231000077 ], [ 102.350352410000028, 12.195705471000053 ], [ 102.318369988000029, 12.18032461100006 ], [ 102.28646894600007, 12.202541408000059 ], [ 102.263194207000026, 12.289536851000037 ], [ 102.290049675000034, 12.282904364000046 ], [ 102.336273634000065, 12.307440497000073 ], [ 102.374454380065572, 12.390665187848128 ], [ 102.332441440919695, 12.448697820747839 ], [ 102.3476343123736, 12.490297348743638 ], [ 102.329650913858529, 12.556908271099815 ], [ 102.363602330183369, 12.592565008868064 ], [ 102.412281529069276, 12.565744941176092 ], [ 102.39481489539105, 12.601401678944342 ], [ 102.395435012116081, 12.671268215455768 ], [ 102.444786004570403, 12.729843450714668 ], [ 102.495196133994341, 12.74602984909825 ], [ 102.477961467000114, 12.719638164000088 ], [ 102.486384725000107, 12.661192119000106 ], [ 102.58854903100007, 12.609825745000052 ], [ 102.762078491000125, 12.436089579000054 ], [ 102.765127401000029, 12.41634918200009 ], [ 102.720065552000108, 12.36121042900001 ], [ 102.692211955000118, 12.178482564000149 ], [ 102.699963420000131, 12.138743388000066 ], [ 102.765012412000033, 12.044563616000119 ] ] ], [ [ [ 102.56413821700005, 11.707953192000048 ], [ 102.589610222000033, 11.710028387000079 ], [ 102.605967644000032, 11.684515692000048 ], [ 102.591563347000033, 11.61859772300005 ], [ 102.605723504000082, 11.611761786000045 ], [ 102.598317905000044, 11.563381252000056 ], [ 102.530039910000028, 11.60492584800005 ], [ 102.54420006600003, 11.626044012000079 ], [ 102.530039910000028, 11.680080471000053 ], [ 102.555186394000032, 11.759833075000074 ], [ 102.570811394000032, 11.732814846000053 ], [ 102.56413821700005, 11.707953192000048 ] ] ], [ [ [ 102.39966881600003, 12.043158270000049 ], [ 102.441172722000033, 11.96743398600006 ], [ 102.427500847000033, 11.961371161000045 ], [ 102.379161004000082, 12.002834377000056 ], [ 102.376149936000047, 11.970892645000049 ], [ 102.310883009000065, 11.98110586100006 ], [ 102.318369988000029, 11.961167710000041 ], [ 102.29037519600007, 11.974839585000041 ], [ 102.29420006600003, 12.056789455000057 ], [ 102.249522332000026, 12.153021552000041 ], [ 102.310883009000065, 12.146185614000046 ], [ 102.342784050000034, 12.123602606000077 ], [ 102.39966881600003, 12.043158270000049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-22", "NAME_1": "Chanthaburi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.490096772000129, 12.995187554000054 ], [ 102.467212769000071, 12.969467876000067 ], [ 102.478891643000054, 12.953629049000071 ], [ 102.464835653000137, 12.927532451000076 ], [ 102.506641887000114, 12.787515157000129 ], [ 102.495273072000032, 12.746096497000082 ], [ 102.441840447878349, 12.728060614006097 ], [ 102.397295363190437, 12.675686550493879 ], [ 102.39481489539105, 12.601401678944342 ], [ 102.412281529069276, 12.565744941176092 ], [ 102.363602330183369, 12.592565008868064 ], [ 102.329650913858529, 12.556908271099815 ], [ 102.3476343123736, 12.490297348743638 ], [ 102.332441440919695, 12.448697820747839 ], [ 102.374454380065572, 12.390665187848128 ], [ 102.355527952410583, 12.358299673958243 ], [ 102.33725019600007, 12.376125393000052 ], [ 102.324473504000082, 12.365301825000074 ], [ 102.34506269600007, 12.344794012000079 ], [ 102.330739780000044, 12.327826239000046 ], [ 102.291677280000044, 12.318060614000046 ], [ 102.286143425000034, 12.385687567000048 ], [ 102.30404707100007, 12.427394924000055 ], [ 102.270030144000032, 12.392564195000091 ], [ 102.270030144000032, 12.440375067000048 ], [ 102.242442254000082, 12.426255601000037 ], [ 102.222178582000026, 12.440375067000048 ], [ 102.201019727000073, 12.433539130000042 ], [ 102.214366082000026, 12.419623114000046 ], [ 102.208506707000026, 12.399400132000039 ], [ 102.235850457000026, 12.413723049000055 ], [ 102.242523634000065, 12.402777411000045 ], [ 102.242686394000032, 12.372137762000079 ], [ 102.273448113000029, 12.326157945000091 ], [ 102.264821811000047, 12.306219794000071 ], [ 102.12435957100007, 12.410549221000053 ], [ 102.08716881600003, 12.464748440000051 ], [ 102.07195071700005, 12.488511460000041 ], [ 102.078135613000029, 12.509263414000088 ], [ 102.081797722000033, 12.501125393000052 ], [ 102.098643425000034, 12.495591539000088 ], [ 102.085459832000026, 12.504339911000045 ], [ 102.112315300000034, 12.537258205000057 ], [ 102.092946811000047, 12.523382880000042 ], [ 102.078135613000029, 12.529730536000045 ], [ 102.098643425000034, 12.543402411000045 ], [ 102.047862175000034, 12.542303778000075 ], [ 102.064463738000029, 12.570746161000045 ], [ 102.009287957000026, 12.564520575000074 ], [ 102.043223504000082, 12.523504950000074 ], [ 102.064463738000029, 12.522935289000088 ], [ 102.056976759000065, 12.468329169000071 ], [ 102.008962436000047, 12.534084377000056 ], [ 101.960785352000073, 12.537258205000057 ], [ 101.949880405000044, 12.606350002000056 ], [ 101.934255405000044, 12.583726304000038 ], [ 101.947764519000032, 12.529730536000045 ], [ 101.899587436000047, 12.569728908000059 ], [ 101.892588738000029, 12.583726304000038 ], [ 101.913096550000034, 12.57758209800005 ], [ 101.90943444100003, 12.594224351000037 ], [ 101.885752800000034, 12.598049221000053 ], [ 101.848806186000047, 12.654527085000041 ], [ 101.78908834703671, 12.697844911410769 ], [ 101.818829379871943, 12.763329779945366 ], [ 101.825650669242975, 12.889911199742073 ], [ 101.807150506790435, 12.897120062740669 ], [ 101.789322137006991, 12.941923529847031 ], [ 101.743536817969755, 12.956780504516644 ], [ 101.751029900909145, 13.007009996114391 ], [ 101.716406691015948, 13.029592596820862 ], [ 101.687054477781885, 13.114135239949348 ], [ 101.717646926264592, 13.171728624176637 ], [ 101.776764763882682, 13.184570217241742 ], [ 101.849628533929661, 13.235523180150608 ], [ 101.886473830103114, 13.220278631853375 ], [ 101.907712843672755, 13.271929225853057 ], [ 101.995407749068306, 13.336188869820489 ], [ 102.033699986065471, 13.26293752704521 ], [ 102.043518508072623, 13.159119574208944 ], [ 102.132867058967577, 13.192476711331153 ], [ 102.174776646225212, 13.244928290108476 ], [ 102.225522901760485, 13.202682806965981 ], [ 102.265417108312874, 13.198316147871935 ], [ 102.28557091716408, 13.23870127994013 ], [ 102.329185825865125, 13.272626857843193 ], [ 102.382050008000135, 13.136615295000084 ], [ 102.490096772000129, 12.995187554000054 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-91", "NAME_1": "Satun" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 100.199200201827807, 6.699413639527847 ], [ 100.187558634000084, 6.707963766000077 ], [ 100.166836386000057, 6.695122172000083 ], [ 100.156087688000127, 6.620578919000124 ], [ 100.16719812000008, 6.566137797000053 ], [ 100.14570072500004, 6.539524435000104 ], [ 100.127289259000065, 6.44228750200007 ], [ 100.108164910000028, 6.479559637000079 ], [ 100.090098504000082, 6.484849351000094 ], [ 100.103526238000029, 6.533189195000091 ], [ 100.080577019000032, 6.536810614000046 ], [ 100.063324415000068, 6.50657786700009 ], [ 100.00131269600007, 6.567450262000079 ], [ 99.991221550000034, 6.597845770000049 ], [ 99.96412194100003, 6.593736070000091 ], [ 99.97396894600007, 6.622707424000055 ], [ 99.960948113000029, 6.660549221000053 ], [ 99.937347852000073, 6.664740302000041 ], [ 99.867523634000065, 6.762600002000056 ], [ 99.851735873000052, 6.776434637000079 ], [ 99.824880405000044, 6.769598700000074 ], [ 99.797211134000065, 6.821682033000059 ], [ 99.685801629000082, 6.877346096000053 ], [ 99.690440300000034, 6.935492255000042 ], [ 99.713877800000034, 6.942206122000073 ], [ 99.68091881600003, 6.973618882000039 ], [ 99.679209832000026, 7.026760158000059 ], [ 99.745608779590981, 7.129663842120777 ], [ 99.824067416777837, 7.142019151062982 ], [ 99.837399937157329, 7.094063421689555 ], [ 99.883495314557081, 7.068767808287703 ], [ 99.928040399244992, 7.137652492868256 ], [ 99.988553500843352, 7.069232896281108 ], [ 100.055577834349549, 7.055512804072634 ], [ 100.072992792083653, 6.993733628803909 ], [ 100.120018344570894, 6.932135320688474 ], [ 100.213397657775658, 6.885264796932802 ], [ 100.194329055441528, 6.798861802730016 ], [ 100.209831984358573, 6.744601548822402 ], [ 100.199200201827807, 6.699413639527847 ] ] ], [ [ [ 99.247813347000033, 6.57485586100006 ], [ 99.257578972000033, 6.560939846000053 ], [ 99.217295769000032, 6.536932684000078 ], [ 99.174001498000052, 6.539007880000042 ], [ 99.158457879000082, 6.554388739000046 ], [ 99.247813347000033, 6.57485586100006 ] ] ], [ [ [ 99.672373894000032, 6.516546942000048 ], [ 99.658702019000032, 6.492336330000057 ], [ 99.634148075000041, 6.552054746000067 ], [ 99.600271030000044, 6.58344147300005 ], [ 99.656993035000028, 6.723822333000044 ], [ 99.70443769600007, 6.558294989000046 ], [ 99.699717644000032, 6.533270575000074 ], [ 99.672373894000032, 6.516546942000048 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-90", "NAME_1": "Songkhla" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 100.227504517000057, 6.688869324000095 ], [ 100.199200201827807, 6.699413639527847 ], [ 100.209831984358573, 6.744601548822402 ], [ 100.194329055441528, 6.798861802730016 ], [ 100.213397657775658, 6.885264796932802 ], [ 100.120018344570894, 6.932135320688474 ], [ 100.072992792083653, 6.993733628803909 ], [ 100.06462121000078, 7.045022488497011 ], [ 100.030618116832557, 7.091737983521114 ], [ 100.072165968884292, 7.136412258518931 ], [ 100.154538201676644, 7.180259711216706 ], [ 100.283832635967315, 7.208345852579043 ], [ 100.298302037009364, 7.232401230732194 ], [ 100.342020297598594, 7.250410468568248 ], [ 100.378754102000073, 7.309800523000092 ], [ 100.384938998000052, 7.266302802000041 ], [ 100.426872371000059, 7.245308942000065 ], [ 100.392344597000033, 7.222560940000051 ], [ 100.436559835000082, 7.160134853000045 ], [ 100.494802280000044, 7.136623440000051 ], [ 100.555869370000039, 7.144694505000075 ], [ 100.588633660000028, 7.179592190000051 ], [ 100.585419616000081, 7.224401972000067 ], [ 100.78443444100003, 6.96710846600007 ], [ 100.827346865000038, 6.951698926000063 ], [ 100.849945509000065, 6.962062893000052 ], [ 100.997573081000041, 6.856675229000075 ], [ 101.06804446700005, 6.85773346600007 ], [ 101.041254104393374, 6.798293361949106 ], [ 101.038773634795348, 6.732741806788965 ], [ 101.062803176325474, 6.65383189552557 ], [ 101.101147089266703, 6.637863877715745 ], [ 101.105642937771336, 6.59618683535416 ], [ 101.029006788732261, 6.477020982332476 ], [ 100.931234978911107, 6.443121242851078 ], [ 100.911184523746726, 6.318426012550447 ], [ 100.877491489840338, 6.299822496411082 ], [ 100.823732217667668, 6.298604272968817 ], [ 100.805608765000045, 6.414803365000125 ], [ 100.796307007000109, 6.433949484000038 ], [ 100.733881877000044, 6.456377055000118 ], [ 100.729954468000074, 6.493196513000029 ], [ 100.630684041000109, 6.444775696000065 ], [ 100.46723148600006, 6.513221131000066 ], [ 100.38739139900008, 6.522083639000073 ], [ 100.329203735000078, 6.557766215000072 ], [ 100.273961630000088, 6.696259053000091 ], [ 100.227504517000057, 6.688869324000095 ] ] ], [ [ [ 100.342458530000044, 7.938788153000075 ], [ 100.440196160000028, 7.476996161000045 ], [ 100.573985222000033, 7.194973049000055 ], [ 100.548139216000038, 7.197050183000044 ], [ 100.472422722000033, 7.258856512000079 ], [ 100.425547722000033, 7.267564195000091 ], [ 100.438975457000026, 7.294134833000044 ], [ 100.422318517000065, 7.36997402500009 ], [ 100.40812190500003, 7.378690254000048 ], [ 100.406016472000033, 7.52765534100007 ], [ 100.389507916000071, 7.566181028000074 ], [ 100.325563914000043, 7.574479835000091 ], [ 100.289561394000032, 7.51821523600006 ], [ 100.272634311000047, 7.531073309000078 ], [ 100.275563998000052, 7.576971747000073 ], [ 100.32349694100003, 7.616400458000044 ], [ 100.326996290000068, 7.655218817000048 ], [ 100.28874759200005, 7.788316148000092 ], [ 100.250498894000032, 7.791978257000039 ], [ 100.20085696700005, 7.772324937000064 ], [ 100.129630161902412, 7.801720486511215 ], [ 100.155209996144379, 7.874429226027928 ], [ 100.342458530000044, 7.938788153000075 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-95", "NAME_1": "Yala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.832997274000093, 6.236674703000034 ], [ 100.823732217667668, 6.298604272968817 ], [ 100.877491489840338, 6.299822496411082 ], [ 100.911184523746726, 6.318426012550447 ], [ 100.925033807164425, 6.43371613199389 ], [ 101.029006788732261, 6.477020982332476 ], [ 101.1034208523904, 6.583784490961477 ], [ 101.101147089266703, 6.637863877715745 ], [ 101.158714634173009, 6.600062568033081 ], [ 101.217832472690418, 6.596264349719945 ], [ 101.261757439753978, 6.625435695800718 ], [ 101.297930943258393, 6.67579437950701 ], [ 101.304855585416874, 6.595489203364025 ], [ 101.333122593033181, 6.55166758908797 ], [ 101.462468703267973, 6.569961045965499 ], [ 101.513886753270981, 6.596031805723271 ], [ 101.557656690703652, 6.545053005291948 ], [ 101.601685012353414, 6.555388292135945 ], [ 101.613673943797437, 6.540479641522211 ], [ 101.536262649301761, 6.442966213220132 ], [ 101.437095574601074, 6.415500190381465 ], [ 101.403712599956464, 6.225175890554908 ], [ 101.382008498393418, 6.200345364247141 ], [ 101.400301955271004, 6.156420396284261 ], [ 101.435390253157607, 6.131770738029104 ], [ 101.451203241336486, 6.084900214273432 ], [ 101.486601596686285, 6.0523182235072 ], [ 101.500201425000057, 5.892693601000047 ], [ 101.248992554000097, 5.786986389000049 ], [ 101.22501469000008, 5.699213969000098 ], [ 101.149980509000102, 5.638649190000137 ], [ 101.105435426000099, 5.637641500000072 ], [ 101.05980513500009, 5.709575094000101 ], [ 100.998620239000047, 5.729548035000036 ], [ 100.965288940000107, 5.792412415000115 ], [ 101.015311727000096, 5.898349101000093 ], [ 101.071122274000061, 5.919846497000051 ], [ 101.078770386000031, 5.93816579200012 ], [ 101.094273315000066, 6.085753683000121 ], [ 101.052518759000122, 6.134562073000083 ], [ 101.053448934000073, 6.157609761000046 ], [ 101.089157349000061, 6.188848165000124 ], [ 101.081664266000132, 6.246467387000081 ], [ 101.023063192000109, 6.240989685000102 ], [ 100.974280640000075, 6.272615662000092 ], [ 100.910098511000115, 6.235796204000081 ], [ 100.855114787000048, 6.247914328000078 ], [ 100.832997274000093, 6.236674703000034 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-96", "NAME_1": "Narathiwat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.073090040000068, 6.257513739000046 ], [ 102.060002482000073, 6.094797058000083 ], [ 101.934738810000113, 5.98172902400006 ], [ 101.912931356000115, 5.85930755600009 ], [ 101.784153686000082, 5.738100484000057 ], [ 101.726792847000127, 5.786469625000095 ], [ 101.686691936000045, 5.761199849000135 ], [ 101.665918009000052, 5.765592346000034 ], [ 101.630778036000038, 5.8284050500001 ], [ 101.634085327000037, 5.855586853000077 ], [ 101.605146525000066, 5.866103007000049 ], [ 101.579308310000044, 5.906333109000073 ], [ 101.500201425000057, 5.892693601000047 ], [ 101.486601596686285, 6.0523182235072 ], [ 101.382318556755934, 6.196547145934005 ], [ 101.403712599956464, 6.225175890554908 ], [ 101.437095574601074, 6.415500190381465 ], [ 101.551765578218806, 6.457926541576626 ], [ 101.613208855804032, 6.533503323419609 ], [ 101.60638756733232, 6.583862006226582 ], [ 101.580807733090353, 6.606522122198157 ], [ 101.615224237408597, 6.627606106136852 ], [ 101.661319614808349, 6.6181493193356 ], [ 101.678372837336553, 6.577118232120711 ], [ 101.723480665000068, 6.574408270000049 ], [ 101.808360222000033, 6.464544989000046 ], [ 101.908702019000032, 6.401922919000071 ], [ 102.073090040000068, 6.257513739000046 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-57", "NAME_1": "Chiang Rai" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.937134644000139, 20.445006409000129 ], [ 99.985917196000116, 20.38702545200006 ], [ 100.036146688000031, 20.373124492 ], [ 100.099295288000121, 20.317804870000074 ], [ 100.102964315000122, 20.263596293000134 ], [ 100.134641968000039, 20.239101665000092 ], [ 100.167714885000123, 20.253622742000019 ], [ 100.167094767000037, 20.292612610000035 ], [ 100.209159383000042, 20.312998963000055 ], [ 100.240371948000131, 20.372814433000102 ], [ 100.306517782000128, 20.399686178000096 ], [ 100.344344930000091, 20.389971009000064 ], [ 100.461030314000027, 20.190706686000041 ], [ 100.529243205000057, 20.149727275000103 ], [ 100.546503133000044, 20.167917379000031 ], [ 100.543350871000086, 20.066579895000089 ], [ 100.48397465000005, 19.880699768000099 ], [ 100.431419719000075, 19.838273417000082 ], [ 100.383515666000051, 19.763859355000065 ], [ 100.390048157996034, 19.724387049322843 ], [ 100.345120883921595, 19.676292833347588 ], [ 100.18161665178701, 19.609991970253191 ], [ 100.13846683107937, 19.475969143461214 ], [ 100.087100457919746, 19.452146308405418 ], [ 100.081157667692196, 19.429796250796301 ], [ 100.016975538989868, 19.433387763534427 ], [ 99.940287714006729, 19.384476019752469 ], [ 99.912072382334543, 19.398790392062949 ], [ 99.922304314592395, 19.46276581519021 ], [ 99.909281854374058, 19.4826354032013 ], [ 99.746191034288756, 19.455789496188288 ], [ 99.687383254133806, 19.429796250796301 ], [ 99.641752963828196, 19.501238919340665 ], [ 99.613796013675028, 19.502944240784075 ], [ 99.572558220885128, 19.422974962324645 ], [ 99.581239862229836, 19.298822333483884 ], [ 99.543206007651065, 19.16076874438204 ], [ 99.563049758139812, 19.150769355221541 ], [ 99.561499465427971, 19.124569404254601 ], [ 99.533749220849813, 19.072867133411478 ], [ 99.49711063025137, 19.06785451917068 ], [ 99.436907587015469, 19.005946152692786 ], [ 99.399855585267005, 18.998427232230995 ], [ 99.384145948976311, 19.055762234039832 ], [ 99.329782343180568, 19.116662909265813 ], [ 99.310610386260294, 19.178209540537864 ], [ 99.342288038562117, 19.268565781785412 ], [ 99.313866001314864, 19.463308417549399 ], [ 99.294435662875514, 19.499378567366989 ], [ 99.323167759384546, 19.54276093207136 ], [ 99.261259392906595, 19.641385403513539 ], [ 99.318310174774695, 19.701459255540215 ], [ 99.346318800871927, 19.708513088008601 ], [ 99.382905714626986, 19.798404242162007 ], [ 99.417063837426099, 19.813881334456028 ], [ 99.385696241688152, 19.889535631564115 ], [ 99.419854363587945, 19.957386786470977 ], [ 99.449051548090438, 19.974982612257747 ], [ 99.500676303668456, 19.973096421862351 ], [ 99.525687697129456, 19.961495063146629 ], [ 99.553127883345098, 19.915477200112662 ], [ 99.590231561037683, 20.007822984543111 ], [ 99.504862094709836, 20.062160752816453 ], [ 99.504448683559872, 20.080660916168313 ], [ 99.564600050851652, 20.124146632760869 ], [ 99.508733655000128, 20.152804504000059 ], [ 99.525841919000072, 20.196184387000116 ], [ 99.486257772000044, 20.245483704000023 ], [ 99.466414022000038, 20.322171530000062 ], [ 99.420628703000034, 20.375553284000048 ], [ 99.439955689000044, 20.382167867000064 ], [ 99.502897583000049, 20.345219218000111 ], [ 99.651932414000044, 20.306823629000078 ], [ 99.787169637000034, 20.334082947000084 ], [ 99.837709188000133, 20.416842753000068 ], [ 99.937134644000139, 20.445006409000129 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-50", "NAME_1": "Chiang Mai" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.295675090000088, 20.062497457000106 ], [ 99.441402629000038, 20.101616516000021 ], [ 99.508733655000128, 20.152804504000059 ], [ 99.565426874050956, 20.120580960243103 ], [ 99.504448683559872, 20.080660916168313 ], [ 99.507342564307862, 20.057380683471763 ], [ 99.590231561037683, 20.007822984543111 ], [ 99.553127883345098, 19.915477200112662 ], [ 99.525687697129456, 19.961495063146629 ], [ 99.500676303668456, 19.973096421862351 ], [ 99.449051548090438, 19.974982612257747 ], [ 99.419854363587945, 19.957386786470977 ], [ 99.385696241688152, 19.889535631564115 ], [ 99.417063837426099, 19.813881334456028 ], [ 99.382905714626986, 19.798404242162007 ], [ 99.346318800871927, 19.708513088008601 ], [ 99.318310174774695, 19.701459255540215 ], [ 99.261259392906595, 19.641385403513539 ], [ 99.323167759384546, 19.54276093207136 ], [ 99.294435662875514, 19.499378567366989 ], [ 99.313866001314864, 19.463308417549399 ], [ 99.342288038562117, 19.268565781785412 ], [ 99.310610386260294, 19.178209540537864 ], [ 99.329782343180568, 19.116662909265813 ], [ 99.384145948976311, 19.055762234039832 ], [ 99.399855585267005, 18.998427232230995 ], [ 99.371433547120489, 18.975379544430439 ], [ 99.368643020059267, 18.897348131411093 ], [ 99.323632847377951, 18.857453924858703 ], [ 99.347352329646242, 18.851304429955462 ], [ 99.364767287380346, 18.779706733578848 ], [ 99.322702671391141, 18.629173284819217 ], [ 99.351899855893578, 18.613463650327162 ], [ 99.349884475188333, 18.587392890569447 ], [ 99.321772496303595, 18.535225530833543 ], [ 99.295365838862324, 18.539411321874979 ], [ 99.215267369193668, 18.596591294952304 ], [ 99.227566359000207, 18.634780178262588 ], [ 99.183072951155737, 18.703716538787205 ], [ 99.143178746401986, 18.703768214731326 ], [ 99.048352492373567, 18.654546414385493 ], [ 99.010628697056688, 18.667672227391392 ], [ 98.926551141022287, 18.529101874352023 ], [ 98.775087518074486, 18.443138128821545 ], [ 98.700001661747251, 18.42264842408548 ], [ 98.708683303091902, 18.401202704041566 ], [ 98.691475050932809, 18.366476142260126 ], [ 98.706822951118284, 18.33730479617941 ], [ 98.680933059413121, 18.30141551441443 ], [ 98.79327762216451, 18.237336738499664 ], [ 98.81637698770777, 18.14338898451399 ], [ 98.803819614583517, 18.000891221952315 ], [ 98.815911899714365, 17.969032700698563 ], [ 98.855651075736489, 17.965131130497241 ], [ 98.909807976856598, 17.826560777457871 ], [ 98.897664015781686, 17.745893866109043 ], [ 98.839062941201746, 17.71537893289144 ], [ 98.751213007074568, 17.756565049737219 ], [ 98.710388625434689, 17.756177476109599 ], [ 98.65545657795866, 17.731166083547919 ], [ 98.647240024607413, 17.695457668936228 ], [ 98.609206170928019, 17.65850901907595 ], [ 98.624450718325932, 17.594378567217063 ], [ 98.608896111666184, 17.571408392883029 ], [ 98.555566033745436, 17.555543727860709 ], [ 98.535670608211944, 17.514512641545139 ], [ 98.534740432225135, 17.461544297930971 ], [ 98.566263054896012, 17.422916165048946 ], [ 98.549778274048094, 17.363410752903917 ], [ 98.571534051555204, 17.344109604774417 ], [ 98.567503290144657, 17.292769070036513 ], [ 98.410768671436983, 17.251324570772283 ], [ 98.335631138266365, 17.303931179180552 ], [ 98.339248487627572, 17.341577460131646 ], [ 98.313927036703319, 17.3962511260886 ], [ 98.335217727116401, 17.423949692923998 ], [ 98.314237095065835, 17.444181017040307 ], [ 98.322453648417081, 17.522832545885251 ], [ 98.303540073915258, 17.570452379373819 ], [ 98.259460077220751, 17.58027090138097 ], [ 98.260700310670757, 17.648561305859573 ], [ 98.302609897928392, 17.69589691850797 ], [ 98.233518507772885, 17.728711453270932 ], [ 98.211969435840729, 17.778501695296995 ], [ 98.240236444356356, 17.839583238575585 ], [ 98.102467076094626, 17.967637436718292 ], [ 98.083656854380308, 18.014818019735799 ], [ 98.095749138611836, 18.063807277883541 ], [ 98.127271763081353, 18.09659597422484 ], [ 98.09218346609407, 18.232556668255597 ], [ 98.119210240260315, 18.308831082088773 ], [ 98.100089960183482, 18.348544419689176 ], [ 98.153471714048351, 18.398722236242179 ], [ 98.171920200556769, 18.440605984178831 ], [ 98.209488967142079, 18.451587226169522 ], [ 98.157967564351566, 18.485176907288405 ], [ 98.115489537212341, 18.539798896401919 ], [ 98.117504917018266, 18.598348294138475 ], [ 98.099934929653216, 18.637105618229668 ], [ 98.120605503341267, 18.769733181041431 ], [ 98.098849724934837, 18.776993719984148 ], [ 98.083501824749362, 18.830427150692458 ], [ 98.123706088764948, 18.93858592420105 ], [ 98.108461542266298, 18.992122707696808 ], [ 98.131922642116194, 19.041602892259675 ], [ 98.118435093005075, 19.082969876258744 ], [ 98.147735630295074, 19.109376531901432 ], [ 98.158587681076597, 19.149658311182122 ], [ 98.203907912120428, 19.16479950579253 ], [ 98.247367792089904, 19.141829332357759 ], [ 98.346844924253787, 19.030776679000496 ], [ 98.420070427708026, 19.02661672638078 ], [ 98.457587518349271, 19.007263902307216 ], [ 98.483529086897818, 19.036977850747178 ], [ 98.545592483006658, 19.02452383130975 ], [ 98.636698033087725, 19.055219630781323 ], [ 98.650650669292929, 19.124104316261196 ], [ 98.588897333345244, 19.203970241933121 ], [ 98.611273227577328, 19.28564484273528 ], [ 98.59246300676233, 19.38339081503409 ], [ 98.608275994941152, 19.478992214519053 ], [ 98.576960076945966, 19.514054673983992 ], [ 98.549984978723728, 19.608209133544676 ], [ 98.482598911810271, 19.664097195429235 ], [ 98.477800686000137, 19.705629272000081 ], [ 98.532620890000032, 19.675854390000055 ], [ 98.623778117000029, 19.737504375000086 ], [ 98.749248495000074, 19.763497620000052 ], [ 98.807849569000041, 19.806544088000052 ], [ 98.851877889000093, 19.784039001000039 ], [ 98.883710572000041, 19.745462545000052 ], [ 98.899316854000062, 19.748614808000113 ], [ 98.973834269000122, 19.788069764000042 ], [ 99.000912720000088, 19.821013489000094 ], [ 99.005873658000041, 19.972347921 ], [ 99.036466105000045, 20.075158183000028 ], [ 99.073466431000099, 20.101228943000123 ], [ 99.158422485000074, 20.123553162000078 ], [ 99.236453898000093, 20.102727560000019 ], [ 99.295675090000088, 20.062497457000106 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-58", "NAME_1": "Mae Hong Son" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.04562219200011, 19.807629293000062 ], [ 98.072907349000047, 19.777295227000096 ], [ 98.111354615000096, 19.777140198000055 ], [ 98.213260539000089, 19.717763978000036 ], [ 98.21915165200005, 19.676991272000052 ], [ 98.237548462000063, 19.664692281000029 ], [ 98.307311645000027, 19.689987895000073 ], [ 98.439603312000088, 19.687739970000067 ], [ 98.477800686000137, 19.705629272000081 ], [ 98.482598911810271, 19.664097195429235 ], [ 98.549984978723728, 19.608209133544676 ], [ 98.576960076945966, 19.514054673983992 ], [ 98.607242466166838, 19.482583726357859 ], [ 98.59246300676233, 19.38339081503409 ], [ 98.611273227577328, 19.28564484273528 ], [ 98.588897333345244, 19.203970241933121 ], [ 98.624450718325932, 19.167564195331352 ], [ 98.654991489965255, 19.1010307891396 ], [ 98.6404187361357, 19.059560452352969 ], [ 98.616234164974685, 19.04279144886624 ], [ 98.545592483006658, 19.02452383130975 ], [ 98.483529086897818, 19.036977850747178 ], [ 98.457587518349271, 19.007263902307216 ], [ 98.420070427708026, 19.02661672638078 ], [ 98.336561314253231, 19.034884954776828 ], [ 98.247367792089904, 19.141829332357759 ], [ 98.207783644799349, 19.164101873802394 ], [ 98.158587681076597, 19.149658311182122 ], [ 98.147735630295074, 19.109376531901432 ], [ 98.119675328253777, 19.086509711254166 ], [ 98.132387730109599, 19.046124579185971 ], [ 98.108358188579473, 18.997083645094108 ], [ 98.121225620965618, 18.921015936836 ], [ 98.083501824749362, 18.830427150692458 ], [ 98.098849724934837, 18.776993719984148 ], [ 98.120605503341267, 18.769733181041431 ], [ 98.099934929653216, 18.637105618229668 ], [ 98.117504917018266, 18.598348294138475 ], [ 98.115489537212341, 18.539798896401919 ], [ 98.157967564351566, 18.485176907288405 ], [ 98.209488967142079, 18.451587226169522 ], [ 98.171920200556769, 18.440605984178831 ], [ 98.153471714048351, 18.398722236242179 ], [ 98.100089960183482, 18.348544419689176 ], [ 98.119210240260315, 18.308831082088773 ], [ 98.09218346609407, 18.232556668255597 ], [ 98.127271763081353, 18.09659597422484 ], [ 98.095749138611836, 18.063807277883541 ], [ 98.083656854380308, 18.014818019735799 ], [ 98.102467076094626, 17.967637436718292 ], [ 98.240236444356356, 17.839583238575585 ], [ 98.211969435840729, 17.778501695296995 ], [ 98.233518507772885, 17.728711453270932 ], [ 98.302609897928392, 17.69589691850797 ], [ 98.243492059410983, 17.682874457390255 ], [ 98.198171828367151, 17.645150662073377 ], [ 98.119003533786042, 17.643677882828001 ], [ 97.907994430000088, 17.55486551400007 ], [ 97.76894657400004, 17.679180399000032 ], [ 97.749619588000087, 17.739848532000011 ], [ 97.676135702000124, 17.830333964000104 ], [ 97.699080038000034, 17.83333119800001 ], [ 97.685540813000102, 17.880718486000077 ], [ 97.720060669000077, 17.943195293000073 ], [ 97.754063762000101, 17.969033508000095 ], [ 97.720060669000077, 18.053059387000118 ], [ 97.694222453000123, 18.061508484000015 ], [ 97.684300578000034, 18.146102804000108 ], [ 97.617948039000112, 18.241678365000055 ], [ 97.643269491000069, 18.273020121000073 ], [ 97.637585083000033, 18.306325582000042 ], [ 97.573816366000131, 18.333093974000107 ], [ 97.528341105000095, 18.265320333000076 ], [ 97.486483195000119, 18.292140401000083 ], [ 97.45258345600007, 18.333610738000047 ], [ 97.443074992000106, 18.403348084000086 ], [ 97.351401001000113, 18.551168519000058 ], [ 97.388918091000107, 18.542228496000021 ], [ 97.427468710000085, 18.489518535000016 ], [ 97.509530884000071, 18.491275533000092 ], [ 97.617948039000112, 18.553158061000104 ], [ 97.745692180000049, 18.571063945000063 ], [ 97.759748169000034, 18.622792054000016 ], [ 97.723367961000065, 18.8519770300001 ], [ 97.65784224500004, 18.925719299000022 ], [ 97.70331750500003, 18.964373271000042 ], [ 97.727812134000089, 19.037082011000095 ], [ 97.810804485000119, 19.11221954299999 ], [ 97.812561483000081, 19.208466899000044 ], [ 97.764088990000118, 19.266396179000097 ], [ 97.798298787000135, 19.281408183000067 ], [ 97.806153606000066, 19.301096903000101 ], [ 97.767086222000046, 19.397525126000019 ], [ 97.842120403000138, 19.479380595000052 ], [ 97.848631633000082, 19.567643942000032 ], [ 97.885838664000119, 19.572811585000053 ], [ 98.008311809000077, 19.639112447000073 ], [ 98.017923624000105, 19.789387513000079 ], [ 98.04562219200011, 19.807629293000062 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-63", "NAME_1": "Tak" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.524559367000052, 16.85044545500007 ], [ 98.436192668000047, 17.011572571000031 ], [ 98.399915812000074, 17.040149638000102 ], [ 98.299663534000047, 17.064747620000091 ], [ 98.286227661000112, 17.087433574000059 ], [ 98.294392538000125, 17.107587382000034 ], [ 98.268347616000028, 17.107742411000075 ], [ 98.278992961000029, 17.13657786 ], [ 98.092647746000068, 17.312226054000021 ], [ 98.088720337000041, 17.372790833000082 ], [ 98.035493612000039, 17.40503692700004 ], [ 97.982783651000034, 17.505444234000024 ], [ 97.907994430000088, 17.55486551400007 ], [ 97.923976678081203, 17.568953761706723 ], [ 97.979373813550637, 17.574870714411929 ], [ 98.119003533786042, 17.643677882828001 ], [ 98.198171828367151, 17.645150662073377 ], [ 98.243492059410983, 17.682874457390255 ], [ 98.302609897928392, 17.69589691850797 ], [ 98.260700310670757, 17.648561305859573 ], [ 98.25806481324048, 17.593629259282864 ], [ 98.264110956255593, 17.57334625922249 ], [ 98.305865512983019, 17.568178616250123 ], [ 98.322453648417081, 17.522832545885251 ], [ 98.314237095065835, 17.444181017040307 ], [ 98.335217727116401, 17.423949692923998 ], [ 98.313927036703319, 17.3962511260886 ], [ 98.339248487627572, 17.341577460131646 ], [ 98.335631138266365, 17.303931179180552 ], [ 98.427976922696757, 17.249980984534773 ], [ 98.567503290144657, 17.292769070036513 ], [ 98.571534051555204, 17.344109604774417 ], [ 98.549778274048094, 17.363410752903917 ], [ 98.566263054896012, 17.422916165048946 ], [ 98.534740432225135, 17.461544297930971 ], [ 98.535670608211944, 17.514512641545139 ], [ 98.555566033745436, 17.555543727860709 ], [ 98.608896111666184, 17.571408392883029 ], [ 98.624450718325932, 17.594378567217063 ], [ 98.609206170928019, 17.65850901907595 ], [ 98.648893671006078, 17.698067327944841 ], [ 98.653441197253414, 17.728453070852538 ], [ 98.710388625434689, 17.756177476109599 ], [ 98.745631952052918, 17.697912299213215 ], [ 98.737260369970045, 17.673546860898909 ], [ 98.699329869078156, 17.651868597757584 ], [ 98.721344029003717, 17.485263780199261 ], [ 98.772607050275099, 17.483971869006552 ], [ 98.827694125583378, 17.503918972282747 ], [ 98.866503127417332, 17.535105699068765 ], [ 98.902676630022427, 17.631508084230688 ], [ 98.965825229950383, 17.641559150234571 ], [ 99.012075636981024, 17.610630804967684 ], [ 99.033004592188149, 17.510714423232059 ], [ 99.012540724974428, 17.422399400212157 ], [ 99.041531203002592, 17.383952135382742 ], [ 99.172685988367618, 17.334730333238269 ], [ 99.218419630561471, 17.395760198774155 ], [ 99.269941034251303, 17.392272039722855 ], [ 99.27779585239665, 17.323904119979147 ], [ 99.317379998787885, 17.260652167263686 ], [ 99.323322788116116, 17.121306667868396 ], [ 99.279759556258455, 17.059269111080596 ], [ 99.270716179707904, 16.951652939931193 ], [ 99.27893273305915, 16.929612942483288 ], [ 99.346008741610092, 16.887884223278263 ], [ 99.326578404070062, 16.81362519015039 ], [ 99.298828160391224, 16.784841416797917 ], [ 99.296812778786659, 16.723579006366037 ], [ 99.249477167037583, 16.653247381861149 ], [ 99.252732782092153, 16.562787786926833 ], [ 99.228393182199568, 16.533745632055286 ], [ 99.179507276839331, 16.526820989896748 ], [ 99.113981561000173, 16.475635483890471 ], [ 99.002877231698847, 16.479769598987787 ], [ 98.987839389875887, 16.460881862907627 ], [ 99.013315871330349, 16.397216498142882 ], [ 98.996986119214, 16.268774726372499 ], [ 99.004634230885017, 16.219423733018857 ], [ 99.024167922111872, 16.19554922111962 ], [ 99.010008580331657, 16.126173611023319 ], [ 99.026183302817117, 16.030081285123174 ], [ 99.068919712374793, 15.996749986422742 ], [ 99.083699171779301, 15.838025824532167 ], [ 99.119562616021881, 15.801464749198828 ], [ 99.124885287725817, 15.722994085708478 ], [ 99.102819451856192, 15.625971584720844 ], [ 99.043081495714432, 15.550317288512019 ], [ 99.043856642969672, 15.51292938908 ], [ 99.066542595564272, 15.489313258699895 ], [ 99.056414016093925, 15.392523301708991 ], [ 99.015641311297429, 15.266406969006425 ], [ 98.980397983779881, 15.220621649969132 ], [ 98.893323195109303, 15.275243639082646 ], [ 98.764545525655421, 15.466937364467753 ], [ 98.725271437626702, 15.492853095493956 ], [ 98.730232375024059, 15.515694077719502 ], [ 98.663673130410587, 15.618220120262322 ], [ 98.544055414825493, 15.675098034446705 ], [ 98.583780559000047, 15.976958720000127 ], [ 98.546986938000032, 16.047497050000104 ], [ 98.619127238000033, 16.051011048000063 ], [ 98.658711385000117, 16.116278381000072 ], [ 98.67958866400005, 16.126148580000077 ], [ 98.758446900000081, 16.119172262000077 ], [ 98.78304488100008, 16.102429098000115 ], [ 98.807229452000058, 16.110542298000027 ], [ 98.835444783000128, 16.144545390000062 ], [ 98.843092896000087, 16.208727519000107 ], [ 98.883710572000041, 16.258750305000078 ], [ 98.903347616000076, 16.363446757000034 ], [ 98.885260865000134, 16.406183167000066 ], [ 98.843402954000055, 16.438377584000094 ], [ 98.839578898000127, 16.472432353000059 ], [ 98.81870162000007, 16.455637512000081 ], [ 98.788625936000074, 16.374557190000061 ], [ 98.682379192000042, 16.27347808899999 ], [ 98.663258912000117, 16.286655579000083 ], [ 98.629462525000065, 16.402669170000095 ], [ 98.631632934000038, 16.463130595000038 ], [ 98.564246867000122, 16.55196238200007 ], [ 98.561559692000117, 16.601726787000089 ], [ 98.512260376000029, 16.643274638000079 ], [ 98.486318807000032, 16.700997213000065 ], [ 98.456656535000093, 16.723218079000091 ], [ 98.462547648000111, 16.760115052000017 ], [ 98.520528605000038, 16.8141169230001 ], [ 98.494380331000059, 16.831170146000105 ], [ 98.492519979000065, 16.857421774000059 ], [ 98.524559367000052, 16.85044545500007 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-71", "NAME_1": "Kanchanaburi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.533551066000086, 15.325964865000046 ], [ 98.559906047000027, 15.355317078000027 ], [ 98.569001099000047, 15.402135926000142 ], [ 98.544055414825493, 15.675098034446705 ], [ 98.663673130410587, 15.618220120262322 ], [ 98.730232375024059, 15.515694077719502 ], [ 98.725271437626702, 15.492853095493956 ], [ 98.764545525655421, 15.466937364467753 ], [ 98.893323195109303, 15.275243639082646 ], [ 98.980397983779881, 15.220621649969132 ], [ 98.99791629430149, 15.081663723302199 ], [ 99.069023065162298, 15.013941758705187 ], [ 99.134497105057335, 15.022442531997228 ], [ 99.237539910638304, 14.993736273909917 ], [ 99.279966261833465, 14.999782416025653 ], [ 99.309628534329363, 14.912035833786661 ], [ 99.28255008331962, 14.86563039802445 ], [ 99.289371371791333, 14.837931830289733 ], [ 99.323167759384546, 14.833771876770697 ], [ 99.382905714626986, 14.766024075550604 ], [ 99.437992791733905, 14.76542979634803 ], [ 99.435977411028659, 14.72264170994697 ], [ 99.458973422885094, 14.690783188693217 ], [ 99.504758741922387, 14.700214137972068 ], [ 99.529046664971588, 14.727912705706785 ], [ 99.544446242000447, 14.795970567087977 ], [ 99.599843378369201, 14.785015164418269 ], [ 99.658031040000481, 14.802636826828063 ], [ 99.784638300017491, 14.677967434049833 ], [ 99.867217238384796, 14.638434962703343 ], [ 99.846133254446102, 14.605413723264689 ], [ 99.890626662290572, 14.561101183472829 ], [ 99.825152622395592, 14.518364773015833 ], [ 99.822052036971911, 14.247967841043021 ], [ 99.810269810203522, 14.210528266566257 ], [ 99.765104607891317, 14.159136054085593 ], [ 99.773941277967538, 14.099630641940564 ], [ 99.811510043653527, 14.06177765541446 ], [ 99.812750278902229, 14.02265859611731 ], [ 99.880084669871565, 13.944523831209835 ], [ 99.802053256852275, 13.818097439245435 ], [ 99.673533969816788, 13.819802760688845 ], [ 99.580619744605485, 13.790450548354102 ], [ 99.536849807172814, 13.755413927310883 ], [ 99.473081088721244, 13.798563748018523 ], [ 99.342081332987107, 13.749703681080007 ], [ 99.29743289641101, 13.768513901895062 ], [ 99.251182489380312, 13.766756904507531 ], [ 99.203536818369457, 13.730712592212342 ], [ 99.146779342000116, 13.723674124000055 ], [ 99.101164999000105, 13.778824158000077 ], [ 99.090002890000108, 13.870110575000083 ], [ 99.007113892000064, 13.949640605000084 ], [ 98.952956991000065, 14.028033752000084 ], [ 98.935283651000134, 14.085394592000071 ], [ 98.872341756000139, 14.112473043000122 ], [ 98.753692668000099, 14.200116272000045 ], [ 98.706977173000098, 14.269982809000041 ], [ 98.670390259000044, 14.267915751000075 ], [ 98.593185670000082, 14.321607564000061 ], [ 98.547710409000047, 14.377676493000095 ], [ 98.478153931000122, 14.516505229000103 ], [ 98.452832479000051, 14.528054911000055 ], [ 98.418209269000045, 14.607559103000057 ], [ 98.297493123000038, 14.721247254000048 ], [ 98.243336222000039, 14.805118103000041 ], [ 98.221632121000027, 14.921260885000081 ], [ 98.191143026000077, 14.988130188000056 ], [ 98.198997844000075, 15.051382142000136 ], [ 98.160447225000041, 15.106365865000086 ], [ 98.190729615000066, 15.179177958000068 ], [ 98.177190390000078, 15.22059661900002 ], [ 98.232897583000124, 15.226797791000095 ], [ 98.28302372200011, 15.289972229000071 ], [ 98.392267700000104, 15.258242900000141 ], [ 98.394748169000081, 15.280076193000085 ], [ 98.377488241000094, 15.296457622000034 ], [ 98.399088990000052, 15.321779074000105 ], [ 98.39691858000009, 15.355730489000038 ], [ 98.474536580000063, 15.383480734000074 ], [ 98.515464315000088, 15.363456116000037 ], [ 98.533551066000086, 15.325964865000046 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-77", "NAME_1": "Prachuap Khiri Khan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.466310670000041, 12.126030986000103 ], [ 99.448844035000093, 12.147218323000061 ], [ 99.473752076000039, 12.18726755800013 ], [ 99.387039022000067, 12.465906880000148 ], [ 99.404747115686803, 12.566940858733631 ], [ 99.516230910328204, 12.585950425971362 ], [ 99.624648065355871, 12.545255235540651 ], [ 99.674050733754314, 12.57610606554249 ], [ 99.758748407413009, 12.58049856215888 ], [ 99.825462680758051, 12.627420762757993 ], [ 99.960785352000073, 12.63617584800005 ], [ 99.980804884000065, 12.454657294000071 ], [ 100.012217644000032, 12.368719794000071 ], [ 99.982758009000065, 12.270453192000048 ], [ 100.013926629000082, 12.230698960000041 ], [ 100.015635613000029, 12.18032461100006 ], [ 99.98764082100007, 12.153021552000041 ], [ 99.955332879000082, 12.072495835000041 ], [ 99.831228061000047, 11.924709377000056 ], [ 99.823252800000034, 11.878648179000038 ], [ 99.836924675000034, 11.843451239000046 ], [ 99.80982506600003, 11.824611721000053 ], [ 99.817067905000044, 11.741441148000092 ], [ 99.780446811000047, 11.737250067000048 ], [ 99.751800977000073, 11.709865627000056 ], [ 99.64185631600003, 11.523260809000078 ], [ 99.625743035000028, 11.440497137000079 ], [ 99.569346550000034, 11.333970445000091 ], [ 99.566254102000073, 11.276312567000048 ], [ 99.586192254000082, 11.195135809000078 ], [ 99.569346550000034, 11.17914459800005 ], [ 99.562022332000026, 11.198919989000046 ], [ 99.52857506600003, 11.186835028000075 ], [ 99.496348504000082, 11.132879950000074 ], [ 99.51531009200005, 11.039211330000057 ], [ 99.503427480893492, 10.997053639014212 ], [ 99.46083377485877, 10.989200344320409 ], [ 99.411327752773559, 10.956230779926557 ], [ 99.265755243209867, 10.958401191162011 ], [ 99.154185825915079, 11.004548245405203 ], [ 99.140946117000112, 11.039409961000047 ], [ 99.175062297000068, 11.087438050000102 ], [ 99.212992798000073, 11.108263652000076 ], [ 99.243275188000041, 11.197663880000064 ], [ 99.364301392000129, 11.37672271800011 ], [ 99.377633911000032, 11.435504660000078 ], [ 99.437371867000081, 11.516688334000051 ], [ 99.449774211000033, 11.613762513000026 ], [ 99.542585083000063, 11.640479228000075 ], [ 99.606870565000122, 11.725693665000037 ], [ 99.630021606000128, 11.815765686000105 ], [ 99.561395305000076, 11.872919820000035 ], [ 99.574004354000067, 11.976324361000124 ], [ 99.518400513000074, 12.025933737000102 ], [ 99.541654907000122, 12.140655416000072 ], [ 99.466310670000041, 12.126030986000103 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-76", "NAME_1": "Phetchaburi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.404747115686803, 12.566940858733631 ], [ 99.39375695800004, 12.589775289000016 ], [ 99.276864869000065, 12.6655846150001 ], [ 99.266736288000118, 12.702843323000124 ], [ 99.214129680000099, 12.734650167000069 ], [ 99.210719035000068, 12.792269389000126 ], [ 99.17526900200005, 12.833429667000104 ], [ 99.153151490000027, 12.913553975000085 ], [ 99.164830364000125, 12.975514018000112 ], [ 99.093206828000064, 13.038326722000079 ], [ 99.088349243000039, 13.058351339000112 ], [ 99.11408410700011, 13.188085022000067 ], [ 99.186479717000111, 13.211558644000107 ], [ 99.254748162797455, 13.176689561573994 ], [ 99.278467645065746, 13.143151557298495 ], [ 99.320377232323381, 13.166276760364212 ], [ 99.324563023364817, 13.206377672491556 ], [ 99.350659620644933, 13.228133449998722 ], [ 99.458043246898285, 13.180229397468679 ], [ 99.504138625197356, 13.179454251112759 ], [ 99.529976840958398, 13.198264471927814 ], [ 99.636171909705809, 13.199633897486365 ], [ 99.664697299740567, 13.216222032021165 ], [ 99.668573033318808, 13.272394313846519 ], [ 99.695909864948248, 13.305105495821977 ], [ 99.765259636622886, 13.332984930709983 ], [ 99.858690626671034, 13.328411566940247 ], [ 99.858380568308519, 13.269345405266222 ], [ 99.891711867009008, 13.238262030368389 ], [ 99.903390740989892, 13.273996283401743 ], [ 99.960866733000046, 13.291571356000077 ], [ 99.998545769000032, 13.218085028000075 ], [ 100.073985222000033, 13.152777411000045 ], [ 100.104340040000068, 13.057318427000041 ], [ 100.052989129000082, 12.966131903000075 ], [ 100.023936394000032, 12.847072658000059 ], [ 99.98764082100007, 12.79047272300005 ], [ 99.960785352000073, 12.63617584800005 ], [ 99.825462680758051, 12.627420762757993 ], [ 99.758748407413009, 12.58049856215888 ], [ 99.674050733754314, 12.57610606554249 ], [ 99.624648065355871, 12.545255235540651 ], [ 99.516230910328204, 12.585950425971362 ], [ 99.404747115686803, 12.566940858733631 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-70", "NAME_1": "Ratchaburi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.186479717000111, 13.211558644000107 ], [ 99.172788534000063, 13.300920512000033 ], [ 99.186947876000033, 13.329135844000092 ], [ 99.187878052000087, 13.427140198000117 ], [ 99.152014608000115, 13.581962790000091 ], [ 99.146779342000116, 13.723674124000055 ], [ 99.203536818369457, 13.730712592212342 ], [ 99.251182489380312, 13.766756904507531 ], [ 99.29743289641101, 13.768513901895062 ], [ 99.342081332987107, 13.749703681080007 ], [ 99.473081088721244, 13.798563748018523 ], [ 99.536849807172814, 13.755413927310883 ], [ 99.580619744605485, 13.790450548354102 ], [ 99.673533969816788, 13.819802760688845 ], [ 99.797040642611535, 13.815306912184212 ], [ 99.869491000609173, 13.938710232191454 ], [ 99.942148065081085, 13.925610255808635 ], [ 99.961371697945481, 13.844219875846591 ], [ 99.949434442445522, 13.741254583732029 ], [ 99.976926303705909, 13.713426824788144 ], [ 100.029687940845747, 13.738076483942564 ], [ 100.039919874902239, 13.697071235149394 ], [ 100.078677198993489, 13.683687038825781 ], [ 100.076506788657355, 13.637901719788545 ], [ 100.049221632971921, 13.598575954916384 ], [ 100.037904494196994, 13.504499009721485 ], [ 99.974600864638148, 13.491631578234717 ], [ 99.916103142845714, 13.506901964054407 ], [ 99.858690626671034, 13.328411566940247 ], [ 99.765259636622886, 13.332984930709983 ], [ 99.70366133030609, 13.311668402774558 ], [ 99.668573033318808, 13.272394313846519 ], [ 99.664697299740567, 13.216222032021165 ], [ 99.636171909705809, 13.199633897486365 ], [ 99.529976840958398, 13.198264471927814 ], [ 99.504138625197356, 13.179454251112759 ], [ 99.458043246898285, 13.180229397468679 ], [ 99.350659620644933, 13.228133449998722 ], [ 99.324563023364817, 13.206377672491556 ], [ 99.320377232323381, 13.166276760364212 ], [ 99.278467645065746, 13.143151557298495 ], [ 99.254748162797455, 13.176689561573994 ], [ 99.186479717000111, 13.211558644000107 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-86", "NAME_1": "Chumphon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.055069621000086, 10.94525034600008 ], [ 99.07687707600013, 10.996513367000105 ], [ 99.140946117000112, 11.039409961000047 ], [ 99.154185825915079, 11.004548245405203 ], [ 99.265755243209867, 10.958401191162011 ], [ 99.411327752773559, 10.956230779926557 ], [ 99.46083377485877, 10.989200344320409 ], [ 99.503427480893492, 10.997053639014212 ], [ 99.496104363000029, 10.944240627000056 ], [ 99.51531009200005, 10.881537177000041 ], [ 99.511566602000073, 10.866359768000052 ], [ 99.494151238000029, 10.878119208000044 ], [ 99.443207227000073, 10.870347398000092 ], [ 99.435069207000026, 10.801825262000079 ], [ 99.375010613000029, 10.711981512000079 ], [ 99.37435957100007, 10.681382554000038 ], [ 99.327159050000034, 10.663275458000044 ], [ 99.30241946700005, 10.631048895000049 ], [ 99.278168165000068, 10.546047268000052 ], [ 99.244639519000032, 10.535142320000091 ], [ 99.242686394000032, 10.514471747000073 ], [ 99.268321160000028, 10.508205471000053 ], [ 99.240407748000052, 10.456976630000042 ], [ 99.28874759200005, 10.412014065000051 ], [ 99.285004102000073, 10.364488023000092 ], [ 99.234141472000033, 10.343695380000042 ], [ 99.200043165000068, 10.378485419000071 ], [ 99.15162194100003, 10.357367255000042 ], [ 99.168955925000034, 10.28774648600006 ], [ 99.224619988000029, 10.232367255000042 ], [ 99.254649285000028, 10.234442450000074 ], [ 99.241709832000026, 10.214504299000055 ], [ 99.201345248000052, 10.210638739000046 ], [ 99.15162194100003, 10.103461005000042 ], [ 99.178884311000047, 10.025295315000051 ], [ 99.158457879000082, 9.99054596600007 ], [ 99.172129754000082, 9.85024648600006 ], [ 99.144948036622566, 9.79123236757971 ], [ 99.102354363862787, 9.786767279486355 ], [ 99.024943067568472, 9.73036245456359 ], [ 98.902004835554692, 9.729664822573511 ], [ 98.790332066371718, 9.68700592738162 ], [ 98.749817743094354, 9.601171373060424 ], [ 98.662639601636272, 9.658428860503477 ], [ 98.635457797839081, 9.769920763432481 ], [ 98.720827264166871, 9.857383123932038 ], [ 98.733384637291124, 9.897949124052843 ], [ 98.770901727033049, 9.938437608009167 ], [ 98.822733189085341, 9.948075262863085 ], [ 98.852240431950349, 9.990579128424031 ], [ 98.903296746747401, 10.017270005806097 ], [ 98.929961785707803, 10.06879140949593 ], [ 98.938281690947235, 10.125583808046315 ], [ 98.893633254371139, 10.207671820897815 ], [ 98.917094354221035, 10.256325182261321 ], [ 98.914458855891439, 10.291697699189456 ], [ 98.952751092888604, 10.352830919311486 ], [ 98.943759393181438, 10.383630072469828 ], [ 98.905157097821757, 10.416987210491357 ], [ 98.903451776378347, 10.455951239258297 ], [ 98.913683710434839, 10.485587673332418 ], [ 98.966910434668762, 10.536488959397957 ], [ 98.955231560687935, 10.565117703119483 ], [ 98.975747104745039, 10.602660631283072 ], [ 98.940193718864975, 10.669219875896545 ], [ 98.905622185815162, 10.693352769314856 ], [ 98.924018996379516, 10.74719961207245 ], [ 98.879191487696971, 10.788202778935101 ], [ 98.905414674000042, 10.814405619000127 ], [ 98.934043416000122, 10.807713521000011 ], [ 98.981895793000035, 10.832414856000113 ], [ 98.98024214700007, 10.918016867000077 ], [ 99.001532837000127, 10.957626851000043 ], [ 99.055069621000086, 10.94525034600008 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-85", "NAME_1": "Ranong" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.74740644600007, 10.350531317000048 ], [ 98.791313111000136, 10.520418396000053 ], [ 98.777257121000105, 10.583231100000106 ], [ 98.747904908000123, 10.623125305000059 ], [ 98.756793254000058, 10.66606842000003 ], [ 98.810950155000057, 10.746631979000114 ], [ 98.879191487696971, 10.788202778935101 ], [ 98.924018996379516, 10.74719961207245 ], [ 98.905622185815162, 10.693352769314856 ], [ 98.940193718864975, 10.669219875896545 ], [ 98.975747104745039, 10.602660631283072 ], [ 98.955231560687935, 10.565117703119483 ], [ 98.966910434668762, 10.536488959397957 ], [ 98.913683710434839, 10.485587673332418 ], [ 98.903451776378347, 10.455951239258297 ], [ 98.905157097821757, 10.416987210491357 ], [ 98.943759393181438, 10.383630072469828 ], [ 98.952751092888604, 10.352830919311486 ], [ 98.914458855891439, 10.291697699189456 ], [ 98.917094354221035, 10.256325182261321 ], [ 98.893633254371139, 10.207671820897815 ], [ 98.938281690947235, 10.125583808046315 ], [ 98.929961785707803, 10.06879140949593 ], [ 98.903296746747401, 10.017270005806097 ], [ 98.852240431950349, 9.990579128424031 ], [ 98.817617222057095, 9.943889471821649 ], [ 98.770901727033049, 9.938437608009167 ], [ 98.733384637291124, 9.897949124052843 ], [ 98.720827264166871, 9.857383123932038 ], [ 98.641038852860731, 9.786069648395539 ], [ 98.660572544087586, 9.661787828345609 ], [ 98.727441847962893, 9.626001899368134 ], [ 98.775294223649439, 9.5467044135778 ], [ 98.678607619446041, 9.461748359299349 ], [ 98.679796176951982, 9.423430283880464 ], [ 98.656696812307985, 9.423120225518005 ], [ 98.672974887580949, 9.357491155992022 ], [ 98.549003126792854, 9.351729233817082 ], [ 98.511020949057524, 9.306434841194971 ], [ 98.47562259280835, 9.316046658526432 ], [ 98.430147333032949, 9.357026068897937 ], [ 98.389615276728563, 9.344922551367102 ], [ 98.397146030000044, 9.378810940000051 ], [ 98.457204623000052, 9.548529364000046 ], [ 98.486827019000032, 9.52806224200009 ], [ 98.531097852000073, 9.566107489000046 ], [ 98.463389519000032, 9.604437567000048 ], [ 98.514170769000032, 9.654730536000045 ], [ 98.493662957000026, 9.685736395000049 ], [ 98.513194207000026, 9.694891669000071 ], [ 98.493662957000026, 9.713690497000073 ], [ 98.543955925000034, 9.70648834800005 ], [ 98.56576582100007, 9.742621161000045 ], [ 98.521006707000026, 9.75462474200009 ], [ 98.507985873000052, 9.740383205000057 ], [ 98.507985873000052, 9.774562893000052 ], [ 98.555430535000028, 9.798041083000044 ], [ 98.583018425000034, 9.842840887000079 ], [ 98.549001498000052, 9.809271552000041 ], [ 98.512705925000034, 9.836859442000048 ], [ 98.549001498000052, 9.883734442000048 ], [ 98.576182488000029, 9.87759023600006 ], [ 98.589854363000029, 9.905462958000044 ], [ 98.57162519600007, 9.91547272300005 ], [ 98.591970248000052, 9.942694403000075 ], [ 98.630869988000029, 9.952704169000071 ], [ 98.599619988000029, 9.973863023000092 ], [ 98.603526238000029, 9.99359772300005 ], [ 98.662282748000052, 10.085272528000075 ], [ 98.712901238000029, 10.205511786000045 ], [ 98.74740644600007, 10.350531317000048 ] ] ], [ [ [ 98.411631707000026, 9.76829661700009 ], [ 98.416677280000044, 9.733465887000079 ], [ 98.39812259200005, 9.706244208000044 ], [ 98.384938998000052, 9.727932033000059 ], [ 98.411631707000026, 9.76829661700009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-56", "NAME_1": "Phayao" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.390048157996034, 19.724387049322843 ], [ 100.418862346000026, 19.634358215000063 ], [ 100.455552613000123, 19.584671326000077 ], [ 100.461960490000138, 19.537103170000037 ], [ 100.549293660000103, 19.494547628000092 ], [ 100.574757877873708, 19.508347404509095 ], [ 100.589860468186032, 19.485916855778271 ], [ 100.514412875753578, 19.398454495278713 ], [ 100.513689406241042, 19.374166572229512 ], [ 100.535703566166603, 19.343444933436899 ], [ 100.570740188109141, 19.349103501925072 ], [ 100.604898309109615, 19.329776516273171 ], [ 100.595441522308363, 19.250091457754536 ], [ 100.630994908188427, 19.130072944011147 ], [ 100.563143752382246, 19.090514635142256 ], [ 100.551981643238207, 19.061265773796435 ], [ 100.570636835321636, 19.028528754298577 ], [ 100.478446079622813, 19.050672105433307 ], [ 100.459945917170273, 19.000313421727014 ], [ 100.495189243788502, 18.990417385354021 ], [ 100.49999515155497, 18.969333401415327 ], [ 100.419638300367239, 18.935924587449733 ], [ 100.352562290017602, 18.815079251406303 ], [ 100.162806430971955, 18.830840561842422 ], [ 100.120948520557761, 18.811746121086628 ], [ 100.076196731194159, 18.823063258962236 ], [ 100.06038374211596, 18.878770452794129 ], [ 99.964472284268481, 18.939567776131923 ], [ 99.941527948356111, 18.98003042256596 ], [ 99.843032668123101, 19.000752672198075 ], [ 99.822672153696885, 19.050852973485917 ], [ 99.781382684063601, 19.066175035249671 ], [ 99.709397414059367, 19.229084988181626 ], [ 99.710482618777803, 19.323084418111364 ], [ 99.687383254133806, 19.429796250796301 ], [ 99.746191034288756, 19.455789496188288 ], [ 99.909281854374058, 19.4826354032013 ], [ 99.922304314592395, 19.46276581519021 ], [ 99.912072382334543, 19.398790392062949 ], [ 99.933311395004807, 19.385871282833421 ], [ 100.016975538989868, 19.433387763534427 ], [ 100.081157667692196, 19.429796250796301 ], [ 100.087100457919746, 19.452146308405418 ], [ 100.13846683107937, 19.475969143461214 ], [ 100.183787063022521, 19.612420763007776 ], [ 100.337369418563753, 19.670039984757466 ], [ 100.390048157996034, 19.724387049322843 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-55", "NAME_1": "Nan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.87981612100009, 19.61358429000002 ], [ 101.002547649000121, 19.610612895000102 ], [ 101.124659057000031, 19.565111796000068 ], [ 101.207961467000132, 19.589554749000101 ], [ 101.251059611000073, 19.560305888000059 ], [ 101.251731405000044, 19.494444275000049 ], [ 101.238243856000054, 19.472300924000038 ], [ 101.192871948000061, 19.45279307100013 ], [ 101.172356405000073, 19.376389465000088 ], [ 101.17845422400012, 19.346623841000095 ], [ 101.211268758000131, 19.326366679000088 ], [ 101.235711711000079, 19.128110047000021 ], [ 101.317877238000108, 19.050130311000132 ], [ 101.326403850000133, 19.020545553000076 ], [ 101.283925823000061, 18.981478170000074 ], [ 101.224911337000037, 18.874766337000082 ], [ 101.228632040000036, 18.795623881000083 ], [ 101.205842733000054, 18.730072327000059 ], [ 101.240104207000059, 18.673641663000026 ], [ 101.221914103000131, 18.642041525000039 ], [ 101.160884237000062, 18.599796041000062 ], [ 101.155354859000056, 18.556723734000073 ], [ 101.073809448000077, 18.50577077200002 ], [ 101.030297892000078, 18.42779103600013 ], [ 101.074088765983731, 18.371613107558858 ], [ 100.919452753042094, 18.249945787568038 ], [ 100.910254347759917, 18.203540350906451 ], [ 100.880953811369238, 18.177469591148679 ], [ 100.893201125231712, 18.156049710425805 ], [ 100.842609898428009, 18.086544908220901 ], [ 100.76054772309891, 18.026057644144942 ], [ 100.576579623750604, 18.051172390393504 ], [ 100.515239698952882, 18.017918606058799 ], [ 100.430955438242847, 18.011665758368054 ], [ 100.405478956788386, 18.131167507274597 ], [ 100.457362094784799, 18.163542792465876 ], [ 100.50325076660954, 18.276042384848154 ], [ 100.496739537399662, 18.339346015306319 ], [ 100.537253858878444, 18.406654567853991 ], [ 100.541284621188254, 18.448667506999811 ], [ 100.533068067837007, 18.473472194885858 ], [ 100.488988072041877, 18.493031725433752 ], [ 100.409819776561392, 18.493858546834474 ], [ 100.386255323924047, 18.580261541936579 ], [ 100.405685663262716, 18.632945664710633 ], [ 100.378503858566205, 18.643229274711246 ], [ 100.366721632697136, 18.672814031941982 ], [ 100.397417433967348, 18.73950246776468 ], [ 100.374008010061573, 18.750251165758698 ], [ 100.348531528607111, 18.804175522882076 ], [ 100.419638300367239, 18.935924587449733 ], [ 100.49999515155497, 18.969333401415327 ], [ 100.495189243788502, 18.990417385354021 ], [ 100.459945917170273, 19.000313421727014 ], [ 100.478446079622813, 19.050672105433307 ], [ 100.570636835321636, 19.028528754298577 ], [ 100.551981643238207, 19.061265773796435 ], [ 100.563143752382246, 19.090514635142256 ], [ 100.632545200900267, 19.135266425405177 ], [ 100.595441522308363, 19.250091457754536 ], [ 100.604898309109615, 19.329776516273171 ], [ 100.570740188109141, 19.349103501925072 ], [ 100.529967483312646, 19.347165636484931 ], [ 100.512862583041738, 19.394139513028108 ], [ 100.590325555280117, 19.476201687457888 ], [ 100.574757877873708, 19.508347404509095 ], [ 100.60701623600005, 19.540927226000079 ], [ 100.714761597000063, 19.51245351200005 ], [ 100.753002157000026, 19.482429504 ], [ 100.87981612100009, 19.61358429000002 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-53", "NAME_1": "Uttaradit" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.074088765983731, 18.371613107558858 ], [ 101.155406535000054, 18.322887879000049 ], [ 101.130136760000028, 18.291158550000105 ], [ 101.128379761000133, 18.245734965000068 ], [ 101.162796265000054, 18.195298768000058 ], [ 101.141608928000039, 18.123959453000069 ], [ 101.165173381000045, 18.05342112300012 ], [ 101.112308391000056, 18.011304830000071 ], [ 101.06616133700004, 17.933996887000077 ], [ 101.000842326000054, 17.884800924 ], [ 101.000273886000116, 17.830488994000049 ], [ 100.967045940000105, 17.803823955 ], [ 100.975520874000097, 17.779794413000062 ], [ 100.958571005000067, 17.764136455000099 ], [ 100.954024286091908, 17.705172838155931 ], [ 100.910461053334927, 17.687861233209333 ], [ 100.871962110762752, 17.704190986225001 ], [ 100.748713820386456, 17.557869167827789 ], [ 100.609084100151051, 17.458340358820465 ], [ 100.581178826841324, 17.420849107500317 ], [ 100.508211704906216, 17.402013048263541 ], [ 100.489298130404336, 17.416714993302264 ], [ 100.44640669121577, 17.416120714099634 ], [ 100.336129185113748, 17.369482734340693 ], [ 100.294271274699554, 17.366743883223592 ], [ 100.247400750943882, 17.311450100541663 ], [ 100.257632684101054, 17.238844712913135 ], [ 100.20549116368619, 17.197090156185766 ], [ 99.982817417090075, 17.165645046081977 ], [ 99.971190219952632, 17.255045273820315 ], [ 100.016148715790564, 17.326358751155453 ], [ 100.000335727611684, 17.410229599816148 ], [ 100.035268995867398, 17.4382382268127 ], [ 100.019766066051091, 17.473739935849324 ], [ 99.930365839212072, 17.569832261749468 ], [ 99.967469516904657, 17.612413642575518 ], [ 99.977081333336798, 17.675639756869259 ], [ 99.896569451618859, 17.803693955911342 ], [ 99.955377231773809, 17.782842515969321 ], [ 100.001265903598551, 17.830617377290139 ], [ 100.137381626360934, 17.861339016082695 ], [ 100.240527784729466, 17.950920111873643 ], [ 100.273135613917418, 17.959110825903849 ], [ 100.293444452399513, 17.954770006130843 ], [ 100.336594273107153, 17.895109565254245 ], [ 100.369822219020136, 17.983863836946512 ], [ 100.42211876816657, 18.015954902196938 ], [ 100.515239698952882, 18.017918606058799 ], [ 100.576579623750604, 18.051172390393504 ], [ 100.76054772309891, 18.026057644144942 ], [ 100.842609898428009, 18.086544908220901 ], [ 100.891495802888926, 18.152535712053464 ], [ 100.880953811369238, 18.177469591148679 ], [ 100.910254347759917, 18.203540350906451 ], [ 100.919452753042094, 18.249945787568038 ], [ 101.074088765983731, 18.371613107558858 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-65", "NAME_1": "Phitsanulok" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.955877733000079, 17.707531771000063 ], [ 100.885655559000099, 17.595877991000108 ], [ 100.886017294000055, 17.573760478000096 ], [ 100.937738378623237, 17.555486370899303 ], [ 100.88312422080611, 17.462086900290217 ], [ 100.901366000840198, 17.434543362186389 ], [ 100.905913527087591, 17.336435655580999 ], [ 100.987872348729866, 17.327133897511374 ], [ 101.037533400446023, 17.273597114015558 ], [ 101.068539260078751, 17.266956691797873 ], [ 101.092982211859521, 17.226649074994782 ], [ 101.02435590969742, 16.999401963729611 ], [ 101.039238722788809, 16.971393336733115 ], [ 101.027766555282255, 16.946020208965479 ], [ 101.065593703386639, 16.906177680155793 ], [ 101.034897902116427, 16.905014960172252 ], [ 100.929839715830155, 16.803238227362272 ], [ 100.898317092259958, 16.794039822080094 ], [ 100.893821241956687, 16.769881090240119 ], [ 100.92627404241307, 16.687663886179394 ], [ 100.856097446639808, 16.643687242272392 ], [ 100.837493931399763, 16.59526642490556 ], [ 100.843540074414875, 16.545837918085454 ], [ 100.794705844998703, 16.45592092551027 ], [ 100.702670118930826, 16.41199595844671 ], [ 100.668201938668517, 16.347012844067478 ], [ 100.58190229725318, 16.428299872141395 ], [ 100.557407667729649, 16.511008001717869 ], [ 100.532602980742922, 16.537621364734207 ], [ 100.419948357830435, 16.537879747152601 ], [ 100.287036574178501, 16.510181179417884 ], [ 100.275254348309488, 16.545062770830214 ], [ 100.262283563135895, 16.538241482358501 ], [ 100.254842157039889, 16.583535874980612 ], [ 100.234326612982784, 16.59350942571939 ], [ 100.171798129779802, 16.567412828439274 ], [ 100.114540643236069, 16.513488471315895 ], [ 100.032168410443774, 16.496176866369296 ], [ 99.99987063961828, 16.555604763249221 ], [ 99.917343378094358, 16.586274726097713 ], [ 99.893262159720848, 16.645805975765143 ], [ 99.904424269764206, 16.688128974172798 ], [ 99.939977654744951, 16.712106837960164 ], [ 99.892642042995874, 16.734172674729166 ], [ 99.892331983734039, 16.760062568232911 ], [ 99.919048700437145, 16.781559963321627 ], [ 99.955687290136268, 16.865069078575118 ], [ 100.021626418024709, 16.856930040488976 ], [ 100.033098586430583, 16.891010647123665 ], [ 100.118726434277505, 16.8959199085769 ], [ 100.131903925026052, 16.95643301017526 ], [ 99.965092400993456, 17.080611477437742 ], [ 99.927420281620641, 17.122314358221047 ], [ 99.916413202107549, 17.162725327811586 ], [ 99.972843866351297, 17.161175035099802 ], [ 100.009844191256377, 17.17727224411874 ], [ 100.035268995867398, 17.164172267735978 ], [ 100.151179233834512, 17.198330390535091 ], [ 100.20549116368619, 17.197090156185766 ], [ 100.257632684101054, 17.238844712913135 ], [ 100.247400750943882, 17.311450100541663 ], [ 100.294271274699554, 17.366743883223592 ], [ 100.336129185113748, 17.369482734340693 ], [ 100.44640669121577, 17.416120714099634 ], [ 100.489298130404336, 17.416714993302264 ], [ 100.508211704906216, 17.402013048263541 ], [ 100.581178826841324, 17.420849107500317 ], [ 100.609084100151051, 17.458340358820465 ], [ 100.748713820386456, 17.557869167827789 ], [ 100.871962110762752, 17.704190986225001 ], [ 100.910461053334927, 17.687861233209333 ], [ 100.955877733000079, 17.707531771000063 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-42", "NAME_1": "Loei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.937738378623237, 17.555486370899303 ], [ 100.981515341000033, 17.547612203000071 ], [ 101.049314820000063, 17.495729065000077 ], [ 101.132307170000104, 17.461674296000027 ], [ 101.166723673000035, 17.510611878000034 ], [ 101.2021737070001, 17.523169250000038 ], [ 101.247028850000049, 17.592157288000081 ], [ 101.383764689000031, 17.684916484 ], [ 101.404021851000039, 17.715560609000121 ], [ 101.381904338000027, 17.720728252000029 ], [ 101.388002157000074, 17.729306539000063 ], [ 101.453476197000043, 17.751010641000065 ], [ 101.468307332000109, 17.720366516000027 ], [ 101.502723837000133, 17.765376689000064 ], [ 101.556260620000103, 17.792145081000044 ], [ 101.534039755000038, 17.809560038000072 ], [ 101.570523315000059, 17.828887024000025 ], [ 101.577551310000047, 17.868109436000069 ], [ 101.600392294000073, 17.854363506000126 ], [ 101.636204061000115, 17.894826152000022 ], [ 101.729066610000132, 17.912189433000052 ], [ 101.765756877000115, 18.040321147000057 ], [ 101.790406535000102, 18.073574931000095 ], [ 101.883785848000059, 18.030838522000082 ], [ 101.904301392000036, 18.037117208 ], [ 102.071267944000112, 18.208502096000061 ], [ 102.107385186976728, 18.212376683736977 ], [ 102.107907343249224, 18.18000173579145 ], [ 102.072043899006701, 18.13956492777919 ], [ 102.023623080740549, 17.978153590715635 ], [ 102.051890090155496, 17.837154445821 ], [ 102.024708287257624, 17.738581651222205 ], [ 102.038040805838477, 17.665562852443657 ], [ 102.053750441229852, 17.65889659270357 ], [ 102.070803663758056, 17.686465969229062 ], [ 102.141393670681339, 17.508750719370198 ], [ 102.075609572423787, 17.452035834286335 ], [ 101.984710727917729, 17.441364651557421 ], [ 101.989671665315086, 17.404416001697086 ], [ 102.021452671303678, 17.366666367958487 ], [ 102.023623080740549, 17.322948106469937 ], [ 101.981610141594729, 17.274527289103105 ], [ 101.978922968220388, 17.243340562317087 ], [ 101.9463668149765, 17.198252875269986 ], [ 101.977992792233522, 17.146653958113689 ], [ 102.091164178184215, 17.102780666994192 ], [ 102.110852899042015, 17.057899685522045 ], [ 102.15100548711348, 17.022372138063702 ], [ 102.034940220414796, 16.953022366389064 ], [ 102.071268751751461, 16.885403754579613 ], [ 102.045843947140384, 16.866231798558658 ], [ 101.985434198329528, 16.843468328900258 ], [ 101.955978632308017, 16.847731635206799 ], [ 101.790562372255636, 16.766496283077004 ], [ 101.732064649563881, 16.758848171405987 ], [ 101.718732130983028, 16.77352427802299 ], [ 101.713461135223156, 16.919536038057686 ], [ 101.642509393093974, 17.046453355537892 ], [ 101.602201776290883, 17.004517930757856 ], [ 101.561687453013519, 16.993355820714555 ], [ 101.541533645061634, 17.001236477281566 ], [ 101.520397984279498, 17.046143297175433 ], [ 101.459884881781818, 17.076451523918706 ], [ 101.320410191177359, 17.064901842046368 ], [ 101.209615920238491, 17.11598399526514 ], [ 101.193751255216227, 17.108465073904028 ], [ 101.16987674421631, 17.045419826763577 ], [ 101.126261834615946, 17.030562852093908 ], [ 101.12192101394362, 16.929897162424083 ], [ 101.098666619668734, 16.908787340063668 ], [ 101.065593703386639, 16.906177680155793 ], [ 101.027766555282255, 16.946020208965479 ], [ 101.039238722788809, 16.971393336733115 ], [ 101.02435590969742, 16.999401963729611 ], [ 101.092982211859521, 17.226649074994782 ], [ 101.068539260078751, 17.266956691797873 ], [ 101.037533400446023, 17.273597114015558 ], [ 100.987872348729866, 17.327133897511374 ], [ 100.905913527087591, 17.336435655580999 ], [ 100.901366000840198, 17.434543362186389 ], [ 100.882659132812705, 17.466634426537553 ], [ 100.937738378623237, 17.555486370899303 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-38", "NAME_1": "Bueng Kan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.38663985200003, 18.441459452000046 ], [ 103.548800497000059, 18.415414530000064 ], [ 103.695561565000048, 18.353221945000072 ], [ 103.784600057000034, 18.343894348000035 ], [ 103.873948608000035, 18.283226217000063 ], [ 103.929294068000047, 18.327590434000015 ], [ 104.000039103000063, 18.318443705000035 ], [ 104.068407023000134, 18.215400900000034 ], [ 104.122357219000094, 18.095279032000079 ], [ 104.203328871630106, 18.01864366647203 ], [ 104.171243930762728, 17.999340929240475 ], [ 104.124683466268891, 17.99998688438717 ], [ 104.134450311432659, 17.909656479762702 ], [ 104.110989210683499, 17.865964056695816 ], [ 104.070216505887004, 17.880278429006296 ], [ 104.043654819714106, 17.933944403711223 ], [ 104.005672641978776, 17.923273220083047 ], [ 103.988412713875618, 17.867488511885313 ], [ 104.010943637738649, 17.833485418717089 ], [ 104.010323521013618, 17.801187648790915 ], [ 103.968723993017818, 17.768295600561487 ], [ 103.920303175650986, 17.812711493140853 ], [ 103.920923293275337, 17.848729967014378 ], [ 103.897203811007046, 17.844905911178842 ], [ 103.902164748404346, 17.874180610047119 ], [ 103.868316684867068, 17.857075711574794 ], [ 103.854053990299349, 17.875033270768824 ], [ 103.802532586609516, 17.867876085512933 ], [ 103.804031203377292, 17.843536484720971 ], [ 103.786099480806342, 17.847593085452502 ], [ 103.760778028982827, 17.872475286805013 ], [ 103.77736616441689, 17.894205226789779 ], [ 103.761553176238067, 17.944563910496072 ], [ 103.739539016312506, 17.911284287739647 ], [ 103.634480829126915, 17.965208644863083 ], [ 103.617582636229656, 17.992002875032654 ], [ 103.636341180201271, 18.009236964714148 ], [ 103.586370070122598, 18.042154853163936 ], [ 103.507098422753984, 18.063652249151971 ], [ 103.478521355875841, 18.046211452996147 ], [ 103.467204218000234, 18.002622381817446 ], [ 103.43568159442998, 17.990039171170793 ], [ 103.358640322392944, 18.042414371426105 ], [ 103.321958817945074, 18.077428534599164 ], [ 103.315289453745265, 18.117444720697279 ], [ 103.330295524318956, 18.14745686094534 ], [ 103.361975004942508, 18.165797613169275 ], [ 103.371979051691824, 18.189140389217584 ], [ 103.360307663667697, 18.219152528566326 ], [ 103.300283384070894, 18.235825940414827 ], [ 103.29651615500012, 18.296894633000065 ], [ 103.240188843000112, 18.335987854000095 ], [ 103.233987671000136, 18.355779928000075 ], [ 103.282563517000028, 18.41556956 ], [ 103.38663985200003, 18.441459452000046 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-43", "NAME_1": "Nong Khai" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.089086955000084, 18.134785665000024 ], [ 103.13859297700003, 18.1667217 ], [ 103.168203573000085, 18.249765727000053 ], [ 103.286335897000072, 18.280332336000058 ], [ 103.296300917822734, 18.295167844627404 ], [ 103.300283384070894, 18.235825940414827 ], [ 103.360307663667697, 18.219152528566326 ], [ 103.371979051691824, 18.189140389217584 ], [ 103.315289453745265, 18.117444720697279 ], [ 103.321958817945074, 18.077428534599164 ], [ 103.43568159442998, 17.990039171170793 ], [ 103.381214634048092, 17.979626369961011 ], [ 103.402040235568393, 17.936683253929004 ], [ 103.399559767769006, 17.866429144689278 ], [ 103.308144159325423, 17.832219346845363 ], [ 103.261428664301377, 17.87857310576419 ], [ 103.202310825783968, 17.853794257199183 ], [ 103.168979527083479, 17.801756090471201 ], [ 103.058650344138016, 17.886376247965472 ], [ 102.983099399817434, 17.822555854469101 ], [ 102.949716425172824, 17.877022813052349 ], [ 102.885017530734387, 17.885316880769437 ], [ 102.885172561264653, 17.859065252959056 ], [ 102.849309117022074, 17.806846218178407 ], [ 102.865432163563469, 17.769329128436539 ], [ 102.847758824310233, 17.700082709549406 ], [ 102.788020868168473, 17.661609605398951 ], [ 102.775773553406736, 17.624299221232036 ], [ 102.751692335932489, 17.606755072288763 ], [ 102.665289340830384, 17.595980535873025 ], [ 102.60720503108729, 17.620862739024176 ], [ 102.60973717662938, 17.689308173133668 ], [ 102.539612257699503, 17.750518906722164 ], [ 102.463234491078879, 17.75889048880498 ], [ 102.39403974813581, 17.889192613448358 ], [ 102.327170445159879, 17.949524847893372 ], [ 102.204748977083568, 18.018616238048935 ], [ 102.154157749380602, 17.993062242228689 ], [ 102.114211866884091, 18.058923854852026 ], [ 102.088683710384885, 18.0591563988487 ], [ 102.058401320264693, 18.088405260194577 ], [ 102.079020217109303, 18.153104152834374 ], [ 102.107907343249224, 18.18000173579145 ], [ 102.107385186976728, 18.212376683736977 ], [ 102.15353682500006, 18.210104065000095 ], [ 102.171933635000073, 18.200285543000021 ], [ 102.191570679000108, 18.152071432000028 ], [ 102.306705770000065, 18.051457418000084 ], [ 102.366392050000115, 18.038796692000048 ], [ 102.44550866700007, 17.977766826000064 ], [ 102.567516724000029, 17.970842183000073 ], [ 102.599607789000061, 17.955184225000025 ], [ 102.612320191000038, 17.915290019000096 ], [ 102.595266968000089, 17.840824280000064 ], [ 102.682910197000069, 17.810076802000097 ], [ 102.672988323000027, 17.865370585000036 ], [ 102.737377157000026, 17.890433655000024 ], [ 102.852718954000125, 17.972030742000086 ], [ 102.954934936000029, 18.012131653 ], [ 103.0204606530001, 17.98422638000001 ], [ 103.037927287000059, 17.990685934000069 ], [ 103.073067261000119, 18.035515239000048 ], [ 103.06634932500009, 18.112254740000097 ], [ 103.089086955000084, 18.134785665000024 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-48", "NAME_1": "Nakhon Phanom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.203328871630106, 18.01864366647203 ], [ 104.270306844000118, 17.874000550000076 ], [ 104.352627401000063, 17.819326885000109 ], [ 104.452001180000082, 17.66595123300003 ], [ 104.702631877000044, 17.527303365000066 ], [ 104.7567887780001, 17.449943746000045 ], [ 104.78893151900013, 17.428963115000059 ], [ 104.816423381000106, 17.372790833000082 ], [ 104.809912151000105, 17.171666158000036 ], [ 104.740355672000135, 17.002580872000081 ], [ 104.767072388000088, 16.856129862 ], [ 104.757910052000057, 16.818894636000081 ], [ 104.734517042627374, 16.804504299233997 ], [ 104.740098097649025, 16.750399074957329 ], [ 104.685011021441426, 16.771379706108519 ], [ 104.680825230400046, 16.821299140243127 ], [ 104.667130974814597, 16.827319443937199 ], [ 104.596230910428119, 16.83367564531477 ], [ 104.528896518559463, 16.815020453231341 ], [ 104.494945103133944, 16.850057074274559 ], [ 104.474739618338674, 16.842331448237758 ], [ 104.441201613163855, 16.861839301042892 ], [ 104.412521192598945, 16.849669501546259 ], [ 104.364410435393211, 16.870650132697449 ], [ 104.287102491886458, 16.857007554854761 ], [ 104.239043409725525, 16.896178290095975 ], [ 104.303277216170557, 16.934806422977999 ], [ 104.323896112115847, 16.976793525500796 ], [ 104.393762648627273, 17.022139594066971 ], [ 104.394382766251624, 17.037435818308325 ], [ 104.363893670556422, 17.055186671927345 ], [ 104.361774937063672, 17.082936917404822 ], [ 104.39965376201144, 17.125725002906563 ], [ 104.404769729039742, 17.176807156125335 ], [ 104.444302198587536, 17.247216294996008 ], [ 104.415001662196914, 17.41511302284772 ], [ 104.157704705707545, 17.410849718339819 ], [ 104.1341402530702, 17.382479356137367 ], [ 104.097346632840811, 17.399506741143171 ], [ 104.088664992395422, 17.377440904374225 ], [ 104.051251255441059, 17.390980129429408 ], [ 104.009393345026808, 17.476142890182246 ], [ 104.048357374693069, 17.586187852287537 ], [ 104.031407504952369, 17.634376126556958 ], [ 104.058279250387045, 17.645150662073377 ], [ 104.075642531277765, 17.67892121034555 ], [ 104.063085158153456, 17.732664700315638 ], [ 104.020090367076762, 17.760492459259581 ], [ 104.010943637738649, 17.833485418717089 ], [ 103.988412713875618, 17.867488511885313 ], [ 104.005672641978776, 17.923273220083047 ], [ 104.040089146297021, 17.93487457879877 ], [ 104.070216505887004, 17.880278429006296 ], [ 104.107578566897303, 17.863561103262271 ], [ 104.134450311432659, 17.909656479762702 ], [ 104.124683466268891, 17.99998688438717 ], [ 104.171243930762728, 17.999340929240475 ], [ 104.203328871630106, 18.01864366647203 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-49", "NAME_1": "Mukdahan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.757910052000057, 16.818894636000081 ], [ 104.779009644000041, 16.704872945000105 ], [ 104.753016398000057, 16.61480092400005 ], [ 104.754515015000095, 16.528914693 ], [ 104.855490763000091, 16.454087220000062 ], [ 104.908045696000102, 16.353369853000103 ], [ 104.988028290000045, 16.293963496000075 ], [ 104.887065871192931, 16.212292385285309 ], [ 104.835389438771529, 16.19208690049004 ], [ 104.713536412375504, 16.21311920848467 ], [ 104.678654820063855, 16.240766100275266 ], [ 104.655503777677154, 16.216684881901756 ], [ 104.631267530572018, 16.215444648451751 ], [ 104.586929152358437, 16.252367458991046 ], [ 104.559333938310544, 16.307738756038759 ], [ 104.520990025369315, 16.314560045409735 ], [ 104.497115512570815, 16.341871039516832 ], [ 104.395622999701629, 16.344609889734613 ], [ 104.355883823679449, 16.323396715486012 ], [ 104.332577752561178, 16.330037135905059 ], [ 104.308083123936967, 16.465584417886589 ], [ 104.244314406384717, 16.432873236810394 ], [ 104.237648146644631, 16.527983709880289 ], [ 104.183026158430437, 16.617642320037021 ], [ 104.184421420612011, 16.666760769393989 ], [ 104.0728520042166, 16.832590439697015 ], [ 104.111609328307793, 16.846491400857474 ], [ 104.137240839393201, 16.892767646309835 ], [ 104.239043409725525, 16.896178290095975 ], [ 104.287102491886458, 16.857007554854761 ], [ 104.364410435393211, 16.870650132697449 ], [ 104.412521192598945, 16.849669501546259 ], [ 104.441201613163855, 16.861839301042892 ], [ 104.474739618338674, 16.842331448237758 ], [ 104.494945103133944, 16.850057074274559 ], [ 104.528896518559463, 16.815020453231341 ], [ 104.596230910428119, 16.83367564531477 ], [ 104.667130974814597, 16.827319443937199 ], [ 104.680825230400046, 16.821299140243127 ], [ 104.685011021441426, 16.771379706108519 ], [ 104.733896925902343, 16.749417223026398 ], [ 104.747384475013462, 16.761871243363203 ], [ 104.734517042627374, 16.804504299233997 ], [ 104.757910052000057, 16.818894636000081 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-37", "NAME_1": "Amnat Charoen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.988028290000045, 16.293963496000075 ], [ 105.026384725000128, 16.257665100000096 ], [ 105.04245609600008, 16.141444804000017 ], [ 105.106979007575092, 16.095853281203972 ], [ 105.091239455336563, 16.054627589691506 ], [ 105.034757115148693, 15.999747219058918 ], [ 105.029486119388878, 15.956726589560446 ], [ 105.057288039011723, 15.904559230723919 ], [ 105.01909915570144, 15.865104275541853 ], [ 105.021114537306005, 15.804978745772473 ], [ 104.939465774026189, 15.613879298690676 ], [ 104.941739537149886, 15.539749456771972 ], [ 104.922877638592126, 15.485825100547913 ], [ 104.895230746801474, 15.471355699505921 ], [ 104.866240268773367, 15.507038275695834 ], [ 104.813943719626934, 15.506909085385985 ], [ 104.789087355796767, 15.563055527890299 ], [ 104.735602248245129, 15.569566758898816 ], [ 104.672298618686284, 15.637934679541786 ], [ 104.642016228566035, 15.627986965426089 ], [ 104.660154656711995, 15.594862372300611 ], [ 104.625169711612841, 15.558275458545552 ], [ 104.471484003284104, 15.599358221704563 ], [ 104.46094201086504, 15.630441595703076 ], [ 104.443578729075057, 15.634911607584627 ], [ 104.424613478629112, 15.721262925843348 ], [ 104.43954796766451, 15.816683458175021 ], [ 104.464197625919667, 15.909468492177155 ], [ 104.571736280904588, 16.090878608460969 ], [ 104.616281365592499, 16.120592556001668 ], [ 104.80247155212038, 16.157024441025101 ], [ 104.812858514009179, 16.190639960565704 ], [ 104.887065871192931, 16.212292385285309 ], [ 104.988028290000045, 16.293963496000075 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-82", "NAME_1": "Phangnga" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.649217360760943, 8.368723203457646 ], [ 98.655446811000047, 8.37962474200009 ], [ 98.603526238000029, 8.39720286700009 ], [ 98.59888756600003, 8.374904690000051 ], [ 98.526052280000044, 8.336330471000053 ], [ 98.493662957000026, 8.34320709800005 ], [ 98.486664259000065, 8.324896552000041 ], [ 98.466319207000026, 8.335760809000078 ], [ 98.466319207000026, 8.322739976000037 ], [ 98.428233269000032, 8.316961981000077 ], [ 98.422211134000065, 8.306341864000046 ], [ 98.453135613000029, 8.294012762000079 ], [ 98.462901238000029, 8.216131903000075 ], [ 98.424978061000047, 8.148423570000091 ], [ 98.40552819100003, 8.164496161000045 ], [ 98.391286655000044, 8.136542059000078 ], [ 98.356944207000026, 8.18500397300005 ], [ 98.281423373000052, 8.225897528000075 ], [ 98.277598504000082, 8.28351471600007 ], [ 98.199473504000082, 8.534369208000044 ], [ 98.209727410000028, 8.58148834800005 ], [ 98.24732506600003, 8.514553127000056 ], [ 98.253103061000047, 8.534654039000088 ], [ 98.21998131600003, 8.569159247000073 ], [ 98.240489129000082, 8.651068427000041 ], [ 98.21998131600003, 8.726223049000055 ], [ 98.250743035000028, 8.759955145000049 ], [ 98.261566602000073, 8.850653387000079 ], [ 98.324880405000044, 8.97524648600006 ], [ 98.364024285000028, 8.973944403000075 ], [ 98.358083530000044, 8.995998440000051 ], [ 98.391286655000044, 9.035305080000057 ], [ 98.332692905000044, 9.026068427000041 ], [ 98.329844597000033, 9.052069403000075 ], [ 98.382009311000047, 9.071926174000055 ], [ 98.328379754000082, 9.16437409100007 ], [ 98.322276238000029, 9.209377346000053 ], [ 98.339691602000073, 9.199774481000077 ], [ 98.37077884200005, 9.226467190000051 ], [ 98.351898634000065, 9.251369533000059 ], [ 98.389615276728563, 9.344922551367102 ], [ 98.424101190017836, 9.356871039267048 ], [ 98.53251834504556, 9.284549872478635 ], [ 98.53251834504556, 9.237214259830239 ], [ 98.491125522624714, 9.140786038045235 ], [ 98.496551548015475, 9.076552232499523 ], [ 98.481978794185977, 9.063426417694984 ], [ 98.506473422810188, 8.978702908312528 ], [ 98.45391849214468, 8.943872991945 ], [ 98.458724399911091, 8.887158107760456 ], [ 98.501512486312151, 8.877236232965743 ], [ 98.57261925717296, 8.800264187142488 ], [ 98.605175408618152, 8.790626532288627 ], [ 98.602694939919502, 8.711432400185117 ], [ 98.546832717355983, 8.655492662356494 ], [ 98.584401483041972, 8.62570119955069 ], [ 98.662019484011921, 8.64399465642822 ], [ 98.71328250528336, 8.625081081926396 ], [ 98.700311721009086, 8.570769151175398 ], [ 98.662742955323097, 8.556170558924123 ], [ 98.676902297103311, 8.451577459731993 ], [ 98.665740187959273, 8.38137502733565 ], [ 98.649217360760943, 8.368723203457646 ] ] ], [ [ [ 97.871836785000028, 9.379584052000041 ], [ 97.840017123000052, 9.404282945000091 ], [ 97.843597852000073, 9.424953518000052 ], [ 97.86841881600003, 9.420396226000037 ], [ 97.871836785000028, 9.379584052000041 ] ] ], [ [ [ 98.540537957000026, 8.10492584800005 ], [ 98.602386915000068, 8.063462632000039 ], [ 98.603526238000029, 7.90375397300005 ], [ 98.577321811000047, 7.919623114000046 ], [ 98.563243035000028, 7.986314195000091 ], [ 98.582286004000082, 8.015366929000038 ], [ 98.551117384000065, 8.042547919000071 ], [ 98.528493686000047, 8.123480536000045 ], [ 98.540537957000026, 8.10492584800005 ] ] ], [ [ [ 98.637543165000068, 8.171291408000059 ], [ 98.620860222000033, 8.089992580000057 ], [ 98.579600457000026, 8.106146552000041 ], [ 98.570078972000033, 8.118882554000038 ], [ 98.596690300000034, 8.13031647300005 ], [ 98.592295769000032, 8.14679596600007 ], [ 98.624034050000034, 8.191799221000053 ], [ 98.637543165000068, 8.171291408000059 ] ] ], [ [ [ 98.295664910000028, 9.14516836100006 ], [ 98.323008660000028, 9.076239325000074 ], [ 98.309336785000028, 9.048976955000057 ], [ 98.254242384000065, 9.036810614000046 ], [ 98.240489129000082, 9.048976955000057 ], [ 98.248220248000052, 9.150091864000046 ], [ 98.273285352000073, 9.159979559000078 ], [ 98.295664910000028, 9.14516836100006 ] ] ], [ [ [ 97.869965040000068, 9.42523834800005 ], [ 97.849619988000029, 9.44212474200009 ], [ 97.853282097000033, 9.461371161000045 ], [ 97.895274285000028, 9.467352606000077 ], [ 97.894786004000082, 9.438706773000092 ], [ 97.869883660000028, 9.440741278000075 ], [ 97.869965040000068, 9.42523834800005 ] ] ], [ [ [ 98.28842207100007, 9.004461981000077 ], [ 98.310883009000065, 8.978176174000055 ], [ 98.306976759000065, 8.957912502000056 ], [ 98.261566602000073, 8.878566799000055 ], [ 98.252207879000082, 8.997015692000048 ], [ 98.260915561000047, 9.012925523000092 ], [ 98.28842207100007, 9.004461981000077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-81", "NAME_1": "Krabi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.256772927497721, 7.655064155187964 ], [ 99.137543165000068, 7.744330145000049 ], [ 99.13054446700005, 7.767238674000055 ], [ 99.112152540000068, 7.705511786000045 ], [ 99.09148196700005, 7.691839911000045 ], [ 99.05600019600007, 7.698919989000046 ], [ 99.033213738000029, 7.722805080000057 ], [ 99.014414910000028, 7.815008856000077 ], [ 99.062266472000033, 7.859361070000091 ], [ 99.06959069100003, 7.924872137000079 ], [ 99.028086785000028, 7.90375397300005 ], [ 99.000254754000082, 7.942572333000044 ], [ 98.967784050000034, 7.956203518000052 ], [ 98.960459832000026, 8.006781317000048 ], [ 98.917979363000029, 8.051336981000077 ], [ 98.843597852000073, 8.002875067000048 ], [ 98.800303582000026, 8.052435614000046 ], [ 98.770274285000028, 8.023667710000041 ], [ 98.74740644600007, 8.068264065000051 ], [ 98.744151238000029, 8.214911200000074 ], [ 98.727061394000032, 8.253851630000042 ], [ 98.706553582000026, 8.225897528000075 ], [ 98.703135613000029, 8.298529364000046 ], [ 98.696299675000034, 8.308498440000051 ], [ 98.624034050000034, 8.281154690000051 ], [ 98.62623131600003, 8.346096096000053 ], [ 98.665740187959273, 8.38137502733565 ], [ 98.676902297103311, 8.451577459731993 ], [ 98.662742955323097, 8.556170558924123 ], [ 98.700311721009086, 8.570769151175398 ], [ 98.71328250528336, 8.625081081926396 ], [ 98.733849725284529, 8.630739651313831 ], [ 98.755708855579201, 8.673088487243888 ], [ 98.802889438596651, 8.64438222915652 ], [ 98.852085402319403, 8.64058401084344 ], [ 98.928256464264393, 8.564077053013591 ], [ 98.884641554663972, 8.514441839719098 ], [ 98.908257684144758, 8.471292019011457 ], [ 98.890532668048138, 8.413259386111747 ], [ 98.910273064850003, 8.315410061025489 ], [ 99.001533644562016, 8.315255032293919 ], [ 99.060651483079425, 8.351738593261473 ], [ 99.181212600081381, 8.322257187918865 ], [ 99.266065301572382, 8.341558336048365 ], [ 99.316036411651055, 8.292853297841418 ], [ 99.317379998787885, 8.20151520376362 ], [ 99.292885370163674, 8.157848619118454 ], [ 99.286684198416992, 8.10283905727664 ], [ 99.344251744222561, 7.99824595808451 ], [ 99.325648228083196, 7.957292385235405 ], [ 99.345698684146896, 7.919723619549416 ], [ 99.294177281356383, 7.844095159963672 ], [ 99.341047805112055, 7.747641098857628 ], [ 99.312005650240508, 7.694336860257863 ], [ 99.256772927497721, 7.655064155187964 ] ] ], [ [ [ 99.034922722000033, 7.644273179000038 ], [ 99.07585696700005, 7.608954169000071 ], [ 99.086110873000052, 7.536525783000059 ], [ 99.117442254000082, 7.479193427000041 ], [ 99.099945509000065, 7.467230536000045 ], [ 99.057139519000032, 7.504055080000057 ], [ 99.031260613000029, 7.561916408000059 ], [ 99.020681186000047, 7.636867580000057 ], [ 99.034922722000033, 7.644273179000038 ] ] ], [ [ [ 99.12427819100003, 7.657375393000052 ], [ 99.124034050000034, 7.606838283000059 ], [ 99.10873457100007, 7.594183661000045 ], [ 99.04460696700005, 7.663397528000075 ], [ 99.067067905000044, 7.675197658000059 ], [ 99.12427819100003, 7.657375393000052 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-92", "NAME_1": "Trang" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.745608779590981, 7.129663842120777 ], [ 99.677582227000073, 7.123277085000041 ], [ 99.672373894000032, 7.170721747000073 ], [ 99.614105665000068, 7.136664130000042 ], [ 99.55787194100003, 7.197455145000049 ], [ 99.545420769000032, 7.266302802000041 ], [ 99.58521569100003, 7.306708075000074 ], [ 99.603526238000029, 7.376166083000044 ], [ 99.549571160000028, 7.301825262000079 ], [ 99.52466881600003, 7.311346747000073 ], [ 99.525401238000029, 7.370021877000056 ], [ 99.508148634000065, 7.384955145000049 ], [ 99.490977410000028, 7.35101959800005 ], [ 99.488291863000029, 7.285711981000077 ], [ 99.470713738000029, 7.279974677000041 ], [ 99.37818444100003, 7.32094961100006 ], [ 99.336599155000044, 7.383612372000073 ], [ 99.344004754000082, 7.468980210000041 ], [ 99.329844597000033, 7.503404039000088 ], [ 99.295583530000044, 7.507147528000075 ], [ 99.308848504000082, 7.528306382000039 ], [ 99.292735222000033, 7.620672919000071 ], [ 99.268321160000028, 7.616400458000044 ], [ 99.246755405000044, 7.634100653000075 ], [ 99.33960086518772, 7.74151744237605 ], [ 99.294177281356383, 7.844095159963672 ], [ 99.342391392248885, 7.906468614434971 ], [ 99.338050571576559, 7.94308136571243 ], [ 99.400785760354495, 7.890087185475238 ], [ 99.510753208094059, 7.871793727698389 ], [ 99.539175246240575, 7.8789250763312 ], [ 99.611935662600729, 7.982820543533251 ], [ 99.727690870936897, 7.992044786337829 ], [ 99.747896355732166, 7.97760122281818 ], [ 99.73626915859478, 7.863008735364815 ], [ 99.821741977710076, 7.668369452388276 ], [ 99.797867465810839, 7.638939723889109 ], [ 99.7975574083477, 7.59736603431503 ], [ 99.854504835629598, 7.485176500295267 ], [ 99.88442548964457, 7.384149075419487 ], [ 99.94245812434292, 7.296635037177225 ], [ 99.93935753801992, 7.247619941507082 ], [ 99.965092400993456, 7.177004096162079 ], [ 100.046431105910756, 7.063419298162046 ], [ 100.017905714976735, 7.055977891166719 ], [ 99.988553500843352, 7.069232896281108 ], [ 99.928040399244992, 7.137652492868256 ], [ 99.883495314557081, 7.068767808287703 ], [ 99.837399937157329, 7.094063421689555 ], [ 99.824067416777837, 7.142019151062982 ], [ 99.745608779590981, 7.129663842120777 ] ] ], [ [ [ 99.405446811000047, 7.266302802000041 ], [ 99.453868035000028, 7.23899974200009 ], [ 99.41724694100003, 7.235337632000039 ], [ 99.383311394000032, 7.19407786700009 ], [ 99.377777540000068, 7.252346096000053 ], [ 99.385508660000028, 7.275580145000049 ], [ 99.405446811000047, 7.266302802000041 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-94", "NAME_1": "Pattani" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.06804446700005, 6.85773346600007 ], [ 101.191416863000029, 6.861883856000077 ], [ 101.244266596000045, 6.902029121000055 ], [ 101.351328972000033, 6.875921942000048 ], [ 101.328298373000052, 6.917873440000051 ], [ 101.262543165000068, 6.94476959800005 ], [ 101.291731168000069, 6.954572005000045 ], [ 101.385209696000061, 6.905220335000081 ], [ 101.488047722000033, 6.878322658000059 ], [ 101.566254102000073, 6.832220770000049 ], [ 101.723480665000068, 6.574408270000049 ], [ 101.678372837336553, 6.577118232120711 ], [ 101.661319614808349, 6.6181493193356 ], [ 101.615224237408597, 6.627606106136852 ], [ 101.581117792352188, 6.610320338712654 ], [ 101.608247919305995, 6.57572296814044 ], [ 101.578637322754219, 6.545698961337962 ], [ 101.54990522714445, 6.550349840372803 ], [ 101.513886753270981, 6.596031805723271 ], [ 101.462468703267973, 6.569961045965499 ], [ 101.337773472068022, 6.549729722748509 ], [ 101.304855585416874, 6.595489203364025 ], [ 101.297930943258393, 6.67579437950701 ], [ 101.234110548862702, 6.602491359888347 ], [ 101.152513462426327, 6.602388007100842 ], [ 101.062803176325474, 6.65383189552557 ], [ 101.037688430076969, 6.748270575026993 ], [ 101.06804446700005, 6.85773346600007 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-93", "NAME_1": "Phatthalung" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.20085696700005, 7.772324937000064 ], [ 100.144786004000082, 7.719427802000041 ], [ 100.142914259000065, 7.700018622000073 ], [ 100.185394727000073, 7.514227606000077 ], [ 100.225108269000032, 7.479478257000039 ], [ 100.278819207000026, 7.362209377000056 ], [ 100.302989129000082, 7.342678127000056 ], [ 100.370127800000034, 7.332709052000041 ], [ 100.378754102000073, 7.309800523000092 ], [ 100.342020297598594, 7.250410468568248 ], [ 100.298302037009364, 7.232401230732194 ], [ 100.283832635967315, 7.208345852579043 ], [ 100.154538201676644, 7.180259711216706 ], [ 100.072165968884292, 7.136412258518931 ], [ 100.030618116832557, 7.091737983521114 ], [ 99.965092400993456, 7.177004096162079 ], [ 99.93935753801992, 7.247619941507082 ], [ 99.94245812434292, 7.296635037177225 ], [ 99.88442548964457, 7.384149075419487 ], [ 99.854504835629598, 7.485176500295267 ], [ 99.828046503143582, 7.51527802236285 ], [ 99.826082798382402, 7.552588406529708 ], [ 99.796110468423365, 7.603257147699196 ], [ 99.797867465810839, 7.638939723889109 ], [ 99.820966831354156, 7.673407904151418 ], [ 99.796110468423365, 7.702424221500621 ], [ 99.744330682315081, 7.850916449334647 ], [ 99.815230746701559, 7.884583644819315 ], [ 99.95940799408362, 7.90375560084027 ], [ 100.002041049954471, 7.885513820806182 ], [ 100.04457075393708, 7.824458115949255 ], [ 100.161876254985145, 7.796527004217864 ], [ 100.20085696700005, 7.772324937000064 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-80", "NAME_1": "Nakhon Si Thammarat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.771820509000065, 9.312282619000086 ], [ 99.803396030000044, 9.322658596000053 ], [ 99.853526238000029, 9.294663804000038 ], [ 99.859629754000082, 9.257757880000042 ], [ 99.877777540000068, 9.226467190000051 ], [ 99.88599694100003, 9.233303127000056 ], [ 99.886485222000033, 9.157904364000046 ], [ 99.916270379000082, 9.101996161000045 ], [ 99.933116082000026, 9.000555731000077 ], [ 99.919444207000026, 8.980047919000071 ], [ 99.926280144000032, 8.863348700000074 ], [ 99.967133009000065, 8.605658270000049 ], [ 100.040782097000033, 8.54555898600006 ], [ 100.098480665000068, 8.426459052000041 ], [ 100.14421634200005, 8.388820705000057 ], [ 100.186289910000028, 8.39720286700009 ], [ 100.164805535000028, 8.501369533000059 ], [ 100.131114129000082, 8.514553127000056 ], [ 100.150645379000082, 8.522935289000088 ], [ 100.180837436000047, 8.501206773000092 ], [ 100.220469597000033, 8.448716539000088 ], [ 100.271494988000029, 8.317084052000041 ], [ 100.342458530000044, 7.938788153000075 ], [ 100.155209996144379, 7.874429226027928 ], [ 100.129630161902412, 7.801720486511215 ], [ 100.04457075393708, 7.824458115949255 ], [ 100.002041049954471, 7.885513820806182 ], [ 99.95940799408362, 7.90375560084027 ], [ 99.815230746701559, 7.884583644819315 ], [ 99.744330682315081, 7.850916449334647 ], [ 99.731928338821717, 7.90220530812843 ], [ 99.748516473356517, 7.973027859048443 ], [ 99.727690870936897, 7.992044786337829 ], [ 99.608990105908617, 7.98127024992209 ], [ 99.533284132856409, 7.875824490008199 ], [ 99.400785760354495, 7.890087185475238 ], [ 99.325648228083196, 7.957292385235405 ], [ 99.344251744222561, 7.99824595808451 ], [ 99.287304315141967, 8.097180486989885 ], [ 99.292885370163674, 8.157848619118454 ], [ 99.317379998787885, 8.20151520376362 ], [ 99.317896762725354, 8.281742865540821 ], [ 99.240795525692931, 8.380522365714569 ], [ 99.285754022430126, 8.475012722059489 ], [ 99.282240024957161, 8.538703925245954 ], [ 99.332004428561504, 8.52126312909013 ], [ 99.447294549803587, 8.601103217239654 ], [ 99.449051548090438, 8.635700587811868 ], [ 99.488739048168497, 8.668050035480746 ], [ 99.522277053343316, 8.730190945056052 ], [ 99.529976840958398, 8.847108873375817 ], [ 99.559018995829945, 8.858916938565869 ], [ 99.590231561037683, 8.916794541834633 ], [ 99.623924594944071, 8.905942491053111 ], [ 99.693119337887083, 8.931858222079256 ], [ 99.692034133168647, 8.96319997849622 ], [ 99.731618279559939, 8.980795803383614 ], [ 99.748826531719033, 9.055519924504893 ], [ 99.784948358380007, 9.056605129223328 ], [ 99.783914829605635, 9.112002264692762 ], [ 99.751462030048629, 9.123396917833475 ], [ 99.731411573984929, 9.153188381538541 ], [ 99.754976026622273, 9.227292385035526 ], [ 99.751255323574298, 9.28307709413258 ], [ 99.771820509000065, 9.312282619000086 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-84", "NAME_1": "Surat Thani" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.144948036622566, 9.79123236757971 ], [ 99.172862175000034, 9.665228583000044 ], [ 99.212087436000047, 9.597723700000074 ], [ 99.223155144000032, 9.542629299000055 ], [ 99.32357832100007, 9.391546942000048 ], [ 99.290782097000033, 9.39008209800005 ], [ 99.235524936000047, 9.336330471000053 ], [ 99.234141472000033, 9.278265692000048 ], [ 99.255056186000047, 9.232489325000074 ], [ 99.350759311000047, 9.219183661000045 ], [ 99.37818444100003, 9.192938544000071 ], [ 99.474782748000052, 9.200995184000078 ], [ 99.535817905000044, 9.281683661000045 ], [ 99.593516472000033, 9.27484772300005 ], [ 99.689463738000029, 9.31586334800005 ], [ 99.752777540000068, 9.31976959800005 ], [ 99.771820509000065, 9.312282619000086 ], [ 99.751255323574298, 9.28307709413258 ], [ 99.754976026622273, 9.227292385035526 ], [ 99.731928338821717, 9.149157620128051 ], [ 99.783914829605635, 9.112002264692762 ], [ 99.786705356666857, 9.060170803539734 ], [ 99.748826531719033, 9.055519924504893 ], [ 99.731618279559939, 8.980795803383614 ], [ 99.692034133168647, 8.96319997849622 ], [ 99.693119337887083, 8.931858222079256 ], [ 99.623924594944071, 8.905942491053111 ], [ 99.590231561037683, 8.916794541834633 ], [ 99.559018995829945, 8.858916938565869 ], [ 99.529976840958398, 8.847108873375817 ], [ 99.522277053343316, 8.730190945056052 ], [ 99.488739048168497, 8.668050035480746 ], [ 99.449051548090438, 8.635700587811868 ], [ 99.447294549803587, 8.601103217239654 ], [ 99.332004428561504, 8.52126312909013 ], [ 99.284720493655811, 8.542295437084761 ], [ 99.285754022430126, 8.475012722059489 ], [ 99.240795525692931, 8.388428859804037 ], [ 99.266065301572382, 8.341558336048365 ], [ 99.181212600081381, 8.322257187918865 ], [ 99.060651483079425, 8.351738593261473 ], [ 99.001533644562016, 8.315255032293919 ], [ 98.913063592810545, 8.313808092369527 ], [ 98.890532668048138, 8.413259386111747 ], [ 98.908257684144758, 8.471292019011457 ], [ 98.884641554663972, 8.514441839719098 ], [ 98.928256464264393, 8.561286525952426 ], [ 98.918179558939471, 8.58425670028646 ], [ 98.852085402319403, 8.64058401084344 ], [ 98.798548618823645, 8.646010037133522 ], [ 98.766560907260043, 8.674173691962324 ], [ 98.724237908852388, 8.625856228282316 ], [ 98.662019484011921, 8.64399465642822 ], [ 98.584401483041972, 8.62570119955069 ], [ 98.549778274048094, 8.651461900046627 ], [ 98.602694939919502, 8.711432400185117 ], [ 98.605175408618152, 8.790626532288627 ], [ 98.57261925717296, 8.800264187142488 ], [ 98.501512486312151, 8.877236232965743 ], [ 98.458724399911091, 8.887158107760456 ], [ 98.45391849214468, 8.943872991945 ], [ 98.506473422810188, 8.978702908312528 ], [ 98.481978794185977, 9.063426417694984 ], [ 98.496551548015475, 9.076552232499523 ], [ 98.489213494706974, 9.12579987216634 ], [ 98.510245802701604, 9.20866303137376 ], [ 98.53427534423173, 9.24398387325715 ], [ 98.530554641183699, 9.292843940195667 ], [ 98.511020949057524, 9.306434841194971 ], [ 98.549003126792854, 9.351729233817082 ], [ 98.672974887580949, 9.357491155992022 ], [ 98.656696812307985, 9.423120225518005 ], [ 98.679796176951982, 9.423430283880464 ], [ 98.678607619446041, 9.461748359299349 ], [ 98.774157342986939, 9.542518622536363 ], [ 98.749817743094354, 9.601171373060424 ], [ 98.786146275330282, 9.683801988271114 ], [ 98.902004835554692, 9.729664822573511 ], [ 99.024943067568472, 9.73036245456359 ], [ 99.102354363862787, 9.786767279486355 ], [ 99.144948036622566, 9.79123236757971 ] ] ], [ [ [ 99.698741082000026, 9.542222398000092 ], [ 99.703461134000065, 9.521307684000078 ], [ 99.668142123000052, 9.519191799000055 ], [ 99.698741082000026, 9.542222398000092 ] ] ], [ [ [ 99.684255405000044, 9.620021877000056 ], [ 99.680430535000028, 9.612209377000056 ], [ 99.678070509000065, 9.610419012000079 ], [ 99.675303582000026, 9.62445709800005 ], [ 99.684255405000044, 9.620021877000056 ] ] ], [ [ [ 100.070160352000073, 9.586411851000037 ], [ 100.090668165000068, 9.560939846000053 ], [ 100.060883009000065, 9.463812567000048 ], [ 100.019297722000033, 9.425726630000042 ], [ 99.94662519600007, 9.418198960000041 ], [ 99.926280144000032, 9.565985419000071 ], [ 99.959483269000032, 9.580755927000041 ], [ 100.043711785000028, 9.564154364000046 ], [ 100.070160352000073, 9.586411851000037 ] ] ], [ [ [ 100.035411004000082, 9.795599677000041 ], [ 100.067230665000068, 9.775620835000041 ], [ 100.090098504000082, 9.665269273000092 ], [ 99.98764082100007, 9.719916083000044 ], [ 99.98991946700005, 9.74290599200009 ], [ 99.970550977000073, 9.764593817000048 ], [ 99.98764082100007, 9.801825262000079 ], [ 100.035411004000082, 9.795599677000041 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-75", "NAME_1": "Samut Songkhram" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.088959181000064, 13.425970770000049 ], [ 100.038828972000033, 13.402736721000053 ], [ 100.021657748000052, 13.366603908000059 ], [ 100.00131269600007, 13.372015692000048 ], [ 100.015635613000029, 13.36587148600006 ], [ 100.006195509000065, 13.332831122000073 ], [ 99.962738477000073, 13.309881903000075 ], [ 99.960866733000046, 13.291571356000077 ], [ 99.903390740989892, 13.273996283401743 ], [ 99.894812453332008, 13.239192206355199 ], [ 99.873418410131478, 13.247408758807182 ], [ 99.858380568308519, 13.269345405266222 ], [ 99.858690626671034, 13.328411566940247 ], [ 99.918428582812794, 13.509614975850468 ], [ 99.974600864638148, 13.491631578234717 ], [ 100.037904494196994, 13.504499009721485 ], [ 100.088959181000064, 13.425970770000049 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-74", "NAME_1": "Samut Sakhon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.400779919947695, 13.490637567256401 ], [ 100.33716881600003, 13.48187897300005 ], [ 100.27507571700005, 13.516669012000079 ], [ 100.237152540000068, 13.477362372000073 ], [ 100.088959181000064, 13.425970770000049 ], [ 100.037904494196994, 13.504499009721485 ], [ 100.078677198993489, 13.683687038825781 ], [ 100.259338007343104, 13.661311142795 ], [ 100.272670525924013, 13.704176744461165 ], [ 100.331788365340742, 13.730092475487368 ], [ 100.349048293443957, 13.649089667354247 ], [ 100.384705031212206, 13.620770981995236 ], [ 100.40516889932519, 13.559586085929084 ], [ 100.400779919947695, 13.490637567256401 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-10", "NAME_1": "Bangkok Metropolis" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.46697782333419, 13.495665330651736 ], [ 100.400779919947695, 13.490637567256401 ], [ 100.411576775747562, 13.512069607026717 ], [ 100.389510939877937, 13.611805120709732 ], [ 100.345947707120956, 13.656918647077873 ], [ 100.326982455775692, 13.751073105739238 ], [ 100.335664097120343, 13.79871877675015 ], [ 100.488367955316846, 13.798098660025119 ], [ 100.521750929961399, 13.848198961313017 ], [ 100.551516555244802, 13.94785696152951 ], [ 100.678588902355898, 13.918039659402723 ], [ 100.904828322369156, 13.949794826969651 ], [ 100.896921828279687, 13.846803697332746 ], [ 100.92358686724009, 13.813420721788873 ], [ 100.849276158168095, 13.709163520280242 ], [ 100.855373977127329, 13.691981106542812 ], [ 100.713212111349833, 13.711514796870347 ], [ 100.685875278821015, 13.660019233400874 ], [ 100.66401614762708, 13.652965400033167 ], [ 100.598232050268848, 13.658391425423929 ], [ 100.585261265095255, 13.666763007506802 ], [ 100.595906610301768, 13.697148749515179 ], [ 100.561386753196075, 13.703582465258535 ], [ 100.519373814050255, 13.662783922040376 ], [ 100.499220005199049, 13.665445257892316 ], [ 100.493793979808288, 13.59984202678811 ], [ 100.463046502593954, 13.583512275571024 ], [ 100.46697782333419, 13.495665330651736 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-11", "NAME_1": "Samut Prakan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.840971900219628, 13.478193811049598 ], [ 100.64966881600003, 13.52024974200009 ], [ 100.592051629000082, 13.554510809000078 ], [ 100.597829623000052, 13.612250067000048 ], [ 100.57585696700005, 13.519598700000074 ], [ 100.46697782333419, 13.495665330651736 ], [ 100.463046502593954, 13.583512275571024 ], [ 100.493793979808288, 13.59984202678811 ], [ 100.499220005199049, 13.665445257892316 ], [ 100.519373814050255, 13.662783922040376 ], [ 100.570740188109141, 13.708052476240766 ], [ 100.595906610301768, 13.697148749515179 ], [ 100.585261265095255, 13.666763007506802 ], [ 100.605673456364855, 13.656169338244354 ], [ 100.682981398972345, 13.657228705440389 ], [ 100.713212111349833, 13.711514796870347 ], [ 100.855373977127329, 13.691981106542812 ], [ 100.940330031405779, 13.657667955012073 ], [ 100.947358026351822, 13.632940782391188 ], [ 100.90219282403956, 13.588292344915772 ], [ 100.899867384971799, 13.561343085115254 ], [ 100.875837844340992, 13.551757107104777 ], [ 100.840971900219628, 13.478193811049598 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-24", "NAME_1": "Chachoengsao" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.98067133462655, 13.462922423437707 ], [ 100.99577884200005, 13.496161200000074 ], [ 100.950694207000026, 13.468247789000088 ], [ 100.840971900219628, 13.478193811049598 ], [ 100.875837844340992, 13.551757107104777 ], [ 100.899867384971799, 13.561343085115254 ], [ 100.90219282403956, 13.588292344915772 ], [ 100.947358026351822, 13.632940782391188 ], [ 100.940330031405779, 13.657667955012073 ], [ 100.848656039644482, 13.704099229196061 ], [ 100.92358686724009, 13.813420721788873 ], [ 100.896921828279687, 13.846803697332746 ], [ 100.90529341036256, 13.955350043569638 ], [ 100.944567499290599, 13.968424181530736 ], [ 101.140834589344763, 13.968424181530736 ], [ 101.156699252568387, 13.922199612022439 ], [ 101.143004998781635, 13.877421983337854 ], [ 101.152513462426327, 13.850576077224162 ], [ 101.210856153688496, 13.874941515538524 ], [ 101.354051548240307, 13.859955348760309 ], [ 101.54913007988921, 13.770477607555506 ], [ 101.565408156061494, 13.749936225076738 ], [ 101.5897994318982, 13.782311510267959 ], [ 101.689689976111481, 13.755853175983248 ], [ 101.703074172435095, 13.790915636347506 ], [ 101.755784132731492, 13.80143179034485 ], [ 101.817744175153507, 13.72143667256438 ], [ 101.876241896945942, 13.72314199490711 ], [ 101.890039504419576, 13.663119818824555 ], [ 101.920321892741129, 13.633018296756973 ], [ 101.917324660104953, 13.588344020859836 ], [ 101.989981723677545, 13.58017914525135 ], [ 101.993392369262381, 13.505661728805705 ], [ 101.94962243003107, 13.487161567252485 ], [ 101.944816522264659, 13.468738919165787 ], [ 101.995407749068306, 13.336188869820489 ], [ 101.907712843672755, 13.271929225853057 ], [ 101.886473830103114, 13.220278631853375 ], [ 101.849628533929661, 13.235523180150608 ], [ 101.776764763882682, 13.184570217241742 ], [ 101.717646926264592, 13.171728624176637 ], [ 101.680078159679283, 13.250173448345947 ], [ 101.561170689075993, 13.335258693833623 ], [ 101.520863072272903, 13.40112030735628 ], [ 101.489547154277716, 13.416649074695044 ], [ 101.453477003560806, 13.410473741370026 ], [ 101.403557570325574, 13.45855866105336 ], [ 101.364903599021829, 13.458067735537554 ], [ 101.276640252845368, 13.551240343167308 ], [ 101.141041294020454, 13.589971828836838 ], [ 101.117115106177152, 13.563151760245546 ], [ 101.053811476618307, 13.546951199338366 ], [ 101.052726271899871, 13.509770006380677 ], [ 101.018154737950738, 13.474630032549953 ], [ 100.98067133462655, 13.462922423437707 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-20", "NAME_1": "Chon Buri" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.978037957000026, 12.639593817000048 ], [ 100.974457227000073, 12.598049221000053 ], [ 100.926117384000065, 12.619126695000091 ], [ 100.94076582100007, 12.636379299000055 ], [ 100.91765384200005, 12.662583726000037 ], [ 100.857920769000032, 12.65265534100007 ], [ 100.871429884000065, 12.673773505000042 ], [ 100.851084832000026, 12.673773505000042 ], [ 100.86459394600007, 12.701117255000042 ], [ 100.837412957000026, 12.707912502000056 ], [ 100.867930535000028, 12.771144924000055 ], [ 100.892100457000026, 12.762518622000073 ], [ 100.919932488000029, 12.810939846000053 ], [ 100.86459394600007, 12.919582424000055 ], [ 100.892100457000026, 12.948065497000073 ], [ 100.899587436000047, 12.982245184000078 ], [ 100.933604363000029, 13.002752997000073 ], [ 100.905772332000026, 13.074408270000049 ], [ 100.87826582100007, 13.098334052000041 ], [ 100.945160352000073, 13.200913804000038 ], [ 100.912445509000065, 13.293850002000056 ], [ 100.932383660000028, 13.338120835000041 ], [ 100.981293165000068, 13.359035549000055 ], [ 100.98067133462655, 13.462922423437707 ], [ 101.018154737950738, 13.474630032549953 ], [ 101.052726271899871, 13.509770006380677 ], [ 101.053811476618307, 13.546951199338366 ], [ 101.117115106177152, 13.563151760245546 ], [ 101.149102817740811, 13.590126858467727 ], [ 101.276640252845368, 13.551240343167308 ], [ 101.364903599021829, 13.458067735537554 ], [ 101.403557570325574, 13.45855866105336 ], [ 101.453477003560806, 13.410473741370026 ], [ 101.489547154277716, 13.416649074695044 ], [ 101.520863072272903, 13.40112030735628 ], [ 101.561170689075993, 13.335258693833623 ], [ 101.680078159679283, 13.250173448345947 ], [ 101.717646926264592, 13.171728624176637 ], [ 101.692635532803536, 13.133978990438038 ], [ 101.637238397334102, 13.150928860178738 ], [ 101.589282667960731, 13.130025743393333 ], [ 101.564477980974004, 13.080700588461355 ], [ 101.536727736395903, 13.064500027554232 ], [ 101.499934117065834, 13.069202582533137 ], [ 101.463295525568014, 13.031530463160323 ], [ 101.431669550109632, 13.038739325259655 ], [ 101.393945753893377, 13.016957709330825 ], [ 101.331262241958882, 13.067109687462107 ], [ 101.30764611157872, 13.069951891366657 ], [ 101.273229608159852, 13.047085068920808 ], [ 101.182744174803759, 13.076463121475854 ], [ 101.161505162133494, 13.060236721247691 ], [ 101.169566684954532, 13.021324368424871 ], [ 101.08605756970104, 13.022487087509091 ], [ 101.067764112823511, 13.000498766005251 ], [ 101.090088332010851, 12.976727606893519 ], [ 101.095566034245053, 12.910995185479408 ], [ 101.060322706727504, 12.871901963704659 ], [ 101.050400831932791, 12.833222153979193 ], [ 101.00260013219031, 12.793431301113628 ], [ 100.978037957000026, 12.639593817000048 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-21", "NAME_1": "Rayong" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.78908834703671, 12.697844911410769 ], [ 101.70443769600007, 12.707912502000056 ], [ 101.642344597000033, 12.651353257000039 ], [ 101.581065300000034, 12.65265534100007 ], [ 101.566416863000029, 12.631293036000045 ], [ 101.465098504000082, 12.632310289000088 ], [ 101.418142123000052, 12.595648505000042 ], [ 101.32349694100003, 12.642157294000071 ], [ 101.087738477000073, 12.680609442000048 ], [ 100.978037957000026, 12.639593817000048 ], [ 100.973919711625342, 12.649383245840113 ], [ 101.00260013219031, 12.793431301113628 ], [ 101.050400831932791, 12.833222153979193 ], [ 101.060322706727504, 12.871901963704659 ], [ 101.093395623908862, 12.903682969693307 ], [ 101.091948683984526, 12.969854641578422 ], [ 101.067764112823511, 13.000498766005251 ], [ 101.08605756970104, 13.022487087509091 ], [ 101.169566684954532, 13.021324368424871 ], [ 101.161505162133494, 13.060236721247691 ], [ 101.182744174803759, 13.076463121475854 ], [ 101.273229608159852, 13.047085068920808 ], [ 101.30764611157872, 13.069951891366657 ], [ 101.331262241958882, 13.067109687462107 ], [ 101.393945753893377, 13.016957709330825 ], [ 101.431669550109632, 13.038739325259655 ], [ 101.463295525568014, 13.031530463160323 ], [ 101.499934117065834, 13.069202582533137 ], [ 101.550215284607646, 13.070649522457472 ], [ 101.574709914131176, 13.090932522517903 ], [ 101.58328820178906, 13.126382554711142 ], [ 101.637238397334102, 13.150928860178738 ], [ 101.692635532803536, 13.133978990438038 ], [ 101.68736453704372, 13.110052801695417 ], [ 101.713306105592267, 13.034837755058334 ], [ 101.751029900909145, 13.007009996114391 ], [ 101.743536817969755, 12.956780504516644 ], [ 101.789322137006991, 12.941923529847031 ], [ 101.807150506790435, 12.897120062740669 ], [ 101.825650669242975, 12.889911199742073 ], [ 101.818829379871943, 12.763329779945366 ], [ 101.78908834703671, 12.697844911410769 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-83", "NAME_1": "Phuket" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.418630405000044, 7.90375397300005 ], [ 98.431651238000029, 7.91742584800005 ], [ 98.439789259000065, 7.886623440000051 ], [ 98.39966881600003, 7.864569403000075 ], [ 98.39812259200005, 7.815008856000077 ], [ 98.343923373000052, 7.832912502000056 ], [ 98.323090040000068, 7.77094147300005 ], [ 98.291840040000068, 7.777492580000057 ], [ 98.267751498000052, 7.89008209800005 ], [ 98.285329623000052, 7.90375397300005 ], [ 98.254161004000082, 7.928290106000077 ], [ 98.274099155000044, 7.953680731000077 ], [ 98.265961134000065, 7.973781643000052 ], [ 98.281423373000052, 8.003078518000052 ], [ 98.281423373000052, 8.191799221000053 ], [ 98.330088738000029, 8.170477606000077 ], [ 98.343516472000033, 8.109198309000078 ], [ 98.360118035000028, 8.118841864000046 ], [ 98.40552819100003, 8.082505601000037 ], [ 98.422618035000028, 8.099310614000046 ], [ 98.43913821700005, 8.082505601000037 ], [ 98.418630405000044, 7.993150132000039 ], [ 98.39812259200005, 7.972642320000091 ], [ 98.418630405000044, 7.90375397300005 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-40", "NAME_1": "Khon Kaen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.985434198329528, 16.843468328900258 ], [ 102.071268751751461, 16.885403754579613 ], [ 102.195137159752107, 16.857033393276481 ], [ 102.263350050764188, 16.890855618392038 ], [ 102.295337762327847, 16.878530789264516 ], [ 102.336627231961131, 16.819878037841136 ], [ 102.410162794677206, 16.79264455809988 ], [ 102.50622928305495, 16.79398814523671 ], [ 102.558835890563842, 16.761406155369741 ], [ 102.60973717662938, 16.769286811037489 ], [ 102.684047885701318, 16.960954698000876 ], [ 102.693194615039431, 17.037978419768251 ], [ 102.717120802882732, 17.074513658478566 ], [ 102.73014326400039, 17.042732652489917 ], [ 102.83189415928797, 16.97588918703633 ], [ 102.822178990068267, 16.958009142208141 ], [ 102.837371860622852, 16.873879910229675 ], [ 102.889048293044254, 16.877936510061886 ], [ 102.955452508926101, 16.841065375466712 ], [ 103.113117302721321, 16.912818101474215 ], [ 103.134201287559335, 16.885352077736172 ], [ 103.127690056550819, 16.826156724852979 ], [ 103.160556268157222, 16.862976183504031 ], [ 103.184482456000524, 16.853183499019224 ], [ 103.193164097345175, 16.804943548805738 ], [ 103.168824496553214, 16.75448151321126 ], [ 103.162933384068367, 16.616298732900191 ], [ 103.081129592056982, 16.504729316504722 ], [ 102.940621371778832, 16.445508124300488 ], [ 102.95328209769059, 16.403081773105328 ], [ 102.898970167838911, 16.314017442151226 ], [ 102.851324496827999, 16.268929755104125 ], [ 102.860161166904277, 16.072869371524234 ], [ 102.911475865019099, 15.996491604004291 ], [ 102.907186721190214, 15.929570624184919 ], [ 102.937417433567646, 15.864794216280018 ], [ 102.946460809218934, 15.789217434437035 ], [ 102.896489699140261, 15.763379217776674 ], [ 102.868584425830534, 15.636539415561572 ], [ 102.806624384307838, 15.624188748012273 ], [ 102.760994094002172, 15.660904852976557 ], [ 102.724097120985277, 15.66966400778773 ], [ 102.692419467784191, 15.719480089134777 ], [ 102.611545851759615, 15.717438870007811 ], [ 102.596042921943251, 15.704959011249343 ], [ 102.50777957576679, 15.716457017177561 ], [ 102.428817986760635, 15.694752916513892 ], [ 102.37032026586752, 15.735603136575492 ], [ 102.36939008988071, 15.763379217776674 ], [ 102.331666293664455, 15.805831407393498 ], [ 102.331666293664455, 15.849885566565604 ], [ 102.39248945542397, 15.983805040570132 ], [ 102.279989862142372, 16.049175726778344 ], [ 102.266967401024715, 16.073256944252535 ], [ 102.329960972221045, 16.12989431407135 ], [ 102.403961622930524, 16.238440660308186 ], [ 102.453157586653276, 16.406802476153359 ], [ 102.419929640740293, 16.426749579429554 ], [ 102.405356886910738, 16.458633938205651 ], [ 102.372594028991216, 16.437601630211077 ], [ 102.300918817349498, 16.450804959381344 ], [ 102.203612094622429, 16.505116889233022 ], [ 102.077159865135627, 16.503876654883697 ], [ 101.986416050260459, 16.57694713050563 ], [ 101.955978632308017, 16.632964381800775 ], [ 101.834952427312601, 16.660352892072297 ], [ 101.788546990651071, 16.642472846344788 ], [ 101.751443312958486, 16.670352281232795 ], [ 101.786841669207604, 16.725077623133757 ], [ 101.790562372255636, 16.766496283077004 ], [ 101.955978632308017, 16.847731635206799 ], [ 101.985434198329528, 16.843468328900258 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-47", "NAME_1": "Sakon Nakhon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.419248487727486, 17.980634060313605 ], [ 103.467204218000234, 18.002622381817446 ], [ 103.480691766211976, 18.048330186488897 ], [ 103.541514927072171, 18.061714381913191 ], [ 103.636341180201271, 18.009236964714148 ], [ 103.617582636229656, 17.992002875032654 ], [ 103.634480829126915, 17.965208644863083 ], [ 103.739539016312506, 17.911284287739647 ], [ 103.761553176238067, 17.944563910496072 ], [ 103.77736616441689, 17.894205226789779 ], [ 103.760778028982827, 17.872475286805013 ], [ 103.786099480806342, 17.847593085452502 ], [ 103.804031203377292, 17.843536484720971 ], [ 103.802532586609516, 17.867876085512933 ], [ 103.854053990299349, 17.875033270768824 ], [ 103.868316684867068, 17.857075711574794 ], [ 103.898754103718886, 17.875291653187219 ], [ 103.897203811007046, 17.844905911178842 ], [ 103.920923293275337, 17.848729967014378 ], [ 103.91921797093255, 17.815682888254685 ], [ 103.938596633427835, 17.785813910183776 ], [ 103.971049432085579, 17.768063056564813 ], [ 104.010323521013618, 17.801187648790915 ], [ 104.022880894137927, 17.75622915295304 ], [ 104.039934116666132, 17.758502916076679 ], [ 104.063085158153456, 17.732664700315638 ], [ 104.07610761927117, 17.674993800823245 ], [ 104.058279250387045, 17.645150662073377 ], [ 104.031407504952369, 17.634376126556958 ], [ 104.048357374693069, 17.586187852287537 ], [ 104.009393345026808, 17.476142890182246 ], [ 104.058899367112076, 17.386019192032052 ], [ 104.092540725074343, 17.378035183576856 ], [ 104.097346632840811, 17.399506741143171 ], [ 104.1341402530702, 17.382479356137367 ], [ 104.157704705707545, 17.410849718339819 ], [ 104.413503046328458, 17.420900784343701 ], [ 104.444302198587536, 17.247216294996008 ], [ 104.404769729039742, 17.176807156125335 ], [ 104.39965376201144, 17.125725002906563 ], [ 104.361774937063672, 17.082936917404822 ], [ 104.363893670556422, 17.055186671927345 ], [ 104.394382766251624, 17.037435818308325 ], [ 104.393762648627273, 17.022139594066971 ], [ 104.323896112115847, 16.976793525500796 ], [ 104.303277216170557, 16.934806422977999 ], [ 104.239043409725525, 16.896178290095975 ], [ 104.137240839393201, 16.892767646309835 ], [ 104.101170688676291, 16.83752554047129 ], [ 104.0728520042166, 16.832590439697015 ], [ 104.019470248553091, 16.853751938900871 ], [ 103.95813032375537, 16.814865424499715 ], [ 103.937563103754201, 16.780061347453227 ], [ 103.79493615088262, 16.891785794378904 ], [ 103.7775728699919, 16.961393948471937 ], [ 103.691738315670705, 17.022578844538032 ], [ 103.647193230982793, 17.021674506073566 ], [ 103.65406619719721, 17.10076528628889 ], [ 103.590710890794924, 17.161071682312297 ], [ 103.561410354404302, 17.161872667089881 ], [ 103.464103631677233, 17.229801337261904 ], [ 103.402505323561797, 17.217140611350146 ], [ 103.269800246384193, 17.266930854275472 ], [ 103.246545852109364, 17.311579290851569 ], [ 103.292176140616334, 17.384158840058433 ], [ 103.270317011221039, 17.43438833345482 ], [ 103.281169061103242, 17.480018621961847 ], [ 103.335015903860835, 17.576963609482959 ], [ 103.39733768058943, 17.598719386990126 ], [ 103.400800002118388, 17.738581651222205 ], [ 103.367727084936973, 17.786020615758787 ], [ 103.380594517323061, 17.835397447534149 ], [ 103.410256788919639, 17.838007107442024 ], [ 103.395063918365111, 17.847903143815017 ], [ 103.406536085871608, 17.894256904532483 ], [ 103.381214634048092, 17.979626369961011 ], [ 103.419248487727486, 17.980634060313605 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-72", "NAME_1": "Suphan Buri" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.211537306701302, 14.955082301706852 ], [ 100.193553908186288, 14.922345282208994 ], [ 100.224869826181475, 14.903483385449874 ], [ 100.211692336332192, 14.825090237224629 ], [ 100.232362909120923, 14.78984690970708 ], [ 100.210142042721031, 14.753518378370472 ], [ 100.224869826181475, 14.654687201353227 ], [ 100.205026075692786, 14.612157498269937 ], [ 100.216963332092064, 14.591435247738502 ], [ 100.196964552871805, 14.563504136906374 ], [ 100.217118360823633, 14.511827704484972 ], [ 100.254067010683968, 14.486480414239736 ], [ 100.282127312725265, 14.40268707904545 ], [ 100.254997185771458, 14.226987209891831 ], [ 100.220994094401874, 14.177145291022327 ], [ 100.158465611198949, 14.140894273152185 ], [ 99.986228061775591, 14.14559682903041 ], [ 99.878844436421559, 14.065575872828276 ], [ 99.811510043653527, 14.06177765541446 ], [ 99.773941277967538, 14.099630641940564 ], [ 99.765104607891317, 14.166112372188195 ], [ 99.810269810203522, 14.210528266566257 ], [ 99.822052036971911, 14.247967841043021 ], [ 99.825152622395592, 14.518364773015833 ], [ 99.890626662290572, 14.561101183472829 ], [ 99.846133254446102, 14.605413723264689 ], [ 99.867217238384796, 14.638434962703343 ], [ 99.784638300017491, 14.677967434049833 ], [ 99.658031040000481, 14.802636826828063 ], [ 99.599843378369201, 14.785015164418269 ], [ 99.544446242000447, 14.795970567087977 ], [ 99.529046664971588, 14.727912705706785 ], [ 99.504758741922387, 14.700214137972068 ], [ 99.458973422885094, 14.690783188693217 ], [ 99.435977411028659, 14.72264170994697 ], [ 99.437992791733905, 14.76542979634803 ], [ 99.382905714626986, 14.766024075550604 ], [ 99.323167759384546, 14.833771876770697 ], [ 99.286684198416992, 14.842737738056144 ], [ 99.28255008331962, 14.86563039802445 ], [ 99.309525180642538, 14.903690090125565 ], [ 99.297122837149175, 14.975106920248152 ], [ 99.279139438634161, 14.997612005689518 ], [ 99.295262486074819, 15.052027289228022 ], [ 99.323477817747062, 15.072465318020022 ], [ 99.407607049725527, 15.034121405078793 ], [ 99.418149042144535, 15.000867620744089 ], [ 99.615966424910539, 14.944230251824649 ], [ 99.633949823425553, 14.946891588575909 ], [ 99.627645297992046, 14.985080470986929 ], [ 99.651519809891283, 14.992961127553997 ], [ 99.871403029426233, 14.921854355793869 ], [ 99.969949985603307, 14.909012762728821 ], [ 100.038989698915429, 14.931336981916161 ], [ 100.045190870662111, 14.962549547123899 ], [ 100.116504347997193, 14.946400662160841 ], [ 100.140327183052989, 14.923740546189265 ], [ 100.211537306701302, 14.955082301706852 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-17", "NAME_1": "Sing Buri" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.209211866734222, 14.90648061808605 ], [ 100.193553908186288, 14.922345282208994 ], [ 100.211537306701302, 14.955082301706852 ], [ 100.267244501432572, 14.953532008995012 ], [ 100.30341800313829, 14.994459744321716 ], [ 100.300782504808694, 15.011952216421662 ], [ 100.267554558895711, 15.027274278185359 ], [ 100.303262974406721, 15.079002387450203 ], [ 100.289000278939682, 15.072155260556826 ], [ 100.272205437930552, 15.11246287735986 ], [ 100.293444452399513, 15.128766791054545 ], [ 100.299645624146194, 15.164190985725384 ], [ 100.340470004886754, 15.160237739579998 ], [ 100.365016311253726, 15.094815374729762 ], [ 100.442892693742806, 15.060373032889117 ], [ 100.460152621845964, 14.975649521708021 ], [ 100.434676141290822, 14.917926947170884 ], [ 100.476585727649194, 14.835735582431141 ], [ 100.490848423116176, 14.745482693071835 ], [ 100.477050815642599, 14.724786281861384 ], [ 100.431730584598768, 14.72992808731135 ], [ 100.337679477825588, 14.794265244745247 ], [ 100.232362909120923, 14.78984690970708 ], [ 100.211692336332192, 14.825090237224629 ], [ 100.224869826181475, 14.903483385449874 ], [ 100.209211866734222, 14.90648061808605 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-18", "NAME_1": "Chai Nat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.140327183052989, 14.923740546189265 ], [ 100.116504347997193, 14.946400662160841 ], [ 100.052477248026548, 14.962730414277189 ], [ 100.038989698915429, 14.931336981916161 ], [ 99.969949985603307, 14.909012762728821 ], [ 99.725985548594167, 14.961180121565349 ], [ 99.725003696663236, 14.999084784035517 ], [ 99.789495883728023, 15.047195543039891 ], [ 99.808822870279187, 15.088071601523154 ], [ 99.736372512281548, 15.200493679539647 ], [ 99.7242802271507, 15.292813626447696 ], [ 99.764329462434716, 15.316946518966688 ], [ 99.887681105598517, 15.284881293037245 ], [ 99.99987063961828, 15.293330390385165 ], [ 100.058058303048199, 15.263332221105088 ], [ 100.074594760739558, 15.271135362407051 ], [ 100.059763625390985, 15.271729640710362 ], [ 100.05867841977323, 15.28728424737011 ], [ 100.071132440109977, 15.340278429405998 ], [ 100.029842971376013, 15.395494696822766 ], [ 100.055422804718603, 15.399344591080023 ], [ 100.057593215054794, 15.419679267084518 ], [ 100.11764122865975, 15.421617133423979 ], [ 100.211072218707898, 15.354205227189482 ], [ 100.262593622397731, 15.28844696735365 ], [ 100.309309117421776, 15.167549954466836 ], [ 100.272205437930552, 15.11246287735986 ], [ 100.289000278939682, 15.072155260556826 ], [ 100.303262974406721, 15.079002387450203 ], [ 100.267244501432572, 15.032803656363626 ], [ 100.306156854255391, 15.000402532750684 ], [ 100.267244501432572, 14.953532008995012 ], [ 100.211537306701302, 14.955082301706852 ], [ 100.140327183052989, 14.923740546189265 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-15", "NAME_1": "Ang Thong" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.254067010683968, 14.486480414239736 ], [ 100.217118360823633, 14.511827704484972 ], [ 100.196964552871805, 14.563504136906374 ], [ 100.216963332092064, 14.591435247738502 ], [ 100.205026075692786, 14.612157498269937 ], [ 100.224869826181475, 14.654687201353227 ], [ 100.210142042721031, 14.753518378370472 ], [ 100.232362909120923, 14.78984690970708 ], [ 100.337679477825588, 14.794265244745247 ], [ 100.389149204672037, 14.750107734584276 ], [ 100.477050815642599, 14.724786281861384 ], [ 100.515653111002223, 14.685899766560965 ], [ 100.492553746358283, 14.567354031163575 ], [ 100.499323357986555, 14.455474555506328 ], [ 100.471934848614353, 14.439532376118223 ], [ 100.428164911181682, 14.445190945505715 ], [ 100.414367302808728, 14.509088853367871 ], [ 100.254067010683968, 14.486480414239736 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-19", "NAME_1": "Saraburi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.193131137591877, 14.755921331804018 ], [ 101.20729048117073, 14.582211004933924 ], [ 101.187136672319525, 14.541748359399264 ], [ 101.24294721893898, 14.479788316077929 ], [ 101.206205274653655, 14.373593248229781 ], [ 101.161505162133494, 14.34775503246874 ], [ 101.125331658629079, 14.381293035844919 ], [ 101.084403925101014, 14.383360094292925 ], [ 101.058927442747233, 14.4082681340671 ], [ 101.036913282821729, 14.326645209209005 ], [ 100.988182407991701, 14.28744863554607 ], [ 100.948753290332036, 14.295380968057202 ], [ 100.9453426447472, 14.250293280110782 ], [ 100.912424758096051, 14.213913071930733 ], [ 100.876768020327859, 14.260008450229805 ], [ 100.822766147939319, 14.24179250681874 ], [ 100.820285679240669, 14.311193956236082 ], [ 100.77946129760079, 14.326335150846546 ], [ 100.792018670725042, 14.380259507969924 ], [ 100.76287316306599, 14.413074041833568 ], [ 100.755276727339037, 14.516065172369792 ], [ 100.770314569161997, 14.561488756201129 ], [ 100.702670118930826, 14.569421087812941 ], [ 100.615595331159568, 14.547096869524921 ], [ 100.574357538369668, 14.589342353566735 ], [ 100.610479364131322, 14.692023423941862 ], [ 100.719878371089919, 14.762148341972363 ], [ 100.787057733327686, 14.871521511408616 ], [ 100.842919955891205, 14.881650091778283 ], [ 100.871341994037778, 14.834598699970002 ], [ 100.874907668354183, 14.783309841176219 ], [ 100.916455520405918, 14.749745999378376 ], [ 100.954489374085313, 14.749720160057336 ], [ 100.985391880031216, 14.783232326810435 ], [ 100.990662875791031, 14.813230496090512 ], [ 101.084403925101014, 14.853228054531087 ], [ 101.132463007261947, 14.838784491011438 ], [ 101.149567905734216, 14.80511729642609 ], [ 101.18320926279722, 14.787108059489356 ], [ 101.193131137591877, 14.755921331804018 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-30", "NAME_1": "Nakhon Ratchasima" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.24294721893898, 14.479788316077929 ], [ 101.187136672319525, 14.541748359399264 ], [ 101.20729048117073, 14.582211004933924 ], [ 101.193131137591877, 14.755921331804018 ], [ 101.278345575188098, 14.730005600777815 ], [ 101.331882358683856, 14.76752269141906 ], [ 101.348625522849545, 14.806590073872769 ], [ 101.454148798028541, 14.876043199234232 ], [ 101.452546827573997, 14.913766995450487 ], [ 101.385884231072339, 15.054791977867467 ], [ 101.280671014255859, 15.087684027895534 ], [ 101.278655633550613, 15.239793605990087 ], [ 101.300411411957043, 15.302012029931234 ], [ 101.369864537318506, 15.268525702499176 ], [ 101.402007276714414, 15.216435858927753 ], [ 101.42639855255112, 15.215402330153381 ], [ 101.565408156061494, 15.253591213463721 ], [ 101.638478631683483, 15.310641995331821 ], [ 101.802189569393079, 15.380973618937333 ], [ 101.879342483268942, 15.379940090163018 ], [ 101.910968458727325, 15.443372910931089 ], [ 101.963885126397429, 15.474094549723702 ], [ 101.955823601777752, 15.552668565102181 ], [ 102.004089390413014, 15.593157049957881 ], [ 102.040314568962174, 15.658682765796982 ], [ 102.084652948075075, 15.619615383343273 ], [ 102.146664667340474, 15.682298896177087 ], [ 102.160358921127283, 15.736920885290601 ], [ 102.203612094622429, 15.744724025693188 ], [ 102.214980910240797, 15.764231879397698 ], [ 102.240509067639323, 15.752759710991882 ], [ 102.322984654118443, 15.806916612111934 ], [ 102.36939008988071, 15.763379217776674 ], [ 102.373730909653716, 15.731598211788025 ], [ 102.424167107725793, 15.695424710082307 ], [ 102.50777957576679, 15.716457017177561 ], [ 102.596042921943251, 15.704959011249343 ], [ 102.611545851759615, 15.717438870007811 ], [ 102.696295201362432, 15.718472397882863 ], [ 102.720686477199138, 15.672557888535721 ], [ 102.789261101618479, 15.639510809776027 ], [ 102.798252802225022, 15.547423406864709 ], [ 102.827760044190654, 15.51161164036489 ], [ 102.918658888696712, 15.512619329818222 ], [ 102.964754266096463, 15.472621772276966 ], [ 103.012244908375806, 15.457532252711303 ], [ 103.016379021674481, 15.439858914357387 ], [ 102.995811801673256, 15.421617133423979 ], [ 102.97529625941479, 15.429058539519986 ], [ 102.95292036338401, 15.385469469240604 ], [ 103.001237827963337, 15.356530667156562 ], [ 102.97467614089112, 15.329917304140281 ], [ 102.982892694242423, 15.193749905433776 ], [ 102.853804966426026, 15.153907375724771 ], [ 102.780424432441578, 15.074971625140392 ], [ 102.783525017865259, 15.04698883746488 ], [ 102.75386274626868, 14.984951279777704 ], [ 102.707353956819588, 14.952911892269981 ], [ 102.620589227410846, 14.939501858424023 ], [ 102.523592563945613, 14.96735545489031 ], [ 102.559145948926357, 14.935548611379318 ], [ 102.548190546256649, 14.897669786431493 ], [ 102.575579054729531, 14.837621771927218 ], [ 102.567827590271008, 14.814625759171406 ], [ 102.504523959812843, 14.808114529062266 ], [ 102.442357211815818, 14.853796495311997 ], [ 102.50932986937795, 14.652956041488096 ], [ 102.486488886253028, 14.557690537887993 ], [ 102.51506595313117, 14.489736030193626 ], [ 102.571961705368381, 14.434984849870887 ], [ 102.576044142722992, 14.370130926700881 ], [ 102.617178582725387, 14.285743313203341 ], [ 102.585966018416968, 14.211045030503726 ], [ 102.594182569969576, 14.14867157603237 ], [ 102.539612257699503, 14.120301214729238 ], [ 102.54937910376259, 14.092111721478773 ], [ 102.508864781384489, 14.089734605567571 ], [ 102.495067173011591, 14.141643581985704 ], [ 102.429748162747444, 14.155363674194177 ], [ 102.361431918947858, 14.156138821449417 ], [ 102.2944075872403, 14.12709666657787 ], [ 102.22986372333213, 14.14174693387389 ], [ 102.197410922875747, 14.18528432910847 ], [ 102.175241734218616, 14.176344306244744 ], [ 102.162219273100959, 14.136708482110748 ], [ 102.08630659357442, 14.157999172523773 ], [ 101.962644891148784, 14.253703924796298 ], [ 101.94791710768834, 14.288327134689496 ], [ 101.985950962267054, 14.352509264291086 ], [ 101.964505243122403, 14.377391466542917 ], [ 101.927143182112104, 14.360906683896303 ], [ 101.889729445157741, 14.393359483453366 ], [ 101.866268345307844, 14.364420681369324 ], [ 101.765137566745295, 14.347625841259571 ], [ 101.753200311245337, 14.316129055211718 ], [ 101.619875116443438, 14.431884264447206 ], [ 101.541688673793203, 14.42718170856898 ], [ 101.482725864906683, 14.461288154524709 ], [ 101.438800896943803, 14.425941474219655 ], [ 101.409293654078851, 14.424778754236115 ], [ 101.282996454222939, 14.502836004777805 ], [ 101.260672235035599, 14.475369981039762 ], [ 101.24294721893898, 14.479788316077929 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-26", "NAME_1": "Nakhon Nayok" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.165225865181469, 14.3469798852135 ], [ 101.206205274653655, 14.373593248229781 ], [ 101.233800489600867, 14.46934967734569 ], [ 101.260672235035599, 14.475369981039762 ], [ 101.282996454222939, 14.502836004777805 ], [ 101.480400424939603, 14.36682363480287 ], [ 101.514971957989417, 14.28917979631052 ], [ 101.50505008319476, 14.271635647367191 ], [ 101.447327508657565, 14.256339423125837 ], [ 101.396891310585488, 14.26778575310999 ], [ 101.391620314825616, 14.224920152343145 ], [ 101.300721470319559, 14.144589137778496 ], [ 101.326456333293095, 14.076117865247284 ], [ 101.316379428867492, 14.058470364415768 ], [ 101.22155317573845, 14.051829942198083 ], [ 101.181503941353753, 14.012349147694977 ], [ 101.137630650234257, 13.996510321993753 ], [ 101.140834589344763, 13.968424181530736 ], [ 100.944567499290599, 13.968424181530736 ], [ 100.90529341036256, 13.955350043569638 ], [ 100.912424758096051, 14.213913071930733 ], [ 100.9453426447472, 14.250293280110782 ], [ 100.948753290332036, 14.295380968057202 ], [ 100.988182407991701, 14.28744863554607 ], [ 101.026009556096085, 14.313596910568947 ], [ 101.058927442747233, 14.4082681340671 ], [ 101.165225865181469, 14.3469798852135 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-13", "NAME_1": "Pathum Thani" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.870566847681857, 14.261326198944914 ], [ 100.912424758096051, 14.213913071930733 ], [ 100.904828322369156, 13.949794826969651 ], [ 100.66324100127116, 13.920080878529689 ], [ 100.493638951076662, 13.949278062132862 ], [ 100.380054152177365, 13.991471869331292 ], [ 100.340159947423615, 14.04384593284351 ], [ 100.350288526893962, 14.113712470254256 ], [ 100.603348016397774, 14.123375963529895 ], [ 100.656419711900128, 14.165182197100705 ], [ 100.870566847681857, 14.261326198944914 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-61", "NAME_1": "Uthai Thani" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.615966424910539, 14.944230251824649 ], [ 99.418149042144535, 15.000867620744089 ], [ 99.407607049725527, 15.034121405078793 ], [ 99.323477817747062, 15.072465318020022 ], [ 99.295262486074819, 15.052027289228022 ], [ 99.279966261833465, 14.999782416025653 ], [ 99.248702019782343, 14.992496039560535 ], [ 99.134497105057335, 15.022442531997228 ], [ 99.073053826572789, 15.012262274784121 ], [ 98.99946658701333, 15.079028224972603 ], [ 98.980397983779881, 15.220621649969132 ], [ 99.015641311297429, 15.266406969006425 ], [ 99.056414016093925, 15.392523301708991 ], [ 99.066542595564272, 15.489313258699895 ], [ 99.043856642969672, 15.51292938908 ], [ 99.041531203002592, 15.544322822340348 ], [ 99.102819451856192, 15.625971584720844 ], [ 99.121422967995557, 15.769812934419349 ], [ 99.161937290373601, 15.773146063839761 ], [ 99.201211379301697, 15.754930121328016 ], [ 99.241880731310687, 15.716172797236766 ], [ 99.365697463367212, 15.653360094093046 ], [ 99.377479690135544, 15.624111232747168 ], [ 99.478507115011325, 15.561737779175132 ], [ 99.521295201412386, 15.563520615883704 ], [ 99.586045769996247, 15.620157985702463 ], [ 99.695754836216679, 15.678474840341607 ], [ 99.733788689896073, 15.676485297158706 ], [ 99.808564487860792, 15.625480658305719 ], [ 99.852437778980288, 15.636022650724726 ], [ 99.870782911801882, 15.565380967857379 ], [ 99.907111444037866, 15.521326809584593 ], [ 99.964162225006646, 15.510991522740539 ], [ 100.046431105910756, 15.446060086104069 ], [ 100.057128127061389, 15.401359971785268 ], [ 100.029998000107582, 15.390068671432005 ], [ 100.071132440109977, 15.340278429405998 ], [ 100.05867841977323, 15.28728424737011 ], [ 100.059763625390985, 15.271729640710362 ], [ 100.074594760739558, 15.271135362407051 ], [ 100.054337600000224, 15.263099677108414 ], [ 99.99987063961828, 15.293330390385165 ], [ 99.887681105598517, 15.284881293037245 ], [ 99.760608759386685, 15.317179062963362 ], [ 99.7242802271507, 15.292813626447696 ], [ 99.736372512281548, 15.200493679539647 ], [ 99.807169223880521, 15.077994697097552 ], [ 99.725003696663236, 14.999084784035517 ], [ 99.725985548594167, 14.961180121565349 ], [ 99.645163609412975, 14.992185981198077 ], [ 99.627645297992046, 14.985080470986929 ], [ 99.633949823425553, 14.946891588575909 ], [ 99.615966424910539, 14.944230251824649 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-46", "NAME_1": "Kalasin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.131100702135655, 16.825743312803638 ], [ 103.134201287559335, 16.885352077736172 ], [ 103.113117302721321, 16.912818101474215 ], [ 103.135596552438926, 16.949870103222679 ], [ 103.237244094039681, 16.962117417984416 ], [ 103.399714797399952, 16.902999579467007 ], [ 103.424054397292537, 16.879073390724386 ], [ 103.43568159442998, 16.827603664777314 ], [ 103.483017206179056, 16.906461900096588 ], [ 103.484877557253412, 16.958835964508125 ], [ 103.509268833090118, 16.99557790789413 ], [ 103.508338658002629, 17.046918443531354 ], [ 103.566526319633908, 17.094925848848845 ], [ 103.609004347672453, 17.092987983408705 ], [ 103.647503290244629, 17.049553940961573 ], [ 103.647193230982793, 17.021674506073566 ], [ 103.691738315670705, 17.022578844538032 ], [ 103.7775728699919, 16.961393948471937 ], [ 103.79493615088262, 16.891785794378904 ], [ 103.937563103754201, 16.780061347453227 ], [ 103.95813032375537, 16.814865424499715 ], [ 104.019470248553091, 16.853751938900871 ], [ 104.0728520042166, 16.832590439697015 ], [ 104.184421420612011, 16.666760769393989 ], [ 104.183026158430437, 16.617642320037021 ], [ 104.237648146644631, 16.527983709880289 ], [ 104.244314406384717, 16.432873236810394 ], [ 104.164732700653587, 16.444939683519578 ], [ 104.05931277916136, 16.395640367009321 ], [ 104.039624058303616, 16.440986436474873 ], [ 103.929294875358153, 16.442252509245861 ], [ 103.871882359183473, 16.468142401850344 ], [ 103.824701776166023, 16.466152859566819 ], [ 103.705225864781767, 16.381661892382397 ], [ 103.75101118381906, 16.303527127474922 ], [ 103.726568231138913, 16.221439113724102 ], [ 103.661197544031381, 16.222937730491878 ], [ 103.67484012187407, 16.202448024856437 ], [ 103.646728142989389, 16.194954941917047 ], [ 103.606523878973803, 16.222937730491878 ], [ 103.606213819711968, 16.205651963966943 ], [ 103.588178746152153, 16.200820216879492 ], [ 103.558154737551035, 16.222937730491878 ], [ 103.476195916808081, 16.20926931422747 ], [ 103.458522576655525, 16.189399726216379 ], [ 103.421573927694567, 16.244021715329893 ], [ 103.416923048659726, 16.280453600353383 ], [ 103.370827671259974, 16.309134019119654 ], [ 103.341527133970033, 16.363032537821368 ], [ 103.310624628024129, 16.370215562398243 ], [ 103.301632928316963, 16.400446274775732 ], [ 103.276363153336831, 16.378225409275217 ], [ 103.217813754700956, 16.363084215564072 ], [ 103.182260369720268, 16.37305776630285 ], [ 103.197659946749127, 16.435431219874886 ], [ 103.175645786823566, 16.486280829096984 ], [ 103.194249302063611, 16.545915432451238 ], [ 103.181536900207732, 16.601467597551562 ], [ 103.199985385816888, 16.625833034966547 ], [ 103.162623325705852, 16.643428859853998 ], [ 103.168824496553214, 16.75448151321126 ], [ 103.19440433079518, 16.822125963442431 ], [ 103.165413852767074, 16.863312079388947 ], [ 103.131100702135655, 16.825743312803638 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-45", "NAME_1": "Roi Et" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.868006625605233, 16.468685004209533 ], [ 103.929294875358153, 16.442252509245861 ], [ 104.039624058303616, 16.440986436474873 ], [ 104.05931277916136, 16.395640367009321 ], [ 104.164732700653587, 16.444939683519578 ], [ 104.244314406384717, 16.432873236810394 ], [ 104.308083123936967, 16.465584417886589 ], [ 104.328546991150688, 16.337323513269496 ], [ 104.355883823679449, 16.323396715486012 ], [ 104.327823520738832, 16.260739041073862 ], [ 104.27656050036677, 16.241076157738462 ], [ 104.227674595006533, 16.163096422461933 ], [ 104.109025506821638, 16.095968736168231 ], [ 104.109438917971659, 15.985045274020138 ], [ 104.021485630157656, 15.978017279973471 ], [ 104.010685256219574, 15.911948960875804 ], [ 104.03791873596083, 15.867274684978725 ], [ 104.013579136068245, 15.846552436245929 ], [ 104.010013461751839, 15.798364162875828 ], [ 104.0736271496732, 15.820455837167117 ], [ 104.072076857860679, 15.846784980242603 ], [ 104.111712681095298, 15.823272203549323 ], [ 104.131763137158998, 15.787744656090979 ], [ 104.127318963699167, 15.702168484188178 ], [ 104.155689325002299, 15.701729233717174 ], [ 104.211241490102623, 15.606515407859774 ], [ 104.084324171723097, 15.536287136142391 ], [ 103.986035597964417, 15.41024831780561 ], [ 103.97647545837566, 15.429058539519986 ], [ 103.935909458254855, 15.426578070821279 ], [ 103.942317335576547, 15.441486721435012 ], [ 103.909657831343793, 15.443295396565304 ], [ 103.887436964943959, 15.47091644903486 ], [ 103.786099480806342, 15.438541164742958 ], [ 103.591175978788328, 15.46518036528164 ], [ 103.525546910161722, 15.435233872844947 ], [ 103.459762811004907, 15.44706777645672 ], [ 103.417491490339955, 15.427869981114725 ], [ 103.436611770416846, 15.523884793548348 ], [ 103.381214634048092, 15.525977687720115 ], [ 103.328297968176628, 15.557629503398857 ], [ 103.297137078913011, 15.602975571965032 ], [ 103.35454959508769, 15.701470852198042 ], [ 103.422814162043892, 15.706173407177005 ], [ 103.439092238216176, 15.721572984205864 ], [ 103.468599481081128, 15.865646877901099 ], [ 103.49562625524743, 15.924687201153404 ], [ 103.467669305094319, 16.078192044127547 ], [ 103.476195916808081, 16.13043691732986 ], [ 103.525598586105843, 16.209734402220874 ], [ 103.548542922018214, 16.219811305747157 ], [ 103.588178746152153, 16.200820216879492 ], [ 103.606213819711968, 16.205651963966943 ], [ 103.606523878973803, 16.222937730491878 ], [ 103.646728142989389, 16.194954941917047 ], [ 103.67484012187407, 16.202448024856437 ], [ 103.661197544031381, 16.222937730491878 ], [ 103.726568231138913, 16.221439113724102 ], [ 103.75101118381906, 16.303527127474922 ], [ 103.705225864781767, 16.381661892382397 ], [ 103.805633172932517, 16.457238674225437 ], [ 103.868006625605233, 16.468685004209533 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-44", "NAME_1": "Maha Sarakham" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.162623325705852, 16.643428859853998 ], [ 103.199985385816888, 16.625833034966547 ], [ 103.181536900207732, 16.601467597551562 ], [ 103.194249302063611, 16.545915432451238 ], [ 103.175645786823566, 16.486280829096984 ], [ 103.197659946749127, 16.435431219874886 ], [ 103.182260369720268, 16.37305776630285 ], [ 103.217813754700956, 16.363084215564072 ], [ 103.279463738760512, 16.379698188520592 ], [ 103.298222283631446, 16.402254949906023 ], [ 103.310624628024129, 16.370215562398243 ], [ 103.341527133970033, 16.363032537821368 ], [ 103.370827671259974, 16.309134019119654 ], [ 103.416923048659726, 16.280453600353383 ], [ 103.452993199376635, 16.19172516528414 ], [ 103.476195916808081, 16.20926931422747 ], [ 103.525598586105843, 16.209734402220874 ], [ 103.468909540342963, 16.105192978972809 ], [ 103.49562625524743, 15.924687201153404 ], [ 103.435578240743155, 15.711987006195386 ], [ 103.35454959508769, 15.701470852198042 ], [ 103.297137078913011, 15.602975571965032 ], [ 103.328297968176628, 15.557629503398857 ], [ 103.381214634048092, 15.525977687720115 ], [ 103.424829542749137, 15.532178860366116 ], [ 103.441159295764862, 15.510733141221465 ], [ 103.417491490339955, 15.427869981114725 ], [ 103.343232456312762, 15.401721706991168 ], [ 103.11575280195018, 15.482285265552548 ], [ 103.083300002393173, 15.506288966862314 ], [ 103.088415969421419, 15.548973700475869 ], [ 102.978551873570041, 15.666795966360723 ], [ 103.010539585133699, 15.699222927496066 ], [ 103.008679234059343, 15.725758775247243 ], [ 102.946460809218934, 15.789217434437035 ], [ 102.937417433567646, 15.864794216280018 ], [ 102.907186721190214, 15.929570624184919 ], [ 102.911475865019099, 15.996491604004291 ], [ 102.858920932554952, 16.081370143917013 ], [ 102.868067661893065, 16.117026882584526 ], [ 102.851324496827999, 16.268929755104125 ], [ 102.898970167838911, 16.314017442151226 ], [ 102.95328209769059, 16.403081773105328 ], [ 102.940621371778832, 16.445508124300488 ], [ 103.017980992129026, 16.467599799491154 ], [ 103.09130984927009, 16.513100897688275 ], [ 103.162933384068367, 16.616298732900191 ], [ 103.162623325705852, 16.643428859853998 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-39", "NAME_1": "Nong Bua Lam Phu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.675831333249391, 16.943694769897718 ], [ 102.611752557334626, 16.770036118971689 ], [ 102.563486769598683, 16.761251125738852 ], [ 102.521422153609478, 16.790241603766958 ], [ 102.421376580664628, 16.78954397177688 ], [ 102.336627231961131, 16.819878037841136 ], [ 102.275494011839157, 16.889150295149989 ], [ 102.245986769873468, 16.888917752052578 ], [ 102.195137159752107, 16.857033393276481 ], [ 102.071268751751461, 16.885403754579613 ], [ 102.034940220414796, 16.953022366389064 ], [ 102.15100548711348, 17.022372138063702 ], [ 102.110852899042015, 17.057899685522045 ], [ 102.091164178184215, 17.102780666994192 ], [ 101.977992792233522, 17.146653958113689 ], [ 101.9463668149765, 17.198252875269986 ], [ 101.978922968220388, 17.243340562317087 ], [ 101.981610141594729, 17.274527289103105 ], [ 102.023623080740549, 17.322948106469937 ], [ 102.021452671303678, 17.366666367958487 ], [ 101.989671665315086, 17.404416001697086 ], [ 101.984710727917729, 17.441364651557421 ], [ 102.075609572423787, 17.452035834286335 ], [ 102.125270624139944, 17.483067532340726 ], [ 102.141393670681339, 17.508750719370198 ], [ 102.121239861830134, 17.583242296494745 ], [ 102.146664667340474, 17.613576362559058 ], [ 102.185628697006734, 17.609106349778187 ], [ 102.235599807085407, 17.639931342257626 ], [ 102.341588169358488, 17.609416409040023 ], [ 102.375281203264876, 17.617219550341986 ], [ 102.392179397061511, 17.49565074298738 ], [ 102.438894891186237, 17.385812486457041 ], [ 102.434554071413231, 17.325299383959361 ], [ 102.485868767729414, 17.29889272741741 ], [ 102.475533481784737, 17.238793036069751 ], [ 102.512843865951595, 17.203963121500863 ], [ 102.602760857627459, 17.220680447244831 ], [ 102.579144729045993, 17.182982489450296 ], [ 102.519561801635803, 17.15856537519187 ], [ 102.513050572425925, 17.133063056215065 ], [ 102.556045362603356, 17.055780951129975 ], [ 102.675831333249391, 16.943694769897718 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-16", "NAME_1": "Lop Buri" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.300411411957043, 15.302012029931234 ], [ 101.278655633550613, 15.239793605990087 ], [ 101.280671014255859, 15.087684027895534 ], [ 101.380613234413204, 15.061070664879253 ], [ 101.453838738766763, 14.905938014827484 ], [ 101.449342889362811, 14.863847561315879 ], [ 101.348625522849545, 14.806590073872769 ], [ 101.329401889985206, 14.76540395792631 ], [ 101.278345575188098, 14.730005600777815 ], [ 101.230234816183781, 14.741193549242894 ], [ 101.193131137591877, 14.755921331804018 ], [ 101.18320926279722, 14.787108059489356 ], [ 101.149567905734216, 14.80511729642609 ], [ 101.132463007261947, 14.838784491011438 ], [ 101.084403925101014, 14.853228054531087 ], [ 100.990662875791031, 14.813230496090512 ], [ 100.985391880031216, 14.783232326810435 ], [ 100.954489374085313, 14.749720160057336 ], [ 100.916455520405918, 14.749745999378376 ], [ 100.874907668354183, 14.783309841176219 ], [ 100.871341994037778, 14.834598699970002 ], [ 100.834858433070167, 14.883432929386174 ], [ 100.784112176635574, 14.869041042709966 ], [ 100.719878371089919, 14.762148341972363 ], [ 100.618695916583249, 14.701376857955609 ], [ 100.594046259227412, 14.655927435702608 ], [ 100.487437779330037, 14.707836412120685 ], [ 100.476585727649194, 14.835735582431141 ], [ 100.434676141290822, 14.917926947170884 ], [ 100.460152621845964, 14.975649521708021 ], [ 100.436846551627013, 15.052544054064811 ], [ 100.479066197247164, 15.109336453514516 ], [ 100.490383335122772, 15.166981512786549 ], [ 100.527952101708081, 15.195248521302176 ], [ 100.558647902078974, 15.261936957124874 ], [ 100.744062941351615, 15.436577459981777 ], [ 100.739618767891784, 15.497581488894582 ], [ 100.875992873072619, 15.465877997271718 ], [ 100.977330357210178, 15.481949367868992 ], [ 101.046060012159785, 15.428825995523255 ], [ 101.083473749114205, 15.427120673180525 ], [ 101.128122185690302, 15.395649726453712 ], [ 101.231630080164052, 15.398569443824783 ], [ 101.26299767500268, 15.331932684845526 ], [ 101.300411411957043, 15.302012029931234 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-41", "NAME_1": "Udon Thani" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.844658237987232, 16.873724879699409 ], [ 102.833186069581416, 16.87589529093492 ], [ 102.822178990068267, 16.958009142208141 ], [ 102.83189415928797, 16.97588918703633 ], [ 102.73014326400039, 17.042732652489917 ], [ 102.720376417937302, 17.07342845286081 ], [ 102.693194615039431, 17.037978419768251 ], [ 102.675831333249391, 16.943694769897718 ], [ 102.545193312721153, 17.070172837806183 ], [ 102.51103519082136, 17.147325750782784 ], [ 102.579144729045993, 17.182982489450296 ], [ 102.602760857627459, 17.220680447244831 ], [ 102.512843865951595, 17.203963121500863 ], [ 102.475533481784737, 17.238793036069751 ], [ 102.485868767729414, 17.29889272741741 ], [ 102.434554071413231, 17.325299383959361 ], [ 102.438894891186237, 17.385812486457041 ], [ 102.392179397061511, 17.49565074298738 ], [ 102.375281203264876, 17.617219550341986 ], [ 102.341588169358488, 17.609416409040023 ], [ 102.224902785035454, 17.63923371026749 ], [ 102.185628697006734, 17.609106349778187 ], [ 102.146664667340474, 17.613576362559058 ], [ 102.121239861830134, 17.583242296494745 ], [ 102.067548048703429, 17.690780951479724 ], [ 102.053750441229852, 17.65889659270357 ], [ 102.041503127367378, 17.659981798321326 ], [ 102.024708287257624, 17.738581651222205 ], [ 102.051890090155496, 17.837154445821 ], [ 102.023623080740549, 17.978153590715635 ], [ 102.058401320264693, 18.088405260194577 ], [ 102.088683710384885, 18.0591563988487 ], [ 102.114211866884091, 18.058923854852026 ], [ 102.154157749380602, 17.993062242228689 ], [ 102.204748977083568, 18.018616238048935 ], [ 102.327170445159879, 17.949524847893372 ], [ 102.39403974813581, 17.889192613448358 ], [ 102.463234491078879, 17.75889048880498 ], [ 102.539612257699503, 17.750518906722164 ], [ 102.60973717662938, 17.689308173133668 ], [ 102.60720503108729, 17.620862739024176 ], [ 102.665289340830384, 17.595980535873025 ], [ 102.751692335932489, 17.606755072288763 ], [ 102.775773553406736, 17.624299221232036 ], [ 102.788020868168473, 17.661609605398951 ], [ 102.847758824310233, 17.700082709549406 ], [ 102.865432163563469, 17.769329128436539 ], [ 102.849309117022074, 17.806846218178407 ], [ 102.885172561264653, 17.859065252959056 ], [ 102.885017530734387, 17.885316880769437 ], [ 102.949716425172824, 17.877022813052349 ], [ 102.983099399817434, 17.822555854469101 ], [ 103.058650344138016, 17.886376247965472 ], [ 103.168979527083479, 17.801756090471201 ], [ 103.202310825783968, 17.853794257199183 ], [ 103.261428664301377, 17.87857310576419 ], [ 103.308144159325423, 17.832219346845363 ], [ 103.399559767769006, 17.866429144689278 ], [ 103.395063918365111, 17.847903143815017 ], [ 103.409740024982113, 17.836250108255854 ], [ 103.380594517323061, 17.835397447534149 ], [ 103.367727084936973, 17.786020615758787 ], [ 103.400800002118388, 17.738581651222205 ], [ 103.39733768058943, 17.598719386990126 ], [ 103.337186314197027, 17.579056505453366 ], [ 103.290315790441355, 17.50045665075379 ], [ 103.270317011221039, 17.43438833345482 ], [ 103.292176140616334, 17.384158840058433 ], [ 103.247165968834338, 17.307393499810132 ], [ 103.272900831807874, 17.264760443939338 ], [ 103.402505323561797, 17.217140611350146 ], [ 103.464103631677233, 17.229801337261904 ], [ 103.561410354404302, 17.161872667089881 ], [ 103.590710890794924, 17.161071682312297 ], [ 103.651223993292604, 17.106759752460619 ], [ 103.657166782620891, 17.047486884312264 ], [ 103.614482049906655, 17.090274969814004 ], [ 103.583269483799597, 17.100274359873822 ], [ 103.530972934653164, 17.073738512122645 ], [ 103.506788365290788, 17.044489650776768 ], [ 103.509268833090118, 16.99557790789413 ], [ 103.484877557253412, 16.958835964508125 ], [ 103.481880323717917, 16.903206285042017 ], [ 103.43568159442998, 16.827603664777314 ], [ 103.424054397292537, 16.879073390724386 ], [ 103.399714797399952, 16.902999579467007 ], [ 103.237244094039681, 16.962117417984416 ], [ 103.142262811279693, 16.957854112577195 ], [ 103.113117302721321, 16.912818101474215 ], [ 102.955452508926101, 16.841065375466712 ], [ 102.889048293044254, 16.877936510061886 ], [ 102.844658237987232, 16.873724879699409 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-14", "NAME_1": "Phra Nakhon Si Ayutthaya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.220994094401874, 14.177145291022327 ], [ 100.254997185771458, 14.226987209891831 ], [ 100.281507196000234, 14.383360094292925 ], [ 100.254067010683968, 14.486480414239736 ], [ 100.414367302808728, 14.509088853367871 ], [ 100.428164911181682, 14.445190945505715 ], [ 100.471934848614353, 14.439532376118223 ], [ 100.499323357986555, 14.455474555506328 ], [ 100.492553746358283, 14.567354031163575 ], [ 100.515653111002223, 14.685899766560965 ], [ 100.594046259227412, 14.655927435702608 ], [ 100.574357538369668, 14.589342353566735 ], [ 100.606603632351721, 14.549422309492002 ], [ 100.706649205296571, 14.569731147074776 ], [ 100.770314569161997, 14.561488756201129 ], [ 100.755276727339037, 14.516065172369792 ], [ 100.76287316306599, 14.413074041833568 ], [ 100.792018670725042, 14.380259507969924 ], [ 100.781166619943519, 14.323182888579424 ], [ 100.82183597195251, 14.306853136463076 ], [ 100.822766147939319, 14.24179250681874 ], [ 100.656419711900128, 14.165182197100705 ], [ 100.618850946214138, 14.128982856073947 ], [ 100.554152052675022, 14.113040675786522 ], [ 100.527642043345566, 14.123298448264734 ], [ 100.496739537399662, 14.110921943193091 ], [ 100.350288526893962, 14.113712470254256 ], [ 100.309154086891567, 14.136217555695623 ], [ 100.283212518343021, 14.116218777374684 ], [ 100.276856316965393, 14.16717173938423 ], [ 100.220994094401874, 14.177145291022327 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-12", "NAME_1": "Nonthaburi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.309154086891567, 14.136217555695623 ], [ 100.350288526893962, 14.113712470254256 ], [ 100.336594273107153, 14.060899156271034 ], [ 100.362535841655699, 14.000205185720745 ], [ 100.493638951076662, 13.949278062132862 ], [ 100.551516555244802, 13.94785696152951 ], [ 100.521750929961399, 13.848198961313017 ], [ 100.488367955316846, 13.798098660025119 ], [ 100.335664097120343, 13.79871877675015 ], [ 100.289723749351538, 13.894862779493678 ], [ 100.294271274699554, 13.98046478891888 ], [ 100.263678827116109, 14.029299018334996 ], [ 100.283212518343021, 14.116218777374684 ], [ 100.309154086891567, 14.136217555695623 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-73", "NAME_1": "Nakhon Pathom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.220994094401874, 14.177145291022327 ], [ 100.283212518343021, 14.156423041390212 ], [ 100.263678827116109, 14.029299018334996 ], [ 100.294271274699554, 13.98046478891888 ], [ 100.289723749351538, 13.894862779493678 ], [ 100.335664097120343, 13.79871877675015 ], [ 100.331788365340742, 13.730092475487368 ], [ 100.272670525924013, 13.704176744461165 ], [ 100.264712355890481, 13.663352362821286 ], [ 100.217273391353899, 13.657047838287099 ], [ 100.190298293131661, 13.675341295164628 ], [ 100.045190870662111, 13.694668279917153 ], [ 100.025347121072741, 13.740789495738625 ], [ 99.971500279214467, 13.714873766511118 ], [ 99.948142531252756, 13.745414537251065 ], [ 99.961371697945481, 13.844219875846591 ], [ 99.945093621773196, 13.921786199973155 ], [ 99.880084669871565, 13.944523831209835 ], [ 99.812750278902229, 14.02265859611731 ], [ 99.811510043653527, 14.06177765541446 ], [ 99.878844436421559, 14.065575872828276 ], [ 99.986228061775591, 14.14559682903041 ], [ 100.158465611198949, 14.140894273152185 ], [ 100.220994094401874, 14.177145291022327 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-62", "NAME_1": "Kamphaeng Phet" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.904424269764206, 16.688128974172798 ], [ 99.892952102257652, 16.63187917708234 ], [ 99.917343378094358, 16.586274726097713 ], [ 99.99987063961828, 16.555604763249221 ], [ 100.032168410443774, 16.496176866369296 ], [ 99.97832156768618, 16.367554226546304 ], [ 99.994599643858464, 16.337866116528062 ], [ 99.94338830032973, 16.277353014030382 ], [ 99.944008417054761, 16.235753486034525 ], [ 99.891866896639954, 16.07625417688871 ], [ 99.803603549564116, 15.988378404339869 ], [ 99.725210402238247, 15.822393704405897 ], [ 99.664697299740567, 15.784644069767978 ], [ 99.613796013675028, 15.881072293351622 ], [ 99.509202915382218, 15.919209499818521 ], [ 99.460988803590396, 15.895283311075957 ], [ 99.352209914256093, 15.914842840724532 ], [ 99.277692498709825, 15.887686876248324 ], [ 99.204311964725377, 15.934738267157286 ], [ 99.158629999374909, 15.926315009130349 ], [ 99.078789911225385, 15.86892833137739 ], [ 99.068919712374793, 15.996749986422742 ], [ 99.028818801146713, 16.024267686104793 ], [ 99.010215285007348, 16.122013658403603 ], [ 99.024943067568472, 16.187384345511134 ], [ 98.996986119214, 16.268774726372499 ], [ 99.01393598805538, 16.388612372063278 ], [ 98.987839389875887, 16.460881862907627 ], [ 99.002877231698847, 16.479769598987787 ], [ 99.113981561000173, 16.475635483890471 ], [ 99.179507276839331, 16.526820989896748 ], [ 99.242965936029066, 16.545062770830214 ], [ 99.25578169067245, 16.575629380891201 ], [ 99.249477167037583, 16.653247381861149 ], [ 99.296812778786659, 16.723579006366037 ], [ 99.298828160391224, 16.784841416797917 ], [ 99.326578404070062, 16.81362519015039 ], [ 99.346008741610092, 16.887884223278263 ], [ 99.387091505668423, 16.866102607349433 ], [ 99.518246291033449, 16.881088772328951 ], [ 99.542379185351081, 16.860650743536951 ], [ 99.555763380775375, 16.81478790923461 ], [ 99.693119337887083, 16.731976426870574 ], [ 99.850577427006613, 16.73616221791201 ], [ 99.904424269764206, 16.688128974172798 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-52", "NAME_1": "Lampang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.687383254133806, 19.429796250796301 ], [ 99.710482618777803, 19.323084418111364 ], [ 99.709397414059367, 19.229084988181626 ], [ 99.781382684063601, 19.066175035249671 ], [ 99.822672153696885, 19.050852973485917 ], [ 99.84530643124674, 18.999538276270414 ], [ 99.937497186046244, 18.983053494523119 ], [ 99.964472284268481, 18.939567776131923 ], [ 100.06038374211596, 18.878770452794129 ], [ 100.076196731194159, 18.823063258962236 ], [ 100.120948520557761, 18.811746121086628 ], [ 100.130560336989902, 18.777148748715774 ], [ 100.108184441858441, 18.730123196228533 ], [ 100.123532342943236, 18.595041002240464 ], [ 100.114850701598584, 18.565921332103756 ], [ 100.065654737875832, 18.553777371028843 ], [ 100.052477248026548, 18.490112006264042 ], [ 100.003591342666311, 18.404871731145477 ], [ 99.967004428911252, 18.382082423964675 ], [ 99.909746942367462, 18.288728949181632 ], [ 99.867527296747312, 18.274957180129718 ], [ 99.813525425258149, 18.21968923586951 ], [ 99.723815139157296, 18.070886948773648 ], [ 99.647282342905783, 18.023422145815346 ], [ 99.596587762415254, 18.029985052767927 ], [ 99.586510857989651, 17.99980601723388 ], [ 99.5154040871289, 17.94161835380396 ], [ 99.374689162175059, 17.779018460133784 ], [ 99.312315707703704, 17.766667792584542 ], [ 99.315416294026704, 17.732251288266298 ], [ 99.359186233258015, 17.678094387146245 ], [ 99.445589226561538, 17.702795722244787 ], [ 99.473391147983079, 17.728943997267663 ], [ 99.479282261367246, 17.713131008189464 ], [ 99.454735955899594, 17.603809516495971 ], [ 99.421869745192566, 17.593319200021028 ], [ 99.438612909358255, 17.526759955407613 ], [ 99.419854363587945, 17.509267483307667 ], [ 99.414428339096503, 17.462836209123736 ], [ 99.44000817333847, 17.430357571144953 ], [ 99.432205031137244, 17.392220363778733 ], [ 99.474166294339, 17.363204047328907 ], [ 99.479850702148156, 17.328296617494914 ], [ 99.458043246898285, 17.301269843328612 ], [ 99.442643670768746, 17.228974514062543 ], [ 99.390967238347343, 17.204324855807442 ], [ 99.348282504733788, 17.253727525105205 ], [ 99.317379998787885, 17.260652167263686 ], [ 99.27779585239665, 17.323904119979147 ], [ 99.262964716148701, 17.397853094744505 ], [ 99.218419630561471, 17.395760198774155 ], [ 99.169688754832123, 17.334807848503374 ], [ 99.064475538914962, 17.371627306255164 ], [ 99.01393598805538, 17.413407701404253 ], [ 99.033004592188149, 17.510714423232059 ], [ 99.012075636981024, 17.610630804967684 ], [ 99.053726840920945, 17.620397651030771 ], [ 99.082355584642471, 17.726851101297257 ], [ 99.121939731933026, 17.772326361972034 ], [ 99.108400506877842, 17.806923733443512 ], [ 99.164727818334086, 17.812117213938279 ], [ 99.159766880037466, 17.841676134545935 ], [ 99.179920688888615, 17.852554022849858 ], [ 99.111191033939008, 17.91562510841203 ], [ 99.092587517799643, 17.954072374140765 ], [ 99.057344191181414, 18.135379136737754 ], [ 99.015331252035594, 18.242297674997701 ], [ 99.052693313045893, 18.267515774033711 ], [ 99.101889275869326, 18.270254625150812 ], [ 99.146434360557237, 18.319657294448575 ], [ 99.236454705919925, 18.475978502006228 ], [ 99.311075474253698, 18.500576484317264 ], [ 99.352985060612014, 18.59938182201347 ], [ 99.322702671391141, 18.629173284819217 ], [ 99.365232375373807, 18.764927273275021 ], [ 99.347352329646242, 18.851304429955462 ], [ 99.324252964102982, 18.862208157580369 ], [ 99.371743606382267, 18.903756007833465 ], [ 99.376549514148735, 18.984138699241555 ], [ 99.436907587015469, 19.005946152692786 ], [ 99.49711063025137, 19.06785451917068 ], [ 99.533749220849813, 19.072867133411478 ], [ 99.561499465427971, 19.124569404254601 ], [ 99.563049758139812, 19.150769355221541 ], [ 99.543206007651065, 19.16076874438204 ], [ 99.581239862229836, 19.298822333483884 ], [ 99.570077753085798, 19.402717799786615 ], [ 99.589766473044278, 19.471809189942121 ], [ 99.631055942677563, 19.507931017502415 ], [ 99.687383254133806, 19.429796250796301 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-64", "NAME_1": "Sukhothai" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.968554721623036, 17.160813299893846 ], [ 99.916413202107549, 17.162725327811586 ], [ 99.927420281620641, 17.122314358221047 ], [ 100.010877720030692, 17.042112534865566 ], [ 100.127459750666901, 16.969352118505469 ], [ 100.130663689777407, 16.908864854429453 ], [ 100.118726434277505, 16.8959199085769 ], [ 100.033098586430583, 16.891010647123665 ], [ 100.021626418024709, 16.856930040488976 ], [ 99.955687290136268, 16.865069078575118 ], [ 99.919048700437145, 16.781559963321627 ], [ 99.888456251954437, 16.752052721355994 ], [ 99.892642042995874, 16.734172674729166 ], [ 99.939047478758084, 16.716137600270031 ], [ 99.904424269764206, 16.688128974172798 ], [ 99.850577427006613, 16.73616221791201 ], [ 99.693119337887083, 16.731976426870574 ], [ 99.555763380775375, 16.81478790923461 ], [ 99.542379185351081, 16.860650743536951 ], [ 99.518246291033449, 16.881088772328951 ], [ 99.387091505668423, 16.866102607349433 ], [ 99.27893273305915, 16.929612942483288 ], [ 99.279759556258455, 17.059269111080596 ], [ 99.323322788116116, 17.121306667868396 ], [ 99.317379998787885, 17.260652167263686 ], [ 99.348282504733788, 17.253727525105205 ], [ 99.395618117382185, 17.205487575790983 ], [ 99.442643670768746, 17.228974514062543 ], [ 99.458043246898285, 17.301269843328612 ], [ 99.479850702148156, 17.328296617494914 ], [ 99.474166294339, 17.363204047328907 ], [ 99.432205031137244, 17.392220363778733 ], [ 99.44000817333847, 17.430357571144953 ], [ 99.415358514184049, 17.45787527082706 ], [ 99.419854363587945, 17.509267483307667 ], [ 99.438612909358255, 17.526759955407613 ], [ 99.420784539574811, 17.588125719526317 ], [ 99.453082310400248, 17.600631414907866 ], [ 99.452772251138413, 17.63848440233329 ], [ 99.476129999100124, 17.673546860898909 ], [ 99.473391147983079, 17.728943997267663 ], [ 99.529046664971588, 17.794624741838334 ], [ 99.620307244683545, 17.812659817196788 ], [ 99.665007359002402, 17.795219021040964 ], [ 99.736579217856558, 17.722226059784816 ], [ 99.7782820977406, 17.778992620812801 ], [ 99.814765659607474, 17.79764781289623 ], [ 99.896569451618859, 17.803693955911342 ], [ 99.92240766827922, 17.781240546414097 ], [ 99.9227694025858, 17.752611802692513 ], [ 99.969174839247387, 17.704811102950032 ], [ 99.977701450961149, 17.669257717069968 ], [ 99.967469516904657, 17.612413642575518 ], [ 99.930365839212072, 17.569832261749468 ], [ 100.019766066051091, 17.473739935849324 ], [ 100.035268995867398, 17.4382382268127 ], [ 100.000335727611684, 17.410229599816148 ], [ 100.016148715790564, 17.326358751155453 ], [ 99.971190219952632, 17.255045273820315 ], [ 99.98405765233872, 17.209828396463308 ], [ 99.982817417090075, 17.165645046081977 ], [ 99.968554721623036, 17.160813299893846 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-60", "NAME_1": "Nakhon Sawan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.442892693742806, 15.060373032889117 ], [ 100.365016311253726, 15.094815374729762 ], [ 100.347601352620302, 15.154527493349121 ], [ 100.309309117421776, 15.167549954466836 ], [ 100.231226026659783, 15.334826564694197 ], [ 100.11764122865975, 15.421617133423979 ], [ 100.057593215054794, 15.419679267084518 ], [ 100.046431105910756, 15.446060086104069 ], [ 99.972740512664473, 15.506288966862314 ], [ 99.907111444037866, 15.521326809584593 ], [ 99.870782911801882, 15.565380967857379 ], [ 99.854969923623059, 15.634627386744512 ], [ 99.808564487860792, 15.625480658305719 ], [ 99.733788689896073, 15.676485297158706 ], [ 99.695754836216679, 15.678474840341607 ], [ 99.586045769996247, 15.620157985702463 ], [ 99.521295201412386, 15.563520615883704 ], [ 99.472305943264644, 15.563081366311962 ], [ 99.377479690135544, 15.624111232747168 ], [ 99.365697463367212, 15.653360094093046 ], [ 99.241880731310687, 15.716172797236766 ], [ 99.201211379301697, 15.754930121328016 ], [ 99.161937290373601, 15.773146063839761 ], [ 99.121422967995557, 15.769812934419349 ], [ 99.119562616021881, 15.801464749198828 ], [ 99.088091669295068, 15.826605332969734 ], [ 99.078789911225385, 15.86892833137739 ], [ 99.158629999374909, 15.926315009130349 ], [ 99.204311964725377, 15.934738267157286 ], [ 99.277692498709825, 15.887686876248324 ], [ 99.352209914256093, 15.914842840724532 ], [ 99.456906366235785, 15.895231635131836 ], [ 99.480522495716571, 15.915540472714611 ], [ 99.538865187878059, 15.916703192698151 ], [ 99.613796013675028, 15.881072293351622 ], [ 99.647282342905783, 15.799862778744227 ], [ 99.675601027365474, 15.788080552875215 ], [ 99.729861281273088, 15.828336492834865 ], [ 99.763244256816961, 15.921302394889608 ], [ 99.82143191934756, 16.014836737725261 ], [ 99.889696486303762, 16.07240428353083 ], [ 99.944008417054761, 16.235753486034525 ], [ 99.94338830032973, 16.277353014030382 ], [ 99.994599643858464, 16.337866116528062 ], [ 100.024106886723416, 16.303268744157208 ], [ 100.044725782668706, 16.175834661840156 ], [ 100.091286248961183, 16.141314806533103 ], [ 100.168490838781167, 15.956881619191336 ], [ 100.215723097742739, 15.926780097123753 ], [ 100.280421991281855, 15.909365139389649 ], [ 100.297785272172518, 15.91324087206857 ], [ 100.313184849201377, 15.944789334060488 ], [ 100.419793329098809, 15.923136908441563 ], [ 100.506196324200971, 15.925643215561934 ], [ 100.60272789877348, 15.952024034581541 ], [ 100.755121697708148, 15.930629991380954 ], [ 100.762253046340959, 15.891717638558134 ], [ 100.798529900834239, 15.862856349940557 ], [ 100.795739373773017, 15.803660997057364 ], [ 100.832532994002406, 15.625480658305719 ], [ 100.789073114032931, 15.543470159820004 ], [ 100.747370233249626, 15.516236680978011 ], [ 100.744062941351615, 15.436577459981777 ], [ 100.558647902078974, 15.261936957124874 ], [ 100.527952101708081, 15.195248521302176 ], [ 100.490383335122772, 15.166981512786549 ], [ 100.479066197247164, 15.109336453514516 ], [ 100.442892693742806, 15.060373032889117 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-67", "NAME_1": "Phetchabun" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.790562372255636, 16.766496283077004 ], [ 101.774129265553142, 16.700247096826047 ], [ 101.728498977046115, 16.655262763465771 ], [ 101.692222120754252, 16.683710639134688 ], [ 101.629021843982855, 16.683788154399792 ], [ 101.598946161236313, 16.704226183191793 ], [ 101.557036573978678, 16.672109280418965 ], [ 101.510476108585522, 16.675287380208431 ], [ 101.517607456319013, 16.635574041708651 ], [ 101.496678501111887, 16.581107083125346 ], [ 101.512181430928251, 16.548395901149888 ], [ 101.464690790447605, 16.514728704765901 ], [ 101.464018995979814, 16.474550279172036 ], [ 101.378752883338848, 16.357606513329927 ], [ 101.348005406124571, 16.259033717831812 ], [ 101.365833775008696, 16.234409897998376 ], [ 101.343974643814704, 16.201078600197206 ], [ 101.323975864594445, 16.067210802136799 ], [ 101.341029087122649, 15.981479599703732 ], [ 101.384799024555321, 15.958509426269018 ], [ 101.361699659911324, 15.88799693371152 ], [ 101.326456333293095, 15.841281440486057 ], [ 101.333277621764807, 15.741933499531342 ], [ 101.395806105867052, 15.698783677924382 ], [ 101.365420362959355, 15.557396959402126 ], [ 101.372861769954682, 15.414485784791111 ], [ 101.333277621764807, 15.335679226315222 ], [ 101.300411411957043, 15.302012029931234 ], [ 101.26299767500268, 15.331932684845526 ], [ 101.231630080164052, 15.398569443824783 ], [ 101.128122185690302, 15.395649726453712 ], [ 101.083473749114205, 15.427120673180525 ], [ 101.046060012159785, 15.428825995523255 ], [ 100.977330357210178, 15.481949367868992 ], [ 100.875992873072619, 15.465877997271718 ], [ 100.739618767891784, 15.497581488894582 ], [ 100.789073114032931, 15.543470159820004 ], [ 100.832532994002406, 15.625480658305719 ], [ 100.819820591247264, 15.662506822531839 ], [ 100.830207554035326, 15.684986070450748 ], [ 100.795739373773017, 15.803660997057364 ], [ 100.796876255334894, 15.868204860965534 ], [ 100.757602167306118, 15.900864366097608 ], [ 100.770314569161997, 15.985975450007004 ], [ 100.706649205296571, 16.029900417969884 ], [ 100.632338495325257, 16.051113593117805 ], [ 100.633268671312067, 16.142555039983108 ], [ 100.696623976815033, 16.242781480081248 ], [ 100.668201938668517, 16.347012844067478 ], [ 100.702670118930826, 16.41199595844671 ], [ 100.794705844998703, 16.45592092551027 ], [ 100.843540074414875, 16.545837918085454 ], [ 100.837493931399763, 16.59526642490556 ], [ 100.856097446639808, 16.643687242272392 ], [ 100.92627404241307, 16.687663886179394 ], [ 100.893821241956687, 16.769881090240119 ], [ 100.898317092259958, 16.794039822080094 ], [ 100.929839715830155, 16.803238227362272 ], [ 101.034897902116427, 16.905014960172252 ], [ 101.098666619668734, 16.908787340063668 ], [ 101.119905634137638, 16.927287503415528 ], [ 101.126261834615946, 17.030562852093908 ], [ 101.16987674421631, 17.045419826763577 ], [ 101.193751255216227, 17.108465073904028 ], [ 101.209615920238491, 17.11598399526514 ], [ 101.320410191177359, 17.064901842046368 ], [ 101.459884881781818, 17.076451523918706 ], [ 101.520397984279498, 17.046143297175433 ], [ 101.541533645061634, 17.001236477281566 ], [ 101.561687453013519, 16.993355820714555 ], [ 101.602201776290883, 17.004517930757856 ], [ 101.642509393093974, 17.046453355537892 ], [ 101.713461135223156, 16.919536038057686 ], [ 101.721677687675083, 16.765876166351973 ], [ 101.790562372255636, 16.766496283077004 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-66", "NAME_1": "Phichit" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.237427199305785, 16.59356110346215 ], [ 100.287036574178501, 16.510181179417884 ], [ 100.419948357830435, 16.537879747152601 ], [ 100.548570997653371, 16.526640122743459 ], [ 100.58190229725318, 16.428299872141395 ], [ 100.668201938668517, 16.347012844067478 ], [ 100.697399123170953, 16.262263495363982 ], [ 100.693316684917022, 16.233273017335875 ], [ 100.634095493612108, 16.147903551008085 ], [ 100.630064732201561, 16.054162503496741 ], [ 100.706649205296571, 16.029900417969884 ], [ 100.767213982838996, 15.98998037389515 ], [ 100.755121697708148, 15.930629991380954 ], [ 100.60272789877348, 15.952024034581541 ], [ 100.506196324200971, 15.925643215561934 ], [ 100.419793329098809, 15.923136908441563 ], [ 100.313184849201377, 15.944789334060488 ], [ 100.297785272172518, 15.91324087206857 ], [ 100.268174677419381, 15.90939097691205 ], [ 100.168490838781167, 15.956881619191336 ], [ 100.091286248961183, 16.141314806533103 ], [ 100.044725782668706, 16.175834661840156 ], [ 100.024106886723416, 16.303268744157208 ], [ 99.97754642133026, 16.362205715521327 ], [ 100.032168410443774, 16.496176866369296 ], [ 100.114540643236069, 16.513488471315895 ], [ 100.171798129779802, 16.567412828439274 ], [ 100.237427199305785, 16.59356110346215 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-36", "NAME_1": "Chaiyaphum" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.331666293664455, 15.805831407393498 ], [ 102.240509067639323, 15.752759710991882 ], [ 102.214980910240797, 15.764231879397698 ], [ 102.203612094622429, 15.744724025693188 ], [ 102.160358921127283, 15.736920885290601 ], [ 102.146664667340474, 15.682298896177087 ], [ 102.084652948075075, 15.619615383343273 ], [ 102.040314568962174, 15.658682765796982 ], [ 102.004089390413014, 15.593157049957881 ], [ 101.955823601777752, 15.552668565102181 ], [ 101.963885126397429, 15.474094549723702 ], [ 101.910968458727325, 15.443372910931089 ], [ 101.879342483268942, 15.379940090163018 ], [ 101.802189569393079, 15.380973618937333 ], [ 101.638478631683483, 15.310641995331821 ], [ 101.565408156061494, 15.253591213463721 ], [ 101.42639855255112, 15.215402330153381 ], [ 101.402007276714414, 15.216435858927753 ], [ 101.369864537318506, 15.268525702499176 ], [ 101.300411411957043, 15.302012029931234 ], [ 101.342269322371294, 15.347358100296049 ], [ 101.372861769954682, 15.414485784791111 ], [ 101.365420362959355, 15.557396959402126 ], [ 101.395806105867052, 15.698783677924382 ], [ 101.329866977978611, 15.75345734298196 ], [ 101.327076450917446, 15.852211004734045 ], [ 101.361699659911324, 15.88799693371152 ], [ 101.384799024555321, 15.958509426269018 ], [ 101.34335452708973, 15.978921617538617 ], [ 101.329091830723371, 16.015146796087777 ], [ 101.343974643814704, 16.201078600197206 ], [ 101.365833775008696, 16.234409897998376 ], [ 101.348005406124571, 16.259033717831812 ], [ 101.402627395238085, 16.405923977009934 ], [ 101.464018995979814, 16.474550279172036 ], [ 101.464690790447605, 16.514728704765901 ], [ 101.512181430928251, 16.548395901149888 ], [ 101.496678501111887, 16.581107083125346 ], [ 101.517607456319013, 16.635574041708651 ], [ 101.512956578183491, 16.677664496119576 ], [ 101.557036573978678, 16.672109280418965 ], [ 101.598946161236313, 16.704226183191793 ], [ 101.629021843982855, 16.683788154399792 ], [ 101.692222120754252, 16.683710639134688 ], [ 101.725088332360599, 16.65539195377562 ], [ 101.751443312958486, 16.670352281232795 ], [ 101.788546990651071, 16.642472846344788 ], [ 101.834952427312601, 16.660352892072297 ], [ 101.952567986723182, 16.634127101784316 ], [ 101.986416050260459, 16.57694713050563 ], [ 102.077159865135627, 16.503876654883697 ], [ 102.203612094622429, 16.505116889233022 ], [ 102.300918817349498, 16.450804959381344 ], [ 102.372594028991216, 16.437601630211077 ], [ 102.408560826021244, 16.456851101497136 ], [ 102.453622674646681, 16.397810777345455 ], [ 102.406132033266658, 16.243479112071327 ], [ 102.329960972221045, 16.12989431407135 ], [ 102.266967401024715, 16.073256944252535 ], [ 102.279989862142372, 16.049175726778344 ], [ 102.39248945542397, 15.983805040570132 ], [ 102.334818556830896, 15.863941555558313 ], [ 102.331666293664455, 15.805831407393498 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-54", "NAME_1": "Phrae" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.352562290017602, 18.815079251406303 ], [ 100.374008010061573, 18.750251165758698 ], [ 100.397417433967348, 18.73950246776468 ], [ 100.366721632697136, 18.672814031941982 ], [ 100.378503858566205, 18.643229274711246 ], [ 100.405685663262716, 18.632945664710633 ], [ 100.386255323924047, 18.580261541936579 ], [ 100.409819776561392, 18.493858546834474 ], [ 100.485267368993846, 18.494168606096252 ], [ 100.530225864831777, 18.475177517228644 ], [ 100.541904737913285, 18.427066759123591 ], [ 100.497824742118098, 18.342937527145125 ], [ 100.5048010602207, 18.281416734294851 ], [ 100.457362094784799, 18.163542792465876 ], [ 100.405478956788386, 18.131167507274597 ], [ 100.42211876816657, 18.015954902196938 ], [ 100.369822219020136, 17.983863836946512 ], [ 100.341710240135455, 17.898365180308815 ], [ 100.288483514102836, 17.95895579717228 ], [ 100.246315546225446, 17.953245550941404 ], [ 100.129423456327402, 17.85723074030642 ], [ 100.001265903598551, 17.830617377290139 ], [ 99.955377231773809, 17.782842515969321 ], [ 99.914862909395708, 17.803978175852137 ], [ 99.809494662948282, 17.79594249145282 ], [ 99.7782820977406, 17.778992620812801 ], [ 99.736579217856558, 17.722226059784816 ], [ 99.66221683104186, 17.79710521143636 ], [ 99.600463495094175, 17.816923123503329 ], [ 99.55762373274905, 17.809404202142218 ], [ 99.445589226561538, 17.702795722244787 ], [ 99.380580274659906, 17.677112535215315 ], [ 99.352830030981124, 17.681453354988321 ], [ 99.315416294026704, 17.732251288266298 ], [ 99.312315707703704, 17.766667792584542 ], [ 99.374689162175059, 17.779018460133784 ], [ 99.5154040871289, 17.94161835380396 ], [ 99.586510857989651, 17.99980601723388 ], [ 99.596587762415254, 18.029985052767927 ], [ 99.647282342905783, 18.023422145815346 ], [ 99.723815139157296, 18.070886948773648 ], [ 99.813525425258149, 18.21968923586951 ], [ 99.867527296747312, 18.274957180129718 ], [ 99.909746942367462, 18.288728949181632 ], [ 99.967004428911252, 18.382082423964675 ], [ 100.003591342666311, 18.404871731145477 ], [ 100.052477248026548, 18.490112006264042 ], [ 100.065654737875832, 18.553777371028843 ], [ 100.114850701598584, 18.565921332103756 ], [ 100.124462518030725, 18.603464260267401 ], [ 100.110199822563743, 18.629638372812622 ], [ 100.108184441858441, 18.730123196228533 ], [ 100.130560336989902, 18.777148748715774 ], [ 100.120948520557761, 18.811746121086628 ], [ 100.162806430971955, 18.830840561842422 ], [ 100.352562290017602, 18.815079251406303 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-51", "NAME_1": "Lamphun" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.314796177301673, 18.529799506342101 ], [ 99.302548863439256, 18.493496812527837 ], [ 99.236454705919925, 18.475978502006228 ], [ 99.146434360557237, 18.319657294448575 ], [ 99.101889275869326, 18.270254625150812 ], [ 99.052693313045893, 18.267515774033711 ], [ 99.015331252035594, 18.242297674997701 ], [ 99.057344191181414, 18.135379136737754 ], [ 99.092587517799643, 17.954072374140765 ], [ 99.113361444275199, 17.913170478135044 ], [ 99.178370396176774, 17.858445136234025 ], [ 99.159766880037466, 17.841676134545935 ], [ 99.167208287032793, 17.814365139539518 ], [ 99.108400506877842, 17.806923733443512 ], [ 99.121939731933026, 17.772326361972034 ], [ 99.082355584642471, 17.726851101297257 ], [ 99.049592726722892, 17.614868271953185 ], [ 99.012075636981024, 17.610630804967684 ], [ 98.965825229950383, 17.641559150234571 ], [ 98.91507897261647, 17.639957179780026 ], [ 98.893219843221175, 17.617917182332064 ], [ 98.864487745812767, 17.532573554425994 ], [ 98.772607050275099, 17.483971869006552 ], [ 98.721344029003717, 17.485263780199261 ], [ 98.699329869078156, 17.651868597757584 ], [ 98.737260369970045, 17.673546860898909 ], [ 98.745631952052918, 17.697912299213215 ], [ 98.710388625434689, 17.756177476109599 ], [ 98.751213007074568, 17.756565049737219 ], [ 98.846814405660268, 17.717032579290105 ], [ 98.896423781432304, 17.742793280685362 ], [ 98.910583124111838, 17.82268504477895 ], [ 98.855651075736489, 17.965131130497241 ], [ 98.808780551980874, 17.980479031582036 ], [ 98.81637698770777, 18.14338898451399 ], [ 98.790332066371718, 18.243537909347026 ], [ 98.680933059413121, 18.30141551441443 ], [ 98.706822951118284, 18.33730479617941 ], [ 98.691475050932809, 18.366476142260126 ], [ 98.708683303091902, 18.401202704041566 ], [ 98.700001661747251, 18.42264842408548 ], [ 98.775087518074486, 18.443138128821545 ], [ 98.926551141022287, 18.529101874352023 ], [ 99.010628697056688, 18.667672227391392 ], [ 99.048352492373567, 18.654546414385493 ], [ 99.143178746401986, 18.703768214731326 ], [ 99.183072951155737, 18.703716538787205 ], [ 99.227566359000207, 18.634780178262588 ], [ 99.217334425843035, 18.593852443835203 ], [ 99.314796177301673, 18.529799506342101 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-25", "NAME_1": "Prachin Buri" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.155148959856547, 13.849878445234026 ], [ 101.143004998781635, 13.877421983337854 ], [ 101.156699252568387, 13.922199612022439 ], [ 101.137630650234257, 13.996510321993753 ], [ 101.181503941353753, 14.012349147694977 ], [ 101.226979201129211, 14.054310410896733 ], [ 101.3250610702122, 14.064335639378214 ], [ 101.300721470319559, 14.144589137778496 ], [ 101.391620314825616, 14.224920152343145 ], [ 101.396891310585488, 14.26778575310999 ], [ 101.439265984937208, 14.255254218407458 ], [ 101.511871371666416, 14.278224391842173 ], [ 101.514971957989417, 14.310108751517646 ], [ 101.482260776913279, 14.364188137372651 ], [ 101.431979607572771, 14.389328722042876 ], [ 101.409293654078851, 14.424778754236115 ], [ 101.438800896943803, 14.425941474219655 ], [ 101.482725864906683, 14.461288154524709 ], [ 101.541688673793203, 14.42718170856898 ], [ 101.619875116443438, 14.431884264447206 ], [ 101.753200311245337, 14.316129055211718 ], [ 101.765137566745295, 14.347625841259571 ], [ 101.866268345307844, 14.364420681369324 ], [ 101.889729445157741, 14.393359483453366 ], [ 101.927143182112104, 14.360906683896303 ], [ 101.957218865758023, 14.378502508783754 ], [ 101.983883904718368, 14.3635680197483 ], [ 101.948537225312634, 14.280859890171769 ], [ 101.964505243122403, 14.251688544090996 ], [ 102.052820266142305, 14.185620224993386 ], [ 102.045068800784463, 14.130869045569966 ], [ 101.979749789621053, 14.056403306867082 ], [ 101.912518752338485, 14.035810248444193 ], [ 101.910813429995756, 13.965091051211004 ], [ 101.869575637205855, 13.933206692434908 ], [ 101.855881381620407, 13.837088528113043 ], [ 101.901821731187908, 13.816366279380247 ], [ 101.907867873303644, 13.769108181097693 ], [ 101.876241896945942, 13.72314199490711 ], [ 101.817744175153507, 13.72143667256438 ], [ 101.755784132731492, 13.80143179034485 ], [ 101.703074172435095, 13.790915636347506 ], [ 101.689689976111481, 13.755853175983248 ], [ 101.5897994318982, 13.782311510267959 ], [ 101.565408156061494, 13.749936225076738 ], [ 101.54913007988921, 13.770477607555506 ], [ 101.354051548240307, 13.859955348760309 ], [ 101.210856153688496, 13.874941515538524 ], [ 101.155148959856547, 13.849878445234026 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TH-35", "NAME_1": "Yasothon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.378518101229361, 15.317799181487032 ], [ 104.254081252447804, 15.367925320297275 ], [ 104.151038445967458, 15.500630398374199 ], [ 104.129489374035359, 15.564528307135674 ], [ 104.211241490102623, 15.606515407859774 ], [ 104.155689325002299, 15.701729233717174 ], [ 104.127318963699167, 15.702168484188178 ], [ 104.131763137158998, 15.787744656090979 ], [ 104.111712681095298, 15.823272203549323 ], [ 104.072076857860679, 15.846784980242603 ], [ 104.0736271496732, 15.820455837167117 ], [ 104.010013461751839, 15.798364162875828 ], [ 104.013579136068245, 15.846552436245929 ], [ 104.03791873596083, 15.867274684978725 ], [ 104.010685256219574, 15.911948960875804 ], [ 104.021485630157656, 15.978017279973471 ], [ 104.109438917971659, 15.985045274020138 ], [ 104.11755211763608, 16.039124660774462 ], [ 104.104684686149312, 16.0911111524577 ], [ 104.232635533303153, 16.167566433444108 ], [ 104.27656050036677, 16.241076157738462 ], [ 104.325756464089523, 16.257948513113377 ], [ 104.355883823679449, 16.323396715486012 ], [ 104.395622999701629, 16.344609889734613 ], [ 104.497115512570815, 16.341871039516832 ], [ 104.520990025369315, 16.314560045409735 ], [ 104.559333938310544, 16.307738756038759 ], [ 104.586929152358437, 16.252367458991046 ], [ 104.631267530572018, 16.215444648451751 ], [ 104.655503777677154, 16.216684881901756 ], [ 104.678654820063855, 16.240766100275266 ], [ 104.702374302332146, 16.216865749954366 ], [ 104.802006464126976, 16.198262233815001 ], [ 104.810688103672987, 16.169788519724364 ], [ 104.798285761078944, 16.155189928372465 ], [ 104.616281365592499, 16.120592556001668 ], [ 104.57623213120786, 16.095503648174827 ], [ 104.464197625919667, 15.909468492177155 ], [ 104.424613478629112, 15.721262925843348 ], [ 104.443578729075057, 15.634911607584627 ], [ 104.46094201086504, 15.630441595703076 ], [ 104.471484003284104, 15.599358221704563 ], [ 104.512101678449653, 15.583390203894794 ], [ 104.51974979012067, 15.561815294440294 ], [ 104.487452020194553, 15.532954005822717 ], [ 104.403684524321307, 15.52838064205298 ], [ 104.382600538583972, 15.419937649502913 ], [ 104.418463982826495, 15.377692166360362 ], [ 104.435775587773094, 15.386864732321499 ], [ 104.4386177916777, 15.34991608336054 ], [ 104.418257277251485, 15.28480377957078 ], [ 104.378518101229361, 15.317799181487032 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/timorleste.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/timorleste.geojson new file mode 100644 index 000000000000..f5b41a6f1953 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/timorleste.geojson @@ -0,0 +1,19 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "TL-OE", "NAME_1": "Ambeno" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.450531446000014, -9.180189710999912 ], [ 124.451503948000152, -9.200574238999877 ], [ 124.436621134, -9.255868021999902 ], [ 124.431815227000016, -9.290801289999891 ], [ 124.427939494000043, -9.299482929999954 ], [ 124.424787232000085, -9.303513691999854 ], [ 124.420911499000056, -9.30692433699997 ], [ 124.401687866000145, -9.331832376999941 ], [ 124.371870565000052, -9.357050475999898 ], [ 124.362620484000104, -9.362011413999937 ], [ 124.358072958000093, -9.362218118999905 ], [ 124.354558960000134, -9.364181823999928 ], [ 124.347892700000102, -9.374620462999872 ], [ 124.345412232000058, -9.404179381999896 ], [ 124.341743205000057, -9.41182749399988 ], [ 124.332079712000052, -9.425470071999882 ], [ 124.32861739100008, -9.433014831999927 ], [ 124.328824097000052, -9.439836119999896 ], [ 124.333371623000062, -9.457199401999901 ], [ 124.332338095000068, -9.466604511999961 ], [ 124.323553101000016, -9.480350443999896 ], [ 124.31006555200014, -9.488722025999962 ], [ 124.293064006, -9.49306284499994 ], [ 124.273840373000098, -9.494923196999949 ], [ 124.261593059000063, -9.49792042999988 ], [ 124.257510621000051, -9.501227721999967 ], [ 124.256580445000111, -9.499367370999963 ], [ 124.253376506000052, -9.486448261999954 ], [ 124.253376506000052, -9.480557148999949 ], [ 124.256890503000022, -9.462883808999948 ], [ 124.257510621000051, -9.455442402999921 ], [ 124.253996623000035, -9.438699238999973 ], [ 124.246865275000062, -9.421542662999911 ], [ 124.237150106000115, -9.405212910999879 ], [ 124.225781291000146, -9.391570332999962 ], [ 124.210691773000065, -9.378857930999914 ], [ 124.197462606000045, -9.373173522999878 ], [ 124.183613323000088, -9.37389699299996 ], [ 124.167231893, -9.380614928999904 ], [ 124.153796021000062, -9.391880391999862 ], [ 124.133745565000027, -9.419268899999906 ], [ 124.121084839000105, -9.42691701299988 ], [ 124.090285685000026, -9.421542662999911 ], [ 124.06269047, -9.397874856999891 ], [ 124.030039910000028, -9.341973565999922 ], [ 124.048350457000083, -9.337009372999944 ], [ 124.129161004000025, -9.304945570999905 ], [ 124.146739129000025, -9.302911065999922 ], [ 124.159353061000047, -9.296482028999947 ], [ 124.18132571700005, -9.265394789999959 ], [ 124.190765821000014, -9.25514088299991 ], [ 124.221202019000089, -9.241143487999921 ], [ 124.287771030000044, -9.220798434999949 ], [ 124.385752800000091, -9.202325127999927 ], [ 124.396820509, -9.196465752999927 ], [ 124.405284050000091, -9.185316664999959 ], [ 124.425140821000014, -9.181573174999926 ], [ 124.450205925000091, -9.180271091999941 ], [ 124.450531446000014, -9.180189710999912 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TL-BO", "NAME_1": "Bobonaro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.947856080000122, -9.078514505999919 ], [ 124.933024943000078, -9.07448374399992 ], [ 124.921294393000039, -9.065492044999885 ], [ 124.912974487000042, -9.052779641999919 ], [ 124.907910197000092, -9.037483418999955 ], [ 124.909150431000114, -9.020326842999907 ], [ 124.922482951000063, -8.986323750999958 ], [ 124.919507206836613, -8.962015500097579 ], [ 124.953786655000044, -8.94264088299991 ], [ 124.974782748000052, -8.922133070999905 ], [ 125.023203972000033, -8.849053643999923 ], [ 125.027598504000025, -8.83367278399993 ], [ 125.036875847000033, -8.824802341999941 ], [ 125.08171634200005, -8.808363539999959 ], [ 125.096446160000028, -8.795830987999921 ], [ 125.100352410000028, -8.778252862999921 ], [ 125.102942314408963, -8.740267594092641 ], [ 125.103144565968933, -8.74034473951815 ], [ 125.122523227564898, -8.747734469670036 ], [ 125.142366978053587, -8.756209404540414 ], [ 125.172132603336877, -8.756002698965403 ], [ 125.179212274226984, -8.754452406253563 ], [ 125.186395297904596, -8.771919040831051 ], [ 125.223395623709052, -8.779153740452784 ], [ 125.23931196467538, -8.787008558598131 ], [ 125.251507602593733, -8.807265720236785 ], [ 125.279619582377791, -8.861422620457574 ], [ 125.307731561262472, -8.918059991175653 ], [ 125.313105909809792, -8.937903740765023 ], [ 125.315999790557839, -8.967669366048426 ], [ 125.326335077401836, -8.991440525160101 ], [ 125.388760206917937, -8.989166762036461 ], [ 125.413099806810578, -8.98219044393386 ], [ 125.412324659555338, -9.009217218100162 ], [ 125.410619338111928, -9.034125257874337 ], [ 125.384419387144931, -9.040223076833513 ], [ 125.360648228033256, -9.060273532897213 ], [ 125.355893996210852, -9.086111748658254 ], [ 125.352379998737888, -9.123112073563334 ], [ 125.342044711893891, -9.14274911847707 ], [ 125.309385206761817, -9.141302178552678 ], [ 125.292021925871154, -9.14543629275073 ], [ 125.319307081556531, -9.179336033131449 ], [ 125.31124555873555, -9.209515068665496 ], [ 125.254814895391064, -9.217369886810843 ], [ 125.218021275161618, -9.214062594912832 ], [ 125.213473748914339, -9.200833429119484 ], [ 125.206445753968296, -9.19049814227543 ], [ 125.191976352926304, -9.18264332413014 ], [ 125.158076613444905, -9.172308038185406 ], [ 125.152653732000147, -9.170824418999956 ], [ 125.151202841000099, -9.165020852999916 ], [ 125.146965373000057, -9.154478861999863 ], [ 125.145001669000067, -9.145177103999927 ], [ 125.162003214000038, -9.082338561999947 ], [ 125.162364950000097, -9.06063446099995 ], [ 125.153993368000158, -9.040790709999953 ], [ 125.139420614000073, -9.024771015999917 ], [ 125.121333862000085, -9.011851907999898 ], [ 125.102523642000051, -9.00130991599994 ], [ 125.095288941000092, -8.994798684999878 ], [ 125.091516561000049, -8.988597513999892 ], [ 125.086814006000111, -8.986220397999929 ], [ 125.076478719000079, -8.990767923999968 ], [ 125.073016399000039, -8.996452331999919 ], [ 125.068572225000025, -9.015882669999897 ], [ 125.065316610000139, -9.023220723999898 ], [ 125.051829061000092, -9.035002949999893 ], [ 125.00444177300011, -9.055570169999967 ], [ 124.978913615000067, -9.072003274999943 ], [ 124.965891154000019, -9.077274271999968 ], [ 124.947856080000122, -9.078514505999919 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TL-CO", "NAME_1": "Cova Lima" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.142521200000033, -9.189102070999866 ], [ 125.150634400000115, -9.185381367999952 ], [ 125.153890015, -9.175769550999931 ], [ 125.152653732000147, -9.170824418999956 ], [ 125.158076613444905, -9.172308038185406 ], [ 125.191976352926304, -9.18264332413014 ], [ 125.206445753968296, -9.19049814227543 ], [ 125.213473748914339, -9.200833429119484 ], [ 125.218021275161618, -9.214062594912832 ], [ 125.254814895391064, -9.217369886810843 ], [ 125.31124555873555, -9.209515068665496 ], [ 125.319307081556531, -9.179336033131449 ], [ 125.292021925871154, -9.14543629275073 ], [ 125.309385206761817, -9.141302178552678 ], [ 125.342044711893891, -9.14274911847707 ], [ 125.352379998737888, -9.123112073563334 ], [ 125.355893996210852, -9.086111748658254 ], [ 125.360648228033256, -9.060273532897213 ], [ 125.384419387144931, -9.040223076833513 ], [ 125.410619338111928, -9.034125257874337 ], [ 125.411911249304694, -9.033815198612558 ], [ 125.424933710422351, -9.048698011703891 ], [ 125.431754998894007, -9.063580823895904 ], [ 125.446017694361103, -9.069988702116916 ], [ 125.456559685880734, -9.095000094678653 ], [ 125.459866977778802, -9.134067478031682 ], [ 125.473096145370732, -9.149570407848046 ], [ 125.495213658083799, -9.155151461970377 ], [ 125.511129999050127, -9.164453220040059 ], [ 125.495213658083799, -9.213442478187801 ], [ 125.48796634200005, -9.240817966999941 ], [ 125.378754102000016, -9.281019789999959 ], [ 125.342784050000091, -9.302911065999922 ], [ 125.291270379000025, -9.345472914999959 ], [ 125.263682488000086, -9.357354424999926 ], [ 125.251475457000083, -9.371514580999929 ], [ 125.232920769000089, -9.399183851999908 ], [ 125.222015821000014, -9.411065362999921 ], [ 125.211110873000052, -9.41961028399993 ], [ 125.196625196000014, -9.424737237999921 ], [ 125.149912957000083, -9.428155205999929 ], [ 125.13054446700005, -9.433770440999922 ], [ 125.113617384, -9.444431247999944 ], [ 125.096446160000028, -9.461195570999905 ], [ 125.061615431000064, -9.485772393999923 ], [ 125.050930754000092, -9.42469684299995 ], [ 125.046299683000086, -9.409863788999942 ], [ 125.023768758000074, -9.3747238159999 ], [ 125.022786906000078, -9.367695820999884 ], [ 125.024802287000057, -9.351986184999916 ], [ 125.023407024000164, -9.345578307999887 ], [ 125.017877645000056, -9.338963724999886 ], [ 124.996690308000098, -9.325837910999908 ], [ 124.972815796000134, -9.304650572999947 ], [ 124.965994507000062, -9.293385111999896 ], [ 124.960155070000098, -9.276021829999877 ], [ 124.954108928000096, -9.241501973999988 ], [ 124.957932984000081, -9.21194305399996 ], [ 124.974469442000157, -9.191892598999914 ], [ 125.007232301000045, -9.186104837999949 ], [ 125.027696168000034, -9.186311543999906 ], [ 125.034517456, -9.188171895999915 ], [ 125.041442098000061, -9.193236185999893 ], [ 125.053379354000072, -9.206672057999938 ], [ 125.05968387900009, -9.210496113999881 ], [ 125.073946574000104, -9.211322936999906 ], [ 125.082576538000012, -9.205535176999931 ], [ 125.091464884000061, -9.196750182999935 ], [ 125.106967814000086, -9.188481953999897 ], [ 125.117923218000158, -9.187551777999943 ], [ 125.142521200000033, -9.189102070999866 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TL-AN", "NAME_1": "Ainaro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.67008765244276, -9.193272681803661 ], [ 125.660166863000086, -9.193536065999922 ], [ 125.609385613000086, -9.186211846999925 ], [ 125.59302819100003, -9.189629815999922 ], [ 125.572601759, -9.205743096999925 ], [ 125.552093946000014, -9.217217705999929 ], [ 125.48796634200005, -9.240817966999941 ], [ 125.495213658083799, -9.213442478187801 ], [ 125.511129999050127, -9.164453220040059 ], [ 125.495213658083799, -9.155151461970377 ], [ 125.473096145370732, -9.149570407848046 ], [ 125.459866977778802, -9.134067478031682 ], [ 125.456559685880734, -9.095000094678653 ], [ 125.446017694361103, -9.069988702116916 ], [ 125.431754998894007, -9.063580823895904 ], [ 125.424933710422351, -9.048698011703891 ], [ 125.411911249304694, -9.033815198612558 ], [ 125.410619338111928, -9.034125257874337 ], [ 125.412324659555338, -9.009217218100162 ], [ 125.413099806810578, -8.98219044393386 ], [ 125.442710403362412, -8.973663832220097 ], [ 125.443330520087329, -8.949479261958402 ], [ 125.452838982832759, -8.936250095265677 ], [ 125.464827916075365, -8.92302092857301 ], [ 125.471649205446397, -8.9058643532573 ], [ 125.489632603062091, -8.889948012290915 ], [ 125.492733189385149, -8.864523206780575 ], [ 125.487978956663483, -8.855634860760233 ], [ 125.492319778235128, -8.855014744035202 ], [ 125.539241977934921, -8.84860686581419 ], [ 125.571901483066995, -8.836617933470848 ], [ 125.592158644705592, -8.812226657634142 ], [ 125.598773227602351, -8.793829847969107 ], [ 125.620270623590386, -8.789075616146761 ], [ 125.632672967983012, -8.78080738685145 ], [ 125.645075310577113, -8.772539157556082 ], [ 125.674427524710495, -8.767991632208066 ], [ 125.691377395350514, -8.770885512056736 ], [ 125.688276809027457, -8.794604993425708 ], [ 125.688070102553183, -8.796310316667814 ], [ 125.679801874157079, -8.835377699121523 ], [ 125.675461054384073, -8.859975680533239 ], [ 125.674840935860402, -8.878372491097593 ], [ 125.671947056011732, -8.906691175557341 ], [ 125.656650831770435, -8.916406344776988 ], [ 125.623577916387717, -8.915992933626967 ], [ 125.600426874000959, -8.927981865970366 ], [ 125.597119582103005, -8.946998793259695 ], [ 125.588851352807637, -8.966015719649761 ], [ 125.580789829986657, -8.980071709541789 ], [ 125.578929478012924, -8.999088636831118 ], [ 125.581616653185961, -9.032161554012532 ], [ 125.595465935704283, -9.055312594600593 ], [ 125.625231560987686, -9.068335055718251 ], [ 125.650036248873789, -9.080117282486583 ], [ 125.664712356390055, -9.093966566803601 ], [ 125.673187291260433, -9.116497490666688 ], [ 125.667192824189442, -9.131793714908042 ], [ 125.659958123668389, -9.149570407848046 ], [ 125.667399529764452, -9.186364028077435 ], [ 125.67008765244276, -9.193272681803661 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TL-MF", "NAME_1": "Manufahi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.047536655000044, -9.057305596999925 ], [ 125.947113477000016, -9.125746351999908 ], [ 125.928477410000028, -9.131605726999908 ], [ 125.869639519000089, -9.122653903999947 ], [ 125.849864129000025, -9.124200127999927 ], [ 125.838715040000011, -9.130059502999927 ], [ 125.816905144000089, -9.148207289999959 ], [ 125.805186394000089, -9.152113539999959 ], [ 125.763682488000086, -9.152113539999959 ], [ 125.742686394000089, -9.157321872999944 ], [ 125.678558790000011, -9.19304778399993 ], [ 125.67008765244276, -9.193272681803661 ], [ 125.667399529764452, -9.186364028077435 ], [ 125.659958123668389, -9.149570407848046 ], [ 125.667192824189442, -9.131793714908042 ], [ 125.673187291260433, -9.116497490666688 ], [ 125.664712356390055, -9.093966566803601 ], [ 125.650036248873789, -9.080117282486583 ], [ 125.625231560987686, -9.068335055718251 ], [ 125.595465935704283, -9.055312594600593 ], [ 125.581616653185961, -9.032161554012532 ], [ 125.578929478012924, -8.999088636831118 ], [ 125.580789829986657, -8.980071709541789 ], [ 125.588851352807637, -8.966015719649761 ], [ 125.597119582103005, -8.946998793259695 ], [ 125.600426874000959, -8.927981865970366 ], [ 125.623577916387717, -8.915992933626967 ], [ 125.656650831770435, -8.916406344776988 ], [ 125.671947056011732, -8.906691175557341 ], [ 125.674840935860402, -8.878372491097593 ], [ 125.675461054384073, -8.859975680533239 ], [ 125.679801874157079, -8.835377699121523 ], [ 125.688070102553183, -8.796310316667814 ], [ 125.688276809027457, -8.794604993425708 ], [ 125.707913853041873, -8.792589612720462 ], [ 125.744294061221922, -8.774192803954747 ], [ 125.762277459736879, -8.756416111014744 ], [ 125.779020623902625, -8.751041761568047 ], [ 125.805220574869622, -8.753160495960117 ], [ 125.80547895728796, -8.756002698965403 ], [ 125.798657667917041, -8.812019952059131 ], [ 125.810439894685373, -8.856875095109558 ], [ 125.841032343168081, -8.881886487671295 ], [ 125.871624790751412, -8.898216240686963 ], [ 125.906144646957841, -8.914959404852652 ], [ 125.929502394919496, -8.942864679061699 ], [ 125.94500532383654, -8.967049248424075 ], [ 125.989033644586925, -8.992474053934473 ], [ 126.032028435663733, -9.02265308946852 ], [ 126.045257603255777, -9.04539071980588 ], [ 126.047536655000044, -9.057305596999925 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TL-MT", "NAME_1": "Manatuto" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.13795006600003, -8.999932549999926 ], [ 126.121918165000011, -9.006524346999925 ], [ 126.047536655000044, -9.057305596999925 ], [ 126.045257603255777, -9.04539071980588 ], [ 126.032028435663733, -9.02265308946852 ], [ 125.989033644586925, -8.992474053934473 ], [ 125.94500532383654, -8.967049248424075 ], [ 125.929502394919496, -8.942864679061699 ], [ 125.906144646957841, -8.914959404852652 ], [ 125.871624790751412, -8.898216240686963 ], [ 125.841032343168081, -8.881886487671295 ], [ 125.810439894685373, -8.856875095109558 ], [ 125.798657667917041, -8.812019952059131 ], [ 125.80547895728796, -8.756002698965403 ], [ 125.805220574869622, -8.753160495960117 ], [ 125.801138136615691, -8.705566501792646 ], [ 125.78563520679927, -8.670013115912582 ], [ 125.771579217806561, -8.649135836649577 ], [ 125.757523227914589, -8.617096449141798 ], [ 125.763672722817887, -8.582834974454499 ], [ 125.788942498697338, -8.575755303564392 ], [ 125.810853305835394, -8.548883559029036 ], [ 125.830283645174063, -8.534414157986987 ], [ 125.845993279666118, -8.513536878723983 ], [ 125.828544337679517, -8.490910208979516 ], [ 125.850596550000091, -8.483819268999923 ], [ 125.89771569100003, -8.481133721999925 ], [ 126.002207879000025, -8.499444268999923 ], [ 126.04224694100003, -8.51881275799991 ], [ 126.069102410000028, -8.521579684999949 ], [ 126.09107506600003, -8.517185153999947 ], [ 126.133474155000044, -8.504001559999949 ], [ 126.141832318306797, -8.502822042902949 ], [ 126.161012810692569, -8.517877698496989 ], [ 126.171348098435942, -8.537514744309988 ], [ 126.174241978284613, -8.560872490473059 ], [ 126.177342563708294, -8.591051527805746 ], [ 126.179202915681913, -8.62371103293782 ], [ 126.172588331886004, -8.645828545650886 ], [ 126.161012810692569, -8.661744886617214 ], [ 126.140032180440699, -8.681071873168435 ], [ 126.131247186308542, -8.678074639632939 ], [ 126.111403435819852, -8.674974054209258 ], [ 126.091973098279823, -8.687996514427596 ], [ 126.07998416593648, -8.719622490785355 ], [ 126.068822055893065, -8.745460706546396 ], [ 126.050218540653077, -8.757656344464749 ], [ 126.036989373960409, -8.774606215104768 ], [ 126.033682082062342, -8.794036553544117 ], [ 126.057246534699743, -8.830003349674882 ], [ 126.078330520437135, -8.86845061630288 ], [ 126.078950637162166, -8.889948012290915 ], [ 126.083291456935171, -8.911445408278951 ], [ 126.094246861403462, -8.941211032663034 ], [ 126.111403435819852, -8.966015719649761 ], [ 126.137655063630177, -8.998675224781778 ], [ 126.13795006600003, -8.999932549999926 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TL-VI", "NAME_1": "Viqueque" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.728370204084086, -8.760989320499263 ], [ 126.694183790000011, -8.763441664999959 ], [ 126.672373894000089, -8.768649997999944 ], [ 126.660655144000089, -8.774183851999908 ], [ 126.631358269000089, -8.795830987999921 ], [ 126.624034050000091, -8.799004815999922 ], [ 126.615489129000025, -8.800876559999949 ], [ 126.593516472000033, -8.80201588299991 ], [ 126.58326256600003, -8.805840752999927 ], [ 126.544118686000047, -8.850274346999925 ], [ 126.507823113000086, -8.911879164999959 ], [ 126.472422722000033, -8.942803643999923 ], [ 126.430186394000089, -8.954685153999947 ], [ 126.165863477000016, -8.988376559999949 ], [ 126.13795006600003, -8.999932549999926 ], [ 126.137655063630177, -8.998675224781778 ], [ 126.111403435819852, -8.966015719649761 ], [ 126.094246861403462, -8.941211032663034 ], [ 126.083291456935171, -8.911445408278951 ], [ 126.078950637162166, -8.889948012290915 ], [ 126.078330520437135, -8.86845061630288 ], [ 126.057246534699743, -8.830003349674882 ], [ 126.033682082062342, -8.794036553544117 ], [ 126.036989373960409, -8.774606215104768 ], [ 126.050218540653077, -8.757656344464749 ], [ 126.068822055893065, -8.745460706546396 ], [ 126.07998416593648, -8.719622490785355 ], [ 126.091973098279823, -8.687996514427596 ], [ 126.111403435819852, -8.674974054209258 ], [ 126.131247186308542, -8.678074639632939 ], [ 126.140032180440699, -8.681071873168435 ], [ 126.180856561181258, -8.694817803798628 ], [ 126.234393344677073, -8.695851331673623 ], [ 126.281728957325527, -8.678281345207949 ], [ 126.331131625723856, -8.675387464459902 ], [ 126.374333124174314, -8.684895929003915 ], [ 126.40637251168198, -8.696264743722963 ], [ 126.432210728342397, -8.70639332409263 ], [ 126.44936730365805, -8.693577568549983 ], [ 126.445439895035065, -8.663398533015879 ], [ 126.448540481358123, -8.633426202157523 ], [ 126.455361769829778, -8.607174573447821 ], [ 126.474792108269185, -8.626191501636526 ], [ 126.491741978009827, -8.670013115912582 ], [ 126.51882042901957, -8.683242282605249 ], [ 126.559541456972624, -8.676627698809284 ], [ 126.585999791257336, -8.680141697181568 ], [ 126.602536248948695, -8.689856865501952 ], [ 126.615558710066352, -8.68365569375527 ], [ 126.627340935935422, -8.660091241117868 ], [ 126.651112095047097, -8.648722425499557 ], [ 126.68356489460416, -8.658437594719203 ], [ 126.706715936091541, -8.664638766465885 ], [ 126.724906041080885, -8.678281345207949 ], [ 126.738962030073594, -8.696471449297974 ], [ 126.73544803260063, -8.70122568112032 ], [ 126.728213332079577, -8.726237073682 ], [ 126.728370204084086, -8.760989320499263 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TL-LA", "NAME_1": "Lautém" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.688196544288147, -8.43119189791361 ], [ 126.693125847000033, -8.429864190999922 ], [ 126.712087436000047, -8.416599216999941 ], [ 126.720225457000083, -8.412855726999908 ], [ 126.731293165000011, -8.412774346999925 ], [ 126.748301629000025, -8.418064059999949 ], [ 126.75554446700005, -8.419122002999927 ], [ 126.799327019000089, -8.410088799999926 ], [ 126.842133009, -8.391045830999929 ], [ 126.94459069100003, -8.318617445999905 ], [ 126.967051629000025, -8.309014580999929 ], [ 126.983897332000083, -8.312920830999929 ], [ 126.99927819100003, -8.324151299999926 ], [ 127.06959069100003, -8.357598565999922 ], [ 127.088877800000091, -8.362725518999923 ], [ 127.113617384, -8.365004164999959 ], [ 127.13795006600003, -8.362725518999923 ], [ 127.15552819100003, -8.354180596999925 ], [ 127.186289910000028, -8.332452080999929 ], [ 127.193125847000033, -8.32976653399993 ], [ 127.206065300000091, -8.332614841999941 ], [ 127.210948113000086, -8.339043877999927 ], [ 127.213633660000028, -8.347832940999922 ], [ 127.22038821700005, -8.357598565999922 ], [ 127.241547071000014, -8.370212497999944 ], [ 127.286875847000033, -8.382419528999947 ], [ 127.306000196000014, -8.395196221999925 ], [ 127.313243035000028, -8.415215752999927 ], [ 127.303233269000089, -8.432305596999925 ], [ 127.23015384200005, -8.486586195999905 ], [ 127.184336785000028, -8.532321872999944 ], [ 127.092621290000011, -8.603122653999947 ], [ 127.028005405000044, -8.665459893999923 ], [ 127.02116946700005, -8.675713799999926 ], [ 127.009287957000083, -8.676690362999921 ], [ 126.939219597000033, -8.692152601999908 ], [ 126.874847852000016, -8.738457940999922 ], [ 126.846202019000089, -8.752536716999941 ], [ 126.728370204084086, -8.760989320499263 ], [ 126.728213332079577, -8.726237073682 ], [ 126.73544803260063, -8.70122568112032 ], [ 126.738962030073594, -8.696471449297974 ], [ 126.751364373566958, -8.679934990707238 ], [ 126.772241652829962, -8.650169365423892 ], [ 126.799320102940328, -8.630325615834522 ], [ 126.811722447333068, -8.620197034565479 ], [ 126.804281041237005, -8.60386728244913 ], [ 126.776582472602968, -8.575962009139403 ], [ 126.741442498772244, -8.5443360327817 ], [ 126.72635298100522, -8.529659926164641 ], [ 126.734827915875599, -8.516224053896963 ], [ 126.737515090149259, -8.499274184156263 ], [ 126.721598749182931, -8.489765719612251 ], [ 126.710643344714526, -8.478396904893259 ], [ 126.70340864509285, -8.453385511432202 ], [ 126.688196544288147, -8.43119189791361 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TL-BA", "NAME_1": "Baucau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.141832318306797, -8.502822042902949 ], [ 126.155039910000028, -8.501071872999944 ], [ 126.200043165000011, -8.500420830999929 ], [ 126.240244988000086, -8.494805596999925 ], [ 126.260915561000047, -8.484551690999922 ], [ 126.305023634, -8.453545830999929 ], [ 126.336924675000091, -8.444431247999944 ], [ 126.370127800000091, -8.425957940999922 ], [ 126.381195509, -8.424086195999905 ], [ 126.401133660000028, -8.423760674999926 ], [ 126.411631707000083, -8.419122002999927 ], [ 126.429698113000086, -8.432224216999941 ], [ 126.450938347000033, -8.44068775799991 ], [ 126.473968946000014, -8.445489190999922 ], [ 126.49732506600003, -8.447035414999959 ], [ 126.511973504000025, -8.452080987999921 ], [ 126.548838738000086, -8.486748955999929 ], [ 126.590098504000025, -8.472914320999905 ], [ 126.666840040000011, -8.436944268999923 ], [ 126.688196544288147, -8.43119189791361 ], [ 126.70340864509285, -8.453385511432202 ], [ 126.710643344714526, -8.478396904893259 ], [ 126.721598749182931, -8.489765719612251 ], [ 126.737515090149259, -8.499274184156263 ], [ 126.734827915875599, -8.516224053896963 ], [ 126.72635298100522, -8.529659926164641 ], [ 126.741442498772244, -8.5443360327817 ], [ 126.776582472602968, -8.575962009139403 ], [ 126.804281041237005, -8.60386728244913 ], [ 126.811722447333068, -8.620197034565479 ], [ 126.799320102940328, -8.630325615834522 ], [ 126.772241652829962, -8.650169365423892 ], [ 126.751364373566958, -8.679934990707238 ], [ 126.738962030073594, -8.696471449297974 ], [ 126.724906041080885, -8.678281345207949 ], [ 126.706715936091541, -8.664638766465885 ], [ 126.68356489460416, -8.658437594719203 ], [ 126.651112095047097, -8.648722425499557 ], [ 126.627340935935422, -8.660091241117868 ], [ 126.615558710066352, -8.68365569375527 ], [ 126.602536248948695, -8.689856865501952 ], [ 126.585999791257336, -8.680141697181568 ], [ 126.559541456972624, -8.676627698809284 ], [ 126.51882042901957, -8.683242282605249 ], [ 126.491741978009827, -8.670013115912582 ], [ 126.474792108269185, -8.626191501636526 ], [ 126.455361769829778, -8.607174573447821 ], [ 126.448540481358123, -8.633426202157523 ], [ 126.445439895035065, -8.663398533015879 ], [ 126.44936730365805, -8.693577568549983 ], [ 126.432210728342397, -8.70639332409263 ], [ 126.40637251168198, -8.696264743722963 ], [ 126.374333124174314, -8.684895929003915 ], [ 126.331131625723856, -8.675387464459902 ], [ 126.281728957325527, -8.678281345207949 ], [ 126.234393344677073, -8.695851331673623 ], [ 126.180856561181258, -8.694817803798628 ], [ 126.140032180440699, -8.681071873168435 ], [ 126.161012810692569, -8.661744886617214 ], [ 126.172588331886004, -8.645828545650886 ], [ 126.179202915681913, -8.62371103293782 ], [ 126.177342563708294, -8.591051527805746 ], [ 126.174241978284613, -8.560872490473059 ], [ 126.171348098435942, -8.537514744309988 ], [ 126.161012810692569, -8.517877698496989 ], [ 126.141832318306797, -8.502822042902949 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TL-DI", "NAME_1": "Dili" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.489831413729519, -8.568212314589958 ], [ 125.541514519000089, -8.545017184999949 ], [ 125.565928582000083, -8.542087497999944 ], [ 125.591807488000086, -8.549574476999908 ], [ 125.603526238000086, -8.548923434999949 ], [ 125.630869988000086, -8.521579684999949 ], [ 125.649261915000011, -8.529554945999905 ], [ 125.678884311000047, -8.530368747999944 ], [ 125.733164910000028, -8.521579684999949 ], [ 125.828544337679517, -8.490910208979516 ], [ 125.845993279666118, -8.513536878723983 ], [ 125.830283645174063, -8.534414157986987 ], [ 125.810853305835394, -8.548883559029036 ], [ 125.788942498697338, -8.575755303564392 ], [ 125.763672722817887, -8.582834974454499 ], [ 125.761657343011962, -8.583403416134729 ], [ 125.734372186427208, -8.567487074269081 ], [ 125.695924920698531, -8.565006605570375 ], [ 125.650036248873789, -8.587330823858451 ], [ 125.616136509392391, -8.605727633523486 ], [ 125.592158644705592, -8.610481866245152 ], [ 125.560325961873559, -8.62123056423917 ], [ 125.52105187384484, -8.627018323936511 ], [ 125.511853468562663, -8.620248712308239 ], [ 125.497487421207438, -8.609655043045791 ], [ 125.491286248561437, -8.577408949063738 ], [ 125.489831413729519, -8.568212314589958 ] ] ], [ [ [ 125.569346550000091, -8.196384372999944 ], [ 125.580251498000052, -8.17896900799991 ], [ 125.60515384200005, -8.153008721999925 ], [ 125.63249759200005, -8.135023695999905 ], [ 125.650645379000025, -8.142836195999905 ], [ 125.642100457000083, -8.174737237999921 ], [ 125.603526238000086, -8.26881275799991 ], [ 125.596690300000091, -8.299248955999929 ], [ 125.592295769000089, -8.307305596999925 ], [ 125.583018425000091, -8.314385674999926 ], [ 125.573578321000014, -8.317315362999921 ], [ 125.569346550000091, -8.312920830999929 ], [ 125.562754754000025, -8.309177341999941 ], [ 125.53052819100003, -8.299493096999925 ], [ 125.517588738000086, -8.292168877999927 ], [ 125.50709069100003, -8.280368747999944 ], [ 125.503672722000033, -8.27076588299991 ], [ 125.506358269000089, -8.26100025799991 ], [ 125.514170769000089, -8.24773528399993 ], [ 125.52662194100003, -8.235772393999923 ], [ 125.562022332000083, -8.209161065999922 ], [ 125.569346550000091, -8.196384372999944 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TL-LI", "NAME_1": "Liquica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.102942314408963, -8.740267594092641 ], [ 125.106455925000091, -8.68873463299991 ], [ 125.115000847000033, -8.665948174999926 ], [ 125.127940300000091, -8.645603122999944 ], [ 125.144297722000033, -8.631442966999941 ], [ 125.164317254000025, -8.624769789999959 ], [ 125.210134311000047, -8.617771091999941 ], [ 125.229258660000028, -8.607517184999949 ], [ 125.237315300000091, -8.605564059999949 ], [ 125.273936394000089, -8.610935153999947 ], [ 125.285166863000086, -8.607842705999929 ], [ 125.314789259, -8.590427341999941 ], [ 125.381032748000052, -8.571465752999927 ], [ 125.401133660000028, -8.569268487999921 ], [ 125.466970248000052, -8.573663018999923 ], [ 125.487478061000047, -8.569268487999921 ], [ 125.489831413729519, -8.568212314589958 ], [ 125.491286248561437, -8.577408949063738 ], [ 125.497487421207438, -8.609655043045791 ], [ 125.511853468562663, -8.620248712308239 ], [ 125.501208124255527, -8.638593845129833 ], [ 125.494748570090337, -8.649755955173191 ], [ 125.468135207074056, -8.648515719924546 ], [ 125.432375115619038, -8.660711357842899 ], [ 125.405296666407935, -8.681588637105904 ], [ 125.387519972568612, -8.695437920523602 ], [ 125.347419061340588, -8.703086033093939 ], [ 125.299049920817197, -8.712181084689291 ], [ 125.273004998581769, -8.726237073682 ], [ 125.226909621182017, -8.744220473096391 ], [ 125.179212274226984, -8.754452406253563 ], [ 125.172132603336877, -8.756002698965403 ], [ 125.142366978053587, -8.756209404540414 ], [ 125.122523227564898, -8.747734469670036 ], [ 125.103144565968933, -8.74034473951815 ], [ 125.102942314408963, -8.740267594092641 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TL-ER", "NAME_1": "Ermera" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.468135207074056, -8.648515719924546 ], [ 125.494748570090337, -8.649755955173191 ], [ 125.499347772281794, -8.649962659848882 ], [ 125.509476352651518, -8.670013115912582 ], [ 125.497900832357459, -8.700812269970299 ], [ 125.476403436369424, -8.713007907888652 ], [ 125.444157343286747, -8.723963310558361 ], [ 125.441676873688721, -8.736158948476714 ], [ 125.457593214655049, -8.752075291241681 ], [ 125.449945102984088, -8.774192803954747 ], [ 125.433615349968363, -8.794036553544117 ], [ 125.448291456585366, -8.808919365736131 ], [ 125.475163202020099, -8.822148532428855 ], [ 125.479710728267492, -8.840338636518879 ], [ 125.487978956663483, -8.855634860760233 ], [ 125.492733189385149, -8.864523206780575 ], [ 125.489632603062091, -8.889948012290915 ], [ 125.471649205446397, -8.9058643532573 ], [ 125.464827916075365, -8.92302092857301 ], [ 125.452838982832759, -8.936250095265677 ], [ 125.443330520087329, -8.949479261958402 ], [ 125.442710403362412, -8.973663832220097 ], [ 125.413099806810578, -8.98219044393386 ], [ 125.388760206917937, -8.989166762036461 ], [ 125.326335077401836, -8.991440525160101 ], [ 125.315999790557839, -8.967669366048426 ], [ 125.313105909809792, -8.937903740765023 ], [ 125.307731561262472, -8.918059991175653 ], [ 125.279619582377791, -8.861422620457574 ], [ 125.251507602593733, -8.807265720236785 ], [ 125.23931196467538, -8.787008558598131 ], [ 125.223395623709052, -8.779153740452784 ], [ 125.186395297904596, -8.771919040831051 ], [ 125.179212274226984, -8.754452406253563 ], [ 125.226909621182017, -8.744220473096391 ], [ 125.273004998581769, -8.726237073682 ], [ 125.299049920817197, -8.712181084689291 ], [ 125.347419061340588, -8.703086033093939 ], [ 125.387519972568612, -8.695437920523602 ], [ 125.405296666407935, -8.681588637105904 ], [ 125.432375115619038, -8.660711357842899 ], [ 125.468135207074056, -8.648515719924546 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "TL-AL", "NAME_1": "Aileu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.695924920698531, -8.565006605570375 ], [ 125.734372186427208, -8.567487074269081 ], [ 125.761657343011962, -8.583403416134729 ], [ 125.763672722817887, -8.582834974454499 ], [ 125.757523227914589, -8.617096449141798 ], [ 125.771579217806561, -8.649135836649577 ], [ 125.78563520679927, -8.670013115912582 ], [ 125.801138136615691, -8.705566501792646 ], [ 125.805220574869622, -8.753160495960117 ], [ 125.779020623902625, -8.751041761568047 ], [ 125.762277459736879, -8.756416111014744 ], [ 125.744294061221922, -8.774192803954747 ], [ 125.707913853041873, -8.792589612720462 ], [ 125.688276809027457, -8.794604993425708 ], [ 125.691377395350514, -8.770885512056736 ], [ 125.674427524710495, -8.767991632208066 ], [ 125.645075310577113, -8.772539157556082 ], [ 125.632672967983012, -8.78080738685145 ], [ 125.620270623590386, -8.789075616146761 ], [ 125.598773227602351, -8.793829847969107 ], [ 125.592158644705592, -8.812226657634142 ], [ 125.571901483066995, -8.836617933470848 ], [ 125.539241977934921, -8.84860686581419 ], [ 125.492319778235128, -8.855014744035202 ], [ 125.487978956663483, -8.855634860760233 ], [ 125.479710728267492, -8.840338636518879 ], [ 125.475163202020099, -8.822148532428855 ], [ 125.448291456585366, -8.808919365736131 ], [ 125.433615349968363, -8.794036553544117 ], [ 125.449945102984088, -8.774192803954747 ], [ 125.457593214655049, -8.752075291241681 ], [ 125.441676873688721, -8.736158948476714 ], [ 125.444157343286747, -8.723963310558361 ], [ 125.476403436369424, -8.713007907888652 ], [ 125.497900832357459, -8.700812269970299 ], [ 125.509476352651518, -8.670013115912582 ], [ 125.499347772281794, -8.649962659848882 ], [ 125.494748570090337, -8.649755955173191 ], [ 125.501208124255527, -8.638593845129833 ], [ 125.511853468562663, -8.620248712308239 ], [ 125.52105187384484, -8.627018323936511 ], [ 125.560325961873559, -8.62123056423917 ], [ 125.592158644705592, -8.610481866245152 ], [ 125.616136509392391, -8.605727633523486 ], [ 125.650036248873789, -8.587330823858451 ], [ 125.695924920698531, -8.565006605570375 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/uk.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/uk.geojson new file mode 100644 index 000000000000..120eba211c75 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/uk.geojson @@ -0,0 +1,236 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "GB-DRY", "NAME_1": "Derry" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.415755226022895, 54.944372422149513 ], [ -7.408664510999927, 54.951117248000074 ], [ -7.413108682999848, 54.984965312000057 ], [ -7.401119750999953, 54.994835511000062 ], [ -7.405253865999896, 55.003568827000024 ], [ -7.355024372999935, 55.040930888000062 ], [ -7.291152302999905, 55.046615296000098 ], [ -7.266502644999889, 55.065167135000067 ], [ -7.247100389999957, 55.069322007000039 ], [ -7.256743943999936, 55.050685940000051 ], [ -7.195423956999946, 55.05805084800005 ], [ -7.149887797207094, 55.048656634593186 ], [ -7.17418189118132, 55.031576647544227 ], [ -7.153097907242625, 55.017985744746284 ], [ -7.131135423261185, 54.983285021386621 ], [ -7.086952073779173, 54.983517565383295 ], [ -7.097804123661376, 54.964655666825536 ], [ -7.093359951100865, 54.94103953734475 ], [ -7.083360561940367, 54.924399725966566 ], [ -7.053104010241896, 54.911325588904788 ], [ -7.045300868939933, 54.888277900204912 ], [ -7.033932054220941, 54.880784817265464 ], [ -7.040598313961027, 54.868563340925391 ], [ -7.039461432399207, 54.838823554063765 ], [ -7.010290086318435, 54.815517482945438 ], [ -7.069485439201685, 54.805750636882351 ], [ -7.109508836063924, 54.813837999024429 ], [ -7.162244634782098, 54.851045030403782 ], [ -7.205859544382463, 54.847996120924222 ], [ -7.195550095960186, 54.856600247003769 ], [ -7.20890845386208, 54.864661769824806 ], [ -7.20950273306471, 54.88357534432663 ], [ -7.276397873563042, 54.887141017743772 ], [ -7.279188402422847, 54.893833115905522 ], [ -7.262238531782828, 54.913857734446879 ], [ -7.317558152886477, 54.922436022104705 ], [ -7.373911301865121, 54.917991847745554 ], [ -7.391687994805125, 54.936905423146754 ], [ -7.415755226022895, 54.944372422149513 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-STB", "NAME_1": "Strabane" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.556149047999895, 54.738365378000069 ], [ -7.543074910999849, 54.741672669000067 ], [ -7.551704874999899, 54.754695130000087 ], [ -7.543384968999931, 54.793090719000034 ], [ -7.455069945999924, 54.863008932000028 ], [ -7.444734659999909, 54.88445465100007 ], [ -7.445251423999878, 54.932151998 ], [ -7.415755226022895, 54.944372422149513 ], [ -7.391687994805125, 54.936905423146754 ], [ -7.373911301865121, 54.917991847745554 ], [ -7.317558152886477, 54.922436022104705 ], [ -7.262238531782828, 54.913857734446879 ], [ -7.279188402422847, 54.893833115905522 ], [ -7.276397873563042, 54.887141017743772 ], [ -7.20950273306471, 54.88357534432663 ], [ -7.20890845386208, 54.864661769824806 ], [ -7.195550095960186, 54.856600247003769 ], [ -7.205859544382463, 54.847996120924222 ], [ -7.162244634782098, 54.851045030403782 ], [ -7.109508836063924, 54.813837999024429 ], [ -7.069485439201685, 54.805750636882351 ], [ -6.991970791019185, 54.825232652165141 ], [ -6.942258063358963, 54.827713120863791 ], [ -6.917479213894637, 54.815827542207273 ], [ -6.918926153818973, 54.801616523583675 ], [ -6.896446905900007, 54.782444565764081 ], [ -6.929752367078095, 54.767716783202957 ], [ -7.000058153161262, 54.777173570004209 ], [ -7.109741380060655, 54.748854885544517 ], [ -7.205575324441668, 54.752730618223438 ], [ -7.268310513219603, 54.728830267902538 ], [ -7.308075526764185, 54.731620794963703 ], [ -7.329727952383109, 54.709115709522337 ], [ -7.390292730824854, 54.692424221300769 ], [ -7.439488695446926, 54.655785630702269 ], [ -7.441995001667976, 54.643538315940475 ], [ -7.465326911207967, 54.641626288022735 ], [ -7.482535163367118, 54.651031398879923 ], [ -7.543384161749657, 54.637156277040503 ], [ -7.559739753187046, 54.642143052859581 ], [ -7.611984626389415, 54.624107978400446 ], [ -7.653093227970089, 54.625503242380717 ], [ -7.693375007250779, 54.600750231338054 ], [ -7.707951474999902, 54.604763303000041 ], [ -7.710558227999854, 54.624263815000049 ], [ -7.753553019999941, 54.614496969000115 ], [ -7.814996296999936, 54.639456686000088 ], [ -7.846415567999969, 54.631446838000031 ], [ -7.864347290999945, 54.64906850200002 ], [ -7.906618611999932, 54.661315816000027 ], [ -7.914835164999943, 54.671651103000031 ], [ -7.907135375999871, 54.686688945000029 ], [ -7.929666300999884, 54.696714173000046 ], [ -7.880108601999922, 54.71102854400003 ], [ -7.845898803999916, 54.731027323000077 ], [ -7.770502888999943, 54.706015931000067 ], [ -7.736603149999922, 54.707462871000061 ], [ -7.649683390999911, 54.744876608000126 ], [ -7.556149047999895, 54.738365378000069 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-FER", "NAME_1": "Fermanagh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.887136596999937, 54.532124736000029 ], [ -7.848844360999919, 54.54090972900012 ], [ -7.749263875999873, 54.596151836000033 ], [ -7.707951474999902, 54.604763303000041 ], [ -7.670017259289068, 54.57855520335994 ], [ -7.638675502872161, 54.57966624650004 ], [ -7.597515225347365, 54.561321112779126 ], [ -7.548913539927923, 54.565222682980391 ], [ -7.53366899342933, 54.546334946900231 ], [ -7.561135016267997, 54.542975979058156 ], [ -7.578653326789606, 54.505510566159671 ], [ -7.568628099207444, 54.495795396939968 ], [ -7.576121182146835, 54.483548082178231 ], [ -7.559739753187046, 54.456314602436919 ], [ -7.559222988350257, 54.429106961117327 ], [ -7.508063319866324, 54.404948229277352 ], [ -7.420575120045783, 54.436057440798209 ], [ -7.364454515063812, 54.430218004257483 ], [ -7.359183519303997, 54.417453925558164 ], [ -7.329727952383109, 54.403294582878686 ], [ -7.338667975246892, 54.383554186076822 ], [ -7.33223425860416, 54.371048488896633 ], [ -7.277793138442576, 54.363297024438111 ], [ -7.253091803344034, 54.328260403394893 ], [ -7.231697760143504, 54.321904202017265 ], [ -7.190304937722715, 54.33689036699684 ], [ -7.193948933999877, 54.329966532000086 ], [ -7.184647175999942, 54.316634013000069 ], [ -7.199168253999915, 54.303456523000094 ], [ -7.211467244999938, 54.304179993000091 ], [ -7.209038452999891, 54.293431296000065 ], [ -7.175500446999877, 54.283664449000113 ], [ -7.181494913999899, 54.269763489000056 ], [ -7.145889851999925, 54.25209014900004 ], [ -7.159739135999899, 54.240669657000026 ], [ -7.153331257999952, 54.224236553000068 ], [ -7.249087686999871, 54.197416484000073 ], [ -7.261128295999924, 54.180880025000093 ], [ -7.245780395999873, 54.16697906500012 ], [ -7.265365762999892, 54.161139629000033 ], [ -7.263505411999887, 54.14098582000004 ], [ -7.280041870999867, 54.126154683000024 ], [ -7.297353474999881, 54.125896302000044 ], [ -7.295544799999988, 54.165118714000116 ], [ -7.325982218999854, 54.154576722000044 ], [ -7.333165242999911, 54.14274281900002 ], [ -7.310324259999902, 54.114682516000087 ], [ -7.394660197999912, 54.121917217000075 ], [ -7.403961954999943, 54.135043030000034 ], [ -7.425769408999884, 54.136955058000055 ], [ -7.414658976999959, 54.145688376000024 ], [ -7.439618692999943, 54.146928610000074 ], [ -7.502302204999864, 54.125121155000031 ], [ -7.609014037999941, 54.139900615000059 ], [ -7.620796264999854, 54.144964905000037 ], [ -7.632681843999904, 54.168529358000043 ], [ -7.704770466999889, 54.200362041000076 ], [ -7.782078409999883, 54.200000305000074 ], [ -7.856440796999891, 54.211420797000088 ], [ -7.869669961999875, 54.226872050000097 ], [ -7.880263631999867, 54.287023417000043 ], [ -7.950801961999929, 54.300872702000092 ], [ -7.981032673999948, 54.326555889000062 ], [ -8.002194172999879, 54.35792348299999 ], [ -8.056480265999937, 54.365881654000063 ], [ -8.146345580999963, 54.430735576000089 ], [ -8.173837442999911, 54.461741435000093 ], [ -8.072448282999886, 54.48706288699999 ], [ -8.002194172999879, 54.543441875 ], [ -7.887136596999937, 54.532124736000029 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-DGN", "NAME_1": "Dungannon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.870014702316666, 54.326000603145303 ], [ -6.885957397999903, 54.345624492000056 ], [ -6.905956176999922, 54.349035137000087 ], [ -6.922027547999903, 54.372702942 ], [ -7.01783565299985, 54.413165588000098 ], [ -7.049254923999882, 54.411511943000065 ], [ -7.078503783999906, 54.394717103000076 ], [ -7.127027953999914, 54.349758606000066 ], [ -7.15989416499994, 54.335185852 ], [ -7.190304937722715, 54.33689036699684 ], [ -7.231697760143504, 54.321904202017265 ], [ -7.253091803344034, 54.328260403394893 ], [ -7.277793138442576, 54.363297024438111 ], [ -7.33223425860416, 54.371048488896633 ], [ -7.338667975246892, 54.383554186076822 ], [ -7.329727952383109, 54.403294582878686 ], [ -7.359183519303997, 54.417453925558164 ], [ -7.364454515063812, 54.430218004257483 ], [ -7.23087093784352, 54.448253078716562 ], [ -7.216711595163986, 54.459389350338199 ], [ -7.170021937662284, 54.470499783538173 ], [ -7.112790290439534, 54.471042384998043 ], [ -7.0905694240397, 54.493573309760393 ], [ -7.037807786000542, 54.503004259039301 ], [ -7.026697353699944, 54.51938568799909 ], [ -7.001685960238888, 54.521607774279346 ], [ -6.97279883499823, 54.538015042560119 ], [ -6.966701016039053, 54.548246974818028 ], [ -6.9753051421186, 54.558013820881115 ], [ -6.961430020279238, 54.57661733702048 ], [ -6.896136846638171, 54.564395859781087 ], [ -6.823919032637264, 54.575790513821119 ], [ -6.766687383615874, 54.56385325832116 ], [ -6.738652919996241, 54.572173163560649 ], [ -6.704210578155653, 54.547988593298896 ], [ -6.68529700365383, 54.560494290479085 ], [ -6.647805752333625, 54.556334336960049 ], [ -6.637806362273807, 54.565765286238957 ], [ -6.527813076112579, 54.53977203994765 ], [ -6.583623622732034, 54.508275254799116 ], [ -6.565304328332104, 54.493573309760393 ], [ -6.554710659069656, 54.463342597382962 ], [ -6.613079188753545, 54.449389960278438 ], [ -6.658089362334238, 54.464117743738882 ], [ -6.698939582395838, 54.444377346037641 ], [ -6.695580613654386, 54.431354884919983 ], [ -6.717258876795711, 54.403811346816155 ], [ -6.79588456901763, 54.413009752098333 ], [ -6.810302293216239, 54.401072495699111 ], [ -6.805599738237333, 54.38019521733537 ], [ -6.832807379556925, 54.35885285097828 ], [ -6.83001685159644, 54.341334540456671 ], [ -6.870014702316666, 54.326000603145303 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-ARM", "NAME_1": "Armagh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.732840128999896, 54.183567200000127 ], [ -6.78782385299985, 54.202997539000094 ], [ -6.823945678999848, 54.232349752000076 ], [ -6.837743285999892, 54.260513408000023 ], [ -6.882185017999888, 54.27725657200007 ], [ -6.856656860999948, 54.292811178000093 ], [ -6.870014702316666, 54.326000603145303 ], [ -6.83001685159644, 54.341334540456671 ], [ -6.832807379556925, 54.35885285097828 ], [ -6.805599738237333, 54.38019521733537 ], [ -6.810302293216239, 54.401072495699111 ], [ -6.79588456901763, 54.413009752098333 ], [ -6.717258876795711, 54.403811346816155 ], [ -6.695580613654386, 54.431354884919983 ], [ -6.698939582395838, 54.444377346037641 ], [ -6.658089362334238, 54.464117743738882 ], [ -6.613079188753545, 54.449389960278438 ], [ -6.554710659069656, 54.463342597382962 ], [ -6.51029476559097, 54.418280747858205 ], [ -6.484482388251649, 54.416885483877934 ], [ -6.484224005833198, 54.395233059158329 ], [ -6.462235684329357, 54.378283190316949 ], [ -6.435028042110446, 54.37714630785581 ], [ -6.405288255248763, 54.393837796077378 ], [ -6.403066168968508, 54.379368395035385 ], [ -6.374773322031217, 54.340766100575081 ], [ -6.377822230611457, 54.293275458295739 ], [ -6.360019701048373, 54.276894029335949 ], [ -6.373946498831856, 54.267178860116246 ], [ -6.400869920210653, 54.276325589454359 ], [ -6.445027432170264, 54.268264064834682 ], [ -6.463398403413578, 54.255758369453133 ], [ -6.485567592970028, 54.253562119795959 ], [ -6.494223394993696, 54.23493276613425 ], [ -6.511974250411356, 54.225786037695457 ], [ -6.537786627750677, 54.234674383715799 ], [ -6.576957362991891, 54.216897690775795 ], [ -6.605301885873359, 54.218292954756009 ], [ -6.638090583113922, 54.198552557954145 ], [ -6.648448442999893, 54.173664970000047 ], [ -6.694651244999932, 54.197984925000029 ], [ -6.717233845999942, 54.195142721000067 ], [ -6.732840128999896, 54.183567200000127 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NYM", "NAME_1": "Newry and Mourne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.616464803999889, 54.037271221000069 ], [ -6.672533732999909, 54.068432109000028 ], [ -6.657082478999911, 54.091944886000121 ], [ -6.655790567999873, 54.103313700000015 ], [ -6.666435913999862, 54.114785869000045 ], [ -6.643956664999848, 54.13183909100006 ], [ -6.634551554999888, 54.15013254800003 ], [ -6.648448442999893, 54.173664970000047 ], [ -6.646875576346758, 54.187648831228557 ], [ -6.605301885873359, 54.218292954756009 ], [ -6.576957362991891, 54.216897690775795 ], [ -6.537786627750677, 54.234674383715799 ], [ -6.511974250411356, 54.225786037695457 ], [ -6.494223394993696, 54.23493276613425 ], [ -6.485567592970028, 54.253562119795959 ], [ -6.463398403413578, 54.255758369453133 ], [ -6.445027432170264, 54.268264064834682 ], [ -6.400869920210653, 54.276325589454359 ], [ -6.373946498831856, 54.267178860116246 ], [ -6.360019701048373, 54.276894029335949 ], [ -6.343896653607658, 54.265215156254442 ], [ -6.281988288029083, 54.265215156254442 ], [ -6.19227800102891, 54.246043199334167 ], [ -6.168636034025781, 54.251055813574908 ], [ -6.115021735264861, 54.242167467554566 ], [ -6.073654751265792, 54.252451077555179 ], [ -6.045336065906724, 54.246611640115077 ], [ -6.078383144666418, 54.233847561415814 ], [ -6.06280269958495, 54.230746975092813 ], [ -6.055309618444142, 54.201601467433761 ], [ -6.032236091322545, 54.171060695794438 ], [ -5.966141933803215, 54.193539943713404 ], [ -5.92500749380082, 54.178837999574 ], [ -5.866037563999953, 54.184149481000077 ], [ -5.874623175999943, 54.140529690000051 ], [ -5.893788214999915, 54.104681708000044 ], [ -6.040516730999911, 54.036444403000075 ], [ -6.095448370999918, 54.036363023000035 ], [ -6.112904425999943, 54.050116278000075 ], [ -6.084950324999909, 54.05695221600007 ], [ -6.174305792999917, 54.074286200000074 ], [ -6.18586178299995, 54.092678127000056 ], [ -6.263661261999914, 54.104681708000044 ], [ -6.269886847999942, 54.097886460000041 ], [ -6.284650430999932, 54.105225728000036 ], [ -6.327128458999965, 54.097887675000052 ], [ -6.354827025999896, 54.110651754000017 ], [ -6.368107869999903, 54.097319234000096 ], [ -6.366919310999975, 54.07509836900006 ], [ -6.377512980999938, 54.063264466000035 ], [ -6.433891967999955, 54.055306295000079 ], [ -6.450893513999887, 54.068432109000028 ], [ -6.478540405999894, 54.067708639000031 ], [ -6.564013224999911, 54.048950094000034 ], [ -6.59507076, 54.052412415000092 ], [ -6.616464803999889, 54.037271221000069 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-FLN", "NAME_1": "Flintshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.084543423999946, 53.258577179000042 ], [ -3.019759276999935, 53.246699321000051 ], [ -2.955551309999919, 53.215512594000074 ], [ -2.922426716999951, 53.19347259500006 ], [ -2.911445474999937, 53.17471405100008 ], [ -2.956797464999909, 53.144603791000065 ], [ -2.991749843680338, 53.138927314044281 ], [ -3.122749600313796, 53.066373603259137 ], [ -3.191453415942419, 53.147970688796249 ], [ -3.271319341614344, 53.1570140653468 ], [ -3.340875819763255, 53.218819078137926 ], [ -3.347335373928388, 53.230446275275369 ], [ -3.340875819763255, 53.272924303313914 ], [ -3.349919196313863, 53.284551500451357 ], [ -3.382113612553212, 53.297418931938125 ], [ -3.3756798968098, 53.332197171462269 ], [ -3.360461948346862, 53.351146212651599 ], [ -3.33031165299991, 53.351792710000041 ], [ -3.122222459999932, 53.262274481000077 ], [ -3.087757941999939, 53.23468659100007 ], [ -3.084543423999946, 53.258577179000042 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CHW", "NAME_1": "Cheshire West and Chester" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.956797464999909, 53.144603791000065 ], [ -2.912556517999917, 53.170140687000071 ], [ -2.917982543999926, 53.189260966000063 ], [ -3.019759276999935, 53.246699321000051 ], [ -3.084543423999946, 53.258577179000042 ], [ -3.084543423999946, 53.275458075000074 ], [ -3.095943777883065, 53.287143450010205 ], [ -3.066680671275947, 53.305480454759163 ], [ -3.025287847955838, 53.293543199259204 ], [ -2.974515753998844, 53.296592108738821 ], [ -2.945034348656293, 53.289357408217768 ], [ -2.926413998695671, 53.304814303174567 ], [ -2.88149980399993, 53.288397528000075 ], [ -2.850575324999909, 53.289129950000074 ], [ -2.837554490999935, 53.302801825000074 ], [ -2.735309225240542, 53.291388183517824 ], [ -2.627917891797267, 53.294214271571377 ], [ -2.509040290377129, 53.330853583426119 ], [ -2.47530915399426, 53.2829099202566 ], [ -2.421613486373303, 53.257475131372189 ], [ -2.410309135957846, 53.232040341588458 ], [ -2.44987436421053, 53.181170762020997 ], [ -2.486613504409718, 53.186822937228726 ], [ -2.489439592463214, 53.147257708976042 ], [ -2.653352680681678, 53.090735954200909 ], [ -2.667483120049951, 53.048344638793992 ], [ -2.619439628536043, 53.02856202421799 ], [ -2.622805954631133, 52.985758368753693 ], [ -2.727731499009508, 52.966540101244675 ], [ -2.818350382999938, 52.989479879000044 ], [ -2.855118164999908, 53.022862854000039 ], [ -2.870956989999911, 53.066271057000051 ], [ -2.897363647999953, 53.102237854000066 ], [ -2.956797464999909, 53.144603791000065 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WRX", "NAME_1": "Wrexham" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.956797464999909, 53.144603791000065 ], [ -2.897363647999953, 53.102237854000066 ], [ -2.870956989999911, 53.066271057000051 ], [ -2.855118164999908, 53.022862854000039 ], [ -2.818350382999938, 52.989479879000044 ], [ -2.727296508999927, 52.966380514000036 ], [ -2.716237751999927, 52.941782532000047 ], [ -2.717684691999921, 52.921602885000084 ], [ -2.779489705999936, 52.900570577000053 ], [ -2.853154459999928, 52.939095357000042 ], [ -2.925940714999911, 52.933540142000084 ], [ -2.962966878999907, 52.951962790000039 ], [ -2.992810017999943, 52.952970480000033 ], [ -3.080349893999937, 52.917623800000058 ], [ -3.099702717999946, 52.897469992000083 ], [ -3.126858683999956, 52.884602559000086 ], [ -3.121897745999945, 52.854914449000034 ], [ -3.152231810999922, 52.829825542000037 ], [ -3.140429806999919, 52.796340511000039 ], [ -3.190884976060829, 52.793263657691625 ], [ -3.242199673276332, 52.779104315911411 ], [ -3.268373785821552, 52.785512193233103 ], [ -3.265299037920272, 52.797449448733062 ], [ -3.29974137976086, 52.826905016553269 ], [ -3.371985033082808, 52.849952704353768 ], [ -3.374465500882195, 52.867987778812903 ], [ -3.390743577054423, 52.867367662087929 ], [ -3.373096076222964, 52.889020086807534 ], [ -3.311265225010118, 52.932841701982909 ], [ -3.200470954071307, 52.937983507432875 ], [ -3.094818487683085, 52.963744207928812 ], [ -3.141198085922952, 52.99723053715951 ], [ -3.132180548693384, 53.059087225894757 ], [ -3.103836024912653, 53.080998033032756 ], [ -2.991749843680338, 53.138927314044281 ], [ -2.956797464999909, 53.144603791000065 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SHR", "NAME_1": "Shropshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.140429806999919, 52.796340511000039 ], [ -3.152231810999922, 52.829825542000037 ], [ -3.121897745999945, 52.854914449000034 ], [ -3.126858683999956, 52.884602559000086 ], [ -3.099702717999946, 52.897469992000083 ], [ -3.080349893999937, 52.917623800000058 ], [ -2.992810017999943, 52.952970480000033 ], [ -2.962966878999907, 52.951962790000039 ], [ -2.925940714999911, 52.933540142000084 ], [ -2.853154459999928, 52.939095357000042 ], [ -2.779489705999936, 52.900570577000053 ], [ -2.717684691999921, 52.921602885000084 ], [ -2.716237751999927, 52.941782532000047 ], [ -2.727731499009508, 52.966540101244675 ], [ -2.622805954631133, 52.985758368753693 ], [ -2.589500495251684, 52.976870021834031 ], [ -2.5778216212708, 52.953563950715704 ], [ -2.558107061991336, 52.956302801832805 ], [ -2.527230393567834, 52.947156074293389 ], [ -2.512812669369225, 52.961625475335381 ], [ -2.449457362966939, 52.956871243513035 ], [ -2.430853847726894, 52.964932766334073 ], [ -2.423619147205898, 52.978575344176761 ], [ -2.37085751006606, 52.989117337495088 ], [ -2.363932867907522, 52.967723294294558 ], [ -2.375301682626571, 52.949662381413759 ], [ -2.395042080327755, 52.949378160573644 ], [ -2.419174973746067, 52.93635569945593 ], [ -2.450310023688644, 52.896616523433806 ], [ -2.434471197987421, 52.867987778812903 ], [ -2.365870734246982, 52.884110826253618 ], [ -2.378092209687736, 52.838015448853866 ], [ -2.396592373039596, 52.821582343050693 ], [ -2.588544480843098, 52.767580471561473 ], [ -2.646189541014508, 52.758537095910242 ], [ -2.663165249176927, 52.742724106832043 ], [ -2.640556810048736, 52.721226711743327 ], [ -2.460774501741867, 52.617202053332051 ], [ -2.424575160715108, 52.607021796118943 ], [ -2.323961146989348, 52.747736721072783 ], [ -2.305590175746033, 52.733835760811701 ], [ -2.310292730724939, 52.700504462111212 ], [ -2.304763353445992, 52.686603501850129 ], [ -2.243655971745682, 52.676061510330385 ], [ -2.228359748403648, 52.658827419749571 ], [ -2.226964484423434, 52.636632391771457 ], [ -2.236963873583932, 52.612447822409024 ], [ -2.266419439605443, 52.603559475489362 ], [ -2.303368088566458, 52.608830471249235 ], [ -2.311429613186135, 52.599115302029531 ], [ -2.310576950665734, 52.591312160727625 ], [ -2.269209966666665, 52.577462877309927 ], [ -2.251149053785809, 52.562425035486967 ], [ -2.267246262804804, 52.548265692807433 ], [ -2.25254431776608, 52.534364732546351 ], [ -2.25502478736405, 52.518293361949077 ], [ -2.284196133444823, 52.504960842468904 ], [ -2.298355475225037, 52.483825181686768 ], [ -2.283369310245462, 52.454679674027716 ], [ -2.286159837306684, 52.444576931180393 ], [ -2.304763353445992, 52.430753486184415 ], [ -2.339515753649096, 52.434370836444941 ], [ -2.350522834061564, 52.423725491238429 ], [ -2.319516974428836, 52.384606431941279 ], [ -2.390597906867924, 52.383572903166908 ], [ -2.410286627725725, 52.363264065584133 ], [ -2.469766201449033, 52.357166245725637 ], [ -2.474210374009544, 52.35049998598555 ], [ -2.467828335109573, 52.337167467404697 ], [ -2.474468757327315, 52.327142238923159 ], [ -2.525318365650037, 52.339673774525068 ], [ -2.546970791269018, 52.33024282524616 ], [ -2.555600754870966, 52.308538722783794 ], [ -2.607793952129214, 52.307996121323924 ], [ -2.616423915731161, 52.324093329443599 ], [ -2.652519903970415, 52.336056424264541 ], [ -2.665335658613742, 52.32967438446525 ], [ -2.675050827833445, 52.306316637402858 ], [ -2.69502377043068, 52.303551947864094 ], [ -2.746105922750132, 52.324403387806058 ], [ -2.727786628350202, 52.341043199184242 ], [ -2.731972419391639, 52.351326809184854 ], [ -2.781400926211802, 52.352722073165125 ], [ -2.803389247715643, 52.380213935324832 ], [ -2.838916795173986, 52.391324368524749 ], [ -2.871963873933623, 52.375201321084091 ], [ -2.902246263154552, 52.380782376105742 ], [ -2.89503740105522, 52.362178859966377 ], [ -2.932787034793819, 52.344660550344088 ], [ -3.070557210999937, 52.346573385000056 ], [ -3.199309041999925, 52.412512513000081 ], [ -3.211504679999962, 52.426155091000055 ], [ -3.21465694199992, 52.446153870000046 ], [ -3.19463232399994, 52.466927795000061 ], [ -3.117996174999917, 52.491344910000066 ], [ -3.030843871999934, 52.496900126000071 ], [ -2.97637691299991, 52.538060405000067 ], [ -2.980459350999922, 52.549816793000048 ], [ -3.015237589999913, 52.568187765000062 ], [ -3.071125650999932, 52.543331401000046 ], [ -3.086551065999913, 52.529068706000032 ], [ -3.11068396, 52.526949972000068 ], [ -3.115386514999955, 52.531781719000037 ], [ -3.108358519999911, 52.544804179000039 ], [ -3.124662434999948, 52.576688538000042 ], [ -3.080608276999953, 52.60105397600006 ], [ -3.06293493599992, 52.637511699000072 ], [ -3.035753133999947, 52.649397278000038 ], [ -3.027898314999959, 52.686914368000032 ], [ -3.013273885999922, 52.708360088000063 ], [ -2.973689737999962, 52.716395772000055 ], [ -2.959943806999945, 52.731097717000068 ], [ -2.999941364999927, 52.756987610000067 ], [ -3.057508910999957, 52.766211854000062 ], [ -3.077559366999935, 52.781792298000084 ], [ -3.113061075999951, 52.784582825000086 ], [ -3.140429806999919, 52.796340511000039 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-POW", "NAME_1": "Powys" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.140429806999919, 52.796340511000039 ], [ -3.113061075999951, 52.784582825000086 ], [ -3.077559366999935, 52.781792298000084 ], [ -3.057508910999957, 52.766211854000062 ], [ -2.999941364999927, 52.756987610000067 ], [ -2.959943806999945, 52.731097717000068 ], [ -2.973689737999962, 52.716395772000055 ], [ -3.013273885999922, 52.708360088000063 ], [ -3.027898314999959, 52.686914368000032 ], [ -3.035753133999947, 52.649397278000038 ], [ -3.06293493599992, 52.637511699000072 ], [ -3.080608276999953, 52.60105397600006 ], [ -3.124662434999948, 52.576688538000042 ], [ -3.108358519999911, 52.544804179000039 ], [ -3.115386514999955, 52.531781719000037 ], [ -3.11068396, 52.526949972000068 ], [ -3.086551065999913, 52.529068706000032 ], [ -3.071125650999932, 52.543331401000046 ], [ -3.015237589999913, 52.568187765000062 ], [ -2.980459350999922, 52.549816793000048 ], [ -2.97637691299991, 52.538060405000067 ], [ -3.030843871999934, 52.496900126000071 ], [ -3.117996174999917, 52.491344910000066 ], [ -3.19463232399994, 52.466927795000061 ], [ -3.215122029999918, 52.442226461000075 ], [ -3.199309041999925, 52.412512513000081 ], [ -3.070557210999937, 52.346573385000056 ], [ -2.956662352999956, 52.341147360000036 ], [ -2.957334146999926, 52.327944031000072 ], [ -2.991078857999923, 52.309650574000045 ], [ -2.999476277999918, 52.296214701000054 ], [ -2.993275105999942, 52.279626567000037 ], [ -2.95637813299993, 52.264097799000069 ], [ -3.011904459999926, 52.254847717000075 ], [ -3.050997680999956, 52.232833557000049 ], [ -3.107660888999931, 52.172708028000045 ], [ -3.099418496999931, 52.157540995000033 ], [ -3.077662719999921, 52.15580983600006 ], [ -3.078231160999906, 52.147283224000034 ], [ -3.124662434999948, 52.128963929000065 ], [ -3.100813760999927, 52.111962382000058 ], [ -3.113216104999935, 52.101575419000085 ], [ -3.123086303999912, 52.073256735000086 ], [ -3.087558755999908, 52.051733500000068 ], [ -3.079884805999939, 52.016800232000037 ], [ -3.051249642257176, 51.983502938509787 ], [ -3.061383836195091, 51.968275255198819 ], [ -3.063915980837862, 51.938277085918742 ], [ -3.03497717875382, 51.88603221271643 ], [ -3.064458584096371, 51.867428697476385 ], [ -3.067016567160863, 51.85383779647708 ], [ -3.088668992779787, 51.829110622956875 ], [ -3.162230393917582, 51.809654446095806 ], [ -3.274187383940614, 51.814667060336546 ], [ -3.290620489743787, 51.806605535716869 ], [ -3.288992681766842, 51.793273017136016 ], [ -3.347800461921793, 51.788828844575505 ], [ -3.356973028782249, 51.805468655054369 ], [ -3.385860154922227, 51.81161814995761 ], [ -3.405006273420781, 51.827715358976604 ], [ -3.426426154143712, 51.813840237137185 ], [ -3.464485846244827, 51.821074938557558 ], [ -3.478645188924361, 51.79022410675708 ], [ -3.526394211823401, 51.780508938436753 ], [ -3.525309007105022, 51.77079376921705 ], [ -3.546961431824627, 51.773584296278216 ], [ -3.583729213632296, 51.751260077990196 ], [ -3.591687383665828, 51.762448025555898 ], [ -3.648350591906308, 51.779372056874877 ], [ -3.695582851767199, 51.768003242155885 ], [ -3.723074713926906, 51.772990017075585 ], [ -3.733099940609804, 51.760768540735512 ], [ -3.763382330729996, 51.757719632155272 ], [ -3.799995082906776, 51.7852631702591 ], [ -3.766922165725362, 51.817715968916787 ], [ -3.752271898429399, 51.847171535837674 ], [ -3.721679449946691, 51.865775051077719 ], [ -3.711292487158573, 51.881794744831609 ], [ -3.716692674127614, 51.903292140819644 ], [ -3.709897223178302, 51.932334295691192 ], [ -3.686694504847537, 51.948250637556839 ], [ -3.697804938047454, 51.971324163779116 ], [ -3.695582851767199, 51.988816636778324 ], [ -3.643648036927345, 52.03134634076099 ], [ -3.641994391428057, 52.041888333179998 ], [ -3.658918422747035, 52.054910794297712 ], [ -3.667522548826582, 52.075219631880486 ], [ -3.710569016746717, 52.086588447498855 ], [ -3.706693284967116, 52.114648749540152 ], [ -3.755785895003044, 52.124622301178249 ], [ -3.746690843407691, 52.143845934042588 ], [ -3.752530279948473, 52.178520819879907 ], [ -3.741574876379445, 52.236140042528916 ], [ -3.733771735077539, 52.242082830957884 ], [ -3.739481981308415, 52.246888740522934 ], [ -3.73475358700847, 52.257999172823531 ], [ -3.701138068367186, 52.273837999424131 ], [ -3.71700273338945, 52.286602078123394 ], [ -3.71586585092831, 52.298565172045016 ], [ -3.731678840006452, 52.311045029904164 ], [ -3.731162075169664, 52.318822332784407 ], [ -3.703644374588237, 52.334686997806671 ], [ -3.66225155306671, 52.339389552785633 ], [ -3.651967943066154, 52.347451077405253 ], [ -3.670313075887748, 52.363264065584133 ], [ -3.690570238425778, 52.364090887884117 ], [ -3.69447180772778, 52.382436022504407 ], [ -3.72005164196969, 52.420211493765407 ], [ -3.760850186087225, 52.437419745025181 ], [ -3.757801275708289, 52.458555405807317 ], [ -3.736975674188045, 52.467185370308584 ], [ -3.724728359426251, 52.498837185088007 ], [ -3.745321417849141, 52.501059272267582 ], [ -3.766689621728688, 52.486615708747934 ], [ -3.813120896811938, 52.481344712988061 ], [ -3.833946499231558, 52.504134020168863 ], [ -3.829192267409212, 52.532711087047005 ], [ -3.839475877409825, 52.548575751169949 ], [ -3.867820400291237, 52.556068834109396 ], [ -3.927455002746171, 52.553174954260726 ], [ -3.911952073829127, 52.568006090508618 ], [ -3.875571864749759, 52.576067613329656 ], [ -3.83782223101116, 52.599115302029531 ], [ -3.827822841850661, 52.626607164189238 ], [ -3.833636439969723, 52.640766506868772 ], [ -3.796972011848879, 52.674666246350171 ], [ -3.763072272367481, 52.669395249690979 ], [ -3.698605922825095, 52.676061510330385 ], [ -3.667755092823256, 52.688825589029705 ], [ -3.601454229728915, 52.695491847870471 ], [ -3.571688605344889, 52.73052846891369 ], [ -3.580292731424436, 52.763549710150983 ], [ -3.597216762743415, 52.784375312570603 ], [ -3.587243211105317, 52.811608792311915 ], [ -3.527246873444483, 52.83326121703152 ], [ -3.490840826842714, 52.834656481011734 ], [ -3.470015225322413, 52.861941636697168 ], [ -3.436167160885759, 52.856618964093911 ], [ -3.378651291923575, 52.870209865992479 ], [ -3.371985033082808, 52.849952704353768 ], [ -3.288915168300377, 52.819670315132896 ], [ -3.265299037920272, 52.797449448733062 ], [ -3.268373785821552, 52.785512193233103 ], [ -3.261707526081466, 52.780499578992362 ], [ -3.140429806999919, 52.796340511000039 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-HEF", "NAME_1": "Herefordshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.051249642257176, 51.983502938509787 ], [ -3.079884805999939, 52.016800232000037 ], [ -3.087558755999908, 52.051733500000068 ], [ -3.123086303999912, 52.073256735000086 ], [ -3.113216104999935, 52.101575419000085 ], [ -3.100813760999927, 52.111962382000058 ], [ -3.124662434999948, 52.128963929000065 ], [ -3.078231160999906, 52.147283224000034 ], [ -3.077662719999921, 52.15580983600006 ], [ -3.099418496999931, 52.157540995000033 ], [ -3.107660888999931, 52.172708028000045 ], [ -3.050997680999956, 52.232833557000049 ], [ -3.011904459999926, 52.254847717000075 ], [ -2.95637813299993, 52.264097799000069 ], [ -2.993275105999942, 52.279626567000037 ], [ -2.999476277999918, 52.296214701000054 ], [ -2.991078857999923, 52.309650574000045 ], [ -2.957334146999926, 52.327944031000072 ], [ -2.957414119166287, 52.341183175063463 ], [ -2.89503740105522, 52.362178859966377 ], [ -2.902246263154552, 52.380782376105742 ], [ -2.871963873933623, 52.375201321084091 ], [ -2.838916795173986, 52.391324368524749 ], [ -2.803389247715643, 52.380213935324832 ], [ -2.781400926211802, 52.352722073165125 ], [ -2.731972419391639, 52.351326809184854 ], [ -2.727786628350202, 52.341043199184242 ], [ -2.746105922750132, 52.324403387806058 ], [ -2.69502377043068, 52.303551947864094 ], [ -2.675050827833445, 52.306316637402858 ], [ -2.665335658613742, 52.32967438446525 ], [ -2.652519903970415, 52.336056424264541 ], [ -2.640892706832972, 52.332206529108021 ], [ -2.63141008071068, 52.29189891230493 ], [ -2.61598466615942, 52.277739570524716 ], [ -2.618542650123231, 52.252056383495301 ], [ -2.606967128929853, 52.241746935072968 ], [ -2.527256231989497, 52.243038845366414 ], [ -2.488679775051594, 52.264872138138628 ], [ -2.447519496627478, 52.258464259917616 ], [ -2.457828945049812, 52.230171413879646 ], [ -2.41537675633225, 52.219861966356632 ], [ -2.406385056625084, 52.205754300520539 ], [ -2.405093146331637, 52.142709052480768 ], [ -2.392225714844869, 52.13115936970911 ], [ -2.360082973650321, 52.122141832479542 ], [ -2.349773525227988, 52.106690579506619 ], [ -2.3515822012576, 52.013931383026886 ], [ -2.41307715478689, 51.989385078458554 ], [ -2.42945858374668, 51.994397690900712 ], [ -2.441395840145901, 52.013259589458471 ], [ -2.460877855428691, 52.019667466780163 ], [ -2.47224667014774, 51.997162381338796 ], [ -2.467544115168778, 51.986594550498069 ], [ -2.478912929887827, 51.974941514938962 ], [ -2.481445075429917, 51.957965806776542 ], [ -2.460335252170182, 51.94773387272005 ], [ -2.454754198047794, 51.929931342257589 ], [ -2.433902757206511, 51.915487778737997 ], [ -2.434471197987421, 51.896625881978821 ], [ -2.470334642229943, 51.882724920818418 ], [ -2.505810512844903, 51.879934393757253 ], [ -2.519737310628386, 51.858850409818558 ], [ -2.550613979051889, 51.861589260036283 ], [ -2.578648443570842, 51.854354560414606 ], [ -2.585495571363538, 51.844639391194903 ], [ -2.620041265991631, 51.837714749036422 ], [ -2.636138475010625, 51.853527737215302 ], [ -2.647533128151338, 51.822160143275937 ], [ -2.658876912999915, 51.817665101000046 ], [ -2.702595173999953, 51.838542379000046 ], [ -2.739647175999949, 51.842159729000059 ], [ -2.775665648999961, 51.875025940000057 ], [ -2.873592488999918, 51.929208679000055 ], [ -2.934725707999917, 51.909261577000052 ], [ -2.960848143999954, 51.911121928000057 ], [ -3.051249642257176, 51.983502938509787 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-MON", "NAME_1": "Monmouthshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.051249642257176, 51.983502938509787 ], [ -2.960848143999954, 51.911121928000057 ], [ -2.934725707999917, 51.909261577000052 ], [ -2.873592488999918, 51.929208679000055 ], [ -2.775665648999961, 51.875025940000057 ], [ -2.734996296999952, 51.839885966000054 ], [ -2.702595173999953, 51.838542379000046 ], [ -2.658876912999915, 51.817665101000046 ], [ -2.647043008999958, 51.82192840600004 ], [ -2.680994425999927, 51.772267354000064 ], [ -2.670555785999909, 51.743948670000066 ], [ -2.684353392999924, 51.72193451000004 ], [ -2.661615762999929, 51.672247620000064 ], [ -2.684043334999956, 51.662119039000061 ], [ -2.665353969999956, 51.617254950000074 ], [ -2.71312415299991, 51.586615302000041 ], [ -2.760487433999913, 51.579779364000046 ], [ -2.7980961304321, 51.563498537527437 ], [ -2.833232388264094, 51.573544827231956 ], [ -2.853153652219305, 51.584396878013479 ], [ -2.847701789306143, 51.595274767216722 ], [ -2.789746669872898, 51.631499945765881 ], [ -2.800598720654421, 51.64418651009936 ], [ -2.835015224972665, 51.649612535490121 ], [ -2.89661353218878, 51.62607392037512 ], [ -2.961312424828577, 51.627443345933614 ], [ -2.976324429129136, 51.667750962736704 ], [ -2.976324429129136, 51.709402167575945 ], [ -2.990819667693529, 51.722062893487703 ], [ -3.021618821751247, 51.727514757300185 ], [ -3.048800624649118, 51.783661200703818 ], [ -3.081408453837071, 51.794539089907062 ], [ -3.128485684067073, 51.794539089907062 ], [ -3.156856045370205, 51.810739650814185 ], [ -3.088668992779787, 51.829110622956875 ], [ -3.067016567160863, 51.85383779647708 ], [ -3.064458584096371, 51.867428697476385 ], [ -3.03497717875382, 51.88603221271643 ], [ -3.063915980837862, 51.938277085918742 ], [ -3.061383836195091, 51.968275255198819 ], [ -3.051249642257176, 51.983502938509787 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-GLS", "NAME_1": "Gloucestershire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.665353969999956, 51.617254950000074 ], [ -2.684043334999956, 51.662119039000061 ], [ -2.661615762999929, 51.672247620000064 ], [ -2.684353392999924, 51.72193451000004 ], [ -2.670555785999909, 51.743948670000066 ], [ -2.680581014999916, 51.764929301000052 ], [ -2.675775105999946, 51.786659241000052 ], [ -2.654174356999931, 51.80776906300008 ], [ -2.636138475010625, 51.853527737215302 ], [ -2.620041265991631, 51.837714749036422 ], [ -2.585495571363538, 51.844639391194903 ], [ -2.578648443570842, 51.854354560414606 ], [ -2.550613979051889, 51.861589260036283 ], [ -2.519737310628386, 51.858850409818558 ], [ -2.505810512844903, 51.879934393757253 ], [ -2.470334642229943, 51.882724920818418 ], [ -2.434471197987421, 51.896625881978821 ], [ -2.433902757206511, 51.915487778737997 ], [ -2.454754198047794, 51.929931342257589 ], [ -2.460335252170182, 51.94773387272005 ], [ -2.481445075429917, 51.957965806776542 ], [ -2.460877855428691, 52.019667466780163 ], [ -2.441395840145901, 52.013259589458471 ], [ -2.42945858374668, 51.994397690900712 ], [ -2.41307715478689, 51.989385078458554 ], [ -2.36894548214832, 52.012174383840716 ], [ -2.341686163985287, 52.014964910901881 ], [ -2.307812262026289, 51.973572089380411 ], [ -2.251717494566719, 51.962720037699569 ], [ -2.23419918494443, 51.964115302579103 ], [ -2.208076748343274, 51.990780341539505 ], [ -2.174745448743465, 51.987731432059888 ], [ -2.159965990238277, 51.994914455737501 ], [ -2.176347419198066, 52.007316800130184 ], [ -2.164771898004688, 52.040493069199783 ], [ -2.114929979135241, 52.042146714699072 ], [ -2.143326177960773, 52.006283271355869 ], [ -2.130019496902264, 51.995224514100016 ], [ -2.105860765062289, 52.007730211280204 ], [ -2.030852424000159, 51.999927069978298 ], [ -1.970881923861725, 52.026075344101798 ], [ -1.942253180140142, 52.03020945919917 ], [ -1.878897873737913, 52.027987372019595 ], [ -1.831975674038119, 52.007988592799279 ], [ -1.827815721418403, 52.034395250240607 ], [ -1.863343267977427, 52.062713934700298 ], [ -1.843086107238094, 52.072997544700911 ], [ -1.813914761157321, 52.068837592081195 ], [ -1.778361375277257, 52.098835761361272 ], [ -1.757819992798431, 52.105760403519753 ], [ -1.736994391278131, 52.08937897456002 ], [ -1.715884568917716, 52.084934801100189 ], [ -1.674465908075206, 52.031062119920875 ], [ -1.61227332165646, 52.026592108938644 ], [ -1.65198666015624, 51.98912669514084 ], [ -1.656921759131876, 51.959102688338362 ], [ -1.618939582295923, 51.944943346558148 ], [ -1.612790085593986, 51.931610826178655 ], [ -1.646147222716138, 51.90995840145905 ], [ -1.637517259114247, 51.893835354018336 ], [ -1.657800259174621, 51.882983303236813 ], [ -1.675861172055477, 51.855233059558032 ], [ -1.679194302375151, 51.797148748915617 ], [ -1.709218309177629, 51.774927884314366 ], [ -1.692526820956004, 51.762448025555898 ], [ -1.676119553574551, 51.704673774175319 ], [ -1.647232428333893, 51.686354478876069 ], [ -1.649273646561539, 51.673745428908376 ], [ -1.701130947035608, 51.681031806272813 ], [ -1.724488694997262, 51.662712510973563 ], [ -1.777353684924606, 51.660361233484139 ], [ -1.795853848276465, 51.694364325752986 ], [ -1.806137458277078, 51.697981676013512 ], [ -1.816679449796766, 51.669662991553764 ], [ -1.832828334759824, 51.656588854492043 ], [ -1.866366339934643, 51.673280340914971 ], [ -1.88809627902009, 51.672453517715667 ], [ -1.887243618298328, 51.662428290133448 ], [ -1.869182705417529, 51.646331082013774 ], [ -1.87476376043918, 51.640775865413843 ], [ -1.940031093859886, 51.662996730914358 ], [ -1.949487880661195, 51.660206203853193 ], [ -1.948661058361154, 51.639949042214482 ], [ -1.968349779218954, 51.634367988092151 ], [ -2.057259079642847, 51.664107774054514 ], [ -2.101132370762286, 51.620208645412617 ], [ -2.148933071404144, 51.589357815410835 ], [ -2.191695319383484, 51.598297838274618 ], [ -2.240012783063491, 51.579125882253663 ], [ -2.271638760320513, 51.577162177492482 ], [ -2.287245042025063, 51.58827260979308 ], [ -2.273085700244906, 51.612457180054776 ], [ -2.286159837306684, 51.622714952532988 ], [ -2.308070645344003, 51.62356761325475 ], [ -2.300319179986161, 51.60661774441337 ], [ -2.343908250265542, 51.608555609853511 ], [ -2.377265387387752, 51.593853664814731 ], [ -2.384190028646913, 51.603000393253524 ], [ -2.379203253727212, 51.635763251173103 ], [ -2.445013190406428, 51.648268948353234 ], [ -2.478912929887827, 51.639122219015178 ], [ -2.487232835127259, 51.659689439016347 ], [ -2.535490393242877, 51.672949577354615 ], [ -2.464995897999927, 51.725897528000075 ], [ -2.388539191999939, 51.750433661000045 ], [ -2.380767381999931, 51.761908270000049 ], [ -2.383371548999946, 51.773260809000078 ], [ -2.398060675999943, 51.782131252000056 ], [ -2.402414516999954, 51.763576565000051 ], [ -2.420399542999917, 51.753119208000044 ], [ -2.482085740999935, 51.742865302000041 ], [ -2.52212480399993, 51.706366278000075 ], [ -2.581695115999935, 51.681708075000074 ], [ -2.665353969999956, 51.617254950000074 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SCB", "NAME_1": "Scottish Borders" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.022857225999928, 55.805487372000073 ], [ -2.078498901999922, 55.790368347000083 ], [ -2.09203812699991, 55.75716624000006 ], [ -2.167537393999908, 55.719907533000082 ], [ -2.242829955999923, 55.649937643000044 ], [ -2.328044392999914, 55.638207092000073 ], [ -2.327320922999945, 55.625132955000083 ], [ -2.281380574999957, 55.592060039000046 ], [ -2.256730915999924, 55.549478658000055 ], [ -2.216991739999912, 55.508860983000034 ], [ -2.2126509199999, 55.490257467000049 ], [ -2.184487263999927, 55.465814514000044 ], [ -2.188673054999924, 55.449019674000056 ], [ -2.232132934999925, 55.425351868000064 ], [ -2.272233845999949, 55.418943990000059 ], [ -2.325150512999926, 55.398118388000057 ], [ -2.35135046399995, 55.367577616000062 ], [ -2.379307413999925, 55.355485331000068 ], [ -2.426746378999951, 55.365975648000074 ], [ -2.462764851999907, 55.36039459300008 ], [ -2.61898270699993, 55.269650778000084 ], [ -2.625752319999947, 55.262519430000054 ], [ -2.618517618999931, 55.242985739000062 ], [ -2.625493936999931, 55.227017721000038 ], [ -2.661357381999949, 55.212548320000053 ], [ -2.697479206999958, 55.17937205000004 ], [ -2.74657181799995, 55.156221009000035 ], [ -2.822484496999948, 55.135188701000061 ], [ -2.850288091122536, 55.111294987273823 ], [ -2.859458176753492, 55.136324775467983 ], [ -2.889456346033569, 55.155212511548143 ], [ -2.884211187796097, 55.201902167251205 ], [ -2.863902350213323, 55.218541979528709 ], [ -2.863669806216592, 55.231047674910258 ], [ -2.905605230996628, 55.242984931309479 ], [ -2.872558153136254, 55.26189850491204 ], [ -2.87865597209543, 55.272182114912653 ], [ -2.945034348656293, 55.287995103990852 ], [ -2.997537604276999, 55.268306383133051 ], [ -3.011696946956533, 55.277453111571788 ], [ -3.034486253238015, 55.273008938111957 ], [ -3.045855067957007, 55.280760403469799 ], [ -3.044201423357038, 55.293007718231593 ], [ -3.056965501156981, 55.307167060011807 ], [ -3.098384161999491, 55.329646307930716 ], [ -3.104481980958667, 55.352177231793803 ], [ -3.130294359197308, 55.356621406152954 ], [ -3.164194097779387, 55.349670926472072 ], [ -3.207524787439013, 55.372176011913382 ], [ -3.285013597199736, 55.341066800392468 ], [ -3.303901333279896, 55.342720444992494 ], [ -3.309482388301603, 55.349076647269442 ], [ -3.303384569342427, 55.384940091511965 ], [ -3.241398687599371, 55.418839830094043 ], [ -3.239977586096757, 55.425764472252581 ], [ -3.316432867982485, 55.438270169432769 ], [ -3.345009934860627, 55.411889350413162 ], [ -3.443660243825207, 55.404396267473714 ], [ -3.500297613643966, 55.409667263233587 ], [ -3.534765793906274, 55.438011787014318 ], [ -3.512234870043244, 55.492168688134427 ], [ -3.485027227824332, 55.514957994415909 ], [ -3.483683640687502, 55.552991848095303 ], [ -3.526988491026032, 55.600224107056874 ], [ -3.516446498607024, 55.608544013195626 ], [ -3.478076748143394, 55.612161363456153 ], [ -3.468930019704658, 55.625778102877121 ], [ -3.480867275204616, 55.637172756917153 ], [ -3.479472012123665, 55.648541572535521 ], [ -3.394464281001774, 55.707711086997051 ], [ -3.43585710342262, 55.718253079416058 ], [ -3.435314500164054, 55.734117744438322 ], [ -3.458646409704045, 55.761041164917799 ], [ -3.422266200624676, 55.807446601579386 ], [ -3.386738654065653, 55.820469061797723 ], [ -3.367799242041372, 55.817420152318164 ], [ -3.33697424956199, 55.794114081199837 ], [ -3.297519294379924, 55.793829861259042 ], [ -3.291447312943149, 55.780781561719664 ], [ -3.269743211380103, 55.773856920460503 ], [ -3.230029872880323, 55.776337389159153 ], [ -3.184192877899022, 55.801607164139284 ], [ -3.143368496259086, 55.738820299417284 ], [ -3.145022141758432, 55.722180488039044 ], [ -3.12088924834012, 55.711896878038488 ], [ -3.093345710236349, 55.718563136879254 ], [ -3.095567795617285, 55.736055609878463 ], [ -3.073682826900949, 55.751325994798776 ], [ -2.942812262376037, 55.815198066037908 ], [ -2.927516038134684, 55.805482896818205 ], [ -2.932528652375424, 55.786052558378856 ], [ -2.907000494976899, 55.782176825699935 ], [ -2.886149054135558, 55.78801626224066 ], [ -2.855582444973891, 55.813286038120111 ], [ -2.780599941434161, 55.838297431581168 ], [ -2.73584815117124, 55.828013821580555 ], [ -2.654457770309875, 55.848270982319946 ], [ -2.640866868411251, 55.842431545779164 ], [ -2.640272590107941, 55.833543198859502 ], [ -2.595029873429951, 55.827703762318777 ], [ -2.565858527349178, 55.843826808860115 ], [ -2.547565069572329, 55.841604723479179 ], [ -2.533069831007879, 55.856332506040303 ], [ -2.500565354607431, 55.858554593219878 ], [ -2.48976497977003, 55.851061510280431 ], [ -2.474468757327315, 55.861603501800118 ], [ -2.396437344308026, 55.872171331741527 ], [ -2.400571457606702, 55.88633067532038 ], [ -2.435866461967635, 55.895219021340722 ], [ -2.378092209687736, 55.932736111082647 ], [ -2.360395355201772, 55.952681011534182 ], [ -2.307769334999932, 55.93500397300005 ], [ -2.138010219999956, 55.914618231000077 ], [ -2.128773566999939, 55.889797268000052 ], [ -2.080189581999946, 55.869370835000041 ], [ -2.022857225999928, 55.805487372000073 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NBL", "NAME_1": "Northumberland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.685006726999916, 55.190827462000073 ], [ -2.661357381999949, 55.212548320000053 ], [ -2.625493936999931, 55.227017721000038 ], [ -2.618517618999931, 55.242985739000062 ], [ -2.623065144999941, 55.266395162000038 ], [ -2.551544962999913, 55.314350891000061 ], [ -2.451912800999935, 55.363340149000067 ], [ -2.412742065999907, 55.364528707000034 ], [ -2.387937377999947, 55.35502024300007 ], [ -2.359463663999918, 55.362513326000055 ], [ -2.325150512999926, 55.398118388000057 ], [ -2.272233845999949, 55.418943990000059 ], [ -2.232132934999925, 55.425351868000064 ], [ -2.188673054999924, 55.449019674000056 ], [ -2.184487263999927, 55.465814514000044 ], [ -2.2126509199999, 55.490257467000049 ], [ -2.216991739999912, 55.508860983000034 ], [ -2.256730915999924, 55.549478658000055 ], [ -2.281380574999957, 55.592060039000046 ], [ -2.327320922999945, 55.625132955000083 ], [ -2.328044392999914, 55.638207092000073 ], [ -2.242829955999923, 55.649937643000044 ], [ -2.167537393999908, 55.719907533000082 ], [ -2.09203812699991, 55.75716624000006 ], [ -2.078498901999922, 55.790368347000083 ], [ -2.022857225999928, 55.805487372000073 ], [ -1.877837693999936, 55.694891669000071 ], [ -1.853098110999952, 55.659328518000052 ], [ -1.831532355999911, 55.65070221600007 ], [ -1.816477016999954, 55.632879950000074 ], [ -1.781402147999927, 55.645656643000052 ], [ -1.75649980399993, 55.633612372000073 ], [ -1.747670050999943, 55.619208075000074 ], [ -1.767974412999934, 55.619208075000074 ], [ -1.767974412999934, 55.612982489000046 ], [ -1.699126756999931, 55.612982489000046 ], [ -1.630848761999914, 55.585109768000052 ], [ -1.634673631999931, 55.564398505000042 ], [ -1.617176886999914, 55.550279039000031 ], [ -1.630848761999914, 55.537298895000049 ], [ -1.602935350999928, 55.523627020000049 ], [ -1.611317511999914, 55.508042710000041 ], [ -1.589344855999911, 55.495672919000071 ], [ -1.584950324999909, 55.483710028000075 ], [ -1.581369594999956, 55.41665273600006 ], [ -1.589344855999911, 55.376532294000071 ], [ -1.583322719999956, 55.354722398000035 ], [ -1.558583136999914, 55.328924872000073 ], [ -1.555816209999932, 55.311346747000073 ], [ -1.568226691999939, 55.27960846600007 ], [ -1.556467251999948, 55.255031643000052 ], [ -1.520985480999911, 55.229396877000056 ], [ -1.529164191999939, 55.21625397300005 ], [ -1.507964647999927, 55.194647528000075 ], [ -1.52212480399993, 55.167466539000031 ], [ -1.517933722999942, 55.157131252000056 ], [ -1.495961066999939, 55.134588934000078 ], [ -1.480091925999943, 55.08539459800005 ], [ -1.459584113999938, 55.078599351000037 ], [ -1.455584717801003, 55.069711691551241 ], [ -1.493675910315005, 55.049094957166517 ], [ -1.514191452573471, 55.048009752448081 ], [ -1.688909470695535, 55.072142645866393 ], [ -1.700019903895452, 55.056329657687513 ], [ -1.680021124675193, 55.048836574748123 ], [ -1.680305344615988, 55.041343491808675 ], [ -1.728364426776864, 55.028010973227822 ], [ -1.749474250036599, 55.002741197348371 ], [ -1.764486253437838, 54.997160143225983 ], [ -1.766708339718093, 54.98439606452672 ], [ -1.800065476840302, 54.972174588186647 ], [ -1.821717901559907, 54.929386501785586 ], [ -1.850579189278164, 54.91967133256594 ], [ -1.848925543778819, 54.912462470466608 ], [ -1.820064256060562, 54.904659329164701 ], [ -1.821717901559907, 54.893833115905522 ], [ -1.86670223581956, 54.848280340865017 ], [ -1.904193488039027, 54.834120999084803 ], [ -1.99307695094052, 54.864661769824806 ], [ -2.082244634682127, 54.830503647924957 ], [ -2.129735276961469, 54.836885687724305 ], [ -2.133120083225265, 54.821873684323066 ], [ -2.160327725444176, 54.803528551501415 ], [ -2.191411099442689, 54.800221258704084 ], [ -2.211409877763685, 54.77856883398448 ], [ -2.272517258564619, 54.792159735883104 ], [ -2.305021734965123, 54.783219713019321 ], [ -2.361995001568062, 54.810763251123092 ], [ -2.399977179303391, 54.847195136146581 ], [ -2.500048589770586, 54.805233872944825 ], [ -2.533638270889526, 54.807972724061926 ], [ -2.563636440169603, 54.823553168244075 ], [ -2.570302699909689, 54.836343085365058 ], [ -2.566401129708368, 54.858253893402434 ], [ -2.59363460855036, 54.882722682705605 ], [ -2.570302699909689, 54.892980455183817 ], [ -2.55950232597155, 54.915769762364619 ], [ -2.541699794609826, 54.923004461986295 ], [ -2.565031704149817, 54.957731025566375 ], [ -2.591980963950334, 54.966619370687397 ], [ -2.567822231211039, 54.986049710026066 ], [ -2.560044928330797, 55.011887925787107 ], [ -2.481961839367386, 55.039121406427739 ], [ -2.49475175558905, 55.057983303186859 ], [ -2.495862798729206, 55.071884264347318 ], [ -2.485320807209519, 55.079377346387389 ], [ -2.505319587329097, 55.086870429326837 ], [ -2.547255011209813, 55.079945787168299 ], [ -2.587536789591184, 55.102993475868175 ], [ -2.597820399591797, 55.123560695869401 ], [ -2.640866868411251, 55.132138984426547 ], [ -2.685006726999916, 55.190827462000073 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CMA", "NAME_1": "Cumbria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.850288091122536, 55.111294987273823 ], [ -2.822484496999948, 55.135188701000061 ], [ -2.718924926999932, 55.167228089000048 ], [ -2.685006726999916, 55.190827462000073 ], [ -2.640866868411251, 55.132138984426547 ], [ -2.597820399591797, 55.123560695869401 ], [ -2.587536789591184, 55.102993475868175 ], [ -2.547255011209813, 55.079945787168299 ], [ -2.505319587329097, 55.086870429326837 ], [ -2.485320807209519, 55.079377346387389 ], [ -2.495862798729206, 55.071884264347318 ], [ -2.49475175558905, 55.057983303186859 ], [ -2.481961839367386, 55.039121406427739 ], [ -2.560044928330797, 55.011887925787107 ], [ -2.567822231211039, 54.986049710026066 ], [ -2.591980963950334, 54.966619370687397 ], [ -2.565031704149817, 54.957731025566375 ], [ -2.541699794609826, 54.923004461986295 ], [ -2.55950232597155, 54.915769762364619 ], [ -2.570302699909689, 54.892980455183817 ], [ -2.59363460855036, 54.882722682705605 ], [ -2.566401129708368, 54.858253893402434 ], [ -2.570302699909689, 54.836343085365058 ], [ -2.563636440169603, 54.823553168244075 ], [ -2.533638270889526, 54.807972724061926 ], [ -2.500048589770586, 54.805233872944825 ], [ -2.399977179303391, 54.847195136146581 ], [ -2.361995001568062, 54.810763251123092 ], [ -2.305021734965123, 54.783219713019321 ], [ -2.327216762943237, 54.727435003922267 ], [ -2.353933477847761, 54.690770575801423 ], [ -2.280578783184296, 54.657697659519329 ], [ -2.286159837306684, 54.640231024941841 ], [ -2.305590175746033, 54.627725327761652 ], [ -2.285255499741538, 54.587986151739472 ], [ -2.209472012323545, 54.552174384340333 ], [ -2.191695319383484, 54.531348781920713 ], [ -2.163092414083678, 54.527989814078637 ], [ -2.150328335384359, 54.473006089759224 ], [ -2.15518591999421, 54.455642808868504 ], [ -2.168389248265214, 54.459673570278994 ], [ -2.194175788082191, 54.446599433217216 ], [ -2.244741177363437, 54.447994697197487 ], [ -2.276703049606056, 54.435489000017299 ], [ -2.295564948163815, 54.417712307077295 ], [ -2.283369310245462, 54.382727362877461 ], [ -2.347241379685954, 54.350222887376333 ], [ -2.306132778105223, 54.320508938037051 ], [ -2.311429613186135, 54.28133820279578 ], [ -2.300319179986161, 54.265215156254442 ], [ -2.309750129265069, 54.243278509795346 ], [ -2.329464686745894, 54.240772203574295 ], [ -2.352512376345089, 54.250487371894678 ], [ -2.400571457606702, 54.228266507293426 ], [ -2.447519496627478, 54.230230211155288 ], [ -2.457803106628091, 54.238291733976325 ], [ -2.576710578130701, 54.196072089255495 ], [ -2.628076951290268, 54.199120998735054 ], [ -2.67112342010978, 54.158554999513569 ], [ -2.709183112210894, 54.164394436054351 ], [ -2.733083461632475, 54.182997952193716 ], [ -2.792278815414988, 54.190775255073959 ], [ -2.811399094592559, 54.173541165392464 ], [ -2.836426195612432, 54.167601552469648 ], [ -2.854237433999913, 54.194077867000033 ], [ -2.810292120999918, 54.211900132000039 ], [ -2.79523678299995, 54.229478257000039 ], [ -2.795969204999949, 54.248724677000041 ], [ -2.802805141999954, 54.248724677000041 ], [ -2.806630011999914, 54.233710028000075 ], [ -2.820871548999946, 54.221747137000079 ], [ -2.904652472999942, 54.187648830000057 ], [ -2.920399542999917, 54.162054755000042 ], [ -2.939198370999918, 54.155096747000073 ], [ -2.984201626999948, 54.153143622000073 ], [ -2.997710740999935, 54.159572658000059 ], [ -3.017323370999918, 54.19009023600006 ], [ -3.008168097999942, 54.200344143000052 ], [ -3.035755988999938, 54.225978908000059 ], [ -3.049183722999942, 54.222072658000059 ], [ -3.044667120999918, 54.208319403000075 ], [ -3.061024542999917, 54.161932684000078 ], [ -3.117909308999913, 54.10883209800005 ], [ -3.145253058999913, 54.100043036000045 ], [ -3.145375128999945, 54.063788153000075 ], [ -3.18976803299995, 54.097886460000041 ], [ -3.219553188999953, 54.100775458000044 ], [ -3.240956183999913, 54.112127997000073 ], [ -3.233143683999913, 54.159165757000039 ], [ -3.248402472999942, 54.173651434000078 ], [ -3.215199347999942, 54.179836330000057 ], [ -3.206776495999918, 54.208929755000042 ], [ -3.207386847999942, 54.263006903000075 ], [ -3.231353318999936, 54.247219143000052 ], [ -3.240956183999913, 54.222072658000059 ], [ -3.232167120999918, 54.202541408000059 ], [ -3.306792772999927, 54.191880601000037 ], [ -3.407378709999932, 54.277736721000053 ], [ -3.412912563999953, 54.293768622000073 ], [ -3.404123501999948, 54.318548895000049 ], [ -3.413441535999937, 54.342962958000044 ], [ -3.440174933999913, 54.351752020000049 ], [ -3.474273240999935, 54.393500067000048 ], [ -3.634185350999928, 54.512884833000044 ], [ -3.61156165299991, 54.52993398600006 ], [ -3.590321417999917, 54.564642645000049 ], [ -3.563832160999937, 54.642767645000049 ], [ -3.509185350999928, 54.721665757000039 ], [ -3.468129035999937, 54.735296942000048 ], [ -3.439564581999946, 54.761460679000038 ], [ -3.430978969999956, 54.780462958000044 ], [ -3.440174933999913, 54.797430731000077 ], [ -3.387928839999915, 54.883368231000077 ], [ -3.364491339999915, 54.899807033000059 ], [ -3.344960089999915, 54.902533270000049 ], [ -3.306467251999948, 54.88617584800005 ], [ -3.254628058999913, 54.899807033000059 ], [ -3.317290818999936, 54.920314846000053 ], [ -3.276519334999932, 54.943426825000074 ], [ -3.213612433999913, 54.954413153000075 ], [ -3.180165167999917, 54.940822658000059 ], [ -3.122792120999918, 54.932684637000079 ], [ -3.021839972999942, 54.954413153000075 ], [ -3.090728318999936, 54.954413153000075 ], [ -3.090728318999936, 54.96124909100007 ], [ -3.040923631999931, 54.972479559000078 ], [ -3.021839972999942, 54.968085028000075 ], [ -3.021839972999942, 54.975531317000048 ], [ -3.05029137799994, 54.981510325000045 ], [ -3.032962605999955, 55.015247701000078 ], [ -3.026063801999953, 55.050749410000037 ], [ -2.953794311999957, 55.041034241000034 ], [ -2.927697713999919, 55.068422750000082 ], [ -2.88310095199995, 55.083615621000035 ], [ -2.850288091122536, 55.111294987273823 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-DGY", "NAME_1": "Dumfries and Galloway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.850288091122536, 55.111294987273823 ], [ -2.88310095199995, 55.083615621000035 ], [ -2.927697713999919, 55.068422750000082 ], [ -2.953794311999957, 55.041034241000034 ], [ -3.026063801999953, 55.050749410000037 ], [ -3.032962605999955, 55.015247701000078 ], [ -3.05029137799994, 54.981510325000045 ], [ -3.13540605399993, 54.968085028000075 ], [ -3.453846808999913, 54.981756903000075 ], [ -3.501047329999949, 54.99249909100007 ], [ -3.52603105399993, 54.977118231000077 ], [ -3.57054602799991, 54.995428778000075 ], [ -3.583607550999943, 54.968085028000075 ], [ -3.568755662999934, 54.916001695000034 ], [ -3.581695115999935, 54.883612372000073 ], [ -3.598378058999913, 54.877997137000079 ], [ -3.717640753999945, 54.880845445000034 ], [ -3.739247199999909, 54.859808661000045 ], [ -3.810129360999952, 54.866278387000079 ], [ -3.803334113999938, 54.858872789000031 ], [ -3.812367316999939, 54.855169989000046 ], [ -3.831288214999915, 54.866278387000079 ], [ -3.819976365999935, 54.878566799000055 ], [ -3.810129360999952, 54.87250397300005 ], [ -3.816965298999946, 54.88617584800005 ], [ -3.844309048999946, 54.866278387000079 ], [ -3.837473110999952, 54.851996161000045 ], [ -3.857899542999917, 54.844549872000073 ], [ -3.823841925999943, 54.824693101000037 ], [ -3.964182094999956, 54.771918036000045 ], [ -4.042876756999931, 54.769476630000042 ], [ -4.042876756999931, 54.776922919000071 ], [ -4.055775519999941, 54.782538153000075 ], [ -4.049956834999932, 54.823228257000039 ], [ -4.064035610999952, 54.831529039000031 ], [ -4.09007727799991, 54.809759833000044 ], [ -4.093495245999918, 54.792669989000046 ], [ -4.083851691999939, 54.776922919000071 ], [ -4.122954881999931, 54.773016669000071 ], [ -4.173939581999946, 54.792303778000075 ], [ -4.209136522999927, 54.826239325000074 ], [ -4.200550910999937, 54.866278387000079 ], [ -4.239735480999911, 54.843003648000035 ], [ -4.270741339999915, 54.839422919000071 ], [ -4.356922980999911, 54.86554596600007 ], [ -4.386789516999954, 54.904771226000037 ], [ -4.402902798999946, 54.907294012000079 ], [ -4.426503058999913, 54.86945221600007 ], [ -4.417225714999915, 54.845933335000041 ], [ -4.402902798999946, 54.824693101000037 ], [ -4.35960852799991, 54.816636460000041 ], [ -4.344471808999913, 54.794501044000071 ], [ -4.358143683999913, 54.770982164000031 ], [ -4.343861456999946, 54.756415106000077 ], [ -4.356516079999949, 54.741888739000046 ], [ -4.348133917999917, 54.701971747000073 ], [ -4.382394985999952, 54.680080471000053 ], [ -4.46117102799991, 54.701239325000074 ], [ -4.49673417899993, 54.70062897300005 ], [ -4.596669074999909, 54.775295315000051 ], [ -4.714466925999943, 54.817857164000031 ], [ -4.781076626999948, 54.833075262000079 ], [ -4.799631313999953, 54.861273505000042 ], [ -4.859120245999918, 54.866278387000079 ], [ -4.925770636999914, 54.837388414000031 ], [ -4.954823370999918, 54.804754950000074 ], [ -4.94790605399993, 54.777329820000034 ], [ -4.930165167999917, 54.762640692000048 ], [ -4.895985480999911, 54.70453522300005 ], [ -4.867258266999954, 54.690130927000041 ], [ -4.872059699999909, 54.649237372000073 ], [ -4.859120245999918, 54.632961330000057 ], [ -4.953684048999946, 54.659735419000071 ], [ -4.958973761999914, 54.691961981000077 ], [ -4.947255011999914, 54.701239325000074 ], [ -4.958892381999931, 54.714056708000044 ], [ -4.954701300999943, 54.728501695000034 ], [ -4.988189256999931, 54.735296942000048 ], [ -5.003285285999937, 54.771307684000078 ], [ -5.033192511999914, 54.782416083000044 ], [ -5.128244594999956, 54.848944403000075 ], [ -5.157134568999936, 54.879095770000049 ], [ -5.175526495999918, 54.914618231000077 ], [ -5.180653449999909, 54.954413153000075 ], [ -5.170806443999936, 55.008693752000056 ], [ -5.156727667999917, 55.016546942000048 ], [ -5.124582485999952, 55.016791083000044 ], [ -5.115142381999931, 55.03156159100007 ], [ -5.069488084999932, 54.986029364000046 ], [ -5.06086178299995, 54.931138414000031 ], [ -5.030995245999918, 54.911322333000044 ], [ -5.013091600999928, 54.90961334800005 ], [ -4.988189256999931, 54.934556382000039 ], [ -5.032500779999907, 54.993719794000071 ], [ -4.98700273318957, 55.007702134745671 ], [ -4.913906419145917, 54.999950670287149 ], [ -4.870575731284987, 55.036615099307369 ], [ -4.800580002665015, 55.04413401976916 ], [ -4.775336066106547, 55.034677232068589 ], [ -4.763915575443434, 55.041343491808675 ], [ -4.70141292976291, 55.041886095067184 ], [ -4.630564541320553, 55.053849188988863 ], [ -4.616715257003534, 55.069662177167743 ], [ -4.64474972242175, 55.085785223709081 ], [ -4.651700202102631, 55.10772187016812 ], [ -4.647514411061252, 55.119684964089799 ], [ -4.611134201981827, 55.140200507247584 ], [ -4.551137865220312, 55.159114080850145 ], [ -4.488919440379902, 55.151620998810017 ], [ -4.458352830318859, 55.160509344830359 ], [ -4.450342983441942, 55.175495509809878 ], [ -4.437217170436099, 55.175495509809878 ], [ -4.431377732995998, 55.142009182377819 ], [ -4.418639491819079, 55.14299103520807 ], [ -4.403343267577725, 55.153016261890969 ], [ -4.402258062859346, 55.173273424428942 ], [ -4.384739753237056, 55.181903388030889 ], [ -4.377246670297609, 55.217456773011634 ], [ -4.353397995920773, 55.241331284910871 ], [ -4.348953823360262, 55.262725328111401 ], [ -4.321694505197286, 55.275231025291532 ], [ -4.296993170998064, 55.307735500792717 ], [ -4.244179857014785, 55.304376532950585 ], [ -4.231415778315522, 55.316623846813059 ], [ -4.188627691914462, 55.313833319751893 ], [ -4.135297613993714, 55.284119371311931 ], [ -4.113360968433938, 55.299932359490754 ], [ -4.113645189274052, 55.316623846813059 ], [ -4.085584886333436, 55.347164619351702 ], [ -4.09780636177419, 55.371323351191677 ], [ -4.094189012412983, 55.396050522913299 ], [ -4.070598721353917, 55.414938258993402 ], [ -4.003083462331915, 55.434962877534758 ], [ -4.008638678032582, 55.454108995133993 ], [ -3.97641842337157, 55.462454738795145 ], [ -3.956703864092049, 55.454393215974108 ], [ -3.878620775128695, 55.454909979911633 ], [ -3.825884976410521, 55.44633169225375 ], [ -3.769480149689173, 55.409124660874397 ], [ -3.743099330669565, 55.371039130351562 ], [ -3.708346929567142, 55.36271922511213 ], [ -3.701422288307981, 55.320757961910374 ], [ -3.642252772947131, 55.289648749490198 ], [ -3.616698778026205, 55.292697658969757 ], [ -3.607293667169017, 55.318845933992634 ], [ -3.571972826185004, 55.329646307930716 ], [ -3.567528651825853, 55.383854884994946 ], [ -3.500297613643966, 55.409667263233587 ], [ -3.443660243825207, 55.404396267473714 ], [ -3.345009934860627, 55.411889350413162 ], [ -3.316432867982485, 55.438270169432769 ], [ -3.239977586096757, 55.425764472252581 ], [ -3.241398687599371, 55.418839830094043 ], [ -3.303384569342427, 55.384940091511965 ], [ -3.309482388301603, 55.349076647269442 ], [ -3.303901333279896, 55.342720444992494 ], [ -3.285013597199736, 55.341066800392468 ], [ -3.207524787439013, 55.372176011913382 ], [ -3.164194097779387, 55.349670926472072 ], [ -3.130294359197308, 55.356621406152954 ], [ -3.104481980958667, 55.352177231793803 ], [ -3.098384161999491, 55.329646307930716 ], [ -3.056965501156981, 55.307167060011807 ], [ -3.044201423357038, 55.293007718231593 ], [ -3.045855067957007, 55.280760403469799 ], [ -3.034486253238015, 55.273008938111957 ], [ -3.011696946956533, 55.277453111571788 ], [ -2.997537604276999, 55.268306383133051 ], [ -2.945034348656293, 55.287995103990852 ], [ -2.87865597209543, 55.272182114912653 ], [ -2.872558153136254, 55.26189850491204 ], [ -2.905605230996628, 55.242984931309479 ], [ -2.863669806216592, 55.231047674910258 ], [ -2.863902350213323, 55.218541979528709 ], [ -2.884211187796097, 55.201902167251205 ], [ -2.889456346033569, 55.155212511548143 ], [ -2.859458176753492, 55.136324775467983 ], [ -2.850288091122536, 55.111294987273823 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-LMV", "NAME_1": "Limavady" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.149887797207094, 55.048656634593186 ], [ -7.065052863999938, 55.043850002000056 ], [ -7.017201300999943, 55.071112372000073 ], [ -7.009917772999927, 55.102240302000041 ], [ -6.97492428299995, 55.135443427000041 ], [ -6.962554490999935, 55.194647528000075 ], [ -6.883778449999909, 55.17413971600007 ], [ -6.838415196631908, 55.175424793866952 ], [ -6.840868903277283, 55.156323553788923 ], [ -6.862262945578493, 55.125472723787141 ], [ -6.821438563938557, 55.101882432728075 ], [ -6.806995002217604, 55.070489000367047 ], [ -6.809759690857049, 55.008528957945032 ], [ -6.803920254316267, 54.999123847087844 ], [ -6.780071579939488, 54.990778103426692 ], [ -6.80864864681763, 54.968841457866972 ], [ -6.795290289815057, 54.956904202367014 ], [ -6.781130947135523, 54.911067206486337 ], [ -6.768625250854654, 54.90132619884497 ], [ -6.776970993616487, 54.865230211505036 ], [ -6.811413337255715, 54.846626695365671 ], [ -6.890013190156594, 54.851587632763028 ], [ -6.888953822960559, 54.830762031242728 ], [ -6.917479213894637, 54.815827542207273 ], [ -6.942258063358963, 54.827713120863791 ], [ -6.991970791019185, 54.825232652165141 ], [ -7.010290086318435, 54.815517482945438 ], [ -7.039461432399207, 54.838823554063765 ], [ -7.040598313961027, 54.868563340925391 ], [ -7.033932054220941, 54.880784817265464 ], [ -7.045300868939933, 54.888277900204912 ], [ -7.053104010241896, 54.911325588904788 ], [ -7.083360561940367, 54.924399725966566 ], [ -7.093359951100865, 54.94103953734475 ], [ -7.097804123661376, 54.964655666825536 ], [ -7.086952073779173, 54.983517565383295 ], [ -7.131135423261185, 54.983285021386621 ], [ -7.153097907242625, 55.017985744746284 ], [ -7.17418189118132, 55.031576647544227 ], [ -7.149887797207094, 55.048656634593186 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CLR", "NAME_1": "Coleraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.838415196631908, 55.175424793866952 ], [ -6.754505988999938, 55.177801825000074 ], [ -6.640451626999948, 55.208319403000075 ], [ -6.571278449999909, 55.21124909100007 ], [ -6.546117303803037, 55.225188312670724 ], [ -6.531430426373106, 55.211617337370171 ], [ -6.517529466111966, 55.143275255148865 ], [ -6.543626064291459, 55.143275255148865 ], [ -6.572849087215616, 55.131053778808791 ], [ -6.578636846912957, 55.097980862526754 ], [ -6.613854336008785, 55.076638495270288 ], [ -6.582564256435319, 55.04051666950869 ], [ -6.59196936729245, 55.020207831026539 ], [ -6.581995814755032, 54.995222275987203 ], [ -6.551429205593365, 54.976334539907043 ], [ -6.546700812192739, 54.953545234524938 ], [ -6.520423345960637, 54.945121974699362 ], [ -6.558121303755172, 54.924942329225075 ], [ -6.585303106653043, 54.921609198905401 ], [ -6.640571050913252, 54.934373276705344 ], [ -6.655298835273015, 54.923262844404746 ], [ -6.694753791354401, 54.916028143883693 ], [ -6.709481573915525, 54.926621813146141 ], [ -6.736921759231791, 54.928843899426397 ], [ -6.781130947135523, 54.911067206486337 ], [ -6.795290289815057, 54.956904202367014 ], [ -6.80864864681763, 54.968841457866972 ], [ -6.780071579939488, 54.990778103426692 ], [ -6.803920254316267, 54.999123847087844 ], [ -6.809759690857049, 55.008528957945032 ], [ -6.806995002217604, 55.070489000367047 ], [ -6.821438563938557, 55.101882432728075 ], [ -6.862262945578493, 55.125472723787141 ], [ -6.840868903277283, 55.156323553788923 ], [ -6.838415196631908, 55.175424793866952 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-MYL", "NAME_1": "Moyle" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -6.546117303803037, 55.225188312670724 ], [ -6.498117641999954, 55.247137762000079 ], [ -6.475941535999937, 55.24868398600006 ], [ -6.415923631999931, 55.23187897300005 ], [ -6.378163214999915, 55.246242580000057 ], [ -6.239816860999952, 55.208319403000075 ], [ -6.160023566999939, 55.221909898000035 ], [ -6.100982225999928, 55.212388414000031 ], [ -6.037098761999914, 55.167914130000042 ], [ -6.040638800999943, 55.112046617000033 ], [ -6.062082485999952, 55.074123440000051 ], [ -6.054351365999935, 55.065130927000041 ], [ -5.980984243751654, 55.055652547860717 ], [ -6.101921758882099, 54.986876533225427 ], [ -6.140291510244992, 54.986333929966861 ], [ -6.160057746367897, 55.002172757466781 ], [ -6.168920253966576, 55.021861477425205 ], [ -6.192536383447361, 55.028269354746897 ], [ -6.229743414826714, 55.068551134027587 ], [ -6.235350308270142, 55.088834134088017 ], [ -6.226126063666925, 55.098290920889269 ], [ -6.228089769327426, 55.120511787289104 ], [ -6.324207932749914, 55.104104519008331 ], [ -6.346454636672149, 55.108832913308277 ], [ -6.379475877010123, 55.137720038548935 ], [ -6.425287035368399, 55.12604116546737 ], [ -6.436397466769677, 55.14242259442716 ], [ -6.460582037930692, 55.138004259389049 ], [ -6.477790290089843, 55.148572089330457 ], [ -6.515307379831711, 55.149088854167246 ], [ -6.52667619455076, 55.165211899809321 ], [ -6.531430426373106, 55.211617337370171 ], [ -6.546117303803037, 55.225188312670724 ] ] ], [ [ [ -6.236398891999954, 55.311346747000073 ], [ -6.174305792999917, 55.303900458000044 ], [ -6.171864386999914, 55.293198960000041 ], [ -6.194813605999911, 55.262925523000035 ], [ -6.187977667999917, 55.284002997000073 ], [ -6.211089647999927, 55.295314846000053 ], [ -6.283558722999942, 55.297064520000049 ], [ -6.236398891999954, 55.311346747000073 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-LRN", "NAME_1": "Larne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.980984243751654, 55.055652547860717 ], [ -5.968251105999911, 55.043850002000056 ], [ -5.986236131999931, 54.981756903000075 ], [ -5.957142706999946, 54.978949286000045 ], [ -5.906605597999942, 54.957953192000048 ], [ -5.886341925999943, 54.940822658000059 ], [ -5.869252081999946, 54.910386460000041 ], [ -5.82095292899993, 54.875067450000074 ], [ -5.800526495999918, 54.820746161000045 ], [ -5.745594855999911, 54.804592190000051 ], [ -5.715646938999953, 54.783758856000077 ], [ -5.733754035999937, 54.805243231000077 ], [ -5.797596808999913, 54.844549872000073 ], [ -5.781727667999917, 54.861721096000053 ], [ -5.751616990999935, 54.85687897300005 ], [ -5.720611131999931, 54.841009833000044 ], [ -5.701975063999953, 54.824693101000037 ], [ -5.689849412999934, 54.793117580000057 ], [ -5.692096096638204, 54.770452506515142 ], [ -5.742227951958398, 54.763841051423356 ], [ -5.754759486660987, 54.752730618223438 ], [ -5.76946143169971, 54.772160955763468 ], [ -5.791139695740355, 54.776605130122618 ], [ -5.889195726401681, 54.769370428702302 ], [ -5.903639289021953, 54.77743195332198 ], [ -5.959759894003923, 54.770223090323327 ], [ -5.99032650406491, 54.772987778962829 ], [ -6.008077357683931, 54.786888740123231 ], [ -6.019472011723963, 54.818566393324375 ], [ -5.959191453223013, 54.82078847870531 ], [ -5.944773729024405, 54.832725735104589 ], [ -5.965056729084779, 54.854946601504423 ], [ -5.998310513419483, 54.850760810462987 ], [ -6.028360357744305, 54.859080715702419 ], [ -6.038902350163312, 54.896597805444344 ], [ -6.027249314604205, 54.909930324924517 ], [ -6.023631965242998, 54.934683335967179 ], [ -6.085307785925579, 54.982690742183991 ], [ -6.101921758882099, 54.986876533225427 ], [ -5.980984243751654, 55.055652547860717 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CKF", "NAME_1": "Carrickfergus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.692096096638204, 54.770452506515142 ], [ -5.706898566999939, 54.742987372000073 ], [ -5.729318813999953, 54.728501695000034 ], [ -5.818430141999954, 54.70962148600006 ], [ -5.877914606552073, 54.682311330649071 ], [ -5.891417812681937, 54.707462063123671 ], [ -5.905861375302209, 54.712164619001953 ], [ -5.892244634981921, 54.7427053897419 ], [ -5.904491949743715, 54.759655260381919 ], [ -5.889195726401681, 54.769370428702302 ], [ -5.791139695740355, 54.776605130122618 ], [ -5.76946143169971, 54.772160955763468 ], [ -5.754759486660987, 54.752730618223438 ], [ -5.742227951958398, 54.763841051423356 ], [ -5.692096096638204, 54.770452506515142 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NTA", "NAME_1": "Newtownabbey" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.877914606552073, 54.682311330649071 ], [ -5.914336717999959, 54.646836656000062 ], [ -5.940587937982968, 54.65966136338119 ], [ -5.965056729084779, 54.646897285581247 ], [ -5.983918625843899, 54.663020331223265 ], [ -6.044741786704094, 54.66524241840284 ], [ -6.0514080473435, 54.671030178100239 ], [ -6.051692267284295, 54.695214749261254 ], [ -6.039729173362673, 54.714076646919693 ], [ -6.056446499106642, 54.725781358422921 ], [ -6.063655361205974, 54.747976386401092 ], [ -6.048384976285661, 54.754642646141178 ], [ -6.045568609903455, 54.774383042943043 ], [ -6.084222581207143, 54.791901354363972 ], [ -6.006966315443094, 54.798567613204739 ], [ -6.008077357683931, 54.786888740123231 ], [ -5.99032650406491, 54.772987778962829 ], [ -5.925550096160009, 54.771075751045032 ], [ -5.903639289021953, 54.77743195332198 ], [ -5.889195726401681, 54.769370428702302 ], [ -5.904491949743715, 54.759655260381919 ], [ -5.892244634981921, 54.7427053897419 ], [ -5.905861375302209, 54.712164619001953 ], [ -5.891417812681937, 54.707462063123671 ], [ -5.877914606552073, 54.682311330649071 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BFS", "NAME_1": "Belfast" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.914336717999959, 54.646836656000062 ], [ -5.927235480999911, 54.632961330000057 ], [ -5.915150519999941, 54.628241278000075 ], [ -5.907378709999932, 54.605617580000057 ], [ -5.894886847999942, 54.604803778000075 ], [ -5.870470825996186, 54.62280033715264 ], [ -5.80780534464094, 54.614392809180799 ], [ -5.816125250779692, 54.592998765980212 ], [ -5.894750942102291, 54.582146715198746 ], [ -5.948933681644121, 54.561321112779126 ], [ -5.968079800142675, 54.540237127941054 ], [ -5.980042894064297, 54.542149155858851 ], [ -5.988104416885335, 54.562173774400151 ], [ -6.031693488064036, 54.580777288740876 ], [ -6.042803921263953, 54.608294990221566 ], [ -6.06587744838555, 54.622712714420231 ], [ -6.045568609903455, 54.629663194101113 ], [ -6.058668586286217, 54.652736721222652 ], [ -6.022495082781859, 54.662451891341675 ], [ -5.983918625843899, 54.663020331223265 ], [ -5.965056729084779, 54.646897285581247 ], [ -5.940587937982968, 54.65966136338119 ], [ -5.914336717999959, 54.646836656000062 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NDN", "NAME_1": "North Down" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.870470825996186, 54.62280033715264 ], [ -5.839019334999932, 54.649725653000075 ], [ -5.747954881999931, 54.680405992000033 ], [ -5.694691535999937, 54.668687242000033 ], [ -5.574696417999917, 54.680080471000053 ], [ -5.564967959469434, 54.672301366741777 ], [ -5.578930426298143, 54.666611843062071 ], [ -5.577250942377077, 54.653563544422013 ], [ -5.650037197158952, 54.61883698174131 ], [ -5.698923101619869, 54.618552760901196 ], [ -5.728895433377545, 54.628810533379408 ], [ -5.756981573840562, 54.615788072261694 ], [ -5.870470825996186, 54.62280033715264 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-ARD", "NAME_1": "Ards" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.564967959469434, 54.672301366741777 ], [ -5.536610480999911, 54.657456773000035 ], [ -5.514393683999913, 54.597886460000041 ], [ -5.478911912999934, 54.569484768000052 ], [ -5.468617316999939, 54.51626211100006 ], [ -5.430775519999941, 54.485174872000073 ], [ -5.437570766999954, 54.475653387000079 ], [ -5.43382727799991, 54.461004950000074 ], [ -5.464263475999928, 54.42523834800005 ], [ -5.457386847999942, 54.408677476000037 ], [ -5.46117102799991, 54.392075914000031 ], [ -5.489125128999945, 54.369574286000045 ], [ -5.47484290299991, 54.358587958000044 ], [ -5.502023891999954, 54.339667059000078 ], [ -5.52765865799995, 54.345282294000071 ], [ -5.54710852799991, 54.379095770000049 ], [ -5.576649542999917, 54.402777411000045 ], [ -5.571685350999928, 54.425604559000078 ], [ -5.548695441999939, 54.44281647300005 ], [ -5.543690558999913, 54.457831122000073 ], [ -5.558013475999928, 54.511908270000049 ], [ -5.575306769999941, 54.528998114000046 ], [ -5.644886847999942, 54.567775783000059 ], [ -5.701975063999953, 54.577704169000071 ], [ -5.697417772999927, 54.551214911000045 ], [ -5.715646938999953, 54.536688544000071 ], [ -5.625599738999938, 54.51626211100006 ], [ -5.670318162999934, 54.505682684000078 ], [ -5.639963344999956, 54.495754299000055 ], [ -5.644602016999954, 54.47211334800005 ], [ -5.638498501999948, 54.463568427000041 ], [ -5.645877243639916, 54.458691718348121 ], [ -5.715898809782232, 54.447167873998183 ], [ -5.738068000238002, 54.460500393478355 ], [ -5.790855474900241, 54.466055610078342 ], [ -5.818683233844183, 54.491609605898589 ], [ -5.823359951300745, 54.525767726899062 ], [ -5.78780656632, 54.546903388580517 ], [ -5.792819179661421, 54.55909902649887 ], [ -5.775042486721418, 54.576333116180365 ], [ -5.754759486660987, 54.583283595861246 ], [ -5.760883144941204, 54.593825589179573 ], [ -5.756981573840562, 54.615788072261694 ], [ -5.728895433377545, 54.628810533379408 ], [ -5.698923101619869, 54.618552760901196 ], [ -5.650037197158952, 54.61883698174131 ], [ -5.577250942377077, 54.653563544422013 ], [ -5.578930426298143, 54.666611843062071 ], [ -5.564967959469434, 54.672301366741777 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-DOW", "NAME_1": "Down" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.638498501999948, 54.463568427000041 ], [ -5.625599738999938, 54.461004950000074 ], [ -5.63312740799995, 54.447333075000074 ], [ -5.625599738999938, 54.441107489000046 ], [ -5.653553839999915, 54.38898346600007 ], [ -5.708851691999939, 54.351752020000049 ], [ -5.579701300999943, 54.383693752000056 ], [ -5.550526495999918, 54.365423895000049 ], [ -5.540679490999935, 54.327337958000044 ], [ -5.55304928299995, 54.298529364000046 ], [ -5.612619594999956, 54.255560614000046 ], [ -5.63312740799995, 54.255560614000046 ], [ -5.639963344999956, 54.235052802000041 ], [ -5.663400844999956, 54.230861721000053 ], [ -5.678822394999941, 54.246161200000074 ], [ -5.779449022999927, 54.246527411000045 ], [ -5.862049933999913, 54.230536200000074 ], [ -5.866037563999953, 54.184149481000077 ], [ -5.92500749380082, 54.178837999574 ], [ -5.966141933803215, 54.193539943713404 ], [ -6.003917405963534, 54.185504259314087 ], [ -6.02693925624169, 54.169665431814224 ], [ -6.055309618444142, 54.201601467433761 ], [ -6.06280269958495, 54.230746975092813 ], [ -6.078383144666418, 54.233847561415814 ], [ -6.045336065906724, 54.246611640115077 ], [ -6.037842982967277, 54.263561509855776 ], [ -5.988931240084696, 54.245216376134806 ], [ -5.967537196884109, 54.249944770434809 ], [ -5.974203456624252, 54.262734687555735 ], [ -5.963635626682844, 54.273276679075479 ], [ -5.965599331444025, 54.284077053013561 ], [ -5.94756425608557, 54.290484931234573 ], [ -5.967278815365034, 54.320508938037051 ], [ -5.970586107263046, 54.34107615803822 ], [ -5.937797410022483, 54.366345933917671 ], [ -5.950380621568456, 54.379678453397901 ], [ -5.932526414262611, 54.390478828235302 ], [ -5.942810024263224, 54.409650784256257 ], [ -5.910021327921982, 54.433266912837723 ], [ -5.915576545421231, 54.449648341797513 ], [ -5.879196336341863, 54.466055610078342 ], [ -5.868111741563609, 54.4791039087184 ], [ -5.818683233844183, 54.491609605898589 ], [ -5.790855474900241, 54.466055610078342 ], [ -5.738068000238002, 54.460500393478355 ], [ -5.715898809782232, 54.447167873998183 ], [ -5.638498501999948, 54.463568427000041 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CLK", "NAME_1": "Clackmannanshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.746490037999934, 56.072780666000085 ], [ -3.803130662999934, 56.107123114000046 ], [ -3.837473110999952, 56.112616278000075 ], [ -3.846167974672312, 56.107634996357945 ], [ -3.857278407872229, 56.118745429557919 ], [ -3.861386685447201, 56.129287421077606 ], [ -3.824412197165202, 56.192539373793011 ], [ -3.758938158169485, 56.215793768967217 ], [ -3.723074713926906, 56.189671332366061 ], [ -3.664215256928571, 56.18716502524569 ], [ -3.655585293326624, 56.196880195364713 ], [ -3.611686163785464, 56.198017076027213 ], [ -3.554196133244943, 56.181894029485818 ], [ -3.642821213728041, 56.155228990525472 ], [ -3.630599738287287, 56.128202216359171 ], [ -3.648350591906308, 56.121587633462468 ], [ -3.631426560587329, 56.106343085165236 ], [ -3.715581630987515, 56.097454739144894 ], [ -3.746490037999934, 56.072780666000085 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-STG", "NAME_1": "Stirling" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.837473110999952, 56.107376988069525 ], [ -3.777699347999942, 56.082831122000073 ], [ -3.739103157139537, 56.050704657139647 ], [ -3.921589727783726, 56.037329210274834 ], [ -4.011274176362178, 56.012188626503871 ], [ -4.017785407370638, 56.025779527503175 ], [ -4.081967536072966, 56.025779527503175 ], [ -4.132532925354212, 56.004127101884194 ], [ -4.140878669015365, 56.008571275344082 ], [ -4.142248093674596, 56.028570055463661 ], [ -4.158371141115254, 56.025779527503175 ], [ -4.174468350134248, 56.010483303261822 ], [ -4.198342861134165, 56.019681708543999 ], [ -4.27725277329688, 56.025211086722265 ], [ -4.287536383297436, 56.016606961542038 ], [ -4.267821824917291, 55.988004055342856 ], [ -4.265289679375201, 55.96800527612254 ], [ -4.274488083758058, 55.958806870840363 ], [ -4.30169572597697, 55.957153225341074 ], [ -4.360064255660859, 55.976325182261348 ], [ -4.408588425815196, 55.975782579002782 ], [ -4.431972012198628, 55.998546047761863 ], [ -4.458352830318859, 56.002990221221694 ], [ -4.473080613779302, 56.017149563001908 ], [ -4.470600145080653, 56.028570055463661 ], [ -4.428354661038782, 56.04551992520436 ], [ -4.521475591825094, 56.072650051258847 ], [ -4.598085903341769, 56.077817695130477 ], [ -4.611315070034436, 56.088308009806781 ], [ -4.680535651399225, 56.198430488076554 ], [ -4.68521236795641, 56.24842743657689 ], [ -4.674773729224228, 56.271345934067597 ], [ -4.657436285855908, 56.281061103287243 ], [ -4.671724818845348, 56.300233059308198 ], [ -4.649245570926382, 56.320800279309424 ], [ -4.719189621803594, 56.32824168630475 ], [ -4.778953416367074, 56.318268133767333 ], [ -4.784741176963735, 56.323280748008074 ], [ -4.775826991622353, 56.343021144809939 ], [ -4.836960211744383, 56.369944566188735 ], [ -4.810295172783981, 56.392165431689307 ], [ -4.803318853782059, 56.408288479129965 ], [ -4.770581834284258, 56.42689199526933 ], [ -4.725855882443057, 56.437433986789017 ], [ -4.72223853218253, 56.453867093491567 ], [ -4.66554948641965, 56.460274969913883 ], [ -4.600333828043745, 56.49241771110843 ], [ -4.529743822019782, 56.501047674710378 ], [ -4.512793952279083, 56.519134426012897 ], [ -4.470600145080653, 56.511899726391221 ], [ -4.390579188878462, 56.526059068171435 ], [ -4.351692673578043, 56.540786852531198 ], [ -4.322805549236705, 56.533293768692431 ], [ -4.284720017814607, 56.481307277908513 ], [ -4.144780239216686, 56.512158107910352 ], [ -4.12170671209509, 56.502184557171574 ], [ -4.095300054653819, 56.468284816790856 ], [ -4.148087531114697, 56.452730211030371 ], [ -4.186974046415116, 56.457174384490202 ], [ -4.186405604734887, 56.391338609389265 ], [ -4.200203213107784, 56.379401353889364 ], [ -4.224181076895206, 56.380021471513658 ], [ -4.234542202160924, 56.372941799724231 ], [ -4.228909471195152, 56.355785224408578 ], [ -4.216972214795874, 56.34829214146913 ], [ -4.219478521916244, 56.329120185448176 ], [ -4.170592616556007, 56.300233059308198 ], [ -4.120311449014196, 56.293825181986506 ], [ -4.09917578823206, 56.278528957745152 ], [ -4.075042893914429, 56.274394843547157 ], [ -4.061426153594141, 56.285763658266205 ], [ -4.044734666271836, 56.272715358726771 ], [ -3.996417201692509, 56.269123846888021 ], [ -3.906681077169992, 56.233828844325672 ], [ -3.87810401029185, 56.213830065105412 ], [ -3.838080614328874, 56.215793768967217 ], [ -3.835858527149298, 56.196337592106147 ], [ -3.824412197165202, 56.192539373793011 ], [ -3.861386685447201, 56.129287421077606 ], [ -3.846167974672312, 56.107634996357945 ], [ -3.837473110999952, 56.107376988069525 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-FAL", "NAME_1": "Falkirk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.739103157139537, 56.050704657139647 ], [ -3.721424933999913, 56.03070709800005 ], [ -3.686634894999941, 56.03070709800005 ], [ -3.656239386999914, 56.010199286000045 ], [ -3.577381964999915, 56.01703522300005 ], [ -3.505332689001288, 56.005595312288399 ], [ -3.539468349784499, 55.986608792261904 ], [ -3.598637865145349, 55.991052964822416 ], [ -3.664215256928571, 55.954388535802252 ], [ -3.667264167307508, 55.942167060361498 ], [ -3.719224818770385, 55.931883450360942 ], [ -3.773924323149004, 55.902427884339374 ], [ -3.808883428927118, 55.895219021340722 ], [ -3.815032924729678, 55.90635529206304 ], [ -3.893916999370049, 55.933278714341157 ], [ -3.865029873230071, 55.956068019723318 ], [ -3.922519903770535, 55.957463283703532 ], [ -3.935025600950723, 55.968832099321901 ], [ -3.937247687230979, 55.984386705082329 ], [ -3.974738938551184, 55.98521352828169 ], [ -3.968072678811097, 55.999941310842814 ], [ -3.972826910633444, 56.006349189063769 ], [ -4.007527634892426, 56.004385484302645 ], [ -4.011274176362178, 56.012188626503871 ], [ -3.921589727783726, 56.037329210274834 ], [ -3.739103157139537, 56.050704657139647 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WLN", "NAME_1": "West Lothian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.505332689001288, 56.005595312288399 ], [ -3.449758062784383, 55.996771229701267 ], [ -3.449499681265308, 55.916122138126127 ], [ -3.435159471432485, 55.903358059426864 ], [ -3.393689133746534, 55.892195950282826 ], [ -3.390511033957068, 55.88423777935003 ], [ -3.395291104201135, 55.817316800429978 ], [ -3.422266200624676, 55.807446601579386 ], [ -3.434461839442349, 55.797162991578773 ], [ -3.438079188803556, 55.779954739419679 ], [ -3.457871263348125, 55.769619453474945 ], [ -3.565022344705426, 55.787706203878201 ], [ -3.611169398948618, 55.803829251318859 ], [ -3.688089768827751, 55.795199286817592 ], [ -3.731162075169664, 55.778559475439408 ], [ -3.735864631047889, 55.788843085440021 ], [ -3.718397995571024, 55.812433377398406 ], [ -3.745037197009026, 55.857986152438968 ], [ -3.706409064127001, 55.876899726041472 ], [ -3.728345709686778, 55.883281764941444 ], [ -3.793354660689033, 55.871887111800731 ], [ -3.820613978852066, 55.889095363959825 ], [ -3.773924323149004, 55.902427884339374 ], [ -3.719224818770385, 55.931883450360942 ], [ -3.667264167307508, 55.942167060361498 ], [ -3.664215256928571, 55.954388535802252 ], [ -3.598637865145349, 55.991052964822416 ], [ -3.539468349784499, 55.986608792261904 ], [ -3.505332689001288, 56.005595312288399 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-EDH", "NAME_1": "Edinburgh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.449758062784383, 55.996771229701267 ], [ -3.405425584999932, 55.989732164000031 ], [ -3.331044074999909, 55.994086005000042 ], [ -3.303456183999913, 55.977606512000079 ], [ -3.121815558999913, 55.969305731000077 ], [ -3.078236456999946, 55.946844794000071 ], [ -3.087480435273903, 55.890593980727601 ], [ -3.189593064868063, 55.882635809794749 ], [ -3.360176967892755, 55.811684068564887 ], [ -3.395291104201135, 55.817316800429978 ], [ -3.390511033957068, 55.88423777935003 ], [ -3.393689133746534, 55.892195950282826 ], [ -3.435159471432485, 55.903358059426864 ], [ -3.449499681265308, 55.916122138126127 ], [ -3.449758062784383, 55.996771229701267 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-MLN", "NAME_1": "Midlothian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.078236456999946, 55.946844794000071 ], [ -3.061193270766919, 55.947842768369924 ], [ -3.05559607559843, 55.927284247270165 ], [ -3.028491787066343, 55.911316230359716 ], [ -2.820881719815532, 55.821657620202984 ], [ -2.855582444973891, 55.813286038120111 ], [ -2.886149054135558, 55.78801626224066 ], [ -2.907000494976899, 55.782176825699935 ], [ -2.932528652375424, 55.786052558378856 ], [ -2.927516038134684, 55.805482896818205 ], [ -2.942812262376037, 55.815198066037908 ], [ -3.073682826900949, 55.751325994798776 ], [ -3.095567795617285, 55.736055609878463 ], [ -3.093345710236349, 55.718563136879254 ], [ -3.12088924834012, 55.711896878038488 ], [ -3.145022141758432, 55.722180488039044 ], [ -3.143368496259086, 55.738820299417284 ], [ -3.184192877899022, 55.801607164139284 ], [ -3.230029872880323, 55.776337389159153 ], [ -3.269743211380103, 55.773856920460503 ], [ -3.291447312943149, 55.780781561719664 ], [ -3.297519294379924, 55.793829861259042 ], [ -3.33697424956199, 55.794114081199837 ], [ -3.360176967892755, 55.811684068564887 ], [ -3.189593064868063, 55.882635809794749 ], [ -3.087480435273903, 55.890593980727601 ], [ -3.078236456999946, 55.946844794000071 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-ELN", "NAME_1": "East Lothian" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.061193270766919, 55.947842768369924 ], [ -3.015695766999954, 55.950506903000075 ], [ -2.939930792999917, 55.969305731000077 ], [ -2.882883266999954, 56.008490302000041 ], [ -2.857980923999946, 56.010199286000045 ], [ -2.870961066999939, 56.03070709800005 ], [ -2.802805141999954, 56.064846096000053 ], [ -2.635121222999942, 56.05805084800005 ], [ -2.569406704999949, 56.024481512000079 ], [ -2.583648240999935, 56.002752997000073 ], [ -2.528960740999935, 55.996568101000037 ], [ -2.507923956999946, 56.010199286000045 ], [ -2.360395355201772, 55.952681011534182 ], [ -2.378092209687736, 55.932736111082647 ], [ -2.435866461967635, 55.895219021340722 ], [ -2.400571457606702, 55.88633067532038 ], [ -2.396437344308026, 55.872171331741527 ], [ -2.474468757327315, 55.861603501800118 ], [ -2.48976497977003, 55.851061510280431 ], [ -2.500565354607431, 55.858554593219878 ], [ -2.533069831007879, 55.856332506040303 ], [ -2.547565069572329, 55.841604723479179 ], [ -2.565858527349178, 55.843826808860115 ], [ -2.595029873429951, 55.827703762318777 ], [ -2.640272590107941, 55.833543198859502 ], [ -2.640866868411251, 55.842431545779164 ], [ -2.654457770309875, 55.848270982319946 ], [ -2.73584815117124, 55.828013821580555 ], [ -2.780599941434161, 55.838297431581168 ], [ -2.820881719815532, 55.821657620202984 ], [ -3.028491787066343, 55.911316230359716 ], [ -3.05559607559843, 55.927284247270165 ], [ -3.061193270766919, 55.947842768369924 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NTY", "NAME_1": "North Tyneside" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.455584717801003, 55.069711691551241 ], [ -1.412912563999953, 55.00031159100007 ], [ -1.48997322878148, 54.983144834166751 ], [ -1.626470110307366, 55.044893423492681 ], [ -1.649339789899386, 55.067664185753529 ], [ -1.514191452573471, 55.048009752448081 ], [ -1.493675910315005, 55.049094957166517 ], [ -1.455584717801003, 55.069711691551241 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-STY", "NAME_1": "South Tyneside" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.412912563999953, 55.00031159100007 ], [ -1.362660285999937, 54.964789130000042 ], [ -1.360340949999909, 54.917059637000079 ], [ -1.396808690768466, 54.920312936792584 ], [ -1.45747397114684, 54.909479850914352 ], [ -1.525722412359471, 54.921396244840821 ], [ -1.51922256047277, 54.939812491553198 ], [ -1.532222263346796, 54.953895502475405 ], [ -1.518139252424589, 54.967978514296988 ], [ -1.48997322878148, 54.983144834166751 ], [ -1.412912563999953, 55.00031159100007 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SND", "NAME_1": "Sunderland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.360340949999909, 54.917059637000079 ], [ -1.353138800999943, 54.91351959800005 ], [ -1.355824347999942, 54.904282945000034 ], [ -1.340820267102664, 54.872682344323849 ], [ -1.389857956579419, 54.860734361201764 ], [ -1.403578049687269, 54.834637763022329 ], [ -1.402053595397092, 54.811435044691507 ], [ -1.41127783910099, 54.80128062590012 ], [ -1.440449185181762, 54.796965644548834 ], [ -1.515560879031341, 54.804200344170511 ], [ -1.523234829124078, 54.831743883173658 ], [ -1.55235449926073, 54.857840481353094 ], [ -1.55390479197257, 54.872361559238527 ], [ -1.577316381445883, 54.885974822779815 ], [ -1.557138361046555, 54.919229627845027 ], [ -1.525722412359471, 54.921396244840821 ], [ -1.45747397114684, 54.909479850914352 ], [ -1.396808690768466, 54.920312936792584 ], [ -1.360340949999909, 54.917059637000079 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-DUR", "NAME_1": "Durham" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.340820267102664, 54.872682344323849 ], [ -1.296783006999931, 54.77993398600006 ], [ -1.275461391999954, 54.748439846000053 ], [ -1.245347013213661, 54.725398843778088 ], [ -1.294179042728672, 54.711337795802592 ], [ -1.305031094409514, 54.693251044500073 ], [ -1.325856695929758, 54.682166449721876 ], [ -1.333659837231721, 54.647414049518716 ], [ -1.379470993791358, 54.63883576096157 ], [ -1.412595587816156, 54.599975084082814 ], [ -1.450086839136304, 54.57951121686915 ], [ -1.483211432261783, 54.572483221923108 ], [ -1.572482468790895, 54.572483221923108 ], [ -1.628654750616249, 54.595582587466424 ], [ -1.672760585732476, 54.591551826055877 ], [ -1.680770432609393, 54.57852936493822 ], [ -1.681778122961987, 54.531090400401638 ], [ -1.766966722136544, 54.528558254859547 ], [ -1.767250942077339, 54.513830471399103 ], [ -1.787249722196918, 54.481636054260491 ], [ -1.835877244239441, 54.504373683698532 ], [ -1.84975236697818, 54.493263251397934 ], [ -1.85088924764068, 54.480499172698615 ], [ -1.930600144581035, 54.454660956038254 ], [ -1.956154141300601, 54.454402574519179 ], [ -2.045580206561283, 54.47967235039863 ], [ -2.099762946103112, 54.467993476417803 ], [ -2.138933682243646, 54.449648341797513 ], [ -2.15518591999421, 54.455642808868504 ], [ -2.150328335384359, 54.473006089759224 ], [ -2.163092414083678, 54.527989814078637 ], [ -2.191695319383484, 54.531348781920713 ], [ -2.209472012323545, 54.552174384340333 ], [ -2.285255499741538, 54.587986151739472 ], [ -2.305590175746033, 54.627725327761652 ], [ -2.286159837306684, 54.640231024941841 ], [ -2.280578783184296, 54.657697659519329 ], [ -2.353933477847761, 54.690770575801423 ], [ -2.327216762943237, 54.727435003922267 ], [ -2.305021734965123, 54.783219713019321 ], [ -2.272517258564619, 54.792159735883104 ], [ -2.211409877763685, 54.77856883398448 ], [ -2.191411099442689, 54.800221258704084 ], [ -2.160327725444176, 54.803528551501415 ], [ -2.133120083225265, 54.821873684323066 ], [ -2.129735276961469, 54.836885687724305 ], [ -2.082244634682127, 54.830503647924957 ], [ -1.99307695094052, 54.864661769824806 ], [ -1.904193488039027, 54.834120999084803 ], [ -1.86670223581956, 54.848280340865017 ], [ -1.821717901559907, 54.893833115905522 ], [ -1.820064256060562, 54.904659329164701 ], [ -1.59532345191576, 54.892618719977918 ], [ -1.560028449353467, 54.879596258860204 ], [ -1.55235449926073, 54.857840481353094 ], [ -1.523234829124078, 54.831743883173658 ], [ -1.515560879031341, 54.804200344170511 ], [ -1.474168056610552, 54.796965644548834 ], [ -1.41127783910099, 54.80128062590012 ], [ -1.402053595397092, 54.811435044691507 ], [ -1.403578049687269, 54.834637763022329 ], [ -1.389857956579419, 54.860734361201764 ], [ -1.340820267102664, 54.872682344323849 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-HPL", "NAME_1": "Hartlepool" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.245347013213661, 54.725398843778088 ], [ -1.172230597999942, 54.701239325000074 ], [ -1.172230597999942, 54.693793036000045 ], [ -1.192453579999949, 54.689276434000078 ], [ -1.16470292899993, 54.652777411000045 ], [ -1.206288214999915, 54.632961330000057 ], [ -1.192595770437801, 54.619979483026022 ], [ -1.209352178760071, 54.606615506300557 ], [ -1.318725348196267, 54.611628120541297 ], [ -1.388488531920245, 54.626691799886601 ], [ -1.379470993791358, 54.63883576096157 ], [ -1.333659837231721, 54.647414049518716 ], [ -1.325856695929758, 54.682166449721876 ], [ -1.305031094409514, 54.693251044500073 ], [ -1.294179042728672, 54.711337795802592 ], [ -1.245347013213661, 54.725398843778088 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-RCC", "NAME_1": "Redcar and Cleveland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.192595770437801, 54.619979483026022 ], [ -1.172230597999942, 54.626125393000052 ], [ -1.16470292899993, 54.611802476000037 ], [ -1.15265865799995, 54.613185940000051 ], [ -1.138050910999937, 54.646551825000074 ], [ -1.103627081999946, 54.624660549000055 ], [ -1.042062954999949, 54.617092190000051 ], [ -0.993478969999956, 54.598130601000037 ], [ -0.778835821815733, 54.557316188890979 ], [ -0.8294528870411, 54.529953517940498 ], [ -0.837798630702252, 54.515794176160284 ], [ -0.838341233960762, 54.487165432438701 ], [ -0.880845098622387, 54.495795396939968 ], [ -0.932521531943166, 54.486596992557111 ], [ -0.976136439744892, 54.499929511138021 ], [ -1.029182297724844, 54.492436428198573 ], [ -1.074476691246332, 54.504942125378761 ], [ -1.114190028846735, 54.498017483220224 ], [ -1.179534878431923, 54.503805243816942 ], [ -1.210127326015311, 54.53977203994765 ], [ -1.219739142447452, 54.566514594173157 ], [ -1.211703457148815, 54.606641343822957 ], [ -1.192595770437801, 54.619979483026022 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NYK", "NAME_1": "North Yorkshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.778835821815733, 54.557411071732488 ], [ -0.534657355999911, 54.461004950000074 ], [ -0.522857225999928, 54.447088934000078 ], [ -0.520415818999936, 54.420070705000057 ], [ -0.462757941999939, 54.38898346600007 ], [ -0.430572068999936, 54.349310614000046 ], [ -0.414540167999917, 54.297308661000045 ], [ -0.390736456999946, 54.28351471600007 ], [ -0.397572394999941, 54.269191799000055 ], [ -0.362782355999911, 54.24249909100007 ], [ -0.322010870999918, 54.236070054000038 ], [ -0.277088995999918, 54.217759507000039 ], [ -0.260365363999938, 54.176988023000035 ], [ -0.233876105999911, 54.16046784100007 ], [ -0.199894358530032, 54.152449549000202 ], [ -0.222849087315524, 54.133001003693323 ], [ -0.294472622113801, 54.136024074751219 ], [ -0.355037400555602, 54.149408271074833 ], [ -0.373925136635762, 54.165479640772787 ], [ -0.398083869375057, 54.169923815131938 ], [ -0.415860562315117, 54.162714952133285 ], [ -0.420304734875629, 54.13855622029331 ], [ -0.44862342023464, 54.123544216892071 ], [ -0.441698778076159, 54.114113268512483 ], [ -0.446711392316899, 54.107162787032962 ], [ -0.513348151296157, 54.083262438510701 ], [ -0.570864020258341, 54.084657700692333 ], [ -0.641169806341509, 54.058819484931234 ], [ -0.640859747978993, 54.032154445970889 ], [ -0.665586920599935, 54.024919745449893 ], [ -0.668377447661101, 54.007143053409152 ], [ -0.701967128779984, 54.008279934071652 ], [ -0.733903164399521, 54.022180895232111 ], [ -0.889345871914486, 54.007143053409152 ], [ -0.92797400569583, 53.971848049947539 ], [ -0.98747941694154, 53.974664415430425 ], [ -1.004248420428269, 53.990038154037563 ], [ -1.007038946590114, 54.027761949354442 ], [ -1.026598477138009, 54.0389240593978 ], [ -1.092279221708736, 54.040345160900415 ], [ -1.146772019613024, 54.027761949354442 ], [ -1.177519496827301, 53.980271307974476 ], [ -1.232012294731646, 53.969057521986997 ], [ -1.234828660214532, 53.945338039718706 ], [ -1.218033820104722, 53.914590563403749 ], [ -1.177519496827301, 53.876866767187551 ], [ -1.141190964591374, 53.860071926178421 ], [ -1.025203213157795, 53.857281399117255 ], [ -0.969340989694956, 53.871259873744179 ], [ -0.940505540398362, 53.867978421167152 ], [ -0.941125658022713, 53.835499783188425 ], [ -0.920300054703773, 53.807723701087923 ], [ -0.934201015864176, 53.768294583428258 ], [ -0.963682420307464, 53.742973130705366 ], [ -0.925571051362965, 53.722715969066712 ], [ -1.020604010067018, 53.694655667025359 ], [ -1.093881191263961, 53.713569241527239 ], [ -1.095043911247501, 53.693544622985939 ], [ -1.109745856286224, 53.675483710105084 ], [ -1.073934088887086, 53.647681790482238 ], [ -1.111709561047405, 53.643547675384866 ], [ -1.126437343608529, 53.63383250616522 ], [ -1.15224972184717, 53.641067205786896 ], [ -1.199481980808798, 53.638535061144125 ], [ -1.214752366628431, 53.61993154590408 ], [ -1.229971075604681, 53.620655016315936 ], [ -1.246972622188764, 53.635486152563885 ], [ -1.245293138267755, 53.671918036687998 ], [ -1.226922166125064, 53.694397285506284 ], [ -1.211703457148815, 53.699099840485246 ], [ -1.211135016367905, 53.710210272785844 ], [ -1.259452480047912, 53.717703355725234 ], [ -1.28836544371029, 53.737443753426476 ], [ -1.306917283905534, 53.737960517363945 ], [ -1.304204271210153, 53.749639391344829 ], [ -1.287280238991855, 53.758527737365171 ], [ -1.288675502972069, 53.770206611345998 ], [ -1.307537400630565, 53.790205390566314 ], [ -1.30531531435031, 53.819660955688505 ], [ -1.344460212069123, 53.858831691829096 ], [ -1.305599535190424, 53.860795397489596 ], [ -1.30782162057136, 53.894695136071618 ], [ -1.29141435408917, 53.914952297710329 ], [ -1.294179042728672, 53.925494290129336 ], [ -1.333659837231721, 53.944924628568742 ], [ -1.386679856789954, 53.939395250390476 ], [ -1.423370124231838, 53.924357408567516 ], [ -1.433033616608157, 53.910714829825508 ], [ -1.454737718171145, 53.906063950790667 ], [ -1.507215135370188, 53.910714829825508 ], [ -1.534474452633901, 53.935209459349039 ], [ -1.548633796212755, 53.924667466930032 ], [ -1.554912482325221, 53.905392158121572 ], [ -1.695859951275736, 53.901309718968321 ], [ -1.728648646717659, 53.902704982948592 ], [ -1.797843389660727, 53.943012599751626 ], [ -1.835593024298646, 53.939937852749665 ], [ -1.846057502351869, 53.931385403513559 ], [ -1.871792365325405, 53.940377102321406 ], [ -1.877089198607621, 53.962649645564682 ], [ -1.901971400859452, 53.954949856150904 ], [ -1.943648444120413, 53.957688707268005 ], [ -1.95532731810124, 53.950505682691073 ], [ -1.950883144641409, 53.931902167451028 ], [ -1.97362077497877, 53.917174383990584 ], [ -1.963905604859804, 53.897175604770325 ], [ -1.966127692039379, 53.876350003250025 ], [ -2.002817958581943, 53.869942125029013 ], [ -2.032557746342945, 53.847617905841673 ], [ -2.066121589040108, 53.862733262929737 ], [ -2.097540858923537, 53.888545641168378 ], [ -2.105033941862928, 53.914642239347813 ], [ -2.174177007962555, 53.9360362825484 ], [ -2.178621182321706, 53.954639797788388 ], [ -2.190584276243385, 53.965750230988363 ], [ -2.222236090123488, 53.967972317268618 ], [ -2.227507086782623, 53.982700099829742 ], [ -2.287245042025063, 53.971072902692299 ], [ -2.300009120724326, 53.989107978050697 ], [ -2.335071580189265, 53.991045844390158 ], [ -2.347525601425389, 54.002182115112475 ], [ -2.336957769685341, 54.017995104190675 ], [ -2.354734462625345, 54.042438055971502 ], [ -2.448630539767578, 54.039905911328731 ], [ -2.458345709886601, 54.047166450271448 ], [ -2.459456753026757, 54.071583564529874 ], [ -2.467828335109573, 54.079670925772575 ], [ -2.519194709168517, 54.097163397872464 ], [ -2.545032924929558, 54.113544826832253 ], [ -2.55144080225125, 54.128272610292697 ], [ -2.547565069572329, 54.151061917473498 ], [ -2.518910488328402, 54.160208645012915 ], [ -2.45335893406758, 54.217156074093509 ], [ -2.447519496627478, 54.230230211155288 ], [ -2.400571457606702, 54.228266507293426 ], [ -2.352512376345089, 54.250487371894678 ], [ -2.329464686745894, 54.240772203574295 ], [ -2.303910691824967, 54.248549506454538 ], [ -2.300319179986161, 54.265215156254442 ], [ -2.311429613186135, 54.28133820279578 ], [ -2.306132778105223, 54.320508938037051 ], [ -2.347241379685954, 54.350222887376333 ], [ -2.283369310245462, 54.382727362877461 ], [ -2.295564948163815, 54.417712307077295 ], [ -2.276703049606056, 54.435489000017299 ], [ -2.244741177363437, 54.447994697197487 ], [ -2.194175788082191, 54.446599433217216 ], [ -2.168389248265214, 54.459673570278994 ], [ -2.138933682243646, 54.449648341797513 ], [ -2.099762946103112, 54.467993476417803 ], [ -2.045580206561283, 54.47967235039863 ], [ -1.956154141300601, 54.454402574519179 ], [ -1.930600144581035, 54.454660956038254 ], [ -1.85088924764068, 54.480499172698615 ], [ -1.84975236697818, 54.493263251397934 ], [ -1.835877244239441, 54.504373683698532 ], [ -1.787249722196918, 54.481636054260491 ], [ -1.767250942077339, 54.513830471399103 ], [ -1.766966722136544, 54.528558254859547 ], [ -1.724772914938058, 54.524940903699701 ], [ -1.713584967372356, 54.531607164339164 ], [ -1.662244431735132, 54.530780341139803 ], [ -1.642271490936594, 54.523287259099675 ], [ -1.6300241761748, 54.508275254799116 ], [ -1.600336066156558, 54.512435208318209 ], [ -1.577805142293471, 54.489645901137408 ], [ -1.532536587193761, 54.465202949356581 ], [ -1.520315110853687, 54.466598212437532 ], [ -1.525586106613559, 54.480757555117066 ], [ -1.495045334974236, 54.478845527199269 ], [ -1.460318773192853, 54.441586818976475 ], [ -1.446133592091599, 54.451043605777784 ], [ -1.466674973671104, 54.48272125897887 ], [ -1.459466111571828, 54.49853424715775 ], [ -1.416703863592431, 54.477708644738129 ], [ -1.408358119931279, 54.492436428198573 ], [ -1.382106493020274, 54.493521633816329 ], [ -1.369729987049254, 54.488819077938047 ], [ -1.361978521691412, 54.467450873159237 ], [ -1.326683519129119, 54.462154038977701 ], [ -1.248342047747315, 54.487423814857152 ], [ -1.235009528267142, 54.499671128719569 ], [ -1.201704067089054, 54.505768948578066 ], [ -1.114190028846735, 54.498017483220224 ], [ -1.074476691246332, 54.504942125378761 ], [ -1.029182297724844, 54.492436428198573 ], [ -0.976136439744892, 54.499929511138021 ], [ -0.932521531943166, 54.486596992557111 ], [ -0.880845098622387, 54.495795396939968 ], [ -0.838341233960762, 54.487165432438701 ], [ -0.837798630702252, 54.515794176160284 ], [ -0.8294528870411, 54.529953517940498 ], [ -0.778835821815733, 54.557411071732488 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-ERY", "NAME_1": "East Riding of Yorkshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.199894358530032, 54.152449549000202 ], [ -0.111439581999946, 54.131577867000033 ], [ -0.075510219999956, 54.112127997000073 ], [ -0.163929816999939, 54.083400783000059 ], [ -0.194691535999937, 54.062323309000078 ], [ -0.219471808999913, 54.022772528000075 ], [ -0.197417772999927, 53.994818427000041 ], [ -0.151112433999913, 53.899318752000056 ], [ 0.133474155000044, 53.642645575000074 ], [ 0.149261915000068, 53.609605210000041 ], [ 0.131195509000065, 53.573431708000044 ], [ 0.109629754000082, 53.562892971000053 ], [ 0.135996941000087, 53.610663153000075 ], [ 0.056162957000083, 53.64126211100006 ], [ 0.014821811000047, 53.643255927000041 ], [ -0.045033331999946, 53.625555731000077 ], [ -0.112619594999956, 53.637518622000073 ], [ -0.225331183999913, 53.719916083000044 ], [ -0.260365363999938, 53.735419012000079 ], [ -0.295643683999913, 53.738796291000085 ], [ -0.322868821838654, 53.77738963502361 ], [ -0.360334234737138, 53.789843655360357 ], [ -0.386430832916631, 53.788732612220258 ], [ -0.42611833299469, 53.773978990338094 ], [ -0.44423092271893, 53.749019272821158 ], [ -0.449696417999917, 53.71430084800005 ], [ -0.544422980999911, 53.709458726000037 ], [ -0.579172329999949, 53.72797272300005 ], [ -0.658355272999927, 53.72797272300005 ], [ -0.726470506999931, 53.70062897300005 ], [ -0.700313483280638, 53.688144436016898 ], [ -0.844051479292318, 53.613833726944904 ], [ -0.860717129092222, 53.61243846296469 ], [ -0.860019497102144, 53.632437242184949 ], [ -0.941409877963508, 53.656880194865096 ], [ -0.996419439805322, 53.659954941867056 ], [ -1.073934088887086, 53.647681790482238 ], [ -1.109745856286224, 53.675483710105084 ], [ -1.095043911247501, 53.693544622985939 ], [ -1.093881191263961, 53.713569241527239 ], [ -1.020604010067018, 53.694655667025359 ], [ -0.925571051362965, 53.722715969066712 ], [ -0.963682420307464, 53.742973130705366 ], [ -0.934201015864176, 53.768294583428258 ], [ -0.920300054703773, 53.807723701087923 ], [ -0.941125658022713, 53.835499783188425 ], [ -0.940040452404958, 53.891904609010453 ], [ -0.920868496384003, 53.943839422950987 ], [ -0.929756842404345, 53.969109198830438 ], [ -0.889345871914486, 54.007143053409152 ], [ -0.733903164399521, 54.022180895232111 ], [ -0.701967128779984, 54.008279934071652 ], [ -0.668377447661101, 54.007143053409152 ], [ -0.665586920599935, 54.024919745449893 ], [ -0.640859747978993, 54.032154445970889 ], [ -0.641169806341509, 54.058819484931234 ], [ -0.570864020258341, 54.084657700692333 ], [ -0.513348151296157, 54.083262438510701 ], [ -0.446711392316899, 54.107162787032962 ], [ -0.441698778076159, 54.114113268512483 ], [ -0.44862342023464, 54.123544216892071 ], [ -0.420304734875629, 54.13855622029331 ], [ -0.415860562315117, 54.162714952133285 ], [ -0.398083869375057, 54.169923815131938 ], [ -0.373925136635762, 54.165479640772787 ], [ -0.355037400555602, 54.149408271074833 ], [ -0.294472622113801, 54.136024074751219 ], [ -0.222849087315524, 54.133001003693323 ], [ -0.199894358530032, 54.152449549000202 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-KHL", "NAME_1": "Kingston upon Hull" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.295643683999913, 53.738796291000085 ], [ -0.431141730999911, 53.71430084800005 ], [ -0.449696417999917, 53.71430084800005 ], [ -0.44423092271893, 53.749019272821158 ], [ -0.42611833299469, 53.773978990338094 ], [ -0.386430832916631, 53.788732612220258 ], [ -0.341033088406334, 53.787569892236718 ], [ -0.309277919940087, 53.764909776265142 ], [ -0.295643683999913, 53.738796291000085 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NLN", "NAME_1": "North Lincolnshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.699251737664361, 53.691255582021817 ], [ -0.692453579999949, 53.686997789000031 ], [ -0.677479620999918, 53.702826239000046 ], [ -0.649810350999928, 53.710598049000055 ], [ -0.619536912999934, 53.711859442000048 ], [ -0.52993730399993, 53.677679755000042 ], [ -0.486317511999914, 53.694484768000052 ], [ -0.307240363999938, 53.714260158000059 ], [ -0.279367641999954, 53.707098700000074 ], [ -0.198468688256314, 53.629559920648411 ], [ -0.274835578099442, 53.616727606793575 ], [ -0.292250534934226, 53.601586412183167 ], [ -0.290855271853331, 53.582982896943122 ], [ -0.327519700873495, 53.557997341903786 ], [ -0.416687383715782, 53.566084703146487 ], [ -0.476967943116108, 53.538282783523641 ], [ -0.400590175596164, 53.531358141365104 ], [ -0.387257656115935, 53.516604519482939 ], [ -0.458932867757653, 53.503814602361956 ], [ -0.471438564038522, 53.486347967784468 ], [ -0.466994390578691, 53.472447008422648 ], [ -0.50781877311789, 53.461905016003641 ], [ -0.603368495759469, 53.452706610721464 ], [ -0.621403571117924, 53.464953925483258 ], [ -0.609466314718645, 53.488001614183133 ], [ -0.615874192939657, 53.505209866342227 ], [ -0.739716763417903, 53.513839829944175 ], [ -0.747235683879694, 53.486606350202862 ], [ -0.797155117114983, 53.4522931995715 ], [ -0.91001644470316, 53.460509752023427 ], [ -0.890870327103926, 53.471310125961509 ], [ -0.919369879616283, 53.487433173402223 ], [ -0.943347744302969, 53.51799978346321 ], [ -0.914770677424826, 53.533011786864449 ], [ -0.871956752602046, 53.530789700584194 ], [ -0.872835251745471, 53.545775865563712 ], [ -0.904487067424213, 53.571614081324753 ], [ -0.860897996245512, 53.581587632962851 ], [ -0.855291103701461, 53.598279120285156 ], [ -0.860717129092222, 53.61243846296469 ], [ -0.844051479292318, 53.613833726944904 ], [ -0.699251737664361, 53.691255582021817 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NEL", "NAME_1": "North East Lincolnshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.198468688256314, 53.629559920648411 ], [ -0.09593665299991, 53.577134507000039 ], [ -0.046620245999918, 53.570379950000074 ], [ 0.02179499392032, 53.524706141076592 ], [ -0.058078783309213, 53.510222480582968 ], [ -0.092521125149801, 53.461905016003641 ], [ -0.072806565870337, 53.442448839142571 ], [ -0.113630946610897, 53.426868394960422 ], [ -0.190577154911807, 53.477433784241725 ], [ -0.184195116011779, 53.501334134562626 ], [ -0.197811855432803, 53.535492255563099 ], [ -0.170319993273097, 53.557454739544539 ], [ -0.170810919688222, 53.564663600744552 ], [ -0.208638067792606, 53.566084703146487 ], [ -0.237525193932584, 53.589649155783889 ], [ -0.282096117042158, 53.606288967162072 ], [ -0.274835578099442, 53.616727606793575 ], [ -0.198468688256314, 53.629559920648411 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-LIN", "NAME_1": "Lincolnshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.02179499392032, 53.524706141076592 ], [ 0.095957879000082, 53.488348700000074 ], [ 0.151866082000083, 53.475816148000035 ], [ 0.167816602000073, 53.464504299000055 ], [ 0.175791863000086, 53.437689520000049 ], [ 0.219493035000085, 53.419501044000071 ], [ 0.211924675000091, 53.412665106000077 ], [ 0.229340040000068, 53.404771226000037 ], [ 0.256114129000082, 53.375067450000074 ], [ 0.342133009000065, 53.226304429000038 ], [ 0.356211785000085, 53.188544012000079 ], [ 0.356618686000047, 53.145738023000035 ], [ 0.32984459700009, 53.086493231000077 ], [ 0.282481316000087, 53.07485586100006 ], [ 0.19304446700005, 53.020086981000077 ], [ 0.160817905000044, 53.008978583000044 ], [ 0.082123243000069, 52.938666083000044 ], [ 0.022146030000044, 52.912583726000037 ], [ 0.008555535000085, 52.898627020000049 ], [ 0.010264519000089, 52.886460679000038 ], [ 0.105642123000052, 52.889349677000041 ], [ 0.170909050000091, 52.862127997000073 ], [ 0.246755405000044, 52.795721747000073 ], [ 0.278786788862686, 52.804961166665485 ], [ 0.262470126794881, 52.775771186491056 ], [ 0.27885155575467, 52.762464505432547 ], [ 0.2763452486343, 52.75634084715233 ], [ 0.199657423651161, 52.721640122893348 ], [ 0.149402092732373, 52.725205797209753 ], [ 0.097441440370176, 52.707997545050659 ], [ 0.060260247412486, 52.705517076351953 ], [ 0.052767165372359, 52.700504462111212 ], [ 0.057185500410526, 52.670480455308734 ], [ 0.03219994537119, 52.648001207389768 ], [ -0.051412522669807, 52.658284817390381 ], [ -0.137531296931797, 52.638544419689197 ], [ -0.18308407197236, 52.641903388430592 ], [ -0.199491340253132, 52.656217759841695 ], [ -0.261993984135074, 52.647432765709539 ], [ -0.315014003693307, 52.663555813150253 ], [ -0.401985438677059, 52.636890774189851 ], [ -0.508903977836326, 52.642420152368118 ], [ -0.513089768877762, 52.652703762368731 ], [ -0.449734463374796, 52.661592109288392 ], [ -0.420304734875629, 52.675493069549475 ], [ -0.415317959056551, 52.686603501850129 ], [ -0.515570237576412, 52.709651191449325 ], [ -0.526422288357935, 52.724947414791359 ], [ -0.563655158159008, 52.740502021451107 ], [ -0.650290697257901, 52.746341457991889 ], [ -0.676154751440663, 52.806906236433633 ], [ -0.690598314060935, 52.816621406552656 ], [ -0.723619554398908, 52.865765693431968 ], [ -0.753669398723787, 52.870778306773389 ], [ -0.763100348002695, 52.894652817773306 ], [ -0.744470994340929, 52.928294175735573 ], [ -0.764469773561189, 52.943848782395378 ], [ -0.766717699162484, 52.961160387341977 ], [ -0.786406419120965, 52.986611030374718 ], [ -0.781445481723608, 53.006067206336468 ], [ -0.738915777740942, 53.036323758034996 ], [ -0.688634609299811, 53.049682115037569 ], [ -0.695869309820807, 53.070197659094674 ], [ -0.711966518839802, 53.083013413738001 ], [ -0.703104010341804, 53.096604316535945 ], [ -0.714188605120057, 53.108283188718133 ], [ -0.707238125439176, 53.11768830047464 ], [ -0.70615291982142, 53.160218004457306 ], [ -0.738347336960032, 53.161329046698143 ], [ -0.745013596700119, 53.170759995976994 ], [ -0.730828415598921, 53.191637275240055 ], [ -0.706411302239815, 53.193549303157795 ], [ -0.692251959560281, 53.203832913158408 ], [ -0.664475876560459, 53.203264472377498 ], [ -0.636699795359277, 53.23468374316019 ], [ -0.644787156601978, 53.243262030818016 ], [ -0.656956956098668, 53.231324775318114 ], [ -0.679203660020903, 53.241608385318727 ], [ -0.704757655841149, 53.241039944537761 ], [ -0.723929612761424, 53.229361070556934 ], [ -0.776536221169692, 53.234192816745065 ], [ -0.768345506240109, 53.278660387067191 ], [ -0.744961920756054, 53.322714545339977 ], [ -0.763048672058574, 53.362531235727943 ], [ -0.779533453805868, 53.372969876258765 ], [ -0.775502692395321, 53.401288560718456 ], [ -0.798653733882702, 53.429142158084119 ], [ -0.797155117114983, 53.4522931995715 ], [ -0.747235683879694, 53.486606350202862 ], [ -0.739716763417903, 53.513839829944175 ], [ -0.615874192939657, 53.505209866342227 ], [ -0.609466314718645, 53.488001614183133 ], [ -0.621403571117924, 53.464953925483258 ], [ -0.603368495759469, 53.452706610721464 ], [ -0.568926153918881, 53.451052965222118 ], [ -0.466994390578691, 53.472447008422648 ], [ -0.471438564038522, 53.486347967784468 ], [ -0.458932867757653, 53.503814602361956 ], [ -0.399194911615893, 53.509938258843533 ], [ -0.387257656115935, 53.516604519482939 ], [ -0.388342860834371, 53.524640203882257 ], [ -0.476967943116108, 53.538282783523641 ], [ -0.416687383715782, 53.566084703146487 ], [ -0.327519700873495, 53.557997341903786 ], [ -0.290855271853331, 53.582982896943122 ], [ -0.286695319233615, 53.607994290404179 ], [ -0.237525193932584, 53.589649155783889 ], [ -0.208638067792606, 53.566084703146487 ], [ -0.170810919688222, 53.564663600744552 ], [ -0.170319993273097, 53.557454739544539 ], [ -0.197811855432803, 53.535492255563099 ], [ -0.184195116011779, 53.501334134562626 ], [ -0.190577154911807, 53.477433784241725 ], [ -0.113630946610897, 53.426868394960422 ], [ -0.072806565870337, 53.442448839142571 ], [ -0.092521125149801, 53.461905016003641 ], [ -0.058078783309213, 53.510222480582968 ], [ 0.02179499392032, 53.524706141076592 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NFK", "NAME_1": "Norfolk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.278786788862686, 52.804961166665485 ], [ 0.32553144600007, 52.803168036000045 ], [ 0.38453209700009, 52.768377997000073 ], [ 0.379242384000065, 52.790838934000078 ], [ 0.438649936000047, 52.840725002000056 ], [ 0.45671634200005, 52.891994533000059 ], [ 0.48568769600007, 52.933498440000051 ], [ 0.520274285000085, 52.955267645000049 ], [ 0.569590691000087, 52.969305731000077 ], [ 0.671885613000086, 52.974432684000078 ], [ 0.664398634000065, 52.98187897300005 ], [ 0.684743686000047, 52.986395575000074 ], [ 0.750498894000089, 52.974432684000078 ], [ 0.83570397200009, 52.974432684000078 ], [ 0.96843509200005, 52.947495835000041 ], [ 1.013926629000082, 52.960150458000044 ], [ 0.966075066000087, 52.967596747000073 ], [ 0.966075066000087, 52.974432684000078 ], [ 1.274668816000087, 52.929185289000031 ], [ 1.396006707000083, 52.891424872000073 ], [ 1.64421634200005, 52.775824286000045 ], [ 1.673350457000083, 52.755682684000078 ], [ 1.69703209700009, 52.731024481000077 ], [ 1.747243686000047, 52.625189520000049 ], [ 1.740733269000089, 52.603908596000053 ], [ 1.747569207000083, 52.532782294000071 ], [ 1.690780877335612, 52.542167873848257 ], [ 1.663289015175906, 52.531884263847644 ], [ 1.653057082018734, 52.510774441487285 ], [ 1.675794712356094, 52.49271352770711 ], [ 1.700289340980305, 52.48772675188809 ], [ 1.702459751316439, 52.477158921946682 ], [ 1.66049848811474, 52.459123847487547 ], [ 1.640551384838545, 52.453542792465896 ], [ 1.584430779856575, 52.469924221425629 ], [ 1.570788202013887, 52.449667059786975 ], [ 1.544123162154222, 52.457728583507276 ], [ 1.464438103635587, 52.451320706185641 ], [ 1.430021600216662, 52.461345933767802 ], [ 1.4249573100318, 52.454395453187601 ], [ 1.44056359173635, 52.439667669727157 ], [ 1.363048943553906, 52.422433580045663 ], [ 1.3235681490508, 52.383572903166908 ], [ 1.274372186227424, 52.381893419245898 ], [ 1.234684686149308, 52.360473538522967 ], [ 1.202438592167312, 52.353833116305225 ], [ 1.035006952309004, 52.374116116365656 ], [ 0.973305291406064, 52.359930935264401 ], [ 0.931344028204308, 52.382177639186693 ], [ 0.881321242181571, 52.382694404023482 ], [ 0.837706332581149, 52.395225938726071 ], [ 0.751406691165869, 52.379387112125471 ], [ 0.733836703800819, 52.38770701826428 ], [ 0.693322381422774, 52.389102281345174 ], [ 0.669964634360383, 52.398843288986598 ], [ 0.666347284099857, 52.41271841082596 ], [ 0.709652134438443, 52.437419745025181 ], [ 0.676372510782755, 52.446876532725753 ], [ 0.638545362678315, 52.439667669727157 ], [ 0.558343540222211, 52.446333930366563 ], [ 0.491887648396244, 52.431321926066005 ], [ 0.447213371599787, 52.43217458768703 ], [ 0.398043247198075, 52.455222276386905 ], [ 0.362464022896347, 52.490491441426855 ], [ 0.328538445892548, 52.503281358547838 ], [ 0.285776197913208, 52.499948229127426 ], [ 0.253013339993629, 52.487442531947238 ], [ 0.233893059916795, 52.506872870386644 ], [ 0.235805087834535, 52.515218614047797 ], [ 0.223041009135272, 52.521600653847088 ], [ 0.218260938891206, 52.543253079466012 ], [ 0.228312004895088, 52.560771389088302 ], [ 0.217459954113565, 52.572450263069186 ], [ 0.219914585289871, 52.584387519468407 ], [ 0.245856153838417, 52.601337389209107 ], [ 0.184671257772322, 52.629966132031313 ], [ 0.201646965934742, 52.650481676088475 ], [ 0.197435337370905, 52.661075344451547 ], [ 0.15705020530271, 52.670170396946219 ], [ 0.172372267066464, 52.724327298066328 ], [ 0.199657423651161, 52.721640122893348 ], [ 0.2763452486343, 52.75634084715233 ], [ 0.27885155575467, 52.762464505432547 ], [ 0.262470126794881, 52.775771186491056 ], [ 0.278786788862686, 52.804961166665485 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SFK", "NAME_1": "Suffolk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.747569207000083, 52.532782294000071 ], [ 1.77116946700005, 52.485907294000071 ], [ 1.754405144000089, 52.467352606000077 ], [ 1.729258660000085, 52.415594794000071 ], [ 1.72787519600007, 52.396307684000078 ], [ 1.683604363000086, 52.32453034100007 ], [ 1.63054446700005, 52.270453192000048 ], [ 1.630869988000086, 52.199774481000077 ], [ 1.58757571700005, 52.086981512000079 ], [ 1.50367272200009, 52.060980536000045 ], [ 1.486827019000089, 52.049017645000049 ], [ 1.47201582100007, 52.056219794000071 ], [ 1.463877800000091, 52.035142320000034 ], [ 1.424815300000091, 52.001857815000051 ], [ 1.332286004000082, 51.94009023600006 ], [ 1.264414910000085, 51.994370835000041 ], [ 1.234873894000089, 52.00031159100007 ], [ 1.18523196700005, 52.025091864000046 ], [ 1.15788821700005, 52.028509833000044 ], [ 1.15788821700005, 52.021673895000049 ], [ 1.214366082000083, 51.991441148000035 ], [ 1.270762566000087, 51.981512762000079 ], [ 1.274424675000091, 51.960882880000042 ], [ 1.205739780000044, 51.95343659100007 ], [ 1.165293816000087, 51.967027085000041 ], [ 1.143077019000089, 51.966050523000035 ], [ 1.05805464010956, 51.949025783912759 ], [ 0.914394159362928, 51.968275255198819 ], [ 0.787786899345917, 51.954658514878531 ], [ 0.747996047379672, 51.993002427819761 ], [ 0.73776411332318, 52.016334337359751 ], [ 0.71864383324629, 52.014654853438685 ], [ 0.709445427964113, 52.034111030299755 ], [ 0.715233187661454, 52.044058743516189 ], [ 0.701073845881297, 52.067442328100924 ], [ 0.678336216443199, 52.077183335742347 ], [ 0.636064893979665, 52.074961249462092 ], [ 0.524960564678281, 52.048270372079969 ], [ 0.501396112040936, 52.053567206261562 ], [ 0.489097121335078, 52.06912181292131 ], [ 0.408921136401318, 52.059303290014782 ], [ 0.398043247198075, 52.104365139539539 ], [ 0.453001133095825, 52.159917303740542 ], [ 0.498605584080451, 52.160795802883968 ], [ 0.498295525717936, 52.177177231843757 ], [ 0.516072217758619, 52.218001614382956 ], [ 0.504703403039628, 52.228285224383569 ], [ 0.481138950402226, 52.228001004442774 ], [ 0.462199538378002, 52.239654039102618 ], [ 0.426878695595292, 52.238000392703952 ], [ 0.410497266635559, 52.224357814861264 ], [ 0.392462192176424, 52.224952094063838 ], [ 0.349699945096404, 52.257714951983417 ], [ 0.367476637137088, 52.289935208443069 ], [ 0.430521885176859, 52.253813381782095 ], [ 0.49550499775745, 52.264923814082749 ], [ 0.510284458061278, 52.274638984201715 ], [ 0.510491163636289, 52.281615302304317 ], [ 0.472457309956894, 52.308280341264719 ], [ 0.434139235437328, 52.309675605244934 ], [ 0.446644931718197, 52.339957994465863 ], [ 0.41915306955849, 52.355770981745366 ], [ 0.389671665115259, 52.39018748606361 ], [ 0.392746413016539, 52.408015855847054 ], [ 0.447213371599787, 52.43217458768703 ], [ 0.491887648396244, 52.431321926066005 ], [ 0.558343540222211, 52.446333930366563 ], [ 0.638545362678315, 52.439667669727157 ], [ 0.676372510782755, 52.446876532725753 ], [ 0.709652134438443, 52.437419745025181 ], [ 0.666347284099857, 52.41271841082596 ], [ 0.669964634360383, 52.398843288986598 ], [ 0.693322381422774, 52.389102281345174 ], [ 0.733836703800819, 52.38770701826428 ], [ 0.751406691165869, 52.379387112125471 ], [ 0.837706332581149, 52.395225938726071 ], [ 0.881321242181571, 52.382694404023482 ], [ 0.931344028204308, 52.382177639186693 ], [ 0.973305291406064, 52.359930935264401 ], [ 1.035006952309004, 52.374116116365656 ], [ 1.202438592167312, 52.353833116305225 ], [ 1.234684686149308, 52.360473538522967 ], [ 1.274372186227424, 52.381893419245898 ], [ 1.3235681490508, 52.383572903166908 ], [ 1.363048943553906, 52.422433580045663 ], [ 1.44056359173635, 52.439667669727157 ], [ 1.4249573100318, 52.454395453187601 ], [ 1.430021600216662, 52.461345933767802 ], [ 1.464438103635587, 52.451320706185641 ], [ 1.544123162154222, 52.457728583507276 ], [ 1.570788202013887, 52.449667059786975 ], [ 1.584430779856575, 52.469924221425629 ], [ 1.640551384838545, 52.453542792465896 ], [ 1.66049848811474, 52.459123847487547 ], [ 1.702459751316439, 52.477158921946682 ], [ 1.700289340980305, 52.48772675188809 ], [ 1.675794712356094, 52.49271352770711 ], [ 1.653057082018734, 52.510774441487285 ], [ 1.663289015175906, 52.531884263847644 ], [ 1.690780877335612, 52.542167873848257 ], [ 1.747569207000083, 52.532782294000071 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-ESS", "NAME_1": "Essex" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.078502234194006, 51.950694975446773 ], [ 1.262054884000065, 51.939154364000046 ], [ 1.281993035000085, 51.946600653000075 ], [ 1.278493686000047, 51.927923895000049 ], [ 1.199554884000065, 51.877671617000033 ], [ 1.264414910000085, 51.863999742000033 ], [ 1.286631707000083, 51.881659247000073 ], [ 1.288259311000047, 51.860581773000035 ], [ 1.276377800000091, 51.844794012000079 ], [ 1.167816602000073, 51.790228583000044 ], [ 1.065440300000091, 51.775295315000051 ], [ 1.037282748000052, 51.782171942000048 ], [ 0.97982832100007, 51.843573309000078 ], [ 0.977061394000089, 51.824611721000053 ], [ 0.962087436000047, 51.813788153000075 ], [ 0.886973504000082, 51.782131252000056 ], [ 0.873708530000044, 51.747300523000035 ], [ 0.83570397200009, 51.733710028000075 ], [ 0.767100457000083, 51.739447333000044 ], [ 0.69857832100007, 51.720038153000075 ], [ 0.749278191000087, 51.708482164000088 ], [ 0.760752800000091, 51.692694403000075 ], [ 0.789073113000086, 51.710150458000044 ], [ 0.853037957000083, 51.718898830000057 ], [ 0.912364129000082, 51.741522528000075 ], [ 0.930023634000065, 51.74359772300005 ], [ 0.945567254000082, 51.733710028000075 ], [ 0.938161655000044, 51.706366278000075 ], [ 0.951833530000044, 51.678412177000041 ], [ 0.937998894000089, 51.664496161000045 ], [ 0.934743686000047, 51.635891018000052 ], [ 0.91146894600007, 51.623846747000073 ], [ 0.938487175000091, 51.624986070000034 ], [ 0.951833530000044, 51.617010809000078 ], [ 0.924489780000044, 51.588324286000045 ], [ 0.828278547117236, 51.541848484320042 ], [ 0.685777621639943, 51.577213854335866 ], [ 0.648570591159853, 51.569462388978025 ], [ 0.634617954055329, 51.543107408380195 ], [ 0.646657748000052, 51.535345770000049 ], [ 0.568858269000089, 51.508368231000077 ], [ 0.547171880278029, 51.517725489739519 ], [ 0.544700962379522, 51.529154772174991 ], [ 0.481138950402226, 51.543107408380195 ], [ 0.31988264296956, 51.557938543728767 ], [ 0.308307121776238, 51.578815822991828 ], [ 0.270531649615918, 51.593543606452272 ], [ 0.248078241017993, 51.627443345933614 ], [ 0.112195062252283, 51.615506090433712 ], [ 0.083876376893272, 51.601036689391663 ], [ 0.030804681390919, 51.621035467712659 ], [ 0.021347893690347, 51.636900132734922 ], [ -0.012836065731847, 51.64992259385258 ], [ 0.000005527333201, 51.733069973000852 ], [ 0.035558913213265, 51.768261624574279 ], [ 0.15803205723364, 51.790482490074851 ], [ 0.163303052993513, 51.805778714316205 ], [ 0.190278151215693, 51.816630764198408 ], [ 0.173018223112479, 51.825209051856234 ], [ 0.173586662994069, 51.84828257897783 ], [ 0.199166497236035, 51.865775051077719 ], [ 0.185498080971627, 51.879417629819727 ], [ 0.189942254431514, 51.890218003757866 ], [ 0.141650628273851, 51.883861803279558 ], [ 0.110799798272069, 51.973572089380411 ], [ 0.082455275390657, 51.983287259499377 ], [ 0.080543246573541, 52.002433377098669 ], [ 0.108319328674042, 52.027444770559669 ], [ 0.106355624812238, 52.054910794297712 ], [ 0.13911848273176, 52.041888333179998 ], [ 0.176945631735521, 52.047986152139174 ], [ 0.193559604691984, 52.056874498159516 ], [ 0.193843824632779, 52.076356513442306 ], [ 0.206659580175483, 52.081627509202178 ], [ 0.255803867054794, 52.076873277379832 ], [ 0.286628858634913, 52.084934801100189 ], [ 0.325282829938658, 52.074134426262731 ], [ 0.365512933275227, 52.044110419460253 ], [ 0.391066929095473, 52.035480454958986 ], [ 0.401376376618487, 52.042715156379359 ], [ 0.393056471379055, 52.051603502399701 ], [ 0.408921136401318, 52.059303290014782 ], [ 0.489097121335078, 52.06912181292131 ], [ 0.501396112040936, 52.053567206261562 ], [ 0.524960564678281, 52.048270372079969 ], [ 0.636064893979665, 52.074961249462092 ], [ 0.678336216443199, 52.077183335742347 ], [ 0.701073845881297, 52.067442328100924 ], [ 0.715233187661454, 52.044058743516189 ], [ 0.709445427964113, 52.034111030299755 ], [ 0.71864383324629, 52.014654853438685 ], [ 0.73776411332318, 52.016334337359751 ], [ 0.747996047379672, 51.993002427819761 ], [ 0.787786899345917, 51.954658514878531 ], [ 0.914394159362928, 51.968275255198819 ], [ 1.019400668805815, 51.950472723837095 ], [ 1.078502234194006, 51.950694975446773 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SOS", "NAME_1": "Southend-on-Sea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.828278547117236, 51.541848484320042 ], [ 0.77125084700009, 51.528265692000048 ], [ 0.646657748000052, 51.535345770000049 ], [ 0.634617954055329, 51.543107408380195 ], [ 0.648570591159853, 51.569462388978025 ], [ 0.685777621639943, 51.577213854335866 ], [ 0.828278547117236, 51.541848484320042 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-THR", "NAME_1": "Thurrock" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.547171880278029, 51.517725489739519 ], [ 0.456065300000091, 51.505560614000046 ], [ 0.428477410000085, 51.46710846600007 ], [ 0.356366203937171, 51.446369127333355 ], [ 0.337504307178051, 51.448694566401116 ], [ 0.322337274145866, 51.466936347334524 ], [ 0.274665764713234, 51.459908352388538 ], [ 0.21663313181358, 51.477736721272663 ], [ 0.242212966055547, 51.498820706110678 ], [ 0.247742344233814, 51.519956366892814 ], [ 0.272753736795494, 51.516597398151362 ], [ 0.279962598894826, 51.526881009051294 ], [ 0.33610904319778, 51.539955146113073 ], [ 0.31988264296956, 51.557938543728767 ], [ 0.481138950402226, 51.543107408380195 ], [ 0.544700962379522, 51.529154772174991 ], [ 0.547171880278029, 51.517725489739519 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-KEN", "NAME_1": "Kent" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.384504022142892, 51.453087063017506 ], [ 0.448415561000047, 51.459947007000039 ], [ 0.469574415000068, 51.480414130000042 ], [ 0.511625041358568, 51.487675990141526 ], [ 0.482585890326561, 51.462492173874693 ], [ 0.47948530400356, 51.44853953677017 ], [ 0.485686475750242, 51.437687485988647 ], [ 0.505840284601447, 51.436137193276807 ], [ 0.512041457247449, 51.426835436106444 ], [ 0.504289991889607, 51.402030748220454 ], [ 0.45620507220633, 51.363273424129204 ], [ 0.446903314136648, 51.338468736243158 ], [ 0.505840284601447, 51.34777049431284 ], [ 0.535295850623015, 51.343119615277999 ], [ 0.592656690853573, 51.312113756544591 ], [ 0.648467238372348, 51.336918443531317 ], [ 0.671885613000086, 51.391058661000045 ], [ 0.712901238000086, 51.38422272300005 ], [ 0.700368686000047, 51.409816799000055 ], [ 0.705332879000082, 51.419501044000071 ], [ 0.726410352000073, 51.419012762000079 ], [ 0.739268425000091, 51.387925523000035 ], [ 0.764414910000085, 51.364406643000052 ], [ 0.977224155000044, 51.349188544000071 ], [ 1.10092207100007, 51.373236395000049 ], [ 1.423838738000086, 51.392075914000088 ], [ 1.448252800000091, 51.382879950000074 ], [ 1.43913821700005, 51.350083726000037 ], [ 1.42514082100007, 51.332953192000048 ], [ 1.377614780000044, 51.326239325000074 ], [ 1.413096550000091, 51.221747137000079 ], [ 1.404795769000089, 51.183539130000042 ], [ 1.38445071700005, 51.151678778000075 ], [ 1.35718834700009, 51.131008205000057 ], [ 1.262950066000087, 51.103257554000038 ], [ 1.21810957100007, 51.100978908000059 ], [ 1.192067905000044, 51.082586981000077 ], [ 1.106700066000087, 51.076361395000049 ], [ 1.066905144000089, 51.064398505000042 ], [ 1.027598504000082, 51.04165273600006 ], [ 0.96648196700005, 50.98273346600007 ], [ 0.97982832100007, 50.918158270000049 ], [ 0.945160352000073, 50.909369208000044 ], [ 0.86976504741898, 50.925119935336738 ], [ 0.866645134665248, 50.943815823541399 ], [ 0.849178500987023, 50.950482083281486 ], [ 0.821066522102285, 50.944125881903915 ], [ 0.786650017784098, 50.988257555441805 ], [ 0.763292270721706, 50.997145901462147 ], [ 0.695802850121424, 50.995492255063482 ], [ 0.658079053905226, 51.013837388784452 ], [ 0.569712354941203, 50.999936428523313 ], [ 0.536949497021681, 51.018281562244283 ], [ 0.479692009578571, 51.030218817744242 ], [ 0.474731073080534, 51.047737128265851 ], [ 0.416595085594736, 51.06522960126506 ], [ 0.401117995099412, 51.081895250165644 ], [ 0.381635979816622, 51.089388333105035 ], [ 0.357451409554869, 51.086339422726155 ], [ 0.359156731897656, 51.101325589504313 ], [ 0.33554060241687, 51.106906642727381 ], [ 0.331354811375434, 51.119929103845038 ], [ 0.266914300254768, 51.110213935524655 ], [ 0.221387362736607, 51.121892809505539 ], [ 0.140513746712031, 51.111635037027327 ], [ 0.154337191708009, 51.139281927918603 ], [ 0.132503899835115, 51.144113675006054 ], [ 0.062740716111136, 51.135845444811423 ], [ 0.060260247412486, 51.181604926326258 ], [ 0.044395583289543, 51.20994944920767 ], [ 0.063851759251293, 51.242195543189723 ], [ 0.054420810871704, 51.28994456608882 ], [ 0.068838535070313, 51.28245148404875 ], [ 0.093824090109649, 51.288290921488795 ], [ 0.096640455592535, 51.311028550926835 ], [ 0.155241530172475, 51.354695136471321 ], [ 0.169142490433558, 51.388543199109336 ], [ 0.160796745873085, 51.417171942830862 ], [ 0.181079745933516, 51.437687485988647 ], [ 0.222834302660942, 51.471897284731881 ], [ 0.274665764713234, 51.459908352388538 ], [ 0.322337274145866, 51.466936347334524 ], [ 0.337504307178051, 51.448694566401116 ], [ 0.356366203937171, 51.446369127333355 ], [ 0.384504022142892, 51.453087063017506 ] ] ], [ [ [ 0.91146894600007, 51.412176825000074 ], [ 0.942149285000085, 51.383002020000049 ], [ 0.936371290000068, 51.371039130000042 ], [ 0.91146894600007, 51.364406643000052 ], [ 0.794769727000073, 51.37055084800005 ], [ 0.75757897200009, 51.386419989000046 ], [ 0.733897332000083, 51.412176825000074 ], [ 0.746836785000085, 51.439642645000049 ], [ 0.76693769600007, 51.447943427000041 ], [ 0.91146894600007, 51.412176825000074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-MDW", "NAME_1": "Medway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.511625041358568, 51.487675990141526 ], [ 0.53484134200005, 51.491685289000088 ], [ 0.694834832000083, 51.477036851000037 ], [ 0.709483269000089, 51.470526434000078 ], [ 0.723155144000089, 51.44672272300005 ], [ 0.692393425000091, 51.439520575000074 ], [ 0.640961134000065, 51.444159247000073 ], [ 0.609385613000086, 51.425116278000075 ], [ 0.554535352000073, 51.412176825000074 ], [ 0.585948113000086, 51.391058661000045 ], [ 0.671885613000086, 51.391058661000045 ], [ 0.648467238372348, 51.336918443531317 ], [ 0.592656690853573, 51.312113756544591 ], [ 0.535295850623015, 51.343119615277999 ], [ 0.505840284601447, 51.34777049431284 ], [ 0.446903314136648, 51.338468736243158 ], [ 0.45620507220633, 51.363273424129204 ], [ 0.504289991889607, 51.402030748220454 ], [ 0.512041457247449, 51.426835436106444 ], [ 0.505840284601447, 51.436137193276807 ], [ 0.485686475750242, 51.437687485988647 ], [ 0.47948530400356, 51.44853953677017 ], [ 0.482585890326561, 51.462492173874693 ], [ 0.511625041358568, 51.487675990141526 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-ESX", "NAME_1": "East Sussex" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.86976504741898, 50.925119935336738 ], [ 0.802256707000083, 50.939195054000038 ], [ 0.762461785000085, 50.930894273000035 ], [ 0.664398634000065, 50.870306708000044 ], [ 0.624196811000047, 50.858710028000075 ], [ 0.365244988000086, 50.81899648600006 ], [ 0.342295769000089, 50.795152085000041 ], [ 0.308116082000083, 50.780951239000046 ], [ 0.271006707000083, 50.747381903000075 ], [ 0.122080925000091, 50.760809637000079 ], [ 0.095550977000073, 50.775051174000055 ], [ 0.017548048000094, 50.784857489000046 ], [ -0.011208257754902, 50.824288235313759 ], [ -0.128617113389055, 50.8825534122102 ], [ -0.116964076930628, 50.926917629744764 ], [ -0.093916388230753, 50.94939687856305 ], [ -0.105569423789859, 50.970222480083351 ], [ -0.067535570110465, 50.993270168783226 ], [ -0.044203659671155, 50.980764472502358 ], [ -0.015884976110783, 50.981901354064235 ], [ -0.006686570828606, 51.022441514863999 ], [ 0.019125807410092, 51.050475979382895 ], [ -0.028933274750841, 51.077451076705813 ], [ -0.021155971870598, 51.09047353782347 ], [ 0.014681633950261, 51.097966619863598 ], [ 0.017213778592975, 51.110213935524655 ], [ 0.036644117931701, 51.111299140243091 ], [ 0.021347893690347, 51.135845444811423 ], [ 0.132503899835115, 51.144113675006054 ], [ 0.154337191708009, 51.139281927918603 ], [ 0.140513746712031, 51.111635037027327 ], [ 0.221387362736607, 51.121892809505539 ], [ 0.266914300254768, 51.110213935524655 ], [ 0.331354811375434, 51.119929103845038 ], [ 0.33554060241687, 51.106906642727381 ], [ 0.359156731897656, 51.101325589504313 ], [ 0.357451409554869, 51.086339422726155 ], [ 0.381635979816622, 51.089388333105035 ], [ 0.401117995099412, 51.081895250165644 ], [ 0.416595085594736, 51.06522960126506 ], [ 0.474731073080534, 51.047737128265851 ], [ 0.479692009578571, 51.030218817744242 ], [ 0.536949497021681, 51.018281562244283 ], [ 0.569712354941203, 50.999936428523313 ], [ 0.658079053905226, 51.013837388784452 ], [ 0.695802850121424, 50.995492255063482 ], [ 0.763292270721706, 50.997145901462147 ], [ 0.786650017784098, 50.988257555441805 ], [ 0.821066522102285, 50.944125881903915 ], [ 0.849178500987023, 50.950482083281486 ], [ 0.866645134665248, 50.943815823541399 ], [ 0.86976504741898, 50.925119935336738 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BNH", "NAME_1": "Brighton and Hove" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.017548048000094, 50.784857489000046 ], [ -0.173166469999956, 50.829006252000056 ], [ -0.208915355759075, 50.830097137173141 ], [ -0.230342170254971, 50.856896064501768 ], [ -0.230574714251645, 50.867438056021456 ], [ -0.213366462092552, 50.874931138960847 ], [ -0.181688808891408, 50.872450670262197 ], [ -0.171973638772442, 50.885214748961459 ], [ -0.152801682751488, 50.891312567920636 ], [ -0.011208257754902, 50.824288235313759 ], [ 0.017548048000094, 50.784857489000046 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WSX", "NAME_1": "West Sussex" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.208915355759075, 50.830097137173141 ], [ -0.233143683999913, 50.821926174000055 ], [ -0.269683397999927, 50.831284898000035 ], [ -0.397572394999941, 50.802069403000075 ], [ -0.568959113999938, 50.802069403000075 ], [ -0.73273678299995, 50.767279364000046 ], [ -0.758208787999934, 50.777085679000038 ], [ -0.773101365999935, 50.766017971000053 ], [ -0.76626542899993, 50.747137762000079 ], [ -0.770985480999911, 50.736883856000077 ], [ -0.789947068999936, 50.730047919000071 ], [ -0.911488410999937, 50.777818101000037 ], [ -0.905873175999943, 50.788031317000048 ], [ -0.863636847999942, 50.802069403000075 ], [ -0.863636847999942, 50.808254299000055 ], [ -0.904693162999934, 50.829331773000035 ], [ -0.928944464999915, 50.822821356000077 ], [ -0.919016079999949, 50.836167710000041 ], [ -0.929798956999946, 50.839992580000057 ], [ -0.92334896508271, 50.865215968841881 ], [ -0.952520311163426, 50.891881008701546 ], [ -0.921695318684044, 50.920509752423129 ], [ -0.9308420480221, 50.943815823541399 ], [ -0.893092414283501, 50.993528551201678 ], [ -0.890870327103926, 51.00990998016141 ], [ -0.866168992904704, 51.027996731463986 ], [ -0.862551641744858, 51.043551337224415 ], [ -0.828626063841796, 51.063550117343993 ], [ -0.788111742363014, 51.060501206965114 ], [ -0.774753383561801, 51.081068426966283 ], [ -0.753695238044827, 51.088664862693236 ], [ -0.688066169418221, 51.070784816965727 ], [ -0.626700405299459, 51.084375718864294 ], [ -0.601689011838459, 51.076055812725542 ], [ -0.541408454236773, 51.079104723104479 ], [ -0.521151291698743, 51.088819892324125 ], [ -0.503064541295544, 51.085770981945245 ], [ -0.351678432713527, 51.114968167347001 ], [ -0.302508307412495, 51.116621812846347 ], [ -0.181973028832203, 51.161321926265884 ], [ -0.141432868032439, 51.152175197827091 ], [ -0.136136033850903, 51.138015856046877 ], [ -0.119186164110204, 51.134398504887088 ], [ -0.076139696190012, 51.141323147045568 ], [ 0.021347893690347, 51.135845444811423 ], [ 0.036644117931701, 51.111299140243091 ], [ 0.017213778592975, 51.110213935524655 ], [ 0.014681633950261, 51.097966619863598 ], [ -0.021155971870598, 51.09047353782347 ], [ -0.028933274750841, 51.077451076705813 ], [ 0.019125807410092, 51.050475979382895 ], [ -0.006686570828606, 51.022441514863999 ], [ -0.015884976110783, 50.981901354064235 ], [ -0.044203659671155, 50.980764472502358 ], [ -0.067535570110465, 50.993270168783226 ], [ -0.105569423789859, 50.970222480083351 ], [ -0.093916388230753, 50.94939687856305 ], [ -0.116964076930628, 50.926917629744764 ], [ -0.128901333329907, 50.879116930002283 ], [ -0.159778000854089, 50.891054186401561 ], [ -0.181688808891408, 50.872450670262197 ], [ -0.213366462092552, 50.874931138960847 ], [ -0.230574714251645, 50.867438056021456 ], [ -0.230342170254971, 50.856896064501768 ], [ -0.208915355759075, 50.830097137173141 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-HAM", "NAME_1": "Hampshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.929798956999946, 50.839992580000057 ], [ -1.056338263100372, 50.857826240488578 ], [ -1.16470292899993, 50.843654690000051 ], [ -1.123768683999913, 50.818793036000045 ], [ -1.124908006999931, 50.788723049000055 ], [ -1.151112433999913, 50.781398830000057 ], [ -1.185617641999954, 50.79242584800005 ], [ -1.199289516999954, 50.807928778000075 ], [ -1.255197719999956, 50.831935940000051 ], [ -1.30142167899993, 50.843654690000051 ], [ -1.31859290299991, 50.856919664000088 ], [ -1.30725317979045, 50.891674303126536 ], [ -1.308674282192385, 50.92128489787973 ], [ -1.36929073657825, 50.945236925044014 ], [ -1.425695563299598, 50.941025296480234 ], [ -1.441224330638363, 50.933945623791487 ], [ -1.449298426880887, 50.912057929230002 ], [ -1.466420050999943, 50.918158270000049 ], [ -1.466420050999943, 50.911932684000078 ], [ -1.425607876999948, 50.900091864000046 ], [ -1.323068813999953, 50.825751044000071 ], [ -1.314279751999948, 50.812160549000055 ], [ -1.317290818999936, 50.80023834800005 ], [ -1.418690558999913, 50.788397528000075 ], [ -1.40493730399993, 50.774725653000075 ], [ -1.487538214999915, 50.757717190000051 ], [ -1.524728969999956, 50.761053778000075 ], [ -1.56118730399993, 50.718980210000041 ], [ -1.672922329999949, 50.740057684000078 ], [ -1.676687995254781, 50.754370021958948 ], [ -1.734203864216965, 50.754370021958948 ], [ -1.735030687416327, 50.777986152339054 ], [ -1.786500413363399, 50.768684394269371 ], [ -1.80947058769749, 50.80217072170143 ], [ -1.79613806821726, 50.831626287722997 ], [ -1.805724046227738, 50.86767060001813 ], [ -1.832828334759824, 50.86578441052211 ], [ -1.839210373659853, 50.891312567920636 ], [ -1.81140845403695, 50.905497748122571 ], [ -1.805026414237659, 50.929398098443471 ], [ -1.836988288278917, 50.933532213540786 ], [ -1.862516444778123, 50.922731838703385 ], [ -1.879750535358937, 50.924695543464509 ], [ -1.950056322341425, 50.988257555441805 ], [ -1.926440191961319, 50.999471341429228 ], [ -1.868924322999135, 51.005775865064095 ], [ -1.868588426214899, 50.996060695844392 ], [ -1.857813889799161, 50.994665431864178 ], [ -1.837556729059827, 51.009108995383826 ], [ -1.81084001325604, 50.992701728002316 ], [ -1.698082037555992, 50.974950873483976 ], [ -1.655035569635857, 50.950223700863091 ], [ -1.61056800021305, 50.959680488563663 ], [ -1.599741786953928, 50.976888739823437 ], [ -1.621420050095253, 50.994665431864178 ], [ -1.596692878373631, 51.017454739044922 ], [ -1.621988490876163, 51.034094550423163 ], [ -1.620309006955097, 51.054093328744102 ], [ -1.631419440155071, 51.08605520278536 ], [ -1.621988490876163, 51.108250230763531 ], [ -1.652813483355601, 51.12633698206605 ], [ -1.647800869114803, 51.149953111546836 ], [ -1.655035569635857, 51.171347153848046 ], [ -1.685317958856729, 51.205246894228765 ], [ -1.696454229579047, 51.236614488168073 ], [ -1.62811214825706, 51.234108181047702 ], [ -1.579717170211268, 51.257698473006087 ], [ -1.538350186212142, 51.244934394306824 ], [ -1.527808192893815, 51.252427477246272 ], [ -1.539177007612807, 51.275501004367811 ], [ -1.520030890013572, 51.302450263269009 ], [ -1.526722988175379, 51.329683743010321 ], [ -1.433085292552221, 51.334670518829341 ], [ -1.427555915273274, 51.340225735429328 ], [ -1.436702642812747, 51.352421373347681 ], [ -1.399469773910937, 51.370508123750881 ], [ -1.245293138267755, 51.368854479150855 ], [ -1.120029466286837, 51.354695136471321 ], [ -1.110572678586266, 51.357433986689102 ], [ -1.111141120266495, 51.371334946950242 ], [ -1.077525600725892, 51.376347561190983 ], [ -1.031972825685386, 51.354695136471321 ], [ -0.996419439805322, 51.362162380989048 ], [ -0.919189011563617, 51.360224513750268 ], [ -0.886426153644095, 51.351336167729926 ], [ -0.819737717821454, 51.348829861508875 ], [ -0.76529659676055, 51.331337389408986 ], [ -0.729743210880486, 51.291598212487486 ], [ -0.725299038319974, 51.269635729405366 ], [ -0.731138474860757, 51.243849188689069 ], [ -0.748398402963915, 51.231601873927332 ], [ -0.816430425923443, 51.236872869687147 ], [ -0.840020717881828, 51.203851630248494 ], [ -0.824466112121399, 51.182715969466415 ], [ -0.823639288922038, 51.151606757046181 ], [ -0.790850591681476, 51.146904202067219 ], [ -0.780024380220993, 51.123546454105565 ], [ -0.744186774400134, 51.104116116565478 ], [ -0.753695238044827, 51.088664862693236 ], [ -0.774753383561801, 51.081068426966283 ], [ -0.788111742363014, 51.060501206965114 ], [ -0.837514410761457, 51.060501206965114 ], [ -0.890870327103926, 51.00990998016141 ], [ -0.893092414283501, 50.993528551201678 ], [ -0.9308420480221, 50.943815823541399 ], [ -0.921695318684044, 50.920509752423129 ], [ -0.952520311163426, 50.891881008701546 ], [ -0.92334896508271, 50.865215968841881 ], [ -0.929798956999946, 50.839992580000057 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-POR", "NAME_1": "Portsmouth" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.994862433999913, 50.847072658000059 ], [ -1.020741339999915, 50.843654690000051 ], [ -1.056223110999952, 50.783026434000078 ], [ -1.082753058999913, 50.780951239000046 ], [ -1.103016730999911, 50.795477606000077 ], [ -1.075306769999941, 50.830023505000042 ], [ -1.069162563999953, 50.843654690000051 ], [ -1.08812415299991, 50.849758205000057 ], [ -1.074683396821342, 50.857826240488578 ], [ -0.994862433999913, 50.847072658000059 ] ] ], [ [ [ -0.959868943999936, 50.808254299000055 ], [ -0.938832160999937, 50.780951239000046 ], [ -1.020741339999915, 50.788397528000075 ], [ -1.020741339999915, 50.795152085000041 ], [ -0.99868730399993, 50.801011460000041 ], [ -0.972564256999931, 50.829779364000046 ], [ -0.950306769999941, 50.823797919000071 ], [ -0.947824673999946, 50.81781647300005 ], [ -0.959868943999936, 50.808254299000055 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-STH", "NAME_1": "Southampton" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.31859290299991, 50.856919664000088 ], [ -1.338937954999949, 50.872707424000055 ], [ -1.449298426880887, 50.912057929230002 ], [ -1.446857061604135, 50.92552236576455 ], [ -1.425695563299598, 50.941025296480234 ], [ -1.36929073657825, 50.945236925044014 ], [ -1.308674282192385, 50.92128489787973 ], [ -1.30725317979045, 50.891674303126536 ], [ -1.31859290299991, 50.856919664000088 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-DOR", "NAME_1": "Dorset" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.672922329999949, 50.740057684000078 ], [ -1.77171790299991, 50.720119533000059 ], [ -1.797457998687719, 50.7231741652555 ], [ -1.816472744221755, 50.738195299473489 ], [ -1.848202074266339, 50.746980291807006 ], [ -1.920419888267247, 50.749977525342501 ], [ -1.941788092146737, 50.765532132002249 ], [ -1.994730597339185, 50.769924627719377 ], [ -2.006228604166779, 50.762896632773334 ], [ -2.020336270002872, 50.728480130253786 ], [ -2.026217734560817, 50.72510468053656 ], [ -2.038970506999931, 50.739935614000046 ], [ -2.08267167899993, 50.698960679000038 ], [ -2.035633917999917, 50.713324286000045 ], [ -2.002512173999946, 50.681301174000055 ], [ -1.952788865999935, 50.676581122000073 ], [ -1.945871548999946, 50.668850002000056 ], [ -1.952951626999948, 50.651841539000088 ], [ -1.932484503999945, 50.644435940000051 ], [ -1.967274542999917, 50.617092190000051 ], [ -1.965199347999942, 50.60219961100006 ], [ -2.065174933999913, 50.595526434000078 ], [ -2.157338019999941, 50.620510158000059 ], [ -2.342640753999945, 50.633775132000039 ], [ -2.377064581999946, 50.647528387000079 ], [ -2.398345506999931, 50.645575262000079 ], [ -2.435902472999942, 50.637518622000073 ], [ -2.460072394999941, 50.606512762000079 ], [ -2.465646938999953, 50.585150458000044 ], [ -2.456450975999928, 50.575506903000075 ], [ -2.431223110999952, 50.570257880000042 ], [ -2.428700324999909, 50.557562567000048 ], [ -2.459543423999946, 50.52765534100007 ], [ -2.460357225999928, 50.565497137000079 ], [ -2.483509894999941, 50.590399481000077 ], [ -2.692941860999952, 50.69281647300005 ], [ -2.864816860999952, 50.733791408000059 ], [ -2.945570923759135, 50.72581249914748 ], [ -2.949194302175329, 50.734112861219558 ], [ -2.932528652375424, 50.761888943320059 ], [ -2.946687995054958, 50.770777289340401 ], [ -2.882273322355957, 50.797158108360009 ], [ -2.889456346033569, 50.80604645438035 ], [ -2.921676601593902, 50.809405423121746 ], [ -2.948522507707594, 50.822479560183524 ], [ -2.920255500091287, 50.841031399479505 ], [ -2.823310512570117, 50.852710273460332 ], [ -2.807807582753753, 50.861340237062279 ], [ -2.788919846673593, 50.854673977322193 ], [ -2.758895839871116, 50.867179674502324 ], [ -2.714764167232545, 50.868006496802366 ], [ -2.653062507228924, 50.886610012042411 ], [ -2.6144602118693, 50.885473131379911 ], [ -2.607793952129214, 50.890485744721332 ], [ -2.616139695790366, 50.911311347140952 ], [ -2.595029873429951, 50.957458401384088 ], [ -2.598905605209495, 50.976320299042527 ], [ -2.573661667751765, 50.982728176364219 ], [ -2.550019700748578, 50.978542385322783 ], [ -2.541958177028278, 51.001900133284494 ], [ -2.495862798729206, 50.995233873544407 ], [ -2.470593023749075, 50.96272939714396 ], [ -2.451679450146514, 50.951308906480847 ], [ -2.441137457727507, 50.952704169561741 ], [ -2.43250749322624, 50.970480862501802 ], [ -2.400571457606702, 50.96520986584261 ], [ -2.337784592884645, 50.982986558782613 ], [ -2.338947312868186, 50.989394436104305 ], [ -2.370599127647608, 50.998851222905614 ], [ -2.371425950846969, 51.006602688263399 ], [ -2.324193690986078, 51.042156074143463 ], [ -2.335304124185996, 51.06468699800655 ], [ -2.321687383865708, 51.083290514145858 ], [ -2.224199794884612, 51.065513821205855 ], [ -2.194175788082191, 51.043809718743489 ], [ -2.144178839581798, 50.98603546826223 ], [ -2.123353237162178, 50.981074530864873 ], [ -2.099194505322146, 50.955753079041358 ], [ -1.996151698841857, 50.977457179705027 ], [ -1.970313483080815, 50.992701728002316 ], [ -1.950056322341425, 50.988257555441805 ], [ -1.879750535358937, 50.924695543464509 ], [ -1.862516444778123, 50.922731838703385 ], [ -1.836988288278917, 50.933532213540786 ], [ -1.805026414237659, 50.929398098443471 ], [ -1.81140845403695, 50.905497748122571 ], [ -1.839210373659853, 50.891312567920636 ], [ -1.832828334759824, 50.86578441052211 ], [ -1.805724046227738, 50.86767060001813 ], [ -1.79613806821726, 50.831626287722997 ], [ -1.80947058769749, 50.80217072170143 ], [ -1.799729580056066, 50.782430324899565 ], [ -1.786500413363399, 50.768684394269371 ], [ -1.735030687416327, 50.777986152339054 ], [ -1.734203864216965, 50.754370021958948 ], [ -1.676687995254781, 50.754370021958948 ], [ -1.672922329999949, 50.740057684000078 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BMH", "NAME_1": "Bournemouth" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.797457998687719, 50.7231741652555 ], [ -1.857411261999914, 50.726955471000053 ], [ -1.896897361124331, 50.716042053997569 ], [ -1.921453416142242, 50.719643460177508 ], [ -1.928533087931669, 50.739952297760283 ], [ -1.915303921239001, 50.753181464453007 ], [ -1.870293747658366, 50.751424466166156 ], [ -1.816472744221755, 50.738195299473489 ], [ -1.797457998687719, 50.7231741652555 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-POL", "NAME_1": "Poole" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.896897361124331, 50.716042053997569 ], [ -1.940012173999946, 50.690822658000059 ], [ -1.949289516999954, 50.713324286000045 ], [ -2.026217734560817, 50.72510468053656 ], [ -2.006228604166779, 50.762896632773334 ], [ -1.994730597339185, 50.769924627719377 ], [ -1.960314093020997, 50.769924627719377 ], [ -1.920419888267247, 50.749977525342501 ], [ -1.928533087931669, 50.739952297760283 ], [ -1.921453416142242, 50.719643460177508 ], [ -1.896897361124331, 50.716042053997569 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-DEV", "NAME_1": "Devon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.945570923759135, 50.72581249914748 ], [ -2.998199022999927, 50.708238023000035 ], [ -3.071359829999949, 50.711004950000074 ], [ -3.125477667999917, 50.685288804000038 ], [ -3.166493292999917, 50.69281647300005 ], [ -3.259836391999954, 50.674546617000033 ], [ -3.29556230399993, 50.637518622000073 ], [ -3.368153449999909, 50.617092190000051 ], [ -3.420969204999949, 50.629461981000077 ], [ -3.446359829999949, 50.66828034100007 ], [ -3.464426235999952, 50.678534247000073 ], [ -3.467844204999949, 50.666978257000039 ], [ -3.45531165299991, 50.657904364000046 ], [ -3.433338995999918, 50.610256252000056 ], [ -3.481760219999956, 50.568548895000049 ], [ -3.505970831999946, 50.520819403000075 ], [ -3.505366689187458, 50.508158665796337 ], [ -3.587165696739532, 50.509010321868857 ], [ -3.628145107111038, 50.482371121330175 ], [ -3.646593593619457, 50.44754120496259 ], [ -3.648660651168143, 50.433200995129823 ], [ -3.619954393080775, 50.406535956169421 ], [ -3.518730882401122, 50.37621239089642 ], [ -3.526926235999952, 50.349798895000049 ], [ -3.538889126999948, 50.344427802000041 ], [ -3.57054602799991, 50.356390692000048 ], [ -3.577788865999935, 50.334051825000074 ], [ -3.621571417999917, 50.321926174000055 ], [ -3.631988084999932, 50.312323309000078 ], [ -3.653309699999909, 50.251044012000079 ], [ -3.645619269999941, 50.22601959800005 ], [ -3.718006964999915, 50.212388414000088 ], [ -3.774240688999953, 50.22296784100007 ], [ -3.788970506999931, 50.212388414000088 ], [ -3.949940558999913, 50.31899648600006 ], [ -3.970204230999911, 50.320746161000045 ], [ -4.032948370999918, 50.294907945000034 ], [ -4.070220506999931, 50.30923086100006 ], [ -4.064035610999952, 50.322251695000034 ], [ -4.108265753999945, 50.336615302000041 ], [ -4.115981856773336, 50.34787420653219 ], [ -4.100777756887965, 50.360027166720329 ], [ -4.038714361678444, 50.378630682859693 ], [ -4.041814948001445, 50.399301256547744 ], [ -4.124548915999696, 50.435474758253463 ], [ -4.186994470872729, 50.425967799173598 ], [ -4.159535285999937, 50.459418036000045 ], [ -4.179432745999918, 50.453070380000042 ], [ -4.200550910999937, 50.459418036000045 ], [ -4.203689363073636, 50.451388391361149 ], [ -4.213794115006408, 50.465033677961856 ], [ -4.230356411119487, 50.456765449565808 ], [ -4.236945155594469, 50.462553209263149 ], [ -4.217799037995235, 50.494670112036033 ], [ -4.189764574375602, 50.494385891195918 ], [ -4.182271491436211, 50.506607368435255 ], [ -4.203639696215021, 50.512162584135922 ], [ -4.216972214795874, 50.533556627336452 ], [ -4.270586513556736, 50.542444973356794 ], [ -4.273092820677164, 50.56492422127576 ], [ -4.301437343558575, 50.587713528456561 ], [ -4.296088833432918, 50.625488999717561 ], [ -4.335027024677458, 50.642723090298375 ], [ -4.346964281076737, 50.678560696119177 ], [ -4.36089107886022, 50.692461656380317 ], [ -4.362544725258886, 50.719385077759114 ], [ -4.378099331019314, 50.741605943259628 ], [ -4.376988287879215, 50.76439525044043 ], [ -4.394764979919898, 50.770493069399606 ], [ -4.412800055278353, 50.760493679339788 ], [ -4.440576138278175, 50.779639797838399 ], [ -4.485302090119376, 50.786047675160034 ], [ -4.450032925079427, 50.799380195539584 ], [ -4.439439255817035, 50.841031399479505 ], [ -4.417812668619774, 50.854932358841268 ], [ -4.455846523198488, 50.901596177921249 ], [ -4.458352830318859, 50.921052354782319 ], [ -4.548133371047116, 50.922990902040056 ], [ -4.522694464999915, 50.972723700000074 ], [ -4.530425584999932, 50.994696356000077 ], [ -4.526437954999949, 51.014960028000075 ], [ -4.437326626999948, 51.014960028000075 ], [ -4.395741339999915, 51.000677802000041 ], [ -4.337717251999948, 50.996649481000077 ], [ -4.302316860999952, 51.007513739000046 ], [ -4.207997199999909, 51.076361395000049 ], [ -4.231922980999911, 51.126695054000038 ], [ -4.255767381999931, 51.151516018000052 ], [ -4.214833136999914, 51.151516018000052 ], [ -4.209828253999945, 51.172837632000039 ], [ -4.228505011999914, 51.192450262000079 ], [ -4.152333136999914, 51.211615302000041 ], [ -3.969471808999913, 51.222398179000038 ], [ -3.913197394999941, 51.233384507000039 ], [ -3.840891079999949, 51.233384507000039 ], [ -3.769154425999943, 51.247707424000055 ], [ -3.712238500155495, 51.238328824697255 ], [ -3.724211594589406, 51.178530178424978 ], [ -3.821130743688855, 51.177186591288148 ], [ -3.827280238592152, 51.171347153848046 ], [ -3.825884976410521, 51.141891587826478 ], [ -3.812785000027759, 51.1288174507647 ], [ -3.750592413609013, 51.106906642727381 ], [ -3.715581630987515, 51.08298045488408 ], [ -3.678374599608105, 51.082463690946554 ], [ -3.636413337305669, 51.062154853363779 ], [ -3.596131558024979, 51.062981676563084 ], [ -3.588095871827022, 51.054661770424332 ], [ -3.607784592684823, 51.02437938120346 ], [ -3.599748908285505, 51.011873684023271 ], [ -3.528926357365492, 51.007171129044366 ], [ -3.508074917423528, 51.0305288761067 ], [ -3.475027838663834, 51.036058255184287 ], [ -3.444487067024511, 51.026343085065321 ], [ -3.422266200624676, 51.0293919954442 ], [ -3.38030493832224, 51.017454739044922 ], [ -3.370589769102594, 50.980764472502358 ], [ -3.321445482223226, 50.978826606162897 ], [ -3.268373785821552, 50.947433172902606 ], [ -3.157243618098505, 50.948570055363746 ], [ -3.178120897361509, 50.914670314983027 ], [ -3.147528448878802, 50.896893622043024 ], [ -3.090064255860739, 50.908004055242941 ], [ -3.047508714355672, 50.905781968962685 ], [ -3.048361375077434, 50.877721666022069 ], [ -3.027251552717019, 50.868574938482595 ], [ -3.030300462196578, 50.851625067842576 ], [ -3.003092820876986, 50.861340237062279 ], [ -2.977228765794905, 50.859944973082008 ], [ -2.962811041596296, 50.850488186280757 ], [ -2.948522507707594, 50.822479560183524 ], [ -2.921676601593902, 50.809405423121746 ], [ -2.889456346033569, 50.80604645438035 ], [ -2.882273322355957, 50.797158108360009 ], [ -2.946687995054958, 50.770777289340401 ], [ -2.932528652375424, 50.761888943320059 ], [ -2.949194302175329, 50.734112861219558 ], [ -2.945570923759135, 50.72581249914748 ] ] ], [ [ [ -4.665435350999928, 51.183579820000034 ], [ -4.663482225999928, 51.164862372000073 ], [ -4.670480923999946, 51.160101630000042 ], [ -4.678537563999953, 51.167059637000079 ], [ -4.67642167899993, 51.193101304000038 ], [ -4.665435350999928, 51.183579820000034 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-TOB", "NAME_1": "Torbay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.505366689187458, 50.508158665796337 ], [ -3.487456834999932, 50.459418036000045 ], [ -3.532134568999936, 50.454779364000046 ], [ -3.549427863999938, 50.446519273000035 ], [ -3.556263800999943, 50.432114976000037 ], [ -3.549305792999917, 50.415594794000071 ], [ -3.531971808999913, 50.410223700000074 ], [ -3.487456834999932, 50.41156647300005 ], [ -3.49828040299991, 50.383693752000056 ], [ -3.518730882401122, 50.37621239089642 ], [ -3.619954393080775, 50.406535956169421 ], [ -3.648660651168143, 50.433200995129823 ], [ -3.642485316943805, 50.46394847324342 ], [ -3.609696620602563, 50.498778387812308 ], [ -3.587165696739532, 50.509010321868857 ], [ -3.505366689187458, 50.508158665796337 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-PLY", "NAME_1": "Plymouth" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.115981856773336, 50.34787420653219 ], [ -4.104969855999911, 50.370672919000071 ], [ -4.141753709999932, 50.369045315000051 ], [ -4.165516730999911, 50.376369533000059 ], [ -4.191477016999954, 50.417629299000055 ], [ -4.186994470872729, 50.425967799173598 ], [ -4.124548915999696, 50.435474758253463 ], [ -4.041814948001445, 50.399301256547744 ], [ -4.038714361678444, 50.378630682859693 ], [ -4.100777756887965, 50.360027166720329 ], [ -4.115981856773336, 50.34787420653219 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CON", "NAME_1": "Cornwall" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.203689363073636, 50.451388391361149 ], [ -4.212391730999911, 50.441473700000074 ], [ -4.234730597999942, 50.438299872000073 ], [ -4.216135219999956, 50.415716864000046 ], [ -4.228505011999914, 50.397365627000056 ], [ -4.289906378999945, 50.397365627000056 ], [ -4.273019985999952, 50.381903387000079 ], [ -4.216175910999937, 50.387762762000079 ], [ -4.193755662999934, 50.376898505000042 ], [ -4.228505011999914, 50.370672919000071 ], [ -4.228505011999914, 50.363836981000077 ], [ -4.200550910999937, 50.363836981000077 ], [ -4.207997199999909, 50.356390692000048 ], [ -4.180043097999942, 50.356390692000048 ], [ -4.197987433999913, 50.342230536000045 ], [ -4.193755662999934, 50.322251695000034 ], [ -4.214995897999927, 50.323146877000056 ], [ -4.235096808999913, 50.349554755000042 ], [ -4.252349412999934, 50.356390692000048 ], [ -4.337717251999948, 50.370672919000071 ], [ -4.383697068999936, 50.36749909100007 ], [ -4.495350714999915, 50.32843659100007 ], [ -4.659820115999935, 50.322251695000034 ], [ -4.673451300999943, 50.315415757000039 ], [ -4.687163865999935, 50.342718817000048 ], [ -4.694325324999909, 50.343451239000046 ], [ -4.763295050999943, 50.322088934000078 ], [ -4.755441860999952, 50.301743882000039 ], [ -4.779855923999946, 50.284328518000052 ], [ -4.776519334999932, 50.260809637000079 ], [ -4.800160285999937, 50.229559637000079 ], [ -4.849720831999946, 50.234564520000049 ], [ -4.904774542999917, 50.20844147300005 ], [ -4.947255011999914, 50.199367580000057 ], [ -5.002430792999917, 50.144110419000071 ], [ -5.014556443999936, 50.15656159100007 ], [ -5.020375128999945, 50.191961981000077 ], [ -5.033192511999914, 50.199367580000057 ], [ -5.05296790299991, 50.195786851000037 ], [ -5.051869269999941, 50.175523179000038 ], [ -5.064564581999946, 50.158392645000049 ], [ -5.043446417999917, 50.144110419000071 ], [ -5.08031165299991, 50.132717190000051 ], [ -5.085031704999949, 50.109930731000077 ], [ -5.125965949999909, 50.09634023600006 ], [ -5.070790167999917, 50.089504299000055 ], [ -5.056507941999939, 50.060614325000074 ], [ -5.098052537999934, 50.014390367000033 ], [ -5.146473761999914, 50.010565497000073 ], [ -5.176136847999942, 49.987941799000055 ], [ -5.191151495999918, 49.959133205000057 ], [ -5.245228644999941, 49.993109442000048 ], [ -5.252674933999913, 50.027777411000045 ], [ -5.304351365999935, 50.080267645000049 ], [ -5.47484290299991, 50.130438544000071 ], [ -5.521839972999942, 50.123724677000041 ], [ -5.540923631999931, 50.113470770000049 ], [ -5.534657355999911, 50.08234284100007 ], [ -5.54556230399993, 50.068915106000077 ], [ -5.61945553299995, 50.046210028000075 ], [ -5.667388475999928, 50.042873440000051 ], [ -5.705148891999954, 50.052313544000071 ], [ -5.715646938999953, 50.082709052000041 ], [ -5.694488084999932, 50.089504299000055 ], [ -5.70921790299991, 50.132635809000078 ], [ -5.684641079999949, 50.161525783000059 ], [ -5.510975714999915, 50.219468492000033 ], [ -5.489125128999945, 50.219794012000079 ], [ -5.437977667999917, 50.194322007000039 ], [ -5.417388475999928, 50.202460028000075 ], [ -5.387562628999945, 50.240301825000074 ], [ -5.351918097999942, 50.240301825000074 ], [ -5.314849412999934, 50.253607489000046 ], [ -5.200306769999941, 50.330755927000041 ], [ -5.149891730999911, 50.350165106000077 ], [ -5.145659959999932, 50.366888739000046 ], [ -5.153675910999937, 50.399481512000079 ], [ -5.050282355999911, 50.428697007000039 ], [ -5.038726365999935, 50.44790273600006 ], [ -5.025257941999939, 50.524237372000073 ], [ -4.995594855999911, 50.548163153000075 ], [ -4.975168423999946, 50.548163153000075 ], [ -4.947255011999914, 50.562445380000042 ], [ -4.933583136999914, 50.520249742000033 ], [ -4.920521613999938, 50.52765534100007 ], [ -4.844838019999941, 50.514064846000053 ], [ -4.855824347999942, 50.527411200000074 ], [ -4.906239386999914, 50.541978257000039 ], [ -4.921864386999914, 50.554877020000049 ], [ -4.915191209999932, 50.572495835000041 ], [ -4.920521613999938, 50.589178778000075 ], [ -4.792469855999911, 50.595200914000088 ], [ -4.749256964999915, 50.644435940000051 ], [ -4.751942511999914, 50.670070705000057 ], [ -4.728138800999943, 50.672308661000045 ], [ -4.657297329999949, 50.711127020000049 ], [ -4.637806769999941, 50.741156317000048 ], [ -4.577259894999941, 50.774725653000075 ], [ -4.550119594999956, 50.809556382000039 ], [ -4.55492102799991, 50.897772528000075 ], [ -4.548133371047116, 50.922990902040056 ], [ -4.458352830318859, 50.921052354782319 ], [ -4.455846523198488, 50.901596177921249 ], [ -4.417812668619774, 50.854932358841268 ], [ -4.439439255817035, 50.841031399479505 ], [ -4.450032925079427, 50.799380195539584 ], [ -4.485302090119376, 50.786047675160034 ], [ -4.440576138278175, 50.779639797838399 ], [ -4.412800055278353, 50.760493679339788 ], [ -4.394764979919898, 50.770493069399606 ], [ -4.376988287879215, 50.76439525044043 ], [ -4.378099331019314, 50.741605943259628 ], [ -4.362544725258886, 50.719385077759114 ], [ -4.36089107886022, 50.692461656380317 ], [ -4.346964281076737, 50.678560696119177 ], [ -4.335027024677458, 50.642723090298375 ], [ -4.296088833432918, 50.625488999717561 ], [ -4.301437343558575, 50.587713528456561 ], [ -4.273092820677164, 50.56492422127576 ], [ -4.270586513556736, 50.542444973356794 ], [ -4.216972214795874, 50.533556627336452 ], [ -4.203639696215021, 50.512162584135922 ], [ -4.182271491436211, 50.506607368435255 ], [ -4.189764574375602, 50.494385891195918 ], [ -4.217799037995235, 50.494670112036033 ], [ -4.236945155594469, 50.462553209263149 ], [ -4.230356411119487, 50.456765449565808 ], [ -4.213794115006408, 50.465033677961856 ], [ -4.203689363073636, 50.451388391361149 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SOM", "NAME_1": "Somerset" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.712238500155495, 51.238328824697255 ], [ -3.639759894999941, 51.226385809000078 ], [ -3.559315558999913, 51.228094794000071 ], [ -3.434193488999938, 51.209784247000073 ], [ -3.38499915299991, 51.186224677000041 ], [ -3.270741339999915, 51.189398505000042 ], [ -3.16274980399993, 51.206732489000046 ], [ -3.057525193999936, 51.208156643000052 ], [ -3.029286261999914, 51.220404364000046 ], [ -3.021839972999942, 51.213568427000041 ], [ -3.035552537999934, 51.199286200000074 ], [ -3.021839972999942, 51.192450262000079 ], [ -3.004790818999936, 51.213120835000041 ], [ -2.999582485999952, 51.233221747000073 ], [ -3.008168097999942, 51.25454336100006 ], [ -3.010609503999945, 51.310980536000045 ], [ -3.021839972999942, 51.322821356000077 ], [ -2.992176886999914, 51.321926174000055 ], [ -2.97808142741593, 51.312423814007786 ], [ -2.975859341135674, 51.293277696408552 ], [ -2.957229986574646, 51.290228786928935 ], [ -2.929738125314259, 51.299091295426933 ], [ -2.889456346033569, 51.286327215828294 ], [ -2.879456955973751, 51.301623440069704 ], [ -2.83723731125292, 51.294388740447971 ], [ -2.788919846673593, 51.297179267509136 ], [ -2.815584885633996, 51.319090073747873 ], [ -2.811967536272789, 51.327461655830746 ], [ -2.668384568992678, 51.311907050070261 ], [ -2.620868089190992, 51.282994086407939 ], [ -2.591412523169424, 51.282994086407939 ], [ -2.539477708329571, 51.299943956148638 ], [ -2.493072271668041, 51.28937612620723 ], [ -2.488369716689078, 51.275785224308606 ], [ -2.458113165889927, 51.272994697247441 ], [ -2.423076544846651, 51.282167263208578 ], [ -2.405015631965853, 51.299401353789392 ], [ -2.345846116605003, 51.299943956148638 ], [ -2.280320399866582, 51.326608995108984 ], [ -2.266987881285729, 51.316299546686707 ], [ -2.274739345744194, 51.306584378366324 ], [ -2.271147833905445, 51.295784003528922 ], [ -2.242829149445697, 51.285216172688195 ], [ -2.236162888806291, 51.264106350327779 ], [ -2.25254431776608, 51.24467601188843 ], [ -2.266161058086368, 51.20881256854517 ], [ -2.348920863606963, 51.117707018464102 ], [ -2.347525601425389, 51.094917711283301 ], [ -2.321687383865708, 51.083290514145858 ], [ -2.335304124185996, 51.06468699800655 ], [ -2.324193690986078, 51.042156074143463 ], [ -2.371425950846969, 51.006602688263399 ], [ -2.370599127647608, 50.998851222905614 ], [ -2.338947312868186, 50.989394436104305 ], [ -2.337784592884645, 50.982986558782613 ], [ -2.400571457606702, 50.96520986584261 ], [ -2.43250749322624, 50.970480862501802 ], [ -2.441137457727507, 50.952704169561741 ], [ -2.451679450146514, 50.951308906480847 ], [ -2.470593023749075, 50.96272939714396 ], [ -2.495862798729206, 50.995233873544407 ], [ -2.541958177028278, 51.001900133284494 ], [ -2.550019700748578, 50.978542385322783 ], [ -2.573661667751765, 50.982728176364219 ], [ -2.598905605209495, 50.976320299042527 ], [ -2.595029873429951, 50.957458401384088 ], [ -2.616139695790366, 50.911311347140952 ], [ -2.607793952129214, 50.890485744721332 ], [ -2.6144602118693, 50.885473131379911 ], [ -2.653062507228924, 50.886610012042411 ], [ -2.714764167232545, 50.868006496802366 ], [ -2.758895839871116, 50.867179674502324 ], [ -2.788919846673593, 50.854673977322193 ], [ -2.807807582753753, 50.861340237062279 ], [ -2.823310512570117, 50.852710273460332 ], [ -2.920255500091287, 50.841031399479505 ], [ -2.948522507707594, 50.822479560183524 ], [ -2.962811041596296, 50.850488186280757 ], [ -2.977228765794905, 50.859944973082008 ], [ -3.003092820876986, 50.861340237062279 ], [ -3.030300462196578, 50.851625067842576 ], [ -3.027251552717019, 50.868574938482595 ], [ -3.048361375077434, 50.877721666022069 ], [ -3.047508714355672, 50.905781968962685 ], [ -3.090064255860739, 50.908004055242941 ], [ -3.147528448878802, 50.896893622043024 ], [ -3.178120897361509, 50.914670314983027 ], [ -3.157243618098505, 50.948570055363746 ], [ -3.268373785821552, 50.947433172902606 ], [ -3.321445482223226, 50.978826606162897 ], [ -3.370589769102594, 50.980764472502358 ], [ -3.38030493832224, 51.017454739044922 ], [ -3.422266200624676, 51.0293919954442 ], [ -3.444487067024511, 51.026343085065321 ], [ -3.475027838663834, 51.036058255184287 ], [ -3.508074917423528, 51.0305288761067 ], [ -3.528926357365492, 51.007171129044366 ], [ -3.599748908285505, 51.011873684023271 ], [ -3.607784592684823, 51.02437938120346 ], [ -3.588095871827022, 51.054661770424332 ], [ -3.596131558024979, 51.062981676563084 ], [ -3.636413337305669, 51.062154853363779 ], [ -3.678374599608105, 51.082463690946554 ], [ -3.715581630987515, 51.08298045488408 ], [ -3.750592413609013, 51.106906642727381 ], [ -3.812785000027759, 51.1288174507647 ], [ -3.825884976410521, 51.141891587826478 ], [ -3.827280238592152, 51.171347153848046 ], [ -3.821130743688855, 51.177186591288148 ], [ -3.724211594589406, 51.178530178424978 ], [ -3.712238500155495, 51.238328824697255 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NSM", "NAME_1": "North Somerset" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.992176886999914, 51.321926174000055 ], [ -2.987782355999911, 51.346665757000039 ], [ -2.959584113999938, 51.374253648000035 ], [ -2.974680141999954, 51.38422272300005 ], [ -2.952951626999948, 51.398504950000074 ], [ -2.921009894999941, 51.394435940000051 ], [ -2.816395636999914, 51.473618882000039 ], [ -2.780873175999943, 51.489081122000073 ], [ -2.729387672254038, 51.496219036808597 ], [ -2.630557419988975, 51.443010159491223 ], [ -2.631875168704084, 51.388129787959315 ], [ -2.646602952164528, 51.349320787024681 ], [ -2.680063442074186, 51.341285101726044 ], [ -2.709493170573353, 51.353351549334491 ], [ -2.712697108784539, 51.319813544159729 ], [ -2.811967536272789, 51.327461655830746 ], [ -2.815584885633996, 51.319090073747873 ], [ -2.788919846673593, 51.297179267509136 ], [ -2.83723731125292, 51.294388740447971 ], [ -2.879456955973751, 51.301623440069704 ], [ -2.889456346033569, 51.286327215828294 ], [ -2.929738125314259, 51.299091295426933 ], [ -2.957229986574646, 51.290228786928935 ], [ -2.975859341135674, 51.293277696408552 ], [ -2.97808142741593, 51.312423814007786 ], [ -2.992176886999914, 51.321926174000055 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BST", "NAME_1": "Bristol" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.729387672254038, 51.496219036808597 ], [ -2.696156378999945, 51.512640692000048 ], [ -2.678751335909173, 51.5313044140618 ], [ -2.635880092592231, 51.508587551274445 ], [ -2.528832363123058, 51.480475572389707 ], [ -2.518135341972481, 51.472414049568727 ], [ -2.520822516246142, 51.422908027483459 ], [ -2.539529385173012, 51.393452460562571 ], [ -2.562292853032773, 51.380119941082398 ], [ -2.633502976681029, 51.382135321787644 ], [ -2.630557419988975, 51.443010159491223 ], [ -2.729387672254038, 51.496219036808597 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SGC", "NAME_1": "South Gloucestershire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.678751335909173, 51.5313044140618 ], [ -2.607818162999934, 51.607367255000042 ], [ -2.580433722999942, 51.618638414000088 ], [ -2.562245245999918, 51.653387762000079 ], [ -2.535490393242877, 51.672949577354615 ], [ -2.487232835127259, 51.659689439016347 ], [ -2.478912929887827, 51.639122219015178 ], [ -2.445013190406428, 51.648268948353234 ], [ -2.379203253727212, 51.635763251173103 ], [ -2.384190028646913, 51.603000393253524 ], [ -2.377265387387752, 51.593853664814731 ], [ -2.343908250265542, 51.608555609853511 ], [ -2.300319179986161, 51.60661774441337 ], [ -2.308070645344003, 51.62356761325475 ], [ -2.286159837306684, 51.622714952532988 ], [ -2.273085700244906, 51.612457180054776 ], [ -2.287245042025063, 51.58827260979308 ], [ -2.261432663786422, 51.567705389791854 ], [ -2.261975267044932, 51.547164008212405 ], [ -2.245283778823364, 51.518561102912543 ], [ -2.280578783184296, 51.509931139310595 ], [ -2.320550503203151, 51.48383454023184 ], [ -2.286986659606669, 51.481302394689749 ], [ -2.282232427784322, 51.474946194211441 ], [ -2.287477586021794, 51.459649969970087 ], [ -2.280656296650761, 51.420272529153863 ], [ -2.397703416179695, 51.402857571419759 ], [ -2.47395199159115, 51.404201158556589 ], [ -2.503433396933758, 51.405544744794099 ], [ -2.522682868219817, 51.418825589229527 ], [ -2.518135341972481, 51.472414049568727 ], [ -2.528832363123058, 51.480475572389707 ], [ -2.635880092592231, 51.508587551274445 ], [ -2.678751335909173, 51.5313044140618 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NWP", "NAME_1": "Newport" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.7980961304321, 51.563498537527437 ], [ -2.858713344999956, 51.546128648000035 ], [ -2.943348761999914, 51.542547919000071 ], [ -2.974680141999954, 51.562974351000037 ], [ -3.015695766999954, 51.531642971000053 ], [ -3.076506206196484, 51.507753690880122 ], [ -3.065621304079912, 51.522695217110538 ], [ -3.095025194157415, 51.533288886372986 ], [ -3.102389084988317, 51.543107408380195 ], [ -3.083630540117326, 51.562718613972834 ], [ -3.110037196659334, 51.586308905931219 ], [ -2.970898402839055, 51.62607392037512 ], [ -2.89661353218878, 51.62607392037512 ], [ -2.835015224972665, 51.649612535490121 ], [ -2.81509396011819, 51.649612535490121 ], [ -2.789746669872898, 51.631499945765881 ], [ -2.847701789306143, 51.595274767216722 ], [ -2.853153652219305, 51.584396878013479 ], [ -2.7980961304321, 51.563498537527437 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CRF", "NAME_1": "Cardiff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.076506206196484, 51.507753690880122 ], [ -3.131703253999945, 51.480414130000042 ], [ -3.145375128999945, 51.459947007000039 ], [ -3.172718879372781, 51.453111070419538 ], [ -3.200729335590381, 51.467711493690445 ], [ -3.260751511672936, 51.469313463245726 ], [ -3.291369797678044, 51.500422674766583 ], [ -3.235300868640195, 51.542435614811723 ], [ -3.156416794899201, 51.553003444753131 ], [ -3.102389084988317, 51.543107408380195 ], [ -3.095025194157415, 51.533288886372986 ], [ -3.067507492676668, 51.52605418585199 ], [ -3.076506206196484, 51.507753690880122 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-VGL", "NAME_1": "Vale of Glamorgan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.172718879372781, 51.453111070419538 ], [ -3.160064256999931, 51.431830145000049 ], [ -3.167144334999932, 51.41046784100007 ], [ -3.184803839999915, 51.397609768000052 ], [ -3.218861456999946, 51.402777411000045 ], [ -3.289418097999942, 51.38422272300005 ], [ -3.539173956999946, 51.398504950000074 ], [ -3.575311347940385, 51.420440848066676 ], [ -3.525593227945137, 51.435775458070907 ], [ -3.543369919985821, 51.4479969353103 ], [ -3.517273321806385, 51.449934800750441 ], [ -3.523086920824767, 51.493549710350806 ], [ -3.47918779128355, 51.511636460754062 ], [ -3.463917406363237, 51.506882228931715 ], [ -3.454460617763289, 51.515512193432983 ], [ -3.392242193822199, 51.496056017471176 ], [ -3.37224341460194, 51.506882228931715 ], [ -3.330592209762699, 51.500215969191572 ], [ -3.322246466101547, 51.513806871090196 ], [ -3.291369797678044, 51.500422674766583 ], [ -3.260751511672936, 51.469313463245726 ], [ -3.200729335590381, 51.467711493690445 ], [ -3.172718879372781, 51.453111070419538 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BGE", "NAME_1": "Bridgend" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.575311347940385, 51.420440848066676 ], [ -3.604725714999915, 51.445705471000053 ], [ -3.663197394999941, 51.476223049000055 ], [ -3.695423956999946, 51.471502997000073 ], [ -3.748036261999914, 51.500921942000048 ], [ -3.741851365999935, 51.508368231000077 ], [ -3.751909071446505, 51.533081246402389 ], [ -3.691138678307368, 51.525795803433539 ], [ -3.640314906607671, 51.542435614811723 ], [ -3.651967943066154, 51.569927476971486 ], [ -3.682508713806101, 51.587445787493095 ], [ -3.653621588565443, 51.639949042214482 ], [ -3.588638475085588, 51.634367988092151 ], [ -3.549183519004202, 51.641757717344774 ], [ -3.490814989320313, 51.617004706302112 ], [ -3.46182451039283, 51.58982290340424 ], [ -3.475234544238845, 51.510396227304 ], [ -3.523086920824767, 51.493549710350806 ], [ -3.517273321806385, 51.449934800750441 ], [ -3.543369919985821, 51.4479969353103 ], [ -3.525593227945137, 51.435775458070907 ], [ -3.575311347940385, 51.420440848066676 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NTL", "NAME_1": "Neath Port Talbot" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.751909071446505, 51.533081246402389 ], [ -3.782215949999909, 51.576646226000037 ], [ -3.807728644999941, 51.589178778000075 ], [ -3.841623501999948, 51.621527411000045 ], [ -3.886789516999954, 51.62140534100007 ], [ -3.829915736921748, 51.687646389169515 ], [ -3.933139410555384, 51.762215481559224 ], [ -3.914510056893619, 51.771052150736125 ], [ -3.884744431610216, 51.764954331776948 ], [ -3.87810401029185, 51.775237941777561 ], [ -3.884201829251026, 51.793014634717565 ], [ -3.867251960409646, 51.800197659294497 ], [ -3.819451259767845, 51.799939276876103 ], [ -3.763382330729996, 51.757719632155272 ], [ -3.733099940609804, 51.760768540735512 ], [ -3.723074713926906, 51.772990017075585 ], [ -3.695582851767199, 51.768003242155885 ], [ -3.648350591906308, 51.779372056874877 ], [ -3.591687383665828, 51.762448025555898 ], [ -3.583729213632296, 51.751260077990196 ], [ -3.592229986924394, 51.742423407913918 ], [ -3.571688605344889, 51.732139797913305 ], [ -3.567787035143567, 51.721339423075904 ], [ -3.569466519064633, 51.672453517715667 ], [ -3.545566168743676, 51.642429510913189 ], [ -3.588638475085588, 51.634367988092151 ], [ -3.653621588565443, 51.639949042214482 ], [ -3.682508713806101, 51.587445787493095 ], [ -3.651967943066154, 51.569927476971486 ], [ -3.640314906607671, 51.542435614811723 ], [ -3.691138678307368, 51.525795803433539 ], [ -3.751909071446505, 51.533081246402389 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SWA", "NAME_1": "Swansea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.886789516999954, 51.62140534100007 ], [ -3.962391730999911, 51.615627346000053 ], [ -3.989979620999918, 51.606512762000079 ], [ -3.999908006999931, 51.590887762000079 ], [ -3.974598761999914, 51.562974351000037 ], [ -4.016184048999946, 51.562974351000037 ], [ -4.026519334999932, 51.554022528000075 ], [ -4.046457485999952, 51.568426825000074 ], [ -4.070220506999931, 51.555568752000056 ], [ -4.121652798999946, 51.565985419000071 ], [ -4.166411912999934, 51.542547919000071 ], [ -4.196766730999911, 51.549383856000077 ], [ -4.200550910999937, 51.538763739000046 ], [ -4.213368292999917, 51.539129950000074 ], [ -4.289906378999945, 51.555568752000056 ], [ -4.297352667999917, 51.569240627000056 ], [ -4.278309699999909, 51.578192450000074 ], [ -4.289906378999945, 51.617010809000078 ], [ -4.255767381999931, 51.623846747000073 ], [ -4.234730597999942, 51.644964911000045 ], [ -4.228505011999914, 51.637437242000033 ], [ -4.234730597999942, 51.631293036000045 ], [ -4.22101803299995, 51.623846747000073 ], [ -4.091297980999911, 51.639878648000035 ], [ -4.070220506999931, 51.662298895000049 ], [ -4.070546028276567, 51.675970769835146 ], [ -4.041995815154735, 51.702167467054949 ], [ -4.023082240652911, 51.744077053413264 ], [ -3.978097907292579, 51.766607978175614 ], [ -3.933139410555384, 51.762215481559224 ], [ -3.829915736921748, 51.687646389169515 ], [ -3.886789516999954, 51.62140534100007 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CMN", "NAME_1": "Carmarthenshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.070546028276567, 51.675970769835146 ], [ -4.106841600999928, 51.664252020000049 ], [ -4.146351691999939, 51.667059637000079 ], [ -4.200550910999937, 51.68585846600007 ], [ -4.293690558999913, 51.672267971000053 ], [ -4.315297003999945, 51.677476304000038 ], [ -4.366444464999915, 51.708482164000088 ], [ -4.379261847999942, 51.72687409100007 ], [ -4.319976365999935, 51.724839585000041 ], [ -4.310454881999931, 51.733710028000075 ], [ -4.362538214999915, 51.742865302000041 ], [ -4.371815558999913, 51.754787502000056 ], [ -4.358021613999938, 51.773138739000046 ], [ -4.365101691999939, 51.789048570000034 ], [ -4.399159308999913, 51.761623440000051 ], [ -4.426503058999913, 51.775295315000051 ], [ -4.445790167999917, 51.773260809000078 ], [ -4.449330206999946, 51.766302802000041 ], [ -4.426503058999913, 51.747300523000035 ], [ -4.460764126999948, 51.73578522300005 ], [ -4.574208136999914, 51.741156317000048 ], [ -4.639261350630818, 51.733164325373309 ], [ -4.637411668213929, 51.793531399554411 ], [ -4.649814011707292, 51.817509264241153 ], [ -4.676401536301853, 51.826345934317374 ], [ -4.750867275004737, 51.820144762570692 ], [ -4.767713791957931, 51.830790106877885 ], [ -4.724279751309496, 51.845879625544285 ], [ -4.725158249553601, 51.860038967324442 ], [ -4.741100429840969, 51.874198310003976 ], [ -4.693273891676768, 51.90879568147551 ], [ -4.631210495567927, 51.910578518184025 ], [ -4.494681361655523, 51.960187893056798 ], [ -4.494681361655523, 51.969076239976459 ], [ -4.523981898945465, 51.993880926963186 ], [ -4.556331345715023, 52.039097805219512 ], [ -4.409596117067167, 52.028245755337309 ], [ -4.235704922144464, 52.031863104698516 ], [ -4.203097092956511, 52.040906481249067 ], [ -4.119717169811565, 52.089792384810664 ], [ -4.072665778003284, 52.104313462696098 ], [ -3.989337530802402, 52.097078762175101 ], [ -3.934999761629683, 52.122400213998674 ], [ -3.866140916370227, 52.124208889128909 ], [ -3.784595505877917, 52.106122137826389 ], [ -3.762917242736592, 52.106122137826389 ], [ -3.741161465229425, 52.121625068542073 ], [ -3.706693284967116, 52.114648749540152 ], [ -3.710569016746717, 52.086588447498855 ], [ -3.667522548826582, 52.075219631880486 ], [ -3.658918422747035, 52.054910794297712 ], [ -3.641994391428057, 52.041888333179998 ], [ -3.643648036927345, 52.03134634076099 ], [ -3.695582851767199, 51.988816636778324 ], [ -3.697804938047454, 51.971324163779116 ], [ -3.686694504847537, 51.948250637556839 ], [ -3.709897223178302, 51.932334295691192 ], [ -3.716692674127614, 51.903292140819644 ], [ -3.711292487158573, 51.881794744831609 ], [ -3.721679449946691, 51.865775051077719 ], [ -3.752271898429399, 51.847171535837674 ], [ -3.766922165725362, 51.817715968916787 ], [ -3.799995082906776, 51.7852631702591 ], [ -3.819451259767845, 51.799939276876103 ], [ -3.867251960409646, 51.800197659294497 ], [ -3.884201829251026, 51.793014634717565 ], [ -3.87810401029185, 51.775237941777561 ], [ -3.884744431610216, 51.764954331776948 ], [ -3.914510056893619, 51.771052150736125 ], [ -3.935025600950723, 51.761336982415799 ], [ -3.978097907292579, 51.766607978175614 ], [ -4.009749722072002, 51.754954941717187 ], [ -4.023082240652911, 51.744077053413264 ], [ -4.041995815154735, 51.702167467054949 ], [ -4.070546028276567, 51.675970769835146 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-PEM", "NAME_1": "Pembrokeshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.639261350630818, 51.733164325373309 ], [ -4.678212042999917, 51.71743398600006 ], [ -4.680287238999938, 51.692694403000075 ], [ -4.69163977799991, 51.689886786000045 ], [ -4.712310350999928, 51.650091864000046 ], [ -4.734934048999946, 51.659247137000079 ], [ -4.759185350999928, 51.644964911000045 ], [ -4.86351477799991, 51.644110419000071 ], [ -4.941029425999943, 51.596502997000073 ], [ -5.045765753999945, 51.626898505000042 ], [ -5.036610480999911, 51.637437242000033 ], [ -5.051177537999934, 51.656927802000041 ], [ -5.100493943999936, 51.66469961100006 ], [ -5.119740363999938, 51.678412177000041 ], [ -5.113433397999927, 51.685288804000038 ], [ -5.036610480999911, 51.678412177000041 ], [ -5.043446417999917, 51.692694403000075 ], [ -4.988189256999931, 51.68585846600007 ], [ -4.868275519999941, 51.716782945000034 ], [ -4.844838019999941, 51.713812567000048 ], [ -4.873402472999942, 51.73773834800005 ], [ -4.879017706999946, 51.76203034100007 ], [ -4.862538214999915, 51.782375393000052 ], [ -4.824330206999946, 51.788275458000044 ], [ -4.824330206999946, 51.795721747000073 ], [ -4.933583136999914, 51.775295315000051 ], [ -4.905181443999936, 51.771185614000046 ], [ -4.900542772999927, 51.762111721000053 ], [ -4.906239386999914, 51.747300523000035 ], [ -4.892079230999911, 51.739406643000052 ], [ -4.910552537999934, 51.71820709800005 ], [ -5.009917772999927, 51.706366278000075 ], [ -5.149240688999953, 51.718085028000075 ], [ -5.166900193999936, 51.713812567000048 ], [ -5.156971808999913, 51.69757721600007 ], [ -5.182850714999915, 51.689276434000078 ], [ -5.180653449999909, 51.706366278000075 ], [ -5.249501105999911, 51.733710028000075 ], [ -5.213937954999949, 51.735744533000059 ], [ -5.176828579999949, 51.759670315000051 ], [ -5.125965949999909, 51.768500067000048 ], [ -5.110259568999936, 51.778509833000044 ], [ -5.113392706999946, 51.828802802000041 ], [ -5.125884568999936, 51.856024481000077 ], [ -5.221587693999936, 51.877671617000033 ], [ -5.310943162999934, 51.863999742000033 ], [ -5.297352667999917, 51.870184637000079 ], [ -5.302561001999948, 51.885239976000037 ], [ -5.290516730999911, 51.891994533000059 ], [ -5.298329230999911, 51.910956122000073 ], [ -5.234201626999948, 51.923041083000044 ], [ -5.191151495999918, 51.946600653000075 ], [ -5.119536912999934, 51.958929755000042 ], [ -5.088042772999927, 51.97601959800005 ], [ -5.085031704999949, 52.001857815000051 ], [ -5.070790167999917, 52.001857815000051 ], [ -5.081206834999932, 52.021185614000046 ], [ -5.070220506999931, 52.026353257000039 ], [ -5.026600714999915, 52.027411200000074 ], [ -4.961740688999953, 52.007513739000046 ], [ -4.913685675999943, 52.014837958000044 ], [ -4.920521613999938, 52.028509833000044 ], [ -4.841420050999943, 52.014837958000044 ], [ -4.83226477799991, 52.01898834800005 ], [ -4.838002081999946, 52.049017645000049 ], [ -4.77757727799991, 52.064886786000045 ], [ -4.738677537999934, 52.100816148000035 ], [ -4.706532355999911, 52.113470770000049 ], [ -4.693763405982053, 52.107266913710191 ], [ -4.696813726672133, 52.06834666656539 ], [ -4.641830003252039, 52.063928331527279 ], [ -4.622347987969306, 52.05062165046877 ], [ -4.55940609361636, 52.038219306076087 ], [ -4.494681361655523, 51.969076239976459 ], [ -4.494681361655523, 51.960187893056798 ], [ -4.517729051254719, 51.94866404870686 ], [ -4.597517462560859, 51.919441025782703 ], [ -4.631210495567927, 51.910578518184025 ], [ -4.693273891676768, 51.90879568147551 ], [ -4.741100429840969, 51.874198310003976 ], [ -4.725158249553601, 51.860038967324442 ], [ -4.724279751309496, 51.845879625544285 ], [ -4.767713791957931, 51.830790106877885 ], [ -4.750867275004737, 51.820144762570692 ], [ -4.676401536301853, 51.826345934317374 ], [ -4.649814011707292, 51.817509264241153 ], [ -4.637411668213929, 51.793531399554411 ], [ -4.639261350630818, 51.733164325373309 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CGN", "NAME_1": "Ceredigion" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.693763405982053, 52.107266913710191 ], [ -4.673451300999943, 52.097398179000038 ], [ -4.675689256999931, 52.126939195000034 ], [ -4.637521938999953, 52.138495184000078 ], [ -4.50226803299995, 52.138373114000046 ], [ -4.484283006999931, 52.156317450000074 ], [ -4.434803839999915, 52.170355536000045 ], [ -4.385568813999953, 52.20343659100007 ], [ -4.315825975999928, 52.216294664000031 ], [ -4.197132941999939, 52.279282945000034 ], [ -4.139068162999934, 52.330226955000057 ], [ -4.096262173999946, 52.387884833000044 ], [ -4.078968878999945, 52.453029690000051 ], [ -4.056548631999931, 52.487860419000071 ], [ -4.064035610999952, 52.509182033000059 ], [ -4.056548631999931, 52.529445705000057 ], [ -4.016184048999946, 52.521958726000037 ], [ -3.947336391999954, 52.550877476014705 ], [ -3.867820400291237, 52.556068834109396 ], [ -3.839475877409825, 52.548575751169949 ], [ -3.829192267409212, 52.532711087047005 ], [ -3.833946499231558, 52.504134020168863 ], [ -3.813120896811938, 52.481344712988061 ], [ -3.766689621728688, 52.486615708747934 ], [ -3.745321417849141, 52.501059272267582 ], [ -3.724728359426251, 52.498837185088007 ], [ -3.736975674188045, 52.467185370308584 ], [ -3.757801275708289, 52.458555405807317 ], [ -3.760850186087225, 52.437419745025181 ], [ -3.72005164196969, 52.420211493765407 ], [ -3.69447180772778, 52.382436022504407 ], [ -3.690570238425778, 52.364090887884117 ], [ -3.670313075887748, 52.363264065584133 ], [ -3.651967943066154, 52.347451077405253 ], [ -3.66225155306671, 52.339389552785633 ], [ -3.703644374588237, 52.334686997806671 ], [ -3.731162075169664, 52.318822332784407 ], [ -3.731678840006452, 52.311045029904164 ], [ -3.71586585092831, 52.298565172045016 ], [ -3.71700273338945, 52.286602078123394 ], [ -3.701138068367186, 52.273837999424131 ], [ -3.73475358700847, 52.257999172823531 ], [ -3.739481981308415, 52.246888740522934 ], [ -3.733771735077539, 52.242082830957884 ], [ -3.741574876379445, 52.236140042528916 ], [ -3.752530279948473, 52.178520819879907 ], [ -3.746690843407691, 52.143845934042588 ], [ -3.755785895003044, 52.124622301178249 ], [ -3.741161465229425, 52.121625068542073 ], [ -3.762917242736592, 52.106122137826389 ], [ -3.866140916370227, 52.124208889128909 ], [ -3.934999761629683, 52.122400213998674 ], [ -3.989337530802402, 52.097078762175101 ], [ -4.072665778003284, 52.104313462696098 ], [ -4.119717169811565, 52.089792384810664 ], [ -4.203097092956511, 52.040906481249067 ], [ -4.235704922144464, 52.031863104698516 ], [ -4.409596117067167, 52.028245755337309 ], [ -4.558682624103824, 52.037676702817578 ], [ -4.622347987969306, 52.05062165046877 ], [ -4.641830003252039, 52.063928331527279 ], [ -4.696813726672133, 52.06834666656539 ], [ -4.693763405982053, 52.107266913710191 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-GWN", "NAME_1": "Gwynedd" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.947336391999954, 52.550877476014705 ], [ -3.947336391999954, 52.556708075000074 ], [ -3.974476691999939, 52.556545315000051 ], [ -4.053130662999934, 52.54242584800005 ], [ -4.125477667999917, 52.603908596000053 ], [ -4.122222459999932, 52.628729559000078 ], [ -4.105946417999917, 52.653509833000044 ], [ -4.063547329999949, 52.683091539000031 ], [ -4.056548631999931, 52.700669664000031 ], [ -3.988270636999914, 52.734279690000051 ], [ -4.048817511999914, 52.721584377000056 ], [ -4.125152147999927, 52.778306382000039 ], [ -4.149037238999938, 52.812079169000071 ], [ -4.146229620999918, 52.820217190000051 ], [ -4.117339647999927, 52.830755927000041 ], [ -4.132191535999937, 52.868312893000052 ], [ -4.129872199999909, 52.889227606000077 ], [ -4.064035610999952, 52.919175523000035 ], [ -4.077626105999911, 52.926662502000056 ], [ -4.100493943999936, 52.914129950000074 ], [ -4.118560350999928, 52.926662502000056 ], [ -4.144398566999939, 52.914780992000033 ], [ -4.228505011999914, 52.919175523000035 ], [ -4.337310350999928, 52.89203522300005 ], [ -4.406605597999942, 52.892523505000042 ], [ -4.481678839999915, 52.850897528000075 ], [ -4.475493943999936, 52.844142971000053 ], [ -4.500965949999909, 52.82680898600006 ], [ -4.501332160999937, 52.81391022300005 ], [ -4.489125128999945, 52.803168036000045 ], [ -4.516468878999945, 52.789496161000045 ], [ -4.594634568999936, 52.816799221000053 ], [ -4.648589647999927, 52.799627997000073 ], [ -4.704497850999928, 52.803168036000045 ], [ -4.747425910999937, 52.783433335000041 ], [ -4.762847459999932, 52.789496161000045 ], [ -4.752512173999946, 52.798773505000042 ], [ -4.755441860999952, 52.809312242000033 ], [ -4.734934048999946, 52.830471096000053 ], [ -4.596058722999942, 52.928412177000041 ], [ -4.523996548999946, 52.944240627000056 ], [ -4.443430141999954, 52.982163804000038 ], [ -4.423695441999939, 53.002630927000041 ], [ -4.358225063999953, 53.028469143000052 ], [ -4.345692511999914, 53.059475002000056 ], [ -4.340891079999949, 53.11273834800005 ], [ -4.327626105999911, 53.11469147300005 ], [ -4.320668097999942, 53.101507880000042 ], [ -4.303618943999936, 53.12531159100007 ], [ -4.263539191999939, 53.154527085000041 ], [ -4.234527147999927, 53.164007880000042 ], [ -4.17796790299991, 53.217596747000073 ], [ -4.122222459999932, 53.233465887000079 ], [ -4.066883917999917, 53.229071356000077 ], [ -4.000429834884765, 53.248732775621981 ], [ -3.927093268439592, 53.200784002779471 ], [ -3.950270148348693, 53.1570140653468 ], [ -4.008251105304282, 53.100325019583977 ], [ -4.006959194111516, 53.088697822446534 ], [ -3.968356898751892, 53.047485867178978 ], [ -3.968356898751892, 53.030742703013289 ], [ -3.983808152624135, 53.007565823104244 ], [ -3.979932419945214, 52.995938625966801 ], [ -3.945128342898727, 52.995938625966801 ], [ -3.894821336035818, 53.008806057453569 ], [ -3.860094774254435, 52.963744207928812 ], [ -3.787954473719992, 52.936691596240166 ], [ -3.669382899900938, 52.988833115755654 ], [ -3.601118332944736, 53.006894029535829 ], [ -3.585873786446086, 52.997178860316126 ], [ -3.593366867586894, 52.981624254555697 ], [ -3.567244431885058, 52.965191147853147 ], [ -3.493915574743994, 52.964674383915678 ], [ -3.456424323423789, 52.978265285814246 ], [ -3.423377243764776, 52.970772202874855 ], [ -3.47668148416318, 52.933306789976371 ], [ -3.467793138142838, 52.91744212495405 ], [ -3.450326503565293, 52.909949042014659 ], [ -3.468361578923748, 52.89356761305487 ], [ -3.476965705003295, 52.844940091012347 ], [ -3.490840826842714, 52.834656481011734 ], [ -3.527246873444483, 52.83326121703152 ], [ -3.587243211105317, 52.811608792311915 ], [ -3.597216762743415, 52.784375312570603 ], [ -3.580292731424436, 52.763549710150983 ], [ -3.571688605344889, 52.73052846891369 ], [ -3.601454229728915, 52.695491847870471 ], [ -3.667755092823256, 52.688825589029705 ], [ -3.698605922825095, 52.676061510330385 ], [ -3.763072272367481, 52.669395249690979 ], [ -3.796972011848879, 52.674666246350171 ], [ -3.833636439969723, 52.640766506868772 ], [ -3.827822841850661, 52.626607164189238 ], [ -3.83782223101116, 52.599115302029531 ], [ -3.875571864749759, 52.576067613329656 ], [ -3.911952073829127, 52.568006090508618 ], [ -3.927455002746171, 52.553174954260726 ], [ -3.947336391999954, 52.550877476014705 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CWY", "NAME_1": "Conwy" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.000429834884765, 53.248732775621981 ], [ -3.974598761999914, 53.261786200000074 ], [ -3.865305141999954, 53.289129950000074 ], [ -3.831288214999915, 53.289129950000074 ], [ -3.841420050999943, 53.307440497000073 ], [ -3.878407355999911, 53.337591864000046 ], [ -3.840565558999913, 53.332831122000073 ], [ -3.810129360999952, 53.317084052000041 ], [ -3.790516730999911, 53.323431708000044 ], [ -3.768869594999956, 53.319159247000073 ], [ -3.716297980999911, 53.286932684000078 ], [ -3.60220292899993, 53.288885809000078 ], [ -3.513459378651635, 53.308925168712747 ], [ -3.51869442420832, 53.249773260927213 ], [ -3.47745663141842, 53.212411200816234 ], [ -3.474898646555289, 53.169881496833568 ], [ -3.49807552736371, 53.144094957016648 ], [ -3.585667079971756, 53.087405911253768 ], [ -3.517402513015554, 53.079706121840047 ], [ -3.47745663141842, 53.056503404408545 ], [ -3.461540289552715, 52.97640493384057 ], [ -3.493915574743994, 52.964674383915678 ], [ -3.567244431885058, 52.965191147853147 ], [ -3.593366867586894, 52.981624254555697 ], [ -3.585873786446086, 52.997178860316126 ], [ -3.601118332944736, 53.006894029535829 ], [ -3.669382899900938, 52.988833115755654 ], [ -3.787954473719992, 52.936691596240166 ], [ -3.860094774254435, 52.963744207928812 ], [ -3.894821336035818, 53.008806057453569 ], [ -3.945128342898727, 52.995938625966801 ], [ -3.979932419945214, 52.995938625966801 ], [ -3.983808152624135, 53.007565823104244 ], [ -3.968356898751892, 53.030742703013289 ], [ -3.968356898751892, 53.047485867178978 ], [ -4.006959194111516, 53.088697822446534 ], [ -4.008251105304282, 53.100325019583977 ], [ -3.950270148348693, 53.1570140653468 ], [ -3.927093268439592, 53.200784002779471 ], [ -4.000429834884765, 53.248732775621981 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-DEN", "NAME_1": "Denbighshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.513459378651635, 53.308925168712747 ], [ -3.360461948346862, 53.351146212651599 ], [ -3.3756798968098, 53.332197171462269 ], [ -3.382113612553212, 53.297418931938125 ], [ -3.349919196313863, 53.284551500451357 ], [ -3.340875819763255, 53.272924303313914 ], [ -3.347335373928388, 53.245897529147612 ], [ -3.340875819763255, 53.218819078137926 ], [ -3.271319341614344, 53.1570140653468 ], [ -3.191453415942419, 53.147970688796249 ], [ -3.182435878712852, 53.138927314044281 ], [ -3.122749600313796, 53.066373603259137 ], [ -3.132180548693384, 53.059087225894757 ], [ -3.141198085922952, 52.99723053715951 ], [ -3.094818487683085, 52.963744207928812 ], [ -3.200470954071307, 52.937983507432875 ], [ -3.311265225010118, 52.932841701982909 ], [ -3.373096076222964, 52.889020086807534 ], [ -3.390743577054423, 52.867367662087929 ], [ -3.436167160885759, 52.856618964093911 ], [ -3.470015225322413, 52.861941636697168 ], [ -3.468361578923748, 52.89356761305487 ], [ -3.450326503565293, 52.909949042014659 ], [ -3.467793138142838, 52.91744212495405 ], [ -3.47668148416318, 52.933306789976371 ], [ -3.423377243764776, 52.970772202874855 ], [ -3.461540289552715, 52.97640493384057 ], [ -3.47745663141842, 53.056503404408545 ], [ -3.517402513015554, 53.079706121840047 ], [ -3.585667079971756, 53.087405911253768 ], [ -3.49807552736371, 53.144094957016648 ], [ -3.474898646555289, 53.169881496833568 ], [ -3.47745663141842, 53.212411200816234 ], [ -3.51869442420832, 53.249773260927213 ], [ -3.513459378651635, 53.308925168712747 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WRL", "NAME_1": "Halton" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.095943777883065, 53.287143450010205 ], [ -3.185210740999935, 53.37726471600007 ], [ -3.186350063999953, 53.392767645000049 ], [ -3.157297329999949, 53.408758856000077 ], [ -3.094227667999917, 53.417385158000059 ], [ -3.058257615999935, 53.434759833000044 ], [ -3.035552537999934, 53.433742580000057 ], [ -3.012196417999917, 53.416693427000041 ], [ -2.952951626999948, 53.323919989000046 ], [ -2.926413998695671, 53.304814303174567 ], [ -2.945034348656293, 53.289357408217768 ], [ -2.974515753998844, 53.296592108738821 ], [ -3.025287847955838, 53.293543199259204 ], [ -3.066680671275947, 53.305480454759163 ], [ -3.095943777883065, 53.287143450010205 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-HAL", "NAME_1": "Halton" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.775502082255286, 53.299872136789645 ], [ -2.748117641999954, 53.309637762000079 ], [ -2.753651495999918, 53.322455145000049 ], [ -2.743153449999909, 53.33852773600006 ], [ -2.699777798999946, 53.351792710000041 ], [ -2.764393683999913, 53.34516022300005 ], [ -2.775380011999914, 53.341009833000044 ], [ -2.782378709999932, 53.326361395000049 ], [ -2.810332811999956, 53.32172272300005 ], [ -2.803389247715643, 53.343824367700392 ], [ -2.786981981233453, 53.336589667179396 ], [ -2.771908091884939, 53.348887720791652 ], [ -2.772228359351288, 53.364960029381848 ], [ -2.741119146931112, 53.388266100500118 ], [ -2.680580206911031, 53.378809312799547 ], [ -2.662855189915092, 53.357415270498336 ], [ -2.605675217737144, 53.338088283947116 ], [ -2.569450039187984, 53.312301744130139 ], [ -2.627917891797267, 53.294214271571377 ], [ -2.735309225240542, 53.291388183517824 ], [ -2.775502082255286, 53.299872136789645 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-KWL", "NAME_1": "Knowsley" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.810332811999956, 53.32172272300005 ], [ -2.875903044793211, 53.331184318190935 ], [ -2.873623752634103, 53.397267617206751 ], [ -2.898607852570365, 53.40647228536767 ], [ -2.905182615285469, 53.419621811697198 ], [ -2.886773278963688, 53.431456385303932 ], [ -2.898607852570365, 53.465645153401056 ], [ -2.932796620667546, 53.493259157883813 ], [ -2.907812520731284, 53.50509373149049 ], [ -2.896123311741462, 53.522440789510824 ], [ -2.838916795173986, 53.509395657383664 ], [ -2.815584885633996, 53.491050522763373 ], [ -2.803931264616153, 53.466960106123963 ], [ -2.793411643732384, 53.402527428098324 ], [ -2.754702400995029, 53.378089941497592 ], [ -2.772228359351288, 53.364960029381848 ], [ -2.771908091884939, 53.348887720791652 ], [ -2.786981981233453, 53.336589667179396 ], [ -2.803389247715643, 53.343824367700392 ], [ -2.810332811999956, 53.32172272300005 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-LIV", "NAME_1": "Liverpool" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.875903044793211, 53.331184318190935 ], [ -2.956939256999931, 53.37055084800005 ], [ -3.04822815123722, 53.481020428055423 ], [ -2.932796620667546, 53.493259157883813 ], [ -2.898607852570365, 53.465645153401056 ], [ -2.886773278963688, 53.431456385303932 ], [ -2.905182615285469, 53.419621811697198 ], [ -2.898607852570365, 53.40647228536767 ], [ -2.873623752634103, 53.397267617206751 ], [ -2.875903044793211, 53.331184318190935 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SFT", "NAME_1": "Sefton" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.04822815123722, 53.481020428055423 ], [ -3.096587693999936, 53.544338283000059 ], [ -3.099476691999939, 53.572007554000038 ], [ -3.021839972999942, 53.652818101000037 ], [ -2.948476257958822, 53.709446166802763 ], [ -2.932787034793819, 53.660497545125565 ], [ -2.963637864795658, 53.626055203284977 ], [ -2.995289678675761, 53.626907864006682 ], [ -2.9964265611369, 53.61357534452651 ], [ -3.01893164657821, 53.593576565306194 ], [ -3.011696946956533, 53.577453517865536 ], [ -3.030533006193309, 53.560219428184041 ], [ -3.031695726176849, 53.541900132884791 ], [ -2.95862525055486, 53.515777696283635 ], [ -2.965291510294946, 53.544638984001892 ], [ -2.896123311741462, 53.522440789510824 ], [ -2.907812520731284, 53.50509373149049 ], [ -2.932796620667546, 53.493259157883813 ], [ -3.04822815123722, 53.481020428055423 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-LAN", "NAME_1": "Lancashire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.948476257958822, 53.709446166802763 ], [ -2.899037238999938, 53.735419012000079 ], [ -2.984852667999917, 53.736070054000038 ], [ -3.021473762004518, 53.745794989247315 ], [ -2.954121205629122, 53.807832022629725 ], [ -2.945281994068807, 53.847608473752018 ], [ -2.967380022969678, 53.896224136434739 ], [ -3.017567511999914, 53.93195221600007 ], [ -2.925689256999931, 53.952704169000071 ], [ -2.888539191999939, 53.946030992000033 ], [ -2.857980923999946, 53.967596747000073 ], [ -2.869252081999946, 53.97882721600007 ], [ -2.834462042999917, 53.999823309000078 ], [ -2.830067511999914, 54.016017971000053 ], [ -2.895497199999909, 54.002346096000053 ], [ -2.91820227799991, 54.034328518000052 ], [ -2.858876105999911, 54.081000067000048 ], [ -2.815174933999913, 54.098781643000052 ], [ -2.795969204999949, 54.125189520000049 ], [ -2.836426195612432, 54.167601552469648 ], [ -2.811399094592559, 54.173541165392464 ], [ -2.792278815414988, 54.190775255073959 ], [ -2.733083461632475, 54.182997952193716 ], [ -2.709183112210894, 54.164394436054351 ], [ -2.67112342010978, 54.158554999513569 ], [ -2.628076951290268, 54.199120998735054 ], [ -2.576710578130701, 54.196072089255495 ], [ -2.457803106628091, 54.238291733976325 ], [ -2.447519496627478, 54.230230211155288 ], [ -2.45335893406758, 54.217156074093509 ], [ -2.518910488328402, 54.160208645012915 ], [ -2.547565069572329, 54.151061917473498 ], [ -2.55144080225125, 54.128272610292697 ], [ -2.545032924929558, 54.113544826832253 ], [ -2.467828335109573, 54.079670925772575 ], [ -2.459456753026757, 54.071583564529874 ], [ -2.458345709886601, 54.047166450271448 ], [ -2.448630539767578, 54.039905911328731 ], [ -2.354734462625345, 54.042438055971502 ], [ -2.336957769685341, 54.017995104190675 ], [ -2.347525601425389, 54.002182115112475 ], [ -2.335071580189265, 53.991045844390158 ], [ -2.300009120724326, 53.989107978050697 ], [ -2.287245042025063, 53.971072902692299 ], [ -2.227507086782623, 53.982700099829742 ], [ -2.222236090123488, 53.967972317268618 ], [ -2.190584276243385, 53.965750230988363 ], [ -2.178621182321706, 53.954639797788388 ], [ -2.174177007962555, 53.9360362825484 ], [ -2.105033941862928, 53.914642239347813 ], [ -2.097540858923537, 53.888545641168378 ], [ -2.066121589040108, 53.862733262929737 ], [ -2.032557746342945, 53.847617905841673 ], [ -2.047259691381669, 53.824389349988508 ], [ -2.095577155061676, 53.810514228149088 ], [ -2.120614386045077, 53.791342272128134 ], [ -2.121415370822717, 53.75522044546716 ], [ -2.159759283763947, 53.725506497027197 ], [ -2.151387701681074, 53.696516018099715 ], [ -2.245878058025994, 53.661324368324927 ], [ -2.25502478736405, 53.647165024746073 ], [ -2.251149053785809, 53.620241604266596 ], [ -2.25809953526533, 53.614117946885699 ], [ -2.27504940410671, 53.626597804744847 ], [ -2.280010342403386, 53.665225939425511 ], [ -2.329232143648539, 53.65773285648612 ], [ -2.356620653020741, 53.664579983379497 ], [ -2.418141444971695, 53.765504055467773 ], [ -2.446563483118268, 53.772583727257199 ], [ -2.468784348618783, 53.769018052940737 ], [ -2.496327886722611, 53.761938382050687 ], [ -2.525602585590889, 53.737960517363945 ], [ -2.526506924055298, 53.653521227022964 ], [ -2.504441087286352, 53.627011216794187 ], [ -2.558908046768977, 53.59910594348446 ], [ -2.590017259189153, 53.6130069037456 ], [ -2.616139695790366, 53.59548859322399 ], [ -2.635027431870469, 53.606857407942982 ], [ -2.686703864291928, 53.59967438426537 ], [ -2.696419032612255, 53.575774033944469 ], [ -2.692543300832654, 53.56076203144255 ], [ -2.713033005568775, 53.529962877384833 ], [ -2.752022873656699, 53.511100978827074 ], [ -2.77612992955261, 53.528825994923693 ], [ -2.801683926272176, 53.516888740323054 ], [ -2.805042894114308, 53.4935309923614 ], [ -2.815584885633996, 53.491050522763373 ], [ -2.838916795173986, 53.509395657383664 ], [ -2.910307785975533, 53.524381822363182 ], [ -2.954465297935144, 53.545775865563712 ], [ -2.966970994216013, 53.540246487385446 ], [ -2.95862525055486, 53.515777696283635 ], [ -3.031695726176849, 53.541900132884791 ], [ -3.030533006193309, 53.560219428184041 ], [ -3.011696946956533, 53.577453517865536 ], [ -3.01893164657821, 53.593576565306194 ], [ -2.9964265611369, 53.61357534452651 ], [ -2.995289678675761, 53.626907864006682 ], [ -2.963637864795658, 53.626055203284977 ], [ -2.932787034793819, 53.660497545125565 ], [ -2.948476257958822, 53.709446166802763 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BPL", "NAME_1": "Blackpool" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.021473762004518, 53.745794989247315 ], [ -3.049183722999942, 53.769517320000034 ], [ -3.056385870999918, 53.80304596600007 ], [ -3.044911261999914, 53.878485419000071 ], [ -3.056630011999914, 53.906154690000051 ], [ -3.040679490999935, 53.923529364000046 ], [ -3.017567511999914, 53.93195221600007 ], [ -2.967380022969678, 53.896224136434739 ], [ -2.945281994068807, 53.847608473752018 ], [ -2.954121205629122, 53.807832022629725 ], [ -3.021473762004518, 53.745794989247315 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SAY", "NAME_1": "South Ayrshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.032500779999907, 54.993719794000071 ], [ -5.047027147999927, 55.01508209800005 ], [ -5.049672003999945, 55.048976955000057 ], [ -5.018950975999928, 55.102240302000041 ], [ -5.007801886999914, 55.141180731000077 ], [ -4.947255011999914, 55.167914130000042 ], [ -4.882394985999952, 55.218573309000078 ], [ -4.867258266999954, 55.222479559000078 ], [ -4.864816860999952, 55.241359768000052 ], [ -4.838002081999946, 55.284002997000073 ], [ -4.838002081999946, 55.325018622000073 ], [ -4.773101365999935, 55.369370835000041 ], [ -4.749256964999915, 55.413763739000046 ], [ -4.71703040299991, 55.430487372000073 ], [ -4.650502081999946, 55.448472398000035 ], [ -4.626332160999937, 55.468410549000055 ], [ -4.617787238999938, 55.495591539000031 ], [ -4.626779751999948, 55.519720770000049 ], [ -4.650786912999934, 55.537054755000042 ], [ -4.687163865999935, 55.544134833000044 ], [ -4.66624915299991, 55.562201239000046 ], [ -4.582066208688616, 55.591309923514132 ], [ -4.443056606077505, 55.54482697248676 ], [ -4.426571825229587, 55.517774359898738 ], [ -4.432540452080218, 55.483228665270644 ], [ -4.479126755895095, 55.457648831028678 ], [ -4.483570929354926, 55.445659897786015 ], [ -4.46109168143596, 55.411088364736202 ], [ -4.465613369261575, 55.385560208236996 ], [ -4.569276291567633, 55.396102199756683 ], [ -4.57829382969652, 55.388557440873171 ], [ -4.548243983573002, 55.349490058419406 ], [ -4.474605068069422, 55.310448513488097 ], [ -4.444606898789345, 55.281897285031675 ], [ -4.444606898789345, 55.200765285689329 ], [ -4.467499558757652, 55.157822171456019 ], [ -4.488919440379902, 55.151620998810017 ], [ -4.551137865220312, 55.159114080850145 ], [ -4.611134201981827, 55.140200507247584 ], [ -4.647514411061252, 55.119684964089799 ], [ -4.651700202102631, 55.10772187016812 ], [ -4.64474972242175, 55.085785223709081 ], [ -4.616715257003534, 55.069662177167743 ], [ -4.630564541320553, 55.053849188988863 ], [ -4.70141292976291, 55.041886095067184 ], [ -4.763915575443434, 55.041343491808675 ], [ -4.775336066106547, 55.034677232068589 ], [ -4.800580002665015, 55.04413401976916 ], [ -4.870575731284987, 55.036615099307369 ], [ -4.913906419145917, 54.999950670287149 ], [ -4.98700273318957, 55.007702134745671 ], [ -5.032500779999907, 54.993719794000071 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NAY", "NAME_1": "North Ayshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.66624915299991, 55.562201239000046 ], [ -4.671131964999915, 55.584418036000045 ], [ -4.692738410999937, 55.605210679000038 ], [ -4.721994594999956, 55.619208075000074 ], [ -4.818104620999918, 55.637193101000037 ], [ -4.810617641999954, 55.653998114000046 ], [ -4.868560350999928, 55.675604559000078 ], [ -4.920521613999938, 55.708563544000071 ], [ -4.876332160999937, 55.735256252000056 ], [ -4.861073370999918, 55.756740627000056 ], [ -4.888824022999927, 55.865301825000074 ], [ -4.775801154100009, 55.869768378307981 ], [ -4.751694098204098, 55.857236842706072 ], [ -4.715778978017454, 55.811864935718177 ], [ -4.634750332361932, 55.76662221904013 ], [ -4.516359625696168, 55.76282400252569 ], [ -4.558140020845315, 55.714584052312148 ], [ -4.618239712192974, 55.677015285726839 ], [ -4.625758632654765, 55.665000514961775 ], [ -4.610720790831863, 55.657481594499984 ], [ -4.534084641792788, 55.655982977732208 ], [ -4.501063402354134, 55.64544098621252 ], [ -4.510029262740318, 55.621411445581714 ], [ -4.610720790831863, 55.576349596056957 ], [ -4.66624915299991, 55.562201239000046 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-IVC", "NAME_1": "Inverclyde" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.888824022999927, 55.865301825000074 ], [ -4.892648891999954, 55.89288971600007 ], [ -4.886463995999918, 55.919663804000038 ], [ -4.872141079999949, 55.937201239000046 ], [ -4.799387173999946, 55.957912502000056 ], [ -4.722320115999935, 55.94009023600006 ], [ -4.626825232076542, 55.929753423836608 ], [ -4.58421078060303, 55.863463853773794 ], [ -4.588396571644466, 55.850803127862036 ], [ -4.608395351764102, 55.84237986893578 ], [ -4.652630378089498, 55.84237986893578 ], [ -4.727354499210776, 55.848684394369286 ], [ -4.775801154100009, 55.869768378307981 ], [ -4.888824022999927, 55.865301825000074 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-RFW", "NAME_1": "Renfrewshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.626825232076542, 55.929753423836608 ], [ -4.505970831999946, 55.919094143000052 ], [ -4.488626636411706, 55.925659952049159 ], [ -4.355775111831974, 55.864032294554704 ], [ -4.356834479028009, 55.819125475560213 ], [ -4.516359625696168, 55.76282400252569 ], [ -4.634750332361932, 55.76662221904013 ], [ -4.715778978017454, 55.811864935718177 ], [ -4.751694098204098, 55.857236842706072 ], [ -4.652630378089498, 55.84237986893578 ], [ -4.608395351764102, 55.84237986893578 ], [ -4.588396571644466, 55.850803127862036 ], [ -4.58421078060303, 55.863463853773794 ], [ -4.590515306036536, 55.88134389950136 ], [ -4.626825232076542, 55.929753423836608 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WDU", "NAME_1": "West Dunbartonshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.488626636411706, 55.925659952049159 ], [ -4.481678839999915, 55.928290106000077 ], [ -4.590618439389459, 55.94151586216725 ], [ -4.599972092837845, 55.981337796502089 ], [ -4.599041916850979, 56.077817695130477 ], [ -4.521475591825094, 56.072650051258847 ], [ -4.428354661038782, 56.04551992520436 ], [ -4.470600145080653, 56.028570055463661 ], [ -4.473080613779302, 56.017149563001908 ], [ -4.458352830318859, 56.002990221221694 ], [ -4.431972012198628, 55.998546047761863 ], [ -4.408588425815196, 55.975782579002782 ], [ -4.364792649960862, 55.975601711849492 ], [ -4.359986742194394, 55.911884671140626 ], [ -4.351666836055642, 55.90521841140054 ], [ -4.355775111831974, 55.864032294554704 ], [ -4.488626636411706, 55.925659952049159 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-AGB", "NAME_1": "Argyll and Bute" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.590618439389459, 55.94151586216725 ], [ -4.673451300999943, 55.961859442000048 ], [ -4.724517381999931, 55.99835846600007 ], [ -4.78343665299991, 56.017645575000074 ], [ -4.810617641999954, 56.043768622000073 ], [ -4.824330206999946, 56.078517971000053 ], [ -4.839182094999956, 56.080633856000077 ], [ -4.844309048999946, 56.072984117000033 ], [ -4.837554490999935, 56.050604559000078 ], [ -4.778920050999943, 55.992092190000051 ], [ -4.785308397999927, 55.984035549000055 ], [ -4.828033006999931, 55.982326565000051 ], [ -4.851551886999914, 55.988023179000038 ], [ -4.862294074999909, 56.002142645000049 ], [ -4.865386522999927, 56.06671784100007 ], [ -4.826324022999927, 56.124212958000044 ], [ -4.755441860999952, 56.188381252000056 ], [ -4.755523240999935, 56.206529039000031 ], [ -4.77993730399993, 56.191473700000074 ], [ -4.851673956999946, 56.112616278000075 ], [ -4.873117641999954, 56.112005927000041 ], [ -4.880604620999918, 56.119859117000033 ], [ -4.878977016999954, 56.150539455000057 ], [ -4.893544074999909, 56.174261786000045 ], [ -4.907093878999945, 56.177069403000075 ], [ -4.920521613999938, 56.167914130000042 ], [ -4.886219855999911, 56.08038971600007 ], [ -4.889149542999917, 56.064846096000053 ], [ -4.904367641999954, 56.054348049000055 ], [ -4.892648891999954, 55.989732164000031 ], [ -4.906402147999927, 55.985744533000059 ], [ -4.954701300999943, 55.996568101000037 ], [ -4.954701300999943, 55.989732164000031 ], [ -4.918446417999917, 55.973334052000041 ], [ -4.913685675999943, 55.961859442000048 ], [ -4.96898352799991, 55.879868882000039 ], [ -4.994740363999938, 55.869818427000041 ], [ -5.026356574999909, 55.873724677000041 ], [ -5.042469855999911, 55.884751695000034 ], [ -5.070790167999917, 55.958685614000046 ], [ -5.110829230999911, 55.988959052000041 ], [ -5.123605923999946, 56.009914455000057 ], [ -5.139637824999909, 56.002752997000073 ], [ -5.085682745999918, 55.931870835000041 ], [ -5.078236456999946, 55.910956122000073 ], [ -5.086537238999938, 55.901271877000056 ], [ -5.171538865999935, 55.935532945000034 ], [ -5.180653449999909, 55.948431708000044 ], [ -5.180653449999909, 55.969305731000077 ], [ -5.199615037999934, 55.948553778000075 ], [ -5.212635870999918, 55.917141018000052 ], [ -5.242054816999939, 55.89288971600007 ], [ -5.201079881999931, 55.83148834800005 ], [ -5.296701626999948, 55.852687893000052 ], [ -5.307118292999917, 55.860419012000079 ], [ -5.313384568999936, 55.885443427000041 ], [ -5.338286912999934, 55.90375397300005 ], [ -5.338286912999934, 55.931382554000038 ], [ -5.323963995999918, 55.958685614000046 ], [ -5.338286912999934, 55.996568101000037 ], [ -5.313628709999932, 56.01235586100006 ], [ -5.204497850999928, 56.11945221600007 ], [ -5.104603644999941, 56.151516018000052 ], [ -5.043446417999917, 56.216294664000031 ], [ -4.94009355399993, 56.25141022300005 ], [ -4.920521613999938, 56.277777411000045 ], [ -4.975087042999917, 56.247992255000042 ], [ -5.032704230999911, 56.241156317000048 ], [ -5.064564581999946, 56.229315497000073 ], [ -5.108876105999911, 56.174709377000056 ], [ -5.228138800999943, 56.12921784100007 ], [ -5.310943162999934, 56.05805084800005 ], [ -5.345692511999914, 56.051214911000045 ], [ -5.356353318999936, 56.019761460000041 ], [ -5.368641730999911, 56.009426174000055 ], [ -5.415028449999909, 56.006903387000079 ], [ -5.43382727799991, 56.010199286000045 ], [ -5.437123175999943, 56.030015367000033 ], [ -5.44790605399993, 56.022284247000073 ], [ -5.454986131999931, 55.955633856000077 ], [ -5.430775519999941, 55.948187567000048 ], [ -5.412505662999934, 55.899603583000044 ], [ -5.400380011999914, 55.89288971600007 ], [ -5.407215949999909, 55.879868882000039 ], [ -5.39289303299995, 55.873724677000041 ], [ -5.407215949999909, 55.866278387000079 ], [ -5.35179602799991, 55.832424221000053 ], [ -5.326771613999938, 55.808579820000034 ], [ -5.317779100999928, 55.783026434000078 ], [ -5.324574347999942, 55.769232489000046 ], [ -5.387562628999945, 55.75031159100007 ], [ -5.433461066999939, 55.72101471600007 ], [ -5.46117102799991, 55.68813711100006 ], [ -5.468617316999939, 55.653998114000046 ], [ -5.490101691999939, 55.644598700000074 ], [ -5.482289191999939, 55.632879950000074 ], [ -5.483876105999911, 55.610052802000041 ], [ -5.454986131999931, 55.591945705000057 ], [ -5.461089647999927, 55.578802802000041 ], [ -5.488758917999917, 55.569077867000033 ], [ -5.482289191999939, 55.550279039000031 ], [ -5.509632941999939, 55.516791083000044 ], [ -5.510975714999915, 55.484442450000074 ], [ -5.523264126999948, 55.482652085000041 ], [ -5.561512824999909, 55.435532945000034 ], [ -5.58462480399993, 55.427435614000046 ], [ -5.58462480399993, 55.421210028000075 ], [ -5.562082485999952, 55.419867255000042 ], [ -5.543690558999913, 55.406927802000041 ], [ -5.514963344999956, 55.37368398600006 ], [ -5.525054490999935, 55.358628648000035 ], [ -5.574370897999927, 55.322007554000038 ], [ -5.616281704999949, 55.306586005000042 ], [ -5.680897589999915, 55.311346747000073 ], [ -5.714019334999932, 55.29913971600007 ], [ -5.75454667899993, 55.297349351000037 ], [ -5.772287563999953, 55.301255601000037 ], [ -5.782866990999935, 55.313544012000079 ], [ -5.794667120999918, 55.356390692000048 ], [ -5.791411912999934, 55.398627020000049 ], [ -5.715646938999953, 55.44790273600006 ], [ -5.721913214999915, 55.513861395000049 ], [ -5.707753058999913, 55.543361721000053 ], [ -5.721831834999932, 55.564601955000057 ], [ -5.673329230999911, 55.640611070000034 ], [ -5.669422980999911, 55.660711981000077 ], [ -5.680897589999915, 55.67446523600006 ], [ -5.626535610999952, 55.70062897300005 ], [ -5.613189256999931, 55.725775458000044 ], [ -5.581206834999932, 55.757635809000078 ], [ -5.504628058999913, 55.78937409100007 ], [ -5.473500128999945, 55.815659898000035 ], [ -5.454986131999931, 55.845770575000074 ], [ -5.551747199999909, 55.783636786000045 ], [ -5.599436001999948, 55.764227606000077 ], [ -5.612619594999956, 55.763861395000049 ], [ -5.60578365799995, 55.776841539000031 ], [ -5.66038977799991, 55.797349351000037 ], [ -5.67406165299991, 55.845770575000074 ], [ -5.631988084999932, 55.881781317000048 ], [ -5.61937415299991, 55.903143622000073 ], [ -5.571034308999913, 55.934515692000048 ], [ -5.671701626999948, 55.886908270000049 ], [ -5.687977667999917, 55.893377997000073 ], [ -5.696400519999941, 55.915961005000042 ], [ -5.586822068999936, 56.01203034100007 ], [ -5.57843990799995, 56.024481512000079 ], [ -5.58267167899993, 56.028957424000055 ], [ -5.571034308999913, 56.037543036000045 ], [ -5.583892381999931, 56.040716864000046 ], [ -5.625599738999938, 56.024481512000079 ], [ -5.631703253999945, 56.005926825000074 ], [ -5.674875454999949, 55.977728583000044 ], [ -5.67406165299991, 55.955633856000077 ], [ -5.690785285999937, 55.937648830000057 ], [ -5.707508917999917, 55.942572333000044 ], [ -5.696441209999932, 55.982163804000038 ], [ -5.577463344999956, 56.096991278000075 ], [ -5.531605597999942, 56.086330471000053 ], [ -5.534738735999952, 56.098537502000056 ], [ -5.550526495999918, 56.106431382000039 ], [ -5.558705206999946, 56.130804755000042 ], [ -5.509632941999939, 56.188381252000056 ], [ -5.539906378999945, 56.183417059000078 ], [ -5.60578365799995, 56.139960028000075 ], [ -5.586415167999917, 56.181138414000031 ], [ -5.550526495999918, 56.216294664000031 ], [ -5.559437628999945, 56.229559637000079 ], [ -5.547230597999942, 56.240179755000042 ], [ -5.494740363999938, 56.253119208000044 ], [ -5.49282792899993, 56.26040273600006 ], [ -5.512684699999909, 56.27094147300005 ], [ -5.592152472999942, 56.249823309000078 ], [ -5.595570441999939, 56.269924221000053 ], [ -5.57258053299995, 56.328070380000042 ], [ -5.543690558999913, 56.352850653000075 ], [ -5.498199022999927, 56.348334052000041 ], [ -5.448109503999945, 56.35968659100007 ], [ -5.448109503999945, 56.365912177000041 ], [ -5.537505662999934, 56.35968659100007 ], [ -5.509632941999939, 56.400620835000041 ], [ -5.478016730999911, 56.412909247000073 ], [ -5.482289191999939, 56.421128648000035 ], [ -5.457020636999914, 56.44086334800005 ], [ -5.423573370999918, 56.450018622000073 ], [ -5.322865363999938, 56.454982815000051 ], [ -5.242054816999939, 56.442206122000073 ], [ -5.208729620999918, 56.446844794000071 ], [ -5.118519660999937, 56.507757880000042 ], [ -5.064564581999946, 56.565130927000041 ], [ -5.086537238999938, 56.558498440000051 ], [ -5.125965949999909, 56.510484117000033 ], [ -5.201079881999931, 56.462103583000044 ], [ -5.243763800999943, 56.459214585000041 ], [ -5.350168423999946, 56.47296784100007 ], [ -5.378081834999932, 56.458970445000034 ], [ -5.394276495999918, 56.46548086100006 ], [ -5.410552537999934, 56.503648179000038 ], [ -5.435943162999934, 56.491156317000048 ], [ -5.454986131999931, 56.469549872000073 ], [ -5.468617316999939, 56.475734768000052 ], [ -5.427642381999931, 56.537827867000033 ], [ -5.403797980999911, 56.524603583000044 ], [ -5.356678839999915, 56.519680080000057 ], [ -5.242054816999939, 56.565130927000041 ], [ -5.27562415299991, 56.553615627000056 ], [ -5.310943162999934, 56.552069403000075 ], [ -5.372425910999937, 56.530340887000079 ], [ -5.413929816999939, 56.544663804000038 ], [ -5.360707160999937, 56.606268622000073 ], [ -5.304517431434306, 56.640160068932005 ], [ -5.169213833351762, 56.630858872938632 ], [ -5.144745042249895, 56.616441147840646 ], [ -5.075214403421967, 56.607242744357166 ], [ -5.038627488767588, 56.623417466842568 ], [ -5.020049811049944, 56.640884101420113 ], [ -4.970853848226511, 56.644243069262188 ], [ -4.92439673472154, 56.659435939816717 ], [ -4.863961146589645, 56.646671861117454 ], [ -4.790813158400567, 56.653854884795066 ], [ -4.757249314804028, 56.643261217331315 ], [ -4.671957362842022, 56.639695543014852 ], [ -4.620590989682455, 56.64662018517339 ], [ -4.617542080202838, 56.631427313719541 ], [ -4.628626674981092, 56.623830877992589 ], [ -4.628084071722526, 56.612152004911081 ], [ -4.595605434643119, 56.607449449032799 ], [ -4.558398403263709, 56.570190741709325 ], [ -4.56421200228209, 56.564092922750149 ], [ -4.595321213803004, 56.574376532750762 ], [ -4.692834642105083, 56.547995713731154 ], [ -4.687822027864286, 56.537996324570713 ], [ -4.649736497341507, 56.526834215426675 ], [ -4.675858933942663, 56.483555203509809 ], [ -4.639401211396773, 56.47179881516314 ], [ -4.66554948641965, 56.460274969913883 ], [ -4.72223853218253, 56.453867093491567 ], [ -4.725855882443057, 56.437433986789017 ], [ -4.770581834284258, 56.42689199526933 ], [ -4.803318853782059, 56.408288479129965 ], [ -4.810295172783981, 56.392165431689307 ], [ -4.836960211744383, 56.369944566188735 ], [ -4.775826991622353, 56.343021144809939 ], [ -4.784741176963735, 56.323280748008074 ], [ -4.778953416367074, 56.318268133767333 ], [ -4.719189621803594, 56.32824168630475 ], [ -4.649245570926382, 56.320800279309424 ], [ -4.671724818845348, 56.300233059308198 ], [ -4.657436285855908, 56.281061103287243 ], [ -4.674773729224228, 56.271345934067597 ], [ -4.68521236795641, 56.24842743657689 ], [ -4.680535651399225, 56.198430488076554 ], [ -4.611315070034436, 56.088308009806781 ], [ -4.598085903341769, 56.077817695130477 ], [ -4.600540533618755, 55.991001287979032 ], [ -4.590618439389459, 55.94151586216725 ] ] ], [ [ [ -5.070790167999917, 55.509344794000071 ], [ -5.093006964999915, 55.500433661000045 ], [ -5.078236456999946, 55.455308335000041 ], [ -5.117787238999938, 55.43976471600007 ], [ -5.217355923999946, 55.437974351000037 ], [ -5.304676886999914, 55.462144273000035 ], [ -5.345692511999914, 55.482652085000041 ], [ -5.359364386999914, 55.530462958000044 ], [ -5.345692511999914, 55.550279039000031 ], [ -5.389068162999934, 55.590236721000053 ], [ -5.397857225999928, 55.614203192000048 ], [ -5.39289303299995, 55.646551825000074 ], [ -5.355213995999918, 55.689601955000057 ], [ -5.324330206999946, 55.705023505000042 ], [ -5.290516730999911, 55.708563544000071 ], [ -5.297352667999917, 55.722845770000049 ], [ -5.263172980999911, 55.722845770000049 ], [ -5.198312954999949, 55.704331773000035 ], [ -5.159982876999948, 55.676214911000045 ], [ -5.145985480999911, 55.654974677000041 ], [ -5.125965949999909, 55.605536200000074 ], [ -5.137440558999913, 55.592027085000041 ], [ -5.094227667999917, 55.566555080000057 ], [ -5.091867641999954, 55.544134833000044 ], [ -5.12523352799991, 55.536932684000078 ], [ -5.119740363999938, 55.523627020000049 ], [ -5.070790167999917, 55.509344794000071 ] ] ], [ [ [ -5.029774542999917, 55.749497789000031 ], [ -5.011341925999943, 55.737697658000059 ], [ -5.016184048999946, 55.722845770000049 ], [ -5.028797980999911, 55.723334052000041 ], [ -5.050282355999911, 55.749497789000031 ], [ -5.115589972999942, 55.784369208000044 ], [ -5.139637824999909, 55.841986395000049 ], [ -5.180653449999909, 55.862779039000031 ], [ -5.200795050999943, 55.895493882000039 ], [ -5.19953365799995, 55.911078192000048 ], [ -5.166900193999936, 55.920843817000048 ], [ -5.080922003999945, 55.879584052000041 ], [ -5.075184699999909, 55.856919664000031 ], [ -5.050282355999911, 55.845770575000074 ], [ -5.021839972999942, 55.805609442000048 ], [ -5.011463995999918, 55.774481512000079 ], [ -5.029774542999917, 55.749497789000031 ] ] ], [ [ [ -6.030384894999941, 55.729071356000077 ], [ -6.032338019999941, 55.706366278000075 ], [ -6.023508266999954, 55.681870835000041 ], [ -6.045725063999953, 55.674261786000045 ], [ -6.058257615999935, 55.660142320000034 ], [ -6.064442511999914, 55.667629299000055 ], [ -6.082427537999934, 55.652085679000038 ], [ -6.131906704999949, 55.631822007000039 ], [ -6.215321417999917, 55.626654364000046 ], [ -6.226958787999934, 55.601752020000049 ], [ -6.28734290299991, 55.57843659100007 ], [ -6.31118730399993, 55.583238023000035 ], [ -6.325184699999909, 55.605536200000074 ], [ -6.319243943999936, 55.628241278000075 ], [ -6.243234829999949, 55.660142320000034 ], [ -6.277088995999918, 55.704006252000056 ], [ -6.325184699999909, 55.715399481000077 ], [ -6.32095292899993, 55.733465887000079 ], [ -6.249989386999914, 55.776841539000031 ], [ -6.328724738999938, 55.783148505000042 ], [ -6.349029100999928, 55.773423570000034 ], [ -6.386586066999939, 55.722316799000055 ], [ -6.418568488999938, 55.70962148600006 ], [ -6.462961391999954, 55.67446523600006 ], [ -6.490956183999913, 55.671820380000042 ], [ -6.503529425999943, 55.681341864000046 ], [ -6.502430792999917, 55.697658596000053 ], [ -6.489654100999928, 55.715399481000077 ], [ -6.503895636999914, 55.722845770000049 ], [ -6.448638475999928, 55.776841539000031 ], [ -6.482167120999918, 55.79047272300005 ], [ -6.460804816999939, 55.803208726000037 ], [ -6.445220506999931, 55.848822333000044 ], [ -6.331369594999956, 55.889960028000075 ], [ -6.318348761999914, 55.886704820000034 ], [ -6.33820553299995, 55.845770575000074 ], [ -6.33071855399993, 55.827826239000046 ], [ -6.310902472999942, 55.818426825000074 ], [ -6.318430141999954, 55.844916083000044 ], [ -6.296986456999946, 55.867173570000034 ], [ -6.229074673999946, 55.897284247000073 ], [ -6.204253709999932, 55.916571356000077 ], [ -6.140126105999911, 55.941351630000042 ], [ -6.120228644999941, 55.929429429000038 ], [ -6.099232550999943, 55.801011460000041 ], [ -6.049794074999909, 55.766343492000033 ], [ -6.058257615999935, 55.742743231000077 ], [ -6.030384894999941, 55.729071356000077 ] ] ], [ [ [ -6.20571855399993, 56.102728583000044 ], [ -6.182606574999909, 56.102606512000079 ], [ -6.174305792999917, 56.106431382000039 ], [ -6.181792772999927, 56.11945221600007 ], [ -6.149403449999909, 56.124945380000042 ], [ -6.138010219999956, 56.124701239000046 ], [ -6.133371548999946, 56.112616278000075 ], [ -6.165638800999943, 56.08148834800005 ], [ -6.177154100999928, 56.061468817000048 ], [ -6.174305792999917, 56.043768622000073 ], [ -6.221669074999909, 56.030829169000071 ], [ -6.269886847999942, 56.037543036000045 ], [ -6.254302537999934, 56.044623114000046 ], [ -6.23265540299991, 56.081610419000071 ], [ -6.20571855399993, 56.102728583000044 ] ] ], [ [ [ -5.797596808999913, 56.112616278000075 ], [ -5.715931769999941, 56.153143622000073 ], [ -5.694488084999932, 56.147406317000048 ], [ -5.687977667999917, 56.124090887000079 ], [ -5.689320441999939, 56.111761786000045 ], [ -5.740223761999914, 56.07648346600007 ], [ -5.864491339999915, 55.926743882000039 ], [ -5.886341925999943, 55.886704820000034 ], [ -5.896839972999942, 55.888902085000041 ], [ -5.945423956999946, 55.858587958000044 ], [ -5.962066209999932, 55.804754950000074 ], [ -5.987538214999915, 55.794623114000046 ], [ -6.026600714999915, 55.796087958000044 ], [ -6.062408006999931, 55.809475002000056 ], [ -6.078114386999914, 55.834906317000048 ], [ -6.086903449999909, 55.882961330000057 ], [ -6.075184699999909, 55.915961005000042 ], [ -5.997425910999937, 55.951727606000077 ], [ -5.919056769999941, 55.96039459800005 ], [ -5.886341925999943, 55.976141669000071 ], [ -5.98070227799991, 55.969916083000044 ], [ -5.995594855999911, 55.986029364000046 ], [ -5.983265753999945, 56.008856512000079 ], [ -5.924427863999938, 56.055975653000075 ], [ -5.87368730399993, 56.070135809000078 ], [ -5.797596808999913, 56.112616278000075 ] ] ], [ [ [ -5.688303188999953, 56.202053127000056 ], [ -5.673654751999948, 56.178941148000035 ], [ -5.694203253999945, 56.16860586100006 ], [ -5.749134894999941, 56.161078192000048 ], [ -5.738352016999954, 56.177476304000038 ], [ -5.688303188999953, 56.202053127000056 ] ] ], [ [ [ -5.63312740799995, 56.263495184000078 ], [ -5.622954881999931, 56.257635809000078 ], [ -5.612619594999956, 56.263495184000078 ], [ -5.610585089999915, 56.249416408000059 ], [ -5.637440558999913, 56.189276434000078 ], [ -5.66665605399993, 56.222479559000078 ], [ -5.63312740799995, 56.263495184000078 ] ] ], [ [ [ -5.63312740799995, 56.318752346000053 ], [ -5.620757615999935, 56.324204820000034 ], [ -5.58462480399993, 56.325588283000059 ], [ -5.605336066999939, 56.296942450000074 ], [ -5.598988410999937, 56.283921617000033 ], [ -5.621693488999938, 56.276068427000041 ], [ -5.640288865999935, 56.282782294000071 ], [ -5.64671790299991, 56.298773505000042 ], [ -5.63312740799995, 56.318752346000053 ] ] ], [ [ [ -5.557972785999937, 56.414292710000041 ], [ -5.526519334999932, 56.413560289000031 ], [ -5.502756313999953, 56.421128648000035 ], [ -5.536203579999949, 56.392238674000055 ], [ -5.58462480399993, 56.38703034100007 ], [ -5.557972785999937, 56.414292710000041 ] ] ], [ [ [ -6.160023566999939, 56.469549872000073 ], [ -6.237456834999932, 56.470038153000075 ], [ -6.263661261999914, 56.483221747000073 ], [ -6.242054816999939, 56.499579169000071 ], [ -6.215321417999917, 56.503648179000038 ], [ -6.160023566999939, 56.469549872000073 ] ] ], [ [ [ -6.81859290299991, 56.537827867000033 ], [ -6.741851365999935, 56.547837632000039 ], [ -6.729237433999913, 56.530340887000079 ], [ -6.743316209999932, 56.517808335000041 ], [ -6.803822394999941, 56.513617255000042 ], [ -6.805572068999936, 56.496893622000073 ], [ -6.869292772999927, 56.479641018000052 ], [ -6.887521938999953, 56.462103583000044 ], [ -6.881581183999913, 56.444281317000048 ], [ -6.965199347999942, 56.459865627000056 ], [ -6.989898240999935, 56.503648179000038 ], [ -6.81859290299991, 56.537827867000033 ] ] ], [ [ [ -5.688303188999953, 56.434800523000035 ], [ -5.657622850999928, 56.400091864000046 ], [ -5.703033006999931, 56.393377997000073 ], [ -5.71743730399993, 56.397365627000056 ], [ -5.721669074999909, 56.412339585000041 ], [ -5.742339647999927, 56.414292710000041 ], [ -5.739084438999953, 56.401190497000073 ], [ -5.783924933999913, 56.37335846600007 ], [ -5.783924933999913, 56.365912177000041 ], [ -5.712228969999956, 56.380194403000075 ], [ -5.69595292899993, 56.375433661000045 ], [ -5.702707485999952, 56.364569403000075 ], [ -5.808705206999946, 56.318915106000077 ], [ -5.848215298999946, 56.313625393000052 ], [ -5.880116339999915, 56.325588283000059 ], [ -5.853505011999914, 56.343695380000042 ], [ -5.85220292899993, 56.352850653000075 ], [ -5.872670050999943, 56.35773346600007 ], [ -5.897206183999913, 56.352850653000075 ], [ -5.914784308999913, 56.335516669000071 ], [ -6.037464972999942, 56.305243231000077 ], [ -6.065988735999952, 56.289211330000057 ], [ -6.102365688999953, 56.298244533000059 ], [ -6.146962042999917, 56.283921617000033 ], [ -6.239816860999952, 56.283921617000033 ], [ -6.266835089999915, 56.263495184000078 ], [ -6.327504035999937, 56.277248440000051 ], [ -6.360178188999953, 56.303615627000056 ], [ -6.366118943999936, 56.322170315000051 ], [ -6.357004360999952, 56.336330471000053 ], [ -6.310292120999918, 56.347357489000046 ], [ -6.290394660999937, 56.345404364000046 ], [ -6.247222459999932, 56.311672268000052 ], [ -6.228911912999934, 56.318752346000053 ], [ -6.228911912999934, 56.325588283000059 ], [ -6.249989386999914, 56.33234284100007 ], [ -6.186634894999941, 56.331244208000044 ], [ -6.153920050999943, 56.344794012000079 ], [ -6.084950324999909, 56.352850653000075 ], [ -6.020822719999956, 56.382025458000044 ], [ -6.046945766999954, 56.383978583000044 ], [ -6.154042120999918, 56.358954169000071 ], [ -6.178944464999915, 56.359930731000077 ], [ -6.198557094999956, 56.369614976000037 ], [ -6.203236456999946, 56.38031647300005 ], [ -6.189198370999918, 56.397772528000075 ], [ -6.157215949999909, 56.407375393000052 ], [ -6.126535610999952, 56.448431708000044 ], [ -6.081532355999911, 56.448431708000044 ], [ -6.009836391999954, 56.469549872000073 ], [ -6.003285285999937, 56.489406643000052 ], [ -6.016672329999949, 56.503648179000038 ], [ -6.127430792999917, 56.474351304000038 ], [ -6.174305792999917, 56.516669012000079 ], [ -6.288482225999928, 56.532294012000079 ], [ -6.33820553299995, 56.552069403000075 ], [ -6.290394660999937, 56.571966864000046 ], [ -6.325184699999909, 56.60610586100006 ], [ -6.288441535999937, 56.607977606000077 ], [ -6.256255662999934, 56.620347398000035 ], [ -6.230213995999918, 56.608587958000044 ], [ -6.222767706999946, 56.612941799000055 ], [ -6.220285610999952, 56.63226959800005 ], [ -6.151275193999936, 56.65180084800005 ], [ -6.119048631999931, 56.653876044000071 ], [ -6.058257615999935, 56.640204169000071 ], [ -6.064442511999914, 56.620347398000035 ], [ -6.03351803299995, 56.618841864000046 ], [ -6.008778449999909, 56.598700262000079 ], [ -5.968251105999911, 56.544663804000038 ], [ -5.962554490999935, 56.526109117000033 ], [ -5.85220292899993, 56.524155992000033 ], [ -5.829457160999937, 56.510809637000079 ], [ -5.794341600999928, 56.516669012000079 ], [ -5.756662563999953, 56.490057684000078 ], [ -5.710357225999928, 56.484849351000037 ], [ -5.680897589999915, 56.451849677000041 ], [ -5.648426886999914, 56.447739976000037 ], [ -5.653553839999915, 56.427964585000041 ], [ -5.688303188999953, 56.434800523000035 ] ] ], [ [ [ -6.45921790299991, 56.678127346000053 ], [ -6.497222459999932, 56.634344794000071 ], [ -6.527251756999931, 56.626532294000071 ], [ -6.564116990999935, 56.598700262000079 ], [ -6.616322394999941, 56.575181382000039 ], [ -6.668934699999909, 56.577785549000055 ], [ -6.677886522999927, 56.558254299000055 ], [ -6.701893683999913, 56.585638739000046 ], [ -6.67446855399993, 56.588446356000077 ], [ -6.648101365999935, 56.602850653000075 ], [ -6.591379360999952, 56.651841539000031 ], [ -6.55923417899993, 56.665269273000035 ], [ -6.489654100999928, 56.688666083000044 ], [ -6.452544725999928, 56.688421942000048 ], [ -6.45921790299991, 56.678127346000053 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-HLD", "NAME_1": "Highland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.304517431434306, 56.640160068932005 ], [ -5.298451300999943, 56.646429755000042 ], [ -5.317779100999928, 56.653876044000071 ], [ -5.317779100999928, 56.661322333000044 ], [ -5.286773240999935, 56.674994208000044 ], [ -5.248199022999927, 56.674058335000041 ], [ -5.218902147999927, 56.688666083000044 ], [ -5.153309699999909, 56.681219794000071 ], [ -4.995594855999911, 56.715969143000052 ], [ -5.160552537999934, 56.695868231000077 ], [ -5.238270636999914, 56.716620184000078 ], [ -5.228423631999931, 56.736476955000057 ], [ -5.154652472999942, 56.782294012000079 ], [ -5.119740363999938, 56.818426825000074 ], [ -5.179066535999937, 56.789252020000049 ], [ -5.202259894999941, 56.769110419000071 ], [ -5.233469204999949, 56.760687567000048 ], [ -5.242054816999939, 56.736476955000057 ], [ -5.268462693999936, 56.713080145000049 ], [ -5.309803839999915, 56.70648834800005 ], [ -5.34015865799995, 56.693060614000046 ], [ -5.388050910999937, 56.655218817000048 ], [ -5.434396938999953, 56.64288971600007 ], [ -5.448719855999911, 56.624579169000071 ], [ -5.482574022999927, 56.613267320000034 ], [ -5.599598761999914, 56.529038804000038 ], [ -5.67406165299991, 56.496893622000073 ], [ -5.694691535999937, 56.513861395000049 ], [ -5.770253058999913, 56.537827867000033 ], [ -5.749134894999941, 56.571966864000046 ], [ -5.793853318999936, 56.54328034100007 ], [ -5.854359503999945, 56.550482489000046 ], [ -6.003407355999911, 56.618719794000071 ], [ -6.008168097999942, 56.642279364000046 ], [ -5.983509894999941, 56.652818101000037 ], [ -5.933583136999914, 56.654730536000045 ], [ -5.866851365999935, 56.641546942000048 ], [ -5.839182094999956, 56.626532294000071 ], [ -5.831695115999935, 56.633978583000044 ], [ -5.865589972999942, 56.651434637000079 ], [ -5.865834113999938, 56.661322333000044 ], [ -5.75999915299991, 56.700751044000071 ], [ -5.735503709999932, 56.702337958000044 ], [ -5.647368943999936, 56.681219794000071 ], [ -5.594146287999934, 56.683335679000038 ], [ -5.543690558999913, 56.695461330000057 ], [ -5.636545376999948, 56.688666083000044 ], [ -5.749989386999914, 56.714544989000046 ], [ -5.89679928299995, 56.675116278000075 ], [ -5.955555792999917, 56.688666083000044 ], [ -6.024891730999911, 56.685695705000057 ], [ -6.098622199999909, 56.696966864000046 ], [ -6.123850063999953, 56.69562409100007 ], [ -6.161732550999943, 56.678208726000037 ], [ -6.222767706999946, 56.695461330000057 ], [ -6.236398891999954, 56.71906159100007 ], [ -6.234486456999946, 56.728583075000074 ], [ -6.215321417999917, 56.729641018000052 ], [ -6.180531378999945, 56.754624742000033 ], [ -6.026966925999943, 56.763739325000074 ], [ -5.965199347999942, 56.784857489000046 ], [ -5.85220292899993, 56.746975002000056 ], [ -5.858143683999913, 56.768459377000056 ], [ -5.886341925999943, 56.777411200000074 ], [ -5.886341925999943, 56.784857489000046 ], [ -5.839182094999956, 56.777411200000074 ], [ -5.802072719999956, 56.791815497000073 ], [ -5.756662563999953, 56.784857489000046 ], [ -5.831695115999935, 56.805365302000041 ], [ -5.850819464999915, 56.818019924000055 ], [ -5.851185675999943, 56.828924872000073 ], [ -5.837473110999952, 56.836615302000041 ], [ -5.733876105999911, 56.844794012000079 ], [ -5.692738410999937, 56.85492584800005 ], [ -5.66038977799991, 56.872992255000042 ], [ -5.692005988999938, 56.87531159100007 ], [ -5.708485480999911, 56.87055084800005 ], [ -5.724354620999918, 56.85382721600007 ], [ -5.744496222999942, 56.85415273600006 ], [ -5.783924933999913, 56.859930731000077 ], [ -5.735503709999932, 56.894110419000071 ], [ -5.780588344999956, 56.89874909100007 ], [ -5.874867316999939, 56.887152411000045 ], [ -5.921131964999915, 56.894110419000071 ], [ -5.85220292899993, 56.900336005000042 ], [ -5.85220292899993, 56.907700914000031 ], [ -5.880116339999915, 56.922023830000057 ], [ -5.862538214999915, 56.933742580000057 ], [ -5.831695115999935, 56.997137762000079 ], [ -5.786040818999936, 57.020575262000079 ], [ -5.755238410999937, 57.026556708000044 ], [ -5.729318813999953, 57.023830471000053 ], [ -5.688303188999953, 56.98969147300005 ], [ -5.658558722999942, 56.979478257000039 ], [ -5.625599738999938, 56.976629950000074 ], [ -5.523264126999948, 56.997137762000079 ], [ -5.523264126999948, 57.003973700000074 ], [ -5.607085740999935, 56.988511460000041 ], [ -5.628814256999931, 56.991888739000046 ], [ -5.685536261999914, 57.009588934000078 ], [ -5.680043097999942, 57.036200262000079 ], [ -5.701975063999953, 57.044907945000034 ], [ -5.742339647999927, 57.038072007000039 ], [ -5.791127081999946, 57.059271552000041 ], [ -5.715646938999953, 57.120062567000048 ], [ -5.673695441999939, 57.119045315000051 ], [ -5.645863410999937, 57.129461981000077 ], [ -5.558257615999935, 57.100409247000073 ], [ -5.459828253999945, 57.099798895000049 ], [ -5.447417772999927, 57.110174872000073 ], [ -5.400380011999914, 57.106390692000048 ], [ -5.400380011999914, 57.113836981000077 ], [ -5.420033331999946, 57.120672919000071 ], [ -5.540638800999943, 57.106390692000048 ], [ -5.58462480399993, 57.133693752000056 ], [ -5.668446417999917, 57.147650458000044 ], [ -5.680897589999915, 57.157904364000046 ], [ -5.673817511999914, 57.174994208000044 ], [ -5.625599738999938, 57.21625397300005 ], [ -5.644154425999943, 57.233221747000073 ], [ -5.620106574999909, 57.252142645000049 ], [ -5.578236456999946, 57.266750393000052 ], [ -5.543690558999913, 57.270900783000059 ], [ -5.446278449999909, 57.223049221000053 ], [ -5.407215949999909, 57.22992584800005 ], [ -5.407215949999909, 57.236721096000053 ], [ -5.458119269999941, 57.246649481000077 ], [ -5.501942511999914, 57.27765534100007 ], [ -5.464833136999914, 57.306626695000034 ], [ -5.440663214999915, 57.311835028000075 ], [ -5.440663214999915, 57.319281317000048 ], [ -5.464995897999927, 57.324937242000033 ], [ -5.50617428299995, 57.298163153000075 ], [ -5.57843990799995, 57.27765534100007 ], [ -5.656971808999913, 57.29132721600007 ], [ -5.720570441999939, 57.284491278000075 ], [ -5.729318813999953, 57.298163153000075 ], [ -5.701975063999953, 57.33234284100007 ], [ -5.654367641999954, 57.353949286000045 ], [ -5.636545376999948, 57.339789130000042 ], [ -5.613189256999931, 57.341986395000049 ], [ -5.501291469999956, 57.370998440000051 ], [ -5.456654425999943, 57.393540757000039 ], [ -5.448109503999945, 57.421698309000078 ], [ -5.46507727799991, 57.423895575000074 ], [ -5.563465949999909, 57.363104559000078 ], [ -5.639963344999956, 57.373928127000056 ], [ -5.607085740999935, 57.389105536000045 ], [ -5.619618292999917, 57.416693427000041 ], [ -5.707183397999927, 57.359767971000053 ], [ -5.784575975999928, 57.348578192000048 ], [ -5.807769334999932, 57.35492584800005 ], [ -5.82485917899993, 57.394354559000078 ], [ -5.81118730399993, 57.401190497000073 ], [ -5.82485917899993, 57.41547272300005 ], [ -5.825266079999949, 57.428900458000044 ], [ -5.81118730399993, 57.442206122000073 ], [ -5.859038865999935, 57.452704169000071 ], [ -5.872670050999943, 57.493719794000071 ], [ -5.85220292899993, 57.524115302000041 ], [ -5.847075975999928, 57.55890534100007 ], [ -5.831695115999935, 57.558823960000041 ], [ -5.839182094999956, 57.579291083000044 ], [ -5.803618943999936, 57.581366278000075 ], [ -5.732574022999927, 57.54523346600007 ], [ -5.707020636999914, 57.542303778000075 ], [ -5.68976803299995, 57.527899481000077 ], [ -5.639963344999956, 57.511053778000075 ], [ -5.653553839999915, 57.53156159100007 ], [ -5.581532355999911, 57.538397528000075 ], [ -5.516835089999915, 57.534857489000046 ], [ -5.512684699999909, 57.541489976000037 ], [ -5.543120897999927, 57.555365302000041 ], [ -5.588368292999917, 57.561021226000037 ], [ -5.632720506999931, 57.557684637000079 ], [ -5.66038977799991, 57.544582424000055 ], [ -5.694488084999932, 57.566310940000051 ], [ -5.680897589999915, 57.579291083000044 ], [ -5.714222785999937, 57.582709052000041 ], [ -5.762806769999941, 57.633978583000044 ], [ -5.805897589999915, 57.642645575000074 ], [ -5.81118730399993, 57.655096747000073 ], [ -5.805409308999913, 57.667181708000044 ], [ -5.785023566999939, 57.679510809000078 ], [ -5.790760870999918, 57.695990302000041 ], [ -5.734486456999946, 57.707953192000048 ], [ -5.704986131999931, 57.690130927000041 ], [ -5.692494269999941, 57.691066799000055 ], [ -5.67406165299991, 57.709662177000041 ], [ -5.720529751999948, 57.733384507000039 ], [ -5.803822394999941, 57.743841864000046 ], [ -5.801258917999917, 57.800441799000055 ], [ -5.81118730399993, 57.833197333000044 ], [ -5.799956834999932, 57.853705145000049 ], [ -5.776519334999932, 57.867905992000033 ], [ -5.751128709999932, 57.87335846600007 ], [ -5.698638475999928, 57.869086005000042 ], [ -5.67406165299991, 57.860500393000052 ], [ -5.674794074999909, 57.827093817000048 ], [ -5.66038977799991, 57.792222398000035 ], [ -5.63735917899993, 57.774237372000073 ], [ -5.60578365799995, 57.770493882000039 ], [ -5.625599738999938, 57.792222398000035 ], [ -5.58462480399993, 57.784816799000055 ], [ -5.591175910999937, 57.804429429000038 ], [ -5.585275844999956, 57.831447658000059 ], [ -5.650380011999914, 57.877752997000073 ], [ -5.639963344999956, 57.887844143000052 ], [ -5.653553839999915, 57.894680080000057 ], [ -5.612619594999956, 57.928778387000079 ], [ -5.587310350999928, 57.915106512000079 ], [ -5.550526495999918, 57.915106512000079 ], [ -5.556263800999943, 57.887762762000079 ], [ -5.527902798999946, 57.867580471000053 ], [ -5.487049933999913, 57.855861721000053 ], [ -5.454986131999931, 57.853705145000049 ], [ -5.46117102799991, 57.860500393000052 ], [ -5.449045376999948, 57.869126695000034 ], [ -5.437123175999943, 57.897650458000044 ], [ -5.427642381999931, 57.908270575000074 ], [ -5.414906378999945, 57.908148505000042 ], [ -5.369496222999942, 57.897528387000079 ], [ -5.293853318999936, 57.862046617000033 ], [ -5.221587693999936, 57.846869208000044 ], [ -5.247547980999911, 57.867010809000078 ], [ -5.320668097999942, 57.898504950000074 ], [ -5.39289303299995, 57.918198960000041 ], [ -5.39289303299995, 57.935614325000074 ], [ -5.37173417899993, 57.931057033000059 ], [ -5.366200324999909, 57.943060614000046 ], [ -5.297352667999917, 57.908270575000074 ], [ -5.256255662999934, 57.915106512000079 ], [ -5.198801235999952, 57.897772528000075 ], [ -5.162261522999927, 57.878485419000071 ], [ -5.119984503999945, 57.867987372000073 ], [ -5.091135219999956, 57.840318101000037 ], [ -5.070790167999917, 57.833197333000044 ], [ -5.097157355999911, 57.870917059000078 ], [ -5.197255011999914, 57.917873440000051 ], [ -5.221587693999936, 57.92133209800005 ], [ -5.221587693999936, 57.928778387000079 ], [ -5.201893683999913, 57.928656317000048 ], [ -5.193959113999938, 57.935980536000045 ], [ -5.204497850999928, 57.960150458000044 ], [ -5.292632615999935, 57.980617580000057 ], [ -5.333892381999931, 58.008530992000033 ], [ -5.359364386999914, 58.011379299000055 ], [ -5.351918097999942, 58.017523505000042 ], [ -5.366932745999918, 58.028876044000071 ], [ -5.427642381999931, 58.031195380000042 ], [ -5.413929816999939, 58.052313544000071 ], [ -5.447010870999918, 58.084377346000053 ], [ -5.428089972999942, 58.09796784100007 ], [ -5.390044725999928, 58.092189846000053 ], [ -5.366200324999909, 58.065985419000071 ], [ -5.344309048999946, 58.075506903000075 ], [ -5.300770636999914, 58.070135809000078 ], [ -5.276763475999928, 58.086411851000037 ], [ -5.283070441999939, 58.086411851000037 ], [ -5.278797980999911, 58.105373440000051 ], [ -5.290516730999911, 58.12055084800005 ], [ -5.276763475999928, 58.12055084800005 ], [ -5.276763475999928, 58.127386786000045 ], [ -5.297352667999917, 58.134833075000074 ], [ -5.242054816999939, 58.14789459800005 ], [ -5.242054816999939, 58.155340887000079 ], [ -5.290842251999948, 58.156317450000074 ], [ -5.304798956999946, 58.162095445000034 ], [ -5.297352667999917, 58.168402411000045 ], [ -5.304798956999946, 58.173325914000031 ], [ -5.331450975999928, 58.182033596000053 ], [ -5.323963995999918, 58.203111070000034 ], [ -5.346791144999941, 58.206854559000078 ], [ -5.39289303299995, 58.244696356000077 ], [ -5.392079230999911, 58.261379299000055 ], [ -5.375884568999936, 58.264227606000077 ], [ -5.293853318999936, 58.240912177000041 ], [ -5.216053839999915, 58.261419989000046 ], [ -5.173207160999937, 58.250921942000048 ], [ -5.129383917999917, 58.271389065000051 ], [ -5.067697719999956, 58.250921942000048 ], [ -5.002430792999917, 58.250921942000048 ], [ -4.933583136999914, 58.223049221000053 ], [ -4.982004360999952, 58.250921942000048 ], [ -4.926747199999909, 58.264593817000048 ], [ -5.009917772999927, 58.271389065000051 ], [ -5.029367641999954, 58.259711005000042 ], [ -5.050119594999956, 58.259914455000057 ], [ -5.096424933999913, 58.276760158000059 ], [ -5.136219855999911, 58.305568752000056 ], [ -5.160145636999914, 58.326605536000045 ], [ -5.173207160999937, 58.353949286000045 ], [ -5.153309699999909, 58.353949286000045 ], [ -5.162912563999953, 58.374497789000031 ], [ -5.146473761999914, 58.394964911000045 ], [ -5.143055792999917, 58.414780992000033 ], [ -5.057972785999937, 58.387274481000077 ], [ -5.016184048999946, 58.38812897300005 ], [ -5.05337480399993, 58.406642971000053 ], [ -5.057036912999934, 58.42218659100007 ], [ -5.098052537999934, 58.414780992000033 ], [ -5.085031704999949, 58.429022528000075 ], [ -5.105539516999954, 58.436509507000039 ], [ -5.050119594999956, 58.453802802000041 ], [ -4.995594855999911, 58.436509507000039 ], [ -5.105539516999954, 58.487372137000079 ], [ -5.105620897999927, 58.505560614000046 ], [ -5.095855272999927, 58.518866278000075 ], [ -5.02798417899993, 58.544094143000052 ], [ -5.016184048999946, 58.559393622000073 ], [ -5.022938605999911, 58.559393622000073 ], [ -5.004953579999949, 58.617743231000077 ], [ -4.988189256999931, 58.628322658000059 ], [ -4.835926886999914, 58.605047919000071 ], [ -4.818104620999918, 58.592922268000052 ], [ -4.803822394999941, 58.559393622000073 ], [ -4.818104620999918, 58.524644273000035 ], [ -4.791818813999953, 58.54165273600006 ], [ -4.785755988999938, 58.577053127000056 ], [ -4.771595831999946, 58.590399481000077 ], [ -4.776519334999932, 58.607163804000038 ], [ -4.728016730999911, 58.577460028000075 ], [ -4.660023566999939, 58.555853583000044 ], [ -4.667307094999956, 58.532049872000073 ], [ -4.714466925999943, 58.505601304000038 ], [ -4.760975714999915, 58.447984117000033 ], [ -4.74242102799991, 58.44953034100007 ], [ -4.673451300999943, 58.487372137000079 ], [ -4.666859503999945, 58.502915757000039 ], [ -4.612131313999953, 58.524644273000035 ], [ -4.584950324999909, 58.574164130000042 ], [ -4.560536261999914, 58.579901434000078 ], [ -4.517486131999931, 58.575506903000075 ], [ -4.426503058999913, 58.546372789000031 ], [ -4.426503058999913, 58.524644273000035 ], [ -4.449940558999913, 58.510199286000045 ], [ -4.495350714999915, 58.44953034100007 ], [ -4.46117102799991, 58.462469794000071 ], [ -4.43390865799995, 58.483628648000035 ], [ -4.43423417899993, 58.496283270000049 ], [ -4.343861456999946, 58.538885809000078 ], [ -4.306996222999942, 58.546372789000031 ], [ -4.234730597999942, 58.524644273000035 ], [ -4.248931443999936, 58.532049872000073 ], [ -4.22101803299995, 58.551947333000044 ], [ -4.176991339999915, 58.546372789000031 ], [ -4.149322068999936, 58.565619208000044 ], [ -4.081450975999928, 58.561835028000075 ], [ -4.048817511999914, 58.589585679000038 ], [ -4.029042120999918, 58.59516022300005 ], [ -4.003773566999939, 58.57062409100007 ], [ -3.895741339999915, 58.565619208000044 ], [ -3.810129360999952, 58.573065497000073 ], [ -3.698353644999941, 58.611151434000078 ], [ -3.597564256999931, 58.627142645000049 ], [ -3.542591925999943, 58.620835679000038 ], [ -3.556263800999943, 58.613999742000033 ], [ -3.532053188999953, 58.602118231000077 ], [ -3.447010870999918, 58.613999742000033 ], [ -3.364084438999953, 58.600816148000035 ], [ -3.350819464999915, 58.620835679000038 ], [ -3.386057094999956, 58.631740627000056 ], [ -3.412912563999953, 58.655585028000075 ], [ -3.374867316999939, 58.677069403000075 ], [ -3.358265753999945, 58.675482489000046 ], [ -3.340565558999913, 58.648138739000046 ], [ -3.204090949999909, 58.661118882000039 ], [ -3.151926235999952, 58.64126211100006 ], [ -3.052886522999927, 58.648138739000046 ], [ -3.019113735999952, 58.640326239000046 ], [ -3.049183722999942, 58.586737372000073 ], [ -3.084543423999946, 58.551947333000044 ], [ -3.118031378999945, 58.532049872000073 ], [ -3.129261847999942, 58.512640692000048 ], [ -3.129302537999934, 58.49640534100007 ], [ -3.118723110999952, 58.484442450000074 ], [ -3.097523566999939, 58.477484442000048 ], [ -3.064442511999914, 58.482977606000077 ], [ -3.053334113999938, 58.465765692000048 ], [ -3.077056443999936, 58.44953034100007 ], [ -3.086333787999934, 58.414211330000057 ], [ -3.129790818999936, 58.369289455000057 ], [ -3.220529751999948, 58.305568752000056 ], [ -3.38499915299991, 58.264593817000048 ], [ -3.438099738999938, 58.236029364000046 ], [ -3.473459438999953, 58.193426825000074 ], [ -3.515288865999935, 58.168402411000045 ], [ -3.73501542899993, 58.072170315000051 ], [ -3.809193488999938, 58.051906643000052 ], [ -3.827504035999937, 58.042059637000079 ], [ -3.851714647999927, 58.003892320000034 ], [ -3.990956183999913, 57.96039459800005 ], [ -4.001942511999914, 57.935614325000074 ], [ -4.023060675999943, 57.943060614000046 ], [ -4.016184048999946, 57.949286200000074 ], [ -4.084380662999934, 57.964178778000075 ], [ -4.089100714999915, 57.960150458000044 ], [ -4.077626105999911, 57.943060614000046 ], [ -4.016184048999946, 57.932196356000077 ], [ -3.988270636999914, 57.908270575000074 ], [ -4.008941209999932, 57.889593817000048 ], [ -4.009348110999952, 57.867905992000033 ], [ -4.070220506999931, 57.874172268000052 ], [ -4.104969855999911, 57.853705145000049 ], [ -4.218169725999928, 57.874172268000052 ], [ -4.298898891999954, 57.862779039000031 ], [ -4.353179490999935, 57.895209052000041 ], [ -4.392404751999948, 57.908270575000074 ], [ -4.339588995999918, 57.865708726000037 ], [ -4.307728644999941, 57.851467190000051 ], [ -4.269398566999939, 57.846869208000044 ], [ -4.208241339999915, 57.859198309000078 ], [ -4.149728969999956, 57.829820054000038 ], [ -4.13345292899993, 57.830145575000074 ], [ -4.139068162999934, 57.846869208000044 ], [ -4.039906378999945, 57.818182684000078 ], [ -3.983509894999941, 57.842352606000077 ], [ -3.95148678299995, 57.838324286000045 ], [ -3.933705206999946, 57.825669664000031 ], [ -3.947336391999954, 57.812689520000049 ], [ -3.914784308999913, 57.807684637000079 ], [ -3.877674933999913, 57.81671784100007 ], [ -3.798451300999943, 57.866522528000075 ], [ -3.786040818999936, 57.865423895000049 ], [ -3.779449022999927, 57.855658270000049 ], [ -3.790028449999909, 57.83071523600006 ], [ -3.988270636999914, 57.695990302000041 ], [ -4.02367102799991, 57.697821356000077 ], [ -4.028635219999956, 57.707709052000041 ], [ -4.016184048999946, 57.723334052000041 ], [ -4.042958136999914, 57.737290757000039 ], [ -4.077951626999948, 57.730292059000078 ], [ -4.168568488999938, 57.689439195000034 ], [ -4.294789191999939, 57.680161851000037 ], [ -4.30882727799991, 57.654852606000077 ], [ -4.403187628999945, 57.609523830000057 ], [ -4.428456183999913, 57.577541408000059 ], [ -4.379872199999909, 57.589341539000031 ], [ -4.328724738999938, 57.626288153000075 ], [ -4.201893683999913, 57.674994208000044 ], [ -4.169016079999949, 57.663763739000046 ], [ -4.096791144999941, 57.658107815000051 ], [ -4.009348110999952, 57.688544012000079 ], [ -4.004505988999938, 57.675970770000049 ], [ -4.025257941999939, 57.655218817000048 ], [ -4.083404100999928, 57.62335846600007 ], [ -4.118560350999928, 57.592962958000044 ], [ -4.104969855999911, 57.579291083000044 ], [ -4.170643683999913, 57.570746161000045 ], [ -4.187489386999914, 57.558823960000041 ], [ -4.178089972999942, 57.549546617000033 ], [ -4.184925910999937, 57.548163153000075 ], [ -4.262603318999936, 57.552069403000075 ], [ -4.262603318999936, 57.544582424000055 ], [ -4.207997199999909, 57.538397528000075 ], [ -4.248931443999936, 57.497463283000059 ], [ -4.194813605999911, 57.491603908000059 ], [ -4.173898891999954, 57.497463283000059 ], [ -4.149322068999936, 57.51788971600007 ], [ -4.116200324999909, 57.52179596600007 ], [ -4.082997199999909, 57.544419664000031 ], [ -4.034982876999948, 57.556870835000041 ], [ -4.083851691999939, 57.586127020000049 ], [ -3.964344855999911, 57.592962958000044 ], [ -3.868275519999941, 57.587876695000034 ], [ -3.837473110999952, 57.592962958000044 ], [ -3.754612099692133, 57.626332624083027 ], [ -3.728939988889408, 57.584960843468139 ], [ -3.708915371247372, 57.577467760528691 ], [ -3.716175910190088, 57.559381009226172 ], [ -3.711731736730258, 57.532405911003934 ], [ -3.687262945628447, 57.522432359365837 ], [ -3.681423509087665, 57.50827301668636 ], [ -3.684730800985676, 57.446054592745213 ], [ -3.719224818770385, 57.422722683205222 ], [ -3.724211594589406, 57.411069648545435 ], [ -3.718397995571024, 57.405488593523728 ], [ -3.701680670726375, 57.407969062222435 ], [ -3.666437344108147, 57.430758369403179 ], [ -3.610342576648577, 57.434375718764386 ], [ -3.578354865084975, 57.448845119806379 ], [ -3.49807552736371, 57.457449245885982 ], [ -3.438647629584466, 57.426055813524954 ], [ -3.39784908726557, 57.421353258545992 ], [ -3.384464890941956, 57.381355699206154 ], [ -3.390846929841928, 57.370245266006179 ], [ -3.418364631322675, 57.357687892881927 ], [ -3.445313890223872, 57.329369208422179 ], [ -3.486706711745342, 57.305236315003924 ], [ -3.445313890223872, 57.285754299721134 ], [ -3.455029059443575, 57.237178452723413 ], [ -3.420328335184536, 57.222993273420798 ], [ -3.436683925722605, 57.18855092978157 ], [ -3.452548589845549, 57.178008938261883 ], [ -3.530890062126673, 57.163849596481668 ], [ -3.614218309327498, 57.117444159820081 ], [ -3.641710170587885, 57.115790514320736 ], [ -3.736975674188045, 57.077188218961112 ], [ -3.745037197009026, 57.066594549698664 ], [ -3.739481981308415, 57.060212510798692 ], [ -3.748912929687947, 57.027733872819965 ], [ -3.745864020208387, 56.991612047058311 ], [ -3.781417406088451, 56.964378567316999 ], [ -3.79640357106797, 56.930220445417206 ], [ -3.816738247072465, 56.934122016517847 ], [ -3.87810401029185, 56.924639391294818 ], [ -3.940606655073054, 56.947428697576299 ], [ -3.96003699441178, 56.929083563855386 ], [ -3.966160650893357, 56.899679673777882 ], [ -3.976134201632135, 56.895493882736446 ], [ -4.033081630712672, 56.902444363316704 ], [ -4.09917578823206, 56.895235501217371 ], [ -4.17782731797638, 56.907431139135724 ], [ -4.20224443223475, 56.893013414037796 ], [ -4.195035570135474, 56.875236721097792 ], [ -4.20113338909465, 56.86939728545633 ], [ -4.303090989957241, 56.844954331876863 ], [ -4.332804938397203, 56.82412873035662 ], [ -4.366678840356201, 56.82660919905527 ], [ -4.436571214390028, 56.778395087263448 ], [ -4.514189216259354, 56.803561510355394 ], [ -4.551732144422942, 56.763563951015499 ], [ -4.578345505640584, 56.754933987413551 ], [ -4.573617113139278, 56.727442125253845 ], [ -4.597801683400974, 56.708528550751964 ], [ -4.586432867782605, 56.69245718015469 ], [ -4.645292323881677, 56.675507311313311 ], [ -4.702808192843861, 56.670236315553495 ], [ -4.708647630283906, 56.641452542201023 ], [ -4.757249314804028, 56.643261217331315 ], [ -4.790813158400567, 56.653854884795066 ], [ -4.863961146589645, 56.646671861117454 ], [ -4.92439673472154, 56.659435939816717 ], [ -4.970853848226511, 56.644243069262188 ], [ -5.020049811049944, 56.640884101420113 ], [ -5.038627488767588, 56.623417466842568 ], [ -5.075214403421967, 56.607242744357166 ], [ -5.144745042249895, 56.616441147840646 ], [ -5.169213833351762, 56.630858872938632 ], [ -5.304517431434306, 56.640160068932005 ] ] ], [ [ [ -6.325184699999909, 57.058579820000034 ], [ -6.250965949999909, 57.026556708000044 ], [ -6.269886847999942, 57.017564195000034 ], [ -6.269886847999942, 57.010199286000045 ], [ -6.243234829999949, 57.010199286000045 ], [ -6.256743943999936, 56.973781643000052 ], [ -6.27603105399993, 56.953111070000034 ], [ -6.341867641999954, 56.941880601000037 ], [ -6.359771287999934, 56.947333075000074 ], [ -6.376128709999932, 56.971177476000037 ], [ -6.455474412999934, 57.003973700000074 ], [ -6.364247199999909, 57.055650132000039 ], [ -6.325184699999909, 57.058579820000034 ] ] ], [ [ [ -6.606353318999936, 57.051743882000039 ], [ -6.537464972999942, 57.072821356000077 ], [ -6.489654100999928, 57.058579820000034 ], [ -6.548247850999928, 57.047593492000033 ], [ -6.606353318999936, 57.051743882000039 ] ] ], [ [ [ -5.958607550999943, 57.284491278000075 ], [ -6.007801886999914, 57.303615627000056 ], [ -6.01390540299991, 57.317450262000079 ], [ -5.989979620999918, 57.325506903000075 ], [ -5.95571855399993, 57.321600653000075 ], [ -5.929351365999935, 57.307196356000077 ], [ -5.925445115999935, 57.291693427000041 ], [ -5.958607550999943, 57.284491278000075 ] ] ], [ [ [ -6.064442511999914, 57.346584377000056 ], [ -6.075428839999915, 57.355047919000071 ], [ -6.077137824999909, 57.371771552000041 ], [ -6.069081183999913, 57.436102606000077 ], [ -6.061634894999941, 57.452704169000071 ], [ -6.016672329999949, 57.462632554000038 ], [ -6.037098761999914, 57.489935614000046 ], [ -6.01585852799991, 57.496771552000041 ], [ -5.995594855999911, 57.489935614000046 ], [ -6.009836391999954, 57.511053778000075 ], [ -5.993316209999932, 57.507025458000044 ], [ -5.982533331999946, 57.497463283000059 ], [ -6.017648891999954, 57.418198960000041 ], [ -6.016672329999949, 57.387600002000056 ], [ -5.989491339999915, 57.347316799000055 ], [ -6.054798956999946, 57.326402085000041 ], [ -6.071929490999935, 57.33234284100007 ], [ -6.064442511999914, 57.346584377000056 ] ] ], [ [ [ -5.968251105999911, 57.51788971600007 ], [ -5.983713344999956, 57.522365627000056 ], [ -5.989979620999918, 57.532945054000038 ], [ -5.975697394999941, 57.558823960000041 ], [ -5.982533331999946, 57.566310940000051 ], [ -5.961903449999909, 57.577297268000052 ], [ -5.955189581999946, 57.572495835000041 ], [ -5.968251105999911, 57.51788971600007 ] ] ], [ [ [ -6.564116990999935, 57.346584377000056 ], [ -6.580555792999917, 57.338812567000048 ], [ -6.69595292899993, 57.364406643000052 ], [ -6.714751756999931, 57.376613674000055 ], [ -6.731678839999915, 57.416978257000039 ], [ -6.773182745999918, 57.434068101000037 ], [ -6.78384355399993, 57.456447658000059 ], [ -6.722401495999918, 57.456447658000059 ], [ -6.745228644999941, 57.475897528000075 ], [ -6.747141079999949, 57.487941799000055 ], [ -6.715931769999941, 57.514227606000077 ], [ -6.638091600999928, 57.453273830000057 ], [ -6.606800910999937, 57.443915106000077 ], [ -6.612538214999915, 57.462632554000038 ], [ -6.599476691999939, 57.469427802000041 ], [ -6.631255662999934, 57.49359772300005 ], [ -6.630604620999918, 57.501776434000078 ], [ -6.611439581999946, 57.512193101000037 ], [ -6.564116990999935, 57.503607489000046 ], [ -6.573963995999918, 57.521714585000041 ], [ -6.599354620999918, 57.537543036000045 ], [ -6.654774542999917, 57.552069403000075 ], [ -6.631011522999927, 57.57680898600006 ], [ -6.628895636999914, 57.591131903000075 ], [ -6.640451626999948, 57.607326565000051 ], [ -6.61978105399993, 57.607163804000038 ], [ -6.572255011999914, 57.582505601000037 ], [ -6.554595506999931, 57.552476304000038 ], [ -6.501210089999915, 57.535549221000053 ], [ -6.464914516999954, 57.512518622000073 ], [ -6.420765753999945, 57.51788971600007 ], [ -6.443470831999946, 57.488104559000078 ], [ -6.433501756999931, 57.486476955000057 ], [ -6.412098761999914, 57.501369533000059 ], [ -6.400257941999939, 57.520982164000031 ], [ -6.310902472999942, 57.462632554000038 ], [ -6.325184699999909, 57.483099677000041 ], [ -6.324615037999934, 57.496812242000033 ], [ -6.372954881999931, 57.53156159100007 ], [ -6.389556443999936, 57.552476304000038 ], [ -6.359852667999917, 57.592962958000044 ], [ -6.400257941999939, 57.599798895000049 ], [ -6.395863410999937, 57.613470770000049 ], [ -6.414540167999917, 57.633978583000044 ], [ -6.415679490999935, 57.645819403000075 ], [ -6.359852667999917, 57.668117580000057 ], [ -6.337961391999954, 57.699164130000042 ], [ -6.310902472999942, 57.702826239000046 ], [ -6.23265540299991, 57.641424872000073 ], [ -6.168853318999936, 57.607611395000049 ], [ -6.153879360999952, 57.589544989000046 ], [ -6.133371548999946, 57.476263739000046 ], [ -6.146962042999917, 57.425116278000075 ], [ -6.187977667999917, 57.394354559000078 ], [ -6.159250454999949, 57.407375393000052 ], [ -6.126535610999952, 57.408026434000078 ], [ -6.117909308999913, 57.397772528000075 ], [ -6.140126105999911, 57.373928127000056 ], [ -6.135243292999917, 57.357367255000042 ], [ -6.099232550999943, 57.33234284100007 ], [ -6.153879360999952, 57.305609442000048 ], [ -6.045399542999917, 57.308294989000046 ], [ -6.041086391999954, 57.300116278000075 ], [ -6.078114386999914, 57.284491278000075 ], [ -6.078114386999914, 57.27765534100007 ], [ -6.00845292899993, 57.286769924000055 ], [ -5.976673956999946, 57.270331122000073 ], [ -5.923247850999928, 57.266913153000075 ], [ -5.90062415299991, 57.242905992000033 ], [ -5.886219855999911, 57.242092190000051 ], [ -5.865834113999938, 57.257147528000075 ], [ -5.824330206999946, 57.25617096600007 ], [ -5.76789303299995, 57.277411200000074 ], [ -5.73851477799991, 57.277289130000042 ], [ -5.721831834999932, 57.264634507000039 ], [ -5.647368943999936, 57.264634507000039 ], [ -5.663889126999948, 57.239813544000071 ], [ -5.662953253999945, 57.212713934000078 ], [ -5.690907355999911, 57.189520575000074 ], [ -5.742339647999927, 57.168443101000037 ], [ -5.782053188999953, 57.166245835000041 ], [ -5.800363735999952, 57.123724677000041 ], [ -5.85220292899993, 57.10297272300005 ], [ -5.934925910999937, 57.041205145000049 ], [ -6.006743943999936, 57.028387762000079 ], [ -6.020822719999956, 57.03188711100006 ], [ -6.030384894999941, 57.044907945000034 ], [ -6.027251756999931, 57.062160549000055 ], [ -6.00023352799991, 57.083929755000042 ], [ -6.003041144999941, 57.099554755000042 ], [ -5.986927863999938, 57.118231512000079 ], [ -5.941558397999927, 57.154771226000037 ], [ -5.845366990999935, 57.181463934000078 ], [ -5.845366990999935, 57.188299872000073 ], [ -5.900868292999917, 57.175523179000038 ], [ -5.986236131999931, 57.174627997000073 ], [ -5.995594855999911, 57.195746161000045 ], [ -6.044016079999949, 57.22992584800005 ], [ -6.023508266999954, 57.195746161000045 ], [ -6.050852016999954, 57.168443101000037 ], [ -6.044016079999949, 57.161037502000056 ], [ -6.073841925999943, 57.131781317000048 ], [ -6.088612433999913, 57.127427476000037 ], [ -6.101429816999939, 57.135199286000045 ], [ -6.112904425999943, 57.188299872000073 ], [ -6.126454230999911, 57.195217190000051 ], [ -6.140126105999911, 57.188299872000073 ], [ -6.164458787999934, 57.201361395000049 ], [ -6.174305792999917, 57.201971747000073 ], [ -6.174305792999917, 57.195746161000045 ], [ -6.159820115999935, 57.187648830000057 ], [ -6.177154100999928, 57.181219794000071 ], [ -6.318348761999914, 57.161037502000056 ], [ -6.318348761999914, 57.168443101000037 ], [ -6.276722785999937, 57.201971747000073 ], [ -6.313099738999938, 57.199896552000041 ], [ -6.345611131999931, 57.188299872000073 ], [ -6.379790818999936, 57.223089911000045 ], [ -6.345611131999931, 57.242905992000033 ], [ -6.408192511999914, 57.243353583000044 ], [ -6.455474412999934, 57.27765534100007 ], [ -6.482167120999918, 57.311835028000075 ], [ -6.416411912999934, 57.334540106000077 ], [ -6.394032355999911, 57.33234284100007 ], [ -6.337635870999918, 57.301499742000033 ], [ -6.310902472999942, 57.298163153000075 ], [ -6.323882615999935, 57.311428127000056 ], [ -6.406158006999931, 57.351548570000034 ], [ -6.462961391999954, 57.346584377000056 ], [ -6.448638475999928, 57.352769273000035 ], [ -6.448638475999928, 57.360256252000056 ], [ -6.475941535999937, 57.367092190000051 ], [ -6.462961391999954, 57.373928127000056 ], [ -6.478871222999942, 57.381903387000079 ], [ -6.475941535999937, 57.401190497000073 ], [ -6.523793097999942, 57.380764065000051 ], [ -6.517648891999954, 57.398871161000045 ], [ -6.530629035999937, 57.41547272300005 ], [ -6.538929816999939, 57.402329820000034 ], [ -6.571522589999915, 57.387600002000056 ], [ -6.564116990999935, 57.346584377000056 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-MRY", "NAME_1": "Moray" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.754612099692133, 57.626332624083027 ], [ -3.684803839999915, 57.654445705000057 ], [ -3.625152147999927, 57.661932684000078 ], [ -3.645619269999941, 57.641424872000073 ], [ -3.632476365999935, 57.635646877000056 ], [ -3.590972459999932, 57.641424872000073 ], [ -3.61156165299991, 57.668117580000057 ], [ -3.535755988999938, 57.661932684000078 ], [ -3.505441860999952, 57.678656317000048 ], [ -3.495961066999939, 57.691351630000042 ], [ -3.501698370999918, 57.702826239000046 ], [ -3.491851365999935, 57.713120835000041 ], [ -3.460682745999918, 57.709662177000041 ], [ -3.409169074999909, 57.723334052000041 ], [ -3.284738735999952, 57.720445054000038 ], [ -3.210072394999941, 57.69399648600006 ], [ -3.078684048999946, 57.669419664000031 ], [ -2.994496222999942, 57.675523179000038 ], [ -2.916086391999954, 57.702826239000046 ], [ -2.821191779077367, 57.702826239000046 ], [ -2.823052131051043, 57.633743395141551 ], [ -2.780496588646656, 57.585322577774718 ], [ -2.720371059776596, 57.547185371307819 ], [ -2.705669114737873, 57.529563707099385 ], [ -2.707141893083929, 57.51344066055799 ], [ -2.732075771279824, 57.506102607249488 ], [ -2.809848801880719, 57.520778713866548 ], [ -2.892014329098004, 57.520778713866548 ], [ -2.99180151962446, 57.476750393116106 ], [ -3.010870123757229, 57.448845119806379 ], [ -3.012368739625629, 57.418045965748718 ], [ -3.005004848794727, 57.400424303338923 ], [ -2.969787359698898, 57.363734035897039 ], [ -2.966841803006787, 57.327069606876819 ], [ -2.985936244661957, 57.297691555221093 ], [ -3.029938726990679, 57.266892402062695 ], [ -3.122387865107896, 57.277176012063251 ], [ -3.189903123230579, 57.256608792062082 ], [ -3.280905321423461, 57.1891193714618 ], [ -3.332245856161364, 57.175890203869812 ], [ -3.345449185331631, 57.148036607403469 ], [ -3.323435023607487, 57.112819119206961 ], [ -3.323435023607487, 57.099615790036637 ], [ -3.345449185331631, 57.089332180036024 ], [ -3.427640550071317, 57.081994126727523 ], [ -3.656541306835834, 57.084939684318954 ], [ -3.679485642748205, 57.095455838316241 ], [ -3.641710170587885, 57.115790514320736 ], [ -3.614218309327498, 57.117444159820081 ], [ -3.530890062126673, 57.163849596481668 ], [ -3.452548589845549, 57.178008938261883 ], [ -3.436683925722605, 57.18855092978157 ], [ -3.420328335184536, 57.222993273420798 ], [ -3.455029059443575, 57.237178452723413 ], [ -3.445313890223872, 57.285754299721134 ], [ -3.486706711745342, 57.305236315003924 ], [ -3.445313890223872, 57.329369208422179 ], [ -3.384464890941956, 57.381355699206154 ], [ -3.39784908726557, 57.421353258545992 ], [ -3.438647629584466, 57.426055813524954 ], [ -3.49807552736371, 57.457449245885982 ], [ -3.578354865084975, 57.448845119806379 ], [ -3.610342576648577, 57.434375718764386 ], [ -3.666437344108147, 57.430758369403179 ], [ -3.701680670726375, 57.407969062222435 ], [ -3.718397995571024, 57.405488593523728 ], [ -3.724211594589406, 57.411069648545435 ], [ -3.719224818770385, 57.422722683205222 ], [ -3.684730800985676, 57.446054592745213 ], [ -3.681423509087665, 57.50827301668636 ], [ -3.687262945628447, 57.522432359365837 ], [ -3.711731736730258, 57.532405911003934 ], [ -3.716175910190088, 57.559381009226172 ], [ -3.708915371247372, 57.577467760528691 ], [ -3.728939988889408, 57.584960843468139 ], [ -3.754612099692133, 57.626332624083027 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-ABD", "NAME_1": "Aberdeenshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.821191779077367, 57.702826239000046 ], [ -2.75804602799991, 57.702826239000046 ], [ -2.731068488999938, 57.688544012000079 ], [ -2.658924933999913, 57.697455145000049 ], [ -2.541981574999909, 57.682359117000033 ], [ -2.526112433999913, 57.66860586100006 ], [ -2.497954881999931, 57.682359117000033 ], [ -2.432850714999915, 57.668117580000057 ], [ -2.425526495999918, 57.675726630000042 ], [ -2.398060675999943, 57.668117580000057 ], [ -2.360503709999932, 57.682359117000033 ], [ -2.328968878999945, 57.674058335000041 ], [ -2.295643683999913, 57.695990302000041 ], [ -2.209950324999909, 57.675523179000038 ], [ -2.108143683999913, 57.704982815000051 ], [ -1.997670050999943, 57.702826239000046 ], [ -1.973500128999945, 57.675523179000038 ], [ -1.932484503999945, 57.682359117000033 ], [ -1.829457160999937, 57.613470770000049 ], [ -1.811390753999945, 57.560492255000042 ], [ -1.796009894999941, 57.544582424000055 ], [ -1.800038214999915, 57.525864976000037 ], [ -1.761138475999928, 57.497463283000059 ], [ -1.775380011999914, 57.496527411000045 ], [ -1.781239386999914, 57.480414130000042 ], [ -1.759348110999952, 57.473578192000048 ], [ -1.830148891999954, 57.426174221000053 ], [ -1.847482876999948, 57.408148505000042 ], [ -1.849964972999942, 57.394354559000078 ], [ -1.954497850999928, 57.341131903000075 ], [ -1.980295376999948, 57.319281317000048 ], [ -2.044667120999918, 57.226507880000042 ], [ -2.051445482423105, 57.235473131279946 ], [ -2.11586015512205, 57.238160305553606 ], [ -2.147176073117294, 57.221158758969523 ], [ -2.174926316796075, 57.221158758969523 ], [ -2.207120733934744, 57.239917303840457 ], [ -2.267918057272539, 57.239917303840457 ], [ -2.300112474411151, 57.219375922260951 ], [ -2.298329636803317, 57.195217190420976 ], [ -2.274196743385005, 57.179145819823702 ], [ -2.267918057272539, 57.163927109948133 ], [ -2.290242274661239, 57.136202703791696 ], [ -2.344786750308288, 57.135324205547647 ], [ -2.35465694825956, 57.115635483790527 ], [ -2.346621262960923, 57.087885240111689 ], [ -2.29473812496451, 57.083441067551178 ], [ -2.104232957085287, 57.111139635285895 ], [ -2.074699875798615, 57.109382636099724 ], [ -2.065256313999953, 57.100531317000048 ], [ -2.186919725999928, 56.98468659100007 ], [ -2.200103318999936, 56.948716539000031 ], [ -2.186390753999945, 56.914536851000037 ], [ -2.209706183999913, 56.895819403000075 ], [ -2.219878709999932, 56.872626044000071 ], [ -2.268950975999928, 56.84634023600006 ], [ -2.336089647999927, 56.790838934000078 ], [ -2.408680792999917, 56.762925523000035 ], [ -2.435943162999934, 56.740383205000057 ], [ -2.494467535648255, 56.744107774154429 ], [ -2.535291917288134, 56.771625474735856 ], [ -2.619731207629115, 56.784957994216029 ], [ -2.668901332930204, 56.82547231749345 ], [ -2.67306128644924, 56.857149969795216 ], [ -2.654225226313145, 56.889111842937155 ], [ -2.675283371830176, 56.896889146716717 ], [ -2.686135422611699, 56.916887925937033 ], [ -2.725874600432462, 56.932726752537576 ], [ -2.758895839871116, 56.958849189138732 ], [ -2.807264980394564, 56.958849189138732 ], [ -2.830855272352949, 56.973551134177455 ], [ -2.872558153136254, 56.984635728955709 ], [ -2.928084478915594, 56.969933783916986 ], [ -3.026424730416977, 56.971613267837995 ], [ -3.059471808277351, 56.964120184898604 ], [ -3.087842169580483, 56.945490831236839 ], [ -3.107815111278398, 56.897457587497627 ], [ -3.12088924834012, 56.890481269395025 ], [ -3.159749925218875, 56.90660431593642 ], [ -3.198067999738385, 56.90911062305679 ], [ -3.27472998719918, 56.930220445417206 ], [ -3.283644171641242, 56.927171535937589 ], [ -3.293359340860889, 56.900506496977243 ], [ -3.345009934860627, 56.893840237237157 ], [ -3.371416592301898, 56.880766100175379 ], [ -3.433092413883799, 56.882729804037183 ], [ -3.461411099242866, 56.875495104415506 ], [ -3.503113979126852, 56.890481269395025 ], [ -3.562516037585056, 56.888827622996359 ], [ -3.569750739005428, 56.893840237237157 ], [ -3.569466519064633, 56.921332099396864 ], [ -3.588095871827022, 56.92991038705469 ], [ -3.624734463324842, 56.923295803258668 ], [ -3.66225155306671, 56.92991038705469 ], [ -3.708346929567142, 56.918799953854773 ], [ -3.743641933928131, 56.932726752537576 ], [ -3.79640357106797, 56.930220445417206 ], [ -3.781417406088451, 56.964378567316999 ], [ -3.745864020208387, 56.991612047058311 ], [ -3.748912929687947, 57.027733872819965 ], [ -3.739481981308415, 57.060212510798692 ], [ -3.745037197009026, 57.066594549698664 ], [ -3.736975674188045, 57.077188218961112 ], [ -3.679485642748205, 57.095455838316241 ], [ -3.656541306835834, 57.084939684318954 ], [ -3.61985104029327, 57.081994126727523 ], [ -3.427640550071317, 57.081994126727523 ], [ -3.345449185331631, 57.089332180036024 ], [ -3.323435023607487, 57.099615790036637 ], [ -3.323435023607487, 57.112819119206961 ], [ -3.345449185331631, 57.148036607403469 ], [ -3.332245856161364, 57.175890203869812 ], [ -3.280905321423461, 57.1891193714618 ], [ -3.189903123230579, 57.256608792062082 ], [ -3.122387865107896, 57.277176012063251 ], [ -3.044640672029402, 57.266892402062695 ], [ -3.009423183832894, 57.275677395295531 ], [ -2.966841803006787, 57.327069606876819 ], [ -2.969787359698898, 57.363734035897039 ], [ -3.005004848794727, 57.400424303338923 ], [ -3.012368739625629, 57.418045965748718 ], [ -3.010870123757229, 57.448845119806379 ], [ -2.99180151962446, 57.476750393116106 ], [ -2.892014329098004, 57.520778713866548 ], [ -2.809848801880719, 57.520778713866548 ], [ -2.732075771279824, 57.506102607249488 ], [ -2.707141893083929, 57.51344066055799 ], [ -2.705669114737873, 57.529563707099385 ], [ -2.720371059776596, 57.547185371307819 ], [ -2.780496588646656, 57.585322577774718 ], [ -2.823052131051043, 57.633743395141551 ], [ -2.821191779077367, 57.702826239000046 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-ABE", "NAME_1": "Aberdeen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.044667120999918, 57.226507880000042 ], [ -2.074126756999931, 57.154201565000051 ], [ -2.071400519999941, 57.135565497000073 ], [ -2.052357550999943, 57.127427476000037 ], [ -2.049305792999917, 57.118841864000046 ], [ -2.065256313999953, 57.100531317000048 ], [ -2.074699875798615, 57.109382636099724 ], [ -2.104232957085287, 57.111139635285895 ], [ -2.319775355947911, 57.082510891564368 ], [ -2.346621262960923, 57.087885240111689 ], [ -2.352874110651669, 57.099538276570172 ], [ -2.3519697739859, 57.128141180970715 ], [ -2.344786750308288, 57.135324205547647 ], [ -2.290242274661239, 57.136202703791696 ], [ -2.27504940410671, 57.148708400971884 ], [ -2.267918057272539, 57.163927109948133 ], [ -2.274196743385005, 57.179145819823702 ], [ -2.298329636803317, 57.195217190420976 ], [ -2.302799647785548, 57.20953156183208 ], [ -2.283989426970493, 57.235473131279946 ], [ -2.207120733934744, 57.239917303840457 ], [ -2.174926316796075, 57.221158758969523 ], [ -2.147176073117294, 57.221158758969523 ], [ -2.11586015512205, 57.238160305553606 ], [ -2.069351365673015, 57.238160305553606 ], [ -2.051445482423105, 57.235473131279946 ], [ -2.044667120999918, 57.226507880000042 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-ANS", "NAME_1": "Angus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.435943162999934, 56.740383205000057 ], [ -2.451649542999917, 56.690985419000071 ], [ -2.487456834999932, 56.653876044000071 ], [ -2.480620897999927, 56.626532294000071 ], [ -2.514556443999936, 56.591498114000046 ], [ -2.623768683999913, 56.543402411000045 ], [ -2.64093990799995, 56.522365627000056 ], [ -2.699777798999946, 56.503648179000038 ], [ -2.727650519999941, 56.469549872000073 ], [ -2.764800584999932, 56.475734768000052 ], [ -2.819339383405804, 56.471298406296398 ], [ -2.83338741699572, 56.50649953942218 ], [ -2.845040451655507, 56.516705634157688 ], [ -2.882970954346092, 56.518178412503687 ], [ -3.063786789628637, 56.500685940403798 ], [ -3.079341396288442, 56.474899399687502 ], [ -3.111897548632953, 56.478775133265742 ], [ -3.146934169676172, 56.490454007246626 ], [ -3.170266079216219, 56.516705634157688 ], [ -3.168793300870163, 56.531278387987186 ], [ -3.142541673059782, 56.569208888879075 ], [ -3.111897548632953, 56.591068020073067 ], [ -3.084224819319957, 56.598354397437447 ], [ -3.084224819319957, 56.60713939156966 ], [ -3.129415859154562, 56.615872707959056 ], [ -3.146934169676172, 56.62755158104062 ], [ -3.155667486964944, 56.64796377231022 ], [ -3.181919114775326, 56.658169867945048 ], [ -3.27816647030636, 56.677109279969272 ], [ -3.33503638322253, 56.723773098149934 ], [ -3.35547441201453, 56.760256660016807 ], [ -3.35547441201453, 56.796688544140977 ], [ -3.391906297037963, 56.852137356453795 ], [ -3.395084397726805, 56.881489569687858 ], [ -3.371416592301898, 56.880766100175379 ], [ -3.345009934860627, 56.893840237237157 ], [ -3.293359340860889, 56.900506496977243 ], [ -3.283644171641242, 56.927171535937589 ], [ -3.27472998719918, 56.930220445417206 ], [ -3.198067999738385, 56.90911062305679 ], [ -3.159749925218875, 56.90660431593642 ], [ -3.12088924834012, 56.890481269395025 ], [ -3.107815111278398, 56.897457587497627 ], [ -3.087842169580483, 56.945490831236839 ], [ -3.059471808277351, 56.964120184898604 ], [ -3.026424730416977, 56.971613267837995 ], [ -2.928084478915594, 56.969933783916986 ], [ -2.872558153136254, 56.984635728955709 ], [ -2.830855272352949, 56.973551134177455 ], [ -2.807264980394564, 56.958849189138732 ], [ -2.758895839871116, 56.958849189138732 ], [ -2.725874600432462, 56.932726752537576 ], [ -2.686135422611699, 56.916887925937033 ], [ -2.675283371830176, 56.896889146716717 ], [ -2.654225226313145, 56.889111842937155 ], [ -2.67306128644924, 56.857149969795216 ], [ -2.668901332930204, 56.82547231749345 ], [ -2.619731207629115, 56.784957994216029 ], [ -2.535291917288134, 56.771625474735856 ], [ -2.494467535648255, 56.744107774154429 ], [ -2.435943162999934, 56.740383205000057 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-DND", "NAME_1": "Dundee" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.819339383405804, 56.471298406296398 ], [ -3.055653449999909, 56.452134507000039 ], [ -3.079341396288442, 56.474899399687502 ], [ -3.063786789628637, 56.500685940403798 ], [ -2.882970954346092, 56.518178412503687 ], [ -2.845040451655507, 56.516705634157688 ], [ -2.83338741699572, 56.50649953942218 ], [ -2.819339383405804, 56.471298406296398 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-PKN", "NAME_1": "Perthshire and Kinross" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.055653449999909, 56.452134507000039 ], [ -3.133900519999941, 56.426947333000044 ], [ -3.238189256999931, 56.367743231000077 ], [ -3.280181443999936, 56.357896226000037 ], [ -3.323475714999915, 56.365912177000041 ], [ -3.311512824999909, 56.356512762000079 ], [ -3.262405158071601, 56.352829830166385 ], [ -3.252819180061124, 56.334649562727122 ], [ -3.265841641178781, 56.323539130426525 ], [ -3.241967129279601, 56.313565578788428 ], [ -3.243362393259872, 56.30607249584898 ], [ -3.258632778180186, 56.301628323288469 ], [ -3.290620489743787, 56.3029977479477 ], [ -3.291447312943149, 56.28659048146551 ], [ -3.29974137976086, 56.28160370474717 ], [ -3.33446794334094, 56.281887926486604 ], [ -3.362786627800631, 56.264679674327454 ], [ -3.347542080402718, 56.254396064326897 ], [ -3.348368902702703, 56.236619371386837 ], [ -3.288915168300377, 56.233002021126367 ], [ -3.264187994780116, 56.219101060865228 ], [ -3.261139085300556, 56.196337592106147 ], [ -3.303384569342427, 56.179671943205562 ], [ -3.27472998719918, 56.16577098204516 ], [ -3.349454108320458, 56.164944159745176 ], [ -3.360021938261866, 56.161895250265559 ], [ -3.366403978061157, 56.14437693974395 ], [ -3.386971198062326, 56.137142239222953 ], [ -3.529210578205607, 56.141586411783464 ], [ -3.550863002925269, 56.152438463464307 ], [ -3.568923915806067, 56.149389553085371 ], [ -3.584736903984947, 56.134661770524247 ], [ -3.630599738287287, 56.128202216359171 ], [ -3.642821213728041, 56.155228990525472 ], [ -3.554196133244943, 56.181894029485818 ], [ -3.611686163785464, 56.198017076027213 ], [ -3.655585293326624, 56.196880195364713 ], [ -3.664215256928571, 56.18716502524569 ], [ -3.723074713926906, 56.189671332366061 ], [ -3.758938158169485, 56.215793768967217 ], [ -3.827822841850661, 56.191299140343006 ], [ -3.842809006830237, 56.218274238565243 ], [ -3.87810401029185, 56.213830065105412 ], [ -3.906681077169992, 56.233828844325672 ], [ -3.996417201692509, 56.269123846888021 ], [ -4.044734666271836, 56.272715358726771 ], [ -4.061426153594141, 56.285763658266205 ], [ -4.075042893914429, 56.274394843547157 ], [ -4.09917578823206, 56.278528957745152 ], [ -4.120311449014196, 56.293825181986506 ], [ -4.170592616556007, 56.300233059308198 ], [ -4.219478521916244, 56.329120185448176 ], [ -4.216972214795874, 56.34829214146913 ], [ -4.228909471195152, 56.355785224408578 ], [ -4.234542202160924, 56.372941799724231 ], [ -4.224181076895206, 56.380021471513658 ], [ -4.200203213107784, 56.379401353889364 ], [ -4.186405604734887, 56.391338609389265 ], [ -4.186974046415116, 56.457174384490202 ], [ -4.148087531114697, 56.452730211030371 ], [ -4.095300054653819, 56.468284816790856 ], [ -4.12170671209509, 56.502184557171574 ], [ -4.144780239216686, 56.512158107910352 ], [ -4.284720017814607, 56.481307277908513 ], [ -4.322805549236705, 56.533293768692431 ], [ -4.351692673578043, 56.540786852531198 ], [ -4.390579188878462, 56.526059068171435 ], [ -4.470600145080653, 56.511899726391221 ], [ -4.512793952279083, 56.519134426012897 ], [ -4.529743822019782, 56.501047674710378 ], [ -4.600333828043745, 56.49241771110843 ], [ -4.639246181765884, 56.471747138319756 ], [ -4.663895840020984, 56.476346341410476 ], [ -4.676401536301853, 56.49164256475251 ], [ -4.649193894982261, 56.519186102856338 ], [ -4.649736497341507, 56.526834215426675 ], [ -4.687822027864286, 56.537996324570713 ], [ -4.692834642105083, 56.547995713731154 ], [ -4.595321213803004, 56.574376532750762 ], [ -4.56421200228209, 56.564092922750149 ], [ -4.558398403263709, 56.570190741709325 ], [ -4.595605434643119, 56.607449449032799 ], [ -4.628084071722526, 56.612152004911081 ], [ -4.628626674981092, 56.623830877992589 ], [ -4.617542080202838, 56.631427313719541 ], [ -4.620590989682455, 56.64662018517339 ], [ -4.708647630283906, 56.641452542201023 ], [ -4.708906011803037, 56.663001614133179 ], [ -4.702808192843861, 56.670236315553495 ], [ -4.645292323881677, 56.675507311313311 ], [ -4.586432867782605, 56.69245718015469 ], [ -4.597801683400974, 56.708528550751964 ], [ -4.573617113139278, 56.727442125253845 ], [ -4.578345505640584, 56.754933987413551 ], [ -4.551732144422942, 56.763563951015499 ], [ -4.514189216259354, 56.803561510355394 ], [ -4.436571214390028, 56.778395087263448 ], [ -4.366678840356201, 56.82660919905527 ], [ -4.332804938397203, 56.82412873035662 ], [ -4.303090989957241, 56.844954331876863 ], [ -4.20113338909465, 56.86939728545633 ], [ -4.195035570135474, 56.875236721097792 ], [ -4.20224443223475, 56.893013414037796 ], [ -4.17782731797638, 56.907431139135724 ], [ -4.09917578823206, 56.895235501217371 ], [ -4.033081630712672, 56.902444363316704 ], [ -3.976134201632135, 56.895493882736446 ], [ -3.966160650893357, 56.899679673777882 ], [ -3.96003699441178, 56.929083563855386 ], [ -3.940606655073054, 56.947428697576299 ], [ -3.87810401029185, 56.924639391294818 ], [ -3.816738247072465, 56.934122016517847 ], [ -3.743641933928131, 56.932726752537576 ], [ -3.708346929567142, 56.918799953854773 ], [ -3.66225155306671, 56.92991038705469 ], [ -3.624734463324842, 56.923295803258668 ], [ -3.588095871827022, 56.92991038705469 ], [ -3.569466519064633, 56.921332099396864 ], [ -3.569750739005428, 56.893840237237157 ], [ -3.562516037585056, 56.888827622996359 ], [ -3.503113979126852, 56.890481269395025 ], [ -3.461411099242866, 56.875495104415506 ], [ -3.395084397726805, 56.881489569687858 ], [ -3.391906297037963, 56.852137356453795 ], [ -3.35547441201453, 56.796688544140977 ], [ -3.35547441201453, 56.760256660016807 ], [ -3.33503638322253, 56.723773098149934 ], [ -3.27816647030636, 56.677109279969272 ], [ -3.181919114775326, 56.658169867945048 ], [ -3.155667486964944, 56.64796377231022 ], [ -3.146934169676172, 56.62755158104062 ], [ -3.129415859154562, 56.615872707959056 ], [ -3.084224819319957, 56.60713939156966 ], [ -3.084224819319957, 56.598354397437447 ], [ -3.111897548632953, 56.591068020073067 ], [ -3.142541673059782, 56.569208888879075 ], [ -3.168793300870163, 56.531278387987186 ], [ -3.170266079216219, 56.516705634157688 ], [ -3.146934169676172, 56.490454007246626 ], [ -3.084224819319957, 56.477328193341407 ], [ -3.066706508798347, 56.468594876052634 ], [ -3.055653449999909, 56.452134507000039 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-FIF", "NAME_1": "Fife" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.262405158071601, 56.352829830166385 ], [ -3.149566209999932, 56.375555731000077 ], [ -2.950266079999949, 56.431870835000041 ], [ -2.930653449999909, 56.448065497000073 ], [ -2.88499915299991, 56.457993882000039 ], [ -2.850087042999917, 56.44204336100006 ], [ -2.81476803299995, 56.440415757000039 ], [ -2.802805141999954, 56.427964585000041 ], [ -2.808257615999935, 56.391058661000045 ], [ -2.837554490999935, 56.365912177000041 ], [ -2.812977667999917, 56.365912177000041 ], [ -2.802805141999954, 56.345404364000046 ], [ -2.768625454999949, 56.33234284100007 ], [ -2.655262824999909, 56.322170315000051 ], [ -2.57681230399993, 56.283921617000033 ], [ -2.57681230399993, 56.277777411000045 ], [ -2.630116339999915, 56.248521226000037 ], [ -2.648345506999931, 56.228705145000049 ], [ -2.720204230999911, 56.216294664000031 ], [ -2.783599412999934, 56.191961981000077 ], [ -2.83071855399993, 56.190741278000075 ], [ -2.892079230999911, 56.208889065000051 ], [ -2.964344855999911, 56.205633856000077 ], [ -2.982411261999914, 56.189113674000055 ], [ -3.035552537999934, 56.167914130000042 ], [ -3.091053839999915, 56.13226959800005 ], [ -3.127552863999938, 56.122870184000078 ], [ -3.163563605999911, 56.063869533000059 ], [ -3.248443162999934, 56.055975653000075 ], [ -3.342681443999936, 56.027167059000078 ], [ -3.420969204999949, 56.024888414000031 ], [ -3.582590298999946, 56.051743882000039 ], [ -3.671498175999943, 56.050848700000074 ], [ -3.746490037999934, 56.072780666000085 ], [ -3.715581630987515, 56.097454739144894 ], [ -3.631426560587329, 56.106343085165236 ], [ -3.648350591906308, 56.121587633462468 ], [ -3.584736903984947, 56.134661770524247 ], [ -3.568923915806067, 56.149389553085371 ], [ -3.550863002925269, 56.152438463464307 ], [ -3.529210578205607, 56.141586411783464 ], [ -3.386971198062326, 56.137142239222953 ], [ -3.366403978061157, 56.14437693974395 ], [ -3.360021938261866, 56.161895250265559 ], [ -3.349454108320458, 56.164944159745176 ], [ -3.27472998719918, 56.16577098204516 ], [ -3.303384569342427, 56.179671943205562 ], [ -3.261139085300556, 56.196337592106147 ], [ -3.264187994780116, 56.219101060865228 ], [ -3.288915168300377, 56.233002021126367 ], [ -3.348368902702703, 56.236619371386837 ], [ -3.347542080402718, 56.254396064326897 ], [ -3.362786627800631, 56.264679674327454 ], [ -3.33446794334094, 56.281887926486604 ], [ -3.29974137976086, 56.28160370474717 ], [ -3.291447312943149, 56.28659048146551 ], [ -3.290620489743787, 56.3029977479477 ], [ -3.243362393259872, 56.30607249584898 ], [ -3.241967129279601, 56.313565578788428 ], [ -3.265841641178781, 56.323539130426525 ], [ -3.252819180061124, 56.334649562727122 ], [ -3.262405158071601, 56.352829830166385 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-IOW", "NAME_1": "Isle of Wight" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.082753058999913, 50.713324286000045 ], [ -1.062326626999948, 50.685288804000038 ], [ -1.128651495999918, 50.666449286000045 ], [ -1.156361456999946, 50.650783596000053 ], [ -1.16470292899993, 50.64093659100007 ], [ -1.168446417999917, 50.603461005000042 ], [ -1.279204881999931, 50.582505601000037 ], [ -1.315541144999941, 50.589178778000075 ], [ -1.485951300999943, 50.669338283000059 ], [ -1.535145636999914, 50.66937897300005 ], [ -1.569488084999932, 50.658026434000078 ], [ -1.545318162999934, 50.686102606000077 ], [ -1.505930141999954, 50.707709052000041 ], [ -1.418690558999913, 50.733791408000059 ], [ -1.425363735999952, 50.720119533000059 ], [ -1.400868292999917, 50.721991278000075 ], [ -1.318511522999927, 50.772162177000041 ], [ -1.295765753999945, 50.773179429000038 ], [ -1.144276495999918, 50.733791408000059 ], [ -1.109120245999918, 50.732855536000045 ], [ -1.097035285999937, 50.726955471000053 ], [ -1.097035285999937, 50.713324286000045 ], [ -1.082753058999913, 50.713324286000045 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-AGY", "NAME_1": "Anglesey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.577259894999941, 53.272040106000077 ], [ -4.558461066999939, 53.252752997000073 ], [ -4.563628709999932, 53.241929429000038 ], [ -4.602406378999945, 53.253078518000052 ], [ -4.632557745999918, 53.282945054000038 ], [ -4.676665818999936, 53.285101630000042 ], [ -4.693959113999938, 53.309637762000079 ], [ -4.667307094999956, 53.323919989000046 ], [ -4.626291469999956, 53.320868231000077 ], [ -4.590443488999938, 53.297552802000041 ], [ -4.577259894999941, 53.272040106000077 ] ] ], [ [ [ -4.098133917999917, 53.309637762000079 ], [ -4.042876756999931, 53.302801825000074 ], [ -4.098052537999934, 53.250148830000057 ], [ -4.19554602799991, 53.220282294000071 ], [ -4.220366990999935, 53.20148346600007 ], [ -4.222035285999937, 53.182114976000037 ], [ -4.343861456999946, 53.132066148000035 ], [ -4.392404751999948, 53.138332424000055 ], [ -4.406605597999942, 53.130601304000038 ], [ -4.41429602799991, 53.137844143000052 ], [ -4.411976691999939, 53.155585028000075 ], [ -4.385121222999942, 53.182440497000073 ], [ -4.410878058999913, 53.182196356000077 ], [ -4.44758053299995, 53.159409898000035 ], [ -4.481678839999915, 53.179877020000049 ], [ -4.495350714999915, 53.179877020000049 ], [ -4.499623175999943, 53.21124909100007 ], [ -4.571034308999913, 53.275458075000074 ], [ -4.558664516999954, 53.363348700000074 ], [ -4.571034308999913, 53.392767645000049 ], [ -4.425363735999952, 53.426703192000048 ], [ -4.324696417999917, 53.419501044000071 ], [ -4.276722785999937, 53.40102773600006 ], [ -4.266916469999956, 53.368963934000078 ], [ -4.234730597999942, 53.35805898600006 ], [ -4.235178188999953, 53.340073960000041 ], [ -4.214833136999914, 53.323919989000046 ], [ -4.203236456999946, 53.298488674000055 ], [ -4.142486131999931, 53.302801825000074 ], [ -4.121978318999936, 53.317084052000041 ], [ -4.098133917999917, 53.309637762000079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-ORK", "NAME_1": "Orkney" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.952951626999948, 58.839992580000057 ], [ -2.883656378999945, 58.832180080000057 ], [ -2.885365363999938, 58.820054429000038 ], [ -2.919422980999911, 58.806463934000078 ], [ -2.913970506999931, 58.784857489000046 ], [ -2.926340298999946, 58.779120184000078 ], [ -2.911040818999936, 58.74868398600006 ], [ -2.917836066999939, 58.738348700000074 ], [ -2.939930792999917, 58.730698960000041 ], [ -2.987782355999911, 58.757391669000071 ], [ -2.987782355999911, 58.764837958000044 ], [ -2.974354620999918, 58.772040106000077 ], [ -3.015695766999954, 58.812648830000057 ], [ -2.978871222999942, 58.808172919000071 ], [ -2.967193162999934, 58.812648830000057 ], [ -2.967193162999934, 58.820054429000038 ], [ -3.035552537999934, 58.820054429000038 ], [ -3.035552537999934, 58.826320705000057 ], [ -2.952951626999948, 58.839992580000057 ] ] ], [ [ [ -3.248402472999942, 58.792181708000044 ], [ -3.131703253999945, 58.806463934000078 ], [ -3.156320766999954, 58.786769924000055 ], [ -3.205922003999945, 58.779038804000038 ], [ -3.299305792999917, 58.779120184000078 ], [ -3.327788865999935, 58.818304755000042 ], [ -3.358265753999945, 58.833156643000052 ], [ -3.378773566999939, 58.853583075000074 ], [ -3.373524542999917, 58.867987372000073 ], [ -3.378773566999939, 58.874090887000079 ], [ -3.430165167999917, 58.874823309000078 ], [ -3.433338995999918, 58.884955145000049 ], [ -3.41633053299995, 58.908270575000074 ], [ -3.349354620999918, 58.928534247000073 ], [ -3.246083136999914, 58.896185614000046 ], [ -3.193186001999948, 58.853583075000074 ], [ -3.207386847999942, 58.847398179000038 ], [ -3.207386847999942, 58.839992580000057 ], [ -3.187245245999918, 58.836493231000077 ], [ -3.172718878999945, 58.820054429000038 ], [ -3.21548417899993, 58.814276434000078 ], [ -3.248402472999942, 58.792181708000044 ] ] ], [ [ [ -2.727650519999941, 58.970892645000049 ], [ -2.707630988999938, 58.958970445000034 ], [ -2.706532355999911, 58.932440497000073 ], [ -2.785023566999939, 58.910711981000077 ], [ -2.823841925999943, 58.881537177000041 ], [ -2.926828579999949, 58.904852606000077 ], [ -2.981190558999913, 58.960109768000052 ], [ -3.023833787999934, 58.940497137000079 ], [ -3.084543423999946, 58.943019924000055 ], [ -3.070301886999914, 58.928697007000039 ], [ -3.101226365999935, 58.930121161000045 ], [ -3.113189256999931, 58.926662502000056 ], [ -3.118031378999945, 58.915716864000046 ], [ -3.142648891999954, 58.921210028000075 ], [ -3.202788865999935, 58.915920315000051 ], [ -3.227894660999937, 58.928697007000039 ], [ -3.23851477799991, 58.950913804000038 ], [ -3.235340949999909, 58.972560940000051 ], [ -3.207386847999942, 59.005072333000044 ], [ -3.227894660999937, 59.038560289000031 ], [ -3.245838995999918, 59.030503648000035 ], [ -3.240956183999913, 59.011297919000071 ], [ -3.275786912999934, 59.011297919000071 ], [ -3.266590949999909, 59.007147528000075 ], [ -3.256988084999932, 58.978338934000078 ], [ -3.289418097999942, 58.950384833000044 ], [ -3.323231574999909, 58.957180080000057 ], [ -3.353260870999918, 58.982814846000053 ], [ -3.366688605999911, 59.016099351000037 ], [ -3.34398352799991, 59.052801825000074 ], [ -3.350209113999938, 59.09796784100007 ], [ -3.323801235999952, 59.127427476000037 ], [ -3.279286261999914, 59.143540757000039 ], [ -3.182728644999941, 59.147162177000041 ], [ -3.121571417999917, 59.123968817000048 ], [ -3.084543423999946, 59.127997137000079 ], [ -3.049183722999942, 59.108099677000041 ], [ -3.070301886999914, 59.101263739000046 ], [ -2.994496222999942, 59.073309637000079 ], [ -3.008168097999942, 59.066555080000057 ], [ -2.994496222999942, 59.059719143000052 ], [ -3.06281490799995, 59.04946523600006 ], [ -3.090931769999941, 59.018744208000044 ], [ -3.131703253999945, 59.005072333000044 ], [ -3.116688605999911, 58.998195705000057 ], [ -3.059722459999932, 58.991400458000044 ], [ -3.01195227799991, 59.017401434000078 ], [ -2.974436001999948, 58.999090887000079 ], [ -2.933094855999911, 59.011297919000071 ], [ -2.895375128999945, 58.991034247000073 ], [ -2.878407355999911, 58.998236395000049 ], [ -2.885365363999938, 58.977118231000077 ], [ -2.864735480999911, 58.974839585000041 ], [ -2.812977667999917, 58.991400458000044 ], [ -2.780629035999937, 58.990301825000074 ], [ -2.775380011999914, 58.983954169000071 ], [ -2.78189042899993, 58.973944403000075 ], [ -2.837554490999935, 58.950384833000044 ], [ -2.811919725999928, 58.92914459800005 ], [ -2.794789191999939, 58.92609284100007 ], [ -2.775380011999914, 58.928697007000039 ], [ -2.795969204999949, 58.956691799000055 ], [ -2.727650519999941, 58.970892645000049 ] ] ], [ [ [ -2.541981574999909, 59.12055084800005 ], [ -2.548451300999943, 59.109035549000055 ], [ -2.542388475999928, 59.10297272300005 ], [ -2.514759894999941, 59.093817450000074 ], [ -2.532622850999928, 59.083563544000071 ], [ -2.597320115999935, 59.073309637000079 ], [ -2.599476691999939, 59.095892645000049 ], [ -2.614369269999941, 59.107245184000078 ], [ -2.651844855999911, 59.101263739000046 ], [ -2.649159308999913, 59.085516669000071 ], [ -2.670725063999953, 59.081529039000031 ], [ -2.686105923999946, 59.089178778000075 ], [ -2.665516730999911, 59.108099677000041 ], [ -2.622425910999937, 59.116441148000035 ], [ -2.617787238999938, 59.127997137000079 ], [ -2.665516730999911, 59.155218817000048 ], [ -2.61156165299991, 59.161444403000075 ], [ -2.617787238999938, 59.148423570000034 ], [ -2.59007727799991, 59.148871161000045 ], [ -2.569406704999949, 59.142238674000055 ], [ -2.592884894999941, 59.138576565000051 ], [ -2.595204230999911, 59.12954336100006 ], [ -2.583648240999935, 59.12055084800005 ], [ -2.535267706999946, 59.127997137000079 ], [ -2.541981574999909, 59.12055084800005 ] ] ], [ [ [ -3.004790818999936, 59.127997137000079 ], [ -3.091786261999914, 59.142808335000041 ], [ -3.114654100999928, 59.158351955000057 ], [ -3.120432094999956, 59.176581122000073 ], [ -3.102406378999945, 59.190252997000073 ], [ -3.074208136999914, 59.197495835000041 ], [ -3.049183722999942, 59.196844794000071 ], [ -3.029123501999948, 59.182359117000033 ], [ -2.952951626999948, 59.183172919000071 ], [ -2.977162238999938, 59.163397528000075 ], [ -2.97524980399993, 59.133775132000039 ], [ -3.004790818999936, 59.127997137000079 ] ] ], [ [ [ -2.830067511999914, 59.196844794000071 ], [ -2.817290818999936, 59.191229559000078 ], [ -2.785959438999953, 59.196844794000071 ], [ -2.787912563999953, 59.247219143000052 ], [ -2.761097785999937, 59.252101955000057 ], [ -2.768625454999949, 59.237860419000071 ], [ -2.743641730999911, 59.238104559000078 ], [ -2.727650519999941, 59.224188544000071 ], [ -2.761097785999937, 59.193101304000038 ], [ -2.758941209999932, 59.164211330000057 ], [ -2.734486456999946, 59.155218817000048 ], [ -2.734486456999946, 59.148423570000034 ], [ -2.789133266999954, 59.145331122000073 ], [ -2.801625128999945, 59.168158270000049 ], [ -2.830067511999914, 59.175767320000034 ], [ -2.830067511999914, 59.196844794000071 ] ] ], [ [ [ -2.446400519999941, 59.293036200000074 ], [ -2.411040818999936, 59.31899648600006 ], [ -2.392486131999931, 59.28546784100007 ], [ -2.458973761999914, 59.279120184000078 ], [ -2.514759894999941, 59.230414130000042 ], [ -2.51626542899993, 59.252142645000049 ], [ -2.533111131999931, 59.251166083000044 ], [ -2.57681230399993, 59.224188544000071 ], [ -2.569406704999949, 59.244614976000037 ], [ -2.588612433999913, 59.238674221000053 ], [ -2.60415605399993, 59.244614976000037 ], [ -2.661854620999918, 59.207098700000074 ], [ -2.679269985999952, 59.209906317000048 ], [ -2.68187415299991, 59.196356512000079 ], [ -2.692616339999915, 59.192287502000056 ], [ -2.687977667999917, 59.217962958000044 ], [ -2.658802863999938, 59.230414130000042 ], [ -2.624623175999943, 59.258286851000037 ], [ -2.595570441999939, 59.264837958000044 ], [ -2.591135219999956, 59.27875397300005 ], [ -2.61156165299991, 59.293036200000074 ], [ -2.52212480399993, 59.306708075000074 ], [ -2.52212480399993, 59.299261786000045 ], [ -2.57681230399993, 59.271307684000078 ], [ -2.563221808999913, 59.26508209800005 ], [ -2.518788214999915, 59.274318752000056 ], [ -2.49242102799991, 59.28937409100007 ], [ -2.446400519999941, 59.293036200000074 ] ] ], [ [ [ -3.049183722999942, 59.31976959800005 ], [ -3.073353644999941, 59.32453034100007 ], [ -3.077056443999936, 59.334051825000074 ], [ -3.008168097999942, 59.334051825000074 ], [ -2.965199347999942, 59.360907294000071 ], [ -2.946359829999949, 59.349554755000042 ], [ -2.963937954999949, 59.340236721000053 ], [ -2.960357225999928, 59.326564846000053 ], [ -2.987782355999911, 59.326564846000053 ], [ -2.987782355999911, 59.31976959800005 ], [ -2.895497199999909, 59.302964585000041 ], [ -2.870961066999939, 59.271307684000078 ], [ -2.839019334999932, 59.26508209800005 ], [ -2.830067511999914, 59.252101955000057 ], [ -2.850087042999917, 59.252142645000049 ], [ -2.885365363999938, 59.230414130000042 ], [ -2.870961066999939, 59.258286851000037 ], [ -2.947417772999927, 59.291205145000049 ], [ -2.974680141999954, 59.293036200000074 ], [ -2.960357225999928, 59.271307684000078 ], [ -2.974680141999954, 59.27875397300005 ], [ -2.989654100999928, 59.267075914000031 ], [ -3.008168097999942, 59.271307684000078 ], [ -3.049183722999942, 59.31976959800005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-IOS", "NAME_1": "Isles of Scilly" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -6.298817511999914, 49.935492255000042 ], [ -6.284169074999909, 49.922756252000056 ], [ -6.297271287999934, 49.90961334800005 ], [ -6.309152798999946, 49.913641669000071 ], [ -6.298817511999914, 49.935492255000042 ] ] ], [ [ [ -6.333648240999935, 49.959702867000033 ], [ -6.32648678299995, 49.949204820000034 ], [ -6.332508917999917, 49.94171784100007 ], [ -6.341216600999928, 49.94476959800005 ], [ -6.348947719999956, 49.964341539000088 ], [ -6.333648240999935, 49.959702867000033 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CAY", "NAME_1": "Caerphilly" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.031876593330139, 51.605739244370625 ], [ -3.109158698415229, 51.587239081018765 ], [ -3.108926154418498, 51.579125882253663 ], [ -3.083630540117326, 51.562718613972834 ], [ -3.102389084988317, 51.543107408380195 ], [ -3.156416794899201, 51.553003444753131 ], [ -3.227523565759952, 51.54512278908544 ], [ -3.301730922943761, 51.64857900671575 ], [ -3.277055426266941, 51.658655911141352 ], [ -3.275272589558369, 51.676794339287312 ], [ -3.333847825716589, 51.789914049293941 ], [ -3.288992681766842, 51.793273017136016 ], [ -3.257521735040029, 51.77022532843614 ], [ -3.232251960059898, 51.738289292816603 ], [ -3.170188563951058, 51.72570608216995 ], [ -3.114739753436879, 51.700772203074678 ], [ -3.108590256734942, 51.691263740329305 ], [ -3.070556403055548, 51.680411689547782 ], [ -3.075956590024646, 51.629691271534909 ], [ -3.031876593330139, 51.605739244370625 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-RCT", "NAME_1": "Rhondda, Cynon, Taff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.301730922943761, 51.64857900671575 ], [ -3.227523565759952, 51.54512278908544 ], [ -3.293359340860889, 51.499673366832383 ], [ -3.322246466101547, 51.513806871090196 ], [ -3.330592209762699, 51.500215969191572 ], [ -3.37224341460194, 51.506882228931715 ], [ -3.392242193822199, 51.496056017471176 ], [ -3.442523363162707, 51.515770575851377 ], [ -3.463917406363237, 51.506882228931715 ], [ -3.475234544238845, 51.510396227304 ], [ -3.46182451039283, 51.58982290340424 ], [ -3.490814989320313, 51.617004706302112 ], [ -3.549183519004202, 51.641757717344774 ], [ -3.548356695804898, 51.653281561694712 ], [ -3.569466519064633, 51.672453517715667 ], [ -3.571688605344889, 51.732139797913305 ], [ -3.592229986924394, 51.742423407913918 ], [ -3.546961431824627, 51.773584296278216 ], [ -3.525309007105022, 51.77079376921705 ], [ -3.526394211823401, 51.780508938436753 ], [ -3.478645188924361, 51.79022410675708 ], [ -3.464485846244827, 51.821074938557558 ], [ -3.435159471432485, 51.816630764198408 ], [ -3.412912766610873, 51.765574449401299 ], [ -3.438285895277829, 51.754670721776336 ], [ -3.301730922943761, 51.64857900671575 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BGW", "NAME_1": "Blaenau Gwent" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.217963426171195, 51.732785753060057 ], [ -3.232251960059898, 51.738289292816603 ], [ -3.257521735040029, 51.77022532843614 ], [ -3.288992681766842, 51.793273017136016 ], [ -3.290620489743787, 51.806605535716869 ], [ -3.274187383940614, 51.814667060336546 ], [ -3.156856045370205, 51.810739650814185 ], [ -3.128485684067073, 51.794539089907062 ], [ -3.110398931865234, 51.765574449401299 ], [ -3.106755744082307, 51.703976142185184 ], [ -3.115824958155315, 51.700358791924657 ], [ -3.210031093660064, 51.738392646503428 ], [ -3.217963426171195, 51.732785753060057 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-TOF", "NAME_1": "Torfaen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.031876593330139, 51.605739244370625 ], [ -3.075956590024646, 51.629691271534909 ], [ -3.070556403055548, 51.680411689547782 ], [ -3.108590256734942, 51.691263740329305 ], [ -3.114739753436879, 51.700772203074678 ], [ -3.106755744082307, 51.703976142185184 ], [ -3.106755744082307, 51.747436022154659 ], [ -3.128485684067073, 51.794539089907062 ], [ -3.081408453837071, 51.794539089907062 ], [ -3.048800624649118, 51.783661200703818 ], [ -3.021618821751247, 51.727514757300185 ], [ -2.990819667693529, 51.722062893487703 ], [ -2.976324429129136, 51.709402167575945 ], [ -2.976324429129136, 51.667750962736704 ], [ -2.961312424828577, 51.627443345933614 ], [ -3.031876593330139, 51.605739244370625 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-MTY", "NAME_1": "Merthyr Tydfil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.333847825716589, 51.789914049293941 ], [ -3.275272589558369, 51.676794339287312 ], [ -3.277055426266941, 51.658655911141352 ], [ -3.301730922943761, 51.64857900671575 ], [ -3.438285895277829, 51.754670721776336 ], [ -3.412912766610873, 51.765574449401299 ], [ -3.435159471432485, 51.816630764198408 ], [ -3.42058671670361, 51.815235501117456 ], [ -3.414488897744434, 51.825493272696349 ], [ -3.405006273420781, 51.827715358976604 ], [ -3.385860154922227, 51.81161814995761 ], [ -3.356973028782249, 51.805468655054369 ], [ -3.347800461921793, 51.788828844575505 ], [ -3.333847825716589, 51.789914049293941 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NLK", "NAME_1": "North Lanarkshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.017785407370638, 56.025779527503175 ], [ -4.007527634892426, 56.004385484302645 ], [ -3.972826910633444, 56.006349189063769 ], [ -3.968072678811097, 55.999941310842814 ], [ -3.974738938551184, 55.98521352828169 ], [ -3.937247687230979, 55.984386705082329 ], [ -3.935025600950723, 55.968832099321901 ], [ -3.922519903770535, 55.957463283703532 ], [ -3.865029873230071, 55.956068019723318 ], [ -3.893916999370049, 55.933278714341157 ], [ -3.815032924729678, 55.90635529206304 ], [ -3.808883428927118, 55.895219021340722 ], [ -3.820613978852066, 55.889095363959825 ], [ -3.793354660689033, 55.871887111800731 ], [ -3.728345709686778, 55.883281764941444 ], [ -3.706409064127001, 55.876899726041472 ], [ -3.745037197009026, 55.857986152438968 ], [ -3.718397995571024, 55.812433377398406 ], [ -3.733409999871583, 55.783520412836765 ], [ -3.881721360552376, 55.732722480458051 ], [ -3.897663539940424, 55.734324449114013 ], [ -4.065121019119772, 55.812459214920807 ], [ -4.084267136719006, 55.82522329451939 ], [ -4.084267136719006, 55.841139635485774 ], [ -4.069901089363782, 55.861913561061954 ], [ -4.079487067374259, 55.868269762439581 ], [ -4.119329596183945, 55.868269762439581 ], [ -4.170411750302037, 55.900154120316358 ], [ -4.171987881435598, 55.904960028982146 ], [ -4.149689499770602, 55.909740099226156 ], [ -4.055560878631638, 55.911316230359716 ], [ -4.044398770386977, 55.924080309058979 ], [ -4.03959286082187, 55.952812405568011 ], [ -4.109769455695812, 55.952812405568011 ], [ -4.12093156573917, 55.962372545156825 ], [ -4.125737474404957, 56.005522365864465 ], [ -4.081967536072966, 56.025779527503175 ], [ -4.017785407370638, 56.025779527503175 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-EDU", "NAME_1": "East Dunbartonshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.142248093674596, 56.028570055463661 ], [ -4.140878669015365, 56.008571275344082 ], [ -4.125737474404957, 56.005522365864465 ], [ -4.12093156573917, 55.962372545156825 ], [ -4.109769455695812, 55.952812405568011 ], [ -4.03959286082187, 55.952812405568011 ], [ -4.044398770386977, 55.924080309058979 ], [ -4.055560878631638, 55.911316230359716 ], [ -4.149689499770602, 55.909740099226156 ], [ -4.171987881435598, 55.904960028982146 ], [ -4.161885137688955, 55.891679186345357 ], [ -4.190513882309801, 55.888707791231525 ], [ -4.236841802806964, 55.897105210836799 ], [ -4.269475470416637, 55.916070462182063 ], [ -4.305287237815776, 55.897105210836799 ], [ -4.349444748876067, 55.903461412214369 ], [ -4.359986742194394, 55.911884671140626 ], [ -4.364792649960862, 55.975601711849492 ], [ -4.30169572597697, 55.957153225341074 ], [ -4.274488083758058, 55.958806870840363 ], [ -4.265289679375201, 55.96800527612254 ], [ -4.267821824917291, 55.988004055342856 ], [ -4.287536383297436, 56.016606961542038 ], [ -4.27725277329688, 56.025211086722265 ], [ -4.198342861134165, 56.019681708543999 ], [ -4.174468350134248, 56.010483303261822 ], [ -4.158371141115254, 56.025779527503175 ], [ -4.142248093674596, 56.028570055463661 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-GLG", "NAME_1": "Glasgow" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.355775111831974, 55.864032294554704 ], [ -4.351666836055642, 55.90521841140054 ], [ -4.294745246296088, 55.898190416454554 ], [ -4.269475470416637, 55.916070462182063 ], [ -4.213690762218903, 55.889767158427617 ], [ -4.161885137688955, 55.891679186345357 ], [ -4.119329596183945, 55.868269762439581 ], [ -4.079487067374259, 55.868269762439581 ], [ -4.069901089363782, 55.855505682840942 ], [ -4.084267136719006, 55.841139635485774 ], [ -4.084267136719006, 55.827238675224635 ], [ -4.192606777380888, 55.826618556701021 ], [ -4.189454515113766, 55.795044257186703 ], [ -4.20208940260386, 55.784502264767696 ], [ -4.226299811287276, 55.784502264767696 ], [ -4.256840582926543, 55.80346751611296 ], [ -4.347351853805037, 55.793959052468267 ], [ -4.356834479028009, 55.804501043987955 ], [ -4.355775111831974, 55.864032294554704 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-ERW", "NAME_1": "East Renfrewshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.517935756829729, 55.759284165731628 ], [ -4.514731817719223, 55.76662221904013 ], [ -4.356834479028009, 55.819125475560213 ], [ -4.356834479028009, 55.804501043987955 ], [ -4.347351853805037, 55.793959052468267 ], [ -4.256840582926543, 55.80346751611296 ], [ -4.240355801179305, 55.793390610788038 ], [ -4.239994065973349, 55.784502264767696 ], [ -4.257874110801595, 55.761351223280315 ], [ -4.251569587166728, 55.749775702986256 ], [ -4.225266283412282, 55.735047919525812 ], [ -4.221028814628085, 55.70344778069051 ], [ -4.225266283412282, 55.690812893200416 ], [ -4.238934698777314, 55.687660630933351 ], [ -4.284229092298801, 55.690812893200416 ], [ -4.517935756829729, 55.759284165731628 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-EAY", "NAME_1": "East Ayrshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.485147061387806, 55.385560208236996 ], [ -4.465613369261575, 55.385560208236996 ], [ -4.46109168143596, 55.394551907044843 ], [ -4.465613369261575, 55.423128973922985 ], [ -4.483570929354926, 55.445659897786015 ], [ -4.479126755895095, 55.457648831028678 ], [ -4.432540452080218, 55.483228665270644 ], [ -4.426571825229587, 55.517774359898738 ], [ -4.443056606077505, 55.54482697248676 ], [ -4.582066208688616, 55.591309923514132 ], [ -4.510029262740318, 55.621411445581714 ], [ -4.501063402354134, 55.64544098621252 ], [ -4.534084641792788, 55.655982977732208 ], [ -4.610720790831863, 55.657481594499984 ], [ -4.625758632654765, 55.665000514961775 ], [ -4.618239712192974, 55.677015285726839 ], [ -4.558140020845315, 55.714584052312148 ], [ -4.517935756829729, 55.759284165731628 ], [ -4.506334398114006, 55.750809230861307 ], [ -4.250975307964097, 55.685955309489941 ], [ -4.217721522730074, 55.640945135909249 ], [ -4.172633835682973, 55.606425278803556 ], [ -4.172633835682973, 55.598880519920044 ], [ -4.207179531210386, 55.571853745753742 ], [ -4.211701219036058, 55.559813137466278 ], [ -4.196689215634819, 55.552320055426208 ], [ -4.064500902394741, 55.553818671294607 ], [ -4.029929368445607, 55.571853745753742 ], [ -4.010395677218753, 55.573352363420781 ], [ -3.992360601860298, 55.570355129885286 ], [ -3.960812139868381, 55.540305283761825 ], [ -3.963835211825597, 55.507258205901451 ], [ -3.983213874320825, 55.46100779887081 ], [ -4.008638678032582, 55.454108995133993 ], [ -3.999181891231331, 55.438011787014318 ], [ -4.070598721353917, 55.414938258993402 ], [ -4.094189012412983, 55.396050522913299 ], [ -4.09780636177419, 55.371323351191677 ], [ -4.085584886333436, 55.347164619351702 ], [ -4.113645189274052, 55.316623846813059 ], [ -4.113360968433938, 55.299932359490754 ], [ -4.135297613993714, 55.284119371311931 ], [ -4.188627691914462, 55.313833319751893 ], [ -4.231415778315522, 55.316623846813059 ], [ -4.244179857014785, 55.304376532950585 ], [ -4.296993170998064, 55.307735500792717 ], [ -4.321694505197286, 55.275231025291532 ], [ -4.348953823360262, 55.262725328111401 ], [ -4.353397995920773, 55.241331284910871 ], [ -4.377246670297609, 55.217456773011634 ], [ -4.384739753237056, 55.181903388030889 ], [ -4.402258062859346, 55.173273424428942 ], [ -4.403343267577725, 55.153016261890969 ], [ -4.418639491819079, 55.14299103520807 ], [ -4.431377732995998, 55.142009182377819 ], [ -4.437217170436099, 55.175495509809878 ], [ -4.450342983441942, 55.175495509809878 ], [ -4.467499558757652, 55.157822171456019 ], [ -4.444606898789345, 55.200765285689329 ], [ -4.444606898789345, 55.281897285031675 ], [ -4.474605068069422, 55.310448513488097 ], [ -4.548243983573002, 55.349490058419406 ], [ -4.57829382969652, 55.388557440873171 ], [ -4.569276291567633, 55.396102199756683 ], [ -4.485147061387806, 55.385560208236996 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SLK", "NAME_1": "South Lanarkshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.956703864092049, 55.454393215974108 ], [ -3.983213874320825, 55.46100779887081 ], [ -3.963835211825597, 55.507258205901451 ], [ -3.960812139868381, 55.540305283761825 ], [ -3.992360601860298, 55.570355129885286 ], [ -4.029929368445607, 55.571853745753742 ], [ -4.064500902394741, 55.553818671294607 ], [ -4.196689215634819, 55.552320055426208 ], [ -4.211701219036058, 55.559813137466278 ], [ -4.172633835682973, 55.606425278803556 ], [ -4.217721522730074, 55.640945135909249 ], [ -4.250975307964097, 55.685955309489941 ], [ -4.225266283412282, 55.690812893200416 ], [ -4.218935919557055, 55.720320136065425 ], [ -4.225266283412282, 55.735047919525812 ], [ -4.251569587166728, 55.749775702986256 ], [ -4.257874110801595, 55.761351223280315 ], [ -4.244205695436506, 55.772926744473637 ], [ -4.240355801179305, 55.793390610788038 ], [ -4.226299811287276, 55.784502264767696 ], [ -4.20208940260386, 55.784502264767696 ], [ -4.189454515113766, 55.795044257186703 ], [ -4.196870082788109, 55.820288193745114 ], [ -4.176871303567793, 55.830804347742401 ], [ -4.084267136719006, 55.827238675224635 ], [ -4.065121019119772, 55.812459214920807 ], [ -3.881721360552376, 55.732722480458051 ], [ -3.733409999871583, 55.783520412836765 ], [ -3.723901536226947, 55.777991035557818 ], [ -3.688089768827751, 55.795199286817592 ], [ -3.611169398948618, 55.803829251318859 ], [ -3.565022344705426, 55.787706203878201 ], [ -3.457871263348125, 55.769619453474945 ], [ -3.458646409704045, 55.761041164917799 ], [ -3.435314500164054, 55.734117744438322 ], [ -3.43585710342262, 55.718253079416058 ], [ -3.394464281001774, 55.707711086997051 ], [ -3.479472012123665, 55.648541572535521 ], [ -3.480867275204616, 55.637172756917153 ], [ -3.468930019704658, 55.625778102877121 ], [ -3.478076748143394, 55.612161363456153 ], [ -3.516446498607024, 55.608544013195626 ], [ -3.526988491026032, 55.600224107056874 ], [ -3.483683640687502, 55.552991848095303 ], [ -3.485027227824332, 55.514957994415909 ], [ -3.512234870043244, 55.492168688134427 ], [ -3.534765793906274, 55.438011787014318 ], [ -3.500297613643966, 55.409667263233587 ], [ -3.567528651825853, 55.383854884994946 ], [ -3.571972826185004, 55.329646307930716 ], [ -3.607293667169017, 55.318845933992634 ], [ -3.616698778026205, 55.292697658969757 ], [ -3.642252772947131, 55.289648749490198 ], [ -3.701422288307981, 55.320757961910374 ], [ -3.708346929567142, 55.36271922511213 ], [ -3.743099330669565, 55.371039130351562 ], [ -3.769480149689173, 55.409124660874397 ], [ -3.825884976410521, 55.44633169225375 ], [ -3.878620775128695, 55.454909979911633 ], [ -3.956703864092049, 55.454393215974108 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-MFT", "NAME_1": "Magherafelt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.929752367078095, 54.767716783202957 ], [ -6.896446905900007, 54.782444565764081 ], [ -6.918926153818973, 54.801616523583675 ], [ -6.917479213894637, 54.815827542207273 ], [ -6.888953822960559, 54.830762031242728 ], [ -6.890013190156594, 54.851587632763028 ], [ -6.811413337255715, 54.846626695365671 ], [ -6.776970993616487, 54.865230211505036 ], [ -6.768625250854654, 54.90132619884497 ], [ -6.781130947135523, 54.911067206486337 ], [ -6.736921759231791, 54.928843899426397 ], [ -6.709481573915525, 54.926621813146141 ], [ -6.694753791354401, 54.916028143883693 ], [ -6.655298835273015, 54.923262844404746 ], [ -6.640571050913252, 54.934373276705344 ], [ -6.585303106653043, 54.921609198905401 ], [ -6.541972418792113, 54.928275457746167 ], [ -6.536132982251331, 54.94103953734475 ], [ -6.520423345960637, 54.945121974699362 ], [ -6.505333828193613, 54.922746080467221 ], [ -6.51029476559097, 54.906881415444957 ], [ -6.481691860291107, 54.869674384065547 ], [ -6.471124030349756, 54.827454739344716 ], [ -6.482363653859522, 54.793451647075813 ], [ -6.470064663153664, 54.767768460046341 ], [ -6.498641730031807, 54.706221828774346 ], [ -6.559516566836123, 54.727150783981472 ], [ -6.57367591041492, 54.711906236583502 ], [ -6.600315110953602, 54.716040350781554 ], [ -6.683617519732763, 54.695783190042164 ], [ -6.721444667837147, 54.706066800042777 ], [ -6.761132167915207, 54.736039130001814 ], [ -6.781130947135523, 54.730768134241998 ], [ -6.826399502235233, 54.74079336182416 ], [ -6.890865850878299, 54.728287665543291 ], [ -6.945306972838523, 54.729372870261727 ], [ -6.96974992461935, 54.741620185023521 ], [ -6.936677008337256, 54.751903795024077 ], [ -6.929752367078095, 54.767716783202957 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-OMH", "NAME_1": "Omagh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.670017259289068, 54.57855520335994 ], [ -7.693375007250779, 54.600750231338054 ], [ -7.653093227970089, 54.625503242380717 ], [ -7.611984626389415, 54.624107978400446 ], [ -7.559739753187046, 54.642143052859581 ], [ -7.543384161749657, 54.637156277040503 ], [ -7.482535163367118, 54.651031398879923 ], [ -7.465326911207967, 54.641626288022735 ], [ -7.441995001667976, 54.643538315940475 ], [ -7.439488695446926, 54.655785630702269 ], [ -7.390292730824854, 54.692424221300769 ], [ -7.329727952383109, 54.709115709522337 ], [ -7.308075526764185, 54.731620794963703 ], [ -7.268310513219603, 54.728830267902538 ], [ -7.205575324441668, 54.752730618223438 ], [ -7.109741380060655, 54.748854885544517 ], [ -7.000058153161262, 54.777173570004209 ], [ -6.929752367078095, 54.767716783202957 ], [ -6.936677008337256, 54.751903795024077 ], [ -6.995019701398121, 54.730768134241998 ], [ -6.987810838399469, 54.693561102862589 ], [ -7.000290697157936, 54.674673366782429 ], [ -6.968923102319309, 54.663020331223265 ], [ -6.983082444998843, 54.652426662860194 ], [ -6.950009527817485, 54.606072903041991 ], [ -6.9753051421186, 54.558013820881115 ], [ -6.966701016039053, 54.548246974818028 ], [ -6.97279883499823, 54.538015042560119 ], [ -7.001685960238888, 54.521607774279346 ], [ -7.026697353699944, 54.51938568799909 ], [ -7.037807786000542, 54.503004259039301 ], [ -7.0905694240397, 54.493573309760393 ], [ -7.112790290439534, 54.471042384998043 ], [ -7.170021937662284, 54.470499783538173 ], [ -7.216711595163986, 54.459389350338199 ], [ -7.23087093784352, 54.448253078716562 ], [ -7.364454515063812, 54.430218004257483 ], [ -7.420575120045783, 54.436057440798209 ], [ -7.508063319866324, 54.404948229277352 ], [ -7.559222988350257, 54.429106961117327 ], [ -7.559739753187046, 54.456314602436919 ], [ -7.576121182146835, 54.483548082178231 ], [ -7.568628099207444, 54.495795396939968 ], [ -7.578653326789606, 54.505510566159671 ], [ -7.561135016267997, 54.542975979058156 ], [ -7.53366899342933, 54.546334946900231 ], [ -7.533901535627365, 54.553001207539694 ], [ -7.548913539927923, 54.565222682980391 ], [ -7.597515225347365, 54.561321112779126 ], [ -7.638675502872161, 54.57966624650004 ], [ -7.670017259289068, 54.57855520335994 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CKT", "NAME_1": "Mid Ulster" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.896136846638171, 54.564395859781087 ], [ -6.961430020279238, 54.57661733702048 ], [ -6.950009527817485, 54.606072903041991 ], [ -6.983082444998843, 54.652426662860194 ], [ -6.968923102319309, 54.663020331223265 ], [ -7.000290697157936, 54.674673366782429 ], [ -6.987810838399469, 54.693561102862589 ], [ -6.995019701398121, 54.730768134241998 ], [ -6.96974992461935, 54.741620185023521 ], [ -6.945306972838523, 54.729372870261727 ], [ -6.890865850878299, 54.728287665543291 ], [ -6.826399502235233, 54.74079336182416 ], [ -6.781130947135523, 54.730768134241998 ], [ -6.761132167915207, 54.736039130001814 ], [ -6.721444667837147, 54.706066800042777 ], [ -6.683617519732763, 54.695783190042164 ], [ -6.600315110953602, 54.716040350781554 ], [ -6.57367591041492, 54.711906236583502 ], [ -6.559516566836123, 54.727150783981472 ], [ -6.474896410241172, 54.693561102862589 ], [ -6.420842861009248, 54.654700425983833 ], [ -6.418078172369746, 54.640075995310895 ], [ -6.433813646182841, 54.602920640774926 ], [ -6.436035731563777, 54.569175930025096 ], [ -6.531172043954655, 54.538764350494375 ], [ -6.637806362273807, 54.565765286238957 ], [ -6.647805752333625, 54.556334336960049 ], [ -6.68529700365383, 54.560494290479085 ], [ -6.704210578155653, 54.547988593298896 ], [ -6.738652919996241, 54.572173163560649 ], [ -6.766687383615874, 54.56385325832116 ], [ -6.823919032637264, 54.575790513821119 ], [ -6.896136846638171, 54.564395859781087 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CGV", "NAME_1": "Craigavon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.435028042110446, 54.37714630785581 ], [ -6.462235684329357, 54.378283190316949 ], [ -6.484224005833198, 54.395233059158329 ], [ -6.484482388251649, 54.416885483877934 ], [ -6.51029476559097, 54.418280747858205 ], [ -6.554710659069656, 54.463342597382962 ], [ -6.565304328332104, 54.493573309760393 ], [ -6.583623622732034, 54.508275254799116 ], [ -6.527813076112579, 54.53977203994765 ], [ -6.437043422815691, 54.568814194819197 ], [ -6.333044602826192, 54.598424791370974 ], [ -6.289145474184295, 54.584368801479002 ], [ -6.284313727096844, 54.610181178818323 ], [ -6.265581020647573, 54.604936022379491 ], [ -6.264056566357453, 54.592456162721703 ], [ -6.276123013066581, 54.576333116180365 ], [ -6.296406012227692, 54.569124254081032 ], [ -6.275322028288997, 54.549642238798242 ], [ -6.273642544367931, 54.522150377537855 ], [ -6.239200201628023, 54.502151598317596 ], [ -6.252558560429236, 54.485511786939412 ], [ -6.241964891166788, 54.466598212437532 ], [ -6.212535162667621, 54.449648341797513 ], [ -6.210493944439975, 54.433163560949538 ], [ -6.224188198226784, 54.433266912837723 ], [ -6.225040858948489, 54.423293362098946 ], [ -6.214757248947876, 54.412699692836554 ], [ -6.233360765087241, 54.406886094717493 ], [ -6.237804937647752, 54.397455146337904 ], [ -6.324207932749914, 54.398281969537265 ], [ -6.325034755949218, 54.391615708897803 ], [ -6.391697354249516, 54.401072495699111 ], [ -6.435028042110446, 54.37714630785581 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BNB", "NAME_1": "Banbridge" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.343896653607658, 54.265215156254442 ], [ -6.377822230611457, 54.293275458295739 ], [ -6.374773322031217, 54.340766100575081 ], [ -6.403066168968508, 54.379368395035385 ], [ -6.405288255248763, 54.393837796077378 ], [ -6.391697354249516, 54.401072495699111 ], [ -6.330021531768296, 54.391357327378728 ], [ -6.324207932749914, 54.398281969537265 ], [ -6.237804937647752, 54.397455146337904 ], [ -6.233360765087241, 54.406886094717493 ], [ -6.214757248947876, 54.412699692836554 ], [ -6.224188198226784, 54.433266912837723 ], [ -6.166413946846205, 54.444118964518566 ], [ -6.165587123646844, 54.434093736037084 ], [ -6.137010056768702, 54.437142646415964 ], [ -6.060012173423047, 54.407428697076682 ], [ -6.06892635696579, 54.398850410318175 ], [ -6.064197963565164, 54.388282579477448 ], [ -6.00918840172335, 54.376319485555769 ], [ -5.969759284063741, 54.383812568495216 ], [ -5.950380621568456, 54.379678453397901 ], [ -5.937797410022483, 54.366345933917671 ], [ -5.970586107263046, 54.34107615803822 ], [ -5.967278815365034, 54.320508938037051 ], [ -5.94756425608557, 54.290484931234573 ], [ -5.965599331444025, 54.284077053013561 ], [ -5.963635626682844, 54.273276679075479 ], [ -5.974203456624252, 54.262734687555735 ], [ -5.967537196884109, 54.249944770434809 ], [ -5.988931240084696, 54.245216376134806 ], [ -6.037842982967277, 54.263561509855776 ], [ -6.045336065906724, 54.246611640115077 ], [ -6.073654751265792, 54.252451077555179 ], [ -6.115021735264861, 54.242167467554566 ], [ -6.168636034025781, 54.251055813574908 ], [ -6.19227800102891, 54.246043199334167 ], [ -6.281988288029083, 54.265215156254442 ], [ -6.343896653607658, 54.265215156254442 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-ANT", "NAME_1": "Antrim" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.498641730031807, 54.706221828774346 ], [ -6.470064663153664, 54.767768460046341 ], [ -6.480684169938513, 54.782728787503515 ], [ -6.388648443870579, 54.776605130122618 ], [ -6.353120897311555, 54.795777086143573 ], [ -6.277259893729138, 54.786888740123231 ], [ -6.268113166189664, 54.794381822163359 ], [ -6.212793545086072, 54.781876125882491 ], [ -6.192536383447361, 54.802184964364585 ], [ -6.152564663428507, 54.807145900862622 ], [ -6.084222581207143, 54.791901354363972 ], [ -6.045568609903455, 54.774383042943043 ], [ -6.048384976285661, 54.754642646141178 ], [ -6.063655361205974, 54.747976386401092 ], [ -6.056446499106642, 54.725781358422921 ], [ -6.039729173362673, 54.714076646919693 ], [ -6.051692267284295, 54.695214749261254 ], [ -6.0514080473435, 54.671030178100239 ], [ -6.022495082781859, 54.662451891341675 ], [ -6.058668586286217, 54.652736721222652 ], [ -6.045568609903455, 54.629663194101113 ], [ -6.06587744838555, 54.622712714420231 ], [ -6.138069423964737, 54.618552760901196 ], [ -6.229743414826714, 54.591603502 ], [ -6.264056566357453, 54.592456162721703 ], [ -6.265581020647573, 54.604936022379491 ], [ -6.279197760068598, 54.611059678861068 ], [ -6.289145474184295, 54.584368801479002 ], [ -6.333044602826192, 54.598424791370974 ], [ -6.430971442278235, 54.567470608581687 ], [ -6.437043422815691, 54.568814194819197 ], [ -6.436035731563777, 54.586590887759257 ], [ -6.418078172369746, 54.640075995310895 ], [ -6.420842861009248, 54.654700425983833 ], [ -6.498641730031807, 54.706221828774346 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-LSB", "NAME_1": "Lisburn" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.868111741563609, 54.4791039087184 ], [ -5.879196336341863, 54.466055610078342 ], [ -5.915576545421231, 54.449648341797513 ], [ -5.910021327921982, 54.433266912837723 ], [ -5.942810024263224, 54.409650784256257 ], [ -5.932526414262611, 54.390478828235302 ], [ -5.950380621568456, 54.379678453397901 ], [ -5.969759284063741, 54.383812568495216 ], [ -6.00918840172335, 54.376319485555769 ], [ -6.064197963565164, 54.388282579477448 ], [ -6.06892635696579, 54.398850410318175 ], [ -6.060012173423047, 54.407428697076682 ], [ -6.137010056768702, 54.437142646415964 ], [ -6.165587123646844, 54.434093736037084 ], [ -6.166413946846205, 54.444118964518566 ], [ -6.210493944439975, 54.433163560949538 ], [ -6.212535162667621, 54.449648341797513 ], [ -6.241964891166788, 54.466598212437532 ], [ -6.252558560429236, 54.485511786939412 ], [ -6.239200201628023, 54.502151598317596 ], [ -6.273642544367931, 54.522150377537855 ], [ -6.275322028288997, 54.549642238798242 ], [ -6.296406012227692, 54.569124254081032 ], [ -6.276123013066581, 54.576333116180365 ], [ -6.264056566357453, 54.592456162721703 ], [ -6.229743414826714, 54.591603502 ], [ -6.138069423964737, 54.618552760901196 ], [ -6.06587744838555, 54.622712714420231 ], [ -6.042803921263953, 54.608294990221566 ], [ -6.031693488064036, 54.580777288740876 ], [ -5.988104416885335, 54.562173774400151 ], [ -5.980042894064297, 54.542149155858851 ], [ -5.968079800142675, 54.540237127941054 ], [ -5.954747279763183, 54.554396471519908 ], [ -5.923922288183064, 54.539668688059464 ], [ -5.918341234060733, 54.526594550098366 ], [ -5.903355068181838, 54.51938568799909 ], [ -5.897257249222662, 54.501324775118235 ], [ -5.886973639222106, 54.500187893556415 ], [ -5.868111741563609, 54.4791039087184 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BLY", "NAME_1": "Ballymoney" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.506935797748895, 54.916028143883693 ], [ -6.520423345960637, 54.945121974699362 ], [ -6.546700812192739, 54.953545234524938 ], [ -6.551429205593365, 54.976334539907043 ], [ -6.581995814755032, 54.995222275987203 ], [ -6.59196936729245, 55.020207831026539 ], [ -6.582564256435319, 55.04051666950869 ], [ -6.613854336008785, 55.076638495270288 ], [ -6.578636846912957, 55.097980862526754 ], [ -6.572849087215616, 55.131053778808791 ], [ -6.515307379831711, 55.149088854167246 ], [ -6.477790290089843, 55.148572089330457 ], [ -6.460582037930692, 55.138004259389049 ], [ -6.436397466769677, 55.14242259442716 ], [ -6.425287035368399, 55.12604116546737 ], [ -6.379475877010123, 55.137720038548935 ], [ -6.346454636672149, 55.108832913308277 ], [ -6.324207932749914, 55.104104519008331 ], [ -6.228089769327426, 55.120511787289104 ], [ -6.226126063666925, 55.098290920889269 ], [ -6.235350308270142, 55.088834134088017 ], [ -6.229743414826714, 55.068551134027587 ], [ -6.195016852146011, 55.035504055267893 ], [ -6.195585292926921, 55.02217153578772 ], [ -6.211708340367636, 55.024910386904821 ], [ -6.287259283788899, 55.001604315786494 ], [ -6.325577358308465, 55.002999578867446 ], [ -6.331701015689305, 54.992173367406963 ], [ -6.327515224647925, 54.976024482443904 ], [ -6.33392310196956, 54.971580308984073 ], [ -6.348676723851725, 54.980210273485284 ], [ -6.370329148571329, 54.969926663484728 ], [ -6.39309261733041, 54.976592923224814 ], [ -6.411696132570455, 54.964965725188051 ], [ -6.451409471070235, 54.96049571420582 ], [ -6.443373785771598, 54.947163193826327 ], [ -6.422522344930258, 54.938817451064494 ], [ -6.438076951590062, 54.930497544925743 ], [ -6.433632778130232, 54.910757148123878 ], [ -6.460013597149782, 54.91773346622648 ], [ -6.506935797748895, 54.916028143883693 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BLA", "NAME_1": "Ballymena" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.480684169938513, 54.782728787503515 ], [ -6.471124030349756, 54.827454739344716 ], [ -6.491432867932531, 54.890499986485167 ], [ -6.51029476559097, 54.906881415444957 ], [ -6.506935797748895, 54.916028143883693 ], [ -6.460013597149782, 54.91773346622648 ], [ -6.433632778130232, 54.910757148123878 ], [ -6.438076951590062, 54.930497544925743 ], [ -6.422522344930258, 54.938817451064494 ], [ -6.443373785771598, 54.947163193826327 ], [ -6.451409471070235, 54.96049571420582 ], [ -6.411696132570455, 54.964965725188051 ], [ -6.39309261733041, 54.976592923224814 ], [ -6.370329148571329, 54.969926663484728 ], [ -6.348676723851725, 54.980210273485284 ], [ -6.33392310196956, 54.971580308984073 ], [ -6.327515224647925, 54.976024482443904 ], [ -6.331701015689305, 54.992173367406963 ], [ -6.325577358308465, 55.002999578867446 ], [ -6.287259283788899, 55.001604315786494 ], [ -6.211708340367636, 55.024910386904821 ], [ -6.195585292926921, 55.02217153578772 ], [ -6.192536383447361, 55.028269354746897 ], [ -6.168920253966576, 55.021861477425205 ], [ -6.160057746367897, 55.002172757466781 ], [ -6.140291510244992, 54.986333929966861 ], [ -6.085307785925579, 54.982690742183991 ], [ -6.035284999902842, 54.948274237865746 ], [ -6.023631965242998, 54.934683335967179 ], [ -6.027249314604205, 54.909930324924517 ], [ -6.038902350163312, 54.896597805444344 ], [ -6.028360357744305, 54.859080715702419 ], [ -5.998310513419483, 54.850760810462987 ], [ -5.965056729084779, 54.854946601504423 ], [ -5.944773729024405, 54.832725735104589 ], [ -5.959191453223013, 54.82078847870531 ], [ -6.019472011723963, 54.818566393324375 ], [ -6.006966315443094, 54.798567613204739 ], [ -6.084222581207143, 54.791901354363972 ], [ -6.152564663428507, 54.807145900862622 ], [ -6.192536383447361, 54.802184964364585 ], [ -6.212793545086072, 54.781876125882491 ], [ -6.268113166189664, 54.794381822163359 ], [ -6.277259893729138, 54.786888740123231 ], [ -6.353120897311555, 54.795777086143573 ], [ -6.388648443870579, 54.776605130122618 ], [ -6.480684169938513, 54.782728787503515 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CSR", "NAME_1": "Castlereagh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.818683233844183, 54.491609605898589 ], [ -5.868111741563609, 54.4791039087184 ], [ -5.886973639222106, 54.500187893556415 ], [ -5.897257249222662, 54.501324775118235 ], [ -5.903355068181838, 54.51938568799909 ], [ -5.918341234060733, 54.526594550098366 ], [ -5.923922288183064, 54.539668688059464 ], [ -5.954747279763183, 54.554396471519908 ], [ -5.894750942102291, 54.582146715198746 ], [ -5.816125250779692, 54.592998765980212 ], [ -5.80780534464094, 54.614392809180799 ], [ -5.756981573840562, 54.615788072261694 ], [ -5.760883144941204, 54.593825589179573 ], [ -5.754759486660987, 54.583283595861246 ], [ -5.775042486721418, 54.576333116180365 ], [ -5.792819179661421, 54.55909902649887 ], [ -5.78780656632, 54.546903388580517 ], [ -5.823359951300745, 54.525767726899062 ], [ -5.818683233844183, 54.491609605898589 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WND", "NAME_1": "Wandsworth" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.131717698812736, 51.417688706768388 ], [ -0.154093593944197, 51.418773912386143 ], [ -0.187734951007201, 51.436343898851817 ], [ -0.244320644881839, 51.432468167072216 ], [ -0.24571590796279, 51.455670885403038 ], [ -0.222590704897129, 51.462027085881289 ], [ -0.212668830102416, 51.472879137562131 ], [ -0.179260016136823, 51.470036932758205 ], [ -0.127919481398976, 51.49210277042647 ], [ -0.122338426377269, 51.476031398929877 ], [ -0.142776455169269, 51.457479560533272 ], [ -0.132906257217996, 51.444069525787938 ], [ -0.131717698812736, 51.417688706768388 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-MRT", "NAME_1": "Merton" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.187734951007201, 51.436343898851817 ], [ -0.154093593944197, 51.418773912386143 ], [ -0.131717698812736, 51.417688706768388 ], [ -0.137195400147618, 51.410712389565106 ], [ -0.126937628568726, 51.408025214392126 ], [ -0.119082811322698, 51.393504137406012 ], [ -0.136575283422587, 51.384460760855404 ], [ -0.219619309783354, 51.381256821744898 ], [ -0.235897385955582, 51.399756985096758 ], [ -0.244320644881839, 51.432468167072216 ], [ -0.187734951007201, 51.436343898851817 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WSM", "NAME_1": "Westminster" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.127919481398976, 51.49210277042647 ], [ -0.142853970434373, 51.483731188343654 ], [ -0.148512538922546, 51.493291327932411 ], [ -0.166418423071775, 51.492051093583086 ], [ -0.195822313149222, 51.520008042836878 ], [ -0.211092698968912, 51.522049261963843 ], [ -0.203651291973529, 51.528069566557235 ], [ -0.186520555079539, 51.523315334734889 ], [ -0.170113287698086, 51.531841946448651 ], [ -0.147143114263315, 51.53044668246838 ], [ -0.112209845108282, 51.502438056371204 ], [ -0.127919481398976, 51.49210277042647 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-KEC", "NAME_1": "Kensington and Chelsea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.211092698968912, 51.522049261963843 ], [ -0.195822313149222, 51.520008042836878 ], [ -0.166418423071775, 51.492051093583086 ], [ -0.148512538922546, 51.493291327932411 ], [ -0.142853970434373, 51.483731188343654 ], [ -0.171172654894121, 51.472646593565401 ], [ -0.202307704836699, 51.493756415026496 ], [ -0.2039355128137, 51.506287949729085 ], [ -0.216260341941222, 51.513806871090196 ], [ -0.211092698968912, 51.522049261963843 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-HNS", "NAME_1": "Hounslow" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.270882331054736, 51.496340237412028 ], [ -0.236698370733222, 51.487193508973235 ], [ -0.259668545067314, 51.475721341466681 ], [ -0.310208095926896, 51.472620755143737 ], [ -0.323178880201169, 51.464662584210885 ], [ -0.316047533366998, 51.455619208559597 ], [ -0.367982347307475, 51.449366359969531 ], [ -0.376250575703523, 51.439754544436653 ], [ -0.355864223754907, 51.435258694133381 ], [ -0.384415452211385, 51.413657945357841 ], [ -0.440303514095888, 51.437997545250482 ], [ -0.441440395657764, 51.453862210272746 ], [ -0.418728603742068, 51.456394354915517 ], [ -0.392683682406016, 51.493601386294927 ], [ -0.300880500334813, 51.489518948040995 ], [ -0.270882331054736, 51.496340237412028 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-EAL", "NAME_1": "Ealing" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.252821418173937, 51.492464504733107 ], [ -0.365372687399599, 51.48827871369167 ], [ -0.392683682406016, 51.493601386294927 ], [ -0.370333624796956, 51.518922838118442 ], [ -0.406791348242166, 51.531376858455246 ], [ -0.367801479254865, 51.54837840414001 ], [ -0.306332363247975, 51.545407009026235 ], [ -0.296177943557268, 51.529826564844086 ], [ -0.236620856367438, 51.526467597001954 ], [ -0.236801724420047, 51.504815172282349 ], [ -0.252821418173937, 51.492464504733107 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-HMF", "NAME_1": "Hammersmith and Fulham" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.198328620269592, 51.467349759383865 ], [ -0.244527349557529, 51.494376533550167 ], [ -0.235535650749682, 51.509776108780386 ], [ -0.236620856367438, 51.526467597001954 ], [ -0.211092698968912, 51.522049261963843 ], [ -0.216260341941222, 51.513806871090196 ], [ -0.2039355128137, 51.506287949729085 ], [ -0.202307704836699, 51.493756415026496 ], [ -0.171172654894121, 51.472646593565401 ], [ -0.198328620269592, 51.467349759383865 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-STT", "NAME_1": "Stockton-on-Tees" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.431974250311384, 54.481119290322965 ], [ -1.412001308613526, 54.512435208318209 ], [ -1.434480557431812, 54.534966132181239 ], [ -1.424765387312789, 54.554913235457434 ], [ -1.398384569192501, 54.571888942720477 ], [ -1.396989305212287, 54.584678859841461 ], [ -1.413654954112872, 54.606072903041991 ], [ -1.388488531920245, 54.626691799886601 ], [ -1.318725348196267, 54.611628120541297 ], [ -1.211703457148815, 54.606641343822957 ], [ -1.218679775251417, 54.575377101771778 ], [ -1.259452480047912, 54.577495836163905 ], [ -1.285523240705004, 54.554861559513313 ], [ -1.297848069832582, 54.530883693927308 ], [ -1.292344530076036, 54.502099921474155 ], [ -1.250848353968365, 54.486648668501232 ], [ -1.326683519129119, 54.462154038977701 ], [ -1.361978521691412, 54.467450873159237 ], [ -1.369729987049254, 54.488819077938047 ], [ -1.382106493020274, 54.493521633816329 ], [ -1.408358119931279, 54.492436428198573 ], [ -1.416703863592431, 54.477708644738129 ], [ -1.431974250311384, 54.481119290322965 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-DAL", "NAME_1": "Darlington" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.412595587816156, 54.599975084082814 ], [ -1.396989305212287, 54.584678859841461 ], [ -1.398384569192501, 54.571888942720477 ], [ -1.424765387312789, 54.554913235457434 ], [ -1.434480557431812, 54.534966132181239 ], [ -1.412001308613526, 54.512435208318209 ], [ -1.418667568353612, 54.492694811516287 ], [ -1.431974250311384, 54.481119290322965 ], [ -1.446986252813304, 54.497707424857765 ], [ -1.466985032932939, 54.494090073697919 ], [ -1.446133592091599, 54.451043605777784 ], [ -1.449208339992879, 54.444377346037641 ], [ -1.472256028692755, 54.447994697197487 ], [ -1.495045334974236, 54.478845527199269 ], [ -1.525586106613559, 54.480757555117066 ], [ -1.520315110853687, 54.466598212437532 ], [ -1.532536587193761, 54.465202949356581 ], [ -1.577805142293471, 54.489645901137408 ], [ -1.590853440933586, 54.508559474739968 ], [ -1.6300241761748, 54.508275254799116 ], [ -1.642271490936594, 54.523287259099675 ], [ -1.681778122961987, 54.531090400401638 ], [ -1.680770432609393, 54.57852936493822 ], [ -1.672760585732476, 54.591551826055877 ], [ -1.628654750616249, 54.595582587466424 ], [ -1.572482468790895, 54.572483221923108 ], [ -1.483211432261783, 54.572483221923108 ], [ -1.450086839136304, 54.57951121686915 ], [ -1.412595587816156, 54.599975084082814 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-MDB", "NAME_1": "Middlesbrough" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.23203813315331, 54.577495836163905 ], [ -1.218679775251417, 54.575377101771778 ], [ -1.217646247376422, 54.553466295533099 ], [ -1.179534878431923, 54.503805243816942 ], [ -1.235009528267142, 54.499671128719569 ], [ -1.250848353968365, 54.486648668501232 ], [ -1.292344530076036, 54.502099921474155 ], [ -1.299889288959548, 54.515122381692549 ], [ -1.285523240705004, 54.554861559513313 ], [ -1.259452480047912, 54.577495836163905 ], [ -1.23203813315331, 54.577495836163905 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-RIC", "NAME_1": "Richmond upon Thames" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.212668830102416, 51.472879137562131 ], [ -0.222590704897129, 51.462027085881289 ], [ -0.243752204100929, 51.459494941238518 ], [ -0.244320644881839, 51.432468167072216 ], [ -0.279641485865909, 51.423760688205164 ], [ -0.302301601837485, 51.428592434393295 ], [ -0.298322516371059, 51.405751451268429 ], [ -0.306694097554555, 51.384357408067899 ], [ -0.311706711795296, 51.392444770209977 ], [ -0.384415452211385, 51.413657945357841 ], [ -0.355683355702297, 51.435827134914291 ], [ -0.372504035133147, 51.437325750782747 ], [ -0.375010342253518, 51.444043688265594 ], [ -0.316047533366998, 51.455619208559597 ], [ -0.323178880201169, 51.464662584210885 ], [ -0.310208095926896, 51.472620755143737 ], [ -0.259668545067314, 51.475721341466681 ], [ -0.236517502680613, 51.487245184917299 ], [ -0.212668830102416, 51.472879137562131 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-LND", "NAME_1": "City" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.072031418615097, 51.515977281426387 ], [ -0.065778570924294, 51.50827749291193 ], [ -0.097301195393868, 51.509724432836265 ], [ -0.10254635273202, 51.523470364365778 ], [ -0.087405158121555, 51.526932684995415 ], [ -0.072031418615097, 51.515977281426387 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-TWH", "NAME_1": "Tower Hamlets" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.06686377564273, 51.507864080862589 ], [ -0.072031418615097, 51.515977281426387 ], [ -0.06668290938876, 51.526467597001954 ], [ -0.011027390601612, 51.543469142686774 ], [ 0.003881260012122, 51.513703518302691 ], [ 0.01943586577255, 51.502593085102774 ], [ 0.006206699079883, 51.499750882097487 ], [ 0.003054436812818, 51.482542629938393 ], [ -0.004748703589826, 51.479597073246282 ], [ -0.017977871181813, 51.483111069819984 ], [ -0.023558926203464, 51.495926826262007 ], [ -0.06686377564273, 51.507864080862589 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-GAT", "NAME_1": "Gateshead" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.701182623878992, 54.894117336745694 ], [ -1.820064256060562, 54.904659329164701 ], [ -1.848925543778819, 54.912462470466608 ], [ -1.850579189278164, 54.91967133256594 ], [ -1.821717901559907, 54.929386501785586 ], [ -1.800065476840302, 54.972174588186647 ], [ -1.766708339718093, 54.98439606452672 ], [ -1.764486253437838, 54.997160143225983 ], [ -1.749474250036599, 55.002741197348371 ], [ -1.656802750946213, 54.976644983179426 ], [ -1.532222263346796, 54.953895502475405 ], [ -1.51922256047277, 54.939812491553198 ], [ -1.525722412359471, 54.921396244840821 ], [ -1.557138361046555, 54.919229627845027 ], [ -1.577316381445883, 54.885974822779815 ], [ -1.59532345191576, 54.892618719977918 ], [ -1.701182623878992, 54.894117336745694 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NET", "NAME_1": "Newcastle upon Tyne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.688909470695535, 55.072142645866393 ], [ -1.649339789899386, 55.067664185753529 ], [ -1.626470110307366, 55.044893423492681 ], [ -1.48997322878148, 54.983144834166751 ], [ -1.532222263346796, 54.953895502475405 ], [ -1.656802750946213, 54.976644983179426 ], [ -1.749474250036599, 55.002741197348371 ], [ -1.728364426776864, 55.028010973227822 ], [ -1.680305344615988, 55.041343491808675 ], [ -1.680021124675193, 55.048836574748123 ], [ -1.700019903895452, 55.056329657687513 ], [ -1.688909470695535, 55.072142645866393 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-YOR", "NAME_1": "York" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.04897437226947, 54.040345160900415 ], [ -1.026598477138009, 54.0389240593978 ], [ -1.007038946590114, 54.027761949354442 ], [ -1.004248420428269, 53.990038154037563 ], [ -0.98747941694154, 53.974664415430425 ], [ -0.92797400569583, 53.971848049947539 ], [ -0.920868496384003, 53.943839422950987 ], [ -0.940040452404958, 53.891904609010453 ], [ -0.940505540398362, 53.867978421167152 ], [ -0.969340989694956, 53.871259873744179 ], [ -1.025203213157795, 53.857281399117255 ], [ -1.141190964591374, 53.860071926178421 ], [ -1.177519496827301, 53.876866767187551 ], [ -1.218033820104722, 53.914590563403749 ], [ -1.234828660214532, 53.945338039718706 ], [ -1.232012294731646, 53.969057521986997 ], [ -1.177519496827301, 53.980271307974476 ], [ -1.146772019613024, 54.027761949354442 ], [ -1.092279221708736, 54.040345160900415 ], [ -1.04897437226947, 54.040345160900415 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SHN", "NAME_1": "Merseyside" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.680580206911031, 53.378809312799547 ], [ -2.741119146931112, 53.388266100500118 ], [ -2.754702400995029, 53.378089941497592 ], [ -2.793411643732384, 53.402527428098324 ], [ -2.803931264616153, 53.466960106123963 ], [ -2.815584885633996, 53.491050522763373 ], [ -2.805042894114308, 53.4935309923614 ], [ -2.801683926272176, 53.516888740323054 ], [ -2.765587938032922, 53.527172350323667 ], [ -2.690036993712283, 53.471620185223344 ], [ -2.675050827833445, 53.480766912762761 ], [ -2.649470993591478, 53.472447008422648 ], [ -2.603918218550973, 53.472447008422648 ], [ -2.599732428408856, 53.458287664843851 ], [ -2.566426968130088, 53.435601712249195 ], [ -2.616139695790366, 53.430485745220949 ], [ -2.666162481813103, 53.441027736740637 ], [ -2.670865036792009, 53.431054186001859 ], [ -2.661976690771667, 53.410228583582239 ], [ -2.645026821030967, 53.401598619080971 ], [ -2.648127407353968, 53.391340847502079 ], [ -2.680580206911031, 53.378809312799547 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-ENF", "NAME_1": "Enfield" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.148099127772525, 51.689093329093851 ], [ -0.011259934598286, 51.677207750437333 ], [ -0.012836065731847, 51.64992259385258 ], [ -0.002604131675355, 51.646615301954569 ], [ -0.029579229897536, 51.612663886529106 ], [ -0.029966802625836, 51.601062526914063 ], [ -0.130529141306852, 51.607780463497591 ], [ -0.119980040646396, 51.627864241241696 ], [ -0.165969696444336, 51.65137006527624 ], [ -0.165409077067238, 51.671339061648325 ], [ -0.148099127772525, 51.689093329093851 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-HRT", "NAME_1": "Hertfordshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.011259934598286, 51.677207750437333 ], [ -0.148099127772525, 51.689093329093851 ], [ -0.173368902752657, 51.66632986123409 ], [ -0.217526413812948, 51.654108384894016 ], [ -0.238377854654289, 51.672195136196535 ], [ -0.254190842833168, 51.644134833255919 ], [ -0.320853441133409, 51.634367988092151 ], [ -0.373925136635762, 51.614369207972516 ], [ -0.481412115676619, 51.616048691893582 ], [ -0.493452724863346, 51.590933946544396 ], [ -0.518619147056029, 51.607702949131749 ], [ -0.525621303580294, 51.624937038813243 ], [ -0.523915981237565, 51.641060086253958 ], [ -0.496966722336367, 51.675502428094546 ], [ -0.537248500717737, 51.674933987313636 ], [ -0.550891078560426, 51.708575344376641 ], [ -0.523605922875049, 51.728264065234384 ], [ -0.526680670776329, 51.734930324974471 ], [ -0.541408454236773, 51.739116116015907 ], [ -0.564766201299165, 51.732139797913305 ], [ -0.588899094717476, 51.749089666754685 ], [ -0.631454637121806, 51.74883128523561 ], [ -0.661995408761129, 51.758546454455256 ], [ -0.673648444320236, 51.769398505236779 ], [ -0.678376837720919, 51.795753485834666 ], [ -0.709744431660226, 51.80911184283724 ], [ -0.7300274317206, 51.827715358976604 ], [ -0.713077561979901, 51.84828257897783 ], [ -0.701398687999074, 51.849652005435701 ], [ -0.674475266620277, 51.842985744796238 ], [ -0.676413132959738, 51.829110622956875 ], [ -0.653908046619051, 51.811333930016815 ], [ -0.579493983860289, 51.801334539957054 ], [ -0.551976284178181, 51.821591702495027 ], [ -0.533631151356587, 51.819369615315452 ], [ -0.508077154636965, 51.801618760797169 ], [ -0.46448808435764, 51.846603095056764 ], [ -0.418625250954562, 51.843295803158753 ], [ -0.380022955594939, 51.82438222955625 ], [ -0.36446834983451, 51.826035875055538 ], [ -0.335322842175458, 51.851047268516595 ], [ -0.347544317616155, 51.865775051077719 ], [ -0.348655360756311, 51.881045436897352 ], [ -0.367827317676586, 51.89218170851899 ], [ -0.371444667937112, 51.90742625591696 ], [ -0.399194911615893, 51.934943956498387 ], [ -0.398626470834984, 51.954658514878531 ], [ -0.375010342253518, 51.978016261940923 ], [ -0.36808570009498, 51.949129136700265 ], [ -0.3442111881958, 51.963004259439003 ], [ -0.352531094334552, 51.974941514938962 ], [ -0.347802700034606, 51.981323553838934 ], [ -0.311396654332157, 51.983855699380968 ], [ -0.29002844865397, 51.99357086949999 ], [ -0.254759283614078, 51.978584702721832 ], [ -0.236956753151674, 51.996309718818452 ], [ -0.200860764912363, 52.00995229845978 ], [ -0.204736496691964, 52.03020945919917 ], [ -0.146135423011401, 52.069664415280499 ], [ -0.133655565152196, 52.065762844179915 ], [ -0.135567593069993, 52.043541979578663 ], [ -0.118669399273358, 52.034963691021517 ], [ -0.109186774050386, 52.019357408417648 ], [ -0.029475877110031, 52.039924628418817 ], [ -0.011440801751633, 52.051603502399701 ], [ 0.051371901392145, 52.043283596260949 ], [ 0.080543246573541, 52.002433377098669 ], [ 0.082455275390657, 51.983287259499377 ], [ 0.110799798272069, 51.973572089380411 ], [ 0.141650628273851, 51.883861803279558 ], [ 0.189942254431514, 51.890218003757866 ], [ 0.185498080971627, 51.879417629819727 ], [ 0.199166497236035, 51.865775051077719 ], [ 0.173586662994069, 51.84828257897783 ], [ 0.173018223112479, 51.825209051856234 ], [ 0.190278151215693, 51.816630764198408 ], [ 0.163303052993513, 51.805778714316205 ], [ 0.15803205723364, 51.790482490074851 ], [ 0.035558913213265, 51.768261624574279 ], [ 0.000005527333201, 51.733069973000852 ], [ -0.011259934598286, 51.677207750437333 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BNE", "NAME_1": "Barnet" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.238377854654289, 51.672195136196535 ], [ -0.217526413812948, 51.654108384894016 ], [ -0.165409077067238, 51.671339061648325 ], [ -0.165969696444336, 51.65137006527624 ], [ -0.119980040646396, 51.627864241241696 ], [ -0.135877651432452, 51.596489163144327 ], [ -0.148435023657441, 51.599176337417987 ], [ -0.146135423011401, 51.585947170725319 ], [ -0.159183721651459, 51.578660794260202 ], [ -0.162697720023743, 51.566361803554344 ], [ -0.204736496691964, 51.551478990463011 ], [ -0.225717128742531, 51.566878567491869 ], [ -0.236104092429912, 51.565870877139218 ], [ -0.292431402986892, 51.629096992332279 ], [ -0.293619961392096, 51.638347073558577 ], [ -0.254190842833168, 51.644134833255919 ], [ -0.238377854654289, 51.672195136196535 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WFT", "NAME_1": "Waltham Forest" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.029966802625836, 51.601062526914063 ], [ -0.029579229897536, 51.612663886529106 ], [ -0.002604131675355, 51.646615301954569 ], [ 0.021347893690347, 51.636900132734922 ], [ 0.027626579802813, 51.62646149400274 ], [ 0.018066440214056, 51.618710029544218 ], [ 0.025171950425147, 51.608426419543605 ], [ 0.023880039232438, 51.554269518423496 ], [ -0.010639817873312, 51.55240916644982 ], [ -0.048337774768527, 51.565379950724093 ], [ -0.052730272284236, 51.573596503176077 ], [ -0.029966802625836, 51.601062526914063 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-RDB", "NAME_1": "Redbridge" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.148471916745564, 51.617443955873853 ], [ 0.152399326267869, 51.598917954999592 ], [ 0.137852409960715, 51.59173493132198 ], [ 0.125269199314062, 51.552202459975547 ], [ 0.07457461882359, 51.542073880505143 ], [ 0.071344842190683, 51.553546048011697 ], [ 0.053283929309885, 51.562796129237938 ], [ 0.023880039232438, 51.554269518423496 ], [ 0.019797600978507, 51.622844142842894 ], [ 0.027626579802813, 51.62646149400274 ], [ 0.083876376893272, 51.601036689391663 ], [ 0.112195062252283, 51.615506090433712 ], [ 0.148471916745564, 51.617443955873853 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-HAV", "NAME_1": "Havering" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.152399326267869, 51.598917954999592 ], [ 0.148471916745564, 51.617443955873853 ], [ 0.248078241017993, 51.627443345933614 ], [ 0.270531649615918, 51.593543606452272 ], [ 0.308307121776238, 51.578815822991828 ], [ 0.33610904319778, 51.539955146113073 ], [ 0.279962598894826, 51.526881009051294 ], [ 0.272753736795494, 51.516597398151362 ], [ 0.247742344233814, 51.519956366892814 ], [ 0.242212966055547, 51.498820706110678 ], [ 0.190717400787378, 51.482671821147619 ], [ 0.166041904110557, 51.500112617303444 ], [ 0.170511915992108, 51.525149848286844 ], [ 0.19332706069531, 51.553959459161661 ], [ 0.183844434572961, 51.566232612345175 ], [ 0.15973737957637, 51.563312893175464 ], [ 0.148110182438984, 51.581709702840499 ], [ 0.152399326267869, 51.598917954999592 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CAM", "NAME_1": "Cambridgeshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.109186774050386, 52.019357408417648 ], [ -0.118669399273358, 52.034963691021517 ], [ -0.135567593069993, 52.043541979578663 ], [ -0.133655565152196, 52.065762844179915 ], [ -0.146135423011401, 52.069664415280499 ], [ -0.132001918753531, 52.133562324041975 ], [ -0.216673753091243, 52.132735500842671 ], [ -0.20695858387154, 52.150512192883355 ], [ -0.248919847073296, 52.163534654001069 ], [ -0.233933682093777, 52.172733059283246 ], [ -0.235845710011517, 52.179399319023332 ], [ -0.291966314993431, 52.202705390141602 ], [ -0.293361578973702, 52.224099433342133 ], [ -0.355321621395717, 52.22714834192243 ], [ -0.368369920035775, 52.241876126282193 ], [ -0.371134608675277, 52.267714342043234 ], [ -0.418909470895358, 52.277997952043847 ], [ -0.429503140157806, 52.297428290483197 ], [ -0.458777839026084, 52.308771266780525 ], [ -0.461413337355623, 52.323576565506073 ], [ -0.485597906718056, 52.348562120545409 ], [ -0.484461025156179, 52.365486151864388 ], [ -0.425859950576296, 52.382436022504407 ], [ -0.335607062116253, 52.45550649722702 ], [ -0.348086920874721, 52.489948839067665 ], [ -0.407153083448065, 52.51178213183988 ], [ -0.398368089315852, 52.537361966081846 ], [ -0.415162930324982, 52.55017772072523 ], [ -0.414361944648022, 52.559634508425802 ], [ -0.397903001322447, 52.558885200491602 ], [ -0.326537848043245, 52.507441311167554 ], [ -0.2867728335994, 52.504134020168863 ], [ -0.215381841898477, 52.55224477827386 ], [ -0.140735236042303, 52.577152818048091 ], [ -0.054461432149367, 52.588754176763814 ], [ -0.049500494752067, 52.657871406240361 ], [ 0.03219994537119, 52.648001207389768 ], [ 0.057185500410526, 52.670480455308734 ], [ 0.052767165372359, 52.700504462111212 ], [ 0.060260247412486, 52.705517076351953 ], [ 0.172372267066464, 52.724327298066328 ], [ 0.15705020530271, 52.670170396946219 ], [ 0.197435337370905, 52.661075344451547 ], [ 0.201646965934742, 52.650481676088475 ], [ 0.184671257772322, 52.629966132031313 ], [ 0.245856153838417, 52.601337389209107 ], [ 0.219914585289871, 52.584387519468407 ], [ 0.217459954113565, 52.572450263069186 ], [ 0.228312004895088, 52.560771389088302 ], [ 0.218260938891206, 52.543253079466012 ], [ 0.223041009135272, 52.521600653847088 ], [ 0.235805087834535, 52.515218614047797 ], [ 0.233893059916795, 52.506872870386644 ], [ 0.253013339993629, 52.487442531947238 ], [ 0.285776197913208, 52.499948229127426 ], [ 0.328538445892548, 52.503281358547838 ], [ 0.362464022896347, 52.490491441426855 ], [ 0.398043247198075, 52.455222276386905 ], [ 0.447213371599787, 52.43217458768703 ], [ 0.392746413016539, 52.408015855847054 ], [ 0.389671665115259, 52.39018748606361 ], [ 0.41915306955849, 52.355770981745366 ], [ 0.446644931718197, 52.339957994465863 ], [ 0.434139235437328, 52.309675605244934 ], [ 0.472457309956894, 52.308280341264719 ], [ 0.510491163636289, 52.281615302304317 ], [ 0.510284458061278, 52.274638984201715 ], [ 0.49550499775745, 52.264923814082749 ], [ 0.430521885176859, 52.253813381782095 ], [ 0.367476637137088, 52.289935208443069 ], [ 0.349699945096404, 52.257714951983417 ], [ 0.392462192176424, 52.224952094063838 ], [ 0.410497266635559, 52.224357814861264 ], [ 0.426878695595292, 52.238000392703952 ], [ 0.462199538378002, 52.239654039102618 ], [ 0.481138950402226, 52.228001004442774 ], [ 0.504703403039628, 52.228285224383569 ], [ 0.517209100219816, 52.210508531443566 ], [ 0.498295525717936, 52.177177231843757 ], [ 0.498605584080451, 52.160795802883968 ], [ 0.461631096697772, 52.163844713262904 ], [ 0.431658765839359, 52.144931138761024 ], [ 0.427472974797922, 52.129118150582144 ], [ 0.398043247198075, 52.104365139539539 ], [ 0.408921136401318, 52.059303290014782 ], [ 0.393056471379055, 52.051603502399701 ], [ 0.401376376618487, 52.042715156379359 ], [ 0.391066929095473, 52.035480454958986 ], [ 0.365512933275227, 52.044110419460253 ], [ 0.325282829938658, 52.074134426262731 ], [ 0.286628858634913, 52.084934801100189 ], [ 0.255803867054794, 52.076873277379832 ], [ 0.206659580175483, 52.081627509202178 ], [ 0.193843824632779, 52.076356513442306 ], [ 0.193559604691984, 52.056874498159516 ], [ 0.176945631735521, 52.047986152139174 ], [ 0.13911848273176, 52.041888333179998 ], [ 0.106355624812238, 52.054910794297712 ], [ 0.108319328674042, 52.027444770559669 ], [ 0.080543246573541, 52.002433377098669 ], [ 0.051371901392145, 52.043283596260949 ], [ -0.011440801751633, 52.051603502399701 ], [ -0.029475877110031, 52.039924628418817 ], [ -0.109186774050386, 52.019357408417648 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BEX", "NAME_1": "Bexley" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.166041904110557, 51.500112617303444 ], [ 0.190717400787378, 51.482671821147619 ], [ 0.224642978690497, 51.48900218410347 ], [ 0.211362135154388, 51.456885281330642 ], [ 0.160796745873085, 51.417171942830862 ], [ 0.166248609685567, 51.398516750747433 ], [ 0.13759402844164, 51.412185167011842 ], [ 0.108784416667504, 51.413657945357841 ], [ 0.080310702576867, 51.431537991085406 ], [ 0.089664136590613, 51.445361436980704 ], [ 0.088527255928113, 51.46685883206942 ], [ 0.121212598582531, 51.476754869341733 ], [ 0.120514966592452, 51.502799791577104 ], [ 0.166041904110557, 51.500112617303444 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-STN", "NAME_1": "Sutton" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.153085902692283, 51.388465684743551 ], [ -0.131330125185116, 51.387199611972505 ], [ -0.118850267325968, 51.377329413121913 ], [ -0.110039434772091, 51.354333401265421 ], [ -0.112855801154296, 51.344411526470765 ], [ -0.133681402674597, 51.341000881785249 ], [ -0.141975470391628, 51.320433660884703 ], [ -0.16365373443233, 51.319606839484038 ], [ -0.178355678571734, 51.339114692289172 ], [ -0.219464281051728, 51.32828847903005 ], [ -0.218069017071514, 51.352989814128591 ], [ -0.243106248054914, 51.373557034129817 ], [ -0.224786952755665, 51.38533925999883 ], [ -0.212281257374116, 51.379086412308084 ], [ -0.153085902692283, 51.388465684743551 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-MIK", "NAME_1": "Milton Keynes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.686412523019555, 51.94788890235094 ], [ -0.722482672837089, 51.949697578380494 ], [ -0.867409227254029, 52.03382680945964 ], [ -0.856453822785681, 52.040493069199783 ], [ -0.855859543583108, 52.058528144558181 ], [ -0.82754085912336, 52.064393419520684 ], [ -0.827799242441074, 52.07217072240087 ], [ -0.877822027564548, 52.106070461882268 ], [ -0.878364630823057, 52.116044013520366 ], [ -0.825861375202294, 52.127412828239414 ], [ -0.80671525670374, 52.15216583928202 ], [ -0.776148646642753, 52.146894843522205 ], [ -0.761989304862539, 52.162449449282633 ], [ -0.728916387681181, 52.161622626083329 ], [ -0.654502325821682, 52.192473456085111 ], [ -0.621222703065314, 52.174851792775996 ], [ -0.631609665853432, 52.146455593051144 ], [ -0.588072272417435, 52.118007717382227 ], [ -0.573654548218826, 52.096613675081016 ], [ -0.618354660738987, 52.074134426262731 ], [ -0.615021532217952, 52.062713934700298 ], [ -0.640007087257288, 52.055789293441137 ], [ -0.658378057601283, 52.038839422801118 ], [ -0.638120896861892, 52.036875718939257 ], [ -0.630033534719871, 52.02829743128143 ], [ -0.634477708179702, 52.004371243438129 ], [ -0.654192266559846, 51.98798981447834 ], [ -0.641738247122419, 51.961893216298847 ], [ -0.657215339416382, 51.94788890235094 ], [ -0.686412523019555, 51.94788890235094 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BKM", "NAME_1": "Buckinghamshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.867409227254029, 52.03382680945964 ], [ -0.722482672837089, 51.949697578380494 ], [ -0.657215339416382, 51.94788890235094 ], [ -0.688066169418221, 51.902723700937997 ], [ -0.62558936215936, 51.876317044396046 ], [ -0.60303259897529, 51.879934393757253 ], [ -0.561123012616974, 51.854664618777122 ], [ -0.534199591238178, 51.8268885357773 ], [ -0.533631151356587, 51.819369615315452 ], [ -0.551976284178181, 51.821591702495027 ], [ -0.579493983860289, 51.801334539957054 ], [ -0.653908046619051, 51.811333930016815 ], [ -0.676413132959738, 51.829110622956875 ], [ -0.674475266620277, 51.842985744796238 ], [ -0.701398687999074, 51.849652005435701 ], [ -0.713077561979901, 51.84828257897783 ], [ -0.7300274317206, 51.827715358976604 ], [ -0.709744431660226, 51.80911184283724 ], [ -0.678376837720919, 51.795753485834666 ], [ -0.673648444320236, 51.769398505236779 ], [ -0.661995408761129, 51.758546454455256 ], [ -0.631454637121806, 51.74883128523561 ], [ -0.588899094717476, 51.749089666754685 ], [ -0.564766201299165, 51.732139797913305 ], [ -0.541408454236773, 51.739116116015907 ], [ -0.526680670776329, 51.734930324974471 ], [ -0.523605922875049, 51.728264065234384 ], [ -0.550891078560426, 51.708575344376641 ], [ -0.537248500717737, 51.674933987313636 ], [ -0.496966722336367, 51.675502428094546 ], [ -0.523915981237565, 51.641060086253958 ], [ -0.525621303580294, 51.624937038813243 ], [ -0.518619147056029, 51.607702949131749 ], [ -0.493452724863346, 51.590933946544396 ], [ -0.471438564038522, 51.549954536172891 ], [ -0.484461025156179, 51.494376533550167 ], [ -0.497199266333098, 51.477788398116047 ], [ -0.512805548037647, 51.475773017410802 ], [ -0.523605922875049, 51.506313788150749 ], [ -0.557557339199832, 51.504117540292214 ], [ -0.568641933978085, 51.527139391469689 ], [ -0.585591802819465, 51.520473130830283 ], [ -0.616701016139018, 51.530188300049986 ], [ -0.644451259817799, 51.526312568270384 ], [ -0.649748093999335, 51.519956366892814 ], [ -0.636183031421751, 51.493704739082432 ], [ -0.678738572926818, 51.494066474288331 ], [ -0.701321172733969, 51.50714061135011 ], [ -0.685585699820194, 51.549308580126819 ], [ -0.718968675364067, 51.563338730697865 ], [ -0.846325243315334, 51.542487290755844 ], [ -0.88707210879079, 51.548094184199215 ], [ -0.9319789286846, 51.570495916853076 ], [ -0.910843267902521, 51.597160955813422 ], [ -0.933064134302356, 51.600209866192358 ], [ -0.944484625864789, 51.619123439794862 ], [ -0.930583664704386, 51.634678046454667 ], [ -0.942262538685213, 51.64496165645528 ], [ -0.92639787366295, 51.648553168294029 ], [ -0.921411098743249, 51.667182521955795 ], [ -0.874178839781621, 51.668009345155156 ], [ -0.883093024223683, 51.684390774114888 ], [ -0.876400926061876, 51.700513821555603 ], [ -0.884488288203954, 51.716326808835106 ], [ -0.911980150363661, 51.740511379996178 ], [ -0.965568609803483, 51.756065985756607 ], [ -1.018071865424247, 51.75244863549608 ], [ -1.040292730924818, 51.743250231113223 ], [ -1.065898402689129, 51.751337592355981 ], [ -1.079747687006147, 51.772990017075585 ], [ -1.108660650668526, 51.779682115237392 ], [ -1.113621588965145, 51.813840237137185 ], [ -1.128349372425589, 51.827431139035809 ], [ -1.12530046204671, 51.834097397876576 ], [ -1.116153733607916, 51.837973131454817 ], [ -1.069515753848975, 51.823813787875963 ], [ -1.0472432106057, 51.83301219315814 ], [ -1.062797817265448, 51.862441922556627 ], [ -1.062797817265448, 51.878539129776982 ], [ -1.081711391767328, 51.897711086697257 ], [ -1.075846116804883, 51.919389349838582 ], [ -1.0472432106057, 51.939672349899013 ], [ -1.082512375645649, 51.952436427698956 ], [ -1.053082648045802, 51.992718206979646 ], [ -1.141759406271603, 52.017703762018982 ], [ -1.096723395168567, 52.043826199519458 ], [ -1.036675380664292, 52.053567206261562 ], [ -1.023342861184119, 52.064677639461479 ], [ -0.990890061627056, 52.062972317118692 ], [ -0.950014004043055, 52.073824367900215 ], [ -0.940583054764204, 52.071886502460075 ], [ -0.901412318623613, 52.018582262061727 ], [ -0.867409227254029, 52.03382680945964 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-HIL", "NAME_1": "Hillingdon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.367801479254865, 51.54837840414001 ], [ -0.406481288980331, 51.531945299236156 ], [ -0.370333624796956, 51.517114162988207 ], [ -0.422733526730894, 51.453655503798416 ], [ -0.473660651218097, 51.458823146770783 ], [ -0.497199266333098, 51.477788398116047 ], [ -0.484461025156179, 51.494376533550167 ], [ -0.471438564038522, 51.549954536172891 ], [ -0.493452724863346, 51.590933946544396 ], [ -0.481412115676619, 51.616048691893582 ], [ -0.399789190818524, 51.614782620021856 ], [ -0.367801479254865, 51.54837840414001 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BEN", "NAME_1": "Brent" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.179001633718428, 51.528302110553909 ], [ -0.211092698968912, 51.522049261963843 ], [ -0.274370490106037, 51.526312568270384 ], [ -0.296177943557268, 51.529826564844086 ], [ -0.301113044331544, 51.542022202762439 ], [ -0.32553015769065, 51.549308580126819 ], [ -0.312481859050592, 51.575586046358922 ], [ -0.282612880979684, 51.582226466777968 ], [ -0.266799892800805, 51.600985012548279 ], [ -0.245405849600274, 51.583621730758239 ], [ -0.241349249768064, 51.569462388978025 ], [ -0.225717128742531, 51.566878567491869 ], [ -0.179001633718428, 51.528302110553909 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-LUT", "NAME_1": "Luton" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.385190598567306, 51.921068833759648 ], [ -0.367827317676586, 51.89218170851899 ], [ -0.348655360756311, 51.881045436897352 ], [ -0.347544317616155, 51.865775051077719 ], [ -0.335322842175458, 51.851047268516595 ], [ -0.36446834983451, 51.826035875055538 ], [ -0.380022955594939, 51.82438222955625 ], [ -0.418625250954562, 51.843295803158753 ], [ -0.452680020066907, 51.847429918256069 ], [ -0.471748623300357, 51.866705227064529 ], [ -0.477174647791799, 51.890166327813745 ], [ -0.464539761201024, 51.913627428562961 ], [ -0.385190598567306, 51.921068833759648 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-HRW", "NAME_1": "Harrow" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.32553015769065, 51.549308580126819 ], [ -0.367801479254865, 51.54837840414001 ], [ -0.399789190818524, 51.614782620021856 ], [ -0.373925136635762, 51.614369207972516 ], [ -0.293619961392096, 51.638347073558577 ], [ -0.266799892800805, 51.600985012548279 ], [ -0.282612880979684, 51.582226466777968 ], [ -0.312481859050592, 51.575586046358922 ], [ -0.32553015769065, 51.549308580126819 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CBF", "NAME_1": "Central Bedfordshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.657215339416382, 51.94788890235094 ], [ -0.641738247122419, 51.961893216298847 ], [ -0.654192266559846, 51.98798981447834 ], [ -0.634477708179702, 52.004371243438129 ], [ -0.630033534719871, 52.02829743128143 ], [ -0.638120896861892, 52.036875718939257 ], [ -0.658378057601283, 52.038839422801118 ], [ -0.640007087257288, 52.055789293441137 ], [ -0.615021532217952, 52.062713934700298 ], [ -0.618354660738987, 52.074134426262731 ], [ -0.573654548218826, 52.096613675081016 ], [ -0.503471058242781, 52.071986640171303 ], [ -0.459467383413028, 52.077487099749817 ], [ -0.393461870269107, 52.066486180592733 ], [ -0.33845727628227, 52.104989396743235 ], [ -0.34395773586084, 52.143492611994418 ], [ -0.324706127785589, 52.179245598805323 ], [ -0.253079799693012, 52.191905016203521 ], [ -0.233933682093777, 52.172733059283246 ], [ -0.246981980733835, 52.160485745420772 ], [ -0.20695858387154, 52.150512192883355 ], [ -0.216673753091243, 52.132735500842671 ], [ -0.132001918753531, 52.133562324041975 ], [ -0.146135423011401, 52.069664415280499 ], [ -0.204736496691964, 52.03020945919917 ], [ -0.200860764912363, 52.00995229845978 ], [ -0.236956753151674, 51.996309718818452 ], [ -0.254759283614078, 51.978584702721832 ], [ -0.29002844865397, 51.99357086949999 ], [ -0.311396654332157, 51.983855699380968 ], [ -0.347802700034606, 51.981323553838934 ], [ -0.352531094334552, 51.974941514938962 ], [ -0.3442111881958, 51.963004259439003 ], [ -0.361161057936499, 51.949387519118659 ], [ -0.371703050355507, 51.955485338077835 ], [ -0.375010342253518, 51.978016261940923 ], [ -0.398626470834984, 51.954658514878531 ], [ -0.399194911615893, 51.934943956498387 ], [ -0.385190598567306, 51.921068833759648 ], [ -0.464539761201024, 51.913627428562961 ], [ -0.477174647791799, 51.877557277846051 ], [ -0.452680020066907, 51.847429918256069 ], [ -0.482238938875923, 51.834381618716691 ], [ -0.508077154636965, 51.801618760797169 ], [ -0.533631151356587, 51.819369615315452 ], [ -0.561123012616974, 51.854664618777122 ], [ -0.60303259897529, 51.879934393757253 ], [ -0.62558936215936, 51.876317044396046 ], [ -0.688066169418221, 51.902723700937997 ], [ -0.657215339416382, 51.94788890235094 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BDF", "NAME_1": "Bedford" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.573654548218826, 52.096613675081016 ], [ -0.588072272417435, 52.118007717382227 ], [ -0.631609665853432, 52.146455593051144 ], [ -0.621222703065314, 52.174851792775996 ], [ -0.654502325821682, 52.192473456085111 ], [ -0.634477708179702, 52.216037910521152 ], [ -0.643960334301994, 52.251901353864355 ], [ -0.641402350338183, 52.259084378441287 ], [ -0.590604417060206, 52.266060696543889 ], [ -0.541175910240099, 52.245777696483458 ], [ -0.525285406796115, 52.260479641522238 ], [ -0.525285406796115, 52.283268947803663 ], [ -0.503064541295544, 52.303009345504847 ], [ -0.458777839026084, 52.308771266780525 ], [ -0.429503140157806, 52.297428290483197 ], [ -0.418909470895358, 52.277997952043847 ], [ -0.371134608675277, 52.267714342043234 ], [ -0.368369920035775, 52.241876126282193 ], [ -0.355321621395717, 52.22714834192243 ], [ -0.293361578973702, 52.224099433342133 ], [ -0.291966314993431, 52.202705390141602 ], [ -0.253079799693012, 52.191905016203521 ], [ -0.324706127785589, 52.179245598805323 ], [ -0.34395773586084, 52.143492611994418 ], [ -0.33845727628227, 52.104989396743235 ], [ -0.393461870269107, 52.066486180592733 ], [ -0.459467383413028, 52.077487099749817 ], [ -0.503471058242781, 52.071986640171303 ], [ -0.573654548218826, 52.096613675081016 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-RUT", "NAME_1": "Rutland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.651065842714502, 52.747530016397093 ], [ -0.563655158159008, 52.740502021451107 ], [ -0.526422288357935, 52.724947414791359 ], [ -0.515570237576412, 52.709651191449325 ], [ -0.415317959056551, 52.686603501850129 ], [ -0.420304734875629, 52.675493069549475 ], [ -0.449734463374796, 52.661592109288392 ], [ -0.513089768877762, 52.652703762368731 ], [ -0.508903977836326, 52.642420152368118 ], [ -0.490713873746301, 52.63647736303983 ], [ -0.521151291698743, 52.623816637128073 ], [ -0.54807471397686, 52.590485338427584 ], [ -0.681709967141273, 52.542994697047618 ], [ -0.696954515438563, 52.522995916927982 ], [ -0.729898241410694, 52.506666164811634 ], [ -0.764883184711209, 52.5326077342595 ], [ -0.800100673807037, 52.595497951769005 ], [ -0.805113288047835, 52.708669339518394 ], [ -0.782479009598603, 52.718746243044677 ], [ -0.72713355097261, 52.716214098401906 ], [ -0.651065842714502, 52.747530016397093 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NTT", "NAME_1": "Nottinghamshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.919369879616283, 53.487433173402223 ], [ -0.890870327103926, 53.471310125961509 ], [ -0.91001644470316, 53.460509752023427 ], [ -0.90502966978346, 53.457719224962261 ], [ -0.797155117114983, 53.4522931995715 ], [ -0.798653733882702, 53.429142158084119 ], [ -0.775502692395321, 53.401288560718456 ], [ -0.779533453805868, 53.372969876258765 ], [ -0.763048672058574, 53.362531235727943 ], [ -0.744961920756054, 53.322714545339977 ], [ -0.768345506240109, 53.278660387067191 ], [ -0.776536221169692, 53.234192816745065 ], [ -0.723929612761424, 53.229361070556934 ], [ -0.704757655841149, 53.241039944537761 ], [ -0.679203660020903, 53.241608385318727 ], [ -0.656956956098668, 53.231324775318114 ], [ -0.638947720061253, 53.241608385318727 ], [ -0.636699795359277, 53.23468374316019 ], [ -0.664475876560459, 53.203264472377498 ], [ -0.692251959560281, 53.203832913158408 ], [ -0.706411302239815, 53.193549303157795 ], [ -0.730828415598921, 53.191637275240055 ], [ -0.745013596700119, 53.170759995976994 ], [ -0.738347336960032, 53.161329046698143 ], [ -0.70615291982142, 53.160218004457306 ], [ -0.707238125439176, 53.11768830047464 ], [ -0.714188605120057, 53.108283188718133 ], [ -0.703104010341804, 53.096604316535945 ], [ -0.711966518839802, 53.083013413738001 ], [ -0.695869309820807, 53.070197659094674 ], [ -0.688634609299811, 53.049682115037569 ], [ -0.738915777740942, 53.036323758034996 ], [ -0.781445481723608, 53.006067206336468 ], [ -0.786406419120965, 52.986611030374718 ], [ -0.766717699162484, 52.961160387341977 ], [ -0.791703254201821, 52.957439684293945 ], [ -0.819479336302322, 52.941316636853287 ], [ -0.821132981801668, 52.929120998934934 ], [ -0.849787563045595, 52.89299917317328 ], [ -0.896167161285462, 52.867160956512919 ], [ -0.925028449003719, 52.862174180693842 ], [ -0.92448584574521, 52.849384264472178 ], [ -0.968953416067279, 52.825509752572998 ], [ -0.979495409385663, 52.807733058733675 ], [ -1.05222998732404, 52.803805650110633 ], [ -1.07034257614896, 52.811608792311915 ], [ -1.166409063627384, 52.786028958069949 ], [ -1.188190679556214, 52.772257189018035 ], [ -1.225604417409954, 52.777993272771312 ], [ -1.259762539309747, 52.799103095131727 ], [ -1.268082445448499, 52.819101874351986 ], [ -1.262811448789364, 52.861579902390531 ], [ -1.245034755849304, 52.864680487814212 ], [ -1.23263241235594, 52.880700182467422 ], [ -1.271105515607076, 52.898838608814742 ], [ -1.283921271149779, 52.985758368753693 ], [ -1.321412523369247, 53.012991848495005 ], [ -1.329732427709359, 53.050198879874358 ], [ -1.291956956448416, 53.083840236937363 ], [ -1.312834234812101, 53.13102081995487 ], [ -1.309759486910821, 53.142751369879761 ], [ -1.190877854729194, 53.167711087396754 ], [ -1.195864631447591, 53.232461655980615 ], [ -1.160285407145807, 53.262175605319896 ], [ -1.160285407145807, 53.285791733901362 ], [ -1.176020880958902, 53.29292308253423 ], [ -1.135015632165675, 53.325789293241257 ], [ -1.144730801385379, 53.337726548741216 ], [ -1.121088832583553, 53.345503852520778 ], [ -1.113931647327661, 53.35607168246213 ], [ -1.118065762425033, 53.378550930381095 ], [ -1.066415168425294, 53.413019111542724 ], [ -1.004739345944074, 53.412166449921699 ], [ -0.977531703725163, 53.43436147700055 ], [ -0.96978023926664, 53.462990220722077 ], [ -0.919369879616283, 53.487433173402223 ] ], [ [ -1.170982428296441, 52.872276923541165 ], [ -1.104061449376388, 52.918940741721826 ], [ -1.103027919702754, 52.940231432134851 ], [ -1.116231247973701, 52.961522122547876 ], [ -1.160853847926774, 52.995008449979935 ], [ -1.192298957131186, 52.991959540500375 ], [ -1.217646247376422, 52.969635322212298 ], [ -1.22782650369021, 52.944313870388783 ], [ -1.22880835562114, 52.91589183224221 ], [ -1.21258195629224, 52.892559922702219 ], [ -1.200437995217328, 52.879382432852992 ], [ -1.170982428296441, 52.872276923541165 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NTH", "NAME_1": "Northamptonshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.654502325821682, 52.192473456085111 ], [ -0.728916387681181, 52.161622626083329 ], [ -0.761989304862539, 52.162449449282633 ], [ -0.776148646642753, 52.146894843522205 ], [ -0.80671525670374, 52.15216583928202 ], [ -0.825861375202294, 52.127412828239414 ], [ -0.878364630823057, 52.116044013520366 ], [ -0.877822027564548, 52.106070461882268 ], [ -0.827799242441074, 52.07217072240087 ], [ -0.82754085912336, 52.064393419520684 ], [ -0.855859543583108, 52.058528144558181 ], [ -0.856453822785681, 52.040493069199783 ], [ -0.890121019169726, 52.020029201986063 ], [ -0.901412318623613, 52.018582262061727 ], [ -0.940583054764204, 52.071886502460075 ], [ -1.023342861184119, 52.064677639461479 ], [ -1.036675380664292, 52.053567206261562 ], [ -1.118918423146738, 52.034963691021517 ], [ -1.141759406271603, 52.017703762018982 ], [ -1.108195562675064, 52.00917715120454 ], [ -1.138374600007808, 51.98969513592175 ], [ -1.183668992629919, 51.978274645258637 ], [ -1.26503353506962, 51.979669908339588 ], [ -1.296711188270706, 52.038839422801118 ], [ -1.293946498731941, 52.071343899201565 ], [ -1.306710578330524, 52.077441718160742 ], [ -1.237231615446717, 52.096045234300107 ], [ -1.321231655316637, 52.161519273295823 ], [ -1.303093228070054, 52.181052965421998 ], [ -1.24865210610983, 52.195212307202212 ], [ -1.245293138267755, 52.205754300520539 ], [ -1.265860358268924, 52.22771678270334 ], [ -1.208086106888345, 52.249937649103174 ], [ -1.208912930087649, 52.27241689702214 ], [ -1.224209154329003, 52.282442125503678 ], [ -1.202556728710078, 52.301329861583838 ], [ -1.241675788007228, 52.311045029904164 ], [ -1.249478929309134, 52.319649155983711 ], [ -1.165272182964884, 52.34799367886518 ], [ -1.18661454932203, 52.381299140043268 ], [ -1.156693895307058, 52.378250231462971 ], [ -1.134188808966371, 52.403571682387224 ], [ -1.100599127847488, 52.424087226444328 ], [ -1.045201992378054, 52.402434800825347 ], [ -1.022257655566364, 52.432717190046276 ], [ -1.032928840093916, 52.435766100425155 ], [ -1.033626471184732, 52.444654446445497 ], [ -0.962803921164038, 52.463568020048058 ], [ -0.884488288203954, 52.446876532725753 ], [ -0.8703031071027, 52.462172756967107 ], [ -0.892549811024992, 52.47379995410455 ], [ -0.870845710361266, 52.504960842468904 ], [ -0.78919694708145, 52.506872870386644 ], [ -0.761162481663234, 52.499379788346516 ], [ -0.734471605180431, 52.504392401687937 ], [ -0.696954515438563, 52.522995916927982 ], [ -0.681709967141273, 52.542994697047618 ], [ -0.54807471397686, 52.590485338427584 ], [ -0.521151291698743, 52.623816637128073 ], [ -0.490713873746301, 52.63647736303983 ], [ -0.466167568278649, 52.609114692089349 ], [ -0.473919032737172, 52.568006090508618 ], [ -0.460870734097114, 52.561882433127778 ], [ -0.413819342288832, 52.565990708904053 ], [ -0.415162930324982, 52.55017772072523 ], [ -0.398368089315852, 52.537361966081846 ], [ -0.407153083448065, 52.51178213183988 ], [ -0.348086920874721, 52.489948839067665 ], [ -0.335607062116253, 52.45550649722702 ], [ -0.425859950576296, 52.382436022504407 ], [ -0.484461025156179, 52.365486151864388 ], [ -0.485597906718056, 52.348562120545409 ], [ -0.461413337355623, 52.323576565506073 ], [ -0.458777839026084, 52.308771266780525 ], [ -0.503064541295544, 52.303009345504847 ], [ -0.525285406796115, 52.283268947803663 ], [ -0.531977504957922, 52.249679267584099 ], [ -0.558642543918268, 52.247999782763713 ], [ -0.590604417060206, 52.266060696543889 ], [ -0.641402350338183, 52.259084378441287 ], [ -0.634477708179702, 52.216037910521152 ], [ -0.654502325821682, 52.192473456085111 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CMD", "NAME_1": "Camden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.130968389979216, 51.564139716374768 ], [ -0.110711229239826, 51.52719106741381 ], [ -0.096345180985338, 51.515770575851377 ], [ -0.112209845108282, 51.502438056371204 ], [ -0.147143114263315, 51.53044668246838 ], [ -0.179001633718428, 51.528302110553909 ], [ -0.204736496691964, 51.551478990463011 ], [ -0.162697720023743, 51.566361803554344 ], [ -0.130968389979216, 51.564139716374768 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-ISL", "NAME_1": "Islington" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.10254635273202, 51.523470364365778 ], [ -0.126911790147005, 51.553649399899882 ], [ -0.128513759702287, 51.566000068348444 ], [ -0.108592494847755, 51.570289212177386 ], [ -0.070274421227566, 51.546001288228865 ], [ -0.087405158121555, 51.526932684995415 ], [ -0.10254635273202, 51.523470364365778 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-PTE", "NAME_1": "Peterborough" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.049500494752067, 52.657871406240361 ], [ -0.054461432149367, 52.588754176763814 ], [ -0.140735236042303, 52.577152818048091 ], [ -0.215381841898477, 52.55224477827386 ], [ -0.2867728335994, 52.504134020168863 ], [ -0.326537848043245, 52.507441311167554 ], [ -0.397903001322447, 52.558885200491602 ], [ -0.414361944648022, 52.559634508425802 ], [ -0.413819342288832, 52.565990708904053 ], [ -0.460870734097114, 52.561882433127778 ], [ -0.473919032737172, 52.568006090508618 ], [ -0.466167568278649, 52.609114692089349 ], [ -0.490713873746301, 52.63647736303983 ], [ -0.466710170637896, 52.643246975567422 ], [ -0.401985438677059, 52.636890774189851 ], [ -0.315014003693307, 52.663555813150253 ], [ -0.261993984135074, 52.647432765709539 ], [ -0.199491340253132, 52.656217759841695 ], [ -0.18308407197236, 52.641903388430592 ], [ -0.137531296931797, 52.638544419689197 ], [ -0.101409471170143, 52.65187693916937 ], [ -0.049500494752067, 52.657871406240361 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-LBH", "NAME_1": "Lambeth" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.126937628568726, 51.408025214392126 ], [ -0.137195400147618, 51.410712389565106 ], [ -0.132906257217996, 51.444069525787938 ], [ -0.142724779225205, 51.458409736520082 ], [ -0.122338426377269, 51.476031398929877 ], [ -0.127919481398976, 51.49210277042647 ], [ -0.10789486285762, 51.505280260275754 ], [ -0.080480515963075, 51.461458645100379 ], [ -0.092030198734676, 51.444767157778074 ], [ -0.074563564157188, 51.419187324435427 ], [ -0.126937628568726, 51.408025214392126 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SWK", "NAME_1": "Southwark" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.084821335736081, 51.511584784809941 ], [ -0.023558926203464, 51.495926826262007 ], [ -0.02314551415418, 51.488692124841634 ], [ -0.048105230771796, 51.480268866814754 ], [ -0.034410976984987, 51.45220856387408 ], [ -0.037666592039614, 51.445542304133994 ], [ -0.074563564157188, 51.419187324435427 ], [ -0.092030198734676, 51.444767157778074 ], [ -0.080480515963075, 51.461458645100379 ], [ -0.10789486285762, 51.505280260275754 ], [ -0.084821335736081, 51.511584784809941 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-DNC", "NAME_1": "Doncaster" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.126437343608529, 53.63383250616522 ], [ -1.111709561047405, 53.643547675384866 ], [ -0.996419439805322, 53.659954941867056 ], [ -0.941409877963508, 53.656880194865096 ], [ -0.860019497102144, 53.632437242184949 ], [ -0.863352627421818, 53.619388943544891 ], [ -0.855291103701461, 53.598279120285156 ], [ -0.860897996245512, 53.581587632962851 ], [ -0.904487067424213, 53.571614081324753 ], [ -0.872835251745471, 53.545775865563712 ], [ -0.871956752602046, 53.530789700584194 ], [ -0.914770677424826, 53.533011786864449 ], [ -0.943347744302969, 53.51799978346321 ], [ -0.919369879616283, 53.487433173402223 ], [ -0.96978023926664, 53.462990220722077 ], [ -0.977531703725163, 53.43436147700055 ], [ -1.004739345944074, 53.412166449921699 ], [ -1.066415168425294, 53.413019111542724 ], [ -1.118065762425033, 53.378550930381095 ], [ -1.18064950806837, 53.399875103453212 ], [ -1.241870937293925, 53.433268610058292 ], [ -1.258567690146776, 53.469444908655589 ], [ -1.325354703356879, 53.477793285531675 ], [ -1.294743988744074, 53.513969584128972 ], [ -1.325354703356879, 53.541797505850184 ], [ -1.344460212069123, 53.580760809763547 ], [ -1.30531531435031, 53.576058254784584 ], [ -1.243355271928294, 53.596883857204205 ], [ -1.229971075604681, 53.620655016315936 ], [ -1.214752366628431, 53.61993154590408 ], [ -1.199481980808798, 53.638535061144125 ], [ -1.15224972184717, 53.641067205786896 ], [ -1.126437343608529, 53.63383250616522 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CRY", "NAME_1": "Croydon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.131330125185116, 51.387199611972505 ], [ -0.118695237695079, 51.394589342124391 ], [ -0.126937628568726, 51.408025214392126 ], [ -0.103037279147145, 51.417016913199973 ], [ -0.076398077709143, 51.414329738926313 ], [ -0.018830531903518, 51.369784654238401 ], [ 0.01313134123842, 51.320692044202474 ], [ 0.000005527333201, 51.32945119901359 ], [ -0.026711187571266, 51.330768947728757 ], [ -0.046709966791525, 51.315472724386723 ], [ -0.084743822269616, 51.311028550926835 ], [ -0.101952074428709, 51.292735094049306 ], [ -0.128100347652946, 51.289117743788836 ], [ -0.16365373443233, 51.319606839484038 ], [ -0.139495001692978, 51.321415513714953 ], [ -0.133681402674597, 51.341000881785249 ], [ -0.110168625981316, 51.348287259149686 ], [ -0.116938239408228, 51.374797268479142 ], [ -0.131330125185116, 51.387199611972505 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-LEW", "NAME_1": "Lewisham" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.027227952408111, 51.48957062398506 ], [ -0.008546921902962, 51.464920965729959 ], [ 0.015146721943665, 51.464920965729959 ], [ 0.01483666268183, 51.45277700555431 ], [ 0.043232863306002, 51.420685940303883 ], [ 0.021296216846906, 51.421822821865703 ], [ 0.000108880120706, 51.41117747755851 ], [ -0.066708746911161, 51.421021837088063 ], [ -0.053660448271103, 51.440167954687354 ], [ -0.034385137664003, 51.451330063831335 ], [ -0.047846849252721, 51.481044013170617 ], [ -0.027227952408111, 51.48957062398506 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-HRY", "NAME_1": "Haringey" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.094148932227426, 51.560057278120837 ], [ -0.110840420449051, 51.570857652058976 ], [ -0.162697720023743, 51.566361803554344 ], [ -0.159183721651459, 51.578660794260202 ], [ -0.146135423011401, 51.585947170725319 ], [ -0.148435023657441, 51.599176337417987 ], [ -0.136988694572608, 51.595817369575911 ], [ -0.130529141306852, 51.607780463497591 ], [ -0.029966802625836, 51.601062526914063 ], [ -0.052730272284236, 51.573596503176077 ], [ -0.090299037970226, 51.570986843268201 ], [ -0.094148932227426, 51.560057278120837 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-KTT", "NAME_1": "Kingston upon Thames" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.244320644881839, 51.432468167072216 ], [ -0.224786952755665, 51.38533925999883 ], [ -0.268350186411965, 51.361619777730539 ], [ -0.293361578973702, 51.32885691981096 ], [ -0.312249315053862, 51.324102687988614 ], [ -0.315014003693307, 51.347150376688489 ], [ -0.298064133952607, 51.370508123750881 ], [ -0.306694097554555, 51.384357408067899 ], [ -0.298322516371059, 51.405751451268429 ], [ -0.302611660199943, 51.428230699187395 ], [ -0.279641485865909, 51.423760688205164 ], [ -0.244320644881839, 51.432468167072216 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NWM", "NAME_1": "Newham" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.01943586577255, 51.502593085102774 ], [ -0.009347906680546, 51.533753974366391 ], [ -0.010639817873312, 51.55240916644982 ], [ 0.053283929309885, 51.562796129237938 ], [ 0.071344842190683, 51.553546048011697 ], [ 0.075685661963746, 51.533288886372986 ], [ 0.099430982653701, 51.517579250981612 ], [ 0.096872999589266, 51.497735501392242 ], [ 0.071939121393314, 51.492412827889666 ], [ 0.048271315069144, 51.4911209166969 ], [ 0.01943586577255, 51.502593085102774 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-GRE", "NAME_1": "Greenwich" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.004748703589826, 51.479597073246282 ], [ 0.003054436812818, 51.482542629938393 ], [ 0.008015374210117, 51.500526028453407 ], [ 0.048271315069144, 51.4911209166969 ], [ 0.120514966592452, 51.502799791577104 ], [ 0.121212598582531, 51.476754869341733 ], [ 0.088527255928113, 51.46685883206942 ], [ 0.088656447137339, 51.443061835435344 ], [ 0.067443271090099, 51.422597968221623 ], [ 0.042586908159251, 51.438178412403772 ], [ 0.025456170365942, 51.438023382772883 ], [ 0.015146721943665, 51.464920965729959 ], [ -0.008546921902962, 51.464920965729959 ], [ -0.026737025992986, 51.482697659569283 ], [ -0.02314551415418, 51.488692124841634 ], [ -0.004748703589826, 51.479597073246282 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-HCK", "NAME_1": "Hackney" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.087405158121555, 51.526932684995415 ], [ -0.070119390697357, 51.545458685869619 ], [ -0.094148932227426, 51.560057278120837 ], [ -0.090299037970226, 51.570986843268201 ], [ -0.052730272284236, 51.573596503176077 ], [ -0.04030209036921, 51.559902249389268 ], [ -0.010639817873312, 51.55240916644982 ], [ -0.011027390601612, 51.543469142686774 ], [ -0.06531348293089, 51.52719106741381 ], [ -0.072031418615097, 51.515977281426387 ], [ -0.087405158121555, 51.526932684995415 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BDG", "NAME_1": "Barking and Dagenham" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.152399326267869, 51.598917954999592 ], [ 0.148110182438984, 51.581709702840499 ], [ 0.15973737957637, 51.563312893175464 ], [ 0.183844434572961, 51.566232612345175 ], [ 0.19332706069531, 51.553959459161661 ], [ 0.170511915992108, 51.525149848286844 ], [ 0.166041904110557, 51.500112617303444 ], [ 0.128705682421298, 51.504556789863955 ], [ 0.096872999589266, 51.497735501392242 ], [ 0.099198438657027, 51.518199367706643 ], [ 0.080594924316301, 51.52775950819472 ], [ 0.07457461882359, 51.542073880505143 ], [ 0.125269199314062, 51.552202459975547 ], [ 0.137852409960715, 51.59173493132198 ], [ 0.152399326267869, 51.598917954999592 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-LEC", "NAME_1": "Leicestershire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.766717699162484, 52.961160387341977 ], [ -0.764469773561189, 52.943848782395378 ], [ -0.744470994340929, 52.928294175735573 ], [ -0.763100348002695, 52.894652817773306 ], [ -0.753669398723787, 52.870778306773389 ], [ -0.723619554398908, 52.865765693431968 ], [ -0.70863338941939, 52.848299058854479 ], [ -0.690598314060935, 52.816621406552656 ], [ -0.676154751440663, 52.806906236433633 ], [ -0.651065842714502, 52.747530016397093 ], [ -0.72713355097261, 52.716214098401906 ], [ -0.782479009598603, 52.718746243044677 ], [ -0.805113288047835, 52.708669339518394 ], [ -0.800100673807037, 52.595497951769005 ], [ -0.764883184711209, 52.5326077342595 ], [ -0.729898241410694, 52.506666164811634 ], [ -0.734471605180431, 52.504392401687937 ], [ -0.761162481663234, 52.499379788346516 ], [ -0.862241584281719, 52.508836575147825 ], [ -0.892549811024992, 52.47379995410455 ], [ -0.8703031071027, 52.462172756967107 ], [ -0.884488288203954, 52.446876532725753 ], [ -0.962803921164038, 52.463568020048058 ], [ -1.033626471184732, 52.444654446445497 ], [ -1.032928840093916, 52.435766100425155 ], [ -1.022257655566364, 52.432717190046276 ], [ -1.045201992378054, 52.402434800825347 ], [ -1.100599127847488, 52.424087226444328 ], [ -1.134188808966371, 52.403571682387224 ], [ -1.156693895307058, 52.378250231462971 ], [ -1.18661454932203, 52.381299140043268 ], [ -1.211703457148815, 52.415767320305577 ], [ -1.241133184748662, 52.426050930306189 ], [ -1.293378057951031, 52.479381009126257 ], [ -1.395878262072131, 52.512453925408295 ], [ -1.417246465951678, 52.535191554846335 ], [ -1.495045334974236, 52.556327216527791 ], [ -1.517834642155037, 52.574362290986926 ], [ -1.545843268252213, 52.580770169207938 ], [ -1.542251756413464, 52.600768948428197 ], [ -1.558917406213311, 52.621594549948497 ], [ -1.536696539813477, 52.629966132031313 ], [ -1.533906011852991, 52.641593329168757 ], [ -1.583076138053343, 52.684949856350784 ], [ -1.535042894314131, 52.706059678711199 ], [ -1.541399094792382, 52.745773017210922 ], [ -1.454195115811956, 52.75326610015037 ], [ -1.45251563189089, 52.766056017271353 ], [ -1.427245856011439, 52.783806870890373 ], [ -1.395335658813622, 52.789956366692934 ], [ -1.370582647770959, 52.83132335069206 ], [ -1.339189215409988, 52.849125882053784 ], [ -1.301439581671389, 52.862458401533956 ], [ -1.262811448789364, 52.861579902390531 ], [ -1.268082445448499, 52.819101874351986 ], [ -1.259762539309747, 52.799103095131727 ], [ -1.225604417409954, 52.777993272771312 ], [ -1.188190679556214, 52.772257189018035 ], [ -1.100030687066578, 52.807991441152069 ], [ -0.979495409385663, 52.807733058733675 ], [ -0.968953416067279, 52.825509752572998 ], [ -0.92448584574521, 52.849384264472178 ], [ -0.925028449003719, 52.862174180693842 ], [ -0.896167161285462, 52.867160956512919 ], [ -0.849787563045595, 52.89299917317328 ], [ -0.821132981801668, 52.929120998934934 ], [ -0.819479336302322, 52.941316636853287 ], [ -0.791703254201821, 52.957439684293945 ], [ -0.766717699162484, 52.961160387341977 ] ], [ [ -1.122070685413803, 52.565267239391574 ], [ -1.06421891876812, 52.595497951769005 ], [ -1.056674159884608, 52.623144843559658 ], [ -1.071763677651631, 52.648311265752284 ], [ -1.159820319152402, 52.655856025535115 ], [ -1.179922451160223, 52.638234361326681 ], [ -1.167390915558315, 52.575344142917857 ], [ -1.122070685413803, 52.565267239391574 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CHE", "NAME_1": "Cheshire East" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.016770595686467, 53.370437730716674 ], [ -2.018630946760766, 53.363306382983183 ], [ -1.998063726759597, 53.335762843980035 ], [ -1.990570644719469, 53.241608385318727 ], [ -1.970881923861725, 53.230187892856918 ], [ -1.976876390033397, 53.207295233787988 ], [ -2.005582648120708, 53.186056220218347 ], [ -2.030568203160044, 53.184660956238133 ], [ -2.068343675320364, 53.165747381736253 ], [ -2.138081020622622, 53.17380890635593 ], [ -2.13477372872461, 53.150244452819209 ], [ -2.157821418323806, 53.147453924858723 ], [ -2.246446498806904, 53.083840236937363 ], [ -2.305590175746033, 53.079111843536737 ], [ -2.33558834502611, 53.05603831641514 ], [ -2.365870734246982, 53.052162583736219 ], [ -2.3739064186463, 53.037176418756701 ], [ -2.366413336606229, 53.000227769795686 ], [ -2.378815680099592, 52.98955658616751 ], [ -2.423619147205898, 52.978575344176761 ], [ -2.430853847726894, 52.964932766334073 ], [ -2.449457362966939, 52.956871243513035 ], [ -2.512812669369225, 52.961625475335381 ], [ -2.527230393567834, 52.947156074293389 ], [ -2.558107061991336, 52.956302801832805 ], [ -2.5778216212708, 52.953563950715704 ], [ -2.589500495251684, 52.976870021834031 ], [ -2.622805954631133, 52.985758368753693 ], [ -2.619439628536043, 53.02856202421799 ], [ -2.667483120049951, 53.048344638793992 ], [ -2.653352680681678, 53.090735954200909 ], [ -2.489439592463214, 53.147257708976042 ], [ -2.486613504409718, 53.186822937228726 ], [ -2.44987436421053, 53.181170762020997 ], [ -2.410309135957846, 53.232040341588458 ], [ -2.421613486373303, 53.257475131372189 ], [ -2.47530915399426, 53.2829099202566 ], [ -2.509040290377129, 53.330853583426119 ], [ -2.447054408634074, 53.354986476844431 ], [ -2.428786790178208, 53.380333767089667 ], [ -2.364759691106883, 53.362427883839757 ], [ -2.316700608945951, 53.35994741514105 ], [ -2.283369310245462, 53.342170722201047 ], [ -2.238384975985866, 53.35493480090031 ], [ -2.203632574883443, 53.35382375776021 ], [ -2.176140712723736, 53.345503852520778 ], [ -2.174487067224391, 53.330750231537934 ], [ -2.159500902244872, 53.321345119781427 ], [ -2.140303106902877, 53.327701321158997 ], [ -2.130587937683174, 53.35245433220166 ], [ -2.120020106842446, 53.359378974360141 ], [ -2.080849371601232, 53.361084295803607 ], [ -2.049481776762605, 53.352170112260865 ], [ -2.03532243498239, 53.367698880498892 ], [ -2.016770595686467, 53.370437730716674 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-DBY", "NAME_1": "Derbyshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.976876390033397, 53.207295233787988 ], [ -1.970881923861725, 53.230187892856918 ], [ -1.990570644719469, 53.241608385318727 ], [ -1.998063726759597, 53.335762843980035 ], [ -2.018630946760766, 53.363306382983183 ], [ -1.981423916280733, 53.39829132808228 ], [ -2.011732143923325, 53.412450669862494 ], [ -2.01312740700422, 53.419943752801942 ], [ -1.982509120999168, 53.443818263801802 ], [ -1.963647223340672, 53.49466787392322 ], [ -1.918921270600151, 53.500765692882396 ], [ -1.897217169936425, 53.533011786864449 ], [ -1.816136847437576, 53.51606191712375 ], [ -1.795621304279791, 53.496889960203475 ], [ -1.787249722196918, 53.468571274844408 ], [ -1.731154953838086, 53.441027736740637 ], [ -1.734203864216965, 53.410797024363148 ], [ -1.701725226238182, 53.403562323842152 ], [ -1.690588954616544, 53.387439277300757 ], [ -1.646405605134589, 53.376587226519234 ], [ -1.650255500291109, 53.35188589142075 ], [ -1.581939255592204, 53.330233465801768 ], [ -1.610051235376204, 53.314937242459735 ], [ -1.610051235376204, 53.305790514020998 ], [ -1.570596279294875, 53.304937853299236 ], [ -1.531425544053604, 53.289667467479603 ], [ -1.458923509212582, 53.306875718739377 ], [ -1.431974250311384, 53.323567206061682 ], [ -1.393656174892556, 53.325220852460347 ], [ -1.382804124111033, 53.321603502199821 ], [ -1.380866257771572, 53.306875718739377 ], [ -1.359187994630247, 53.300209458999291 ], [ -1.332522955669901, 53.298814195019077 ], [ -1.311413133309486, 53.313852036841979 ], [ -1.286685959789224, 53.316900947220915 ], [ -1.277255011409636, 53.313283596061069 ], [ -1.282009243231983, 53.299382635799986 ], [ -1.242528448728933, 53.29077850972044 ], [ -1.176020880958902, 53.29292308253423 ], [ -1.160285407145807, 53.285791733901362 ], [ -1.160285407145807, 53.262175605319896 ], [ -1.195864631447591, 53.232461655980615 ], [ -1.190877854729194, 53.167711087396754 ], [ -1.309759486910821, 53.142751369879761 ], [ -1.312834234812101, 53.13102081995487 ], [ -1.291956956448416, 53.083840236937363 ], [ -1.329732427709359, 53.050198879874358 ], [ -1.321412523369247, 53.012991848495005 ], [ -1.283921271149779, 52.985758368753693 ], [ -1.271105515607076, 52.898838608814742 ], [ -1.23263241235594, 52.880700182467422 ], [ -1.245034755849304, 52.864680487814212 ], [ -1.301439581671389, 52.862458401533956 ], [ -1.370582647770959, 52.83132335069206 ], [ -1.395335658813622, 52.789956366692934 ], [ -1.427245856011439, 52.783806870890373 ], [ -1.45251563189089, 52.766056017271353 ], [ -1.454195115811956, 52.75326610015037 ], [ -1.541399094792382, 52.745773017210922 ], [ -1.535042894314131, 52.706059678711199 ], [ -1.583076138053343, 52.684949856350784 ], [ -1.599741786953928, 52.685466620288253 ], [ -1.607829149095949, 52.693838203270445 ], [ -1.621988490876163, 52.683554592370513 ], [ -1.640049403756962, 52.684949856350784 ], [ -1.645863002775343, 52.706602281070388 ], [ -1.700355800679688, 52.726135973196563 ], [ -1.672528041735745, 52.75827871439111 ], [ -1.629197353874815, 52.77217967375293 ], [ -1.615012172773561, 52.79796621446917 ], [ -1.590853440933586, 52.810781969112554 ], [ -1.608397589876859, 52.830496528392018 ], [ -1.63059261695571, 52.841064358333426 ], [ -1.720845506315072, 52.845198473430798 ], [ -1.755029465737266, 52.866024074951099 ], [ -1.823939988739482, 52.875480861752351 ], [ -1.840864020058461, 52.904678046254787 ], [ -1.840321417699272, 52.924392605534308 ], [ -1.816989508159281, 52.929947822134238 ], [ -1.812235277236255, 52.961341254495267 ], [ -1.757819992798431, 52.982451076855682 ], [ -1.745572678936014, 52.999917711433227 ], [ -1.747536382797819, 53.022164415355462 ], [ -1.76918880931612, 53.041620592216532 ], [ -1.776139288997001, 53.070766099875584 ], [ -1.77169511643649, 53.090222275837334 ], [ -1.799471197637672, 53.118566800517385 ], [ -1.803682827100772, 53.148539130476479 ], [ -1.856677008237341, 53.176341050998701 ], [ -1.932253790979701, 53.194944566238689 ], [ -1.952536790140755, 53.213806463897185 ], [ -1.976876390033397, 53.207295233787988 ] ], [ [ -1.431638352627886, 52.841839504689347 ], [ -1.397118496421456, 52.892534085179875 ], [ -1.401459316194519, 52.909794013283033 ], [ -1.421923184307502, 52.922713120713922 ], [ -1.48667375289142, 52.937802639380266 ], [ -1.538427699678607, 52.897908433727196 ], [ -1.546024136304879, 52.876359360895776 ], [ -1.494218511774932, 52.847213854136044 ], [ -1.431638352627886, 52.841839504689347 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-ROT", "NAME_1": "Rotherham" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.332522955669901, 53.298814195019077 ], [ -1.380866257771572, 53.306875718739377 ], [ -1.382804124111033, 53.321603502199821 ], [ -1.393656174892556, 53.325220852460347 ], [ -1.40605567742756, 53.444399778926652 ], [ -1.369879378830262, 53.469444908655589 ], [ -1.325354703356879, 53.477793285531675 ], [ -1.258567690146776, 53.469444908655589 ], [ -1.241870937293925, 53.433268610058292 ], [ -1.18064950806837, 53.399875103453212 ], [ -1.118065762425033, 53.378550930381095 ], [ -1.113931647327661, 53.35607168246213 ], [ -1.121088832583553, 53.345503852520778 ], [ -1.144730801385379, 53.337726548741216 ], [ -1.135015632165675, 53.325789293241257 ], [ -1.176020880958902, 53.29292308253423 ], [ -1.242528448728933, 53.29077850972044 ], [ -1.282009243231983, 53.299382635799986 ], [ -1.277255011409636, 53.313283596061069 ], [ -1.286685959789224, 53.316900947220915 ], [ -1.311413133309486, 53.313852036841979 ], [ -1.332522955669901, 53.298814195019077 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SHF", "NAME_1": "Sheffield" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.393656174892556, 53.325220852460347 ], [ -1.431974250311384, 53.323567206061682 ], [ -1.458923509212582, 53.306875718739377 ], [ -1.531425544053604, 53.289667467479603 ], [ -1.570596279294875, 53.304937853299236 ], [ -1.610051235376204, 53.305790514020998 ], [ -1.610051235376204, 53.314937242459735 ], [ -1.581939255592204, 53.330233465801768 ], [ -1.650255500291109, 53.35188589142075 ], [ -1.646405605134589, 53.376587226519234 ], [ -1.690588954616544, 53.387439277300757 ], [ -1.701725226238182, 53.403562323842152 ], [ -1.734203864216965, 53.410797024363148 ], [ -1.731154953838086, 53.441027736740637 ], [ -1.787249722196918, 53.468571274844408 ], [ -1.795621304279791, 53.496889960203475 ], [ -1.816136847437576, 53.51606191712375 ], [ -1.589719963305697, 53.497272830376801 ], [ -1.559109248692891, 53.469444908655589 ], [ -1.464494313761577, 53.469444908655589 ], [ -1.447797560908725, 53.430485817166698 ], [ -1.42831801516428, 53.411006272321572 ], [ -1.40605567742756, 53.411006272321572 ], [ -1.394924508559257, 53.383178349701041 ], [ -1.393656174892556, 53.325220852460347 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-STE", "NAME_1": "Stoke-on-Trent" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.243655971745682, 53.085855618541927 ], [ -2.204924486076209, 53.113605862220766 ], [ -2.19182450969339, 53.083736884149857 ], [ -2.148933071404144, 53.051542467011245 ], [ -2.098160977447151, 52.989117337495088 ], [ -2.090357835245925, 52.965707912689993 ], [ -2.09524125827744, 52.949119778155193 ], [ -2.11185523123396, 52.940334784922356 ], [ -2.144049648372572, 52.938371080161176 ], [ -2.178156094328301, 52.945218207054609 ], [ -2.201539678913036, 52.963744207928812 ], [ -2.243655971745682, 53.085855618541927 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-TFW", "NAME_1": "Telford and Wrekin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.396592373039596, 52.821582343050693 ], [ -2.368377041367353, 52.806906236433633 ], [ -2.360289679225332, 52.793832099371855 ], [ -2.36894548214832, 52.781894842972576 ], [ -2.323961146989348, 52.747736721072783 ], [ -2.424575160715108, 52.607021796118943 ], [ -2.460774501741867, 52.617202053332051 ], [ -2.640556810048736, 52.721226711743327 ], [ -2.663165249176927, 52.742724106832043 ], [ -2.646189541014508, 52.758537095910242 ], [ -2.588544480843098, 52.767580471561473 ], [ -2.396592373039596, 52.821582343050693 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-STS", "NAME_1": "Staffordshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.323961146989348, 52.747736721072783 ], [ -2.36894548214832, 52.781894842972576 ], [ -2.360289679225332, 52.793832099371855 ], [ -2.368377041367353, 52.806906236433633 ], [ -2.400855679346137, 52.823830267752612 ], [ -2.378092209687736, 52.838015448853866 ], [ -2.365870734246982, 52.884110826253618 ], [ -2.434471197987421, 52.867987778812903 ], [ -2.449457362966939, 52.885506090233832 ], [ -2.442558560129442, 52.912687893131761 ], [ -2.419174973746067, 52.93635569945593 ], [ -2.395042080327755, 52.949378160573644 ], [ -2.375301682626571, 52.949662381413759 ], [ -2.363932867907522, 52.967723294294558 ], [ -2.364217087848317, 52.980228990575426 ], [ -2.378815680099592, 52.98955658616751 ], [ -2.366413336606229, 53.000227769795686 ], [ -2.3739064186463, 53.037176418756701 ], [ -2.365870734246982, 53.052162583736219 ], [ -2.33558834502611, 53.05603831641514 ], [ -2.305590175746033, 53.079111843536737 ], [ -2.272258877045545, 53.077432358716351 ], [ -2.243655971745682, 53.085855618541927 ], [ -2.201539678913036, 52.963744207928812 ], [ -2.178156094328301, 52.945218207054609 ], [ -2.11185523123396, 52.940334784922356 ], [ -2.09524125827744, 52.949119778155193 ], [ -2.090357835245925, 52.965707912689993 ], [ -2.098160977447151, 52.989117337495088 ], [ -2.148933071404144, 53.051542467011245 ], [ -2.19182450969339, 53.083736884149857 ], [ -2.204924486076209, 53.113605862220766 ], [ -2.157821418323806, 53.147453924858723 ], [ -2.13477372872461, 53.150244452819209 ], [ -2.138081020622622, 53.17380890635593 ], [ -2.068343675320364, 53.165747381736253 ], [ -2.030568203160044, 53.184660956238133 ], [ -2.005582648120708, 53.186056220218347 ], [ -1.976876390033397, 53.207295233787988 ], [ -1.952536790140755, 53.213806463897185 ], [ -1.932253790979701, 53.194944566238689 ], [ -1.824198371157934, 53.163008531518472 ], [ -1.803682827100772, 53.148539130476479 ], [ -1.799471197637672, 53.118566800517385 ], [ -1.77169511643649, 53.090222275837334 ], [ -1.776139288997001, 53.070766099875584 ], [ -1.76918880931612, 53.041620592216532 ], [ -1.747536382797819, 53.022164415355462 ], [ -1.745572678936014, 52.999917711433227 ], [ -1.757819992798431, 52.982451076855682 ], [ -1.812235277236255, 52.961341254495267 ], [ -1.816989508159281, 52.929947822134238 ], [ -1.840321417699272, 52.924392605534308 ], [ -1.840864020058461, 52.904678046254787 ], [ -1.823939988739482, 52.875480861752351 ], [ -1.755029465737266, 52.866024074951099 ], [ -1.720845506315072, 52.845198473430798 ], [ -1.63059261695571, 52.841064358333426 ], [ -1.608397589876859, 52.830496528392018 ], [ -1.590853440933586, 52.810781969112554 ], [ -1.615012172773561, 52.79796621446917 ], [ -1.629197353874815, 52.77217967375293 ], [ -1.672528041735745, 52.75827871439111 ], [ -1.700355800679688, 52.726135973196563 ], [ -1.645863002775343, 52.706602281070388 ], [ -1.640049403756962, 52.684949856350784 ], [ -1.621988490876163, 52.683554592370513 ], [ -1.607829149095949, 52.693838203270445 ], [ -1.599741786953928, 52.685466620288253 ], [ -1.583076138053343, 52.684949856350784 ], [ -1.580027227674407, 52.676888333529746 ], [ -1.600852830094027, 52.656062731110126 ], [ -1.63116105773662, 52.642730210730633 ], [ -1.623926357215623, 52.626038723408328 ], [ -1.634778407997146, 52.588004868829614 ], [ -1.665577562054864, 52.57575755496714 ], [ -1.777715420130562, 52.575344142917857 ], [ -1.789756029317289, 52.587178046529573 ], [ -1.815051641819821, 52.590795396790099 ], [ -1.861431240059687, 52.576894436529017 ], [ -1.896416185158841, 52.617434597328781 ], [ -1.897217169936425, 52.649396471370039 ], [ -1.934475877259956, 52.665209459548919 ], [ -1.946981574440144, 52.658827419749571 ], [ -1.945870531299988, 52.642988593149028 ], [ -1.952536790140755, 52.637459214970761 ], [ -2.025891485703539, 52.616065171770231 ], [ -2.050877040742819, 52.617434597328781 ], [ -2.066431647402624, 52.608003648049873 ], [ -2.097540858923537, 52.634100247128686 ], [ -2.13113054004242, 52.629397691250404 ], [ -2.144178839581798, 52.612732042349876 ], [ -2.180584886183567, 52.599942125228893 ], [ -2.200583665403826, 52.579374905227667 ], [ -2.174487067224391, 52.567437648828388 ], [ -2.157537196584371, 52.546353664889693 ], [ -2.126143765122663, 52.544389960128512 ], [ -2.134489507884496, 52.515218614047797 ], [ -2.17753597670395, 52.501059272267582 ], [ -2.158932460564586, 52.477417304365076 ], [ -2.1538681712791, 52.422950343983189 ], [ -2.171128099382315, 52.421606756846302 ], [ -2.286159837306684, 52.444576931180393 ], [ -2.283369310245462, 52.454679674027716 ], [ -2.298355475225037, 52.483825181686768 ], [ -2.284196133444823, 52.504960842468904 ], [ -2.25502478736405, 52.518293361949077 ], [ -2.25254431776608, 52.534364732546351 ], [ -2.267246262804804, 52.548265692807433 ], [ -2.251149053785809, 52.562425035486967 ], [ -2.269209966666665, 52.577462877309927 ], [ -2.310576950665734, 52.591312160727625 ], [ -2.311429613186135, 52.599115302029531 ], [ -2.303368088566458, 52.608830471249235 ], [ -2.266419439605443, 52.603559475489362 ], [ -2.236963873583932, 52.612447822409024 ], [ -2.226964484423434, 52.636632391771457 ], [ -2.228359748403648, 52.658827419749571 ], [ -2.243655971745682, 52.676061510330385 ], [ -2.304763353445992, 52.686603501850129 ], [ -2.310292730724939, 52.700504462111212 ], [ -2.305590175746033, 52.733835760811701 ], [ -2.323961146989348, 52.747736721072783 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BRY", "NAME_1": "Bromley" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.166248609685567, 51.398516750747433 ], [ 0.169142490433558, 51.388543199109336 ], [ 0.155241530172475, 51.354695136471321 ], [ 0.096640455592535, 51.311028550926835 ], [ 0.093824090109649, 51.288290921488795 ], [ 0.068838535070313, 51.28245148404875 ], [ 0.048322991912528, 51.294957180329561 ], [ 0.022484775252167, 51.289660346148025 ], [ 0.016309441927206, 51.318521633866283 ], [ -0.018830531903518, 51.369784654238401 ], [ -0.056993576792138, 51.39303904941255 ], [ -0.076294724921638, 51.415854194115752 ], [ -0.018675503171949, 51.418463854023628 ], [ 0.004372186427247, 51.411229153502632 ], [ 0.021296216846906, 51.421822821865703 ], [ 0.043232863306002, 51.420685940303883 ], [ 0.025456170365942, 51.438023382772883 ], [ 0.03716088186917, 51.439237778700488 ], [ 0.063955112038798, 51.423063056215028 ], [ 0.080310702576867, 51.431537991085406 ], [ 0.108784416667504, 51.413657945357841 ], [ 0.13759402844164, 51.412185167011842 ], [ 0.166248609685567, 51.398516750747433 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WOR", "NAME_1": "Worcestershire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757819992798431, 52.105760403519753 ], [ -1.778361375277257, 52.098835761361272 ], [ -1.813914761157321, 52.068837592081195 ], [ -1.843086107238094, 52.072997544700911 ], [ -1.863343267977427, 52.062713934700298 ], [ -1.827815721418403, 52.034395250240607 ], [ -1.831975674038119, 52.007988592799279 ], [ -1.878897873737913, 52.027987372019595 ], [ -1.942253180140142, 52.03020945919917 ], [ -1.970881923861725, 52.026075344101798 ], [ -2.030852424000159, 51.999927069978298 ], [ -2.105860765062289, 52.007730211280204 ], [ -2.130019496902264, 51.995224514100016 ], [ -2.143326177960773, 52.006283271355869 ], [ -2.114929979135241, 52.042146714699072 ], [ -2.164771898004688, 52.040493069199783 ], [ -2.176347419198066, 52.007316800130184 ], [ -2.159965990238277, 51.994914455737501 ], [ -2.174745448743465, 51.987731432059888 ], [ -2.208076748343274, 51.990780341539505 ], [ -2.23419918494443, 51.964115302579103 ], [ -2.307812262026289, 51.973572089380411 ], [ -2.341686163985287, 52.014964910901881 ], [ -2.3515822012576, 52.013931383026886 ], [ -2.349773525227988, 52.106690579506619 ], [ -2.360082973650321, 52.122141832479542 ], [ -2.392225714844869, 52.13115936970911 ], [ -2.405093146331637, 52.142709052480768 ], [ -2.406385056625084, 52.205754300520539 ], [ -2.41537675633225, 52.219861966356632 ], [ -2.457828945049812, 52.230171413879646 ], [ -2.447519496627478, 52.258464259917616 ], [ -2.488679775051594, 52.264872138138628 ], [ -2.527256231989497, 52.243038845366414 ], [ -2.606967128929853, 52.241746935072968 ], [ -2.618542650123231, 52.252056383495301 ], [ -2.61598466615942, 52.277739570524716 ], [ -2.63141008071068, 52.29189891230493 ], [ -2.640892706832972, 52.332206529108021 ], [ -2.616423915731161, 52.324093329443599 ], [ -2.607793952129214, 52.307996121323924 ], [ -2.597820399591797, 52.305231431785103 ], [ -2.555600754870966, 52.308538722783794 ], [ -2.546970791269018, 52.33024282524616 ], [ -2.525318365650037, 52.339673774525068 ], [ -2.474468757327315, 52.327142238923159 ], [ -2.467828335109573, 52.337167467404697 ], [ -2.474210374009544, 52.35049998598555 ], [ -2.469766201449033, 52.357166245725637 ], [ -2.410286627725725, 52.363264065584133 ], [ -2.390597906867924, 52.383572903166908 ], [ -2.319516974428836, 52.384606431941279 ], [ -2.350522834061564, 52.423725491238429 ], [ -2.339515753649096, 52.434370836444941 ], [ -2.304763353445992, 52.430753486184415 ], [ -2.286159837306684, 52.444576931180393 ], [ -2.171128099382315, 52.421606756846302 ], [ -2.118909063702347, 52.422175198526588 ], [ -2.082813076362413, 52.436024481944287 ], [ -2.058370123682266, 52.422433580045663 ], [ -2.047543911322464, 52.43411245402649 ], [ -2.030568203160044, 52.436902981087655 ], [ -2.021679857139702, 52.424397284806844 ], [ -2.006693691260864, 52.427446194286404 ], [ -1.983077561780078, 52.417731025066701 ], [ -2.001965297860238, 52.39271963250502 ], [ -1.995841641378661, 52.378818671344561 ], [ -1.900576137778557, 52.39271963250502 ], [ -1.844481370318988, 52.383572903166908 ], [ -1.85280127555842, 52.362437242384829 ], [ -1.876985845820116, 52.344660550344088 ], [ -1.851406011578206, 52.323266507143558 ], [ -1.847530279798605, 52.309933986764065 ], [ -1.868097499799774, 52.298823554463468 ], [ -1.882799444838497, 52.274122219364926 ], [ -1.920058153061348, 52.266060696543889 ], [ -1.902849900902197, 52.230507311563144 ], [ -1.902255621699567, 52.210508531443566 ], [ -1.944475267319717, 52.164671536462208 ], [ -1.890912645402295, 52.133613999986096 ], [ -1.875280524376706, 52.149426988164919 ], [ -1.840864020058461, 52.136042791841362 ], [ -1.828900926136839, 52.142450670062374 ], [ -1.787249722196918, 52.129376533000595 ], [ -1.781410284756873, 52.116612454301276 ], [ -1.757819992798431, 52.105760403519753 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WAR", "NAME_1": "Warwickshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.657257655916112, 52.026902167301159 ], [ -1.674465908075206, 52.031062119920875 ], [ -1.715884568917716, 52.084934801100189 ], [ -1.736994391278131, 52.08937897456002 ], [ -1.763349371876018, 52.112168280841445 ], [ -1.781410284756873, 52.116612454301276 ], [ -1.787249722196918, 52.129376533000595 ], [ -1.828900926136839, 52.142450670062374 ], [ -1.840864020058461, 52.136042791841362 ], [ -1.875280524376706, 52.149426988164919 ], [ -1.890912645402295, 52.133613999986096 ], [ -1.944475267319717, 52.164671536462208 ], [ -1.902255621699567, 52.210508531443566 ], [ -1.902849900902197, 52.230507311563144 ], [ -1.920058153061348, 52.266060696543889 ], [ -1.882799444838497, 52.274122219364926 ], [ -1.868097499799774, 52.298823554463468 ], [ -1.847530279798605, 52.309933986764065 ], [ -1.851406011578206, 52.323266507143558 ], [ -1.876985845820116, 52.344660550344088 ], [ -1.85280127555842, 52.362437242384829 ], [ -1.844481370318988, 52.383572903166908 ], [ -1.759215256778702, 52.337167467404697 ], [ -1.751696336316854, 52.347451077405253 ], [ -1.714747687355896, 52.355202541863775 ], [ -1.682527431795563, 52.342438463164513 ], [ -1.640049403756962, 52.350784206825665 ], [ -1.601395433352593, 52.361868800704542 ], [ -1.589458176953315, 52.37437449788473 ], [ -1.562793137992912, 52.372152412503794 ], [ -1.536954922231871, 52.355770981745366 ], [ -1.510884161574779, 52.36744985572625 ], [ -1.462799241891503, 52.365796210226904 ], [ -1.43169002857195, 52.383572903166908 ], [ -1.442800461771924, 52.435197658744926 ], [ -1.619456346233392, 52.444396064027103 ], [ -1.661701829375943, 52.424655667225238 ], [ -1.741128506375503, 52.497467760428776 ], [ -1.733377041017661, 52.51162710220899 ], [ -1.777715420130562, 52.575344142917857 ], [ -1.643356695654973, 52.579943346008577 ], [ -1.623926357215623, 52.626038723408328 ], [ -1.63116105773662, 52.642730210730633 ], [ -1.600852830094027, 52.656062731110126 ], [ -1.580027227674407, 52.676888333529746 ], [ -1.533906011852991, 52.641593329168757 ], [ -1.536696539813477, 52.629966132031313 ], [ -1.558917406213311, 52.621594549948497 ], [ -1.542251756413464, 52.600768948428197 ], [ -1.545843268252213, 52.580770169207938 ], [ -1.517834642155037, 52.574362290986926 ], [ -1.495045334974236, 52.556327216527791 ], [ -1.417246465951678, 52.535191554846335 ], [ -1.395878262072131, 52.512453925408295 ], [ -1.293378057951031, 52.479381009126257 ], [ -1.241133184748662, 52.426050930306189 ], [ -1.211703457148815, 52.415767320305577 ], [ -1.165272182964884, 52.34799367886518 ], [ -1.249478929309134, 52.319649155983711 ], [ -1.241675788007228, 52.311045029904164 ], [ -1.202556728710078, 52.301329861583838 ], [ -1.224209154329003, 52.282442125503678 ], [ -1.208912930087649, 52.27241689702214 ], [ -1.208086106888345, 52.249937649103174 ], [ -1.265860358268924, 52.22771678270334 ], [ -1.245293138267755, 52.205754300520539 ], [ -1.24865210610983, 52.195212307202212 ], [ -1.317536789791006, 52.170769355421385 ], [ -1.341411301690243, 52.134389147241336 ], [ -1.373631558149896, 52.118266099800621 ], [ -1.35112647090989, 52.104365139539539 ], [ -1.357792730650033, 52.095218411100745 ], [ -1.379470993791358, 52.091885280781071 ], [ -1.407531296731975, 52.107724107381614 ], [ -1.42616065129306, 52.108809312999369 ], [ -1.437529466012052, 52.10746572496322 ], [ -1.440578376390988, 52.090774238540234 ], [ -1.470292323931631, 52.088552151360659 ], [ -1.495329555814351, 52.060750230838437 ], [ -1.495897995695941, 52.040493069199783 ], [ -1.518093023674112, 51.988274034419135 ], [ -1.545584885833819, 51.984682522580329 ], [ -1.549770676875255, 51.96910207839818 ], [ -1.586176724376344, 51.967164212058719 ], [ -1.593359748053956, 51.955795397339671 ], [ -1.603953416417028, 51.954916897296926 ], [ -1.652529263414806, 51.983933213746809 ], [ -1.61227332165646, 52.026592108938644 ], [ -1.657257655916112, 52.026902167301159 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-OXF", "NAME_1": "Oxfordshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.649273646561539, 51.673745428908376 ], [ -1.647232428333893, 51.686354478876069 ], [ -1.676119553574551, 51.704673774175319 ], [ -1.692526820956004, 51.762448025555898 ], [ -1.709218309177629, 51.774927884314366 ], [ -1.679194302375151, 51.797148748915617 ], [ -1.675861172055477, 51.855233059558032 ], [ -1.657800259174621, 51.882983303236813 ], [ -1.637517259114247, 51.893835354018336 ], [ -1.646147222716138, 51.90995840145905 ], [ -1.612790085593986, 51.931610826178655 ], [ -1.618939582295923, 51.944943346558148 ], [ -1.656921759131876, 51.959102688338362 ], [ -1.652529263414806, 51.983933213746809 ], [ -1.603953416417028, 51.954916897296926 ], [ -1.593359748053956, 51.955795397339671 ], [ -1.586176724376344, 51.967164212058719 ], [ -1.549770676875255, 51.96910207839818 ], [ -1.545584885833819, 51.984682522580329 ], [ -1.518093023674112, 51.988274034419135 ], [ -1.509747280012959, 51.998273424478953 ], [ -1.495329555814351, 52.060750230838437 ], [ -1.470292323931631, 52.088552151360659 ], [ -1.440578376390988, 52.090774238540234 ], [ -1.437529466012052, 52.10746572496322 ], [ -1.42616065129306, 52.108809312999369 ], [ -1.407531296731975, 52.107724107381614 ], [ -1.379470993791358, 52.091885280781071 ], [ -1.357792730650033, 52.095218411100745 ], [ -1.35112647090989, 52.104365139539539 ], [ -1.373631558149896, 52.118266099800621 ], [ -1.341411301690243, 52.134389147241336 ], [ -1.321231655316637, 52.161519273295823 ], [ -1.237231615446717, 52.096045234300107 ], [ -1.306710578330524, 52.077441718160742 ], [ -1.293946498731941, 52.071343899201565 ], [ -1.296711188270706, 52.038839422801118 ], [ -1.26503353506962, 51.979669908339588 ], [ -1.183668992629919, 51.978274645258637 ], [ -1.138374600007808, 51.98969513592175 ], [ -1.108195562675064, 52.00917715120454 ], [ -1.053082648045802, 51.992718206979646 ], [ -1.082512375645649, 51.952436427698956 ], [ -1.0472432106057, 51.939672349899013 ], [ -1.075846116804883, 51.919389349838582 ], [ -1.081711391767328, 51.897711086697257 ], [ -1.062797817265448, 51.878539129776982 ], [ -1.062797817265448, 51.862441922556627 ], [ -1.0472432106057, 51.83301219315814 ], [ -1.069515753848975, 51.823813787875963 ], [ -1.116153733607916, 51.837973131454817 ], [ -1.128349372425589, 51.827431139035809 ], [ -1.113621588965145, 51.813840237137185 ], [ -1.108660650668526, 51.779682115237392 ], [ -1.079747687006147, 51.772990017075585 ], [ -1.065898402689129, 51.751337592355981 ], [ -1.040292730924818, 51.743250231113223 ], [ -1.018071865424247, 51.75244863549608 ], [ -0.965568609803483, 51.756065985756607 ], [ -0.911980150363661, 51.740511379996178 ], [ -0.884488288203954, 51.716326808835106 ], [ -0.876400926061876, 51.700513821555603 ], [ -0.883093024223683, 51.684390774114888 ], [ -0.874178839781621, 51.668009345155156 ], [ -0.921411098743249, 51.667182521955795 ], [ -0.92639787366295, 51.648553168294029 ], [ -0.942262538685213, 51.64496165645528 ], [ -0.930583664704386, 51.634678046454667 ], [ -0.944484625864789, 51.619123439794862 ], [ -0.933064134302356, 51.600209866192358 ], [ -0.910843267902521, 51.597160955813422 ], [ -0.9319789286846, 51.570495916853076 ], [ -0.88707210879079, 51.548094184199215 ], [ -0.873248663794811, 51.507476508134289 ], [ -0.906864183335415, 51.476444810979217 ], [ -0.987221035422465, 51.453087063017506 ], [ -1.041584642117527, 51.482180894732494 ], [ -1.123155890132239, 51.503109849939619 ], [ -1.146565314038014, 51.530524196834165 ], [ -1.184211594989108, 51.523005276372373 ], [ -1.226922166125064, 51.533288886372986 ], [ -1.264439255866989, 51.532410387229561 ], [ -1.30725317979045, 51.553287664693926 ], [ -1.338930832991537, 51.537164619051907 ], [ -1.365595871951939, 51.54494192193215 ], [ -1.388075119870905, 51.536027737490087 ], [ -1.418357509991097, 51.540213528531467 ], [ -1.4488982807311, 51.532720444692757 ], [ -1.486699591313084, 51.54687978827161 ], [ -1.534216071114827, 51.55049713853208 ], [ -1.567521532292915, 51.545794583553175 ], [ -1.584523077977678, 51.517372545406602 ], [ -1.602790697332807, 51.520214749311208 ], [ -1.646715664396424, 51.568532212991215 ], [ -1.67529273127451, 51.572718004032652 ], [ -1.677799038394937, 51.599667262933792 ], [ -1.659738124614762, 51.611061916973881 ], [ -1.654467128854947, 51.631887519393501 ], [ -1.683922694876458, 51.650491035532809 ], [ -1.686687384415279, 51.669094549873535 ], [ -1.683328415673827, 51.678603014417547 ], [ -1.649273646561539, 51.673745428908376 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WGN", "NAME_1": "Wigan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.690036993712283, 53.471620185223344 ], [ -2.752022873656699, 53.511100978827074 ], [ -2.713033005568775, 53.529962877384833 ], [ -2.692543300832654, 53.56076203144255 ], [ -2.696419032612255, 53.575774033944469 ], [ -2.686703864291928, 53.59967438426537 ], [ -2.635027431870469, 53.606857407942982 ], [ -2.616139695790366, 53.59548859322399 ], [ -2.590017259189153, 53.6130069037456 ], [ -2.558908046768977, 53.59910594348446 ], [ -2.518849682466907, 53.555915310643059 ], [ -2.485036587268723, 53.462163398422092 ], [ -2.522243617748757, 53.462421779941167 ], [ -2.566426968130088, 53.435601712249195 ], [ -2.599732428408856, 53.458287664843851 ], [ -2.603918218550973, 53.472447008422648 ], [ -2.649470993591478, 53.472447008422648 ], [ -2.675050827833445, 53.480766912762761 ], [ -2.690036993712283, 53.471620185223344 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SKP", "NAME_1": "Stockport" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.011732143923325, 53.412450669862494 ], [ -1.981423916280733, 53.39829132808228 ], [ -2.004471604980608, 53.374106756921265 ], [ -2.03532243498239, 53.367698880498892 ], [ -2.049481776762605, 53.352170112260865 ], [ -2.080849371601232, 53.361084295803607 ], [ -2.120020106842446, 53.359378974360141 ], [ -2.130587937683174, 53.35245433220166 ], [ -2.140303106902877, 53.327701321158997 ], [ -2.159500902244872, 53.321345119781427 ], [ -2.174487067224391, 53.330750231537934 ], [ -2.176140712723736, 53.345503852520778 ], [ -2.203632574883443, 53.35382375776021 ], [ -2.238384975985866, 53.35493480090031 ], [ -2.260321620646266, 53.344935410840492 ], [ -2.266425855368936, 53.370373010106277 ], [ -2.234063826184638, 53.400577570198664 ], [ -2.225433951615571, 53.437254536667524 ], [ -2.12403292767749, 53.409207444767731 ], [ -2.011732143923325, 53.412450669862494 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WRT", "NAME_1": "Warrington" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.666162481813103, 53.441027736740637 ], [ -2.616139695790366, 53.430485745220949 ], [ -2.566426968130088, 53.435601712249195 ], [ -2.522243617748757, 53.462421779941167 ], [ -2.485036587268723, 53.462163398422092 ], [ -2.446692674327494, 53.418806871240065 ], [ -2.444470588047238, 53.407179674102679 ], [ -2.460567796166856, 53.388266100500118 ], [ -2.428786790178208, 53.380333767089667 ], [ -2.447054408634074, 53.354986476844431 ], [ -2.53159705176256, 53.319562283072855 ], [ -2.569450039187984, 53.312301744130139 ], [ -2.605675217737144, 53.338088283947116 ], [ -2.662855189915092, 53.357415270498336 ], [ -2.680580206911031, 53.378809312799547 ], [ -2.648127407353968, 53.391340847502079 ], [ -2.645026821030967, 53.401598619080971 ], [ -2.661976690771667, 53.410228583582239 ], [ -2.670865036792009, 53.431054186001859 ], [ -2.666162481813103, 53.441027736740637 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WBK", "NAME_1": "West Berkshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.031972825685386, 51.354695136471321 ], [ -1.077525600725892, 51.376347561190983 ], [ -1.111141120266495, 51.371334946950242 ], [ -1.110572678586266, 51.357433986689102 ], [ -1.120029466286837, 51.354695136471321 ], [ -1.245293138267755, 51.368854479150855 ], [ -1.399469773910937, 51.370508123750881 ], [ -1.436702642812747, 51.352421373347681 ], [ -1.427555915273274, 51.340225735429328 ], [ -1.433085292552221, 51.334670518829341 ], [ -1.487009649675599, 51.332448432549086 ], [ -1.498120082875516, 51.36606395119037 ], [ -1.533389247915466, 51.377432765909418 ], [ -1.563361578773879, 51.412159329489441 ], [ -1.521968757252353, 51.425750231388065 ], [ -1.521141934053048, 51.434121813470881 ], [ -1.528376633674725, 51.451330063831335 ], [ -1.550597500074559, 51.461355292312874 ], [ -1.576409878313257, 51.48884715447258 ], [ -1.584523077977678, 51.517372545406602 ], [ -1.567521532292915, 51.545794583553175 ], [ -1.534216071114827, 51.55049713853208 ], [ -1.486699591313084, 51.54687978827161 ], [ -1.4488982807311, 51.532720444692757 ], [ -1.418357509991097, 51.540213528531467 ], [ -1.388075119870905, 51.536027737490087 ], [ -1.365595871951939, 51.54494192193215 ], [ -1.338930832991537, 51.537164619051907 ], [ -1.30725317979045, 51.553287664693926 ], [ -1.264439255866989, 51.532410387229561 ], [ -1.226922166125064, 51.533288886372986 ], [ -1.184211594989108, 51.523005276372373 ], [ -1.146565314038014, 51.530524196834165 ], [ -1.123155890132239, 51.503109849939619 ], [ -1.081117112564698, 51.489105535991655 ], [ -1.083769525343314, 51.433933349744279 ], [ -1.053516998110979, 51.411931512329431 ], [ -1.037015620274644, 51.384429215336013 ], [ -1.031972825685386, 51.354695136471321 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WOK", "NAME_1": "Wokingham" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.966731329787024, 51.357175605170028 ], [ -0.996419439805322, 51.362162380989048 ], [ -1.031972825685386, 51.354695136471321 ], [ -1.037015620274644, 51.384429215336013 ], [ -1.053516998110979, 51.411931512329431 ], [ -0.984761255627461, 51.422932430587196 ], [ -0.964535081029169, 51.454689033472107 ], [ -0.906864183335415, 51.476444810979217 ], [ -0.880483364315808, 51.497477118973848 ], [ -0.873248663794811, 51.507476508134289 ], [ -0.88707210879079, 51.548094184199215 ], [ -0.846325243315334, 51.542487290755844 ], [ -0.830748392824091, 51.505439321567394 ], [ -0.827998162585118, 51.469686335655865 ], [ -0.81149678474884, 51.436683579083876 ], [ -0.814247014088437, 51.398180363832694 ], [ -0.85290433087016, 51.350076339851171 ], [ -0.919189011563617, 51.360224513750268 ], [ -0.966731329787024, 51.357175605170028 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BRC", "NAME_1": "Bracknell Forest" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.76529659676055, 51.331337389408986 ], [ -0.819737717821454, 51.348829861508875 ], [ -0.85290433087016, 51.350076339851171 ], [ -0.814247014088437, 51.398180363832694 ], [ -0.81149678474884, 51.436683579083876 ], [ -0.827998162585118, 51.469686335655865 ], [ -0.712488515032931, 51.453184957819531 ], [ -0.682235988699915, 51.431183120404683 ], [ -0.679485759360318, 51.403680823411264 ], [ -0.715238745271904, 51.39267990425418 ], [ -0.698659836881973, 51.366890774389674 ], [ -0.720854864860144, 51.363841864910114 ], [ -0.76529659676055, 51.331337389408986 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WNM", "NAME_1": "Royal Borough of Windsor and Maidenhead" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.718968675364067, 51.563338730697865 ], [ -0.685585699820194, 51.549308580126819 ], [ -0.701321172733969, 51.50714061135011 ], [ -0.661685350398614, 51.491586004690362 ], [ -0.603586392498016, 51.49408600486521 ], [ -0.579090949987346, 51.475531317416312 ], [ -0.575721604868193, 51.445645656921499 ], [ -0.598924323198958, 51.403555203409894 ], [ -0.619749924719258, 51.387716375909974 ], [ -0.698659836881973, 51.366890774389674 ], [ -0.715238745271904, 51.39267990425418 ], [ -0.679485759360318, 51.403680823411264 ], [ -0.682235988699915, 51.431183120404683 ], [ -0.712488515032931, 51.453184957819531 ], [ -0.827998162585118, 51.469686335655865 ], [ -0.830748392824091, 51.505439321567394 ], [ -0.846325243315334, 51.542487290755844 ], [ -0.718968675364067, 51.563338730697865 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SLG", "NAME_1": "Slough" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.616701016139018, 51.530188300049986 ], [ -0.585591802819465, 51.520473130830283 ], [ -0.568641933978085, 51.527139391469689 ], [ -0.557557339199832, 51.504117540292214 ], [ -0.523605922875049, 51.506313788150749 ], [ -0.512805548037647, 51.475773017410802 ], [ -0.518360764637578, 51.439392809230753 ], [ -0.531641608173686, 51.433656725477476 ], [ -0.575721604868193, 51.445645656921499 ], [ -0.579090949987346, 51.475531317416312 ], [ -0.590484178601969, 51.487331446988662 ], [ -0.636183031421751, 51.493704739082432 ], [ -0.649748093999335, 51.519956366892814 ], [ -0.616701016139018, 51.530188300049986 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-RDG", "NAME_1": "Reading" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.081117112564698, 51.489105535991655 ], [ -1.041584642117527, 51.482180894732494 ], [ -0.987221035422465, 51.453087063017506 ], [ -0.964535081029169, 51.454689033472107 ], [ -0.984761255627461, 51.422932430587196 ], [ -1.053516998110979, 51.411931512329431 ], [ -1.083769525343314, 51.433933349744279 ], [ -1.081117112564698, 51.489105535991655 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SRY", "NAME_1": "Surrey" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.441440395657764, 51.453862210272746 ], [ -0.431725226438061, 51.430194403948576 ], [ -0.400305954755993, 51.424949245711105 ], [ -0.349172125593157, 51.398465073903992 ], [ -0.311706711795296, 51.392444770209977 ], [ -0.298064133952607, 51.370508123750881 ], [ -0.315014003693307, 51.347150376688489 ], [ -0.312249315053862, 51.324102687988614 ], [ -0.293361578973702, 51.32885691981096 ], [ -0.268350186411965, 51.361619777730539 ], [ -0.243106248054914, 51.373557034129817 ], [ -0.218069017071514, 51.352989814128591 ], [ -0.219464281051728, 51.32828847903005 ], [ -0.178355678571734, 51.339114692289172 ], [ -0.151148037252142, 51.302992866527518 ], [ -0.128100347652946, 51.289117743788836 ], [ -0.101952074428709, 51.292735094049306 ], [ -0.084743822269616, 51.311028550926835 ], [ -0.046709966791525, 51.315472724386723 ], [ -0.026711187571266, 51.330768947728757 ], [ 0.000005527333201, 51.32945119901359 ], [ 0.016309441927206, 51.318521633866283 ], [ 0.022484775252167, 51.289660346148025 ], [ 0.048322991912528, 51.294957180329561 ], [ 0.054420810871704, 51.28994456608882 ], [ 0.063851759251293, 51.242195543189723 ], [ 0.044395583289543, 51.20994944920767 ], [ 0.060260247412486, 51.181604926326258 ], [ 0.062740716111136, 51.135845444811423 ], [ -0.053376227430988, 51.135225328086392 ], [ -0.076139696190012, 51.141323147045568 ], [ -0.119186164110204, 51.134398504887088 ], [ -0.136136033850903, 51.138015856046877 ], [ -0.141432868032439, 51.152175197827091 ], [ -0.181973028832203, 51.161321926265884 ], [ -0.302508307412495, 51.116621812846347 ], [ -0.351678432713527, 51.114968167347001 ], [ -0.503064541295544, 51.085770981945245 ], [ -0.521151291698743, 51.088819892324125 ], [ -0.541408454236773, 51.079104723104479 ], [ -0.601689011838459, 51.076055812725542 ], [ -0.626700405299459, 51.084375718864294 ], [ -0.688066169418221, 51.070784816965727 ], [ -0.753695238044827, 51.088664862693236 ], [ -0.74700313988302, 51.111299140243091 ], [ -0.780024380220993, 51.123546454105565 ], [ -0.790850591681476, 51.146904202067219 ], [ -0.823639288922038, 51.151606757046181 ], [ -0.824466112121399, 51.182715969466415 ], [ -0.840020717881828, 51.203851630248494 ], [ -0.829194504622706, 51.226020819804944 ], [ -0.799480557082063, 51.239120795288443 ], [ -0.748398402963915, 51.231601873927332 ], [ -0.731138474860757, 51.243849188689069 ], [ -0.725299038319974, 51.269635729405366 ], [ -0.729743210880486, 51.291598212487486 ], [ -0.76529659676055, 51.331337389408986 ], [ -0.720854864860144, 51.363841864910114 ], [ -0.619749924719258, 51.387716375909974 ], [ -0.598924323198958, 51.403555203409894 ], [ -0.575721604868193, 51.445645656921499 ], [ -0.531641608173686, 51.433656725477476 ], [ -0.518360764637578, 51.439392809230753 ], [ -0.512805548037647, 51.475773017410802 ], [ -0.497199266333098, 51.477788398116047 ], [ -0.473660651218097, 51.458823146770783 ], [ -0.441440395657764, 51.453862210272746 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BBD", "NAME_1": "Blackburn with Darwen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.446563483118268, 53.772583727257199 ], [ -2.418141444971695, 53.765504055467773 ], [ -2.356620653020741, 53.664579983379497 ], [ -2.360289679225332, 53.649387111925648 ], [ -2.376438564188391, 53.634917710883599 ], [ -2.434471197987421, 53.644116116165776 ], [ -2.463642544068136, 53.624117336945517 ], [ -2.504441087286352, 53.627011216794187 ], [ -2.526506924055298, 53.653521227022964 ], [ -2.525602585590889, 53.737960517363945 ], [ -2.496327886722611, 53.761938382050687 ], [ -2.446563483118268, 53.772583727257199 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SWD", "NAME_1": "Swindon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.701130947035608, 51.681031806272813 ], [ -1.683328415673827, 51.678603014417547 ], [ -1.683922694876458, 51.650491035532809 ], [ -1.654467128854947, 51.631887519393501 ], [ -1.659738124614762, 51.611061916973881 ], [ -1.677799038394937, 51.599667262933792 ], [ -1.67529273127451, 51.572718004032652 ], [ -1.646715664396424, 51.568532212991215 ], [ -1.602790697332807, 51.520214749311208 ], [ -1.584523077977678, 51.517372545406602 ], [ -1.580440639723747, 51.503006497152114 ], [ -1.697668626405971, 51.460063382019428 ], [ -1.760972255964873, 51.462698880349024 ], [ -1.81042660210602, 51.480010484396303 ], [ -1.839908005649932, 51.523418688421714 ], [ -1.83122636610392, 51.565896715560939 ], [ -1.75663143619181, 51.642222805338179 ], [ -1.74970679403333, 51.658785102350578 ], [ -1.724488694997262, 51.662712510973563 ], [ -1.701130947035608, 51.681031806272813 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BAS", "NAME_1": "Bath and North East Somerset" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.290138922773053, 51.324903672766254 ], [ -2.345846116605003, 51.299943956148638 ], [ -2.405015631965853, 51.299401353789392 ], [ -2.423076544846651, 51.282167263208578 ], [ -2.458113165889927, 51.272994697247441 ], [ -2.488369716689078, 51.275785224308606 ], [ -2.493072271668041, 51.28937612620723 ], [ -2.539477708329571, 51.299943956148638 ], [ -2.591412523169424, 51.282994086407939 ], [ -2.620868089190992, 51.282994086407939 ], [ -2.668384568992678, 51.311907050070261 ], [ -2.712697108784539, 51.319813544159729 ], [ -2.71486752002005, 51.342628688862874 ], [ -2.709493170573353, 51.353351549334491 ], [ -2.680063442074186, 51.341285101726044 ], [ -2.654638638362485, 51.343972275999704 ], [ -2.633502976681029, 51.382135321787644 ], [ -2.562292853032773, 51.380119941082398 ], [ -2.539529385173012, 51.393452460562571 ], [ -2.522682868219817, 51.418825589229527 ], [ -2.503433396933758, 51.405544744794099 ], [ -2.397703416179695, 51.402857571419759 ], [ -2.280656296650761, 51.420272529153863 ], [ -2.27696143202445, 51.399111029950063 ], [ -2.286986659606669, 51.386062731309949 ], [ -2.280010342403386, 51.37242015256794 ], [ -2.33367631710837, 51.346891995169415 ], [ -2.296701828826372, 51.340225735429328 ], [ -2.290138922773053, 51.324903672766254 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WIL", "NAME_1": "Wiltshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.806137458277078, 51.697981676013512 ], [ -1.795853848276465, 51.694364325752986 ], [ -1.777353684924606, 51.660361233484139 ], [ -1.74970679403333, 51.658785102350578 ], [ -1.75663143619181, 51.642222805338179 ], [ -1.83122636610392, 51.565896715560939 ], [ -1.839055344928227, 51.546828111428169 ], [ -1.834714525155221, 51.507812404918525 ], [ -1.81042660210602, 51.480010484396303 ], [ -1.760972255964873, 51.462698880349024 ], [ -1.697668626405971, 51.460063382019428 ], [ -1.580440639723747, 51.503006497152114 ], [ -1.576409878313257, 51.48884715447258 ], [ -1.550597500074559, 51.461355292312874 ], [ -1.528376633674725, 51.451330063831335 ], [ -1.521141934053048, 51.434121813470881 ], [ -1.521968757252353, 51.425750231388065 ], [ -1.563361578773879, 51.412159329489441 ], [ -1.533389247915466, 51.377432765909418 ], [ -1.498120082875516, 51.36606395119037 ], [ -1.485846929692059, 51.343843084790478 ], [ -1.487009649675599, 51.332448432549086 ], [ -1.526722988175379, 51.329683743010321 ], [ -1.520030890013572, 51.302450263269009 ], [ -1.539177007612807, 51.275501004367811 ], [ -1.527808192893815, 51.252427477246272 ], [ -1.538350186212142, 51.244934394306824 ], [ -1.579717170211268, 51.257698473006087 ], [ -1.62811214825706, 51.234108181047702 ], [ -1.696454229579047, 51.236614488168073 ], [ -1.685317958856729, 51.205246894228765 ], [ -1.655035569635857, 51.171347153848046 ], [ -1.647800869114803, 51.149953111546836 ], [ -1.652813483355601, 51.12633698206605 ], [ -1.621988490876163, 51.108250230763531 ], [ -1.631419440155071, 51.08605520278536 ], [ -1.620309006955097, 51.054093328744102 ], [ -1.621988490876163, 51.034094550423163 ], [ -1.596692878373631, 51.017454739044922 ], [ -1.621420050095253, 50.994665431864178 ], [ -1.599741786953928, 50.976888739823437 ], [ -1.61056800021305, 50.959680488563663 ], [ -1.655035569635857, 50.950223700863091 ], [ -1.698082037555992, 50.974950873483976 ], [ -1.81084001325604, 50.992701728002316 ], [ -1.837556729059827, 51.009108995383826 ], [ -1.857813889799161, 50.994665431864178 ], [ -1.868588426214899, 50.996060695844392 ], [ -1.868924322999135, 51.005775865064095 ], [ -1.926440191961319, 50.999471341429228 ], [ -1.950056322341425, 50.988257555441805 ], [ -1.970313483080815, 50.992701728002316 ], [ -1.996151698841857, 50.977457179705027 ], [ -2.099194505322146, 50.955753079041358 ], [ -2.123353237162178, 50.981074530864873 ], [ -2.144178839581798, 50.98603546826223 ], [ -2.194175788082191, 51.043809718743489 ], [ -2.224199794884612, 51.065513821205855 ], [ -2.321687383865708, 51.083290514145858 ], [ -2.347525601425389, 51.094917711283301 ], [ -2.348920863606963, 51.117707018464102 ], [ -2.266161058086368, 51.20881256854517 ], [ -2.25254431776608, 51.24467601188843 ], [ -2.236162888806291, 51.264106350327779 ], [ -2.242829149445697, 51.285216172688195 ], [ -2.271147833905445, 51.295784003528922 ], [ -2.274739345744194, 51.306584378366324 ], [ -2.266987881285729, 51.316299546686707 ], [ -2.280320399866582, 51.326608995108984 ], [ -2.290138922773053, 51.324903672766254 ], [ -2.296701828826372, 51.340225735429328 ], [ -2.33367631710837, 51.346891995169415 ], [ -2.280010342403386, 51.37242015256794 ], [ -2.286986659606669, 51.386062731309949 ], [ -2.27696143202445, 51.399111029950063 ], [ -2.287477586021794, 51.459649969970087 ], [ -2.282232427784322, 51.474946194211441 ], [ -2.286986659606669, 51.481302394689749 ], [ -2.320550503203151, 51.48383454023184 ], [ -2.280578783184296, 51.509931139310595 ], [ -2.245283778823364, 51.518561102912543 ], [ -2.261975267044932, 51.547164008212405 ], [ -2.261432663786422, 51.567705389791854 ], [ -2.271638760320513, 51.577162177492482 ], [ -2.240012783063491, 51.579125882253663 ], [ -2.191695319383484, 51.598297838274618 ], [ -2.148933071404144, 51.589357815410835 ], [ -2.101132370762286, 51.620208645412617 ], [ -2.057259079642847, 51.664107774054514 ], [ -1.968349779218954, 51.634367988092151 ], [ -1.948661058361154, 51.639949042214482 ], [ -1.949487880661195, 51.660206203853193 ], [ -1.940031093859886, 51.662996730914358 ], [ -1.87476376043918, 51.640775865413843 ], [ -1.869182705417529, 51.646331082013774 ], [ -1.887243618298328, 51.662428290133448 ], [ -1.88809627902009, 51.672453517715667 ], [ -1.866366339934643, 51.673280340914971 ], [ -1.832828334759824, 51.656588854492043 ], [ -1.816679449796766, 51.669662991553764 ], [ -1.806137458277078, 51.697981676013512 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-CLD", "NAME_1": "Calderdale" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.151387701681074, 53.696516018099715 ], [ -2.159759283763947, 53.725506497027197 ], [ -2.121415370822717, 53.75522044546716 ], [ -2.120614386045077, 53.791342272128134 ], [ -2.095577155061676, 53.810514228149088 ], [ -2.047259691381669, 53.824389349988508 ], [ -2.032557746342945, 53.847617905841673 ], [ -2.002817958581943, 53.869942125029013 ], [ -1.977806566020206, 53.869373684248103 ], [ -1.922124215959798, 53.822633082850473 ], [ -1.879234685132644, 53.818734034348154 ], [ -1.791506099227092, 53.771945455018681 ], [ -1.756414664505201, 53.73880354454792 ], [ -1.738868947144226, 53.703712110725291 ], [ -1.822698485446779, 53.670570200254531 ], [ -2.023901943419958, 53.639361884343487 ], [ -2.035012375720555, 53.646906643226998 ], [ -2.031420863881749, 53.663288072186731 ], [ -2.046432868182308, 53.684113675505671 ], [ -2.098626063641916, 53.671918036687998 ], [ -2.151387701681074, 53.696516018099715 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-KIR", "NAME_1": "Kirklees" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.816136847437576, 53.51606191712375 ], [ -1.897217169936425, 53.533011786864449 ], [ -1.976979742820902, 53.593834946825325 ], [ -1.988090176020819, 53.614660550144265 ], [ -2.01700313968314, 53.61856212034553 ], [ -2.023901943419958, 53.639361884343487 ], [ -1.822698485446779, 53.670570200254531 ], [ -1.738868947144226, 53.703712110725291 ], [ -1.756414664505201, 53.73880354454792 ], [ -1.721323229783252, 53.754399737657764 ], [ -1.647241312736412, 53.764147358913476 ], [ -1.580957491794834, 53.70176258647416 ], [ -1.588755588799415, 53.660822578998818 ], [ -1.619947975019045, 53.649125434391237 ], [ -1.614099402265595, 53.606235903564084 ], [ -1.600336066156558, 53.57409455002346 ], [ -1.615322231136076, 53.563294176085321 ], [ -1.674465908075206, 53.549961655705829 ], [ -1.714747687355896, 53.554664212483374 ], [ -1.77169511643649, 53.535233873144705 ], [ -1.806731736580389, 53.531874905302629 ], [ -1.816136847437576, 53.51606191712375 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-NGM", "NAME_1": "Nottingham" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.160853847926774, 52.995008449979935 ], [ -1.116231247973701, 52.961522122547876 ], [ -1.103027919702754, 52.940231432134851 ], [ -1.104061449376388, 52.918940741721826 ], [ -1.170982428296441, 52.872276923541165 ], [ -1.200437995217328, 52.879382432852992 ], [ -1.21258195629224, 52.892559922702219 ], [ -1.22880835562114, 52.91589183224221 ], [ -1.22782650369021, 52.944313870388783 ], [ -1.217646247376422, 52.969635322212298 ], [ -1.192298957131186, 52.991959540500375 ], [ -1.160853847926774, 52.995008449979935 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-LCE", "NAME_1": "Leicester" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.119564378293433, 52.655856025535115 ], [ -1.071763677651631, 52.648311265752284 ], [ -1.056674159884608, 52.623144843559658 ], [ -1.06421891876812, 52.595497951769005 ], [ -1.122070685413803, 52.565267239391574 ], [ -1.167390915558315, 52.575344142917857 ], [ -1.179922451160223, 52.638234361326681 ], [ -1.159820319152402, 52.655856025535115 ], [ -1.119564378293433, 52.655856025535115 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-DER", "NAME_1": "Derby" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.48667375289142, 52.937802639380266 ], [ -1.453213262981706, 52.93459870116908 ], [ -1.401459316194519, 52.909794013283033 ], [ -1.397118496421456, 52.892534085179875 ], [ -1.405748460023403, 52.87201854112277 ], [ -1.431638352627886, 52.841839504689347 ], [ -1.494218511774932, 52.847213854136044 ], [ -1.546024136304879, 52.876359360895776 ], [ -1.538427699678607, 52.897908433727196 ], [ -1.48667375289142, 52.937802639380266 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-LDS", "NAME_1": "Leeds" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.647241312736412, 53.764147358913476 ], [ -1.625796546873175, 53.789491172379655 ], [ -1.67648417470491, 53.793390220881975 ], [ -1.67648417470491, 53.853825469070102 ], [ -1.728648646717659, 53.902704982948592 ], [ -1.554912482325221, 53.905392158121572 ], [ -1.548633796212755, 53.924667466930032 ], [ -1.534474452633901, 53.935209459349039 ], [ -1.507215135370188, 53.910714829825508 ], [ -1.454737718171145, 53.906063950790667 ], [ -1.433033616608157, 53.910714829825508 ], [ -1.423370124231838, 53.924357408567516 ], [ -1.386679856789954, 53.939395250390476 ], [ -1.333659837231721, 53.944924628568742 ], [ -1.294179042728672, 53.925494290129336 ], [ -1.29141435408917, 53.914952297710329 ], [ -1.30782162057136, 53.894695136071618 ], [ -1.305599535190424, 53.860795397489596 ], [ -1.344460212069123, 53.858831691829096 ], [ -1.30531531435031, 53.819660955688505 ], [ -1.307537400630565, 53.790205390566314 ], [ -1.288675502972069, 53.770206611345998 ], [ -1.287280238991855, 53.758527737365171 ], [ -1.304204271210153, 53.749639391344829 ], [ -1.306917283905534, 53.737960517363945 ], [ -1.331418402037627, 53.717358779584004 ], [ -1.41524794034018, 53.693964489469579 ], [ -1.528320339711911, 53.711510206830553 ], [ -1.580957491794834, 53.70176258647416 ], [ -1.647241312736412, 53.764147358913476 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BRD", "NAME_1": "Bradford" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.728648646717659, 53.902704982948592 ], [ -1.67648417470491, 53.853825469070102 ], [ -1.67648417470491, 53.793390220881975 ], [ -1.625796546873175, 53.789491172379655 ], [ -1.647241312736412, 53.764147358913476 ], [ -1.721323229783252, 53.754399737657764 ], [ -1.756414664505201, 53.73880354454792 ], [ -1.791506099227092, 53.771945455018681 ], [ -1.838294678556565, 53.799238792736048 ], [ -1.879234685132644, 53.818734034348154 ], [ -1.922124215959798, 53.822633082850473 ], [ -1.977806566020206, 53.869373684248103 ], [ -1.966127692039379, 53.876350003250025 ], [ -1.963905604859804, 53.897175604770325 ], [ -1.97362077497877, 53.917174383990584 ], [ -1.950883144641409, 53.931902167451028 ], [ -1.95532731810124, 53.950505682691073 ], [ -1.943648444120413, 53.957688707268005 ], [ -1.901971400859452, 53.954949856150904 ], [ -1.877089198607621, 53.962649645564682 ], [ -1.871792365325405, 53.940377102321406 ], [ -1.846057502351869, 53.931385403513559 ], [ -1.835593024298646, 53.939937852749665 ], [ -1.797843389660727, 53.943012599751626 ], [ -1.728648646717659, 53.902704982948592 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WKF", "NAME_1": "Wakefield" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.600336066156558, 53.57409455002346 ], [ -1.614099402265595, 53.606235903564084 ], [ -1.619947975019045, 53.649125434391237 ], [ -1.588755588799415, 53.660822578998818 ], [ -1.580957491794834, 53.70176258647416 ], [ -1.528320339711911, 53.711510206830553 ], [ -1.41524794034018, 53.693964489469579 ], [ -1.331418402037627, 53.717358779584004 ], [ -1.306917283905534, 53.737960517363945 ], [ -1.28836544371029, 53.737443753426476 ], [ -1.259452480047912, 53.717703355725234 ], [ -1.211135016367905, 53.710210272785844 ], [ -1.211703457148815, 53.699099840485246 ], [ -1.226922166125064, 53.694397285506284 ], [ -1.245293138267755, 53.671918036687998 ], [ -1.246972622188764, 53.635486152563885 ], [ -1.229971075604681, 53.620655016315936 ], [ -1.243355271928294, 53.596883857204205 ], [ -1.30531531435031, 53.576058254784584 ], [ -1.344460212069123, 53.580760809763547 ], [ -1.352521734890161, 53.593834946825325 ], [ -1.367817959131514, 53.598847561066066 ], [ -1.535301275833206, 53.593576565306194 ], [ -1.560571050813337, 53.606624863946308 ], [ -1.584187181193442, 53.597710680403566 ], [ -1.600336066156558, 53.57409455002346 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BNS", "NAME_1": "Barnsley" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.511801781227234, 53.466662116663315 ], [ -1.559109248692891, 53.469444908655589 ], [ -1.589719963305697, 53.497272830376801 ], [ -1.816136847437576, 53.51606191712375 ], [ -1.806731736580389, 53.531874905302629 ], [ -1.77169511643649, 53.535233873144705 ], [ -1.714747687355896, 53.554664212483374 ], [ -1.674465908075206, 53.549961655705829 ], [ -1.615322231136076, 53.563294176085321 ], [ -1.584187181193442, 53.597710680403566 ], [ -1.560571050813337, 53.606624863946308 ], [ -1.535301275833206, 53.593576565306194 ], [ -1.485020107392074, 53.592181301325979 ], [ -1.448071458431059, 53.600759588983806 ], [ -1.352521734890161, 53.593834946825325 ], [ -1.325354703356879, 53.541797505850184 ], [ -1.294743988744074, 53.513969584128972 ], [ -1.325354703356879, 53.477793285531675 ], [ -1.369879378830262, 53.469444908655589 ], [ -1.40605567742756, 53.444399778926652 ], [ -1.40605567742756, 53.411006272321572 ], [ -1.42831801516428, 53.411006272321572 ], [ -1.447797560908725, 53.430485817166698 ], [ -1.464494313761577, 53.469444908655589 ], [ -1.511801781227234, 53.466662116663315 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SLF", "NAME_1": "Salford" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.485036587268723, 53.462163398422092 ], [ -2.511377226377931, 53.538168227881386 ], [ -2.441180812244681, 53.553757841551146 ], [ -2.372141817490899, 53.53434062422042 ], [ -2.335464851022039, 53.53434062422042 ], [ -2.30526029003039, 53.504136064128033 ], [ -2.298787884553235, 53.471774034943735 ], [ -2.320362570975874, 53.452356816713689 ], [ -2.367826880206394, 53.458829223090163 ], [ -2.408818783959703, 53.452356816713689 ], [ -2.446692674327494, 53.418806871240065 ], [ -2.485036587268723, 53.462163398422092 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BOL", "NAME_1": "Bolton" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.372141817490899, 53.53434062422042 ], [ -2.441180812244681, 53.553757841551146 ], [ -2.511377226377931, 53.538168227881386 ], [ -2.518849682466907, 53.555915310643059 ], [ -2.558908046768977, 53.59910594348446 ], [ -2.504182704867958, 53.627166246425134 ], [ -2.463642544068136, 53.624117336945517 ], [ -2.434471197987421, 53.644116116165776 ], [ -2.376438564188391, 53.634917710883599 ], [ -2.335464851022039, 53.53434062422042 ], [ -2.372141817490899, 53.53434062422042 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-TRF", "NAME_1": "Trafford" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.367826880206394, 53.458829223090163 ], [ -2.320362570975874, 53.452356816713689 ], [ -2.30310282183774, 53.426467193905864 ], [ -2.331149913737534, 53.387632759244411 ], [ -2.316700608945951, 53.35994741514105 ], [ -2.364759691106883, 53.362427883839757 ], [ -2.460567796166856, 53.388266100500118 ], [ -2.444470588047238, 53.407179674102679 ], [ -2.446692674327494, 53.418806871240065 ], [ -2.408818783959703, 53.452356816713689 ], [ -2.367826880206394, 53.458829223090163 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-MAN", "NAME_1": "Manchester" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.316700608945951, 53.35994741514105 ], [ -2.331149913737534, 53.387632759244411 ], [ -2.30310282183774, 53.426467193905864 ], [ -2.320362570975874, 53.452356816713689 ], [ -2.298787884553235, 53.471774034943735 ], [ -2.30526029003039, 53.504136064128033 ], [ -2.251323575322772, 53.549442904266584 ], [ -2.182284579669613, 53.525710749651353 ], [ -2.203859266092252, 53.47608897222824 ], [ -2.225433951615571, 53.458829223090163 ], [ -2.234063826184638, 53.400577570198664 ], [ -2.266425855368936, 53.370373010106277 ], [ -2.260321620646266, 53.344935410840492 ], [ -2.283369310245462, 53.342170722201047 ], [ -2.316700608945951, 53.35994741514105 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-OLD", "NAME_1": "Oldham" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.182284579669613, 53.525710749651353 ], [ -2.152080019577227, 53.566702653404718 ], [ -1.988090176020819, 53.614660550144265 ], [ -1.976979742820902, 53.593834946825325 ], [ -1.897217169936425, 53.533011786864449 ], [ -1.918921270600151, 53.500765692882396 ], [ -1.963647223340672, 53.49466787392322 ], [ -1.977806566020206, 53.468829658162178 ], [ -2.033419245601692, 53.493348720467054 ], [ -2.104615709447444, 53.508451000513219 ], [ -2.160709893246974, 53.482561377705395 ], [ -2.203859266092252, 53.47608897222824 ], [ -2.182284579669613, 53.525710749651353 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-RCH", "NAME_1": "Rochdale" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.988090176020819, 53.614660550144265 ], [ -2.152080019577227, 53.566702653404718 ], [ -2.182284579669613, 53.525710749651353 ], [ -2.251323575322772, 53.549442904266584 ], [ -2.25809953526533, 53.614117946885699 ], [ -2.251149053785809, 53.620241604266596 ], [ -2.25502478736405, 53.647165024746073 ], [ -2.245878058025994, 53.661324368324927 ], [ -2.151387701681074, 53.696516018099715 ], [ -2.098626063641916, 53.671918036687998 ], [ -2.046432868182308, 53.684113675505671 ], [ -2.031420863881749, 53.663288072186731 ], [ -2.035012375720555, 53.646906643226998 ], [ -2.023901943419958, 53.639361884343487 ], [ -2.01700313968314, 53.61856212034553 ], [ -1.988090176020819, 53.614660550144265 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-TAM", "NAME_1": "Tameside" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.104615709447444, 53.508451000513219 ], [ -2.033419245601692, 53.493348720467054 ], [ -1.977806566020206, 53.468829658162178 ], [ -1.982509120999168, 53.443818263801802 ], [ -2.009174159959514, 53.427436834842013 ], [ -2.011732143923325, 53.412450669862494 ], [ -2.054993932024331, 53.409207444767731 ], [ -2.12403292767749, 53.409207444767731 ], [ -2.225433951615571, 53.437254536667524 ], [ -2.225433951615571, 53.458829223090163 ], [ -2.203859266092252, 53.47608897222824 ], [ -2.160709893246974, 53.482561377705395 ], [ -2.104615709447444, 53.508451000513219 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BUR", "NAME_1": "Bury" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.30526029003039, 53.504136064128033 ], [ -2.335464851022039, 53.53434062422042 ], [ -2.376438564188391, 53.634917710883599 ], [ -2.365043911047678, 53.641894028986201 ], [ -2.353623420384565, 53.666905423346577 ], [ -2.329232143648539, 53.65773285648612 ], [ -2.280010342403386, 53.665225939425511 ], [ -2.27504940410671, 53.626597804744847 ], [ -2.25809953526533, 53.614117946885699 ], [ -2.251323575322772, 53.549442904266584 ], [ -2.30526029003039, 53.504136064128033 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SOL", "NAME_1": "Solihull" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.619456346233392, 52.444396064027103 ], [ -1.640049403756962, 52.350784206825665 ], [ -1.682527431795563, 52.342438463164513 ], [ -1.714747687355896, 52.355202541863775 ], [ -1.751696336316854, 52.347451077405253 ], [ -1.759215256778702, 52.337167467404697 ], [ -1.796964891416621, 52.352153632384216 ], [ -1.835349845818712, 52.380561329042052 ], [ -1.807998805800253, 52.411656926625824 ], [ -1.77125983017703, 52.417582567681336 ], [ -1.766519317512518, 52.462617440242639 ], [ -1.789036754242829, 52.47683897913555 ], [ -1.790221882633773, 52.493430773911086 ], [ -1.741128506375503, 52.497467760428776 ], [ -1.661701829375943, 52.424655667225238 ], [ -1.619456346233392, 52.444396064027103 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-COV", "NAME_1": "Coventry" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.640049403756962, 52.350784206825665 ], [ -1.619456346233392, 52.444396064027103 ], [ -1.45502193811194, 52.437988185806091 ], [ -1.438097906792962, 52.429358222204144 ], [ -1.43169002857195, 52.383572903166908 ], [ -1.462799241891503, 52.365796210226904 ], [ -1.510884161574779, 52.36744985572625 ], [ -1.536954922231871, 52.355770981745366 ], [ -1.562793137992912, 52.372152412503794 ], [ -1.589458176953315, 52.37437449788473 ], [ -1.601395433352593, 52.361868800704542 ], [ -1.640049403756962, 52.350784206825665 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-BIR", "NAME_1": "Birmingham" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.741128506375503, 52.497467760428776 ], [ -1.790221882633773, 52.493430773911086 ], [ -1.789036754242829, 52.47683897913555 ], [ -1.766519317512518, 52.462617440242639 ], [ -1.77125983017703, 52.417582567681336 ], [ -1.807998805800253, 52.411656926625824 ], [ -1.835349845818712, 52.380561329042052 ], [ -1.900576137778557, 52.39271963250502 ], [ -1.995841641378661, 52.378818671344561 ], [ -2.001965297860238, 52.39271963250502 ], [ -1.983077561780078, 52.417731025066701 ], [ -2.006693691260864, 52.427446194286404 ], [ -2.021679857139702, 52.424397284806844 ], [ -2.030568203160044, 52.436902981087655 ], [ -2.026062399160423, 52.463802568633582 ], [ -1.963250603432584, 52.462617440242639 ], [ -1.945473680266161, 52.482764620191062 ], [ -1.964435731823585, 52.49461590230203 ], [ -1.944288551875161, 52.521873851696853 ], [ -1.914660346597714, 52.527799492752365 ], [ -1.902809063587426, 52.546761544309788 ], [ -1.871995729919036, 52.558612827320076 ], [ -1.831691453198005, 52.58774648731054 ], [ -1.789756029317289, 52.587178046529573 ], [ -1.777715420130562, 52.575344142917857 ], [ -1.733377041017661, 52.51162710220899 ], [ -1.741128506375503, 52.497467760428776 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-SAW", "NAME_1": "Sandwell" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.075837785285557, 52.478024107526494 ], [ -2.090059324178469, 52.488690261246518 ], [ -2.066356759057214, 52.517133339032341 ], [ -2.078208041168182, 52.557427698929132 ], [ -2.05569060533719, 52.568093852649156 ], [ -2.041469066444279, 52.553872313756244 ], [ -1.98932342443652, 52.565723595867212 ], [ -1.92177111514485, 52.559797954811756 ], [ -1.902809063587426, 52.546761544309788 ], [ -1.914660346597714, 52.527799492752365 ], [ -1.944288551875161, 52.521873851696853 ], [ -1.964435731823585, 52.49461590230203 ], [ -1.945473680266161, 52.482764620191062 ], [ -1.963250603432584, 52.462617440242639 ], [ -1.995249065491976, 52.459062055969071 ], [ -2.026062399160423, 52.463802568633582 ], [ -2.039098809662335, 52.480394363409118 ], [ -2.075837785285557, 52.478024107526494 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-DUD", "NAME_1": "Dudley" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.078208041168182, 52.557427698929132 ], [ -2.066356759057214, 52.517133339032341 ], [ -2.090059324178469, 52.488690261246518 ], [ -2.075837785285557, 52.478024107526494 ], [ -2.039098809662335, 52.480394363409118 ], [ -2.026062399160423, 52.463802568633582 ], [ -2.030568203160044, 52.436902981087655 ], [ -2.047543911322464, 52.43411245402649 ], [ -2.058370123682266, 52.422433580045663 ], [ -2.082813076362413, 52.436024481944287 ], [ -2.118909063702347, 52.422175198526588 ], [ -2.1538681712791, 52.422950343983189 ], [ -2.158932460564586, 52.477417304365076 ], [ -2.17753597670395, 52.501059272267582 ], [ -2.134489507884496, 52.515218614047797 ], [ -2.117317273573349, 52.559797954811756 ], [ -2.099540349507549, 52.564538468375588 ], [ -2.078208041168182, 52.557427698929132 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WLL", "NAME_1": "Walsall" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.05569060533719, 52.568093852649156 ], [ -2.034358296997823, 52.585870775815636 ], [ -2.050877040742819, 52.617434597328781 ], [ -2.025891485703539, 52.616065171770231 ], [ -1.952536790140755, 52.637459214970761 ], [ -1.941167975421763, 52.665209459548919 ], [ -1.897217169936425, 52.649396471370039 ], [ -1.896416185158841, 52.617434597328781 ], [ -1.880293137718127, 52.604670519528838 ], [ -1.875306361899106, 52.586351223330269 ], [ -1.855591802619585, 52.575499173448065 ], [ -1.871995729919036, 52.558612827320076 ], [ -1.902809063587426, 52.546761544309788 ], [ -1.92177111514485, 52.559797954811756 ], [ -1.98932342443652, 52.565723595867212 ], [ -2.041469066444279, 52.553872313756244 ], [ -2.05569060533719, 52.568093852649156 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "GB-WLV", "NAME_1": "Wolverhampton" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.050877040742819, 52.617434597328781 ], [ -2.034358296997823, 52.585870775815636 ], [ -2.078208041168182, 52.557427698929132 ], [ -2.099540349507549, 52.564538468375588 ], [ -2.117317273573349, 52.559797954811756 ], [ -2.126143765122663, 52.544389960128512 ], [ -2.157537196584371, 52.546353664889693 ], [ -2.174487067224391, 52.567437648828388 ], [ -2.200583665403826, 52.579374905227667 ], [ -2.180584886183567, 52.599942125228893 ], [ -2.144178839581798, 52.612732042349876 ], [ -2.13113054004242, 52.629397691250404 ], [ -2.097540858923537, 52.634100247128686 ], [ -2.066431647402624, 52.608003648049873 ], [ -2.050877040742819, 52.617434597328781 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/ukraine.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/ukraine.geojson new file mode 100644 index 000000000000..fe369e1d5715 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/ukraine.geojson @@ -0,0 +1,31 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "UA-74", "NAME_1": "Chernihiv" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.474853556000085, 52.117775981000037 ], [ 31.649933309000062, 52.096847026000049 ], [ 31.858706095000059, 52.099870097000078 ], [ 31.88206384300014, 52.086408386000116 ], [ 31.892037394000056, 52.036178895000049 ], [ 31.910382528000127, 52.029073385000046 ], [ 31.980559122000102, 52.047625225000061 ], [ 32.095590861000062, 52.040726421 ], [ 32.27769860900014, 52.102660625000041 ], [ 32.306740763000107, 52.141185405 ], [ 32.32823815900008, 52.21916514100009 ], [ 32.366995484000086, 52.247199606 ], [ 32.339503621000119, 52.287248841000078 ], [ 32.353559611000037, 52.321587830000013 ], [ 32.480580282000062, 52.307144267000083 ], [ 32.528432658000042, 52.316213481000048 ], [ 32.72542321800006, 52.252083029000019 ], [ 32.844175660000133, 52.262340800000018 ], [ 32.908977905000143, 52.241101787000034 ], [ 33.030107463000093, 52.303604431000039 ], [ 33.079613485000039, 52.305593975000065 ], [ 33.182862996000097, 52.367295635000019 ], [ 33.400576080000064, 52.344343017000128 ], [ 33.359442172817978, 52.248335680447269 ], [ 33.317842644822178, 52.20983673787515 ], [ 33.325904167643216, 52.15294098653726 ], [ 33.378665805682374, 52.139970201363667 ], [ 33.443984815946465, 52.08896556341 ], [ 33.484654167955455, 52.084934801100189 ], [ 33.483103875243614, 52.066641344222603 ], [ 33.443571404796501, 52.045402329753699 ], [ 33.379285923306668, 52.056900336581236 ], [ 33.372929721929097, 52.009848944772955 ], [ 33.352775913077892, 51.988248195997414 ], [ 33.374635044271827, 51.968972887188954 ], [ 33.366263462189011, 51.946700343945679 ], [ 33.225083449241765, 51.905720934473493 ], [ 33.160694614065164, 51.904222316806454 ], [ 33.167670933067086, 51.884636948736159 ], [ 33.088916049635941, 51.835699368331177 ], [ 33.062044305100585, 51.792911281930117 ], [ 33.091603223909658, 51.733586737837641 ], [ 33.153201532025037, 51.69309825298194 ], [ 33.134908075147507, 51.657829087942048 ], [ 33.181933627634805, 51.576697089499078 ], [ 33.153511590387552, 51.565121568305699 ], [ 33.152581415300062, 51.546259671546579 ], [ 33.186894565931425, 51.515925605482266 ], [ 33.165965609825037, 51.498562323692283 ], [ 33.12266076038577, 51.510344550460616 ], [ 33.130877312837697, 51.479752101977908 ], [ 33.108191359343721, 51.455774238190486 ], [ 33.130877312837697, 51.421512763503188 ], [ 33.115219354289763, 51.374538886060691 ], [ 33.061062453169654, 51.367769273533099 ], [ 33.021013217885695, 51.396759752460582 ], [ 33.00163455628973, 51.381153468957393 ], [ 33.022718540228425, 51.344204819996435 ], [ 33.055171339785488, 51.335962429122787 ], [ 33.049383579188827, 51.307256171035419 ], [ 33.073154738300502, 51.28839427337698 ], [ 33.070209180709128, 51.248913478873931 ], [ 33.033260531748112, 51.233513901845072 ], [ 33.023493686584345, 51.195066637015657 ], [ 32.9632906433485, 51.178323472849968 ], [ 32.970421991081992, 51.139824531177169 ], [ 32.939519484236769, 51.097346503138567 ], [ 33.058581983571685, 51.078019518386043 ], [ 33.064783156217686, 51.066288967561775 ], [ 33.043957553798066, 51.049184068190186 ], [ 33.083851760350456, 51.032415066502097 ], [ 33.141884393250109, 51.025567938709401 ], [ 33.173251987189417, 51.060113634236814 ], [ 33.206893345151741, 51.048357244990825 ], [ 33.155526971092797, 50.997352607037158 ], [ 33.185034213957806, 50.96750946738797 ], [ 33.18394900923937, 50.917564194831698 ], [ 33.147465448271817, 50.881235663495033 ], [ 33.122505730754824, 50.813462022054637 ], [ 33.12514122908442, 50.776926785143019 ], [ 33.166999138599351, 50.743001207239899 ], [ 33.102920362684586, 50.66398794228968 ], [ 33.095478956588579, 50.601924547080159 ], [ 33.023803744946861, 50.491595364134696 ], [ 32.905878127173821, 50.429480292081792 ], [ 32.873425326717438, 50.394857083087913 ], [ 32.727284377272156, 50.357908434126898 ], [ 32.526314732239086, 50.365659897686101 ], [ 32.500424838735285, 50.371654364757092 ], [ 32.476963738885445, 50.406380927437851 ], [ 32.406993848687137, 50.392066555127371 ], [ 32.375936314009664, 50.408913072080566 ], [ 32.288293083658857, 50.389172675278701 ], [ 32.22359419101906, 50.343232327509895 ], [ 32.139154900678079, 50.350105291925672 ], [ 32.072750684796233, 50.378010566134719 ], [ 32.089493848961922, 50.405760809813501 ], [ 32.020144077287341, 50.419765122862088 ], [ 32.007586704163032, 50.451055203334931 ], [ 31.973583611894128, 50.475343126384132 ], [ 31.993013950333534, 50.500432034210974 ], [ 32.030841099337238, 50.50441111877808 ], [ 32.028360629739268, 50.54508047078707 ], [ 31.961956414756742, 50.550093085027811 ], [ 31.8562781099468, 50.621354885519509 ], [ 31.796695184335249, 50.614223537786017 ], [ 31.783362664855076, 50.576448066525018 ], [ 31.748429395700043, 50.553193671350812 ], [ 31.686521030121412, 50.552831936144912 ], [ 31.613450555398799, 50.517640286370067 ], [ 31.496610142344196, 50.517898667889199 ], [ 31.462917108437807, 50.500225327736644 ], [ 31.328248324700382, 50.50844188108789 ], [ 31.275176629198086, 50.520766710215469 ], [ 31.258381789088276, 50.557741196698828 ], [ 31.219624464997025, 50.561539415011964 ], [ 31.179885288075582, 50.58766185251244 ], [ 31.218539260278646, 50.622879339809685 ], [ 31.212958205256939, 50.658768622473929 ], [ 31.158491244875052, 50.715457669136072 ], [ 31.11317101383122, 50.723674220688736 ], [ 31.113636101824625, 50.745378323151044 ], [ 31.089399854719488, 50.7672891302891 ], [ 30.93085656088158, 50.74646352786948 ], [ 30.871738722364114, 50.755300197945758 ], [ 30.836340366114996, 50.737006741068228 ], [ 30.793965691763219, 50.759641017718764 ], [ 30.737638381206295, 50.760209459398993 ], [ 30.780168084289642, 50.843563544122219 ], [ 30.655111117883791, 50.891984361489051 ], [ 30.663947787960012, 50.957458401384088 ], [ 30.649064975767999, 50.985570380268825 ], [ 30.55578901535074, 51.017170519104127 ], [ 30.512329136280584, 51.016679591789682 ], [ 30.511243930662829, 51.108043525188521 ], [ 30.531397738614714, 51.180287176711829 ], [ 30.51589480969767, 51.224754747033899 ], [ 30.556409132975091, 51.231705226714837 ], [ 30.556615031000092, 51.267311096000057 ], [ 30.579921102000128, 51.30366546700013 ], [ 30.638315470000123, 51.335859884000072 ], [ 30.632424357000104, 51.364101054000045 ], [ 30.645550171000082, 51.367460023000078 ], [ 30.618161661000045, 51.418723043000099 ], [ 30.587879272000066, 51.427353008000054 ], [ 30.586018921000061, 51.451847636000096 ], [ 30.618161661000045, 51.467143861000054 ], [ 30.588912801000049, 51.48181996700005 ], [ 30.585398803000089, 51.509389344000041 ], [ 30.562867880000113, 51.52176584900009 ], [ 30.58400354000014, 51.54225555400005 ], [ 30.52256026200007, 51.562719422000029 ], [ 30.543127482000045, 51.582589010000035 ], [ 30.515118856000129, 51.603672994000036 ], [ 30.556615031000092, 51.623620097000057 ], [ 30.570309286000111, 51.699920349000095 ], [ 30.62498295100005, 51.706095683000072 ], [ 30.646170288000121, 51.754542338000036 ], [ 30.618161661000045, 51.761337789 ], [ 30.670561564000081, 51.790534974000124 ], [ 30.661983277000047, 51.819422099000079 ], [ 30.734536987000126, 51.873734030000023 ], [ 30.741668335000099, 51.897918600000096 ], [ 30.788177124000129, 51.900605774000027 ], [ 30.810604696000098, 51.918382467000058 ], [ 30.803059937000057, 51.939130554000101 ], [ 30.858043660000078, 51.957630718000118 ], [ 30.89690433800007, 51.998325908000069 ], [ 30.94124271600009, 51.993804220000058 ], [ 30.940519247000111, 52.020081686000097 ], [ 30.911270386000069, 52.022562154000056 ], [ 30.934421428000064, 52.069716899000085 ], [ 31.134822632000123, 52.076667379000057 ], [ 31.228977091000104, 52.038220114000111 ], [ 31.304424683000093, 52.097492981000116 ], [ 31.383076213000038, 52.117491761000068 ], [ 31.474853556000085, 52.117775981000037 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-07", "NAME_1": "Volyn" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.183299601000044, 51.949750060999989 ], [ 25.351971477000063, 51.921483053000102 ], [ 25.547396408000054, 51.919441982000066 ], [ 25.563897331796397, 51.897039293128842 ], [ 25.662599317604418, 51.890579738963766 ], [ 25.630921665302594, 51.872079576511226 ], [ 25.638363071398601, 51.816785793829297 ], [ 25.509895461206554, 51.698653469581927 ], [ 25.511600782649964, 51.618115750341587 ], [ 25.557851189680662, 51.612457180054776 ], [ 25.602861362361978, 51.581916409314829 ], [ 25.551494989202354, 51.525434068227639 ], [ 25.566067743031908, 51.457660426787243 ], [ 25.55568078024379, 51.349346625446401 ], [ 25.582965935929167, 51.33270681406816 ], [ 25.63123172366511, 51.366658230393 ], [ 25.700736524970637, 51.362188219410768 ], [ 25.738770378650031, 51.388698228740225 ], [ 25.772618442187365, 51.370378933440975 ], [ 25.82026411319822, 51.384254055280394 ], [ 25.813391147883124, 51.322604072120214 ], [ 25.928887973800954, 51.239560044860184 ], [ 26.059370964698246, 51.181139838332854 ], [ 26.047588738829234, 51.136000475341632 ], [ 25.950902133726458, 51.108095201132585 ], [ 25.949816929008023, 51.072593492095962 ], [ 26.03327436741813, 51.070578111390716 ], [ 26.09223717630465, 51.004690660345659 ], [ 26.089756706706623, 50.976010239780692 ], [ 25.974931675256585, 50.945107733834845 ], [ 26.014670851278765, 50.907228908887021 ], [ 25.965784945918529, 50.857826240488578 ], [ 26.003198682872892, 50.834649360579476 ], [ 25.942995639637047, 50.82589020396972 ], [ 25.875454543092644, 50.792558906168551 ], [ 25.869563428809158, 50.696905828940828 ], [ 25.827240431300822, 50.631173408426037 ], [ 25.712260370219894, 50.664814765488984 ], [ 25.655623000401135, 50.707034410209815 ], [ 25.602861362361978, 50.706879381478245 ], [ 25.448607212352954, 50.654737861063438 ], [ 25.363392774756733, 50.678870755381013 ], [ 25.35254072397521, 50.632026069147742 ], [ 25.383753289182948, 50.614921169776153 ], [ 25.289857212040658, 50.613965156266943 ], [ 25.305515170588649, 50.563373928563919 ], [ 25.286601596986088, 50.543039252559424 ], [ 25.132502475708691, 50.548801174734422 ], [ 25.123200717639008, 50.527407132433211 ], [ 25.168365919951214, 50.500432034210974 ], [ 25.136843296381016, 50.468082587441415 ], [ 25.091833122800381, 50.461803901328949 ], [ 25.203557569726058, 50.380749417251764 ], [ 25.063462762396568, 50.294811510143063 ], [ 25.063772820759027, 50.334499010221123 ], [ 25.043774040639448, 50.348865058475667 ], [ 25.003879835885698, 50.345712796208545 ], [ 24.931894565881464, 50.370155747989372 ], [ 24.923988070892733, 50.349485175200641 ], [ 24.723793573114904, 50.343723253025701 ], [ 24.634238315745677, 50.413357245540396 ], [ 24.583543735255148, 50.418783270931158 ], [ 24.564113396815799, 50.436714993502108 ], [ 24.54892052626127, 50.436275743031104 ], [ 24.541789177628402, 50.410928452785868 ], [ 24.508561231715476, 50.407931220149692 ], [ 24.503755323949008, 50.435836494358682 ], [ 24.450373569184876, 50.469839585728266 ], [ 24.535432977150151, 50.500121974949138 ], [ 24.535743036411986, 50.518260403095098 ], [ 24.500809767256953, 50.545545558780475 ], [ 24.434250522643481, 50.549007880309375 ], [ 24.358544548691953, 50.609676012438001 ], [ 24.258912387796443, 50.575569566482272 ], [ 24.170855747194935, 50.621458238307014 ], [ 24.164706252291694, 50.640216783177948 ], [ 24.108165422895922, 50.630287410735377 ], [ 24.074943482000094, 50.690188701000054 ], [ 24.081041301000141, 50.712978007000046 ], [ 24.026884400000114, 50.72801584900013 ], [ 24.012828410000111, 50.74331207300007 ], [ 24.025850871000046, 50.767031555000031 ], [ 23.974277791000134, 50.776178284000096 ], [ 23.957637980000101, 50.808010967000072 ], [ 23.99288130700009, 50.836226298000028 ], [ 24.130857381000084, 50.839068502000018 ], [ 24.143156372000107, 50.856431783000019 ], [ 23.979342081000112, 50.937512106000057 ], [ 23.95505415800011, 50.983555807000059 ], [ 23.91174930800014, 51.006810201000079 ], [ 23.904204549000099, 51.062724101000057 ], [ 23.854491821000096, 51.121531881000053 ], [ 23.874748983000103, 51.136130473000023 ], [ 23.863586873000145, 51.148274434000101 ], [ 23.742664022000099, 51.216254780999989 ], [ 23.687266886000145, 51.292400005000061 ], [ 23.635177043000084, 51.304698996000113 ], [ 23.634040161000087, 51.339296367000102 ], [ 23.683856242000019, 51.370276388000022 ], [ 23.678895304000065, 51.394073385000084 ], [ 23.697602173000064, 51.404434509000012 ], [ 23.648716268000072, 51.45396637000006 ], [ 23.662772258000103, 51.480192159000083 ], [ 23.614816528000063, 51.497219544000117 ], [ 23.606238241000142, 51.517399191000024 ], [ 23.624118286000083, 51.515900574000099 ], [ 23.628665812000122, 51.531222636000066 ], [ 23.594352661000102, 51.604964905000102 ], [ 23.628975871000108, 51.629046122000048 ], [ 23.749692017000115, 51.644471538000047 ], [ 23.884877563000146, 51.619873556000059 ], [ 23.941308228000082, 51.581917216000036 ], [ 23.981305786000036, 51.585999654000048 ], [ 24.244132121000064, 51.718213807000055 ], [ 24.272347452000105, 51.742889303000069 ], [ 24.311518189000054, 51.827561136999989 ], [ 24.369602498000063, 51.875103455 ], [ 24.639766886000046, 51.892130839000018 ], [ 24.721829061000051, 51.882338156000074 ], [ 25.002742147000077, 51.910475973000089 ], [ 25.183299601000044, 51.949750060999989 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-56", "NAME_1": "Rivne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.547396408000054, 51.919441982000066 ], [ 25.76791508000008, 51.9285110470001 ], [ 26.050585165000086, 51.90481740400007 ], [ 26.175332072000089, 51.856706645000102 ], [ 26.407772665000039, 51.850608826000055 ], [ 26.419244832000061, 51.82092071600006 ], [ 26.445599813000115, 51.805598654 ], [ 26.665741415000127, 51.801387024000078 ], [ 26.920816284000125, 51.742527568000085 ], [ 27.021585327000111, 51.764541728000054 ], [ 27.151086466000095, 51.756764425000043 ], [ 27.177854858000075, 51.747075094000095 ], [ 27.189016968000089, 51.663772685000069 ], [ 27.277487020000137, 51.651137797000032 ], [ 27.254025920000061, 51.595378927000084 ], [ 27.26746179200012, 51.587498271000058 ], [ 27.409003540000072, 51.591709900000083 ], [ 27.477268107000015, 51.623671774000073 ], [ 27.512304728000032, 51.623129171000031 ], [ 27.676842488000148, 51.594810486000043 ], [ 27.705161174000125, 51.568352153000049 ], [ 27.66614627483068, 51.49019074250873 ], [ 27.585944452374576, 51.472284858359501 ], [ 27.576797723036464, 51.429367580749215 ], [ 27.600207146942239, 51.391850491007347 ], [ 27.50212527785925, 51.440219632430058 ], [ 27.488327671284992, 51.375314033315931 ], [ 27.509463332067128, 51.342086087403004 ], [ 27.482746616263285, 51.316764635579432 ], [ 27.416652458743954, 51.302140204007173 ], [ 27.451895786261503, 51.253073432392966 ], [ 27.449105259200337, 51.227932847722741 ], [ 27.397583856409824, 51.192172757166986 ], [ 27.358154737850839, 51.141969103091583 ], [ 27.349628127036397, 51.099826971837274 ], [ 27.299657016957724, 51.047194525906605 ], [ 27.223175896650275, 51.027221585108066 ], [ 27.198784620813569, 50.994045315139147 ], [ 27.236353387398879, 50.934514065471717 ], [ 27.215992872972663, 50.915910550231672 ], [ 27.239919060815964, 50.890382391933827 ], [ 27.225346306986467, 50.801447252188893 ], [ 27.271700066804613, 50.737368476274128 ], [ 27.193513625053754, 50.622026679087924 ], [ 27.235578241042958, 50.583010973477599 ], [ 27.192273389805052, 50.541204739007469 ], [ 27.137961459953374, 50.550971585070556 ], [ 27.126179234084361, 50.581977443803964 ], [ 27.097602166306899, 50.586602485316405 ], [ 27.072177361695879, 50.558723050428398 ], [ 26.97642093257997, 50.519190579081908 ], [ 26.901490105883681, 50.531747952206217 ], [ 26.807128940747987, 50.500897122204378 ], [ 26.796586948328979, 50.46146800454477 ], [ 26.739794548879331, 50.46487864833091 ], [ 26.703000928649942, 50.414054877530532 ], [ 26.650084262778478, 50.384418443456354 ], [ 26.643107943776556, 50.358993638845334 ], [ 26.479862094959685, 50.253573717353163 ], [ 26.383537225062867, 50.244142768074255 ], [ 26.303438755394211, 50.175542304333874 ], [ 26.233158806833444, 50.152287910058988 ], [ 26.230368279772279, 50.18236359280553 ], [ 26.201791212894136, 50.209080309508636 ], [ 26.230988397396629, 50.248561103112365 ], [ 26.221841668058516, 50.261686917017585 ], [ 26.154197218726665, 50.24158478500982 ], [ 26.065262078981732, 50.26525259133399 ], [ 26.021957227743826, 50.253367010878833 ], [ 25.947181430678484, 50.264529120022871 ], [ 25.809050327210798, 50.179159653695024 ], [ 25.675776808353021, 50.170581366936517 ], [ 25.635882602699951, 50.150789293291211 ], [ 25.606892123772468, 50.160892036138534 ], [ 25.566687859756883, 50.14076406480973 ], [ 25.453413120119365, 50.16272654879117 ], [ 25.441475863720143, 50.132263292417008 ], [ 25.467055697962053, 50.105210679828986 ], [ 25.416309442426837, 50.069192205955517 ], [ 25.410728387405129, 50.027954413165617 ], [ 25.374761590375101, 50.035499172948448 ], [ 25.367578565798169, 50.013123276917668 ], [ 25.19317060693794, 50.102704372708615 ], [ 25.192550490212909, 50.186962795896306 ], [ 25.164955275265697, 50.217193508273738 ], [ 25.207484979248363, 50.250111395824206 ], [ 25.19565107563659, 50.287990220772031 ], [ 25.104132114405559, 50.279360257170083 ], [ 25.063462762396568, 50.294811510143063 ], [ 25.203557569726058, 50.380749417251764 ], [ 25.091833122800381, 50.461803901328949 ], [ 25.136843296381016, 50.468082587441415 ], [ 25.168365919951214, 50.500432034210974 ], [ 25.122425571283088, 50.54009369586737 ], [ 25.143096144071762, 50.552857774566633 ], [ 25.270788608807209, 50.539628607873908 ], [ 25.297453647767611, 50.549266261828507 ], [ 25.305205112226133, 50.571538805071782 ], [ 25.289857212040658, 50.613965156266943 ], [ 25.383753289182948, 50.614921169776153 ], [ 25.35254072397521, 50.632026069147742 ], [ 25.363392774756733, 50.678870755381013 ], [ 25.448607212352954, 50.654737861063438 ], [ 25.602861362361978, 50.706879381478245 ], [ 25.655623000401135, 50.707034410209815 ], [ 25.712260370219894, 50.664814765488984 ], [ 25.83282148632253, 50.633188788231962 ], [ 25.870648635326233, 50.700678208832244 ], [ 25.875454543092644, 50.792558906168551 ], [ 25.942995639637047, 50.82589020396972 ], [ 26.003198682872892, 50.834649360579476 ], [ 25.965784945918529, 50.857826240488578 ], [ 26.014205763285304, 50.903275661842315 ], [ 25.978962436667075, 50.952497463986731 ], [ 26.067897577311328, 50.96676015945377 ], [ 26.095802849721736, 50.985156969118805 ], [ 26.073943719427064, 51.037065945536938 ], [ 26.041335890239111, 51.066340644405216 ], [ 25.946716342685022, 51.075177314481436 ], [ 25.952452427337619, 51.114141344147697 ], [ 26.047588738829234, 51.136000475341632 ], [ 26.059370964698246, 51.181139838332854 ], [ 25.928887973800954, 51.239560044860184 ], [ 25.813391147883124, 51.322604072120214 ], [ 25.82026411319822, 51.384254055280394 ], [ 25.772618442187365, 51.370378933440975 ], [ 25.738770378650031, 51.388698228740225 ], [ 25.700736524970637, 51.362188219410768 ], [ 25.63123172366511, 51.366658230393 ], [ 25.582965935929167, 51.33270681406816 ], [ 25.55568078024379, 51.349346625446401 ], [ 25.566067743031908, 51.457660426787243 ], [ 25.551494989202354, 51.525434068227639 ], [ 25.602861362361978, 51.581916409314829 ], [ 25.557851189680662, 51.612457180054776 ], [ 25.511600782649964, 51.618115750341587 ], [ 25.509895461206554, 51.698653469581927 ], [ 25.638363071398601, 51.816785793829297 ], [ 25.630921665302594, 51.872079576511226 ], [ 25.662599317604418, 51.890579738963766 ], [ 25.563897331796397, 51.897039293128842 ], [ 25.547396408000054, 51.919441982000066 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-18", "NAME_1": "Zhytomyr" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.210039917000103, 51.651964621000062 ], [ 28.245128214000147, 51.640621643000074 ], [ 28.257788940000097, 51.601760966000128 ], [ 28.310912313000131, 51.574449971000021 ], [ 28.333856649000069, 51.528380433000095 ], [ 28.46123905400006, 51.571659444000048 ], [ 28.603917684000123, 51.553546855000022 ], [ 28.637300659000118, 51.449625550000079 ], [ 28.66355228600014, 51.43399342900004 ], [ 28.703963257000112, 51.44262339300009 ], [ 28.728767945000072, 51.401256409000055 ], [ 28.751608928000081, 51.428748271000117 ], [ 28.752229045000036, 51.483706157000043 ], [ 28.79987471600009, 51.532617899000044 ], [ 28.863643432000117, 51.558921204000072 ], [ 28.980845581000068, 51.569463197000047 ], [ 29.043580770000091, 51.626178081000049 ], [ 29.123885945000012, 51.625041199000052 ], [ 29.160421183000039, 51.603311259000051 ], [ 29.226515340000105, 51.519052836000057 ], [ 29.221037638000041, 51.466962992 ], [ 29.264859253000111, 51.432908224000059 ], [ 29.297001994000141, 51.373712870000062 ], [ 29.390123732324355, 51.365082099259439 ], [ 29.374775832138937, 51.284802761538174 ], [ 29.270492791309266, 51.236872869687147 ], [ 29.310852084955741, 51.118740546339097 ], [ 29.342478062212763, 51.143751938900834 ], [ 29.362838575739659, 51.141633206307404 ], [ 29.48758548378305, 51.066547349980169 ], [ 29.464589471027239, 51.02417267472913 ], [ 29.462005650440403, 50.969705716145882 ], [ 29.393069289016466, 50.970119127295845 ], [ 29.505103794304659, 50.870254422403661 ], [ 29.489910922850811, 50.780828356243603 ], [ 29.567477247876695, 50.772095038055511 ], [ 29.592333611706806, 50.711091010042026 ], [ 29.480764194412018, 50.601692003083429 ], [ 29.51316531802496, 50.567353014030346 ], [ 29.496577182590897, 50.534383450535813 ], [ 29.4734778179469, 50.527097073171376 ], [ 29.498902621658658, 50.491698716922201 ], [ 29.481074252774533, 50.463535061194079 ], [ 29.444125603813518, 50.46257904678555 ], [ 29.46675988136343, 50.441288357271844 ], [ 29.426142206197824, 50.421987210041664 ], [ 29.444900750169438, 50.411109320838477 ], [ 29.536626417874857, 50.424209296321919 ], [ 29.567322219145069, 50.40689769137532 ], [ 29.608301628617255, 50.321476549103409 ], [ 29.642149693053852, 50.315895494081758 ], [ 29.69491133019369, 50.266854559989952 ], [ 29.69144900866479, 50.182156887230519 ], [ 29.723281690597503, 50.161124579235945 ], [ 29.734443800640861, 50.12148875600127 ], [ 29.66912479037677, 50.08291229906331 ], [ 29.684472690562188, 50.036842760085278 ], [ 29.671915318337255, 50.016275540084109 ], [ 29.733203566291536, 49.935298570372709 ], [ 29.630057407023685, 49.863468329100101 ], [ 29.441955194376703, 49.798356025310284 ], [ 29.449086541210875, 49.758565172444719 ], [ 29.418390740839982, 49.710118517555543 ], [ 29.478438755344257, 49.708955797572003 ], [ 29.483089634379098, 49.697431953222065 ], [ 29.447226190136519, 49.650871486929532 ], [ 29.362683547008089, 49.618909613787594 ], [ 29.281809930084194, 49.611649074844877 ], [ 29.264291619562584, 49.58454478631279 ], [ 28.992886997237122, 49.593252265179842 ], [ 28.978779331401029, 49.60382009512125 ], [ 28.995677525197607, 49.629115709422422 ], [ 28.947411736562401, 49.678466701876744 ], [ 29.004514194374565, 49.734199734130414 ], [ 28.942295770433418, 49.787969062522166 ], [ 28.939660272103879, 49.831144720752263 ], [ 28.909584587558641, 49.872382514441483 ], [ 28.835377232173528, 49.881400050771674 ], [ 28.753935173569403, 49.834891262221959 ], [ 28.720242139663014, 49.793963527794574 ], [ 28.629498324787846, 49.801043199583944 ], [ 28.571000603894731, 49.786651312907736 ], [ 28.519014113110813, 49.807296048174067 ], [ 28.430854119721801, 49.807761135268152 ], [ 28.390494826075326, 49.777142849263043 ], [ 28.353442824326862, 49.771484279875608 ], [ 28.26745324127404, 49.788227444041297 ], [ 28.02540083218264, 49.760373847574954 ], [ 27.868046094951296, 49.760063788313175 ], [ 27.660720249439919, 49.798950304512914 ], [ 27.59912194222386, 49.866465563534916 ], [ 27.597416619881074, 49.892820543233483 ], [ 27.540934278793941, 49.915093085577439 ], [ 27.545585157828725, 49.940982978181864 ], [ 27.580828485346331, 49.951447455335767 ], [ 27.543879836385315, 50.007077134801932 ], [ 27.609353875381032, 50.003666490116416 ], [ 27.66366580613203, 50.032553616256337 ], [ 27.66056521980903, 50.057694200027299 ], [ 27.621187778093486, 50.079346624746904 ], [ 27.647852817953151, 50.116708685757203 ], [ 27.627233921108541, 50.137870184961059 ], [ 27.649713169027507, 50.160556139354298 ], [ 27.607803581769872, 50.202155667350155 ], [ 27.607493524306676, 50.249336249468286 ], [ 27.582533806789741, 50.254555569284094 ], [ 27.549925977601788, 50.218382065779679 ], [ 27.488482700016561, 50.223756415226376 ], [ 27.48057620592715, 50.247940986387391 ], [ 27.400064325108474, 50.276983141258938 ], [ 27.403785028156506, 50.298170477985138 ], [ 27.308183627772166, 50.340338446761905 ], [ 27.288649937444632, 50.367881984865676 ], [ 27.228291863678521, 50.38684723621094 ], [ 27.253096550665248, 50.448032132277035 ], [ 27.304617954355081, 50.477978623814408 ], [ 27.260382928029685, 50.490148424210361 ], [ 27.192273389805052, 50.541204739007469 ], [ 27.235578241042958, 50.583010973477599 ], [ 27.193513625053754, 50.622026679087924 ], [ 27.271700066804613, 50.737368476274128 ], [ 27.225346306986467, 50.801447252188893 ], [ 27.239919060815964, 50.890382391933827 ], [ 27.215992872972663, 50.915910550231672 ], [ 27.236353387398879, 50.934514065471717 ], [ 27.198784620813569, 50.994045315139147 ], [ 27.223175896650275, 51.027221585108066 ], [ 27.299657016957724, 51.047194525906605 ], [ 27.349628127036397, 51.099826971837274 ], [ 27.358154737850839, 51.141969103091583 ], [ 27.397583856409824, 51.192172757166986 ], [ 27.449105259200337, 51.227932847722741 ], [ 27.451895786261503, 51.253073432392966 ], [ 27.416652458743954, 51.302140204007173 ], [ 27.482746616263285, 51.316764635579432 ], [ 27.509463332067128, 51.342086087403004 ], [ 27.488327671284992, 51.375314033315931 ], [ 27.50212527785925, 51.440219632430058 ], [ 27.600207146942239, 51.391850491007347 ], [ 27.576797723036464, 51.429367580749215 ], [ 27.585944452374576, 51.472284858359501 ], [ 27.66614627483068, 51.49019074250873 ], [ 27.730120890000109, 51.465154317000028 ], [ 27.792546021000078, 51.517295838000067 ], [ 27.799522339000077, 51.585198669000121 ], [ 27.831251668000107, 51.612923076000058 ], [ 27.87559004700006, 51.608039653000034 ], [ 27.954758342000048, 51.560781555000077 ], [ 28.070823608000097, 51.557629293000033 ], [ 28.210039917000103, 51.651964621000062 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-32", "NAME_1": "Kiev" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.660804078000126, 51.49313710600002 ], [ 29.69997481300004, 51.483706157000043 ], [ 29.737905314000045, 51.439496969000047 ], [ 29.828649129000098, 51.429962668000044 ], [ 29.886268351000069, 51.464792582000101 ], [ 29.92507735200013, 51.457867941000032 ], [ 30.00868981900004, 51.48207835 ], [ 30.177310018000128, 51.479494527 ], [ 30.320195353000145, 51.402083232000066 ], [ 30.330013876000123, 51.370353903000066 ], [ 30.317094767000128, 51.340588277000066 ], [ 30.355128621000063, 51.305267436000079 ], [ 30.428095744000075, 51.29175404900009 ], [ 30.539613484000085, 51.235168356000102 ], [ 30.554656844000078, 51.242507427000092 ], [ 30.553773634645495, 51.229121406127945 ], [ 30.514809604979291, 51.220336411995788 ], [ 30.531397738614714, 51.180287176711829 ], [ 30.511243930662829, 51.108043525188521 ], [ 30.51356936973059, 51.013165595216037 ], [ 30.55578901535074, 51.017170519104127 ], [ 30.649064975767999, 50.985570380268825 ], [ 30.663947787960012, 50.957458401384088 ], [ 30.655111117883791, 50.891984361489051 ], [ 30.780168084289642, 50.843563544122219 ], [ 30.740893996260922, 50.757367255494444 ], [ 30.793965691763219, 50.759641017718764 ], [ 30.836340366114996, 50.737006741068228 ], [ 30.871738722364114, 50.755300197945758 ], [ 30.93085656088158, 50.74646352786948 ], [ 31.089399854719488, 50.7672891302891 ], [ 31.113636101824625, 50.745378323151044 ], [ 31.11317101383122, 50.723674220688736 ], [ 31.158491244875052, 50.715457669136072 ], [ 31.212958205256939, 50.658768622473929 ], [ 31.218539260278646, 50.622879339809685 ], [ 31.179885288075582, 50.58766185251244 ], [ 31.219624464997025, 50.561539415011964 ], [ 31.258381789088276, 50.557741196698828 ], [ 31.275176629198086, 50.520766710215469 ], [ 31.328248324700382, 50.50844188108789 ], [ 31.462917108437807, 50.500225327736644 ], [ 31.496610142344196, 50.517898667889199 ], [ 31.613450555398799, 50.517640286370067 ], [ 31.686521030121412, 50.552831936144912 ], [ 31.748429395700043, 50.553193671350812 ], [ 31.783362664855076, 50.576448066525018 ], [ 31.796695184335249, 50.614223537786017 ], [ 31.847441440769842, 50.623938707005721 ], [ 31.961956414756742, 50.550093085027811 ], [ 32.028360629739268, 50.54508047078707 ], [ 32.030841099337238, 50.50441111877808 ], [ 31.993013950333534, 50.500432034210974 ], [ 31.973583611894128, 50.475343126384132 ], [ 32.007586704163032, 50.451055203334931 ], [ 32.020144077287341, 50.419765122862088 ], [ 32.089493848961922, 50.405760809813501 ], [ 32.072750684796233, 50.378010566134719 ], [ 32.139154900678079, 50.350105291925672 ], [ 32.069495069741663, 50.238690904261773 ], [ 31.999370151711105, 50.24654572240712 ], [ 31.973273552632349, 50.216056626711918 ], [ 31.995339390300614, 50.186497707902845 ], [ 31.987536248998651, 50.169289455743751 ], [ 31.954359979029789, 50.147533678236641 ], [ 31.91431074374583, 50.147275295818247 ], [ 31.853487582885634, 50.099991360013234 ], [ 31.871987746237494, 50.023458563761665 ], [ 31.810027703815479, 50.00563019487754 ], [ 31.806772087861532, 49.96020661104626 ], [ 31.716648389711395, 49.848533840963967 ], [ 31.613140497036284, 49.858145657396165 ], [ 31.596552361602164, 49.897626450999894 ], [ 31.570920851416133, 49.862693182744181 ], [ 31.5193994477263, 49.866465563534916 ], [ 31.496920199807334, 49.840033066772605 ], [ 31.430205925562973, 49.906101385870215 ], [ 31.335999790058224, 49.896747951856469 ], [ 31.21202802927013, 49.853959866354728 ], [ 31.178645053726257, 49.818251450843775 ], [ 31.198850539420846, 49.804350491481955 ], [ 31.182055698411716, 49.773809718943369 ], [ 31.196938510603786, 49.753449205416473 ], [ 31.169808383649979, 49.695519925304268 ], [ 31.174614292315709, 49.671748766192593 ], [ 31.128208855654123, 49.614439601906099 ], [ 31.129759149265283, 49.595784409822613 ], [ 31.156785923431585, 49.585190742358861 ], [ 31.155855747444775, 49.556381131483988 ], [ 30.950390252108434, 49.414296780072334 ], [ 30.908015577756714, 49.346135565903637 ], [ 30.868173048947028, 49.36063080536735 ], [ 30.725391066444558, 49.320788276557664 ], [ 30.684566684804622, 49.353835354418038 ], [ 30.619402704171421, 49.35853791029632 ], [ 30.592737665211075, 49.329935004097138 ], [ 30.550207961228409, 49.340657864568755 ], [ 30.498221470444491, 49.323863023559682 ], [ 30.437708367946811, 49.348512681814782 ], [ 30.419879999062687, 49.335955308690529 ], [ 30.382001174114862, 49.232964179053567 ], [ 30.349548373658479, 49.258053086880409 ], [ 30.169249302313403, 49.284123847537501 ], [ 30.182891880156149, 49.3214859085478 ], [ 30.15188602142274, 49.329547431368837 ], [ 30.104395379143398, 49.30128042285321 ], [ 30.111526726876946, 49.274977119098764 ], [ 30.038611280885902, 49.285105699468431 ], [ 29.920065544589193, 49.246245021690356 ], [ 29.871489699390111, 49.19684235329197 ], [ 29.869009229792084, 49.175913398084845 ], [ 29.761470574807163, 49.174621486892079 ], [ 29.729482863243504, 49.195214545314968 ], [ 29.740800002018432, 49.216815294090509 ], [ 29.641994663422963, 49.245108141027856 ], [ 29.593573846056131, 49.303709214708476 ], [ 29.525464307831498, 49.321847642854436 ], [ 29.499832797645468, 49.365669257130492 ], [ 29.507739291734879, 49.388794461095472 ], [ 29.56887251185691, 49.421634833380836 ], [ 29.540037061661053, 49.487780666844287 ], [ 29.564686720815473, 49.505970770934312 ], [ 29.56716718861486, 49.528088284546641 ], [ 29.496267124228382, 49.572788397966178 ], [ 29.51068484932631, 49.64027781856646 ], [ 29.447226190136519, 49.650871486929532 ], [ 29.482779575117263, 49.702651272138496 ], [ 29.419320915927528, 49.708077298428577 ], [ 29.449086541210875, 49.758565172444719 ], [ 29.437459344073432, 49.790837103949173 ], [ 29.630057407023685, 49.863468329100101 ], [ 29.727467481638939, 49.928787340263511 ], [ 29.733513624654051, 49.94744253234694 ], [ 29.671915318337255, 50.016275540084109 ], [ 29.684472690562188, 50.036842760085278 ], [ 29.66927981910834, 50.089785265277726 ], [ 29.734133742278345, 50.125829575774276 ], [ 29.723281690597503, 50.161124579235945 ], [ 29.69144900866479, 50.182156887230519 ], [ 29.69491133019369, 50.266854559989952 ], [ 29.642149693053852, 50.315895494081758 ], [ 29.608301628617255, 50.321476549103409 ], [ 29.567322219145069, 50.40689769137532 ], [ 29.536626417874857, 50.424209296321919 ], [ 29.444900750169438, 50.411109320838477 ], [ 29.426142206197824, 50.421987210041664 ], [ 29.46675988136343, 50.441288357271844 ], [ 29.444125603813518, 50.46257904678555 ], [ 29.481074252774533, 50.463535061194079 ], [ 29.498902621658658, 50.491698716922201 ], [ 29.4734778179469, 50.527097073171376 ], [ 29.496577182590897, 50.534383450535813 ], [ 29.51316531802496, 50.567353014030346 ], [ 29.480764194412018, 50.601692003083429 ], [ 29.592333611706806, 50.711091010042026 ], [ 29.567477247876695, 50.772095038055511 ], [ 29.489910922850811, 50.780828356243603 ], [ 29.505103794304659, 50.870254422403661 ], [ 29.393069289016466, 50.970119127295845 ], [ 29.462005650440403, 50.969705716145882 ], [ 29.464589471027239, 51.02417267472913 ], [ 29.48758548378305, 51.066547349980169 ], [ 29.362838575739659, 51.141633206307404 ], [ 29.342478062212763, 51.143751938900834 ], [ 29.310852084955741, 51.118740546339097 ], [ 29.270492791309266, 51.236872869687147 ], [ 29.349454380315365, 51.265966702301455 ], [ 29.384697706933594, 51.298161119440067 ], [ 29.39136396667368, 51.362110704145664 ], [ 29.353260212000123, 51.377055123000034 ], [ 29.402731975000108, 51.39614044200006 ], [ 29.466293986000039, 51.38505584800005 ], [ 29.505464722000113, 51.437455750000069 ], [ 29.660804078000126, 51.49313710600002 ] ], [ [ 30.753676885180084, 50.2891579715631 ], [ 30.791965799182265, 50.292555746950143 ], [ 30.790160822064252, 50.332587875330148 ], [ 30.830268158049023, 50.332724846574365 ], [ 30.846045721033192, 50.353492985013247 ], [ 30.817012763528169, 50.367226506797806 ], [ 30.760252259434196, 50.43988011157785 ], [ 30.768079276837113, 50.488703509559286 ], [ 30.750571941641795, 50.506299492727408 ], [ 30.77560546292176, 50.544198930136474 ], [ 30.842339119354847, 50.583978551369 ], [ 30.834853259770114, 50.63879710530216 ], [ 30.738579569391618, 50.668153050722708 ], [ 30.71559759865022, 50.651805437171163 ], [ 30.718544131106739, 50.62352455391499 ], [ 30.664327235313635, 50.602694650937337 ], [ 30.647182495975414, 50.575179282297995 ], [ 30.551813308637236, 50.580783641451887 ], [ 30.538686942548338, 50.571958808252361 ], [ 30.548079872987728, 50.548982771237888 ], [ 30.475767426025868, 50.595864218159136 ], [ 30.462512034202973, 50.630365880181216 ], [ 30.437266331376065, 50.634241784630603 ], [ 30.432651793045807, 50.66244745938269 ], [ 30.334013856054582, 50.663014239115796 ], [ 30.333473963352731, 50.637918952397683 ], [ 30.270164967539188, 50.63339306383881 ], [ 30.291309143102467, 50.609275474183733 ], [ 30.285561019225611, 50.588952523540115 ], [ 30.267873699111931, 50.608004352618764 ], [ 30.249909840166993, 50.600723265965939 ], [ 30.258627859088392, 50.565877710388008 ], [ 30.217438779875749, 50.542431728141707 ], [ 30.185993737221168, 50.387245468603453 ], [ 30.19660342970451, 50.374352670839073 ], [ 30.223303712196525, 50.382020633245588 ], [ 30.238241797620844, 50.414672186572147 ], [ 30.318757298210699, 50.40827410826347 ], [ 30.332238312847835, 50.368768432217337 ], [ 30.413718066535523, 50.303914962305612 ], [ 30.41059423723425, 50.261989207036265 ], [ 30.445622347093604, 50.263568562239357 ], [ 30.476911529143763, 50.199794880429351 ], [ 30.520806118907217, 50.190074235237716 ], [ 30.511085473715639, 50.146179644574886 ], [ 30.536180761333071, 50.145639750973714 ], [ 30.541697786423697, 50.097418012031596 ], [ 30.568478920665655, 50.091072387580596 ], [ 30.585565493652609, 50.014154717466226 ], [ 30.648197621922691, 50.03369265169448 ], [ 30.620784347019992, 50.122712035432073 ], [ 30.639759213017271, 50.12409198125988 ], [ 30.654383518684426, 50.155983494142902 ], [ 30.605901274923895, 50.267452462561096 ], [ 30.718108877222903, 50.262483327843256 ], [ 30.724343095457471, 50.309563514144827 ], [ 30.753676885180084, 50.2891579715631 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-21", "NAME_1": "Transcarpathia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.13283980300011, 48.40479848299999 ], [ 22.148342733000106, 48.508823141000065 ], [ 22.1387309160001, 48.569594625000079 ], [ 22.243220663000102, 48.651191711000038 ], [ 22.310296671000117, 48.68168080700012 ], [ 22.330760539000067, 48.756404928000038 ], [ 22.365693807000071, 48.794387106000059 ], [ 22.36889774600013, 48.856450501000026 ], [ 22.411789184000099, 48.887766419000016 ], [ 22.448996216000097, 48.971430562000037 ], [ 22.520516398000041, 48.992927958000095 ], [ 22.531988566000052, 49.055714824000049 ], [ 22.560720663000069, 49.085532125000057 ], [ 22.642886190000098, 49.043157451000027 ], [ 22.755334106000134, 49.044707743000046 ], [ 22.835019165000091, 48.999749248000043 ], [ 22.883130731298195, 49.005949611785127 ], [ 22.901269159444155, 48.991351020433228 ], [ 22.895378045160612, 48.929313462746109 ], [ 22.982142774569354, 48.85898183914054 ], [ 23.112315708003507, 48.870092272340457 ], [ 23.201560907010219, 48.77710053186405 ], [ 23.298247511213674, 48.781157131696261 ], [ 23.308479445270166, 48.750177110485254 ], [ 23.356745233006109, 48.770718492064759 ], [ 23.385735711034215, 48.734338283884654 ], [ 23.573786247737132, 48.71581228301045 ], [ 23.693003777602257, 48.644679673727921 ], [ 23.771500277715631, 48.644705512149642 ], [ 23.79149905783521, 48.59380422608416 ], [ 23.902293328774078, 48.543290514545561 ], [ 23.917227816910213, 48.474354153121624 ], [ 23.952419467584321, 48.472855536353904 ], [ 24.129307896042576, 48.533420314795649 ], [ 24.140831740392514, 48.47528432910849 ], [ 24.132408482365577, 48.41399608025489 ], [ 24.151063674449006, 48.368882554786069 ], [ 24.234056023966332, 48.350537421065098 ], [ 24.278446079023297, 48.360872707909095 ], [ 24.301597121409998, 48.387382717238609 ], [ 24.331672804156597, 48.374825344114299 ], [ 24.34826093869134, 48.337540799268425 ], [ 24.384899530189159, 48.334517727311265 ], [ 24.499414504176002, 48.262945869356372 ], [ 24.543184441608673, 48.209150703442162 ], [ 24.521583692833133, 48.171065172020064 ], [ 24.528456659047549, 48.146131292924792 ], [ 24.641111281060773, 48.052777818141749 ], [ 24.588194614289989, 47.99593374274798 ], [ 24.569808452598011, 47.937288541133228 ], [ 24.409186646000109, 47.952061259000075 ], [ 24.347174926000065, 47.920874532000099 ], [ 24.209302205000085, 47.89759430000008 ], [ 24.008797648000012, 47.961207988000055 ], [ 23.855215291000093, 47.934232890000047 ], [ 23.780077759000079, 47.987511291000018 ], [ 23.56324344900014, 48.005753072000076 ], [ 23.460820760000018, 47.971336569000115 ], [ 23.360051717000147, 47.993144023000056 ], [ 23.231377401000088, 48.079727886000072 ], [ 23.139083292000095, 48.098124695000067 ], [ 23.098982381000098, 48.071227112000045 ], [ 23.06311893700007, 48.007458395000029 ], [ 23.004414510000117, 47.983067119000012 ], [ 22.924109334000093, 48.004822896000022 ], [ 22.91584110500014, 47.95919260700002 ], [ 22.877600546000053, 47.946738587000127 ], [ 22.8324353430001, 47.978933004000069 ], [ 22.861580851000099, 48.028387350000017 ], [ 22.85475956200014, 48.047300924000055 ], [ 22.801429484000067, 48.090967509000038 ], [ 22.745722290000117, 48.116288961000109 ], [ 22.605472453000118, 48.097039490000057 ], [ 22.555759725000115, 48.177163799000041 ], [ 22.481449015000123, 48.242586162000023 ], [ 22.357115519000047, 48.243102926000049 ], [ 22.308126261000041, 48.293694153 ], [ 22.29872115100008, 48.34914296500007 ], [ 22.256759888000062, 48.357282003000066 ], [ 22.271849406000086, 48.403454895000024 ], [ 22.201982869000091, 48.418156840000037 ], [ 22.13283980300011, 48.40479848299999 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-77", "NAME_1": "Chernivtsi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.617889038000015, 48.258967591000058 ], [ 26.303489624000093, 48.212045390000114 ], [ 26.270726766000081, 48.093603007000027 ], [ 26.173058309000055, 47.993144023000056 ], [ 25.901240275000106, 47.965962219000048 ], [ 25.752515503000097, 47.934594626000049 ], [ 25.261744426000064, 47.898576152000047 ], [ 25.218956339000016, 47.87847402000007 ], [ 25.079946737000057, 47.742926738000065 ], [ 24.928857956000115, 47.713937702000109 ], [ 24.932514682606495, 47.754036363287526 ], [ 24.984811231752929, 47.840387682445566 ], [ 24.967241245287198, 47.906662706218867 ], [ 24.934840121674256, 47.947409573493019 ], [ 24.92817386193417, 47.996967272421671 ], [ 24.989152053324574, 48.100165106734266 ], [ 25.140408969798102, 48.181710517226577 ], [ 25.140874057791507, 48.231940008824324 ], [ 25.369645623346798, 48.380199693560996 ], [ 25.49284223777903, 48.403712470254277 ], [ 25.585136346265358, 48.392860419472754 ], [ 25.605806919054032, 48.521586412083252 ], [ 25.565447625407558, 48.625301012131956 ], [ 25.636192661062466, 48.678114326115235 ], [ 25.71505089728106, 48.664471747373227 ], [ 25.742336052966436, 48.629719347170123 ], [ 25.793547398293754, 48.670052802394878 ], [ 25.859589878070381, 48.618738105179375 ], [ 25.863000522755897, 48.600806383507745 ], [ 25.927854445026583, 48.586853746403222 ], [ 25.985628696407218, 48.623518175423442 ], [ 26.019786818307011, 48.616050930006395 ], [ 26.049139032440394, 48.647651068841753 ], [ 26.062316522289677, 48.628349920712253 ], [ 26.052601353069974, 48.571712550893494 ], [ 26.079783155967846, 48.547295437534387 ], [ 26.11724856886633, 48.541946926509411 ], [ 26.129650913259013, 48.554607652421225 ], [ 26.102314080730196, 48.606568304783423 ], [ 26.133061557944529, 48.609229641534682 ], [ 26.149494662848383, 48.539569811497586 ], [ 26.180862257687011, 48.526702379111498 ], [ 26.256723260370165, 48.533420314795649 ], [ 26.355011834128845, 48.510114244576698 ], [ 26.404001092276587, 48.534143785207505 ], [ 26.470560336890003, 48.53807119383049 ], [ 26.51526045120886, 48.514868476399045 ], [ 26.55282921689485, 48.465775865463797 ], [ 26.605745883665577, 48.451590685261863 ], [ 26.621868931106292, 48.458256944102686 ], [ 26.606986118014902, 48.492337550737375 ], [ 26.61566775935961, 48.506832791100408 ], [ 26.654063348244904, 48.491304022862323 ], [ 26.708995395720933, 48.496885077884031 ], [ 26.612567173036609, 48.550886949373194 ], [ 26.632824333775943, 48.562410793723132 ], [ 26.72181115126358, 48.535177313981819 ], [ 26.7391744321543, 48.557708237844849 ], [ 26.71721194817286, 48.59476024049269 ], [ 26.772764113273183, 48.550990302160699 ], [ 26.787595248621813, 48.601788235438676 ], [ 26.81875613788543, 48.606645820048527 ], [ 26.827954543167607, 48.561325589004696 ], [ 26.859270461162851, 48.540344956954186 ], [ 26.945260044215672, 48.581376044169076 ], [ 27.023394810022467, 48.560860501011291 ], [ 27.122768589398845, 48.56080882416785 ], [ 27.146953158761221, 48.581944484949986 ], [ 27.247567173386301, 48.570420641499368 ], [ 27.261778192009956, 48.59574209242362 ], [ 27.234389682637698, 48.618479722760981 ], [ 27.335003696363458, 48.601788235438676 ], [ 27.370402052612633, 48.629719347170123 ], [ 27.43820153157543, 48.602537543372875 ], [ 27.503829794000126, 48.472365418000052 ], [ 27.403474161000076, 48.411490581000109 ], [ 27.342185913000037, 48.436114401000097 ], [ 27.306012411000097, 48.423660380000015 ], [ 27.20855065900011, 48.360615133000081 ], [ 27.037398315000104, 48.399682516 ], [ 27.025409383000039, 48.389863994000038 ], [ 27.033057495000037, 48.36020172200007 ], [ 26.943243856000038, 48.351261699000034 ], [ 26.831932821000066, 48.39136261000003 ], [ 26.816946655000095, 48.371725566000109 ], [ 26.777517538000097, 48.366170350000104 ], [ 26.785734090000119, 48.294107564000015 ], [ 26.735918010000091, 48.291833801000095 ], [ 26.679797404000055, 48.330177714000015 ], [ 26.625123739000088, 48.282893778000059 ], [ 26.617889038000015, 48.258967591000058 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-26", "NAME_1": "Ivano-Frankivs'k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.928857956000115, 47.713937702000109 ], [ 24.877788533000114, 47.718742167000087 ], [ 24.793659302000066, 47.804473369000064 ], [ 24.679144328000064, 47.840130107000064 ], [ 24.649275350000039, 47.895217184000032 ], [ 24.569808452598011, 47.937288541133228 ], [ 24.588194614289989, 47.99593374274798 ], [ 24.641111281060773, 48.052777818141749 ], [ 24.528456659047549, 48.146131292924792 ], [ 24.521583692833133, 48.171065172020064 ], [ 24.541479120165263, 48.212768052803369 ], [ 24.494918653872787, 48.266614895560963 ], [ 24.384899530189159, 48.334517727311265 ], [ 24.34826093869134, 48.337540799268425 ], [ 24.335703565567087, 48.370742905860368 ], [ 24.309503614600089, 48.387382717238609 ], [ 24.256586947829362, 48.35309540502891 ], [ 24.177728713409351, 48.35461985931903 ], [ 24.151063674449006, 48.368882554786069 ], [ 24.130858188754416, 48.425985011698913 ], [ 24.133648715815582, 48.531094875727888 ], [ 24.001460401676184, 48.500140692938601 ], [ 23.952419467584321, 48.472855536353904 ], [ 23.917227816910213, 48.474354153121624 ], [ 23.90678917817803, 48.537967841042985 ], [ 23.79149905783521, 48.59380422608416 ], [ 23.776616244743877, 48.64214752908515 ], [ 23.693003777602257, 48.644679673727921 ], [ 23.612440219940197, 48.703823351566371 ], [ 23.532858514209067, 48.723692939577461 ], [ 23.575336541348292, 48.833867091992659 ], [ 23.548361444025431, 48.884949246110807 ], [ 23.576473422910112, 48.968639228517532 ], [ 23.641637404442633, 49.010755520450857 ], [ 23.684115430682539, 49.086771551865581 ], [ 23.710987176117271, 49.10428986328651 ], [ 23.905703972560275, 49.107183743135238 ], [ 23.955675082638948, 49.128009345554801 ], [ 24.003320753649859, 49.116433824361479 ], [ 24.084504428936214, 49.145579332020532 ], [ 24.158195021283177, 49.134985662758083 ], [ 24.441226840746083, 49.194103502174869 ], [ 24.44618777814344, 49.208469550429356 ], [ 24.417662388108681, 49.235212103755543 ], [ 24.356942580036048, 49.241025702773925 ], [ 24.362885370263598, 49.297353014230225 ], [ 24.339579299145328, 49.303605861920971 ], [ 24.299840122223827, 49.285209052255937 ], [ 24.281856723708813, 49.301022040434816 ], [ 24.369551629104365, 49.326136785784001 ], [ 24.423243442231069, 49.366444404385732 ], [ 24.383349236577999, 49.393781236015229 ], [ 24.426499058184959, 49.449462592324778 ], [ 24.413269890592971, 49.48338817022784 ], [ 24.438746372047433, 49.515685940154015 ], [ 24.584577264029519, 49.523980007871046 ], [ 24.707050408949215, 49.491785589833057 ], [ 24.804150425201954, 49.388871975461257 ], [ 24.832882520811665, 49.339572658950999 ], [ 24.823425734010414, 49.313786119134079 ], [ 24.838308547101747, 49.262213040399445 ], [ 24.879132927842306, 49.229398504737162 ], [ 24.880838250185093, 49.201751613845886 ], [ 24.851175977689195, 49.175293281359814 ], [ 24.860012647765473, 49.119379381053591 ], [ 24.917115105577636, 49.122686672951545 ], [ 24.981555616698358, 49.099199733780665 ], [ 24.985586379008168, 49.051734930822363 ], [ 24.903627557365837, 49.061062527313766 ], [ 24.897581414350782, 49.039849352165845 ], [ 24.95034305238994, 49.020754910510675 ], [ 24.99256269711077, 48.969621080448462 ], [ 25.067028435813654, 48.972463284353069 ], [ 25.119635044221923, 48.951379300414374 ], [ 25.122994012063998, 48.907609361183063 ], [ 25.165575391990728, 48.865493069249737 ], [ 25.197356397979377, 48.91773794245205 ], [ 25.245777215346209, 48.931380520294738 ], [ 25.225313348132488, 48.84200613097812 ], [ 25.250066359175094, 48.859446926234625 ], [ 25.327736036988483, 48.84200613097812 ], [ 25.250066359175094, 48.817692369507199 ], [ 25.238955925975176, 48.801052558129015 ], [ 25.25099653516196, 48.77516266552459 ], [ 25.327736036988483, 48.814695135971704 ], [ 25.35409101668705, 48.813868312772399 ], [ 25.356106398291615, 48.854589342524093 ], [ 25.430778842569509, 48.849447537074127 ], [ 25.440390659001707, 48.869937241810248 ], [ 25.47108646027192, 48.862495835714242 ], [ 25.450002476333225, 48.835779119910455 ], [ 25.461112908633822, 48.825288805234152 ], [ 25.565447625407558, 48.793430283980399 ], [ 25.640068393741387, 48.745035305035287 ], [ 25.627614373404583, 48.71826691328738 ], [ 25.646269566387389, 48.69726044371447 ], [ 25.636192661062466, 48.678114326115235 ], [ 25.565447625407558, 48.625301012131956 ], [ 25.605806919054032, 48.521586412083252 ], [ 25.585136346265358, 48.392860419472754 ], [ 25.49284223777903, 48.403712470254277 ], [ 25.369645623346798, 48.380199693560996 ], [ 25.140874057791507, 48.231940008824324 ], [ 25.140408969798102, 48.181710517226577 ], [ 24.989152053324574, 48.100165106734266 ], [ 24.92817386193417, 47.996967272421671 ], [ 24.934840121674256, 47.947409573493019 ], [ 24.967241245287198, 47.906662706218867 ], [ 24.984811231752929, 47.840387682445566 ], [ 24.932514682606495, 47.754036363287526 ], [ 24.928857956000115, 47.713937702000109 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-51", "NAME_1": "Odessa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.21293379700009, 45.450198466000089 ], [ 28.19949792500006, 45.461773987000058 ], [ 28.217274617000072, 45.493348288000035 ], [ 28.270501343000063, 45.521511943000078 ], [ 28.502011760000045, 45.508747864000028 ], [ 28.498239380000115, 45.558718974 ], [ 28.536893351000117, 45.57980295900002 ], [ 28.511313517000076, 45.635045065000028 ], [ 28.474003133000053, 45.657937725000053 ], [ 28.515240926000047, 45.702017721000018 ], [ 28.561439657000108, 45.71659047499999 ], [ 28.576684204000031, 45.76191070599999 ], [ 28.66975345900002, 45.777310283000091 ], [ 28.66975345900002, 45.812036845000122 ], [ 28.738276407000058, 45.837565003000051 ], [ 28.74644128400007, 45.870586243000034 ], [ 28.72840620900007, 45.921952617000088 ], [ 28.740240112000066, 45.95321685800009 ], [ 28.956867717000137, 46.001379293000056 ], [ 28.938780965000035, 46.089280905000052 ], [ 29.015365438000117, 46.182608541000022 ], [ 29.009836059000122, 46.204364319000021 ], [ 28.933509969000085, 46.258986308000047 ], [ 28.944878784000082, 46.320739645000046 ], [ 28.919247274000014, 46.404662171000055 ], [ 28.945808960000136, 46.454788310000069 ], [ 29.184244018000101, 46.538039043000069 ], [ 29.206774943000141, 46.502511495000121 ], [ 29.205638061000116, 46.406109111000049 ], [ 29.183417196000079, 46.377609558000088 ], [ 29.200677124000094, 46.357119853000128 ], [ 29.283256062000135, 46.397427470000068 ], [ 29.289147176000142, 46.451636047000093 ], [ 29.306717163000087, 46.471996562000029 ], [ 29.374723348000089, 46.416186015000065 ], [ 29.457612345000086, 46.484708965 ], [ 29.486447795000117, 46.475872295000087 ], [ 29.480866740000124, 46.42515187700009 ], [ 29.541431519000071, 46.413033753000022 ], [ 29.582979370000146, 46.369651388000122 ], [ 29.615638875000116, 46.361822409000084 ], [ 29.64550785300014, 46.375594178000043 ], [ 29.654396199000075, 46.422697245000037 ], [ 29.702868693000141, 46.428329976000057 ], [ 29.714134155000067, 46.471169739000018 ], [ 29.80033044400011, 46.398357646000122 ], [ 29.808185262000052, 46.354691061000054 ], [ 29.828132365000045, 46.339394837 ], [ 29.918669474000069, 46.373656311000033 ], [ 30.081140177000123, 46.374198914000075 ], [ 30.131576375000122, 46.422826437000069 ], [ 30.077006063000113, 46.422826437000069 ], [ 30.014064168000061, 46.462023010000038 ], [ 30.021712280000145, 46.470652975000078 ], [ 30.002850383000123, 46.494217428000084 ], [ 29.970552612000063, 46.491736960000097 ], [ 29.901926310000135, 46.530830180000024 ], [ 29.898825724000062, 46.553128561000065 ], [ 29.938099812000132, 46.557340190000033 ], [ 29.949675334000062, 46.578863424000062 ], [ 29.931278524000106, 46.61917104100003 ], [ 29.951122273000067, 46.743116964000095 ], [ 29.928177938000147, 46.8097537230001 ], [ 29.889627319000056, 46.807169902000012 ], [ 29.84363529400008, 46.854143779000069 ], [ 29.754131714000039, 46.858019511000023 ], [ 29.696150757000112, 46.904683329000093 ], [ 29.558691447000058, 46.945740255000047 ], [ 29.572489055000119, 47.011756897000097 ], [ 29.602099650000071, 47.061004538000063 ], [ 29.57016361500007, 47.091441956000054 ], [ 29.52014082900007, 47.059919332000064 ], [ 29.477869507000094, 47.111544088000088 ], [ 29.544842163000112, 47.135573629000035 ], [ 29.544015340000044, 47.234249777000045 ], [ 29.580188843000087, 47.260449727000051 ], [ 29.556572714000083, 47.324037578000045 ], [ 29.480866740000124, 47.338274435000116 ], [ 29.459162638000123, 47.29349680600005 ], [ 29.409553263000134, 47.279750876000023 ], [ 29.367592, 47.308224590000052 ], [ 29.345836222000116, 47.365843811 ], [ 29.300826050000069, 47.378194479000044 ], [ 29.232613159000039, 47.446329855000059 ], [ 29.182073609000042, 47.429870911000094 ], [ 29.155615275000031, 47.44999888100007 ], [ 29.117426391000066, 47.53332712800001 ], [ 29.182073609000042, 47.613218893000109 ], [ 29.196956421000067, 47.717501933000037 ], [ 29.2386076250001, 47.756000875000026 ], [ 29.177836141000085, 47.789719747000063 ], [ 29.23602380300008, 47.870722555000086 ], [ 29.172565145000135, 47.891005554000074 ], [ 29.147967163000146, 47.955368551000063 ], [ 29.12398929800014, 47.975987447000065 ], [ 29.061047404000135, 47.96976043799999 ], [ 29.017225790000055, 47.931080628000089 ], [ 28.980845581000068, 47.92637807200002 ], [ 28.914803101000103, 47.953146464000085 ], [ 28.862085148000034, 48.000502077000093 ], [ 29.046113722370364, 48.083111884206062 ], [ 29.045028516752609, 48.134426581421565 ], [ 29.103991327437768, 48.143573309860358 ], [ 29.24630822104757, 48.084507148186333 ], [ 29.338447299902953, 48.086212470529063 ], [ 29.449706658835225, 48.11354930305788 ], [ 29.510374790064475, 48.0904240990929 ], [ 29.675015902861617, 48.090269070361273 ], [ 29.698166945248317, 48.131687730304463 ], [ 29.671140171082016, 48.177395534975915 ], [ 29.820433383693683, 48.211011054516518 ], [ 29.882186721440007, 48.18000519488379 ], [ 29.929057245195679, 48.222224840503941 ], [ 29.959442987204056, 48.209589952114584 ], [ 29.996753371370971, 48.220984605255296 ], [ 30.04780968616808, 48.155200506997801 ], [ 30.083466423936272, 48.143728339491247 ], [ 30.293066034369986, 48.135718491715011 ], [ 30.3152868998705, 48.092982083056654 ], [ 30.210538771047425, 48.067815659964708 ], [ 30.226196729595358, 48.047661852012823 ], [ 30.215964797337506, 47.998775947551906 ], [ 30.295546502169316, 47.949579982929833 ], [ 30.331409946411895, 47.821112371838467 ], [ 30.394558547239171, 47.792173569754425 ], [ 30.399364455005582, 47.772278144220934 ], [ 30.379210646154377, 47.747266750759934 ], [ 30.41378217920419, 47.719723211756786 ], [ 30.401534865341716, 47.686934516314864 ], [ 30.420345086156772, 47.648358059376903 ], [ 30.475897251257095, 47.622106432465841 ], [ 30.549742873235004, 47.617610582162627 ], [ 30.592892693942645, 47.637506007696061 ], [ 30.665808139933688, 47.625646267461264 ], [ 30.694798617961851, 47.587948310566048 ], [ 30.719810012322171, 47.623139960340893 ], [ 30.779858025927126, 47.633733628703965 ], [ 30.785749139311292, 47.586553045686458 ], [ 30.831534458348528, 47.580532741992442 ], [ 30.868173048947028, 47.543454901822258 ], [ 30.871583692733225, 47.512526557454635 ], [ 30.833859898315609, 47.429508369515588 ], [ 30.915301955121095, 47.276701158531637 ], [ 31.010593296243599, 47.269104722804684 ], [ 31.039635451115146, 47.25094045713638 ], [ 31.153685337108584, 47.271662705869176 ], [ 31.171978793986113, 47.240579331870663 ], [ 31.118131952127897, 47.206937974807659 ], [ 31.11642662888579, 47.182339993395942 ], [ 31.181900668780827, 47.157716173562562 ], [ 31.223500196776627, 47.165829373226984 ], [ 31.269130487082293, 47.110354723391765 ], [ 31.304167108125512, 47.101828110778683 ], [ 31.294555290793994, 47.050461738518379 ], [ 31.260242140162632, 47.000103053912767 ], [ 31.223965284770031, 46.977417101318167 ], [ 31.113791130556194, 46.975427558135266 ], [ 31.092707146617499, 46.956979072526167 ], [ 31.031522250551404, 46.947806504766334 ], [ 31.056378615280835, 46.897396145115977 ], [ 31.162211947923026, 46.825385036690079 ], [ 31.187946811795882, 46.629092109113515 ], [ 30.991384311000047, 46.601263739000046 ], [ 30.854502800000034, 46.553412177000041 ], [ 30.79070071700005, 46.552923895000049 ], [ 30.754893425000034, 46.515855210000041 ], [ 30.79818769600007, 46.446437893000052 ], [ 30.772471550000034, 46.396429755000042 ], [ 30.71452884200005, 46.34796784100007 ], [ 30.651866082000083, 46.344549872000073 ], [ 30.686778191000087, 46.309027411000045 ], [ 30.653493686000047, 46.259588934000078 ], [ 30.523285352000073, 46.133775132000039 ], [ 30.494151238000086, 46.080471096000053 ], [ 30.371267123000052, 45.997951565000051 ], [ 30.26140384200005, 45.895493882000039 ], [ 30.13843834700009, 45.81976959800005 ], [ 30.127452019000089, 45.891343492000033 ], [ 30.094574415000068, 45.814846096000053 ], [ 30.061208530000044, 45.813462632000039 ], [ 29.990733269000089, 45.847072658000059 ], [ 29.96851647200009, 45.838934637000079 ], [ 29.95289147200009, 45.771958726000037 ], [ 29.932383660000085, 45.79242584800005 ], [ 29.935069207000083, 45.816148179000038 ], [ 29.918711785000085, 45.799872137000079 ], [ 29.939300977000073, 45.751532294000071 ], [ 29.932383660000085, 45.724188544000071 ], [ 29.887705925000034, 45.765122789000088 ], [ 29.80241946700005, 45.737494208000044 ], [ 29.803233269000089, 45.704169012000079 ], [ 29.86500084700009, 45.672349351000037 ], [ 29.809580925000034, 45.648586330000057 ], [ 29.789073113000086, 45.655259507000039 ], [ 29.789073113000086, 45.635443427000041 ], [ 29.73373457100007, 45.614325262000079 ], [ 29.72396894600007, 45.66742584800005 ], [ 29.682627800000034, 45.696844794000071 ], [ 29.679209832000083, 45.751532294000071 ], [ 29.693858269000089, 45.781317450000074 ], [ 29.642832879000082, 45.827215887000079 ], [ 29.633555535000085, 45.821356512000079 ], [ 29.651866082000083, 45.789007880000042 ], [ 29.623871290000068, 45.751532294000071 ], [ 29.637543165000068, 45.709906317000048 ], [ 29.60320071700005, 45.691310940000051 ], [ 29.589691602000073, 45.559068101000037 ], [ 29.648448113000086, 45.545396226000037 ], [ 29.707041863000086, 45.573309637000079 ], [ 29.605723504000082, 45.478176174000055 ], [ 29.640798373000052, 45.441799221000053 ], [ 29.65601647200009, 45.474188544000071 ], [ 29.672373894000089, 45.477118231000077 ], [ 29.675303582000083, 45.449611721000053 ], [ 29.702159050000034, 45.456610419000071 ], [ 29.713226759000065, 45.436224677000041 ], [ 29.732269727000073, 45.475734768000052 ], [ 29.754649285000085, 45.447251695000034 ], [ 29.74781334700009, 45.414292710000041 ], [ 29.727712436000047, 45.415676174000055 ], [ 29.750173373000052, 45.385809637000079 ], [ 29.754893425000034, 45.312689520000049 ], [ 29.729746941000087, 45.23773834800005 ], [ 29.70875084700009, 45.223334052000041 ], [ 29.659027540000068, 45.215887762000079 ], [ 29.672276245000035, 45.272948303000035 ], [ 29.650262085000122, 45.346122132000019 ], [ 29.569698527000071, 45.39495636 ], [ 29.430637248000039, 45.430406392000023 ], [ 29.32211674000007, 45.443842265000072 ], [ 29.281809122000141, 45.422293193000129 ], [ 29.228168986000071, 45.423740133000123 ], [ 29.17432214300004, 45.388961894000076 ], [ 28.973662557000097, 45.32369456000005 ], [ 28.952836954000134, 45.285092265000046 ], [ 28.92989261800011, 45.279097799000013 ], [ 28.831810750000074, 45.322299297000043 ], [ 28.78974613400004, 45.321420797000101 ], [ 28.790159545000051, 45.292068583000045 ], [ 28.759670451000147, 45.27418853799999 ], [ 28.802665243000035, 45.244164531000123 ], [ 28.710061076000073, 45.226956279000049 ], [ 28.577045939000129, 45.248091939000076 ], [ 28.353286987000047, 45.312429098000067 ], [ 28.310808960000088, 45.347827454000097 ], [ 28.281198364000147, 45.401829326000055 ], [ 28.286417684000071, 45.42172475200006 ], [ 28.237635132000037, 45.452058818000111 ], [ 28.21293379700009, 45.450198466000089 ] ] ], [ [ [ 29.918711785000085, 45.690659898000035 ], [ 30.075694207000083, 45.79242584800005 ], [ 30.125987175000034, 45.811468817000048 ], [ 29.908050977000073, 45.666449286000045 ], [ 29.807465040000068, 45.614325262000079 ], [ 29.730967644000089, 45.591376044000071 ], [ 29.918711785000085, 45.690659898000035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-05", "NAME_1": "Vinnytsya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.62702640800012, 48.45125559500012 ], [ 27.606872599000042, 48.45781850200008 ], [ 27.604805542000065, 48.484121806000033 ], [ 27.503829794000126, 48.472365418000052 ], [ 27.43820153157543, 48.602537543372875 ], [ 27.370402052612633, 48.629719347170123 ], [ 27.399289177853234, 48.708500068123612 ], [ 27.396188592429553, 48.760899970057551 ], [ 27.426109247343845, 48.773664048756814 ], [ 27.371952345324473, 48.935023708976985 ], [ 27.398359001866424, 48.956960354536704 ], [ 27.3801688977764, 48.986777655764172 ], [ 27.394948358080228, 49.017525132978506 ], [ 27.470654331132437, 49.075867825139994 ], [ 27.500471633259224, 49.126148994480502 ], [ 27.573697136713463, 49.122531643320656 ], [ 27.615710076758603, 49.159893704330955 ], [ 27.772599725097223, 49.116433824361479 ], [ 27.810633578776617, 49.141806953028436 ], [ 27.887734815809097, 49.158756821869815 ], [ 27.855333693095417, 49.241645820398276 ], [ 27.877347853020979, 49.276889147016504 ], [ 27.852078078040847, 49.304897773113737 ], [ 27.851457961315816, 49.330787664818843 ], [ 27.819160191389699, 49.34117462850628 ], [ 27.8033472023115, 49.378975939088321 ], [ 27.84401655432049, 49.39610667598231 ], [ 27.839469028073154, 49.4163379991993 ], [ 27.825981479861412, 49.429851385832762 ], [ 27.743144159075655, 49.436517646472169 ], [ 27.739578484759249, 49.451348781820798 ], [ 27.76345299665843, 49.469590562754263 ], [ 27.72433393736128, 49.499898790396855 ], [ 27.732137078663243, 49.526227932573022 ], [ 27.78427859907805, 49.536098131423614 ], [ 27.767173699706461, 49.566638902163561 ], [ 27.815594517073293, 49.630924384552657 ], [ 27.751515741158528, 49.673505764479444 ], [ 27.762212762309105, 49.69980906823389 ], [ 27.814354281824649, 49.70404653611871 ], [ 27.836575148224483, 49.725698960838372 ], [ 27.813424106737102, 49.74104686102379 ], [ 27.868046094951296, 49.760063788313175 ], [ 28.02540083218264, 49.760373847574954 ], [ 28.26745324127404, 49.788227444041297 ], [ 28.353442824326862, 49.771484279875608 ], [ 28.390494826075326, 49.777142849263043 ], [ 28.430854119721801, 49.807761135268152 ], [ 28.519014113110813, 49.807296048174067 ], [ 28.571000603894731, 49.786651312907736 ], [ 28.629498324787846, 49.801043199583944 ], [ 28.720242139663014, 49.793963527794574 ], [ 28.753935173569403, 49.834891262221959 ], [ 28.835377232173528, 49.881400050771674 ], [ 28.909584587558641, 49.872382514441483 ], [ 28.939660272103879, 49.831144720752263 ], [ 28.942295770433418, 49.787969062522166 ], [ 29.004514194374565, 49.734199734130414 ], [ 28.947411736562401, 49.678466701876744 ], [ 28.995677525197607, 49.629115709422422 ], [ 28.978779331401029, 49.60382009512125 ], [ 28.992886997237122, 49.593252265179842 ], [ 29.264291619562584, 49.58454478631279 ], [ 29.281809930084194, 49.611649074844877 ], [ 29.362683547008089, 49.618909613787594 ], [ 29.422266472619583, 49.651284898079552 ], [ 29.51068484932631, 49.64027781856646 ], [ 29.496267124228382, 49.572788397966178 ], [ 29.565306838439824, 49.532480781163088 ], [ 29.566237012627994, 49.508399562789577 ], [ 29.540037061661053, 49.487780666844287 ], [ 29.569802686944399, 49.430626533088002 ], [ 29.504948764673713, 49.386339829919166 ], [ 29.499832797645468, 49.365669257130492 ], [ 29.531510450846611, 49.317661851813 ], [ 29.593573846056131, 49.303709214708476 ], [ 29.641994663422963, 49.245108141027856 ], [ 29.687728305616815, 49.241232408348935 ], [ 29.697236769261451, 49.227279772143731 ], [ 29.674705845398421, 49.202475084257685 ], [ 29.712119582352841, 49.17792877879009 ], [ 29.707158644056165, 49.131678371759449 ], [ 29.67486087412999, 49.114625149231244 ], [ 29.67408572777407, 49.088451035786647 ], [ 29.6095418638659, 49.062121894509801 ], [ 29.594814081304776, 49.026981919779757 ], [ 29.67083011182018, 49.00140208643711 ], [ 29.672690463793856, 48.983522039810282 ], [ 29.635948521307171, 48.947038478842671 ], [ 29.716150343763331, 48.914378973710654 ], [ 29.722351514610693, 48.89696401597655 ], [ 29.703592970639079, 48.867482612432582 ], [ 29.745295851422384, 48.848543199509038 ], [ 29.772477655219575, 48.769297390562087 ], [ 29.846323276298165, 48.764827379579856 ], [ 29.884047071615043, 48.743278306748437 ], [ 29.857537062285587, 48.71769847340579 ], [ 29.859087354997428, 48.698319810910505 ], [ 29.958202751955412, 48.655325018934434 ], [ 29.963628778245493, 48.609849758259713 ], [ 30.021661411145203, 48.533627021269979 ], [ 29.957892693592896, 48.459316311298721 ], [ 30.036905959442436, 48.473785712340714 ], [ 30.076128370627771, 48.455078844313164 ], [ 30.038766309617472, 48.427690334940962 ], [ 29.998096957608482, 48.42205760397519 ], [ 29.940064324708771, 48.375600491369539 ], [ 29.916964959165512, 48.428310452565313 ], [ 29.883426954890012, 48.432599596394255 ], [ 29.783019646739262, 48.356893622442669 ], [ 29.775423211012367, 48.316896064002151 ], [ 29.738164503688893, 48.270077216190543 ], [ 29.783639764363613, 48.253695787230754 ], [ 29.786740349787294, 48.228296821041454 ], [ 29.774803094287336, 48.203104560427107 ], [ 29.666644320778744, 48.17308055272531 ], [ 29.698166945248317, 48.131687730304463 ], [ 29.675015902861617, 48.090269070361273 ], [ 29.510374790064475, 48.0904240990929 ], [ 29.449706658835225, 48.11354930305788 ], [ 29.338447299902953, 48.086212470529063 ], [ 29.24630822104757, 48.084507148186333 ], [ 29.086162956755004, 48.145692044252428 ], [ 29.04239301932239, 48.131636054360399 ], [ 29.046113722370364, 48.083111884206062 ], [ 28.862085148000034, 48.000502077000093 ], [ 28.83253422100006, 48.024821676000059 ], [ 28.805920858000036, 48.103809103000017 ], [ 28.771245972000088, 48.124453837000019 ], [ 28.541595906000111, 48.155950623000066 ], [ 28.519323364000059, 48.149129334000023 ], [ 28.479584188000047, 48.064922588000044 ], [ 28.4190194090001, 48.122231751000115 ], [ 28.436899455000059, 48.14985280400002 ], [ 28.411578003000074, 48.17070424399999 ], [ 28.388633667000136, 48.168585511000018 ], [ 28.349566284000048, 48.129724833000054 ], [ 28.317423543000103, 48.135357565000092 ], [ 28.322177775000085, 48.163211161000063 ], [ 28.363363892000081, 48.191013082 ], [ 28.357731161000061, 48.238607076000036 ], [ 28.294479207000052, 48.236488343000062 ], [ 28.216964559000104, 48.208143820000046 ], [ 28.189369344000113, 48.223052470000098 ], [ 28.178517293000141, 48.258864238000044 ], [ 28.093251180000095, 48.237444357000115 ], [ 28.078678426000124, 48.244911601000055 ], [ 28.098315471000063, 48.2841081750001 ], [ 28.076404663000119, 48.314933167000063 ], [ 27.92643965600007, 48.33942779500002 ], [ 27.849855184000063, 48.409630229000086 ], [ 27.751773315000094, 48.451979066000021 ], [ 27.62702640800012, 48.45125559500012 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-46", "NAME_1": "L'viv" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.687844686000091, 49.155915426000078 ], [ 22.737764120000065, 49.275391338000034 ], [ 22.719780721000092, 49.382981670000063 ], [ 22.679576456000063, 49.41894846700005 ], [ 22.640922485000146, 49.528760885000068 ], [ 22.766186157000078, 49.674230042000019 ], [ 22.826647583000124, 49.697381083 ], [ 22.888245890000064, 49.769728088000065 ], [ 22.933101034000032, 49.791070456000043 ], [ 22.951187785000059, 49.826623841000114 ], [ 23.101462850000075, 49.957106832000065 ], [ 23.436429484000087, 50.193474834000071 ], [ 23.644168741000044, 50.312692363000068 ], [ 23.69574182100007, 50.376771138 ], [ 23.981305786000036, 50.4047797650001 ], [ 24.007764120000047, 50.44849802700007 ], [ 24.010657999000017, 50.492784729 ], [ 24.106466105000067, 50.538621725000056 ], [ 24.08527876800008, 50.60440582300005 ], [ 24.12589725135706, 50.641818752733229 ], [ 24.164706252291694, 50.640216783177948 ], [ 24.170855747194935, 50.621458238307014 ], [ 24.258912387796443, 50.575569566482272 ], [ 24.358544548691953, 50.609676012438001 ], [ 24.434250522643481, 50.549007880309375 ], [ 24.500809767256953, 50.545545558780475 ], [ 24.535743036411986, 50.518260403095098 ], [ 24.535432977150151, 50.500121974949138 ], [ 24.450373569184876, 50.469839585728266 ], [ 24.503755323949008, 50.435836494358682 ], [ 24.508561231715476, 50.407931220149692 ], [ 24.541789177628402, 50.410928452785868 ], [ 24.558222284330952, 50.438471991788958 ], [ 24.583543735255148, 50.418783270931158 ], [ 24.634238315745677, 50.413357245540396 ], [ 24.71309655106495, 50.345506089734215 ], [ 24.923988070892733, 50.349485175200641 ], [ 24.931894565881464, 50.370155747989372 ], [ 25.053695916333481, 50.3448342961658 ], [ 25.069973993405029, 50.284631252929955 ], [ 25.19565107563659, 50.287990220772031 ], [ 25.207484979248363, 50.250111395824206 ], [ 25.164955275265697, 50.217193508273738 ], [ 25.192550490212909, 50.186962795896306 ], [ 25.19317060693794, 50.102704372708615 ], [ 25.367578565798169, 50.013123276917668 ], [ 25.433569369630675, 49.945375474798311 ], [ 25.39321007688352, 49.927004503554997 ], [ 25.396310663206521, 49.889513251335472 ], [ 25.376001824724426, 49.872537543173053 ], [ 25.093073358049026, 49.815719306201004 ], [ 25.078035516226066, 49.779855861958424 ], [ 25.106767611835778, 49.74430247697768 ], [ 25.101341587344336, 49.725337226531735 ], [ 25.066718376551819, 49.711281235740387 ], [ 25.021553176038253, 49.717637438017334 ], [ 24.948172642053748, 49.627152005560561 ], [ 24.733405388647725, 49.56028270078599 ], [ 24.707050408949215, 49.491785589833057 ], [ 24.584577264029519, 49.523980007871046 ], [ 24.433165317025725, 49.512120265837552 ], [ 24.413269890592971, 49.48338817022784 ], [ 24.426499058184959, 49.449462592324778 ], [ 24.383349236577999, 49.393781236015229 ], [ 24.423243442231069, 49.366444404385732 ], [ 24.369551629104365, 49.326136785784001 ], [ 24.281856723708813, 49.301022040434816 ], [ 24.299840122223827, 49.285209052255937 ], [ 24.339579299145328, 49.303605861920971 ], [ 24.362885370263598, 49.297353014230225 ], [ 24.356942580036048, 49.241025702773925 ], [ 24.417662388108681, 49.235212103755543 ], [ 24.44618777814344, 49.208469550429356 ], [ 24.434870640267832, 49.190176093551827 ], [ 24.158195021283177, 49.134985662758083 ], [ 24.078768345182993, 49.145088406504726 ], [ 24.003320753649859, 49.116433824361479 ], [ 23.955675082638948, 49.128009345554801 ], [ 23.905703972560275, 49.107183743135238 ], [ 23.754757114449262, 49.11493520849308 ], [ 23.693623895226551, 49.094626370010928 ], [ 23.641637404442633, 49.010755520450857 ], [ 23.576473422910112, 48.968639228517532 ], [ 23.548361444025431, 48.884949246110807 ], [ 23.575336541348292, 48.833867091992659 ], [ 23.532858514209067, 48.723692939577461 ], [ 23.385735711034215, 48.734338283884654 ], [ 23.350544061259427, 48.772010403257468 ], [ 23.308479445270166, 48.750177110485254 ], [ 23.298247511213674, 48.781157131696261 ], [ 23.201560907010219, 48.77710053186405 ], [ 23.112315708003507, 48.870092272340457 ], [ 22.982142774569354, 48.85898183914054 ], [ 22.895378045160612, 48.929313462746109 ], [ 22.901269159444155, 48.991351020433228 ], [ 22.847524862000085, 49.033700664000079 ], [ 22.853415975000075, 49.084756979000034 ], [ 22.705724731000146, 49.168834534000084 ], [ 22.687844686000091, 49.155915426000078 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-59", "NAME_1": "Sumy" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.733578736000084, 52.360991109000011 ], [ 33.804065389000073, 52.35460907000008 ], [ 33.95775109900012, 52.224694519000067 ], [ 34.055729614000143, 52.170330913000029 ], [ 34.073609660000102, 52.139557597000064 ], [ 34.056659790000083, 52.105812887000084 ], [ 34.062550903000101, 52.050209046000063 ], [ 34.101101521000146, 51.992512309000105 ], [ 34.096243937000054, 51.95181711900004 ], [ 34.146163371000114, 51.951610413000068 ], [ 34.228432251000072, 51.899262187000048 ], [ 34.234220012000037, 51.878281556000061 ], [ 34.294578084000136, 51.873889059000064 ], [ 34.385735310000086, 51.817665101000088 ], [ 34.412710409000113, 51.777693380000031 ], [ 34.414157349000106, 51.736455587000123 ], [ 34.376330200000041, 51.708601990000048 ], [ 34.089112589000081, 51.666614889000058 ], [ 34.07950077400011, 51.643102112000051 ], [ 34.140065552000067, 51.621191305000096 ], [ 34.15298465900014, 51.583984274 ], [ 34.223678019000147, 51.514763692000074 ], [ 34.217063436000046, 51.417069398000038 ], [ 34.186987753000096, 51.40831024200007 ], [ 34.185850871000071, 51.394150899000024 ], [ 34.247345825000082, 51.363429260000075 ], [ 34.300159139000129, 51.368390198000029 ], [ 34.308737427000096, 51.33461965000005 ], [ 34.283622681000054, 51.301236674000066 ], [ 34.185954224000113, 51.248914286000044 ], [ 34.28176232900006, 51.226435039000037 ], [ 34.371782674000087, 51.256846619000029 ], [ 34.51347945100008, 51.229561462 ], [ 34.608357381000076, 51.234005636000106 ], [ 34.642773885000054, 51.180623881000102 ], [ 34.674916626000083, 51.167678935000069 ], [ 34.81754357900013, 51.174732768000084 ], [ 34.946114542000146, 51.214291077000055 ], [ 35.078716268000107, 51.207624817000053 ], [ 35.143621867000036, 51.058486634000118 ], [ 35.172560669000063, 51.040632427000062 ], [ 35.308676392000052, 51.047324525000093 ], [ 35.355081827000049, 51.025594585000064 ], [ 35.332550904000072, 50.999937236 ], [ 35.278083944000059, 50.992650859000022 ], [ 35.282218058000069, 50.95425527 ], [ 35.341749308000146, 50.915859680000054 ], [ 35.341439250000064, 50.876482239000055 ], [ 35.377716105000047, 50.833745830000041 ], [ 35.379059692000112, 50.797210592000042 ], [ 35.438487590000136, 50.762380676000063 ], [ 35.445412231000034, 50.687501527 ], [ 35.468873332000101, 50.668536275000051 ], [ 35.376165812000124, 50.634584860000032 ], [ 35.425258423000059, 50.500484518000107 ], [ 35.446445760000074, 50.476041565000074 ], [ 35.54080692500014, 50.450048320000107 ], [ 35.570159139000111, 50.376461080000112 ], [ 35.592173299000081, 50.36049306200006 ], [ 35.692210134000049, 50.344168474000114 ], [ 35.684261508761608, 50.326954251337611 ], [ 35.500655144619202, 50.321450711581065 ], [ 35.502515496592878, 50.30034088832133 ], [ 35.402883334798048, 50.333672187021762 ], [ 35.385365025175759, 50.293597114215402 ], [ 35.320821161267531, 50.302020372242339 ], [ 35.30888390486831, 50.276414700478028 ], [ 35.259687941145557, 50.275019436497757 ], [ 35.241807896317368, 50.236107082775618 ], [ 35.1279130390555, 50.243212592087446 ], [ 35.093031446743851, 50.208486030306005 ], [ 35.051276890016425, 50.20954539750204 ], [ 35.030347934809299, 50.171821601285842 ], [ 34.975260857702381, 50.191975410137047 ], [ 34.950869581865675, 50.16215810801026 ], [ 34.90823652509556, 50.14595754710308 ], [ 34.814340447953271, 50.159574286524105 ], [ 34.739409621256982, 50.138231920166959 ], [ 34.704941440994673, 50.150892646078717 ], [ 34.669388055114609, 50.115545965773663 ], [ 34.536269565887721, 50.124434312693325 ], [ 34.477926873726233, 50.107226061433551 ], [ 34.459478387217757, 50.159625963367489 ], [ 34.499475945658332, 50.171304837348316 ], [ 34.50583214703596, 50.197453111471873 ], [ 34.458703240861837, 50.225668443144116 ], [ 34.426250441304774, 50.272022202962262 ], [ 34.386666294014219, 50.262668768948515 ], [ 34.36914798439193, 50.273004054893192 ], [ 34.362171665390008, 50.313363349438987 ], [ 34.377364535944537, 50.346048692093461 ], [ 34.258508742184688, 50.435733141571177 ], [ 34.245796340328809, 50.534590156110767 ], [ 34.20652225140077, 50.542238267781784 ], [ 34.121669549010448, 50.513790392112867 ], [ 34.113556349346027, 50.493662420784062 ], [ 34.070458204582451, 50.494747626401818 ], [ 34.054903598822023, 50.470666408927627 ], [ 33.898220656058413, 50.532600612927922 ], [ 33.806184929990479, 50.507408352313576 ], [ 33.841583286239654, 50.482138577333444 ], [ 33.730633985669897, 50.461674710119723 ], [ 33.34006351122207, 50.5252367211977 ], [ 33.284821405383525, 50.545984809251536 ], [ 33.194025912765653, 50.517330227108289 ], [ 33.061527541163059, 50.538414211946304 ], [ 33.104677361870756, 50.62523061819843 ], [ 33.102920362684586, 50.66398794228968 ], [ 33.166999138599351, 50.743001207239899 ], [ 33.12514122908442, 50.776926785143019 ], [ 33.122505730754824, 50.813462022054637 ], [ 33.147465448271817, 50.881235663495033 ], [ 33.18394900923937, 50.917564194831698 ], [ 33.185034213957806, 50.96750946738797 ], [ 33.155526971092797, 50.997352607037158 ], [ 33.206893345151741, 51.048357244990825 ], [ 33.173251987189417, 51.060113634236814 ], [ 33.141884393250109, 51.025567938709401 ], [ 33.083851760350456, 51.032415066502097 ], [ 33.043957553798066, 51.049184068190186 ], [ 33.064783156217686, 51.066288967561775 ], [ 33.058581983571685, 51.078019518386043 ], [ 32.939519484236769, 51.097346503138567 ], [ 32.970421991081992, 51.139824531177169 ], [ 32.9632906433485, 51.178323472849968 ], [ 33.023493686584345, 51.195066637015657 ], [ 33.033260531748112, 51.233513901845072 ], [ 33.070209180709128, 51.248913478873931 ], [ 33.073154738300502, 51.28839427337698 ], [ 33.049383579188827, 51.307256171035419 ], [ 33.055171339785488, 51.335962429122787 ], [ 33.022718540228425, 51.344204819996435 ], [ 33.00163455628973, 51.381153468957393 ], [ 33.021013217885695, 51.396759752460582 ], [ 33.061062453169654, 51.367769273533099 ], [ 33.115219354289763, 51.374538886060691 ], [ 33.130877312837697, 51.421512763503188 ], [ 33.108191359343721, 51.455774238190486 ], [ 33.130877312837697, 51.479752101977908 ], [ 33.12266076038577, 51.510344550460616 ], [ 33.165965609825037, 51.498562323692283 ], [ 33.186894565931425, 51.515925605482266 ], [ 33.152581415300062, 51.546259671546579 ], [ 33.153511590387552, 51.565121568305699 ], [ 33.181933627634805, 51.576697089499078 ], [ 33.134908075147507, 51.657829087942048 ], [ 33.153201532025037, 51.69309825298194 ], [ 33.091603223909658, 51.733586737837641 ], [ 33.062044305100585, 51.792911281930117 ], [ 33.088916049635941, 51.835699368331177 ], [ 33.167670933067086, 51.884636948736159 ], [ 33.160694614065164, 51.904222316806454 ], [ 33.225083449241765, 51.905720934473493 ], [ 33.366263462189011, 51.946700343945679 ], [ 33.374635044271827, 51.968972887188954 ], [ 33.352775913077892, 51.988248195997414 ], [ 33.372929721929097, 52.009848944772955 ], [ 33.379285923306668, 52.056900336581236 ], [ 33.443571404796501, 52.045402329753699 ], [ 33.483103875243614, 52.066641344222603 ], [ 33.484654167955455, 52.084934801100189 ], [ 33.443984815946465, 52.08896556341 ], [ 33.378665805682374, 52.139970201363667 ], [ 33.325904167643216, 52.15294098653726 ], [ 33.317842644822178, 52.20983673787515 ], [ 33.359442172817978, 52.248335680447269 ], [ 33.400576080000064, 52.344343017000128 ], [ 33.437317749000101, 52.339157817000071 ], [ 33.480519246000142, 52.357761333000028 ], [ 33.499432821000084, 52.340992330000077 ], [ 33.493024943000137, 52.303139343000097 ], [ 33.510078166000085, 52.287533061000047 ], [ 33.600201864000041, 52.330786235000105 ], [ 33.733578736000084, 52.360991109000011 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-63", "NAME_1": "Kharkiv" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.415214478000053, 50.431858216000066 ], [ 37.435264933000099, 50.424933573000075 ], [ 37.480016724000052, 50.340029195000014 ], [ 37.599182576000089, 50.290884908000052 ], [ 37.590294230000097, 50.203810120000085 ], [ 37.727650187000108, 50.078701477 ], [ 37.915855754000063, 50.003305563000097 ], [ 38.00039839700014, 49.89979766900008 ], [ 38.022923793000132, 49.909142189000093 ], [ 38.045977817722076, 49.866620592266486 ], [ 38.080859409134405, 49.84626007784027 ], [ 38.00003746905395, 49.822643948359485 ], [ 38.045150995422091, 49.784816800255101 ], [ 38.004843376820361, 49.750503647825042 ], [ 37.968669875114642, 49.752725735004617 ], [ 37.939989455448995, 49.726939195187697 ], [ 37.946035596665411, 49.714769395691008 ], [ 37.998332146711164, 49.715544542046928 ], [ 38.000347528315785, 49.656504217895304 ], [ 37.94448530485289, 49.596792101074584 ], [ 37.963243848824561, 49.566458035010271 ], [ 37.953166945298278, 49.556045233800489 ], [ 37.963243848824561, 49.520130112714526 ], [ 37.928672315774747, 49.499692083922525 ], [ 37.910482211684723, 49.454656073718809 ], [ 37.86066613123694, 49.422720038099271 ], [ 37.885677524697996, 49.390060532967198 ], [ 37.885057407073646, 49.313062648722223 ], [ 37.922574496815571, 49.304691067538727 ], [ 37.926140171131976, 49.283865465119106 ], [ 37.847333611756767, 49.231749783125963 ], [ 37.833846062645648, 49.207539374442547 ], [ 37.540995721175591, 49.225161037751661 ], [ 37.504873895413937, 49.183974920905825 ], [ 37.590191684898343, 49.175344957303935 ], [ 37.609622023337693, 49.150178535111309 ], [ 37.369429966219968, 49.049357814911218 ], [ 37.348759393431237, 49.015638943482429 ], [ 37.291811965249963, 48.979853014505011 ], [ 37.314342889112993, 48.926522936584206 ], [ 37.220911899964165, 48.897558295179181 ], [ 37.180707635049316, 48.861307278208301 ], [ 37.177141960732854, 48.828311876292048 ], [ 37.13414716965616, 48.822188218911151 ], [ 37.088723585824823, 48.842393703706421 ], [ 37.062782017276277, 48.811646227391464 ], [ 37.018546990950824, 48.813713284040773 ], [ 36.99808312373716, 48.791389064853433 ], [ 37.033636508717905, 48.771648668051569 ], [ 37.023817986710696, 48.75891042687465 ], [ 36.890854527114698, 48.800923366919847 ], [ 36.820419548923041, 48.772423814407489 ], [ 36.701718783894762, 48.788159288220527 ], [ 36.690504998806603, 48.769297390562087 ], [ 36.725438267062373, 48.625921128856987 ], [ 36.594955275265704, 48.601555691442002 ], [ 36.47098351357829, 48.645868232133182 ], [ 36.382358433095192, 48.580549220969772 ], [ 36.364530064211067, 48.558457547577746 ], [ 36.374761997368239, 48.541636868146895 ], [ 36.288772414315474, 48.527038275895677 ], [ 36.27404463085503, 48.541042588944322 ], [ 36.307582635130473, 48.569903875763202 ], [ 36.267533399846513, 48.59780914997225 ], [ 36.285671827992473, 48.634111842887194 ], [ 36.132812941064344, 48.723692939577461 ], [ 36.170691766012169, 48.757747707790429 ], [ 36.163715447909567, 48.767256171435122 ], [ 36.072144809835095, 48.829112861069632 ], [ 35.961970655621258, 48.854899399987289 ], [ 36.022018670125533, 48.900116279142935 ], [ 35.952513868819949, 48.968690904461653 ], [ 35.930654737626014, 48.976390692976054 ], [ 35.794383986132061, 48.934222724199344 ], [ 35.579203321576017, 48.975822252195144 ], [ 35.462466262208238, 48.974892076208334 ], [ 35.361335483645632, 49.022020982382401 ], [ 35.169822625413815, 49.147232978419197 ], [ 34.983942499047089, 49.163717760166492 ], [ 34.983322381422738, 49.200330512343271 ], [ 34.953039992201866, 49.247381904151553 ], [ 34.9729354177353, 49.280609850064479 ], [ 35.0334485211323, 49.320245673299155 ], [ 35.090240919682685, 49.297197983699959 ], [ 35.188477818396564, 49.292004503205249 ], [ 35.279066602741523, 49.31978058530575 ], [ 35.360560337289712, 49.392024237728378 ], [ 35.351361932007535, 49.426569933255792 ], [ 35.316480339695886, 49.455017808924708 ], [ 35.319735955649833, 49.480545966323234 ], [ 35.464533318857548, 49.494395249740933 ], [ 35.464843377220063, 49.507004299708626 ], [ 35.390636020935574, 49.550567532465607 ], [ 35.475075311276555, 49.560386054472815 ], [ 35.413477004060496, 49.650458075779568 ], [ 35.428204786621563, 49.663868110524845 ], [ 35.423708937217668, 49.683841051323441 ], [ 35.381334262865892, 49.688078518308942 ], [ 35.341750115575337, 49.669423326225512 ], [ 35.239017368356826, 49.704511624112115 ], [ 35.2339014022279, 49.727869371174506 ], [ 35.198399693191277, 49.753862617465813 ], [ 35.19111331582684, 49.831997382373288 ], [ 35.166256951996729, 49.851169339293563 ], [ 35.102953322437884, 49.847655340921222 ], [ 35.008592157302189, 49.888893133711122 ], [ 34.94885420116043, 49.891528632040718 ], [ 34.864001498770108, 49.942326565318695 ], [ 34.841470574907078, 50.000049139855889 ], [ 34.91319746339218, 50.055678819322054 ], [ 34.90823652509556, 50.14595754710308 ], [ 34.950869581865675, 50.16215810801026 ], [ 34.970144890674135, 50.189365750229172 ], [ 35.025076939049484, 50.170581366936517 ], [ 35.051276890016425, 50.20954539750204 ], [ 35.093031446743851, 50.208486030306005 ], [ 35.1279130390555, 50.243212592087446 ], [ 35.249766066350844, 50.23848419868682 ], [ 35.259687941145557, 50.275019436497757 ], [ 35.30888390486831, 50.276414700478028 ], [ 35.308263788143279, 50.294139716574648 ], [ 35.329192743350404, 50.304655870571935 ], [ 35.385365025175759, 50.293597114215402 ], [ 35.402883334798048, 50.333672187021762 ], [ 35.502515496592878, 50.30034088832133 ], [ 35.500655144619202, 50.321450711581065 ], [ 35.671032342068884, 50.319926256391568 ], [ 35.737694133000048, 50.381577047000079 ], [ 35.837429646000146, 50.423228251000111 ], [ 36.105837036000082, 50.421109518000051 ], [ 36.169295695000073, 50.383695781000071 ], [ 36.269031209000104, 50.281376445000078 ], [ 36.315850057000034, 50.274865214 ], [ 36.410004516000129, 50.304579163000071 ], [ 36.536405070000058, 50.267527161000018 ], [ 36.534648072000095, 50.219933167000065 ], [ 36.594386027000098, 50.204430237000068 ], [ 36.635830526000063, 50.214042054000075 ], [ 36.682649373000061, 50.260654196000033 ], [ 36.848634074000074, 50.323699443000081 ], [ 36.914056437000056, 50.339099020000063 ], [ 37.051722452000092, 50.335326640000019 ], [ 37.197036580000145, 50.36240509100007 ], [ 37.285196574000111, 50.41527008100006 ], [ 37.415214478000053, 50.431858216000066 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-09", "NAME_1": "Luhans'k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.18984419700007, 50.062785136000073 ], [ 38.299914999000123, 50.060511373000068 ], [ 38.356035604000056, 49.980567932000028 ], [ 38.497525675000077, 49.948166809000028 ], [ 38.664647257000127, 49.965168356000063 ], [ 38.687281535000068, 49.913801982000095 ], [ 38.747846313000082, 49.88543162100008 ], [ 38.852232707000098, 49.865794577000045 ], [ 38.937395467000101, 49.803472799000119 ], [ 39.049119914000073, 49.810552470000047 ], [ 39.117126098000142, 49.864399313000078 ], [ 39.155780070000048, 49.873597718000084 ], [ 39.182755168000085, 49.85850819900007 ], [ 39.260889934000033, 49.74450999 ], [ 39.327655884000137, 49.726319885000052 ], [ 39.443617798000048, 49.749522603000074 ], [ 39.557512655000096, 49.72399444600002 ], [ 39.622935018000078, 49.61345855800009 ], [ 39.801528768000082, 49.542196757000042 ], [ 39.889378703000091, 49.553255513000025 ], [ 39.998105916000043, 49.608239238000081 ], [ 40.130707642000061, 49.57981720100004 ], [ 40.126056763000065, 49.55909495100012 ], [ 40.054329875000064, 49.519769186000033 ], [ 40.034899536000125, 49.487058004000048 ], [ 40.061977987000091, 49.425821432000092 ], [ 40.159543091000103, 49.333579 ], [ 40.141663045000143, 49.24578074099999 ], [ 39.952113892000114, 49.124547832000061 ], [ 39.918730916000072, 49.047808330000109 ], [ 39.68112268100009, 49.020316468000047 ], [ 39.67399133300006, 48.970138652000102 ], [ 39.758740682000052, 48.8954145310001 ], [ 39.908188924000058, 48.878412984000065 ], [ 39.950356893000048, 48.852781474000025 ], [ 40.008854614000143, 48.887818095000043 ], [ 40.053813110000135, 48.869214580000076 ], [ 40.038723593000043, 48.829992168000032 ], [ 39.975264933000119, 48.789684550000075 ], [ 39.824163046000137, 48.815626120000033 ], [ 39.77941125500007, 48.807719625000075 ], [ 39.702930135000088, 48.746586405000059 ], [ 39.631720011000084, 48.586906230000082 ], [ 39.690114379000136, 48.593675842000025 ], [ 39.835325155000078, 48.573470358000023 ], [ 39.869534953000084, 48.509908346000046 ], [ 39.842146444000036, 48.499056295000102 ], [ 39.844730266000056, 48.483501689000079 ], [ 39.924105266000083, 48.37611806299999 ], [ 39.815894816000082, 48.308163554000046 ], [ 39.884831177000137, 48.27899220800002 ], [ 39.957384888000036, 48.293384095000121 ], [ 39.993248332000121, 48.273230286000043 ], [ 39.977642049000053, 48.235454814000079 ], [ 39.893719523000073, 48.182977397000016 ], [ 39.843076619000101, 48.119751282000053 ], [ 39.829020630000059, 48.076782329000068 ], [ 39.842973266000058, 48.036397197 ], [ 39.759877563000089, 48.014951478000071 ], [ 39.796154419000061, 47.961363017000011 ], [ 39.759050741000067, 47.832947083000121 ], [ 39.700759725000125, 47.811527201 ], [ 39.570018351000101, 47.830931702000058 ], [ 39.391631307000125, 47.822611796 ], [ 39.319697713000096, 47.846021220000054 ], [ 39.092941528000097, 47.832094421000093 ], [ 39.036180220000062, 47.857002648000062 ], [ 39.055528598765818, 47.917385565791221 ], [ 39.031292351660682, 47.949838365348285 ], [ 39.027106560619245, 48.006630763898613 ], [ 38.840141228634764, 48.027973131155079 ], [ 38.800247022981694, 48.05667938924239 ], [ 38.82272627090066, 48.09427399424942 ], [ 38.814044631354648, 48.11143056956513 ], [ 38.603669874565014, 48.179126694841045 ], [ 38.607183872038036, 48.206954453784988 ], [ 38.566256137610651, 48.277621975074055 ], [ 38.460887892062544, 48.272402656157624 ], [ 38.42362918473907, 48.285631821950972 ], [ 38.409831577265436, 48.324130764523147 ], [ 38.471274854850662, 48.33614553528821 ], [ 38.480576612920345, 48.357617091955206 ], [ 38.399134556114859, 48.442314764714581 ], [ 38.370092401243312, 48.431824449139015 ], [ 38.310199416369926, 48.449962877284918 ], [ 38.313920119417958, 48.520552883308881 ], [ 38.260073276660364, 48.544272366476491 ], [ 38.270046828298462, 48.573624578811234 ], [ 38.248911166617006, 48.667365628121217 ], [ 38.306478713321951, 48.725398261020928 ], [ 38.266429478037935, 48.732736314329429 ], [ 38.296556837627918, 48.783146673979786 ], [ 38.279503615099713, 48.839163927073571 ], [ 38.231082797732881, 48.854253444840595 ], [ 38.210102166581692, 48.923939114198731 ], [ 38.009959343848607, 48.954273180263044 ], [ 38.015850458132093, 48.971636461153707 ], [ 38.077293735717319, 48.998249824170045 ], [ 38.041016880324719, 49.069950873334108 ], [ 38.062100864263471, 49.090647285443822 ], [ 38.070472446346287, 49.148059800719182 ], [ 38.02065636589856, 49.152271430182338 ], [ 37.971305373444181, 49.131549181449543 ], [ 37.895289341130194, 49.156302192492149 ], [ 37.883662143992751, 49.164131171316455 ], [ 37.891258578820327, 49.184491685742671 ], [ 37.933633254071424, 49.199581204409014 ], [ 37.847333611756767, 49.231749783125963 ], [ 37.929085727824031, 49.290945136009213 ], [ 37.885057407073646, 49.313062648722223 ], [ 37.885677524697996, 49.390060532967198 ], [ 37.86066613123694, 49.422720038099271 ], [ 37.910482211684723, 49.454656073718809 ], [ 37.928672315774747, 49.499692083922525 ], [ 37.963243848824561, 49.520130112714526 ], [ 37.953166945298278, 49.551032620459068 ], [ 37.963243848824561, 49.566458035010271 ], [ 37.94448530485289, 49.596792101074584 ], [ 38.001122673772329, 49.660586656149235 ], [ 37.998332146711164, 49.715544542046928 ], [ 37.946035596665411, 49.714769395691008 ], [ 37.939989455448995, 49.726939195187697 ], [ 37.968669875114642, 49.752725735004617 ], [ 38.004843376820361, 49.750503647825042 ], [ 38.045150995422091, 49.784816800255101 ], [ 38.00003746905395, 49.822643948359485 ], [ 38.080084262778485, 49.843107815573205 ], [ 38.043497349023426, 49.869359443383587 ], [ 38.022923793000132, 49.909142189000093 ], [ 38.079153279000138, 49.929925029000074 ], [ 38.119047486000056, 49.91917633100006 ], [ 38.166176392000068, 49.940570374000075 ], [ 38.164109334000102, 50.030384014000063 ], [ 38.173927856000091, 50.060149638000055 ], [ 38.18984419700007, 50.062785136000073 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-14", "NAME_1": "Donets'k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.036180220000062, 47.857002648000062 ], [ 38.877244100000098, 47.86123993000011 ], [ 38.830942017000098, 47.848243306000072 ], [ 38.770997355000077, 47.780831401000043 ], [ 38.734513794000065, 47.677142639000081 ], [ 38.662166789000139, 47.683292135000059 ], [ 38.56222456900008, 47.626628927000056 ], [ 38.352935018000039, 47.607095236000063 ], [ 38.319035278000115, 47.591308085000051 ], [ 38.260330851000049, 47.492941997000045 ], [ 38.257953736000104, 47.393232321000042 ], [ 38.188707316000091, 47.300989889000064 ], [ 38.291853475000039, 47.287037252000076 ], [ 38.298158000000114, 47.256031392000054 ], [ 38.203486776000034, 47.192314352000054 ], [ 38.201419719000057, 47.130741883000027 ], [ 38.216644727000073, 47.103257554000038 ], [ 38.14226321700005, 47.037665106000077 ], [ 38.108083530000044, 47.026353257000039 ], [ 38.130056186000047, 47.074652411000045 ], [ 38.071543816000087, 47.099798895000049 ], [ 38.026215040000068, 47.081610419000071 ], [ 37.86109459700009, 47.101507880000042 ], [ 37.71029707100007, 47.074164130000042 ], [ 37.580739780000044, 47.090399481000077 ], [ 37.482920769000089, 47.035956122000073 ], [ 37.335215691000087, 46.882473049000055 ], [ 37.312998894000089, 46.875555731000077 ], [ 37.317393425000034, 46.900824286000045 ], [ 37.295420769000089, 46.92023346600007 ], [ 37.227061394000089, 46.936997789000088 ], [ 37.03776436887977, 46.876663618236975 ], [ 37.009555291243657, 46.926800035193423 ], [ 37.05704593262368, 46.959485378747218 ], [ 37.114458448798359, 46.96571238891562 ], [ 37.093684523222123, 47.000025540446302 ], [ 37.118489211108169, 47.028189195275104 ], [ 37.070843540097258, 47.057541409408486 ], [ 37.049139439433588, 47.044777329809904 ], [ 37.010950555223928, 47.065628771550564 ], [ 36.962529737857096, 47.139706935726451 ], [ 36.856541374684696, 47.193708808114991 ], [ 36.938655225957916, 47.209005032356345 ], [ 36.91943159399284, 47.301299139943353 ], [ 37.028933953738942, 47.28755320931316 ], [ 37.072393832809098, 47.300601507953218 ], [ 37.114458448798359, 47.371475734817295 ], [ 37.163654413420431, 47.345895901474648 ], [ 37.182412958291366, 47.353078925152261 ], [ 37.184583367728237, 47.387883002198748 ], [ 37.220911899964165, 47.455269070011525 ], [ 37.152182245014558, 47.463873196091129 ], [ 37.128721144265398, 47.451186631757651 ], [ 36.944236280979567, 47.570378323201055 ], [ 36.893334994914085, 47.550896307918265 ], [ 36.797888625059954, 47.610246690432405 ], [ 36.752103306022718, 47.601694241196242 ], [ 36.752413364385234, 47.633888658334911 ], [ 36.720012240772292, 47.657763170234091 ], [ 36.747297398256308, 47.674919745549801 ], [ 36.703114047874976, 47.690836087415505 ], [ 36.652987909064734, 47.787832749981419 ], [ 36.583741489278282, 47.791398424297824 ], [ 36.569478793811243, 47.867362778869108 ], [ 36.531341587344343, 47.887387397410464 ], [ 36.541728550132461, 47.910254218057673 ], [ 36.633867628987844, 47.921726386463547 ], [ 36.61340376177418, 47.95702138902584 ], [ 36.57661014244411, 47.970715643711969 ], [ 36.584671665265091, 48.076419786044255 ], [ 36.665080194195582, 48.088072822502738 ], [ 36.839023065062406, 48.034484361264219 ], [ 36.892559848558165, 48.067557278445634 ], [ 36.871940951713555, 48.167447821759538 ], [ 36.927183057552043, 48.201502590871826 ], [ 36.904032016963981, 48.297698269559476 ], [ 36.811841262164478, 48.325706896556028 ], [ 36.808947381416488, 48.413143419533185 ], [ 36.847239618413653, 48.433969021053429 ], [ 36.835457390745944, 48.476343696304525 ], [ 36.858556756289261, 48.492673448420874 ], [ 36.854215935616935, 48.51652212189839 ], [ 36.891009555846324, 48.533988756475878 ], [ 36.887443882429181, 48.573624578811234 ], [ 36.81917931457366, 48.578249620323675 ], [ 36.795098097099469, 48.53481557877592 ], [ 36.748537631706313, 48.530914008574598 ], [ 36.749312778062233, 48.563961087334292 ], [ 36.789982130970543, 48.601219793758446 ], [ 36.732104526802459, 48.606077379267617 ], [ 36.710865513232818, 48.649588935181214 ], [ 36.690039910813198, 48.777539781435735 ], [ 36.718306919328825, 48.789270331360683 ], [ 36.820419548923041, 48.772423814407489 ], [ 36.890854527114698, 48.800923366919847 ], [ 37.023817986710696, 48.75891042687465 ], [ 37.033636508717905, 48.771648668051569 ], [ 36.99808312373716, 48.791389064853433 ], [ 37.018546990950824, 48.813713284040773 ], [ 37.062782017276277, 48.811646227391464 ], [ 37.088723585824823, 48.842393703706421 ], [ 37.13414716965616, 48.822188218911151 ], [ 37.177141960732854, 48.828311876292048 ], [ 37.180707635049316, 48.861307278208301 ], [ 37.220911899964165, 48.897558295179181 ], [ 37.314342889112993, 48.926522936584206 ], [ 37.291811965249963, 48.979853014505011 ], [ 37.348759393431237, 49.015638943482429 ], [ 37.369429966219968, 49.049357814911218 ], [ 37.609622023337693, 49.150178535111309 ], [ 37.590191684898343, 49.175344957303935 ], [ 37.504873895413937, 49.183974920905825 ], [ 37.546938511403141, 49.227228095300347 ], [ 37.643108350769751, 49.228313300018783 ], [ 37.771162550711097, 49.204361273753761 ], [ 37.833846062645648, 49.207539374442547 ], [ 37.858805780162584, 49.230948798348322 ], [ 37.933633254071424, 49.199581204409014 ], [ 37.891258578820327, 49.184491685742671 ], [ 37.883662143992751, 49.164131171316455 ], [ 37.895289341130194, 49.156302192492149 ], [ 37.971305373444181, 49.131549181449543 ], [ 38.015850458132093, 49.151418769460633 ], [ 38.066751743298312, 49.150075182323803 ], [ 38.062100864263471, 49.090647285443822 ], [ 38.041016880324719, 49.069950873334108 ], [ 38.077293735717319, 48.998249824170045 ], [ 38.008098992774251, 48.95729625132094 ], [ 38.057760043591145, 48.93706492810395 ], [ 38.210102166581692, 48.923939114198731 ], [ 38.231082797732881, 48.854253444840595 ], [ 38.279503615099713, 48.839163927073571 ], [ 38.296556837627918, 48.783146673979786 ], [ 38.266429478037935, 48.732736314329429 ], [ 38.306478713321951, 48.725398261020928 ], [ 38.248911166617006, 48.667365628121217 ], [ 38.270046828298462, 48.573624578811234 ], [ 38.260073276660364, 48.544272366476491 ], [ 38.313920119417958, 48.520552883308881 ], [ 38.310199416369926, 48.449962877284918 ], [ 38.370092401243312, 48.431824449139015 ], [ 38.399134556114859, 48.442314764714581 ], [ 38.480576612920345, 48.357617091955206 ], [ 38.471274854850662, 48.33614553528821 ], [ 38.409831577265436, 48.324130764523147 ], [ 38.42362918473907, 48.285631821950972 ], [ 38.460887892062544, 48.272402656157624 ], [ 38.566256137610651, 48.277621975074055 ], [ 38.607183872038036, 48.206954453784988 ], [ 38.603669874565014, 48.179126694841045 ], [ 38.814044631354648, 48.11143056956513 ], [ 38.82272627090066, 48.09427399424942 ], [ 38.800247022981694, 48.05667938924239 ], [ 38.840141228634764, 48.027973131155079 ], [ 39.027106560619245, 48.006630763898613 ], [ 39.031292351660682, 47.949838365348285 ], [ 39.055528598765818, 47.917385565791221 ], [ 39.036180220000062, 47.857002648000062 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-65", "NAME_1": "Kherson" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.001891221798623, 45.729002575039836 ], [ 34.952331334523421, 45.721989122400032 ], [ 34.870656160853116, 45.773327803635198 ], [ 34.80998317508346, 45.784995685202659 ], [ 34.788980987182811, 45.803664296070394 ], [ 34.784313834915508, 45.899340928341132 ], [ 34.763311647014859, 45.9320109978093 ], [ 34.68863720264477, 45.974015372711278 ], [ 34.529954008470668, 45.981016102011495 ], [ 34.504284667403454, 45.950679608676978 ], [ 34.464613869534446, 45.955346761843543 ], [ 34.41094161216563, 45.988016831311711 ], [ 34.361936507963435, 46.055690546381584 ], [ 34.333933591661889, 46.069692004982016 ], [ 34.23592338235818, 46.097694921283562 ], [ 34.161248937988091, 46.090694192882665 ], [ 34.067905882750267, 46.104695650583778 ], [ 33.846216125773537, 46.195705129687951 ], [ 33.715726290136161, 46.195743035212899 ], [ 33.670279785283867, 46.218105600592992 ], [ 33.660449051382614, 46.148184276483164 ], [ 33.628517493895586, 46.12493524180271 ], [ 33.596527540000068, 46.155747789000088 ], [ 33.549815300000034, 46.136419989000046 ], [ 33.531260613000086, 46.10687897300005 ], [ 33.557871941000087, 46.087307033000059 ], [ 33.49577884200005, 46.067857164000088 ], [ 33.516286655000044, 46.04633209800005 ], [ 33.423838738000086, 46.053290106000077 ], [ 33.357758009000065, 46.10382721600007 ], [ 33.331065300000034, 46.107489325000074 ], [ 33.310801629000082, 46.087307033000059 ], [ 33.290293816000087, 46.094712632000039 ], [ 33.315684441000087, 46.131008205000057 ], [ 33.21461022200009, 46.128241278000075 ], [ 33.235118035000085, 46.223822333000044 ], [ 33.175059441000087, 46.153143622000073 ], [ 33.122894727000073, 46.135891018000052 ], [ 33.023448113000086, 46.169867255000042 ], [ 33.032481316000087, 46.141017971000053 ], [ 33.018239780000044, 46.127671617000033 ], [ 32.899261915000068, 46.115220445000034 ], [ 32.766286655000044, 46.135687567000048 ], [ 32.503428582000083, 46.076117255000042 ], [ 32.262461785000085, 46.128241278000075 ], [ 32.24195397200009, 46.176662502000056 ], [ 32.26929772200009, 46.204575914000088 ], [ 32.213145379000082, 46.193060614000046 ], [ 32.12867272200009, 46.209702867000033 ], [ 32.05014082100007, 46.266058661000045 ], [ 32.018077019000089, 46.257513739000046 ], [ 31.885752800000034, 46.320013739000046 ], [ 31.882334832000083, 46.279120184000078 ], [ 31.801117384000065, 46.285060940000051 ], [ 31.76734459700009, 46.318182684000078 ], [ 31.816742384000065, 46.34796784100007 ], [ 31.968272332000083, 46.351060289000088 ], [ 32.06185957100007, 46.393784898000035 ], [ 32.007823113000086, 46.448960679000038 ], [ 31.910655144000089, 46.455877997000073 ], [ 31.816287954620144, 46.483005801210687 ], [ 31.851735873000052, 46.521958726000037 ], [ 32.111664259000065, 46.512437242000033 ], [ 32.221527540000068, 46.495428778000075 ], [ 32.276133660000085, 46.470892645000049 ], [ 32.36101321700005, 46.466864325000074 ], [ 32.427012566000087, 46.498846747000073 ], [ 32.408376498000052, 46.517279364000046 ], [ 32.435720248000052, 46.543158270000049 ], [ 32.52475019600007, 46.592718817000048 ], [ 32.588389519000089, 46.604315497000073 ], [ 32.645518425000034, 46.649603583000044 ], [ 32.409027540000068, 46.568915106000077 ], [ 32.335785352000073, 46.562160549000055 ], [ 32.248220248000052, 46.607407945000034 ], [ 32.146332227000073, 46.560248114000046 ], [ 32.117930535000085, 46.60687897300005 ], [ 32.008962436000047, 46.639797268000052 ], [ 31.966452264160637, 46.727018948565615 ], [ 32.016733432601825, 46.726192125366254 ], [ 32.071975539339633, 46.74678518288988 ], [ 32.154657831393763, 46.741669215861577 ], [ 32.228710158047363, 46.807582506227675 ], [ 32.351131626123617, 46.795748603515221 ], [ 32.389320510333278, 46.839518540947893 ], [ 32.44425255690993, 46.847114977574108 ], [ 32.469677362420327, 46.83135366533935 ], [ 32.522594028291735, 46.833136502047921 ], [ 32.542592808411371, 46.874219265206875 ], [ 32.64067467569572, 46.859620672955657 ], [ 32.708629185188727, 46.823757228713134 ], [ 32.828311802147937, 46.827943019754514 ], [ 32.94075971858615, 46.861946112922737 ], [ 32.826451450174261, 46.868043931881914 ], [ 32.807021111734912, 46.882254951404832 ], [ 32.92432661278292, 46.902718817719233 ], [ 33.010161167104172, 46.936179308528267 ], [ 33.005510288069331, 46.950209459099256 ], [ 32.957089470702499, 46.953568426941331 ], [ 32.951198358217653, 46.985659492191814 ], [ 32.974917839586624, 47.000232245121992 ], [ 33.025043980195505, 46.96992401837872 ], [ 33.061682569894685, 47.015321763788336 ], [ 33.013571811789689, 47.05108185524341 ], [ 32.92184614408427, 47.077333482154472 ], [ 32.915024854713238, 47.103533434020733 ], [ 32.976158074835269, 47.186784165956453 ], [ 33.035896030077708, 47.177947495880233 ], [ 33.083851760350456, 47.20892751709124 ], [ 33.120645378781205, 47.202442125403763 ], [ 33.136148308597569, 47.224327094120099 ], [ 33.10509077302072, 47.272412013803375 ], [ 33.120645378781205, 47.34940989804835 ], [ 33.096254102944499, 47.384911607084973 ], [ 33.042717319448741, 47.39007925095666 ], [ 33.026129184913941, 47.408734443040089 ], [ 33.058892042833463, 47.452194322110245 ], [ 33.085091993800461, 47.41527151157095 ], [ 33.130102165582457, 47.422583727357107 ], [ 33.11862999897528, 47.523714505020394 ], [ 33.089277784841897, 47.547976590547194 ], [ 33.089277784841897, 47.582858181060203 ], [ 33.283426141403311, 47.539320786724886 ], [ 33.339443393597719, 47.49508576129881 ], [ 33.365953402927175, 47.51436107010727 ], [ 33.485274285579806, 47.532732042249904 ], [ 33.494265985286972, 47.564151313032653 ], [ 33.562892287449074, 47.575365099020075 ], [ 33.588782180053556, 47.560043036357001 ], [ 33.575294630942437, 47.537589626859756 ], [ 33.584441359381231, 47.51472280531317 ], [ 33.624335565034301, 47.511622218990169 ], [ 33.642784050643399, 47.488522854346229 ], [ 33.901786330374819, 47.514464422894775 ], [ 34.058210889820714, 47.480719713044323 ], [ 34.203731724339605, 47.478394273077242 ], [ 34.298402947837758, 47.27210195634018 ], [ 34.389146762712926, 47.273497219421131 ], [ 34.419894239927203, 47.310239162807079 ], [ 34.506452263760934, 47.31390818901167 ], [ 34.475136345765748, 47.273678087473741 ], [ 34.504591912686578, 47.246522122098213 ], [ 34.49172448119981, 47.222337550937198 ], [ 34.499165887295817, 47.141412258069238 ], [ 34.509552850083935, 47.1133002791845 ], [ 34.540455356929158, 47.099709378185253 ], [ 34.559678988894177, 47.011601060740361 ], [ 34.59213178935056, 46.998242702838468 ], [ 34.608409864623525, 46.959201157907103 ], [ 34.721994662623558, 46.926541652775029 ], [ 34.742665236311609, 46.881841539355548 ], [ 34.788295525717899, 46.862204495341189 ], [ 34.794341667833692, 46.826935330301239 ], [ 34.74747114407802, 46.81171662042567 ], [ 34.717963902112388, 46.744769802184578 ], [ 34.630320671761581, 46.713428045767671 ], [ 34.63125084774839, 46.689036769930965 ], [ 34.732691684673512, 46.662294215705458 ], [ 34.74499067627869, 46.633587958517467 ], [ 34.722149693153767, 46.598990587045932 ], [ 34.762198928437783, 46.547236640258689 ], [ 34.857645298291857, 46.541733100502142 ], [ 34.853769565612936, 46.500159410028743 ], [ 34.923739454911868, 46.500314438760313 ], [ 35.035308872206656, 46.456415310118416 ], [ 35.061043736079512, 46.379184881876768 ], [ 35.059648472099298, 46.30601105436665 ], [ 35.10505630790226, 46.295057790284773 ], [ 35.030772332000083, 46.251776434000078 ], [ 34.926524285000085, 46.235052802000041 ], [ 34.893565300000034, 46.251776434000078 ], [ 34.88217207100007, 46.221747137000079 ], [ 34.838877800000034, 46.20766836100006 ], [ 34.811289910000085, 46.166245835000041 ], [ 34.87435957100007, 45.92609284100007 ], [ 35.001891221798623, 45.729002575039836 ] ] ], [ [ [ 35.279540987026905, 46.255145151227737 ], [ 35.16179446700005, 46.128241278000075 ], [ 34.98210696700005, 46.077826239000046 ], [ 35.051931186000047, 46.128241278000075 ], [ 35.044444207000083, 46.141913153000075 ], [ 35.200450066000087, 46.183010158000059 ], [ 35.264798500018244, 46.260503918023666 ], [ 35.279540987026905, 46.255145151227737 ] ] ], [ [ [ 32.989268425000034, 46.042629299000055 ], [ 33.057465040000068, 46.025213934000078 ], [ 33.040049675000034, 46.012152411000045 ], [ 32.619395379000082, 46.06000397300005 ], [ 32.783213738000086, 46.04633209800005 ], [ 32.881683790000068, 46.055405992000033 ], [ 32.913584832000083, 46.038804429000038 ], [ 32.978688998000052, 46.053290106000077 ], [ 32.989268425000034, 46.042629299000055 ] ] ], [ [ [ 31.940277540000068, 46.204575914000088 ], [ 32.070811394000089, 46.182440497000073 ], [ 32.166270379000082, 46.149359442000048 ], [ 31.737152540000068, 46.220770575000074 ], [ 31.580332879000082, 46.262762762000079 ], [ 31.521983269000089, 46.313218492000033 ], [ 31.504405144000089, 46.37335846600007 ], [ 31.521983269000089, 46.368475653000075 ], [ 31.55437259200005, 46.29633209800005 ], [ 31.618174675000034, 46.25922272300005 ], [ 31.940277540000068, 46.204575914000088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-23", "NAME_1": "Zaporizhzhya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.827159050000034, 46.62335846600007 ], [ 35.74195397200009, 46.584418036000045 ], [ 35.62867272200009, 46.498480536000045 ], [ 35.491465691000087, 46.447984117000033 ], [ 35.380137566000087, 46.368475653000075 ], [ 35.279540987026905, 46.255145151227737 ], [ 35.264798500018244, 46.260503918023666 ], [ 35.342133009000065, 46.335760809000078 ], [ 35.346039259000065, 46.361029364000046 ], [ 35.311534050000034, 46.337632554000038 ], [ 35.267588738000086, 46.351060289000088 ], [ 35.258555535000085, 46.37335846600007 ], [ 35.28451582100007, 46.437404690000051 ], [ 35.21461022200009, 46.462632554000038 ], [ 35.188324415000068, 46.512437242000033 ], [ 35.166677280000044, 46.493150132000039 ], [ 35.201996290000068, 46.440497137000079 ], [ 35.209483269000089, 46.396429755000042 ], [ 35.10505630790226, 46.295057790284773 ], [ 35.069311965374879, 46.299913235407473 ], [ 35.05329227072167, 46.347920640724965 ], [ 35.060113560092702, 46.38445587853596 ], [ 35.02941775882249, 46.46481272972369 ], [ 34.923739454911868, 46.500314438760313 ], [ 34.853769565612936, 46.500159410028743 ], [ 34.857645298291857, 46.541733100502142 ], [ 34.762198928437783, 46.547236640258689 ], [ 34.722149693153767, 46.598990587045932 ], [ 34.74499067627869, 46.633587958517467 ], [ 34.732691684673512, 46.662294215705458 ], [ 34.63125084774839, 46.689036769930965 ], [ 34.630320671761581, 46.713428045767671 ], [ 34.717963902112388, 46.744769802184578 ], [ 34.74747114407802, 46.81171662042567 ], [ 34.796512079069146, 46.839544379369613 ], [ 34.784368117094914, 46.867217109581929 ], [ 34.742665236311609, 46.881841539355548 ], [ 34.721994662623558, 46.926541652775029 ], [ 34.608409864623525, 46.959201157907103 ], [ 34.59213178935056, 46.998242702838468 ], [ 34.559678988894177, 47.011601060740361 ], [ 34.540455356929158, 47.099709378185253 ], [ 34.509552850083935, 47.1133002791845 ], [ 34.499165887295817, 47.141412258069238 ], [ 34.49172448119981, 47.222337550937198 ], [ 34.504591912686578, 47.246522122098213 ], [ 34.475136345765748, 47.273678087473741 ], [ 34.506452263760934, 47.31390818901167 ], [ 34.419894239927203, 47.310239162807079 ], [ 34.389146762712926, 47.273497219421131 ], [ 34.298402947837758, 47.27210195634018 ], [ 34.203731724339605, 47.478394273077242 ], [ 34.445939162162574, 47.522887681821032 ], [ 34.594612258049267, 47.568621324014885 ], [ 34.72990115671297, 47.539165757993317 ], [ 34.910561965062641, 47.526246650562427 ], [ 34.92978559702766, 47.57084341119446 ], [ 34.895782504758756, 47.600867417996938 ], [ 34.944358350857158, 47.746207384463219 ], [ 34.886325717957504, 47.760134182246702 ], [ 34.901880323717933, 47.83082754195749 ], [ 34.808139276206589, 47.877543036082216 ], [ 34.819766473344032, 47.906740221484029 ], [ 34.907306349108694, 47.934387112375305 ], [ 34.916918166440212, 47.951156114063394 ], [ 34.814960564678302, 48.012005113345253 ], [ 34.840230339658433, 48.041305649735932 ], [ 34.840540398920268, 48.117502550102586 ], [ 34.869892612154331, 48.119337062755221 ], [ 34.880589634204227, 48.082000841065963 ], [ 34.943118117407153, 48.080993149813992 ], [ 35.02864261156725, 48.119440416442046 ], [ 35.245115187316003, 48.130189114436064 ], [ 35.514762811354615, 48.079391181158087 ], [ 35.674132928391884, 48.126985175325558 ], [ 35.808853387174054, 48.066833808033778 ], [ 35.963986037225823, 48.089106350377733 ], [ 35.974579705588894, 48.028644924723494 ], [ 36.044704623619452, 48.043295192918777 ], [ 36.021295199713677, 48.004227810465068 ], [ 36.053076205702325, 47.993039862899309 ], [ 36.059122348717381, 47.951130276540994 ], [ 36.117620069610496, 47.938676256204246 ], [ 36.098396436746157, 47.873357245040779 ], [ 36.060827671060167, 47.87377065709012 ], [ 36.078656039944292, 47.845167751790314 ], [ 36.15224328040307, 47.837907212847597 ], [ 36.203454623931748, 47.862763577577027 ], [ 36.214926792337565, 47.830310777120644 ], [ 36.285981887254252, 47.813309231435881 ], [ 36.361222772313056, 47.839870916709401 ], [ 36.39197024862807, 47.825711574929187 ], [ 36.576145053551386, 47.844211738281047 ], [ 36.583741489278282, 47.791398424297824 ], [ 36.652987909064734, 47.787832749981419 ], [ 36.703114047874976, 47.690836087415505 ], [ 36.747297398256308, 47.674919745549801 ], [ 36.720012240772292, 47.657763170234091 ], [ 36.752413364385234, 47.633888658334911 ], [ 36.752103306022718, 47.601694241196242 ], [ 36.797888625059954, 47.610246690432405 ], [ 36.893334994914085, 47.550896307918265 ], [ 36.944236280979567, 47.570378323201055 ], [ 37.128721144265398, 47.451186631757651 ], [ 37.152182245014558, 47.463873196091129 ], [ 37.219206576722115, 47.458137112337852 ], [ 37.182412958291366, 47.353078925152261 ], [ 37.163654413420431, 47.345895901474648 ], [ 37.114458448798359, 47.371475734817295 ], [ 37.072393832809098, 47.300601507953218 ], [ 37.028933953738942, 47.28755320931316 ], [ 36.91943159399284, 47.301299139943353 ], [ 36.938655225957916, 47.209005032356345 ], [ 36.856541374684696, 47.193708808114991 ], [ 36.962529737857096, 47.139706935726451 ], [ 37.010950555223928, 47.065628771550564 ], [ 37.049139439433588, 47.044777329809904 ], [ 37.070843540097258, 47.057541409408486 ], [ 37.118489211108169, 47.028189195275104 ], [ 37.093684523222123, 47.000025540446302 ], [ 37.115698683147684, 46.969898179956999 ], [ 37.091204055422793, 46.955015366865666 ], [ 37.05704593262368, 46.959485378747218 ], [ 37.009555291243657, 46.926800035193423 ], [ 37.03776436887977, 46.876663618236975 ], [ 36.853688998000052, 46.800482489000046 ], [ 36.862478061000047, 46.776922919000071 ], [ 36.81226647200009, 46.680568752000056 ], [ 36.76929772200009, 46.637396552000041 ], [ 36.74382571700005, 46.649603583000044 ], [ 36.771657748000052, 46.643459377000056 ], [ 36.80250084700009, 46.724758205000057 ], [ 36.742849155000044, 46.764715887000079 ], [ 36.633962436000047, 46.779974677000041 ], [ 36.590017123000052, 46.758856512000079 ], [ 36.524099155000044, 46.758856512000079 ], [ 36.40015709700009, 46.723944403000075 ], [ 36.303477410000085, 46.659247137000079 ], [ 36.278330925000034, 46.607407945000034 ], [ 36.267588738000086, 46.625555731000077 ], [ 36.24577884200005, 46.610825914000088 ], [ 36.244313998000052, 46.635321356000077 ], [ 36.189463738000086, 46.669012762000079 ], [ 35.901621941000087, 46.652736721000053 ], [ 35.827159050000034, 46.62335846600007 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-48", "NAME_1": "Mykolayiv" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.816287954620144, 46.483005801210687 ], [ 31.71070397200009, 46.495428778000075 ], [ 31.686534050000034, 46.470892645000049 ], [ 31.686534050000034, 46.429877020000049 ], [ 31.663584832000083, 46.47211334800005 ], [ 31.508311394000089, 46.587591864000046 ], [ 31.581553582000083, 46.54523346600007 ], [ 31.756358269000089, 46.554266669000071 ], [ 31.851735873000052, 46.521958726000037 ], [ 31.816287954620144, 46.483005801210687 ] ] ], [ [ [ 31.96490476243881, 46.722099716909689 ], [ 31.940277540000068, 46.758856512000079 ], [ 31.936208530000044, 46.800360419000071 ], [ 32.002452019000089, 46.895453192000048 ], [ 32.006683790000068, 46.930487372000073 ], [ 31.935883009000065, 46.954820054000038 ], [ 31.976898634000065, 47.009344794000071 ], [ 31.865244988000086, 47.026353257000039 ], [ 31.896820509000065, 47.092718817000048 ], [ 31.882334832000083, 47.11859772300005 ], [ 31.845550977000073, 47.134019273000035 ], [ 31.830577019000089, 47.186753648000035 ], [ 31.757660352000073, 47.216213283000059 ], [ 31.741709832000083, 47.259100653000075 ], [ 31.726817254000082, 47.220526434000078 ], [ 31.806162957000083, 47.192694403000075 ], [ 31.815603061000047, 47.122626044000071 ], [ 31.874278191000087, 47.093817450000074 ], [ 31.844737175000034, 47.053697007000039 ], [ 31.837412957000083, 47.00844961100006 ], [ 31.947113477000073, 46.999090887000079 ], [ 31.899424675000034, 46.943833726000037 ], [ 31.925629102000073, 46.922919012000079 ], [ 31.968272332000083, 46.936997789000088 ], [ 31.972829623000052, 46.915350653000075 ], [ 31.94507897200009, 46.859523830000057 ], [ 31.898610873000052, 46.842922268000052 ], [ 31.864756707000083, 46.806586005000042 ], [ 31.865244988000086, 46.779974677000041 ], [ 31.906748894000089, 46.738226630000042 ], [ 31.899424675000034, 46.649603583000044 ], [ 31.814707879000082, 46.623032945000034 ], [ 31.674082879000082, 46.653225002000056 ], [ 31.597178582000083, 46.64321523600006 ], [ 31.578868035000085, 46.617336330000057 ], [ 31.485036655000044, 46.63226959800005 ], [ 31.490896030000044, 46.663397528000075 ], [ 31.559825066000087, 46.758856512000079 ], [ 31.618174675000034, 46.813462632000039 ], [ 31.606130405000044, 46.826402085000041 ], [ 31.583994988000086, 46.793646552000041 ], [ 31.508311394000089, 46.745184637000079 ], [ 31.440684441000087, 46.800482489000046 ], [ 31.455821160000085, 46.754584052000041 ], [ 31.505869988000086, 46.720404364000046 ], [ 31.416188998000052, 46.629136460000041 ], [ 31.33765709700009, 46.601263739000046 ], [ 31.18685957100007, 46.629136460000041 ], [ 31.162211947923026, 46.825385036690079 ], [ 31.056378615280835, 46.897396145115977 ], [ 31.031522250551404, 46.947806504766334 ], [ 31.092707146617499, 46.956979072526167 ], [ 31.113791130556194, 46.975427558135266 ], [ 31.223965284770031, 46.977417101318167 ], [ 31.260242140162632, 47.000103053912767 ], [ 31.294555290793994, 47.050461738518379 ], [ 31.304167108125512, 47.101828110778683 ], [ 31.269130487082293, 47.110354723391765 ], [ 31.223500196776627, 47.165829373226984 ], [ 31.181900668780827, 47.157716173562562 ], [ 31.11642662888579, 47.182339993395942 ], [ 31.118131952127897, 47.206937974807659 ], [ 31.171978793986113, 47.240579331870663 ], [ 31.153685337108584, 47.271662705869176 ], [ 31.039635451115146, 47.25094045713638 ], [ 31.010593296243599, 47.269104722804684 ], [ 30.915301955121095, 47.276701158531637 ], [ 30.833859898315609, 47.429508369515588 ], [ 30.871583692733225, 47.512526557454635 ], [ 30.868173048947028, 47.543454901822258 ], [ 30.831534458348528, 47.580532741992442 ], [ 30.785749139311292, 47.586553045686458 ], [ 30.779858025927126, 47.633733628703965 ], [ 30.719810012322171, 47.623139960340893 ], [ 30.694798617961851, 47.587948310566048 ], [ 30.665808139933688, 47.625646267461264 ], [ 30.592892693942645, 47.637506007696061 ], [ 30.549742873235004, 47.617610582162627 ], [ 30.475897251257095, 47.622106432465841 ], [ 30.420345086156772, 47.648358059376903 ], [ 30.401534865341716, 47.686934516314864 ], [ 30.41378217920419, 47.719723211756786 ], [ 30.379210646154377, 47.747266750759934 ], [ 30.399364455005582, 47.772278144220934 ], [ 30.394558547239171, 47.792173569754425 ], [ 30.327379185001348, 47.825866604560133 ], [ 30.295546502169316, 47.949579982929833 ], [ 30.217205030787511, 47.995985418692101 ], [ 30.225731641601953, 48.0533979357661 ], [ 30.210538771047425, 48.067815659964708 ], [ 30.311876255184984, 48.090243231939553 ], [ 30.293066034369986, 48.135718491715011 ], [ 30.330479771324349, 48.13628693339524 ], [ 30.347532992953234, 48.163572089080617 ], [ 30.501787143861577, 48.163572089080617 ], [ 30.619867791265563, 48.145046088206357 ], [ 30.704772169599948, 48.181581326017351 ], [ 30.789004754365919, 48.177783107704215 ], [ 30.816961703619711, 48.159076240576042 ], [ 30.857114291691175, 48.186258043473913 ], [ 30.906155225783039, 48.157112534915541 ], [ 31.041805860552017, 48.21912425418094 ], [ 31.168568150199974, 48.211682848084934 ], [ 31.185466343097232, 48.205068264288968 ], [ 31.189807162870238, 48.171478583170028 ], [ 31.228151075811468, 48.158895372523375 ], [ 31.231096633402899, 48.131636054360399 ], [ 31.250320265367918, 48.120939033209766 ], [ 31.343906284147693, 48.111792303871709 ], [ 31.384265577794167, 48.124943956198592 ], [ 31.414496291070975, 48.107709866517098 ], [ 31.503741489178367, 48.118096829305216 ], [ 31.499710727767877, 48.063888251341723 ], [ 31.511803012898724, 48.055051581265445 ], [ 31.533662144092659, 48.086780911309972 ], [ 31.584873487621337, 48.086212470529063 ], [ 31.591281365842349, 48.109570216692134 ], [ 31.61655114082248, 48.118742784451911 ], [ 31.69861331615158, 48.093757229412574 ], [ 31.758041213031561, 48.09541087491192 ], [ 31.769254999018983, 48.047041734388529 ], [ 31.708070102952888, 48.019756577803776 ], [ 31.768169793401228, 47.952577216465329 ], [ 31.821241488903581, 47.945187486313444 ], [ 31.863409457680291, 47.89438955303541 ], [ 31.839069858687026, 47.845968736567897 ], [ 31.856898227571151, 47.797728787253732 ], [ 32.021849399630071, 47.809846909906923 ], [ 32.138689812684675, 47.747525133178328 ], [ 32.169127232435812, 47.757705390391436 ], [ 32.234446241800583, 47.820440579169372 ], [ 32.287517938202257, 47.822455959874617 ], [ 32.342915072772371, 47.796178494541891 ], [ 32.467041864090731, 47.781088975875491 ], [ 32.644550409273961, 47.800648505524066 ], [ 32.651991815369968, 47.83733877206663 ], [ 32.68227420369152, 47.845865382881072 ], [ 32.662740513363985, 47.900254827997912 ], [ 32.715760532022898, 47.91521515635435 ], [ 32.714727004147903, 47.929736233340464 ], [ 32.683359409309276, 47.939942328075972 ], [ 32.692661167378958, 47.967950955072467 ], [ 32.777565544814024, 47.989319159851334 ], [ 32.829345330922251, 47.966684882301479 ], [ 32.844434848689275, 47.986218574427653 ], [ 32.882778761630505, 47.993970037986855 ], [ 32.888204787021266, 48.032158922196459 ], [ 32.979258661158269, 48.042752591458907 ], [ 33.015742222125823, 47.97745941781784 ], [ 33.0461279641342, 47.960199489714626 ], [ 33.031710239036272, 47.919736843280646 ], [ 33.0827665547327, 47.89593984574725 ], [ 33.060287305914414, 47.775585436118945 ], [ 33.087727492130057, 47.737189846334331 ], [ 32.983754509662845, 47.710008043436403 ], [ 33.02070315862386, 47.642596137201963 ], [ 32.992126091745718, 47.598697008560066 ], [ 33.089277784841897, 47.582858181060203 ], [ 33.089277784841897, 47.547976590547194 ], [ 33.11862999897528, 47.523714505020394 ], [ 33.129947136850888, 47.426201076718314 ], [ 33.085091993800461, 47.41527151157095 ], [ 33.058892042833463, 47.452194322110245 ], [ 33.026129184913941, 47.408734443040089 ], [ 33.042717319448741, 47.39007925095666 ], [ 33.096254102944499, 47.384911607084973 ], [ 33.120645378781205, 47.34940989804835 ], [ 33.10509077302072, 47.272412013803375 ], [ 33.136613396590974, 47.226885077184534 ], [ 33.120645378781205, 47.202442125403763 ], [ 33.083851760350456, 47.20892751709124 ], [ 33.035896030077708, 47.177947495880233 ], [ 32.976158074835269, 47.186784165956453 ], [ 32.916420118693509, 47.107047431493754 ], [ 32.92184614408427, 47.077333482154472 ], [ 33.013571811789689, 47.05108185524341 ], [ 33.06137251243149, 47.018629054787027 ], [ 33.025043980195505, 46.96992401837872 ], [ 32.974917839586624, 47.000232245121992 ], [ 32.951198358217653, 46.985659492191814 ], [ 32.957089470702499, 46.953568426941331 ], [ 33.015122105400849, 46.940055040307811 ], [ 32.92432661278292, 46.902718817719233 ], [ 32.811982049132268, 46.886983343906195 ], [ 32.807796258090832, 46.875304469925311 ], [ 32.826451450174261, 46.868043931881914 ], [ 32.94075971858615, 46.861946112922737 ], [ 32.828311802147937, 46.827943019754514 ], [ 32.708629185188727, 46.823757228713134 ], [ 32.64067467569572, 46.859620672955657 ], [ 32.542592808411371, 46.874219265206875 ], [ 32.522594028291735, 46.833136502047921 ], [ 32.469677362420327, 46.83135366533935 ], [ 32.44425255690993, 46.847114977574108 ], [ 32.389320510333278, 46.839518540947893 ], [ 32.343225132034206, 46.794585883531681 ], [ 32.234911329793988, 46.809287828570405 ], [ 32.171607700235143, 46.746707669423358 ], [ 32.112179803355218, 46.735235501017542 ], [ 32.071975539339633, 46.74678518288988 ], [ 31.96490476243881, 46.722099716909689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-53", "NAME_1": "Poltava" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.727284377272156, 50.357908434126898 ], [ 32.878386265014115, 50.397440904574069 ], [ 32.905878127173821, 50.429480292081792 ], [ 33.009230991117306, 50.479994005418973 ], [ 33.061527541163059, 50.538414211946304 ], [ 33.194025912765653, 50.517330227108289 ], [ 33.284821405383525, 50.545984809251536 ], [ 33.34006351122207, 50.5252367211977 ], [ 33.730633985669897, 50.461674710119723 ], [ 33.841583286239654, 50.482138577333444 ], [ 33.806184929990479, 50.507408352313576 ], [ 33.898220656058413, 50.532600612927922 ], [ 34.054903598822023, 50.470666408927627 ], [ 34.070458204582451, 50.494747626401818 ], [ 34.113556349346027, 50.493662420784062 ], [ 34.121669549010448, 50.513790392112867 ], [ 34.20652225140077, 50.542238267781784 ], [ 34.245796340328809, 50.534590156110767 ], [ 34.258508742184688, 50.435733141571177 ], [ 34.377364535944537, 50.346048692093461 ], [ 34.362171665390008, 50.313363349438987 ], [ 34.36914798439193, 50.273004054893192 ], [ 34.386666294014219, 50.262668768948515 ], [ 34.426250441304774, 50.272022202962262 ], [ 34.458703240861837, 50.225668443144116 ], [ 34.50583214703596, 50.197453111471873 ], [ 34.499475945658332, 50.171304837348316 ], [ 34.459478387217757, 50.159625963367489 ], [ 34.474051141047312, 50.108130398099377 ], [ 34.536269565887721, 50.124434312693325 ], [ 34.669388055114609, 50.115545965773663 ], [ 34.704941440994673, 50.150892646078717 ], [ 34.739409621256982, 50.138231920166959 ], [ 34.814340447953271, 50.159574286524105 ], [ 34.90823652509556, 50.14595754710308 ], [ 34.91319746339218, 50.055678819322054 ], [ 34.841470574907078, 50.000049139855889 ], [ 34.868962437066784, 49.936357937568744 ], [ 34.94885420116043, 49.891528632040718 ], [ 35.008592157302189, 49.888893133711122 ], [ 35.102953322437884, 49.847655340921222 ], [ 35.166256951996729, 49.851169339293563 ], [ 35.19111331582684, 49.831997382373288 ], [ 35.202430453702448, 49.747299710513232 ], [ 35.2339014022279, 49.727869371174506 ], [ 35.239017368356826, 49.704511624112115 ], [ 35.286197951374334, 49.680973008997114 ], [ 35.354462518330536, 49.668131415032747 ], [ 35.376373324569272, 49.687044990433947 ], [ 35.423708937217668, 49.683841051323441 ], [ 35.428204786621563, 49.663868110524845 ], [ 35.413477004060496, 49.650458075779568 ], [ 35.475075311276555, 49.560386054472815 ], [ 35.392031284016525, 49.544056301457147 ], [ 35.468719109898984, 49.498219306475789 ], [ 35.424949171566993, 49.480959378372575 ], [ 35.322681512341887, 49.483491523015346 ], [ 35.313689812634721, 49.461167303828006 ], [ 35.351361932007535, 49.426569933255792 ], [ 35.360560337289712, 49.392024237728378 ], [ 35.263253614562643, 49.311667384742009 ], [ 35.188477818396564, 49.292004503205249 ], [ 35.024611851056079, 49.317196763819595 ], [ 34.953815137658466, 49.252807929542314 ], [ 34.987353142833229, 49.189194240721633 ], [ 34.983942499047089, 49.163717760166492 ], [ 34.926219923610574, 49.183044744919016 ], [ 34.891131625723915, 49.148266507193512 ], [ 34.867412144354944, 49.144907538452117 ], [ 34.864776646025348, 49.173407090964474 ], [ 34.784058057833079, 49.174569810948014 ], [ 34.72649051292683, 49.145992744069872 ], [ 34.40826704278976, 49.076539618708409 ], [ 34.402841017398998, 49.050132962166458 ], [ 34.34449832523751, 49.008533434170602 ], [ 34.367907749143285, 48.991066800492433 ], [ 34.308169793001525, 48.970964666685973 ], [ 34.277732375049027, 48.922285467800066 ], [ 34.274321730363567, 48.891227932223273 ], [ 34.308789910625876, 48.867353421223413 ], [ 34.315921258359367, 48.839603175745935 ], [ 34.275872023075408, 48.809992580992798 ], [ 34.293752068802917, 48.778314927791655 ], [ 34.237476434190057, 48.746275540283932 ], [ 34.161977165813539, 48.784386909228431 ], [ 34.040175816260899, 48.807822171555927 ], [ 33.892019484311732, 48.891744697060119 ], [ 33.807425165239181, 48.903449409462667 ], [ 33.778486362255819, 48.92254385021846 ], [ 33.694615512695748, 48.905800686052771 ], [ 33.668880649722212, 48.869058743566143 ], [ 33.651620720719677, 48.899289455943631 ], [ 33.596998731606163, 48.922388821486891 ], [ 33.548422886407081, 48.901873277429786 ], [ 33.425071242343961, 48.950914212420969 ], [ 33.378820835313263, 48.939958807952621 ], [ 33.29939415921308, 48.995459296209503 ], [ 33.31923790880245, 49.025586655799486 ], [ 33.345954623706916, 49.032666328488233 ], [ 33.34161380393391, 49.044035143207282 ], [ 33.297068719245999, 49.064860744727582 ], [ 33.204102818090576, 49.070906886843318 ], [ 33.149325799346116, 49.125632228744337 ], [ 33.038221470044789, 49.18195954020058 ], [ 32.788727654857382, 49.261799628350161 ], [ 32.789347771582356, 49.333888251141843 ], [ 32.747593214854987, 49.406131904463791 ], [ 32.675918003213269, 49.477135322537094 ], [ 32.754414504225963, 49.547156886880828 ], [ 32.752089064258882, 49.593820705960809 ], [ 32.710799594625598, 49.619968980983685 ], [ 32.692971225741474, 49.671645413405088 ], [ 32.571479932752652, 49.705881048771346 ], [ 32.562488233944805, 49.766600856844036 ], [ 32.503525425058285, 49.78001089069005 ], [ 32.468902215165087, 49.806572577762211 ], [ 32.431023390217263, 49.805177313781996 ], [ 32.372680698055774, 49.86362335873099 ], [ 32.368649936645227, 49.887497869730851 ], [ 32.407148879217402, 49.893440659958458 ], [ 32.415675490031845, 49.96749298841064 ], [ 32.381207309769536, 49.987026678738232 ], [ 32.329427524560572, 50.051777249120732 ], [ 32.255065137745873, 50.062836005477266 ], [ 32.230570510020982, 50.118594876152599 ], [ 32.271704950023377, 50.131358953952542 ], [ 32.269689569318132, 50.156835436306324 ], [ 32.209434849238903, 50.150014146935291 ], [ 32.140705194289239, 50.182311916861465 ], [ 32.094609815990168, 50.236933905974979 ], [ 32.069495069741663, 50.238690904261773 ], [ 32.139154900678079, 50.350105291925672 ], [ 32.231500685108529, 50.34524770821514 ], [ 32.284107292617421, 50.387208971416896 ], [ 32.350201450136808, 50.407879544205571 ], [ 32.406993848687137, 50.392066555127371 ], [ 32.476963738885445, 50.406380927437851 ], [ 32.500424838735285, 50.371654364757092 ], [ 32.526314732239086, 50.365659897686101 ], [ 32.727284377272156, 50.357908434126898 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-68", "NAME_1": "Khmel'nyts'kyy" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.192273389805052, 50.541204739007469 ], [ 27.260382928029685, 50.490148424210361 ], [ 27.304617954355081, 50.477978623814408 ], [ 27.250616081966598, 50.44485403068893 ], [ 27.234958123418664, 50.379715888477449 ], [ 27.288649937444632, 50.367881984865676 ], [ 27.308183627772166, 50.340338446761905 ], [ 27.403785028156506, 50.298170477985138 ], [ 27.400064325108474, 50.276983141258938 ], [ 27.48057620592715, 50.247940986387391 ], [ 27.488482700016561, 50.223756415226376 ], [ 27.549925977601788, 50.218382065779679 ], [ 27.582533806789741, 50.254555569284094 ], [ 27.607493524306676, 50.249336249468286 ], [ 27.607803581769872, 50.202155667350155 ], [ 27.649713169027507, 50.160556139354298 ], [ 27.627233921108541, 50.137870184961059 ], [ 27.647852817953151, 50.116708685757203 ], [ 27.621187778093486, 50.079346624746904 ], [ 27.66056521980903, 50.057694200027299 ], [ 27.66366580613203, 50.032553616256337 ], [ 27.609353875381032, 50.003666490116416 ], [ 27.543879836385315, 50.007077134801932 ], [ 27.580828485346331, 49.951447455335767 ], [ 27.545585157828725, 49.940982978181864 ], [ 27.544499953110346, 49.910829780170218 ], [ 27.597416619881074, 49.892820543233483 ], [ 27.59912194222386, 49.866465563534916 ], [ 27.660720249439919, 49.798950304512914 ], [ 27.868046094951296, 49.760063788313175 ], [ 27.813424106737102, 49.74104686102379 ], [ 27.836575148224483, 49.725698960838372 ], [ 27.821795688819975, 49.708439032735157 ], [ 27.769034050780817, 49.704356594481226 ], [ 27.752600945876907, 49.686838283959617 ], [ 27.754926384944667, 49.670301826268258 ], [ 27.815594517073293, 49.630924384552657 ], [ 27.767173699706461, 49.566638902163561 ], [ 27.78427859907805, 49.536098131423614 ], [ 27.732137078663243, 49.526227932573022 ], [ 27.72433393736128, 49.499898790396855 ], [ 27.76345299665843, 49.469590562754263 ], [ 27.739578484759249, 49.451348781820798 ], [ 27.743144159075655, 49.436517646472169 ], [ 27.825981479861412, 49.429851385832762 ], [ 27.839469028073154, 49.4163379991993 ], [ 27.84401655432049, 49.39610667598231 ], [ 27.8033472023115, 49.378975939088321 ], [ 27.819160191389699, 49.34117462850628 ], [ 27.851457961315816, 49.330787664818843 ], [ 27.852078078040847, 49.304897773113737 ], [ 27.877347853020979, 49.276889147016504 ], [ 27.855333693095417, 49.241645820398276 ], [ 27.887734815809097, 49.158756821869815 ], [ 27.810633578776617, 49.141806953028436 ], [ 27.772599725097223, 49.116433824361479 ], [ 27.615710076758603, 49.159893704330955 ], [ 27.573697136713463, 49.122531643320656 ], [ 27.489257847271801, 49.117725735554245 ], [ 27.470654331132437, 49.075867825139994 ], [ 27.380633985769805, 48.991816108426633 ], [ 27.398359001866424, 48.956960354536704 ], [ 27.372107374955363, 48.930140285945413 ], [ 27.426109247343845, 48.773664048756814 ], [ 27.396188592429553, 48.760899970057551 ], [ 27.393243035737498, 48.683747057081007 ], [ 27.370402052612633, 48.629719347170123 ], [ 27.335003696363458, 48.601788235438676 ], [ 27.234389682637698, 48.618479722760981 ], [ 27.261778192009956, 48.59574209242362 ], [ 27.247567173386301, 48.570420641499368 ], [ 27.146953158761221, 48.581944484949986 ], [ 27.113363477642338, 48.559310208299451 ], [ 27.023394810022467, 48.560860501011291 ], [ 26.945260044215672, 48.581376044169076 ], [ 26.859270461162851, 48.540344956954186 ], [ 26.827954543167607, 48.561325589004696 ], [ 26.81875613788543, 48.606645820048527 ], [ 26.787595248621813, 48.601788235438676 ], [ 26.772764113273183, 48.550990302160699 ], [ 26.71721194817286, 48.59476024049269 ], [ 26.7391744321543, 48.557708237844849 ], [ 26.72181115126358, 48.535177313981819 ], [ 26.632824333775943, 48.562410793723132 ], [ 26.612567173036609, 48.550886949373194 ], [ 26.708995395720933, 48.496885077884031 ], [ 26.654063348244904, 48.491304022862323 ], [ 26.61566775935961, 48.506832791100408 ], [ 26.606986118014902, 48.492337550737375 ], [ 26.621868931106292, 48.458256944102686 ], [ 26.605745883665577, 48.451590685261863 ], [ 26.55282921689485, 48.465775865463797 ], [ 26.51526045120886, 48.514868476399045 ], [ 26.470560336890003, 48.53807119383049 ], [ 26.404001092276587, 48.534143785207505 ], [ 26.380539992426691, 48.51709056357862 ], [ 26.354029982197915, 48.561609808945491 ], [ 26.371548292719524, 48.57357290286717 ], [ 26.306694370448838, 48.605612291274213 ], [ 26.316306186880979, 48.642767645810181 ], [ 26.284990268885792, 48.641243191520061 ], [ 26.281889682562792, 48.661629544367941 ], [ 26.23734459787488, 48.67992300124547 ], [ 26.251297234979404, 48.752373359243109 ], [ 26.228507927798603, 48.77919342693508 ], [ 26.264164665566852, 48.808235581806628 ], [ 26.217190789922995, 48.837277737577494 ], [ 26.222926872776952, 48.897248236816665 ], [ 26.192489454824454, 48.905955716583037 ], [ 26.202256300887541, 48.935023708976985 ], [ 26.188768751776479, 48.95690867769332 ], [ 26.204116651961897, 48.965357774141921 ], [ 26.19915571456454, 48.988534654051023 ], [ 26.221221551333485, 49.000678616025311 ], [ 26.199465772927056, 49.041322130511901 ], [ 26.231608514121604, 49.0794593369788 ], [ 26.210937941332929, 49.119120999534459 ], [ 26.220756463340081, 49.151728827823092 ], [ 26.19838056820862, 49.184930935314412 ], [ 26.207837355009929, 49.227279772143731 ], [ 26.245251091964292, 49.244358832194337 ], [ 26.25796349471949, 49.289911607234842 ], [ 26.234399041182769, 49.319470526943235 ], [ 26.229128045422954, 49.397011013547399 ], [ 26.19496992442248, 49.419128526260465 ], [ 26.148409458129947, 49.516512763353319 ], [ 26.167994826200243, 49.548422960551136 ], [ 26.208664178209233, 49.566948961425396 ], [ 26.220911492971027, 49.616558336298169 ], [ 26.253777703678054, 49.657641100356443 ], [ 26.205511915942168, 49.696295070760868 ], [ 26.230833367765683, 49.734328925339582 ], [ 26.233468866095279, 49.779003201236719 ], [ 26.186753371071177, 49.821868801104245 ], [ 26.19264448355608, 49.866103828329017 ], [ 26.157091098575336, 49.893750719220293 ], [ 26.165669387132482, 49.926771959558266 ], [ 26.150579867566819, 49.96459910676333 ], [ 26.230988397396629, 49.994080512105938 ], [ 26.23253869010847, 50.011159573055807 ], [ 26.195279981885619, 50.026817532503117 ], [ 26.231918573383439, 50.059166979272675 ], [ 26.205201856680333, 50.086322943748826 ], [ 26.259823845793846, 50.094255276259958 ], [ 26.273208042117403, 50.113375556336848 ], [ 26.206597120660547, 50.141410020855744 ], [ 26.303438755394211, 50.175542304333874 ], [ 26.383537225062867, 50.244142768074255 ], [ 26.479862094959685, 50.253573717353163 ], [ 26.643107943776556, 50.358993638845334 ], [ 26.650084262778478, 50.384418443456354 ], [ 26.703000928649942, 50.414054877530532 ], [ 26.739794548879331, 50.46487864833091 ], [ 26.796586948328979, 50.46146800454477 ], [ 26.807128940747987, 50.500897122204378 ], [ 26.901490105883681, 50.531747952206217 ], [ 26.97642093257997, 50.519190579081908 ], [ 27.072177361695879, 50.558723050428398 ], [ 27.097602166306899, 50.586602485316405 ], [ 27.126179234084361, 50.581977443803964 ], [ 27.137961459953374, 50.550971585070556 ], [ 27.192273389805052, 50.541204739007469 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-61", "NAME_1": "Ternopil'" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.065262078981732, 50.26525259133399 ], [ 26.154197218726665, 50.24158478500982 ], [ 26.221841668058516, 50.261686917017585 ], [ 26.230988397396629, 50.248561103112365 ], [ 26.201791212894136, 50.209080309508636 ], [ 26.230368279772279, 50.18236359280553 ], [ 26.233158806833444, 50.152287910058988 ], [ 26.206597120660547, 50.141410020855744 ], [ 26.273208042117403, 50.113375556336848 ], [ 26.259823845793846, 50.094255276259958 ], [ 26.205201856680333, 50.086322943748826 ], [ 26.231918573383439, 50.059166979272675 ], [ 26.195279981885619, 50.026817532503117 ], [ 26.23253869010847, 50.011159573055807 ], [ 26.230988397396629, 49.994080512105938 ], [ 26.150579867566819, 49.96459910676333 ], [ 26.165669387132482, 49.926771959558266 ], [ 26.157091098575336, 49.893750719220293 ], [ 26.19264448355608, 49.866103828329017 ], [ 26.186753371071177, 49.821868801104245 ], [ 26.233468866095279, 49.779003201236719 ], [ 26.230833367765683, 49.734328925339582 ], [ 26.205511915942168, 49.696295070760868 ], [ 26.253777703678054, 49.657641100356443 ], [ 26.220911492971027, 49.616558336298169 ], [ 26.208664178209233, 49.566948961425396 ], [ 26.167994826200243, 49.548422960551136 ], [ 26.148564486861574, 49.511551825955962 ], [ 26.19496992442248, 49.419128526260465 ], [ 26.229128045422954, 49.397011013547399 ], [ 26.234399041182769, 49.319470526943235 ], [ 26.25796349471949, 49.289911607234842 ], [ 26.245251091964292, 49.244358832194337 ], [ 26.204736768686928, 49.218339749280005 ], [ 26.198070509846161, 49.18004751228284 ], [ 26.220756463340081, 49.151728827823092 ], [ 26.210937941332929, 49.119120999534459 ], [ 26.231453485390034, 49.074524238003164 ], [ 26.199465772927056, 49.041322130511901 ], [ 26.221221551333485, 49.000678616025311 ], [ 26.19915571456454, 48.988534654051023 ], [ 26.204116651961897, 48.965357774141921 ], [ 26.188768751776479, 48.95690867769332 ], [ 26.202256300887541, 48.935023708976985 ], [ 26.192954542817859, 48.902390042266632 ], [ 26.222926872776952, 48.897248236816665 ], [ 26.217190789922995, 48.837277737577494 ], [ 26.264164665566852, 48.808235581806628 ], [ 26.228507927798603, 48.77919342693508 ], [ 26.251297234979404, 48.752373359243109 ], [ 26.235484246800524, 48.684961453008611 ], [ 26.281889682562792, 48.661629544367941 ], [ 26.284990268885792, 48.641243191520061 ], [ 26.316306186880979, 48.642767645810181 ], [ 26.306694370448838, 48.605612291274213 ], [ 26.371548292719524, 48.57357290286717 ], [ 26.354029982197915, 48.561609808945491 ], [ 26.380539992426691, 48.51709056357862 ], [ 26.355011834128845, 48.510114244576698 ], [ 26.149494662848383, 48.539569811497586 ], [ 26.133061557944529, 48.609229641534682 ], [ 26.102314080730196, 48.606568304783423 ], [ 26.129650913259013, 48.554607652421225 ], [ 26.11724856886633, 48.541946926509411 ], [ 26.079783155967846, 48.547295437534387 ], [ 26.052601353069974, 48.571712550893494 ], [ 26.062316522289677, 48.628349920712253 ], [ 26.049139032440394, 48.647651068841753 ], [ 26.019786818307011, 48.616050930006395 ], [ 25.985628696407218, 48.623518175423442 ], [ 25.927854445026583, 48.586853746403222 ], [ 25.863000522755897, 48.600806383507745 ], [ 25.859589878070381, 48.618738105179375 ], [ 25.793547398293754, 48.670052802394878 ], [ 25.742336052966436, 48.629719347170123 ], [ 25.71505089728106, 48.664471747373227 ], [ 25.636192661062466, 48.678114326115235 ], [ 25.646269566387389, 48.69726044371447 ], [ 25.627614373404583, 48.71826691328738 ], [ 25.640068393741387, 48.745035305035287 ], [ 25.629371371691434, 48.76007314685819 ], [ 25.461112908633822, 48.825288805234152 ], [ 25.450002476333225, 48.835779119910455 ], [ 25.47108646027192, 48.862495835714242 ], [ 25.446901890010224, 48.868748684304308 ], [ 25.431605665768814, 48.867146714749083 ], [ 25.430778842569509, 48.849447537074127 ], [ 25.356106398291615, 48.854589342524093 ], [ 25.35409101668705, 48.813868312772399 ], [ 25.327736036988483, 48.814695135971704 ], [ 25.25099653516196, 48.77516266552459 ], [ 25.238955925975176, 48.801052558129015 ], [ 25.250066359175094, 48.817692369507199 ], [ 25.327736036988483, 48.84200613097812 ], [ 25.250066359175094, 48.859446926234625 ], [ 25.225313348132488, 48.84200613097812 ], [ 25.245777215346209, 48.931380520294738 ], [ 25.197356397979377, 48.91773794245205 ], [ 25.165575391990728, 48.865493069249737 ], [ 25.122994012063998, 48.907609361183063 ], [ 25.119635044221923, 48.951379300414374 ], [ 25.067028435813654, 48.972463284353069 ], [ 24.99256269711077, 48.969621080448462 ], [ 24.95034305238994, 49.020754910510675 ], [ 24.897581414350782, 49.039849352165845 ], [ 24.903627557365837, 49.061062527313766 ], [ 24.985586379008168, 49.051734930822363 ], [ 24.981555616698358, 49.099199733780665 ], [ 24.917115105577636, 49.122686672951545 ], [ 24.860012647765473, 49.119379381053591 ], [ 24.851175977689195, 49.175293281359814 ], [ 24.880838250185093, 49.201751613845886 ], [ 24.879132927842306, 49.229398504737162 ], [ 24.838308547101747, 49.262213040399445 ], [ 24.823425734010414, 49.313786119134079 ], [ 24.832882520811665, 49.339572658950999 ], [ 24.804150425201954, 49.388871975461257 ], [ 24.707050408949215, 49.491785589833057 ], [ 24.733405388647725, 49.56028270078599 ], [ 24.948172642053748, 49.627152005560561 ], [ 25.021553176038253, 49.717637438017334 ], [ 25.066718376551819, 49.711281235740387 ], [ 25.101341587344336, 49.725337226531735 ], [ 25.106767611835778, 49.74430247697768 ], [ 25.078035516226066, 49.779855861958424 ], [ 25.093073358049026, 49.815719306201004 ], [ 25.245312127352804, 49.836183173414668 ], [ 25.389799432198004, 49.880056464534164 ], [ 25.39321007688352, 49.927004503554997 ], [ 25.433569369630675, 49.945375474798311 ], [ 25.372746208770479, 49.996483466438804 ], [ 25.369955681709314, 50.028212796483331 ], [ 25.410728387405129, 50.027954413165617 ], [ 25.416309442426837, 50.069192205955517 ], [ 25.467055697962053, 50.105210679828986 ], [ 25.441475863720143, 50.132263292417008 ], [ 25.453413120119365, 50.16272654879117 ], [ 25.566687859756883, 50.14076406480973 ], [ 25.606892123772468, 50.160892036138534 ], [ 25.635882602699951, 50.150789293291211 ], [ 25.675776808353021, 50.170581366936517 ], [ 25.809050327210798, 50.179159653695024 ], [ 25.947181430678484, 50.264529120022871 ], [ 26.021957227743826, 50.253367010878833 ], [ 26.065262078981732, 50.26525259133399 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-12", "NAME_1": "Dnipropetrovs'k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.983942499047089, 49.163717760166492 ], [ 35.169822625413815, 49.147232978419197 ], [ 35.361335483645632, 49.022020982382401 ], [ 35.462466262208238, 48.974892076208334 ], [ 35.579203321576017, 48.975822252195144 ], [ 35.794383986132061, 48.934222724199344 ], [ 35.930654737626014, 48.976390692976054 ], [ 35.952513868819949, 48.968690904461653 ], [ 36.022018670125533, 48.900116279142935 ], [ 35.961970655621258, 48.854899399987289 ], [ 36.072144809835095, 48.829112861069632 ], [ 36.163715447909567, 48.767256171435122 ], [ 36.170691766012169, 48.757747707790429 ], [ 36.132812941064344, 48.723692939577461 ], [ 36.285671827992473, 48.634111842887194 ], [ 36.267533399846513, 48.59780914997225 ], [ 36.307582635130473, 48.569903875763202 ], [ 36.27404463085503, 48.541042588944322 ], [ 36.284276564012202, 48.528252671823338 ], [ 36.374761997368239, 48.541636868146895 ], [ 36.364530064211067, 48.558457547577746 ], [ 36.382358433095192, 48.580549220969772 ], [ 36.477184686224291, 48.646875922485833 ], [ 36.583431430915766, 48.602666734582101 ], [ 36.725438267062373, 48.625921128856987 ], [ 36.738305697649821, 48.601581528964346 ], [ 36.787191603010058, 48.603700263356416 ], [ 36.749312778062233, 48.563961087334292 ], [ 36.751173130035909, 48.529234523754269 ], [ 36.795098097099469, 48.53481557877592 ], [ 36.81917931457366, 48.578249620323675 ], [ 36.883103061756856, 48.57930898751971 ], [ 36.891009555846324, 48.533988756475878 ], [ 36.854215935616935, 48.51652212189839 ], [ 36.858556756289261, 48.492673448420874 ], [ 36.835457390745944, 48.476343696304525 ], [ 36.847239618413653, 48.433969021053429 ], [ 36.808947381416488, 48.413143419533185 ], [ 36.81421837717636, 48.319014798394221 ], [ 36.901086460271927, 48.300307929467351 ], [ 36.913798862127749, 48.263824368499797 ], [ 36.927183057552043, 48.201502590871826 ], [ 36.869770542276683, 48.161039944437846 ], [ 36.892559848558165, 48.067557278445634 ], [ 36.829411248630208, 48.032107245353075 ], [ 36.665080194195582, 48.088072822502738 ], [ 36.589064161881538, 48.078926093164625 ], [ 36.57505984883295, 48.058229681954231 ], [ 36.57661014244411, 47.970715643711969 ], [ 36.61340376177418, 47.95702138902584 ], [ 36.63402265771947, 47.924258531106318 ], [ 36.534442172768024, 47.905034898241922 ], [ 36.53304690878781, 47.883640855041392 ], [ 36.569478793811243, 47.867362778869108 ], [ 36.576145053551386, 47.844211738281047 ], [ 36.39197024862807, 47.825711574929187 ], [ 36.361222772313056, 47.839870916709401 ], [ 36.285981887254252, 47.813309231435881 ], [ 36.214926792337565, 47.830310777120644 ], [ 36.203454623931748, 47.862763577577027 ], [ 36.15224328040307, 47.837907212847597 ], [ 36.078656039944292, 47.845167751790314 ], [ 36.060827671060167, 47.87377065709012 ], [ 36.098396436746157, 47.873357245040779 ], [ 36.117620069610496, 47.938676256204246 ], [ 36.059122348717381, 47.951130276540994 ], [ 36.053076205702325, 47.993039862899309 ], [ 36.021295199713677, 48.004227810465068 ], [ 36.044704623619452, 48.043295192918777 ], [ 35.974579705588894, 48.028644924723494 ], [ 35.959180128560035, 48.090708319933015 ], [ 35.808853387174054, 48.066833808033778 ], [ 35.674132928391884, 48.126985175325558 ], [ 35.514762811354615, 48.079391181158087 ], [ 35.254571974117312, 48.129672350498538 ], [ 35.164551628754623, 48.119130357180211 ], [ 35.118146192992413, 48.129052231974924 ], [ 35.017428827378467, 48.116649889380881 ], [ 34.943118117407153, 48.080993149813992 ], [ 34.886015658695669, 48.080889797925806 ], [ 34.869892612154331, 48.119337062755221 ], [ 34.851444125645855, 48.122747708340057 ], [ 34.835889519885427, 48.108588364761204 ], [ 34.840230339658433, 48.041305649735932 ], [ 34.813410271966461, 48.015519110818275 ], [ 34.842245721262998, 48.006553250432148 ], [ 34.857025180667506, 47.978389593804707 ], [ 34.90839155472645, 47.966684882301479 ], [ 34.916298048815861, 47.947151191074568 ], [ 34.819766473344032, 47.906740221484029 ], [ 34.808139276206589, 47.877543036082216 ], [ 34.901880323717933, 47.83082754195749 ], [ 34.886325717957504, 47.760134182246702 ], [ 34.945288526844024, 47.742770901355982 ], [ 34.895317416765351, 47.597250067736411 ], [ 34.929630568296091, 47.563298652310948 ], [ 34.898262974356783, 47.523249417026932 ], [ 34.594612258049267, 47.568621324014885 ], [ 34.445939162162574, 47.522887681821032 ], [ 34.157481317308907, 47.47389842457261 ], [ 33.901786330374819, 47.514464422894775 ], [ 33.654411248680162, 47.486817532003499 ], [ 33.624335565034301, 47.511622218990169 ], [ 33.584441359381231, 47.51472280531317 ], [ 33.575294630942437, 47.537589626859756 ], [ 33.588782180053556, 47.560043036357001 ], [ 33.562892287449074, 47.575365099020075 ], [ 33.494265985286972, 47.564151313032653 ], [ 33.485274285579806, 47.532732042249904 ], [ 33.365953402927175, 47.51436107010727 ], [ 33.339443393597719, 47.49508576129881 ], [ 33.283426141403311, 47.539320786724886 ], [ 32.994193150193723, 47.595441393505496 ], [ 33.02070315862386, 47.642596137201963 ], [ 32.983754509662845, 47.710008043436403 ], [ 33.086952345774137, 47.731712144999449 ], [ 33.060287305914414, 47.775585436118945 ], [ 33.0827665547327, 47.89593984574725 ], [ 33.031710239036272, 47.919736843280646 ], [ 33.057496778853249, 48.025802720818888 ], [ 33.134287956623893, 48.076962389302821 ], [ 33.2222929221806, 48.090449938413883 ], [ 33.241981642139081, 48.173907375924614 ], [ 33.268801710730372, 48.102723089798758 ], [ 33.348125034043051, 48.185947984212078 ], [ 33.40290205278751, 48.175250963061444 ], [ 33.470546502119362, 48.227986761779619 ], [ 33.513386265363863, 48.238502915776905 ], [ 33.525943637588796, 48.297414048719361 ], [ 33.500002069040249, 48.311211656192938 ], [ 33.488529900634376, 48.403945014251008 ], [ 33.471476678106171, 48.422961941540336 ], [ 33.484499139223885, 48.443916734269862 ], [ 33.461554803311515, 48.497763577027456 ], [ 33.443261346433985, 48.504274807136596 ], [ 33.4454317558708, 48.525307115131227 ], [ 33.580410597071364, 48.559413561086956 ], [ 33.821067743081869, 48.668399155996212 ], [ 33.769701369022926, 48.680543117970501 ], [ 33.756523879173642, 48.697699693286211 ], [ 33.598549025217324, 48.721832586704465 ], [ 33.557776320420828, 48.762295234037822 ], [ 33.572194044619437, 48.787074083502148 ], [ 33.619374626737624, 48.784231878698222 ], [ 33.664798210568961, 48.807615465081597 ], [ 33.70887820816273, 48.782500718833091 ], [ 33.760399610953243, 48.807098701144128 ], [ 33.774817336051171, 48.77898672136007 ], [ 33.801844110217473, 48.796143297575099 ], [ 33.810990837756947, 48.761985174775987 ], [ 33.82571862211671, 48.759453030133216 ], [ 33.919459669628054, 48.865803128511573 ], [ 34.040175816260899, 48.807822171555927 ], [ 34.161977165813539, 48.784386909228431 ], [ 34.237476434190057, 48.746275540283932 ], [ 34.293752068802917, 48.778314927791655 ], [ 34.275872023075408, 48.809992580992798 ], [ 34.315921258359367, 48.839603175745935 ], [ 34.308789910625876, 48.867353421223413 ], [ 34.274321730363567, 48.891227932223273 ], [ 34.277732375049027, 48.922285467800066 ], [ 34.308169793001525, 48.970964666685973 ], [ 34.367907749143285, 48.991066800492433 ], [ 34.34449832523751, 49.008533434170602 ], [ 34.402841017398998, 49.050132962166458 ], [ 34.40826704278976, 49.076539618708409 ], [ 34.72649051292683, 49.145992744069872 ], [ 34.784058057833079, 49.174569810948014 ], [ 34.864776646025348, 49.173407090964474 ], [ 34.867412144354944, 49.144907538452117 ], [ 34.891131625723915, 49.148266507193512 ], [ 34.926219923610574, 49.183044744919016 ], [ 34.983942499047089, 49.163717760166492 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-71", "NAME_1": "Cherkasy" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.019213902199795, 50.251454982961093 ], [ 32.094609815990168, 50.236933905974979 ], [ 32.140705194289239, 50.182311916861465 ], [ 32.215842725661219, 50.147533678236641 ], [ 32.269689569318132, 50.156835436306324 ], [ 32.271704950023377, 50.131358953952542 ], [ 32.230570510020982, 50.118594876152599 ], [ 32.255065137745873, 50.062836005477266 ], [ 32.329427524560572, 50.051777249120732 ], [ 32.381207309769536, 49.987026678738232 ], [ 32.415675490031845, 49.96749298841064 ], [ 32.407148879217402, 49.893440659958458 ], [ 32.368649936645227, 49.887497869730851 ], [ 32.372680698055774, 49.86362335873099 ], [ 32.431023390217263, 49.805177313781996 ], [ 32.468902215165087, 49.806572577762211 ], [ 32.503525425058285, 49.78001089069005 ], [ 32.562488233944805, 49.766600856844036 ], [ 32.571479932752652, 49.705881048771346 ], [ 32.692971225741474, 49.671645413405088 ], [ 32.710799594625598, 49.619968980983685 ], [ 32.752089064258882, 49.593820705960809 ], [ 32.754414504225963, 49.547156886880828 ], [ 32.675918003213269, 49.477135322537094 ], [ 32.747593214854987, 49.406131904463791 ], [ 32.789347771582356, 49.333888251141843 ], [ 32.788727654857382, 49.261799628350161 ], [ 32.752554152252287, 49.181287747531485 ], [ 32.789502801213303, 49.146767890425792 ], [ 32.800354851994825, 49.07599701634922 ], [ 32.827174919686797, 49.027705390191556 ], [ 32.853891636389903, 49.021375027235706 ], [ 32.850791050066903, 49.005820421475221 ], [ 32.775240105746263, 48.961714586359051 ], [ 32.689405552324388, 48.987449449332587 ], [ 32.634318475217412, 48.946004950967676 ], [ 32.567759229704677, 48.957942206467635 ], [ 32.547088656915946, 48.929597682686904 ], [ 32.526934848964061, 48.927711494090147 ], [ 32.456189813309209, 49.018429470543595 ], [ 32.452934198254638, 49.056127428338129 ], [ 32.369115024638631, 49.045792141494132 ], [ 32.331907993259279, 49.089768785401077 ], [ 32.288758171652262, 49.070028387699892 ], [ 32.284572380610882, 49.047962550930947 ], [ 32.241422559903185, 49.052044990084198 ], [ 32.192536655442268, 48.999774278460166 ], [ 32.142565545363595, 48.975615545720814 ], [ 32.132953728931398, 48.961146145578141 ], [ 32.143650750082031, 48.935798855332905 ], [ 32.121326531794011, 48.910270697934322 ], [ 32.026190220302396, 48.928047389975063 ], [ 31.886715528798618, 48.85975698549646 ], [ 31.841550327385676, 48.909934801150143 ], [ 31.732306349158648, 48.942645982226281 ], [ 31.683575474328677, 48.943007717432181 ], [ 31.651122673872294, 48.917427883190214 ], [ 31.544100782824842, 48.924197495717806 ], [ 31.529476353051223, 48.904043687765977 ], [ 31.527305942715088, 48.835210680028808 ], [ 31.481210565315337, 48.803481349984281 ], [ 31.462296990813456, 48.761106676531881 ], [ 31.332899203735224, 48.723847968309087 ], [ 31.309128044623549, 48.742813218755032 ], [ 31.223655226407573, 48.753871975111565 ], [ 31.067385694793984, 48.727413641726173 ], [ 30.93814293824596, 48.756223253500309 ], [ 30.820062289942712, 48.749789536857634 ], [ 30.702291700901242, 48.765189113886493 ], [ 30.606845331047168, 48.714520371817684 ], [ 30.599403924051842, 48.659975897969275 ], [ 30.540906203158727, 48.619254869116901 ], [ 30.576097852933572, 48.604320380081447 ], [ 30.567571242119129, 48.561919868207326 ], [ 30.484423862071537, 48.55352244680347 ], [ 30.414712355191, 48.571919257367824 ], [ 30.384946729907654, 48.530526434946978 ], [ 30.247280715332749, 48.47755809223213 ], [ 30.193640578150166, 48.493474433198514 ], [ 30.108426140553945, 48.45332184512705 ], [ 30.036905959442436, 48.473785712340714 ], [ 29.957892693592896, 48.459316311298721 ], [ 30.021661411145203, 48.533627021269979 ], [ 29.963628778245493, 48.609849758259713 ], [ 29.958202751955412, 48.655325018934434 ], [ 29.859087354997428, 48.698319810910505 ], [ 29.857537062285587, 48.71769847340579 ], [ 29.884047071615043, 48.743278306748437 ], [ 29.846323276298165, 48.764827379579856 ], [ 29.772477655219575, 48.769297390562087 ], [ 29.745295851422384, 48.848543199509038 ], [ 29.703592970639079, 48.867482612432582 ], [ 29.722351514610693, 48.89696401597655 ], [ 29.716150343763331, 48.914378973710654 ], [ 29.635948521307171, 48.947038478842671 ], [ 29.672690463793856, 48.983522039810282 ], [ 29.67083011182018, 49.00140208643711 ], [ 29.593108758062726, 49.031477770082972 ], [ 29.6095418638659, 49.062121894509801 ], [ 29.670675083088611, 49.085169583209677 ], [ 29.67486087412999, 49.114625149231244 ], [ 29.707158644056165, 49.131678371759449 ], [ 29.710569288741681, 49.182760524978221 ], [ 29.674550815767532, 49.209709784778738 ], [ 29.697236769261451, 49.227279772143731 ], [ 29.745295851422384, 49.213378810983329 ], [ 29.729482863243504, 49.195214545314968 ], [ 29.761470574807163, 49.174621486892079 ], [ 29.862342970951318, 49.173846341435478 ], [ 29.920065544589193, 49.246245021690356 ], [ 30.038611280885902, 49.285105699468431 ], [ 30.111526726876946, 49.274977119098764 ], [ 30.104395379143398, 49.30128042285321 ], [ 30.15188602142274, 49.329547431368837 ], [ 30.182891880156149, 49.3214859085478 ], [ 30.169249302313403, 49.284123847537501 ], [ 30.349548373658479, 49.258053086880409 ], [ 30.382001174114862, 49.232964179053567 ], [ 30.419879999062687, 49.335955308690529 ], [ 30.437708367946811, 49.348512681814782 ], [ 30.498221470444491, 49.323863023559682 ], [ 30.550207961228409, 49.340657864568755 ], [ 30.592737665211075, 49.329935004097138 ], [ 30.619402704171421, 49.35853791029632 ], [ 30.684566684804622, 49.353835354418038 ], [ 30.725391066444558, 49.320788276557664 ], [ 30.868173048947028, 49.36063080536735 ], [ 30.908015577756714, 49.346135565903637 ], [ 30.950390252108434, 49.414296780072334 ], [ 31.155855747444775, 49.556381131483988 ], [ 31.156785923431585, 49.585190742358861 ], [ 31.129759149265283, 49.595784409822613 ], [ 31.128208855654123, 49.614439601906099 ], [ 31.174614292315709, 49.671748766192593 ], [ 31.169808383649979, 49.695519925304268 ], [ 31.196938510603786, 49.753449205416473 ], [ 31.182055698411716, 49.773809718943369 ], [ 31.198850539420846, 49.804350491481955 ], [ 31.178645053726257, 49.818251450843775 ], [ 31.21202802927013, 49.853959866354728 ], [ 31.335999790058224, 49.896747951856469 ], [ 31.430205925562973, 49.906101385870215 ], [ 31.496920199807334, 49.840033066772605 ], [ 31.5193994477263, 49.866465563534916 ], [ 31.570920851416133, 49.862693182744181 ], [ 31.596552361602164, 49.897626450999894 ], [ 31.613140497036284, 49.858145657396165 ], [ 31.716648389711395, 49.848533840963967 ], [ 31.806772087861532, 49.96020661104626 ], [ 31.810027703815479, 50.00563019487754 ], [ 31.871987746237494, 50.023458563761665 ], [ 31.849611851106033, 50.094978745772494 ], [ 31.91431074374583, 50.147275295818247 ], [ 31.954359979029789, 50.147533678236641 ], [ 31.987536248998651, 50.169289455743751 ], [ 31.995339390300614, 50.186497707902845 ], [ 31.975133904605968, 50.224066474488154 ], [ 32.019213902199795, 50.251454982961093 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-35", "NAME_1": "Kirovohrad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.788727654857382, 49.261799628350161 ], [ 33.038221470044789, 49.18195954020058 ], [ 33.149325799346116, 49.125632228744337 ], [ 33.204102818090576, 49.070906886843318 ], [ 33.297068719245999, 49.064860744727582 ], [ 33.34161380393391, 49.044035143207282 ], [ 33.345954623706916, 49.032666328488233 ], [ 33.31923790880245, 49.025586655799486 ], [ 33.29939415921308, 48.995459296209503 ], [ 33.378820835313263, 48.939958807952621 ], [ 33.425071242343961, 48.950914212420969 ], [ 33.548422886407081, 48.901873277429786 ], [ 33.596998731606163, 48.922388821486891 ], [ 33.651620720719677, 48.899289455943631 ], [ 33.668880649722212, 48.869058743566143 ], [ 33.694615512695748, 48.905800686052771 ], [ 33.778486362255819, 48.92254385021846 ], [ 33.807425165239181, 48.903449409462667 ], [ 33.892019484311732, 48.891744697060119 ], [ 33.919459669628054, 48.865803128511573 ], [ 33.82571862211671, 48.759453030133216 ], [ 33.810990837756947, 48.761985174775987 ], [ 33.801844110217473, 48.796143297575099 ], [ 33.774817336051171, 48.77898672136007 ], [ 33.773732131332793, 48.801414293334972 ], [ 33.754043409575672, 48.807563788238213 ], [ 33.70887820816273, 48.782500718833091 ], [ 33.670844353584016, 48.807408759506643 ], [ 33.619374626737624, 48.784231878698222 ], [ 33.584441359381231, 48.794489651176434 ], [ 33.557569613946498, 48.771984564835748 ], [ 33.598549025217324, 48.721832586704465 ], [ 33.756523879173642, 48.697699693286211 ], [ 33.769701369022926, 48.680543117970501 ], [ 33.821067743081869, 48.668399155996212 ], [ 33.580410597071364, 48.559413561086956 ], [ 33.4454317558708, 48.525307115131227 ], [ 33.443261346433985, 48.504274807136596 ], [ 33.461554803311515, 48.497763577027456 ], [ 33.484499139223885, 48.443916734269862 ], [ 33.471476678106171, 48.422961941540336 ], [ 33.488529900634376, 48.403945014251008 ], [ 33.500002069040249, 48.311211656192938 ], [ 33.525943637588796, 48.297414048719361 ], [ 33.513386265363863, 48.238502915776905 ], [ 33.470546502119362, 48.227986761779619 ], [ 33.40290205278751, 48.175250963061444 ], [ 33.348125034043051, 48.185947984212078 ], [ 33.268801710730372, 48.102723089798758 ], [ 33.241981642139081, 48.173907375924614 ], [ 33.2222929221806, 48.090449938413883 ], [ 33.111291944767402, 48.064198309704182 ], [ 33.057496778853249, 48.025802720818888 ], [ 33.035275913352677, 47.966529853569853 ], [ 32.975692986841864, 48.044509588846438 ], [ 32.888204787021266, 48.032158922196459 ], [ 32.882778761630505, 47.993970037986855 ], [ 32.844434848689275, 47.986218574427653 ], [ 32.829345330922251, 47.966684882301479 ], [ 32.777565544814024, 47.989319159851334 ], [ 32.696071812064474, 47.970302232561949 ], [ 32.681964146228324, 47.943223782451582 ], [ 32.714727004147903, 47.929736233340464 ], [ 32.715760532022898, 47.91521515635435 ], [ 32.662740513363985, 47.900254827997912 ], [ 32.68227420369152, 47.845865382881072 ], [ 32.651991815369968, 47.83733877206663 ], [ 32.644550409273961, 47.800648505524066 ], [ 32.467041864090731, 47.781088975875491 ], [ 32.342915072772371, 47.796178494541891 ], [ 32.287517938202257, 47.822455959874617 ], [ 32.234446241800583, 47.820440579169372 ], [ 32.169127232435812, 47.757705390391436 ], [ 32.138689812684675, 47.747525133178328 ], [ 32.021849399630071, 47.809846909906923 ], [ 31.862324252961912, 47.795842596858336 ], [ 31.839069858687026, 47.845968736567897 ], [ 31.863409457680291, 47.89438955303541 ], [ 31.821241488903581, 47.945187486313444 ], [ 31.768169793401228, 47.952577216465329 ], [ 31.708070102952888, 48.019756577803776 ], [ 31.769254999018983, 48.047041734388529 ], [ 31.758041213031561, 48.09541087491192 ], [ 31.69861331615158, 48.093757229412574 ], [ 31.61655114082248, 48.118742784451911 ], [ 31.591281365842349, 48.109570216692134 ], [ 31.584873487621337, 48.086212470529063 ], [ 31.533662144092659, 48.086780911309972 ], [ 31.511803012898724, 48.055051581265445 ], [ 31.499710727767877, 48.063888251341723 ], [ 31.503741489178367, 48.118096829305216 ], [ 31.414496291070975, 48.107709866517098 ], [ 31.384265577794167, 48.124943956198592 ], [ 31.343906284147693, 48.111792303871709 ], [ 31.250320265367918, 48.120939033209766 ], [ 31.231096633402899, 48.131636054360399 ], [ 31.228151075811468, 48.158895372523375 ], [ 31.189807162870238, 48.171478583170028 ], [ 31.185466343097232, 48.205068264288968 ], [ 31.168568150199974, 48.211682848084934 ], [ 31.041805860552017, 48.21912425418094 ], [ 30.906155225783039, 48.157112534915541 ], [ 30.857114291691175, 48.186258043473913 ], [ 30.816961703619711, 48.159076240576042 ], [ 30.789004754365919, 48.177783107704215 ], [ 30.704772169599948, 48.181581326017351 ], [ 30.619867791265563, 48.145046088206357 ], [ 30.501787143861577, 48.163572089080617 ], [ 30.347532992953234, 48.163572089080617 ], [ 30.322314893917223, 48.134607449474174 ], [ 30.083466423936272, 48.143728339491247 ], [ 30.04780968616808, 48.155200506997801 ], [ 29.996753371370971, 48.220984605255296 ], [ 29.959442987204056, 48.209589952114584 ], [ 29.924096306899003, 48.221553046036206 ], [ 29.882186721440007, 48.18000519488379 ], [ 29.825859409084444, 48.210106716052053 ], [ 29.774803094287336, 48.203104560427107 ], [ 29.786430291424779, 48.250801907382083 ], [ 29.738939650044813, 48.267079983554368 ], [ 29.775423211012367, 48.316896064002151 ], [ 29.779298943691288, 48.35309540502891 ], [ 29.883426954890012, 48.432599596394255 ], [ 29.916964959165512, 48.428310452565313 ], [ 29.940064324708771, 48.375600491369539 ], [ 29.998096957608482, 48.42205760397519 ], [ 30.038766309617472, 48.427690334940962 ], [ 30.076128370627771, 48.455078844313164 ], [ 30.120828484946628, 48.45639659302833 ], [ 30.184752232129767, 48.492492581267584 ], [ 30.247280715332749, 48.47755809223213 ], [ 30.384946729907654, 48.530526434946978 ], [ 30.408821241806834, 48.570213935025038 ], [ 30.456466912817746, 48.570782375805948 ], [ 30.484423862071537, 48.55352244680347 ], [ 30.57408247222827, 48.565149644840233 ], [ 30.576097852933572, 48.604320380081447 ], [ 30.540906203158727, 48.619254869116901 ], [ 30.599403924051842, 48.659975897969275 ], [ 30.606845331047168, 48.714520371817684 ], [ 30.702291700901242, 48.765189113886493 ], [ 30.820062289942712, 48.749789536857634 ], [ 30.93814293824596, 48.756223253500309 ], [ 31.067385694793984, 48.727413641726173 ], [ 31.223655226407573, 48.753871975111565 ], [ 31.309128044623549, 48.742813218755032 ], [ 31.332899203735224, 48.723847968309087 ], [ 31.462296990813456, 48.761106676531881 ], [ 31.481210565315337, 48.803481349984281 ], [ 31.527305942715088, 48.835210680028808 ], [ 31.529476353051223, 48.904043687765977 ], [ 31.544100782824842, 48.924197495717806 ], [ 31.651122673872294, 48.917427883190214 ], [ 31.683575474328677, 48.943007717432181 ], [ 31.732306349158648, 48.942645982226281 ], [ 31.841550327385676, 48.909934801150143 ], [ 31.886715528798618, 48.85975698549646 ], [ 32.026190220302396, 48.928047389975063 ], [ 32.129233025883423, 48.912518621736979 ], [ 32.142565545363595, 48.975615545720814 ], [ 32.192536655442268, 48.999774278460166 ], [ 32.241422559903185, 49.052044990084198 ], [ 32.284572380610882, 49.047962550930947 ], [ 32.288758171652262, 49.070028387699892 ], [ 32.331907993259279, 49.089768785401077 ], [ 32.369115024638631, 49.045792141494132 ], [ 32.452934198254638, 49.056127428338129 ], [ 32.454484490966479, 49.02160757123238 ], [ 32.503525425058285, 48.9730834010781 ], [ 32.51980350123057, 48.929106757171098 ], [ 32.547088656915946, 48.929597682686904 ], [ 32.567759229704677, 48.957942206467635 ], [ 32.634318475217412, 48.946004950967676 ], [ 32.689405552324388, 48.987449449332587 ], [ 32.782371454379074, 48.963729967064296 ], [ 32.855441929101744, 49.018403632121874 ], [ 32.82469445188741, 49.030392564465274 ], [ 32.800354851994825, 49.07599701634922 ], [ 32.789502801213303, 49.146767890425792 ], [ 32.752554152252287, 49.181287747531485 ], [ 32.788727654857382, 49.261799628350161 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UA-30", "NAME_1": "Kiev City" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.738579569391618, 50.668153050722708 ], [ 30.834853259770114, 50.63879710530216 ], [ 30.842339119354847, 50.583978551369 ], [ 30.77560546292176, 50.544198930136474 ], [ 30.750571941641795, 50.506299492727408 ], [ 30.768079276837113, 50.488703509559286 ], [ 30.760252259434196, 50.43988011157785 ], [ 30.817012763528169, 50.367226506797806 ], [ 30.846045721033192, 50.353492985013247 ], [ 30.830268158049023, 50.332724846574365 ], [ 30.790160822064252, 50.332587875330148 ], [ 30.791965799182265, 50.292555746950143 ], [ 30.753676885180084, 50.2891579715631 ], [ 30.724343095457471, 50.309563514144827 ], [ 30.718108877222903, 50.262483327843256 ], [ 30.605901274923895, 50.267452462561096 ], [ 30.654383518684426, 50.155983494142902 ], [ 30.639759213017271, 50.12409198125988 ], [ 30.620784347019992, 50.122712035432073 ], [ 30.648197621922691, 50.03369265169448 ], [ 30.585565493652609, 50.014154717466226 ], [ 30.568478920665655, 50.091072387580596 ], [ 30.541697786423697, 50.097418012031596 ], [ 30.536180761333071, 50.145639750973714 ], [ 30.511085473715639, 50.146179644574886 ], [ 30.520806118907217, 50.190074235237716 ], [ 30.476911529143763, 50.199794880429351 ], [ 30.445622347093604, 50.263568562239357 ], [ 30.41059423723425, 50.261989207036265 ], [ 30.413718066535523, 50.303914962305612 ], [ 30.332238312847835, 50.368768432217337 ], [ 30.318757298210699, 50.40827410826347 ], [ 30.238241797620844, 50.414672186572147 ], [ 30.223303712196525, 50.382020633245588 ], [ 30.19660342970451, 50.374352670839073 ], [ 30.185993737221168, 50.387245468603453 ], [ 30.20028059567295, 50.478145037963088 ], [ 30.217438779875749, 50.542431728141707 ], [ 30.258627859088392, 50.565877710388008 ], [ 30.249909840166993, 50.600723265965939 ], [ 30.267873699111931, 50.608004352618764 ], [ 30.285561019225611, 50.588952523540115 ], [ 30.291309143102467, 50.609275474183733 ], [ 30.270164967539188, 50.63339306383881 ], [ 30.333473963352731, 50.637918952397683 ], [ 30.334013856054582, 50.663014239115796 ], [ 30.432651793045807, 50.66244745938269 ], [ 30.437266331376065, 50.634241784630603 ], [ 30.462512034202973, 50.630365880181216 ], [ 30.475767426025868, 50.595864218159136 ], [ 30.548079872987728, 50.548982771237888 ], [ 30.538686942548338, 50.571958808252361 ], [ 30.551813308637236, 50.580783641451887 ], [ 30.647182495975414, 50.575179282297995 ], [ 30.664327235313635, 50.602694650937337 ], [ 30.718544131106739, 50.62352455391499 ], [ 30.71559759865022, 50.651805437171163 ], [ 30.738579569391618, 50.668153050722708 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/uruguay.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/uruguay.geojson new file mode 100644 index 000000000000..7fc5dce74731 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/uruguay.geojson @@ -0,0 +1,25 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "UY-PA", "NAME_1": "Paysandú" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.200123619999971, -32.447201041999932 ], [ -58.200111852217844, -32.447129912359713 ], [ -58.199724487999902, -32.444788512999892 ], [ -58.189957641999939, -32.433936461999934 ], [ -58.164946248999939, -32.389494729999868 ], [ -58.101590942999934, -32.311359964999937 ], [ -58.096526652999955, -32.280974222999888 ], [ -58.106913614999968, -32.251828714999959 ], [ -58.175229858999927, -32.17410736099994 ], [ -58.186546996999908, -32.152920023999883 ], [ -58.180862589999947, -32.132456155999918 ], [ -58.158796752999962, -32.101553648999925 ], [ -58.148306437999906, -32.062899677999923 ], [ -58.145309203999915, -32.017889505999904 ], [ -58.149029906999914, -31.975204772999902 ], [ -58.158796752999962, -31.943888854999983 ], [ -58.190319376999923, -31.913296406999876 ], [ -58.202618367999975, -31.893142597999898 ], [ -58.196003784999874, -31.872575377999908 ], [ -58.168615274999922, -31.8460136919999 ], [ -58.15285396399986, -31.835988464999971 ], [ -58.130839802999873, -31.827823587999944 ], [ -58.083452514999891, -31.819762063999875 ], [ -58.059267943999913, -31.811493834999922 ], [ -58.048880981999901, -31.797127786999908 ], [ -57.988626260999922, -31.642821960999896 ], [ -57.979582885999974, -31.598793639999926 ], [ -57.986817585999944, -31.554145202999891 ], [ -58.013327596999943, -31.525619811999945 ], [ -58.038978011426082, -31.508637469243808 ], [ -58.035754360974977, -31.507120456843609 ], [ -58.019424607959309, -31.499989109110118 ], [ -58.00441260365875, -31.496371758849591 ], [ -57.988625453901591, -31.498128757136442 ], [ -57.971313849854255, -31.502004489815363 ], [ -57.960177578232617, -31.501694430553528 ], [ -57.955035772782708, -31.501022637884432 ], [ -57.953821376855046, -31.500247490629192 ], [ -57.953640509701756, -31.499679049848282 ], [ -57.952555304983321, -31.490118910259525 ], [ -57.951495937787286, -31.484847913600333 ], [ -57.948266161154379, -31.481075534608237 ], [ -57.943615282119595, -31.478595065909587 ], [ -57.906614956315195, -31.470585219032614 ], [ -57.898734299748128, -31.470430190301045 ], [ -57.888450689747515, -31.471928806169444 ], [ -57.862069871627284, -31.480610446614833 ], [ -57.795924038163832, -31.51254648223437 ], [ -57.787242397718444, -31.519109389186951 ], [ -57.783728400245479, -31.522830092234983 ], [ -57.780886197240193, -31.527170912007989 ], [ -57.76812211764161, -31.562362562682097 ], [ -57.765900031361355, -31.566961764873554 ], [ -57.763083665878469, -31.57130258554588 ], [ -57.759388801252157, -31.575126642280736 ], [ -57.754815435683781, -31.578227227704417 ], [ -57.749699469554855, -31.580759373246451 ], [ -57.742516445877243, -31.583084812314212 ], [ -57.595367805180047, -31.610576673574599 ], [ -57.523925136635739, -31.642047621200732 ], [ -57.490283779572735, -31.662459811571068 ], [ -57.479612595944559, -31.667679132286139 ], [ -57.455712245623602, -31.675637301420352 ], [ -57.431501837839562, -31.678531183067662 ], [ -57.403234829323878, -31.679358006266966 ], [ -57.38481218123718, -31.683078708415678 ], [ -57.374451056870782, -31.686644381832764 ], [ -57.369670986626716, -31.690778496930079 ], [ -57.347837693854501, -31.719717299014121 ], [ -57.340447963702559, -31.727003675479239 ], [ -57.326908738647376, -31.736305433548921 ], [ -57.304300300418504, -31.745658867562668 ], [ -57.22500281372885, -31.765192559688899 ], [ -57.214099087003262, -31.770050144298693 ], [ -57.177176275564648, -31.794441420135456 ], [ -57.165549079326524, -31.797076917565676 ], [ -57.081058112142159, -31.805861911697889 ], [ -57.068164842233671, -31.809117526752459 ], [ -57.059250657791608, -31.809169202696523 ], [ -57.049587165415346, -31.807877293302454 ], [ -57.035815396363432, -31.803588148574192 ], [ -57.028141446270695, -31.800022475157107 ], [ -57.022017787990535, -31.796353448053196 ], [ -57.017702805739873, -31.793201185786074 ], [ -57.011449958049127, -31.791392510655839 ], [ -57.003879360743895, -31.791185805080829 ], [ -56.959902716836893, -31.805551852436054 ], [ -56.939257981570563, -31.809789321220194 ], [ -56.927785814064066, -31.809427586014294 ], [ -56.841305304596119, -31.793356214517701 ], [ -56.829316372252777, -31.793356214517701 ], [ -56.812366501612757, -31.795526624853835 ], [ -56.80280636292332, -31.798007093552542 ], [ -56.795700852712173, -31.800952651143916 ], [ -56.776141323063598, -31.81221811307546 ], [ -56.770017665682701, -31.8141301409932 ], [ -56.763170538789325, -31.815215345711636 ], [ -56.721364305218515, -31.815525404973471 ], [ -56.710305548861982, -31.816868992110301 ], [ -56.702037319566614, -31.818936048759667 ], [ -56.651549444651152, -31.846324558131869 ], [ -56.638811205272873, -31.849838555604833 ], [ -56.631834886270951, -31.85076873069238 ], [ -56.580287645058775, -31.85231902430354 ], [ -56.509335903828912, -31.870715833968575 ], [ -56.502928025607901, -31.871335950693549 ], [ -56.492050137303977, -31.871077569174474 ], [ -56.475642869922524, -31.868597100475824 ], [ -56.462413703229799, -31.864876396528473 ], [ -56.456910162573934, -31.861310724010707 ], [ -56.452078417285122, -31.856763197763371 ], [ -56.447091640566725, -31.848339938837114 ], [ -56.445127935805601, -31.843534031070703 ], [ -56.442311571222035, -31.832320245083224 ], [ -56.436032884210249, -31.824827162143833 ], [ -56.405517950992646, -31.79697356477817 ], [ -56.396732957759809, -31.786844985307823 ], [ -56.391281093947327, -31.778370049538182 ], [ -56.389343227607867, -31.77273731857241 ], [ -56.374331224206628, -31.763073826196148 ], [ -56.321595424589191, -31.751291598528439 ], [ -56.288858405091332, -31.784881279647323 ], [ -56.284052497324865, -31.793666273779536 ], [ -56.279789191018324, -31.803536471730808 ], [ -56.279401618290024, -31.81009937868339 ], [ -56.280951911001864, -31.831855157089819 ], [ -56.279866706283485, -31.855316256939716 ], [ -56.277489590372284, -31.863274427872568 ], [ -56.274569872101893, -31.869372246831745 ], [ -56.250695360202712, -31.894745374599381 ], [ -56.246922980311297, -31.900791517614437 ], [ -56.244855922762611, -31.907096043047943 ], [ -56.245579393174467, -31.914227389882114 ], [ -56.247982346608012, -31.919188328178791 ], [ -56.251573859346138, -31.922133883971583 ], [ -56.255914680018464, -31.923374119220227 ], [ -56.264389613989465, -31.924614352670233 ], [ -56.275009120774314, -31.927818291780738 ], [ -56.280099250280159, -31.930298760479388 ], [ -56.28454342284067, -31.933399346802389 ], [ -56.287850714738681, -31.940479017692496 ], [ -56.290150316284041, -31.95060759896154 ], [ -56.289762742656421, -31.99318897888827 ], [ -56.290382860280772, -32.000113621046751 ], [ -56.290408697803173, -32.000268649778377 ], [ -56.294646165687993, -32.042695000973538 ], [ -56.301286587006359, -32.063572280236542 ], [ -56.306428391557006, -32.073649183762825 ], [ -56.317926398384543, -32.091374199859445 ], [ -56.322654791785226, -32.103156426627777 ], [ -56.351438565137641, -32.214312432772545 ], [ -56.358750780024479, -32.231882420137595 ], [ -56.388955654879567, -32.261906426940072 ], [ -56.422493659155066, -32.288519789057034 ], [ -56.459700689635099, -32.311619154600294 ], [ -56.489182094977707, -32.334615166456786 ], [ -56.50597693508746, -32.356525973594785 ], [ -56.559358689851649, -32.492486667625599 ], [ -56.591346402314628, -32.478120618471792 ], [ -56.604911464892211, -32.470420830856654 ], [ -56.659843513267504, -32.431198418771999 ], [ -56.670463019152976, -32.425772394280557 ], [ -56.725240037897436, -32.411458021970134 ], [ -56.742551641944715, -32.409545994052394 ], [ -56.749605475312421, -32.40985605151559 ], [ -56.76193030533932, -32.412388197956943 ], [ -56.771722988025488, -32.41295663783859 ], [ -56.784822964408249, -32.412078138695165 ], [ -56.82363196534294, -32.405876966948483 ], [ -56.834251472127733, -32.405256850223452 ], [ -56.859314540633534, -32.410217786721489 ], [ -56.880966966252458, -32.411302991439925 ], [ -56.903058641443124, -32.410166110777368 ], [ -56.927475754802231, -32.405256850223452 ], [ -56.959024216794148, -32.388927097207784 ], [ -57.013672044329383, -32.367584730850638 ], [ -57.028684047730621, -32.364329115796068 ], [ -57.039665289721313, -32.363398939809201 ], [ -57.044755419227215, -32.365000908465163 ], [ -57.054883998697562, -32.369755141186829 ], [ -57.073745897255321, -32.381692396686731 ], [ -57.08377112483754, -32.386498304453198 ], [ -57.089326341437527, -32.388513686057763 ], [ -57.102322964133464, -32.390529066763008 ], [ -57.165781623323255, -32.391252537174864 ], [ -57.175083381392938, -32.392957858618274 ], [ -57.185754564121851, -32.397350356134041 ], [ -57.251151088751726, -32.437554620149626 ], [ -57.258695847635238, -32.440396824054176 ], [ -57.26838517933254, -32.442877292752883 ], [ -57.286420253791675, -32.445306084608092 ], [ -57.296393806329093, -32.444427585464723 ], [ -57.305850593130344, -32.441895439922632 ], [ -57.32734798911838, -32.433730564314089 ], [ -57.335926275876943, -32.433110446689739 ], [ -57.343031786088034, -32.434040622676605 ], [ -57.358276332586684, -32.441585381560117 ], [ -57.375484584745777, -32.446804700476548 ], [ -57.401477831037084, -32.450577081267284 ], [ -57.411037970625841, -32.450111993273879 ], [ -57.446901414868421, -32.444840996614687 ], [ -57.460208095926873, -32.444324232677218 ], [ -57.470259161930755, -32.445099379033138 ], [ -57.475478481746507, -32.447424819000219 ], [ -57.48441850371097, -32.453522637959395 ], [ -57.492376674643822, -32.460602308849502 ], [ -57.495528936910887, -32.464167983165908 ], [ -57.504779019036505, -32.471609389261914 ], [ -57.50948157401541, -32.473779798698729 ], [ -57.533071865074533, -32.480136000076357 ], [ -57.538652920096183, -32.482151380781602 ], [ -57.543071255134294, -32.485251967104602 ], [ -57.546791958182325, -32.489076022940083 ], [ -57.551623705269776, -32.49713754666044 ], [ -57.552579718778986, -32.499152926466365 ], [ -57.552967292406606, -32.4998247209341 ], [ -57.559452684094083, -32.514190769188644 ], [ -57.562449916730259, -32.518841648223486 ], [ -57.569581265363126, -32.526748142312897 ], [ -57.573715378661802, -32.530417168517488 ], [ -57.58350806314661, -32.536153253170085 ], [ -57.757270066860087, -32.558270765883151 ], [ -57.761765917163359, -32.561474704993657 ], [ -57.764969855374545, -32.565712171979158 ], [ -57.767657029648205, -32.570621432533073 ], [ -57.769284836725831, -32.576512546816559 ], [ -57.772824672620516, -32.59661467882438 ], [ -57.777553066920518, -32.602092381058526 ], [ -57.784606900288225, -32.607621759236793 ], [ -57.799593065267743, -32.613512871721639 ], [ -57.808662279340695, -32.614288018976879 ], [ -57.816103685436701, -32.61299610778417 ], [ -57.821374681196573, -32.610308932611133 ], [ -57.90896623380462, -32.602712497783557 ], [ -57.921161871722973, -32.600387057816476 ], [ -57.93113542336107, -32.594599298119135 ], [ -57.951986864202411, -32.589535007034954 ], [ -57.975706345571382, -32.587364596698762 ], [ -57.987721117235765, -32.584987480787618 ], [ -57.995601772903512, -32.582093600938947 ], [ -57.998392299964678, -32.578993014615946 ], [ -57.999632534314003, -32.576874282022516 ], [ -58.005885382904069, -32.559614353019981 ], [ -58.011208054608005, -32.550829359787144 ], [ -58.014541184927737, -32.546850273421398 ], [ -58.018804491234278, -32.543594659266091 ], [ -58.040611944685509, -32.533517754840489 ], [ -58.045417853351239, -32.530572198148434 ], [ -58.049836188389349, -32.527316583093807 ], [ -58.076914639399092, -32.500238132084121 ], [ -58.077069668130662, -32.500031426509111 ], [ -58.080351121606952, -32.496827488297924 ], [ -58.084898647854288, -32.493571873243354 ], [ -58.091409877963486, -32.490057874871013 ], [ -58.102520311163403, -32.486027113460523 ], [ -58.110995246033781, -32.484735203167077 ], [ -58.162103237674273, -32.487267347809848 ], [ -58.19130042217671, -32.491866550001305 ], [ -58.191458508909932, -32.491891452065666 ], [ -58.197417772999927, -32.469821872999944 ], [ -58.200123619999971, -32.447201041999932 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-AR", "NAME_1": "Artigas" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.954529174999948, -30.096869811999937 ], [ -56.906366739999982, -30.108548685999921 ], [ -56.869211384999886, -30.102967630999984 ], [ -56.831280884999956, -30.102037454999945 ], [ -56.795159057999854, -30.12384491 ], [ -56.776607218999914, -30.150923359999922 ], [ -56.766995401999907, -30.161362 ], [ -56.704776977999899, -30.19836232499992 ], [ -56.673745279999963, -30.211281432999925 ], [ -56.656821248999876, -30.221306660999943 ], [ -56.641783406999878, -30.233915709999877 ], [ -56.6325850019999, -30.247454934999951 ], [ -56.629277709999883, -30.267712096999958 ], [ -56.632429972999944, -30.278150736999905 ], [ -56.631344766999945, -30.284661966999877 ], [ -56.61540258799991, -30.293343606999926 ], [ -56.605196492999937, -30.295617369999945 ], [ -56.595610513999929, -30.295410664999892 ], [ -56.585817830999872, -30.2965475459999 ], [ -56.575017455999955, -30.30243866 ], [ -56.569617268999878, -30.308019714999915 ], [ -56.560780598999969, -30.320525410999906 ], [ -56.523754435999905, -30.357319029999914 ], [ -56.511300414999937, -30.366000671999956 ], [ -56.494557250999975, -30.379333190999986 ], [ -56.441278849999918, -30.408788756999897 ], [ -56.424639038999885, -30.423568216999911 ], [ -56.400454467999907, -30.458914896999914 ], [ -56.385985066999893, -30.475761413999891 ], [ -56.372600870999946, -30.485889993999933 ], [ -56.326531331999917, -30.508317565999931 ], [ -56.267956095999921, -30.551105651999961 ], [ -56.235089884999894, -30.565368346999932 ], [ -56.215091104999942, -30.581904805999926 ], [ -56.183516805999972, -30.61456431099991 ], [ -56.177832397999936, -30.625519713999978 ], [ -56.175171061999919, -30.636061706999939 ], [ -56.17080440299992, -30.645776875999971 ], [ -56.159642293999894, -30.653941751999909 ], [ -56.140315307999941, -30.664793801999863 ], [ -56.131685343999891, -30.671925149999893 ], [ -56.125044921999887, -30.68029673199996 ], [ -56.091894490999977, -30.736107279999928 ], [ -56.076856648999893, -30.752333678999932 ], [ -56.011356770999896, -30.798222350999907 ], [ -55.995311238999932, -30.825817566 ], [ -55.988955037999915, -30.855789896999937 ], [ -55.993864298999938, -30.885452167999901 ], [ -56.011356770999896, -30.912633971999895 ], [ -56.015516723999923, -30.934338073999896 ], [ -56.016343546999849, -30.999863789999978 ], [ -56.022389688999908, -31.04554575599991 ], [ -56.022182983999926, -31.067146504999883 ], [ -56.017017874175565, -31.074296299234845 ], [ -56.017970546703339, -31.073658543207216 ], [ -56.055255093347853, -31.048698825690281 ], [ -56.063161587437321, -31.041774183531743 ], [ -56.073212653441203, -31.029836928031784 ], [ -56.080628221115489, -31.022705580298293 ], [ -56.106156379413392, -31.003843682639854 ], [ -56.117628546919889, -30.992113131815586 ], [ -56.132640550321128, -30.971235853451901 ], [ -56.139771898054619, -30.963587741780884 ], [ -56.160313279634124, -30.948291517539531 ], [ -56.176694708593914, -30.939661553937583 ], [ -56.183257616445815, -30.937491143601392 ], [ -56.34200761585879, -30.907467135899594 ], [ -56.397559780059794, -30.889948826277305 ], [ -56.405543789414367, -30.888243503934575 ], [ -56.415517341052464, -30.887054945529314 ], [ -56.433629929877327, -30.888605239140475 ], [ -56.443500128727976, -30.8906206189464 ], [ -56.450631475562147, -30.893669528426017 ], [ -56.454507209140388, -30.897286878686486 ], [ -56.457969529769969, -30.901317640996353 ], [ -56.463705614422565, -30.910516046278531 ], [ -56.471069505253467, -30.925450535313928 ], [ -56.476960618637634, -30.934545586909337 ], [ -56.480552131375759, -30.938524671476387 ], [ -56.489182094977707, -30.944777520066509 ], [ -56.493677945280922, -30.946947931301963 ], [ -56.516183030722289, -30.954957778178937 ], [ -56.526079067994601, -30.960073744307863 ], [ -56.530394050245206, -30.963277682519049 ], [ -56.54470842075699, -30.978677259547908 ], [ -56.548971727063531, -30.981777845870909 ], [ -56.553932665360207, -30.984361668256383 ], [ -56.56571489122922, -30.98756560556825 ], [ -56.59909786587383, -30.991337985459666 ], [ -56.610492519913862, -30.994696954201061 ], [ -56.619871792349329, -30.999709567542482 ], [ -56.678524542873333, -31.041929213162632 ], [ -56.687645432890406, -31.046115004204069 ], [ -56.698626674881154, -31.049939060039605 ], [ -56.711003180852117, -31.052471204682377 ], [ -56.759062263012993, -31.056450291048122 ], [ -56.782781745281341, -31.062186374801342 ], [ -56.797018602326602, -31.061617934020433 ], [ -56.910448370695747, -31.043892917923813 ], [ -56.934477912225873, -31.042704359518552 ], [ -57.000287848905089, -31.049784031307979 ], [ -57.00687659427939, -31.051954440744851 ], [ -57.016488409812268, -31.056501966992187 ], [ -57.043541022400234, -31.074226983088806 ], [ -57.048889533425211, -31.076294040637492 ], [ -57.054780645910057, -31.077844334248653 ], [ -57.061343552862695, -31.078722832492701 ], [ -57.071368781344177, -31.077947686136781 ], [ -57.131494310214237, -31.062496433163858 ], [ -57.155653042054212, -31.051489352751446 ], [ -57.174695807765318, -31.039913831558067 ], [ -57.220713669899965, -31.000433037954338 ], [ -57.221178757893369, -31.000122978692502 ], [ -57.236113246928767, -30.989425957541926 ], [ -57.243864712286609, -30.985446872974819 ], [ -57.291536220819921, -30.972166029438711 ], [ -57.423957078955993, -30.911497898209461 ], [ -57.456874965607142, -30.891344088458936 ], [ -57.462921108622254, -30.88622812322933 ], [ -57.479225023216259, -30.875376071548487 ], [ -57.487364061302401, -30.87248219169976 ], [ -57.498112759296419, -30.869898370213605 ], [ -57.518576625610763, -30.867417900615635 ], [ -57.553974981859938, -30.867572931145844 ], [ -57.562759975992094, -30.866125991221509 ], [ -57.572087571584177, -30.863335463261024 ], [ -57.58407650392752, -30.856720879465001 ], [ -57.590639410880101, -30.85186329485515 ], [ -57.595522833911673, -30.84726409266375 ], [ -57.612136806868136, -30.82742034307438 ], [ -57.619578212964143, -30.820133965709942 ], [ -57.636424729917337, -30.806904799017275 ], [ -57.701278653087343, -30.764943535815519 ], [ -57.714998745295873, -30.757967217712917 ], [ -57.725824957655675, -30.754918308233357 ], [ -57.753265142971941, -30.75223113395964 ], [ -57.763264533031759, -30.752592869165596 ], [ -57.77021501271264, -30.756778660206976 ], [ -57.775408495006047, -30.760602716042513 ], [ -57.799308845326948, -30.791401869200911 ], [ -57.799397102094588, -30.791460706446458 ], [ -57.801867634999979, -30.773314309999932 ], [ -57.808659168999952, -30.747331216999925 ], [ -57.817887329999849, -30.712026061999978 ], [ -57.826207234999913, -30.689701842999924 ], [ -57.848531453999954, -30.647947285999876 ], [ -57.863310913999982, -30.628620299999923 ], [ -57.885790160999903, -30.589862975999978 ], [ -57.889769246999975, -30.550795592999876 ], [ -57.87710852099994, -30.514828795999904 ], [ -57.849616658999963, -30.485269877999968 ], [ -57.652729451999875, -30.329103698999944 ], [ -57.6310770259999, -30.297064309999939 ], [ -57.623738972999888, -30.25810028099994 ], [ -57.637949991999847, -30.215105488999967 ], [ -57.642445841999887, -30.193091328999884 ], [ -57.633970906999963, -30.183582864999906 ], [ -57.61169836499991, -30.182962747999937 ], [ -57.586842000999866, -30.204046731999952 ], [ -57.567463338999914, -30.25634328199996 ], [ -57.535992390999951, -30.274430033999892 ], [ -57.510980997999951, -30.276703796999911 ], [ -57.467211059999954, -30.269882506999949 ], [ -57.443129842999923, -30.269469095999938 ], [ -57.429797322999889, -30.275463561999871 ], [ -57.414811156999917, -30.29572072299996 ], [ -57.399256550999894, -30.299131367999905 ], [ -57.389386352999907, -30.294893900999938 ], [ -57.366597045999924, -30.277220560999936 ], [ -57.353832967999949, -30.271949564999915 ], [ -57.334299275999854, -30.272673033999908 ], [ -57.321741902999946, -30.279804381999938 ], [ -57.310993204999903, -30.288279316999947 ], [ -57.296472126999873, -30.293343606999926 ], [ -57.288617309999921, -30.290759785999924 ], [ -57.276214965999969, -30.27773732499989 ], [ -57.270375528999892, -30.27515350299997 ], [ -57.262469034999924, -30.27866750099993 ], [ -57.250066691999876, -30.290449726999938 ], [ -57.245054076999907, -30.293343606999926 ], [ -57.21260127799988, -30.287349140999893 ], [ -57.183714152999926, -30.267505390999901 ], [ -57.163818725999931, -30.239290059999931 ], [ -57.158341023999924, -30.207870787999909 ], [ -57.150847941999899, -30.182342630999955 ], [ -57.129557250999909, -30.149993183999882 ], [ -57.102272094999904, -30.121157735999944 ], [ -57.077105672999949, -30.106068216999944 ], [ -57.067235473999887, -30.106791686999941 ], [ -57.048528605999905, -30.114543151999939 ], [ -57.037883260999905, -30.114646504999968 ], [ -57.018297892999982, -30.105758158999947 ], [ -57.011269897999881, -30.103484394999938 ], [ -56.974579630999898, -30.097489928999906 ], [ -56.954529174999948, -30.096869811999937 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-SA", "NAME_1": "Salto" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.017017874175565, -31.074296299234845 ], [ -56.011356770999896, -31.082132669999936 ], [ -56.009874021369001, -31.081945498186201 ], [ -56.03654822442104, -31.160423271716638 ], [ -56.043343675370295, -31.174996025546136 ], [ -56.055720181341314, -31.195873304809197 ], [ -56.066029628864271, -31.204244886892013 ], [ -56.078664517253685, -31.210859469788716 ], [ -56.148014288928266, -31.22827442752282 ], [ -56.16142432277428, -31.233803805701086 ], [ -56.175506151087973, -31.242123711839838 ], [ -56.182766690030689, -31.250030205929249 ], [ -56.186874965807021, -31.257006524031851 ], [ -56.187908494581336, -31.262742607785128 ], [ -56.188218552943852, -31.268788750800184 ], [ -56.185944789820212, -31.274783216971912 ], [ -56.182249925193901, -31.280105889575168 ], [ -56.166746996276856, -31.294523613773777 ], [ -56.158013678988084, -31.304652195042763 ], [ -56.16387895395053, -31.323359063070313 ], [ -56.172922328702498, -31.340567315229407 ], [ -56.180389574119545, -31.378549492964737 ], [ -56.183412645177441, -31.388419691815329 ], [ -56.187133348225416, -31.395240981186305 ], [ -56.191758388838593, -31.398134861035032 ], [ -56.20397986517861, -31.408935234973114 ], [ -56.213850064029202, -31.420562433009877 ], [ -56.220309618194335, -31.42660857512567 ], [ -56.226407437153512, -31.430949394898676 ], [ -56.231678432913327, -31.433171482078251 ], [ -56.250307786575092, -31.438855889887407 ], [ -56.257439134308584, -31.442731621667008 ], [ -56.262684291646735, -31.449191175832084 ], [ -56.27958248634269, -31.479680270627966 ], [ -56.284181687634771, -31.485468032124004 ], [ -56.316737839979339, -31.512236422972535 ], [ -56.321492071801686, -31.519316094761962 ], [ -56.351128505875863, -31.58944101279252 ], [ -56.353944872258069, -31.599672946849012 ], [ -56.352007005019232, -31.604272149040469 ], [ -56.349293993223228, -31.608612969712794 ], [ -56.342472703852195, -31.616467786958822 ], [ -56.336684943255534, -31.625149428303473 ], [ -56.332809210576613, -31.635019627154065 ], [ -56.330561285874637, -31.646181736298104 ], [ -56.327589890760862, -31.68871144028077 ], [ -56.325264451693101, -31.699718519793862 ], [ -56.32172461579836, -31.709950452951034 ], [ -56.319786750358219, -31.723696383581228 ], [ -56.321595424589191, -31.751291598528439 ], [ -56.374331224206628, -31.763073826196148 ], [ -56.389343227607867, -31.77273731857241 ], [ -56.391281093947327, -31.778370049538182 ], [ -56.396732957759809, -31.786844985307823 ], [ -56.405517950992646, -31.79697356477817 ], [ -56.436032884210249, -31.824827162143833 ], [ -56.442311571222035, -31.832320245083224 ], [ -56.445127935805601, -31.843534031070703 ], [ -56.447091640566725, -31.848339938837114 ], [ -56.452078417285122, -31.856763197763371 ], [ -56.456910162573934, -31.861310724010707 ], [ -56.462413703229799, -31.864876396528473 ], [ -56.475642869922524, -31.868597100475824 ], [ -56.492050137303977, -31.871077569174474 ], [ -56.502928025607901, -31.871335950693549 ], [ -56.509335903828912, -31.870715833968575 ], [ -56.580287645058775, -31.85231902430354 ], [ -56.631834886270951, -31.85076873069238 ], [ -56.638811205272873, -31.849838555604833 ], [ -56.651549444651152, -31.846324558131869 ], [ -56.702037319566614, -31.818936048759667 ], [ -56.710305548861982, -31.816868992110301 ], [ -56.721364305218515, -31.815525404973471 ], [ -56.763170538789325, -31.815215345711636 ], [ -56.770017665682701, -31.8141301409932 ], [ -56.776141323063598, -31.81221811307546 ], [ -56.795700852712173, -31.800952651143916 ], [ -56.80280636292332, -31.798007093552542 ], [ -56.812366501612757, -31.795526624853835 ], [ -56.829316372252777, -31.793356214517701 ], [ -56.841305304596119, -31.793356214517701 ], [ -56.927785814064066, -31.809427586014294 ], [ -56.939257981570563, -31.809789321220194 ], [ -56.959902716836893, -31.805551852436054 ], [ -57.003879360743895, -31.791185805080829 ], [ -57.011449958049127, -31.791392510655839 ], [ -57.017702805739873, -31.793201185786074 ], [ -57.022017787990535, -31.796353448053196 ], [ -57.028141446270695, -31.800022475157107 ], [ -57.035815396363432, -31.803588148574192 ], [ -57.049587165415346, -31.807877293302454 ], [ -57.059250657791608, -31.809169202696523 ], [ -57.068164842233671, -31.809117526752459 ], [ -57.081058112142159, -31.805861911697889 ], [ -57.165549079326524, -31.797076917565676 ], [ -57.177176275564648, -31.794441420135456 ], [ -57.214099087003262, -31.770050144298693 ], [ -57.22500281372885, -31.765192559688899 ], [ -57.304300300418504, -31.745658867562668 ], [ -57.326908738647376, -31.736305433548921 ], [ -57.340447963702559, -31.727003675479239 ], [ -57.347837693854501, -31.719717299014121 ], [ -57.369670986626716, -31.690778496930079 ], [ -57.374451056870782, -31.686644381832764 ], [ -57.38481218123718, -31.683078708415678 ], [ -57.403234829323878, -31.679358006266966 ], [ -57.431501837839562, -31.678531183067662 ], [ -57.455712245623602, -31.675637301420352 ], [ -57.479612595944559, -31.667679132286139 ], [ -57.490283779572735, -31.662459811571068 ], [ -57.523925136635739, -31.642047621200732 ], [ -57.595367805180047, -31.610576673574599 ], [ -57.742516445877243, -31.583084812314212 ], [ -57.749699469554855, -31.580759373246451 ], [ -57.754815435683781, -31.578227227704417 ], [ -57.759388801252157, -31.575126642280736 ], [ -57.763083665878469, -31.57130258554588 ], [ -57.765900031361355, -31.566961764873554 ], [ -57.76812211764161, -31.562362562682097 ], [ -57.780886197240193, -31.527170912007989 ], [ -57.783728400245479, -31.522830092234983 ], [ -57.787242397718444, -31.519109389186951 ], [ -57.795924038163832, -31.51254648223437 ], [ -57.862069871627284, -31.480610446614833 ], [ -57.888450689747515, -31.471928806169444 ], [ -57.898734299748128, -31.470430190301045 ], [ -57.906614956315195, -31.470585219032614 ], [ -57.943615282119595, -31.478595065909587 ], [ -57.948266161154379, -31.481075534608237 ], [ -57.951495937787286, -31.484847913600333 ], [ -57.952555304983321, -31.490118910259525 ], [ -57.953640509701756, -31.499679049848282 ], [ -57.953821376855046, -31.500247490629192 ], [ -57.955035772782708, -31.501022637884432 ], [ -57.960177578232617, -31.501694430553528 ], [ -57.971313849854255, -31.502004489815363 ], [ -57.988625453901591, -31.498128757136442 ], [ -58.00441260365875, -31.496371758849591 ], [ -58.019424607959309, -31.499989109110118 ], [ -58.035754360974977, -31.507120456843609 ], [ -58.038978011426082, -31.508637469243808 ], [ -58.050793008999932, -31.500815124999903 ], [ -58.07523596199988, -31.475183613999931 ], [ -58.06257523599993, -31.444281107999942 ], [ -58.043558308999962, -31.430638529999939 ], [ -58.005937865999925, -31.4110014849999 ], [ -57.990228230999975, -31.399322611999921 ], [ -57.980513061999915, -31.380512389999922 ], [ -57.975552123999876, -31.335140481999886 ], [ -57.966353718999898, -31.314573262 ], [ -57.959480753999912, -31.30795867899991 ], [ -57.94299597199992, -31.29679656999987 ], [ -57.93560624199992, -31.290285338999908 ], [ -57.914832315999973, -31.252458190999917 ], [ -57.905117146999942, -31.240986022999905 ], [ -57.905013793999927, -31.215044453999951 ], [ -57.911731730999946, -31.17060272199997 ], [ -57.89901932799998, -31.126471048999889 ], [ -57.873749552999925, -31.093088073999922 ], [ -57.855249389999898, -31.058981627999955 ], [ -57.863310913999982, -31.012266133999958 ], [ -57.905478881999926, -30.958832701999938 ], [ -57.911731730999946, -30.94736053499993 ], [ -57.903980265999934, -30.929687194999929 ], [ -57.885325072999962, -30.918835143999971 ], [ -57.842795369999919, -30.909223326999964 ], [ -57.819644327999924, -30.911600442999912 ], [ -57.807241984999848, -30.907569681999917 ], [ -57.801867634999979, -30.892480162999917 ], [ -57.796131550999917, -30.868398945999971 ], [ -57.794994669999909, -30.857960306999928 ], [ -57.796028198999892, -30.816205748999977 ], [ -57.799397102094588, -30.791460706446458 ], [ -57.799308845326948, -30.791401869200911 ], [ -57.775408495006047, -30.760602716042513 ], [ -57.77021501271264, -30.756778660206976 ], [ -57.763264533031759, -30.752592869165596 ], [ -57.753265142971941, -30.75223113395964 ], [ -57.725824957655675, -30.754918308233357 ], [ -57.714998745295873, -30.757967217712917 ], [ -57.701278653087343, -30.764943535815519 ], [ -57.636424729917337, -30.806904799017275 ], [ -57.619578212964143, -30.820133965709942 ], [ -57.612136806868136, -30.82742034307438 ], [ -57.595522833911673, -30.84726409266375 ], [ -57.590639410880101, -30.85186329485515 ], [ -57.58407650392752, -30.856720879465001 ], [ -57.572087571584177, -30.863335463261024 ], [ -57.562759975992094, -30.866125991221509 ], [ -57.553974981859938, -30.867572931145844 ], [ -57.518576625610763, -30.867417900615635 ], [ -57.498112759296419, -30.869898370213605 ], [ -57.487364061302401, -30.87248219169976 ], [ -57.479225023216259, -30.875376071548487 ], [ -57.462921108622254, -30.88622812322933 ], [ -57.456874965607142, -30.891344088458936 ], [ -57.423957078955993, -30.911497898209461 ], [ -57.291536220819921, -30.972166029438711 ], [ -57.243864712286609, -30.985446872974819 ], [ -57.236113246928767, -30.989425957541926 ], [ -57.221178757893369, -31.000122978692502 ], [ -57.220713669899965, -31.000433037954338 ], [ -57.174695807765318, -31.039913831558067 ], [ -57.155653042054212, -31.051489352751446 ], [ -57.131494310214237, -31.062496433163858 ], [ -57.071368781344177, -31.077947686136781 ], [ -57.061343552862695, -31.078722832492701 ], [ -57.054780645910057, -31.077844334248653 ], [ -57.048889533425211, -31.076294040637492 ], [ -57.043541022400234, -31.074226983088806 ], [ -57.016488409812268, -31.056501966992187 ], [ -57.00687659427939, -31.051954440744851 ], [ -57.000287848905089, -31.049784031307979 ], [ -56.934477912225873, -31.042704359518552 ], [ -56.910448370695747, -31.043892917923813 ], [ -56.797018602326602, -31.061617934020433 ], [ -56.782781745281341, -31.062186374801342 ], [ -56.759062263012993, -31.056450291048122 ], [ -56.711003180852117, -31.052471204682377 ], [ -56.698626674881154, -31.049939060039605 ], [ -56.687645432890406, -31.046115004204069 ], [ -56.678524542873333, -31.041929213162632 ], [ -56.619871792349329, -30.999709567542482 ], [ -56.610492519913862, -30.994696954201061 ], [ -56.59909786587383, -30.991337985459666 ], [ -56.56571489122922, -30.98756560556825 ], [ -56.553932665360207, -30.984361668256383 ], [ -56.548971727063531, -30.981777845870909 ], [ -56.54470842075699, -30.978677259547908 ], [ -56.530394050245206, -30.963277682519049 ], [ -56.526079067994601, -30.960073744307863 ], [ -56.516183030722289, -30.954957778178937 ], [ -56.493677945280922, -30.946947931301963 ], [ -56.489182094977707, -30.944777520066509 ], [ -56.480552131375759, -30.938524671476387 ], [ -56.476960618637634, -30.934545586909337 ], [ -56.471069505253467, -30.925450535313928 ], [ -56.463705614422565, -30.910516046278531 ], [ -56.457969529769969, -30.901317640996353 ], [ -56.454507209140388, -30.897286878686486 ], [ -56.450631475562147, -30.893669528426017 ], [ -56.443500128727976, -30.8906206189464 ], [ -56.433629929877327, -30.888605239140475 ], [ -56.415517341052464, -30.887054945529314 ], [ -56.405543789414367, -30.888243503934575 ], [ -56.397559780059794, -30.889948826277305 ], [ -56.34200761585879, -30.907467135899594 ], [ -56.183257616445815, -30.937491143601392 ], [ -56.176694708593914, -30.939661553937583 ], [ -56.160313279634124, -30.948291517539531 ], [ -56.139771898054619, -30.963587741780884 ], [ -56.132640550321128, -30.971235853451901 ], [ -56.117628546919889, -30.992113131815586 ], [ -56.106156379413392, -31.003843682639854 ], [ -56.080628221115489, -31.022705580298293 ], [ -56.073212653441203, -31.029836928031784 ], [ -56.063161587437321, -31.041774183531743 ], [ -56.055255093347853, -31.048698825690281 ], [ -56.017970546703339, -31.073658543207216 ], [ -56.017017874175565, -31.074296299234845 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-RV", "NAME_1": "Rivera" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.612905639999923, -30.843387552999971 ], [ -55.591873331999921, -30.848348490999925 ], [ -55.563864704999901, -30.876460469999955 ], [ -55.527484496999932, -30.894547220999883 ], [ -55.511309773999926, -30.906122741999923 ], [ -55.4890889079999, -30.929687194999929 ], [ -55.442580118999871, -30.965550638999957 ], [ -55.36857946799995, -31.037380878999983 ], [ -55.353851684999938, -31.056294453999925 ], [ -55.348425658999872, -31.07272755999989 ], [ -55.344963338999946, -31.108487649999901 ], [ -55.338038696999945, -31.125644225999878 ], [ -55.326928262999928, -31.134945983999984 ], [ -55.293700316999917, -31.153652851999965 ], [ -55.282228149999895, -31.169052429999866 ], [ -55.268740600999934, -31.210600280999941 ], [ -55.259981445999955, -31.228687031999954 ], [ -55.244349324999888, -31.24460337299989 ], [ -55.227554484999928, -31.2534917199999 ], [ -55.188280395999953, -31.266514179999945 ], [ -55.169625203999885, -31.276436055999937 ], [ -55.122237914999914, -31.313539732999914 ], [ -55.102445841999952, -31.324288430999943 ], [ -55.087252970999913, -31.326768899999919 ], [ -55.074256347999977, -31.320567727999929 ], [ -55.061104695999916, -31.30485809299995 ], [ -55.042346150999919, -31.272611998999906 ], [ -55.029375366999886, -31.26878794299995 ], [ -55.011495320999927, -31.287804869999931 ], [ -54.995346435999949, -31.311782734999937 ], [ -54.969637410999951, -31.340824889999936 ], [ -54.94080196099992, -31.365629577999883 ], [ -54.900287638999913, -31.38206268299993 ], [ -54.887807779999918, -31.393224792999959 ], [ -54.876154744999951, -31.406350605999933 ], [ -54.863364827999874, -31.417616068999905 ], [ -54.849903116999911, -31.425057474999917 ], [ -54.819775756999945, -31.435289407999903 ], [ -54.654126952999917, -31.45575327499995 ], [ -54.619684610999883, -31.455649921999935 ], [ -54.604543416999945, -31.459784037999952 ], [ -54.591520955999925, -31.471049498999918 ], [ -54.57384761599991, -31.50246877 ], [ -54.562375447999898, -31.51590464199991 ], [ -54.509665486999978, -31.552284850999897 ], [ -54.495041056999895, -31.565617369999913 ], [ -54.483155477999873, -31.583910827999972 ], [ -54.478969686999932, -31.601480813999956 ], [ -54.477367716999908, -31.642098489999896 ], [ -54.467220705999921, -31.664237422999904 ], [ -54.467574224870589, -31.664630221907203 ], [ -54.472457647902104, -31.670056248197284 ], [ -54.486151902588233, -31.693982436040585 ], [ -54.489200812067793, -31.698013197451075 ], [ -54.496383835745405, -31.701888930129996 ], [ -54.506047329020987, -31.7112423641438 ], [ -54.51501319030649, -31.722507826075287 ], [ -54.520258347644642, -31.732119642507485 ], [ -54.521369390784741, -31.756252536825116 ], [ -54.503928596427556, -31.800435886307127 ], [ -54.499148526183546, -31.824620456568823 ], [ -54.504109462681527, -31.842448825452948 ], [ -54.528190681055094, -31.892885023525025 ], [ -54.542091641316176, -31.91453744914395 ], [ -54.554390632022034, -31.943786309590507 ], [ -54.588522914600844, -31.985385837586364 ], [ -54.57281328010879, -31.996341241155335 ], [ -54.556199307152269, -31.998511650592206 ], [ -54.543590257184633, -32.002749118477027 ], [ -54.540102098133332, -32.019492282642716 ], [ -54.546277432357613, -32.032153008554474 ], [ -54.571728075390354, -32.048999525507725 ], [ -54.581701626129131, -32.061091810638572 ], [ -54.571598884181128, -32.076853122873331 ], [ -54.574983690444924, -32.094784844544961 ], [ -54.589401414643589, -32.109615980792853 ], [ -54.612423264921745, -32.115713799752029 ], [ -54.633403896972254, -32.11803923881979 ], [ -54.65451371933267, -32.122845146586258 ], [ -54.669370694002339, -32.109047540011943 ], [ -54.676011115320705, -32.099745781942261 ], [ -54.688310106026563, -32.076594740454937 ], [ -54.700970831938321, -32.060161634651706 ], [ -54.737790289690111, -32.029310804649924 ], [ -54.754120042705779, -32.009105319854655 ], [ -54.795745409123299, -31.968539320633113 ], [ -54.813134528435739, -31.942391045610293 ], [ -54.828094854993537, -31.927973320512308 ], [ -54.85532833473485, -31.909318128428879 ], [ -54.859255744257212, -31.905752455011793 ], [ -54.879073656324181, -31.881722913481667 ], [ -54.882871873737997, -31.878157240963901 ], [ -54.887212694410323, -31.874953301853395 ], [ -54.909743618273353, -31.865134779846187 ], [ -54.953177659821165, -31.851388849215994 ], [ -54.965347460217117, -31.848960055562088 ], [ -55.042241990775267, -31.843172295864747 ], [ -55.062369961204752, -31.837591240843096 ], [ -55.100403814884146, -31.822915134226037 ], [ -55.115880907178109, -31.820124607164871 ], [ -55.146990118699023, -31.818936048759667 ], [ -55.188227912388243, -31.822966811069477 ], [ -55.250032925179369, -31.818781020028041 ], [ -55.347623866947913, -31.797903740765037 ], [ -55.376562669031955, -31.795216566491376 ], [ -55.391109585339109, -31.795888360059791 ], [ -55.416069301956725, -31.801211032663048 ], [ -55.503660854564771, -31.806378675635358 ], [ -55.531514451930377, -31.803536471730808 ], [ -55.559006314090141, -31.798058769496606 ], [ -55.566266852133538, -31.797903740765037 ], [ -55.572803920664398, -31.798885592695967 ], [ -55.589185349624188, -31.804828382923517 ], [ -55.5955932278452, -31.805861911697889 ], [ -55.60251787000368, -31.806068617272842 ], [ -55.609623379315508, -31.805241794972858 ], [ -55.617478196561535, -31.801831150287342 ], [ -55.625152146654216, -31.795681654484781 ], [ -55.635926683069954, -31.782090752586157 ], [ -55.645125088352131, -31.767414645969154 ], [ -55.649285040971847, -31.757596123961946 ], [ -55.649827643331093, -31.751860040208669 ], [ -55.647579718629117, -31.733824964850271 ], [ -55.648535733037647, -31.728553969090399 ], [ -55.650783656840304, -31.724006442843063 ], [ -55.656726447067854, -31.715531507972742 ], [ -55.65918107824416, -31.710932305781284 ], [ -55.66052466538099, -31.705609633178028 ], [ -55.660963914952731, -31.699408460532027 ], [ -55.65972367970403, -31.686437677157073 ], [ -55.65649390307118, -31.674552096701916 ], [ -55.648122320988307, -31.65320973124409 ], [ -55.646959601004767, -31.647318616960604 ], [ -55.646804572273197, -31.641272474844811 ], [ -55.648225673775812, -31.636001479084996 ], [ -55.652437303238969, -31.626286309865293 ], [ -55.661429002046816, -31.593781833464845 ], [ -55.665563117144131, -31.583808281826748 ], [ -55.671195848109903, -31.5751783182248 ], [ -55.67770707911842, -31.5705791160334 ], [ -55.686827969135436, -31.565566501792603 ], [ -55.705922410790606, -31.558435154059111 ], [ -55.738891974285195, -31.549340101564439 ], [ -55.745945807652902, -31.546291192084823 ], [ -55.753258023439002, -31.541795342680928 ], [ -55.786718513348717, -31.515130303720525 ], [ -55.791033494700002, -31.510686131160014 ], [ -55.793824021761168, -31.506655368850204 ], [ -55.797286343290125, -31.500299167472576 ], [ -55.797622240074304, -31.499834079479172 ], [ -55.799611782357886, -31.496268406062086 ], [ -55.814727139445949, -31.457407729183331 ], [ -55.815502284902493, -31.451723320474855 ], [ -55.813951992190653, -31.432654718140725 ], [ -55.814778815390014, -31.420407402479668 ], [ -55.816406623366959, -31.415136406719796 ], [ -55.820514899143291, -31.405317884712588 ], [ -55.830824347565567, -31.38728281025351 ], [ -55.834803433031993, -31.382683608062052 ], [ -55.83997107600436, -31.378032729027211 ], [ -55.856869268901619, -31.366922295827294 ], [ -55.929138759745967, -31.340877373591923 ], [ -55.976913621966048, -31.317674656160477 ], [ -56.05871741397749, -31.261864108641703 ], [ -56.064143439368252, -31.259383639943053 ], [ -56.078793707563534, -31.256128024888426 ], [ -56.097681443643694, -31.256076348944362 ], [ -56.104606085802232, -31.257316583293687 ], [ -56.121400925911985, -31.263052667046964 ], [ -56.134113328667183, -31.273077894629125 ], [ -56.158013678988084, -31.304652195042763 ], [ -56.166746996276856, -31.294523613773777 ], [ -56.182249925193901, -31.280105889575168 ], [ -56.185944789820212, -31.274783216971912 ], [ -56.188218552943852, -31.268788750800184 ], [ -56.187908494581336, -31.262742607785128 ], [ -56.186874965807021, -31.257006524031851 ], [ -56.182766690030689, -31.250030205929249 ], [ -56.175506151087973, -31.242123711839838 ], [ -56.16142432277428, -31.233803805701086 ], [ -56.148014288928266, -31.22827442752282 ], [ -56.078664517253685, -31.210859469788716 ], [ -56.066029628864271, -31.204244886892013 ], [ -56.055720181341314, -31.195873304809197 ], [ -56.043343675370295, -31.174996025546136 ], [ -56.03654822442104, -31.160423271716638 ], [ -56.009874021369001, -31.081945498186201 ], [ -55.985156819999872, -31.078825378999937 ], [ -55.919346883999907, -31.082442728999922 ], [ -55.88818599399994, -31.076965026999943 ], [ -55.864259806999939, -31.076758320999971 ], [ -55.854596313999906, -31.074587910999895 ], [ -55.846586465999934, -31.069316914999959 ], [ -55.842142293999927, -31.063942564999905 ], [ -55.838395751999911, -31.058154805999934 ], [ -55.832478800999894, -31.051746927999986 ], [ -55.778141031999922, -31.020431009999882 ], [ -55.763594116999883, -31.008442076999927 ], [ -55.755506754999971, -30.992939147999905 ], [ -55.744887247999912, -30.958625996999984 ], [ -55.731890624999949, -30.945396829999893 ], [ -55.712744506999883, -30.94343312599996 ], [ -55.688301554999924, -30.947773945999941 ], [ -55.66582230599991, -30.949324238999864 ], [ -55.652748168999949, -30.938988952999949 ], [ -55.651068684999899, -30.919972024999893 ], [ -55.654582682999944, -30.878734232999889 ], [ -55.649673420999932, -30.860957539999944 ], [ -55.634041300999883, -30.847625019999924 ], [ -55.612905639999923, -30.843387552999971 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-CL", "NAME_1": "Cerro Largo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.467220705999921, -31.664237422999904 ], [ -54.463725138999905, -31.671864115999966 ], [ -54.436491657999909, -31.694291686999875 ], [ -54.403677124999973, -31.714652200999907 ], [ -54.373498087999877, -31.73894012399991 ], [ -54.3429573169999, -31.76932586599996 ], [ -54.274227661999902, -31.823379414999948 ], [ -54.218778848999932, -31.856659036999886 ], [ -54.169582885999972, -31.895933124999956 ], [ -54.146276814999936, -31.909885762999949 ], [ -54.135063028999895, -31.908955586999895 ], [ -54.125502889999893, -31.898516947999951 ], [ -54.107312784999948, -31.883944192999905 ], [ -54.088450886999937, -31.87815643299993 ], [ -54.068813842999901, -31.87991343199991 ], [ -54.049745239999908, -31.887148131999965 ], [ -54.032640339999972, -31.898103535999951 ], [ -54.026645873999939, -31.904821471999881 ], [ -54.017705850999903, -31.919600931999895 ], [ -54.008714152999886, -31.926525573999882 ], [ -53.998895630999897, -31.929729511999938 ], [ -53.965977742999939, -31.932520039999901 ], [ -53.948769490999979, -31.936964212999911 ], [ -53.934351766999953, -31.942545267999918 ], [ -53.905826375999908, -31.959288431999965 ], [ -53.894147501999925, -31.970140482999923 ], [ -53.889755004999955, -31.980372415999909 ], [ -53.887274535999978, -31.990500996999955 ], [ -53.881435099999891, -32.00124969499997 ], [ -53.871099812999972, -32.011481627999956 ], [ -53.858077351999924, -32.021196796999902 ], [ -53.830430460999935, -32.036441344999929 ], [ -53.771829386999912, -32.047086689999929 ], [ -53.757308309999956, -32.055044860999899 ], [ -53.751365518999933, -32.06879079199993 ], [ -53.750021931999896, -32.104034118999905 ], [ -53.72144486499991, -32.162428486999957 ], [ -53.670595255999984, -32.226403909999945 ], [ -53.658554646999931, -32.254309183999936 ], [ -53.651836710999902, -32.288312275999971 ], [ -53.648684448999944, -32.338645120999942 ], [ -53.643878539999946, -32.355594990999947 ], [ -53.634783488999886, -32.368720804999924 ], [ -53.609307006999956, -32.38784108499992 ], [ -53.598920043999925, -32.3999333699999 ], [ -53.581970174999924, -32.425771585999925 ], [ -53.561299601999906, -32.449542744999889 ], [ -53.537631795999886, -32.470213317999892 ], [ -53.47463822399996, -32.508247171999926 ], [ -53.415623738999926, -32.564161071999919 ], [ -53.359089721999879, -32.580284117999909 ], [ -53.316043253999879, -32.602711689999893 ], [ -53.299093383999946, -32.607155863999907 ], [ -53.266898966999918, -32.60736256899996 ], [ -53.233722697999895, -32.624622496999862 ], [ -53.201476603999936, -32.637231546999971 ], [ -53.18612870399997, -32.646740010999864 ], [ -53.119776164999934, -32.707408141999935 ], [ -53.110836141999897, -32.722394306999917 ], [ -53.114040079999967, -32.740584410999958 ], [ -53.126855834999873, -32.754847106999932 ], [ -53.163081013999914, -32.778721618999924 ], [ -53.182836311999949, -32.799904104999925 ], [ -53.183389044868534, -32.799806410137705 ], [ -53.303846808183664, -32.77851571972468 ], [ -53.32880652480128, -32.775983575081909 ], [ -53.336816371678196, -32.77660369180694 ], [ -53.346919115424839, -32.77830901504899 ], [ -53.363352220328693, -32.786783949919368 ], [ -53.371336228783946, -32.788954360255502 ], [ -53.379992030807557, -32.789471124193028 ], [ -53.393066168768655, -32.788075860212757 ], [ -53.401101854067292, -32.785853773932502 ], [ -53.407432217023199, -32.782959894083831 ], [ -53.420609706872483, -32.773348076752313 ], [ -53.428283656965164, -32.771332696047068 ], [ -53.439239061433511, -32.770609225635269 ], [ -53.458178474357112, -32.771694431253025 ], [ -53.468229540360994, -32.770299168172073 ], [ -53.474999151989266, -32.767611992999093 ], [ -53.481820441360298, -32.759705498909625 ], [ -53.485799526826668, -32.75613982459322 ], [ -53.490372890596404, -32.753245944744549 ], [ -53.494946255265461, -32.751282240882688 ], [ -53.499958868606882, -32.750197035264989 ], [ -53.6074975253905, -32.76115243883396 ], [ -53.631449550756145, -32.760325615634656 ], [ -53.667132126946115, -32.754744560613005 ], [ -53.834047003766216, -32.765958346600428 ], [ -53.844020555404313, -32.765131524300386 ], [ -53.852082079124671, -32.763581230689226 ], [ -53.857740647612786, -32.761307467565587 ], [ -53.868024257613399, -32.755829767130024 ], [ -53.93145707928079, -32.712214857529659 ], [ -53.941792365225467, -32.707098890501413 ], [ -53.947941861028085, -32.705083509796168 ], [ -53.957036912623437, -32.705393569057946 ], [ -53.968405728241748, -32.707719008125707 ], [ -53.996155971920587, -32.721361585968396 ], [ -54.001271938948832, -32.724772230653912 ], [ -54.007783169057973, -32.731386813550614 ], [ -54.029435593777634, -32.747561536935393 ], [ -54.033052944937424, -32.751385592770873 ], [ -54.03586931042031, -32.755674736599815 ], [ -54.036721971142072, -32.760842380471502 ], [ -54.03548173679269, -32.765751641924737 ], [ -54.033130459303266, -32.770299168172073 ], [ -54.027265184340763, -32.778929131774021 ], [ -54.024707201276328, -32.783683363596367 ], [ -54.023311937296057, -32.788851006568677 ], [ -54.025766567573044, -32.794122003227869 ], [ -54.031450975382199, -32.798101087794976 ], [ -54.045351934743962, -32.79892791099428 ], [ -54.053361781620936, -32.797170911808109 ], [ -54.060028042260342, -32.79453541347857 ], [ -54.064498054141893, -32.791331476166704 ], [ -54.118654955261945, -32.760222262847151 ], [ -54.124158495018548, -32.758000176566895 ], [ -54.13015296119022, -32.756449883855055 ], [ -54.136896735296091, -32.75619150143666 ], [ -54.15805823360057, -32.757535088573491 ], [ -54.165602993383459, -32.757276707054359 ], [ -54.17273434111695, -32.75634653106755 ], [ -54.179323085591932, -32.754796237456389 ], [ -54.184516567885282, -32.752212415970234 ], [ -54.194076708373359, -32.746424656272893 ], [ -54.199916144014821, -32.744254245936702 ], [ -54.227821418223868, -32.741463717976217 ], [ -54.248388638225094, -32.735572604592051 ], [ -54.286319139116983, -32.731283460763109 ], [ -54.29277869328206, -32.729681492107147 ], [ -54.298308070561006, -32.727356052140067 ], [ -54.303010627338551, -32.724410495448012 ], [ -54.311382209421424, -32.717640882920421 ], [ -54.31611060192273, -32.71474700307175 ], [ -54.326109991982548, -32.71552214852835 ], [ -54.340941128230497, -32.720638115556596 ], [ -54.390550503103213, -32.744254245936702 ], [ -54.41132442867945, -32.749731948170847 ], [ -54.467341681773178, -32.752935885482714 ], [ -54.481449347609271, -32.751127211251799 ], [ -54.488684048130324, -32.751695652032708 ], [ -54.495066087030295, -32.75464120872482 ], [ -54.500957201313781, -32.762857761176747 ], [ -54.505969814655202, -32.775725192663515 ], [ -54.508579473663758, -32.78063445411675 ], [ -54.51385047122227, -32.784820245158187 ], [ -54.521291877318276, -32.788075860212757 ], [ -54.535761278360326, -32.790039564973938 ], [ -54.544597948436547, -32.789264417718698 ], [ -54.551987677689169, -32.787765801850298 ], [ -54.558266363801636, -32.787765801850298 ], [ -54.563847418823286, -32.790194593705507 ], [ -54.568885870586428, -32.795982354302225 ], [ -54.575810512744965, -32.806059258727828 ], [ -54.582786830847567, -32.814069105604744 ], [ -54.588677945131053, -32.818048191071171 ], [ -54.59671363042969, -32.821045423707346 ], [ -54.611984016249323, -32.823525893305316 ], [ -54.621621670203922, -32.823215834043481 ], [ -54.629864061077569, -32.822078952481661 ], [ -54.648028326745873, -32.8159294566791 ], [ -54.661696743010282, -32.813242283304703 ], [ -54.675106777755559, -32.812932224042925 ], [ -54.684175990929248, -32.814224135235634 ], [ -54.730581427590778, -32.830347181777029 ], [ -54.746446091713779, -32.833241061625699 ], [ -54.778795539382656, -32.832931004162504 ], [ -54.807010871054842, -32.835463148805275 ], [ -54.819645759444256, -32.838150323078935 ], [ -54.87845353869983, -32.863471774902507 ], [ -54.895532598750435, -32.875977472082695 ], [ -54.911035528566799, -32.890498549068809 ], [ -54.919768845855572, -32.89685474954706 ], [ -54.924858975361417, -32.89933521914503 ], [ -54.959120449149395, -32.911065769069978 ], [ -54.970876838395384, -32.91824879274759 ], [ -54.978783331585475, -32.925121758962007 ], [ -54.984906988966372, -32.929152519473178 ], [ -55.007153692888608, -32.94000457115402 ], [ -55.012373012704359, -32.943570244571106 ], [ -55.018651698816825, -32.949719741273043 ], [ -55.023845181110232, -32.956851088107214 ], [ -55.027359177683877, -32.962897231122327 ], [ -55.028005133729948, -32.970235283531508 ], [ -55.025860561815477, -32.978710219301206 ], [ -55.011365322351764, -32.99994923287079 ], [ -55.009815029639924, -33.006822198185887 ], [ -55.009970059270813, -33.024960625432527 ], [ -55.061413946796222, -33.01865610089834 ], [ -55.133218349647109, -33.02113656959699 ], [ -55.149005500303588, -33.020051364878611 ], [ -55.159469976558171, -33.01767424896741 ], [ -55.163423223602877, -33.014160251494388 ], [ -55.174611172067955, -33.000362644020811 ], [ -55.174766200799525, -33.000104261602416 ], [ -55.174947068852134, -32.999897556027406 ], [ -55.177634243125794, -32.997417088228019 ], [ -55.272822232360113, -32.945947360482307 ], [ -55.286025559731797, -32.93618051441922 ], [ -55.304835781446172, -32.917783704754186 ], [ -55.315817023436864, -32.90166065911211 ], [ -55.320777960834221, -32.890808607431268 ], [ -55.323155076745365, -32.880008232593866 ], [ -55.322793342438786, -32.87391041363469 ], [ -55.317134772152031, -32.850242608209783 ], [ -55.315610317861854, -32.831277357763838 ], [ -55.316178757743444, -32.825541274010561 ], [ -55.317754889776324, -32.820373631038251 ], [ -55.321630621555926, -32.813707371298165 ], [ -55.338399624143335, -32.792365004041699 ], [ -55.342998827234055, -32.784045098802267 ], [ -55.344807502364347, -32.77660369180694 ], [ -55.343153855965681, -32.771487725678014 ], [ -55.340337489583476, -32.767043552218183 ], [ -55.335970832288069, -32.763787937163556 ], [ -55.330673998106533, -32.761617526827422 ], [ -55.317522345779651, -32.759447116491231 ], [ -55.312122157911233, -32.757431735785985 ], [ -55.308530646072427, -32.75365935589457 ], [ -55.306773647785633, -32.748336684190633 ], [ -55.306696133419791, -32.742600599538036 ], [ -55.308065558079022, -32.736554456522924 ], [ -55.333800421951878, -32.685756524144267 ], [ -55.335505744294665, -32.679917087603485 ], [ -55.335299037820334, -32.667876478416758 ], [ -55.331733364403249, -32.656869398903609 ], [ -55.318219976870409, -32.625398451277476 ], [ -55.303931443881027, -32.572843519712649 ], [ -55.302975430371816, -32.560441176219285 ], [ -55.303466355887622, -32.548348891088438 ], [ -55.308065558079022, -32.526541435838567 ], [ -55.328426073404557, -32.49388193070655 ], [ -55.23962012396953, -32.458948662450837 ], [ -55.205074429341437, -32.457088310477161 ], [ -55.140013800596421, -32.47899911851448 ], [ -55.105855678696628, -32.485045260630272 ], [ -55.070793220131009, -32.480601088069761 ], [ -55.03996822765157, -32.468663831670483 ], [ -55.013716599841189, -32.451455579511389 ], [ -54.99258093905911, -32.431043390040429 ], [ -54.972220424632894, -32.401794528694552 ], [ -54.95692420129086, -32.388668714789333 ], [ -54.921370816310116, -32.37957366319398 ], [ -54.913102586115428, -32.370685317173638 ], [ -54.906229620800332, -32.359471531186216 ], [ -54.897005377995811, -32.349084567498778 ], [ -54.886799282360982, -32.343038424483723 ], [ -54.865844488732137, -32.33466684330017 ], [ -54.856051805146706, -32.328620701184434 ], [ -54.839618700242795, -32.310482273038474 ], [ -54.818405524195555, -32.269347833036079 ], [ -54.804220343993677, -32.249194024184874 ], [ -54.800292935370692, -32.238238620615846 ], [ -54.804375372725247, -32.227076510572488 ], [ -54.810964118099548, -32.21596607827189 ], [ -54.814452277150849, -32.205114027490367 ], [ -54.81295366128245, -32.195657240689115 ], [ -54.809181281391034, -32.185683689051018 ], [ -54.800809699308161, -32.170955905590574 ], [ -54.777710333764901, -32.148838392877508 ], [ -54.769726325309648, -32.135350843766446 ], [ -54.766651577408368, -32.11230315506657 ], [ -54.75569617383934, -32.101916192278452 ], [ -54.731124029950024, -32.109047540011943 ], [ -54.690945604356159, -32.129356377594775 ], [ -54.67611446810821, -32.127909437670439 ], [ -54.65451371933267, -32.122845146586258 ], [ -54.633403896972254, -32.11803923881979 ], [ -54.612423264921745, -32.115713799752029 ], [ -54.589401414643589, -32.109615980792853 ], [ -54.574983690444924, -32.094784844544961 ], [ -54.571598884181128, -32.076853122873331 ], [ -54.581701626129131, -32.061091810638572 ], [ -54.571728075390354, -32.048999525507725 ], [ -54.546277432357613, -32.032153008554474 ], [ -54.540102098133332, -32.019492282642716 ], [ -54.543590257184633, -32.002749118477027 ], [ -54.556199307152269, -31.998511650592206 ], [ -54.57281328010879, -31.996341241155335 ], [ -54.588522914600844, -31.985385837586364 ], [ -54.554390632022034, -31.943786309590507 ], [ -54.542091641316176, -31.91453744914395 ], [ -54.528190681055094, -31.892885023525025 ], [ -54.504109462681527, -31.842448825452948 ], [ -54.499148526183546, -31.824620456568823 ], [ -54.503928596427556, -31.800435886307127 ], [ -54.521369390784741, -31.756252536825116 ], [ -54.520258347644642, -31.732119642507485 ], [ -54.51501319030649, -31.722507826075287 ], [ -54.506047329020987, -31.7112423641438 ], [ -54.496383835745405, -31.701888930129996 ], [ -54.489200812067793, -31.698013197451075 ], [ -54.486151902588233, -31.693982436040585 ], [ -54.472457647902104, -31.670056248197284 ], [ -54.467574224870589, -31.664630221907203 ], [ -54.467220705999921, -31.664237422999904 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-RO", "NAME_1": "Rocha" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.520661760331961, -33.124978992086824 ], [ -53.536856648999873, -33.170842386999951 ], [ -53.536133178999961, -33.244636331999914 ], [ -53.514015665999949, -33.394911396999944 ], [ -53.536804971999942, -33.559862568999861 ], [ -53.539647175999932, -33.649262796999949 ], [ -53.511535196999972, -33.6902938839999 ], [ -53.491071329999926, -33.6902938839999 ], [ -53.473191283999967, -33.687400003999912 ], [ -53.456706502999879, -33.68750335699994 ], [ -53.440428426999858, -33.697115173999947 ], [ -53.430816609999852, -33.713444925999895 ], [ -53.423633585999909, -33.731014912999868 ], [ -53.411282918999945, -33.742280374999922 ], [ -53.379094569439076, -33.740675972314278 ], [ -53.396351691999939, -33.750583591999941 ], [ -53.414784308999913, -33.764418226999908 ], [ -53.450917120999918, -33.801527601999908 ], [ -53.473052537999934, -33.834567966999941 ], [ -53.485585089999915, -33.869317315999922 ], [ -53.505523240999935, -33.952325127999927 ], [ -53.524647589999915, -34.002373955999929 ], [ -53.52993730399993, -34.04810963299991 ], [ -53.539458787999934, -34.062432549999926 ], [ -53.57445227799991, -34.082696221999925 ], [ -53.591216600999928, -34.095472914999903 ], [ -53.639963344999956, -34.147637627999927 ], [ -53.69359290299991, -34.181735934999949 ], [ -53.711008266999954, -34.198825778999947 ], [ -53.746652798999946, -34.257419528999947 ], [ -53.755970831999946, -34.267673434999949 ], [ -53.758290167999917, -34.278497002999927 ], [ -53.779896613999938, -34.336032809999949 ], [ -53.763661261999914, -34.372491143999923 ], [ -53.764881964999915, -34.390394789999903 ], [ -53.805775519999941, -34.400974216999941 ], [ -53.898304816999939, -34.443942966999941 ], [ -53.972238735999952, -34.487237237999921 ], [ -54.124623175999943, -34.610446872999944 ], [ -54.136789516999954, -34.623955987999921 ], [ -54.14093990799995, -34.641045830999929 ], [ -54.140492316999939, -34.656426690999922 ], [ -54.145904100999928, -34.667575778999947 ], [ -54.236805792999917, -34.684502862999921 ], [ -54.259673631999931, -34.685967705999929 ], [ -54.255604620999918, -34.677504164999903 ], [ -54.249501105999911, -34.670993747999944 ], [ -54.232329881999931, -34.658135674999926 ], [ -54.239328579999949, -34.653090101999908 ], [ -54.245676235999952, -34.646905205999929 ], [ -54.250477667999917, -34.639336846999925 ], [ -54.252837693999936, -34.630791924999926 ], [ -54.251210089999915, -34.618340752999927 ], [ -54.241078253999945, -34.594008070999905 ], [ -54.23859615799995, -34.589776299999926 ], [ -54.253285285999937, -34.577569268999923 ], [ -54.280344204999949, -34.567966403999947 ], [ -54.308949347999942, -34.56218840899993 ], [ -54.328602667999917, -34.56178150799991 ], [ -54.317372199999909, -34.568617445999905 ], [ -54.280140753999945, -34.582289320999905 ], [ -54.288156704999949, -34.594821872999944 ], [ -54.304432745999918, -34.608575127999927 ], [ -54.323109503999945, -34.619398695999905 ], [ -54.338490363999938, -34.623955987999921 ], [ -54.344634568999936, -34.630629164999903 ], [ -54.344797329999949, -34.64421965899993 ], [ -54.337391730999911, -34.654717705999929 ], [ -54.321156378999945, -34.652520440999922 ], [ -54.32258053299995, -34.644707940999922 ], [ -54.307687954999949, -34.647393487999921 ], [ -54.289214647999927, -34.660251559999949 ], [ -54.280140753999945, -34.682305596999925 ], [ -54.288075324999909, -34.69500090899993 ], [ -54.306467251999948, -34.707696221999925 ], [ -54.530791795999903, -34.806898695999905 ], [ -54.531032884060323, -34.806040540738366 ], [ -54.535838792726111, -34.795395195531853 ], [ -54.536691454347135, -34.789969171040411 ], [ -54.536226366353731, -34.782217705682569 ], [ -54.532428148040594, -34.772192478100408 ], [ -54.528242356999158, -34.766353040660306 ], [ -54.520516730063036, -34.757774753901742 ], [ -54.517984585420265, -34.753743991591932 ], [ -54.517209439064345, -34.749093112557091 ], [ -54.517622850214366, -34.743615411222265 ], [ -54.530877855328754, -34.706563408574425 ], [ -54.533203294396515, -34.695246269799497 ], [ -54.535528734363595, -34.655248712258242 ], [ -54.53273820730243, -34.633234551433418 ], [ -54.524392462741957, -34.606879570835531 ], [ -54.520878465268936, -34.599954928676993 ], [ -54.505530565083518, -34.577682387232358 ], [ -54.500776333261172, -34.567450453175866 ], [ -54.498993495653281, -34.561714368523269 ], [ -54.49801164372235, -34.554583021689098 ], [ -54.498631761346701, -34.54631479329305 ], [ -54.502895066753922, -34.534377536893828 ], [ -54.507132533739423, -34.52781462994119 ], [ -54.515659146352505, -34.519132988596539 ], [ -54.518888922985411, -34.514998875297863 ], [ -54.52056840690642, -34.507557468302537 ], [ -54.522738817242612, -34.481099134917145 ], [ -54.524831712313642, -34.472159112053362 ], [ -54.528087328267588, -34.465906263463296 ], [ -54.534986131105086, -34.457948092530444 ], [ -54.537001511810331, -34.450661716065326 ], [ -54.538164231793871, -34.440843194058175 ], [ -54.5367431302912, -34.421412855618769 ], [ -54.53410763196166, -34.409320570487921 ], [ -54.526769578653102, -34.396763198262988 ], [ -54.519896613338005, -34.394024347145887 ], [ -54.512997808701925, -34.393972670302503 ], [ -54.507365077736154, -34.395833022276179 ], [ -54.501887377300591, -34.396814874207053 ], [ -54.497546555728945, -34.395833022276179 ], [ -54.495117763873679, -34.394179375877513 ], [ -54.492585619230908, -34.390768731191997 ], [ -54.487495489725063, -34.36286345788227 ], [ -54.483697272311247, -34.302660413747105 ], [ -54.485945197013223, -34.27981943062224 ], [ -54.489614224117133, -34.262766208993355 ], [ -54.49209469281584, -34.201219577721361 ], [ -54.481836921236891, -34.146132500614385 ], [ -54.480002406785616, -34.140551445592735 ], [ -54.477676967717855, -34.135383802620368 ], [ -54.466359828942927, -34.116211846599413 ], [ -54.464241096349497, -34.110785821208708 ], [ -54.461502245232452, -34.099933769527865 ], [ -54.460882126708782, -34.095024508973893 ], [ -54.482146978700086, -33.926042575504482 ], [ -54.457859055650886, -33.893693128734924 ], [ -54.427499152064229, -33.86449594513175 ], [ -54.423261685078671, -33.858294772485749 ], [ -54.420703701114917, -33.846667576247626 ], [ -54.418920864406346, -33.816695244489949 ], [ -54.41553605814255, -33.800572197948554 ], [ -54.411944546303744, -33.792355644597308 ], [ -54.408068813624823, -33.786206149694067 ], [ -54.401609260359066, -33.77933318527829 ], [ -54.379543422690801, -33.748999119213977 ], [ -54.375125087652691, -33.738147067533134 ], [ -54.373523118996729, -33.729568779875308 ], [ -54.383031581742102, -33.672621351694033 ], [ -54.378561570759871, -33.651950778905302 ], [ -54.369182298324404, -33.636396173144874 ], [ -54.347814094444914, -33.616552422656184 ], [ -54.267508918301928, -33.577381686515594 ], [ -54.229888474873235, -33.548959649268397 ], [ -54.208442755728584, -33.487154635577951 ], [ -54.190769415576085, -33.48038502394968 ], [ -54.167230801360404, -33.480074964687844 ], [ -54.143227098251998, -33.476715996845769 ], [ -54.136224941727676, -33.473718764209593 ], [ -54.130488857974399, -33.470049737105683 ], [ -54.125708787730389, -33.465347182126777 ], [ -54.121445482323168, -33.45919768542484 ], [ -54.109637417133115, -33.450050957885423 ], [ -54.05687577999322, -33.438888848741385 ], [ -54.032510341678915, -33.426486505248022 ], [ -54.008997564985634, -33.410260105019859 ], [ -53.988817918612028, -33.390468032273873 ], [ -53.963418952422728, -33.346077975418211 ], [ -53.95282528316028, -33.337396335872199 ], [ -53.918692999682207, -33.329076429733448 ], [ -53.895361091041536, -33.316053968615734 ], [ -53.863941820258788, -33.27920867244228 ], [ -53.845932583322053, -33.262672213851602 ], [ -53.832238328635924, -33.25590260222333 ], [ -53.80831214079268, -33.247220960878622 ], [ -53.797718472429551, -33.237867526864875 ], [ -53.79249915171448, -33.227273857602427 ], [ -53.789450243134183, -33.21580169009593 ], [ -53.784696011311894, -33.204277845745992 ], [ -53.774102342049446, -33.193477471807853 ], [ -53.768547126348778, -33.189343356710538 ], [ -53.688887905352544, -33.170016371058693 ], [ -53.61612748899239, -33.143713067304191 ], [ -53.521327074285068, -33.125109552064202 ], [ -53.520661760331961, -33.124978992086824 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-TT", "NAME_1": "Treinta y Tres" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.182836311999949, -32.799904104999925 ], [ -53.203853719999898, -32.822439879999905 ], [ -53.270826374999984, -32.863781026999931 ], [ -53.29883500199989, -32.889102477999913 ], [ -53.306999877999914, -32.907189229999929 ], [ -53.309583699999905, -32.944396259999934 ], [ -53.316301635999935, -32.962689717999908 ], [ -53.327308716999937, -32.973645121999979 ], [ -53.449110066999907, -33.042064716999874 ], [ -53.483319864999913, -33.067282815999917 ], [ -53.511535196999972, -33.099218851999908 ], [ -53.511586872999885, -33.099322204999922 ], [ -53.511638549999901, -33.099425556999861 ], [ -53.520661760331961, -33.124978992086824 ], [ -53.521327074285068, -33.125109552064202 ], [ -53.61612748899239, -33.143713067304191 ], [ -53.688887905352544, -33.170016371058693 ], [ -53.768547126348778, -33.189343356710538 ], [ -53.774102342049446, -33.193477471807853 ], [ -53.784696011311894, -33.204277845745992 ], [ -53.789450243134183, -33.21580169009593 ], [ -53.79249915171448, -33.227273857602427 ], [ -53.797718472429551, -33.237867526864875 ], [ -53.80831214079268, -33.247220960878622 ], [ -53.832238328635924, -33.25590260222333 ], [ -53.845932583322053, -33.262672213851602 ], [ -53.863941820258788, -33.27920867244228 ], [ -53.895361091041536, -33.316053968615734 ], [ -53.918692999682207, -33.329076429733448 ], [ -53.95282528316028, -33.337396335872199 ], [ -53.963418952422728, -33.346077975418211 ], [ -53.988817918612028, -33.390468032273873 ], [ -54.008997564985634, -33.410260105019859 ], [ -54.032510341678915, -33.426486505248022 ], [ -54.05687577999322, -33.438888848741385 ], [ -54.109637417133115, -33.450050957885423 ], [ -54.121445482323168, -33.45919768542484 ], [ -54.125708787730389, -33.465347182126777 ], [ -54.150461798772994, -33.455270277701175 ], [ -54.176816779370881, -33.440955906290071 ], [ -54.212938605132535, -33.428708590628958 ], [ -54.234255133967224, -33.41852833341585 ], [ -54.242988451255997, -33.412275485725104 ], [ -54.25846554175132, -33.398064467101449 ], [ -54.273400030786775, -33.376670423900919 ], [ -54.283476935212377, -33.358118584604995 ], [ -54.286680874322883, -33.354087823194504 ], [ -54.291331753357724, -33.350987236871504 ], [ -54.296990321845897, -33.348816826535312 ], [ -54.306214566449057, -33.347938328291207 ], [ -54.31763505711217, -33.348351738541908 ], [ -54.346832240715344, -33.354294528769515 ], [ -54.35463538291657, -33.357188408618185 ], [ -54.387036505630249, -33.378530775874594 ], [ -54.39222998702428, -33.380907891785796 ], [ -54.403624641064312, -33.385042005983792 ], [ -54.409050665555753, -33.387574150626563 ], [ -54.413520677437305, -33.390933118468638 ], [ -54.4169054837011, -33.395118909510074 ], [ -54.419075894037292, -33.400338230225145 ], [ -54.422021449830027, -33.411655369000073 ], [ -54.427214932123434, -33.421267184532951 ], [ -54.430677252753014, -33.425349622786882 ], [ -54.43442379422271, -33.429122002678298 ], [ -54.438867966783221, -33.432377617732868 ], [ -54.443699713870672, -33.435013116062464 ], [ -54.483542242680358, -33.448707370748537 ], [ -54.492611456753309, -33.449172458741998 ], [ -54.504342006678257, -33.448035577180121 ], [ -54.572348192115385, -33.430052178665107 ], [ -54.577722540662705, -33.427571709966458 ], [ -54.590848354567925, -33.417856540746754 ], [ -54.59671363042969, -33.415737807254004 ], [ -54.603250698061288, -33.414032484911274 ], [ -54.684589402978531, -33.403128757286311 ], [ -54.71466508572513, -33.396049085496884 ], [ -54.749055751621654, -33.376567071113413 ], [ -54.776547613781361, -33.351659030439919 ], [ -54.782335375277341, -33.348248385754403 ], [ -54.790164354101648, -33.345561211480742 ], [ -54.802980108745032, -33.34297738999453 ], [ -54.818224657042265, -33.33817148222812 ], [ -54.825743578403433, -33.336982923822859 ], [ -54.835717129142211, -33.337706394234715 ], [ -54.861271124962457, -33.345922946686642 ], [ -54.906074592068762, -33.365146579550981 ], [ -54.91395524773651, -33.366800225949646 ], [ -54.923902960952887, -33.367265313043788 ], [ -54.941317918686991, -33.364991549920092 ], [ -54.950077074397484, -33.361890963597091 ], [ -54.95674333413757, -33.358273614235884 ], [ -54.961161669175681, -33.355017999181314 ], [ -54.966742723298012, -33.352589206426728 ], [ -54.986431444155812, -33.347731621816877 ], [ -54.995939906901185, -33.343235771513662 ], [ -54.998937141336, -33.342305596426115 ], [ -55.004233974618217, -33.342615654788631 ], [ -55.056323819088959, -33.350263766459648 ], [ -55.075754156629046, -33.357498467879964 ], [ -55.124640061989282, -33.381838066873286 ], [ -55.144535488422036, -33.360650730147086 ], [ -55.146912604333238, -33.353984469507679 ], [ -55.148385382679237, -33.34375253724977 ], [ -55.146602545970723, -33.337396335872199 ], [ -55.143812018010237, -33.332125339213007 ], [ -55.140323858958936, -33.327939548171628 ], [ -55.13634477439183, -33.324270521967037 ], [ -55.121539475666282, -33.31584726304078 ], [ -55.114873215926195, -33.309077650513188 ], [ -55.107561001039358, -33.29884571645664 ], [ -55.096347215051935, -33.274867852669274 ], [ -55.09260067358224, -33.262207126757517 ], [ -55.091076219292063, -33.252440280694373 ], [ -55.100946418142655, -33.207223402438046 ], [ -55.101902431651865, -33.172651868488913 ], [ -55.111074999411699, -33.118236585849729 ], [ -55.103116827579527, -33.097204277855155 ], [ -55.0945385399217, -33.088160903103187 ], [ -55.038572963671356, -33.057671808307305 ], [ -55.029684617650958, -33.051263930086293 ], [ -55.022553269917466, -33.044597669446887 ], [ -55.019349330806961, -33.040566908935716 ], [ -55.009970059270813, -33.024960625432527 ], [ -55.009815029639924, -33.006822198185887 ], [ -55.011365322351764, -32.99994923287079 ], [ -55.025860561815477, -32.978710219301206 ], [ -55.028005133729948, -32.970235283531508 ], [ -55.027359177683877, -32.962897231122327 ], [ -55.023845181110232, -32.956851088107214 ], [ -55.018651698816825, -32.949719741273043 ], [ -55.012373012704359, -32.943570244571106 ], [ -55.007153692888608, -32.94000457115402 ], [ -54.984906988966372, -32.929152519473178 ], [ -54.978783331585475, -32.925121758962007 ], [ -54.970876838395384, -32.91824879274759 ], [ -54.959120449149395, -32.911065769069978 ], [ -54.924858975361417, -32.89933521914503 ], [ -54.919768845855572, -32.89685474954706 ], [ -54.911035528566799, -32.890498549068809 ], [ -54.895532598750435, -32.875977472082695 ], [ -54.87845353869983, -32.863471774902507 ], [ -54.819645759444256, -32.838150323078935 ], [ -54.807010871054842, -32.835463148805275 ], [ -54.778795539382656, -32.832931004162504 ], [ -54.746446091713779, -32.833241061625699 ], [ -54.730581427590778, -32.830347181777029 ], [ -54.684175990929248, -32.814224135235634 ], [ -54.675106777755559, -32.812932224042925 ], [ -54.661696743010282, -32.813242283304703 ], [ -54.648028326745873, -32.8159294566791 ], [ -54.629864061077569, -32.822078952481661 ], [ -54.621621670203922, -32.823215834043481 ], [ -54.611984016249323, -32.823525893305316 ], [ -54.59671363042969, -32.821045423707346 ], [ -54.588677945131053, -32.818048191071171 ], [ -54.582786830847567, -32.814069105604744 ], [ -54.575810512744965, -32.806059258727828 ], [ -54.568885870586428, -32.795982354302225 ], [ -54.563847418823286, -32.790194593705507 ], [ -54.558266363801636, -32.787765801850298 ], [ -54.551987677689169, -32.787765801850298 ], [ -54.544597948436547, -32.789264417718698 ], [ -54.535761278360326, -32.790039564973938 ], [ -54.521291877318276, -32.788075860212757 ], [ -54.51385047122227, -32.784820245158187 ], [ -54.508579473663758, -32.78063445411675 ], [ -54.505969814655202, -32.775725192663515 ], [ -54.500957201313781, -32.762857761176747 ], [ -54.495066087030295, -32.75464120872482 ], [ -54.488684048130324, -32.751695652032708 ], [ -54.481449347609271, -32.751127211251799 ], [ -54.467341681773178, -32.752935885482714 ], [ -54.41132442867945, -32.749731948170847 ], [ -54.390550503103213, -32.744254245936702 ], [ -54.340941128230497, -32.720638115556596 ], [ -54.326109991982548, -32.71552214852835 ], [ -54.31611060192273, -32.71474700307175 ], [ -54.311382209421424, -32.717640882920421 ], [ -54.303010627338551, -32.724410495448012 ], [ -54.298308070561006, -32.727356052140067 ], [ -54.29277869328206, -32.729681492107147 ], [ -54.286319139116983, -32.731283460763109 ], [ -54.248388638225094, -32.735572604592051 ], [ -54.227821418223868, -32.741463717976217 ], [ -54.199916144014821, -32.744254245936702 ], [ -54.194076708373359, -32.746424656272893 ], [ -54.184516567885282, -32.752212415970234 ], [ -54.179323085591932, -32.754796237456389 ], [ -54.17273434111695, -32.75634653106755 ], [ -54.165602993383459, -32.757276707054359 ], [ -54.15805823360057, -32.757535088573491 ], [ -54.136896735296091, -32.75619150143666 ], [ -54.13015296119022, -32.756449883855055 ], [ -54.124158495018548, -32.758000176566895 ], [ -54.118654955261945, -32.760222262847151 ], [ -54.064498054141893, -32.791331476166704 ], [ -54.060028042260342, -32.79453541347857 ], [ -54.053361781620936, -32.797170911808109 ], [ -54.045351934743962, -32.79892791099428 ], [ -54.031450975382199, -32.798101087794976 ], [ -54.025766567573044, -32.794122003227869 ], [ -54.023311937296057, -32.788851006568677 ], [ -54.024707201276328, -32.783683363596367 ], [ -54.027265184340763, -32.778929131774021 ], [ -54.033130459303266, -32.770299168172073 ], [ -54.03548173679269, -32.765751641924737 ], [ -54.036721971142072, -32.760842380471502 ], [ -54.03586931042031, -32.755674736599815 ], [ -54.033052944937424, -32.751385592770873 ], [ -54.029435593777634, -32.747561536935393 ], [ -54.007783169057973, -32.731386813550614 ], [ -54.001271938948832, -32.724772230653912 ], [ -53.996155971920587, -32.721361585968396 ], [ -53.968405728241748, -32.707719008125707 ], [ -53.957036912623437, -32.705393569057946 ], [ -53.947941861028085, -32.705083509796168 ], [ -53.941792365225467, -32.707098890501413 ], [ -53.93145707928079, -32.712214857529659 ], [ -53.868024257613399, -32.755829767130024 ], [ -53.857740647612786, -32.761307467565587 ], [ -53.852082079124671, -32.763581230689226 ], [ -53.844020555404313, -32.765131524300386 ], [ -53.834047003766216, -32.765958346600428 ], [ -53.667132126946115, -32.754744560613005 ], [ -53.631449550756145, -32.760325615634656 ], [ -53.6074975253905, -32.76115243883396 ], [ -53.499958868606882, -32.750197035264989 ], [ -53.494946255265461, -32.751282240882688 ], [ -53.490372890596404, -32.753245944744549 ], [ -53.485799526826668, -32.75613982459322 ], [ -53.481820441360298, -32.759705498909625 ], [ -53.474999151989266, -32.767611992999093 ], [ -53.468229540360994, -32.770299168172073 ], [ -53.458178474357112, -32.771694431253025 ], [ -53.439239061433511, -32.770609225635269 ], [ -53.428283656965164, -32.771332696047068 ], [ -53.420609706872483, -32.773348076752313 ], [ -53.407432217023199, -32.782959894083831 ], [ -53.401101854067292, -32.785853773932502 ], [ -53.393066168768655, -32.788075860212757 ], [ -53.379992030807557, -32.789471124193028 ], [ -53.371336228783946, -32.788954360255502 ], [ -53.363352220328693, -32.786783949919368 ], [ -53.346919115424839, -32.77830901504899 ], [ -53.336816371678196, -32.77660369180694 ], [ -53.32880652480128, -32.775983575081909 ], [ -53.303846808183664, -32.77851571972468 ], [ -53.183389044868534, -32.799806410137705 ], [ -53.182836311999949, -32.799904104999925 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-MA", "NAME_1": "Maldonado" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.530791795999903, -34.806898695999905 ], [ -54.542062954999949, -34.81178150799991 ], [ -54.60415605399993, -34.826429945999905 ], [ -54.636463995999918, -34.848809502999927 ], [ -54.65689042899993, -34.856622002999927 ], [ -54.69945227799991, -34.867445570999905 ], [ -54.872710740999935, -34.936211846999925 ], [ -54.893706834999932, -34.939222914999903 ], [ -54.913726365999935, -34.945245049999926 ], [ -54.939320441999939, -34.969903252999927 ], [ -54.958607550999943, -34.973402601999908 ], [ -54.953968878999945, -34.963311455999929 ], [ -54.95181230399993, -34.956963799999926 ], [ -54.951771613999938, -34.952894789999903 ], [ -54.962228969999956, -34.939629815999922 ], [ -54.975738084999932, -34.928480726999908 ], [ -54.993560350999928, -34.920993747999944 ], [ -55.033070441999939, -34.916761976999908 ], [ -55.03547115799995, -34.912855726999908 ], [ -55.034535285999937, -34.906508070999905 ], [ -55.041127081999946, -34.897637627999927 ], [ -55.051258917999917, -34.891371351999908 ], [ -55.060373501999948, -34.887790622999944 ], [ -55.082142706999946, -34.883965752999927 ], [ -55.129790818999936, -34.885918877999927 ], [ -55.221750454999949, -34.903741143999923 ], [ -55.260243292999917, -34.897637627999927 ], [ -55.286488410999937, -34.87623463299991 ], [ -55.338286912999934, -34.818780205999929 ], [ -55.373763598422975, -34.802871713739947 ], [ -55.374521449904989, -34.795136814012778 ], [ -55.376330125934544, -34.787540379185145 ], [ -55.384779222383202, -34.774001153230643 ], [ -55.404493780763346, -34.750023288543957 ], [ -55.411935186859353, -34.743615411222265 ], [ -55.415630052384984, -34.739377944236765 ], [ -55.418549770655375, -34.734003594790067 ], [ -55.41922156422379, -34.725632012707194 ], [ -55.418601446599496, -34.718759046492778 ], [ -55.413459642048849, -34.694161065081062 ], [ -55.41560421396332, -34.687236422922581 ], [ -55.42056515225994, -34.68010507608841 ], [ -55.432915818909919, -34.670389906868706 ], [ -55.447695279213747, -34.660933119168135 ], [ -55.45818559389005, -34.650236098017501 ], [ -55.473275112556394, -34.62191741265849 ], [ -55.33832210977755, -34.615716240911809 ], [ -55.312199673176394, -34.610290215521047 ], [ -55.288480190908103, -34.600936781507244 ], [ -55.281142136700225, -34.597009372884258 ], [ -55.167660692387017, -34.517634372728139 ], [ -55.155490891991064, -34.514223728042623 ], [ -55.148747117885193, -34.513293552055757 ], [ -55.134071011268134, -34.512983493693298 ], [ -55.102987637269621, -34.514998875297863 ], [ -55.089190029796043, -34.513293552055757 ], [ -55.083066372415146, -34.511639906556468 ], [ -55.070715704865904, -34.503888442097946 ], [ -55.01586117175566, -34.460686943647545 ], [ -54.99738684772484, -34.449369805771937 ], [ -54.983744268982832, -34.44301360349499 ], [ -54.962324388259901, -34.441049899633185 ], [ -54.950180427184932, -34.437742607735174 ], [ -54.919148729130541, -34.424306735467439 ], [ -54.900700242622065, -34.42182626676879 ], [ -54.89235449896097, -34.419190768439194 ], [ -54.883026903368886, -34.414281507885278 ], [ -54.867989060646607, -34.403791192309654 ], [ -54.850134854240139, -34.396143079739318 ], [ -54.844398769587542, -34.392887464684748 ], [ -54.83990292018359, -34.387668144868996 ], [ -54.83649227639745, -34.377642918186098 ], [ -54.83455440915867, -34.356248874985567 ], [ -54.831867234884953, -34.3441565889554 ], [ -54.814142218788334, -34.294443862194498 ], [ -54.811041633364709, -34.288449395123507 ], [ -54.805770636705518, -34.283230076207076 ], [ -54.796417201792394, -34.277649021185368 ], [ -54.789905971683254, -34.272688083788012 ], [ -54.785048387073402, -34.26648691204133 ], [ -54.781482712756997, -34.256565037246673 ], [ -54.778304612967531, -34.236152845977074 ], [ -54.776444260993856, -34.230623467798807 ], [ -54.775462409062925, -34.224990736833035 ], [ -54.77538489379782, -34.219719741073163 ], [ -54.775979173000451, -34.215533950031784 ], [ -54.776831834621476, -34.212278334077837 ], [ -54.779493171372735, -34.204940280769335 ], [ -54.779958259366197, -34.20178801850227 ], [ -54.776986864252365, -34.193933201256243 ], [ -54.755489468264329, -34.163082371254404 ], [ -54.74065833201638, -34.135538832251314 ], [ -54.711719529932338, -34.09905527128376 ], [ -54.707352870838292, -34.090993747563402 ], [ -54.705130784558037, -34.085619399016025 ], [ -54.699058804020581, -34.07921152079507 ], [ -54.689653693163393, -34.071925143430633 ], [ -54.668363002750368, -34.060401299980015 ], [ -54.656374071306345, -34.055543714470843 ], [ -54.646452195612312, -34.052649834622173 ], [ -54.597359584677065, -34.047378838862301 ], [ -54.57415686724562, -34.039834079978789 ], [ -54.567025518612809, -34.033477878601218 ], [ -54.559067348579276, -34.02365935569469 ], [ -54.546277432357613, -34.00076669662576 ], [ -54.537854173431356, -33.978235771863353 ], [ -54.53679480713464, -33.971982924172607 ], [ -54.535192836680039, -33.966091810788441 ], [ -54.523824021961047, -33.952242526471423 ], [ -54.482146978700086, -33.926042575504482 ], [ -54.460882126708782, -34.095024508973893 ], [ -54.461502245232452, -34.099933769527865 ], [ -54.464241096349497, -34.110785821208708 ], [ -54.466359828942927, -34.116211846599413 ], [ -54.477676967717855, -34.135383802620368 ], [ -54.480002406785616, -34.140551445592735 ], [ -54.481836921236891, -34.146132500614385 ], [ -54.49209469281584, -34.201219577721361 ], [ -54.489614224117133, -34.262766208993355 ], [ -54.485945197013223, -34.27981943062224 ], [ -54.483697272311247, -34.302660413747105 ], [ -54.487495489725063, -34.36286345788227 ], [ -54.492585619230908, -34.390768731191997 ], [ -54.495117763873679, -34.394179375877513 ], [ -54.497546555728945, -34.395833022276179 ], [ -54.501887377300591, -34.396814874207053 ], [ -54.507365077736154, -34.395833022276179 ], [ -54.512997808701925, -34.393972670302503 ], [ -54.519896613338005, -34.394024347145887 ], [ -54.526769578653102, -34.396763198262988 ], [ -54.53410763196166, -34.409320570487921 ], [ -54.5367431302912, -34.421412855618769 ], [ -54.538164231793871, -34.440843194058175 ], [ -54.537001511810331, -34.450661716065326 ], [ -54.534986131105086, -34.457948092530444 ], [ -54.528087328267588, -34.465906263463296 ], [ -54.524831712313642, -34.472159112053362 ], [ -54.522738817242612, -34.481099134917145 ], [ -54.52056840690642, -34.507557468302537 ], [ -54.518888922985411, -34.514998875297863 ], [ -54.515659146352505, -34.519132988596539 ], [ -54.507132533739423, -34.52781462994119 ], [ -54.502895066753922, -34.534377536893828 ], [ -54.498631761346701, -34.54631479329305 ], [ -54.49801164372235, -34.554583021689098 ], [ -54.498993495653281, -34.561714368523269 ], [ -54.500776333261172, -34.567450453175866 ], [ -54.505530565083518, -34.577682387232358 ], [ -54.520878465268936, -34.599954928676993 ], [ -54.524392462741957, -34.606879570835531 ], [ -54.53273820730243, -34.633234551433418 ], [ -54.535528734363595, -34.655248712258242 ], [ -54.533203294396515, -34.695246269799497 ], [ -54.530877855328754, -34.706563408574425 ], [ -54.517622850214366, -34.743615411222265 ], [ -54.517209439064345, -34.749093112557091 ], [ -54.517984585420265, -34.753743991591932 ], [ -54.520516730063036, -34.757774753901742 ], [ -54.528242356999158, -34.766353040660306 ], [ -54.532428148040594, -34.772192478100408 ], [ -54.536226366353731, -34.782217705682569 ], [ -54.536691454347135, -34.789969171040411 ], [ -54.535838792726111, -34.795395195531853 ], [ -54.531032884060323, -34.806040540738366 ], [ -54.530791795999903, -34.806898695999905 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-CA", "NAME_1": "Canelones" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.373763598422975, -34.802871713739947 ], [ -55.376942511999914, -34.801446221999925 ], [ -55.401926235999952, -34.799981377999927 ], [ -55.468203607999953, -34.795402152999941 ], [ -55.50963582199995, -34.799064531999932 ], [ -55.561173054999927, -34.787834173999954 ], [ -55.601794463999909, -34.772414648999927 ], [ -55.646730843999933, -34.781099977999929 ], [ -55.693447675999948, -34.764741146999938 ], [ -55.756503014999907, -34.782666358999904 ], [ -55.792050812999946, -34.774133854999945 ], [ -55.858786482999903, -34.793060669999932 ], [ -55.889101437999955, -34.803474817999927 ], [ -55.954431525999951, -34.839402291999932 ], [ -56.004051819999916, -34.869101757999942 ], [ -56.038389708689579, -34.885804421146979 ], [ -56.045669115337375, -34.876630547661648 ], [ -56.049363979963687, -34.866708672866935 ], [ -56.052774623749883, -34.848001803940122 ], [ -56.052800462171604, -34.828933200706672 ], [ -56.051947800550522, -34.82252532248566 ], [ -56.050655891156453, -34.817047621150778 ], [ -56.040165574681509, -34.796532077992993 ], [ -56.036289842002589, -34.785628351267405 ], [ -56.035876430852568, -34.779582208252293 ], [ -56.03887366438812, -34.774776299586563 ], [ -56.044971483347297, -34.771830742894451 ], [ -56.058278164405749, -34.772347506831977 ], [ -56.066701423332006, -34.774001153230643 ], [ -56.075073005414879, -34.774672946799058 ], [ -56.082281866614835, -34.773432712449733 ], [ -56.090756802384533, -34.767903334271466 ], [ -56.094968430948313, -34.763097425605679 ], [ -56.097965663584489, -34.758859958620178 ], [ -56.100058559554896, -34.756844577914933 ], [ -56.1043477042831, -34.754415785160347 ], [ -56.110057948715337, -34.752658786873496 ], [ -56.115406459740313, -34.749919935756452 ], [ -56.12000566283109, -34.746767672590011 ], [ -56.125819260950152, -34.737672620994658 ], [ -56.128067185652071, -34.733073418803258 ], [ -56.132408006324397, -34.726200452588841 ], [ -56.137963222924384, -34.724856865451954 ], [ -56.147135789784841, -34.724701836720385 ], [ -56.167005377795931, -34.729972832480257 ], [ -56.17664303175053, -34.734468682783472 ], [ -56.18318010118071, -34.739532972968334 ], [ -56.190130580861592, -34.748214614312985 ], [ -56.193902960753007, -34.752193698880092 ], [ -56.198166266160229, -34.755604342666288 ], [ -56.20281714519507, -34.758549900257663 ], [ -56.208088140954942, -34.760927016168864 ], [ -56.218526780586444, -34.764182631223434 ], [ -56.224107835608095, -34.76356251359914 ], [ -56.232505256112688, -34.761702161625465 ], [ -56.246716274736286, -34.755345961147214 ], [ -56.253020799270473, -34.751625258099182 ], [ -56.257413295886863, -34.747852879107086 ], [ -56.269092169867747, -34.731316419617087 ], [ -56.272606167340768, -34.72749236378155 ], [ -56.280590175795965, -34.720309340103938 ], [ -56.286248745183457, -34.717363784311203 ], [ -56.293483445704453, -34.714986667500682 ], [ -56.304257982120191, -34.713591403520468 ], [ -56.312810432255617, -34.713436374788841 ], [ -56.331052212289762, -34.717880548248729 ], [ -56.36415096699352, -34.734106947577573 ], [ -56.371411505936237, -34.724185072782859 ], [ -56.386604377390086, -34.709250583747462 ], [ -56.422493659155066, -34.683257337456155 ], [ -56.454894781868688, -34.667599378908221 ], [ -56.459519823381129, -34.664447116641099 ], [ -56.462956305589046, -34.659227796825348 ], [ -56.464945847872571, -34.651993097203672 ], [ -56.466418627117946, -34.624552910988029 ], [ -56.471922166874492, -34.596699313622423 ], [ -56.470759446890952, -34.589878025150767 ], [ -56.467581346202167, -34.583108411723799 ], [ -56.460372484102834, -34.575511976896223 ], [ -56.453835414672653, -34.571687921060686 ], [ -56.441898159172695, -34.566882013294276 ], [ -56.437092251406284, -34.564194838121296 ], [ -56.432751430733958, -34.560939223066669 ], [ -56.428979050842543, -34.557063491287067 ], [ -56.422416143889905, -34.548278497154911 ], [ -56.414923061849834, -34.540527031797069 ], [ -56.398024868053199, -34.527091159529391 ], [ -56.395776944250542, -34.520838311838645 ], [ -56.395854457717064, -34.512828464062352 ], [ -56.400557013595289, -34.499237563063105 ], [ -56.404277716643321, -34.492364596848688 ], [ -56.407688361328781, -34.487507013138156 ], [ -56.408385993318916, -34.483166191566511 ], [ -56.408256802109747, -34.475828139157272 ], [ -56.401797247944614, -34.451850273571267 ], [ -56.40133215995121, -34.432988376812148 ], [ -56.383917202217106, -34.382242119478235 ], [ -56.373736945003998, -34.36689422019208 ], [ -56.363608363735011, -34.361778253163834 ], [ -56.350663417882402, -34.357334079704003 ], [ -56.333868577772648, -34.353768406286918 ], [ -56.303947922858356, -34.352011407100747 ], [ -56.289323493084737, -34.352476495094152 ], [ -56.279427455812424, -34.353871759074423 ], [ -56.268058641093432, -34.357127374128993 ], [ -56.2238494531897, -34.377487887655889 ], [ -56.212273932895698, -34.378573093273644 ], [ -56.195556607151673, -34.377642918186098 ], [ -56.145843878592132, -34.368496188848042 ], [ -56.135560268591519, -34.364568780225 ], [ -56.128015509708007, -34.356713962979029 ], [ -56.119178839631729, -34.342761325874505 ], [ -56.106363084988402, -34.310463555948331 ], [ -56.103624233871301, -34.30560597043916 ], [ -56.097500575591084, -34.299766533898435 ], [ -56.087966275323367, -34.293151951001732 ], [ -55.998643561051495, -34.244369398429001 ], [ -55.989031744619297, -34.243542576128959 ], [ -55.975621710773339, -34.244369398429001 ], [ -55.954976976406329, -34.249433688613863 ], [ -55.90216366242305, -34.270982760545962 ], [ -55.893921270650139, -34.272222995794607 ], [ -55.8823457512554, -34.272481378213058 ], [ -55.859737311227946, -34.270000908615032 ], [ -55.848368495609577, -34.267417088028196 ], [ -55.839816047272734, -34.264678236911095 ], [ -55.771861537779728, -34.230106702961962 ], [ -55.744240485310115, -34.22235523850344 ], [ -55.61910600363916, -34.207730807830501 ], [ -55.591950039162953, -34.298319593974099 ], [ -55.578591682160379, -34.331030775949557 ], [ -55.536966314843539, -34.395419610226838 ], [ -55.533168098329043, -34.404721368296521 ], [ -55.531695319083724, -34.413144627222778 ], [ -55.532470466338964, -34.41955250364515 ], [ -55.544433560260586, -34.469213556260627 ], [ -55.545157029773122, -34.478050225437528 ], [ -55.544226853786256, -34.499857679788079 ], [ -55.542004766606681, -34.503991794885451 ], [ -55.536578742115239, -34.511743258444596 ], [ -55.495263434060234, -34.553497816970662 ], [ -55.47877865321226, -34.57949106146333 ], [ -55.473171759768888, -34.594063816192147 ], [ -55.473275112556394, -34.62191741265849 ], [ -55.45818559389005, -34.650236098017501 ], [ -55.447695279213747, -34.660933119168135 ], [ -55.432915818909919, -34.670389906868706 ], [ -55.42056515225994, -34.68010507608841 ], [ -55.41560421396332, -34.687236422922581 ], [ -55.413459642048849, -34.694161065081062 ], [ -55.418601446599496, -34.718759046492778 ], [ -55.41922156422379, -34.725632012707194 ], [ -55.418549770655375, -34.734003594790067 ], [ -55.415630052384984, -34.739377944236765 ], [ -55.411935186859353, -34.743615411222265 ], [ -55.404493780763346, -34.750023288543957 ], [ -55.384779222383202, -34.774001153230643 ], [ -55.376330125934544, -34.787540379185145 ], [ -55.374521449904989, -34.795136814012778 ], [ -55.373763598422975, -34.802871713739947 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-MO", "NAME_1": "Montevideo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.038389708689579, -34.885804421146979 ], [ -56.06963449299991, -34.901002533999929 ], [ -56.105198417999929, -34.898416128999941 ], [ -56.135632689999909, -34.912828736999927 ], [ -56.149891730999911, -34.920342705999929 ], [ -56.156088350999937, -34.941188262999958 ], [ -56.17728986599991, -34.916324502999942 ], [ -56.194509927999945, -34.913508687999922 ], [ -56.213001643999917, -34.907693230999939 ], [ -56.204660610999952, -34.898695570999905 ], [ -56.203454656999952, -34.887502625999957 ], [ -56.214589163999904, -34.879587885999911 ], [ -56.230550958999913, -34.877749998999946 ], [ -56.236508470999922, -34.89288421099991 ], [ -56.256337042999917, -34.906182549999926 ], [ -56.265823667999939, -34.906266151999944 ], [ -56.287976038999943, -34.903489195999953 ], [ -56.311268683999913, -34.906182549999926 ], [ -56.342762824999909, -34.883965752999927 ], [ -56.402943488999938, -34.85475025799991 ], [ -56.418446417999917, -34.84303150799991 ], [ -56.420765753999945, -34.828220309999949 ], [ -56.40375055599992, -34.816051420999941 ], [ -56.386847533999912, -34.80187023499991 ], [ -56.361281585999905, -34.796636049999904 ], [ -56.364590688292822, -34.793534634418471 ], [ -56.364590687809994, -34.793534634016169 ], [ -56.359009162442874, -34.788883965422656 ], [ -56.356115281694883, -34.785214939218065 ], [ -56.354384120930433, -34.776843357135249 ], [ -56.354229092198864, -34.769608656614196 ], [ -56.36415096699352, -34.734106947577573 ], [ -56.331052212289762, -34.717880548248729 ], [ -56.312810432255617, -34.713436374788841 ], [ -56.304257982120191, -34.713591403520468 ], [ -56.293483445704453, -34.714986667500682 ], [ -56.286248745183457, -34.717363784311203 ], [ -56.280590175795965, -34.720309340103938 ], [ -56.272606167340768, -34.72749236378155 ], [ -56.269092169867747, -34.731316419617087 ], [ -56.257413295886863, -34.747852879107086 ], [ -56.253020799270473, -34.751625258099182 ], [ -56.246716274736286, -34.755345961147214 ], [ -56.232505256112688, -34.761702161625465 ], [ -56.224107835608095, -34.76356251359914 ], [ -56.218526780586444, -34.764182631223434 ], [ -56.208088140954942, -34.760927016168864 ], [ -56.20281714519507, -34.758549900257663 ], [ -56.198166266160229, -34.755604342666288 ], [ -56.193902960753007, -34.752193698880092 ], [ -56.190130580861592, -34.748214614312985 ], [ -56.18318010118071, -34.739532972968334 ], [ -56.17664303175053, -34.734468682783472 ], [ -56.167005377795931, -34.729972832480257 ], [ -56.147135789784841, -34.724701836720385 ], [ -56.137963222924384, -34.724856865451954 ], [ -56.132408006324397, -34.726200452588841 ], [ -56.128067185652071, -34.733073418803258 ], [ -56.125819260950152, -34.737672620994658 ], [ -56.12000566283109, -34.746767672590011 ], [ -56.115406459740313, -34.749919935756452 ], [ -56.110057948715337, -34.752658786873496 ], [ -56.1043477042831, -34.754415785160347 ], [ -56.100058559554896, -34.756844577914933 ], [ -56.097965663584489, -34.758859958620178 ], [ -56.094968430948313, -34.763097425605679 ], [ -56.090756802384533, -34.767903334271466 ], [ -56.082281866614835, -34.773432712449733 ], [ -56.075073005414879, -34.774672946799058 ], [ -56.066701423332006, -34.774001153230643 ], [ -56.058278164405749, -34.772347506831977 ], [ -56.044971483347297, -34.771830742894451 ], [ -56.03887366438812, -34.774776299586563 ], [ -56.035876430852568, -34.779582208252293 ], [ -56.036289842002589, -34.785628351267405 ], [ -56.040165574681509, -34.796532077992993 ], [ -56.050655891156453, -34.817047621150778 ], [ -56.051947800550522, -34.82252532248566 ], [ -56.052800462171604, -34.828933200706672 ], [ -56.052774623749883, -34.848001803940122 ], [ -56.049363979963687, -34.866708672866935 ], [ -56.045669115337375, -34.876630547661648 ], [ -56.038389708689579, -34.885804421146979 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-SJ", "NAME_1": "San José" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.364590688292822, -34.793534634418471 ], [ -56.376119660999905, -34.782729245999917 ], [ -56.395738337999944, -34.775880065999957 ], [ -56.448432032999904, -34.758272461999923 ], [ -56.485087754999938, -34.753549863999922 ], [ -56.52044438899992, -34.754820884999958 ], [ -56.541900193999936, -34.767022393999923 ], [ -56.558013475999928, -34.765069268999923 ], [ -56.573597785999937, -34.758965752999927 ], [ -56.610951300999943, -34.739434502999927 ], [ -56.628529425999943, -34.732598565999922 ], [ -56.646362077999925, -34.722641517999932 ], [ -56.713544492999915, -34.707037253999943 ], [ -56.795289444999923, -34.698492353999939 ], [ -56.873890753999945, -34.670179945999905 ], [ -56.890695766999954, -34.660088799999926 ], [ -56.904164191999939, -34.635511976999908 ], [ -56.919748501999948, -34.623223565999922 ], [ -56.952870245999918, -34.603448174999926 ], [ -56.976577176999911, -34.581045573999916 ], [ -56.997417070999916, -34.564068814999928 ], [ -57.015787531999933, -34.552091484999949 ], [ -57.042717102999916, -34.538124849999917 ], [ -57.05742538599992, -34.527127071999928 ], [ -57.055897589999915, -34.513441664999903 ], [ -57.062408006999931, -34.506524346999925 ], [ -57.077015753999945, -34.498142184999949 ], [ -57.083159959999932, -34.493584893999923 ], [ -57.101958787999934, -34.47584400799991 ], [ -57.120025193999936, -34.462985934999949 ], [ -57.151964157999942, -34.450932202999923 ], [ -57.167477895822707, -34.448249763786535 ], [ -57.167477894888918, -34.448249763116053 ], [ -57.105991991237374, -34.40410125067217 ], [ -57.102064581715069, -34.400328870780754 ], [ -57.099274054653904, -34.393559259152482 ], [ -57.097982144360458, -34.384102471451911 ], [ -57.098912320347324, -34.36477548580001 ], [ -57.097697922621023, -34.353768406286918 ], [ -57.092116869398012, -34.343071384236964 ], [ -57.086096563905301, -34.337076918065293 ], [ -57.081161464929664, -34.329273776763387 ], [ -57.073797573199442, -34.308551528030591 ], [ -57.073280809261917, -34.301626885872111 ], [ -57.077259893829023, -34.295994154906339 ], [ -57.097051968373648, -34.276563815567613 ], [ -57.100100876953888, -34.272326348582112 ], [ -57.102788052126868, -34.267727145491392 ], [ -57.103950772110409, -34.26111256259469 ], [ -57.103485684117004, -34.252896010142763 ], [ -57.099429084284793, -34.239718520293479 ], [ -57.095553350706552, -34.232328790141537 ], [ -57.090954149414472, -34.227212823113291 ], [ -57.067053799093571, -34.212898450802868 ], [ -57.051137458127187, -34.205715427125256 ], [ -57.008426886991231, -34.195431817124643 ], [ -57.000985479995904, -34.192382907645083 ], [ -56.996515469013673, -34.190005791733881 ], [ -56.952099574635668, -34.159981784931404 ], [ -56.94517493337645, -34.152953789985418 ], [ -56.943185391092925, -34.150421644443327 ], [ -56.94194515584428, -34.147631116482842 ], [ -56.941790127112654, -34.144582207902545 ], [ -56.942487759102789, -34.138019300949964 ], [ -56.94806881412444, -34.127477308530956 ], [ -56.985017463085455, -34.078746432801609 ], [ -57.017625292273408, -34.046552015662996 ], [ -57.024730800685916, -34.042107843102485 ], [ -57.041706508848279, -34.034873141682169 ], [ -57.046719123089076, -34.032030937777563 ], [ -57.051499193333086, -34.02598479566177 ], [ -57.055995042737038, -34.017303155216439 ], [ -57.064340786398191, -33.987434177145531 ], [ -57.077724981822428, -33.962991224465441 ], [ -57.034962734742408, -33.965058282014127 ], [ -56.890449592374807, -33.988364353132397 ], [ -56.879029099912998, -33.987434177145531 ], [ -56.865257330861141, -33.984591974140301 ], [ -56.84058183508364, -33.976530449520624 ], [ -56.828902961102756, -33.971569513022587 ], [ -56.820738084594893, -33.967073662719372 ], [ -56.779241909386599, -33.924957370786046 ], [ -56.762550422064294, -33.913020115286088 ], [ -56.759656542215623, -33.911366468887422 ], [ -56.755419074330803, -33.909609469701252 ], [ -56.686844448112765, -33.895243421446764 ], [ -56.663951789043836, -33.887646986619131 ], [ -56.64338456904261, -33.877570082193529 ], [ -56.60292192170931, -33.849716484827923 ], [ -56.572096931028511, -33.855969333417988 ], [ -56.462697923170595, -33.90242644602364 ], [ -56.449029506906186, -33.935034275211649 ], [ -56.41869544084193, -34.055440361683338 ], [ -56.414561326643877, -34.096729832215999 ], [ -56.415181444268228, -34.107685234885707 ], [ -56.416757575401789, -34.116108493811964 ], [ -56.419083015368869, -34.121327812728396 ], [ -56.440812953554939, -34.153212171504492 ], [ -56.44375851114637, -34.158948256157089 ], [ -56.44623897984502, -34.166544691884042 ], [ -56.446083950214131, -34.172590833999777 ], [ -56.444430304714786, -34.177810153815528 ], [ -56.426085170993815, -34.216309095488384 ], [ -56.421253424805684, -34.231243584523781 ], [ -56.420142380766265, -34.24090707779942 ], [ -56.424534878281975, -34.307001234419431 ], [ -56.426653611774782, -34.316509698064124 ], [ -56.429521654101052, -34.321160577098965 ], [ -56.433164841883922, -34.32508798572195 ], [ -56.437557339399689, -34.328240247989072 ], [ -56.456780972264028, -34.336870212490339 ], [ -56.46223283607651, -34.340022474757404 ], [ -56.466961228577816, -34.345086764942266 ], [ -56.471095343675188, -34.353613376656028 ], [ -56.471198697362013, -34.359917901190215 ], [ -56.468873257394932, -34.36477548580001 ], [ -56.413812017810358, -34.414126479153708 ], [ -56.408799405368256, -34.420172621269444 ], [ -56.40133215995121, -34.432988376812148 ], [ -56.401797247944614, -34.451850273571267 ], [ -56.408256802109747, -34.475828139157272 ], [ -56.408385993318916, -34.483166191566511 ], [ -56.407688361328781, -34.487507013138156 ], [ -56.404277716643321, -34.492364596848688 ], [ -56.400557013595289, -34.499237563063105 ], [ -56.395854457717064, -34.512828464062352 ], [ -56.395776944250542, -34.520838311838645 ], [ -56.398024868053199, -34.527091159529391 ], [ -56.414923061849834, -34.540527031797069 ], [ -56.422416143889905, -34.548278497154911 ], [ -56.428979050842543, -34.557063491287067 ], [ -56.432751430733958, -34.560939223066669 ], [ -56.437092251406284, -34.564194838121296 ], [ -56.441898159172695, -34.566882013294276 ], [ -56.453835414672653, -34.571687921060686 ], [ -56.460372484102834, -34.575511976896223 ], [ -56.467581346202167, -34.583108411723799 ], [ -56.470759446890952, -34.589878025150767 ], [ -56.471922166874492, -34.596699313622423 ], [ -56.466418627117946, -34.624552910988029 ], [ -56.464945847872571, -34.651993097203672 ], [ -56.462956305589046, -34.659227796825348 ], [ -56.459519823381129, -34.664447116641099 ], [ -56.454894781868688, -34.667599378908221 ], [ -56.422493659155066, -34.683257337456155 ], [ -56.386604377390086, -34.709250583747462 ], [ -56.371411505936237, -34.724185072782859 ], [ -56.36415096699352, -34.734106947577573 ], [ -56.354229092198864, -34.769608656614196 ], [ -56.354384120930433, -34.776843357135249 ], [ -56.356115281694883, -34.785214939218065 ], [ -56.359009162442874, -34.788883965422656 ], [ -56.364590687809994, -34.793534634016169 ], [ -56.364590688292822, -34.793534634418471 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-CO", "NAME_1": "Colonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.167477895822707, -34.448249763786535 ], [ -57.203198013999952, -34.442073492999953 ], [ -57.292158428999926, -34.440332648999913 ], [ -57.346941661999949, -34.443459326999914 ], [ -57.365199921999931, -34.43044041099995 ], [ -57.411428258999933, -34.431505619999939 ], [ -57.436973813999941, -34.444575562999944 ], [ -57.449130182999909, -34.43153807199991 ], [ -57.47466288499993, -34.429541249999943 ], [ -57.502635281999915, -34.440582482999957 ], [ -57.537913699999933, -34.453613687999905 ], [ -57.569475453999928, -34.426503974999946 ], [ -57.594997224999929, -34.4254729699999 ], [ -57.624177455999927, -34.43045196199995 ], [ -57.664323577999937, -34.445437727999945 ], [ -57.72030011399994, -34.463373202999946 ], [ -57.738535391999903, -34.461317668999925 ], [ -57.764114822999943, -34.474294584999939 ], [ -57.793302043999915, -34.472196717999907 ], [ -57.822509555999943, -34.475108571999954 ], [ -57.855354161999912, -34.470967084999927 ], [ -57.845584683999903, -34.462979086999951 ], [ -57.854047670999933, -34.447881645999928 ], [ -57.882019203999903, -34.440724169999953 ], [ -57.900189818999934, -34.416524680999942 ], [ -57.897599559999946, -34.376338811999915 ], [ -57.922759568999936, -34.353692315999922 ], [ -57.942738410999937, -34.326267184999949 ], [ -58.016916469999899, -34.253106377999927 ], [ -58.049794074999909, -34.240004164999903 ], [ -58.061390753999945, -34.224704684999949 ], [ -58.076975063999953, -34.191989841999941 ], [ -58.094593878999945, -34.177829684999949 ], [ -58.11937415299991, -34.16920338299991 ], [ -58.145904100999928, -34.165134372999944 ], [ -58.169097459999932, -34.163995049999926 ], [ -58.196197068999936, -34.15943775799991 ], [ -58.208729620999918, -34.147637627999927 ], [ -58.220326300999943, -34.110039971999925 ], [ -58.231841600999928, -34.088799737999921 ], [ -58.316517706999946, -33.986504815999922 ], [ -58.334828253999945, -33.973321221999925 ], [ -58.372425910999937, -33.95435963299991 ], [ -58.388824022999927, -33.942071221999925 ], [ -58.402699347999942, -33.922784112999921 ], [ -58.410023566999939, -33.902276299999926 ], [ -58.415616509701181, -33.875615065773886 ], [ -58.415524460585402, -33.875606377432348 ], [ -58.414956020703812, -33.875554700588964 ], [ -58.383071661927659, -33.870800469665937 ], [ -58.369093187300734, -33.867389824980421 ], [ -58.278995326672998, -33.835970554197729 ], [ -58.185641851889955, -33.781968682708566 ], [ -58.169622158136065, -33.77798959724214 ], [ -58.15238806755525, -33.77969491958487 ], [ -58.039552578388793, -33.80398284263407 ], [ -58.034229905785537, -33.808582044825528 ], [ -58.028002895617135, -33.815455011039944 ], [ -58.02521236765665, -33.819692478025445 ], [ -58.020303107102677, -33.828994236095127 ], [ -58.016556565632982, -33.838967786833905 ], [ -58.014179449721837, -33.843722018656251 ], [ -58.008288337236991, -33.852248631269333 ], [ -58.004955206917259, -33.855762627842978 ], [ -58.001312018235069, -33.858449802116695 ], [ -57.998599006439008, -33.860103447616041 ], [ -57.994154832979177, -33.862118829220606 ], [ -57.986403367621335, -33.863824150664016 ], [ -57.976119757620722, -33.864961033125155 ], [ -57.958317227158318, -33.864340915500861 ], [ -57.928422410665689, -33.859845066096909 ], [ -57.85021012959379, -33.861860446802154 ], [ -57.840159063589908, -33.864185885869915 ], [ -57.826568162590604, -33.870025323310017 ], [ -57.819333462069608, -33.874624525501474 ], [ -57.813959112622967, -33.879017022117864 ], [ -57.811943731917665, -33.881807550078349 ], [ -57.81029008641832, -33.883616225208641 ], [ -57.811633673555207, -33.88242766680338 ], [ -57.80512244344601, -33.889248956174413 ], [ -57.800419887567728, -33.892969659222388 ], [ -57.79065304240396, -33.898860771707234 ], [ -57.654175585334997, -33.93813486063533 ], [ -57.626011928707555, -33.940098564497134 ], [ -57.56557634057566, -33.935137627999154 ], [ -57.393183763319996, -33.896070244646069 ], [ -57.374761115233298, -33.90035938847501 ], [ -57.353212043301141, -33.908730970557826 ], [ -57.334350144743382, -33.918187758258455 ], [ -57.317271083793457, -33.931623630526133 ], [ -57.298383347713298, -33.943819268444486 ], [ -57.292957323221856, -33.946351413986577 ], [ -57.264664476284565, -33.949452000309577 ], [ -57.182008022652099, -33.949400322566817 ], [ -57.077724981822428, -33.962991224465441 ], [ -57.064340786398191, -33.987434177145531 ], [ -57.055995042737038, -34.017303155216439 ], [ -57.051499193333086, -34.02598479566177 ], [ -57.046719123089076, -34.032030937777563 ], [ -57.041706508848279, -34.034873141682169 ], [ -57.024730800685916, -34.042107843102485 ], [ -57.017625292273408, -34.046552015662996 ], [ -56.985017463085455, -34.078746432801609 ], [ -56.94806881412444, -34.127477308530956 ], [ -56.942487759102789, -34.138019300949964 ], [ -56.941790127112654, -34.144582207902545 ], [ -56.94194515584428, -34.147631116482842 ], [ -56.943185391092925, -34.150421644443327 ], [ -56.94517493337645, -34.152953789985418 ], [ -56.952099574635668, -34.159981784931404 ], [ -56.996515469013673, -34.190005791733881 ], [ -57.000985479995904, -34.192382907645083 ], [ -57.008426886991231, -34.195431817124643 ], [ -57.051137458127187, -34.205715427125256 ], [ -57.067053799093571, -34.212898450802868 ], [ -57.090954149414472, -34.227212823113291 ], [ -57.095553350706552, -34.232328790141537 ], [ -57.099429084284793, -34.239718520293479 ], [ -57.103485684117004, -34.252896010142763 ], [ -57.103950772110409, -34.26111256259469 ], [ -57.102788052126868, -34.267727145491392 ], [ -57.100100876953888, -34.272326348582112 ], [ -57.097051968373648, -34.276563815567613 ], [ -57.077259893829023, -34.295994154906339 ], [ -57.073280809261917, -34.301626885872111 ], [ -57.073797573199442, -34.308551528030591 ], [ -57.081161464929664, -34.329273776763387 ], [ -57.086096563905301, -34.337076918065293 ], [ -57.092116869398012, -34.343071384236964 ], [ -57.097697922621023, -34.353768406286918 ], [ -57.098912320347324, -34.36477548580001 ], [ -57.097982144360458, -34.384102471451911 ], [ -57.099274054653904, -34.393559259152482 ], [ -57.102064581715069, -34.400328870780754 ], [ -57.105991991237374, -34.40410125067217 ], [ -57.167477894888918, -34.448249763116053 ], [ -57.167477895822707, -34.448249763786535 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-SO", "NAME_1": "Soriano" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.415616509701181, -33.875615065773886 ], [ -58.434641079999949, -33.784926039999903 ], [ -58.439361131999931, -33.69850025799991 ], [ -58.425770636999914, -33.612888278999947 ], [ -58.429025844999899, -33.592054945999905 ], [ -58.435047980999911, -33.572360934999949 ], [ -58.438343878999945, -33.551446221999925 ], [ -58.433216925999943, -33.527764580999929 ], [ -58.419585740999935, -33.508233330999929 ], [ -58.385365363999938, -33.470310153999947 ], [ -58.378570115999935, -33.448663018999923 ], [ -58.384877081999946, -33.429131768999923 ], [ -58.391524323426459, -33.424446488709862 ], [ -58.39136572874537, -33.424367770855952 ], [ -58.295893521368896, -33.376980483162754 ], [ -58.242020840189639, -33.31775929095852 ], [ -58.223598192102884, -33.308044121738817 ], [ -58.175797492360402, -33.308044121738817 ], [ -58.147323778269765, -33.312074884048684 ], [ -58.136006638595461, -33.307682386532917 ], [ -58.13140743730338, -33.290680840848154 ], [ -58.130942349309976, -33.252957044631898 ], [ -58.127996791718545, -33.242880141105616 ], [ -58.117248093724527, -33.233888442297769 ], [ -58.083606736661579, -33.21869557084392 ], [ -58.071798672370846, -33.224793389803096 ], [ -58.054771288264362, -33.238487643589906 ], [ -58.04950029160517, -33.239159438057641 ], [ -58.039216681604557, -33.246600844153647 ], [ -58.031206834727641, -33.238022555596444 ], [ -58.027098558051989, -33.221486097905085 ], [ -58.028390469244755, -33.205052992101912 ], [ -58.03118099630592, -33.203399346602566 ], [ -58.043945075005183, -33.193167412546075 ], [ -58.049603644392676, -33.187483005636182 ], [ -58.04986202681107, -33.179731541177659 ], [ -58.049138557298591, -33.170894871101439 ], [ -58.04950029160517, -33.164073581730406 ], [ -58.060274828020908, -33.144178155297652 ], [ -58.059835578449167, -33.13720183719505 ], [ -58.04950029160517, -33.129915459830613 ], [ -58.033273892276327, -33.126194756782581 ], [ -58.018907844021783, -33.129088636631252 ], [ -58.004335090192228, -33.133739515666093 ], [ -57.987411057973929, -33.135496514852264 ], [ -57.965061001264189, -33.131000664549049 ], [ -57.960875210222753, -33.122577406522112 ], [ -57.962968106193159, -33.110433444547823 ], [ -57.959479947141858, -33.09518889714991 ], [ -57.949506394604441, -33.087024020642048 ], [ -57.919766607742758, -33.080564466476972 ], [ -57.904857958028344, -33.075293470717099 ], [ -57.89067277692709, -33.064441419935577 ], [ -57.880311651661373, -33.053279310791538 ], [ -57.86852942579236, -33.044339287927812 ], [ -57.850235968914831, -33.039946791311365 ], [ -57.832872687124791, -33.042272231278446 ], [ -57.804889899449279, -33.05643157305866 ], [ -57.789412808054635, -33.06103077614938 ], [ -57.777165493292898, -33.060720716887602 ], [ -57.756288214929157, -33.055501397071794 ], [ -57.744402635373319, -33.054209486778404 ], [ -57.733292202173402, -33.056379897114539 ], [ -57.718719448343847, -33.065681655184221 ], [ -57.688747118384811, -33.071882826031583 ], [ -57.650454881387645, -33.085008639936802 ], [ -57.631127895735801, -33.081494642463781 ], [ -57.623686488740475, -33.073588149273689 ], [ -57.613764613945762, -33.051884046811324 ], [ -57.606943324574786, -33.047388198306692 ], [ -57.573534512407832, -33.039688408892971 ], [ -57.5659639151026, -33.036846204988365 ], [ -57.546585251707995, -33.025425713425932 ], [ -57.525397914981795, -33.021394952015442 ], [ -57.503073696693718, -33.024237155919991 ], [ -57.459174567152559, -33.043719171202781 ], [ -57.449976161870381, -33.050023695736968 ], [ -57.446177945355885, -33.057620130564601 ], [ -57.446126267613124, -33.068782240607902 ], [ -57.444653490166445, -33.081132908157201 ], [ -57.439589199082263, -33.091054782951858 ], [ -57.428788825144181, -33.09518889714991 ], [ -57.417264980794243, -33.092553398820314 ], [ -57.396671922371297, -33.07973764417693 ], [ -57.384734666871395, -33.075293470717099 ], [ -57.373598395249758, -33.074621677148684 ], [ -57.363288946827424, -33.07606861707302 ], [ -57.322464566086865, -33.087644138266342 ], [ -57.304894578721814, -33.095498955512369 ], [ -57.292957323221856, -33.107591240643217 ], [ -57.281846890021939, -33.146917005515377 ], [ -57.266679856989811, -33.143351332098291 ], [ -57.250324265552422, -33.128520195850342 ], [ -57.240092333294513, -33.115652765262894 ], [ -57.234175380589363, -33.142266126480536 ], [ -57.228723516776881, -33.152911471687048 ], [ -57.216837938120364, -33.15725229325875 ], [ -57.205805020185551, -33.155598646860085 ], [ -57.160924037814084, -33.13890715863846 ], [ -57.135912645252347, -33.125833021576682 ], [ -57.12712765201951, -33.123094170459581 ], [ -57.140796068283919, -33.154616794929154 ], [ -57.147307298393116, -33.163815200211332 ], [ -57.218698290093982, -33.240347995563525 ], [ -57.231798264678162, -33.249856459208218 ], [ -57.336701423132183, -33.354914645494489 ], [ -57.347630988279491, -33.370986016991083 ], [ -57.347992722586071, -33.380081068586435 ], [ -57.346933356289355, -33.386592298695632 ], [ -57.344659593165659, -33.391914972198208 ], [ -57.341636522107819, -33.396049085496884 ], [ -57.337709112585458, -33.399769788544916 ], [ -57.312103440821147, -33.414032484911274 ], [ -57.307607591417195, -33.417236423122404 ], [ -57.303731858738274, -33.420957127069755 ], [ -57.300734626102098, -33.425246269999377 ], [ -57.298254157403449, -33.429793797146033 ], [ -57.287040371416026, -33.472685234535959 ], [ -57.285024989811404, -33.477594495989194 ], [ -57.282311978015343, -33.48193531666152 ], [ -57.26605974026478, -33.499763685545645 ], [ -57.26587887221217, -33.500177096695666 ], [ -57.265749681002944, -33.500332127225875 ], [ -57.26453528507534, -33.503019300600215 ], [ -57.262364874739148, -33.515835056142919 ], [ -57.261822272379959, -33.527617282911251 ], [ -57.26050452276553, -33.535317070526389 ], [ -57.258411627694443, -33.541363213541445 ], [ -57.255156012639873, -33.545497327739497 ], [ -57.251357795226056, -33.549218031686792 ], [ -57.24719784170702, -33.552628675472988 ], [ -57.226682297649916, -33.576296481797215 ], [ -57.217948981260463, -33.582962741537301 ], [ -57.207975429622365, -33.588698826189898 ], [ -57.202006801872415, -33.590765882839207 ], [ -57.174385749402802, -33.596915378641825 ], [ -57.168520474440356, -33.599809258490495 ], [ -57.163637051408784, -33.603581637482591 ], [ -57.160458949820679, -33.610092868491108 ], [ -57.160510626664063, -33.61608733466278 ], [ -57.162241787428513, -33.621410007266036 ], [ -57.164386359342984, -33.626164239088382 ], [ -57.167073533616701, -33.630660088492277 ], [ -57.169243943952836, -33.635931085151469 ], [ -57.170975103817966, -33.641667168904746 ], [ -57.186038784062646, -33.739697361144295 ], [ -57.186400519268545, -33.752254734268547 ], [ -57.18531531365079, -33.755510348423854 ], [ -57.183713344994885, -33.75907602274026 ], [ -57.141958788267459, -33.819072361300414 ], [ -57.130124884655686, -33.842636813937816 ], [ -57.128316210424771, -33.848321221746971 ], [ -57.125525681564966, -33.863049005207415 ], [ -57.121520758576139, -33.874676201445538 ], [ -57.118962774612328, -33.880412286098135 ], [ -57.116585658701183, -33.887336928256616 ], [ -57.112141486140672, -33.912451673605858 ], [ -57.108446620615041, -33.92268360766235 ], [ -57.106198696812385, -33.927437838585377 ], [ -57.103330655385435, -33.931778660157022 ], [ -57.085734828699401, -33.951880792164843 ], [ -57.077724981822428, -33.962991224465441 ], [ -57.182008022652099, -33.949400322566817 ], [ -57.264664476284565, -33.949452000309577 ], [ -57.292957323221856, -33.946351413986577 ], [ -57.298383347713298, -33.943819268444486 ], [ -57.317271083793457, -33.931623630526133 ], [ -57.334350144743382, -33.918187758258455 ], [ -57.353212043301141, -33.908730970557826 ], [ -57.374761115233298, -33.90035938847501 ], [ -57.393183763319996, -33.896070244646069 ], [ -57.56557634057566, -33.935137627999154 ], [ -57.626011928707555, -33.940098564497134 ], [ -57.654175585334997, -33.93813486063533 ], [ -57.79065304240396, -33.898860771707234 ], [ -57.800419887567728, -33.892969659222388 ], [ -57.80512244344601, -33.889248956174413 ], [ -57.811633673555207, -33.88242766680338 ], [ -57.81029008641832, -33.883616225208641 ], [ -57.811943731917665, -33.881807550078349 ], [ -57.813959112622967, -33.879017022117864 ], [ -57.819333462069608, -33.874624525501474 ], [ -57.826568162590604, -33.870025323310017 ], [ -57.840159063589908, -33.864185885869915 ], [ -57.85021012959379, -33.861860446802154 ], [ -57.928422410665689, -33.859845066096909 ], [ -57.958317227158318, -33.864340915500861 ], [ -57.976119757620722, -33.864961033125155 ], [ -57.986403367621335, -33.863824150664016 ], [ -57.994154832979177, -33.862118829220606 ], [ -57.998599006439008, -33.860103447616041 ], [ -58.001312018235069, -33.858449802116695 ], [ -58.004955206917259, -33.855762627842978 ], [ -58.008288337236991, -33.852248631269333 ], [ -58.014179449721837, -33.843722018656251 ], [ -58.016556565632982, -33.838967786833905 ], [ -58.020303107102677, -33.828994236095127 ], [ -58.02521236765665, -33.819692478025445 ], [ -58.028002895617135, -33.815455011039944 ], [ -58.034229905785537, -33.808582044825528 ], [ -58.039552578388793, -33.80398284263407 ], [ -58.15238806755525, -33.77969491958487 ], [ -58.169622158136065, -33.77798959724214 ], [ -58.185641851889955, -33.781968682708566 ], [ -58.278995326672998, -33.835970554197729 ], [ -58.369093187300734, -33.867389824980421 ], [ -58.383071661927659, -33.870800469665937 ], [ -58.414956020703812, -33.875554700588964 ], [ -58.415524460585402, -33.875606377432348 ], [ -58.415616509701181, -33.875615065773886 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-RN", "NAME_1": "Río Negro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.391524323426459, -33.424446488709862 ], [ -58.412587042999917, -33.409600518999923 ], [ -58.418934699999909, -33.38990650799991 ], [ -58.412587042999917, -33.371677341999941 ], [ -58.397206183999913, -33.355645440999922 ], [ -58.361195441999939, -33.325778903999947 ], [ -58.350738084999932, -33.305759372999944 ], [ -58.349232550999943, -33.282810153999947 ], [ -58.366037563999953, -33.196058851999908 ], [ -58.366932745999918, -33.153741143999923 ], [ -58.351389126999948, -33.121677341999941 ], [ -58.310292120999918, -33.108819268999923 ], [ -58.217355923999946, -33.113539320999905 ], [ -58.174427863999938, -33.110446872999944 ], [ -58.137766079999949, -33.095147393999923 ], [ -58.100168423999946, -33.065606377999927 ], [ -58.083729620999918, -33.047539971999925 ], [ -58.076975063999953, -33.030694268999923 ], [ -58.075306769999941, -33.00750090899993 ], [ -58.070668097999942, -32.98951588299991 ], [ -58.055816209999932, -32.951836846999925 ], [ -58.048491990999935, -32.911716403999947 ], [ -58.057118292999917, -32.881768487999921 ], [ -58.077219204999949, -32.857842705999929 ], [ -58.120472785999937, -32.819268487999921 ], [ -58.130767381999931, -32.802666924999926 ], [ -58.136138475999928, -32.784356377999927 ], [ -58.137766079999949, -32.763441664999903 ], [ -58.135853644999941, -32.718357028999947 ], [ -58.137684699999909, -32.695570570999905 ], [ -58.14517167899993, -32.678155205999929 ], [ -58.137766079999949, -32.670668226999908 ], [ -58.146229620999918, -32.644952080999929 ], [ -58.157215949999909, -32.575127862999921 ], [ -58.169097459999932, -32.560804945999905 ], [ -58.177113410999937, -32.545017184999949 ], [ -58.191458508909932, -32.491891452065666 ], [ -58.19130042217671, -32.491866550001305 ], [ -58.162103237674273, -32.487267347809848 ], [ -58.110995246033781, -32.484735203167077 ], [ -58.102520311163403, -32.486027113460523 ], [ -58.091409877963486, -32.490057874871013 ], [ -58.084898647854288, -32.493571873243354 ], [ -58.080351121606952, -32.496827488297924 ], [ -58.077069668130662, -32.500031426509111 ], [ -58.076914639399092, -32.500238132084121 ], [ -58.049836188389349, -32.527316583093807 ], [ -58.045417853351239, -32.530572198148434 ], [ -58.040611944685509, -32.533517754840489 ], [ -58.018804491234278, -32.543594659266091 ], [ -58.014541184927737, -32.546850273421398 ], [ -58.011208054608005, -32.550829359787144 ], [ -58.005885382904069, -32.559614353019981 ], [ -57.999632534314003, -32.576874282022516 ], [ -57.998392299964678, -32.578993014615946 ], [ -57.995601772903512, -32.582093600938947 ], [ -57.987721117235765, -32.584987480787618 ], [ -57.975706345571382, -32.587364596698762 ], [ -57.951986864202411, -32.589535007034954 ], [ -57.93113542336107, -32.594599298119135 ], [ -57.921161871722973, -32.600387057816476 ], [ -57.90896623380462, -32.602712497783557 ], [ -57.821374681196573, -32.610308932611133 ], [ -57.816103685436701, -32.61299610778417 ], [ -57.808662279340695, -32.614288018976879 ], [ -57.799593065267743, -32.613512871721639 ], [ -57.784606900288225, -32.607621759236793 ], [ -57.777553066920518, -32.602092381058526 ], [ -57.772824672620516, -32.59661467882438 ], [ -57.769284836725831, -32.576512546816559 ], [ -57.767657029648205, -32.570621432533073 ], [ -57.764969855374545, -32.565712171979158 ], [ -57.761765917163359, -32.561474704993657 ], [ -57.757270066860087, -32.558270765883151 ], [ -57.58350806314661, -32.536153253170085 ], [ -57.573715378661802, -32.530417168517488 ], [ -57.569581265363126, -32.526748142312897 ], [ -57.562449916730259, -32.518841648223486 ], [ -57.559452684094083, -32.514190769188644 ], [ -57.552967292406606, -32.4998247209341 ], [ -57.552579718778986, -32.499152926466365 ], [ -57.551623705269776, -32.49713754666044 ], [ -57.546791958182325, -32.489076022940083 ], [ -57.543071255134294, -32.485251967104602 ], [ -57.538652920096183, -32.482151380781602 ], [ -57.533071865074533, -32.480136000076357 ], [ -57.50948157401541, -32.473779798698729 ], [ -57.504779019036505, -32.471609389261914 ], [ -57.495528936910887, -32.464167983165908 ], [ -57.492376674643822, -32.460602308849502 ], [ -57.48441850371097, -32.453522637959395 ], [ -57.475478481746507, -32.447424819000219 ], [ -57.470259161930755, -32.445099379033138 ], [ -57.460208095926873, -32.444324232677218 ], [ -57.446901414868421, -32.444840996614687 ], [ -57.411037970625841, -32.450111993273879 ], [ -57.401477831037084, -32.450577081267284 ], [ -57.375484584745777, -32.446804700476548 ], [ -57.358276332586684, -32.441585381560117 ], [ -57.343031786088034, -32.434040622676605 ], [ -57.335926275876943, -32.433110446689739 ], [ -57.32734798911838, -32.433730564314089 ], [ -57.305850593130344, -32.441895439922632 ], [ -57.296393806329093, -32.444427585464723 ], [ -57.286420253791675, -32.445306084608092 ], [ -57.26838517933254, -32.442877292752883 ], [ -57.258695847635238, -32.440396824054176 ], [ -57.251151088751726, -32.437554620149626 ], [ -57.185754564121851, -32.397350356134041 ], [ -57.175083381392938, -32.392957858618274 ], [ -57.165781623323255, -32.391252537174864 ], [ -57.102322964133464, -32.390529066763008 ], [ -57.089326341437527, -32.388513686057763 ], [ -57.08377112483754, -32.386498304453198 ], [ -57.073745897255321, -32.381692396686731 ], [ -57.054883998697562, -32.369755141186829 ], [ -57.044755419227215, -32.365000908465163 ], [ -57.039665289721313, -32.363398939809201 ], [ -57.028684047730621, -32.364329115796068 ], [ -57.013672044329383, -32.367584730850638 ], [ -56.959024216794148, -32.388927097207784 ], [ -56.927475754802231, -32.405256850223452 ], [ -56.903058641443124, -32.410166110777368 ], [ -56.880966966252458, -32.411302991439925 ], [ -56.859314540633534, -32.410217786721489 ], [ -56.834251472127733, -32.405256850223452 ], [ -56.82363196534294, -32.405876966948483 ], [ -56.784822964408249, -32.412078138695165 ], [ -56.771722988025488, -32.41295663783859 ], [ -56.76193030533932, -32.412388197956943 ], [ -56.749605475312421, -32.40985605151559 ], [ -56.742551641944715, -32.409545994052394 ], [ -56.725240037897436, -32.411458021970134 ], [ -56.670463019152976, -32.425772394280557 ], [ -56.659843513267504, -32.431198418771999 ], [ -56.604911464892211, -32.470420830856654 ], [ -56.591346402314628, -32.478120618471792 ], [ -56.559358689851649, -32.492486667625599 ], [ -56.563957892043049, -32.538116957031946 ], [ -56.595480515613303, -32.649686375226054 ], [ -56.59966630665474, -32.664414157787178 ], [ -56.619535894665773, -32.684257908275868 ], [ -56.629457770359807, -32.699192397311265 ], [ -56.633204311829502, -32.71779591165199 ], [ -56.633204311829502, -32.730198256044673 ], [ -56.630698004709132, -32.750042005634043 ], [ -56.640645717925509, -32.783580010808862 ], [ -56.658008998816229, -32.813397312036329 ], [ -56.666793992948385, -32.843266290107181 ], [ -56.685862596181835, -32.83804697029143 ], [ -56.704026861850195, -32.843266290107181 ], [ -56.715344000625123, -32.855513603969655 ], [ -56.735058559904587, -32.863006686909046 ], [ -56.764694993978765, -32.863936862895912 ], [ -56.782239142022775, -32.870499769848493 ], [ -56.795726691133893, -32.881196790999127 ], [ -56.804563361210171, -32.889103285088538 ], [ -56.815673794410088, -32.910910739439089 ], [ -56.815570440723263, -32.917628676022559 ], [ -56.815131192050842, -32.93349334104488 ], [ -56.828050300381051, -32.936903984831019 ], [ -56.846834682774386, -32.934113457769854 ], [ -56.863965419668375, -32.938144220079721 ], [ -56.869520637167682, -32.947290947619138 ], [ -56.868900518644011, -32.957316176100619 ], [ -56.863965419668375, -32.975971368184105 ], [ -56.868228725974916, -32.987340182903097 ], [ -56.877892219250498, -32.984756361416942 ], [ -56.894377000997792, -32.972250665136073 ], [ -56.899777187966833, -32.969563490862413 ], [ -56.906572638916145, -32.963827407109136 ], [ -56.915021735364803, -32.958918144756581 ], [ -56.925408698152864, -32.958608087293385 ], [ -56.937010056868644, -32.965687758183492 ], [ -56.937165085600213, -32.974111017109749 ], [ -56.933134325089043, -32.981914157512335 ], [ -56.932255825046298, -32.986565036547177 ], [ -56.946363490882391, -32.989045506145203 ], [ -56.968403490128935, -32.990130710863639 ], [ -56.985198330238745, -32.993593031493219 ], [ -56.983441331951894, -33.003308200712866 ], [ -56.969049445275687, -33.018501072166771 ], [ -56.969126959641471, -33.025477390269373 ], [ -56.981503464713114, -33.027492770974618 ], [ -57.004241095949794, -33.027492770974618 ], [ -57.02382646312077, -33.024237155919991 ], [ -57.064599168816585, -33.009664402090493 ], [ -57.083073492847404, -33.006408787035866 ], [ -57.100359260271659, -33.010284518815467 ], [ -57.118497686618923, -33.019844659303601 ], [ -57.135215013262268, -33.031936943535129 ], [ -57.148237474379926, -33.043667493460077 ], [ -57.156040614782512, -33.047543227038318 ], [ -57.173507250259377, -33.049765312419254 ], [ -57.178649054810023, -33.054209486778404 ], [ -57.179036628437643, -33.065216567190816 ], [ -57.171931118226496, -33.070952650944093 ], [ -57.161544155438435, -33.071727797300014 ], [ -57.151984015849621, -33.067852064621093 ], [ -57.130228238342511, -33.075293470717099 ], [ -57.132657030197777, -33.087179050272937 ], [ -57.12710181269847, -33.11715138113135 ], [ -57.12712765201951, -33.123094170459581 ], [ -57.135912645252347, -33.125833021576682 ], [ -57.160924037814084, -33.13890715863846 ], [ -57.205805020185551, -33.155598646860085 ], [ -57.216837938120364, -33.15725229325875 ], [ -57.228723516776881, -33.152911471687048 ], [ -57.234175380589363, -33.142266126480536 ], [ -57.240092333294513, -33.115652765262894 ], [ -57.250324265552422, -33.128520195850342 ], [ -57.266679856989811, -33.143351332098291 ], [ -57.281846890021939, -33.146917005515377 ], [ -57.292957323221856, -33.107591240643217 ], [ -57.304894578721814, -33.095498955512369 ], [ -57.322464566086865, -33.087644138266342 ], [ -57.363288946827424, -33.07606861707302 ], [ -57.373598395249758, -33.074621677148684 ], [ -57.384734666871395, -33.075293470717099 ], [ -57.396671922371297, -33.07973764417693 ], [ -57.417264980794243, -33.092553398820314 ], [ -57.428788825144181, -33.09518889714991 ], [ -57.439589199082263, -33.091054782951858 ], [ -57.444653490166445, -33.081132908157201 ], [ -57.446126267613124, -33.068782240607902 ], [ -57.446177945355885, -33.057620130564601 ], [ -57.449976161870381, -33.050023695736968 ], [ -57.459174567152559, -33.043719171202781 ], [ -57.503073696693718, -33.024237155919991 ], [ -57.525397914981795, -33.021394952015442 ], [ -57.546585251707995, -33.025425713425932 ], [ -57.5659639151026, -33.036846204988365 ], [ -57.573534512407832, -33.039688408892971 ], [ -57.606943324574786, -33.047388198306692 ], [ -57.613764613945762, -33.051884046811324 ], [ -57.623686488740475, -33.073588149273689 ], [ -57.631127895735801, -33.081494642463781 ], [ -57.650454881387645, -33.085008639936802 ], [ -57.688747118384811, -33.071882826031583 ], [ -57.718719448343847, -33.065681655184221 ], [ -57.733292202173402, -33.056379897114539 ], [ -57.744402635373319, -33.054209486778404 ], [ -57.756288214929157, -33.055501397071794 ], [ -57.777165493292898, -33.060720716887602 ], [ -57.789412808054635, -33.06103077614938 ], [ -57.804889899449279, -33.05643157305866 ], [ -57.832872687124791, -33.042272231278446 ], [ -57.850235968914831, -33.039946791311365 ], [ -57.86852942579236, -33.044339287927812 ], [ -57.880311651661373, -33.053279310791538 ], [ -57.89067277692709, -33.064441419935577 ], [ -57.904857958028344, -33.075293470717099 ], [ -57.919766607742758, -33.080564466476972 ], [ -57.949506394604441, -33.087024020642048 ], [ -57.959479947141858, -33.09518889714991 ], [ -57.962968106193159, -33.110433444547823 ], [ -57.960875210222753, -33.122577406522112 ], [ -57.965061001264189, -33.131000664549049 ], [ -57.987411057973929, -33.135496514852264 ], [ -58.004335090192228, -33.133739515666093 ], [ -58.018907844021783, -33.129088636631252 ], [ -58.033273892276327, -33.126194756782581 ], [ -58.04950029160517, -33.129915459830613 ], [ -58.059835578449167, -33.13720183719505 ], [ -58.060274828020908, -33.144178155297652 ], [ -58.04950029160517, -33.164073581730406 ], [ -58.049138557298591, -33.170894871101439 ], [ -58.04986202681107, -33.179731541177659 ], [ -58.049603644392676, -33.187483005636182 ], [ -58.043945075005183, -33.193167412546075 ], [ -58.03118099630592, -33.203399346602566 ], [ -58.028390469244755, -33.205052992101912 ], [ -58.027098558051989, -33.221486097905085 ], [ -58.031206834727641, -33.238022555596444 ], [ -58.039216681604557, -33.246600844153647 ], [ -58.04950029160517, -33.239159438057641 ], [ -58.054771288264362, -33.238487643589906 ], [ -58.071798672370846, -33.224793389803096 ], [ -58.083606736661579, -33.21869557084392 ], [ -58.117248093724527, -33.233888442297769 ], [ -58.127996791718545, -33.242880141105616 ], [ -58.130942349309976, -33.252957044631898 ], [ -58.13140743730338, -33.290680840848154 ], [ -58.136006638595461, -33.307682386532917 ], [ -58.147323778269765, -33.312074884048684 ], [ -58.175797492360402, -33.308044121738817 ], [ -58.223598192102884, -33.308044121738817 ], [ -58.242020840189639, -33.31775929095852 ], [ -58.295893521368896, -33.376980483162754 ], [ -58.39136572874537, -33.424367770855952 ], [ -58.391524323426459, -33.424446488709862 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-TA", "NAME_1": "Tacuarembó" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.559358689851649, -32.492486667625599 ], [ -56.50597693508746, -32.356525973594785 ], [ -56.489182094977707, -32.334615166456786 ], [ -56.459700689635099, -32.311619154600294 ], [ -56.422493659155066, -32.288519789057034 ], [ -56.388955654879567, -32.261906426940072 ], [ -56.358750780024479, -32.231882420137595 ], [ -56.351438565137641, -32.214312432772545 ], [ -56.322654791785226, -32.103156426627777 ], [ -56.317926398384543, -32.091374199859445 ], [ -56.306428391557006, -32.073649183762825 ], [ -56.301286587006359, -32.063572280236542 ], [ -56.294646165687993, -32.042695000973538 ], [ -56.290408697803173, -32.000268649778377 ], [ -56.290382860280772, -32.000113621046751 ], [ -56.289762742656421, -31.99318897888827 ], [ -56.290150316284041, -31.95060759896154 ], [ -56.287850714738681, -31.940479017692496 ], [ -56.28454342284067, -31.933399346802389 ], [ -56.280099250280159, -31.930298760479388 ], [ -56.275009120774314, -31.927818291780738 ], [ -56.264389613989465, -31.924614352670233 ], [ -56.255914680018464, -31.923374119220227 ], [ -56.251573859346138, -31.922133883971583 ], [ -56.247982346608012, -31.919188328178791 ], [ -56.245579393174467, -31.914227389882114 ], [ -56.244855922762611, -31.907096043047943 ], [ -56.246922980311297, -31.900791517614437 ], [ -56.250695360202712, -31.894745374599381 ], [ -56.274569872101893, -31.869372246831745 ], [ -56.277489590372284, -31.863274427872568 ], [ -56.279866706283485, -31.855316256939716 ], [ -56.280951911001864, -31.831855157089819 ], [ -56.279401618290024, -31.81009937868339 ], [ -56.279789191018324, -31.803536471730808 ], [ -56.284052497324865, -31.793666273779536 ], [ -56.288858405091332, -31.784881279647323 ], [ -56.321595424589191, -31.751291598528439 ], [ -56.319786750358219, -31.723696383581228 ], [ -56.32172461579836, -31.709950452951034 ], [ -56.325264451693101, -31.699718519793862 ], [ -56.327589890760862, -31.68871144028077 ], [ -56.330561285874637, -31.646181736298104 ], [ -56.332809210576613, -31.635019627154065 ], [ -56.336684943255534, -31.625149428303473 ], [ -56.342472703852195, -31.616467786958822 ], [ -56.349293993223228, -31.608612969712794 ], [ -56.352007005019232, -31.604272149040469 ], [ -56.353944872258069, -31.599672946849012 ], [ -56.351128505875863, -31.58944101279252 ], [ -56.321492071801686, -31.519316094761962 ], [ -56.316737839979339, -31.512236422972535 ], [ -56.284181687634771, -31.485468032124004 ], [ -56.27958248634269, -31.479680270627966 ], [ -56.262684291646735, -31.449191175832084 ], [ -56.257439134308584, -31.442731621667008 ], [ -56.250307786575092, -31.438855889887407 ], [ -56.231678432913327, -31.433171482078251 ], [ -56.226407437153512, -31.430949394898676 ], [ -56.220309618194335, -31.42660857512567 ], [ -56.213850064029202, -31.420562433009877 ], [ -56.20397986517861, -31.408935234973114 ], [ -56.191758388838593, -31.398134861035032 ], [ -56.187133348225416, -31.395240981186305 ], [ -56.183412645177441, -31.388419691815329 ], [ -56.180389574119545, -31.378549492964737 ], [ -56.172922328702498, -31.340567315229407 ], [ -56.16387895395053, -31.323359063070313 ], [ -56.158013678988084, -31.304652195042763 ], [ -56.134113328667183, -31.273077894629125 ], [ -56.121400925911985, -31.263052667046964 ], [ -56.104606085802232, -31.257316583293687 ], [ -56.097681443643694, -31.256076348944362 ], [ -56.078793707563534, -31.256128024888426 ], [ -56.064143439368252, -31.259383639943053 ], [ -56.05871741397749, -31.261864108641703 ], [ -55.976913621966048, -31.317674656160477 ], [ -55.929138759745967, -31.340877373591923 ], [ -55.856869268901619, -31.366922295827294 ], [ -55.83997107600436, -31.378032729027211 ], [ -55.834803433031993, -31.382683608062052 ], [ -55.830824347565567, -31.38728281025351 ], [ -55.820514899143291, -31.405317884712588 ], [ -55.816406623366959, -31.415136406719796 ], [ -55.814778815390014, -31.420407402479668 ], [ -55.813951992190653, -31.432654718140725 ], [ -55.815502284902493, -31.451723320474855 ], [ -55.814727139445949, -31.457407729183331 ], [ -55.799611782357886, -31.496268406062086 ], [ -55.797622240074304, -31.499834079479172 ], [ -55.797286343290125, -31.500299167472576 ], [ -55.793824021761168, -31.506655368850204 ], [ -55.791033494700002, -31.510686131160014 ], [ -55.786718513348717, -31.515130303720525 ], [ -55.753258023439002, -31.541795342680928 ], [ -55.745945807652902, -31.546291192084823 ], [ -55.738891974285195, -31.549340101564439 ], [ -55.705922410790606, -31.558435154059111 ], [ -55.686827969135436, -31.565566501792603 ], [ -55.67770707911842, -31.5705791160334 ], [ -55.671195848109903, -31.5751783182248 ], [ -55.665563117144131, -31.583808281826748 ], [ -55.661429002046816, -31.593781833464845 ], [ -55.652437303238969, -31.626286309865293 ], [ -55.648225673775812, -31.636001479084996 ], [ -55.646804572273197, -31.641272474844811 ], [ -55.646959601004767, -31.647318616960604 ], [ -55.648122320988307, -31.65320973124409 ], [ -55.65649390307118, -31.674552096701916 ], [ -55.65972367970403, -31.686437677157073 ], [ -55.660963914952731, -31.699408460532027 ], [ -55.66052466538099, -31.705609633178028 ], [ -55.65918107824416, -31.710932305781284 ], [ -55.656726447067854, -31.715531507972742 ], [ -55.650783656840304, -31.724006442843063 ], [ -55.648535733037647, -31.728553969090399 ], [ -55.647579718629117, -31.733824964850271 ], [ -55.649827643331093, -31.751860040208669 ], [ -55.649285040971847, -31.757596123961946 ], [ -55.645125088352131, -31.767414645969154 ], [ -55.635926683069954, -31.782090752586157 ], [ -55.625152146654216, -31.795681654484781 ], [ -55.617478196561535, -31.801831150287342 ], [ -55.609623379315508, -31.805241794972858 ], [ -55.60251787000368, -31.806068617272842 ], [ -55.5955932278452, -31.805861911697889 ], [ -55.589185349624188, -31.804828382923517 ], [ -55.572803920664398, -31.798885592695967 ], [ -55.566266852133538, -31.797903740765037 ], [ -55.559006314090141, -31.798058769496606 ], [ -55.531514451930377, -31.803536471730808 ], [ -55.503660854564771, -31.806378675635358 ], [ -55.416069301956725, -31.801211032663048 ], [ -55.391109585339109, -31.795888360059791 ], [ -55.376562669031955, -31.795216566491376 ], [ -55.347623866947913, -31.797903740765037 ], [ -55.250032925179369, -31.818781020028041 ], [ -55.188227912388243, -31.822966811069477 ], [ -55.146990118699023, -31.818936048759667 ], [ -55.115880907178109, -31.820124607164871 ], [ -55.100403814884146, -31.822915134226037 ], [ -55.062369961204752, -31.837591240843096 ], [ -55.042241990775267, -31.843172295864747 ], [ -54.965347460217117, -31.848960055562088 ], [ -54.953177659821165, -31.851388849215994 ], [ -54.909743618273353, -31.865134779846187 ], [ -54.887212694410323, -31.874953301853395 ], [ -54.882871873737997, -31.878157240963901 ], [ -54.879073656324181, -31.881722913481667 ], [ -54.859255744257212, -31.905752455011793 ], [ -54.85532833473485, -31.909318128428879 ], [ -54.828094854993537, -31.927973320512308 ], [ -54.813134528435739, -31.942391045610293 ], [ -54.795745409123299, -31.968539320633113 ], [ -54.754120042705779, -32.009105319854655 ], [ -54.737790289690111, -32.029310804649924 ], [ -54.700970831938321, -32.060161634651706 ], [ -54.688310106026563, -32.076594740454937 ], [ -54.676011115320705, -32.099745781942261 ], [ -54.669370694002339, -32.109047540011943 ], [ -54.65451371933267, -32.122845146586258 ], [ -54.67611446810821, -32.127909437670439 ], [ -54.690945604356159, -32.129356377594775 ], [ -54.731124029950024, -32.109047540011943 ], [ -54.75569617383934, -32.101916192278452 ], [ -54.766651577408368, -32.11230315506657 ], [ -54.769726325309648, -32.135350843766446 ], [ -54.777710333764901, -32.148838392877508 ], [ -54.800809699308161, -32.170955905590574 ], [ -54.809181281391034, -32.185683689051018 ], [ -54.81295366128245, -32.195657240689115 ], [ -54.814452277150849, -32.205114027490367 ], [ -54.810964118099548, -32.21596607827189 ], [ -54.804375372725247, -32.227076510572488 ], [ -54.800292935370692, -32.238238620615846 ], [ -54.804220343993677, -32.249194024184874 ], [ -54.818405524195555, -32.269347833036079 ], [ -54.839618700242795, -32.310482273038474 ], [ -54.856051805146706, -32.328620701184434 ], [ -54.865844488732137, -32.33466684330017 ], [ -54.886799282360982, -32.343038424483723 ], [ -54.897005377995811, -32.349084567498778 ], [ -54.906229620800332, -32.359471531186216 ], [ -54.913102586115428, -32.370685317173638 ], [ -54.921370816310116, -32.37957366319398 ], [ -54.95692420129086, -32.388668714789333 ], [ -54.972220424632894, -32.401794528694552 ], [ -54.99258093905911, -32.431043390040429 ], [ -55.013716599841189, -32.451455579511389 ], [ -55.03996822765157, -32.468663831670483 ], [ -55.070793220131009, -32.480601088069761 ], [ -55.105855678696628, -32.485045260630272 ], [ -55.140013800596421, -32.47899911851448 ], [ -55.205074429341437, -32.457088310477161 ], [ -55.23962012396953, -32.458948662450837 ], [ -55.328426073404557, -32.49388193070655 ], [ -55.359431932137966, -32.498687838472961 ], [ -55.367364264649098, -32.497292576291386 ], [ -55.371730922843824, -32.493726901974924 ], [ -55.375813361097755, -32.489231051671709 ], [ -55.410927497406078, -32.472022799512615 ], [ -55.41811052108369, -32.470885918850058 ], [ -55.424079148833641, -32.471764417993484 ], [ -55.430228643736939, -32.471040947581685 ], [ -55.437618373888824, -32.465149835096838 ], [ -55.441545783411186, -32.459723809706077 ], [ -55.44350948817231, -32.45440113710282 ], [ -55.445059779984831, -32.438484796136436 ], [ -55.445188972093376, -32.438484796136436 ], [ -55.454025641270334, -32.431508478033834 ], [ -55.471337246216933, -32.427322686093078 ], [ -55.487021044085907, -32.43414397546411 ], [ -55.49616777162538, -32.444685967883117 ], [ -55.498493210693084, -32.4585869281442 ], [ -55.503609177721387, -32.47326303476126 ], [ -55.507639940031197, -32.490006198926949 ], [ -55.52099829793309, -32.503132012832111 ], [ -55.54179806193099, -32.508713066954499 ], [ -55.564432338581526, -32.510573418928118 ], [ -55.590038011245213, -32.508247978961037 ], [ -55.612853155948358, -32.503132012832111 ], [ -55.634273036671289, -32.495277194686764 ], [ -55.650086025749488, -32.496827488297924 ], [ -55.66282426602703, -32.510883478189953 ], [ -55.676001755876314, -32.539822280273995 ], [ -55.692305671369638, -32.546488539114762 ], [ -55.710624965769568, -32.547728773464144 ], [ -55.727058071572742, -32.53780689866943 ], [ -55.748477953194993, -32.522200616065561 ], [ -55.768037481944248, -32.520495293722831 ], [ -55.779509650350064, -32.525817965426768 ], [ -55.781680059786936, -32.53780689866943 ], [ -55.773618536965898, -32.556255385177906 ], [ -55.772998420240867, -32.570156344539669 ], [ -55.782765266304011, -32.579303073877782 ], [ -55.787881232432937, -32.591188652534299 ], [ -55.792842169830294, -32.607931816699988 ], [ -55.808991054793353, -32.621057630605151 ], [ -55.830410936415603, -32.633770034259669 ], [ -55.857411872160185, -32.626018568901827 ], [ -55.88177730957517, -32.602660820940116 ], [ -55.90332638240659, -32.603590996926982 ], [ -55.927071703096601, -32.61454640049601 ], [ -55.944305792778096, -32.630979506299184 ], [ -55.958413458614189, -32.649686375226054 ], [ -55.986499599976526, -32.673199151020015 ], [ -56.013810594083623, -32.699967542767865 ], [ -56.048588832708447, -32.705393569057946 ], [ -56.083806321804275, -32.707253920132302 ], [ -56.1255350410093, -32.720276381250017 ], [ -56.169460008072917, -32.725960789059172 ], [ -56.182637498821521, -32.746424656272893 ], [ -56.20111182285234, -32.767611992999093 ], [ -56.21865597179567, -32.793605239290343 ], [ -56.224857144441671, -32.823009128468527 ], [ -56.257129075946068, -32.824559422079687 ], [ -56.295447149566314, -32.823164158099416 ], [ -56.329140184372022, -32.817118015084304 ], [ -56.361567144608046, -32.814792576016544 ], [ -56.389033169245351, -32.833396091256589 ], [ -56.396164516978843, -32.843266290107181 ], [ -56.406706509397907, -32.861094658991306 ], [ -56.428436449382616, -32.859389336648576 ], [ -56.450011358837116, -32.84094085103942 ], [ -56.470630255681726, -32.830760592927049 ], [ -56.496106737136188, -32.829055270584263 ], [ -56.521531541747265, -32.832000828175694 ], [ -56.538765632328079, -32.831535740182289 ], [ -56.558790249070739, -32.832000828175694 ], [ -56.582974820231755, -32.83556650159278 ], [ -56.599743821919844, -32.842026055757856 ], [ -56.618838263575014, -32.85427336962033 ], [ -56.636976690821598, -32.858149103198571 ], [ -56.666793992948385, -32.843266290107181 ], [ -56.658008998816229, -32.813397312036329 ], [ -56.640645717925509, -32.783580010808862 ], [ -56.630698004709132, -32.750042005634043 ], [ -56.633204311829502, -32.730198256044673 ], [ -56.633204311829502, -32.71779591165199 ], [ -56.629457770359807, -32.699192397311265 ], [ -56.619535894665773, -32.684257908275868 ], [ -56.59966630665474, -32.664414157787178 ], [ -56.595480515613303, -32.649686375226054 ], [ -56.563957892043049, -32.538116957031946 ], [ -56.559358689851649, -32.492486667625599 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-DU", "NAME_1": "Durazno" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.471337246216933, -32.427322686093078 ], [ -55.454025641270334, -32.431508478033834 ], [ -55.445188972093376, -32.438484796136436 ], [ -55.445059779984831, -32.438484796136436 ], [ -55.44350948817231, -32.45440113710282 ], [ -55.441545783411186, -32.459723809706077 ], [ -55.437618373888824, -32.465149835096838 ], [ -55.430228643736939, -32.471040947581685 ], [ -55.424079148833641, -32.471764417993484 ], [ -55.41811052108369, -32.470885918850058 ], [ -55.410927497406078, -32.472022799512615 ], [ -55.375813361097755, -32.489231051671709 ], [ -55.371730922843824, -32.493726901974924 ], [ -55.367364264649098, -32.497292576291386 ], [ -55.359431932137966, -32.498687838472961 ], [ -55.328426073404557, -32.49388193070655 ], [ -55.308065558079022, -32.526541435838567 ], [ -55.303466355887622, -32.548348891088438 ], [ -55.302975430371816, -32.560441176219285 ], [ -55.303931443881027, -32.572843519712649 ], [ -55.318219976870409, -32.625398451277476 ], [ -55.331733364403249, -32.656869398903609 ], [ -55.335299037820334, -32.667876478416758 ], [ -55.335505744294665, -32.679917087603485 ], [ -55.333800421951878, -32.685756524144267 ], [ -55.308065558079022, -32.736554456522924 ], [ -55.306696133419791, -32.742600599538036 ], [ -55.306773647785633, -32.748336684190633 ], [ -55.308530646072427, -32.75365935589457 ], [ -55.312122157911233, -32.757431735785985 ], [ -55.317522345779651, -32.759447116491231 ], [ -55.330673998106533, -32.761617526827422 ], [ -55.335970832288069, -32.763787937163556 ], [ -55.340337489583476, -32.767043552218183 ], [ -55.343153855965681, -32.771487725678014 ], [ -55.344807502364347, -32.77660369180694 ], [ -55.342998827234055, -32.784045098802267 ], [ -55.338399624143335, -32.792365004041699 ], [ -55.321630621555926, -32.813707371298165 ], [ -55.317754889776324, -32.820373631038251 ], [ -55.316178757743444, -32.825541274010561 ], [ -55.315610317861854, -32.831277357763838 ], [ -55.317134772152031, -32.850242608209783 ], [ -55.322793342438786, -32.87391041363469 ], [ -55.323155076745365, -32.880008232593866 ], [ -55.320777960834221, -32.890808607431268 ], [ -55.315817023436864, -32.90166065911211 ], [ -55.304835781446172, -32.917783704754186 ], [ -55.286025559731797, -32.93618051441922 ], [ -55.272822232360113, -32.945947360482307 ], [ -55.177634243125794, -32.997417088228019 ], [ -55.174947068852134, -32.999897556027406 ], [ -55.174766200799525, -33.000104261602416 ], [ -55.174611172067955, -33.000362644020811 ], [ -55.163423223602877, -33.014160251494388 ], [ -55.159469976558171, -33.01767424896741 ], [ -55.149005500303588, -33.020051364878611 ], [ -55.133218349647109, -33.02113656959699 ], [ -55.061413946796222, -33.01865610089834 ], [ -55.009970059270813, -33.024960625432527 ], [ -55.019349330806961, -33.040566908935716 ], [ -55.022553269917466, -33.044597669446887 ], [ -55.029684617650958, -33.051263930086293 ], [ -55.038572963671356, -33.057671808307305 ], [ -55.0945385399217, -33.088160903103187 ], [ -55.103116827579527, -33.097204277855155 ], [ -55.111074999411699, -33.118236585849729 ], [ -55.161821254946972, -33.141697685699626 ], [ -55.178771124687671, -33.151412855818648 ], [ -55.233729010585364, -33.195492852513155 ], [ -55.247294074062268, -33.203657729020961 ], [ -55.258197800787855, -33.208050225637407 ], [ -55.265329149420722, -33.207585137644003 ], [ -55.271737026742358, -33.206034844932162 ], [ -55.288221807590332, -33.19849008604865 ], [ -55.294991421017244, -33.19673308686248 ], [ -55.303905606358626, -33.196319674813139 ], [ -55.325971442228251, -33.205414728207131 ], [ -55.348683234143948, -33.217972100432064 ], [ -55.403150193626516, -33.241588229912907 ], [ -55.411625129396214, -33.248926284120728 ], [ -55.431417202142143, -33.270423679209443 ], [ -55.62236161959305, -33.36111581814049 ], [ -55.645021734665306, -33.368815605755628 ], [ -55.652385627294848, -33.368970636285837 ], [ -55.689437629043312, -33.363441257208251 ], [ -55.698429327851215, -33.363131198845736 ], [ -55.710676641713633, -33.364474785982566 ], [ -55.717756314402379, -33.367265313043788 ], [ -55.722717250900416, -33.371244398510157 ], [ -55.726179572429317, -33.375430189551594 ], [ -55.732613288172729, -33.381476331667386 ], [ -55.742147590239085, -33.388504326613372 ], [ -55.768399217150147, -33.402818698923795 ], [ -55.829868334056357, -33.426331475617133 ], [ -55.863328823066752, -33.435219821637475 ], [ -55.870718553218637, -33.4360983207809 ], [ -55.885187954260687, -33.435374851268364 ], [ -55.892060919575783, -33.434082940075598 ], [ -55.89818457695668, -33.432222589001299 ], [ -55.914514329972349, -33.424574476430962 ], [ -55.92089636887232, -33.422972506875681 ], [ -55.928208583759101, -33.422352390150706 ], [ -55.935494961123538, -33.422507419781596 ], [ -55.987894863057477, -33.431189060226927 ], [ -56.021717088173091, -33.433669528925634 ], [ -56.031018846242773, -33.436718437505874 ], [ -56.036393194790094, -33.440594171084115 ], [ -56.038796149122959, -33.446020195575556 ], [ -56.04132829376573, -33.45749236398143 ], [ -56.044558072197276, -33.463538506996485 ], [ -56.050242479107112, -33.469222913906378 ], [ -56.071042243105012, -33.482193699079971 ], [ -56.080628221115489, -33.489480075545032 ], [ -56.088017951267432, -33.492012221087123 ], [ -56.095640225416048, -33.492632337812154 ], [ -56.144293585880291, -33.480229993419471 ], [ -56.172147183245897, -33.477594495989194 ], [ -56.228810390587057, -33.481315199936546 ], [ -56.235993415163989, -33.480281671162174 ], [ -56.242427130907345, -33.478421319188556 ], [ -56.247930670663891, -33.475940850489849 ], [ -56.252349005702058, -33.472788588222784 ], [ -56.255811327230958, -33.468809502756358 ], [ -56.258601854292124, -33.464417006139911 ], [ -56.266094937231571, -33.444211520445322 ], [ -56.268446213821676, -33.4395606423098 ], [ -56.271520961723013, -33.43532317442498 ], [ -56.275396695301254, -33.431757501007837 ], [ -56.280254279011785, -33.428966973946672 ], [ -56.286843024386087, -33.427468357178952 ], [ -56.294646165687993, -33.427571709966458 ], [ -56.341180792659429, -33.431964206582848 ], [ -56.348518845967988, -33.431292413014432 ], [ -56.355288459394899, -33.429742120302592 ], [ -56.367070685263911, -33.425349622786882 ], [ -56.382108527086871, -33.416926364759945 ], [ -56.386604377390086, -33.413722425649439 ], [ -56.395337693779538, -33.406281019553433 ], [ -56.401228807163704, -33.403180434129752 ], [ -56.411254034745923, -33.401475111786965 ], [ -56.416576708248499, -33.403955579586352 ], [ -56.41947058809717, -33.408761489151402 ], [ -56.419935676090574, -33.414652601636249 ], [ -56.419625616828739, -33.420802096539546 ], [ -56.416214973042543, -33.444366550076211 ], [ -56.415646532261633, -33.469429619481332 ], [ -56.418075324116899, -33.476354261639869 ], [ -56.423630540716886, -33.483123875066781 ], [ -56.436627163412879, -33.491857191456234 ], [ -56.4458514062174, -33.495371188929198 ], [ -56.453938768359478, -33.497076511271985 ], [ -56.532977870832042, -33.495526217660824 ], [ -56.552020637442467, -33.476715996845769 ], [ -56.558635220339113, -33.464933770077437 ], [ -56.559642909792444, -33.459352715955049 ], [ -56.561374070556894, -33.435219821637475 ], [ -56.562381760909545, -33.429638766615767 ], [ -56.56571489122922, -33.420388686288845 ], [ -56.568763800708837, -33.414755954423754 ], [ -56.574215663621999, -33.407676283533647 ], [ -56.580804408996244, -33.401320082156076 ], [ -56.585326096821916, -33.396049085496884 ], [ -56.647105272090641, -33.339101658214929 ], [ -56.66689734573589, -33.308509209732222 ], [ -56.670437180731312, -33.304736829840806 ], [ -56.681108364359545, -33.299155775718475 ], [ -56.736505499828922, -33.280965671628451 ], [ -56.769733445741906, -33.274144382257418 ], [ -56.808774989773951, -33.272594088646258 ], [ -56.817534146383764, -33.270113620846928 ], [ -56.82665503640078, -33.266031182592997 ], [ -56.838824835897469, -33.25647104300424 ], [ -56.844250861288231, -33.249701429577328 ], [ -56.847248093924406, -33.243138522624747 ], [ -56.850141974672397, -33.226033624152421 ], [ -56.854121060138823, -33.216060072514324 ], [ -56.859753791104595, -33.207430108013057 ], [ -56.867221034722945, -33.199885349129545 ], [ -56.871742723447937, -33.19673308686248 ], [ -56.88331824374194, -33.192702324552613 ], [ -56.94096330391335, -33.1812818338895 ], [ -56.974139573882212, -33.177871189204041 ], [ -57.028218959737217, -33.184330742469797 ], [ -57.039122687362124, -33.18205698024542 ], [ -57.079998744946124, -33.162419936231061 ], [ -57.12712765201951, -33.123094170459581 ], [ -57.12710181269847, -33.11715138113135 ], [ -57.132657030197777, -33.087179050272937 ], [ -57.130228238342511, -33.075293470717099 ], [ -57.151984015849621, -33.067852064621093 ], [ -57.161544155438435, -33.071727797300014 ], [ -57.171931118226496, -33.070952650944093 ], [ -57.179036628437643, -33.065216567190816 ], [ -57.178649054810023, -33.054209486778404 ], [ -57.173507250259377, -33.049765312419254 ], [ -57.156040614782512, -33.047543227038318 ], [ -57.148237474379926, -33.043667493460077 ], [ -57.135215013262268, -33.031936943535129 ], [ -57.118497686618923, -33.019844659303601 ], [ -57.100359260271659, -33.010284518815467 ], [ -57.083073492847404, -33.006408787035866 ], [ -57.064599168816585, -33.009664402090493 ], [ -57.02382646312077, -33.024237155919991 ], [ -57.004241095949794, -33.027492770974618 ], [ -56.981503464713114, -33.027492770974618 ], [ -56.969126959641471, -33.025477390269373 ], [ -56.969049445275687, -33.018501072166771 ], [ -56.983441331951894, -33.003308200712866 ], [ -56.985198330238745, -32.993593031493219 ], [ -56.968403490128935, -32.990130710863639 ], [ -56.946363490882391, -32.989045506145203 ], [ -56.932255825046298, -32.986565036547177 ], [ -56.933134325089043, -32.981914157512335 ], [ -56.937165085600213, -32.974111017109749 ], [ -56.937010056868644, -32.965687758183492 ], [ -56.925408698152864, -32.958608087293385 ], [ -56.915021735364803, -32.958918144756581 ], [ -56.906572638916145, -32.963827407109136 ], [ -56.899777187966833, -32.969563490862413 ], [ -56.894377000997792, -32.972250665136073 ], [ -56.877892219250498, -32.984756361416942 ], [ -56.868228725974916, -32.987340182903097 ], [ -56.863965419668375, -32.975971368184105 ], [ -56.868900518644011, -32.957316176100619 ], [ -56.869520637167682, -32.947290947619138 ], [ -56.863965419668375, -32.938144220079721 ], [ -56.846834682774386, -32.934113457769854 ], [ -56.828050300381051, -32.936903984831019 ], [ -56.815131192050842, -32.93349334104488 ], [ -56.815570440723263, -32.917628676022559 ], [ -56.815673794410088, -32.910910739439089 ], [ -56.804563361210171, -32.889103285088538 ], [ -56.795726691133893, -32.881196790999127 ], [ -56.782239142022775, -32.870499769848493 ], [ -56.764694993978765, -32.863936862895912 ], [ -56.735058559904587, -32.863006686909046 ], [ -56.715344000625123, -32.855513603969655 ], [ -56.704026861850195, -32.843266290107181 ], [ -56.685862596181835, -32.83804697029143 ], [ -56.666793992948385, -32.843266290107181 ], [ -56.636976690821598, -32.858149103198571 ], [ -56.618838263575014, -32.85427336962033 ], [ -56.599743821919844, -32.842026055757856 ], [ -56.582974820231755, -32.83556650159278 ], [ -56.558790249070739, -32.832000828175694 ], [ -56.538765632328079, -32.831535740182289 ], [ -56.521531541747265, -32.832000828175694 ], [ -56.496106737136188, -32.829055270584263 ], [ -56.470630255681726, -32.830760592927049 ], [ -56.450011358837116, -32.84094085103942 ], [ -56.428436449382616, -32.859389336648576 ], [ -56.406706509397907, -32.861094658991306 ], [ -56.396164516978843, -32.843266290107181 ], [ -56.389033169245351, -32.833396091256589 ], [ -56.361567144608046, -32.814792576016544 ], [ -56.329140184372022, -32.817118015084304 ], [ -56.295447149566314, -32.823164158099416 ], [ -56.257129075946068, -32.824559422079687 ], [ -56.224857144441671, -32.823009128468527 ], [ -56.21865597179567, -32.793605239290343 ], [ -56.20111182285234, -32.767611992999093 ], [ -56.182637498821521, -32.746424656272893 ], [ -56.169460008072917, -32.725960789059172 ], [ -56.1255350410093, -32.720276381250017 ], [ -56.083806321804275, -32.707253920132302 ], [ -56.048588832708447, -32.705393569057946 ], [ -56.013810594083623, -32.699967542767865 ], [ -55.986499599976526, -32.673199151020015 ], [ -55.958413458614189, -32.649686375226054 ], [ -55.944305792778096, -32.630979506299184 ], [ -55.927071703096601, -32.61454640049601 ], [ -55.90332638240659, -32.603590996926982 ], [ -55.88177730957517, -32.602660820940116 ], [ -55.857411872160185, -32.626018568901827 ], [ -55.830410936415603, -32.633770034259669 ], [ -55.808991054793353, -32.621057630605151 ], [ -55.792842169830294, -32.607931816699988 ], [ -55.787881232432937, -32.591188652534299 ], [ -55.782765266304011, -32.579303073877782 ], [ -55.772998420240867, -32.570156344539669 ], [ -55.773618536965898, -32.556255385177906 ], [ -55.781680059786936, -32.53780689866943 ], [ -55.779509650350064, -32.525817965426768 ], [ -55.768037481944248, -32.520495293722831 ], [ -55.748477953194993, -32.522200616065561 ], [ -55.727058071572742, -32.53780689866943 ], [ -55.710624965769568, -32.547728773464144 ], [ -55.692305671369638, -32.546488539114762 ], [ -55.676001755876314, -32.539822280273995 ], [ -55.66282426602703, -32.510883478189953 ], [ -55.650086025749488, -32.496827488297924 ], [ -55.634273036671289, -32.495277194686764 ], [ -55.612853155948358, -32.503132012832111 ], [ -55.590038011245213, -32.508247978961037 ], [ -55.564432338581526, -32.510573418928118 ], [ -55.54179806193099, -32.508713066954499 ], [ -55.52099829793309, -32.503132012832111 ], [ -55.507639940031197, -32.490006198926949 ], [ -55.503609177721387, -32.47326303476126 ], [ -55.498493210693084, -32.4585869281442 ], [ -55.49616777162538, -32.444685967883117 ], [ -55.487021044085907, -32.43414397546411 ], [ -55.471337246216933, -32.427322686093078 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-FS", "NAME_1": "Flores" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.12712765201951, -33.123094170459581 ], [ -57.079998744946124, -33.162419936231061 ], [ -57.039122687362124, -33.18205698024542 ], [ -57.028218959737217, -33.184330742469797 ], [ -56.974139573882212, -33.177871189204041 ], [ -56.94096330391335, -33.1812818338895 ], [ -56.88331824374194, -33.192702324552613 ], [ -56.871742723447937, -33.19673308686248 ], [ -56.867221034722945, -33.199885349129545 ], [ -56.859753791104595, -33.207430108013057 ], [ -56.854121060138823, -33.216060072514324 ], [ -56.850141974672397, -33.226033624152421 ], [ -56.847248093924406, -33.243138522624747 ], [ -56.844250861288231, -33.249701429577328 ], [ -56.838824835897469, -33.25647104300424 ], [ -56.82665503640078, -33.266031182592997 ], [ -56.817534146383764, -33.270113620846928 ], [ -56.808774989773951, -33.272594088646258 ], [ -56.769733445741906, -33.274144382257418 ], [ -56.736505499828922, -33.280965671628451 ], [ -56.681108364359545, -33.299155775718475 ], [ -56.670437180731312, -33.304736829840806 ], [ -56.66689734573589, -33.308509209732222 ], [ -56.647105272090641, -33.339101658214929 ], [ -56.585326096821916, -33.396049085496884 ], [ -56.580804408996244, -33.401320082156076 ], [ -56.574215663621999, -33.407676283533647 ], [ -56.568763800708837, -33.414755954423754 ], [ -56.56571489122922, -33.420388686288845 ], [ -56.562381760909545, -33.429638766615767 ], [ -56.561374070556894, -33.435219821637475 ], [ -56.559642909792444, -33.459352715955049 ], [ -56.558635220339113, -33.464933770077437 ], [ -56.552020637442467, -33.476715996845769 ], [ -56.532977870832042, -33.495526217660824 ], [ -56.517474941915054, -33.521881199158031 ], [ -56.460553351256124, -33.69608245154393 ], [ -56.445593023799006, -33.715151055676699 ], [ -56.42830725817339, -33.743418064192326 ], [ -56.424018114344506, -33.754011732555398 ], [ -56.42177018874321, -33.762951755419181 ], [ -56.427351243764861, -33.856124363048934 ], [ -56.428462286905017, -33.86258391721401 ], [ -56.430374314822757, -33.868320000967287 ], [ -56.432673916368117, -33.873590996727103 ], [ -56.435412766585898, -33.878345228549449 ], [ -56.43856502975234, -33.882737726065216 ], [ -56.442130703169425, -33.886716810632322 ], [ -56.450502285252242, -33.894054863940823 ], [ -56.462697923170595, -33.90242644602364 ], [ -56.572096931028511, -33.855969333417988 ], [ -56.60292192170931, -33.849716484827923 ], [ -56.64338456904261, -33.877570082193529 ], [ -56.663951789043836, -33.887646986619131 ], [ -56.686844448112765, -33.895243421446764 ], [ -56.755419074330803, -33.909609469701252 ], [ -56.759656542215623, -33.911366468887422 ], [ -56.762550422064294, -33.913020115286088 ], [ -56.779241909386599, -33.924957370786046 ], [ -56.820738084594893, -33.967073662719372 ], [ -56.828902961102756, -33.971569513022587 ], [ -56.84058183508364, -33.976530449520624 ], [ -56.865257330861141, -33.984591974140301 ], [ -56.879029099912998, -33.987434177145531 ], [ -56.890449592374807, -33.988364353132397 ], [ -57.034962734742408, -33.965058282014127 ], [ -57.077724981822428, -33.962991224465441 ], [ -57.085734828699401, -33.951880792164843 ], [ -57.103330655385435, -33.931778660157022 ], [ -57.106198696812385, -33.927437838585377 ], [ -57.108446620615041, -33.92268360766235 ], [ -57.112141486140672, -33.912451673605858 ], [ -57.116585658701183, -33.887336928256616 ], [ -57.118962774612328, -33.880412286098135 ], [ -57.121520758576139, -33.874676201445538 ], [ -57.125525681564966, -33.863049005207415 ], [ -57.128316210424771, -33.848321221746971 ], [ -57.130124884655686, -33.842636813937816 ], [ -57.141958788267459, -33.819072361300414 ], [ -57.183713344994885, -33.75907602274026 ], [ -57.18531531365079, -33.755510348423854 ], [ -57.186400519268545, -33.752254734268547 ], [ -57.186038784062646, -33.739697361144295 ], [ -57.170975103817966, -33.641667168904746 ], [ -57.169243943952836, -33.635931085151469 ], [ -57.167073533616701, -33.630660088492277 ], [ -57.164386359342984, -33.626164239088382 ], [ -57.162241787428513, -33.621410007266036 ], [ -57.160510626664063, -33.61608733466278 ], [ -57.160458949820679, -33.610092868491108 ], [ -57.163637051408784, -33.603581637482591 ], [ -57.168520474440356, -33.599809258490495 ], [ -57.174385749402802, -33.596915378641825 ], [ -57.202006801872415, -33.590765882839207 ], [ -57.207975429622365, -33.588698826189898 ], [ -57.217948981260463, -33.582962741537301 ], [ -57.226682297649916, -33.576296481797215 ], [ -57.24719784170702, -33.552628675472988 ], [ -57.251357795226056, -33.549218031686792 ], [ -57.255156012639873, -33.545497327739497 ], [ -57.258411627694443, -33.541363213541445 ], [ -57.26050452276553, -33.535317070526389 ], [ -57.261822272379959, -33.527617282911251 ], [ -57.262364874739148, -33.515835056142919 ], [ -57.26453528507534, -33.503019300600215 ], [ -57.265749681002944, -33.500332127225875 ], [ -57.26587887221217, -33.500177096695666 ], [ -57.26605974026478, -33.499763685545645 ], [ -57.282311978015343, -33.48193531666152 ], [ -57.285024989811404, -33.477594495989194 ], [ -57.287040371416026, -33.472685234535959 ], [ -57.298254157403449, -33.429793797146033 ], [ -57.300734626102098, -33.425246269999377 ], [ -57.303731858738274, -33.420957127069755 ], [ -57.307607591417195, -33.417236423122404 ], [ -57.312103440821147, -33.414032484911274 ], [ -57.337709112585458, -33.399769788544916 ], [ -57.341636522107819, -33.396049085496884 ], [ -57.344659593165659, -33.391914972198208 ], [ -57.346933356289355, -33.386592298695632 ], [ -57.347992722586071, -33.380081068586435 ], [ -57.347630988279491, -33.370986016991083 ], [ -57.336701423132183, -33.354914645494489 ], [ -57.231798264678162, -33.249856459208218 ], [ -57.218698290093982, -33.240347995563525 ], [ -57.147307298393116, -33.163815200211332 ], [ -57.140796068283919, -33.154616794929154 ], [ -57.12712765201951, -33.123094170459581 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-FD", "NAME_1": "Florida" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.258197800787855, -33.208050225637407 ], [ -55.247294074062268, -33.203657729020961 ], [ -55.233729010585364, -33.195492852513155 ], [ -55.178771124687671, -33.151412855818648 ], [ -55.161821254946972, -33.141697685699626 ], [ -55.111074999411699, -33.118236585849729 ], [ -55.101902431651865, -33.172651868488913 ], [ -55.100946418142655, -33.207223402438046 ], [ -55.091076219292063, -33.252440280694373 ], [ -55.09260067358224, -33.262207126757517 ], [ -55.096347215051935, -33.274867852669274 ], [ -55.107561001039358, -33.29884571645664 ], [ -55.114873215926195, -33.309077650513188 ], [ -55.121539475666282, -33.31584726304078 ], [ -55.13634477439183, -33.324270521967037 ], [ -55.140323858958936, -33.327939548171628 ], [ -55.143812018010237, -33.332125339213007 ], [ -55.146602545970723, -33.337396335872199 ], [ -55.148385382679237, -33.34375253724977 ], [ -55.146912604333238, -33.353984469507679 ], [ -55.144535488422036, -33.360650730147086 ], [ -55.124640061989282, -33.381838066873286 ], [ -55.11820634624587, -33.389537856287063 ], [ -55.112857835220893, -33.397961114314 ], [ -55.110816616093928, -33.403025404498806 ], [ -55.109628057688724, -33.408554782677072 ], [ -55.108620368235393, -33.426951593241427 ], [ -55.109886441006438, -33.439974053459821 ], [ -55.112935349586735, -33.447932223493297 ], [ -55.117922126305075, -33.4565105120505 ], [ -55.129833544282633, -33.468964531487927 ], [ -55.1361380679175, -33.474235528147119 ], [ -55.14151241736414, -33.477594495989194 ], [ -55.175773892051495, -33.487981458777313 ], [ -55.186160854839557, -33.492735690599659 ], [ -55.194532436922429, -33.497696628896279 ], [ -55.197271288039531, -33.49986703923247 ], [ -55.197684699189494, -33.500383803169996 ], [ -55.198459846444734, -33.50100391989497 ], [ -55.200707770247391, -33.50332935986205 ], [ -55.205642870122347, -33.510254002020588 ], [ -55.212283291440713, -33.522139580677106 ], [ -55.230111660324837, -33.563842461460411 ], [ -55.235150112987299, -33.570250338782103 ], [ -55.244787766941897, -33.578828626439986 ], [ -55.251609056312873, -33.583582859161595 ], [ -55.257861904902995, -33.587045179791232 ], [ -55.269101529312138, -33.591075942101043 ], [ -55.300753343192241, -33.59779387778525 ], [ -55.312199673176394, -33.601669609564851 ], [ -55.316979743420404, -33.604511813469401 ], [ -55.321553107190141, -33.610041191647667 ], [ -55.325428839869062, -33.617947685737079 ], [ -55.329046190129588, -33.633553969240268 ], [ -55.329407925335488, -33.642597344891556 ], [ -55.328193529407827, -33.649728691725727 ], [ -55.325971442228251, -33.654482923548073 ], [ -55.323310106376312, -33.658978773851345 ], [ -55.29819536012775, -33.692361748495898 ], [ -55.29553402427581, -33.69685759879917 ], [ -55.293466965827804, -33.701870213039911 ], [ -55.292097541168573, -33.707399591218177 ], [ -55.291606614753448, -33.713394056490529 ], [ -55.291735805962674, -33.719440199505584 ], [ -55.294629685811344, -33.745795180103471 ], [ -55.29801449207514, -33.757990818021824 ], [ -55.332095098709829, -33.82284474119183 ], [ -55.335944993866349, -33.832921644718112 ], [ -55.338632168140066, -33.865891209112021 ], [ -55.341836107250515, -33.873022555946193 ], [ -55.347391322951182, -33.880205579623805 ], [ -55.359845344187249, -33.889714044167818 ], [ -55.37974076972074, -33.90072112368091 ], [ -55.388706631006187, -33.907129001901922 ], [ -55.392582362785788, -33.910849704949896 ], [ -55.401005621712045, -33.923303725286701 ], [ -55.413485479571193, -33.950072117034551 ], [ -55.424053311311241, -33.962732842946366 ], [ -55.435680508448684, -33.973119805734427 ], [ -55.442527635342117, -33.980561211830434 ], [ -55.447488572739417, -33.987330825257402 ], [ -55.451286791052553, -34.000043227113224 ], [ -55.451235114209169, -34.000146579900729 ], [ -55.450821703059148, -34.007639661940857 ], [ -55.451131761421664, -34.013169041018443 ], [ -55.452294481405204, -34.019163507190115 ], [ -55.454180670901223, -34.024589531681556 ], [ -55.458599005939391, -34.030635674696612 ], [ -55.464981044839362, -34.036888523286734 ], [ -55.513350186262073, -34.071821790643128 ], [ -55.525209927396247, -34.082777195111476 ], [ -55.530119187950163, -34.089133395589727 ], [ -55.535545213340924, -34.097660007303489 ], [ -55.543968472267181, -34.114558201100124 ], [ -55.550634732007268, -34.132903333921718 ], [ -55.554975551780274, -34.140396416861165 ], [ -55.56202938514798, -34.148561292469651 ], [ -55.590012172823492, -34.173004246049118 ], [ -55.61910600363916, -34.207730807830501 ], [ -55.744240485310115, -34.22235523850344 ], [ -55.771861537779728, -34.230106702961962 ], [ -55.839816047272734, -34.264678236911095 ], [ -55.848368495609577, -34.267417088028196 ], [ -55.859737311227946, -34.270000908615032 ], [ -55.8823457512554, -34.272481378213058 ], [ -55.893921270650139, -34.272222995794607 ], [ -55.90216366242305, -34.270982760545962 ], [ -55.954976976406329, -34.249433688613863 ], [ -55.975621710773339, -34.244369398429001 ], [ -55.989031744619297, -34.243542576128959 ], [ -55.998643561051495, -34.244369398429001 ], [ -56.087966275323367, -34.293151951001732 ], [ -56.097500575591084, -34.299766533898435 ], [ -56.103624233871301, -34.30560597043916 ], [ -56.106363084988402, -34.310463555948331 ], [ -56.119178839631729, -34.342761325874505 ], [ -56.128015509708007, -34.356713962979029 ], [ -56.135560268591519, -34.364568780225 ], [ -56.145843878592132, -34.368496188848042 ], [ -56.195556607151673, -34.377642918186098 ], [ -56.212273932895698, -34.378573093273644 ], [ -56.2238494531897, -34.377487887655889 ], [ -56.268058641093432, -34.357127374128993 ], [ -56.279427455812424, -34.353871759074423 ], [ -56.289323493084737, -34.352476495094152 ], [ -56.303947922858356, -34.352011407100747 ], [ -56.333868577772648, -34.353768406286918 ], [ -56.350663417882402, -34.357334079704003 ], [ -56.363608363735011, -34.361778253163834 ], [ -56.373736945003998, -34.36689422019208 ], [ -56.383917202217106, -34.382242119478235 ], [ -56.40133215995121, -34.432988376812148 ], [ -56.408799405368256, -34.420172621269444 ], [ -56.413812017810358, -34.414126479153708 ], [ -56.468873257394932, -34.36477548580001 ], [ -56.471198697362013, -34.359917901190215 ], [ -56.471095343675188, -34.353613376656028 ], [ -56.466961228577816, -34.345086764942266 ], [ -56.46223283607651, -34.340022474757404 ], [ -56.456780972264028, -34.336870212490339 ], [ -56.437557339399689, -34.328240247989072 ], [ -56.433164841883922, -34.32508798572195 ], [ -56.429521654101052, -34.321160577098965 ], [ -56.426653611774782, -34.316509698064124 ], [ -56.424534878281975, -34.307001234419431 ], [ -56.420142380766265, -34.24090707779942 ], [ -56.421253424805684, -34.231243584523781 ], [ -56.426085170993815, -34.216309095488384 ], [ -56.444430304714786, -34.177810153815528 ], [ -56.446083950214131, -34.172590833999777 ], [ -56.44623897984502, -34.166544691884042 ], [ -56.44375851114637, -34.158948256157089 ], [ -56.440812953554939, -34.153212171504492 ], [ -56.419083015368869, -34.121327812728396 ], [ -56.416757575401789, -34.116108493811964 ], [ -56.415181444268228, -34.107685234885707 ], [ -56.414561326643877, -34.096729832215999 ], [ -56.41869544084193, -34.055440361683338 ], [ -56.449029506906186, -33.935034275211649 ], [ -56.462697923170595, -33.90242644602364 ], [ -56.450502285252242, -33.894054863940823 ], [ -56.442130703169425, -33.886716810632322 ], [ -56.43856502975234, -33.882737726065216 ], [ -56.435412766585898, -33.878345228549449 ], [ -56.432673916368117, -33.873590996727103 ], [ -56.430374314822757, -33.868320000967287 ], [ -56.428462286905017, -33.86258391721401 ], [ -56.427351243764861, -33.856124363048934 ], [ -56.42177018874321, -33.762951755419181 ], [ -56.424018114344506, -33.754011732555398 ], [ -56.42830725817339, -33.743418064192326 ], [ -56.445593023799006, -33.715151055676699 ], [ -56.460553351256124, -33.69608245154393 ], [ -56.517474941915054, -33.521881199158031 ], [ -56.532977870832042, -33.495526217660824 ], [ -56.453938768359478, -33.497076511271985 ], [ -56.4458514062174, -33.495371188929198 ], [ -56.436627163412879, -33.491857191456234 ], [ -56.423630540716886, -33.483123875066781 ], [ -56.418075324116899, -33.476354261639869 ], [ -56.415646532261633, -33.469429619481332 ], [ -56.416214973042543, -33.444366550076211 ], [ -56.419625616828739, -33.420802096539546 ], [ -56.419935676090574, -33.414652601636249 ], [ -56.41947058809717, -33.408761489151402 ], [ -56.416576708248499, -33.403955579586352 ], [ -56.411254034745923, -33.401475111786965 ], [ -56.401228807163704, -33.403180434129752 ], [ -56.395337693779538, -33.406281019553433 ], [ -56.386604377390086, -33.413722425649439 ], [ -56.382108527086871, -33.416926364759945 ], [ -56.367070685263911, -33.425349622786882 ], [ -56.355288459394899, -33.429742120302592 ], [ -56.348518845967988, -33.431292413014432 ], [ -56.341180792659429, -33.431964206582848 ], [ -56.294646165687993, -33.427571709966458 ], [ -56.286843024386087, -33.427468357178952 ], [ -56.280254279011785, -33.428966973946672 ], [ -56.275396695301254, -33.431757501007837 ], [ -56.271520961723013, -33.43532317442498 ], [ -56.268446213821676, -33.4395606423098 ], [ -56.266094937231571, -33.444211520445322 ], [ -56.258601854292124, -33.464417006139911 ], [ -56.255811327230958, -33.468809502756358 ], [ -56.252349005702058, -33.472788588222784 ], [ -56.247930670663891, -33.475940850489849 ], [ -56.242427130907345, -33.478421319188556 ], [ -56.235993415163989, -33.480281671162174 ], [ -56.228810390587057, -33.481315199936546 ], [ -56.172147183245897, -33.477594495989194 ], [ -56.144293585880291, -33.480229993419471 ], [ -56.095640225416048, -33.492632337812154 ], [ -56.088017951267432, -33.492012221087123 ], [ -56.080628221115489, -33.489480075545032 ], [ -56.071042243105012, -33.482193699079971 ], [ -56.050242479107112, -33.469222913906378 ], [ -56.044558072197276, -33.463538506996485 ], [ -56.04132829376573, -33.45749236398143 ], [ -56.038796149122959, -33.446020195575556 ], [ -56.036393194790094, -33.440594171084115 ], [ -56.031018846242773, -33.436718437505874 ], [ -56.021717088173091, -33.433669528925634 ], [ -55.987894863057477, -33.431189060226927 ], [ -55.935494961123538, -33.422507419781596 ], [ -55.928208583759101, -33.422352390150706 ], [ -55.92089636887232, -33.422972506875681 ], [ -55.914514329972349, -33.424574476430962 ], [ -55.89818457695668, -33.432222589001299 ], [ -55.892060919575783, -33.434082940075598 ], [ -55.885187954260687, -33.435374851268364 ], [ -55.870718553218637, -33.4360983207809 ], [ -55.863328823066752, -33.435219821637475 ], [ -55.829868334056357, -33.426331475617133 ], [ -55.768399217150147, -33.402818698923795 ], [ -55.742147590239085, -33.388504326613372 ], [ -55.732613288172729, -33.381476331667386 ], [ -55.726179572429317, -33.375430189551594 ], [ -55.722717250900416, -33.371244398510157 ], [ -55.717756314402379, -33.367265313043788 ], [ -55.710676641713633, -33.364474785982566 ], [ -55.698429327851215, -33.363131198845736 ], [ -55.689437629043312, -33.363441257208251 ], [ -55.652385627294848, -33.368970636285837 ], [ -55.645021734665306, -33.368815605755628 ], [ -55.62236161959305, -33.36111581814049 ], [ -55.431417202142143, -33.270423679209443 ], [ -55.411625129396214, -33.248926284120728 ], [ -55.403150193626516, -33.241588229912907 ], [ -55.348683234143948, -33.217972100432064 ], [ -55.325971442228251, -33.205414728207131 ], [ -55.303905606358626, -33.196319674813139 ], [ -55.294991421017244, -33.19673308686248 ], [ -55.288221807590332, -33.19849008604865 ], [ -55.271737026742358, -33.206034844932162 ], [ -55.265329149420722, -33.207585137644003 ], [ -55.258197800787855, -33.208050225637407 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "UY-LA", "NAME_1": "Lavalleja" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.61910600363916, -34.207730807830501 ], [ -55.590012172823492, -34.173004246049118 ], [ -55.56202938514798, -34.148561292469651 ], [ -55.554975551780274, -34.140396416861165 ], [ -55.550634732007268, -34.132903333921718 ], [ -55.543968472267181, -34.114558201100124 ], [ -55.535545213340924, -34.097660007303489 ], [ -55.530119187950163, -34.089133395589727 ], [ -55.525209927396247, -34.082777195111476 ], [ -55.513350186262073, -34.071821790643128 ], [ -55.464981044839362, -34.036888523286734 ], [ -55.458599005939391, -34.030635674696612 ], [ -55.454180670901223, -34.024589531681556 ], [ -55.452294481405204, -34.019163507190115 ], [ -55.451131761421664, -34.013169041018443 ], [ -55.450821703059148, -34.007639661940857 ], [ -55.451235114209169, -34.000146579900729 ], [ -55.451286791052553, -34.000043227113224 ], [ -55.447488572739417, -33.987330825257402 ], [ -55.442527635342117, -33.980561211830434 ], [ -55.435680508448684, -33.973119805734427 ], [ -55.424053311311241, -33.962732842946366 ], [ -55.413485479571193, -33.950072117034551 ], [ -55.401005621712045, -33.923303725286701 ], [ -55.392582362785788, -33.910849704949896 ], [ -55.388706631006187, -33.907129001901922 ], [ -55.37974076972074, -33.90072112368091 ], [ -55.359845344187249, -33.889714044167818 ], [ -55.347391322951182, -33.880205579623805 ], [ -55.341836107250515, -33.873022555946193 ], [ -55.338632168140066, -33.865891209112021 ], [ -55.335944993866349, -33.832921644718112 ], [ -55.332095098709829, -33.82284474119183 ], [ -55.29801449207514, -33.757990818021824 ], [ -55.294629685811344, -33.745795180103471 ], [ -55.291735805962674, -33.719440199505584 ], [ -55.291606614753448, -33.713394056490529 ], [ -55.292097541168573, -33.707399591218177 ], [ -55.293466965827804, -33.701870213039911 ], [ -55.29553402427581, -33.69685759879917 ], [ -55.29819536012775, -33.692361748495898 ], [ -55.323310106376312, -33.658978773851345 ], [ -55.325971442228251, -33.654482923548073 ], [ -55.328193529407827, -33.649728691725727 ], [ -55.329407925335488, -33.642597344891556 ], [ -55.329046190129588, -33.633553969240268 ], [ -55.325428839869062, -33.617947685737079 ], [ -55.321553107190141, -33.610041191647667 ], [ -55.316979743420404, -33.604511813469401 ], [ -55.312199673176394, -33.601669609564851 ], [ -55.300753343192241, -33.59779387778525 ], [ -55.269101529312138, -33.591075942101043 ], [ -55.257861904902995, -33.587045179791232 ], [ -55.251609056312873, -33.583582859161595 ], [ -55.244787766941897, -33.578828626439986 ], [ -55.235150112987299, -33.570250338782103 ], [ -55.230111660324837, -33.563842461460411 ], [ -55.212283291440713, -33.522139580677106 ], [ -55.205642870122347, -33.510254002020588 ], [ -55.200707770247391, -33.50332935986205 ], [ -55.198459846444734, -33.50100391989497 ], [ -55.197684699189494, -33.500383803169996 ], [ -55.197271288039531, -33.49986703923247 ], [ -55.194532436922429, -33.497696628896279 ], [ -55.186160854839557, -33.492735690599659 ], [ -55.175773892051495, -33.487981458777313 ], [ -55.14151241736414, -33.477594495989194 ], [ -55.1361380679175, -33.474235528147119 ], [ -55.129833544282633, -33.468964531487927 ], [ -55.117922126305075, -33.4565105120505 ], [ -55.112935349586735, -33.447932223493297 ], [ -55.109886441006438, -33.439974053459821 ], [ -55.108620368235393, -33.426951593241427 ], [ -55.109628057688724, -33.408554782677072 ], [ -55.110816616093928, -33.403025404498806 ], [ -55.112857835220893, -33.397961114314 ], [ -55.11820634624587, -33.389537856287063 ], [ -55.124640061989282, -33.381838066873286 ], [ -55.075754156629046, -33.357498467879964 ], [ -55.056323819088959, -33.350263766459648 ], [ -55.004233974618217, -33.342615654788631 ], [ -54.998937141336, -33.342305596426115 ], [ -54.995939906901185, -33.343235771513662 ], [ -54.986431444155812, -33.347731621816877 ], [ -54.966742723298012, -33.352589206426728 ], [ -54.961161669175681, -33.355017999181314 ], [ -54.95674333413757, -33.358273614235884 ], [ -54.950077074397484, -33.361890963597091 ], [ -54.941317918686991, -33.364991549920092 ], [ -54.923902960952887, -33.367265313043788 ], [ -54.91395524773651, -33.366800225949646 ], [ -54.906074592068762, -33.365146579550981 ], [ -54.861271124962457, -33.345922946686642 ], [ -54.835717129142211, -33.337706394234715 ], [ -54.825743578403433, -33.336982923822859 ], [ -54.818224657042265, -33.33817148222812 ], [ -54.802980108745032, -33.34297738999453 ], [ -54.790164354101648, -33.345561211480742 ], [ -54.782335375277341, -33.348248385754403 ], [ -54.776547613781361, -33.351659030439919 ], [ -54.749055751621654, -33.376567071113413 ], [ -54.71466508572513, -33.396049085496884 ], [ -54.684589402978531, -33.403128757286311 ], [ -54.603250698061288, -33.414032484911274 ], [ -54.59671363042969, -33.415737807254004 ], [ -54.590848354567925, -33.417856540746754 ], [ -54.577722540662705, -33.427571709966458 ], [ -54.572348192115385, -33.430052178665107 ], [ -54.504342006678257, -33.448035577180121 ], [ -54.492611456753309, -33.449172458741998 ], [ -54.483542242680358, -33.448707370748537 ], [ -54.443699713870672, -33.435013116062464 ], [ -54.438867966783221, -33.432377617732868 ], [ -54.43442379422271, -33.429122002678298 ], [ -54.430677252753014, -33.425349622786882 ], [ -54.427214932123434, -33.421267184532951 ], [ -54.422021449830027, -33.411655369000073 ], [ -54.419075894037292, -33.400338230225145 ], [ -54.4169054837011, -33.395118909510074 ], [ -54.413520677437305, -33.390933118468638 ], [ -54.409050665555753, -33.387574150626563 ], [ -54.403624641064312, -33.385042005983792 ], [ -54.39222998702428, -33.380907891785796 ], [ -54.387036505630249, -33.378530775874594 ], [ -54.35463538291657, -33.357188408618185 ], [ -54.346832240715344, -33.354294528769515 ], [ -54.31763505711217, -33.348351738541908 ], [ -54.306214566449057, -33.347938328291207 ], [ -54.296990321845897, -33.348816826535312 ], [ -54.291331753357724, -33.350987236871504 ], [ -54.286680874322883, -33.354087823194504 ], [ -54.283476935212377, -33.358118584604995 ], [ -54.273400030786775, -33.376670423900919 ], [ -54.25846554175132, -33.398064467101449 ], [ -54.242988451255997, -33.412275485725104 ], [ -54.234255133967224, -33.41852833341585 ], [ -54.212938605132535, -33.428708590628958 ], [ -54.176816779370881, -33.440955906290071 ], [ -54.150461798772994, -33.455270277701175 ], [ -54.125708787730389, -33.465347182126777 ], [ -54.130488857974399, -33.470049737105683 ], [ -54.136224941727676, -33.473718764209593 ], [ -54.143227098251998, -33.476715996845769 ], [ -54.167230801360404, -33.480074964687844 ], [ -54.190769415576085, -33.48038502394968 ], [ -54.208442755728584, -33.487154635577951 ], [ -54.229888474873235, -33.548959649268397 ], [ -54.267508918301928, -33.577381686515594 ], [ -54.347814094444914, -33.616552422656184 ], [ -54.369182298324404, -33.636396173144874 ], [ -54.378561570759871, -33.651950778905302 ], [ -54.383031581742102, -33.672621351694033 ], [ -54.373523118996729, -33.729568779875308 ], [ -54.375125087652691, -33.738147067533134 ], [ -54.379543422690801, -33.748999119213977 ], [ -54.401609260359066, -33.77933318527829 ], [ -54.408068813624823, -33.786206149694067 ], [ -54.411944546303744, -33.792355644597308 ], [ -54.41553605814255, -33.800572197948554 ], [ -54.418920864406346, -33.816695244489949 ], [ -54.420703701114917, -33.846667576247626 ], [ -54.423261685078671, -33.858294772485749 ], [ -54.427499152064229, -33.86449594513175 ], [ -54.457859055650886, -33.893693128734924 ], [ -54.482146978700086, -33.926042575504482 ], [ -54.523824021961047, -33.952242526471423 ], [ -54.535192836680039, -33.966091810788441 ], [ -54.53679480713464, -33.971982924172607 ], [ -54.537854173431356, -33.978235771863353 ], [ -54.546277432357613, -34.00076669662576 ], [ -54.559067348579276, -34.02365935569469 ], [ -54.567025518612809, -34.033477878601218 ], [ -54.57415686724562, -34.039834079978789 ], [ -54.597359584677065, -34.047378838862301 ], [ -54.646452195612312, -34.052649834622173 ], [ -54.656374071306345, -34.055543714470843 ], [ -54.668363002750368, -34.060401299980015 ], [ -54.689653693163393, -34.071925143430633 ], [ -54.699058804020581, -34.07921152079507 ], [ -54.705130784558037, -34.085619399016025 ], [ -54.707352870838292, -34.090993747563402 ], [ -54.711719529932338, -34.09905527128376 ], [ -54.74065833201638, -34.135538832251314 ], [ -54.755489468264329, -34.163082371254404 ], [ -54.776986864252365, -34.193933201256243 ], [ -54.779958259366197, -34.20178801850227 ], [ -54.779493171372735, -34.204940280769335 ], [ -54.776831834621476, -34.212278334077837 ], [ -54.775979173000451, -34.215533950031784 ], [ -54.77538489379782, -34.219719741073163 ], [ -54.775462409062925, -34.224990736833035 ], [ -54.776444260993856, -34.230623467798807 ], [ -54.778304612967531, -34.236152845977074 ], [ -54.781482712756997, -34.256565037246673 ], [ -54.785048387073402, -34.26648691204133 ], [ -54.789905971683254, -34.272688083788012 ], [ -54.796417201792394, -34.277649021185368 ], [ -54.805770636705518, -34.283230076207076 ], [ -54.811041633364709, -34.288449395123507 ], [ -54.814142218788334, -34.294443862194498 ], [ -54.831867234884953, -34.3441565889554 ], [ -54.83455440915867, -34.356248874985567 ], [ -54.83649227639745, -34.377642918186098 ], [ -54.83990292018359, -34.387668144868996 ], [ -54.844398769587542, -34.392887464684748 ], [ -54.850134854240139, -34.396143079739318 ], [ -54.867989060646607, -34.403791192309654 ], [ -54.883026903368886, -34.414281507885278 ], [ -54.89235449896097, -34.419190768439194 ], [ -54.900700242622065, -34.42182626676879 ], [ -54.919148729130541, -34.424306735467439 ], [ -54.950180427184932, -34.437742607735174 ], [ -54.962324388259901, -34.441049899633185 ], [ -54.983744268982832, -34.44301360349499 ], [ -54.99738684772484, -34.449369805771937 ], [ -55.01586117175566, -34.460686943647545 ], [ -55.070715704865904, -34.503888442097946 ], [ -55.083066372415146, -34.511639906556468 ], [ -55.089190029796043, -34.513293552055757 ], [ -55.102987637269621, -34.514998875297863 ], [ -55.134071011268134, -34.512983493693298 ], [ -55.148747117885193, -34.513293552055757 ], [ -55.155490891991064, -34.514223728042623 ], [ -55.167660692387017, -34.517634372728139 ], [ -55.281142136700225, -34.597009372884258 ], [ -55.288480190908103, -34.600936781507244 ], [ -55.312199673176394, -34.610290215521047 ], [ -55.33832210977755, -34.615716240911809 ], [ -55.473275112556394, -34.62191741265849 ], [ -55.473171759768888, -34.594063816192147 ], [ -55.47877865321226, -34.57949106146333 ], [ -55.495263434060234, -34.553497816970662 ], [ -55.536578742115239, -34.511743258444596 ], [ -55.542004766606681, -34.503991794885451 ], [ -55.544226853786256, -34.499857679788079 ], [ -55.545157029773122, -34.478050225437528 ], [ -55.544433560260586, -34.469213556260627 ], [ -55.532470466338964, -34.41955250364515 ], [ -55.531695319083724, -34.413144627222778 ], [ -55.533168098329043, -34.404721368296521 ], [ -55.536966314843539, -34.395419610226838 ], [ -55.578591682160379, -34.331030775949557 ], [ -55.591950039162953, -34.298319593974099 ], [ -55.61910600363916, -34.207730807830501 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/usa.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/usa.geojson new file mode 100644 index 000000000000..be324d8a7a7b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/usa.geojson @@ -0,0 +1,57 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "US-AK", "NAME_1": "Alaska" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.837573741338844, 26.979246512484281 ], [ -113.832997935500231, 26.976327994306541 ], [ -113.771856133241101, 26.959705129902897 ], [ -113.71470181892704, 26.944158925696577 ], [ -113.689082112749546, 26.901092517803718 ], [ -113.626564684827585, 26.867877550716365 ], [ -113.578960923246015, 26.842583726509289 ], [ -113.53339993212812, 26.818374252929516 ], [ -113.468188931105374, 26.783721175435733 ], [ -113.422492396159043, 26.759446333201133 ], [ -113.361611107215523, 26.727088849056635 ], [ -113.3254468602305, 26.707882000179417 ], [ -113.308085714548696, 26.670498820042425 ], [ -113.287248494515524, 26.625625161104068 ], [ -113.300099203013559, 26.59907395159513 ], [ -113.271294697520233, 26.594786536880797 ], [ -113.214937304012949, 26.624567726981699 ], [ -113.161961777089743, 26.64302475893578 ], [ -113.096550824887487, 26.665830729044039 ], [ -113.052436595909739, 26.681203898575795 ], [ -112.970350868901463, 26.681980632003864 ], [ -112.93114697946649, 26.726673565837672 ], [ -112.931012396941824, 26.78937364147167 ], [ -112.889537908055019, 26.788304671704331 ], [ -112.865086185930849, 26.796806442048176 ], [ -112.854288822237706, 26.815209640992393 ], [ -112.880432438957669, 26.840384263534759 ], [ -112.801799715010802, 26.852123704900556 ], [ -112.744917449657322, 26.860617784814426 ], [ -112.663698818629385, 26.883758288626851 ], [ -112.584370110769257, 26.906341236265668 ], [ -112.546540885693361, 26.888849353274189 ], [ -112.50906542039661, 26.871945788176234 ], [ -112.435652575799253, 26.831224961427552 ], [ -112.430623034591775, 26.821438889276898 ], [ -112.435587207144422, 26.802312789914485 ], [ -112.442750842671586, 26.783194380982042 ], [ -112.398111741847657, 26.729588238800417 ], [ -112.385326402004466, 26.723616619920271 ], [ -112.348635360565751, 26.716183819343769 ], [ -112.304821058357263, 26.698441997377902 ], [ -112.285485394777851, 26.683049601771202 ], [ -112.22205665090317, 26.658559427497131 ], [ -112.211366953229771, 26.648377298202465 ], [ -112.205362650022209, 26.631900551968464 ], [ -112.195026712127913, 26.617746315588668 ], [ -112.183169991704915, 26.607591102798942 ], [ -112.17174009014586, 26.593167701369818 ], [ -112.144273719469183, 26.576156470252151 ], [ -112.092013402534207, 26.557130346479486 ], [ -112.055803012969307, 26.543945104277284 ], [ -112.005051942918072, 26.525461155818277 ], [ -111.953666412393403, 26.487693454182235 ], [ -111.909029234176955, 26.454912996388792 ], [ -111.858178188535987, 26.422501679234429 ], [ -111.865693661234786, 26.396665679713706 ], [ -111.814146631680529, 26.356690824673159 ], [ -111.75994063596039, 26.305903225079518 ], [ -111.718285421969028, 26.260833460176656 ], [ -111.688686879580175, 26.235635766344345 ], [ -111.653228229545874, 26.199136985655151 ], [ -111.609819597518879, 26.154482503971252 ], [ -111.560460495294194, 26.103660297442687 ], [ -111.522660109330729, 26.071049029108828 ], [ -111.473374066190857, 26.025406327172384 ], [ -111.449047313553876, 25.998178359825129 ], [ -111.465587505835231, 25.979563674056436 ], [ -111.486088269556717, 25.956503919758802 ], [ -111.422747965626812, 25.945560437896035 ], [ -111.378824074791083, 25.937985364364877 ], [ -111.389811776626246, 25.912372387313606 ], [ -111.404290933672726, 25.878569102332705 ], [ -111.354670356828677, 25.865237741960872 ], [ -111.32094782136258, 25.856186105873391 ], [ -111.327892279635307, 25.838432748262562 ], [ -111.309371801633887, 25.818376106872464 ], [ -111.306287939211558, 25.785188056290036 ], [ -111.245823856094489, 25.787322150609725 ], [ -111.219082308443518, 25.788279609142343 ], [ -111.182954591000907, 25.773548590513997 ], [ -111.13532199030692, 25.754122564382318 ], [ -111.087583646200684, 25.735919316617611 ], [ -111.046814754264616, 25.720380802841273 ], [ -110.993368188505087, 25.711202274659101 ], [ -110.927380454054259, 25.697982425522 ], [ -110.894967214292393, 25.670977480644186 ], [ -110.834776141439647, 25.659391847878009 ], [ -110.812393144980348, 25.621574158447093 ], [ -110.742938949215642, 25.607685241901656 ], [ -110.702045087792385, 25.616944519598611 ], [ -110.687377515211381, 25.601525207486979 ], [ -110.675801495482673, 25.58377184987615 ], [ -110.672717633060344, 25.561381162986851 ], [ -110.676570538480746, 25.539567258346128 ], [ -110.693916303302615, 25.521302487141565 ], [ -110.706984266447591, 25.501622676820531 ], [ -110.715764814878241, 25.480477839588133 ], [ -110.719073622377522, 25.457764154639641 ], [ -110.716939528057821, 25.43345470547013 ], [ -110.709941236775222, 25.412236809152915 ], [ -110.688607984008314, 25.373000235390531 ], [ -110.681534711033407, 25.348952260840367 ], [ -110.680584942930778, 25.332963856910141 ], [ -110.727936842930461, 25.27664299294527 ], [ -110.744269393602323, 25.249784166237088 ], [ -110.742723617176182, 25.237756333747015 ], [ -110.777178666097953, 25.209774704261633 ], [ -110.840426684868092, 25.170653486948964 ], [ -110.869158131276606, 25.148082074955116 ], [ -110.883320058086383, 25.15551487553163 ], [ -110.965153923512787, 25.16135575710209 ], [ -110.994906274501261, 25.211332016332754 ], [ -111.010687036821992, 25.250107164296292 ], [ -111.034542750622634, 25.283875842342272 ], [ -111.033856379746851, 25.291547046248184 ], [ -111.012169367200812, 25.314080006092126 ], [ -110.930427786934175, 25.33263701363596 ], [ -110.929668356973565, 25.340000600342634 ], [ -110.960062858865442, 25.344918630315398 ], [ -110.967378380384744, 25.352985891365329 ], [ -110.975726342128979, 25.389519278989439 ], [ -110.973482659182054, 25.421588372009651 ], [ -110.975670586511612, 25.442833184831791 ], [ -110.98929033800772, 25.486284114223686 ], [ -111.009746881756826, 25.512873775882539 ], [ -111.06247823752814, 25.564745726103485 ], [ -111.066919460842087, 25.577823302285946 ], [ -111.043696284907369, 25.594226989435136 ], [ -111.029261347833284, 25.609527099882065 ], [ -111.118447264321389, 25.582922057363255 ], [ -111.240134860516136, 25.554978880027779 ], [ -111.292262517533942, 25.535479794811295 ], [ -111.303204076789228, 25.527666317950732 ], [ -111.306947393582419, 25.521067929027154 ], [ -111.297461248201017, 25.502680110942901 ], [ -111.298945501187319, 25.496773860717589 ], [ -111.309552526738429, 25.485907283154631 ], [ -111.322086004999747, 25.455195551026037 ], [ -111.348546851956414, 25.422638115702039 ], [ -111.36198587834798, 25.415947441618684 ], [ -111.409445444367407, 25.428117547063401 ], [ -111.42219617727568, 25.438538079687476 ], [ -111.445990367636483, 25.481058467051689 ], [ -111.440428264152814, 25.492378779983532 ], [ -111.423082499330974, 25.501922603589787 ], [ -111.399534402729557, 25.522532955938509 ], [ -111.369799355208542, 25.554217527459677 ], [ -111.313134344502018, 25.634724793714376 ], [ -111.276101078929159, 25.635120850858392 ], [ -111.210763185811714, 25.651074647853704 ], [ -111.313278540064161, 25.659068849818809 ], [ -111.328561347043646, 25.663263979373372 ], [ -111.342344520176852, 25.674242068171061 ], [ -111.354606910781342, 25.691987735351915 ], [ -111.375469124711941, 25.711717533467823 ], [ -111.414438456032485, 25.718635075235618 ], [ -111.431501597552526, 25.725917912427494 ], [ -111.457249157128473, 25.749881292247874 ], [ -111.47453916633296, 25.760644049006093 ], [ -111.483998395209426, 25.773956183302975 ], [ -111.485626843757871, 25.789779242988608 ], [ -111.492971204389605, 25.797758064093756 ], [ -111.519847334565227, 25.800634284906607 ], [ -111.534370711584089, 25.806075264118064 ], [ -111.538287063051854, 25.846934518606414 ], [ -111.591624040184143, 25.857443491175271 ], [ -111.613472551759799, 25.86648743683277 ], [ -111.64856206115499, 25.891996593079305 ], [ -111.658246235108408, 25.9044166374984 ], [ -111.661376240110613, 25.914760265822661 ], [ -111.652784107214487, 25.942938001272559 ], [ -111.656402454520489, 25.948221326669419 ], [ -111.687485249895659, 25.945310498921657 ], [ -111.88083996308211, 25.98895368906307 ], [ -111.87062130424502, 26.046593461769675 ], [ -111.906424101020946, 26.122647969065447 ], [ -111.944841643990372, 26.153498128933698 ], [ -111.937226195701811, 26.165479818843892 ], [ -111.928978209547324, 26.171828268793092 ], [ -111.911768949857645, 26.171970541747744 ], [ -111.837613978767152, 26.149579854858445 ], [ -111.767781029325889, 26.122994038414589 ], [ -111.758764000173315, 26.126862324694965 ], [ -111.870296383578335, 26.183160117369901 ], [ -111.898204953978905, 26.199986778168036 ], [ -111.905112882709204, 26.220227989877678 ], [ -111.905547392003129, 26.231044579645769 ], [ -111.896684171450175, 26.236731652616619 ], [ -111.792007806373107, 26.231686730549171 ], [ -111.785803551986049, 26.235889550533706 ], [ -111.891883420534626, 26.252323999402819 ], [ -111.913568510473169, 26.252250940318007 ], [ -111.936801299445364, 26.228637475061753 ], [ -111.947833221252921, 26.223038842035685 ], [ -111.970604584426269, 26.224180870887842 ], [ -111.978237336182275, 26.227806908623823 ], [ -112.005269197565028, 26.256419153367634 ], [ -112.030861025933859, 26.276333521803089 ], [ -112.078674351732388, 26.303949855864388 ], [ -112.087645238305072, 26.323629666185418 ], [ -112.089960057729314, 26.352568754203418 ], [ -112.083628911247558, 26.379935149290333 ], [ -112.044561526944761, 26.442442964174823 ], [ -112.028773074194049, 26.453255708727916 ], [ -112.024649081116806, 26.460057894045992 ], [ -112.036694217074341, 26.459027376428558 ], [ -112.04814334470835, 26.453094209698321 ], [ -112.080446995842991, 26.424066681735539 ], [ -112.113715795940209, 26.376459074938985 ], [ -112.140882239847627, 26.36022842246436 ], [ -112.157966530050118, 26.36416207739958 ], [ -112.183802529570841, 26.383549651381344 ], [ -112.237700908091739, 26.407216949647456 ], [ -112.300054914376602, 26.413338531912228 ], [ -112.339439528916131, 26.437540315062016 ], [ -112.397669542123751, 26.504893100834444 ], [ -112.405463792909359, 26.53845413727095 ], [ -112.412935045635777, 26.546667516490508 ], [ -112.444550403287124, 26.5575648557734 ], [ -112.46393989987638, 26.57369553265827 ], [ -112.493872975969396, 26.655502481579731 ], [ -112.533401786071053, 26.712369366073254 ], [ -112.543249381661553, 26.742412030793513 ], [ -112.539923270694828, 26.772216292184364 ], [ -112.545075858782013, 26.775492415356208 ], [ -112.558678306810677, 26.752267316813992 ], [ -112.562248588929293, 26.740151044379136 ], [ -112.587227105507139, 26.736732648252641 ], [ -112.563725151485627, 26.713219158586138 ], [ -112.557845817765241, 26.701460491145397 ], [ -112.56960256259849, 26.702437175752966 ], [ -112.59360247196129, 26.699499431500271 ], [ -112.552943168652433, 26.6593361609252 ], [ -112.534713004382809, 26.597055213725149 ], [ -112.507746511654886, 26.550908788624966 ], [ -112.490273854738362, 26.513502537198029 ], [ -112.482387318792988, 26.485109469708661 ], [ -112.470967030271396, 26.45795840666122 ], [ -112.439505481219669, 26.398003814530377 ], [ -112.435191150000406, 26.386064421985083 ], [ -112.438961383298519, 26.376316801984341 ], [ -112.449379993315105, 26.364738859648135 ], [ -112.46732945689044, 26.360382231063987 ], [ -112.523681082575251, 26.368268767009354 ], [ -112.544895133677471, 26.383088225582494 ], [ -112.575272332101889, 26.410339264219687 ], [ -112.617919611560779, 26.422909272023418 ], [ -112.723501524768096, 26.416668488093944 ], [ -112.731930236027125, 26.418764130263728 ], [ -112.731514952808169, 26.441031770273327 ], [ -112.719396757765821, 26.480660555964732 ], [ -112.729136687336592, 26.496648959894952 ], [ -112.783713746303306, 26.554888586140059 ], [ -112.78288125725787, 26.566262732081757 ], [ -112.707024778534091, 26.592979285835298 ], [ -112.74388500943239, 26.595001868920257 ], [ -112.773602753485946, 26.58458518151118 ], [ -112.785071107194923, 26.59131430774444 ], [ -112.803012880340276, 26.62864365487156 ], [ -112.814586977461488, 26.642536416631994 ], [ -112.820302889544763, 26.645520303464568 ], [ -112.823611697044043, 26.61007126646777 ], [ -112.811024385772839, 26.591402747689209 ], [ -112.809234438194807, 26.58060538399608 ], [ -112.811258943887267, 26.565559057738511 ], [ -112.819182009375055, 26.554777074905338 ], [ -112.832999789443178, 26.548259435496554 ], [ -112.846836795586256, 26.546602147835678 ], [ -112.872445927422547, 26.554108007497007 ], [ -112.900879369669298, 26.568243017801834 ], [ -112.925694464610061, 26.574910620595247 ], [ -112.93495374230703, 26.580570777061162 ], [ -112.946700874102788, 26.596178504707328 ], [ -112.965965401204869, 26.608006386017898 ], [ -113.05863123725932, 26.623029640985528 ], [ -113.113940809681708, 26.640763772521403 ], [ -113.118535841595275, 26.636095681523017 ], [ -113.101280439325706, 26.617123390760227 ], [ -113.099617383842343, 26.605910743848113 ], [ -113.113560133397655, 26.602492347721629 ], [ -113.13844828742323, 26.58449289635141 ], [ -113.131232741493704, 26.582016577897562 ], [ -113.104862257089309, 26.587930518552852 ], [ -113.075469433702438, 26.587226844209606 ], [ -113.026835154503431, 26.576264136271874 ], [ -112.982667092515811, 26.561940710432516 ], [ -112.96666138511813, 26.553911901532491 ], [ -112.960059150979561, 26.542026341997058 ], [ -112.954525886608323, 26.537777379432633 ], [ -112.911332586620802, 26.523923069822104 ], [ -112.909252325310973, 26.516613316125291 ], [ -112.937107062701671, 26.494876315784367 ], [ -112.879753758511868, 26.497264194293422 ], [ -112.846402286292331, 26.489485324367777 ], [ -112.803808839843299, 26.455897371426346 ], [ -112.789312379329374, 26.437140412703009 ], [ -112.787385926619152, 26.413150116377693 ], [ -112.796229921097165, 26.40615951552509 ], [ -112.81315848009254, 26.401329925497109 ], [ -112.929628119545271, 26.393481841701632 ], [ -112.971706307185585, 26.364515837178693 ], [ -112.980388802633982, 26.364089018314758 ], [ -113.012411753074304, 26.371956328185185 ], [ -113.070541790692189, 26.39503530855777 ], [ -113.142970260251985, 26.417010712228091 ], [ -113.308193380568412, 26.482106356801136 ], [ -113.312715353397181, 26.485178683578489 ], [ -113.315410849105461, 26.497752536597211 ], [ -113.326767691579704, 26.504170200416247 ], [ -113.349177604543968, 26.50966885785256 ], [ -113.380287316424059, 26.52616483016152 ], [ -113.420085291575049, 26.553638891268164 ], [ -113.444694667513815, 26.575099036129782 ], [ -113.454100063380423, 26.590545264746343 ], [ -113.477213650687915, 26.608206337197412 ], [ -113.552038650490502, 26.645085794170654 ], [ -113.591159867803157, 26.659247720980417 ], [ -113.625760073590826, 26.667222696870581 ], [ -113.655801777007341, 26.668976114906222 ], [ -113.663904606295944, 26.67389799009397 ], [ -113.650032031914193, 26.681980632003864 ], [ -113.648006564917978, 26.686756389021983 ], [ -113.714267309633129, 26.694335307768128 ], [ -113.777308648097545, 26.711608013505153 ], [ -113.937132125263645, 26.760173078834324 ], [ -114.019680239374537, 26.790546432043758 ], [ -114.067854054078424, 26.805081344707588 ], [ -114.088437489922214, 26.813248581347271 ], [ -114.097480474275969, 26.819885422420761 ], [ -114.085914067584753, 26.826822190263499 ], [ -114.053728656811074, 26.834074265735463 ], [ -114.03186188046422, 26.842303025814989 ], [ -113.997361650266299, 26.873033984018534 ], [ -113.994747865376553, 26.882908496113963 ], [ -114.013268343377973, 26.905264576068348 ], [ -114.021552859074873, 26.925601918152744 ], [ -114.02119044756202, 26.936879933719684 ], [ -114.016994356703719, 26.948019521546968 ], [ -114.011731218685554, 26.95535619174872 ], [ -113.997099214343223, 26.962435232546106 ], [ -113.986844025963734, 26.9660151277022 ], [ -113.974200959075176, 26.963592642258227 ], [ -113.933632979622359, 26.935649464922747 ], [ -113.927917067539084, 26.925467335628085 ], [ -113.929798338973143, 26.887249743838161 ], [ -113.918141569729656, 26.842522203069443 ], [ -113.914479002451259, 26.845813707101254 ], [ -113.910752989125541, 26.860606249169447 ], [ -113.908347807149028, 26.88885704370416 ], [ -113.90378930477786, 26.902422962190414 ], [ -113.895072202394545, 26.915646656542513 ], [ -113.880394055472323, 26.922644947825106 ], [ -113.834698481829761, 26.918576710365226 ], [ -113.813618051948453, 26.92094536279933 ], [ -113.902668424608152, 26.941167348434018 ], [ -113.958664367906337, 26.979038870874795 ], [ -113.968793625494897, 26.982980216239987 ], [ -113.999414033767451, 26.984683646480754 ], [ -114.031870532197956, 26.96939891689378 ], [ -114.115359762677741, 26.919441883738067 ], [ -114.13870021766968, 26.910678638774876 ], [ -114.243648631707302, 26.8830161621337 ], [ -114.314738966450449, 26.877444445612561 ], [ -114.394727128681438, 26.881804919411707 ], [ -114.462896061335584, 26.890795032059344 ], [ -114.633961024526229, 26.93451128128558 ], [ -114.660692959139723, 26.944674184505296 ], [ -114.620911326152452, 26.971694510243065 ], [ -114.619274225870271, 26.980142447577055 ], [ -114.633138148518285, 27.007678032123543 ], [ -114.644550746609895, 27.01554534199397 ], [ -114.660846767739343, 27.019878899288187 ], [ -114.665386044035557, 27.016787346435876 ], [ -114.66554946567264, 27.008620109796198 ], [ -114.661189953177228, 26.993489188808844 ], [ -114.674267529359696, 26.985494986843733 ], [ -114.703359464673568, 26.976870169620188 ], [ -114.752347503651691, 26.968149222021893 ], [ -114.9042315731663, 26.990397635956537 ], [ -115.0598041651605, 27.008808525330728 ], [ -115.198764467092275, 27.01262682381623 ], [ -115.394933877651724, 26.997957328627727 ], [ -115.499566022756397, 26.983207083924427 ], [ -115.56061746246327, 26.981768973518008 ], [ -115.619317553203473, 26.984429862291378 ], [ -115.624120226726518, 26.99473119325075 ], [ -115.597296968256998, 27.00075279992577 ], [ -115.598780259939559, 27.008212517007209 ], [ -115.632711398318889, 27.031452996409392 ], [ -115.684213246597011, 27.045545709349327 ], [ -115.75328676607765, 27.050525262761944 ], [ -115.792824227913044, 27.057319757650038 ], [ -115.802843896874364, 27.065929194013613 ], [ -115.82727927683483, 27.074138728018198 ], [ -115.866139019528134, 27.081971430953708 ], [ -115.883257916665542, 27.096006465668783 ], [ -115.869656429940633, 27.139415097695782 ], [ -115.856345256947506, 27.16545873882599 ], [ -115.843086955660496, 27.183312072026581 ], [ -115.809690302164825, 27.212881775303011 ], [ -115.821337458370863, 27.210693847973445 ], [ -115.869873684587603, 27.189006835427413 ], [ -115.912197004683549, 27.166616148538111 ], [ -115.951399932814766, 27.137480954555606 ], [ -115.97474038780669, 27.124076535098947 ], [ -116.004692689974675, 27.111741085409637 ], [ -116.051410129500937, 27.114690365307304 ], [ -116.114894628993, 27.132939755651897 ], [ -116.169245781579036, 27.142345151518498 ], [ -116.214498194193936, 27.142921933767063 ], [ -116.232404399100631, 27.146051938769276 ], [ -116.201511941867508, 27.162328733823777 ], [ -116.183733590359225, 27.175387083931295 ], [ -116.159370308179845, 27.196385802994051 ], [ -116.154016807609409, 27.206587158363675 ], [ -116.319953215306569, 27.209936340620331 ], [ -116.326039229332679, 27.220995178932817 ], [ -116.326274748750848, 27.229135499067574 ], [ -116.33160998455007, 27.235853089655855 ], [ -116.355656997796501, 27.240863404788392 ], [ -116.389307435481527, 27.237037415872908 ], [ -116.443838351868351, 27.223971375335417 ], [ -116.467459507554594, 27.233899720440711 ], [ -116.459031757599305, 27.23948681782182 ], [ -116.441225528282359, 27.243574281356651 ], [ -116.404988222212523, 27.262496584324566 ], [ -116.453967609456896, 27.272298037335183 ], [ -116.479035527283287, 27.283529910322237 ], [ -116.491244084877906, 27.292754581084282 ], [ -116.490411595832484, 27.326077214191383 ], [ -116.477480137819654, 27.347429693033256 ], [ -116.367503143878281, 27.368120794896779 ], [ -116.402329256046627, 27.376241888956578 ], [ -116.47174692226892, 27.373438727228553 ], [ -116.518355734471697, 27.355831487787356 ], [ -116.573701836436513, 27.330410771485603 ], [ -116.610851419762838, 27.320924626104201 ], [ -116.629806407058169, 27.327353825568206 ], [ -116.654875286188314, 27.329580205047662 ], [ -116.686056134545737, 27.327588383682627 ], [ -116.707009672332362, 27.321097660778776 ], [ -116.717753203015619, 27.310061893756227 ], [ -116.730170363523484, 27.302621402749743 ], [ -116.744277496019635, 27.298768497329331 ], [ -116.754487503122988, 27.300006656556249 ], [ -116.769490570711895, 27.311292362553161 ], [ -116.800943468029885, 27.318309879910707 ], [ -116.816334902332841, 27.326919316274292 ], [ -116.825198122885809, 27.321493717922785 ], [ -116.835941653569066, 27.305251529803201 ], [ -116.847282153879604, 27.297022769723664 ], [ -116.900456670678565, 27.288574832389685 ], [ -116.929685111124599, 27.290147525320776 ], [ -116.964556404569095, 27.310588688209918 ], [ -116.969584023169091, 27.317694645512233 ], [ -116.957701347544884, 27.335367253608275 ], [ -116.880941243298366, 27.405327095144209 ], [ -116.888619176330522, 27.404927192785209 ], [ -116.913479452547421, 27.393929877912566 ], [ -116.963019279876661, 27.365967474502135 ], [ -116.985085046099272, 27.357631048402876 ], [ -117.023067118471005, 27.356581304710488 ], [ -117.04082816651183, 27.359584417618017 ], [ -117.062296963107173, 27.357323431203639 ], [ -117.087446591752098, 27.349836797617272 ], [ -117.103869504976231, 27.341623418397702 ], [ -117.111556089742109, 27.332706364834891 ], [ -117.106338133000094, 27.331187504913672 ], [ -117.068374325399546, 27.34138116985331 ], [ -117.04685073449059, 27.344111272496519 ], [ -117.04082816651183, 27.33916632601882 ], [ -117.070391140662025, 27.30758557530239 ], [ -117.088341565541114, 27.277435244562398 ], [ -117.1054518109448, 27.269856325816257 ], [ -117.13266343612834, 27.271121401548108 ], [ -117.162443664925505, 27.268137514715534 ], [ -117.162877212915674, 27.259708803456508 ], [ -117.107333082378858, 27.235599305466486 ], [ -117.087238950142606, 27.232207825844927 ], [ -117.061555797917748, 27.223590699051368 ], [ -117.057649059487474, 27.215054321772605 ], [ -117.06728036173476, 27.191956115325066 ], [ -117.07454205024419, 27.182858336657702 ], [ -117.086244000763827, 27.178136412649447 ], [ -117.131514678149955, 27.17891699129251 ], [ -117.146147643796041, 27.176529112783449 ], [ -117.176614243469004, 27.162021116624544 ], [ -117.19183456570488, 27.149993284134467 ], [ -117.186290726992425, 27.148947385657067 ], [ -117.159992340369115, 27.158875730762372 ], [ -117.12173052860679, 27.164193663094139 ], [ -117.071521633869224, 27.164916563512342 ], [ -117.034108653316054, 27.170180662834248 ], [ -117.009510813022246, 27.180001341919819 ], [ -116.985536858860641, 27.177217406266735 ], [ -116.962196403868717, 27.161859617594946 ], [ -116.955223106483544, 27.148405210343419 ], [ -116.964628502350152, 27.136846494082178 ], [ -116.983891106844737, 27.128598507927702 ], [ -117.013010919967286, 27.123668942309962 ], [ -117.031387202406563, 27.116263058238392 ], [ -117.039037257630028, 27.106415462647888 ], [ -117.043341975811813, 27.091792110039272 ], [ -117.044318660419378, 27.072385309982558 ], [ -117.036957957623969, 27.037413079644566 ], [ -117.04260946235614, 27.032683465206325 ], [ -117.05354333118143, 27.030080254657804 ], [ -117.069767254529836, 27.029611138428972 ], [ -117.084380994100968, 27.021397759209414 ], [ -117.118538038860976, 26.974889883900119 ], [ -117.130574523084789, 26.969833426187702 ], [ -117.144917174999108, 26.974824515245281 ], [ -117.157632339668723, 26.974282339931634 ], [ -117.168719055789893, 26.968222281106705 ], [ -117.193045808426859, 26.963592642258227 ], [ -117.230594332808451, 26.96040880424615 ], [ -117.262752827077179, 26.961620046968132 ], [ -117.319282293955297, 26.971686819813094 ], [ -117.342334357822949, 26.978777396255452 ], [ -117.360348228749373, 26.990424552461473 ], [ -117.411100260104362, 26.978089102772163 ], [ -117.424520060420974, 26.983468558543777 ], [ -117.456136379376062, 27.015699150593584 ], [ -117.462990475096518, 27.013784233528348 ], [ -117.469067837388891, 26.97905809694975 ], [ -117.478690487902441, 26.966884146290035 ], [ -117.509998228354561, 26.941709523747665 ], [ -117.527108473758233, 26.898354724730538 ], [ -117.532299513995326, 26.89708964899868 ], [ -117.538159621640744, 26.90332658771316 ], [ -117.557422226135316, 26.94205174788182 ], [ -117.567640884972406, 26.950553518225661 ], [ -117.595964738591931, 26.928232045206201 ], [ -117.599075517519196, 26.920149403296307 ], [ -117.591651368676409, 26.891310290868056 ], [ -117.598243989777501, 26.886976733573846 ], [ -117.655542499653706, 26.90249602127523 ], [ -117.669650593453596, 26.903238147768391 ], [ -117.673375645475573, 26.900634937219856 ], [ -117.653841953324189, 26.878259631190531 ], [ -117.656076023233624, 26.870211596215555 ], [ -117.737113929157005, 26.826983689293105 ], [ -117.758256843781908, 26.828529465719257 ], [ -117.77156897807879, 26.832836106508545 ], [ -117.786147149411264, 26.832155503455233 ], [ -117.837657649423107, 26.816040207430326 ], [ -117.851892635317682, 26.816747726988567 ], [ -117.871335964916824, 26.826295395809815 ], [ -117.880378949270565, 26.825880112590845 ], [ -117.885198926261069, 26.815967148345511 ], [ -117.885804547622058, 26.796560348288793 ], [ -117.904904691783287, 26.778130232839651 ], [ -117.966263748689386, 26.748341352308756 ], [ -117.982551118085127, 26.734633160867865 ], [ -117.99486830300323, 26.715876202144536 ], [ -118.004056444222869, 26.714088177173977 ], [ -118.040048617837073, 26.726131390524017 ], [ -118.081756703534552, 26.733964093459534 ], [ -118.087526448627699, 26.730076581104203 ], [ -118.074847813500483, 26.718625530862688 ], [ -118.077542347905037, 26.711608013505153 ], [ -118.095592748373889, 26.708985576881677 ], [ -118.118418905860835, 26.709996868424156 ], [ -118.14601889775841, 26.714645733347588 ], [ -118.184743096623322, 26.70938547924068 ], [ -118.234571315076863, 26.694246867823345 ], [ -118.276162121717135, 26.694677531902272 ], [ -118.334139312039127, 26.719609905900242 ], [ -118.350119064235628, 26.721467144740615 ], [ -118.355210128882959, 26.728484662098161 ], [ -118.343887893343634, 26.74864896950799 ], [ -118.327411147109615, 26.763914473020016 ], [ -118.315274687296068, 26.770916609517592 ], [ -118.260200634291834, 26.790457992098979 ], [ -118.197241006645982, 26.797637008486117 ], [ -118.157648750496975, 26.809403366356843 ], [ -118.109538381840437, 26.833658982516493 ], [ -118.084089787729994, 26.851881456356153 ], [ -118.034061618096956, 26.898823840959366 ], [ -118.0378606905075, 26.902449878695343 ], [ -118.049092563494568, 26.904991565804018 ], [ -118.159077247865923, 26.86047935707477 ], [ -118.175329049022992, 26.856338060530064 ], [ -118.197204477103583, 26.856645677729304 ], [ -118.285133008289804, 26.873703051426869 ], [ -118.303716932338574, 26.881008959908684 ], [ -118.316413832236975, 26.902422962190414 ], [ -118.292006330085201, 26.951095693539322 ], [ -118.274869168176593, 26.974609183205821 ], [ -118.23194887845338, 27.010908012715511 ], [ -118.175807778289311, 27.049621637239191 ], [ -118.156382713461397, 27.074753962416658 ], [ -118.127227332100176, 27.141945249159491 ], [ -118.128926917125952, 27.172441649248618 ], [ -118.142058326318278, 27.209644104281061 ], [ -118.142555320355797, 27.231731019186114 ], [ -118.130418860542221, 27.238710084393752 ], [ -118.001614732703942, 27.273113222913157 ], [ -117.940607512969478, 27.298876163349057 ], [ -117.822229685577739, 27.336939946539353 ], [ -117.789990441794203, 27.336613103265172 ], [ -117.766314491794361, 27.323520146222748 ], [ -117.738768332906631, 27.313030399728845 ], [ -117.707360616864776, 27.305178470718374 ], [ -117.666936832974102, 27.305993656296351 ], [ -117.617488329500873, 27.315487492107728 ], [ -117.539154571019509, 27.31188837087668 ], [ -117.378281350161018, 27.286840640428998 ], [ -117.344070472391124, 27.285437136957498 ], [ -117.34275060234566, 27.288628665399557 ], [ -117.367574349020146, 27.306182071830882 ], [ -117.478481884989222, 27.316356510695563 ], [ -117.525163756276811, 27.326530949560258 ], [ -117.656500919490071, 27.371304632908867 ], [ -117.686434956886842, 27.388577338645888 ], [ -117.674280232302081, 27.396679206630729 ], [ -117.642158267575752, 27.403335273779174 ], [ -117.631143649235653, 27.409791389748108 ], [ -117.626494784312229, 27.420988655800251 ], [ -117.608010835853207, 27.436327218397089 ], [ -117.575707184718581, 27.455860910548488 ], [ -117.526384612036296, 27.474740916151514 ], [ -117.432967036451203, 27.502776378646772 ], [ -117.469529263187738, 27.503972240508794 ], [ -117.536694594729383, 27.498796581131664 ], [ -117.561129974689848, 27.493444041864986 ], [ -117.606102647914213, 27.473368174399937 ], [ -117.623582995260705, 27.459240854525081 ], [ -117.648615344848423, 27.431678353473657 ], [ -117.659286777750637, 27.426468087161613 ], [ -117.705913854724628, 27.422461373141587 ], [ -117.832919383251138, 27.419685127918491 ], [ -117.854415096351417, 27.433777840858426 ], [ -117.866325649784287, 27.436073434207721 ], [ -117.882079495600095, 27.434093148487648 ], [ -117.998711595386169, 27.398071174457272 ], [ -118.040536960140855, 27.379698737232971 ], [ -118.070344105442942, 27.358734625105136 ], [ -118.116447271874506, 27.343376836433343 ], [ -118.178837807701768, 27.333629216432591 ], [ -118.225519678989372, 27.321566777007607 ], [ -118.274678830034574, 27.29744574337262 ], [ -118.291372830915549, 27.278973330558571 ], [ -118.292340863789377, 27.270290835110181 ], [ -118.280458188165198, 27.24289752351833 ], [ -118.292585034941283, 27.237771851936085 ], [ -118.320954069836944, 27.235618531541441 ], [ -118.366468918374949, 27.217476807216578 ], [ -118.462546421429664, 27.163532286115789 ], [ -118.475098164462196, 27.143971677459447 ], [ -118.474564640882278, 27.137242551226198 ], [ -118.458902118922481, 27.121996273789129 ], [ -118.469826374710308, 27.112087154758779 ], [ -118.496884191294242, 27.096414058457768 ], [ -118.557112754993142, 27.071589350479535 ], [ -118.596668481599721, 27.062149347678019 ], [ -118.622351633824593, 27.061668695804215 ], [ -118.647058101441871, 27.065206293595416 ], [ -118.690972379240094, 27.081194697525639 ], [ -118.726549269635342, 27.082171382133208 ], [ -118.728738158268641, 27.079925776578797 ], [ -118.680320172412848, 27.062826105516336 ], [ -118.631123530521506, 27.040816094911101 ], [ -118.600457940972802, 27.022535942846581 ], [ -118.588330132892978, 27.008012565827705 ], [ -118.587787957579309, 26.993073905589874 ], [ -118.598829492424358, 26.977719962133079 ], [ -118.633601771582846, 26.951003408379542 ], [ -118.667713635066718, 26.943028432489392 ], [ -118.754909652797281, 26.934961171439461 ], [ -118.783016251769851, 26.928593495415299 ], [ -118.791716050685707, 26.923640858507628 ], [ -118.73182202069097, 26.912370533370662 ], [ -118.726413725806935, 26.906591175240045 ], [ -118.734643447190194, 26.884212023995723 ], [ -118.75055975333936, 26.876886889438943 ], [ -118.800452379143962, 26.863520922132203 ], [ -118.845189532950172, 26.859648790636829 ], [ -118.852008060431956, 26.862217394250443 ], [ -118.843661059991462, 26.879816943261659 ], [ -118.84604893850053, 26.8841389649109 ], [ -118.862833301933776, 26.887738086141944 ], [ -118.886707280505618, 26.881028185983638 ], [ -118.946177375547677, 26.855146043883039 ], [ -118.952543128964336, 26.850877855243656 ], [ -118.931074332368993, 26.843948777830896 ], [ -118.935586692160257, 26.838161729270297 ], [ -118.967808632476363, 26.819531662641637 ], [ -118.981201516288024, 26.807142379942466 ], [ -119.002743371968194, 26.794499313053919 ], [ -119.098702634661947, 26.755847211970085 ], [ -119.091413068343826, 26.746426435243521 ], [ -119.116373320150473, 26.712746197142319 ], [ -119.13020936498981, 26.683149577360954 ], [ -119.113226011680808, 26.67064109299708 ], [ -119.032631266785074, 26.656010049958471 ], [ -118.993563882482277, 26.652464761737299 ], [ -118.947524162098063, 26.642228799432758 ], [ -118.864189701521639, 26.614681679241301 ], [ -118.836426287986967, 26.596686073086069 ], [ -118.832266726671065, 26.588203528817175 ], [ -118.83483533028469, 26.578951941550194 ], [ -118.844818469703597, 26.566462683261257 ], [ -118.870954395993564, 26.542887670154911 ], [ -118.933860190629559, 26.507842380732107 ], [ -118.962292671572584, 26.497914035626806 ], [ -119.005320627315527, 26.490135165701162 ], [ -119.019473902391553, 26.484440402300329 ], [ -119.074755597005264, 26.451233125642947 ], [ -119.089650037270715, 26.433306733357544 ], [ -119.08729868830406, 26.417699005711377 ], [ -119.097852842149052, 26.406736297773655 ], [ -119.168951828625922, 26.385214629472202 ], [ -119.166418793250969, 26.381400176201687 ], [ -119.140609710235182, 26.379769805045747 ], [ -119.150087203882862, 26.360816740357897 ], [ -119.154246765198764, 26.334492398533392 ], [ -119.166590866621789, 26.330066556079409 ], [ -119.211021364532499, 26.330251126398945 ], [ -119.267496998400745, 26.32001131887942 ], [ -119.27147583461209, 26.317119717206616 ], [ -119.272515965267019, 26.29818203337873 ], [ -119.420194330885835, 26.28430849769325 ], [ -119.452533550259133, 26.248351892317707 ], [ -119.469372708005977, 26.237327660940139 ], [ -119.52724992273825, 26.211184044220179 ], [ -119.562681656267586, 26.200655845576371 ], [ -119.603160234471886, 26.194307395627163 ], [ -119.624376208181587, 26.185455710719189 ], [ -119.626338229130468, 26.174070029132515 ], [ -119.637832538040612, 26.164268576121898 ], [ -119.672921086132078, 26.148007161927353 ], [ -119.690085164545621, 26.127569844253205 ], [ -119.702583074568267, 26.12435139930621 ], [ -119.767858482942117, 26.119429524118459 ], [ -119.780862038736018, 26.112973408149518 ], [ -119.78717492044656, 26.08534553844326 ], [ -119.799256585946509, 26.08446882942544 ], [ -119.822389399328955, 26.090898028889448 ], [ -119.85255799484014, 26.085914630261843 ], [ -119.920347212513974, 26.054679948894556 ], [ -119.935233001045702, 26.043448075907492 ], [ -119.933587249029799, 26.037441850092442 ], [ -119.923042708222283, 26.03147407642728 ], [ -119.906962980436035, 26.012897842808506 ], [ -119.90796658154855, 26.000381668014647 ], [ -119.93409289480104, 25.965513258481394 ], [ -119.943254119515743, 25.960122267064804 ], [ -119.975005982299251, 25.951478223766308 ], [ -119.987937440312081, 25.932186780159309 ], [ -120.017219713767986, 25.934313184049017 ], [ -120.040750506901929, 25.930660229808108 ], [ -120.05614290250864, 25.91778260480514 ], [ -120.072890736399472, 25.910365185088601 ], [ -120.090995931181936, 25.908419506303435 ], [ -120.113749029584056, 25.898218150933815 ], [ -120.141132728138444, 25.879761118979744 ], [ -120.166489998392848, 25.867987070679035 ], [ -120.189813149917313, 25.862915232106651 ], [ -120.21249415053839, 25.861665537234764 ], [ -120.234540690686046, 25.864253366923318 ], [ -120.254373348302948, 25.86212696303361 ], [ -120.27199020078163, 25.855309396855581 ], [ -120.289172543966373, 25.844600473107221 ], [ -120.302846128472339, 25.814307869412588 ], [ -120.320227461532852, 25.800749641356315 ], [ -120.331205550330537, 25.798388679352197 ], [ -120.3536519928372, 25.800399726792186 ], [ -120.387545640370377, 25.806782783676304 ], [ -120.421973772787226, 25.804521797261938 ], [ -120.477545781132704, 25.785945563643153 ], [ -120.49519820185003, 25.771902838498093 ], [ -120.460182712843405, 25.768799750000802 ], [ -120.442837909325306, 25.764785345550798 ], [ -120.443289722086689, 25.760859381045563 ], [ -120.461557377202482, 25.757044927775055 ], [ -120.492629598236419, 25.757314092824387 ], [ -120.511323110912429, 25.754061040942474 ], [ -120.534076209314563, 25.746047612902416 ], [ -120.591167077581275, 25.737418950463876 ], [ -120.61283486405236, 25.731235844759262 ], [ -120.655881084566516, 25.696090579746702 ], [ -120.661045208298674, 25.688142520361477 ], [ -120.655519634357404, 25.686377566680868 ], [ -120.63135534205378, 25.690088199146636 ], [ -120.602941125881983, 25.684243472361178 ], [ -120.588183190748708, 25.676810671784676 ], [ -120.578741265339687, 25.667639834032489 ], [ -120.569787682234463, 25.649971071151445 ], [ -120.564271721330684, 25.64738324146289 ], [ -120.618939142849683, 25.617702026951729 ], [ -120.634430552742387, 25.605116638288042 ], [ -120.644432918236248, 25.600429321214705 ], [ -120.650962093290019, 25.604047668520703 ], [ -120.657725826458176, 25.637081910503518 ], [ -120.661849819535419, 25.642692079174555 ], [ -120.674700528033441, 25.643276551853106 ], [ -120.687153256779965, 25.632840638369064 ], [ -120.714500425791925, 25.593784789711236 ], [ -120.744244125046677, 25.574112669820178 ], [ -120.968094277018494, 25.523651913500725 ], [ -121.00092279999933, 25.512193172829235 ], [ -121.007252023873576, 25.490663814097797 ], [ -121.016459391168155, 25.472014521394197 ], [ -121.031317301891193, 25.457175836746107 ], [ -121.048670757143014, 25.447758905234537 ], [ -121.052388118735024, 25.454453424532879 ], [ -121.050660655900572, 25.506906002217381 ], [ -121.055263378244121, 25.517322689626468 ], [ -121.077854016312926, 25.524013363709823 ], [ -121.087774670988239, 25.523082821682141 ], [ -121.101439603760497, 25.520145077429447 ], [ -121.12382163891607, 25.508794002777691 ], [ -121.137531752964449, 25.50596392454473 ], [ -121.154596817091985, 25.506906002217381 ], [ -121.183770463224405, 25.495716426595219 ], [ -121.253123722095609, 25.45987902288439 ], [ -121.298413625556691, 25.450981195396519 ], [ -121.310386663733141, 25.443529168745062 ], [ -121.329730979046275, 25.423922417508845 ], [ -121.34255380973562, 25.416743401121707 ], [ -121.361517448764687, 25.416116631078264 ], [ -121.386622857437231, 25.422022881303565 ], [ -121.406806390922014, 25.417843132608965 ], [ -121.422071894434026, 25.403573539779469 ], [ -121.437581569097944, 25.397932609388508 ], [ -121.481649655495801, 25.408456962817322 ], [ -121.501056455552515, 25.40125872035523 ], [ -121.526269530244775, 25.382847830981035 ], [ -121.552622711181726, 25.370693106396274 ], [ -121.580096772288371, 25.364798391815942 ], [ -121.651466365770176, 25.35864604783125 ], [ -121.680143017865078, 25.362572012336486 ], [ -121.685976209005574, 25.36792455160316 ], [ -121.684637593537019, 25.391403434334752 ], [ -121.673125500507538, 25.408349296797589 ], [ -121.662463199990952, 25.4163434987627 ], [ -121.64824695951944, 25.423399468270141 ], [ -121.627447230332436, 25.424210808633127 ], [ -121.588524522243659, 25.418931328451258 ], [ -121.59293786774893, 25.424610710992134 ], [ -121.607081529787479, 25.431335992010396 ], [ -121.642902591334604, 25.442960076926479 ], [ -121.678361722020767, 25.448889398441732 ], [ -121.698727422565725, 25.445136468611061 ], [ -121.727358412732613, 25.436184808113332 ], [ -121.746801742331741, 25.425868096294003 ], [ -121.757039146591893, 25.414174797508092 ], [ -121.769925903980464, 25.375945670073211 ], [ -121.777341401089515, 25.365590506103967 ], [ -121.860910900432216, 25.298218494256588 ], [ -121.893684148447562, 25.277454333308249 ], [ -121.926095946253781, 25.279011645379374 ], [ -121.941813262527191, 25.271159716368913 ], [ -121.963915077640323, 25.254321519925799 ], [ -121.984316827075816, 25.246273484950823 ], [ -122.00301851083367, 25.247015611443974 ], [ -122.017560633275593, 25.250218675531013 ], [ -122.027915316592967, 25.255886522426906 ], [ -122.026124407711166, 25.261177538253747 ], [ -122.012179735548358, 25.266095568226511 ], [ -122.017180437643418, 25.279588427627939 ], [ -122.041127475300101, 25.301656116458037 ], [ -122.057450893586363, 25.313645496798205 ], [ -122.088424580986185, 25.315022083764781 ], [ -122.093244557976689, 25.304993763069735 ], [ -122.082799512107044, 25.253706285527329 ], [ -122.084409215232412, 25.242151414481082 ], [ -122.103816015289127, 25.227501145367533 ], [ -122.154640144425187, 25.211185898163116 ], [ -122.170556450574338, 25.212777817169158 ], [ -122.216351999806648, 25.244954576209107 ], [ -122.259660656243909, 25.251337633093225 ], [ -122.262527264019269, 25.240867112674277 ], [ -122.252869045267047, 25.219468491252513 ], [ -122.263685154383268, 25.19948490894723 ], [ -122.294993375487252, 25.180874068393535 ], [ -122.318813521049236, 25.171845503595993 ], [ -122.335145591069221, 25.172406904984605 ], [ -122.336050177895714, 25.185430648157201 ], [ -122.321508536105654, 25.210932113973751 ], [ -122.317782522779922, 25.232184617225876 ], [ -122.324872618570396, 25.249184312698581 ], [ -122.324067526681787, 25.262246508021086 ], [ -122.315376860151531, 25.271332751043477 ], [ -122.257861095628385, 25.296572742240681 ], [ -122.233660754434226, 25.300344898146292 ], [ -122.220674502107769, 25.294096423786847 ], [ -122.204487108301805, 25.293027454019509 ], [ -122.185098092364399, 25.297134143629282 ], [ -122.172853485879244, 25.30520140467921 ], [ -122.167788857084986, 25.31724461802925 ], [ -122.142974242796086, 25.332675465785865 ], [ -122.098435598213769, 25.351467031444109 ], [ -122.047466792863702, 25.386193168022707 ], [ -121.990068788049626, 25.436853875521674 ], [ -121.922785696798911, 25.480497065663087 ], [ -121.845609828681532, 25.517161190596873 ], [ -121.761859123582411, 25.546215635064581 ], [ -121.593262788415615, 25.586186644890141 ], [ -121.580304413897863, 25.583756469016183 ], [ -121.595695848200805, 25.570794249283431 ], [ -121.585169572164489, 25.562700071728578 ], [ -121.568592850340735, 25.561661863681152 ], [ -121.506817548911926, 25.56805645621025 ], [ -121.482318722904125, 25.576465941394325 ], [ -121.475030117889773, 25.568364073409484 ], [ -121.483621289482144, 25.558143491964913 ], [ -121.520735304569811, 25.547799863640641 ], [ -121.519676909143698, 25.539198117707045 ], [ -121.465751614117849, 25.498854122027417 ], [ -121.448786525580061, 25.492744075407614 ], [ -121.434696696551356, 25.493501582760732 ], [ -121.428719309848731, 25.498711849072773 ], [ -121.433231669640008, 25.527812436120371 ], [ -121.415009195800351, 25.533345700491605 ], [ -121.377696190836929, 25.534703061383226 ], [ -121.353379051237425, 25.530903988972678 ], [ -121.342056815698101, 25.521952328474946 ], [ -121.320713949893701, 25.514534908758399 ], [ -121.289352376431737, 25.508667110683003 ], [ -121.269889820757655, 25.510466671298531 ], [ -121.262330128086461, 25.519964352324898 ], [ -121.275769154478013, 25.531257748751795 ], [ -121.335744895291299, 25.556101682804989 ], [ -121.35240236662986, 25.566464537204205 ], [ -121.356462913659755, 25.580895629063299 ], [ -121.347943839848455, 25.599383422737304 ], [ -121.329088828142858, 25.626819031694044 ], [ -121.299914220706697, 25.663210146363511 ], [ -121.273508168063643, 25.688638553095245 ], [ -121.220043337532914, 25.71741614208365 ], [ -121.183978104833898, 25.731651127978232 ], [ -121.092567731473821, 25.775255865969747 ], [ -120.916873129434691, 25.81969501561418 ], [ -120.873455845673959, 25.848218820413223 ], [ -120.814429872963302, 25.879707285969872 ], [ -120.789099519213835, 25.887447703745615 ], [ -120.789099519213835, 25.875296824375848 ], [ -120.781005341658968, 25.864441782457853 ], [ -120.741522674137201, 25.85720893306085 ], [ -120.715884703188479, 25.854694162457108 ], [ -120.704101041850294, 25.856901315861613 ], [ -120.700863370828358, 25.868467722552836 ], [ -120.706153425351445, 25.889401072960752 ], [ -120.707473295396909, 25.909173168441562 ], [ -120.70482394226849, 25.927772473350288 ], [ -120.699072461946557, 25.942488111118678 ], [ -120.672756771855774, 25.968624037408656 ], [ -120.633599025000706, 25.998374465789635 ], [ -120.580115929698763, 26.032958329413589 ], [ -120.54636647772773, 26.048619890069631 ], [ -120.514533865429428, 26.056940935308923 ], [ -120.483785603758434, 26.072006487641445 ], [ -120.430810076835229, 26.107674701892705 ], [ -120.413808458755028, 26.113515583463176 ], [ -120.375808121612067, 26.120552326895663 ], [ -120.361880752916733, 26.117441547968401 ], [ -120.353705825847072, 26.108486042255684 ], [ -120.343731338161888, 26.102925861379521 ], [ -120.305142683125382, 26.097907855816999 ], [ -120.279460492204279, 26.105863605632209 ], [ -120.28365562175884, 26.11006258040176 ], [ -120.304510145259457, 26.112754230895064 ], [ -120.317857847795011, 26.117929890272187 ], [ -120.330446120369928, 26.139197774384275 ], [ -120.356030258308778, 26.152021566377371 ], [ -120.361817306869384, 26.166491110386371 ], [ -120.357187668020913, 26.189062522380219 ], [ -120.335202651313097, 26.242022668443447 ], [ -120.331594878348326, 26.296482448352961 ], [ -120.312052534463191, 26.327682522785331 ], [ -120.272731365971026, 26.338956693137284 ], [ -120.185589181250322, 26.346654813548135 ], [ -120.23657673202348, 26.360778288207992 ], [ -120.255549022786283, 26.360878263797744 ], [ -120.288729382938726, 26.367488188366302 ], [ -120.301345533322333, 26.401456817591793 ], [ -120.301055219590552, 26.426162323905324 ], [ -120.279106732425163, 26.454747652144206 ], [ -120.19788810139724, 26.503012790704126 ], [ -120.108919439556075, 26.536412328111027 ], [ -120.120956885083629, 26.539150121184221 ], [ -120.131961890386251, 26.54908231150451 ], [ -120.090923833400851, 26.61598520712306 ], [ -120.050906680995411, 26.675689860279512 ], [ -120.104968481153406, 26.624790749451151 ], [ -120.167503212542826, 26.585869483317985 ], [ -120.350794036795548, 26.540668981105441 ], [ -120.475466481126631, 26.502759006514751 ], [ -120.534619345931958, 26.493680453922344 ], [ -120.573694420664751, 26.503320407903363 ], [ -120.60416198164144, 26.539676915637902 ], [ -120.621551966435675, 26.552608373650731 ], [ -120.643908046390067, 26.576317969281746 ], [ -120.634485347056, 26.607121986570107 ], [ -120.616759867253847, 26.628443703692056 ], [ -120.577864556321856, 26.631954384978322 ], [ -120.53402141500095, 26.621672280093904 ], [ -120.495976857885609, 26.620795571076087 ], [ -120.545000465102376, 26.641813516213798 ], [ -120.615774530912546, 26.660132120428223 ], [ -120.647841701325262, 26.654183572838015 ], [ -120.672358792104276, 26.624421608812071 ], [ -120.705185392477603, 26.60397275549294 ], [ -120.733997588400911, 26.611236366609866 ], [ -120.751107833804596, 26.619545876204199 ], [ -120.739234771217895, 26.594586585701293 ], [ -120.761001571974987, 26.556576635520859 ], [ -120.769275513330655, 26.530259984126332 ], [ -120.738031218925869, 26.460807710969124 ], [ -120.743810577056507, 26.433026032663243 ], [ -120.800539033810367, 26.420286835399942 ], [ -120.846732562794188, 26.443112031583155 ], [ -120.943171516058015, 26.531140538359139 ], [ -120.976767159429428, 26.556207494881775 ], [ -121.052388118735024, 26.597589698608822 ], [ -121.077293576228072, 26.591694984028489 ], [ -121.109062742479026, 26.57128073764428 ], [ -121.139864837159891, 26.565647497683294 ], [ -121.221200747245035, 26.595763221488369 ], [ -121.259075153597053, 26.618734535841213 ], [ -121.29488564080296, 26.646604654091874 ], [ -121.349761665235178, 26.631250710635072 ], [ -121.397619211006116, 26.612962868140578 ], [ -121.453769924207677, 26.583789222008157 ], [ -121.491289609476823, 26.584043006197518 ], [ -121.593362764005363, 26.559029882684754 ], [ -121.604188005507183, 26.558503088231063 ], [ -121.618548441540838, 26.545029454904586 ], [ -121.632629138183916, 26.538988622154612 ], [ -121.644258990922481, 26.513033420969197 ], [ -121.782197426970555, 26.492903720494276 ], [ -121.918517508159525, 26.504170200416247 ], [ -121.870831555107543, 26.518443638460731 ], [ -121.817557062718834, 26.529675511447785 ], [ -121.771327484844477, 26.556695837185565 ], [ -121.79097893670496, 26.592787025085769 ], [ -121.794388200445852, 26.611182533600001 ], [ -121.79382727970912, 26.634430703432159 ], [ -121.7433290325435, 26.667080423915927 ], [ -121.795853227357213, 26.667007364831115 ], [ -121.829557978703974, 26.655321756475182 ], [ -121.861155071584108, 26.679846537684174 ], [ -121.875950497563537, 26.728084759739154 ], [ -121.839840083588399, 26.756608564538187 ], [ -121.823073504274475, 26.778583968208515 ], [ -121.808884660959777, 26.808768905883419 ], [ -121.807835397919263, 26.834708726208881 ], [ -121.835815585449026, 26.878640307474583 ], [ -121.916139242687933, 26.971706045888045 ], [ -121.952665420533947, 27.04110448603538 ], [ -122.015263597970701, 27.078083918598374 ], [ -121.968518280635749, 27.138599912117819 ], [ -121.916401197959161, 27.193709533360703 ], [ -121.849100322589109, 27.218380432739323 ], [ -121.85449035270193, 27.222060303485172 ], [ -121.891685597956268, 27.221898804455574 ], [ -121.916102713145534, 27.218634216928699 ], [ -121.937761847882882, 27.200700134213314 ], [ -121.960550995175566, 27.187018859277352 ], [ -122.031839839142577, 27.116832150056975 ], [ -122.0776810503029, 27.082640498362039 ], [ -122.107532896229259, 27.072827509706457 ], [ -122.059494625353778, 27.059561517989465 ], [ -122.052223804458748, 27.048383478012273 ], [ -122.042963084806161, 27.022989678215446 ], [ -122.05527113733865, 26.992135673132211 ], [ -122.067552273366232, 26.975097525509604 ], [ -122.124209112990897, 26.976470267261185 ], [ -122.17504189386068, 26.951657094927921 ], [ -122.294577130964527, 26.924652150050107 ], [ -122.455929081089351, 26.90922514750849 ], [ -122.535203475287744, 26.911070850703897 ], [ -122.617787638289144, 26.942559316260557 ], [ -122.617181536276277, 26.960808706605157 ], [ -122.613826586197135, 26.976670218440688 ], [ -122.732466368860088, 27.030949273245639 ], [ -122.799586519125597, 27.085028376871104 ], [ -122.847778598600698, 27.086220393518133 ], [ -122.889703458293269, 27.100655330592225 ], [ -122.93918897196076, 27.123080624416424 ], [ -122.934848204888453, 27.141176206161404 ], [ -122.927070776918413, 27.153919248639703 ], [ -122.957438362305368, 27.162817076127563 ], [ -122.996370202779758, 27.161940367109743 ], [ -123.04163222843215, 27.168119627599374 ], [ -122.923390425520694, 27.237698792851262 ], [ -122.882721989826251, 27.284287417675351 ], [ -122.849596423987435, 27.290908877888874 ], [ -122.806622301254336, 27.283729861501737 ], [ -122.747315627849389, 27.265353579062463 ], [ -122.697314855373179, 27.257259401507596 ], [ -122.67927310663805, 27.248638429499042 ], [ -122.660770412755966, 27.232327027509633 ], [ -122.680286320788028, 27.205014465432583 ], [ -122.698110814876173, 27.185842223490276 ], [ -122.676180592481984, 27.191044799372335 ], [ -122.613934732868728, 27.22071447823852 ], [ -122.567641708947036, 27.246811952378586 ], [ -122.545440398896019, 27.244101075810331 ], [ -122.531016036163152, 27.239506043896771 ], [ -122.505278570276573, 27.212593384178724 ], [ -122.473292149378636, 27.185184691726914 ], [ -122.402835313805184, 27.211289856296965 ], [ -122.365124329090264, 27.243793458611105 ], [ -122.39694828965483, 27.25804382536565 ], [ -122.435852732972421, 27.266472536624676 ], [ -122.535076583193046, 27.27752368450718 ], [ -122.510849325493965, 27.286840640428998 ], [ -122.44719323328296, 27.285810122811565 ], [ -122.423210146735755, 27.294734866804362 ], [ -122.448414089042416, 27.307070316493672 ], [ -122.479948216527077, 27.318094547871247 ], [ -122.565905594378847, 27.281341982992682 ], [ -122.722338072575283, 27.283187686188089 ], [ -122.83168156734699, 27.304655521479681 ], [ -122.940753493810007, 27.300929508153949 ], [ -122.9579810182709, 27.305178470718374 ], [ -122.979206124366215, 27.316683353969754 ], [ -122.917765356641567, 27.34397668997185 ], [ -122.874239445557365, 27.359061468379323 ], [ -122.871933277866844, 27.367805487267567 ], [ -122.897209798606468, 27.368897528324847 ], [ -122.944768859563766, 27.361664678927845 ], [ -122.965993485007203, 27.374234686731569 ], [ -122.962511642833377, 27.396048591372299 ], [ -122.970307335574603, 27.394095222157159 ], [ -122.989108514270328, 27.38218274611679 ], [ -123.0157231698266, 27.388069770267151 ], [ -123.038503184733685, 27.397890449352722 ], [ -123.026575327833356, 27.408364814986655 ], [ -123.003170946142205, 27.422761299910842 ], [ -123.0135708107357, 27.424895394230532 ], [ -123.03457866218406, 27.421838448313132 ], [ -123.055007328124489, 27.403000740075001 ], [ -123.050540149609361, 27.387762153067918 ], [ -123.051064540803679, 27.365898260632306 ], [ -123.085954099019375, 27.361899237042259 ], [ -123.115851126221884, 27.364521673665735 ], [ -123.137446814911897, 27.386516303411014 ], [ -123.159775017057584, 27.433666329623705 ], [ -123.220175654127303, 27.446182504417564 ], [ -123.234988864226082, 27.470022837358254 ], [ -123.196780404821766, 27.500607677392161 ], [ -123.21365561145916, 27.516376904067926 ], [ -123.25425098806879, 27.521498730435184 ], [ -123.300688688204502, 27.506052501818615 ], [ -123.321244246239615, 27.519779919334464 ], [ -123.325024573227083, 27.534845471666976 ], [ -123.326625143966851, 27.556478651203157 ], [ -123.313702337687744, 27.558755018477491 ], [ -123.302967939390072, 27.554467603763158 ], [ -123.209893549242892, 27.566480055393278 ], [ -123.200913530284623, 27.572320936963749 ], [ -123.274770497213353, 27.590589553383296 ], [ -123.295380368910202, 27.609777176185556 ], [ -123.264777744756969, 27.620659134608481 ], [ -123.209640245705401, 27.621570450561208 ], [ -123.132274039446003, 27.6329484417179 ], [ -123.164821381080657, 27.653293474232292 ], [ -123.171630776176841, 27.664471514209474 ], [ -123.178169083616197, 27.682786273208912 ], [ -123.165336639889375, 27.713847919901632 ], [ -123.07446892249483, 27.785057456309467 ], [ -122.985870843248378, 27.84442757576176 ], [ -122.95825258657959, 27.858128076772665 ], [ -122.917692778208618, 27.865526270414257 ], [ -122.879945744603162, 27.859846887873395 ], [ -122.840516910091253, 27.847096154965115 ], [ -122.833047099320481, 27.852548669821552 ], [ -122.846430850746543, 27.857766626563567 ], [ -122.863332973888873, 27.882056849658134 ], [ -122.808584322203217, 27.89158913761942 ], [ -122.776498887019272, 27.919036282221128 ], [ -122.774093224390896, 27.926965115531402 ], [ -122.808937120678578, 27.915560207869781 ], [ -122.8452373921439, 27.896814784791417 ], [ -122.854326038425654, 27.915660183459536 ], [ -122.863685772364249, 27.959034208551614 ], [ -122.847669971277213, 28.000016509919657 ], [ -122.835217242530689, 28.018412018433892 ], [ -122.804903970805498, 28.035857758845484 ], [ -122.717635374641986, 28.042848359698091 ], [ -122.702279508577689, 28.03935690448678 ], [ -122.699069234712539, 28.047585664566306 ], [ -122.751611213645589, 28.073360140647182 ], [ -122.72994342717449, 28.093516757627029 ], [ -122.710961523374209, 28.103964206756039 ], [ -122.605452188599841, 28.120294834820413 ], [ -122.547791747862675, 28.11521146060306 ], [ -122.47547190562635, 28.096177646400413 ], [ -122.433501384005766, 28.072502657704316 ], [ -122.439605662803075, 28.060336397474586 ], [ -122.450042056938997, 28.053303499257083 ], [ -122.471800205962353, 28.045416963311705 ], [ -122.479939084141478, 28.039310761906901 ], [ -122.476041478096803, 28.034438874514017 ], [ -122.445067790696982, 28.048562349173878 ], [ -122.394316720645747, 28.06574661496613 ], [ -122.365902504473951, 28.058275362239712 ], [ -122.343384444838108, 28.044709443753465 ], [ -122.318541952740532, 28.044944001867876 ], [ -122.239575175741365, 28.056595003288898 ], [ -122.199495057940453, 28.068945833838164 ], [ -122.150507018962344, 28.100995700783422 ], [ -122.085313321407043, 28.12172525479685 ], [ -121.993722222942424, 28.187097754849212 ], [ -121.96677303368196, 28.213910438977507 ], [ -121.935446547806777, 28.218036354662232 ], [ -121.907158743077787, 28.215656166583162 ], [ -121.887471722978631, 28.193653846407898 ], [ -121.858686443560259, 28.187224646943889 ], [ -121.694693792040766, 28.192550269705649 ], [ -121.610897905665482, 28.202636268625554 ], [ -121.552694808962798, 28.223969521392473 ], [ -121.492140363293458, 28.259887674618113 ], [ -121.457070079973192, 28.283962565673214 ], [ -121.440285716539961, 28.315324139135186 ], [ -121.461953503011046, 28.355910383359209 ], [ -121.484181729566998, 28.389606002320377 ], [ -121.513428434784231, 28.466637194223729 ], [ -121.594827790916725, 28.517490162472214 ], [ -121.652778064733781, 28.532671071254441 ], [ -121.689539281346086, 28.530510060429815 ], [ -121.662906361018599, 28.562921377584185 ], [ -121.585358949002767, 28.559441458017844 ], [ -121.534870314874638, 28.565755301032134 ], [ -121.493975492147626, 28.581382254753251 ], [ -121.480592221373428, 28.593210136063824 ], [ -121.460398113547427, 28.617373467063707 ], [ -121.467360836591354, 28.643155633574565 ], [ -121.478231259369295, 28.657136835279783 ], [ -121.506410917426706, 28.672536921316464 ], [ -121.539925811283311, 28.695092952450345 ], [ -121.56335662882752, 28.702598812111674 ], [ -121.583207551215622, 28.702110469807891 ], [ -121.681020207534772, 28.656894586735376 ], [ -121.739693862421916, 28.656060175082459 ], [ -121.783572091329631, 28.664381220321754 ], [ -121.821707972300999, 28.638625970315829 ], [ -121.928085364359475, 28.616016106172083 ], [ -121.984913796703083, 28.59319090998887 ], [ -122.090296239382781, 28.536489369739943 ], [ -122.116666723787162, 28.5108225596788 ], [ -122.150245063691131, 28.509665149966679 ], [ -122.174544419171298, 28.559441458017844 ], [ -122.289151051961156, 28.606899101429768 ], [ -122.32378730663936, 28.590756888899929 ], [ -122.304696775515595, 28.57584514516703 ], [ -122.27872427086271, 28.565228506578443 ], [ -122.23590395672926, 28.560598867729965 ], [ -122.254370121068931, 28.546202382805777 ], [ -122.268315273883616, 28.527030140863474 ], [ -122.311261999459902, 28.545006520943751 ], [ -122.387959138310947, 28.571127066373762 ], [ -122.467378208723346, 28.584581473625295 ], [ -122.674182041990719, 28.583062613704065 ], [ -122.809932070057357, 28.556296072155661 ], [ -122.822411715308803, 28.561848562601853 ], [ -122.83551572734433, 28.564071096866321 ], [ -122.858124149532458, 28.557676504337234 ], [ -122.867836681946415, 28.546798391129297 ], [ -122.882613843154644, 28.539926991941392 ], [ -122.910358511266253, 28.537473744777497 ], [ -122.966147293606838, 28.541518910947424 ], [ -123.073953183034234, 28.558191763145945 ], [ -123.317762884717638, 28.58266655656006 ], [ -123.381581917913877, 28.597693656742674 ], [ -123.436276255937798, 28.633523370023532 ], [ -123.4351274979594, 28.657832819193043 ], [ -123.410828142479232, 28.668126459722441 ], [ -123.413125177784138, 28.702979488395727 ], [ -123.460593876189165, 28.712238766092685 ], [ -123.557222206291272, 28.762318846128089 ], [ -123.592735650639156, 28.783663634539991 ], [ -123.585030801102079, 28.786032286974091 ], [ -123.567667252160902, 28.780245238413492 ], [ -123.534677230150464, 28.775911681119268 ], [ -123.453648456612697, 28.782848448962014 ], [ -123.425867258958689, 28.815259766116377 ], [ -123.365674744150311, 28.824519043813343 ], [ -123.310310858066188, 28.819943237974726 ], [ -123.32275493507899, 28.828733399442854 ], [ -123.33688033234634, 28.835643250780663 ], [ -123.481076855791343, 28.85215844916457 ], [ -123.500673993990063, 28.847094301022178 ], [ -123.759187797796898, 28.876429446184186 ], [ -123.963324013164652, 28.927416996957334 ], [ -123.980045411202425, 28.937156926528104 ], [ -123.998719697803466, 28.958905462513993 ], [ -123.971182671301349, 28.980392523880539 ], [ -123.943491836199627, 28.990547736670266 ], [ -123.942234931549621, 28.978712164929711 ], [ -123.93782158604435, 28.967107306088593 ], [ -123.820809771277965, 28.994100715321437 ], [ -123.759649223595773, 29.02946131237346 ], [ -123.643767421384695, 29.035663644153018 ], [ -123.616818232124245, 29.045422799798743 ], [ -123.580852494363086, 29.064406626206512 ], [ -123.529477057527785, 29.096833324220839 ], [ -123.456831813972912, 29.113917614423336 ], [ -123.407346300305392, 29.129244641375202 ], [ -123.342894248591364, 29.138288587032701 ], [ -123.287883641634494, 29.123223034700182 ], [ -123.270918072444829, 29.121161999465308 ], [ -123.171078987825723, 29.118085827472964 ], [ -123.138261039186119, 29.124615002526724 ], [ -123.124288969866498, 29.129483044704607 ], [ -123.113870840501789, 29.137169629470485 ], [ -123.211882967348572, 29.16446296547258 ], [ -123.201944047902046, 29.17965540989978 ], [ -123.189446137879401, 29.19036048843315 ], [ -123.07508367624142, 29.222156571189039 ], [ -122.987200326331333, 29.232665543757896 ], [ -122.940174788953954, 29.231934952909715 ], [ -122.803737428707763, 29.272944170782679 ], [ -122.728966742566911, 29.284649005213563 ], [ -122.588188615248413, 29.292462482074118 ], [ -122.472478405756291, 29.294450458224176 ], [ -122.441170184652321, 29.279827105615553 ], [ -122.503289152170893, 29.282910968037889 ], [ -122.530681502459004, 29.280253924479496 ], [ -122.51117520746439, 29.275243609346965 ], [ -122.489208936179665, 29.264580828178488 ], [ -122.495593435019401, 29.251114885281993 ], [ -122.533792762038132, 29.211124649381489 ], [ -122.530681502459004, 29.179113234586133 ], [ -122.555532646290288, 29.16874653497192 ], [ -122.579606095389764, 29.154134718008276 ], [ -122.46117443498818, 29.108030590272975 ], [ -122.277801899916881, 29.105100536450273 ], [ -122.17806231023566, 29.113421581689565 ], [ -122.120411001884094, 29.0996211050889 ], [ -122.073195126364681, 29.096491100086688 ], [ -121.94278994713477, 29.103562450454092 ], [ -121.844578830412217, 29.093707164433614 ], [ -121.803503763232541, 29.097467784694256 ], [ -121.712690359499732, 29.166377882537816 ], [ -121.677186047537447, 29.177186781875925 ], [ -121.638570475996019, 29.165201246750748 ], [ -121.588171723768284, 29.155472852824943 ], [ -121.556022842537004, 29.1625249771174 ], [ -121.529797514998506, 29.144775464721555 ], [ -121.542132003384069, 29.181816420724406 ], [ -121.559894012728634, 29.195705337269853 ], [ -121.708340460041811, 29.221152970076531 ], [ -121.807645540429121, 29.208482986683059 ], [ -121.8387095903812, 29.222837174242343 ], [ -121.828445269616111, 29.251268693881606 ], [ -121.934704901965503, 29.3212900588574 ], [ -121.978999375395915, 29.335490437817068 ], [ -122.03139667811493, 29.336167195655385 ], [ -122.058065647332953, 29.360484335254888 ], [ -122.080393849478668, 29.391730552267148 ], [ -122.035203921607348, 29.404473594745447 ], [ -121.994355241460212, 29.410252952876071 ], [ -121.956535629421808, 29.400213096536049 ], [ -121.913787893721292, 29.359165426513165 ], [ -121.873969731191607, 29.353132284193173 ], [ -121.885545270268423, 29.312238422769923 ], [ -121.83615059980508, 29.27455531586368 ], [ -121.724654745942473, 29.239521562085834 ], [ -121.635369334516469, 29.252418413163753 ], [ -121.572318863666467, 29.252045427309675 ], [ -121.534634795456469, 29.244674150173015 ], [ -121.442365016546034, 29.213224136766257 ], [ -121.395484155382675, 29.209278946186082 ], [ -121.248891101694895, 29.225794144569988 ], [ -121.247354938306216, 29.256675066158163 ], [ -121.259689426691779, 29.279050372187484 ], [ -121.294099294337414, 29.293077716472588 ], [ -121.393115502948575, 29.290436053774162 ], [ -121.470200527861778, 29.313495808071796 ], [ -121.535801818206068, 29.307166584197539 ], [ -121.657109699420516, 29.271840594080423 ], [ -121.717899183856147, 29.285752581915823 ], [ -121.756107643260464, 29.304624897088864 ], [ -121.817629641151768, 29.323804829461139 ], [ -121.825352755460059, 29.360069052035918 ], [ -121.77375093159219, 29.401670433017422 ], [ -121.735560736959087, 29.421454064143198 ], [ -121.769772095380844, 29.435889001217284 ], [ -121.855692943690201, 29.446036523577039 ], [ -122.004827203834793, 29.435654443102869 ], [ -122.01184520184421, 29.449797143837682 ], [ -122.011085291231723, 29.465081873424658 ], [ -122.071883908052968, 29.435166100799087 ], [ -122.134283095613952, 29.441441491663468 ], [ -122.218386599188463, 29.438242272791427 ], [ -122.403929758121848, 29.464593531120869 ], [ -122.469991512961229, 29.497131740369916 ], [ -122.497718396953502, 29.523536831709222 ], [ -122.547737434200926, 29.595849944819307 ], [ -122.611601648673286, 29.641046601816868 ], [ -123.052900150309739, 29.794647559824714 ], [ -123.253645366707786, 29.833253518328661 ], [ -123.350373191747764, 29.875977702087368 ], [ -123.410981951078853, 29.886482829441228 ], [ -123.468859646462988, 29.890781779800534 ], [ -123.542997314086023, 29.904551494681279 ], [ -123.493159001943155, 29.92150120235911 ], [ -123.458857280969113, 29.927215191834893 ], [ -123.494542798687831, 29.909527202878898 ], [ -123.467430668442148, 29.905066753489997 ], [ -123.424257555833321, 29.915279644504587 ], [ -123.400980066236855, 29.927488202099212 ], [ -123.366823021476847, 29.979325545385237 ], [ -123.331508567004704, 30.057710252965229 ], [ -123.340968276533033, 30.088568103263448 ], [ -123.096109792460993, 30.082346545408928 ], [ -122.933175055715736, 30.087552966505982 ], [ -122.879186314642567, 30.094555103003561 ], [ -122.673621121253987, 30.106463733828932 ], [ -122.620355761250892, 30.115100086697446 ], [ -122.521565939672286, 30.141524404111703 ], [ -122.405277025324111, 30.188224540170516 ], [ -122.305483602633018, 30.249574945342875 ], [ -122.289612477760002, 30.266070917651831 ], [ -122.283281811930124, 30.261856562022324 ], [ -122.274301792971855, 30.264478998645799 ], [ -122.263648624840854, 30.287719478047972 ], [ -122.250535961071591, 30.342440732576833 ], [ -122.201032663284764, 30.394035827318469 ], [ -121.990430238258739, 30.511634037370889 ], [ -121.892698812106261, 30.558207281335015 ], [ -121.860079372690535, 30.579371344642357 ], [ -121.826130450191869, 30.594806037613957 ], [ -121.802201677306414, 30.580136542425457 ], [ -121.790770814443604, 30.57577222341132 ], [ -121.784169060956884, 30.568870062503485 ], [ -121.804227144302615, 30.565640081911518 ], [ -121.836973475813011, 30.550612981728918 ], [ -121.882624348831314, 30.54051929237902 ], [ -121.893648099557026, 30.535382085151802 ], [ -121.866879635401119, 30.536524114003967 ], [ -121.786646821366361, 30.547482976726702 ], [ -121.741439109375705, 30.56077588494863 ], [ -121.516485380701624, 30.585300666157607 ], [ -121.394471902536452, 30.625890755596622 ], [ -121.389733636364468, 30.634930856039134 ], [ -121.208793199774647, 30.685610789613044 ], [ -121.183760850186928, 30.6836574203979 ], [ -121.154894821253748, 30.677543528563113 ], [ -121.205030656906516, 30.644094003361339 ], [ -121.169735428509313, 30.635330758398137 ], [ -121.20107008546637, 30.595340522497633 ], [ -121.135433226883407, 30.594706062024208 ], [ -121.120782957769862, 30.576287482220032 ], [ -121.117120390491493, 30.592156684485559 ], [ -121.117925001728224, 30.6149280476589 ], [ -121.112716658023686, 30.637245675463372 ], [ -121.103040174500251, 30.652676523219988 ], [ -121.056945659802437, 30.645701303227334 ], [ -120.953155616780663, 30.662278025051091 ], [ -121.078967206052653, 30.664350595930934 ], [ -121.154433395454902, 30.700614818505716 ], [ -121.196350084065614, 30.700895519200017 ], [ -121.056105480327034, 30.754070997302712 ], [ -120.927869483003576, 30.786174697257849 ], [ -120.898894826746911, 30.785559462859375 ], [ -120.884895360270491, 30.779572463119273 ], [ -120.881901860400433, 30.769878676128393 ], [ -120.909566259649111, 30.763537916609167 ], [ -120.936741355290252, 30.752133008947538 ], [ -120.924243445267592, 30.74207777174756 ], [ -120.90569605076125, 30.740651196986107 ], [ -120.844064944894569, 30.748914564000543 ], [ -120.816491869501931, 30.759250501894833 ], [ -120.685119138050027, 30.758354566802062 ], [ -120.646584316023393, 30.76573737958369 ], [ -120.637324077022697, 30.77306251414047 ], [ -120.467255024514571, 30.774542921911781 ], [ -120.436073214853394, 30.779733962148871 ], [ -120.329759749494144, 30.808130874853227 ], [ -120.231449137833721, 30.842560929877557 ], [ -120.18615058263893, 30.861340959890839 ], [ -120.108467626794706, 30.90919850566177 ], [ -120.041944446156464, 30.940325521009328 ], [ -119.932375045004065, 30.97138332248706 ], [ -119.906131452694353, 30.967530417066641 ], [ -119.941635284004775, 30.961370382651971 ], [ -119.966323486850854, 30.948231283029656 ], [ -119.93228468245178, 30.930739400038178 ], [ -119.701696752512987, 30.894640521707991 ], [ -119.643746478695903, 30.892667926417896 ], [ -119.620595400542243, 30.871073199031621 ], [ -119.639894534579241, 30.850247514643435 ], [ -119.699308874003918, 30.827095475186034 ], [ -119.819097895297148, 30.803428176919923 ], [ -119.782472222513263, 30.794476516422186 ], [ -119.758525184856595, 30.77338551219966 ], [ -119.723075186556031, 30.770816908586056 ], [ -119.665604603309021, 30.778741896681332 ], [ -119.620577135771043, 30.791707961629083 ], [ -119.527475829118927, 30.833939957869013 ], [ -119.498193555663022, 30.857472673610467 ], [ -119.476191235487775, 30.86342122120066 ], [ -119.398128564663239, 30.857761064734746 ], [ -119.353924934436975, 30.84566017315985 ], [ -119.30358049587096, 30.824173111793307 ], [ -119.322001959586402, 30.803408950844968 ], [ -119.342620002365095, 30.791700271199097 ], [ -119.277309025752587, 30.775484999584442 ], [ -119.205061281297333, 30.772101210392865 ], [ -119.136124266948855, 30.759081312435256 ], [ -119.039170054876308, 30.785759414038878 ], [ -118.963269356180149, 30.791454177439711 ], [ -118.891988683294983, 30.790569777991916 ], [ -118.799312272899314, 30.80509315501078 ], [ -118.64250921210818, 30.785305678670014 ], [ -118.602582422255011, 30.790442885897228 ], [ -118.539722770198892, 30.787024489770729 ], [ -118.47293715363756, 30.775069716365472 ], [ -118.449315997951345, 30.762318983457202 ], [ -118.520831228950911, 30.735333264654333 ], [ -118.532496649928135, 30.707459301188685 ], [ -118.507509481616552, 30.695858287562551 ], [ -118.462175358183089, 30.69385877576752 ], [ -118.456469059137291, 30.677581980713018 ], [ -118.428317278888585, 30.673521433683121 ], [ -118.286950833676542, 30.674740366835088 ], [ -118.297766462140885, 30.666999949059345 ], [ -118.304658048707495, 30.657648386202609 ], [ -118.348428130943589, 30.636930367834161 ], [ -118.096479070429169, 30.625256295123204 ], [ -118.062602726363451, 30.636757333159586 ], [ -118.010468340219404, 30.641333138998206 ], [ -117.899713651546222, 30.657160043898827 ], [ -117.858023830619942, 30.650242502131036 ], [ -117.808918512584597, 30.634065682666282 ], [ -117.763565163076194, 30.630701119549656 ], [ -117.721170706502917, 30.63399262358147 ], [ -117.62232657126259, 30.657071603954044 ], [ -117.508208280776515, 30.658209787591211 ], [ -117.461508144717698, 30.650684701854942 ], [ -117.412095209483141, 30.653960825026786 ], [ -117.263467075761668, 30.627517281537582 ], [ -117.208717943424119, 30.62440650261032 ], [ -117.135511779132514, 30.589968757155994 ], [ -117.09769312839785, 30.588938239538564 ], [ -117.054863201226908, 30.603550056502208 ], [ -117.017749186139241, 30.603100166348327 ], [ -116.98146766009701, 30.589118964643113 ], [ -116.922124457149664, 30.584831549928779 ], [ -116.89449754874714, 30.562748480238724 ], [ -116.864663486940117, 30.554715826123704 ], [ -116.639817424285781, 30.538331365049466 ], [ -116.528502295527716, 30.545802617775877 ], [ -116.366228455108939, 30.543849248560736 ], [ -116.287976407446138, 30.5333748829268 ], [ -116.205889719134106, 30.534713017743471 ], [ -116.071821491973907, 30.496514652028509 ], [ -116.000677324220902, 30.49057379486829 ], [ -115.986876847620238, 30.481737490820272 ], [ -115.7845041439775, 30.472439760973401 ], [ -115.713704122966135, 30.492354129408852 ], [ -115.590225617889587, 30.497637454805712 ], [ -115.47903738122622, 30.514383366089042 ], [ -115.416041224037954, 30.514210331414478 ], [ -115.342753348927801, 30.510042118364851 ], [ -115.314546774365468, 30.512049320589853 ], [ -115.294208470977324, 30.519374455146632 ], [ -115.115547285573072, 30.490527652288399 ], [ -115.015537088886902, 30.457520326810517 ], [ -114.971740090145857, 30.433157044631137 ], [ -114.762512329478909, 30.398323242032802 ], [ -114.702021329856905, 30.378843382891262 ], [ -114.660557415311317, 30.357371702384683 ], [ -114.636312373492885, 30.355056882960444 ], [ -114.619175211584263, 30.361332273824829 ], [ -114.546077674616129, 30.359490415844419 ], [ -114.518540167462149, 30.356468076861937 ], [ -114.518540167462149, 30.254196893761382 ], [ -114.518540167462149, 30.151925710660826 ], [ -114.518540167462149, 30.049654527560268 ], [ -114.518540167462149, 29.947383344459709 ], [ -114.518540167462149, 29.845100625714185 ], [ -114.518540167462149, 29.742840978258606 ], [ -114.518540167462149, 29.640565949943053 ], [ -114.518540167462149, 29.538294766842508 ], [ -114.518540167462149, 29.436023583741949 ], [ -114.518540167462149, 29.333752400641394 ], [ -114.518540167462149, 29.231481217540839 ], [ -114.518540167462149, 29.129210034440284 ], [ -114.518540167462149, 29.026938851339736 ], [ -114.518540167462149, 28.924667668239181 ], [ -114.518540167462149, 28.822396485138622 ], [ -114.518540167462149, 28.720125302038063 ], [ -114.518540167462149, 28.617854118937508 ], [ -114.518540167462149, 28.515579090621966 ], [ -114.518540167462149, 28.413300217091425 ], [ -114.518540167462149, 28.311036724420852 ], [ -114.518540167462149, 28.208757850890322 ], [ -114.518540167462149, 28.106494358219749 ], [ -114.518540167462149, 28.004223175119193 ], [ -114.518540167462149, 27.901951992018638 ], [ -114.518540167462149, 27.79968080891808 ], [ -114.518540167462149, 27.697409625817535 ], [ -114.518540167462149, 27.595138442716976 ], [ -114.518540167462149, 27.492867259616418 ], [ -114.518540167462149, 27.390592231300879 ], [ -114.518540167462149, 27.28832104820032 ], [ -114.518540167462149, 27.186049865099761 ], [ -114.518540167462149, 27.083778681999206 ], [ -114.434752932820601, 27.069382197075029 ], [ -114.351689559901004, 27.055112604245533 ], [ -114.326278456636743, 27.083597956894657 ], [ -114.236712825168325, 27.061814813973857 ], [ -114.158441551430542, 27.042796380631174 ], [ -114.108522970424744, 27.067201960175453 ], [ -114.054497699809161, 27.093610896729743 ], [ -113.981589539679305, 27.095491206860071 ], [ -113.899964277166134, 27.097598384674825 ], [ -113.845532375065289, 27.098990352501367 ], [ -113.845532375065289, 27.076499690022317 ], [ -113.865735134625027, 27.03913958117527 ], [ -113.882601208876821, 27.007943351957877 ], [ -113.837573741338844, 26.979246512484281 ] ] ], [ [ [ -123.306241659302557, 29.158302931057904 ], [ -123.319815748870667, 29.156330335767812 ], [ -123.31905583825818, 29.161702101109448 ], [ -123.279174710333024, 29.17589094442415 ], [ -123.205561433904293, 29.193525100370273 ], [ -123.208247316575125, 29.189691421024804 ], [ -123.247595401572227, 29.176056288668732 ], [ -123.306241659302557, 29.158302931057904 ] ] ], [ [ [ -125.17985727032611, 28.25270096780099 ], [ -125.174539337994347, 28.244179971382195 ], [ -125.137968459524075, 28.245564248778749 ], [ -125.086710301745967, 28.241884378032907 ], [ -125.029999629111444, 28.233617165803473 ], [ -124.973912361957233, 28.236593362206065 ], [ -124.90317482568949, 28.262783121505912 ], [ -124.860933216412064, 28.26965452069382 ], [ -124.818438784249054, 28.273292094074762 ], [ -124.772570656583781, 28.266905191975653 ], [ -124.727751311307173, 28.253016275430205 ], [ -124.71043342429401, 28.244822122285591 ], [ -124.696633428345223, 28.230525612951169 ], [ -124.68749046840172, 28.213206764634251 ], [ -124.673871197557474, 28.200798255860128 ], [ -124.589894586077662, 28.185498145413185 ], [ -124.536230765671164, 28.179384253578398 ], [ -124.523307959392071, 28.171001684899259 ], [ -124.511877096529261, 28.159416052133082 ], [ -124.467447079270414, 28.150606664589993 ], [ -124.421063692796452, 28.153828954751987 ], [ -124.395172418310239, 28.150698949749774 ], [ -124.316404631186828, 28.150245214380895 ], [ -124.218392504340045, 28.137406041527846 ], [ -124.234263629213075, 28.103510471387175 ], [ -124.266123638668176, 28.088625644159205 ], [ -124.355960357793407, 28.093416782037281 ], [ -124.44544427844329, 28.0885871920093 ], [ -124.482585690687756, 28.071133761167722 ], [ -124.513541113316364, 28.049069917552615 ], [ -124.517746336560279, 28.027563630111125 ], [ -124.535797217680994, 28.017689118015689 ], [ -124.55451668555817, 28.013328644216536 ], [ -124.569727394756569, 28.025229584611935 ], [ -124.590020997520469, 28.061505342831673 ], [ -124.604300684039316, 28.071514437451775 ], [ -124.619991083807776, 28.077828280466065 ], [ -124.663760685391992, 28.089287021137558 ], [ -124.708182050917117, 28.096546787039493 ], [ -124.734154555569987, 28.097415805627328 ], [ -124.752874023447163, 28.109993503861045 ], [ -124.763237839150122, 28.128189061195769 ], [ -124.781026284347746, 28.137586766632396 ], [ -124.816249895615741, 28.150933507864181 ], [ -124.852278598772358, 28.161442480433038 ], [ -124.964724220737594, 28.184221534036361 ], [ -125.001702691996854, 28.187224646943889 ], [ -125.039223338569741, 28.184756018920037 ], [ -125.079394299574801, 28.174366248015886 ], [ -125.118344404820391, 28.15894693590425 ], [ -125.158207267974348, 28.147426671792914 ], [ -125.199489976763516, 28.14489267511421 ], [ -125.238928424312888, 28.151614110917485 ], [ -125.276042439400555, 28.166668127605035 ], [ -125.294635976486802, 28.177342444418478 ], [ -125.30458354766705, 28.195734107717726 ], [ -125.304067808206455, 28.214129616231961 ], [ -125.299031057220859, 28.231871438197821 ], [ -125.279026806885, 28.27477250184608 ], [ -125.244056018502633, 28.283139689665262 ], [ -125.17985727032611, 28.25270096780099 ] ] ], [ [ [ -116.943539420735121, 27.267849123591255 ], [ -116.987888207827297, 27.26497290277841 ], [ -117.008190942976768, 27.269402590447392 ], [ -117.011120996799491, 27.274216799615402 ], [ -117.002682672502971, 27.291885562496446 ], [ -117.00337961772, 27.299337589147914 ], [ -116.980997582564441, 27.302140750875939 ], [ -116.955331733807043, 27.293750491766808 ], [ -116.94788066845932, 27.285075686748389 ], [ -116.943539420735121, 27.267849123591255 ] ] ], [ [ [ -125.627567187307221, 27.138780637222368 ], [ -125.551910659762967, 27.115809322869517 ], [ -125.503420095474226, 27.11816259444366 ], [ -125.464931416027483, 27.098971126426413 ], [ -125.449015109878331, 27.083390315285172 ], [ -125.506802442710182, 27.094587581337315 ], [ -125.590299844271826, 27.093791621834292 ], [ -125.703224435829313, 27.140660947352686 ], [ -125.743702533381736, 27.151316038091181 ], [ -125.734469210885948, 27.1775942373358 ], [ -125.691151422063101, 27.191087096737228 ], [ -125.668868641519481, 27.155684202320312 ], [ -125.627567187307221, 27.138780637222368 ] ] ], [ [ [ -118.375051438233598, 27.105304195515657 ], [ -118.391954042027791, 27.104019893708852 ], [ -118.369372055692722, 27.121281063800907 ], [ -118.353699920695476, 27.155003599267008 ], [ -118.332583922575509, 27.150320127408655 ], [ -118.328342650441058, 27.144133176489056 ], [ -118.363204330848077, 27.109587765014993 ], [ -118.375051438233598, 27.105304195515657 ] ] ], [ [ [ -116.848185779402357, 27.136358151778396 ], [ -116.848330936268241, 27.127141171446329 ], [ -116.85930902506594, 27.118308712613299 ], [ -116.848782749029624, 27.102066524493708 ], [ -116.866996571135559, 27.074157954093138 ], [ -116.874032353264312, 27.056416132127282 ], [ -116.883762669797605, 27.045272699085011 ], [ -116.893529515873297, 27.040969903510714 ], [ -116.903332891491402, 27.04350005497442 ], [ -116.905376623258832, 27.049648553744127 ], [ -116.899642446404329, 27.059415399819823 ], [ -116.922766608053053, 27.059107782620586 ], [ -116.929793738448069, 27.083490290874924 ], [ -116.917006475997397, 27.091196101715752 ], [ -116.912385488882634, 27.101632015199797 ], [ -116.910956030209945, 27.10864953255733 ], [ -116.895880864839938, 27.139649655810203 ], [ -116.890490834727103, 27.141818357064807 ], [ -116.888754720158929, 27.134439389498173 ], [ -116.883871297121075, 27.132270688243565 ], [ -116.875840565613544, 27.135289182011057 ], [ -116.863830997894681, 27.149074277751758 ], [ -116.858793766257207, 27.150681577617753 ], [ -116.848185779402357, 27.136358151778396 ] ] ], [ [ [ -116.405666902658325, 27.136069760654109 ], [ -116.397880342302699, 27.126445187533058 ], [ -116.330633299942505, 27.1287600069573 ], [ -116.311281294199404, 27.127060421931532 ], [ -116.303575483358571, 27.122611508187589 ], [ -116.312691526797153, 27.116082333133843 ], [ -116.338628463211364, 27.107492122845208 ], [ -116.414502245402588, 27.092453487017625 ], [ -116.47615930647045, 27.072646784601908 ], [ -116.484208302749181, 27.074484797367329 ], [ -116.495448827469943, 27.096167964698388 ], [ -116.506844122094094, 27.104942745306559 ], [ -116.513798193404313, 27.117151302901181 ], [ -116.513689566080814, 27.121688656589892 ], [ -116.502375982275211, 27.130117367848918 ], [ -116.479867055024968, 27.142433591463277 ], [ -116.463896915865945, 27.146882505207209 ], [ -116.405666902658325, 27.136069760654109 ] ] ], [ [ [ -115.959276855722663, 27.096675533077125 ], [ -115.970453934396105, 27.088119929723412 ], [ -116.000966676648943, 27.091157649565851 ], [ -116.017280962549606, 27.096583247917351 ], [ -115.962640457535542, 27.119085446041368 ], [ -115.953642654457937, 27.114582699287567 ], [ -115.959276855722663, 27.096675533077125 ] ] ], [ [ [ -123.315194281104041, 27.112936947271663 ], [ -123.283063183992112, 27.095571956374869 ], [ -123.266016384635776, 27.094595271767297 ], [ -123.212118006114864, 27.099878597164157 ], [ -123.192349275197174, 27.096152583838425 ], [ -123.173186165640459, 27.088662105037059 ], [ -123.161330406521216, 27.077230280870506 ], [ -123.159069420106846, 27.057139032545489 ], [ -123.167832665070051, 27.03919725940013 ], [ -123.165218880180291, 27.013891899548085 ], [ -123.167109283999963, 27.002967643760257 ], [ -123.138496077952396, 26.988624991845946 ], [ -123.129552107884649, 26.969183584854321 ], [ -123.124921988384301, 26.948292531811298 ], [ -123.187049607636595, 26.941309621388662 ], [ -123.249150791035859, 26.940206044686413 ], [ -123.302732900623795, 26.92606334395159 ], [ -123.313711470073358, 26.915608204392608 ], [ -123.305128950214709, 26.90010045233619 ], [ -123.319842665375603, 26.896139880896047 ], [ -123.333435019714898, 26.899531360517607 ], [ -123.359353210706047, 26.913908619366843 ], [ -123.387830872925207, 26.920745411619826 ], [ -123.487470967668543, 26.931327443273496 ], [ -123.612558695218581, 26.973051871134686 ], [ -123.666394108344022, 26.981680533573225 ], [ -123.721079313982358, 27.012192314522316 ], [ -123.77053743049305, 27.051025140710699 ], [ -123.738315970828836, 27.057254388995197 ], [ -123.70589552128888, 27.0604305365773 ], [ -123.560505058589342, 27.054643488016701 ], [ -123.542327766025821, 27.082440547182536 ], [ -123.523626082267981, 27.089385005455256 ], [ -123.477432553284146, 27.097252315325683 ], [ -123.434286837832119, 27.112663937007348 ], [ -123.414924738399662, 27.112283260723295 ], [ -123.395146875096373, 27.106350093993058 ], [ -123.354225616516302, 27.115593990830057 ], [ -123.332521781154668, 27.117566586120152 ], [ -123.315194281104041, 27.112936947271663 ] ] ], [ [ [ -116.875352223309761, 26.913331837118275 ], [ -116.914003363089861, 26.908283069835829 ], [ -116.923155936070827, 26.918630543375087 ], [ -116.902808019645207, 26.944385793381013 ], [ -116.886620625839242, 26.958997610344657 ], [ -116.874574528577966, 26.96245445862106 ], [ -116.83013537893352, 26.991520438733748 ], [ -116.780831071022433, 27.012646049891181 ], [ -116.735577697103764, 27.043573114059235 ], [ -116.689628339271849, 27.08765081349458 ], [ -116.681100613726812, 27.104081417148695 ], [ -116.659794277464812, 27.105773311744489 ], [ -116.624742258915774, 27.094975948051349 ], [ -116.603047555939753, 27.079798884484109 ], [ -116.613148935719622, 27.067717218984171 ], [ -116.729257124963254, 27.005047905070086 ], [ -116.739014358001469, 26.996872978000425 ], [ -116.749577163580199, 26.97560124867335 ], [ -116.759126755008936, 26.968176138526829 ], [ -116.77444609153082, 26.96478850412025 ], [ -116.785587601965602, 26.955490774273379 ], [ -116.792551286313284, 26.940259877696278 ], [ -116.806867021722667, 26.932319508741031 ], [ -116.828516543422552, 26.9316504413327 ], [ -116.843519611011473, 26.927455311778132 ], [ -116.851857959718217, 26.919734120077344 ], [ -116.875352223309761, 26.913331837118275 ] ] ], [ [ [ -116.975408562575836, 27.001556449858775 ], [ -116.993748315472715, 26.990839835680433 ], [ -117.062947765744298, 26.997334403799282 ], [ -117.048533016048907, 27.01843309845178 ], [ -116.995647851677973, 27.031772149253598 ], [ -116.937761023908251, 27.011015678735244 ], [ -116.975408562575836, 27.001556449858775 ] ] ], [ [ [ -115.76576641132911, 26.915139088163777 ], [ -115.782550774762342, 26.91311265986382 ], [ -115.757337700070082, 26.93606474814171 ], [ -115.723516150317977, 26.961439321863583 ], [ -115.691682576715934, 26.977358511923974 ], [ -115.65030037298888, 26.984014579072419 ], [ -115.65493097314112, 26.972436636736226 ], [ -115.708928365948026, 26.951076467464368 ], [ -115.76576641132911, 26.915139088163777 ] ] ], [ [ [ -121.489436215851427, 26.480675936824699 ], [ -121.515128019810021, 26.475061922938664 ], [ -121.542376174535974, 26.477892001171625 ], [ -121.563818054626381, 26.512564304740355 ], [ -121.547395141402234, 26.513640964937679 ], [ -121.512976622022848, 26.536439244615963 ], [ -121.43680387436612, 26.55492319307497 ], [ -121.418093058222667, 26.557022680459752 ], [ -121.489436215851427, 26.480675936824699 ] ] ], [ [ [ -118.537923209583383, 26.448445344774889 ], [ -118.548223579239007, 26.446203584435466 ], [ -118.573806755874102, 26.456927889043776 ], [ -118.590609384078562, 26.468286654125517 ], [ -118.579504403186178, 26.476934542639007 ], [ -118.529901129809588, 26.495164706908653 ], [ -118.506226141113501, 26.495472324107887 ], [ -118.496566961057525, 26.492576877220088 ], [ -118.492688100435927, 26.486935946829117 ], [ -118.494586675337445, 26.478488009495138 ], [ -118.505276373010844, 26.467998263001235 ], [ -118.537923209583383, 26.448445344774889 ] ] ], [ [ [ -118.513722387737346, 26.404767547698555 ], [ -118.501062017381344, 26.401925933820628 ], [ -118.487849858674224, 26.422763153853779 ], [ -118.478489644083737, 26.42341299518716 ], [ -118.437070910814299, 26.405778839241037 ], [ -118.411623278007625, 26.409685577671318 ], [ -118.395281114298271, 26.388017791200227 ], [ -118.380613541717253, 26.386029815050176 ], [ -118.367012054992358, 26.388667632533608 ], [ -118.358827514885206, 26.387141082182406 ], [ -118.361667206155659, 26.364215910409442 ], [ -118.39190886075167, 26.34096389536229 ], [ -118.405979463705393, 26.335096097286893 ], [ -118.425703493998839, 26.341083097026996 ], [ -118.433082461565476, 26.343324857366419 ], [ -118.446041797386982, 26.353599271820855 ], [ -118.455881702547501, 26.366584562843556 ], [ -118.461723545421705, 26.366784514023056 ], [ -118.484819829261752, 26.351519010511034 ], [ -118.484222859634485, 26.343978543914794 ], [ -118.474619435195876, 26.332619778833056 ], [ -118.476029667793625, 26.325548428465641 ], [ -118.501188909476014, 26.322183865349018 ], [ -118.525858847550893, 26.323937283384655 ], [ -118.555973610052234, 26.314043545214272 ], [ -118.56317185251433, 26.32021127005892 ], [ -118.567765923124142, 26.337576260955725 ], [ -118.577171318990736, 26.33560366566563 ], [ -118.591360162305449, 26.314331936338554 ], [ -118.606860223931875, 26.30085830301207 ], [ -118.635148509312742, 26.289680263034889 ], [ -118.641324885891123, 26.284273890758328 ], [ -118.662042904259579, 26.283520228620212 ], [ -118.692745023350696, 26.276495020832684 ], [ -118.711691358912304, 26.277660120974787 ], [ -118.824706072696131, 26.3007660178523 ], [ -118.851257282205083, 26.30921395518628 ], [ -118.758328048923772, 26.362174101249522 ], [ -118.709439024231671, 26.382646025858588 ], [ -118.681169964925743, 26.381542449156342 ], [ -118.652881679544876, 26.375159392272209 ], [ -118.63794205800329, 26.376189909889654 ], [ -118.636839442604781, 26.39964956654628 ], [ -118.663164745733042, 26.41715683039773 ], [ -118.662178448087985, 26.424428131944637 ], [ -118.603921518375444, 26.436402131424849 ], [ -118.582090310267247, 26.434683320324126 ], [ -118.558044258324571, 26.42855789284436 ], [ -118.535254630380024, 26.418583405159179 ], [ -118.513722387737346, 26.404767547698555 ] ] ], [ [ [ -112.305888105517099, 26.335276822391442 ], [ -112.216936747143407, 26.327282620426327 ], [ -112.151825721710395, 26.329089871471837 ], [ -112.092347936238383, 26.27678341195697 ], [ -112.055722263454498, 26.234516808782132 ], [ -112.034235202087956, 26.204908653355794 ], [ -112.022043947960796, 26.176323325116911 ], [ -112.005747926831333, 26.14873006234556 ], [ -112.00721295374268, 26.14484254999023 ], [ -112.041550723607259, 26.163472616618876 ], [ -112.066231236023356, 26.201163413955108 ], [ -112.078872380304404, 26.215905968228427 ], [ -112.091325109050928, 26.222562035376871 ], [ -112.104446905205776, 26.236470177997269 ], [ -112.129931067554878, 26.272453699877744 ], [ -112.130890448694998, 26.282589686592519 ], [ -112.142203071196846, 26.291975856384177 ], [ -112.155271034341837, 26.295901820889398 ], [ -112.170102028559938, 26.294348354033275 ], [ -112.175202706244733, 26.290730006727273 ], [ -112.172932106792899, 26.265897608319058 ], [ -112.161275337549398, 26.238277429042775 ], [ -112.097085241106583, 26.177976767562797 ], [ -112.054191867888306, 26.143658223773173 ], [ -112.045747775769314, 26.132245625681573 ], [ -112.040095309733374, 26.100880207004614 ], [ -112.058606174697331, 26.086675982829945 ], [ -112.035880954103874, 26.057744585241927 ], [ -112.036694217074341, 26.052084428776006 ], [ -112.041648776589511, 26.046558854834757 ], [ -112.102801153189873, 26.033735062841657 ], [ -112.158843239067934, 25.980071242435177 ], [ -112.220147501660421, 25.948636609888375 ], [ -112.248398296195134, 25.943591687820938 ], [ -112.261964214681385, 25.948836561067889 ], [ -112.274824536216897, 25.960879774417918 ], [ -112.2823746158506, 25.976979689582869 ], [ -112.284627911835003, 25.997128616132734 ], [ -112.269352795285499, 26.009806289956199 ], [ -112.23901212640348, 26.075751727042132 ], [ -112.238162333890614, 26.097400287438269 ], [ -112.275972332891527, 26.127423726083563 ], [ -112.298753309102352, 26.152021566377371 ], [ -112.311088758791669, 26.186297812802088 ], [ -112.331724105037821, 26.276948756201563 ], [ -112.341310226008972, 26.305941677229423 ], [ -112.354830001915332, 26.330105008229303 ], [ -112.372285355364411, 26.349419523126251 ], [ -112.385470597566609, 26.370664335948405 ], [ -112.394385728521925, 26.39382406583578 ], [ -112.391013474975324, 26.402821868913389 ], [ -112.36073625214064, 26.390747893843436 ], [ -112.324410506126014, 26.357452177241271 ], [ -112.305888105517099, 26.335276822391442 ] ] ], [ [ [ -112.177246438012162, 26.358809538132896 ], [ -112.179741982540946, 26.350127042684491 ], [ -112.2274726362172, 26.350976835197379 ], [ -112.275691632197237, 26.363781401115517 ], [ -112.29935124003336, 26.380511931538898 ], [ -112.294583173445233, 26.388037017275181 ], [ -112.249782573591688, 26.395081451137649 ], [ -112.20740638178961, 26.379208403657138 ], [ -112.177246438012162, 26.358809538132896 ] ] ], [ [ [ -112.673421444732696, 26.364181303474531 ], [ -112.623410578567132, 26.330066556079409 ], [ -112.622995295348147, 26.322237698358876 ], [ -112.633177424642824, 26.29881264863716 ], [ -112.660378475485146, 26.292175807563677 ], [ -112.652691890719268, 26.282862696856846 ], [ -112.632427607719691, 26.275845179499303 ], [ -112.618002283683083, 26.281686061069774 ], [ -112.565207481864434, 26.314524197088076 ], [ -112.548947990277384, 26.321441738855867 ], [ -112.539108085116865, 26.322130032339153 ], [ -112.474791096579395, 26.312236294168763 ], [ -112.418524065624368, 26.296570888297744 ], [ -112.401930040333156, 26.284054713503878 ], [ -112.392586167906401, 26.262160059348354 ], [ -112.407517137714251, 26.214729332441351 ], [ -112.453694324534368, 26.206473655856904 ], [ -112.475462086595201, 26.207331138799766 ], [ -112.49871986946485, 26.214221764062625 ], [ -112.53625878080895, 26.197725791753658 ], [ -112.5051317654614, 26.185086570080109 ], [ -112.410385668097121, 26.18221803969724 ], [ -112.381608079108702, 26.155493795513728 ], [ -112.373379319029198, 26.134914204884936 ], [ -112.393816636703349, 26.097092670239036 ], [ -112.44749007014731, 26.107547809798017 ], [ -112.494868886651943, 26.129469380458474 ], [ -112.59203746946018, 26.160488729786302 ], [ -112.615270258432375, 26.161942221052691 ], [ -112.630789546133769, 26.156455099261343 ], [ -112.635023127838224, 26.137625081453187 ], [ -112.634027217155705, 26.096823505189704 ], [ -112.659972805303653, 26.075659441882351 ], [ -112.73655987487561, 26.084991778664133 ], [ -112.76662176567082, 26.115903461972231 ], [ -112.794601472548706, 26.164791525360606 ], [ -112.900173772718546, 26.222688927471559 ], [ -112.928759100957421, 26.234270715022738 ], [ -112.966805580680273, 26.268954554236444 ], [ -112.951576606710674, 26.296390163193188 ], [ -112.947091163424318, 26.312290127178635 ], [ -112.926824957817246, 26.316492947163169 ], [ -112.897126439838644, 26.328755337767667 ], [ -112.880486271967527, 26.35529885684663 ], [ -112.853781253858983, 26.333811795480088 ], [ -112.818095736140265, 26.31315914576647 ], [ -112.817617006873945, 26.332565945823184 ], [ -112.800823030403222, 26.348046781374677 ], [ -112.765825806167811, 26.347477689556094 ], [ -112.749383666868709, 26.350723051008011 ], [ -112.726396971655902, 26.365192595017014 ], [ -112.693262754083349, 26.372663847743425 ], [ -112.673421444732696, 26.364181303474531 ] ] ], [ [ [ -118.682110119990909, 26.217063377940548 ], [ -118.679578045919698, 26.197837302988379 ], [ -118.665344021328863, 26.200186729347536 ], [ -118.611481211046623, 26.219993431763257 ], [ -118.583401528578975, 26.225799706398817 ], [ -118.546839301842454, 26.226703331921563 ], [ -118.517864645585789, 26.217678612339018 ], [ -118.511968008397957, 26.210768761001209 ], [ -118.514500082469169, 26.202501548771778 ], [ -118.537687690165228, 26.18573641141349 ], [ -118.536711005557663, 26.174846762560584 ], [ -118.511814199798351, 26.154824728105396 ], [ -118.45057242194946, 26.143912007962548 ], [ -118.443138660069195, 26.137886556072544 ], [ -118.443474155077112, 26.130642171030559 ], [ -118.485624440498498, 26.097473346523085 ], [ -118.501098546923743, 26.089732928747345 ], [ -118.512058370950228, 26.087867999476984 ], [ -118.588619485321004, 26.09382808271215 ], [ -118.658687954180436, 26.104698505490106 ], [ -118.687048337342361, 26.106551899115495 ], [ -118.697068006303681, 26.103025836969273 ], [ -118.716900663920597, 26.092824481599653 ], [ -118.702692594530959, 26.089821368692128 ], [ -118.64127009157751, 26.087379657173202 ], [ -118.619620569877625, 26.072494829945228 ], [ -118.610179605772373, 26.06155134808246 ], [ -118.605458643067863, 26.049488908657466 ], [ -118.617712381938617, 26.044532426534801 ], [ -118.643974239019542, 26.040914079228799 ], [ -118.675454052842468, 26.040979447883643 ], [ -118.714395506354336, 26.02738661289246 ], [ -118.735854689912202, 26.011867325191062 ], [ -118.813818346450716, 26.007914444180905 ], [ -118.873088490313251, 25.987215651887396 ], [ -118.894032415062412, 25.976995070442825 ], [ -118.901340246151719, 25.964771131988236 ], [ -118.923695364802342, 25.955888685360343 ], [ -118.974193611967962, 25.947010083947426 ], [ -118.944078849466635, 25.939050488917232 ], [ -118.939357886762139, 25.932321362683972 ], [ -118.938797446677285, 25.922989025902197 ], [ -118.942957007993186, 25.914960217002161 ], [ -118.982829964836469, 25.879111277646352 ], [ -119.05824232122886, 25.849664621249623 ], [ -119.077369381895025, 25.850987375206326 ], [ -119.085571225469607, 25.85465955552219 ], [ -119.09229939039912, 25.860281259838203 ], [ -119.092588742827161, 25.865926035444161 ], [ -118.995408624373937, 25.925015454202153 ], [ -118.999261529794353, 25.927918591519926 ], [ -119.025695460246084, 25.929918103314947 ], [ -119.067575619314397, 25.946175672294508 ], [ -119.097110715655901, 25.93572437795051 ], [ -119.103838880585414, 25.936120435094516 ], [ -119.09595330594378, 25.950055494219853 ], [ -119.076690701449209, 25.966659132548543 ], [ -119.080055264565843, 25.971334913976911 ], [ -119.090653638383216, 25.975476210521606 ], [ -119.114998655791396, 25.977956374190441 ], [ -119.153107620257828, 25.97875233369345 ], [ -119.181341111325096, 25.97481867875824 ], [ -119.199680864221961, 25.966155409384793 ], [ -119.201182420675735, 25.962471693423964 ], [ -119.162132339840383, 25.963506056256392 ], [ -119.151515701251796, 25.959091749447371 ], [ -119.14098942521548, 25.950862989367845 ], [ -119.134586180952667, 25.941346082266517 ], [ -119.132307891070838, 25.930548718573387 ], [ -119.140491469874235, 25.916025341554516 ], [ -119.15912153650288, 25.897814403359824 ], [ -119.186423524238705, 25.901013622231865 ], [ -119.242365634527019, 25.941492200436159 ], [ -119.267053837373084, 26.0007623442987 ], [ -119.314874853601623, 26.046070512530967 ], [ -119.317063742234922, 26.056887102299061 ], [ -119.303417074233877, 26.084830279634538 ], [ -119.255152896977705, 26.124493672260861 ], [ -119.203271333719286, 26.135356404608835 ], [ -119.16629286246004, 26.152021566377371 ], [ -119.130562163465186, 26.157051107584856 ], [ -119.10845121596644, 26.156616598290938 ], [ -119.078237439179105, 26.149437581903801 ], [ -119.066055798089423, 26.134241292261606 ], [ -119.073344403103789, 26.127100728024374 ], [ -119.070559506146964, 26.123355488623687 ], [ -119.049361797208462, 26.114219257806418 ], [ -119.026446238472971, 26.082353961180701 ], [ -118.999696039088263, 26.054064714496086 ], [ -118.98189846150504, 26.042571366889675 ], [ -118.958493599162026, 26.035488480877298 ], [ -118.982711724475521, 26.057083208263577 ], [ -118.997027459884904, 26.083834368952015 ], [ -119.004217050613278, 26.137155965224352 ], [ -119.011144205418532, 26.151244832949303 ], [ -118.997597513007236, 26.155024679284899 ], [ -118.959344352978661, 26.152944417975078 ], [ -118.960393135367298, 26.160884786930321 ], [ -119.000763086248114, 26.178845786150632 ], [ -119.025595484656321, 26.193711387303651 ], [ -119.034928782741858, 26.205470054744396 ], [ -119.034340464848327, 26.215652184039062 ], [ -119.01232949293933, 26.230683129436663 ], [ -118.999831582916684, 26.23496669893601 ], [ -118.986944344876235, 26.236831628206367 ], [ -118.961261192651392, 26.233628564119343 ], [ -118.949721702465098, 26.228925866186039 ], [ -118.916795126502024, 26.195068748195276 ], [ -118.901357549619178, 26.184552085196437 ], [ -118.888570287168506, 26.184525168691508 ], [ -118.876705876315498, 26.190150718222512 ], [ -118.865745090985286, 26.201397972069529 ], [ -118.85444112021716, 26.208127098302782 ], [ -118.842793002707381, 26.210334251707295 ], [ -118.806130800381098, 26.205358543509675 ], [ -118.79390493931902, 26.207204246705082 ], [ -118.787899674807704, 26.215706017048923 ], [ -118.788152497693332, 26.230844628466258 ], [ -118.779109513339577, 26.236289452892713 ], [ -118.77688505646762, 26.247421350290026 ], [ -118.796870561380388, 26.26385195394414 ], [ -118.773955002644897, 26.268881495151632 ], [ -118.697936063587775, 26.256299951702928 ], [ -118.665434383881149, 26.242564843757108 ], [ -118.682110119990909, 26.217063377940548 ] ] ], [ [ [ -118.802016420341332, 26.226222680047762 ], [ -118.81179191815076, 26.2165212026269 ], [ -118.821034853684012, 26.219005211510719 ], [ -118.840586810606624, 26.230375512237426 ], [ -118.880557820432188, 26.246979150566119 ], [ -118.898771642538122, 26.258353296507821 ], [ -118.899820424926759, 26.263202112610756 ], [ -118.886165105191978, 26.268554651877444 ], [ -118.839230411018747, 26.255169458495747 ], [ -118.819307390849559, 26.242960900901114 ], [ -118.802016420341332, 26.226222680047762 ] ] ], [ [ [ -112.407209520515025, 26.051696062061971 ], [ -112.377503312106427, 26.013286209522541 ], [ -112.355906662112659, 25.983489638561672 ], [ -112.336772872320267, 25.947659925280817 ], [ -112.304684553225101, 25.873485728115352 ], [ -112.289726666912316, 25.845434884760138 ], [ -112.285043195053959, 25.830096322163303 ], [ -112.281490216402801, 25.789890754223329 ], [ -112.28630827078581, 25.781242865709849 ], [ -112.295894391756974, 25.773302496754606 ], [ -112.297776624494787, 25.76182837522315 ], [ -112.288886487436912, 25.731170476104428 ], [ -112.28830778258083, 25.684551089560415 ], [ -112.29669996429746, 25.658307497250703 ], [ -112.306457197335675, 25.654346925810561 ], [ -112.330395583258635, 25.662956362174135 ], [ -112.350056167504718, 25.677137515058853 ], [ -112.364589157561056, 25.691914676267089 ], [ -112.400345811757091, 25.738576360176005 ], [ -112.410981676420633, 25.760317205731916 ], [ -112.411631517754017, 25.775963385527987 ], [ -112.406117479457734, 25.787337531469682 ], [ -112.39440495459688, 25.794412727052084 ], [ -112.374084915979935, 25.813346565664983 ], [ -112.376997666335185, 25.816368904647462 ], [ -112.392451585381735, 25.812135322942989 ], [ -112.424020800453206, 25.809747444433935 ], [ -112.451794788329096, 25.824689949886753 ], [ -112.473452961762717, 25.832572640617148 ], [ -112.46909441057106, 25.859504526410134 ], [ -112.474881459131666, 25.867137278166151 ], [ -112.517474905580684, 25.858816232926848 ], [ -112.533501761660801, 25.866341318663132 ], [ -112.537020133377055, 25.876461924517951 ], [ -112.536224173874047, 25.891592845505301 ], [ -112.528093466776767, 25.904831920717371 ], [ -112.487651418114893, 25.938254529414209 ], [ -112.491731191219742, 25.944422254258868 ], [ -112.51137254939087, 25.945798841225443 ], [ -112.537271994958928, 25.957246046251964 ], [ -112.549146018849399, 25.994648452463913 ], [ -112.577018059707555, 26.015993240875801 ], [ -112.593475579866606, 26.01403987166066 ], [ -112.630916438228454, 25.953700758030777 ], [ -112.649446529267351, 25.940496289753632 ], [ -112.702106748561334, 25.932032971559686 ], [ -112.691370908308045, 25.948825025422909 ], [ -112.686487485270192, 25.963829054315582 ], [ -112.705190610983664, 26.009337173727367 ], [ -112.705750089764763, 26.026844437578802 ], [ -112.693289670588257, 26.039741288656721 ], [ -112.656102596415792, 26.045093827923399 ], [ -112.636368953084883, 26.052726579679415 ], [ -112.620995783553127, 26.065196611893384 ], [ -112.617169794637647, 26.077332110403191 ], [ -112.588340295246866, 26.109462726863253 ], [ -112.574830132377997, 26.115722736867681 ], [ -112.538990806059658, 26.115288227573757 ], [ -112.463522694049914, 26.079766131492136 ], [ -112.440624438781896, 26.074540484320138 ], [ -112.407209520515025, 26.051696062061971 ] ] ], [ [ [ -124.723989729742783, 25.993075759532822 ], [ -124.76019050627022, 25.976564406363899 ], [ -124.793090165728358, 25.982666762553716 ], [ -124.802847879418465, 25.994686904613808 ], [ -124.803109834689693, 25.99975105275621 ], [ -124.70845313857393, 26.013316971242464 ], [ -124.723989729742783, 25.993075759532822 ] ] ], [ [ [ -118.720272917467213, 25.972384657669298 ], [ -118.764766861425258, 25.961098951672376 ], [ -118.772679352571828, 25.961568067901204 ], [ -118.800189943220886, 25.938708264783084 ], [ -118.821179049246155, 25.928841443117626 ], [ -118.848897281504691, 25.946863965777794 ], [ -118.84180766636608, 25.974860976123132 ], [ -118.817616457557534, 25.993456435816874 ], [ -118.695204999640822, 25.987250258822314 ], [ -118.685737119030634, 25.982043837725271 ], [ -118.685501599612465, 25.977602614411314 ], [ -118.694490750956348, 25.973922743665469 ], [ -118.720272917467213, 25.972384657669298 ] ] ], [ [ [ -111.845969630941354, 25.929918103314947 ], [ -111.822692621996765, 25.918955395377225 ], [ -111.810030329033282, 25.930433362123672 ], [ -111.78639186987958, 25.929906567669981 ], [ -111.742567954633614, 25.919689831440401 ], [ -111.716468557886046, 25.904343578413581 ], [ -111.701745229687674, 25.886790171982248 ], [ -111.700497457423282, 25.876354258498218 ], [ -111.704955984204688, 25.852594675072325 ], [ -111.701691396677816, 25.828269845042847 ], [ -111.703500570330803, 25.815661385089221 ], [ -111.709341451901281, 25.80522547160518 ], [ -111.719235190071657, 25.796996711525654 ], [ -111.730015250297342, 25.79594696783327 ], [ -111.764126152477473, 25.817833931558816 ], [ -111.80319353678027, 25.857243539995768 ], [ -111.8329285843013, 25.869217539475969 ], [ -111.834132136593311, 25.865164682876056 ], [ -111.825964899953618, 25.853878976879134 ], [ -111.801693902934005, 25.832684151851868 ], [ -111.797333429134866, 25.819933418943588 ], [ -111.780260674577335, 25.804375679092296 ], [ -111.772608696746374, 25.792586249931631 ], [ -111.768269371629671, 25.777101569165154 ], [ -111.768450096734227, 25.763574102828805 ], [ -111.77315279466751, 25.75199616049261 ], [ -111.781073937547816, 25.744582585991061 ], [ -111.792225061020076, 25.741310308034201 ], [ -111.85175667950196, 25.744555669486125 ], [ -111.887261472116137, 25.736803716065413 ], [ -111.928770567937846, 25.741125737714658 ], [ -111.938764281697985, 25.748108648137283 ], [ -111.945039672562388, 25.759575079238754 ], [ -111.948204284499496, 25.787395209694541 ], [ -111.958649811021019, 25.827200875275508 ], [ -111.95613504041728, 25.85782416745932 ], [ -111.982932343685604, 25.885532786680379 ], [ -112.00586520588854, 25.902224864953851 ], [ -112.038845614861486, 25.917167370406681 ], [ -112.060605686492352, 25.93205219763464 ], [ -112.054618686752249, 25.943899305020164 ], [ -112.020886538248675, 25.95274329949816 ], [ -111.965496216311479, 25.950682264263296 ], [ -111.845969630941354, 25.929918103314947 ] ] ], [ [ [ -112.064150974713527, 25.874427805788013 ], [ -112.041468051484969, 25.850191415703307 ], [ -112.008597231139248, 25.852144784918448 ], [ -111.990138276577682, 25.833803109414085 ], [ -111.976220520919796, 25.80634827438239 ], [ -111.986341126774619, 25.788733344511211 ], [ -112.000945253308288, 25.792655463801459 ], [ -112.017133608418007, 25.782454108431839 ], [ -112.027044650055856, 25.74861621651602 ], [ -112.022451540749785, 25.714720646375351 ], [ -112.027406100264955, 25.680936587469404 ], [ -112.046270725008014, 25.646479615940134 ], [ -112.050187076475765, 25.623392945137574 ], [ -112.057566044042417, 25.616463867724811 ], [ -112.065696751139683, 25.614087524860725 ], [ -112.07620572370854, 25.620343689650156 ], [ -112.091405858565722, 25.625246338762963 ], [ -112.110641546555371, 25.605785705696377 ], [ -112.134145423184393, 25.605631897096764 ], [ -112.153561836278584, 25.649836488626786 ], [ -112.136206458419267, 25.723422367898706 ], [ -112.09733133486597, 25.738414861146399 ], [ -112.120464148248431, 25.758417669526636 ], [ -112.169379128141728, 25.781696601078725 ], [ -112.165228218559548, 25.794681892101416 ], [ -112.202332620609752, 25.832103524388305 ], [ -112.204503244471852, 25.841012887521146 ], [ -112.198579690779084, 25.872220652383497 ], [ -112.163843941163009, 25.900056163699247 ], [ -112.1179397646072, 25.90501264582192 ], [ -112.085926427204356, 25.893092479351566 ], [ -112.068001957526462, 25.882910350056903 ], [ -112.064150974713527, 25.874427805788013 ] ] ], [ [ [ -111.629199481070657, 25.762685858166016 ], [ -111.632962023938816, 25.757548650938798 ], [ -111.677437703125662, 25.758056219317538 ], [ -111.693570302618014, 25.762251348872102 ], [ -111.699601522330511, 25.777228461259842 ], [ -111.695479451860763, 25.791082770870368 ], [ -111.68507814531165, 25.801791694618728 ], [ -111.672517750545396, 25.822428963472376 ], [ -111.662677845384877, 25.856862863711708 ], [ -111.59734956530491, 25.818341499937546 ], [ -111.577327530849715, 25.801191841080222 ], [ -111.566584000166458, 25.780231574167367 ], [ -111.589770646558762, 25.77239887123185 ], [ -111.617859942063873, 25.768584417961346 ], [ -111.629199481070657, 25.762685858166016 ] ] ], [ [ [ -124.582117158107621, 25.8009572829658 ], [ -124.536158667890106, 25.79399359861813 ], [ -124.510466383279635, 25.798534797521825 ], [ -124.487785863310449, 25.79490106935587 ], [ -124.483806546447227, 25.786614631051485 ], [ -124.523199332068586, 25.768545965811441 ], [ -124.539206000770008, 25.769687994663592 ], [ -124.585951318104975, 25.791471137584402 ], [ -124.582117158107621, 25.8009572829658 ] ] ], [ [ [ -119.140817351844674, 25.758906011830419 ], [ -119.158017959800617, 25.75812927840235 ], [ -119.184035645729637, 25.767353949164402 ], [ -119.180563416593287, 25.778405097046914 ], [ -119.143657043115098, 25.791751838278703 ], [ -119.106425748970224, 25.789717719548765 ], [ -119.1035860576998, 25.782273383327279 ], [ -119.105303907496761, 25.773917731153077 ], [ -119.108379118185368, 25.769053534190178 ], [ -119.120225264267148, 25.764043219057637 ], [ -119.140817351844674, 25.758906011830419 ] ] ], [ [ [ -119.306772024313034, 25.731216618684307 ], [ -119.330719061969702, 25.722941716024902 ], [ -119.338668082658671, 25.725791020332807 ], [ -119.339798575865871, 25.732662419520711 ], [ -119.334119193324995, 25.743586675308535 ], [ -119.323069006746238, 25.754437872011536 ], [ -119.286099187220714, 25.775148199950014 ], [ -119.248931339123175, 25.788875617465862 ], [ -119.229966738790367, 25.788064277102876 ], [ -119.223501009783945, 25.77930872256966 ], [ -119.246705920947477, 25.761193914749732 ], [ -119.306772024313034, 25.731216618684307 ] ] ], [ [ [ -111.407113321475705, 25.616979126533533 ], [ -111.414319254367783, 25.558831785448199 ], [ -111.428210093520718, 25.562115599050028 ], [ -111.441395335722916, 25.562230955499736 ], [ -111.468354138020842, 25.553982969345256 ], [ -111.496795270697575, 25.557601316651255 ], [ -111.51009779195698, 25.564057432620199 ], [ -111.515000441069787, 25.571528685346607 ], [ -111.509909376422456, 25.588801391083635 ], [ -111.525697829173168, 25.598422118989699 ], [ -111.57882908730349, 25.601932800275964 ], [ -111.598758836598904, 25.606054870745705 ], [ -111.609775377546498, 25.624215821145519 ], [ -111.612451647179824, 25.648052308871222 ], [ -111.604113298473081, 25.656961672004051 ], [ -111.577344834317188, 25.663263979373372 ], [ -111.556446090844162, 25.692156924811496 ], [ -111.54487968415296, 25.696036746736841 ], [ -111.500738538670277, 25.753265081439451 ], [ -111.478565106427936, 25.749312200429291 ], [ -111.43975919674449, 25.714466862185986 ], [ -111.391205667060291, 25.664167604896129 ], [ -111.407113321475705, 25.616979126533533 ] ] ], [ [ [ -111.640756274724424, 25.665236574663467 ], [ -111.658626911392446, 25.664152224036162 ], [ -111.679796742522285, 25.669485537227896 ], [ -111.730051779839755, 25.698009342026925 ], [ -111.730974631437462, 25.706384220276092 ], [ -111.723774466367871, 25.715897282162423 ], [ -111.695216054633917, 25.733312260854103 ], [ -111.683505452380558, 25.737511235623654 ], [ -111.614920275203701, 25.735665532428246 ], [ -111.592962175000821, 25.730997441429853 ], [ -111.587980698980715, 25.722860966510105 ], [ -111.589084275682978, 25.714593754280674 ], [ -111.59628251814506, 25.706218876031507 ], [ -111.597945573628422, 25.697447940638327 ], [ -111.59409266820802, 25.688315555036045 ], [ -111.602079179743143, 25.679252383303592 ], [ -111.640756274724424, 25.665236574663467 ] ] ], [ [ [ -111.915929472477302, 25.697413333703416 ], [ -111.849614894752278, 25.689907474042087 ], [ -111.788843194435984, 25.690638064890265 ], [ -111.768088646525115, 25.676195437386202 ], [ -111.754359306401767, 25.66097607645407 ], [ -111.746401633979076, 25.646660341044683 ], [ -111.744194480574563, 25.633240540728067 ], [ -111.745832542160485, 25.6237428597017 ], [ -111.753221122764614, 25.613614563416895 ], [ -111.751609977683614, 25.61020770293538 ], [ -111.632942797863848, 25.576946593268126 ], [ -111.576956467603139, 25.541955136855183 ], [ -111.554610000686239, 25.523563473555942 ], [ -111.541732375683281, 25.508024959779604 ], [ -111.518345778111467, 25.469138300581349 ], [ -111.468896313334483, 25.424030083528578 ], [ -111.442960338224026, 25.410283439937775 ], [ -111.428237010025654, 25.396902091771068 ], [ -111.436511912685063, 25.396394523392328 ], [ -111.471347637890887, 25.406307487637665 ], [ -111.546733077778327, 25.436565484397391 ], [ -111.552891189585523, 25.435354241675398 ], [ -111.559710678371061, 25.41898516146113 ], [ -111.571403977156962, 25.404623283471853 ], [ -111.588740128941325, 25.394306571652528 ], [ -111.574849289788389, 25.391222709230203 ], [ -111.514041059929667, 25.397713432134054 ], [ -111.462999676146666, 25.368216787942441 ], [ -111.443141063328568, 25.362933462545584 ], [ -111.423878458833997, 25.34173479230332 ], [ -111.423228617500612, 25.333632924318483 ], [ -111.434441264412726, 25.317944447157508 ], [ -111.442996867766425, 25.311569080703372 ], [ -111.440139873028528, 25.307243213839133 ], [ -111.425885661058999, 25.30500145349971 ], [ -111.369574410131605, 25.309415760308731 ], [ -111.359544166829068, 25.301702259037917 ], [ -111.367926735508206, 25.240540269400086 ], [ -111.359951759618042, 25.218003464341159 ], [ -111.360069038675249, 25.207767502036628 ], [ -111.366588600691529, 25.19418235747542 ], [ -111.366815468375961, 25.182708235943974 ], [ -111.361751320233566, 25.170914961568311 ], [ -111.361099556292686, 25.160379072494528 ], [ -111.375388375197133, 25.132905011387876 ], [ -111.390453927529649, 25.128286908184364 ], [ -111.414799906241583, 25.128086957004864 ], [ -111.434025981193741, 25.135888898220458 ], [ -111.461002086959141, 25.159510053906683 ], [ -111.487255292306315, 25.19622801185033 ], [ -111.497366285123661, 25.201472885097282 ], [ -111.531811721007969, 25.206971542533608 ], [ -111.538060195367422, 25.211332016332754 ], [ -111.560072128580146, 25.212101059330841 ], [ -111.575645249291412, 25.227201218598271 ], [ -111.573763016553585, 25.247015611443974 ], [ -111.587228959450101, 25.267210680573736 ], [ -111.585556290929247, 25.276281542736164 ], [ -111.600658372804176, 25.280061389071758 ], [ -111.613401415282482, 25.274382006530892 ], [ -111.606789568106421, 25.254575304115175 ], [ -111.614241594757885, 25.23922136065837 ], [ -111.641598376807323, 25.245658250552353 ], [ -111.687204549201354, 25.294665515605431 ], [ -111.738995749907502, 25.334013600602535 ], [ -111.759279258982033, 25.343372853889242 ], [ -111.753844047593049, 25.354777761550871 ], [ -111.728306052234103, 25.360833975160801 ], [ -111.707578420828156, 25.360345632857015 ], [ -111.703410207778546, 25.367140127745117 ], [ -111.746655418168444, 25.405130851850593 ], [ -111.745234611229478, 25.415908989468779 ], [ -111.729482688021164, 25.435081231411083 ], [ -111.74916057573472, 25.443094659451141 ], [ -111.803112787265476, 25.437088433636085 ], [ -111.822185053618028, 25.441102838086103 ], [ -111.837775477796754, 25.456479852832846 ], [ -111.846946315548919, 25.469826594064635 ], [ -111.893746427197485, 25.472249079508607 ], [ -111.911434416153483, 25.470603327492704 ], [ -111.941965423177521, 25.490771480117523 ], [ -111.955856262330457, 25.503502986950849 ], [ -111.950338378819197, 25.510032162004606 ], [ -111.922214476379168, 25.521483212246114 ], [ -111.90579156315502, 25.519872067165128 ], [ -111.874230038513545, 25.507644283495544 ], [ -111.861894588824242, 25.50811724493937 ], [ -111.830540705792245, 25.524313290479075 ], [ -111.82575725834414, 25.538952023947655 ], [ -111.802326440799931, 25.550979856437728 ], [ -111.806052454125663, 25.563669065906165 ], [ -111.819020441680891, 25.585236876787505 ], [ -111.847723048976988, 25.591262328677512 ], [ -111.906306821963739, 25.578438536684416 ], [ -111.957265533624451, 25.558670286418593 ], [ -111.977677857401176, 25.566391478119392 ], [ -111.98210754507015, 25.578507750554245 ], [ -111.927513182635977, 25.611465088237249 ], [ -111.903594022787985, 25.629676026431941 ], [ -111.90822366163647, 25.640473390125081 ], [ -111.925840514115137, 25.654419984895377 ], [ -111.927305541026499, 25.689380679588396 ], [ -111.915929472477302, 25.697413333703416 ] ] ], [ [ [ -111.010489008249991, 25.399901359463605 ], [ -111.022661036302196, 25.36144151912929 ], [ -111.046751308217267, 25.322074208057231 ], [ -111.083550015675712, 25.300894763889936 ], [ -111.109449461243784, 25.30561668789818 ], [ -111.128504424128863, 25.322674061595748 ], [ -111.14618472265488, 25.321731983923087 ], [ -111.165030121322999, 25.325258046069319 ], [ -111.17561984340665, 25.339393056374146 ], [ -111.16561843921653, 25.357642446718742 ], [ -111.17444513022707, 25.371769766593598 ], [ -111.183867829561137, 25.359407400399352 ], [ -111.200434938347414, 25.348067861392565 ], [ -111.2422420383309, 25.333325307119246 ], [ -111.271073460329177, 25.305109119519443 ], [ -111.284673985750331, 25.286732837080159 ], [ -111.301639074288119, 25.306781788040283 ], [ -111.312492193598615, 25.354235586237223 ], [ -111.313920690967564, 25.374380667572105 ], [ -111.283606938590481, 25.404769401641495 ], [ -111.244439578697921, 25.433635430574679 ], [ -111.236528048855121, 25.519783627220349 ], [ -111.112018064857381, 25.563080748012627 ], [ -111.100451658166179, 25.560838987673204 ], [ -111.060026912971736, 25.528516110463624 ], [ -111.017018183303747, 25.483373286475938 ], [ -111.005876672868965, 25.463024408746559 ], [ -111.00554982959477, 25.427502312664938 ], [ -111.010489008249991, 25.399901359463605 ] ] ], [ [ [ -119.61589270260896, 25.516111446904485 ], [ -119.629503802371346, 25.505041072947019 ], [ -119.656009830604148, 25.505837032450042 ], [ -119.670912922603321, 25.509455379756041 ], [ -119.675868443422246, 25.519122250241995 ], [ -119.635011111541388, 25.548268979869473 ], [ -119.625677813455852, 25.552210325234675 ], [ -119.618425737983898, 25.551072141597498 ], [ -119.615169802190749, 25.53902508303247 ], [ -119.61589270260896, 25.516111446904485 ] ] ], [ [ [ -111.824572932127097, 25.419004387536084 ], [ -111.816913263866155, 25.409164482375562 ], [ -111.816388392019945, 25.402942924521039 ], [ -111.8670587125564, 25.379698599903868 ], [ -111.867971951116616, 25.374888235950841 ], [ -111.879872891512008, 25.360526357961565 ], [ -111.890508756175549, 25.355281484714613 ], [ -111.909373380918623, 25.339727590078319 ], [ -111.945356902799091, 25.32294322664508 ], [ -111.940038970467327, 25.373350149954661 ], [ -111.975787934233381, 25.402616081246851 ], [ -111.939775573240468, 25.417427849390005 ], [ -111.91613711408678, 25.413213493760487 ], [ -111.876962063764239, 25.411494682659768 ], [ -111.838744471974337, 25.424376152877713 ], [ -111.824572932127097, 25.419004387536084 ] ] ], [ [ [ -121.407511987872752, 25.338877797565424 ], [ -121.402195016844729, 25.338677846385924 ], [ -121.391379388380386, 25.341373342094222 ], [ -121.36868012298811, 25.361087759350177 ], [ -121.361264625879059, 25.361956777938012 ], [ -121.361155998555574, 25.355869802608151 ], [ -121.371899529238846, 25.336363026961685 ], [ -121.353703971904125, 25.310311695401502 ], [ -121.33672927032886, 25.297783984962674 ], [ -121.338430777962117, 25.293388904228607 ], [ -121.380970391401291, 25.284344958571104 ], [ -121.413418238098046, 25.290858752764898 ], [ -121.430510218730532, 25.288616992425474 ], [ -121.446073726404308, 25.27951921375811 ], [ -121.456708629764108, 25.289593677033043 ], [ -121.464078945597024, 25.337666554843445 ], [ -121.461673763620496, 25.346076040027519 ], [ -121.444011729865693, 25.362771963515986 ], [ -121.421168268911273, 25.370312430112225 ], [ -121.411274530740883, 25.368105276707709 ], [ -121.403053461091332, 25.361476126064211 ], [ -121.401009729323931, 25.354485525211601 ], [ -121.407511987872752, 25.338877797565424 ] ] ], [ [ [ -121.28303949472118, 25.346891225605493 ], [ -121.287949834263969, 25.319271046329206 ], [ -121.336051551186785, 25.336835988405511 ], [ -121.348910911418542, 25.345533864713872 ], [ -121.340320701129912, 25.352009206757756 ], [ -121.294597249678674, 25.353635732698709 ], [ -121.28303949472118, 25.346891225605493 ] ] ], [ [ [ -111.669587696722687, 25.191740645956493 ], [ -111.66099556382656, 25.187022567163233 ], [ -111.652305377948181, 25.190348678129965 ], [ -111.638099231166024, 25.202811019913959 ], [ -111.613020738998415, 25.200350082320082 ], [ -111.594898240748506, 25.196166488410483 ], [ -111.583820176361073, 25.191036971613251 ], [ -111.58969758747395, 25.17286064035347 ], [ -111.594229173340167, 25.143340924871914 ], [ -111.604618944244322, 25.132870404452966 ], [ -111.614829912651416, 25.118147076254591 ], [ -111.65034239569556, 25.126883404712864 ], [ -111.679146901188901, 25.145621137361246 ], [ -111.720917471629974, 25.177886336345967 ], [ -111.744186790144596, 25.201165267898055 ], [ -111.745986350760106, 25.210997482628592 ], [ -111.760736595463413, 25.218130356435843 ], [ -111.78941228625456, 25.258266710505989 ], [ -111.805698694346546, 25.289989734177063 ], [ -111.831490473894888, 25.293623462343017 ], [ -111.864082516153786, 25.302444385531075 ], [ -111.876625607452581, 25.319813221642864 ], [ -111.867954647649157, 25.335024892145015 ], [ -111.821589045294516, 25.342696096050926 ], [ -111.751882987947937, 25.303501819653444 ], [ -111.741264426751854, 25.286859729174846 ], [ -111.716305136248948, 25.267399096108271 ], [ -111.711558218343271, 25.240251878275803 ], [ -111.698897847987269, 25.229596787537318 ], [ -111.669587696722687, 25.191740645956493 ] ] ], [ [ [ -121.123333296612273, 25.273755236487453 ], [ -121.144676162416658, 25.266087877796526 ], [ -121.151367797803772, 25.256328722150805 ], [ -121.167591721152149, 25.252214342111046 ], [ -121.181238389153208, 25.244266282725821 ], [ -121.227151217442724, 25.208282760845339 ], [ -121.247263614450191, 25.201634384126887 ], [ -121.22504403962796, 25.232346116255471 ], [ -121.221553545720411, 25.242112962331177 ], [ -121.221137301197686, 25.248607530450016 ], [ -121.228019274726819, 25.271759569907417 ], [ -121.214599474410207, 25.270744433149943 ], [ -121.203565629995154, 25.27555479710297 ], [ -121.181355668210415, 25.296084399936895 ], [ -121.161370163297647, 25.297910877057351 ], [ -121.139955199712176, 25.322327992246606 ], [ -121.128370528249746, 25.324246754526829 ], [ -121.122664229203934, 25.320936024420064 ], [ -121.132177291090272, 25.306139637136877 ], [ -121.111586164816501, 25.292523730855756 ], [ -121.116731062473704, 25.279338488653561 ], [ -121.123333296612273, 25.273755236487453 ] ] ], [ [ [ -111.136696654665997, 25.256636339350038 ], [ -111.100903470927534, 25.211024399133521 ], [ -111.099003934722276, 25.195016769128348 ], [ -111.133124449939885, 25.189410445672298 ], [ -111.159956360143127, 25.191698348591601 ], [ -111.173783753248713, 25.196962447913506 ], [ -111.177429017059652, 25.20438371284504 ], [ -111.168756134648731, 25.227462693217628 ], [ -111.186399903632321, 25.241028611703872 ], [ -111.206802614371568, 25.245658250552353 ], [ -111.225069308183635, 25.237683274662199 ], [ -111.226082522333598, 25.26045463783554 ], [ -111.212389711752678, 25.276785265899914 ], [ -111.220032076546147, 25.29897984682469 ], [ -111.220258944230579, 25.315764210257939 ], [ -111.21570044185944, 25.321135975599567 ], [ -111.1972241838304, 25.320647633295781 ], [ -111.159414184829473, 25.303355701483802 ], [ -111.136696654665997, 25.256636339350038 ] ] ], [ [ [ -120.998083108728892, 25.281849414042316 ], [ -120.999926889316811, 25.253944688856734 ], [ -121.005037180039082, 25.249564988982634 ], [ -121.014315683811006, 25.257017015634091 ], [ -121.033993571524547, 25.248753648619655 ], [ -121.044764018712755, 25.254794481369629 ], [ -121.040188212874142, 25.264503649220465 ], [ -121.041671504556689, 25.27208256796661 ], [ -121.027076029756756, 25.272690111935098 ], [ -121.023602839316652, 25.28655211197561 ], [ -121.02613587469159, 25.292396838761068 ], [ -121.018954935696968, 25.304893787479983 ], [ -121.008572855222795, 25.307785389152791 ], [ -120.998083108728892, 25.281849414042316 ] ] ], [ [ [ -120.944491386103465, 25.219033981958589 ], [ -120.955858802918939, 25.217261337848008 ], [ -120.965264198785547, 25.221041184183605 ], [ -120.978259102845698, 25.240920945684138 ], [ -120.979462655137723, 25.249276597858351 ], [ -120.954439918587468, 25.243001206993966 ], [ -120.944907630626176, 25.228520127339998 ], [ -120.944491386103465, 25.219033981958589 ] ] ], [ [ [ -122.384405198356035, 25.221948654921345 ], [ -122.350428878700569, 25.164124311895208 ], [ -122.335706511805952, 25.152819379823327 ], [ -122.313875784349634, 25.14665165497868 ], [ -122.283273160196401, 25.140410871049205 ], [ -122.265059818742344, 25.131839886835532 ], [ -122.249034885269708, 25.118816143662936 ], [ -122.246936839840558, 25.112848369997778 ], [ -122.343122008915003, 25.136181134559727 ], [ -122.403586092032072, 25.10210483931451 ], [ -122.421853747147878, 25.097675151645532 ], [ -122.593451753266578, 25.096044780489585 ], [ -122.627735209469392, 25.089750163550249 ], [ -122.649909603015487, 25.078664408732827 ], [ -122.68913079591789, 25.047537393385273 ], [ -122.709016805892801, 25.035436501810373 ], [ -122.730015524955547, 25.028257485423232 ], [ -122.774572434309079, 25.020209450448256 ], [ -122.828118014354601, 25.021309181935528 ], [ -122.855990055212771, 25.025369728965423 ], [ -122.87095659325928, 25.040173806678588 ], [ -122.884169232618277, 25.069366678885963 ], [ -122.884087521799728, 25.077487772945751 ], [ -122.878471585306215, 25.091434367716058 ], [ -122.830813029411033, 25.110714275678088 ], [ -122.814960169309217, 25.120888714542772 ], [ -122.753220916770942, 25.186984115013328 ], [ -122.735315192516126, 25.196081893680699 ], [ -122.716296759173431, 25.198308273160158 ], [ -122.663583187521454, 25.193713241246588 ], [ -122.618565333020968, 25.212993149208629 ], [ -122.521584204443499, 25.242385972595493 ], [ -122.500295652300849, 25.245877427806807 ], [ -122.430408869849714, 25.246492662205277 ], [ -122.411345255230884, 25.241932237226628 ], [ -122.396604623565068, 25.233695786717121 ], [ -122.384405198356035, 25.221948654921345 ] ] ], [ [ [ -121.972144799023596, 25.175156233702758 ], [ -121.980464402307277, 25.173529707761805 ], [ -122.004556116177952, 25.184234786295175 ], [ -122.013310228755557, 25.192248214335233 ], [ -122.019658678704758, 25.204729782194182 ], [ -121.970571144788778, 25.222690781414496 ], [ -121.96040631896156, 25.222925339528917 ], [ -121.951218177741907, 25.212850876253974 ], [ -121.949608474616539, 25.204910507298731 ], [ -121.963191696570249, 25.182212203210206 ], [ -121.972144799023596, 25.175156233702758 ] ] ], [ [ [ -122.06183684193482, 25.019167397185853 ], [ -122.092186643202439, 25.011526954999866 ], [ -122.124380705709839, 25.019501930890016 ], [ -122.15189081570702, 25.034225259088391 ], [ -122.154983810514949, 25.051786355949702 ], [ -122.093678586618722, 25.040412210007993 ], [ -122.08057457458321, 25.035021218591414 ], [ -122.06183684193482, 25.019167397185853 ] ] ], [ [ [ -123.114196241820366, 24.926536168066317 ], [ -123.129479529451714, 24.92389450536789 ], [ -123.133169493886896, 24.927532078748833 ], [ -123.13497818688802, 24.942932164785525 ], [ -123.146743583455006, 24.967349279974769 ], [ -123.124415381309319, 24.976220190957704 ], [ -123.110506758037033, 24.978281226192578 ], [ -123.104610601501093, 24.974555212866846 ], [ -123.088477040704973, 24.956351965102137 ], [ -123.072397793570616, 24.951495458569219 ], [ -123.060542034451345, 24.947588720138938 ], [ -123.081450390961834, 24.942017003617799 ], [ -123.114196241820366, 24.926536168066317 ] ] ], [ [ [ -123.212335260761819, 24.903422580758821 ], [ -123.225574816625766, 24.897254855914163 ], [ -123.236236636490474, 24.895897495022538 ], [ -123.244303416888528, 24.899396640663834 ], [ -123.2805402423065, 24.895209201539252 ], [ -123.287621205711389, 24.89770474606804 ], [ -123.303781683012431, 24.918576573036113 ], [ -123.304830946052959, 24.929377781944247 ], [ -123.298500280223067, 24.937894933148058 ], [ -123.282240307984154, 24.945627660493813 ], [ -123.256032764564978, 24.952552892691589 ], [ -123.230295298678385, 24.951134008360114 ], [ -123.185349541958971, 24.9319271594829 ], [ -123.164278725115139, 24.920656834345941 ], [ -123.160299408251902, 24.913666233493334 ], [ -123.176061905801447, 24.907075534999731 ], [ -123.212335260761819, 24.903422580758821 ] ] ], [ [ [ -123.483166249486757, 24.844025544801593 ], [ -123.468054554574351, 24.827402680397949 ], [ -123.441910457202525, 24.837930879041757 ], [ -123.422756480031424, 24.852373506545831 ], [ -123.407807726104238, 24.871026644464418 ], [ -123.398104326075895, 24.878336398161231 ], [ -123.385262749963459, 24.868515719075663 ], [ -123.348600547637176, 24.85510360918903 ], [ -123.379438691208577, 24.834512482915258 ], [ -123.438853511285132, 24.803620025682118 ], [ -123.458758266683105, 24.782963530753513 ], [ -123.460015171333112, 24.774027251115747 ], [ -123.402445093148216, 24.780875579013713 ], [ -123.386365846013845, 24.779871977901205 ], [ -123.376101525248757, 24.772816008393757 ], [ -123.391873155183902, 24.764425749284634 ], [ -123.423253954720821, 24.756827604463538 ], [ -123.450492496409311, 24.742069669330256 ], [ -123.513560751378634, 24.716529751363797 ], [ -123.537435210602368, 24.695296474186627 ], [ -123.565641785164701, 24.687194606201778 ], [ -123.604048753792881, 24.685275843921559 ], [ -123.671566883809902, 24.671440760385973 ], [ -123.712569372556629, 24.658401636353418 ], [ -123.722951453030817, 24.651364892920924 ], [ -123.735838210419374, 24.648034936739208 ], [ -123.751247909493543, 24.648400232163301 ], [ -123.767869812593432, 24.64268239747253 ], [ -123.785730355572127, 24.630889123096868 ], [ -123.8006608447281, 24.625375084800588 ], [ -123.825060175798029, 24.624144616003651 ], [ -123.837810908706302, 24.619495751080208 ], [ -123.85209059522515, 24.619676476184768 ], [ -123.891094533480612, 24.633784569984662 ], [ -123.900861379556304, 24.642013330064188 ], [ -123.866325100467861, 24.658509302373155 ], [ -123.841337932156279, 24.663988733734517 ], [ -123.803355859784517, 24.666484278263304 ], [ -123.766024590049895, 24.681730555700373 ], [ -123.689219304527228, 24.70193331526011 ], [ -123.66542607547018, 24.712949856207704 ], [ -123.650115871333895, 24.75127511401735 ], [ -123.632635043335512, 24.75780428907111 ], [ -123.623302225901853, 24.773123625592994 ], [ -123.580744347691493, 24.77268911629908 ], [ -123.561210655540094, 24.755508695721822 ], [ -123.554346466130283, 24.753174650222629 ], [ -123.550937202389406, 24.754839628313487 ], [ -123.549074195726533, 24.768586271904283 ], [ -123.527234335884629, 24.778226225885302 ], [ -123.539831740845159, 24.785297576252706 ], [ -123.579152428685461, 24.794195403740567 ], [ -123.608317423084145, 24.798390533295134 ], [ -123.627335375774948, 24.797886810131391 ], [ -123.642817653282052, 24.802877899188967 ], [ -123.654755123219857, 24.81336764568287 ], [ -123.660199466994442, 24.823784333091957 ], [ -123.659150203953914, 24.834112580556255 ], [ -123.64945593631117, 24.845671296817496 ], [ -123.631115702762415, 24.858456636660698 ], [ -123.610126116085269, 24.86572024777762 ], [ -123.564827560890464, 24.87095743059459 ], [ -123.524711394199016, 24.879455355723444 ], [ -123.503441587479443, 24.880778109680158 ], [ -123.487380124464408, 24.87717898844911 ], [ -123.483166249486757, 24.844025544801593 ] ] ], [ [ [ -123.341203315299339, 24.781840727976302 ], [ -123.346131919613327, 24.780837126863808 ], [ -123.355093673800397, 24.789492705807273 ], [ -123.355555099599258, 24.797413848687562 ], [ -123.349821403396646, 24.803158599883268 ], [ -123.333498465762247, 24.816559174124929 ], [ -123.321886397143018, 24.821342621573031 ], [ -123.307598058890449, 24.823768952231994 ], [ -123.303727369350696, 24.820169831000946 ], [ -123.316315641925627, 24.80428909309046 ], [ -123.332105536631957, 24.793607085847029 ], [ -123.341203315299339, 24.781840727976302 ] ] ], [ [ [ -123.955320678813933, 24.649484582790606 ], [ -124.062530079265969, 24.612009117493844 ], [ -124.097337926663101, 24.584608115472015 ], [ -124.123889136172039, 24.558237631067616 ], [ -124.144761443791992, 24.543802693993534 ], [ -124.15995436887107, 24.5413263755397 ], [ -124.176883408518336, 24.534324239042114 ], [ -124.212279093157136, 24.515894123592968 ], [ -124.227146616917651, 24.51359853024368 ], [ -124.340866927652229, 24.47057057450073 ], [ -124.348906310893483, 24.469901507092395 ], [ -124.343380736952213, 24.481148760939416 ], [ -124.308645467988015, 24.49708333185977 ], [ -124.286000516257474, 24.511606708878634 ], [ -124.260425991356101, 24.535600850418938 ], [ -124.246345775364887, 24.544417928392008 ], [ -124.241850719041068, 24.556464986957035 ], [ -124.240024241920622, 24.580770590911559 ], [ -124.233657527200194, 24.5899606547387 ], [ -124.20923176027722, 24.608229271158248 ], [ -124.19145244746521, 24.618211449273414 ], [ -124.168057198159659, 24.621664452334819 ], [ -124.120615416259568, 24.618611351632417 ], [ -124.100937047894149, 24.627897545834312 ], [ -124.09483276909684, 24.63494197969678 ], [ -124.106833685081995, 24.641363488730804 ], [ -124.109655111581219, 24.652522302633042 ], [ -124.10654385200209, 24.671767603660161 ], [ -124.092816434486224, 24.688840358217686 ], [ -124.068489681849258, 24.70374441152061 ], [ -124.03536363535855, 24.715356960791713 ], [ -123.993438775665979, 24.72363955388111 ], [ -123.962790489584734, 24.724054837100081 ], [ -123.907626074028229, 24.706474514163819 ], [ -123.899432882187369, 24.698426479188843 ], [ -123.912880079660781, 24.680792323242709 ], [ -123.920594061583458, 24.664250208353863 ], [ -123.955320678813933, 24.649484582790606 ] ] ], [ [ [ -124.559978813452091, 24.475273272434034 ], [ -124.565621666450539, 24.461180559494089 ], [ -124.570758873677761, 24.456008745331964 ], [ -124.624856242074415, 24.463506914563308 ], [ -124.660984440168903, 24.460803728425034 ], [ -124.664936359875327, 24.469140154524293 ], [ -124.661689556467778, 24.476557574240832 ], [ -124.60501493272379, 24.487877887172676 ], [ -124.582008530784151, 24.487970172332442 ], [ -124.566634880600517, 24.482056231677156 ], [ -124.559978813452091, 24.475273272434034 ] ] ], [ [ [ -124.924481161951462, 24.382215224450558 ], [ -124.946863677758898, 24.371110243558181 ], [ -124.953420249969469, 24.375232314027933 ], [ -124.957254409966808, 24.388944350683818 ], [ -124.944702186282413, 24.399634048357221 ], [ -124.906521124034896, 24.422839920824487 ], [ -124.880612065429361, 24.418471756595356 ], [ -124.872409260551024, 24.412346329115586 ], [ -124.873114857501776, 24.403540786787495 ], [ -124.882700978472911, 24.39205512961108 ], [ -124.895035947510351, 24.386283461910438 ], [ -124.910084196375408, 24.386229628900566 ], [ -124.924481161951462, 24.382215224450558 ] ] ], [ [ [ -126.304880178537729, 24.190946540396418 ], [ -126.492647794343071, 24.176561591117213 ], [ -126.521234083885702, 24.186443793642628 ], [ -126.492747289280956, 24.192069343173628 ], [ -126.458970440153109, 24.19518012210089 ], [ -126.388368688039705, 24.211656868334895 ], [ -126.301506963687373, 24.225926461164391 ], [ -126.233781192060889, 24.243110726956637 ], [ -126.174945076840388, 24.254342599943698 ], [ -126.15837748740222, 24.272865000552613 ], [ -126.210069433496443, 24.282285777279178 ], [ -126.220234018997701, 24.28971857785568 ], [ -126.195699624751256, 24.298366466369163 ], [ -126.175198140051947, 24.310971081107802 ], [ -126.126906565638961, 24.325759777961011 ], [ -126.083760609861002, 24.307229686922113 ], [ -126.074210778106305, 24.294821178147988 ], [ -126.078325638797963, 24.280117076024567 ], [ -126.087007172942606, 24.264797739502683 ], [ -126.124916907207336, 24.256872751407396 ], [ -126.130578265302944, 24.248809335572464 ], [ -126.110013574882245, 24.226018746324161 ], [ -126.1880308241047, 24.205915962354176 ], [ -126.304880178537729, 24.190946540396418 ] ] ], [ [ [ -125.53046877967256, 24.273995493759795 ], [ -125.55648646560158, 24.268812143952701 ], [ -125.584738221440034, 24.274183909294329 ], [ -125.571561630971559, 24.292667857753344 ], [ -125.558078384607626, 24.30252698898882 ], [ -125.53243128127329, 24.314497143254034 ], [ -125.50188249012993, 24.309217663072175 ], [ -125.477555737492963, 24.294044444719919 ], [ -125.53046877967256, 24.273995493759795 ] ] ], [ [ [ -125.911448114731883, 24.22639942260821 ], [ -125.84282688866449, 24.212164436713632 ], [ -125.757448455994719, 24.21382941480449 ], [ -125.726303175875955, 24.210372566528086 ], [ -125.725805701186573, 24.206392769012989 ], [ -125.780400544272609, 24.200571113517473 ], [ -125.799066179139928, 24.202486030582708 ], [ -125.846742759480378, 24.194657172862186 ], [ -125.879145184575066, 24.193234443315731 ], [ -125.953192249319898, 24.200624946527345 ], [ -126.010319406803092, 24.195560798384943 ], [ -126.025421729003952, 24.197475715450178 ], [ -126.04336374247525, 24.203943367064092 ], [ -126.064145447216987, 24.214948372366706 ], [ -126.065167313100687, 24.221858223704515 ], [ -126.04641155600703, 24.224642159357586 ], [ -125.995732343410936, 24.215202156556078 ], [ -125.990442048561917, 24.220124031743829 ], [ -125.947684940149855, 24.229002633156746 ], [ -125.911448114731883, 24.22639942260821 ] ] ], [ [ [ -126.775334542187267, 24.179545477949787 ], [ -126.783573155630208, 24.169244146990415 ], [ -126.817793406111633, 24.180203009713154 ], [ -126.829929385273317, 24.189139289350919 ], [ -126.83237109679223, 24.198310127103106 ], [ -126.822278849397975, 24.213483345455348 ], [ -126.794886499109879, 24.213683296634851 ], [ -126.778716889423237, 24.207496345715249 ], [ -126.76361432689643, 24.19601068853882 ], [ -126.759138015995688, 24.188823981721697 ], [ -126.775334542187267, 24.179545477949787 ] ] ], [ [ [ -126.975446499741594, 24.132037846742985 ], [ -126.973565468633467, 24.120309941022164 ], [ -126.933476218446955, 24.121774967933518 ], [ -126.920905729991347, 24.115726444753562 ], [ -126.920860548715211, 24.09270129739085 ], [ -126.92611503499964, 24.086191348412044 ], [ -126.932210181411349, 24.084599429406012 ], [ -126.94664319587794, 24.089663577548404 ], [ -126.962930565273666, 24.077904910107659 ], [ -127.037628672981583, 24.049173463699145 ], [ -127.060779751135229, 24.065246462359156 ], [ -127.104359975881181, 24.039979554657016 ], [ -127.073838581894606, 24.105363590354347 ], [ -127.038560176313013, 24.115253483309743 ], [ -127.025537875096035, 24.122670903026282 ], [ -127.028585207975951, 24.141823918893635 ], [ -127.012216848739484, 24.17381226239905 ], [ -126.976676247560718, 24.172320318982759 ], [ -126.960253574662516, 24.159115850705611 ], [ -126.960850303963838, 24.150541021276943 ], [ -126.975446499741594, 24.132037846742985 ] ] ], [ [ [ -127.169662060434007, 24.079550662123566 ], [ -127.179736283383022, 24.0749940823599 ], [ -127.198257242036306, 24.071429568063774 ], [ -127.251622096977286, 24.075390139503916 ], [ -127.283925027134117, 24.074144289847016 ], [ -127.319953970616666, 24.071667971393182 ], [ -127.347002654814986, 24.06550024654852 ], [ -127.352374420156622, 24.0740712307622 ], [ -127.35146094127046, 24.081107974194698 ], [ -127.234937228481925, 24.100368656081773 ], [ -127.207843122681524, 24.11042773849675 ], [ -127.191203435462299, 24.123140019255125 ], [ -127.17602853482849, 24.146995733055771 ], [ -127.163819977233871, 24.154124761648035 ], [ -127.156304985186935, 24.153763311438926 ], [ -127.139855155457866, 24.144357915572328 ], [ -127.145624900551013, 24.131984013733113 ], [ -127.160274929338613, 24.12121356654491 ], [ -127.165086014269463, 24.111112186765041 ], [ -127.169662060434007, 24.079550662123566 ] ] ], [ [ [ -127.425453932679488, 24.056094850681923 ], [ -127.433231120323583, 24.044428468400948 ], [ -127.44166872364228, 24.044770692535103 ], [ -127.488404908591633, 24.064104433506994 ], [ -127.495259725289884, 24.070633608560751 ], [ -127.467803928954453, 24.079804446312938 ], [ -127.459827751434602, 24.086914248830251 ], [ -127.46302000085447, 24.09619275260216 ], [ -127.483584691275183, 24.109070377605128 ], [ -127.521512690311127, 24.125581730774041 ], [ -127.53587360699666, 24.137467290309473 ], [ -127.526676333391407, 24.144753972716344 ], [ -127.50860766815137, 24.149241338610182 ], [ -127.451625427208128, 24.150144964132938 ], [ -127.420841837624408, 24.129834538553467 ], [ -127.397654710580227, 24.1227055099612 ], [ -127.343367244367471, 24.117895146008173 ], [ -127.371528397327722, 24.109278019214603 ], [ -127.387516801257945, 24.100956973975311 ], [ -127.407231458839846, 24.068753298430437 ], [ -127.425453932679488, 24.056094850681923 ] ] ], [ [ [ -126.770930569393542, 24.113023258615289 ], [ -126.80046638671287, 24.105363590354347 ], [ -126.839343673199579, 24.120879032840747 ], [ -126.835572718923657, 24.138893865070923 ], [ -126.792860791787717, 24.123847538813354 ], [ -126.770930569393542, 24.113023258615289 ] ] ], [ [ [ -126.868137844677619, 24.105886539593044 ], [ -126.890167562009708, 24.085341555899159 ], [ -126.906427534248621, 24.094635440531036 ], [ -126.912595018767334, 24.122897770710722 ], [ -126.900295858294498, 24.130084477527845 ], [ -126.865867966203581, 24.109685612003592 ], [ -126.868137844677619, 24.105886539593044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-AL", "NAME_1": "Alabama" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.489510631061179, 30.377682814609685 ], [ -87.513252087044975, 30.368124708776321 ], [ -87.622269425188023, 30.26476532983348 ], [ -88.005933990604916, 30.230916451589124 ], [ -87.985016021056964, 30.254383249359307 ], [ -87.903980861715709, 30.259085397976179 ], [ -87.790294333941418, 30.291791698051952 ], [ -87.813288719584207, 30.346877149372048 ], [ -87.857113184146613, 30.407389846992928 ], [ -87.897630763817233, 30.414135452718995 ], [ -87.924283596865209, 30.449643266573517 ], [ -87.922998196425539, 30.561550009123664 ], [ -87.948871000146895, 30.626918663961035 ], [ -88.011317291591524, 30.694176967307982 ], [ -88.032422028724739, 30.681224085954497 ], [ -88.078366854696142, 30.566197226097813 ], [ -88.116555332715407, 30.415321976201753 ], [ -88.135440831482711, 30.366597609108695 ], [ -88.249215249885367, 30.363180860931479 ], [ -88.349926923649079, 30.373464064448754 ], [ -88.399585128668392, 30.370805372941078 ], [ -88.412757736592766, 30.576579306571986 ], [ -88.423260666680918, 30.764302702404947 ], [ -88.433741624111988, 30.952015111909347 ], [ -88.444233567871592, 31.139705548756666 ], [ -88.45472551163121, 31.327384999275452 ], [ -88.465217455390814, 31.515108395108399 ], [ -88.475709399150432, 31.702820804612813 ], [ -88.486190356581503, 31.890511241460132 ], [ -88.461778734556518, 32.075246355929096 ], [ -88.437367112531533, 32.259970484069513 ], [ -88.412977463163642, 32.444683625881382 ], [ -88.388554854810124, 32.629429726678893 ], [ -88.364132246456592, 32.81417582747639 ], [ -88.339742597088701, 32.998888969288274 ], [ -88.315330975063731, 33.183613097428676 ], [ -88.290908366710198, 33.36834821189764 ], [ -88.266518717342308, 33.553094312695151 ], [ -88.24209610898879, 33.737807454507021 ], [ -88.217684486963805, 33.922531582647437 ], [ -88.193294837595914, 34.107277683444934 ], [ -88.168883215570943, 34.292012797913898 ], [ -88.144460607217411, 34.476736926054315 ], [ -88.120059971520973, 34.661450067866184 ], [ -88.095648349496003, 34.846196168663695 ], [ -88.089474032854213, 34.893063846232806 ], [ -88.088210605071652, 34.909081913250091 ], [ -88.084771884237341, 34.933109013776033 ], [ -88.173266760660027, 34.99900501238352 ], [ -88.190789954687858, 35.012045784365355 ], [ -88.203138587971424, 35.024196663735125 ], [ -88.190427405845909, 35.02499866571884 ], [ -88.029994050116485, 35.023493538708308 ], [ -87.869593653372704, 35.021966439040668 ], [ -87.70916029764328, 35.020450325701589 ], [ -87.548737928242403, 35.018945198691043 ], [ -87.388304572512979, 35.017451058009044 ], [ -87.227871216783555, 35.015945930998512 ], [ -87.067448847382678, 35.014451790316514 ], [ -86.907015491653254, 35.012924690648887 ], [ -86.74658213592383, 35.011408577309794 ], [ -86.586159766522954, 35.009903450299262 ], [ -86.42572641079353, 35.008409309617264 ], [ -86.265293055064106, 35.006904182606718 ], [ -86.104870685663229, 35.005410041924719 ], [ -85.944437329933805, 35.003860969599998 ], [ -85.784036933190023, 35.002355842589466 ], [ -85.623603577460599, 35.000861701907468 ], [ -85.597170470983514, 34.873068728282547 ], [ -85.570770323492042, 34.745264768329093 ], [ -85.544359189672036, 34.617471794704173 ], [ -85.517948055852031, 34.489678821079266 ], [ -85.491547908360573, 34.361929792768521 ], [ -85.465114801883487, 34.234136819143615 ], [ -85.438681695406387, 34.106343845518694 ], [ -85.412270561586382, 33.978550871893773 ], [ -85.385870414094924, 33.85074691194032 ], [ -85.359459280274919, 33.722953938315399 ], [ -85.333059132783461, 33.595160964690493 ], [ -85.306626026306361, 33.467389963722667 ], [ -85.280192919829275, 33.339618962754841 ], [ -85.25378178600927, 33.21182598912992 ], [ -85.227381638517812, 33.084022029176467 ], [ -85.200970504697807, 32.956229055551546 ], [ -85.176317183444851, 32.898221240838723 ], [ -85.156530805736935, 32.804277145458158 ], [ -85.015037880417538, 32.526158238364388 ], [ -84.973905066348451, 32.409285675312304 ], [ -84.985968055089856, 32.36094582971829 ], [ -84.968499792704748, 32.319813015649203 ], [ -84.921533238178739, 32.285887233105029 ], [ -84.929696080287002, 32.246556176917167 ], [ -84.992977332700988, 32.201830833414164 ], [ -85.034626504211658, 32.147371602821082 ], [ -85.064564249494325, 32.051043474146454 ], [ -85.064410440894704, 32.050527116704885 ], [ -85.124132122860402, 31.880535655142097 ], [ -85.124824261558686, 31.776769782043118 ], [ -85.067200968344906, 31.635386720009166 ], [ -85.067047159745286, 31.635177979766823 ], [ -85.054885294046969, 31.572676756679456 ], [ -85.092601359938854, 31.295711414082831 ], [ -85.067442667572877, 31.117579083068861 ], [ -85.007281532465399, 31.00167331692866 ], [ -85.330004933448208, 31.001102027844368 ], [ -85.653398500472193, 31.001058082530193 ], [ -85.976792067496177, 31.00100315088747 ], [ -86.300174648191614, 31.000948219244748 ], [ -86.623568215215599, 31.000893287602025 ], [ -86.946939809582503, 31.00084934228785 ], [ -87.270300417620845, 31.000794410645128 ], [ -87.59369398464483, 31.000739479002419 ], [ -87.607437881653496, 30.929328343465798 ], [ -87.601054824769378, 30.860597872093933 ], [ -87.566195204298964, 30.7956357114127 ], [ -87.421659065972847, 30.671589075821316 ], [ -87.408277717806143, 30.641464562953416 ], [ -87.433809945342617, 30.545938436262503 ], [ -87.429382454939343, 30.477856158274747 ], [ -87.444807260215256, 30.442557084662567 ], [ -87.480106333827436, 30.411707474110756 ], [ -87.489510631061179, 30.377682814609685 ] ] ], [ [ [ -88.071335604427915, 30.252339792250112 ], [ -88.159314123409033, 30.230916451589124 ], [ -88.28972184322744, 30.232937936041239 ], [ -88.316253826661438, 30.240452584765393 ], [ -88.263936930134449, 30.254712839215628 ], [ -88.109370273847574, 30.273730173925458 ], [ -88.071335604427915, 30.252339792250112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-AR", "NAME_1": "Arkansas" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.70477194603545, 36.001573410003459 ], [ -89.709320286052701, 35.983050460078118 ], [ -89.689171359502822, 35.943598554276278 ], [ -89.688907687617771, 35.92095573114689 ], [ -89.703772190137926, 35.906904216938997 ], [ -89.738214330123668, 35.898741374830735 ], [ -89.763592749060535, 35.8887657885127 ], [ -89.768932104732954, 35.872099528111306 ], [ -89.769942846959012, 35.864299234844992 ], [ -89.768108130092159, 35.845248941149535 ], [ -89.763592749060535, 35.828044350649478 ], [ -89.779654761391996, 35.805742103704972 ], [ -89.894560771634687, 35.750502843785256 ], [ -89.943504865298635, 35.67913565356281 ], [ -89.926520001369468, 35.591651519366181 ], [ -89.967345198239315, 35.503310451543115 ], [ -90.066024401222379, 35.414112450093612 ], [ -90.107882312975391, 35.3142027783136 ], [ -90.092918933498325, 35.203592422531656 ], [ -90.142269521318397, 35.114295544125255 ], [ -90.255956049092703, 35.0463890473942 ], [ -90.293760005612924, 35.004476203998479 ], [ -90.293705073970216, 35.001114387463986 ], [ -90.29341942942807, 34.970067022998364 ], [ -90.282103511027643, 34.945303838459978 ], [ -90.319940426533506, 34.899161258574779 ], [ -90.415949951680361, 34.851623414964479 ], [ -90.467574709509066, 34.80526110850839 ], [ -90.474759768376899, 34.760052366549445 ], [ -90.497215823921024, 34.738090695789793 ], [ -90.539249516930738, 34.728170041114481 ], [ -90.563847906540971, 34.661164423324038 ], [ -90.584007819419384, 34.503708362630064 ], [ -90.635423837005746, 34.413873154125 ], [ -90.718106945628605, 34.39170274312302 ], [ -90.762337904347135, 34.356425642167935 ], [ -90.768116713161334, 34.308107769231 ], [ -90.817214615424888, 34.25222031592719 ], [ -90.909719501766176, 34.188763282256488 ], [ -90.940250508790214, 34.128558201834849 ], [ -90.908785663839922, 34.071561129348083 ], [ -90.914729267582274, 34.048621675348016 ], [ -90.943106954211672, 34.02968124493799 ], [ -91.043148461934209, 34.002863616961861 ], [ -91.060353052434266, 33.989295501209909 ], [ -91.070174830152681, 33.974200285790317 ], [ -91.050069848916991, 33.945163419448278 ], [ -91.038182641432272, 33.901393886528595 ], [ -91.052706567767572, 33.82759871769791 ], [ -91.077151148778185, 33.796694175503376 ], [ -91.100299343020595, 33.767448568918994 ], [ -91.184125029812037, 33.715670002490668 ], [ -91.207481964296775, 33.675668780261617 ], [ -91.170370146474824, 33.647455888560387 ], [ -91.172721220783259, 33.616683182308364 ], [ -91.214579132536272, 33.583405593148299 ], [ -91.202713897708648, 33.546974927696084 ], [ -91.192958037961489, 33.522530346685471 ], [ -91.154330106800444, 33.500206127083871 ], [ -91.14101467660501, 33.438506905980233 ], [ -91.168458525308154, 33.359460272105466 ], [ -91.163338896206611, 33.294454166110057 ], [ -91.117306179606842, 33.240818910157785 ], [ -91.106781276861611, 33.217923401471893 ], [ -91.15285793877554, 33.040571099784557 ], [ -91.149957548039893, 33.015917778531616 ], [ -91.346173375837438, 33.015192680847704 ], [ -91.525854779176115, 33.014983940605362 ], [ -91.705536182514791, 33.014786186691566 ], [ -91.885206599524921, 33.014544487463596 ], [ -92.064898989192145, 33.014313774564172 ], [ -92.244569406202274, 33.014105034321844 ], [ -92.424250809540951, 33.013907280408048 ], [ -92.603926719715361, 33.013698540165706 ], [ -92.783608123054037, 33.013489799923363 ], [ -92.963284033228447, 33.013281059681034 ], [ -93.142965436567124, 33.013072319438692 ], [ -93.322619374084439, 33.012841606539268 ], [ -93.502273311601755, 33.012610893639845 ], [ -93.681949221776151, 33.012402153397503 ], [ -93.861630625114827, 33.01219341315516 ], [ -94.041306535289237, 33.011995659241379 ], [ -94.042806169135503, 33.147588926132599 ], [ -94.044305802981768, 33.283215152009447 ], [ -94.045805436828047, 33.418841377886309 ], [ -94.047327043331393, 33.55443464477753 ], [ -94.098797992560492, 33.577330153463421 ], [ -94.191533591801189, 33.589008620705798 ], [ -94.238456201013022, 33.581208327439484 ], [ -94.294678737337435, 33.587459548381077 ], [ -94.332559598157474, 33.565036451822579 ], [ -94.357674345209276, 33.560971510261268 ], [ -94.377955107701666, 33.566113112019906 ], [ -94.390122466564264, 33.585602858857129 ], [ -94.432007844138624, 33.599731277364839 ], [ -94.484148959408898, 33.648433671800802 ], [ -94.481330966137335, 33.757110433758996 ], [ -94.478540438687133, 33.865787195717189 ], [ -94.475727938579851, 33.974463957675368 ], [ -94.472909945308288, 34.083140719633562 ], [ -94.470091952036725, 34.191817481591755 ], [ -94.467279451929443, 34.300494243549949 ], [ -94.46446145865788, 34.409171005508128 ], [ -94.461643465386317, 34.517836781137774 ], [ -94.458830965279034, 34.626513543095967 ], [ -94.456012972007471, 34.735190305054161 ], [ -94.453194978735908, 34.84386706701234 ], [ -94.450376985464345, 34.952543828970533 ], [ -94.447564485357063, 35.061220590928727 ], [ -94.4447464920855, 35.16989735288692 ], [ -94.441955964635298, 35.2785741148451 ], [ -94.439137971363735, 35.387250876803293 ], [ -94.461539095265152, 35.526458645785524 ], [ -94.483967684987917, 35.665655428439209 ], [ -94.506368808889334, 35.804841224764345 ], [ -94.528769932790738, 35.944059980075124 ], [ -94.551176549856422, 36.083278735385903 ], [ -94.573577673757825, 36.22246453171104 ], [ -94.595978797659242, 36.361661314364724 ], [ -94.618379921560646, 36.500869083346956 ], [ -94.339870999803566, 36.500869083346956 ], [ -94.061356584882205, 36.500869083346956 ], [ -93.782847663125125, 36.500869083346956 ], [ -93.504338741368045, 36.500869083346956 ], [ -93.225829819610951, 36.500869083346956 ], [ -92.947320897853871, 36.500869083346956 ], [ -92.66880648293251, 36.500869083346956 ], [ -92.39029756117543, 36.500869083346956 ], [ -92.11178863941835, 36.500869083346956 ], [ -91.833285210825537, 36.500869083346956 ], [ -91.554759809575629, 36.500869083346956 ], [ -91.276256380982815, 36.500869083346956 ], [ -90.997752952390002, 36.500869083346956 ], [ -90.719238537468655, 36.500869083346956 ], [ -90.440746095204375, 36.500869083346956 ], [ -90.162242666611562, 36.500869083346956 ], [ -90.118077625864302, 36.422536560827552 ], [ -90.074472887872787, 36.371834654596555 ], [ -90.067057116105531, 36.334272397304304 ], [ -90.075659411355559, 36.296721126340586 ], [ -90.149278798929529, 36.215927666227302 ], [ -90.21616356710598, 36.178409354249226 ], [ -90.252550287244034, 36.137737965978985 ], [ -90.303043453232689, 36.099373706702991 ], [ -90.381068358552852, 35.992740401854007 ], [ -90.216789787832994, 35.994937667562823 ], [ -90.052489244456055, 35.997134933271653 ], [ -89.888177714750569, 35.999332198980468 ], [ -89.70477194603545, 36.001573410003459 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-AZ", "NAME_1": "Arizona" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.04780735188244, 31.327879384059941 ], [ -109.274773913274899, 31.327472889903802 ], [ -109.62821508886698, 31.326824696519708 ], [ -109.981650771294795, 31.326154530478519 ], [ -110.335091946886891, 31.325528309751505 ], [ -110.688533122478972, 31.324858143710316 ], [ -111.041974298071054, 31.324209950326207 ], [ -111.516210156005471, 31.472239741129343 ], [ -111.990473479761235, 31.620236572946851 ], [ -112.464731310352747, 31.768244391092907 ], [ -112.938967168287149, 31.916274181896043 ], [ -113.413203026221566, 32.064292986370631 ], [ -113.887460856813064, 32.212300804516687 ], [ -114.361724180568842, 32.360297636334195 ], [ -114.835954545338979, 32.508327427137331 ], [ -114.787999221244007, 32.564808142182528 ], [ -114.724772900472743, 32.71534281589372 ], [ -114.720949658139389, 32.724483441242398 ], [ -114.720900219660948, 32.724483441242398 ], [ -114.582175849134657, 32.734722699445499 ], [ -114.516466618112418, 32.772757368865157 ], [ -114.477531069752146, 32.842004197678591 ], [ -114.469000185637654, 32.912305714032257 ], [ -114.490862979440408, 32.983617972611981 ], [ -114.550546209256197, 33.036791802765393 ], [ -114.648088327234959, 33.071750300192704 ], [ -114.704387767859174, 33.169781309791674 ], [ -114.719428051636029, 33.330862858905192 ], [ -114.701701610530137, 33.417808663003157 ], [ -114.651159006063025, 33.430618722085569 ], [ -114.602610420226668, 33.469894846630709 ], [ -114.556000921378342, 33.535626050310043 ], [ -114.521558781392613, 33.607608474930942 ], [ -114.499256534448094, 33.685875079479075 ], [ -114.495098209094152, 33.784653159419037 ], [ -114.509050846345161, 33.903920742093746 ], [ -114.418281799913842, 34.051148530913153 ], [ -114.329320004528029, 34.142027440629917 ], [ -114.163514334140544, 34.253362894095773 ], [ -114.125611500663425, 34.286508647313312 ], [ -114.125018238922038, 34.314084331958995 ], [ -114.12506767740048, 34.317182476608423 ], [ -114.158790212866592, 34.355217146028082 ], [ -114.308028499809581, 34.432890488834829 ], [ -114.371024107681421, 34.488492297596494 ], [ -114.376912779781051, 34.539699574940528 ], [ -114.378879332590444, 34.540633412866768 ], [ -114.398001037421437, 34.589698356144709 ], [ -114.55747308940326, 34.79457141083499 ], [ -114.610932564098817, 34.907401004982844 ], [ -114.610542549435507, 34.991116828488856 ], [ -114.610520576778413, 34.997609748658419 ], [ -114.590986884627014, 35.352775777831923 ], [ -114.64852778037671, 35.47592153448268 ], [ -114.662062937143048, 35.545355130881362 ], [ -114.645165963842217, 35.630543122412277 ], [ -114.650126291179888, 35.68350821232336 ], [ -114.677075755098542, 35.72980460080818 ], [ -114.683689524882098, 35.813597328613994 ], [ -114.687100779895033, 35.917341229055879 ], [ -114.732320508182525, 35.983665694476585 ], [ -114.74136225657432, 36.013515549130901 ], [ -114.71575861790231, 36.08498161631023 ], [ -114.669143625889717, 36.121719898961686 ], [ -114.592975410093501, 36.1475597436974 ], [ -114.505277042490263, 36.15642571083248 ], [ -114.406086975229897, 36.148306814038392 ], [ -114.331544736058206, 36.116292652660903 ], [ -114.2815734206754, 36.060328295057289 ], [ -114.232145928555511, 36.031697922871373 ], [ -114.183207328055843, 36.030302659146273 ], [ -114.119437184021635, 36.076664965602347 ], [ -114.0619237540933, 36.175212332642886 ], [ -114.042878953562109, 36.181771170783719 ], [ -114.041170579473501, 36.612490181354957 ], [ -114.040269700532889, 37.00415279395196 ], [ -113.728170079252237, 37.003944053709617 ], [ -113.416070457971571, 37.003735313467274 ], [ -113.10397083669092, 37.003526573224946 ], [ -112.791871215410268, 37.003317832982603 ], [ -112.479771594129602, 37.003120079068808 ], [ -112.16767197284895, 37.002911338826479 ], [ -111.855572351568298, 37.002702598584136 ], [ -111.543472730287647, 37.002493858341793 ], [ -111.231373109006981, 37.002285118099465 ], [ -110.919267994562063, 37.00208736418567 ], [ -110.607168373281397, 37.001878623943327 ], [ -110.295068752000745, 37.001669883700984 ], [ -109.982969130720093, 37.001461143458656 ], [ -109.670869509439441, 37.001252403216313 ], [ -109.358769888158776, 37.001054649302517 ], [ -109.046670266878124, 37.000845909060189 ], [ -109.046697732699485, 36.646339059599327 ], [ -109.046747171177927, 36.291843196466999 ], [ -109.046802102820649, 35.937336347006138 ], [ -109.046851541299105, 35.582818511216729 ], [ -109.046906472941828, 35.228289689098787 ], [ -109.04695591142027, 34.873793825966459 ], [ -109.047005349898711, 34.519286976505597 ], [ -109.047060281541434, 34.164791113373283 ], [ -109.04710972001989, 33.810284263912422 ], [ -109.047164651662612, 33.455788400780094 ], [ -109.047214090141054, 33.10129253764778 ], [ -109.04726352861951, 32.746763715529823 ], [ -109.047318460262218, 32.392234893411882 ], [ -109.047367898740674, 32.037739030279553 ], [ -109.047422830383397, 31.683232180818692 ], [ -109.04780735188244, 31.327879384059941 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-CA", "NAME_1": "California" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -114.610542549435507, 34.991116828488856 ], [ -114.610932564098817, 34.907401004982844 ], [ -114.55747308940326, 34.79457141083499 ], [ -114.398001037421437, 34.589698356144709 ], [ -114.378879332590444, 34.540633412866768 ], [ -114.376912779781051, 34.539699574940528 ], [ -114.371024107681421, 34.488492297596494 ], [ -114.308028499809581, 34.432890488834829 ], [ -114.158790212866592, 34.355217146028082 ], [ -114.12506767740048, 34.317182476608423 ], [ -114.125018238922038, 34.314084331958995 ], [ -114.125611500663425, 34.286508647313312 ], [ -114.163514334140544, 34.253362894095773 ], [ -114.329320004528029, 34.142027440629917 ], [ -114.418281799913842, 34.051148530913153 ], [ -114.509050846345161, 33.903920742093746 ], [ -114.495098209094152, 33.784653159419037 ], [ -114.499256534448094, 33.685875079479075 ], [ -114.521558781392613, 33.607608474930942 ], [ -114.556000921378342, 33.535626050310043 ], [ -114.602610420226668, 33.469894846630709 ], [ -114.651159006063025, 33.430618722085569 ], [ -114.701701610530137, 33.417808663003157 ], [ -114.719428051636029, 33.330862858905192 ], [ -114.704387767859174, 33.169781309791674 ], [ -114.648088327234959, 33.071750300192704 ], [ -114.550546209256197, 33.036791802765393 ], [ -114.490862979440408, 32.983617972611981 ], [ -114.469000185637654, 32.912305714032257 ], [ -114.477531069752146, 32.842004197678591 ], [ -114.516466618112418, 32.772757368865157 ], [ -114.582175849134657, 32.734722699445499 ], [ -114.720900219660948, 32.724483441242398 ], [ -114.720949658139389, 32.724483441242398 ], [ -114.724772900472743, 32.71534281589372 ], [ -114.839058183152687, 32.704719036191577 ], [ -115.125213589576461, 32.683306681859136 ], [ -115.411374489164515, 32.661883341198148 ], [ -115.697507922931194, 32.640460000537161 ], [ -115.983663329354968, 32.61904764620472 ], [ -116.269824228943008, 32.597624305543732 ], [ -116.555957662709702, 32.576200964882744 ], [ -116.842113069133489, 32.554788610550304 ], [ -117.12827396872153, 32.533365269889316 ], [ -117.130465741266079, 32.539770299430529 ], [ -117.137392621413127, 32.649172159072634 ], [ -117.183743941540655, 32.687876994533482 ], [ -117.243482102999181, 32.664025675264241 ], [ -117.270689745638634, 32.806265670924645 ], [ -117.25575932514721, 32.873370165671986 ], [ -117.262966356672138, 32.938870656451869 ], [ -117.318826344154587, 33.100051082522299 ], [ -117.467421930877748, 33.295486880993209 ], [ -117.788513862071738, 33.538471509402953 ], [ -117.952094800929046, 33.619605545701106 ], [ -118.080513995280967, 33.722151936331684 ], [ -118.161900717135637, 33.750705404217783 ], [ -118.264403162452041, 33.758615560769542 ], [ -118.294170619642273, 33.712308185956175 ], [ -118.410438934624423, 33.743937825834621 ], [ -118.392948699582234, 33.858294519650116 ], [ -118.50619577421476, 34.017409515954242 ], [ -118.598854469155668, 34.03503158693897 ], [ -118.832044785668359, 34.024462738879549 ], [ -119.143732419628606, 34.112023777375995 ], [ -119.235841798142303, 34.164120947332094 ], [ -119.26764721927745, 34.25743882198563 ], [ -119.413688484614113, 34.338572858283783 ], [ -119.606053604256942, 34.41800401365758 ], [ -119.713203266547509, 34.399656844988939 ], [ -119.853300928141806, 34.41196153295833 ], [ -120.052977449430728, 34.469266222644336 ], [ -120.169558874776399, 34.476451281512169 ], [ -120.39647050452615, 34.459554308211352 ], [ -120.481191577093938, 34.471639269609852 ], [ -120.55982073048402, 34.54388536611583 ], [ -120.644695611651429, 34.579986441711725 ], [ -120.626716484989018, 34.668942743933258 ], [ -120.637620416069041, 34.749351682547498 ], [ -120.624903740779246, 34.811984741577376 ], [ -120.663015314498708, 34.949291875721485 ], [ -120.633610406150439, 35.076458628619392 ], [ -120.659087702044189, 35.122403454590795 ], [ -120.707043026139161, 35.157647596560253 ], [ -120.857374452772291, 35.209689834873629 ], [ -120.884889712610985, 35.274948626425555 ], [ -120.860291323000752, 35.365443014643262 ], [ -120.899589420202972, 35.425120751294784 ], [ -121.022839546974922, 35.480777491699172 ], [ -121.137948804295661, 35.607131256284816 ], [ -121.283830767868437, 35.676323153455527 ], [ -121.343854573869095, 35.792228919595729 ], [ -121.433744714016882, 35.863859781703226 ], [ -121.465011805053393, 35.927393719673731 ], [ -121.664353243321727, 36.154041677538416 ], [ -121.877411112777366, 36.331064389369416 ], [ -121.910177837660115, 36.432918641301725 ], [ -121.918648296967618, 36.572346136854833 ], [ -121.835141213703949, 36.657457224085945 ], [ -121.790003882880541, 36.732285107799783 ], [ -121.794524757076431, 36.80096064752891 ], [ -121.807444679444288, 36.85123408694669 ], [ -121.880668559190681, 36.938937947714209 ], [ -122.164214712585235, 36.990969199699038 ], [ -122.394900146189869, 37.207520721631695 ], [ -122.408468261941834, 37.373172583419574 ], [ -122.499237308373154, 37.542614728555151 ], [ -122.500451297677273, 37.652763658538248 ], [ -122.514222660507286, 37.771987295898768 ], [ -122.445624025077962, 37.798002921891182 ], [ -122.384100585231025, 37.788543693014716 ], [ -122.3902749018728, 37.741082753704234 ], [ -122.369708494838264, 37.655861803187676 ], [ -122.297594234274811, 37.591866439418325 ], [ -122.228660515824885, 37.563906233273599 ], [ -122.165999990973646, 37.501668682071312 ], [ -122.119049915940451, 37.482827128618183 ], [ -122.070528795925469, 37.478278788600932 ], [ -122.096544421917883, 37.518203106530166 ], [ -122.124142079220647, 37.543812238366456 ], [ -122.158040395943459, 37.626440415346593 ], [ -122.222200554640978, 37.732041005312439 ], [ -122.295990230307382, 37.790356437224489 ], [ -122.333431637985655, 37.896605220574443 ], [ -122.365473265184505, 37.921203610184662 ], [ -122.38544641047767, 37.960578611686699 ], [ -122.314233028854858, 38.007347412298913 ], [ -122.217031487060979, 38.040646974116072 ], [ -122.086728137363735, 38.049611818208064 ], [ -121.71685690743395, 38.034066163318158 ], [ -121.638101411265609, 38.061268312793345 ], [ -121.573012907806117, 38.052402345658265 ], [ -121.525343228253291, 38.055917970792365 ], [ -121.625725312160682, 38.083933108579799 ], [ -121.682206027205865, 38.074781496902574 ], [ -121.748634862747735, 38.080461428759861 ], [ -121.88077292931186, 38.075012209801997 ], [ -121.9341554997076, 38.086822512986913 ], [ -121.993119125003773, 38.120133061132606 ], [ -122.031510850101114, 38.123516850324194 ], [ -122.153777700468339, 38.065531008268437 ], [ -122.20829735586841, 38.072529299551036 ], [ -122.33712853754075, 38.13588745626484 ], [ -122.393351073865148, 38.144808355042642 ], [ -122.483889407397044, 38.108839115389259 ], [ -122.49489221543395, 37.953580320404114 ], [ -122.466910036632143, 37.838212884362576 ], [ -122.52132532191105, 37.826402581177675 ], [ -122.584189093840365, 37.8740722607305 ], [ -122.68069849693596, 37.902340084074453 ], [ -122.760382337866275, 37.945648191195275 ], [ -122.872931780636264, 38.026046143480983 ], [ -122.931999776053601, 38.055456544993518 ], [ -122.99879116043742, 37.988615722131243 ], [ -123.001455345109363, 38.019278565097807 ], [ -122.968150290127937, 38.097006839547277 ], [ -122.977604025840137, 38.227326668737334 ], [ -122.876809954612327, 38.123363041724559 ], [ -122.908153949948641, 38.196586921470953 ], [ -122.986546897275019, 38.277094737042091 ], [ -123.046180688612367, 38.305054943186803 ], [ -123.121162380925824, 38.44928346431368 ], [ -123.28973111294215, 38.535866719569697 ], [ -123.424786049734706, 38.675623804979153 ], [ -123.701125171604332, 38.907292514988484 ], [ -123.719521778751428, 39.110968059867446 ], [ -123.820293877322143, 39.368399710312701 ], [ -123.777787772185036, 39.514957333090933 ], [ -123.783500663027965, 39.618723206189912 ], [ -123.83292815514784, 39.775509100842697 ], [ -123.884476008676742, 39.860795969330496 ], [ -124.108514713512207, 40.094530109106131 ], [ -124.324033520561727, 40.251964197142996 ], [ -124.356536573559424, 40.371077971218085 ], [ -124.371653761636097, 40.491202487519217 ], [ -124.324522412181935, 40.598088477924733 ], [ -124.283675242654994, 40.71053355057353 ], [ -124.253907785464762, 40.740306500928028 ], [ -124.242333688343564, 40.727902936001755 ], [ -124.250600900572977, 40.703919780789988 ], [ -124.220009468741949, 40.696482036365637 ], [ -124.208435371620752, 40.74609629607076 ], [ -124.190242011551732, 40.771727400564146 ], [ -124.222486885828644, 40.775034285455916 ], [ -124.219180000936873, 40.790744735273989 ], [ -124.199904487506259, 40.822055771624633 ], [ -124.133091130465345, 40.969777945228543 ], [ -124.140012517448127, 41.155886350765513 ], [ -124.068518984447422, 41.384171271583284 ], [ -124.07190277363901, 41.459515512738676 ], [ -124.117688297846527, 41.621750626349325 ], [ -124.163243109154621, 41.719001606621674 ], [ -124.244607858352182, 41.787940818235853 ], [ -124.208742988819978, 41.888553615042696 ], [ -124.211665352212719, 41.984618071832244 ], [ -124.228408516913916, 42.000767974792069 ], [ -123.95565643131394, 42.00055923454974 ], [ -123.692006518912734, 42.00055923454974 ], [ -123.428351113347276, 42.00055923454974 ], [ -123.16470120094607, 42.00055923454974 ], [ -122.901045795380611, 42.00055923454974 ], [ -122.637390389815138, 42.00055923454974 ], [ -122.373740477413946, 42.00055923454974 ], [ -122.110063099191393, 42.00055923454974 ], [ -121.846380227804559, 42.00055923454974 ], [ -121.582730315403353, 42.00055923454974 ], [ -121.319074909837894, 42.00055923454974 ], [ -121.055419504272436, 42.00055923454974 ], [ -120.79176959187123, 42.00055923454974 ], [ -120.528114186305771, 42.00055923454974 ], [ -120.264464273904565, 42.00055923454974 ], [ -120.000808868339107, 42.00055923454974 ], [ -120.000759429860651, 41.813055565287669 ], [ -120.000704498217928, 41.625518937039971 ], [ -120.000655059739472, 41.438015267777899 ], [ -120.000627593918125, 41.250500612187267 ], [ -120.000600128096764, 41.062974970268101 ], [ -120.000550689618308, 40.875460314677497 ], [ -120.000501251139866, 40.687956645415426 ], [ -120.000446319497144, 40.500420017167727 ], [ -120.000396881018702, 40.31288338892 ], [ -120.000341949375979, 40.125379719657928 ], [ -120.000292510897523, 39.937876050395857 ], [ -120.000243072419082, 39.750339422148159 ], [ -120.000188140776359, 39.56280279390046 ], [ -120.000138702297903, 39.375299124638389 ], [ -120.000083770655181, 39.187784469047756 ], [ -120.0000617979981, 39.000258827128619 ], [ -119.765838766602258, 38.836782258392475 ], [ -119.531615735206429, 38.673294703327798 ], [ -119.29738721064632, 38.50979616193456 ], [ -119.063164179250478, 38.346319593198444 ], [ -118.828941147854636, 38.182843024462301 ], [ -118.594718116458807, 38.019333496740529 ], [ -118.360495085062979, 37.855856928004386 ], [ -118.126272053667122, 37.692380359268256 ], [ -117.942948682416088, 37.554578840339673 ], [ -117.759603338507958, 37.416788307739623 ], [ -117.576252501435562, 37.278964816153959 ], [ -117.392934623348779, 37.141174283553909 ], [ -117.209611252097744, 37.003372764625325 ], [ -117.026260415025334, 36.865549273039647 ], [ -116.842915071117204, 36.727758740439612 ], [ -116.659591699866155, 36.589968207839561 ], [ -116.405681167719308, 36.391785827232638 ], [ -116.151743169751086, 36.193625419282796 ], [ -115.897827144439958, 35.995475997661487 ], [ -115.643916612293097, 35.797293617054564 ], [ -115.39000608014625, 35.599122222776174 ], [ -115.136095547999389, 35.400961814826317 ], [ -114.882179522688261, 35.202812393205022 ], [ -114.610542549435507, 34.991116828488856 ] ] ], [ [ [ -119.882392726126568, 34.079680026142171 ], [ -119.678865496682931, 34.028461762469604 ], [ -119.569128554020239, 34.052961275122939 ], [ -119.549287244669614, 34.028154145270364 ], [ -119.562207167037457, 34.006609954995398 ], [ -119.809580833700579, 33.967795256249104 ], [ -119.885518336597357, 33.994931487753021 ], [ -119.892417750923059, 34.032164155188966 ], [ -119.91804885541643, 34.067847750300189 ], [ -119.882392726126568, 34.079680026142171 ] ] ], [ [ [ -120.306602337035443, 34.024869233035687 ], [ -120.359704756053333, 34.022265473170734 ], [ -120.441558396871102, 34.032933198187052 ], [ -120.412928024685201, 34.056323091657433 ], [ -120.36773576221907, 34.073296969258053 ], [ -120.353321699169214, 34.060585787132538 ], [ -120.306602337035443, 34.024869233035687 ] ] ], [ [ [ -120.043573152196984, 33.918862148913703 ], [ -120.113902134372012, 33.904854580019986 ], [ -120.167130896168146, 33.918082119587083 ], [ -120.251906900378657, 34.013838959177406 ], [ -120.071840975540937, 34.026506195988759 ], [ -119.994403838797894, 33.984933928777892 ], [ -119.983939360859637, 33.973332365835333 ], [ -120.043573152196984, 33.918862148913703 ] ] ], [ [ [ -118.347965177358418, 33.38576154264004 ], [ -118.297477504534044, 33.312131168737508 ], [ -118.37023446531731, 33.321216862443478 ], [ -118.446303804156628, 33.317086002910898 ], [ -118.46935312144214, 33.357142156782672 ], [ -118.492039889885689, 33.41282086984414 ], [ -118.507332859219076, 33.427004219994572 ], [ -118.559424536010908, 33.431970040496495 ], [ -118.563324682644051, 33.437078683269505 ], [ -118.569422094986024, 33.46418195578778 ], [ -118.554848730172282, 33.477079905498556 ], [ -118.39170724445674, 33.415095039852773 ], [ -118.347965177358418, 33.38576154264004 ] ] ], [ [ [ -119.438028695503561, 33.217198303787981 ], [ -119.482495860285781, 33.215341614264034 ], [ -119.543678723947835, 33.224614075555252 ], [ -119.575176527883769, 33.278326235807327 ], [ -119.525128308201147, 33.282050601183769 ], [ -119.478798960730686, 33.274634829416513 ], [ -119.442055184914963, 33.232447327807179 ], [ -119.438028695503561, 33.217198303787981 ] ] ], [ [ [ -118.350393155966671, 32.827612107285816 ], [ -118.408582245100476, 32.818515427251313 ], [ -118.473203829596841, 32.838928025686243 ], [ -118.52891000847967, 32.935607716874273 ], [ -118.590169776441542, 33.011160698272022 ], [ -118.557100927523834, 33.032660943232813 ], [ -118.507492160982963, 32.95989848928528 ], [ -118.383181853506528, 32.849463914760022 ], [ -118.350393155966671, 32.827612107285816 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-CO", "NAME_1": "Colorado" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.046670266878124, 37.000845909060189 ], [ -109.046648294221029, 37.250850801409612 ], [ -109.046648294221029, 37.500833721101955 ], [ -109.046620828399668, 37.750827627122845 ], [ -109.046593362578321, 38.000832519472269 ], [ -109.046593362578321, 38.250848398150254 ], [ -109.04656589675696, 38.500853290499663 ], [ -109.046543924099865, 38.750869169177662 ], [ -109.046543924099865, 39.000819129884349 ], [ -109.046516458278504, 39.250835008562319 ], [ -109.046488992457142, 39.500839900911757 ], [ -109.046488992457142, 39.750855779589727 ], [ -109.046467019800062, 40.000871658267698 ], [ -109.046439553978701, 40.250876550617136 ], [ -109.046439553978701, 40.500859470309479 ], [ -109.046412088157339, 40.750842390001822 ], [ -109.046390115500245, 41.000858268679792 ], [ -108.732351407231562, 41.000858268679792 ], [ -108.418312698962879, 41.000858268679792 ], [ -108.104273990694182, 41.000858268679792 ], [ -107.790213309768404, 41.000858268679792 ], [ -107.47614713567836, 41.000858268679792 ], [ -107.162108427409663, 41.000858268679792 ], [ -106.84806971914098, 41.000858268679792 ], [ -106.534036504036564, 41.000858268679792 ], [ -106.219997795767881, 41.000858268679792 ], [ -105.905931621677823, 41.000858268679792 ], [ -105.591870940752045, 41.000858268679792 ], [ -105.277832232483362, 41.000858268679792 ], [ -104.96379352421468, 41.000858268679792 ], [ -104.649754815945983, 41.000858268679792 ], [ -104.335721600841566, 41.000858268679792 ], [ -104.021655426751522, 41.000858268679792 ], [ -103.772084494379584, 41.000836296022698 ], [ -103.522486096186284, 41.00080333703707 ], [ -103.272915163814346, 41.000781364379975 ], [ -103.023344231442408, 41.000748405394347 ], [ -102.773745833249109, 41.000726432737281 ], [ -102.524174900877171, 41.000704460080186 ], [ -102.274603968505232, 41.000649528437464 ], [ -102.025005570311933, 41.000627555780369 ], [ -102.024956131833491, 40.87569102757692 ], [ -102.024879227533674, 40.750743513044938 ], [ -102.024802323233871, 40.625817971170022 ], [ -102.024747391591148, 40.500892429295106 ], [ -102.024697953112707, 40.375933928434563 ], [ -102.02462104881289, 40.251008386559676 ], [ -102.024544144513087, 40.12608284468476 ], [ -102.024489212870364, 40.001124343824216 ], [ -102.023769608350719, 39.813587715576517 ], [ -102.023044510666807, 39.626084046314446 ], [ -102.02231941298291, 39.438580377052375 ], [ -102.021572342641903, 39.251043748804676 ], [ -102.02081977913663, 39.063529093214044 ], [ -102.020100174616999, 38.876025423951972 ], [ -102.019375076933088, 38.688488795704274 ], [ -102.018649979249176, 38.500985126442202 ], [ -102.017924881565264, 38.313470470851598 ], [ -102.017177811224272, 38.125944828932433 ], [ -102.016430740883266, 37.938430173341814 ], [ -102.015705643199354, 37.750926504079743 ], [ -102.014980545515442, 37.56338987583203 ], [ -102.014260940995811, 37.375853247584331 ], [ -102.013535843311899, 37.18837155097934 ], [ -102.012783279806627, 37.000845909060189 ], [ -102.259799890792067, 37.000845909060189 ], [ -102.506811008613226, 37.000845909060189 ], [ -102.753827619598667, 37.000845909060189 ], [ -103.000838737419826, 37.000845909060189 ], [ -103.378724494022521, 37.000845909060189 ], [ -103.756582784803868, 37.000845909060189 ], [ -104.134441075585201, 37.000845909060189 ], [ -104.512299366366534, 37.000845909060189 ], [ -104.890157657147881, 37.000845909060189 ], [ -105.268015947929214, 37.000845909060189 ], [ -105.645874238710547, 37.000845909060189 ], [ -106.023754502148975, 37.000845909060189 ], [ -106.401640258751669, 37.000845909060189 ], [ -106.779498549533017, 37.000845909060189 ], [ -107.15735684031435, 37.000845909060189 ], [ -107.535215131095683, 37.000845909060189 ], [ -107.91307342187703, 37.000845909060189 ], [ -108.290931712658363, 37.000845909060189 ], [ -108.668790003439696, 37.000845909060189 ], [ -109.046670266878124, 37.000845909060189 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-CT", "NAME_1": "Connecticut" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.800835716179478, 42.011963043578504 ], [ -71.800319358737909, 41.958239896997895 ], [ -71.799561302068369, 41.883027491785015 ], [ -71.798968040326983, 41.828502343220663 ], [ -71.798198997328896, 41.753114156751082 ], [ -71.797320091045364, 41.667585589035298 ], [ -71.796518089061649, 41.588857558688318 ], [ -71.795792991377738, 41.519951306059738 ], [ -71.799231712212034, 41.479170054504067 ], [ -71.804527122570292, 41.416745735716518 ], [ -71.829872582521517, 41.392740607847685 ], [ -71.842353051747608, 41.335512822461482 ], [ -71.929947049229682, 41.341038945719163 ], [ -72.073889925814413, 41.326108525227738 ], [ -72.265271769052561, 41.291666385241996 ], [ -72.371059126603654, 41.312155887976729 ], [ -72.47941728503406, 41.275780154167222 ], [ -72.847151674062019, 41.265848513163377 ], [ -72.924715153583321, 41.285151492415338 ], [ -73.023723946422706, 41.21647595268621 ], [ -73.182267653642555, 41.175837523401611 ], [ -73.582993987288418, 41.021886101513189 ], [ -73.630465912927463, 40.991860465602173 ], [ -73.682112643413248, 41.054702264874408 ], [ -73.723014744582912, 41.104514278493326 ], [ -73.641880708284774, 41.143405881539422 ], [ -73.579796965682092, 41.173145872908293 ], [ -73.521756191983641, 41.200919311467771 ], [ -73.484139003048654, 41.218958862937171 ], [ -73.514450283501816, 41.257454958155677 ], [ -73.544728604969336, 41.295951053374182 ], [ -73.536719571460694, 41.390905890980804 ], [ -73.528688565294956, 41.485838755930331 ], [ -73.520646572800686, 41.580793593536953 ], [ -73.512637539292029, 41.675748431143575 ], [ -73.504628505783387, 41.770703268750168 ], [ -73.496619472274745, 41.86565810635679 ], [ -73.488610438766102, 41.960612943963412 ], [ -73.480568446271818, 42.055567781570034 ], [ -73.396468101266777, 42.052887117405248 ], [ -73.312345783604641, 42.050195466911958 ], [ -73.228234452271039, 42.047514802747202 ], [ -73.144134107265998, 42.044823152253883 ], [ -73.060033762260943, 42.042131501760593 ], [ -72.975922430927355, 42.039450837595837 ], [ -72.891800113265219, 42.036759187102518 ], [ -72.807699768260164, 42.034078522937762 ], [ -72.806458313134684, 42.008029937959719 ], [ -72.763325987270562, 42.011237945894607 ], [ -72.75762408275618, 42.034078522937762 ], [ -72.638114800853515, 42.032650300227033 ], [ -72.518638477936477, 42.031233063844837 ], [ -72.399140182362359, 42.02981582746267 ], [ -72.279641886788241, 42.028387604751941 ], [ -72.160132604885561, 42.026970368369746 ], [ -72.040634309311443, 42.02555313198755 ], [ -71.921136013737325, 42.024124909276821 ], [ -71.801637718163192, 42.022707672894626 ], [ -71.800835716179478, 42.011963043578504 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-DC", "NAME_1": "District of Columbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.030361062154412, 38.889252963519084 ], [ -77.053047830597976, 38.915301548497126 ], [ -77.101827129333756, 38.93596683248856 ], [ -77.122052960183439, 38.943536412855451 ], [ -77.042116433696592, 39.01178348577136 ], [ -76.988788794943559, 38.952347448347808 ], [ -76.931242406029583, 38.888220248635918 ], [ -77.019737282452269, 38.806525909582035 ], [ -77.030361062154412, 38.889252963519084 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-DE", "NAME_1": "Delaware" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.037660790826436, 38.45558961689801 ], [ -75.144656644517369, 38.454864519214084 ], [ -75.366272863908861, 38.454919450856806 ], [ -75.587856124314712, 38.454996355156624 ], [ -75.688600757064066, 38.455018327813718 ], [ -75.690907886058326, 38.455018327813718 ], [ -75.693226001381134, 38.455018327813718 ], [ -75.695533130375395, 38.455018327813718 ], [ -75.697829273041108, 38.455018327813718 ], [ -75.700125415706822, 38.455018327813718 ], [ -75.702432544701082, 38.455040300470785 ], [ -75.704728687366796, 38.455073259456441 ], [ -75.707024830032523, 38.455073259456441 ], [ -75.71674773079404, 38.61348513073375 ], [ -75.726459645227024, 38.771897002011059 ], [ -75.736171559660008, 38.930308873288368 ], [ -75.745883474092977, 39.088720744565677 ], [ -75.755606374854509, 39.247143602171519 ], [ -75.765318289287492, 39.405555473448828 ], [ -75.775030203720462, 39.563945372069043 ], [ -75.784720145496365, 39.722357243346352 ], [ -75.709145191441522, 39.802898017903118 ], [ -75.676823412864806, 39.827232735628286 ], [ -75.63458097961275, 39.839482491954954 ], [ -75.51044645339303, 39.843437570230833 ], [ -75.421028725372636, 39.81542243244337 ], [ -75.464402750464714, 39.780936347143466 ], [ -75.502129802685147, 39.717391422844429 ], [ -75.587603438758208, 39.640783753906447 ], [ -75.581582930716039, 39.589466613276983 ], [ -75.567267744623081, 39.552992002510592 ], [ -75.573881514406622, 39.476944636328341 ], [ -75.519806805312598, 39.402819877641349 ], [ -75.412657143022031, 39.281377001914905 ], [ -75.392167640287298, 39.092752727141345 ], [ -75.310407383262131, 38.966563757483868 ], [ -75.185064360902558, 38.819390900307184 ], [ -75.088692286913755, 38.777532988554157 ], [ -75.083990138296883, 38.722810086076038 ], [ -75.128484768900464, 38.632447533800843 ], [ -75.187107818011754, 38.591127952146508 ], [ -75.110862697915735, 38.599378684883106 ], [ -75.072882960138799, 38.578735373548767 ], [ -75.035881005602292, 38.503336200750653 ], [ -75.037660790826436, 38.45558961689801 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-FL", "NAME_1": "Florida" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.489510631061179, 30.377682814609685 ], [ -87.480106333827436, 30.411707474110756 ], [ -87.444807260215256, 30.442557084662567 ], [ -87.429382454939343, 30.477856158274747 ], [ -87.433809945342617, 30.545938436262503 ], [ -87.408277717806143, 30.641464562953416 ], [ -87.421659065972847, 30.671589075821316 ], [ -87.566195204298964, 30.7956357114127 ], [ -87.601054824769378, 30.860597872093933 ], [ -87.607437881653496, 30.929328343465798 ], [ -87.59369398464483, 31.000739479002419 ], [ -87.270300417620845, 31.000794410645128 ], [ -86.946939809582503, 31.00084934228785 ], [ -86.623568215215599, 31.000893287602025 ], [ -86.300174648191614, 31.000948219244748 ], [ -85.976792067496177, 31.00100315088747 ], [ -85.653398500472193, 31.001058082530193 ], [ -85.330004933448208, 31.001102027844368 ], [ -85.007281532465399, 31.00167331692866 ], [ -84.96633548598156, 30.922637669382439 ], [ -84.886882357950668, 30.759259977603207 ], [ -84.883938021900846, 30.720939663641403 ], [ -84.790378448019339, 30.715127895841576 ], [ -84.630977807173053, 30.705778530250541 ], [ -84.471555193669687, 30.696451137316615 ], [ -84.312165539151962, 30.687123744382674 ], [ -84.152764898305676, 30.677763392463106 ], [ -83.993342284802324, 30.668414026872071 ], [ -83.833941643956038, 30.659086633938145 ], [ -83.674551989438314, 30.649759241004205 ], [ -83.515129375934947, 30.640398889084636 ], [ -83.355706762431581, 30.631049523493616 ], [ -83.196306121585295, 30.621722130559675 ], [ -83.03691646706757, 30.612394737625735 ], [ -82.877493853564204, 30.603045372034714 ], [ -82.718093212717932, 30.593685020115146 ], [ -82.558703558200193, 30.584357627181205 ], [ -82.399280944696827, 30.575030234247265 ], [ -82.239880303850555, 30.565680868656244 ], [ -82.23892449326722, 30.532612019738522 ], [ -82.21273308601809, 30.480745562681847 ], [ -82.206240165848527, 30.421606156128973 ], [ -82.19423210874983, 30.393437209741919 ], [ -82.162624441528479, 30.375716261800292 ], [ -82.112274097810882, 30.371354689368289 ], [ -82.061758959165132, 30.404599319542726 ], [ -82.029821702087446, 30.477702349675127 ], [ -82.021834641235898, 30.559869100856417 ], [ -82.041159593144954, 30.653219934495596 ], [ -82.038193284438051, 30.73196993749967 ], [ -82.012946701443724, 30.778068572070694 ], [ -81.983052901475233, 30.789494353756552 ], [ -81.957081220796994, 30.814290497280567 ], [ -81.93559196216475, 30.819509003339022 ], [ -81.880451579201932, 30.806336395414647 ], [ -81.67335928614574, 30.740242642893378 ], [ -81.503939113667244, 30.731431607401007 ], [ -81.457192285712125, 30.640761437926585 ], [ -81.385726218532781, 30.269983835891921 ], [ -81.337100728396621, 30.141213079026585 ], [ -81.249506730914547, 29.793792411476659 ], [ -81.104531139446664, 29.456962564643248 ], [ -80.900020633598331, 29.049853174113252 ], [ -80.564300405947876, 28.556402227555225 ], [ -80.524123402462124, 28.486089724873011 ], [ -80.567816031081989, 28.426455933535664 ], [ -80.581153433934517, 28.364679808132223 ], [ -80.584976676267857, 28.271603632706643 ], [ -80.572858755883729, 28.180867545260966 ], [ -80.533165150853904, 28.07007042189376 ], [ -80.456887071772258, 27.900672222072359 ], [ -80.499546985508985, 27.934466168673993 ], [ -80.610014519019856, 28.177604605683371 ], [ -80.62287950974499, 28.320360958785344 ], [ -80.606938347027508, 28.522882939167189 ], [ -80.63287706872012, 28.518026981950698 ], [ -80.653882928896422, 28.452185914985932 ], [ -80.665484491838995, 28.374908080006776 ], [ -80.693488643297897, 28.344959348395562 ], [ -80.731754025616979, 28.462919557973521 ], [ -80.729051388795128, 28.516214237740925 ], [ -80.68845690482469, 28.578539679571577 ], [ -80.700267208009592, 28.60094080347298 ], [ -80.765943480046204, 28.632823128907944 ], [ -80.779896117297199, 28.68295374605465 ], [ -80.771008177505024, 28.732458142474343 ], [ -80.808680298082734, 28.758946180594165 ], [ -80.838189576552168, 28.757649793825962 ], [ -80.818425171501346, 28.635613656358146 ], [ -80.787213012107571, 28.560631964044703 ], [ -80.748607053603621, 28.381005492348748 ], [ -80.686358516072772, 28.272174921790935 ], [ -80.650114618205805, 28.180911490575141 ], [ -80.226108254374992, 27.207050369440907 ], [ -80.125770115781776, 27.083003733849523 ], [ -80.088647311631277, 26.99395954099964 ], [ -80.050041353127327, 26.80769732686305 ], [ -80.041307221934773, 26.568612845086449 ], [ -80.110587009733834, 26.131587681930881 ], [ -80.126374363851696, 25.833517602201042 ], [ -80.136295018527022, 25.842614282235559 ], [ -80.142908788310564, 25.874024195543115 ], [ -80.158926855327849, 25.878341822660943 ], [ -80.219077004106779, 25.741737813543665 ], [ -80.300826274803384, 25.618537125250185 ], [ -80.327753766064959, 25.427078377712235 ], [ -80.366920027324667, 25.33126660647919 ], [ -80.484638537674641, 25.229829835031552 ], [ -80.557631704521611, 25.232411622239411 ], [ -80.736544064862201, 25.156342283400107 ], [ -80.862216677078109, 25.176194579079279 ], [ -81.011971321462667, 25.13324902080042 ], [ -81.110496715846111, 25.13805004637419 ], [ -81.167394911375979, 25.228533448263349 ], [ -81.158682752840519, 25.268996096291261 ], [ -81.136028943382584, 25.309645511904407 ], [ -81.097653697778071, 25.319148686095048 ], [ -80.965367315778622, 25.224303711773871 ], [ -80.940406377326426, 25.264217043374572 ], [ -80.980352667912754, 25.311656010027974 ], [ -81.056850473565291, 25.338144048147797 ], [ -81.113309215953407, 25.367235846132559 ], [ -81.227127579670224, 25.583402846566173 ], [ -81.345076802919635, 25.731817158868353 ], [ -81.364929098598807, 25.83103469195008 ], [ -81.568242094635835, 25.891547389570945 ], [ -81.715502842440884, 25.983173369628702 ], [ -81.811490394930644, 26.146100621937634 ], [ -81.86657584625074, 26.434997117333168 ], [ -81.93148307528925, 26.467450731852423 ], [ -81.958948896649488, 26.489928760053644 ], [ -81.895513835635882, 26.597166312972547 ], [ -81.828640053787979, 26.687056453120334 ], [ -81.881561198384887, 26.664677301876011 ], [ -81.920551678387881, 26.631421685373041 ], [ -81.970187910750099, 26.552045461641953 ], [ -82.006387863302891, 26.539850636958008 ], [ -82.039610520820247, 26.552045461641953 ], [ -82.077875903139329, 26.704337947920195 ], [ -82.066922533580865, 26.891566958968667 ], [ -82.01325431864295, 26.961560858123107 ], [ -82.095684741709306, 26.963417547647055 ], [ -82.181103446139645, 26.936775700927626 ], [ -82.168622976913554, 26.874351382140077 ], [ -82.180663992997879, 26.840096009739582 ], [ -82.242857598886005, 26.848874086246312 ], [ -82.290065852639984, 26.870813784348869 ], [ -82.35403924375224, 26.935742986044474 ], [ -82.441369569349263, 27.05969074467896 ], [ -82.620457710946553, 27.401068931529622 ], [ -82.655361276731142, 27.449232995866936 ], [ -82.714588573912366, 27.499583339584532 ], [ -82.686705272067442, 27.515271816745496 ], [ -82.635849557236824, 27.524577237022342 ], [ -82.520844670037235, 27.678254000697152 ], [ -82.430515076747696, 27.771121435880389 ], [ -82.400544372479402, 27.835380471534805 ], [ -82.405762878537843, 27.862901224537751 ], [ -82.445709169124171, 27.902847515124094 ], [ -82.498135928936591, 27.867910990353863 ], [ -82.520613957137812, 27.877886576671898 ], [ -82.579610541419612, 27.958449323885759 ], [ -82.635937447865189, 27.981212996629125 ], [ -82.675202586081781, 27.963766706901097 ], [ -82.633817086456176, 27.897782817665259 ], [ -82.596551460034604, 27.873239359697749 ], [ -82.610976509412993, 27.777218848222361 ], [ -82.626005806861315, 27.745984716171492 ], [ -82.660887399988823, 27.718409031525823 ], [ -82.715335644253358, 27.73310873911781 ], [ -82.742856397256318, 27.709367283134029 ], [ -82.775299025447026, 27.734383153228933 ], [ -82.8075548860525, 27.776548682181172 ], [ -82.843513139377322, 27.846004251236934 ], [ -82.74853632911362, 28.236798943878952 ], [ -82.660634714432305, 28.485859011973588 ], [ -82.650604196471548, 28.76992152280971 ], [ -82.644023385673634, 28.812010147462146 ], [ -82.65148310275508, 28.887486224560078 ], [ -82.769333449047593, 29.051556055037594 ], [ -83.290469943536735, 29.451897867184414 ], [ -83.694371326131858, 29.925979916519211 ], [ -84.044219972290023, 30.103793644005393 ], [ -84.309682628901001, 30.064759218688224 ], [ -84.355616468543857, 30.029020691934278 ], [ -84.375336928280504, 29.98227386397916 ], [ -84.358692640536205, 29.929385678367879 ], [ -84.382829604347577, 29.907369075965519 ], [ -84.454064958627498, 29.910159603415721 ], [ -84.549975606817441, 29.897865901774878 ], [ -84.80055178825117, 29.773072195842502 ], [ -84.888925815059864, 29.777609549531206 ], [ -84.969169958745937, 29.745287770954477 ], [ -85.029298134867773, 29.721084889171834 ], [ -85.186040084206383, 29.707901294918926 ], [ -85.318941700604299, 29.680204760659265 ], [ -85.376356253575736, 29.695190112793412 ], [ -85.413797661254009, 29.767590017898996 ], [ -85.413797661254009, 29.842472833255542 ], [ -85.383442435486685, 29.785058280284105 ], [ -85.336409962989407, 29.740124196538758 ], [ -85.314887745371522, 29.758075857379808 ], [ -85.306856739205799, 29.797846366709436 ], [ -85.353625539818012, 29.875750422415607 ], [ -85.504281063143182, 29.975791930138143 ], [ -85.675799624373596, 30.12193207243169 ], [ -85.623471741518074, 30.117076115215212 ], [ -85.610277160936619, 30.148398137894418 ], [ -85.663418032104403, 30.189454047663702 ], [ -85.64097296288881, 30.236893014317104 ], [ -85.603531555210537, 30.28678193223584 ], [ -85.675898501330494, 30.279289256168767 ], [ -85.740805730369004, 30.244385690384178 ], [ -85.742948064435112, 30.201253364520056 ], [ -85.755791082503151, 30.166997992119576 ], [ -85.790749579930463, 30.171985785278594 ], [ -85.855656808968973, 30.214403999787351 ], [ -86.175150229359815, 30.332518017964915 ], [ -86.454433687279248, 30.399128127927767 ], [ -86.24007943105542, 30.429098832196047 ], [ -86.123833088730336, 30.405796829354031 ], [ -86.137708821681528, 30.441557328765057 ], [ -86.165691000483349, 30.464244097208606 ], [ -86.257393884840909, 30.493017291665595 ], [ -86.374178557264642, 30.48206392210713 ], [ -86.447951753438232, 30.495610065202001 ], [ -86.523372898893456, 30.467111528958625 ], [ -86.606077980173396, 30.424682328121321 ], [ -86.679642436104658, 30.402896438618384 ], [ -86.967605093573937, 30.372354445265799 ], [ -87.201152465764309, 30.339230664705354 ], [ -87.163722044414584, 30.374189162132666 ], [ -87.123775753828255, 30.396667190333886 ], [ -86.985798453642957, 30.430856644763111 ], [ -86.965155142308603, 30.501916217786317 ], [ -86.997575797842231, 30.570328085630393 ], [ -87.033907586337548, 30.553925497114065 ], [ -87.072019160057025, 30.500433063432865 ], [ -87.118787960669238, 30.538962117636999 ], [ -87.170588499754643, 30.538786336380298 ], [ -87.184651000291083, 30.45369722180628 ], [ -87.251074342668687, 30.396667190333886 ], [ -87.281045046936981, 30.339230664705354 ], [ -87.475766734052513, 30.294274608302914 ], [ -87.500727672504709, 30.30925996043706 ], [ -87.443730600017943, 30.363829054315588 ], [ -87.448300912692275, 30.39416230742583 ], [ -87.489510631061179, 30.377682814609685 ] ] ], [ [ [ -84.907888218126971, 29.642631517038453 ], [ -85.008270302034376, 29.606618332070909 ], [ -85.116738323750226, 29.632787766662943 ], [ -85.04932621180366, 29.637775559821961 ], [ -85.000546913067879, 29.627184739105459 ], [ -84.876983675932436, 29.678677660991639 ], [ -84.812186310179371, 29.717646168337538 ], [ -84.737171658880285, 29.732444752886437 ], [ -84.907888218126971, 29.642631517038453 ] ] ], [ [ [ -80.18675522553005, 27.278439532320434 ], [ -80.170506445613327, 27.204798172089369 ], [ -80.262462015527404, 27.375569662978791 ], [ -80.376071639001893, 27.643427339212366 ], [ -80.436891953821998, 27.8505525912542 ], [ -80.395759139752911, 27.794555274664944 ], [ -80.355505231967342, 27.6786165495391 ], [ -80.18675522553005, 27.278439532320434 ] ] ], [ [ [ -82.083764575238959, 26.552331106184099 ], [ -82.085214770606783, 26.493598193787363 ], [ -82.135598073310007, 26.591969779571201 ], [ -82.169139334355123, 26.700723445829198 ], [ -82.121129078617429, 26.665534235502463 ], [ -82.083764575238959, 26.552331106184099 ] ] ], [ [ [ -82.037182542211994, 26.453629930543954 ], [ -82.072844164666122, 26.427537400251722 ], [ -82.144958425229575, 26.44665361191845 ], [ -82.184388358374321, 26.480941943304572 ], [ -82.201384208632049, 26.548046438051898 ], [ -82.138597341002537, 26.476986865028692 ], [ -82.116064381158594, 26.460913866368685 ], [ -82.037182542211994, 26.453629930543954 ] ] ], [ [ [ -80.381828475158997, 25.142290769192201 ], [ -80.580582144850226, 24.954237783502933 ], [ -80.558565542447852, 25.001314201314372 ], [ -80.481046008240725, 25.101959957106828 ], [ -80.456019151817273, 25.149322019460428 ], [ -80.403669296304656, 25.179336669042897 ], [ -80.354933942883051, 25.233653077364906 ], [ -80.351286481806412, 25.296956302435973 ], [ -80.280490580668271, 25.341242192797225 ], [ -80.257056741883716, 25.347603277024263 ], [ -80.381828475158997, 25.142290769192201 ] ] ], [ [ [ -80.638304315020903, 24.903184314758519 ], [ -80.665143915654127, 24.898449207156006 ], [ -80.625670037195192, 24.941087148235653 ], [ -80.614606804351283, 24.937934071943488 ], [ -80.638304315020903, 24.903184314758519 ] ] ], [ [ [ -80.829400513716891, 24.803681137134646 ], [ -80.848362916783998, 24.803681137134646 ], [ -80.838881715250452, 24.817886459942159 ], [ -80.799407836791517, 24.846308091885732 ], [ -80.785191527655456, 24.835277818027464 ], [ -80.786773558965805, 24.821039536234323 ], [ -80.829400513716891, 24.803681137134646 ] ] ], [ [ [ -81.044194223082499, 24.716812237336484 ], [ -81.090007213111377, 24.693114726666877 ], [ -81.137369275464962, 24.710506084752183 ], [ -81.085250132851783, 24.734203595421789 ], [ -80.930485722651113, 24.759472151073211 ], [ -80.988922004177155, 24.727875470180393 ], [ -81.044194223082499, 24.716812237336484 ] ] ], [ [ [ -81.33479359940236, 24.650487771915778 ], [ -81.364797262656282, 24.629943337538322 ], [ -81.379035544449437, 24.636271462779732 ], [ -81.379035544449437, 24.666275126033653 ], [ -81.421662499200522, 24.732599591454346 ], [ -81.420091454218721, 24.749990949539651 ], [ -81.322313130176269, 24.68508372050114 ], [ -81.319841206253841, 24.667615458116032 ], [ -81.33479359940236, 24.650487771915778 ] ] ], [ [ [ -81.566693022311114, 24.599895728970225 ], [ -81.631501374392741, 24.590019019609088 ], [ -81.579250395837022, 24.62937204845403 ], [ -81.562298490893482, 24.689137675733917 ], [ -81.531635647926919, 24.642478738407135 ], [ -81.532228909668291, 24.61415598342046 ], [ -81.566693022311114, 24.599895728970225 ] ] ], [ [ [ -81.783837805985158, 24.544579564750705 ], [ -81.809216224922025, 24.542349340056262 ], [ -81.811413490630841, 24.557807104317803 ], [ -81.767687903025347, 24.576714575742187 ], [ -81.738651036683294, 24.575429175302531 ], [ -81.739760655866249, 24.554500219426018 ], [ -81.783837805985158, 24.544579564750705 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-GA", "NAME_1": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.007281532465399, 31.00167331692866 ], [ -85.067442667572877, 31.117579083068861 ], [ -85.092601359938854, 31.295711414082831 ], [ -85.054885294046969, 31.572676756679456 ], [ -85.067047159745286, 31.635177979766823 ], [ -85.067200968344906, 31.635386720009166 ], [ -85.124824261558686, 31.776769782043118 ], [ -85.124132122860402, 31.880535655142097 ], [ -85.064410440894704, 32.050527116704885 ], [ -85.064564249494325, 32.051043474146454 ], [ -85.034626504211658, 32.147371602821082 ], [ -84.992977332700988, 32.201830833414164 ], [ -84.929696080287002, 32.246556176917167 ], [ -84.921533238178739, 32.285887233105029 ], [ -84.968499792704748, 32.319813015649203 ], [ -84.985968055089856, 32.36094582971829 ], [ -84.973905066348451, 32.409285675312304 ], [ -85.015037880417538, 32.526158238364388 ], [ -85.156530805736935, 32.804277145458158 ], [ -85.176317183444851, 32.898221240838723 ], [ -85.200970504697807, 32.956229055551546 ], [ -85.227381638517812, 33.084022029176467 ], [ -85.25378178600927, 33.21182598912992 ], [ -85.280192919829275, 33.339618962754841 ], [ -85.306626026306361, 33.467389963722667 ], [ -85.333059132783461, 33.595160964690493 ], [ -85.359459280274919, 33.722953938315399 ], [ -85.385870414094924, 33.85074691194032 ], [ -85.412270561586382, 33.978550871893773 ], [ -85.438681695406387, 34.106343845518694 ], [ -85.465114801883487, 34.234136819143615 ], [ -85.491547908360573, 34.361929792768521 ], [ -85.517948055852031, 34.489678821079266 ], [ -85.544359189672036, 34.617471794704173 ], [ -85.570770323492042, 34.745264768329093 ], [ -85.597170470983514, 34.873068728282547 ], [ -85.623603577460599, 35.000861701907468 ], [ -85.298891651011317, 34.997653693972595 ], [ -84.974157751904954, 34.994478645023349 ], [ -84.649423852798591, 34.991303596074104 ], [ -84.324689953692229, 34.988095588139231 ], [ -84.022225342544743, 34.991457404673724 ], [ -83.719771717725806, 34.994786262222576 ], [ -83.41730710657832, 34.998126106099988 ], [ -83.114820522773741, 35.001476936305934 ], [ -83.121357388257479, 35.000554084708227 ], [ -83.170400358878325, 34.932911259862237 ], [ -83.316716282428587, 34.80565661633598 ], [ -83.355574926489055, 34.708317745435295 ], [ -83.166522184902263, 34.599597038162941 ], [ -83.165895964175249, 34.598531364294161 ], [ -83.052780725485249, 34.510860462512284 ], [ -82.975678671762779, 34.476396349869447 ], [ -82.896818805473274, 34.465805529152945 ], [ -82.847731889538252, 34.436911485081978 ], [ -82.818607132567848, 34.366071638629649 ], [ -82.818585159910768, 34.366016706986926 ], [ -82.589267524209873, 34.017376556968614 ], [ -82.589344428509676, 34.017618256196585 ], [ -82.351896909686147, 33.837728112615565 ], [ -82.256623468551751, 33.749233236192879 ], [ -82.20836052725754, 33.663583818863117 ], [ -82.005717697261701, 33.522892895527434 ], [ -81.936393964148465, 33.447284982486963 ], [ -81.932845380028724, 33.389870429515526 ], [ -81.908741375202979, 33.349253972888008 ], [ -81.864092935999778, 33.325435612604409 ], [ -81.821279213663431, 33.274096499317849 ], [ -81.780322180851044, 33.195291564671052 ], [ -81.699319980495432, 33.126758847212997 ], [ -81.578239653610964, 33.068575251243459 ], [ -81.489777736173906, 32.935662648516995 ], [ -81.433813378570292, 32.72803202536214 ], [ -81.376970114683147, 32.607468055919242 ], [ -81.290331927784408, 32.557238561815637 ], [ -81.171503798251479, 32.38013894568482 ], [ -81.132952771390237, 32.274670191661514 ], [ -81.135018201156527, 32.181857688120999 ], [ -81.074813120734888, 32.109699482243386 ], [ -80.872346071995764, 32.029565201842743 ], [ -80.923432499725806, 31.944893567753411 ], [ -81.045534555164878, 31.892038341127773 ], [ -81.082877085886253, 31.894103770894063 ], [ -81.113287243296313, 31.878624033975427 ], [ -81.095511363711964, 31.840896981755009 ], [ -81.065046274659196, 31.813464119380399 ], [ -81.066133921185056, 31.787986823486634 ], [ -81.098400768119063, 31.753379888572738 ], [ -81.162121473674816, 31.743722905782477 ], [ -81.197903945742937, 31.704216068337914 ], [ -81.186588027342509, 31.666961428244889 ], [ -81.165527235523484, 31.646153321982368 ], [ -81.16992176694113, 31.610315918271539 ], [ -81.242398576346517, 31.574324705961075 ], [ -81.259350481290056, 31.538926755391998 ], [ -81.223414200622315, 31.528467770618022 ], [ -81.195684707377026, 31.538926755391998 ], [ -81.175425917541716, 31.531302243382399 ], [ -81.218909805919239, 31.472140864172445 ], [ -81.257933244907875, 31.43601781591947 ], [ -81.294979144758557, 31.371209463837843 ], [ -81.380947165616107, 31.353257802996794 ], [ -81.377739157681233, 31.332295888134666 ], [ -81.329135640202153, 31.313750965552231 ], [ -81.288464251931913, 31.26390599294767 ], [ -81.364874166956085, 31.17189549139087 ], [ -81.412620750808728, 31.179443099100666 ], [ -81.441767480436212, 31.199723861593071 ], [ -81.460345362004276, 31.127071270930969 ], [ -81.453215234779165, 31.088278544841756 ], [ -81.471375635862543, 31.009012184396113 ], [ -81.500599269789845, 30.913771702247359 ], [ -81.520396633826309, 30.874649386301826 ], [ -81.516232815308086, 30.801810028054476 ], [ -81.503939113667244, 30.731431607401007 ], [ -81.67335928614574, 30.740242642893378 ], [ -81.880451579201932, 30.806336395414647 ], [ -81.93559196216475, 30.819509003339022 ], [ -81.957081220796994, 30.814290497280567 ], [ -81.983052901475233, 30.789494353756552 ], [ -82.012946701443724, 30.778068572070694 ], [ -82.038193284438051, 30.73196993749967 ], [ -82.041159593144954, 30.653219934495596 ], [ -82.021834641235898, 30.559869100856417 ], [ -82.029821702087446, 30.477702349675127 ], [ -82.061758959165132, 30.404599319542726 ], [ -82.112274097810882, 30.371354689368289 ], [ -82.162624441528479, 30.375716261800292 ], [ -82.19423210874983, 30.393437209741919 ], [ -82.206240165848527, 30.421606156128973 ], [ -82.21273308601809, 30.480745562681847 ], [ -82.23892449326722, 30.532612019738522 ], [ -82.239880303850555, 30.565680868656244 ], [ -82.399280944696827, 30.575030234247265 ], [ -82.558703558200193, 30.584357627181205 ], [ -82.718093212717932, 30.593685020115146 ], [ -82.877493853564204, 30.603045372034714 ], [ -83.03691646706757, 30.612394737625735 ], [ -83.196306121585295, 30.621722130559675 ], [ -83.355706762431581, 30.631049523493616 ], [ -83.515129375934947, 30.640398889084636 ], [ -83.674551989438314, 30.649759241004205 ], [ -83.833941643956038, 30.659086633938145 ], [ -83.993342284802324, 30.668414026872071 ], [ -84.152764898305676, 30.677763392463106 ], [ -84.312165539151962, 30.687123744382674 ], [ -84.471555193669687, 30.696451137316615 ], [ -84.630977807173053, 30.705778530250541 ], [ -84.790378448019339, 30.715127895841576 ], [ -84.883938021900846, 30.720939663641403 ], [ -84.886882357950668, 30.759259977603207 ], [ -84.96633548598156, 30.922637669382439 ], [ -85.007281532465399, 31.00167331692866 ] ] ], [ [ [ -81.418981835035765, 30.971438940775315 ], [ -81.46349843829644, 30.727762173667287 ], [ -81.482724513248598, 30.814092743366785 ], [ -81.484636134415268, 30.897830539529878 ], [ -81.450941064770532, 30.947411840249373 ], [ -81.418981835035765, 30.971438940775315 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-HI", "NAME_1": "Hawaii" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.371467337373616, 33.700500114369262 ], [ -126.39048467208346, 33.696369254836682 ], [ -126.38883122963756, 33.708772819762956 ], [ -126.370640616150666, 33.721176384689244 ], [ -126.354104131755207, 33.717034538828116 ], [ -126.361545996052769, 33.707113884152804 ], [ -126.371467337373616, 33.700500114369262 ] ] ], [ [ [ -108.372772650533761, 27.432360226821203 ], [ -108.460674265215061, 27.376132197332524 ], [ -108.511859569902015, 27.400368038100794 ], [ -108.608857864617818, 27.409519649778019 ], [ -108.646373430013767, 27.451740110372981 ], [ -108.748021688285888, 27.489818725106815 ], [ -108.789181968176337, 27.541806031777469 ], [ -108.726625813446248, 27.640199590218387 ], [ -108.57922224337014, 27.723135384397764 ], [ -108.352052434899605, 27.719575813949476 ], [ -108.304791996085044, 27.654053350512498 ], [ -108.300658389970323, 27.60526306544817 ], [ -108.330189641096865, 27.550693971569643 ], [ -108.343730291027441, 27.47364684948991 ], [ -108.372772650533761, 27.432360226821203 ] ] ], [ [ [ -109.180009619803968, 27.341074822948315 ], [ -109.200240943817931, 27.296887809543961 ], [ -109.234710549625021, 27.303677360584217 ], [ -109.243444680817589, 27.343063348414788 ], [ -109.220911720973646, 27.397269893451352 ], [ -109.163859716844144, 27.444038694063565 ], [ -109.10063614265502, 27.515241089357858 ], [ -109.04872848686631, 27.504650268641342 ], [ -109.076710665668116, 27.458090208271472 ], [ -109.080042269799122, 27.407443233683196 ], [ -109.153395238905887, 27.378768916183105 ], [ -109.180009619803968, 27.341074822948315 ] ] ], [ [ [ -106.799354621762632, 26.956652200861882 ], [ -106.764989386076707, 26.950939310018953 ], [ -106.720884770136422, 26.957706888402114 ], [ -106.705536869160312, 26.878077979114508 ], [ -106.654170290052406, 26.833912938367249 ], [ -106.635411134063361, 26.807644626818316 ], [ -106.690886600046781, 26.779739352316312 ], [ -106.798786079260481, 26.76862118782968 ], [ -106.849325937145437, 26.790846530474397 ], [ -106.901752696957857, 26.840559667136418 ], [ -106.958442152245397, 26.826914647084649 ], [ -106.968310621860127, 26.866915869313701 ], [ -106.978440016777796, 26.878484473270646 ], [ -107.017273941599029, 26.86773984395451 ], [ -106.980969618925059, 26.816115086125805 ], [ -107.079157183705775, 26.812236912149743 ], [ -107.110344623860328, 26.818597996376781 ], [ -107.137835164459801, 26.877144141188253 ], [ -107.239093408068584, 26.98933652828056 ], [ -107.238681420748179, 27.033051129557521 ], [ -107.273123560733922, 27.085247176470517 ], [ -107.123107991046425, 27.100254501261745 ], [ -107.020350113591377, 27.191803577019684 ], [ -106.96249610747816, 27.201361682853047 ], [ -106.851495737032906, 27.053364851035539 ], [ -106.85433844954369, 27.011913433438679 ], [ -106.829583504751696, 26.971450785410767 ], [ -106.799354621762632, 26.956652200861882 ] ] ], [ [ [ -106.213602035941392, 26.715392426033546 ], [ -106.002296485888508, 26.687959563658936 ], [ -105.952352636327078, 26.699692962544034 ], [ -105.917212864478785, 26.677313811299712 ], [ -105.742208890517759, 26.663514982648323 ], [ -105.712161281949648, 26.655088468655009 ], [ -105.747894315539327, 26.603573574111749 ], [ -105.85985049656793, 26.556332361372142 ], [ -106.020874367456599, 26.597783778969003 ], [ -106.290314075000538, 26.612582363517902 ], [ -106.279489794802458, 26.65235287284753 ], [ -106.253806505248491, 26.68056576454876 ], [ -106.249931077854569, 26.729762543769226 ], [ -106.213602035941392, 26.715392426033546 ] ] ], [ [ [ -105.486826190345994, 26.432571370322904 ], [ -105.460832537010646, 26.414740559095833 ], [ -105.354405225821864, 26.441459310115079 ], [ -105.277536631580972, 26.451281087833493 ], [ -105.148345647648824, 26.385494952511451 ], [ -105.103515934024642, 26.340330155866681 ], [ -105.018635559692967, 26.292067214572469 ], [ -104.989854125489558, 26.257130689802253 ], [ -105.013573608816273, 26.214811352250393 ], [ -105.107133182697794, 26.144784494110326 ], [ -105.234747628483859, 26.12861261849342 ], [ -105.30996278027888, 26.098795722824747 ], [ -105.408793045279424, 26.105178779708865 ], [ -105.438222672866914, 26.117867989177299 ], [ -105.448868425226124, 26.206231029657459 ], [ -105.480055865380677, 26.30124079890679 ], [ -105.543823262832746, 26.290001784806179 ], [ -105.61544863177599, 26.321829178598421 ], [ -105.689680507166287, 26.401414142571852 ], [ -105.697769191556887, 26.449061849467597 ], [ -105.656867090387209, 26.524504967579887 ], [ -105.585422995864974, 26.534326745298316 ], [ -105.532301350772144, 26.492677573787645 ], [ -105.486826190345994, 26.432571370322904 ] ] ], [ [ [ -105.849594758872001, 26.272632399377969 ], [ -105.908866001367414, 26.244474439319447 ], [ -105.973410681563962, 26.257548170286924 ], [ -105.988448218758691, 26.325707352574497 ], [ -106.050564920347, 26.412466389087214 ], [ -105.941783788267657, 26.430044514757768 ], [ -105.880548739544992, 26.404819904420521 ], [ -105.848276399446718, 26.377793536202049 ], [ -105.809390289564902, 26.331134598875266 ], [ -105.849594758872001, 26.272632399377969 ] ] ], [ [ [ -104.581324751995254, 24.512018318543994 ], [ -104.625610642356492, 24.463909185849403 ], [ -104.680751025319324, 24.46767749654002 ], [ -104.881306452891778, 24.570520518041306 ], [ -104.905594478720616, 24.625814709603731 ], [ -104.890738215946868, 24.882543235022155 ], [ -104.96582427838149, 25.090789092575477 ], [ -105.04868591484319, 25.249959020522326 ], [ -104.988406676703875, 25.331609414262033 ], [ -104.90887664437318, 25.394703899090771 ], [ -104.820302117068536, 25.514180222007809 ], [ -104.892754207234731, 25.667395559883758 ], [ -104.874277949205691, 25.759801569268149 ], [ -104.83162078205109, 25.775819636285433 ], [ -104.622073044565298, 25.663418508950798 ], [ -104.19878903183627, 25.49438285797136 ], [ -104.086083033884535, 25.375631632738234 ], [ -104.065928614170389, 25.248201207955262 ], [ -103.989035300690261, 25.231974400695634 ], [ -103.952577169416685, 25.144644075098626 ], [ -103.841343339489868, 25.068157255774636 ], [ -103.80418757635374, 25.024442654497676 ], [ -103.850283464342624, 24.954108179158382 ], [ -104.053475610765645, 24.819185078308351 ], [ -104.309610874442683, 24.76016652136947 ], [ -104.53522886400637, 24.609071544902534 ], [ -104.581324751995254, 24.512018318543994 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-IA", "NAME_1": "Iowa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.441952188084855, 40.379449553568691 ], [ -91.529930707065972, 40.432315766522862 ], [ -91.545487348284411, 40.469317721059383 ], [ -91.616854538506857, 40.506879978351634 ], [ -91.627423386566278, 40.530753270277955 ], [ -91.682047412087513, 40.551868993739703 ], [ -91.731529835850125, 40.624653420344345 ], [ -91.983786925551087, 40.623203224976521 ], [ -92.236044015252062, 40.621764015937259 ], [ -92.488301104953024, 40.620313820569436 ], [ -92.740563687818266, 40.618863625201612 ], [ -92.992820777519242, 40.617413429833789 ], [ -93.245077867220203, 40.615974220794499 ], [ -93.497334956921179, 40.614524025426675 ], [ -93.749597539786421, 40.61307383005888 ], [ -94.001854629487383, 40.61163462101959 ], [ -94.254111719188359, 40.610184425651767 ], [ -94.506368808889334, 40.608734230283943 ], [ -94.758631391754577, 40.60728403491612 ], [ -95.010888481455538, 40.605844825876858 ], [ -95.263145571156514, 40.604394630509034 ], [ -95.515430126678837, 40.602944435141211 ], [ -95.765028524872136, 40.601867774943884 ], [ -95.82610701841304, 40.676179301216138 ], [ -95.859000086074047, 40.745107526501812 ], [ -95.838148034497365, 40.777747908606301 ], [ -95.834017174964785, 40.889489856228295 ], [ -95.846596521147774, 41.080333369367793 ], [ -95.870887293558766, 41.1878236078432 ], [ -95.906905971690577, 41.211949585326039 ], [ -95.911168667165697, 41.245183229171914 ], [ -95.883625941505642, 41.28755749836651 ], [ -95.891942592213525, 41.316165897895331 ], [ -95.9360252354967, 41.330986455101311 ], [ -95.949719694026925, 41.367428106882073 ], [ -95.932976529325714, 41.425457894251991 ], [ -95.94356735004223, 41.460932749120872 ], [ -95.981580046804794, 41.473797739845992 ], [ -95.997367400922656, 41.493639049196645 ], [ -95.990956878217176, 41.520489636158402 ], [ -96.011396942473468, 41.537880994243721 ], [ -96.058627168884541, 41.545780164466919 ], [ -96.077770846372616, 41.611280655246816 ], [ -96.068806002280638, 41.734327534940689 ], [ -96.08663681350771, 41.821372215995552 ], [ -96.131230321068188, 41.872436671068499 ], [ -96.153763280912131, 41.92043594047766 ], [ -96.154202734053897, 41.965293119923189 ], [ -96.201383521986514, 42.036121980046971 ], [ -96.295333110531345, 42.132911534520446 ], [ -96.356103986872995, 42.260133219061061 ], [ -96.383751082654214, 42.417776047340283 ], [ -96.451003892836894, 42.505985279220823 ], [ -96.480952624448094, 42.511258716921986 ], [ -96.50632555022068, 42.593579276702911 ], [ -96.533610097159951, 42.630163750754747 ], [ -96.538702260440132, 42.658585382698305 ], [ -96.621769890562035, 42.729535092436095 ], [ -96.62683458802087, 42.757000913796332 ], [ -96.616084465540467, 42.791388122139352 ], [ -96.562575552366454, 42.858569521186467 ], [ -96.513274403024823, 42.969059027354433 ], [ -96.50211229322403, 43.043293649326898 ], [ -96.462687853243537, 43.099181102630723 ], [ -96.461292589518436, 43.12976704129747 ], [ -96.468137072201415, 43.170229689325367 ], [ -96.490280017382034, 43.205528762937547 ], [ -96.555390493498621, 43.231676224872501 ], [ -96.563454458649986, 43.242684526073674 ], [ -96.569941885655268, 43.283322955358301 ], [ -96.542525502773486, 43.309030964151475 ], [ -96.534955922406596, 43.338056844164981 ], [ -96.541646596489954, 43.373454794734045 ], [ -96.581285269877043, 43.434923302938245 ], [ -96.598621696319626, 43.497501430325428 ], [ -96.453618639030395, 43.501170864059162 ], [ -96.128417820960905, 43.501225795701885 ], [ -95.803189537070054, 43.501269741016046 ], [ -95.477966746343469, 43.501324672658768 ], [ -95.152765928273979, 43.501379604301491 ], [ -94.827565110204489, 43.50142354961568 ], [ -94.502342319477918, 43.501478481258374 ], [ -94.177114035587067, 43.501533412901097 ], [ -93.851913217517577, 43.501577358215286 ], [ -93.526712399448087, 43.501632289858009 ], [ -93.201489608721516, 43.501687221500731 ], [ -92.876261324830665, 43.501742153143454 ], [ -92.551065999925441, 43.501786098457615 ], [ -92.22583771603459, 43.501841030100337 ], [ -91.900609432143753, 43.50189596174306 ], [ -91.575414107238529, 43.501939907057249 ], [ -91.245252961831383, 43.502412319184629 ], [ -91.238276643205879, 43.440240685953597 ], [ -91.218688019411758, 43.395284629551156 ], [ -91.178357207326385, 43.358930868398744 ], [ -91.117196316321412, 43.331157429839266 ], [ -91.106968044446859, 43.278027545000043 ], [ -91.147584501074377, 43.199585159195209 ], [ -91.161328398083043, 43.10233417892286 ], [ -91.148155790158668, 42.986208686211768 ], [ -91.117591824149002, 42.881651797457636 ], [ -91.069581568411294, 42.788553649374961 ], [ -90.95994899586978, 42.72033953544468 ], [ -90.78874903816714, 42.676932551366946 ], [ -90.68787256947526, 42.610322441404094 ], [ -90.657330576122675, 42.520509205556124 ], [ -90.650584970396594, 42.512983570503422 ], [ -90.589632819633962, 42.444802415558769 ], [ -90.484735354694934, 42.383257003054752 ], [ -90.42503564538633, 42.325655682498052 ], [ -90.410489746393935, 42.272075358188516 ], [ -90.346571286924402, 42.21483658647378 ], [ -90.233214349006417, 42.15401627165366 ], [ -90.167516104312739, 42.100304111401584 ], [ -90.14943260752915, 42.053711092046058 ], [ -90.152442861550227, 41.981519927182831 ], [ -90.176612784347242, 41.883642726183467 ], [ -90.217767571073423, 41.813110496930392 ], [ -90.27600609868567, 41.770011130051898 ], [ -90.319237301506689, 41.709652241030653 ], [ -90.347527097507736, 41.6320338298666 ], [ -90.436670167314517, 41.560359022444942 ], [ -90.586732428898316, 41.494726695722505 ], [ -90.754065198953427, 41.449825570962787 ], [ -90.938756368108216, 41.425589730194503 ], [ -91.048114282436131, 41.369098028820787 ], [ -91.082105982951575, 41.280317507855955 ], [ -91.066505396418947, 41.205907104626789 ], [ -91.001334495495385, 41.145965696090201 ], [ -90.963827169845842, 41.082530635076608 ], [ -90.954005392127414, 41.015579948928888 ], [ -91.000125999355532, 40.904683948604799 ], [ -91.102134059887447, 40.749787702461589 ], [ -91.215128448963469, 40.649559427153804 ], [ -91.339043248612327, 40.603977150024349 ], [ -91.394183631575132, 40.536652928706133 ], [ -91.380538611523363, 40.447553804213527 ], [ -91.390777869726463, 40.397126556196127 ], [ -91.441952188084855, 40.379449553568691 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-ID", "NAME_1": "Idaho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -117.039053994614932, 48.993082694652713 ], [ -116.717028225494687, 48.993082694652713 ], [ -116.290648814698358, 48.993082694652713 ], [ -116.048493654093676, 48.993082694652713 ], [ -116.048389283972512, 48.746637372751564 ], [ -116.04859802421484, 48.499313144566912 ], [ -116.048801271292916, 48.251988916382231 ], [ -116.049010011535245, 48.004719619840273 ], [ -115.941442868760006, 47.904106823033459 ], [ -115.862149042493002, 47.842407601929807 ], [ -115.811243889183942, 47.775951300566589 ], [ -115.733757313962442, 47.706341922911207 ], [ -115.718381947164971, 47.681479861415909 ], [ -115.690866687326292, 47.606651977702086 ], [ -115.710861805276537, 47.552599241265142 ], [ -115.669679552729008, 47.4978543661299 ], [ -115.676886584253936, 47.470564326026363 ], [ -115.708021839347893, 47.456798456360616 ], [ -115.714454334710467, 47.45225011634335 ], [ -115.713317249706151, 47.446745965742764 ], [ -115.702468250268851, 47.437594354065538 ], [ -115.593324569347544, 47.384914908696601 ], [ -115.48599363263601, 47.311636097307485 ], [ -115.349466527818535, 47.261175890304457 ], [ -115.306674778139282, 47.231172227050536 ], [ -115.126636319122923, 47.084592631615209 ], [ -115.033516198383168, 46.990934180776804 ], [ -114.935693929026542, 46.922818943803406 ], [ -114.886936602947856, 46.844870942783075 ], [ -114.786065627420243, 46.776755705809677 ], [ -114.760714674304751, 46.74229159316684 ], [ -114.75368891720079, 46.734568204200343 ], [ -114.74030207586982, 46.733634366274089 ], [ -114.678031565681877, 46.750168790732971 ], [ -114.661623484001282, 46.745543546415888 ], [ -114.630647530671197, 46.718572109840153 ], [ -114.624006295066295, 46.677615077027752 ], [ -114.601550239522169, 46.660333582227906 ], [ -114.562999212660941, 46.65043490020966 ], [ -114.518663883821233, 46.64774324971637 ], [ -114.380917296535372, 46.667639490709718 ], [ -114.350897153788637, 46.667639490709718 ], [ -114.336867612237825, 46.659223963044951 ], [ -114.330122006511743, 46.637646813784329 ], [ -114.332061093499789, 46.601391929588829 ], [ -114.345804990508441, 46.550591146400933 ], [ -114.387042174698706, 46.499955158141205 ], [ -114.380219664672822, 46.453032548929372 ], [ -114.412750183491895, 46.343630689287266 ], [ -114.444247987427815, 46.270714426740113 ], [ -114.446599061736251, 46.199325263860572 ], [ -114.485358828839821, 46.158214422448566 ], [ -114.463578432501151, 46.10976471356912 ], [ -114.4783056059145, 46.035585023239378 ], [ -114.464792421805271, 46.016413879929928 ], [ -114.415903259784045, 45.982158507529448 ], [ -114.396787048117318, 45.890950007956377 ], [ -114.405131164646562, 45.874250788569356 ], [ -114.492565860364735, 45.838731988386286 ], [ -114.522536564633029, 45.815133354673577 ], [ -114.533698674433836, 45.782009574113118 ], [ -114.495795840956703, 45.685846240366658 ], [ -114.532616521072242, 45.633023972726647 ], [ -114.537346135510475, 45.587397750283003 ], [ -114.529232731880654, 45.575719283040655 ], [ -114.448433778603118, 45.551252729372948 ], [ -114.350562070768035, 45.497145061293281 ], [ -114.319190609610374, 45.485730265935956 ], [ -114.297640926171127, 45.487564982802837 ], [ -114.256145563260091, 45.505648479586398 ], [ -114.210233696274315, 45.54244169388059 ], [ -114.116619190750072, 45.579103072232215 ], [ -114.006393356467171, 45.658457323306237 ], [ -114.000707931445604, 45.680627734308217 ], [ -113.991924361774593, 45.693020312905958 ], [ -113.977817915923978, 45.692350146864754 ], [ -113.942650678254324, 45.681506640591749 ], [ -113.872914957820683, 45.633540330168216 ], [ -113.812814247520208, 45.606986374077138 ], [ -113.802272865282148, 45.601097701977494 ], [ -113.796642371903303, 45.587661422168082 ], [ -113.799614173774486, 45.540189496529052 ], [ -113.766149817029174, 45.502517375951328 ], [ -113.756097326411322, 45.440840127504799 ], [ -113.721940830967725, 45.379272742343687 ], [ -113.697111728458069, 45.304983188728499 ], [ -113.606573394926187, 45.209105499524185 ], [ -113.557404081527082, 45.140418973466495 ], [ -113.503582057989561, 45.109283718372552 ], [ -113.471079004991864, 45.072853052920323 ], [ -113.447128808765726, 45.029083520000654 ], [ -113.438136498852387, 44.993971213973708 ], [ -113.469293726603439, 44.929975850204357 ], [ -113.460795801474589, 44.903619648027075 ], [ -113.432137963467312, 44.87416530120035 ], [ -113.338891499949312, 44.808071548679095 ], [ -113.320417988502413, 44.802534439092852 ], [ -113.234268693223882, 44.80987330656032 ], [ -113.187170302755348, 44.798579360816973 ], [ -113.140709119342375, 44.76548853924217 ], [ -113.093270152688973, 44.715335949438384 ], [ -113.062706186679293, 44.665073496349152 ], [ -113.054279672685979, 44.605187019455286 ], [ -113.006379280233716, 44.539137212248164 ], [ -112.999688606150372, 44.480360354537254 ], [ -112.97007495755976, 44.454498537144474 ], [ -112.910391727743956, 44.419331299474806 ], [ -112.853856081056051, 44.398325439298503 ], [ -112.831350587033469, 44.396622558374162 ], [ -112.815513794437152, 44.405971923965211 ], [ -112.810163452436186, 44.438161866599387 ], [ -112.787141600972035, 44.463078859737408 ], [ -112.715928219349209, 44.498037357164719 ], [ -112.648235956024763, 44.497103519238465 ], [ -112.392847762688731, 44.46795678961098 ], [ -112.37538499346789, 44.470022219377285 ], [ -112.363860334825134, 44.479558352553539 ], [ -112.320035870262743, 44.533149663191637 ], [ -112.285077372835431, 44.55394678312561 ], [ -112.231310280940619, 44.560692388851692 ], [ -112.074211275924341, 44.547618657884215 ], [ -111.892079921320331, 44.554924566366054 ], [ -111.797097617892348, 44.539895268917718 ], [ -111.659301592128031, 44.559604742325831 ], [ -111.499857005967584, 44.544850103091107 ], [ -111.47934003741149, 44.553716070226187 ], [ -111.474506052852078, 44.564614508141943 ], [ -111.488821238945036, 44.584543708120918 ], [ -111.491045970475213, 44.624226326822196 ], [ -111.459108713397541, 44.67101710009149 ], [ -111.448100412196354, 44.711117199277453 ], [ -111.415569893377281, 44.733551282164484 ], [ -111.372525458141524, 44.746240491632904 ], [ -111.337462590593034, 44.744812268922175 ], [ -111.304080631311805, 44.723312023961398 ], [ -111.265117617130173, 44.687551524550344 ], [ -111.197573669241081, 44.590586188820168 ], [ -111.160934263546523, 44.555836431635214 ], [ -111.117219662269562, 44.525349369925323 ], [ -111.05143352694752, 44.498883304462623 ], [ -111.051356622647717, 44.342767575851013 ], [ -111.051279718347899, 44.186651847239432 ], [ -111.051224786705191, 44.030547104956383 ], [ -111.051147882405374, 43.874398417359146 ], [ -111.051070978105571, 43.718260716090469 ], [ -111.051021539627115, 43.562144987478888 ], [ -111.050944635327312, 43.406029258867278 ], [ -111.050862237863228, 43.249891557598602 ], [ -111.050785333563425, 43.093753856329926 ], [ -111.050708429263608, 42.937638127718344 ], [ -111.050658990785166, 42.781522399106734 ], [ -111.050582086485349, 42.625384697838058 ], [ -111.050505182185546, 42.469246996569382 ], [ -111.050450250542823, 42.3131312679578 ], [ -111.05037334624302, 42.15701553934619 ], [ -111.050296441943203, 42.000877838077514 ], [ -111.237311219585067, 42.000899810734609 ], [ -111.424331490391197, 42.000899810734609 ], [ -111.61134626803306, 42.000921783391703 ], [ -111.79836653883919, 42.000954742377331 ], [ -111.985381316481053, 42.000954742377331 ], [ -112.172396094122917, 42.000976715034426 ], [ -112.359416364929046, 42.000998687691492 ], [ -112.54643114257091, 42.000998687691492 ], [ -112.73345141337704, 42.000998687691492 ], [ -112.920466191018903, 42.00103164667712 ], [ -113.107480968660752, 42.001053619334215 ], [ -113.294501239466896, 42.001053619334215 ], [ -113.481516017108746, 42.001053619334215 ], [ -113.66853628791489, 42.001075591991309 ], [ -113.855551065556739, 42.001108550976937 ], [ -114.042593309019963, 42.001108550976937 ], [ -114.414354187459324, 42.001053619334215 ], [ -114.786115065898699, 42.000976715034426 ], [ -115.157875944338059, 42.000899810734609 ], [ -115.52963682277742, 42.000844879091886 ], [ -115.90139770121678, 42.000767974792069 ], [ -116.273153086491874, 42.000691070492252 ], [ -116.644913964931249, 42.000636138849558 ], [ -117.016674843370609, 42.00055923454974 ], [ -117.017114296512375, 42.223779457908648 ], [ -117.017581215475502, 42.446966722281957 ], [ -117.018020668617254, 42.670164972983798 ], [ -117.01846012175902, 42.893352237357078 ], [ -117.018899574900786, 43.116539501730387 ], [ -117.019339028042552, 43.339726766103666 ], [ -117.019800453841412, 43.562925016805508 ], [ -117.020239906983164, 43.808436500780402 ], [ -117.020498085703963, 43.813193581039997 ], [ -116.957634313774633, 43.964134748907327 ], [ -116.943967321065784, 44.037677232181494 ], [ -116.960683019945634, 44.079117663449836 ], [ -116.949779088865611, 44.119009022393442 ], [ -116.911310459468467, 44.157406240655035 ], [ -116.912420078651422, 44.199472892650391 ], [ -116.95319034387856, 44.245307855336364 ], [ -117.028952065518638, 44.275542231489709 ], [ -117.139743695721563, 44.290263911738776 ], [ -117.197312057292621, 44.343800290734151 ], [ -117.201701095545985, 44.436206300118556 ], [ -117.118919109966228, 44.578314459836406 ], [ -116.948955114224802, 44.770113783559225 ], [ -116.855856966142142, 44.905740009436101 ], [ -116.839553254582711, 44.985160178481351 ], [ -116.73734194697272, 45.168840605410082 ], [ -116.549157125340912, 45.456737344908106 ], [ -116.477042864777474, 45.641087937878012 ], [ -116.520916767818306, 45.721914356976924 ], [ -116.616827416008263, 45.799170219298986 ], [ -116.764725370868874, 45.872910456486949 ], [ -116.86919436899467, 45.958482969516922 ], [ -116.896478915933926, 46.002098693836984 ], [ -116.930195958235771, 46.055953676360133 ], [ -116.947845495041861, 46.124321598890049 ], [ -116.922110020427311, 46.163641668749364 ], [ -116.942962072004008, 46.232108468236163 ], [ -117.010396156607655, 46.329623120393535 ], [ -117.038999062972209, 46.39655183388416 ], [ -117.032462197488471, 46.419754959769307 ], [ -117.0250464257212, 46.42915925700305 ], [ -117.025848427704929, 46.589460776789934 ], [ -117.026677895510005, 46.749751310248286 ], [ -117.027501870150815, 46.91005283003517 ], [ -117.02833133795589, 47.070354349822082 ], [ -117.0291553125967, 47.230655869608967 ], [ -117.029984780401776, 47.390957389395851 ], [ -117.030808755042585, 47.551258909182764 ], [ -117.031638222847675, 47.711560428969648 ], [ -117.032462197488471, 47.871861948756532 ], [ -117.033291665293547, 48.032163468543416 ], [ -117.034115639934356, 48.192454002001767 ], [ -117.034917641918071, 48.35275552178868 ], [ -117.0357196439018, 48.513057041575564 ], [ -117.036543618542595, 48.673358561362448 ], [ -117.037373086347685, 48.833660081149361 ], [ -117.039053994614932, 48.993082694652713 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-IL", "NAME_1": "Illinois" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.441952188084855, 40.379449553568691 ], [ -91.390777869726463, 40.397126556196127 ], [ -91.380538611523363, 40.447553804213527 ], [ -91.394183631575132, 40.536652928706133 ], [ -91.339043248612327, 40.603977150024349 ], [ -91.215128448963469, 40.649559427153804 ], [ -91.102134059887447, 40.749787702461589 ], [ -91.000125999355532, 40.904683948604799 ], [ -90.954005392127414, 41.015579948928888 ], [ -90.963827169845842, 41.082530635076608 ], [ -91.001334495495385, 41.145965696090201 ], [ -91.066505396418947, 41.205907104626789 ], [ -91.082105982951575, 41.280317507855955 ], [ -91.048114282436131, 41.369098028820787 ], [ -90.938756368108216, 41.425589730194503 ], [ -90.754065198953427, 41.449825570962787 ], [ -90.586732428898316, 41.494726695722505 ], [ -90.436670167314517, 41.560359022444942 ], [ -90.347527097507736, 41.6320338298666 ], [ -90.319237301506689, 41.709652241030653 ], [ -90.27600609868567, 41.770011130051898 ], [ -90.217767571073423, 41.813110496930392 ], [ -90.176612784347242, 41.883642726183467 ], [ -90.152442861550227, 41.981519927182831 ], [ -90.14943260752915, 42.053711092046058 ], [ -90.167516104312739, 42.100304111401584 ], [ -90.233214349006417, 42.15401627165366 ], [ -90.346571286924402, 42.21483658647378 ], [ -90.410489746393935, 42.272075358188516 ], [ -90.42503564538633, 42.325655682498052 ], [ -90.484735354694934, 42.383257003054752 ], [ -90.589632819633962, 42.444802415558769 ], [ -90.650584970396594, 42.512983570503422 ], [ -90.191048820054192, 42.510302906338666 ], [ -89.740796117331527, 42.50779802343061 ], [ -89.290521441951796, 42.505315113179648 ], [ -88.840235780243503, 42.502810230271592 ], [ -88.389950118535225, 42.500305347363536 ], [ -87.939664456826932, 42.497822437112575 ], [ -87.489411754104282, 42.495317554204519 ], [ -87.039126092396003, 42.49280168496793 ], [ -87.084675410539816, 42.309791424080373 ], [ -87.130202756026549, 42.126781163192845 ], [ -87.175730101513281, 41.943748929648223 ], [ -87.221257447000013, 41.760727682432133 ], [ -87.371407599212162, 41.760760641417761 ], [ -87.521085339296917, 41.760760641417761 ], [ -87.522535534664726, 41.460987680763594 ], [ -87.524007702689644, 41.161236692766494 ], [ -87.525479870714548, 40.861485704769393 ], [ -87.526930066082372, 40.561712744115226 ], [ -87.528369275121648, 40.261939783461031 ], [ -87.529819470489471, 39.962188795463959 ], [ -87.53126966585728, 39.662437807466858 ], [ -87.532741833882199, 39.379144339628823 ], [ -87.532917615138899, 39.374859671496608 ], [ -87.579115126666821, 39.343977101959183 ], [ -87.611052383744507, 39.291352588232968 ], [ -87.602911514293325, 39.234146775503859 ], [ -87.614985489363292, 39.193288619648371 ], [ -87.647285295282927, 39.168745161680846 ], [ -87.631695695078861, 39.106705364392354 ], [ -87.568293593050882, 39.007180214111401 ], [ -87.530280896288318, 38.908896518955913 ], [ -87.517679577448249, 38.811821319940293 ], [ -87.529456921647508, 38.7422888465847 ], [ -87.583773329969517, 38.679370143012676 ], [ -87.635958390553967, 38.542612325295778 ], [ -87.68066176139989, 38.487988299774543 ], [ -87.735230855278417, 38.469904802990953 ], [ -87.78406508565692, 38.419104019803058 ], [ -87.827164452535399, 38.335563977553761 ], [ -87.872955469907197, 38.295024425226046 ], [ -87.921427151443737, 38.297507335477007 ], [ -87.95726455515458, 38.282214366143648 ], [ -87.98041274939699, 38.249189462540073 ], [ -87.977490386004263, 38.214439705355119 ], [ -87.948552396619107, 38.178009039902889 ], [ -87.958055570809748, 38.144291997601073 ], [ -88.006021881233266, 38.113277592121079 ], [ -88.005142974949749, 38.098402103272377 ], [ -87.990256499772499, 38.089305423237874 ], [ -87.996046294915232, 38.074418948060611 ], [ -88.026126862468971, 38.059587404526098 ], [ -88.044517976451786, 38.013291016041279 ], [ -88.042496491999671, 37.93665038811767 ], [ -88.059107820758342, 37.898363033141493 ], [ -88.091121982135832, 37.896649165888618 ], [ -88.095318759639682, 37.875566401412499 ], [ -88.041991120886635, 37.788851310213957 ], [ -88.073247225594585, 37.770921622029988 ], [ -88.128958897641695, 37.699510486493367 ], [ -88.140384679327553, 37.620650620203861 ], [ -88.107513584323627, 37.53435300948999 ], [ -88.190504310145712, 37.464556864249346 ], [ -88.389334884136758, 37.411262184481942 ], [ -88.494671802217539, 37.3642846436274 ], [ -88.506602955016419, 37.323591282700065 ], [ -88.49278215370795, 37.261551485411559 ], [ -88.453275316263387, 37.178143279104788 ], [ -88.44624406599516, 37.12042110893411 ], [ -88.471666430246202, 37.08838497489954 ], [ -88.613807548949708, 37.110082973774126 ], [ -88.872601504134408, 37.185537078214963 ], [ -89.046207467788207, 37.182977263664199 ], [ -89.134603467253996, 37.102469448093061 ], [ -89.165068556306764, 37.041561242644605 ], [ -89.154312940662095, 36.992111777867635 ], [ -89.224911087886454, 37.052679407131222 ], [ -89.272393999854032, 37.079980433563307 ], [ -89.281468707231454, 37.077794154183024 ], [ -89.291675006448926, 37.070653040629367 ], [ -89.29581685231004, 37.051635705919537 ], [ -89.293246051430728, 37.038177453453017 ], [ -89.28588521130618, 37.022697716534395 ], [ -89.29001607083876, 37.012777061859069 ], [ -89.300826618126152, 37.012051964175157 ], [ -89.351880086870565, 37.035518761945355 ], [ -89.413941856816152, 37.102414516450338 ], [ -89.486913051006042, 37.21273922769015 ], [ -89.502931118023326, 37.300509006428925 ], [ -89.46197408521094, 37.365679907352501 ], [ -89.46197408521094, 37.434124734182205 ], [ -89.502931118023326, 37.505799541603892 ], [ -89.52342062075806, 37.575947249357938 ], [ -89.52342062075806, 37.644523912130182 ], [ -89.623286347223896, 37.747257070346009 ], [ -89.822962868512818, 37.88409179236271 ], [ -89.96982810849029, 37.968532713552634 ], [ -90.063871080827738, 38.000524902273042 ], [ -90.173580557669069, 38.069046633402564 ], [ -90.299000484328459, 38.173999029984287 ], [ -90.365775389219479, 38.254254159998908 ], [ -90.373993162970464, 38.309757091803675 ], [ -90.316600582656108, 38.45780885526392 ], [ -90.150750966954448, 38.780532256246715 ], [ -90.132195058043465, 38.818643829966163 ], [ -90.126767811742681, 38.832618439874267 ], [ -90.134205556167032, 38.846669954082159 ], [ -90.149916005985091, 38.859897493649243 ], [ -90.220074700067684, 38.897679477512384 ], [ -90.354349607533621, 38.930209996331456 ], [ -90.477967776311772, 38.948117711858345 ], [ -90.577075446108054, 38.909610630311278 ], [ -90.663526865421545, 38.987492713360382 ], [ -90.737223157295332, 39.181796919991228 ], [ -90.919376484556437, 39.386900687580948 ], [ -91.209898956576481, 39.602804016129511 ], [ -91.378736853642138, 39.749405584221904 ], [ -91.4258682030963, 39.8268152551436 ], [ -91.466814249580153, 39.942863843554875 ], [ -91.501651897393472, 40.097529376798661 ], [ -91.499784221540978, 40.226025475450399 ], [ -91.441952188084855, 40.379449553568691 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-IN", "NAME_1": "Indiana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.041991120886635, 37.788851310213957 ], [ -88.095318759639682, 37.875566401412499 ], [ -88.091121982135832, 37.896649165888618 ], [ -88.059107820758342, 37.898363033141493 ], [ -88.042496491999671, 37.93665038811767 ], [ -88.044517976451786, 38.013291016041279 ], [ -88.026126862468971, 38.059587404526098 ], [ -87.996046294915232, 38.074418948060611 ], [ -87.990256499772499, 38.089305423237874 ], [ -88.005142974949749, 38.098402103272377 ], [ -88.006021881233266, 38.113277592121079 ], [ -87.958055570809748, 38.144291997601073 ], [ -87.948552396619107, 38.178009039902889 ], [ -87.977490386004263, 38.214439705355119 ], [ -87.98041274939699, 38.249189462540073 ], [ -87.95726455515458, 38.282214366143648 ], [ -87.921427151443737, 38.297507335477007 ], [ -87.872955469907197, 38.295024425226046 ], [ -87.827164452535399, 38.335563977553761 ], [ -87.78406508565692, 38.419104019803058 ], [ -87.735230855278417, 38.469904802990953 ], [ -87.68066176139989, 38.487988299774543 ], [ -87.635958390553967, 38.542612325295778 ], [ -87.583773329969517, 38.679370143012676 ], [ -87.529456921647508, 38.7422888465847 ], [ -87.517679577448249, 38.811821319940293 ], [ -87.530280896288318, 38.908896518955913 ], [ -87.568293593050882, 39.007180214111401 ], [ -87.631695695078861, 39.106705364392354 ], [ -87.647285295282927, 39.168745161680846 ], [ -87.614985489363292, 39.193288619648371 ], [ -87.602911514293325, 39.234146775503859 ], [ -87.611052383744507, 39.291352588232968 ], [ -87.579115126666821, 39.343977101959183 ], [ -87.532917615138899, 39.374859671496608 ], [ -87.532741833882199, 39.379144339628823 ], [ -87.53126966585728, 39.662437807466858 ], [ -87.529819470489471, 39.962188795463959 ], [ -87.528369275121648, 40.261939783461031 ], [ -87.526930066082372, 40.561712744115226 ], [ -87.525479870714548, 40.861485704769393 ], [ -87.524007702689644, 41.161236692766494 ], [ -87.522535534664726, 41.460987680763594 ], [ -87.521085339296917, 41.760760641417761 ], [ -87.371407599212162, 41.760760641417761 ], [ -87.221257447000013, 41.760727682432133 ], [ -86.918155628796967, 41.760606832818155 ], [ -86.615042824265387, 41.76049696953271 ], [ -86.311930019733794, 41.760376119918732 ], [ -86.008828201530761, 41.760244283976192 ], [ -85.705715396999167, 41.760112448033681 ], [ -85.402613578796121, 41.759980612091141 ], [ -85.099500774264541, 41.759859762477163 ], [ -84.796398956061495, 41.759727926534623 ], [ -84.796113311519349, 41.701434467279654 ], [ -84.79955203235366, 41.376052374789197 ], [ -84.802957794202328, 41.050670282298711 ], [ -84.806396515036624, 40.725321148793881 ], [ -84.809835235870921, 40.399939056303424 ], [ -84.813262970376684, 40.074556963812967 ], [ -84.81670169121098, 39.749196843979576 ], [ -84.820140412045291, 39.423825737817651 ], [ -84.821711457027092, 39.091983684143258 ], [ -84.837421906845151, 39.082678263866399 ], [ -84.860603060073188, 39.039710732930445 ], [ -84.835488313021386, 38.996040076967688 ], [ -84.836597932204342, 38.960565222098779 ], [ -84.863887972307879, 38.933231236681081 ], [ -84.854165071546348, 38.912895542545954 ], [ -84.807451202576857, 38.899536167036331 ], [ -84.789620391349786, 38.868378939285293 ], [ -84.800738555836418, 38.819390900307184 ], [ -84.901241489357801, 38.769567900359704 ], [ -85.093897746707057, 38.7135595974419 ], [ -85.135524945560633, 38.69725588588247 ], [ -85.169890181246558, 38.690378444213849 ], [ -85.186116988506186, 38.693663356448553 ], [ -85.186040084206383, 38.693663356448553 ], [ -85.211121872272543, 38.704122341222529 ], [ -85.246629686127065, 38.727039822565501 ], [ -85.306746875920354, 38.737191190140237 ], [ -85.405426078903417, 38.729962185958243 ], [ -85.44477910774836, 38.683094508389132 ], [ -85.42482793511229, 38.596588157432933 ], [ -85.458676813356647, 38.530208760369504 ], [ -85.546325742481429, 38.484011248841568 ], [ -85.608903869868598, 38.423026139093309 ], [ -85.646422181846688, 38.34729737643886 ], [ -85.706286686083459, 38.301352550467442 ], [ -85.788453437264749, 38.285213633836179 ], [ -85.854931711285076, 38.215032967096505 ], [ -85.905677562830249, 38.090909427205304 ], [ -85.961158521977922, 38.014016113725177 ], [ -86.021330643413933, 37.984353026656123 ], [ -86.103442462952501, 37.991867675380291 ], [ -86.207526939579253, 38.036571046226214 ], [ -86.267622156715461, 38.082581790168888 ], [ -86.283750087018191, 38.129866948222656 ], [ -86.314599697570017, 38.163770758109735 ], [ -86.342658780671627, 38.178734137586815 ], [ -86.361445402482033, 38.178986823143305 ], [ -86.362522062679361, 38.172109381474712 ], [ -86.35495248231247, 38.158859869250534 ], [ -86.365136808872847, 38.144599614800313 ], [ -86.429626557426687, 38.139688725941085 ], [ -86.457378023329071, 38.1201550337897 ], [ -86.448336274937276, 38.085965579360476 ], [ -86.462541597744803, 38.061762697577819 ], [ -86.499961032765981, 38.047502443127598 ], [ -86.519857273759342, 38.014840088365986 ], [ -86.522186375410683, 37.963731687978864 ], [ -86.548641454544864, 37.917061764323549 ], [ -86.599233497490431, 37.874797358414412 ], [ -86.673127543278014, 37.889035640207553 ], [ -86.770334578236174, 37.959776609702985 ], [ -86.869079699190493, 37.976135252905138 ], [ -86.969439810440804, 37.938045651842771 ], [ -87.044267694154641, 37.886442866671146 ], [ -87.093563350331991, 37.821282952076118 ], [ -87.141035275971021, 37.805242912401738 ], [ -87.209403198500937, 37.854846185778328 ], [ -87.372385382452578, 37.923477780193295 ], [ -87.457287729441347, 37.938100583485493 ], [ -87.518448620446321, 37.921566159026625 ], [ -87.561449110367917, 37.929058835093699 ], [ -87.576170790616999, 37.94775756627574 ], [ -87.587387832060529, 37.95568969548458 ], [ -87.599406875487759, 37.946472165836084 ], [ -87.60080213921286, 37.886728511213292 ], [ -87.61539198351943, 37.848935541021618 ], [ -87.643253312707245, 37.833038323618311 ], [ -87.664566790082787, 37.845540765501482 ], [ -87.679420306274409, 37.886365962371343 ], [ -87.714455708001523, 37.899604488266974 ], [ -87.769651022607064, 37.885234370531307 ], [ -87.825252831368729, 37.891430659830178 ], [ -87.874427637932101, 37.915743404898251 ], [ -87.892115626888099, 37.912985836433691 ], [ -87.906002346167824, 37.901823726632884 ], [ -87.902069240549039, 37.855109857663393 ], [ -87.91248428000884, 37.817690422642201 ], [ -87.938115384502225, 37.79381713071588 ], [ -87.974546049954441, 37.788027335573148 ], [ -88.0217762763655, 37.800430900499435 ], [ -88.041991120886635, 37.788851310213957 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-KS", "NAME_1": "Kansas" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.012783279806627, 37.000845909060189 ], [ -102.013535843311899, 37.18837155097934 ], [ -102.014260940995811, 37.375853247584331 ], [ -102.014980545515442, 37.56338987583203 ], [ -102.015705643199354, 37.750926504079743 ], [ -102.016430740883266, 37.938430173341814 ], [ -102.017177811224272, 38.125944828932433 ], [ -102.017924881565264, 38.313470470851598 ], [ -102.018649979249176, 38.500985126442202 ], [ -102.019375076933088, 38.688488795704274 ], [ -102.020100174616999, 38.876025423951972 ], [ -102.02081977913663, 39.063529093214044 ], [ -102.021572342641903, 39.251043748804676 ], [ -102.02231941298291, 39.438580377052375 ], [ -102.023044510666807, 39.626084046314446 ], [ -102.023769608350719, 39.813587715576517 ], [ -102.024489212870364, 40.001124343824216 ], [ -101.814892036906116, 40.001124343824216 ], [ -101.605289367777601, 40.001124343824216 ], [ -101.395692191813353, 40.001124343824216 ], [ -101.186089522684824, 40.001124343824216 ], [ -100.976492346720576, 40.001124343824216 ], [ -100.766895170756328, 40.001124343824216 ], [ -100.557292501627813, 40.001124343824216 ], [ -100.347695325663565, 40.001124343824216 ], [ -100.138092656535051, 40.001124343824216 ], [ -99.928495480570803, 40.001124343824216 ], [ -99.718892811442274, 40.001124343824216 ], [ -99.509295635478026, 40.001124343824216 ], [ -99.299692966349511, 40.001124343824216 ], [ -99.090095790385263, 40.001124343824216 ], [ -98.880498614421015, 40.001124343824216 ], [ -98.6708959452925, 40.001124343824216 ], [ -98.461298769328252, 40.001124343824216 ], [ -98.251696100199723, 40.001124343824216 ], [ -98.042098924235475, 40.001124343824216 ], [ -97.83249625510696, 40.001124343824216 ], [ -97.622899079142712, 40.001124343824216 ], [ -97.413296410014198, 40.001124343824216 ], [ -97.203699234049949, 40.001124343824216 ], [ -96.994102058085701, 40.001124343824216 ], [ -96.784499388957173, 40.001124343824216 ], [ -96.574902212992924, 40.001124343824216 ], [ -96.36529954386441, 40.001124343824216 ], [ -96.155702367900162, 40.001124343824216 ], [ -95.946099698771647, 40.001124343824216 ], [ -95.736502522807399, 40.001124343824216 ], [ -95.526905346843151, 40.001124343824216 ], [ -95.34668012024153, 40.001486892666179 ], [ -95.116203426879238, 39.872089915073815 ], [ -95.055536920658739, 39.870793528305626 ], [ -94.984015921836686, 39.891162181426381 ], [ -94.929935719578367, 39.861499094357328 ], [ -94.893296313883823, 39.781815253426998 ], [ -94.898597217406348, 39.741143865156744 ], [ -94.945827443817407, 39.739484929546592 ], [ -95.004763603292204, 39.691551578108715 ], [ -95.075356257352283, 39.597376769828713 ], [ -95.05793743344563, 39.508958797705844 ], [ -94.952518117900766, 39.426374566039897 ], [ -94.882293505846903, 39.343131154661279 ], [ -94.847203172477066, 39.259151659270202 ], [ -94.777851973542468, 39.193991744675174 ], [ -94.622384438314967, 39.124404339676886 ], [ -94.624526772381074, 39.086062053057987 ], [ -94.624114785060669, 38.955764196525024 ], [ -94.623730263561626, 38.825433381006434 ], [ -94.623340248898316, 38.695102565487815 ], [ -94.622928261577911, 38.564782736297758 ], [ -94.622510781093226, 38.434451920779168 ], [ -94.622098793772821, 38.304121105260549 ], [ -94.621686806452431, 38.173790289741959 ], [ -94.621296791789106, 38.043470460551902 ], [ -94.620912270290063, 37.913139645033297 ], [ -94.620500282969658, 37.782808829514707 ], [ -94.620082802484987, 37.652478013996102 ], [ -94.619670815164582, 37.522158184806045 ], [ -94.619258827844178, 37.391827369287441 ], [ -94.618868813180868, 37.261496553768836 ], [ -94.618484291681824, 37.131165738250246 ], [ -94.618066811197139, 37.000845909060189 ], [ -94.849164232122192, 37.000845909060189 ], [ -95.080239680390136, 37.000845909060189 ], [ -95.311309635493828, 37.000845909060189 ], [ -95.542407056418867, 37.000845909060189 ], [ -95.773504477343906, 37.000845909060189 ], [ -96.004574432447583, 37.000845909060189 ], [ -96.235644387551275, 37.000845909060189 ], [ -96.466741808476314, 37.000845909060189 ], [ -96.697839229401353, 37.000845909060189 ], [ -96.928909184505031, 37.000845909060189 ], [ -97.159979139608723, 37.000845909060189 ], [ -97.391076560533762, 37.000845909060189 ], [ -97.622173981458801, 37.000845909060189 ], [ -97.853243936562478, 37.000845909060189 ], [ -98.084319384830437, 37.000845909060189 ], [ -98.315416805755476, 37.000845909060189 ], [ -98.546514226680515, 37.000845909060189 ], [ -98.777584181784206, 37.000845909060189 ], [ -99.008654136887884, 37.000845909060189 ], [ -99.239751557812923, 37.000845909060189 ], [ -99.470848978737962, 37.000845909060189 ], [ -99.701918933841654, 37.000845909060189 ], [ -99.932988888945331, 37.000845909060189 ], [ -100.16408630987037, 37.000845909060189 ], [ -100.395183730795409, 37.000845909060189 ], [ -100.626253685899101, 37.000845909060189 ], [ -100.857329134167045, 37.000845909060189 ], [ -101.088421061927818, 37.000845909060189 ], [ -101.319518482852857, 37.000845909060189 ], [ -101.55061590377791, 37.000845909060189 ], [ -101.781713324702949, 37.000845909060189 ], [ -102.012783279806627, 37.000845909060189 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-KY", "NAME_1": "Kentucky" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.154312940662095, 36.992111777867635 ], [ -89.165068556306764, 37.041561242644605 ], [ -89.134603467253996, 37.102469448093061 ], [ -89.046207467788207, 37.182977263664199 ], [ -88.872601504134408, 37.185537078214963 ], [ -88.613807548949708, 37.110082973774126 ], [ -88.471666430246202, 37.08838497489954 ], [ -88.44624406599516, 37.12042110893411 ], [ -88.453275316263387, 37.178143279104788 ], [ -88.49278215370795, 37.261551485411559 ], [ -88.506602955016419, 37.323591282700065 ], [ -88.494671802217539, 37.3642846436274 ], [ -88.389334884136758, 37.411262184481942 ], [ -88.190504310145712, 37.464556864249346 ], [ -88.107513584323627, 37.53435300948999 ], [ -88.140384679327553, 37.620650620203861 ], [ -88.128958897641695, 37.699510486493367 ], [ -88.073247225594585, 37.770921622029988 ], [ -88.041991120886635, 37.788851310213957 ], [ -88.0217762763655, 37.800430900499435 ], [ -87.974546049954441, 37.788027335573148 ], [ -87.938115384502225, 37.79381713071588 ], [ -87.91248428000884, 37.817690422642201 ], [ -87.902069240549039, 37.855109857663393 ], [ -87.906002346167824, 37.901823726632884 ], [ -87.892115626888099, 37.912985836433691 ], [ -87.874427637932101, 37.915743404898251 ], [ -87.825252831368729, 37.891430659830178 ], [ -87.769651022607064, 37.885234370531307 ], [ -87.714455708001523, 37.899604488266974 ], [ -87.679420306274409, 37.886365962371343 ], [ -87.664566790082787, 37.845540765501482 ], [ -87.643253312707245, 37.833038323618311 ], [ -87.61539198351943, 37.848935541021618 ], [ -87.60080213921286, 37.886728511213292 ], [ -87.599406875487759, 37.946472165836084 ], [ -87.587387832060529, 37.95568969548458 ], [ -87.576170790616999, 37.94775756627574 ], [ -87.561449110367917, 37.929058835093699 ], [ -87.518448620446321, 37.921566159026625 ], [ -87.457287729441347, 37.938100583485493 ], [ -87.372385382452578, 37.923477780193295 ], [ -87.209403198500937, 37.854846185778328 ], [ -87.141035275971021, 37.805242912401738 ], [ -87.093563350331991, 37.821282952076118 ], [ -87.044267694154641, 37.886442866671146 ], [ -86.969439810440804, 37.938045651842771 ], [ -86.869079699190493, 37.976135252905138 ], [ -86.770334578236174, 37.959776609702985 ], [ -86.673127543278014, 37.889035640207553 ], [ -86.599233497490431, 37.874797358414412 ], [ -86.548641454544864, 37.917061764323549 ], [ -86.522186375410683, 37.963731687978864 ], [ -86.519857273759342, 38.014840088365986 ], [ -86.499961032765981, 38.047502443127598 ], [ -86.462541597744803, 38.061762697577819 ], [ -86.448336274937276, 38.085965579360476 ], [ -86.457378023329071, 38.1201550337897 ], [ -86.429626557426687, 38.139688725941085 ], [ -86.365136808872847, 38.144599614800313 ], [ -86.35495248231247, 38.158859869250534 ], [ -86.362522062679361, 38.172109381474712 ], [ -86.361445402482033, 38.178986823143305 ], [ -86.342658780671627, 38.178734137586815 ], [ -86.314599697570017, 38.163770758109735 ], [ -86.283750087018191, 38.129866948222656 ], [ -86.267622156715461, 38.082581790168888 ], [ -86.207526939579253, 38.036571046226214 ], [ -86.103442462952501, 37.991867675380291 ], [ -86.021330643413933, 37.984353026656123 ], [ -85.961158521977922, 38.014016113725177 ], [ -85.905677562830249, 38.090909427205304 ], [ -85.854931711285076, 38.215032967096505 ], [ -85.788453437264749, 38.285213633836179 ], [ -85.706286686083459, 38.301352550467442 ], [ -85.646422181846688, 38.34729737643886 ], [ -85.608903869868598, 38.423026139093309 ], [ -85.546325742481429, 38.484011248841568 ], [ -85.458676813356647, 38.530208760369504 ], [ -85.42482793511229, 38.596588157432933 ], [ -85.44477910774836, 38.683094508389132 ], [ -85.405426078903417, 38.729962185958243 ], [ -85.306746875920354, 38.737191190140237 ], [ -85.246629686127065, 38.727039822565501 ], [ -85.211121872272543, 38.704122341222529 ], [ -85.186040084206383, 38.693663356448553 ], [ -85.186116988506186, 38.693663356448553 ], [ -85.169890181246558, 38.690378444213849 ], [ -85.135524945560633, 38.69725588588247 ], [ -85.093897746707057, 38.7135595974419 ], [ -84.901241489357801, 38.769567900359704 ], [ -84.800738555836418, 38.819390900307184 ], [ -84.789620391349786, 38.868378939285293 ], [ -84.807451202576857, 38.899536167036331 ], [ -84.854165071546348, 38.912895542545954 ], [ -84.863887972307879, 38.933231236681081 ], [ -84.836597932204342, 38.960565222098779 ], [ -84.835488313021386, 38.996040076967688 ], [ -84.860603060073188, 39.039710732930445 ], [ -84.837421906845151, 39.082678263866399 ], [ -84.821711457027092, 39.091983684143258 ], [ -84.765900908023085, 39.124997601418272 ], [ -84.706948269055474, 39.128908734379962 ], [ -84.660542017285223, 39.09446659439422 ], [ -84.594547141720838, 39.085776408515841 ], [ -84.508864765405434, 39.102838176744825 ], [ -84.430059830758651, 39.090896037617398 ], [ -84.358022474495016, 39.049917032147931 ], [ -84.290434581291734, 38.974704626935051 ], [ -84.227285164820287, 38.865203890336034 ], [ -84.113236088204033, 38.798385040130853 ], [ -83.948386228399883, 38.774226103662386 ], [ -83.828085930842036, 38.731225613740804 ], [ -83.752269277559236, 38.669372584037546 ], [ -83.689877917757315, 38.649531274686922 ], [ -83.616313461826053, 38.682775904861359 ], [ -83.538387433462788, 38.699859645747409 ], [ -83.460582254713515, 38.679501978955216 ], [ -83.356970190214156, 38.627404808999103 ], [ -83.203469207796047, 38.638907494984778 ], [ -83.000068321130669, 38.713999050583652 ], [ -82.880438189614026, 38.71025271255013 ], [ -82.844622758560277, 38.627668480884154 ], [ -82.758226270889509, 38.541162129927955 ], [ -82.621281685587363, 38.450678728038781 ], [ -82.612778267294232, 38.448217790444914 ], [ -82.589498237109296, 38.420345474928553 ], [ -82.578413031608306, 38.272084971225979 ], [ -82.585389350233797, 38.242729501356166 ], [ -82.619545845677393, 38.182008063492958 ], [ -82.617711128810527, 38.149873052501476 ], [ -82.588773139425385, 38.099742435354756 ], [ -82.482194766219109, 37.983551024672408 ], [ -82.471889590044754, 37.938408200684719 ], [ -82.429899842349215, 37.89417724196619 ], [ -82.393875671053138, 37.828314202344345 ], [ -82.280244074921555, 37.687183825866896 ], [ -82.103463062318525, 37.570574934699877 ], [ -81.965277021890898, 37.539725324148051 ], [ -82.343206723807768, 37.296927463323556 ], [ -82.516505070262326, 37.208839081056993 ], [ -82.681585642965899, 37.138120084218656 ], [ -82.6948900868328, 37.126155972434134 ], [ -82.731892041369306, 37.048076135471248 ], [ -82.832021439720194, 36.979268759799581 ], [ -82.894500690150466, 36.906374469909508 ], [ -83.043815881393257, 36.845554155089403 ], [ -83.150218473342818, 36.762332716367879 ], [ -83.416889626093649, 36.681011912484479 ], [ -83.566182844679361, 36.652623239526548 ], [ -83.667520739170087, 36.605030464273526 ], [ -83.675375964079109, 36.602723335279265 ], [ -83.683231188988145, 36.600449165270632 ], [ -83.691086413897168, 36.598174995262013 ], [ -83.698941638806204, 36.595900825253381 ], [ -83.706796863715226, 36.593637641573295 ], [ -83.714652088624263, 36.591363471564662 ], [ -83.722507313533285, 36.589089301556044 ], [ -83.730384511099402, 36.586815131547411 ], [ -84.077519534107182, 36.596581977623117 ], [ -84.424687516100576, 36.606315864713181 ], [ -84.771844511765451, 36.616060738131793 ], [ -85.118979534773217, 36.625827584207499 ], [ -85.466125544109545, 36.635594430283192 ], [ -85.813282539774406, 36.645339303701803 ], [ -86.160450521767814, 36.655073190791882 ], [ -86.50758554477558, 36.664840036867574 ], [ -86.840460313333125, 36.659621530809133 ], [ -87.173357054547751, 36.654403024750692 ], [ -87.506253795762376, 36.649184518692238 ], [ -87.839150536977016, 36.643966012633797 ], [ -87.868714747089172, 36.675046336085046 ], [ -87.956297758242698, 36.681967723067828 ], [ -88.091121982135832, 36.6928002430123 ], [ -88.096296542880097, 36.693008983254643 ], [ -88.056712801135731, 36.590319770352977 ], [ -88.0560096761089, 36.500945987646759 ], [ -88.059107820758342, 36.499682559864198 ], [ -88.215509193912084, 36.49973749150692 ], [ -88.388214278625256, 36.499759464164001 ], [ -88.560919363338428, 36.499792423149628 ], [ -88.733646420708695, 36.499836368463818 ], [ -88.906373478078962, 36.499891300106526 ], [ -89.079078562792134, 36.499913272763621 ], [ -89.251783647505306, 36.499946231749249 ], [ -89.450328576954206, 36.500023136049066 ], [ -89.39746236400002, 36.58779291478784 ], [ -89.351308797786274, 36.611204780915301 ], [ -89.330533650509381, 36.615906929532173 ], [ -89.280128375149076, 36.600042671114508 ], [ -89.256123247280229, 36.594406684571382 ], [ -89.2030482940837, 36.625519967008259 ], [ -89.15633442511421, 36.715717724355287 ], [ -89.129516797138081, 36.811057083460938 ], [ -89.122485546869854, 36.911592975967949 ], [ -89.154312940662095, 36.992111777867635 ] ] ], [ [ [ -89.487220668205268, 36.503066349055771 ], [ -89.557313444316605, 36.501077823589299 ], [ -89.560038053795537, 36.513096867016529 ], [ -89.555489713778286, 36.540771428619109 ], [ -89.549644986992817, 36.553065130259952 ], [ -89.535582486456377, 36.555284368625863 ], [ -89.519520474124917, 36.554822942827002 ], [ -89.496833705681354, 36.528829289491682 ], [ -89.487220668205268, 36.503066349055771 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-LA", "NAME_1": "Louisiana" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.041306535289237, 33.011995659241379 ], [ -93.861630625114827, 33.01219341315516 ], [ -93.681949221776151, 33.012402153397503 ], [ -93.502273311601755, 33.012610893639845 ], [ -93.322619374084439, 33.012841606539268 ], [ -93.142965436567124, 33.013072319438692 ], [ -92.963284033228447, 33.013281059681034 ], [ -92.783608123054037, 33.013489799923363 ], [ -92.603926719715361, 33.013698540165706 ], [ -92.424250809540951, 33.013907280408048 ], [ -92.244569406202274, 33.014105034321844 ], [ -92.064898989192145, 33.014313774564172 ], [ -91.885206599524921, 33.014544487463596 ], [ -91.705536182514791, 33.014786186691566 ], [ -91.525854779176115, 33.014983940605362 ], [ -91.346173375837438, 33.015192680847704 ], [ -91.149957548039893, 33.015917778531616 ], [ -91.144178739225708, 32.96687480791077 ], [ -91.096080592859664, 32.93768413296911 ], [ -91.093377956037813, 32.885026660257267 ], [ -91.136059842431621, 32.808847458132504 ], [ -91.135587430304227, 32.755783491264523 ], [ -91.09208156926961, 32.725856732310419 ], [ -91.094355739278228, 32.694260051417601 ], [ -91.142420926658644, 32.661026407571711 ], [ -91.149649930840667, 32.625013222604167 ], [ -91.116119656124084, 32.586231482843502 ], [ -91.100815700462164, 32.541374303397973 ], [ -91.103814968154694, 32.49049661591026 ], [ -91.059276392236939, 32.423754670004882 ], [ -90.990018577094958, 32.38105081095398 ], [ -90.944699971850568, 32.330711453564945 ], [ -90.940437276375462, 32.303091823605087 ], [ -90.93764674892526, 32.27732888316919 ], [ -90.947721212200193, 32.240074243076151 ], [ -91.004597435072981, 32.185582053497441 ], [ -91.048158227750321, 32.145921407453258 ], [ -91.074591334227406, 32.131320576818155 ], [ -91.088697780078022, 32.104140400000063 ], [ -91.092542995068456, 32.045846940745093 ], [ -91.156527372509274, 31.97068946717495 ], [ -91.286495639185915, 31.883974375976393 ], [ -91.372529578014721, 31.773715582707865 ], [ -91.414706093295507, 31.639979005340592 ], [ -91.459090860613657, 31.554977781394925 ], [ -91.50572782528333, 31.51870092454233 ], [ -91.529007855468265, 31.448750970702065 ], [ -91.528952923825557, 31.345193837845429 ], [ -91.558692915194413, 31.287911120816517 ], [ -91.618249802231958, 31.276957751258053 ], [ -91.630807175757852, 31.217598618134303 ], [ -91.596365035772124, 31.109910625745087 ], [ -91.61104277070703, 31.064899637699924 ], [ -91.652615037917883, 31.029556618773569 ], [ -91.65644926657977, 31.001805152871185 ], [ -91.417123085575213, 31.001255836443988 ], [ -91.176885039301482, 31.001233863786894 ], [ -90.936614034042123, 31.001211891129813 ], [ -90.696343028782749, 31.001211891129813 ], [ -90.456104982509018, 31.001211891129813 ], [ -90.215833977249659, 31.001156959487091 ], [ -89.9755629719903, 31.001156959487091 ], [ -89.735313939388035, 31.001156959487091 ], [ -89.764933081142914, 30.886075167987698 ], [ -89.835366433439106, 30.73081637300254 ], [ -89.838124001903665, 30.690430629274445 ], [ -89.81973288792085, 30.639860558985973 ], [ -89.819996559805915, 30.611208214142977 ], [ -89.794002906470581, 30.568932821905292 ], [ -89.736632298813319, 30.526613484353447 ], [ -89.685765597654154, 30.462684038555352 ], [ -89.640776582266085, 30.348920606481244 ], [ -89.628988251738278, 30.296186229469583 ], [ -89.591656707345436, 30.223017281365912 ], [ -89.572485564036, 30.209163521071815 ], [ -89.545074674318471, 30.200693061764312 ], [ -89.520860806207295, 30.192629096612947 ], [ -89.588481658396191, 30.165965277236424 ], [ -89.954249494614757, 30.26874238076644 ], [ -90.045216294959872, 30.351403516732205 ], [ -90.125965809758966, 30.369102492016751 ], [ -90.225282219797592, 30.379286818577128 ], [ -90.332003415274926, 30.277586375244439 ], [ -90.413060547273261, 30.140301213757425 ], [ -90.284981929106195, 30.065088808544544 ], [ -90.175338370236133, 30.029097596234095 ], [ -89.994195785201086, 30.059255068087637 ], [ -89.894044414193118, 30.125865178050475 ], [ -89.812240211853776, 30.123689884998754 ], [ -89.773117895908257, 30.137236028093625 ], [ -89.737434300797034, 30.171985785278594 ], [ -89.667550264928053, 30.144519963918356 ], [ -89.665067354677078, 30.117054142558118 ], [ -89.71470358703931, 30.078294375454547 ], [ -89.777259741769385, 30.045708924992766 ], [ -89.815184547903598, 30.007267761416969 ], [ -89.743817357681152, 29.929858090495273 ], [ -89.631679902231582, 29.903831478174325 ], [ -89.589514373279343, 29.915048519617841 ], [ -89.563388884001483, 30.002093200672704 ], [ -89.49444967238729, 30.058167421561762 ], [ -89.400736289906149, 30.046049501177635 ], [ -89.414051720101597, 30.01088226350798 ], [ -89.400912071162864, 29.977681578647733 ], [ -89.357845663270012, 29.921014096017288 ], [ -89.362811483771935, 29.839781182762238 ], [ -89.354461874078424, 29.820225517953759 ], [ -89.455415247070121, 29.784388114242915 ], [ -89.53066061126863, 29.772215262216065 ], [ -89.590887664347349, 29.725270680347137 ], [ -89.559312956111626, 29.698035571886322 ], [ -89.620649628373314, 29.674129320974373 ], [ -89.66212301862727, 29.683687426807737 ], [ -89.682942111218324, 29.674854418658285 ], [ -89.689215304817012, 29.646048265215668 ], [ -89.720877903681085, 29.619307541539342 ], [ -89.674801241767156, 29.538667890025678 ], [ -89.580340788945023, 29.48605436262801 ], [ -89.513675747339448, 29.420070473392173 ], [ -89.245686235163333, 29.33320157359401 ], [ -89.180779006124823, 29.335706456502066 ], [ -89.116827587669647, 29.24821133597689 ], [ -89.065334665783467, 29.218141754751713 ], [ -89.015753365063972, 29.20287075807542 ], [ -89.021378365278551, 29.142720609296489 ], [ -89.109510692859274, 29.098665431834675 ], [ -89.13334003947142, 29.046139795065358 ], [ -89.1555104504734, 29.01663051659591 ], [ -89.195248000817401, 29.053984033645833 ], [ -89.236095170344342, 29.08112026514975 ], [ -89.330555623166475, 28.998700828411955 ], [ -89.376148886624463, 28.981331442983731 ], [ -89.353539022480717, 29.070243799891102 ], [ -89.38922261759194, 29.105015529733151 ], [ -89.443143518086359, 29.194136626882852 ], [ -89.521761685147908, 29.24927700984567 ], [ -89.57715475366723, 29.267514315228865 ], [ -89.620265106874271, 29.302395908356374 ], [ -89.672472140115801, 29.316502354206989 ], [ -89.716966770719395, 29.312909824773072 ], [ -89.792376929846057, 29.33320157359401 ], [ -89.797353736676541, 29.380640540247413 ], [ -89.818282692553041, 29.416137367773388 ], [ -89.877246317849199, 29.458017252183481 ], [ -90.15906761766233, 29.537140790358052 ], [ -90.160792471243752, 29.504401531296651 ], [ -90.14125877909234, 29.479748210043695 ], [ -90.100807117392989, 29.463323648870272 ], [ -90.052335435856435, 29.43140836444968 ], [ -90.052796861655295, 29.336838048342116 ], [ -90.073747790188875, 29.296759921813248 ], [ -90.082712634280867, 29.239762849326482 ], [ -90.101367420148733, 29.181787993599301 ], [ -90.135864491777198, 29.13607388052732 ], [ -90.212801750571487, 29.104938625433348 ], [ -90.246705560458565, 29.131009183068485 ], [ -90.301615230521961, 29.255813875329409 ], [ -90.379200682700358, 29.295111972531643 ], [ -90.502511234279282, 29.299759189505792 ], [ -90.586249030442374, 29.271546297804548 ], [ -90.677501475329635, 29.150619779519701 ], [ -90.751021985946721, 29.130888333454507 ], [ -91.002762718206114, 29.193510406155838 ], [ -91.290132113934007, 29.288992587532576 ], [ -91.282716342166751, 29.320743077025014 ], [ -91.237496613879244, 29.330971348899567 ], [ -91.150759550023622, 29.31789761793209 ], [ -91.155384794340677, 29.350691808636213 ], [ -91.243978547720261, 29.457325113485197 ], [ -91.26023831396553, 29.505456218836883 ], [ -91.2488454912653, 29.564189131233618 ], [ -91.277728549007733, 29.562870771808321 ], [ -91.33092435181824, 29.513575115630971 ], [ -91.514198284590833, 29.555378095741247 ], [ -91.564790327536386, 29.605321945302705 ], [ -91.672467333597069, 29.746089772938205 ], [ -91.824386284704815, 29.750693044598179 ], [ -91.893171687719388, 29.83601287207162 ], [ -92.017328186596217, 29.80029631797477 ], [ -92.080213931182612, 29.760712576230389 ], [ -92.135475163759409, 29.699474780925598 ], [ -92.113985905127166, 29.66770231877608 ], [ -92.058878481149975, 29.61718718013033 ], [ -92.084037173515966, 29.592819503419534 ], [ -92.260823679283263, 29.556850263766165 ], [ -92.671316859004833, 29.59708219889464 ], [ -92.791331512020534, 29.634655442515438 ], [ -92.952407567969786, 29.714185474846147 ], [ -93.175704695628525, 29.778960867942132 ], [ -93.28318944093968, 29.789397880059028 ], [ -93.388454947884924, 29.776576834648068 ], [ -93.694841678322646, 29.769919119550337 ], [ -93.765901251345852, 29.752703542721747 ], [ -93.826463387445187, 29.725138844404611 ], [ -93.865739511990327, 29.755625906114474 ], [ -93.883877940416625, 29.810019218736286 ], [ -93.84832068808366, 29.818830254228658 ], [ -93.808813850639098, 29.850811456620519 ], [ -93.773080817049419, 29.914037777391783 ], [ -93.769048834473736, 29.952303159710866 ], [ -93.794009772925932, 29.977264098163047 ], [ -93.726932743999953, 30.077107851971789 ], [ -93.710629032440508, 30.112813419740093 ], [ -93.720967167600506, 30.282903758259778 ], [ -93.75039404860587, 30.34471284264886 ], [ -93.746625737915238, 30.380363478774441 ], [ -93.715204838279135, 30.473252886614773 ], [ -93.720214604095233, 30.558265096888974 ], [ -93.665206057074954, 30.660767542205392 ], [ -93.624721436389962, 30.714347866514942 ], [ -93.579194090903229, 30.823804657799755 ], [ -93.568674681322264, 30.894655490580632 ], [ -93.549195920813574, 30.947719457448613 ], [ -93.562654173280094, 31.004903297520627 ], [ -93.530590573424149, 31.046189920189335 ], [ -93.551442625000846, 31.104065898959632 ], [ -93.557748777585161, 31.180420882341096 ], [ -93.596991943144673, 31.209754379553829 ], [ -93.66588171628041, 31.322583973701683 ], [ -93.663656984750233, 31.37219823340682 ], [ -93.736056889855817, 31.477666987430126 ], [ -93.737578496359177, 31.513812008340196 ], [ -93.806902229472428, 31.568798582703394 ], [ -93.820651619645361, 31.603965820373048 ], [ -93.826798470465775, 31.750259771266215 ], [ -93.845585092276181, 31.792941657660023 ], [ -93.905065075013908, 31.876998057350903 ], [ -94.043300553919991, 31.999231948732501 ], [ -94.043064347856287, 32.125838398874649 ], [ -94.042806169135503, 32.252422876359716 ], [ -94.042547990414718, 32.379007353844784 ], [ -94.042289811693934, 32.505613803986932 ], [ -94.042031632973149, 32.632220254129095 ], [ -94.041800920073726, 32.758804731614148 ], [ -94.041564714010022, 32.885378222770669 ], [ -94.041306535289237, 33.011995659241379 ] ] ], [ [ [ -89.223955277303119, 30.084051211611651 ], [ -89.220439652169006, 30.037601014527226 ], [ -89.269449663804224, 30.060727236112541 ], [ -89.342003377509428, 30.062847597521554 ], [ -89.310055134103195, 30.078711855939218 ], [ -89.287643023873244, 30.094180606529306 ], [ -89.276480914072437, 30.11082489427362 ], [ -89.18467915275798, 30.168678900386823 ], [ -89.210672806093314, 30.126227726892438 ], [ -89.223955277303119, 30.084051211611651 ] ] ], [ [ [ -88.827469666475267, 29.807690117084945 ], [ -88.855660585519416, 29.775862723292704 ], [ -88.827986023916836, 29.928352963484741 ], [ -88.866866640634399, 30.056717226193953 ], [ -88.825887635164918, 30.000368347091282 ], [ -88.812583191298017, 29.933362729300839 ], [ -88.827469666475267, 29.807690117084945 ] ] ], [ [ [ -88.88930072352143, 29.712581470878703 ], [ -88.943584172857811, 29.660231615366101 ], [ -88.94110126260685, 29.680204760659265 ], [ -88.901154972020521, 29.732631520471685 ], [ -88.872656435777131, 29.752989187263893 ], [ -88.88930072352143, 29.712581470878703 ] ] ], [ [ [ -91.793690482752609, 29.500732097562917 ], [ -91.830846245888736, 29.486471843112682 ], [ -91.99623443579155, 29.573110030011421 ], [ -92.006649475251351, 29.610287765804642 ], [ -91.925032040497271, 29.643927903806656 ], [ -91.875231013206886, 29.640983567756848 ], [ -91.796502982859906, 29.596950362952114 ], [ -91.767674856760195, 29.58471159295398 ], [ -91.754315481250572, 29.566880781726923 ], [ -91.761885061617463, 29.538997479881999 ], [ -91.793690482752609, 29.500732097562917 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-MA", "NAME_1": "Massachusetts" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.800835716179478, 42.011963043578504 ], [ -71.801637718163192, 42.022707672894626 ], [ -71.921136013737325, 42.024124909276821 ], [ -72.040634309311443, 42.02555313198755 ], [ -72.160132604885561, 42.026970368369746 ], [ -72.279641886788241, 42.028387604751941 ], [ -72.399140182362359, 42.02981582746267 ], [ -72.518638477936477, 42.031233063844837 ], [ -72.638114800853515, 42.032650300227033 ], [ -72.75762408275618, 42.034078522937762 ], [ -72.763325987270562, 42.011237945894607 ], [ -72.806458313134684, 42.008029937959719 ], [ -72.807699768260164, 42.034078522937762 ], [ -72.891800113265219, 42.036759187102518 ], [ -72.975922430927355, 42.039450837595837 ], [ -73.060033762260943, 42.042131501760593 ], [ -73.144134107265998, 42.044823152253883 ], [ -73.228234452271039, 42.047514802747202 ], [ -73.312345783604641, 42.050195466911958 ], [ -73.396468101266777, 42.052887117405248 ], [ -73.480568446271818, 42.055567781570034 ], [ -73.507287197291063, 42.080012362580646 ], [ -73.475536707798625, 42.164046789614417 ], [ -73.443808190963281, 42.248070230319655 ], [ -73.412046715142296, 42.332093671024893 ], [ -73.380296225649872, 42.416117111730131 ], [ -73.348567708814514, 42.500140552435369 ], [ -73.316806232993542, 42.584174979469168 ], [ -73.285055743501104, 42.668198420174406 ], [ -73.25332722666576, 42.752221860879644 ], [ -73.155010572524645, 42.749486265072164 ], [ -73.056693918383544, 42.746739682936123 ], [ -72.958410223228071, 42.744004087128644 ], [ -72.860093569086956, 42.741268491321165 ], [ -72.761776914945855, 42.738532895513686 ], [ -72.663493219790382, 42.735786313377673 ], [ -72.565176565649267, 42.733050717570194 ], [ -72.466859911508166, 42.730315121762715 ], [ -72.324696820147565, 42.726854428271338 ], [ -72.182544715115526, 42.723360775794305 ], [ -72.040381623754925, 42.719878109645833 ], [ -71.898240505051433, 42.716406429825895 ], [ -71.75611037267646, 42.712923763677423 ], [ -71.613947281315873, 42.70943011120039 ], [ -71.471784189955287, 42.705969417708985 ], [ -71.329621098594686, 42.702486751560514 ], [ -71.242334718311852, 42.729535092436095 ], [ -71.139293942896785, 42.808131286840535 ], [ -71.076177485410966, 42.825083191784074 ], [ -70.974081534250686, 42.871676211139601 ], [ -70.923489491305119, 42.881563906829285 ], [ -70.806111557140014, 42.876762881255502 ], [ -70.829051011140081, 42.825346863669125 ], [ -70.800277816683092, 42.774029723039661 ], [ -70.78133738627308, 42.721240414385278 ], [ -70.735678204843822, 42.669286066700266 ], [ -70.696863506097529, 42.664583918083395 ], [ -70.654829813087829, 42.67395525633151 ], [ -70.623980202536004, 42.671757990622694 ], [ -70.604138893185365, 42.649719415563226 ], [ -70.612949928677736, 42.62326433642906 ], [ -70.661443582871371, 42.616650566645518 ], [ -70.751850080460727, 42.570343191832137 ], [ -70.831171372549093, 42.552567312247788 ], [ -70.870886950235999, 42.496635913629802 ], [ -70.930443837273543, 42.43198137014781 ], [ -71.04617382215703, 42.331115887784478 ], [ -70.99672435738006, 42.299980632690506 ], [ -70.81794383298201, 42.264967203620472 ], [ -70.738259992051681, 42.228866128024578 ], [ -70.617696022608783, 42.040428620836252 ], [ -70.645238748268824, 42.021565094726043 ], [ -70.656148172513113, 41.987046050440512 ], [ -70.548921605922743, 41.938629300546665 ], [ -70.514677219850796, 41.803310691869058 ], [ -70.426676728212598, 41.757299947926384 ], [ -70.295467006410476, 41.728955220282614 ], [ -70.135011678023957, 41.769857321452292 ], [ -70.001406936599224, 41.826184227897869 ], [ -70.006109085216096, 41.872326807783054 ], [ -70.090033648964436, 41.979707182973044 ], [ -70.110237507157024, 42.030145417318977 ], [ -70.17258492164477, 42.062807772080589 ], [ -70.196227500671654, 42.035111237820928 ], [ -70.236536340099946, 42.07102554583156 ], [ -70.241084680117197, 42.091229404024148 ], [ -70.203489463839304, 42.101018222756949 ], [ -70.159851766862161, 42.097118076123792 ], [ -70.10894112038882, 42.078309481656305 ], [ -69.977896193514852, 41.96126113734752 ], [ -69.941586377676614, 41.807859031886295 ], [ -69.933841016053037, 41.71042128402874 ], [ -69.948639600601922, 41.677143694868676 ], [ -69.986751174321398, 41.683966204894546 ], [ -70.059513628268931, 41.677352435111004 ], [ -70.404660125810224, 41.626892228107977 ], [ -70.481355685376556, 41.582452529147105 ], [ -70.657125955753543, 41.534233533167082 ], [ -70.668057352654913, 41.558293592678638 ], [ -70.655346170529398, 41.608105606297556 ], [ -70.666453348687469, 41.7101136668295 ], [ -70.701126201572634, 41.714848774431999 ], [ -70.97424632917884, 41.548526746602931 ], [ -71.079791987501963, 41.53808973448605 ], [ -71.168539549481167, 41.489409312707153 ], [ -71.188413817817434, 41.516402721940011 ], [ -71.204278076235113, 41.641130509901132 ], [ -71.14873119911617, 41.745720357640892 ], [ -71.178339354542501, 41.744072408359301 ], [ -71.233765382047466, 41.706554096381211 ], [ -71.26788891850542, 41.750839986742449 ], [ -71.304737064442321, 41.774658347026048 ], [ -71.34072827675277, 41.797916404553888 ], [ -71.33948682162729, 41.835171044646927 ], [ -71.337630132103342, 41.891443019449781 ], [ -71.37907056337167, 41.902407375336793 ], [ -71.383926520588162, 41.97173110845003 ], [ -71.387134528523035, 42.016862946109171 ], [ -71.462533701321149, 42.015962067168545 ], [ -71.524134045467903, 42.015236969484647 ], [ -71.623241715264186, 42.014028473344808 ], [ -71.725821064880392, 42.012863922519131 ], [ -71.800835716179478, 42.011963043578504 ] ] ], [ [ [ -70.509898166934121, 41.376338019331342 ], [ -70.78531443720604, 41.327448857310117 ], [ -70.829182847082606, 41.359001592888745 ], [ -70.760485334696384, 41.373602423523863 ], [ -70.673715311855119, 41.448529184194598 ], [ -70.615993141684442, 41.457208383744415 ], [ -70.525355931195662, 41.414790169235658 ], [ -70.509898166934121, 41.376338019331342 ] ] ], [ [ [ -69.977940138829027, 41.265595827606859 ], [ -70.055097124194205, 41.249467897304129 ], [ -70.233075646608555, 41.28633801589811 ], [ -70.08661690078722, 41.317561161620432 ], [ -70.062699663546724, 41.328481572193255 ], [ -70.043605424537091, 41.374426398164672 ], [ -70.041199418585933, 41.397475715450184 ], [ -69.985597609824268, 41.298620731210406 ], [ -69.977940138829027, 41.265595827606859 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-MD", "NAME_1": "Maryland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.030361062154412, 38.889252963519084 ], [ -77.019737282452269, 38.806525909582035 ], [ -76.931242406029583, 38.888220248635918 ], [ -76.988788794943559, 38.952347448347808 ], [ -77.042116433696592, 39.01178348577136 ], [ -77.122052960183439, 38.943536412855451 ], [ -77.190300033099348, 38.96904666773483 ], [ -77.301086170138007, 39.053377725639308 ], [ -77.480921382076303, 39.112956585333933 ], [ -77.506453609612777, 39.142619672402986 ], [ -77.502937984478663, 39.175282027164599 ], [ -77.478855952310013, 39.220864304294054 ], [ -77.534150143872438, 39.265611620454138 ], [ -77.668820559165965, 39.309534961973441 ], [ -77.726641606293541, 39.34643803955305 ], [ -77.739045171219814, 39.354337209776247 ], [ -77.744834966362561, 39.400106254490964 ], [ -77.762358160390392, 39.429241997789887 ], [ -77.791702643931671, 39.441777398658701 ], [ -77.797437507431681, 39.461464899409719 ], [ -77.779584723547529, 39.488337459028571 ], [ -77.798140632458498, 39.517275448413727 ], [ -77.853072275178974, 39.548333799207882 ], [ -77.872166514188621, 39.575777647911025 ], [ -77.855423349487424, 39.599705871480069 ], [ -77.883251719689611, 39.61071417268127 ], [ -77.955706556437917, 39.608802551514572 ], [ -78.027194596274342, 39.63122564807307 ], [ -78.097781757170154, 39.677884585399852 ], [ -78.181135031834202, 39.685739810308888 ], [ -78.325363552961093, 39.639212708924646 ], [ -78.406761261144283, 39.627863831538576 ], [ -78.442697541812024, 39.601463684047133 ], [ -78.46026468115403, 39.556134092474196 ], [ -78.495541782109129, 39.533348447073735 ], [ -78.574961951154393, 39.53285406228926 ], [ -78.587497352023206, 39.534436093599595 ], [ -78.677673136713139, 39.549520322690654 ], [ -78.74166850048249, 39.577898009320052 ], [ -78.753401899367574, 39.589521544919705 ], [ -78.746458539727712, 39.613702454045239 ], [ -78.758213911269891, 39.624765686889162 ], [ -78.777769576078384, 39.62662237641311 ], [ -78.796171676389747, 39.61262579384794 ], [ -78.814793503271986, 39.570086729725205 ], [ -78.971480520967873, 39.453642633486339 ], [ -79.046747857823462, 39.476790827728735 ], [ -79.07534527102375, 39.47598882574502 ], [ -79.29355572856656, 39.311578419082622 ], [ -79.359770330701821, 39.285354052847879 ], [ -79.487980784811413, 39.210910690633085 ], [ -79.485344065960831, 39.338890431843254 ], [ -79.482740306095877, 39.466837214067795 ], [ -79.48012555990239, 39.594816955277963 ], [ -79.477499827380356, 39.722796696488103 ], [ -79.246710023654543, 39.722774723831037 ], [ -79.01589824727165, 39.722741764845409 ], [ -78.785086470888757, 39.722719792188315 ], [ -78.554296667162944, 39.722686833202687 ], [ -78.323506863437132, 39.722664860545592 ], [ -78.092695087054238, 39.722642887888497 ], [ -77.861883310671345, 39.72260992890287 ], [ -77.631093506945533, 39.722587956245775 ], [ -77.400303703219734, 39.72256598358868 ], [ -77.169491926836841, 39.722533024603052 ], [ -76.938680150453933, 39.722511051945958 ], [ -76.707901333056682, 39.722489079288891 ], [ -76.47711152933087, 39.722456120303235 ], [ -76.246321725605057, 39.722434147646169 ], [ -76.015531921879258, 39.722379216003446 ], [ -75.784720145496365, 39.722357243346352 ], [ -75.775030203720462, 39.563945372069043 ], [ -75.765318289287492, 39.405555473448828 ], [ -75.755606374854509, 39.247143602171519 ], [ -75.745883474092977, 39.088720744565677 ], [ -75.736171559660008, 38.930308873288368 ], [ -75.726459645227024, 38.771897002011059 ], [ -75.71674773079404, 38.61348513073375 ], [ -75.707024830032523, 38.455073259456441 ], [ -75.704728687366796, 38.455073259456441 ], [ -75.702432544701082, 38.455040300470785 ], [ -75.700125415706822, 38.455018327813718 ], [ -75.697829273041108, 38.455018327813718 ], [ -75.695533130375395, 38.455018327813718 ], [ -75.693226001381134, 38.455018327813718 ], [ -75.690907886058326, 38.455018327813718 ], [ -75.688600757064066, 38.455018327813718 ], [ -75.587856124314712, 38.454996355156624 ], [ -75.366272863908861, 38.454919450856806 ], [ -75.144656644517369, 38.454864519214084 ], [ -75.037660790826436, 38.45558961689801 ], [ -75.038748437352297, 38.426365982970708 ], [ -75.051250879235482, 38.383035903192791 ], [ -75.074355128163702, 38.365721449407317 ], [ -75.073399317580368, 38.410007339768555 ], [ -75.089746974453988, 38.425410172387359 ], [ -75.116751370015379, 38.406206070092281 ], [ -75.134241605057568, 38.384321303632447 ], [ -75.141481595568123, 38.298122569875488 ], [ -75.160004545493479, 38.255056161982623 ], [ -75.225428131973558, 38.242290048214386 ], [ -75.291785556379892, 38.129196782181481 ], [ -75.353539709126252, 38.065014650826868 ], [ -75.37596280568475, 38.02499145594075 ], [ -75.469423502609374, 38.014938965322898 ], [ -75.620002121634741, 37.999206542847745 ], [ -75.659256273522786, 37.953964841903158 ], [ -75.73516081743395, 37.973707274296899 ], [ -75.850813898017634, 37.971553953902259 ], [ -75.829038994843245, 38.032769776549969 ], [ -75.795343925198495, 38.086668704387279 ], [ -75.855625909919951, 38.140358891982288 ], [ -75.891309505031174, 38.147236333650881 ], [ -75.92806976033971, 38.169241949724693 ], [ -75.884970393461231, 38.213945320570616 ], [ -75.863920587970739, 38.261230478624412 ], [ -75.876763606038793, 38.318743908552761 ], [ -75.858702081912298, 38.36207398833065 ], [ -75.888826594780198, 38.355515150189831 ], [ -75.937276303659658, 38.309680187503886 ], [ -75.967400816527572, 38.291354991492312 ], [ -75.985715026210585, 38.33194947546275 ], [ -76.006676941072712, 38.32277589112843 ], [ -76.020310974795933, 38.29487061662644 ], [ -76.051215516990482, 38.279544688307425 ], [ -76.116485294870941, 38.317689221012529 ], [ -76.211670845376986, 38.361326917989658 ], [ -76.264646921616617, 38.43641847358856 ], [ -76.294870311441414, 38.494657001200807 ], [ -76.264174509489223, 38.599971946624493 ], [ -76.19838837416718, 38.618681664135096 ], [ -76.112947697079747, 38.60157595059195 ], [ -76.000942077572702, 38.601729759191556 ], [ -76.016927185604359, 38.625108666333404 ], [ -76.056950380490491, 38.621263451342969 ], [ -76.174987494368253, 38.706682155773308 ], [ -76.212967232145189, 38.758284940944918 ], [ -76.278313914325466, 38.77246829109535 ], [ -76.308097851008512, 38.722854031390199 ], [ -76.341177686254781, 38.70964846448021 ], [ -76.300319530399292, 38.818204376824411 ], [ -76.246969918989166, 38.822642853556232 ], [ -76.168132025356741, 38.852745393767037 ], [ -76.191049506699713, 38.915554234053644 ], [ -76.240817575004471, 38.943074987056605 ], [ -76.330663769838083, 38.908610874413768 ], [ -76.329598095969303, 38.95278690148956 ], [ -76.312756054311208, 39.009355507163122 ], [ -76.245003366179773, 39.009190712234954 ], [ -76.185710151027294, 38.99074466660943 ], [ -76.135195012381544, 39.082106974782107 ], [ -76.132942815030006, 39.122965130637596 ], [ -76.216845406121251, 39.063638956499489 ], [ -76.235697945902928, 39.191618697709657 ], [ -76.153124700565499, 39.315039112574027 ], [ -76.074363711232877, 39.368861136111548 ], [ -75.975981139120506, 39.367257132144118 ], [ -75.875983576712159, 39.375991263336658 ], [ -75.938715512698934, 39.398579154823324 ], [ -76.003106384295876, 39.410850883807086 ], [ -75.954733579716233, 39.459608209885772 ], [ -75.913446957047526, 39.46834234107834 ], [ -75.872929377376906, 39.510892391529609 ], [ -75.970400084220117, 39.504564266288213 ], [ -75.958919370891536, 39.585050109202257 ], [ -76.006314392230763, 39.568691466000104 ], [ -76.063003847518289, 39.561121885633213 ], [ -76.085064395234838, 39.526998349175244 ], [ -76.080724795459915, 39.470308893887733 ], [ -76.097259219918783, 39.433098199108883 ], [ -76.14136932902332, 39.403226371797473 ], [ -76.215812691238114, 39.379946341612538 ], [ -76.223041695420122, 39.420332085340618 ], [ -76.247662057687435, 39.43860234970947 ], [ -76.256813669364675, 39.352172903053059 ], [ -76.276369334173168, 39.322740528883429 ], [ -76.330817578437703, 39.403896537838676 ], [ -76.347198194296936, 39.387548880965056 ], [ -76.345044873902296, 39.364521536336639 ], [ -76.35897553849621, 39.324685109035727 ], [ -76.405689407465701, 39.30387700277322 ], [ -76.402778030401521, 39.252823534028806 ], [ -76.420883499842191, 39.224995163826605 ], [ -76.570407431327325, 39.269335985830594 ], [ -76.573923056461439, 39.254317674710819 ], [ -76.489383258314618, 39.158692671062994 ], [ -76.427607132911177, 39.126041302629943 ], [ -76.420059525201381, 39.073889201031136 ], [ -76.473079546755187, 39.030614052895942 ], [ -76.546248494858858, 39.067978556274397 ], [ -76.558553182828248, 39.06521000148129 ], [ -76.51878267349862, 39.001181678726311 ], [ -76.493777789732263, 38.945217321122698 ], [ -76.519507771182532, 38.898327670896492 ], [ -76.515552692906653, 38.840605500725815 ], [ -76.521111775149976, 38.788299590527373 ], [ -76.536877156610743, 38.742618436441035 ], [ -76.501314411113512, 38.532175313178897 ], [ -76.458500688777178, 38.474969500449788 ], [ -76.416412064124742, 38.420235611643108 ], [ -76.394087844523142, 38.368973402656366 ], [ -76.438736283726342, 38.361535658232015 ], [ -76.509894733706446, 38.403646255541531 ], [ -76.57242891577944, 38.435792252861546 ], [ -76.646894250651314, 38.538525411077387 ], [ -76.659187952292157, 38.579559348189576 ], [ -76.677326380718455, 38.611958031066109 ], [ -76.668548304211726, 38.537514668851315 ], [ -76.6419833617921, 38.454348161772515 ], [ -76.408765579458048, 38.268261728892639 ], [ -76.365721144222292, 38.196894538670193 ], [ -76.332904980861073, 38.140776372466945 ], [ -76.341177686254781, 38.087031253229242 ], [ -76.401943069432164, 38.125065922648901 ], [ -76.454424760887306, 38.173537604185441 ], [ -76.593588584555363, 38.228315438306311 ], [ -76.769161101018554, 38.262933359548754 ], [ -76.868114962215216, 38.390297866360442 ], [ -76.867752413373267, 38.337146008864124 ], [ -76.889747043118533, 38.292080089176238 ], [ -76.950259740739412, 38.347044690882342 ], [ -76.988393287115969, 38.393879409465825 ], [ -77.0011813735413, 38.445251481738012 ], [ -77.076712382281954, 38.441757829260979 ], [ -77.155901838427795, 38.397109390057778 ], [ -77.232520493694309, 38.407711197102827 ], [ -77.241584214743185, 38.494810809800413 ], [ -77.220918930751751, 38.540953389685626 ], [ -77.134928937237106, 38.650124536428308 ], [ -77.053893777895865, 38.705803249489776 ], [ -77.018188210127562, 38.777741728796514 ], [ -77.030361062154412, 38.889252963519084 ] ] ], [ [ [ -75.225790680815521, 38.040339356916832 ], [ -75.252476472849125, 38.037449952509746 ], [ -75.22599942105785, 38.072298586651613 ], [ -75.137394681349733, 38.24009278250557 ], [ -75.097887843905156, 38.298078624561299 ], [ -75.136230130524055, 38.18053589546804 ], [ -75.203202789328856, 38.072408449937058 ], [ -75.225790680815521, 38.040339356916832 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-ME", "NAME_1": "Maine" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.053660318414302, 47.294585315407062 ], [ -69.048573648298387, 47.273656359530548 ], [ -69.003090248125829, 47.236445664751699 ], [ -68.937183263189809, 47.211254013400094 ], [ -68.887415194885051, 47.202827499406766 ], [ -68.828715241473958, 47.203321884191269 ], [ -68.668545557629585, 47.253441515009428 ], [ -68.480382708654872, 47.285796252571771 ], [ -68.376902480098039, 47.316151478339123 ], [ -68.358016981330735, 47.34452916496852 ], [ -68.310885631876573, 47.354471792300927 ], [ -68.235497445406992, 47.345946401350687 ], [ -68.096795047537796, 47.274842883013321 ], [ -67.934834592140746, 47.167616316422937 ], [ -67.806788932959307, 47.082812846391079 ], [ -67.802855827340522, 46.935738866171278 ], [ -67.800350944432466, 46.779853850459119 ], [ -67.797692252924804, 46.615630211381983 ], [ -67.795835563400843, 46.49840608581647 ], [ -67.792517692180525, 46.337379468345688 ], [ -67.789913932315585, 46.209322822835702 ], [ -67.786475211481275, 46.042154847708758 ], [ -67.784640494614408, 45.952803037659635 ], [ -67.767051382615321, 45.926985165580987 ], [ -67.777609244346195, 45.891795955254253 ], [ -67.782289420305972, 45.874173884269538 ], [ -67.781124869480308, 45.860144342718712 ], [ -67.774104605540629, 45.842522271733998 ], [ -67.775258170037759, 45.817879936809589 ], [ -67.791693717539729, 45.79557768986507 ], [ -67.7999114912907, 45.769759817786451 ], [ -67.802240592942056, 45.727517384534394 ], [ -67.784640494614408, 45.701710498784337 ], [ -67.755317983730222, 45.68646147476511 ], [ -67.730664662477281, 45.68646147476511 ], [ -67.698991077284646, 45.671190478088818 ], [ -67.657935167515362, 45.644186082527455 ], [ -67.595741561627236, 45.62073027108579 ], [ -67.531196881430688, 45.612534469991914 ], [ -67.486625346527291, 45.618401169434463 ], [ -67.43264951439015, 45.603108200101076 ], [ -67.413862892579743, 45.565589888122986 ], [ -67.424431740639164, 45.530400677796251 ], [ -67.454918802349027, 45.513965130294281 ], [ -67.487789897352968, 45.501045207926438 ], [ -67.493656596795503, 45.474073771350675 ], [ -67.477221049293547, 45.445904824963606 ], [ -67.45375425152335, 45.421262490039197 ], [ -67.427947365773278, 45.377954382918375 ], [ -67.438516213832699, 45.340381139297591 ], [ -67.461972025274335, 45.308707554104956 ], [ -67.472540873333756, 45.275891390743737 ], [ -67.452600687026219, 45.247678499042507 ], [ -67.399778419386209, 45.210160187064417 ], [ -67.36694028336791, 45.17378445325491 ], [ -67.315293552882125, 45.153833280618841 ], [ -67.290662204286264, 45.167917753812361 ], [ -67.270722017978727, 45.186704375622782 ], [ -67.249584321859885, 45.200777862487769 ], [ -67.213230560707473, 45.192538116079703 ], [ -67.170988127455431, 45.18200222700591 ], [ -67.124834561241684, 45.169444853480002 ], [ -67.130371670827913, 45.139001737084328 ], [ -67.10225765608358, 45.087739528097558 ], [ -67.080449793923549, 44.989170188399953 ], [ -67.113936123325942, 44.944389913254213 ], [ -67.106729091801014, 44.885041766459011 ], [ -67.014015465217398, 44.867749285330603 ], [ -66.991460532716374, 44.849610856904292 ], [ -66.987022055984554, 44.827704117787391 ], [ -67.191246917290741, 44.675565440108755 ], [ -67.364072851617905, 44.696856944827204 ], [ -67.457786234099032, 44.656526132741845 ], [ -67.55600401128325, 44.644770761199652 ], [ -67.599070419176101, 44.576787360168794 ], [ -67.652991319670519, 44.562395269776033 ], [ -67.726786488501205, 44.566482183994424 ], [ -67.790485221399877, 44.585675299960968 ], [ -67.839055779893314, 44.57624903007013 ], [ -67.907017208267092, 44.453619630860942 ], [ -67.96269592132856, 44.464309328534341 ], [ -67.984888304987635, 44.420188233101271 ], [ -68.013980102972397, 44.400885253849282 ], [ -68.05661804405203, 44.3843178704048 ], [ -68.093718875545449, 44.438843018969123 ], [ -68.117284550272529, 44.490643558054529 ], [ -68.152034307457498, 44.502014408097665 ], [ -68.198264777971048, 44.515241947664776 ], [ -68.245747689938639, 44.51478052186593 ], [ -68.277432261459808, 44.507364750098645 ], [ -68.316752331319123, 44.473878420696252 ], [ -68.373749403805888, 44.445138185224891 ], [ -68.416848770684368, 44.469066408793935 ], [ -68.450598771971826, 44.507595462998069 ], [ -68.479459857057165, 44.44565454266646 ], [ -68.521416645767076, 44.380241942514914 ], [ -68.514473286127199, 44.303908931790545 ], [ -68.532534810253694, 44.258645258188892 ], [ -68.572349264897497, 44.270840082872837 ], [ -68.61203188359876, 44.310522701574087 ], [ -68.723290432764813, 44.342306150052167 ], [ -68.811917145130039, 44.339361814002359 ], [ -68.793888579989172, 44.381736083196927 ], [ -68.710117824840452, 44.442556398017047 ], [ -68.735880765276349, 44.454498537144474 ], [ -68.777013579345436, 44.446050050494051 ], [ -68.794943267529405, 44.454498537144474 ], [ -68.765510893359775, 44.509792728706884 ], [ -68.762720365909573, 44.570766852126638 ], [ -68.800216705230568, 44.549398443108373 ], [ -68.847370027341825, 44.485040530497059 ], [ -68.961474035600801, 44.433855225810106 ], [ -68.956167638913996, 44.348095945194899 ], [ -69.063559000432534, 44.172347647475021 ], [ -69.068360026006303, 44.097563709075359 ], [ -69.137244305977774, 44.0378310407811 ], [ -69.226057785928248, 43.986458968508913 ], [ -69.344545339276308, 44.000927963201491 ], [ -69.434951836865665, 43.956312482983918 ], [ -69.480874690179988, 43.905072246654271 ], [ -69.520733090137966, 43.897370830344869 ], [ -69.541541196400487, 43.962618635568248 ], [ -69.556702329791335, 43.982767562118113 ], [ -69.5899799189514, 43.886571269386025 ], [ -69.623938660481201, 43.880627665643658 ], [ -69.636748719563613, 43.948841779573939 ], [ -69.652876649866343, 43.993874740276198 ], [ -69.699129093036987, 43.955016096215729 ], [ -69.729846867646273, 43.851997293457742 ], [ -69.762014837623383, 43.860709451993216 ], [ -69.772276068483563, 43.899029765955021 ], [ -69.795292426783448, 43.91063132889758 ], [ -69.803257514977915, 43.866828836992283 ], [ -69.791601020392633, 43.805228492845544 ], [ -69.80834418509383, 43.772313452527413 ], [ -69.840336373814239, 43.789880591869434 ], [ -69.872526316448443, 43.819543678938487 ], [ -69.925601269644957, 43.797021705423077 ], [ -69.97432563673803, 43.787870093745852 ], [ -69.974534376980358, 43.818071510913569 ], [ -69.965228956703513, 43.855106424435718 ], [ -70.062359087361855, 43.834638894358079 ], [ -70.178814169929268, 43.766369848785075 ], [ -70.269242640175719, 43.671909395962928 ], [ -70.237876672182324, 43.656198946144883 ], [ -70.202577598570144, 43.626118378591144 ], [ -70.359682096750703, 43.480241908182649 ], [ -70.520697727892966, 43.348823446138198 ], [ -70.642327371204644, 43.13442524460018 ], [ -70.691161601583147, 43.109332470205459 ], [ -70.733096417635963, 43.070034373003239 ], [ -70.812835190209, 43.163648878527454 ], [ -70.829029038483, 43.239070023982663 ], [ -70.919699207957407, 43.328103230504013 ], [ -70.955635488625148, 43.389395957451541 ], [ -70.967544668766948, 43.458148401480486 ], [ -70.962436025993938, 43.532152310553499 ], [ -70.970104483317726, 43.643026338220523 ], [ -70.977750967984406, 43.75386740690189 ], [ -70.985408438979647, 43.864708475583257 ], [ -70.993076896303421, 43.975560530593185 ], [ -71.000756339955743, 44.086401599274552 ], [ -71.008402824622436, 44.197253654284481 ], [ -71.01604930928913, 44.308094722965848 ], [ -71.023717766612904, 44.418946777975776 ], [ -71.031397210265226, 44.529787846657143 ], [ -71.03904369493192, 44.640639901667072 ], [ -71.046690179598613, 44.751480970348439 ], [ -71.054369623250935, 44.862322039029834 ], [ -71.062038080574709, 44.973174094039734 ], [ -71.069684565241403, 45.08401516272113 ], [ -71.077331049908096, 45.19486721773103 ], [ -71.084549067761557, 45.294007846512955 ], [ -71.060225336364937, 45.309125034589641 ], [ -70.999877433672225, 45.337228063005426 ], [ -70.9601838286424, 45.333097203472846 ], [ -70.926236073441146, 45.290700961621184 ], [ -70.897990222754288, 45.262455110934326 ], [ -70.865053209779077, 45.270694857342392 ], [ -70.8368293317493, 45.310696079571443 ], [ -70.837818101318277, 45.366177038719115 ], [ -70.799190170157232, 45.404772010894533 ], [ -70.753300275828551, 45.410693641979776 ], [ -70.710947979291063, 45.409474159511404 ], [ -70.689788310515127, 45.428337685621614 ], [ -70.692139384823577, 45.455364053840071 ], [ -70.707410381499855, 45.498924846517411 ], [ -70.702213848098509, 45.551384565315459 ], [ -70.59638254523324, 45.643988328613659 ], [ -70.466568087156205, 45.706819141557332 ], [ -70.421095673312195, 45.73824004119345 ], [ -70.407868133745112, 45.801905815106466 ], [ -70.333457730515946, 45.868054499270471 ], [ -70.296247035737096, 45.90608916869013 ], [ -70.287150355702593, 45.939158017607866 ], [ -70.306431362297474, 45.979829405878093 ], [ -70.304519741130804, 46.057392885399395 ], [ -70.278877650308885, 46.149996648697595 ], [ -70.248291711642125, 46.25087311738946 ], [ -70.179660117227158, 46.34181794507748 ], [ -70.067215044578347, 46.441046464487755 ], [ -70.038222123550483, 46.571421225320535 ], [ -70.007680130197897, 46.708937099706986 ], [ -69.871724314464714, 46.842926362630749 ], [ -69.717520207019803, 46.994856300067056 ], [ -69.629772400938108, 47.081362651023255 ], [ -69.471492365603325, 47.238664903117609 ], [ -69.358882498026361, 47.350648549967559 ], [ -69.302149097424646, 47.401987663254118 ], [ -69.242877854929262, 47.4629947456595 ], [ -69.146286054369568, 47.444757440276305 ], [ -69.050221597580006, 47.426619011849994 ], [ -69.064284098116445, 47.338146108084402 ], [ -69.053660318414302, 47.294585315407062 ] ] ], [ [ [ -68.187256476769875, 44.332484372333738 ], [ -68.245440072739399, 44.313005611825076 ], [ -68.309259655252049, 44.321509030118193 ], [ -68.307974254812393, 44.268697748806716 ], [ -68.315104382037504, 44.249702386753995 ], [ -68.385790419890213, 44.276860590914993 ], [ -68.41170716892573, 44.294350825957196 ], [ -68.409487930559834, 44.364267820811818 ], [ -68.34704163911519, 44.430361573333101 ], [ -68.29943787753362, 44.456509035268027 ], [ -68.238046273629223, 44.438403565827372 ], [ -68.190892951517966, 44.364377684097263 ], [ -68.187256476769875, 44.332484372333738 ] ] ], [ [ [ -68.623193993399568, 44.196067130801708 ], [ -68.661173731176504, 44.176269766765245 ], [ -68.701713283504219, 44.182674796306458 ], [ -68.703031642929503, 44.232003411469464 ], [ -68.690792872931382, 44.248724603513551 ], [ -68.676730372394942, 44.256217279580625 ], [ -68.655955225118063, 44.242308587643805 ], [ -68.623193993399568, 44.196067130801708 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-MI", "NAME_1": "Michigan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.498382778006075, 47.997897109814403 ], [ -89.455645959969544, 47.996216201547156 ], [ -89.273174029180666, 48.019968643859471 ], [ -89.185634963341315, 48.047434465219709 ], [ -89.062599069975988, 48.093807758004345 ], [ -88.898705020755187, 48.155715719350326 ], [ -88.611764091840499, 48.264007959809476 ], [ -88.378194746993046, 48.303097316769367 ], [ -88.160665441819958, 48.225402001305525 ], [ -87.987465972322298, 48.156902242833098 ], [ -87.920493313517497, 48.130392232056181 ], [ -87.743888082171168, 48.060530168844281 ], [ -87.494245738663693, 47.961752088904319 ], [ -87.208029907432916, 47.84850501427178 ], [ -86.921825062530701, 47.735224980653612 ], [ -86.672171732694679, 47.636424928056584 ], [ -86.49556650134835, 47.56658483750175 ], [ -86.428571869886454, 47.540074826724862 ], [ -86.234498376155017, 47.460050409609664 ], [ -86.040402909766485, 47.380025992494495 ], [ -85.846329416035047, 47.300012561707831 ], [ -85.652255922303596, 47.219988144592662 ], [ -85.458193414900705, 47.139963727477465 ], [ -85.264119921169268, 47.059939310362267 ], [ -85.070046427437816, 46.979925879575632 ], [ -84.875972933706379, 46.899901462460434 ], [ -84.827061799028073, 46.766857023791431 ], [ -84.779414092132328, 46.637284264942394 ], [ -84.665782496000745, 46.543252278933466 ], [ -84.561752951016715, 46.45737214870428 ], [ -84.501580829580703, 46.461865557078823 ], [ -84.440496842875532, 46.498142413931419 ], [ -84.401715103114881, 46.515610676316527 ], [ -84.336708997119473, 46.518500080723641 ], [ -84.192172858793356, 46.549558431517795 ], [ -84.149479986071, 46.542768880477524 ], [ -84.125222172645636, 46.527234211916181 ], [ -84.12317871553644, 46.502954425833735 ], [ -84.128144536038363, 46.483596514939023 ], [ -84.150468755639963, 46.444792802521306 ], [ -84.115169682027783, 46.370810866105359 ], [ -84.107775882917608, 46.288622142266973 ], [ -84.088406985694377, 46.226527413335759 ], [ -84.029201661170248, 46.146997381005036 ], [ -83.977785643583886, 46.084913638402355 ], [ -83.913043209473528, 46.072894594975139 ], [ -83.763200674460606, 46.109072574870822 ], [ -83.669300524394231, 46.122739567579686 ], [ -83.615950912984104, 46.116828922822975 ], [ -83.524764386068114, 46.058711244824707 ], [ -83.480148905850541, 46.023752747397396 ], [ -83.469470194505689, 45.9946829220697 ], [ -83.592692855456249, 45.817154839125692 ], [ -83.397311988628061, 45.729044484202035 ], [ -83.1792882986705, 45.632771287170129 ], [ -82.919351765317202, 45.517975140212883 ], [ -82.760423536598324, 45.447717569173392 ], [ -82.551079046190594, 45.347357457923096 ], [ -82.515241642479751, 45.204370391921685 ], [ -82.485062197969128, 45.083762477164612 ], [ -82.446588075407703, 44.915506855511779 ], [ -82.407388855162367, 44.743933362638643 ], [ -82.368277525545395, 44.57298609049252 ], [ -82.326804135291439, 44.391557860915356 ], [ -82.281221858161985, 44.192232902139835 ], [ -82.240792169119715, 44.015353012579908 ], [ -82.196605155715361, 43.822213356774711 ], [ -82.137850270661545, 43.570879118671428 ], [ -82.190375907430862, 43.474089564197953 ], [ -82.304765560231985, 43.26322896045113 ], [ -82.408190857146096, 43.072638132868178 ], [ -82.417232605537876, 43.017376900291367 ], [ -82.488347110203804, 42.739510678754129 ], [ -82.54532221003349, 42.624681572811227 ], [ -82.645133004856589, 42.558049490191308 ], [ -82.744196729338697, 42.493482837337666 ], [ -82.867748980145592, 42.385212569535582 ], [ -83.003682823221681, 42.33173112218293 ], [ -83.073138392277457, 42.300310222546841 ], [ -83.109525112415497, 42.250706949170251 ], [ -83.149669156915621, 42.141920323926598 ], [ -83.141945767949125, 41.97586196798261 ], [ -83.12166500545672, 41.950000150589801 ], [ -83.30395016866035, 41.837807763497523 ], [ -83.464196756804512, 41.739447164042218 ], [ -83.797181388647502, 41.729954976180125 ], [ -84.13015503416193, 41.720451801989498 ], [ -84.463128679676373, 41.710937641470309 ], [ -84.796113311519349, 41.701434467279654 ], [ -84.796398956061495, 41.759727926534623 ], [ -85.099500774264541, 41.759859762477163 ], [ -85.402613578796121, 41.759980612091141 ], [ -85.705715396999167, 41.760112448033681 ], [ -86.008828201530761, 41.760244283976192 ], [ -86.311930019733794, 41.760376119918732 ], [ -86.615042824265387, 41.76049696953271 ], [ -86.918155628796967, 41.760606832818155 ], [ -87.221257447000013, 41.760727682432133 ], [ -87.175730101513281, 41.943748929648223 ], [ -87.130202756026549, 42.126781163192845 ], [ -87.084675410539816, 42.309791424080373 ], [ -87.039126092396003, 42.49280168496793 ], [ -87.079358027524478, 42.782148619833748 ], [ -87.113855099152929, 43.030549508215756 ], [ -87.15500988587911, 43.326762898421634 ], [ -87.145188108160696, 43.571263640170486 ], [ -87.141727414669305, 43.657802950112313 ], [ -87.083203242514912, 43.890141826162846 ], [ -87.032490349955367, 44.091466296733387 ], [ -86.918748890538353, 44.361587156647062 ], [ -86.822113144664485, 44.591124518918832 ], [ -86.714699810488867, 44.846205095055637 ], [ -86.535952245076444, 45.041487084926928 ], [ -86.401468597368165, 45.133365750541202 ], [ -86.264524012066019, 45.226903351765628 ], [ -86.481822604339683, 45.323000767540833 ], [ -86.774289656512039, 45.452364786147541 ], [ -86.942336537922515, 45.452364786147541 ], [ -87.115272335535124, 45.452364786147541 ], [ -87.244383668585328, 45.289789096352024 ], [ -87.419802376448899, 45.183858916529857 ], [ -87.459539926792885, 45.067997095703817 ], [ -87.653613420524337, 45.121797146584271 ], [ -87.69420790449476, 45.161073271129396 ], [ -87.718850239419169, 45.201272247272243 ], [ -87.720915669185459, 45.242767610183307 ], [ -87.66271010055884, 45.345193151199908 ], [ -87.657568498800202, 45.361804479958579 ], [ -87.664226213897933, 45.371285681492111 ], [ -87.696394183875043, 45.382832312791976 ], [ -87.768563376081204, 45.364364294509329 ], [ -87.841820214813225, 45.360793737732507 ], [ -87.865429834854481, 45.367824988000734 ], [ -87.874911036388042, 45.385392127342726 ], [ -87.87403213010451, 45.412814003388803 ], [ -87.859134668598713, 45.445498330807482 ], [ -87.815178368093797, 45.505824260843099 ], [ -87.814662010652228, 45.563238813814564 ], [ -87.794557029416524, 45.596033004518688 ], [ -87.814090721567936, 45.65702910059548 ], [ -87.809080955751824, 45.686043994280453 ], [ -87.839831689346738, 45.71798125135814 ], [ -87.922536770626692, 45.759970999053678 ], [ -88.116115879573655, 45.815803520714752 ], [ -88.096483310465345, 45.878414607087564 ], [ -88.104415439674185, 45.905155330763876 ], [ -88.151744543042156, 45.945409238549445 ], [ -88.354749921879943, 45.992287902447089 ], [ -88.492990893950292, 46.013524475522843 ], [ -88.629539971424848, 46.014040832964412 ], [ -88.727241391167482, 46.031113587521929 ], [ -88.837335389507871, 46.036617738122516 ], [ -88.907823673446785, 46.06476471185249 ], [ -88.978311957385699, 46.092900699253931 ], [ -89.048800241324614, 46.121058659312439 ], [ -89.119288525263528, 46.14919464671388 ], [ -89.244181108152802, 46.173254706225435 ], [ -89.369084677370623, 46.197336738394085 ], [ -89.49398824658843, 46.221363838920041 ], [ -89.618924774791878, 46.245445871088691 ], [ -89.743839330338247, 46.269472971614618 ], [ -89.868753885884615, 46.293555003783268 ], [ -89.993646468773889, 46.317582104309224 ], [ -90.118550037991696, 46.341664136477874 ], [ -90.146510244136422, 46.383675856830479 ], [ -90.174459463952601, 46.42572053616874 ], [ -90.202419670097328, 46.467754229178439 ], [ -90.23037987624204, 46.509765949531072 ], [ -90.287860347184747, 46.527388020515787 ], [ -90.318226559280632, 46.536638509149924 ], [ -90.340880368738553, 46.558446371309969 ], [ -90.39234033163909, 46.548965169776409 ], [ -90.412588135145867, 46.585274985614632 ], [ -90.35571191227308, 46.673011805367793 ], [ -90.298846675728853, 46.760715666135297 ], [ -90.242003411841694, 46.848463472216991 ], [ -90.185138175297467, 46.936200291970124 ], [ -90.128272938753227, 47.023948098051818 ], [ -90.071429674866081, 47.111673931476417 ], [ -90.014553451993294, 47.199388778572484 ], [ -89.95767722912052, 47.287136584654149 ], [ -89.842957986463077, 47.464488886341485 ], [ -89.728238743805633, 47.641797242714631 ], [ -89.61351950114819, 47.819149544401967 ], [ -89.498382778006075, 47.997897109814403 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-MN", "NAME_1": "Minnesota" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.225737809109404, 48.993181571609597 ], [ -97.10344898608507, 48.993181571609597 ], [ -96.677064082124474, 48.993181571609597 ], [ -96.250684671328131, 48.993181571609597 ], [ -95.824299767367535, 48.993181571609597 ], [ -95.397920356571191, 48.993181571609597 ], [ -95.162043882729478, 48.99176433522743 ], [ -95.158242613053218, 49.203097351101633 ], [ -95.155298277003396, 49.369672064487219 ], [ -94.939340016812125, 49.349413274651909 ], [ -94.874795336615563, 49.319036076227462 ], [ -94.854333299702176, 49.304589054191979 ], [ -94.860403246222802, 49.2586002829064 ], [ -94.842605393981358, 49.119172787353307 ], [ -94.803461105378744, 49.002948417685303 ], [ -94.712768963247242, 48.863422045175298 ], [ -94.7125602230049, 48.863015551019174 ], [ -94.705095012759188, 48.80852336144045 ], [ -94.675355021390331, 48.774443770296671 ], [ -94.620884804468702, 48.742605390175896 ], [ -94.414155060254473, 48.704109294957391 ], [ -94.055182268240429, 48.65902140261241 ], [ -93.851627572975431, 48.60728678149826 ], [ -93.803545906102201, 48.54894937692913 ], [ -93.707739628033423, 48.525460606501838 ], [ -93.564285643068899, 48.536908360844791 ], [ -93.463617914619348, 48.561276037555587 ], [ -93.377886099825503, 48.616537270132397 ], [ -93.257942857945352, 48.628863930758882 ], [ -93.155215192893777, 48.625348305624755 ], [ -93.051707498515597, 48.619877114009796 ], [ -92.996254005189272, 48.611813148858431 ], [ -92.836732514729007, 48.567779944053711 ], [ -92.732653531266521, 48.53182169072889 ], [ -92.583255942559646, 48.465101717480593 ], [ -92.500578327101053, 48.435339753454627 ], [ -92.460890215235509, 48.365884184398851 ], [ -92.414588333586423, 48.27658730599245 ], [ -92.348439649422431, 48.27658730599245 ], [ -92.29867707428194, 48.328882229862359 ], [ -92.171784979597646, 48.338396390381547 ], [ -92.005155334569352, 48.301833888986778 ], [ -91.858399957877339, 48.197573631103324 ], [ -91.647286668573997, 48.10460731896319 ], [ -91.518307171466319, 48.05831093047837 ], [ -91.387240271935269, 48.058541643377794 ], [ -91.22065457222115, 48.10460731896319 ], [ -91.04347805179053, 48.193695457127262 ], [ -90.916047627007572, 48.209153221388789 ], [ -90.840318864353122, 48.200517967153132 ], [ -90.797318374431526, 48.131062398097384 ], [ -90.744408216163166, 48.10460731896319 ], [ -90.607101082019071, 48.112594379814738 ], [ -90.320138180447302, 48.099180072662421 ], [ -90.091776355329742, 48.118098530415352 ], [ -90.039942857258694, 48.078152239829024 ], [ -89.993646468773889, 48.015310440556789 ], [ -89.901042705475703, 47.995469131206164 ], [ -89.775370093259795, 48.015310440556789 ], [ -89.550567838590524, 47.999907607937956 ], [ -89.498382778006075, 47.997897109814403 ], [ -89.61351950114819, 47.819149544401967 ], [ -89.728238743805633, 47.641797242714631 ], [ -89.842957986463077, 47.464488886341485 ], [ -89.95767722912052, 47.287136584654149 ], [ -90.131777577558793, 47.29261876259767 ], [ -90.305855953339986, 47.298122913198256 ], [ -90.479923342792617, 47.303627063798842 ], [ -90.654023691230904, 47.309098255413801 ], [ -90.857600359152983, 47.213088730266946 ], [ -91.061188013403608, 47.117068218791559 ], [ -91.264786653982782, 47.021113625287427 ], [ -91.46836332190486, 46.925093113812039 ], [ -91.592519820781689, 46.876258883433536 ], [ -91.716643360672876, 46.827424653055033 ], [ -91.84077788689261, 46.77859042267653 ], [ -91.964923399440877, 46.729778164955121 ], [ -92.093265689492995, 46.76190218961807 ], [ -92.125345768841754, 46.763011808800997 ], [ -92.194548652341012, 46.706970546897594 ], [ -92.224002999167737, 46.671023279901306 ], [ -92.291645824013727, 46.660718103726936 ], [ -92.291904002734512, 46.516643391199665 ], [ -92.292140208798216, 46.372546706015328 ], [ -92.292370921697639, 46.228450020830962 ], [ -92.292629100418424, 46.08437530830372 ], [ -92.325472729600989, 46.069587710083368 ], [ -92.367275709711279, 46.035980531066969 ], [ -92.424613358382913, 46.027806702630158 ], [ -92.693948695805673, 45.909011532082872 ], [ -92.738080777567305, 45.874668269054013 ], [ -92.786448088982681, 45.795500785565281 ], [ -92.874712252505944, 45.706094043873435 ], [ -92.896520114665975, 45.658578172920215 ], [ -92.892488132090293, 45.594758590407565 ], [ -92.757460661119083, 45.543243695864305 ], [ -92.70702242677315, 45.493761272101693 ], [ -92.682605311583899, 45.433094765881208 ], [ -92.685807826354505, 45.380536170126248 ], [ -92.753917570163622, 45.277572299010984 ], [ -92.766139860668929, 45.236461457598978 ], [ -92.75905917192226, 45.110580105140741 ], [ -92.793039886109142, 45.07135891223831 ], [ -92.765211515906955, 44.969449728663307 ], [ -92.76340426486145, 44.934260518336572 ], [ -92.784668303758536, 44.822562516028739 ], [ -92.799214202750917, 44.790031997209667 ], [ -92.77259982185285, 44.732002209839777 ], [ -92.769809294402648, 44.725849865855082 ], [ -92.643537927281102, 44.645342050283944 ], [ -92.537030965210363, 44.600792488037627 ], [ -92.441587235983533, 44.586576178901566 ], [ -92.366940626690678, 44.552265874858364 ], [ -92.313091137331796, 44.497795657936734 ], [ -92.240306710727168, 44.462145021811153 ], [ -92.148581853712514, 44.445248048510337 ], [ -92.055121156787905, 44.399819579980516 ], [ -91.912298885714662, 44.288868648013676 ], [ -91.840975640806391, 44.194155509635038 ], [ -91.716434620430533, 44.126457753146326 ], [ -91.514846477974928, 44.054211656640348 ], [ -91.382691931918018, 43.99079856828385 ], [ -91.319916050617053, 43.936284406048031 ], [ -91.27843167403455, 43.79742819957923 ], [ -91.245252961831383, 43.502412319184629 ], [ -91.575414107238529, 43.501939907057249 ], [ -91.900609432143753, 43.50189596174306 ], [ -92.22583771603459, 43.501841030100337 ], [ -92.551065999925441, 43.501786098457615 ], [ -92.876261324830665, 43.501742153143454 ], [ -93.201489608721516, 43.501687221500731 ], [ -93.526712399448087, 43.501632289858009 ], [ -93.851913217517577, 43.501577358215286 ], [ -94.177114035587067, 43.501533412901097 ], [ -94.502342319477918, 43.501478481258374 ], [ -94.827565110204489, 43.50142354961568 ], [ -95.152765928273979, 43.501379604301491 ], [ -95.477966746343469, 43.501324672658768 ], [ -95.803189537070054, 43.501269741016046 ], [ -96.128417820960905, 43.501225795701885 ], [ -96.453618639030395, 43.501170864059162 ], [ -96.453618639030395, 43.72569846051482 ], [ -96.453618639030395, 43.950215070641946 ], [ -96.453618639030395, 44.174720694440538 ], [ -96.453640611687476, 44.399259277224758 ], [ -96.453668077508837, 44.623786873680416 ], [ -96.453668077508837, 44.848292497479008 ], [ -96.453668077508837, 45.072809107606133 ], [ -96.453668077508837, 45.29733670406182 ], [ -96.529759389005235, 45.371549353377191 ], [ -96.696108882655665, 45.431776406455896 ], [ -96.737527341266897, 45.467844523066162 ], [ -96.814909546367232, 45.557427046014737 ], [ -96.845451539719818, 45.59586820959052 ], [ -96.851060060441583, 45.626003708786953 ], [ -96.813618652763296, 45.659182420990135 ], [ -96.662671991731699, 45.755653371935836 ], [ -96.614689201815366, 45.799972221282701 ], [ -96.591052115952749, 45.84326934207499 ], [ -96.556401235724678, 45.942772519698877 ], [ -96.570480215753932, 46.019237366365758 ], [ -96.560845205620765, 46.138241277155402 ], [ -96.59190355641492, 46.227538155561803 ], [ -96.598566764676903, 46.271857004908696 ], [ -96.617430290787127, 46.327096264828413 ], [ -96.730858639840633, 46.472774981323113 ], [ -96.758198118422612, 46.590339683073466 ], [ -96.786647216187546, 46.64821566184375 ], [ -96.795996581778567, 46.797091399944804 ], [ -96.792821532829322, 46.839026215997592 ], [ -96.770134764385773, 46.91966586751127 ], [ -96.818298828723087, 46.974136084432899 ], [ -96.825324585827033, 47.018861427935889 ], [ -96.847516969486108, 47.373335318411137 ], [ -96.862947267926288, 47.423927361356675 ], [ -96.858706545108262, 47.588337768019073 ], [ -96.946349981068792, 47.761526251188201 ], [ -96.988004645743729, 47.820336067884739 ], [ -97.009032478577126, 47.891549449507551 ], [ -97.007433967773949, 47.925607067994235 ], [ -97.078515513454249, 48.043369523658413 ], [ -97.12592701428629, 48.173392721977763 ], [ -97.121609387168462, 48.286046534868916 ], [ -97.136803479544952, 48.371212553742737 ], [ -97.131019177566486, 48.437427155877998 ], [ -97.143961072591424, 48.536754552245185 ], [ -97.129129529056897, 48.593367103232907 ], [ -97.128047375695303, 48.681114909314573 ], [ -97.225737809109404, 48.993181571609597 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-MO", "NAME_1": "Missouri" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.70477194603545, 36.001573410003459 ], [ -89.888177714750569, 35.999332198980468 ], [ -90.052489244456055, 35.997134933271653 ], [ -90.216789787832994, 35.994937667562823 ], [ -90.381068358552852, 35.992740401854007 ], [ -90.303043453232689, 36.099373706702991 ], [ -90.252550287244034, 36.137737965978985 ], [ -90.21616356710598, 36.178409354249226 ], [ -90.149278798929529, 36.215927666227302 ], [ -90.075659411355559, 36.296721126340586 ], [ -90.067057116105531, 36.334272397304304 ], [ -90.074472887872787, 36.371834654596555 ], [ -90.118077625864302, 36.422536560827552 ], [ -90.162242666611562, 36.500869083346956 ], [ -90.440746095204375, 36.500869083346956 ], [ -90.719238537468655, 36.500869083346956 ], [ -90.997752952390002, 36.500869083346956 ], [ -91.276256380982815, 36.500869083346956 ], [ -91.554759809575629, 36.500869083346956 ], [ -91.833285210825537, 36.500869083346956 ], [ -92.11178863941835, 36.500869083346956 ], [ -92.39029756117543, 36.500869083346956 ], [ -92.66880648293251, 36.500869083346956 ], [ -92.947320897853871, 36.500869083346956 ], [ -93.225829819610951, 36.500869083346956 ], [ -93.504338741368045, 36.500869083346956 ], [ -93.782847663125125, 36.500869083346956 ], [ -94.061356584882205, 36.500869083346956 ], [ -94.339870999803566, 36.500869083346956 ], [ -94.618379921560646, 36.500869083346956 ], [ -94.618303017260843, 36.625882515850222 ], [ -94.61822611296104, 36.750862989367846 ], [ -94.618149208661222, 36.875832476556923 ], [ -94.618066811197139, 37.000845909060189 ], [ -94.618484291681824, 37.131165738250246 ], [ -94.618868813180868, 37.261496553768836 ], [ -94.619258827844178, 37.391827369287441 ], [ -94.619670815164582, 37.522158184806045 ], [ -94.620082802484987, 37.652478013996102 ], [ -94.620500282969658, 37.782808829514707 ], [ -94.620912270290063, 37.913139645033297 ], [ -94.621296791789106, 38.043470460551902 ], [ -94.621686806452431, 38.173790289741959 ], [ -94.622098793772821, 38.304121105260549 ], [ -94.622510781093226, 38.434451920779168 ], [ -94.622928261577911, 38.564782736297758 ], [ -94.623340248898316, 38.695102565487815 ], [ -94.623730263561626, 38.825433381006434 ], [ -94.624114785060669, 38.955764196525024 ], [ -94.624526772381074, 39.086062053057987 ], [ -94.622384438314967, 39.124404339676886 ], [ -94.777851973542468, 39.193991744675174 ], [ -94.847203172477066, 39.259151659270202 ], [ -94.882293505846903, 39.343131154661279 ], [ -94.952518117900766, 39.426374566039897 ], [ -95.05793743344563, 39.508958797705844 ], [ -95.075356257352283, 39.597376769828713 ], [ -95.004763603292204, 39.691551578108715 ], [ -94.945827443817407, 39.739484929546592 ], [ -94.898597217406348, 39.741143865156744 ], [ -94.893296313883823, 39.781815253426998 ], [ -94.929935719578367, 39.861499094357328 ], [ -94.984015921836686, 39.891162181426381 ], [ -95.055536920658739, 39.870793528305626 ], [ -95.116203426879238, 39.872089915073815 ], [ -95.34668012024153, 40.001486892666179 ], [ -95.362467474359406, 40.010319900815631 ], [ -95.434296090380698, 40.095980304473954 ], [ -95.463651560250511, 40.198065269305687 ], [ -95.521219921821583, 40.264576502311627 ], [ -95.607105545215035, 40.295470058177614 ], [ -95.661570268972397, 40.362761320510202 ], [ -95.684696490557712, 40.466362398681014 ], [ -95.739551228978385, 40.570853369463919 ], [ -95.765028524872136, 40.601867774943884 ], [ -95.515430126678837, 40.602944435141211 ], [ -95.263145571156514, 40.604394630509034 ], [ -95.010888481455538, 40.605844825876858 ], [ -94.758631391754577, 40.60728403491612 ], [ -94.506368808889334, 40.608734230283943 ], [ -94.254111719188359, 40.610184425651767 ], [ -94.001854629487383, 40.61163462101959 ], [ -93.749597539786421, 40.61307383005888 ], [ -93.497334956921179, 40.614524025426675 ], [ -93.245077867220203, 40.615974220794499 ], [ -92.992820777519242, 40.617413429833789 ], [ -92.740563687818266, 40.618863625201612 ], [ -92.488301104953024, 40.620313820569436 ], [ -92.236044015252062, 40.621764015937259 ], [ -91.983786925551087, 40.623203224976521 ], [ -91.731529835850125, 40.624653420344345 ], [ -91.682047412087513, 40.551868993739703 ], [ -91.627423386566278, 40.530753270277955 ], [ -91.616854538506857, 40.506879978351634 ], [ -91.545487348284411, 40.469317721059383 ], [ -91.529930707065972, 40.432315766522862 ], [ -91.441952188084855, 40.379449553568691 ], [ -91.499784221540978, 40.226025475450399 ], [ -91.501651897393472, 40.097529376798661 ], [ -91.466814249580153, 39.942863843554875 ], [ -91.4258682030963, 39.8268152551436 ], [ -91.378736853642138, 39.749405584221904 ], [ -91.209898956576481, 39.602804016129511 ], [ -90.919376484556437, 39.386900687580948 ], [ -90.737223157295332, 39.181796919991228 ], [ -90.663526865421545, 38.987492713360382 ], [ -90.577075446108054, 38.909610630311278 ], [ -90.477967776311772, 38.948117711858345 ], [ -90.354349607533621, 38.930209996331456 ], [ -90.220074700067684, 38.897679477512384 ], [ -90.149916005985091, 38.859897493649243 ], [ -90.134205556167032, 38.846669954082159 ], [ -90.126767811742681, 38.832618439874267 ], [ -90.132195058043465, 38.818643829966163 ], [ -90.150750966954448, 38.780532256246715 ], [ -90.316600582656108, 38.45780885526392 ], [ -90.373993162970464, 38.309757091803675 ], [ -90.365775389219479, 38.254254159998908 ], [ -90.299000484328459, 38.173999029984287 ], [ -90.173580557669069, 38.069046633402564 ], [ -90.063871080827738, 38.000524902273042 ], [ -89.96982810849029, 37.968532713552634 ], [ -89.822962868512818, 37.88409179236271 ], [ -89.623286347223896, 37.747257070346009 ], [ -89.52342062075806, 37.644523912130182 ], [ -89.52342062075806, 37.575947249357938 ], [ -89.502931118023326, 37.505799541603892 ], [ -89.46197408521094, 37.434124734182205 ], [ -89.46197408521094, 37.365679907352501 ], [ -89.502931118023326, 37.300509006428925 ], [ -89.486913051006042, 37.21273922769015 ], [ -89.413941856816152, 37.102414516450338 ], [ -89.351880086870565, 37.035518761945355 ], [ -89.300826618126152, 37.012051964175157 ], [ -89.29001607083876, 37.012777061859069 ], [ -89.28588521130618, 37.022697716534395 ], [ -89.293246051430728, 37.038177453453017 ], [ -89.29581685231004, 37.051635705919537 ], [ -89.291675006448926, 37.070653040629367 ], [ -89.281468707231454, 37.077794154183024 ], [ -89.272393999854032, 37.079980433563307 ], [ -89.224911087886454, 37.052679407131222 ], [ -89.154312940662095, 36.992111777867635 ], [ -89.122485546869854, 36.911592975967949 ], [ -89.129516797138081, 36.811057083460938 ], [ -89.15633442511421, 36.715717724355287 ], [ -89.2030482940837, 36.625519967008259 ], [ -89.256123247280229, 36.594406684571382 ], [ -89.280128375149076, 36.600042671114508 ], [ -89.330533650509381, 36.615906929532173 ], [ -89.351308797786274, 36.611204780915301 ], [ -89.39746236400002, 36.58779291478784 ], [ -89.450328576954206, 36.500023136049066 ], [ -89.45182271763619, 36.49751825314101 ], [ -89.471488245730129, 36.488882998905353 ], [ -89.485385951338401, 36.498133487539477 ], [ -89.487220668205268, 36.503066349055771 ], [ -89.496833705681354, 36.528829289491682 ], [ -89.519520474124917, 36.554822942827002 ], [ -89.535582486456377, 36.555284368625863 ], [ -89.549644986992817, 36.553065130259952 ], [ -89.555489713778286, 36.540771428619109 ], [ -89.560038053795537, 36.513096867016529 ], [ -89.557313444316605, 36.501077823589299 ], [ -89.540603238601037, 36.426667420360133 ], [ -89.555269987207396, 36.372922301122429 ], [ -89.604093231257352, 36.351916440946113 ], [ -89.611706756938418, 36.321967709334913 ], [ -89.583548796879896, 36.287657405291696 ], [ -89.583548796879896, 36.272232600015798 ], [ -89.594623016052353, 36.259444513590466 ], [ -89.627988495840768, 36.255258722415164 ], [ -89.654081026132985, 36.247963800261886 ], [ -89.674548556210638, 36.220574883201451 ], [ -89.634129853496916, 36.167917410489608 ], [ -89.64188620144904, 36.104515308461629 ], [ -89.697696750453048, 36.030302659146273 ], [ -89.70477194603545, 36.001573410003459 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-MS", "NAME_1": "Mississippi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.173266760660027, 34.99900501238352 ], [ -88.084771884237341, 34.933109013776033 ], [ -88.088210605071652, 34.909081913250091 ], [ -88.089474032854213, 34.893063846232806 ], [ -88.095648349496003, 34.846196168663695 ], [ -88.120059971520973, 34.661450067866184 ], [ -88.144460607217411, 34.476736926054315 ], [ -88.168883215570943, 34.292012797913898 ], [ -88.193294837595914, 34.107277683444934 ], [ -88.217684486963805, 33.922531582647437 ], [ -88.24209610898879, 33.737807454507021 ], [ -88.266518717342308, 33.553094312695151 ], [ -88.290908366710198, 33.36834821189764 ], [ -88.315330975063731, 33.183613097428676 ], [ -88.339742597088701, 32.998888969288274 ], [ -88.364132246456592, 32.81417582747639 ], [ -88.388554854810124, 32.629429726678893 ], [ -88.412977463163642, 32.444683625881382 ], [ -88.437367112531533, 32.259970484069513 ], [ -88.461778734556518, 32.075246355929096 ], [ -88.486190356581503, 31.890511241460132 ], [ -88.475709399150432, 31.702820804612813 ], [ -88.465217455390814, 31.515108395108399 ], [ -88.45472551163121, 31.327384999275452 ], [ -88.444233567871592, 31.139705548756666 ], [ -88.433741624111988, 30.952015111909347 ], [ -88.423260666680918, 30.764302702404947 ], [ -88.412757736592766, 30.576579306571986 ], [ -88.399585128668392, 30.370805372941078 ], [ -88.692096126154922, 30.355358595008084 ], [ -88.819889099779843, 30.406488968052301 ], [ -88.872942080319277, 30.41633271842781 ], [ -88.905208927253284, 30.415146194945052 ], [ -89.054040720040149, 30.368245558390313 ], [ -89.223636673775346, 30.332364209365295 ], [ -89.26356099170458, 30.343625196122986 ], [ -89.320536091534265, 30.345328077047327 ], [ -89.443495080599774, 30.223138130979905 ], [ -89.520860806207295, 30.192629096612947 ], [ -89.545074674318471, 30.200693061764312 ], [ -89.572485564036, 30.209163521071815 ], [ -89.591656707345436, 30.223017281365912 ], [ -89.628988251738278, 30.296186229469583 ], [ -89.640776582266085, 30.348920606481244 ], [ -89.685765597654154, 30.462684038555352 ], [ -89.736632298813319, 30.526613484353447 ], [ -89.794002906470581, 30.568932821905292 ], [ -89.819996559805915, 30.611208214142977 ], [ -89.81973288792085, 30.639860558985973 ], [ -89.838124001903665, 30.690430629274445 ], [ -89.835366433439106, 30.73081637300254 ], [ -89.764933081142914, 30.886075167987698 ], [ -89.735313939388035, 31.001156959487091 ], [ -89.9755629719903, 31.001156959487091 ], [ -90.215833977249659, 31.001156959487091 ], [ -90.456104982509018, 31.001211891129813 ], [ -90.696343028782749, 31.001211891129813 ], [ -90.936614034042123, 31.001211891129813 ], [ -91.176885039301482, 31.001233863786894 ], [ -91.417123085575213, 31.001255836443988 ], [ -91.65644926657977, 31.001805152871185 ], [ -91.652615037917883, 31.029556618773569 ], [ -91.61104277070703, 31.064899637699924 ], [ -91.596365035772124, 31.109910625745087 ], [ -91.630807175757852, 31.217598618134303 ], [ -91.618249802231958, 31.276957751258053 ], [ -91.558692915194413, 31.287911120816517 ], [ -91.528952923825557, 31.345193837845429 ], [ -91.529007855468265, 31.448750970702065 ], [ -91.50572782528333, 31.51870092454233 ], [ -91.459090860613657, 31.554977781394925 ], [ -91.414706093295507, 31.639979005340592 ], [ -91.372529578014721, 31.773715582707865 ], [ -91.286495639185915, 31.883974375976393 ], [ -91.156527372509274, 31.97068946717495 ], [ -91.092542995068456, 32.045846940745093 ], [ -91.088697780078022, 32.104140400000063 ], [ -91.074591334227406, 32.131320576818155 ], [ -91.048158227750321, 32.145921407453258 ], [ -91.004597435072981, 32.185582053497441 ], [ -90.947721212200193, 32.240074243076151 ], [ -90.93764674892526, 32.27732888316919 ], [ -90.940437276375462, 32.303091823605087 ], [ -90.944699971850568, 32.330711453564945 ], [ -90.990018577094958, 32.38105081095398 ], [ -91.059276392236939, 32.423754670004882 ], [ -91.103814968154694, 32.49049661591026 ], [ -91.100815700462164, 32.541374303397973 ], [ -91.116119656124084, 32.586231482843502 ], [ -91.149649930840667, 32.625013222604167 ], [ -91.142420926658644, 32.661026407571711 ], [ -91.094355739278228, 32.694260051417601 ], [ -91.09208156926961, 32.725856732310419 ], [ -91.135587430304227, 32.755783491264523 ], [ -91.136059842431621, 32.808847458132504 ], [ -91.093377956037813, 32.885026660257267 ], [ -91.096080592859664, 32.93768413296911 ], [ -91.144178739225708, 32.96687480791077 ], [ -91.149957548039893, 33.015917778531616 ], [ -91.15285793877554, 33.040571099784557 ], [ -91.106781276861611, 33.217923401471893 ], [ -91.117306179606842, 33.240818910157785 ], [ -91.163338896206611, 33.294454166110057 ], [ -91.168458525308154, 33.359460272105466 ], [ -91.14101467660501, 33.438506905980233 ], [ -91.154330106800444, 33.500206127083871 ], [ -91.192958037961489, 33.522530346685471 ], [ -91.202713897708648, 33.546974927696084 ], [ -91.214579132536272, 33.583405593148299 ], [ -91.172721220783259, 33.616683182308364 ], [ -91.170370146474824, 33.647455888560387 ], [ -91.207481964296775, 33.675668780261617 ], [ -91.184125029812037, 33.715670002490668 ], [ -91.100299343020595, 33.767448568918994 ], [ -91.077151148778185, 33.796694175503376 ], [ -91.052706567767572, 33.82759871769791 ], [ -91.038182641432272, 33.901393886528595 ], [ -91.050069848916991, 33.945163419448278 ], [ -91.070174830152681, 33.974200285790317 ], [ -91.060353052434266, 33.989295501209909 ], [ -91.043148461934209, 34.002863616961861 ], [ -90.943106954211672, 34.02968124493799 ], [ -90.914729267582274, 34.048621675348016 ], [ -90.908785663839922, 34.071561129348083 ], [ -90.940250508790214, 34.128558201834849 ], [ -90.909719501766176, 34.188763282256488 ], [ -90.817214615424888, 34.25222031592719 ], [ -90.768116713161334, 34.308107769231 ], [ -90.762337904347135, 34.356425642167935 ], [ -90.718106945628605, 34.39170274312302 ], [ -90.635423837005746, 34.413873154125 ], [ -90.584007819419384, 34.503708362630064 ], [ -90.563847906540971, 34.661164423324038 ], [ -90.539249516930738, 34.728170041114481 ], [ -90.497215823921024, 34.738090695789793 ], [ -90.474759768376899, 34.760052366549445 ], [ -90.467574709509066, 34.80526110850839 ], [ -90.415949951680361, 34.851623414964479 ], [ -90.319940426533506, 34.899161258574779 ], [ -90.282103511027643, 34.945303838459978 ], [ -90.29341942942807, 34.970067022998364 ], [ -90.293705073970216, 35.001114387463986 ], [ -90.038635484161958, 35.000839729250373 ], [ -89.772997046294279, 35.000554084708227 ], [ -89.507347622098052, 35.000268440166082 ], [ -89.241698197901826, 34.999982795623936 ], [ -88.976059760034161, 34.99969715108179 ], [ -88.710421322166482, 34.999411506539644 ], [ -88.444771897970256, 34.999125861997499 ], [ -88.173266760660027, 34.99900501238352 ] ] ], [ [ [ -88.558106863231146, 30.215909126797882 ], [ -88.570653250428506, 30.204801948639812 ], [ -88.659236017479543, 30.225599068573771 ], [ -88.713101986331239, 30.244924020482841 ], [ -88.722846859749851, 30.264248972391911 ], [ -88.573993094305905, 30.22915863902206 ], [ -88.558106863231146, 30.215909126797882 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-MT", "NAME_1": "Montana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.062517015834686, 48.993082694652713 ], [ -113.732355870427526, 48.993082694652713 ], [ -113.30597096646693, 48.993082694652713 ], [ -112.879591555670586, 48.993082694652713 ], [ -112.453206651709991, 48.993082694652713 ], [ -112.026827240913647, 48.993082694652713 ], [ -111.600442336953051, 48.993082694652713 ], [ -111.174062926156708, 48.993082694652713 ], [ -110.747678022196112, 48.993082694652713 ], [ -110.321298611399769, 48.993082694652713 ], [ -109.999432144043411, 48.993082694652713 ], [ -109.894913707439173, 48.993082694652713 ], [ -109.468534296642829, 48.993082694652713 ], [ -109.042149392682234, 48.993104667309808 ], [ -108.61576998188589, 48.993137626295436 ], [ -108.189385077925294, 48.993137626295436 ], [ -107.763005667128951, 48.993137626295436 ], [ -107.336620763168355, 48.993137626295436 ], [ -106.910241352372012, 48.993137626295436 ], [ -106.483856448411416, 48.993137626295436 ], [ -106.057477037615072, 48.993137626295436 ], [ -105.631092133654477, 48.993137626295436 ], [ -105.204707229693867, 48.993137626295436 ], [ -104.778327818897537, 48.993137626295436 ], [ -104.351942914936927, 48.993137626295436 ], [ -104.03392715573527, 48.993137626295436 ], [ -104.031911164447436, 48.803326828039104 ], [ -104.030515900722335, 48.61263712349924 ], [ -104.029120636997234, 48.421958405287938 ], [ -104.027725373272133, 48.231268700748075 ], [ -104.026330109547033, 48.040578996208211 ], [ -104.024962311643293, 47.849900277996881 ], [ -104.023594513739553, 47.659210573457017 ], [ -104.022199250014452, 47.468520868917182 ], [ -104.020803986289351, 47.277842150705851 ], [ -104.019408722564251, 47.087152446165987 ], [ -104.01801345883915, 46.896462741626124 ], [ -104.016640167771143, 46.705784023414822 ], [ -104.015272369867404, 46.515094318874958 ], [ -104.013877106142303, 46.324404614335094 ], [ -104.012481842417202, 46.133725896123792 ], [ -104.011086578692101, 45.943058164241023 ], [ -104.009510040546019, 45.710642383890672 ], [ -104.00793350239995, 45.478259562525977 ], [ -104.006356964253868, 45.245865754832721 ], [ -104.004780426107786, 45.013482933468026 ], [ -104.004961700528767, 45.010351829832956 ], [ -104.005142974949749, 45.007231712526448 ], [ -104.005302276713635, 45.004100608891378 ], [ -104.005478057970336, 45.000969505256307 ], [ -104.013415680343442, 45.00102443689903 ], [ -104.021347809552282, 45.001057395884658 ], [ -104.029279938761121, 45.001079368541753 ], [ -104.037212067969961, 45.001134300184475 ], [ -104.256394815588934, 45.001134300184475 ], [ -104.475555590550812, 45.001134300184475 ], [ -104.694738338169785, 45.001134300184475 ], [ -104.913926578953024, 45.001134300184475 ], [ -105.133087353914902, 45.001134300184475 ], [ -105.352270101533875, 45.001134300184475 ], [ -105.571458342317115, 45.001134300184475 ], [ -105.790619117279007, 45.001101341198847 ], [ -106.00980186489798, 45.001079368541753 ], [ -106.22899010568122, 45.001079368541753 ], [ -106.448150880643098, 45.001079368541753 ], [ -106.667333628262071, 45.001079368541753 ], [ -106.88652186904531, 45.001079368541753 ], [ -107.105677150842922, 45.001079368541753 ], [ -107.324865391626162, 45.001079368541753 ], [ -107.544048139245135, 45.001079368541753 ], [ -107.763208914207027, 45.001079368541753 ], [ -107.982397154990267, 45.001079368541753 ], [ -108.20157990260924, 45.001079368541753 ], [ -108.420740677571118, 45.001079368541753 ], [ -108.639928918354357, 45.001079368541753 ], [ -108.85911166597333, 45.001079368541753 ], [ -109.078272440935208, 45.001079368541753 ], [ -109.297455188554181, 45.001079368541753 ], [ -109.516643429337421, 45.001079368541753 ], [ -109.735804204299313, 45.001079368541753 ], [ -109.954986951918286, 45.001079368541753 ], [ -110.174175192701526, 45.001079368541753 ], [ -110.393335967663404, 45.001079368541753 ], [ -110.612518715282377, 45.001079368541753 ], [ -110.831706956065617, 45.001079368541753 ], [ -111.050862237863228, 45.001057395884658 ], [ -111.051021539627115, 44.875505633282728 ], [ -111.051147882405374, 44.749986829666454 ], [ -111.051279718347899, 44.624457039721619 ], [ -111.05143352694752, 44.498883304462623 ], [ -111.117219662269562, 44.525349369925323 ], [ -111.160934263546523, 44.555836431635214 ], [ -111.197573669241081, 44.590586188820168 ], [ -111.265117617130173, 44.687551524550344 ], [ -111.304080631311805, 44.723312023961398 ], [ -111.337462590593034, 44.744812268922175 ], [ -111.372525458141524, 44.746240491632904 ], [ -111.415569893377281, 44.733551282164484 ], [ -111.448100412196354, 44.711117199277453 ], [ -111.459108713397541, 44.67101710009149 ], [ -111.491045970475213, 44.624226326822196 ], [ -111.488821238945036, 44.584543708120918 ], [ -111.474506052852078, 44.564614508141943 ], [ -111.47934003741149, 44.553716070226187 ], [ -111.499857005967584, 44.544850103091107 ], [ -111.659301592128031, 44.559604742325831 ], [ -111.797097617892348, 44.539895268917718 ], [ -111.892079921320331, 44.554924566366054 ], [ -112.074211275924341, 44.547618657884215 ], [ -112.231310280940619, 44.560692388851692 ], [ -112.285077372835431, 44.55394678312561 ], [ -112.320035870262743, 44.533149663191637 ], [ -112.363860334825134, 44.479558352553539 ], [ -112.37538499346789, 44.470022219377285 ], [ -112.392847762688731, 44.46795678961098 ], [ -112.648235956024763, 44.497103519238465 ], [ -112.715928219349209, 44.498037357164719 ], [ -112.787141600972035, 44.463078859737408 ], [ -112.810163452436186, 44.438161866599387 ], [ -112.815513794437152, 44.405971923965211 ], [ -112.831350587033469, 44.396622558374162 ], [ -112.853856081056051, 44.398325439298503 ], [ -112.910391727743956, 44.419331299474806 ], [ -112.97007495755976, 44.454498537144474 ], [ -112.999688606150372, 44.480360354537254 ], [ -113.006379280233716, 44.539137212248164 ], [ -113.054279672685979, 44.605187019455286 ], [ -113.062706186679293, 44.665073496349152 ], [ -113.093270152688973, 44.715335949438384 ], [ -113.140709119342375, 44.76548853924217 ], [ -113.187170302755348, 44.798579360816973 ], [ -113.234268693223882, 44.80987330656032 ], [ -113.320417988502413, 44.802534439092852 ], [ -113.338891499949312, 44.808071548679095 ], [ -113.432137963467312, 44.87416530120035 ], [ -113.460795801474589, 44.903619648027075 ], [ -113.469293726603439, 44.929975850204357 ], [ -113.438136498852387, 44.993971213973708 ], [ -113.447128808765726, 45.029083520000654 ], [ -113.471079004991864, 45.072853052920323 ], [ -113.503582057989561, 45.109283718372552 ], [ -113.557404081527082, 45.140418973466495 ], [ -113.606573394926187, 45.209105499524185 ], [ -113.697111728458069, 45.304983188728499 ], [ -113.721940830967725, 45.379272742343687 ], [ -113.756097326411322, 45.440840127504799 ], [ -113.766149817029174, 45.502517375951328 ], [ -113.799614173774486, 45.540189496529052 ], [ -113.796642371903303, 45.587661422168082 ], [ -113.802272865282148, 45.601097701977494 ], [ -113.812814247520208, 45.606986374077138 ], [ -113.872914957820683, 45.633540330168216 ], [ -113.942650678254324, 45.681506640591749 ], [ -113.977817915923978, 45.692350146864754 ], [ -113.991924361774593, 45.693020312905958 ], [ -114.000707931445604, 45.680627734308217 ], [ -114.006393356467171, 45.658457323306237 ], [ -114.116619190750072, 45.579103072232215 ], [ -114.210233696274315, 45.54244169388059 ], [ -114.256145563260091, 45.505648479586398 ], [ -114.297640926171127, 45.487564982802837 ], [ -114.319190609610374, 45.485730265935956 ], [ -114.350562070768035, 45.497145061293281 ], [ -114.448433778603118, 45.551252729372948 ], [ -114.529232731880654, 45.575719283040655 ], [ -114.537346135510475, 45.587397750283003 ], [ -114.532616521072242, 45.633023972726647 ], [ -114.495795840956703, 45.685846240366658 ], [ -114.533698674433836, 45.782009574113118 ], [ -114.522536564633029, 45.815133354673577 ], [ -114.492565860364735, 45.838731988386286 ], [ -114.405131164646562, 45.874250788569356 ], [ -114.396787048117318, 45.890950007956377 ], [ -114.415903259784045, 45.982158507529448 ], [ -114.464792421805271, 46.016413879929928 ], [ -114.4783056059145, 46.035585023239378 ], [ -114.463578432501151, 46.10976471356912 ], [ -114.485358828839821, 46.158214422448566 ], [ -114.446599061736251, 46.199325263860572 ], [ -114.444247987427815, 46.270714426740113 ], [ -114.412750183491895, 46.343630689287266 ], [ -114.380219664672822, 46.453032548929372 ], [ -114.387042174698706, 46.499955158141205 ], [ -114.345804990508441, 46.550591146400933 ], [ -114.332061093499789, 46.601391929588829 ], [ -114.330122006511743, 46.637646813784329 ], [ -114.336867612237825, 46.659223963044951 ], [ -114.350897153788637, 46.667639490709718 ], [ -114.380917296535372, 46.667639490709718 ], [ -114.518663883821233, 46.64774324971637 ], [ -114.562999212660941, 46.65043490020966 ], [ -114.601550239522169, 46.660333582227906 ], [ -114.624006295066295, 46.677615077027752 ], [ -114.630647530671197, 46.718572109840153 ], [ -114.661623484001282, 46.745543546415888 ], [ -114.678031565681877, 46.750168790732971 ], [ -114.74030207586982, 46.733634366274089 ], [ -114.75368891720079, 46.734568204200343 ], [ -114.760714674304751, 46.74229159316684 ], [ -114.786065627420243, 46.776755705809677 ], [ -114.886936602947856, 46.844870942783075 ], [ -114.935693929026542, 46.922818943803406 ], [ -115.033516198383168, 46.990934180776804 ], [ -115.126636319122923, 47.084592631615209 ], [ -115.306674778139282, 47.231172227050536 ], [ -115.349466527818535, 47.261175890304457 ], [ -115.48599363263601, 47.311636097307485 ], [ -115.593324569347544, 47.384914908696601 ], [ -115.702468250268851, 47.437594354065538 ], [ -115.713317249706151, 47.446745965742764 ], [ -115.714454334710467, 47.45225011634335 ], [ -115.708021839347893, 47.456798456360616 ], [ -115.676886584253936, 47.470564326026363 ], [ -115.669679552729008, 47.4978543661299 ], [ -115.710861805276537, 47.552599241265142 ], [ -115.690866687326292, 47.606651977702086 ], [ -115.718381947164971, 47.681479861415909 ], [ -115.733757313962442, 47.706341922911207 ], [ -115.811243889183942, 47.775951300566589 ], [ -115.862149042493002, 47.842407601929807 ], [ -115.941442868760006, 47.904106823033459 ], [ -116.049010011535245, 48.004719619840273 ], [ -116.048801271292916, 48.251988916382231 ], [ -116.04859802421484, 48.499313144566912 ], [ -116.048389283972512, 48.746637372751564 ], [ -116.048493654093676, 48.993082694652713 ], [ -115.864263910737748, 48.993082694652713 ], [ -115.437884499941404, 48.993082694652713 ], [ -115.011499595980808, 48.993082694652713 ], [ -114.585120185184465, 48.993082694652713 ], [ -114.158735281223869, 48.993082694652713 ], [ -114.062517015834686, 48.993082694652713 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-NC", "NAME_1": "North Carolina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.114820522773741, 35.001476936305934 ], [ -83.41730710657832, 34.998126106099988 ], [ -83.719771717725806, 34.994786262222576 ], [ -84.022225342544743, 34.991457404673724 ], [ -84.324689953692229, 34.988095588139231 ], [ -84.286973887800343, 35.20084584039563 ], [ -84.261101084079002, 35.249581193817235 ], [ -84.2324707118931, 35.260589495018422 ], [ -84.128583989180129, 35.261413469659232 ], [ -84.062281496416517, 35.28601185926945 ], [ -84.00373535160503, 35.414068504779436 ], [ -83.871306147334508, 35.514890041828593 ], [ -83.811705314982788, 35.540290433422541 ], [ -83.722716053775628, 35.559901029873743 ], [ -83.511119366016345, 35.584081938999304 ], [ -83.284240695252237, 35.682058016955537 ], [ -83.120368618688516, 35.774617834939548 ], [ -82.99020259809808, 35.800446693346714 ], [ -82.949476278185116, 35.834526284490494 ], [ -82.920252644257829, 35.878900065480096 ], [ -82.901861530275013, 35.939171063873005 ], [ -82.887722125438756, 35.951728437398899 ], [ -82.812817337425116, 35.947443769266712 ], [ -82.755589552038927, 35.999870529079132 ], [ -82.70008662023416, 36.029841233347426 ], [ -82.644924264614247, 36.046793138290965 ], [ -82.611097359026985, 36.047364427375257 ], [ -82.598100532359325, 36.031599045914476 ], [ -82.58875116676829, 35.986950606711275 ], [ -82.576841986626491, 35.972272871776354 ], [ -82.553408147841935, 35.970987471336699 ], [ -82.521130314579395, 35.981215743211251 ], [ -82.478426455528492, 36.01005485563951 ], [ -82.368244566559767, 36.099549487959706 ], [ -82.294943782513556, 36.133969655288354 ], [ -82.182498709864745, 36.153788991981898 ], [ -82.100617603225601, 36.106525806585211 ], [ -82.051365892362426, 36.122862477130269 ], [ -81.90824699041849, 36.306411068116475 ], [ -81.851151040974827, 36.339699643605087 ], [ -81.80826041433869, 36.352718442929827 ], [ -81.734124669323137, 36.355454038737307 ], [ -81.733322667339408, 36.405914245740348 ], [ -81.707647617531862, 36.481961611922571 ], [ -81.704417636939894, 36.5339928639074 ], [ -81.658890291453162, 36.610578560188287 ], [ -81.641630769310396, 36.595076850612571 ], [ -81.27983998402479, 36.592264350505289 ], [ -80.918049198739197, 36.589451850397992 ], [ -80.556269399782138, 36.586628363962163 ], [ -80.194478614496546, 36.58381586385488 ], [ -79.83268782921094, 36.580992377419037 ], [ -79.470908030253895, 36.578179877311754 ], [ -79.109117244968289, 36.575389349861553 ], [ -78.747337446011244, 36.57257684975427 ], [ -78.385546660725637, 36.569753363318426 ], [ -78.023755875440045, 36.566962835868239 ], [ -77.661976076482986, 36.564150335760942 ], [ -77.300185291197394, 36.56133783565366 ], [ -76.938394505911788, 36.55851434921783 ], [ -76.576614706954743, 36.555701849110534 ], [ -76.214823921669137, 36.552889349003252 ], [ -75.966445005944237, 36.551362249335611 ], [ -75.992768249135892, 36.473798769814309 ], [ -75.978486022028562, 36.429150330611108 ], [ -75.924872738733384, 36.382996764397362 ], [ -75.866579279478415, 36.267860041255247 ], [ -75.820074150751253, 36.112831959169512 ], [ -75.883014826980371, 36.175695731098827 ], [ -75.950185239698982, 36.208973320258892 ], [ -76.054731142124581, 36.23452752045246 ], [ -76.147829290207255, 36.279285822941105 ], [ -76.141061711824079, 36.215103691586492 ], [ -76.150026555916071, 36.145757985816175 ], [ -76.221745308651919, 36.16688469560647 ], [ -76.270579539030422, 36.189912040234887 ], [ -76.227381295195045, 36.116039967104385 ], [ -76.321171581975989, 36.138155446463657 ], [ -76.383683791391888, 36.133530202146588 ], [ -76.424322220676487, 36.067974779723968 ], [ -76.478814410255197, 36.028193284065807 ], [ -76.559355184811963, 36.015350265997753 ], [ -76.678930384685899, 36.075313647191436 ], [ -76.717635220146747, 36.148076101138969 ], [ -76.733631314506951, 36.229155205794399 ], [ -76.740069303033792, 36.133299489247165 ], [ -76.71877779831533, 36.033510667081146 ], [ -76.726215542739681, 35.957595136841448 ], [ -76.611155723897369, 35.943642499590453 ], [ -76.503511676822328, 35.956046064516727 ], [ -76.358327345112116, 35.952892988224576 ], [ -76.263559275090742, 35.967109297360636 ], [ -76.206562202603976, 35.991213302186381 ], [ -76.06977142590145, 35.970306318966962 ], [ -76.060026552482839, 35.878658366252125 ], [ -76.075715029643803, 35.787526770978857 ], [ -76.083570254552839, 35.690539462591587 ], [ -76.045711366389881, 35.691154696990054 ], [ -76.001194763129206, 35.722191075127128 ], [ -75.978925475170328, 35.895950847380533 ], [ -75.853890070009982, 35.960154951392227 ], [ -75.812010185599888, 35.955738447317501 ], [ -75.77221770361318, 35.89987296667077 ], [ -75.758836355446476, 35.843238443025967 ], [ -75.744751882252942, 35.765466223262308 ], [ -75.773920584537507, 35.647000642571342 ], [ -75.965950621159749, 35.50839712165903 ], [ -76.103510440860362, 35.380296530834883 ], [ -76.17384491619967, 35.354149068899929 ], [ -76.275237742333118, 35.369057516734273 ], [ -76.390220656875627, 35.401247459368477 ], [ -76.446646440278087, 35.407762352195121 ], [ -76.489482135271516, 35.397017722878999 ], [ -76.51562959720647, 35.43646962868084 ], [ -76.532482625193111, 35.508430080644658 ], [ -76.577185996039034, 35.532303372570979 ], [ -76.611056846940471, 35.529666653720398 ], [ -76.634128136883078, 35.453212793382036 ], [ -76.741387662459076, 35.431481835521822 ], [ -76.887242160210491, 35.463111475400268 ], [ -77.039996072287579, 35.527392483711765 ], [ -76.974473608850602, 35.458409326783396 ], [ -76.595445274079324, 35.329704487889316 ], [ -76.552785360342597, 35.305622455720666 ], [ -76.512948933041713, 35.270433245393932 ], [ -76.565968954595505, 35.215193985474215 ], [ -76.607519249149277, 35.153000379586089 ], [ -76.613407921248907, 35.104166149207586 ], [ -76.628030724541105, 35.07336048396995 ], [ -76.779136687336589, 34.990347785490769 ], [ -76.861039766632814, 35.004992561440048 ], [ -77.070274393755113, 35.154648328867708 ], [ -76.974957007306543, 35.025174446975555 ], [ -76.898656955567802, 34.970242804255079 ], [ -76.744969205564459, 34.940964238685055 ], [ -76.456753862538662, 34.989337043264712 ], [ -76.362205519088178, 34.936503789296154 ], [ -76.439801957595122, 34.842911256429005 ], [ -76.51687105233195, 34.777256957049502 ], [ -76.618000206580348, 34.769940062239129 ], [ -76.707066372087326, 34.7521422099977 ], [ -76.733191861365185, 34.706999386010011 ], [ -76.796648895035872, 34.704164913245634 ], [ -76.8958664281176, 34.70147326275233 ], [ -77.049499246478234, 34.69736437587683 ], [ -77.133918195011049, 34.707933223936251 ], [ -77.251768541303562, 34.615637077837306 ], [ -77.296230212921515, 34.602947868368886 ], [ -77.358368887166918, 34.620262322154375 ], [ -77.384472403787683, 34.6943651081843 ], [ -77.412267815004256, 34.730795773636515 ], [ -77.412948967373978, 34.592126334752948 ], [ -77.402061515786784, 34.55479479036012 ], [ -77.379792227827906, 34.526625843973051 ], [ -77.517670651056292, 34.451380479774542 ], [ -77.649671388513596, 34.357513288693795 ], [ -77.696956546567392, 34.331959088500227 ], [ -77.750756597447818, 34.284992533974219 ], [ -77.860828623131113, 34.149179540512122 ], [ -77.88805274526338, 34.050148775015643 ], [ -77.927845227250089, 33.939736173147494 ], [ -77.932854993066201, 33.98947128246661 ], [ -77.926043469368864, 34.073165133315527 ], [ -77.953267591501131, 34.168976904548586 ], [ -77.970560072629539, 33.993426360742475 ], [ -78.013340835980244, 33.911808925988396 ], [ -78.405882354860765, 33.9175657621455 ], [ -78.564272253480979, 33.876663660975836 ], [ -78.708237102722805, 33.997820892160121 ], [ -78.843292039515362, 34.111946873076178 ], [ -78.978346976307932, 34.226072853992235 ], [ -79.113379940443409, 34.340231793893935 ], [ -79.248412904578871, 34.454379747467087 ], [ -79.383467841371441, 34.568505728383144 ], [ -79.518522778163998, 34.682642695627749 ], [ -79.653555742299474, 34.796790649200901 ], [ -79.794861900033624, 34.800767700133861 ], [ -79.93617904409632, 34.804744751066821 ], [ -80.077507174487565, 34.808732788328328 ], [ -80.218824318550261, 34.812709839261288 ], [ -80.360130476284411, 34.816686890194248 ], [ -80.501458606675655, 34.820663941127222 ], [ -80.642775750738352, 34.824640992060182 ], [ -80.784081908472501, 34.828629029321689 ], [ -80.789278441873861, 34.907170292083421 ], [ -80.792969848264676, 34.962772100845086 ], [ -80.881695437586785, 35.057913706036956 ], [ -80.933682744257439, 35.113669323398241 ], [ -81.045248910622732, 35.065615122346358 ], [ -81.051170541708004, 35.088972056831111 ], [ -81.046852914590175, 35.131082654140627 ], [ -81.056619760665868, 35.14550770351903 ], [ -81.087315562618073, 35.155714002736488 ], [ -81.24591420148063, 35.161470838893592 ], [ -81.404512840343187, 35.167205702393616 ], [ -81.563100492877197, 35.172940565893626 ], [ -81.721699131739754, 35.17867542939365 ], [ -81.880297770602311, 35.184421279222207 ], [ -82.038885423136335, 35.19015614272223 ], [ -82.197484061998892, 35.19589100622224 ], [ -82.35608270086145, 35.201625869722264 ], [ -82.39253533897076, 35.21093128999911 ], [ -82.463957460835914, 35.177961318038285 ], [ -82.65148310275508, 35.128039441133907 ], [ -82.743966016439273, 35.084061167971896 ], [ -82.777529250141484, 35.086642955179755 ], [ -82.936973836301931, 35.04416980902829 ], [ -83.096550258404918, 35.001641731234102 ], [ -83.114820522773741, 35.001476936305934 ] ] ], [ [ [ -75.889057307679636, 36.550505315709174 ], [ -75.857427667801176, 36.550582220008991 ], [ -75.757880544863127, 36.229232110094202 ], [ -75.558687422030147, 35.879361491278942 ], [ -75.534198895705359, 35.8190795065575 ], [ -75.580495284190178, 35.872000651154409 ], [ -75.728239430451168, 36.103713306477914 ], [ -75.809790947233978, 36.271046076533025 ], [ -75.889057307679636, 36.550505315709174 ] ] ], [ [ [ -75.635690598795705, 35.855894693508759 ], [ -75.65077482788675, 35.835591958359274 ], [ -75.717176197607259, 35.946125409841414 ], [ -75.64886320672008, 35.910386883087469 ], [ -75.636668382036135, 35.880657878047145 ], [ -75.635690598795705, 35.855894693508759 ] ] ], [ [ [ -75.544119550380671, 35.240099992283689 ], [ -75.678273608232615, 35.212842911165779 ], [ -75.690105884074612, 35.221566056029801 ], [ -75.536363202428547, 35.278618060159275 ], [ -75.487891520891992, 35.479514063916611 ], [ -75.481277751108451, 35.572117827214782 ], [ -75.504327068393962, 35.735385655708583 ], [ -75.503525066410248, 35.769157629653137 ], [ -75.478487223658249, 35.716478184284199 ], [ -75.456470621255889, 35.564163725348862 ], [ -75.464743326649582, 35.44864248070769 ], [ -75.509336834210075, 35.280331927412163 ], [ -75.544119550380671, 35.240099992283689 ] ] ], [ [ [ -75.781962577031791, 35.190200088036406 ], [ -75.96367645115113, 35.118843884142507 ], [ -75.984198912871491, 35.123073620631985 ], [ -75.864920343868249, 35.174127089376384 ], [ -75.781962577031791, 35.190200088036406 ] ] ], [ [ [ -76.503643512764853, 34.642949090597938 ], [ -76.528582478559954, 34.631501336254985 ], [ -76.437033402802015, 34.756328001172989 ], [ -76.256220407623289, 34.914717899793217 ], [ -76.207386177244786, 34.938898808918765 ], [ -76.357712110713649, 34.803668090869508 ], [ -76.503643512764853, 34.642949090597938 ] ] ], [ [ [ -76.546226522201778, 34.654858270739737 ], [ -76.568495810160655, 34.65256212807401 ], [ -76.607793907362876, 34.663570429275197 ], [ -76.661956507085264, 34.684653193751316 ], [ -76.673920618869786, 34.700154903327032 ], [ -76.622273888384001, 34.694551875769548 ], [ -76.546226522201778, 34.654858270739737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-ND", "NAME_1": "North Dakota" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.367270559869766, 48.993137626295436 ], [ -100.94088565590917, 48.993137626295436 ], [ -100.514506245112827, 48.993137626295436 ], [ -100.088121341152231, 48.993137626295436 ], [ -99.661741930355888, 48.993137626295436 ], [ -99.235357026395292, 48.993137626295436 ], [ -98.808977615598948, 48.993159598952531 ], [ -98.382592711638353, 48.993181571609597 ], [ -97.956213300842009, 48.993181571609597 ], [ -97.529828396881413, 48.993181571609597 ], [ -97.225737809109404, 48.993181571609597 ], [ -97.128047375695303, 48.681114909314573 ], [ -97.129129529056897, 48.593367103232907 ], [ -97.143961072591424, 48.536754552245185 ], [ -97.131019177566486, 48.437427155877998 ], [ -97.136803479544952, 48.371212553742737 ], [ -97.121609387168462, 48.286046534868916 ], [ -97.12592701428629, 48.173392721977763 ], [ -97.078515513454249, 48.043369523658413 ], [ -97.007433967773949, 47.925607067994235 ], [ -97.009032478577126, 47.891549449507551 ], [ -96.988004645743729, 47.820336067884739 ], [ -96.946349981068792, 47.761526251188201 ], [ -96.858706545108262, 47.588337768019073 ], [ -96.862947267926288, 47.423927361356675 ], [ -96.847516969486108, 47.373335318411137 ], [ -96.825324585827033, 47.018861427935889 ], [ -96.818298828723087, 46.974136084432899 ], [ -96.770134764385773, 46.91966586751127 ], [ -96.792821532829322, 46.839026215997592 ], [ -96.795996581778567, 46.797091399944804 ], [ -96.786647216187546, 46.64821566184375 ], [ -96.758198118422612, 46.590339683073466 ], [ -96.730858639840633, 46.472774981323113 ], [ -96.617430290787127, 46.327096264828413 ], [ -96.598566764676903, 46.271857004908696 ], [ -96.59190355641492, 46.227538155561803 ], [ -96.560845205620765, 46.138241277155402 ], [ -96.570480215753932, 46.019237366365758 ], [ -96.556401235724678, 45.942772519698877 ], [ -96.789355346173664, 45.942772519698877 ], [ -97.022314949786931, 45.942805478684505 ], [ -97.255274553400199, 45.942827451341572 ], [ -97.488228663849199, 45.942827451341572 ], [ -97.721188267462452, 45.942827451341572 ], [ -97.954142377911452, 45.942827451341572 ], [ -98.187101981524719, 45.942827451341572 ], [ -98.420061585137987, 45.942860410327228 ], [ -98.653015695586973, 45.942882382984294 ], [ -98.88597529920024, 45.942882382984294 ], [ -99.11892940964924, 45.942882382984294 ], [ -99.351889013262507, 45.942882382984294 ], [ -99.584848616875774, 45.942882382984294 ], [ -99.817802727324761, 45.942904355641389 ], [ -100.050762330938028, 45.942937314627017 ], [ -100.28374390720839, 45.942937314627017 ], [ -100.516725483478737, 45.942937314627017 ], [ -100.749685087092004, 45.942937314627017 ], [ -100.982644690705271, 45.942937314627017 ], [ -101.215598801154272, 45.942959287284111 ], [ -101.448558404767539, 45.942981259941206 ], [ -101.681512515216525, 45.942981259941206 ], [ -101.914472118829792, 45.942981259941206 ], [ -102.147426229278793, 45.942981259941206 ], [ -102.38038583289206, 45.942981259941206 ], [ -102.613345436505313, 45.943014218926834 ], [ -102.846299546954313, 45.943036191583928 ], [ -103.07925915056758, 45.943036191583928 ], [ -103.312213261016581, 45.943036191583928 ], [ -103.545172864629833, 45.943036191583928 ], [ -103.778132468243101, 45.943036191583928 ], [ -104.011086578692101, 45.943058164241023 ], [ -104.012481842417202, 46.133725896123792 ], [ -104.013877106142303, 46.324404614335094 ], [ -104.015272369867404, 46.515094318874958 ], [ -104.016640167771143, 46.705784023414822 ], [ -104.01801345883915, 46.896462741626124 ], [ -104.019408722564251, 47.087152446165987 ], [ -104.020803986289351, 47.277842150705851 ], [ -104.022199250014452, 47.468520868917182 ], [ -104.023594513739553, 47.659210573457017 ], [ -104.024962311643293, 47.849900277996881 ], [ -104.026330109547033, 48.040578996208211 ], [ -104.027725373272133, 48.231268700748075 ], [ -104.029120636997234, 48.421958405287938 ], [ -104.030515900722335, 48.61263712349924 ], [ -104.031911164447436, 48.803326828039104 ], [ -104.03392715573527, 48.993137626295436 ], [ -103.925563504140598, 48.993137626295436 ], [ -103.499178600179988, 48.993137626295436 ], [ -103.072799189383645, 48.993137626295436 ], [ -102.646414285423049, 48.993137626295436 ], [ -102.220034874626705, 48.993137626295436 ], [ -101.79364997066611, 48.993137626295436 ], [ -101.367270559869766, 48.993137626295436 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-NE", "NAME_1": "Nebraska" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.024489212870364, 40.001124343824216 ], [ -102.024544144513087, 40.12608284468476 ], [ -102.02462104881289, 40.251008386559676 ], [ -102.024697953112707, 40.375933928434563 ], [ -102.024747391591148, 40.500892429295106 ], [ -102.024802323233871, 40.625817971170022 ], [ -102.024879227533674, 40.750743513044938 ], [ -102.024956131833491, 40.87569102757692 ], [ -102.025005570311933, 41.000627555780369 ], [ -102.274603968505232, 41.000649528437464 ], [ -102.524174900877171, 41.000704460080186 ], [ -102.773745833249109, 41.000726432737281 ], [ -103.023344231442408, 41.000748405394347 ], [ -103.272915163814346, 41.000781364379975 ], [ -103.522486096186284, 41.00080333703707 ], [ -103.772084494379584, 41.000836296022698 ], [ -104.021655426751522, 41.000858268679792 ], [ -104.022561798856401, 41.250918092671952 ], [ -104.023440705139933, 41.500977916664084 ], [ -104.024341584080545, 41.751048726984777 ], [ -104.025247956185439, 42.001130523634032 ], [ -104.026148835126051, 42.25122330661182 ], [ -104.027055207230944, 42.501283130603952 ], [ -104.027961579335823, 42.751342954596112 ], [ -104.02886245827645, 43.001402778588272 ], [ -103.682738177494727, 43.001402778588272 ], [ -103.336630376205832, 43.001380805931177 ], [ -102.99052806808119, 43.001358833274082 ], [ -102.6443982941352, 43.001358833274082 ], [ -102.298274013353492, 43.001358833274082 ], [ -101.952171705228849, 43.001325874288455 ], [ -101.606063903939955, 43.00130390163136 ], [ -101.259939623158232, 43.00130390163136 ], [ -100.913809849212242, 43.00130390163136 ], [ -100.567707541087614, 43.001281928974265 ], [ -100.221605232962986, 43.001248969988637 ], [ -99.875475459016997, 43.001248969988637 ], [ -99.529373150892368, 43.001248969988637 ], [ -99.183270842767726, 43.001248969988637 ], [ -98.837141068821737, 43.001248969988637 ], [ -98.441765077176839, 43.001095161389031 ], [ -98.143283010126595, 42.852263368602166 ], [ -97.964947432034563, 42.805868103160464 ], [ -97.880918498165059, 42.84958270443741 ], [ -97.69813895017694, 42.874642519846503 ], [ -97.416658226548691, 42.881003604073527 ], [ -97.238789567419786, 42.860536073995888 ], [ -97.164478041147518, 42.813195984299369 ], [ -97.019733162579072, 42.760175962745564 ], [ -96.804527465893059, 42.701421077691748 ], [ -96.675542475621114, 42.637601495179098 ], [ -96.632778191763222, 42.568673269893452 ], [ -96.557950308049385, 42.524793873688338 ], [ -96.480952624448094, 42.511258716921986 ], [ -96.451003892836894, 42.505985279220823 ], [ -96.383751082654214, 42.417776047340283 ], [ -96.356103986872995, 42.260133219061061 ], [ -96.295333110531345, 42.132911534520446 ], [ -96.201383521986514, 42.036121980046971 ], [ -96.154202734053897, 41.965293119923189 ], [ -96.153763280912131, 41.92043594047766 ], [ -96.131230321068188, 41.872436671068499 ], [ -96.08663681350771, 41.821372215995552 ], [ -96.068806002280638, 41.734327534940689 ], [ -96.077770846372616, 41.611280655246816 ], [ -96.058627168884541, 41.545780164466919 ], [ -96.011396942473468, 41.537880994243721 ], [ -95.990956878217176, 41.520489636158402 ], [ -95.997367400922656, 41.493639049196645 ], [ -95.981580046804794, 41.473797739845992 ], [ -95.94356735004223, 41.460932749120872 ], [ -95.932976529325714, 41.425457894251991 ], [ -95.949719694026925, 41.367428106882073 ], [ -95.9360252354967, 41.330986455101311 ], [ -95.891942592213525, 41.316165897895331 ], [ -95.883625941505642, 41.28755749836651 ], [ -95.911168667165697, 41.245183229171914 ], [ -95.906905971690577, 41.211949585326039 ], [ -95.870887293558766, 41.1878236078432 ], [ -95.846596521147774, 41.080333369367793 ], [ -95.834017174964785, 40.889489856228295 ], [ -95.838148034497365, 40.777747908606301 ], [ -95.859000086074047, 40.745107526501812 ], [ -95.82610701841304, 40.676179301216138 ], [ -95.765028524872136, 40.601867774943884 ], [ -95.739551228978385, 40.570853369463919 ], [ -95.684696490557712, 40.466362398681014 ], [ -95.661570268972397, 40.362761320510202 ], [ -95.607105545215035, 40.295470058177614 ], [ -95.521219921821583, 40.264576502311627 ], [ -95.463651560250511, 40.198065269305687 ], [ -95.434296090380698, 40.095980304473954 ], [ -95.362467474359406, 40.010319900815631 ], [ -95.34668012024153, 40.001486892666179 ], [ -95.526905346843151, 40.001124343824216 ], [ -95.736502522807399, 40.001124343824216 ], [ -95.946099698771647, 40.001124343824216 ], [ -96.155702367900162, 40.001124343824216 ], [ -96.36529954386441, 40.001124343824216 ], [ -96.574902212992924, 40.001124343824216 ], [ -96.784499388957173, 40.001124343824216 ], [ -96.994102058085701, 40.001124343824216 ], [ -97.203699234049949, 40.001124343824216 ], [ -97.413296410014198, 40.001124343824216 ], [ -97.622899079142712, 40.001124343824216 ], [ -97.83249625510696, 40.001124343824216 ], [ -98.042098924235475, 40.001124343824216 ], [ -98.251696100199723, 40.001124343824216 ], [ -98.461298769328252, 40.001124343824216 ], [ -98.6708959452925, 40.001124343824216 ], [ -98.880498614421015, 40.001124343824216 ], [ -99.090095790385263, 40.001124343824216 ], [ -99.299692966349511, 40.001124343824216 ], [ -99.509295635478026, 40.001124343824216 ], [ -99.718892811442274, 40.001124343824216 ], [ -99.928495480570803, 40.001124343824216 ], [ -100.138092656535051, 40.001124343824216 ], [ -100.347695325663565, 40.001124343824216 ], [ -100.557292501627813, 40.001124343824216 ], [ -100.766895170756328, 40.001124343824216 ], [ -100.976492346720576, 40.001124343824216 ], [ -101.186089522684824, 40.001124343824216 ], [ -101.395692191813353, 40.001124343824216 ], [ -101.605289367777601, 40.001124343824216 ], [ -101.814892036906116, 40.001124343824216 ], [ -102.024489212870364, 40.001124343824216 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-NH", "NAME_1": "New Hampshire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.517520275684348, 45.007561302382754 ], [ -71.419016853957999, 45.200338409345989 ], [ -71.327291996943345, 45.290107699879798 ], [ -71.201619384727437, 45.260334749525299 ], [ -71.134646725922636, 45.26281765977626 ], [ -71.084549067761557, 45.294007846512955 ], [ -71.077331049908096, 45.19486721773103 ], [ -71.069684565241403, 45.08401516272113 ], [ -71.062038080574709, 44.973174094039734 ], [ -71.054369623250935, 44.862322039029834 ], [ -71.046690179598613, 44.751480970348439 ], [ -71.03904369493192, 44.640639901667072 ], [ -71.031397210265226, 44.529787846657143 ], [ -71.023717766612904, 44.418946777975776 ], [ -71.01604930928913, 44.308094722965848 ], [ -71.008402824622436, 44.197253654284481 ], [ -71.000756339955743, 44.086401599274552 ], [ -70.993076896303421, 43.975560530593185 ], [ -70.985408438979647, 43.864708475583257 ], [ -70.977750967984406, 43.75386740690189 ], [ -70.970104483317726, 43.643026338220523 ], [ -70.962436025993938, 43.532152310553499 ], [ -70.967544668766948, 43.458148401480486 ], [ -70.955635488625148, 43.389395957451541 ], [ -70.919699207957407, 43.328103230504013 ], [ -70.829029038483, 43.239070023982663 ], [ -70.812835190209, 43.163648878527454 ], [ -70.733096417635963, 43.070034373003239 ], [ -70.777634993553718, 42.940582463768152 ], [ -70.806111557140014, 42.876762881255502 ], [ -70.923489491305119, 42.881563906829285 ], [ -70.974081534250686, 42.871676211139601 ], [ -71.076177485410966, 42.825083191784074 ], [ -71.139293942896785, 42.808131286840535 ], [ -71.242334718311852, 42.729535092436095 ], [ -71.329621098594686, 42.702486751560514 ], [ -71.471784189955287, 42.705969417708985 ], [ -71.613947281315873, 42.70943011120039 ], [ -71.75611037267646, 42.712923763677423 ], [ -71.898240505051433, 42.716406429825895 ], [ -72.040381623754925, 42.719878109645833 ], [ -72.182544715115526, 42.723360775794305 ], [ -72.324696820147565, 42.726854428271338 ], [ -72.466859911508166, 42.730315121762715 ], [ -72.483658007852085, 42.766174498130653 ], [ -72.539622365455699, 42.82963153180134 ], [ -72.552805959708621, 42.856449159777469 ], [ -72.549806692016077, 42.886683535930814 ], [ -72.519418507263111, 42.966674994060384 ], [ -72.496479053263045, 42.991668891498193 ], [ -72.473715380519678, 43.038536569067304 ], [ -72.438185594008075, 43.224644974604274 ], [ -72.407072311571198, 43.332036336122798 ], [ -72.384956832211927, 43.529229947160758 ], [ -72.362368940725275, 43.586644500132223 ], [ -72.337671674158145, 43.621987519058564 ], [ -72.296692668688664, 43.714953831198699 ], [ -72.22238114241641, 43.790869361438411 ], [ -72.173854529237147, 43.884088359135035 ], [ -72.114923862926616, 43.965431135675516 ], [ -72.106211704391143, 44.013078842571275 ], [ -72.062233431229131, 44.116350330885751 ], [ -72.031208039420605, 44.300733882841314 ], [ -72.001775665250975, 44.329496090969741 ], [ -71.867676539041753, 44.354918455220798 ], [ -71.825511010089514, 44.374089598530247 ], [ -71.683007342544059, 44.450279786983543 ], [ -71.638205094741238, 44.481678713962566 ], [ -71.609289078013177, 44.514055424182004 ], [ -71.587799819380933, 44.565262701526024 ], [ -71.571496107821488, 44.579193366119938 ], [ -71.568441908486236, 44.60763697072062 ], [ -71.618286881090796, 44.727761487021752 ], [ -71.620659928056313, 44.771893568783383 ], [ -71.510225353531069, 44.908343769301041 ], [ -71.533483411058924, 44.987972678588648 ], [ -71.517520275684348, 45.007561302382754 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-NJ", "NAME_1": "New Jersey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.074168360578454, 39.983480300182407 ], [ -75.023532372318726, 40.017450028040741 ], [ -74.909296528117224, 40.079544756971984 ], [ -74.734888562479711, 40.154504476628347 ], [ -74.97637905020747, 40.405827728403068 ], [ -75.034046288735425, 40.420373627395435 ], [ -75.097448390763404, 40.543134862547163 ], [ -75.170518461910177, 40.576796973206257 ], [ -75.189019439178423, 40.5958143079161 ], [ -75.192282378756033, 40.689868266582096 ], [ -75.185690581629572, 40.743822126062156 ], [ -75.174737212071108, 40.775517683911858 ], [ -75.111796535841989, 40.802104598988564 ], [ -75.075563624303555, 40.856267198710952 ], [ -75.074926417248008, 40.884458117755116 ], [ -75.122749905400454, 40.97176647069503 ], [ -75.1230355499426, 40.999001579155845 ], [ -75.031541405827369, 41.051779901481666 ], [ -74.912295795809754, 41.155271116367061 ], [ -74.841390031386169, 41.268595095299389 ], [ -74.812485000986655, 41.301510135617491 ], [ -74.777779189115861, 41.3250758103446 ], [ -74.699051158768867, 41.357298711964432 ], [ -74.600064338586577, 41.311584598892438 ], [ -74.501055545747192, 41.265903444806099 ], [ -74.402046752907808, 41.220222290719732 ], [ -74.303059932725503, 41.174541136633394 ], [ -74.204073112543213, 41.128859982547056 ], [ -74.105053333375281, 41.083178828460689 ], [ -74.006044540535896, 41.03749767437435 ], [ -73.910078960703217, 40.992255973429764 ], [ -73.927217633232004, 40.914242054438148 ], [ -74.025501328387492, 40.756379499588036 ], [ -74.067337267483396, 40.719630230608061 ], [ -74.116248402161716, 40.687286479374222 ], [ -74.153140493412778, 40.673256937823425 ], [ -74.187143180256754, 40.647988382172002 ], [ -74.22670494934404, 40.608009132600046 ], [ -74.264190302336502, 40.528632908868957 ], [ -74.241514520221486, 40.456265962749001 ], [ -74.049836046112659, 40.429832856271901 ], [ -73.998452987511925, 40.452157075873515 ], [ -73.972250593934262, 40.400323577802453 ], [ -73.957594831656436, 40.328363125838649 ], [ -73.971986922049197, 40.250514001775173 ], [ -74.004001083426687, 40.171346518286441 ], [ -74.028346787480402, 40.073007891488231 ], [ -74.048913194514952, 39.92306647951844 ], [ -74.079916613666384, 39.788110419682766 ], [ -74.084003527884789, 39.829089425152233 ], [ -74.064590685347383, 39.993115310315574 ], [ -74.095989612326406, 39.975987624115334 ], [ -74.117643665886817, 39.938128735952375 ], [ -74.176134879055581, 39.726597966164377 ], [ -74.256576776655436, 39.613856262644873 ], [ -74.330602658385558, 39.535886288967419 ], [ -74.407023559738278, 39.54880621133529 ], [ -74.389873900880943, 39.486843318346587 ], [ -74.410857788400165, 39.454543512426937 ], [ -74.428831421898309, 39.387186332123093 ], [ -74.474358767385041, 39.342559865576987 ], [ -74.517172489721375, 39.346844533709174 ], [ -74.578695929568312, 39.316104786442793 ], [ -74.602986701979304, 39.292561084372807 ], [ -74.604799446189077, 39.247528123670548 ], [ -74.645932260258178, 39.207867477626365 ], [ -74.794478408502883, 39.001906776410209 ], [ -74.923435932953467, 38.94114139323284 ], [ -74.954307516162388, 38.949952428725197 ], [ -74.920326801975492, 39.047181436340452 ], [ -74.897024799133462, 39.145465131495911 ], [ -74.975291403681609, 39.188256881175164 ], [ -75.05021816435233, 39.210833786333268 ], [ -75.136109280910063, 39.207867477626365 ], [ -75.231031159531057, 39.284266406322018 ], [ -75.353429845840807, 39.339824269769508 ], [ -75.524245282044404, 39.490172175895452 ], [ -75.519257488885387, 39.531876279048817 ], [ -75.523553143346135, 39.601848205546162 ], [ -75.471609781989642, 39.712381657028317 ], [ -75.421907631656154, 39.789714423650196 ], [ -75.353177160284304, 39.829737618536342 ], [ -75.153830228851689, 39.870485911106385 ], [ -75.103831447647522, 39.931822583368074 ], [ -75.074168360578454, 39.983480300182407 ] ] ], [ [ [ -74.133222279762336, 39.680784976135499 ], [ -74.250501336970558, 39.529371396140789 ], [ -74.25316002847822, 39.558485166782617 ], [ -74.106767200628155, 39.746439275515002 ], [ -74.133222279762336, 39.680784976135499 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-NM", "NAME_1": "New Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.04780735188244, 31.327879384059941 ], [ -109.047422830383397, 31.683232180818692 ], [ -109.047367898740674, 32.037739030279553 ], [ -109.047318460262218, 32.392234893411882 ], [ -109.04726352861951, 32.746763715529823 ], [ -109.047214090141054, 33.10129253764778 ], [ -109.047164651662612, 33.455788400780094 ], [ -109.04710972001989, 33.810284263912422 ], [ -109.047060281541434, 34.164791113373283 ], [ -109.047005349898711, 34.519286976505597 ], [ -109.04695591142027, 34.873793825966459 ], [ -109.046906472941828, 35.228289689098787 ], [ -109.046851541299105, 35.582818511216729 ], [ -109.046802102820649, 35.937336347006138 ], [ -109.046747171177927, 36.291843196466999 ], [ -109.046697732699485, 36.646339059599327 ], [ -109.046670266878124, 37.000845909060189 ], [ -108.668790003439696, 37.000845909060189 ], [ -108.290931712658363, 37.000845909060189 ], [ -107.91307342187703, 37.000845909060189 ], [ -107.535215131095683, 37.000845909060189 ], [ -107.15735684031435, 37.000845909060189 ], [ -106.779498549533017, 37.000845909060189 ], [ -106.401640258751669, 37.000845909060189 ], [ -106.023754502148975, 37.000845909060189 ], [ -105.645874238710547, 37.000845909060189 ], [ -105.268015947929214, 37.000845909060189 ], [ -104.890157657147881, 37.000845909060189 ], [ -104.512299366366534, 37.000845909060189 ], [ -104.134441075585201, 37.000845909060189 ], [ -103.756582784803868, 37.000845909060189 ], [ -103.378724494022521, 37.000845909060189 ], [ -103.000838737419826, 37.000845909060189 ], [ -103.000712394641567, 36.875942339842368 ], [ -103.000553092877681, 36.751038770624547 ], [ -103.000426750099422, 36.626135201406726 ], [ -103.000294914156896, 36.501231632188905 ], [ -103.042152825909895, 36.500616397790438 ], [ -103.043624993934813, 36.219498223004138 ], [ -103.045102655123983, 35.938380048217823 ], [ -103.04654735732754, 35.657250887102975 ], [ -103.048019525352444, 35.376132712316675 ], [ -103.049491693377348, 35.095014537530361 ], [ -103.050941888745172, 34.81389636274406 ], [ -103.05241405677009, 34.532778187957746 ], [ -103.053886224794994, 34.251681985828526 ], [ -103.055358392819898, 33.970585783699306 ], [ -103.056830560844816, 33.689467608913006 ], [ -103.05830272886972, 33.408349434126691 ], [ -103.059774896894623, 33.127231259340391 ], [ -103.061247064919542, 32.846113084554077 ], [ -103.062719232944445, 32.564983923439229 ], [ -103.064169428312269, 32.283865748652914 ], [ -103.065641596337173, 32.002747573866614 ], [ -103.290405398856549, 32.002648696909716 ], [ -103.515202160361554, 32.002571792609913 ], [ -103.739993428702277, 32.002494888310096 ], [ -103.964784697043015, 32.002385025024651 ], [ -104.189575965383739, 32.002286148067768 ], [ -104.414372726888743, 32.00220924376795 ], [ -104.639163995229481, 32.002132339468147 ], [ -104.863927797748843, 32.002022476182702 ], [ -105.088697093432486, 32.001923599225805 ], [ -105.313488361773224, 32.001846694926002 ], [ -105.538279630113948, 32.001769790626184 ], [ -105.763076391618952, 32.001659927340754 ], [ -105.98786765995969, 32.001561050383856 ], [ -106.212658928300414, 32.001484146084039 ], [ -106.437450196641151, 32.001407241784236 ], [ -106.662219492324795, 32.001297378498791 ], [ -106.668261973024045, 32.000945815985375 ], [ -106.566281378313491, 31.819528572736743 ], [ -106.566358282613294, 31.819528572736743 ], [ -106.445382325849991, 31.768398199692513 ], [ -106.453210084937652, 31.770177984916657 ], [ -106.673046519105, 31.771342535742335 ], [ -106.892877460108068, 31.772474127582385 ], [ -107.112708401111149, 31.773616705750968 ], [ -107.332539342114217, 31.774748297591003 ], [ -107.552370283117284, 31.775890875759586 ], [ -107.772201224120366, 31.777022467599636 ], [ -107.992032165123433, 31.778165045768219 ], [ -108.21184113346942, 31.779329596593897 ], [ -108.212483833689248, 31.666851564959444 ], [ -108.213153999730437, 31.554384519653539 ], [ -108.213802193114546, 31.4419064880191 ], [ -108.21445038649864, 31.329428456384647 ], [ -108.567891562090722, 31.328780263000553 ], [ -108.921332737682818, 31.328110096959364 ], [ -109.04780735188244, 31.327879384059941 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-NV", "NAME_1": "Nevada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.040269700532889, 37.00415279395196 ], [ -114.041170579473501, 36.612490181354957 ], [ -114.042878953562109, 36.181771170783719 ], [ -114.0619237540933, 36.175212332642886 ], [ -114.119437184021635, 36.076664965602347 ], [ -114.183207328055843, 36.030302659146273 ], [ -114.232145928555511, 36.031697922871373 ], [ -114.2815734206754, 36.060328295057289 ], [ -114.331544736058206, 36.116292652660903 ], [ -114.406086975229897, 36.148306814038392 ], [ -114.505277042490263, 36.15642571083248 ], [ -114.592975410093501, 36.1475597436974 ], [ -114.669143625889717, 36.121719898961686 ], [ -114.71575861790231, 36.08498161631023 ], [ -114.74136225657432, 36.013515549130901 ], [ -114.732320508182525, 35.983665694476585 ], [ -114.687100779895033, 35.917341229055879 ], [ -114.683689524882098, 35.813597328613994 ], [ -114.677075755098542, 35.72980460080818 ], [ -114.650126291179888, 35.68350821232336 ], [ -114.645165963842217, 35.630543122412277 ], [ -114.662062937143048, 35.545355130881362 ], [ -114.64852778037671, 35.47592153448268 ], [ -114.590986884627014, 35.352775777831923 ], [ -114.610520576778413, 34.997609748658419 ], [ -114.610542549435507, 34.991116828488856 ], [ -114.882179522688261, 35.202812393205022 ], [ -115.136095547999389, 35.400961814826317 ], [ -115.39000608014625, 35.599122222776174 ], [ -115.643916612293097, 35.797293617054564 ], [ -115.897827144439958, 35.995475997661487 ], [ -116.151743169751086, 36.193625419282796 ], [ -116.405681167719308, 36.391785827232638 ], [ -116.659591699866155, 36.589968207839561 ], [ -116.842915071117204, 36.727758740439612 ], [ -117.026260415025334, 36.865549273039647 ], [ -117.209611252097744, 37.003372764625325 ], [ -117.392934623348779, 37.141174283553909 ], [ -117.576252501435562, 37.278964816153959 ], [ -117.759603338507958, 37.416788307739623 ], [ -117.942948682416088, 37.554578840339673 ], [ -118.126272053667122, 37.692380359268256 ], [ -118.360495085062979, 37.855856928004386 ], [ -118.594718116458807, 38.019333496740529 ], [ -118.828941147854636, 38.182843024462301 ], [ -119.063164179250478, 38.346319593198444 ], [ -119.29738721064632, 38.50979616193456 ], [ -119.531615735206429, 38.673294703327798 ], [ -119.765838766602258, 38.836782258392475 ], [ -120.0000617979981, 39.000258827128619 ], [ -120.000083770655181, 39.187784469047756 ], [ -120.000138702297903, 39.375299124638389 ], [ -120.000188140776359, 39.56280279390046 ], [ -120.000243072419082, 39.750339422148159 ], [ -120.000292510897523, 39.937876050395857 ], [ -120.000341949375979, 40.125379719657928 ], [ -120.000396881018702, 40.31288338892 ], [ -120.000446319497144, 40.500420017167727 ], [ -120.000501251139866, 40.687956645415426 ], [ -120.000550689618308, 40.875460314677497 ], [ -120.000600128096764, 41.062974970268101 ], [ -120.000627593918125, 41.250500612187267 ], [ -120.000655059739472, 41.438015267777899 ], [ -120.000704498217928, 41.625518937039971 ], [ -120.000759429860651, 41.813055565287669 ], [ -120.000808868339107, 42.00055923454974 ], [ -119.627806534774251, 42.00055923454974 ], [ -119.254782228552315, 42.00055923454974 ], [ -118.88175792233038, 42.00055923454974 ], [ -118.508755588765524, 42.00055923454974 ], [ -118.135731282543588, 42.00055923454974 ], [ -117.7627014831574, 42.00055923454974 ], [ -117.389704642756811, 42.00055923454974 ], [ -117.016674843370609, 42.00055923454974 ], [ -116.644913964931249, 42.000636138849558 ], [ -116.273153086491874, 42.000691070492252 ], [ -115.90139770121678, 42.000767974792069 ], [ -115.52963682277742, 42.000844879091886 ], [ -115.157875944338059, 42.000899810734609 ], [ -114.786115065898699, 42.000976715034426 ], [ -114.414354187459324, 42.001053619334215 ], [ -114.042593309019963, 42.001108550976937 ], [ -114.04251640472016, 41.844937890722633 ], [ -114.042466966241705, 41.688800189453957 ], [ -114.042390061941902, 41.532662488185281 ], [ -114.042307664477818, 41.376491827930948 ], [ -114.042230760178015, 41.220321167676644 ], [ -114.042153855878198, 41.064183466407968 ], [ -114.042076951578395, 40.908045765139292 ], [ -114.042000047278577, 40.751875104884959 ], [ -114.041923142978774, 40.595715430959189 ], [ -114.041846238678971, 40.439577729690512 ], [ -114.041791307036249, 40.283429042093303 ], [ -114.041714402736432, 40.127269368167532 ], [ -114.041637498436629, 39.9710987079132 ], [ -114.041588059958173, 39.814939033987429 ], [ -114.04151115565837, 39.658768373733125 ], [ -114.041428758194286, 39.502630672464448 ], [ -114.041351853894483, 39.346492971195772 ], [ -114.041274949594666, 39.190322310941468 ], [ -114.041225511116224, 39.034151650687136 ], [ -114.041148606816421, 38.877991976761365 ], [ -114.041071702516604, 38.721821316507061 ], [ -114.041016770873881, 38.565683615238385 ], [ -114.040939866574078, 38.409545913969708 ], [ -114.040862962274275, 38.253375253715376 ], [ -114.040786057974458, 38.097204593461072 ], [ -114.040709153674655, 37.941066892192396 ], [ -114.040632249374838, 37.784929190923705 ], [ -114.040555345075035, 37.628758530669401 ], [ -114.040472947610951, 37.47259885674363 ], [ -114.040396043311148, 37.316461155474954 ], [ -114.040346604832692, 37.160312467877731 ], [ -114.040269700532889, 37.00415279395196 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-NY", "NAME_1": "New York" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -79.762023764015325, 42.538977223838742 ], [ -79.446232736343859, 42.651455255473195 ], [ -79.173738829464668, 42.748530454488815 ], [ -79.036695367205624, 42.802319519040708 ], [ -78.939235646690946, 42.863744081930747 ], [ -78.915076710222479, 42.90913959147494 ], [ -78.920866505365225, 42.935210149110077 ], [ -78.946003225074108, 42.961302679402309 ], [ -78.980752982259091, 42.980605658654298 ], [ -79.01167949711072, 42.997041206156268 ], [ -79.026181450788926, 43.017321968648645 ], [ -79.029070855196011, 43.061761667609517 ], [ -79.048011285606037, 43.08729389514599 ], [ -79.066050837075437, 43.106102489613477 ], [ -79.059228327049553, 43.278060503985671 ], [ -79.083046687333152, 43.331410115395784 ], [ -79.171849180955078, 43.466574915473785 ], [ -79.002483940119305, 43.527164517394482 ], [ -78.845566209523994, 43.583337615240453 ], [ -78.72043192740675, 43.624931855108372 ], [ -78.458254183030462, 43.631501679577752 ], [ -78.214786156164777, 43.63066671860841 ], [ -77.879241709771009, 43.629557099425455 ], [ -77.596519531017265, 43.628601288842106 ], [ -77.266720934452081, 43.62749166965915 ], [ -77.073350565747461, 43.62684347627507 ], [ -76.81996188420645, 43.628788056427368 ], [ -76.696497524027905, 43.784793921753504 ], [ -76.586117881145384, 43.924298321606443 ], [ -76.464609087447684, 44.057595445831936 ], [ -76.248540963970967, 44.214128654928203 ], [ -76.185787055327097, 44.242231683344016 ], [ -76.151158147756107, 44.303941890776173 ], [ -76.02023407049613, 44.3626198715302 ], [ -75.875928645069436, 44.416980225166384 ], [ -75.819316094081714, 44.468011721253703 ], [ -75.791960136006921, 44.497048587595742 ], [ -75.401253333993267, 44.772278090282413 ], [ -75.179384429045257, 44.899378925209049 ], [ -74.996143455258292, 44.970119894704482 ], [ -74.856639055405381, 45.003924827634677 ], [ -74.762464247125394, 44.999057884089638 ], [ -74.708872936487296, 45.003869895991954 ], [ -74.663235727715119, 45.003924827634677 ], [ -74.430391480551563, 45.004177513191195 ], [ -74.014262314286881, 45.004693870632764 ], [ -73.598133148022185, 45.00515529643161 ], [ -73.352182210905525, 45.005418968316661 ], [ -73.345052083680415, 44.938863789996532 ], [ -73.365805258300199, 44.860366472548975 ], [ -73.348567708814514, 44.775299330632038 ], [ -73.372078451898886, 44.59733179454625 ], [ -73.309753010068235, 44.459640138903097 ], [ -73.324639485245484, 44.367860350245735 ], [ -73.320915119869028, 44.268873530063445 ], [ -73.331824544113317, 44.244582757652438 ], [ -73.381120200290667, 44.187431876566052 ], [ -73.409750572476582, 44.131412587319716 ], [ -73.42613118833583, 44.074854967974716 ], [ -73.424944664853072, 44.038292466579975 ], [ -73.383009848800256, 43.875826640069874 ], [ -73.374967856305986, 43.804151832648216 ], [ -73.375846762589504, 43.762184057609772 ], [ -73.413365074567594, 43.627854218501113 ], [ -73.415924889118372, 43.589643767824754 ], [ -73.404949546902813, 43.578811247880282 ], [ -73.391436362793584, 43.578525603338136 ], [ -73.349237874855703, 43.620383515091135 ], [ -73.330484212030939, 43.626689667675436 ], [ -73.306160480634304, 43.616252655558554 ], [ -73.247097978381262, 43.553048307444357 ], [ -73.250327958973216, 43.439669396869306 ], [ -73.252657060624571, 43.357195028488775 ], [ -73.25523884783243, 43.265371294517251 ], [ -73.259084062822865, 43.1278554201308 ], [ -73.261929521915789, 43.027066842067256 ], [ -73.264544268109276, 42.935210149110077 ], [ -73.266554766232844, 42.864776796813885 ], [ -73.280199786284612, 42.81315203898518 ], [ -73.25332722666576, 42.752221860879644 ], [ -73.285055743501104, 42.668198420174406 ], [ -73.316806232993542, 42.584174979469168 ], [ -73.348567708814514, 42.500140552435369 ], [ -73.380296225649872, 42.416117111730131 ], [ -73.412046715142296, 42.332093671024893 ], [ -73.443808190963281, 42.248070230319655 ], [ -73.475536707798625, 42.164046789614417 ], [ -73.507287197291063, 42.080012362580646 ], [ -73.480568446271818, 42.055567781570034 ], [ -73.488610438766102, 41.960612943963412 ], [ -73.496619472274745, 41.86565810635679 ], [ -73.504628505783387, 41.770703268750168 ], [ -73.512637539292029, 41.675748431143575 ], [ -73.520646572800686, 41.580793593536953 ], [ -73.528688565294956, 41.485838755930331 ], [ -73.536719571460694, 41.390905890980804 ], [ -73.544728604969336, 41.295951053374182 ], [ -73.514450283501816, 41.257454958155677 ], [ -73.484139003048654, 41.218958862937171 ], [ -73.521756191983641, 41.200919311467771 ], [ -73.579796965682092, 41.173145872908293 ], [ -73.641880708284774, 41.143405881539422 ], [ -73.723014744582912, 41.104514278493326 ], [ -73.682112643413248, 41.054702264874408 ], [ -73.630465912927463, 40.991860465602173 ], [ -73.671411959411301, 40.965866812266853 ], [ -73.77900107484362, 40.878404650727305 ], [ -73.851247171349598, 40.831405137215683 ], [ -73.910672222444603, 40.816112167882295 ], [ -73.947212751182263, 40.776945906622586 ], [ -73.987082137468789, 40.751391706429018 ], [ -73.94858604225027, 40.838744004683122 ], [ -73.906750103154366, 40.912462269214018 ], [ -73.871967386983755, 41.055163690673254 ], [ -73.88225059050103, 41.170586058357515 ], [ -73.925327984722429, 41.218057983996545 ], [ -73.969954451268535, 41.24973156918918 ], [ -73.917648541070108, 41.135781369529838 ], [ -73.909233013405327, 40.996079215763103 ], [ -73.910078960703217, 40.992255973429764 ], [ -74.006044540535896, 41.03749767437435 ], [ -74.105053333375281, 41.083178828460689 ], [ -74.204073112543213, 41.128859982547056 ], [ -74.303059932725503, 41.174541136633394 ], [ -74.402046752907808, 41.220222290719732 ], [ -74.501055545747192, 41.265903444806099 ], [ -74.600064338586577, 41.311584598892438 ], [ -74.699051158768867, 41.357298711964432 ], [ -74.720364636144424, 41.394860969256683 ], [ -74.756619520339939, 41.423908821927256 ], [ -74.935367085752361, 41.474369028930312 ], [ -74.981256980081042, 41.507701549733071 ], [ -75.022730370335012, 41.552866346377868 ], [ -75.051360742520913, 41.608369278182636 ], [ -75.06619228605544, 41.666607805794882 ], [ -75.066906397410818, 41.713211811478914 ], [ -75.053678857843721, 41.765045309549976 ], [ -75.094767726598633, 41.799487449535718 ], [ -75.09553676959672, 41.83171035115555 ], [ -75.121892971774002, 41.853364404715961 ], [ -75.238864411782984, 41.892201076119335 ], [ -75.273976717809916, 41.946660306712403 ], [ -75.351342443417437, 41.998416900483647 ], [ -75.48920988031729, 41.998493804783436 ], [ -75.627055344560048, 41.998570709083253 ], [ -75.764900808802807, 41.998647613383071 ], [ -75.902779232031207, 41.998724517682859 ], [ -76.040646668931061, 41.998801421982677 ], [ -76.178525092159447, 41.998878326282494 ], [ -76.3163925290593, 41.998966216910844 ], [ -76.454237993302058, 41.999043121210661 ], [ -76.592094443873364, 41.99912002551045 ], [ -76.729961880773217, 41.999196929810267 ], [ -76.867840304001618, 41.999273834110085 ], [ -77.005707740901471, 41.999350738409873 ], [ -77.14357517780131, 41.999427642709691 ], [ -77.281431628372616, 41.999504547009508 ], [ -77.419277092615388, 41.999581451309325 ], [ -77.557144529515227, 41.999658355609114 ], [ -77.695022952743628, 41.999735259908931 ], [ -77.832868416986386, 41.999812164208748 ], [ -77.970713881229159, 41.999889068508537 ], [ -78.108581318128998, 41.999965972808354 ], [ -78.246459741357398, 42.000042877108172 ], [ -78.384327178257251, 42.00011978140796 ], [ -78.522205601485638, 42.000196685707778 ], [ -78.66005106572841, 42.000273590007595 ], [ -78.797896529971169, 42.000328521650317 ], [ -78.935774953199555, 42.000438384935762 ], [ -79.073642390099408, 42.000515289235551 ], [ -79.211520813327809, 42.000592193535368 ], [ -79.349388250227662, 42.000669097835186 ], [ -79.48723371447042, 42.000746002134974 ], [ -79.625079178713179, 42.000800933777697 ], [ -79.762957601941579, 42.000899810734609 ], [ -79.76297957459866, 42.135515294385414 ], [ -79.763001547255755, 42.27013077803619 ], [ -79.763034506241382, 42.404746261686995 ], [ -79.762023764015325, 42.538977223838742 ] ] ], [ [ [ -72.509783497129945, 40.98602672514528 ], [ -72.580887015467326, 40.921328236349098 ], [ -72.516573048170187, 40.914813343522439 ], [ -72.461333788250485, 40.933775746589561 ], [ -72.409016891723496, 40.972150992194088 ], [ -72.287442180054541, 41.024083367222005 ], [ -72.183852088212262, 41.046792108322649 ], [ -72.151244665093401, 41.051472284282454 ], [ -72.101894077273315, 41.01501964617313 ], [ -72.00395095830271, 41.044265252757526 ], [ -71.903206325553356, 41.060700800259468 ], [ -72.338990033583443, 40.894148059531005 ], [ -72.428078171747501, 40.87538341037768 ], [ -72.555541555516101, 40.82578013700109 ], [ -72.676105524958999, 40.790634871988544 ], [ -72.762842588814621, 40.777846785563213 ], [ -73.194286697069785, 40.654206644127953 ], [ -73.228520096813185, 40.651525979963196 ], [ -73.265522051349706, 40.663566996047535 ], [ -73.620896820765552, 40.599901222134491 ], [ -73.766729345859872, 40.592716163266658 ], [ -73.899565044286518, 40.570523779607583 ], [ -73.80132529444522, 40.621785988594326 ], [ -73.799182960379127, 40.64097910456087 ], [ -73.822671730806405, 40.655964456695017 ], [ -73.875175394918628, 40.651624856920108 ], [ -73.928997418456149, 40.598813575608631 ], [ -74.014910507670976, 40.581213477280983 ], [ -74.03203819387123, 40.638682961895142 ], [ -74.003363876371139, 40.683155619841642 ], [ -73.964571150281941, 40.725343121450976 ], [ -73.879262309137033, 40.791667586871682 ], [ -73.757193212683589, 40.833679307224287 ], [ -73.695208347037806, 40.870033068376699 ], [ -73.652240816101852, 40.838018906999224 ], [ -73.642836518868108, 40.881228137163134 ], [ -73.609767669950386, 40.906189075615316 ], [ -73.573798430297018, 40.919625355424756 ], [ -73.487390956297702, 40.919954945281091 ], [ -73.440863854913459, 40.926777455306961 ], [ -73.407245689568526, 40.941092641399905 ], [ -73.3727046726259, 40.943806264550318 ], [ -73.278156329175417, 40.924195668099088 ], [ -73.185838210419377, 40.929853627299309 ], [ -73.111295971247699, 40.956879995517795 ], [ -73.033776437040558, 40.965976675552298 ], [ -72.828782532736284, 40.972052115237176 ], [ -72.625117974185855, 40.991838492945107 ], [ -72.543676320688476, 41.027005730614746 ], [ -72.372575239942734, 41.125553097655285 ], [ -72.27413773618764, 41.153040891672589 ], [ -72.427386033049231, 41.038530389257488 ], [ -72.509783497129945, 40.98602672514528 ] ] ], [ [ [ -74.188131949825731, 40.522854100054758 ], [ -74.23587853367836, 40.518712254193645 ], [ -74.188153922482812, 40.614600929726492 ], [ -74.100483020700935, 40.658447366945978 ], [ -74.068754503865591, 40.649306741597286 ], [ -74.067414171783213, 40.61545786335293 ], [ -74.079707873424056, 40.58646494232508 ], [ -74.138517690120594, 40.541838475778945 ], [ -74.188131949825731, 40.522854100054758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-OH", "NAME_1": "Ohio" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.12166500545672, 41.950000150589801 ], [ -83.02996212109916, 41.832973778938111 ], [ -82.866199907820871, 41.753004293465636 ], [ -82.690012156959213, 41.675177142059283 ], [ -82.439073426683535, 41.674869524860043 ], [ -82.213326347759477, 41.778690329601744 ], [ -81.974186934340153, 41.88874038262793 ], [ -81.760920324642186, 41.98681533754106 ], [ -81.507344875515912, 42.103479160350815 ], [ -81.277642718315974, 42.209178627273559 ], [ -81.028198128722295, 42.247158365050495 ], [ -80.682645137024863, 42.299771892448177 ], [ -80.52076158592763, 42.324392254715491 ], [ -80.520278187471689, 42.220472573016878 ], [ -80.520278187471689, 42.115619053392038 ], [ -80.520278187471689, 42.010765533767199 ], [ -80.520278187471689, 41.905923000470892 ], [ -80.520278187471689, 41.801069480846053 ], [ -80.520278187471689, 41.696237933878308 ], [ -80.520278187471689, 41.591417373239096 ], [ -80.520278187471689, 41.486563853614257 ], [ -80.520278187471689, 41.381710333989389 ], [ -80.520278187471689, 41.27685681436455 ], [ -80.520278187471689, 41.172014281068243 ], [ -80.520278187471689, 41.067182734100498 ], [ -80.520278187471689, 40.962362173461287 ], [ -80.520278187471689, 40.857508653836447 ], [ -80.520278187471689, 40.752655134211608 ], [ -80.519080677660384, 40.646955667288864 ], [ -80.637524285694269, 40.603263038668985 ], [ -80.659046503312155, 40.562976171897787 ], [ -80.623187126944231, 40.511560154311439 ], [ -80.604092887934584, 40.445202729905105 ], [ -80.601818717925966, 40.363892912350252 ], [ -80.668275019289197, 40.185244223894728 ], [ -80.803516723667002, 39.909135814924525 ], [ -80.872192263396144, 39.735507878613646 ], [ -80.874312624805157, 39.664294496990806 ], [ -80.963290899683784, 39.571130430936876 ], [ -81.139127088032026, 39.455993707794761 ], [ -81.262503557582207, 39.386538138738985 ], [ -81.333354390363084, 39.362818655412298 ], [ -81.39241689261614, 39.364829153535851 ], [ -81.4396471190272, 39.392558646781168 ], [ -81.492722072223728, 39.373618216371142 ], [ -81.551630765877164, 39.308040821291428 ], [ -81.606463531640742, 39.274137011404349 ], [ -81.657209383185915, 39.271972704681161 ], [ -81.700594394606554, 39.229466599544054 ], [ -81.736662511216821, 39.146629682321588 ], [ -81.770665198060797, 39.098828166826223 ], [ -81.802602455138469, 39.086062053057987 ], [ -81.804953529446905, 39.044050332705382 ], [ -81.777685462000463, 38.972793005768381 ], [ -81.780124426937263, 38.946975133689733 ], [ -81.795032874771593, 38.945942418806595 ], [ -81.809337074536003, 38.950029333025014 ], [ -81.843757241864651, 38.934318883206942 ], [ -81.882440104668419, 38.894218784021007 ], [ -81.896678386461559, 38.893548617979803 ], [ -81.907368084134973, 38.900239292063162 ], [ -81.918530193935766, 38.952347448347808 ], [ -81.949797284972263, 38.989327430227235 ], [ -82.001092452944647, 39.011102333401624 ], [ -82.072272875581831, 38.962949255392857 ], [ -82.163327566555296, 38.844912141515096 ], [ -82.203526542698143, 38.768227568277325 ], [ -82.187640311623383, 38.715207546723519 ], [ -82.180070731256492, 38.637589135559494 ], [ -82.20249382781499, 38.605838646067042 ], [ -82.252316827762471, 38.594083274524877 ], [ -82.290867854623698, 38.552016622529521 ], [ -82.318146908398688, 38.47967164906666 ], [ -82.387064147355801, 38.433990494980321 ], [ -82.497542667195219, 38.414973160270478 ], [ -82.612778267294232, 38.448217790444914 ], [ -82.621281685587363, 38.450678728038781 ], [ -82.758226270889509, 38.541162129927955 ], [ -82.844622758560277, 38.627668480884154 ], [ -82.880438189614026, 38.71025271255013 ], [ -83.000068321130669, 38.713999050583652 ], [ -83.203469207796047, 38.638907494984778 ], [ -83.356970190214156, 38.627404808999103 ], [ -83.460582254713515, 38.679501978955216 ], [ -83.538387433462788, 38.699859645747409 ], [ -83.616313461826053, 38.682775904861359 ], [ -83.689877917757315, 38.649531274686922 ], [ -83.752269277559236, 38.669372584037546 ], [ -83.828085930842036, 38.731225613740804 ], [ -83.948386228399883, 38.774226103662386 ], [ -84.113236088204033, 38.798385040130853 ], [ -84.227285164820287, 38.865203890336034 ], [ -84.290434581291734, 38.974704626935051 ], [ -84.358022474495016, 39.049917032147931 ], [ -84.430059830758651, 39.090896037617398 ], [ -84.508864765405434, 39.102838176744825 ], [ -84.594547141720838, 39.085776408515841 ], [ -84.660542017285223, 39.09446659439422 ], [ -84.706948269055474, 39.128908734379962 ], [ -84.765900908023085, 39.124997601418272 ], [ -84.821711457027092, 39.091983684143258 ], [ -84.820140412045291, 39.423825737817651 ], [ -84.81670169121098, 39.749196843979576 ], [ -84.813262970376684, 40.074556963812967 ], [ -84.809835235870921, 40.399939056303424 ], [ -84.806396515036624, 40.725321148793881 ], [ -84.802957794202328, 41.050670282298711 ], [ -84.79955203235366, 41.376052374789197 ], [ -84.796113311519349, 41.701434467279654 ], [ -84.463128679676373, 41.710937641470309 ], [ -84.13015503416193, 41.720451801989498 ], [ -83.797181388647502, 41.729954976180125 ], [ -83.464196756804512, 41.739447164042218 ], [ -83.30395016866035, 41.837807763497523 ], [ -83.12166500545672, 41.950000150589801 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-OK", "NAME_1": "Oklahoma" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.618379921560646, 36.500869083346956 ], [ -94.595978797659242, 36.361661314364724 ], [ -94.573577673757825, 36.22246453171104 ], [ -94.551176549856422, 36.083278735385903 ], [ -94.528769932790738, 35.944059980075124 ], [ -94.506368808889334, 35.804841224764345 ], [ -94.483967684987917, 35.665655428439209 ], [ -94.461539095265152, 35.526458645785524 ], [ -94.439137971363735, 35.387250876803293 ], [ -94.441955964635298, 35.2785741148451 ], [ -94.4447464920855, 35.16989735288692 ], [ -94.447564485357063, 35.061220590928727 ], [ -94.450376985464345, 34.952543828970533 ], [ -94.453194978735908, 34.84386706701234 ], [ -94.456012972007471, 34.735190305054161 ], [ -94.458830965279034, 34.626513543095967 ], [ -94.461643465386317, 34.517836781137774 ], [ -94.46446145865788, 34.409171005508128 ], [ -94.467279451929443, 34.300494243549949 ], [ -94.470091952036725, 34.191817481591755 ], [ -94.472909945308288, 34.083140719633562 ], [ -94.475727938579851, 33.974463957675368 ], [ -94.478540438687133, 33.865787195717189 ], [ -94.481330966137335, 33.757110433758996 ], [ -94.484148959408898, 33.648433671800802 ], [ -94.709198406470421, 33.69928938663142 ], [ -94.765734053158326, 33.73161116520815 ], [ -94.869373583479046, 33.768195639259986 ], [ -94.962389334097637, 33.843408044472866 ], [ -95.146075254190634, 33.936616055840972 ], [ -95.215860413102718, 33.95903915239947 ], [ -95.238030824104712, 33.956479337848691 ], [ -95.276016055045915, 33.910622402505638 ], [ -95.373887762880983, 33.874268641353225 ], [ -95.427116524677132, 33.872785486999774 ], [ -95.523494091830202, 33.886562342994068 ], [ -95.541835767334575, 33.898163905936627 ], [ -95.555711500285767, 33.926091153095726 ], [ -95.594471267389338, 33.945163419448278 ], [ -95.622788529211732, 33.930254971613934 ], [ -95.763166342183908, 33.891473231853283 ], [ -95.78391402363944, 33.864501795277519 ], [ -95.863081507128186, 33.863304285466214 ], [ -95.941578824575743, 33.882837977617626 ], [ -96.139343724698008, 33.821962731154784 ], [ -96.207272194086144, 33.774062338702535 ], [ -96.278562480008773, 33.757626791200565 ], [ -96.315048077103711, 33.711121662473417 ], [ -96.336751569142578, 33.717713459599864 ], [ -96.411139999714649, 33.775204916871118 ], [ -96.487203845389686, 33.79229964408573 ], [ -96.591590446051413, 33.849274743915416 ], [ -96.595364249906311, 33.899405361062122 ], [ -96.606345085286122, 33.90563460934662 ], [ -96.625131707096529, 33.911446377146447 ], [ -96.648538080059723, 33.906381679687613 ], [ -96.694015987068013, 33.863798670250702 ], [ -96.720212887481409, 33.852790369049515 ], [ -96.746283445116546, 33.854185632774616 ], [ -96.847571901128831, 33.88317855380248 ], [ -96.889995608801854, 33.934616544045937 ], [ -96.911001468978156, 33.950436857149441 ], [ -96.934050786263668, 33.953480070156147 ], [ -96.977693976405092, 33.938033292223153 ], [ -97.002160530072786, 33.881596522492131 ], [ -97.02158985210302, 33.866512293401101 ], [ -97.063837778519343, 33.856800378968117 ], [ -97.061228525490122, 33.828499596638522 ], [ -97.098950084546274, 33.750441732332732 ], [ -97.119000134139242, 33.734764241500301 ], [ -97.145070691774379, 33.737686604893028 ], [ -97.172382704534996, 33.756879720859573 ], [ -97.192487685770701, 33.784631186761956 ], [ -97.201013076720912, 33.808163902503409 ], [ -97.186181533186385, 33.870082850177923 ], [ -97.194761855779319, 33.890616298226846 ], [ -97.21493824815056, 33.897109218396395 ], [ -97.264678850633942, 33.867775721183662 ], [ -97.308162739011479, 33.869225916551486 ], [ -97.363610739173524, 33.840178063880899 ], [ -97.398492332301018, 33.831323083074352 ], [ -97.43017141065792, 33.838508141942199 ], [ -97.481565455587202, 33.885705409367631 ], [ -97.571246855492646, 33.915939785520976 ], [ -97.605925201542078, 33.971651457568086 ], [ -97.621789459959757, 33.987768401542269 ], [ -97.640933137447846, 33.991668548175426 ], [ -97.66036245947808, 33.990042571550902 ], [ -97.691937167713803, 33.972134856024027 ], [ -97.795291053492377, 33.899064784877254 ], [ -97.842422402946553, 33.875784754692305 ], [ -97.88285758515309, 33.871115565061075 ], [ -97.921589886435299, 33.878366541900178 ], [ -97.946237714523974, 33.897076259410767 ], [ -97.951071699083371, 33.97121200442632 ], [ -97.973961714604997, 33.993733977941716 ], [ -98.069383471174746, 34.040305024640134 ], [ -98.089587329367333, 34.084096530216897 ], [ -98.098634570923394, 34.145026708322447 ], [ -98.21407891126475, 34.135336766546558 ], [ -98.355978330740271, 34.141511083188348 ], [ -98.420418640815669, 34.088051608492776 ], [ -98.453674257318639, 34.07813095381745 ], [ -98.493851260804405, 34.088776706176688 ], [ -98.608394722205134, 34.16127548823917 ], [ -98.730117749309443, 34.146575780647169 ], [ -98.798952590802472, 34.154738622755431 ], [ -98.968839682244081, 34.208604591607127 ], [ -99.102290615069208, 34.213471535152166 ], [ -99.15750790233183, 34.223282326542048 ], [ -99.186577727659511, 34.235477151225993 ], [ -99.199909637347758, 34.318314068448458 ], [ -99.252874727258842, 34.388077254703475 ], [ -99.270315523822603, 34.40722642535583 ], [ -99.360386938391358, 34.456093614719961 ], [ -99.374938330548019, 34.457873399944106 ], [ -99.384650244981003, 34.446788194443116 ], [ -99.404985939116116, 34.392065291964983 ], [ -99.432297951876734, 34.389219832872058 ], [ -99.536168195096892, 34.404743515104855 ], [ -99.632029404808392, 34.388494735188146 ], [ -99.685615222282209, 34.415828720605859 ], [ -99.867026972366588, 34.543369008674262 ], [ -99.940690305254748, 34.576338980635086 ], [ -99.999340820187399, 34.586721061109259 ], [ -99.999549560429728, 34.70636217895445 ], [ -99.999730834850709, 34.825992310471108 ], [ -99.99991210927169, 34.945622441987751 ], [ -100.000115356349752, 35.06527454616149 ], [ -100.000324096592095, 35.184937636663776 ], [ -100.000505371013062, 35.304567768180434 ], [ -100.000686645434044, 35.424197899697091 ], [ -100.000895385676387, 35.543828031213735 ], [ -100.001098632754449, 35.663458162730393 ], [ -100.00127990717543, 35.783088294247037 ], [ -100.001461181596412, 35.902718425763695 ], [ -100.00166992183874, 36.022348557280353 ], [ -100.001873168916802, 36.141978688796996 ], [ -100.002054443337784, 36.261608820313654 ], [ -100.002235717758765, 36.381238951830298 ], [ -100.002444458001108, 36.500902042332584 ], [ -100.18982178448492, 36.500924014989678 ], [ -100.377177138311637, 36.500924014989678 ], [ -100.564526998974102, 36.500945987646759 ], [ -100.751904325457915, 36.500978946632401 ], [ -100.939287145106007, 36.500978946632401 ], [ -101.126637005768458, 36.501022891946576 ], [ -101.31399235959519, 36.501055850932204 ], [ -101.501369686079002, 36.501077823589299 ], [ -101.688747012562814, 36.501110782574926 ], [ -101.876102366389546, 36.501132755232021 ], [ -102.063452227051997, 36.501132755232021 ], [ -102.250835046700089, 36.501154727889102 ], [ -102.438212373183902, 36.501187686874729 ], [ -102.625562233846352, 36.501187686874729 ], [ -102.812917587673084, 36.501209659531824 ], [ -103.000294914156896, 36.501231632188905 ], [ -103.000426750099422, 36.626135201406726 ], [ -103.000553092877681, 36.751038770624547 ], [ -103.000712394641567, 36.875942339842368 ], [ -103.000838737419826, 37.000845909060189 ], [ -102.753827619598667, 37.000845909060189 ], [ -102.506811008613226, 37.000845909060189 ], [ -102.259799890792067, 37.000845909060189 ], [ -102.012783279806627, 37.000845909060189 ], [ -101.781713324702949, 37.000845909060189 ], [ -101.55061590377791, 37.000845909060189 ], [ -101.319518482852857, 37.000845909060189 ], [ -101.088421061927818, 37.000845909060189 ], [ -100.857329134167045, 37.000845909060189 ], [ -100.626253685899101, 37.000845909060189 ], [ -100.395183730795409, 37.000845909060189 ], [ -100.16408630987037, 37.000845909060189 ], [ -99.932988888945331, 37.000845909060189 ], [ -99.701918933841654, 37.000845909060189 ], [ -99.470848978737962, 37.000845909060189 ], [ -99.239751557812923, 37.000845909060189 ], [ -99.008654136887884, 37.000845909060189 ], [ -98.777584181784206, 37.000845909060189 ], [ -98.546514226680515, 37.000845909060189 ], [ -98.315416805755476, 37.000845909060189 ], [ -98.084319384830437, 37.000845909060189 ], [ -97.853243936562478, 37.000845909060189 ], [ -97.622173981458801, 37.000845909060189 ], [ -97.391076560533762, 37.000845909060189 ], [ -97.159979139608723, 37.000845909060189 ], [ -96.928909184505031, 37.000845909060189 ], [ -96.697839229401353, 37.000845909060189 ], [ -96.466741808476314, 37.000845909060189 ], [ -96.235644387551275, 37.000845909060189 ], [ -96.004574432447583, 37.000845909060189 ], [ -95.773504477343906, 37.000845909060189 ], [ -95.542407056418867, 37.000845909060189 ], [ -95.311309635493828, 37.000845909060189 ], [ -95.080239680390136, 37.000845909060189 ], [ -94.849164232122192, 37.000845909060189 ], [ -94.618066811197139, 37.000845909060189 ], [ -94.618149208661222, 36.875832476556923 ], [ -94.61822611296104, 36.750862989367846 ], [ -94.618303017260843, 36.625882515850222 ], [ -94.618379921560646, 36.500869083346956 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-OR", "NAME_1": "Oregon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -120.000808868339107, 42.00055923454974 ], [ -120.264464273904565, 42.00055923454974 ], [ -120.528114186305771, 42.00055923454974 ], [ -120.79176959187123, 42.00055923454974 ], [ -121.055419504272436, 42.00055923454974 ], [ -121.319074909837894, 42.00055923454974 ], [ -121.582730315403353, 42.00055923454974 ], [ -121.846380227804559, 42.00055923454974 ], [ -122.110063099191393, 42.00055923454974 ], [ -122.373740477413946, 42.00055923454974 ], [ -122.637390389815138, 42.00055923454974 ], [ -122.901045795380611, 42.00055923454974 ], [ -123.16470120094607, 42.00055923454974 ], [ -123.428351113347276, 42.00055923454974 ], [ -123.692006518912734, 42.00055923454974 ], [ -123.95565643131394, 42.00055923454974 ], [ -124.228408516913916, 42.000767974792069 ], [ -124.355273145776863, 42.122881016559688 ], [ -124.409996048254982, 42.304342205122509 ], [ -124.420515457835961, 42.381004805703213 ], [ -124.406172805921642, 42.583680594684665 ], [ -124.443795488020896, 42.670208918297959 ], [ -124.53962923191105, 42.812866394443034 ], [ -124.498573322141766, 42.936858098391696 ], [ -124.454441240380135, 43.012367134475284 ], [ -124.346588453062736, 43.341649373598898 ], [ -124.320594799727417, 43.368203329689976 ], [ -124.27548493472537, 43.367379355049167 ], [ -124.196938178799357, 43.42334371265278 ], [ -124.233160104009244, 43.436362511977535 ], [ -124.287987376608541, 43.409698692601012 ], [ -124.23920807787276, 43.54002950811963 ], [ -124.184353339452088, 43.651551729170734 ], [ -124.14871918281932, 43.691728732656486 ], [ -124.130663151857107, 44.055661852008171 ], [ -124.099165347921172, 44.333780759101955 ], [ -124.047463685792664, 44.425505616116595 ], [ -124.065442812455075, 44.520075932224159 ], [ -124.044541322399937, 44.648231454691029 ], [ -124.059191591513496, 44.777727309240305 ], [ -123.948603208388619, 45.400849891604281 ], [ -123.963099668902558, 45.476084269474256 ], [ -123.92935516077938, 45.576960738166122 ], [ -123.961215513557249, 45.842994683861377 ], [ -123.947131040363715, 46.140592351463852 ], [ -123.975245055108047, 46.178341376341365 ], [ -123.98930206248022, 46.219397286110649 ], [ -123.962945860302938, 46.225450753138432 ], [ -123.911683651316196, 46.182197577660332 ], [ -123.673609911765652, 46.182604071816456 ], [ -123.521630535850903, 46.22266022568823 ], [ -123.466358316945559, 46.209432686121147 ], [ -123.402280555712139, 46.154962469199518 ], [ -123.321563999898672, 46.144009099641067 ], [ -123.220588654249894, 46.153622137117139 ], [ -123.12090420220504, 46.178780829483117 ], [ -123.042275048814957, 46.160027166658352 ], [ -122.941997335028731, 46.114862370013583 ], [ -122.843373063688375, 45.978093565968123 ], [ -122.746429700615295, 45.749687795536403 ], [ -122.725912732059186, 45.673750292639596 ], [ -122.649848886384149, 45.627442917826244 ], [ -122.560963995298152, 45.625069870860727 ], [ -122.202535026547039, 45.591067184016737 ], [ -122.149926992313638, 45.593758834510055 ], [ -122.149905019656558, 45.593857711466939 ], [ -122.085124133396292, 45.602646774302229 ], [ -121.882014384437326, 45.689460742457669 ], [ -121.662518526454846, 45.718135059957746 ], [ -121.402120567302717, 45.711839893701978 ], [ -121.242697953799336, 45.68703276384943 ], [ -121.184278151766122, 45.643779588371302 ], [ -121.045240670876325, 45.639044480768803 ], [ -120.715777157331729, 45.689823291299604 ], [ -120.351432050659625, 45.725166310225973 ], [ -120.156045690667156, 45.762168264762494 ], [ -119.934275662676058, 45.837875054759849 ], [ -119.429113289890012, 45.934170224448849 ], [ -119.177345091809258, 45.94507964869311 ], [ -119.049909173862034, 45.981488341488244 ], [ -119.019680290872955, 46.000340881269921 ], [ -119.002420768730175, 46.000549621512249 ], [ -118.736985577940573, 46.000813293397329 ], [ -118.471550387150955, 46.001044006296752 ], [ -118.206087730539991, 46.001274719196175 ], [ -117.940652539750374, 46.001538391081226 ], [ -117.675217348960757, 46.001791076637744 ], [ -117.409754692349793, 46.002021789537167 ], [ -117.144319501560176, 46.00225250243659 ], [ -116.896478915933926, 46.002098693836984 ], [ -116.86919436899467, 45.958482969516922 ], [ -116.764725370868874, 45.872910456486949 ], [ -116.616827416008263, 45.799170219298986 ], [ -116.520916767818306, 45.721914356976924 ], [ -116.477042864777474, 45.641087937878012 ], [ -116.549157125340912, 45.456737344908106 ], [ -116.73734194697272, 45.168840605410082 ], [ -116.839553254582711, 44.985160178481351 ], [ -116.855856966142142, 44.905740009436101 ], [ -116.948955114224802, 44.770113783559225 ], [ -117.118919109966228, 44.578314459836406 ], [ -117.201701095545985, 44.436206300118556 ], [ -117.197312057292621, 44.343800290734151 ], [ -117.139743695721563, 44.290263911738776 ], [ -117.028952065518638, 44.275542231489709 ], [ -116.95319034387856, 44.245307855336364 ], [ -116.912420078651422, 44.199472892650391 ], [ -116.911310459468467, 44.157406240655035 ], [ -116.949779088865611, 44.119009022393442 ], [ -116.960683019945634, 44.079117663449836 ], [ -116.943967321065784, 44.037677232181494 ], [ -116.957634313774633, 43.964134748907327 ], [ -117.020498085703963, 43.813193581039997 ], [ -117.020239906983164, 43.808436500780402 ], [ -117.019800453841412, 43.562925016805508 ], [ -117.019339028042552, 43.339726766103666 ], [ -117.018899574900786, 43.116539501730387 ], [ -117.01846012175902, 42.893352237357078 ], [ -117.018020668617254, 42.670164972983798 ], [ -117.017581215475502, 42.446966722281957 ], [ -117.017114296512375, 42.223779457908648 ], [ -117.016674843370609, 42.00055923454974 ], [ -117.389704642756811, 42.00055923454974 ], [ -117.7627014831574, 42.00055923454974 ], [ -118.135731282543588, 42.00055923454974 ], [ -118.508755588765524, 42.00055923454974 ], [ -118.88175792233038, 42.00055923454974 ], [ -119.254782228552315, 42.00055923454974 ], [ -119.627806534774251, 42.00055923454974 ], [ -120.000808868339107, 42.00055923454974 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-PA", "NAME_1": "Pennsylvania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.52076158592763, 42.324392254715491 ], [ -80.247575540350155, 42.365997480911972 ], [ -80.035726167034369, 42.44146257168137 ], [ -79.762023764015325, 42.538977223838742 ], [ -79.763034506241382, 42.404746261686995 ], [ -79.763001547255755, 42.27013077803619 ], [ -79.76297957459866, 42.135515294385414 ], [ -79.762957601941579, 42.000899810734609 ], [ -79.625079178713179, 42.000800933777697 ], [ -79.48723371447042, 42.000746002134974 ], [ -79.349388250227662, 42.000669097835186 ], [ -79.211520813327809, 42.000592193535368 ], [ -79.073642390099408, 42.000515289235551 ], [ -78.935774953199555, 42.000438384935762 ], [ -78.797896529971169, 42.000328521650317 ], [ -78.66005106572841, 42.000273590007595 ], [ -78.522205601485638, 42.000196685707778 ], [ -78.384327178257251, 42.00011978140796 ], [ -78.246459741357398, 42.000042877108172 ], [ -78.108581318128998, 41.999965972808354 ], [ -77.970713881229159, 41.999889068508537 ], [ -77.832868416986386, 41.999812164208748 ], [ -77.695022952743628, 41.999735259908931 ], [ -77.557144529515227, 41.999658355609114 ], [ -77.419277092615388, 41.999581451309325 ], [ -77.281431628372616, 41.999504547009508 ], [ -77.14357517780131, 41.999427642709691 ], [ -77.005707740901471, 41.999350738409873 ], [ -76.867840304001618, 41.999273834110085 ], [ -76.729961880773217, 41.999196929810267 ], [ -76.592094443873364, 41.99912002551045 ], [ -76.454237993302058, 41.999043121210661 ], [ -76.3163925290593, 41.998966216910844 ], [ -76.178525092159447, 41.998878326282494 ], [ -76.040646668931061, 41.998801421982677 ], [ -75.902779232031207, 41.998724517682859 ], [ -75.764900808802807, 41.998647613383071 ], [ -75.627055344560048, 41.998570709083253 ], [ -75.48920988031729, 41.998493804783436 ], [ -75.351342443417437, 41.998416900483647 ], [ -75.273976717809916, 41.946660306712403 ], [ -75.238864411782984, 41.892201076119335 ], [ -75.121892971774002, 41.853364404715961 ], [ -75.09553676959672, 41.83171035115555 ], [ -75.094767726598633, 41.799487449535718 ], [ -75.053678857843721, 41.765045309549976 ], [ -75.066906397410818, 41.713211811478914 ], [ -75.06619228605544, 41.666607805794882 ], [ -75.051360742520913, 41.608369278182636 ], [ -75.022730370335012, 41.552866346377868 ], [ -74.981256980081042, 41.507701549733071 ], [ -74.935367085752361, 41.474369028930312 ], [ -74.756619520339939, 41.423908821927256 ], [ -74.720364636144424, 41.394860969256683 ], [ -74.699051158768867, 41.357298711964432 ], [ -74.777779189115861, 41.3250758103446 ], [ -74.812485000986655, 41.301510135617491 ], [ -74.841390031386169, 41.268595095299389 ], [ -74.912295795809754, 41.155271116367061 ], [ -75.031541405827369, 41.051779901481666 ], [ -75.1230355499426, 40.999001579155845 ], [ -75.122749905400454, 40.97176647069503 ], [ -75.074926417248008, 40.884458117755116 ], [ -75.075563624303555, 40.856267198710952 ], [ -75.111796535841989, 40.802104598988564 ], [ -75.174737212071108, 40.775517683911858 ], [ -75.185690581629572, 40.743822126062156 ], [ -75.192282378756033, 40.689868266582096 ], [ -75.189019439178423, 40.5958143079161 ], [ -75.170518461910177, 40.576796973206257 ], [ -75.097448390763404, 40.543134862547163 ], [ -75.034046288735425, 40.420373627395435 ], [ -74.97637905020747, 40.405827728403068 ], [ -74.734888562479711, 40.154504476628347 ], [ -74.909296528117224, 40.079544756971984 ], [ -75.023532372318726, 40.017450028040741 ], [ -75.074168360578454, 39.983480300182407 ], [ -75.172924467861336, 39.894776683517392 ], [ -75.320877354364654, 39.864696115963653 ], [ -75.400638099594786, 39.831572335403195 ], [ -75.421028725372636, 39.81542243244337 ], [ -75.51044645339303, 39.843437570230833 ], [ -75.63458097961275, 39.839482491954954 ], [ -75.676823412864806, 39.827232735628286 ], [ -75.709145191441522, 39.802898017903118 ], [ -75.784720145496365, 39.722357243346352 ], [ -76.015531921879258, 39.722379216003446 ], [ -76.246321725605057, 39.722434147646169 ], [ -76.47711152933087, 39.722456120303235 ], [ -76.707901333056682, 39.722489079288891 ], [ -76.938680150453933, 39.722511051945958 ], [ -77.169491926836841, 39.722533024603052 ], [ -77.400303703219734, 39.72256598358868 ], [ -77.631093506945533, 39.722587956245775 ], [ -77.861883310671345, 39.72260992890287 ], [ -78.092695087054238, 39.722642887888497 ], [ -78.323506863437132, 39.722664860545592 ], [ -78.554296667162944, 39.722686833202687 ], [ -78.785086470888757, 39.722719792188315 ], [ -79.01589824727165, 39.722741764845409 ], [ -79.246710023654543, 39.722774723831037 ], [ -79.477499827380356, 39.722796696488103 ], [ -79.607742752270596, 39.722741764845409 ], [ -79.737996663489383, 39.722719792188315 ], [ -79.868217615722557, 39.722686833202687 ], [ -79.998471526941344, 39.722642887888497 ], [ -80.128725438160131, 39.72260992890287 ], [ -80.258946390393291, 39.722587956245775 ], [ -80.389200301612092, 39.722533024603052 ], [ -80.519443226502332, 39.722511051945958 ], [ -80.519553089787777, 39.838186105186736 ], [ -80.519651966744675, 39.953839185770448 ], [ -80.51976183003012, 40.069492266354132 ], [ -80.519860706987018, 40.185145346937816 ], [ -80.519959583943901, 40.300798427521499 ], [ -80.520069447229346, 40.416473480762278 ], [ -80.520168324186244, 40.532148534003056 ], [ -80.519080677660384, 40.646955667288864 ], [ -80.520278187471689, 40.752655134211608 ], [ -80.520278187471689, 40.857508653836447 ], [ -80.520278187471689, 40.962362173461287 ], [ -80.520278187471689, 41.067182734100498 ], [ -80.520278187471689, 41.172014281068243 ], [ -80.520278187471689, 41.27685681436455 ], [ -80.520278187471689, 41.381710333989389 ], [ -80.520278187471689, 41.486563853614257 ], [ -80.520278187471689, 41.591417373239096 ], [ -80.520278187471689, 41.696237933878308 ], [ -80.520278187471689, 41.801069480846053 ], [ -80.520278187471689, 41.905923000470892 ], [ -80.520278187471689, 42.010765533767199 ], [ -80.520278187471689, 42.115619053392038 ], [ -80.520278187471689, 42.220472573016878 ], [ -80.52076158592763, 42.324392254715491 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-RI", "NAME_1": "Rhode Island" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.842353051747608, 41.335512822461482 ], [ -71.829872582521517, 41.392740607847685 ], [ -71.804527122570292, 41.416745735716518 ], [ -71.799231712212034, 41.479170054504067 ], [ -71.795792991377738, 41.519951306059738 ], [ -71.796518089061649, 41.588857558688318 ], [ -71.797320091045364, 41.667585589035298 ], [ -71.798198997328896, 41.753114156751082 ], [ -71.798968040326983, 41.828502343220663 ], [ -71.799561302068369, 41.883027491785015 ], [ -71.800319358737909, 41.958239896997895 ], [ -71.800835716179478, 42.011963043578504 ], [ -71.725821064880392, 42.012863922519131 ], [ -71.623241715264186, 42.014028473344808 ], [ -71.524134045467903, 42.015236969484647 ], [ -71.462533701321149, 42.015962067168545 ], [ -71.387134528523035, 42.016862946109171 ], [ -71.383926520588162, 41.97173110845003 ], [ -71.37907056337167, 41.902407375336793 ], [ -71.337630132103342, 41.891443019449781 ], [ -71.33948682162729, 41.835171044646927 ], [ -71.34072827675277, 41.797916404553888 ], [ -71.304737064442321, 41.774658347026048 ], [ -71.26788891850542, 41.750839986742449 ], [ -71.233765382047466, 41.706554096381211 ], [ -71.271074953783213, 41.681230609087066 ], [ -71.310757572484476, 41.719880512905206 ], [ -71.330598881835115, 41.762254782099774 ], [ -71.359152349721214, 41.78623793731154 ], [ -71.39015576887266, 41.795334617346043 ], [ -71.363678717081385, 41.702730854047871 ], [ -71.4265424890107, 41.63329725764919 ], [ -71.44380201115348, 41.453692758610316 ], [ -71.522859631356781, 41.37897473818191 ], [ -71.769282980600835, 41.330909550801493 ], [ -71.842353051747608, 41.335512822461482 ] ] ], [ [ [ -71.241378907728517, 41.491969127257931 ], [ -71.290938235790932, 41.464602182854605 ], [ -71.346232427353371, 41.469403208428361 ], [ -71.318151371594652, 41.50630628600797 ], [ -71.3074726602498, 41.560490858387453 ], [ -71.280193606474811, 41.620047745425012 ], [ -71.264483156656752, 41.638230119165485 ], [ -71.232051514794577, 41.654303117825492 ], [ -71.241378907728517, 41.491969127257931 ] ] ], [ [ [ -71.365359625348631, 41.485267466846039 ], [ -71.393078132265387, 41.466744516920699 ], [ -71.403383308439743, 41.515040417200538 ], [ -71.38398145223087, 41.570532362676772 ], [ -71.364315924136946, 41.571806776787867 ], [ -71.354472173761437, 41.542297498318447 ], [ -71.365359625348631, 41.485267466846039 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-SC", "NAME_1": "South Carolina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.872346071995764, 32.029565201842743 ], [ -81.074813120734888, 32.109699482243386 ], [ -81.135018201156527, 32.181857688120999 ], [ -81.132952771390237, 32.274670191661514 ], [ -81.171503798251479, 32.38013894568482 ], [ -81.290331927784408, 32.557238561815637 ], [ -81.376970114683147, 32.607468055919242 ], [ -81.433813378570292, 32.72803202536214 ], [ -81.489777736173906, 32.935662648516995 ], [ -81.578239653610964, 33.068575251243459 ], [ -81.699319980495432, 33.126758847212997 ], [ -81.780322180851044, 33.195291564671052 ], [ -81.821279213663431, 33.274096499317849 ], [ -81.864092935999778, 33.325435612604409 ], [ -81.908741375202979, 33.349253972888008 ], [ -81.932845380028724, 33.389870429515526 ], [ -81.936393964148465, 33.447284982486963 ], [ -82.005717697261701, 33.522892895527434 ], [ -82.20836052725754, 33.663583818863117 ], [ -82.256623468551751, 33.749233236192879 ], [ -82.351896909686147, 33.837728112615565 ], [ -82.589344428509676, 34.017618256196585 ], [ -82.589267524209873, 34.017376556968614 ], [ -82.818585159910768, 34.366016706986926 ], [ -82.818607132567848, 34.366071638629649 ], [ -82.847731889538252, 34.436911485081978 ], [ -82.896818805473274, 34.465805529152945 ], [ -82.975678671762779, 34.476396349869447 ], [ -83.052780725485249, 34.510860462512284 ], [ -83.165895964175249, 34.598531364294161 ], [ -83.166522184902263, 34.599597038162941 ], [ -83.355574926489055, 34.708317745435295 ], [ -83.316716282428587, 34.80565661633598 ], [ -83.170400358878325, 34.932911259862237 ], [ -83.121357388257479, 35.000554084708227 ], [ -83.114820522773741, 35.001476936305934 ], [ -83.096550258404918, 35.001641731234102 ], [ -82.936973836301931, 35.04416980902829 ], [ -82.777529250141484, 35.086642955179755 ], [ -82.743966016439273, 35.084061167971896 ], [ -82.65148310275508, 35.128039441133907 ], [ -82.463957460835914, 35.177961318038285 ], [ -82.39253533897076, 35.21093128999911 ], [ -82.35608270086145, 35.201625869722264 ], [ -82.197484061998892, 35.19589100622224 ], [ -82.038885423136335, 35.19015614272223 ], [ -81.880297770602311, 35.184421279222207 ], [ -81.721699131739754, 35.17867542939365 ], [ -81.563100492877197, 35.172940565893626 ], [ -81.404512840343187, 35.167205702393616 ], [ -81.24591420148063, 35.161470838893592 ], [ -81.087315562618073, 35.155714002736488 ], [ -81.056619760665868, 35.14550770351903 ], [ -81.046852914590175, 35.131082654140627 ], [ -81.051170541708004, 35.088972056831111 ], [ -81.045248910622732, 35.065615122346358 ], [ -80.933682744257439, 35.113669323398241 ], [ -80.881695437586785, 35.057913706036956 ], [ -80.792969848264676, 34.962772100845086 ], [ -80.789278441873861, 34.907170292083421 ], [ -80.784081908472501, 34.828629029321689 ], [ -80.642775750738352, 34.824640992060182 ], [ -80.501458606675655, 34.820663941127222 ], [ -80.360130476284411, 34.816686890194248 ], [ -80.218824318550261, 34.812709839261288 ], [ -80.077507174487565, 34.808732788328328 ], [ -79.93617904409632, 34.804744751066821 ], [ -79.794861900033624, 34.800767700133861 ], [ -79.653555742299474, 34.796790649200901 ], [ -79.518522778163998, 34.682642695627749 ], [ -79.383467841371441, 34.568505728383144 ], [ -79.248412904578871, 34.454379747467087 ], [ -79.113379940443409, 34.340231793893935 ], [ -78.978346976307932, 34.226072853992235 ], [ -78.843292039515362, 34.111946873076178 ], [ -78.708237102722805, 33.997820892160121 ], [ -78.564272253480979, 33.876663660975836 ], [ -78.577708533290405, 33.87322494014154 ], [ -78.841435349991414, 33.724096516483996 ], [ -78.920295216280934, 33.658694902660997 ], [ -79.13818707029597, 33.405921455518452 ], [ -79.193821838043263, 33.24414776770665 ], [ -79.238360413961033, 33.312153141394603 ], [ -79.227330140102751, 33.363162664824827 ], [ -79.226473206476314, 33.4048887406353 ], [ -79.281327944896987, 33.315438053629279 ], [ -79.229241761269435, 33.185129210767769 ], [ -79.276010561881648, 33.135394101448654 ], [ -79.419931465809285, 33.042526666265417 ], [ -79.498681468813359, 33.027310601231846 ], [ -79.587121413593337, 33.000877494754747 ], [ -79.614927811138429, 32.909262501025538 ], [ -79.735019368453933, 32.824788620849986 ], [ -79.804991294951279, 32.787380172157341 ], [ -79.933102872103973, 32.810033981615277 ], [ -79.893639979973585, 32.728702191403329 ], [ -79.940727384113572, 32.667156778899312 ], [ -80.021751557126279, 32.61989359350261 ], [ -80.122551121518356, 32.589098914593521 ], [ -80.180317237003209, 32.592889197941233 ], [ -80.229667824823281, 32.576508582081985 ], [ -80.268350687627034, 32.53734232082229 ], [ -80.36284409943481, 32.500724887784813 ], [ -80.460973985990663, 32.521346226462086 ], [ -80.572232535156715, 32.533694859745651 ], [ -80.634195428145404, 32.511733188986 ], [ -80.530012074561753, 32.475379427833587 ], [ -80.474278429857563, 32.422776886764453 ], [ -80.485726184200502, 32.351827177026692 ], [ -80.513631458702505, 32.324405300980629 ], [ -80.579340689724745, 32.287326442144305 ], [ -80.608223747467164, 32.292808620087811 ], [ -80.625845818451893, 32.326272976833124 ], [ -80.647214227470158, 32.395926299802696 ], [ -80.677778193479838, 32.381127715253797 ], [ -80.683051631181002, 32.348641141748899 ], [ -80.709330929058481, 32.337039578806341 ], [ -80.802560913083667, 32.448045442415875 ], [ -80.79788073712389, 32.363395780983623 ], [ -80.765328245647723, 32.298312770688412 ], [ -80.733830441711802, 32.265320826070493 ], [ -80.702046993233736, 32.245907983533073 ], [ -80.694213740981809, 32.215739525350983 ], [ -80.758011350837364, 32.142175069419721 ], [ -80.790794555212941, 32.125838398874649 ], [ -80.84924182306753, 32.113929218732849 ], [ -80.882057986428734, 32.06861061348846 ], [ -80.872346071995764, 32.029565201842743 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-SD", "NAME_1": "South Dakota" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.453618639030395, 43.501170864059162 ], [ -96.598621696319626, 43.497501430325428 ], [ -96.581285269877043, 43.434923302938245 ], [ -96.541646596489954, 43.373454794734045 ], [ -96.534955922406596, 43.338056844164981 ], [ -96.542525502773486, 43.309030964151475 ], [ -96.569941885655268, 43.283322955358301 ], [ -96.563454458649986, 43.242684526073674 ], [ -96.555390493498621, 43.231676224872501 ], [ -96.490280017382034, 43.205528762937547 ], [ -96.468137072201415, 43.170229689325367 ], [ -96.461292589518436, 43.12976704129747 ], [ -96.462687853243537, 43.099181102630723 ], [ -96.50211229322403, 43.043293649326898 ], [ -96.513274403024823, 42.969059027354433 ], [ -96.562575552366454, 42.858569521186467 ], [ -96.616084465540467, 42.791388122139352 ], [ -96.62683458802087, 42.757000913796332 ], [ -96.621769890562035, 42.729535092436095 ], [ -96.538702260440132, 42.658585382698305 ], [ -96.533610097159951, 42.630163750754747 ], [ -96.50632555022068, 42.593579276702911 ], [ -96.480952624448094, 42.511258716921986 ], [ -96.557950308049385, 42.524793873688338 ], [ -96.632778191763222, 42.568673269893452 ], [ -96.675542475621114, 42.637601495179098 ], [ -96.804527465893059, 42.701421077691748 ], [ -97.019733162579072, 42.760175962745564 ], [ -97.164478041147518, 42.813195984299369 ], [ -97.238789567419786, 42.860536073995888 ], [ -97.416658226548691, 42.881003604073527 ], [ -97.69813895017694, 42.874642519846503 ], [ -97.880918498165059, 42.84958270443741 ], [ -97.964947432034563, 42.805868103160464 ], [ -98.143283010126595, 42.852263368602166 ], [ -98.441765077176839, 43.001095161389031 ], [ -98.837141068821737, 43.001248969988637 ], [ -99.183270842767726, 43.001248969988637 ], [ -99.529373150892368, 43.001248969988637 ], [ -99.875475459016997, 43.001248969988637 ], [ -100.221605232962986, 43.001248969988637 ], [ -100.567707541087614, 43.001281928974265 ], [ -100.913809849212242, 43.00130390163136 ], [ -101.259939623158232, 43.00130390163136 ], [ -101.606063903939955, 43.00130390163136 ], [ -101.952171705228849, 43.001325874288455 ], [ -102.298274013353492, 43.001358833274082 ], [ -102.6443982941352, 43.001358833274082 ], [ -102.99052806808119, 43.001358833274082 ], [ -103.336630376205832, 43.001380805931177 ], [ -103.682738177494727, 43.001402778588272 ], [ -104.02886245827645, 43.001402778588272 ], [ -104.029895173159588, 43.25136372562352 ], [ -104.030955353864101, 43.501324672658768 ], [ -104.0320155345686, 43.751285619694016 ], [ -104.033048249451753, 44.001268539386359 ], [ -104.03408096433489, 44.251251459078702 ], [ -104.035119172382309, 44.50121240611395 ], [ -104.036151887265447, 44.751173353149227 ], [ -104.037212067969961, 45.001134300184475 ], [ -104.029279938761121, 45.001079368541753 ], [ -104.021347809552282, 45.001057395884658 ], [ -104.013415680343442, 45.00102443689903 ], [ -104.005478057970336, 45.000969505256307 ], [ -104.005302276713635, 45.004100608891378 ], [ -104.005142974949749, 45.007231712526448 ], [ -104.004961700528767, 45.010351829832956 ], [ -104.004780426107786, 45.013482933468026 ], [ -104.006356964253868, 45.245865754832721 ], [ -104.00793350239995, 45.478259562525977 ], [ -104.009510040546019, 45.710642383890672 ], [ -104.011086578692101, 45.943058164241023 ], [ -103.778132468243101, 45.943036191583928 ], [ -103.545172864629833, 45.943036191583928 ], [ -103.312213261016581, 45.943036191583928 ], [ -103.07925915056758, 45.943036191583928 ], [ -102.846299546954313, 45.943036191583928 ], [ -102.613345436505313, 45.943014218926834 ], [ -102.38038583289206, 45.942981259941206 ], [ -102.147426229278793, 45.942981259941206 ], [ -101.914472118829792, 45.942981259941206 ], [ -101.681512515216525, 45.942981259941206 ], [ -101.448558404767539, 45.942981259941206 ], [ -101.215598801154272, 45.942959287284111 ], [ -100.982644690705271, 45.942937314627017 ], [ -100.749685087092004, 45.942937314627017 ], [ -100.516725483478737, 45.942937314627017 ], [ -100.28374390720839, 45.942937314627017 ], [ -100.050762330938028, 45.942937314627017 ], [ -99.817802727324761, 45.942904355641389 ], [ -99.584848616875774, 45.942882382984294 ], [ -99.351889013262507, 45.942882382984294 ], [ -99.11892940964924, 45.942882382984294 ], [ -98.88597529920024, 45.942882382984294 ], [ -98.653015695586973, 45.942882382984294 ], [ -98.420061585137987, 45.942860410327228 ], [ -98.187101981524719, 45.942827451341572 ], [ -97.954142377911452, 45.942827451341572 ], [ -97.721188267462452, 45.942827451341572 ], [ -97.488228663849199, 45.942827451341572 ], [ -97.255274553400199, 45.942827451341572 ], [ -97.022314949786931, 45.942805478684505 ], [ -96.789355346173664, 45.942772519698877 ], [ -96.556401235724678, 45.942772519698877 ], [ -96.591052115952749, 45.84326934207499 ], [ -96.614689201815366, 45.799972221282701 ], [ -96.662671991731699, 45.755653371935836 ], [ -96.813618652763296, 45.659182420990135 ], [ -96.851060060441583, 45.626003708786953 ], [ -96.845451539719818, 45.59586820959052 ], [ -96.814909546367232, 45.557427046014737 ], [ -96.737527341266897, 45.467844523066162 ], [ -96.696108882655665, 45.431776406455896 ], [ -96.529759389005235, 45.371549353377191 ], [ -96.453668077508837, 45.29733670406182 ], [ -96.453668077508837, 45.072809107606133 ], [ -96.453668077508837, 44.848292497479008 ], [ -96.453668077508837, 44.623786873680416 ], [ -96.453640611687476, 44.399259277224758 ], [ -96.453618639030395, 44.174720694440538 ], [ -96.453618639030395, 43.950215070641946 ], [ -96.453618639030395, 43.72569846051482 ], [ -96.453618639030395, 43.501170864059162 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-TN", "NAME_1": "Tennessee" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.623603577460599, 35.000861701907468 ], [ -85.784036933190023, 35.002355842589466 ], [ -85.944437329933805, 35.003860969599998 ], [ -86.104870685663229, 35.005410041924719 ], [ -86.265293055064106, 35.006904182606718 ], [ -86.42572641079353, 35.008409309617264 ], [ -86.586159766522954, 35.009903450299262 ], [ -86.74658213592383, 35.011408577309794 ], [ -86.907015491653254, 35.012924690648887 ], [ -87.067448847382678, 35.014451790316514 ], [ -87.227871216783555, 35.015945930998512 ], [ -87.388304572512979, 35.017451058009044 ], [ -87.548737928242403, 35.018945198691043 ], [ -87.70916029764328, 35.020450325701589 ], [ -87.869593653372704, 35.021966439040668 ], [ -88.029994050116485, 35.023493538708308 ], [ -88.190427405845909, 35.02499866571884 ], [ -88.203138587971424, 35.024196663735125 ], [ -88.190789954687858, 35.012045784365355 ], [ -88.173266760660027, 34.99900501238352 ], [ -88.444771897970256, 34.999125861997499 ], [ -88.710421322166482, 34.999411506539644 ], [ -88.976059760034161, 34.99969715108179 ], [ -89.241698197901826, 34.999982795623936 ], [ -89.507347622098052, 35.000268440166082 ], [ -89.772997046294279, 35.000554084708227 ], [ -90.038635484161958, 35.000839729250373 ], [ -90.293705073970216, 35.001114387463986 ], [ -90.293760005612924, 35.004476203998479 ], [ -90.255956049092703, 35.0463890473942 ], [ -90.142269521318397, 35.114295544125255 ], [ -90.092918933498325, 35.203592422531656 ], [ -90.107882312975391, 35.3142027783136 ], [ -90.066024401222379, 35.414112450093612 ], [ -89.967345198239315, 35.503310451543115 ], [ -89.926520001369468, 35.591651519366181 ], [ -89.943504865298635, 35.67913565356281 ], [ -89.894560771634687, 35.750502843785256 ], [ -89.779654761391996, 35.805742103704972 ], [ -89.763592749060535, 35.828044350649478 ], [ -89.768108130092159, 35.845248941149535 ], [ -89.769942846959012, 35.864299234844992 ], [ -89.768932104732954, 35.872099528111306 ], [ -89.763592749060535, 35.8887657885127 ], [ -89.738214330123668, 35.898741374830735 ], [ -89.703772190137926, 35.906904216938997 ], [ -89.688907687617771, 35.92095573114689 ], [ -89.689171359502822, 35.943598554276278 ], [ -89.709320286052701, 35.983050460078118 ], [ -89.70477194603545, 36.001573410003459 ], [ -89.697696750453048, 36.030302659146273 ], [ -89.64188620144904, 36.104515308461629 ], [ -89.634129853496916, 36.167917410489608 ], [ -89.674548556210638, 36.220574883201451 ], [ -89.654081026132985, 36.247963800261886 ], [ -89.627988495840768, 36.255258722415164 ], [ -89.594623016052353, 36.259444513590466 ], [ -89.583548796879896, 36.272232600015798 ], [ -89.583548796879896, 36.287657405291696 ], [ -89.611706756938418, 36.321967709334913 ], [ -89.604093231257352, 36.351916440946113 ], [ -89.555269987207396, 36.372922301122429 ], [ -89.540603238601037, 36.426667420360133 ], [ -89.557313444316605, 36.501077823589299 ], [ -89.487220668205268, 36.503066349055771 ], [ -89.485385951338401, 36.498133487539477 ], [ -89.471488245730129, 36.488882998905353 ], [ -89.45182271763619, 36.49751825314101 ], [ -89.450328576954206, 36.500023136049066 ], [ -89.251783647505306, 36.499946231749249 ], [ -89.079078562792134, 36.499913272763621 ], [ -88.906373478078962, 36.499891300106526 ], [ -88.733646420708695, 36.499836368463818 ], [ -88.560919363338428, 36.499792423149628 ], [ -88.388214278625256, 36.499759464164001 ], [ -88.215509193912084, 36.49973749150692 ], [ -88.059107820758342, 36.499682559864198 ], [ -88.0560096761089, 36.500945987646759 ], [ -88.056712801135731, 36.590319770352977 ], [ -88.096296542880097, 36.693008983254643 ], [ -88.091121982135832, 36.6928002430123 ], [ -87.956297758242698, 36.681967723067828 ], [ -87.868714747089172, 36.675046336085046 ], [ -87.839150536977016, 36.643966012633797 ], [ -87.506253795762376, 36.649184518692238 ], [ -87.173357054547751, 36.654403024750692 ], [ -86.840460313333125, 36.659621530809133 ], [ -86.50758554477558, 36.664840036867574 ], [ -86.160450521767814, 36.655073190791882 ], [ -85.813282539774406, 36.645339303701803 ], [ -85.466125544109545, 36.635594430283192 ], [ -85.118979534773217, 36.625827584207499 ], [ -84.771844511765451, 36.616060738131793 ], [ -84.424687516100576, 36.606315864713181 ], [ -84.077519534107182, 36.596581977623117 ], [ -83.730384511099402, 36.586815131547411 ], [ -83.722507313533285, 36.589089301556044 ], [ -83.714652088624263, 36.591363471564662 ], [ -83.706796863715226, 36.593637641573295 ], [ -83.698941638806204, 36.595900825253381 ], [ -83.691086413897168, 36.598174995262013 ], [ -83.683231188988145, 36.600449165270632 ], [ -83.675375964079109, 36.602723335279265 ], [ -83.667520739170087, 36.605030464273526 ], [ -83.440762918019956, 36.604118599004366 ], [ -82.95583736241214, 36.602130073537879 ], [ -82.611778511396722, 36.600712837155697 ], [ -82.329385922499299, 36.59954828633002 ], [ -82.162184988386713, 36.598856147631736 ], [ -81.952510908122647, 36.598021186662393 ], [ -81.90533561335431, 36.618543648382754 ], [ -81.800712806628894, 36.615181831848261 ], [ -81.658890291453162, 36.610578560188287 ], [ -81.704417636939894, 36.5339928639074 ], [ -81.707647617531862, 36.481961611922571 ], [ -81.733322667339408, 36.405914245740348 ], [ -81.734124669323137, 36.355454038737307 ], [ -81.80826041433869, 36.352718442929827 ], [ -81.851151040974827, 36.339699643605087 ], [ -81.90824699041849, 36.306411068116475 ], [ -82.051365892362426, 36.122862477130269 ], [ -82.100617603225601, 36.106525806585211 ], [ -82.182498709864745, 36.153788991981898 ], [ -82.294943782513556, 36.133969655288354 ], [ -82.368244566559767, 36.099549487959706 ], [ -82.478426455528492, 36.01005485563951 ], [ -82.521130314579395, 35.981215743211251 ], [ -82.553408147841935, 35.970987471336699 ], [ -82.576841986626491, 35.972272871776354 ], [ -82.58875116676829, 35.986950606711275 ], [ -82.598100532359325, 36.031599045914476 ], [ -82.611097359026985, 36.047364427375257 ], [ -82.644924264614247, 36.046793138290965 ], [ -82.70008662023416, 36.029841233347426 ], [ -82.755589552038927, 35.999870529079132 ], [ -82.812817337425116, 35.947443769266712 ], [ -82.887722125438756, 35.951728437398899 ], [ -82.901861530275013, 35.939171063873005 ], [ -82.920252644257829, 35.878900065480096 ], [ -82.949476278185116, 35.834526284490494 ], [ -82.99020259809808, 35.800446693346714 ], [ -83.120368618688516, 35.774617834939548 ], [ -83.284240695252237, 35.682058016955537 ], [ -83.511119366016345, 35.584081938999304 ], [ -83.722716053775628, 35.559901029873743 ], [ -83.811705314982788, 35.540290433422541 ], [ -83.871306147334508, 35.514890041828593 ], [ -84.00373535160503, 35.414068504779436 ], [ -84.062281496416517, 35.28601185926945 ], [ -84.128583989180129, 35.261413469659232 ], [ -84.2324707118931, 35.260589495018422 ], [ -84.261101084079002, 35.249581193817235 ], [ -84.286973887800343, 35.20084584039563 ], [ -84.324689953692229, 34.988095588139231 ], [ -84.649423852798591, 34.991303596074104 ], [ -84.974157751904954, 34.994478645023349 ], [ -85.298891651011317, 34.997653693972595 ], [ -85.623603577460599, 35.000861701907468 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-TX", "NAME_1": "Texas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.484148959408898, 33.648433671800802 ], [ -94.432007844138624, 33.599731277364839 ], [ -94.390122466564264, 33.585602858857129 ], [ -94.377955107701666, 33.566113112019906 ], [ -94.357674345209276, 33.560971510261268 ], [ -94.332559598157474, 33.565036451822579 ], [ -94.294678737337435, 33.587459548381077 ], [ -94.238456201013022, 33.581208327439484 ], [ -94.191533591801189, 33.589008620705798 ], [ -94.098797992560492, 33.577330153463421 ], [ -94.047327043331393, 33.55443464477753 ], [ -94.045805436828047, 33.418841377886309 ], [ -94.044305802981768, 33.283215152009447 ], [ -94.042806169135503, 33.147588926132599 ], [ -94.041306535289237, 33.011995659241379 ], [ -94.041564714010022, 32.885378222770669 ], [ -94.041800920073726, 32.758804731614148 ], [ -94.042031632973149, 32.632220254129095 ], [ -94.042289811693934, 32.505613803986932 ], [ -94.042547990414718, 32.379007353844784 ], [ -94.042806169135503, 32.252422876359716 ], [ -94.043064347856287, 32.125838398874649 ], [ -94.043300553919991, 31.999231948732501 ], [ -93.905065075013908, 31.876998057350903 ], [ -93.845585092276181, 31.792941657660023 ], [ -93.826798470465775, 31.750259771266215 ], [ -93.820651619645361, 31.603965820373048 ], [ -93.806902229472428, 31.568798582703394 ], [ -93.737578496359177, 31.513812008340196 ], [ -93.736056889855817, 31.477666987430126 ], [ -93.663656984750233, 31.37219823340682 ], [ -93.66588171628041, 31.322583973701683 ], [ -93.596991943144673, 31.209754379553829 ], [ -93.557748777585161, 31.180420882341096 ], [ -93.551442625000846, 31.104065898959632 ], [ -93.530590573424149, 31.046189920189335 ], [ -93.562654173280094, 31.004903297520627 ], [ -93.549195920813574, 30.947719457448613 ], [ -93.568674681322264, 30.894655490580632 ], [ -93.579194090903229, 30.823804657799755 ], [ -93.624721436389962, 30.714347866514942 ], [ -93.665206057074954, 30.660767542205392 ], [ -93.720214604095233, 30.558265096888974 ], [ -93.715204838279135, 30.473252886614773 ], [ -93.746625737915238, 30.380363478774441 ], [ -93.75039404860587, 30.34471284264886 ], [ -93.720967167600506, 30.282903758259778 ], [ -93.710629032440508, 30.112813419740093 ], [ -93.726932743999953, 30.077107851971789 ], [ -93.794009772925932, 29.977264098163047 ], [ -93.841448739579334, 29.979747008414023 ], [ -93.946302259204174, 29.815007011895304 ], [ -93.886382823324681, 29.722633961496555 ], [ -93.890464244378805, 29.689356372336491 ], [ -94.09967689884401, 29.670382982940836 ], [ -94.574456580041357, 29.484527262960384 ], [ -94.759609174994992, 29.384255042338424 ], [ -94.750127973461446, 29.418027016282977 ], [ -94.526265049882682, 29.547962323973991 ], [ -94.605333656414544, 29.56780363332463 ], [ -94.732637738419243, 29.53535001880536 ], [ -94.778291426684234, 29.547863447017093 ], [ -94.724365033025535, 29.655298753849792 ], [ -94.741937665531822, 29.749989919571348 ], [ -94.832322190464083, 29.752604665764849 ], [ -94.889912524692235, 29.676952807410203 ], [ -94.929858815278564, 29.680149829016543 ], [ -94.982285575090984, 29.712603443535798 ], [ -95.022874565897141, 29.702320240018523 ], [ -94.992826957329044, 29.530933514730634 ], [ -94.935906789142095, 29.460478189777362 ], [ -94.888286548067711, 29.370555090643933 ], [ -95.01833171904417, 29.259450350077501 ], [ -95.139044003922407, 29.167835356348291 ], [ -95.152145200711246, 29.07923061664016 ], [ -95.273505678973592, 28.963863180598622 ], [ -95.387637153053916, 28.898439594118543 ], [ -95.655862871293735, 28.744598035515565 ], [ -95.732393635931899, 28.711704967854544 ], [ -95.853419031173658, 28.64034876396066 ], [ -96.020411225043901, 28.586834357622365 ], [ -96.180531470409818, 28.501877078990873 ], [ -96.23453476836832, 28.488990115608658 ], [ -96.132290501772701, 28.560895635929754 ], [ -96.011034393631519, 28.631944222624426 ], [ -96.115030979629921, 28.622232308191442 ], [ -96.275359965238167, 28.655125375852464 ], [ -96.373440413315578, 28.657036997019134 ], [ -96.374110579356767, 28.631098275326522 ], [ -96.448735215992542, 28.594480842289059 ], [ -96.52604051679306, 28.648302865826579 ], [ -96.559708120616449, 28.684447886736649 ], [ -96.575704214976653, 28.715714977773146 ], [ -96.608514885173591, 28.723306530797117 ], [ -96.640040154930873, 28.708760631804736 ], [ -96.524645253067959, 28.488704471066512 ], [ -96.475475939668868, 28.479190310547324 ], [ -96.421110092868417, 28.457338503073117 ], [ -96.48880784935713, 28.406065307757828 ], [ -96.561696646082922, 28.367162718383184 ], [ -96.676338984440562, 28.341289914661843 ], [ -96.773546019398708, 28.421621948976266 ], [ -96.794579345396386, 28.320855343569818 ], [ -96.80690051285859, 28.220187615120281 ], [ -96.839507935977466, 28.19440270202729 ], [ -96.891599612769284, 28.157554556090389 ], [ -96.91986743611325, 28.185338980978401 ], [ -96.933276250101315, 28.224274529338686 ], [ -96.966636236725464, 28.189546744810798 ], [ -97.015470467103967, 28.163454214518566 ], [ -97.096033214317814, 28.158257681117206 ], [ -97.15649098029597, 28.144359975508934 ], [ -97.155073743913775, 28.102655872355541 ], [ -97.1412749152624, 28.060765001616915 ], [ -97.034328500049895, 28.093844836863184 ], [ -97.073088267153466, 27.986090926502698 ], [ -97.171454359773023, 27.879567484939145 ], [ -97.251577653845104, 27.854419778901715 ], [ -97.374130148754489, 27.870031351762876 ], [ -97.404386497564929, 27.859308695103834 ], [ -97.431517235904579, 27.837215188401657 ], [ -97.288733416981245, 27.670607516030458 ], [ -97.380458273995885, 27.419361168555554 ], [ -97.439108788928536, 27.328284504924994 ], [ -97.479780177198776, 27.31657307869699 ], [ -97.523862820481966, 27.313969318832036 ], [ -97.682148348981016, 27.394916587544941 ], [ -97.768445959694887, 27.457494714932096 ], [ -97.692376620855569, 27.28714070452736 ], [ -97.485103053378396, 27.237405595208244 ], [ -97.474512232661894, 27.172937819311485 ], [ -97.475671290323291, 27.117885326977031 ], [ -97.516523953014513, 27.053208810837944 ], [ -97.554712431033778, 26.967350653265839 ], [ -97.526494046168281, 26.907508121686149 ], [ -97.493809718749588, 26.759610166825539 ], [ -97.465827539947782, 26.691758601737206 ], [ -97.435082299517134, 26.485852832163786 ], [ -97.402315574634372, 26.396533981100291 ], [ -97.213932999088769, 26.067866976375129 ], [ -97.150371595296903, 26.065307161824364 ], [ -97.140187268736526, 26.029733429998586 ], [ -97.146235242600056, 25.961464384425568 ], [ -97.281784564177102, 25.941623075074943 ], [ -97.338649800721342, 25.911179958679256 ], [ -97.349735006222332, 25.884779811187784 ], [ -97.358161520215646, 25.870519556737548 ], [ -97.375624289436487, 25.871804957177218 ], [ -97.440273339754214, 25.890822291887048 ], [ -97.58724294985285, 25.984206084511854 ], [ -97.801415931655711, 26.04204910429651 ], [ -98.08279228516281, 26.064428255540832 ], [ -98.275031062027381, 26.111197056153046 ], [ -98.378121275920904, 26.182355506133149 ], [ -98.48586969311711, 26.224575966728111 ], [ -98.59829279310884, 26.237858437937916 ], [ -98.691412913848595, 26.276453410113319 ], [ -98.76523005533636, 26.340404828568509 ], [ -98.873209185432003, 26.381230025438356 ], [ -99.015267906671426, 26.398961959708529 ], [ -99.107767299848433, 26.446917283803501 ], [ -99.172081267145572, 26.564141409369 ], [ -99.172366911687718, 26.565921194593145 ], [ -99.229929780094508, 26.761928282148347 ], [ -99.302461521142618, 26.884711489957155 ], [ -99.443536965977344, 27.036674386379076 ], [ -99.456506326823657, 27.056614572686613 ], [ -99.456533792645018, 27.056669504329335 ], [ -99.457720316127777, 27.08170734708132 ], [ -99.440257546906935, 27.170125319204203 ], [ -99.455138528919917, 27.23371418881743 ], [ -99.499814433944479, 27.285514727902836 ], [ -99.510070171640393, 27.340325521009333 ], [ -99.485834330872109, 27.398047691179997 ], [ -99.484257792726041, 27.467393396950328 ], [ -99.505318584545066, 27.548340665663218 ], [ -99.595313094814017, 27.63587973150257 ], [ -99.754268789354256, 27.729933690168579 ], [ -99.889631343346053, 27.867295755955396 ], [ -100.001411743117956, 28.047845079249058 ], [ -100.111945194600096, 28.172957388709207 ], [ -100.221264656778118, 28.242621698007312 ], [ -100.296043102013499, 28.327677853595702 ], [ -100.336275037141974, 28.42813684180291 ], [ -100.348156751462412, 28.486430301057879 ], [ -100.331726697124722, 28.502547245032062 ], [ -100.398902603007585, 28.6142232746828 ], [ -100.549695455439576, 28.821337540396073 ], [ -100.636306176516939, 28.972806052033519 ], [ -100.658630396118539, 29.068540918966761 ], [ -100.754595975951219, 29.182513091283212 ], [ -100.924142491207959, 29.314700596325764 ], [ -101.016334267185741, 29.400657630854752 ], [ -101.03863102096598, 29.460291422192114 ], [ -101.038971597150848, 29.460401285477545 ], [ -101.303527881656933, 29.634084153431147 ], [ -101.380344290837243, 29.742552175146997 ], [ -101.440390069494995, 29.776840506533119 ], [ -101.509301815287841, 29.773116141156677 ], [ -101.544622861557102, 29.783531180616478 ], [ -101.546380674124151, 29.808074638583989 ], [ -101.568704893725752, 29.809239189409652 ], [ -101.611595520361902, 29.786969901450775 ], [ -101.752335882176041, 29.782476493076246 ], [ -101.990898513346792, 29.795704032643329 ], [ -102.163087240618395, 29.825257256426951 ], [ -102.268918543483665, 29.871169123412727 ], [ -102.343076261156313, 29.864972834113857 ], [ -102.385659270593223, 29.806657402201793 ], [ -102.476247042603561, 29.769084158580995 ], [ -102.61494394730849, 29.752340993879784 ], [ -102.73418955732609, 29.643949876463751 ], [ -102.834000352149204, 29.443965737975589 ], [ -102.877824816711595, 29.315315830724231 ], [ -102.865679430506091, 29.258033113695319 ], [ -102.892008166862027, 29.216383942184649 ], [ -102.956811025779373, 29.190368316192234 ], [ -103.022827874000839, 29.132206692879791 ], [ -103.090009273047983, 29.041866113261705 ], [ -103.168297850253197, 28.998173484641839 ], [ -103.257699098780776, 29.001128807020194 ], [ -103.422933480083969, 29.070683253032854 ], [ -103.663979021505682, 29.206902740651103 ], [ -103.852905420314215, 29.291079989955961 ], [ -103.989745635495197, 29.323171055633253 ], [ -104.110617222137336, 29.386111731862371 ], [ -104.215520180240617, 29.479902018643315 ], [ -104.312205364592927, 29.54243620071631 ], [ -104.40062333671581, 29.573747237066982 ], [ -104.503977222494385, 29.677666918765581 ], [ -104.622212090285942, 29.85427215011191 ], [ -104.68132952418172, 29.990524596715773 ], [ -104.68132952418172, 30.134357610015073 ], [ -104.835896180468595, 30.44765474110703 ], [ -104.917854191407542, 30.583357871283695 ], [ -104.978833807991535, 30.645935998670865 ], [ -105.098150829144686, 30.720555142142359 ], [ -105.275816241195514, 30.807270233340901 ], [ -105.513994350867236, 30.980766333709241 ], [ -105.812707130816904, 31.241043443247406 ], [ -106.024089585169577, 31.397774406257469 ], [ -106.14806480962541, 31.4509262637538 ], [ -106.255703363536185, 31.544661618892022 ], [ -106.346966794751978, 31.678991458000667 ], [ -106.436027467094689, 31.764465094073728 ], [ -106.445382325849991, 31.768398199692513 ], [ -106.566358282613294, 31.819528572736743 ], [ -106.566281378313491, 31.819528572736743 ], [ -106.668261973024045, 32.000945815985375 ], [ -106.662219492324795, 32.001297378498791 ], [ -106.437450196641151, 32.001407241784236 ], [ -106.212658928300414, 32.001484146084039 ], [ -105.98786765995969, 32.001561050383856 ], [ -105.763076391618952, 32.001659927340754 ], [ -105.538279630113948, 32.001769790626184 ], [ -105.313488361773224, 32.001846694926002 ], [ -105.088697093432486, 32.001923599225805 ], [ -104.863927797748843, 32.002022476182702 ], [ -104.639163995229481, 32.002132339468147 ], [ -104.414372726888743, 32.00220924376795 ], [ -104.189575965383739, 32.002286148067768 ], [ -103.964784697043015, 32.002385025024651 ], [ -103.739993428702277, 32.002494888310096 ], [ -103.515202160361554, 32.002571792609913 ], [ -103.290405398856549, 32.002648696909716 ], [ -103.065641596337173, 32.002747573866614 ], [ -103.064169428312269, 32.283865748652914 ], [ -103.062719232944445, 32.564983923439229 ], [ -103.061247064919542, 32.846113084554077 ], [ -103.059774896894623, 33.127231259340391 ], [ -103.05830272886972, 33.408349434126691 ], [ -103.056830560844816, 33.689467608913006 ], [ -103.055358392819898, 33.970585783699306 ], [ -103.053886224794994, 34.251681985828526 ], [ -103.05241405677009, 34.532778187957746 ], [ -103.050941888745172, 34.81389636274406 ], [ -103.049491693377348, 35.095014537530361 ], [ -103.048019525352444, 35.376132712316675 ], [ -103.04654735732754, 35.657250887102975 ], [ -103.045102655123983, 35.938380048217823 ], [ -103.043624993934813, 36.219498223004138 ], [ -103.042152825909895, 36.500616397790438 ], [ -103.000294914156896, 36.501231632188905 ], [ -102.812917587673084, 36.501209659531824 ], [ -102.625562233846352, 36.501187686874729 ], [ -102.438212373183902, 36.501187686874729 ], [ -102.250835046700089, 36.501154727889102 ], [ -102.063452227051997, 36.501132755232021 ], [ -101.876102366389546, 36.501132755232021 ], [ -101.688747012562814, 36.501110782574926 ], [ -101.501369686079002, 36.501077823589299 ], [ -101.31399235959519, 36.501055850932204 ], [ -101.126637005768458, 36.501022891946576 ], [ -100.939287145106007, 36.500978946632401 ], [ -100.751904325457915, 36.500978946632401 ], [ -100.564526998974102, 36.500945987646759 ], [ -100.377177138311637, 36.500924014989678 ], [ -100.18982178448492, 36.500924014989678 ], [ -100.002444458001108, 36.500902042332584 ], [ -100.002235717758765, 36.381238951830298 ], [ -100.002054443337784, 36.261608820313654 ], [ -100.001873168916802, 36.141978688796996 ], [ -100.00166992183874, 36.022348557280353 ], [ -100.001461181596412, 35.902718425763695 ], [ -100.00127990717543, 35.783088294247037 ], [ -100.001098632754449, 35.663458162730393 ], [ -100.000895385676387, 35.543828031213735 ], [ -100.000686645434044, 35.424197899697091 ], [ -100.000505371013062, 35.304567768180434 ], [ -100.000324096592095, 35.184937636663776 ], [ -100.000115356349752, 35.06527454616149 ], [ -99.99991210927169, 34.945622441987751 ], [ -99.999730834850709, 34.825992310471108 ], [ -99.999549560429728, 34.70636217895445 ], [ -99.999340820187399, 34.586721061109259 ], [ -99.940690305254748, 34.576338980635086 ], [ -99.867026972366588, 34.543369008674262 ], [ -99.685615222282209, 34.415828720605859 ], [ -99.632029404808392, 34.388494735188146 ], [ -99.536168195096892, 34.404743515104855 ], [ -99.432297951876734, 34.389219832872058 ], [ -99.404985939116116, 34.392065291964983 ], [ -99.384650244981003, 34.446788194443116 ], [ -99.374938330548019, 34.457873399944106 ], [ -99.360386938391358, 34.456093614719961 ], [ -99.270315523822603, 34.40722642535583 ], [ -99.252874727258842, 34.388077254703475 ], [ -99.199909637347758, 34.318314068448458 ], [ -99.186577727659511, 34.235477151225993 ], [ -99.15750790233183, 34.223282326542048 ], [ -99.102290615069208, 34.213471535152166 ], [ -98.968839682244081, 34.208604591607127 ], [ -98.798952590802472, 34.154738622755431 ], [ -98.730117749309443, 34.146575780647169 ], [ -98.608394722205134, 34.16127548823917 ], [ -98.493851260804405, 34.088776706176688 ], [ -98.453674257318639, 34.07813095381745 ], [ -98.420418640815669, 34.088051608492776 ], [ -98.355978330740271, 34.141511083188348 ], [ -98.21407891126475, 34.135336766546558 ], [ -98.098634570923394, 34.145026708322447 ], [ -98.089587329367333, 34.084096530216897 ], [ -98.069383471174746, 34.040305024640134 ], [ -97.973961714604997, 33.993733977941716 ], [ -97.951071699083371, 33.97121200442632 ], [ -97.946237714523974, 33.897076259410767 ], [ -97.921589886435299, 33.878366541900178 ], [ -97.88285758515309, 33.871115565061075 ], [ -97.842422402946553, 33.875784754692305 ], [ -97.795291053492377, 33.899064784877254 ], [ -97.691937167713803, 33.972134856024027 ], [ -97.66036245947808, 33.990042571550902 ], [ -97.640933137447846, 33.991668548175426 ], [ -97.621789459959757, 33.987768401542269 ], [ -97.605925201542078, 33.971651457568086 ], [ -97.571246855492646, 33.915939785520976 ], [ -97.481565455587202, 33.885705409367631 ], [ -97.43017141065792, 33.838508141942199 ], [ -97.398492332301018, 33.831323083074352 ], [ -97.363610739173524, 33.840178063880899 ], [ -97.308162739011479, 33.869225916551486 ], [ -97.264678850633942, 33.867775721183662 ], [ -97.21493824815056, 33.897109218396395 ], [ -97.194761855779319, 33.890616298226846 ], [ -97.186181533186385, 33.870082850177923 ], [ -97.201013076720912, 33.808163902503409 ], [ -97.192487685770701, 33.784631186761956 ], [ -97.172382704534996, 33.756879720859573 ], [ -97.145070691774379, 33.737686604893028 ], [ -97.119000134139242, 33.734764241500301 ], [ -97.098950084546274, 33.750441732332732 ], [ -97.061228525490122, 33.828499596638522 ], [ -97.063837778519343, 33.856800378968117 ], [ -97.02158985210302, 33.866512293401101 ], [ -97.002160530072786, 33.881596522492131 ], [ -96.977693976405092, 33.938033292223153 ], [ -96.934050786263668, 33.953480070156147 ], [ -96.911001468978156, 33.950436857149441 ], [ -96.889995608801854, 33.934616544045937 ], [ -96.847571901128831, 33.88317855380248 ], [ -96.746283445116546, 33.854185632774616 ], [ -96.720212887481409, 33.852790369049515 ], [ -96.694015987068013, 33.863798670250702 ], [ -96.648538080059723, 33.906381679687613 ], [ -96.625131707096529, 33.911446377146447 ], [ -96.606345085286122, 33.90563460934662 ], [ -96.595364249906311, 33.899405361062122 ], [ -96.591590446051413, 33.849274743915416 ], [ -96.487203845389686, 33.79229964408573 ], [ -96.411139999714649, 33.775204916871118 ], [ -96.336751569142578, 33.717713459599864 ], [ -96.315048077103711, 33.711121662473417 ], [ -96.278562480008773, 33.757626791200565 ], [ -96.207272194086144, 33.774062338702535 ], [ -96.139343724698008, 33.821962731154784 ], [ -95.941578824575743, 33.882837977617626 ], [ -95.863081507128186, 33.863304285466214 ], [ -95.78391402363944, 33.864501795277519 ], [ -95.763166342183908, 33.891473231853283 ], [ -95.622788529211732, 33.930254971613934 ], [ -95.594471267389338, 33.945163419448278 ], [ -95.555711500285767, 33.926091153095726 ], [ -95.541835767334575, 33.898163905936627 ], [ -95.523494091830202, 33.886562342994068 ], [ -95.427116524677132, 33.872785486999774 ], [ -95.373887762880983, 33.874268641353225 ], [ -95.276016055045915, 33.910622402505638 ], [ -95.238030824104712, 33.956479337848691 ], [ -95.215860413102718, 33.95903915239947 ], [ -95.146075254190634, 33.936616055840972 ], [ -94.962389334097637, 33.843408044472866 ], [ -94.869373583479046, 33.768195639259986 ], [ -94.765734053158326, 33.73161116520815 ], [ -94.709198406470421, 33.69928938663142 ], [ -94.484148959408898, 33.648433671800802 ] ] ], [ [ [ -95.039694634898154, 29.145917630902829 ], [ -95.089665950280974, 29.136304593426743 ], [ -94.871669726144759, 29.290146152029706 ], [ -94.825988572058421, 29.341309484059551 ], [ -94.767618208503634, 29.339035314050932 ], [ -94.864951586240053, 29.252891511936681 ], [ -95.039694634898154, 29.145917630902829 ] ] ], [ [ [ -96.764399900885749, 28.152566762931372 ], [ -96.801116210880124, 28.148413930741697 ], [ -96.755610838050472, 28.202433708193013 ], [ -96.681639887963087, 28.229701775639469 ], [ -96.519322376888354, 28.333467648738448 ], [ -96.453124254245907, 28.340597775963559 ], [ -96.418632675781723, 28.376325316388957 ], [ -96.403564926183492, 28.38157678143304 ], [ -96.413331772259198, 28.337807248513357 ], [ -96.543893300677226, 28.275591669968151 ], [ -96.764399900885749, 28.152566762931372 ] ] ], [ [ [ -97.014355354756731, 27.901628032655694 ], [ -97.036009408317142, 27.89917808139036 ], [ -96.987642096901766, 27.981026229043863 ], [ -96.978671759645508, 28.013842392405081 ], [ -96.8993010290787, 28.11745445690444 ], [ -96.85741565150434, 28.132912221165981 ], [ -96.83976611469825, 28.088802112061444 ], [ -96.921339604138154, 28.016039658113897 ], [ -97.014355354756731, 27.901628032655694 ] ] ], [ [ [ -97.353613180198394, 27.300060626895217 ], [ -97.384825339592169, 27.242525224309787 ], [ -97.37622304434214, 27.328251545939366 ], [ -97.295039569565546, 27.52307211001181 ], [ -97.130008435340429, 27.779130469389031 ], [ -97.060558359448933, 27.822021096025182 ], [ -97.250907487803914, 27.541188565781013 ], [ -97.353613180198394, 27.300060626895217 ] ] ], [ [ [ -97.17070179626775, 26.159383093147454 ], [ -97.184500624919139, 26.112932896063015 ], [ -97.267315569484524, 26.329759076209271 ], [ -97.402084861734949, 26.820507385945461 ], [ -97.40717702501513, 27.10020832434958 ], [ -97.385989890417846, 27.196503494038581 ], [ -97.351234640068597, 26.801468078578552 ], [ -97.202227066025031, 26.299788371940991 ], [ -97.17070179626775, 26.159383093147454 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-UT", "NAME_1": "Utah" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.046670266878124, 37.000845909060189 ], [ -109.358769888158776, 37.001054649302517 ], [ -109.670869509439441, 37.001252403216313 ], [ -109.982969130720093, 37.001461143458656 ], [ -110.295068752000745, 37.001669883700984 ], [ -110.607168373281397, 37.001878623943327 ], [ -110.919267994562063, 37.00208736418567 ], [ -111.231373109006981, 37.002285118099465 ], [ -111.543472730287647, 37.002493858341793 ], [ -111.855572351568298, 37.002702598584136 ], [ -112.16767197284895, 37.002911338826479 ], [ -112.479771594129602, 37.003120079068808 ], [ -112.791871215410268, 37.003317832982603 ], [ -113.10397083669092, 37.003526573224946 ], [ -113.416070457971571, 37.003735313467274 ], [ -113.728170079252237, 37.003944053709617 ], [ -114.040269700532889, 37.00415279395196 ], [ -114.040346604832692, 37.160312467877731 ], [ -114.040396043311148, 37.316461155474954 ], [ -114.040472947610951, 37.47259885674363 ], [ -114.040555345075035, 37.628758530669401 ], [ -114.040632249374838, 37.784929190923705 ], [ -114.040709153674655, 37.941066892192396 ], [ -114.040786057974458, 38.097204593461072 ], [ -114.040862962274275, 38.253375253715376 ], [ -114.040939866574078, 38.409545913969708 ], [ -114.041016770873881, 38.565683615238385 ], [ -114.041071702516604, 38.721821316507061 ], [ -114.041148606816421, 38.877991976761365 ], [ -114.041225511116224, 39.034151650687136 ], [ -114.041274949594666, 39.190322310941468 ], [ -114.041351853894483, 39.346492971195772 ], [ -114.041428758194286, 39.502630672464448 ], [ -114.04151115565837, 39.658768373733125 ], [ -114.041588059958173, 39.814939033987429 ], [ -114.041637498436629, 39.9710987079132 ], [ -114.041714402736432, 40.127269368167532 ], [ -114.041791307036249, 40.283429042093303 ], [ -114.041846238678971, 40.439577729690512 ], [ -114.041923142978774, 40.595715430959189 ], [ -114.042000047278577, 40.751875104884959 ], [ -114.042076951578395, 40.908045765139292 ], [ -114.042153855878198, 41.064183466407968 ], [ -114.042230760178015, 41.220321167676644 ], [ -114.042307664477818, 41.376491827930948 ], [ -114.042390061941902, 41.532662488185281 ], [ -114.042466966241705, 41.688800189453957 ], [ -114.04251640472016, 41.844937890722633 ], [ -114.042593309019963, 42.001108550976937 ], [ -113.855551065556739, 42.001108550976937 ], [ -113.66853628791489, 42.001075591991309 ], [ -113.481516017108746, 42.001053619334215 ], [ -113.294501239466896, 42.001053619334215 ], [ -113.107480968660752, 42.001053619334215 ], [ -112.920466191018903, 42.00103164667712 ], [ -112.73345141337704, 42.000998687691492 ], [ -112.54643114257091, 42.000998687691492 ], [ -112.359416364929046, 42.000998687691492 ], [ -112.172396094122917, 42.000976715034426 ], [ -111.985381316481053, 42.000954742377331 ], [ -111.79836653883919, 42.000954742377331 ], [ -111.61134626803306, 42.000921783391703 ], [ -111.424331490391197, 42.000899810734609 ], [ -111.237311219585067, 42.000899810734609 ], [ -111.050296441943203, 42.000877838077514 ], [ -111.050247003464762, 41.875897364559876 ], [ -111.0502195376434, 41.750883932056638 ], [ -111.050192071822039, 41.625881485881905 ], [ -111.050142633343597, 41.5008790397072 ], [ -111.050087701700875, 41.375876593532496 ], [ -111.05006572904378, 41.25086316102923 ], [ -111.050038263222419, 41.125860714854497 ], [ -111.049988824743977, 41.000858268679792 ], [ -110.799538986088507, 41.000858268679792 ], [ -110.549089147433037, 41.000858268679792 ], [ -110.298639308777581, 41.000858268679792 ], [ -110.048189470122111, 41.000858268679792 ], [ -109.797739631466641, 41.000858268679792 ], [ -109.547289792811185, 41.000858268679792 ], [ -109.296839954155715, 41.000858268679792 ], [ -109.046390115500245, 41.000858268679792 ], [ -109.046412088157339, 40.750842390001822 ], [ -109.046439553978701, 40.500859470309479 ], [ -109.046439553978701, 40.250876550617136 ], [ -109.046467019800062, 40.000871658267698 ], [ -109.046488992457142, 39.750855779589727 ], [ -109.046488992457142, 39.500839900911757 ], [ -109.046516458278504, 39.250835008562319 ], [ -109.046543924099865, 39.000819129884349 ], [ -109.046543924099865, 38.750869169177662 ], [ -109.04656589675696, 38.500853290499663 ], [ -109.046593362578321, 38.250848398150254 ], [ -109.046593362578321, 38.000832519472269 ], [ -109.046620828399668, 37.750827627122845 ], [ -109.046648294221029, 37.500833721101955 ], [ -109.046648294221029, 37.250850801409612 ], [ -109.046670266878124, 37.000845909060189 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-VA", "NAME_1": "Virginia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.122052960183439, 38.943536412855451 ], [ -77.101827129333756, 38.93596683248856 ], [ -77.053047830597976, 38.915301548497126 ], [ -77.030361062154412, 38.889252963519084 ], [ -77.045599099845077, 38.775797148644187 ], [ -77.09190647465843, 38.719547146498428 ], [ -77.164668928605977, 38.676579615562474 ], [ -77.260392809210686, 38.599993919281587 ], [ -77.283804675338146, 38.529219990800527 ], [ -77.313698475306623, 38.396625991601837 ], [ -77.27325779993582, 38.351768812156308 ], [ -77.23191624562439, 38.34003541327121 ], [ -77.109913067142202, 38.370137953482043 ], [ -77.046763650670741, 38.356679701015508 ], [ -76.906336399220123, 38.197048347269799 ], [ -76.6448727661992, 38.133953862441075 ], [ -76.549511434436454, 38.09450195663922 ], [ -76.471761187329889, 38.011170654632252 ], [ -76.354943555920528, 37.963215330537295 ], [ -76.264284372774654, 37.893551021239176 ], [ -76.261801462523692, 37.848078607395166 ], [ -76.29322236215981, 37.794333488157463 ], [ -76.305625927086083, 37.721571034209916 ], [ -76.344143994961684, 37.675681139881235 ], [ -76.43661592231733, 37.670418688508605 ], [ -76.49248140296406, 37.682218005364973 ], [ -76.792803680045438, 37.937990720200048 ], [ -76.828641083756281, 37.961512449612954 ], [ -76.939976537222137, 38.09545776722257 ], [ -77.070636942597062, 38.167209478944045 ], [ -77.111099590624974, 38.165682379276433 ], [ -76.925123021030529, 38.033022462106459 ], [ -76.84917453180519, 37.940242917551586 ], [ -76.715415981780836, 37.810175773918047 ], [ -76.619834923447215, 37.755090322597951 ], [ -76.549456502793731, 37.669144274397496 ], [ -76.484054888970732, 37.628868393954846 ], [ -76.305570995443361, 37.571508772626117 ], [ -76.367632765388962, 37.53028806792868 ], [ -76.268569040906854, 37.495153789244654 ], [ -76.254407663413517, 37.430631081705187 ], [ -76.263482370790939, 37.35702268045975 ], [ -76.400987258848829, 37.386147437430139 ], [ -76.405458694566278, 37.331907933407948 ], [ -76.393132033939807, 37.299948703673181 ], [ -76.453930376102832, 37.273537569853175 ], [ -76.538393269949836, 37.309353000906924 ], [ -76.75769137401852, 37.505436992761929 ], [ -76.755878629808734, 37.479212626527172 ], [ -76.7381027502244, 37.448769510131484 ], [ -76.610903038340865, 37.322580540474007 ], [ -76.497392291823274, 37.246873750476652 ], [ -76.401119094791369, 37.212695282375975 ], [ -76.326939404461626, 37.149260221362368 ], [ -76.300758983541058, 37.110884975757841 ], [ -76.283301707484483, 37.052679407131222 ], [ -76.338277295519134, 37.013117638043937 ], [ -76.400888381891932, 36.991331748541 ], [ -76.462016313911278, 37.030783654342841 ], [ -76.50685152069974, 37.072311976239519 ], [ -76.602300743090836, 37.142844205492608 ], [ -76.63089815629111, 37.221704071782128 ], [ -76.703506801639037, 37.217672089206445 ], [ -77.006971168684032, 37.317669651614807 ], [ -77.25088963502003, 37.329194310257563 ], [ -77.227060288407898, 37.309067356364778 ], [ -77.196210677856072, 37.295707980855155 ], [ -77.001961402867934, 37.2710546596022 ], [ -76.925166966344705, 37.225010956673898 ], [ -76.765414762985017, 37.184141814489863 ], [ -76.671855189103496, 37.172946745703442 ], [ -76.633919396640735, 37.047427942087154 ], [ -76.50463228233383, 36.961020468087838 ], [ -76.487856158646991, 36.897025104318487 ], [ -76.399548049809553, 36.88984004545064 ], [ -76.244256295838767, 36.952626913080152 ], [ -76.144006047873901, 36.930610310677778 ], [ -75.999414977905062, 36.912658649836729 ], [ -75.966335142658792, 36.861956743605731 ], [ -75.941560971791858, 36.765529737974205 ], [ -75.890430598747642, 36.657017770944179 ], [ -75.857427667801176, 36.550582220008991 ], [ -75.889057307679636, 36.550505315709174 ], [ -75.966445005944237, 36.551362249335611 ], [ -76.214823921669137, 36.552889349003252 ], [ -76.576614706954743, 36.555701849110534 ], [ -76.938394505911788, 36.55851434921783 ], [ -77.300185291197394, 36.56133783565366 ], [ -77.661976076482986, 36.564150335760942 ], [ -78.023755875440045, 36.566962835868239 ], [ -78.385546660725637, 36.569753363318426 ], [ -78.747337446011244, 36.57257684975427 ], [ -79.109117244968289, 36.575389349861553 ], [ -79.470908030253895, 36.578179877311754 ], [ -79.83268782921094, 36.580992377419037 ], [ -80.194478614496546, 36.58381586385488 ], [ -80.556269399782138, 36.586628363962163 ], [ -80.918049198739197, 36.589451850397992 ], [ -81.27983998402479, 36.592264350505289 ], [ -81.641630769310396, 36.595076850612571 ], [ -81.658890291453162, 36.610578560188287 ], [ -81.800712806628894, 36.615181831848261 ], [ -81.90533561335431, 36.618543648382754 ], [ -81.952510908122647, 36.598021186662393 ], [ -82.162184988386713, 36.598856147631736 ], [ -82.329385922499299, 36.59954828633002 ], [ -82.611778511396722, 36.600712837155697 ], [ -82.95583736241214, 36.602130073537879 ], [ -83.440762918019956, 36.604118599004366 ], [ -83.667520739170087, 36.605030464273526 ], [ -83.566182844679361, 36.652623239526548 ], [ -83.416889626093649, 36.681011912484479 ], [ -83.150218473342818, 36.762332716367879 ], [ -83.043815881393257, 36.845554155089403 ], [ -82.894500690150466, 36.906374469909508 ], [ -82.832021439720194, 36.979268759799581 ], [ -82.731892041369306, 37.048076135471248 ], [ -82.6948900868328, 37.126155972434134 ], [ -82.681585642965899, 37.138120084218656 ], [ -82.516505070262326, 37.208839081056993 ], [ -82.343206723807768, 37.296927463323556 ], [ -81.965277021890898, 37.539725324148051 ], [ -81.957707441524008, 37.507634258470745 ], [ -81.971396406889951, 37.473060282542477 ], [ -81.939382245512462, 37.432597634514579 ], [ -81.913059002320807, 37.368964819587177 ], [ -81.875639567299615, 37.329611790742234 ], [ -81.829266274514993, 37.298597385262255 ], [ -81.752164220792537, 37.270769015060054 ], [ -81.660768953634204, 37.22175900342485 ], [ -81.589017241912728, 37.208070038058906 ], [ -81.564836332787166, 37.209794891640328 ], [ -81.485537013355895, 37.257003145394307 ], [ -81.419366356534809, 37.28227170104573 ], [ -81.350042623421558, 37.333687718632092 ], [ -81.227127579670224, 37.263276338992981 ], [ -81.17811756803502, 37.263331270635703 ], [ -81.057344858349779, 37.293719455388668 ], [ -80.943680303232568, 37.301904270154026 ], [ -80.915368534574441, 37.311363499030492 ], [ -80.873071169679676, 37.340620091943421 ], [ -80.871851687211276, 37.399418922311412 ], [ -80.862425417320438, 37.414569069373727 ], [ -80.843484986910426, 37.421721169255932 ], [ -80.821083863009008, 37.423094460323938 ], [ -80.770030394264609, 37.401594215363147 ], [ -80.71984484547518, 37.401022926278856 ], [ -80.507402210418007, 37.469061258952436 ], [ -80.49141710238635, 37.463919657193799 ], [ -80.464511583781857, 37.432729470457105 ], [ -80.371182722799773, 37.47259885674363 ], [ -80.316075298822597, 37.509699688237035 ], [ -80.291971293996852, 37.565894758740086 ], [ -80.245817727783106, 37.620782456146387 ], [ -80.255375833616469, 37.645270982471175 ], [ -80.285302592570574, 37.677054430949241 ], [ -80.245927591068536, 37.751025381036641 ], [ -80.188073584955333, 37.82422728812594 ], [ -79.971730803265018, 38.046151124716658 ], [ -79.902692714693927, 38.180744635710369 ], [ -79.812879478845943, 38.267042246424239 ], [ -79.783447104676313, 38.336036389681169 ], [ -79.715254963403112, 38.404041763369094 ], [ -79.668650957719066, 38.544260274577397 ], [ -79.639603105048479, 38.572451193621532 ], [ -79.597745193295466, 38.577131369581338 ], [ -79.555272047144001, 38.559377462654084 ], [ -79.524675122148693, 38.533460713618553 ], [ -79.504833812798054, 38.491350116309036 ], [ -79.395871406297715, 38.454392107086704 ], [ -79.304168521940156, 38.449898698712161 ], [ -79.240272035127703, 38.476518572774495 ], [ -79.202940490734861, 38.525814228951845 ], [ -79.152502256388928, 38.618319115293133 ], [ -79.104239315094716, 38.672932154485835 ], [ -79.073312800243087, 38.741948270399831 ], [ -79.041188775580153, 38.789672881595379 ], [ -78.991991996359701, 38.819698517506396 ], [ -78.868725390094951, 38.81794070493936 ], [ -78.805499069323673, 38.860183138191388 ], [ -78.756785688559162, 38.908215366586177 ], [ -78.727309369075357, 38.92388187109006 ], [ -78.692757365804169, 38.921651646395617 ], [ -78.581476843981036, 38.999017372003124 ], [ -78.435237824730578, 39.160758100829298 ], [ -78.40370706180903, 39.262645311747235 ], [ -78.365782255674816, 39.335847218836534 ], [ -78.351049589097187, 39.410927788106875 ], [ -78.322221462997476, 39.451851861933648 ], [ -78.193000266661826, 39.370388235779188 ], [ -78.118348164204704, 39.323333790624815 ], [ -77.948598401869887, 39.216315964276788 ], [ -77.835790780379114, 39.145212445939393 ], [ -77.79175757557438, 39.226621140451158 ], [ -77.726641606293541, 39.34643803955305 ], [ -77.668820559165965, 39.309534961973441 ], [ -77.534150143872438, 39.265611620454138 ], [ -77.478855952310013, 39.220864304294054 ], [ -77.502937984478663, 39.175282027164599 ], [ -77.506453609612777, 39.142619672402986 ], [ -77.480921382076303, 39.112956585333933 ], [ -77.301086170138007, 39.053377725639308 ], [ -77.190300033099348, 38.96904666773483 ], [ -77.122052960183439, 38.943536412855451 ] ] ], [ [ [ -75.659256273522786, 37.953964841903158 ], [ -75.620002121634741, 37.999206542847745 ], [ -75.469423502609374, 38.014938965322898 ], [ -75.37596280568475, 38.02499145594075 ], [ -75.596359542607843, 37.63118650927764 ], [ -75.58710905397372, 37.558720686200786 ], [ -75.631548752934577, 37.53533079273042 ], [ -75.698840015267166, 37.516368389663299 ], [ -75.766867361612199, 37.473005350899768 ], [ -75.812054130914063, 37.425214821732951 ], [ -75.853999933295427, 37.296641818781396 ], [ -75.934375912924025, 37.15189694021295 ], [ -75.984506530070732, 37.212200897591487 ], [ -75.997371520795866, 37.263825655420192 ], [ -75.975047301194266, 37.398441139070982 ], [ -75.888156428739009, 37.619156479521862 ], [ -75.792366630163045, 37.756353750380526 ], [ -75.719351490658994, 37.821381829033015 ], [ -75.659256273522786, 37.953964841903158 ] ] ], [ [ [ -75.252476472849125, 38.037449952509746 ], [ -75.225790680815521, 38.040339356916832 ], [ -75.225845612458244, 38.040262452617014 ], [ -75.333050206391519, 37.888277583538013 ], [ -75.378544592892609, 37.872050776278385 ], [ -75.252476472849125, 38.037449952509746 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-VT", "NAME_1": "Vermont" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.352182210905525, 45.005418968316661 ], [ -73.182014968086037, 45.00562770855899 ], [ -72.765885801821341, 45.006111107014931 ], [ -72.349767621885192, 45.006605491799434 ], [ -71.933638455620496, 45.00706691759828 ], [ -71.517520275684348, 45.007561302382754 ], [ -71.533483411058924, 44.987972678588648 ], [ -71.510225353531069, 44.908343769301041 ], [ -71.620659928056313, 44.771893568783383 ], [ -71.618286881090796, 44.727761487021752 ], [ -71.568441908486236, 44.60763697072062 ], [ -71.571496107821488, 44.579193366119938 ], [ -71.587799819380933, 44.565262701526024 ], [ -71.609289078013177, 44.514055424182004 ], [ -71.638205094741238, 44.481678713962566 ], [ -71.683007342544059, 44.450279786983543 ], [ -71.825511010089514, 44.374089598530247 ], [ -71.867676539041753, 44.354918455220798 ], [ -72.001775665250975, 44.329496090969741 ], [ -72.031208039420605, 44.300733882841314 ], [ -72.062233431229131, 44.116350330885751 ], [ -72.106211704391143, 44.013078842571275 ], [ -72.114923862926616, 43.965431135675516 ], [ -72.173854529237147, 43.884088359135035 ], [ -72.22238114241641, 43.790869361438411 ], [ -72.296692668688664, 43.714953831198699 ], [ -72.337671674158145, 43.621987519058564 ], [ -72.362368940725275, 43.586644500132223 ], [ -72.384956832211927, 43.529229947160758 ], [ -72.407072311571198, 43.332036336122798 ], [ -72.438185594008075, 43.224644974604274 ], [ -72.473715380519678, 43.038536569067304 ], [ -72.496479053263045, 42.991668891498193 ], [ -72.519418507263111, 42.966674994060384 ], [ -72.549806692016077, 42.886683535930814 ], [ -72.552805959708621, 42.856449159777469 ], [ -72.539622365455699, 42.82963153180134 ], [ -72.483658007852085, 42.766174498130653 ], [ -72.466859911508166, 42.730315121762715 ], [ -72.565176565649267, 42.733050717570194 ], [ -72.663493219790382, 42.735786313377673 ], [ -72.761776914945855, 42.738532895513686 ], [ -72.860093569086956, 42.741268491321165 ], [ -72.958410223228071, 42.744004087128644 ], [ -73.056693918383544, 42.746739682936123 ], [ -73.155010572524645, 42.749486265072164 ], [ -73.25332722666576, 42.752221860879644 ], [ -73.280199786284612, 42.81315203898518 ], [ -73.266554766232844, 42.864776796813885 ], [ -73.264544268109276, 42.935210149110077 ], [ -73.261929521915789, 43.027066842067256 ], [ -73.259084062822865, 43.1278554201308 ], [ -73.25523884783243, 43.265371294517251 ], [ -73.252657060624571, 43.357195028488775 ], [ -73.250327958973216, 43.439669396869306 ], [ -73.247097978381262, 43.553048307444357 ], [ -73.306160480634304, 43.616252655558554 ], [ -73.330484212030939, 43.626689667675436 ], [ -73.349237874855703, 43.620383515091135 ], [ -73.391436362793584, 43.578525603338136 ], [ -73.404949546902813, 43.578811247880282 ], [ -73.415924889118372, 43.589643767824754 ], [ -73.413365074567594, 43.627854218501113 ], [ -73.375846762589504, 43.762184057609772 ], [ -73.374967856305986, 43.804151832648216 ], [ -73.383009848800256, 43.875826640069874 ], [ -73.424944664853072, 44.038292466579975 ], [ -73.42613118833583, 44.074854967974716 ], [ -73.409750572476582, 44.131412587319716 ], [ -73.381120200290667, 44.187431876566052 ], [ -73.331824544113317, 44.244582757652438 ], [ -73.320915119869028, 44.268873530063445 ], [ -73.324639485245484, 44.367860350245735 ], [ -73.309753010068235, 44.459640138903097 ], [ -73.372078451898886, 44.59733179454625 ], [ -73.348567708814514, 44.775299330632038 ], [ -73.365805258300199, 44.860366472548975 ], [ -73.345052083680415, 44.938863789996532 ], [ -73.352182210905525, 45.005418968316661 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-WA", "NAME_1": "Washington" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.788776503988501, 48.993027763009991 ], [ -122.686383921957542, 48.993027763009991 ], [ -122.259999017996932, 48.993027763009991 ], [ -121.833619607200603, 48.993027763009991 ], [ -121.407234703239993, 48.993027763009991 ], [ -120.980855292443664, 48.993027763009991 ], [ -120.554470388483054, 48.993027763009991 ], [ -120.128090977686711, 48.993027763009991 ], [ -119.701706073726115, 48.993027763009991 ], [ -119.275321169765505, 48.993060721995619 ], [ -118.848941758969175, 48.993082694652713 ], [ -118.422556855008565, 48.993082694652713 ], [ -117.996177444212236, 48.993082694652713 ], [ -117.569792540251626, 48.993082694652713 ], [ -117.143413129455297, 48.993082694652713 ], [ -117.039053994614932, 48.993082694652713 ], [ -117.037373086347685, 48.833660081149361 ], [ -117.036543618542595, 48.673358561362448 ], [ -117.0357196439018, 48.513057041575564 ], [ -117.034917641918071, 48.35275552178868 ], [ -117.034115639934356, 48.192454002001767 ], [ -117.033291665293547, 48.032163468543416 ], [ -117.032462197488471, 47.871861948756532 ], [ -117.031638222847675, 47.711560428969648 ], [ -117.030808755042585, 47.551258909182764 ], [ -117.029984780401776, 47.390957389395851 ], [ -117.0291553125967, 47.230655869608967 ], [ -117.02833133795589, 47.070354349822082 ], [ -117.027501870150815, 46.91005283003517 ], [ -117.026677895510005, 46.749751310248286 ], [ -117.025848427704929, 46.589460776789934 ], [ -117.0250464257212, 46.42915925700305 ], [ -117.032462197488471, 46.419754959769307 ], [ -117.038999062972209, 46.39655183388416 ], [ -117.010396156607655, 46.329623120393535 ], [ -116.942962072004008, 46.232108468236163 ], [ -116.922110020427311, 46.163641668749364 ], [ -116.947845495041861, 46.124321598890049 ], [ -116.930195958235771, 46.055953676360133 ], [ -116.896478915933926, 46.002098693836984 ], [ -117.144319501560176, 46.00225250243659 ], [ -117.409754692349793, 46.002021789537167 ], [ -117.675217348960757, 46.001791076637744 ], [ -117.940652539750374, 46.001538391081226 ], [ -118.206087730539991, 46.001274719196175 ], [ -118.471550387150955, 46.001044006296752 ], [ -118.736985577940573, 46.000813293397329 ], [ -119.002420768730175, 46.000549621512249 ], [ -119.019680290872955, 46.000340881269921 ], [ -119.049909173862034, 45.981488341488244 ], [ -119.177345091809258, 45.94507964869311 ], [ -119.429113289890012, 45.934170224448849 ], [ -119.934275662676058, 45.837875054759849 ], [ -120.156045690667156, 45.762168264762494 ], [ -120.351432050659625, 45.725166310225973 ], [ -120.715777157331729, 45.689823291299604 ], [ -121.045240670876325, 45.639044480768803 ], [ -121.184278151766122, 45.643779588371302 ], [ -121.242697953799336, 45.68703276384943 ], [ -121.402120567302717, 45.711839893701978 ], [ -121.662518526454846, 45.718135059957746 ], [ -121.882014384437326, 45.689460742457669 ], [ -122.085124133396292, 45.602646774302229 ], [ -122.149905019656558, 45.593857711466939 ], [ -122.149926992313638, 45.593758834510055 ], [ -122.202535026547039, 45.591067184016737 ], [ -122.560963995298152, 45.625069870860727 ], [ -122.649848886384149, 45.627442917826244 ], [ -122.725912732059186, 45.673750292639596 ], [ -122.746429700615295, 45.749687795536403 ], [ -122.843373063688375, 45.978093565968123 ], [ -122.941997335028731, 46.114862370013583 ], [ -123.042275048814957, 46.160027166658352 ], [ -123.12090420220504, 46.178780829483117 ], [ -123.220588654249894, 46.153622137117139 ], [ -123.251333894680542, 46.167256170840346 ], [ -123.298695957034141, 46.170848700274291 ], [ -123.404736000141739, 46.221001290078078 ], [ -123.464858683099294, 46.271098948239143 ], [ -123.650329881580717, 46.267715159047555 ], [ -123.688364551000376, 46.299861156367598 ], [ -123.895715022777352, 46.267770090690277 ], [ -123.959743345532331, 46.30074006265113 ], [ -124.072759707265448, 46.279448557932653 ], [ -124.045134584141323, 46.372876295871635 ], [ -124.050171815778782, 46.490550860907462 ], [ -124.044360047978955, 46.605061363322562 ], [ -124.01640533499851, 46.521367512473631 ], [ -123.946125791301938, 46.432565018851705 ], [ -123.912381283178746, 46.533331624258153 ], [ -123.889150691472253, 46.660014978700104 ], [ -123.957727354244497, 46.708695400479002 ], [ -124.071699526560934, 46.744796476074896 ], [ -124.11254669608789, 46.86266879502449 ], [ -123.842876275644528, 46.963182714874421 ], [ -123.986017150245544, 46.984496192249964 ], [ -124.042217713912862, 47.029682961551828 ], [ -124.111695255625719, 47.035187112152414 ], [ -124.116787418905915, 47.000338478010548 ], [ -124.13923798128576, 46.95470126923837 ], [ -124.163550726353847, 47.015323830144695 ], [ -124.170505072322271, 47.086691020367141 ], [ -124.198849799966027, 47.208540390249709 ], [ -124.309278881327003, 47.404602409447619 ], [ -124.376020827232381, 47.658639284372725 ], [ -124.460044267937619, 47.78421301963175 ], [ -124.621070885408415, 47.904128795690553 ], [ -124.663082605761048, 47.974122694844965 ], [ -124.701661098443623, 48.151639791460468 ], [ -124.679979579061865, 48.28589272626931 ], [ -124.709977749151506, 48.380375151748524 ], [ -124.632617516708265, 48.375035796076105 ], [ -124.429040848786173, 48.300768215118012 ], [ -124.175514838138369, 48.242430810548854 ], [ -124.098775333257862, 48.200001609711563 ], [ -123.97576141254963, 48.168481833118562 ], [ -123.294433261559021, 48.119548725783147 ], [ -123.24991116513408, 48.124195942757325 ], [ -123.161883207674521, 48.154551168524648 ], [ -123.124392361517792, 48.150914693776542 ], [ -123.02421901785273, 48.0816129333204 ], [ -122.973885153627961, 48.073296282612517 ], [ -122.908901020289633, 48.076888812046434 ], [ -122.860890764551939, 48.090039447313728 ], [ -122.778597670592404, 48.137577290924014 ], [ -122.7675124650914, 48.120010151582022 ], [ -122.769089003237482, 48.075976946777274 ], [ -122.739739026531936, 48.013245010790484 ], [ -122.679484507631841, 47.93180335729312 ], [ -122.656643930588672, 47.881134410047764 ], [ -122.77844386199277, 47.738432988588499 ], [ -122.801773330656161, 47.735334843939057 ], [ -122.805365860090092, 47.783641730547458 ], [ -122.821383927107377, 47.793155891066647 ], [ -123.050646631165549, 47.551929075223939 ], [ -123.131033597122695, 47.437726190008078 ], [ -123.139042630631337, 47.386101432179373 ], [ -123.136356473302314, 47.355823110711839 ], [ -123.104210475982285, 47.348374379958955 ], [ -123.030909691936088, 47.360184683143842 ], [ -122.922156025678078, 47.407645622454339 ], [ -122.916882587976914, 47.417983757614337 ], [ -123.018220482467655, 47.401064811656425 ], [ -123.066774561468293, 47.399636588945697 ], [ -123.060133325863376, 47.453645380068451 ], [ -123.048636133041981, 47.479320429876026 ], [ -122.982459983056629, 47.559366819648289 ], [ -122.912905537043969, 47.607355102728889 ], [ -122.81405055280419, 47.658540407415842 ], [ -122.757152357274322, 47.70053015511138 ], [ -122.717876232729182, 47.762097540272492 ], [ -122.608144783230756, 47.835475228618492 ], [ -122.587913459216807, 47.855942758696131 ], [ -122.592665046312135, 47.916400524674287 ], [ -122.585716193507992, 47.927881238002868 ], [ -122.532800542075364, 47.919707409566058 ], [ -122.510811405494337, 47.815732796224751 ], [ -122.52391260228319, 47.769337530783048 ], [ -122.618427986748031, 47.712801884095114 ], [ -122.630183358290211, 47.692795779816322 ], [ -122.613621468009995, 47.615616821794049 ], [ -122.628271737123541, 47.608157104712632 ], [ -122.664290415255351, 47.617253784747135 ], [ -122.67547999087752, 47.612342895887906 ], [ -122.585820563629156, 47.52841833213958 ], [ -122.557448370164025, 47.463203485901829 ], [ -122.553548223530868, 47.40491002664686 ], [ -122.577888434420316, 47.293190051681961 ], [ -122.603904060412731, 47.274612170113897 ], [ -122.64865686973711, 47.281456652796862 ], [ -122.707697399333085, 47.316393177567079 ], [ -122.720875500421727, 47.305121204480855 ], [ -122.76779810963356, 47.21836216796811 ], [ -122.783299819209276, 47.225953720992095 ], [ -122.812550918957925, 47.328950551092987 ], [ -122.828464615854045, 47.336597035759667 ], [ -122.91951930682751, 47.289674426547833 ], [ -122.956186178343415, 47.244553575217253 ], [ -122.987629050636627, 47.172571150596326 ], [ -123.027575341222956, 47.138909039937232 ], [ -122.914146992169435, 47.131493268169947 ], [ -122.811957657216539, 47.146006208176715 ], [ -122.729867810335065, 47.111805767418957 ], [ -122.7019350700117, 47.110871929492703 ], [ -122.627057747819421, 47.144259381938213 ], [ -122.604140266476435, 47.167023054681579 ], [ -122.542177373487732, 47.275567980697218 ], [ -122.511069584215136, 47.294991809563186 ], [ -122.464872072687214, 47.295826770532528 ], [ -122.420119263362835, 47.312097523106331 ], [ -122.353816770599224, 47.371577505844073 ], [ -122.351130613270186, 47.395220084870971 ], [ -122.375262083917306, 47.528363400496858 ], [ -122.368340696934524, 47.603916381894607 ], [ -122.380744261860798, 47.62784460546365 ], [ -122.410506225886763, 47.652651735316198 ], [ -122.406787353674588, 47.676777712799037 ], [ -122.383633666267912, 47.716471317828848 ], [ -122.381980223822012, 47.752330694196786 ], [ -122.401827026336917, 47.784267951274472 ], [ -122.392884154902021, 47.820544808127067 ], [ -122.330306027514865, 47.898624645089939 ], [ -122.318473751672883, 47.933044812418615 ], [ -122.242014398170241, 48.010762100539523 ], [ -122.261267938943774, 48.042029191576034 ], [ -122.317490475268187, 48.080162737952577 ], [ -122.352965330137067, 48.113802875954605 ], [ -122.388648925248276, 48.166361471709564 ], [ -122.415801636245021, 48.183928611051556 ], [ -122.424695069201448, 48.175919577542913 ], [ -122.386632933960442, 48.089929584028283 ], [ -122.394773803411624, 48.084150775214084 ], [ -122.494018802314699, 48.130447163698904 ], [ -122.517013187957488, 48.159648824969111 ], [ -122.529158574162977, 48.199331443670388 ], [ -122.520320072849259, 48.229093407696325 ], [ -122.467041872574669, 48.258503809208889 ], [ -122.403376098661639, 48.269193506882289 ], [ -122.408545166241638, 48.293901759777953 ], [ -122.488410281592934, 48.374310698392179 ], [ -122.541661016046163, 48.410950104086737 ], [ -122.582590583037188, 48.428671052028363 ], [ -122.637780404478463, 48.433318269002513 ], [ -122.662483164209846, 48.44639199996999 ], [ -122.668992563872223, 48.465255526080199 ], [ -122.657264658151405, 48.490007724290052 ], [ -122.627964119924314, 48.497917880841811 ], [ -122.542693730929301, 48.487975253509404 ], [ -122.496754398122178, 48.505542392851396 ], [ -122.501093997897101, 48.537501622586177 ], [ -122.514815922248673, 48.555145666227986 ], [ -122.512723026661021, 48.669436442072225 ], [ -122.545121709537554, 48.762292890926915 ], [ -122.562024176002637, 48.777981368087865 ], [ -122.580162604428949, 48.779585372055323 ], [ -122.599438117859563, 48.767104902829232 ], [ -122.65302393533338, 48.76387492223725 ], [ -122.685944468815762, 48.794285079647324 ], [ -122.722479504389156, 48.853039964701139 ], [ -122.788776503988501, 48.993027763009991 ] ] ], [ [ [ -123.086434596397936, 48.993027763009991 ], [ -123.049201928962006, 48.993027763009991 ], [ -123.063258936334165, 48.977734793676603 ], [ -123.077315943706338, 48.980217703927565 ], [ -123.086434596397936, 48.993027763009991 ] ] ], [ [ [ -122.782140761547865, 48.672688395321273 ], [ -122.768830824516698, 48.65097941011814 ], [ -122.808958389524008, 48.629852700327831 ], [ -122.837610734367004, 48.62654581543606 ], [ -122.883088641375281, 48.660647379236934 ], [ -122.903034320847098, 48.664679361812631 ], [ -122.887016253829799, 48.6123295063 ], [ -122.89254237708748, 48.594498695072929 ], [ -122.985667990991502, 48.626699624035695 ], [ -123.002850608834464, 48.65219889258654 ], [ -122.976675681078149, 48.679148356505181 ], [ -122.918019672981245, 48.706998699364476 ], [ -122.897711444667465, 48.710360515898969 ], [ -122.782140761547865, 48.672688395321273 ] ] ], [ [ [ -123.013133812351739, 48.500862216891619 ], [ -122.986750144353095, 48.46800210821624 ], [ -123.094443629906579, 48.489084872692359 ], [ -123.139921536914869, 48.507948398802569 ], [ -123.153434721024098, 48.52633951278537 ], [ -123.169584623983923, 48.586698401806643 ], [ -123.162141386395305, 48.606385902557662 ], [ -123.11418606230032, 48.613263344226255 ], [ -123.024164086210021, 48.538479405826592 ], [ -123.013133812351739, 48.500862216891619 ] ] ], [ [ [ -122.82092250130853, 48.431362702521682 ], [ -122.836578019483852, 48.421540924803253 ], [ -122.890037494179424, 48.434669587413453 ], [ -122.921612202415162, 48.456938875372316 ], [ -122.932285420595747, 48.484745272917422 ], [ -122.912235371002765, 48.537963048385024 ], [ -122.88551661998352, 48.551608068436792 ], [ -122.868905291224848, 48.548608800744262 ], [ -122.861901506777997, 48.501850986460596 ], [ -122.814616348724201, 48.452335603712356 ], [ -122.82092250130853, 48.431362702521682 ] ] ], [ [ [ -122.572768805318773, 48.15664955727658 ], [ -122.523835697983372, 48.02543983547443 ], [ -122.502851810464151, 48.080063860995693 ], [ -122.366736692967081, 47.985438613245378 ], [ -122.36658288436746, 47.938834607561347 ], [ -122.38314477464769, 47.923201062043091 ], [ -122.411440063813004, 47.917751843085227 ], [ -122.437587525747944, 47.931341931494273 ], [ -122.461614626273899, 47.963993299927324 ], [ -122.492260989747649, 47.981307753712798 ], [ -122.557525274463842, 47.992469863513605 ], [ -122.591346686886837, 48.029625626649732 ], [ -122.6031844558931, 48.055047990900789 ], [ -122.606310066363903, 48.128590474174956 ], [ -122.622663216401776, 48.151431051218111 ], [ -122.657264658151405, 48.156495748676946 ], [ -122.690388438711864, 48.173854147776638 ], [ -122.741518811756066, 48.225270165362986 ], [ -122.748703870623913, 48.239025048700199 ], [ -122.724517468334085, 48.280926905767387 ], [ -122.668992563872223, 48.350997709221616 ], [ -122.628634285965489, 48.384231353067491 ], [ -122.603519538913702, 48.380616850976509 ], [ -122.572461188119547, 48.35957803181455 ], [ -122.53556360370419, 48.321213772538584 ], [ -122.542435552208531, 48.294000636734836 ], [ -122.692146251278913, 48.241090478466475 ], [ -122.697002208495405, 48.228686913540201 ], [ -122.624393563147478, 48.213745506720244 ], [ -122.597625373649791, 48.200419090196249 ], [ -122.572768805318773, 48.15664955727658 ] ] ], [ [ [ -122.497270755563747, 47.594588988960652 ], [ -122.502648563386089, 47.575439818308297 ], [ -122.557838384827349, 47.598313354337108 ], [ -122.575921881610924, 47.619473023113045 ], [ -122.57375208172347, 47.666857058123725 ], [ -122.560112554835968, 47.697761600318273 ], [ -122.549774419675984, 47.703957889617129 ], [ -122.51721643503555, 47.690576541450412 ], [ -122.507867069444529, 47.682644412241586 ], [ -122.497270755563747, 47.594588988960652 ] ] ], [ [ [ -122.394125610027515, 47.395242057528066 ], [ -122.398723388523223, 47.372511343770327 ], [ -122.437120606784831, 47.354812368485796 ], [ -122.456961916135469, 47.359327749517405 ], [ -122.45820337126095, 47.386156363822096 ], [ -122.468541506420934, 47.390232291711953 ], [ -122.509932499210819, 47.357987417435027 ], [ -122.506834354561391, 47.421675164005137 ], [ -122.486471194604903, 47.488779658752492 ], [ -122.46859094489939, 47.489966182235236 ], [ -122.442080934122487, 47.446152704001378 ], [ -122.394125610027515, 47.395242057528066 ] ] ], [ [ [ -122.85309047128564, 47.204717147916369 ], [ -122.862626604461909, 47.185073592479512 ], [ -122.876733050312524, 47.186117293691211 ], [ -122.90797267552766, 47.226107529591701 ], [ -122.911900287982178, 47.25432042129296 ], [ -122.885104632663129, 47.274711047070781 ], [ -122.849190324652483, 47.216296738201834 ], [ -122.85309047128564, 47.204717147916369 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-WI", "NAME_1": "Wisconsin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.650584970396594, 42.512983570503422 ], [ -90.657330576122675, 42.520509205556124 ], [ -90.68787256947526, 42.610322441404094 ], [ -90.78874903816714, 42.676932551366946 ], [ -90.95994899586978, 42.72033953544468 ], [ -91.069581568411294, 42.788553649374961 ], [ -91.117591824149002, 42.881651797457636 ], [ -91.148155790158668, 42.986208686211768 ], [ -91.161328398083043, 43.10233417892286 ], [ -91.147584501074377, 43.199585159195209 ], [ -91.106968044446859, 43.278027545000043 ], [ -91.117196316321412, 43.331157429839266 ], [ -91.178357207326385, 43.358930868398744 ], [ -91.218688019411758, 43.395284629551156 ], [ -91.238276643205879, 43.440240685953597 ], [ -91.245252961831383, 43.502412319184629 ], [ -91.27843167403455, 43.79742819957923 ], [ -91.319916050617053, 43.936284406048031 ], [ -91.382691931918018, 43.99079856828385 ], [ -91.514846477974928, 44.054211656640348 ], [ -91.716434620430533, 44.126457753146326 ], [ -91.840975640806391, 44.194155509635038 ], [ -91.912298885714662, 44.288868648013676 ], [ -92.055121156787905, 44.399819579980516 ], [ -92.148581853712514, 44.445248048510337 ], [ -92.240306710727168, 44.462145021811153 ], [ -92.313091137331796, 44.497795657936734 ], [ -92.366940626690678, 44.552265874858364 ], [ -92.441587235983533, 44.586576178901566 ], [ -92.537030965210363, 44.600792488037627 ], [ -92.643537927281102, 44.645342050283944 ], [ -92.769809294402648, 44.725849865855082 ], [ -92.77259982185285, 44.732002209839777 ], [ -92.799214202750917, 44.790031997209667 ], [ -92.784668303758536, 44.822562516028739 ], [ -92.76340426486145, 44.934260518336572 ], [ -92.765211515906955, 44.969449728663307 ], [ -92.793039886109142, 45.07135891223831 ], [ -92.75905917192226, 45.110580105140741 ], [ -92.766139860668929, 45.236461457598978 ], [ -92.753917570163622, 45.277572299010984 ], [ -92.685807826354505, 45.380536170126248 ], [ -92.682605311583899, 45.433094765881208 ], [ -92.70702242677315, 45.493761272101693 ], [ -92.757460661119083, 45.543243695864305 ], [ -92.892488132090293, 45.594758590407565 ], [ -92.896520114665975, 45.658578172920215 ], [ -92.874712252505944, 45.706094043873435 ], [ -92.786448088982681, 45.795500785565281 ], [ -92.738080777567305, 45.874668269054013 ], [ -92.693948695805673, 45.909011532082872 ], [ -92.424613358382913, 46.027806702630158 ], [ -92.367275709711279, 46.035980531066969 ], [ -92.325472729600989, 46.069587710083368 ], [ -92.292629100418424, 46.08437530830372 ], [ -92.292370921697639, 46.228450020830962 ], [ -92.292140208798216, 46.372546706015328 ], [ -92.291904002734512, 46.516643391199665 ], [ -92.291645824013727, 46.660718103726936 ], [ -92.224002999167737, 46.671023279901306 ], [ -92.194548652341012, 46.706970546897594 ], [ -92.125345768841754, 46.763011808800997 ], [ -92.093265689492995, 46.76190218961807 ], [ -91.964923399440877, 46.729778164955121 ], [ -91.84077788689261, 46.77859042267653 ], [ -91.716643360672876, 46.827424653055033 ], [ -91.592519820781689, 46.876258883433536 ], [ -91.46836332190486, 46.925093113812039 ], [ -91.264786653982782, 47.021113625287427 ], [ -91.061188013403608, 47.117068218791559 ], [ -90.857600359152983, 47.213088730266946 ], [ -90.654023691230904, 47.309098255413801 ], [ -90.479923342792617, 47.303627063798842 ], [ -90.305855953339986, 47.298122913198256 ], [ -90.131777577558793, 47.29261876259767 ], [ -89.95767722912052, 47.287136584654149 ], [ -90.014553451993294, 47.199388778572484 ], [ -90.071429674866081, 47.111673931476417 ], [ -90.128272938753227, 47.023948098051818 ], [ -90.185138175297467, 46.936200291970124 ], [ -90.242003411841694, 46.848463472216991 ], [ -90.298846675728853, 46.760715666135297 ], [ -90.35571191227308, 46.673011805367793 ], [ -90.412588135145867, 46.585274985614632 ], [ -90.39234033163909, 46.548965169776409 ], [ -90.340880368738553, 46.558446371309969 ], [ -90.318226559280632, 46.536638509149924 ], [ -90.287860347184747, 46.527388020515787 ], [ -90.23037987624204, 46.509765949531072 ], [ -90.202419670097328, 46.467754229178439 ], [ -90.174459463952601, 46.42572053616874 ], [ -90.146510244136422, 46.383675856830479 ], [ -90.118550037991696, 46.341664136477874 ], [ -89.993646468773889, 46.317582104309224 ], [ -89.868753885884615, 46.293555003783268 ], [ -89.743839330338247, 46.269472971614618 ], [ -89.618924774791878, 46.245445871088691 ], [ -89.49398824658843, 46.221363838920041 ], [ -89.369084677370623, 46.197336738394085 ], [ -89.244181108152802, 46.173254706225435 ], [ -89.119288525263528, 46.14919464671388 ], [ -89.048800241324614, 46.121058659312439 ], [ -88.978311957385699, 46.092900699253931 ], [ -88.907823673446785, 46.06476471185249 ], [ -88.837335389507871, 46.036617738122516 ], [ -88.727241391167482, 46.031113587521929 ], [ -88.629539971424848, 46.014040832964412 ], [ -88.492990893950292, 46.013524475522843 ], [ -88.354749921879943, 45.992287902447089 ], [ -88.151744543042156, 45.945409238549445 ], [ -88.104415439674185, 45.905155330763876 ], [ -88.096483310465345, 45.878414607087564 ], [ -88.116115879573655, 45.815803520714752 ], [ -87.922536770626692, 45.759970999053678 ], [ -87.839831689346738, 45.71798125135814 ], [ -87.809080955751824, 45.686043994280453 ], [ -87.814090721567936, 45.65702910059548 ], [ -87.794557029416524, 45.596033004518688 ], [ -87.814662010652228, 45.563238813814564 ], [ -87.815178368093797, 45.505824260843099 ], [ -87.859134668598713, 45.445498330807482 ], [ -87.87403213010451, 45.412814003388803 ], [ -87.874911036388042, 45.385392127342726 ], [ -87.865429834854481, 45.367824988000734 ], [ -87.841820214813225, 45.360793737732507 ], [ -87.768563376081204, 45.364364294509329 ], [ -87.696394183875043, 45.382832312791976 ], [ -87.664226213897933, 45.371285681492111 ], [ -87.657568498800202, 45.361804479958579 ], [ -87.66271010055884, 45.345193151199908 ], [ -87.720915669185459, 45.242767610183307 ], [ -87.718850239419169, 45.201272247272243 ], [ -87.69420790449476, 45.161073271129396 ], [ -87.653613420524337, 45.121797146584271 ], [ -87.459539926792885, 45.067997095703817 ], [ -87.419802376448899, 45.183858916529857 ], [ -87.244383668585328, 45.289789096352024 ], [ -87.115272335535124, 45.452364786147541 ], [ -86.942336537922515, 45.452364786147541 ], [ -86.774289656512039, 45.452364786147541 ], [ -86.481822604339683, 45.323000767540833 ], [ -86.264524012066019, 45.226903351765628 ], [ -86.401468597368165, 45.133365750541202 ], [ -86.535952245076444, 45.041487084926928 ], [ -86.714699810488867, 44.846205095055637 ], [ -86.822113144664485, 44.591124518918832 ], [ -86.918748890538353, 44.361587156647062 ], [ -87.032490349955367, 44.091466296733387 ], [ -87.083203242514912, 43.890141826162846 ], [ -87.141727414669305, 43.657802950112313 ], [ -87.145188108160696, 43.571263640170486 ], [ -87.15500988587911, 43.326762898421634 ], [ -87.113855099152929, 43.030549508215756 ], [ -87.079358027524478, 42.782148619833748 ], [ -87.039126092396003, 42.49280168496793 ], [ -87.489411754104282, 42.495317554204519 ], [ -87.939664456826932, 42.497822437112575 ], [ -88.389950118535225, 42.500305347363536 ], [ -88.840235780243503, 42.502810230271592 ], [ -89.290521441951796, 42.505315113179648 ], [ -89.740796117331527, 42.50779802343061 ], [ -90.191048820054192, 42.510302906338666 ], [ -90.650584970396594, 42.512983570503422 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-WV", "NAME_1": "West Virginia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.965277021890898, 37.539725324148051 ], [ -82.103463062318525, 37.570574934699877 ], [ -82.280244074921555, 37.687183825866896 ], [ -82.393875671053138, 37.828314202344345 ], [ -82.429899842349215, 37.89417724196619 ], [ -82.471889590044754, 37.938408200684719 ], [ -82.482194766219109, 37.983551024672408 ], [ -82.588773139425385, 38.099742435354756 ], [ -82.617711128810527, 38.149873052501476 ], [ -82.619545845677393, 38.182008063492958 ], [ -82.585389350233797, 38.242729501356166 ], [ -82.578413031608306, 38.272084971225979 ], [ -82.589498237109296, 38.420345474928553 ], [ -82.612778267294232, 38.448217790444914 ], [ -82.497542667195219, 38.414973160270478 ], [ -82.387064147355801, 38.433990494980321 ], [ -82.318146908398688, 38.47967164906666 ], [ -82.290867854623698, 38.552016622529521 ], [ -82.252316827762471, 38.594083274524877 ], [ -82.20249382781499, 38.605838646067042 ], [ -82.180070731256492, 38.637589135559494 ], [ -82.187640311623383, 38.715207546723519 ], [ -82.203526542698143, 38.768227568277325 ], [ -82.163327566555296, 38.844912141515096 ], [ -82.072272875581831, 38.962949255392857 ], [ -82.001092452944647, 39.011102333401624 ], [ -81.949797284972263, 38.989327430227235 ], [ -81.918530193935766, 38.952347448347808 ], [ -81.907368084134973, 38.900239292063162 ], [ -81.896678386461559, 38.893548617979803 ], [ -81.882440104668419, 38.894218784021007 ], [ -81.843757241864651, 38.934318883206942 ], [ -81.809337074536003, 38.950029333025014 ], [ -81.795032874771593, 38.945942418806595 ], [ -81.780124426937263, 38.946975133689733 ], [ -81.777685462000463, 38.972793005768381 ], [ -81.804953529446905, 39.044050332705382 ], [ -81.802602455138469, 39.086062053057987 ], [ -81.770665198060797, 39.098828166826223 ], [ -81.736662511216821, 39.146629682321588 ], [ -81.700594394606554, 39.229466599544054 ], [ -81.657209383185915, 39.271972704681161 ], [ -81.606463531640742, 39.274137011404349 ], [ -81.551630765877164, 39.308040821291428 ], [ -81.492722072223728, 39.373618216371142 ], [ -81.4396471190272, 39.392558646781168 ], [ -81.39241689261614, 39.364829153535851 ], [ -81.333354390363084, 39.362818655412298 ], [ -81.262503557582207, 39.386538138738985 ], [ -81.139127088032026, 39.455993707794761 ], [ -80.963290899683784, 39.571130430936876 ], [ -80.874312624805157, 39.664294496990806 ], [ -80.872192263396144, 39.735507878613646 ], [ -80.803516723667002, 39.909135814924525 ], [ -80.668275019289197, 40.185244223894728 ], [ -80.601818717925966, 40.363892912350252 ], [ -80.604092887934584, 40.445202729905105 ], [ -80.623187126944231, 40.511560154311439 ], [ -80.659046503312155, 40.562976171897787 ], [ -80.637524285694269, 40.603263038668985 ], [ -80.519080677660384, 40.646955667288864 ], [ -80.520168324186244, 40.532148534003056 ], [ -80.520069447229346, 40.416473480762278 ], [ -80.519959583943901, 40.300798427521499 ], [ -80.519860706987018, 40.185145346937816 ], [ -80.51976183003012, 40.069492266354132 ], [ -80.519651966744675, 39.953839185770448 ], [ -80.519553089787777, 39.838186105186736 ], [ -80.519443226502332, 39.722511051945958 ], [ -80.389200301612092, 39.722533024603052 ], [ -80.258946390393291, 39.722587956245775 ], [ -80.128725438160131, 39.72260992890287 ], [ -79.998471526941344, 39.722642887888497 ], [ -79.868217615722557, 39.722686833202687 ], [ -79.737996663489383, 39.722719792188315 ], [ -79.607742752270596, 39.722741764845409 ], [ -79.477499827380356, 39.722796696488103 ], [ -79.48012555990239, 39.594816955277963 ], [ -79.482740306095877, 39.466837214067795 ], [ -79.485344065960831, 39.338890431843254 ], [ -79.487980784811413, 39.210910690633085 ], [ -79.359770330701821, 39.285354052847879 ], [ -79.29355572856656, 39.311578419082622 ], [ -79.07534527102375, 39.47598882574502 ], [ -79.046747857823462, 39.476790827728735 ], [ -78.971480520967873, 39.453642633486339 ], [ -78.814793503271986, 39.570086729725205 ], [ -78.796171676389747, 39.61262579384794 ], [ -78.777769576078384, 39.62662237641311 ], [ -78.758213911269891, 39.624765686889162 ], [ -78.746458539727712, 39.613702454045239 ], [ -78.753401899367574, 39.589521544919705 ], [ -78.74166850048249, 39.577898009320052 ], [ -78.677673136713139, 39.549520322690654 ], [ -78.587497352023206, 39.534436093599595 ], [ -78.574961951154393, 39.53285406228926 ], [ -78.495541782109129, 39.533348447073735 ], [ -78.46026468115403, 39.556134092474196 ], [ -78.442697541812024, 39.601463684047133 ], [ -78.406761261144283, 39.627863831538576 ], [ -78.325363552961093, 39.639212708924646 ], [ -78.181135031834202, 39.685739810308888 ], [ -78.097781757170154, 39.677884585399852 ], [ -78.027194596274342, 39.63122564807307 ], [ -77.955706556437917, 39.608802551514572 ], [ -77.883251719689611, 39.61071417268127 ], [ -77.855423349487424, 39.599705871480069 ], [ -77.872166514188621, 39.575777647911025 ], [ -77.853072275178974, 39.548333799207882 ], [ -77.798140632458498, 39.517275448413727 ], [ -77.779584723547529, 39.488337459028571 ], [ -77.797437507431681, 39.461464899409719 ], [ -77.791702643931671, 39.441777398658701 ], [ -77.762358160390392, 39.429241997789887 ], [ -77.744834966362561, 39.400106254490964 ], [ -77.739045171219814, 39.354337209776247 ], [ -77.726641606293541, 39.34643803955305 ], [ -77.79175757557438, 39.226621140451158 ], [ -77.835790780379114, 39.145212445939393 ], [ -77.948598401869887, 39.216315964276788 ], [ -78.118348164204704, 39.323333790624815 ], [ -78.193000266661826, 39.370388235779188 ], [ -78.322221462997476, 39.451851861933648 ], [ -78.351049589097187, 39.410927788106875 ], [ -78.365782255674816, 39.335847218836534 ], [ -78.40370706180903, 39.262645311747235 ], [ -78.435237824730578, 39.160758100829298 ], [ -78.581476843981036, 38.999017372003124 ], [ -78.692757365804169, 38.921651646395617 ], [ -78.727309369075357, 38.92388187109006 ], [ -78.756785688559162, 38.908215366586177 ], [ -78.805499069323673, 38.860183138191388 ], [ -78.868725390094951, 38.81794070493936 ], [ -78.991991996359701, 38.819698517506396 ], [ -79.041188775580153, 38.789672881595379 ], [ -79.073312800243087, 38.741948270399831 ], [ -79.104239315094716, 38.672932154485835 ], [ -79.152502256388928, 38.618319115293133 ], [ -79.202940490734861, 38.525814228951845 ], [ -79.240272035127703, 38.476518572774495 ], [ -79.304168521940156, 38.449898698712161 ], [ -79.395871406297715, 38.454392107086704 ], [ -79.504833812798054, 38.491350116309036 ], [ -79.524675122148693, 38.533460713618553 ], [ -79.555272047144001, 38.559377462654084 ], [ -79.597745193295466, 38.577131369581338 ], [ -79.639603105048479, 38.572451193621532 ], [ -79.668650957719066, 38.544260274577397 ], [ -79.715254963403112, 38.404041763369094 ], [ -79.783447104676313, 38.336036389681169 ], [ -79.812879478845943, 38.267042246424239 ], [ -79.902692714693927, 38.180744635710369 ], [ -79.971730803265018, 38.046151124716658 ], [ -80.188073584955333, 37.82422728812594 ], [ -80.245927591068536, 37.751025381036641 ], [ -80.285302592570574, 37.677054430949241 ], [ -80.255375833616469, 37.645270982471175 ], [ -80.245817727783106, 37.620782456146387 ], [ -80.291971293996852, 37.565894758740086 ], [ -80.316075298822597, 37.509699688237035 ], [ -80.371182722799773, 37.47259885674363 ], [ -80.464511583781857, 37.432729470457105 ], [ -80.49141710238635, 37.463919657193799 ], [ -80.507402210418007, 37.469061258952436 ], [ -80.71984484547518, 37.401022926278856 ], [ -80.770030394264609, 37.401594215363147 ], [ -80.821083863009008, 37.423094460323938 ], [ -80.843484986910426, 37.421721169255932 ], [ -80.862425417320438, 37.414569069373727 ], [ -80.871851687211276, 37.399418922311412 ], [ -80.873071169679676, 37.340620091943421 ], [ -80.915368534574441, 37.311363499030492 ], [ -80.943680303232568, 37.301904270154026 ], [ -81.057344858349779, 37.293719455388668 ], [ -81.17811756803502, 37.263331270635703 ], [ -81.227127579670224, 37.263276338992981 ], [ -81.350042623421558, 37.333687718632092 ], [ -81.419366356534809, 37.28227170104573 ], [ -81.485537013355895, 37.257003145394307 ], [ -81.564836332787166, 37.209794891640328 ], [ -81.589017241912728, 37.208070038058906 ], [ -81.660768953634204, 37.22175900342485 ], [ -81.752164220792537, 37.270769015060054 ], [ -81.829266274514993, 37.298597385262255 ], [ -81.875639567299615, 37.329611790742234 ], [ -81.913059002320807, 37.368964819587177 ], [ -81.939382245512462, 37.432597634514579 ], [ -81.971396406889951, 37.473060282542477 ], [ -81.957707441524008, 37.507634258470745 ], [ -81.965277021890898, 37.539725324148051 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "US-WY", "NAME_1": "Wyoming" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.021655426751522, 41.000858268679792 ], [ -104.335721600841566, 41.000858268679792 ], [ -104.649754815945983, 41.000858268679792 ], [ -104.96379352421468, 41.000858268679792 ], [ -105.277832232483362, 41.000858268679792 ], [ -105.591870940752045, 41.000858268679792 ], [ -105.905931621677823, 41.000858268679792 ], [ -106.219997795767881, 41.000858268679792 ], [ -106.534036504036564, 41.000858268679792 ], [ -106.84806971914098, 41.000858268679792 ], [ -107.162108427409663, 41.000858268679792 ], [ -107.47614713567836, 41.000858268679792 ], [ -107.790213309768404, 41.000858268679792 ], [ -108.104273990694182, 41.000858268679792 ], [ -108.418312698962879, 41.000858268679792 ], [ -108.732351407231562, 41.000858268679792 ], [ -109.046390115500245, 41.000858268679792 ], [ -109.296839954155715, 41.000858268679792 ], [ -109.547289792811185, 41.000858268679792 ], [ -109.797739631466641, 41.000858268679792 ], [ -110.048189470122111, 41.000858268679792 ], [ -110.298639308777581, 41.000858268679792 ], [ -110.549089147433037, 41.000858268679792 ], [ -110.799538986088507, 41.000858268679792 ], [ -111.049988824743977, 41.000858268679792 ], [ -111.050038263222419, 41.125860714854497 ], [ -111.05006572904378, 41.25086316102923 ], [ -111.050087701700875, 41.375876593532496 ], [ -111.050142633343597, 41.5008790397072 ], [ -111.050192071822039, 41.625881485881905 ], [ -111.0502195376434, 41.750883932056638 ], [ -111.050247003464762, 41.875897364559876 ], [ -111.050296441943203, 42.000877838077514 ], [ -111.05037334624302, 42.15701553934619 ], [ -111.050450250542823, 42.3131312679578 ], [ -111.050505182185546, 42.469246996569382 ], [ -111.050582086485349, 42.625384697838058 ], [ -111.050658990785166, 42.781522399106734 ], [ -111.050708429263608, 42.937638127718344 ], [ -111.050785333563425, 43.093753856329926 ], [ -111.050862237863228, 43.249891557598602 ], [ -111.050944635327312, 43.406029258867278 ], [ -111.051021539627115, 43.562144987478888 ], [ -111.051070978105571, 43.718260716090469 ], [ -111.051147882405374, 43.874398417359146 ], [ -111.051224786705191, 44.030547104956383 ], [ -111.051279718347899, 44.186651847239432 ], [ -111.051356622647717, 44.342767575851013 ], [ -111.05143352694752, 44.498883304462623 ], [ -111.051279718347899, 44.624457039721619 ], [ -111.051147882405374, 44.749986829666454 ], [ -111.051021539627115, 44.875505633282728 ], [ -111.050862237863228, 45.001057395884658 ], [ -110.831706956065617, 45.001079368541753 ], [ -110.612518715282377, 45.001079368541753 ], [ -110.393335967663404, 45.001079368541753 ], [ -110.174175192701526, 45.001079368541753 ], [ -109.954986951918286, 45.001079368541753 ], [ -109.735804204299313, 45.001079368541753 ], [ -109.516643429337421, 45.001079368541753 ], [ -109.297455188554181, 45.001079368541753 ], [ -109.078272440935208, 45.001079368541753 ], [ -108.85911166597333, 45.001079368541753 ], [ -108.639928918354357, 45.001079368541753 ], [ -108.420740677571118, 45.001079368541753 ], [ -108.20157990260924, 45.001079368541753 ], [ -107.982397154990267, 45.001079368541753 ], [ -107.763208914207027, 45.001079368541753 ], [ -107.544048139245135, 45.001079368541753 ], [ -107.324865391626162, 45.001079368541753 ], [ -107.105677150842922, 45.001079368541753 ], [ -106.88652186904531, 45.001079368541753 ], [ -106.667333628262071, 45.001079368541753 ], [ -106.448150880643098, 45.001079368541753 ], [ -106.22899010568122, 45.001079368541753 ], [ -106.00980186489798, 45.001079368541753 ], [ -105.790619117279007, 45.001101341198847 ], [ -105.571458342317115, 45.001134300184475 ], [ -105.352270101533875, 45.001134300184475 ], [ -105.133087353914902, 45.001134300184475 ], [ -104.913926578953024, 45.001134300184475 ], [ -104.694738338169785, 45.001134300184475 ], [ -104.475555590550812, 45.001134300184475 ], [ -104.256394815588934, 45.001134300184475 ], [ -104.037212067969961, 45.001134300184475 ], [ -104.036151887265447, 44.751173353149227 ], [ -104.035119172382309, 44.50121240611395 ], [ -104.03408096433489, 44.251251459078702 ], [ -104.033048249451753, 44.001268539386359 ], [ -104.0320155345686, 43.751285619694016 ], [ -104.030955353864101, 43.501324672658768 ], [ -104.029895173159588, 43.25136372562352 ], [ -104.02886245827645, 43.001402778588272 ], [ -104.027961579335823, 42.751342954596112 ], [ -104.027055207230944, 42.501283130603952 ], [ -104.026148835126051, 42.25122330661182 ], [ -104.025247956185439, 42.001130523634032 ], [ -104.024341584080545, 41.751048726984777 ], [ -104.023440705139933, 41.500977916664084 ], [ -104.022561798856401, 41.250918092671952 ], [ -104.021655426751522, 41.000858268679792 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/vietnam.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/vietnam.geojson new file mode 100644 index 000000000000..d91ae9718953 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/vietnam.geojson @@ -0,0 +1,69 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "VN-28", "NAME_1": "Kon Tum" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.423809448000043, 14.418965963000105 ], [ 107.455745484000033, 14.433874613000057 ], [ 107.505251506000036, 14.541025696000077 ], [ 107.504011272000128, 14.602107239000077 ], [ 107.532433310000044, 14.677942403000074 ], [ 107.498068482000122, 14.745948589000051 ], [ 107.50928226700006, 14.758635152000096 ], [ 107.490885458000037, 14.804239604000088 ], [ 107.558168173000126, 14.886715190000103 ], [ 107.461946656000066, 14.956814270000052 ], [ 107.445565227000031, 15.025388896000081 ], [ 107.51899743600012, 15.048849996000058 ], [ 107.57801192200003, 15.047248027000109 ], [ 107.590000855000085, 15.068900452 ], [ 107.580492391000121, 15.096754049000069 ], [ 107.615787394000108, 15.135511373000099 ], [ 107.627259563000109, 15.196515402000074 ], [ 107.656818482000062, 15.205687969000067 ], [ 107.657593628000029, 15.282427470000115 ], [ 107.579872274000138, 15.361234030000034 ], [ 107.576359737000132, 15.403053568000118 ], [ 107.602559035271213, 15.410119127495705 ], [ 107.689272088735891, 15.371232612195286 ], [ 107.721518181818567, 15.304802557891719 ], [ 107.776656935768926, 15.296043403080546 ], [ 107.850502556847459, 15.22772715928096 ], [ 107.948584425930449, 15.226254380934904 ], [ 108.006151970836754, 15.194447537423912 ], [ 108.070230747650839, 15.135097154010452 ], [ 108.069455601294919, 15.052156480437191 ], [ 108.138495314607042, 14.956477565687067 ], [ 108.190016718296874, 14.987199205379 ], [ 108.202935825727707, 15.063912868783859 ], [ 108.296573521350865, 15.0481257190267 ], [ 108.392536656041784, 14.964254869466629 ], [ 108.442197706858622, 14.877515977580288 ], [ 108.560226679217806, 14.811008408910936 ], [ 108.618155959330011, 14.640605373938854 ], [ 108.493874139280081, 14.609237779100226 ], [ 108.416411167041701, 14.62453400334158 ], [ 108.408039584958829, 14.611123969495566 ], [ 108.426178013104789, 14.565829575974135 ], [ 108.41098514165094, 14.516142685836257 ], [ 108.33636437421643, 14.430695706042002 ], [ 108.153223098067485, 14.33003001637212 ], [ 107.720019565950167, 14.185594387470985 ], [ 107.658266229103162, 14.138077908568619 ], [ 107.57165652932531, 14.011186427711436 ], [ 107.445987897000123, 13.921635563000024 ], [ 107.424481242000127, 13.994056498000063 ], [ 107.354563029000133, 14.002402242000116 ], [ 107.34474450700003, 14.081312154000074 ], [ 107.319939819000126, 14.119836934000134 ], [ 107.358593791000033, 14.23861521500001 ], [ 107.351772502000074, 14.341968079000083 ], [ 107.386912476000077, 14.421911520000023 ], [ 107.407789754000078, 14.433047791000135 ], [ 107.423809448000043, 14.418965963000105 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-72", "NAME_1": "Đắk Nông" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.393010295000067, 12.252844950000068 ], [ 107.415851278000048, 12.254085185000093 ], [ 107.449647665000043, 12.299043681000114 ], [ 107.514294882000115, 12.34384714800008 ], [ 107.556669556000031, 12.472676494000083 ], [ 107.565092815000128, 12.606415100000035 ], [ 107.540081421000025, 12.716692607000084 ], [ 107.842209854301302, 12.720738390564236 ], [ 107.86362564041093, 12.683260765771706 ], [ 107.874333532566425, 12.592243676604369 ], [ 107.911631706637934, 12.566188869021062 ], [ 107.910166863010261, 12.537868556788453 ], [ 108.005869987509868, 12.486843166079211 ], [ 107.977793816031749, 12.433539129826954 ], [ 107.935313347233148, 12.42499420791637 ], [ 107.941172722642989, 12.35382721575337 ], [ 107.978770378150386, 12.307074285549845 ], [ 108.046397332071194, 12.290798244543339 ], [ 108.128672722268277, 12.200791733451751 ], [ 108.11394900913939, 12.143445135784361 ], [ 108.053797641847666, 12.146235662845527 ], [ 107.998607211953242, 12.125745958109462 ], [ 107.984861281323049, 12.081071682212325 ], [ 108.017882521661022, 12.040402330203335 ], [ 108.023101840577453, 12.007820339437103 ], [ 108.087904086904018, 11.940175890105252 ], [ 108.079532504821202, 11.850491441526799 ], [ 107.997935419284147, 11.769643663024624 ], [ 107.970753614587579, 11.795094306057365 ], [ 107.91489139202406, 11.793182278139625 ], [ 107.893342320091961, 11.85762278926029 ], [ 107.77169599837157, 11.849974676689953 ], [ 107.746219516917108, 11.869715074391138 ], [ 107.735832554129047, 11.905966091362018 ], [ 107.718314243607438, 11.909635118465928 ], [ 107.692992791783865, 11.902968857826522 ], [ 107.675784539624772, 11.873125719076654 ], [ 107.563439975974063, 11.786903591127839 ], [ 107.443498976596459, 11.744425563988557 ], [ 107.390427281094105, 11.751763617297115 ], [ 107.400194126257873, 11.797523097912631 ], [ 107.359679802980452, 11.918213406123755 ], [ 107.258083938223137, 12.020119330142961 ], [ 107.227824380990342, 12.310591880310994 ], [ 107.320198202000086, 12.329222718000025 ], [ 107.393010295000067, 12.252844950000068 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-33", "NAME_1": "Đắk Lắk" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.540081421000025, 12.716692607000084 ], [ 107.535947306000025, 12.799633280000123 ], [ 107.487371460000077, 12.870559184000101 ], [ 107.466080770000133, 12.952182109000077 ], [ 107.481066936000104, 12.988769023000117 ], [ 107.460396363000086, 13.02160939600013 ], [ 107.561596848715567, 13.262014077987317 ], [ 107.680900506653018, 13.332881577922478 ], [ 107.945948927600909, 13.347712714170427 ], [ 108.06930057166403, 13.388537095810307 ], [ 108.364476353101168, 13.294899400187148 ], [ 108.409538201726605, 13.251387844273552 ], [ 108.472118360873594, 13.073853461567978 ], [ 108.51464806485626, 13.032744859087984 ], [ 108.660840692044246, 12.99623545969871 ], [ 108.739182164325371, 12.880351060153316 ], [ 108.817678664438745, 12.828364570268661 ], [ 109.03730350065598, 12.752658596317133 ], [ 108.970382521735928, 12.695478624139184 ], [ 108.898242222100805, 12.669872952374817 ], [ 108.847961053659674, 12.475440374973289 ], [ 108.766518995954868, 12.497015286226485 ], [ 108.676602004279005, 12.47877350529302 ], [ 108.664561395092278, 12.412369290310494 ], [ 108.681459588888856, 12.302996120874241 ], [ 108.603531528657072, 12.271395982038939 ], [ 108.499455194301731, 12.29855194741441 ], [ 108.409124789677264, 12.235351671542389 ], [ 108.322566765843533, 12.232716173212793 ], [ 108.262467076294513, 12.197498684116965 ], [ 108.242468296174877, 12.157036038582305 ], [ 108.148262159770809, 12.171221217884863 ], [ 108.117566359399916, 12.151868393811299 ], [ 108.128672722268277, 12.200791733451751 ], [ 108.076589388889147, 12.26422760651883 ], [ 108.029551628105082, 12.298285223784035 ], [ 107.978770378150386, 12.307074285549845 ], [ 107.941172722642989, 12.35382721575337 ], [ 107.935313347233148, 12.42499420791637 ], [ 107.977793816031749, 12.433539129826954 ], [ 108.005869987509868, 12.486843166079211 ], [ 107.910166863010261, 12.537868556788453 ], [ 107.911631706637934, 12.566188869021062 ], [ 107.874333532566425, 12.592243676604369 ], [ 107.86362564041093, 12.683260765771706 ], [ 107.842209854301302, 12.720738390564236 ], [ 107.540081421000025, 12.716692607000084 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-30", "NAME_1": "Gia Lai" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.561596848715567, 13.262014077987317 ], [ 107.606950724000114, 13.369753520000131 ], [ 107.604315227000086, 13.498531190000023 ], [ 107.514294882000115, 13.692550354000048 ], [ 107.443239787000039, 13.783475037000045 ], [ 107.445987897000123, 13.921635563000024 ], [ 107.57165652932531, 14.011186427711436 ], [ 107.658266229103162, 14.138077908568619 ], [ 107.720019565950167, 14.185594387470985 ], [ 108.153223098067485, 14.33003001637212 ], [ 108.33636437421643, 14.430695706042002 ], [ 108.41098514165094, 14.516142685836257 ], [ 108.426178013104789, 14.565829575974135 ], [ 108.408039584958829, 14.611123969495566 ], [ 108.416411167041701, 14.62453400334158 ], [ 108.493874139280081, 14.609237779100226 ], [ 108.618155959330011, 14.640605373938854 ], [ 108.666886835059358, 14.595956936463438 ], [ 108.687143995798749, 14.457179876949738 ], [ 108.634744093864811, 14.217530422191203 ], [ 108.635519240220731, 14.152495631867907 ], [ 108.659135369701517, 14.077513129227498 ], [ 108.714997593164355, 14.008473415915375 ], [ 108.715772740419595, 13.906955063725206 ], [ 108.807601760013142, 13.746809801231336 ], [ 108.821709425849292, 13.664902655533126 ], [ 108.821709425849292, 13.430498359012063 ], [ 108.876693150168705, 13.225472113247406 ], [ 108.865014276187878, 13.194440416092334 ], [ 108.687815790266484, 13.071295478503544 ], [ 108.665491571079087, 13.038997708577369 ], [ 108.660840692044246, 12.99623545969871 ], [ 108.51464806485626, 13.032744859087984 ], [ 108.472118360873594, 13.073853461567978 ], [ 108.434239536825146, 13.201752630979115 ], [ 108.387420689013538, 13.278931383276699 ], [ 108.107489454974314, 13.384196275137981 ], [ 108.030853305935295, 13.383705348722856 ], [ 107.928430617079243, 13.345335598259226 ], [ 107.801926710749058, 13.349366360569093 ], [ 107.680900506653018, 13.332881577922478 ], [ 107.561596848715567, 13.262014077987317 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-58", "NAME_1": "Bình Phước" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.879294881000078, 12.062727356000011 ], [ 106.977686809000033, 12.097247213000088 ], [ 107.152508179000108, 12.277029521000131 ], [ 107.227824380990342, 12.310591880310994 ], [ 107.258083938223137, 12.020119330142961 ], [ 107.345417108412789, 11.940873521196011 ], [ 107.400194126257873, 11.797523097912631 ], [ 107.390427281094105, 11.751763617297115 ], [ 107.327588738629345, 11.717812200972276 ], [ 107.284438917921705, 11.65489614504105 ], [ 107.308520136295215, 11.566219386815249 ], [ 107.119177688399532, 11.487929592276828 ], [ 107.057114292290692, 11.367962755376823 ], [ 106.964768507860299, 11.283626816924027 ], [ 106.791290724986936, 11.335303250244806 ], [ 106.718220249364947, 11.306907050519953 ], [ 106.725351597098495, 11.337318630050731 ], [ 106.696206089439443, 11.360831406744012 ], [ 106.677550897355957, 11.325303860184988 ], [ 106.638276809327238, 11.319645290797496 ], [ 106.615022414153032, 11.369745592085394 ], [ 106.619053175563579, 11.431369736823854 ], [ 106.524692011327204, 11.481831773317651 ], [ 106.46433393756115, 11.55332611690676 ], [ 106.48934533102215, 11.561155097529706 ], [ 106.471361931607817, 11.653578396325941 ], [ 106.434587463000128, 11.678428127000089 ], [ 106.39885909000003, 11.746312561000124 ], [ 106.438753297000062, 11.863721416000132 ], [ 106.394001505000119, 11.969813131000066 ], [ 106.442060588000061, 11.97487742100013 ], [ 106.473738241000092, 11.952088115000052 ], [ 106.504537395000057, 11.973378804000035 ], [ 106.680495646000054, 11.96505889900007 ], [ 106.701579630000026, 11.970794983000118 ], [ 106.749225301000138, 12.05234039300008 ], [ 106.771962932000122, 12.065827942000055 ], [ 106.879294881000078, 12.062727356000011 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-37", "NAME_1": "Tây Ninh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.412811727000133, 11.661769918000061 ], [ 106.434587463000128, 11.678428127000089 ], [ 106.460303176150603, 11.669520574814669 ], [ 106.489965447747181, 11.573505764179686 ], [ 106.378861119345117, 11.437183335842235 ], [ 106.343307732565791, 11.344398301840158 ], [ 106.352299432272957, 11.25786611642809 ], [ 106.385217319823425, 11.189834093468619 ], [ 106.421390822428464, 11.156399441081305 ], [ 106.418600295367298, 11.065009670160123 ], [ 106.363668247891269, 10.982146510952703 ], [ 106.302793410187689, 11.024572862147863 ], [ 106.2849133653595, 10.985634670004004 ], [ 106.178356561406133, 10.963904730918557 ], [ 106.17038952300004, 10.970602023000069 ], [ 106.187864217000026, 10.976307882000114 ], [ 106.148745158000111, 11.070720724000068 ], [ 106.113501832000111, 11.086921285000074 ], [ 106.086630086000127, 11.056328837000066 ], [ 105.988754924000034, 11.176967469000132 ], [ 105.899871461000089, 11.218592835000052 ], [ 105.886745647000112, 11.267943828000057 ], [ 105.844422648000091, 11.289880473000025 ], [ 105.873826538000117, 11.428244121000105 ], [ 105.857806845000027, 11.535627747000092 ], [ 105.803339885000128, 11.56622019400001 ], [ 105.79341800900005, 11.607302958000062 ], [ 105.840856975000122, 11.658152568000077 ], [ 105.934081258000049, 11.642856343000119 ], [ 106.015419962000067, 11.770497131000099 ], [ 106.223624309000058, 11.724970195000125 ], [ 106.274112183000057, 11.676807760000145 ], [ 106.354314005000049, 11.690140279000076 ], [ 106.412811727000133, 11.661769918000061 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-41", "NAME_1": "Long An" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.726135295000063, 11.018372498000048 ], [ 105.769698527000116, 10.996461691000093 ], [ 105.84752323500004, 10.855410868000064 ], [ 105.878684123000028, 10.828074036000132 ], [ 105.908656454000038, 10.838383484000047 ], [ 105.931342407000045, 10.896364441000088 ], [ 106.017900431000044, 10.81980580600009 ], [ 106.155049683000072, 10.784846701000092 ], [ 106.177322225000069, 10.766863302000019 ], [ 106.122493530000042, 10.955508118000068 ], [ 106.131433553000079, 10.969279887000098 ], [ 106.202437778880324, 10.960726630229772 ], [ 106.2849133653595, 10.985634670004004 ], [ 106.296282180078492, 11.022634995808403 ], [ 106.316022576880357, 11.019921983113022 ], [ 106.476942986629467, 10.924966538774754 ], [ 106.511669550209547, 10.885614936380193 ], [ 106.52675906797657, 10.825644436241703 ], [ 106.496786737118157, 10.748904934415179 ], [ 106.504538201576679, 10.723221747385708 ], [ 106.645304803373961, 10.639040839463178 ], [ 106.697446323788768, 10.654569606801886 ], [ 106.737288852598454, 10.631831977363845 ], [ 106.733409050000034, 10.522447007000039 ], [ 106.68881269600007, 10.503648179000038 ], [ 106.655772332000026, 10.521877346000053 ], [ 106.668711785000028, 10.494533596000053 ], [ 106.594248894000032, 10.439276434000078 ], [ 106.579925977000073, 10.48773834800005 ], [ 106.586761915000068, 10.438706773000092 ], [ 106.615407748000052, 10.436590887000079 ], [ 106.584740024932159, 10.414429226527545 ], [ 106.46619428863545, 10.413886624168356 ], [ 106.443094923991509, 10.423214219760439 ], [ 106.440614455292859, 10.47176422833644 ], [ 106.355916783432747, 10.506775010957995 ], [ 106.28832400914564, 10.583023586369393 ], [ 106.145800409061565, 10.58994822852793 ], [ 106.078414341248788, 10.543930365493964 ], [ 105.92297163283456, 10.567055569458944 ], [ 105.52728519135843, 10.932873032864165 ], [ 105.523603244594028, 10.951293531571196 ], [ 105.632187541000121, 10.973956605000083 ], [ 105.726135295000063, 11.018372498000048 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-45", "NAME_1": "Ðong Tháp" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.473850952000134, 10.940909526000098 ], [ 105.523603244594028, 10.951293531571196 ], [ 105.53751712361634, 10.919747218958946 ], [ 105.866024204653286, 10.607931627042944 ], [ 105.96265913291262, 10.55346466756032 ], [ 105.948551467076527, 10.480704251200223 ], [ 105.84256310390407, 10.352520860049651 ], [ 105.849022658069146, 10.301438706830822 ], [ 105.782360060668225, 10.330765082542484 ], [ 105.711615025013373, 10.402336941396698 ], [ 105.631723260919728, 10.417142239222926 ], [ 105.566610956230591, 10.456416327251702 ], [ 105.514934523809188, 10.52979686123615 ], [ 105.387242059073742, 10.599249985698293 ], [ 105.369310337402112, 10.702680364906882 ], [ 105.293759393081473, 10.707563787938454 ], [ 105.219810419215435, 10.83026947685488 ], [ 105.209145007000075, 10.891647006000127 ], [ 105.253295939000111, 10.883522848000013 ], [ 105.317891480000128, 10.838848572000074 ], [ 105.410495647000118, 10.963001201000097 ], [ 105.473850952000134, 10.940909526000098 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-44", "NAME_1": "An Giang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.077906128000052, 10.946903992000031 ], [ 105.097543172000087, 10.914347840000076 ], [ 105.209145007000075, 10.891647006000127 ], [ 105.219810419215435, 10.83026947685488 ], [ 105.293759393081473, 10.707563787938454 ], [ 105.369310337402112, 10.702680364906882 ], [ 105.387242059073742, 10.599249985698293 ], [ 105.514934523809188, 10.52979686123615 ], [ 105.58299238519038, 10.446520290878709 ], [ 105.534106479830143, 10.402802029390159 ], [ 105.473438347701517, 10.275342109550706 ], [ 105.429978468631361, 10.273533433521152 ], [ 105.377526889854039, 10.233122463031236 ], [ 105.320269403310249, 10.276944078206611 ], [ 105.241462843935039, 10.199610297177458 ], [ 104.887685987917962, 10.382467353385664 ], [ 104.724424529568353, 10.521337570072774 ], [ 104.818800497000041, 10.517188619000066 ], [ 104.85440555800011, 10.531322123000109 ], [ 104.931351766000034, 10.630695902000113 ], [ 105.066744019000112, 10.713946635000127 ], [ 105.011398560000089, 10.883832906000094 ], [ 105.077906128000052, 10.946903992000031 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-47", "NAME_1": "Kiên Giang" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.625530640000136, 10.533363342000072 ], [ 104.724424529568353, 10.521337570072774 ], [ 104.887685987917962, 10.382467353385664 ], [ 105.241462843935039, 10.199610297177458 ], [ 105.350706822162067, 10.118917548306172 ], [ 105.52573489774727, 9.940840562342089 ], [ 105.526199985740732, 9.881800238190408 ], [ 105.50397912024016, 9.834257920866321 ], [ 105.367605015059382, 9.701888739573633 ], [ 105.36155887294359, 9.683491929908598 ], [ 105.393184849301292, 9.642615872324654 ], [ 105.392254673314483, 9.5868311632276 ], [ 105.296033156205169, 9.600318712338662 ], [ 105.310192498884646, 9.515517685892462 ], [ 105.278359816951934, 9.459500433698054 ], [ 105.294844597799909, 9.413508409085807 ], [ 105.24053266794823, 9.416919053771323 ], [ 105.02390506436717, 9.528255927069381 ], [ 104.877867465910754, 9.506138414356315 ], [ 104.834136223875049, 9.534433881757723 ], [ 104.856557648000035, 9.738036916000055 ], [ 104.892789234000077, 9.851095140000041 ], [ 104.96998131600003, 9.853664455000057 ], [ 104.993337436000047, 9.88812897300005 ], [ 105.076670769000032, 9.943426825000074 ], [ 105.113291863000029, 9.857082424000055 ], [ 105.10710696700005, 9.952704169000071 ], [ 105.087657097000033, 9.99673086100006 ], [ 105.00326582100007, 10.09210846600007 ], [ 104.963877800000034, 10.105861721000053 ], [ 104.901052280000044, 10.097316799000055 ], [ 104.771983269000032, 10.226629950000074 ], [ 104.707367384000065, 10.222316799000055 ], [ 104.650889519000032, 10.144476630000042 ], [ 104.613047722000033, 10.144476630000042 ], [ 104.588877800000034, 10.260891018000052 ], [ 104.551524285000028, 10.295884507000039 ], [ 104.537364129000082, 10.282212632000039 ], [ 104.499034050000034, 10.370591539000088 ], [ 104.52507571700005, 10.389837958000044 ], [ 104.524912957000026, 10.419419664000088 ], [ 104.469574415000068, 10.378485419000071 ], [ 104.453623894000032, 10.379828192000048 ], [ 104.451345248000052, 10.419663804000024 ], [ 104.494272502000058, 10.427736715000066 ], [ 104.56682621300007, 10.528066508000038 ], [ 104.625530640000136, 10.533363342000072 ] ] ], [ [ [ 104.082041863000029, 10.370998440000051 ], [ 104.085459832000026, 10.248114325000074 ], [ 104.033457879000082, 10.09601471600007 ], [ 104.051280144000032, 10.069322007000039 ], [ 104.051280144000032, 10.007961330000057 ], [ 104.010590040000068, 10.030462958000044 ], [ 103.957041863000029, 10.233791408000059 ], [ 103.93718509200005, 10.266058661000045 ], [ 103.857432488000029, 10.320868231000077 ], [ 103.846039259000065, 10.371283270000049 ], [ 103.933767123000052, 10.366359768000052 ], [ 103.983409050000034, 10.442206122000073 ], [ 104.004730665000068, 10.450995184000078 ], [ 104.082041863000029, 10.370998440000051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-71", "NAME_1": "Điện Biên" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.653454631000102, 21.656301982000045 ], [ 102.631905559000131, 21.706273092000018 ], [ 102.625135946000114, 21.828642883000057 ], [ 102.591029501000037, 21.901351624000128 ], [ 102.478064820000043, 21.957575583 ], [ 102.466385946000059, 21.995351054000068 ], [ 102.482870728000137, 22.021395976000051 ], [ 102.422150919000046, 22.062220358000033 ], [ 102.389439738000078, 22.11710072800004 ], [ 102.206970256000091, 22.245413310000018 ], [ 102.154363647000082, 22.304686178000011 ], [ 102.15612064700008, 22.328095602000062 ], [ 102.118655233000084, 22.397548726000039 ], [ 102.164543905000073, 22.425505676000043 ], [ 102.218029012000102, 22.410674540000016 ], [ 102.252548869000066, 22.495475566000053 ], [ 102.324649043774599, 22.565118461592977 ], [ 102.379242384128702, 22.575628973198548 ], [ 102.523203972285444, 22.561957098141534 ], [ 102.644948764373908, 22.436224676127893 ], [ 102.776784701652616, 22.36037832250156 ], [ 102.817556186069112, 22.297064520711046 ], [ 102.828542513726006, 22.228338934294356 ], [ 102.845469597343993, 22.205430405788604 ], [ 102.908376498176835, 22.20294830931698 ], [ 102.934662305620861, 22.137396551809388 ], [ 103.040293816006738, 22.147731837754066 ], [ 103.140147331534081, 22.085557359184747 ], [ 103.17733808698307, 22.087958075105064 ], [ 103.264414909920106, 22.048041082430018 ], [ 103.28419030024213, 22.054266668971593 ], [ 103.263112826495728, 22.075995184430212 ], [ 103.323985222539932, 22.149481512861485 ], [ 103.383230013854018, 22.1499697934712 ], [ 103.416514519029761, 22.081406968157012 ], [ 103.452159050299883, 22.048366603735758 ], [ 103.461680534329162, 21.990301824569542 ], [ 103.497487826701786, 21.967840887746775 ], [ 103.550403273991833, 21.886907254566154 ], [ 103.569316847594393, 21.673974513812766 ], [ 103.561565383135871, 21.610541693944015 ], [ 103.466274042013367, 21.504992581242618 ], [ 103.445500116437188, 21.452463487200134 ], [ 103.385865513082933, 21.418744614872082 ], [ 103.376253696650735, 21.39536103028729 ], [ 103.393358596022324, 21.377325954928835 ], [ 103.395063918365111, 21.342444363516563 ], [ 103.446430292423997, 21.289501858324059 ], [ 103.447205437880598, 21.228239447892179 ], [ 103.418628371002455, 21.145918891043948 ], [ 103.437748651079346, 21.072822577000295 ], [ 103.417078078290615, 21.054916693750386 ], [ 103.379871046911262, 21.05251374031684 ], [ 103.318376093381971, 21.080935777564093 ], [ 103.287680292111759, 21.077964382450261 ], [ 103.291504347947239, 21.024892686048588 ], [ 103.248561232814609, 20.977479559933727 ], [ 103.225829136905077, 20.826412811402122 ], [ 103.115286906000051, 20.868391419000076 ], [ 103.014517863000094, 21.04052561500005 ], [ 102.951575969000089, 21.068999329000079 ], [ 102.925634400000035, 21.141656392000115 ], [ 102.889099162000036, 21.166409403000031 ], [ 102.887858928000071, 21.226922506000065 ], [ 102.850186809000036, 21.251675517000095 ], [ 102.801300903000083, 21.254827779000053 ], [ 102.875198202000036, 21.305315654000069 ], [ 102.883828166000114, 21.38835968000005 ], [ 102.918037964000064, 21.450113017000021 ], [ 102.849670045000096, 21.425411682000018 ], [ 102.974106893000112, 21.57532501200005 ], [ 102.947803589000046, 21.737123922000094 ], [ 102.847189575000129, 21.70446441700004 ], [ 102.826467326000113, 21.821304830000074 ], [ 102.806726929000035, 21.836084290000102 ], [ 102.789156942000091, 21.820322978000021 ], [ 102.786676473000114, 21.739914449000068 ], [ 102.752156616000036, 21.680899964000034 ], [ 102.721150757000089, 21.661676331000095 ], [ 102.653454631000102, 21.656301982000045 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-05", "NAME_1": "Son La" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.221059205000131, 20.89200754800008 ], [ 104.193877401000123, 20.929886373000059 ], [ 104.056676473000039, 20.95882517500003 ], [ 104.010581096000124, 20.908078919000062 ], [ 103.785323527000116, 20.845963847000078 ], [ 103.756746460000045, 20.795992737000077 ], [ 103.754576050000082, 20.742921041000059 ], [ 103.707240438000042, 20.721837057000059 ], [ 103.714268433000029, 20.67171091800013 ], [ 103.676337932000138, 20.656518046000102 ], [ 103.577946005000058, 20.732895813000042 ], [ 103.489372600000138, 20.752481181000078 ], [ 103.44043501800013, 20.815733135000059 ], [ 103.358321167000099, 20.787724508000039 ], [ 103.263391561000105, 20.826378479000041 ], [ 103.225829136905077, 20.826412811402122 ], [ 103.248561232814609, 20.977479559933727 ], [ 103.291504347947239, 21.024892686048588 ], [ 103.287680292111759, 21.077964382450261 ], [ 103.318376093381971, 21.080935777564093 ], [ 103.379871046911262, 21.05251374031684 ], [ 103.417078078290615, 21.054916693750386 ], [ 103.437748651079346, 21.072822577000295 ], [ 103.418628371002455, 21.145918891043948 ], [ 103.447205437880598, 21.228239447892179 ], [ 103.446430292423997, 21.289501858324059 ], [ 103.395063918365111, 21.342444363516563 ], [ 103.393358596022324, 21.377325954928835 ], [ 103.376253696650735, 21.39536103028729 ], [ 103.385865513082933, 21.418744614872082 ], [ 103.445500116437188, 21.452463487200134 ], [ 103.466274042013367, 21.504992581242618 ], [ 103.561565383135871, 21.610541693944015 ], [ 103.569316847594393, 21.673974513812766 ], [ 103.535623813688005, 21.982767035570191 ], [ 103.569420201281218, 22.033590807269945 ], [ 103.605490350199432, 22.041962389352761 ], [ 103.634945917120319, 22.024159857991037 ], [ 103.711013625378484, 21.861198228215642 ], [ 103.856534458098736, 21.715858263548 ], [ 103.925264113048343, 21.719785671271723 ], [ 104.01636966402873, 21.685188299800188 ], [ 104.169796990838393, 21.659298407195706 ], [ 104.232067091622923, 21.669737046827208 ], [ 104.288032667873267, 21.708003445402653 ], [ 104.326686639177012, 21.699890244838912 ], [ 104.349527622301878, 21.65361400028587 ], [ 104.310977003785638, 21.495535794441366 ], [ 104.328443638363183, 21.444195257904823 ], [ 104.35712405802883, 21.416393337382601 ], [ 104.469727004097933, 21.362262275583532 ], [ 104.582278274222915, 21.413215236693816 ], [ 104.673642205823114, 21.382622789110428 ], [ 104.735602248245129, 21.391046047137365 ], [ 104.779372185677801, 21.334847926890291 ], [ 104.828516472557112, 21.329602769552139 ], [ 104.865775180779906, 21.250201930974299 ], [ 104.873629998925253, 21.137624823326917 ], [ 104.908614943125087, 21.101399643878437 ], [ 104.881743198589675, 21.061479600702967 ], [ 104.88014122903445, 21.022515571036763 ], [ 104.913524204578323, 20.963785305247598 ], [ 105.093099807310239, 20.794312446262381 ], [ 105.077131788601093, 20.772194933549315 ], [ 104.994397820602899, 20.732895006199556 ], [ 104.85740359869709, 20.727882391958815 ], [ 104.839730259443854, 20.696669826751076 ], [ 104.84293419765504, 20.625718085521214 ], [ 104.810067986948013, 20.590448920481265 ], [ 104.759786817607505, 20.574145005887317 ], [ 104.643101434183791, 20.642306220056014 ], [ 104.614070887761216, 20.64261560482629 ], [ 104.600725952000062, 20.660548808 ], [ 104.492308797000135, 20.702096660000066 ], [ 104.452621297000064, 20.763591614000077 ], [ 104.389059286000077, 20.770981343000088 ], [ 104.278936809000072, 20.891542460000053 ], [ 104.221059205000131, 20.89200754800008 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-21", "NAME_1": "Thanh Hóa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.495822795000095, 20.511927389 ], [ 104.542641642000092, 20.53569854800007 ], [ 104.614070887761216, 20.64261560482629 ], [ 104.643101434183791, 20.642306220056014 ], [ 104.759786817607505, 20.574145005887317 ], [ 104.810067986948013, 20.590448920481265 ], [ 104.84293419765504, 20.625718085521214 ], [ 104.939155714764354, 20.59093984599707 ], [ 105.066693149868911, 20.575436917080026 ], [ 105.137954950360609, 20.590836493209565 ], [ 105.213144158576029, 20.518670356052098 ], [ 105.308797234904432, 20.456322740002406 ], [ 105.455403274141759, 20.38588776271007 ], [ 105.542633090644586, 20.367103380316735 ], [ 105.819463739260129, 20.155643418808722 ], [ 105.982554559345374, 20.078180447469663 ], [ 106.059965854740369, 20.060248724898713 ], [ 106.064461705043584, 20.022654119891683 ], [ 105.955577019000032, 19.925482489000046 ], [ 105.956797722000033, 19.87563711100006 ], [ 105.935801629000025, 19.84829336100006 ], [ 105.928884311000047, 19.793646552000041 ], [ 105.91529381600003, 19.807318427000041 ], [ 105.867442254000025, 19.773179429000038 ], [ 105.928884311000047, 19.78001536700009 ], [ 105.895274285000028, 19.72134023600006 ], [ 105.866953972000033, 19.721096096000053 ], [ 105.825938347000033, 19.642238674000055 ], [ 105.819021030000044, 19.587591864000046 ], [ 105.817556186000047, 19.61001211100006 ], [ 105.803884311000047, 19.613023179000038 ], [ 105.790863477000073, 19.603461005000042 ], [ 105.791758660000028, 19.587591864000046 ], [ 105.805430535000028, 19.608710028000075 ], [ 105.819021030000044, 19.573919989000046 ], [ 105.812754754000025, 19.423163153000075 ], [ 105.798594597000033, 19.430568752000056 ], [ 105.771250847000033, 19.403265692000048 ], [ 105.810069207000026, 19.321478583000044 ], [ 105.812754754000025, 19.307033596000053 ], [ 105.791758660000028, 19.320705471000053 ], [ 105.810801629000025, 19.299627997000073 ], [ 105.806242942557731, 19.27431526543711 ], [ 105.686965366758216, 19.309467677791076 ], [ 105.586403028976576, 19.387860826016265 ], [ 105.534364862248538, 19.454161689110663 ], [ 105.506769647301326, 19.470284736551321 ], [ 105.416129185213663, 19.473178616399991 ], [ 105.342438592866699, 19.548161119040401 ], [ 105.27696455297172, 19.514209702715618 ], [ 105.262236770410595, 19.619991360313008 ], [ 105.168082309950591, 19.714042467086188 ], [ 105.13821333187974, 19.786802883446285 ], [ 105.139970331065911, 19.82754974982106 ], [ 105.179554478356465, 19.878166815945804 ], [ 105.169115838724906, 19.904547634066034 ], [ 104.945688090632814, 19.99237326401493 ], [ 104.943960816000128, 20.067096659000057 ], [ 104.964424683000118, 20.076088359 ], [ 104.904893432000051, 20.134637757000107 ], [ 104.907994019000057, 20.175332947000058 ], [ 104.819162232000053, 20.220989075000048 ], [ 104.690849650000075, 20.1965461220001 ], [ 104.657053264000069, 20.212695007000022 ], [ 104.653539266000053, 20.266464336000112 ], [ 104.688627564000058, 20.301035869000103 ], [ 104.684648479000089, 20.333049419000091 ], [ 104.589357138000082, 20.40681752600004 ], [ 104.432364136000047, 20.411054992000103 ], [ 104.359810425000035, 20.439735413000093 ], [ 104.42378584800008, 20.495442607000129 ], [ 104.444973185000038, 20.534613342000071 ], [ 104.495822795000095, 20.511927389 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-22", "NAME_1": "Nghệ An" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.922463420000099, 19.982243958000097 ], [ 104.962926873876086, 19.988418484525425 ], [ 105.151752556934923, 19.914908759331752 ], [ 105.179554478356465, 19.890956733066787 ], [ 105.139970331065911, 19.82754974982106 ], [ 105.13821333187974, 19.786802883446285 ], [ 105.168082309950591, 19.714042467086188 ], [ 105.262236770410595, 19.619991360313008 ], [ 105.27696455297172, 19.514209702715618 ], [ 105.342438592866699, 19.548161119040401 ], [ 105.416129185213663, 19.473178616399991 ], [ 105.506769647301326, 19.470284736551321 ], [ 105.534364862248538, 19.454161689110663 ], [ 105.586403028976576, 19.387860826016265 ], [ 105.686965366758216, 19.309467677791076 ], [ 105.806242942557731, 19.27431526543711 ], [ 105.781016472000033, 19.264878648000035 ], [ 105.772308790000068, 19.235988674000055 ], [ 105.74341881600003, 19.231919664000088 ], [ 105.737071160000028, 19.108465887000079 ], [ 105.695567254000025, 19.081122137000079 ], [ 105.668304884000065, 19.089544989000046 ], [ 105.614268425000034, 18.998602606000077 ], [ 105.634776238000029, 18.909816799000055 ], [ 105.716644727000073, 18.854559637000079 ], [ 105.702891472000033, 18.834133205000057 ], [ 105.67505944100003, 18.854559637000079 ], [ 105.68873131600003, 18.826646226000037 ], [ 105.72006269600007, 18.823553778000075 ], [ 105.757578972000033, 18.772040106000077 ], [ 105.742686394000032, 18.73078034100007 ], [ 105.756114129000025, 18.715969143000052 ], [ 105.750743034363495, 18.662787177486223 ], [ 105.688980748362781, 18.621886908354099 ], [ 105.695802036834493, 18.601397202718715 ], [ 105.68091922374316, 18.577315986143844 ], [ 105.503462356302634, 18.597056382945709 ], [ 105.412305129378183, 18.587522080879296 ], [ 105.274329054642124, 18.625814316977142 ], [ 105.169476766000116, 18.618327167000089 ], [ 105.112684367000099, 18.698342998000058 ], [ 105.064573609000036, 18.696637675000076 ], [ 104.990159546000086, 18.733017884000063 ], [ 104.919724569000039, 18.735575867000065 ], [ 104.899364054000046, 18.770612488000083 ], [ 104.872905721000052, 18.777976380000084 ], [ 104.80164392100005, 18.775134176 ], [ 104.710279989000071, 18.796088969000024 ], [ 104.685578655000029, 18.824769389 ], [ 104.64620121300004, 18.832546692 ], [ 104.556077515000027, 18.896470439000083 ], [ 104.497683147000089, 18.967990621000112 ], [ 104.413243856000065, 18.983105977000022 ], [ 104.355159547000085, 19.047882385000023 ], [ 104.259919881000087, 19.104054668000074 ], [ 104.210620565000113, 19.100747376000086 ], [ 104.198114869000108, 19.146946106000129 ], [ 104.147730347000106, 19.182887065 ], [ 104.036729370000046, 19.230248515000071 ], [ 103.972753947000058, 19.225287577000117 ], [ 103.910948934000089, 19.263011373000083 ], [ 103.892655477000119, 19.293888041000073 ], [ 103.848420451000095, 19.299908346000095 ], [ 103.952806844000122, 19.390962219000031 ], [ 104.038279664000072, 19.412924703 ], [ 104.06050052900008, 19.471293234000072 ], [ 104.089956096000094, 19.483669739000035 ], [ 104.071559285000092, 19.559143169000023 ], [ 104.017350708000095, 19.600406800000044 ], [ 104.000969279000117, 19.680737813000079 ], [ 104.088715862000072, 19.651902364000037 ], [ 104.136309856000025, 19.687455750000098 ], [ 104.228965699000071, 19.706007589000038 ], [ 104.277024781000136, 19.683890076000026 ], [ 104.295266561000062, 19.65487375900004 ], [ 104.341878703000134, 19.683011577000073 ], [ 104.380067586000052, 19.685285340000107 ], [ 104.505848023000112, 19.602809753000102 ], [ 104.579228556000032, 19.61802846300013 ], [ 104.61426517700005, 19.60743479500006 ], [ 104.675966838000136, 19.72468861900002 ], [ 104.805002889000093, 19.7908861290001 ], [ 104.816630086000032, 19.848091940000032 ], [ 104.760716187000071, 19.861450297000076 ], [ 104.761801392000052, 19.885505677000097 ], [ 104.85791955600007, 19.955217184000063 ], [ 104.873835897000106, 19.982657369000023 ], [ 104.922463420000099, 19.982243958000097 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-23", "NAME_1": "Ha Tinh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.152061809000088, 18.596798808000059 ], [ 105.169476766000116, 18.618327167000089 ], [ 105.274329054642124, 18.625814316977142 ], [ 105.412305129378183, 18.587522080879296 ], [ 105.503462356302634, 18.597056382945709 ], [ 105.66179894366627, 18.570210475932697 ], [ 105.68091922374316, 18.577315986143844 ], [ 105.695802036834493, 18.601397202718715 ], [ 105.688980748362781, 18.621886908354099 ], [ 105.714663933593613, 18.647802639380302 ], [ 105.770030144000032, 18.671576239000046 ], [ 105.764414910000028, 18.758978583000044 ], [ 105.783457879000025, 18.747259833000044 ], [ 105.825938347000033, 18.593898830000057 ], [ 105.879242384000065, 18.510931708000044 ], [ 105.91529381600003, 18.473089911000045 ], [ 105.949473504000025, 18.47101471600007 ], [ 105.977305535000028, 18.402085679000038 ], [ 106.110118035000028, 18.275539455000057 ], [ 106.112152540000068, 18.262884833000044 ], [ 106.09343509200005, 18.258734442000048 ], [ 106.165782097000033, 18.265570380000042 ], [ 106.27084394600007, 18.204087632000039 ], [ 106.346039259000065, 18.132717190000051 ], [ 106.354014519000032, 18.11469147300005 ], [ 106.324066602000073, 18.118068752000056 ], [ 106.30632571700005, 18.100490627000056 ], [ 106.340342644000032, 18.100490627000056 ], [ 106.346690300000034, 18.059475002000056 ], [ 106.360199415000068, 18.100490627000056 ], [ 106.395030144000032, 18.100490627000056 ], [ 106.422373894000032, 18.12836334800005 ], [ 106.43482506600003, 18.123521226000037 ], [ 106.427744988000029, 18.07290273600006 ], [ 106.518565300000034, 17.957017320000091 ], [ 106.350025669149261, 17.967379055199217 ], [ 106.300933059113333, 17.913015448504154 ], [ 106.278453811194368, 17.908416246312697 ], [ 106.138669061328073, 17.928880113526418 ], [ 106.062601353069965, 17.955648505274269 ], [ 106.059345738015338, 17.99463837336225 ], [ 106.028494908013556, 18.038640854791595 ], [ 105.92715742387594, 18.070783595986143 ], [ 105.859978061638174, 18.063884793148645 ], [ 105.736626417575053, 18.022853705034436 ], [ 105.68226281087999, 17.981331692303741 ], [ 105.603430503914581, 17.96918391720402 ], [ 105.559323771000038, 18.015335592000056 ], [ 105.546508017000065, 18.058950501000126 ], [ 105.476021362000097, 18.127318421 ], [ 105.466719604000104, 18.180958558000057 ], [ 105.410030559000063, 18.201887512000056 ], [ 105.368327678000128, 18.149952698000035 ], [ 105.32187056500004, 18.170080669000114 ], [ 105.295050497000034, 18.195608826000054 ], [ 105.292518351000069, 18.252737122000084 ], [ 105.235932658000081, 18.249455669000085 ], [ 105.15666101100004, 18.319838969 ], [ 105.162862183000129, 18.366011861000047 ], [ 105.090773560000116, 18.426524963000091 ], [ 105.079973186000075, 18.454352722000053 ], [ 105.11361454300004, 18.580830790000036 ], [ 105.128135621000069, 18.598917542000024 ], [ 105.152061809000088, 18.596798808000059 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-24", "NAME_1": "Quảng Bình" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.932169231000046, 17.495729065000077 ], [ 105.819876343000033, 17.621561178000078 ], [ 105.723086385000045, 17.673495993000088 ], [ 105.643969767000044, 17.820102031000104 ], [ 105.605212443000028, 17.854260153 ], [ 105.594153687000073, 17.888108215 ], [ 105.603430503914581, 17.96918391720402 ], [ 105.68226281087999, 17.981331692303741 ], [ 105.736626417575053, 18.022853705034436 ], [ 105.859978061638174, 18.063884793148645 ], [ 105.92715742387594, 18.070783595986143 ], [ 106.028494908013556, 18.038640854791595 ], [ 106.059345738015338, 17.99463837336225 ], [ 106.062601353069965, 17.955648505274269 ], [ 106.138669061328073, 17.928880113526418 ], [ 106.278453811194368, 17.908416246312697 ], [ 106.300933059113333, 17.913015448504154 ], [ 106.350025669149261, 17.967379055199217 ], [ 106.518565300000034, 17.957017320000091 ], [ 106.52475019600007, 17.943426825000074 ], [ 106.455088738000029, 17.881822007000039 ], [ 106.436045769000032, 17.881984768000052 ], [ 106.451019727000073, 17.865708726000037 ], [ 106.442881707000026, 17.846584377000056 ], [ 106.47006269600007, 17.748195705000057 ], [ 106.498057488000029, 17.710638739000046 ], [ 106.48951256600003, 17.70258209800005 ], [ 106.374522332000026, 17.765285549000055 ], [ 106.285166863000029, 17.77212148600006 ], [ 106.429209832000026, 17.731146552000041 ], [ 106.383067254000025, 17.719183661000045 ], [ 106.379649285000028, 17.698797919000071 ], [ 106.408702019000032, 17.682766018000052 ], [ 106.395030144000032, 17.703192450000074 ], [ 106.417491082000026, 17.712958075000074 ], [ 106.504405144000032, 17.682766018000052 ], [ 106.634613477000073, 17.470404364000046 ], [ 106.763926629000025, 17.335516669000071 ], [ 107.00749759200005, 17.162217515000066 ], [ 106.902550083019889, 17.100455227027112 ], [ 106.816922235172967, 16.978757229362657 ], [ 106.786019729227064, 16.966251532182469 ], [ 106.58820234556174, 16.972168483988355 ], [ 106.533550472875959, 16.950638060398148 ], [ 106.524536174000104, 16.989248353000065 ], [ 106.496837606000042, 16.963926901 ], [ 106.456529989000103, 16.973590393000038 ], [ 106.411364787000025, 16.995707907000039 ], [ 106.387128540000049, 17.047177633000032 ], [ 106.39493168100006, 17.068003235000063 ], [ 106.306358277000129, 17.176523743000061 ], [ 106.31054406800007, 17.227114970000102 ], [ 106.284550823000075, 17.284785868000071 ], [ 106.259952840000096, 17.289230042000085 ], [ 106.221815634000052, 17.244891663000132 ], [ 106.185435425000037, 17.257397360000127 ], [ 106.019295695000039, 17.394494934000093 ], [ 105.932169231000046, 17.495729065000077 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-25", "NAME_1": "Quảng Trị" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.692897990000063, 16.427887269000038 ], [ 106.670677124000122, 16.444423726000039 ], [ 106.641169882000099, 16.510362854000064 ], [ 106.640188030000104, 16.586637268000075 ], [ 106.572440227000129, 16.613560689000096 ], [ 106.540659221000055, 16.659139303000089 ], [ 106.533550472875959, 16.950638060398148 ], [ 106.58820234556174, 16.972168483988355 ], [ 106.749071080266106, 16.961342270729176 ], [ 106.816922235172967, 16.978757229362657 ], [ 106.902550083019889, 17.100455227027112 ], [ 107.00749759200005, 17.162217515000066 ], [ 107.111827019000032, 17.088283596000053 ], [ 107.127207879000025, 17.059759833000044 ], [ 107.121267123000052, 17.018540757000039 ], [ 107.200694207000026, 16.926255601000037 ], [ 107.141774936000047, 16.867743231000077 ], [ 107.190196160000028, 16.874579169000071 ], [ 107.189463738000029, 16.892320054000038 ], [ 107.21648196700005, 16.907945054000038 ], [ 107.411631707000026, 16.750026760000083 ], [ 107.309140253020189, 16.619554347954761 ], [ 107.114630162152196, 16.564312242116273 ], [ 107.119022657869323, 16.51604645438033 ], [ 107.16697838724275, 16.464059962697092 ], [ 107.068896519059081, 16.357063910071361 ], [ 107.067980239000121, 16.290809443000043 ], [ 106.967299846000117, 16.299884745000057 ], [ 106.946009155000127, 16.346135153000134 ], [ 106.897743368000079, 16.37853627500003 ], [ 106.876297649000094, 16.418017070000062 ], [ 106.855885457000113, 16.414658102000047 ], [ 106.864050334000126, 16.504058330000035 ], [ 106.846687053000039, 16.530051575000115 ], [ 106.822864218000063, 16.530981751000056 ], [ 106.742404012000065, 16.421531067000032 ], [ 106.692897990000063, 16.427887269000038 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-26", "NAME_1": "Thừa Thiên - Huế" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.135990306000053, 16.184783784000061 ], [ 107.116851441000051, 16.254616190000078 ], [ 107.067980239000121, 16.290809443000043 ], [ 107.062643671368278, 16.343912257744478 ], [ 107.16697838724275, 16.464059962697092 ], [ 107.119022657869323, 16.51604645438033 ], [ 107.108325636718689, 16.553356838547245 ], [ 107.12956465118765, 16.574130764123424 ], [ 107.309140253020189, 16.619554347954761 ], [ 107.411631707000026, 16.750026760000083 ], [ 107.635264519000032, 16.579779364000046 ], [ 107.473643425000034, 16.653143622000073 ], [ 107.443369988000029, 16.648016669000071 ], [ 107.635264519000032, 16.559271552000041 ], [ 107.608409050000034, 16.544989325000074 ], [ 107.663096550000034, 16.551825262000079 ], [ 107.648936394000032, 16.521429755000042 ], [ 107.663096550000034, 16.497219143000052 ], [ 107.697113477000073, 16.520086981000077 ], [ 107.84115644600007, 16.379787502000056 ], [ 107.794444207000026, 16.37921784100007 ], [ 107.824066602000073, 16.304836330000057 ], [ 107.896494988000029, 16.27806224200009 ], [ 107.937510613000029, 16.312079169000071 ], [ 107.929942254000025, 16.353216864000046 ], [ 108.011973504000025, 16.319037177000041 ], [ 108.042979363000029, 16.346380927000041 ], [ 108.094493035000028, 16.236517645000049 ], [ 108.05201256600003, 16.262111721000053 ], [ 108.05396569100003, 16.235988674000055 ], [ 108.20435631600003, 16.216701565000051 ], [ 108.132759230853765, 16.201595364134732 ], [ 108.022275018277412, 16.223144436066832 ], [ 107.95308027623372, 16.215909736445155 ], [ 107.885900913995954, 16.11253103318063 ], [ 107.856238640600736, 16.087648830928799 ], [ 107.802546828373409, 16.084289863086724 ], [ 107.729941440744824, 16.014061591369341 ], [ 107.662296991412973, 16.091421209920895 ], [ 107.597133009880451, 16.056203721724387 ], [ 107.433292114739288, 16.055460997726868 ], [ 107.431044149000115, 16.073697001000099 ], [ 107.326864462000117, 16.056075338000127 ], [ 107.298959188000026, 16.064188538000039 ], [ 107.23880782100008, 16.12981760600006 ], [ 107.135990306000053, 16.184783784000061 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-27", "NAME_1": "Quàng Nam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.227232300000026, 15.853297018000134 ], [ 107.305057007000073, 15.899134013 ], [ 107.375543660000119, 15.9190811160001 ], [ 107.444738403000031, 16.009979961000099 ], [ 107.433292114739288, 16.055460997726868 ], [ 107.597133009880451, 16.056203721724387 ], [ 107.662296991412973, 16.091421209920895 ], [ 107.729941440744824, 16.014061591369341 ], [ 107.821667107550923, 16.092506415538651 ], [ 107.933856643369325, 16.079380600734112 ], [ 108.000880975076882, 16.08997426999656 ], [ 108.0109062026591, 16.016516222545647 ], [ 108.033747185783966, 15.986337185212903 ], [ 108.081237828063252, 15.975355943222212 ], [ 108.183350457657468, 15.997266751259531 ], [ 108.282318556000064, 15.990057684000078 ], [ 108.30591881600003, 15.955226955000057 ], [ 108.388194207000026, 15.898382880000042 ], [ 108.39616946700005, 15.880845445000091 ], [ 108.375173373000052, 15.86945221600007 ], [ 108.409922722000033, 15.880845445000091 ], [ 108.424082879000025, 15.805731512000079 ], [ 108.455332879000025, 15.747015692000048 ], [ 108.618662957000026, 15.529242255000042 ], [ 108.646250847000033, 15.513861395000049 ], [ 108.683441602000073, 15.517767645000049 ], [ 108.667735222000033, 15.482652085000041 ], [ 108.656260613000029, 15.496649481000077 ], [ 108.629405144000032, 15.486517645000049 ], [ 108.628916863000029, 15.45571523600006 ], [ 108.652517123000052, 15.438788153000075 ], [ 108.697113477000073, 15.490423895000049 ], [ 108.703949415000068, 15.445135809000078 ], [ 108.761566602000073, 15.396551825000074 ], [ 108.358068474880156, 15.30581024824437 ], [ 108.278796828410862, 15.196747138069952 ], [ 108.280347121122702, 15.160031033105668 ], [ 108.326545852209279, 15.086443793546209 ], [ 108.296573521350865, 15.0481257190267 ], [ 108.202935825727707, 15.063912868783859 ], [ 108.190016718296874, 14.987199205379 ], [ 108.138495314607042, 14.956477565687067 ], [ 108.069455601294919, 15.052156480437191 ], [ 108.070230747650839, 15.135097154010452 ], [ 108.006151970836754, 15.194447537423912 ], [ 107.948584425930449, 15.226254380934904 ], [ 107.850502556847459, 15.22772715928096 ], [ 107.776656935768926, 15.296043403080546 ], [ 107.721518181818567, 15.304802557891719 ], [ 107.701674432229197, 15.356401475048017 ], [ 107.64973961828872, 15.398931179030683 ], [ 107.512641236000093, 15.409422302000024 ], [ 107.493934367000065, 15.420041809000111 ], [ 107.487474813000119, 15.481407572000094 ], [ 107.460809774000097, 15.484378967000097 ], [ 107.447890666000092, 15.508124288000047 ], [ 107.369342489000132, 15.496057841000052 ], [ 107.316425822000042, 15.588739523000058 ], [ 107.239117879000048, 15.645118510000074 ], [ 107.225682007000103, 15.716819560000047 ], [ 107.148787476000109, 15.773456930000052 ], [ 107.175245809000103, 15.848542786000039 ], [ 107.198603557000126, 15.862082011000027 ], [ 107.227232300000026, 15.853297018000134 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-03", "NAME_1": "Hà Giang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.293655233000038, 23.366275127000065 ], [ 105.312155396000094, 23.365810039000039 ], [ 105.359646037000061, 23.291551005000045 ], [ 105.430856161000122, 23.267805685 ], [ 105.473850952000134, 23.194502665000087 ], [ 105.528266236000093, 23.1555127970001 ], [ 105.535191685447899, 23.09900381087715 ], [ 105.510076939199337, 23.086782335436396 ], [ 105.488476190423796, 23.008389187211208 ], [ 105.432924025323473, 23.000766913062591 ], [ 105.295929803417664, 22.865658881552122 ], [ 105.451889275769418, 22.774811712990129 ], [ 105.567644484105642, 22.592238878521414 ], [ 105.500413445923755, 22.580870062903045 ], [ 105.343575474428576, 22.60099803333253 ], [ 105.179554478356465, 22.645310574023767 ], [ 105.135319452031069, 22.525679633008622 ], [ 105.073101027190603, 22.441447048242651 ], [ 105.048864780984786, 22.35703359632339 ], [ 105.031966587188208, 22.342228298497162 ], [ 104.976104363725369, 22.355715846708961 ], [ 104.945666944873551, 22.344657091251747 ], [ 104.929233839969697, 22.268020942212672 ], [ 104.848256871157616, 22.170223293969798 ], [ 104.770173781294943, 22.181385403113836 ], [ 104.689506870845378, 22.264429430373923 ], [ 104.650852898642313, 22.268641058937703 ], [ 104.598556350395199, 22.233862820312879 ], [ 104.594680616816959, 22.331660468555754 ], [ 104.470863885659753, 22.418735256327011 ], [ 104.44016808528886, 22.553481554430164 ], [ 104.47871870290578, 22.582885444507667 ], [ 104.422288038662032, 22.651253364251318 ], [ 104.369991490414918, 22.668435777089428 ], [ 104.361911280581069, 22.69253554577881 ], [ 104.449003947000051, 22.745176087000104 ], [ 104.553545370000052, 22.836049093 ], [ 104.588426962000028, 22.806851909000059 ], [ 104.609821005000072, 22.823000794000038 ], [ 104.662737672000048, 22.810934346000053 ], [ 104.715344279000135, 22.827083232000049 ], [ 104.774203736000118, 22.89622629800003 ], [ 104.823606405000135, 22.924131572000121 ], [ 104.797923218000051, 23.085568746 ], [ 104.861278524000056, 23.119597677000044 ], [ 104.870063518000052, 23.163548482000081 ], [ 104.894764852000094, 23.170343933000126 ], [ 104.935072469000033, 23.154272563000049 ], [ 105.061059611000076, 23.232459005000081 ], [ 105.155627482000057, 23.266849670000042 ], [ 105.200896037000064, 23.254008077000051 ], [ 105.235932658000081, 23.319792176000121 ], [ 105.293655233000038, 23.366275127000065 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-04", "NAME_1": "Cao Bằng" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.535191685447899, 23.09900381087715 ], [ 105.551572307000129, 23.05967885400004 ], [ 105.690323527000032, 23.043969218000072 ], [ 105.754712362000134, 23.005676982000082 ], [ 105.853879435000067, 22.904649556000024 ], [ 105.875996949000069, 22.928265687000035 ], [ 105.961211385000126, 22.932399801000074 ], [ 105.99924524000005, 22.975368754000058 ], [ 106.132105347000049, 22.975007019000046 ], [ 106.202385294000067, 22.946998393000044 ], [ 106.227086630000088, 22.87555572600003 ], [ 106.255405314000086, 22.854652609000041 ], [ 106.315660034000132, 22.853799947000098 ], [ 106.457976929000097, 22.888965759000072 ], [ 106.487794231000123, 22.925423483000074 ], [ 106.581690308000134, 22.895270284000091 ], [ 106.610370728000134, 22.852869771000073 ], [ 106.667473185000119, 22.867520040000031 ], [ 106.730363404000116, 22.797627665000064 ], [ 106.789842977000092, 22.797188416000026 ], [ 106.798731323000084, 22.784372660000045 ], [ 106.746641480000051, 22.744349263000075 ], [ 106.680185588000086, 22.57944976800006 ], [ 106.646337525000092, 22.568804423000088 ], [ 106.607631877000074, 22.609990540000055 ], [ 106.577142782000067, 22.59531443300007 ], [ 106.526913290000039, 22.438269755000093 ], [ 106.533028217678066, 22.403444518849426 ], [ 106.496580030643884, 22.384034532067972 ], [ 106.398549839303598, 22.378065904318021 ], [ 106.272097608917477, 22.445400295287357 ], [ 106.22569217315521, 22.43490997971179 ], [ 106.192980992079072, 22.406694648039547 ], [ 106.162078485233849, 22.408839219954018 ], [ 106.137738886240584, 22.43183523181051 ], [ 106.107921584113797, 22.530563056040194 ], [ 106.08234174987183, 22.542319444386806 ], [ 105.996352166819008, 22.525395413067827 ], [ 105.895014682681392, 22.474700833476675 ], [ 105.86147667840595, 22.47501089093987 ], [ 105.815122918587804, 22.505267441739022 ], [ 105.765255162195956, 22.617301947926535 ], [ 105.773833448954463, 22.713704332189138 ], [ 105.724947543594226, 22.724142970921378 ], [ 105.693011508874008, 22.711094672281263 ], [ 105.567644484105642, 22.592238878521414 ], [ 105.451889275769418, 22.774811712990129 ], [ 105.295929803417664, 22.865658881552122 ], [ 105.432924025323473, 23.000766913062591 ], [ 105.488476190423796, 23.008389187211208 ], [ 105.510076939199337, 23.086782335436396 ], [ 105.535191685447899, 23.09900381087715 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-02", "NAME_1": "Lào Cai" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.340173381000113, 22.686368306000119 ], [ 104.361911280581069, 22.69253554577881 ], [ 104.369991490414918, 22.668435777089428 ], [ 104.422288038662032, 22.651253364251318 ], [ 104.472517531159099, 22.593375759183914 ], [ 104.479390497373515, 22.576580919074161 ], [ 104.449883253609244, 22.571723334464309 ], [ 104.44016808528886, 22.553481554430164 ], [ 104.470863885659753, 22.418735256327011 ], [ 104.594680616816959, 22.331660468555754 ], [ 104.593905471360358, 22.240115668003682 ], [ 104.604602491611672, 22.232674261907619 ], [ 104.628477004410172, 22.257918199365406 ], [ 104.645426874150871, 22.17241954182839 ], [ 104.554476352801373, 22.095654202479466 ], [ 104.453035515876309, 22.148751736403483 ], [ 104.3988786147562, 22.13482493682136 ], [ 104.380998569928011, 22.099684962990636 ], [ 104.443888788336892, 21.970752264805185 ], [ 104.425233596253406, 21.918068142031132 ], [ 104.394176059777294, 21.898611965170062 ], [ 104.232222121253869, 21.960184433964457 ], [ 104.196978793736321, 21.887139796764188 ], [ 104.149953241249023, 21.911427720712709 ], [ 104.051768020277848, 21.928377590453408 ], [ 103.983865187628282, 21.974240423856486 ], [ 103.911466505574708, 21.861146552271578 ], [ 103.952445916845534, 21.79236522137785 ], [ 103.937563103754201, 21.738802599460371 ], [ 103.925264113048343, 21.719785671271723 ], [ 103.856534458098736, 21.715858263548 ], [ 103.711013625378484, 21.861198228215642 ], [ 103.634945917120319, 22.024159857991037 ], [ 103.605490350199432, 22.041962389352761 ], [ 103.569420201281218, 22.033590807269945 ], [ 103.601149530426426, 22.150896308317954 ], [ 103.634325800395345, 22.192134101107854 ], [ 103.726206495933013, 22.235955715383966 ], [ 103.771681756607734, 22.287942206167884 ], [ 103.801757440253596, 22.363183092126008 ], [ 103.747290480771028, 22.419820461944767 ], [ 103.652774286004444, 22.417701728452016 ], [ 103.587920362834438, 22.451937363818274 ], [ 103.577998488039725, 22.482452297035877 ], [ 103.6133968442889, 22.533715318307259 ], [ 103.602183059200797, 22.578699653466231 ], [ 103.549923021630093, 22.648662168324392 ], [ 103.547146850000104, 22.70068267900011 ], [ 103.590038290000052, 22.76801707 ], [ 103.646934042000055, 22.799048768000134 ], [ 103.836328166000101, 22.602755839000011 ], [ 103.959524780000038, 22.507102763000105 ], [ 103.985362997000095, 22.527153219000056 ], [ 104.02381026300003, 22.719182841000034 ], [ 104.086855510000078, 22.791555685 ], [ 104.241161337000108, 22.824396057000016 ], [ 104.228758993000042, 22.783442485000094 ], [ 104.23682051600008, 22.742075501000059 ], [ 104.340173381000113, 22.686368306000119 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-01", "NAME_1": "Lai Chau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.503635295000095, 22.581413473000012 ], [ 103.549923021630093, 22.648662168324392 ], [ 103.609624465296804, 22.555858670341365 ], [ 103.610244582021778, 22.517127183772516 ], [ 103.577998488039725, 22.482452297035877 ], [ 103.587920362834438, 22.451937363818274 ], [ 103.652774286004444, 22.417701728452016 ], [ 103.747290480771028, 22.419820461944767 ], [ 103.801757440253596, 22.363183092126008 ], [ 103.771681756607734, 22.287942206167884 ], [ 103.726206495933013, 22.235955715383966 ], [ 103.634325800395345, 22.192134101107854 ], [ 103.59257124186928, 22.13464407056739 ], [ 103.569420201281218, 22.033590807269945 ], [ 103.535623813688005, 21.982767035570191 ], [ 103.550403273991833, 21.886907254566154 ], [ 103.497487826701786, 21.967840887746775 ], [ 103.461680534329162, 21.990301824569542 ], [ 103.452159050299883, 22.048366603735758 ], [ 103.416514519029761, 22.081406968157012 ], [ 103.383230013854018, 22.1499697934712 ], [ 103.323985222539932, 22.149481512861485 ], [ 103.263112826495728, 22.075995184430212 ], [ 103.28419030024213, 22.054266668971593 ], [ 103.264414909920106, 22.048041082430018 ], [ 103.17733808698307, 22.087958075105064 ], [ 103.140147331534081, 22.085557359184747 ], [ 103.040293816006738, 22.147731837754066 ], [ 102.934662305620861, 22.137396551809388 ], [ 102.908376498176835, 22.20294830931698 ], [ 102.845469597343993, 22.205430405788604 ], [ 102.828542513726006, 22.228338934294356 ], [ 102.817556186069112, 22.297064520711046 ], [ 102.776784701652616, 22.36037832250156 ], [ 102.644948764373908, 22.436224676127893 ], [ 102.523203972285444, 22.561957098141534 ], [ 102.379242384128702, 22.575628973198548 ], [ 102.324649043774599, 22.565118461592977 ], [ 102.384323771000084, 22.628852437000077 ], [ 102.355850057000055, 22.669935201000058 ], [ 102.394969117000073, 22.680528870000032 ], [ 102.425613241000065, 22.745305278000032 ], [ 102.467781210000055, 22.768585510000051 ], [ 102.515788615000076, 22.745176087000104 ], [ 102.535787394000124, 22.695825094 ], [ 102.586688680000066, 22.716082256000092 ], [ 102.612475220000078, 22.691587626000043 ], [ 102.692728719000058, 22.670503642000099 ], [ 102.751898234000066, 22.625286764000023 ], [ 102.831841675000078, 22.599706930000067 ], [ 102.902586711000083, 22.477233785000081 ], [ 103.029038941000067, 22.430156555000011 ], [ 103.045058635000089, 22.440543518000126 ], [ 103.04418013600008, 22.486483867000018 ], [ 103.142003621000129, 22.537798564000056 ], [ 103.130014690000053, 22.57795115100005 ], [ 103.141745240000091, 22.60704498300008 ], [ 103.244891398000107, 22.668694967000121 ], [ 103.321579224000118, 22.790392965000095 ], [ 103.401729371000101, 22.737838033000102 ], [ 103.404313192000131, 22.68879709900007 ], [ 103.447514690000048, 22.618258769000121 ], [ 103.503635295000095, 22.581413473000012 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-09", "NAME_1": "Lạng Sơn" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.533028217678066, 22.403444518849426 ], [ 106.541796102000092, 22.345097148 ], [ 106.633780151000053, 22.309440410000022 ], [ 106.662925659000109, 22.223295797 ], [ 106.639671265000061, 22.190894674 ], [ 106.672175741000103, 22.092502747000069 ], [ 106.648197877000086, 21.995506083000109 ], [ 106.65894657500013, 21.962794901000038 ], [ 106.728761434000091, 22.008321839000089 ], [ 106.781523071000038, 21.975042216000062 ], [ 106.864773804000038, 21.968065898000063 ], [ 106.92037764500003, 21.916957906000064 ], [ 106.991897827000059, 21.935354716000077 ], [ 107.020216513000094, 21.912927144000079 ], [ 106.987143595000077, 21.844817607000053 ], [ 107.002904908000062, 21.810556132000059 ], [ 107.065846802000067, 21.795828349000047 ], [ 107.172351929000115, 21.715058085000109 ], [ 107.212142782000114, 21.705239563000035 ], [ 107.272655884000073, 21.718313701000099 ], [ 107.303196655000079, 21.688703105000045 ], [ 107.333575565959563, 21.612508760370986 ], [ 107.233072543862761, 21.544318346114778 ], [ 107.224545933048319, 21.527833564367484 ], [ 107.24888553294096, 21.456494249510001 ], [ 107.214779086985232, 21.406729845006339 ], [ 107.100729200991793, 21.364045112292104 ], [ 107.024093051952718, 21.376163234945295 ], [ 107.00683312384956, 21.441766466049557 ], [ 106.921980422358558, 21.445022081104128 ], [ 106.82792931468606, 21.597157498519721 ], [ 106.747727492229956, 21.549253445090415 ], [ 106.658740675641639, 21.607363593255229 ], [ 106.580399205159154, 21.599095363959862 ], [ 106.522108188941729, 21.544912625317409 ], [ 106.477976516303158, 21.448303534580418 ], [ 106.398704868934487, 21.411070664779345 ], [ 106.352919549897251, 21.423860581900328 ], [ 106.291941359406167, 21.477474879761871 ], [ 106.165489129919365, 21.51713654231753 ], [ 106.16750451062461, 21.57077667950017 ], [ 106.256698032787938, 21.684878241437673 ], [ 106.181353794042309, 21.785388902375928 ], [ 106.141924677281963, 21.805336004752803 ], [ 106.117688430176884, 21.898121038754937 ], [ 106.123476189874225, 22.054313056002741 ], [ 106.190448845637661, 22.111777249020804 ], [ 106.260005323786629, 22.262103990406843 ], [ 106.220266147764448, 22.320808416874911 ], [ 106.192980992079072, 22.406694648039547 ], [ 106.257989943081384, 22.446175442542597 ], [ 106.398549839303598, 22.378065904318021 ], [ 106.475857781911088, 22.379047756248951 ], [ 106.533028217678066, 22.403444518849426 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-13", "NAME_1": "Quảng Ninh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 107.333575565959563, 21.612508760370986 ], [ 107.348155152000061, 21.599354553000083 ], [ 107.42603153500005, 21.652064514000088 ], [ 107.457037394000054, 21.631497294 ], [ 107.461016480000126, 21.596357320000052 ], [ 107.509850708000101, 21.581784567000099 ], [ 107.533053426000038, 21.608656311000104 ], [ 107.613203573000078, 21.605607402000075 ], [ 107.690253133000112, 21.624727682000056 ], [ 107.744823446000055, 21.657542217000085 ], [ 107.777896363000025, 21.655991923000059 ], [ 107.832363322000049, 21.639352112000054 ], [ 107.855462688000102, 21.600336406000039 ], [ 107.991221550000034, 21.485663153000075 ], [ 107.929698113000029, 21.442613023000035 ], [ 107.916026238000029, 21.458400783000059 ], [ 107.928558790000068, 21.49054596600007 ], [ 107.909678582000026, 21.526516018000052 ], [ 107.881927931000064, 21.534084377000056 ], [ 107.86841881600003, 21.513617255000042 ], [ 107.862803582000026, 21.530218817000048 ], [ 107.835948113000029, 21.488348700000074 ], [ 107.826670769000032, 21.526678778000075 ], [ 107.812998894000032, 21.520453192000048 ], [ 107.820567254000025, 21.493109442000048 ], [ 107.80005944100003, 21.499335028000075 ], [ 107.79623457100007, 21.519476630000042 ], [ 107.76685631600003, 21.520209052000041 ], [ 107.752207879000025, 21.506781317000048 ], [ 107.788584832000026, 21.49445221600007 ], [ 107.78638756600003, 21.458400783000059 ], [ 107.761810743000069, 21.450751044000071 ], [ 107.748545769000032, 21.411200262000079 ], [ 107.698090040000068, 21.398382880000042 ], [ 107.669037306000064, 21.411200262000079 ], [ 107.66342207100007, 21.378078518000052 ], [ 107.635020379000025, 21.383246161000045 ], [ 107.642344597000033, 21.342271226000037 ], [ 107.621348504000025, 21.335516669000071 ], [ 107.628754102000073, 21.328680731000077 ], [ 107.608164910000028, 21.335516669000071 ], [ 107.590586785000028, 21.293890692000048 ], [ 107.55404707100007, 21.304510809000078 ], [ 107.522308790000068, 21.348537502000056 ], [ 107.537445509000065, 21.301947333000044 ], [ 107.52662194100003, 21.298773505000042 ], [ 107.41529381600003, 21.328680731000077 ], [ 107.409027540000068, 21.315008856000077 ], [ 107.443125847000033, 21.287665106000077 ], [ 107.367442254000025, 21.273382880000042 ], [ 107.36060631600003, 21.239243882000039 ], [ 107.354340040000068, 21.191473700000074 ], [ 107.388438347000033, 21.184637762000079 ], [ 107.367442254000025, 21.087876695000091 ], [ 107.354340040000068, 21.082220770000049 ], [ 107.37427819100003, 21.027573960000041 ], [ 107.333832227000073, 21.005845445000091 ], [ 107.211192254000025, 20.992254950000074 ], [ 107.231130405000044, 20.979193427000041 ], [ 107.193369988000029, 20.952704169000071 ], [ 107.197032097000033, 20.937648830000057 ], [ 107.149180535000028, 20.930812893000052 ], [ 107.06609134200005, 20.958726304000038 ], [ 107.149180535000028, 21.040594794000071 ], [ 107.111175977000073, 21.033107815000051 ], [ 107.083750847000033, 21.005845445000091 ], [ 107.080332879000025, 21.03384023600006 ], [ 107.063243035000028, 21.009344794000071 ], [ 107.052989129000025, 21.03384023600006 ], [ 107.04615319100003, 20.999701239000046 ], [ 107.04460696700005, 21.025091864000046 ], [ 107.025645379000025, 21.03384023600006 ], [ 107.039317254000025, 20.999701239000046 ], [ 106.997813347000033, 21.02016836100006 ], [ 107.025645379000025, 20.972357489000046 ], [ 107.000987175000034, 20.951076565000051 ], [ 106.94695071700005, 20.954291083000044 ], [ 106.884613477000073, 20.993231512000079 ], [ 106.853770379000025, 20.992254950000074 ], [ 106.943125847000033, 20.910305080000057 ], [ 106.90170332100007, 20.907863674000055 ], [ 106.87427819100003, 20.937648830000057 ], [ 106.88795006600003, 20.910305080000057 ], [ 106.867930535000028, 20.882717190000051 ], [ 106.83326256600003, 20.937648830000057 ], [ 106.80600019600007, 20.932074286000045 ], [ 106.772471550000034, 20.957424221000053 ], [ 106.820648634000065, 20.97601959800005 ], [ 106.79810631600003, 21.024807033000059 ], [ 106.77857506600003, 21.027573960000041 ], [ 106.785411004000025, 21.013373114000046 ], [ 106.730804884000065, 21.029852606000077 ], [ 106.71029707100007, 21.02016836100006 ], [ 106.717784050000034, 21.005845445000091 ], [ 106.44449018797178, 21.064373481451014 ], [ 106.44635053904608, 21.107600816524439 ], [ 106.505623407194435, 21.138787543310457 ], [ 106.54582767121002, 21.193719590786486 ], [ 106.824363641268974, 21.162171128794569 ], [ 106.963528274410294, 21.198292955455486 ], [ 107.007453240574534, 21.327432359216004 ], [ 107.065330844742675, 21.360531113919762 ], [ 107.214779086985232, 21.406729845006339 ], [ 107.24888553294096, 21.456494249510001 ], [ 107.224545933048319, 21.527833564367484 ], [ 107.233072543862761, 21.544318346114778 ], [ 107.333575565959563, 21.612508760370986 ] ] ], [ [ [ 107.080332879000025, 20.800441799000055 ], [ 107.094004754000025, 20.78742096600007 ], [ 107.075043165000068, 20.796047268000052 ], [ 107.06609134200005, 20.814113674000055 ], [ 107.07349694100003, 20.780585028000075 ], [ 107.031911655000044, 20.78742096600007 ], [ 107.07349694100003, 20.732163804000038 ], [ 107.05982506600003, 20.738959052000041 ], [ 107.04615319100003, 20.704250393000052 ], [ 107.04615319100003, 20.725978908000059 ], [ 107.018239780000044, 20.725978908000059 ], [ 107.039317254000025, 20.732163804000038 ], [ 107.031911655000044, 20.74640534100007 ], [ 106.997813347000033, 20.753241278000075 ], [ 107.00513756600003, 20.732163804000038 ], [ 106.985118035000028, 20.745266018000052 ], [ 106.909922722000033, 20.818548895000049 ], [ 106.912852410000028, 20.836900132000039 ], [ 106.943125847000033, 20.848863023000035 ], [ 106.948090040000068, 20.870266018000052 ], [ 106.957367384000065, 20.876776434000078 ], [ 106.963633660000028, 20.85610586100006 ], [ 107.00513756600003, 20.842027085000041 ], [ 107.012461785000028, 20.858791408000059 ], [ 107.035980665000068, 20.857367255000042 ], [ 107.042979363000029, 20.831366278000075 ], [ 107.08716881600003, 20.821519273000035 ], [ 107.107676629000025, 20.800441799000055 ], [ 107.080332879000025, 20.800441799000055 ] ] ], [ [ [ 106.840098504000025, 20.879868882000039 ], [ 106.881602410000028, 20.821519273000035 ], [ 106.886485222000033, 20.796128648000035 ], [ 106.873545769000032, 20.789536851000037 ], [ 106.847504102000073, 20.797308661000045 ], [ 106.81959069100003, 20.876776434000078 ], [ 106.81959069100003, 20.842027085000041 ], [ 106.770681186000047, 20.858587958000044 ], [ 106.785411004000025, 20.930812893000052 ], [ 106.824554884000065, 20.915187893000052 ], [ 106.840098504000025, 20.879868882000039 ] ] ], [ [ [ 107.525401238000029, 20.910305080000057 ], [ 107.553233269000032, 20.972357489000046 ], [ 107.545176629000025, 20.919134833000044 ], [ 107.484629754000025, 20.82172272300005 ], [ 107.463877800000034, 20.814113674000055 ], [ 107.481944207000026, 20.865383205000057 ], [ 107.470713738000029, 20.883002020000049 ], [ 107.505625847000033, 20.887396552000041 ], [ 107.525401238000029, 20.910305080000057 ] ] ], [ [ [ 107.745127800000034, 21.02016836100006 ], [ 107.792816602000073, 20.986029364000046 ], [ 107.772959832000026, 20.992254950000074 ], [ 107.77076256600003, 20.957220770000049 ], [ 107.738291863000029, 20.937648830000057 ], [ 107.758799675000034, 20.982611395000049 ], [ 107.73764082100007, 21.003241278000075 ], [ 107.745127800000034, 21.02016836100006 ] ] ], [ [ [ 107.532725457000026, 21.02016836100006 ], [ 107.558360222000033, 21.034735419000071 ], [ 107.511729363000029, 20.923976955000057 ], [ 107.395030144000032, 20.897284247000073 ], [ 107.47429446700005, 20.94672272300005 ], [ 107.504730665000068, 21.02016836100006 ], [ 107.519786004000025, 21.013373114000046 ], [ 107.532725457000026, 21.040594794000071 ], [ 107.532725457000026, 21.02016836100006 ] ] ], [ [ [ 107.621267123000052, 21.116034247000073 ], [ 107.631846550000034, 21.11196523600006 ], [ 107.579600457000026, 20.98314036700009 ], [ 107.559418165000068, 20.986029364000046 ], [ 107.594248894000032, 21.089056708000044 ], [ 107.621267123000052, 21.116034247000073 ] ] ], [ [ [ 107.580577019000032, 21.211981512000079 ], [ 107.606211785000028, 21.21743398600006 ], [ 107.547129754000025, 21.156724351000037 ], [ 107.524180535000028, 21.159979559000078 ], [ 107.470713738000029, 21.095892645000049 ], [ 107.388682488000029, 21.04751211100006 ], [ 107.372894727000073, 21.059556382000039 ], [ 107.418304884000065, 21.196682033000059 ], [ 107.435313347000033, 21.189276434000078 ], [ 107.450205925000034, 21.205145575000074 ], [ 107.455332879000025, 21.27570221600007 ], [ 107.523203972000033, 21.230861721000053 ], [ 107.532725457000026, 21.198919989000046 ], [ 107.580577019000032, 21.211981512000079 ] ] ], [ [ [ 107.813487175000034, 21.360500393000052 ], [ 107.817067905000044, 21.348537502000056 ], [ 107.711436394000032, 21.307562567000048 ], [ 107.783946160000028, 21.356350002000056 ], [ 107.813487175000034, 21.360500393000052 ] ] ], [ [ [ 107.868662957000026, 21.39008209800005 ], [ 107.998301629000025, 21.40375397300005 ], [ 107.944183790000068, 21.368109442000048 ], [ 107.929942254000025, 21.37641022300005 ], [ 107.84115644600007, 21.348537502000056 ], [ 107.848155144000032, 21.370266018000052 ], [ 107.854991082000026, 21.355943101000037 ], [ 107.872813347000033, 21.374212958000044 ], [ 107.826914910000028, 21.37641022300005 ], [ 107.868662957000026, 21.39008209800005 ] ] ], [ [ [ 107.369639519000032, 20.825913804000038 ], [ 107.38021894600007, 20.797552802000041 ], [ 107.350271030000044, 20.810939846000053 ], [ 107.34107506600003, 20.842596747000073 ], [ 107.369639519000032, 20.825913804000038 ] ] ], [ [ [ 107.38217207100007, 20.887884833000044 ], [ 107.38998457100007, 20.867417710000041 ], [ 107.367686394000032, 20.858384507000039 ], [ 107.332530144000032, 20.883286851000037 ], [ 107.38217207100007, 20.887884833000044 ] ] ], [ [ [ 107.825694207000026, 21.024969794000071 ], [ 107.856293165000068, 21.033270575000074 ], [ 107.81771894600007, 20.988267320000091 ], [ 107.816579623000052, 21.005845445000091 ], [ 107.825694207000026, 21.024969794000071 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-52", "NAME_1": "Sóc Trăng" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.210703972000033, 9.620917059000078 ], [ 106.292002800000034, 9.586411851000037 ], [ 106.28443444100003, 9.54368724200009 ], [ 106.244151238000029, 9.534979559000078 ], [ 106.249196811000047, 9.560126044000071 ], [ 106.197032097000033, 9.610052802000041 ], [ 106.226573113000029, 9.56517161700009 ], [ 106.19662519600007, 9.571682033000059 ], [ 106.125987175000034, 9.672430731000077 ], [ 106.09343509200005, 9.760891018000052 ], [ 106.210703972000033, 9.620917059000078 ] ] ], [ [ [ 105.902104592352998, 9.916698971580274 ], [ 106.07349694100003, 9.747951565000051 ], [ 106.092946811000047, 9.692938544000071 ], [ 106.197032097000033, 9.541164455000057 ], [ 106.210703972000033, 9.470038153000075 ], [ 106.16920006600003, 9.418198960000041 ], [ 106.19459069100003, 9.398993231000077 ], [ 106.183929884000065, 9.362209377000056 ], [ 105.868256056000064, 9.254706122000073 ], [ 105.823029412677215, 9.378032538470848 ], [ 105.785925734085311, 9.394103909068122 ], [ 105.692391392148977, 9.383949490276734 ], [ 105.599735549356069, 9.418004259389022 ], [ 105.577566358900299, 9.459267889701323 ], [ 105.569298129604931, 9.610421454286666 ], [ 105.674097935271448, 9.640910549082548 ], [ 105.826285027731785, 9.723696193924184 ], [ 105.902104592352998, 9.916698971580274 ] ] ], [ [ [ 106.662608269000032, 8.739813544000071 ], [ 106.639170769000032, 8.737453518000052 ], [ 106.655772332000026, 8.698879299000055 ], [ 106.602305535000028, 8.694728908000059 ], [ 106.603037957000026, 8.65570709800005 ], [ 106.578379754000025, 8.655462958000044 ], [ 106.559580925000034, 8.681830145000049 ], [ 106.570974155000044, 8.705959377000056 ], [ 106.658376498000052, 8.766669012000079 ], [ 106.662608269000032, 8.739813544000071 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-46", "NAME_1": "Tiền Giang" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.724131707000026, 10.268622137000079 ], [ 106.75554446700005, 10.257554429000038 ], [ 106.752452019000032, 10.236070054000038 ], [ 106.724131707000026, 10.226507880000042 ], [ 106.689952019000032, 10.251776434000078 ], [ 106.559580925000034, 10.275376695000091 ], [ 106.511729363000029, 10.295884507000039 ], [ 106.724131707000026, 10.268622137000079 ] ] ], [ [ [ 106.615407748000052, 10.436590887000079 ], [ 106.648936394000032, 10.47406647300005 ], [ 106.670176629000025, 10.432562567000048 ], [ 106.689789259000065, 10.43305084800005 ], [ 106.724131707000026, 10.47406647300005 ], [ 106.741058790000068, 10.468003648000092 ], [ 106.788096550000034, 10.393133856000077 ], [ 106.790782097000033, 10.284857489000046 ], [ 106.598317905000044, 10.28851959800005 ], [ 106.354340039860915, 10.338975327149626 ], [ 106.158213737773735, 10.298122463081199 ], [ 106.003428581263961, 10.321071681412946 ], [ 105.973155143894758, 10.31334056231708 ], [ 105.954907667554778, 10.28851959939999 ], [ 105.897856886585998, 10.290302436108504 ], [ 105.849022658069146, 10.301438706830822 ], [ 105.839307488849499, 10.344149277966778 ], [ 105.948551467076527, 10.480704251200223 ], [ 105.96265913291262, 10.55346466756032 ], [ 106.078414341248788, 10.543930365493964 ], [ 106.145800409061565, 10.58994822852793 ], [ 106.301243116576529, 10.576279812263522 ], [ 106.355916783432747, 10.506775010957995 ], [ 106.440614455292859, 10.47176422833644 ], [ 106.452241652430246, 10.416367091967686 ], [ 106.584740024932159, 10.414429226527545 ], [ 106.615407748000052, 10.436590887000079 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-43", "NAME_1": "Bà Rịa - Vũng Tàu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 107.172048373000052, 10.464585679000038 ], [ 107.211192254000025, 10.425604559000078 ], [ 107.190196160000028, 10.43305084800005 ], [ 107.165863477000073, 10.391099351000037 ], [ 107.135508660000028, 10.378485419000071 ], [ 107.08716881600003, 10.323187567000048 ], [ 107.07935631600003, 10.391017971000053 ], [ 107.14966881600003, 10.416571356000077 ], [ 107.172048373000052, 10.464585679000038 ] ] ], [ [ [ 107.002547053693519, 10.624885006838459 ], [ 107.02507571700005, 10.603908596000053 ], [ 107.01140384200005, 10.56281159100007 ], [ 107.026866082000026, 10.544175523000092 ], [ 107.019053582000026, 10.533880927000041 ], [ 106.99146569100003, 10.570257880000042 ], [ 107.002547053693519, 10.624885006838459 ] ] ], [ [ [ 107.0202393821871, 10.511906838696207 ], [ 107.034190300000034, 10.53587474200009 ], [ 107.031911655000044, 10.607489325000074 ], [ 107.01140384200005, 10.637884833000044 ], [ 107.025645379000025, 10.631048895000049 ], [ 107.116697218801562, 10.665111599220893 ], [ 107.143568964236295, 10.686221422480628 ], [ 107.151010370332301, 10.727665919946219 ], [ 107.254466587063291, 10.773812974189411 ], [ 107.288779737694711, 10.759007677262503 ], [ 107.300148553313022, 10.696401678794416 ], [ 107.342471551720678, 10.683740952882658 ], [ 107.457865024850946, 10.801511541924128 ], [ 107.482669711837673, 10.798410956500447 ], [ 107.516569452218391, 10.756062120570391 ], [ 107.586517774000072, 10.573513088000084 ], [ 107.51140384200005, 10.501654364000046 ], [ 107.429535352000073, 10.468451239000046 ], [ 107.334157748000052, 10.453558661000045 ], [ 107.271983269000032, 10.378485419000071 ], [ 107.190196160000028, 10.405178127000056 ], [ 107.217539910000028, 10.425604559000078 ], [ 107.216970248000052, 10.434475002000056 ], [ 107.175954623000052, 10.477443752000056 ], [ 107.141774936000047, 10.480861721000053 ], [ 107.135508660000028, 10.466620184000078 ], [ 107.10279381600003, 10.489935614000046 ], [ 107.05982506600003, 10.480861721000053 ], [ 107.05982506600003, 10.508205471000053 ], [ 107.031911655000044, 10.47406647300005 ], [ 107.0202393821871, 10.511906838696207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-SG", "NAME_1": "Hồ Chí Minh city" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.936289910000028, 10.439276434000078 ], [ 106.977305535000028, 10.405178127000056 ], [ 106.88795006600003, 10.370998440000051 ], [ 106.87427819100003, 10.425604559000078 ], [ 106.895274285000028, 10.480861721000053 ], [ 106.88795006600003, 10.466620184000078 ], [ 106.879405144000032, 10.490057684000078 ], [ 106.927500847000033, 10.521185614000046 ], [ 106.948090040000068, 10.507025458000044 ], [ 106.922048373000052, 10.425604559000078 ], [ 106.936289910000028, 10.439276434000078 ] ] ], [ [ [ 106.908946160000028, 10.532375393000052 ], [ 106.88990319100003, 10.525458075000074 ], [ 106.853770379000025, 10.56281159100007 ], [ 106.871267123000052, 10.607652085000041 ], [ 106.853770379000025, 10.631048895000049 ], [ 106.88795006600003, 10.634466864000046 ], [ 106.929453972000033, 10.597560940000051 ], [ 106.922048373000052, 10.542954820000091 ], [ 106.895274285000028, 10.57648346600007 ], [ 106.908946160000028, 10.532375393000052 ] ] ], [ [ [ 106.984141472000033, 10.566880601000037 ], [ 107.01140384200005, 10.521877346000053 ], [ 106.963633660000028, 10.466620184000078 ], [ 106.963633660000028, 10.501369533000059 ], [ 106.937754754000025, 10.548732815000051 ], [ 106.943125847000033, 10.600653387000079 ], [ 106.881602410000028, 10.652167059000078 ], [ 106.828623894000032, 10.630275783000059 ], [ 106.772471550000034, 10.686346747000073 ], [ 106.74146569100003, 10.669256903000075 ], [ 106.772471550000034, 10.603745835000041 ], [ 106.751963738000029, 10.57648346600007 ], [ 106.744069858000046, 10.552232164000088 ], [ 106.743696730819408, 10.618034368990948 ], [ 106.724731480373464, 10.643717556020363 ], [ 106.697446323788768, 10.654569606801886 ], [ 106.645304803373961, 10.639040839463178 ], [ 106.504538201576679, 10.723221747385708 ], [ 106.496786737118157, 10.748904934415179 ], [ 106.52675906797657, 10.825644436241703 ], [ 106.511669550209547, 10.885614936380193 ], [ 106.476942986629467, 10.924966538774754 ], [ 106.363668247891269, 10.982146510952703 ], [ 106.411727330052202, 11.045605170142494 ], [ 106.429607374880391, 11.124205023942693 ], [ 106.522418248203564, 11.130561225320264 ], [ 106.583396437795329, 11.037698676053026 ], [ 106.616107618871467, 11.031006577891219 ], [ 106.72178592278209, 10.875383002323701 ], [ 106.799403924651358, 10.894529119922936 ], [ 106.835990839305737, 10.887785345817065 ], [ 106.880690952725217, 10.813707179842481 ], [ 106.881156039819359, 10.762495836313803 ], [ 106.828962844359751, 10.77086741839662 ], [ 106.793822869629707, 10.752625637463211 ], [ 106.751138136915415, 10.772495225474245 ], [ 106.757029250299638, 10.705393378501583 ], [ 106.836468193152541, 10.66083133799583 ], [ 106.892500259879057, 10.670073740810494 ], [ 106.964128881242857, 10.605376922007338 ], [ 106.984141472000033, 10.566880601000037 ] ] ], [ [ [ 107.025645378931074, 10.501369533277341 ], [ 106.997813347000033, 10.480861721000053 ], [ 106.99146569100003, 10.480861721000053 ], [ 107.004161004000025, 10.504706122000073 ], [ 107.025645378931074, 10.501369533277341 ] ] ], [ [ [ 106.87427819100003, 10.46039459800005 ], [ 106.832286004000025, 10.472398179000038 ], [ 106.81959069100003, 10.466620184000078 ], [ 106.859629754000025, 10.431789455000057 ], [ 106.858897332000026, 10.413072007000039 ], [ 106.840098504000025, 10.405178127000056 ], [ 106.770681186000047, 10.46430084800005 ], [ 106.751963738000029, 10.566555080000057 ], [ 106.77857506600003, 10.57648346600007 ], [ 106.785899285000028, 10.601385809000078 ], [ 106.751963738000029, 10.665838934000078 ], [ 106.784190300000034, 10.662909247000073 ], [ 106.847829623000052, 10.613836981000077 ], [ 106.853770379000025, 10.583929755000042 ], [ 106.840098504000025, 10.559393622000073 ], [ 106.871836785000028, 10.515204169000071 ], [ 106.840098504000025, 10.494533596000053 ], [ 106.863942905000044, 10.48696523600006 ], [ 106.87427819100003, 10.46039459800005 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-34", "NAME_1": "Khánh Hòa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.328379754000025, 12.221258856000077 ], [ 109.34888756600003, 12.200832424000055 ], [ 109.307383660000028, 12.187160549000055 ], [ 109.269297722000033, 12.19867584800005 ], [ 109.245290561000047, 12.228094794000071 ], [ 109.328379754000025, 12.221258856000077 ] ] ], [ [ [ 109.384613477000073, 12.833970445000091 ], [ 109.36882571700005, 12.824611721000053 ], [ 109.37623131600003, 12.776190497000073 ], [ 109.420746290000068, 12.691310940000051 ], [ 109.472422722000033, 12.656398830000057 ], [ 109.451345248000052, 12.63898346600007 ], [ 109.451345248000052, 12.570746161000045 ], [ 109.440277540000068, 12.564601955000057 ], [ 109.405121290000068, 12.617987372000073 ], [ 109.424082879000025, 12.65265534100007 ], [ 109.403493686000047, 12.687445380000042 ], [ 109.37623131600003, 12.673773505000042 ], [ 109.37623131600003, 12.63898346600007 ], [ 109.342051629000025, 12.660101630000042 ], [ 109.38990319100003, 12.711615302000041 ], [ 109.358897332000026, 12.797308661000045 ], [ 109.204925977000073, 12.646429755000042 ], [ 109.204925977000073, 12.55023834800005 ], [ 109.218516472000033, 12.543402411000045 ], [ 109.239024285000028, 12.57758209800005 ], [ 109.232188347000033, 12.59125397300005 ], [ 109.249034050000034, 12.585516669000071 ], [ 109.237152540000068, 12.522284247000073 ], [ 109.298350457000026, 12.47797272300005 ], [ 109.29428144600007, 12.439032294000071 ], [ 109.336680535000028, 12.410142320000091 ], [ 109.342051629000025, 12.378892320000091 ], [ 109.322520379000025, 12.386053778000075 ], [ 109.297373894000032, 12.35101959800005 ], [ 109.185069207000026, 12.458929755000042 ], [ 109.156504754000025, 12.454657294000071 ], [ 109.170176629000025, 12.433539130000042 ], [ 109.14966881600003, 12.440375067000048 ], [ 109.176931186000047, 12.399400132000039 ], [ 109.196299675000034, 12.402777411000045 ], [ 109.21412194100003, 12.332912502000056 ], [ 109.242035352000073, 12.30540599200009 ], [ 109.236338738000029, 12.291083075000074 ], [ 109.218516472000033, 12.296372789000088 ], [ 109.204925977000073, 12.262884833000044 ], [ 109.176931186000047, 12.276516018000052 ], [ 109.211192254000025, 12.248602606000077 ], [ 109.204844597000033, 12.233384507000039 ], [ 109.224782748000052, 12.200832424000055 ], [ 109.19849694100003, 12.207953192000048 ], [ 109.188243035000028, 12.205755927000041 ], [ 109.184336785000028, 12.19399648600006 ], [ 109.20435631600003, 12.193793036000045 ], [ 109.226817254000025, 12.137884833000044 ], [ 109.209971550000034, 12.10968659100007 ], [ 109.220550977000073, 12.050604559000078 ], [ 109.249196811000047, 11.997381903000075 ], [ 109.28679446700005, 11.96743398600006 ], [ 109.265879754000025, 11.909898179000038 ], [ 109.29420006600003, 11.871242580000057 ], [ 109.224782748000052, 11.878648179000038 ], [ 109.218516472000033, 12.015814520000049 ], [ 109.176768425000034, 12.129461981000077 ], [ 109.16334069100003, 12.112005927000041 ], [ 109.182139519000032, 12.081040757000039 ], [ 109.176931186000047, 12.05304596600007 ], [ 109.211192254000025, 12.005601304000038 ], [ 109.208181186000047, 11.976629950000074 ], [ 109.181813998000052, 11.921698309000078 ], [ 109.137217644000032, 11.896063544000071 ], [ 109.125824415000068, 11.86359284100007 ], [ 109.131602410000028, 11.830023505000042 ], [ 109.16334069100003, 11.824042059000078 ], [ 109.204925977000073, 11.868109442000048 ], [ 109.192881707000026, 11.827541408000059 ], [ 109.20386803488185, 11.788682359303436 ], [ 109.133938429814634, 11.79251048457121 ], [ 109.085982701340527, 11.819382229106566 ], [ 109.0504293145612, 11.898033758850886 ], [ 108.877933383618711, 11.95418020315384 ], [ 108.809772170349333, 12.124324855707528 ], [ 108.777681105998226, 12.158121243300741 ], [ 108.719183384205792, 12.181143093578896 ], [ 108.707091099074944, 12.270801702836309 ], [ 108.681459588888856, 12.302996120874241 ], [ 108.668282098140253, 12.369141954337692 ], [ 108.671227654832364, 12.468954983285812 ], [ 108.683009881600697, 12.483811957056162 ], [ 108.766518995954868, 12.497015286226485 ], [ 108.847961053659674, 12.475440374973289 ], [ 108.878966913292345, 12.555590522384705 ], [ 108.874626092620019, 12.609540717030427 ], [ 108.906768832915247, 12.681422634247156 ], [ 108.962320998015628, 12.691008613156953 ], [ 109.03730350065598, 12.752658596317133 ], [ 109.088618198770803, 12.761030178400006 ], [ 109.175227899447975, 12.839242459471905 ], [ 109.342659540205545, 12.853091741990283 ], [ 109.384613477000073, 12.833970445000091 ] ] ], [ [ [ 109.393402540000068, 12.60187409100007 ], [ 109.400238477000073, 12.557928778000075 ], [ 109.312022332000026, 12.614325262000079 ], [ 109.320323113000029, 12.627997137000079 ], [ 109.368907097000033, 12.627752997000073 ], [ 109.393402540000068, 12.60187409100007 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-59", "NAME_1": "Cà Mau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.426036004000025, 9.008002020000049 ], [ 105.408213738000029, 9.000555731000077 ], [ 105.315126031000034, 8.812237350000089 ], [ 105.258819849000076, 8.760465236000073 ], [ 105.184030841000038, 8.740881653000088 ], [ 105.101472290000061, 8.634275390000084 ], [ 104.856211785000028, 8.565578518000052 ], [ 104.722911004000082, 8.602687893000052 ], [ 104.720225457000026, 8.613755601000037 ], [ 104.759301294000068, 8.615620453000076 ], [ 104.835134311000047, 8.66046784100007 ], [ 104.819509311000047, 8.69086334800005 ], [ 104.832774285000028, 8.698879299000055 ], [ 104.911631707000026, 8.685207424000055 ], [ 104.963145379000082, 8.71938711100006 ], [ 104.90748131600003, 8.699611721000053 ], [ 104.853282097000033, 8.712551174000055 ], [ 104.85279381600003, 8.729193427000041 ], [ 104.92896569100003, 8.747300523000092 ], [ 104.92156009200005, 8.80931224200009 ], [ 104.816661004000082, 8.771307684000078 ], [ 104.774594540000066, 8.817867266000064 ], [ 104.811717017000035, 8.937049451000064 ], [ 104.834136223875049, 9.534433881757723 ], [ 104.877867465910754, 9.506138414356315 ], [ 105.02390506436717, 9.528255927069381 ], [ 105.279910108764454, 9.405808621470669 ], [ 105.304766472594565, 9.372218940351786 ], [ 105.287248162972276, 9.330722765143491 ], [ 105.31685875862479, 9.297210598390393 ], [ 105.281046991225594, 9.236206570376908 ], [ 105.28332075434929, 9.205174872322459 ], [ 105.316703728993843, 9.191067206486366 ], [ 105.34057824089308, 9.085466416941586 ], [ 105.413855422090023, 9.04394440421089 ], [ 105.426036004000025, 9.008002020000049 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-55", "NAME_1": "Bạc Liêu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.868256056000064, 9.254706122000073 ], [ 105.53874759200005, 9.129339911000045 ], [ 105.426036004000025, 9.008002020000049 ], [ 105.413855422090023, 9.04394440421089 ], [ 105.34057824089308, 9.085466416941586 ], [ 105.316703728993843, 9.191067206486366 ], [ 105.28332075434929, 9.205174872322459 ], [ 105.281046991225594, 9.236206570376908 ], [ 105.31685875862479, 9.297210598390393 ], [ 105.287248162972276, 9.330722765143491 ], [ 105.304766472594565, 9.372218940351786 ], [ 105.279910108764454, 9.405808621470669 ], [ 105.298823684165654, 9.425058091857466 ], [ 105.278359816951934, 9.459500433698054 ], [ 105.310192498884646, 9.515517685892462 ], [ 105.296033156205169, 9.600318712338662 ], [ 105.462586297819371, 9.587451279952575 ], [ 105.569298129604931, 9.610421454286666 ], [ 105.577566358900299, 9.459267889701323 ], [ 105.599735549356069, 9.418004259389022 ], [ 105.692391392148977, 9.383949490276734 ], [ 105.785925734085311, 9.394103909068122 ], [ 105.823029412677215, 9.378032538470848 ], [ 105.868256056000064, 9.254706122000073 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-73", "NAME_1": "Hau Giang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.838510089810569, 10.004751968856691 ], [ 105.819021030000044, 10.007961330000057 ], [ 105.902104592352998, 9.916698971580274 ], [ 105.826285027731785, 9.723696193924184 ], [ 105.674097935271448, 9.640910549082548 ], [ 105.533796420568308, 9.599388536351853 ], [ 105.392254673314483, 9.5868311632276 ], [ 105.393184849301292, 9.642615872324654 ], [ 105.36155887294359, 9.683491929908598 ], [ 105.367605015059382, 9.701888739573633 ], [ 105.50397912024016, 9.834257920866321 ], [ 105.528525424808493, 9.9078709988475 ], [ 105.518913609275614, 9.95218353953868 ], [ 105.422782761814972, 10.043628432606056 ], [ 105.692236363417408, 10.123180853713393 ], [ 105.838510089810569, 10.004751968856691 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-49", "NAME_1": "Vĩnh Long" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.996567502348185, 9.888559491461713 ], [ 105.93287194100003, 9.95538971600007 ], [ 105.838510089810569, 10.004751968856691 ], [ 105.692236363417408, 10.123180853713393 ], [ 105.707894321965341, 10.174547226873017 ], [ 105.727531365979701, 10.185631822550533 ], [ 105.818998651266725, 10.143127956989588 ], [ 105.867884555727642, 10.140725001757403 ], [ 105.900957472908999, 10.160103665152008 ], [ 105.914600050751687, 10.213950507010281 ], [ 105.882922397550544, 10.238936062049618 ], [ 105.849022658069146, 10.301438706830822 ], [ 105.984569940050676, 10.284178778727664 ], [ 106.100738560436184, 10.249090480841005 ], [ 106.15788821700005, 10.195379950000074 ], [ 106.182139519000032, 10.133042710000041 ], [ 106.246429884000065, 10.077460028000075 ], [ 106.134018182293232, 9.993679713847712 ], [ 106.132571242368897, 9.945827338161109 ], [ 105.996567502348185, 9.888559491461713 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-51", "NAME_1": "Trà Vinh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.246429884000065, 10.077460028000075 ], [ 106.500987175000034, 9.834051825000074 ], [ 106.537852410000028, 9.751166083000044 ], [ 106.574961785000028, 9.739081122000073 ], [ 106.563161655000044, 9.614325262000079 ], [ 106.497243686000047, 9.549994208000044 ], [ 106.398203972000033, 9.542059637000079 ], [ 106.250336134000065, 9.63117096600007 ], [ 106.064707879000025, 9.804266669000071 ], [ 105.996567502348185, 9.888559491461713 ], [ 106.132571242368897, 9.945827338161109 ], [ 106.134018182293232, 9.993679713847712 ], [ 106.246429884000065, 10.077460028000075 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-50", "NAME_1": "Bến Tre" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.422373893840074, 10.316961981110524 ], [ 106.480316602000073, 10.280829169000071 ], [ 106.720876498000052, 10.199693101000037 ], [ 106.797618035000028, 10.157212632000039 ], [ 106.791270379000025, 10.110174872000073 ], [ 106.737071160000028, 10.05414459800005 ], [ 106.704112175000034, 10.048895575000074 ], [ 106.69662519600007, 10.083644924000055 ], [ 106.668711785000028, 10.032416083000044 ], [ 106.684092644000032, 10.01203034100007 ], [ 106.664235873000052, 10.006089585000041 ], [ 106.648936394000032, 9.974351304000038 ], [ 106.607432488000029, 9.974839585000041 ], [ 106.468923373000052, 10.058986721000053 ], [ 106.359873894000032, 10.220689195000091 ], [ 106.292002800000034, 10.261704820000091 ], [ 106.349375847000033, 10.214829820000091 ], [ 106.36850019600007, 10.155910549000055 ], [ 106.461680535000028, 10.035711981000077 ], [ 106.696299675000034, 9.896551825000074 ], [ 106.668711785000028, 9.842840887000079 ], [ 106.676442905000044, 9.866766669000071 ], [ 106.662608269000032, 9.883734442000048 ], [ 106.637868686000047, 9.825995184000078 ], [ 106.586761915000068, 9.822943427000041 ], [ 106.504405144000032, 9.905462958000044 ], [ 106.395030144000032, 9.974351304000038 ], [ 106.136485222000033, 10.234564520000049 ], [ 105.954907667554778, 10.28851959939999 ], [ 105.973155143894758, 10.31334056231708 ], [ 106.003428581263961, 10.321071681412946 ], [ 106.10718834706455, 10.296250718495855 ], [ 106.354340039860915, 10.338975327149626 ], [ 106.422373893840074, 10.316961981110524 ] ] ], [ [ [ 106.498057488000029, 9.891180731000077 ], [ 106.544118686000047, 9.838039455000057 ], [ 106.535655144000032, 9.829169012000079 ], [ 106.422373894000032, 9.939032294000071 ], [ 106.498057488000029, 9.891180731000077 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-39", "NAME_1": "Đông Nam Bộ" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.997813347000033, 10.624904690000051 ], [ 106.984141472000033, 10.566880601000037 ], [ 106.964128881242857, 10.605376922007338 ], [ 106.892500259879057, 10.670073740810494 ], [ 106.836468193152541, 10.66083133799583 ], [ 106.757029250299638, 10.705393378501583 ], [ 106.751138136915415, 10.772495225474245 ], [ 106.793822869629707, 10.752625637463211 ], [ 106.828962844359751, 10.77086741839662 ], [ 106.877745396033163, 10.760790513971017 ], [ 106.885341830860739, 10.788179023343218 ], [ 106.832270136257762, 10.917344265525401 ], [ 106.787518345095521, 10.980673733505967 ], [ 106.787518345095521, 11.034675604995186 ], [ 106.827309197961085, 11.055527044937151 ], [ 106.902084995925804, 11.025968126128078 ], [ 106.954691604334016, 11.064001979807529 ], [ 106.974587029867507, 11.122422187234122 ], [ 106.933866001015076, 11.214742133242851 ], [ 106.964768507860299, 11.283626816924027 ], [ 107.080213657834008, 11.402740994001647 ], [ 107.104294875308199, 11.475423895996016 ], [ 107.308520136295215, 11.566219386815249 ], [ 107.382520787004694, 11.559501451131041 ], [ 107.398023715921681, 11.505964666735963 ], [ 107.458795200837812, 11.482529405307787 ], [ 107.443188918233943, 11.441214098152102 ], [ 107.456676467345062, 11.410414944094384 ], [ 107.52680138627494, 11.402508450004973 ], [ 107.609535354273135, 11.361684068365037 ], [ 107.548247105419534, 11.289156196001613 ], [ 107.430941604371526, 11.038086248781326 ], [ 107.459777052768743, 11.008837389234088 ], [ 107.531348911622956, 11.000129910367036 ], [ 107.557393832959008, 10.979666043153372 ], [ 107.588399692591679, 10.91176321050375 ], [ 107.5907768094022, 10.85086253527777 ], [ 107.516569452218391, 10.756062120570391 ], [ 107.482669711837673, 10.798410956500447 ], [ 107.457865024850946, 10.801511541924128 ], [ 107.342471551720678, 10.683740952882658 ], [ 107.300148553313022, 10.696401678794416 ], [ 107.288779737694711, 10.759007677262503 ], [ 107.266558873093459, 10.774433091813705 ], [ 107.151010370332301, 10.727665919946219 ], [ 107.133440382967251, 10.675214342068216 ], [ 107.040526157755949, 10.636792913861882 ], [ 107.025318916934452, 10.635272493031096 ], [ 107.013194207000026, 10.672674872000073 ], [ 106.984141472000033, 10.699367580000057 ], [ 106.97974694100003, 10.684759833000044 ], [ 107.01140384200005, 10.655259507000039 ], [ 106.997813347000033, 10.624904690000051 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-40", "NAME_1": "Bình Thuận" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 108.905964763452928, 11.323376750700559 ], [ 108.838063998000052, 11.330755927000041 ], [ 108.787852410000028, 11.300685940000051 ], [ 108.729340040000068, 11.181545315000051 ], [ 108.656260613000029, 11.19281647300005 ], [ 108.57740319100003, 11.17914459800005 ], [ 108.531260613000029, 11.153265692000048 ], [ 108.500336134000065, 11.120835679000038 ], [ 108.47234134200005, 11.053168036000045 ], [ 108.36882571700005, 11.022772528000075 ], [ 108.34498131600003, 10.953802802000041 ], [ 108.315440300000034, 10.944322007000039 ], [ 108.30005944100003, 10.91282786700009 ], [ 108.285329623000052, 10.943345445000091 ], [ 108.258636915000068, 10.95180898600006 ], [ 108.106455925000034, 10.918158270000049 ], [ 108.06568444100003, 10.867987372000073 ], [ 107.998301629000025, 10.699367580000057 ], [ 107.882334832000026, 10.716986395000049 ], [ 107.768321160000028, 10.650213934000078 ], [ 107.586517774000072, 10.573513088000084 ], [ 107.516569452218391, 10.756062120570391 ], [ 107.5907768094022, 10.85086253527777 ], [ 107.588399692591679, 10.91176321050375 ], [ 107.544991490364964, 10.99214590101252 ], [ 107.476985304927837, 11.001447659082203 ], [ 107.430941604371526, 11.038086248781326 ], [ 107.511453485190145, 11.220865789724428 ], [ 107.597288038612021, 11.357575791689442 ], [ 107.756348098186152, 11.31491689739687 ], [ 108.010182733146564, 11.301481025129192 ], [ 108.045891147758198, 11.283704332189188 ], [ 108.0528674658608, 11.211021430194819 ], [ 108.066044955710083, 11.203399156046203 ], [ 108.131829054866955, 11.269364122356365 ], [ 108.250529819895235, 11.306519476892333 ], [ 108.324892205810613, 11.356258042974275 ], [ 108.338689813284191, 11.379305732573471 ], [ 108.314660271754121, 11.466897284282254 ], [ 108.341170281982897, 11.507928372396464 ], [ 108.386490513026729, 11.523844713362791 ], [ 108.513717888869451, 11.527720445142393 ], [ 108.580432164013132, 11.505215358801763 ], [ 108.620171340035256, 11.564023138956657 ], [ 108.666886835059358, 11.562834581450772 ], [ 108.704920688738753, 11.536712143950297 ], [ 108.721508824172872, 11.476638291923621 ], [ 108.762901645694342, 11.458603217464486 ], [ 108.771893345401509, 11.407779445764788 ], [ 108.867908156036549, 11.387987372119539 ], [ 108.905964763452928, 11.323376750700559 ] ] ], [ [ [ 108.942556186000047, 10.551947333000044 ], [ 108.958994988000029, 10.537543036000045 ], [ 108.960785352000073, 10.502875067000048 ], [ 108.930186394000032, 10.514553127000056 ], [ 108.929453972000033, 10.544826565000051 ], [ 108.942556186000047, 10.551947333000044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-36", "NAME_1": "Ninh Thuận" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.20386803488185, 11.788682359303436 ], [ 109.242930535000028, 11.735663153000075 ], [ 109.13599694100003, 11.570217190000051 ], [ 109.067067905000044, 11.583807684000078 ], [ 109.043467644000032, 11.638495184000078 ], [ 109.020274285000028, 11.632798570000091 ], [ 109.04037519600007, 11.601507880000042 ], [ 109.04037519600007, 11.542873440000051 ], [ 109.012461785000028, 11.542873440000051 ], [ 109.028330925000034, 11.474269924000055 ], [ 109.022471550000034, 11.367621161000045 ], [ 109.005625847000033, 11.343654690000051 ], [ 108.96607506600003, 11.31476471600007 ], [ 108.933360222000033, 11.31118398600006 ], [ 108.905964763452928, 11.323376750700559 ], [ 108.867908156036549, 11.387987372119539 ], [ 108.778611281085716, 11.401965846746407 ], [ 108.762901645694342, 11.458603217464486 ], [ 108.715152622795244, 11.486301785199203 ], [ 108.6969625178059, 11.547770901206093 ], [ 108.620171340035256, 11.564023138956657 ], [ 108.606993850185972, 11.614381821763629 ], [ 108.610094435609653, 11.640142524058206 ], [ 108.683319939963212, 11.727113959041958 ], [ 108.637379592194407, 11.839200141173535 ], [ 108.681304559257967, 11.973171292021505 ], [ 108.694792108369086, 12.155330715340199 ], [ 108.719183384205792, 12.181143093578896 ], [ 108.792253858928404, 12.145538030855448 ], [ 108.890955844736425, 11.943121445897987 ], [ 109.0504293145612, 11.898033758850886 ], [ 109.085982701340527, 11.819382229106566 ], [ 109.114094680225264, 11.797962348383635 ], [ 109.20386803488185, 11.788682359303436 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-32", "NAME_1": "Phú Yên" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.237071160000028, 13.698594468000067 ], [ 109.247569207000026, 13.622707424000055 ], [ 109.303884311000047, 13.568793036000045 ], [ 109.28679446700005, 13.557603257000039 ], [ 109.29420006600003, 13.530340887000079 ], [ 109.218516472000033, 13.646958726000037 ], [ 109.210134311000047, 13.630804755000042 ], [ 109.28679446700005, 13.50922272300005 ], [ 109.314219597000033, 13.52289459800005 ], [ 109.303721550000034, 13.479885158000059 ], [ 109.339691602000073, 13.46548086100006 ], [ 109.307383660000028, 13.406805731000077 ], [ 109.273203972000033, 13.431057033000059 ], [ 109.30046634200005, 13.461371161000045 ], [ 109.262543165000068, 13.489325262000079 ], [ 109.245127800000034, 13.485174872000073 ], [ 109.232188347000033, 13.393133856000077 ], [ 109.280039910000028, 13.352769273000092 ], [ 109.299327019000032, 13.36469147300005 ], [ 109.307383660000028, 13.352769273000092 ], [ 109.305674675000034, 13.333889065000051 ], [ 109.28679446700005, 13.331040757000039 ], [ 109.29420006600003, 13.297552802000041 ], [ 109.273203972000033, 13.310614325000074 ], [ 109.258962436000047, 13.297552802000041 ], [ 109.29420006600003, 13.235500393000052 ], [ 109.303721550000034, 13.303168036000045 ], [ 109.318125847000033, 13.288885809000078 ], [ 109.307383660000028, 13.133042710000041 ], [ 109.328379754000025, 13.084662177000041 ], [ 109.465017123000052, 12.913316148000092 ], [ 109.462901238000029, 12.862127997000073 ], [ 109.43091881600003, 12.845119533000059 ], [ 109.450043165000068, 12.873236395000049 ], [ 109.438243035000028, 12.878607489000046 ], [ 109.384613477000073, 12.833970445000091 ], [ 109.342659540205545, 12.853091741990283 ], [ 109.195691765762319, 12.846813055877817 ], [ 109.073890415310359, 12.754079697819805 ], [ 109.03730350065598, 12.752658596317133 ], [ 108.861603632401682, 12.806996365489852 ], [ 108.739182164325371, 12.880351060153316 ], [ 108.660840692044246, 12.99623545969871 ], [ 108.665491571079087, 13.038997708577369 ], [ 108.687815790266484, 13.071295478503544 ], [ 108.845015496967562, 13.174570828081244 ], [ 108.87483279819503, 13.211312771467192 ], [ 108.821709425849292, 13.430498359012063 ], [ 108.825636835371597, 13.557519029279774 ], [ 108.909714389607359, 13.537830308421974 ], [ 108.977823927831935, 13.5425587018226 ], [ 109.080711704681391, 13.58707794808879 ], [ 109.163135614317127, 13.673300076037663 ], [ 109.237071160000028, 13.698594468000067 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-31", "NAME_1": "Bình Định" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.077321811000047, 14.672471421000068 ], [ 109.088226759000065, 14.589260158000059 ], [ 109.076670769000032, 14.585679429000038 ], [ 109.061045769000032, 14.563706773000092 ], [ 109.067067905000044, 14.550726630000042 ], [ 109.074473504000025, 14.578599351000037 ], [ 109.125743035000028, 14.465399481000077 ], [ 109.136485222000033, 14.366848049000055 ], [ 109.190603061000047, 14.291245835000041 ], [ 109.201182488000029, 14.236029364000046 ], [ 109.190928582000026, 14.220526434000078 ], [ 109.239024285000028, 14.133002020000049 ], [ 109.174489780000044, 14.172064520000049 ], [ 109.184092644000032, 14.136297919000071 ], [ 109.225433790000068, 14.103989976000037 ], [ 109.252696160000028, 14.032619533000059 ], [ 109.266368035000028, 13.920721747000073 ], [ 109.307383660000028, 13.876369533000059 ], [ 109.30396569100003, 13.759263414000088 ], [ 109.269786004000025, 13.755601304000038 ], [ 109.273203972000033, 13.82453034100007 ], [ 109.251475457000026, 13.89093659100007 ], [ 109.220713738000029, 13.806138414000088 ], [ 109.232188347000033, 13.81085846600007 ], [ 109.258962436000047, 13.777329820000091 ], [ 109.22624759200005, 13.74359772300005 ], [ 109.237071160000028, 13.698594468000067 ], [ 109.163135614317127, 13.673300076037663 ], [ 109.062263218172916, 13.574210517501342 ], [ 108.977823927831935, 13.5425587018226 ], [ 108.909714389607359, 13.537830308421974 ], [ 108.825636835371597, 13.557519029279774 ], [ 108.798610061205295, 13.774818427328569 ], [ 108.715772740419595, 13.906955063725206 ], [ 108.714997593164355, 14.008473415915375 ], [ 108.643580763941031, 14.109449163947716 ], [ 108.634744093864811, 14.217530422191203 ], [ 108.687143995798749, 14.457179876949738 ], [ 108.666886835059358, 14.595956936463438 ], [ 108.81416466696578, 14.673342393436712 ], [ 109.0504293145612, 14.683005885812975 ], [ 109.077321811000047, 14.672471421000068 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-29", "NAME_1": "Quảng Ngãi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.761566602000073, 15.396551825000074 ], [ 108.779795769000032, 15.325344143000052 ], [ 108.787119988000029, 15.345851955000057 ], [ 108.821299675000034, 15.345851955000057 ], [ 108.788584832000026, 15.374172268000052 ], [ 108.814463738000029, 15.407904364000046 ], [ 108.80014082100007, 15.429022528000075 ], [ 108.82748457100007, 15.429022528000075 ], [ 108.839040561000047, 15.374335028000075 ], [ 108.882823113000029, 15.336167710000041 ], [ 108.886566602000073, 15.286200262000079 ], [ 108.951670769000032, 15.250230210000041 ], [ 108.93295332100007, 15.22719961100006 ], [ 108.903330925000034, 15.222886460000041 ], [ 108.924327019000032, 15.20180898600006 ], [ 108.910004102000073, 15.20929596600007 ], [ 108.89771569100003, 15.153998114000046 ], [ 108.862478061000047, 15.152492580000057 ], [ 108.89226321700005, 15.14134349200009 ], [ 108.89771569100003, 15.11985911700009 ], [ 108.910004102000073, 15.146633205000057 ], [ 108.94263756600003, 14.979559637000079 ], [ 109.005625847000033, 14.838771877000056 ], [ 108.985524936000047, 14.836615302000041 ], [ 109.012461785000028, 14.821966864000046 ], [ 109.080821160000028, 14.729478257000039 ], [ 109.09506269600007, 14.66742584800005 ], [ 109.076426629000025, 14.685614325000074 ], [ 109.077321811000047, 14.672471421000068 ], [ 109.0504293145612, 14.683005885812975 ], [ 108.81416466696578, 14.673342393436712 ], [ 108.666886835059358, 14.595956936463438 ], [ 108.618155959330011, 14.640605373938854 ], [ 108.548651158024484, 14.82555532521809 ], [ 108.464831984408534, 14.857284654363298 ], [ 108.392536656041784, 14.964254869466629 ], [ 108.296573521350865, 15.0481257190267 ], [ 108.325977411428369, 15.096494859550091 ], [ 108.276161330081266, 15.178143621930587 ], [ 108.33636437421643, 15.284881293037245 ], [ 108.371400995259705, 15.312734890402851 ], [ 108.485605909984713, 15.325214749161319 ], [ 108.665956659072492, 15.383324897326133 ], [ 108.761566602000073, 15.396551825000074 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-DN", "NAME_1": "Đà Nẵng" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.200124545000051, 16.21157461100006 ], [ 108.14226321700005, 16.148382880000042 ], [ 108.142832879000025, 16.119370835000041 ], [ 108.197520379000025, 16.072007554000038 ], [ 108.228282097000033, 16.089748440000051 ], [ 108.233246290000068, 16.037095445000091 ], [ 108.197520379000025, 16.003729559000078 ], [ 108.249847852000073, 16.023260809000078 ], [ 108.258962436000047, 16.010565497000073 ], [ 108.241953972000033, 16.075751044000071 ], [ 108.24732506600003, 16.123236395000049 ], [ 108.224864129000025, 16.12726471600007 ], [ 108.24537194100003, 16.162014065000051 ], [ 108.317393425000034, 16.134711005000042 ], [ 108.33139082100007, 16.155340887000079 ], [ 108.348399285000028, 16.134711005000042 ], [ 108.314219597000033, 16.09992096600007 ], [ 108.265798373000052, 16.107407945000091 ], [ 108.258555535000028, 16.070990302000041 ], [ 108.282318556000064, 15.990057684000078 ], [ 108.1916703628969, 15.997809352719457 ], [ 108.055347934559506, 15.978094794339256 ], [ 108.015918816899841, 16.002744451695094 ], [ 108.000880975076882, 16.08997426999656 ], [ 107.856238640600736, 16.087648830928799 ], [ 107.95308027623372, 16.215909736445155 ], [ 108.022275018277412, 16.223144436066832 ], [ 108.132759230853765, 16.201595364134732 ], [ 108.200124545000051, 16.21157461100006 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-18", "NAME_1": "Ninh Bình" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.11451256600003, 20.033270575000074 ], [ 106.083506707000026, 19.964992580000057 ], [ 106.052744988000029, 19.97728099200009 ], [ 106.034541050129292, 20.000097358506252 ], [ 106.068389112767306, 20.02779592534165 ], [ 106.059965854740369, 20.060248724898713 ], [ 105.982554559345374, 20.078180447469663 ], [ 105.819463739260129, 20.155643418808722 ], [ 105.542633090644586, 20.367103380316735 ], [ 105.585937941882491, 20.38457001399496 ], [ 105.695026889579253, 20.320982164495263 ], [ 105.715645787323183, 20.335296535906366 ], [ 105.713475376087672, 20.419632473459842 ], [ 105.759415724755854, 20.441517442176178 ], [ 105.841322869554745, 20.419477443828953 ], [ 105.951186965406066, 20.336769314252422 ], [ 105.977128533954613, 20.27139862714489 ], [ 106.057330357310093, 20.239643460477282 ], [ 106.093968947009273, 20.252407538277225 ], [ 106.155102167131247, 20.217603461230738 ], [ 106.152466668801708, 20.12670461672468 ], [ 106.11451256600003, 20.033270575000074 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-67", "NAME_1": "Nam Định" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.502940300000034, 20.300523179000038 ], [ 106.52475019600007, 20.308254299000055 ], [ 106.54851321700005, 20.291449286000045 ], [ 106.56961489300005, 20.231993895000073 ], [ 106.380707227000073, 20.211981512000079 ], [ 106.38795006600003, 20.197495835000041 ], [ 106.353282097000033, 20.176825262000079 ], [ 106.259287957000026, 20.06126536700009 ], [ 106.197032097000033, 20.012762762000079 ], [ 106.203298373000052, 20.04751211100006 ], [ 106.176036004000025, 19.992336330000057 ], [ 106.10710696700005, 19.964992580000057 ], [ 106.104502800000034, 19.995917059000078 ], [ 106.16233686675298, 20.173730170111241 ], [ 106.155102167131247, 20.217603461230738 ], [ 106.093968947009273, 20.252407538277225 ], [ 106.048338657602926, 20.241116237924018 ], [ 105.96379601357512, 20.28261241313237 ], [ 105.952427198856071, 20.390848700107426 ], [ 105.978988885928288, 20.426272894778265 ], [ 106.004878777633451, 20.404853014055334 ], [ 106.026324497677365, 20.412759508144745 ], [ 106.070869582365276, 20.483297838224644 ], [ 106.18445438036531, 20.490868435529876 ], [ 106.217785679065798, 20.46859589318592 ], [ 106.219646031039474, 20.413663844810571 ], [ 106.261658970185294, 20.410976671436231 ], [ 106.279539015912803, 20.392605699293597 ], [ 106.267601760412845, 20.331575832858391 ], [ 106.349405552424287, 20.364545396352923 ], [ 106.455290561909862, 20.28455027947183 ], [ 106.502940300000034, 20.300523179000038 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-20", "NAME_1": "Thái Bình" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.593597852000073, 20.646714585000041 ], [ 106.627207879000025, 20.616603908000059 ], [ 106.624766472000033, 20.594631252000056 ], [ 106.518565300000034, 20.540961005000042 ], [ 106.550629102000073, 20.532416083000044 ], [ 106.579925977000073, 20.54718659100007 ], [ 106.56771894600007, 20.524888414000088 ], [ 106.579925977000073, 20.478257554000038 ], [ 106.536957227000073, 20.462062893000052 ], [ 106.518565300000034, 20.437323309000078 ], [ 106.561696811000047, 20.455064195000091 ], [ 106.594248894000032, 20.448187567000048 ], [ 106.584157748000052, 20.381822007000039 ], [ 106.573090040000068, 20.368475653000075 ], [ 106.559580925000034, 20.375921942000048 ], [ 106.58376585600007, 20.337974617000043 ], [ 106.59259316400005, 20.275410718000046 ], [ 106.58165895500008, 20.26417738400005 ], [ 106.521657748000052, 20.313462632000039 ], [ 106.498057488000029, 20.308254299000055 ], [ 106.487174920686016, 20.28646230738957 ], [ 106.455290561909862, 20.28455027947183 ], [ 106.349405552424287, 20.364545396352923 ], [ 106.267601760412845, 20.331575832858391 ], [ 106.279539015912803, 20.392605699293597 ], [ 106.261658970185294, 20.410976671436231 ], [ 106.219646031039474, 20.413663844810571 ], [ 106.214736769586182, 20.474926256141771 ], [ 106.18445438036531, 20.490868435529876 ], [ 106.167814568987126, 20.54642059973088 ], [ 106.136705356566893, 20.575230211505016 ], [ 106.112365756674308, 20.631609198006061 ], [ 106.112882522410416, 20.649566758998731 ], [ 106.138669061328073, 20.666826687101889 ], [ 106.206468540290871, 20.667214259830189 ], [ 106.257369826356353, 20.695894680395156 ], [ 106.417205031387027, 20.719278265879268 ], [ 106.468984816595992, 20.600655016116093 ], [ 106.528774448681816, 20.608716538937131 ], [ 106.555284458011272, 20.637913723439567 ], [ 106.593597852000073, 20.646714585000041 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-HP", "NAME_1": "Hải Phòng" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.650726759000065, 21.018011786000045 ], [ 106.68295332100007, 21.005845445000091 ], [ 106.655772332000026, 21.005845445000091 ], [ 106.676280144000032, 20.958726304000038 ], [ 106.75513756600003, 20.938544012000079 ], [ 106.744476759000065, 20.883002020000049 ], [ 106.717784050000034, 20.903509833000044 ], [ 106.699961785000028, 20.882757880000042 ], [ 106.744476759000065, 20.848863023000035 ], [ 106.749196811000047, 20.804348049000055 ], [ 106.736582879000025, 20.794989325000074 ], [ 106.717784050000034, 20.807847398000035 ], [ 106.755625847000033, 20.751206773000035 ], [ 106.77857506600003, 20.74640534100007 ], [ 106.80591881600003, 20.677557684000078 ], [ 106.767100457000026, 20.713446356000077 ], [ 106.716970248000052, 20.691310940000051 ], [ 106.662608269000032, 20.69798411700009 ], [ 106.702891472000033, 20.671576239000046 ], [ 106.669688347000033, 20.636460679000038 ], [ 106.620941602000073, 20.629787502000056 ], [ 106.586761915000068, 20.663275458000044 ], [ 106.593597852000073, 20.646714585000041 ], [ 106.555284458011272, 20.637913723439567 ], [ 106.537301060395578, 20.612437241985106 ], [ 106.468984816595992, 20.600655016116093 ], [ 106.417205031387027, 20.719278265879268 ], [ 106.46929487495845, 20.72586701125357 ], [ 106.535595738052848, 20.782271837075598 ], [ 106.540711705081094, 20.804027615482028 ], [ 106.496011590762237, 20.831622830429239 ], [ 106.496580030643884, 20.860484117248177 ], [ 106.534820590797608, 20.888363552136184 ], [ 106.544432408129069, 20.948179023543105 ], [ 106.586807081581526, 20.963759466825934 ], [ 106.605255568089945, 21.025435289307154 ], [ 106.650726759000065, 21.018011786000045 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-14", "NAME_1": "Hòa Bình" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.841322869554745, 20.419477443828953 ], [ 105.759415724755854, 20.441517442176178 ], [ 105.713475376087672, 20.419632473459842 ], [ 105.715645787323183, 20.335296535906366 ], [ 105.674511346421468, 20.324289456393274 ], [ 105.585937941882491, 20.38457001399496 ], [ 105.542633090644586, 20.367103380316735 ], [ 105.491266718384281, 20.373666287269316 ], [ 105.308797234904432, 20.456322740002406 ], [ 105.213144158576029, 20.518670356052098 ], [ 105.152062616196758, 20.58652151095896 ], [ 105.066693149868911, 20.575436917080026 ], [ 104.939155714764354, 20.59093984599707 ], [ 104.84293419765504, 20.625718085521214 ], [ 104.839730259443854, 20.696669826751076 ], [ 104.85740359869709, 20.727882391958815 ], [ 104.994397820602899, 20.732895006199556 ], [ 105.077131788601093, 20.772194933549315 ], [ 105.093099807310239, 20.794312446262381 ], [ 104.913524204578323, 20.963785305247598 ], [ 104.88014122903445, 21.022515571036763 ], [ 104.881743198589675, 21.061479600702967 ], [ 104.908614943125087, 21.101399643878437 ], [ 104.942256301087355, 21.053598945035276 ], [ 105.042043491613811, 21.00858877235396 ], [ 105.138109979092235, 20.940479234129327 ], [ 105.332671746803612, 20.918826809409723 ], [ 105.329881219742447, 20.981406969456032 ], [ 105.307918735761007, 21.011921901774315 ], [ 105.375976597142198, 21.022567246980827 ], [ 105.464601677625296, 21.011353460993405 ], [ 105.504495884177686, 20.987246405996814 ], [ 105.533486363105112, 20.927120877126754 ], [ 105.505736119426331, 20.862499497953479 ], [ 105.515968051684183, 20.828625596893744 ], [ 105.629656203371042, 20.742119249004134 ], [ 105.679782343080603, 20.637655341021173 ], [ 105.785822382197125, 20.568305569346535 ], [ 105.841322869554745, 20.419477443828953 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-07", "NAME_1": "Tuyên Quang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.111754999393668, 21.703946845570442 ], [ 105.085503370683966, 21.750093898914258 ], [ 105.093409864773378, 21.81453441003498 ], [ 104.996878290200868, 21.923959255415298 ], [ 104.982615594733886, 22.007365016981908 ], [ 104.883758580194296, 22.089375515467623 ], [ 104.848256871157616, 22.170223293969798 ], [ 104.929233839969697, 22.268020942212672 ], [ 104.945666944873551, 22.344657091251747 ], [ 104.976104363725369, 22.355715846708961 ], [ 105.031966587188208, 22.342228298497162 ], [ 105.048864780984786, 22.35703359632339 ], [ 105.073101027190603, 22.441447048242651 ], [ 105.135319452031069, 22.525679633008622 ], [ 105.179554478356465, 22.645310574023767 ], [ 105.343575474428576, 22.60099803333253 ], [ 105.500413445923755, 22.580870062903045 ], [ 105.567644484105642, 22.592238878521414 ], [ 105.607021925821186, 22.517643947709985 ], [ 105.609295688944826, 22.469972439176729 ], [ 105.499793329198724, 22.295202745110601 ], [ 105.488631220054742, 22.154358628947534 ], [ 105.500671828342149, 22.077464098389385 ], [ 105.557515903735919, 21.950882676794095 ], [ 105.534364862248538, 21.866779283237292 ], [ 105.522324253061811, 21.607570298830183 ], [ 105.577721389430508, 21.543827419699653 ], [ 105.460364210639739, 21.497163601518992 ], [ 105.317427199405699, 21.514139308782035 ], [ 105.233194614639729, 21.618732407974221 ], [ 105.111754999393668, 21.703946845570442 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-06", "NAME_1": "Yên Bái" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.848256871157616, 22.170223293969798 ], [ 104.883758580194296, 22.089375515467623 ], [ 104.982615594733886, 22.007365016981908 ], [ 104.996878290200868, 21.923959255415298 ], [ 105.093409864773378, 21.81453441003498 ], [ 105.085503370683966, 21.750093898914258 ], [ 105.111754999393668, 21.703946845570442 ], [ 104.946597120860417, 21.640255642383977 ], [ 104.903033889002756, 21.595994778536181 ], [ 104.888099399967302, 21.522975978858312 ], [ 104.919311965174984, 21.397919013351782 ], [ 104.895127394913288, 21.365414536951278 ], [ 104.828516472557112, 21.329602769552139 ], [ 104.779372185677801, 21.334847926890291 ], [ 104.735602248245129, 21.391046047137365 ], [ 104.673642205823114, 21.382622789110428 ], [ 104.582278274222915, 21.413215236693816 ], [ 104.469727004097933, 21.362262275583532 ], [ 104.35712405802883, 21.416393337382601 ], [ 104.328443638363183, 21.444195257904823 ], [ 104.310977003785638, 21.495535794441366 ], [ 104.349837680664393, 21.671028958019974 ], [ 104.307152947950158, 21.70970876684612 ], [ 104.232067091622923, 21.669737046827208 ], [ 104.169796990838393, 21.659298407195706 ], [ 104.01636966402873, 21.685188299800188 ], [ 103.925264113048343, 21.719785671271723 ], [ 103.953686151194859, 21.779730332988436 ], [ 103.911466505574708, 21.861146552271578 ], [ 103.983865187628282, 21.974240423856486 ], [ 104.051768020277848, 21.928377590453408 ], [ 104.149953241249023, 21.911427720712709 ], [ 104.196978793736321, 21.887139796764188 ], [ 104.232222121253869, 21.960184433964457 ], [ 104.394176059777294, 21.898611965170062 ], [ 104.425233596253406, 21.918068142031132 ], [ 104.443888788336892, 21.970752264805185 ], [ 104.380998569928011, 22.099684962990636 ], [ 104.3988786147562, 22.13482493682136 ], [ 104.453035515876309, 22.148751736403483 ], [ 104.565380080426337, 22.100046698196536 ], [ 104.608839960395812, 22.15391937937585 ], [ 104.645426874150871, 22.17241954182839 ], [ 104.628477004410172, 22.257918199365406 ], [ 104.650852898642313, 22.268641058937703 ], [ 104.707955357353796, 22.253861599533195 ], [ 104.770173781294943, 22.181385403113836 ], [ 104.848256871157616, 22.170223293969798 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-70", "NAME_1": "Vĩnh Phúc" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.429391440662414, 21.276437788273313 ], [ 105.457470330791068, 21.31172272382463 ], [ 105.392151319627658, 21.408771064133305 ], [ 105.343678827216081, 21.43468679515945 ], [ 105.317427199405699, 21.514139308782035 ], [ 105.460364210639739, 21.497163601518992 ], [ 105.577721389430508, 21.543827419699653 ], [ 105.764221633421585, 21.384922389756468 ], [ 105.779879591969575, 21.179120999434588 ], [ 105.762671339810424, 21.104965318194843 ], [ 105.670170525749143, 21.157623603446552 ], [ 105.494522333438908, 21.173694973144507 ], [ 105.455816685291722, 21.208576565456099 ], [ 105.429391440662414, 21.276437788273313 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-68", "NAME_1": "Phú Thọ" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.317427199405699, 21.514139308782035 ], [ 105.343678827216081, 21.43468679515945 ], [ 105.392151319627658, 21.408771064133305 ], [ 105.457780389153584, 21.300405585049702 ], [ 105.429391440662414, 21.276437788273313 ], [ 105.414682245289328, 21.307226874420678 ], [ 105.353807407585748, 21.301413276301616 ], [ 105.343162063278555, 21.238212999530276 ], [ 105.284871047061131, 21.191549181349615 ], [ 105.305955030999826, 21.126669419757889 ], [ 105.284871047061131, 21.054374091391196 ], [ 105.329881219742447, 20.981406969456032 ], [ 105.332671746803612, 20.918826809409723 ], [ 105.138109979092235, 20.940479234129327 ], [ 105.042043491613811, 21.00858877235396 ], [ 104.942256301087355, 21.053598945035276 ], [ 104.873629998925253, 21.137624823326917 ], [ 104.865775180779906, 21.250201930974299 ], [ 104.828516472557112, 21.329602769552139 ], [ 104.895127394913288, 21.365414536951278 ], [ 104.919311965174984, 21.397919013351782 ], [ 104.889959751041658, 21.567055976452139 ], [ 104.946597120860417, 21.640255642383977 ], [ 105.111754999393668, 21.703946845570442 ], [ 105.233194614639729, 21.618732407974221 ], [ 105.317427199405699, 21.514139308782035 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-HN", "NAME_1": "Ha Noi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.785822382197125, 20.568305569346535 ], [ 105.679782343080603, 20.637655341021173 ], [ 105.629656203371042, 20.742119249004134 ], [ 105.515968051684183, 20.828625596893744 ], [ 105.505736119426331, 20.862499497953479 ], [ 105.533486363105112, 20.927120877126754 ], [ 105.504495884177686, 20.987246405996814 ], [ 105.437109817264229, 21.018562323092738 ], [ 105.307918735761007, 21.011921901774315 ], [ 105.290968866020307, 21.038199368006417 ], [ 105.286834750922992, 21.075561428117396 ], [ 105.305955030999826, 21.126669419757889 ], [ 105.284871047061131, 21.191549181349615 ], [ 105.343162063278555, 21.238212999530276 ], [ 105.353807407585748, 21.301413276301616 ], [ 105.414682245289328, 21.307226874420678 ], [ 105.455816685291722, 21.208576565456099 ], [ 105.494522333438908, 21.173694973144507 ], [ 105.670170525749143, 21.157623603446552 ], [ 105.762671339810424, 21.104965318194843 ], [ 105.779879591969575, 21.179120999434588 ], [ 105.772128126611733, 21.362468980259223 ], [ 105.805046014162201, 21.373088487044015 ], [ 105.84835086540005, 21.363631700242763 ], [ 105.920801223397689, 21.328052475940979 ], [ 105.94607099837782, 21.265782376055768 ], [ 105.920956252129315, 21.208731594187725 ], [ 105.922041456847694, 21.150466417291284 ], [ 105.939094680275218, 21.108918565239605 ], [ 106.010304803024212, 21.045692450046488 ], [ 106.012785271722862, 21.016908678492712 ], [ 106.004723748901824, 20.991303004929705 ], [ 105.912429641314873, 20.965929877162068 ], [ 105.895324741943227, 20.914356798427491 ], [ 105.924728632020731, 20.886709905737519 ], [ 105.915065138745092, 20.809634508026136 ], [ 105.956147901904103, 20.786819363322934 ], [ 105.981314324996049, 20.717185369908862 ], [ 106.007204217600531, 20.713232122864156 ], [ 105.976508417229638, 20.681011868203143 ], [ 105.825509882275185, 20.660341295414412 ], [ 105.785822382197125, 20.568305569346535 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-53", "NAME_1": "Đông Bắc" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.557515903735919, 21.950882676794095 ], [ 105.494987421432313, 22.101209418180076 ], [ 105.494677362170478, 22.268563544571919 ], [ 105.519843785262424, 22.340290432157701 ], [ 105.609295688944826, 22.469972439176729 ], [ 105.607021925821186, 22.517643947709985 ], [ 105.567644484105642, 22.592238878521414 ], [ 105.648466425085417, 22.677944240734121 ], [ 105.724947543594226, 22.724142970921378 ], [ 105.773833448954463, 22.713704332189138 ], [ 105.765255162195956, 22.617301947926535 ], [ 105.815122918587804, 22.505267441739022 ], [ 105.86147667840595, 22.47501089093987 ], [ 105.895014682681392, 22.474700833476675 ], [ 106.048183627972037, 22.540226549315776 ], [ 106.107921584113797, 22.530563056040194 ], [ 106.137738886240584, 22.43183523181051 ], [ 106.162078485233849, 22.408839219954018 ], [ 106.192980992079072, 22.406694648039547 ], [ 106.220266147764448, 22.320808416874911 ], [ 106.260005323786629, 22.262103990406843 ], [ 106.190448845637661, 22.111777249020804 ], [ 106.123476189874225, 22.054313056002741 ], [ 106.113967727128852, 21.948117988154593 ], [ 106.035936314109563, 21.928015855247509 ], [ 106.001468133847254, 21.887759915287859 ], [ 105.915530226738554, 21.834688218886185 ], [ 105.839152460117873, 21.814172674829081 ], [ 105.813727654607533, 21.779265244995031 ], [ 105.78706261564713, 21.827737739205304 ], [ 105.772903273866973, 21.977806098172891 ], [ 105.734869419288202, 22.019741522952927 ], [ 105.699832798244984, 22.033125719276484 ], [ 105.6450557803999, 22.019508978956196 ], [ 105.584387649170651, 21.956954657331551 ], [ 105.557515903735919, 21.950882676794095 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-66", "NAME_1": "Đồng Bằng Sông Hồng" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.257369826356353, 20.695894680395156 ], [ 106.206468540290871, 20.667214259830189 ], [ 106.138669061328073, 20.666826687101889 ], [ 106.112882522410416, 20.649566758998731 ], [ 106.112365756674308, 20.631609198006061 ], [ 106.059655796377854, 20.616623033026542 ], [ 106.02699629124578, 20.663286851207204 ], [ 106.030200230356286, 20.708090318313509 ], [ 105.981314324996049, 20.717185369908862 ], [ 105.956147901904103, 20.786819363322934 ], [ 105.915065138745092, 20.809634508026136 ], [ 105.924728632020731, 20.886709905737519 ], [ 105.895324741943227, 20.914356798427491 ], [ 105.912429641314873, 20.965929877162068 ], [ 106.022758824260279, 20.997736721572437 ], [ 106.152156610439192, 20.997814235938222 ], [ 106.159598015635879, 20.926190701139944 ], [ 106.125749952997865, 20.851208198499535 ], [ 106.126576776197226, 20.813536078227401 ], [ 106.257369826356353, 20.695894680395156 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-56", "NAME_1": "Bắc Ninh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.152156610439192, 20.997814235938222 ], [ 106.004723748901824, 20.991303004929705 ], [ 106.010304803024212, 21.045692450046488 ], [ 105.939094680275218, 21.108918565239605 ], [ 105.922041456847694, 21.150466417291284 ], [ 105.920956252129315, 21.208731594187725 ], [ 105.944985792760065, 21.247488919178238 ], [ 106.046633335260196, 21.206431993541628 ], [ 106.227552525128885, 21.177880764185886 ], [ 106.298039178365343, 21.134059149909831 ], [ 106.315815871305347, 21.050524197133996 ], [ 106.295041944829848, 21.000527249532922 ], [ 106.22646732041045, 20.985515245232364 ], [ 106.152156610439192, 20.997814235938222 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-54", "NAME_1": "Bắc Giang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.065330844742675, 21.360531113919762 ], [ 106.998616571397633, 21.314668281416061 ], [ 106.980633172882563, 21.230564886959939 ], [ 106.947870314963041, 21.189688829375939 ], [ 106.759199659736453, 21.161680203278763 ], [ 106.54582767121002, 21.193719590786486 ], [ 106.487950067041936, 21.228006903895505 ], [ 106.422165968784384, 21.23095245968824 ], [ 106.329510125991476, 21.18800934545493 ], [ 106.298039178365343, 21.134059149909831 ], [ 106.227552525128885, 21.177880764185886 ], [ 106.046633335260196, 21.206431993541628 ], [ 105.944985792760065, 21.247488919178238 ], [ 105.920801223397689, 21.328052475940979 ], [ 105.971082390939557, 21.408771064133305 ], [ 106.035471226116158, 21.419493922806282 ], [ 106.067148879317301, 21.461377672541516 ], [ 106.071903111139648, 21.502589626909753 ], [ 106.038726841170728, 21.620205186320277 ], [ 106.050354039207491, 21.632685045078745 ], [ 106.143785028356319, 21.620980333575517 ], [ 106.161303338877929, 21.602635198955227 ], [ 106.165489129919365, 21.51713654231753 ], [ 106.291941359406167, 21.477474879761871 ], [ 106.352919549897251, 21.423860581900328 ], [ 106.398704868934487, 21.411070664779345 ], [ 106.477976516303158, 21.448303534580418 ], [ 106.522108188941729, 21.544912625317409 ], [ 106.580399205159154, 21.599095363959862 ], [ 106.658740675641639, 21.607363593255229 ], [ 106.747727492229956, 21.549253445090415 ], [ 106.82792931468606, 21.597157498519721 ], [ 106.921980422358558, 21.445022081104128 ], [ 107.00683312384956, 21.441766466049557 ], [ 107.024093051952718, 21.376163234945295 ], [ 107.065330844742675, 21.360531113919762 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-69", "NAME_1": "Thái Nguyên" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.577721389430508, 21.543827419699653 ], [ 105.537052037421574, 21.578683172690262 ], [ 105.518293491651264, 21.635501410561631 ], [ 105.534364862248538, 21.866779283237292 ], [ 105.557515903735919, 21.950882676794095 ], [ 105.584387649170651, 21.956954657331551 ], [ 105.626865676309876, 22.010439764883245 ], [ 105.683709750804326, 22.030748603365339 ], [ 105.717196080035023, 22.030335191315999 ], [ 105.772903273866973, 21.977806098172891 ], [ 105.785305617360336, 21.83784048115325 ], [ 105.80690636613582, 21.780040392250271 ], [ 105.839152460117873, 21.814172674829081 ], [ 105.899407180197159, 21.825954902496733 ], [ 106.001468133847254, 21.887759915287859 ], [ 106.035936314109563, 21.928015855247509 ], [ 106.113967727128852, 21.948117988154593 ], [ 106.141924677281963, 21.805336004752803 ], [ 106.181353794042309, 21.785388902375928 ], [ 106.256698032787938, 21.684878241437673 ], [ 106.16750451062461, 21.57077667950017 ], [ 106.143785028356319, 21.620980333575517 ], [ 106.041517369131213, 21.628421738772204 ], [ 106.071903111139648, 21.502589626909753 ], [ 106.067148879317301, 21.461377672541516 ], [ 106.035471226116158, 21.419493922806282 ], [ 105.971082390939557, 21.408771064133305 ], [ 105.920801223397689, 21.328052475940979 ], [ 105.84835086540005, 21.363631700242763 ], [ 105.805046014162201, 21.373088487044015 ], [ 105.772128126611733, 21.362468980259223 ], [ 105.740037063159889, 21.417556057366141 ], [ 105.577721389430508, 21.543827419699653 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-61", "NAME_1": "Hải Dương" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.417205031387027, 20.719278265879268 ], [ 106.257369826356353, 20.695894680395156 ], [ 106.138359002965558, 20.795966090862407 ], [ 106.12202924994989, 20.832837226356901 ], [ 106.159598015635879, 20.926190701139944 ], [ 106.152156610439192, 20.997814235938222 ], [ 106.22646732041045, 20.985515245232364 ], [ 106.295041944829848, 21.000527249532922 ], [ 106.315815871305347, 21.050524197133996 ], [ 106.298039178365343, 21.134059149909831 ], [ 106.329510125991476, 21.18800934545493 ], [ 106.385837437447719, 21.222839260023818 ], [ 106.457719353765128, 21.23270945887441 ], [ 106.54582767121002, 21.193719590786486 ], [ 106.505623407194435, 21.138787543310457 ], [ 106.44635053904608, 21.107600816524439 ], [ 106.44449018797178, 21.064373481451014 ], [ 106.605255568089945, 21.025435289307154 ], [ 106.593008254227527, 20.973526312889021 ], [ 106.544432408129069, 20.948179023543105 ], [ 106.534820590797608, 20.888363552136184 ], [ 106.490740595002421, 20.844309393863398 ], [ 106.540711705081094, 20.804027615482028 ], [ 106.535595738052848, 20.782271837075598 ], [ 106.46929487495845, 20.72586701125357 ], [ 106.417205031387027, 20.719278265879268 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-63", "NAME_1": "Hà Nam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.951186965406066, 20.336769314252422 ], [ 105.841322869554745, 20.419477443828953 ], [ 105.785822382197125, 20.568305569346535 ], [ 105.825509882275185, 20.660341295414412 ], [ 105.954597609192263, 20.674939886766367 ], [ 106.020226677818869, 20.712456977407555 ], [ 106.032990757417451, 20.701889146566828 ], [ 106.02699629124578, 20.663286851207204 ], [ 106.059655796377854, 20.616623033026542 ], [ 106.125336541847901, 20.625123806318584 ], [ 106.130297479245201, 20.588769436560256 ], [ 106.167814568987126, 20.54642059973088 ], [ 106.18445438036531, 20.490868435529876 ], [ 106.070869582365276, 20.483297838224644 ], [ 106.014025506971507, 20.405447293257964 ], [ 105.978988885928288, 20.426272894778265 ], [ 105.952427198856071, 20.390848700107426 ], [ 105.951186965406066, 20.336769314252422 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-57", "NAME_1": "Bình Dương" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.591923048609772, 11.033797104952441 ], [ 106.513736606858856, 11.135832221080136 ], [ 106.429607374880391, 11.124205023942693 ], [ 106.34671837815057, 11.272697251776719 ], [ 106.352919549897251, 11.381398626745238 ], [ 106.46433393756115, 11.55332611690676 ], [ 106.524692011327204, 11.481831773317651 ], [ 106.619053175563579, 11.431369736823854 ], [ 106.615022414153032, 11.369745592085394 ], [ 106.638276809327238, 11.319645290797496 ], [ 106.677550897355957, 11.325303860184988 ], [ 106.696206089439443, 11.360831406744012 ], [ 106.725351597098495, 11.337318630050731 ], [ 106.718220249364947, 11.306907050519953 ], [ 106.791290724986936, 11.335303250244806 ], [ 106.964768507860299, 11.283626816924027 ], [ 106.931127150797352, 11.198438219548166 ], [ 106.974587029867507, 11.122422187234122 ], [ 106.954691604334016, 11.064001979807529 ], [ 106.902084995925804, 11.025968126128078 ], [ 106.827309197961085, 11.055527044937151 ], [ 106.784004347622499, 11.025890610862973 ], [ 106.787518345095521, 10.980673733505967 ], [ 106.832270136257762, 10.917344265525401 ], [ 106.835990839305737, 10.887785345817065 ], [ 106.712329135980781, 10.880964057345352 ], [ 106.616107618871467, 11.031006577891219 ], [ 106.591923048609772, 11.033797104952441 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-35", "NAME_1": "Lâm Đồng" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.719183384205792, 12.181143093578896 ], [ 108.686730584648728, 12.140396226304802 ], [ 108.681304559257967, 11.973171292021505 ], [ 108.637379592194407, 11.839200141173535 ], [ 108.683319939963212, 11.727113959041958 ], [ 108.610094435609653, 11.640142524058206 ], [ 108.620171340035256, 11.564023138956657 ], [ 108.599500767246582, 11.520769965461511 ], [ 108.580432164013132, 11.505215358801763 ], [ 108.513717888869451, 11.527720445142393 ], [ 108.386490513026729, 11.523844713362791 ], [ 108.341170281982897, 11.507928372396464 ], [ 108.313730095767255, 11.449043076976409 ], [ 108.335744256592136, 11.368660387366958 ], [ 108.250529819895235, 11.306519476892333 ], [ 108.131829054866955, 11.269364122356365 ], [ 108.078292271371197, 11.207300727146844 ], [ 108.057053256902236, 11.205052802444868 ], [ 108.052557408397661, 11.270991930333309 ], [ 108.010182733146564, 11.301481025129192 ], [ 107.7268408553212, 11.319490261166607 ], [ 107.52680138627494, 11.402508450004973 ], [ 107.456676467345062, 11.410414944094384 ], [ 107.443188918233943, 11.441214098152102 ], [ 107.458795200837812, 11.482529405307787 ], [ 107.398023715921681, 11.505964666735963 ], [ 107.382520787004694, 11.559501451131041 ], [ 107.308520136295215, 11.566219386815249 ], [ 107.281648390860482, 11.627895209296469 ], [ 107.327588738629345, 11.717812200972276 ], [ 107.390427281094105, 11.751763617297115 ], [ 107.443498976596459, 11.744425563988557 ], [ 107.563439975974063, 11.786903591127839 ], [ 107.701984490591713, 11.906922104871228 ], [ 107.735832554129047, 11.905966091362018 ], [ 107.746219516917108, 11.869715074391138 ], [ 107.77169599837157, 11.849974676689953 ], [ 107.884815708378198, 11.861808580301727 ], [ 107.91489139202406, 11.793182278139625 ], [ 107.970753614587579, 11.795094306057365 ], [ 108.008477410803835, 11.77362274849105 ], [ 108.079532504821202, 11.850491441526799 ], [ 108.092813348357311, 11.922399197165191 ], [ 108.023101840577453, 12.007820339437103 ], [ 108.014161817713671, 12.046086738012548 ], [ 107.985533074891464, 12.064690253252593 ], [ 107.998607211953242, 12.125745958109462 ], [ 108.053797641847666, 12.146235662845527 ], [ 108.11394900913939, 12.143445135784361 ], [ 108.148262159770809, 12.171221217884863 ], [ 108.242468296174877, 12.157036038582305 ], [ 108.262467076294513, 12.197498684116965 ], [ 108.322566765843533, 12.232716173212793 ], [ 108.409124789677264, 12.235351671542389 ], [ 108.515733269574696, 12.30028310817886 ], [ 108.603531528657072, 12.271395982038939 ], [ 108.694327020375624, 12.298345241839399 ], [ 108.719183384205792, 12.181143093578896 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "VN-CT", "NAME_1": "Can Tho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.422782761814972, 10.043628432606056 ], [ 105.32414513598917, 10.141887721740943 ], [ 105.241462843935039, 10.199610297177458 ], [ 105.320269403310249, 10.276944078206611 ], [ 105.377526889854039, 10.233122463031236 ], [ 105.429978468631361, 10.273533433521152 ], [ 105.473438347701517, 10.275342109550706 ], [ 105.534106479830143, 10.402802029390159 ], [ 105.58299238519038, 10.446520290878709 ], [ 105.631723260919728, 10.417142239222926 ], [ 105.711615025013373, 10.402336941396698 ], [ 105.782360060668225, 10.330765082542484 ], [ 105.849022658069146, 10.301438706830822 ], [ 105.882922397550544, 10.238936062049618 ], [ 105.914600050751687, 10.213950507010281 ], [ 105.909432407779377, 10.171834215076956 ], [ 105.867884555727642, 10.140725001757403 ], [ 105.792333612306322, 10.15165456780403 ], [ 105.727531365979701, 10.185631822550533 ], [ 105.707894321965341, 10.174547226873017 ], [ 105.692236363417408, 10.123180853713393 ], [ 105.422782761814972, 10.043628432606056 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/zambia.geojson b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/zambia.geojson new file mode 100644 index 000000000000..354f6a872f10 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/countries/zambia.geojson @@ -0,0 +1,16 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "ISO": "ZM-10", "NAME_1": "Muchinga" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.920863485000098, -9.407900085999913 ], [ 32.927788127000042, -9.479833678999867 ], [ 32.961894572000119, -9.480350443999896 ], [ 32.991970255000126, -9.5018478399999 ], [ 32.974710327000082, -9.601273294999942 ], [ 32.986905965000119, -9.628455098999936 ], [ 33.035740194000084, -9.616982929999921 ], [ 33.058322794000048, -9.654293313999858 ], [ 33.08044030700006, -9.662251484999913 ], [ 33.098320353000076, -9.588457539999879 ], [ 33.175421590000042, -9.602306823999925 ], [ 33.214282267000101, -9.654706725999873 ], [ 33.204567098000041, -9.698114928999956 ], [ 33.21671106000008, -9.727053730999927 ], [ 33.287766154000053, -9.803844908999892 ], [ 33.343473348000089, -9.831440123999897 ], [ 33.365590861000044, -9.898826191999902 ], [ 33.309987020000108, -10.012721048999936 ], [ 33.304095907000089, -10.063777363999918 ], [ 33.480519246000142, -10.177052103999898 ], [ 33.533280884000078, -10.231209004999911 ], [ 33.529301799000109, -10.318645527999962 ], [ 33.559170776000087, -10.404325052999937 ], [ 33.638184042000091, -10.511605325999895 ], [ 33.665417522000098, -10.51511932399994 ], [ 33.674202515000047, -10.577027688999877 ], [ 33.528268270000126, -10.711593118999929 ], [ 33.500983113000075, -10.769160664999973 ], [ 33.434010458000103, -10.808124694999961 ], [ 33.385537964000036, -10.800889993999903 ], [ 33.319082072000072, -10.81814992199989 ], [ 33.288127889000066, -10.856700540999952 ], [ 33.241412394000065, -10.865692240999905 ], [ 33.232575725000061, -10.883262226999875 ], [ 33.239603719000058, -10.903105976999967 ], [ 33.280324747000066, -10.913337910999942 ], [ 33.303682495000089, -11.034570820999889 ], [ 33.390912313000115, -11.164795430999959 ], [ 33.298308146000124, -11.329229837999947 ], [ 33.298928264000097, -11.353104349999938 ], [ 33.273503459000096, -11.369640807999929 ], [ 33.265183553000043, -11.423074238999945 ], [ 33.239707072000101, -11.402403665999927 ], [ 33.230301961000066, -11.416563008999972 ], [ 33.233815959000083, -11.514024758999952 ], [ 33.212628621000079, -11.563840840999902 ], [ 33.283218628000043, -11.578413594999859 ], [ 33.305048860801634, -11.644026180450906 ], [ 33.216345951004826, -11.673335567982065 ], [ 33.197443350030539, -11.701553682156714 ], [ 33.197443350030539, -11.748648440173383 ], [ 33.088224243454079, -11.950283713022941 ], [ 32.726961044916266, -12.059502819599459 ], [ 32.542128711470809, -12.067904289751198 ], [ 32.500121362510868, -12.10991163781182 ], [ 32.483318423106709, -12.168721926175976 ], [ 32.432909604894348, -12.219130744388337 ], [ 32.291290318093672, -12.20116708689153 ], [ 32.276355829058218, -12.263592218206327 ], [ 32.193776889791593, -12.346171155674313 ], [ 32.140808547076745, -12.443374525613876 ], [ 32.067789748298253, -12.784645683551446 ], [ 32.044173617918091, -12.797409763150029 ], [ 32.007121616169627, -12.886241550107457 ], [ 31.954825067023194, -12.901072685456086 ], [ 31.913225539027394, -12.935179132311134 ], [ 31.913225539027394, -13.030780530896777 ], [ 31.872297803700633, -13.036981702643459 ], [ 31.769254999018983, -13.106486504848306 ], [ 31.755560744332854, -13.092223808482004 ], [ 31.714529657117964, -13.174389336598608 ], [ 31.675100538558979, -13.200537611621485 ], [ 31.63810021275458, -13.335619805609554 ], [ 31.613760613761315, -13.366573989298161 ], [ 31.5182625670638, -13.431944674607053 ], [ 31.461366814826647, -13.421816095136705 ], [ 31.429120720844594, -13.435717054498468 ], [ 31.425813428946583, -13.324819430772095 ], [ 31.364990268985707, -13.228597913662782 ], [ 31.335844761326655, -12.976985364982625 ], [ 31.282618036193412, -12.949235121303786 ], [ 31.219624464997025, -12.948046562898583 ], [ 31.183761020754503, -12.966288343831991 ], [ 31.159886508855266, -13.034191175582293 ], [ 31.120767449558116, -13.040702405691491 ], [ 31.020515171038312, -12.950837090859068 ], [ 30.906620313776443, -12.927789402159192 ], [ 30.849672885595169, -12.933473809069028 ], [ 30.750195754330605, -12.871462090702948 ], [ 30.727251418418177, -12.76025440771474 ], [ 30.765285272097628, -12.691576429608574 ], [ 30.762959832130548, -12.668115329758677 ], [ 30.71670942599917, -12.63617929413914 ], [ 30.686582066409244, -12.588533624027548 ], [ 30.634750604356896, -12.625172213726671 ], [ 30.564470655796129, -12.574012546142114 ], [ 30.56989668118689, -12.509003595139802 ], [ 30.497291293558305, -12.450712578922378 ], [ 30.513104281737185, -12.34090015991444 ], [ 30.500081820619528, -12.309377537243563 ], [ 30.448560417829015, -12.308499037200818 ], [ 30.412852004116701, -12.273359062470774 ], [ 30.361382277270252, -12.272222181808274 ], [ 30.161807896217397, -12.202303968453407 ], [ 30.142119175359653, -12.174553724774569 ], [ 30.078505487438292, -12.139827162093866 ], [ 30.029774610809625, -12.034252210970749 ], [ 29.997321812151881, -12.000507501120296 ], [ 29.862653029313833, -12.044484145027297 ], [ 29.838881870202101, -12.133781019978073 ], [ 29.799582314000133, -12.159035937999903 ], [ 29.816557651014762, -12.133264255141285 ], [ 29.816557651014762, -12.085463556298066 ], [ 29.781779413289257, -12.037662855656265 ], [ 29.778678826966257, -11.910125420551708 ], [ 30.261440057112907, -11.818864840839751 ], [ 30.447630242741468, -11.589989922496954 ], [ 30.455846795193452, -11.501726575421117 ], [ 30.522064649064305, -11.461114190967123 ], [ 30.548757357466059, -11.399834893965192 ], [ 30.588145378806189, -11.385674737399199 ], [ 30.617686393911924, -11.330743097316088 ], [ 30.662038607295869, -11.330743097316088 ], [ 30.706309441027884, -11.290459893509308 ], [ 30.84856204480252, -11.056573174812172 ], [ 30.867279493353919, -11.042982680306466 ], [ 30.893809440653172, -11.059095961109733 ], [ 30.878916862723031, -11.02971770620718 ], [ 30.970632357297404, -10.999362888286669 ], [ 31.000987175217915, -10.920098565896126 ], [ 31.021657748006646, -10.919854425141637 ], [ 31.010752800001683, -10.932468357528705 ], [ 31.037608269505995, -10.948907159637713 ], [ 31.052744988190625, -10.944349867652249 ], [ 31.058848503455636, -10.911065362476506 ], [ 31.076670769540385, -10.941745700803438 ], [ 31.063405795441099, -10.961439711473531 ], [ 31.085378451654208, -10.961358330922224 ], [ 31.145274284680454, -10.916843357335097 ], [ 31.17090905041232, -10.8732235653153 ], [ 31.143565300298349, -10.826674086040271 ], [ 31.20419355558812, -10.810723565440185 ], [ 31.19214928436196, -10.783054294919793 ], [ 31.157481316109852, -10.788099867514859 ], [ 31.130625847504859, -10.750013930498483 ], [ 31.20728600394591, -10.708184503412099 ], [ 31.275482618128308, -10.728041274285374 ], [ 31.309662305770757, -10.70134856588362 ], [ 31.309662305770757, -10.6498348936654 ], [ 31.33895918102138, -10.637058201075149 ], [ 31.334971550196883, -10.612481378013172 ], [ 31.43702233161531, -10.577813409761063 ], [ 31.461192253719503, -10.550469659647092 ], [ 31.488373242730972, -10.570977472232585 ], [ 31.552826367742682, -10.558038018539719 ], [ 31.549758256838061, -10.30875174979343 ], [ 31.516229482304766, -10.275222975260135 ], [ 31.340203413756512, -10.183018843944524 ], [ 31.264763669707577, -9.9566996135963 ], [ 31.189323926557961, -9.830966707747393 ], [ 31.113884182508968, -9.755526963698401 ], [ 31.180941732474935, -9.671705026465816 ], [ 31.20608831382458, -9.613029670582819 ], [ 31.365349995106158, -9.504061152000588 ], [ 31.432407545072124, -9.545972120616852 ], [ 31.508067253401009, -9.540052992451649 ], [ 31.574904838187706, -9.571118701966554 ], [ 31.600051419537351, -9.504061152000588 ], [ 31.675491162686967, -9.529207733350233 ], [ 31.75093090673596, -9.520825539267207 ], [ 31.901810393934511, -9.437003602034622 ], [ 32.019161105700448, -9.420239214767946 ], [ 32.329302274180577, -9.462150183384267 ], [ 32.320920080097608, -9.361563857985686 ], [ 32.231448201573244, -9.133808288022067 ], [ 32.423426148000146, -9.143833516999862 ], [ 32.459703003000072, -9.168018086999936 ], [ 32.518045695000126, -9.25824513799995 ], [ 32.71322758000008, -9.285840352999941 ], [ 32.752294962000065, -9.337413430999959 ], [ 32.784334351000098, -9.339687194999968 ], [ 32.920863485000098, -9.407900085999913 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ZM-03", "NAME_1": "Eastern" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.305048860801634, -11.644026180450906 ], [ 33.314017781000075, -11.772200215999902 ], [ 33.297481323000113, -11.862530618999941 ], [ 33.312674194000124, -11.898704120999881 ], [ 33.254899943000055, -12.072646992999935 ], [ 33.252729533000036, -12.139516295999911 ], [ 33.29996179200009, -12.195946959999944 ], [ 33.349467814000036, -12.327928567999905 ], [ 33.384607788000096, -12.340020852999885 ], [ 33.458298381000077, -12.31811004599993 ], [ 33.52558109600011, -12.335266621999892 ], [ 33.5271313880001, -12.355627135999924 ], [ 33.465326376000121, -12.409060566999941 ], [ 33.451115356000059, -12.452985533999879 ], [ 33.35039799000009, -12.532670592999935 ], [ 33.255106648000094, -12.531947122999938 ], [ 33.226994670000067, -12.579076029999939 ], [ 33.173251180000079, -12.620003763999961 ], [ 33.13035974100012, -12.583726908999907 ], [ 33.081267130000072, -12.604810892999936 ], [ 33.057702678000055, -12.583416848999917 ], [ 33.024836466000124, -12.612665710999877 ], [ 32.941120646000059, -12.769865416999977 ], [ 32.947011760000066, -12.843245950999915 ], [ 33.013571004000084, -12.917246601999921 ], [ 32.981531616000041, -13.006130065999884 ], [ 32.965925334000133, -13.116820983999943 ], [ 32.998171427000102, -13.202448831999916 ], [ 32.937865031000115, -13.255882262999933 ], [ 32.892131388000053, -13.404813740999899 ], [ 32.874251342000036, -13.443157653999918 ], [ 32.819060913000044, -13.471683043999874 ], [ 32.813066447000097, -13.528217060999921 ], [ 32.722839396000097, -13.5733822629999 ], [ 32.677260783000065, -13.567801207999892 ], [ 32.663308147000123, -13.596326598999937 ], [ 32.675090372000113, -13.628055927999952 ], [ 32.769864950000056, -13.646866149999966 ], [ 32.813376506000054, -13.711151631999925 ], [ 32.757359253000061, -13.750219013999939 ], [ 32.763043660000108, -13.777194111999876 ], [ 32.874147990000097, -13.820602314999874 ], [ 32.923912394000126, -13.880443622999934 ], [ 32.936159709000037, -13.926228941999881 ], [ 32.976260620000119, -13.9445224 ], [ 32.971299683000098, -14.005914000999923 ], [ 32.999825074000057, -14.050459085999918 ], [ 33.018170206000036, -14.046221618999965 ], [ 33.062973673000101, -13.981729430999863 ], [ 33.111601196000095, -13.964572854999886 ], [ 33.140281616000095, -13.92498870799993 ], [ 33.202706747000036, -14.013872171999893 ], [ 31.658408244000043, -14.519577737999981 ], [ 31.410878133000097, -14.633575947999958 ], [ 30.815772339000034, -14.768244730999953 ], [ 30.485559937000119, -14.88596364299994 ], [ 30.318438355000069, -14.966992289999951 ], [ 30.214420897000082, -14.981965750999933 ], [ 30.206508009636934, -14.830670667916991 ], [ 30.062020704791678, -14.698430677833528 ], [ 30.000112339213047, -14.617350356233942 ], [ 30.000267367944673, -14.556733900948757 ], [ 30.034580518576036, -14.442425631637605 ], [ 30.069462110887685, -14.415140475952228 ], [ 30.083621453567218, -14.377881767729377 ], [ 30.122998895282763, -14.372559096025441 ], [ 30.218755324398671, -14.257940769251093 ], [ 30.291515740758825, -14.2068327776106 ], [ 30.319007602918532, -14.131333510133402 ], [ 30.278338250010222, -14.08177581120475 ], [ 30.184442172867989, -14.047204278154936 ], [ 30.14878543509974, -13.951189466620576 ], [ 30.097729120302631, -13.931862480968732 ], [ 30.892202589577835, -13.922095635804965 ], [ 30.936902703896635, -13.860032239696125 ], [ 30.959330274972217, -13.852590833600118 ], [ 30.970699089691209, -13.812231540852906 ], [ 31.061597935096586, -13.773525892705777 ], [ 31.056068556019, -13.757609551739449 ], [ 31.098598260001665, -13.713839614306778 ], [ 31.135185173756724, -13.607489515928421 ], [ 31.183295932761041, -13.578240654582544 ], [ 31.222414992058191, -13.582271416892354 ], [ 31.258898553025801, -13.513645114730252 ], [ 31.283238152918386, -13.517417493722348 ], [ 31.359357538019935, -13.461090183165425 ], [ 31.461366814826647, -13.421816095136705 ], [ 31.53464399602359, -13.425226738922845 ], [ 31.63810021275458, -13.335619805609554 ], [ 31.675100538558979, -13.200537611621485 ], [ 31.714529657117964, -13.174389336598608 ], [ 31.755560744332854, -13.092223808482004 ], [ 31.769254999018983, -13.106486504848306 ], [ 31.872297803700633, -13.036981702643459 ], [ 31.913225539027394, -13.030780530896777 ], [ 31.913225539027394, -12.935179132311134 ], [ 31.954825067023194, -12.901072685456086 ], [ 32.007121616169627, -12.886241550107457 ], [ 32.044173617918091, -12.797409763150029 ], [ 32.067789748298253, -12.784645683551446 ], [ 32.140808547076745, -12.443374525613876 ], [ 32.193776889791593, -12.346171155674313 ], [ 32.276355829058218, -12.263592218206327 ], [ 32.291290318093672, -12.20116708689153 ], [ 32.432909604894348, -12.219130744388337 ], [ 32.483318423106709, -12.168721926175976 ], [ 32.500121362510868, -12.10991163781182 ], [ 32.542128711470809, -12.067904289751198 ], [ 32.726961044916266, -12.059502819599459 ], [ 33.088224243454079, -11.950283713022941 ], [ 33.197443350030539, -11.748648440173383 ], [ 33.197443350030539, -11.701553682156714 ], [ 33.216345951004826, -11.673335567982065 ], [ 33.305048860801634, -11.644026180450906 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ZM-05", "NAME_1": "Northern" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.752106975000117, -8.194124042999917 ], [ 30.77825524900004, -8.289105325999927 ], [ 30.828278036000086, -8.388117369999932 ], [ 30.891891724000118, -8.479171244999876 ], [ 30.992350708000117, -8.575909525999947 ], [ 31.077823527000135, -8.616320494999925 ], [ 31.119836467000141, -8.616630553999912 ], [ 31.206756226000039, -8.580767109999968 ], [ 31.260913127000038, -8.623968607999913 ], [ 31.353310587000067, -8.587174987999916 ], [ 31.38597009300014, -8.632546894999848 ], [ 31.427517945000147, -8.633477070999987 ], [ 31.539035685000044, -8.703550312999937 ], [ 31.553350057000046, -8.809073587999904 ], [ 31.672670939000056, -8.913046568999945 ], [ 31.70977461800004, -8.91966115299995 ], [ 31.787599324000041, -8.892169290999973 ], [ 31.936634155000036, -8.932580260999956 ], [ 31.917823934000069, -8.973094583999881 ], [ 31.91772058100014, -9.022497252999898 ], [ 31.938081095000143, -9.061771341999957 ], [ 31.980559122000102, -9.071899921999915 ], [ 32.031718791000117, -9.045958353999964 ], [ 32.096417684000073, -9.069109394999955 ], [ 32.134141480000039, -9.064148457999906 ], [ 32.231448201573244, -9.133808288022067 ], [ 32.320920080097608, -9.361563857985686 ], [ 32.329302274180577, -9.462150183384267 ], [ 32.019161105700448, -9.420239214767946 ], [ 31.901810393934511, -9.437003602034622 ], [ 31.75093090673596, -9.520825539267207 ], [ 31.675491162686967, -9.529207733350233 ], [ 31.600051419537351, -9.504061152000588 ], [ 31.574904838187706, -9.571118701966554 ], [ 31.508067253401009, -9.540052992451649 ], [ 31.432407545072124, -9.545972120616852 ], [ 31.365349995106158, -9.504061152000588 ], [ 31.20608831382458, -9.613029670582819 ], [ 31.180941732474935, -9.671705026465816 ], [ 31.113884182508968, -9.755526963698401 ], [ 31.189323926557961, -9.830966707747393 ], [ 31.264763669707577, -9.9566996135963 ], [ 31.340203413756512, -10.183018843944524 ], [ 31.516229482304766, -10.275222975260135 ], [ 31.549758256838061, -10.30875174979343 ], [ 31.552826367742682, -10.558038018539719 ], [ 31.488373242730972, -10.570977472232585 ], [ 31.461192253719503, -10.550469659647092 ], [ 31.43702233161531, -10.577813409761063 ], [ 31.334971550196883, -10.612481378013172 ], [ 31.33895918102138, -10.637058201075149 ], [ 31.309662305770757, -10.6498348936654 ], [ 31.309662305770757, -10.70134856588362 ], [ 31.275482618128308, -10.728041274285374 ], [ 31.20728600394591, -10.708184503412099 ], [ 31.130625847504859, -10.750013930498483 ], [ 31.157481316109852, -10.788099867514859 ], [ 31.19214928436196, -10.783054294919793 ], [ 31.20419355558812, -10.810723565440185 ], [ 31.143565300298349, -10.826674086040271 ], [ 31.17090905041232, -10.8732235653153 ], [ 31.145274284680454, -10.916843357335097 ], [ 31.085378451654208, -10.961358330922224 ], [ 31.063405795441099, -10.961439711473531 ], [ 31.076670769540385, -10.941745700803438 ], [ 31.058848503455636, -10.911065362476506 ], [ 31.052744988190625, -10.944349867652249 ], [ 31.037608269505995, -10.948907159637713 ], [ 31.010752800001683, -10.932468357528705 ], [ 31.021657748006646, -10.919854425141637 ], [ 31.000987175217915, -10.920098565896126 ], [ 30.970632357297404, -10.999362888286669 ], [ 30.878916862723031, -11.02971770620718 ], [ 30.893809440653172, -11.059095961109733 ], [ 30.867279493353919, -11.042982680306466 ], [ 30.84856204480252, -11.056573174812172 ], [ 30.706309441027884, -11.290459893509308 ], [ 30.662038607295869, -11.330743097316088 ], [ 30.617686393911924, -11.330743097316088 ], [ 30.588145378806189, -11.385674737399199 ], [ 30.548757357466059, -11.399834893965192 ], [ 30.522064649064305, -11.461114190967123 ], [ 30.4843856130056, -11.491062107030643 ], [ 30.455846795193452, -11.501726575421117 ], [ 30.449180536352628, -11.475474948510055 ], [ 30.104705438405233, -11.242414239125821 ], [ 29.959908075197518, -11.246445000536369 ], [ 29.880016310204553, -11.361373385673232 ], [ 29.834696079160722, -11.395324801998015 ], [ 29.892573683328806, -11.019275404536302 ], [ 29.888852980280774, -10.965738621040543 ], [ 29.857020298348061, -10.899334405158697 ], [ 29.81283694796673, -10.863109225710218 ], [ 29.775733270274202, -10.799082126638837 ], [ 29.649126011156454, -10.737225437004327 ], [ 29.34935102662854, -10.895045260430436 ], [ 29.337827183177922, -10.908016045604029 ], [ 29.36423383971993, -10.958917331669511 ], [ 29.365629102800824, -10.998656507691692 ], [ 29.397100051326277, -11.042374770079562 ], [ 29.382062208603998, -11.119062595062701 ], [ 29.318293491051747, -11.09095061617802 ], [ 29.273748407263156, -11.0901754698221 ], [ 29.180162387584119, -10.999276624416666 ], [ 29.084302605680705, -10.957832126951132 ], [ 29.161403842713128, -10.8727727189858 ], [ 29.163884312311154, -10.742083021614178 ], [ 29.307596469901171, -10.640900567107508 ], [ 29.357257520718008, -10.630410251531885 ], [ 29.414515008161061, -10.526902357957454 ], [ 29.396014845708521, -10.480496921295867 ], [ 29.430017937977425, -10.433833103115205 ], [ 29.441335076752353, -10.380761406713532 ], [ 29.506809115748069, -10.329084975191449 ], [ 29.615743035612581, -10.286245211947005 ], [ 29.697701857254913, -10.222786553656533 ], [ 29.85350630087504, -10.229917900490705 ], [ 29.879396192580202, -10.199583834426448 ], [ 29.899239943068892, -10.114627781047261 ], [ 29.937583856010122, -10.072511488214616 ], [ 29.905286086084004, -9.991947930552556 ], [ 29.937893915271957, -9.891075535307721 ], [ 29.919445427864162, -9.838572279686957 ], [ 29.876295607156521, -9.819503675554188 ], [ 29.799762810904951, -9.70870940461532 ], [ 29.737544386963862, -9.708244316621915 ], [ 29.543292677614943, -9.650573418928161 ], [ 29.478438755344257, -9.601222425574463 ], [ 29.438079460798463, -9.546600436461006 ], [ 29.36903974838566, -9.536988620928128 ], [ 29.324649693328638, -9.433274020879367 ], [ 29.328060337114835, -9.395860283924947 ], [ 29.358807814329168, -9.356379489421897 ], [ 29.334106480129947, -9.216491387667418 ], [ 29.30852664588798, -9.217318209967402 ], [ 29.243517693986348, -9.157580254724962 ], [ 29.202228224353064, -9.156340019476318 ], [ 29.120114373079844, -9.107092379809501 ], [ 29.116858758025217, -9.052315361964418 ], [ 29.147296176877035, -9.036967461778943 ], [ 29.176131626173571, -8.948755791546546 ], [ 29.228428176219325, -8.92818857154532 ], [ 29.25049401208895, -8.901161798278395 ], [ 29.305581089195869, -8.721172783497195 ], [ 29.393069289016466, -8.550640556416568 ], [ 29.419010857565013, -8.520771580144299 ], [ 29.523914015119658, -8.472919202659057 ], [ 29.575844324000059, -8.372729113999895 ], [ 30.752106975000117, -8.194124042999917 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ZM-09", "NAME_1": "Lusaka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.010653524000077, -15.646227314999905 ], [ 29.837330770000051, -15.614808044999876 ], [ 29.672793009000145, -15.663280537999938 ], [ 29.587216838000131, -15.655735778999897 ], [ 29.508461955000087, -15.703588154999892 ], [ 29.406969442000047, -15.714233499999892 ], [ 29.186311076000067, -15.812832132999873 ], [ 29.086162150000064, -15.884559019999955 ], [ 29.042340536000069, -15.946260680999927 ], [ 28.946861598783755, -15.957235194648547 ], [ 28.887312046114005, -15.926417738487828 ], [ 28.808557162682916, -15.956700127708757 ], [ 28.753935173569403, -15.95189421994229 ], [ 28.676937290223748, -15.895308526067652 ], [ 28.583609652963105, -15.890295911826854 ], [ 28.506560092774066, -15.823736668112758 ], [ 28.410700310870652, -15.788751723013604 ], [ 28.291534457848911, -15.790663750931344 ], [ 28.236137323278854, -15.818620701084512 ], [ 28.178259719110713, -15.777796318545256 ], [ 28.040593702737169, -15.731752617988946 ], [ 28.007210728092616, -15.682970065416214 ], [ 27.970675490281621, -15.665916842888009 ], [ 27.929592726223291, -15.664263196489344 ], [ 27.856418897813853, -15.689791354787189 ], [ 27.8230359231693, -15.651705824264411 ], [ 27.756786736918343, -15.648863621259125 ], [ 27.799316440901009, -15.561013686232627 ], [ 27.905614862435925, -15.531661472099245 ], [ 27.934760370094978, -15.495539645438271 ], [ 27.891765578118907, -15.374255058923836 ], [ 27.787224154870842, -15.343249200190428 ], [ 27.767018670075572, -15.320563245797189 ], [ 27.827996859667337, -15.266354668732959 ], [ 27.862465040828965, -15.260618584979738 ], [ 28.033462355003678, -15.287283623940084 ], [ 28.259856804647825, -15.35255095826011 ], [ 28.290759312392311, -15.341698906579268 ], [ 28.375612012983993, -15.162536715896749 ], [ 28.404344110392344, -15.145690198943555 ], [ 28.569140251921056, -15.188271579769605 ], [ 28.74385827004312, -15.175714206645353 ], [ 28.823129917411734, -15.149359226047466 ], [ 28.94679161983737, -15.041510511800709 ], [ 29.001103549689049, -15.018514499944217 ], [ 29.228118116957489, -14.956709487153091 ], [ 29.311627232210981, -14.977431735885887 ], [ 29.459783563260828, -14.963117363575464 ], [ 29.530425246128175, -14.810671888696731 ], [ 29.576313917952916, -14.808914889510561 ], [ 29.668969760745824, -14.749848727836536 ], [ 29.781314325295853, -14.719359633040654 ], [ 29.812526889604271, -14.696932061065752 ], [ 29.877225783143331, -14.697190443484203 ], [ 29.904200881365568, -14.654402357982462 ], [ 29.971121860285621, -14.64913136222259 ], [ 30.000112339213047, -14.66783823025014 ], [ 30.051168654010155, -14.671197198092216 ], [ 30.062020704791678, -14.698430677833528 ], [ 30.206508009636934, -14.830670667916991 ], [ 30.225834188000135, -15.10631195099991 ], [ 30.287949260000119, -15.278911233999906 ], [ 30.334871460000045, -15.304749450999921 ], [ 30.364947143000109, -15.354152119999938 ], [ 30.371768432000067, -15.439831644999927 ], [ 30.392852417000086, -15.480759378999949 ], [ 30.367427613000075, -15.561271259999927 ], [ 30.412696167000092, -15.627933857999935 ], [ 30.356678915000089, -15.651498310999941 ], [ 30.254876343000035, -15.628864033999974 ], [ 30.207230672000094, -15.653151956999892 ], [ 30.130129435000129, -15.623696390999982 ], [ 30.010653524000077, -15.646227314999905 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ZM-07", "NAME_1": "Southern" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.946861598783755, -15.957235194648547 ], [ 28.898886760000096, -15.995456643999901 ], [ 28.857235555000074, -16.060465595999958 ], [ 28.87098148600009, -16.087233988999927 ], [ 28.847106975000116, -16.20267913799999 ], [ 28.864160197000047, -16.231204528999939 ], [ 28.836771688000113, -16.306342060999953 ], [ 28.857235555000074, -16.38819753 ], [ 28.808866414000107, -16.486279397999866 ], [ 28.732850382000066, -16.558109638999966 ], [ 28.643295126000055, -16.568754984999956 ], [ 28.28011316000007, -16.706524352999892 ], [ 28.113921753000113, -16.827550557999885 ], [ 27.816885620000107, -16.959635517999871 ], [ 27.641185751000052, -17.198483987999865 ], [ 27.577313680000088, -17.363125101999898 ], [ 27.157080932000042, -17.769301859999956 ], [ 27.149019409000118, -17.842475686999933 ], [ 27.021275269000114, -17.958540953999972 ], [ 26.959160197000131, -17.964742126999866 ], [ 26.912031291000034, -17.992027281999881 ], [ 26.888260132000084, -17.984585875999954 ], [ 26.753591350000079, -18.03295501699999 ], [ 26.700002889000132, -18.069231871999946 ], [ 26.628844442000087, -18.0491814169999 ], [ 26.570243367000074, -18.002879332999925 ], [ 26.40859948700006, -17.939007262999965 ], [ 26.318269084000121, -17.934356383999912 ], [ 26.239204142000119, -17.910171813999938 ], [ 26.211918986000114, -17.88278330499989 ], [ 26.095233602000121, -17.938077086999911 ], [ 26.095233602000121, -17.958540953999972 ], [ 25.9785482180001, -17.998951924999957 ], [ 25.924494670000115, -17.998951924999957 ], [ 25.853491252000111, -17.959987894999969 ], [ 25.847496785000089, -17.929395445999958 ], [ 25.863619832000069, -17.92381439199994 ], [ 25.849667196000098, -17.906657815999978 ], [ 25.681408732000079, -17.811469827999915 ], [ 25.516457561000067, -17.862319437999929 ], [ 25.335538371000098, -17.841235452999911 ], [ 25.242417440000082, -17.770335387999936 ], [ 25.190741007000071, -17.755349222999968 ], [ 25.13854781100008, -17.686102803999944 ], [ 25.122631469000055, -17.697885029999952 ], [ 25.088525024000091, -17.64269460099996 ], [ 25.033851359000039, -17.608484801999865 ], [ 25.036951945000084, -17.581199645999945 ], [ 24.99850468000011, -17.588020934999903 ], [ 24.969987329651531, -17.559962479085129 ], [ 24.986051467001573, -17.469941095005538 ], [ 25.025273879086228, -17.419918308083481 ], [ 25.025273879086228, -17.31656544413994 ], [ 25.098396029752962, -17.221894219742467 ], [ 25.084236687972748, -17.175178724718364 ], [ 25.09141971165036, -17.138333428544911 ], [ 25.155343458833556, -17.079473971546577 ], [ 25.159219190613157, -17.013896579763355 ], [ 25.237870721256741, -16.975862725184641 ], [ 25.279005161259192, -16.905479424735688 ], [ 25.241746453935662, -16.790137627549484 ], [ 25.251358270367859, -16.705698337208503 ], [ 25.2124459157464, -16.685234469994782 ], [ 25.100876499350932, -16.670403333746833 ], [ 25.075089958634692, -16.609063408949169 ], [ 25.000779249562697, -16.551030776049458 ], [ 24.997833692870586, -16.532168877491699 ], [ 25.041448601571688, -16.51196339269643 ], [ 25.149917433442795, -16.373935642016249 ], [ 25.289857212040658, -16.29264861394239 ], [ 25.3557963399291, -16.164181002851024 ], [ 25.428143345139233, -16.092919203258646 ], [ 25.349595168182475, -16.044084974741793 ], [ 25.33440229672857, -16.008996676855134 ], [ 25.358586866990322, -15.96967091198303 ], [ 25.350370313639019, -15.927502944105584 ], [ 25.381582878846757, -15.876239922834202 ], [ 25.396155632676312, -15.7509245740099 ], [ 25.360757277326456, -15.723484388693578 ], [ 25.320139601261587, -15.760071302448637 ], [ 25.278385043634842, -15.748702487729645 ], [ 25.251823358361264, -15.698472996131898 ], [ 25.277764926909811, -15.668293958799154 ], [ 25.277764926909811, -15.644781183005193 ], [ 25.223297967427243, -15.59382822009627 ], [ 25.26892825683359, -15.538224379051883 ], [ 25.244692009728453, -15.484894301131078 ], [ 25.296678501411691, -15.468047784177884 ], [ 25.318744338180636, -15.381644789075779 ], [ 25.343238966804847, -15.352705986991737 ], [ 25.324790480296429, -15.298859145133463 ], [ 26.746305779887791, -15.336066175613496 ], [ 26.843922560078056, -15.351620782273301 ], [ 26.987272984260812, -15.435181572571537 ], [ 26.958592563695845, -15.467686048971984 ], [ 27.202195264599766, -15.482207126857418 ], [ 27.227671746953547, -15.497089939049431 ], [ 27.279503208106576, -15.727050063009983 ], [ 27.300897251307106, -15.744413343900703 ], [ 27.409831170272298, -15.568093357122734 ], [ 27.45918216272662, -15.579307143110157 ], [ 27.504502393770451, -15.540704847750533 ], [ 27.534112990322228, -15.487374769829785 ], [ 27.561604851582615, -15.478951510903528 ], [ 27.569046257678622, -15.499725436479707 ], [ 27.626303745121731, -15.518949070243423 ], [ 27.65979007255379, -15.557654717491232 ], [ 27.66537112757544, -15.600287774261403 ], [ 27.651108433007778, -15.621475111886923 ], [ 27.691932813748338, -15.669327487573526 ], [ 27.799988233570105, -15.64783009158549 ], [ 27.842156203246191, -15.663126315826844 ], [ 27.856418897813853, -15.689791354787189 ], [ 27.929592726223291, -15.664263196489344 ], [ 27.970675490281621, -15.665916842888009 ], [ 28.007210728092616, -15.682970065416214 ], [ 28.040593702737169, -15.731752617988946 ], [ 28.178259719110713, -15.777796318545256 ], [ 28.236137323278854, -15.818620701084512 ], [ 28.291534457848911, -15.790663750931344 ], [ 28.391114942800357, -15.784359225497838 ], [ 28.506560092774066, -15.823736668112758 ], [ 28.583609652963105, -15.890295911826854 ], [ 28.676937290223748, -15.895308526067652 ], [ 28.753935173569403, -15.95189421994229 ], [ 28.808557162682916, -15.956700127708757 ], [ 28.887312046114005, -15.926417738487828 ], [ 28.946861598783755, -15.957235194648547 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ZM-01", "NAME_1": "Western" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.019875122000116, -16.253115335999908 ], [ 22.045196574000101, -16.252288512999968 ], [ 21.981531210000099, -16.144284769999928 ], [ 21.980353099615854, -13.694822054793974 ], [ 22.085711704431617, -13.758539726826939 ], [ 22.119198031863675, -13.76164031314994 ], [ 22.168549025217317, -13.74257170991649 ], [ 22.22162072071967, -13.683350517712256 ], [ 22.250817905222107, -13.686554456822705 ], [ 22.499381545322024, -13.866130058655301 ], [ 22.516331414163403, -13.893621920815008 ], [ 22.610020785730683, -13.927676689927296 ], [ 22.632293328973958, -13.960956312683663 ], [ 22.710273065149806, -13.990360202761167 ], [ 22.728721550758962, -13.977699476849409 ], [ 22.747996859567422, -13.905300794795835 ], [ 22.805409376641421, -13.899668063830063 ], [ 22.852900018021387, -13.869540704240137 ], [ 22.964779493678691, -13.935583184016707 ], [ 23.000746290708719, -13.992840670560497 ], [ 23.082240025256965, -13.980283297436245 ], [ 23.125234816333716, -14.059038180867333 ], [ 23.226985710721976, -14.076349785813989 ], [ 23.182595655664954, -14.154846286826682 ], [ 23.22357506693578, -14.140583590460324 ], [ 23.22357506693578, -14.168488864669371 ], [ 23.264554478206605, -14.168488864669371 ], [ 23.32320722783129, -14.133710626044547 ], [ 23.367597283787575, -14.133710626044547 ], [ 23.436740349887202, -14.085651543883671 ], [ 23.539524773949154, -14.059244886442343 ], [ 23.667682325778685, -13.994804376220998 ], [ 23.733259719360547, -14.012322685843287 ], [ 23.833718702556041, -13.956202080861374 ], [ 23.833098585831067, -13.975684096144107 ], [ 23.855681187436858, -13.990876966698636 ], [ 24.001460401676184, -14.000282077555823 ], [ 24.04802086796866, -13.96633066213036 ], [ 24.071585320606061, -13.976459241600708 ], [ 24.08791507272241, -13.946228530122596 ], [ 24.12667239771298, -13.955581964136343 ], [ 24.222428826828889, -13.905869235576745 ], [ 24.299995150955453, -13.938167005502919 ], [ 24.290538364154145, -13.912690524947777 ], [ 24.30531782355871, -13.892226657734057 ], [ 24.334928420110487, -13.94224944375685 ], [ 24.381488884604323, -13.958217461566619 ], [ 24.404123163053498, -13.946383558854166 ], [ 24.416422152860036, -13.963333428594865 ], [ 24.470682406767651, -13.952481377813342 ], [ 24.465411411007778, -13.932379245805578 ], [ 24.488562453394479, -13.917909844763528 ], [ 24.553881462759307, -13.982918795765841 ], [ 24.586954379940664, -13.988499850787491 ], [ 24.590985142250474, -13.96343678048305 ], [ 24.615789829237201, -13.96555551487512 ], [ 24.619510532285233, -14.000127047924934 ], [ 24.635633578826571, -13.969792982759941 ], [ 24.661265089911979, -13.958527519929135 ], [ 24.713406610326786, -14.012787773836692 ], [ 24.745807733040408, -14.120326429720933 ], [ 24.878202751855497, -14.156241549907634 ], [ 25.008220655658704, -14.217684827492803 ], [ 25.063772820759027, -14.214274183706607 ], [ 25.081756219274098, -14.232050876646667 ], [ 25.087492303027318, -14.290393568808156 ], [ 25.059121941724186, -14.350183200894037 ], [ 25.051060418003885, -14.421806735692314 ], [ 24.963985630232628, -14.480562839003824 ], [ 24.962900424614872, -14.564278659832269 ], [ 25.010236037263269, -14.623758232656314 ], [ 25.040208368121682, -14.635953870574667 ], [ 25.151622755785525, -14.628512464478661 ], [ 25.315282016651736, -14.577352796894047 ], [ 25.45124270978323, -14.60365610064855 ], [ 25.548394402879353, -14.585207615039394 ], [ 25.523072951055838, -14.602829277449189 ], [ 25.478682895998816, -14.683496188798074 ], [ 25.480129835923151, -14.784471937729734 ], [ 25.450002476333225, -14.806641127286184 ], [ 25.425146111603738, -14.86632740568524 ], [ 25.425662876440583, -14.913611341490196 ], [ 25.456513706442365, -14.97055876967147 ], [ 25.45604861844896, -15.019599704662653 ], [ 25.414139032090645, -15.080577895153738 ], [ 25.41057335777424, -15.131427503476516 ], [ 25.367888625060004, -15.137525322435692 ], [ 25.324170362672078, -15.178659762438087 ], [ 25.324790480296429, -15.298859145133463 ], [ 25.345254346610773, -15.34562631610163 ], [ 25.318744338180636, -15.381644789075779 ], [ 25.296678501411691, -15.468047784177884 ], [ 25.244692009728453, -15.484894301131078 ], [ 25.26892825683359, -15.538224379051883 ], [ 25.223297967427243, -15.59382822009627 ], [ 25.277764926909811, -15.644781183005193 ], [ 25.277764926909811, -15.668293958799154 ], [ 25.251823358361264, -15.698472996131898 ], [ 25.278385043634842, -15.748702487729645 ], [ 25.320139601261587, -15.760071302448637 ], [ 25.360757277326456, -15.723484388693578 ], [ 25.396155632676312, -15.7509245740099 ], [ 25.381582878846757, -15.876239922834202 ], [ 25.350370313639019, -15.927502944105584 ], [ 25.358586866990322, -15.96967091198303 ], [ 25.33440229672857, -16.008996676855134 ], [ 25.349595168182475, -16.044084974741793 ], [ 25.428143345139233, -16.092919203258646 ], [ 25.3557963399291, -16.164181002851024 ], [ 25.289857212040658, -16.29264861394239 ], [ 25.149917433442795, -16.373935642016249 ], [ 25.041448601571688, -16.51196339269643 ], [ 24.996903516883776, -16.536974786157487 ], [ 25.075089958634692, -16.609063408949169 ], [ 25.100876499350932, -16.670403333746833 ], [ 25.2124459157464, -16.685234469994782 ], [ 25.251358270367859, -16.705698337208503 ], [ 25.241746453935662, -16.790137627549484 ], [ 25.279005161259192, -16.905479424735688 ], [ 25.237870721256741, -16.975862725184641 ], [ 25.159219190613157, -17.013896579763355 ], [ 25.155343458833556, -17.079473971546577 ], [ 25.09141971165036, -17.138333428544911 ], [ 25.084236687972748, -17.175178724718364 ], [ 25.098396029752962, -17.221894219742467 ], [ 25.025273879086228, -17.31656544413994 ], [ 25.025273879086228, -17.419918308083481 ], [ 24.986051467001573, -17.469941095005538 ], [ 24.969987329651531, -17.559962479085129 ], [ 24.937629842000092, -17.560735778999899 ], [ 24.898252400000075, -17.531073506999931 ], [ 24.684415324000071, -17.492419534999925 ], [ 24.629741659000047, -17.495520120999871 ], [ 24.571243937000133, -17.533450622999879 ], [ 24.388929484000101, -17.471335549999907 ], [ 24.321336711000129, -17.488698831999912 ], [ 24.238757771000081, -17.478156839999954 ], [ 23.381652466000105, -17.641144306999934 ], [ 23.382272583000088, -17.601043395999938 ], [ 23.320157512000094, -17.546369730999885 ], [ 23.189726196000066, -17.536551207999921 ], [ 23.176186971000078, -17.478156839999954 ], [ 23.097638794000147, -17.432164814999865 ], [ 22.998626750000142, -17.293775328999956 ], [ 22.87615360500007, -17.248093362999938 ], [ 22.765152628000095, -17.169648538999922 ], [ 22.710478963000043, -17.055443623999906 ], [ 22.651671183000076, -16.998702900999973 ], [ 22.573433064000113, -16.971004332999954 ], [ 22.554519491000065, -16.924185485999928 ], [ 22.508527466000089, -16.906202087999944 ], [ 22.416646769000124, -16.75448008199993 ], [ 22.377992798, -16.73484303799998 ], [ 22.333654419000055, -16.673658141999866 ], [ 22.290762980000096, -16.656398213999879 ], [ 22.237742961000095, -16.665493265999942 ], [ 22.151650025, -16.597693786999926 ], [ 22.138110799000032, -16.552631937999891 ], [ 22.104004354000068, -16.536715595999866 ], [ 22.107311646000056, -16.512324319999934 ], [ 22.079923136000019, -16.45775400799991 ], [ 22.105554646000087, -16.379412536999922 ], [ 22.055841919000073, -16.364633076999908 ], [ 22.019875122000116, -16.253115335999908 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ZM-06", "NAME_1": "North-Western" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.980353099615854, -13.694822054793974 ], [ 21.979877563000059, -13.001479186999916 ], [ 24.000632772000102, -13.001479186999916 ], [ 23.971797322000072, -12.933369649999904 ], [ 23.895109497000107, -12.849757181999891 ], [ 23.865653931000111, -12.78970916699997 ], [ 23.928699178000045, -12.561609394999891 ], [ 24.030811808000095, -12.385082702999924 ], [ 24.016859171000107, -12.278939310999888 ], [ 23.959601685000052, -12.19667043099993 ], [ 23.954330689000102, -12.151918639999877 ], [ 23.967043091000079, -11.882891132999887 ], [ 23.990194132000056, -11.82408335399991 ], [ 23.954640747000099, -11.636911315999939 ], [ 24.009727824000066, -11.523429869999916 ], [ 24.009934530000123, -11.459454446999928 ], [ 24.061714315000103, -11.406951191999966 ], [ 24.011174764000145, -11.272902525999939 ], [ 24.01530887800007, -11.130482278999949 ], [ 23.990090779000127, -11.113532408999944 ], [ 24.003733358000119, -10.982480977999927 ], [ 23.96745650200009, -10.872306822999903 ], [ 24.048381796000058, -10.882332051999924 ], [ 24.114217570000051, -10.919229023999947 ], [ 24.124242797000079, -11.043252461999941 ], [ 24.181293579000084, -11.03446746799996 ], [ 24.293844848000077, -11.050280456999957 ], [ 24.370532674000088, -11.100199889999914 ], [ 24.381798136000072, -11.120560403999946 ], [ 24.361747680000121, -11.164692077999945 ], [ 24.396577596000071, -11.21740203799996 ], [ 24.39223677600009, -11.279103698999933 ], [ 24.339940226000095, -11.358065286999889 ], [ 24.285473266000082, -11.381216328999884 ], [ 24.31007124900006, -11.40664113299988 ], [ 24.370222615000102, -11.410155130999939 ], [ 24.446497030000046, -11.463588561999956 ], [ 24.564732707000076, -11.444674987999917 ], [ 24.593258097000103, -11.399613138999968 ], [ 24.635219360000121, -11.385867207999937 ], [ 24.674080037000067, -11.341632180999923 ], [ 24.712527303000115, -11.326025899999877 ], [ 24.826732218000046, -11.317550963999878 ], [ 24.942900838000099, -11.268561706999961 ], [ 25.184023071000126, -11.246650898999917 ], [ 25.310320272000041, -11.194767760999909 ], [ 25.32251591000005, -11.205413105999909 ], [ 25.324893025000108, -11.283651223999868 ], [ 25.284688761000069, -11.307319030999892 ], [ 25.306496216000113, -11.333053893999889 ], [ 25.277970825000068, -11.37181121799992 ], [ 25.279004354000051, -11.396305846999965 ], [ 25.316728149000085, -11.472993671999916 ], [ 25.300398397000066, -11.535005390999871 ], [ 25.344943482000048, -11.642182311999889 ], [ 25.386387980000109, -11.649830423999958 ], [ 25.481162557000061, -11.715252786999926 ], [ 25.474134562000046, -11.756180520999948 ], [ 25.495580281000088, -11.776541035999884 ], [ 25.561002645000144, -11.75328664099996 ], [ 25.575678752000044, -11.72734507199992 ], [ 25.621464071000077, -11.728895365999932 ], [ 25.725643758000103, -11.800518899999901 ], [ 25.850700724000063, -11.793800963999971 ], [ 25.981132039000101, -11.903044941999951 ], [ 26.166650431000107, -11.902424824999898 ], [ 26.229592326000017, -11.933120625999933 ], [ 26.298011922000114, -11.941182148999914 ], [ 26.339146362000093, -11.918961282999888 ], [ 26.414593953000093, -11.911829934999943 ], [ 26.489111369000028, -11.960819192999864 ], [ 26.643520548000083, -11.985520527999967 ], [ 26.697057333000117, -12.017456562999939 ], [ 26.717417847000064, -12.013012389999929 ], [ 26.759379109000065, -11.968674010999891 ], [ 26.874204143000071, -11.964333190999909 ], [ 26.947688029000119, -11.909142760999913 ], [ 26.967325073000069, -11.870385436999882 ], [ 26.981071004000086, -11.749049173999921 ], [ 27.021481975000086, -11.69788950599991 ], [ 27.010268189000044, -11.609832864999888 ], [ 27.023755738000091, -11.595570169999917 ], [ 27.18012862100008, -11.569628600999877 ], [ 27.207620483000142, -11.639391783999926 ], [ 27.209997599000104, -11.72197072299987 ], [ 27.234182169000064, -11.809097187999924 ], [ 27.420734090000053, -11.921958516999894 ], [ 27.467552938000068, -12.001643574999946 ], [ 27.520469605000073, -12.179617206999907 ], [ 27.589820184154178, -12.242973320462397 ], [ 27.510548536785507, -12.300695895898855 ], [ 27.467398716077867, -12.288913669130523 ], [ 27.466003452097596, -12.270413506677983 ], [ 27.413396843689384, -12.247830905971512 ], [ 27.276505974571023, -12.345706068580228 ], [ 27.051506788907147, -12.33418222423029 ], [ 27.066131218680766, -12.387408948464213 ], [ 27.054917432693344, -12.46270151126572 ], [ 27.07682824073072, -12.515979913242404 ], [ 27.009183791398812, -12.538045750011349 ], [ 26.946655308195886, -12.618092542836564 ], [ 26.886245557586392, -12.637574558119354 ], [ 26.867487012715458, -12.663102715517937 ], [ 26.845007764796492, -12.738757012626024 ], [ 26.906916131274443, -12.819682305493984 ], [ 26.883144972162711, -12.892339369066633 ], [ 27.009648879392273, -12.9556946745696 ], [ 27.043910353180252, -12.996932468258819 ], [ 27.094191521621383, -13.00080820093774 ], [ 27.06101525165252, -13.130257663960037 ], [ 26.965103793805042, -13.211027927197108 ], [ 26.973630404619485, -13.334844659253633 ], [ 26.906140984918522, -13.416751804052524 ], [ 26.859115430632585, -13.439282728814874 ], [ 26.838186476324779, -13.508942558852027 ], [ 26.793331333274409, -13.57875741852007 ], [ 26.799067417027629, -13.676064141247139 ], [ 26.868572219232533, -13.7261902809567 ], [ 26.906296013650092, -13.790269056871466 ], [ 26.954561802285355, -13.821740003598279 ], [ 26.912187127034258, -13.910003349774797 ], [ 26.907536247999417, -14.009583835625506 ], [ 26.85772016755169, -14.037747490454308 ], [ 26.913427362282903, -14.076091404294857 ], [ 26.979056430909566, -14.169057305450281 ], [ 26.97890140127862, -14.209468275940196 ], [ 26.952236362318274, -14.253083183741921 ], [ 26.955957066265569, -14.373954360005712 ], [ 26.927690056850622, -14.409921156136477 ], [ 26.804648472049337, -14.414933769477898 ], [ 26.736073845831299, -14.449040215433627 ], [ 26.555464715224389, -14.450693861832235 ], [ 26.492161085665543, -14.531619154700252 ], [ 26.387412956842468, -14.62696217176682 ], [ 26.369842970376737, -14.699205824189448 ], [ 26.334961378964465, -14.713985283593956 ], [ 26.197915480215215, -14.654505710769968 ], [ 26.17373090995352, -14.621071059281974 ], [ 25.620999789608561, -14.555441989756048 ], [ 25.483023715771822, -14.601330661580789 ], [ 25.315282016651736, -14.577352796894047 ], [ 25.151622755785525, -14.628512464478661 ], [ 25.025738967079633, -14.632284845269396 ], [ 24.966931186924739, -14.573942153107907 ], [ 24.963520542239223, -14.483250014176804 ], [ 25.051060418003885, -14.421806735692314 ], [ 25.059121941724186, -14.350183200894037 ], [ 25.087492303027318, -14.290393568808156 ], [ 25.081756219274098, -14.232050876646667 ], [ 25.063772820759027, -14.214274183706607 ], [ 25.008220655658704, -14.217684827492803 ], [ 24.878202751855497, -14.156241549907634 ], [ 24.745807733040408, -14.120326429720933 ], [ 24.713406610326786, -14.012787773836692 ], [ 24.664675733698118, -13.960181165428423 ], [ 24.635633578826571, -13.969792982759941 ], [ 24.617340121949042, -13.999765312719035 ], [ 24.615789829237201, -13.96555551487512 ], [ 24.590985142250474, -13.96343678048305 ], [ 24.586954379940664, -13.988499850787491 ], [ 24.553881462759307, -13.982918795765841 ], [ 24.488562453394479, -13.917909844763528 ], [ 24.465411411007778, -13.932379245805578 ], [ 24.470682406767651, -13.952481377813342 ], [ 24.416422152860036, -13.963333428594865 ], [ 24.404123163053498, -13.946383558854166 ], [ 24.381488884604323, -13.958217461566619 ], [ 24.334928420110487, -13.94224944375685 ], [ 24.322060987724399, -13.905145766064265 ], [ 24.301080356573152, -13.892433364208387 ], [ 24.290538364154145, -13.912690524947777 ], [ 24.299995150955453, -13.938167005502919 ], [ 24.222428826828889, -13.905869235576745 ], [ 24.12667239771298, -13.955581964136343 ], [ 24.08791507272241, -13.946228530122596 ], [ 24.071585320606061, -13.976459241600708 ], [ 24.04802086796866, -13.96633066213036 ], [ 23.99231367413671, -14.001522311905148 ], [ 23.947768589448799, -13.987156263650661 ], [ 23.910716586801016, -14.000282077555823 ], [ 23.855681187436858, -13.990876966698636 ], [ 23.833098585831067, -13.975684096144107 ], [ 23.833718702556041, -13.956202080861374 ], [ 23.733259719360547, -14.012322685843287 ], [ 23.667682325778685, -13.994804376220998 ], [ 23.539524773949154, -14.059244886442343 ], [ 23.436740349887202, -14.085651543883671 ], [ 23.367597283787575, -14.133710626044547 ], [ 23.32320722783129, -14.133710626044547 ], [ 23.264554478206605, -14.168488864669371 ], [ 23.22357506693578, -14.168488864669371 ], [ 23.22357506693578, -14.140583590460324 ], [ 23.182595655664954, -14.154846286826682 ], [ 23.226985710721976, -14.076349785813989 ], [ 23.125234816333716, -14.059038180867333 ], [ 23.082240025256965, -13.980283297436245 ], [ 23.000746290708719, -13.992840670560497 ], [ 22.964779493678691, -13.935583184016707 ], [ 22.852900018021387, -13.869540704240137 ], [ 22.805409376641421, -13.899668063830063 ], [ 22.747996859567422, -13.905300794795835 ], [ 22.728721550758962, -13.977699476849409 ], [ 22.710273065149806, -13.990360202761167 ], [ 22.632293328973958, -13.960956312683663 ], [ 22.610020785730683, -13.927676689927296 ], [ 22.516331414163403, -13.893621920815008 ], [ 22.499381545322024, -13.866130058655301 ], [ 22.250817905222107, -13.686554456822705 ], [ 22.22162072071967, -13.683350517712256 ], [ 22.168549025217317, -13.74257170991649 ], [ 22.119198031863675, -13.76164031314994 ], [ 22.085711704431617, -13.758539726826939 ], [ 21.980353099615854, -13.694822054793974 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ZM-04", "NAME_1": "Luapula" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.586296021000067, -9.544015807999898 ], [ 28.562783244000059, -9.484897969999935 ], [ 28.519685099000043, -9.44562388099996 ], [ 28.515964396000129, -9.378341165999885 ], [ 28.495397176000068, -9.353226419999956 ], [ 28.368531535000074, -9.308577981999917 ], [ 28.35246016500011, -9.271991067999892 ], [ 28.372303914000099, -9.235094094999866 ], [ 28.599060099000013, -9.09639455099996 ], [ 28.765406534000107, -8.93402720099995 ], [ 28.893098999000102, -8.765768736999931 ], [ 28.930461059000066, -8.679882506999903 ], [ 28.935473673000018, -8.5907923379999 ], [ 28.889171590000046, -8.483098652999928 ], [ 29.575844324000059, -8.372729113999895 ], [ 29.523914015119658, -8.472919202659057 ], [ 29.419010857565013, -8.520771580144299 ], [ 29.393069289016466, -8.550640556416568 ], [ 29.305581089195869, -8.721172783497195 ], [ 29.25049401208895, -8.901161798278395 ], [ 29.228428176219325, -8.92818857154532 ], [ 29.176131626173571, -8.948755791546546 ], [ 29.147296176877035, -9.036967461778943 ], [ 29.119029168361408, -9.047044366204545 ], [ 29.109882439922671, -9.091021010111547 ], [ 29.193391554276786, -9.152464287696716 ], [ 29.243517693986348, -9.157580254724962 ], [ 29.30852664588798, -9.217318209967402 ], [ 29.334106480129947, -9.216491387667418 ], [ 29.358807814329168, -9.356379489421897 ], [ 29.328060337114835, -9.395860283924947 ], [ 29.324649693328638, -9.433274020879367 ], [ 29.36903974838566, -9.536988620928128 ], [ 29.438079460798463, -9.546600436461006 ], [ 29.478438755344257, -9.601222425574463 ], [ 29.543292677614943, -9.650573418928161 ], [ 29.737544386963862, -9.708244316621915 ], [ 29.799762810904951, -9.70870940461532 ], [ 29.876295607156521, -9.819503675554188 ], [ 29.919445427864162, -9.838572279686957 ], [ 29.937893915271957, -9.891075535307721 ], [ 29.905286086084004, -9.991947930552556 ], [ 29.937583856010122, -10.072511488214616 ], [ 29.899239943068892, -10.114627781047261 ], [ 29.879396192580202, -10.199583834426448 ], [ 29.85350630087504, -10.229917900490705 ], [ 29.697701857254913, -10.222786553656533 ], [ 29.615743035612581, -10.286245211947005 ], [ 29.506809115748069, -10.329084975191449 ], [ 29.441335076752353, -10.380761406713532 ], [ 29.430017937977425, -10.433833103115205 ], [ 29.396014845708521, -10.480496921295867 ], [ 29.414515008161061, -10.526902357957454 ], [ 29.357257520718008, -10.630410251531885 ], [ 29.307596469901171, -10.640900567107508 ], [ 29.163884312311154, -10.742083021614178 ], [ 29.161403842713128, -10.8727727189858 ], [ 29.084302605680705, -10.957832126951132 ], [ 29.180162387584119, -10.999276624416666 ], [ 29.273748407263156, -11.0901754698221 ], [ 29.318293491051747, -11.09095061617802 ], [ 29.382062208603998, -11.119062595062701 ], [ 29.397100051326277, -11.042374770079562 ], [ 29.365629102800824, -10.998656507691692 ], [ 29.36423383971993, -10.958917331669511 ], [ 29.337827183177922, -10.908016045604029 ], [ 29.654862094909731, -10.738258965778641 ], [ 29.780694206772182, -10.803577976042789 ], [ 29.885752393957773, -10.949460543968939 ], [ 29.892573683328806, -11.019275404536302 ], [ 29.834696079160722, -11.395324801998015 ], [ 29.880016310204553, -11.361373385673232 ], [ 29.959908075197518, -11.246445000536369 ], [ 30.104705438405233, -11.242414239125821 ], [ 30.449180536352628, -11.475474948510055 ], [ 30.456931999911831, -11.496455579661301 ], [ 30.447630242741468, -11.589989922496954 ], [ 30.261440057112907, -11.818864840839751 ], [ 29.78953087684846, -11.89901498825111 ], [ 29.773252800676175, -11.924801528068087 ], [ 29.778162062129468, -12.020299573866225 ], [ 29.816557651014762, -12.085463556298066 ], [ 29.813508742434522, -12.14008554361294 ], [ 29.648918498000057, -12.21279347699992 ], [ 29.576726522000058, -12.188092141999903 ], [ 29.474252157000137, -12.24266245499993 ], [ 29.446553589000075, -12.335059915999935 ], [ 29.480453328000124, -12.380535175999896 ], [ 29.523448120000069, -12.392524108999865 ], [ 29.524688355000137, -12.429214374999916 ], [ 29.499676961000034, -12.453088886999907 ], [ 29.364388062000046, -12.409267272999898 ], [ 29.304856811000093, -12.404823099999902 ], [ 29.254989054000134, -12.366169127999896 ], [ 29.173391967000072, -12.36761606799989 ], [ 29.111070191000124, -12.393454284999905 ], [ 29.100218140000095, -12.374023945999923 ], [ 29.030351603000099, -12.376194355999914 ], [ 28.944672079000043, -12.20607554099989 ], [ 28.859509318000079, -12.141790058999931 ], [ 28.821475463000041, -12.075747578999881 ], [ 28.759877156000101, -12.035233255999884 ], [ 28.751092163000123, -11.992238463999897 ], [ 28.686031535000041, -11.984073587999973 ], [ 28.623864787000059, -11.947796731999915 ], [ 28.592652222000083, -11.90046112099995 ], [ 28.569191121000102, -11.913690286999952 ], [ 28.540562377000128, -11.87203908199993 ], [ 28.507851196000047, -11.87276255299993 ], [ 28.488885946000096, -11.808683776999914 ], [ 28.452505737000109, -11.78077850399994 ], [ 28.405480183000122, -11.60518198599992 ], [ 28.360314982000148, -11.533558451999866 ], [ 28.357007690000046, -11.446948750999937 ], [ 28.439586629000075, -11.348246764999914 ], [ 28.436175985000148, -11.28912892699995 ], [ 28.473693074000067, -11.225670266999913 ], [ 28.48733565200007, -11.153426614999972 ], [ 28.476793661000102, -11.077979023999973 ], [ 28.547176961000019, -10.913751322999957 ], [ 28.554411662000092, -10.834996438999951 ], [ 28.623244670000076, -10.716864114999865 ], [ 28.665877726000076, -10.697433776999972 ], [ 28.699622436000141, -10.643173522999945 ], [ 28.665515991000063, -10.608963724999853 ], [ 28.672337280000136, -10.564315286999914 ], [ 28.63492354300007, -10.519460143999922 ], [ 28.646085653000085, -10.438431497999915 ], [ 28.620867554000142, -10.373319192999915 ], [ 28.623864787000059, -10.276374205999971 ], [ 28.569914592000089, -10.219633483999957 ], [ 28.628515665000123, -10.102741393999906 ], [ 28.627947224000081, -9.929418639999909 ], [ 28.668461548000067, -9.821621601999922 ], [ 28.698485555000047, -9.791959329999955 ], [ 28.63125451600007, -9.715581562999915 ], [ 28.621797730000083, -9.638273620999911 ], [ 28.583557169000102, -9.563756204999947 ], [ 28.617766968000097, -9.543292337999986 ], [ 28.586296021000067, -9.544015807999898 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ZM-08", "NAME_1": "Copperbelt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.589820184154178, -12.242973320462397 ], [ 27.63818851700006, -12.29361541699997 ], [ 27.710742228000072, -12.306327819999936 ], [ 27.788308553000036, -12.296509296999957 ], [ 27.831406698000137, -12.259922383999921 ], [ 27.856676473000107, -12.262402851999894 ], [ 27.933881062000097, -12.30333058699992 ], [ 27.958685750000114, -12.367822774999937 ], [ 28.087670125000074, -12.377537943999883 ], [ 28.131285034000115, -12.429214374999916 ], [ 28.185751994000015, -12.402445983999939 ], [ 28.237531779000079, -12.437069192999957 ], [ 28.303677612000058, -12.435415547999909 ], [ 28.339747762000059, -12.450505065999906 ], [ 28.422740112000099, -12.521301777999938 ], [ 28.512295370000061, -12.668372905 ], [ 28.511623575000073, -12.694417825999977 ], [ 28.474003133000053, -12.736482441999911 ], [ 28.53942549700011, -12.833840840999954 ], [ 28.542836141000038, -12.885620625999934 ], [ 28.583970581000102, -12.888721210999876 ], [ 28.621177612000025, -12.839421895999877 ], [ 28.667893107000111, -12.849343769999876 ], [ 28.800598185000069, -13.00240936299987 ], [ 28.809434855000092, -13.038376159999927 ], [ 28.830880574000105, -13.051812031999887 ], [ 28.825816284000041, -13.092843118999937 ], [ 28.844213094000025, -13.102351582999916 ], [ 28.853669881000087, -13.137078144999947 ], [ 28.903434285000117, -13.162296243999904 ], [ 28.950356486000061, -13.350966897999868 ], [ 28.993971395000102, -13.395925394999978 ], [ 29.065386147000112, -13.388676477999894 ], [ 28.954077997201807, -13.519897962421055 ], [ 28.871860793141082, -13.560153904179344 ], [ 28.818479038376893, -13.620356946515869 ], [ 28.671201205571151, -13.731202895197441 ], [ 28.669495884127741, -13.856053155129018 ], [ 28.435194940394183, -13.890883070597226 ], [ 28.190196973711352, -13.86607838271118 ], [ 28.140380894162888, -13.891193128959742 ], [ 27.943907097634451, -13.919511813419433 ], [ 27.900188836145844, -13.880031019815704 ], [ 27.808308139708856, -13.685055840954305 ], [ 27.704645217402856, -13.673015231767522 ], [ 27.63669070790985, -13.647745456787391 ], [ 27.621859571661901, -13.663093356972865 ], [ 27.623668246792136, -13.702367445900904 ], [ 27.595711296639024, -13.709188735271937 ], [ 27.595711296639024, -13.736473890957313 ], [ 27.554318475117498, -13.813368421515463 ], [ 27.541554396418235, -13.817502536612778 ], [ 27.52315758585388, -13.789080498466262 ], [ 27.489877963996832, -13.794816583118802 ], [ 27.483935173769225, -13.867938734684856 ], [ 27.41680748927422, -13.919615167106258 ], [ 27.393708122831583, -13.897859388699828 ], [ 27.376758253990204, -13.823393649996945 ], [ 27.352883742091024, -13.793111260776072 ], [ 27.347147658337747, -13.740349622736915 ], [ 26.852604201422764, -13.716578463625183 ], [ 26.799067417027629, -13.676064141247139 ], [ 26.788990512602084, -13.64371469447758 ], [ 26.804028355324306, -13.545271091088011 ], [ 26.838186476324779, -13.508942558852027 ], [ 26.859115430632585, -13.439282728814874 ], [ 26.906140984918522, -13.416751804052524 ], [ 26.973630404619485, -13.334844659253633 ], [ 26.965103793805042, -13.211027927197108 ], [ 27.06101525165252, -13.130257663960037 ], [ 27.094191521621383, -13.00080820093774 ], [ 27.043910353180252, -12.996932468258819 ], [ 27.009648879392273, -12.9556946745696 ], [ 26.883144972162711, -12.892339369066633 ], [ 26.906916131274443, -12.819682305493984 ], [ 26.845007764796492, -12.738757012626024 ], [ 26.870587599038458, -12.657418307708724 ], [ 26.886245557586392, -12.637574558119354 ], [ 26.946655308195886, -12.618092542836564 ], [ 27.017400343850795, -12.532361342202194 ], [ 27.07682824073072, -12.515979913242404 ], [ 27.054917432693344, -12.46270151126572 ], [ 27.066131218680766, -12.387408948464213 ], [ 27.051506788907147, -12.33418222423029 ], [ 27.276505974571023, -12.345706068580228 ], [ 27.413396843689384, -12.247830905971512 ], [ 27.466003452097596, -12.270413506677983 ], [ 27.467398716077867, -12.288913669130523 ], [ 27.510548536785507, -12.300695895898855 ], [ 27.589820184154178, -12.242973320462397 ] ] ] } }, +{ "type": "Feature", "properties": { "ISO": "ZM-02", "NAME_1": "Central" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.767154175000087, -13.45835052399994 ], [ 29.797643270000094, -13.424244078999976 ], [ 29.799582314000133, -12.159035937999903 ], [ 29.838881870202101, -12.133781019978073 ], [ 29.862653029313833, -12.044484145027297 ], [ 29.992050816392066, -12.00055917706436 ], [ 30.029774610809625, -12.034252210970749 ], [ 30.084551628654708, -12.147165216301687 ], [ 30.142119175359653, -12.174553724774569 ], [ 30.161807896217397, -12.202303968453407 ], [ 30.361382277270252, -12.272222181808274 ], [ 30.412852004116701, -12.273359062470774 ], [ 30.448560417829015, -12.308499037200818 ], [ 30.505197787647774, -12.314596856159994 ], [ 30.511553989025344, -12.385393568658287 ], [ 30.497291293558305, -12.450712578922378 ], [ 30.56989668118689, -12.509003595139802 ], [ 30.564470655796129, -12.574012546142114 ], [ 30.634750604356896, -12.625172213726671 ], [ 30.686582066409244, -12.588533624027548 ], [ 30.71670942599917, -12.63617929413914 ], [ 30.762959832130548, -12.668115329758677 ], [ 30.765285272097628, -12.691576429608574 ], [ 30.727251418418177, -12.76025440771474 ], [ 30.750195754330605, -12.871462090702948 ], [ 30.849672885595169, -12.933473809069028 ], [ 30.906620313776443, -12.927789402159192 ], [ 31.020515171038312, -12.950837090859068 ], [ 31.120767449558116, -13.040702405691491 ], [ 31.159886508855266, -13.034191175582293 ], [ 31.183761020754503, -12.966288343831991 ], [ 31.219624464997025, -12.948046562898583 ], [ 31.282618036193412, -12.949235121303786 ], [ 31.335844761326655, -12.976985364982625 ], [ 31.364990268985707, -13.228597913662782 ], [ 31.429430780106372, -13.352517998506812 ], [ 31.429120720844594, -13.435717054498468 ], [ 31.359357538019935, -13.461090183165425 ], [ 31.283238152918386, -13.517417493722348 ], [ 31.258898553025801, -13.513645114730252 ], [ 31.222414992058191, -13.582271416892354 ], [ 31.183295932761041, -13.578240654582544 ], [ 31.135185173756724, -13.607489515928421 ], [ 31.098598260001665, -13.713839614306778 ], [ 31.056068556019, -13.757609551739449 ], [ 31.061597935096586, -13.773525892705777 ], [ 30.970699089691209, -13.812231540852906 ], [ 30.959330274972217, -13.852590833600118 ], [ 30.936902703896635, -13.860032239696125 ], [ 30.882487420358132, -13.927211601933891 ], [ 30.097729120302631, -13.931862480968732 ], [ 30.14878543509974, -13.951189466620576 ], [ 30.184442172867989, -14.047204278154936 ], [ 30.278338250010222, -14.08177581120475 ], [ 30.305778436225808, -14.103841647973695 ], [ 30.320247837267857, -14.142754001695835 ], [ 30.291515740758825, -14.2068327776106 ], [ 30.218755324398671, -14.257940769251093 ], [ 30.122998895282763, -14.372559096025441 ], [ 30.083621453567218, -14.377881767729377 ], [ 30.069462110887685, -14.415140475952228 ], [ 30.034580518576036, -14.442425631637605 ], [ 29.994221225828881, -14.607066746233386 ], [ 30.051168654010155, -14.671197198092216 ], [ 30.000112339213047, -14.66783823025014 ], [ 29.971121860285621, -14.64913136222259 ], [ 29.904200881365568, -14.654402357982462 ], [ 29.877225783143331, -14.697190443484203 ], [ 29.812526889604271, -14.696932061065752 ], [ 29.781314325295853, -14.719359633040654 ], [ 29.668969760745824, -14.749848727836536 ], [ 29.576313917952916, -14.808914889510561 ], [ 29.521846957571029, -14.816407972449952 ], [ 29.459783563260828, -14.963117363575464 ], [ 29.311627232210981, -14.977431735885887 ], [ 29.228118116957489, -14.956709487153091 ], [ 29.001103549689049, -15.018514499944217 ], [ 28.94679161983737, -15.041510511800709 ], [ 28.823129917411734, -15.149359226047466 ], [ 28.74385827004312, -15.175714206645353 ], [ 28.569140251921056, -15.188271579769605 ], [ 28.404344110392344, -15.145690198943555 ], [ 28.375612012983993, -15.162536715896749 ], [ 28.290759312392311, -15.341698906579268 ], [ 28.259856804647825, -15.35255095826011 ], [ 28.033462355003678, -15.287283623940084 ], [ 27.827996859667337, -15.266354668732959 ], [ 27.777715692125469, -15.299479261858437 ], [ 27.773374872352463, -15.334929294051676 ], [ 27.891765578118907, -15.374255058923836 ], [ 27.934295282101573, -15.500862318940847 ], [ 27.905614862435925, -15.531661472099245 ], [ 27.799316440901009, -15.561013686232627 ], [ 27.743144159075655, -15.663126315826844 ], [ 27.708055861188996, -15.656305026455811 ], [ 27.691932813748338, -15.669327487573526 ], [ 27.651108433007778, -15.621475111886923 ], [ 27.66537112757544, -15.600287774261403 ], [ 27.65979007255379, -15.557654717491232 ], [ 27.626303745121731, -15.518949070243423 ], [ 27.546515333815591, -15.479881686890337 ], [ 27.45918216272662, -15.579307143110157 ], [ 27.409831170272298, -15.568093357122734 ], [ 27.300897251307106, -15.744413343900703 ], [ 27.279503208106576, -15.727050063009983 ], [ 27.227671746953547, -15.497089939049431 ], [ 27.202195264599766, -15.482207126857418 ], [ 26.958592563695845, -15.467686048971984 ], [ 26.987272984260812, -15.435181572571537 ], [ 26.843922560078056, -15.351620782273301 ], [ 26.804183384055932, -15.342990817772034 ], [ 25.324790480296429, -15.298859145133463 ], [ 25.324170362672078, -15.178659762438087 ], [ 25.367888625060004, -15.137525322435692 ], [ 25.41057335777424, -15.131427503476516 ], [ 25.414139032090645, -15.080577895153738 ], [ 25.45604861844896, -15.019599704662653 ], [ 25.456513706442365, -14.97055876967147 ], [ 25.425662876440583, -14.913611341490196 ], [ 25.423182406842557, -14.876455986954227 ], [ 25.450002476333225, -14.806641127286184 ], [ 25.480129835923151, -14.784471937729734 ], [ 25.478682895998816, -14.683496188798074 ], [ 25.523072951055838, -14.602829277449189 ], [ 25.585601434258763, -14.559369399278353 ], [ 26.17373090995352, -14.621071059281974 ], [ 26.197915480215215, -14.654505710769968 ], [ 26.294136997324529, -14.68861215582632 ], [ 26.324832797695422, -14.716569105979488 ], [ 26.369842970376737, -14.699205824189448 ], [ 26.387412956842468, -14.62696217176682 ], [ 26.492161085665543, -14.531619154700252 ], [ 26.555464715224389, -14.450693861832235 ], [ 26.736073845831299, -14.449040215433627 ], [ 26.804648472049337, -14.414933769477898 ], [ 26.927690056850622, -14.409921156136477 ], [ 26.944329868228806, -14.395606784725317 ], [ 26.955957066265569, -14.373954360005712 ], [ 26.952236362318274, -14.253083183741921 ], [ 26.97890140127862, -14.209468275940196 ], [ 26.979056430909566, -14.169057305450281 ], [ 26.913427362282903, -14.076091404294857 ], [ 26.85772016755169, -14.037747490454308 ], [ 26.907536247999417, -14.009583835625506 ], [ 26.912187127034258, -13.910003349774797 ], [ 26.954561802285355, -13.821740003598279 ], [ 26.906296013650092, -13.790269056871466 ], [ 26.852604201422764, -13.716578463625183 ], [ 27.347147658337747, -13.740349622736915 ], [ 27.352883742091024, -13.793111260776072 ], [ 27.376758253990204, -13.823393649996945 ], [ 27.393708122831583, -13.897859388699828 ], [ 27.41680748927422, -13.919615167106258 ], [ 27.483935173769225, -13.867938734684856 ], [ 27.489877963996832, -13.794816583118802 ], [ 27.52315758585388, -13.789080498466262 ], [ 27.541554396418235, -13.817502536612778 ], [ 27.554318475117498, -13.813368421515463 ], [ 27.595711296639024, -13.736473890957313 ], [ 27.595711296639024, -13.709188735271937 ], [ 27.623668246792136, -13.702367445900904 ], [ 27.621859571661901, -13.663093356972865 ], [ 27.63669070790985, -13.647745456787391 ], [ 27.704645217402856, -13.673015231767522 ], [ 27.808308139708856, -13.685055840954305 ], [ 27.900188836145844, -13.880031019815704 ], [ 27.943907097634451, -13.919511813419433 ], [ 28.140380894162888, -13.891193128959742 ], [ 28.190196973711352, -13.86607838271118 ], [ 28.280940790385159, -13.885146986843949 ], [ 28.360109084066949, -13.874656671268383 ], [ 28.435194940394183, -13.890883070597226 ], [ 28.500358921027384, -13.885612073938091 ], [ 28.669495884127741, -13.856053155129018 ], [ 28.671201205571151, -13.731202895197441 ], [ 28.818479038376893, -13.620356946515869 ], [ 28.871860793141082, -13.560153904179344 ], [ 28.954077997201807, -13.519897962421055 ], [ 29.065386147000112, -13.388676477999894 ], [ 29.122128947000135, -13.384349873999938 ], [ 29.184140665000086, -13.4368531289999 ], [ 29.308267456000124, -13.353654072999902 ], [ 29.449550822000106, -13.300323994999914 ], [ 29.551043335000088, -13.224152933999918 ], [ 29.666591837000055, -13.271178486999887 ], [ 29.658892049000087, -13.309522399999906 ], [ 29.62659427900013, -13.326368916999883 ], [ 29.625147339000137, -13.364196064999959 ], [ 29.60168623900006, -13.374427998999934 ], [ 29.617395874000124, -13.421246846999864 ], [ 29.702868693000141, -13.457627054999946 ], [ 29.767154175000087, -13.45835052399994 ] ] ] } } +] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/geojson.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/geojson.d.ts new file mode 100644 index 000000000000..fd6a982f9eb1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/geojson.d.ts @@ -0,0 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +declare module 'file-loader!*.geojson' { + const geojsonPath: string; + + export default geojsonPath; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/images/thumbnail.png new file mode 100644 index 000000000000..e3742f1ee83a Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..cfa72f4641c6 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/index.js new file mode 100644 index 000000000000..eea98d132a13 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/index.js @@ -0,0 +1,54 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Map'), + credits: ['https://bl.ocks.org/john-guerra'], + description: t( + "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a chloropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.", + ), + name: t('Country Map'), + tags: [ + t('2D'), + t('Comparison'), + t('Geo'), + t('Range'), + t('Report'), + t('Stacked'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class CountryMapChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./ReactCountryMap'), + metadata, + transformProps, + controlPanel, + }); + } +} + +export { default as countries } from './countries'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/transformProps.js new file mode 100644 index 000000000000..4120f621f1a0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/src/transformProps.js @@ -0,0 +1,31 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function transformProps(chartProps) { + const { width, height, formData, queriesData } = chartProps; + const { linearColorScheme, numberFormat, selectCountry } = formData; + + return { + width, + height, + data: queriesData[0].data, + country: selectCountry ? String(selectCountry).toLowerCase() : null, + linearColorScheme, + numberFormat, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-country-map/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/CHANGELOG.md new file mode 100644 index 000000000000..917fbce4f7ee --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-event-flow + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-event-flow diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/README.md new file mode 100644 index 000000000000..c40f38b49124 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-event-flow + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-event-flow.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-event-flow) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-event-flow&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-event-flow) + +This plugin provides Event Flow for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import EventFlowChartPlugin from '@superset-ui/legacy-plugin-chart-event-flow'; + +new EventFlowChartPlugin().configure({ key: 'event-flow' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-event-flow) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/package.json new file mode 100644 index 000000000000..b9e9d37233d5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/package.json @@ -0,0 +1,39 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-event-flow", + "version": "0.18.25", + "description": "Superset Legacy Chart - Event Flow", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@data-ui/event-flow": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^15 || ^16" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx new file mode 100644 index 000000000000..c663e0a91870 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx @@ -0,0 +1,53 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { App as EventFlowApp } from '@data-ui/event-flow'; +import { t, TimeseriesDataRecord } from '@superset-ui/core'; + +export interface EventFlowProps { + data: TimeseriesDataRecord[]; + height: number; + width: number; + initialMinEventCount: number; +} + +export default function EventFlow({ + data, + initialMinEventCount, + height = 400, + width = 400, +}: EventFlowProps) { + if (data) { + return ( + + ); + } + + return ( +
+
{t('Sorry, there appears to be no data')}
+
+ ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx new file mode 100644 index 000000000000..fd5ab5b5ddf0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx @@ -0,0 +1,137 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t, validateNonEmpty } from '@superset-ui/core'; +import { + formatSelectOptionsForRange, + ColumnOption, + columnChoices, + ControlPanelConfig, + sections, + SelectControlConfig, + ColumnMeta, +} from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Event definition'), + controlSetRows: [ + ['entity'], + [ + { + name: 'all_columns_x', + config: { + type: 'SelectControl', + label: t('Event Names'), + description: t('Columns to display'), + mapStateToProps: state => ({ + choices: columnChoices(state?.datasource), + }), + // choices is from `mapStateToProps` + default: (control: { choices?: string[] }) => + control.choices && control.choices.length > 0 + ? control.choices[0][0] + : null, + validators: [validateNonEmpty], + }, + }, + ], + ['row_limit'], + [ + { + name: 'order_by_entity', + config: { + type: 'CheckboxControl', + label: t('Order by entity id'), + description: t( + 'Important! Select this if the table is not already sorted by entity id, ' + + 'else there is no guarantee that all events for each entity are returned.', + ), + default: true, + }, + }, + ], + [ + { + name: 'min_leaf_node_event_count', + config: { + type: 'SelectControl', + freeForm: false, + label: t('Minimum leaf node event count'), + default: 1, + choices: formatSelectOptionsForRange(1, 10), + description: t( + 'Leaf nodes that represent fewer than this number of events will be initially ' + + 'hidden in the visualization', + ), + }, + }, + ], + ], + }, + { + label: t('Query'), + expanded: true, + controlSetRows: [['adhoc_filters']], + }, + { + label: t('Additional metadata'), + controlSetRows: [ + [ + { + name: 'all_columns', + // eslint-disable-next-line @typescript-eslint/consistent-type-assertions + config: { + type: 'SelectControl', + multi: true, + label: t('Metadata'), + default: [], + description: t('Select any columns for metadata inspection'), + optionRenderer: c => , + valueRenderer: c => , + valueKey: 'column_name', + allowAll: true, + mapStateToProps: state => ({ + options: state.datasource ? state.datasource.columns : [], + }), + commaChoosesOption: false, + freeForm: true, + } as SelectControlConfig, + }, + ], + ], + }, + ], + controlOverrides: { + entity: { + label: t('Entity ID'), + description: t('e.g., a "user id" column'), + }, + row_limit: { + label: t('Max Events'), + description: t( + 'The maximum number of events to return, equivalent to the number of rows', + ), + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/images/thumbnail.png new file mode 100644 index 000000000000..de10a4d19beb Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..0edb53563db2 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/index.ts new file mode 100644 index 000000000000..fdf6fcf774f8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/index.ts @@ -0,0 +1,44 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Flow'), + credits: ['https://github.com/williaster/data-ui'], + description: t( + 'Compares the lengths of time different activities take in a shared timeline view.', + ), + name: t('Event Flow'), + tags: [t('Legacy'), t('Progressive')], + thumbnail, + useLegacyApi: true, +}); + +export default class EventFlowChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./EventFlow'), + loadTransformProps: () => import('./transformProps'), + metadata, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/transformProps.ts new file mode 100644 index 000000000000..c738ca6ebb4d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/transformProps.ts @@ -0,0 +1,70 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartProps, TimeseriesDataRecord } from '@superset-ui/core'; +import { cleanEvents, TS, EVENT_NAME, ENTITY_ID } from '@data-ui/event-flow'; + +export interface EventFlowFormData { + allColumnsX: string; + entity: string; + minLeafNodeEventCount: number; +} + +export interface EventFlowChartProps extends ChartProps { + formData: EventFlowFormData; + queriesData: { + data: TimeseriesDataRecord[]; + }[]; +} + +export default function transformProps(chartProps: ChartProps) { + const { formData, queriesData, width, height } = + chartProps as EventFlowChartProps; + const { allColumnsX, entity, minLeafNodeEventCount } = formData; + const { data } = queriesData[0]; + + const hasData = data && data.length > 0; + if (hasData) { + const userKey = entity; + const eventNameKey = allColumnsX; + + // map from the Superset form fields to 's expected data keys + const accessorFunctions = { + [ENTITY_ID]: (datum: TimeseriesDataRecord) => String(datum[userKey]), + [EVENT_NAME]: (datum: TimeseriesDataRecord) => + datum[eventNameKey] as string, + [TS]: (datum: TimeseriesDataRecord): Date | null => + // eslint-disable-next-line no-underscore-dangle + datum.__timestamp || datum.__timestamp === 0 + ? // eslint-disable-next-line no-underscore-dangle + new Date(datum.__timestamp) + : null, + }; + + const cleanData = cleanEvents(data, accessorFunctions); + + return { + data: cleanData, + height, + initialMinEventCount: minLeafNodeEventCount, + width, + }; + } + + return { data: null, height, width }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/types/external.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/types/external.d.ts new file mode 100644 index 000000000000..c7f1aac5b2d2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/src/types/external.d.ts @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +declare module '*.png'; +declare module '@data-ui/event-flow'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-event-flow/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/CHANGELOG.md new file mode 100644 index 000000000000..7a9c9279bade --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/CHANGELOG.md @@ -0,0 +1,27 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-force-directed diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/README.md new file mode 100644 index 000000000000..4917d6205e11 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-force-directed + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-force-directed.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-force-directed) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-force-directed&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-force-directed) + +This plugin provides Force-directed Graph for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import ChordChartPlugin from '@superset-ui/legacy-plugin-chart-force-directed'; + +new ChordChartPlugin().configure({ key: 'force-directed' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-force-directed) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/package.json new file mode 100644 index 000000000000..d602c4c5fb6b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/package.json @@ -0,0 +1,39 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-force-directed", + "version": "0.18.25", + "description": "Superset Legacy Chart - Force-directed Graph", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "prop-types": "^15.7.2" + }, + "peerDependencies": { + "react": "^16.13.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/ForceDirected.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/ForceDirected.js new file mode 100644 index 000000000000..ac5847ecbced --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/ForceDirected.js @@ -0,0 +1,176 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/sort-prop-types, func-names, no-param-reassign */ +import d3 from 'd3'; +import PropTypes from 'prop-types'; + +const propTypes = { + data: PropTypes.arrayOf( + PropTypes.shape({ + source: PropTypes.string, + target: PropTypes.string, + value: PropTypes.number, + }), + ), + width: PropTypes.number, + height: PropTypes.number, + linkLength: PropTypes.number, + charge: PropTypes.number, +}; + +/* Modified from http://bl.ocks.org/d3noob/5141278 */ +function ForceDirected(element, props) { + const { data, width, height, linkLength = 200, charge = -500 } = props; + const div = d3.select(element); + div.classed('superset-legacy-chart-force-directed', true); + + const links = data; + const nodes = {}; + // Compute the distinct nodes from the links. + links.forEach(link => { + link.source = + nodes[link.source] || + (nodes[link.source] = { + name: link.source, + }); + link.target = + nodes[link.target] || + (nodes[link.target] = { + name: link.target, + }); + link.value = Number(link.value); + + const targetName = link.target.name; + const sourceName = link.source.name; + + if (nodes[targetName].total === undefined) { + nodes[targetName].total = link.value; + } + if (nodes[sourceName].total === undefined) { + nodes[sourceName].total = 0; + } + if (nodes[targetName].max === undefined) { + nodes[targetName].max = 0; + } + if (link.value > nodes[targetName].max) { + nodes[targetName].max = link.value; + } + if (nodes[targetName].min === undefined) { + nodes[targetName].min = 0; + } + if (link.value > nodes[targetName].min) { + nodes[targetName].min = link.value; + } + + nodes[targetName].total += link.value; + }); + + /* eslint-disable no-use-before-define */ + // add the curvy lines + function tick() { + path.attr('d', d => { + const dx = d.target.x - d.source.x; + const dy = d.target.y - d.source.y; + const dr = Math.sqrt(dx * dx + dy * dy); + + return `M${d.source.x},${d.source.y}A${dr},${dr} 0 0,1 ${d.target.x},${d.target.y}`; + }); + + node.attr('transform', d => `translate(${d.x},${d.y})`); + } + /* eslint-enable no-use-before-define */ + + const force = d3.layout + .force() + .nodes(d3.values(nodes)) + .links(links) + .size([width, height]) + .linkDistance(linkLength) + .charge(charge) + .on('tick', tick) + .start(); + + div.selectAll('*').remove(); + const svg = div.append('svg').attr('width', width).attr('height', height); + + // build the arrow. + svg + .append('svg:defs') + .selectAll('marker') + .data(['end']) // Different link/path types can be defined here + .enter() + .append('svg:marker') // This section adds in the arrows + .attr('id', String) + .attr('viewBox', '0 -5 10 10') + .attr('refX', 15) + .attr('refY', -1.5) + .attr('markerWidth', 6) + .attr('markerHeight', 6) + .attr('orient', 'auto') + .append('svg:path') + .attr('d', 'M0,-5L10,0L0,5'); + + const edgeScale = d3.scale.linear().range([0.1, 0.5]); + // add the links and the arrows + const path = svg + .append('svg:g') + .selectAll('path') + .data(force.links()) + .enter() + .append('svg:path') + .attr('class', 'link') + .style('opacity', d => edgeScale(d.value / d.target.max)) + .attr('marker-end', 'url(#end)'); + + // define the nodes + const node = svg + .selectAll('.node') + .data(force.nodes()) + .enter() + .append('g') + .attr('class', 'node') + .on('mouseenter', function () { + d3.select(this).select('circle').transition().style('stroke-width', 5); + + d3.select(this).select('text').transition().style('font-size', 25); + }) + .on('mouseleave', function () { + d3.select(this).select('circle').transition().style('stroke-width', 1.5); + d3.select(this).select('text').transition().style('font-size', 12); + }) + .call(force.drag); + + // add the nodes + const ext = d3.extent(d3.values(nodes), d => Math.sqrt(d.total)); + const circleScale = d3.scale.linear().domain(ext).range([3, 30]); + + node.append('circle').attr('r', d => circleScale(Math.sqrt(d.total))); + + // add the text + node + .append('text') + .attr('x', 6) + .attr('dy', '.35em') + .text(d => d.name); +} + +ForceDirected.displayName = 'ForceDirected'; +ForceDirected.propTypes = propTypes; + +export default ForceDirected; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/ReactForceDirected.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/ReactForceDirected.jsx new file mode 100644 index 000000000000..90088cbcd56e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/ReactForceDirected.jsx @@ -0,0 +1,56 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { reactify, styled } from '@superset-ui/core'; +import PropTypes from 'prop-types'; +import Component from './ForceDirected'; + +const ReactComponent = reactify(Component); + +const ForceDirected = ({ className, ...otherProps }) => ( +
+ +
+); + +ForceDirected.propTypes = { + className: PropTypes.string.isRequired, +}; + +export default styled(ForceDirected)` + .superset-legacy-chart-force-directed { + path.link { + fill: none; + stroke: #000; + stroke-width: 1.5px; + } + circle { + fill: #ccc; + stroke: #000; + stroke-width: 1.5px; + stroke-opacity: 1; + opacity: 0.75; + } + text { + fill: #000; + font: 10px sans-serif; + pointer-events: none; + } + } +`; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/controlPanel.ts new file mode 100644 index 000000000000..575507ba465c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/controlPanel.ts @@ -0,0 +1,108 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { formatSelectOptions, sections } from '@superset-ui/chart-controls'; + +export default { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['groupby'], + ['metric'], + ['adhoc_filters'], + ['row_limit'], + [ + { + name: 'sort_by_metric', + config: { + type: 'CheckboxControl', + label: t('Sort by metric'), + description: t( + 'Whether to sort results by the selected metric in descending order.', + ), + }, + }, + ], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + [ + { + name: 'link_length', + config: { + type: 'SelectControl', + renderTrigger: true, + freeForm: true, + label: t('Link Length'), + default: '200', + choices: formatSelectOptions([ + '10', + '25', + '50', + '75', + '100', + '150', + '200', + '250', + ]), + description: t('Link length in the force layout'), + }, + }, + ], + [ + { + name: 'charge', + config: { + type: 'SelectControl', + renderTrigger: true, + freeForm: true, + label: t('Charge'), + default: '-500', + choices: formatSelectOptions([ + '-50', + '-75', + '-100', + '-150', + '-200', + '-250', + '-500', + '-1000', + '-2500', + '-5000', + ]), + description: t('Charge in the force layout'), + }, + }, + ], + ], + }, + ], + controlOverrides: { + groupby: { + label: t('Source / Target'), + description: t('Choose a source and a target'), + }, + }, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/images/thumbnail.png new file mode 100644 index 000000000000..e7fad14aa59e Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..d3d30319fdf2 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/index.js new file mode 100644 index 000000000000..87eb07b45e69 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/index.js @@ -0,0 +1,41 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + credits: ['http://bl.ocks.org/d3noob/5141278'], + description: '', + name: t('Force-directed Graph'), + thumbnail, + useLegacyApi: true, +}); + +export default class ForceDirectedChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./ReactForceDirected'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/transformProps.js new file mode 100644 index 000000000000..d463407bd12a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/src/transformProps.js @@ -0,0 +1,30 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function transformProps(chartProps) { + const { width, height, formData, queriesData } = chartProps; + const { charge, linkLength } = formData; + + return { + charge, + data: queriesData[0].data, + height, + linkLength, + width, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-force-directed/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/CHANGELOG.md new file mode 100644 index 000000000000..71e540c9ba7b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-heatmap + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-heatmap diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/README.md new file mode 100644 index 000000000000..1b6d4e72b0eb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-heatmap + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-heatmap.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-heatmap) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-heatmap&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-heatmap) + +This plugin provides Heatmap for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import HeatmapChartPlugin from '@superset-ui/legacy-plugin-chart-heatmap'; + +new HeatmapChartPlugin().configure({ key: 'heatmap' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-heatmap) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/package.json new file mode 100644 index 000000000000..0a3abd0cdcff --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/package.json @@ -0,0 +1,38 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-heatmap", + "version": "0.18.25", + "description": "Superset Legacy Chart - Heatmap", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-svg-legend": "^1.x", + "d3-tip": "^0.9.1", + "prop-types": "^15.6.2" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/Heatmap.css b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/Heatmap.css new file mode 100644 index 000000000000..cf26d7b43ea6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/Heatmap.css @@ -0,0 +1,72 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +.superset-legacy-chart-heatmap { + position: relative; + top: 0; + left: 0; + height: 100%; +} + +.superset-legacy-chart-heatmap .axis text { + font: 10px sans-serif; + text-rendering: optimizeLegibility; + fill: #555; +} + +.superset-legacy-chart-heatmap .background-rect { + stroke: #ddd; + fill-opacity: 0; + pointer-events: all; +} + +.superset-legacy-chart-heatmap .axis path, +.superset-legacy-chart-heatmap .axis line { + fill: none; + stroke: #ddd; + shape-rendering: crispEdges; +} + +.superset-legacy-chart-heatmap canvas, +.superset-legacy-chart-heatmap img { + image-rendering: optimizeSpeed; /* Older versions of FF */ + image-rendering: -moz-crisp-edges; /* FF 6.0+ */ + image-rendering: -webkit-optimize-contrast; /* Safari */ + image-rendering: -o-crisp-edges; /* OS X & Windows Opera (12.02+) */ + image-rendering: pixelated; /* Awesome future-browsers */ + -ms-interpolation-mode: nearest-neighbor; /* IE */ +} + +.superset-legacy-chart-heatmap .legendCells text { + font-size: 10px; + font-weight: normal; + opacity: 0; +} + +.superset-legacy-chart-heatmap .legendCells .cell:first-child text { + opacity: 1; +} +.superset-legacy-chart-heatmap .legendCells .cell:last-child text { + opacity: 1; +} + +.dashboard .superset-legacy-chart-heatmap .axis text { + font-size: 10px; + opacity: 0.75; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/Heatmap.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/Heatmap.js new file mode 100644 index 000000000000..4626116aa8cd --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/Heatmap.js @@ -0,0 +1,455 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable func-names, react/sort-prop-types */ +import d3 from 'd3'; +import PropTypes from 'prop-types'; +import 'd3-svg-legend'; +import d3tip from 'd3-tip'; +import { + getNumberFormatter, + NumberFormats, + getSequentialSchemeRegistry, +} from '@superset-ui/core'; + +import './vendor/d3tip.css'; +import './Heatmap.css'; + +const propTypes = { + data: PropTypes.shape({ + records: PropTypes.arrayOf( + PropTypes.shape({ + x: PropTypes.string, + y: PropTypes.string, + v: PropTypes.number, + perc: PropTypes.number, + rank: PropTypes.number, + }), + ), + extents: PropTypes.arrayOf(PropTypes.number), + }), + width: PropTypes.number, + height: PropTypes.number, + bottomMargin: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), + colorScheme: PropTypes.string, + columnX: PropTypes.string, + columnY: PropTypes.string, + leftMargin: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), + metric: PropTypes.oneOfType([PropTypes.string, PropTypes.object]), + normalized: PropTypes.bool, + numberFormat: PropTypes.string, + showLegend: PropTypes.bool, + showPercentage: PropTypes.bool, + showValues: PropTypes.bool, + sortXAxis: PropTypes.string, + sortYAxis: PropTypes.string, + xScaleInterval: PropTypes.number, + yScaleInterval: PropTypes.number, + yAxisBounds: PropTypes.arrayOf(PropTypes.number), +}; + +function cmp(a, b) { + return a > b ? 1 : -1; +} + +const DEFAULT_PROPERTIES = { + minChartWidth: 150, + minChartHeight: 150, + marginLeft: 35, + marginBottom: 35, + marginTop: 10, + marginRight: 10, +}; + +// Inspired from http://bl.ocks.org/mbostock/3074470 +// https://jsfiddle.net/cyril123/h0reyumq/ +function Heatmap(element, props) { + const { + data, + width, + height, + bottomMargin, + canvasImageRendering, + colorScheme, + columnX, + columnY, + leftMargin, + metric, + normalized, + numberFormat, + showLegend, + showPercentage, + showValues, + sortXAxis, + sortYAxis, + xScaleInterval, + yScaleInterval, + yAxisBounds, + } = props; + + const { records, extents } = data; + + const margin = { + top: 10, + right: 10, + bottom: 35, + left: 35, + }; + + let showY = true; + let showX = true; + const pixelsPerCharX = 4.5; // approx, depends on font size + const pixelsPerCharY = 6; // approx, depends on font size + + const valueFormatter = getNumberFormatter(numberFormat); + + // Dynamically adjusts based on max x / y category lengths + function adjustMargins() { + let longestX = 1; + let longestY = 1; + + records.forEach(datum => { + longestX = Math.max( + longestX, + (datum.x && datum.x.toString().length) || 1, + ); + longestY = Math.max( + longestY, + (datum.y && datum.y.toString().length) || 1, + ); + }); + + if (leftMargin === 'auto') { + margin.left = Math.ceil(Math.max(margin.left, pixelsPerCharY * longestY)); + } else { + margin.left = leftMargin; + } + + if (showLegend) { + margin.right += 40; + } + + margin.bottom = + bottomMargin === 'auto' + ? Math.ceil(Math.max(margin.bottom, pixelsPerCharX * longestX)) + : bottomMargin; + } + + // Check if x axis "x" position is outside of the container and rotate labels 90deg + function checkLabelPosition(container) { + const xAxisNode = container.select('.x.axis').node(); + + if (!xAxisNode) { + return; + } + + if ( + xAxisNode.getBoundingClientRect().x + 4 < + container.node().getBoundingClientRect().x + ) { + container + .selectAll('.x.axis') + .selectAll('text') + .attr('transform', 'rotate(-90)') + .attr('x', -6) + .attr('y', 0) + .attr('dy', '0.3em'); + } + } + + function ordScale(k, rangeBands, sortMethod) { + let domain = {}; + const actualKeys = {}; // hack to preserve type of keys when number + records.forEach(d => { + domain[d[k]] = (domain[d[k]] || 0) + d.v; + actualKeys[d[k]] = d[k]; + }); + // Not usgin object.keys() as it converts to strings + const keys = Object.keys(actualKeys).map(s => actualKeys[s]); + if (sortMethod === 'alpha_asc') { + domain = keys.sort(cmp); + } else if (sortMethod === 'alpha_desc') { + domain = keys.sort(cmp).reverse(); + } else if (sortMethod === 'value_desc') { + domain = Object.keys(domain).sort((a, b) => + domain[a] > domain[b] ? -1 : 1, + ); + } else if (sortMethod === 'value_asc') { + domain = Object.keys(domain).sort((a, b) => + domain[b] > domain[a] ? -1 : 1, + ); + } + + if (k === 'y' && rangeBands) { + domain.reverse(); + } + + if (rangeBands) { + return d3.scale.ordinal().domain(domain).rangeBands(rangeBands); + } + + return d3.scale.ordinal().domain(domain).range(d3.range(domain.length)); + } + + // eslint-disable-next-line no-param-reassign + element.innerHTML = ''; + const matrix = {}; + + adjustMargins(); + + let hmWidth = width - (margin.left + margin.right); + let hmHeight = height - (margin.bottom + margin.top); + const hideYLabel = () => { + margin.left = + leftMargin === 'auto' ? DEFAULT_PROPERTIES.marginLeft : leftMargin; + hmWidth = width - (margin.left + margin.right); + showY = false; + }; + + const hideXLabel = () => { + margin.bottom = + bottomMargin === 'auto' ? DEFAULT_PROPERTIES.marginBottom : bottomMargin; + hmHeight = height - (margin.bottom + margin.top); + showX = false; + }; + + // Hide Y Labels + if (hmWidth < DEFAULT_PROPERTIES.minChartWidth) { + hideYLabel(); + } + + // Hide X Labels + if ( + hmHeight < DEFAULT_PROPERTIES.minChartHeight || + hmWidth < DEFAULT_PROPERTIES.minChartWidth + ) { + hideXLabel(); + } + + if (showY && hmHeight < DEFAULT_PROPERTIES.minChartHeight) { + hideYLabel(); + } + + const fp = getNumberFormatter(NumberFormats.PERCENT); + + const xScale = ordScale('x', null, sortXAxis); + const yScale = ordScale('y', null, sortYAxis); + const xRbScale = ordScale('x', [0, hmWidth], sortXAxis); + const yRbScale = ordScale('y', [hmHeight, 0], sortYAxis); + const X = 0; + const Y = 1; + const heatmapDim = [xRbScale.domain().length, yRbScale.domain().length]; + + const minBound = yAxisBounds[0] || 0; + const maxBound = yAxisBounds[1] || 1; + const colorScale = getSequentialSchemeRegistry() + .get(colorScheme) + .createLinearScale([minBound, maxBound]); + + const scale = [ + d3.scale.linear().domain([0, heatmapDim[X]]).range([0, hmWidth]), + d3.scale.linear().domain([0, heatmapDim[Y]]).range([0, hmHeight]), + ]; + + const container = d3.select(element); + container.classed('superset-legacy-chart-heatmap', true); + + const canvas = container + .append('canvas') + .attr('width', heatmapDim[X]) + .attr('height', heatmapDim[Y]) + .style('width', `${hmWidth}px`) + .style('height', `${hmHeight}px`) + .style('image-rendering', canvasImageRendering) + .style('left', `${margin.left}px`) + .style('top', `${margin.top}px`) + .style('position', 'absolute'); + + const svg = container + .append('svg') + .attr('width', width) + .attr('height', height) + .attr('class', 'heatmap-container') + .style('position', 'relative'); + + if (showValues) { + const cells = svg + .selectAll('rect') + .data(records) + .enter() + .append('g') + .attr('transform', `translate(${margin.left}, ${margin.top})`); + + cells + .append('text') + .attr('transform', d => `translate(${xRbScale(d.x)}, ${yRbScale(d.y)})`) + .attr('y', yRbScale.rangeBand() / 2) + .attr('x', xRbScale.rangeBand() / 2) + .attr('text-anchor', 'middle') + .attr('dy', '.35em') + .text(d => valueFormatter(d.v)) + .attr( + 'font-size', + `${Math.min(yRbScale.rangeBand(), xRbScale.rangeBand()) / 3}px`, + ) + .attr('fill', d => (d.v >= extents[1] / 2 ? 'white' : 'black')); + } + + if (showLegend) { + const colorLegend = d3.legend + .color() + .labelFormat(valueFormatter) + .scale(colorScale) + .shapePadding(0) + .cells(10) + .shapeWidth(10) + .shapeHeight(10) + .labelOffset(3); + + svg + .append('g') + .attr('transform', `translate(${width - 40}, ${margin.top})`) + .call(colorLegend); + } + + const tip = d3tip() + .attr('class', 'd3-tip') + .offset(function () { + const k = d3.mouse(this); + const x = k[0] - hmWidth / 2; + + return [k[1] - 20, x]; + }) + .html(function () { + let s = ''; + const k = d3.mouse(this); + const m = Math.floor(scale[0].invert(k[0])); + const n = Math.floor(scale[1].invert(k[1])); + const metricLabel = typeof metric === 'object' ? metric.label : metric; + if (m in matrix && n in matrix[m]) { + const obj = matrix[m][n]; + s += `
${columnX}: ${obj.x}
`; + s += `
${columnY}: ${obj.y}
`; + s += `
${metricLabel}: ${valueFormatter(obj.v)}
`; + if (showPercentage) { + s += `
%: ${fp(normalized ? obj.rank : obj.perc)}
`; + } + tip.style('display', null); + } else { + // this is a hack to hide the tooltip because we have map it to a single + // d3-tip toggles opacity and calling hide here is undone by the lib after this call + tip.style('display', 'none'); + } + + return s; + }); + + const rect = svg + .append('g') + .attr('transform', `translate(${margin.left}, ${margin.top})`) + .append('rect') + .classed('background-rect', true) + .on('mousemove', tip.show) + .on('mouseout', tip.hide) + .attr('width', hmWidth) + .attr('height', hmHeight); + + rect.call(tip); + + if (showX) { + const xAxis = d3.svg + .axis() + .scale(xRbScale) + .outerTickSize(0) + .tickValues(xRbScale.domain().filter((d, i) => !(i % xScaleInterval))) + .orient('bottom'); + + svg + .append('g') + .attr('class', 'x axis') + .attr('transform', `translate(${margin.left},${margin.top + hmHeight})`) + .call(xAxis) + .selectAll('text') + .attr('x', -4) + .attr('y', 10) + .attr('dy', '0.3em') + .style('text-anchor', 'end') + .attr('transform', 'rotate(-45)'); + } + + if (showY) { + const yAxis = d3.svg + .axis() + .scale(yRbScale) + .outerTickSize(0) + .tickValues(yRbScale.domain().filter((d, i) => !(i % yScaleInterval))) + .orient('left'); + + svg + .append('g') + .attr('class', 'y axis') + .attr('transform', `translate(${margin.left},${margin.top})`) + .call(yAxis); + } + + checkLabelPosition(container); + const context = canvas.node().getContext('2d'); + context.imageSmoothingEnabled = false; + + // Compute the pixel colors; scaled by CSS. + function createImageObj() { + const imageObj = new Image(); + const image = context.createImageData(heatmapDim[0], heatmapDim[1]); + const pixs = {}; + records.forEach(d => { + const c = d3.rgb(colorScale(normalized ? d.rank : d.perc)); + const x = xScale(d.x); + const y = yScale(d.y); + pixs[x + y * xScale.domain().length] = c; + if (matrix[x] === undefined) { + matrix[x] = {}; + } + if (matrix[x][y] === undefined) { + matrix[x][y] = d; + } + }); + + let p = 0; + for (let i = 0; i < heatmapDim[0] * heatmapDim[1]; i += 1) { + let c = pixs[i]; + let alpha = 255; + if (c === undefined) { + c = d3.rgb('#F00'); + alpha = 0; + } + image.data[p + 0] = c.r; + image.data[p + 1] = c.g; + image.data[p + 2] = c.b; + image.data[p + 3] = alpha; + p += 4; + } + context.putImageData(image, 0, 0); + imageObj.src = canvas.node().toDataURL(); + } + createImageObj(); +} + +Heatmap.displayName = 'Heatmap'; +Heatmap.propTypes = propTypes; + +export default Heatmap; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/ReactHeatmap.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/ReactHeatmap.js new file mode 100644 index 000000000000..6b98c23dca49 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/ReactHeatmap.js @@ -0,0 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { reactify } from '@superset-ui/core'; +import Component from './Heatmap'; + +export default reactify(Component); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/controlPanel.ts new file mode 100644 index 000000000000..6fb5bfd0859e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/controlPanel.ts @@ -0,0 +1,334 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + FeatureFlag, + isFeatureEnabled, + t, + validateNonEmpty, +} from '@superset-ui/core'; +import { + columnChoices, + ControlPanelConfig, + ControlPanelState, + formatSelectOptions, + formatSelectOptionsForRange, + sections, + dndEntity, +} from '@superset-ui/chart-controls'; + +const sortAxisChoices = [ + ['alpha_asc', t('Axis ascending')], + ['alpha_desc', t('Axis descending')], + ['value_asc', t('Metric ascending')], + ['value_desc', t('Metric descending')], +]; + +const allColumns = { + type: 'SelectControl', + default: null, + description: t('Columns to display'), + mapStateToProps: (state: ControlPanelState) => ({ + choices: columnChoices(state.datasource), + }), + validators: [validateNonEmpty], +}; + +const dndAllColumns = { + ...dndEntity, + description: t('Columns to display'), +}; + +const columnsConfig = isFeatureEnabled(FeatureFlag.ENABLE_EXPLORE_DRAG_AND_DROP) + ? dndAllColumns + : allColumns; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + [ + { + name: 'all_columns_x', + config: { + ...columnsConfig, + label: 'X Axis', + }, + }, + ], + [ + { + name: 'all_columns_y', + config: { + ...columnsConfig, + label: 'Y Axis', + }, + }, + ], + ['metric'], + ['adhoc_filters'], + ['row_limit'], + [ + { + name: 'sort_by_metric', + config: { + type: 'CheckboxControl', + label: t('Sort by metric'), + description: t( + 'Whether to sort results by the selected metric in descending order.', + ), + }, + }, + ], + ], + }, + { + label: t('Heatmap Options'), + expanded: true, + tabOverride: 'customize', + controlSetRows: [ + ['linear_color_scheme'], + [ + { + name: 'xscale_interval', + config: { + type: 'SelectControl', + label: t('XScale Interval'), + renderTrigger: true, + choices: formatSelectOptionsForRange(1, 50), + default: '1', + clearable: false, + description: t( + 'Number of steps to take between ticks when displaying the X scale', + ), + }, + }, + ], + [ + { + name: 'yscale_interval', + config: { + type: 'SelectControl', + label: t('YScale Interval'), + choices: formatSelectOptionsForRange(1, 50), + default: '1', + clearable: false, + renderTrigger: true, + description: t( + 'Number of steps to take between ticks when displaying the Y scale', + ), + }, + }, + ], + [ + { + name: 'canvas_image_rendering', + config: { + type: 'SelectControl', + label: t('Rendering'), + renderTrigger: true, + choices: [ + ['pixelated', 'pixelated (Sharp)'], + ['auto', 'auto (Smooth)'], + ], + default: 'pixelated', + description: t( + 'image-rendering CSS attribute of the canvas object that ' + + 'defines how the browser scales up the image', + ), + }, + }, + ], + [ + { + name: 'normalize_across', + config: { + type: 'SelectControl', + label: t('Normalize Across'), + choices: [ + ['heatmap', 'heatmap'], + ['x', 'x'], + ['y', 'y'], + ], + default: 'heatmap', + description: t( + 'Color will be rendered based on a ratio ' + + 'of the cell against the sum of across this ' + + 'criteria', + ), + }, + }, + ], + [ + { + name: 'left_margin', + config: { + type: 'SelectControl', + freeForm: true, + clearable: false, + label: t('Left Margin'), + choices: formatSelectOptions([ + 'auto', + 50, + 75, + 100, + 125, + 150, + 200, + ]), + default: 'auto', + renderTrigger: true, + description: t( + 'Left margin, in pixels, allowing for more room for axis labels', + ), + }, + }, + ], + [ + { + name: 'bottom_margin', + config: { + type: 'SelectControl', + clearable: false, + freeForm: true, + label: t('Bottom Margin'), + choices: formatSelectOptions([ + 'auto', + 50, + 75, + 100, + 125, + 150, + 200, + ]), + default: 'auto', + renderTrigger: true, + description: t( + 'Bottom margin, in pixels, allowing for more room for axis labels', + ), + }, + }, + ], + [ + { + name: 'y_axis_bounds', + config: { + type: 'BoundsControl', + label: t('Value bounds'), + renderTrigger: true, + default: [null, null], + description: t( + 'Hard value bounds applied for color coding. Is only relevant ' + + 'and applied when the normalization is applied against the whole heatmap.', + ), + }, + }, + ], + ['y_axis_format'], + [ + { + name: 'sort_x_axis', + config: { + type: 'SelectControl', + label: t('Sort X Axis'), + choices: sortAxisChoices, + clearable: false, + default: 'alpha_asc', + }, + }, + ], + [ + { + name: 'sort_y_axis', + config: { + type: 'SelectControl', + label: t('Sort Y Axis'), + choices: sortAxisChoices, + clearable: false, + default: 'alpha_asc', + }, + }, + ], + [ + { + name: 'show_legend', + config: { + type: 'CheckboxControl', + label: t('Legend'), + renderTrigger: true, + default: false, + description: t('Whether to display the legend (toggles)'), + }, + }, + ], + [ + { + name: 'show_perc', + config: { + type: 'CheckboxControl', + label: t('Show percentage'), + renderTrigger: true, + description: t( + 'Whether to include the percentage in the tooltip', + ), + default: true, + }, + }, + ], + [ + { + name: 'show_values', + config: { + type: 'CheckboxControl', + label: t('Show Values'), + renderTrigger: true, + default: false, + description: t( + 'Whether to display the numerical values within the cells', + ), + }, + }, + ], + [ + { + name: 'normalized', + config: { + type: 'CheckboxControl', + label: t('Normalized'), + renderTrigger: true, + description: t( + 'Whether to apply a normal distribution based on rank on the color scale', + ), + default: false, + }, + }, + ], + ], + }, + ], + controlOverrides: { + y_axis_format: { + label: t('Value Format'), + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/images/channels.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/images/channels.jpg new file mode 100644 index 000000000000..8f6c1b3e967e Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/images/channels.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/images/employment.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/images/employment.jpg new file mode 100644 index 000000000000..1a55ef839c13 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/images/employment.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/images/thumbnail.png new file mode 100644 index 000000000000..f1703fc9d9f8 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..1dfeabbdbb1b Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/images/transportation.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/images/transportation.jpg new file mode 100644 index 000000000000..1cf7a89cba2b Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/images/transportation.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/index.js new file mode 100644 index 000000000000..43d5b3eda0c5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/index.js @@ -0,0 +1,60 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import transportation from './images/transportation.jpg'; +import channels from './images/channels.jpg'; +import employment from './images/employment.jpg'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Correlation'), + credits: ['http://bl.ocks.org/mbostock/3074470'], + description: t( + 'Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.', + ), + exampleGallery: [ + { url: transportation, caption: t('Sizes of vehicles') }, + { url: channels, caption: t('Relationships between community channels') }, + { url: employment, caption: t('Employment and education') }, + ], + name: t('Heatmap'), + tags: [ + t('Business'), + t('Intensity'), + t('Legacy'), + t('Density'), + t('Predictive'), + t('Single Metric'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class HeatmapChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./ReactHeatmap'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/transformProps.js new file mode 100644 index 000000000000..9381250ac1a3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/transformProps.js @@ -0,0 +1,63 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function transformProps(chartProps) { + const { width, height, formData, queriesData } = chartProps; + const { + bottomMargin, + canvasImageRendering, + allColumnsX, + allColumnsY, + linearColorScheme, + leftMargin, + metric, + normalized, + showLegend, + showPerc, + showValues, + sortXAxis, + sortYAxis, + xscaleInterval, + yscaleInterval, + yAxisBounds, + yAxisFormat, + } = formData; + + return { + width, + height, + data: queriesData[0].data, + bottomMargin, + canvasImageRendering, + colorScheme: linearColorScheme, + columnX: allColumnsX, + columnY: allColumnsY, + leftMargin, + metric, + normalized, + numberFormat: yAxisFormat, + showLegend, + showPercentage: showPerc, + showValues, + sortXAxis, + sortYAxis, + xScaleInterval: parseInt(xscaleInterval, 10), + yScaleInterval: parseInt(yscaleInterval, 10), + yAxisBounds, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/vendor/d3tip.css b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/vendor/d3tip.css new file mode 100644 index 000000000000..980a5be4396e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/src/vendor/d3tip.css @@ -0,0 +1,74 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* from d3-tip */ +.d3-tip { + line-height: 1; + padding: 12px; + background: rgba(0, 0, 0, 0.8); + color: #fff; + border-radius: 2px; + pointer-events: none; + z-index: 1000; +} + +/* Creates a small triangle extender for the tooltip */ +.d3-tip:after { + box-sizing: border-box; + display: inline; + font-size: 10px; + width: 100%; + line-height: 1; + color: rgba(0, 0, 0, 0.8); + position: absolute; + pointer-events: none; +} + +/* Northward tooltips */ +.d3-tip.n:after { + content: '\25BC'; + margin: -1px 0 0 0; + top: 100%; + left: 0; + text-align: center; +} + +/* Eastward tooltips */ +.d3-tip.e:after { + content: '\25C0'; + margin: -4px 0 0 0; + top: 50%; + left: -8px; +} + +/* Southward tooltips */ +.d3-tip.s:after { + content: '\25B2'; + margin: 0 0 1px 0; + top: -8px; + left: 0; + text-align: center; +} + +/* Westward tooltips */ +.d3-tip.w:after { + content: '\25B6'; + margin: -4px 0 0 -1px; + top: 50%; + left: 100%; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-heatmap/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/CHANGELOG.md new file mode 100644 index 000000000000..a7ae495394c9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-histogram + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-histogram diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/README.md new file mode 100644 index 000000000000..dd2c0ef9e039 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-histogram + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-histogram.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-histogram) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-histogram&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-histogram) + +This plugin provides Histogram for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import HistogramChartPlugin from '@superset-ui/legacy-plugin-chart-histogram'; + +new HistogramChartPlugin().configure({ key: 'histogram' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-histogram) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/package.json new file mode 100644 index 000000000000..be81f8016e6b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/package.json @@ -0,0 +1,43 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-histogram", + "version": "0.18.25", + "description": "Superset Legacy Chart - Histogram", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@data-ui/histogram": "^0.0.84", + "@data-ui/theme": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@vx/legend": "^0.0.198", + "@vx/responsive": "^0.0.199", + "@vx/scale": "^0.0.197", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^15 || ^16" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx new file mode 100644 index 000000000000..b231b0ae6ea6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx @@ -0,0 +1,157 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/sort-prop-types */ +import PropTypes from 'prop-types'; +import React from 'react'; +import { Histogram, BarSeries, XAxis, YAxis } from '@data-ui/histogram'; +import { chartTheme } from '@data-ui/theme'; +import { LegendOrdinal } from '@vx/legend'; +import { scaleOrdinal } from '@vx/scale'; +import { CategoricalColorNamespace, styled, t } from '@superset-ui/core'; +import WithLegend from './WithLegend'; + +const propTypes = { + className: PropTypes.string, + data: PropTypes.arrayOf( + PropTypes.shape({ + key: PropTypes.string, + values: PropTypes.arrayOf(PropTypes.number), + }), + ).isRequired, + width: PropTypes.number.isRequired, + height: PropTypes.number.isRequired, + colorScheme: PropTypes.string, + normalized: PropTypes.bool, + cumulative: PropTypes.bool, + binCount: PropTypes.number, + opacity: PropTypes.number, + xAxisLabel: PropTypes.string, + yAxisLabel: PropTypes.string, + showLegend: PropTypes.bool, +}; +const defaultProps = { + binCount: 15, + className: '', + colorScheme: '', + normalized: false, + cumulative: false, + opacity: 1, + xAxisLabel: '', + yAxisLabel: '', +}; + +class CustomHistogram extends React.PureComponent { + render() { + const { + className, + data, + width, + height, + binCount, + colorScheme, + normalized, + cumulative, + opacity, + xAxisLabel, + yAxisLabel, + showLegend, + } = this.props; + + const colorFn = CategoricalColorNamespace.getScale(colorScheme); + const keys = data.map(d => d.key); + const colorScale = scaleOrdinal({ + domain: keys, + range: keys.map(x => colorFn(x)), + }); + + return ( + + showLegend && ( + + ) + } + renderChart={parent => ( + ( +
+ + {datum.bin0} to {datum.bin1} + +
+ {t('count')} + {datum.count} +
+
+ {t('cumulative')} + {datum.cumulative} +
+
+ {t('percentile (exclusive)')} + {`{((datum.cumulativeDensity - datum.density) * 100).toPrecision(4)}th`} +
+
+ )} + valueAccessor={datum => datum} + theme={chartTheme} + > + {data.map(series => ( + + ))} + + +
+ )} + /> + ); + } +} + +CustomHistogram.propTypes = propTypes; +CustomHistogram.defaultProps = defaultProps; + +export default styled(CustomHistogram)` + .superset-legacy-chart-histogram { + overflow: hidden; + } +`; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/WithLegend.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/WithLegend.jsx new file mode 100644 index 000000000000..d70c20b12448 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/WithLegend.jsx @@ -0,0 +1,153 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/sort-prop-types, react/jsx-sort-default-props */ +import React from 'react'; +import PropTypes from 'prop-types'; +import { ParentSize } from '@vx/responsive'; + +const propTypes = { + className: PropTypes.string, + width: PropTypes.oneOfType([PropTypes.number, PropTypes.string]), + height: PropTypes.oneOfType([PropTypes.number, PropTypes.string]), + renderChart: PropTypes.func.isRequired, + renderLegend: PropTypes.func.isRequired, + position: PropTypes.oneOf(['top', 'left', 'bottom', 'right']), + legendJustifyContent: PropTypes.oneOf(['center', 'flex-start', 'flex-end']), +}; +const defaultProps = { + className: '', + width: 'auto', + height: 'auto', + position: 'top', + legendJustifyContent: undefined, +}; + +const LEGEND_STYLE_BASE = { + display: 'flex', + flexGrow: 0, + flexShrink: 0, + order: -1, + paddingTop: '5px', + fontSize: '0.9em', +}; + +const CHART_STYLE_BASE = { + flexGrow: 1, + flexShrink: 1, + flexBasis: 'auto', + position: 'relative', +}; + +class WithLegend extends React.Component { + getContainerDirection() { + const { position } = this.props; + switch (position) { + case 'left': + return 'row'; + case 'right': + return 'row-reverse'; + case 'bottom': + return 'column-reverse'; + default: + case 'top': + return 'column'; + } + } + + getLegendJustifyContent() { + const { legendJustifyContent, position } = this.props; + if (legendJustifyContent) { + return legendJustifyContent; + } + switch (position) { + case 'left': + return 'flex-start'; + case 'right': + return 'flex-start'; + case 'bottom': + return 'flex-end'; + default: + case 'top': + return 'flex-end'; + } + } + + render() { + const { className, width, height, position, renderChart, renderLegend } = + this.props; + + const isHorizontal = position === 'left' || position === 'right'; + + const style = { + display: 'flex', + flexDirection: this.getContainerDirection(), + }; + if (width) { + style.width = width; + } + if (height) { + style.height = height; + } + + const chartStyle = { ...CHART_STYLE_BASE }; + if (isHorizontal) { + chartStyle.width = 0; + } else { + chartStyle.height = 0; + } + + const legendDirection = isHorizontal ? 'column' : 'row'; + const legendStyle = { + ...LEGEND_STYLE_BASE, + flexDirection: legendDirection, + justifyContent: this.getLegendJustifyContent(), + }; + const legendContainerStyle = { + flexWrap: 'wrap', + display: 'flex', + flexDirection: legendDirection, + }; + return ( +
+
+ {renderLegend({ + // Pass flexDirection for @vx/legend to arrange legend items + direction: legendDirection, + style: legendContainerStyle, + })} +
+
+ + {parent => + parent.width > 0 && parent.height > 0 + ? // Only render when necessary + renderChart(parent) + : null + } + +
+
+ ); + } +} + +WithLegend.propTypes = propTypes; +WithLegend.defaultProps = defaultProps; + +export default WithLegend; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts new file mode 100644 index 000000000000..b049cb78398f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts @@ -0,0 +1,164 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + FeatureFlag, + isFeatureEnabled, + t, + validateNonEmpty, +} from '@superset-ui/core'; +import { + columnChoices, + ControlPanelConfig, + ControlPanelState, + formatSelectOptions, + sections, + dndColumnsControl, +} from '@superset-ui/chart-controls'; + +const allColumns = { + type: 'SelectControl', + label: t('Columns'), + default: null, + description: t('Select the numeric columns to draw the histogram'), + mapStateToProps: (state: ControlPanelState) => ({ + choices: columnChoices(state.datasource), + }), + multi: true, + validators: [validateNonEmpty], +}; + +const dndAllColumns = { + ...dndColumnsControl, + description: t('Select the numeric columns to draw the histogram'), + validators: [validateNonEmpty], +}; + +const columnsConfig = isFeatureEnabled(FeatureFlag.ENABLE_EXPLORE_DRAG_AND_DROP) + ? dndAllColumns + : allColumns; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + [ + { + name: 'all_columns_x', + config: columnsConfig, + }, + ], + ['adhoc_filters'], + ['row_limit'], + ['groupby'], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + [ + { + name: 'link_length', + config: { + type: 'SelectControl', + renderTrigger: true, + freeForm: true, + label: t('No of Bins'), + default: 5, + choices: formatSelectOptions([ + '10', + '25', + '50', + '75', + '100', + '150', + '200', + '250', + ]), + description: t('Select the number of bins for the histogram'), + }, + }, + ], + [ + { + name: 'x_axis_label', + config: { + type: 'TextControl', + label: t('X Axis Label'), + renderTrigger: true, + default: '', + }, + }, + ], + [ + { + name: 'y_axis_label', + config: { + type: 'TextControl', + label: t('Y Axis Label'), + renderTrigger: true, + default: '', + }, + }, + ], + [ + { + name: 'show_legend', + config: { + type: 'CheckboxControl', + label: t('Legend'), + renderTrigger: true, + default: false, + description: t('Whether to display the legend (toggles)'), + }, + }, + ], + [ + { + name: 'normalized', + config: { + type: 'CheckboxControl', + label: t('Normalized'), + renderTrigger: true, + description: t('Whether to normalize the histogram'), + default: false, + }, + }, + ], + [ + { + name: 'cumulative', + config: { + type: 'CheckboxControl', + label: t('Cumulative'), + renderTrigger: true, + description: t('Whether to make the histogram cumulative'), + default: false, + }, + }, + ], + ], + }, + ], +}; +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/images/example1.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/images/example1.jpg new file mode 100644 index 000000000000..9bfacc4da589 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/images/example1.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/images/example2.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/images/example2.jpg new file mode 100644 index 000000000000..b4a55095d135 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/images/example2.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/images/example3.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/images/example3.jpg new file mode 100644 index 000000000000..61006e5e17cf Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/images/example3.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/images/thumbnail.png new file mode 100644 index 000000000000..22e5ea4243fb Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..3c63c0eb5291 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/index.js new file mode 100644 index 000000000000..e14ab372c0c0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/index.js @@ -0,0 +1,52 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import example1 from './images/example1.jpg'; +import example2 from './images/example2.jpg'; +import example3 from './images/example3.jpg'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Distribution'), + description: t( + 'Take your data points, and group them into "bins" to see where the densest areas of information lie', + ), + exampleGallery: [ + { url: example1, caption: t('Population age data') }, + { url: example2 }, + { url: example3 }, + ], + name: t('Histogram'), + tags: [t('Comparison'), t('Legacy'), t('Pattern'), t('Range')], + thumbnail, + useLegacyApi: true, +}); + +export default class HistogramChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./Histogram'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/transformProps.js new file mode 100644 index 000000000000..4a5782c7172a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/src/transformProps.js @@ -0,0 +1,45 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function transformProps(chartProps) { + const { width, height, formData, queriesData } = chartProps; + const { + colorScheme, + linkLength, + normalized, + cumulative, + globalOpacity, + xAxisLabel, + yAxisLabel, + showLegend, + } = formData; + + return { + width, + height, + data: queriesData[0].data, + binCount: parseInt(linkLength, 10), + colorScheme, + normalized, + cumulative, + opacity: globalOpacity, + xAxisLabel, + yAxisLabel, + showLegend, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-histogram/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/CHANGELOG.md new file mode 100644 index 000000000000..fdf705c7f60c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-horizon + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-horizon diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/README.md new file mode 100644 index 000000000000..0060502e6e07 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-horizon + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-horizon.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-horizon) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-horizon&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-horizon) + +This plugin provides Horizon for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import HorizonChartPlugin from '@superset-ui/legacy-plugin-chart-horizon'; + +new HorizonChartPlugin().configure({ key: 'horizon' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-horizon) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/package.json new file mode 100644 index 000000000000..872b321b0a55 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/package.json @@ -0,0 +1,40 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-horizon", + "version": "0.18.25", + "description": "Superset Legacy Chart - Horizon", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3-array": "^2.0.3", + "d3-scale": "^3.0.1", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^15 || ^16" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/HorizonChart.css b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/HorizonChart.css new file mode 100644 index 000000000000..bbdf6d6889b4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/HorizonChart.css @@ -0,0 +1,38 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +.superset-legacy-chart-horizon { + overflow: auto; + position: relative; +} + +.superset-legacy-chart-horizon .horizon-row { + border-bottom: solid 1px #ddd; + border-top: 0px; + padding: 0px; + margin: 0px; +} + +.superset-legacy-chart-horizon .horizon-row span.title { + position: absolute; + color: #333; + font-size: 0.8em; + margin: 0; + text-shadow: 1px 1px rgba(255, 255, 255, 0.75); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/HorizonChart.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/HorizonChart.jsx new file mode 100644 index 000000000000..b71227b6cd10 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/HorizonChart.jsx @@ -0,0 +1,113 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/jsx-sort-default-props, react/sort-prop-types */ +import React from 'react'; +import PropTypes from 'prop-types'; +import { extent as d3Extent } from 'd3-array'; +import { ensureIsArray } from '@superset-ui/core'; +import HorizonRow, { DEFAULT_COLORS } from './HorizonRow'; +import './HorizonChart.css'; + +const propTypes = { + className: PropTypes.string, + width: PropTypes.number, + height: PropTypes.number, + seriesHeight: PropTypes.number, + data: PropTypes.arrayOf( + PropTypes.shape({ + key: PropTypes.arrayOf(PropTypes.string), + values: PropTypes.arrayOf( + PropTypes.shape({ + y: PropTypes.number, + }), + ), + }), + ).isRequired, + // number of bands in each direction (positive / negative) + bands: PropTypes.number, + colors: PropTypes.arrayOf(PropTypes.string), + colorScale: PropTypes.string, + mode: PropTypes.string, + offsetX: PropTypes.number, +}; +const defaultProps = { + className: '', + width: 800, + height: 600, + seriesHeight: 20, + bands: Math.floor(DEFAULT_COLORS.length / 2), + colors: DEFAULT_COLORS, + colorScale: 'series', + mode: 'offset', + offsetX: 0, +}; + +class HorizonChart extends React.PureComponent { + render() { + const { + className, + width, + height, + data, + seriesHeight, + bands, + colors, + colorScale, + mode, + offsetX, + } = this.props; + + let yDomain; + if (colorScale === 'overall') { + const allValues = data.reduce( + (acc, current) => acc.concat(current.values), + [], + ); + yDomain = d3Extent(allValues, d => d.y); + } + + return ( +
+ {data.map(row => ( + + ))} +
+ ); + } +} + +HorizonChart.propTypes = propTypes; +HorizonChart.defaultProps = defaultProps; + +export default HorizonChart; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/HorizonRow.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/HorizonRow.jsx new file mode 100644 index 000000000000..de6570358512 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/HorizonRow.jsx @@ -0,0 +1,211 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable no-continue, no-bitwise */ +/* eslint-disable react/jsx-sort-default-props */ +/* eslint-disable react/sort-prop-types */ +import React from 'react'; +import PropTypes from 'prop-types'; +import { extent as d3Extent } from 'd3-array'; +import { scaleLinear } from 'd3-scale'; + +export const DEFAULT_COLORS = [ + '#313695', + '#4575b4', + '#74add1', + '#abd9e9', + '#fee090', + '#fdae61', + '#f46d43', + '#d73027', +]; + +const propTypes = { + className: PropTypes.string, + width: PropTypes.number, + height: PropTypes.number, + data: PropTypes.arrayOf( + PropTypes.shape({ + y: PropTypes.number, + }), + ).isRequired, + bands: PropTypes.number, + colors: PropTypes.arrayOf(PropTypes.string), + colorScale: PropTypes.string, + mode: PropTypes.string, + offsetX: PropTypes.number, + title: PropTypes.string, + yDomain: PropTypes.arrayOf(PropTypes.number), +}; + +const defaultProps = { + className: '', + width: 800, + height: 20, + bands: DEFAULT_COLORS.length >> 1, + colors: DEFAULT_COLORS, + colorScale: 'series', + mode: 'offset', + offsetX: 0, + title: '', + yDomain: undefined, +}; + +class HorizonRow extends React.PureComponent { + componentDidMount() { + this.drawChart(); + } + + componentDidUpdate() { + this.drawChart(); + } + + componentWillUnmount() { + this.canvas = null; + } + + drawChart() { + if (this.canvas) { + const { + data: rawData, + yDomain, + width, + height, + bands, + colors, + colorScale, + offsetX, + mode, + } = this.props; + + const data = + colorScale === 'change' + ? rawData.map(d => ({ ...d, y: d.y - rawData[0].y })) + : rawData; + + const context = this.canvas.getContext('2d'); + context.imageSmoothingEnabled = false; + context.clearRect(0, 0, width, height); + // Reset transform + context.setTransform(1, 0, 0, 1, 0, 0); + context.translate(0.5, 0.5); + + const step = width / data.length; + // the data frame currently being shown: + const startIndex = Math.floor(Math.max(0, -(offsetX / step))); + const endIndex = Math.floor( + Math.min(data.length, startIndex + width / step), + ); + + // skip drawing if there's no data to be drawn + if (startIndex > data.length) { + return; + } + + // Create y-scale + const [min, max] = yDomain || d3Extent(data, d => d.y); + const y = scaleLinear() + .domain([0, Math.max(-min, max)]) + .range([0, height]); + + // we are drawing positive & negative bands separately to avoid mutating canvas state + // http://www.html5rocks.com/en/tutorials/canvas/performance/ + let hasNegative = false; + // draw positive bands + let value; + let bExtents; + for (let b = 0; b < bands; b += 1) { + context.fillStyle = colors[bands + b]; + + // Adjust the range based on the current band index. + bExtents = (b + 1 - bands) * height; + y.range([bands * height + bExtents, bExtents]); + + // only the current data frame is being drawn i.e. what's visible: + for (let i = startIndex; i < endIndex; i += 1) { + value = data[i].y; + if (value <= 0) { + hasNegative = true; + continue; + } + if (value !== undefined) { + context.fillRect( + offsetX + i * step, + y(value), + step + 1, + y(0) - y(value), + ); + } + } + } + + // draw negative bands + if (hasNegative) { + // mirror the negative bands, by flipping the canvas + if (mode === 'offset') { + context.translate(0, height); + context.scale(1, -1); + } + + for (let b = 0; b < bands; b += 1) { + context.fillStyle = colors[bands - b - 1]; + + // Adjust the range based on the current band index. + bExtents = (b + 1 - bands) * height; + y.range([bands * height + bExtents, bExtents]); + + // only the current data frame is being drawn i.e. what's visible: + for (let ii = startIndex; ii < endIndex; ii += 1) { + value = data[ii].y; + if (value >= 0) { + continue; + } + context.fillRect( + offsetX + ii * step, + y(-value), + step + 1, + y(0) - y(-value), + ); + } + } + } + } + } + + render() { + const { className, title, width, height } = this.props; + + return ( +
+ {title} + { + this.canvas = c; + }} + width={width} + height={height} + /> +
+ ); + } +} + +HorizonRow.propTypes = propTypes; +HorizonRow.defaultProps = defaultProps; + +export default HorizonRow; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts new file mode 100644 index 000000000000..63571600d2f7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts @@ -0,0 +1,109 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + formatSelectOptions, + sections, +} from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['adhoc_filters'], + ['groupby'], + ['limit', 'timeseries_limit_metric'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: true, + description: t('Whether to sort descending or ascending'), + }, + }, + { + name: 'contribution', + config: { + type: 'CheckboxControl', + label: t('Contribution'), + default: false, + description: t('Compute the contribution to the total'), + }, + }, + ], + ['row_limit', null], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + [ + { + name: 'series_height', + config: { + type: 'SelectControl', + renderTrigger: true, + freeForm: true, + label: t('Series Height'), + default: '25', + choices: formatSelectOptions([ + '10', + '25', + '40', + '50', + '75', + '100', + '150', + '200', + ]), + description: t('Pixel height of each series'), + }, + }, + { + name: 'horizon_color_scale', + config: { + type: 'SelectControl', + renderTrigger: true, + label: t('Value Domain'), + choices: [ + ['series', 'series'], + ['overall', 'overall'], + ['change', 'change'], + ], + default: 'series', + description: t( + 'series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series', + ), + }, + }, + ], + ], + }, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/images/Horizon_Chart.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/images/Horizon_Chart.jpg new file mode 100644 index 000000000000..7d9a2be4957a Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/images/Horizon_Chart.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/images/thumbnail.png new file mode 100644 index 000000000000..6e2c5c0e906f Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..f091dd8f0939 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/index.js new file mode 100644 index 000000000000..ef784307cf0b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/index.js @@ -0,0 +1,47 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import example from './images/Horizon_Chart.jpg'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Distribution'), + credits: ['http://kmandov.github.io/d3-horizon-chart/'], + description: t( + 'Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.', + ), + exampleGallery: [{ url: example }], + name: t('Horizon Chart'), + tags: [t('Legacy')], + thumbnail, + useLegacyApi: true, +}); + +export default class HorizonChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./HorizonChart'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/transformProps.js new file mode 100644 index 000000000000..9fba63a88a5c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/src/transformProps.js @@ -0,0 +1,30 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function transformProps(chartProps) { + const { height, width, formData, queriesData } = chartProps; + const { horizonColorScale, seriesHeight } = formData; + + return { + colorScale: horizonColorScale, + data: queriesData[0].data, + height, + seriesHeight: parseInt(seriesHeight, 10), + width, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-horizon/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/CHANGELOG.md new file mode 100644 index 000000000000..1c50b792bcae --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-map-box + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-map-box diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/README.md new file mode 100644 index 000000000000..0f79f20b201f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-map-box + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-map-box.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-map-box) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-map-box&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-map-box) + +This plugin provides MapBox for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import MapBoxChartPlugin from '@superset-ui/legacy-plugin-chart-map-box'; + +new MapBoxChartPlugin().configure({ key: 'map-box' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-map-box) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/package.json new file mode 100644 index 000000000000..e61469a6dda6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/package.json @@ -0,0 +1,42 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-map-box", + "version": "0.18.25", + "description": "Superset Legacy Chart - MapBox", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "mapbox-gl": "^0.53.0", + "prop-types": "^15.6.2", + "react-map-gl": "^4.0.10", + "supercluster": "^4.1.1", + "viewport-mercator-project": "^6.1.1" + }, + "peerDependencies": { + "react": "^15 || ^16" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/MapBox.css b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/MapBox.css new file mode 100644 index 000000000000..adade29f5898 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/MapBox.css @@ -0,0 +1,21 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +.mapbox .slice_container div { + padding-top: 0px; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/MapBox.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/MapBox.jsx new file mode 100644 index 000000000000..6fe4a24eab67 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/MapBox.jsx @@ -0,0 +1,157 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/jsx-sort-default-props, react/sort-prop-types */ +/* eslint-disable react/forbid-prop-types, react/require-default-props */ +import React from 'react'; +import PropTypes from 'prop-types'; +import MapGL from 'react-map-gl'; +import ViewportMercator from 'viewport-mercator-project'; +import ScatterPlotGlowOverlay from './ScatterPlotGlowOverlay'; +import './MapBox.css'; + +const NOOP = () => {}; +export const DEFAULT_MAX_ZOOM = 16; +export const DEFAULT_POINT_RADIUS = 60; + +const propTypes = { + width: PropTypes.number, + height: PropTypes.number, + aggregatorName: PropTypes.string, + clusterer: PropTypes.object, + globalOpacity: PropTypes.number, + hasCustomMetric: PropTypes.bool, + mapStyle: PropTypes.string, + mapboxApiKey: PropTypes.string.isRequired, + onViewportChange: PropTypes.func, + pointRadius: PropTypes.number, + pointRadiusUnit: PropTypes.string, + renderWhileDragging: PropTypes.bool, + rgb: PropTypes.array, + bounds: PropTypes.array, +}; + +const defaultProps = { + width: 400, + height: 400, + globalOpacity: 1, + onViewportChange: NOOP, + pointRadius: DEFAULT_POINT_RADIUS, + pointRadiusUnit: 'Pixels', +}; + +class MapBox extends React.Component { + constructor(props) { + super(props); + + const { width, height, bounds } = this.props; + // Get a viewport that fits the given bounds, which all marks to be clustered. + // Derive lat, lon and zoom from this viewport. This is only done on initial + // render as the bounds don't update as we pan/zoom in the current design. + const mercator = new ViewportMercator({ + width, + height, + }).fitBounds(bounds); + const { latitude, longitude, zoom } = mercator; + + this.state = { + viewport: { + longitude, + latitude, + zoom, + }, + }; + this.handleViewportChange = this.handleViewportChange.bind(this); + } + + handleViewportChange(viewport) { + this.setState({ viewport }); + const { onViewportChange } = this.props; + onViewportChange(viewport); + } + + render() { + const { + width, + height, + aggregatorName, + clusterer, + globalOpacity, + mapStyle, + mapboxApiKey, + pointRadius, + pointRadiusUnit, + renderWhileDragging, + rgb, + hasCustomMetric, + bounds, + } = this.props; + const { viewport } = this.state; + const isDragging = + viewport.isDragging === undefined ? false : viewport.isDragging; + + // Compute the clusters based on the original bounds and current zoom level. Note when zoom/pan + // to an area outside of the original bounds, no additional queries are made to the backend to + // retrieve additional data. + // add this variable to widen the visible area + const offsetHorizontal = (width * 0.5) / 100; + const offsetVertical = (height * 0.5) / 100; + const bbox = [ + bounds[0][0] - offsetHorizontal, + bounds[0][1] - offsetVertical, + bounds[1][0] + offsetHorizontal, + bounds[1][1] + offsetVertical, + ]; + const clusters = clusterer.getClusters(bbox, Math.round(viewport.zoom)); + + return ( + + { + const { coordinates } = location.geometry; + + return [coordinates[0], coordinates[1]]; + }} + /> + + ); + } +} + +MapBox.propTypes = propTypes; +MapBox.defaultProps = defaultProps; + +export default MapBox; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/ScatterPlotGlowOverlay.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/ScatterPlotGlowOverlay.jsx new file mode 100644 index 000000000000..cfbd880f05d0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/ScatterPlotGlowOverlay.jsx @@ -0,0 +1,280 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/require-default-props */ +import PropTypes from 'prop-types'; +import React from 'react'; +import { CanvasOverlay } from 'react-map-gl'; +import { kmToPixels, MILES_PER_KM } from './utils/geo'; +import roundDecimal from './utils/roundDecimal'; +import luminanceFromRGB from './utils/luminanceFromRGB'; +import 'mapbox-gl/dist/mapbox-gl.css'; + +const propTypes = { + aggregation: PropTypes.string, + compositeOperation: PropTypes.string, + dotRadius: PropTypes.number, + lngLatAccessor: PropTypes.func, + locations: PropTypes.arrayOf(PropTypes.object).isRequired, + pointRadiusUnit: PropTypes.string, + renderWhileDragging: PropTypes.bool, + rgb: PropTypes.arrayOf( + PropTypes.oneOfType([PropTypes.string, PropTypes.number]), + ), + zoom: PropTypes.number, +}; + +const defaultProps = { + // Same as browser default. + compositeOperation: 'source-over', + dotRadius: 4, + lngLatAccessor: location => [location[0], location[1]], + renderWhileDragging: true, +}; + +const computeClusterLabel = (properties, aggregation) => { + const count = properties.point_count; + if (!aggregation) { + return count; + } + if (aggregation === 'sum' || aggregation === 'min' || aggregation === 'max') { + return properties[aggregation]; + } + const { sum } = properties; + const mean = sum / count; + if (aggregation === 'mean') { + return Math.round(100 * mean) / 100; + } + const { squaredSum } = properties; + const variance = squaredSum / count - (sum / count) ** 2; + if (aggregation === 'var') { + return Math.round(100 * variance) / 100; + } + if (aggregation === 'stdev') { + return Math.round(100 * Math.sqrt(variance)) / 100; + } + + // fallback to point_count, this really shouldn't happen + return count; +}; + +class ScatterPlotGlowOverlay extends React.PureComponent { + constructor(props) { + super(props); + this.redraw = this.redraw.bind(this); + } + + drawText(ctx, pixel, options = {}) { + const IS_DARK_THRESHOLD = 110; + const { + fontHeight = 0, + label = '', + radius = 0, + rgb = [0, 0, 0], + shadow = false, + } = options; + const maxWidth = radius * 1.8; + const luminance = luminanceFromRGB(rgb[1], rgb[2], rgb[3]); + + ctx.globalCompositeOperation = 'source-over'; + ctx.fillStyle = luminance <= IS_DARK_THRESHOLD ? 'white' : 'black'; + ctx.font = `${fontHeight}px sans-serif`; + ctx.textAlign = 'center'; + ctx.textBaseline = 'middle'; + if (shadow) { + ctx.shadowBlur = 15; + ctx.shadowColor = luminance <= IS_DARK_THRESHOLD ? 'black' : ''; + } + + const textWidth = ctx.measureText(label).width; + if (textWidth > maxWidth) { + const scale = fontHeight / textWidth; + ctx.font = `${scale * maxWidth}px sans-serif`; + } + + const { compositeOperation } = this.props; + + ctx.fillText(label, pixel[0], pixel[1]); + ctx.globalCompositeOperation = compositeOperation; + ctx.shadowBlur = 0; + ctx.shadowColor = ''; + } + + // Modified: https://github.com/uber/react-map-gl/blob/master/overlays/scatterplot.react.js + redraw({ width, height, ctx, isDragging, project }) { + const { + aggregation, + compositeOperation, + dotRadius, + lngLatAccessor, + locations, + pointRadiusUnit, + renderWhileDragging, + rgb, + zoom, + } = this.props; + + const radius = dotRadius; + const clusterLabelMap = []; + + locations.forEach((location, i) => { + if (location.properties.cluster) { + clusterLabelMap[i] = computeClusterLabel( + location.properties, + aggregation, + ); + } + }, this); + + const maxLabel = Math.max(...clusterLabelMap.filter(v => !Number.isNaN(v))); + + ctx.clearRect(0, 0, width, height); + ctx.globalCompositeOperation = compositeOperation; + + if ((renderWhileDragging || !isDragging) && locations) { + locations.forEach(function _forEach(location, i) { + const pixel = project(lngLatAccessor(location)); + const pixelRounded = [ + roundDecimal(pixel[0], 1), + roundDecimal(pixel[1], 1), + ]; + + if ( + pixelRounded[0] + radius >= 0 && + pixelRounded[0] - radius < width && + pixelRounded[1] + radius >= 0 && + pixelRounded[1] - radius < height + ) { + ctx.beginPath(); + if (location.properties.cluster) { + let clusterLabel = clusterLabelMap[i]; + const scaledRadius = roundDecimal( + (clusterLabel / maxLabel) ** 0.5 * radius, + 1, + ); + const fontHeight = roundDecimal(scaledRadius * 0.5, 1); + const [x, y] = pixelRounded; + const gradient = ctx.createRadialGradient( + x, + y, + scaledRadius, + x, + y, + 0, + ); + + gradient.addColorStop( + 1, + `rgba(${rgb[1]}, ${rgb[2]}, ${rgb[3]}, 0.8)`, + ); + gradient.addColorStop( + 0, + `rgba(${rgb[1]}, ${rgb[2]}, ${rgb[3]}, 0)`, + ); + ctx.arc( + pixelRounded[0], + pixelRounded[1], + scaledRadius, + 0, + Math.PI * 2, + ); + ctx.fillStyle = gradient; + ctx.fill(); + + if (Number.isFinite(parseFloat(clusterLabel))) { + if (clusterLabel >= 10000) { + clusterLabel = `${Math.round(clusterLabel / 1000)}k`; + } else if (clusterLabel >= 1000) { + clusterLabel = `${Math.round(clusterLabel / 100) / 10}k`; + } + this.drawText(ctx, pixelRounded, { + fontHeight, + label: clusterLabel, + radius: scaledRadius, + rgb, + shadow: true, + }); + } + } else { + const defaultRadius = radius / 6; + const radiusProperty = location.properties.radius; + const pointMetric = location.properties.metric; + let pointRadius = + radiusProperty === null ? defaultRadius : radiusProperty; + let pointLabel; + + if (radiusProperty !== null) { + const pointLatitude = lngLatAccessor(location)[1]; + if (pointRadiusUnit === 'Kilometers') { + pointLabel = `${roundDecimal(pointRadius, 2)}km`; + pointRadius = kmToPixels(pointRadius, pointLatitude, zoom); + } else if (pointRadiusUnit === 'Miles') { + pointLabel = `${roundDecimal(pointRadius, 2)}mi`; + pointRadius = kmToPixels( + pointRadius * MILES_PER_KM, + pointLatitude, + zoom, + ); + } + } + + if (pointMetric !== null) { + pointLabel = Number.isFinite(parseFloat(pointMetric)) + ? roundDecimal(pointMetric, 2) + : pointMetric; + } + + // Fall back to default points if pointRadius wasn't a numerical column + if (!pointRadius) { + pointRadius = defaultRadius; + } + + ctx.arc( + pixelRounded[0], + pixelRounded[1], + roundDecimal(pointRadius, 1), + 0, + Math.PI * 2, + ); + ctx.fillStyle = `rgb(${rgb[1]}, ${rgb[2]}, ${rgb[3]})`; + ctx.fill(); + + if (pointLabel !== undefined) { + this.drawText(ctx, pixelRounded, { + fontHeight: roundDecimal(pointRadius, 1), + label: pointLabel, + radius: pointRadius, + rgb, + shadow: false, + }); + } + } + } + }, this); + } + } + + render() { + return ; + } +} + +ScatterPlotGlowOverlay.propTypes = propTypes; +ScatterPlotGlowOverlay.defaultProps = defaultProps; + +export default ScatterPlotGlowOverlay; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts new file mode 100644 index 000000000000..1e0dbf3ff47e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts @@ -0,0 +1,331 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { FeatureFlag, isFeatureEnabled, t } from '@superset-ui/core'; +import { + columnChoices, + ControlPanelConfig, + ControlPanelState, + formatSelectOptions, + sections, + dndEntity, +} from '@superset-ui/chart-controls'; + +const allColumns = { + type: 'SelectControl', + default: null, + mapStateToProps: (state: ControlPanelState) => ({ + choices: columnChoices(state.datasource), + }), +}; + +const columnsConfig = isFeatureEnabled(FeatureFlag.ENABLE_EXPLORE_DRAG_AND_DROP) + ? dndEntity + : allColumns; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + [ + { + name: 'all_columns_x', + config: { + ...columnsConfig, + label: t('Longitude'), + description: t('Column containing longitude data'), + }, + }, + ], + [ + { + name: 'all_columns_y', + config: { + ...columnsConfig, + label: t('Latitude'), + description: t('Column containing latitude data'), + }, + }, + ], + [ + { + name: 'clustering_radius', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Clustering Radius'), + default: '60', + choices: formatSelectOptions([ + '0', + '20', + '40', + '60', + '80', + '100', + '200', + '500', + '1000', + ]), + description: t( + 'The radius (in pixels) the algorithm uses to define a cluster. ' + + 'Choose 0 to turn off clustering, but beware that a large ' + + 'number of points (>1000) will cause lag.', + ), + }, + }, + ], + ['row_limit'], + ['adhoc_filters'], + ['groupby'], + ], + }, + { + label: t('Points'), + controlSetRows: [ + [ + { + name: 'point_radius', + config: { + type: 'SelectControl', + label: t('Point Radius'), + default: 'Auto', + description: t( + 'The radius of individual points (ones that are not in a cluster). ' + + 'Either a numerical column or `Auto`, which scales the point based ' + + 'on the largest cluster', + ), + mapStateToProps: state => { + const datasourceChoices = columnChoices(state.datasource); + const choices: [string, string][] = formatSelectOptions([ + 'Auto', + ]); + return { + choices: choices.concat(datasourceChoices), + }; + }, + }, + }, + ], + [ + { + name: 'point_radius_unit', + config: { + type: 'SelectControl', + label: t('Point Radius Unit'), + default: 'Pixels', + choices: formatSelectOptions(['Pixels', 'Miles', 'Kilometers']), + description: t( + 'The unit of measure for the specified point radius', + ), + }, + }, + ], + ], + }, + { + label: t('Labelling'), + controlSetRows: [ + [ + { + name: 'mapbox_label', + config: { + type: 'SelectControl', + multi: true, + label: t('label'), + default: [], + description: t( + '`count` is COUNT(*) if a group by is used. ' + + 'Numerical columns will be aggregated with the aggregator. ' + + 'Non-numerical columns will be used to label points. ' + + 'Leave empty to get a count of points in each cluster.', + ), + mapStateToProps: state => ({ + choices: columnChoices(state.datasource), + }), + }, + }, + ], + [ + { + name: 'pandas_aggfunc', + config: { + type: 'SelectControl', + label: t('Cluster label aggregator'), + clearable: false, + choices: formatSelectOptions([ + 'sum', + 'mean', + 'min', + 'max', + 'std', + 'var', + ]), + default: 'sum', + description: t( + 'Aggregate function applied to the list of points ' + + 'in each cluster to produce the cluster label.', + ), + }, + }, + ], + ], + }, + { + label: t('Visual Tweaks'), + controlSetRows: [ + [ + { + name: 'render_while_dragging', + config: { + type: 'CheckboxControl', + label: t('Live render'), + default: true, + description: t( + 'Points and clusters will update as the viewport is being changed', + ), + }, + }, + ], + [ + { + name: 'mapbox_style', + config: { + type: 'SelectControl', + label: t('Map Style'), + clearable: false, + renderTrigger: true, + choices: [ + ['mapbox://styles/mapbox/streets-v9', 'Streets'], + ['mapbox://styles/mapbox/dark-v9', 'Dark'], + ['mapbox://styles/mapbox/light-v9', 'Light'], + [ + 'mapbox://styles/mapbox/satellite-streets-v9', + 'Satellite Streets', + ], + ['mapbox://styles/mapbox/satellite-v9', 'Satellite'], + ['mapbox://styles/mapbox/outdoors-v9', 'Outdoors'], + ], + default: 'mapbox://styles/mapbox/light-v9', + description: t('Base layer map style'), + }, + }, + ], + [ + { + name: 'global_opacity', + config: { + type: 'TextControl', + label: t('Opacity'), + default: 1, + isFloat: true, + description: t( + 'Opacity of all clusters, points, and labels. Between 0 and 1.', + ), + }, + }, + ], + [ + { + name: 'mapbox_color', + config: { + type: 'SelectControl', + freeForm: true, + label: t('RGB Color'), + default: 'rgb(0, 122, 135)', + choices: [ + ['rgb(0, 139, 139)', 'Dark Cyan'], + ['rgb(128, 0, 128)', 'Purple'], + ['rgb(255, 215, 0)', 'Gold'], + ['rgb(69, 69, 69)', 'Dim Gray'], + ['rgb(220, 20, 60)', 'Crimson'], + ['rgb(34, 139, 34)', 'Forest Green'], + ], + description: t('The color for points and clusters in RGB'), + }, + }, + ], + ], + }, + { + label: t('Viewport'), + expanded: true, + controlSetRows: [ + [ + { + name: 'viewport_longitude', + config: { + type: 'TextControl', + label: t('Default longitude'), + renderTrigger: true, + default: -122.405293, + isFloat: true, + description: t('Longitude of default viewport'), + places: 8, + // Viewport longitude changes shouldn't prompt user to re-run query + dontRefreshOnChange: true, + }, + }, + { + name: 'viewport_latitude', + config: { + type: 'TextControl', + label: t('Default latitude'), + renderTrigger: true, + default: 37.772123, + isFloat: true, + description: t('Latitude of default viewport'), + places: 8, + // Viewport latitude changes shouldn't prompt user to re-run query + dontRefreshOnChange: true, + }, + }, + ], + [ + { + name: 'viewport_zoom', + config: { + type: 'TextControl', + label: t('Zoom'), + renderTrigger: true, + isFloat: true, + default: 11, + description: t('Zoom level of the map'), + places: 8, + // Viewport zoom shouldn't prompt user to re-run query + dontRefreshOnChange: true, + }, + }, + null, + ], + ], + }, + ], + controlOverrides: { + groupby: { + description: t( + 'One or many controls to group by. If grouping, latitude ' + + 'and longitude columns must be present.', + ), + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/images/MapBox.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/images/MapBox.jpg new file mode 100644 index 000000000000..1575b95bf989 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/images/MapBox.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/images/MapBox2.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/images/MapBox2.jpg new file mode 100644 index 000000000000..17fe3269c9e5 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/images/MapBox2.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/images/thumbnail.png new file mode 100644 index 000000000000..c05e3bcf52f1 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..d19b1b579736 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/index.js new file mode 100644 index 000000000000..f422efafc88a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/index.js @@ -0,0 +1,55 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import thumbnail from './images/thumbnail.png'; +import example1 from './images/MapBox.jpg'; +import example2 from './images/MapBox2.jpg'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Map'), + credits: ['https://www.mapbox.com/mapbox-gl-js/api/'], + description: '', + exampleGallery: [ + { url: example1, description: t('Light mode') }, + { url: example2, description: t('Dark mode') }, + ], + name: t('MapBox'), + tags: [ + t('Business'), + t('Intensity'), + t('Legacy'), + t('Density'), + t('Scatter'), + t('Transformable'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class MapBoxChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./MapBox'), + loadTransformProps: () => import('./transformProps'), + metadata, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/transformProps.js new file mode 100644 index 000000000000..bf5fed5cafdc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/transformProps.js @@ -0,0 +1,98 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import supercluster from 'supercluster'; +import { DEFAULT_POINT_RADIUS, DEFAULT_MAX_ZOOM } from './MapBox'; + +const NOOP = () => {}; + +export default function transformProps(chartProps) { + const { width, height, formData, hooks, queriesData } = chartProps; + const { onError = NOOP, setControlValue = NOOP } = hooks; + const { bounds, geoJSON, hasCustomMetric, mapboxApiKey } = + queriesData[0].data; + const { + clusteringRadius, + globalOpacity, + mapboxColor, + mapboxStyle, + pandasAggfunc, + pointRadius, + pointRadiusUnit, + renderWhileDragging, + } = formData; + + // Validate mapbox color + const rgb = /^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/.exec(mapboxColor); + if (rgb === null) { + onError("Color field must be of form 'rgb(%d, %d, %d)'"); + + return {}; + } + + const opts = { + maxZoom: DEFAULT_MAX_ZOOM, + radius: clusteringRadius, + }; + if (hasCustomMetric) { + opts.initial = () => ({ + sum: 0, + squaredSum: 0, + min: Infinity, + max: -Infinity, + }); + opts.map = prop => ({ + sum: prop.metric, + squaredSum: prop.metric ** 2, + min: prop.metric, + max: prop.metric, + }); + opts.reduce = (accu, prop) => { + // Temporarily disable param-reassignment linting to work with supercluster's api + /* eslint-disable no-param-reassign */ + accu.sum += prop.sum; + accu.squaredSum += prop.squaredSum; + accu.min = Math.min(accu.min, prop.min); + accu.max = Math.max(accu.max, prop.max); + /* eslint-enable no-param-reassign */ + }; + } + const clusterer = supercluster(opts); + clusterer.load(geoJSON.features); + + return { + width, + height, + aggregatorName: pandasAggfunc, + bounds, + clusterer, + globalOpacity, + hasCustomMetric, + mapboxApiKey, + mapStyle: mapboxStyle, + onViewportChange({ latitude, longitude, zoom }) { + setControlValue('viewport_longitude', longitude); + setControlValue('viewport_latitude', latitude); + setControlValue('viewport_zoom', zoom); + }, + pointRadius: pointRadius === 'Auto' ? DEFAULT_POINT_RADIUS : pointRadius, + pointRadiusUnit, + renderWhileDragging, + rgb, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/utils/geo.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/utils/geo.js new file mode 100644 index 000000000000..d2e48a65f6d0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/utils/geo.js @@ -0,0 +1,33 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import roundDecimal from './roundDecimal'; + +export const EARTH_CIRCUMFERENCE_KM = 40075.16; +export const MILES_PER_KM = 1.60934; + +export function kmToPixels(kilometers, latitude, zoomLevel) { + // Algorithm from: http://wiki.openstreetmap.org/wiki/Zoom_levels + const latitudeRad = latitude * (Math.PI / 180); + // Seems like the zoomLevel is off by one + const kmPerPixel = + (EARTH_CIRCUMFERENCE_KM * Math.cos(latitudeRad)) / 2 ** (zoomLevel + 9); + + return roundDecimal(kilometers / kmPerPixel, 2); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/utils/luminanceFromRGB.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/utils/luminanceFromRGB.js new file mode 100644 index 000000000000..545d6b04ec74 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/utils/luminanceFromRGB.js @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export const LUMINANCE_RED_WEIGHT = 0.2126; +export const LUMINANCE_GREEN_WEIGHT = 0.7152; +export const LUMINANCE_BLUE_WEIGHT = 0.0722; + +export default function luminanceFromRGB(r, g, b) { + // Formula: https://en.wikipedia.org/wiki/Relative_luminance + return ( + LUMINANCE_RED_WEIGHT * r + + LUMINANCE_GREEN_WEIGHT * g + + LUMINANCE_BLUE_WEIGHT * b + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/utils/roundDecimal.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/utils/roundDecimal.js new file mode 100644 index 000000000000..50bb0e1f52aa --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/src/utils/roundDecimal.js @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export default function roundDecimal(number, precision) { + let roundedNumber; + let p = precision; + if (precision) { + roundedNumber = Math.round(number * (p = 10 ** p)) / p; + } else { + roundedNumber = Math.round(number); + } + + return roundedNumber; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/test/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/test/tsconfig.json new file mode 100644 index 000000000000..481ca5b4db93 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/test/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "composite": false, + "emitDeclarationOnly": false, + "noEmit": true, + "rootDir": "." + }, + "extends": "../../../tsconfig.json", + "include": [ + "**/*", + "../types/**/*", + "../../../types/**/*" + ], + "references": [ + { + "path": ".." + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/test/utils/roundDecimal.test.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/test/utils/roundDecimal.test.js new file mode 100644 index 000000000000..384eeb9412c9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/test/utils/roundDecimal.test.js @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import roundDecimal from '../../src/utils/roundDecimal'; + +describe('roundDecimal', () => { + it('rounding method to limit the number of decimal digits', () => { + expect(roundDecimal(1.139, 2)).toBe(1.14); + expect(roundDecimal(1.13929, 3)).toBe(1.139); + expect(roundDecimal(1.13929)).toBe(1); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-map-box/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/CHANGELOG.md new file mode 100644 index 000000000000..d58dc44c668e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-paired-t-test + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-paired-t-test diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/README.md new file mode 100644 index 000000000000..1038b9fde714 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-paired-t-test + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-paired-t-test.svg?style=flat-square)](hhttps://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-paired-t-test) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-paired-t-test&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-paired-t-test) + +This plugin provides Paired T Test for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import PairedTTestChartPlugin from '@superset-ui/legacy-plugin-chart-paired-t-test'; + +new PairedTTestChartPlugin().configure({ key: 'paired-t-test' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-paired-t-test) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/package.json new file mode 100644 index 000000000000..cb4e713769da --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/package.json @@ -0,0 +1,40 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-paired-t-test", + "version": "0.18.25", + "description": "Superset Legacy Chart - Paired T Test", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "distributions": "^1.0.0", + "prop-types": "^15.6.2", + "reactable": "^1.1.0" + }, + "peerDependencies": { + "react": "^15 || ^16" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/PairedTTest.css b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/PairedTTest.css new file mode 100644 index 000000000000..ee62864b2594 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/PairedTTest.css @@ -0,0 +1,86 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +.superset-legacy-chart-paired_ttest .scrollbar-container { + overflow: auto; +} + +.paired-ttest-table .scrollbar-content { + padding-left: 5px; + padding-right: 5px; + margin-bottom: 0; +} + +.paired-ttest-table table { + margin-bottom: 0; +} + +.paired-ttest-table h1 { + margin-left: 5px; +} + +.reactable-data tr, +.reactable-header-sortable { + -webkit-transition: ease-in-out 0.1s; + transition: ease-in-out 0.1s; +} + +.reactable-data tr:hover { + background-color: #e0e0e0; +} + +.reactable-data tr .false { + color: #f44336; +} + +.reactable-data tr .true { + color: #4caf50; +} + +.reactable-data tr .control { + color: #2196f3; +} + +.reactable-data tr .invalid { + color: #ff9800; +} + +.reactable-data .control td { + background-color: #eeeeee; +} + +.reactable-header-sortable:hover, +.reactable-header-sortable:focus, +.reactable-header-sort-asc, +.reactable-header-sort-desc { + background-color: #e0e0e0; + position: relative; +} + +.reactable-header-sort-asc:after { + content: '\25bc'; + position: absolute; + right: 10px; +} + +.reactable-header-sort-desc:after { + content: '\25b2'; + position: absolute; + right: 10px; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/PairedTTest.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/PairedTTest.jsx new file mode 100644 index 000000000000..4f20e9230191 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/PairedTTest.jsx @@ -0,0 +1,72 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/no-array-index-key */ +import PropTypes from 'prop-types'; +import React from 'react'; +import TTestTable, { dataPropType } from './TTestTable'; +import './PairedTTest.css'; + +const propTypes = { + alpha: PropTypes.number, + className: PropTypes.string, + data: PropTypes.objectOf(dataPropType).isRequired, + groups: PropTypes.arrayOf(PropTypes.string).isRequired, + liftValPrec: PropTypes.number, + metrics: PropTypes.arrayOf(PropTypes.string).isRequired, + pValPrec: PropTypes.number, +}; + +const defaultProps = { + alpha: 0.05, + className: '', + liftValPrec: 4, + pValPrec: 6, +}; + +class PairedTTest extends React.PureComponent { + render() { + const { className, metrics, groups, data, alpha, pValPrec, liftValPrec } = + this.props; + + return ( +
+
+
+ {metrics.map((metric, i) => ( + + ))} +
+
+
+ ); + } +} + +PairedTTest.propTypes = propTypes; +PairedTTest.defaultProps = defaultProps; + +export default PairedTTest; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/TTestTable.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/TTestTable.jsx new file mode 100644 index 000000000000..e897e892ffce --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/TTestTable.jsx @@ -0,0 +1,302 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/no-array-index-key, react/jsx-no-bind */ +import dist from 'distributions'; +import React from 'react'; +import { Table, Tr, Td, Thead, Th } from 'reactable'; +import PropTypes from 'prop-types'; + +export const dataPropType = PropTypes.arrayOf( + PropTypes.shape({ + group: PropTypes.arrayOf(PropTypes.string), + values: PropTypes.arrayOf( + PropTypes.shape({ + x: PropTypes.number, + y: PropTypes.number, + }), + ), + }), +); + +const propTypes = { + alpha: PropTypes.number, + data: dataPropType.isRequired, + groups: PropTypes.arrayOf(PropTypes.string).isRequired, + liftValPrec: PropTypes.number, + metric: PropTypes.string.isRequired, + pValPrec: PropTypes.number, +}; + +const defaultProps = { + alpha: 0.05, + liftValPrec: 4, + pValPrec: 6, +}; + +class TTestTable extends React.Component { + constructor(props) { + super(props); + this.state = { + control: 0, + liftValues: [], + pValues: [], + }; + } + + componentDidMount() { + const { control } = this.state; + this.computeTTest(control); // initially populate table + } + + getLiftStatus(row) { + const { control, liftValues } = this.state; + // Get a css class name for coloring + if (row === control) { + return 'control'; + } + const liftVal = liftValues[row]; + if (Number.isNaN(liftVal) || !Number.isFinite(liftVal)) { + return 'invalid'; // infinite or NaN values + } + + return liftVal >= 0 ? 'true' : 'false'; // green on true, red on false + } + + getPValueStatus(row) { + const { control, pValues } = this.state; + if (row === control) { + return 'control'; + } + const pVal = pValues[row]; + if (Number.isNaN(pVal) || !Number.isFinite(pVal)) { + return 'invalid'; + } + + return ''; // p-values won't normally be colored + } + + getSignificance(row) { + const { control, pValues } = this.state; + const { alpha } = this.props; + // Color significant as green, else red + if (row === control) { + return 'control'; + } + + // p-values significant below set threshold + return pValues[row] <= alpha; + } + + computeLift(values, control) { + const { liftValPrec } = this.props; + // Compute the lift value between two time series + let sumValues = 0; + let sumControl = 0; + values.forEach((value, i) => { + sumValues += value.y; + sumControl += control[i].y; + }); + + return (((sumValues - sumControl) / sumControl) * 100).toFixed(liftValPrec); + } + + computePValue(values, control) { + const { pValPrec } = this.props; + // Compute the p-value from Student's t-test + // between two time series + let diffSum = 0; + let diffSqSum = 0; + let finiteCount = 0; + values.forEach((value, i) => { + const diff = control[i].y - value.y; + /* eslint-disable-next-line */ + if (isFinite(diff)) { + finiteCount += 1; + diffSum += diff; + diffSqSum += diff * diff; + } + }); + const tvalue = -Math.abs( + diffSum * + Math.sqrt( + (finiteCount - 1) / (finiteCount * diffSqSum - diffSum * diffSum), + ), + ); + try { + return (2 * new dist.Studentt(finiteCount - 1).cdf(tvalue)).toFixed( + pValPrec, + ); // two-sided test + } catch (error) { + return NaN; + } + } + + computeTTest(control) { + // Compute lift and p-values for each row + // against the selected control + const { data } = this.props; + const pValues = []; + const liftValues = []; + if (!data) { + return; + } + for (let i = 0; i < data.length; i += 1) { + if (i === control) { + pValues.push('control'); + liftValues.push('control'); + } else { + pValues.push(this.computePValue(data[i].values, data[control].values)); + liftValues.push(this.computeLift(data[i].values, data[control].values)); + } + } + this.setState({ control, liftValues, pValues }); + } + + render() { + const { data, metric, groups } = this.props; + const { control, liftValues, pValues } = this.state; + + if (!Array.isArray(groups) || groups.length === 0) { + throw Error('Group by param is required'); + } + + // Render column header for each group + const columns = groups.map((group, i) => ( + + {group} + + )); + const numGroups = groups.length; + // Columns for p-value, lift-value, and significance (true/false) + columns.push( + + p-value + , + ); + columns.push( + + Lift % + , + ); + columns.push( + + Significant + , + ); + const rows = data.map((entry, i) => { + const values = groups.map( + ( + group, + j, // group names + ) => , + ); + values.push( + , + ); + values.push( + , + ); + values.push( + , + ); + + return ( + + {values} + + ); + }); + // When sorted ascending, 'control' will always be at top + const sortConfig = groups.concat([ + { + column: 'pValue', + sortFunction: (a, b) => { + if (a === 'control') { + return -1; + } + if (b === 'control') { + return 1; + } + + return a > b ? 1 : -1; // p-values ascending + }, + }, + { + column: 'liftValue', + sortFunction: (a, b) => { + if (a === 'control') { + return -1; + } + if (b === 'control') { + return 1; + } + + return parseFloat(a) > parseFloat(b) ? -1 : 1; // lift values descending + }, + }, + { + column: 'significant', + sortFunction: (a, b) => { + if (a === 'control') { + return -1; + } + if (b === 'control') { + return 1; + } + + return a > b ? -1 : 1; // significant values first + }, + }, + ]); + + return ( +
+

{metric}

+ + {columns} + {rows} +
+
+ ); + } +} + +TTestTable.propTypes = propTypes; +TTestTable.defaultProps = defaultProps; + +export default TTestTable; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts new file mode 100644 index 000000000000..f3504ea64944 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts @@ -0,0 +1,111 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, validateNonEmpty } from '@superset-ui/core'; +import { ControlPanelConfig, sections } from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['adhoc_filters'], + [ + { + name: 'groupby', + override: { + validators: [validateNonEmpty], + }, + }, + ], + ['limit', 'timeseries_limit_metric'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: true, + description: t('Whether to sort descending or ascending'), + }, + }, + { + name: 'contribution', + config: { + type: 'CheckboxControl', + label: t('Contribution'), + default: false, + description: t('Compute the contribution to the total'), + }, + }, + ], + ['row_limit', null], + ], + }, + { + label: t('Parameters'), + expanded: false, + controlSetRows: [ + [ + { + name: 'significance_level', + config: { + type: 'TextControl', + label: t('Significance Level'), + default: 0.05, + description: t( + 'Threshold alpha level for determining significance', + ), + }, + }, + ], + [ + { + name: 'pvalue_precision', + config: { + type: 'TextControl', + label: t('p-value precision'), + default: 6, + description: t( + 'Number of decimal places with which to display p-values', + ), + }, + }, + ], + [ + { + name: 'liftvalue_precision', + config: { + type: 'TextControl', + label: t('Lift percent precision'), + default: 4, + description: t( + 'Number of decimal places with which to display lift values', + ), + }, + }, + ], + ], + }, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/images/thumbnail.png new file mode 100644 index 000000000000..62ab0bcb06e9 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..2c6e69237efb Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/index.js new file mode 100644 index 000000000000..c220d2515e9c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/index.js @@ -0,0 +1,44 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Correlation'), + description: t( + 'Table that visualizes paired t-tests, which are used to understand statistical differences between groups.', + ), + name: t('Paired t-test Table'), + tags: [t('Legacy'), t('Statistical'), t('Tabular')], + thumbnail, + useLegacyApi: true, +}); + +export default class PairedTTestChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./PairedTTest'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/transformProps.js new file mode 100644 index 000000000000..73027a54a22f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/src/transformProps.js @@ -0,0 +1,39 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function transformProps(chartProps) { + const { formData, queriesData } = chartProps; + const { + groupby, + liftvaluePrecision, + metrics, + pvaluePrecision, + significanceLevel, + } = formData; + + return { + alpha: significanceLevel, + data: queriesData[0].data, + groups: groupby, + liftValPrec: parseInt(liftvaluePrecision, 10), + metrics: metrics.map(metric => + typeof metric === 'string' ? metric : metric.label, + ), + pValPrec: parseInt(pvaluePrecision, 10), + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-paired-t-test/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/CHANGELOG.md new file mode 100644 index 000000000000..beebe6fc5915 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-parallel-coordinates + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-parallel-coordinates diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/README.md new file mode 100644 index 000000000000..c2bc49b10d90 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/README.md @@ -0,0 +1,54 @@ + + +## @superset-ui/legacy-plugin-chart-parallel-coordinates + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-parallel-coordinates.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-parallel-coordinates) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-parallel-coordinates&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-parallel-coordinates) + +This plugin provides Parallel Coordinates for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import ParallelCoordinatesChartPlugin from '@superset-ui/legacy-plugin-chart-parallel-coordinates'; + +new ParallelCoordinatesChartPlugin() + .configure({ key: 'parallel-coordinates' }) + .register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-parallel-coordinates) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/package.json new file mode 100644 index 000000000000..bb212561ccdc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/package.json @@ -0,0 +1,39 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-parallel-coordinates", + "version": "0.18.25", + "description": "Superset Legacy Chart - Parallel Coordinates", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "prop-types": "^15.7.2" + }, + "peerDependencies": { + "react": "^16.13.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/ParallelCoordinates.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/ParallelCoordinates.js new file mode 100644 index 000000000000..61d151d1f3e8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/ParallelCoordinates.js @@ -0,0 +1,129 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/sort-prop-types */ +import d3 from 'd3'; +import PropTypes from 'prop-types'; +import { getSequentialSchemeRegistry } from '@superset-ui/core'; + +import parcoords from './vendor/parcoords/d3.parcoords'; +import divgrid from './vendor/parcoords/divgrid'; +import './vendor/parcoords/d3.parcoords.css'; + +const propTypes = { + // Standard tabular data [{ fieldName1: value1, fieldName2: value2 }] + data: PropTypes.arrayOf(PropTypes.object), + width: PropTypes.number, + height: PropTypes.number, + colorMetric: PropTypes.string, + includeSeries: PropTypes.bool, + linearColorScheme: PropTypes.string, + metrics: PropTypes.arrayOf(PropTypes.string), + series: PropTypes.string, + showDatatable: PropTypes.bool, +}; + +function ParallelCoordinates(element, props) { + const { + data, + width, + height, + colorMetric, + includeSeries, + linearColorScheme, + metrics, + series, + showDatatable, + } = props; + + const cols = includeSeries ? [series].concat(metrics) : metrics; + + const ttypes = {}; + ttypes[series] = 'string'; + metrics.forEach(v => { + ttypes[v] = 'number'; + }); + + const colorScale = colorMetric + ? getSequentialSchemeRegistry() + .get(linearColorScheme) + .createLinearScale(d3.extent(data, d => d[colorMetric])) + : () => 'grey'; + const color = d => colorScale(d[colorMetric]); + const container = d3 + .select(element) + .classed('superset-legacy-chart-parallel-coordinates', true); + container.selectAll('*').remove(); + const effHeight = showDatatable ? height / 2 : height; + + const div = container + .append('div') + .style('height', `${effHeight}px`) + .classed('parcoords', true); + + const chart = parcoords()(div.node()) + .width(width) + .color(color) + .alpha(0.5) + .composite('darken') + .height(effHeight) + .data(data) + .dimensions(cols) + .types(ttypes) + .render() + .createAxes() + .shadows() + .reorderable() + .brushMode('1D-axes'); + + if (showDatatable) { + // create data table, row hover highlighting + const grid = divgrid(); + container + .append('div') + .style('height', `${effHeight}px`) + .datum(data) + .call(grid) + .classed('parcoords grid', true) + .selectAll('.row') + .on({ + mouseover(d) { + chart.highlight([d]); + }, + mouseout: chart.unhighlight, + }); + // update data table on brush event + chart.on('brush', d => { + d3.select('.grid') + .datum(d) + .call(grid) + .selectAll('.row') + .on({ + mouseover(dd) { + chart.highlight([dd]); + }, + mouseout: chart.unhighlight, + }); + }); + } +} + +ParallelCoordinates.displayName = 'ParallelCoordinates'; +ParallelCoordinates.propTypes = propTypes; + +export default ParallelCoordinates; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/ReactParallelCoordinates.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/ReactParallelCoordinates.jsx new file mode 100644 index 000000000000..863360798495 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/ReactParallelCoordinates.jsx @@ -0,0 +1,47 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { styled, reactify } from '@superset-ui/core'; +import PropTypes from 'prop-types'; +import Component from './ParallelCoordinates'; + +const ReactComponent = reactify(Component); + +const ParallelCoordianes = ({ className, ...otherProps }) => ( +
+ +
+); + +ParallelCoordianes.propTypes = { + className: PropTypes.string.isRequired, +}; + +export default styled(ParallelCoordianes)` + .superset-legacy-chart-parallel-coordinates { + div.grid { + overflow: auto; + div.row { + &:hover { + background-color: #ccc; + } + } + } + } +`; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts new file mode 100644 index 000000000000..2b24a090fc7b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts @@ -0,0 +1,80 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { ControlPanelConfig, sections } from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['series'], + ['metrics'], + ['secondary_metric'], + ['adhoc_filters'], + ['limit', 'row_limit'], + ['timeseries_limit_metric'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: true, + description: t('Whether to sort descending or ascending'), + }, + }, + ], + ], + }, + { + label: t('Options'), + expanded: true, + controlSetRows: [ + [ + { + name: 'show_datatable', + config: { + type: 'CheckboxControl', + label: t('Data Table'), + default: false, + renderTrigger: true, + description: t('Whether to display the interactive data table'), + }, + }, + { + name: 'include_series', + config: { + type: 'CheckboxControl', + label: t('Include Series'), + renderTrigger: true, + default: false, + description: t('Include series name as an axis'), + }, + }, + ], + ['linear_color_scheme'], + ], + }, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/images/thumbnail.png new file mode 100644 index 000000000000..b6a8bb95271f Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..7e877b073771 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js new file mode 100644 index 000000000000..cc7975f97b42 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js @@ -0,0 +1,45 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Ranking'), + credits: ['https://syntagmatic.github.io/parallel-coordinates'], + description: t( + 'Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.', + ), + name: t('Parallel Coordinates'), + tags: [t('Coordinates'), t('Directional'), t('Legacy'), t('Relational')], + thumbnail, + useLegacyApi: true, +}); + +export default class ParallelCoordinatesChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./ReactParallelCoordinates'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/transformProps.js new file mode 100644 index 000000000000..5d9a14575334 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/transformProps.js @@ -0,0 +1,44 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function transformProps(chartProps) { + const { width, height, formData, queriesData } = chartProps; + const { + includeSeries, + linearColorScheme, + metrics, + secondaryMetric, + series, + showDatatable, + } = formData; + + return { + width, + height, + data: queriesData[0].data, + includeSeries, + linearColorScheme, + metrics: metrics.map(m => m.label || m), + colorMetric: + secondaryMetric && secondaryMetric.label + ? secondaryMetric.label + : secondaryMetric, + series, + showDatatable, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/d3.parcoords.css b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/d3.parcoords.css new file mode 100644 index 000000000000..cc82bf94080b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/d3.parcoords.css @@ -0,0 +1,79 @@ +/* [LICENSE TBD] */ +.parcoords svg, +.parcoords canvas { + font-size: 12px; + position: absolute; +} +.parcoords > canvas { + pointer-events: none; +} + +.parcoords text.label { + font: 100%; + font-size: 12px; + cursor: drag; +} + +.parcoords rect.background { + fill: transparent; +} +.parcoords rect.background:hover { + fill: rgba(120, 120, 120, 0.2); +} +.parcoords .resize rect { + fill: rgba(0, 0, 0, 0.1); +} +.parcoords rect.extent { + fill: rgba(255, 255, 255, 0.25); + stroke: rgba(0, 0, 0, 0.6); +} +.parcoords .axis line, +.parcoords .axis path { + fill: none; + stroke: #222; + shape-rendering: crispEdges; +} +.parcoords canvas { + opacity: 1; + -moz-transition: opacity 0.3s; + -webkit-transition: opacity 0.3s; + -o-transition: opacity 0.3s; +} +.parcoords canvas.faded { + opacity: 0.25; +} +.parcoords { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: white; +} + +/* data table styles */ +.parcoords .row, +.parcoords .header { + clear: left; + font-size: 12px; + line-height: 18px; + height: 18px; + margin: 0px; +} +.parcoords .row:nth-child(odd) { + background: rgba(0, 0, 0, 0.05); +} +.parcoords .header { + font-weight: bold; +} +.parcoords .cell { + float: left; + overflow: hidden; + white-space: nowrap; + width: 100px; + height: 18px; +} +.parcoords .col-0 { + width: 180px; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/d3.parcoords.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/d3.parcoords.js new file mode 100644 index 000000000000..9344f2a985f3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/d3.parcoords.js @@ -0,0 +1,2468 @@ +/* [LICENSE TBD] */ +/* eslint-disable */ +export default function (config) { + var __ = { + data: [], + highlighted: [], + dimensions: [], + dimensionTitles: {}, + dimensionTitleRotation: 0, + types: {}, + brushed: false, + brushedColor: null, + alphaOnBrushed: 0.0, + mode: 'default', + rate: 20, + width: 600, + height: 300, + margin: { top: 24, right: 0, bottom: 12, left: 0 }, + nullValueSeparator: 'undefined', // set to "top" or "bottom" + nullValueSeparatorPadding: { top: 8, right: 0, bottom: 8, left: 0 }, + color: '#069', + composite: 'source-over', + alpha: 0.7, + bundlingStrength: 0.5, + bundleDimension: null, + smoothness: 0.0, + showControlPoints: false, + hideAxis: [], + }; + + extend(__, config); + + var pc = function (selection) { + selection = pc.selection = d3.select(selection); + + __.width = selection[0][0].clientWidth; + __.height = selection[0][0].clientHeight; + + // canvas data layers + ['marks', 'foreground', 'brushed', 'highlight'].forEach(function (layer) { + canvas[layer] = selection.append('canvas').attr('class', layer)[0][0]; + ctx[layer] = canvas[layer].getContext('2d'); + }); + + // svg tick and brush layers + pc.svg = selection + .append('svg') + .attr('width', __.width) + .attr('height', __.height) + .append('svg:g') + .attr( + 'transform', + 'translate(' + __.margin.left + ',' + __.margin.top + ')', + ); + + return pc; + }; + var events = d3.dispatch.apply( + this, + [ + 'render', + 'resize', + 'highlight', + 'brush', + 'brushend', + 'axesreorder', + ].concat(d3.keys(__)), + ), + w = function () { + return __.width - __.margin.right - __.margin.left; + }, + h = function () { + return __.height - __.margin.top - __.margin.bottom; + }, + flags = { + brushable: false, + reorderable: false, + axes: false, + interactive: false, + debug: false, + }, + xscale = d3.scale.ordinal(), + yscale = {}, + dragging = {}, + line = d3.svg.line(), + axis = d3.svg.axis().orient('left').ticks(5), + g, // groups for axes, brushes + ctx = {}, + canvas = {}, + clusterCentroids = []; + + // side effects for setters + var side_effects = d3.dispatch + .apply(this, d3.keys(__)) + .on('composite', function (d) { + ctx.foreground.globalCompositeOperation = d.value; + ctx.brushed.globalCompositeOperation = d.value; + }) + .on('alpha', function (d) { + ctx.foreground.globalAlpha = d.value; + ctx.brushed.globalAlpha = d.value; + }) + .on('brushedColor', function (d) { + ctx.brushed.strokeStyle = d.value; + }) + .on('width', function (d) { + pc.resize(); + }) + .on('height', function (d) { + pc.resize(); + }) + .on('margin', function (d) { + pc.resize(); + }) + .on('rate', function (d) { + brushedQueue.rate(d.value); + foregroundQueue.rate(d.value); + }) + .on('dimensions', function (d) { + xscale.domain(__.dimensions); + if (flags.interactive) { + pc.render().updateAxes(); + } + }) + .on('bundleDimension', function (d) { + if (!__.dimensions.length) pc.detectDimensions(); + if (!(__.dimensions[0] in yscale)) pc.autoscale(); + if (typeof d.value === 'number') { + if (d.value < __.dimensions.length) { + __.bundleDimension = __.dimensions[d.value]; + } else if (d.value < __.hideAxis.length) { + __.bundleDimension = __.hideAxis[d.value]; + } + } else { + __.bundleDimension = d.value; + } + + __.clusterCentroids = compute_cluster_centroids(__.bundleDimension); + }) + .on('hideAxis', function (d) { + if (!__.dimensions.length) pc.detectDimensions(); + pc.dimensions(without(__.dimensions, d.value)); + }); + + // expose the state of the chart + pc.state = __; + pc.flags = flags; + + // create getter/setters + getset(pc, __, events); + + // expose events + d3.rebind(pc, events, 'on'); + + // getter/setter with event firing + function getset(obj, state, events) { + d3.keys(state).forEach(function (key) { + obj[key] = function (x) { + if (!arguments.length) { + return state[key]; + } + var old = state[key]; + state[key] = x; + side_effects[key].call(pc, { value: x, previous: old }); + events[key].call(pc, { value: x, previous: old }); + return obj; + }; + }); + } + + function extend(target, source) { + for (var key in source) { + target[key] = source[key]; + } + return target; + } + + function without(arr, item) { + return arr.filter(function (elem) { + return item.indexOf(elem) === -1; + }); + } + /** adjusts an axis' default range [h()+1, 1] if a NullValueSeparator is set */ + function getRange() { + if (__.nullValueSeparator == 'bottom') { + return [ + h() + + 1 - + __.nullValueSeparatorPadding.bottom - + __.nullValueSeparatorPadding.top, + 1, + ]; + } else if (__.nullValueSeparator == 'top') { + return [ + h() + 1, + 1 + + __.nullValueSeparatorPadding.bottom + + __.nullValueSeparatorPadding.top, + ]; + } + return [h() + 1, 1]; + } + + pc.autoscale = function () { + // yscale + var defaultScales = { + date: function (k) { + var extent = d3.extent(__.data, function (d) { + return d[k] ? d[k].getTime() : null; + }); + + // special case if single value + if (extent[0] === extent[1]) { + return d3.scale.ordinal().domain([extent[0]]).rangePoints(getRange()); + } + + return d3.time.scale().domain(extent).range(getRange()); + }, + number: function (k) { + var extent = d3.extent(__.data, function (d) { + return +d[k]; + }); + + // special case if single value + if (extent[0] === extent[1]) { + return d3.scale.ordinal().domain([extent[0]]).rangePoints(getRange()); + } + + return d3.scale.linear().domain(extent).range(getRange()); + }, + string: function (k) { + var counts = {}, + domain = []; + + // Let's get the count for each value so that we can sort the domain based + // on the number of items for each value. + __.data.map(function (p) { + if (p[k] === undefined && __.nullValueSeparator !== 'undefined') { + return; // null values will be drawn beyond the horizontal null value separator! + } + if (counts[p[k]] === undefined) { + counts[p[k]] = 1; + } else { + counts[p[k]] = counts[p[k]] + 1; + } + }); + + domain = Object.getOwnPropertyNames(counts).sort(function (a, b) { + return counts[a] - counts[b]; + }); + + return d3.scale.ordinal().domain(domain).rangePoints(getRange()); + }, + }; + + __.dimensions.forEach(function (k) { + yscale[k] = defaultScales[__.types[k]](k); + }); + + __.hideAxis.forEach(function (k) { + yscale[k] = defaultScales[__.types[k]](k); + }); + + // xscale + xscale.rangePoints([0, w()], 1); + + // canvas sizes + pc.selection + .selectAll('canvas') + .style('margin-top', __.margin.top + 'px') + .style('margin-left', __.margin.left + 'px') + .attr('width', w() + 2) + .attr('height', h() + 2); + + // default styles, needs to be set when canvas width changes + ctx.foreground.strokeStyle = __.color; + ctx.foreground.lineWidth = 1.4; + ctx.foreground.globalCompositeOperation = __.composite; + ctx.foreground.globalAlpha = __.alpha; + ctx.brushed.strokeStyle = __.brushedColor; + ctx.brushed.lineWidth = 1.4; + ctx.brushed.globalCompositeOperation = __.composite; + ctx.brushed.globalAlpha = __.alpha; + ctx.highlight.lineWidth = 3; + + return this; + }; + + pc.scale = function (d, domain) { + yscale[d].domain(domain); + + return this; + }; + + pc.flip = function (d) { + //yscale[d].domain().reverse(); // does not work + yscale[d].domain(yscale[d].domain().reverse()); // works + + return this; + }; + + pc.commonScale = function (global, type) { + var t = type || 'number'; + if (typeof global === 'undefined') { + global = true; + } + + // scales of the same type + var scales = __.dimensions.concat(__.hideAxis).filter(function (p) { + return __.types[p] == t; + }); + + if (global) { + var extent = d3.extent( + scales + .map(function (p, i) { + return yscale[p].domain(); + }) + .reduce(function (a, b) { + return a.concat(b); + }), + ); + + scales.forEach(function (d) { + yscale[d].domain(extent); + }); + } else { + scales.forEach(function (k) { + yscale[k].domain( + d3.extent(__.data, function (d) { + return +d[k]; + }), + ); + }); + } + + // update centroids + if (__.bundleDimension !== null) { + pc.bundleDimension(__.bundleDimension); + } + + return this; + }; + pc.detectDimensions = function () { + pc.types(pc.detectDimensionTypes(__.data)); + pc.dimensions(d3.keys(pc.types())); + return this; + }; + + // a better "typeof" from this post: http://stackoverflow.com/questions/7390426/better-way-to-get-type-of-a-javascript-variable + pc.toType = function (v) { + return {}.toString + .call(v) + .match(/\s([a-zA-Z]+)/)[1] + .toLowerCase(); + }; + + // try to coerce to number before returning type + pc.toTypeCoerceNumbers = function (v) { + if (parseFloat(v) == v && v != null) { + return 'number'; + } + return pc.toType(v); + }; + + // attempt to determine types of each dimension based on first row of data + pc.detectDimensionTypes = function (data) { + var types = {}; + d3.keys(data[0]).forEach(function (col) { + types[col] = pc.toTypeCoerceNumbers(data[0][col]); + }); + return types; + }; + pc.render = function () { + // try to autodetect dimensions and create scales + if (!__.dimensions.length) pc.detectDimensions(); + if (!(__.dimensions[0] in yscale)) pc.autoscale(); + + pc.render[__.mode](); + + events.render.call(this); + return this; + }; + + pc.renderBrushed = function () { + if (!__.dimensions.length) pc.detectDimensions(); + if (!(__.dimensions[0] in yscale)) pc.autoscale(); + + pc.renderBrushed[__.mode](); + + events.render.call(this); + return this; + }; + + function isBrushed() { + if (__.brushed && __.brushed.length !== __.data.length) return true; + + var object = brush.currentMode().brushState(); + + for (var key in object) { + if (object.hasOwnProperty(key)) { + return true; + } + } + return false; + } + + pc.render.default = function () { + pc.clear('foreground'); + pc.clear('highlight'); + + pc.renderBrushed.default(); + + __.data.forEach(path_foreground); + }; + + var foregroundQueue = d3 + .renderQueue(path_foreground) + .rate(50) + .clear(function () { + pc.clear('foreground'); + pc.clear('highlight'); + }); + + pc.render.queue = function () { + pc.renderBrushed.queue(); + + foregroundQueue(__.data); + }; + + pc.renderBrushed.default = function () { + pc.clear('brushed'); + + if (isBrushed()) { + __.brushed.forEach(path_brushed); + } + }; + + var brushedQueue = d3 + .renderQueue(path_brushed) + .rate(50) + .clear(function () { + pc.clear('brushed'); + }); + + pc.renderBrushed.queue = function () { + if (isBrushed()) { + brushedQueue(__.brushed); + } else { + brushedQueue([]); // This is needed to clear the currently brushed items + } + }; + function compute_cluster_centroids(d) { + var clusterCentroids = d3.map(); + var clusterCounts = d3.map(); + // determine clusterCounts + __.data.forEach(function (row) { + var scaled = yscale[d](row[d]); + if (!clusterCounts.has(scaled)) { + clusterCounts.set(scaled, 0); + } + var count = clusterCounts.get(scaled); + clusterCounts.set(scaled, count + 1); + }); + + __.data.forEach(function (row) { + __.dimensions.map(function (p, i) { + var scaled = yscale[d](row[d]); + if (!clusterCentroids.has(scaled)) { + var map = d3.map(); + clusterCentroids.set(scaled, map); + } + if (!clusterCentroids.get(scaled).has(p)) { + clusterCentroids.get(scaled).set(p, 0); + } + var value = clusterCentroids.get(scaled).get(p); + value += yscale[p](row[p]) / clusterCounts.get(scaled); + clusterCentroids.get(scaled).set(p, value); + }); + }); + + return clusterCentroids; + } + + function compute_centroids(row) { + var centroids = []; + + var p = __.dimensions; + var cols = p.length; + var a = 0.5; // center between axes + for (var i = 0; i < cols; ++i) { + // centroids on 'real' axes + var x = position(p[i]); + var y = yscale[p[i]](row[p[i]]); + centroids.push($V([x, y])); + + // centroids on 'virtual' axes + if (i < cols - 1) { + var cx = x + a * (position(p[i + 1]) - x); + var cy = y + a * (yscale[p[i + 1]](row[p[i + 1]]) - y); + if (__.bundleDimension !== null) { + var leftCentroid = __.clusterCentroids + .get(yscale[__.bundleDimension](row[__.bundleDimension])) + .get(p[i]); + var rightCentroid = __.clusterCentroids + .get(yscale[__.bundleDimension](row[__.bundleDimension])) + .get(p[i + 1]); + var centroid = 0.5 * (leftCentroid + rightCentroid); + cy = centroid + (1 - __.bundlingStrength) * (cy - centroid); + } + centroids.push($V([cx, cy])); + } + } + + return centroids; + } + + function compute_control_points(centroids) { + var cols = centroids.length; + var a = __.smoothness; + var cps = []; + + cps.push(centroids[0]); + cps.push( + $V([ + centroids[0].e(1) + a * 2 * (centroids[1].e(1) - centroids[0].e(1)), + centroids[0].e(2), + ]), + ); + for (var col = 1; col < cols - 1; ++col) { + var mid = centroids[col]; + var left = centroids[col - 1]; + var right = centroids[col + 1]; + + var diff = left.subtract(right); + cps.push(mid.add(diff.x(a))); + cps.push(mid); + cps.push(mid.subtract(diff.x(a))); + } + cps.push( + $V([ + centroids[cols - 1].e(1) + + a * 2 * (centroids[cols - 2].e(1) - centroids[cols - 1].e(1)), + centroids[cols - 1].e(2), + ]), + ); + cps.push(centroids[cols - 1]); + + return cps; + } + + pc.shadows = function () { + flags.shadows = true; + pc.alphaOnBrushed(0.1); + pc.render(); + return this; + }; + + // draw dots with radius r on the axis line where data intersects + pc.axisDots = function (r) { + var r = r || 0.1; + var ctx = pc.ctx.marks; + var startAngle = 0; + var endAngle = 2 * Math.PI; + ctx.globalAlpha = d3.min([1 / Math.pow(__.data.length, 1 / 2), 1]); + __.data.forEach(function (d) { + __.dimensions.map(function (p, i) { + ctx.beginPath(); + ctx.arc(position(p), yscale[p](d[p]), r, startAngle, endAngle); + ctx.stroke(); + ctx.fill(); + }); + }); + return this; + }; + + // draw single cubic bezier curve + function single_curve(d, ctx) { + var centroids = compute_centroids(d); + var cps = compute_control_points(centroids); + + ctx.moveTo(cps[0].e(1), cps[0].e(2)); + for (var i = 1; i < cps.length; i += 3) { + if (__.showControlPoints) { + for (var j = 0; j < 3; j += 1) { + ctx.fillRect(cps[i + j].e(1), cps[i + j].e(2), 2, 2); + } + } + ctx.bezierCurveTo( + cps[i].e(1), + cps[i].e(2), + cps[i + 1].e(1), + cps[i + 1].e(2), + cps[i + 2].e(1), + cps[i + 2].e(2), + ); + } + } + + // draw single polyline + function color_path(d, ctx) { + ctx.beginPath(); + if ( + (__.bundleDimension !== null && __.bundlingStrength > 0) || + __.smoothness > 0 + ) { + single_curve(d, ctx); + } else { + single_path(d, ctx); + } + ctx.stroke(); + } + + // draw many polylines of the same color + function paths(data, ctx) { + ctx.clearRect(-1, -1, w() + 2, h() + 2); + ctx.beginPath(); + data.forEach(function (d) { + if ( + (__.bundleDimension !== null && __.bundlingStrength > 0) || + __.smoothness > 0 + ) { + single_curve(d, ctx); + } else { + single_path(d, ctx); + } + }); + ctx.stroke(); + } + + // returns the y-position just beyond the separating null value line + function getNullPosition() { + if (__.nullValueSeparator == 'bottom') { + return h() + 1; + } else if (__.nullValueSeparator == 'top') { + return 1; + } else { + console.log( + "A value is NULL, but nullValueSeparator is not set; set it to 'bottom' or 'top'.", + ); + } + return h() + 1; + } + + function single_path(d, ctx) { + __.dimensions.map(function (p, i) { + if (i == 0) { + ctx.moveTo( + position(p), + typeof d[p] == 'undefined' ? getNullPosition() : yscale[p](d[p]), + ); + } else { + ctx.lineTo( + position(p), + typeof d[p] == 'undefined' ? getNullPosition() : yscale[p](d[p]), + ); + } + }); + } + + function path_brushed(d, i) { + if (__.brushedColor !== null) { + ctx.brushed.strokeStyle = d3.functor(__.brushedColor)(d, i); + } else { + ctx.brushed.strokeStyle = d3.functor(__.color)(d, i); + } + return color_path(d, ctx.brushed); + } + + function path_foreground(d, i) { + ctx.foreground.strokeStyle = d3.functor(__.color)(d, i); + return color_path(d, ctx.foreground); + } + + function path_highlight(d, i) { + ctx.highlight.strokeStyle = d3.functor(__.color)(d, i); + return color_path(d, ctx.highlight); + } + pc.clear = function (layer) { + ctx[layer].clearRect(0, 0, w() + 2, h() + 2); + + // This will make sure that the foreground items are transparent + // without the need for changing the opacity style of the foreground canvas + // as this would stop the css styling from working + if (layer === 'brushed' && isBrushed()) { + ctx.brushed.fillStyle = pc.selection.style('background-color'); + ctx.brushed.globalAlpha = 1 - __.alphaOnBrushed; + ctx.brushed.fillRect(0, 0, w() + 2, h() + 2); + ctx.brushed.globalAlpha = __.alpha; + } + return this; + }; + + d3.rebind( + pc, + axis, + 'ticks', + 'orient', + 'tickValues', + 'tickSubdivide', + 'tickSize', + 'tickPadding', + 'tickFormat', + ); + + function flipAxisAndUpdatePCP(dimension) { + var g = pc.svg.selectAll('.dimension'); + + pc.flip(dimension); + + d3.select(this.parentElement) + .transition() + .duration(1100) + .call(axis.scale(yscale[dimension])); + + pc.render(); + } + + function rotateLabels() { + var delta = d3.event.deltaY; + delta = delta < 0 ? -5 : delta; + delta = delta > 0 ? 5 : delta; + + __.dimensionTitleRotation += delta; + pc.svg + .selectAll('text.label') + .attr( + 'transform', + 'translate(0,-5) rotate(' + __.dimensionTitleRotation + ')', + ); + d3.event.preventDefault(); + } + + function dimensionLabels(d) { + return d in __.dimensionTitles ? __.dimensionTitles[d] : d; // dimension display names + } + + pc.createAxes = function () { + if (g) pc.removeAxes(); + + // Add a group element for each dimension. + g = pc.svg + .selectAll('.dimension') + .data(__.dimensions, function (d) { + return d; + }) + .enter() + .append('svg:g') + .attr('class', 'dimension') + .attr('transform', function (d) { + return 'translate(' + xscale(d) + ')'; + }); + + // Add an axis and title. + g.append('svg:g') + .attr('class', 'axis') + .attr('transform', 'translate(0,0)') + .each(function (d) { + d3.select(this).call(axis.scale(yscale[d])); + }) + .append('svg:text') + .attr({ + 'text-anchor': 'middle', + y: 0, + transform: 'translate(0,-5) rotate(' + __.dimensionTitleRotation + ')', + x: 0, + class: 'label', + }) + .text(dimensionLabels) + .on('dblclick', flipAxisAndUpdatePCP) + .on('wheel', rotateLabels); + + if (__.nullValueSeparator == 'top') { + pc.svg + .append('line') + .attr('x1', 0) + .attr('y1', 1 + __.nullValueSeparatorPadding.top) + .attr('x2', w()) + .attr('y2', 1 + __.nullValueSeparatorPadding.top) + .attr('stroke-width', 1) + .attr('stroke', '#777') + .attr('fill', 'none') + .attr('shape-rendering', 'crispEdges'); + } else if (__.nullValueSeparator == 'bottom') { + pc.svg + .append('line') + .attr('x1', 0) + .attr('y1', h() + 1 - __.nullValueSeparatorPadding.bottom) + .attr('x2', w()) + .attr('y2', h() + 1 - __.nullValueSeparatorPadding.bottom) + .attr('stroke-width', 1) + .attr('stroke', '#777') + .attr('fill', 'none') + .attr('shape-rendering', 'crispEdges'); + } + + flags.axes = true; + return this; + }; + + pc.removeAxes = function () { + g.remove(); + return this; + }; + + pc.updateAxes = function () { + var g_data = pc.svg.selectAll('.dimension').data(__.dimensions); + + // Enter + g_data + .enter() + .append('svg:g') + .attr('class', 'dimension') + .attr('transform', function (p) { + return 'translate(' + position(p) + ')'; + }) + .style('opacity', 0) + .append('svg:g') + .attr('class', 'axis') + .attr('transform', 'translate(0,0)') + .each(function (d) { + d3.select(this).call(axis.scale(yscale[d])); + }) + .append('svg:text') + .attr({ + 'text-anchor': 'middle', + y: 0, + transform: 'translate(0,-5) rotate(' + __.dimensionTitleRotation + ')', + x: 0, + class: 'label', + }) + .text(dimensionLabels) + .on('dblclick', flipAxisAndUpdatePCP) + .on('wheel', rotateLabels); + + // Update + g_data.attr('opacity', 0); + g_data + .select('.axis') + .transition() + .duration(1100) + .each(function (d) { + d3.select(this).call(axis.scale(yscale[d])); + }); + g_data + .select('.label') + .transition() + .duration(1100) + .text(dimensionLabels) + .attr( + 'transform', + 'translate(0,-5) rotate(' + __.dimensionTitleRotation + ')', + ); + + // Exit + g_data.exit().remove(); + + g = pc.svg.selectAll('.dimension'); + g.transition() + .duration(1100) + .attr('transform', function (p) { + return 'translate(' + position(p) + ')'; + }) + .style('opacity', 1); + + pc.svg + .selectAll('.axis') + .transition() + .duration(1100) + .each(function (d) { + d3.select(this).call(axis.scale(yscale[d])); + }); + + if (flags.brushable) pc.brushable(); + if (flags.reorderable) pc.reorderable(); + if (pc.brushMode() !== 'None') { + var mode = pc.brushMode(); + pc.brushMode('None'); + pc.brushMode(mode); + } + return this; + }; + + // Jason Davies, http://bl.ocks.org/1341281 + pc.reorderable = function () { + if (!g) pc.createAxes(); + + g.style('cursor', 'move').call( + d3.behavior + .drag() + .on('dragstart', function (d) { + dragging[d] = this.__origin__ = xscale(d); + }) + .on('drag', function (d) { + dragging[d] = Math.min( + w(), + Math.max(0, (this.__origin__ += d3.event.dx)), + ); + __.dimensions.sort(function (a, b) { + return position(a) - position(b); + }); + xscale.domain(__.dimensions); + pc.render(); + g.attr('transform', function (d) { + return 'translate(' + position(d) + ')'; + }); + }) + .on('dragend', function (d) { + // Let's see if the order has changed and send out an event if so. + var i = 0, + j = __.dimensions.indexOf(d), + elem = this, + parent = this.parentElement; + + while ((elem = elem.previousElementSibling) != null) ++i; + if (i !== j) { + events.axesreorder.call(pc, __.dimensions); + // We now also want to reorder the actual dom elements that represent + // the axes. That is, the g.dimension elements. If we don't do this, + // we get a weird and confusing transition when updateAxes is called. + // This is due to the fact that, initially the nth g.dimension element + // represents the nth axis. However, after a manual reordering, + // without reordering the dom elements, the nth dom elements no longer + // necessarily represents the nth axis. + // + // i is the original index of the dom element + // j is the new index of the dom element + if (i > j) { + // Element moved left + parent.insertBefore(this, parent.children[j - 1]); + } else { + // Element moved right + if (j + 1 < parent.children.length) { + parent.insertBefore(this, parent.children[j + 1]); + } else { + parent.appendChild(this); + } + } + } + + delete this.__origin__; + delete dragging[d]; + d3.select(this) + .transition() + .attr('transform', 'translate(' + xscale(d) + ')'); + pc.render(); + }), + ); + flags.reorderable = true; + return this; + }; + + // Reorder dimensions, such that the highest value (visually) is on the left and + // the lowest on the right. Visual values are determined by the data values in + // the given row. + pc.reorder = function (rowdata) { + var dims = __.dimensions.slice(0); + __.dimensions.sort(function (a, b) { + var pixelDifference = yscale[a](rowdata[a]) - yscale[b](rowdata[b]); + + // Array.sort is not necessarily stable, this means that if pixelDifference is zero + // the ordering of dimensions might change unexpectedly. This is solved by sorting on + // variable name in that case. + if (pixelDifference === 0) { + return a.localeCompare(b); + } // else + return pixelDifference; + }); + + // NOTE: this is relatively cheap given that: + // number of dimensions < number of data items + // Thus we check equality of order to prevent rerendering when this is the case. + var reordered = false; + dims.some(function (val, index) { + reordered = val !== __.dimensions[index]; + return reordered; + }); + + if (reordered) { + xscale.domain(__.dimensions); + var highlighted = __.highlighted.slice(0); + pc.unhighlight(); + + g.transition() + .duration(1500) + .attr('transform', function (d) { + return 'translate(' + xscale(d) + ')'; + }); + pc.render(); + + // pc.highlight() does not check whether highlighted is length zero, so we do that here. + if (highlighted.length !== 0) { + pc.highlight(highlighted); + } + } + }; + + // pairs of adjacent dimensions + pc.adjacent_pairs = function (arr) { + var ret = []; + for (var i = 0; i < arr.length - 1; i += 1) { + ret.push([arr[i], arr[i + 1]]); + } + return ret; + }; + + var brush = { + modes: { + None: { + install: function (pc) {}, // Nothing to be done. + uninstall: function (pc) {}, // Nothing to be done. + selected: function () { + return []; + }, // Nothing to return + brushState: function () { + return {}; + }, + }, + }, + mode: 'None', + predicate: 'AND', + currentMode: function () { + return this.modes[this.mode]; + }, + }; + + // This function can be used for 'live' updates of brushes. That is, during the + // specification of a brush, this method can be called to update the view. + // + // @param newSelection - The new set of data items that is currently contained + // by the brushes + function brushUpdated(newSelection) { + __.brushed = newSelection; + events.brush.call(pc, __.brushed); + pc.renderBrushed(); + } + + function brushPredicate(predicate) { + if (!arguments.length) { + return brush.predicate; + } + + predicate = String(predicate).toUpperCase(); + if (predicate !== 'AND' && predicate !== 'OR') { + throw 'Invalid predicate ' + predicate; + } + + brush.predicate = predicate; + __.brushed = brush.currentMode().selected(); + pc.renderBrushed(); + return pc; + } + + pc.brushModes = function () { + return Object.getOwnPropertyNames(brush.modes); + }; + + pc.brushMode = function (mode) { + if (arguments.length === 0) { + return brush.mode; + } + + if (pc.brushModes().indexOf(mode) === -1) { + throw 'pc.brushmode: Unsupported brush mode: ' + mode; + } + + // Make sure that we don't trigger unnecessary events by checking if the mode + // actually changes. + if (mode !== brush.mode) { + // When changing brush modes, the first thing we need to do is clearing any + // brushes from the current mode, if any. + if (brush.mode !== 'None') { + pc.brushReset(); + } + + // Next, we need to 'uninstall' the current brushMode. + brush.modes[brush.mode].uninstall(pc); + // Finally, we can install the requested one. + brush.mode = mode; + brush.modes[brush.mode].install(); + if (mode === 'None') { + delete pc.brushPredicate; + } else { + pc.brushPredicate = brushPredicate; + } + } + + return pc; + }; + + // brush mode: 1D-Axes + + (function () { + var brushes = {}; + + function is_brushed(p) { + return !brushes[p].empty(); + } + + // data within extents + function selected() { + var actives = __.dimensions.filter(is_brushed), + extents = actives.map(function (p) { + return brushes[p].extent(); + }); + + // We don't want to return the full data set when there are no axes brushed. + // Actually, when there are no axes brushed, by definition, no items are + // selected. So, let's avoid the filtering and just return false. + //if (actives.length === 0) return false; + + // Resolves broken examples for now. They expect to get the full dataset back from empty brushes + if (actives.length === 0) return __.data; + + // test if within range + var within = { + date: function (d, p, dimension) { + if (typeof yscale[p].rangePoints === 'function') { + // if it is ordinal + return ( + extents[dimension][0] <= yscale[p](d[p]) && + yscale[p](d[p]) <= extents[dimension][1] + ); + } else { + return ( + extents[dimension][0] <= d[p] && d[p] <= extents[dimension][1] + ); + } + }, + number: function (d, p, dimension) { + if (typeof yscale[p].rangePoints === 'function') { + // if it is ordinal + return ( + extents[dimension][0] <= yscale[p](d[p]) && + yscale[p](d[p]) <= extents[dimension][1] + ); + } else { + return ( + extents[dimension][0] <= d[p] && d[p] <= extents[dimension][1] + ); + } + }, + string: function (d, p, dimension) { + return ( + extents[dimension][0] <= yscale[p](d[p]) && + yscale[p](d[p]) <= extents[dimension][1] + ); + }, + }; + + return __.data.filter(function (d) { + switch (brush.predicate) { + case 'AND': + return actives.every(function (p, dimension) { + return within[__.types[p]](d, p, dimension); + }); + case 'OR': + return actives.some(function (p, dimension) { + return within[__.types[p]](d, p, dimension); + }); + default: + throw 'Unknown brush predicate ' + __.brushPredicate; + } + }); + } + + function brushExtents(extents) { + if (typeof extents === 'undefined') { + var extents = {}; + __.dimensions.forEach(function (d) { + var brush = brushes[d]; + if (brush !== undefined && !brush.empty()) { + var extent = brush.extent(); + extent.sort(d3.ascending); + extents[d] = extent; + } + }); + return extents; + } else { + //first get all the brush selections + var brushSelections = {}; + g.selectAll('.brush').each(function (d) { + brushSelections[d] = d3.select(this); + }); + + // loop over each dimension and update appropriately (if it was passed in through extents) + __.dimensions.forEach(function (d) { + if (extents[d] === undefined) { + return; + } + + var brush = brushes[d]; + if (brush !== undefined) { + //update the extent + brush.extent(extents[d]); + + //redraw the brush + brush(brushSelections[d]); + + //fire some events + brush.event(brushSelections[d]); + } + }); + + //redraw the chart + pc.renderBrushed(); + } + } + function brushFor(axis) { + var brush = d3.svg.brush(); + + brush + .y(yscale[axis]) + .on('brushstart', function () { + if (d3.event.sourceEvent !== null) { + d3.event.sourceEvent.stopPropagation(); + } + }) + .on('brush', function () { + brushUpdated(selected()); + }) + .on('brushend', function () { + events.brushend.call(pc, __.brushed); + }); + + brushes[axis] = brush; + return brush; + } + function brushReset(dimension) { + __.brushed = false; + if (g) { + g.selectAll('.brush').each(function (d) { + d3.select(this).call(brushes[d].clear()); + }); + pc.renderBrushed(); + } + return this; + } + + function install() { + if (!g) pc.createAxes(); + + // Add and store a brush for each axis. + g.append('svg:g') + .attr('class', 'brush') + .each(function (d) { + d3.select(this).call(brushFor(d)); + }) + .selectAll('rect') + .style('visibility', null) + .attr('x', -15) + .attr('width', 30); + + pc.brushExtents = brushExtents; + pc.brushReset = brushReset; + return pc; + } + + brush.modes['1D-axes'] = { + install: install, + uninstall: function () { + g.selectAll('.brush').remove(); + brushes = {}; + delete pc.brushExtents; + delete pc.brushReset; + }, + selected: selected, + brushState: brushExtents, + }; + })(); + // brush mode: 2D-strums + // bl.ocks.org/syntagmatic/5441022 + + (function () { + var strums = {}, + strumRect; + + function drawStrum(strum, activePoint) { + var svg = pc.selection.select('svg').select('g#strums'), + id = strum.dims.i, + points = [strum.p1, strum.p2], + line = svg.selectAll('line#strum-' + id).data([strum]), + circles = svg.selectAll('circle#strum-' + id).data(points), + drag = d3.behavior.drag(); + + line + .enter() + .append('line') + .attr('id', 'strum-' + id) + .attr('class', 'strum'); + + line + .attr('x1', function (d) { + return d.p1[0]; + }) + .attr('y1', function (d) { + return d.p1[1]; + }) + .attr('x2', function (d) { + return d.p2[0]; + }) + .attr('y2', function (d) { + return d.p2[1]; + }) + .attr('stroke', 'black') + .attr('stroke-width', 2); + + drag + .on('drag', function (d, i) { + var ev = d3.event; + i = i + 1; + strum['p' + i][0] = Math.min( + Math.max(strum.minX + 1, ev.x), + strum.maxX, + ); + strum['p' + i][1] = Math.min(Math.max(strum.minY, ev.y), strum.maxY); + drawStrum(strum, i - 1); + }) + .on('dragend', onDragEnd()); + + circles + .enter() + .append('circle') + .attr('id', 'strum-' + id) + .attr('class', 'strum'); + + circles + .attr('cx', function (d) { + return d[0]; + }) + .attr('cy', function (d) { + return d[1]; + }) + .attr('r', 5) + .style('opacity', function (d, i) { + return activePoint !== undefined && i === activePoint ? 0.8 : 0; + }) + .on('mouseover', function () { + d3.select(this).style('opacity', 0.8); + }) + .on('mouseout', function () { + d3.select(this).style('opacity', 0); + }) + .call(drag); + } + + function dimensionsForPoint(p) { + var dims = { i: -1, left: undefined, right: undefined }; + __.dimensions.some(function (dim, i) { + if (xscale(dim) < p[0]) { + var next = __.dimensions[i + 1]; + dims.i = i; + dims.left = dim; + dims.right = next; + return false; + } + return true; + }); + + if (dims.left === undefined) { + // Event on the left side of the first axis. + dims.i = 0; + dims.left = __.dimensions[0]; + dims.right = __.dimensions[1]; + } else if (dims.right === undefined) { + // Event on the right side of the last axis + dims.i = __.dimensions.length - 1; + dims.right = dims.left; + dims.left = __.dimensions[__.dimensions.length - 2]; + } + + return dims; + } + + function onDragStart() { + // First we need to determine between which two axes the sturm was started. + // This will determine the freedom of movement, because a strum can + // logically only happen between two axes, so no movement outside these axes + // should be allowed. + return function () { + var p = d3.mouse(strumRect[0][0]), + dims, + strum; + + p[0] = p[0] - __.margin.left; + p[1] = p[1] - __.margin.top; + + (dims = dimensionsForPoint(p)), + (strum = { + p1: p, + dims: dims, + minX: xscale(dims.left), + maxX: xscale(dims.right), + minY: 0, + maxY: h(), + }); + + strums[dims.i] = strum; + strums.active = dims.i; + + // Make sure that the point is within the bounds + strum.p1[0] = Math.min(Math.max(strum.minX, p[0]), strum.maxX); + strum.p2 = strum.p1.slice(); + }; + } + + function onDrag() { + return function () { + var ev = d3.event, + strum = strums[strums.active]; + + // Make sure that the point is within the bounds + strum.p2[0] = Math.min( + Math.max(strum.minX + 1, ev.x - __.margin.left), + strum.maxX, + ); + strum.p2[1] = Math.min( + Math.max(strum.minY, ev.y - __.margin.top), + strum.maxY, + ); + drawStrum(strum, 1); + }; + } + + function containmentTest(strum, width) { + var p1 = [strum.p1[0] - strum.minX, strum.p1[1] - strum.minX], + p2 = [strum.p2[0] - strum.minX, strum.p2[1] - strum.minX], + m1 = 1 - width / p1[0], + b1 = p1[1] * (1 - m1), + m2 = 1 - width / p2[0], + b2 = p2[1] * (1 - m2); + + // test if point falls between lines + return function (p) { + var x = p[0], + y = p[1], + y1 = m1 * x + b1, + y2 = m2 * x + b2; + + if (y > Math.min(y1, y2) && y < Math.max(y1, y2)) { + return true; + } + + return false; + }; + } + + function selected() { + var ids = Object.getOwnPropertyNames(strums), + brushed = __.data; + + // Get the ids of the currently active strums. + ids = ids.filter(function (d) { + return !isNaN(d); + }); + + function crossesStrum(d, id) { + var strum = strums[id], + test = containmentTest(strum, strums.width(id)), + d1 = strum.dims.left, + d2 = strum.dims.right, + y1 = yscale[d1], + y2 = yscale[d2], + point = [y1(d[d1]) - strum.minX, y2(d[d2]) - strum.minX]; + return test(point); + } + + if (ids.length === 0) { + return brushed; + } + + return brushed.filter(function (d) { + switch (brush.predicate) { + case 'AND': + return ids.every(function (id) { + return crossesStrum(d, id); + }); + case 'OR': + return ids.some(function (id) { + return crossesStrum(d, id); + }); + default: + throw 'Unknown brush predicate ' + __.brushPredicate; + } + }); + } + + function removeStrum() { + var strum = strums[strums.active], + svg = pc.selection.select('svg').select('g#strums'); + + delete strums[strums.active]; + strums.active = undefined; + svg.selectAll('line#strum-' + strum.dims.i).remove(); + svg.selectAll('circle#strum-' + strum.dims.i).remove(); + } + + function onDragEnd() { + return function () { + var brushed = __.data, + strum = strums[strums.active]; + + // Okay, somewhat unexpected, but not totally unsurprising, a mousclick is + // considered a drag without move. So we have to deal with that case + if ( + strum && + strum.p1[0] === strum.p2[0] && + strum.p1[1] === strum.p2[1] + ) { + removeStrum(strums); + } + + brushed = selected(strums); + strums.active = undefined; + __.brushed = brushed; + pc.renderBrushed(); + events.brushend.call(pc, __.brushed); + }; + } + + function brushReset(strums) { + return function () { + var ids = Object.getOwnPropertyNames(strums).filter(function (d) { + return !isNaN(d); + }); + + ids.forEach(function (d) { + strums.active = d; + removeStrum(strums); + }); + onDragEnd(strums)(); + }; + } + + function install() { + var drag = d3.behavior.drag(); + + // Map of current strums. Strums are stored per segment of the PC. A segment, + // being the area between two axes. The left most area is indexed at 0. + strums.active = undefined; + // Returns the width of the PC segment where currently a strum is being + // placed. NOTE: even though they are evenly spaced in our current + // implementation, we keep for when non-even spaced segments are supported as + // well. + strums.width = function (id) { + var strum = strums[id]; + + if (strum === undefined) { + return undefined; + } + + return strum.maxX - strum.minX; + }; + + pc.on('axesreorder.strums', function () { + var ids = Object.getOwnPropertyNames(strums).filter(function (d) { + return !isNaN(d); + }); + + // Checks if the first dimension is directly left of the second dimension. + function consecutive(first, second) { + var length = __.dimensions.length; + return __.dimensions.some(function (d, i) { + return d === first + ? i + i < length && __.dimensions[i + 1] === second + : false; + }); + } + + if (ids.length > 0) { + // We have some strums, which might need to be removed. + ids.forEach(function (d) { + var dims = strums[d].dims; + strums.active = d; + // If the two dimensions of the current strum are not next to each other + // any more, than we'll need to remove the strum. Otherwise we keep it. + if (!consecutive(dims.left, dims.right)) { + removeStrum(strums); + } + }); + onDragEnd(strums)(); + } + }); + + // Add a new svg group in which we draw the strums. + pc.selection + .select('svg') + .append('g') + .attr('id', 'strums') + .attr( + 'transform', + 'translate(' + __.margin.left + ',' + __.margin.top + ')', + ); + + // Install the required brushReset function + pc.brushReset = brushReset(strums); + + drag + .on('dragstart', onDragStart(strums)) + .on('drag', onDrag(strums)) + .on('dragend', onDragEnd(strums)); + + // NOTE: The styling needs to be done here and not in the css. This is because + // for 1D brushing, the canvas layers should not listen to + // pointer-events. + strumRect = pc.selection + .select('svg') + .insert('rect', 'g#strums') + .attr('id', 'strum-events') + .attr('x', __.margin.left) + .attr('y', __.margin.top) + .attr('width', w()) + .attr('height', h() + 2) + .style('opacity', 0) + .call(drag); + } + + brush.modes['2D-strums'] = { + install: install, + uninstall: function () { + pc.selection.select('svg').select('g#strums').remove(); + pc.selection.select('svg').select('rect#strum-events').remove(); + pc.on('axesreorder.strums', undefined); + delete pc.brushReset; + + strumRect = undefined; + }, + selected: selected, + brushState: function () { + return strums; + }, + }; + })(); + + // brush mode: 1D-Axes with multiple extents + // requires d3.svg.multibrush + + (function () { + if (typeof d3.svg.multibrush !== 'function') { + return; + } + var brushes = {}; + + function is_brushed(p) { + return !brushes[p].empty(); + } + + // data within extents + function selected() { + var actives = __.dimensions.filter(is_brushed), + extents = actives.map(function (p) { + return brushes[p].extent(); + }); + + // We don't want to return the full data set when there are no axes brushed. + // Actually, when there are no axes brushed, by definition, no items are + // selected. So, let's avoid the filtering and just return false. + //if (actives.length === 0) return false; + + // Resolves broken examples for now. They expect to get the full dataset back from empty brushes + if (actives.length === 0) return __.data; + + // test if within range + var within = { + date: function (d, p, dimension, b) { + if (typeof yscale[p].rangePoints === 'function') { + // if it is ordinal + return b[0] <= yscale[p](d[p]) && yscale[p](d[p]) <= b[1]; + } else { + return b[0] <= d[p] && d[p] <= b[1]; + } + }, + number: function (d, p, dimension, b) { + if (typeof yscale[p].rangePoints === 'function') { + // if it is ordinal + return b[0] <= yscale[p](d[p]) && yscale[p](d[p]) <= b[1]; + } else { + return b[0] <= d[p] && d[p] <= b[1]; + } + }, + string: function (d, p, dimension, b) { + return b[0] <= yscale[p](d[p]) && yscale[p](d[p]) <= b[1]; + }, + }; + + return __.data.filter(function (d) { + switch (brush.predicate) { + case 'AND': + return actives.every(function (p, dimension) { + return extents[dimension].some(function (b) { + return within[__.types[p]](d, p, dimension, b); + }); + }); + case 'OR': + return actives.some(function (p, dimension) { + return extents[dimension].some(function (b) { + return within[__.types[p]](d, p, dimension, b); + }); + }); + default: + throw 'Unknown brush predicate ' + __.brushPredicate; + } + }); + } + + function brushExtents() { + var extents = {}; + __.dimensions.forEach(function (d) { + var brush = brushes[d]; + if (brush !== undefined && !brush.empty()) { + var extent = brush.extent(); + extents[d] = extent; + } + }); + return extents; + } + + function brushFor(axis) { + var brush = d3.svg.multibrush(); + + brush + .y(yscale[axis]) + .on('brushstart', function () { + if (d3.event.sourceEvent !== null) { + d3.event.sourceEvent.stopPropagation(); + } + }) + .on('brush', function () { + brushUpdated(selected()); + }) + .on('brushend', function () { + // d3.svg.multibrush clears extents just before calling 'brushend' + // so we have to update here again. + // This fixes issue #103 for now, but should be changed in d3.svg.multibrush + // to avoid unnecessary computation. + brushUpdated(selected()); + events.brushend.call(pc, __.brushed); + }) + .extentAdaption(function (selection) { + selection.style('visibility', null).attr('x', -15).attr('width', 30); + }) + .resizeAdaption(function (selection) { + selection.selectAll('rect').attr('x', -15).attr('width', 30); + }); + + brushes[axis] = brush; + return brush; + } + + function brushReset(dimension) { + __.brushed = false; + if (g) { + g.selectAll('.brush').each(function (d) { + d3.select(this).call(brushes[d].clear()); + }); + pc.renderBrushed(); + } + return this; + } + + function install() { + if (!g) pc.createAxes(); + + // Add and store a brush for each axis. + g.append('svg:g') + .attr('class', 'brush') + .each(function (d) { + d3.select(this).call(brushFor(d)); + }) + .selectAll('rect') + .style('visibility', null) + .attr('x', -15) + .attr('width', 30); + + pc.brushExtents = brushExtents; + pc.brushReset = brushReset; + return pc; + } + + brush.modes['1D-axes-multi'] = { + install: install, + uninstall: function () { + g.selectAll('.brush').remove(); + brushes = {}; + delete pc.brushExtents; + delete pc.brushReset; + }, + selected: selected, + brushState: brushExtents, + }; + })(); + // brush mode: angular + // code based on 2D.strums.js + + (function () { + var arcs = {}, + strumRect; + + function drawStrum(arc, activePoint) { + var svg = pc.selection.select('svg').select('g#arcs'), + id = arc.dims.i, + points = [arc.p2, arc.p3], + line = svg.selectAll('line#arc-' + id).data([ + { p1: arc.p1, p2: arc.p2 }, + { p1: arc.p1, p2: arc.p3 }, + ]), + circles = svg.selectAll('circle#arc-' + id).data(points), + drag = d3.behavior.drag(), + path = svg.selectAll('path#arc-' + id).data([arc]); + + path + .enter() + .append('path') + .attr('id', 'arc-' + id) + .attr('class', 'arc') + .style('fill', 'orange') + .style('opacity', 0.5); + + path + .attr('d', arc.arc) + .attr('transform', 'translate(' + arc.p1[0] + ',' + arc.p1[1] + ')'); + + line + .enter() + .append('line') + .attr('id', 'arc-' + id) + .attr('class', 'arc'); + + line + .attr('x1', function (d) { + return d.p1[0]; + }) + .attr('y1', function (d) { + return d.p1[1]; + }) + .attr('x2', function (d) { + return d.p2[0]; + }) + .attr('y2', function (d) { + return d.p2[1]; + }) + .attr('stroke', 'black') + .attr('stroke-width', 2); + + drag + .on('drag', function (d, i) { + var ev = d3.event, + angle = 0; + + i = i + 2; + + arc['p' + i][0] = Math.min(Math.max(arc.minX + 1, ev.x), arc.maxX); + arc['p' + i][1] = Math.min(Math.max(arc.minY, ev.y), arc.maxY); + + angle = i === 3 ? arcs.startAngle(id) : arcs.endAngle(id); + + if ( + (arc.startAngle < Math.PI && + arc.endAngle < Math.PI && + angle < Math.PI) || + (arc.startAngle >= Math.PI && + arc.endAngle >= Math.PI && + angle >= Math.PI) + ) { + if (i === 2) { + arc.endAngle = angle; + arc.arc.endAngle(angle); + } else if (i === 3) { + arc.startAngle = angle; + arc.arc.startAngle(angle); + } + } + + drawStrum(arc, i - 2); + }) + .on('dragend', onDragEnd()); + + circles + .enter() + .append('circle') + .attr('id', 'arc-' + id) + .attr('class', 'arc'); + + circles + .attr('cx', function (d) { + return d[0]; + }) + .attr('cy', function (d) { + return d[1]; + }) + .attr('r', 5) + .style('opacity', function (d, i) { + return activePoint !== undefined && i === activePoint ? 0.8 : 0; + }) + .on('mouseover', function () { + d3.select(this).style('opacity', 0.8); + }) + .on('mouseout', function () { + d3.select(this).style('opacity', 0); + }) + .call(drag); + } + + function dimensionsForPoint(p) { + var dims = { i: -1, left: undefined, right: undefined }; + __.dimensions.some(function (dim, i) { + if (xscale(dim) < p[0]) { + var next = __.dimensions[i + 1]; + dims.i = i; + dims.left = dim; + dims.right = next; + return false; + } + return true; + }); + + if (dims.left === undefined) { + // Event on the left side of the first axis. + dims.i = 0; + dims.left = __.dimensions[0]; + dims.right = __.dimensions[1]; + } else if (dims.right === undefined) { + // Event on the right side of the last axis + dims.i = __.dimensions.length - 1; + dims.right = dims.left; + dims.left = __.dimensions[__.dimensions.length - 2]; + } + + return dims; + } + + function onDragStart() { + // First we need to determine between which two axes the arc was started. + // This will determine the freedom of movement, because a arc can + // logically only happen between two axes, so no movement outside these axes + // should be allowed. + return function () { + var p = d3.mouse(strumRect[0][0]), + dims, + arc; + + p[0] = p[0] - __.margin.left; + p[1] = p[1] - __.margin.top; + + (dims = dimensionsForPoint(p)), + (arc = { + p1: p, + dims: dims, + minX: xscale(dims.left), + maxX: xscale(dims.right), + minY: 0, + maxY: h(), + startAngle: undefined, + endAngle: undefined, + arc: d3.svg.arc().innerRadius(0), + }); + + arcs[dims.i] = arc; + arcs.active = dims.i; + + // Make sure that the point is within the bounds + arc.p1[0] = Math.min(Math.max(arc.minX, p[0]), arc.maxX); + arc.p2 = arc.p1.slice(); + arc.p3 = arc.p1.slice(); + }; + } + + function onDrag() { + return function () { + var ev = d3.event, + arc = arcs[arcs.active]; + + // Make sure that the point is within the bounds + arc.p2[0] = Math.min( + Math.max(arc.minX + 1, ev.x - __.margin.left), + arc.maxX, + ); + arc.p2[1] = Math.min( + Math.max(arc.minY, ev.y - __.margin.top), + arc.maxY, + ); + arc.p3 = arc.p2.slice(); + drawStrum(arc, 1); + }; + } + + // some helper functions + function hypothenuse(a, b) { + return Math.sqrt(a * a + b * b); + } + + var rad = (function () { + var c = Math.PI / 180; + return function (angle) { + return angle * c; + }; + })(); + + var deg = (function () { + var c = 180 / Math.PI; + return function (angle) { + return angle * c; + }; + })(); + + // [0, 2*PI] -> [-PI/2, PI/2] + var signedAngle = function (angle) { + var ret = angle; + if (angle > Math.PI) { + ret = angle - 1.5 * Math.PI; + ret = angle - 1.5 * Math.PI; + } else { + ret = angle - 0.5 * Math.PI; + ret = angle - 0.5 * Math.PI; + } + return -ret; + }; + + /** + * angles are stored in radians from in [0, 2*PI], where 0 in 12 o'clock. + * However, one can only select lines from 0 to PI, so we compute the + * 'signed' angle, where 0 is the horizontal line (3 o'clock), and +/- PI/2 + * are 12 and 6 o'clock respectively. + */ + function containmentTest(arc) { + var startAngle = signedAngle(arc.startAngle); + var endAngle = signedAngle(arc.endAngle); + + if (startAngle > endAngle) { + var tmp = startAngle; + startAngle = endAngle; + endAngle = tmp; + } + + // test if segment angle is contained in angle interval + return function (a) { + if (a >= startAngle && a <= endAngle) { + return true; + } + + return false; + }; + } + + function selected() { + var ids = Object.getOwnPropertyNames(arcs), + brushed = __.data; + + // Get the ids of the currently active arcs. + ids = ids.filter(function (d) { + return !isNaN(d); + }); + + function crossesStrum(d, id) { + var arc = arcs[id], + test = containmentTest(arc), + d1 = arc.dims.left, + d2 = arc.dims.right, + y1 = yscale[d1], + y2 = yscale[d2], + a = arcs.width(id), + b = y1(d[d1]) - y2(d[d2]), + c = hypothenuse(a, b), + angle = Math.asin(b / c); // rad in [-PI/2, PI/2] + return test(angle); + } + + if (ids.length === 0) { + return brushed; + } + + return brushed.filter(function (d) { + switch (brush.predicate) { + case 'AND': + return ids.every(function (id) { + return crossesStrum(d, id); + }); + case 'OR': + return ids.some(function (id) { + return crossesStrum(d, id); + }); + default: + throw 'Unknown brush predicate ' + __.brushPredicate; + } + }); + } + + function removeStrum() { + var arc = arcs[arcs.active], + svg = pc.selection.select('svg').select('g#arcs'); + + delete arcs[arcs.active]; + arcs.active = undefined; + svg.selectAll('line#arc-' + arc.dims.i).remove(); + svg.selectAll('circle#arc-' + arc.dims.i).remove(); + svg.selectAll('path#arc-' + arc.dims.i).remove(); + } + + function onDragEnd() { + return function () { + var brushed = __.data, + arc = arcs[arcs.active]; + + // Okay, somewhat unexpected, but not totally unsurprising, a mousclick is + // considered a drag without move. So we have to deal with that case + if (arc && arc.p1[0] === arc.p2[0] && arc.p1[1] === arc.p2[1]) { + removeStrum(arcs); + } + + if (arc) { + var angle = arcs.startAngle(arcs.active); + + arc.startAngle = angle; + arc.endAngle = angle; + arc.arc + .outerRadius(arcs.length(arcs.active)) + .startAngle(angle) + .endAngle(angle); + } + + brushed = selected(arcs); + arcs.active = undefined; + __.brushed = brushed; + pc.renderBrushed(); + events.brushend.call(pc, __.brushed); + }; + } + + function brushReset(arcs) { + return function () { + var ids = Object.getOwnPropertyNames(arcs).filter(function (d) { + return !isNaN(d); + }); + + ids.forEach(function (d) { + arcs.active = d; + removeStrum(arcs); + }); + onDragEnd(arcs)(); + }; + } + + function install() { + var drag = d3.behavior.drag(); + + // Map of current arcs. arcs are stored per segment of the PC. A segment, + // being the area between two axes. The left most area is indexed at 0. + arcs.active = undefined; + // Returns the width of the PC segment where currently a arc is being + // placed. NOTE: even though they are evenly spaced in our current + // implementation, we keep for when non-even spaced segments are supported as + // well. + arcs.width = function (id) { + var arc = arcs[id]; + + if (arc === undefined) { + return undefined; + } + + return arc.maxX - arc.minX; + }; + + // returns angles in [-PI/2, PI/2] + angle = function (p1, p2) { + var a = p1[0] - p2[0], + b = p1[1] - p2[1], + c = hypothenuse(a, b); + + return Math.asin(b / c); + }; + + // returns angles in [0, 2 * PI] + arcs.endAngle = function (id) { + var arc = arcs[id]; + if (arc === undefined) { + return undefined; + } + var sAngle = angle(arc.p1, arc.p2), + uAngle = -sAngle + Math.PI / 2; + + if (arc.p1[0] > arc.p2[0]) { + uAngle = 2 * Math.PI - uAngle; + } + + return uAngle; + }; + + arcs.startAngle = function (id) { + var arc = arcs[id]; + if (arc === undefined) { + return undefined; + } + + var sAngle = angle(arc.p1, arc.p3), + uAngle = -sAngle + Math.PI / 2; + + if (arc.p1[0] > arc.p3[0]) { + uAngle = 2 * Math.PI - uAngle; + } + + return uAngle; + }; + + arcs.length = function (id) { + var arc = arcs[id]; + + if (arc === undefined) { + return undefined; + } + + var a = arc.p1[0] - arc.p2[0], + b = arc.p1[1] - arc.p2[1], + c = hypothenuse(a, b); + + return c; + }; + + pc.on('axesreorder.arcs', function () { + var ids = Object.getOwnPropertyNames(arcs).filter(function (d) { + return !isNaN(d); + }); + + // Checks if the first dimension is directly left of the second dimension. + function consecutive(first, second) { + var length = __.dimensions.length; + return __.dimensions.some(function (d, i) { + return d === first + ? i + i < length && __.dimensions[i + 1] === second + : false; + }); + } + + if (ids.length > 0) { + // We have some arcs, which might need to be removed. + ids.forEach(function (d) { + var dims = arcs[d].dims; + arcs.active = d; + // If the two dimensions of the current arc are not next to each other + // any more, than we'll need to remove the arc. Otherwise we keep it. + if (!consecutive(dims.left, dims.right)) { + removeStrum(arcs); + } + }); + onDragEnd(arcs)(); + } + }); + + // Add a new svg group in which we draw the arcs. + pc.selection + .select('svg') + .append('g') + .attr('id', 'arcs') + .attr( + 'transform', + 'translate(' + __.margin.left + ',' + __.margin.top + ')', + ); + + // Install the required brushReset function + pc.brushReset = brushReset(arcs); + + drag + .on('dragstart', onDragStart(arcs)) + .on('drag', onDrag(arcs)) + .on('dragend', onDragEnd(arcs)); + + // NOTE: The styling needs to be done here and not in the css. This is because + // for 1D brushing, the canvas layers should not listen to + // pointer-events. + strumRect = pc.selection + .select('svg') + .insert('rect', 'g#arcs') + .attr('id', 'arc-events') + .attr('x', __.margin.left) + .attr('y', __.margin.top) + .attr('width', w()) + .attr('height', h() + 2) + .style('opacity', 0) + .call(drag); + } + + brush.modes['angular'] = { + install: install, + uninstall: function () { + pc.selection.select('svg').select('g#arcs').remove(); + pc.selection.select('svg').select('rect#arc-events').remove(); + pc.on('axesreorder.arcs', undefined); + delete pc.brushReset; + + strumRect = undefined; + }, + selected: selected, + brushState: function () { + return arcs; + }, + }; + })(); + + pc.interactive = function () { + flags.interactive = true; + return this; + }; + + // expose a few objects + pc.xscale = xscale; + pc.yscale = yscale; + pc.ctx = ctx; + pc.canvas = canvas; + pc.g = function () { + return g; + }; + + // rescale for height, width and margins + // TODO currently assumes chart is brushable, and destroys old brushes + pc.resize = function () { + // selection size + pc.selection + .select('svg') + .attr('width', __.width) + .attr('height', __.height); + pc.svg.attr( + 'transform', + 'translate(' + __.margin.left + ',' + __.margin.top + ')', + ); + + // FIXME: the current brush state should pass through + if (flags.brushable) pc.brushReset(); + + // scales + pc.autoscale(); + + // axes, destroys old brushes. + if (g) pc.createAxes(); + if (flags.brushable) pc.brushable(); + if (flags.reorderable) pc.reorderable(); + + events.resize.call(this, { + width: __.width, + height: __.height, + margin: __.margin, + }); + return this; + }; + + // highlight an array of data + pc.highlight = function (data) { + if (arguments.length === 0) { + return __.highlighted; + } + + __.highlighted = data; + pc.clear('highlight'); + d3.selectAll([canvas.foreground, canvas.brushed]).classed('faded', true); + data.forEach(path_highlight); + events.highlight.call(this, data); + return this; + }; + + // clear highlighting + pc.unhighlight = function () { + __.highlighted = []; + pc.clear('highlight'); + d3.selectAll([canvas.foreground, canvas.brushed]).classed('faded', false); + return this; + }; + + // calculate 2d intersection of line a->b with line c->d + // points are objects with x and y properties + pc.intersection = function (a, b, c, d) { + return { + x: + ((a.x * b.y - a.y * b.x) * (c.x - d.x) - + (a.x - b.x) * (c.x * d.y - c.y * d.x)) / + ((a.x - b.x) * (c.y - d.y) - (a.y - b.y) * (c.x - d.x)), + y: + ((a.x * b.y - a.y * b.x) * (c.y - d.y) - + (a.y - b.y) * (c.x * d.y - c.y * d.x)) / + ((a.x - b.x) * (c.y - d.y) - (a.y - b.y) * (c.x - d.x)), + }; + }; + + function position(d) { + var v = dragging[d]; + return v == null ? xscale(d) : v; + } + pc.version = '0.7.0'; + // this descriptive text should live with other introspective methods + pc.toString = function () { + return ( + 'Parallel Coordinates: ' + + __.dimensions.length + + ' dimensions (' + + d3.keys(__.data[0]).length + + ' total) , ' + + __.data.length + + ' rows' + ); + }; + + return pc; +} + +d3.renderQueue = function (func) { + var _queue = [], // data to be rendered + _rate = 10, // number of calls per frame + _clear = function () {}, // clearing function + _i = 0; // current iteration + + var rq = function (data) { + if (data) rq.data(data); + rq.invalidate(); + _clear(); + rq.render(); + }; + + rq.render = function () { + _i = 0; + var valid = true; + rq.invalidate = function () { + valid = false; + }; + + function doFrame() { + if (!valid) return true; + if (_i > _queue.length) return true; + + // Typical d3 behavior is to pass a data item *and* its index. As the + // render queue splits the original data set, we'll have to be slightly + // more carefull about passing the correct index with the data item. + var end = Math.min(_i + _rate, _queue.length); + for (var i = _i; i < end; i += 1) { + func(_queue[i], i); + } + _i += _rate; + } + + d3.timer(doFrame); + }; + + rq.data = function (data) { + rq.invalidate(); + _queue = data.slice(0); + return rq; + }; + + rq.rate = function (value) { + if (!arguments.length) return _rate; + _rate = value; + return rq; + }; + + rq.remaining = function () { + return _queue.length - _i; + }; + + // clear the canvas + rq.clear = function (func) { + if (!arguments.length) { + _clear(); + return rq; + } + _clear = func; + return rq; + }; + + rq.invalidate = function () {}; + + return rq; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/divgrid.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/divgrid.js new file mode 100644 index 000000000000..2d79761ebd50 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/src/vendor/parcoords/divgrid.js @@ -0,0 +1,77 @@ +/* [LICENSE TBD] */ +/* eslint-disable */ +// from http://bl.ocks.org/3687826 +export default function (config) { + var columns = []; + + var dg = function (selection) { + if (columns.length == 0) columns = d3.keys(selection.data()[0][0]); + + // header + selection + .selectAll('.header') + .data([true]) + .enter() + .append('div') + .attr('class', 'header'); + + var header = selection.select('.header').selectAll('.cell').data(columns); + + header + .enter() + .append('div') + .attr('class', function (d, i) { + return 'col-' + i; + }) + .classed('cell', true); + + selection.selectAll('.header .cell').text(function (d) { + return d; + }); + + header.exit().remove(); + + // rows + var rows = selection.selectAll('.row').data(function (d) { + return d; + }); + + rows.enter().append('div').attr('class', 'row'); + + rows.exit().remove(); + + var cells = selection + .selectAll('.row') + .selectAll('.cell') + .data(function (d) { + return columns.map(function (col) { + return d[col]; + }); + }); + + // cells + cells + .enter() + .append('div') + .attr('class', function (d, i) { + return 'col-' + i; + }) + .classed('cell', true); + + cells.exit().remove(); + + selection.selectAll('.cell').text(function (d) { + return d; + }); + + return dg; + }; + + dg.columns = function (_) { + if (!arguments.length) return columns; + columns = _; + return this; + }; + + return dg; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/tsconfig.json new file mode 100644 index 000000000000..7e74154150ed --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-parallel-coordinates/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src", + "allowJs": false + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/CHANGELOG.md new file mode 100644 index 000000000000..e02808eb46a6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-partition + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-partition diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/README.md new file mode 100644 index 000000000000..1b05654d004e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-partition + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-partition.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-partition) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-partition&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-partition) + +This plugin provides Partition for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import PartitionChartPlugin from '@superset-ui/legacy-plugin-chart-partition'; + +new PartitionChartPlugin().configure({ key: 'partition' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-partition) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/package.json new file mode 100644 index 000000000000..0b03f50d0071 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/package.json @@ -0,0 +1,40 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-partition", + "version": "0.18.25", + "description": "Superset Legacy Chart - Partition", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-hierarchy": "^1.1.8", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^16.13.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/OptionDescription.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/OptionDescription.tsx new file mode 100644 index 000000000000..e77132379518 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/OptionDescription.tsx @@ -0,0 +1,49 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import PropTypes from 'prop-types'; + +import { + ColumnMeta, + InfoTooltipWithTrigger, +} from '@superset-ui/chart-controls'; + +const propTypes = { + option: PropTypes.object.isRequired, +}; + +// This component provides a general tooltip for options +// in a SelectControl +export default function OptionDescription({ option }: { option: ColumnMeta }) { + return ( + + {option.label} + {option.description && ( + + )} + + ); +} +OptionDescription.propTypes = propTypes; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/Partition.css b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/Partition.css new file mode 100644 index 000000000000..4fce2089b93f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/Partition.css @@ -0,0 +1,64 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +.superset-legacy-chart-partition { + position: relative; +} + +.superset-legacy-chart-partition .chart { + display: block; + margin: auto; + font-size: 11px; +} + +.superset-legacy-chart-partition rect { + stroke: #eee; + fill: #aaa; + fill-opacity: 0.8; + transition: fill-opacity 180ms linear; + cursor: pointer; +} + +.superset-legacy-chart-partition rect:hover { + fill-opacity: 1; +} + +.superset-legacy-chart-partition g text { + font-weight: bold; + fill: rgba(0, 0, 0, 0.8); +} + +.superset-legacy-chart-partition g:hover text { + fill: rgba(0, 0, 0, 1); +} + +.superset-legacy-chart-partition .partition-tooltip { + position: absolute; + top: 0; + left: 0; + opacity: 0; + padding: 5px; + pointer-events: none; + background-color: rgba(255, 255, 255, 0.75); + border-radius: 5px; +} + +.partition-tooltip td { + padding-left: 5px; + font-size: 11px; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/Partition.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/Partition.js new file mode 100644 index 000000000000..224ff85af7d1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/Partition.js @@ -0,0 +1,402 @@ +/* eslint-disable react/sort-prop-types */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint no-param-reassign: [2, {"props": false}] */ +import d3 from 'd3'; +import PropTypes from 'prop-types'; +import { hierarchy } from 'd3-hierarchy'; +import { + getNumberFormatter, + getTimeFormatter, + CategoricalColorNamespace, +} from '@superset-ui/core'; +import './Partition.css'; + +// Compute dx, dy, x, y for each node and +// return an array of nodes in breadth-first order +function init(root) { + const flat = []; + const dy = 1 / (root.height + 1); + let prev = null; + root.each(n => { + n.y = dy * n.depth; + n.dy = dy; + if (n.parent) { + n.x = prev.depth === n.parent.depth ? 0 : prev.x + prev.dx; + n.dx = (n.weight / n.parent.sum) * n.parent.dx; + } else { + n.x = 0; + n.dx = 1; + } + prev = n; + flat.push(n); + }); + + return flat; +} + +// Declare PropTypes for recursive data structures +// https://github.com/facebook/react/issues/5676 +/* eslint-disable-next-line no-undef */ +const lazyFunction = f => () => f().apply(this, arguments); +const leafType = PropTypes.shape({ + name: PropTypes.string, + val: PropTypes.number.isRequired, +}); +const parentShape = { + name: PropTypes.string, + val: PropTypes.number.isRequired, + children: PropTypes.arrayOf( + PropTypes.oneOfType([ + PropTypes.shape(lazyFunction(() => parentShape)), + leafType, + ]), + ), +}; +const nodeType = PropTypes.oneOfType([PropTypes.shape(parentShape), leafType]); + +const propTypes = { + data: PropTypes.arrayOf(nodeType), // array of rootNode + width: PropTypes.number, + height: PropTypes.number, + colorScheme: PropTypes.string, + dateTimeFormat: PropTypes.string, + equalDateSize: PropTypes.bool, + levels: PropTypes.arrayOf(PropTypes.string), + metrics: PropTypes.arrayOf( + PropTypes.oneOfType([PropTypes.string, PropTypes.object]), + ), + numberFormat: PropTypes.string, + partitionLimit: PropTypes.number, + partitionThreshold: PropTypes.number, + timeSeriesOption: PropTypes.string, + useLogScale: PropTypes.bool, + useRichTooltip: PropTypes.bool, +}; + +function getAncestors(d) { + const ancestors = [d]; + let node = d; + while (node.parent) { + ancestors.push(node.parent); + node = node.parent; + } + + return ancestors; +} + +// This vis is based on +// http://mbostock.github.io/d3/talk/20111018/partition.html +function Icicle(element, props) { + const { + width, + height, + data, + colorScheme, + dateTimeFormat, + equalDateSize, + levels, + useLogScale = false, + metrics = [], + numberFormat, + partitionLimit, + partitionThreshold, + useRichTooltip, + timeSeriesOption = 'not_time', + } = props; + + const div = d3.select(element); + div.classed('superset-legacy-chart-partition', true); + + // Chart options + const chartType = timeSeriesOption; + const hasTime = ['adv_anal', 'time_series'].includes(chartType); + const format = getNumberFormatter(numberFormat); + const timeFormat = getTimeFormatter(dateTimeFormat); + const colorFn = CategoricalColorNamespace.getScale(colorScheme); + + div.selectAll('*').remove(); + const tooltip = div.append('div').classed('partition-tooltip', true); + + function hasDateNode(n) { + return metrics.includes(n.data.name) && hasTime; + } + + function getCategory(depth) { + if (!depth) { + return 'Metric'; + } + if (hasTime && depth === 1) { + return 'Date'; + } + + return levels[depth - (hasTime ? 2 : 1)]; + } + + function drawVis(i, dat) { + const datum = dat[i]; + const w = width; + const h = height / data.length; + const x = d3.scale.linear().range([0, w]); + const y = d3.scale.linear().range([0, h]); + + const viz = div + .append('div') + .attr('class', 'chart') + .style('width', `${w}px`) + .style('height', `${h}px`) + .append('svg:svg') + .attr('width', w) + .attr('height', h); + + // Add padding between multiple visualizations + if (i !== data.length - 1 && data.length > 1) { + viz.style('padding-bottom', '3px'); + } + if (i !== 0 && data.length > 1) { + viz.style('padding-top', '3px'); + } + + const root = hierarchy(datum); + + // node.name is the metric/group name + // node.disp is the display value + // node.value determines sorting order + // node.weight determines partition height + // node.sum is the sum of children weights + root.eachAfter(n => { + n.disp = n.data.val; + n.value = n.disp < 0 ? -n.disp : n.disp; + n.weight = n.value; + n.name = n.data.name; + // If the parent is a metric and we still have + // the time column, perform a date-time format + if (n.parent && hasDateNode(n.parent)) { + // Format timestamp values + n.weight = equalDateSize ? 1 : n.value; + n.value = n.name; + n.name = timeFormat(n.name); + } + if (useLogScale) n.weight = Math.log(n.weight + 1); + n.disp = + n.disp && !Number.isNaN(n.disp) && Number.isFinite(n.disp) + ? format(n.disp) + : ''; + }); + // Perform sort by weight + root.sort((a, b) => { + const v = b.value - a.value; + if (v === 0) { + return b.name > a.name ? 1 : -1; + } + + return v; + }); + + // Prune data based on partition limit and threshold + // both are applied at the same time + if (partitionThreshold && partitionThreshold >= 0) { + // Compute weight sums as we go + root.each(n => { + n.sum = n.children + ? n.children.reduce((a, v) => a + v.weight, 0) || 1 + : 1; + if (n.children) { + // Dates are not ordered by weight + if (hasDateNode(n)) { + if (equalDateSize) { + return; + } + const removeIndices = []; + // Keep at least one child + for (let j = 1; j < n.children.length; j += 1) { + if (n.children[j].weight / n.sum < partitionThreshold) { + removeIndices.push(j); + } + } + for (let j = removeIndices.length - 1; j >= 0; j -= 1) { + n.children.splice(removeIndices[j], 1); + } + } else { + // Find first child that falls below the threshold + let j; + for (j = 1; j < n.children.length; j += 1) { + if (n.children[j].weight / n.sum < partitionThreshold) { + break; + } + } + n.children = n.children.slice(0, j); + } + } + }); + } + if (partitionLimit && partitionLimit >= 0) { + root.each(n => { + if (n.children && n.children.length > partitionLimit) { + if (!hasDateNode(n)) { + n.children = n.children.slice(0, partitionLimit); + } + } + }); + } + // Compute final weight sums + root.eachAfter(n => { + n.sum = n.children + ? n.children.reduce((a, v) => a + v.weight, 0) || 1 + : 1; + }); + + function positionAndPopulate(tip, d) { + let t = ''; + if (useRichTooltip) { + const nodes = getAncestors(d); + nodes.reverse().forEach(n => { + const atNode = n.depth === d.depth; + t += ''; + t += + '' + + '' + + `` + + `` + + `` + + ''; + }); + } else { + t += + ''; + t += + '' + + '' + + `` + + `` + + ''; + } + t += '
' + + '
' + + '
${getCategory(n.depth)}${n.name}${n.disp}
' + + `${getCategory(d.depth)}` + + '
' + + `
' + + '
${d.name}${d.disp}
'; + const [tipX, tipY] = d3.mouse(element); + tip + .html(t) + .style('left', `${tipX + 15}px`) + .style('top', `${tipY}px`); + } + + const nodes = init(root); + + let zoomX = w / root.dx; + let zoomY = h / 1; + + // Keep text centered in its division + function transform(d) { + return `translate(8,${(d.dx * zoomY) / 2})`; + } + + const g = viz + .selectAll('g') + .data(nodes) + .enter() + .append('svg:g') + .attr('transform', d => `translate(${x(d.y)},${y(d.x)})`) + .on('mouseover', d => { + tooltip.interrupt().transition().duration(100).style('opacity', 0.9); + positionAndPopulate(tooltip, d); + }) + .on('mousemove', d => { + positionAndPopulate(tooltip, d); + }) + .on('mouseout', () => { + tooltip.interrupt().transition().duration(250).style('opacity', 0); + }); + + // When clicking a subdivision, the vis will zoom in to it + function click(d) { + if (!d.children) { + if (d.parent) { + // Clicking on the rightmost level should zoom in + return click(d.parent); + } + + return false; + } + zoomX = (d.y ? w - 40 : w) / (1 - d.y); + zoomY = h / d.dx; + x.domain([d.y, 1]).range([d.y ? 40 : 0, w]); + y.domain([d.x, d.x + d.dx]); + + const t = g + .transition() + .duration(d3.event.altKey ? 7500 : 750) + .attr('transform', nd => `translate(${x(nd.y)},${y(nd.x)})`); + + t.select('rect') + .attr('width', d.dy * zoomX) + .attr('height', nd => nd.dx * zoomY); + + t.select('text') + .attr('transform', transform) + .style('opacity', nd => (nd.dx * zoomY > 12 ? 1 : 0)); + + d3.event.stopPropagation(); + + return true; + } + + g.on('click', click); + + g.append('svg:rect') + .attr('width', root.dy * zoomX) + .attr('height', d => d.dx * zoomY); + + g.append('svg:text') + .attr('transform', transform) + .attr('dy', '0.35em') + .style('opacity', d => (d.dx * zoomY > 12 ? 1 : 0)) + .text(d => { + if (!d.disp) { + return d.name; + } + + return `${d.name}: ${d.disp}`; + }); + + // Apply color scheme + g.selectAll('rect').style('fill', d => { + d.color = colorFn(d.name); + + return d.color; + }); + } + + for (let i = 0; i < data.length; i += 1) { + drawVis(i, data); + } +} + +Icicle.displayName = 'Icicle'; +Icicle.propTypes = propTypes; + +export default Icicle; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/ReactPartition.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/ReactPartition.js new file mode 100644 index 000000000000..22d61a6c88e7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/ReactPartition.js @@ -0,0 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { reactify } from '@superset-ui/core'; +import Component from './Partition'; + +export default reactify(Component); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx new file mode 100644 index 000000000000..48816891297d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx @@ -0,0 +1,397 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t, validateNonEmpty } from '@superset-ui/core'; +import { + ColumnMeta, + ControlPanelConfig, + D3_FORMAT_DOCS, + D3_FORMAT_OPTIONS, + D3_TIME_FORMAT_OPTIONS, + formatSelectOptions, + sections, +} from '@superset-ui/chart-controls'; +import OptionDescription from './OptionDescription'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['adhoc_filters'], + ['groupby'], + ['limit', 'timeseries_limit_metric'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: true, + description: t('Whether to sort descending or ascending'), + }, + }, + { + name: 'contribution', + config: { + type: 'CheckboxControl', + label: t('Contribution'), + default: false, + description: t('Compute the contribution to the total'), + }, + }, + ], + ['row_limit', null], + ], + }, + { + label: t('Time Series Options'), + expanded: true, + controlSetRows: [ + [ + { + name: 'time_series_option', + config: { + type: 'SelectControl', + label: t('Options'), + validators: [validateNonEmpty], + default: 'not_time', + valueKey: 'value', + options: [ + { + label: t('Not Time Series'), + value: 'not_time', + description: t('Ignore time'), + }, + { + label: t('Time Series'), + value: 'time_series', + description: t('Standard time series'), + }, + { + label: t('Aggregate Mean'), + value: 'agg_mean', + description: t('Mean of values over specified period'), + }, + { + label: t('Aggregate Sum'), + value: 'agg_sum', + description: t('Sum of values over specified period'), + }, + { + label: t('Difference'), + value: 'point_diff', + description: t( + 'Metric change in value from `since` to `until`', + ), + }, + { + label: t('Percent Change'), + value: 'point_percent', + description: t( + 'Metric percent change in value from `since` to `until`', + ), + }, + { + label: t('Factor'), + value: 'point_factor', + description: t( + 'Metric factor change from `since` to `until`', + ), + }, + { + label: t('Advanced Analytics'), + value: 'adv_anal', + description: t('Use the Advanced Analytics options below'), + }, + ], + optionRenderer: (op: ColumnMeta) => ( + + ), + valueRenderer: (op: ColumnMeta) => ( + + ), + description: t('Settings for time series'), + }, + }, + ], + ], + }, + { + label: t('Chart Options'), + expanded: true, + tabOverride: 'customize', + controlSetRows: [ + ['color_scheme'], + [ + { + name: 'number_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Number format'), + renderTrigger: true, + default: 'SMART_NUMBER', + choices: D3_FORMAT_OPTIONS, + description: D3_FORMAT_DOCS, + }, + }, + { + name: 'date_time_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Date Time Format'), + renderTrigger: true, + default: 'smart_date', + choices: D3_TIME_FORMAT_OPTIONS, + description: D3_FORMAT_DOCS, + }, + }, + ], + [ + { + name: 'partition_limit', + config: { + type: 'TextControl', + label: t('Partition Limit'), + isInt: true, + default: '5', + description: t( + 'The maximum number of subdivisions of each group; ' + + 'lower values are pruned first', + ), + }, + }, + { + name: 'partition_threshold', + config: { + type: 'TextControl', + label: t('Partition Threshold'), + isFloat: true, + default: '0.05', + description: t( + 'Partitions whose height to parent height proportions are ' + + 'below this value are pruned', + ), + }, + }, + ], + [ + { + name: 'log_scale', + config: { + type: 'CheckboxControl', + label: t('Log Scale'), + default: false, + renderTrigger: true, + description: t('Use a log scale'), + }, + }, + ], + [ + { + name: 'equal_date_size', + config: { + type: 'CheckboxControl', + label: t('Equal Date Sizes'), + default: true, + renderTrigger: true, + description: t( + 'Check to force date partitions to have the same height', + ), + }, + }, + ], + [ + { + name: 'rich_tooltip', + config: { + type: 'CheckboxControl', + label: t('Rich Tooltip'), + renderTrigger: true, + default: true, + description: t( + 'The rich tooltip shows a list of all series for that point in time', + ), + }, + }, + ], + ], + }, + { + label: t('Advanced Analytics'), + tabOverride: 'data', + description: t( + 'This section contains options ' + + 'that allow for advanced analytical post processing ' + + 'of query results', + ), + controlSetRows: [ + // eslint-disable-next-line react/jsx-key + [

{t('Rolling Window')}

], + [ + { + name: 'rolling_type', + config: { + type: 'SelectControl', + label: t('Rolling Function'), + default: 'None', + choices: formatSelectOptions([ + 'None', + 'mean', + 'sum', + 'std', + 'cumsum', + ]), + description: t( + 'Defines a rolling window function to apply, works along ' + + 'with the [Periods] text box', + ), + }, + }, + ], + [ + { + name: 'rolling_periods', + config: { + type: 'TextControl', + label: t('Periods'), + isInt: true, + description: t( + 'Defines the size of the rolling window function, ' + + 'relative to the time granularity selected', + ), + }, + }, + { + name: 'min_periods', + config: { + type: 'TextControl', + label: t('Min Periods'), + isInt: true, + description: t( + 'The minimum number of rolling periods required to show ' + + 'a value. For instance if you do a cumulative sum on 7 days ' + + 'you may want your "Min Period" to be 7, so that all data points ' + + 'shown are the total of 7 periods. This will hide the "ramp up" ' + + 'taking place over the first 7 periods', + ), + }, + }, + ], + // eslint-disable-next-line react/jsx-key + [

{t('Time Comparison')}

], + [ + { + name: 'time_compare', + config: { + type: 'SelectControl', + multi: true, + freeForm: true, + label: t('Time Shift'), + choices: formatSelectOptions([ + '1 day', + '1 week', + '28 days', + '30 days', + '52 weeks', + '1 year', + '104 weeks', + '2 years', + ]), + description: t( + 'Overlay one or more timeseries from a ' + + 'relative time period. Expects relative time deltas ' + + 'in natural language (example: 24 hours, 7 days, ' + + '52 weeks, 365 days). Free text is supported.', + ), + }, + }, + { + name: 'comparison_type', + config: { + type: 'SelectControl', + label: t('Calculation type'), + default: 'values', + choices: [ + ['values', 'Actual Values'], + ['absolute', 'Difference'], + ['percentage', 'Percentage change'], + ['ratio', 'Ratio'], + ], + description: t( + 'How to display time shifts: as individual lines; as the ' + + 'difference between the main time series and each time shift; ' + + 'as the percentage change; or as the ratio between series and time shifts.', + ), + }, + }, + ], + // eslint-disable-next-line react/jsx-key + [

{t('Python Functions')}

], + // eslint-disable-next-line react/jsx-key + [

pandas.resample

], + [ + { + name: 'resample_rule', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Rule'), + default: null, + choices: formatSelectOptions([ + '1T', + '1H', + '1D', + '7D', + '1M', + '1AS', + ]), + description: t('Pandas resample rule'), + }, + }, + { + name: 'resample_method', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Method'), + default: null, + choices: formatSelectOptions([ + 'asfreq', + 'bfill', + 'ffill', + 'median', + 'mean', + 'sum', + ]), + description: t('Pandas resample method'), + }, + }, + ], + ], + }, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/images/thumbnail.png new file mode 100644 index 000000000000..2b35d0d809bc Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..cc3ef62787de Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/index.js new file mode 100644 index 000000000000..1094b21e9f38 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/index.js @@ -0,0 +1,42 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Part of a Whole'), + description: t('Compare the same summarized metric across multiple groups.'), + name: t('Partition Chart'), + tags: [t('Categorical'), t('Comparison'), t('Legacy'), t('Proportional')], + thumbnail, + useLegacyApi: true, +}); + +export default class PartitionChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./ReactPartition'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/transformProps.js new file mode 100644 index 000000000000..d69de4ed52f0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/src/transformProps.js @@ -0,0 +1,52 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function transformProps(chartProps) { + const { width, height, datasource, formData, queriesData } = chartProps; + const { + colorScheme, + dateTimeFormat, + equalDateSize, + groupby, + logScale, + metrics, + numberFormat, + partitionLimit, + partitionThreshold, + richTooltip, + timeSeriesOption, + } = formData; + const { verboseMap } = datasource; + + return { + width, + height, + data: queriesData[0].data, + colorScheme, + dateTimeFormat, + equalDateSize, + levels: groupby.map(g => verboseMap[g] || g), + metrics, + numberFormat, + partitionLimit: partitionLimit && parseInt(partitionLimit, 10), + partitionThreshold: partitionThreshold && parseInt(partitionThreshold, 10), + timeSeriesOption, + useLogScale: logScale, + useRichTooltip: richTooltip, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/test/OptionDescription.test.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/test/OptionDescription.test.jsx new file mode 100644 index 000000000000..47f23ad7529b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/test/OptionDescription.test.jsx @@ -0,0 +1,48 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { shallow } from 'enzyme'; + +import { InfoTooltipWithTrigger } from '@superset-ui/chart-controls'; +import OptionDescription from '../src/OptionDescription'; + +const defaultProps = { + option: { + label: 'Some option', + description: 'Description for some option', + }, +}; + +describe('OptionDescription', () => { + let wrapper; + let props; + + beforeEach(() => { + props = { option: { ...defaultProps.option } }; + wrapper = shallow(); + }); + + it('renders an InfoTooltipWithTrigger', () => { + expect(wrapper.find(InfoTooltipWithTrigger)).toHaveLength(1); + }); + + it('renders a span with the label', () => { + expect(wrapper.find('.option-label').text()).toBe('Some option'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/test/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/test/tsconfig.json new file mode 100644 index 000000000000..481ca5b4db93 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/test/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "composite": false, + "emitDeclarationOnly": false, + "noEmit": true, + "rootDir": "." + }, + "extends": "../../../tsconfig.json", + "include": [ + "**/*", + "../types/**/*", + "../../../types/**/*" + ], + "references": [ + { + "path": ".." + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-partition/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/CHANGELOG.md new file mode 100644 index 000000000000..885e5c500c17 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/CHANGELOG.md @@ -0,0 +1,43 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-pivot-table + + + + + +## [0.17.63](https://github.com/apache-superset/superset-ui/compare/v0.17.62...v0.17.63) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-pivot-table + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-pivot-table diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/README.md new file mode 100644 index 000000000000..4cb3bd4a22ec --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-pivot-table + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-pivot-table.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-pivot-table) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-pivot-table&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-pivot-table) + +This plugin provides Pivot Table for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import PivottableChartPlugin from '@superset-ui/legacy-plugin-chart-pivot-table'; + +new PivottableChartPlugin().configure({ key: 'pivot-table' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-pivot-table) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/package.json new file mode 100644 index 000000000000..d28ca5d7d3ef --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/package.json @@ -0,0 +1,37 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-pivot-table", + "version": "0.18.25", + "description": "Superset Legacy Chart - Pivot Table", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "datatables.net-bs": "^1.11.3", + "prop-types": "^15.6.2" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/PivotTable.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/PivotTable.js new file mode 100644 index 000000000000..cebfec288d68 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/PivotTable.js @@ -0,0 +1,154 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/sort-prop-types */ +import dt from 'datatables.net-bs'; +import PropTypes from 'prop-types'; +import { + getTimeFormatter, + getTimeFormatterForGranularity, + smartDateFormatter, +} from '@superset-ui/core'; +import { formatCellValue, formatDateCellValue } from './utils/formatCells'; +import fixTableHeight from './utils/fixTableHeight'; +import 'datatables.net-bs/css/dataTables.bootstrap.css'; + +if (window.$) { + dt(window, window.$); +} +const $ = window.$ || dt.$; + +const propTypes = { + data: PropTypes.shape({ + // TODO: replace this with raw data in SIP-6 + html: PropTypes.string, + columns: PropTypes.arrayOf( + PropTypes.oneOfType([ + PropTypes.string, + PropTypes.arrayOf(PropTypes.string), + ]), + ), + }), + height: PropTypes.number, + columnFormats: PropTypes.objectOf(PropTypes.string), + numberFormat: PropTypes.string, + numGroups: PropTypes.number, + verboseMap: PropTypes.objectOf(PropTypes.string), +}; + +const hasOnlyTextChild = node => + node.childNodes.length === 1 && + node.childNodes[0].nodeType === Node.TEXT_NODE; + +function PivotTable(element, props) { + const { + columnFormats, + data, + dateFormat, + granularity, + height, + numberFormat, + numGroups, + verboseMap, + } = props; + + const { html, columns } = data; + const container = element; + const $container = $(element); + let dateFormatter; + + if (dateFormat === smartDateFormatter.id && granularity) { + dateFormatter = getTimeFormatterForGranularity(granularity); + } else if (dateFormat) { + dateFormatter = getTimeFormatter(dateFormat); + } else { + dateFormatter = String; + } + + // queryData data is a string of html with a single table element + container.innerHTML = html; + + const cols = Array.isArray(columns[0]) ? columns.map(col => col[0]) : columns; + const dateRegex = /^__timestamp:(-?\d*\.?\d*)$/; + + $container.find('th').each(function formatTh() { + if (hasOnlyTextChild(this)) { + const cellValue = formatDateCellValue( + $(this).text(), + verboseMap, + dateRegex, + dateFormatter, + ); + $(this).text(cellValue); + } + }); + + $container.find('tbody tr').each(function eachRow() { + $(this) + .find('td') + .each(function eachTd(index) { + if (hasOnlyTextChild(this)) { + const tdText = $(this).text(); + const { textContent, sortAttributeValue } = formatCellValue( + index, + cols, + tdText, + columnFormats, + numberFormat, + dateRegex, + dateFormatter, + ); + $(this).text(textContent); + $(this).attr('data-sort', sortAttributeValue); + } + }); + }); + + $container.find('table').each(function fullWidth() { + this.style = 'width: 100%'; + }); + + if (numGroups === 1) { + // When there is only 1 group by column, + // we use the DataTable plugin to make the header fixed. + // The plugin takes care of the scrolling so we don't need + // overflow: 'auto' on the table. + container.style.overflow = 'hidden'; + const table = $container.find('table').DataTable({ + paging: false, + searching: false, + bInfo: false, + scrollY: `${height}px`, + scrollCollapse: true, + scrollX: true, + }); + table.column('-1').order('desc').draw(); + fixTableHeight($container.find('.dataTables_wrapper'), height); + } else { + // When there is more than 1 group by column we just render the table, without using + // the DataTable plugin, so we need to handle the scrolling ourselves. + // In this case the header is not fixed. + container.style.overflow = 'auto'; + container.style.height = `${height + 10}px`; + } +} + +PivotTable.displayName = 'PivotTable'; +PivotTable.propTypes = propTypes; + +export default PivotTable; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/ReactPivotTable.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/ReactPivotTable.js new file mode 100644 index 000000000000..3885f31b04e9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/ReactPivotTable.js @@ -0,0 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { reactify } from '@superset-ui/core'; +import Component from './PivotTable'; + +export default reactify(Component); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts new file mode 100644 index 000000000000..d992829c7895 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts @@ -0,0 +1,159 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + formatSelectOptions, + D3_FORMAT_DOCS, + D3_FORMAT_OPTIONS, + D3_TIME_FORMAT_OPTIONS, + sections, +} from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['adhoc_filters'], + ['groupby'], + ['columns'], + ['row_limit', null], + ['timeseries_limit_metric'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: true, + description: t('Whether to sort descending or ascending'), + }, + }, + ], + ], + }, + { + label: t('Pivot Options'), + controlSetRows: [ + [ + { + name: 'pandas_aggfunc', + config: { + type: 'SelectControl', + label: t('Aggregation function'), + clearable: false, + choices: formatSelectOptions([ + 'sum', + 'mean', + 'min', + 'max', + 'std', + 'var', + ]), + default: 'sum', + description: t( + 'Aggregate function to apply when pivoting and ' + + 'computing the total rows and columns', + ), + }, + }, + null, + ], + [ + { + name: 'pivot_margins', + config: { + type: 'CheckboxControl', + label: t('Show totals'), + default: true, + description: t('Display total row/column'), + }, + }, + { + name: 'combine_metric', + config: { + type: 'CheckboxControl', + label: t('Combine Metrics'), + default: false, + description: t( + 'Display metrics side by side within each column, as ' + + 'opposed to each column being displayed side by side for each metric.', + ), + }, + }, + ], + [ + { + name: 'transpose_pivot', + config: { + type: 'CheckboxControl', + label: t('Transpose Pivot'), + default: false, + description: t('Swap Groups and Columns'), + }, + }, + ], + ], + }, + { + label: t('Options'), + expanded: true, + controlSetRows: [ + [ + { + name: 'number_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Number format'), + renderTrigger: true, + default: 'SMART_NUMBER', + choices: D3_FORMAT_OPTIONS, + description: D3_FORMAT_DOCS, + }, + }, + ], + [ + { + name: 'date_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Date format'), + renderTrigger: true, + choices: D3_TIME_FORMAT_OPTIONS, + default: 'smart_date', + description: D3_FORMAT_DOCS, + }, + }, + ], + ], + }, + ], + controlOverrides: { + groupby: { includeTime: true }, + columns: { includeTime: true }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnail.png new file mode 100644 index 000000000000..7f003266eb7d Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..3e4745e77a55 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/index.js new file mode 100644 index 000000000000..a141ab60531c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/index.js @@ -0,0 +1,45 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Table'), + description: + t(`Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. + + This chart is being deprecated and we recommend checking out Pivot Table V2 instead!`), + name: t('Pivot Table'), + tags: [t('Legacy')], + thumbnail, + useLegacyApi: true, +}); + +export default class PivotTableChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./ReactPivotTable'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/transformProps.js new file mode 100644 index 000000000000..67a833ff9bc1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/transformProps.js @@ -0,0 +1,37 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { extractTimegrain } from '@superset-ui/core'; + +export default function transformProps(chartProps) { + const { height, datasource, formData, queriesData, rawFormData } = chartProps; + const { groupby, numberFormat, dateFormat } = formData; + const { columnFormats, verboseMap } = datasource; + const granularity = extractTimegrain(rawFormData); + + return { + columnFormats, + data: queriesData[0].data, + dateFormat, + granularity, + height, + numberFormat, + numGroups: groupby.length, + verboseMap, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/utils/fixTableHeight.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/utils/fixTableHeight.js new file mode 100644 index 000000000000..4e55d27c46d7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/utils/fixTableHeight.js @@ -0,0 +1,33 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Fix the height of the table body of a DataTable with scrollY set + */ +export default function fixTableHeight($tableDom, height) { + const headHeight = $tableDom.find('.dataTables_scrollHead').height(); + const filterHeight = $tableDom.find('.dataTables_filter').height() || 0; + const pageLengthHeight = $tableDom.find('.dataTables_length').height() || 0; + const paginationHeight = $tableDom.find('.dataTables_paginate').height() || 0; + const controlsHeight = + pageLengthHeight > filterHeight ? pageLengthHeight : filterHeight; + $tableDom + .find('.dataTables_scrollBody') + .css('max-height', height - headHeight - controlsHeight - paginationHeight); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/utils/formatCells.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/utils/formatCells.ts new file mode 100644 index 000000000000..5e32235da359 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/src/utils/formatCells.ts @@ -0,0 +1,71 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { formatNumber } from '@superset-ui/core'; + +function formatCellValue( + i: number, + cols: string[], + tdText: string, + columnFormats: any, + numberFormat: string, + dateRegex: RegExp, + dateFormatter: any, +) { + const metric: string = cols[i]; + const format: string = columnFormats[metric] || numberFormat || '.3s'; + let textContent: string = tdText; + let sortAttributeValue: any = tdText; + + if (parseFloat(tdText)) { + const parsedValue = parseFloat(tdText); + textContent = formatNumber(format, parsedValue); + sortAttributeValue = parsedValue; + } else { + const regexMatch = dateRegex.exec(tdText); + if (regexMatch) { + const date = new Date(parseFloat(regexMatch[1])); + textContent = dateFormatter(date); + sortAttributeValue = date; + } else if (tdText === 'null') { + textContent = ''; + sortAttributeValue = Number.NEGATIVE_INFINITY; + } + } + + return { textContent, sortAttributeValue }; +} + +function formatDateCellValue( + text: string, + verboseMap: any, + dateRegex: RegExp, + dateFormatter: any, +) { + const regexMatch = dateRegex.exec(text); + let cellValue; + if (regexMatch) { + const date = new Date(parseFloat(regexMatch[1])); + cellValue = dateFormatter(date); + } else { + cellValue = verboseMap[text] || text; + } + return cellValue; +} + +export { formatCellValue, formatDateCellValue }; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/test/PivotTable.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/test/PivotTable.test.ts new file mode 100644 index 000000000000..d70f20008049 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/test/PivotTable.test.ts @@ -0,0 +1,91 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { getTimeFormatterForGranularity } from '@superset-ui/core'; +import { formatCellValue } from '../src/utils/formatCells'; + +describe('pivot table plugin format cells', () => { + const i = 0; + const cols = ['SUM']; + let tdText = '2222222'; + const columnFormats = {}; + const numberFormat = 'SMART_NUMBER'; + const dateRegex = /^__timestamp:(-?\d*\.?\d*)$/; + const dateFormatter = getTimeFormatterForGranularity('P1D'); + + it('render number', () => { + const { textContent, sortAttributeValue } = formatCellValue( + i, + cols, + tdText, + columnFormats, + numberFormat, + dateRegex, + dateFormatter, + ); + expect(textContent).toEqual('2.22M'); + expect(sortAttributeValue).toEqual(2222222); + }); + + it('render date', () => { + tdText = '__timestamp:-126230400000.0'; + + const { textContent } = formatCellValue( + i, + cols, + tdText, + columnFormats, + numberFormat, + dateRegex, + dateFormatter, + ); + expect(textContent).toEqual('1966-01-01'); + }); + + it('render string', () => { + tdText = 'some-text'; + + const { textContent, sortAttributeValue } = formatCellValue( + i, + cols, + tdText, + columnFormats, + numberFormat, + dateRegex, + dateFormatter, + ); + expect(textContent).toEqual(tdText); + expect(sortAttributeValue).toEqual(tdText); + }); + + it('render null', () => { + tdText = 'null'; + + const { textContent, sortAttributeValue } = formatCellValue( + i, + cols, + tdText, + columnFormats, + numberFormat, + dateRegex, + dateFormatter, + ); + expect(textContent).toEqual(''); + expect(sortAttributeValue).toEqual(Number.NEGATIVE_INFINITY); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-pivot-table/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/CHANGELOG.md new file mode 100644 index 000000000000..bb71a3a5fe1c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-rose + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-rose diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/README.md new file mode 100644 index 000000000000..f369ed387a93 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-rose + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-rose.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-rose) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-rose&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-rose) + +This plugin provides Nightingale Rose Diagram for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import RoseChartPlugin from '@superset-ui/legacy-plugin-chart-rose'; + +new RoseChartPlugin().configure({ key: 'rose' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-rose) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/package.json new file mode 100644 index 000000000000..ffb30a9acc07 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/package.json @@ -0,0 +1,40 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-rose", + "version": "0.18.25", + "description": "Superset Legacy Chart - Nightingale Rose Diagram", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "nvd3": "1.8.6", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^16.13.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/ReactRose.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/ReactRose.js new file mode 100644 index 000000000000..bfdd15246068 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/ReactRose.js @@ -0,0 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { reactify } from '@superset-ui/core'; +import Component from './Rose'; + +export default reactify(Component); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/Rose.css b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/Rose.css new file mode 100644 index 000000000000..441e95c5d4cc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/Rose.css @@ -0,0 +1,43 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +.superset-legacy-chart-rose path { + transition: fill-opacity 180ms linear; + stroke: #fff; + stroke-width: 1px; + stroke-opacity: 1; + fill-opacity: 0.75; +} + +.superset-legacy-chart-rose text { + font: 400 12px Arial, sans-serif; + pointer-events: none; +} + +.superset-legacy-chart-rose .clickable path { + cursor: pointer; +} + +.superset-legacy-chart-rose .hover path { + fill-opacity: 1; +} + +.nv-legend .nv-series { + cursor: pointer; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/Rose.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/Rose.js new file mode 100644 index 000000000000..1a60fdbc9513 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/Rose.js @@ -0,0 +1,642 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint no-use-before-define: ["error", { "functions": false }] */ +/* eslint-disable no-restricted-syntax */ +/* eslint-disable react/sort-prop-types */ +import d3 from 'd3'; +import PropTypes from 'prop-types'; +import nv from 'nvd3'; +import { + getTimeFormatter, + getNumberFormatter, + CategoricalColorNamespace, +} from '@superset-ui/core'; +import './Rose.css'; + +const propTypes = { + // Data is an object hashed by numeric value, perhaps timestamp + data: PropTypes.objectOf( + PropTypes.arrayOf( + PropTypes.shape({ + key: PropTypes.arrayOf(PropTypes.string), + name: PropTypes.arrayOf(PropTypes.string), + time: PropTypes.number, + value: PropTypes.number, + }), + ), + ), + width: PropTypes.number, + height: PropTypes.number, + dateTimeFormat: PropTypes.string, + numberFormat: PropTypes.string, + useRichTooltip: PropTypes.bool, + useAreaProportions: PropTypes.bool, +}; + +function copyArc(d) { + return { + startAngle: d.startAngle, + endAngle: d.endAngle, + innerRadius: d.innerRadius, + outerRadius: d.outerRadius, + }; +} + +function sortValues(a, b) { + if (a.value === b.value) { + return a.name > b.name ? 1 : -1; + } + + return b.value - a.value; +} + +function Rose(element, props) { + const { + data, + width, + height, + colorScheme, + dateTimeFormat, + numberFormat, + useRichTooltip, + useAreaProportions, + } = props; + + const div = d3.select(element); + div.classed('superset-legacy-chart-rose', true); + + const datum = data; + const times = Object.keys(datum) + .map(t => parseInt(t, 10)) + .sort((a, b) => a - b); + const numGrains = times.length; + const numGroups = datum[times[0]].length; + const format = getNumberFormatter(numberFormat); + const timeFormat = getTimeFormatter(dateTimeFormat); + const colorFn = CategoricalColorNamespace.getScale(colorScheme); + + d3.select('.nvtooltip').remove(); + div.selectAll('*').remove(); + + const arc = d3.svg.arc(); + const legend = nv.models.legend(); + const tooltip = nv.models.tooltip(); + const state = { disabled: datum[times[0]].map(() => false) }; + + const svg = div.append('svg').attr('width', width).attr('height', height); + + const g = svg.append('g').attr('class', 'rose').append('g'); + + const legendWrap = g.append('g').attr('class', 'legendWrap'); + + function legendData(adatum) { + return adatum[times[0]].map((v, i) => ({ + disabled: state.disabled[i], + key: v.name, + })); + } + + function tooltipData(d, i, adatum) { + const timeIndex = Math.floor(d.arcId / numGroups); + const series = useRichTooltip + ? adatum[times[timeIndex]] + .filter(v => !state.disabled[v.id % numGroups]) + .map(v => ({ + key: v.name, + value: v.value, + color: colorFn(v.name), + highlight: v.id === d.arcId, + })) + : [{ key: d.name, value: d.val, color: colorFn(d.name) }]; + + return { + key: 'Date', + value: d.time, + series, + }; + } + + legend.width(width).color(d => colorFn(d.key)); + legendWrap.datum(legendData(datum)).call(legend); + + tooltip.headerFormatter(timeFormat).valueFormatter(format); + + // Compute max radius, which the largest value will occupy + const roseHeight = height - legend.height(); + const margin = { top: legend.height() }; + const edgeMargin = 35; // space between outermost radius and slice edge + const maxRadius = Math.min(width, roseHeight) / 2 - edgeMargin; + const labelThreshold = 0.05; + const gro = 8; // mouseover radius growth in pixels + const mini = 0.075; + + const centerTranslate = `translate(${width / 2},${ + roseHeight / 2 + margin.top + })`; + const roseWrap = g + .append('g') + .attr('transform', centerTranslate) + .attr('class', 'roseWrap'); + + const labelsWrap = g + .append('g') + .attr('transform', centerTranslate) + .attr('class', 'labelsWrap'); + + const groupLabelsWrap = g + .append('g') + .attr('transform', centerTranslate) + .attr('class', 'groupLabelsWrap'); + + // Compute inner and outer angles for each data point + function computeArcStates(adatum) { + // Find the max sum of values across all time + let maxSum = 0; + let grain = 0; + const sums = []; + for (const t of times) { + const sum = datum[t].reduce( + (a, v, i) => a + (state.disabled[i] ? 0 : v.value), + 0, + ); + maxSum = sum > maxSum ? sum : maxSum; + sums[grain] = sum; + grain += 1; + } + + // Compute angle occupied by each time grain + const dtheta = (Math.PI * 2) / numGrains; + const angles = []; + for (let i = 0; i <= numGrains; i += 1) { + angles.push(dtheta * i - Math.PI / 2); + } + + // Compute proportion + const P = maxRadius / maxSum; + const Q = P * maxRadius; + const computeOuterRadius = (value, innerRadius) => + useAreaProportions + ? Math.sqrt(Q * value + innerRadius * innerRadius) + : P * value + innerRadius; + + const arcSt = { + data: [], + extend: {}, + push: {}, + pieStart: {}, + pie: {}, + pieOver: {}, + mini: {}, + labels: [], + groupLabels: [], + }; + let arcId = 0; + for (let i = 0; i < numGrains; i += 1) { + const t = times[i]; + const startAngle = angles[i]; + const endAngle = angles[i + 1]; + const G = (2 * Math.PI) / sums[i]; + let innerRadius = 0; + let outerRadius; + let pieStartAngle = 0; + let pieEndAngle; + for (const v of adatum[t]) { + const val = state.disabled[arcId % numGroups] ? 0 : v.value; + const { name, time } = v; + v.id = arcId; + outerRadius = computeOuterRadius(val, innerRadius); + arcSt.data.push({ + startAngle, + endAngle, + innerRadius, + outerRadius, + name, + arcId, + val, + time, + }); + arcSt.extend[arcId] = { + startAngle, + endAngle, + innerRadius, + name, + outerRadius: outerRadius + gro, + }; + arcSt.push[arcId] = { + startAngle, + endAngle, + innerRadius: innerRadius + gro, + outerRadius: outerRadius + gro, + }; + arcSt.pieStart[arcId] = { + startAngle, + endAngle, + innerRadius: mini * maxRadius, + outerRadius: maxRadius, + }; + arcSt.mini[arcId] = { + startAngle, + endAngle, + innerRadius: innerRadius * mini, + outerRadius: outerRadius * mini, + }; + arcId += 1; + innerRadius = outerRadius; + } + const labelArc = { ...arcSt.data[i * numGroups] }; + labelArc.outerRadius = maxRadius + 20; + labelArc.innerRadius = maxRadius + 15; + arcSt.labels.push(labelArc); + for (const v of adatum[t].concat().sort(sortValues)) { + const val = state.disabled[v.id % numGroups] ? 0 : v.value; + pieEndAngle = G * val + pieStartAngle; + arcSt.pie[v.id] = { + startAngle: pieStartAngle, + endAngle: pieEndAngle, + innerRadius: maxRadius * mini, + outerRadius: maxRadius, + percent: v.value / sums[i], + }; + arcSt.pieOver[v.id] = { + startAngle: pieStartAngle, + endAngle: pieEndAngle, + innerRadius: maxRadius * mini, + outerRadius: maxRadius + gro, + }; + pieStartAngle = pieEndAngle; + } + } + arcSt.groupLabels = arcSt.data.slice(0, numGroups); + + return arcSt; + } + + let arcSt = computeArcStates(datum); + + function tween(target, resFunc) { + return function doTween(d) { + const interpolate = d3.interpolate(copyArc(d), copyArc(target)); + + return t => resFunc(Object.assign(d, interpolate(t))); + }; + } + + function arcTween(target) { + return tween(target, d => arc(d)); + } + + function translateTween(target) { + return tween(target, d => `translate(${arc.centroid(d)})`); + } + + // Grab the ID range of segments stand between + // this segment and the edge of the circle + const segmentsToEdgeCache = {}; + function getSegmentsToEdge(arcId) { + if (segmentsToEdgeCache[arcId]) { + return segmentsToEdgeCache[arcId]; + } + const timeIndex = Math.floor(arcId / numGroups); + segmentsToEdgeCache[arcId] = [arcId + 1, numGroups * (timeIndex + 1) - 1]; + + return segmentsToEdgeCache[arcId]; + } + + // Get the IDs of all segments in a timeIndex + const segmentsInTimeCache = {}; + function getSegmentsInTime(arcId) { + if (segmentsInTimeCache[arcId]) { + return segmentsInTimeCache[arcId]; + } + const timeIndex = Math.floor(arcId / numGroups); + segmentsInTimeCache[arcId] = [ + timeIndex * numGroups, + (timeIndex + 1) * numGroups - 1, + ]; + + return segmentsInTimeCache[arcId]; + } + + let clickId = -1; + let inTransition = false; + const ae = roseWrap + .selectAll('g') + .data(JSON.parse(JSON.stringify(arcSt.data))) // deep copy data state + .enter() + .append('g') + .attr('class', 'segment') + .classed('clickable', true) + .on('mouseover', mouseover) + .on('mouseout', mouseout) + .on('mousemove', mousemove) + .on('click', click); + + const labels = labelsWrap + .selectAll('g') + .data(JSON.parse(JSON.stringify(arcSt.labels))) + .enter() + .append('g') + .attr('class', 'roseLabel') + .attr('transform', d => `translate(${arc.centroid(d)})`); + + labels + .append('text') + .style('text-anchor', 'middle') + .style('fill', '#000') + .text(d => timeFormat(d.time)); + + const groupLabels = groupLabelsWrap + .selectAll('g') + .data(JSON.parse(JSON.stringify(arcSt.groupLabels))) + .enter() + .append('g'); + + groupLabels + .style('opacity', 0) + .attr('class', 'roseGroupLabels') + .append('text') + .style('text-anchor', 'middle') + .style('fill', '#000') + .text(d => d.name); + + const arcs = ae + .append('path') + .attr('class', 'arc') + .attr('fill', d => colorFn(d.name)) + .attr('d', arc); + + function mousemove() { + tooltip(); + } + + function mouseover(b, i) { + tooltip.data(tooltipData(b, i, datum)).hidden(false); + const $this = d3.select(this); + $this.classed('hover', true); + if (clickId < 0 && !inTransition) { + $this + .select('path') + .interrupt() + .transition() + .duration(180) + .attrTween('d', arcTween(arcSt.extend[i])); + const edge = getSegmentsToEdge(i); + arcs + .filter(d => edge[0] <= d.arcId && d.arcId <= edge[1]) + .interrupt() + .transition() + .duration(180) + .attrTween('d', d => arcTween(arcSt.push[d.arcId])(d)); + } else if (!inTransition) { + const segments = getSegmentsInTime(clickId); + if (segments[0] <= b.arcId && b.arcId <= segments[1]) { + $this + .select('path') + .interrupt() + .transition() + .duration(180) + .attrTween('d', arcTween(arcSt.pieOver[i])); + } + } + } + + function mouseout(b, i) { + tooltip.hidden(true); + const $this = d3.select(this); + $this.classed('hover', false); + if (clickId < 0 && !inTransition) { + $this + .select('path') + .interrupt() + .transition() + .duration(180) + .attrTween('d', arcTween(arcSt.data[i])); + const edge = getSegmentsToEdge(i); + arcs + .filter(d => edge[0] <= d.arcId && d.arcId <= edge[1]) + .interrupt() + .transition() + .duration(180) + .attrTween('d', d => arcTween(arcSt.data[d.arcId])(d)); + } else if (!inTransition) { + const segments = getSegmentsInTime(clickId); + if (segments[0] <= b.arcId && b.arcId <= segments[1]) { + $this + .select('path') + .interrupt() + .transition() + .duration(180) + .attrTween('d', arcTween(arcSt.pie[i])); + } + } + } + + function click(b, i) { + if (inTransition) { + return; + } + const delay = d3.event.altKey ? 3750 : 375; + const segments = getSegmentsInTime(i); + if (clickId < 0) { + inTransition = true; + clickId = i; + labels + .interrupt() + .transition() + .duration(delay) + .attrTween('transform', d => + translateTween({ + outerRadius: 0, + innerRadius: 0, + startAngle: d.startAngle, + endAngle: d.endAngle, + })(d), + ) + .style('opacity', 0); + groupLabels + .attr( + 'transform', + `translate(${arc.centroid({ + outerRadius: maxRadius + 20, + innerRadius: maxRadius + 15, + startAngle: arcSt.data[i].startAngle, + endAngle: arcSt.data[i].endAngle, + })})`, + ) + .interrupt() + .transition() + .delay(delay) + .duration(delay) + .attrTween('transform', d => + translateTween({ + outerRadius: maxRadius + 20, + innerRadius: maxRadius + 15, + startAngle: arcSt.pie[segments[0] + d.arcId].startAngle, + endAngle: arcSt.pie[segments[0] + d.arcId].endAngle, + })(d), + ) + .style('opacity', d => + state.disabled[d.arcId] || + arcSt.pie[segments[0] + d.arcId].percent < labelThreshold + ? 0 + : 1, + ); + ae.classed( + 'clickable', + d => segments[0] > d.arcId || d.arcId > segments[1], + ); + arcs + .filter(d => segments[0] <= d.arcId && d.arcId <= segments[1]) + .interrupt() + .transition() + .duration(delay) + .attrTween('d', d => arcTween(arcSt.pieStart[d.arcId])(d)) + .transition() + .duration(delay) + .attrTween('d', d => arcTween(arcSt.pie[d.arcId])(d)) + .each('end', () => { + inTransition = false; + }); + arcs + .filter(d => segments[0] > d.arcId || d.arcId > segments[1]) + .interrupt() + .transition() + .duration(delay) + .attrTween('d', d => arcTween(arcSt.mini[d.arcId])(d)); + } else if (clickId < segments[0] || segments[1] < clickId) { + inTransition = true; + const clickSegments = getSegmentsInTime(clickId); + labels + .interrupt() + .transition() + .delay(delay) + .duration(delay) + .attrTween('transform', d => + translateTween(arcSt.labels[d.arcId / numGroups])(d), + ) + .style('opacity', 1); + groupLabels + .interrupt() + .transition() + .duration(delay) + .attrTween( + 'transform', + translateTween({ + outerRadius: maxRadius + 20, + innerRadius: maxRadius + 15, + startAngle: arcSt.data[clickId].startAngle, + endAngle: arcSt.data[clickId].endAngle, + }), + ) + .style('opacity', 0); + ae.classed('clickable', true); + arcs + .filter(d => clickSegments[0] <= d.arcId && d.arcId <= clickSegments[1]) + .interrupt() + .transition() + .duration(delay) + .attrTween('d', d => arcTween(arcSt.pieStart[d.arcId])(d)) + .transition() + .duration(delay) + .attrTween('d', d => arcTween(arcSt.data[d.arcId])(d)) + .each('end', () => { + clickId = -1; + inTransition = false; + }); + arcs + .filter(d => clickSegments[0] > d.arcId || d.arcId > clickSegments[1]) + .interrupt() + .transition() + .delay(delay) + .duration(delay) + .attrTween('d', d => arcTween(arcSt.data[d.arcId])(d)); + } + } + + function updateActive() { + const delay = d3.event.altKey ? 3000 : 300; + legendWrap.datum(legendData(datum)).call(legend); + const nArcSt = computeArcStates(datum); + inTransition = true; + if (clickId < 0) { + arcs + .style('opacity', 1) + .interrupt() + .transition() + .duration(delay) + .attrTween('d', d => arcTween(nArcSt.data[d.arcId])(d)) + .each('end', () => { + inTransition = false; + arcSt = nArcSt; + }) + .transition() + .duration(0) + .style('opacity', d => (state.disabled[d.arcId % numGroups] ? 0 : 1)); + } else { + const segments = getSegmentsInTime(clickId); + arcs + .style('opacity', 1) + .interrupt() + .transition() + .duration(delay) + .attrTween('d', d => + segments[0] <= d.arcId && d.arcId <= segments[1] + ? arcTween(nArcSt.pie[d.arcId])(d) + : arcTween(nArcSt.mini[d.arcId])(d), + ) + .each('end', () => { + inTransition = false; + arcSt = nArcSt; + }) + .transition() + .duration(0) + .style('opacity', d => (state.disabled[d.arcId % numGroups] ? 0 : 1)); + groupLabels + .interrupt() + .transition() + .duration(delay) + .attrTween('transform', d => + translateTween({ + outerRadius: maxRadius + 20, + innerRadius: maxRadius + 15, + startAngle: nArcSt.pie[segments[0] + d.arcId].startAngle, + endAngle: nArcSt.pie[segments[0] + d.arcId].endAngle, + })(d), + ) + .style('opacity', d => + state.disabled[d.arcId] || + arcSt.pie[segments[0] + d.arcId].percent < labelThreshold + ? 0 + : 1, + ); + } + } + + legend.dispatch.on('stateChange', newState => { + if (state.disabled !== newState.disabled) { + state.disabled = newState.disabled; + updateActive(); + } + }); +} + +Rose.displayName = 'Rose'; +Rose.propTypes = propTypes; + +export default Rose; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx new file mode 100644 index 000000000000..ed173951ddd3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx @@ -0,0 +1,280 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + formatSelectOptions, + D3_FORMAT_DOCS, + D3_FORMAT_OPTIONS, + D3_TIME_FORMAT_OPTIONS, + sections, +} from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['adhoc_filters'], + ['groupby'], + ['limit', 'timeseries_limit_metric'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: true, + description: t('Whether to sort descending or ascending'), + }, + }, + { + name: 'contribution', + config: { + type: 'CheckboxControl', + label: t('Contribution'), + default: false, + description: t('Compute the contribution to the total'), + }, + }, + ], + ['row_limit', null], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + [ + { + name: 'number_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Number format'), + renderTrigger: true, + default: 'SMART_NUMBER', + choices: D3_FORMAT_OPTIONS, + description: D3_FORMAT_DOCS, + }, + }, + { + name: 'date_time_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Date Time Format'), + renderTrigger: true, + default: 'smart_date', + choices: D3_TIME_FORMAT_OPTIONS, + description: D3_FORMAT_DOCS, + }, + }, + ], + [ + { + name: 'rich_tooltip', + config: { + type: 'CheckboxControl', + label: t('Rich Tooltip'), + renderTrigger: true, + default: true, + description: t( + 'The rich tooltip shows a list of all series for that point in time', + ), + }, + }, + { + name: 'rose_area_proportion', + config: { + type: 'CheckboxControl', + label: t('Use Area Proportions'), + description: t( + 'Check if the Rose Chart should use segment area instead of ' + + 'segment radius for proportioning', + ), + default: false, + renderTrigger: true, + }, + }, + ], + ], + }, + { + label: t('Advanced Analytics'), + tabOverride: 'data', + description: t( + 'This section contains options ' + + 'that allow for advanced analytical post processing ' + + 'of query results', + ), + controlSetRows: [ + // eslint-disable-next-line react/jsx-key + [

{t('Rolling Window')}

], + [ + { + name: 'rolling_type', + config: { + type: 'SelectControl', + label: t('Rolling Function'), + default: 'None', + choices: formatSelectOptions([ + 'None', + 'mean', + 'sum', + 'std', + 'cumsum', + ]), + description: t( + 'Defines a rolling window function to apply, works along ' + + 'with the [Periods] text box', + ), + }, + }, + ], + [ + { + name: 'rolling_periods', + config: { + type: 'TextControl', + label: t('Periods'), + isInt: true, + description: t( + 'Defines the size of the rolling window function, ' + + 'relative to the time granularity selected', + ), + }, + }, + { + name: 'min_periods', + config: { + type: 'TextControl', + label: t('Min Periods'), + isInt: true, + description: t( + 'The minimum number of rolling periods required to show ' + + 'a value. For instance if you do a cumulative sum on 7 days ' + + 'you may want your "Min Period" to be 7, so that all data points ' + + 'shown are the total of 7 periods. This will hide the "ramp up" ' + + 'taking place over the first 7 periods', + ), + }, + }, + ], + // eslint-disable-next-line react/jsx-key + [

{t('Time Comparison')}

], + [ + { + name: 'time_compare', + config: { + type: 'SelectControl', + multi: true, + freeForm: true, + label: t('Time Shift'), + choices: formatSelectOptions([ + '1 day', + '1 week', + '28 days', + '30 days', + '52 weeks', + '1 year', + '104 weeks', + '2 years', + ]), + description: t( + 'Overlay one or more timeseries from a ' + + 'relative time period. Expects relative time deltas ' + + 'in natural language (example: 24 hours, 7 days, ' + + '52 weeks, 365 days). Free text is supported.', + ), + }, + }, + { + name: 'comparison_type', + config: { + type: 'SelectControl', + label: t('Calculation type'), + default: 'values', + choices: [ + ['values', 'Actual Values'], + ['absolute', 'Difference'], + ['percentage', 'Percentage change'], + ['ratio', 'Ratio'], + ], + description: t( + 'How to display time shifts: as individual lines; as the ' + + 'difference between the main time series and each time shift; ' + + 'as the percentage change; or as the ratio between series and time shifts.', + ), + }, + }, + ], + // eslint-disable-next-line react/jsx-key + [

{t('Python Functions')}

], + // eslint-disable-next-line react/jsx-key + [

pandas.resample

], + [ + { + name: 'resample_rule', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Rule'), + default: null, + choices: formatSelectOptions([ + '1T', + '1H', + '1D', + '7D', + '1M', + '1AS', + ]), + description: t('Pandas resample rule'), + }, + }, + { + name: 'resample_method', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Method'), + default: null, + choices: formatSelectOptions([ + 'asfreq', + 'bfill', + 'ffill', + 'median', + 'mean', + 'sum', + ]), + description: t('Pandas resample method'), + }, + }, + ], + ], + }, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/images/thumbnail.png new file mode 100644 index 000000000000..9e0103699780 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..03935f9ee4a1 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/index.js new file mode 100644 index 000000000000..6c215aea0393 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/index.js @@ -0,0 +1,52 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Ranking'), + description: t( + 'A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.', + ), + name: t('Nightingale Rose Chart'), + tags: [ + t('Legacy'), + t('Advanced-Analytics'), + t('Circular'), + t('Multi-Layers'), + t('Pattern'), + t('Time'), + t('Trend'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class RoseChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./ReactRose'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/transformProps.js new file mode 100644 index 000000000000..1e5407b16d9d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/src/transformProps.js @@ -0,0 +1,39 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function transformProps(chartProps) { + const { width, height, formData, queriesData } = chartProps; + const { + colorScheme, + dateTimeFormat, + numberFormat, + richTooltip, + roseAreaProportion, + } = formData; + + return { + width, + height, + data: queriesData[0].data, + colorScheme, + dateTimeFormat, + numberFormat, + useAreaProportions: roseAreaProportion, + useRichTooltip: richTooltip, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-rose/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/CHANGELOG.md new file mode 100644 index 000000000000..498477e6bff5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/CHANGELOG.md @@ -0,0 +1,27 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-sankey-loop diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/README.md new file mode 100644 index 000000000000..ba1f2d36c27c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-sankey-loop + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-sankey.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-sankey) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-sankey&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-sankey) + +This plugin provides Sankey Diagram with loops for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import SankeyLoopChartPlugin from '@superset-ui/legacy-plugin-chart-sankey-loop'; + +new SankeyLoopChartPlugin().configure({ key: 'sankey' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-sankey-loop) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/package.json new file mode 100644 index 000000000000..4de9c5cda098 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/package.json @@ -0,0 +1,37 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-sankey-loop", + "version": "0.18.25", + "description": "Superset Legacy Chart - Sankey Diagram with Loops", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3-sankey-diagram": "^0.7.3", + "d3-selection": "^1.4.0", + "prop-types": "^15.6.2" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/ReactSankeyLoop.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/ReactSankeyLoop.js new file mode 100644 index 000000000000..034f97588c23 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/ReactSankeyLoop.js @@ -0,0 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { reactify } from '@superset-ui/core'; +import Component from './SankeyLoop'; + +export default reactify(Component); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/SankeyLoop.css b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/SankeyLoop.css new file mode 100644 index 000000000000..0cd18e91021e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/SankeyLoop.css @@ -0,0 +1,57 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +.superset-legacy-chart-sankey-loop .node rect { + cursor: move; + fill-opacity: 0.9; + shape-rendering: crispEdges; +} + +.superset-legacy-chart-sankey-loop .node text { + pointer-events: none; + text-shadow: 0 1px 0 #fff; +} + +.superset-legacy-chart-sankey-loop .link { + fill: none; + stroke: #000; + stroke-opacity: 0.2; +} + +.superset-legacy-chart-sankey-loop .link:hover { + stroke-opacity: 0.5; +} + +.superset-legacy-chart-sankey-loop .link path { + opacity: 0.2; + stroke-opacity: 0; +} + +.superset-legacy-chart-sankey-loop .link:hover path { + opacity: 0.5; +} + +.superset-legacy-chart-sankey-loop .link text { + fill: #666; + font-size: 10px; +} + +.superset-legacy-chart-sankey-loop .link:hover text { + opacity: 1; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/SankeyLoop.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/SankeyLoop.js new file mode 100644 index 000000000000..bddf570026ba --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/SankeyLoop.js @@ -0,0 +1,142 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/sort-prop-types */ +import PropTypes from 'prop-types'; +import { select } from 'd3-selection'; +import { sankeyDiagram, sankey } from 'd3-sankey-diagram'; +import { + getNumberFormatter, + NumberFormats, + CategoricalColorNamespace, +} from '@superset-ui/core'; + +import './SankeyLoop.css'; + +// a problem with 'd3-sankey-diagram' is that the sankey().extent() paramters, which +// informs the layout of the bounding box of the sankey columns, does not account +// for labels and paths which happen to be layedout outside that rectangle. +// for that reason i've selected relatively large default left/right margins, and have +// made 'margin' a property. i have raised an issue in the chart repo: +// +// https://github.com/ricklupton/d3-sankey-diagram/issues/20 + +const defaultMargin = { + top: 0, + right: 80, + bottom: 0, + left: 80, +}; + +const propTypes = { + data: PropTypes.arrayOf( + PropTypes.shape({ + source: PropTypes.string, + target: PropTypes.string, + value: PropTypes.number, + }), + ), + width: PropTypes.number, + height: PropTypes.number, + colorScheme: PropTypes.string, + margin: PropTypes.shape({ + top: PropTypes.number, + right: PropTypes.number, + bottom: PropTypes.number, + left: PropTypes.number, + }), +}; + +const percentFormat = getNumberFormatter(NumberFormats.PERCENT_1_POINT); +const countFormat = getNumberFormatter(); + +function computeGraph(links) { + // this assumes source and target are string values + const nodes = Array.from( + links.reduce( + (set, { source, target }) => set.add(source).add(target), + new Set(), + ), + ).map(id => ({ id, name: id })); + + return { + nodes, + + // links are shallow copied as the chart layout modifies them, and it is best to + // leave the passed data un-altered + links: links.map(d => ({ ...d })), + }; +} + +function SankeyLoop(element, props) { + const { data, width, height, colorScheme } = props; + const color = CategoricalColorNamespace.getScale(colorScheme); + const margin = { ...defaultMargin, ...props.margin }; + const innerWidth = width - margin.left - margin.right; + const innerHeight = height - margin.top - margin.bottom; + + const layout = sankey() + .nodeId(d => d.id) + .extent([ + [margin.left, margin.top], + [innerWidth, innerHeight], + ]); + + const diagram = sankeyDiagram() + .nodeTitle(d => d.name) + .linkTitle( + ({ + source: { name: sName, value: sValue }, + target: { name: tName }, + value, + }) => + `${sName} → ${tName}: ${countFormat(value)} (${percentFormat( + value / sValue, + )})`, + ) + .linkColor(d => color(d.source.name)); + + const div = select(element); + div.selectAll('*').remove(); + + const svg = div + .append('svg') + .classed('superset-legacy-chart-sankey-loop', true) + .style('width', width) + .style('height', height) + .datum(layout(computeGraph(data))) + .call(diagram); + + svg + .selectAll('g.link') + .classed('link', true) + .append('text') + .attr('x', d => d.points[0].x) + .attr('y', d => d.points[0].y) + .attr('dy', 3) + .attr('dx', 2) + .text( + d => + `${countFormat(d.value)} (${percentFormat(d.value / d.source.value)})`, + ); +} + +SankeyLoop.displayName = 'SankeyLoop'; +SankeyLoop.propTypes = propTypes; + +export default SankeyLoop; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts new file mode 100644 index 000000000000..d09c4aedc73c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts @@ -0,0 +1,49 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { ControlPanelConfig, sections } from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['groupby'], + ['metric'], + ['adhoc_filters'], + ['row_limit'], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [['color_scheme']], + }, + ], + controlOverrides: { + groupby: { + label: t('Source / Target'), + description: t('Choose a source and a target'), + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/images/thumbnail.png new file mode 100644 index 000000000000..5d814582a51d Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..5d814582a51d Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/index.js new file mode 100644 index 000000000000..38922d5a778e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/index.js @@ -0,0 +1,41 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + credits: ['https://github.com/ricklupton/d3-sankey-diagram'], + description: '', + name: t('Sankey Diagram with Loops'), + thumbnail, + useLegacyApi: true, +}); + +export default class SankeyChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./ReactSankeyLoop'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/transformProps.js new file mode 100644 index 000000000000..b62639a87fee --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/src/transformProps.js @@ -0,0 +1,30 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function transformProps(chartProps) { + const { width, height, formData, queriesData, margin } = chartProps; + const { colorScheme } = formData; + + return { + width, + height, + data: queriesData[0].data, + colorScheme, + margin, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey-loop/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/CHANGELOG.md new file mode 100644 index 000000000000..1e9f97f57410 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-sankey + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-sankey diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/README.md new file mode 100644 index 000000000000..39ddc8cee66b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-sankey + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-sankey.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-sankey) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-sankey&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-sankey) + +This plugin provides Sankey Diagram for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import SankeyChartPlugin from '@superset-ui/legacy-plugin-chart-sankey'; + +new SankeyChartPlugin().configure({ key: 'sankey' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-sankey) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/package.json new file mode 100644 index 000000000000..c8c43aa41e42 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/package.json @@ -0,0 +1,40 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-sankey", + "version": "0.18.25", + "description": "Superset Legacy Chart - Sankey Diagram", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-sankey": "^0.4.2", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^16.13.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/ReactSankey.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/ReactSankey.jsx new file mode 100644 index 000000000000..b8c6278f069e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/ReactSankey.jsx @@ -0,0 +1,74 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { reactify, styled } from '@superset-ui/core'; +import PropTypes from 'prop-types'; +import SanKey from './Sankey'; + +const ReactSanKey = reactify(SanKey); + +const SankeyComponent = ({ className, ...otherProps }) => ( +
+ +
+); + +SankeyComponent.propTypes = { + className: PropTypes.string.isRequired, +}; + +export default styled(SankeyComponent)` + .superset-legacy-chart-sankey { + .node { + rect { + cursor: move; + fill-opacity: 0.9; + shape-rendering: crispEdges; + } + text { + pointer-events: none; + text-shadow: 0 1px 0 #fff; + font-size: ${({ fontSize }) => fontSize}em; + } + } + .link { + fill: none; + stroke: #000; + stroke-opacity: 0.2; + &:hover { + stroke-opacity: 0.5; + } + } + .opacity-0 { + opacity: 0; + } + } + .sankey-tooltip { + position: absolute; + width: auto; + background: #ddd; + padding: 10px; + font-size: ${({ fontSize }) => fontSize}em; + font-weight: ${({ theme }) => theme.typography.weights.light}; + color: #000; + border: 1px solid #fff; + text-align: center; + pointer-events: none; + } +`; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/Sankey.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/Sankey.js new file mode 100644 index 000000000000..b847f754133b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/Sankey.js @@ -0,0 +1,249 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable no-param-reassign */ +/* eslint-disable react/sort-prop-types */ +import d3 from 'd3'; +import PropTypes from 'prop-types'; +import { sankey as d3Sankey } from 'd3-sankey'; +import { + getNumberFormatter, + NumberFormats, + CategoricalColorNamespace, +} from '@superset-ui/core'; +import { getOverlappingElements } from './utils'; + +const propTypes = { + data: PropTypes.arrayOf( + PropTypes.shape({ + source: PropTypes.string, + target: PropTypes.string, + value: PropTypes.number, + }), + ), + width: PropTypes.number, + height: PropTypes.number, + colorScheme: PropTypes.string, +}; + +const formatNumber = getNumberFormatter(NumberFormats.FLOAT); + +function Sankey(element, props) { + const { data, width, height, colorScheme } = props; + const div = d3.select(element); + div.classed(`superset-legacy-chart-sankey`, true); + const margin = { + top: 5, + right: 5, + bottom: 5, + left: 5, + }; + const innerWidth = width - margin.left - margin.right; + const innerHeight = height - margin.top - margin.bottom; + + div.selectAll('*').remove(); + const tooltip = div + .append('div') + .attr('class', 'sankey-tooltip') + .style('opacity', 0); + const svg = div + .append('svg') + .attr('width', innerWidth + margin.left + margin.right) + .attr('height', innerHeight + margin.top + margin.bottom) + .append('g') + .attr('transform', `translate(${margin.left},${margin.top})`); + + const colorFn = CategoricalColorNamespace.getScale(colorScheme); + + const sankey = d3Sankey() + .nodeWidth(15) + .nodePadding(10) + .size([innerWidth, innerHeight]); + + const path = sankey.link(); + + let nodes = {}; + // Compute the distinct nodes from the links. + const links = data.map(row => { + const link = { ...row }; + link.source = + nodes[link.source] || (nodes[link.source] = { name: link.source }); + link.target = + nodes[link.target] || (nodes[link.target] = { name: link.target }); + link.value = Number(link.value); + + return link; + }); + nodes = d3.values(nodes); + + sankey.nodes(nodes).links(links).layout(32); + + function getTooltipHtml(d) { + let html; + + if (d.sourceLinks) { + // is node + html = `${d.name} Value: ${formatNumber( + d.value, + )}`; + } else { + const val = formatNumber(d.value); + const sourcePercent = d3.round((d.value / d.source.value) * 100, 1); + const targetPercent = d3.round((d.value / d.target.value) * 100, 1); + + html = [ + "
Path Value: ", + val, + '
', + "
", + "", + Number.isFinite(sourcePercent) ? sourcePercent : '100', + '% of ', + d.source.name, + '
', + `${ + Number.isFinite(targetPercent) ? targetPercent : '--' + }% of `, + d.target.name, + '
', + ].join(''); + } + + return html; + } + + function onmouseover(d) { + tooltip + .html(() => getTooltipHtml(d)) + .transition() + .duration(200); + const { height: tooltipHeight, width: tooltipWidth } = tooltip + .node() + .getBoundingClientRect(); + tooltip + .style( + 'left', + `${Math.min(d3.event.offsetX + 10, width - tooltipWidth)}px`, + ) + .style( + 'top', + `${Math.min(d3.event.offsetY + 10, height - tooltipHeight)}px`, + ) + .style('position', 'absolute') + .style('opacity', 0.95); + } + + function onmouseout() { + tooltip.transition().duration(100).style('opacity', 0); + } + + const link = svg + .append('g') + .selectAll('.link') + .data(links) + .enter() + .append('path') + .attr('class', 'link') + .attr('d', path) + .style('stroke-width', d => Math.max(1, d.dy)) + .sort((a, b) => b.dy - a.dy) + .on('mouseover', onmouseover) + .on('mouseout', onmouseout); + + function dragmove(d) { + d3.select(this).attr( + 'transform', + `translate(${d.x},${(d.y = Math.max( + 0, + Math.min(height - d.dy, d3.event.y), + ))})`, + ); + sankey.relayout(); + link.attr('d', path); + } + + function checkVisibility() { + const elements = div.selectAll('.node')[0] ?? []; + const overlappingElements = getOverlappingElements(elements); + + elements.forEach(el => { + const text = el.getElementsByTagName('text')[0]; + + if (text) { + if (overlappingElements.includes(el)) { + text.classList.add('opacity-0'); + } else { + text.classList.remove('opacity-0'); + } + } + }); + } + + const node = svg + .append('g') + .selectAll('.node') + .data(nodes) + .enter() + .append('g') + .attr('class', 'node') + .attr('transform', d => `translate(${d.x},${d.y})`) + .call( + d3.behavior + .drag() + .origin(d => d) + .on('dragstart', function dragStart() { + this.parentNode.append(this); + }) + .on('drag', dragmove) + .on('dragend', checkVisibility), + ); + const minRectHeight = 5; + node + .append('rect') + .attr('height', d => (d.dy > minRectHeight ? d.dy : minRectHeight)) + .attr('width', sankey.nodeWidth()) + .style('fill', d => { + const name = d.name || 'N/A'; + d.color = colorFn(name.replace(/ .*/, '')); + + return d.color; + }) + .style('stroke', d => d3.rgb(d.color).darker(2)) + .on('mouseover', onmouseover) + .on('mouseout', onmouseout); + + node + .append('text') + .attr('x', -6) + .attr('y', d => d.dy / 2) + .attr('dy', '.35em') + .attr('text-anchor', 'end') + .attr('transform', null) + .text(d => d.name) + .attr('class', 'opacity-0') + .filter(d => d.x < innerWidth / 2) + .attr('x', 6 + sankey.nodeWidth()) + .attr('text-anchor', 'start'); + + checkVisibility(); +} + +Sankey.displayName = 'Sankey'; +Sankey.propTypes = propTypes; + +export default Sankey; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts new file mode 100644 index 000000000000..6ee16465cff0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts @@ -0,0 +1,72 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { ControlPanelConfig, sections } from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + [ + { + name: 'groupby', + override: { + label: t('Source / Target'), + description: t('Choose a source and a target'), + }, + }, + ], + ['metric'], + ['adhoc_filters'], + [ + { + name: 'row_limit', + override: { + description: t( + 'Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.', + ), + }, + }, + ], + [ + { + name: 'sort_by_metric', + config: { + type: 'CheckboxControl', + label: t('Sort by metric'), + description: t( + 'Whether to sort results by the selected metric in descending order.', + ), + }, + }, + ], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [['color_scheme']], + }, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/images/Sankey.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/images/Sankey.jpg new file mode 100644 index 000000000000..06b1fa8a4e88 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/images/Sankey.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/images/Sankey2.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/images/Sankey2.jpg new file mode 100644 index 000000000000..15bca65a19d5 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/images/Sankey2.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/images/thumbnail.png new file mode 100644 index 000000000000..6bf13f8fd623 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..231316b88af6 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/index.js new file mode 100644 index 000000000000..5b90e4b4b384 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/index.js @@ -0,0 +1,58 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import example1 from './images/Sankey.jpg'; +import example2 from './images/Sankey2.jpg'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Flow'), + credits: ['https://github.com/d3/d3-sankey'], + description: t( + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.", + ), + exampleGallery: [ + { url: example1, description: t('Demographics') }, + { url: example2, description: t('Survey Responses') }, + ], + name: t('Sankey Diagram'), + tags: [ + t('Categorical'), + t('Directional'), + t('Legacy'), + t('Percentages'), + t('Proportional'), + t('Relational'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class SankeyChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./ReactSankey'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/tests/utils.test.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/tests/utils.test.js new file mode 100644 index 000000000000..d679d6bbc6c8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/tests/utils.test.js @@ -0,0 +1,93 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { getOverlappingElements, isOverlapping } from '../utils'; + +const overlapRects = [ + { + x: 10, + y: 10, + width: 10, + height: 10, + }, + { + x: 12, + y: 12, + width: 12, + height: 12, + }, + { + x: 32, + y: 32, + width: 32, + height: 32, + }, +]; + +const notOverlapRects = [ + { + x: 10, + y: 10, + width: 10, + height: 10, + }, + { + x: 24, + y: 15, + width: 15, + height: 15, + }, + { + x: 32, + y: 32, + width: 32, + height: 32, + }, +]; + +const createSVGs = objects => + objects.map(data => { + const el = document.createElementNS('http://www.w3.org/2000/svg', 'text'); + el.getBoundingClientRect = jest.fn(() => data); + + return el; + }); + +// https://www.khanacademy.org/computer-programming/rectx-y-width-height-radius/839496660 +describe('legacy-plugin-chart-sankey/utils', () => { + it('isOverlapping to be truthy', () => { + const [rect1, rect2] = overlapRects; + expect(isOverlapping(rect1, rect2)).toBeTruthy(); + }); + + it('isOverlapping to be falsy', () => { + const [rect1, rect2] = notOverlapRects; + expect(isOverlapping(rect1, rect2)).toBeFalsy(); + }); + + it('getOverlappingElements to be truthy', () => { + const elements = createSVGs(overlapRects); + expect(getOverlappingElements(elements).length).toBe(2); + }); + + it('getOverlappingElements to be falsy', () => { + const elements = createSVGs(notOverlapRects); + expect(getOverlappingElements(elements).length).toBe(0); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/transformProps.js new file mode 100644 index 000000000000..5297994fb952 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/transformProps.js @@ -0,0 +1,32 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { getLabelFontSize } from './utils'; + +export default function transformProps(chartProps) { + const { width, height, formData, queriesData } = chartProps; + const { colorScheme } = formData; + + return { + width, + height, + data: queriesData[0].data, + colorScheme, + fontSize: getLabelFontSize(width), + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/utils.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/utils.ts new file mode 100644 index 000000000000..a68dd7bbfbc8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/src/utils.ts @@ -0,0 +1,81 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +type Rect = { + x: number; + y: number; + width: number; + height: number; +}; + +export function getLabelFontSize(width: number): number { + if (width > 550) { + return 0.8; + } + + if (width > 400 && width <= 550) { + return 0.55; + } + + return 0.45; +} + +export const isOverlapping = (rect1: Rect, rect2: Rect): boolean => { + const { x: x1, y: y1, width: width1, height: height1 } = rect1; + const { x: x2, y: y2, width: width2, height: height2 } = rect2; + + return !( + x1 > x2 + width2 || + x1 + width1 < x2 || + y1 > y2 + height2 || + y1 + height1 < y2 + ); +}; + +export const getRectangle = (element: SVGElement, offset = 0): Rect => { + const { x, y, width, height } = element.getBoundingClientRect(); + + return { + x, + y: y + offset, + width, + height: height - offset * 2, + }; +}; + +export const getOverlappingElements = ( + elements: SVGElement[], +): SVGElement[] => { + const overlappingElements: SVGElement[] = []; + + elements.forEach((e1, index1) => { + const rect1: Rect = getRectangle(e1, 1); + + elements.forEach((e2, index2) => { + if (index2 <= index1) return; + const rect2: Rect = getRectangle(e2, 1); + + if (isOverlapping(rect1, rect2)) { + overlappingElements.push(elements[index2]); + overlappingElements.push(elements[index1]); + } + }); + }); + + return overlappingElements; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sankey/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/CHANGELOG.md new file mode 100644 index 000000000000..01a75d202c78 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-sunburst + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-sunburst diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/README.md new file mode 100644 index 000000000000..20bfb8a48350 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-sunburst + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-sunburst.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-sunburst) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-sunburst&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-sunburst) + +This plugin provides Sunburst for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import SunburstChartPlugin from '@superset-ui/legacy-plugin-chart-sunburst'; + +new SunburstChartPlugin().configure({ key: 'sunburst' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-sunburst) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/package.json new file mode 100644 index 000000000000..d5aba67427ed --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/package.json @@ -0,0 +1,36 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-sunburst", + "version": "0.18.25", + "description": "Superset Legacy Chart - Sunburst", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "prop-types": "^15.6.2" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/ReactSunburst.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/ReactSunburst.js new file mode 100644 index 000000000000..15303c9eafb6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/ReactSunburst.js @@ -0,0 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { reactify } from '@superset-ui/core'; +import Component from './Sunburst'; + +export default reactify(Component); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/Sunburst.css b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/Sunburst.css new file mode 100644 index 000000000000..0afe0a87951c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/Sunburst.css @@ -0,0 +1,70 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +.superset-legacy-chart-sunburst text { + text-rendering: optimizeLegibility; +} +.superset-legacy-chart-sunburst path { + stroke: #ddd; + stroke-width: 0.5px; +} +.superset-legacy-chart-sunburst .center-label { + text-anchor: middle; + fill: #333; + pointer-events: none; +} +.superset-legacy-chart-sunburst .path-abs-percent { + font-size: 3em; + font-weight: 700; +} +.superset-legacy-chart-sunburst .path-cond-percent { + font-size: 2em; +} +.superset-legacy-chart-sunburst .path-metrics { + color: #777; +} +.superset-legacy-chart-sunburst .path-ratio { + color: #777; +} + +.superset-legacy-chart-sunburst .breadcrumbs text { + font-weight: 600; + font-size: 1.2em; + text-anchor: middle; + fill: #333; +} + +/* dashboard specific */ +.dashboard-chart.sunburst { + overflow: visible; +} +.superset-legacy-chart-sunburst svg { + overflow: visible; +} +.superset-legacy-chart-sunburst.m text { + font-size: 0.55em; +} +.superset-legacy-chart-sunburst.s text { + font-size: 0.45em; +} +.superset-legacy-chart-sunburst.l text { + font-size: 0.75em; +} +.superset-legacy-chart-sunburst .path-abs-percent { + font-weight: 700; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js new file mode 100644 index 000000000000..75bebdaa1403 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js @@ -0,0 +1,526 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable no-param-reassign, react/sort-prop-types */ +import d3 from 'd3'; +import PropTypes from 'prop-types'; +import { + getNumberFormatter, + NumberFormats, + CategoricalColorNamespace, + getSequentialSchemeRegistry, +} from '@superset-ui/core'; +import wrapSvgText from './utils/wrapSvgText'; +import './Sunburst.css'; + +const propTypes = { + // Each row is an array of [hierarchy-lvl1, hierarchy-lvl2, metric1, metric2] + // hierarchy-lvls are string. metrics are number + data: PropTypes.arrayOf(PropTypes.array), + width: PropTypes.number, + height: PropTypes.number, + colorScheme: PropTypes.string, + linearColorScheme: PropTypes.string, + numberFormat: PropTypes.string, + metrics: PropTypes.arrayOf( + PropTypes.oneOfType([ + PropTypes.string, + PropTypes.object, // The metric object + ]), + ), +}; + +function metricLabel(metric) { + return typeof metric === 'string' || metric instanceof String + ? metric + : metric.label; +} + +// Given a node in a partition layout, return an array of all of its ancestor +// nodes, highest first, but excluding the root. +function getAncestors(node) { + const path = []; + let current = node; + while (current.parent) { + path.unshift(current); + current = current.parent; + } + + return path; +} + +function buildHierarchy(rows) { + const root = { + name: 'root', + children: [], + }; + + // each record [groupby1val, groupby2val, ( or 0)n, m1, m2] + rows.forEach(row => { + const m1 = Number(row[row.length - 2]); + const m2 = Number(row[row.length - 1]); + const levels = row.slice(0, -2); + if (Number.isNaN(m1)) { + // e.g. if this is a header row + return; + } + let currentNode = root; + for (let level = 0; level < levels.length; level += 1) { + const children = currentNode.children || []; + const nodeName = levels[level].toString(); + // If the next node has the name '0', it will + const isLeafNode = level >= levels.length - 1 || levels[level + 1] === 0; + let childNode; + + if (!isLeafNode) { + childNode = children.find( + child => child.name === nodeName && child.level === level, + ); + + if (!childNode) { + childNode = { + name: nodeName, + children: [], + level, + }; + children.push(childNode); + } + currentNode = childNode; + } else if (nodeName !== 0) { + // Reached the end of the sequence; create a leaf node. + childNode = { + name: nodeName, + m1, + m2, + }; + children.push(childNode); + } + } + }); + + function recurse(node) { + if (node.children) { + let sums; + let m1 = 0; + let m2 = 0; + for (let i = 0; i < node.children.length; i += 1) { + sums = recurse(node.children[i]); + m1 += sums[0]; + m2 += sums[1]; + } + node.m1 = m1; + node.m2 = m2; + } + + return [node.m1, node.m2]; + } + + recurse(root); + + return root; +} + +function getResponsiveContainerClass(width) { + if (width > 500) { + return 'l'; + } + + if (width > 200 && width <= 500) { + return 'm'; + } + + return 's'; +} + +function getYOffset(width) { + if (width > 500) { + return ['0', '20', '40', '60']; + } + + if (width > 200 && width <= 500) { + return ['0', '15', '30', '45']; + } + + return ['0', '10', '20', '30']; +} + +// Modified from http://bl.ocks.org/kerryrodden/7090426 +function Sunburst(element, props) { + const container = d3.select(element); + const { + data, + width, + height, + colorScheme, + linearColorScheme, + metrics, + numberFormat, + } = props; + const responsiveClass = getResponsiveContainerClass(width); + const isSmallWidth = responsiveClass === 's'; + container.attr('class', `superset-legacy-chart-sunburst ${responsiveClass}`); + // vars with shared scope within this function + const margin = { top: 10, right: 5, bottom: 10, left: 5 }; + const containerWidth = width; + const containerHeight = height; + const breadcrumbHeight = containerHeight * 0.085; + const visWidth = containerWidth - margin.left - margin.right; + const visHeight = + containerHeight - margin.top - margin.bottom - breadcrumbHeight; + const radius = Math.min(visWidth, visHeight) / 2; + + let colorByCategory = true; // color by category if primary/secondary metrics match + let maxBreadcrumbs; + let breadcrumbDims; // set based on data + let totalSize; // total size of all segments; set after loading the data. + let breadcrumbs; + let vis; + let arcs; + let gMiddleText; // dom handles + + const categoricalColorScale = CategoricalColorNamespace.getScale(colorScheme); + let linearColorScale; + + // Helper + path gen functions + const partition = d3.layout + .partition() + .size([2 * Math.PI, radius * radius]) + .value(d => d.m1); + + const arc = d3.svg + .arc() + .startAngle(d => d.x) + .endAngle(d => d.x + d.dx) + .innerRadius(d => Math.sqrt(d.y)) + .outerRadius(d => Math.sqrt(d.y + d.dy)); + + const formatNum = getNumberFormatter( + numberFormat || NumberFormats.SI_3_DIGIT, + ); + const formatPerc = getNumberFormatter(NumberFormats.PERCENT_3_POINT); + + container.select('svg').remove(); + + const svg = container + .append('svg:svg') + .attr('width', containerWidth) + .attr('height', containerHeight); + + function createBreadcrumbs(firstRowData) { + // -2 bc row contains 2x metrics, +extra for %label and buffer + maxBreadcrumbs = firstRowData.length - 2 + 1; + breadcrumbDims = { + width: visWidth / maxBreadcrumbs, + height: breadcrumbHeight * 0.8, // more margin + spacing: 3, + tipTailWidth: 10, + }; + + breadcrumbs = svg + .append('svg:g') + .attr('class', 'breadcrumbs') + .attr('transform', `translate(${margin.left},${margin.top})`); + + breadcrumbs.append('svg:text').attr('class', 'end-label'); + } + + // Generate a string that describes the points of a breadcrumb polygon. + function breadcrumbPoints(d, i) { + const points = []; + if (isSmallWidth) { + points.push('0,0'); + points.push(`${width},0`); + points.push(`${width},0`); + points.push(`${width},${breadcrumbDims.height}`); + points.push(`0,${breadcrumbDims.height}`); + if (i > 0) { + // Leftmost breadcrumb; don't include 6th vertex. + // points.push(`${breadcrumbDims.tipTailWidth},${breadcrumbDims.height / 2}`); + } + } else { + points.push('0,0'); + points.push(`${breadcrumbDims.width},0`); + points.push( + `${breadcrumbDims.width + breadcrumbDims.tipTailWidth},${ + breadcrumbDims.height / 2 + }`, + ); + points.push(`${breadcrumbDims.width},${breadcrumbDims.height}`); + points.push(`0,${breadcrumbDims.height}`); + if (i > 0) { + // Leftmost breadcrumb; don't include 6th vertex. + points.push( + `${breadcrumbDims.tipTailWidth},${breadcrumbDims.height / 2}`, + ); + } + } + + return points.join(' '); + } + + function updateBreadcrumbs(sequenceArray, percentageString) { + const breadcrumbWidth = isSmallWidth ? width : breadcrumbDims.width; + const g = breadcrumbs + .selectAll('g') + .data(sequenceArray, d => d.name + d.depth); + + // Add breadcrumb and label for entering nodes. + const entering = g.enter().append('svg:g'); + + entering + .append('svg:polygon') + .attr('points', breadcrumbPoints) + .style('fill', d => + colorByCategory + ? categoricalColorScale(d.name) + : linearColorScale(d.m2 / d.m1), + ); + + entering + .append('svg:text') + .attr('x', (breadcrumbWidth + breadcrumbDims.tipTailWidth) / 2) + .attr('y', breadcrumbDims.height / 4) + .attr('dy', '0.35em') + .style('fill', d => { + // Make text white or black based on the lightness of the background + const col = d3.hsl( + colorByCategory + ? categoricalColorScale(d.name) + : linearColorScale(d.m2 / d.m1), + ); + + return col.l < 0.5 ? 'white' : 'black'; + }) + .attr('class', 'step-label') + .text(d => d.name.replace(/_/g, ' ')) + .call(wrapSvgText, breadcrumbWidth, breadcrumbDims.height / 2); + + // Set position for entering and updating nodes. + g.attr('transform', (d, i) => { + if (isSmallWidth) { + return `translate(0, ${ + i * (breadcrumbDims.height + breadcrumbDims.spacing) + })`; + } + return `translate(${ + i * (breadcrumbDims.width + breadcrumbDims.spacing) + }, 0)`; + }); + + // Remove exiting nodes. + g.exit().remove(); + + // Now move and update the percentage at the end. + breadcrumbs + .select('.end-label') + .attr('x', () => { + if (isSmallWidth) { + return (breadcrumbWidth + breadcrumbDims.tipTailWidth) / 2; + } + + return ( + (sequenceArray.length + 0.5) * + (breadcrumbDims.width + breadcrumbDims.spacing) + ); + }) + .attr('y', () => { + if (isSmallWidth) { + return (sequenceArray.length + 1) * breadcrumbDims.height; + } + + return breadcrumbDims.height / 2; + }) + .attr('dy', '0.35em') + .text(percentageString); + + // Make the breadcrumb trail visible, if it's hidden. + breadcrumbs.style('visibility', null); + } + + // Fade all but the current sequence, and show it in the breadcrumb trail. + function mouseenter(d) { + const sequenceArray = getAncestors(d); + const parentOfD = sequenceArray[sequenceArray.length - 2] || null; + + const absolutePercentage = (d.m1 / totalSize).toPrecision(3); + const conditionalPercentage = parentOfD + ? (d.m1 / parentOfD.m1).toPrecision(3) + : null; + + const absolutePercString = formatPerc(absolutePercentage); + const conditionalPercString = parentOfD + ? formatPerc(conditionalPercentage) + : ''; + + // 3 levels of text if inner-most level, 4 otherwise + const yOffsets = getYOffset(width); + let offsetIndex = 0; + + // If metrics match, assume we are coloring by category + const metricsMatch = Math.abs(d.m1 - d.m2) < 0.00001; + + gMiddleText.selectAll('*').remove(); + + offsetIndex += 1; + gMiddleText + .append('text') + .attr('class', 'path-abs-percent') + .attr('y', yOffsets[offsetIndex]) + .text(`${absolutePercString} of total`); + + if (conditionalPercString) { + offsetIndex += 1; + gMiddleText + .append('text') + .attr('class', 'path-cond-percent') + .attr('y', yOffsets[offsetIndex]) + .text(`${conditionalPercString} of parent`); + } + + offsetIndex += 1; + gMiddleText + .append('text') + .attr('class', 'path-metrics') + .attr('y', yOffsets[offsetIndex]) + .text( + `${metricLabel(metrics[0])}: ${formatNum(d.m1)}${ + metricsMatch ? '' : `, ${metricLabel(metrics[1])}: ${formatNum(d.m2)}` + }`, + ); + + offsetIndex += 1; + gMiddleText + .append('text') + .attr('class', 'path-ratio') + .attr('y', yOffsets[offsetIndex]) + .text( + metricsMatch + ? '' + : `${metricLabel(metrics[1])}/${metricLabel( + metrics[0], + )}: ${formatPerc(d.m2 / d.m1)}`, + ); + + // Reset and fade all the segments. + arcs + .selectAll('path') + .style('stroke-width', null) + .style('stroke', null) + .style('opacity', 0.3); + + // Then highlight only those that are an ancestor of the current segment. + arcs + .selectAll('path') + .filter(node => sequenceArray.includes(node)) + .style('opacity', 1) + .style('stroke', '#aaa'); + + updateBreadcrumbs(sequenceArray, absolutePercString); + } + + // Restore everything to full opacity when moving off the visualization. + function mouseleave() { + // Hide the breadcrumb trail + breadcrumbs.style('visibility', 'hidden'); + + gMiddleText.selectAll('*').remove(); + + // Deactivate all segments during transition. + arcs.selectAll('path').on('mouseenter', null); + + // Transition each segment to full opacity and then reactivate it. + arcs + .selectAll('path') + .transition() + .duration(200) + .style('opacity', 1) + .style('stroke', null) + .style('stroke-width', null) + .each('end', function end() { + d3.select(this).on('mouseenter', mouseenter); + }); + } + + // Main function to draw and set up the visualization, once we have the data. + function createVisualization(rows) { + const root = buildHierarchy(rows); + maxBreadcrumbs = rows[0].length - 2; + vis = svg + .append('svg:g') + .attr('class', 'sunburst-vis') + .attr( + 'transform', + 'translate(' + + `${margin.left + visWidth / 2},` + + `${ + margin.top + + (isSmallWidth + ? breadcrumbHeight * maxBreadcrumbs + : breadcrumbHeight) + + visHeight / 2 + }` + + ')', + ) + .on('mouseleave', mouseleave); + + arcs = vis.append('svg:g').attr('id', 'arcs'); + + gMiddleText = vis.append('svg:g').attr('class', 'center-label'); + + // Bounding circle underneath the sunburst, to make it easier to detect + // when the mouse leaves the parent g. + arcs.append('svg:circle').attr('r', radius).style('opacity', 0); + + // For efficiency, filter nodes to keep only those large enough to see. + const nodes = partition.nodes(root).filter(d => d.dx > 0.005); // 0.005 radians = 0.29 degrees + + if (metrics[0] !== metrics[1] && metrics[1]) { + colorByCategory = false; + const ext = d3.extent(nodes, d => d.m2 / d.m1); + linearColorScale = getSequentialSchemeRegistry() + .get(linearColorScheme) + .createLinearScale(ext); + } + + arcs + .selectAll('path') + .data(nodes) + .enter() + .append('svg:path') + .attr('display', d => (d.depth ? null : 'none')) + .attr('d', arc) + .attr('fill-rule', 'evenodd') + .style('fill', d => + colorByCategory + ? categoricalColorScale(d.name) + : linearColorScale(d.m2 / d.m1), + ) + .style('opacity', 1) + .on('mouseenter', mouseenter); + + // Get total size of the tree = value of root node from partition. + totalSize = root.value; + } + createBreadcrumbs(data[0]); + createVisualization(data); +} + +Sunburst.displayName = 'Sunburst'; +Sunburst.propTypes = propTypes; + +export default Sunburst; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts new file mode 100644 index 000000000000..065964687bfc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts @@ -0,0 +1,87 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { ControlPanelConfig, sections } from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['groupby'], + ['metric'], + ['secondary_metric'], + ['adhoc_filters'], + ['row_limit'], + [ + { + name: 'sort_by_metric', + config: { + type: 'CheckboxControl', + label: t('Sort by metric'), + description: t( + 'Whether to sort results by the selected metric in descending order.', + ), + }, + }, + ], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [['color_scheme'], ['linear_color_scheme']], + }, + ], + controlOverrides: { + metric: { + label: t('Primary Metric'), + description: t( + 'The primary metric is used to define the arc segment sizes', + ), + }, + secondary_metric: { + label: t('Secondary Metric'), + default: null, + description: t( + '[optional] this secondary metric is used to ' + + 'define the color as a ratio against the primary metric. ' + + 'When omitted, the color is categorical and based on labels', + ), + }, + color_scheme: { + description: t( + 'When only a primary metric is provided, a categorical color scale is used.', + ), + }, + linear_color_scheme: { + description: t( + 'When a secondary metric is provided, a linear color scale is used.', + ), + }, + groupby: { + label: t('Hierarchy'), + description: t('This defines the level of the hierarchy'), + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/images/example.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/images/example.png new file mode 100644 index 000000000000..003d00e96607 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/images/example.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/images/thumbnail.png new file mode 100644 index 000000000000..46f8262b8734 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..6c4706bf7671 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/index.js new file mode 100644 index 000000000000..c3ea740e2531 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/index.js @@ -0,0 +1,47 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import example from './images/example.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Part of a Whole'), + credits: ['https://bl.ocks.org/kerryrodden/7090426'], + description: t( + 'Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.', + ), + exampleGallery: [{ url: example }], + name: t('Sunburst Chart'), + tags: [t('Aesthetic'), t('Legacy'), t('Multi-Levels'), t('Proportional')], + thumbnail, + useLegacyApi: true, +}); + +export default class SunburstChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./ReactSunburst'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/transformProps.js new file mode 100644 index 000000000000..9952fc4992eb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/transformProps.js @@ -0,0 +1,43 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function transformProps(chartProps) { + const { width, height, formData, queriesData, datasource } = chartProps; + const { colorScheme, linearColorScheme, metric, secondaryMetric } = formData; + + const returnProps = { + width, + height, + data: queriesData[0].data, + colorScheme, + linearColorScheme, + metrics: [metric, secondaryMetric], + }; + + if (datasource && datasource.metrics) { + const metricWithFormat = datasource.metrics.find( + ({ metric_name: metricName, d3format }) => + metricName === formData.metric && d3format, + ); + if (metricWithFormat) { + Object.assign(returnProps, { numberFormat: metricWithFormat.d3format }); + } + } + + return returnProps; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/utils/wrapSvgText.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/utils/wrapSvgText.js new file mode 100644 index 000000000000..12cdead8d34e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/src/utils/wrapSvgText.js @@ -0,0 +1,71 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* + Utility function that takes a d3 svg:text selection and a max width, and splits the + text's text across multiple tspan lines such that any given line does not exceed max width + + If text does not span multiple lines AND adjustedY is passed, + will set the text to the passed val +*/ +import d3 from 'd3'; + +export default function wrapSvgText(text, width, adjustedY) { + const lineHeight = 1; + // ems + text.each(function each() { + const d3Text = d3.select(this); + const words = d3Text.text().split(/\s+/); + let line = []; + let lineNumber = 0; + const x = d3Text.attr('x'); + const y = d3Text.attr('y'); + const dy = parseFloat(d3Text.attr('dy')); + let tspan = d3Text + .text(null) + .append('tspan') + .attr('x', x) + .attr('y', y) + .attr('dy', `${dy}em`); + + let didWrap = false; + words.forEach(word => { + line.push(word); + tspan.text(line.join(' ')); + if (tspan.node().getComputedTextLength() > width) { + lineNumber += 1; + line.pop(); + // remove word that pushes over the limit + tspan.text(line.join(' ')); + line = [word]; + tspan = d3Text + .append('tspan') + .attr('x', x) + .attr('y', y) + .attr('dy', `${lineNumber * lineHeight + dy}em`) + .text(word); + didWrap = true; + } + }); + + if (!didWrap && typeof adjustedY !== 'undefined') { + tspan.attr('y', adjustedY); + } + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-sunburst/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/CHANGELOG.md new file mode 100644 index 000000000000..2cb283c0a414 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/CHANGELOG.md @@ -0,0 +1,43 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-time-table + + + + + +## [0.17.63](https://github.com/apache-superset/superset-ui/compare/v0.17.62...v0.17.63) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-time-table + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-time-table diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/README.md new file mode 100644 index 000000000000..5b3a95dd0a0c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/plugin-chart-time-table + +[![Version](https://img.shields.io/npm/v/@superset-ui/plugin-time-table.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-time-table) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-plugin-chart-time-table&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-plugin-chart-time-table) + +This plugin provides Time Table for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import TimeTableChartPlugin from '@superset-ui/legacy-plugin-chart-time-table'; + +new TimeTableChartPlugin().configure({ key: 'time-table' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-time-table) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/package.json new file mode 100644 index 000000000000..635f1b8865c6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/package.json @@ -0,0 +1,45 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-time-table", + "version": "0.18.25", + "description": "Superset Chart Plugin - Time Table", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@data-ui/sparkline": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@types/d3-scale": "^2.0.2", + "d3-scale": "^3.2.1", + "moment": "^2.26.0", + "mustache": "^4.0.1", + "prop-types": "^15.7.2", + "reactable-arc": "^0.15.0" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.3.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/FormattedNumber.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/FormattedNumber.tsx new file mode 100644 index 000000000000..249aa28508e0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/FormattedNumber.tsx @@ -0,0 +1,34 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { formatNumber } from '@superset-ui/core'; + +interface Props { + format: string; + num: number; +} + +function FormattedNumber({ num = 0, format = '' }: Props) { + if (format) { + return {formatNumber(format, num)}; + } + return {num}; +} + +export default FormattedNumber; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/SparklineCell.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/SparklineCell.tsx new file mode 100644 index 000000000000..8d6c208358ce --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/SparklineCell.tsx @@ -0,0 +1,201 @@ +/* eslint-disable class-methods-use-this */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { + Sparkline, + LineSeries, + PointSeries, + HorizontalReferenceLine, + VerticalReferenceLine, + WithTooltip, +} from '@data-ui/sparkline'; +import { getTextDimension, formatNumber } from '@superset-ui/core'; + +interface Props { + ariaLabel: string; + className?: string; + height: number; + numberFormat: string; + renderTooltip: ({ index }: { index: number }) => void; + showYAxis: boolean; + width: number; + yAxisBounds: Array; + data: Array; +} + +interface TooltipProps { + onMouseLeave: () => void; + onMouseMove: () => void; + tooltipData: { + index: number; + }; +} + +interface Yscale { + min?: number; + max?: number; +} + +const MARGIN = { + top: 8, + right: 8, + bottom: 8, + left: 8, +}; +const tooltipProps = { + style: { + opacity: 0.8, + }, + offsetTop: 0, +}; + +function getSparklineTextWidth(text: string) { + return ( + getTextDimension({ + text, + style: { + fontSize: '12px', + fontWeight: 200, + letterSpacing: 0.4, + }, + }).width + 5 + ); +} + +function isValidBoundValue(value?: number | string) { + return ( + value !== null && + value !== undefined && + value !== '' && + !Number.isNaN(value) + ); +} + +class SparklineCell extends React.Component { + renderHorizontalReferenceLine(value?: number, label?: string) { + return ( + label} + stroke="#bbb" + strokeDasharray="3 3" + strokeWidth={1} + /> + ); + } + + render() { + const { + width = 300, + height = 50, + data, + ariaLabel, + numberFormat = undefined, + yAxisBounds = [undefined, undefined], + showYAxis = false, + renderTooltip = () =>
, + } = this.props; + + const yScale: Yscale = {}; + let hasMinBound = false; + let hasMaxBound = false; + + if (yAxisBounds) { + const [minBound, maxBound] = yAxisBounds; + hasMinBound = isValidBoundValue(minBound); + if (hasMinBound) { + yScale.min = minBound; + } + hasMaxBound = isValidBoundValue(maxBound); + if (hasMaxBound) { + yScale.max = maxBound; + } + } + + let min: number | undefined; + let max: number | undefined; + let minLabel: string; + let maxLabel: string; + let labelLength = 0; + if (showYAxis) { + const [minBound, maxBound] = yAxisBounds; + min = hasMinBound + ? minBound + : data.reduce((acc, current) => Math.min(acc, current), data[0]); + max = hasMaxBound + ? maxBound + : data.reduce((acc, current) => Math.max(acc, current), data[0]); + + minLabel = formatNumber(numberFormat, min); + maxLabel = formatNumber(numberFormat, max); + labelLength = Math.max( + getSparklineTextWidth(minLabel), + getSparklineTextWidth(maxLabel), + ); + } + + const margin = { + ...MARGIN, + right: MARGIN.right + labelLength, + }; + + return ( + + {({ onMouseLeave, onMouseMove, tooltipData }: TooltipProps) => ( + + {showYAxis && this.renderHorizontalReferenceLine(min, minLabel)} + {showYAxis && this.renderHorizontalReferenceLine(max, maxLabel)} + + {tooltipData && ( + + )} + {tooltipData && ( + + )} + + )} + + ); + } +} + +export default SparklineCell; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/TimeTable.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/TimeTable.tsx new file mode 100644 index 000000000000..20076e1268da --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/TimeTable.tsx @@ -0,0 +1,330 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import Mustache from 'mustache'; +import { scaleLinear } from 'd3-scale'; +import { Table, Thead, Th, Tr, Td } from 'reactable-arc'; +import { formatNumber, formatTime, styled } from '@superset-ui/core'; +import { + InfoTooltipWithTrigger, + MetricOption, +} from '@superset-ui/chart-controls'; +import moment from 'moment'; + +import FormattedNumber from './FormattedNumber'; +import SparklineCell from './SparklineCell'; + +const ACCESSIBLE_COLOR_BOUNDS = ['#ca0020', '#0571b0']; +interface ColorFromBoundProps { + value: number; + bounds: Array; + colorBounds: Array; +} +function colorFromBounds( + value: number, + bounds: number[], + colorBounds = ACCESSIBLE_COLOR_BOUNDS, +): ColorFromBoundProps | null { + if (bounds) { + const [min, max] = bounds; + const [minColor, maxColor] = colorBounds; + if (min !== null && max !== null) { + const colorScale = scaleLinear() + .domain([min, (max + min) / 2, max]) + // @ts-ignore + .range([minColor, 'grey', maxColor]); + + // @ts-ignore + return colorScale(value); + } + if (min !== null) { + // @ts-ignore + return value >= min ? maxColor : minColor; + } + if (max !== null) { + // @ts-ignore + return value < max ? maxColor : minColor; + } + } + return null; +} + +interface ColumnConfigProps { + colType: string; + comparisonType: string; + d3format: string; + key: string; + label: string; + timeLag: number; + tooltip: any; + bounds: number[]; + dateFormat: string; + width: string; + height: string; + yAxisBounds: number[]; + showYAxis: boolean; + timeRatio: number; +} + +interface RowData { + label: string; + // eslint-disable-next-line camelcase + metric_name: string; +} + +interface ChartProps { + className: string | undefined; + columnConfigs: Array; + data: object; + height: number; + rows: Array; + rowType: string; + url: string; + row: Array; +} +interface Entry { + [key: string]: number; +} + +class TimeTable extends React.PureComponent { + renderLeftCell(row: RowData) { + const { rowType, url } = this.props; + const context = { metric: row }; + const fullUrl = url ? Mustache.render(url, context) : null; + + if (rowType === 'column') { + const column = row; + if (fullUrl) { + return ( + + {column.label} + + ); + } + return column.label; + } + + return ( + + ); + } + + // eslint-disable-next-line class-methods-use-this + renderSparklineCell( + valueField: string, + column: ColumnConfigProps, + entries: Entry[], + ) { + let sparkData: number[]; + if (column.timeRatio) { + // Period ratio sparkline + sparkData = []; + for (let i = column.timeRatio; i < entries.length; i += 1) { + const prevData = entries[i - column.timeRatio][valueField]; + if (prevData && prevData !== 0) { + sparkData.push(entries[i][valueField] / prevData); + } else { + // @ts-ignore + sparkData.push(null); + } + } + } else { + sparkData = entries.map(d => d[valueField]); + } + + return ( + + ( +
+ {formatNumber(column.d3format, sparkData[index])} +
+ {formatTime( + column.dateFormat, + moment.utc(entries[index].time).toDate(), + )} +
+
+ )} + /> + + ); + } + + // eslint-disable-next-line class-methods-use-this + renderValueCell( + valueField: string, + column: ColumnConfigProps, + reversedEntries: Entry[], + ) { + const recent = reversedEntries[0][valueField]; + let v = 0; + let errorMsg; + if (column.colType === 'time') { + // Time lag ratio + const timeLag = column.timeLag || 0; + const totalLag = Object.keys(reversedEntries).length; + if (timeLag >= totalLag) { + errorMsg = `The time lag set at ${timeLag} is too large for the length of data at ${reversedEntries.length}. No data available.`; + } else { + v = reversedEntries[timeLag][valueField]; + } + if (column.comparisonType === 'diff') { + v = recent - v; + } else if (column.comparisonType === 'perc') { + v = recent / v; + } else if (column.comparisonType === 'perc_change') { + v = recent / v - 1; + } + v = v || 0; + } else if (column.colType === 'contrib') { + // contribution to column total + v = + recent / + Object.keys(reversedEntries[0]) + .map(k => (k === 'time' ? 0 : reversedEntries[0][k])) + .reduce((a, b) => a + b); + } else if (column.colType === 'avg') { + // Average over the last {timeLag} + v = + reversedEntries + .map((k: Entry, i: number) => + i < column.timeLag ? k[valueField] : 0, + ) + .reduce((a: number, b: number) => a + b) / column.timeLag; + } + + const color = colorFromBounds(v, column.bounds); + + return ( + + {errorMsg ? ( +
{errorMsg}
+ ) : ( + // @ts-ignore +
+ +
+ )} + + ); + } + + renderRow(row: RowData, entries: Entry[], reversedEntries: Entry[]) { + const { columnConfigs } = this.props; + const valueField: string = row.label || row.metric_name; + const leftCell = this.renderLeftCell(row); + return ( + + + {leftCell} + + {columnConfigs.map(c => + c.colType === 'spark' + ? this.renderSparklineCell(valueField, c, entries) + : this.renderValueCell(valueField, c, reversedEntries), + )} + + ); + } + + render() { + const { className, height, data, columnConfigs, rowType, rows } = + this.props; + const entries = Object.keys(data) + .sort() + // @ts-ignore + // eslint-disable-next-line @typescript-eslint/no-unsafe-return + .map(time => ({ ...data[time], time })); + + const reversedEntries = entries.concat().reverse(); + + const defaultSort = + rowType === 'column' && columnConfigs.length > 0 + ? { + column: columnConfigs[0].key, + direction: 'desc', + } + : false; + + return ( +
+ c.key)} + > + + + {columnConfigs.map((c, i) => ( + + ))} + + {rows.map(row => this.renderRow(row, entries, reversedEntries))} +
Metric + {c?.label}{' '} + {c?.tooltip && ( + + )} +
+
+ ); + } +} + +export default styled(TimeTable)` + .time-table { + overflow: auto; + } +`; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/TimeTableChartPlugin.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/TimeTableChartPlugin.ts new file mode 100644 index 000000000000..ef1933bfcda9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/TimeTableChartPlugin.ts @@ -0,0 +1,39 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; + +const metadata = new ChartMetadata({ + name: t('Time-series Table'), + description: '', + thumbnail, + useLegacyApi: true, +}); + +export default class TimeTableChartPlugin extends ChartPlugin { + constructor() { + super({ + metadata, + // @ts-ignore + transformProps, + loadChart: () => import('./TimeTable'), + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/controlPanel.ts new file mode 100644 index 000000000000..941bd1fe0dcc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/controlPanel.ts @@ -0,0 +1,68 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, validateNonEmpty } from '@superset-ui/core'; +import { ControlPanelConfig, sections } from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['adhoc_filters'], + ['groupby'], + ['limit'], + [ + { + name: 'column_collection', + config: { + type: 'CollectionControl', + label: t('Time Series Columns'), + validators: [validateNonEmpty], + controlName: 'TimeSeriesColumnControl', + }, + }, + ], + [ + { + name: 'url', + config: { + type: 'TextControl', + label: t('URL'), + description: t( + "Templated link, it's possible to include {{ metric }} " + + 'or other values coming from the controls.', + ), + default: '', + }, + }, + ], + ], + }, + ], + controlOverrides: { + groupby: { + multiple: false, + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/images/thumbnail.png new file mode 100644 index 000000000000..22c2ee290439 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..4dd4b925c7c1 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/index.ts new file mode 100644 index 000000000000..586524f506a9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/index.ts @@ -0,0 +1,52 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Table'), + name: t('Time-series Table'), + description: t( + 'Compare multiple time series charts (as sparklines) and related metrics quickly. ', + ), + tags: [ + t('Multi-Variables'), + t('Comparison'), + t('Legacy'), + t('Percentages'), + t('Tabular'), + t('Description'), + t('Trend'), + ], + thumbnail, + useLegacyApi: true, +}); +export default class TimeTableChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./TimeTable'), + metadata, + // @ts-ignore + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/transformProps.ts new file mode 100644 index 000000000000..3db4362ed7f0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/src/transformProps.ts @@ -0,0 +1,87 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartProps, DataRecord, Metric } from '@superset-ui/core'; + +interface FormData { + groupby: string[]; + metrics: Array; + url: string; + columnCollection: Array | []; +} + +interface QueryData { + data: { + records: DataRecord[]; + columns: string[]; + }; +} + +export type TableChartProps = ChartProps & { + formData: FormData; + queriesData: QueryData[]; +}; + +interface ColumnData { + timeLag?: string | number; +} +export default function transformProps(chartProps: TableChartProps) { + const { height, datasource, formData, queriesData } = chartProps; + const { columnCollection, groupby, metrics, url } = formData; + const { records, columns } = queriesData[0].data; + const isGroupBy = groupby?.length > 0; + + // When there is a "group by", + // each row in the table is a database column + // Otherwise,`` + // each row in the table is a metric + let rows; + if (isGroupBy) { + rows = columns.map(column => + typeof column === 'object' ? column : { label: column }, + ); + } else { + const metricMap = datasource.metrics.reduce((acc, current) => { + const map = acc; + if (current.metric_name) { + map[current.metric_name] = current; + } + return map; + }, {} as Record); + rows = metrics.map(metric => + typeof metric === 'object' ? metric : metricMap[metric], + ); + } + + // TODO: Better parse this from controls instead of mutative value here. + columnCollection.forEach(column => { + const c: ColumnData = column; + if (typeof c.timeLag === 'string' && c.timeLag) { + c.timeLag = parseInt(c.timeLag, 10); + } + }); + + return { + height, + data: records, + columnConfigs: columnCollection, + rows, + rowType: isGroupBy ? 'column' : 'metric', + url, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/types/external.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/types/external.d.ts new file mode 100644 index 000000000000..a9c7ec89cef8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-time-table/types/external.d.ts @@ -0,0 +1,23 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +declare module '*.png'; +declare module '@data-ui/sparkline'; +declare module 'reactable-arc'; +declare module 'mustache'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/CHANGELOG.md new file mode 100644 index 000000000000..5920cace74eb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-treemap + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-treemap diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/README.md new file mode 100644 index 000000000000..b6596ab9806b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-treemap + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-treemap.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-treemap) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-treemap&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-treemap) + +This plugin provides Treemap for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import TreemapChartPlugin from '@superset-ui/legacy-plugin-chart-treemap'; + +new TreemapChartPlugin().configure({ key: 'treemap' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-treemap) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/package.json new file mode 100644 index 000000000000..2a0a728d21df --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/package.json @@ -0,0 +1,37 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-treemap", + "version": "0.18.25", + "description": "Superset Legacy Chart - Treemap", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3-hierarchy": "^1.1.8", + "d3-selection": "^1.4.0", + "prop-types": "^15.6.2" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/ReactTreemap.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/ReactTreemap.js new file mode 100644 index 000000000000..743115c01879 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/ReactTreemap.js @@ -0,0 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { reactify } from '@superset-ui/core'; +import Component from './Treemap'; + +export default reactify(Component); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/Treemap.css b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/Treemap.css new file mode 100644 index 000000000000..f49b425f200b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/Treemap.css @@ -0,0 +1,36 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +.superset-legacy-chart-treemap text { + font-size: 11px; + pointer-events: none; +} + +.superset-legacy-chart-treemap tspan:last-child { + font-size: 9px; + fill-opacity: 0.8; +} + +.superset-legacy-chart-treemap .node rect { + shape-rendering: crispEdges; +} + +.superset-legacy-chart-treemap .node--hover rect { + stroke: #000; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/Treemap.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/Treemap.js new file mode 100644 index 000000000000..a155a050b360 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/Treemap.js @@ -0,0 +1,190 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable no-param-reassign, func-names */ +/* eslint-disable react/sort-prop-types */ +import { select as d3Select, selectAll as d3SelectAll } from 'd3-selection'; +import { + treemap as d3Treemap, + hierarchy as d3Hierarchy, + treemapSquarify, +} from 'd3-hierarchy'; +import PropTypes from 'prop-types'; +import { + getNumberFormatter, + CategoricalColorNamespace, +} from '@superset-ui/core'; +import './Treemap.css'; + +// Declare PropTypes for recursive data structures +// https://github.com/facebook/react/issues/5676 +/* eslint-disable-next-line no-undef */ +const lazyFunction = f => () => f().apply(this, arguments); + +const leafType = PropTypes.shape({ + name: PropTypes.string, + value: PropTypes.number.isRequired, +}); + +const parentShape = { + name: PropTypes.string, + children: PropTypes.arrayOf( + PropTypes.oneOfType([ + PropTypes.shape(lazyFunction(() => parentShape)), + leafType, + ]), + ), +}; + +const nodeType = PropTypes.oneOfType([PropTypes.shape(parentShape), leafType]); + +const propTypes = { + data: PropTypes.arrayOf(nodeType), + width: PropTypes.number, + height: PropTypes.number, + colorScheme: PropTypes.string, + margin: PropTypes.shape({ + top: PropTypes.number, + right: PropTypes.number, + bottom: PropTypes.number, + left: PropTypes.number, + }), + numberFormat: PropTypes.string, + treemapRatio: PropTypes.number, +}; + +function hovered(hover) { + return function (node) { + d3SelectAll(node.ancestors().map(d => d.node)) + .classed('node--hover', hover) + .select('rect') + .attr('width', d => d.x1 - d.x0 - hover) + .attr('height', d => d.y1 - d.y0 - hover); + }; +} + +/* Modified from https://bl.ocks.org/mbostock/911ad09bdead40ec0061 */ +function Treemap(element, props) { + const { + data: rawData, + width, + height, + numberFormat, + colorScheme, + treemapRatio, + } = props; + const div = d3Select(element); + div.classed('superset-legacy-chart-treemap', true); + + const formatNumber = getNumberFormatter(numberFormat); + const colorFn = CategoricalColorNamespace.getScale(colorScheme); + + const rootNodes = rawData; + + div.selectAll('*').remove(); + + if (rootNodes.length > 0) { + const [rootNode] = rootNodes; + const treemap = d3Treemap() + .size([width, height]) + .paddingOuter(3) + .paddingTop(19) + .paddingInner(1) + .tile(treemapSquarify.ratio(treemapRatio)) + .round(true); + + const root = treemap( + d3Hierarchy(rootNode) + .sum(d => d.value) + .sort((a, b) => b.height - a.height || b.value - a.value), + ); + + const svg = div + .append('svg') + .attr('class', 'treemap') + .attr('width', width) + .attr('height', height); + + const cell = svg + .selectAll('.node') + .data(root.descendants()) + .enter() + .append('g') + .attr('transform', d => `translate(${d.x0},${d.y0})`) + .attr('class', 'node') + .each(function (d) { + d.node = this; + }) + .on('mouseover', hovered(true)) + .on('mouseout', hovered(false)); + + cell + .append('rect') + .attr('id', d => `rect-${d.data.name}`) + .attr('width', d => d.x1 - d.x0) + .attr('height', d => d.y1 - d.y0) + .style('fill', d => colorFn(d.depth)); + + cell + .append('clipPath') + .attr('id', d => `clip-${d.data.name}`) + .append('use') + .attr('xlink:href', d => `#rect-${d.data.name}`); + + const label = cell + .append('text') + .attr('clip-path', d => `url(#clip-${d.data.name})`); + + label + .filter(d => d.children) + .selectAll('tspan') + .data(d => + d.data.name + .slice(Math.max(0, d.data.name.lastIndexOf('.') + 1)) + .split(/(?=[A-Z][^A-Z])/g) + .concat(`\u00A0${formatNumber(d.value)}`), + ) + .enter() + .append('tspan') + .attr('x', (d, i) => (i ? null : 4)) + .attr('y', 13) + .text(d => d); + + label + .filter(d => !d.children) + .selectAll('tspan') + .data(d => + d.data.name + .slice(Math.max(0, d.data.name.lastIndexOf('.') + 1)) + .split(/(?=[A-Z][^A-Z])/g) + .concat(formatNumber(d.value)), + ) + .enter() + .append('tspan') + .attr('x', 4) + .attr('y', (d, i) => 13 + i * 10) + .text(d => d); + + cell.append('title').text(d => `${d.data.name}\n${formatNumber(d.value)}`); + } +} + +Treemap.displayName = 'Treemap'; +Treemap.propTypes = propTypes; + +export default Treemap; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts new file mode 100644 index 000000000000..972639601360 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts @@ -0,0 +1,95 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + D3_FORMAT_OPTIONS, + D3_FORMAT_DOCS, + sections, +} from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['adhoc_filters'], + ['groupby'], + ['row_limit'], + ['timeseries_limit_metric'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: true, + description: t('Whether to sort descending or ascending'), + }, + }, + ], + ], + }, + { + label: t('Chart Options'), + expanded: true, + tabOverride: 'customize', + controlSetRows: [ + ['color_scheme'], + [ + { + name: 'treemap_ratio', + config: { + type: 'TextControl', + label: t('Ratio'), + renderTrigger: true, + isFloat: true, + default: 0.5 * (1 + Math.sqrt(5)), // d3 default, golden ratio + description: t('Target aspect ratio for treemap tiles.'), + }, + }, + ], + [ + { + name: 'number_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Number format'), + renderTrigger: true, + default: 'SMART_NUMBER', + choices: D3_FORMAT_OPTIONS, + description: D3_FORMAT_DOCS, + }, + }, + ], + ], + }, + ], + controlOverrides: { + color_scheme: { + renderTrigger: false, + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/Treemap.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/Treemap.jpg new file mode 100644 index 000000000000..9578310096d7 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/Treemap.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/Treemap2.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/Treemap2.jpg new file mode 100644 index 000000000000..c28dc9064d4f Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/Treemap2.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/Treemap3.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/Treemap3.jpg new file mode 100644 index 000000000000..c34ebc8fe035 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/Treemap3.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/Treemap4.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/Treemap4.jpg new file mode 100644 index 000000000000..5aca11369e55 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/Treemap4.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/thumbnail.png new file mode 100644 index 000000000000..cba7798780d5 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..4e00e29b13a2 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/index.js new file mode 100644 index 000000000000..0b517d6a2d6a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/index.js @@ -0,0 +1,61 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import example1 from './images/Treemap.jpg'; +import example2 from './images/Treemap2.jpg'; +import example3 from './images/Treemap3.jpg'; +import example4 from './images/Treemap4.jpg'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Part of a Whole'), + credits: ['https://bl.ocks.org/mbostock/911ad09bdead40ec0061'], + description: t( + 'Shows the composition of a dataset by segmenting a given rectangle as smaller rectangles with areas proportional to their value or contribution to the whole. Those rectangles may also, in turn, be further segmented hierarchically.', + ), + exampleGallery: [ + { url: example1 }, + { url: example2 }, + { url: example3 }, + { url: example4 }, + ], + name: t('Treemap'), + tags: [ + t('Categorical'), + t('Legacy'), + t('Multi-Levels'), + t('Percentages'), + t('Proportional'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class TreemapChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./ReactTreemap'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/transformProps.js new file mode 100644 index 000000000000..adba34c09b3d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/src/transformProps.js @@ -0,0 +1,43 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function transformProps(chartProps) { + const { width, height, formData, queriesData } = chartProps; + const { colorScheme, treemapRatio } = formData; + let { numberFormat } = formData; + + if (!numberFormat && chartProps.datasource && chartProps.datasource.metrics) { + chartProps.datasource.metrics.forEach(metric => { + if ( + metric.metric_name === chartProps.formData.metrics[0] && + metric.d3format + ) { + numberFormat = metric.d3format; + } + }); + } + + return { + width, + height, + data: queriesData[0].data, + colorScheme, + numberFormat, + treemapRatio, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-treemap/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/CHANGELOG.md new file mode 100644 index 000000000000..307316c8625d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-world-map + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-world-map diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/README.md new file mode 100644 index 000000000000..de28ea4105e4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/legacy-plugin-chart-world-map + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-world-map.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-world-map) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-world-map&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-world-map) + +This plugin provides World Map for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import WorldmapChartPlugin from '@superset-ui/legacy-plugin-chart-world-map'; + +new WorldmapChartPlugin().configure({ key: 'world-map' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-world-map) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/package.json new file mode 100644 index 000000000000..87eeee4f762e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/package.json @@ -0,0 +1,42 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-world-map", + "version": "0.18.25", + "description": "Superset Legacy Chart - World Map", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-array": "^2.4.0", + "d3-color": "^1.4.1", + "datamaps": "^0.5.8", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^16.13.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/ReactWorldMap.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/ReactWorldMap.jsx new file mode 100644 index 000000000000..d0f23e184437 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/ReactWorldMap.jsx @@ -0,0 +1,43 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import PropTypes from 'prop-types'; +import { styled, reactify } from '@superset-ui/core'; +import WorldMap from './WorldMap'; + +const ReactWorldMap = reactify(WorldMap); + +const WorldMapComponent = ({ className, ...otherProps }) => ( +
+ +
+); + +WorldMapComponent.propTypes = { + className: PropTypes.string.isRequired, +}; + +export default styled(WorldMapComponent)` + .superset-legacy-chart-world-map { + position: relative; + svg { + background-color: #feffff; + } + } +`; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/WorldMap.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/WorldMap.js new file mode 100644 index 000000000000..c7253e10d0e6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/WorldMap.js @@ -0,0 +1,145 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/sort-prop-types */ +import d3 from 'd3'; +import PropTypes from 'prop-types'; +import { extent as d3Extent } from 'd3-array'; +import { + getNumberFormatter, + getSequentialSchemeRegistry, +} from '@superset-ui/core'; +import Datamap from 'datamaps/dist/datamaps.world.min'; + +const propTypes = { + data: PropTypes.arrayOf( + PropTypes.shape({ + country: PropTypes.string, + latitude: PropTypes.number, + longitude: PropTypes.number, + name: PropTypes.string, + m1: PropTypes.number, + m2: PropTypes.number, + }), + ), + height: PropTypes.number, + maxBubbleSize: PropTypes.number, + showBubbles: PropTypes.bool, + linearColorScheme: PropTypes.string, + color: PropTypes.string, +}; + +const formatter = getNumberFormatter(); + +function WorldMap(element, props) { + const { + data, + width, + height, + maxBubbleSize, + showBubbles, + linearColorScheme, + color, + } = props; + const div = d3.select(element); + div.classed('superset-legacy-chart-world-map', true); + div.selectAll('*').remove(); + + // Ignore XXX's to get better normalization + const filteredData = data.filter(d => d.country && d.country !== 'XXX'); + + const extRadius = d3.extent(filteredData, d => Math.sqrt(d.m2)); + const radiusScale = d3.scale + .linear() + .domain([extRadius[0], extRadius[1]]) + .range([1, maxBubbleSize]); + + const colorScale = getSequentialSchemeRegistry() + .get(linearColorScheme) + .createLinearScale(d3Extent(filteredData, d => d.m1)); + + const processedData = filteredData.map(d => ({ + ...d, + radius: radiusScale(Math.sqrt(d.m2)), + fillColor: colorScale(d.m1), + })); + + const mapData = {}; + processedData.forEach(d => { + mapData[d.country] = d; + }); + + const map = new Datamap({ + element, + width, + height, + data: processedData, + fills: { + defaultFill: '#eee', + }, + geographyConfig: { + popupOnHover: true, + highlightOnHover: true, + borderWidth: 1, + borderColor: '#feffff', + highlightBorderColor: '#feffff', + highlightFillColor: color, + highlightBorderWidth: 1, + popupTemplate: (geo, d) => + `
${d.name}
${formatter( + d.m1, + )}
`, + }, + bubblesConfig: { + borderWidth: 1, + borderOpacity: 1, + borderColor: color, + popupOnHover: true, + radius: null, + popupTemplate: (geo, d) => + `
${d.name}
${formatter( + d.m2, + )}
`, + fillOpacity: 0.5, + animate: true, + highlightOnHover: true, + highlightFillColor: color, + highlightBorderColor: 'black', + highlightBorderWidth: 2, + highlightBorderOpacity: 1, + highlightFillOpacity: 0.85, + exitDelay: 100, + key: JSON.stringify, + }, + }); + + map.updateChoropleth(mapData); + + if (showBubbles) { + map.bubbles(processedData); + div + .selectAll('circle.datamaps-bubble') + .style('fill', color) + .style('stroke', color); + } +} + +WorldMap.displayName = 'WorldMap'; +WorldMap.propTypes = propTypes; + +export default WorldMap; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts new file mode 100644 index 000000000000..ec8aafc7b872 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts @@ -0,0 +1,135 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + formatSelectOptions, + sections, +} from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['entity'], + [ + { + name: 'country_fieldtype', + config: { + type: 'SelectControl', + label: t('Country Field Type'), + default: 'cca2', + choices: [ + ['name', 'Full name'], + ['cioc', 'code International Olympic Committee (cioc)'], + ['cca2', 'code ISO 3166-1 alpha-2 (cca2)'], + ['cca3', 'code ISO 3166-1 alpha-3 (cca3)'], + ], + description: t( + 'The country code standard that Superset should expect ' + + 'to find in the [country] column', + ), + }, + }, + ], + ['metric'], + ['adhoc_filters'], + ['row_limit'], + [ + { + name: 'sort_by_metric', + config: { + type: 'CheckboxControl', + label: t('Sort by metric'), + description: t( + 'Whether to sort results by the selected metric in descending order.', + ), + }, + }, + ], + ], + }, + { + label: t('Options'), + expanded: true, + controlSetRows: [ + [ + { + name: 'show_bubbles', + config: { + type: 'CheckboxControl', + label: t('Show Bubbles'), + default: false, + renderTrigger: true, + description: t('Whether to display bubbles on top of countries'), + }, + }, + ], + ['secondary_metric'], + [ + { + name: 'max_bubble_size', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Max Bubble Size'), + default: '25', + choices: formatSelectOptions([ + '5', + '10', + '15', + '25', + '50', + '75', + '100', + ]), + }, + }, + ], + ['color_picker'], + ['linear_color_scheme'], + ], + }, + ], + controlOverrides: { + entity: { + label: t('Country Column'), + description: t('3 letter code of the country'), + }, + metric: { + label: t('Metric for Color'), + description: t('Metric that defines the color of the country'), + }, + secondary_metric: { + label: t('Bubble Size'), + description: t('Metric that defines the size of the bubble'), + }, + color_picker: { + label: t('Bubble Color'), + }, + linear_color_scheme: { + label: t('Country Color Scheme'), + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/images/WorldMap1.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/images/WorldMap1.jpg new file mode 100644 index 000000000000..caba3fb31f7e Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/images/WorldMap1.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/images/WorldMap2.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/images/WorldMap2.jpg new file mode 100644 index 000000000000..476a92e0a001 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/images/WorldMap2.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/images/thumbnail.png new file mode 100644 index 000000000000..688bb5e31ee8 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..677dba4948ff Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/index.js new file mode 100644 index 000000000000..d97adfadf36c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/index.js @@ -0,0 +1,59 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import example1 from './images/WorldMap1.jpg'; +import example2 from './images/WorldMap2.jpg'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Map'), + credits: ['http://datamaps.github.io/'], + description: t( + 'A map of the world, that can indicate values in different countries.', + ), + exampleGallery: [{ url: example1 }, { url: example2 }], + name: t('World Map'), + tags: [ + t('2D'), + t('Aesthetic'), + t('Comparison'), + t('Intensity'), + t('Legacy'), + t('Multi-Dimensions'), + t('Multi-Layers'), + t('Multi-Variables'), + t('Scatter'), + t('Popular'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class WorldMapChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./ReactWorldMap'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/transformProps.js new file mode 100644 index 000000000000..464dd53afa4f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/src/transformProps.js @@ -0,0 +1,36 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { rgb } from 'd3-color'; + +export default function transformProps(chartProps) { + const { width, height, formData, queriesData } = chartProps; + const { maxBubbleSize, showBubbles, linearColorScheme, colorPicker } = + formData; + const { r, g, b } = colorPicker; + + return { + data: queriesData[0].data, + width, + height, + maxBubbleSize: parseInt(maxBubbleSize, 10), + showBubbles, + linearColorScheme, + color: rgb(r, g, b).hex(), + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-plugin-chart-world-map/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/CHANGELOG.md new file mode 100644 index 000000000000..52216bcfce16 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/CHANGELOG.md @@ -0,0 +1,46 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-preset-chart-big-number + + + + + +## [0.17.62](https://github.com/apache-superset/superset-ui/compare/v0.17.61...v0.17.62) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-preset-chart-big-number + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + + +### Bug Fixes + +* **legacy-preset-chart-big-number:** example images got mixed up ([#1196](https://github.com/apache-superset/superset-ui/issues/1196)) ([60215b5](https://github.com/apache-superset/superset-ui/commit/60215b5a4c5ae416fc27418c276276ed38ab7f19)) diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/README.md new file mode 100644 index 000000000000..cceb13a5f677 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/README.md @@ -0,0 +1,67 @@ + + +## @superset-ui/legacy-preset-chart-big-number + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-preset-chart-big-number.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-preset-chart-big-number) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-preset-chart-big-number&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=plugins/superset-ui-legacy-preset-chart-big-number) + +This plugin provides Big Number for Superset. + +### Usage + +Import the preset and register. This will register the `BigNumber` and `BigNumberTotal` charts with +key `big-number` and `big-number-total`, respectively. + +```js +import { BigNumberChartPreset } from '@superset-ui/legacy-preset-chart-big-number'; + +new BigNumberChartPreset().register(); +``` + +or register charts one by one. Configure `key`, which can be any `string`, and register the plugin. +This `key` will be used to lookup this chart throughout the app. + +```js +import { + BigNumberChartPlugin, + BigNumberTotalChartPlugin, +} from '@superset-ui/legacy-preset-chart-big-number'; + +new BigNumberChartPlugin().configure({ key: 'big-number' }).register(); +new BigNumberTotalChartPlugin() + .configure({ key: 'big-number-total' }) + .register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-big-number) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/package.json new file mode 100644 index 000000000000..81adb1d54525 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/package.json @@ -0,0 +1,42 @@ +{ + "name": "@superset-ui/legacy-preset-chart-big-number", + "version": "0.18.25", + "description": "Superset Legacy Chart - Big Number", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@data-ui/xy-chart": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@types/d3-color": "^1.2.2", + "@types/shortid": "^0.0.29", + "d3-color": "^1.2.3", + "shortid": "^2.2.14" + }, + "peerDependencies": { + "react": "^15 || ^16" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/BigNumber.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/BigNumber.tsx new file mode 100644 index 000000000000..6f559f3e71b5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/BigNumber.tsx @@ -0,0 +1,438 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import shortid from 'shortid'; +import { + t, + getNumberFormatter, + NumberFormatter, + smartDateVerboseFormatter, + TimeFormatter, + computeMaxFontSize, + BRAND_COLOR, + styled, +} from '@superset-ui/core'; +import { + XYChart, + AreaSeries, + CrossHair, + LinearGradient, +} from '@data-ui/xy-chart'; + +const defaultNumberFormatter = getNumberFormatter(); + +const CHART_MARGIN = { + top: 4, + right: 4, + bottom: 4, + left: 4, +}; + +const PROPORTION = { + // text size: proportion of the chart container sans trendline + KICKER: 0.1, + HEADER: 0.3, + SUBHEADER: 0.125, + // trendline size: proportion of the whole chart container + TRENDLINE: 0.3, +}; + +type TimeSeriesDatum = { + x: number; // timestamp as a number + y: number | null; +}; + +export function renderTooltipFactory( + formatDate = smartDateVerboseFormatter, + formatValue = defaultNumberFormatter, +) { + return function renderTooltip({ + datum: { x, y }, + }: { + datum: TimeSeriesDatum; + }) { + // even though `formatDate` supports timestamp as numbers, we need + // `new Date` to pass type check + return ( +
+ {formatDate(new Date(x))} +
+ {y === null ? t('N/A') : formatValue(y)} +
+ ); + }; +} + +type BigNumberVisProps = { + className?: string; + width: number; + height: number; + bigNumber?: number | null; + bigNumberFallback?: TimeSeriesDatum; + headerFormatter: NumberFormatter | TimeFormatter; + formatTime: TimeFormatter; + fromDatetime?: number; + toDatetime?: number; + headerFontSize: number; + kickerFontSize: number; + subheader: string; + subheaderFontSize: number; + showTimestamp?: boolean; + showTrendLine?: boolean; + startYAxisAtZero?: boolean; + timeRangeFixed?: boolean; + timestamp?: number; + trendLineData?: TimeSeriesDatum[]; + mainColor: string; +}; + +class BigNumberVis extends React.PureComponent { + private gradientId: string = shortid.generate(); + + static defaultProps = { + className: '', + headerFormatter: defaultNumberFormatter, + formatTime: smartDateVerboseFormatter, + headerFontSize: PROPORTION.HEADER, + kickerFontSize: PROPORTION.KICKER, + mainColor: BRAND_COLOR, + showTimestamp: false, + showTrendLine: false, + startYAxisAtZero: true, + subheader: '', + subheaderFontSize: PROPORTION.SUBHEADER, + timeRangeFixed: false, + }; + + getClassName() { + const { className, showTrendLine, bigNumberFallback } = this.props; + const names = `superset-legacy-chart-big-number ${className} ${ + bigNumberFallback ? 'is-fallback-value' : '' + }`; + if (showTrendLine) return names; + return `${names} no-trendline`; + } + + createTemporaryContainer() { + const container = document.createElement('div'); + container.className = this.getClassName(); + container.style.position = 'absolute'; // so it won't disrupt page layout + container.style.opacity = '0'; // and not visible + return container; + } + + renderFallbackWarning() { + const { bigNumberFallback, formatTime, showTimestamp } = this.props; + if (!bigNumberFallback || showTimestamp) return null; + return ( + + {t('Not up to date')} + + ); + } + + renderKicker(maxHeight: number) { + const { timestamp, showTimestamp, formatTime, width } = this.props; + if (!showTimestamp) return null; + + const text = timestamp === null ? '' : formatTime(timestamp); + + const container = this.createTemporaryContainer(); + document.body.append(container); + const fontSize = computeMaxFontSize({ + text, + maxWidth: width, + maxHeight, + className: 'kicker', + container, + }); + container.remove(); + + return ( +
+ {text} +
+ ); + } + + renderHeader(maxHeight: number) { + const { bigNumber, headerFormatter, width } = this.props; + const text = bigNumber === null ? t('No data') : headerFormatter(bigNumber); + + const container = this.createTemporaryContainer(); + document.body.append(container); + const fontSize = computeMaxFontSize({ + text, + maxWidth: width, + maxHeight, + className: 'header-line', + container, + }); + container.remove(); + + return ( +
+ {text} +
+ ); + } + + renderSubheader(maxHeight: number) { + const { bigNumber, subheader, width, bigNumberFallback } = this.props; + let fontSize = 0; + + const NO_DATA_OR_HASNT_LANDED = t( + 'No data after filtering or data is NULL for the latest time record', + ); + const NO_DATA = t( + 'Try applying different filters or ensuring your datasource has data', + ); + let text = subheader; + if (bigNumber === null) { + text = bigNumberFallback ? NO_DATA : NO_DATA_OR_HASNT_LANDED; + } + if (text) { + const container = this.createTemporaryContainer(); + document.body.append(container); + fontSize = computeMaxFontSize({ + text, + maxWidth: width, + maxHeight, + className: 'subheader-line', + container, + }); + container.remove(); + + return ( +
+ {text} +
+ ); + } + return null; + } + + renderTrendline(maxHeight: number) { + const { + width, + trendLineData, + mainColor, + subheader, + startYAxisAtZero, + headerFormatter, + formatTime, + fromDatetime, + timeRangeFixed, + } = this.props; + + // if can't find any non-null values, no point rendering the trendline + if (!trendLineData?.some(d => d.y !== null)) { + return null; + } + + // Apply a fixed X range if a time range is specified. + // + // XYChart checks the existence of `domain` property and decide whether to + // apply a domain or not, so it must not be `null` or `undefined` + const xScale: { type: string; domain?: number[] } = { type: 'timeUtc' }; + const tooltipData = trendLineData && [...trendLineData]; + if (tooltipData && timeRangeFixed && fromDatetime) { + const toDatetime = this.props.toDatetime ?? Date.now(); + if (tooltipData[0].x > fromDatetime) { + tooltipData.unshift({ + x: fromDatetime, + y: null, + }); + } + if (tooltipData[tooltipData.length - 1].x < toDatetime) { + tooltipData.push({ + x: toDatetime, + y: null, + }); + } + xScale.domain = [fromDatetime, toDatetime]; + } + return ( + + + + + + ); + } + + render() { + const { + showTrendLine, + height, + kickerFontSize, + headerFontSize, + subheaderFontSize, + } = this.props; + const className = this.getClassName(); + + if (showTrendLine) { + const chartHeight = Math.floor(PROPORTION.TRENDLINE * height); + const allTextHeight = height - chartHeight; + + return ( +
+
+ {this.renderFallbackWarning()} + {this.renderKicker( + Math.ceil(kickerFontSize * (1 - PROPORTION.TRENDLINE) * height), + )} + {this.renderHeader( + Math.ceil(headerFontSize * (1 - PROPORTION.TRENDLINE) * height), + )} + {this.renderSubheader( + Math.ceil( + subheaderFontSize * (1 - PROPORTION.TRENDLINE) * height, + ), + )} +
+ {this.renderTrendline(chartHeight)} +
+ ); + } + + return ( +
+ {this.renderFallbackWarning()} + {this.renderKicker(kickerFontSize * height)} + {this.renderHeader(Math.ceil(headerFontSize * height))} + {this.renderSubheader(Math.ceil(subheaderFontSize * height))} +
+ ); + } +} + +export default styled(BigNumberVis)` + font-family: ${({ theme }) => theme.typography.families.sansSerif}; + position: relative; + display: flex; + flex-direction: column; + justify-content: center; + + &.no-trendline .subheader-line { + padding-bottom: 0.3em; + } + + .text-container { + display: flex; + flex-direction: column; + justify-content: center; + align-items: flex-start; + .alert { + font-size: ${({ theme }) => theme.typography.sizes.s}; + margin: -0.5em 0 0.4em; + line-height: 1; + padding: 2px 4px 3px; + border-radius: 3px; + } + } + + .kicker { + font-weight: ${({ theme }) => theme.typography.weights.light}; + line-height: 1em; + padding-bottom: 2em; + } + + .header-line { + font-weight: ${({ theme }) => theme.typography.weights.normal}; + position: relative; + line-height: 1em; + span { + position: absolute; + bottom: 0; + } + } + + .subheader-line { + font-weight: ${({ theme }) => theme.typography.weights.light}; + line-height: 1em; + padding-bottom: 0; + } + + &.is-fallback-value { + .kicker, + .header-line, + .subheader-line { + opacity: 0.5; + } + } + + .superset-data-ui-tooltip { + z-index: 1000; + background: #000; + } +`; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/controlPanel.tsx new file mode 100644 index 000000000000..045f7fc7bdfb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/controlPanel.tsx @@ -0,0 +1,215 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + D3_FORMAT_DOCS, + D3_TIME_FORMAT_OPTIONS, + formatSelectOptions, + sections, +} from '@superset-ui/chart-controls'; +import React from 'react'; +import { headerFontSize, subheaderFontSize } from '../sharedControls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [['metric'], ['adhoc_filters']], + }, + { + label: t('Options'), + tabOverride: 'data', + expanded: true, + controlSetRows: [ + [ + { + name: 'compare_lag', + config: { + type: 'TextControl', + label: t('Comparison Period Lag'), + isInt: true, + description: t( + 'Based on granularity, number of time periods to compare against', + ), + }, + }, + ], + [ + { + name: 'compare_suffix', + config: { + type: 'TextControl', + label: t('Comparison suffix'), + description: t('Suffix to apply after the percentage display'), + }, + }, + ], + ['y_axis_format'], + [ + { + name: 'time_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Timestamp format'), + renderTrigger: true, + choices: D3_TIME_FORMAT_OPTIONS, + description: D3_FORMAT_DOCS, + }, + }, + ], + [ + { + name: 'show_timestamp', + config: { + type: 'CheckboxControl', + label: t('Show Timestamp'), + renderTrigger: true, + default: false, + description: t('Whether to display the timestamp'), + }, + }, + ], + [ + { + name: 'show_trend_line', + config: { + type: 'CheckboxControl', + label: t('Show Trend Line'), + renderTrigger: true, + default: true, + description: t('Whether to display the trend line'), + }, + }, + ], + [ + { + name: 'start_y_axis_at_zero', + config: { + type: 'CheckboxControl', + label: t('Start y-axis at 0'), + renderTrigger: true, + default: true, + description: t( + 'Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.', + ), + }, + }, + ], + [ + { + name: 'time_range_fixed', + config: { + type: 'CheckboxControl', + label: t('Fix to selected Time Range'), + description: t( + 'Fix the trend line to the full time range specified in case filtered results do not include the start or end dates', + ), + renderTrigger: true, + visibility(props) { + const { time_range: timeRange } = props.form_data; + // only display this option when a time range is selected + return !!timeRange && timeRange !== 'No filter'; + }, + }, + }, + ], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_picker', null], + [headerFontSize], + [subheaderFontSize], + ], + }, + { + label: t('Advanced Analytics'), + expanded: false, + controlSetRows: [ + // eslint-disable-next-line react/jsx-key + [

{t('Rolling Window')}

], + [ + { + name: 'rolling_type', + config: { + type: 'SelectControl', + label: t('Rolling Function'), + default: 'None', + choices: formatSelectOptions([ + 'None', + 'mean', + 'sum', + 'std', + 'cumsum', + ]), + description: t( + 'Defines a rolling window function to apply, works along ' + + 'with the [Periods] text box', + ), + }, + }, + ], + [ + { + name: 'rolling_periods', + config: { + type: 'TextControl', + label: t('Periods'), + isInt: true, + description: t( + 'Defines the size of the rolling window function, ' + + 'relative to the time granularity selected', + ), + }, + }, + ], + [ + { + name: 'min_periods', + config: { + type: 'TextControl', + label: t('Min Periods'), + isInt: true, + description: t( + 'The minimum number of rolling periods required to show ' + + 'a value. For instance if you do a cumulative sum on 7 days ' + + 'you may want your "Min Period" to be 7, so that all data points ' + + 'shown are the total of 7 periods. This will hide the "ramp up" ' + + 'taking place over the first 7 periods', + ), + }, + }, + ], + ], + }, + ], + controlOverrides: { + y_axis_format: { + label: t('Number format'), + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/images/Big_Number_Trendline.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/images/Big_Number_Trendline.jpg new file mode 100644 index 000000000000..f131b25c2b49 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/images/Big_Number_Trendline.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/images/thumbnail.png new file mode 100644 index 000000000000..15aa9ba4c76b Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/images/thumbnailLarge.png new file mode 100644 index 000000000000..b7e3ea24f64a Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/index.ts new file mode 100644 index 000000000000..2cfee291fc16 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/index.ts @@ -0,0 +1,61 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import controlPanel from './controlPanel'; +import transformProps, { + BigNumberChartProps, + BigNumberFormData, +} from './transformProps'; +import example from './images/Big_Number_Trendline.jpg'; +import thumbnail from './images/thumbnail.png'; + +const metadata = new ChartMetadata({ + category: t('KPI'), + description: t( + 'Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.', + ), + exampleGallery: [{ url: example }], + name: t('Big Number with Trendline'), + tags: [ + t('Advanced-Analytics'), + t('Formattable'), + t('Line'), + t('Percentages'), + t('Popular'), + t('Report'), + t('Description'), + t('Trend'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class BigNumberChartPlugin extends ChartPlugin< + BigNumberFormData, + BigNumberChartProps +> { + constructor() { + super({ + loadChart: () => import('./BigNumber'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/transformProps.ts new file mode 100644 index 000000000000..6e4674dca1dc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumber/transformProps.ts @@ -0,0 +1,187 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import * as color from 'd3-color'; +import { + extractTimegrain, + getNumberFormatter, + getTimeFormatter, + getTimeFormatterForGranularity, + NumberFormats, + ChartProps, + LegacyQueryData, + QueryFormData, + smartDateFormatter, +} from '@superset-ui/core'; + +const TIME_COLUMN = '__timestamp'; +const formatPercentChange = getNumberFormatter( + NumberFormats.PERCENT_SIGNED_1_POINT, +); + +// we trust both the x (time) and y (big number) to be numeric +export interface BigNumberDatum { + [key: string]: number | null; +} + +export type BigNumberFormData = QueryFormData & { + colorPicker?: { + r: number; + g: number; + b: number; + }; + metric?: + | { + label: string; + } + | string; + compareLag?: string | number; + yAxisFormat?: string; +}; + +export type BigNumberChartProps = ChartProps & { + formData: BigNumberFormData; + queriesData: (LegacyQueryData & { + data?: BigNumberDatum[]; + })[]; +}; + +export default function transformProps(chartProps: BigNumberChartProps) { + const { width, height, queriesData, formData, rawFormData } = chartProps; + const { + colorPicker, + compareLag: compareLag_, + compareSuffix = '', + timeFormat, + headerFontSize, + metric = 'value', + showTimestamp, + showTrendLine, + startYAxisAtZero, + subheader = '', + subheaderFontSize, + vizType, + timeRangeFixed = false, + } = formData; + const granularity = extractTimegrain(rawFormData as QueryFormData); + let { yAxisFormat } = formData; + const { headerFormatSelector, headerTimestampFormat } = formData; + const { + data = [], + from_dttm: fromDatetime, + to_dttm: toDatetime, + } = queriesData[0]; + const metricName = typeof metric === 'string' ? metric : metric.label; + const compareLag = Number(compareLag_) || 0; + const supportTrendLine = vizType === 'big_number'; + const supportAndShowTrendLine = supportTrendLine && showTrendLine; + let formattedSubheader = subheader; + + let mainColor; + if (colorPicker) { + const { r, g, b } = colorPicker; + mainColor = color.rgb(r, g, b).hex(); + } + + let trendLineData; + let percentChange = 0; + let bigNumber = data.length === 0 ? null : data[0][metricName]; + let timestamp = data.length === 0 ? null : data[0][TIME_COLUMN]; + let bigNumberFallback; + + if (data.length > 0) { + const sortedData = (data as BigNumberDatum[]) + .map(d => ({ x: d[TIME_COLUMN], y: d[metricName] })) + // sort in time descending order + .sort((a, b) => (a.x !== null && b.x !== null ? b.x - a.x : 0)); + + bigNumber = sortedData[0].y; + timestamp = sortedData[0].x; + + if (bigNumber === null) { + bigNumberFallback = sortedData.find(d => d.y !== null); + bigNumber = bigNumberFallback ? bigNumberFallback.y : null; + timestamp = bigNumberFallback ? bigNumberFallback.x : null; + } + + if (compareLag > 0) { + const compareIndex = compareLag; + if (compareIndex < sortedData.length) { + const compareValue = sortedData[compareIndex].y; + // compare values must both be non-nulls + if (bigNumber !== null && compareValue !== null && compareValue !== 0) { + percentChange = (bigNumber - compareValue) / Math.abs(compareValue); + formattedSubheader = `${formatPercentChange( + percentChange, + )} ${compareSuffix}`; + } + } + } + + if (supportTrendLine) { + // must reverse to ascending order otherwise it confuses tooltip triggers + sortedData.reverse(); + trendLineData = supportAndShowTrendLine ? sortedData : undefined; + } + } + + let className = ''; + if (percentChange > 0) { + className = 'positive'; + } else if (percentChange < 0) { + className = 'negative'; + } + + if (!yAxisFormat && chartProps.datasource && chartProps.datasource.metrics) { + chartProps.datasource.metrics.forEach(metricEntry => { + if (metricEntry.metric_name === metric && metricEntry.d3format) { + yAxisFormat = metricEntry.d3format; + } + }); + } + + const headerFormatter = headerFormatSelector + ? getTimeFormatter(headerTimestampFormat) + : getNumberFormatter(yAxisFormat); + const formatTime = + timeFormat === smartDateFormatter.id + ? getTimeFormatterForGranularity(granularity) + : getTimeFormatter(timeFormat); + + return { + width, + height, + bigNumber, + bigNumberFallback, + className, + headerFormatter, + formatTime, + headerFontSize, + subheaderFontSize, + mainColor, + showTimestamp, + showTrendLine: supportAndShowTrendLine, + startYAxisAtZero, + subheader: formattedSubheader, + timestamp, + trendLineData, + fromDatetime, + toDatetime, + timeRangeFixed, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/controlPanel.ts new file mode 100644 index 000000000000..f6ab2f3c6e57 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/controlPanel.ts @@ -0,0 +1,98 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + D3_FORMAT_DOCS, + D3_TIME_FORMAT_OPTIONS, + sections, +} from '@superset-ui/chart-controls'; +import { headerFontSize, subheaderFontSize } from '../sharedControls'; + +export default { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [['metric'], ['adhoc_filters']], + }, + { + label: t('Options'), + expanded: true, + tabOverride: 'data', + controlSetRows: [ + [ + { + name: 'subheader', + config: { + type: 'TextControl', + label: t('Subheader'), + renderTrigger: true, + description: t( + 'Description text that shows up below your Big Number', + ), + }, + }, + ], + ['y_axis_format'], + [ + { + name: 'header_format_selector', + config: { + type: 'CheckboxControl', + label: t('Timestamp Format'), + renderTrigger: true, + default: false, + description: t('Whether to format the timestamp'), + }, + }, + ], + [ + { + name: 'header_timestamp_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Date format'), + renderTrigger: true, + choices: D3_TIME_FORMAT_OPTIONS, + default: '%d-%m-%Y %H:%M:%S', + description: D3_FORMAT_DOCS, + visibility(props) { + const { header_format_selector } = props.form_data; + return !!header_format_selector; + }, + }, + }, + ], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [[headerFontSize], [subheaderFontSize]], + }, + ], + controlOverrides: { + y_axis_format: { + label: t('Number format'), + }, + }, +} as ControlPanelConfig; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/BigNumber.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/BigNumber.jpg new file mode 100644 index 000000000000..c5b017233687 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/BigNumber.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/BigNumber2.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/BigNumber2.jpg new file mode 100644 index 000000000000..782b9f9e083f Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/BigNumber2.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/thumbnail.png new file mode 100644 index 000000000000..bab5074454e3 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/thumbnailLarge.png new file mode 100644 index 000000000000..ef66511a1af1 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/index.ts new file mode 100644 index 000000000000..7bece7b8c1cb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/BigNumberTotal/index.ts @@ -0,0 +1,65 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import controlPanel from './controlPanel'; +import transformProps, { + BigNumberChartProps, + BigNumberFormData, +} from '../BigNumber/transformProps'; +import example1 from './images/BigNumber.jpg'; +import example2 from './images/BigNumber2.jpg'; +import thumbnail from './images/thumbnail.png'; + +const metadata = new ChartMetadata({ + category: t('KPI'), + description: t( + 'Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.', + ), + exampleGallery: [ + { url: example1, caption: t('A Big Number') }, + { url: example2, caption: t('With a subheader') }, + ], + name: t('Big Number'), + tags: [ + t('Additive'), + t('Business'), + t('Formattable'), + t('Legacy'), + t('Percentages'), + t('Popular'), + t('Report'), + t('Description'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class BigNumberTotalChartPlugin extends ChartPlugin< + BigNumberFormData, + BigNumberChartProps +> { + constructor() { + super({ + loadChart: () => import('../BigNumber/BigNumber'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/index.ts new file mode 100644 index 000000000000..ec2413cf2ddc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/index.ts @@ -0,0 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as BigNumberChartPlugin } from './BigNumber/index'; +export { default as BigNumberTotalChartPlugin } from './BigNumberTotal/index'; +export { default as BigNumberChartPreset } from './preset'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/preset.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/preset.ts new file mode 100644 index 000000000000..6e330e49fb4e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/preset.ts @@ -0,0 +1,33 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { Preset } from '@superset-ui/core'; +import BigNumberChartPlugin from './BigNumber'; +import BigNumberTotalChartPlugin from './BigNumberTotal'; + +export default class BigNumberChartPreset extends Preset { + constructor() { + super({ + name: 'BigNumber charts', + plugins: [ + new BigNumberChartPlugin().configure({ key: 'big_number' }), + new BigNumberTotalChartPlugin().configure({ key: 'big_number_total' }), + ], + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/sharedControls.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/sharedControls.ts new file mode 100644 index 000000000000..de13c6c844ea --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/sharedControls.ts @@ -0,0 +1,90 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +// These are control configurations that are shared ONLY within the BigNumber viz plugin repo. +import { t } from '@superset-ui/core'; +import { CustomControlItem } from '@superset-ui/chart-controls'; + +export const headerFontSize: CustomControlItem = { + name: 'header_font_size', + config: { + type: 'SelectControl', + label: t('Big Number Font Size'), + renderTrigger: true, + clearable: false, + default: 0.4, + // Values represent the percentage of space a header should take + options: [ + { + label: t('Tiny'), + value: 0.2, + }, + { + label: t('Small'), + value: 0.3, + }, + { + label: t('Normal'), + value: 0.4, + }, + { + label: t('Large'), + value: 0.5, + }, + { + label: t('Huge'), + value: 0.6, + }, + ], + }, +}; + +export const subheaderFontSize: CustomControlItem = { + name: 'subheader_font_size', + config: { + type: 'SelectControl', + label: t('Subheader Font Size'), + renderTrigger: true, + clearable: false, + default: 0.15, + // Values represent the percentage of space a subheader should take + options: [ + { + label: t('Tiny'), + value: 0.125, + }, + { + label: t('Small'), + value: 0.15, + }, + { + label: t('Normal'), + value: 0.2, + }, + { + label: t('Large'), + value: 0.3, + }, + { + label: t('Huge'), + value: 0.4, + }, + ], + }, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/types/external.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/types/external.d.ts new file mode 100644 index 000000000000..bd49e0aeeabe --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/src/types/external.d.ts @@ -0,0 +1,21 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +declare module '@data-ui/xy-chart'; +declare module '*.png'; +declare module '*.jpg'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/test/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/test/transformProps.test.ts new file mode 100644 index 000000000000..d19139b0fd2a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/test/transformProps.test.ts @@ -0,0 +1,145 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { DatasourceType, TimeGranularity } from '@superset-ui/core'; +import transformProps, { + BignumberChartProps, + BigNumberDatum, +} from '../src/BigNumber/transformProps'; + +const formData = { + metric: 'value', + colorPicker: { + r: 0, + g: 122, + b: 135, + a: 1, + }, + compareLag: 1, + timeGrainSqla: 'P3M' as TimeGranularity, + compareSuffix: 'over last quarter', + vizType: 'big_number', + yAxisFormat: '.3s', +}; + +const rawFormData = { + metric: 'value', + color_picker: { + r: 0, + g: 122, + b: 135, + a: 1, + }, + compare_lag: 1, + time_grain_sqla: 'P3M' as TimeGranularity, + compare_suffix: 'over last quarter', + viz_type: 'big_number', + y_axis_format: '.3s', +}; + +function generateProps( + data: BigNumberDatum[], + extraFormData = {}, + extraQueryData = {}, +): BignumberChartProps { + return { + width: 200, + height: 500, + annotationData: {}, + datasource: { + id: 0, + name: '', + type: DatasourceType.Table, + columns: [], + metrics: [], + columnFormats: {}, + verboseMap: {}, + }, + rawDatasource: {}, + rawFormData, + hooks: {}, + initialValues: {}, + formData: { + ...formData, + ...extraFormData, + }, + queriesData: [ + { + data, + ...extraQueryData, + }, + ], + }; +} + +describe('BigNumber', () => { + const props = generateProps( + [ + { + __timestamp: 0, + value: 1.2345, + }, + { + __timestamp: 100, + value: null, + }, + ], + { showTrendLine: true }, + ); + + describe('transformProps()', () => { + it('should fallback and format time', () => { + const transformed = transformProps(props); + // the first item is the last item sorted by __timestamp + const lastDatum = transformed.trendLineData?.pop(); + + // should use last available value + expect(lastDatum?.x).toStrictEqual(100); + expect(lastDatum?.y).toBeNull(); + + // should note this is a fallback + expect(transformed.bigNumber).toStrictEqual(1.2345); + expect(transformed.bigNumberFallback).not.toBeNull(); + + // should successfully formatTime by ganularity + expect(transformed.formatTime(new Date('2020-01-01'))).toStrictEqual( + '2020-01-01 00:00:00', + ); + }); + + it('should respect datasource d3 format', () => { + const propsWithDatasource = { + ...props, + datasource: { + ...props.datasource, + metrics: [ + { + label: 'value', + metric_name: 'value', + d3format: '.2f', + }, + ], + }, + }; + const transformed = transformProps(propsWithDatasource); + expect(transformed.headerFormatter(transformed.bigNumber)).toStrictEqual( + '1.23', + ); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/test/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/test/tsconfig.json new file mode 100644 index 000000000000..481ca5b4db93 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/test/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "composite": false, + "emitDeclarationOnly": false, + "noEmit": true, + "rootDir": "." + }, + "extends": "../../../tsconfig.json", + "include": [ + "**/*", + "../types/**/*", + "../../../types/**/*" + ], + "references": [ + { + "path": ".." + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-big-number/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/CHANGELOG.md new file mode 100644 index 000000000000..30122c832944 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/CHANGELOG.md @@ -0,0 +1,51 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/legacy-preset-chart-nvd3 + + + + + +## [0.17.63](https://github.com/apache-superset/superset-ui/compare/v0.17.62...v0.17.63) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-preset-chart-nvd3 + + + + + +## [0.17.62](https://github.com/apache-superset/superset-ui/compare/v0.17.61...v0.17.62) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-preset-chart-nvd3 + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/legacy-preset-chart-nvd3 diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/README.md new file mode 100644 index 000000000000..d334d8625bfc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/README.md @@ -0,0 +1,64 @@ + + +## @superset-ui/legacy-preset-chart-nvd3 + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-preset-chart-nvd3.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-preset-chart-nvd3) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-preset-chart-nvd3&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-preset-chart-nvd3) + +This plugin provides Big Number for Superset. + +### Usage + +Import the preset and register. This will register all the chart plugins under nvd3. + +```js +import { NVD3ChartPreset } from '@superset-ui/legacy-preset-chart-nvd3'; + +new NVD3ChartPreset().register(); +``` + +or register charts one by one. Configure `key`, which can be any `string`, and register the plugin. +This `key` will be used to lookup this chart throughout the app. + +```js +import { + AreaChartPlugin, + LineChartPlugin, +} from '@superset-ui/legacy-preset-chart-nvd3'; + +new AreaChartPlugin().configure({ key: 'area' }).register(); +new LineChartPlugin().configure({ key: 'line' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-nvd3) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/package.json new file mode 100644 index 000000000000..a0c738b15de8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/package.json @@ -0,0 +1,47 @@ +{ + "name": "@superset-ui/legacy-preset-chart-nvd3", + "version": "0.18.25", + "description": "Superset Legacy Chart - NVD3", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@data-ui/xy-chart": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3": "^3.5.17", + "d3-tip": "^0.9.1", + "dompurify": "^2.0.6", + "fast-safe-stringify": "^2.0.6", + "lodash": "^4.17.11", + "moment": "^2.20.1", + "nvd3-fork": "^2.0.5", + "prop-types": "^15.6.2", + "urijs": "^1.18.10" + }, + "peerDependencies": { + "react": "^15 || ^16" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts new file mode 100644 index 000000000000..c3c08a23c028 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts @@ -0,0 +1,92 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { ControlPanelConfig, sections } from '@superset-ui/chart-controls'; +import { + lineInterpolation, + showBrush, + showLegend, + showControls, + xAxisLabel, + bottomMargin, + xTicksLayout, + xAxisFormat, + yLogScale, + yAxisBounds, + xAxisShowMinmax, + richTooltip, + timeSeriesSection, +} from '../NVD3Controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + timeSeriesSection[0], + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + [showBrush, showLegend], + [ + lineInterpolation, + { + name: 'stacked_style', + config: { + type: 'SelectControl', + label: t('Stacked Style'), + renderTrigger: true, + choices: [ + ['stack', 'stack'], + ['stream', 'stream'], + ['expand', 'expand'], + ], + default: 'stack', + description: '', + }, + }, + ], + ['color_scheme'], + [richTooltip, showControls], + ], + }, + { + label: t('X Axis'), + tabOverride: 'customize', + expanded: true, + controlSetRows: [ + [xAxisLabel, bottomMargin], + [xTicksLayout, xAxisFormat], + [xAxisShowMinmax, null], + ], + }, + { + label: t('Y Axis'), + tabOverride: 'customize', + expanded: true, + controlSetRows: [ + ['y_axis_format', yAxisBounds], + [yLogScale, null], + ], + }, + timeSeriesSection[1], + sections.annotations, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/example1.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/example1.jpg new file mode 100644 index 000000000000..0887fa8fef04 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/example1.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/example2.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/example2.jpg new file mode 100644 index 000000000000..9fa66adbab69 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/example2.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/example3.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/example3.jpg new file mode 100644 index 000000000000..1bd3cedda6b5 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/example3.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/example4.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/example4.jpg new file mode 100644 index 000000000000..b4e1ff07e668 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/example4.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/thumbnail.png new file mode 100644 index 000000000000..270ed2339da6 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/thumbnailLarge.png new file mode 100644 index 000000000000..d8b23bea15f0 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/index.js new file mode 100644 index 000000000000..1b31acfd4468 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Area/index.js @@ -0,0 +1,70 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from '../transformProps'; +import example1 from './images/example1.jpg'; +import example2 from './images/example2.jpg'; +import example3 from './images/example3.jpg'; +import example4 from './images/example4.jpg'; +import thumbnail from './images/thumbnail.png'; +import { ANNOTATION_TYPES } from '../vendor/superset/AnnotationTypes'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Evolution'), + credits: ['http://nvd3.org'], + description: t( + 'A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.', + ), + exampleGallery: [ + { url: example1, caption: t('Stretched style') }, + { url: example2, caption: t('Stacked style') }, + { url: example3, caption: t('Video game consoles') }, + { url: example4, caption: t('Vehicle Types') }, + ], + name: t('Area Chart'), + supportedAnnotationTypes: [ANNOTATION_TYPES.INTERVAL, ANNOTATION_TYPES.EVENT], + tags: [ + t('Aesthetic'), + t('Comparison'), + t('Continuous'), + t('Legacy'), + t('Line'), + t('Percentages'), + t('Proportional'), + t('Stacked'), + t('Time'), + t('Trend'), + t('nvd3'), + t('Deprecated'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class AreaChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../ReactNVD3'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts new file mode 100644 index 000000000000..d53ad9fcf5ea --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts @@ -0,0 +1,91 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { ControlPanelConfig, sections } from '@superset-ui/chart-controls'; +import { + lineInterpolation, + showBrush, + showLegend, + showControls, + xAxisLabel, + yAxisLabel, + bottomMargin, + xTicksLayout, + xAxisFormat, + yLogScale, + yAxisBounds, + xAxisShowMinmax, + yAxisShowMinmax, + richTooltip, + showBarValue, + barStacked, + reduceXTicks, + leftMargin, + timeSeriesSection, +} from '../NVD3Controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + timeSeriesSection[0], + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + [showBrush], + [showLegend], + [showBarValue], + [richTooltip], + [barStacked], + [lineInterpolation], + [showControls], + [bottomMargin], + ], + }, + { + label: t('X Axis'), + expanded: true, + controlSetRows: [ + [xAxisLabel], + [bottomMargin], + [xTicksLayout], + [xAxisFormat], + [xAxisShowMinmax], + [reduceXTicks], + ], + }, + { + label: t('Y Axis'), + expanded: true, + controlSetRows: [ + [yAxisLabel], + [leftMargin], + [yAxisShowMinmax], + [yLogScale], + ['y_axis_format'], + [yAxisBounds], + ], + }, + timeSeriesSection[1], + sections.annotations, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/images/Time_Series_Bar_Chart.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/images/Time_Series_Bar_Chart.jpg new file mode 100644 index 000000000000..f443980b3cae Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/images/Time_Series_Bar_Chart.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/images/Time_Series_Bar_Chart2.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/images/Time_Series_Bar_Chart2.jpg new file mode 100644 index 000000000000..3f906a48351b Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/images/Time_Series_Bar_Chart2.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/images/Time_Series_Bar_Chart3.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/images/Time_Series_Bar_Chart3.jpg new file mode 100644 index 000000000000..4b48ccea9415 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/images/Time_Series_Bar_Chart3.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/images/thumbnail.png new file mode 100644 index 000000000000..e3ef12099392 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/images/thumbnailLarge.png new file mode 100644 index 000000000000..35c176e6d1a7 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/index.js new file mode 100644 index 000000000000..7e84fe48e547 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bar/index.js @@ -0,0 +1,59 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from '../transformProps'; +import thumbnail from './images/thumbnail.png'; +import example1 from './images/Time_Series_Bar_Chart.jpg'; +import example2 from './images/Time_Series_Bar_Chart2.jpg'; +import example3 from './images/Time_Series_Bar_Chart3.jpg'; +import { ANNOTATION_TYPES } from '../vendor/superset/AnnotationTypes'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Evolution'), + credits: ['http://nvd3.org'], + description: t( + 'Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.', + ), + exampleGallery: [{ url: example1 }, { url: example2 }, { url: example3 }], + name: t('Time-series Bar Chart'), + supportedAnnotationTypes: [ANNOTATION_TYPES.INTERVAL, ANNOTATION_TYPES.EVENT], + tags: [ + t('Time'), + t('Trend'), + t('Stacked'), + t('Vertical'), + t('Percentages'), + t('Proportional'), + t('Advanced-Analytics'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class BarChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../ReactNVD3'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/BoxPlot/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/BoxPlot/images/thumbnail.png new file mode 100644 index 000000000000..ece94d08073c Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/BoxPlot/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/BoxPlot/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/BoxPlot/images/thumbnailLarge.png new file mode 100644 index 000000000000..35eff285e3d4 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/BoxPlot/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js new file mode 100644 index 000000000000..1f5a5e99dbdb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js @@ -0,0 +1,39 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from '../transformProps'; +import thumbnail from './images/thumbnail.png'; + +const metadata = new ChartMetadata({ + credits: ['http://nvd3.org'], + description: '', + name: t('Box Plot'), + thumbnail, + useLegacyApi: true, +}); + +export default class BoxPlotChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../ReactNVD3'), + metadata, + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts new file mode 100644 index 000000000000..33a4ea6bf02c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts @@ -0,0 +1,133 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + formatSelectOptions, + D3_FORMAT_OPTIONS, + sections, +} from '@superset-ui/chart-controls'; +import { + showLegend, + xAxisLabel, + yAxisLabel, + bottomMargin, + xTicksLayout, + xAxisFormat, + yLogScale, + xAxisShowMinmax, + yAxisShowMinmax, + leftMargin, + yAxisBounds, +} from '../NVD3Controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['series'], + ['entity'], + ['x'], + ['y'], + ['adhoc_filters'], + ['size'], + [ + { + name: 'max_bubble_size', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Max Bubble Size'), + default: '25', + choices: formatSelectOptions([ + '5', + '10', + '15', + '25', + '50', + '75', + '100', + ]), + }, + }, + ], + ['limit', null], + ], + }, + { + label: t('Chart Options'), + expanded: true, + tabOverride: 'customize', + controlSetRows: [['color_scheme'], [showLegend, null]], + }, + { + label: t('X Axis'), + expanded: true, + tabOverride: 'customize', + controlSetRows: [ + [xAxisLabel, leftMargin], + [ + { + name: xAxisFormat.name, + config: { + ...xAxisFormat.config, + default: 'SMART_NUMBER', + choices: D3_FORMAT_OPTIONS, + }, + }, + xTicksLayout, + ], + [ + { + name: 'x_log_scale', + config: { + type: 'CheckboxControl', + label: t('X Log Scale'), + default: false, + renderTrigger: true, + description: t('Use a log scale for the X-axis'), + }, + }, + xAxisShowMinmax, + ], + ], + }, + { + label: t('Y Axis'), + expanded: true, + tabOverride: 'customize', + controlSetRows: [ + [yAxisLabel, bottomMargin], + ['y_axis_format', null], + [yLogScale, yAxisShowMinmax], + [yAxisBounds], + ], + }, + ], + controlOverrides: { + color_scheme: { + renderTrigger: false, + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bubble/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bubble/images/thumbnail.png new file mode 100644 index 000000000000..c27ba4719719 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bubble/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bubble/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bubble/images/thumbnailLarge.png new file mode 100644 index 000000000000..c1127688efc1 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bubble/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js new file mode 100644 index 000000000000..a97d9bd7b67d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js @@ -0,0 +1,54 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from '../transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Correlation'), + credits: ['http://nvd3.org'], + description: t( + 'Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.', + ), + name: t('Bubble Chart'), + tags: [ + t('Multi-Dimensions'), + t('Aesthetic'), + t('Comparison'), + t('Legacy'), + t('Scatter'), + t('Time'), + t('Trend'), + t('nvd3'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class BubbleChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../ReactNVD3'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts new file mode 100644 index 000000000000..7f82e33d10e2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts @@ -0,0 +1,99 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { ControlPanelConfig, sections } from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [['metric'], ['adhoc_filters']], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + [ + { + name: 'ranges', + config: { + type: 'TextControl', + label: t('Ranges'), + default: '', + description: t('Ranges to highlight with shading'), + }, + }, + { + name: 'range_labels', + config: { + type: 'TextControl', + label: t('Range labels'), + default: '', + description: t('Labels for the ranges'), + }, + }, + ], + [ + { + name: 'markers', + config: { + type: 'TextControl', + label: t('Markers'), + default: '', + description: t('List of values to mark with triangles'), + }, + }, + { + name: 'marker_labels', + config: { + type: 'TextControl', + label: t('Marker labels'), + default: '', + description: t('Labels for the markers'), + }, + }, + ], + [ + { + name: 'marker_lines', + config: { + type: 'TextControl', + label: t('Marker lines'), + default: '', + description: t('List of values to mark with lines'), + }, + }, + { + name: 'marker_line_labels', + config: { + type: 'TextControl', + label: t('Marker line labels'), + default: '', + description: t('Labels for the marker lines'), + }, + }, + ], + ], + }, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bullet/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bullet/images/thumbnail.png new file mode 100644 index 000000000000..38e9a733cf3a Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bullet/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bullet/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bullet/images/thumbnailLarge.png new file mode 100644 index 000000000000..5829117182aa Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bullet/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js new file mode 100644 index 000000000000..2626c42d2cdb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js @@ -0,0 +1,45 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from '../transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('KPI'), + credits: ['http://nvd3.org'], + description: t( + 'Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.', + ), + name: t('Bullet Chart'), + tags: [t('Business'), t('Legacy'), t('Report'), t('nvd3')], + thumbnail, + useLegacyApi: true, +}); + +export default class BulletChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../ReactNVD3'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts new file mode 100644 index 000000000000..db4a84fd476e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts @@ -0,0 +1,67 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { ControlPanelConfig, sections } from '@superset-ui/chart-controls'; +import { + xAxisLabel, + yAxisLabel, + bottomMargin, + xTicksLayout, + xAxisFormat, + yLogScale, + yAxisBounds, + xAxisShowMinmax, + yAxisShowMinmax, + leftMargin, + timeSeriesSection, +} from '../NVD3Controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + timeSeriesSection[0], + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [['color_scheme']], + }, + { + label: t('X Axis'), + expanded: true, + controlSetRows: [ + [xAxisLabel, bottomMargin], + [xTicksLayout, xAxisFormat], + [xAxisShowMinmax, null], + ], + }, + { + label: t('Y Axis'), + expanded: true, + controlSetRows: [ + [yAxisLabel, leftMargin], + [yAxisShowMinmax, yLogScale], + ['y_axis_format', yAxisBounds], + ], + }, + timeSeriesSection[1], + sections.annotations, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Compare/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Compare/images/thumbnail.png new file mode 100644 index 000000000000..df29a818d38e Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Compare/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Compare/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Compare/images/thumbnailLarge.png new file mode 100644 index 000000000000..86b38069a9b5 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Compare/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Compare/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Compare/index.js new file mode 100644 index 000000000000..e417e45e440b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Compare/index.js @@ -0,0 +1,55 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from '../transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Evolution'), + credits: ['http://nvd3.org'], + description: t( + 'Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.', + ), + name: t('Time-series Percent Change'), + tags: [ + t('Legacy'), + t('Time'), + t('nvd3'), + t('Advanced-Analytics'), + t('Comparison'), + t('Line'), + t('Percentages'), + t('Predictive'), + t('Trend'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class CompareChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../ReactNVD3'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts new file mode 100644 index 000000000000..d0f83ddd9162 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts @@ -0,0 +1,147 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ensureIsArray, t, validateNonEmpty } from '@superset-ui/core'; +import { + ColumnMeta, + ControlPanelConfig, + sections, + sharedControls, +} from '@superset-ui/chart-controls'; +import { + showLegend, + showControls, + xAxisLabel, + bottomMargin, + xTicksLayout, + showBarValue, + barStacked, + reduceXTicks, + yAxisLabel, + yAxisShowMinmax, + yAxisBounds, +} from '../NVD3Controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['adhoc_filters'], + ['groupby'], + ['columns'], + ['row_limit'], + ['timeseries_limit_metric'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: true, + description: t('Whether to sort descending or ascending'), + }, + }, + ], + [ + { + name: 'contribution', + config: { + type: 'CheckboxControl', + label: t('Contribution'), + default: false, + description: t('Compute the contribution to the total'), + }, + }, + ], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + [showLegend], + [showBarValue], + [barStacked], + [ + { + name: 'order_bars', + config: { + type: 'CheckboxControl', + label: t('Sort Bars'), + default: false, + renderTrigger: true, + description: t('Sort bars by x labels.'), + }, + }, + ], + ['y_axis_format'], + [yAxisLabel], + [showControls, null], + [yAxisShowMinmax], + [yAxisBounds], + ], + }, + { + label: t('X Axis'), + expanded: true, + controlSetRows: [ + [xAxisLabel], + [bottomMargin], + [xTicksLayout], + [reduceXTicks], + ], + }, + ], + controlOverrides: { + groupby: { + label: t('Series'), + validators: [validateNonEmpty], + mapStateToProps: (state, controlState) => { + const groupbyProps = + sharedControls.groupby.mapStateToProps?.(state, controlState) || {}; + groupbyProps.canDropValue = (column: ColumnMeta) => + !ensureIsArray(state.controls?.columns?.value).includes( + column.column_name, + ); + return groupbyProps; + }, + rerender: ['columns'], + }, + columns: { + label: t('Breakdowns'), + description: t('Defines how each series is broken down'), + mapStateToProps: (state, controlState) => { + const columnsProps = + sharedControls.columns.mapStateToProps?.(state, controlState) || {}; + columnsProps.canDropValue = (column: ColumnMeta) => + !ensureIsArray(state.controls?.groupby?.value).includes( + column.column_name, + ); + return columnsProps; + }, + rerender: ['groupby'], + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/images/BarChart3.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/images/BarChart3.jpg new file mode 100644 index 000000000000..f9d9bae8ae8c Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/images/BarChart3.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/images/Bar_Chart.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/images/Bar_Chart.jpg new file mode 100644 index 000000000000..ada903df02d1 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/images/Bar_Chart.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/images/Bar_Chart_2.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/images/Bar_Chart_2.jpg new file mode 100644 index 000000000000..35eee2cbc791 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/images/Bar_Chart_2.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/images/thumbnail.png new file mode 100644 index 000000000000..8e9e6b600a14 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/images/thumbnailLarge.png new file mode 100644 index 000000000000..bfaeeb2dfbcc Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js new file mode 100644 index 000000000000..5a22eaf68631 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js @@ -0,0 +1,64 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from '../transformProps'; +import thumbnail from './images/thumbnail.png'; +import example1 from './images/Bar_Chart.jpg'; +import example2 from './images/Bar_Chart_2.jpg'; +import example3 from './images/BarChart3.jpg'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Ranking'), + credits: ['http://nvd3.org'], + description: t( + 'Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.', + ), + exampleGallery: [ + { url: example1, caption: 'Stacked style' }, + { url: example2, caption: 'Grouped style' }, + { url: example3 }, + ], + name: t('Bar Chart'), + tags: [ + t('Additive'), + t('Categorical'), + t('Comparison'), + t('Discrete'), + t('Legacy'), + t('Percentages'), + t('Popular'), + t('Stacked'), + t('Vertical'), + t('nvd3'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class DistBarChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../ReactNVD3'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts new file mode 100644 index 000000000000..94137d1aef06 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts @@ -0,0 +1,77 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { ControlPanelConfig, sections } from '@superset-ui/chart-controls'; +import { + xAxisFormat, + yAxis2Format, + showLegend, + yAxisBounds, + yAxisShowMinmax, + yAxis2Bounds, + yAxis2ShowMinmax, +} from '../NVD3Controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [['color_scheme'], [showLegend], [xAxisFormat]], + }, + { + label: t('Y Axis 1'), + expanded: true, + controlSetRows: [ + ['metric'], + ['y_axis_format'], + [yAxisShowMinmax], + [yAxisBounds], + ], + }, + { + label: t('Y Axis 2'), + expanded: true, + controlSetRows: [ + ['metric_2'], + [yAxis2Format], + [yAxis2ShowMinmax], + [yAxis2Bounds], + ], + }, + { + label: t('Query'), + expanded: true, + controlSetRows: [['adhoc_filters']], + }, + sections.annotations, + ], + controlOverrides: { + metric: { + label: t('Left Axis Metric'), + description: t('Choose a metric for left axis'), + }, + y_axis_format: { + label: t('Left Axis Format'), + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DualLine/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DualLine/images/thumbnail.png new file mode 100644 index 000000000000..a62ecfbac4d3 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DualLine/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DualLine/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DualLine/images/thumbnailLarge.png new file mode 100644 index 000000000000..3c11fe43a93d Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DualLine/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js new file mode 100644 index 000000000000..3b37872bf431 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js @@ -0,0 +1,45 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from '../transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Evolution'), + credits: ['http://nvd3.org'], + description: t( + 'Visualizes 2 metrics as line plots using the same x-axis. This chart is useful for comparing metrics across the same time range.', + ), + name: t('Dual Line Chart'), + tags: [t('Legacy')], + thumbnail, + useLegacyApi: true, +}); + +export default class DualLineChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../ReactNVD3'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts new file mode 100644 index 000000000000..5b277cf6718c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts @@ -0,0 +1,101 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { ControlPanelConfig, sections } from '@superset-ui/chart-controls'; +import { + lineInterpolation, + showBrush, + showLegend, + xAxisLabel, + bottomMargin, + xTicksLayout, + xAxisFormat, + yLogScale, + yAxisBounds, + yAxisLabel, + xAxisShowMinmax, + yAxisShowMinmax, + richTooltip, + leftMargin, + showMarkers, + timeSeriesSection, +} from '../NVD3Controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + timeSeriesSection[0], + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + [showBrush], + [ + { + name: 'send_time_range', + config: { + type: 'CheckboxControl', + label: t('Propagate'), + renderTrigger: true, + default: false, + description: t('Send range filter events to other charts'), + }, + }, + ], + [showLegend], + [richTooltip], + [showMarkers], + [lineInterpolation], + ], + }, + { + label: t('X Axis'), + expanded: true, + controlSetRows: [ + [xAxisLabel], + [bottomMargin], + [xTicksLayout], + [xAxisFormat], + [xAxisShowMinmax, null], + ], + }, + { + label: t('Y Axis'), + expanded: true, + controlSetRows: [ + [yAxisLabel], + [leftMargin], + [yAxisShowMinmax], + [yLogScale], + ['y_axis_format'], + [yAxisBounds], + ], + }, + timeSeriesSection[1], + sections.annotations, + ], + controlOverrides: { + row_limit: { + default: 50000, + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/images/LineChart.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/images/LineChart.jpg new file mode 100644 index 000000000000..f141007b4d8d Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/images/LineChart.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/images/LineChart2.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/images/LineChart2.jpg new file mode 100644 index 000000000000..994b632be0b7 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/images/LineChart2.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/images/battery.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/images/battery.jpg new file mode 100644 index 000000000000..d6fb43219d82 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/images/battery.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/images/thumbnail.png new file mode 100644 index 000000000000..61a0d866aa5c Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/images/thumbnailLarge.png new file mode 100644 index 000000000000..8cae308c3e4e Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/index.js new file mode 100644 index 000000000000..3ec8f2c7fd06 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Line/index.js @@ -0,0 +1,59 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from '../transformProps'; +import example1 from './images/LineChart.jpg'; +import example2 from './images/LineChart2.jpg'; +import battery from './images/battery.jpg'; +import thumbnail from './images/thumbnail.png'; +import { ANNOTATION_TYPES } from '../vendor/superset/AnnotationTypes'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + canBeAnnotationTypes: [ANNOTATION_TYPES.TIME_SERIES], + category: t('Evolution'), + credits: ['http://nvd3.org'], + description: t('Classic chart that visualizes how metrics change over time.'), + exampleGallery: [ + { url: example1 }, + { url: example2 }, + { url: battery, caption: t('Battery level over time') }, + ], + name: t('Line Chart'), + supportedAnnotationTypes: [ + ANNOTATION_TYPES.TIME_SERIES, + ANNOTATION_TYPES.INTERVAL, + ANNOTATION_TYPES.EVENT, + ANNOTATION_TYPES.FORMULA, + ], + tags: [t('Aesthetic'), t('Legacy'), t('nvd3'), t('Deprecated')], + thumbnail, + useLegacyApi: true, +}); + +export default class LineChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../ReactNVD3'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts new file mode 100644 index 000000000000..b3a88c08cb3b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts @@ -0,0 +1,171 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, validateNonEmpty } from '@superset-ui/core'; +import { ControlPanelConfig, sections } from '@superset-ui/chart-controls'; +import { + lineInterpolation, + showLegend, + xAxisLabel, + bottomMargin, + xTicksLayout, + xAxisFormat, + xAxisShowMinmax, + showMarkers, + yAxis2Format, + yAxisShowMinmax, + yAxisBounds, + yAxis2ShowMinmax, + yAxis2Bounds, +} from '../NVD3Controls'; + +export type Result = { + id: unknown; + slice_name: string; +}; + +export type Data = { + result?: Result[]; +}; + +const config: ControlPanelConfig = { + controlPanelSections: [ + { + ...sections.legacyRegularTime, + controlSetRows: [['time_range']], + }, + { + label: t('Chart Options'), + tabOverride: 'customize', + expanded: true, + controlSetRows: [ + ['color_scheme'], + [ + { + name: 'prefix_metric_with_slice_name', + config: { + type: 'CheckboxControl', + label: t('Prefix metric name with slice name'), + default: false, + renderTrigger: true, + }, + }, + null, + ], + [showLegend], + [showMarkers], + [lineInterpolation, null], + ], + }, + { + label: t('X Axis'), + expanded: true, + controlSetRows: [ + [xAxisLabel], + [bottomMargin], + [xTicksLayout], + [xAxisFormat], + [xAxisShowMinmax, null], + ], + }, + { + label: t('Y Axis Left'), + expanded: true, + controlSetRows: [ + [ + { + name: 'line_charts', + config: { + type: 'SelectAsyncControl', + multi: true, + label: t('Left Axis chart(s)'), + validators: [validateNonEmpty], + default: [], + description: t('Choose one or more charts for left axis'), + dataEndpoint: + '/sliceasync/api/read?_flt_0_viz_type=line&_flt_7_viz_type=line_multi', + placeholder: t('Select charts'), + onAsyncErrorMessage: t('Error while fetching charts'), + mutator: (data?: Data) => { + if (!data || !data.result) { + return []; + } + return data.result.map(o => ({ + value: o.id, + label: o.slice_name, + })); + }, + }, + }, + ], + ['y_axis_format'], + [yAxisShowMinmax], + [yAxisBounds], + ], + }, + { + label: t('Y Axis Right'), + expanded: false, + controlSetRows: [ + [ + { + name: 'line_charts_2', + config: { + type: 'SelectAsyncControl', + multi: true, + label: t('Right Axis chart(s)'), + validators: [], + default: [], + description: t('Choose one or more charts for right axis'), + dataEndpoint: + '/sliceasync/api/read?_flt_0_viz_type=line&_flt_7_viz_type=line_multi', + placeholder: t('Select charts'), + onAsyncErrorMessage: t('Error while fetching charts'), + mutator: (data: Data) => { + if (!data || !data.result) { + return []; + } + return data.result.map(o => ({ + value: o.id, + label: o.slice_name, + })); + }, + }, + }, + ], + [yAxis2Format], + [yAxis2ShowMinmax], + [yAxis2Bounds], + ], + }, + { + label: t('Query'), + expanded: true, + controlSetRows: [['adhoc_filters']], + }, + sections.annotations, + ], + controlOverrides: { + y_axis_format: { + label: t('Left Axis Format'), + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/images/thumbnail.png new file mode 100644 index 000000000000..dd5b396529b2 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/images/thumbnailLarge.png new file mode 100644 index 000000000000..2f1bc855e337 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js new file mode 100644 index 000000000000..3adcd73a289b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js @@ -0,0 +1,53 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from '../transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Evolution'), + credits: ['http://nvd3.org'], + description: t( + 'Visualize two different time series using the same x-axis time range. This chart is being deprecated and we recommend using the Mixed Timeseries Chart instead!', + ), + name: t('Multiple Line Charts'), + tags: [ + t('Multi-Variables'), + t('Legacy'), + t('nvd3'), + t('Comparison'), + t('Time'), + t('Multi-Layers'), + t('Deprecated'), + ], + thumbnail, + useLegacyApi: true, +}); + +export default class LineChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../ReactNVD3'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx new file mode 100644 index 000000000000..8a84263ba8aa --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx @@ -0,0 +1,522 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/jsx-key */ + +import React from 'react'; +import { t } from '@superset-ui/core'; +import { + ControlPanelSectionConfig, + CustomControlItem, + formatSelectOptions, + D3_TIME_FORMAT_OPTIONS, + D3_FORMAT_DOCS, + D3_FORMAT_OPTIONS, +} from '@superset-ui/chart-controls'; + +/* + Plugins in question: + + AreaChartPlugin, + BarChartPlugin, + BubbleChartPlugin, + BulletChartPlugin, + CompareChartPlugin, + DistBarChartPlugin, + DualLineChartPlugin, + LineChartPlugin, + LineMultiChartPlugin, + PieChartPlugin, + TimePivotChartPlugin, +*/ + +export const yAxis2Format: CustomControlItem = { + name: 'y_axis_2_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Right Axis Format'), + default: 'SMART_NUMBER', + choices: D3_FORMAT_OPTIONS, + description: D3_FORMAT_DOCS, + }, +}; + +export const showMarkers: CustomControlItem = { + name: 'show_markers', + config: { + type: 'CheckboxControl', + label: t('Show Markers'), + renderTrigger: true, + default: false, + description: t('Show data points as circle markers on the lines'), + }, +}; + +export const leftMargin: CustomControlItem = { + name: 'left_margin', + config: { + type: 'SelectControl', + freeForm: true, + clearable: false, + label: t('Left Margin'), + choices: formatSelectOptions(['auto', 50, 75, 100, 125, 150, 200]), + default: 'auto', + renderTrigger: true, + description: t( + 'Left margin, in pixels, allowing for more room for axis labels', + ), + }, +}; + +export const yAxisShowMinmax: CustomControlItem = { + name: 'y_axis_showminmax', + config: { + type: 'CheckboxControl', + label: t('Y bounds'), + renderTrigger: true, + default: false, + description: t('Whether to display the min and max values of the Y-axis'), + }, +}; + +export const yAxis2ShowMinmax: CustomControlItem = { + name: 'y_axis_2_showminmax', + config: { + type: 'CheckboxControl', + label: t('Y 2 bounds'), + renderTrigger: true, + default: false, + description: t('Whether to display the min and max values of the Y-axis'), + }, +}; + +export const lineInterpolation: CustomControlItem = { + name: 'line_interpolation', + config: { + type: 'SelectControl', + label: t('Line Style'), + renderTrigger: true, + choices: formatSelectOptions([ + 'linear', + 'basis', + 'cardinal', + 'monotone', + 'step-before', + 'step-after', + ]), + default: 'linear', + description: t('Line interpolation as defined by d3.js'), + }, +}; + +export const showBrush: CustomControlItem = { + name: 'show_brush', + config: { + type: 'SelectControl', + label: t('Show Range Filter'), + renderTrigger: true, + clearable: false, + default: 'auto', + choices: [ + ['yes', 'Yes'], + ['no', 'No'], + ['auto', 'Auto'], + ], + description: t('Whether to display the time range interactive selector'), + }, +}; + +export const showLegend: CustomControlItem = { + name: 'show_legend', + config: { + type: 'CheckboxControl', + label: t('Legend'), + renderTrigger: true, + default: false, + description: t('Whether to display the legend (toggles)'), + }, +}; + +export const showControls: CustomControlItem = { + name: 'show_controls', + config: { + type: 'CheckboxControl', + label: t('Extra Controls'), + renderTrigger: true, + default: false, + description: t( + 'Whether to show extra controls or not. Extra controls ' + + 'include things like making mulitBar charts stacked ' + + 'or side by side.', + ), + }, +}; + +export const xAxisLabel: CustomControlItem = { + name: 'x_axis_label', + config: { + type: 'TextControl', + label: t('X Axis Label'), + renderTrigger: true, + default: '', + }, +}; + +export const bottomMargin: CustomControlItem = { + name: 'bottom_margin', + config: { + type: 'SelectControl', + clearable: false, + freeForm: true, + label: t('Bottom Margin'), + choices: formatSelectOptions(['auto', 50, 75, 100, 125, 150, 200]), + default: 'auto', + renderTrigger: true, + description: t( + 'Bottom margin, in pixels, allowing for more room for axis labels', + ), + }, +}; + +export const xTicksLayout: CustomControlItem = { + name: 'x_ticks_layout', + config: { + type: 'SelectControl', + label: t('X Tick Layout'), + choices: formatSelectOptions(['auto', 'flat', '45°', 'staggered']), + default: 'auto', + clearable: false, + renderTrigger: true, + description: t('The way the ticks are laid out on the X-axis'), + }, +}; + +export const xAxisFormat: CustomControlItem = { + name: 'x_axis_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('X Axis Format'), + renderTrigger: true, + choices: D3_TIME_FORMAT_OPTIONS, + default: 'smart_date', + description: D3_FORMAT_DOCS, + }, +}; + +export const yLogScale: CustomControlItem = { + name: 'y_log_scale', + config: { + type: 'CheckboxControl', + label: t('Y Log Scale'), + default: false, + renderTrigger: true, + description: t('Use a log scale for the Y-axis'), + }, +}; + +export const yAxisBounds: CustomControlItem = { + name: 'y_axis_bounds', + config: { + type: 'BoundsControl', + label: t('Y Axis Bounds'), + renderTrigger: true, + default: [null, null], + description: t( + 'Bounds for the Y-axis. When left empty, the bounds are ' + + 'dynamically defined based on the min/max of the data. Note that ' + + "this feature will only expand the axis range. It won't " + + "narrow the data's extent.", + ), + }, +}; + +export const yAxis2Bounds: CustomControlItem = { + name: 'y_axis_2_bounds', + config: { + type: 'BoundsControl', + label: t('Y Axis 2 Bounds'), + renderTrigger: true, + default: [null, null], + description: t( + 'Bounds for the Y-axis. When left empty, the bounds are ' + + 'dynamically defined based on the min/max of the data. Note that ' + + "this feature will only expand the axis range. It won't " + + "narrow the data's extent.", + ), + }, +}; + +export const xAxisShowMinmax: CustomControlItem = { + name: 'x_axis_showminmax', + config: { + type: 'CheckboxControl', + label: t('X bounds'), + renderTrigger: true, + default: false, + description: t('Whether to display the min and max values of the X-axis'), + }, +}; + +export const richTooltip: CustomControlItem = { + name: 'rich_tooltip', + config: { + type: 'CheckboxControl', + label: t('Rich Tooltip'), + renderTrigger: true, + default: true, + description: t( + 'The rich tooltip shows a list of all series for that point in time', + ), + }, +}; + +export const showBarValue: CustomControlItem = { + name: 'show_bar_value', + config: { + type: 'CheckboxControl', + label: t('Bar Values'), + default: false, + renderTrigger: true, + description: t('Show the value on top of the bar'), + }, +}; + +export const barStacked: CustomControlItem = { + name: 'bar_stacked', + config: { + type: 'CheckboxControl', + label: t('Stacked Bars'), + renderTrigger: true, + default: false, + description: null, + }, +}; + +export const reduceXTicks: CustomControlItem = { + name: 'reduce_x_ticks', + config: { + type: 'CheckboxControl', + label: t('Reduce X ticks'), + renderTrigger: true, + default: false, + description: t( + 'Reduces the number of X-axis ticks to be rendered. ' + + 'If true, the x-axis will not overflow and labels may be ' + + 'missing. If false, a minimum width will be applied ' + + 'to columns and the width may overflow into an ' + + 'horizontal scroll.', + ), + }, +}; + +export const yAxisLabel: CustomControlItem = { + name: 'y_axis_label', + config: { + type: 'TextControl', + label: t('Y Axis Label'), + renderTrigger: true, + default: '', + }, +}; + +export const timeSeriesSection: ControlPanelSectionConfig[] = [ + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['adhoc_filters'], + ['groupby'], + ['limit'], + ['timeseries_limit_metric'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: true, + description: t('Whether to sort descending or ascending'), + }, + }, + ], + [ + { + name: 'contribution', + config: { + type: 'CheckboxControl', + label: t('Contribution'), + default: false, + description: t('Compute the contribution to the total'), + }, + }, + ], + ['row_limit', null], + ], + }, + { + label: t('Advanced Analytics'), + tabOverride: 'data', + description: t( + 'This section contains options ' + + 'that allow for advanced analytical post processing ' + + 'of query results', + ), + controlSetRows: [ + [

{t('Rolling Window')}

], + [ + { + name: 'rolling_type', + config: { + type: 'SelectControl', + label: t('Rolling Function'), + default: 'None', + choices: formatSelectOptions([ + 'None', + 'mean', + 'sum', + 'std', + 'cumsum', + ]), + description: t( + 'Defines a rolling window function to apply, works along ' + + 'with the [Periods] text box', + ), + }, + }, + ], + [ + { + name: 'rolling_periods', + config: { + type: 'TextControl', + label: t('Periods'), + isInt: true, + description: t( + 'Defines the size of the rolling window function, ' + + 'relative to the time granularity selected', + ), + }, + }, + ], + [ + { + name: 'min_periods', + config: { + type: 'TextControl', + label: t('Min Periods'), + isInt: true, + description: t( + 'The minimum number of rolling periods required to show ' + + 'a value. For instance if you do a cumulative sum on 7 days ' + + 'you may want your "Min Period" to be 7, so that all data points ' + + 'shown are the total of 7 periods. This will hide the "ramp up" ' + + 'taking place over the first 7 periods', + ), + }, + }, + ], + [

{t('Time Comparison')}

], + [ + { + name: 'time_compare', + config: { + type: 'SelectControl', + multi: true, + freeForm: true, + label: t('Time Shift'), + choices: formatSelectOptions([ + '1 day', + '1 week', + '28 days', + '30 days', + '52 weeks', + '1 year', + '104 weeks', + '2 years', + ]), + description: t( + 'Overlay one or more timeseries from a ' + + 'relative time period. Expects relative time deltas ' + + 'in natural language (example: 24 hours, 7 days, ' + + '52 weeks, 365 days). Free text is supported.', + ), + }, + }, + ], + [ + { + name: 'comparison_type', + config: { + type: 'SelectControl', + label: t('Calculation type'), + default: 'values', + choices: [ + ['values', 'Actual Values'], + ['absolute', 'Difference'], + ['percentage', 'Percentage change'], + ['ratio', 'Ratio'], + ], + description: t( + 'How to display time shifts: as individual lines; as the ' + + 'difference between the main time series and each time shift; ' + + 'as the percentage change; or as the ratio between series and time shifts.', + ), + }, + }, + ], + [

{t('Python Functions')}

], + [

pandas.resample

], + [ + { + name: 'resample_rule', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Rule'), + default: null, + choices: formatSelectOptions(['1T', '1H', '1D', '7D', '1M', '1AS']), + description: t('Pandas resample rule'), + }, + }, + ], + [ + { + name: 'resample_method', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Method'), + default: null, + choices: formatSelectOptions([ + 'asfreq', + 'bfill', + 'ffill', + 'median', + 'mean', + 'sum', + ]), + description: t('Pandas resample method'), + }, + }, + ], + ], + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js new file mode 100644 index 000000000000..66bf9328ae00 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js @@ -0,0 +1,1292 @@ +/* eslint-disable react/sort-prop-types */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { kebabCase, throttle } from 'lodash'; +import d3 from 'd3'; +import moment from 'moment'; +import nv from 'nvd3-fork'; +import PropTypes from 'prop-types'; +import { + CategoricalColorNamespace, + evalExpression, + getNumberFormatter, + getTimeFormatter, + isDefined, + NumberFormats, + smartDateVerboseFormatter, + t, +} from '@superset-ui/core'; + +import 'nvd3-fork/build/nv.d3.css'; + +/* eslint-disable-next-line */ +import ANNOTATION_TYPES, { + applyNativeColumns, +} from './vendor/superset/AnnotationTypes'; +import isTruthy from './utils/isTruthy'; +import { + cleanColorInput, + computeBarChartWidth, + computeYDomain, + computeStackedYDomain, + drawBarValues, + generateBubbleTooltipContent, + generateCompareTooltipContent, + generateMultiLineTooltipContent, + generateRichLineTooltipContent, + generateTimePivotTooltip, + generateTooltipClassName, + generateAreaChartTooltipContent, + getMaxLabelSize, + getTimeOrNumberFormatter, + hideTooltips, + tipFactory, + tryNumify, + removeTooltip, + setAxisShowMaxMin, + stringifyTimeRange, + wrapTooltip, +} from './utils'; +import { + annotationLayerType, + boxPlotValueType, + bulletDataType, + categoryAndValueXYType, + rgbObjectType, + numericXYType, + numberOrAutoType, + stringOrObjectWithLabelType, +} from './PropTypes'; + +const NO_DATA_RENDER_DATA = [ + { text: 'No data', dy: '-.75em', class: 'header' }, + { + text: 'Adjust filters or check the Datasource.', + dy: '.75em', + class: 'body', + }, +]; + +// Override the noData render function to make a prettier UX +// Code adapted from https://github.com/novus/nvd3/blob/master/src/utils.js#L653 +nv.utils.noData = function noData(chart, container) { + const opt = chart.options(); + const margin = opt.margin(); + const height = nv.utils.availableHeight(null, container, margin); + const width = nv.utils.availableWidth(null, container, margin); + const x = margin.left + width / 2; + const y = margin.top + height / 2; + + // Remove any previously created chart components + container.selectAll('g').remove(); + + const noDataText = container + .selectAll('.nv-noData') + .data(NO_DATA_RENDER_DATA); + + noDataText + .enter() + .append('text') + .attr('class', d => `nvd3 nv-noData ${d.class}`) + .attr('dy', d => d.dy) + .style('text-anchor', 'middle'); + + noDataText + .attr('x', x) + .attr('y', y) + .text(d => d.text); +}; + +const { getColor, getScale } = CategoricalColorNamespace; + +// Limit on how large axes margins can grow as the chart window is resized +const MAX_MARGIN_PAD = 30; +const MIN_HEIGHT_FOR_BRUSH = 480; +const MAX_NO_CHARACTERS_IN_LABEL = 40; + +const BREAKPOINTS = { + small: 340, +}; + +const TIMESERIES_VIZ_TYPES = [ + 'line', + 'dual_line', + 'line_multi', + 'area', + 'compare', + 'bar', + 'time_pivot', +]; + +const CHART_ID_PREFIX = 'chart-id-'; + +const propTypes = { + data: PropTypes.oneOfType([ + PropTypes.arrayOf( + PropTypes.oneOfType([ + // pie + categoryAndValueXYType, + // dist-bar + PropTypes.shape({ + key: PropTypes.string, + values: PropTypes.arrayOf(categoryAndValueXYType), + }), + // area, line, compare, bar + PropTypes.shape({ + key: PropTypes.arrayOf(PropTypes.string), + values: PropTypes.arrayOf(numericXYType), + }), + // dual-line + PropTypes.shape({ + classed: PropTypes.string, + key: PropTypes.string, + type: PropTypes.string, + values: PropTypes.arrayOf(numericXYType), + yAxis: PropTypes.number, + }), + // box-plot + PropTypes.shape({ + label: PropTypes.string, + values: PropTypes.arrayOf(boxPlotValueType), + }), + // bubble + PropTypes.shape({ + key: PropTypes.string, + values: PropTypes.arrayOf(PropTypes.object), + }), + ]), + ), + // bullet + bulletDataType, + ]), + width: PropTypes.number, + height: PropTypes.number, + annotationData: PropTypes.object, + annotationLayers: PropTypes.arrayOf(annotationLayerType), + bottomMargin: numberOrAutoType, + colorScheme: PropTypes.string, + comparisonType: PropTypes.string, + contribution: PropTypes.bool, + leftMargin: numberOrAutoType, + onError: PropTypes.func, + showLegend: PropTypes.bool, + showMarkers: PropTypes.bool, + useRichTooltip: PropTypes.bool, + vizType: PropTypes.oneOf([ + 'area', + 'bar', + 'box_plot', + 'bubble', + 'bullet', + 'compare', + 'column', + 'dist_bar', + 'line', + 'line_multi', + 'time_pivot', + 'pie', + 'dual_line', + ]), + xAxisFormat: PropTypes.string, + numberFormat: PropTypes.string, + xAxisLabel: PropTypes.string, + xAxisShowMinMax: PropTypes.bool, + xIsLogScale: PropTypes.bool, + xTicksLayout: PropTypes.oneOf(['auto', 'staggered', '45°']), + yAxisFormat: PropTypes.string, + yAxisBounds: PropTypes.arrayOf(PropTypes.number), + yAxisLabel: PropTypes.string, + yAxisShowMinMax: PropTypes.bool, + yIsLogScale: PropTypes.bool, + // 'dist-bar' only + orderBars: PropTypes.bool, + // 'bar' or 'dist-bar' + isBarStacked: PropTypes.bool, + showBarValue: PropTypes.bool, + // 'bar', 'dist-bar' or 'column' + reduceXTicks: PropTypes.bool, + // 'bar', 'dist-bar' or 'area' + showControls: PropTypes.bool, + // 'line' only + showBrush: PropTypes.oneOf([true, 'yes', false, 'no', 'auto']), + onBrushEnd: PropTypes.func, + // 'line-multi' or 'dual-line' + yAxis2Format: PropTypes.string, + // 'line', 'time-pivot', 'dual-line' or 'line-multi' + lineInterpolation: PropTypes.string, + // 'pie' only + isDonut: PropTypes.bool, + isPieLabelOutside: PropTypes.bool, + pieLabelType: PropTypes.oneOf([ + 'key', + 'value', + 'percent', + 'key_value', + 'key_percent', + 'key_value_percent', + ]), + showLabels: PropTypes.bool, + // 'area' only + areaStackedStyle: PropTypes.string, + // 'bubble' only + entity: PropTypes.string, + maxBubbleSize: PropTypes.number, + xField: stringOrObjectWithLabelType, + yField: stringOrObjectWithLabelType, + sizeField: stringOrObjectWithLabelType, + // time-pivot only + baseColor: rgbObjectType, +}; + +const NOOP = () => {}; +const formatter = getNumberFormatter(); + +function nvd3Vis(element, props) { + const { + data, + width: maxWidth, + height: maxHeight, + annotationData, + annotationLayers = [], + areaStackedStyle, + baseColor, + bottomMargin, + colorScheme, + comparisonType, + contribution, + entity, + isBarStacked, + isDonut, + isPieLabelOutside, + leftMargin, + lineInterpolation = 'linear', + markerLabels, + markerLines, + markerLineLabels, + markers, + maxBubbleSize, + onBrushEnd = NOOP, + onError = NOOP, + orderBars, + pieLabelType, + rangeLabels, + ranges, + reduceXTicks = false, + showBarValue, + showBrush, + showControls, + showLabels, + showLegend, + showMarkers, + sizeField, + useRichTooltip, + vizType, + xAxisFormat, + numberFormat, + xAxisLabel, + xAxisShowMinMax = false, + xField, + xIsLogScale, + xTicksLayout, + yAxisFormat, + yAxis2Format, + yAxisBounds, + yAxis2Bounds, + yAxisLabel, + yAxisShowMinMax = false, + yAxis2ShowMinMax = false, + yField, + yIsLogScale, + } = props; + + const isExplore = document.querySelector('#explorer-container') !== null; + const container = element; + container.innerHTML = ''; + const activeAnnotationLayers = annotationLayers.filter(layer => layer.show); + + // Search for the chart id in a parent div from the nvd3 chart + let chartContainer = container; + let chartId = null; + while (chartContainer.parentElement) { + if (chartContainer.parentElement.id.startsWith(CHART_ID_PREFIX)) { + chartId = chartContainer.parentElement.id; + break; + } + + chartContainer = chartContainer.parentElement; + } + + let chart; + let width = maxWidth; + let colorKey = 'key'; + + container.style.width = `${maxWidth}px`; + container.style.height = `${maxHeight}px`; + + function isVizTypes(types) { + return types.includes(vizType); + } + + const drawGraph = function drawGraph() { + const d3Element = d3.select(element); + d3Element.classed('superset-legacy-chart-nvd3', true); + d3Element.classed(`superset-legacy-chart-nvd3-${kebabCase(vizType)}`, true); + let svg = d3Element.select('svg'); + if (svg.empty()) { + svg = d3Element.append('svg'); + } + const height = vizType === 'bullet' ? Math.min(maxHeight, 50) : maxHeight; + const isTimeSeries = isVizTypes(TIMESERIES_VIZ_TYPES); + + // Handling xAxis ticks settings + const staggerLabels = xTicksLayout === 'staggered'; + const xLabelRotation = + (xTicksLayout === 'auto' && isVizTypes(['column', 'dist_bar'])) || + xTicksLayout === '45°' + ? 45 + : 0; + if (xLabelRotation === 45 && isTruthy(showBrush)) { + onError( + t('You cannot use 45° tick layout along with the time range filter'), + ); + + return null; + } + + const canShowBrush = + isTruthy(showBrush) || + (showBrush === 'auto' && + maxHeight >= MIN_HEIGHT_FOR_BRUSH && + xTicksLayout !== '45°'); + const numberFormatter = getNumberFormatter(numberFormat); + + switch (vizType) { + case 'line': + if (canShowBrush) { + chart = nv.models.lineWithFocusChart(); + if (staggerLabels) { + // Give a bit more room to focus area if X axis ticks are staggered + chart.focus.margin({ bottom: 40 }); + chart.focusHeight(80); + } + chart.focus.xScale(d3.time.scale.utc()); + } else { + chart = nv.models.lineChart(); + } + chart.xScale(d3.time.scale.utc()); + chart.interpolate(lineInterpolation); + chart.clipEdge(false); + break; + + case 'time_pivot': + chart = nv.models.lineChart(); + chart.xScale(d3.time.scale.utc()); + chart.interpolate(lineInterpolation); + break; + + case 'dual_line': + case 'line_multi': + chart = nv.models.multiChart(); + chart.interpolate(lineInterpolation); + chart.xScale(d3.time.scale.utc()); + break; + + case 'bar': + chart = nv.models + .multiBarChart() + .showControls(showControls) + .groupSpacing(0.1); + + if (!reduceXTicks) { + width = computeBarChartWidth(data, isBarStacked, maxWidth); + } + chart.width(width); + chart.xAxis.showMaxMin(false); + chart.stacked(isBarStacked); + break; + + case 'dist_bar': + chart = nv.models + .multiBarChart() + .showControls(showControls) + .reduceXTicks(reduceXTicks) + .groupSpacing(0.1); // Distance between each group of bars. + + chart.xAxis.showMaxMin(false); + + chart.stacked(isBarStacked); + if (orderBars) { + data.forEach(d => { + d.values.sort((a, b) => (tryNumify(a.x) < tryNumify(b.x) ? -1 : 1)); + }); + } + if (!reduceXTicks) { + width = computeBarChartWidth(data, isBarStacked, maxWidth); + } + chart.width(width); + break; + + case 'pie': + chart = nv.models.pieChart(); + colorKey = 'x'; + chart.valueFormat(numberFormatter); + if (isDonut) { + chart.donut(true); + } + chart.showLabels(showLabels); + chart.labelsOutside(isPieLabelOutside); + // Configure the minimum slice size for labels to show up + chart.labelThreshold(0.05); + chart.cornerRadius(true); + + if (['key', 'value', 'percent'].includes(pieLabelType)) { + chart.labelType(pieLabelType); + } else if (pieLabelType === 'key_value') { + chart.labelType(d => `${d.data.x}: ${numberFormatter(d.data.y)}`); + } else { + // pieLabelType in ['key_percent', 'key_value_percent'] + const total = d3.sum(data, d => d.y); + const percentFormatter = getNumberFormatter( + NumberFormats.PERCENT_2_POINT, + ); + if (pieLabelType === 'key_percent') { + chart.tooltip.valueFormatter(d => percentFormatter(d)); + chart.labelType( + d => `${d.data.x}: ${percentFormatter(d.data.y / total)}`, + ); + } else { + // pieLabelType === 'key_value_percent' + chart.tooltip.valueFormatter( + d => `${numberFormatter(d)} (${percentFormatter(d / total)})`, + ); + chart.labelType( + d => + `${d.data.x}: ${numberFormatter(d.data.y)} (${percentFormatter( + d.data.y / total, + )})`, + ); + } + } + // Pie chart does not need top margin + chart.margin({ top: 0 }); + break; + + case 'column': + chart = nv.models.multiBarChart().reduceXTicks(false); + break; + + case 'compare': + chart = nv.models.cumulativeLineChart(); + chart.xScale(d3.time.scale.utc()); + chart.useInteractiveGuideline(true); + chart.xAxis.showMaxMin(false); + break; + + case 'bubble': + chart = nv.models.scatterChart(); + chart.showDistX(false); + chart.showDistY(false); + chart.tooltip.contentGenerator(d => + generateBubbleTooltipContent({ + point: d.point, + entity, + xField, + yField, + sizeField, + xFormatter: getTimeOrNumberFormatter(xAxisFormat), + yFormatter: getTimeOrNumberFormatter(yAxisFormat), + sizeFormatter: formatter, + }), + ); + chart.pointRange([5, maxBubbleSize ** 2]); + chart.pointDomain([ + 0, + d3.max(data, d => d3.max(d.values, v => v.size)), + ]); + break; + + case 'area': + chart = nv.models.stackedAreaChart(); + chart.showControls(showControls); + chart.style(areaStackedStyle); + chart.xScale(d3.time.scale.utc()); + break; + + case 'box_plot': + colorKey = 'label'; + chart = nv.models.boxPlotChart(); + chart.x(d => d.label); + chart.maxBoxWidth(75); // prevent boxes from being incredibly wide + break; + + case 'bullet': + chart = nv.models.bulletChart(); + data.rangeLabels = rangeLabels; + data.ranges = ranges; + data.markerLabels = markerLabels; + data.markerLines = markerLines; + data.markerLineLabels = markerLineLabels; + data.markers = markers; + break; + + default: + throw new Error(`Unrecognized visualization for nvd3${vizType}`); + } + // Assuming the container has padding already other than for top margin + chart.margin({ left: 0, bottom: 0 }); + + if (showBarValue) { + drawBarValues(svg, data, isBarStacked, yAxisFormat); + chart.dispatch.on('stateChange.drawBarValues', () => { + drawBarValues(svg, data, isBarStacked, yAxisFormat); + }); + } + + if (canShowBrush && onBrushEnd !== NOOP) { + if (chart.focus) { + chart.focus.dispatch.on('brush', event => { + const timeRange = stringifyTimeRange(event.extent); + if (timeRange) { + event.brush.on('brushend', () => { + onBrushEnd(timeRange); + }); + } + }); + } + } + + if (chart.xAxis && chart.xAxis.staggerLabels) { + chart.xAxis.staggerLabels(staggerLabels); + } + if (chart.xAxis && chart.xAxis.rotateLabels) { + chart.xAxis.rotateLabels(xLabelRotation); + } + if (chart.x2Axis && chart.x2Axis.staggerLabels) { + chart.x2Axis.staggerLabels(staggerLabels); + } + if (chart.x2Axis && chart.x2Axis.rotateLabels) { + chart.x2Axis.rotateLabels(xLabelRotation); + } + + if ('showLegend' in chart && typeof showLegend !== 'undefined') { + if (width < BREAKPOINTS.small && vizType !== 'pie') { + chart.showLegend(false); + } else { + chart.showLegend(showLegend); + } + } + + if (yIsLogScale) { + chart.yScale(d3.scale.log()); + } + if (xIsLogScale) { + chart.xScale(d3.scale.log()); + } + + let xAxisFormatter; + if (isTimeSeries) { + xAxisFormatter = getTimeFormatter(xAxisFormat); + // In tooltips, always use the verbose time format + chart.interactiveLayer.tooltip.headerFormatter(smartDateVerboseFormatter); + } else { + xAxisFormatter = getTimeOrNumberFormatter(xAxisFormat); + } + if (chart.x2Axis && chart.x2Axis.tickFormat) { + chart.x2Axis.tickFormat(xAxisFormatter); + } + if (chart.xAxis && chart.xAxis.tickFormat) { + const isXAxisString = isVizTypes(['dist_bar', 'box_plot']); + if (isXAxisString) { + chart.xAxis.tickFormat(d => + d.length > MAX_NO_CHARACTERS_IN_LABEL + ? `${d.slice(0, Math.max(0, MAX_NO_CHARACTERS_IN_LABEL))}…` + : d, + ); + } else { + chart.xAxis.tickFormat(xAxisFormatter); + } + } + + let yAxisFormatter = getTimeOrNumberFormatter(yAxisFormat); + if (chart.yAxis && chart.yAxis.tickFormat) { + if ( + (contribution || comparisonType === 'percentage') && + (!yAxisFormat || + yAxisFormat === NumberFormats.SMART_NUMBER || + yAxisFormat === NumberFormats.SMART_NUMBER_SIGNED) + ) { + // When computing a "Percentage" or "Contribution" selected, + // force a percentage format if no custom formatting set + yAxisFormatter = getNumberFormatter(NumberFormats.PERCENT_1_POINT); + } + chart.yAxis.tickFormat(yAxisFormatter); + } + if (chart.y2Axis && chart.y2Axis.tickFormat) { + chart.y2Axis.tickFormat(yAxisFormatter); + } + + if (chart.yAxis) { + chart.yAxis.ticks(5); + } + if (chart.y2Axis) { + chart.y2Axis.ticks(5); + } + + // Set showMaxMin for all axis + setAxisShowMaxMin(chart.xAxis, xAxisShowMinMax); + setAxisShowMaxMin(chart.x2Axis, xAxisShowMinMax); + setAxisShowMaxMin(chart.yAxis, yAxisShowMinMax); + setAxisShowMaxMin(chart.y2Axis, yAxis2ShowMinMax || yAxisShowMinMax); + + if (vizType === 'time_pivot') { + if (baseColor) { + const { r, g, b } = baseColor; + chart.color(d => { + const alpha = d.rank > 0 ? d.perc * 0.5 : 1; + + return `rgba(${r}, ${g}, ${b}, ${alpha})`; + }); + } + + chart.useInteractiveGuideline(true); + chart.interactiveLayer.tooltip.contentGenerator(d => + generateTimePivotTooltip(d, xAxisFormatter, yAxisFormatter), + ); + } else if (vizType !== 'bullet') { + const colorFn = getScale(colorScheme); + chart.color(d => d.color || colorFn(cleanColorInput(d[colorKey]))); + } + + if (isVizTypes(['line', 'area']) && useRichTooltip) { + chart.useInteractiveGuideline(true); + if (vizType === 'line') { + chart.interactiveLayer.tooltip.contentGenerator(d => + generateRichLineTooltipContent( + d, + smartDateVerboseFormatter, + yAxisFormatter, + ), + ); + } else { + // area chart + chart.interactiveLayer.tooltip.contentGenerator(d => + generateAreaChartTooltipContent( + d, + smartDateVerboseFormatter, + yAxisFormatter, + chart, + ), + ); + } + } + + if (isVizTypes(['compare'])) { + chart.interactiveLayer.tooltip.contentGenerator(d => + generateCompareTooltipContent(d, yAxisFormatter), + ); + } + + if (isVizTypes(['dual_line', 'line_multi'])) { + const yAxisFormatter1 = getNumberFormatter(yAxisFormat); + const yAxisFormatter2 = getNumberFormatter(yAxis2Format); + chart.yAxis1.tickFormat(yAxisFormatter1); + chart.yAxis2.tickFormat(yAxisFormatter2); + const yAxisFormatters = data.map(datum => + datum.yAxis === 1 ? yAxisFormatter1 : yAxisFormatter2, + ); + chart.useInteractiveGuideline(true); + chart.interactiveLayer.tooltip.contentGenerator(d => + generateMultiLineTooltipContent(d, xAxisFormatter, yAxisFormatters), + ); + } + // This is needed for correct chart dimensions if a chart is rendered in a hidden container + chart.width(width); + chart.height(height); + + svg + .datum(data) + .transition() + .duration(500) + .attr('height', height) + .attr('width', width) + .call(chart); + + // For log scale, only show 1, 10, 100, 1000, ... + if (yIsLogScale) { + chart.yAxis.tickFormat(d => + d !== 0 && Math.log10(d) % 1 === 0 ? yAxisFormatter(d) : '', + ); + } + + if (xLabelRotation > 0) { + // shift labels to the left so they look better + const xTicks = svg.select('.nv-x.nv-axis > g').selectAll('g'); + xTicks.selectAll('text').attr('dx', -6.5); + } + + const applyYAxisBounds = () => { + if ( + chart.yDomain && + Array.isArray(yAxisBounds) && + yAxisBounds.length === 2 + ) { + const [customMin, customMax] = yAxisBounds; + const hasCustomMin = isDefined(customMin) && !Number.isNaN(customMin); + const hasCustomMax = isDefined(customMax) && !Number.isNaN(customMax); + + if ( + (hasCustomMin || hasCustomMax) && + vizType === 'area' && + chart.style() === 'expand' + ) { + // Because there are custom bounds, we need to override them back to 0%-100% since this + // is an expanded area chart + chart.yDomain([0, 1]); + } else if ( + (hasCustomMin || hasCustomMax) && + vizType === 'area' && + chart.style() === 'stream' + ) { + // Because there are custom bounds, we need to override them back to the domain of the + // data since this is a stream area chart + chart.yDomain(computeStackedYDomain(data)); + } else if (hasCustomMin && hasCustomMax) { + // Override the y domain if there's both a custom min and max + chart.yDomain([customMin, customMax]); + chart.clipEdge(true); + } else if (hasCustomMin || hasCustomMax) { + // Only one of the bounds has been set, so we need to manually calculate the other one + let [trueMin, trueMax] = [0, 1]; + + // These viz types can be stacked + // They correspond to the nvd3 stackedAreaChart and multiBarChart + if ( + vizType === 'area' || + (isVizTypes(['bar', 'dist_bar']) && chart.stacked()) + ) { + // This is a stacked area chart or a stacked bar chart + [trueMin, trueMax] = computeStackedYDomain(data); + } else { + [trueMin, trueMax] = computeYDomain(data); + } + + const min = hasCustomMin ? customMin : trueMin; + const max = hasCustomMax ? customMax : trueMax; + chart.yDomain([min, max]); + chart.clipEdge(true); + } + } + }; + applyYAxisBounds(); + + // Also reapply on each state change to account for enabled/disabled series + if (chart.dispatch && chart.dispatch.stateChange) { + chart.dispatch.on('stateChange.applyYAxisBounds', applyYAxisBounds); + } + + // align yAxis1 and yAxis2 ticks + if (isVizTypes(['dual_line', 'line_multi'])) { + const count = chart.yAxis1.ticks(); + const ticks1 = chart.yAxis1 + .scale() + .domain(chart.yAxis1.domain()) + .nice(count) + .ticks(count); + const ticks2 = chart.yAxis2 + .scale() + .domain(chart.yAxis2.domain()) + .nice(count) + .ticks(count); + + // match number of ticks in both axes + const difference = ticks1.length - ticks2.length; + if (ticks1.length > 0 && ticks2.length > 0 && difference !== 0) { + const smallest = difference < 0 ? ticks1 : ticks2; + const delta = smallest[1] - smallest[0]; + for (let i = 0; i < Math.abs(difference); i += 1) { + if (i % 2 === 0) { + smallest.unshift(smallest[0] - delta); + } else { + smallest.push(smallest[smallest.length - 1] + delta); + } + } + chart.yDomain1([ticks1[0], ticks1[ticks1.length - 1]]); + chart.yDomain2([ticks2[0], ticks2[ticks2.length - 1]]); + chart.yAxis1.tickValues(ticks1); + chart.yAxis2.tickValues(ticks2); + } + + chart.yDomain1([ + yAxisBounds[0] || ticks1[0], + yAxisBounds[1] || ticks1[ticks1.length - 1], + ]); + chart.yDomain2([ + yAxis2Bounds[0] || ticks2[0], + yAxis2Bounds[1] || ticks2[ticks2.length - 1], + ]); + } + + if (showMarkers) { + svg + .selectAll('.nv-point') + .style('stroke-opacity', 1) + .style('fill-opacity', 1); + + // redo on legend toggle; nvd3 calls the callback *before* the line is + // drawn, so we need to add a small delay here + chart.dispatch.on('stateChange.showMarkers', () => { + setTimeout(() => { + svg + .selectAll('.nv-point') + .style('stroke-opacity', 1) + .style('fill-opacity', 1); + }, 10); + }); + } + + if (chart.yAxis !== undefined || chart.yAxis2 !== undefined) { + // Hack to adjust y axis left margin to accommodate long numbers + const marginPad = Math.ceil( + Math.min(maxWidth * (isExplore ? 0.01 : 0.03), MAX_MARGIN_PAD), + ); + // Hack to adjust margins to accommodate long axis tick labels. + // - has to be done only after the chart has been rendered once + // - measure the width or height of the labels + // ---- (x axis labels are rotated 45 degrees so we use height), + // - adjust margins based on these measures and render again + const margins = chart.margin(); + if (chart.xAxis) { + margins.bottom = 28; + } + const maxYAxisLabelWidth = getMaxLabelSize( + svg, + chart.yAxis2 ? 'nv-y1' : 'nv-y', + ); + const maxXAxisLabelHeight = getMaxLabelSize(svg, 'nv-x'); + margins.left = maxYAxisLabelWidth + marginPad; + + if (yAxisLabel && yAxisLabel !== '') { + margins.left += 25; + } + if (showBarValue) { + // Add more margin to avoid label colliding with legend. + margins.top += 24; + } + if (xAxisShowMinMax) { + // If x bounds are shown, we need a right margin + margins.right = Math.max(20, maxXAxisLabelHeight / 2) + marginPad; + } + if (xLabelRotation === 45) { + margins.bottom = + maxXAxisLabelHeight * Math.sin((Math.PI * xLabelRotation) / 180) + + marginPad + + 30; + margins.right = + maxXAxisLabelHeight * Math.cos((Math.PI * xLabelRotation) / 180) + + marginPad; + } else if (staggerLabels) { + margins.bottom = 40; + } + + if (isVizTypes(['dual_line', 'line_multi'])) { + const maxYAxis2LabelWidth = getMaxLabelSize(svg, 'nv-y2'); + margins.right = maxYAxis2LabelWidth + marginPad; + } + if (bottomMargin && bottomMargin !== 'auto') { + margins.bottom = parseInt(bottomMargin, 10); + } + if (leftMargin && leftMargin !== 'auto') { + margins.left = leftMargin; + } + + if (xAxisLabel && xAxisLabel !== '' && chart.xAxis) { + margins.bottom += 25; + let distance = 0; + if (margins.bottom && !Number.isNaN(margins.bottom)) { + distance = margins.bottom - 45; + } + // nvd3 bug axisLabelDistance is disregarded on xAxis + // https://github.com/krispo/angular-nvd3/issues/90 + chart.xAxis.axisLabel(xAxisLabel).axisLabelDistance(distance); + } + + if (yAxisLabel && yAxisLabel !== '' && chart.yAxis) { + let distance = 0; + if (margins.left && !Number.isNaN(margins.left)) { + distance = margins.left - 70; + } + chart.yAxis.axisLabel(yAxisLabel).axisLabelDistance(distance); + } + if (isTimeSeries && annotationData && activeAnnotationLayers.length > 0) { + // Time series annotations add additional data + const timeSeriesAnnotations = activeAnnotationLayers + .filter( + layer => layer.annotationType === ANNOTATION_TYPES.TIME_SERIES, + ) + .reduce( + (bushel, a) => + bushel.concat( + (annotationData[a.name] || []).map(series => { + if (!series) { + return {}; + } + const key = Array.isArray(series.key) + ? `${a.name}, ${series.key.join(', ')}` + : `${a.name}, ${series.key}`; + + return { + ...series, + key, + color: a.color, + strokeWidth: a.width, + classed: `${a.opacity} ${a.style} nv-timeseries-annotation-layer showMarkers${a.showMarkers} hideLine${a.hideLine}`, + }; + }), + ), + [], + ); + data.push(...timeSeriesAnnotations); + } + + // Uniquely identify tooltips based on chartId so this chart instance only + // controls its own tooltips + if (chartId) { + if (chart && chart.interactiveLayer && chart.interactiveLayer.tooltip) { + chart.interactiveLayer.tooltip.classes([ + generateTooltipClassName(chartId), + ]); + } + + if (chart && chart.tooltip) { + chart.tooltip.classes([generateTooltipClassName(chartId)]); + } + } + + // render chart + chart.margin(margins); + svg + .datum(data) + .transition() + .duration(500) + .attr('width', width) + .attr('height', height) + .call(chart); + + // On scroll, hide (not remove) tooltips so they can reappear on hover. + // Throttle to only 4x/second. + window.addEventListener( + 'scroll', + throttle(() => hideTooltips(false), 250), + ); + + // The below code should be run AFTER rendering because chart is updated in call() + if (isTimeSeries && activeAnnotationLayers.length > 0) { + // Formula annotations + const formulas = activeAnnotationLayers.filter( + a => a.annotationType === ANNOTATION_TYPES.FORMULA, + ); + + let xMax; + let xMin; + let xScale; + if (vizType === 'bar') { + xMin = d3.min(data[0].values, d => d.x); + xMax = d3.max(data[0].values, d => d.x); + xScale = d3.scale + .quantile() + .domain([xMin, xMax]) + .range(chart.xAxis.range()); + } else { + xMin = chart.xAxis.scale().domain()[0].valueOf(); + xMax = chart.xAxis.scale().domain()[1].valueOf(); + if (chart.xScale) { + xScale = chart.xScale(); + } else if (chart.xAxis.scale) { + xScale = chart.xAxis.scale(); + } else { + xScale = d3.scale.linear(); + } + } + if (xScale && xScale.clamp) { + xScale.clamp(true); + } + + if (formulas.length > 0) { + const xValues = []; + if (vizType === 'bar') { + // For bar-charts we want one data point evaluated for every + // data point that will be displayed. + const distinct = data.reduce((xVals, d) => { + d.values.forEach(x => xVals.add(x.x)); + + return xVals; + }, new Set()); + xValues.push(...distinct.values()); + xValues.sort(); + } else { + // For every other time visualization it should be ok, to have a + // data points in even intervals. + let period = Math.min( + ...data.map(d => + Math.min( + ...d.values.slice(1).map((v, i) => v.x - d.values[i].x), + ), + ), + ); + const dataPoints = (xMax - xMin) / (period || 1); + // make sure that there are enough data points and not too many + period = dataPoints < 100 ? (xMax - xMin) / 100 : period; + period = dataPoints > 500 ? (xMax - xMin) / 500 : period; + xValues.push(xMin); + for (let x = xMin; x < xMax; x += period) { + xValues.push(x); + } + xValues.push(xMax); + } + const formulaData = formulas.map(fo => { + const { value: expression } = fo; + return { + key: fo.name, + values: xValues.map(x => ({ + x, + y: evalExpression(expression, x), + })), + color: fo.color, + strokeWidth: fo.width, + classed: `${fo.opacity} ${fo.style}`, + }; + }); + data.push(...formulaData); + } + const xAxis = chart.xAxis1 ? chart.xAxis1 : chart.xAxis; + const yAxis = chart.yAxis1 ? chart.yAxis1 : chart.yAxis; + const chartWidth = xAxis.scale().range()[1]; + const annotationHeight = yAxis.scale().range()[0]; + + if (annotationData) { + // Event annotations + activeAnnotationLayers + .filter( + x => + x.annotationType === ANNOTATION_TYPES.EVENT && + annotationData && + annotationData[x.name], + ) + .forEach((config, index) => { + const e = applyNativeColumns(config); + // Add event annotation layer + const annotations = d3 + .select(element) + .select('.nv-wrap') + .append('g') + .attr('class', `nv-event-annotation-layer-${index}`); + const aColor = + e.color || getColor(cleanColorInput(e.name), colorScheme); + + const tip = tipFactory({ + ...e, + annotationTipClass: `arrow-down nv-event-annotation-layer-${config.sourceType}`, + }); + const records = (annotationData[e.name].records || []) + .map(r => { + const timeValue = new Date(moment.utc(r[e.timeColumn])); + + return { + ...r, + [e.timeColumn]: timeValue, + }; + }) + .filter( + record => + !Number.isNaN(record[e.timeColumn].getMilliseconds()), + ); + + if (records.length > 0) { + annotations + .selectAll('line') + .data(records) + .enter() + .append('line') + .attr({ + x1: d => xScale(new Date(d[e.timeColumn])), + y1: 0, + x2: d => xScale(new Date(d[e.timeColumn])), + y2: annotationHeight, + }) + .attr('class', `${e.opacity} ${e.style}`) + .style('stroke', aColor) + .style('stroke-width', e.width) + .on('mouseover', tip.show) + .on('mouseout', tip.hide) + .call(tip); + } + + // update annotation positions on brush event + if (chart.focus) { + chart.focus.dispatch.on('onBrush.event-annotation', () => { + annotations + .selectAll('line') + .data(records) + .attr({ + x1: d => xScale(new Date(d[e.timeColumn])), + y1: 0, + x2: d => xScale(new Date(d[e.timeColumn])), + y2: annotationHeight, + opacity: d => { + const x = xScale(new Date(d[e.timeColumn])); + + return x > 0 && x < chartWidth ? 1 : 0; + }, + }); + }); + } + }); + + // Interval annotations + activeAnnotationLayers + .filter( + x => + x.annotationType === ANNOTATION_TYPES.INTERVAL && + annotationData && + annotationData[x.name], + ) + .forEach((config, index) => { + const e = applyNativeColumns(config); + // Add interval annotation layer + const annotations = d3 + .select(element) + .select('.nv-wrap') + .append('g') + .attr('class', `nv-interval-annotation-layer-${index}`); + + const aColor = + e.color || getColor(cleanColorInput(e.name), colorScheme); + const tip = tipFactory(e); + + const records = (annotationData[e.name].records || []) + .map(r => { + const timeValue = new Date(moment.utc(r[e.timeColumn])); + const intervalEndValue = new Date( + moment.utc(r[e.intervalEndColumn]), + ); + + return { + ...r, + [e.timeColumn]: timeValue, + [e.intervalEndColumn]: intervalEndValue, + }; + }) + .filter( + record => + !Number.isNaN(record[e.timeColumn].getMilliseconds()) && + !Number.isNaN( + record[e.intervalEndColumn].getMilliseconds(), + ), + ); + + if (records.length > 0) { + annotations + .selectAll('rect') + .data(records) + .enter() + .append('rect') + .attr({ + x: d => + Math.min( + xScale(new Date(d[e.timeColumn])), + xScale(new Date(d[e.intervalEndColumn])), + ), + y: 0, + width: d => + Math.max( + Math.abs( + xScale(new Date(d[e.intervalEndColumn])) - + xScale(new Date(d[e.timeColumn])), + ), + 1, + ), + height: annotationHeight, + }) + .attr('class', `${e.opacity} ${e.style}`) + .style('stroke-width', e.width) + .style('stroke', aColor) + .style('fill', aColor) + .style('fill-opacity', 0.2) + .on('mouseover', tip.show) + .on('mouseout', tip.hide) + .call(tip); + } + + // update annotation positions on brush event + if (chart.focus) { + chart.focus.dispatch.on('onBrush.interval-annotation', () => { + annotations + .selectAll('rect') + .data(records) + .attr({ + x: d => xScale(new Date(d[e.timeColumn])), + width: d => { + const x1 = xScale(new Date(d[e.timeColumn])); + const x2 = xScale(new Date(d[e.intervalEndColumn])); + + return x2 - x1; + }, + }); + }); + } + }); + } + + // rerender chart appended with annotation layer + svg.datum(data).attr('height', height).attr('width', width).call(chart); + + // Display styles for Time Series Annotations + chart.dispatch.on('renderEnd.timeseries-annotation', () => { + d3.selectAll( + '.slice_container .nv-timeseries-annotation-layer.showMarkerstrue .nv-point', + ) + .style('stroke-opacity', 1) + .style('fill-opacity', 1); + d3.selectAll( + '.slice_container .nv-timeseries-annotation-layer.hideLinetrue', + ).style('stroke-width', 0); + }); + } + } + + wrapTooltip(chart); + + return chart; + }; + + // Remove tooltips before rendering chart, if the chart is being re-rendered sometimes + // there are left over tooltips in the dom, + // this will clear them before rendering the chart again. + if (chartId) { + removeTooltip(chartId); + } else { + hideTooltips(true); + } + + nv.addGraph(drawGraph); +} + +nvd3Vis.displayName = 'NVD3'; +nvd3Vis.propTypes = propTypes; +export default nvd3Vis; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts new file mode 100644 index 000000000000..9145d5a8429a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts @@ -0,0 +1,127 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + D3_FORMAT_OPTIONS, +} from '@superset-ui/chart-controls'; +import { showLegend } from '../NVD3Controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['groupby'], + ['metric'], + ['adhoc_filters'], + ['row_limit'], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + [ + { + name: 'pie_label_type', + config: { + type: 'SelectControl', + label: t('Label Type'), + default: 'key', + renderTrigger: true, + choices: [ + ['key', 'Category Name'], + ['value', 'Value'], + ['percent', 'Percentage'], + ['key_value', 'Category and Value'], + ['key_percent', 'Category and Percentage'], + ['key_value_percent', 'Category, Value and Percentage'], + ], + description: t('What should be shown on the label?'), + }, + }, + { + name: 'number_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Number format'), + renderTrigger: true, + default: 'SMART_NUMBER', + choices: D3_FORMAT_OPTIONS, + description: `${t( + 'D3 format syntax: https://github.com/d3/d3-format', + )} ${t( + 'Only applies when the "Label Type" is not set to a percentage.', + )}`, + }, + }, + ], + [ + { + name: 'donut', + config: { + type: 'CheckboxControl', + label: t('Donut'), + default: false, + renderTrigger: true, + description: t('Do you want a donut or a pie?'), + }, + }, + showLegend, + ], + [ + { + name: 'show_labels', + config: { + type: 'CheckboxControl', + label: t('Show Labels'), + renderTrigger: true, + default: true, + description: t( + 'Whether to display the labels. Note that the label only displays when the the 5% ' + + 'threshold.', + ), + }, + }, + { + name: 'labels_outside', + config: { + type: 'CheckboxControl', + label: t('Put labels outside'), + default: true, + renderTrigger: true, + description: t('Put the labels outside the pie?'), + }, + }, + ], + ['color_scheme'], + ], + }, + ], + controlOverrides: { + row_limit: { + default: 25, + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Pie/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Pie/images/thumbnail.png new file mode 100644 index 000000000000..8dcb780d0999 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Pie/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Pie/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Pie/images/thumbnailLarge.png new file mode 100644 index 000000000000..8115f25f1775 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Pie/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Pie/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Pie/index.js new file mode 100644 index 000000000000..50c6e721b987 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/Pie/index.js @@ -0,0 +1,41 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from '../transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + credits: ['http://nvd3.org'], + description: '', + name: t('Pie Chart'), + thumbnail, + useLegacyApi: true, +}); + +export default class PieChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../ReactNVD3'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/PropTypes.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/PropTypes.js new file mode 100644 index 000000000000..99bf998f4020 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/PropTypes.js @@ -0,0 +1,82 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/sort-prop-types */ +import PropTypes from 'prop-types'; +import { ANNOTATION_TYPES } from './vendor/superset/AnnotationTypes'; + +export const numberOrAutoType = PropTypes.oneOfType([ + PropTypes.number, + PropTypes.oneOf(['auto']), +]); + +export const stringOrObjectWithLabelType = PropTypes.oneOfType([ + PropTypes.string, + PropTypes.shape({ + label: PropTypes.string, + }), +]); + +export const rgbObjectType = PropTypes.shape({ + r: PropTypes.number.isRequired, + g: PropTypes.number.isRequired, + b: PropTypes.number.isRequired, +}); + +export const numericXYType = PropTypes.shape({ + x: PropTypes.number, + y: PropTypes.number, +}); + +export const categoryAndValueXYType = PropTypes.shape({ + x: PropTypes.string, + y: PropTypes.number, +}); + +export const boxPlotValueType = PropTypes.shape({ + outliers: PropTypes.arrayOf(PropTypes.number), + Q1: PropTypes.number, + Q2: PropTypes.number, + Q3: PropTypes.number, + whisker_high: PropTypes.number, + whisker_low: PropTypes.number, +}); + +export const bulletDataType = PropTypes.shape({ + markerLabels: PropTypes.arrayOf(PropTypes.string), + markerLineLabels: PropTypes.arrayOf(PropTypes.string), + markerLines: PropTypes.arrayOf(PropTypes.number), + markers: PropTypes.arrayOf(PropTypes.number), + measures: PropTypes.arrayOf(PropTypes.number), + rangeLabels: PropTypes.arrayOf(PropTypes.string), + ranges: PropTypes.arrayOf(PropTypes.number), +}); + +export const annotationLayerType = PropTypes.shape({ + annotationType: PropTypes.oneOf(Object.keys(ANNOTATION_TYPES)), + color: PropTypes.string, + hideLine: PropTypes.bool, + name: PropTypes.string, + opacity: PropTypes.string, + show: PropTypes.bool, + showMarkers: PropTypes.bool, + sourceType: PropTypes.string, + style: PropTypes.string, + value: PropTypes.oneOfType([PropTypes.number, PropTypes.string]), + width: PropTypes.number, +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/ReactNVD3.jsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/ReactNVD3.jsx new file mode 100644 index 000000000000..dea29e6eb49a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/ReactNVD3.jsx @@ -0,0 +1,176 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { reactify, styled } from '@superset-ui/core'; +import PropTypes from 'prop-types'; +import Component from './NVD3Vis'; +import { hideTooltips, removeTooltip } from './utils'; + +function componentWillUnmount() { + const { id } = this.props; + if (id !== null && id !== undefined) { + removeTooltip(id); + } else { + hideTooltips(true); + } +} + +const ReactNVD3 = reactify(Component, { componentWillUnmount }); + +const NVD3 = ({ className, ...otherProps }) => ( +
+ +
+); + +NVD3.propTypes = { + className: PropTypes.string.isRequired, +}; + +export default styled(NVD3)` + .superset-legacy-chart-nvd3-dist-bar, .superset-legacy-chart-nvd3-bar { + overflow-x: auto !important; + svg { + &.nvd3-svg { + width: auto; + font-size: ${({ theme }) => theme.typography.sizes.m}; + } + } + } + .superset-legacy-chart-nvd3 { + nv-x text { + font-size: ${({ theme }) => theme.typography.sizes.m}; + } + g.superset path { + stroke-dasharray: 5, 5; + } + .nvtooltip tr.highlight td { + font-weight: ${({ theme }) => theme.typography.weights.bold}; + font-size: 15px !important; + } + text.nv-axislabel { + font-size: ${({ theme }) => theme.typography.sizes.m} !important; + } + g.solid path, + line.solid { + stroke-dasharray: unset; + } + g.dashed path, + line.dashed { + stroke-dasharray: 5, 5; + } + g.longDashed path, + line.dotted { + stroke-dasharray: 1, 1; + } + + g.opacityLow path, + line.opacityLow { + stroke-opacity: 0.2; + } + + g.opacityMedium path, + line.opacityMedium { + stroke-opacity: 0.5; + } + g.opacityHigh path, + line.opacityHigh { + stroke-opacity: 0.8; + } + g.time-shift-0 path, + line.time-shift-0 { + stroke-dasharray: 5, 5; + } + g.time-shift-1 path, + line.time-shift-1 { + stroke-dasharray: 1, 5; + } + g.time-shift-2 path, + line.time-shift-3 { + stroke-dasharray: 5, 1; + } + g.time-shift-3 path, + line.time-shift-3 { + stroke-dasharray: 5, 1; + } + g.time-shift-4 path, + line.time-shift-4 { + stroke-dasharray: 5, 10; + } + g.time-shift-5 path, + line.time-shift-5 { + stroke-dasharray: 0.9; + } + g.time-shift-6 path, + line.time-shift-6 { + stroke-dasharray: 15, 10, 5; + } + g.time-shift-7 path, + line.time-shift-7 { + stroke-dasharray: 15, 10, 5, 10; + } + g.time-shift-8 path, + line.time-shift-8 { + stroke-dasharray: 15, 10, 5, 10, 15; + } + g.time-shift-9 path, + line.time-shift-9 { + stroke-dasharray: 5, 5, 1, 5; + } + .nv-noData.body { + font-size: ${({ theme }) => theme.typography.sizes.m}; + font-weight: ${({ theme }) => theme.typography.weights.normal}; + } + } + .superset-legacy-chart-nvd3-tr-highlight { + border-top: 1px solid; + border-bottom: 1px solid; + font-weight: ${({ theme }) => theme.typography.weights.bold}; + } + .superset-legacy-chart-nvd3-tr-total { + font-weight: ${({ theme }) => theme.typography.weights.bold}; + } + .nvtooltip { + .tooltip-header { + white-space: nowrap; + font-weight: ${({ theme }) => theme.typography.weights.bold}; + } + tbody tr:not(.tooltip-header) td:nth-child(2) { + word-break: break-word; + } + } + .d3-tip.nv-event-annotation-layer-table, + .d3-tip.nv-event-annotation-layer-NATIVE { + width: 200px; + border-radius: 2px; + background-color: #484848; + fill-opacity: 0.6; + margin: 8px; + padding: 8px; + color: #fff; + &:after { + content: '\25BC'; + font-size: ${({ theme }) => theme.typography.sizes.m}; + color: #484848; + position: absolute; + bottom: -14px; + left: 94px; + } + } +`; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts new file mode 100644 index 000000000000..2d1f765c31f9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts @@ -0,0 +1,128 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + D3_FORMAT_OPTIONS, + sections, +} from '@superset-ui/chart-controls'; +import { + lineInterpolation, + showLegend, + xAxisLabel, + bottomMargin, + xAxisFormat, + yLogScale, + yAxisBounds, + xAxisShowMinmax, + yAxisShowMinmax, + yAxisLabel, + leftMargin, +} from '../NVD3Controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metric'], + ['adhoc_filters'], + [ + { + name: 'freq', + config: { + type: 'SelectControl', + label: t('Frequency'), + default: 'W-MON', + freeForm: true, + clearable: false, + choices: [ + ['AS', 'Year (freq=AS)'], + ['52W-MON', '52 weeks starting Monday (freq=52W-MON)'], + ['W-SUN', '1 week starting Sunday (freq=W-SUN)'], + ['W-MON', '1 week starting Monday (freq=W-MON)'], + ['D', 'Day (freq=D)'], + ['4W-MON', '4 weeks (freq=4W-MON)'], + ], + description: t( + `The periodicity over which to pivot time. Users can provide + "Pandas" offset alias. + Click on the info bubble for more details on accepted "freq" expressions.`, + ), + tooltipOnClick: () => { + window.open( + 'https://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases', + ); + }, + }, + }, + ], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + [showLegend], + [lineInterpolation], + ['color_picker', null], + ], + }, + { + label: t('X Axis'), + expanded: true, + controlSetRows: [ + [xAxisLabel], + [bottomMargin], + [xAxisShowMinmax], + [ + { + name: xAxisFormat.name, + config: { + ...xAxisFormat.config, + default: 'SMART_NUMBER', + choices: D3_FORMAT_OPTIONS, + }, + }, + ], + ], + }, + { + label: t('Y Axis'), + expanded: true, + controlSetRows: [ + [yAxisLabel], + [leftMargin], + [yAxisShowMinmax], + [yLogScale], + ['y_axis_format'], + [yAxisBounds], + ], + }, + ], + controlOverrides: { + metric: { + clearable: false, + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/TimePivot/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/TimePivot/images/thumbnail.png new file mode 100644 index 000000000000..dde48ae0246d Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/TimePivot/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/TimePivot/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/TimePivot/images/thumbnailLarge.png new file mode 100644 index 000000000000..489eccd29456 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/TimePivot/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js new file mode 100644 index 000000000000..f835ebecd15c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js @@ -0,0 +1,43 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from '../transformProps'; +import thumbnail from './images/thumbnail.png'; +import controlPanel from './controlPanel'; + +const metadata = new ChartMetadata({ + category: t('Evolution'), + credits: ['http://nvd3.org'], + description: '', + name: t('Time-series Period Pivot'), + tags: [t('Legacy'), t('Time'), t('nvd3')], + thumbnail, + useLegacyApi: true, +}); + +export default class TimePivotChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../ReactNVD3'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/index.js new file mode 100644 index 000000000000..4156c5ca89a5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/index.js @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as NVD3ChartPreset } from './preset'; +export { default as AreaChartPlugin } from './Area'; +export { default as BarChartPlugin } from './Bar'; +export { default as BoxPlotChartPlugin } from './BoxPlot'; +export { default as BubbleChartPlugin } from './Bubble'; +export { default as BulletChartPlugin } from './Bullet'; +export { default as CompareChartPlugin } from './Compare'; +export { default as DistBarChartPlugin } from './DistBar'; +export { default as DualLineChartPlugin } from './DualLine'; +export { default as LineChartPlugin } from './Line'; +export { default as LineMultiChartPlugin } from './LineMulti'; +export { default as PieChartPlugin } from './Pie'; +export { default as TimePivotChartPlugin } from './TimePivot'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/preset.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/preset.js new file mode 100644 index 000000000000..cccb877ecda8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/preset.js @@ -0,0 +1,53 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { Preset } from '@superset-ui/core'; +import AreaChartPlugin from './Area'; +import BarChartPlugin from './Bar'; +import BoxPlotChartPlugin from './BoxPlot'; +import BubbleChartPlugin from './Bubble'; +import BulletChartPlugin from './Bullet'; +import CompareChartPlugin from './Compare'; +import DistBarChartPlugin from './DistBar'; +import DualLineChartPlugin from './DualLine'; +import LineChartPlugin from './Line'; +import LineMultiChartPlugin from './LineMulti'; +import PieChartPlugin from './Pie'; +import TimePivotChartPlugin from './TimePivot'; + +export default class NVD3ChartPreset extends Preset { + constructor() { + super({ + name: 'NVD3 charts', + plugins: [ + new AreaChartPlugin().configure({ key: 'area' }), + new BarChartPlugin().configure({ key: 'bar' }), + new BoxPlotChartPlugin().configure({ key: 'box_plot' }), + new BubbleChartPlugin().configure({ key: 'bubble' }), + new BulletChartPlugin().configure({ key: 'bullet' }), + new CompareChartPlugin().configure({ key: 'compare' }), + new DistBarChartPlugin().configure({ key: 'dist_bar' }), + new DualLineChartPlugin().configure({ key: 'dual_line' }), + new LineChartPlugin().configure({ key: 'line' }), + new LineMultiChartPlugin().configure({ key: 'line_multi' }), + new PieChartPlugin().configure({ key: 'pie' }), + new TimePivotChartPlugin().configure({ key: 'time_pivot' }), + ], + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/transformProps.js new file mode 100644 index 000000000000..454314c502f3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/transformProps.js @@ -0,0 +1,199 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import isTruthy from './utils/isTruthy'; +import { + tokenizeToNumericArray, + tokenizeToStringArray, +} from './utils/tokenize'; +import { formatLabel } from './utils'; + +const NOOP = () => {}; + +const grabD3Format = (datasource, targetMetric) => { + let foundFormatter; + const { metrics = [] } = datasource || {}; + metrics.forEach(metric => { + if (metric.d3format && metric.metric_name === targetMetric) { + foundFormatter = metric.d3format; + } + }); + + return foundFormatter; +}; + +export default function transformProps(chartProps) { + const { + width, + height, + annotationData, + datasource, + formData, + hooks, + queriesData, + } = chartProps; + + const { onAddFilter = NOOP, onError = NOOP } = hooks; + + const { + annotationLayers, + barStacked, + bottomMargin, + colorPicker, + colorScheme, + comparisonType, + contribution, + donut, + entity, + labelsOutside, + leftMargin, + lineInterpolation, + maxBubbleSize, + metric, + metric2, + metrics = [], + orderBars, + pieLabelType, + reduceXTicks, + richTooltip, + sendTimeRange, + showBarValue, + showBrush, + showControls, + showLabels, + showLegend, + showMarkers, + size, + stackedStyle, + vizType, + x, + xAxisFormat, + xAxisLabel, + xAxisShowminmax, + xLogScale, + xTicksLayout, + y, + yAxisBounds, + yAxis2Bounds, + yAxisLabel, + yAxisShowminmax, + yAxis2Showminmax, + yLogScale, + } = formData; + + let { + markerLabels, + markerLines, + markerLineLabels, + markers, + numberFormat, + rangeLabels, + ranges, + yAxisFormat, + yAxis2Format, + } = formData; + + const rawData = queriesData[0].data || []; + const data = Array.isArray(rawData) + ? rawData.map(row => ({ + ...row, + key: formatLabel(row.key, datasource.verboseMap), + })) + : rawData; + + if (vizType === 'pie') { + numberFormat = numberFormat || grabD3Format(datasource, metric); + } else if (vizType === 'dual_line') { + yAxisFormat = yAxisFormat || grabD3Format(datasource, metric); + yAxis2Format = yAxis2Format || grabD3Format(datasource, metric2); + } else if ( + ['line', 'dist_bar', 'bar', 'area'].includes(chartProps.formData.vizType) + ) { + yAxisFormat = + yAxisFormat || + grabD3Format(datasource, metrics.length > 0 ? metrics[0] : undefined); + } else if (vizType === 'bullet') { + ranges = tokenizeToNumericArray(ranges) || [0, data.measures * 1.1]; + rangeLabels = tokenizeToStringArray(rangeLabels); + markerLabels = tokenizeToStringArray(markerLabels); + markerLines = tokenizeToNumericArray(markerLines); + markerLineLabels = tokenizeToStringArray(markerLineLabels); + markers = tokenizeToNumericArray(markers); + } + + return { + width, + height, + data, + annotationData, + annotationLayers, + areaStackedStyle: stackedStyle, + baseColor: colorPicker, + bottomMargin, + colorScheme, + comparisonType, + contribution, + entity, + isBarStacked: barStacked, + isDonut: donut, + isPieLabelOutside: labelsOutside, + leftMargin, + lineInterpolation, + markerLabels, + markerLines, + markerLineLabels, + markers, + maxBubbleSize: parseInt(maxBubbleSize, 10), + numberFormat, + onBrushEnd: isTruthy(sendTimeRange) + ? timeRange => { + onAddFilter('__time_range', timeRange, false, true); + } + : undefined, + onError, + orderBars, + pieLabelType, + rangeLabels, + ranges, + reduceXTicks, + showBarValue, + showBrush, + showControls, + showLabels, + showLegend, + showMarkers, + sizeField: size, + useRichTooltip: richTooltip, + vizType, + xAxisFormat, + xAxisLabel, + xAxisShowMinMax: xAxisShowminmax, + xField: x, + xIsLogScale: xLogScale, + xTicksLayout, + yAxisFormat, + yAxis2Format, + yAxisBounds, + yAxis2Bounds, + yAxisLabel, + yAxisShowMinMax: yAxisShowminmax, + yAxis2ShowMinMax: yAxis2Showminmax, + yField: y, + yIsLogScale: yLogScale, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/utils.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/utils.js new file mode 100644 index 000000000000..344388fffd7c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/utils.js @@ -0,0 +1,452 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import d3 from 'd3'; +import d3tip from 'd3-tip'; +import dompurify from 'dompurify'; +import { smartDateFormatter, getNumberFormatter } from '@superset-ui/core'; +// Regexp for the label added to time shifted series +// (1 hour offset, 2 days offset, etc.) +const TIME_SHIFT_PATTERN = /\d+ \w+ offset/; + +const ANIMATION_TIME = 1000; + +export function cleanColorInput(value) { + // for superset series that should have the same color + return String(value) + .trim() + .replace(' (right axis)', '') + .split(', ') + .filter(k => !TIME_SHIFT_PATTERN.test(k)) + .join(', '); +} + +/** + * If format is smart_date, format date + * Otherwise, format number with the given format name + * @param {*} format + */ +export function getTimeOrNumberFormatter(format) { + return format === 'smart_date' + ? smartDateFormatter + : getNumberFormatter(format); +} + +export function drawBarValues(svg, data, stacked, axisFormat) { + const format = getNumberFormatter(axisFormat); + const countSeriesDisplayed = data.filter(d => !d.disabled).length; + const totalStackedValues = + stacked && data.length !== 0 + ? data[0].values.map((bar, iBar) => { + const bars = data + .filter(series => !series.disabled) + .map(series => series.values[iBar]); + + return d3.sum(bars, d => d.y); + }) + : []; + svg.selectAll('.bar-chart-label-group').remove(); + setTimeout(() => { + svg.selectAll('.bar-chart-label-group').remove(); + const groupLabels = svg + .select('g.nv-barsWrap') + .append('g') + .attr('class', 'bar-chart-label-group'); + svg + .selectAll('g.nv-group') + .filter((d, i) => !stacked || i === countSeriesDisplayed - 1) + .selectAll('rect') + .each(function each(d, index) { + const rectObj = d3.select(this); + const transformAttr = rectObj.attr('transform'); + const xPos = parseFloat(rectObj.attr('x')); + const yPos = parseFloat(rectObj.attr('y')); + const rectWidth = parseFloat(rectObj.attr('width')); + const rectHeight = parseFloat(rectObj.attr('height')); + const textEls = groupLabels + .append('text') + .text(format(stacked ? totalStackedValues[index] : d.y)) + .attr('transform', transformAttr) + .attr('class', 'bar-chart-label'); + + // fine tune text position + const bbox = textEls.node().getBBox(); + const labelWidth = bbox.width; + const labelHeight = bbox.height; + textEls.attr('x', xPos + rectWidth / 2 - labelWidth / 2); + if (rectObj.attr('class').includes('positive')) { + textEls.attr('y', yPos - 5); + } else { + textEls.attr('y', yPos + rectHeight + labelHeight); + } + }); + }, ANIMATION_TIME); +} + +// Formats the series key to account for a possible NULL value +function getFormattedKey(seriesKey, shouldDompurify) { + if (seriesKey === '') { + return `<${seriesKey.slice(1, -1)}>`; + } + + return shouldDompurify ? dompurify.sanitize(seriesKey) : seriesKey; +} + +// Custom sorted tooltip +// use a verbose formatter for times +export function generateRichLineTooltipContent( + d, + timeFormatter, + valueFormatter, +) { + let tooltip = ''; + tooltip += + "'; + d.series.sort((a, b) => (a.value >= b.value ? -1 : 1)); + d.series.forEach(series => { + const key = getFormattedKey(series.key, true); + tooltip += + `` + + `' + + `` + + `` + + ''; + }); + tooltip += '
" + + `${timeFormatter(d.value)}` + + '
` + + '
' + + '
${key}${valueFormatter(series.value)}
'; + + return dompurify.sanitize(tooltip); +} + +export function generateCompareTooltipContent(d, valueFormatter) { + let tooltip = ''; + tooltip += + "'; + d.series.sort((a, b) => (a.value >= b.value ? -1 : 1)); + d.series.forEach(series => { + const key = getFormattedKey(series.key, true); + tooltip += + `` + + `' + + `` + + `` + + ''; + }); + tooltip += '
" + + `${d.value}` + + '
` + + '
' + + '
${key}${valueFormatter(series.value)}
'; + + return dompurify.sanitize(tooltip); +} + +export function generateAreaChartTooltipContent( + d, + timeFormatter, + valueFormatter, + chart, +) { + const total = + chart.style() === 'expand' + ? // expand mode does not include total row + d3.sum(d.series, s => s.value) + : // other modes include total row at the end + d.series[d.series.length - 1].value; + let tooltip = ''; + tooltip += + "' + + ''; + d.series.forEach(series => { + const key = getFormattedKey(series.key, true); + let trClass = ''; + if (series.highlight) { + trClass = 'superset-legacy-chart-nvd3-tr-highlight'; + } else if (series.key === 'TOTAL') { + trClass = 'superset-legacy-chart-nvd3-tr-total'; + } + tooltip += + `` + + `` + + `` + + `` + + `` + + ''; + }); + tooltip += '
" + + `${timeFormatter(d.value)}` + + '
CategoryValue% to total
${ + series.key === 'TOTAL' ? '' : '◼' + }${key}${valueFormatter(series.value)}${((100 * series.value) / total).toFixed(2)}%
'; + + return dompurify.sanitize(tooltip); +} + +export function generateMultiLineTooltipContent(d, xFormatter, yFormatters) { + const tooltipTitle = xFormatter(d.value); + let tooltip = ''; + + tooltip += + "'; + + d.series.forEach((series, i) => { + const yFormatter = yFormatters[i]; + const key = getFormattedKey(series.key, false); + tooltip += + "` + + `` + + ``; + }); + + tooltip += '
" + + `${tooltipTitle}` + + '
" + + `
${key}${yFormatter(series.value)}
'; + + return tooltip; +} + +export function generateTimePivotTooltip(d, xFormatter, yFormatter) { + const tooltipTitle = xFormatter(d.value); + let tooltip = ''; + + tooltip += + "'; + + d.series.forEach(series => { + if (series.highlight) { + let label = ''; + if (series.key === 'current') { + label = series.key; + } else { + label = `${series.key} of the selected frequency:`; + } + tooltip += + "` + + `` + + ``; + } + }); + + tooltip += '
" + + `${tooltipTitle}` + + '
" + + `
${label}${yFormatter(series.value)}
'; + + return dompurify.sanitize(tooltip); +} + +function getLabel(stringOrObjectWithLabel) { + return stringOrObjectWithLabel.label || stringOrObjectWithLabel; +} + +function createHTMLRow(col1, col2) { + return `${col1}${col2}`; +} + +export function generateBubbleTooltipContent({ + point, + entity, + xField, + yField, + sizeField, + xFormatter, + yFormatter, + sizeFormatter, +}) { + let s = ''; + s += + `'; + s += createHTMLRow(getLabel(xField), xFormatter(point.x)); + s += createHTMLRow(getLabel(yField), yFormatter(point.y)); + s += createHTMLRow(getLabel(sizeField), sizeFormatter(point.size)); + s += '
` + + `${point[entity]} (${point.group})` + + '
'; + + return s; +} + +// shouldRemove indicates whether the nvtooltips should be removed from the DOM +export function hideTooltips(shouldRemove) { + const targets = document.querySelectorAll('.nvtooltip'); + if (targets.length > 0) { + // Only set opacity to 0 when hiding tooltips so they would reappear + // on hover, which sets the opacity to 1 + targets.forEach(t => { + if (shouldRemove) { + t.remove(); + } else { + // eslint-disable-next-line no-param-reassign + t.style.opacity = 0; + } + }); + } +} + +export function generateTooltipClassName(uuid) { + return `tooltip-${uuid}`; +} + +export function removeTooltip(uuid) { + const classSelector = `.${generateTooltipClassName(uuid)}`; + const target = document.querySelector(classSelector); + if (target) { + target.remove(); + } +} + +export function wrapTooltip(chart) { + const tooltipLayer = + chart.useInteractiveGuideline && chart.useInteractiveGuideline() + ? chart.interactiveLayer + : chart; + const tooltipGeneratorFunc = tooltipLayer.tooltip.contentGenerator(); + tooltipLayer.tooltip.contentGenerator(d => { + let tooltip = `
`; + tooltip += tooltipGeneratorFunc(d); + tooltip += '
'; + + return tooltip; + }); +} + +export function tipFactory(layer) { + return d3tip() + .attr('class', `d3-tip ${layer.annotationTipClass || ''}`) + .direction('n') + .offset([-5, 0]) + .html(d => { + if (!d) { + return ''; + } + const title = + d[layer.titleColumn] && d[layer.titleColumn].length > 0 + ? `${d[layer.titleColumn]} - ${layer.name}` + : layer.name; + const body = Array.isArray(layer.descriptionColumns) + ? layer.descriptionColumns.map(c => d[c]) + : Object.values(d); + + return `
${title}

${body.join( + ', ', + )}
`; + }); +} + +export function getMaxLabelSize(svg, axisClass) { + // axis class = .nv-y2 // second y axis on dual line chart + // axis class = .nv-x // x axis on time series line chart + const tickTexts = svg.selectAll(`.${axisClass} g.tick text`); + if (tickTexts.length > 0) { + const lengths = tickTexts[0].map(text => text.getComputedTextLength()); + + return Math.ceil(Math.max(0, ...lengths)); + } + + return 0; +} + +export function formatLabel(input, verboseMap = {}) { + // The input for label may be a string or an array of string + // When using the time shift feature, the label contains a '---' in the array + const verboseLookup = s => verboseMap[s] || s; + + return Array.isArray(input) && input.length > 0 + ? input + .map(l => (TIME_SHIFT_PATTERN.test(l) ? l : verboseLookup(l))) + .join(', ') + : verboseLookup(input); +} + +const MIN_BAR_WIDTH = 18; + +export function computeBarChartWidth(data, stacked, maxWidth) { + const barCount = stacked + ? d3.max(data, d => d.values.length) + : d3.sum(data, d => d.values.length); + + const barWidth = barCount * MIN_BAR_WIDTH; + + return Math.max(barWidth, maxWidth); +} + +export function tryNumify(s) { + // Attempts casting to Number, returns string when failing + const n = Number(s); + + return Number.isNaN(n) ? s : n; +} + +export function stringifyTimeRange(extent) { + if (extent.some(d => d.toISOString === undefined)) { + return null; + } + + return extent.map(d => d.toISOString().slice(0, -1)).join(' : '); +} + +export function setAxisShowMaxMin(axis, showminmax) { + if (axis && axis.showMaxMin && showminmax !== undefined) { + axis.showMaxMin(showminmax); + } +} + +export function computeYDomain(data) { + if (Array.isArray(data) && data.length > 0 && Array.isArray(data[0].values)) { + const extents = data + .filter(d => !d.disabled) + .map(row => d3.extent(row.values, v => v.y)); + const minOfMin = d3.min(extents, ([min]) => min); + const maxOfMax = d3.max(extents, ([, max]) => max); + + return [minOfMin, maxOfMax]; + } + + return [0, 1]; +} + +export function computeStackedYDomain(data) { + if (Array.isArray(data) && data.length > 0 && Array.isArray(data[0].values)) { + const series = data + .filter(d => !d.disabled) + .map(d => d.values.map(v => v.y)); + const stackedValues = series[0].map((_, i) => + series.reduce((acc, cur) => acc + cur[i], 0), + ); + + return [Math.min(0, ...stackedValues), Math.max(0, ...stackedValues)]; + } + + return [0, 1]; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/utils/isTruthy.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/utils/isTruthy.js new file mode 100644 index 000000000000..2594a63633ba --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/utils/isTruthy.js @@ -0,0 +1,28 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function isTruthy(obj) { + if (typeof obj === 'boolean') { + return obj; + } + if (typeof obj === 'string') { + return ['yes', 'y', 'true', 't', '1'].includes(obj.toLowerCase()); + } + + return !!obj; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/utils/tokenize.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/utils/tokenize.ts new file mode 100644 index 000000000000..996d3cc824dc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/utils/tokenize.ts @@ -0,0 +1,33 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { validateNumber } from '@superset-ui/core'; + +export function tokenizeToNumericArray(value?: string): number[] | null { + if (!value?.trim()) return null; + const tokens = value.split(','); + if (tokens.some(token => validateNumber(token))) + throw new Error('All values should be numeric'); + return tokens.map(token => parseFloat(token)); +} + +export function tokenizeToStringArray(value?: string): string[] | null { + if (!value?.trim()) return null; + const tokens = value.split(','); + return tokens.map(token => token.trim()); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js new file mode 100644 index 000000000000..384c29b3047f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js @@ -0,0 +1,83 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +function extractTypes(metadata) { + return Object.keys(metadata).reduce((prev, key) => { + const result = prev; + result[key] = key; + + return result; + }, {}); +} + +export const ANNOTATION_TYPES_METADATA = { + FORMULA: { + value: 'FORMULA', + label: 'Formula', + }, + EVENT: { + value: 'EVENT', + label: 'Event', + supportNativeSource: true, + }, + INTERVAL: { + value: 'INTERVAL', + label: 'Interval', + supportNativeSource: true, + }, + TIME_SERIES: { + value: 'TIME_SERIES', + label: 'Time Series', + }, +}; + +export const ANNOTATION_TYPES = extractTypes(ANNOTATION_TYPES_METADATA); + +export const DEFAULT_ANNOTATION_TYPE = ANNOTATION_TYPES.FORMULA; + +export const ANNOTATION_SOURCE_TYPES_METADATA = { + NATIVE: { + value: 'NATIVE', + label: 'Superset annotation', + }, +}; + +export const ANNOTATION_SOURCE_TYPES = extractTypes( + ANNOTATION_SOURCE_TYPES_METADATA, +); + +export function requiresQuery(annotationSourceType) { + return !!annotationSourceType; +} + +const NATIVE_COLUMN_NAMES = { + descriptionColumns: ['long_descr'], + intervalEndColumn: 'end_dttm', + timeColumn: 'start_dttm', + titleColumn: 'short_descr', +}; + +export function applyNativeColumns(annotation) { + if (annotation.sourceType === ANNOTATION_SOURCE_TYPES.NATIVE) { + return { ...annotation, ...NATIVE_COLUMN_NAMES }; + } + + return annotation; +} + +export default ANNOTATION_TYPES; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/vendor/superset/exploreUtils.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/vendor/superset/exploreUtils.js new file mode 100644 index 000000000000..cb2561efb866 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/src/vendor/superset/exploreUtils.js @@ -0,0 +1,68 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint camelcase: 0 */ +import URI from 'urijs'; +import safeStringify from 'fast-safe-stringify'; + +const MAX_URL_LENGTH = 8000; + +export function getURIDirectory(formData, endpointType = 'base') { + // Building the directory part of the URI + let directory = '/superset/explore/'; + if (['json', 'csv', 'query', 'results', 'samples'].includes(endpointType)) { + directory = '/superset/explore_json/'; + } + + return directory; +} + +export function getExploreLongUrl( + formData, + endpointType, + allowOverflow = true, + extraSearch = {}, +) { + if (!formData.datasource) { + return null; + } + + const uri = new URI('/'); + const directory = getURIDirectory(formData, endpointType); + const search = uri.search(true); + Object.keys(extraSearch).forEach(key => { + search[key] = extraSearch[key]; + }); + search.form_data = safeStringify(formData); + if (endpointType === 'standalone') { + search.standalone = 'true'; + } + const url = uri.directory(directory).search(search).toString(); + if (!allowOverflow && url.length > MAX_URL_LENGTH) { + const minimalFormData = { + datasource: formData.datasource, + viz_type: formData.viz_type, + }; + + return getExploreLongUrl(minimalFormData, endpointType, false, { + URL_IS_TOO_LONG_TO_SHARE: null, + }); + } + + return url; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/test/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/test/tsconfig.json new file mode 100644 index 000000000000..481ca5b4db93 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/test/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "composite": false, + "emitDeclarationOnly": false, + "noEmit": true, + "rootDir": "." + }, + "extends": "../../../tsconfig.json", + "include": [ + "**/*", + "../types/**/*", + "../../../types/**/*" + ], + "references": [ + { + "path": ".." + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/test/utils.test.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/test/utils.test.js new file mode 100644 index 000000000000..6745ecdeb336 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/test/utils.test.js @@ -0,0 +1,197 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + computeStackedYDomain, + computeYDomain, + getTimeOrNumberFormatter, + formatLabel, + tryNumify, +} from '../src/utils'; + +const DATA = [ + { + key: ['East Asia & Pacific'], + values: [ + { + x: -315619200000.0, + y: 1031863394.0, + }, + { + x: -283996800000.0, + y: 1034767718.0, + }, + ], + }, + { + key: ['South Asia'], + values: [ + { + x: -315619200000.0, + y: 572036107.0, + }, + { + x: -283996800000.0, + y: 584143236.0, + }, + ], + }, + { + key: ['Europe & Central Asia'], + values: [ + { + x: -315619200000.0, + y: 660881033.0, + }, + { + x: -283996800000.0, + y: 668526708.0, + }, + ], + }, +]; + +const DATA_WITH_DISABLED_SERIES = [ + { + disabled: true, + key: ['East Asia & Pacific'], + values: [ + { + x: -315619200000.0, + y: 1031863394.0, + }, + { + x: -283996800000.0, + y: 1034767718.0, + }, + ], + }, + { + disabled: true, + key: ['South Asia'], + values: [ + { + x: -315619200000.0, + y: 572036107.0, + }, + { + x: -283996800000.0, + y: 584143236.0, + }, + ], + }, + { + key: ['Europe & Central Asia'], + values: [ + { + x: -315619200000.0, + y: 660881033.0, + }, + { + x: -283996800000.0, + y: 668526708.0, + }, + ], + }, +]; + +describe('nvd3/utils', () => { + describe('getTimeOrNumberFormatter(format)', () => { + it('is a function', () => { + expect(typeof getTimeOrNumberFormatter).toBe('function'); + }); + it('returns a date formatter if format is smart_date', () => { + const time = new Date(Date.UTC(2018, 10, 21, 22, 11)); + expect(getTimeOrNumberFormatter('smart_date')(time)).toBe('10:11'); + }); + it('returns a number formatter otherwise', () => { + expect(getTimeOrNumberFormatter('.3s')(3000000)).toBe('3.00M'); + expect(getTimeOrNumberFormatter()(3000100)).toBe('3M'); + }); + }); + + describe('formatLabel()', () => { + const verboseMap = { + foo: 'Foo', + bar: 'Bar', + }; + + it('formats simple labels', () => { + expect(formatLabel('foo')).toBe('foo'); + expect(formatLabel(['foo'])).toBe('foo'); + expect(formatLabel(['foo', 'bar'])).toBe('foo, bar'); + }); + it('formats simple labels with lookups', () => { + expect(formatLabel('foo', verboseMap)).toBe('Foo'); + expect(formatLabel('baz', verboseMap)).toBe('baz'); + expect(formatLabel(['foo'], verboseMap)).toBe('Foo'); + expect(formatLabel(['foo', 'bar', 'baz'], verboseMap)).toBe( + 'Foo, Bar, baz', + ); + }); + it('deals with time shift properly', () => { + expect(formatLabel(['foo', '1 hour offset'], verboseMap)).toBe( + 'Foo, 1 hour offset', + ); + expect( + formatLabel(['foo', 'bar', 'baz', '2 hours offset'], verboseMap), + ).toBe('Foo, Bar, baz, 2 hours offset'); + }); + }); + + describe('tryNumify()', () => { + it('tryNumify works as expected', () => { + expect(tryNumify(5)).toBe(5); + expect(tryNumify('5')).toBe(5); + expect(tryNumify('5.1')).toBe(5.1); + expect(tryNumify('a string')).toBe('a string'); + }); + }); + + describe('computeYDomain()', () => { + it('works with invalid data', () => { + expect(computeYDomain('foo')).toEqual([0, 1]); + }); + + it('works with all series enabled', () => { + expect(computeYDomain(DATA)).toEqual([572036107.0, 1034767718.0]); + }); + + it('works with some series disabled', () => { + expect(computeYDomain(DATA_WITH_DISABLED_SERIES)).toEqual([ + 660881033.0, 668526708.0, + ]); + }); + }); + + describe('computeStackedYDomain()', () => { + it('works with invalid data', () => { + expect(computeStackedYDomain('foo')).toEqual([0, 1]); + }); + + it('works with all series enabled', () => { + expect(computeStackedYDomain(DATA)).toEqual([0, 2287437662.0]); + }); + + it('works with some series disabled', () => { + expect(computeStackedYDomain(DATA_WITH_DISABLED_SERIES)).toEqual([ + 0, 668526708.0, + ]); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/test/utils/isTruthy.test.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/test/utils/isTruthy.test.js new file mode 100644 index 000000000000..f1914ce80ce9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/test/utils/isTruthy.test.js @@ -0,0 +1,57 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import isTruthy from '../../src/utils/isTruthy'; + +describe('isTruthy', () => { + it('evals false-looking strings properly', () => { + expect(isTruthy('f')).toBe(false); + expect(isTruthy('false')).toBe(false); + expect(isTruthy('no')).toBe(false); + expect(isTruthy('n')).toBe(false); + expect(isTruthy('F')).toBe(false); + expect(isTruthy('False')).toBe(false); + expect(isTruthy('NO')).toBe(false); + expect(isTruthy('N')).toBe(false); + }); + it('evals true-looking strings properly', () => { + expect(isTruthy('t')).toBe(true); + expect(isTruthy('true')).toBe(true); + expect(isTruthy('yes')).toBe(true); + expect(isTruthy('y')).toBe(true); + expect(isTruthy('Y')).toBe(true); + expect(isTruthy('True')).toBe(true); + expect(isTruthy('Yes')).toBe(true); + expect(isTruthy('YES')).toBe(true); + }); + it('evals bools properly', () => { + expect(isTruthy(false)).toBe(false); + expect(isTruthy(true)).toBe(true); + }); + it('evals ints properly', () => { + expect(isTruthy(0)).toBe(false); + expect(isTruthy(1)).toBe(true); + }); + it('evals constants properly', () => { + expect(isTruthy(null)).toBe(false); + expect(isTruthy(undefined)).toBe(false); + }); + it('string auto is false', () => { + expect(isTruthy('false')).toBe(false); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/test/utils/tokenize.test.js b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/test/utils/tokenize.test.js new file mode 100644 index 000000000000..e9c46db9762b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/test/utils/tokenize.test.js @@ -0,0 +1,76 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + tokenizeToNumericArray, + tokenizeToStringArray, +} from '../../src/utils/tokenize'; + +describe('tokenizeToNumericArray', () => { + it('evals numeric strings properly', () => { + expect(tokenizeToNumericArray('1')).toStrictEqual([1]); + expect(tokenizeToNumericArray('1,2,3,4')).toStrictEqual([1, 2, 3, 4]); + expect(tokenizeToNumericArray('1.1,2.2,3.0,4')).toStrictEqual([ + 1.1, 2.2, 3, 4, + ]); + expect(tokenizeToNumericArray(' 1, 2, 3, 4 ')).toStrictEqual([ + 1, 2, 3, 4, + ]); + }); + + it('evals undefined to null', () => { + expect(tokenizeToNumericArray(undefined)).toBeNull(); + }); + + it('evals empty strings to null', () => { + expect(tokenizeToNumericArray('')).toBeNull(); + expect(tokenizeToNumericArray(' ')).toBeNull(); + }); + + it('throws error on incorrect string', () => { + expect(() => tokenizeToNumericArray('qwerty,1,2,3')).toThrow(Error); + }); +}); + +describe('tokenizeToStringArray', () => { + it('evals numeric strings properly', () => { + expect(tokenizeToStringArray('a')).toStrictEqual(['a']); + expect(tokenizeToStringArray('1.1 , 2.2, 3.0 ,4')).toStrictEqual([ + '1.1', + '2.2', + '3.0', + '4', + ]); + expect(tokenizeToStringArray('1.1,a,3, bc ,d')).toStrictEqual([ + '1.1', + 'a', + '3', + 'bc', + 'd', + ]); + }); + + it('evals undefined to null', () => { + expect(tokenizeToStringArray(undefined)).toBeNull(); + }); + + it('evals empty string to null', () => { + expect(tokenizeToStringArray('')).toBeNull(); + expect(tokenizeToStringArray(' ')).toBeNull(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/legacy-preset-chart-nvd3/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/CHANGELOG.md new file mode 100644 index 000000000000..dfa04c107fbf --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/CHANGELOG.md @@ -0,0 +1,47 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/plugin-chart-echarts + + + + + +## [0.17.63](https://github.com/apache-superset/superset-ui/compare/v0.17.62...v0.17.63) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/plugin-chart-echarts + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + + +### Bug Fixes + +* **plugin-chart-echarts:** enable animation to clear old nodes ([#1200](https://github.com/apache-superset/superset-ui/issues/1200)) ([1ee7f4e](https://github.com/apache-superset/superset-ui/commit/1ee7f4e36e1245917e61999f190a84425e82ea38)) +* **plugin-chart-echarts:** sanitize series from html tags ([#1126](https://github.com/apache-superset/superset-ui/issues/1126)) ([fcd6fde](https://github.com/apache-superset/superset-ui/commit/fcd6fde44bb45df3aab5ac5bb990504e7dbde324)) diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/README.md new file mode 100644 index 000000000000..89f6a8b98923 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/README.md @@ -0,0 +1,59 @@ + + +## @superset-ui/plugin-chart-echarts + +[![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-echarts.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-echarts) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui.svg?path=packages%2Fsuperset-ui-plugin-chart-echarts&style=flat-square)](https://david-dm.org/apache-superset/superset-ui?path=packages/superset-ui-plugin-chart-echarts) + +This plugin provides Echarts viz plugins for Superset: + +- Timeseries Chart (combined line, area bar with support for predictive analytics) +- Pie Chart + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import { + EchartsTimeseriesChartPlugin, + EchartsPieChartPlugin, +} from '@superset-ui/plugin-chart-echarts'; + +new EchartsTimeseriesChartPlugin().configure({ key: 'echarts-ts' }).register(); +new EchartsPieChartPlugin().configure({ key: 'echarts-pie' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui/?selectedKind=chart-plugins-plugin-chart-echarts) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/package.json new file mode 100644 index 000000000000..3b65580c8bfe --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/package.json @@ -0,0 +1,38 @@ +{ + "name": "@superset-ui/plugin-chart-echarts", + "version": "0.18.25", + "description": "Superset Chart - Echarts", + "sideEffects": false, + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "d3-array": "^1.2.0", + "echarts": "^5.2.2", + "lodash": "^4.17.15" + }, + "peerDependencies": { + "react": "^16.13.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/EchartsBoxPlot.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/EchartsBoxPlot.tsx new file mode 100644 index 000000000000..f13396d096bc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/EchartsBoxPlot.tsx @@ -0,0 +1,91 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { useCallback } from 'react'; +import Echart from '../components/Echart'; +import { EventHandlers } from '../types'; +import { BoxPlotChartTransformedProps } from './types'; + +export default function EchartsBoxPlot({ + height, + width, + echartOptions, + setDataMask, + labelMap, + groupby, + selectedValues, + formData, +}: BoxPlotChartTransformedProps) { + const handleChange = useCallback( + (values: string[]) => { + if (!formData.emitFilter) { + return; + } + + const groupbyValues = values.map(value => labelMap[value]); + + setDataMask({ + extraFormData: { + filters: + values.length === 0 + ? [] + : groupby.map((col, idx) => { + const val = groupbyValues.map(v => v[idx]); + if (val === null || val === undefined) + return { + col, + op: 'IS NULL', + }; + return { + col, + op: 'IN', + val: val as (string | number | boolean)[], + }; + }), + }, + filterState: { + value: groupbyValues.length ? groupbyValues : null, + selectedValues: values.length ? values : null, + }, + }); + }, + [groupby, labelMap, setDataMask, selectedValues], + ); + + const eventHandlers: EventHandlers = { + click: props => { + const { name } = props; + const values = Object.values(selectedValues); + if (values.includes(name)) { + handleChange(values.filter(v => v !== name)); + } else { + handleChange([name]); + } + }, + }; + + return ( + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/buildQuery.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/buildQuery.ts new file mode 100644 index 000000000000..14ce144d61ea --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/buildQuery.ts @@ -0,0 +1,41 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { buildQueryContext } from '@superset-ui/core'; +import { boxplotOperator } from '@superset-ui/chart-controls'; +import { BoxPlotQueryFormData } from './types'; + +export default function buildQuery(formData: BoxPlotQueryFormData) { + const { columns = [], granularity_sqla, groupby = [] } = formData; + return buildQueryContext(formData, baseQueryObject => { + const distributionColumns: string[] = []; + // For now default to using the temporal column as distribution column. + // In the future this control should be made mandatory. + if (!columns.length && granularity_sqla) { + distributionColumns.push(granularity_sqla); + } + return [ + { + ...baseQueryObject, + columns: [...distributionColumns, ...columns, ...groupby], + series_columns: groupby, + post_processing: [boxplotOperator(formData, baseQueryObject)], + }, + ]; + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts new file mode 100644 index 000000000000..a9456dce3852 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts @@ -0,0 +1,140 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { + D3_FORMAT_DOCS, + D3_FORMAT_OPTIONS, + D3_TIME_FORMAT_OPTIONS, + formatSelectOptions, + sections, + emitFilterControl, + ControlPanelConfig, +} from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['adhoc_filters'], + emitFilterControl, + ['groupby'], + ['columns'], // TODO: this should be migrated to `series_columns` + ['series_limit'], + ['series_limit_metric'], + [ + { + name: 'whiskerOptions', + config: { + clearable: false, + type: 'SelectControl', + freeForm: true, + label: t('Whisker/outlier options'), + default: 'Tukey', + description: t( + 'Determines how whiskers and outliers are calculated.', + ), + choices: formatSelectOptions([ + 'Tukey', + 'Min/max (no outliers)', + '2/98 percentiles', + '9/91 percentiles', + ]), + }, + }, + ], + ], + }, + sections.titleControls, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + [ + { + name: 'x_ticks_layout', + config: { + type: 'SelectControl', + label: t('X Tick Layout'), + choices: formatSelectOptions([ + 'auto', + 'flat', + '45°', + '90°', + 'staggered', + ]), + default: 'auto', + clearable: false, + renderTrigger: true, + description: t('The way the ticks are laid out on the X-axis'), + }, + }, + ], + [ + { + name: 'number_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Number format'), + renderTrigger: true, + default: 'SMART_NUMBER', + choices: D3_FORMAT_OPTIONS, + description: `${t( + 'D3 format syntax: https://github.com/d3/d3-format', + )} ${t('Only applies when "Label Type" is set to show values.')}`, + }, + }, + ], + [ + { + name: 'date_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Date format'), + renderTrigger: true, + choices: D3_TIME_FORMAT_OPTIONS, + default: 'smart_date', + description: D3_FORMAT_DOCS, + }, + }, + ], + ], + }, + ], + controlOverrides: { + groupby: { + label: t('Series'), + description: t('Categories to group by on the x-axis.'), + }, + columns: { + label: t('Distribute across'), + multi: true, + description: t( + 'Columns to calculate distribution across. Defaults to temporal column if left empty.', + ), + }, + }, +}; +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/images/BoxPlot.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/images/BoxPlot.jpg new file mode 100644 index 000000000000..9f1a181c4fc7 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/images/BoxPlot.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/images/thumbnail.png new file mode 100644 index 000000000000..4fa6ebce2160 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/index.ts new file mode 100644 index 000000000000..c97dffe5acf2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/index.ts @@ -0,0 +1,61 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin, Behavior } from '@superset-ui/core'; +import buildQuery from './buildQuery'; +import controlPanel from './controlPanel'; +import transformProps from './transformProps'; +import example from './images/BoxPlot.jpg'; +import thumbnail from './images/thumbnail.png'; +import { BoxPlotQueryFormData, EchartsBoxPlotChartProps } from './types'; + +export default class EchartsBoxPlotChartPlugin extends ChartPlugin< + BoxPlotQueryFormData, + EchartsBoxPlotChartProps +> { + /** + * The constructor is used to pass relevant metadata and callbacks that get + * registered in respective registries that are used throughout the library + * and application. A more thorough description of each property is given in + * the respective imported file. + * + * It is worth noting that `buildQuery` and is optional, and only needed for + * advanced visualizations that require either post processing operations + * (pivoting, rolling aggregations, sorting etc) or submitting multiple queries. + */ + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('./EchartsBoxPlot'), + metadata: new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('Distribution'), + credits: ['https://echarts.apache.org'], + description: t( + 'Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.', + ), + exampleGallery: [{ url: example }], + name: t('Box Plot'), + tags: [t('ECharts'), t('Range'), t('Statistical')], + thumbnail, + }), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/transformProps.ts new file mode 100644 index 000000000000..929d63b98711 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/transformProps.ts @@ -0,0 +1,288 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + CategoricalColorNamespace, + DataRecordValue, + getColumnLabel, + getMetricLabel, + getNumberFormatter, + getTimeFormatter, +} from '@superset-ui/core'; +import { EChartsCoreOption, BoxplotSeriesOption } from 'echarts'; +import { CallbackDataParams } from 'echarts/types/src/util/types'; +import { + BoxPlotChartTransformedProps, + BoxPlotQueryFormData, + EchartsBoxPlotChartProps, +} from './types'; +import { + extractGroupbyLabel, + getColtypesMapping, + sanitizeHtml, +} from '../utils/series'; +import { defaultGrid, defaultTooltip, defaultYAxis } from '../defaults'; +import { getPadding } from '../Timeseries/transformers'; +import { OpacityEnum } from '../constants'; + +export default function transformProps( + chartProps: EchartsBoxPlotChartProps, +): BoxPlotChartTransformedProps { + const { width, height, formData, hooks, filterState, queriesData } = + chartProps; + const { data = [] } = queriesData[0]; + const { setDataMask = () => {} } = hooks; + const coltypeMapping = getColtypesMapping(queriesData[0]); + const { + colorScheme, + groupby = [], + metrics = [], + numberFormat, + dateFormat, + xTicksLayout, + emitFilter, + legendOrientation = 'top', + xAxisTitle, + yAxisTitle, + xAxisTitleMargin, + yAxisTitleMargin, + yAxisTitlePosition, + } = formData as BoxPlotQueryFormData; + const colorFn = CategoricalColorNamespace.getScale(colorScheme as string); + const numberFormatter = getNumberFormatter(numberFormat); + const metricLabels = metrics.map(getMetricLabel); + const groupbyLabels = groupby.map(getColumnLabel); + + const transformedData = data + .map((datum: any) => { + const groupbyLabel = extractGroupbyLabel({ + datum, + groupby: groupbyLabels, + coltypeMapping, + timeFormatter: getTimeFormatter(dateFormat), + }); + return metricLabels.map(metric => { + const name = + metricLabels.length === 1 + ? groupbyLabel + : `${groupbyLabel}, ${metric}`; + const isFiltered = + filterState.selectedValues && + !filterState.selectedValues.includes(name); + return { + name, + value: [ + datum[`${metric}__min`], + datum[`${metric}__q1`], + datum[`${metric}__median`], + datum[`${metric}__q3`], + datum[`${metric}__max`], + datum[`${metric}__mean`], + datum[`${metric}__count`], + datum[`${metric}__outliers`], + ], + itemStyle: { + color: colorFn(groupbyLabel), + opacity: isFiltered ? OpacityEnum.SemiTransparent : 0.6, + borderColor: colorFn(groupbyLabel), + }, + }; + }); + }) + .flatMap(row => row); + const outlierData = data + .map(datum => + metricLabels.map(metric => { + const groupbyLabel = extractGroupbyLabel({ + datum, + groupby: groupbyLabels, + coltypeMapping, + timeFormatter: getTimeFormatter(dateFormat), + }); + const name = + metricLabels.length === 1 + ? groupbyLabel + : `${groupbyLabel}, ${metric}`; + // Outlier data is a nested array of numbers (uncommon, therefore no need to add to DataRecordValue) + const outlierDatum = (datum[`${metric}__outliers`] || []) as number[]; + const isFiltered = + filterState.selectedValues && + !filterState.selectedValues.includes(name); + return { + name: 'outlier', + type: 'scatter', + data: outlierDatum.map(val => [name, val]), + tooltip: { + formatter: (param: { data: [string, number] }) => { + const [outlierName, stats] = param.data; + const headline = groupbyLabels.length + ? `

${sanitizeHtml(outlierName)}

` + : ''; + return `${headline}${numberFormatter(stats)}`; + }, + }, + itemStyle: { + color: colorFn(groupbyLabel), + opacity: isFiltered + ? OpacityEnum.SemiTransparent + : OpacityEnum.NonTransparent, + }, + }; + }), + ) + .flat(2); + + const labelMap = data.reduce( + (acc: Record, datum) => { + const label = extractGroupbyLabel({ + datum, + groupby: groupbyLabels, + coltypeMapping, + timeFormatter: getTimeFormatter(dateFormat), + }); + return { + ...acc, + [label]: groupbyLabels.map(col => datum[col]), + }; + }, + {}, + ); + + const selectedValues = (filterState.selectedValues || []).reduce( + (acc: Record, selectedValue: string) => { + const index = transformedData.findIndex( + ({ name }) => name === selectedValue, + ); + return { + ...acc, + [index]: selectedValue, + }; + }, + {}, + ); + + let axisLabel; + if (xTicksLayout === '45°') axisLabel = { rotate: -45 }; + else if (xTicksLayout === '90°') axisLabel = { rotate: -90 }; + else if (xTicksLayout === 'flat') axisLabel = { rotate: 0 }; + else if (xTicksLayout === 'staggered') axisLabel = { rotate: -45 }; + else axisLabel = { show: true }; + + const series: BoxplotSeriesOption[] = [ + { + name: 'boxplot', + type: 'boxplot', + data: transformedData, + tooltip: { + formatter: (param: CallbackDataParams) => { + // @ts-ignore + const { + value, + name, + }: { + value: [ + number, + number, + number, + number, + number, + number, + number, + number, + number[], + ]; + name: string; + } = param; + const headline = name + ? `

${sanitizeHtml(name)}

` + : ''; + const stats = [ + `Max: ${numberFormatter(value[5])}`, + `3rd Quartile: ${numberFormatter(value[4])}`, + `Mean: ${numberFormatter(value[6])}`, + `Median: ${numberFormatter(value[3])}`, + `1st Quartile: ${numberFormatter(value[2])}`, + `Min: ${numberFormatter(value[1])}`, + `# Observations: ${numberFormatter(value[7])}`, + ]; + if (value[8].length > 0) { + stats.push(`# Outliers: ${numberFormatter(value[8].length)}`); + } + return headline + stats.join('
'); + }, + }, + }, + // @ts-ignore + ...outlierData, + ]; + const addYAxisTitleOffset = !!yAxisTitle; + const addXAxisTitleOffset = !!xAxisTitle; + const chartPadding = getPadding( + true, + legendOrientation, + addYAxisTitleOffset, + false, + null, + addXAxisTitleOffset, + yAxisTitlePosition, + yAxisTitleMargin, + xAxisTitleMargin, + ); + const echartOptions: EChartsCoreOption = { + grid: { + ...defaultGrid, + ...chartPadding, + }, + xAxis: { + type: 'category', + data: transformedData.map(row => row.name), + axisLabel, + name: xAxisTitle, + nameGap: xAxisTitleMargin, + nameLocation: 'middle', + }, + yAxis: { + ...defaultYAxis, + type: 'value', + axisLabel: { formatter: numberFormatter }, + name: yAxisTitle, + nameGap: yAxisTitleMargin, + nameLocation: yAxisTitlePosition === 'Left' ? 'middle' : 'end', + }, + tooltip: { + ...defaultTooltip, + trigger: 'item', + axisPointer: { + type: 'shadow', + }, + }, + series, + }; + + return { + formData, + width, + height, + echartOptions, + setDataMask, + emitFilter, + labelMap, + groupby, + selectedValues, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/types.ts new file mode 100644 index 000000000000..73072cb03bd9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/BoxPlot/types.ts @@ -0,0 +1,71 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + ChartDataResponseResult, + ChartProps, + DataRecordValue, + QueryFormColumn, + QueryFormData, + SetDataMaskHook, +} from '@superset-ui/core'; +import { EChartsCoreOption } from 'echarts'; +import { EchartsTitleFormData, DEFAULT_TITLE_FORM_DATA } from '../types'; + +export type BoxPlotQueryFormData = QueryFormData & { + numberFormat?: string; + whiskerOptions?: BoxPlotFormDataWhiskerOptions; + xTickLayout?: BoxPlotFormXTickLayout; + emitFilter: boolean; +} & EchartsTitleFormData; + +export type BoxPlotFormDataWhiskerOptions = + | 'Tukey' + | 'Min/max (no outliers)' + | '2/98 percentiles' + | '9/91 percentiles'; + +export type BoxPlotFormXTickLayout = + | '45°' + | '90°' + | 'auto' + | 'flat' + | 'staggered'; + +// @ts-ignore +export const DEFAULT_FORM_DATA: BoxPlotQueryFormData = { + emitFilter: false, + ...DEFAULT_TITLE_FORM_DATA, +}; + +export interface EchartsBoxPlotChartProps extends ChartProps { + formData: BoxPlotQueryFormData; + queriesData: ChartDataResponseResult[]; +} + +export interface BoxPlotChartTransformedProps { + formData: BoxPlotQueryFormData; + height: number; + width: number; + echartOptions: EChartsCoreOption; + emitFilter: boolean; + setDataMask: SetDataMaskHook; + labelMap: Record; + groupby: QueryFormColumn[]; + selectedValues: Record; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/EchartsFunnel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/EchartsFunnel.tsx new file mode 100644 index 000000000000..7b157dc8e0f2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/EchartsFunnel.tsx @@ -0,0 +1,91 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { useCallback } from 'react'; +import { FunnelChartTransformedProps } from './types'; +import Echart from '../components/Echart'; +import { EventHandlers } from '../types'; + +export default function EchartsFunnel({ + height, + width, + echartOptions, + setDataMask, + labelMap, + groupby, + selectedValues, + formData, +}: FunnelChartTransformedProps) { + const handleChange = useCallback( + (values: string[]) => { + if (!formData.emitFilter) { + return; + } + + const groupbyValues = values.map(value => labelMap[value]); + + setDataMask({ + extraFormData: { + filters: + values.length === 0 + ? [] + : groupby.map((col, idx) => { + const val = groupbyValues.map(v => v[idx]); + if (val === null || val === undefined) + return { + col, + op: 'IS NULL', + }; + return { + col, + op: 'IN', + val: val as (string | number | boolean)[], + }; + }), + }, + filterState: { + value: groupbyValues.length ? groupbyValues : null, + selectedValues: values.length ? values : null, + }, + }); + }, + [groupby, labelMap, setDataMask, selectedValues], + ); + + const eventHandlers: EventHandlers = { + click: props => { + const { name } = props; + const values = Object.values(selectedValues); + if (values.includes(name)) { + handleChange(values.filter(v => v !== name)); + } else { + handleChange([name]); + } + }, + }; + + return ( + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/buildQuery.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/buildQuery.ts new file mode 100644 index 000000000000..8b47fb5e725c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/buildQuery.ts @@ -0,0 +1,29 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { buildQueryContext, QueryFormData } from '@superset-ui/core'; + +export default function buildQuery(formData: QueryFormData) { + const { metric, sort_by_metric } = formData; + return buildQueryContext(formData, baseQueryObject => [ + { + ...baseQueryObject, + ...(sort_by_metric && { orderby: [[metric, false]] }), + }, + ]); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx new file mode 100644 index 000000000000..e1950bf9a5b3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx @@ -0,0 +1,148 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + D3_FORMAT_OPTIONS, + sections, + sharedControls, + ControlStateMapping, + emitFilterControl, +} from '@superset-ui/chart-controls'; +import { DEFAULT_FORM_DATA, EchartsFunnelLabelTypeType } from './types'; +import { legendSection } from '../controls'; + +const { labelType, numberFormat, showLabels } = DEFAULT_FORM_DATA; + +const funnelLegendSection = [...legendSection]; +funnelLegendSection.splice(2, 1); + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['groupby'], + ['metric'], + ['adhoc_filters'], + emitFilterControl, + [ + { + name: 'row_limit', + config: { + ...sharedControls.row_limit, + default: 10, + }, + }, + ], + [ + { + name: 'sort_by_metric', + config: { + default: true, + type: 'CheckboxControl', + label: t('Sort by metric'), + description: t( + 'Whether to sort results by the selected metric in descending order.', + ), + }, + }, + ], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + ...funnelLegendSection, + // eslint-disable-next-line react/jsx-key + [

{t('Labels')}

], + [ + { + name: 'label_type', + config: { + type: 'SelectControl', + label: t('Label Type'), + default: labelType, + renderTrigger: true, + choices: [ + [EchartsFunnelLabelTypeType.Key, 'Category Name'], + [EchartsFunnelLabelTypeType.Value, 'Value'], + [EchartsFunnelLabelTypeType.Percent, 'Percentage'], + [EchartsFunnelLabelTypeType.KeyValue, 'Category and Value'], + [ + EchartsFunnelLabelTypeType.KeyPercent, + 'Category and Percentage', + ], + [ + EchartsFunnelLabelTypeType.KeyValuePercent, + 'Category, Value and Percentage', + ], + ], + description: t('What should be shown on the label?'), + }, + }, + ], + [ + { + name: 'number_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Number format'), + renderTrigger: true, + default: numberFormat, + choices: D3_FORMAT_OPTIONS, + description: `${t( + 'D3 format syntax: https://github.com/d3/d3-format', + )} ${t('Only applies when "Label Type" is set to show values.')}`, + }, + }, + ], + [ + { + name: 'show_labels', + config: { + type: 'CheckboxControl', + label: t('Show Labels'), + renderTrigger: true, + default: showLabels, + description: t('Whether to display the labels.'), + }, + }, + ], + ], + }, + ], + onInit(state: ControlStateMapping) { + return { + ...state, + row_limit: { + ...state.row_limit, + value: state.row_limit.default, + }, + }; + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/images/thumbnail.png new file mode 100644 index 000000000000..6f594d447fb5 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/index.ts new file mode 100644 index 000000000000..a483262419bb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/index.ts @@ -0,0 +1,66 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { Behavior, ChartMetadata, ChartPlugin, t } from '@superset-ui/core'; +import buildQuery from './buildQuery'; +import controlPanel from './controlPanel'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import { EchartsFunnelChartProps, EchartsFunnelFormData } from './types'; + +export default class EchartsFunnelChartPlugin extends ChartPlugin< + EchartsFunnelFormData, + EchartsFunnelChartProps +> { + /** + * The constructor is used to pass relevant metadata and callbacks that get + * registered in respective registries that are used throughout the library + * and application. A more thorough description of each property is given in + * the respective imported file. + * + * It is worth noting that `buildQuery` and is optional, and only needed for + * advanced visualizations that require either post processing operations + * (pivoting, rolling aggregations, sorting etc) or submitting multiple queries. + */ + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('./EchartsFunnel'), + metadata: new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('KPI'), + credits: ['https://echarts.apache.org'], + description: t( + 'Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.', + ), + name: t('Funnel Chart'), + tags: [ + t('Business'), + t('ECharts'), + t('Progressive'), + t('Report'), + t('Sequential'), + t('Trend'), + ], + thumbnail, + }), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/transformProps.ts new file mode 100644 index 000000000000..3f3d84816d28 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/transformProps.ts @@ -0,0 +1,238 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + CategoricalColorNamespace, + DataRecordValue, + DataRecord, + getMetricLabel, + getNumberFormatter, + NumberFormats, + NumberFormatter, + getColumnLabel, +} from '@superset-ui/core'; +import { CallbackDataParams } from 'echarts/types/src/util/types'; +import { EChartsCoreOption, FunnelSeriesOption } from 'echarts'; +import { + DEFAULT_FORM_DATA as DEFAULT_FUNNEL_FORM_DATA, + EchartsFunnelChartProps, + EchartsFunnelFormData, + EchartsFunnelLabelTypeType, + FunnelChartTransformedProps, +} from './types'; +import { DEFAULT_LEGEND_FORM_DATA } from '../types'; +import { + extractGroupbyLabel, + getChartPadding, + getLegendProps, + sanitizeHtml, +} from '../utils/series'; +import { defaultGrid, defaultTooltip } from '../defaults'; +import { OpacityEnum } from '../constants'; + +const percentFormatter = getNumberFormatter(NumberFormats.PERCENT_2_POINT); + +export function formatFunnelLabel({ + params, + labelType, + numberFormatter, + sanitizeName = false, +}: { + params: Pick; + labelType: EchartsFunnelLabelTypeType; + numberFormatter: NumberFormatter; + sanitizeName?: boolean; +}): string { + const { name: rawName = '', value, percent } = params; + const name = sanitizeName ? sanitizeHtml(rawName) : rawName; + const formattedValue = numberFormatter(value as number); + const formattedPercent = percentFormatter((percent as number) / 100); + switch (labelType) { + case EchartsFunnelLabelTypeType.Key: + return name; + case EchartsFunnelLabelTypeType.Value: + return formattedValue; + case EchartsFunnelLabelTypeType.Percent: + return formattedPercent; + case EchartsFunnelLabelTypeType.KeyValue: + return `${name}: ${formattedValue}`; + case EchartsFunnelLabelTypeType.KeyValuePercent: + return `${name}: ${formattedValue} (${formattedPercent})`; + case EchartsFunnelLabelTypeType.KeyPercent: + return `${name}: ${formattedPercent}`; + default: + return name; + } +} + +export default function transformProps( + chartProps: EchartsFunnelChartProps, +): FunnelChartTransformedProps { + const { formData, height, hooks, filterState, queriesData, width } = + chartProps; + const data: DataRecord[] = queriesData[0].data || []; + + const { + colorScheme, + groupby, + orient, + sort, + gap, + labelLine, + labelType, + legendMargin, + legendOrientation, + legendType, + metric = '', + numberFormat, + showLabels, + showLegend, + emitFilter, + }: EchartsFunnelFormData = { + ...DEFAULT_LEGEND_FORM_DATA, + ...DEFAULT_FUNNEL_FORM_DATA, + ...formData, + }; + const metricLabel = getMetricLabel(metric); + const groupbyLabels = groupby.map(getColumnLabel); + const keys = data.map(datum => + extractGroupbyLabel({ datum, groupby: groupbyLabels, coltypeMapping: {} }), + ); + const labelMap = data.reduce( + (acc: Record, datum) => { + const label = extractGroupbyLabel({ + datum, + groupby: groupbyLabels, + coltypeMapping: {}, + }); + return { + ...acc, + [label]: groupbyLabels.map(col => datum[col]), + }; + }, + {}, + ); + + const { setDataMask = () => {} } = hooks; + + const colorFn = CategoricalColorNamespace.getScale(colorScheme as string); + const numberFormatter = getNumberFormatter(numberFormat); + + const transformedData: FunnelSeriesOption[] = data.map(datum => { + const name = extractGroupbyLabel({ + datum, + groupby: groupbyLabels, + coltypeMapping: {}, + }); + const isFiltered = + filterState.selectedValues && !filterState.selectedValues.includes(name); + return { + value: datum[metricLabel], + name, + itemStyle: { + color: colorFn(name), + opacity: isFiltered + ? OpacityEnum.SemiTransparent + : OpacityEnum.NonTransparent, + }, + }; + }); + + const selectedValues = (filterState.selectedValues || []).reduce( + (acc: Record, selectedValue: string) => { + const index = transformedData.findIndex( + ({ name }) => name === selectedValue, + ); + return { + ...acc, + [index]: selectedValue, + }; + }, + {}, + ); + + const formatter = (params: CallbackDataParams) => + formatFunnelLabel({ params, numberFormatter, labelType }); + + const defaultLabel = { + formatter, + show: showLabels, + color: '#000000', + }; + + const series: FunnelSeriesOption[] = [ + { + type: 'funnel', + ...getChartPadding(showLegend, legendOrientation, legendMargin), + animation: true, + minSize: '0%', + maxSize: '100%', + sort, + orient, + gap, + funnelAlign: 'center', + labelLine: { show: !!labelLine }, + label: { + ...defaultLabel, + position: labelLine ? 'outer' : 'inner', + textBorderColor: 'transparent', + }, + emphasis: { + label: { + show: true, + fontWeight: 'bold', + }, + }, + // @ts-ignore + data: transformedData, + }, + ]; + + const echartOptions: EChartsCoreOption = { + grid: { + ...defaultGrid, + }, + tooltip: { + ...defaultTooltip, + trigger: 'item', + formatter: (params: any) => + formatFunnelLabel({ + params, + numberFormatter, + labelType: EchartsFunnelLabelTypeType.KeyValuePercent, + }), + }, + legend: { + ...getLegendProps(legendType, legendOrientation, showLegend), + data: keys, + }, + series, + }; + + return { + formData, + width, + height, + echartOptions, + setDataMask, + emitFilter, + labelMap, + groupby, + selectedValues, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/types.ts new file mode 100644 index 000000000000..39eb087ce6bf --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Funnel/types.ts @@ -0,0 +1,90 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { EChartsCoreOption } from 'echarts'; +import { + ChartDataResponseResult, + ChartProps, + DataRecordValue, + QueryFormColumn, + QueryFormData, + SetDataMaskHook, +} from '@superset-ui/core'; +import { + DEFAULT_LEGEND_FORM_DATA, + EchartsLegendFormData, + LegendOrientation, + LegendType, +} from '../types'; + +export type EchartsFunnelFormData = QueryFormData & + EchartsLegendFormData & { + colorScheme?: string; + groupby: QueryFormData[]; + labelLine: boolean; + labelType: EchartsFunnelLabelTypeType; + metric?: string; + showLabels: boolean; + numberFormat: string; + gap: number; + sort: 'descending' | 'ascending' | 'none' | undefined; + orient: 'vertical' | 'horizontal' | undefined; + emitFilter: boolean; + }; + +export enum EchartsFunnelLabelTypeType { + Key, + Value, + Percent, + KeyValue, + KeyPercent, + KeyValuePercent, +} + +export interface EchartsFunnelChartProps extends ChartProps { + formData: EchartsFunnelFormData; + queriesData: ChartDataResponseResult[]; +} + +// @ts-ignore +export const DEFAULT_FORM_DATA: EchartsFunnelFormData = { + ...DEFAULT_LEGEND_FORM_DATA, + groupby: [], + labelLine: false, + labelType: EchartsFunnelLabelTypeType.Key, + legendOrientation: LegendOrientation.Top, + legendType: LegendType.Scroll, + numberFormat: 'SMART_NUMBER', + showLabels: true, + sort: 'descending', + orient: 'vertical', + gap: 0, + emitFilter: false, +}; + +export interface FunnelChartTransformedProps { + formData: EchartsFunnelFormData; + height: number; + width: number; + echartOptions: EChartsCoreOption; + emitFilter: boolean; + setDataMask: SetDataMaskHook; + labelMap: Record; + groupby: QueryFormColumn[]; + selectedValues: Record; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/EchartsGauge.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/EchartsGauge.tsx new file mode 100644 index 000000000000..731aadded839 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/EchartsGauge.tsx @@ -0,0 +1,91 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { useCallback } from 'react'; +import { GaugeChartTransformedProps } from './types'; +import Echart from '../components/Echart'; +import { EventHandlers } from '../types'; + +export default function EchartsGauge({ + height, + width, + echartOptions, + setDataMask, + labelMap, + groupby, + selectedValues, + formData: { emitFilter }, +}: GaugeChartTransformedProps) { + const handleChange = useCallback( + (values: string[]) => { + if (!emitFilter) { + return; + } + + const groupbyValues = values.map(value => labelMap[value]); + + setDataMask({ + extraFormData: { + filters: + values.length === 0 + ? [] + : groupby.map((col, idx) => { + const val = groupbyValues.map(v => v[idx]); + if (val === null || val === undefined) + return { + col, + op: 'IS NULL', + }; + return { + col, + op: 'IN', + val: val as (string | number | boolean)[], + }; + }), + }, + filterState: { + value: groupbyValues.length ? groupbyValues : null, + selectedValues: values.length ? values : null, + }, + }); + }, + [groupby, labelMap, setDataMask, selectedValues], + ); + + const eventHandlers: EventHandlers = { + click: props => { + const { name } = props; + const values = Object.values(selectedValues); + if (values.includes(name)) { + handleChange(values.filter(v => v !== name)); + } else { + handleChange([name]); + } + }, + }; + + return ( + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/buildQuery.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/buildQuery.ts new file mode 100644 index 000000000000..7d070932f6ed --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/buildQuery.ts @@ -0,0 +1,30 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { buildQueryContext, QueryFormData } from '@superset-ui/core'; + +export default function buildQuery(formData: QueryFormData) { + const { metric, sort_by_metric } = formData; + return buildQueryContext(formData, baseQueryObject => [ + { + ...baseQueryObject, + groupby: formData.groupby || [], + ...(sort_by_metric && { orderby: [[metric, false]] }), + }, + ]); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/constants.ts new file mode 100644 index 000000000000..677f7c565b6e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/constants.ts @@ -0,0 +1,81 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { GaugeSeriesOption } from 'echarts'; + +export const DEFAULT_GAUGE_SERIES_OPTION: GaugeSeriesOption = { + splitLine: { + lineStyle: { + color: '#63677A', + }, + }, + axisLine: { + lineStyle: { + color: [[1, '#E6EBF8']], + }, + }, + axisLabel: { + color: '#464646', + }, + axisTick: { + lineStyle: { + width: 2, + color: '#63677A', + }, + }, + detail: { + color: 'auto', + }, +}; + +export const INTERVAL_GAUGE_SERIES_OPTION: GaugeSeriesOption = { + splitLine: { + lineStyle: { + color: 'auto', + }, + }, + axisTick: { + lineStyle: { + color: 'auto', + }, + }, + axisLabel: { + color: 'auto', + }, + pointer: { + itemStyle: { + color: 'auto', + }, + }, +}; + +export const OFFSETS = { + ticksFromLine: 10, + titleFromCenter: 20, +}; + +export const FONT_SIZE_MULTIPLIERS = { + axisTickLength: 0.25, + axisLabelDistance: 1.5, + axisLabelLength: 0.35, + splitLineLength: 1, + splitLineWidth: 0.25, + titleOffsetFromTitle: 2, + detailOffsetFromTitle: 0.9, + detailFontSize: 1.2, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx new file mode 100644 index 000000000000..81af7d3963e4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx @@ -0,0 +1,314 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t, validateNonEmpty, validateInteger } from '@superset-ui/core'; +import { + sharedControls, + ControlPanelConfig, + D3_FORMAT_OPTIONS, + sections, + emitFilterControl, +} from '@superset-ui/chart-controls'; +import { DEFAULT_FORM_DATA } from './types'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + [ + { + name: 'groupby', + config: { + ...sharedControls.groupby, + label: t('Group by'), + description: t('Columns to group by'), + }, + }, + ], + ['metric'], + ['adhoc_filters'], + emitFilterControl, + [ + { + name: 'row_limit', + config: { + ...sharedControls.row_limit, + choices: [...Array(10).keys()].map(n => n + 1), + default: DEFAULT_FORM_DATA.rowLimit, + }, + }, + ], + [ + { + name: 'sort_by_metric', + config: { + type: 'CheckboxControl', + label: t('Sort by metric'), + description: t( + 'Whether to sort results by the selected metric in descending order.', + ), + }, + }, + ], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + [

{t('General')}

], + [ + { + name: 'min_val', + config: { + type: 'TextControl', + isInt: true, + default: String(DEFAULT_FORM_DATA.minVal), + validators: [validateNonEmpty, validateInteger], + renderTrigger: true, + label: t('Min'), + description: t('Minimum value on the gauge axis'), + }, + }, + { + name: 'max_val', + config: { + type: 'TextControl', + isInt: true, + default: DEFAULT_FORM_DATA.maxVal, + validators: [validateNonEmpty, validateInteger], + renderTrigger: true, + label: t('Max'), + description: t('Maximum value on the gauge axis'), + }, + }, + ], + [ + { + name: 'start_angle', + config: { + type: 'TextControl', + label: t('Start angle'), + description: t('Angle at which to start progress axis'), + renderTrigger: true, + default: DEFAULT_FORM_DATA.startAngle, + }, + }, + { + name: 'end_angle', + config: { + type: 'TextControl', + label: t('End angle'), + description: t('Angle at which to end progress axis'), + renderTrigger: true, + default: DEFAULT_FORM_DATA.endAngle, + }, + }, + ], + ['color_scheme'], + [ + { + name: 'font_size', + config: { + type: 'SliderControl', + label: t('Font size'), + description: t( + 'Font size for axis labels, detail value and other text elements', + ), + renderTrigger: true, + min: 10, + max: 20, + default: DEFAULT_FORM_DATA.fontSize, + }, + }, + ], + [ + { + name: 'number_format', + config: { + type: 'SelectControl', + label: t('Number format'), + description: t( + 'D3 format syntax: https://github.com/d3/d3-format', + ), + freeForm: true, + renderTrigger: true, + default: DEFAULT_FORM_DATA.numberFormat, + choices: D3_FORMAT_OPTIONS, + }, + }, + ], + [ + { + name: 'value_formatter', + config: { + type: 'TextControl', + label: t('Value format'), + description: t( + 'Additional text to add before or after the value, e.g. unit', + ), + renderTrigger: true, + default: DEFAULT_FORM_DATA.valueFormatter, + }, + }, + ], + [ + { + name: 'show_pointer', + config: { + type: 'CheckboxControl', + label: t('Show pointer'), + description: t('Whether to show the pointer'), + renderTrigger: true, + default: DEFAULT_FORM_DATA.showPointer, + }, + }, + ], + [ + { + name: 'animation', + config: { + type: 'CheckboxControl', + label: t('Animation'), + description: t( + 'Whether to animate the progress and the value or just display them', + ), + renderTrigger: true, + default: DEFAULT_FORM_DATA.animation, + }, + }, + ], + [

{t('Axis')}

], + [ + { + name: 'show_axis_tick', + config: { + type: 'CheckboxControl', + label: t('Show axis line ticks'), + description: t('Whether to show minor ticks on the axis'), + renderTrigger: true, + default: DEFAULT_FORM_DATA.showAxisTick, + }, + }, + ], + [ + { + name: 'show_split_line', + config: { + type: 'CheckboxControl', + label: t('Show split lines'), + description: t('Whether to show the split lines on the axis'), + renderTrigger: true, + default: DEFAULT_FORM_DATA.showSplitLine, + }, + }, + ], + [ + { + name: 'split_number', + config: { + type: 'SliderControl', + label: t('Split number'), + description: t('Number of split segments on the axis'), + renderTrigger: true, + min: 3, + max: 30, + default: DEFAULT_FORM_DATA.splitNumber, + }, + }, + ], + [

{t('Progress')}

], + [ + { + name: 'show_progress', + config: { + type: 'CheckboxControl', + label: t('Show progress'), + description: t('Whether to show the progress of gauge chart'), + renderTrigger: true, + default: DEFAULT_FORM_DATA.showProgress, + }, + }, + ], + [ + { + name: 'overlap', + config: { + type: 'CheckboxControl', + label: t('Overlap'), + description: t( + 'Whether the progress bar overlaps when there are multiple groups of data', + ), + renderTrigger: true, + default: DEFAULT_FORM_DATA.overlap, + }, + }, + ], + [ + { + name: 'round_cap', + config: { + type: 'CheckboxControl', + label: t('Round cap'), + description: t( + 'Style the ends of the progress bar with a round cap', + ), + renderTrigger: true, + default: DEFAULT_FORM_DATA.roundCap, + }, + }, + ], + [

{t('Intervals')}

], + [ + { + name: 'intervals', + config: { + type: 'TextControl', + label: t('Interval bounds'), + description: t( + 'Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.', + ), + renderTrigger: true, + default: DEFAULT_FORM_DATA.intervals, + }, + }, + ], + [ + { + name: 'interval_color_indices', + config: { + type: 'TextControl', + label: t('Interval colors'), + description: t( + 'Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.', + ), + renderTrigger: true, + default: DEFAULT_FORM_DATA.intervalColorIndices, + }, + }, + ], + ], + }, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/images/thumbnail.png new file mode 100644 index 000000000000..2ad56001daad Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/index.ts new file mode 100644 index 000000000000..16a8b6a6cca5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/index.ts @@ -0,0 +1,55 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin, Behavior } from '@superset-ui/core'; +import controlPanel from './controlPanel'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import buildQuery from './buildQuery'; +import { EchartsGaugeChartProps, EchartsGaugeFormData } from './types'; + +export default class EchartsGaugeChartPlugin extends ChartPlugin< + EchartsGaugeFormData, + EchartsGaugeChartProps +> { + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('./EchartsGauge'), + metadata: new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('KPI'), + credits: ['https://echarts.apache.org'], + description: t( + 'Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.', + ), + name: t('Gauge Chart'), + tags: [ + t('Multi-Variables'), + t('Business'), + t('Comparison'), + t('ECharts'), + t('Report'), + ], + thumbnail, + }), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/transformProps.ts new file mode 100644 index 000000000000..beecb475ace7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/transformProps.ts @@ -0,0 +1,299 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + QueryFormMetric, + CategoricalColorNamespace, + CategoricalColorScale, + DataRecord, + getNumberFormatter, + getMetricLabel, + DataRecordValue, + getColumnLabel, +} from '@superset-ui/core'; +import { EChartsCoreOption, GaugeSeriesOption } from 'echarts'; +import { GaugeDataItemOption } from 'echarts/types/src/chart/gauge/GaugeSeries'; +import range from 'lodash/range'; +import { parseNumbersList } from '../utils/controls'; +import { + DEFAULT_FORM_DATA as DEFAULT_GAUGE_FORM_DATA, + EchartsGaugeFormData, + AxisTickLineStyle, + GaugeChartTransformedProps, + EchartsGaugeChartProps, +} from './types'; +import { + DEFAULT_GAUGE_SERIES_OPTION, + INTERVAL_GAUGE_SERIES_OPTION, + OFFSETS, + FONT_SIZE_MULTIPLIERS, +} from './constants'; +import { OpacityEnum } from '../constants'; + +const setIntervalBoundsAndColors = ( + intervals: string, + intervalColorIndices: string, + colorFn: CategoricalColorScale, + normalizer: number, +): Array<[number, string]> => { + let intervalBoundsNonNormalized; + let intervalColorIndicesArray; + try { + intervalBoundsNonNormalized = parseNumbersList(intervals, ','); + intervalColorIndicesArray = parseNumbersList(intervalColorIndices, ','); + } catch (error) { + intervalBoundsNonNormalized = [] as number[]; + intervalColorIndicesArray = [] as number[]; + } + + const intervalBounds = intervalBoundsNonNormalized.map( + bound => bound / normalizer, + ); + const intervalColors = intervalColorIndicesArray.map( + ind => colorFn.colors[(ind - 1) % colorFn.colors.length], + ); + + return intervalBounds.map((val, idx) => { + const color = intervalColors[idx]; + return [val, color || colorFn.colors[idx]]; + }); +}; + +const calculateAxisLineWidth = ( + data: DataRecord[], + fontSize: number, + overlap: boolean, +): number => (overlap ? fontSize : data.length * fontSize); + +export default function transformProps( + chartProps: EchartsGaugeChartProps, +): GaugeChartTransformedProps { + const { width, height, formData, queriesData, hooks, filterState } = + chartProps; + const { + groupby, + metric, + minVal, + maxVal, + colorScheme, + fontSize, + numberFormat, + animation, + showProgress, + overlap, + roundCap, + showAxisTick, + showSplitLine, + splitNumber, + startAngle, + endAngle, + showPointer, + intervals, + intervalColorIndices, + valueFormatter, + emitFilter, + }: EchartsGaugeFormData = { ...DEFAULT_GAUGE_FORM_DATA, ...formData }; + const data = (queriesData[0]?.data || []) as DataRecord[]; + const numberFormatter = getNumberFormatter(numberFormat); + const colorFn = CategoricalColorNamespace.getScale(colorScheme as string); + const normalizer = maxVal; + const axisLineWidth = calculateAxisLineWidth(data, fontSize, overlap); + const axisLabels = range(minVal, maxVal, (maxVal - minVal) / splitNumber); + const axisLabelLength = Math.max( + ...axisLabels.map(label => numberFormatter(label).length).concat([1]), + ); + const groupbyLabels = groupby.map(getColumnLabel); + const formatValue = (value: number) => + valueFormatter.replace('{value}', numberFormatter(value)); + const axisTickLength = FONT_SIZE_MULTIPLIERS.axisTickLength * fontSize; + const splitLineLength = FONT_SIZE_MULTIPLIERS.splitLineLength * fontSize; + const titleOffsetFromTitle = + FONT_SIZE_MULTIPLIERS.titleOffsetFromTitle * fontSize; + const detailOffsetFromTitle = + FONT_SIZE_MULTIPLIERS.detailOffsetFromTitle * fontSize; + const intervalBoundsAndColors = setIntervalBoundsAndColors( + intervals, + intervalColorIndices, + colorFn, + normalizer, + ); + const columnsLabelMap = new Map(); + + const transformedData: GaugeDataItemOption[] = data.map( + (data_point, index) => { + const name = groupbyLabels + .map(column => `${column}: ${data_point[column]}`) + .join(', '); + columnsLabelMap.set( + name, + groupbyLabels.map(col => data_point[col]), + ); + let item: GaugeDataItemOption = { + value: data_point[getMetricLabel(metric as QueryFormMetric)] as number, + name, + itemStyle: { + color: colorFn(index), + }, + title: { + offsetCenter: [ + '0%', + `${index * titleOffsetFromTitle + OFFSETS.titleFromCenter}%`, + ], + fontSize, + }, + detail: { + offsetCenter: [ + '0%', + `${ + index * titleOffsetFromTitle + + OFFSETS.titleFromCenter + + detailOffsetFromTitle + }%`, + ], + fontSize: FONT_SIZE_MULTIPLIERS.detailFontSize * fontSize, + }, + }; + if ( + filterState.selectedValues && + !filterState.selectedValues.includes(name) + ) { + item = { + ...item, + itemStyle: { + color: colorFn(index), + opacity: OpacityEnum.SemiTransparent, + }, + detail: { + show: false, + }, + title: { + show: false, + }, + }; + } + return item; + }, + ); + + const { setDataMask = () => {} } = hooks; + + const progress = { + show: showProgress, + overlap, + roundCap, + width: fontSize, + }; + const splitLine = { + show: showSplitLine, + distance: -axisLineWidth - splitLineLength - OFFSETS.ticksFromLine, + length: splitLineLength, + lineStyle: { + width: FONT_SIZE_MULTIPLIERS.splitLineWidth * fontSize, + color: DEFAULT_GAUGE_SERIES_OPTION.splitLine?.lineStyle?.color, + }, + }; + const axisLine = { + roundCap, + lineStyle: { + width: axisLineWidth, + color: DEFAULT_GAUGE_SERIES_OPTION.axisLine?.lineStyle?.color, + }, + }; + const axisLabel = { + distance: + axisLineWidth - + FONT_SIZE_MULTIPLIERS.axisLabelDistance * + fontSize * + FONT_SIZE_MULTIPLIERS.axisLabelLength * + axisLabelLength - + (showSplitLine ? splitLineLength : 0) - + (showAxisTick ? axisTickLength : 0) - + OFFSETS.ticksFromLine, + fontSize, + formatter: numberFormatter, + color: DEFAULT_GAUGE_SERIES_OPTION.axisLabel?.color, + }; + const axisTick = { + show: showAxisTick, + distance: -axisLineWidth - axisTickLength - OFFSETS.ticksFromLine, + length: axisTickLength, + lineStyle: DEFAULT_GAUGE_SERIES_OPTION.axisTick + ?.lineStyle as AxisTickLineStyle, + }; + const detail = { + valueAnimation: animation, + formatter: (value: number) => formatValue(value), + color: DEFAULT_GAUGE_SERIES_OPTION.detail?.color, + }; + let pointer; + + if (intervalBoundsAndColors.length) { + splitLine.lineStyle.color = + INTERVAL_GAUGE_SERIES_OPTION.splitLine?.lineStyle?.color; + axisTick.lineStyle.color = INTERVAL_GAUGE_SERIES_OPTION?.axisTick?.lineStyle + ?.color as string; + axisLabel.color = INTERVAL_GAUGE_SERIES_OPTION.axisLabel?.color; + axisLine.lineStyle.color = intervalBoundsAndColors; + pointer = { + show: showPointer, + showAbove: false, + itemStyle: INTERVAL_GAUGE_SERIES_OPTION.pointer?.itemStyle, + }; + } else { + pointer = { + show: showPointer, + showAbove: false, + }; + } + + const series: GaugeSeriesOption[] = [ + { + type: 'gauge', + startAngle, + endAngle, + min: minVal, + max: maxVal, + progress, + animation, + axisLine: axisLine as GaugeSeriesOption['axisLine'], + splitLine, + splitNumber, + axisLabel, + axisTick, + pointer, + detail, + data: transformedData, + }, + ]; + + const echartOptions: EChartsCoreOption = { + series, + }; + + return { + formData, + width, + height, + echartOptions, + setDataMask, + emitFilter, + labelMap: Object.fromEntries(columnsLabelMap), + groupby, + selectedValues: filterState.selectedValues || [], + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/types.ts new file mode 100644 index 000000000000..32044d4ef648 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Gauge/types.ts @@ -0,0 +1,87 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + ChartDataResponseResult, + ChartProps, + QueryFormColumn, + QueryFormData, +} from '@superset-ui/core'; +import { DEFAULT_LEGEND_FORM_DATA, EChartTransformedProps } from '../types'; + +export type AxisTickLineStyle = { + width: number; + color: string; +}; + +export type EchartsGaugeFormData = QueryFormData & { + colorScheme?: string; + groupby: QueryFormColumn[]; + metric?: object; + rowLimit: number; + minVal: number; + maxVal: number; + fontSize: number; + numberFormat: string; + animation: boolean; + showProgress: boolean; + overlap: boolean; + roundCap: boolean; + showAxisTick: boolean; + showSplitLine: boolean; + splitNumber: number; + startAngle: number; + endAngle: number; + showPointer: boolean; + intervals: string; + intervalColorIndices: string; + valueFormatter: string; + emitFilter: boolean; +}; + +export const DEFAULT_FORM_DATA: Partial = { + ...DEFAULT_LEGEND_FORM_DATA, + groupby: [], + rowLimit: 10, + minVal: 0, + maxVal: 100, + fontSize: 15, + numberFormat: 'SMART_NUMBER', + animation: true, + showProgress: true, + overlap: true, + roundCap: false, + showAxisTick: false, + showSplitLine: false, + splitNumber: 10, + startAngle: 225, + endAngle: -45, + showPointer: true, + intervals: '', + intervalColorIndices: '', + valueFormatter: '{value}', + emitFilter: false, +}; + +export interface EchartsGaugeChartProps extends ChartProps { + formData: EchartsGaugeFormData; + queriesData: ChartDataResponseResult[]; +} + +export type GaugeChartTransformedProps = + EChartTransformedProps; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/EchartsGraph.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/EchartsGraph.tsx new file mode 100644 index 000000000000..9b42c6e55357 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/EchartsGraph.tsx @@ -0,0 +1,29 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { EchartsProps } from '../types'; +import Echart from '../components/Echart'; + +export default function EchartsGraph({ + height, + width, + echartOptions, +}: EchartsProps) { + return ; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/buildQuery.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/buildQuery.ts new file mode 100644 index 000000000000..c3cbe6c1438f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/buildQuery.ts @@ -0,0 +1,30 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { buildQueryContext, QueryFormData } from '@superset-ui/core'; + +export default function buildQuery(formData: QueryFormData) { + return buildQueryContext(formData, { + queryFields: { + source: 'columns', + target: 'columns', + source_category: 'columns', + target_category: 'columns', + }, + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/constants.ts new file mode 100644 index 000000000000..f7dea8013b35 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/constants.ts @@ -0,0 +1,57 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { GraphSeriesOption } from 'echarts'; + +export const DEFAULT_GRAPH_SERIES_OPTION: GraphSeriesOption = { + zoom: 0.7, + circular: { rotateLabel: true }, + force: { + initLayout: 'circular', + layoutAnimation: true, + }, + label: { + show: true, + position: 'right', + distance: 5, + rotate: 0, + offset: [0, 0], + fontStyle: 'normal', + fontWeight: 'normal', + fontFamily: 'sans-serif', + fontSize: 12, + padding: [0, 0, 0, 0], + overflow: 'truncate', + formatter: '{b}', + }, + emphasis: { + focus: 'adjacency', + }, + animation: true, + animationDuration: 500, + animationEasing: 'cubicOut', + lineStyle: { color: 'source', curveness: 0.1 }, + select: { + itemStyle: { borderWidth: 3, opacity: 1 }, + label: { fontWeight: 'bolder' }, + }, + // Ref: https://echarts.apache.org/en/option.html#series-graph.data.tooltip.formatter + // - b: data name + // - c: data value + tooltip: { formatter: '{b}: {c}' }, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx new file mode 100644 index 000000000000..cdefae16cab5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx @@ -0,0 +1,325 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + sections, + sharedControls, +} from '@superset-ui/chart-controls'; +import { DEFAULT_FORM_DATA } from './types'; +import { legendSection } from '../controls'; + +const requiredEntity = { + ...sharedControls.entity, + clearable: false, +}; + +const optionalEntity = { + ...sharedControls.entity, + clearable: true, + validators: [], +}; + +const controlPanel: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + [ + { + name: 'source', + config: { + ...requiredEntity, + label: t('Source'), + description: t('Name of the source nodes'), + }, + }, + ], + [ + { + name: 'target', + config: { + ...requiredEntity, + label: t('Target'), + description: t('Name of the target nodes'), + }, + }, + ], + ['metric'], + [ + { + name: 'source_category', + config: { + ...optionalEntity, + label: t('Source category'), + description: t( + 'The category of source nodes used to assign colors. ' + + 'If a node is associated with more than one category, only the first will be used.', + ), + }, + }, + ], + [ + { + name: 'target_category', + config: { + ...optionalEntity, + label: t('Target category'), + description: t('Category of target nodes'), + }, + }, + ], + ['adhoc_filters'], + ['row_limit'], + ], + }, + { + label: t('Chart options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + ...legendSection, + [

{t('Layout')}

], + [ + { + name: 'layout', + config: { + type: 'RadioButtonControl', + renderTrigger: true, + label: t('Graph layout'), + default: DEFAULT_FORM_DATA.layout, + options: [ + ['force', t('Force')], + ['circular', t('Circular')], + ], + description: t('Layout type of graph'), + }, + }, + ], + [ + { + name: 'edgeSymbol', + config: { + type: 'SelectControl', + renderTrigger: true, + label: t('Edge symbols'), + description: t('Symbol of two ends of edge line'), + default: DEFAULT_FORM_DATA.edgeSymbol, + choices: [ + ['none,none', t('None -> None')], + ['none,arrow', t('None -> Arrow')], + ['circle,arrow', t('Circle -> Arrow')], + ['circle,circle', t('Circle -> Circle')], + ], + }, + }, + ], + [ + { + name: 'draggable', + config: { + type: 'CheckboxControl', + label: t('Enable node dragging'), + renderTrigger: true, + default: DEFAULT_FORM_DATA.draggable, + description: t( + 'Whether to enable node dragging in force layout mode.', + ), + visibility({ form_data: { layout } }) { + return ( + layout === 'force' || + (!layout && DEFAULT_FORM_DATA.layout === 'force') + ); + }, + }, + }, + ], + [ + { + name: 'roam', + config: { + type: 'SelectControl', + label: t('Enable graph roaming'), + renderTrigger: true, + default: DEFAULT_FORM_DATA.roam, + choices: [ + [false, t('Disabled')], + ['scale', t('Scale only')], + ['move', t('Move only')], + [true, t('Scale and Move')], + ], + description: t( + 'Whether to enable changing graph position and scaling.', + ), + }, + }, + ], + [ + { + name: 'selectedMode', + config: { + type: 'SelectControl', + renderTrigger: true, + label: t('Node select mode'), + default: DEFAULT_FORM_DATA.selectedMode, + choices: [ + [false, t('Disabled')], + ['single', t('Single')], + ['multiple', t('Multiple')], + ], + description: t('Allow node selections'), + }, + }, + ], + [ + { + name: 'showSymbolThreshold', + config: { + type: 'TextControl', + label: t('Label threshold'), + renderTrigger: true, + isInt: true, + default: DEFAULT_FORM_DATA.showSymbolThreshold, + description: t( + 'Minimum value for label to be displayed on graph.', + ), + }, + }, + ], + [ + { + name: 'baseNodeSize', + config: { + type: 'TextControl', + label: t('Node size'), + renderTrigger: true, + isFloat: true, + default: DEFAULT_FORM_DATA.baseNodeSize, + description: t( + 'Median node size, the largest node will be 4 times larger than the smallest', + ), + }, + }, + { + name: 'baseEdgeWidth', + config: { + type: 'TextControl', + label: t('Edge width'), + renderTrigger: true, + isFloat: true, + default: DEFAULT_FORM_DATA.baseEdgeWidth, + description: t( + 'Median edge width, the thickest edge will be 4 times thicker than the thinnest.', + ), + }, + }, + ], + [ + { + name: 'edgeLength', + config: { + type: 'SliderControl', + label: t('Edge length'), + renderTrigger: true, + min: 100, + max: 1000, + step: 50, + default: DEFAULT_FORM_DATA.edgeLength, + description: t('Edge length between nodes'), + visibility({ form_data: { layout } }) { + return ( + layout === 'force' || + (!layout && DEFAULT_FORM_DATA.layout === 'force') + ); + }, + }, + }, + ], + [ + { + name: 'gravity', + config: { + type: 'SliderControl', + label: t('Gravity'), + renderTrigger: true, + min: 0.1, + max: 1, + step: 0.1, + default: DEFAULT_FORM_DATA.gravity, + description: t('Strength to pull the graph toward center'), + visibility({ form_data: { layout } }) { + return ( + layout === 'force' || + (!layout && DEFAULT_FORM_DATA.layout === 'force') + ); + }, + }, + }, + ], + [ + { + name: 'repulsion', + config: { + type: 'SliderControl', + label: t('Repulsion'), + renderTrigger: true, + min: 100, + max: 3000, + step: 50, + default: DEFAULT_FORM_DATA.repulsion, + description: t('Repulsion strength between nodes'), + visibility({ form_data: { layout } }) { + return ( + layout === 'force' || + (!layout && DEFAULT_FORM_DATA.layout === 'force') + ); + }, + }, + }, + ], + [ + { + name: 'friction', + config: { + type: 'SliderControl', + label: t('Friction'), + renderTrigger: true, + min: 0.1, + max: 1, + step: 0.1, + default: DEFAULT_FORM_DATA.friction, + description: t('Friction between nodes'), + visibility({ form_data: { layout } }) { + return ( + layout === 'force' || + (!layout && DEFAULT_FORM_DATA.layout === 'force') + ); + }, + }, + }, + ], + ], + }, + ], +}; + +export default controlPanel; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/images/thumbnail.png new file mode 100644 index 000000000000..757b3e0d76f5 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/index.ts new file mode 100644 index 000000000000..b354b61a2fac --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/index.ts @@ -0,0 +1,53 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import controlPanel from './controlPanel'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import buildQuery from './buildQuery'; + +export default class EchartsGraphChartPlugin extends ChartPlugin { + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('./EchartsGraph'), + metadata: new ChartMetadata({ + category: t('Flow'), + credits: ['https://echarts.apache.org'], + description: t( + 'Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.', + ), + name: t('Graph Chart'), + tags: [ + t('Aesthetic'), + t('Circular'), + t('Comparison'), + t('Directional'), + t('ECharts'), + t('Relational'), + t('Structural'), + t('Transformable'), + ], + thumbnail, + }), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/transformProps.ts new file mode 100644 index 000000000000..ea9c6f152497 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/transformProps.ts @@ -0,0 +1,316 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + CategoricalColorNamespace, + ChartProps, + getMetricLabel, + DataRecord, + DataRecordValue, +} from '@superset-ui/core'; +import { EChartsCoreOption, GraphSeriesOption } from 'echarts'; +import { extent as d3Extent } from 'd3-array'; +import { GraphEdgeItemOption } from 'echarts/types/src/chart/graph/GraphSeries'; +import { + EchartsGraphFormData, + EChartGraphNode, + DEFAULT_FORM_DATA as DEFAULT_GRAPH_FORM_DATA, + EdgeSymbol, +} from './types'; +import { DEFAULT_GRAPH_SERIES_OPTION } from './constants'; +import { EchartsProps } from '../types'; +import { getChartPadding, getLegendProps, sanitizeHtml } from '../utils/series'; + +type EdgeWithStyles = GraphEdgeItemOption & { + lineStyle: Exclude; + emphasis: Exclude; + select: Exclude; +}; + +function verifyEdgeSymbol(symbol: string): EdgeSymbol { + if (symbol === 'none' || symbol === 'circle' || symbol === 'arrow') { + return symbol; + } + return 'none'; +} + +function parseEdgeSymbol(symbols?: string | null): [EdgeSymbol, EdgeSymbol] { + const [start, end] = (symbols || '').split(','); + return [verifyEdgeSymbol(start), verifyEdgeSymbol(end)]; +} + +/** + * Emphasized edge width with a min and max. + */ +function getEmphasizedEdgeWidth(width: number) { + return Math.max(5, Math.min(width * 2, 20)); +} + +/** + * Normalize node size, edge width, and apply label visibility thresholds. + */ +function normalizeStyles( + nodes: EChartGraphNode[], + links: EdgeWithStyles[], + { + baseNodeSize, + baseEdgeWidth, + showSymbolThreshold, + }: { + baseNodeSize: number; + baseEdgeWidth: number; + showSymbolThreshold?: number; + }, +) { + const minNodeSize = baseNodeSize * 0.5; + const maxNodeSize = baseNodeSize * 2; + const minEdgeWidth = baseEdgeWidth * 0.5; + const maxEdgeWidth = baseEdgeWidth * 2; + const [nodeMinValue, nodeMaxValue] = d3Extent(nodes, x => x.value) as [ + number, + number, + ]; + + const nodeSpread = nodeMaxValue - nodeMinValue; + nodes.forEach(node => { + // eslint-disable-next-line no-param-reassign + node.symbolSize = + (((node.value - nodeMinValue) / nodeSpread) * maxNodeSize || 0) + + minNodeSize; + // eslint-disable-next-line no-param-reassign + node.label = { + ...node.label, + show: showSymbolThreshold ? node.value > showSymbolThreshold : true, + }; + }); + + const [linkMinValue, linkMaxValue] = d3Extent(links, x => x.value) as [ + number, + number, + ]; + const linkSpread = linkMaxValue - linkMinValue; + links.forEach(link => { + const lineWidth = + ((link.value! - linkMinValue) / linkSpread) * maxEdgeWidth || + 0 + minEdgeWidth; + // eslint-disable-next-line no-param-reassign + link.lineStyle.width = lineWidth; + // eslint-disable-next-line no-param-reassign + link.emphasis.lineStyle = { + ...link.emphasis.lineStyle, + width: getEmphasizedEdgeWidth(lineWidth), + }; + // eslint-disable-next-line no-param-reassign + link.select.lineStyle = { + ...link.select.lineStyle, + width: getEmphasizedEdgeWidth(lineWidth * 0.8), + opacity: 1, + }; + }); +} + +function getKeyByValue( + object: { [name: string]: number }, + value: number, +): string { + return Object.keys(object).find(key => object[key] === value) as string; +} + +function edgeFormatter( + sourceIndex: string, + targetIndex: string, + value: number, + nodes: { [name: string]: number }, +): string { + const source = Number(sourceIndex); + const target = Number(targetIndex); + return `${sanitizeHtml(getKeyByValue(nodes, source))} > ${sanitizeHtml( + getKeyByValue(nodes, target), + )} : ${value}`; +} + +function getCategoryName(columnName: string, name?: DataRecordValue) { + if (name === false) { + return `${columnName}: false`; + } + if (name === true) { + return `${columnName}: true`; + } + if (name == null) { + return 'N/A'; + } + return String(name); +} + +export default function transformProps(chartProps: ChartProps): EchartsProps { + const { width, height, formData, queriesData } = chartProps; + const data: DataRecord[] = queriesData[0].data || []; + + const { + source, + target, + sourceCategory, + targetCategory, + colorScheme, + metric = '', + layout, + roam, + draggable, + selectedMode, + showSymbolThreshold, + edgeLength, + gravity, + repulsion, + friction, + legendMargin, + legendOrientation, + legendType, + showLegend, + baseEdgeWidth, + baseNodeSize, + edgeSymbol, + }: EchartsGraphFormData = { ...DEFAULT_GRAPH_FORM_DATA, ...formData }; + + const metricLabel = getMetricLabel(metric); + const colorFn = CategoricalColorNamespace.getScale(colorScheme as string); + const nodes: { [name: string]: number } = {}; + const categories: Set = new Set(); + const echartNodes: EChartGraphNode[] = []; + const echartLinks: EdgeWithStyles[] = []; + + /** + * Get the node id of an existing node, + * or create a new node if it doesn't exist. + */ + function getOrCreateNode(name: string, category?: string) { + if (!(name in nodes)) { + nodes[name] = echartNodes.length; + echartNodes.push({ + id: String(nodes[name]), + name, + value: 0, + category, + select: DEFAULT_GRAPH_SERIES_OPTION.select, + tooltip: DEFAULT_GRAPH_SERIES_OPTION.tooltip, + }); + } + const node = echartNodes[nodes[name]]; + if (category) { + categories.add(category); + // category may be empty when one of `sourceCategory` + // or `targetCategory` is not set. + if (!node.category) { + node.category = category; + } + } + return node; + } + + data.forEach(link => { + const value = link[metricLabel] as number; + if (!value) { + return; + } + const sourceName = link[source] as string; + const targetName = link[target] as string; + const sourceCategoryName = sourceCategory + ? getCategoryName(sourceCategory, link[sourceCategory]) + : undefined; + const targetCategoryName = targetCategory + ? getCategoryName(targetCategory, link[targetCategory]) + : undefined; + const sourceNode = getOrCreateNode(sourceName, sourceCategoryName); + const targetNode = getOrCreateNode(targetName, targetCategoryName); + + sourceNode.value += value; + targetNode.value += value; + + echartLinks.push({ + source: sourceNode.id, + target: targetNode.id, + value, + lineStyle: {}, + emphasis: {}, + select: {}, + }); + }); + + normalizeStyles(echartNodes, echartLinks, { + showSymbolThreshold, + baseEdgeWidth, + baseNodeSize, + }); + + const categoryList = [...categories]; + + const series: GraphSeriesOption[] = [ + { + zoom: DEFAULT_GRAPH_SERIES_OPTION.zoom, + type: 'graph', + categories: categoryList.map(c => ({ + name: c, + itemStyle: { color: colorFn(c) }, + })), + layout, + force: { + ...DEFAULT_GRAPH_SERIES_OPTION.force, + edgeLength, + gravity, + repulsion, + friction, + }, + circular: DEFAULT_GRAPH_SERIES_OPTION.circular, + data: echartNodes, + links: echartLinks, + roam, + draggable, + edgeSymbol: parseEdgeSymbol(edgeSymbol), + edgeSymbolSize: baseEdgeWidth * 2, + selectedMode, + ...getChartPadding(showLegend, legendOrientation, legendMargin), + animation: DEFAULT_GRAPH_SERIES_OPTION.animation, + label: DEFAULT_GRAPH_SERIES_OPTION.label, + lineStyle: DEFAULT_GRAPH_SERIES_OPTION.lineStyle, + emphasis: DEFAULT_GRAPH_SERIES_OPTION.emphasis, + }, + ]; + + const echartOptions: EChartsCoreOption = { + animationDuration: DEFAULT_GRAPH_SERIES_OPTION.animationDuration, + animationEasing: DEFAULT_GRAPH_SERIES_OPTION.animationEasing, + tooltip: { + formatter: (params: any): string => + edgeFormatter( + params.data.source, + params.data.target, + params.value, + nodes, + ), + }, + legend: { + ...getLegendProps(legendType, legendOrientation, showLegend), + data: categoryList, + }, + series, + }; + return { + width, + height, + echartOptions, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/types.ts new file mode 100644 index 000000000000..76be9bb1a4e2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Graph/types.ts @@ -0,0 +1,78 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { GraphNodeItemOption } from 'echarts/types/src/chart/graph/GraphSeries'; +import { SeriesTooltipOption } from 'echarts/types/src/util/types'; +import { + DEFAULT_LEGEND_FORM_DATA, + EchartsLegendFormData, + LegendOrientation, + LegendType, +} from '../types'; + +export type EdgeSymbol = 'none' | 'circle' | 'arrow'; + +export type EchartsGraphFormData = EchartsLegendFormData & { + source: string; + target: string; + sourceCategory?: string; + targetCategory?: string; + colorScheme?: string; + metric?: string; + layout?: 'none' | 'circular' | 'force'; + roam: boolean | 'scale' | 'move'; + draggable: boolean; + selectedMode?: boolean | 'multiple' | 'single'; + showSymbolThreshold: number; + repulsion: number; + gravity: number; + baseNodeSize: number; + baseEdgeWidth: number; + edgeLength: number; + edgeSymbol: string; + friction: number; +}; + +export type EChartGraphNode = Omit & { + value: number; + tooltip?: Pick; +}; + +export const DEFAULT_FORM_DATA: EchartsGraphFormData = { + ...DEFAULT_LEGEND_FORM_DATA, + source: '', + target: '', + layout: 'force', + roam: true, + draggable: false, + selectedMode: 'single', + showSymbolThreshold: 0, + repulsion: 1000, + gravity: 0.3, + edgeSymbol: 'none,arrow', + edgeLength: 400, + baseEdgeWidth: 3, + baseNodeSize: 20, + friction: 0.2, + legendOrientation: LegendOrientation.Top, + legendType: LegendType.Scroll, +}; + +export type tooltipFormatParams = { + data: { [name: string]: string }; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/EchartsMixedTimeseries.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/EchartsMixedTimeseries.tsx new file mode 100644 index 000000000000..d8d4191b43da --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/EchartsMixedTimeseries.tsx @@ -0,0 +1,119 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { useCallback } from 'react'; +import { EchartsMixedTimeseriesChartTransformedProps } from './types'; +import Echart from '../components/Echart'; +import { EventHandlers } from '../types'; +import { currentSeries } from '../utils/series'; + +export default function EchartsMixedTimeseries({ + height, + width, + echartOptions, + setDataMask, + labelMap, + labelMapB, + groupby, + groupbyB, + selectedValues, + formData, + seriesBreakdown, +}: EchartsMixedTimeseriesChartTransformedProps) { + const isFirstQuery = useCallback( + (seriesIndex: number) => seriesIndex < seriesBreakdown, + [seriesBreakdown], + ); + + const handleChange = useCallback( + (values: string[], seriesIndex: number) => { + const emitFilter = isFirstQuery(seriesIndex) + ? formData.emitFilter + : formData.emitFilterB; + if (!emitFilter) { + return; + } + + const currentGroupBy = isFirstQuery(seriesIndex) ? groupby : groupbyB; + const currentLabelMap = isFirstQuery(seriesIndex) ? labelMap : labelMapB; + const groupbyValues = values + .map(value => currentLabelMap[value]) + .filter(value => !!value); + + setDataMask({ + extraFormData: { + // @ts-ignore + filters: + values.length === 0 + ? [] + : [ + ...currentGroupBy.map((col, idx) => { + const val = groupbyValues.map(v => v[idx]); + if (val === null || val === undefined) + return { + col, + op: 'IS NULL', + }; + return { + col, + op: 'IN', + val: val as (string | number | boolean)[], + }; + }), + ], + }, + filterState: { + value: !groupbyValues.length ? null : groupbyValues, + selectedValues: values.length ? values : null, + }, + }); + }, + [groupby, groupbyB, labelMap, labelMapB, setDataMask, selectedValues], + ); + + const eventHandlers: EventHandlers = { + click: props => { + const { seriesName, seriesIndex } = props; + const values: string[] = Object.values(selectedValues); + if (values.includes(seriesName)) { + handleChange( + values.filter(v => v !== seriesName), + seriesIndex, + ); + } else { + handleChange([seriesName], seriesIndex); + } + }, + mouseout: () => { + currentSeries.name = ''; + }, + mouseover: params => { + currentSeries.name = params.seriesName; + }, + }; + + return ( + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/buildQuery.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/buildQuery.ts new file mode 100644 index 000000000000..bc6fb6a729d4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/buildQuery.ts @@ -0,0 +1,89 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + buildQueryContext, + QueryFormData, + QueryObject, + normalizeOrderBy, +} from '@superset-ui/core'; +import { pivotOperator } from '@superset-ui/chart-controls'; + +export default function buildQuery(formData: QueryFormData) { + const { + adhoc_filters, + adhoc_filters_b, + groupby, + groupby_b, + limit, + limit_b, + timeseries_limit_metric, + timeseries_limit_metric_b, + metrics, + metrics_b, + order_desc, + order_desc_b, + ...baseFormData + } = formData; + baseFormData.is_timeseries = true; + const formData1 = { + ...baseFormData, + adhoc_filters, + columns: groupby, + limit, + timeseries_limit_metric, + metrics, + order_desc, + }; + const formData2 = { + ...baseFormData, + adhoc_filters: adhoc_filters_b, + columns: groupby_b, + limit: limit_b, + timeseries_limit_metric: timeseries_limit_metric_b, + metrics: metrics_b, + order_desc: order_desc_b, + }; + + const queryContextA = buildQueryContext(formData1, baseQueryObject => { + const queryObjectA = { + ...baseQueryObject, + is_timeseries: true, + post_processing: [ + pivotOperator(formData1, { ...baseQueryObject, is_timeseries: true }), + ], + } as QueryObject; + return [normalizeOrderBy(queryObjectA)]; + }); + + const queryContextB = buildQueryContext(formData2, baseQueryObject => { + const queryObjectB = { + ...baseQueryObject, + is_timeseries: true, + post_processing: [ + pivotOperator(formData2, { ...baseQueryObject, is_timeseries: true }), + ], + } as QueryObject; + return [normalizeOrderBy(queryObjectB)]; + }); + + return { + ...queryContextA, + queries: [...queryContextA.queries, ...queryContextB.queries], + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx new file mode 100644 index 000000000000..67a7a21f9685 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx @@ -0,0 +1,425 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + ControlPanelSectionConfig, + ControlSetRow, + emitFilterControl, + sections, + sharedControls, +} from '@superset-ui/chart-controls'; + +import { DEFAULT_FORM_DATA } from './types'; +import { EchartsTimeseriesSeriesType } from '../Timeseries/types'; +import { legendSection, richTooltipSection } from '../controls'; + +const { + area, + annotationLayers, + logAxis, + markerEnabled, + markerSize, + minorSplitLine, + opacity, + orderDesc, + rowLimit, + seriesType, + showValues, + stack, + truncateYAxis, + yAxisBounds, + zoomable, + xAxisLabelRotation, + yAxisIndex, +} = DEFAULT_FORM_DATA; + +function createQuerySection( + label: string, + controlSuffix: string, +): ControlPanelSectionConfig { + return { + label, + expanded: true, + controlSetRows: [ + [ + { + name: `metrics${controlSuffix}`, + config: sharedControls.metrics, + }, + ], + [ + { + name: `groupby${controlSuffix}`, + config: sharedControls.groupby, + }, + ], + [ + { + name: `adhoc_filters${controlSuffix}`, + config: sharedControls.adhoc_filters, + }, + ], + emitFilterControl.length > 0 + ? [ + { + ...emitFilterControl[0], + name: `emit_filter${controlSuffix}`, + }, + ] + : [], + [ + { + name: `limit${controlSuffix}`, + config: sharedControls.limit, + }, + ], + [ + { + name: `timeseries_limit_metric${controlSuffix}`, + config: sharedControls.timeseries_limit_metric, + }, + ], + [ + { + name: `order_desc${controlSuffix}`, + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: orderDesc, + description: t('Whether to sort descending or ascending'), + }, + }, + ], + [ + { + name: `row_limit${controlSuffix}`, + config: { + ...sharedControls.row_limit, + default: rowLimit, + }, + }, + ], + ], + }; +} + +function createCustomizeSection( + label: string, + controlSuffix: string, +): ControlSetRow[] { + return [ + [

{label}

], + [ + { + name: `seriesType${controlSuffix}`, + config: { + type: 'SelectControl', + label: t('Series type'), + renderTrigger: true, + default: seriesType, + choices: [ + [EchartsTimeseriesSeriesType.Line, 'Line'], + [EchartsTimeseriesSeriesType.Scatter, 'Scatter'], + [EchartsTimeseriesSeriesType.Smooth, 'Smooth Line'], + [EchartsTimeseriesSeriesType.Bar, 'Bar'], + [EchartsTimeseriesSeriesType.Start, 'Step - start'], + [EchartsTimeseriesSeriesType.Middle, 'Step - middle'], + [EchartsTimeseriesSeriesType.End, 'Step - end'], + ], + description: t('Series chart type (line, bar etc)'), + }, + }, + ], + [ + { + name: `stack${controlSuffix}`, + config: { + type: 'CheckboxControl', + label: t('Stack series'), + renderTrigger: true, + default: stack, + description: t('Stack series on top of each other'), + }, + }, + ], + [ + { + name: `area${controlSuffix}`, + config: { + type: 'CheckboxControl', + label: t('Area chart'), + renderTrigger: true, + default: area, + description: t( + 'Draw area under curves. Only applicable for line types.', + ), + }, + }, + ], + [ + { + name: `show_value${controlSuffix}`, + config: { + type: 'CheckboxControl', + label: t('Show Values'), + renderTrigger: true, + default: showValues, + description: t( + 'Whether to display the numerical values within the cells', + ), + }, + }, + ], + [ + { + name: `opacity${controlSuffix}`, + config: { + type: 'SliderControl', + label: t('Opacity'), + renderTrigger: true, + min: 0, + max: 1, + step: 0.1, + default: opacity, + description: t('Opacity of area chart.'), + }, + }, + ], + [ + { + name: `markerEnabled${controlSuffix}`, + config: { + type: 'CheckboxControl', + label: t('Marker'), + renderTrigger: true, + default: markerEnabled, + description: t( + 'Draw a marker on data points. Only applicable for line types.', + ), + }, + }, + ], + [ + { + name: `markerSize${controlSuffix}`, + config: { + type: 'SliderControl', + label: t('Marker size'), + renderTrigger: true, + min: 0, + max: 100, + default: markerSize, + description: t( + 'Size of marker. Also applies to forecast observations.', + ), + }, + }, + ], + [ + { + name: `yAxisIndex${controlSuffix}`, + config: { + type: 'SelectControl', + label: t('Y Axis'), + choices: [ + [0, t('Primary')], + [1, t('Secondary')], + ], + default: yAxisIndex, + renderTrigger: true, + description: t('Primary or secondary y-axis'), + }, + }, + ], + ]; +} + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + createQuerySection(t('Query A'), ''), + createQuerySection(t('Query B'), '_b'), + { + label: t('Annotations and Layers'), + expanded: false, + controlSetRows: [ + [ + { + name: 'annotation_layers', + config: { + type: 'AnnotationLayerControl', + label: '', + default: annotationLayers, + description: t('Annotation Layers'), + }, + }, + ], + ], + }, + sections.titleControls, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + ...createCustomizeSection(t('Query A'), ''), + ...createCustomizeSection(t('Query B'), 'B'), + [ + { + name: 'zoomable', + config: { + type: 'CheckboxControl', + label: t('Data Zoom'), + default: zoomable, + renderTrigger: true, + description: t('Enable data zooming controls'), + }, + }, + ], + ...legendSection, + [

{t('X Axis')}

], + ['x_axis_time_format'], + [ + { + name: 'xAxisLabelRotation', + config: { + type: 'SelectControl', + freeForm: true, + clearable: false, + label: t('Rotate x axis label'), + choices: [ + [0, '0°'], + [45, '45°'], + ], + default: xAxisLabelRotation, + renderTrigger: true, + description: t( + 'Input field supports custom rotation. e.g. 30 for 30°', + ), + }, + }, + ], + ...richTooltipSection, + // eslint-disable-next-line react/jsx-key + [

{t('Y Axis')}

], + [ + { + name: 'minorSplitLine', + config: { + type: 'CheckboxControl', + label: t('Minor Split Line'), + renderTrigger: true, + default: minorSplitLine, + description: t('Draw split lines for minor y-axis ticks'), + }, + }, + ], + [ + { + name: 'truncateYAxis', + config: { + type: 'CheckboxControl', + label: t('Truncate Y Axis'), + default: truncateYAxis, + renderTrigger: true, + description: t( + 'Truncate Y Axis. Can be overridden by specifying a min or max bound.', + ), + }, + }, + ], + [ + { + name: 'y_axis_bounds', + config: { + type: 'BoundsControl', + label: t('Y Axis Bounds'), + renderTrigger: true, + default: yAxisBounds, + description: t( + 'Bounds for the Y-axis. When left empty, the bounds are ' + + 'dynamically defined based on the min/max of the data. Note that ' + + "this feature will only expand the axis range. It won't " + + "narrow the data's extent.", + ), + }, + }, + ], + [ + { + name: `y_axis_format`, + config: { + ...sharedControls.y_axis_format, + label: t('Primary y-axis format'), + }, + }, + ], + [ + { + name: 'logAxis', + config: { + type: 'CheckboxControl', + label: t('Logarithmic y-axis'), + renderTrigger: true, + default: logAxis, + description: t('Logarithmic scale on primary y-axis'), + }, + }, + ], + [ + { + name: `y_axis_format_secondary`, + config: { + ...sharedControls.y_axis_format, + label: t('Secondary y-axis format'), + }, + }, + ], + [ + { + name: 'yAxisTitleSecondary', + config: { + type: 'TextControl', + label: t('Secondary y-axis title'), + renderTrigger: true, + default: '', + description: t('Logarithmic y-axis'), + }, + }, + ], + [ + { + name: 'logAxisSecondary', + config: { + type: 'CheckboxControl', + label: t('Logarithmic y-axis'), + renderTrigger: true, + default: logAxis, + description: t('Logarithmic scale on secondary y-axis'), + }, + }, + ], + ], + }, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/images/thumbnail.png new file mode 100644 index 000000000000..164b6a32b899 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts new file mode 100644 index 000000000000..880c050a5edb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts @@ -0,0 +1,84 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + t, + ChartMetadata, + ChartPlugin, + AnnotationType, + Behavior, +} from '@superset-ui/core'; +import buildQuery from './buildQuery'; +import controlPanel from './controlPanel'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import { + EchartsMixedTimeseriesProps, + EchartsMixedTimeseriesFormData, +} from './types'; + +export default class EchartsTimeseriesChartPlugin extends ChartPlugin< + EchartsMixedTimeseriesFormData, + EchartsMixedTimeseriesProps +> { + /** + * The constructor is used to pass relevant metadata and callbacks that get + * registered in respective registries that are used throughout the library + * and application. A more thorough description of each property is given in + * the respective imported file. + * + * It is worth noting that `buildQuery` and is optional, and only needed for + * advanced visualizations that require either post processing operations + * (pivoting, rolling aggregations, sorting etc) or submitting multiple queries. + */ + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('./EchartsMixedTimeseries'), + metadata: new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('Evolution'), + credits: ['https://echarts.apache.org'], + description: t( + 'Visualize two different time series using the same x-axis time range. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line).', + ), + supportedAnnotationTypes: [ + AnnotationType.Event, + AnnotationType.Formula, + AnnotationType.Interval, + AnnotationType.Timeseries, + ], + name: t('Mixed Time-Series'), + thumbnail, + tags: [ + t('Aesthetic'), + t('ECharts'), + t('Experimental'), + t('Line'), + t('Multi-Variables'), + t('Predictive'), + t('Time'), + t('Transformable'), + ], + }), + // @ts-ignore + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/transformProps.ts new file mode 100644 index 000000000000..3d7b8174bee7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/transformProps.ts @@ -0,0 +1,391 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable camelcase */ +import { + AnnotationLayer, + CategoricalColorNamespace, + DataRecordValue, + TimeseriesDataRecord, + getNumberFormatter, + isEventAnnotationLayer, + isFormulaAnnotationLayer, + isIntervalAnnotationLayer, + isTimeseriesAnnotationLayer, +} from '@superset-ui/core'; +import { EChartsCoreOption, SeriesOption } from 'echarts'; +import { + DEFAULT_FORM_DATA, + EchartsMixedTimeseriesFormData, + EchartsMixedTimeseriesChartTransformedProps, +} from './types'; +import { ForecastSeriesEnum } from '../types'; +import { parseYAxisBound } from '../utils/controls'; +import { + currentSeries, + dedupSeries, + extractTimeseriesSeries, + getLegendProps, +} from '../utils/series'; +import { extractAnnotationLabels } from '../utils/annotation'; +import { + extractForecastSeriesContext, + extractProphetValuesFromTooltipParams, + formatProphetTooltipSeries, + rebaseTimeseriesDatum, +} from '../utils/prophet'; +import { defaultGrid, defaultTooltip, defaultYAxis } from '../defaults'; +import { + getPadding, + getTooltipTimeFormatter, + getXAxisFormatter, + transformEventAnnotation, + transformFormulaAnnotation, + transformIntervalAnnotation, + transformSeries, + transformTimeseriesAnnotation, +} from '../Timeseries/transformers'; +import { TIMESERIES_CONSTANTS } from '../constants'; + +export default function transformProps( + chartProps: EchartsMixedTimeseriesFormData, +): EchartsMixedTimeseriesChartTransformedProps { + const { width, height, formData, queriesData, hooks, filterState } = + chartProps; + const { annotation_data: annotationData_ } = queriesData[0]; + const annotationData = annotationData_ || {}; + const data1: TimeseriesDataRecord[] = queriesData[0].data || []; + const data2: TimeseriesDataRecord[] = queriesData[1].data || []; + + const { + area, + areaB, + annotationLayers, + colorScheme, + contributionMode, + legendOrientation, + legendType, + logAxis, + logAxisSecondary, + markerEnabled, + markerEnabledB, + markerSize, + markerSizeB, + opacity, + opacityB, + minorSplitLine, + seriesType, + seriesTypeB, + showLegend, + showValue, + showValueB, + stack, + stackB, + truncateYAxis, + tooltipTimeFormat, + yAxisFormat, + yAxisFormatSecondary, + xAxisTimeFormat, + yAxisBounds, + yAxisIndex, + yAxisIndexB, + yAxisTitleSecondary, + zoomable, + richTooltip, + tooltipSortByMetric, + xAxisLabelRotation, + groupby, + groupbyB, + emitFilter, + emitFilterB, + xAxisTitle, + yAxisTitle, + xAxisTitleMargin, + yAxisTitleMargin, + yAxisTitlePosition, + }: EchartsMixedTimeseriesFormData = { ...DEFAULT_FORM_DATA, ...formData }; + + const colorScale = CategoricalColorNamespace.getScale(colorScheme as string); + const rawSeriesA = extractTimeseriesSeries(rebaseTimeseriesDatum(data1), { + fillNeighborValue: stack ? 0 : undefined, + }); + const rawSeriesB = extractTimeseriesSeries(rebaseTimeseriesDatum(data2), { + fillNeighborValue: stackB ? 0 : undefined, + }); + + const series: SeriesOption[] = []; + const formatter = getNumberFormatter(contributionMode ? ',.0%' : yAxisFormat); + const formatterSecondary = getNumberFormatter( + contributionMode ? ',.0%' : yAxisFormatSecondary, + ); + + const primarySeries = new Set(); + const secondarySeries = new Set(); + const mapSeriesIdToAxis = ( + seriesOption: SeriesOption, + index?: number, + ): void => { + if (index === 1) { + secondarySeries.add(seriesOption.id as string); + } else { + primarySeries.add(seriesOption.id as string); + } + }; + rawSeriesA.forEach(seriesOption => + mapSeriesIdToAxis(seriesOption, yAxisIndex), + ); + rawSeriesB.forEach(seriesOption => + mapSeriesIdToAxis(seriesOption, yAxisIndexB), + ); + + rawSeriesA.forEach(entry => { + const transformedSeries = transformSeries(entry, colorScale, { + area, + markerEnabled, + markerSize, + areaOpacity: opacity, + seriesType, + showValue, + stack, + yAxisIndex, + filterState, + }); + if (transformedSeries) series.push(transformedSeries); + }); + rawSeriesB.forEach(entry => { + const transformedSeries = transformSeries(entry, colorScale, { + area: areaB, + markerEnabled: markerEnabledB, + markerSize: markerSizeB, + areaOpacity: opacityB, + seriesType: seriesTypeB, + showValue: showValueB, + stack: stackB, + yAxisIndex: yAxisIndexB, + filterState, + }); + if (transformedSeries) series.push(transformedSeries); + }); + + annotationLayers + .filter((layer: AnnotationLayer) => layer.show) + .forEach((layer: AnnotationLayer) => { + if (isFormulaAnnotationLayer(layer)) + series.push(transformFormulaAnnotation(layer, data1, colorScale)); + else if (isIntervalAnnotationLayer(layer)) { + series.push( + ...transformIntervalAnnotation( + layer, + data1, + annotationData, + colorScale, + ), + ); + } else if (isEventAnnotationLayer(layer)) { + series.push( + ...transformEventAnnotation(layer, data1, annotationData, colorScale), + ); + } else if (isTimeseriesAnnotationLayer(layer)) { + series.push( + ...transformTimeseriesAnnotation( + layer, + markerSize, + data1, + annotationData, + ), + ); + } + }); + + // yAxisBounds need to be parsed to replace incompatible values with undefined + let [min, max] = (yAxisBounds || []).map(parseYAxisBound); + + // default to 0-100% range when doing row-level contribution chart + if (contributionMode === 'row' && stack) { + if (min === undefined) min = 0; + if (max === undefined) max = 1; + } + + const tooltipTimeFormatter = getTooltipTimeFormatter(tooltipTimeFormat); + const xAxisFormatter = getXAxisFormatter(xAxisTimeFormat); + + const addYAxisTitleOffset = !!(yAxisTitle || yAxisTitleSecondary); + const addXAxisTitleOffset = !!xAxisTitle; + + const chartPadding = getPadding( + showLegend, + legendOrientation, + addYAxisTitleOffset, + zoomable, + null, + addXAxisTitleOffset, + yAxisTitlePosition, + yAxisTitleMargin, + xAxisTitleMargin, + ); + const labelMap = rawSeriesA.reduce((acc, datum) => { + const label = datum.name as string; + return { + ...acc, + [label]: label.split(', '), + }; + }, {}) as Record; + + const labelMapB = rawSeriesB.reduce((acc, datum) => { + const label = datum.name as string; + return { + ...acc, + [label]: label.split(', '), + }; + }, {}) as Record; + + const { setDataMask = () => {} } = hooks; + + const echartOptions: EChartsCoreOption = { + useUTC: true, + grid: { + ...defaultGrid, + ...chartPadding, + }, + xAxis: { + type: 'time', + name: xAxisTitle, + nameGap: xAxisTitleMargin, + nameLocation: 'middle', + axisLabel: { + formatter: xAxisFormatter, + rotate: xAxisLabelRotation, + }, + }, + yAxis: [ + { + ...defaultYAxis, + type: logAxis ? 'log' : 'value', + min, + max, + minorTick: { show: true }, + minorSplitLine: { show: minorSplitLine }, + axisLabel: { formatter }, + scale: truncateYAxis, + name: yAxisTitle, + nameGap: yAxisTitleMargin, + nameLocation: yAxisTitlePosition === 'Left' ? 'middle' : 'end', + }, + { + ...defaultYAxis, + type: logAxisSecondary ? 'log' : 'value', + min, + max, + minorTick: { show: true }, + splitLine: { show: false }, + minorSplitLine: { show: minorSplitLine }, + axisLabel: { formatter: formatterSecondary }, + scale: truncateYAxis, + name: yAxisTitleSecondary, + }, + ], + tooltip: { + ...defaultTooltip, + appendToBody: true, + trigger: richTooltip ? 'axis' : 'item', + formatter: (params: any) => { + const xValue: number = richTooltip + ? params[0].value[0] + : params.value[0]; + const prophetValue: any[] = richTooltip ? params : [params]; + + if (richTooltip && tooltipSortByMetric) { + prophetValue.sort((a, b) => b.data[1] - a.data[1]); + } + + const rows: Array = [`${tooltipTimeFormatter(xValue)}`]; + const prophetValues = + extractProphetValuesFromTooltipParams(prophetValue); + + Object.keys(prophetValues).forEach(key => { + const value = prophetValues[key]; + const content = formatProphetTooltipSeries({ + ...value, + seriesName: key, + formatter: primarySeries.has(key) ? formatter : formatterSecondary, + }); + if (currentSeries.name === key) { + rows.push(`${content}`); + } else { + rows.push(`${content}`); + } + }); + return rows.join('
'); + }, + }, + legend: { + ...getLegendProps(legendType, legendOrientation, showLegend, zoomable), + // @ts-ignore + data: rawSeriesA + .concat(rawSeriesB) + .filter( + entry => + extractForecastSeriesContext((entry.name || '') as string).type === + ForecastSeriesEnum.Observation, + ) + .map(entry => entry.name || '') + .concat(extractAnnotationLabels(annotationLayers, annotationData)), + }, + series: dedupSeries(series), + toolbox: { + show: zoomable, + top: TIMESERIES_CONSTANTS.toolboxTop, + right: TIMESERIES_CONSTANTS.toolboxRight, + feature: { + dataZoom: { + yAxisIndex: false, + title: { + zoom: 'zoom area', + back: 'restore zoom', + }, + }, + }, + }, + dataZoom: zoomable + ? [ + { + type: 'slider', + start: TIMESERIES_CONSTANTS.dataZoomStart, + end: TIMESERIES_CONSTANTS.dataZoomEnd, + bottom: TIMESERIES_CONSTANTS.zoomBottom, + }, + ] + : [], + }; + + return { + formData, + width, + height, + echartOptions, + setDataMask, + emitFilter, + emitFilterB, + labelMap, + labelMapB, + groupby, + groupbyB, + seriesBreakdown: rawSeriesA.length, + selectedValues: filterState.selectedValues || [], + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/types.ts new file mode 100644 index 000000000000..b5f37551e1d7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/MixedTimeseries/types.ts @@ -0,0 +1,154 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { EChartsCoreOption } from 'echarts'; +import { + AnnotationLayer, + TimeGranularity, + DataRecordValue, + SetDataMaskHook, + QueryFormData, + ChartProps, + ChartDataResponseResult, + QueryFormColumn, +} from '@superset-ui/core'; +import { + DEFAULT_LEGEND_FORM_DATA, + EchartsLegendFormData, + EchartsTitleFormData, + DEFAULT_TITLE_FORM_DATA, +} from '../types'; +import { + DEFAULT_FORM_DATA as TIMESERIES_DEFAULTS, + EchartsTimeseriesContributionType, + EchartsTimeseriesSeriesType, +} from '../Timeseries/types'; + +export type EchartsMixedTimeseriesFormData = QueryFormData & { + annotationLayers: AnnotationLayer[]; + // shared properties + minorSplitLine: boolean; + logAxis: boolean; + logAxisSecondary: boolean; + yAxisFormat?: string; + yAxisFormatSecondary?: string; + yAxisTitleSecondary: string; + yAxisBounds: [number | undefined | null, number | undefined | null]; + yAxisBoundsSecondary: [number | undefined | null, number | undefined | null]; + xAxisTimeFormat?: string; + truncateYAxis: boolean; + truncateYAxisSecondary: boolean; + timeGrainSqla?: TimeGranularity; + tooltipTimeFormat?: string; + zoomable: boolean; + richTooltip: boolean; + xAxisLabelRotation: number; + colorScheme?: string; + // types specific to Query A and Query B + area: boolean; + areaB: boolean; + contributionMode?: EchartsTimeseriesContributionType; + contributionModeB?: EchartsTimeseriesContributionType; + markerEnabled: boolean; + markerEnabledB: boolean; + markerSize: number; + markerSizeB: number; + opacity: number; + opacityB: number; + orderDesc: boolean; + orderDescB: boolean; + rowLimit: number; + rowLimitB: number; + seriesType: EchartsTimeseriesSeriesType; + seriesTypeB: EchartsTimeseriesSeriesType; + showValue: boolean; + showValueB: boolean; + stack: boolean; + stackB: boolean; + yAxisIndex?: number; + yAxisIndexB?: number; + groupby: QueryFormColumn[]; + groupbyB: QueryFormColumn[]; + emitFilter: boolean; +} & EchartsLegendFormData & + EchartsTitleFormData; + +// @ts-ignore +export const DEFAULT_FORM_DATA: EchartsMixedTimeseriesFormData = { + ...DEFAULT_LEGEND_FORM_DATA, + annotationLayers: [], + minorSplitLine: TIMESERIES_DEFAULTS.minorSplitLine, + truncateYAxis: TIMESERIES_DEFAULTS.truncateYAxis, + truncateYAxisSecondary: TIMESERIES_DEFAULTS.truncateYAxis, + logAxis: TIMESERIES_DEFAULTS.logAxis, + logAxisSecondary: TIMESERIES_DEFAULTS.logAxis, + yAxisBounds: TIMESERIES_DEFAULTS.yAxisBounds, + yAxisBoundsSecondary: TIMESERIES_DEFAULTS.yAxisBounds, + yAxisFormat: TIMESERIES_DEFAULTS.yAxisFormat, + yAxisFormatSecondary: TIMESERIES_DEFAULTS.yAxisFormat, + yAxisTitleSecondary: DEFAULT_TITLE_FORM_DATA.yAxisTitle, + tooltipTimeFormat: TIMESERIES_DEFAULTS.tooltipTimeFormat, + xAxisTimeFormat: TIMESERIES_DEFAULTS.xAxisTimeFormat, + area: TIMESERIES_DEFAULTS.area, + areaB: TIMESERIES_DEFAULTS.area, + markerEnabled: TIMESERIES_DEFAULTS.markerEnabled, + markerEnabledB: TIMESERIES_DEFAULTS.markerEnabled, + markerSize: TIMESERIES_DEFAULTS.markerSize, + markerSizeB: TIMESERIES_DEFAULTS.markerSize, + opacity: TIMESERIES_DEFAULTS.opacity, + opacityB: TIMESERIES_DEFAULTS.opacity, + orderDesc: TIMESERIES_DEFAULTS.orderDesc, + orderDescB: TIMESERIES_DEFAULTS.orderDesc, + rowLimit: TIMESERIES_DEFAULTS.rowLimit, + rowLimitB: TIMESERIES_DEFAULTS.rowLimit, + seriesType: TIMESERIES_DEFAULTS.seriesType, + seriesTypeB: TIMESERIES_DEFAULTS.seriesType, + showValue: TIMESERIES_DEFAULTS.showValue, + showValueB: TIMESERIES_DEFAULTS.showValue, + stack: TIMESERIES_DEFAULTS.stack, + stackB: TIMESERIES_DEFAULTS.stack, + yAxisIndex: 0, + yAxisIndexB: 0, + groupby: [], + groupbyB: [], + zoomable: TIMESERIES_DEFAULTS.zoomable, + richTooltip: TIMESERIES_DEFAULTS.richTooltip, + xAxisLabelRotation: TIMESERIES_DEFAULTS.xAxisLabelRotation, + ...DEFAULT_TITLE_FORM_DATA, +}; + +export interface EchartsMixedTimeseriesProps extends ChartProps { + formData: EchartsMixedTimeseriesFormData; + queriesData: ChartDataResponseResult[]; +} + +export type EchartsMixedTimeseriesChartTransformedProps = { + formData: EchartsMixedTimeseriesFormData; + height: number; + width: number; + echartOptions: EChartsCoreOption; + emitFilter: boolean; + emitFilterB: boolean; + setDataMask: SetDataMaskHook; + groupby: QueryFormColumn[]; + groupbyB: QueryFormColumn[]; + labelMap: Record; + labelMapB: Record; + selectedValues: Record; + seriesBreakdown: number; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/EchartsPie.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/EchartsPie.tsx new file mode 100644 index 000000000000..f508b17eebed --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/EchartsPie.tsx @@ -0,0 +1,91 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { useCallback } from 'react'; +import { PieChartTransformedProps } from './types'; +import Echart from '../components/Echart'; +import { EventHandlers } from '../types'; + +export default function EchartsPie({ + height, + width, + echartOptions, + setDataMask, + labelMap, + groupby, + selectedValues, + formData, +}: PieChartTransformedProps) { + const handleChange = useCallback( + (values: string[]) => { + if (!formData.emitFilter) { + return; + } + + const groupbyValues = values.map(value => labelMap[value]); + + setDataMask({ + extraFormData: { + filters: + values.length === 0 + ? [] + : groupby.map((col, idx) => { + const val = groupbyValues.map(v => v[idx]); + if (val === null || val === undefined) + return { + col, + op: 'IS NULL', + }; + return { + col, + op: 'IN', + val: val as (string | number | boolean)[], + }; + }), + }, + filterState: { + value: groupbyValues.length ? groupbyValues : null, + selectedValues: values.length ? values : null, + }, + }); + }, + [groupby, labelMap, setDataMask, selectedValues], + ); + + const eventHandlers: EventHandlers = { + click: props => { + const { name } = props; + const values = Object.values(selectedValues); + if (values.includes(name)) { + handleChange(values.filter(v => v !== name)); + } else { + handleChange([name]); + } + }, + }; + + return ( + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/buildQuery.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/buildQuery.ts new file mode 100644 index 000000000000..8b47fb5e725c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/buildQuery.ts @@ -0,0 +1,29 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { buildQueryContext, QueryFormData } from '@superset-ui/core'; + +export default function buildQuery(formData: QueryFormData) { + const { metric, sort_by_metric } = formData; + return buildQueryContext(formData, baseQueryObject => [ + { + ...baseQueryObject, + ...(sort_by_metric && { orderby: [[metric, false]] }), + }, + ]); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx new file mode 100644 index 000000000000..aab4af54585b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx @@ -0,0 +1,246 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t, validateNonEmpty } from '@superset-ui/core'; +import { + ControlPanelConfig, + ControlPanelsContainerProps, + D3_FORMAT_DOCS, + D3_FORMAT_OPTIONS, + D3_TIME_FORMAT_OPTIONS, + sections, + emitFilterControl, +} from '@superset-ui/chart-controls'; +import { DEFAULT_FORM_DATA } from './types'; +import { legendSection } from '../controls'; + +const { + donut, + innerRadius, + labelsOutside, + labelType, + labelLine, + outerRadius, + numberFormat, + showLabels, +} = DEFAULT_FORM_DATA; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['groupby'], + ['metric'], + ['adhoc_filters'], + emitFilterControl, + ['row_limit'], + [ + { + name: 'sort_by_metric', + config: { + default: true, + type: 'CheckboxControl', + label: t('Sort by metric'), + description: t( + 'Whether to sort results by the selected metric in descending order.', + ), + }, + }, + ], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + [ + { + name: 'show_labels_threshold', + config: { + type: 'TextControl', + label: t('Percentage threshold'), + renderTrigger: true, + isFloat: true, + default: 5, + description: t( + 'Minimum threshold in percentage points for showing labels.', + ), + }, + }, + ], + ...legendSection, + // eslint-disable-next-line react/jsx-key + [

{t('Labels')}

], + [ + { + name: 'label_type', + config: { + type: 'SelectControl', + label: t('Label Type'), + default: labelType, + renderTrigger: true, + choices: [ + ['key', 'Category Name'], + ['value', 'Value'], + ['percent', 'Percentage'], + ['key_value', 'Category and Value'], + ['key_percent', 'Category and Percentage'], + ['key_value_percent', 'Category, Value and Percentage'], + ], + description: t('What should be shown on the label?'), + }, + }, + ], + [ + { + name: 'number_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Number format'), + renderTrigger: true, + default: numberFormat, + choices: D3_FORMAT_OPTIONS, + description: `${t( + 'D3 format syntax: https://github.com/d3/d3-format', + )} ${t('Only applies when "Label Type" is set to show values.')}`, + }, + }, + ], + [ + { + name: 'date_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Date format'), + renderTrigger: true, + choices: D3_TIME_FORMAT_OPTIONS, + default: 'smart_date', + description: D3_FORMAT_DOCS, + }, + }, + ], + [ + { + name: 'show_labels', + config: { + type: 'CheckboxControl', + label: t('Show Labels'), + renderTrigger: true, + default: showLabels, + description: t('Whether to display the labels.'), + }, + }, + ], + [ + { + name: 'labels_outside', + config: { + type: 'CheckboxControl', + label: t('Put labels outside'), + default: labelsOutside, + renderTrigger: true, + description: t('Put the labels outside of the pie?'), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.show_labels?.value), + }, + }, + ], + [ + { + name: 'label_line', + config: { + type: 'CheckboxControl', + label: t('Label Line'), + default: labelLine, + renderTrigger: true, + description: t( + 'Draw line from Pie to label when labels outside?', + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.show_labels?.value), + }, + }, + ], + // eslint-disable-next-line react/jsx-key + [

{t('Pie shape')}

], + [ + { + name: 'outerRadius', + config: { + type: 'SliderControl', + label: t('Outer Radius'), + renderTrigger: true, + min: 10, + max: 100, + step: 1, + default: outerRadius, + description: t('Outer edge of Pie chart'), + }, + }, + ], + [ + { + name: 'donut', + config: { + type: 'CheckboxControl', + label: t('Donut'), + default: donut, + renderTrigger: true, + description: t('Do you want a donut or a pie?'), + }, + }, + ], + [ + { + name: 'innerRadius', + config: { + type: 'SliderControl', + label: t('Inner Radius'), + renderTrigger: true, + min: 0, + max: 100, + step: 1, + default: innerRadius, + description: t('Inner radius of donut hole'), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.donut?.value), + }, + }, + ], + ], + }, + ], + controlOverrides: { + series: { + validators: [validateNonEmpty], + clearable: false, + }, + row_limit: { + default: 100, + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/images/Pie1.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/images/Pie1.jpg new file mode 100644 index 000000000000..be079d241218 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/images/Pie1.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/images/Pie2.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/images/Pie2.jpg new file mode 100644 index 000000000000..1319a19a54fb Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/images/Pie2.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/images/Pie3.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/images/Pie3.jpg new file mode 100644 index 000000000000..45299bab7c52 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/images/Pie3.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/images/Pie4.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/images/Pie4.jpg new file mode 100644 index 000000000000..165c5726d36c Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/images/Pie4.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/images/thumbnail.png new file mode 100644 index 000000000000..ec5c55b6e24c Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/index.ts new file mode 100644 index 000000000000..873a6ac2343e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/index.ts @@ -0,0 +1,79 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { Behavior, ChartMetadata, ChartPlugin, t } from '@superset-ui/core'; +import buildQuery from './buildQuery'; +import controlPanel from './controlPanel'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import example1 from './images/Pie1.jpg'; +import example2 from './images/Pie2.jpg'; +import example3 from './images/Pie3.jpg'; +import example4 from './images/Pie4.jpg'; +import { EchartsPieChartProps, EchartsPieFormData } from './types'; + +export default class EchartsPieChartPlugin extends ChartPlugin< + EchartsPieFormData, + EchartsPieChartProps +> { + /** + * The constructor is used to pass relevant metadata and callbacks that get + * registered in respective registries that are used throughout the library + * and application. A more thorough description of each property is given in + * the respective imported file. + * + * It is worth noting that `buildQuery` and is optional, and only needed for + * advanced visualizations that require either post processing operations + * (pivoting, rolling aggregations, sorting etc) or submitting multiple queries. + */ + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('./EchartsPie'), + metadata: new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('Part of a Whole'), + credits: ['https://echarts.apache.org'], + description: + t(`The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex. + + Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.`), + exampleGallery: [ + { url: example1 }, + { url: example2 }, + { url: example3 }, + { url: example4 }, + ], + name: t('Pie Chart'), + tags: [ + t('Aesthetic'), + t('Categorical'), + t('Circular'), + t('Comparison'), + t('Percentages'), + t('Popular'), + t('Proportional'), + t('ECharts'), + ], + thumbnail, + }), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/transformProps.ts new file mode 100644 index 000000000000..a70855fa432f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/transformProps.ts @@ -0,0 +1,264 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + CategoricalColorNamespace, + DataRecordValue, + getColumnLabel, + getMetricLabel, + getNumberFormatter, + getTimeFormatter, + NumberFormats, + NumberFormatter, +} from '@superset-ui/core'; +import { CallbackDataParams } from 'echarts/types/src/util/types'; +import { EChartsCoreOption, PieSeriesOption } from 'echarts'; +import { + DEFAULT_FORM_DATA as DEFAULT_PIE_FORM_DATA, + EchartsPieChartProps, + EchartsPieFormData, + EchartsPieLabelType, + PieChartTransformedProps, +} from './types'; +import { DEFAULT_LEGEND_FORM_DATA } from '../types'; +import { + extractGroupbyLabel, + getChartPadding, + getColtypesMapping, + getLegendProps, + sanitizeHtml, +} from '../utils/series'; +import { defaultGrid, defaultTooltip } from '../defaults'; +import { OpacityEnum } from '../constants'; + +const percentFormatter = getNumberFormatter(NumberFormats.PERCENT_2_POINT); + +export function formatPieLabel({ + params, + labelType, + numberFormatter, + sanitizeName = false, +}: { + params: Pick; + labelType: EchartsPieLabelType; + numberFormatter: NumberFormatter; + sanitizeName?: boolean; +}): string { + const { name: rawName = '', value, percent } = params; + const name = sanitizeName ? sanitizeHtml(rawName) : rawName; + const formattedValue = numberFormatter(value as number); + const formattedPercent = percentFormatter((percent as number) / 100); + + switch (labelType) { + case EchartsPieLabelType.Key: + return name; + case EchartsPieLabelType.Value: + return formattedValue; + case EchartsPieLabelType.Percent: + return formattedPercent; + case EchartsPieLabelType.KeyValue: + return `${name}: ${formattedValue}`; + case EchartsPieLabelType.KeyValuePercent: + return `${name}: ${formattedValue} (${formattedPercent})`; + case EchartsPieLabelType.KeyPercent: + return `${name}: ${formattedPercent}`; + default: + return name; + } +} + +export default function transformProps( + chartProps: EchartsPieChartProps, +): PieChartTransformedProps { + const { formData, height, hooks, filterState, queriesData, width } = + chartProps; + const { data = [] } = queriesData[0]; + const coltypeMapping = getColtypesMapping(queriesData[0]); + + const { + colorScheme, + donut, + groupby, + innerRadius, + labelsOutside, + labelLine, + labelType, + legendMargin, + legendOrientation, + legendType, + metric = '', + numberFormat, + dateFormat, + outerRadius, + showLabels, + showLegend, + showLabelsThreshold, + emitFilter, + }: EchartsPieFormData = { + ...DEFAULT_LEGEND_FORM_DATA, + ...DEFAULT_PIE_FORM_DATA, + ...formData, + }; + const metricLabel = getMetricLabel(metric); + const groupbyLabels = groupby.map(getColumnLabel); + const minShowLabelAngle = (showLabelsThreshold || 0) * 3.6; + + const keys = data.map(datum => + extractGroupbyLabel({ + datum, + groupby: groupbyLabels, + coltypeMapping, + timeFormatter: getTimeFormatter(dateFormat), + }), + ); + const labelMap = data.reduce( + (acc: Record, datum) => { + const label = extractGroupbyLabel({ + datum, + groupby: groupbyLabels, + coltypeMapping, + timeFormatter: getTimeFormatter(dateFormat), + }); + return { + ...acc, + [label]: groupbyLabels.map(col => datum[col]), + }; + }, + {}, + ); + + const { setDataMask = () => {} } = hooks; + + const colorFn = CategoricalColorNamespace.getScale(colorScheme as string); + const numberFormatter = getNumberFormatter(numberFormat); + + const transformedData: PieSeriesOption[] = data.map(datum => { + const name = extractGroupbyLabel({ + datum, + groupby: groupbyLabels, + coltypeMapping, + timeFormatter: getTimeFormatter(dateFormat), + }); + + const isFiltered = + filterState.selectedValues && !filterState.selectedValues.includes(name); + + return { + value: datum[metricLabel], + name, + itemStyle: { + color: colorFn(name), + opacity: isFiltered + ? OpacityEnum.SemiTransparent + : OpacityEnum.NonTransparent, + }, + }; + }); + + const selectedValues = (filterState.selectedValues || []).reduce( + (acc: Record, selectedValue: string) => { + const index = transformedData.findIndex( + ({ name }) => name === selectedValue, + ); + return { + ...acc, + [index]: selectedValue, + }; + }, + {}, + ); + + const formatter = (params: CallbackDataParams) => + formatPieLabel({ + params, + numberFormatter, + labelType, + }); + + const defaultLabel = { + formatter, + show: showLabels, + color: '#000000', + }; + + const series: PieSeriesOption[] = [ + { + type: 'pie', + ...getChartPadding(showLegend, legendOrientation, legendMargin), + animation: false, + radius: [`${donut ? innerRadius : 0}%`, `${outerRadius}%`], + center: ['50%', '50%'], + avoidLabelOverlap: true, + labelLine: labelsOutside && labelLine ? { show: true } : { show: false }, + minShowLabelAngle, + label: labelsOutside + ? { + ...defaultLabel, + position: 'outer', + alignTo: 'none', + bleedMargin: 5, + } + : { + ...defaultLabel, + position: 'inner', + }, + emphasis: { + label: { + show: true, + fontWeight: 'bold', + backgroundColor: 'white', + }, + }, + data: transformedData, + }, + ]; + + const echartOptions: EChartsCoreOption = { + grid: { + ...defaultGrid, + }, + tooltip: { + ...defaultTooltip, + trigger: 'item', + formatter: (params: any) => + formatPieLabel({ + params, + numberFormatter, + labelType: EchartsPieLabelType.KeyValuePercent, + sanitizeName: true, + }), + }, + legend: { + ...getLegendProps(legendType, legendOrientation, showLegend), + data: keys, + }, + series, + }; + + return { + formData, + width, + height, + echartOptions, + setDataMask, + emitFilter, + labelMap, + groupby, + selectedValues, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/types.ts new file mode 100644 index 000000000000..b6411c834621 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Pie/types.ts @@ -0,0 +1,98 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { EChartsCoreOption } from 'echarts'; +import { + ChartDataResponseResult, + ChartProps, + DataRecordValue, + QueryFormColumn, + QueryFormData, + SetDataMaskHook, +} from '@superset-ui/core'; +import { + DEFAULT_LEGEND_FORM_DATA, + EchartsLegendFormData, + LegendOrientation, + LegendType, +} from '../types'; + +export type EchartsPieFormData = QueryFormData & + EchartsLegendFormData & { + colorScheme?: string; + currentOwnValue?: string[] | null; + donut: boolean; + defaultValue?: string[] | null; + groupby: QueryFormColumn[]; + innerRadius: number; + labelLine: boolean; + labelType: EchartsPieLabelType; + labelsOutside: boolean; + metric?: string; + outerRadius: number; + showLabels: boolean; + numberFormat: string; + dateFormat: string; + showLabelsThreshold: number; + emitFilter: boolean; + }; + +export enum EchartsPieLabelType { + Key = 'key', + Value = 'value', + Percent = 'percent', + KeyValue = 'key_value', + KeyPercent = 'key_percent', + KeyValuePercent = 'key_value_percent', +} + +export interface EchartsPieChartProps extends ChartProps { + formData: EchartsPieFormData; + queriesData: ChartDataResponseResult[]; +} + +// @ts-ignore +export const DEFAULT_FORM_DATA: EchartsPieFormData = { + ...DEFAULT_LEGEND_FORM_DATA, + donut: false, + groupby: [], + innerRadius: 30, + labelLine: false, + labelType: EchartsPieLabelType.Key, + legendOrientation: LegendOrientation.Top, + legendType: LegendType.Scroll, + numberFormat: 'SMART_NUMBER', + outerRadius: 70, + showLabels: true, + labelsOutside: true, + showLabelsThreshold: 5, + emitFilter: false, + dateFormat: 'smart_date', +}; + +export interface PieChartTransformedProps { + formData: EchartsPieFormData; + height: number; + width: number; + echartOptions: EChartsCoreOption; + emitFilter: boolean; + setDataMask: SetDataMaskHook; + labelMap: Record; + groupby: QueryFormColumn[]; + selectedValues: Record; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/EchartsRadar.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/EchartsRadar.tsx new file mode 100644 index 000000000000..5757c2a95f59 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/EchartsRadar.tsx @@ -0,0 +1,91 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { useCallback } from 'react'; +import { RadarChartTransformedProps } from './types'; +import Echart from '../components/Echart'; +import { EventHandlers } from '../types'; + +export default function EchartsRadar({ + height, + width, + echartOptions, + setDataMask, + labelMap, + groupby, + selectedValues, + formData, +}: RadarChartTransformedProps) { + const handleChange = useCallback( + (values: string[]) => { + if (!formData.emitFilter) { + return; + } + + const groupbyValues = values.map(value => labelMap[value]); + + setDataMask({ + extraFormData: { + filters: + values.length === 0 + ? [] + : groupby.map((col, idx) => { + const val = groupbyValues.map(v => v[idx]); + if (val === null || val === undefined) + return { + col, + op: 'IS NULL', + }; + return { + col, + op: 'IN', + val: val as (string | number | boolean)[], + }; + }), + }, + filterState: { + value: groupbyValues.length ? groupbyValues : null, + selectedValues: values.length ? values : null, + }, + }); + }, + [groupby, labelMap, setDataMask, selectedValues], + ); + + const eventHandlers: EventHandlers = { + click: props => { + const { name } = props; + const values = Object.values(selectedValues); + if (values.includes(name)) { + handleChange(values.filter(v => v !== name)); + } else { + handleChange([name]); + } + }, + }; + + return ( + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/buildQuery.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/buildQuery.ts new file mode 100644 index 000000000000..c48f4293e1c4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/buildQuery.ts @@ -0,0 +1,47 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + buildQueryContext, + QueryFormData, + ensureIsArray, +} from '@superset-ui/core'; + +export default function buildQuery(formData: QueryFormData) { + const { timeseries_limit_metric } = formData; + const sortByMetric = ensureIsArray(timeseries_limit_metric)[0]; + + return buildQueryContext(formData, baseQueryObject => { + let { metrics, orderby = [] } = baseQueryObject; + metrics = metrics || []; + // orverride orderby with timeseries metric + if (sortByMetric) { + orderby = [[sortByMetric, false]]; + } else if (metrics?.length > 0) { + // default to ordering by first metric in descending order + // when no "sort by" metric is set (regargless if "SORT DESC" is set to true) + orderby = [[metrics[0], false]]; + } + return [ + { + ...baseQueryObject, + orderby, + }, + ]; + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx new file mode 100644 index 000000000000..5819b8a70bff --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx @@ -0,0 +1,212 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { + ChartDataResponseResult, + GenericDataType, + QueryFormMetric, + t, + validateNumber, +} from '@superset-ui/core'; +import { + ControlPanelConfig, + D3_FORMAT_DOCS, + D3_FORMAT_OPTIONS, + D3_TIME_FORMAT_OPTIONS, + sections, + sharedControls, + emitFilterControl, + ControlFormItemSpec, +} from '@superset-ui/chart-controls'; +import { DEFAULT_FORM_DATA } from './types'; +import { LABEL_POSITION } from '../constants'; +import { legendSection } from '../controls'; + +const { labelType, labelPosition, numberFormat, showLabels, isCircle } = + DEFAULT_FORM_DATA; + +const radarMetricMaxValue: { name: string; config: ControlFormItemSpec } = { + name: 'radarMetricMaxValue', + config: { + controlType: 'InputNumber', + label: t('Max'), + description: t( + 'The maximum value of metrics. It is an optional configuration', + ), + width: 120, + placeholder: 'auto', + debounceDelay: 400, + validators: [validateNumber], + }, +}; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['groupby'], + ['metrics'], + ['timeseries_limit_metric'], + ['adhoc_filters'], + emitFilterControl, + [ + { + name: 'row_limit', + config: { + ...sharedControls.row_limit, + default: 10, + }, + }, + ], + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + ...legendSection, + [

{t('Labels')}

], + [ + { + name: 'show_labels', + config: { + type: 'CheckboxControl', + label: t('Show Labels'), + renderTrigger: true, + default: showLabels, + description: t('Whether to display the labels.'), + }, + }, + ], + [ + { + name: 'label_type', + config: { + type: 'SelectControl', + label: t('Label Type'), + default: labelType, + renderTrigger: true, + choices: [ + ['value', 'Value'], + ['key_value', 'Category and Value'], + ], + description: t('What should be shown on the label?'), + }, + }, + ], + [ + { + name: 'label_position', + config: { + type: 'SelectControl', + freeForm: false, + label: t('Label position'), + renderTrigger: true, + choices: LABEL_POSITION, + default: labelPosition, + description: D3_FORMAT_DOCS, + }, + }, + ], + [ + { + name: 'number_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Number format'), + renderTrigger: true, + default: numberFormat, + choices: D3_FORMAT_OPTIONS, + description: `${t( + 'D3 format syntax: https://github.com/d3/d3-format. ', + )} ${t('Only applies when "Label Type" is set to show values.')}`, + }, + }, + ], + [ + { + name: 'date_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Date format'), + renderTrigger: true, + choices: D3_TIME_FORMAT_OPTIONS, + default: 'smart_date', + description: D3_FORMAT_DOCS, + }, + }, + ], + [

{t('Radar')}

], + [ + { + name: 'column_config', + config: { + type: 'ColumnConfigControl', + label: t('Customize Metrics'), + description: t('Further customize how to display each metric'), + renderTrigger: true, + configFormLayout: { + [GenericDataType.NUMERIC]: [[radarMetricMaxValue]], + }, + mapStateToProps(explore, control, chart) { + const values = + (explore?.controls?.metrics?.value as QueryFormMetric[]) ?? + []; + const metricColumn = values.map(value => { + if (typeof value === 'string') { + return value; + } + return value.label; + }); + return { + queryResponse: chart?.queriesResponse?.[0] as + | ChartDataResponseResult + | undefined, + appliedColumnNames: metricColumn, + }; + }, + }, + }, + ], + [ + { + name: 'is_circle', + config: { + type: 'CheckboxControl', + label: t('Circle radar shape'), + renderTrigger: true, + default: isCircle, + description: t( + "Radar render type, whether to display 'circle' shape.", + ), + }, + }, + ], + ], + }, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/images/thumbnail.png new file mode 100644 index 000000000000..a78fa205e142 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/index.ts new file mode 100644 index 000000000000..f57eccdafa58 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/index.ts @@ -0,0 +1,68 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regardin + * g copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { Behavior, ChartMetadata, ChartPlugin, t } from '@superset-ui/core'; +import buildQuery from './buildQuery'; +import controlPanel from './controlPanel'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import { EchartsRadarChartProps, EchartsRadarFormData } from './types'; + +export default class EchartsRadarChartPlugin extends ChartPlugin< + EchartsRadarFormData, + EchartsRadarChartProps +> { + /** + * The constructor is used to pass relevant metadata and callbacks that get + * registered in respective registries that are used throughout the library + * and application. A more thorough description of each property is given in + * the respective imported file. + * + * It is worth noting that `buildQuery` and is optional, and only needed for + * advanced visualizations that require either post processing operations + * (pivoting, rolling aggregations, sorting etc) or submitting multiple queries. + */ + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('./EchartsRadar'), + metadata: new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('Ranking'), + credits: ['https://echarts.apache.org'], + description: t( + 'Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.', + ), + name: t('Radar Chart'), + tags: [ + t('Business'), + t('Comparison'), + t('Coordinates'), + t('Multi-Variables'), + t('Report'), + t('Web'), + t('ECharts'), + ], + thumbnail, + }), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/transformProps.ts new file mode 100644 index 000000000000..cd981a21a9b7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/transformProps.ts @@ -0,0 +1,248 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + CategoricalColorNamespace, + DataRecordValue, + ensureIsInt, + getColumnLabel, + getMetricLabel, + getNumberFormatter, + getTimeFormatter, + NumberFormatter, +} from '@superset-ui/core'; +import { CallbackDataParams } from 'echarts/types/src/util/types'; +import { RadarSeriesDataItemOption } from 'echarts/types/src/chart/radar/RadarSeries'; +import { EChartsCoreOption, RadarSeriesOption } from 'echarts'; +import { + DEFAULT_FORM_DATA as DEFAULT_RADAR_FORM_DATA, + EchartsRadarChartProps, + EchartsRadarFormData, + EchartsRadarLabelType, + RadarChartTransformedProps, +} from './types'; +import { DEFAULT_LEGEND_FORM_DATA } from '../types'; +import { + extractGroupbyLabel, + getChartPadding, + getColtypesMapping, + getLegendProps, +} from '../utils/series'; +import { defaultGrid, defaultTooltip } from '../defaults'; +import { OpacityEnum } from '../constants'; + +export function formatLabel({ + params, + labelType, + numberFormatter, +}: { + params: CallbackDataParams; + labelType: EchartsRadarLabelType; + numberFormatter: NumberFormatter; +}): string { + const { name = '', value } = params; + const formattedValue = numberFormatter(value as number); + + switch (labelType) { + case EchartsRadarLabelType.Value: + return formattedValue; + case EchartsRadarLabelType.KeyValue: + return `${name}: ${formattedValue}`; + default: + return name; + } +} + +export default function transformProps( + chartProps: EchartsRadarChartProps, +): RadarChartTransformedProps { + const { formData, height, hooks, filterState, queriesData, width } = + chartProps; + const { data = [] } = queriesData[0]; + const coltypeMapping = getColtypesMapping(queriesData[0]); + + const { + colorScheme, + groupby, + labelType, + labelPosition, + legendOrientation, + legendType, + legendMargin, + metrics = [], + numberFormat, + dateFormat, + showLabels, + showLegend, + isCircle, + columnConfig, + }: EchartsRadarFormData = { + ...DEFAULT_LEGEND_FORM_DATA, + ...DEFAULT_RADAR_FORM_DATA, + ...formData, + }; + const { setDataMask = () => {} } = hooks; + + const colorFn = CategoricalColorNamespace.getScale(colorScheme as string); + const numberFormatter = getNumberFormatter(numberFormat); + const formatter = (params: CallbackDataParams) => + formatLabel({ + params, + numberFormatter, + labelType, + }); + + const metricLabels = metrics.map(getMetricLabel); + const groupbyLabels = groupby.map(getColumnLabel); + + const metricLabelAndMaxValueMap = new Map(); + const columnsLabelMap = new Map(); + const transformedData: RadarSeriesDataItemOption[] = []; + data.forEach(datum => { + const joinedName = extractGroupbyLabel({ + datum, + groupby: groupbyLabels, + coltypeMapping, + timeFormatter: getTimeFormatter(dateFormat), + }); + // map(joined_name: [columnLabel_1, columnLabel_2, ...]) + columnsLabelMap.set( + joinedName, + groupbyLabels.map(col => datum[col]), + ); + + // put max value of series into metricLabelAndMaxValueMap + // eslint-disable-next-line no-restricted-syntax + for (const [metricLabel, value] of Object.entries(datum)) { + if (metricLabelAndMaxValueMap.has(metricLabel)) { + metricLabelAndMaxValueMap.set( + metricLabel, + Math.max( + value as number, + ensureIsInt( + metricLabelAndMaxValueMap.get(metricLabel), + Number.MIN_SAFE_INTEGER, + ), + ), + ); + } else { + metricLabelAndMaxValueMap.set(metricLabel, value as number); + } + } + + const isFiltered = + filterState.selectedValues && + !filterState.selectedValues.includes(joinedName); + + // generate transformedData + transformedData.push({ + value: metricLabels.map(metricLabel => datum[metricLabel]), + name: joinedName, + itemStyle: { + color: colorFn(joinedName), + opacity: isFiltered + ? OpacityEnum.Transparent + : OpacityEnum.NonTransparent, + }, + lineStyle: { + opacity: isFiltered + ? OpacityEnum.SemiTransparent + : OpacityEnum.NonTransparent, + }, + label: { + show: showLabels, + position: labelPosition, + formatter, + }, + } as RadarSeriesDataItemOption); + }); + + const selectedValues = (filterState.selectedValues || []).reduce( + (acc: Record, selectedValue: string) => { + const index = transformedData.findIndex( + ({ name }) => name === selectedValue, + ); + return { + ...acc, + [index]: selectedValue, + }; + }, + {}, + ); + + const indicator = metricLabels.map(metricLabel => { + const maxValueInControl = columnConfig?.[metricLabel]?.radarMetricMaxValue; + // Ensure that 0 is at the center of the polar coordinates + const metricValueAsMax = + metricLabelAndMaxValueMap.get(metricLabel) === 0 + ? Number.MAX_SAFE_INTEGER + : metricLabelAndMaxValueMap.get(metricLabel); + const max = + maxValueInControl === null ? metricValueAsMax : maxValueInControl; + return { + name: metricLabel, + max, + }; + }); + + const series: RadarSeriesOption[] = [ + { + type: 'radar', + ...getChartPadding(showLegend, legendOrientation, legendMargin), + animation: false, + emphasis: { + label: { + show: true, + fontWeight: 'bold', + backgroundColor: 'white', + }, + }, + data: transformedData, + }, + ]; + + const echartOptions: EChartsCoreOption = { + grid: { + ...defaultGrid, + }, + tooltip: { + ...defaultTooltip, + trigger: 'item', + }, + legend: { + ...getLegendProps(legendType, legendOrientation, showLegend), + data: Array.from(columnsLabelMap.keys()), + }, + series, + radar: { + shape: isCircle ? 'circle' : 'polygon', + indicator, + }, + }; + + return { + formData, + width, + height, + echartOptions, + setDataMask, + labelMap: Object.fromEntries(columnsLabelMap), + groupby, + selectedValues, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/types.ts new file mode 100644 index 000000000000..9b053b626455 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Radar/types.ts @@ -0,0 +1,91 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { EChartsCoreOption } from 'echarts'; +import { + ChartDataResponseResult, + ChartProps, + DataRecordValue, + QueryFormColumn, + QueryFormData, + QueryFormMetric, + SetDataMaskHook, +} from '@superset-ui/core'; +import { + DEFAULT_LEGEND_FORM_DATA, + EchartsLegendFormData, + LabelPositionEnum, + LegendOrientation, + LegendType, +} from '../types'; + +type RadarColumnConfig = Record; + +export type EchartsRadarFormData = QueryFormData & + EchartsLegendFormData & { + colorScheme?: string; + columnConfig?: RadarColumnConfig; + currentOwnValue?: string[] | null; + currentValue?: string[] | null; + defaultValue?: string[] | null; + groupby: QueryFormColumn[]; + labelType: EchartsRadarLabelType; + labelPosition: LabelPositionEnum; + metrics: QueryFormMetric[]; + showLabels: boolean; + isCircle: boolean; + numberFormat: string; + dateFormat: string; + emitFilter: boolean; + }; + +export enum EchartsRadarLabelType { + Value = 'value', + KeyValue = 'key_value', +} + +export interface EchartsRadarChartProps extends ChartProps { + formData: EchartsRadarFormData; + queriesData: ChartDataResponseResult[]; +} + +// @ts-ignore +export const DEFAULT_FORM_DATA: EchartsRadarFormData = { + ...DEFAULT_LEGEND_FORM_DATA, + groupby: [], + labelType: EchartsRadarLabelType.Value, + labelPosition: LabelPositionEnum.Top, + legendOrientation: LegendOrientation.Top, + legendType: LegendType.Scroll, + numberFormat: 'SMART_NUMBER', + showLabels: true, + emitFilter: false, + dateFormat: 'smart_date', + isCircle: false, +}; + +export interface RadarChartTransformedProps { + formData: EchartsRadarFormData; + height: number; + width: number; + echartOptions: EChartsCoreOption; + setDataMask: SetDataMaskHook; + labelMap: Record; + groupby: QueryFormColumn[]; + selectedValues: Record; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx new file mode 100644 index 000000000000..44d1e80d196b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx @@ -0,0 +1,293 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + ControlPanelsContainerProps, + D3_TIME_FORMAT_DOCS, + emitFilterControl, + sections, + sharedControls, +} from '@superset-ui/chart-controls'; + +import { + DEFAULT_FORM_DATA, + EchartsTimeseriesContributionType, + EchartsTimeseriesSeriesType, +} from '../types'; +import { + legendSection, + richTooltipSection, + showValueSection, +} from '../../controls'; + +const { + contributionMode, + logAxis, + markerEnabled, + markerSize, + minorSplitLine, + opacity, + rowLimit, + seriesType, + truncateYAxis, + yAxisBounds, + zoomable, + xAxisLabelRotation, +} = DEFAULT_FORM_DATA; +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['groupby'], + [ + { + name: 'contributionMode', + config: { + type: 'SelectControl', + label: t('Contribution Mode'), + default: contributionMode, + choices: [ + [null, 'None'], + [EchartsTimeseriesContributionType.Row, 'Total'], + [EchartsTimeseriesContributionType.Column, 'Series'], + ], + description: t('Calculate contribution per series or total'), + }, + }, + ], + ['adhoc_filters'], + emitFilterControl, + ['limit'], + ['timeseries_limit_metric'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: true, + description: t('Whether to sort descending or ascending'), + }, + }, + ], + ['row_limit'], + ], + }, + sections.advancedAnalyticsControls, + sections.annotationsAndLayersControls, + sections.forecastIntervalControls, + sections.titleControls, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + [ + { + name: 'seriesType', + config: { + type: 'SelectControl', + label: t('Series Style'), + renderTrigger: true, + default: seriesType, + choices: [ + [EchartsTimeseriesSeriesType.Line, 'Line'], + [EchartsTimeseriesSeriesType.Smooth, 'Smooth Line'], + [EchartsTimeseriesSeriesType.Start, 'Step - start'], + [EchartsTimeseriesSeriesType.Middle, 'Step - middle'], + [EchartsTimeseriesSeriesType.End, 'Step - end'], + ], + description: t('Series chart type (line, bar etc)'), + }, + }, + ], + [ + { + name: 'opacity', + config: { + type: 'SliderControl', + label: t('Area chart opacity'), + renderTrigger: true, + min: 0, + max: 1, + step: 0.1, + default: opacity, + description: t( + 'Opacity of Area Chart. Also applies to confidence band.', + ), + }, + }, + ], + ...showValueSection, + [ + { + name: 'markerEnabled', + config: { + type: 'CheckboxControl', + label: t('Marker'), + renderTrigger: true, + default: markerEnabled, + description: t( + 'Draw a marker on data points. Only applicable for line types.', + ), + }, + }, + ], + [ + { + name: 'markerSize', + config: { + type: 'SliderControl', + label: t('Marker Size'), + renderTrigger: true, + min: 0, + max: 20, + default: markerSize, + description: t( + 'Size of marker. Also applies to forecast observations.', + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.markerEnabled?.value), + }, + }, + ], + [ + { + name: 'zoomable', + config: { + type: 'CheckboxControl', + label: t('Data Zoom'), + default: zoomable, + renderTrigger: true, + description: t('Enable data zooming controls'), + }, + }, + ], + ...legendSection, + [

{t('X Axis')}

], + [ + { + name: 'x_axis_time_format', + config: { + ...sharedControls.x_axis_time_format, + default: 'smart_date', + description: `${D3_TIME_FORMAT_DOCS}. ${t( + 'When using other than adaptive formatting, labels may overlap.', + )}`, + }, + }, + ], + [ + { + name: 'xAxisLabelRotation', + config: { + type: 'SelectControl', + freeForm: true, + clearable: false, + label: t('Rotate x axis label'), + choices: [ + [0, '0°'], + [45, '45°'], + ], + default: xAxisLabelRotation, + renderTrigger: true, + description: t( + 'Input field supports custom rotation. e.g. 30 for 30°', + ), + }, + }, + ], + ...richTooltipSection, + // eslint-disable-next-line react/jsx-key + [

{t('Y Axis')}

], + ['y_axis_format'], + [ + { + name: 'logAxis', + config: { + type: 'CheckboxControl', + label: t('Logarithmic y-axis'), + renderTrigger: true, + default: logAxis, + description: t('Logarithmic y-axis'), + }, + }, + ], + [ + { + name: 'minorSplitLine', + config: { + type: 'CheckboxControl', + label: t('Minor Split Line'), + renderTrigger: true, + default: minorSplitLine, + description: t('Draw split lines for minor y-axis ticks'), + }, + }, + ], + [ + { + name: 'truncateYAxis', + config: { + type: 'CheckboxControl', + label: t('Truncate Y Axis'), + default: truncateYAxis, + renderTrigger: true, + description: t( + 'Truncate Y Axis. Can be overridden by specifying a min or max bound.', + ), + }, + }, + ], + [ + { + name: 'y_axis_bounds', + config: { + type: 'BoundsControl', + label: t('Y Axis Bounds'), + renderTrigger: true, + default: yAxisBounds, + description: t( + 'Bounds for the Y-axis. When left empty, the bounds are ' + + 'dynamically defined based on the min/max of the data. Note that ' + + "this feature will only expand the axis range. It won't " + + "narrow the data's extent.", + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.truncateYAxis?.value), + }, + }, + ], + ], + }, + ], + controlOverrides: { + row_limit: { + default: rowLimit, + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Area/images/Area1.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Area/images/Area1.png new file mode 100644 index 000000000000..212f9bf1e671 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Area/images/Area1.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Area/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Area/images/thumbnail.png new file mode 100644 index 000000000000..2452c6a18f6b Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Area/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts new file mode 100644 index 000000000000..e0c0af270686 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts @@ -0,0 +1,92 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + t, + ChartMetadata, + ChartPlugin, + AnnotationType, + Behavior, +} from '@superset-ui/core'; +import buildQuery from '../buildQuery'; +import controlPanel from './controlPanel'; +import transformProps from '../transformProps'; +import thumbnail from './images/thumbnail.png'; +import { + EchartsTimeseriesChartProps, + EchartsTimeseriesFormData, +} from '../types'; +import example1 from './images/Area1.png'; + +const areaTransformProps = (chartProps: EchartsTimeseriesChartProps) => + transformProps({ + ...chartProps, + formData: { ...chartProps.formData, area: true }, + }); + +export default class EchartsAreaChartPlugin extends ChartPlugin< + EchartsTimeseriesFormData, + EchartsTimeseriesChartProps +> { + /** + * The constructor is used to pass relevant metadata and callbacks that get + * registered in respective registries that are used throughout the library + * and application. A more thorough description of each property is given in + * the respective imported file. + * + * It is worth noting that `buildQuery` and is optional, and only needed for + * advanced visualizations that require either post processing operations + * (pivoting, rolling aggregations, sorting etc) or submitting multiple queries. + */ + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('../EchartsTimeseries'), + metadata: new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('Evolution'), + credits: ['https://echarts.apache.org'], + description: t( + 'Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.', + ), + exampleGallery: [{ url: example1 }], + supportedAnnotationTypes: [ + AnnotationType.Event, + AnnotationType.Formula, + AnnotationType.Interval, + AnnotationType.Timeseries, + ], + name: t('Time-series Area Chart'), + tags: [ + t('ECharts'), + t('Predictive'), + t('Advanced-Analytics'), + t('Aesthetic'), + t('Time'), + t('Line'), + t('Transformable'), + t('Stacked'), + t('Popular'), + ], + thumbnail, + }), + transformProps: areaTransformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/EchartsTimeseries.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/EchartsTimeseries.tsx new file mode 100644 index 000000000000..2bf103e2bd9e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/EchartsTimeseries.tsx @@ -0,0 +1,208 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { useCallback, useRef } from 'react'; +import { ViewRootGroup } from 'echarts/types/src/util/types'; +import GlobalModel from 'echarts/types/src/model/Global'; +import ComponentModel from 'echarts/types/src/model/Component'; +import { EchartsHandler, EventHandlers } from '../types'; +import Echart from '../components/Echart'; +import { TimeseriesChartTransformedProps } from './types'; +import { currentSeries } from '../utils/series'; + +const TIMER_DURATION = 300; +// @ts-ignore +export default function EchartsTimeseries({ + formData, + height, + width, + echartOptions, + groupby, + labelMap, + selectedValues, + setDataMask, + legendData = [], +}: TimeseriesChartTransformedProps) { + const { emitFilter, stack } = formData; + const echartRef = useRef(null); + const lastTimeRef = useRef(Date.now()); + const lastSelectedLegend = useRef(''); + const clickTimer = useRef>(); + + const handleDoubleClickChange = useCallback( + (name?: string) => { + const echartInstance = echartRef.current?.getEchartInstance(); + if (!name) { + currentSeries.legend = ''; + echartInstance?.dispatchAction({ + type: 'legendAllSelect', + }); + } else { + legendData.forEach(datum => { + if (datum === name) { + currentSeries.legend = datum; + echartInstance?.dispatchAction({ + type: 'legendSelect', + name: datum, + }); + } else { + echartInstance?.dispatchAction({ + type: 'legendUnSelect', + name: datum, + }); + } + }); + } + }, + [legendData], + ); + + const getModelInfo = (target: ViewRootGroup, globalModel: GlobalModel) => { + let el = target; + let model: ComponentModel | null = null; + while (el) { + // eslint-disable-next-line no-underscore-dangle + const modelInfo = el.__ecComponentInfo; + if (modelInfo != null) { + model = globalModel.getComponent(modelInfo.mainType, modelInfo.index); + break; + } + el = el.parent; + } + return model; + }; + + const handleChange = useCallback( + (values: string[]) => { + if (!emitFilter) { + return; + } + const groupbyValues = values.map(value => labelMap[value]); + + setDataMask({ + extraFormData: { + filters: + values.length === 0 + ? [] + : groupby.map((col, idx) => { + const val = groupbyValues.map(v => v[idx]); + if (val === null || val === undefined) + return { + col, + op: 'IS NULL', + }; + return { + col, + op: 'IN', + val: val as (string | number | boolean)[], + }; + }), + }, + filterState: { + label: groupbyValues.length ? groupbyValues : undefined, + value: groupbyValues.length ? groupbyValues : null, + selectedValues: values.length ? values : null, + }, + }); + }, + [groupby, labelMap, setDataMask], + ); + + const eventHandlers: EventHandlers = { + click: props => { + if (clickTimer.current) { + clearTimeout(clickTimer.current); + } + // Ensure that double-click events do not trigger single click event. So we put it in the timer. + clickTimer.current = setTimeout(() => { + const { seriesName: name } = props; + const values = Object.values(selectedValues); + if (values.includes(name)) { + handleChange(values.filter(v => v !== name)); + } else { + handleChange([name]); + } + }, TIMER_DURATION); + }, + mouseout: () => { + currentSeries.name = ''; + }, + mouseover: params => { + currentSeries.name = params.seriesName; + }, + legendselectchanged: payload => { + const currentTime = Date.now(); + // TIMER_DURATION is the interval between two legendselectchanged event + if ( + currentTime - lastTimeRef.current < TIMER_DURATION && + lastSelectedLegend.current === payload.name + ) { + // execute dbclick + handleDoubleClickChange(payload.name); + } else { + lastTimeRef.current = currentTime; + // remember last selected legend + lastSelectedLegend.current = payload.name; + } + // if all legend is unselected, we keep all selected + if (Object.values(payload.selected).every(i => !i)) { + handleDoubleClickChange(); + } + }, + }; + + const zrEventHandlers: EventHandlers = { + dblclick: params => { + // clear single click timer + if (clickTimer.current) { + clearTimeout(clickTimer.current); + } + const pointInPixel = [params.offsetX, params.offsetY]; + const echartInstance = echartRef.current?.getEchartInstance(); + if (echartInstance?.containPixel('grid', pointInPixel)) { + // do not trigger if click unstacked chart's blank area + if (!stack && params.target?.type === 'ec-polygon') return; + // @ts-ignore + const globalModel = echartInstance.getModel(); + const model = getModelInfo(params.target, globalModel); + const seriesCount = globalModel.getSeriesCount(); + const currentSeriesIndices = globalModel.getCurrentSeriesIndices(); + if (model) { + const { name } = model; + if (seriesCount !== currentSeriesIndices.length) { + handleDoubleClickChange(); + } else { + handleDoubleClickChange(name); + } + } + } + }, + }; + + return ( + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx new file mode 100644 index 000000000000..68460e1ece29 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx @@ -0,0 +1,256 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + ControlPanelsContainerProps, + D3_TIME_FORMAT_DOCS, + emitFilterControl, + sections, + sharedControls, +} from '@superset-ui/chart-controls'; + +import { + DEFAULT_FORM_DATA, + EchartsTimeseriesContributionType, +} from '../../types'; +import { + legendSection, + richTooltipSection, + showValueSection, +} from '../../../controls'; + +const { + contributionMode, + logAxis, + markerEnabled, + markerSize, + minorSplitLine, + rowLimit, + truncateYAxis, + yAxisBounds, + zoomable, + xAxisLabelRotation, +} = DEFAULT_FORM_DATA; +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['groupby'], + [ + { + name: 'contributionMode', + config: { + type: 'SelectControl', + label: t('Contribution Mode'), + default: contributionMode, + choices: [ + [null, 'None'], + [EchartsTimeseriesContributionType.Row, 'Total'], + [EchartsTimeseriesContributionType.Column, 'Series'], + ], + description: t('Calculate contribution per series or total'), + }, + }, + ], + ['adhoc_filters'], + emitFilterControl, + ['limit'], + ['timeseries_limit_metric'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: true, + description: t('Whether to sort descending or ascending'), + }, + }, + ], + ['row_limit'], + ], + }, + sections.advancedAnalyticsControls, + sections.annotationsAndLayersControls, + sections.forecastIntervalControls, + sections.titleControls, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + ...showValueSection, + [ + { + name: 'markerEnabled', + config: { + type: 'CheckboxControl', + label: t('Marker'), + renderTrigger: true, + default: markerEnabled, + description: t( + 'Draw a marker on data points. Only applicable for line types.', + ), + }, + }, + ], + [ + { + name: 'markerSize', + config: { + type: 'SliderControl', + label: t('Marker Size'), + renderTrigger: true, + min: 0, + max: 20, + default: markerSize, + description: t( + 'Size of marker. Also applies to forecast observations.', + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.markerEnabled?.value), + }, + }, + ], + [ + { + name: 'zoomable', + config: { + type: 'CheckboxControl', + label: t('Data Zoom'), + default: zoomable, + renderTrigger: true, + description: t('Enable data zooming controls'), + }, + }, + ], + ...legendSection, + [

{t('X Axis')}

], + [ + { + name: 'x_axis_time_format', + config: { + ...sharedControls.x_axis_time_format, + default: 'smart_date', + description: `${D3_TIME_FORMAT_DOCS}. ${t( + 'When using other than adaptive formatting, labels may overlap.', + )}`, + }, + }, + ], + [ + { + name: 'xAxisLabelRotation', + config: { + type: 'SelectControl', + freeForm: true, + clearable: false, + label: t('Rotate x axis label'), + choices: [ + [0, '0°'], + [45, '45°'], + ], + default: xAxisLabelRotation, + renderTrigger: true, + description: t( + 'Input field supports custom rotation. e.g. 30 for 30°', + ), + }, + }, + ], + // eslint-disable-next-line react/jsx-key + ...richTooltipSection, + // eslint-disable-next-line react/jsx-key + [

{t('Y Axis')}

], + + ['y_axis_format'], + [ + { + name: 'logAxis', + config: { + type: 'CheckboxControl', + label: t('Logarithmic y-axis'), + renderTrigger: true, + default: logAxis, + description: t('Logarithmic y-axis'), + }, + }, + ], + [ + { + name: 'minorSplitLine', + config: { + type: 'CheckboxControl', + label: t('Minor Split Line'), + renderTrigger: true, + default: minorSplitLine, + description: t('Draw split lines for minor y-axis ticks'), + }, + }, + ], + [ + { + name: 'truncateYAxis', + config: { + type: 'CheckboxControl', + label: t('Truncate Y Axis'), + default: truncateYAxis, + renderTrigger: true, + description: t( + 'It’s not recommended to truncate y-axis in Bar chart.', + ), + }, + }, + ], + [ + { + name: 'y_axis_bounds', + config: { + type: 'BoundsControl', + label: t('Y Axis Bounds'), + renderTrigger: true, + default: yAxisBounds, + description: t( + 'Bounds for the Y-axis. When left empty, the bounds are ' + + 'dynamically defined based on the min/max of the data. Note that ' + + "this feature will only expand the axis range. It won't " + + "narrow the data's extent.", + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.truncateYAxis?.value), + }, + }, + ], + ], + }, + ], + controlOverrides: { + row_limit: { + default: rowLimit, + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/images/Bar1.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/images/Bar1.png new file mode 100644 index 000000000000..94dd5c58600b Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/images/Bar1.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/images/Bar2.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/images/Bar2.png new file mode 100644 index 000000000000..5c028c5d85da Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/images/Bar2.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/images/Bar3.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/images/Bar3.png new file mode 100644 index 000000000000..84f826fc86e4 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/images/Bar3.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/images/thumbnail.png new file mode 100644 index 000000000000..29eed8d1d407 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts new file mode 100644 index 000000000000..0c23a19bd6fe --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts @@ -0,0 +1,93 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + t, + ChartMetadata, + ChartPlugin, + AnnotationType, + Behavior, +} from '@superset-ui/core'; +import buildQuery from '../../buildQuery'; +import controlPanel from './controlPanel'; +import transformProps from '../../transformProps'; +import thumbnail from './images/thumbnail.png'; +import { + EchartsTimeseriesChartProps, + EchartsTimeseriesFormData, + EchartsTimeseriesSeriesType, +} from '../../types'; +import example1 from './images/Bar1.png'; +import example2 from './images/Bar2.png'; +import example3 from './images/Bar3.png'; + +const barTransformProps = (chartProps: EchartsTimeseriesChartProps) => + transformProps({ + ...chartProps, + formData: { + ...chartProps.formData, + seriesType: EchartsTimeseriesSeriesType.Bar, + }, + }); + +export default class EchartsTimeseriesBarChartPlugin extends ChartPlugin< + EchartsTimeseriesFormData, + EchartsTimeseriesChartProps +> { + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('../../EchartsTimeseries'), + metadata: new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('Evolution'), + credits: ['https://echarts.apache.org'], + description: t( + 'Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.', + ), + exampleGallery: [ + { url: example1 }, + { url: example2 }, + { url: example3 }, + ], + supportedAnnotationTypes: [ + AnnotationType.Event, + AnnotationType.Formula, + AnnotationType.Interval, + AnnotationType.Timeseries, + ], + name: t('Time-series Bar Chart v2'), + tags: [ + t('ECharts'), + t('Predictive'), + t('Advanced-Analytics'), + t('Aesthetic'), + t('Time'), + t('Transformable'), + t('Stacked'), + t('Vertical'), + t('Bar'), + t('Popular'), + ], + thumbnail, + }), + transformProps: barTransformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/images/Line1.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/images/Line1.png new file mode 100644 index 000000000000..d19150b1d5d4 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/images/Line1.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/images/Line2.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/images/Line2.png new file mode 100644 index 000000000000..30a44d9e57fe Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/images/Line2.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/images/thumbnail.png new file mode 100644 index 000000000000..eb0cd50dbb05 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts new file mode 100644 index 000000000000..0ee78dae1045 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts @@ -0,0 +1,84 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + t, + ChartMetadata, + ChartPlugin, + AnnotationType, + Behavior, +} from '@superset-ui/core'; +import buildQuery from '../../buildQuery'; +import controlPanel from '../controlPanel'; +import transformProps from '../../transformProps'; +import thumbnail from './images/thumbnail.png'; +import { + EchartsTimeseriesChartProps, + EchartsTimeseriesFormData, + EchartsTimeseriesSeriesType, +} from '../../types'; +import example1 from './images/Line1.png'; +import example2 from './images/Line2.png'; + +const lineTransformProps = (chartProps: EchartsTimeseriesChartProps) => + transformProps({ + ...chartProps, + formData: { + ...chartProps.formData, + seriesType: EchartsTimeseriesSeriesType.Line, + }, + }); + +export default class EchartsTimeseriesLineChartPlugin extends ChartPlugin< + EchartsTimeseriesFormData, + EchartsTimeseriesChartProps +> { + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('../../EchartsTimeseries'), + metadata: new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('Evolution'), + credits: ['https://echarts.apache.org'], + description: t( + 'Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.', + ), + exampleGallery: [{ url: example1 }, { url: example2 }], + supportedAnnotationTypes: [ + AnnotationType.Event, + AnnotationType.Formula, + AnnotationType.Interval, + AnnotationType.Timeseries, + ], + name: t('Time-series Line Chart'), + tags: [ + t('ECharts'), + t('Predictive'), + t('Advanced-Analytics'), + t('Aesthetic'), + t('Line'), + t('Popular'), + ], + thumbnail, + }), + transformProps: lineTransformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx new file mode 100644 index 000000000000..772e2b06f9fe --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx @@ -0,0 +1,236 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + ControlPanelsContainerProps, + D3_TIME_FORMAT_DOCS, + emitFilterControl, + sections, + sharedControls, +} from '@superset-ui/chart-controls'; + +import { DEFAULT_FORM_DATA } from '../../types'; +import { + legendSection, + richTooltipSection, + showValueSection, +} from '../../../controls'; + +const { + logAxis, + markerEnabled, + markerSize, + minorSplitLine, + rowLimit, + truncateYAxis, + yAxisBounds, + zoomable, + xAxisLabelRotation, +} = DEFAULT_FORM_DATA; +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['groupby'], + ['adhoc_filters'], + emitFilterControl, + ['limit'], + ['timeseries_limit_metric'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: true, + description: t('Whether to sort descending or ascending'), + }, + }, + ], + ['row_limit'], + ], + }, + sections.advancedAnalyticsControls, + sections.annotationsAndLayersControls, + sections.forecastIntervalControls, + sections.titleControls, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + ...showValueSection, + [ + { + name: 'markerEnabled', + config: { + type: 'CheckboxControl', + label: t('Marker'), + renderTrigger: true, + default: markerEnabled, + description: t( + 'Draw a marker on data points. Only applicable for line types.', + ), + }, + }, + ], + [ + { + name: 'markerSize', + config: { + type: 'SliderControl', + label: t('Marker Size'), + renderTrigger: true, + min: 0, + max: 100, + default: markerSize, + description: t( + 'Size of marker. Also applies to forecast observations.', + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.markerEnabled?.value), + }, + }, + ], + [ + { + name: 'zoomable', + config: { + type: 'CheckboxControl', + label: t('Data Zoom'), + default: zoomable, + renderTrigger: true, + description: t('Enable data zooming controls'), + }, + }, + ], + ...legendSection, + [

{t('X Axis')}

], + + [ + { + name: 'x_axis_time_format', + config: { + ...sharedControls.x_axis_time_format, + default: 'smart_date', + description: `${D3_TIME_FORMAT_DOCS}. ${t( + 'When using other than adaptive formatting, labels may overlap.', + )}`, + }, + }, + ], + [ + { + name: 'xAxisLabelRotation', + config: { + type: 'SelectControl', + freeForm: true, + clearable: false, + label: t('Rotate x axis label'), + choices: [ + [0, '0°'], + [45, '45°'], + ], + default: xAxisLabelRotation, + renderTrigger: true, + description: t( + 'Input field supports custom rotation. e.g. 30 for 30°', + ), + }, + }, + ], + // eslint-disable-next-line react/jsx-key + ...richTooltipSection, + // eslint-disable-next-line react/jsx-key + [

{t('Y Axis')}

], + ['y_axis_format'], + [ + { + name: 'logAxis', + config: { + type: 'CheckboxControl', + label: t('Logarithmic y-axis'), + renderTrigger: true, + default: logAxis, + description: t('Logarithmic y-axis'), + }, + }, + ], + [ + { + name: 'minorSplitLine', + config: { + type: 'CheckboxControl', + label: t('Minor Split Line'), + renderTrigger: true, + default: minorSplitLine, + description: t('Draw split lines for minor y-axis ticks'), + }, + }, + ], + [ + { + name: 'truncateYAxis', + config: { + type: 'CheckboxControl', + label: t('Truncate Y Axis'), + default: truncateYAxis, + renderTrigger: true, + description: t( + 'Truncate Y Axis. Can be overridden by specifying a min or max bound.', + ), + }, + }, + ], + [ + { + name: 'y_axis_bounds', + config: { + type: 'BoundsControl', + label: t('Y Axis Bounds'), + renderTrigger: true, + default: yAxisBounds, + description: t( + 'Bounds for the Y-axis. When left empty, the bounds are ' + + 'dynamically defined based on the min/max of the data. Note that ' + + "this feature will only expand the axis range. It won't " + + "narrow the data's extent.", + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.truncateYAxis?.value), + }, + }, + ], + ], + }, + ], + controlOverrides: { + row_limit: { + default: rowLimit, + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/images/Scatter1.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/images/Scatter1.png new file mode 100644 index 000000000000..145b69a23d14 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/images/Scatter1.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/images/thumbnail.png new file mode 100644 index 000000000000..1692f3bd9df1 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts new file mode 100644 index 000000000000..98a7898932d1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts @@ -0,0 +1,85 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + t, + ChartMetadata, + ChartPlugin, + AnnotationType, + Behavior, +} from '@superset-ui/core'; +import buildQuery from '../../buildQuery'; +import controlPanel from './controlPanel'; +import transformProps from '../../transformProps'; +import thumbnail from './images/thumbnail.png'; +import { + EchartsTimeseriesChartProps, + EchartsTimeseriesFormData, + EchartsTimeseriesSeriesType, +} from '../../types'; +import example1 from './images/Scatter1.png'; + +const scatterTransformProps = (chartProps: EchartsTimeseriesChartProps) => + transformProps({ + ...chartProps, + formData: { + ...chartProps.formData, + seriesType: EchartsTimeseriesSeriesType.Scatter, + }, + }); + +export default class EchartsTimeseriesScatterChartPlugin extends ChartPlugin< + EchartsTimeseriesFormData, + EchartsTimeseriesChartProps +> { + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('../../EchartsTimeseries'), + metadata: new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('Evolution'), + credits: ['https://echarts.apache.org'], + description: t( + 'Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.', + ), + exampleGallery: [{ url: example1 }], + supportedAnnotationTypes: [ + AnnotationType.Event, + AnnotationType.Formula, + AnnotationType.Interval, + AnnotationType.Timeseries, + ], + name: t('Time-series Scatter Plot'), + tags: [ + t('ECharts'), + t('Predictive'), + t('Advanced-Analytics'), + t('Aesthetic'), + t('Time'), + t('Transformable'), + t('Scatter'), + t('Popular'), + ], + thumbnail, + }), + transformProps: scatterTransformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/images/SmoothLine1.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/images/SmoothLine1.png new file mode 100644 index 000000000000..d0f1cb9e3490 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/images/SmoothLine1.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/images/thumbnail.png new file mode 100644 index 000000000000..9105dd3ece38 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts new file mode 100644 index 000000000000..db592e1b80c5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts @@ -0,0 +1,84 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + t, + ChartMetadata, + ChartPlugin, + AnnotationType, + Behavior, +} from '@superset-ui/core'; +import buildQuery from '../../buildQuery'; +import controlPanel from '../controlPanel'; +import transformProps from '../../transformProps'; +import thumbnail from './images/thumbnail.png'; +import { + EchartsTimeseriesChartProps, + EchartsTimeseriesFormData, + EchartsTimeseriesSeriesType, +} from '../../types'; +import example1 from './images/SmoothLine1.png'; + +const smoothTransformProps = (chartProps: EchartsTimeseriesChartProps) => + transformProps({ + ...chartProps, + formData: { + ...chartProps.formData, + seriesType: EchartsTimeseriesSeriesType.Smooth, + }, + }); + +export default class EchartsTimeseriesSmoothLineChartPlugin extends ChartPlugin< + EchartsTimeseriesFormData, + EchartsTimeseriesChartProps +> { + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('../../EchartsTimeseries'), + metadata: new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('Evolution'), + credits: ['https://echarts.apache.org'], + description: t( + 'Time-series Smooth-line is a variation of line chart. Without angles and hard edges, Smooth-line looks more smarter and more professional.', + ), + exampleGallery: [{ url: example1 }], + supportedAnnotationTypes: [ + AnnotationType.Event, + AnnotationType.Formula, + AnnotationType.Interval, + AnnotationType.Timeseries, + ], + name: t('Time-series Smooth Line'), + tags: [ + t('ECharts'), + t('Predictive'), + t('Advanced-Analytics'), + t('Aesthetic'), + t('Time'), + t('Line'), + t('Transformable'), + ], + thumbnail, + }), + transformProps: smoothTransformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/controlPanel.tsx new file mode 100644 index 000000000000..d7159472fab6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Regular/controlPanel.tsx @@ -0,0 +1,253 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + ControlPanelsContainerProps, + D3_TIME_FORMAT_DOCS, + emitFilterControl, + sections, + sharedControls, +} from '@superset-ui/chart-controls'; + +import { DEFAULT_FORM_DATA, EchartsTimeseriesContributionType } from '../types'; +import { + legendSection, + richTooltipSection, + showValueSection, +} from '../../controls'; + +const { + contributionMode, + logAxis, + markerEnabled, + markerSize, + minorSplitLine, + rowLimit, + truncateYAxis, + yAxisBounds, + zoomable, + xAxisLabelRotation, +} = DEFAULT_FORM_DATA; +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['groupby'], + [ + { + name: 'contributionMode', + config: { + type: 'SelectControl', + label: t('Contribution Mode'), + default: contributionMode, + choices: [ + [null, 'None'], + [EchartsTimeseriesContributionType.Row, 'Total'], + [EchartsTimeseriesContributionType.Column, 'Series'], + ], + description: t('Calculate contribution per series or total'), + }, + }, + ], + ['adhoc_filters'], + emitFilterControl, + ['limit'], + ['timeseries_limit_metric'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: true, + description: t('Whether to sort descending or ascending'), + }, + }, + ], + ['row_limit'], + ], + }, + sections.advancedAnalyticsControls, + sections.annotationsAndLayersControls, + sections.forecastIntervalControls, + sections.titleControls, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + ...showValueSection, + [ + { + name: 'markerEnabled', + config: { + type: 'CheckboxControl', + label: t('Marker'), + renderTrigger: true, + default: markerEnabled, + description: t( + 'Draw a marker on data points. Only applicable for line types.', + ), + }, + }, + ], + [ + { + name: 'markerSize', + config: { + type: 'SliderControl', + label: t('Marker Size'), + renderTrigger: true, + min: 0, + max: 20, + default: markerSize, + description: t( + 'Size of marker. Also applies to forecast observations.', + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.markerEnabled?.value), + }, + }, + ], + [ + { + name: 'zoomable', + config: { + type: 'CheckboxControl', + label: t('Data Zoom'), + default: zoomable, + renderTrigger: true, + description: t('Enable data zooming controls'), + }, + }, + ], + ...legendSection, + [

{t('X Axis')}

], + [ + { + name: 'x_axis_time_format', + config: { + ...sharedControls.x_axis_time_format, + default: 'smart_date', + description: `${D3_TIME_FORMAT_DOCS}. ${t( + 'When using other than adaptive formatting, labels may overlap.', + )}`, + }, + }, + ], + [ + { + name: 'xAxisLabelRotation', + config: { + type: 'SelectControl', + freeForm: true, + clearable: false, + label: t('Rotate x axis label'), + choices: [ + [0, '0°'], + [45, '45°'], + ], + default: xAxisLabelRotation, + renderTrigger: true, + description: t( + 'Input field supports custom rotation. e.g. 30 for 30°', + ), + }, + }, + ], + // eslint-disable-next-line react/jsx-key + ...richTooltipSection, + // eslint-disable-next-line react/jsx-key + [

{t('Y Axis')}

], + + ['y_axis_format'], + [ + { + name: 'logAxis', + config: { + type: 'CheckboxControl', + label: t('Logarithmic y-axis'), + renderTrigger: true, + default: logAxis, + description: t('Logarithmic y-axis'), + }, + }, + ], + [ + { + name: 'minorSplitLine', + config: { + type: 'CheckboxControl', + label: t('Minor Split Line'), + renderTrigger: true, + default: minorSplitLine, + description: t('Draw split lines for minor y-axis ticks'), + }, + }, + ], + [ + { + name: 'truncateYAxis', + config: { + type: 'CheckboxControl', + label: t('Truncate Y Axis'), + default: truncateYAxis, + renderTrigger: true, + description: t( + 'Truncate Y Axis. Can be overridden by specifying a min or max bound.', + ), + }, + }, + ], + [ + { + name: 'y_axis_bounds', + config: { + type: 'BoundsControl', + label: t('Y Axis Bounds'), + renderTrigger: true, + default: yAxisBounds, + description: t( + 'Bounds for the Y-axis. When left empty, the bounds are ' + + 'dynamically defined based on the min/max of the data. Note that ' + + "this feature will only expand the axis range. It won't " + + "narrow the data's extent.", + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.truncateYAxis?.value), + }, + }, + ], + ], + }, + ], + controlOverrides: { + row_limit: { + default: rowLimit, + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx new file mode 100644 index 000000000000..a006d0f66691 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx @@ -0,0 +1,309 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + ControlPanelsContainerProps, + D3_TIME_FORMAT_DOCS, + sections, + sharedControls, + emitFilterControl, +} from '@superset-ui/chart-controls'; + +import { + DEFAULT_FORM_DATA, + EchartsTimeseriesContributionType, + EchartsTimeseriesSeriesType, +} from '../types'; +import { + legendSection, + richTooltipSection, + showValueSection, +} from '../../controls'; + +const { + area, + contributionMode, + logAxis, + markerEnabled, + markerSize, + minorSplitLine, + opacity, + rowLimit, + truncateYAxis, + yAxisBounds, + zoomable, + xAxisLabelRotation, +} = DEFAULT_FORM_DATA; +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['groupby'], + [ + { + name: 'contributionMode', + config: { + type: 'SelectControl', + label: t('Contribution Mode'), + default: contributionMode, + choices: [ + [null, 'None'], + [EchartsTimeseriesContributionType.Row, 'Total'], + [EchartsTimeseriesContributionType.Column, 'Series'], + ], + description: t('Calculate contribution per series or total'), + }, + }, + ], + ['adhoc_filters'], + emitFilterControl, + ['limit'], + ['timeseries_limit_metric'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: true, + description: t('Whether to sort descending or ascending'), + }, + }, + ], + ['row_limit'], + ], + }, + sections.advancedAnalyticsControls, + sections.annotationsAndLayersControls, + sections.forecastIntervalControls, + sections.titleControls, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + [ + { + name: 'seriesType', + config: { + type: 'SelectControl', + label: t('Step type'), + renderTrigger: true, + default: EchartsTimeseriesSeriesType.Start, + choices: [ + [EchartsTimeseriesSeriesType.Start, 'Start'], + [EchartsTimeseriesSeriesType.Middle, 'Middle'], + [EchartsTimeseriesSeriesType.End, 'End'], + ], + description: t( + 'Defines whether the step should appear at the beginning, middle or end between two data points', + ), + }, + }, + ], + ...showValueSection, + [ + { + name: 'area', + config: { + type: 'CheckboxControl', + label: t('Area Chart'), + renderTrigger: true, + default: area, + description: t( + 'Draw area under curves. Only applicable for line types.', + ), + }, + }, + ], + [ + { + name: 'opacity', + config: { + type: 'SliderControl', + label: t('Area chart opacity'), + renderTrigger: true, + min: 0, + max: 1, + step: 0.1, + default: opacity, + description: t( + 'Opacity of Area Chart. Also applies to confidence band.', + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.area?.value), + }, + }, + ], + [ + { + name: 'markerEnabled', + config: { + type: 'CheckboxControl', + label: t('Marker'), + renderTrigger: true, + default: markerEnabled, + description: t( + 'Draw a marker on data points. Only applicable for line types.', + ), + }, + }, + ], + [ + { + name: 'markerSize', + config: { + type: 'SliderControl', + label: t('Marker Size'), + renderTrigger: true, + min: 0, + max: 20, + default: markerSize, + description: t( + 'Size of marker. Also applies to forecast observations.', + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.markerEnabled?.value), + }, + }, + ], + [ + { + name: 'zoomable', + config: { + type: 'CheckboxControl', + label: t('Data Zoom'), + default: zoomable, + renderTrigger: true, + description: t('Enable data zooming controls'), + }, + }, + ], + ...legendSection, + [

{t('X Axis')}

], + [ + { + name: 'x_axis_time_format', + config: { + ...sharedControls.x_axis_time_format, + default: 'smart_date', + description: `${D3_TIME_FORMAT_DOCS}. ${t( + 'When using other than adaptive formatting, labels may overlap.', + )}`, + }, + }, + ], + [ + { + name: 'xAxisLabelRotation', + config: { + type: 'SelectControl', + freeForm: true, + clearable: false, + label: t('Rotate x axis label'), + choices: [ + [0, '0°'], + [45, '45°'], + ], + default: xAxisLabelRotation, + renderTrigger: true, + description: t( + 'Input field supports custom rotation. e.g. 30 for 30°', + ), + }, + }, + ], + ...richTooltipSection, + // eslint-disable-next-line react/jsx-key + [

{t('Y Axis')}

], + ['y_axis_format'], + [ + { + name: 'logAxis', + config: { + type: 'CheckboxControl', + label: t('Logarithmic y-axis'), + renderTrigger: true, + default: logAxis, + description: t('Logarithmic y-axis'), + }, + }, + ], + [ + { + name: 'minorSplitLine', + config: { + type: 'CheckboxControl', + label: t('Minor Split Line'), + renderTrigger: true, + default: minorSplitLine, + description: t('Draw split lines for minor y-axis ticks'), + }, + }, + ], + [ + { + name: 'truncateYAxis', + config: { + type: 'CheckboxControl', + label: t('Truncate Y Axis'), + default: truncateYAxis, + renderTrigger: true, + description: t( + 'Truncate Y Axis. Can be overridden by specifying a min or max bound.', + ), + }, + }, + ], + [ + { + name: 'y_axis_bounds', + config: { + type: 'BoundsControl', + label: t('Y Axis Bounds'), + renderTrigger: true, + default: yAxisBounds, + description: t( + 'Bounds for the Y-axis. When left empty, the bounds are ' + + 'dynamically defined based on the min/max of the data. Note that ' + + "this feature will only expand the axis range. It won't " + + "narrow the data's extent.", + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.truncateYAxis?.value), + }, + }, + ], + ], + }, + ], + controlOverrides: { + row_limit: { + default: rowLimit, + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Step/images/Step1.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Step/images/Step1.png new file mode 100644 index 000000000000..18256cfde482 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Step/images/Step1.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Step/images/Step2.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Step/images/Step2.png new file mode 100644 index 000000000000..2a2633a451f3 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Step/images/Step2.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Step/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Step/images/thumbnail.png new file mode 100644 index 000000000000..3bb060b9c26a Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Step/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts new file mode 100644 index 000000000000..ddf18ebe5b36 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts @@ -0,0 +1,75 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + t, + ChartMetadata, + ChartPlugin, + AnnotationType, + Behavior, +} from '@superset-ui/core'; +import buildQuery from '../buildQuery'; +import controlPanel from './controlPanel'; +import transformProps from '../transformProps'; +import thumbnail from './images/thumbnail.png'; +import { + EchartsTimeseriesChartProps, + EchartsTimeseriesFormData, +} from '../types'; +import example1 from './images/Step1.png'; +import example2 from './images/Step2.png'; + +export default class EchartsTimeseriesStepChartPlugin extends ChartPlugin< + EchartsTimeseriesFormData, + EchartsTimeseriesChartProps +> { + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('../EchartsTimeseries'), + metadata: new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('Evolution'), + credits: ['https://echarts.apache.org'], + description: t( + 'Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.', + ), + exampleGallery: [{ url: example1 }, { url: example2 }], + supportedAnnotationTypes: [ + AnnotationType.Event, + AnnotationType.Formula, + AnnotationType.Interval, + AnnotationType.Timeseries, + ], + name: t('Time-series Stepped Line'), + tags: [ + t('ECharts'), + t('Predictive'), + t('Advanced-Analytics'), + t('Aesthetic'), + t('Time'), + t('Transformable'), + t('Stacked'), + ], + thumbnail, + }), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/buildQuery.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/buildQuery.ts new file mode 100644 index 000000000000..5d02f2fb0fc5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/buildQuery.ts @@ -0,0 +1,79 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + buildQueryContext, + QueryFormData, + normalizeOrderBy, + RollingType, + PostProcessingPivot, +} from '@superset-ui/core'; +import { + rollingWindowOperator, + timeCompareOperator, + isValidTimeCompare, + sortOperator, + pivotOperator, + resampleOperator, + contributionOperator, + prophetOperator, +} from '@superset-ui/chart-controls'; + +export default function buildQuery(formData: QueryFormData) { + return buildQueryContext(formData, baseQueryObject => { + const pivotOperatorInRuntime: PostProcessingPivot | undefined = + pivotOperator(formData, { + ...baseQueryObject, + is_timeseries: true, + }); + if ( + pivotOperatorInRuntime && + Object.values(RollingType).includes(formData.rolling_type) + ) { + pivotOperatorInRuntime.options = { + ...pivotOperatorInRuntime.options, + ...{ + flatten_columns: false, + reset_index: false, + }, + }; + } + + return [ + { + ...baseQueryObject, + is_timeseries: true, + // todo: move `normalizeOrderBy to extractQueryFields` + orderby: normalizeOrderBy(baseQueryObject).orderby, + time_offsets: isValidTimeCompare(formData, baseQueryObject) + ? formData.time_compare + : [], + post_processing: [ + resampleOperator(formData, baseQueryObject), + timeCompareOperator(formData, baseQueryObject), + sortOperator(formData, { ...baseQueryObject, is_timeseries: true }), + // in order to be able to rolling in multiple series, must do pivot before rollingOperator + pivotOperatorInRuntime, + rollingWindowOperator(formData, baseQueryObject), + contributionOperator(formData, baseQueryObject), + prophetOperator(formData, baseQueryObject), + ], + }, + ]; + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/controlPanel.tsx new file mode 100644 index 000000000000..2763a62c0593 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/controlPanel.tsx @@ -0,0 +1,312 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + ControlPanelsContainerProps, + D3_TIME_FORMAT_DOCS, + sections, + sharedControls, + emitFilterControl, +} from '@superset-ui/chart-controls'; + +import { + DEFAULT_FORM_DATA, + EchartsTimeseriesContributionType, + EchartsTimeseriesSeriesType, +} from './types'; +import { + legendSection, + richTooltipSection, + showValueSection, +} from '../controls'; + +const { + area, + contributionMode, + logAxis, + markerEnabled, + markerSize, + minorSplitLine, + opacity, + rowLimit, + seriesType, + truncateYAxis, + yAxisBounds, + zoomable, + xAxisLabelRotation, +} = DEFAULT_FORM_DATA; +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['metrics'], + ['groupby'], + [ + { + name: 'contributionMode', + config: { + type: 'SelectControl', + label: t('Contribution Mode'), + default: contributionMode, + choices: [ + [null, 'None'], + [EchartsTimeseriesContributionType.Row, 'Total'], + [EchartsTimeseriesContributionType.Column, 'Series'], + ], + description: t('Calculate contribution per series or total'), + }, + }, + ], + ['adhoc_filters'], + emitFilterControl, + ['limit'], + ['timeseries_limit_metric'], + [ + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort Descending'), + default: true, + description: t('Whether to sort descending or ascending'), + }, + }, + ], + ['row_limit'], + ], + }, + sections.advancedAnalyticsControls, + sections.annotationsAndLayersControls, + sections.forecastIntervalControls, + sections.titleControls, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + [ + { + name: 'seriesType', + config: { + type: 'SelectControl', + label: t('Series Style'), + renderTrigger: true, + default: seriesType, + choices: [ + [EchartsTimeseriesSeriesType.Line, 'Line'], + [EchartsTimeseriesSeriesType.Scatter, 'Scatter'], + [EchartsTimeseriesSeriesType.Smooth, 'Smooth Line'], + [EchartsTimeseriesSeriesType.Bar, 'Bar'], + [EchartsTimeseriesSeriesType.Start, 'Step - start'], + [EchartsTimeseriesSeriesType.Middle, 'Step - middle'], + [EchartsTimeseriesSeriesType.End, 'Step - end'], + ], + description: t('Series chart type (line, bar etc)'), + }, + }, + ], + ...showValueSection, + [ + { + name: 'area', + config: { + type: 'CheckboxControl', + label: t('Area Chart'), + renderTrigger: true, + default: area, + description: t( + 'Draw area under curves. Only applicable for line types.', + ), + }, + }, + ], + [ + { + name: 'opacity', + config: { + type: 'SliderControl', + label: t('Area chart opacity'), + renderTrigger: true, + min: 0, + max: 1, + step: 0.1, + default: opacity, + description: t( + 'Opacity of Area Chart. Also applies to confidence band.', + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.area?.value), + }, + }, + ], + [ + { + name: 'markerEnabled', + config: { + type: 'CheckboxControl', + label: t('Marker'), + renderTrigger: true, + default: markerEnabled, + description: t( + 'Draw a marker on data points. Only applicable for line types.', + ), + }, + }, + ], + [ + { + name: 'markerSize', + config: { + type: 'SliderControl', + label: t('Marker Size'), + renderTrigger: true, + min: 0, + max: 20, + default: markerSize, + description: t( + 'Size of marker. Also applies to forecast observations.', + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.markerEnabled?.value), + }, + }, + ], + [ + { + name: 'zoomable', + config: { + type: 'CheckboxControl', + label: t('Data Zoom'), + default: zoomable, + renderTrigger: true, + description: t('Enable data zooming controls'), + }, + }, + ], + ...legendSection, + [

{t('X Axis')}

], + [ + { + name: 'x_axis_time_format', + config: { + ...sharedControls.x_axis_time_format, + default: 'smart_date', + description: `${D3_TIME_FORMAT_DOCS}. ${t( + 'When using other than adaptive formatting, labels may overlap.', + )}`, + }, + }, + ], + [ + { + name: 'xAxisLabelRotation', + config: { + type: 'SelectControl', + freeForm: true, + clearable: false, + label: t('Rotate x axis label'), + choices: [ + [0, '0°'], + [45, '45°'], + ], + default: xAxisLabelRotation, + renderTrigger: true, + description: t( + 'Input field supports custom rotation. e.g. 30 for 30°', + ), + }, + }, + ], + ...richTooltipSection, + // eslint-disable-next-line react/jsx-key + [

{t('Y Axis')}

], + ['y_axis_format'], + [ + { + name: 'logAxis', + config: { + type: 'CheckboxControl', + label: t('Logarithmic y-axis'), + renderTrigger: true, + default: logAxis, + description: t('Logarithmic y-axis'), + }, + }, + ], + [ + { + name: 'minorSplitLine', + config: { + type: 'CheckboxControl', + label: t('Minor Split Line'), + renderTrigger: true, + default: minorSplitLine, + description: t('Draw split lines for minor y-axis ticks'), + }, + }, + ], + [ + { + name: 'truncateYAxis', + config: { + type: 'CheckboxControl', + label: t('Truncate Y Axis'), + default: truncateYAxis, + renderTrigger: true, + description: t( + 'Truncate Y Axis. Can be overridden by specifying a min or max bound.', + ), + }, + }, + ], + [ + { + name: 'y_axis_bounds', + config: { + type: 'BoundsControl', + label: t('Y Axis Bounds'), + renderTrigger: true, + default: yAxisBounds, + description: t( + 'Bounds for the Y-axis. When left empty, the bounds are ' + + 'dynamically defined based on the min/max of the data. Note that ' + + "this feature will only expand the axis range. It won't " + + "narrow the data's extent.", + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.truncateYAxis?.value), + }, + }, + ], + ], + }, + ], + controlOverrides: { + row_limit: { + default: rowLimit, + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/images/Time-series_Chart.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/images/Time-series_Chart.jpg new file mode 100644 index 000000000000..1e88c3c71ca2 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/images/Time-series_Chart.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/images/thumbnail.png new file mode 100644 index 000000000000..32b060e9dc4e Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/index.ts new file mode 100644 index 000000000000..48856ab5a32b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/index.ts @@ -0,0 +1,83 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + t, + ChartMetadata, + ChartPlugin, + AnnotationType, + Behavior, +} from '@superset-ui/core'; +import buildQuery from './buildQuery'; +import controlPanel from './controlPanel'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import { + EchartsTimeseriesChartProps, + EchartsTimeseriesFormData, +} from './types'; +import example from './images/Time-series_Chart.jpg'; + +export default class EchartsTimeseriesChartPlugin extends ChartPlugin< + EchartsTimeseriesFormData, + EchartsTimeseriesChartProps +> { + /** + * The constructor is used to pass relevant metadata and callbacks that get + * registered in respective registries that are used throughout the library + * and application. A more thorough description of each property is given in + * the respective imported file. + * + * It is worth noting that `buildQuery` and is optional, and only needed for + * advanced visualizations that require either post processing operations + * (pivoting, rolling aggregations, sorting etc) or submitting multiple queries. + */ + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('./EchartsTimeseries'), + metadata: new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('Evolution'), + credits: ['https://echarts.apache.org'], + description: t( + 'Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.', + ), + exampleGallery: [{ url: example }], + supportedAnnotationTypes: [ + AnnotationType.Event, + AnnotationType.Formula, + AnnotationType.Interval, + AnnotationType.Timeseries, + ], + name: t('Time-series Chart'), + tags: [ + t('Advanced-Analytics'), + t('Aesthetic'), + t('Line'), + t('Predictive'), + t('Time'), + t('Transformable'), + ], + thumbnail, + }), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts new file mode 100644 index 000000000000..b63feb35737c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts @@ -0,0 +1,372 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable camelcase */ +import { + AnnotationLayer, + CategoricalColorNamespace, + getNumberFormatter, + isEventAnnotationLayer, + isFormulaAnnotationLayer, + isIntervalAnnotationLayer, + isTimeseriesAnnotationLayer, + TimeseriesChartDataResponseResult, + DataRecordValue, +} from '@superset-ui/core'; +import { EChartsCoreOption, SeriesOption } from 'echarts'; +import { + DEFAULT_FORM_DATA, + EchartsTimeseriesChartProps, + EchartsTimeseriesFormData, + TimeseriesChartTransformedProps, +} from './types'; +import { ForecastSeriesEnum, ProphetValue } from '../types'; +import { parseYAxisBound } from '../utils/controls'; +import { + dedupSeries, + extractTimeseriesSeries, + getLegendProps, + currentSeries, +} from '../utils/series'; +import { extractAnnotationLabels } from '../utils/annotation'; +import { + extractForecastSeriesContext, + extractForecastSeriesContexts, + extractProphetValuesFromTooltipParams, + formatProphetTooltipSeries, + rebaseTimeseriesDatum, +} from '../utils/prophet'; +import { defaultGrid, defaultTooltip, defaultYAxis } from '../defaults'; +import { + getPadding, + getTooltipTimeFormatter, + getXAxisFormatter, + transformEventAnnotation, + transformFormulaAnnotation, + transformIntervalAnnotation, + transformSeries, + transformTimeseriesAnnotation, +} from './transformers'; +import { TIMESERIES_CONSTANTS } from '../constants'; + +export default function transformProps( + chartProps: EchartsTimeseriesChartProps, +): TimeseriesChartTransformedProps { + const { + width, + height, + filterState, + formData, + hooks, + queriesData, + datasource, + } = chartProps; + const { verboseMap = {} } = datasource; + const { annotation_data: annotationData_, data = [] } = + queriesData[0] as TimeseriesChartDataResponseResult; + const annotationData = annotationData_ || {}; + + const { + area, + annotationLayers, + colorScheme, + contributionMode, + forecastEnabled, + legendOrientation, + legendType, + legendMargin, + logAxis, + markerEnabled, + markerSize, + opacity, + minorSplitLine, + seriesType, + showLegend, + stack, + truncateYAxis, + yAxisFormat, + xAxisTimeFormat, + yAxisBounds, + tooltipTimeFormat, + tooltipSortByMetric, + zoomable, + richTooltip, + xAxisLabelRotation, + emitFilter, + groupby, + showValue, + onlyTotal, + xAxisTitle, + yAxisTitle, + xAxisTitleMargin, + yAxisTitleMargin, + yAxisTitlePosition, + }: EchartsTimeseriesFormData = { ...DEFAULT_FORM_DATA, ...formData }; + const colorScale = CategoricalColorNamespace.getScale(colorScheme as string); + const rebasedData = rebaseTimeseriesDatum(data, verboseMap); + const rawSeries = extractTimeseriesSeries(rebasedData, { + fillNeighborValue: stack && !forecastEnabled ? 0 : undefined, + }); + const seriesContexts = extractForecastSeriesContexts( + Object.values(rawSeries).map(series => series.name as string), + ); + const series: SeriesOption[] = []; + const formatter = getNumberFormatter(contributionMode ? ',.0%' : yAxisFormat); + + const totalStackedValues: number[] = []; + const showValueIndexes: number[] = []; + + rebasedData.forEach(data => { + const values = Object.keys(data).reduce((prev, curr) => { + if (curr === '__timestamp') { + return prev; + } + const value = data[curr] || 0; + return prev + (value as number); + }, 0); + totalStackedValues.push(values); + }); + + if (stack) { + rawSeries.forEach((entry, seriesIndex) => { + const { data = [] } = entry; + (data as [Date, number][]).forEach((datum, dataIndex) => { + if (datum[1] !== null) { + showValueIndexes[dataIndex] = seriesIndex; + } + }); + }); + } + + rawSeries.forEach(entry => { + const transformedSeries = transformSeries(entry, colorScale, { + area, + filterState, + seriesContexts, + markerEnabled, + markerSize, + areaOpacity: opacity, + seriesType, + stack, + formatter, + showValue, + onlyTotal, + totalStackedValues, + showValueIndexes, + richTooltip, + }); + if (transformedSeries) series.push(transformedSeries); + }); + + const selectedValues = (filterState.selectedValues || []).reduce( + (acc: Record, selectedValue: string) => { + const index = series.findIndex(({ name }) => name === selectedValue); + return { + ...acc, + [index]: selectedValue, + }; + }, + {}, + ); + + annotationLayers + .filter((layer: AnnotationLayer) => layer.show) + .forEach((layer: AnnotationLayer) => { + if (isFormulaAnnotationLayer(layer)) + series.push(transformFormulaAnnotation(layer, data, colorScale)); + else if (isIntervalAnnotationLayer(layer)) { + series.push( + ...transformIntervalAnnotation( + layer, + data, + annotationData, + colorScale, + ), + ); + } else if (isEventAnnotationLayer(layer)) { + series.push( + ...transformEventAnnotation(layer, data, annotationData, colorScale), + ); + } else if (isTimeseriesAnnotationLayer(layer)) { + series.push( + ...transformTimeseriesAnnotation( + layer, + markerSize, + data, + annotationData, + ), + ); + } + }); + + // yAxisBounds need to be parsed to replace incompatible values with undefined + let [min, max] = (yAxisBounds || []).map(parseYAxisBound); + + // default to 0-100% range when doing row-level contribution chart + if (contributionMode === 'row' && stack) { + if (min === undefined) min = 0; + if (max === undefined) max = 1; + } + + const tooltipFormatter = getTooltipTimeFormatter(tooltipTimeFormat); + const xAxisFormatter = getXAxisFormatter(xAxisTimeFormat); + + const labelMap = series.reduce( + (acc: Record, datum) => { + const name: string = datum.name as string; + return { + ...acc, + [name]: [name], + }; + }, + {}, + ); + + const { setDataMask = () => {} } = hooks; + + const addYAxisLabelOffset = !!yAxisTitle; + const addXAxisLabelOffset = !!xAxisTitle; + const padding = getPadding( + showLegend, + legendOrientation, + addYAxisLabelOffset, + zoomable, + legendMargin, + addXAxisLabelOffset, + yAxisTitlePosition, + yAxisTitleMargin, + xAxisTitleMargin, + ); + + const legendData = rawSeries + .filter( + entry => + extractForecastSeriesContext(entry.name || '').type === + ForecastSeriesEnum.Observation, + ) + .map(entry => entry.name || '') + .concat(extractAnnotationLabels(annotationLayers, annotationData)); + + const echartOptions: EChartsCoreOption = { + useUTC: true, + grid: { + ...defaultGrid, + ...padding, + }, + xAxis: { + type: 'time', + name: xAxisTitle, + nameGap: xAxisTitleMargin, + nameLocation: 'middle', + axisLabel: { + hideOverlap: true, + formatter: xAxisFormatter, + rotate: xAxisLabelRotation, + }, + }, + yAxis: { + ...defaultYAxis, + type: logAxis ? 'log' : 'value', + min, + max, + minorTick: { show: true }, + minorSplitLine: { show: minorSplitLine }, + axisLabel: { formatter }, + scale: truncateYAxis, + name: yAxisTitle, + nameGap: yAxisTitleMargin, + nameLocation: yAxisTitlePosition === 'Left' ? 'middle' : 'end', + }, + tooltip: { + ...defaultTooltip, + appendToBody: true, + trigger: richTooltip ? 'axis' : 'item', + formatter: (params: any) => { + const xValue: number = richTooltip + ? params[0].value[0] + : params.value[0]; + const prophetValue: any[] = richTooltip ? params : [params]; + + if (richTooltip && tooltipSortByMetric) { + prophetValue.sort((a, b) => b.data[1] - a.data[1]); + } + + const rows: Array = [`${tooltipFormatter(xValue)}`]; + const prophetValues: Record = + extractProphetValuesFromTooltipParams(prophetValue); + + Object.keys(prophetValues).forEach(key => { + const value = prophetValues[key]; + const content = formatProphetTooltipSeries({ + ...value, + seriesName: key, + formatter, + }); + if (currentSeries.name === key) { + rows.push(`${content}`); + } else { + rows.push(`${content}`); + } + }); + return rows.join('
'); + }, + }, + legend: { + ...getLegendProps(legendType, legendOrientation, showLegend, zoomable), + data: legendData as string[], + }, + series: dedupSeries(series), + toolbox: { + show: zoomable, + top: TIMESERIES_CONSTANTS.toolboxTop, + right: TIMESERIES_CONSTANTS.toolboxRight, + feature: { + dataZoom: { + yAxisIndex: false, + title: { + zoom: 'zoom area', + back: 'restore zoom', + }, + }, + }, + }, + dataZoom: zoomable + ? [ + { + type: 'slider', + start: TIMESERIES_CONSTANTS.dataZoomStart, + end: TIMESERIES_CONSTANTS.dataZoomEnd, + bottom: TIMESERIES_CONSTANTS.zoomBottom, + }, + ] + : [], + }; + + return { + echartOptions, + emitFilter, + formData, + groupby, + height, + labelMap, + selectedValues, + setDataMask, + width, + legendData, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/transformers.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/transformers.ts new file mode 100644 index 000000000000..3ca56006adce --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/transformers.ts @@ -0,0 +1,484 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + AnnotationData, + AnnotationOpacity, + CategoricalColorScale, + EventAnnotationLayer, + FilterState, + FormulaAnnotationLayer, + getTimeFormatter, + IntervalAnnotationLayer, + isTimeseriesAnnotationResult, + NumberFormatter, + smartDateDetailedFormatter, + smartDateFormatter, + TimeFormatter, + TimeseriesAnnotationLayer, + TimeseriesDataRecord, +} from '@superset-ui/core'; +import { SeriesOption } from 'echarts'; +import { + CallbackDataParams, + DefaultStatesMixin, + ItemStyleOption, + LineStyleOption, + OptionName, + SeriesLabelOption, + SeriesLineLabelOption, + ZRLineType, +} from 'echarts/types/src/util/types'; +import { + MarkArea1DDataItemOption, + MarkArea2DDataItemOption, +} from 'echarts/types/src/component/marker/MarkAreaModel'; +import { MarkLine1DDataItemOption } from 'echarts/types/src/component/marker/MarkLineModel'; + +import { extractForecastSeriesContext } from '../utils/prophet'; +import { ForecastSeriesEnum, LegendOrientation } from '../types'; +import { EchartsTimeseriesSeriesType } from './types'; + +import { + evalFormula, + extractRecordAnnotations, + formatAnnotationLabel, + parseAnnotationOpacity, +} from '../utils/annotation'; +import { currentSeries, getChartPadding } from '../utils/series'; +import { OpacityEnum, TIMESERIES_CONSTANTS } from '../constants'; + +export function transformSeries( + series: SeriesOption, + colorScale: CategoricalColorScale, + opts: { + area?: boolean; + filterState?: FilterState; + seriesContexts?: { [key: string]: ForecastSeriesEnum[] }; + markerEnabled?: boolean; + markerSize?: number; + areaOpacity?: number; + seriesType?: EchartsTimeseriesSeriesType; + stack?: boolean; + yAxisIndex?: number; + showValue?: boolean; + onlyTotal?: boolean; + formatter?: NumberFormatter; + totalStackedValues?: number[]; + showValueIndexes?: number[]; + richTooltip?: boolean; + }, +): SeriesOption | undefined { + const { name } = series; + const { + area, + filterState, + seriesContexts = {}, + markerEnabled, + markerSize, + areaOpacity = 1, + seriesType, + stack, + yAxisIndex = 0, + showValue, + onlyTotal, + formatter, + totalStackedValues = [], + showValueIndexes = [], + richTooltip, + } = opts; + const contexts = seriesContexts[name || ''] || []; + const hasForecast = + contexts.includes(ForecastSeriesEnum.ForecastTrend) || + contexts.includes(ForecastSeriesEnum.ForecastLower) || + contexts.includes(ForecastSeriesEnum.ForecastUpper); + + const forecastSeries = extractForecastSeriesContext(name || ''); + const isConfidenceBand = + forecastSeries.type === ForecastSeriesEnum.ForecastLower || + forecastSeries.type === ForecastSeriesEnum.ForecastUpper; + const isFiltered = + filterState?.selectedValues && !filterState?.selectedValues.includes(name); + const opacity = isFiltered + ? OpacityEnum.SemiTransparent + : OpacityEnum.NonTransparent; + + // don't create a series if doing a stack or area chart and the result + // is a confidence band + if ((stack || area) && isConfidenceBand) return undefined; + + const isObservation = forecastSeries.type === ForecastSeriesEnum.Observation; + const isTrend = forecastSeries.type === ForecastSeriesEnum.ForecastTrend; + let stackId; + if (isConfidenceBand) { + stackId = forecastSeries.name; + } else if (stack && isObservation) { + // the suffix of the observation series is '' (falsy), which disables + // stacking. Therefore we need to set something that is truthy. + stackId = 'obs'; + } else if (stack && isTrend) { + stackId = forecastSeries.type; + } + let plotType; + if ( + !isConfidenceBand && + (seriesType === 'scatter' || (hasForecast && isObservation)) + ) { + plotType = 'scatter'; + } else if (isConfidenceBand) { + plotType = 'line'; + } else { + plotType = seriesType === 'bar' ? 'bar' : 'line'; + } + const itemStyle = { + color: colorScale(forecastSeries.name), + opacity, + }; + let emphasis = {}; + let showSymbol = false; + if (!isConfidenceBand) { + if (plotType === 'scatter') { + showSymbol = true; + } else if (hasForecast && isObservation) { + showSymbol = true; + } else if (plotType === 'line' && showValue) { + showSymbol = true; + } else if (plotType === 'line' && !richTooltip && !markerEnabled) { + // this is hack to make timeseries line chart clickable when tooltip trigger is 'item' + // so that the chart can emit cross-filtering + showSymbol = true; + itemStyle.opacity = 0; + emphasis = { + itemStyle: { + opacity: 1, + }, + }; + } else if (markerEnabled) { + showSymbol = true; + } + } + const lineStyle = isConfidenceBand + ? { opacity: OpacityEnum.Transparent } + : { opacity }; + return { + ...series, + yAxisIndex, + name: forecastSeries.name, + itemStyle, + // @ts-ignore + type: plotType, + smooth: seriesType === 'smooth', + triggerLineEvent: true, + // @ts-ignore + step: ['start', 'middle', 'end'].includes(seriesType as string) + ? seriesType + : undefined, + stack: stackId, + lineStyle, + areaStyle: + area || forecastSeries.type === ForecastSeriesEnum.ForecastUpper + ? { + opacity: opacity * areaOpacity, + } + : undefined, + emphasis, + showSymbol, + symbolSize: markerSize, + label: { + show: !!showValue, + position: 'top', + formatter: (params: any) => { + const { + value: [, numericValue], + dataIndex, + seriesIndex, + seriesName, + } = params; + const isSelectedLegend = currentSeries.legend === seriesName; + if (!formatter) return numericValue; + if (!stack || !onlyTotal || isSelectedLegend) { + return formatter(numericValue); + } + if (seriesIndex === showValueIndexes[dataIndex]) { + return formatter(totalStackedValues[dataIndex]); + } + return ''; + }, + }, + }; +} + +export function transformFormulaAnnotation( + layer: FormulaAnnotationLayer, + data: TimeseriesDataRecord[], + colorScale: CategoricalColorScale, +): SeriesOption { + const { name, color, opacity, width, style } = layer; + return { + name, + id: name, + itemStyle: { + color: color || colorScale(name), + }, + lineStyle: { + opacity: parseAnnotationOpacity(opacity), + type: style as ZRLineType, + width, + }, + type: 'line', + smooth: true, + data: evalFormula(layer, data), + symbolSize: 0, + }; +} + +export function transformIntervalAnnotation( + layer: IntervalAnnotationLayer, + data: TimeseriesDataRecord[], + annotationData: AnnotationData, + colorScale: CategoricalColorScale, +): SeriesOption[] { + const series: SeriesOption[] = []; + const annotations = extractRecordAnnotations(layer, annotationData); + annotations.forEach(annotation => { + const { name, color, opacity, showLabel } = layer; + const { descriptions, intervalEnd, time, title } = annotation; + const label = formatAnnotationLabel(name, title, descriptions); + const intervalData: ( + | MarkArea1DDataItemOption + | MarkArea2DDataItemOption + )[] = [ + [ + { + name: label, + xAxis: time, + }, + { + xAxis: intervalEnd, + }, + ], + ]; + const intervalLabel: SeriesLabelOption = showLabel + ? { + show: true, + color: '#000000', + position: 'insideTop', + verticalAlign: 'top', + fontWeight: 'bold', + // @ts-ignore + emphasis: { + position: 'insideTop', + verticalAlign: 'top', + backgroundColor: '#ffffff', + }, + } + : { + show: false, + color: '#000000', + // @ts-ignore + emphasis: { + fontWeight: 'bold', + show: true, + position: 'insideTop', + verticalAlign: 'top', + backgroundColor: '#ffffff', + }, + }; + series.push({ + id: `Interval - ${label}`, + type: 'line', + animation: false, + markArea: { + silent: false, + itemStyle: { + color: color || colorScale(name), + opacity: parseAnnotationOpacity(opacity || AnnotationOpacity.Medium), + emphasis: { + opacity: 0.8, + }, + } as ItemStyleOption, + label: intervalLabel, + data: intervalData, + }, + }); + }); + return series; +} + +export function transformEventAnnotation( + layer: EventAnnotationLayer, + data: TimeseriesDataRecord[], + annotationData: AnnotationData, + colorScale: CategoricalColorScale, +): SeriesOption[] { + const series: SeriesOption[] = []; + const annotations = extractRecordAnnotations(layer, annotationData); + annotations.forEach(annotation => { + const { name, color, opacity, style, width, showLabel } = layer; + const { descriptions, time, title } = annotation; + const label = formatAnnotationLabel(name, title, descriptions); + const eventData: MarkLine1DDataItemOption[] = [ + { + name: label, + xAxis: time as unknown as number, + }, + ]; + + const lineStyle: LineStyleOption & DefaultStatesMixin['emphasis'] = { + width, + type: style as ZRLineType, + color: color || colorScale(name), + opacity: parseAnnotationOpacity(opacity), + emphasis: { + width: width ? width + 1 : width, + opacity: 1, + }, + }; + + const eventLabel: SeriesLineLabelOption = showLabel + ? { + show: true, + color: '#000000', + position: 'insideEndTop', + fontWeight: 'bold', + formatter: (params: CallbackDataParams) => params.name, + // @ts-ignore + emphasis: { + backgroundColor: '#ffffff', + }, + } + : { + show: false, + color: '#000000', + position: 'insideEndTop', + // @ts-ignore + emphasis: { + formatter: (params: CallbackDataParams) => params.name, + fontWeight: 'bold', + show: true, + backgroundColor: '#ffffff', + }, + }; + + series.push({ + id: `Event - ${label}`, + type: 'line', + animation: false, + markLine: { + silent: false, + symbol: 'none', + lineStyle, + label: eventLabel, + data: eventData, + }, + }); + }); + return series; +} + +export function transformTimeseriesAnnotation( + layer: TimeseriesAnnotationLayer, + markerSize: number, + data: TimeseriesDataRecord[], + annotationData: AnnotationData, +): SeriesOption[] { + const series: SeriesOption[] = []; + const { hideLine, name, opacity, showMarkers, style, width } = layer; + const result = annotationData[name]; + if (isTimeseriesAnnotationResult(result)) { + result.forEach(annotation => { + const { key, values } = annotation; + series.push({ + type: 'line', + id: key, + name: key, + data: values.map(row => [row.x, row.y] as [OptionName, number]), + symbolSize: showMarkers ? markerSize : 0, + lineStyle: { + opacity: parseAnnotationOpacity(opacity), + type: style as ZRLineType, + width: hideLine ? 0 : width, + }, + }); + }); + } + return series; +} + +export function getPadding( + showLegend: boolean, + legendOrientation: LegendOrientation, + addYAxisTitleOffset: boolean, + zoomable: boolean, + margin?: string | number | null, + addXAxisTitleOffset?: boolean, + yAxisTitlePosition?: string, + yAxisTitleMargin?: number, + xAxisTitleMargin?: number, +): { + bottom: number; + left: number; + right: number; + top: number; +} { + const yAxisOffset = addYAxisTitleOffset + ? TIMESERIES_CONSTANTS.yAxisLabelTopOffset + : 0; + const xAxisOffset = addXAxisTitleOffset ? xAxisTitleMargin || 0 : 0; + return getChartPadding(showLegend, legendOrientation, margin, { + top: + yAxisTitlePosition && yAxisTitlePosition === 'Top' + ? TIMESERIES_CONSTANTS.gridOffsetTop + (yAxisTitleMargin || 0) + : TIMESERIES_CONSTANTS.gridOffsetTop + yAxisOffset, + bottom: zoomable + ? TIMESERIES_CONSTANTS.gridOffsetBottomZoomable + xAxisOffset + : TIMESERIES_CONSTANTS.gridOffsetBottom + xAxisOffset, + left: + yAxisTitlePosition === 'Left' + ? TIMESERIES_CONSTANTS.gridOffsetLeft + (yAxisTitleMargin || 0) + : TIMESERIES_CONSTANTS.gridOffsetLeft, + right: + showLegend && legendOrientation === LegendOrientation.Right + ? 0 + : TIMESERIES_CONSTANTS.gridOffsetRight, + }); +} + +export function getTooltipTimeFormatter( + format?: string, +): TimeFormatter | StringConstructor { + if (format === smartDateFormatter.id) { + return smartDateDetailedFormatter; + } + if (format) { + return getTimeFormatter(format); + } + return String; +} + +export function getXAxisFormatter( + format?: string, +): TimeFormatter | StringConstructor | undefined { + if (format === smartDateFormatter.id || !format) { + return undefined; + } + if (format) { + return getTimeFormatter(format); + } + return String; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/types.ts new file mode 100644 index 000000000000..ac634239229d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Timeseries/types.ts @@ -0,0 +1,129 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + AnnotationLayer, + ChartDataResponseResult, + ChartProps, + QueryFormColumn, + QueryFormData, + TimeGranularity, +} from '@superset-ui/core'; +import { sections } from '@superset-ui/chart-controls'; +import { + DEFAULT_LEGEND_FORM_DATA, + EchartsLegendFormData, + EChartTransformedProps, + EchartsTitleFormData, + DEFAULT_TITLE_FORM_DATA, +} from '../types'; + +export enum EchartsTimeseriesContributionType { + Row = 'row', + Column = 'column', +} + +export enum EchartsTimeseriesSeriesType { + Line = 'line', + Scatter = 'scatter', + Smooth = 'smooth', + Bar = 'bar', + Start = 'start', + Middle = 'middle', + End = 'end', +} + +export type EchartsTimeseriesFormData = QueryFormData & { + annotationLayers: AnnotationLayer[]; + area: boolean; + colorScheme?: string; + contributionMode?: EchartsTimeseriesContributionType; + forecastEnabled: boolean; + forecastPeriods: number; + forecastInterval: number; + forecastSeasonalityDaily: null; + forecastSeasonalityWeekly: null; + forecastSeasonalityYearly: null; + logAxis: boolean; + markerEnabled: boolean; + markerSize: number; + minorSplitLine: boolean; + opacity: number; + orderDesc: boolean; + rowLimit: number; + seriesType: EchartsTimeseriesSeriesType; + stack: boolean; + tooltipTimeFormat?: string; + truncateYAxis: boolean; + yAxisFormat?: string; + xAxisTimeFormat?: string; + timeGrainSqla?: TimeGranularity; + yAxisBounds: [number | undefined | null, number | undefined | null]; + zoomable: boolean; + richTooltip: boolean; + xAxisLabelRotation: number; + emitFilter: boolean; + groupby: QueryFormColumn[]; + showValue: boolean; + onlyTotal: boolean; +} & EchartsLegendFormData & + EchartsTitleFormData; + +// @ts-ignore +export const DEFAULT_FORM_DATA: EchartsTimeseriesFormData = { + ...DEFAULT_LEGEND_FORM_DATA, + annotationLayers: sections.annotationLayers, + area: false, + forecastEnabled: sections.FORECAST_DEFAULT_DATA.forecastEnabled, + forecastInterval: sections.FORECAST_DEFAULT_DATA.forecastInterval, + forecastPeriods: sections.FORECAST_DEFAULT_DATA.forecastPeriods, + forecastSeasonalityDaily: + sections.FORECAST_DEFAULT_DATA.forecastSeasonalityDaily, + forecastSeasonalityWeekly: + sections.FORECAST_DEFAULT_DATA.forecastSeasonalityWeekly, + forecastSeasonalityYearly: + sections.FORECAST_DEFAULT_DATA.forecastSeasonalityYearly, + logAxis: false, + markerEnabled: false, + markerSize: 6, + minorSplitLine: false, + opacity: 0.2, + orderDesc: true, + rowLimit: 10000, + seriesType: EchartsTimeseriesSeriesType.Line, + stack: false, + tooltipTimeFormat: 'smart_date', + truncateYAxis: false, + yAxisBounds: [null, null], + zoomable: false, + richTooltip: true, + xAxisLabelRotation: 0, + emitFilter: false, + groupby: [], + showValue: false, + onlyTotal: false, + ...DEFAULT_TITLE_FORM_DATA, +}; + +export interface EchartsTimeseriesChartProps extends ChartProps { + formData: EchartsTimeseriesFormData; + queriesData: ChartDataResponseResult[]; +} + +export type TimeseriesChartTransformedProps = + EChartTransformedProps; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/EchartsTree.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/EchartsTree.tsx new file mode 100644 index 000000000000..9b42c6e55357 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/EchartsTree.tsx @@ -0,0 +1,29 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { EchartsProps } from '../types'; +import Echart from '../components/Echart'; + +export default function EchartsGraph({ + height, + width, + echartOptions, +}: EchartsProps) { + return ; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/buildQuery.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/buildQuery.ts new file mode 100644 index 000000000000..ccc398b1b8b4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/buildQuery.ts @@ -0,0 +1,29 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { buildQueryContext, QueryFormData } from '@superset-ui/core'; + +export default function buildQuery(formData: QueryFormData) { + return buildQueryContext(formData, { + queryFields: { + id: 'columns', + parent: 'columns', + name: 'columns', + }, + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/constants.ts new file mode 100644 index 000000000000..463835966cc7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/constants.ts @@ -0,0 +1,30 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { TreeSeriesOption } from 'echarts'; + +export const DEFAULT_TREE_SERIES_OPTION: TreeSeriesOption = { + label: { + position: 'left', + fontSize: 15, + }, + animation: true, + animationDuration: 500, + animationEasing: 'cubicOut', + lineStyle: { color: 'source', width: 1.5 }, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx new file mode 100644 index 000000000000..aa4a38fca871 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx @@ -0,0 +1,290 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { FeatureFlag, isFeatureEnabled, t } from '@superset-ui/core'; +import { + ControlPanelConfig, + sections, + sharedControls, +} from '@superset-ui/chart-controls'; +import { DEFAULT_FORM_DATA } from './types'; + +const requiredEntity = { + ...sharedControls.entity, + clearable: false, +}; +const optionalEntity = { + ...sharedControls.entity, + clearable: true, + validators: [], +}; + +const controlPanel: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + [ + { + name: 'id', + config: { + ...requiredEntity, + label: t('Id'), + description: t('Name of the id column'), + }, + }, + ], + [ + { + name: 'parent', + config: { + ...requiredEntity, + label: t('Parent'), + description: t( + 'Name of the column containing the id of the parent node', + ), + }, + }, + ], + [ + { + name: 'name', + config: { + ...optionalEntity, + label: t('Name'), + description: t('Optional name of the data column.'), + }, + }, + ], + [ + { + name: 'root_node_id', + config: { + ...optionalEntity, + renderTrigger: true, + type: 'TextControl', + label: t('Root node id'), + description: t('Id of root node of the tree.'), + }, + }, + ], + [ + { + name: 'metric', + config: { + ...optionalEntity, + type: isFeatureEnabled(FeatureFlag.ENABLE_EXPLORE_DRAG_AND_DROP) + ? 'DndMetricSelect' + : 'MetricsControl', + label: t('Metric'), + description: t('Metric for node values'), + }, + }, + ], + ['adhoc_filters'], + ['row_limit'], + ], + }, + { + label: t('Chart options'), + expanded: true, + controlSetRows: [ + [

{t('Layout')}

], + [ + { + name: 'layout', + config: { + type: 'RadioButtonControl', + renderTrigger: true, + label: t('Tree layout'), + default: DEFAULT_FORM_DATA.layout, + options: [ + ['orthogonal', t('Orthogonal')], + ['radial', t('Radial')], + ], + description: t('Layout type of tree'), + }, + }, + ], + + [ + { + name: 'orient', + config: { + type: 'RadioButtonControl', + renderTrigger: true, + label: t('Tree orientation'), + default: DEFAULT_FORM_DATA.orient, + options: [ + ['LR', t('Left to Right')], + ['RL', t('Right to Left')], + ['TB', t('Top to Bottom')], + ['BT', t('Bottom to Top')], + ], + description: t('Orientation of tree'), + visibility({ form_data: { layout } }) { + return (layout || DEFAULT_FORM_DATA.layout) === 'orthogonal'; + }, + }, + }, + ], + [ + { + name: 'node_label_position', + config: { + type: 'RadioButtonControl', + renderTrigger: true, + label: t('Node label position'), + default: DEFAULT_FORM_DATA.nodeLabelPosition, + options: [ + ['left', t('left')], + ['top', t('top')], + ['right', t('right')], + ['bottom', t('bottom')], + ], + description: t('Position of intermidiate node label on tree'), + }, + }, + ], + [ + { + name: 'child_label_position', + config: { + type: 'RadioButtonControl', + renderTrigger: true, + label: t('Child label position'), + default: DEFAULT_FORM_DATA.childLabelPosition, + options: [ + ['left', t('left')], + ['top', t('top')], + ['right', t('right')], + ['bottom', t('bottom')], + ], + description: t('Position of child node label on tree'), + }, + }, + ], + [ + { + name: 'emphasis', + config: { + type: 'RadioButtonControl', + renderTrigger: true, + label: t('Emphasis'), + default: DEFAULT_FORM_DATA.emphasis, + options: [ + ['ancestor', t('ancestor')], + ['descendant', t('descendant')], + ], + description: t('Which relatives to highlight on hover'), + visibility({ form_data: { layout } }) { + return (layout || DEFAULT_FORM_DATA.layout) === 'orthogonal'; + }, + }, + }, + ], + [ + { + name: 'symbol', + config: { + type: 'SelectControl', + renderTrigger: true, + label: t('Symbol'), + default: DEFAULT_FORM_DATA.symbol, + options: [ + { + label: t('Empty circle'), + value: 'emptyCircle', + }, + { + label: t('Circle'), + value: 'circle', + }, + { + label: t('Rectangle'), + value: 'rect', + }, + { + label: t('Triangle'), + value: 'triangle', + }, + { + label: t('Diamond'), + value: 'diamond', + }, + { + label: t('Pin'), + value: 'pin', + }, + { + label: t('Arrow'), + value: 'arrow', + }, + { + label: t('None'), + value: 'none', + }, + ], + description: t('Layout type of tree'), + }, + }, + ], + [ + { + name: 'symbolSize', + config: { + type: 'SliderControl', + label: t('Symbol size'), + renderTrigger: true, + min: 5, + max: 30, + step: 2, + default: DEFAULT_FORM_DATA.symbolSize, + description: t('Size of edge symbols'), + }, + }, + ], + [ + { + name: 'roam', + config: { + type: 'SelectControl', + label: t('Enable graph roaming'), + renderTrigger: true, + default: DEFAULT_FORM_DATA.roam, + choices: [ + [false, t('Disabled')], + ['scale', t('Scale only')], + ['move', t('Move only')], + [true, t('Scale and Move')], + ], + description: t( + 'Whether to enable changing graph position and scaling.', + ), + }, + }, + ], + ], + }, + ], +}; + +export default controlPanel; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/images/thumbnail.png new file mode 100644 index 000000000000..8ee0953361c7 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/images/tree.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/images/tree.png new file mode 100644 index 000000000000..1f329c6d0a96 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/images/tree.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/index.ts new file mode 100644 index 000000000000..5514c372f38c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/index.ts @@ -0,0 +1,52 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import controlPanel from './controlPanel'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import example from './images/tree.png'; +import buildQuery from './buildQuery'; + +export default class EchartsTreeChartPlugin extends ChartPlugin { + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('./EchartsTree'), + metadata: new ChartMetadata({ + category: t('Part of a Whole'), + credits: ['https://echarts.apache.org'], + description: t( + 'Visualize multiple levels of hierarchy using a familiar tree-like structure.', + ), + exampleGallery: [{ url: example }], + name: t('Tree Chart'), + tags: [ + t('Categorical'), + t('ECharts'), + t('Multi-Levels'), + t('Relational'), + t('Structural'), + ], + thumbnail, + }), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/transformProps.ts new file mode 100644 index 000000000000..c89fbe8b3704 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/transformProps.ts @@ -0,0 +1,219 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartProps, getMetricLabel, DataRecordValue } from '@superset-ui/core'; +import { EChartsCoreOption, TreeSeriesOption } from 'echarts'; +import { + TreeSeriesCallbackDataParams, + TreeSeriesNodeItemOption, +} from 'echarts/types/src/chart/tree/TreeSeries'; +import { OptionName } from 'echarts/types/src/util/types'; +import { + EchartsTreeFormData, + DEFAULT_FORM_DATA as DEFAULT_GRAPH_FORM_DATA, + TreeDataRecord, +} from './types'; +import { DEFAULT_TREE_SERIES_OPTION } from './constants'; +import { EchartsProps } from '../types'; + +export function formatTooltip({ + params, + metricLabel, +}: { + params: TreeSeriesCallbackDataParams; + metricLabel: string; +}): string { + const { value, treeAncestors } = params; + const treePath = (treeAncestors ?? []) + .map(pathInfo => pathInfo?.name || '') + .filter(path => path !== ''); + + return [ + `
${treePath.join(' ▸ ')}
`, + value ? `${metricLabel}: ${value}` : '', + ].join(''); +} + +export default function transformProps(chartProps: ChartProps): EchartsProps { + const { width, height, formData, queriesData } = chartProps; + const data: TreeDataRecord[] = queriesData[0].data || []; + + const { + id, + parent, + name, + metric = '', + rootNodeId, + layout, + orient, + symbol, + symbolSize, + roam, + nodeLabelPosition, + childLabelPosition, + emphasis, + }: EchartsTreeFormData = { ...DEFAULT_GRAPH_FORM_DATA, ...formData }; + const metricLabel = getMetricLabel(metric); + + const nameColumn = name || id; + + function findNodeName(rootNodeId: DataRecordValue): OptionName { + let nodeName: DataRecordValue = ''; + data.some(node => { + if (node[id]!.toString() === rootNodeId) { + nodeName = node[nameColumn]; + return true; + } + return false; + }); + return nodeName; + } + + function getTotalChildren(tree: TreeSeriesNodeItemOption) { + let totalChildren = 0; + + function traverse(tree: TreeSeriesNodeItemOption) { + tree.children!.forEach(node => { + traverse(node); + }); + totalChildren += 1; + } + traverse(tree); + return totalChildren; + } + + function createTree(rootNodeId: DataRecordValue): TreeSeriesNodeItemOption { + const rootNodeName = findNodeName(rootNodeId); + const tree: TreeSeriesNodeItemOption = { name: rootNodeName, children: [] }; + const children: TreeSeriesNodeItemOption[][] = []; + const indexMap: { [name: string]: number } = {}; + + if (!rootNodeName) { + return tree; + } + + // index indexMap with node ids + for (let i = 0; i < data.length; i += 1) { + const nodeId = data[i][id] as number; + indexMap[nodeId] = i; + children[i] = []; + } + + // generate tree + for (let i = 0; i < data.length; i += 1) { + const node = data[i]; + if (node[parent]?.toString() === rootNodeId) { + tree.children?.push({ + name: node[nameColumn], + children: children[i], + value: node[metricLabel], + }); + } else { + const parentId = node[parent]; + if (data[indexMap[parentId]]) { + const parentIndex = indexMap[parentId]; + children[parentIndex].push({ + name: node[nameColumn], + children: children[i], + value: node[metricLabel], + }); + } + } + } + + return tree; + } + + let finalTree = {}; + + if (rootNodeId) { + finalTree = createTree(rootNodeId); + } else { + /* + to select root node, + 1.find parent nodes with only 1 child. + 2.build tree for each such child nodes as root + 3.select tree with most children + */ + // create map of parent:children + const parentChildMap: { [name: string]: { [name: string]: any } } = {}; + data.forEach(node => { + const parentId = node[parent] as string; + if (parentId in parentChildMap) { + parentChildMap[parentId].push({ id: node[id] }); + } else { + parentChildMap[parentId] = [{ id: node[id] }]; + } + }); + + // for each parent node which has only 1 child,find tree and select node with max number of children. + let maxChildren = 0; + Object.keys(parentChildMap).forEach(key => { + if (parentChildMap[key].length === 1) { + const tree = createTree(parentChildMap[key][0].id); + const totalChildren = getTotalChildren(tree); + if (totalChildren > maxChildren) { + maxChildren = totalChildren; + finalTree = tree; + } + } + }); + } + + const series: TreeSeriesOption[] = [ + { + type: 'tree', + data: [finalTree], + label: { + ...DEFAULT_TREE_SERIES_OPTION.label, + position: nodeLabelPosition, + }, + emphasis: { focus: emphasis }, + animation: DEFAULT_TREE_SERIES_OPTION.animation, + layout, + orient, + symbol, + roam, + symbolSize, + lineStyle: DEFAULT_TREE_SERIES_OPTION.lineStyle, + select: DEFAULT_TREE_SERIES_OPTION.select, + leaves: { label: { position: childLabelPosition } }, + }, + ]; + + const echartOptions: EChartsCoreOption = { + animationDuration: DEFAULT_TREE_SERIES_OPTION.animationDuration, + animationEasing: DEFAULT_TREE_SERIES_OPTION.animationEasing, + series, + tooltip: { + trigger: 'item', + triggerOn: 'mousemove', + formatter: (params: any) => + formatTooltip({ + params, + metricLabel, + }), + }, + }; + + return { + width, + height, + echartOptions, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/types.ts new file mode 100644 index 000000000000..81db2d59508f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Tree/types.ts @@ -0,0 +1,55 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { TreeSeriesNodeItemOption } from 'echarts/types/src/chart/tree/TreeSeries'; + +export type EchartsTreeFormData = { + id: string; + parent: string; + name: string; + rootNodeId?: string | number; + orient: 'LR' | 'RL' | 'TB' | 'BT'; + symbol: string; + symbolSize: number; + colorScheme?: string; + metric?: string; + layout: 'orthogonal' | 'radial'; + roam: boolean | 'scale' | 'move'; + nodeLabelPosition: 'top' | 'bottom' | 'left' | 'right'; + childLabelPosition: 'top' | 'bottom' | 'left' | 'right'; + emphasis: 'none' | 'ancestor' | 'descendant'; +}; + +export const DEFAULT_FORM_DATA: EchartsTreeFormData = { + id: '', + parent: '', + name: '', + rootNodeId: '', + layout: 'orthogonal', + orient: 'LR', + symbol: 'emptyCircle', + symbolSize: 7, + roam: true, + nodeLabelPosition: 'left', + childLabelPosition: 'bottom', + emphasis: 'descendant', +}; + +export type TreeDataRecord = Record & { + children: TreeSeriesNodeItemOption[]; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/EchartsTreemap.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/EchartsTreemap.tsx new file mode 100644 index 000000000000..2932dc327ddc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/EchartsTreemap.tsx @@ -0,0 +1,98 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { useCallback } from 'react'; +import Echart from '../components/Echart'; +import { EventHandlers } from '../types'; +import { extractTreePathInfo } from './constants'; +import { TreemapTransformedProps } from './types'; + +export default function EchartsTreemap({ + height, + width, + echartOptions, + setDataMask, + labelMap, + groupby, + selectedValues, + formData, +}: TreemapTransformedProps) { + const handleChange = useCallback( + (values: string[]) => { + if (!formData.emitFilter) { + return; + } + + const groupbyValues = values.map(value => labelMap[value]); + + setDataMask({ + extraFormData: { + filters: + values.length === 0 + ? [] + : groupby.map((col, idx) => { + const val = groupbyValues.map(v => v[idx]); + if (val === null || val === undefined) + return { + col, + op: 'IS NULL', + }; + return { + col, + op: 'IN', + val: val as (string | number | boolean)[], + }; + }), + }, + filterState: { + value: groupbyValues.length ? groupbyValues : null, + selectedValues: values.length ? values : null, + }, + }); + }, + [groupby, labelMap, setDataMask, selectedValues], + ); + + const eventHandlers: EventHandlers = { + click: props => { + const { data, treePathInfo } = props; + // do noting when clicking the parent node + if (data?.children) { + return; + } + const { treePath } = extractTreePathInfo(treePathInfo); + const name = treePath.join(','); + const values = Object.values(selectedValues); + if (values.includes(name)) { + handleChange(values.filter(v => v !== name)); + } else { + handleChange([name]); + } + }, + }; + + return ( + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/buildQuery.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/buildQuery.ts new file mode 100644 index 000000000000..43ab986d3035 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/buildQuery.ts @@ -0,0 +1,30 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { buildQueryContext, QueryFormData } from '@superset-ui/core'; + +export default function buildQuery(formData: QueryFormData) { + const { metric, sort_by_metric } = formData; + + return buildQueryContext(formData, baseQueryObject => [ + { + ...baseQueryObject, + ...(sort_by_metric && { orderby: [[metric, false]] }), + }, + ]); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/constants.ts new file mode 100644 index 000000000000..080565229ac2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/constants.ts @@ -0,0 +1,38 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { TreePathInfo } from './types'; + +export const COLOR_SATURATION = [0.7, 0.4]; +export const LABEL_FONTSIZE = 11; +export const BORDER_WIDTH = 2; +export const GAP_WIDTH = 2; +export const BORDER_COLOR = '#fff'; + +export const extractTreePathInfo = ( + treePathInfo: TreePathInfo[] | undefined, +) => { + const treePath = (treePathInfo ?? []) + .map(pathInfo => pathInfo?.name || '') + .filter(path => path !== ''); + + // the 1st tree path is metric label + const metricLabel = treePath.shift() || ''; + return { metricLabel, treePath }; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx new file mode 100644 index 000000000000..9f6d4e297e03 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx @@ -0,0 +1,142 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + D3_FORMAT_DOCS, + D3_FORMAT_OPTIONS, + D3_TIME_FORMAT_OPTIONS, + sections, + emitFilterControl, +} from '@superset-ui/chart-controls'; +import { DEFAULT_FORM_DATA } from './types'; + +const { labelType, numberFormat, showLabels, showUpperLabels, dateFormat } = + DEFAULT_FORM_DATA; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['groupby'], + ['metric'], + ['row_limit'], + [ + { + name: 'sort_by_metric', + config: { + type: 'CheckboxControl', + label: t('Sort by metric'), + description: t( + 'Whether to sort results by the selected metric in descending order.', + ), + }, + }, + ], + ['adhoc_filters'], + emitFilterControl, + ], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + [

{t('Labels')}

], + [ + { + name: 'show_labels', + config: { + type: 'CheckboxControl', + label: t('Show Labels'), + renderTrigger: true, + default: showLabels, + description: t('Whether to display the labels.'), + }, + }, + ], + [ + { + name: 'show_upper_labels', + config: { + type: 'CheckboxControl', + label: t('Show Upper Labels'), + renderTrigger: true, + default: showUpperLabels, + description: t('Show labels when the node has children.'), + }, + }, + ], + [ + { + name: 'label_type', + config: { + type: 'SelectControl', + label: t('Label Type'), + default: labelType, + renderTrigger: true, + choices: [ + ['Key', 'Key'], + ['value', 'Value'], + ['key_value', 'Category and Value'], + ], + description: t('What should be shown on the label?'), + }, + }, + ], + [ + { + name: 'number_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Number format'), + renderTrigger: true, + default: numberFormat, + choices: D3_FORMAT_OPTIONS, + description: `${t( + 'D3 format syntax: https://github.com/d3/d3-format. ', + )} ${t('Only applies when "Label Type" is set to show values.')}`, + }, + }, + ], + [ + { + name: 'date_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Date format'), + renderTrigger: true, + choices: D3_TIME_FORMAT_OPTIONS, + default: dateFormat, + description: D3_FORMAT_DOCS, + }, + }, + ], + ], + }, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/images/thumbnail.png new file mode 100644 index 000000000000..27ef3432b96b Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/images/treemap_v2_1.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/images/treemap_v2_1.png new file mode 100644 index 000000000000..56e4e46a1f5b Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/images/treemap_v2_1.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/images/treemap_v2_2.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/images/treemap_v2_2.jpg new file mode 100644 index 000000000000..d0af1089aa37 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/images/treemap_v2_2.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/index.ts new file mode 100644 index 000000000000..575bb41fb9ee --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/index.ts @@ -0,0 +1,71 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regardin + * g copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { Behavior, ChartMetadata, ChartPlugin, t } from '@superset-ui/core'; +import buildQuery from './buildQuery'; +import controlPanel from './controlPanel'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import example1 from './images/treemap_v2_1.png'; +import example2 from './images/treemap_v2_2.jpg'; +import { EchartsTreemapChartProps, EchartsTreemapFormData } from './types'; + +export default class EchartsTreemapChartPlugin extends ChartPlugin< + EchartsTreemapFormData, + EchartsTreemapChartProps +> { + /** + * The constructor is used to pass relevant metadata and callbacks that get + * registered in respective registries that are used throughout the library + * and application. A more thorough description of each property is given in + * the respective imported file. + * + * It is worth noting that `buildQuery` and is optional, and only needed for + * advanced visualizations that require either post processing operations + * (pivoting, rolling aggregations, sorting etc) or submitting multiple queries. + */ + constructor() { + super({ + buildQuery, + controlPanel, + loadChart: () => import('./EchartsTreemap'), + metadata: new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('Part of a Whole'), + credits: ['https://echarts.apache.org'], + description: t( + 'Show hierarchical relationships of data, with with the value represented by area, showing proportion and contribution to the whole.', + ), + exampleGallery: [{ url: example1 }, { url: example2 }], + name: t('Treemap v2'), + tags: [ + t('Aesthetic'), + t('Categorical'), + t('Comparison'), + t('ECharts'), + t('Multi-Levels'), + t('Percentages'), + t('Proportional'), + ], + thumbnail, + }), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/transformProps.ts new file mode 100644 index 000000000000..2face71250d1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/transformProps.ts @@ -0,0 +1,325 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + CategoricalColorNamespace, + DataRecord, + DataRecordValue, + getColumnLabel, + getMetricLabel, + getNumberFormatter, + getTimeFormatter, + NumberFormats, + NumberFormatter, +} from '@superset-ui/core'; +import { groupBy, isNumber, transform } from 'lodash'; +import { TreemapSeriesNodeItemOption } from 'echarts/types/src/chart/treemap/TreemapSeries'; +import { EChartsCoreOption, TreemapSeriesOption } from 'echarts'; +import { + DEFAULT_FORM_DATA as DEFAULT_TREEMAP_FORM_DATA, + EchartsTreemapChartProps, + EchartsTreemapFormData, + EchartsTreemapLabelType, + TreemapSeriesCallbackDataParams, + TreemapTransformedProps, +} from './types'; +import { formatSeriesName, getColtypesMapping } from '../utils/series'; +import { defaultTooltip } from '../defaults'; +import { + COLOR_SATURATION, + BORDER_WIDTH, + GAP_WIDTH, + LABEL_FONTSIZE, + extractTreePathInfo, + BORDER_COLOR, +} from './constants'; +import { OpacityEnum } from '../constants'; + +export function formatLabel({ + params, + labelType, + numberFormatter, +}: { + params: TreemapSeriesCallbackDataParams; + labelType: EchartsTreemapLabelType; + numberFormatter: NumberFormatter; +}): string { + const { name = '', value } = params; + const formattedValue = numberFormatter(value as number); + + switch (labelType) { + case EchartsTreemapLabelType.Key: + return name; + case EchartsTreemapLabelType.Value: + return formattedValue; + case EchartsTreemapLabelType.KeyValue: + return `${name}: ${formattedValue}`; + default: + return name; + } +} + +export function formatTooltip({ + params, + numberFormatter, +}: { + params: TreemapSeriesCallbackDataParams; + numberFormatter: NumberFormatter; +}): string { + const { value, treePathInfo = [] } = params; + const formattedValue = numberFormatter(value as number); + const { metricLabel, treePath } = extractTreePathInfo(treePathInfo); + const percentFormatter = getNumberFormatter(NumberFormats.PERCENT_2_POINT); + + let formattedPercent = ''; + // the last item is current node, here we should find the parent node + const currentNode = treePathInfo[treePathInfo.length - 1]; + const parentNode = treePathInfo[treePathInfo.length - 2]; + if (parentNode) { + const percent: number = parentNode.value + ? (currentNode.value as number) / (parentNode.value as number) + : 0; + formattedPercent = percentFormatter(percent); + } + + // groupby1/groupby2/... + // metric: value (percent of parent) + return [ + `
${treePath.join(' ▸ ')}
`, + `${metricLabel}: ${formattedValue}`, + formattedPercent ? ` (${formattedPercent})` : '', + ].join(''); +} + +export default function transformProps( + chartProps: EchartsTreemapChartProps, +): TreemapTransformedProps { + const { formData, height, queriesData, width, hooks, filterState } = + chartProps; + const { data = [] } = queriesData[0]; + const { setDataMask = () => {} } = hooks; + const coltypeMapping = getColtypesMapping(queriesData[0]); + + const { + colorScheme, + groupby = [], + metric = '', + labelType, + labelPosition, + numberFormat, + dateFormat, + showLabels, + showUpperLabels, + dashboardId, + emitFilter, + }: EchartsTreemapFormData = { + ...DEFAULT_TREEMAP_FORM_DATA, + ...formData, + }; + + const colorFn = CategoricalColorNamespace.getScale(colorScheme as string); + const numberFormatter = getNumberFormatter(numberFormat); + const formatter = (params: TreemapSeriesCallbackDataParams) => + formatLabel({ + params, + numberFormatter, + labelType, + }); + + const columnsLabelMap = new Map(); + + const transformer = ( + data: DataRecord[], + groupbyLabels: string[], + metric: string, + depth: number, + path: string[], + ): TreemapSeriesNodeItemOption[] => { + const [currGroupby, ...restGroupby] = groupbyLabels; + const currGrouping = groupBy(data, currGroupby); + if (!restGroupby.length) { + return transform( + currGrouping, + (result, value, key) => { + (value ?? []).forEach(datum => { + const name = formatSeriesName(key, { + numberFormatter, + timeFormatter: getTimeFormatter(dateFormat), + ...(coltypeMapping[currGroupby] && { + coltype: coltypeMapping[currGroupby], + }), + }); + const item: TreemapSeriesNodeItemOption = { + name, + value: isNumber(datum[metric]) ? (datum[metric] as number) : 0, + }; + const joinedName = path.concat(name).join(','); + // map(joined_name: [columnLabel_1, columnLabel_2, ...]) + columnsLabelMap.set(joinedName, path.concat(name)); + if ( + filterState.selectedValues && + !filterState.selectedValues.includes(joinedName) + ) { + item.itemStyle = { + colorAlpha: OpacityEnum.SemiTransparent, + }; + item.label = { + color: `rgba(0, 0, 0, ${OpacityEnum.SemiTransparent})`, + }; + } + result.push(item); + }); + }, + [] as TreemapSeriesNodeItemOption[], + ); + } + const sortedData = transform( + currGrouping, + (result, value, key) => { + const name = formatSeriesName(key, { + numberFormatter, + timeFormatter: getTimeFormatter(dateFormat), + ...(coltypeMapping[currGroupby] && { + coltype: coltypeMapping[currGroupby], + }), + }); + const children = transformer( + value, + restGroupby, + metric, + depth + 1, + path.concat(name), + ); + result.push({ + name, + children, + value: children.reduce( + (prev, cur) => prev + (cur.value as number), + 0, + ), + }); + result.sort((a, b) => (b.value as number) - (a.value as number)); + }, + [] as TreemapSeriesNodeItemOption[], + ); + // sort according to the area and then take the color value in order + return sortedData.map(child => ({ + ...child, + colorSaturation: COLOR_SATURATION, + itemStyle: { + borderColor: BORDER_COLOR, + color: colorFn(`${child.name}`), + borderWidth: BORDER_WIDTH, + gapWidth: GAP_WIDTH, + }, + })); + }; + + const metricLabel = getMetricLabel(metric); + const groupbyLabels = groupby.map(getColumnLabel); + const initialDepth = 1; + const transformedData: TreemapSeriesNodeItemOption[] = [ + { + name: metricLabel, + colorSaturation: COLOR_SATURATION, + itemStyle: { + borderColor: BORDER_COLOR, + borderWidth: BORDER_WIDTH, + gapWidth: GAP_WIDTH, + }, + upperLabel: { + show: false, + }, + children: transformer(data, groupbyLabels, metricLabel, initialDepth, []), + }, + ]; + + // set a default color when metric values are 0 over all. + const levels = [ + { + upperLabel: { + show: false, + }, + label: { + show: false, + }, + itemStyle: { + color: CategoricalColorNamespace.getColor(), + }, + }, + ]; + + const series: TreemapSeriesOption[] = [ + { + type: 'treemap', + width: '100%', + height: '100%', + nodeClick: undefined, + roam: !dashboardId, + breadcrumb: { + show: false, + emptyItemWidth: 25, + }, + emphasis: { + label: { + show: true, + }, + }, + levels, + label: { + show: showLabels, + position: labelPosition, + formatter, + color: '#000', + fontSize: LABEL_FONTSIZE, + }, + upperLabel: { + show: showUpperLabels, + formatter, + textBorderColor: 'transparent', + fontSize: LABEL_FONTSIZE, + }, + data: transformedData, + }, + ]; + + const echartOptions: EChartsCoreOption = { + tooltip: { + ...defaultTooltip, + trigger: 'item', + formatter: (params: any) => + formatTooltip({ + params, + numberFormatter, + }), + }, + series, + }; + + return { + formData, + width, + height, + echartOptions, + setDataMask, + emitFilter, + labelMap: Object.fromEntries(columnsLabelMap), + groupby, + selectedValues: filterState.selectedValues || [], + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/types.ts new file mode 100644 index 000000000000..e99874d157e6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/Treemap/types.ts @@ -0,0 +1,87 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + ChartDataResponseResult, + ChartProps, + DataRecordValue, + QueryFormColumn, + QueryFormData, + QueryFormMetric, + SetDataMaskHook, +} from '@superset-ui/core'; +import { EChartsCoreOption } from 'echarts'; +import { CallbackDataParams } from 'echarts/types/src/util/types'; +import { LabelPositionEnum } from '../types'; + +export type EchartsTreemapFormData = QueryFormData & { + colorScheme?: string; + groupby: QueryFormColumn[]; + metric?: QueryFormMetric; + labelType: EchartsTreemapLabelType; + labelPosition: LabelPositionEnum; + showLabels: boolean; + showUpperLabels: boolean; + numberFormat: string; + dateFormat: string; + dashboardId?: number; + emitFilter: boolean; +}; + +export enum EchartsTreemapLabelType { + Key = 'key', + Value = 'value', + KeyValue = 'key_value', +} + +export interface EchartsTreemapChartProps extends ChartProps { + formData: EchartsTreemapFormData; + queriesData: ChartDataResponseResult[]; +} + +export const DEFAULT_FORM_DATA: Partial = { + groupby: [], + labelType: EchartsTreemapLabelType.KeyValue, + labelPosition: LabelPositionEnum.InsideTopLeft, + numberFormat: 'SMART_NUMBER', + showLabels: true, + showUpperLabels: true, + dateFormat: 'smart_date', + emitFilter: false, +}; + +export interface TreePathInfo { + name: string; + dataIndex: number; + value: number | number[]; +} +export interface TreemapSeriesCallbackDataParams extends CallbackDataParams { + treePathInfo?: TreePathInfo[]; +} + +export interface TreemapTransformedProps { + formData: EchartsTreemapFormData; + height: number; + width: number; + echartOptions: EChartsCoreOption; + emitFilter: boolean; + setDataMask: SetDataMaskHook; + labelMap: Record; + groupby: QueryFormColumn[]; + selectedValues: Record; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/components/Echart.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/components/Echart.tsx new file mode 100644 index 000000000000..51ea5d579692 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/components/Echart.tsx @@ -0,0 +1,104 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { + useRef, + useEffect, + useMemo, + forwardRef, + useImperativeHandle, +} from 'react'; +import { styled } from '@superset-ui/core'; +import { ECharts, init } from 'echarts'; +import { EchartsHandler, EchartsProps, EchartsStylesProps } from '../types'; + +const Styles = styled.div` + height: ${({ height }) => height}; + width: ${({ width }) => width}; +`; + +function Echart( + { + width, + height, + echartOptions, + eventHandlers, + zrEventHandlers, + selectedValues = {}, + }: EchartsProps, + ref: React.Ref, +) { + const divRef = useRef(null); + const chartRef = useRef(); + const currentSelection = useMemo( + () => Object.keys(selectedValues) || [], + [selectedValues], + ); + const previousSelection = useRef([]); + + useImperativeHandle(ref, () => ({ + getEchartInstance: () => chartRef.current, + })); + + useEffect(() => { + if (!divRef.current) return; + if (!chartRef.current) { + chartRef.current = init(divRef.current); + } + + Object.entries(eventHandlers || {}).forEach(([name, handler]) => { + chartRef.current?.off(name); + chartRef.current?.on(name, handler); + }); + + Object.entries(zrEventHandlers || {}).forEach(([name, handler]) => { + chartRef.current?.getZr().off(name); + chartRef.current?.getZr().on(name, handler); + }); + + chartRef.current.setOption(echartOptions, true); + }, [echartOptions, eventHandlers, zrEventHandlers]); + + // highlighting + useEffect(() => { + if (!chartRef.current) return; + chartRef.current.dispatchAction({ + type: 'downplay', + dataIndex: previousSelection.current.filter( + value => !currentSelection.includes(value), + ), + }); + if (currentSelection.length) { + chartRef.current.dispatchAction({ + type: 'highlight', + dataIndex: currentSelection, + }); + } + previousSelection.current = currentSelection; + }, [currentSelection]); + + useEffect(() => { + if (chartRef.current) { + chartRef.current.resize({ width, height }); + } + }, [width, height]); + + return ; +} + +export default forwardRef(Echart); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/constants.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/constants.ts new file mode 100644 index 000000000000..b2f3a28a6656 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/constants.ts @@ -0,0 +1,61 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { LabelPositionEnum } from './types'; + +// eslint-disable-next-line import/prefer-default-export +export const NULL_STRING = ''; + +export const TIMESERIES_CONSTANTS = { + gridOffsetRight: 40, + gridOffsetLeft: 20, + gridOffsetTop: 20, + gridOffsetBottom: 20, + gridOffsetBottomZoomable: 80, + legendRightTopOffset: 30, + legendTopRightOffset: 55, + zoomBottom: 30, + toolboxTop: 0, + toolboxRight: 5, + dataZoomStart: 0, + dataZoomEnd: 100, + yAxisLabelTopOffset: 20, +}; + +export const LABEL_POSITION: [LabelPositionEnum, string][] = [ + [LabelPositionEnum.Top, 'Top'], + [LabelPositionEnum.Left, 'Left'], + [LabelPositionEnum.Right, 'Right'], + [LabelPositionEnum.Bottom, 'Bottom'], + [LabelPositionEnum.Inside, 'Inside'], + [LabelPositionEnum.InsideBottomLeft, 'Inside left'], + [LabelPositionEnum.InsideBottomRight, 'Inside right'], + [LabelPositionEnum.InsideTop, 'Inside top'], + [LabelPositionEnum.InsideBottom, 'Inside bottom'], + [LabelPositionEnum.InsideTopLeft, 'Inside top left'], + [LabelPositionEnum.InsideBottomLeft, 'Inside bottom left'], + [LabelPositionEnum.InsideTopRight, 'Inside top right'], + [LabelPositionEnum.InsideBottomRight, 'Inside bottom right'], +]; + +export enum OpacityEnum { + Transparent = 0, + SemiTransparent = 0.3, + NonTransparent = 1, +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/controls.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/controls.tsx new file mode 100644 index 000000000000..76c7c42186ff --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/controls.tsx @@ -0,0 +1,188 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t } from '@superset-ui/core'; +import { + ControlPanelsContainerProps, + ControlSetRow, + sharedControls, +} from '@superset-ui/chart-controls'; +import { DEFAULT_LEGEND_FORM_DATA } from './types'; + +const { legendMargin, legendOrientation, legendType, showLegend } = + DEFAULT_LEGEND_FORM_DATA; + +const showLegendControl = { + name: 'show_legend', + config: { + type: 'CheckboxControl', + label: t('Show legend'), + renderTrigger: true, + default: showLegend, + description: t('Whether to display a legend for the chart'), + }, +}; + +const legendMarginControl = { + name: 'legendMargin', + config: { + type: 'TextControl', + label: t('Margin'), + renderTrigger: true, + isInt: true, + default: legendMargin, + description: t('Additional padding for legend.'), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.show_legend?.value), + }, +}; + +const legendTypeControl = { + name: 'legendType', + config: { + type: 'SelectControl', + freeForm: false, + label: 'Type', + choices: [ + ['scroll', 'Scroll'], + ['plain', 'Plain'], + ], + default: legendType, + renderTrigger: true, + description: t('Legend type'), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.show_legend?.value), + }, +}; + +const legendOrientationControl = { + name: 'legendOrientation', + config: { + type: 'SelectControl', + freeForm: false, + label: 'Orientation', + choices: [ + ['top', 'Top'], + ['bottom', 'Bottom'], + ['left', 'Left'], + ['right', 'Right'], + ], + default: legendOrientation, + renderTrigger: true, + description: t('Legend type'), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.show_legend?.value), + }, +}; + +export const legendSection = [ + [

{t('Legend')}

], + [showLegendControl], + [legendTypeControl], + [legendOrientationControl], + [legendMarginControl], +]; + +const showValueControl = { + name: 'show_value', + config: { + type: 'CheckboxControl', + label: t('Show Value'), + default: false, + renderTrigger: true, + description: t('Show series values on the chart'), + }, +}; + +const stackControl = { + name: 'stack', + config: { + type: 'CheckboxControl', + label: t('Stack series'), + renderTrigger: true, + default: false, + description: t('Stack series on top of each other'), + }, +}; + +const onlyTotalControl = { + name: 'only_total', + config: { + type: 'CheckboxControl', + label: t('Only Total'), + default: true, + renderTrigger: true, + description: t( + 'Only show the total value on the stacked chart, and not show on the selected category', + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.show_value?.value) && Boolean(controls?.stack?.value), + }, +}; + +export const showValueSection = [ + [showValueControl], + [stackControl], + [onlyTotalControl], +]; + +const richTooltipControl = { + name: 'rich_tooltip', + config: { + type: 'CheckboxControl', + label: t('Rich tooltip'), + renderTrigger: true, + default: true, + description: t( + 'Shows a list of all series available at that point in time', + ), + }, +}; + +const tooltipTimeFormatControl = { + name: 'tooltipTimeFormat', + config: { + ...sharedControls.x_axis_time_format, + label: t('Tooltip time format'), + default: 'smart_date', + clearable: false, + }, +}; + +const tooltipSortByMetricControl = { + name: 'tooltipSortByMetric', + config: { + type: 'CheckboxControl', + label: t('Tooltip sort by metric'), + renderTrigger: true, + default: false, + description: t( + 'Whether to sort tooltip by the selected metric in descending order.', + ), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.rich_tooltip?.value), + }, +}; + +export const richTooltipSection: ControlSetRow[] = [ + [

{t('Tooltip')}

], + [richTooltipControl], + [tooltipSortByMetricControl], + [tooltipTimeFormatControl], +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/defaults.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/defaults.ts new file mode 100644 index 000000000000..c74e3d78a043 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/defaults.ts @@ -0,0 +1,38 @@ +import { LegendOrientation } from './types'; + +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export const defaultGrid = { + containLabel: true, +}; + +export const defaultTooltip = { + confine: true, +}; + +export const defaultYAxis = { + scale: true, +}; + +export const defaultLegendPadding = { + [LegendOrientation.Top]: 20, + [LegendOrientation.Bottom]: 20, + [LegendOrientation.Left]: 170, + [LegendOrientation.Right]: 170, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/index.ts new file mode 100644 index 000000000000..ad9f9113cc57 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/index.ts @@ -0,0 +1,57 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export { default as EchartsBoxPlotChartPlugin } from './BoxPlot'; +export { default as EchartsTimeseriesChartPlugin } from './Timeseries'; +export { default as EchartsAreaChartPlugin } from './Timeseries/Area'; +export { default as EchartsTimeseriesBarChartPlugin } from './Timeseries/Regular/Bar'; +export { default as EchartsTimeseriesLineChartPlugin } from './Timeseries/Regular/Line'; +export { default as EchartsTimeseriesScatterChartPlugin } from './Timeseries/Regular/Scatter'; +export { default as EchartsTimeseriesSmoothLineChartPlugin } from './Timeseries/Regular/SmoothLine'; +export { default as EchartsTimeseriesStepChartPlugin } from './Timeseries/Step'; +export { default as EchartsMixedTimeseriesChartPlugin } from './MixedTimeseries'; +export { default as EchartsPieChartPlugin } from './Pie'; +export { default as EchartsGraphChartPlugin } from './Graph'; +export { default as EchartsGaugeChartPlugin } from './Gauge'; +export { default as EchartsRadarChartPlugin } from './Radar'; +export { default as EchartsFunnelChartPlugin } from './Funnel'; +export { default as EchartsTreeChartPlugin } from './Tree'; +export { default as EchartsTreemapChartPlugin } from './Treemap'; + +export { default as BoxPlotTransformProps } from './BoxPlot/transformProps'; +export { default as FunnelTransformProps } from './Funnel/transformProps'; +export { default as GaugeTransformProps } from './Gauge/transformProps'; +export { default as GraphTransformProps } from './Graph/transformProps'; +export { default as MixedTimeseriesTransformProps } from './MixedTimeseries/transformProps'; +export { default as PieTransformProps } from './Pie/transformProps'; +export { default as RadarTransformProps } from './Radar/transformProps'; +export { default as TimeseriesTransformProps } from './Timeseries/transformProps'; +export { default as TreeTransformProps } from './Tree/transformProps'; +export { default as TreemapTransformProps } from './Treemap/transformProps'; + +export { DEFAULT_FORM_DATA as TimeseriesDefaultFormData } from './Timeseries/types'; + +export * from './types'; + +/** + * Note: this file exports the default export from EchartsTimeseries.tsx. + * If you want to export multiple visualization modules, you will need to + * either add additional plugin folders (similar in structure to ./plugin) + * OR export multiple instances of `ChartPlugin` extensions in ./plugin/index.ts + * which in turn load exports from EchartsTimeseries.tsx + */ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/types.ts new file mode 100644 index 000000000000..a66c8a34847d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/types.ts @@ -0,0 +1,140 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + DataRecordValue, + QueryFormColumn, + SetDataMaskHook, +} from '@superset-ui/core'; +import { EChartsCoreOption, ECharts } from 'echarts'; +import { TooltipMarker } from 'echarts/types/src/util/format'; +import { OptionName } from 'echarts/types/src/util/types'; + +export type EchartsStylesProps = { + height: number; + width: number; +}; + +export interface EchartsProps { + height: number; + width: number; + echartOptions: EChartsCoreOption; + eventHandlers?: EventHandlers; + zrEventHandlers?: EventHandlers; + selectedValues?: Record; + forceClear?: boolean; +} + +export interface EchartsHandler { + getEchartInstance: () => ECharts | undefined; +} + +export enum ForecastSeriesEnum { + Observation = '', + ForecastTrend = '__yhat', + ForecastUpper = '__yhat_upper', + ForecastLower = '__yhat_lower', +} + +export type ForecastSeriesContext = { + name: string; + type: ForecastSeriesEnum; +}; + +export enum LegendOrientation { + Top = 'top', + Bottom = 'bottom', + Left = 'left', + Right = 'right', +} + +export enum LegendType { + Scroll = 'scroll', + Plain = 'plain', +} + +export type ProphetValue = { + marker: TooltipMarker; + observation?: number; + forecastTrend?: number; + forecastLower?: number; + forecastUpper?: number; +}; + +export type EchartsLegendFormData = { + legendMargin: number | null | string; + legendOrientation: LegendOrientation; + legendType: LegendType; + showLegend: boolean; +}; + +export const DEFAULT_LEGEND_FORM_DATA: EchartsLegendFormData = { + legendMargin: null, + legendOrientation: LegendOrientation.Top, + legendType: LegendType.Scroll, + showLegend: false, +}; + +export type EventHandlers = Record; + +export enum LabelPositionEnum { + Top = 'top', + Left = 'left', + Right = 'right', + Bottom = 'bottom', + Inside = 'inside', + InsideLeft = 'insideLeft', + InsideRight = 'insideRight', + InsideTop = 'insideTop', + InsideBottom = 'insideBottom', + InsideTopLeft = 'insideTopLeft', + InsideBottomLeft = 'insideBottomLeft', + InsideTopRight = 'insideTopRight', + InsideBottomRight = 'insideBottomRight', +} + +export interface EChartTransformedProps { + formData: F; + height: number; + width: number; + echartOptions: EChartsCoreOption; + emitFilter: boolean; + setDataMask: SetDataMaskHook; + labelMap: Record; + groupby: QueryFormColumn[]; + selectedValues: Record; + legendData?: OptionName[]; +} + +export interface EchartsTitleFormData { + xAxisTitle: string; + xAxisTitleMargin: number; + yAxisTitle: string; + yAxisTitleMargin: number; + yAxisTitlePosition: string; +} + +export const DEFAULT_TITLE_FORM_DATA: EchartsTitleFormData = { + xAxisTitle: '', + xAxisTitleMargin: 0, + yAxisTitle: '', + yAxisTitleMargin: 0, + yAxisTitlePosition: 'Top', +}; + +export * from './Timeseries/types'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/utils/annotation.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/utils/annotation.ts new file mode 100644 index 000000000000..9ccd7bb2dba5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/utils/annotation.ts @@ -0,0 +1,132 @@ +/* eslint-disable no-underscore-dangle */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + Annotation, + AnnotationData, + AnnotationLayer, + AnnotationOpacity, + AnnotationType, + evalExpression, + FormulaAnnotationLayer, + isRecordAnnotationResult, + isTableAnnotationLayer, + isTimeseriesAnnotationResult, + TimeseriesDataRecord, +} from '@superset-ui/core'; + +export function evalFormula( + formula: FormulaAnnotationLayer, + data: TimeseriesDataRecord[], +): [Date, number][] { + const { value: expression } = formula; + + return data.map(row => [ + new Date(Number(row.__timestamp)), + evalExpression(expression, row.__timestamp as number), + ]); +} + +export function parseAnnotationOpacity(opacity?: AnnotationOpacity): number { + switch (opacity) { + case AnnotationOpacity.Low: + return 0.2; + case AnnotationOpacity.Medium: + return 0.5; + case AnnotationOpacity.High: + return 0.8; + default: + return 1; + } +} + +const NATIVE_COLUMN_NAMES = { + descriptionColumns: ['long_descr'], + intervalEndColumn: 'end_dttm', + timeColumn: 'start_dttm', + titleColumn: 'short_descr', +}; + +export function extractRecordAnnotations( + annotationLayer: AnnotationLayer, + annotationData: AnnotationData, +): Annotation[] { + const { name } = annotationLayer; + const result = annotationData[name]; + if (isRecordAnnotationResult(result)) { + const { records } = result; + const { + descriptionColumns = [], + intervalEndColumn = '', + timeColumn = '', + titleColumn = '', + } = isTableAnnotationLayer(annotationLayer) + ? annotationLayer + : NATIVE_COLUMN_NAMES; + + return records.map(record => ({ + descriptions: descriptionColumns.map( + column => (record[column] || '') as string, + ) as string[], + intervalEnd: (record[intervalEndColumn] || '') as string, + time: (record[timeColumn] || '') as string, + title: (record[titleColumn] || '') as string, + })); + } + throw new Error('Please rerun the query.'); +} + +export function formatAnnotationLabel( + name?: string, + title?: string, + descriptions: string[] = [], +): string { + const labels: string[] = []; + const titleLabels: string[] = []; + const filteredDescriptions = descriptions.filter( + description => !!description, + ); + if (name) titleLabels.push(name); + if (title) titleLabels.push(title); + if (titleLabels.length > 0) labels.push(titleLabels.join(' - ')); + if (filteredDescriptions.length > 0) + labels.push(filteredDescriptions.join('\n')); + return labels.join('\n\n'); +} + +export function extractAnnotationLabels( + layers: AnnotationLayer[], + data: AnnotationData, +): string[] { + const formulaAnnotationLabels = layers + .filter(anno => anno.annotationType === AnnotationType.Formula && anno.show) + .map(anno => anno.name); + const timeseriesAnnotationLabels = layers + .filter( + anno => anno.annotationType === AnnotationType.Timeseries && anno.show, + ) + .flatMap(anno => { + const result = data[anno.name]; + return isTimeseriesAnnotationResult(result) + ? result.map(annoSeries => annoSeries.key) + : []; + }); + + return formulaAnnotationLabels.concat(timeseriesAnnotationLabels); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/utils/controls.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/utils/controls.ts new file mode 100644 index 000000000000..af91596b5e08 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/utils/controls.ts @@ -0,0 +1,38 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { validateNumber } from '@superset-ui/core'; + +// eslint-disable-next-line import/prefer-default-export +export function parseYAxisBound( + bound?: string | number | null, +): number | undefined { + if (bound === undefined || bound === null || Number.isNaN(Number(bound))) { + return undefined; + } + return Number(bound); +} + +export function parseNumbersList(value: string, delim = ';') { + if (!value || !value.trim()) return []; + return value.split(delim).map(num => { + if (validateNumber(num)) throw new Error('All values must be numeric'); + return Number(num); + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/utils/prophet.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/utils/prophet.ts new file mode 100644 index 000000000000..2f8acf30602b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/utils/prophet.ts @@ -0,0 +1,140 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { TimeseriesDataRecord, NumberFormatter } from '@superset-ui/core'; +import { CallbackDataParams, OptionName } from 'echarts/types/src/util/types'; +import { TooltipMarker } from 'echarts/types/src/util/format'; +import { + ForecastSeriesContext, + ForecastSeriesEnum, + ProphetValue, +} from '../types'; +import { sanitizeHtml } from './series'; + +const seriesTypeRegex = new RegExp( + `(.+)(${ForecastSeriesEnum.ForecastLower}|${ForecastSeriesEnum.ForecastTrend}|${ForecastSeriesEnum.ForecastUpper})$`, +); +export const extractForecastSeriesContext = ( + seriesName: OptionName, +): ForecastSeriesContext => { + const name = seriesName as string; + const regexMatch = seriesTypeRegex.exec(name); + if (!regexMatch) return { name, type: ForecastSeriesEnum.Observation }; + return { + name: regexMatch[1], + type: regexMatch[2] as ForecastSeriesEnum, + }; +}; + +export const extractForecastSeriesContexts = ( + seriesNames: string[], +): { [key: string]: ForecastSeriesEnum[] } => + seriesNames.reduce((agg, name) => { + const context = extractForecastSeriesContext(name); + const currentContexts = agg[context.name] || []; + currentContexts.push(context.type); + return { ...agg, [context.name]: currentContexts }; + }, {} as { [key: string]: ForecastSeriesEnum[] }); + +export const extractProphetValuesFromTooltipParams = ( + params: (CallbackDataParams & { seriesId: string })[], +): Record => { + const values: Record = {}; + params.forEach(param => { + const { marker, seriesId, value } = param; + const context = extractForecastSeriesContext(seriesId); + const numericValue = (value as [Date, number])[1]; + if (numericValue) { + if (!(context.name in values)) + values[context.name] = { + marker: marker || '', + }; + const prophetValues = values[context.name]; + if (context.type === ForecastSeriesEnum.Observation) + prophetValues.observation = numericValue; + if (context.type === ForecastSeriesEnum.ForecastTrend) + prophetValues.forecastTrend = numericValue; + if (context.type === ForecastSeriesEnum.ForecastLower) + prophetValues.forecastLower = numericValue; + if (context.type === ForecastSeriesEnum.ForecastUpper) + prophetValues.forecastUpper = numericValue; + } + }); + return values; +}; + +export const formatProphetTooltipSeries = ({ + seriesName, + observation, + forecastTrend, + forecastLower, + forecastUpper, + marker, + formatter, +}: ProphetValue & { + seriesName: string; + marker: TooltipMarker; + formatter: NumberFormatter; +}): string => { + let row = `${marker}${sanitizeHtml(seriesName)}: `; + let isObservation = false; + if (observation) { + isObservation = true; + row += `${formatter(observation)}`; + } + if (forecastTrend) { + if (isObservation) row += ', '; + row += `ŷ = ${formatter(forecastTrend)}`; + } + if (forecastLower && forecastUpper) + // the lower bound needs to be added to the upper bound + row = `${row.trim()} (${formatter(forecastLower)}, ${formatter( + forecastLower + forecastUpper, + )})`; + return `${row.trim()}`; +}; + +export function rebaseTimeseriesDatum( + data: TimeseriesDataRecord[], + verboseMap: Record = {}, +) { + const keys = data.length > 0 ? Object.keys(data[0]) : []; + + // eslint-disable-next-line @typescript-eslint/no-unsafe-return + return data.map(row => { + const newRow: TimeseriesDataRecord = { __timestamp: '' }; + keys.forEach(key => { + const forecastContext = extractForecastSeriesContext(key); + const lowerKey = `${forecastContext.name}${ForecastSeriesEnum.ForecastLower}`; + let value = row[key] as number; + if ( + forecastContext.type === ForecastSeriesEnum.ForecastUpper && + keys.includes(lowerKey) && + value !== null && + row[lowerKey] !== null + ) { + value -= row[lowerKey] as number; + } + const newKey = + key !== '__timestamp' && verboseMap[key] ? verboseMap[key] : key; + newRow[newKey] = value; + }); + // eslint-disable-next-line @typescript-eslint/no-unsafe-return + return newRow; + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/utils/series.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/utils/series.ts new file mode 100644 index 000000000000..324ab06d1088 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/src/utils/series.ts @@ -0,0 +1,228 @@ +/* eslint-disable no-underscore-dangle */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + ChartDataResponseResult, + DataRecord, + DataRecordValue, + ensureIsArray, + GenericDataType, + NumberFormatter, + TimeFormatter, + TimeseriesDataRecord, +} from '@superset-ui/core'; +import { format, LegendComponentOption, SeriesOption } from 'echarts'; +import { NULL_STRING, TIMESERIES_CONSTANTS } from '../constants'; +import { LegendOrientation, LegendType } from '../types'; +import { defaultLegendPadding } from '../defaults'; + +function isDefined(value: T | undefined | null): boolean { + return value !== undefined && value !== null; +} + +export function extractTimeseriesSeries( + data: TimeseriesDataRecord[], + opts: { fillNeighborValue?: number } = {}, +): SeriesOption[] { + const { fillNeighborValue } = opts; + if (data.length === 0) return []; + const rows: TimeseriesDataRecord[] = data.map(datum => ({ + ...datum, + __timestamp: + datum.__timestamp || datum.__timestamp === 0 + ? new Date(datum.__timestamp) + : null, + })); + + return Object.keys(rows[0]) + .filter(key => key !== '__timestamp') + .map(key => ({ + id: key, + name: key, + data: rows.map((row, idx) => { + const isNextToDefinedValue = + isDefined(rows[idx - 1]?.[key]) || isDefined(rows[idx + 1]?.[key]); + return [ + row.__timestamp, + !isDefined(row[key]) && + isNextToDefinedValue && + fillNeighborValue !== undefined + ? fillNeighborValue + : row[key], + ]; + }), + })); +} + +export function formatSeriesName( + name: DataRecordValue | undefined, + { + numberFormatter, + timeFormatter, + coltype, + }: { + numberFormatter?: NumberFormatter; + timeFormatter?: TimeFormatter; + coltype?: GenericDataType; + } = {}, +): string { + if (name === undefined || name === null) { + return NULL_STRING; + } + if (typeof name === 'number') { + return numberFormatter ? numberFormatter(name) : name.toString(); + } + if (typeof name === 'boolean') { + return name.toString(); + } + if (name instanceof Date || coltype === GenericDataType.TEMPORAL) { + const d = name instanceof Date ? name : new Date(name); + + return timeFormatter ? timeFormatter(d) : d.toISOString(); + } + return name; +} + +export const getColtypesMapping = ({ + coltypes = [], + colnames = [], +}: ChartDataResponseResult): Record => + colnames.reduce( + (accumulator, item, index) => ({ ...accumulator, [item]: coltypes[index] }), + {}, + ); + +export function extractGroupbyLabel({ + datum = {}, + groupby, + numberFormatter, + timeFormatter, + coltypeMapping = {}, +}: { + datum?: DataRecord; + groupby?: string[] | null; + numberFormatter?: NumberFormatter; + timeFormatter?: TimeFormatter; + coltypeMapping: Record; +}): string { + return ensureIsArray(groupby) + .map(val => + formatSeriesName(datum[val], { + numberFormatter, + timeFormatter, + ...(coltypeMapping[val] && { coltype: coltypeMapping[val] }), + }), + ) + .join(', '); +} + +export function getLegendProps( + type: LegendType, + orientation: LegendOrientation, + show: boolean, + zoomable = false, +): LegendComponentOption | LegendComponentOption[] { + const legend: LegendComponentOption | LegendComponentOption[] = { + orient: [LegendOrientation.Top, LegendOrientation.Bottom].includes( + orientation, + ) + ? 'horizontal' + : 'vertical', + show, + type, + }; + switch (orientation) { + case LegendOrientation.Left: + legend.left = 0; + break; + case LegendOrientation.Right: + legend.right = 0; + legend.top = zoomable ? TIMESERIES_CONSTANTS.legendRightTopOffset : 0; + break; + case LegendOrientation.Bottom: + legend.bottom = 0; + break; + case LegendOrientation.Top: + default: + legend.top = 0; + legend.right = zoomable ? TIMESERIES_CONSTANTS.legendTopRightOffset : 0; + break; + } + return legend; +} + +export function getChartPadding( + show: boolean, + orientation: LegendOrientation, + margin?: string | number | null, + padding?: { top?: number; bottom?: number; left?: number; right?: number }, +): { + bottom: number; + left: number; + right: number; + top: number; +} { + let legendMargin; + if (!show) { + legendMargin = 0; + } else if ( + margin === null || + margin === undefined || + typeof margin === 'string' + ) { + legendMargin = defaultLegendPadding[orientation]; + } else { + legendMargin = margin; + } + + const { bottom = 0, left = 0, right = 0, top = 0 } = padding || {}; + return { + left: left + (orientation === LegendOrientation.Left ? legendMargin : 0), + right: right + (orientation === LegendOrientation.Right ? legendMargin : 0), + top: top + (orientation === LegendOrientation.Top ? legendMargin : 0), + bottom: + bottom + (orientation === LegendOrientation.Bottom ? legendMargin : 0), + }; +} + +export function dedupSeries(series: SeriesOption[]): SeriesOption[] { + const counter = new Map(); + return series.map(row => { + let { id } = row; + if (id === undefined) return row; + id = String(id); + const count = counter.get(id) || 0; + const suffix = count > 0 ? ` (${count})` : ''; + counter.set(id, count + 1); + return { + ...row, + id: `${id}${suffix}`, + }; + }); +} + +export function sanitizeHtml(text: string): string { + return format.encodeHTML(text); +} + +// TODO: Better use other method to maintain this state +export const currentSeries = { + name: '', + legend: '', +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/BoxPlot/buildQuery.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/BoxPlot/buildQuery.test.ts new file mode 100644 index 000000000000..10ba3a1ec575 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/BoxPlot/buildQuery.test.ts @@ -0,0 +1,58 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { isPostProcessingBoxplot } from '@superset-ui/core'; +import buildQuery from '../../src/BoxPlot/buildQuery'; +import { BoxPlotQueryFormData } from '../../src/BoxPlot/types'; + +describe('BoxPlot buildQuery', () => { + const formData: BoxPlotQueryFormData = { + emitFilter: false, + columns: [], + datasource: '5__table', + granularity_sqla: 'ds', + groupby: ['bar'], + metrics: ['foo'], + time_grain_sqla: 'P1Y', + viz_type: 'my_chart', + whiskerOptions: 'Tukey', + yAxisFormat: 'SMART_NUMBER', + }; + + it('should build timeseries when series columns is empty', () => { + const queryContext = buildQuery(formData); + const [query] = queryContext.queries; + expect(query.metrics).toEqual(['foo']); + expect(query.columns).toEqual(['ds', 'bar']); + expect(query.series_columns).toEqual(['bar']); + const [rule] = query.post_processing || []; + expect(isPostProcessingBoxplot(rule)).toEqual(true); + expect(rule.options.groupby).toEqual(['bar']); + }); + + it('should build non-timeseries query object when columns is defined', () => { + const queryContext = buildQuery({ ...formData, columns: ['qwerty'] }); + const [query] = queryContext.queries; + expect(query.metrics).toEqual(['foo']); + expect(query.columns).toEqual(['qwerty', 'bar']); + expect(query.series_columns).toEqual(['bar']); + const [rule] = query.post_processing || []; + expect(isPostProcessingBoxplot(rule)).toEqual(true); + expect(rule.options.groupby).toEqual(['bar']); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/BoxPlot/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/BoxPlot/transformProps.test.ts new file mode 100644 index 000000000000..7ddeb0b5c9b7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/BoxPlot/transformProps.test.ts @@ -0,0 +1,117 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartProps } from '@superset-ui/core'; +import transformProps from '../../src/BoxPlot/transformProps'; + +describe('BoxPlot tranformProps', () => { + const formData = { + datasource: '5__table', + granularity_sqla: 'ds', + time_grain_sqla: 'P1Y', + columns: [], + metrics: ['AVG(averageprice)'], + groupby: ['type', 'region'], + whiskerOptions: 'Tukey', + yAxisFormat: 'SMART_NUMBER', + viz_type: 'my_chart', + }; + const chartProps = new ChartProps({ + formData, + width: 800, + height: 600, + queriesData: [ + { + data: [ + { + type: 'organic', + region: 'Charlotte', + 'AVG(averageprice)__mean': 1.9405512820512825, + 'AVG(averageprice)__median': 1.9025, + 'AVG(averageprice)__max': 2.505, + 'AVG(averageprice)__min': 1.4775, + 'AVG(averageprice)__q1': 1.73875, + 'AVG(averageprice)__q3': 2.105, + 'AVG(averageprice)__count': 39, + 'AVG(averageprice)__outliers': [2.735], + }, + { + type: 'organic', + region: 'Hartford Springfield', + 'AVG(averageprice)__mean': 2.231141025641026, + 'AVG(averageprice)__median': 2.265, + 'AVG(averageprice)__max': 2.595, + 'AVG(averageprice)__min': 1.862, + 'AVG(averageprice)__q1': 2.1285, + 'AVG(averageprice)__q3': 2.32625, + 'AVG(averageprice)__count': 39, + 'AVG(averageprice)__outliers': [], + }, + ], + }, + ], + }); + + it('should tranform chart props for viz', () => { + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + series: expect.arrayContaining([ + expect.objectContaining({ + name: 'boxplot', + data: expect.arrayContaining([ + expect.objectContaining({ + name: 'organic, Charlotte', + value: [ + 1.4775, + 1.73875, + 1.9025, + 2.105, + 2.505, + 1.9405512820512825, + 39, + [2.735], + ], + }), + expect.objectContaining({ + name: 'organic, Hartford Springfield', + value: [ + 1.862, + 2.1285, + 2.265, + 2.32625, + 2.595, + 2.231141025641026, + 39, + [], + ], + }), + ]), + }), + expect.objectContaining({ + name: 'outlier', + data: [['organic, Charlotte', 2.735]], + }), + ]), + }), + }), + ); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Funnel/buildQuery.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Funnel/buildQuery.test.ts new file mode 100644 index 000000000000..09a5974537a6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Funnel/buildQuery.test.ts @@ -0,0 +1,36 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import buildQuery from '../../src/Funnel/buildQuery'; + +describe('Funnel buildQuery', () => { + const formData = { + datasource: '5__table', + granularity_sqla: 'ds', + metric: 'foo', + groupby: ['bar'], + viz_type: 'my_chart', + }; + + it('should build query fields from form data', () => { + const queryContext = buildQuery(formData); + const [query] = queryContext.queries; + expect(query.metrics).toEqual(['foo']); + expect(query.columns).toEqual(['bar']); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Funnel/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Funnel/transformProps.test.ts new file mode 100644 index 000000000000..1ee293474ea2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Funnel/transformProps.test.ts @@ -0,0 +1,135 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartProps, getNumberFormatter } from '@superset-ui/core'; +import transformProps, { + formatFunnelLabel, +} from '../../src/Funnel/transformProps'; +import { EchartsFunnelLabelTypeType } from '../../src/Funnel/types'; + +describe('Funnel tranformProps', () => { + const formData = { + colorScheme: 'bnbColors', + datasource: '3__table', + granularity_sqla: 'ds', + metric: 'sum__num', + groupby: ['foo', 'bar'], + }; + const chartProps = new ChartProps({ + formData, + width: 800, + height: 600, + queriesData: [ + { + data: [ + { foo: 'Sylvester', bar: 1, sum__num: 10 }, + { foo: 'Arnold', bar: 2, sum__num: 2.5 }, + ], + }, + ], + }); + + it('should tranform chart props for viz', () => { + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + series: [ + expect.objectContaining({ + data: expect.arrayContaining([ + expect.objectContaining({ + name: 'Arnold, 2', + value: 2.5, + }), + expect.objectContaining({ + name: 'Sylvester, 1', + value: 10, + }), + ]), + }), + ], + }), + }), + ); + }); +}); + +describe('formatFunnelLabel', () => { + it('should generate a valid funnel chart label', () => { + const numberFormatter = getNumberFormatter(); + const params = { name: 'My Label', value: 1234, percent: 12.34 }; + expect( + formatFunnelLabel({ + params, + numberFormatter, + labelType: EchartsFunnelLabelTypeType.Key, + }), + ).toEqual('My Label'); + expect( + formatFunnelLabel({ + params, + numberFormatter, + labelType: EchartsFunnelLabelTypeType.Value, + }), + ).toEqual('1.23k'); + expect( + formatFunnelLabel({ + params, + numberFormatter, + labelType: EchartsFunnelLabelTypeType.Percent, + }), + ).toEqual('12.34%'); + expect( + formatFunnelLabel({ + params, + numberFormatter, + labelType: EchartsFunnelLabelTypeType.KeyValue, + }), + ).toEqual('My Label: 1.23k'); + expect( + formatFunnelLabel({ + params, + numberFormatter, + labelType: EchartsFunnelLabelTypeType.KeyPercent, + }), + ).toEqual('My Label: 12.34%'); + expect( + formatFunnelLabel({ + params, + numberFormatter, + labelType: EchartsFunnelLabelTypeType.KeyValuePercent, + }), + ).toEqual('My Label: 1.23k (12.34%)'); + expect( + formatFunnelLabel({ + params: { ...params, name: '' }, + numberFormatter, + labelType: EchartsFunnelLabelTypeType.Key, + }), + ).toEqual(''); + expect( + formatFunnelLabel({ + params: { ...params, name: '' }, + numberFormatter, + labelType: EchartsFunnelLabelTypeType.Key, + sanitizeName: true, + }), + ).toEqual('<NULL>'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Gauge/buildQuery.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Gauge/buildQuery.test.ts new file mode 100644 index 000000000000..e300f2cf7233 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Gauge/buildQuery.test.ts @@ -0,0 +1,48 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import buildQuery from '../../src/Gauge/buildQuery'; + +describe('Gauge buildQuery', () => { + const baseFormData = { + datasource: '5__table', + metric: 'foo', + viz_type: 'my_chart', + }; + + it('should build query fields with no group by column', () => { + const formData = { ...baseFormData, groupby: null }; + const queryContext = buildQuery(formData); + const [query] = queryContext.queries; + expect(query.groupby).toEqual([]); + }); + + it('should build query fields with single group by column', () => { + const formData = { ...baseFormData, groupby: ['foo'] }; + const queryContext = buildQuery(formData); + const [query] = queryContext.queries; + expect(query.groupby).toEqual(['foo']); + }); + + it('should build query fields with multiple group by columns', () => { + const formData = { ...baseFormData, groupby: ['foo', 'bar'] }; + const queryContext = buildQuery(formData); + const [query] = queryContext.queries; + expect(query.groupby).toEqual(['foo', 'bar']); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Gauge/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Gauge/transformProps.test.ts new file mode 100644 index 000000000000..210ba3be80e5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Gauge/transformProps.test.ts @@ -0,0 +1,334 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartProps } from '@superset-ui/core'; +import transformProps from '../../src/Gauge/transformProps'; +import { DEFAULT_GAUGE_SERIES_OPTION } from '../../src/Gauge/constants'; + +describe('Echarts Gauge transformProps', () => { + const baseFormData = { + datasource: '26__table', + vizType: 'gauge_chart', + metric: 'count', + adhocFilters: [], + rowLimit: 10, + minVal: '0', + maxVal: 100, + startAngle: 225, + endAngle: -45, + colorScheme: 'SUPERSET_DEFAULT', + fontSize: 14, + numberFormat: 'SMART_NUMBER', + valueFormatter: '{value}', + showPointer: true, + animation: true, + showAxisTick: false, + showSplitLine: false, + splitNumber: 10, + showProgress: true, + overlap: true, + roundCap: false, + }; + + it('should transform chart props for no group by column', () => { + const formData = { ...baseFormData, groupby: [] }; + const queriesData = [ + { + colnames: ['count'], + data: [ + { + count: 16595, + }, + ], + }, + ]; + + const chartPropsConfig = { + formData, + width: 800, + height: 600, + queriesData, + }; + + const chartProps = new ChartProps(chartPropsConfig); + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + series: expect.arrayContaining([ + expect.objectContaining({ + data: [ + { + value: 16595, + name: '', + itemStyle: { + color: '#1f77b4', + }, + title: { + offsetCenter: ['0%', '20%'], + fontSize: 14, + }, + detail: { + offsetCenter: ['0%', '32.6%'], + fontSize: 16.8, + }, + }, + ], + }), + ]), + }), + }), + ); + }); + + it('should transform chart props for single group by column', () => { + const formData = { ...baseFormData, groupby: ['year'] }; + const queriesData = [ + { + colnames: ['year', 'count'], + data: [ + { + year: 1988, + count: 15, + }, + { + year: 1995, + count: 219, + }, + ], + }, + ]; + + const chartPropsConfig = { + formData, + width: 800, + height: 600, + queriesData, + }; + + const chartProps = new ChartProps(chartPropsConfig); + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + series: expect.arrayContaining([ + expect.objectContaining({ + data: [ + { + value: 15, + name: 'year: 1988', + itemStyle: { + color: '#1f77b4', + }, + title: { + offsetCenter: ['0%', '20%'], + fontSize: 14, + }, + detail: { + offsetCenter: ['0%', '32.6%'], + fontSize: 16.8, + }, + }, + { + value: 219, + name: 'year: 1995', + itemStyle: { + color: '#ff7f0e', + }, + title: { + offsetCenter: ['0%', '48%'], + fontSize: 14, + }, + detail: { + offsetCenter: ['0%', '60.6%'], + fontSize: 16.8, + }, + }, + ], + }), + ]), + }), + }), + ); + }); + + it('should transform chart props for multiple group by columns', () => { + const formData = { ...baseFormData, groupby: ['year', 'platform'] }; + const queriesData = [ + { + colnames: ['year', 'platform', 'count'], + data: [ + { + year: 2011, + platform: 'PC', + count: 140, + }, + { + year: 2008, + platform: 'PC', + count: 76, + }, + ], + }, + ]; + + const chartPropsConfig = { + formData, + width: 800, + height: 600, + queriesData, + }; + + const chartProps = new ChartProps(chartPropsConfig); + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + series: expect.arrayContaining([ + expect.objectContaining({ + data: [ + { + value: 140, + name: 'year: 2011, platform: PC', + itemStyle: { + color: '#1f77b4', + }, + title: { + offsetCenter: ['0%', '20%'], + fontSize: 14, + }, + detail: { + offsetCenter: ['0%', '32.6%'], + fontSize: 16.8, + }, + }, + { + value: 76, + name: 'year: 2008, platform: PC', + itemStyle: { + color: '#ff7f0e', + }, + title: { + offsetCenter: ['0%', '48%'], + fontSize: 14, + }, + detail: { + offsetCenter: ['0%', '60.6%'], + fontSize: 16.8, + }, + }, + ], + }), + ]), + }), + }), + ); + }); + + it('should transform chart props for intervals', () => { + const formData = { + ...baseFormData, + groupby: ['year', 'platform'], + intervals: '50,100', + intervalColorIndices: '1,2', + }; + const queriesData = [ + { + colnames: ['year', 'platform', 'count'], + data: [ + { + year: 2011, + platform: 'PC', + count: 140, + }, + { + year: 2008, + platform: 'PC', + count: 76, + }, + ], + }, + ]; + + const chartPropsConfig = { + formData, + width: 800, + height: 600, + queriesData, + }; + + const chartProps = new ChartProps(chartPropsConfig); + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + series: expect.arrayContaining([ + expect.objectContaining({ + axisLine: { + lineStyle: { + width: 14, + color: [ + [0.5, '#1f77b4'], + [1, '#ff7f0e'], + ], + }, + roundCap: false, + }, + data: [ + { + value: 140, + name: 'year: 2011, platform: PC', + itemStyle: { + color: '#1f77b4', + }, + title: { + offsetCenter: ['0%', '20%'], + fontSize: 14, + }, + detail: { + offsetCenter: ['0%', '32.6%'], + fontSize: 16.8, + }, + }, + { + value: 76, + name: 'year: 2008, platform: PC', + itemStyle: { + color: '#ff7f0e', + }, + title: { + offsetCenter: ['0%', '48%'], + fontSize: 14, + }, + detail: { + offsetCenter: ['0%', '60.6%'], + fontSize: 16.8, + }, + }, + ], + }), + ]), + }), + }), + ); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Graph/buildQuery.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Graph/buildQuery.test.ts new file mode 100644 index 000000000000..b8471c4d9335 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Graph/buildQuery.test.ts @@ -0,0 +1,95 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import buildQuery from '../../src/Graph/buildQuery'; + +describe('Graph buildQuery', () => { + const formData = { + datasource: '5__table', + granularity_sqla: 'ds', + source: 'dummy_source', + target: 'dummy_target', + metrics: ['foo', 'bar'], + viz_type: 'my_chart', + }; + + it('should build groupby with source and target categories', () => { + const formDataWithCategories = { + ...formData, + source: 'dummy_source', + target: 'dummy_target', + source_category: 'dummy_source_category', + target_category: 'dummy_target_category', + }; + const queryContext = buildQuery(formDataWithCategories); + const [query] = queryContext.queries; + expect(query.columns).toEqual([ + 'dummy_source', + 'dummy_target', + 'dummy_source_category', + 'dummy_target_category', + ]); + expect(query.metrics).toEqual(['foo', 'bar']); + }); + + it('should build groupby with source category', () => { + const formDataWithCategories = { + ...formData, + source: 'dummy_source', + target: 'dummy_target', + source_category: 'dummy_source_category', + }; + const queryContext = buildQuery(formDataWithCategories); + const [query] = queryContext.queries; + expect(query.columns).toEqual([ + 'dummy_source', + 'dummy_target', + 'dummy_source_category', + ]); + expect(query.metrics).toEqual(['foo', 'bar']); + }); + + it('should build groupby with target category', () => { + const formDataWithCategories = { + ...formData, + source: 'dummy_source', + target: 'dummy_target', + target_category: 'dummy_target_category', + }; + const queryContext = buildQuery(formDataWithCategories); + const [query] = queryContext.queries; + expect(query.columns).toEqual([ + 'dummy_source', + 'dummy_target', + 'dummy_target_category', + ]); + expect(query.metrics).toEqual(['foo', 'bar']); + }); + + it('should build groupby without any category', () => { + const formDataWithCategories = { + ...formData, + source: 'dummy_source', + target: 'dummy_target', + }; + const queryContext = buildQuery(formDataWithCategories); + const [query] = queryContext.queries; + expect(query.columns).toEqual(['dummy_source', 'dummy_target']); + expect(query.metrics).toEqual(['foo', 'bar']); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Graph/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Graph/transformProps.test.ts new file mode 100644 index 000000000000..bb73d77f11f7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Graph/transformProps.test.ts @@ -0,0 +1,236 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartProps } from '@superset-ui/core'; +import transformProps from '../../src/Graph/transformProps'; +import { DEFAULT_GRAPH_SERIES_OPTION } from '../../src/Graph/constants'; + +describe('EchartsGraph tranformProps', () => { + it('should tranform chart props for viz without category', () => { + const formData = { + colorScheme: 'bnbColors', + datasource: '3__table', + granularity_sqla: 'ds', + metric: 'count', + source: 'source_column', + target: 'target_column', + category: null, + }; + const queriesData = [ + { + colnames: ['source_column', 'target_column', 'count'], + data: [ + { + source_column: 'source_value_1', + target_column: 'target_value_1', + count: 6, + }, + { + source_column: 'source_value_2', + target_column: 'target_value_2', + count: 5, + }, + ], + }, + ]; + const chartPropsConfig = { + formData, + width: 800, + height: 600, + queriesData, + }; + + const chartProps = new ChartProps(chartPropsConfig); + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + legend: expect.objectContaining({ + data: [], + }), + series: expect.arrayContaining([ + expect.objectContaining({ + data: [ + { + category: undefined, + id: '0', + label: { show: true }, + name: 'source_value_1', + select: { + itemStyle: { borderWidth: 3, opacity: 1 }, + label: { fontWeight: 'bolder' }, + }, + symbolSize: 50, + tooltip: { formatter: '{b}: {c}' }, + value: 6, + }, + { + category: undefined, + id: '1', + label: { show: true }, + name: 'target_value_1', + select: { + itemStyle: { borderWidth: 3, opacity: 1 }, + label: { fontWeight: 'bolder' }, + }, + symbolSize: 50, + tooltip: { formatter: '{b}: {c}' }, + value: 6, + }, + { + category: undefined, + id: '2', + label: { show: true }, + name: 'source_value_2', + select: { + itemStyle: { borderWidth: 3, opacity: 1 }, + label: { fontWeight: 'bolder' }, + }, + symbolSize: 10, + tooltip: { formatter: '{b}: {c}' }, + value: 5, + }, + { + category: undefined, + id: '3', + label: { show: true }, + name: 'target_value_2', + select: { + itemStyle: { borderWidth: 3, opacity: 1 }, + label: { fontWeight: 'bolder' }, + }, + symbolSize: 10, + tooltip: { formatter: '{b}: {c}' }, + value: 5, + }, + ], + }), + expect.objectContaining({ + links: [ + { + emphasis: { lineStyle: { width: 12 } }, + lineStyle: { width: 6 }, + select: { + lineStyle: { opacity: 1, width: 9.600000000000001 }, + }, + source: '0', + target: '1', + value: 6, + }, + { + emphasis: { lineStyle: { width: 5 } }, + lineStyle: { width: 1.5 }, + select: { lineStyle: { opacity: 1, width: 5 } }, + source: '2', + target: '3', + value: 5, + }, + ], + }), + ]), + }), + }), + ); + }); + + it('should tranform chart props for viz with category and falsey normalization', () => { + const formData = { + colorScheme: 'bnbColors', + datasource: '3__table', + granularity_sqla: 'ds', + metric: 'count', + source: 'source_column', + target: 'target_column', + sourceCategory: 'source_category_column', + targetCategory: 'target_category_column', + }; + const queriesData = [ + { + colnames: [ + 'source_column', + 'target_column', + 'source_category_column', + 'target_category_column', + 'count', + ], + data: [ + { + source_column: 'source_value', + target_column: 'target_value', + source_category_column: 'category_value_1', + target_category_column: 'category_value_2', + count: 6, + }, + { + source_column: 'source_value', + target_column: 'target_value', + source_category_column: 'category_value_1', + target_category_column: 'category_value_2', + count: 5, + }, + ], + }, + ]; + const chartPropsConfig = { + formData, + width: 800, + height: 600, + queriesData, + }; + + const chartProps = new ChartProps(chartPropsConfig); + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + legend: expect.objectContaining({ + data: ['category_value_1', 'category_value_2'], + }), + series: expect.arrayContaining([ + expect.objectContaining({ + data: [ + { + id: '0', + name: 'source_value', + value: 11, + symbolSize: 10, + category: 'category_value_1', + select: DEFAULT_GRAPH_SERIES_OPTION.select, + tooltip: DEFAULT_GRAPH_SERIES_OPTION.tooltip, + label: { show: true }, + }, + { + id: '1', + name: 'target_value', + value: 11, + symbolSize: 10, + category: 'category_value_2', + select: DEFAULT_GRAPH_SERIES_OPTION.select, + tooltip: DEFAULT_GRAPH_SERIES_OPTION.tooltip, + label: { show: true }, + }, + ], + }), + ]), + }), + }), + ); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Pie/buildQuery.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Pie/buildQuery.test.ts new file mode 100644 index 000000000000..fa40dbf8f161 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Pie/buildQuery.test.ts @@ -0,0 +1,36 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import buildQuery from '../../src/Pie/buildQuery'; + +describe('Pie buildQuery', () => { + const formData = { + datasource: '5__table', + granularity_sqla: 'ds', + metric: 'foo', + groupby: ['bar'], + viz_type: 'my_chart', + }; + + it('should build query fields from form data', () => { + const queryContext = buildQuery(formData); + const [query] = queryContext.queries; + expect(query.metrics).toEqual(['foo']); + expect(query.columns).toEqual(['bar']); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Pie/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Pie/transformProps.test.ts new file mode 100644 index 000000000000..a2b429b4a323 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Pie/transformProps.test.ts @@ -0,0 +1,139 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + ChartProps, + getNumberFormatter, + SqlaFormData, +} from '@superset-ui/core'; +import transformProps, { formatPieLabel } from '../../src/Pie/transformProps'; +import { EchartsPieLabelType } from '../../src/Pie/types'; + +describe('Pie tranformProps', () => { + const formData: SqlaFormData = { + colorScheme: 'bnbColors', + datasource: '3__table', + granularity_sqla: 'ds', + metric: 'sum__num', + groupby: ['foo', 'bar'], + viz_type: 'my_viz', + }; + const chartProps = new ChartProps({ + formData, + width: 800, + height: 600, + queriesData: [ + { + data: [ + { foo: 'Sylvester', bar: 1, sum__num: 10 }, + { foo: 'Arnold', bar: 2, sum__num: 2.5 }, + ], + }, + ], + }); + + it('should tranform chart props for viz', () => { + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + series: [ + expect.objectContaining({ + avoidLabelOverlap: true, + data: expect.arrayContaining([ + expect.objectContaining({ + name: 'Arnold, 2', + value: 2.5, + }), + expect.objectContaining({ + name: 'Sylvester, 1', + value: 10, + }), + ]), + }), + ], + }), + }), + ); + }); +}); + +describe('formatPieLabel', () => { + it('should generate a valid pie chart label', () => { + const numberFormatter = getNumberFormatter(); + const params = { name: 'My Label', value: 1234, percent: 12.34 }; + expect( + formatPieLabel({ + params, + numberFormatter, + labelType: EchartsPieLabelType.Key, + }), + ).toEqual('My Label'); + expect( + formatPieLabel({ + params, + numberFormatter, + labelType: EchartsPieLabelType.Value, + }), + ).toEqual('1.23k'); + expect( + formatPieLabel({ + params, + numberFormatter, + labelType: EchartsPieLabelType.Percent, + }), + ).toEqual('12.34%'); + expect( + formatPieLabel({ + params, + numberFormatter, + labelType: EchartsPieLabelType.KeyValue, + }), + ).toEqual('My Label: 1.23k'); + expect( + formatPieLabel({ + params, + numberFormatter, + labelType: EchartsPieLabelType.KeyPercent, + }), + ).toEqual('My Label: 12.34%'); + expect( + formatPieLabel({ + params, + numberFormatter, + labelType: EchartsPieLabelType.KeyValuePercent, + }), + ).toEqual('My Label: 1.23k (12.34%)'); + expect( + formatPieLabel({ + params: { ...params, name: '' }, + numberFormatter, + labelType: EchartsPieLabelType.Key, + }), + ).toEqual(''); + expect( + formatPieLabel({ + params: { ...params, name: '' }, + numberFormatter, + labelType: EchartsPieLabelType.Key, + sanitizeName: true, + }), + ).toEqual('<NULL>'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Timeseries/buildQuery.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Timeseries/buildQuery.test.ts new file mode 100644 index 000000000000..7c0787dc0241 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Timeseries/buildQuery.test.ts @@ -0,0 +1,61 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import buildQuery from '../../src/Timeseries/buildQuery'; + +describe('Timeseries buildQuery', () => { + const formData = { + datasource: '5__table', + granularity_sqla: 'ds', + metrics: ['bar', 'baz'], + viz_type: 'my_chart', + }; + + it('should build groupby with series in form data', () => { + const queryContext = buildQuery(formData); + const [query] = queryContext.queries; + expect(query.metrics).toEqual(['bar', 'baz']); + }); + + it('should order by timeseries limit if orderby unspecified', () => { + const queryContext = buildQuery({ + ...formData, + timeseries_limit_metric: 'bar', + order_desc: true, + }); + const [query] = queryContext.queries; + expect(query.metrics).toEqual(['bar', 'baz']); + expect(query.timeseries_limit_metric).toEqual('bar'); + expect(query.order_desc).toEqual(true); + expect(query.orderby).toEqual([['bar', false]]); + }); + + it('should not order by timeseries limit if orderby provided', () => { + const queryContext = buildQuery({ + ...formData, + timeseries_limit_metric: 'bar', + order_desc: true, + orderby: [['foo', true]], + }); + const [query] = queryContext.queries; + expect(query.metrics).toEqual(['bar', 'baz']); + expect(query.timeseries_limit_metric).toEqual('bar'); + expect(query.order_desc).toEqual(true); + expect(query.orderby).toEqual([['foo', true]]); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Timeseries/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Timeseries/transformProps.test.ts new file mode 100644 index 000000000000..96c5865d76c6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Timeseries/transformProps.test.ts @@ -0,0 +1,246 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + ChartProps, + EventAnnotationLayer, + FormulaAnnotationLayer, + IntervalAnnotationLayer, + TimeseriesAnnotationLayer, +} from '@superset-ui/core'; +import transformProps from '../../src/Timeseries/transformProps'; + +describe('EchartsTimeseries tranformProps', () => { + const formData = { + colorScheme: 'bnbColors', + datasource: '3__table', + granularity_sqla: 'ds', + metric: 'sum__num', + groupby: ['foo', 'bar'], + }; + const queriesData = [ + { + data: [ + { 'San Francisco': 1, 'New York': 2, __timestamp: 599616000000 }, + { 'San Francisco': 3, 'New York': 4, __timestamp: 599916000000 }, + ], + }, + ]; + const chartPropsConfig = { + formData, + width: 800, + height: 600, + queriesData, + }; + + it('should tranform chart props for viz', () => { + const chartProps = new ChartProps(chartPropsConfig); + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + legend: expect.objectContaining({ + data: ['San Francisco', 'New York'], + }), + series: expect.arrayContaining([ + expect.objectContaining({ + data: [ + [new Date(599616000000), 1], + [new Date(599916000000), 3], + ], + name: 'San Francisco', + }), + expect.objectContaining({ + data: [ + [new Date(599616000000), 2], + [new Date(599916000000), 4], + ], + name: 'New York', + }), + ]), + }), + }), + ); + }); + + it('should add a formula annotation to viz', () => { + const formula: FormulaAnnotationLayer = { + name: 'My Formula', + annotationType: 'FORMULA', + value: 'x+1', + style: 'solid', + show: true, + }; + const chartProps = new ChartProps({ + ...chartPropsConfig, + formData: { + ...formData, + annotationLayers: [formula], + }, + }); + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + legend: expect.objectContaining({ + data: ['San Francisco', 'New York', 'My Formula'], + }), + series: expect.arrayContaining([ + expect.objectContaining({ + data: [ + [new Date(599616000000), 1], + [new Date(599916000000), 3], + ], + name: 'San Francisco', + }), + expect.objectContaining({ + data: [ + [new Date(599616000000), 2], + [new Date(599916000000), 4], + ], + name: 'New York', + }), + expect.objectContaining({ + data: [ + [new Date(599616000000), 599616000001], + [new Date(599916000000), 599916000001], + ], + name: 'My Formula', + }), + ]), + }), + }), + ); + }); + + it('should add an interval, event and timeseries annotation to viz', () => { + const event: EventAnnotationLayer = { + annotationType: 'EVENT', + name: 'My Event', + show: true, + sourceType: 'NATIVE', + style: 'solid', + value: 1, + }; + + const interval: IntervalAnnotationLayer = { + annotationType: 'INTERVAL', + name: 'My Interval', + show: true, + sourceType: 'table', + titleColumn: '', + timeColumn: 'start', + intervalEndColumn: '', + descriptionColumns: [], + style: 'dashed', + value: 2, + }; + + const timeseries: TimeseriesAnnotationLayer = { + annotationType: 'TIME_SERIES', + name: 'My Timeseries', + show: true, + sourceType: 'line', + style: 'solid', + titleColumn: '', + value: 3, + }; + const chartProps = new ChartProps({ + ...chartPropsConfig, + formData: { + ...formData, + annotationLayers: [event, interval, timeseries], + }, + queriesData: [ + { + ...queriesData[0], + annotation_data: { + 'My Event': { + columns: [ + 'start_dttm', + 'end_dttm', + 'short_descr', + 'long_descr', + 'json_metadata', + ], + records: [ + { + start_dttm: 0, + end_dttm: 1000, + short_descr: '', + long_descr: '', + json_metadata: null, + }, + ], + }, + 'My Interval': { + columns: ['start', 'end', 'title'], + records: [ + { + start: 2000, + end: 3000, + title: 'My Title', + }, + ], + }, + 'My Timeseries': [ + { + key: 'My Line', + values: [ + { + x: 10000, + y: 11000, + }, + { + x: 20000, + y: 21000, + }, + ], + }, + ], + }, + }, + ], + }); + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + echartOptions: expect.objectContaining({ + legend: expect.objectContaining({ + data: ['San Francisco', 'New York', 'My Line'], + }), + series: expect.arrayContaining([ + expect.objectContaining({ + type: 'line', + id: 'My Line', + }), + expect.objectContaining({ + type: 'line', + id: 'Event - My Event', + }), + expect.objectContaining({ + type: 'line', + id: 'Interval - My Interval', + }), + ]), + }), + }), + ); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Tree/buildQuery.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Tree/buildQuery.test.ts new file mode 100644 index 000000000000..38006defde52 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Tree/buildQuery.test.ts @@ -0,0 +1,51 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import buildQuery from '../../src/Tree/buildQuery'; + +describe('Tree buildQuery', () => { + it('should build query', () => { + const formData = { + datasource: '5__table', + granularity_sqla: 'ds', + id: 'id_col', + parent: 'relation_col', + name: 'name_col', + metrics: ['foo', 'bar'], + viz_type: 'my_chart', + }; + const queryContext = buildQuery(formData); + const [query] = queryContext.queries; + expect(query.columns).toEqual(['id_col', 'relation_col', 'name_col']); + expect(query.metrics).toEqual(['foo', 'bar']); + }); + it('should build query without name column', () => { + const formData = { + datasource: '5__table', + granularity_sqla: 'ds', + id: 'id_col', + parent: 'relation_col', + metrics: ['foo', 'bar'], + viz_type: 'my_chart', + }; + const queryContext = buildQuery(formData); + const [query] = queryContext.queries; + expect(query.columns).toEqual(['id_col', 'relation_col']); + expect(query.metrics).toEqual(['foo', 'bar']); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Tree/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Tree/transformProps.test.ts new file mode 100644 index 000000000000..bcb762b68cb1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Tree/transformProps.test.ts @@ -0,0 +1,420 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartProps } from '@superset-ui/core'; +import transformProps from '../../src/Tree/transformProps'; + +describe('EchartsTree tranformProps', () => { + const formData = { + colorScheme: 'bnbColors', + datasource: '3__table', + granularity_sqla: 'ds', + metric: 'count', + id: 'id_column', + parent: 'relation_column', + name: 'name_column', + rootNodeId: '1', + }; + const chartPropsConfig = { + formData, + width: 800, + height: 600, + }; + it('should tranform when parent present before child', () => { + const queriesData = [ + { + colnames: ['id_column', 'relation_column', 'name_column', 'count'], + data: [ + { + id_column: '1', + relation_column: null, + name_column: 'root', + count: 10, + }, + { + id_column: '2', + relation_column: '1', + name_column: 'first_child', + count: 10, + }, + { + id_column: '3', + relation_column: '2', + name_column: 'second_child', + count: 10, + }, + { + id_column: '4', + relation_column: '3', + name_column: 'third_child', + count: 10, + }, + ], + }, + ]; + + const chartProps = new ChartProps({ ...chartPropsConfig, queriesData }); + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + series: expect.arrayContaining([ + expect.objectContaining({ + data: [ + { + name: 'root', + children: [ + { + name: 'first_child', + value: 10, + children: [ + { + name: 'second_child', + value: 10, + children: [ + { name: 'third_child', value: 10, children: [] }, + ], + }, + ], + }, + ], + }, + ], + }), + ]), + }), + }), + ); + }); + it('should tranform when child is present before parent', () => { + const queriesData = [ + { + colnames: ['id_column', 'relation_column', 'name_column', 'count'], + data: [ + { + id_column: '1', + relation_column: null, + name_column: 'root', + count: 10, + }, + { + id_column: '2', + relation_column: '4', + name_column: 'second_child', + count: 20, + }, + { + id_column: '3', + relation_column: '4', + name_column: 'second_child', + count: 30, + }, + { + id_column: '4', + relation_column: '1', + name_column: 'first_child', + count: 40, + }, + ], + }, + ]; + + const chartProps = new ChartProps({ ...chartPropsConfig, queriesData }); + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + series: expect.arrayContaining([ + expect.objectContaining({ + data: [ + { + name: 'root', + children: [ + { + name: 'first_child', + value: 40, + children: [ + { + name: 'second_child', + value: 20, + children: [], + }, + { + name: 'second_child', + value: 30, + children: [], + }, + ], + }, + ], + }, + ], + }), + ]), + }), + }), + ); + }); + it('ignore node if not attached to root', () => { + const formData = { + colorScheme: 'bnbColors', + datasource: '3__table', + granularity_sqla: 'ds', + metric: 'count', + id: 'id_column', + parent: 'relation_column', + name: 'name_column', + rootNodeId: '2', + }; + const chartPropsConfig = { + formData, + width: 800, + height: 600, + }; + const queriesData = [ + { + colnames: ['id_column', 'relation_column', 'name_column', 'count'], + data: [ + { + id_column: '1', + relation_column: null, + name_column: 'root', + count: 10, + }, + { + id_column: '2', + relation_column: '1', + name_column: 'first_child', + count: 10, + }, + { + id_column: '3', + relation_column: '2', + name_column: 'second_child', + count: 10, + }, + { + id_column: '4', + relation_column: '3', + name_column: 'third_child', + count: 20, + }, + ], + }, + ]; + + const chartProps = new ChartProps({ ...chartPropsConfig, queriesData }); + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + series: expect.arrayContaining([ + expect.objectContaining({ + data: [ + { + name: 'first_child', + children: [ + { + name: 'second_child', + value: 10, + children: [ + { + name: 'third_child', + value: 20, + children: [], + }, + ], + }, + ], + }, + ], + }), + ]), + }), + }), + ); + }); + it('should transform props if name column is not specified', () => { + const formData = { + colorScheme: 'bnbColors', + datasource: '3__table', + granularity_sqla: 'ds', + metric: 'count', + id: 'id_column', + parent: 'relation_column', + rootNodeId: '1', + }; + const chartPropsConfig = { + formData, + width: 800, + height: 600, + }; + const queriesData = [ + { + colnames: ['id_column', 'relation_column', 'count'], + data: [ + { + id_column: '1', + relation_column: null, + count: 10, + }, + { + id_column: '2', + relation_column: '1', + count: 10, + }, + { + id_column: '3', + relation_column: '2', + count: 10, + }, + { + id_column: '4', + relation_column: '3', + count: 20, + }, + ], + }, + ]; + + const chartProps = new ChartProps({ ...chartPropsConfig, queriesData }); + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + series: expect.arrayContaining([ + expect.objectContaining({ + data: [ + { + name: '1', + children: [ + { + name: '2', + value: 10, + children: [ + { + name: '3', + value: 10, + children: [ + { + name: '4', + value: 20, + children: [], + }, + ], + }, + ], + }, + ], + }, + ], + }), + ]), + }), + }), + ); + }); + it('should find root node with null parent when root node name is not provided', () => { + const formData = { + colorScheme: 'bnbColors', + datasource: '3__table', + granularity_sqla: 'ds', + metric: 'count', + id: 'id_column', + parent: 'relation_column', + name: 'name_column', + }; + const chartPropsConfig = { + formData, + width: 800, + height: 600, + }; + const queriesData = [ + { + colnames: ['id_column', 'relation_column', 'name_column', 'count'], + data: [ + { + id_column: '2', + relation_column: '4', + name_column: 'second_child', + count: 20, + }, + { + id_column: '3', + relation_column: '4', + name_column: 'second_child', + count: 30, + }, + { + id_column: '4', + relation_column: '1', + name_column: 'first_child', + count: 40, + }, + { + id_column: '1', + relation_column: null, + name_column: 'root', + count: 10, + }, + ], + }, + ]; + + const chartProps = new ChartProps({ ...chartPropsConfig, queriesData }); + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + series: expect.arrayContaining([ + expect.objectContaining({ + data: [ + { + name: 'root', + children: [ + { + name: 'first_child', + value: 40, + children: [ + { + name: 'second_child', + value: 20, + children: [], + }, + { + name: 'second_child', + value: 30, + children: [], + }, + ], + }, + ], + }, + ], + }), + ]), + }), + }), + ); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Treemap/buildQuery.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Treemap/buildQuery.test.ts new file mode 100644 index 000000000000..913237f915a2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Treemap/buildQuery.test.ts @@ -0,0 +1,36 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import buildQuery from '../../src/Treemap/buildQuery'; + +describe('Treemap buildQuery', () => { + const formData = { + datasource: '5__table', + granularity_sqla: 'ds', + metric: 'foo', + groupby: ['bar'], + viz_type: 'my_chart', + }; + + it('should build query fields from form data', () => { + const queryContext = buildQuery(formData); + const [query] = queryContext.queries; + expect(query.metrics).toEqual(['foo']); + expect(query.columns).toEqual(['bar']); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Treemap/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Treemap/transformProps.test.ts new file mode 100644 index 000000000000..07661fe55574 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/Treemap/transformProps.test.ts @@ -0,0 +1,74 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartProps } from '@superset-ui/core'; +import transformProps from '../../src/Treemap/transformProps'; + +describe('Treemap tranformProps', () => { + const formData = { + colorScheme: 'bnbColors', + datasource: '3__table', + granularity_sqla: 'ds', + metric: 'sum__num', + groupby: ['foo', 'bar'], + }; + const chartProps = new ChartProps({ + formData, + width: 800, + height: 600, + queriesData: [ + { + data: [ + { foo: 'Sylvester', bar: 'bar1', sum__num: 10 }, + { foo: 'Arnold', bar: 'bar2', sum__num: 2.5 }, + ], + }, + ], + }); + + it('should tranform chart props for viz', () => { + expect(transformProps(chartProps)).toEqual( + expect.objectContaining({ + width: 800, + height: 600, + echartOptions: expect.objectContaining({ + series: [ + expect.objectContaining({ + data: expect.arrayContaining([ + expect.objectContaining({ + name: 'sum__num', + children: expect.arrayContaining([ + expect.objectContaining({ + name: 'Sylvester', + children: expect.arrayContaining([ + expect.objectContaining({ + name: 'bar1', + value: 10, + }), + ]), + }), + ]), + }), + ]), + }), + ], + }), + }), + ); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/index.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/index.test.ts new file mode 100644 index 000000000000..4ffd1cf473f2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/index.test.ts @@ -0,0 +1,37 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + EchartsBoxPlotChartPlugin, + EchartsPieChartPlugin, + EchartsTimeseriesChartPlugin, + EchartsGraphChartPlugin, + EchartsFunnelChartPlugin, + EchartsTreemapChartPlugin, +} from '../src'; + +describe('@superset-ui/plugin-chart-echarts', () => { + it('exists', () => { + expect(EchartsBoxPlotChartPlugin).toBeDefined(); + expect(EchartsPieChartPlugin).toBeDefined(); + expect(EchartsTimeseriesChartPlugin).toBeDefined(); + expect(EchartsGraphChartPlugin).toBeDefined(); + expect(EchartsFunnelChartPlugin).toBeDefined(); + expect(EchartsTreemapChartPlugin).toBeDefined(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/tsconfig.json new file mode 100644 index 000000000000..a46726fa364f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/tsconfig.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "composite": false, + "emitDeclarationOnly": false, + "noEmit": true, + "rootDir": "." + }, + "extends": "../../../tsconfig.json", + "include": [ + "**/*", + "../types/**/*", + "../../../types/**/*" + ], + "references": [ + { + "path": "../../../packages/superset-ui-chart-controls" + }, + { + "path": "../../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/utils/annotation.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/utils/annotation.test.ts new file mode 100644 index 000000000000..96a75b7e93f7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/utils/annotation.test.ts @@ -0,0 +1,174 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + AnnotationLayer, + AnnotationOpacity, + AnnotationResult, + AnnotationSourceType, + AnnotationStyle, + AnnotationType, + FormulaAnnotationLayer, + TimeseriesDataRecord, +} from '@superset-ui/core'; +import { + evalFormula, + extractAnnotationLabels, + formatAnnotationLabel, + parseAnnotationOpacity, +} from '../../src/utils/annotation'; + +describe('formatAnnotationLabel', () => { + it('should handle default cases properly', () => { + expect(formatAnnotationLabel('name')).toEqual('name'); + expect(formatAnnotationLabel('name', 'title')).toEqual('name - title'); + expect(formatAnnotationLabel('name', 'title', ['description'])).toEqual( + 'name - title\n\ndescription', + ); + }); + + it('should handle missing cases properly', () => { + expect(formatAnnotationLabel()).toEqual(''); + expect(formatAnnotationLabel(undefined, 'title')).toEqual('title'); + expect(formatAnnotationLabel('name', undefined, ['description'])).toEqual( + 'name\n\ndescription', + ); + expect( + formatAnnotationLabel(undefined, undefined, ['description']), + ).toEqual('description'); + }); + + it('should handle multiple descriptions properly', () => { + expect( + formatAnnotationLabel('name', 'title', [ + 'description 1', + 'description 2', + ]), + ).toEqual('name - title\n\ndescription 1\ndescription 2'); + expect( + formatAnnotationLabel(undefined, undefined, [ + 'description 1', + 'description 2', + ]), + ).toEqual('description 1\ndescription 2'); + }); +}); + +describe('extractForecastSeriesContext', () => { + it('should extract the correct series name and type', () => { + expect(parseAnnotationOpacity(AnnotationOpacity.Low)).toEqual(0.2); + expect(parseAnnotationOpacity(AnnotationOpacity.Medium)).toEqual(0.5); + expect(parseAnnotationOpacity(AnnotationOpacity.High)).toEqual(0.8); + expect(parseAnnotationOpacity(AnnotationOpacity.Undefined)).toEqual(1); + expect(parseAnnotationOpacity(undefined)).toEqual(1); + }); +}); + +describe('extractAnnotationLabels', () => { + it('should extract all annotations that can be added to the legend', () => { + const layers: AnnotationLayer[] = [ + { + annotationType: AnnotationType.Formula, + name: 'My Formula', + show: true, + style: AnnotationStyle.Solid, + value: 'sin(x)', + }, + { + annotationType: AnnotationType.Formula, + name: 'My Hidden Formula', + show: false, + style: AnnotationStyle.Solid, + value: 'sin(2x)', + }, + { + annotationType: AnnotationType.Interval, + name: 'My Interval', + sourceType: AnnotationSourceType.Table, + show: true, + style: AnnotationStyle.Solid, + value: 1, + }, + { + annotationType: AnnotationType.Timeseries, + name: 'My Line', + show: true, + style: AnnotationStyle.Dashed, + sourceType: AnnotationSourceType.Line, + value: 1, + }, + { + annotationType: AnnotationType.Timeseries, + name: 'My Hidden Line', + show: false, + style: AnnotationStyle.Dashed, + sourceType: AnnotationSourceType.Line, + value: 1, + }, + ]; + const results: AnnotationResult = { + 'My Interval': { + columns: ['col'], + records: [{ col: 1 }], + }, + 'My Line': [ + { key: 'Line 1', values: [] }, + { key: 'Line 2', values: [] }, + ], + }; + + expect(extractAnnotationLabels(layers, results)).toEqual([ + 'My Formula', + 'Line 1', + 'Line 2', + ]); + }); +}); + +describe('evalFormula', () => { + const layer: FormulaAnnotationLayer = { + annotationType: AnnotationType.Formula, + name: 'My Formula', + show: true, + style: AnnotationStyle.Solid, + value: 'x+1', + }; + it('Should evaluate a regular formula', () => { + const data: TimeseriesDataRecord[] = [ + { __timestamp: 0 }, + { __timestamp: 10 }, + ]; + + expect(evalFormula(layer, data)).toEqual([ + [new Date(0), 1], + [new Date(10), 11], + ]); + }); + + it('Should evaluate a formula containing redundant characters', () => { + const data: TimeseriesDataRecord[] = [ + { __timestamp: 0 }, + { __timestamp: 10 }, + ]; + + expect(evalFormula({ ...layer, value: 'y = x* 2 -1' }, data)).toEqual([ + [new Date(0), -1], + [new Date(10), 19], + ]); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/utils/controls.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/utils/controls.test.ts new file mode 100644 index 000000000000..60ced5773934 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/utils/controls.test.ts @@ -0,0 +1,37 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { parseYAxisBound } from '../../src/utils/controls'; + +describe('parseYAxisBound', () => { + it('should return undefined for invalid values', () => { + expect(parseYAxisBound(null)).toBeUndefined(); + expect(parseYAxisBound(undefined)).toBeUndefined(); + expect(parseYAxisBound(NaN)).toBeUndefined(); + expect(parseYAxisBound('abc')).toBeUndefined(); + }); + + it('should return numeric value for valid values', () => { + expect(parseYAxisBound(0)).toEqual(0); + expect(parseYAxisBound('0')).toEqual(0); + expect(parseYAxisBound(1)).toEqual(1); + expect(parseYAxisBound('1')).toEqual(1); + expect(parseYAxisBound(10.1)).toEqual(10.1); + expect(parseYAxisBound('10.1')).toEqual(10.1); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/utils/prophet.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/utils/prophet.test.ts new file mode 100644 index 000000000000..ace023fc3342 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/utils/prophet.test.ts @@ -0,0 +1,194 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { getNumberFormatter, NumberFormats } from '@superset-ui/core'; +import { + extractForecastSeriesContext, + extractProphetValuesFromTooltipParams, + formatProphetTooltipSeries, + rebaseTimeseriesDatum, +} from '../../src/utils/prophet'; +import { ForecastSeriesEnum } from '../../src/types'; + +describe('extractForecastSeriesContext', () => { + it('should extract the correct series name and type', () => { + expect(extractForecastSeriesContext('abcd')).toEqual({ + name: 'abcd', + type: ForecastSeriesEnum.Observation, + }); + expect(extractForecastSeriesContext('qwerty__yhat')).toEqual({ + name: 'qwerty', + type: ForecastSeriesEnum.ForecastTrend, + }); + expect(extractForecastSeriesContext('X Y Z___yhat_upper')).toEqual({ + name: 'X Y Z_', + type: ForecastSeriesEnum.ForecastUpper, + }); + expect(extractForecastSeriesContext('1 2 3__yhat_lower')).toEqual({ + name: '1 2 3', + type: ForecastSeriesEnum.ForecastLower, + }); + }); +}); + +describe('rebaseTimeseriesDatum', () => { + it('should subtract lower confidence level from upper value', () => { + expect( + rebaseTimeseriesDatum([ + { + __timestamp: new Date('2001-01-01'), + abc: 10, + abc__yhat_lower: 1, + abc__yhat_upper: 20, + }, + { + __timestamp: new Date('2002-01-01'), + abc: 10, + abc__yhat_lower: null, + abc__yhat_upper: 20, + }, + { + __timestamp: new Date('2003-01-01'), + abc: 10, + abc__yhat_lower: 1, + abc__yhat_upper: null, + }, + ]), + ).toEqual([ + { + __timestamp: new Date('2001-01-01'), + abc: 10, + abc__yhat_lower: 1, + abc__yhat_upper: 19, + }, + { + __timestamp: new Date('2002-01-01'), + abc: 10, + abc__yhat_lower: null, + abc__yhat_upper: 20, + }, + { + __timestamp: new Date('2003-01-01'), + abc: 10, + abc__yhat_lower: 1, + abc__yhat_upper: null, + }, + ]); + }); +}); + +describe('extractProphetValuesFromTooltipParams', () => { + it('should extract the proper data from tooltip params', () => { + expect( + extractProphetValuesFromTooltipParams([ + { + marker: '', + seriesId: 'abc', + value: [new Date(0), 10], + }, + { + marker: '', + seriesId: 'abc__yhat', + value: [new Date(0), 1], + }, + { + marker: '', + seriesId: 'abc__yhat_lower', + value: [new Date(0), 5], + }, + { + marker: '', + seriesId: 'abc__yhat_upper', + value: [new Date(0), 6], + }, + { + marker: '', + seriesId: 'qwerty', + value: [new Date(0), 2], + }, + ]), + ).toEqual({ + abc: { + marker: '', + observation: 10, + forecastTrend: 1, + forecastLower: 5, + forecastUpper: 6, + }, + qwerty: { + marker: '', + observation: 2, + }, + }); + }); +}); + +const formatter = getNumberFormatter(NumberFormats.INTEGER); + +describe('formatProphetTooltipSeries', () => { + it('should generate a proper series tooltip', () => { + expect( + formatProphetTooltipSeries({ + seriesName: 'abc', + marker: '', + observation: 10.1, + formatter, + }), + ).toEqual('abc: 10'); + expect( + formatProphetTooltipSeries({ + seriesName: 'qwerty', + marker: '', + observation: 10.1, + forecastTrend: 20.1, + forecastLower: 5.1, + forecastUpper: 7.1, + formatter, + }), + ).toEqual('qwerty: 10, ŷ = 20 (5, 12)'); + expect( + formatProphetTooltipSeries({ + seriesName: 'qwerty', + marker: '', + forecastTrend: 20, + forecastLower: 5, + forecastUpper: 7, + formatter, + }), + ).toEqual('qwerty: ŷ = 20 (5, 12)'); + expect( + formatProphetTooltipSeries({ + seriesName: 'qwerty', + marker: '', + observation: 10.1, + forecastLower: 6, + forecastUpper: 7, + formatter, + }), + ).toEqual('qwerty: 10 (6, 13)'); + expect( + formatProphetTooltipSeries({ + seriesName: 'qwerty', + marker: '', + forecastLower: 7, + forecastUpper: 8, + formatter, + }), + ).toEqual('qwerty: (7, 15)'); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/utils/series.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/utils/series.test.ts new file mode 100644 index 000000000000..91b9872ec844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/test/utils/series.test.ts @@ -0,0 +1,385 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { getNumberFormatter, getTimeFormatter } from '@superset-ui/core'; +import { + dedupSeries, + extractGroupbyLabel, + extractTimeseriesSeries, + formatSeriesName, + getChartPadding, + getLegendProps, + sanitizeHtml, +} from '../../src/utils/series'; +import { LegendOrientation, LegendType } from '../../src/types'; +import { defaultLegendPadding } from '../../src/defaults'; +import { NULL_STRING } from '../../src/constants'; + +describe('extractTimeseriesSeries', () => { + it('should generate a valid ECharts timeseries series object', () => { + const data = [ + { + __timestamp: '2000-01-01', + Hulk: null, + abc: 2, + }, + { + __timestamp: '2000-02-01', + Hulk: 2, + abc: 10, + }, + { + __timestamp: '2000-03-01', + Hulk: 1, + abc: 5, + }, + ]; + expect(extractTimeseriesSeries(data)).toEqual([ + { + id: 'Hulk', + name: 'Hulk', + data: [ + [new Date('2000-01-01'), null], + [new Date('2000-02-01'), 2], + [new Date('2000-03-01'), 1], + ], + }, + { + id: 'abc', + name: 'abc', + data: [ + [new Date('2000-01-01'), 2], + [new Date('2000-02-01'), 10], + [new Date('2000-03-01'), 5], + ], + }, + ]); + }); + + it('should do missing value imputation', () => { + const data = [ + { + __timestamp: '2000-01-01', + abc: null, + }, + { + __timestamp: '2000-02-01', + abc: null, + }, + { + __timestamp: '2000-03-01', + abc: 1, + }, + { + __timestamp: '2000-04-01', + abc: null, + }, + { + __timestamp: '2000-05-01', + abc: null, + }, + { + __timestamp: '2000-06-01', + abc: null, + }, + { + __timestamp: '2000-07-01', + abc: 2, + }, + { + __timestamp: '2000-08-01', + abc: 3, + }, + { + __timestamp: '2000-09-01', + abc: null, + }, + { + __timestamp: '2000-10-01', + abc: null, + }, + ]; + expect(extractTimeseriesSeries(data, { fillNeighborValue: 0 })).toEqual([ + { + id: 'abc', + name: 'abc', + data: [ + [new Date('2000-01-01'), null], + [new Date('2000-02-01'), 0], + [new Date('2000-03-01'), 1], + [new Date('2000-04-01'), 0], + [new Date('2000-05-01'), null], + [new Date('2000-06-01'), 0], + [new Date('2000-07-01'), 2], + [new Date('2000-08-01'), 3], + [new Date('2000-09-01'), 0], + [new Date('2000-10-01'), null], + ], + }, + ]); + }); +}); + +describe('extractGroupbyLabel', () => { + it('should join together multiple groupby labels', () => { + expect( + extractGroupbyLabel({ + datum: { a: 'abc', b: 'qwerty' }, + groupby: ['a', 'b'], + }), + ).toEqual('abc, qwerty'); + }); + + it('should handle a single groupby', () => { + expect( + extractGroupbyLabel({ datum: { xyz: 'qqq' }, groupby: ['xyz'] }), + ).toEqual('qqq'); + }); + + it('should handle mixed types', () => { + expect( + extractGroupbyLabel({ + datum: { strcol: 'abc', intcol: 123, floatcol: 0.123, boolcol: true }, + groupby: ['strcol', 'intcol', 'floatcol', 'boolcol'], + }), + ).toEqual('abc, 123, 0.123, true'); + }); + + it('should handle null and undefined groupby', () => { + expect( + extractGroupbyLabel({ + datum: { strcol: 'abc', intcol: 123, floatcol: 0.123, boolcol: true }, + groupby: null, + }), + ).toEqual(''); + expect(extractGroupbyLabel({})).toEqual(''); + }); +}); + +describe('formatSeriesName', () => { + const numberFormatter = getNumberFormatter(); + const timeFormatter = getTimeFormatter(); + it('should handle missing values properly', () => { + expect(formatSeriesName(undefined)).toEqual(''); + expect(formatSeriesName(null)).toEqual(''); + }); + + it('should handle string values properly', () => { + expect(formatSeriesName('abc XYZ!')).toEqual('abc XYZ!'); + }); + + it('should handle boolean values properly', () => { + expect(formatSeriesName(true)).toEqual('true'); + }); + + it('should use default formatting for numeric values without formatter', () => { + expect(formatSeriesName(12345678.9)).toEqual('12345678.9'); + }); + + it('should use numberFormatter for numeric values when formatter is provided', () => { + expect(formatSeriesName(12345678.9, { numberFormatter })).toEqual('12.3M'); + }); + + it('should use default formatting for for date values without formatter', () => { + expect(formatSeriesName(new Date('2020-09-11'))).toEqual( + '2020-09-11T00:00:00.000Z', + ); + }); + + it('should use timeFormatter for date values when formatter is provided', () => { + expect(formatSeriesName(new Date('2020-09-11'), { timeFormatter })).toEqual( + '2020-09-11 00:00:00', + ); + }); + + describe('getLegendProps', () => { + it('should return the correct props for scroll type with top orientation without zoom', () => { + expect( + getLegendProps(LegendType.Scroll, LegendOrientation.Top, true, false), + ).toEqual({ + show: true, + top: 0, + right: 0, + orient: 'horizontal', + type: 'scroll', + }); + }); + + it('should return the correct props for scroll type with top orientation with zoom', () => { + expect( + getLegendProps(LegendType.Scroll, LegendOrientation.Top, true, true), + ).toEqual({ + show: true, + top: 0, + right: 55, + orient: 'horizontal', + type: 'scroll', + }); + }); + + it('should return the correct props for plain type with left orientation', () => { + expect( + getLegendProps(LegendType.Plain, LegendOrientation.Left, true), + ).toEqual({ + show: true, + left: 0, + orient: 'vertical', + type: 'plain', + }); + }); + + it('should return the correct props for plain type with right orientation without zoom', () => { + expect( + getLegendProps(LegendType.Plain, LegendOrientation.Right, false, false), + ).toEqual({ + show: false, + right: 0, + top: 0, + orient: 'vertical', + type: 'plain', + }); + }); + + it('should return the correct props for plain type with right orientation with zoom', () => { + expect( + getLegendProps(LegendType.Plain, LegendOrientation.Right, false, true), + ).toEqual({ + show: false, + right: 0, + top: 30, + orient: 'vertical', + type: 'plain', + }); + }); + + it('should return the correct props for plain type with bottom orientation', () => { + expect( + getLegendProps(LegendType.Plain, LegendOrientation.Bottom, false), + ).toEqual({ + show: false, + bottom: 0, + orient: 'horizontal', + type: 'plain', + }); + }); + }); + + describe('getChartPadding', () => { + it('should handle top default', () => { + expect(getChartPadding(true, LegendOrientation.Top)).toEqual({ + bottom: 0, + left: 0, + right: 0, + top: defaultLegendPadding[LegendOrientation.Top], + }); + }); + + it('should handle left default', () => { + expect(getChartPadding(true, LegendOrientation.Left)).toEqual({ + bottom: 0, + left: defaultLegendPadding[LegendOrientation.Left], + right: 0, + top: 0, + }); + }); + + it('should return the default padding when show is false', () => { + expect( + getChartPadding(false, LegendOrientation.Left, 100, { + top: 10, + bottom: 20, + left: 30, + right: 40, + }), + ).toEqual({ + bottom: 20, + left: 30, + right: 40, + top: 10, + }); + }); + + it('should return the correct padding for left orientation', () => { + expect(getChartPadding(true, LegendOrientation.Left, 100)).toEqual({ + bottom: 0, + left: 100, + right: 0, + top: 0, + }); + }); + + it('should return the correct padding for right orientation', () => { + expect(getChartPadding(true, LegendOrientation.Right, 50)).toEqual({ + bottom: 0, + left: 0, + right: 50, + top: 0, + }); + }); + + it('should return the correct padding for top orientation', () => { + expect(getChartPadding(true, LegendOrientation.Top, 20)).toEqual({ + bottom: 0, + left: 0, + right: 0, + top: 20, + }); + }); + + it('should return the correct padding for bottom orientation', () => { + expect(getChartPadding(true, LegendOrientation.Bottom, 10)).toEqual({ + bottom: 10, + left: 0, + right: 0, + top: 0, + }); + }); + }); + + describe('dedupSeries', () => { + it('should deduplicate ids in series', () => { + expect( + dedupSeries([ + { + id: 'foo', + }, + { + id: 'bar', + }, + { + id: 'foo', + }, + { + id: 'foo', + }, + ]), + ).toEqual([ + { id: 'foo' }, + { id: 'bar' }, + { id: 'foo (1)' }, + { id: 'foo (2)' }, + ]); + }); + }); + + describe('sanitizeHtml', () => { + it('should remove html tags from series name', () => { + expect(sanitizeHtml(NULL_STRING)).toEqual('<NULL>'); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/types/external.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/types/external.d.ts new file mode 100644 index 000000000000..ecdf68a7452c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-echarts/types/external.d.ts @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +declare module '*.png' { + const value: any; + export default value; +} + +declare module '*.jpg'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/CHANGELOG.md new file mode 100644 index 000000000000..0219e084e89e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/CHANGELOG.md @@ -0,0 +1,38 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + + +### Bug Fixes + +* Make the scrollbar appear inside the table ([#1310](https://github.com/apache-superset/superset-ui/issues/1310)) ([1aad2d1](https://github.com/apache-superset/superset-ui/commit/1aad2d11af95f5046f2b67d86b30c9581de4994b)) + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/plugin-chart-pivot-table diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/README.md new file mode 100644 index 000000000000..5d1adec2e577 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/README.md @@ -0,0 +1,77 @@ + + +## @superset-ui/plugin-chart-pivot-table + +[![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-pivot-table.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-pivot-table) + +This plugin provides Pivot Table for Superset. + +If you change the logic of this plugin, please update +[`pivot_table`](https://github.com/apache/superset/blob/master/superset/charts/post_processing.py). + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import PivotTableChartPlugin from '@superset-ui/plugin-chart-pivot-table'; + +new PivotTableChartPlugin().configure({ key: 'pivot-table-v2' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui/?selectedKind=plugin-chart-pivot-table) +for more details. + +```js + +``` + +### File structure generated + +``` +├── package.json +├── README.md +├── tsconfig.json +├── src +│   ├── PivotTableChart.tsx +│   ├── images +│   │   └── thumbnail.png +│   ├── index.ts +│   ├── plugin +│   │   ├── buildQuery.ts +│   │   ├── controlPanel.ts +│   │   ├── index.ts +│   │   └── transformProps.ts +│   └── types.ts +├── test +│   └── index.test.ts +└── types + └── external.d.ts +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/package.json new file mode 100644 index 000000000000..cb9c707dc142 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/package.json @@ -0,0 +1,43 @@ +{ + "name": "@superset-ui/plugin-chart-pivot-table", + "version": "0.18.25", + "description": "Superset Chart - Pivot Table", + "sideEffects": false, + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@superset-ui/react-pivottable": "^0.12.12" + }, + "peerDependencies": { + "@ant-design/icons": "^4.2.2", + "react": "^16.13.1", + "react-dom": "^16.13.1" + }, + "devDependencies": { + "@babel/types": "^7.13.12", + "@types/jest": "^26.0.0", + "jest": "^26.0.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx new file mode 100644 index 000000000000..446c3929c88e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx @@ -0,0 +1,337 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { useCallback, useMemo } from 'react'; +import { PlusSquareOutlined, MinusSquareOutlined } from '@ant-design/icons'; +import { + AdhocMetric, + DataRecordValue, + getColumnLabel, + getNumberFormatter, + isPhysicalColumn, + NumberFormatter, + styled, + useTheme, +} from '@superset-ui/core'; +// @ts-ignore +import PivotTable from '@superset-ui/react-pivottable/PivotTable'; +import { + sortAs, + aggregatorTemplates, + // @ts-ignore +} from '@superset-ui/react-pivottable/Utilities'; +import '@superset-ui/react-pivottable/pivottable.css'; +import { isAdhocColumn } from '@superset-ui/chart-controls'; +import { + FilterType, + MetricsLayoutEnum, + PivotTableProps, + PivotTableStylesProps, + SelectedFiltersType, +} from './types'; + +const Styles = styled.div` + ${({ height, width, margin }) => ` + margin: ${margin}px; + height: ${height - margin * 2}px; + width: ${ + typeof width === 'string' ? parseInt(width, 10) : width - margin * 2 + }px; + `} +`; + +const PivotTableWrapper = styled.div` + height: 100%; + max-width: fit-content; + overflow: auto; +`; + +const METRIC_KEY = 'metric'; +const iconStyle = { stroke: 'black', strokeWidth: '16px' }; + +const aggregatorsFactory = (formatter: NumberFormatter) => ({ + Count: aggregatorTemplates.count(formatter), + 'Count Unique Values': aggregatorTemplates.countUnique(formatter), + 'List Unique Values': aggregatorTemplates.listUnique(', ', formatter), + Sum: aggregatorTemplates.sum(formatter), + Average: aggregatorTemplates.average(formatter), + Median: aggregatorTemplates.median(formatter), + 'Sample Variance': aggregatorTemplates.var(1, formatter), + 'Sample Standard Deviation': aggregatorTemplates.stdev(1, formatter), + Minimum: aggregatorTemplates.min(formatter), + Maximum: aggregatorTemplates.max(formatter), + First: aggregatorTemplates.first(formatter), + Last: aggregatorTemplates.last(formatter), + 'Sum as Fraction of Total': aggregatorTemplates.fractionOf( + aggregatorTemplates.sum(), + 'total', + formatter, + ), + 'Sum as Fraction of Rows': aggregatorTemplates.fractionOf( + aggregatorTemplates.sum(), + 'row', + formatter, + ), + 'Sum as Fraction of Columns': aggregatorTemplates.fractionOf( + aggregatorTemplates.sum(), + 'col', + formatter, + ), + 'Count as Fraction of Total': aggregatorTemplates.fractionOf( + aggregatorTemplates.count(), + 'total', + formatter, + ), + 'Count as Fraction of Rows': aggregatorTemplates.fractionOf( + aggregatorTemplates.count(), + 'row', + formatter, + ), + 'Count as Fraction of Columns': aggregatorTemplates.fractionOf( + aggregatorTemplates.count(), + 'col', + formatter, + ), +}); + +/* If you change this logic, please update the corresponding Python + * function (https://github.com/apache/superset/blob/master/superset/charts/post_processing.py), + * or reach out to @betodealmeida. + */ +export default function PivotTableChart(props: PivotTableProps) { + const { + data, + height, + width, + groupbyRows: groupbyRowsRaw, + groupbyColumns: groupbyColumnsRaw, + metrics, + colOrder, + rowOrder, + aggregateFunction, + transposePivot, + combineMetric, + rowSubtotalPosition, + colSubtotalPosition, + colTotals, + rowTotals, + valueFormat, + emitFilter, + setDataMask, + selectedFilters, + verboseMap, + columnFormats, + metricsLayout, + metricColorFormatters, + dateFormatters, + } = props; + + const theme = useTheme(); + const defaultFormatter = getNumberFormatter(valueFormat); + const columnFormatsArray = Object.entries(columnFormats); + const hasCustomMetricFormatters = columnFormatsArray.length > 0; + const metricFormatters = + hasCustomMetricFormatters && + Object.fromEntries( + columnFormatsArray.map(([metric, format]) => [ + metric, + getNumberFormatter(format), + ]), + ); + + const metricNames = useMemo( + () => + metrics.map((metric: string | AdhocMetric) => + typeof metric === 'string' ? metric : (metric.label as string), + ), + [metrics], + ); + + const unpivotedData = useMemo( + () => + data.reduce( + (acc: Record[], record: Record) => [ + ...acc, + ...metricNames + .map((name: string) => ({ + ...record, + [METRIC_KEY]: name, + value: record[name], + })) + .filter(record => record.value !== null), + ], + [], + ), + [data, metricNames], + ); + const groupbyRows = groupbyRowsRaw.map(getColumnLabel); + const groupbyColumns = groupbyColumnsRaw.map(getColumnLabel); + + let [rows, cols] = transposePivot + ? [groupbyColumns, groupbyRows] + : [groupbyRows, groupbyColumns]; + + if (metricsLayout === MetricsLayoutEnum.ROWS) { + rows = combineMetric ? [...rows, METRIC_KEY] : [METRIC_KEY, ...rows]; + } else { + cols = combineMetric ? [...cols, METRIC_KEY] : [METRIC_KEY, ...cols]; + } + + const handleChange = useCallback( + (filters: SelectedFiltersType) => { + const filterKeys = Object.keys(filters); + const groupby = [...groupbyRowsRaw, ...groupbyColumnsRaw]; + setDataMask({ + extraFormData: { + filters: + filterKeys.length === 0 + ? undefined + : filterKeys.map(key => { + const val = filters?.[key]; + const col = + groupby.find(item => { + if (isPhysicalColumn(item)) { + return item === key; + } + if (isAdhocColumn(item)) { + return item.label === key; + } + return false; + }) ?? ''; + if (val === null || val === undefined) + return { + col, + op: 'IS NULL', + }; + return { + col, + op: 'IN', + val: val as (string | number | boolean)[], + }; + }), + }, + filterState: { + value: + filters && Object.keys(filters).length + ? Object.values(filters) + : null, + selectedFilters: + filters && Object.keys(filters).length ? filters : null, + }, + }); + }, + [setDataMask], + ); + + const toggleFilter = useCallback( + ( + e: MouseEvent, + value: string, + filters: FilterType, + pivotData: Record, + isSubtotal: boolean, + isGrandTotal: boolean, + ) => { + if (isSubtotal || isGrandTotal || !emitFilter) { + return; + } + + const isActiveFilterValue = (key: string, val: DataRecordValue) => + !!selectedFilters && selectedFilters[key]?.includes(val); + + const filtersCopy = { ...filters }; + delete filtersCopy[METRIC_KEY]; + + const filtersEntries = Object.entries(filtersCopy); + if (filtersEntries.length === 0) { + return; + } + + const [key, val] = filtersEntries[filtersEntries.length - 1]; + + let updatedFilters = { ...(selectedFilters || {}) }; + // multi select + // if (selectedFilters && isActiveFilterValue(key, val)) { + // updatedFilters[key] = selectedFilters[key].filter((x: DataRecordValue) => x !== val); + // } else { + // updatedFilters[key] = [...(selectedFilters?.[key] || []), val]; + // } + // single select + if (selectedFilters && isActiveFilterValue(key, val)) { + updatedFilters = {}; + } else { + updatedFilters = { + [key]: [val], + }; + } + if ( + Array.isArray(updatedFilters[key]) && + updatedFilters[key].length === 0 + ) { + delete updatedFilters[key]; + } + handleChange(updatedFilters); + }, + [emitFilter, selectedFilters, handleChange], + ); + + return ( + + + , + arrowExpanded: , + }} + namesMapping={verboseMap} + /> + + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/images/thumbnail.png new file mode 100644 index 000000000000..9788bbcf7cef Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/index.ts new file mode 100644 index 000000000000..503c655e4914 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/index.ts @@ -0,0 +1,27 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +// eslint-disable-next-line import/prefer-default-export +export { default as PivotTableChartPlugin } from './plugin'; +/** + * Note: this file exports the default export from PivotTableChart.tsx. + * If you want to export multiple visualization modules, you will need to + * either add additional plugin folders (similar in structure to ./plugin) + * OR export multiple instances of `ChartPlugin` extensions in ./plugin/index.ts + * which in turn load exports from PivotTableChart.tsx + */ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/plugin/buildQuery.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/plugin/buildQuery.ts new file mode 100644 index 000000000000..cd5db2aedb0b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/plugin/buildQuery.ts @@ -0,0 +1,64 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + buildQueryContext, + ensureIsArray, + getMetricLabel, + normalizeOrderBy, + QueryFormColumn, +} from '@superset-ui/core'; +import { PivotTableQueryFormData } from '../types'; + +export default function buildQuery(formData: PivotTableQueryFormData) { + const { + groupbyColumns = [], + groupbyRows = [], + order_desc = true, + legacy_order_by, + } = formData; + // TODO: add deduping of AdhocColumns + const groupbySet = new Set([ + ...ensureIsArray(groupbyColumns), + ...ensureIsArray(groupbyRows), + ]); + return buildQueryContext(formData, baseQueryObject => { + const queryObject = normalizeOrderBy({ + ...baseQueryObject, + order_desc, + legacy_order_by, + }); + const { metrics } = queryObject; + const orderBy = ensureIsArray(legacy_order_by); + if ( + orderBy.length && + !metrics?.find( + metric => getMetricLabel(metric) === getMetricLabel(orderBy[0]), + ) + ) { + metrics?.push(orderBy[0]); + } + return [ + { + ...queryObject, + columns: [...groupbySet], + metrics, + }, + ]; + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.ts new file mode 100644 index 000000000000..e8ff6266d57a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.ts @@ -0,0 +1,327 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + QueryFormMetric, + smartDateFormatter, + t, + validateNonEmpty, +} from '@superset-ui/core'; +import { + ControlPanelConfig, + D3_TIME_FORMAT_OPTIONS, + formatSelectOptions, + sections, + sharedControls, + emitFilterControl, + legacySortBy, +} from '@superset-ui/chart-controls'; +import { MetricsLayoutEnum } from '../types'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + { ...sections.legacyTimeseriesTime, expanded: false }, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + [ + { + name: 'groupbyRows', + config: { + ...sharedControls.groupby, + label: t('Rows'), + description: t('Columns to group by on the rows'), + }, + }, + ], + [ + { + name: 'groupbyColumns', + config: { + ...sharedControls.groupby, + label: t('Columns'), + description: t('Columns to group by on the columns'), + }, + }, + ], + [ + { + name: 'metrics', + config: { + ...sharedControls.metrics, + validators: [validateNonEmpty], + }, + }, + ], + [ + { + name: 'metricsLayout', + config: { + type: 'RadioButtonControl', + renderTrigger: true, + label: t('Apply metrics on'), + default: MetricsLayoutEnum.COLUMNS, + options: [ + [MetricsLayoutEnum.COLUMNS, t('Columns')], + [MetricsLayoutEnum.ROWS, t('Rows')], + ], + description: t( + 'Use metrics as a top level group for columns or for rows', + ), + }, + }, + ], + ['adhoc_filters'], + emitFilterControl, + [ + { + name: 'row_limit', + config: { + ...sharedControls.row_limit, + }, + }, + ], + ...legacySortBy, + ], + }, + { + label: t('Options'), + expanded: true, + tabOverride: 'data', + controlSetRows: [ + [ + { + name: 'aggregateFunction', + config: { + type: 'SelectControl', + label: t('Aggregation function'), + clearable: false, + choices: formatSelectOptions([ + 'Count', + 'Count Unique Values', + 'List Unique Values', + 'Sum', + 'Average', + 'Median', + 'Sample Variance', + 'Sample Standard Deviation', + 'Minimum', + 'Maximum', + 'First', + 'Last', + 'Sum as Fraction of Total', + 'Sum as Fraction of Rows', + 'Sum as Fraction of Columns', + 'Count as Fraction of Total', + 'Count as Fraction of Rows', + 'Count as Fraction of Columns', + ]), + default: 'Sum', + description: t( + 'Aggregate function to apply when pivoting and computing the total rows and columns', + ), + renderTrigger: true, + }, + }, + ], + [ + { + name: 'rowTotals', + config: { + type: 'CheckboxControl', + label: t('Show rows total'), + default: false, + renderTrigger: true, + description: t('Display row level total'), + }, + }, + ], + [ + { + name: 'colTotals', + config: { + type: 'CheckboxControl', + label: t('Show columns total'), + default: false, + renderTrigger: true, + description: t('Display column level total'), + }, + }, + ], + [ + { + name: 'transposePivot', + config: { + type: 'CheckboxControl', + label: t('Transpose pivot'), + default: false, + description: t('Swap rows and columns'), + renderTrigger: true, + }, + }, + ], + [ + { + name: 'combineMetric', + config: { + type: 'CheckboxControl', + label: t('Combine metrics'), + default: false, + description: t( + 'Display metrics side by side within each column, as ' + + 'opposed to each column being displayed side by side for each metric.', + ), + renderTrigger: true, + }, + }, + ], + ], + }, + { + label: t('Options'), + expanded: true, + controlSetRows: [ + [ + { + name: 'valueFormat', + config: { + ...sharedControls.y_axis_format, + label: t('Value format'), + }, + }, + ], + [ + { + name: 'date_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Date format'), + default: smartDateFormatter.id, + renderTrigger: true, + choices: D3_TIME_FORMAT_OPTIONS, + description: t('D3 time format for datetime columns'), + }, + }, + ], + [ + { + name: 'rowOrder', + config: { + type: 'SelectControl', + label: t('Rows sort by'), + default: 'key_a_to_z', + choices: [ + // [value, label] + ['key_a_to_z', t('key a-z')], + ['key_z_to_a', t('key z-a')], + ['value_a_to_z', t('value ascending')], + ['value_z_to_a', t('value descending')], + ], + renderTrigger: true, + description: t('Order of rows'), + }, + }, + ], + [ + { + name: 'colOrder', + config: { + type: 'SelectControl', + label: t('Cols sort by'), + default: 'key_a_to_z', + choices: [ + // [value, label] + ['key_a_to_z', t('key a-z')], + ['key_z_to_a', t('key z-a')], + ['value_a_to_z', t('value ascending')], + ['value_z_to_a', t('value descending')], + ], + renderTrigger: true, + description: t('Order of columns'), + }, + }, + ], + [ + { + name: 'rowSubtotalPosition', + config: { + type: 'SelectControl', + label: t('Rows subtotal position'), + default: false, + choices: [ + // [value, label] + [true, t('Top')], + [false, t('Bottom')], + ], + renderTrigger: true, + description: t('Position of row level subtotal'), + }, + }, + ], + [ + { + name: 'colSubtotalPosition', + config: { + type: 'SelectControl', + label: t('Cols subtotal position'), + default: false, + choices: [ + // [value, label] + [true, t('Left')], + [false, t('Right')], + ], + renderTrigger: true, + description: t('Position of column level subtotal'), + }, + }, + ], + [ + { + name: 'conditional_formatting', + config: { + type: 'ConditionalFormattingControl', + renderTrigger: true, + label: t('Conditional formatting'), + description: t('Apply conditional color formatting to metrics'), + mapStateToProps(explore) { + const values = + (explore?.controls?.metrics?.value as QueryFormMetric[]) ?? + []; + const verboseMap = explore?.datasource?.verbose_map ?? {}; + const metricColumn = values.map(value => { + if (typeof value === 'string') { + return { value, label: verboseMap[value] ?? value }; + } + return { value: value.label, label: value.label }; + }); + return { + columnOptions: metricColumn, + verboseMap, + }; + }, + }, + }, + ], + ], + }, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/plugin/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/plugin/index.ts new file mode 100644 index 000000000000..423ac596251b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/plugin/index.ts @@ -0,0 +1,67 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + t, + ChartMetadata, + ChartPlugin, + Behavior, + ChartProps, + QueryFormData, +} from '@superset-ui/core'; +import buildQuery from './buildQuery'; +import controlPanel from './controlPanel'; +import transformProps from './transformProps'; +import thumbnail from '../images/thumbnail.png'; +import { PivotTableQueryFormData } from '../types'; + +export default class PivotTableChartPlugin extends ChartPlugin< + PivotTableQueryFormData, + ChartProps +> { + /** + * The constructor is used to pass relevant metadata and callbacks that get + * registered in respective registries that are used throughout the library + * and application. A more thorough description of each property is given in + * the respective imported file. + * + * It is worth noting that `buildQuery` and is optional, and only needed for + * advanced visualizations that require either post processing operations + * (pivoting, rolling aggregations, sorting etc) or submitting multiple queries. + */ + constructor() { + const metadata = new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('Table'), + description: t( + 'Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.', + ), + name: t('Pivot Table v2'), + tags: [t('Additive'), t('Report'), t('Tabular'), t('Popular')], + thumbnail, + }); + + super({ + buildQuery, + controlPanel, + loadChart: () => import('../PivotTableChart'), + metadata, + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/plugin/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/plugin/transformProps.ts new file mode 100644 index 000000000000..8666705b7a6a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/plugin/transformProps.ts @@ -0,0 +1,168 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + ChartProps, + DataRecord, + extractTimegrain, + GenericDataType, + getTimeFormatter, + getTimeFormatterForGranularity, + QueryFormData, + smartDateFormatter, + TimeFormats, +} from '@superset-ui/core'; +import { getColorFormatters } from '@superset-ui/chart-controls'; +import { DateFormatter } from '../types'; + +const { DATABASE_DATETIME } = TimeFormats; + +function isNumeric(key: string, data: DataRecord[] = []) { + return data.every( + record => + record[key] === null || + record[key] === undefined || + typeof record[key] === 'number', + ); +} + +export default function transformProps(chartProps: ChartProps) { + /** + * This function is called after a successful response has been + * received from the chart data endpoint, and is used to transform + * the incoming data prior to being sent to the Visualization. + * + * The transformProps function is also quite useful to return + * additional/modified props to your data viz component. The formData + * can also be accessed from your PivotTableChart.tsx file, but + * doing supplying custom props here is often handy for integrating third + * party libraries that rely on specific props. + * + * A description of properties in `chartProps`: + * - `height`, `width`: the height/width of the DOM element in which + * the chart is located + * - `formData`: the chart data request payload that was sent to the + * backend. + * - `queriesData`: the chart data response payload that was received + * from the backend. Some notable properties of `queriesData`: + * - `data`: an array with data, each row with an object mapping + * the column/alias to its value. Example: + * `[{ col1: 'abc', metric1: 10 }, { col1: 'xyz', metric1: 20 }]` + * - `rowcount`: the number of rows in `data` + * - `query`: the query that was issued. + * + * Please note: the transformProps function gets cached when the + * application loads. When making changes to the `transformProps` + * function during development with hot reloading, changes won't + * be seen until restarting the development server. + */ + const { + width, + height, + queriesData, + formData, + rawFormData, + hooks: { setDataMask = () => {} }, + filterState, + datasource: { verboseMap = {}, columnFormats = {} }, + } = chartProps; + const { data, colnames, coltypes } = queriesData[0]; + const { + groupbyRows, + groupbyColumns, + metrics, + tableRenderer, + colOrder, + rowOrder, + aggregateFunction, + transposePivot, + combineMetric, + rowSubtotalPosition, + colSubtotalPosition, + colTotals, + rowTotals, + valueFormat, + dateFormat, + emitFilter, + metricsLayout, + conditionalFormatting, + } = formData; + const { selectedFilters } = filterState; + const granularity = extractTimegrain(rawFormData); + + const dateFormatters = colnames + .filter( + (colname: string, index: number) => + coltypes[index] === GenericDataType.TEMPORAL, + ) + .reduce( + ( + acc: Record, + temporalColname: string, + ) => { + let formatter: DateFormatter | undefined; + if (dateFormat === smartDateFormatter.id) { + if (granularity) { + // time column use formats based on granularity + formatter = getTimeFormatterForGranularity(granularity); + } else if (isNumeric(temporalColname, data)) { + formatter = getTimeFormatter(DATABASE_DATETIME); + } else { + // if no column-specific format, print cell as is + formatter = String; + } + } else if (dateFormat) { + formatter = getTimeFormatter(dateFormat); + } + if (formatter) { + acc[temporalColname] = formatter; + } + return acc; + }, + {}, + ); + const metricColorFormatters = getColorFormatters(conditionalFormatting, data); + + return { + width, + height, + data, + groupbyRows, + groupbyColumns, + metrics, + tableRenderer, + colOrder, + rowOrder, + aggregateFunction, + transposePivot, + combineMetric, + rowSubtotalPosition, + colSubtotalPosition, + colTotals, + rowTotals, + valueFormat, + emitFilter, + setDataMask, + selectedFilters, + verboseMap, + columnFormats, + metricsLayout, + metricColorFormatters, + dateFormatters, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/types.ts new file mode 100644 index 000000000000..38d725e922b3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/src/types.ts @@ -0,0 +1,84 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + QueryFormData, + DataRecord, + SetDataMaskHook, + DataRecordValue, + JsonObject, + TimeFormatter, + NumberFormatter, + QueryFormMetric, + QueryFormColumn, +} from '@superset-ui/core'; +import { ColorFormatters } from '@superset-ui/chart-controls'; + +export interface PivotTableStylesProps { + height: number; + width: number | string; + margin: number; +} + +export type FilterType = Record; +export type SelectedFiltersType = Record; + +export type DateFormatter = + | TimeFormatter + | NumberFormatter + | ((value: DataRecordValue) => string); +export enum MetricsLayoutEnum { + ROWS = 'ROWS', + COLUMNS = 'COLUMNS', +} + +interface PivotTableCustomizeProps { + groupbyRows: QueryFormColumn[]; + groupbyColumns: QueryFormColumn[]; + metrics: QueryFormMetric[]; + tableRenderer: string; + colOrder: string; + rowOrder: string; + aggregateFunction: string; + transposePivot: boolean; + combineMetric: boolean; + rowSubtotalPosition: boolean; + colSubtotalPosition: boolean; + colTotals: boolean; + rowTotals: boolean; + valueFormat: string; + setDataMask: SetDataMaskHook; + emitFilter?: boolean; + selectedFilters?: SelectedFiltersType; + verboseMap: JsonObject; + columnFormats: JsonObject; + metricsLayout?: MetricsLayoutEnum; + metricColorFormatters: ColorFormatters; + dateFormatters: Record; + legacy_order_by: QueryFormMetric[] | QueryFormMetric | null; + order_desc: boolean; +} + +export type PivotTableQueryFormData = QueryFormData & + PivotTableStylesProps & + PivotTableCustomizeProps; + +export type PivotTableProps = PivotTableStylesProps & + PivotTableCustomizeProps & { + data: DataRecord[]; + }; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/test/index.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/test/index.test.ts new file mode 100644 index 000000000000..0461b14810c9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/test/index.test.ts @@ -0,0 +1,33 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { PivotTableChartPlugin } from '../src'; + +/** + * The example tests in this file act as a starting point, and + * we encourage you to build more. These tests check that the + * plugin loads properly, and focus on `transformProps` + * to ake sure that data, controls, and props are all + * treated correctly (e.g. formData from plugin controls + * properly transform the data and/or any resulting props). + */ +describe('@superset-ui/plugin-chart-pivot-table', () => { + it('exists', () => { + expect(PivotTableChartPlugin).toBeDefined(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/test/plugin/buildQuery.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/test/plugin/buildQuery.test.ts new file mode 100644 index 000000000000..e11b9943ba36 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/test/plugin/buildQuery.test.ts @@ -0,0 +1,56 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import buildQuery from '../../src/plugin/buildQuery'; + +describe('PivotTableChart buildQuery', () => { + const formData = { + groupbyRows: ['row1', 'row2'], + groupbyColumns: ['col1', 'col2'], + metrics: ['metric1', 'metric2'], + tableRenderer: 'Table With Subtotal', + colOrder: 'key_a_to_z', + rowOrder: 'key_a_to_z', + aggregateFunction: 'Sum', + transposePivot: true, + rowSubtotalPosition: true, + colSubtotalPosition: true, + colTotals: true, + rowTotals: true, + valueFormat: 'SMART_NUMBER', + datasource: '5__table', + viz_type: 'my_chart', + width: 800, + height: 600, + combineMetric: false, + verboseMap: {}, + columnFormats: {}, + metricColorFormatters: [], + dateFormatters: {}, + setDataMask: () => {}, + legacy_order_by: 'count', + order_desc: true, + }; + + it('should build groupby with series in form data', () => { + const queryContext = buildQuery(formData); + const [query] = queryContext.queries; + expect(query.columns).toEqual(['col1', 'col2', 'row1', 'row2']); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/test/plugin/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/test/plugin/transformProps.test.ts new file mode 100644 index 000000000000..12c184c27407 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/test/plugin/transformProps.test.ts @@ -0,0 +1,95 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ChartProps, QueryFormData } from '@superset-ui/core'; +import transformProps from '../../src/plugin/transformProps'; +import { MetricsLayoutEnum } from '../../src/types'; + +describe('PivotTableChart transformProps', () => { + const setDataMask = jest.fn(); + const formData = { + groupbyRows: ['row1', 'row2'], + groupbyColumns: ['col1', 'col2'], + metrics: ['metric1', 'metric2'], + tableRenderer: 'Table With Subtotal', + colOrder: 'key_a_to_z', + rowOrder: 'key_a_to_z', + aggregateFunction: 'Sum', + transposePivot: true, + combineMetric: true, + rowSubtotalPosition: true, + colSubtotalPosition: true, + colTotals: true, + rowTotals: true, + valueFormat: 'SMART_NUMBER', + emitFilter: false, + metricsLayout: MetricsLayoutEnum.COLUMNS, + viz_type: '', + datasource: '', + conditionalFormatting: [], + dateFormat: '', + legacy_order_by: 'count', + order_desc: true, + }; + const chartProps = new ChartProps({ + formData, + width: 800, + height: 600, + queriesData: [ + { + data: [{ name: 'Hulk', sum__num: 1, __timestamp: 599616000000 }], + colnames: ['name', 'sum__num', '__timestamp'], + coltypes: [1, 0, 2], + }, + ], + hooks: { setDataMask }, + filterState: { selectedFilters: {} }, + datasource: { verboseMap: {}, columnFormats: {} }, + }); + + it('should transform chart props for viz', () => { + expect(transformProps(chartProps)).toEqual({ + width: 800, + height: 600, + groupbyRows: ['row1', 'row2'], + groupbyColumns: ['col1', 'col2'], + metrics: ['metric1', 'metric2'], + tableRenderer: 'Table With Subtotal', + colOrder: 'key_a_to_z', + rowOrder: 'key_a_to_z', + aggregateFunction: 'Sum', + transposePivot: true, + combineMetric: true, + rowSubtotalPosition: true, + colSubtotalPosition: true, + colTotals: true, + rowTotals: true, + valueFormat: 'SMART_NUMBER', + data: [{ name: 'Hulk', sum__num: 1, __timestamp: 599616000000 }], + emitFilter: false, + setDataMask, + selectedFilters: {}, + verboseMap: {}, + metricsLayout: MetricsLayoutEnum.COLUMNS, + metricColorFormatters: [], + dateFormatters: {}, + columnFormats: {}, + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/types/external.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/types/external.d.ts new file mode 100644 index 000000000000..a273f3a2ba3e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-pivot-table/types/external.d.ts @@ -0,0 +1,23 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +declare module '*.png' { + const value: any; + export default value; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/CHANGELOG.md new file mode 100644 index 000000000000..4f3efe640fae --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/plugin-chart-table + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/plugin-chart-table diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/README.md new file mode 100644 index 000000000000..9401d834a3f2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/plugin-chart-table + +[![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-table.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-table) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-plugin-chart-table&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=plugins/superset-ui-plugin-chart-table) + +This plugin provides Table chart for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import TableChartPlugin from '@superset-ui/plugin-chart-table'; + +new TableChartPlugin().configure({ key: 'table' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-table) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/package.json new file mode 100644 index 000000000000..81496f350b90 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/package.json @@ -0,0 +1,46 @@ +{ + "name": "@superset-ui/plugin-chart-table", + "version": "0.18.25", + "description": "Superset Chart - Table", + "main": "lib/index.js", + "module": "esm/index.js", + "sideEffects": false, + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@react-icons/all-files": "^4.1.0", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@types/d3-array": "^2.9.0", + "@types/react-table": "^7.0.29", + "d3-array": "^2.4.0", + "match-sorter": "^6.3.0", + "memoize-one": "^5.1.1", + "react-table": "^7.6.3", + "regenerator-runtime": "^0.13.7", + "xss": "^1.0.8" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.13.1", + "react-dom": "^16.13.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/DataTable.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/DataTable.tsx new file mode 100644 index 000000000000..90d876d242eb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/DataTable.tsx @@ -0,0 +1,351 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { + useCallback, + useRef, + ReactNode, + HTMLProps, + MutableRefObject, + CSSProperties, +} from 'react'; +import { + useTable, + usePagination, + useSortBy, + useGlobalFilter, + PluginHook, + TableOptions, + FilterType, + IdType, + Row, +} from 'react-table'; +import { matchSorter, rankings } from 'match-sorter'; +import GlobalFilter, { GlobalFilterProps } from './components/GlobalFilter'; +import SelectPageSize, { + SelectPageSizeProps, + SizeOption, +} from './components/SelectPageSize'; +import SimplePagination from './components/Pagination'; +import useSticky from './hooks/useSticky'; +import { PAGE_SIZE_OPTIONS } from '../consts'; + +export interface DataTableProps extends TableOptions { + tableClassName?: string; + searchInput?: boolean | GlobalFilterProps['searchInput']; + selectPageSize?: boolean | SelectPageSizeProps['selectRenderer']; + pageSizeOptions?: SizeOption[]; // available page size options + maxPageItemCount?: number; + hooks?: PluginHook[]; // any additional hooks + width?: string | number; + height?: string | number; + serverPagination?: boolean; + onServerPaginationChange: (pageNumber: number, pageSize: number) => void; + serverPaginationData: { pageSize?: number; currentPage?: number }; + pageSize?: number; + noResults?: string | ((filterString: string) => ReactNode); + sticky?: boolean; + rowCount: number; + wrapperRef?: MutableRefObject; +} + +export interface RenderHTMLCellProps extends HTMLProps { + cellContent: ReactNode; +} + +// Be sure to pass our updateMyData and the skipReset option +export default function DataTable({ + tableClassName, + columns, + data, + serverPaginationData, + width: initialWidth = '100%', + height: initialHeight = 300, + pageSize: initialPageSize = 0, + initialState: initialState_ = {}, + pageSizeOptions = PAGE_SIZE_OPTIONS, + maxPageItemCount = 9, + sticky: doSticky, + searchInput = true, + onServerPaginationChange, + rowCount, + selectPageSize, + noResults: noResultsText = 'No data found', + hooks, + serverPagination, + wrapperRef: userWrapperRef, + ...moreUseTableOptions +}: DataTableProps): JSX.Element { + const tableHooks: PluginHook[] = [ + useGlobalFilter, + useSortBy, + usePagination, + doSticky ? useSticky : [], + hooks || [], + ].flat(); + const resultsSize = serverPagination ? rowCount : data.length; + const sortByRef = useRef([]); // cache initial `sortby` so sorting doesn't trigger page reset + const pageSizeRef = useRef([initialPageSize, resultsSize]); + const hasPagination = initialPageSize > 0 && resultsSize > 0; // pageSize == 0 means no pagination + const hasGlobalControl = hasPagination || !!searchInput; + const initialState = { + ...initialState_, + // zero length means all pages, the `usePagination` plugin does not + // understand pageSize = 0 + sortBy: sortByRef.current, + pageSize: initialPageSize > 0 ? initialPageSize : resultsSize || 10, + }; + const defaultWrapperRef = useRef(null); + const globalControlRef = useRef(null); + const paginationRef = useRef(null); + const wrapperRef = userWrapperRef || defaultWrapperRef; + const paginationData = JSON.stringify(serverPaginationData); + + const defaultGetTableSize = useCallback(() => { + if (wrapperRef.current) { + // `initialWidth` and `initialHeight` could be also parameters like `100%` + // `Number` reaturns `NaN` on them, then we fallback to computed size + const width = Number(initialWidth) || wrapperRef.current.clientWidth; + const height = + (Number(initialHeight) || wrapperRef.current.clientHeight) - + (globalControlRef.current?.clientHeight || 0) - + (paginationRef.current?.clientHeight || 0); + return { width, height }; + } + return undefined; + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [ + initialHeight, + initialWidth, + wrapperRef, + hasPagination, + hasGlobalControl, + paginationRef, + resultsSize, + paginationData, + ]); + + const defaultGlobalFilter: FilterType = useCallback( + (rows: Row[], columnIds: IdType[], filterValue: string) => { + // allow searching by "col1_value col2_value" + const joinedString = (row: Row) => + columnIds.map(x => row.values[x]).join(' '); + return matchSorter(rows, filterValue, { + keys: [...columnIds, joinedString], + threshold: rankings.ACRONYM, + }) as typeof rows; + }, + [], + ); + + const { + getTableProps, + getTableBodyProps, + prepareRow, + headerGroups, + footerGroups, + page, + pageCount, + gotoPage, + preGlobalFilteredRows, + setGlobalFilter, + setPageSize: setPageSize_, + wrapStickyTable, + state: { pageIndex, pageSize, globalFilter: filterValue, sticky = {} }, + } = useTable( + { + columns, + data, + initialState, + getTableSize: defaultGetTableSize, + globalFilter: defaultGlobalFilter, + ...moreUseTableOptions, + }, + ...tableHooks, + ); + // make setPageSize accept 0 + const setPageSize = (size: number) => { + if (serverPagination) { + onServerPaginationChange(0, size); + } + // keep the original size if data is empty + if (size || resultsSize !== 0) { + setPageSize_(size === 0 ? resultsSize : size); + } + }; + + const noResults = + typeof noResultsText === 'function' + ? noResultsText(filterValue as string) + : noResultsText; + + const getNoResults = () =>
{noResults}
; + + if (!columns || columns.length === 0) { + return ( + wrapStickyTable ? wrapStickyTable(getNoResults) : getNoResults() + ) as JSX.Element; + } + + const shouldRenderFooter = columns.some(x => !!x.Footer); + + const renderTable = () => ( + + + {headerGroups.map(headerGroup => { + const { key: headerGroupKey, ...headerGroupProps } = + headerGroup.getHeaderGroupProps(); + return ( + + {headerGroup.headers.map(column => + column.render('Header', { + key: column.id, + ...column.getSortByToggleProps(), + }), + )} + + ); + })} + + + {page && page.length > 0 ? ( + page.map(row => { + prepareRow(row); + const { key: rowKey, ...rowProps } = row.getRowProps(); + return ( + + {row.cells.map(cell => + cell.render('Cell', { key: cell.column.id }), + )} + + ); + }) + ) : ( + + + + )} + + {shouldRenderFooter && ( + + {footerGroups.map(footerGroup => { + const { key: footerGroupKey, ...footerGroupProps } = + footerGroup.getHeaderGroupProps(); + return ( + + {footerGroup.headers.map(column => + column.render('Footer', { key: column.id }), + )} + + ); + })} + + )} +
+ {noResults} +
+ ); + + // force update the pageSize when it's been update from the initial state + if ( + pageSizeRef.current[0] !== initialPageSize || + // when initialPageSize stays as zero, but total number of records changed, + // we'd also need to update page size + (initialPageSize === 0 && pageSizeRef.current[1] !== resultsSize) + ) { + pageSizeRef.current = [initialPageSize, resultsSize]; + setPageSize(initialPageSize); + } + + const paginationStyle: CSSProperties = sticky.height + ? {} + : { visibility: 'hidden' }; + + let resultPageCount = pageCount; + let resultCurrentPageSize = pageSize; + let resultCurrentPage = pageIndex; + let resultOnPageChange: (page: number) => void = gotoPage; + if (serverPagination) { + const serverPageSize = serverPaginationData.pageSize ?? initialPageSize; + resultPageCount = Math.ceil(rowCount / serverPageSize); + if (!Number.isFinite(resultPageCount)) { + resultPageCount = 0; + } + resultCurrentPageSize = serverPageSize; + const foundPageSizeIndex = pageSizeOptions.findIndex( + ([option]) => option >= resultCurrentPageSize, + ); + if (foundPageSizeIndex === -1) { + resultCurrentPageSize = 0; + } + resultCurrentPage = serverPaginationData.currentPage ?? 0; + resultOnPageChange = (pageNumber: number) => + onServerPaginationChange(pageNumber, serverPageSize); + } + return ( +
+ {hasGlobalControl ? ( +
+
+
+ {hasPagination ? ( + + ) : null} +
+ {searchInput ? ( +
+ + searchInput={ + typeof searchInput === 'boolean' ? undefined : searchInput + } + preGlobalFilteredRows={preGlobalFilteredRows} + setGlobalFilter={setGlobalFilter} + filterValue={filterValue} + /> +
+ ) : null} +
+
+ ) : null} + {wrapStickyTable ? wrapStickyTable(renderTable) : renderTable()} + {hasPagination && resultPageCount > 1 ? ( + + ) : null} +
+ ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/README.md new file mode 100644 index 000000000000..496c63b7702f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/README.md @@ -0,0 +1,25 @@ + + +# Superset UI Data Table + +Reusable data table based on [react-table](https://github.com/tannerlinsley/react-table), with +built-in support for sorting, filtering, and pagination. + +Intended to be used as a standalone UI component in the future. diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/components/GlobalFilter.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/components/GlobalFilter.tsx new file mode 100644 index 000000000000..8e36905ee852 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/components/GlobalFilter.tsx @@ -0,0 +1,82 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { ComponentType, ChangeEventHandler } from 'react'; +import { Row, FilterValue } from 'react-table'; +import useAsyncState from '../utils/useAsyncState'; + +export interface SearchInputProps { + count: number; + value: string; + onChange: ChangeEventHandler; +} + +export interface GlobalFilterProps { + preGlobalFilteredRows: Row[]; + // filter value cannot be `undefined` otherwise React will report component + // control type undefined error + filterValue: string; + setGlobalFilter: (filterValue: FilterValue) => void; + searchInput?: ComponentType; +} + +function DefaultSearchInput({ count, value, onChange }: SearchInputProps) { + return ( + + Search{' '} + + + ); +} + +export default (React.memo as (fn: T) => T)(function GlobalFilter< + D extends object, +>({ + preGlobalFilteredRows, + filterValue = '', + searchInput, + setGlobalFilter, +}: GlobalFilterProps) { + const count = preGlobalFilteredRows.length; + const [value, setValue] = useAsyncState( + filterValue, + (newValue: string) => { + setGlobalFilter(newValue || undefined); + }, + 200, + ); + + const SearchInput = searchInput || DefaultSearchInput; + + return ( + { + const target = e.target as HTMLInputElement; + e.preventDefault(); + setValue(target.value); + }} + /> + ); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/components/Pagination.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/components/Pagination.tsx new file mode 100644 index 000000000000..de4ca2bd01e2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/components/Pagination.tsx @@ -0,0 +1,121 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { CSSProperties } from 'react'; + +export interface PaginationProps { + pageCount: number; // number of pages + currentPage?: number; // index of current page, zero-based + maxPageItemCount?: number; + ellipsis?: string; // content for ellipsis item + onPageChange: (page: number) => void; // `page` is zero-based + style?: CSSProperties; +} + +// first, ..., prev, current, next, ..., last +const MINIMAL_PAGE_ITEM_COUNT = 7; + +/** + * Generate numeric page items around current page. + * - Always include first and last page + * - Add ellipsis if needed + */ +export function generatePageItems( + total: number, + current: number, + width: number, +) { + if (width < MINIMAL_PAGE_ITEM_COUNT) { + throw new Error( + `Must allow at least ${MINIMAL_PAGE_ITEM_COUNT} page items`, + ); + } + if (width % 2 === 0) { + throw new Error(`Must allow odd number of page items`); + } + if (total < width) { + return [...new Array(total).keys()]; + } + const left = Math.max( + 0, + Math.min(total - width, current - Math.floor(width / 2)), + ); + const items: (string | number)[] = new Array(width); + for (let i = 0; i < width; i += 1) { + items[i] = i + left; + } + // replace non-ending items with placeholders + if (items[0] > 0) { + items[0] = 0; + items[1] = 'prev-more'; + } + if (items[items.length - 1] < total - 1) { + items[items.length - 1] = total - 1; + items[items.length - 2] = 'next-more'; + } + return items; +} + +export default React.memo( + React.forwardRef(function Pagination( + { + style, + pageCount, + currentPage = 0, + maxPageItemCount = 9, + onPageChange, + }: PaginationProps, + ref: React.Ref, + ) { + const pageItems = generatePageItems( + pageCount, + currentPage, + maxPageItemCount, + ); + return ( +
+ +
+ ); + }), +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx new file mode 100644 index 000000000000..989b121a3352 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx @@ -0,0 +1,99 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { formatSelectOptions } from '@superset-ui/chart-controls'; + +export type SizeOption = [number, string]; + +export interface SelectPageSizeRendererProps { + current: number; + options: SizeOption[]; + onChange: SelectPageSizeProps['onChange']; +} + +function DefaultSelectRenderer({ + current, + options, + onChange, +}: SelectPageSizeRendererProps) { + return ( + + Show{' '} + {' '} + entries + + ); +} + +export interface SelectPageSizeProps extends SelectPageSizeRendererProps { + total?: number; + selectRenderer?: typeof DefaultSelectRenderer; + onChange: (pageSize: number) => void; +} + +function getOptionValue(x: SizeOption) { + return Array.isArray(x) ? x[0] : x; +} + +export default React.memo(function SelectPageSize({ + total, + options: sizeOptions, + current: currentSize, + selectRenderer, + onChange, +}: SelectPageSizeProps) { + const sizeOptionValues = sizeOptions.map(getOptionValue); + let options = [...sizeOptions]; + // insert current size to list + if ( + currentSize !== undefined && + (currentSize !== total || !sizeOptionValues.includes(0)) && + !sizeOptionValues.includes(currentSize) + ) { + options = [...sizeOptions]; + options.splice( + sizeOptionValues.findIndex(x => x > currentSize), + 0, + formatSelectOptions([currentSize])[0], + ); + } + const current = currentSize === undefined ? sizeOptionValues[0] : currentSize; + const SelectRenderer = selectRenderer || DefaultSelectRenderer; + return ( + + ); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/hooks/useSticky.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/hooks/useSticky.tsx new file mode 100644 index 000000000000..240073210ea3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/hooks/useSticky.tsx @@ -0,0 +1,435 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { + useRef, + useMemo, + useLayoutEffect, + useCallback, + ReactNode, + ReactElement, + ComponentPropsWithRef, + CSSProperties, + UIEventHandler, +} from 'react'; +import { TableInstance, Hooks } from 'react-table'; +import getScrollBarSize from '../utils/getScrollBarSize'; +import needScrollBar from '../utils/needScrollBar'; +import useMountedMemo from '../utils/useMountedMemo'; + +type ReactElementWithChildren< + T extends keyof JSX.IntrinsicElements, + C extends ReactNode = ReactNode, +> = ReactElement & { children: C }, T>; + +type Th = ReactElementWithChildren<'th'>; +type Td = ReactElementWithChildren<'td'>; +type TrWithTh = ReactElementWithChildren<'tr', Th[]>; +type TrWithTd = ReactElementWithChildren<'tr', Td[]>; +type Thead = ReactElementWithChildren<'thead', TrWithTh>; +type Tbody = ReactElementWithChildren<'tbody', TrWithTd>; +type Tfoot = ReactElementWithChildren<'tfoot', TrWithTd>; +type Col = ReactElementWithChildren<'col', null>; +type ColGroup = ReactElementWithChildren<'colgroup', Col>; + +export type Table = ReactElementWithChildren< + 'table', + (Thead | Tbody | Tfoot | ColGroup)[] +>; +export type TableRenderer = () => Table; +export type GetTableSize = () => Partial | undefined; +export type SetStickyState = (size?: Partial) => void; + +export enum ReducerActions { + init = 'init', // this is from global reducer + setStickyState = 'setStickyState', +} + +export type ReducerAction< + T extends string, + P extends Record, +> = P & { type: T }; + +export type ColumnWidths = number[]; + +export interface StickyState { + width?: number; // maximum full table width + height?: number; // maximum full table height + realHeight?: number; // actual table viewport height (header + scrollable area) + bodyHeight?: number; // scrollable area height + tableHeight?: number; // the full table height + columnWidths?: ColumnWidths; + hasHorizontalScroll?: boolean; + hasVerticalScroll?: boolean; + rendering?: boolean; + setStickyState?: SetStickyState; +} + +export interface UseStickyTableOptions { + getTableSize?: GetTableSize; +} + +export interface UseStickyInstanceProps { + // manipulate DOMs in to make the header sticky + wrapStickyTable: (renderer: TableRenderer) => ReactNode; + // update or recompute the sticky table size + setStickyState: SetStickyState; +} + +export type UseStickyState = { + sticky: StickyState; +}; + +const sum = (a: number, b: number) => a + b; +const mergeStyleProp = ( + node: ReactElement<{ style?: CSSProperties }>, + style: CSSProperties, +) => ({ + style: { + ...node.props.style, + ...style, + }, +}); +const fixedTableLayout: CSSProperties = { tableLayout: 'fixed' }; + +/** + * An HOC for generating sticky header and fixed-height scrollable area + */ +function StickyWrap({ + sticky = {}, + width: maxWidth, + height: maxHeight, + children: table, + setStickyState, +}: { + width: number; + height: number; + setStickyState: SetStickyState; + children: Table; + sticky?: StickyState; // current sticky element sizes +}) { + if (!table || table.type !== 'table') { + throw new Error(' must have only one
element as child'); + } + let thead: Thead | undefined; + let tbody: Tbody | undefined; + let tfoot: Tfoot | undefined; + + React.Children.forEach(table.props.children, node => { + if (!node) { + return; + } + if (node.type === 'thead') { + thead = node; + } else if (node.type === 'tbody') { + tbody = node; + } else if (node.type === 'tfoot') { + tfoot = node; + } + }); + if (!thead || !tbody) { + throw new Error( + '
in must contain both thead and tbody.', + ); + } + const columnCount = useMemo(() => { + const headerRows = React.Children.toArray( + thead?.props.children, + ).pop() as TrWithTh; + return headerRows.props.children.length; + }, [thead]); + + const theadRef = useRef(null); // original thead for layout computation + const tfootRef = useRef(null); // original tfoot for layout computation + const scrollHeaderRef = useRef(null); // fixed header + const scrollFooterRef = useRef(null); // fixed footer + const scrollBodyRef = useRef(null); // main body + + const scrollBarSize = getScrollBarSize(); + const { bodyHeight, columnWidths } = sticky; + const needSizer = + !columnWidths || + sticky.width !== maxWidth || + sticky.height !== maxHeight || + sticky.setStickyState !== setStickyState; + + // update scrollable area and header column sizes when mounted + useLayoutEffect(() => { + if (!theadRef.current) { + return; + } + const bodyThead = theadRef.current; + const theadHeight = bodyThead.clientHeight; + const tfootHeight = tfootRef.current ? tfootRef.current.clientHeight : 0; + if (!theadHeight) { + return; + } + const fullTableHeight = (bodyThead.parentNode as HTMLTableElement) + .clientHeight; + const ths = bodyThead.childNodes[0] + .childNodes as NodeListOf; + const widths = Array.from(ths).map(th => th.clientWidth); + const [hasVerticalScroll, hasHorizontalScroll] = needScrollBar({ + width: maxWidth, + height: maxHeight - theadHeight - tfootHeight, + innerHeight: fullTableHeight, + innerWidth: widths.reduce(sum), + scrollBarSize, + }); + // real container height, include table header, footer and space for + // horizontal scroll bar + const realHeight = Math.min( + maxHeight, + hasHorizontalScroll ? fullTableHeight + scrollBarSize : fullTableHeight, + ); + setStickyState({ + hasVerticalScroll, + hasHorizontalScroll, + setStickyState, + width: maxWidth, + height: maxHeight, + realHeight, + tableHeight: fullTableHeight, + bodyHeight: realHeight - theadHeight - tfootHeight, + columnWidths: widths, + }); + }, [maxWidth, maxHeight, setStickyState, scrollBarSize]); + + let sizerTable: ReactElement | undefined; + let headerTable: ReactElement | undefined; + let footerTable: ReactElement | undefined; + let bodyTable: ReactElement | undefined; + if (needSizer) { + const theadWithRef = React.cloneElement(thead, { ref: theadRef }); + const tfootWithRef = tfoot && React.cloneElement(tfoot, { ref: tfootRef }); + sizerTable = ( +
+ {React.cloneElement(table, {}, theadWithRef, tbody, tfootWithRef)} +
+ ); + } + + // reuse previously column widths, will be updated by `useLayoutEffect` above + const colWidths = columnWidths?.slice(0, columnCount); + + if (colWidths && bodyHeight) { + const bodyColgroup = ( +
+ {colWidths.map((w, i) => ( + // eslint-disable-next-line react/no-array-index-key + + ))} + + ); + + // header columns do not have vertical scroll bars, + // so we add scroll bar size to the last column + const headerColgroup = + sticky.hasVerticalScroll && scrollBarSize ? ( + + {colWidths.map((x, i) => ( + // eslint-disable-next-line react/no-array-index-key + + ))} + + ) : ( + bodyColgroup + ); + + headerTable = ( +
+ {React.cloneElement( + table, + mergeStyleProp(table, fixedTableLayout), + headerColgroup, + thead, + )} + {headerTable} +
+ ); + + footerTable = tfoot && ( +
+ {React.cloneElement( + table, + mergeStyleProp(table, fixedTableLayout), + headerColgroup, + tfoot, + )} + {footerTable} +
+ ); + + const onScroll: UIEventHandler = e => { + if (scrollHeaderRef.current) { + scrollHeaderRef.current.scrollLeft = e.currentTarget.scrollLeft; + } + if (scrollFooterRef.current) { + scrollFooterRef.current.scrollLeft = e.currentTarget.scrollLeft; + } + }; + bodyTable = ( +
+ {React.cloneElement( + table, + mergeStyleProp(table, fixedTableLayout), + bodyColgroup, + tbody, + )} +
+ ); + } + + return ( +
+ {headerTable} + {bodyTable} + {footerTable} + {sizerTable} +
+ ); +} + +function useInstance(instance: TableInstance) { + const { + dispatch, + state: { sticky }, + data, + page, + rows, + getTableSize = () => undefined, + } = instance; + + const setStickyState = useCallback( + (size?: Partial) => { + dispatch({ + type: ReducerActions.setStickyState, + size, + }); + }, + // turning pages would also trigger a resize + // eslint-disable-next-line react-hooks/exhaustive-deps + [dispatch, getTableSize, page, rows], + ); + + const useStickyWrap = (renderer: TableRenderer) => { + const { width, height } = + useMountedMemo(getTableSize, [getTableSize]) || sticky; + // only change of data should trigger re-render + // eslint-disable-next-line react-hooks/exhaustive-deps + const table = useMemo(renderer, [page, rows]); + + useLayoutEffect(() => { + if (!width || !height) { + setStickyState(); + } + }, [width, height]); + + if (!width || !height) { + return null; + } + if (data.length === 0) { + return table; + } + return ( + + {table} + + ); + }; + + Object.assign(instance, { + setStickyState, + wrapStickyTable: useStickyWrap, + }); +} + +export default function useSticky(hooks: Hooks) { + hooks.useInstance.push(useInstance); + hooks.stateReducers.push((newState, action_, prevState) => { + const action = action_ as ReducerAction< + ReducerActions, + { size: StickyState } + >; + if (action.type === ReducerActions.init) { + return { + ...newState, + sticky: { + ...prevState?.sticky, + }, + }; + } + if (action.type === ReducerActions.setStickyState) { + const { size } = action; + if (!size) { + return { ...newState }; + } + return { + ...newState, + sticky: { + ...prevState?.sticky, + ...newState?.sticky, + ...action.size, + }, + }; + } + return newState; + }); +} +useSticky.pluginName = 'useSticky'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/index.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/index.tsx new file mode 100644 index 000000000000..55bdc9d38c61 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/index.tsx @@ -0,0 +1,25 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export * from './hooks/useSticky'; +export * from './components/GlobalFilter'; +export * from './components/Pagination'; +export * from './components/SelectPageSize'; +export * from './DataTable'; + +export { default } from './DataTable'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/types/react-table.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/types/react-table.d.ts new file mode 100644 index 000000000000..52a18d54e1b0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/types/react-table.d.ts @@ -0,0 +1,105 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Merge typing interfaces for UseTable hooks. + * + * Ref: https://gist.github.com/ggascoigne/646e14c9d54258e40588a13aabf0102d + */ +import { + UseGlobalFiltersState, + UseGlobalFiltersOptions, + UseGlobalFiltersInstanceProps, + UsePaginationInstanceProps, + UsePaginationOptions, + UsePaginationState, + UseSortByColumnOptions, + UseSortByColumnProps, + UseSortByInstanceProps, + UseSortByOptions, + UseSortByState, + UseTableHooks, + UseSortByHooks, + Renderer, + HeaderProps, + TableFooterProps, +} from 'react-table'; + +import { + UseStickyState, + UseStickyTableOptions, + UseStickyInstanceProps, +} from '../hooks/useSticky'; + +declare module 'react-table' { + export interface TableOptions + extends UseExpandedOptions, + UseGlobalFiltersOptions, + UsePaginationOptions, + UseRowSelectOptions, + UseSortByOptions, + UseStickyTableOptions {} + + export interface TableInstance + extends UseColumnOrderInstanceProps, + UseExpandedInstanceProps, + UseGlobalFiltersInstanceProps, + UsePaginationInstanceProps, + UseRowSelectInstanceProps, + UseRowStateInstanceProps, + UseSortByInstanceProps, + UseStickyInstanceProps {} + + export interface TableState + extends UseColumnOrderState, + UseExpandedState, + UseGlobalFiltersState, + UsePaginationState, + UseRowSelectState, + UseSortByState, + UseStickyState {} + + // Typing from @types/react-table is incomplete + interface TableSortByToggleProps { + style?: React.CSSProperties; + title?: string; + onClick?: React.MouseEventHandler; + } + + export interface ColumnInterface + extends UseGlobalFiltersColumnOptions, + UseSortByColumnOptions { + // must define as a new property because it's not possible to override + // the existing `Header` renderer option + Header?: Renderer>; + Footer?: Renderer>; + } + + export interface ColumnInstance + extends UseGlobalFiltersColumnOptions, + UseSortByColumnProps { + getSortByToggleProps: ( + props?: Partial, + ) => TableSortByToggleProps; + } + + export interface Hooks + extends UseTableHooks, + UseSortByHooks {} +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/utils/externalAPIs.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/utils/externalAPIs.ts new file mode 100644 index 000000000000..b703d66d9715 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/utils/externalAPIs.ts @@ -0,0 +1,32 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { SetDataMaskHook } from '@superset-ui/core'; + +export const updateExternalFormData = ( + setDataMask: SetDataMaskHook = () => {}, + pageNumber: number, + pageSize: number, +) => + setDataMask({ + ownState: { + currentPage: pageNumber, + pageSize, + }, + }); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/utils/getScrollBarSize.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/utils/getScrollBarSize.ts new file mode 100644 index 000000000000..5d86598bf21d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/utils/getScrollBarSize.ts @@ -0,0 +1,48 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +let cached: number | undefined; + +const css = (x: TemplateStringsArray) => x.join('\n'); + +export default function getScrollBarSize(forceRefresh = false) { + if (typeof document === 'undefined') { + return 0; + } + if (cached === undefined || forceRefresh) { + const inner = document.createElement('div'); + const outer = document.createElement('div'); + inner.style.cssText = css` + width: auto; + height: 100%; + overflow: scroll; + `; + outer.style.cssText = css` + position: absolute; + visibility: hidden; + overflow: hidden; + width: 100px; + height: 50px; + `; + outer.append(inner); + document.body.append(outer); + cached = outer.clientWidth - inner.clientWidth; + outer.remove(); + } + return cached; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/utils/needScrollBar.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/utils/needScrollBar.ts new file mode 100644 index 000000000000..2ac111925be4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/utils/needScrollBar.ts @@ -0,0 +1,39 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/** + * Whether a container need scroll bars when in another container. + */ +export default function needScrollBar({ + width, + height, + innerHeight, + innerWidth, + scrollBarSize, +}: { + width: number; + height: number; + innerHeight: number; + scrollBarSize: number; + innerWidth: number; +}): [boolean, boolean] { + const hasVerticalScroll = innerHeight > height; + const hasHorizontalScroll = + innerWidth > width - (hasVerticalScroll ? scrollBarSize : 0); + return [hasVerticalScroll, hasHorizontalScroll]; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/utils/useAsyncState.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/utils/useAsyncState.ts new file mode 100644 index 000000000000..0d941462e5e5 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/utils/useAsyncState.ts @@ -0,0 +1,51 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { useRef, useState } from 'react'; +import { useAsyncDebounce } from 'react-table'; + +// useAsyncDebounce in dist build of `react-table` requires regeneratorRuntime +import 'regenerator-runtime/runtime'; + +/** + * Hook useState to allow always return latest initialValue + */ +export default function useAsyncState unknown>( + initialValue: T, + callback: F, + wait = 200, +) { + const [value, setValue] = useState(initialValue); + const valueRef = useRef(initialValue); + const onChange = useAsyncDebounce(callback, wait); + + // sync updated initialValue + if (valueRef.current !== initialValue) { + valueRef.current = initialValue; + if (value !== initialValue) { + setValue(initialValue); + } + } + + const setBoth = (newValue: T) => { + setValue(newValue); + onChange(newValue); + }; + + return [value, setBoth] as [typeof value, typeof setValue]; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/utils/useMountedMemo.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/utils/useMountedMemo.ts new file mode 100644 index 000000000000..70f535479cb6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/DataTable/utils/useMountedMemo.ts @@ -0,0 +1,40 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { useLayoutEffect, useRef, useMemo } from 'react'; + +/** + * Execute a memoized callback only when mounted. Execute again when factory updated. + * Returns undefined if not mounted yet. + */ +export default function useMountedMemo( + factory: () => T, + deps?: unknown[], +): T | undefined { + const mounted = useRef(); + useLayoutEffect(() => { + mounted.current = factory; + }); + return useMemo(() => { + if (mounted.current) { + return factory(); + } + return undefined; + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [mounted.current, mounted.current === factory, ...(deps || [])]); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/Styles.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/Styles.tsx new file mode 100644 index 000000000000..d6993520faaa --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/Styles.tsx @@ -0,0 +1,100 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { styled } from '@superset-ui/core'; + +export default styled.div` + table { + width: 100%; + min-width: auto; + max-width: none; + margin: 0; + } + + th, + td { + min-width: 4.3em; + } + + thead > tr > th { + padding-right: 1.4em; + position: relative; + background: ${({ theme: { colors } }) => colors.grayscale.light5}; + text-align: left; + } + th svg { + color: ${({ theme: { colors } }) => colors.grayscale.light2}; + position: relative; + vertical-align: middle; + margin: 0 ${({ theme: { gridUnit } }) => gridUnit}px; + } + th.is-sorted svg { + color: ${({ theme: { colors } }) => colors.grayscale.base}; + } + .table > tbody > tr:first-of-type > td, + .table > tbody > tr:first-of-type > th { + border-top: 0; + } + + .dt-controls { + padding-bottom: 0.65em; + } + .dt-metric { + text-align: right; + } + .dt-totals { + font-weight: bold; + } + .dt-is-null { + color: ${({ theme: { colors } }) => colors.grayscale.light1}; + } + td.dt-is-filter { + cursor: pointer; + } + td.dt-is-filter:hover { + background-color: ${({ theme: { colors } }) => colors.secondary.light4}; + } + td.dt-is-active-filter, + td.dt-is-active-filter:hover { + background-color: ${({ theme: { colors } }) => colors.secondary.light3}; + } + + .dt-global-filter { + float: right; + } + + .dt-pagination { + text-align: right; + /* use padding instead of margin so clientHeight can capture it */ + padding-top: 0.5em; + } + .dt-pagination .pagination { + margin: 0; + } + + .pagination > li > span.dt-pagination-ellipsis:focus, + .pagination > li > span.dt-pagination-ellipsis:hover { + background: ${({ theme: { colors } }) => colors.grayscale.light5}; + } + + .dt-no-results { + text-align: center; + padding: 1em 0.6em; + } +`; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/TableChart.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/TableChart.tsx new file mode 100644 index 000000000000..29cc8199ed44 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/TableChart.tsx @@ -0,0 +1,503 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { CSSProperties, useCallback, useMemo } from 'react'; +import { + ColumnInstance, + ColumnWithLooseAccessor, + DefaultSortTypes, +} from 'react-table'; +import { extent as d3Extent, max as d3Max } from 'd3-array'; +import { FaSort } from '@react-icons/all-files/fa/FaSort'; +import { FaSortDown as FaSortDesc } from '@react-icons/all-files/fa/FaSortDown'; +import { FaSortUp as FaSortAsc } from '@react-icons/all-files/fa/FaSortUp'; +import { + DataRecord, + DataRecordValue, + DTTM_ALIAS, + ensureIsArray, + GenericDataType, + getTimeFormatterForGranularity, + t, + tn, +} from '@superset-ui/core'; + +import { DataColumnMeta, TableChartTransformedProps } from './types'; +import DataTable, { + DataTableProps, + SearchInputProps, + SelectPageSizeRendererProps, + SizeOption, +} from './DataTable'; + +import Styles from './Styles'; +import { formatColumnValue } from './utils/formatValue'; +import { PAGE_SIZE_OPTIONS } from './consts'; +import { updateExternalFormData } from './DataTable/utils/externalAPIs'; + +type ValueRange = [number, number]; + +/** + * Return sortType based on data type + */ +function getSortTypeByDataType(dataType: GenericDataType): DefaultSortTypes { + if (dataType === GenericDataType.TEMPORAL) { + return 'datetime'; + } + if (dataType === GenericDataType.STRING) { + return 'alphanumeric'; + } + return 'basic'; +} + +/** + * Cell background to render columns as horizontal bar chart + */ +function cellBar({ + value, + valueRange, + colorPositiveNegative = false, + alignPositiveNegative, +}: { + value: number; + valueRange: ValueRange; + colorPositiveNegative: boolean; + alignPositiveNegative: boolean; +}) { + const [minValue, maxValue] = valueRange; + const r = colorPositiveNegative && value < 0 ? 150 : 0; + if (alignPositiveNegative) { + const perc = Math.abs(Math.round((value / maxValue) * 100)); + // The 0.01 to 0.001 is a workaround for what appears to be a + // CSS rendering bug on flat, transparent colors + return ( + `linear-gradient(to right, rgba(${r},0,0,0.2), rgba(${r},0,0,0.2) ${perc}%, ` + + `rgba(0,0,0,0.01) ${perc}%, rgba(0,0,0,0.001) 100%)` + ); + } + const posExtent = Math.abs(Math.max(maxValue, 0)); + const negExtent = Math.abs(Math.min(minValue, 0)); + const tot = posExtent + negExtent; + const perc1 = Math.round( + (Math.min(negExtent + value, negExtent) / tot) * 100, + ); + const perc2 = Math.round((Math.abs(value) / tot) * 100); + // The 0.01 to 0.001 is a workaround for what appears to be a + // CSS rendering bug on flat, transparent colors + return ( + `linear-gradient(to right, rgba(0,0,0,0.01), rgba(0,0,0,0.001) ${perc1}%, ` + + `rgba(${r},0,0,0.2) ${perc1}%, rgba(${r},0,0,0.2) ${perc1 + perc2}%, ` + + `rgba(0,0,0,0.01) ${perc1 + perc2}%, rgba(0,0,0,0.001) 100%)` + ); +} + +function SortIcon({ column }: { column: ColumnInstance }) { + const { isSorted, isSortedDesc } = column; + let sortIcon = ; + if (isSorted) { + sortIcon = isSortedDesc ? : ; + } + return sortIcon; +} + +function SearchInput({ count, value, onChange }: SearchInputProps) { + return ( + + {t('Search')}{' '} + + + ); +} + +function SelectPageSize({ + options, + current, + onChange, +}: SelectPageSizeRendererProps) { + return ( + + {t('page_size.show')}{' '} + {' '} + {t('page_size.entries')} + + ); +} + +export default function TableChart( + props: TableChartTransformedProps & { + sticky?: DataTableProps['sticky']; + }, +) { + const { + timeGrain, + height, + width, + data, + totals, + isRawRecords, + rowCount = 0, + columns: columnsMeta, + alignPositiveNegative: defaultAlignPN = false, + colorPositiveNegative: defaultColorPN = false, + includeSearch = false, + pageSize = 0, + serverPagination = false, + serverPaginationData, + setDataMask, + showCellBars = true, + emitFilter = false, + sortDesc = false, + filters, + sticky = true, // whether to use sticky header + columnColorFormatters, + } = props; + const timestampFormatter = useCallback( + value => getTimeFormatterForGranularity(timeGrain)(value), + [timeGrain], + ); + + const handleChange = useCallback( + (filters: { [x: string]: DataRecordValue[] }) => { + if (!emitFilter) { + return; + } + + const groupBy = Object.keys(filters); + const groupByValues = Object.values(filters); + const labelElements: string[] = []; + groupBy.forEach(col => { + const isTimestamp = col === DTTM_ALIAS; + const filterValues = ensureIsArray(filters?.[col]); + if (filterValues.length) { + const valueLabels = filterValues.map(value => + isTimestamp ? timestampFormatter(value) : value, + ); + labelElements.push(`${valueLabels.join(', ')}`); + } + }); + setDataMask({ + extraFormData: { + filters: + groupBy.length === 0 + ? [] + : groupBy.map(col => { + const val = ensureIsArray(filters?.[col]); + if (!val.length) + return { + col, + op: 'IS NULL', + }; + return { + col, + op: 'IN', + val: val.map(el => + el instanceof Date ? el.getTime() : el!, + ), + grain: col === DTTM_ALIAS ? timeGrain : undefined, + }; + }), + }, + filterState: { + label: labelElements.join(', '), + value: groupByValues.length ? groupByValues : null, + filters: filters && Object.keys(filters).length ? filters : null, + }, + }); + }, + [emitFilter, setDataMask], + ); + + // only take relevant page size options + const pageSizeOptions = useMemo(() => { + const getServerPagination = (n: number) => n <= rowCount; + return PAGE_SIZE_OPTIONS.filter(([n]) => + serverPagination ? getServerPagination(n) : n <= 2 * data.length, + ) as SizeOption[]; + }, [data.length, rowCount, serverPagination]); + + const getValueRange = useCallback( + function getValueRange(key: string, alignPositiveNegative: boolean) { + if (typeof data?.[0]?.[key] === 'number') { + const nums = data.map(row => row[key]) as number[]; + return ( + alignPositiveNegative + ? [0, d3Max(nums.map(Math.abs))] + : d3Extent(nums) + ) as ValueRange; + } + return null; + }, + [data], + ); + + const isActiveFilterValue = useCallback( + function isActiveFilterValue(key: string, val: DataRecordValue) { + return !!filters && filters[key]?.includes(val); + }, + [filters], + ); + + function getEmitTarget(col: string) { + const meta = columnsMeta?.find(x => x.key === col); + return meta?.config?.emitTarget || col; + } + + const toggleFilter = useCallback( + function toggleFilter(key: string, val: DataRecordValue) { + let updatedFilters = { ...(filters || {}) }; + const target = getEmitTarget(key); + if (filters && isActiveFilterValue(target, val)) { + updatedFilters = {}; + } else { + updatedFilters = { + [target]: [val], + }; + } + if ( + Array.isArray(updatedFilters[target]) && + updatedFilters[target].length === 0 + ) { + delete updatedFilters[target]; + } + handleChange(updatedFilters); + }, + [filters, handleChange, isActiveFilterValue], + ); + + const getSharedStyle = (column: DataColumnMeta): CSSProperties => { + const { isNumeric, config = {} } = column; + const textAlign = config.horizontalAlign + ? config.horizontalAlign + : isNumeric + ? 'right' + : 'left'; + return { + textAlign, + }; + }; + + const getColumnConfigs = useCallback( + (column: DataColumnMeta, i: number): ColumnWithLooseAccessor => { + const { key, label, isNumeric, dataType, isMetric, config = {} } = column; + const isFilter = !isNumeric && emitFilter; + const columnWidth = Number.isNaN(Number(config.columnWidth)) + ? config.columnWidth + : Number(config.columnWidth); + + // inline style for both th and td cell + const sharedStyle: CSSProperties = getSharedStyle(column); + + const alignPositiveNegative = + config.alignPositiveNegative === undefined + ? defaultAlignPN + : config.alignPositiveNegative; + const colorPositiveNegative = + config.colorPositiveNegative === undefined + ? defaultColorPN + : config.colorPositiveNegative; + + const hasColumnColorFormatters = + isNumeric && + Array.isArray(columnColorFormatters) && + columnColorFormatters.length > 0; + + const valueRange = + !hasColumnColorFormatters && + (config.showCellBars === undefined + ? showCellBars + : config.showCellBars) && + (isMetric || isRawRecords) && + getValueRange(key, alignPositiveNegative); + + let className = ''; + if (isFilter) { + className += ' dt-is-filter'; + } + + return { + id: String(i), // to allow duplicate column keys + // must use custom accessor to allow `.` in column names + // typing is incorrect in current version of `@types/react-table` + // so we ask TS not to check. + accessor: ((datum: D) => datum[key]) as never, + Cell: ({ value }: { value: DataRecordValue }) => { + const [isHtml, text] = formatColumnValue(column, value); + const html = isHtml ? { __html: text } : undefined; + + let backgroundColor; + if (hasColumnColorFormatters) { + columnColorFormatters! + .filter(formatter => formatter.column === column.key) + .forEach(formatter => { + const formatterResult = formatter.getColorFromValue( + value as number, + ); + if (formatterResult) { + backgroundColor = formatterResult; + } + }); + } + + const cellProps = { + // show raw number in title in case of numeric values + title: typeof value === 'number' ? String(value) : undefined, + onClick: + emitFilter && !valueRange + ? () => toggleFilter(key, value) + : undefined, + className: [ + className, + value == null ? 'dt-is-null' : '', + isActiveFilterValue(key, value) ? ' dt-is-active-filter' : '', + ].join(' '), + style: { + ...sharedStyle, + background: + backgroundColor || + (valueRange + ? cellBar({ + value: value as number, + valueRange, + alignPositiveNegative, + colorPositiveNegative, + }) + : undefined), + }, + }; + if (html) { + // eslint-disable-next-line react/no-danger + return
; + }, + Header: ({ column: col, onClick, style }) => ( + + ), + Footer: totals ? ( + i === 0 ? ( + + ) : ( + + ) + ) : undefined, + sortDescFirst: sortDesc, + sortType: getSortTypeByDataType(dataType), + }; + }, + [ + defaultAlignPN, + defaultColorPN, + emitFilter, + getValueRange, + isActiveFilterValue, + isRawRecords, + showCellBars, + sortDesc, + toggleFilter, + totals, + columnColorFormatters, + ], + ); + + const columns = useMemo( + () => columnsMeta.map(getColumnConfigs), + [columnsMeta, getColumnConfigs], + ); + + const handleServerPaginationChange = ( + pageNumber: number, + pageSize: number, + ) => { + updateExternalFormData(setDataMask, pageNumber, pageSize); + }; + + return ( + + + columns={columns} + data={data} + rowCount={rowCount} + tableClassName="table table-striped table-condensed" + pageSize={pageSize} + serverPaginationData={serverPaginationData} + pageSizeOptions={pageSizeOptions} + width={width} + height={height} + serverPagination={serverPagination} + onServerPaginationChange={handleServerPaginationChange} + // 9 page items in > 340px works well even for 100+ pages + maxPageItemCount={width > 340 ? 9 : 7} + noResults={(filter: string) => + t(filter ? 'No matching records found' : 'No records found') + } + searchInput={includeSearch && SearchInput} + selectPageSize={pageSize !== null && SelectPageSize} + // not in use in Superset, but needed for unit tests + sticky={sticky} + /> + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/buildQuery.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/buildQuery.ts new file mode 100644 index 000000000000..8178f6903091 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/buildQuery.ts @@ -0,0 +1,198 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + buildQueryContext, + ensureIsArray, + getMetricLabel, + QueryMode, + QueryObject, + removeDuplicates, +} from '@superset-ui/core'; +import { PostProcessingRule } from '@superset-ui/core/src/query/types/PostProcessing'; +import { BuildQuery } from '@superset-ui/core/src/chart/registries/ChartBuildQueryRegistrySingleton'; +import { TableChartFormData } from './types'; +import { updateExternalFormData } from './DataTable/utils/externalAPIs'; + +/** + * Infer query mode from form data. If `all_columns` is set, then raw records mode, + * otherwise defaults to aggregation mode. + * + * The same logic is used in `controlPanel` with control values as well. + */ +export function getQueryMode(formData: TableChartFormData) { + const { query_mode: mode } = formData; + if (mode === QueryMode.aggregate || mode === QueryMode.raw) { + return mode; + } + const rawColumns = formData?.all_columns; + const hasRawColumns = rawColumns && rawColumns.length > 0; + return hasRawColumns ? QueryMode.raw : QueryMode.aggregate; +} + +const buildQuery: BuildQuery = ( + formData: TableChartFormData, + options, +) => { + const { percent_metrics: percentMetrics, order_desc: orderDesc = false } = + formData; + const queryMode = getQueryMode(formData); + const sortByMetric = ensureIsArray(formData.timeseries_limit_metric)[0]; + let formDataCopy = formData; + // never include time in raw records mode + if (queryMode === QueryMode.raw) { + formDataCopy = { + ...formData, + include_time: false, + }; + } + + return buildQueryContext(formDataCopy, baseQueryObject => { + let { metrics, orderby = [] } = baseQueryObject; + let postProcessing: PostProcessingRule[] = []; + + if (queryMode === QueryMode.aggregate) { + metrics = metrics || []; + // orverride orderby with timeseries metric when in aggregation mode + if (sortByMetric) { + orderby = [[sortByMetric, !orderDesc]]; + } else if (metrics?.length > 0) { + // default to ordering by first metric in descending order + // when no "sort by" metric is set (regargless if "SORT DESC" is set to true) + orderby = [[metrics[0], false]]; + } + // add postprocessing for percent metrics only when in aggregation mode + if (percentMetrics && percentMetrics.length > 0) { + const percentMetricLabels = removeDuplicates( + percentMetrics.map(getMetricLabel), + ); + metrics = removeDuplicates( + metrics.concat(percentMetrics), + getMetricLabel, + ); + postProcessing = [ + { + operation: 'contribution', + options: { + columns: percentMetricLabels, + rename_columns: percentMetricLabels.map(x => `%${x}`), + }, + }, + ]; + } + } + + const moreProps: Partial = {}; + const ownState = options?.ownState ?? {}; + if (formDataCopy.server_pagination) { + moreProps.row_limit = + ownState.pageSize ?? formDataCopy.server_page_length; + moreProps.row_offset = + (ownState.currentPage ?? 0) * (ownState.pageSize ?? 0); + } + + let queryObject = { + ...baseQueryObject, + orderby, + metrics, + post_processing: postProcessing, + ...moreProps, + }; + + if ( + formData.server_pagination && + options?.extras?.cachedChanges?.[formData.slice_id] && + JSON.stringify(options?.extras?.cachedChanges?.[formData.slice_id]) !== + JSON.stringify(queryObject.filters) + ) { + queryObject = { ...queryObject, row_offset: 0 }; + updateExternalFormData( + options?.hooks?.setDataMask, + 0, + queryObject.row_limit ?? 0, + ); + } + // Because we use same buildQuery for all table on the page we need split them by id + options?.hooks?.setCachedChanges({ + [formData.slice_id]: queryObject.filters, + }); + + const extraQueries: QueryObject[] = []; + if ( + metrics?.length && + formData.show_totals && + queryMode === QueryMode.aggregate + ) { + extraQueries.push({ + ...queryObject, + columns: [], + row_limit: 0, + row_offset: 0, + post_processing: [], + }); + } + + const interactiveGroupBy = formData.extra_form_data?.interactive_groupby; + if (interactiveGroupBy && queryObject.columns) { + queryObject.columns = [ + ...new Set([...queryObject.columns, ...interactiveGroupBy]), + ]; + } + + if (formData.server_pagination) { + return [ + { ...queryObject }, + { + ...queryObject, + row_limit: 0, + row_offset: 0, + post_processing: [], + is_rowcount: true, + }, + ...extraQueries, + ]; + } + + return [queryObject, ...extraQueries]; + }); +}; + +// Use this closure to cache changing of external filters, if we have server pagination we need reset page to 0, after +// external filter changed +export const cachedBuildQuery = (): BuildQuery => { + let cachedChanges: any = {}; + const setCachedChanges = (newChanges: any) => { + cachedChanges = { ...cachedChanges, ...newChanges }; + }; + + return (formData, options) => + buildQuery( + { ...formData }, + { + extras: { cachedChanges }, + ownState: options?.ownState ?? {}, + hooks: { + ...options?.hooks, + setDataMask: () => {}, + setCachedChanges, + }, + }, + ); +}; + +export default cachedBuildQuery(); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/consts.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/consts.ts new file mode 100644 index 000000000000..e370c4b02952 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/consts.ts @@ -0,0 +1,32 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { formatSelectOptions } from '@superset-ui/chart-controls'; +import { addLocaleData, t } from '@superset-ui/core'; +import i18n from './i18n'; + +addLocaleData(i18n); + +export const PAGE_SIZE_OPTIONS = formatSelectOptions([ + [0, t('page_size.all')], + 10, + 20, + 50, + 100, + 200, +]); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/controlPanel.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/controlPanel.tsx new file mode 100644 index 000000000000..650936896184 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/controlPanel.tsx @@ -0,0 +1,506 @@ +/* eslint-disable camelcase */ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { + addLocaleData, + ChartDataResponseResult, + ensureIsArray, + FeatureFlag, + GenericDataType, + isFeatureEnabled, + QueryFormColumn, + QueryMode, + smartDateFormatter, + t, +} from '@superset-ui/core'; +import { + ColumnOption, + ControlConfig, + ControlPanelConfig, + ControlPanelsContainerProps, + ControlStateMapping, + D3_TIME_FORMAT_OPTIONS, + QueryModeLabel, + sections, + sharedControls, + ControlPanelState, + ExtraControlProps, + ControlState, + emitFilterControl, +} from '@superset-ui/chart-controls'; + +import i18n from './i18n'; +import { PAGE_SIZE_OPTIONS } from './consts'; + +addLocaleData(i18n); + +function getQueryMode(controls: ControlStateMapping): QueryMode { + const mode = controls?.query_mode?.value; + if (mode === QueryMode.aggregate || mode === QueryMode.raw) { + return mode as QueryMode; + } + const rawColumns = controls?.all_columns?.value as + | QueryFormColumn[] + | undefined; + const hasRawColumns = rawColumns && rawColumns.length > 0; + return hasRawColumns ? QueryMode.raw : QueryMode.aggregate; +} + +/** + * Visibility check + */ +function isQueryMode(mode: QueryMode) { + return ({ controls }: Pick) => + getQueryMode(controls) === mode; +} + +const isAggMode = isQueryMode(QueryMode.aggregate); +const isRawMode = isQueryMode(QueryMode.raw); + +const validateAggControlValues = ( + controls: ControlStateMapping, + values: any[], +) => { + const areControlsEmpty = values.every(val => ensureIsArray(val).length === 0); + return areControlsEmpty && isAggMode({ controls }) + ? [t('Group By, Metrics or Percentage Metrics must have a value')] + : []; +}; + +const queryMode: ControlConfig<'RadioButtonControl'> = { + type: 'RadioButtonControl', + label: t('Query mode'), + default: null, + options: [ + [QueryMode.aggregate, QueryModeLabel[QueryMode.aggregate]], + [QueryMode.raw, QueryModeLabel[QueryMode.raw]], + ], + mapStateToProps: ({ controls }) => ({ value: getQueryMode(controls) }), + rerender: ['all_columns', 'groupby', 'metrics', 'percent_metrics'], +}; + +const all_columns: typeof sharedControls.groupby = { + type: 'SelectControl', + label: t('Columns'), + description: t('Columns to display'), + multi: true, + freeForm: true, + allowAll: true, + commaChoosesOption: false, + default: [], + optionRenderer: c => , + valueRenderer: c => , + valueKey: 'column_name', + mapStateToProps: ({ datasource, controls }, controlState) => ({ + options: datasource?.columns || [], + queryMode: getQueryMode(controls), + externalValidationErrors: + isRawMode({ controls }) && ensureIsArray(controlState.value).length === 0 + ? [t('must have a value')] + : [], + }), + visibility: isRawMode, +}; + +const dnd_all_columns: typeof sharedControls.groupby = { + type: 'DndColumnSelect', + label: t('Columns'), + description: t('Columns to display'), + default: [], + mapStateToProps({ datasource, controls }, controlState) { + const newState: ExtraControlProps = {}; + if (datasource) { + const options = datasource.columns; + newState.options = Object.fromEntries( + options.map(option => [option.column_name, option]), + ); + } + newState.queryMode = getQueryMode(controls); + newState.externalValidationErrors = + isRawMode({ controls }) && ensureIsArray(controlState.value).length === 0 + ? [t('must have a value')] + : []; + return newState; + }, + visibility: isRawMode, +}; + +const percent_metrics: typeof sharedControls.metrics = { + type: 'MetricsControl', + label: t('Percentage metrics'), + description: t( + 'Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.', + ), + multi: true, + visibility: isAggMode, + mapStateToProps: ({ datasource, controls }, controlState) => ({ + columns: datasource?.columns || [], + savedMetrics: datasource?.metrics || [], + datasource, + datasourceType: datasource?.type, + queryMode: getQueryMode(controls), + externalValidationErrors: validateAggControlValues(controls, [ + controls.groupby?.value, + controls.metrics?.value, + controlState.value, + ]), + }), + rerender: ['groupby', 'metrics'], + default: [], + validators: [], +}; + +const dnd_percent_metrics = { + ...percent_metrics, + type: 'DndMetricSelect', +}; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyTimeseriesTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + [ + { + name: 'query_mode', + config: queryMode, + }, + ], + [ + { + name: 'groupby', + override: { + visibility: isAggMode, + mapStateToProps: ( + state: ControlPanelState, + controlState: ControlState, + ) => { + const { controls } = state; + const originalMapStateToProps = + sharedControls?.groupby?.mapStateToProps; + const newState = + originalMapStateToProps?.(state, controlState) ?? {}; + newState.externalValidationErrors = validateAggControlValues( + controls, + [ + controls.metrics?.value, + controls.percent_metrics?.value, + controlState.value, + ], + ); + + return newState; + }, + rerender: ['metrics', 'percent_metrics'], + }, + }, + ], + [ + { + name: 'metrics', + override: { + validators: [], + visibility: isAggMode, + mapStateToProps: ( + { controls, datasource, form_data }: ControlPanelState, + controlState: ControlState, + ) => ({ + columns: datasource?.columns.filter(c => c.filterable) || [], + savedMetrics: datasource?.metrics || [], + // current active adhoc metrics + selectedMetrics: + form_data.metrics || + (form_data.metric ? [form_data.metric] : []), + datasource, + externalValidationErrors: validateAggControlValues(controls, [ + controls.groupby?.value, + controls.percent_metrics?.value, + controlState.value, + ]), + }), + rerender: ['groupby', 'percent_metrics'], + }, + }, + { + name: 'all_columns', + config: isFeatureEnabled(FeatureFlag.ENABLE_EXPLORE_DRAG_AND_DROP) + ? dnd_all_columns + : all_columns, + }, + ], + [ + { + name: 'percent_metrics', + config: { + ...(isFeatureEnabled(FeatureFlag.ENABLE_EXPLORE_DRAG_AND_DROP) + ? dnd_percent_metrics + : percent_metrics), + }, + }, + ], + [ + { + name: 'timeseries_limit_metric', + override: { + visibility: isAggMode, + }, + }, + { + name: 'order_by_cols', + config: { + type: 'SelectControl', + label: t('Ordering'), + description: t('Order results by selected columns'), + multi: true, + default: [], + mapStateToProps: ({ datasource }) => ({ + choices: datasource?.order_by_choices || [], + }), + visibility: isRawMode, + }, + }, + ], + isFeatureEnabled(FeatureFlag.DASHBOARD_CROSS_FILTERS) || + isFeatureEnabled(FeatureFlag.DASHBOARD_NATIVE_FILTERS) + ? [ + { + name: 'server_pagination', + config: { + type: 'CheckboxControl', + label: t('Server pagination'), + description: t( + 'Enable server side pagination of results (experimental feature)', + ), + default: false, + }, + }, + ] + : [], + [ + { + name: 'row_limit', + override: { + visibility: ({ controls }: ControlPanelsContainerProps) => + !controls?.server_pagination?.value, + }, + }, + { + name: 'server_page_length', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Server Page Length'), + default: 10, + choices: PAGE_SIZE_OPTIONS, + description: t('Rows per page, 0 means no pagination'), + visibility: ({ controls }: ControlPanelsContainerProps) => + Boolean(controls?.server_pagination?.value), + }, + }, + ], + [ + { + name: 'include_time', + config: { + type: 'CheckboxControl', + label: t('Include time'), + description: t( + 'Whether to include the time granularity as defined in the time section', + ), + default: false, + visibility: isAggMode, + }, + }, + { + name: 'order_desc', + config: { + type: 'CheckboxControl', + label: t('Sort descending'), + default: true, + description: t('Whether to sort descending or ascending'), + visibility: isAggMode, + }, + }, + ], + [ + { + name: 'show_totals', + config: { + type: 'CheckboxControl', + label: t('Show totals'), + default: false, + description: t( + 'Show total aggregations of selected metrics. Note that row limit does not apply to the result.', + ), + visibility: isAggMode, + }, + }, + ], + ['adhoc_filters'], + emitFilterControl, + ], + }, + { + label: t('Options'), + expanded: true, + controlSetRows: [ + [ + { + name: 'table_timestamp_format', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Timestamp format'), + default: smartDateFormatter.id, + renderTrigger: true, + clearable: false, + choices: D3_TIME_FORMAT_OPTIONS, + description: t('D3 time format for datetime columns'), + }, + }, + ], + [ + { + name: 'page_length', + config: { + type: 'SelectControl', + freeForm: true, + renderTrigger: true, + label: t('Page length'), + default: null, + choices: PAGE_SIZE_OPTIONS, + description: t('Rows per page, 0 means no pagination'), + visibility: ({ controls }: ControlPanelsContainerProps) => + !controls?.server_pagination?.value, + }, + }, + null, + ], + [ + { + name: 'include_search', + config: { + type: 'CheckboxControl', + label: t('Search box'), + renderTrigger: true, + default: false, + description: t('Whether to include a client-side search box'), + }, + }, + { + name: 'show_cell_bars', + config: { + type: 'CheckboxControl', + label: t('Cell bars'), + renderTrigger: true, + default: true, + description: t( + 'Whether to display a bar chart background in table columns', + ), + }, + }, + ], + [ + { + name: 'align_pn', + config: { + type: 'CheckboxControl', + label: t('Align +/-'), + renderTrigger: true, + default: false, + description: t( + 'Whether to align background charts with both positive and negative values at 0', + ), + }, + }, + { + name: 'color_pn', + config: { + type: 'CheckboxControl', + label: t('Color +/-'), + renderTrigger: true, + default: true, + description: t( + 'Whether to colorize numeric values by if they are positive or negative', + ), + }, + }, + ], + [ + { + name: 'column_config', + config: { + type: 'ColumnConfigControl', + label: t('Customize columns'), + description: t('Further customize how to display each column'), + renderTrigger: true, + mapStateToProps(explore, control, chart) { + return { + queryResponse: chart?.queriesResponse?.[0] as + | ChartDataResponseResult + | undefined, + emitFilter: explore?.controls?.table_filter?.value, + }; + }, + }, + }, + ], + [ + { + name: 'conditional_formatting', + config: { + type: 'ConditionalFormattingControl', + renderTrigger: true, + label: t('Conditional formatting'), + description: t( + 'Apply conditional color formatting to numeric columns', + ), + mapStateToProps(explore, control, chart) { + const verboseMap = explore?.datasource?.verbose_map ?? {}; + const { colnames, coltypes } = + chart?.queriesResponse?.[0] ?? {}; + const numericColumns = + Array.isArray(colnames) && Array.isArray(coltypes) + ? colnames + .filter( + (colname: string, index: number) => + coltypes[index] === GenericDataType.NUMERIC, + ) + .map(colname => ({ + value: colname, + label: verboseMap[colname] ?? colname, + })) + : []; + return { + columnOptions: numericColumns, + verboseMap, + }; + }, + }, + }, + ], + ], + }, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/i18n.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/i18n.ts new file mode 100644 index 000000000000..3ea82b00e078 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/i18n.ts @@ -0,0 +1,66 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Locale } from '@superset-ui/core'; + +const en = { + 'Query Mode': [''], + Aggregate: [''], + 'Raw Records': [''], + 'Emit Filter Events': [''], + 'Show Cell Bars': [''], + 'page_size.show': ['Show'], + 'page_size.all': ['All'], + 'page_size.entries': ['entries'], + 'table.previous_page': ['Previous'], + 'table.next_page': ['Next'], + 'search.num_records': ['%s record', '%s records...'], +}; + +const translations: Partial> = { + en, + fr: { + 'Query Mode': [''], + Aggregate: [''], + 'Raw Records': [''], + 'Emit Filter Events': [''], + 'Show Cell Bars': [''], + 'page_size.show': ['Afficher'], + 'page_size.all': ['tous'], + 'page_size.entries': ['entrées'], + 'table.previous_page': ['Précédent'], + 'table.next_page': ['Suivante'], + 'search.num_records': ['%s enregistrement', '%s enregistrements...'], + }, + zh: { + 'Query Mode': ['查询模式'], + Aggregate: ['分组聚合'], + 'Raw Records': ['原始数据'], + 'Emit Filter Events': ['关联看板过滤器'], + 'Show Cell Bars': ['为指标添加条状图背景'], + 'page_size.show': ['每页显示'], + 'page_size.all': ['全部'], + 'page_size.entries': ['条'], + 'table.previous_page': ['上一页'], + 'table.next_page': ['下一页'], + 'search.num_records': ['%s条记录...'], + }, +}; + +export default translations; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/images/Table.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/images/Table.jpg new file mode 100644 index 000000000000..431a63a9632a Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/images/Table.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/images/Table2.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/images/Table2.jpg new file mode 100644 index 000000000000..0ec74d54a1b2 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/images/Table2.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/images/Table3.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/images/Table3.jpg new file mode 100644 index 000000000000..532aeeeed7dd Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/images/Table3.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/images/thumbnail.png new file mode 100644 index 000000000000..296702c954af Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..133d2804f84a Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/index.ts new file mode 100644 index 000000000000..bce2112d922d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/index.ts @@ -0,0 +1,69 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin, Behavior } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; +import example1 from './images/Table.jpg'; +import example2 from './images/Table2.jpg'; +import example3 from './images/Table3.jpg'; +import controlPanel from './controlPanel'; +import buildQuery from './buildQuery'; +import { TableChartFormData, TableChartProps } from './types'; + +// must export something for the module to be exist in dev mode +export { default as __hack__ } from './types'; +export * from './types'; + +const metadata = new ChartMetadata({ + behaviors: [Behavior.INTERACTIVE_CHART], + category: t('Table'), + canBeAnnotationTypes: ['EVENT', 'INTERVAL'], + description: t( + 'Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.', + ), + exampleGallery: [{ url: example1 }, { url: example2 }, { url: example3 }], + name: t('Table'), + tags: [ + t('Additive'), + t('Business'), + t('Formattable'), + t('Pattern'), + t('Popular'), + t('Report'), + t('Sequential'), + t('Tabular'), + t('Description'), + ], + thumbnail, +}); + +export default class TableChartPlugin extends ChartPlugin< + TableChartFormData, + TableChartProps +> { + constructor() { + super({ + loadChart: () => import('./TableChart'), + metadata, + transformProps, + controlPanel, + buildQuery, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/transformProps.ts new file mode 100644 index 000000000000..5cb0dff93abe --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/transformProps.ts @@ -0,0 +1,271 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import memoizeOne from 'memoize-one'; +import { + DataRecord, + extractTimegrain, + GenericDataType, + getMetricLabel, + getNumberFormatter, + getTimeFormatter, + getTimeFormatterForGranularity, + NumberFormats, + QueryMode, + smartDateFormatter, + TimeFormats, + TimeFormatter, +} from '@superset-ui/core'; +import { getColorFormatters } from '@superset-ui/chart-controls'; + +import isEqualColumns from './utils/isEqualColumns'; +import DateWithFormatter from './utils/DateWithFormatter'; +import { + DataColumnMeta, + TableChartProps, + TableChartTransformedProps, +} from './types'; + +const { PERCENT_3_POINT } = NumberFormats; +const { DATABASE_DATETIME } = TimeFormats; + +function isNumeric(key: string, data: DataRecord[] = []) { + return data.every( + x => x[key] === null || x[key] === undefined || typeof x[key] === 'number', + ); +} + +const processDataRecords = memoizeOne(function processDataRecords( + data: DataRecord[] | undefined, + columns: DataColumnMeta[], +) { + if (!data || !data[0]) { + return data || []; + } + const timeColumns = columns.filter( + column => column.dataType === GenericDataType.TEMPORAL, + ); + + if (timeColumns.length > 0) { + return data.map(x => { + const datum = { ...x }; + timeColumns.forEach(({ key, formatter }) => { + // Convert datetime with a custom date class so we can use `String(...)` + // formatted value for global search, and `date.getTime()` for sorting. + datum[key] = new DateWithFormatter(x[key], { + formatter: formatter as TimeFormatter, + }); + }); + return datum; + }); + } + return data; +}); + +const processColumns = memoizeOne(function processColumns( + props: TableChartProps, +) { + const { + datasource: { columnFormats, verboseMap }, + rawFormData: { + table_timestamp_format: tableTimestampFormat, + metrics: metrics_, + percent_metrics: percentMetrics_, + column_config: columnConfig = {}, + }, + queriesData, + } = props; + const granularity = extractTimegrain(props.rawFormData); + const { data: records, colnames, coltypes } = queriesData[0] || {}; + // convert `metrics` and `percentMetrics` to the key names in `data.records` + const metrics = (metrics_ ?? []).map(getMetricLabel); + const rawPercentMetrics = (percentMetrics_ ?? []).map(getMetricLabel); + // column names for percent metrics always starts with a '%' sign. + const percentMetrics = rawPercentMetrics.map((x: string) => `%${x}`); + const metricsSet = new Set(metrics); + const percentMetricsSet = new Set(percentMetrics); + const rawPercentMetricsSet = new Set(rawPercentMetrics); + + const columns: DataColumnMeta[] = (colnames || []) + .filter( + key => + // if a metric was only added to percent_metrics, they should not show up in the table. + !(rawPercentMetricsSet.has(key) && !metricsSet.has(key)), + ) + .map((key: string, i) => { + const label = verboseMap?.[key] || key; + const dataType = coltypes[i]; + const config = columnConfig[key] || {}; + // for the purpose of presentation, only numeric values are treated as metrics + // because users can also add things like `MAX(str_col)` as a metric. + const isMetric = metricsSet.has(key) && isNumeric(key, records); + const isPercentMetric = percentMetricsSet.has(key); + const isTime = dataType === GenericDataType.TEMPORAL; + const savedFormat = columnFormats?.[key]; + const numberFormat = config.d3NumberFormat || savedFormat; + + let formatter; + + if (isTime || config.d3TimeFormat) { + // string types may also apply d3-time format + // pick adhoc format first, fallback to column level formats defined in + // datasource + const customFormat = config.d3TimeFormat || savedFormat; + const timeFormat = customFormat || tableTimestampFormat; + // When format is "Adaptive Formatting" (smart_date) + if (timeFormat === smartDateFormatter.id) { + if (granularity) { + // time column use formats based on granularity + formatter = getTimeFormatterForGranularity(granularity); + } else if (customFormat) { + // other columns respect the column-specific format + formatter = getTimeFormatter(customFormat); + } else if (isNumeric(key, records)) { + // if column is numeric values, it is considered a timestamp64 + formatter = getTimeFormatter(DATABASE_DATETIME); + } else { + // if no column-specific format, print cell as is + formatter = String; + } + } else if (timeFormat) { + formatter = getTimeFormatter(timeFormat); + } + } else if (isPercentMetric) { + // percent metrics have a default format + formatter = getNumberFormatter(numberFormat || PERCENT_3_POINT); + } else if (isMetric || numberFormat) { + formatter = getNumberFormatter(numberFormat); + } + return { + key, + label, + dataType, + isNumeric: dataType === GenericDataType.NUMERIC, + isMetric, + isPercentMetric, + formatter, + config, + }; + }); + return [metrics, percentMetrics, columns] as [ + typeof metrics, + typeof percentMetrics, + typeof columns, + ]; +}, +isEqualColumns); + +/** + * Automatically set page size based on number of cells. + */ +const getPageSize = ( + pageSize: number | string | null | undefined, + numRecords: number, + numColumns: number, +) => { + if (typeof pageSize === 'number') { + // NaN is also has typeof === 'number' + return pageSize || 0; + } + if (typeof pageSize === 'string') { + return Number(pageSize) || 0; + } + // when pageSize not set, automatically add pagination if too many records + return numRecords * numColumns > 5000 ? 200 : 0; +}; + +const transformProps = ( + chartProps: TableChartProps, +): TableChartTransformedProps => { + const { + height, + width, + rawFormData: formData, + queriesData = [], + filterState, + ownState: serverPaginationData = {}, + hooks: { onAddFilter: onChangeFilter, setDataMask = () => {} }, + } = chartProps; + + const { + align_pn: alignPositiveNegative = true, + color_pn: colorPositiveNegative = true, + show_cell_bars: showCellBars = true, + include_search: includeSearch = false, + page_length: pageLength, + emit_filter: emitFilter, + server_pagination: serverPagination = false, + server_page_length: serverPageLength = 10, + order_desc: sortDesc = false, + query_mode: queryMode, + show_totals: showTotals, + conditional_formatting: conditionalFormatting, + } = formData; + const timeGrain = extractTimegrain(formData); + + const [metrics, percentMetrics, columns] = processColumns(chartProps); + + let baseQuery; + let countQuery; + let totalQuery; + let rowCount; + if (serverPagination) { + [baseQuery, countQuery, totalQuery] = queriesData; + rowCount = (countQuery?.data?.[0]?.rowcount as number) ?? 0; + } else { + [baseQuery, totalQuery] = queriesData; + rowCount = baseQuery?.rowcount ?? 0; + } + const data = processDataRecords(baseQuery?.data, columns); + const totals = + showTotals && queryMode === QueryMode.aggregate + ? totalQuery?.data[0] + : undefined; + const columnColorFormatters = + getColorFormatters(conditionalFormatting, data) ?? []; + + return { + height, + width, + isRawRecords: queryMode === QueryMode.raw, + data, + totals, + columns, + serverPagination, + metrics, + percentMetrics, + serverPaginationData, + setDataMask, + alignPositiveNegative, + colorPositiveNegative, + showCellBars, + sortDesc, + includeSearch, + rowCount, + pageSize: serverPagination + ? serverPageLength + : getPageSize(pageLength, data.length, columns.length), + filters: filterState.filters, + emitFilter, + onChangeFilter, + columnColorFormatters, + timeGrain, + }; +}; + +export default transformProps; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/types.ts new file mode 100644 index 000000000000..e95f55441edf --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/types.ts @@ -0,0 +1,114 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + NumberFormatter, + TimeFormatter, + TimeGranularity, + QueryFormMetric, + ChartProps, + DataRecord, + DataRecordValue, + DataRecordFilters, + GenericDataType, + QueryMode, + ChartDataResponseResult, + QueryFormData, + SetDataMaskHook, +} from '@superset-ui/core'; +import { ColorFormatters, ColumnConfig } from '@superset-ui/chart-controls'; + +export type CustomFormatter = (value: DataRecordValue) => string; + +export interface DataColumnMeta { + // `key` is what is called `label` in the input props + key: string; + // `label` is verbose column name used for rendering + label: string; + dataType: GenericDataType; + formatter?: TimeFormatter | NumberFormatter | CustomFormatter; + isMetric?: boolean; + isPercentMetric?: boolean; + isNumeric?: boolean; + config?: ColumnConfig; +} + +export interface TableChartData { + records: DataRecord[]; + columns: string[]; +} + +export type TableChartFormData = QueryFormData & { + align_pn?: boolean; + color_pn?: boolean; + include_time?: boolean; + include_search?: boolean; + query_mode?: QueryMode; + page_length?: string | number | null; // null means auto-paginate + metrics?: QueryFormMetric[] | null; + percent_metrics?: QueryFormMetric[] | null; + timeseries_limit_metric?: QueryFormMetric[] | QueryFormMetric | null; + groupby?: QueryFormMetric[] | null; + all_columns?: QueryFormMetric[] | null; + order_desc?: boolean; + show_cell_bars?: boolean; + table_timestamp_format?: string; + emit_filter?: boolean; + time_grain_sqla?: TimeGranularity; + column_config?: Record; +}; + +export interface TableChartProps extends ChartProps { + ownCurrentState: { + pageSize?: number; + currentPage?: number; + }; + rawFormData: TableChartFormData; + queriesData: ChartDataResponseResult[]; +} + +export interface TableChartTransformedProps { + timeGrain?: TimeGranularity; + height: number; + width: number; + rowCount?: number; + serverPagination: boolean; + serverPaginationData: { pageSize?: number; currentPage?: number }; + setDataMask: SetDataMaskHook; + isRawRecords?: boolean; + data: D[]; + totals?: D; + columns: DataColumnMeta[]; + metrics?: (keyof D)[]; + percentMetrics?: (keyof D)[]; + pageSize?: number; + showCellBars?: boolean; + sortDesc?: boolean; + includeSearch?: boolean; + alignPositiveNegative?: boolean; + colorPositiveNegative?: boolean; + tableTimestampFormat?: string; + // These are dashboard filters, don't be confused with in-chart search filter + // enabled by `includeSearch` + filters?: DataRecordFilters; + emitFilter?: boolean; + onChangeFilter?: ChartProps['hooks']['onAddFilter']; + columnColorFormatters?: ColorFormatters; +} + +export default {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/utils/DateWithFormatter.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/utils/DateWithFormatter.ts new file mode 100644 index 000000000000..eef513bca040 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/utils/DateWithFormatter.ts @@ -0,0 +1,60 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { DataRecordValue, TimeFormatFunction } from '@superset-ui/core'; + +const REGEXP_TIMESTAMP_NO_TIMEZONE = /T(\d{2}:){2}\d{2}$/; + +/** + * Extended Date object with a custom formatter, and retains the original input + * when the formatter is simple `String(..)`. + */ +export default class DateWithFormatter extends Date { + formatter: TimeFormatFunction; + + input: DataRecordValue; + + constructor( + input: DataRecordValue, + { + formatter = String, + forceUTC = true, + }: { formatter?: TimeFormatFunction; forceUTC?: boolean } = {}, + ) { + let value = input; + // assuming timestamps without a timezone is in UTC time + if ( + forceUTC && + typeof value === 'string' && + REGEXP_TIMESTAMP_NO_TIMEZONE.test(value) + ) { + value = `${value}Z`; + } + + super(value as string); + + this.input = input; + this.formatter = formatter; + this.toString = (): string => { + if (this.formatter === String) { + return String(this.input); + } + return this.formatter ? this.formatter(this) : Date.toString.call(this); + }; + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/utils/extent.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/utils/extent.ts new file mode 100644 index 000000000000..d2ee83e2891f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/utils/extent.ts @@ -0,0 +1,45 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function extent( + values: T[], +) { + let min: T | undefined; + let max: T | undefined; + // eslint-disable-next-line no-restricted-syntax + for (const value of values) { + if (value !== null) { + if (min === undefined) { + if (value !== undefined) { + min = value; + max = value; + } + } else { + if (min > value) { + min = value; + } + if (max !== undefined) { + if (max < value) { + max = value; + } + } + } + } + } + return [min, max]; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/utils/formatValue.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/utils/formatValue.ts new file mode 100644 index 000000000000..c5b9b519f471 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/utils/formatValue.ts @@ -0,0 +1,94 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { FilterXSS, getDefaultWhiteList } from 'xss'; +import { + DataRecordValue, + GenericDataType, + getNumberFormatter, +} from '@superset-ui/core'; +import { DataColumnMeta } from '../types'; + +const xss = new FilterXSS({ + whiteList: { + ...getDefaultWhiteList(), + span: ['style', 'class', 'title'], + div: ['style', 'class'], + a: ['style', 'class', 'href', 'title', 'target'], + img: ['style', 'class', 'src', 'alt', 'title', 'width', 'height'], + video: [ + 'autoplay', + 'controls', + 'loop', + 'preload', + 'src', + 'height', + 'width', + 'muted', + ], + }, + stripIgnoreTag: true, + css: false, +}); + +function isProbablyHTML(text: string) { + return /<[^>]+>/.test(text); +} + +/** + * Format text for cell value. + */ +function formatValue( + formatter: DataColumnMeta['formatter'], + value: DataRecordValue, +): [boolean, string] { + // render undefined as empty string + if (value === undefined) { + return [false, '']; + } + // render null as `N/A` + if (value === null) { + return [false, 'N/A']; + } + if (formatter) { + // in case percent metric can specify percent format in the future + return [false, formatter(value as number)]; + } + if (typeof value === 'string') { + return isProbablyHTML(value) ? [true, xss.process(value)] : [false, value]; + } + return [false, value.toString()]; +} + +export function formatColumnValue( + column: DataColumnMeta, + value: DataRecordValue, +) { + const { dataType, formatter, config = {} } = column; + const isNumber = dataType === GenericDataType.NUMERIC; + const smallNumberFormatter = + config.d3SmallNumberFormat === undefined + ? formatter + : getNumberFormatter(config.d3SmallNumberFormat); + return formatValue( + isNumber && typeof value === 'number' && Math.abs(value) < 1 + ? smallNumberFormatter + : formatter, + value, + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/utils/isEqualArray.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/utils/isEqualArray.ts new file mode 100644 index 000000000000..6f582040423f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/utils/isEqualArray.ts @@ -0,0 +1,31 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function isEqualArray( + arrA: T, + arrB: T, +) { + return ( + arrA === arrB || + (!arrA && !arrB) || + (arrA && + arrB && + arrA.length === arrB.length && + arrA.every((x, i) => x === arrB[i])) + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/utils/isEqualColumns.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/utils/isEqualColumns.ts new file mode 100644 index 000000000000..1490de46f64f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/src/utils/isEqualColumns.ts @@ -0,0 +1,43 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import isEqualArray from './isEqualArray'; +import { TableChartProps } from '../types'; + +export default function isEqualColumns( + propsA: TableChartProps[], + propsB: TableChartProps[], +) { + const a = propsA[0]; + const b = propsB[0]; + return ( + a.datasource.columnFormats === b.datasource.columnFormats && + a.datasource.verboseMap === b.datasource.verboseMap && + a.formData.tableTimestampFormat === b.formData.tableTimestampFormat && + a.formData.timeGrainSqla === b.formData.timeGrainSqla && + JSON.stringify(a.formData.columnConfig || null) === + JSON.stringify(b.formData.columnConfig || null) && + isEqualArray(a.formData.metrics, b.formData.metrics) && + isEqualArray(a.queriesData?.[0]?.colnames, b.queriesData?.[0]?.colnames) && + isEqualArray(a.queriesData?.[0]?.coltypes, b.queriesData?.[0]?.coltypes) && + JSON.stringify(a.formData.extraFilters || null) === + JSON.stringify(b.formData.extraFilters || null) && + JSON.stringify(a.formData.extraFormData || null) === + JSON.stringify(b.formData.extraFormData || null) + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/TableChart.test.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/TableChart.test.tsx new file mode 100644 index 000000000000..3d4042b991ce --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/TableChart.test.tsx @@ -0,0 +1,108 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { CommonWrapper } from 'enzyme'; +import TableChart from '../src/TableChart'; +import transformProps from '../src/transformProps'; +import DateWithFormatter from '../src/utils/DateWithFormatter'; +import testData from './testData'; +import { mount } from './enzyme'; + +describe('plugin-chart-table', () => { + describe('transformProps', () => { + it('should parse pageLength to pageSize', () => { + expect(transformProps(testData.basic).pageSize).toBe(20); + expect( + transformProps({ + ...testData.basic, + rawFormData: { ...testData.basic.rawFormData, page_length: '20' }, + }).pageSize, + ).toBe(20); + expect( + transformProps({ + ...testData.basic, + rawFormData: { ...testData.basic.rawFormData, page_length: '' }, + }).pageSize, + ).toBe(0); + }); + + it('should memoize data records', () => { + expect(transformProps(testData.basic).data).toBe( + transformProps(testData.basic).data, + ); + }); + + it('should memoize columns meta', () => { + expect(transformProps(testData.basic).columns).toBe( + transformProps({ + ...testData.basic, + rawFormData: { ...testData.basic.rawFormData, pageLength: null }, + }).columns, + ); + }); + + it('should format timestamp', () => { + // eslint-disable-next-line no-underscore-dangle + const parsedDate = transformProps(testData.basic).data[0] + .__timestamp as DateWithFormatter; + expect(String(parsedDate)).toBe('2020-01-01 12:34:56'); + expect(parsedDate.getTime()).toBe(1577882096000); + }); + }); + + describe('TableChart', () => { + let wrap: CommonWrapper; // the ReactDataTable wraper + let tree: Cheerio; + + it('render basic data', () => { + wrap = mount( + , + ); + tree = wrap.render(); // returns a CheerioWrapper with jQuery-like API + const cells = tree.find('td'); + expect(cells).toHaveLength(8); + expect(cells.eq(0).text()).toEqual('2020-01-01 12:34:56'); + expect(cells.eq(1).text()).toEqual('Michael'); + // number is not in `metrics` list, so it should output raw value + // (in real world Superset, this would mean the column is used in GROUP BY) + expect(cells.eq(2).text()).toEqual('2467063'); + // should not render column with `.` in name as `undefined` + expect(cells.eq(3).text()).toEqual('foo'); + expect(cells.eq(6).text()).toEqual('2467'); + }); + + it('render advanced data', () => { + wrap = mount( + , + ); + tree = wrap.render(); + // should successfull rerender with new props + const cells = tree.find('td'); + expect(tree.find('th').eq(1).text()).toEqual('Sum of Num'); + expect(cells.eq(2).text()).toEqual('12.346%'); + expect(cells.eq(4).text()).toEqual('2.47k'); + }); + + it('render empty data', () => { + wrap.setProps({ ...transformProps(testData.empty), sticky: false }); + tree = wrap.render(); + expect(tree.text()).toContain('No records found'); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/buildQuery.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/buildQuery.test.ts new file mode 100644 index 000000000000..4578dd139ddc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/buildQuery.test.ts @@ -0,0 +1,85 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { QueryMode } from '@superset-ui/core'; +import buildQuery from '../src/buildQuery'; +import { TableChartFormData } from '../src/types'; + +const basicFormData: TableChartFormData = { + viz_type: 'table', + datasource: '11__table', +}; + +describe('plugin-chart-table', () => { + describe('buildQuery', () => { + it('should add post-processing and ignore duplicate metrics', () => { + const query = buildQuery({ + ...basicFormData, + query_mode: QueryMode.aggregate, + metrics: ['aaa', 'aaa'], + percent_metrics: ['bbb', 'bbb'], + }).queries[0]; + expect(query.metrics).toEqual(['aaa', 'bbb']); + expect(query.post_processing).toEqual([ + { + operation: 'contribution', + options: { + columns: ['bbb'], + rename_columns: ['%bbb'], + }, + }, + ]); + }); + + it('should not add metrics in raw records mode', () => { + const query = buildQuery({ + ...basicFormData, + query_mode: QueryMode.raw, + columns: ['a'], + metrics: ['aaa', 'aaa'], + percent_metrics: ['bbb', 'bbb'], + }).queries[0]; + expect(query.metrics).toBeUndefined(); + expect(query.post_processing).toEqual([]); + }); + + it('should not add post-processing when there is no percent metric', () => { + const query = buildQuery({ + ...basicFormData, + query_mode: QueryMode.aggregate, + metrics: ['aaa'], + percent_metrics: [], + }).queries[0]; + expect(query.metrics).toEqual(['aaa']); + expect(query.post_processing).toEqual([]); + }); + + it('should not add post-processing in raw records mode', () => { + const query = buildQuery({ + ...basicFormData, + query_mode: QueryMode.raw, + metrics: ['aaa'], + columns: ['rawcol'], + percent_metrics: ['ccc'], + }).queries[0]; + expect(query.metrics).toBeUndefined(); + expect(query.columns).toEqual(['rawcol']); + expect(query.post_processing).toEqual([]); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/enzyme.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/enzyme.tsx new file mode 100644 index 000000000000..afd95b5b6eba --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/enzyme.tsx @@ -0,0 +1,67 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React, { ReactElement } from 'react'; +import { shallow as enzymeShallow, mount as enzymeMount } from 'enzyme'; +import { + EmotionCacheProvider, + createEmotionCache, + supersetTheme, + ThemeProvider, +} from '@superset-ui/core'; + +const emotionCache = createEmotionCache({ + key: 'test', +}); + +type optionsType = { + wrappingComponentProps?: any; + wrappingComponent?: ReactElement; + context?: any; +}; + +export function ProviderWrapper(props: any) { + const { children, theme = supersetTheme } = props; + return ( + + {children} + + ); +} + +export function mount(component: ReactElement, options: optionsType = {}) { + return enzymeMount(component, { + ...options, + wrappingComponent: ProviderWrapper, + wrappingComponentProps: { + theme: supersetTheme, + ...options?.wrappingComponentProps, + }, + }); +} + +export function shallow(component: ReactElement, options: optionsType = {}) { + return enzymeShallow(component, { + ...options, + wrappingComponent: ProviderWrapper, + wrappingComponentProps: { + theme: supersetTheme, + ...options?.wrappingComponentProps, + }, + }).dive(); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/testData.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/testData.ts new file mode 100644 index 000000000000..e9eee7e92d49 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/testData.ts @@ -0,0 +1,165 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + ChartDataResponseResult, + ChartProps, + DatasourceType, + GenericDataType, +} from '@superset-ui/core'; +import { TableChartProps, TableChartFormData } from '../src/types'; + +const basicFormData: TableChartFormData = { + datasource: '1__abc', + viz_type: 'table', + align_pn: false, + color_pn: false, + show_cell_bars: true, + include_search: false, + order_desc: true, + page_length: 20, + metrics: [], + percent_metrics: null, + timeseries_limit_metric: '', + table_filter: false, + table_timestamp_format: '%Y-%m-%d %H:%M:%S', +}; + +const basicChartProps = { + width: 200, + height: 500, + datasource: { + id: 0, + name: '', + type: DatasourceType.Table, + columns: [], + metrics: [], + columnFormats: {}, + verboseMap: {}, + }, + hooks: {}, + initialValues: {}, + queriesData: [ + { + data: { + columns: [], + records: [], + }, + }, + ], + formData: basicFormData, +}; + +const basicQueryResult: ChartDataResponseResult = { + annotation_data: null, + cache_key: null, + cache_dttm: null, + cache_timeout: null, + data: [], + colnames: [], + coltypes: [], + error: null, + is_cached: false, + query: 'SELECT ...', + rowcount: 100, + stacktrace: null, + status: 'success', +}; + +/** + * Basic data input + */ +const basic: TableChartProps = { + ...new ChartProps(basicChartProps), + queriesData: [ + { + ...basicQueryResult, + colnames: ['__timestamp', 'name', 'sum__num', 'abc.com'], + coltypes: [ + GenericDataType.TEMPORAL, + GenericDataType.STRING, + GenericDataType.NUMERIC, + GenericDataType.STRING, + ], + data: [ + { + __timestamp: '2020-01-01T12:34:56', + name: 'Michael', + sum__num: 2467063, + '%pct_nice': 0.123456, + 'abc.com': 'foo', + }, + { + __timestamp: 1585932584140, + name: 'Joe', + sum__num: 2467, + '%pct_nice': 0.00001, + 'abc.com': 'bar', + }, + ], + }, + ], +}; + +/** + * Advanced data input with + * - verbose map + * - metric columns + */ +const advanced: TableChartProps = { + ...basic, + datasource: { + ...basic.datasource, + verboseMap: { + sum__num: 'Sum of Num', + }, + }, + rawFormData: { + ...basicFormData, + metrics: ['sum__num'], + percent_metrics: ['pct_nice'], + }, + queriesData: [ + { + ...basicQueryResult, + colnames: ['name', 'sum__num', '%pct_nice'], + coltypes: [ + GenericDataType.STRING, + GenericDataType.NUMERIC, + GenericDataType.NUMERIC, + ], + data: [...(basic.queriesData[0].data || [])], + }, + ], +}; + +const empty = { + ...advanced, + queriesData: [ + { + ...advanced.queriesData[0], + data: [], + }, + ], +}; + +export default { + basic, + advanced, + empty, +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/tsconfig.json new file mode 100644 index 000000000000..237243534a93 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/test/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "composite": false, + "emitDeclarationOnly": false, + "noEmit": true, + "rootDir": "../../../" + }, + "extends": "../../../tsconfig.json", + "include": [ + "**/*", + "../types/**/*", + "../../../types/**/*" + ], + "references": [ + { + "path": ".." + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/tsconfig.json new file mode 100644 index 000000000000..289b1d025322 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*", + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/types/external.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/types/external.d.ts new file mode 100644 index 000000000000..eb7f1895cb71 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-table/types/external.d.ts @@ -0,0 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +declare module '*.png'; +declare module '*.jpg'; +declare module 'regenerator-runtime/runtime'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/CHANGELOG.md new file mode 100644 index 000000000000..a9f3ca15b8f9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/CHANGELOG.md @@ -0,0 +1,35 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/plugin-chart-word-cloud + + + + + +## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) + +**Note:** Version bump only for package @superset-ui/plugin-chart-word-cloud diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/README.md new file mode 100644 index 000000000000..88998e244640 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/README.md @@ -0,0 +1,52 @@ + + +## @superset-ui/plugin-chart-word-cloud + +[![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-word-cloud.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-word-cloud) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-plugin-chart-word-cloud&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-plugin-chart-word-cloud) + +This plugin provides Word Cloud for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import WordCloudChartPlugin from '@superset-ui/plugin-chart-word-cloud'; + +new WordCloudChartPlugin().configure({ key: 'word-cloud' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-word-cloud) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/package.json new file mode 100644 index 000000000000..e8e5f68ef4ec --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/package.json @@ -0,0 +1,43 @@ +{ + "name": "@superset-ui/plugin-chart-word-cloud", + "version": "0.18.25", + "description": "Superset Chart Plugin - Word Cloud", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@types/d3-cloud": "^1.2.1", + "@types/d3-scale": "^2.0.2", + "d3-cloud": "^1.2.5", + "d3-scale": "^3.0.1", + "encodable": "^0.7.6" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.13.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/chart/Encoder.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/chart/Encoder.ts new file mode 100644 index 000000000000..042f3ce1f396 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/chart/Encoder.ts @@ -0,0 +1,18 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/chart/WordCloud.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/chart/WordCloud.tsx new file mode 100644 index 000000000000..4a9683a6dd65 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/chart/WordCloud.tsx @@ -0,0 +1,250 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import cloudLayout, { Word } from 'd3-cloud'; +import { + PlainObject, + createEncoderFactory, + DeriveEncoding, + Encoder, +} from 'encodable'; +import { SupersetThemeProps, withTheme, seedRandom } from '@superset-ui/core'; + +export const ROTATION = { + flat: () => 0, + // this calculates a random rotation between -90 and 90 degrees. + random: () => Math.floor(seedRandom() * 6 - 3) * 30, + square: () => Math.floor(seedRandom() * 2) * 90, +}; + +export type RotationType = keyof typeof ROTATION; + +export type WordCloudEncoding = DeriveEncoding; + +type WordCloudEncodingConfig = { + color: ['Color', string]; + fontFamily: ['Category', string]; + fontSize: ['Numeric', number]; + fontWeight: ['Category', string | number]; + text: ['Text', string]; +}; + +/** + * These props should be stored when saving the chart. + */ +export interface WordCloudVisualProps { + encoding?: Partial; + rotation?: RotationType; +} + +export interface WordCloudProps extends WordCloudVisualProps { + data: PlainObject[]; + height: number; + width: number; +} + +export interface WordCloudState { + words: Word[]; + scaleFactor: number; +} + +const defaultProps: Required = { + encoding: {}, + rotation: 'flat', +}; + +type FullWordCloudProps = WordCloudProps & + typeof defaultProps & + SupersetThemeProps; + +const SCALE_FACTOR_STEP = 0.5; +const MAX_SCALE_FACTOR = 3; +// Percentage of top results that will always be displayed. +// Needed to avoid clutter when shrinking a chart with many records. +const TOP_RESULTS_PERCENTAGE = 0.1; + +class WordCloud extends React.PureComponent< + FullWordCloudProps, + WordCloudState +> { + static defaultProps = defaultProps; + + // Cannot name it isMounted because of conflict + // with React's component function name + isComponentMounted = false; + + wordCloudEncoderFactory = createEncoderFactory({ + channelTypes: { + color: 'Color', + fontFamily: 'Category', + fontSize: 'Numeric', + fontWeight: 'Category', + text: 'Text', + }, + defaultEncoding: { + color: { value: 'black' }, + fontFamily: { value: this.props.theme.typography.families.sansSerif }, + fontSize: { value: 20 }, + fontWeight: { value: 'bold' }, + text: { value: '' }, + }, + }); + + createEncoder = this.wordCloudEncoderFactory.createSelector(); + + constructor(props: FullWordCloudProps) { + super(props); + this.state = { + words: [], + scaleFactor: 1, + }; + this.setWords = this.setWords.bind(this); + } + + componentDidMount() { + this.isComponentMounted = true; + this.update(); + } + + componentDidUpdate(prevProps: WordCloudProps) { + const { data, encoding, width, height, rotation } = this.props; + + if ( + prevProps.data !== data || + prevProps.encoding !== encoding || + prevProps.width !== width || + prevProps.height !== height || + prevProps.rotation !== rotation + ) { + this.update(); + } + } + + componentWillUnmount() { + this.isComponentMounted = false; + } + + setWords(words: Word[]) { + if (this.isComponentMounted) { + this.setState({ words }); + } + } + + update() { + const { data, encoding } = this.props; + + const encoder = this.createEncoder(encoding); + encoder.setDomainFromDataset(data); + + const sortedData = [...data].sort( + (a, b) => + encoder.channels.fontSize.encodeDatum(b, 0) - + encoder.channels.fontSize.encodeDatum(a, 0), + ); + const topResultsCount = Math.max( + sortedData.length * TOP_RESULTS_PERCENTAGE, + 10, + ); + const topResults = sortedData.slice(0, topResultsCount); + + // Ensure top results are always included in the final word cloud by scaling chart down if needed + this.generateCloud(encoder, 1, (words: Word[]) => + topResults.every((d: PlainObject) => + words.find( + ({ text }) => encoder.channels.text.getValueFromDatum(d) === text, + ), + ), + ); + } + + generateCloud( + encoder: Encoder, + scaleFactor: number, + isValid: (word: Word[]) => boolean, + ) { + const { data, width, height, rotation } = this.props; + + cloudLayout() + .size([width * scaleFactor, height * scaleFactor]) + // clone the data because cloudLayout mutates input + .words(data.map(d => ({ ...d }))) + .padding(5) + .rotate(ROTATION[rotation] || ROTATION.flat) + .text(d => encoder.channels.text.getValueFromDatum(d)) + .font(d => + encoder.channels.fontFamily.encodeDatum( + d, + this.props.theme.typography.families.sansSerif, + ), + ) + .fontWeight(d => encoder.channels.fontWeight.encodeDatum(d, 'normal')) + .fontSize(d => encoder.channels.fontSize.encodeDatum(d, 0)) + .on('end', (words: Word[]) => { + if (isValid(words) || scaleFactor > MAX_SCALE_FACTOR) { + if (this.isComponentMounted) { + this.setState({ words, scaleFactor }); + } + } else { + this.generateCloud(encoder, scaleFactor + SCALE_FACTOR_STEP, isValid); + } + }) + .start(); + } + + render() { + const { scaleFactor } = this.state; + const { width, height, encoding } = this.props; + const { words } = this.state; + + const encoder = this.createEncoder(encoding); + encoder.channels.color.setDomainFromDataset(words); + + const viewBoxWidth = width * scaleFactor; + const viewBoxHeight = height * scaleFactor; + + return ( + + + {words.map(w => ( + + {w.text} + + ))} + + + ); + } +} + +export default withTheme(WordCloud); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/configureEncodable.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/configureEncodable.ts new file mode 100644 index 000000000000..05a204128652 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/configureEncodable.ts @@ -0,0 +1,83 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + Encodable, + ColorSchemeResolver, + TimeFormatResolver, + CategoricalColorScaleResolver, + defaultColorSchemeResolver, + addPrefix, +} from 'encodable'; +import { + CategoricalColorNamespace, + getCategoricalSchemeRegistry, + getSequentialSchemeRegistry, + getNumberFormatter, + getTimeFormatter, + LOCAL_PREFIX, + getTimeFormatterRegistry, +} from '@superset-ui/core'; + +const timeFormat: TimeFormatResolver = ({ + format, + formatInLocalTime = false, +} = {}) => { + const formatString = formatInLocalTime + ? addPrefix( + LOCAL_PREFIX, + format ?? getTimeFormatterRegistry().getDefaultKey()!, + ) + : format; + + return getTimeFormatter(formatString); +}; + +const colorSchemeResolver: ColorSchemeResolver = ({ + name, + type = 'categorical', +} = {}) => { + if (type === 'sequential') { + const scheme = getSequentialSchemeRegistry().get(name); + + return typeof scheme === 'undefined' + ? scheme + : { type: 'sequential', ...scheme }; + } + if (type === 'categorical') { + const scheme = getCategoricalSchemeRegistry().get(name); + + return typeof scheme === 'undefined' + ? scheme + : { type: 'categorical', ...scheme }; + } + return defaultColorSchemeResolver({ name, type }); +}; + +const colorScaleResolver: CategoricalColorScaleResolver = ({ + name, + namespace, +} = {}) => CategoricalColorNamespace.getScale(name, namespace); + +export default function configureEncodable() { + Encodable.setNumberFormatResolver(getNumberFormatter) + .setTimeFormatResolver(timeFormat) + .setColorSchemeResolver(colorSchemeResolver) + .setCategoricalColorScaleResolver(colorScaleResolver); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/images/Word_Cloud.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/images/Word_Cloud.jpg new file mode 100644 index 000000000000..168409ce2f1f Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/images/Word_Cloud.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/images/Word_Cloud_2.jpg b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/images/Word_Cloud_2.jpg new file mode 100644 index 000000000000..45078242e164 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/images/Word_Cloud_2.jpg differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/images/thumbnail.png new file mode 100644 index 000000000000..92e09849980b Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..d477f5cecf2e Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/index.ts new file mode 100644 index 000000000000..76168eaba77b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/index.ts @@ -0,0 +1,24 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as WordCloudChartPlugin } from './plugin'; +export { default as WordCloudTransformProps } from './plugin/transformProps'; +export { default as LegacyWordCloudChartPlugin } from './legacyPlugin'; +export * from './types'; +export { default as configureEncodable } from './configureEncodable'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts new file mode 100644 index 000000000000..527dcba50a86 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts @@ -0,0 +1,43 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import buildQuery from '../plugin/buildQuery'; +import thumbnail from '../images/thumbnail.png'; +import { LegacyWordCloudFormData } from './types'; + +const metadata = new ChartMetadata({ + credits: ['https://github.com/jasondavies/d3-cloud'], + description: '', + name: t('Word Cloud'), + thumbnail, + useLegacyApi: true, +}); + +export default class LegacyWordCloudChartPlugin extends ChartPlugin { + constructor() { + super({ + buildQuery, + loadChart: () => import('../chart/WordCloud'), + metadata, + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/legacyPlugin/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/legacyPlugin/transformProps.ts new file mode 100644 index 000000000000..095714086bcc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/legacyPlugin/transformProps.ts @@ -0,0 +1,81 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ChartProps } from '@superset-ui/core'; +import { WordCloudProps, WordCloudEncoding } from '../chart/WordCloud'; +import { LegacyWordCloudFormData } from './types'; + +function getMetricLabel( + metric: LegacyWordCloudFormData['metric'], +): string | undefined { + if (typeof metric === 'string' || typeof metric === 'undefined') { + return metric; + } + if (Array.isArray(metric)) { + return metric.length > 0 ? getMetricLabel(metric[0]) : undefined; + } + + return metric.label; +} + +export default function transformProps(chartProps: ChartProps): WordCloudProps { + const { width, height, formData, queriesData } = chartProps; + const { + colorScheme, + metric, + rotation, + series, + sizeFrom = 0, + sizeTo, + } = formData as LegacyWordCloudFormData; + + const metricLabel = getMetricLabel(metric); + + const encoding: Partial = { + color: { + field: series, + scale: { + scheme: colorScheme, + }, + type: 'nominal', + }, + fontSize: + typeof metricLabel === 'undefined' + ? undefined + : { + field: metricLabel, + scale: { + range: [sizeFrom, sizeTo], + zero: true, + }, + type: 'quantitative', + }, + text: { + field: series, + }, + }; + + return { + data: queriesData[0].data, + encoding, + height, + rotation, + width, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/legacyPlugin/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/legacyPlugin/types.ts new file mode 100644 index 000000000000..6101d14a0f7e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/legacyPlugin/types.ts @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { QueryFormData } from '@superset-ui/core'; +import { RotationType } from '../chart/WordCloud'; + +export type LegacyWordCloudFormData = QueryFormData & { + colorScheme: string; + rotation?: RotationType; + series: string; + sizeFrom?: number; + sizeTo: number; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/buildQuery.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/buildQuery.ts new file mode 100644 index 000000000000..f37325539a20 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/buildQuery.ts @@ -0,0 +1,33 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { buildQueryContext } from '@superset-ui/core'; +import { WordCloudFormData } from '../types'; + +export default function buildQuery(formData: WordCloudFormData) { + // Set the single QueryObject's groupby field with series in formData + const { metric, sort_by_metric } = formData; + + return buildQueryContext(formData, baseQueryObject => [ + { + ...baseQueryObject, + ...(sort_by_metric && { orderby: [[metric, false]] }), + }, + ]); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts new file mode 100644 index 000000000000..fce23133830f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts @@ -0,0 +1,108 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, validateNonEmpty } from '@superset-ui/core'; +import { ControlPanelConfig, sections } from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [ + ['series'], + ['metric'], + ['adhoc_filters'], + ['row_limit'], + [ + { + name: 'sort_by_metric', + config: { + type: 'CheckboxControl', + label: t('Sort by metric'), + description: t( + 'Whether to sort results by the selected metric in descending order.', + ), + }, + }, + ], + ], + }, + { + label: t('Options'), + expanded: true, + controlSetRows: [ + [ + { + name: 'size_from', + config: { + type: 'TextControl', + isInt: true, + label: t('Minimum Font Size'), + renderTrigger: true, + default: 10, + description: t('Font size for the smallest value in the list'), + }, + }, + { + name: 'size_to', + config: { + type: 'TextControl', + isInt: true, + label: t('Maximum Font Size'), + renderTrigger: true, + default: 70, + description: t('Font size for the biggest value in the list'), + }, + }, + ], + [ + { + name: 'rotation', + config: { + type: 'SelectControl', + label: t('Word Rotation'), + choices: [ + ['random', 'random'], + ['flat', 'flat'], + ['square', 'square'], + ], + renderTrigger: true, + default: 'square', + clearable: false, + description: t('Rotation to apply to words in the cloud'), + }, + }, + ], + ['color_scheme'], + ], + }, + ], + controlOverrides: { + series: { + validators: [validateNonEmpty], + clearable: false, + }, + row_limit: { + default: 100, + }, + }, +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/index.ts new file mode 100644 index 000000000000..4b484ccf6d3b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/index.ts @@ -0,0 +1,61 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from '../legacyPlugin/transformProps'; +import buildQuery from './buildQuery'; +import { WordCloudFormData } from '../types'; +import thumbnail from '../images/thumbnail.png'; +import example1 from '../images/Word_Cloud.jpg'; +import example2 from '../images/Word_Cloud_2.jpg'; +import controlPanel from './controlPanel'; +import configureEncodable from '../configureEncodable'; + +configureEncodable(); + +const metadata = new ChartMetadata({ + category: t('Ranking'), + credits: ['https://github.com/jasondavies/d3-cloud'], + description: t( + 'Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.', + ), + exampleGallery: [{ url: example1 }, { url: example2 }], + name: t('Word Cloud'), + tags: [ + t('Aesthetic'), + t('Categorical'), + t('Comparison'), + t('Description'), + t('Density'), + t('Single Metric'), + ], + thumbnail, +}); + +export default class WordCloudChartPlugin extends ChartPlugin { + constructor() { + super({ + buildQuery, + loadChart: () => import('../chart/WordCloud'), + metadata, + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/transformProps.ts new file mode 100644 index 000000000000..02265298e97f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/plugin/transformProps.ts @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ChartProps } from '@superset-ui/core'; +import { WordCloudProps } from '../chart/WordCloud'; +import { WordCloudFormData } from '../types'; + +export default function transformProps(chartProps: ChartProps): WordCloudProps { + const { width, height, formData, queriesData } = chartProps; + const { encoding, rotation } = formData as WordCloudFormData; + + return { + data: queriesData[0].data, + encoding, + height, + rotation, + width, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/types.ts new file mode 100644 index 000000000000..324db1277869 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/src/types.ts @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { QueryFormData } from '@superset-ui/core'; +import { WordCloudVisualProps } from './chart/WordCloud'; + +// FormData for wordcloud contains both common properties of all form data +// and properties specific to wordcloud visualization +export type WordCloudFormData = QueryFormData & + WordCloudVisualProps & { + series: string; + }; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/index.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/index.test.ts new file mode 100644 index 000000000000..bec7a1171d2e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/index.test.ts @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { WordCloudChartPlugin, LegacyWordCloudChartPlugin } from '../src'; + +describe('plugin-chart-word-cloud', () => { + it('exports WordCloudChartPlugin', () => { + expect(WordCloudChartPlugin).toBeDefined(); + }); + it('exports LegacyWordCloudChartPlugin', () => { + expect(LegacyWordCloudChartPlugin).toBeDefined(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/legacyPlugin/transformProps.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/legacyPlugin/transformProps.test.ts new file mode 100644 index 000000000000..53f2dcecb3ab --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/legacyPlugin/transformProps.test.ts @@ -0,0 +1,73 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ChartProps } from '@superset-ui/core'; +import transformProps from '../../src/legacyPlugin/transformProps'; + +describe('WordCloud tranformProps', () => { + const formData = { + colorScheme: 'bnbColors', + datasource: '3__table', + granularity_sqla: 'ds', + metric: 'sum__num', + rotation: 'square', + series: 'name', + sizeFrom: 10, + sizeTo: 70, + }; + const chartProps = new ChartProps({ + formData, + width: 800, + height: 600, + queriesData: [ + { + data: [{ name: 'Hulk', sum__num: 1 }], + }, + ], + }); + + it('should tranform chart props for word cloud viz', () => { + expect(transformProps(chartProps)).toEqual({ + width: 800, + height: 600, + encoding: { + color: { + field: 'name', + scale: { + scheme: 'bnbColors', + }, + type: 'nominal', + }, + fontSize: { + field: 'sum__num', + scale: { + range: [10, 70], + zero: true, + }, + type: 'quantitative', + }, + text: { + field: 'name', + }, + }, + rotation: 'square', + data: [{ name: 'Hulk', sum__num: 1 }], + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/plugin/buildQuery.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/plugin/buildQuery.test.ts new file mode 100644 index 000000000000..bd75f9a5e935 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/plugin/buildQuery.test.ts @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { WordCloudFormData } from '../../src'; +import buildQuery from '../../src/plugin/buildQuery'; + +describe('WordCloud buildQuery', () => { + const formData: WordCloudFormData = { + datasource: '5__table', + granularity_sqla: 'ds', + series: 'foo', + viz_type: 'word_cloud', + }; + + it('should build columns from series in form data', () => { + const queryContext = buildQuery(formData); + const [query] = queryContext.queries; + expect(query.columns).toEqual(['foo']); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/tsconfig.json new file mode 100644 index 000000000000..481ca5b4db93 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/test/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "composite": false, + "emitDeclarationOnly": false, + "noEmit": true, + "rootDir": "." + }, + "extends": "../../../tsconfig.json", + "include": [ + "**/*", + "../types/**/*", + "../../../types/**/*" + ], + "references": [ + { + "path": ".." + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/types/external.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/types/external.d.ts new file mode 100644 index 000000000000..5aff390c72c9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/plugin-chart-word-cloud/types/external.d.ts @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +declare module '*.png'; +declare module '*.jpg'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/CHANGELOG.md new file mode 100644 index 000000000000..866615dbbed2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/CHANGELOG.md @@ -0,0 +1,27 @@ + + +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) + +**Note:** Version bump only for package @superset-ui/preset-chart-xy diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/README.md b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/README.md new file mode 100644 index 000000000000..f76c8698e74e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/README.md @@ -0,0 +1,54 @@ + + +## @superset-ui/preset-chart-xy + +[![Version](https://img.shields.io/npm/v/@superset-ui/preset-chart-xy.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/preset-chart-xy) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-preset-chart-xy&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-preset-chart-xy) + +This plugin provides basic charts on cartesian coordinates (Line, Box Plot) for Superset. + +> DISCLAIMER: It is still under heavy development and the APIs are subject to changes. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import { BoxPlotChartPlugin } from '@superset-ui/preset-chart-xy'; + +new BoxPlotChartPlugin().configure({ key: 'box-plot' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-box-plot) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/package.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/package.json new file mode 100644 index 000000000000..2391c3adc9d8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/package.json @@ -0,0 +1,47 @@ +{ + "name": "@superset-ui/preset-chart-xy", + "version": "0.18.25", + "description": "Superset Chart - XY", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib", + "types" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@data-ui/theme": "^0.0.84", + "@data-ui/xy-chart": "^0.0.84", + "@superset-ui/chart-controls": "0.18.25", + "@superset-ui/core": "0.18.25", + "@vx/axis": "^0.0.198", + "@vx/legend": "^0.0.198", + "@vx/scale": "^0.0.197", + "csstype": "^2.6.3", + "encodable": "^0.7.6", + "lodash": "^4.17.11", + "reselect": "^4.0.0" + }, + "peerDependencies": { + "react": "^16.2" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts new file mode 100644 index 000000000000..6d98bf19e581 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts @@ -0,0 +1,81 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t } from '@superset-ui/core'; +import { + ControlPanelConfig, + formatSelectOptions, + sections, +} from '@superset-ui/chart-controls'; + +const config: ControlPanelConfig = { + controlPanelSections: [ + sections.legacyRegularTime, + { + label: t('Query'), + expanded: true, + controlSetRows: [['metrics'], ['adhoc_filters'], ['groupby'], ['limit']], + }, + { + label: t('Chart Options'), + expanded: true, + controlSetRows: [ + ['color_scheme'], + [ + { + name: 'whisker_options', + config: { + type: 'SelectControl', + freeForm: true, + label: t('Whisker/outlier options'), + default: 'Tukey', + description: t( + 'Determines how whiskers and outliers are calculated.', + ), + choices: formatSelectOptions([ + 'Tukey', + 'Min/max (no outliers)', + '2/98 percentiles', + '9/91 percentiles', + ]), + }, + }, + { + name: 'x_ticks_layout', + config: { + type: 'SelectControl', + label: t('X Tick Layout'), + choices: formatSelectOptions([ + 'auto', + 'flat', + '45°', + 'staggered', + ]), + default: 'auto', + clearable: false, + renderTrigger: true, + description: t('The way the ticks are laid out on the X-axis'), + }, + }, + ], + ], + }, + ], +}; + +export default config; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts new file mode 100644 index 000000000000..5b602806bdd8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { t, ChartMetadata } from '@superset-ui/core'; +import thumbnail from './images/thumbnail.png'; + +export default function createMetadata(useLegacyApi = false) { + return new ChartMetadata({ + category: t('Distribution'), + description: '', + name: t('Box Plot'), + thumbnail, + useLegacyApi, + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/images/thumbnail.png new file mode 100644 index 000000000000..d5eab92b0803 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/index.ts new file mode 100644 index 000000000000..19b4ce1397f1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/index.ts @@ -0,0 +1,36 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartPlugin } from '@superset-ui/core'; +import createMetadata from './createMetadata'; +import transformProps from './transformProps'; +import controlPanel from './controlPanel'; +import configureEncodable from '../configureEncodable'; + +configureEncodable(); + +export default class BoxPlotChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../components/BoxPlot/BoxPlot'), + metadata: createMetadata(), + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/legacy/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/legacy/index.ts new file mode 100644 index 000000000000..9423d9619ef6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/legacy/index.ts @@ -0,0 +1,36 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartPlugin, QueryFormData } from '@superset-ui/core'; +import createMetadata from '../createMetadata'; +import transformProps, { LegacyBoxPlotChartProps } from './transformProps'; +import controlPanel from '../controlPanel'; + +export default class BoxPlotChartPlugin extends ChartPlugin< + QueryFormData, + LegacyBoxPlotChartProps +> { + constructor() { + super({ + loadChart: () => import('../../components/BoxPlot/BoxPlot'), + metadata: createMetadata(true), + transformProps, + controlPanel, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/legacy/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/legacy/transformProps.ts new file mode 100644 index 000000000000..19fe42f27250 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/legacy/transformProps.ts @@ -0,0 +1,122 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { + ChartProps, + LegacyQueryData, + QueryFormData, + QueryFormMetric, +} from '@superset-ui/core'; +import { + RawBoxPlotDataRow, + BoxPlotDataRow, +} from '../../components/BoxPlot/types'; + +export type LegacyBoxPlotFormData = { + groupby?: QueryFormData['groupby']; + metrics?: QueryFormData['metrics']; + colorScheme?: string; +}; + +export type LegacyBoxPlotChartProps = ChartProps & { + formData: LegacyBoxPlotFormData; + queriesData: (LegacyQueryData & { + data?: RawBoxPlotDataRow[]; + })[]; +}; + +export default function transformProps(chartProps: LegacyBoxPlotChartProps) { + const { width, height, datasource, formData, queriesData } = chartProps; + const { verboseMap = {} } = datasource; + const { colorScheme, groupby = [], metrics = [] } = formData; + + const data = (queriesData[0].data || []).map(({ label, values }) => ({ + label, + min: values.whisker_low, + max: values.whisker_high, + firstQuartile: values.Q1, + median: values.Q2, + thirdQuartile: values.Q3, + outliers: values.outliers, + })); + + const xAxisLabel = groupby.join('/'); + + let metric: QueryFormMetric = ''; + if (Array.isArray(metrics)) { + metric = metrics.length > 0 ? metrics[0] : ''; + } else { + metric = metrics; + } + const yAxisLabel = + typeof metric === 'string' ? verboseMap[metric] || metric : metric.label; + + const boxPlotValues = data.reduce((r: number[], e: BoxPlotDataRow) => { + r.push(e.min, e.max, ...e.outliers); + + return r; + }, []); + + const minBoxPlotValue = Math.min(...boxPlotValues); + const maxBoxPlotValue = Math.max(...boxPlotValues); + const valueDomain = [ + minBoxPlotValue - 0.1 * Math.abs(minBoxPlotValue), + maxBoxPlotValue + 0.1 * Math.abs(maxBoxPlotValue), + ]; + + return { + data, + width, + height, + encoding: { + x: { + field: 'label', + type: 'nominal', + scale: { + type: 'band', + paddingInner: 0.15, + paddingOuter: 0.3, + }, + axis: { + title: xAxisLabel, + }, + }, + y: { + field: 'value', + type: 'quantitative', + scale: { + type: 'linear', + domain: valueDomain, + }, + axis: { + title: yAxisLabel, + numTicks: 5, + format: 'SMART_NUMBER', + }, + }, + color: { + field: 'label', + type: 'nominal', + scale: { + scheme: colorScheme, + }, + legend: false, + }, + }, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/transformProps.ts new file mode 100644 index 000000000000..6d0a41747a26 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/BoxPlot/transformProps.ts @@ -0,0 +1,90 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { pick } from 'lodash'; +import { ChartProps } from '@superset-ui/core'; +import { BoxPlotDataRow, RawBoxPlotDataRow } from '../components/BoxPlot/types'; +import { HookProps } from '../components/BoxPlot/BoxPlot'; +import { BoxPlotEncoding } from '../components/BoxPlot/Encoder'; + +export default function transformProps(chartProps: ChartProps) { + const { width, height, formData, queriesData } = chartProps; + const { margin, theme } = formData; + const encoding = formData.encoding as BoxPlotEncoding; + + const data = (queriesData[0].data as RawBoxPlotDataRow[]).map( + ({ label, values }) => ({ + label, + min: values.whisker_low, + max: values.whisker_high, + firstQuartile: values.Q1, + median: values.Q2, + thirdQuartile: values.Q3, + outliers: values.outliers, + }), + ); + + const isHorizontal = encoding.y.type === 'nominal'; + + const boxPlotValues = data.reduce((r: number[], e: BoxPlotDataRow) => { + r.push(e.min, e.max, ...e.outliers); + + return r; + }, []); + + const minBoxPlotValue = Math.min(...boxPlotValues); + const maxBoxPlotValue = Math.max(...boxPlotValues); + const valueDomain = [ + minBoxPlotValue - 0.1 * Math.abs(minBoxPlotValue), + maxBoxPlotValue + 0.1 * Math.abs(maxBoxPlotValue), + ]; + + if (isHorizontal) { + if (encoding.x.scale) { + encoding.x.scale.domain = valueDomain; + } else { + encoding.x.scale = { domain: valueDomain }; + } + } else if (encoding.y.scale) { + encoding.y.scale.domain = valueDomain; + } else { + encoding.y.scale = { domain: valueDomain }; + } + + const hooks = chartProps.hooks as HookProps; + + const fieldsFromHooks: (keyof HookProps)[] = [ + 'TooltipRenderer', + 'LegendRenderer', + 'LegendGroupRenderer', + 'LegendItemRenderer', + 'LegendItemMarkRenderer', + 'LegendItemLabelRenderer', + ]; + + return { + data, + width, + height, + margin, + theme, + encoding, + ...pick(hooks, fieldsFromHooks), + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/ChartFormData.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/ChartFormData.ts new file mode 100644 index 000000000000..e9d6749ad606 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/ChartFormData.ts @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { QueryFormData } from '@superset-ui/core'; +import { FormDataProps } from '../components/Line/Line'; + +type CombinedFormData = QueryFormData & FormDataProps; + +// eslint-disable-next-line no-undef +export default CombinedFormData; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/buildQuery.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/buildQuery.ts new file mode 100644 index 000000000000..7882451267b1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/buildQuery.ts @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { buildQueryContext } from '@superset-ui/core'; +import ChartFormData from './ChartFormData'; +import { lineEncoderFactory } from '../components/Line/Encoder'; + +export default function buildQuery(formData: ChartFormData) { + const queryContext = buildQueryContext(formData); + const { encoding } = formData; + const encoder = lineEncoderFactory.create(encoding); + + queryContext.queries.forEach(query => { + const q = query; + q.groupby = encoder.getGroupBys(); + // Enforce time-series mode + q.is_timeseries = true; + }); + + return queryContext; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/createMetadata.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/createMetadata.ts new file mode 100644 index 000000000000..1567210cf747 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/createMetadata.ts @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { t, ChartMetadata } from '@superset-ui/core'; +import thumbnail from './images/thumbnail.png'; + +export default function createMetadata(useLegacyApi = false) { + return new ChartMetadata({ + description: '', + name: t('Line Chart'), + thumbnail, + useLegacyApi, + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/images/thumbnail.png new file mode 100644 index 000000000000..67debacc654f Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/images/thumbnailLarge.png new file mode 100644 index 000000000000..67debacc654f Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/index.ts new file mode 100644 index 000000000000..d7d8fb7cdb1c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/index.ts @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import createMetadata from './createMetadata'; +import buildQuery from './buildQuery'; +import ChartFormData from './ChartFormData'; + +export default class LineChartPlugin extends ChartPlugin { + constructor() { + super({ + buildQuery, + loadChart: () => import('../components/Line/Line'), + metadata: createMetadata(), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/legacy/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/legacy/index.ts new file mode 100644 index 000000000000..4b0ea28c8381 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/legacy/index.ts @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import createMetadata from '../createMetadata'; + +export default class LineChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../../components/Line/Line'), + metadata: createMetadata(true), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/legacy/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/legacy/transformProps.ts new file mode 100644 index 000000000000..8fbaaf4cec20 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/legacy/transformProps.ts @@ -0,0 +1,83 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ChartProps } from '@superset-ui/core'; +import { flatMap } from 'lodash'; + +interface DataRow { + key: string[]; + values: { + x: number; + y: number; + }[]; +} + +export default function transformProps(chartProps: ChartProps) { + const { width, height, formData, queriesData } = chartProps; + const { colorScheme, xAxisLabel, xAxisFormat, yAxisLabel, yAxisFormat } = + formData; + const data = queriesData[0].data as DataRow[]; + + return { + data: flatMap( + data.map((row: DataRow) => + row.values.map(v => ({ + ...v, + name: row.key[0], + })), + ), + ), + width, + height, + encoding: { + x: { + field: 'x', + type: 'temporal', + format: xAxisFormat, + scale: { + type: 'time', + }, + axis: { + orient: 'bottom', + title: xAxisLabel, + }, + }, + y: { + field: 'y', + type: 'quantitative', + format: yAxisFormat, + scale: { + type: 'linear', + }, + axis: { + orient: 'left', + title: yAxisLabel, + }, + }, + stroke: { + field: 'name', + type: 'nominal', + scale: { + scheme: colorScheme, + }, + legend: true, + }, + }, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/transformProps.ts new file mode 100644 index 000000000000..9a42617a60a0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/Line/transformProps.ts @@ -0,0 +1,56 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { pick } from 'lodash'; +import { ChartProps } from '@superset-ui/core'; +import { HookProps, FormDataProps } from '../components/Line/Line'; + +export default function transformProps(chartProps: ChartProps) { + const { width, height, queriesData } = chartProps; + const { data } = queriesData[0]; + const formData = chartProps.formData as FormDataProps; + const hooks = chartProps.hooks as HookProps; + + /** + * Use type-check to make sure the field names are expected ones + * and only pick these fields to pass to the chart. + */ + const fieldsFromFormData: (keyof FormDataProps)[] = [ + 'encoding', + 'margin', + 'theme', + ]; + + const fieldsFromHooks: (keyof HookProps)[] = [ + 'TooltipRenderer', + 'LegendRenderer', + 'LegendGroupRenderer', + 'LegendItemRenderer', + 'LegendItemMarkRenderer', + 'LegendItemLabelRenderer', + ]; + + return { + data, + width, + height, + ...pick(formData, fieldsFromFormData), + ...pick(hooks, fieldsFromHooks), + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/createMetadata.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/createMetadata.ts new file mode 100644 index 000000000000..a4c0f717c701 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/createMetadata.ts @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { t, ChartMetadata } from '@superset-ui/core'; +import thumbnail from './images/thumbnail.png'; + +export default function createMetadata(useLegacyApi = false) { + return new ChartMetadata({ + description: '', + name: t('Scatter Plot'), + thumbnail, + useLegacyApi, + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/images/thumbnail.png new file mode 100644 index 000000000000..cd81fbd3899e Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/index.ts new file mode 100644 index 000000000000..b9ac3ba5f4bd --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/index.ts @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ChartPlugin } from '@superset-ui/core'; +import createMetadata from './createMetadata'; +import transformProps from './transformProps'; + +export default class LineChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../components/ScatterPlot/ScatterPlot'), + metadata: createMetadata(), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/legacy/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/legacy/index.ts new file mode 100644 index 000000000000..a70f2a576004 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/legacy/index.ts @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ChartPlugin } from '@superset-ui/core'; +import createMetadata from '../createMetadata'; +import transformProps from './transformProps'; + +export default class LineChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../../components/ScatterPlot/ScatterPlot'), + metadata: createMetadata(true), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/legacy/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/legacy/transformProps.ts new file mode 100644 index 000000000000..c60f038404e4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/legacy/transformProps.ts @@ -0,0 +1,116 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ChartProps } from '@superset-ui/core'; +import { flatMap } from 'lodash'; + +interface Value { + [key: string]: unknown; +} + +type Key = keyof Value; + +interface DataRow { + key: string[]; + values: Value[]; +} + +export default function transformProps(chartProps: ChartProps) { + const { width, height, formData, queriesData } = chartProps; + const { + colorScheme, + maxBubbleSize, + showLegend, + xAxisFormat, + xAxisLabel, + // TODO: These fields are not supported yet + // xAxisShowminmax, + // xLogScale, + yAxisLabel, + yAxisFormat, + // TODO: These fields are not supported yet + // yAxisShowminmax, + // yLogScale, + } = formData; + const x = formData.x as Key; + const y = formData.y as Key; + const series = formData.series as Key; + const size = formData.size as Key; + const entity = formData.entity as Key; + const data = queriesData[0].data as DataRow[]; + + return { + data: flatMap( + data.map((row: DataRow) => + row.values.map(v => ({ + [x]: v[x], + [y]: v[y], + [series]: v[series], + [size]: v[size], + [entity]: v[entity], + })), + ), + ), + width, + height, + encoding: { + x: { + field: x, + type: 'quantitive', + format: xAxisFormat, + scale: { + type: 'linear', + }, + axis: { + orient: 'bottom', + title: xAxisLabel, + }, + }, + y: { + field: y, + type: 'quantitative', + format: yAxisFormat, + scale: { + type: 'linear', + }, + axis: { + orient: 'left', + title: yAxisLabel, + }, + }, + size: { + field: size, + type: 'quantitative', + scale: { + type: 'linear', + range: [0, maxBubbleSize], + }, + }, + fill: { + field: series, + type: 'nominal', + scale: { + scheme: colorScheme, + }, + legend: showLegend, + }, + group: [{ field: entity }], + }, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/transformProps.ts new file mode 100644 index 000000000000..727b88bfd278 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/ScatterPlot/transformProps.ts @@ -0,0 +1,48 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { pick } from 'lodash'; +import { ChartProps } from '@superset-ui/core'; +import { HookProps } from '../components/ScatterPlot/ScatterPlot'; + +export default function transformProps(chartProps: ChartProps) { + const { width, height, formData, queriesData } = chartProps; + const { encoding, margin, theme } = formData; + const { data } = queriesData[0]; + const hooks = chartProps.hooks as HookProps; + + const fieldsFromHooks: (keyof HookProps)[] = [ + 'TooltipRenderer', + 'LegendRenderer', + 'LegendGroupRenderer', + 'LegendItemRenderer', + 'LegendItemMarkRenderer', + 'LegendItemLabelRenderer', + ]; + + return { + data, + width, + height, + encoding, + margin, + theme, + ...pick(hooks, fieldsFromHooks), + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/BoxPlot/BoxPlot.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/BoxPlot/BoxPlot.tsx new file mode 100644 index 000000000000..f4825c369bb2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/BoxPlot/BoxPlot.tsx @@ -0,0 +1,167 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { BoxPlotSeries, XYChart } from '@data-ui/xy-chart'; +import { chartTheme, ChartTheme } from '@data-ui/theme'; +import { WithLegend, Margin, Dimension } from '@superset-ui/core'; +import { Dataset, PlainObject, isFieldDef } from 'encodable'; +import DefaultTooltipRenderer from './DefaultTooltipRenderer'; +import { + BoxPlotEncodingConfig, + BoxPlotEncoding, + BoxPlotEncoder, + boxPlotEncoderFactory, +} from './Encoder'; +import createMarginSelector, { + DEFAULT_MARGIN, +} from '../../utils/createMarginSelector'; +import { BoxPlotDataRow } from './types'; +import convertScaleToDataUIScale from '../../utils/convertScaleToDataUIScaleShape'; +import createXYChartLayoutWithTheme from '../../utils/createXYChartLayoutWithTheme'; +import createRenderLegend from '../legend/createRenderLegend'; +import { LegendHooks } from '../legend/types'; + +export interface TooltipProps { + datum: BoxPlotDataRow; + color: string; + encoder: BoxPlotEncoder; +} + +const defaultProps = { + className: '', + margin: DEFAULT_MARGIN, + encoding: {}, + theme: chartTheme, + TooltipRenderer: DefaultTooltipRenderer, +} as const; + +export type HookProps = { + TooltipRenderer?: React.ComponentType; +} & LegendHooks; + +type Props = { + className?: string; + width: string | number; + height: string | number; + margin?: Margin; + encoding?: Partial; + data: Dataset; + theme?: ChartTheme; +} & HookProps & + Readonly; + +export default class BoxPlot extends React.PureComponent { + private createEncoder = boxPlotEncoderFactory.createSelector(); + + private createMargin = createMarginSelector(); + + static defaultProps = defaultProps; + + renderChart = (dim: Dimension) => { + const { width, height } = dim; + const { data, margin, theme, TooltipRenderer, encoding } = this.props; + const encoder = this.createEncoder(encoding); + const { channels } = encoder; + + const isHorizontal = + isFieldDef(channels.y.definition) && + channels.y.definition.type === 'nominal'; + + encoder.setDomainFromDataset(data); + + const layout = createXYChartLayoutWithTheme({ + width, + height, + margin: this.createMargin(margin), + theme, + xEncoder: channels.x, + yEncoder: channels.y, + }); + + return layout.renderChartWithFrame((chartDim: Dimension) => ( + } + theme={theme} + // eslint-disable-next-line @typescript-eslint/no-explicit-any + xScale={convertScaleToDataUIScale(channels.x.definition.scale as any)} + // eslint-disable-next-line @typescript-eslint/no-explicit-any + yScale={convertScaleToDataUIScale(channels.y.definition.scale as any)} + > + {layout.renderXAxis()} + {layout.renderYAxis()} + ({ + ...row, + y: channels.y.getValueFromDatum(row), + })) + : data.map(row => ({ + ...row, + x: channels.x.getValueFromDatum(row), + })) + } + fill={(datum: PlainObject) => + channels.color.encodeDatum(datum, '#55acee') + } + fillOpacity={0.4} + stroke={(datum: PlainObject) => channels.color.encodeDatum(datum)} + strokeWidth={1} + widthRatio={0.6} + horizontal={isHorizontal} + /> + + )); + }; + + render() { + const { className, data, encoding, width, height } = this.props; + + return ( + + ); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/BoxPlot/DefaultTooltipRenderer.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/BoxPlot/DefaultTooltipRenderer.tsx new file mode 100644 index 000000000000..8585dd3bc38d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/BoxPlot/DefaultTooltipRenderer.tsx @@ -0,0 +1,69 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { isDefined, TooltipFrame, TooltipTable } from '@superset-ui/core'; +import { BoxPlotEncoder } from './Encoder'; +import { BoxPlotDataRow } from './types'; + +export default function DefaultTooltipRenderer({ + datum, + color, + encoder, +}: { + datum: BoxPlotDataRow; + color: string; + encoder: BoxPlotEncoder; +}) { + const { label, min, max, median, firstQuartile, thirdQuartile, outliers } = + datum; + const { channels } = encoder; + + const { formatValue } = channels.y; + + const data: { key: string; valueColumn: number | string }[] = []; + if (isDefined(min)) { + data.push({ key: 'Min', valueColumn: formatValue(min) }); + } + if (isDefined(max)) { + data.push({ key: 'Max', valueColumn: formatValue(max) }); + } + if (isDefined(median)) { + data.push({ key: 'Median', valueColumn: formatValue(median) }); + } + if (isDefined(firstQuartile)) { + data.push({ key: '1st Quartile', valueColumn: formatValue(firstQuartile) }); + } + if (isDefined(thirdQuartile)) { + data.push({ key: '3rd Quartile', valueColumn: formatValue(thirdQuartile) }); + } + if (isDefined(outliers) && outliers.length > 0) { + data.push({ key: '# Outliers', valueColumn: outliers.length }); + } + + return ( + +
+ {label} +
+ {data.length > 0 &&
} + +
+ ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/BoxPlot/Encoder.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/BoxPlot/Encoder.ts new file mode 100644 index 000000000000..ff33c8090446 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/BoxPlot/Encoder.ts @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { createEncoderFactory, Encoder, DeriveEncoding } from 'encodable'; + +export type BoxPlotEncodingConfig = { + x: ['XBand', number]; + y: ['YBand', number]; + color: ['Color', string]; +}; + +export const boxPlotEncoderFactory = + createEncoderFactory({ + channelTypes: { + x: 'XBand', + y: 'YBand', + color: 'Color', + }, + defaultEncoding: { + x: { field: 'x', type: 'nominal' }, + y: { field: 'y', type: 'quantitative' }, + color: { value: '#222' }, + }, + }); + +export type BoxPlotEncoding = DeriveEncoding; + +export type BoxPlotEncoder = Encoder; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/BoxPlot/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/BoxPlot/types.ts new file mode 100644 index 000000000000..f4646661ec77 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/BoxPlot/types.ts @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export interface RawBoxPlotDataRow { + label: string; + values: { + Q1: number; + Q2: number; + Q3: number; + outliers: number[]; + // eslint-disable-next-line camelcase + whisker_high: number; + // eslint-disable-next-line camelcase + whisker_low: number; + }; +} + +export interface BoxPlotDataRow { + label: string; + min: number; + max: number; + firstQuartile: number; + median: number; + thirdQuartile: number; + outliers: number[]; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/Line/DefaultLegendItemMarkRenderer.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/Line/DefaultLegendItemMarkRenderer.tsx new file mode 100644 index 000000000000..091cfa164769 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/Line/DefaultLegendItemMarkRenderer.tsx @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { CSSProperties } from 'react'; +import { LegendItemMarkRendererProps } from '../legend/types'; +import { LineEncodingConfig } from './Encoder'; + +const MARK_WIDTH = 12; +const MARK_HEIGHT = 8; + +const MARK_STYLE: CSSProperties = { display: 'inline-block' }; + +export default function DefaultLegendItemMarkRenderer({ + item, +}: LegendItemMarkRendererProps) { + return ( + + + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/Line/DefaultTooltipRenderer.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/Line/DefaultTooltipRenderer.tsx new file mode 100644 index 000000000000..ea061ec14b36 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/Line/DefaultTooltipRenderer.tsx @@ -0,0 +1,71 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { TooltipFrame, TooltipTable } from '@superset-ui/core'; +import { chartTheme } from '@data-ui/theme'; +import { TooltipProps } from './Line'; + +const MARK_STYLE = { marginRight: 4 }; + +export default function DefaultTooltipRenderer({ + allSeries, + datum, + encoder, + series = {}, + theme = chartTheme, +}: TooltipProps) { + return ( + + <> +
+ {encoder.channels.x.formatValue(datum.x)} +
+
+ {series && ( + series[key]) + .concat() + .sort((a, b) => series[b.key].y - series[a.key].y) + .map(({ key, stroke, strokeDasharray, strokeWidth }) => ({ + key, + keyColumn: ( + <> + + + + {series[key] === datum ? {key} : key} + + ), + valueColumn: encoder.channels.y.formatValue(series[key].y), + }))} + /> + )} + +
+ ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/Line/Encoder.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/Line/Encoder.ts new file mode 100644 index 000000000000..a2b3aaf58e84 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/Line/Encoder.ts @@ -0,0 +1,59 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import Encoder from 'encodable/lib/encoders/Encoder'; +import createEncoderFactory from 'encodable/lib/encoders/createEncoderFactory'; +import { + DeriveEncoding, + DeriveChannelOutputs, +} from 'encodable/lib/types/Encoding'; + +export type LineEncodingConfig = { + x: ['X', number]; + y: ['Y', number]; + fill: ['Category', boolean]; + stroke: ['Color', string]; + strokeDasharray: ['Category', string]; + strokeWidth: ['Numeric', number]; +}; + +export const lineEncoderFactory = createEncoderFactory({ + channelTypes: { + x: 'X', + y: 'Y', + fill: 'Category', + stroke: 'Color', + strokeDasharray: 'Category', + strokeWidth: 'Numeric', + }, + defaultEncoding: { + x: { field: 'x', type: 'quantitative' }, + y: { field: 'y', type: 'quantitative' }, + fill: { value: false, legend: false }, + stroke: { value: '#222' }, + strokeDasharray: { value: '' }, + strokeWidth: { value: 1 }, + }, +}); + +export type LineEncoding = DeriveEncoding; + +export type LineEncoder = Encoder; + +export type LineChannelOutputs = DeriveChannelOutputs; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/Line/Line.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/Line/Line.tsx new file mode 100644 index 000000000000..6449204ec48f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/Line/Line.tsx @@ -0,0 +1,321 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { PureComponent } from 'react'; +import { kebabCase, groupBy, flatMap, uniqueId, values } from 'lodash'; +import { + AreaSeries, + LinearGradient, + LineSeries, + XYChart, + CrossHair, + WithTooltip, +} from '@data-ui/xy-chart'; +import { chartTheme } from '@data-ui/theme'; +import { WithLegend, Margin, Dimension } from '@superset-ui/core'; +import { createSelector } from 'reselect'; +import { Dataset, PlainObject } from 'encodable'; +import DefaultTooltipRenderer from './DefaultTooltipRenderer'; +import createMarginSelector, { + DEFAULT_MARGIN, +} from '../../utils/createMarginSelector'; +import convertScaleToDataUIScale from '../../utils/convertScaleToDataUIScaleShape'; +import createXYChartLayoutWithTheme from '../../utils/createXYChartLayoutWithTheme'; +import createRenderLegend from '../legend/createRenderLegend'; +import { LegendHooks } from '../legend/types'; +import { + lineEncoderFactory, + LineEncoder, + LineEncoding, + LineEncodingConfig, + LineChannelOutputs, +} from './Encoder'; +import DefaultLegendItemMarkRenderer from './DefaultLegendItemMarkRenderer'; + +export interface TooltipProps { + encoder: LineEncoder; + allSeries: Series[]; + datum: SeriesValue; + series: { + [key: string]: SeriesValue; + }; + theme: typeof chartTheme; +} + +const defaultProps = { + className: '', + encoding: {}, + LegendItemMarkRenderer: DefaultLegendItemMarkRenderer, + margin: DEFAULT_MARGIN, + theme: chartTheme, + TooltipRenderer: DefaultTooltipRenderer, +}; + +/** Part of formData that is needed for rendering logic in this file */ +export type FormDataProps = { + margin?: Margin; + theme?: typeof chartTheme; + encoding?: Partial; +}; + +export type HookProps = { + TooltipRenderer?: React.ComponentType; +} & LegendHooks; + +type Props = { + className?: string; + width: string | number; + height: string | number; + data: Dataset; +} & HookProps & + FormDataProps & + Readonly; + +export interface Series { + key: string; + fill: LineChannelOutputs['fill']; + stroke: LineChannelOutputs['stroke']; + strokeDasharray: LineChannelOutputs['strokeDasharray']; + strokeWidth: LineChannelOutputs['strokeWidth']; + values: SeriesValue[]; +} + +export interface SeriesValue { + x: number | Date; + y: number; + data: PlainObject; + parent: Series; +} + +const CIRCLE_STYLE = { strokeWidth: 1.5 }; + +export default class LineChart extends PureComponent { + private createEncoder = lineEncoderFactory.createSelector(); + + private createAllSeries = createSelector( + (input: { encoder: LineEncoder; data: Dataset }) => input.encoder, + input => input.data, + (encoder, data) => { + const { channels } = encoder; + const fieldNames = encoder.getGroupBys(); + + const groups = groupBy(data, row => + fieldNames.map(f => `${f}=${row[f]}`).join(','), + ); + + const allSeries = values(groups).map(seriesData => { + const firstDatum = seriesData[0]; + // eslint-disable-next-line @typescript-eslint/no-unsafe-return + const key = fieldNames.map(f => firstDatum[f]).join(','); + const series: Series = { + key: key.length === 0 ? channels.y.getTitle() : key, + fill: channels.fill.encodeDatum(firstDatum, false), + stroke: channels.stroke.encodeDatum(firstDatum, '#222'), + strokeDasharray: channels.strokeDasharray.encodeDatum(firstDatum, ''), + strokeWidth: channels.strokeWidth.encodeDatum(firstDatum, 1), + values: [], + }; + + series.values = seriesData + .map(v => ({ + x: channels.x.getValueFromDatum(v), + y: channels.y.getValueFromDatum(v), + data: v, + parent: series, + })) + .sort((a: SeriesValue, b: SeriesValue) => { + const aTime = a.x instanceof Date ? a.x.getTime() : a.x; + const bTime = b.x instanceof Date ? b.x.getTime() : b.x; + + return aTime - bTime; + }); + + return series; + }); + + return allSeries; + }, + ); + + private createMargin = createMarginSelector(); + + static defaultProps = defaultProps; + + // eslint-disable-next-line class-methods-use-this + renderSeries(allSeries: Series[]) { + const filledSeries = flatMap( + allSeries + .filter(({ fill }) => fill) + .map(series => { + const gradientId = uniqueId(kebabCase(`gradient-${series.key}`)); + + return [ + , + , + ]; + }), + ); + + const unfilledSeries = allSeries + .filter(({ fill }) => !fill) + .map(series => ( + + )); + + return filledSeries.concat(unfilledSeries); + } + + renderChart = (dim: Dimension) => { + const { width, height } = dim; + const { data, margin, theme, TooltipRenderer, encoding } = this.props; + + const encoder = this.createEncoder(encoding); + const { channels } = encoder; + + encoder.setDomainFromDataset(data); + + const allSeries = this.createAllSeries({ encoder, data }); + + const layout = createXYChartLayoutWithTheme({ + width, + height, + margin: this.createMargin(margin), + theme, + xEncoder: channels.x, + yEncoder: channels.y, + }); + + return layout.renderChartWithFrame((chartDim: Dimension) => ( + ( + + )} + > + {({ + onMouseLeave, + onMouseMove, + tooltipData, + }: { + onMouseLeave: (...args: unknown[]) => void; + onMouseMove: (...args: unknown[]) => void; + tooltipData: { datum: { y?: number } }; + }) => ( + + {layout.renderXAxis()} + {layout.renderYAxis()} + {this.renderSeries(allSeries)} + + d.y === tooltipData.datum.y ? d.parent.stroke : '#fff' + } + circleSize={(d: SeriesValue) => + d.y === tooltipData.datum.y ? 6 : 4 + } + circleStroke={(d: SeriesValue) => + d.y === tooltipData.datum.y ? '#fff' : d.parent.stroke + } + circleStyles={CIRCLE_STYLE} + stroke="#ccc" + /> + + )} + + )); + }; + + render() { + const { className, data, width, height, encoding } = this.props; + + return ( + + ); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/ScatterPlot/DefaultTooltipRenderer.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/ScatterPlot/DefaultTooltipRenderer.tsx new file mode 100644 index 000000000000..51cfdea25ab4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/ScatterPlot/DefaultTooltipRenderer.tsx @@ -0,0 +1,78 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { TooltipFrame, TooltipTable } from '@superset-ui/core'; +import { isFieldDef } from 'encodable'; +import { TooltipProps } from './ScatterPlot'; + +export default function DefaultTooltipRenderer({ + datum, + encoder, +}: TooltipProps) { + const { channels } = encoder; + const { x, y, size, fill, stroke } = channels; + + const tooltipRows = [ + { key: 'x', keyColumn: x.getTitle(), valueColumn: x.formatDatum(datum) }, + { key: 'y', keyColumn: y.getTitle(), valueColumn: y.formatDatum(datum) }, + ]; + + if (isFieldDef(fill.definition)) { + tooltipRows.push({ + key: 'fill', + keyColumn: fill.getTitle(), + valueColumn: fill.formatDatum(datum), + }); + } + if (isFieldDef(stroke.definition)) { + tooltipRows.push({ + key: 'stroke', + keyColumn: stroke.getTitle(), + valueColumn: stroke.formatDatum(datum), + }); + } + if (isFieldDef(size.definition)) { + tooltipRows.push({ + key: 'size', + keyColumn: size.getTitle(), + valueColumn: size.formatDatum(datum), + }); + } + channels.group.forEach(g => { + tooltipRows.push({ + key: `${g.name}`, + keyColumn: g.getTitle(), + valueColumn: g.formatDatum(datum), + }); + }); + channels.tooltip.forEach(g => { + tooltipRows.push({ + key: `${g.name}`, + keyColumn: g.getTitle(), + valueColumn: g.formatDatum(datum), + }); + }); + + return ( + + + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/ScatterPlot/Encoder.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/ScatterPlot/Encoder.ts new file mode 100644 index 000000000000..bc860f4e8213 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/ScatterPlot/Encoder.ts @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + createEncoderFactory, + Encoder, + DeriveEncoding, + DeriveChannelOutputs, +} from 'encodable'; + +export type ScatterPlotEncodingConfig = { + x: ['X', number]; + y: ['Y', number]; + fill: ['Color', string]; + group: ['Category', string, 'multiple']; + size: ['Numeric', number]; + stroke: ['Color', string]; + tooltip: ['Text', string, 'multiple']; +}; + +export const scatterPlotEncoderFactory = + createEncoderFactory({ + channelTypes: { + x: 'X', + y: 'Y', + fill: 'Color', + group: 'Category', + size: 'Numeric', + stroke: 'Color', + tooltip: 'Text', + }, + defaultEncoding: { + x: { field: 'x', type: 'quantitative' }, + y: { field: 'y', type: 'quantitative' }, + fill: { value: '#222' }, + group: [], + size: { value: 5 }, + stroke: { value: 'none' }, + tooltip: [], + }, + }); + +export type ScatterPlotEncoding = DeriveEncoding; + +export type ScatterPlotEncoder = Encoder; + +export type ScatterPlotChannelOutputs = + DeriveChannelOutputs; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/ScatterPlot/ScatterPlot.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/ScatterPlot/ScatterPlot.tsx new file mode 100644 index 000000000000..2df0d688d5ea --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/ScatterPlot/ScatterPlot.tsx @@ -0,0 +1,149 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { PureComponent } from 'react'; +import { XYChart, PointSeries } from '@data-ui/xy-chart'; +import { chartTheme, ChartTheme } from '@data-ui/theme'; +import { WithLegend, Margin, Dimension } from '@superset-ui/core'; +import { isFieldDef, Dataset, PlainObject } from 'encodable'; + +import { + scatterPlotEncoderFactory, + ScatterPlotEncoder, + ScatterPlotEncodingConfig, + ScatterPlotEncoding, +} from './Encoder'; +import createMarginSelector, { + DEFAULT_MARGIN, +} from '../../utils/createMarginSelector'; +import DefaultTooltipRenderer from './DefaultTooltipRenderer'; +import convertScaleToDataUIScale from '../../utils/convertScaleToDataUIScaleShape'; +import createXYChartLayoutWithTheme from '../../utils/createXYChartLayoutWithTheme'; +import createRenderLegend from '../legend/createRenderLegend'; +import { LegendHooks } from '../legend/types'; + +export interface TooltipProps { + datum: PlainObject; + encoder: ScatterPlotEncoder; +} + +const defaultProps = { + className: '', + margin: DEFAULT_MARGIN, + encoding: {}, + theme: chartTheme, + TooltipRenderer: DefaultTooltipRenderer, +} as const; + +export type HookProps = { + TooltipRenderer?: React.ComponentType; +} & LegendHooks; + +type Props = { + className?: string; + width: string | number; + height: string | number; + margin?: Margin; + data: Dataset; + encoding?: Partial; + theme?: ChartTheme; +} & HookProps & + Readonly; + +export default class ScatterPlot extends PureComponent { + private createEncoder = scatterPlotEncoderFactory.createSelector(); + + private createMargin = createMarginSelector(); + + static defaultProps = defaultProps; + + renderChart = (dim: Dimension) => { + const { width, height } = dim; + const { data, margin, theme, TooltipRenderer, encoding } = this.props; + const encoder = this.createEncoder(encoding); + const { channels } = encoder; + + encoder.setDomainFromDataset(data); + + const encodedData = data.map(d => ({ + x: channels.x.getValueFromDatum(d), + y: channels.y.getValueFromDatum(d), + ...d, + })); + + const layout = createXYChartLayoutWithTheme({ + width, + height, + margin: this.createMargin(margin), + theme, + xEncoder: channels.x, + yEncoder: channels.y, + }); + + return layout.renderChartWithFrame((chartDim: Dimension) => ( + ( + + )} + theme={theme} + // eslint-disable-next-line @typescript-eslint/no-explicit-any + xScale={convertScaleToDataUIScale(channels.x.definition.scale as any)} + // eslint-disable-next-line @typescript-eslint/no-explicit-any + yScale={convertScaleToDataUIScale(channels.y.definition.scale as any)} + > + {layout.renderXAxis()} + {layout.renderYAxis()} + channels.fill.encodeDatum(d)} + fillOpacity={0.5} + stroke={(d: PlainObject) => channels.stroke.encodeDatum(d)} + size={(d: PlainObject) => channels.size.encodeDatum(d)} + /> + + )); + }; + + render() { + const { className, data, width, height, encoding } = this.props; + + return ( + + ); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/legend/DefaultLegend.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/legend/DefaultLegend.tsx new file mode 100644 index 000000000000..7cf623c5e442 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/legend/DefaultLegend.tsx @@ -0,0 +1,71 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { CSSProperties, PureComponent } from 'react'; +import { EncodingConfig } from 'encodable'; +import { LegendRendererProps } from './types'; +import DefaultLegendGroup from './DefaultLegendGroup'; + +const LEGEND_CONTAINER_STYLE: CSSProperties = { + display: 'flex', + flexBasis: 'auto', + flexGrow: 1, + flexShrink: 1, + maxHeight: 100, + overflowY: 'auto', + position: 'relative', +}; + +export type Props = LegendRendererProps; + +export default class DefaultLegend< + Config extends EncodingConfig, +> extends PureComponent> { + render() { + const { + groups, + LegendGroupRenderer = DefaultLegendGroup, + LegendItemRenderer, + LegendItemMarkRenderer, + LegendItemLabelRenderer, + style, + } = this.props; + + const combinedStyle = + typeof style === 'undefined' + ? LEGEND_CONTAINER_STYLE + : { ...LEGEND_CONTAINER_STYLE, ...style }; + + return ( +
+ {groups + .filter(group => 'items' in group && group.items.length > 0) + .map(group => ( + + ))} +
+ ); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/legend/DefaultLegendGroup.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/legend/DefaultLegendGroup.tsx new file mode 100644 index 000000000000..e63ff9886a4a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/legend/DefaultLegendGroup.tsx @@ -0,0 +1,65 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { CSSProperties } from 'react'; +import { EncodingConfig } from 'encodable'; +import { LegendGroupRendererProps } from './types'; +import DefaultLegendItem from './DefaultLegendItem'; + +const LEGEND_GROUP_STYLE: CSSProperties = { + display: 'flex', + flexBasis: 'auto', + flexDirection: 'row', + flexGrow: 1, + flexShrink: 1, + flexWrap: 'wrap', + fontSize: '0.8em', + justifyContent: 'flex-end', + padding: 8, +}; + +export default function DefaultLegendGroupRenderer< + Config extends EncodingConfig, +>({ + group, + ItemRenderer = DefaultLegendItem, + ItemMarkRenderer, + ItemLabelRenderer, + style, +}: LegendGroupRendererProps) { + const combinedStyle = + typeof style === 'undefined' + ? LEGEND_GROUP_STYLE + : { ...LEGEND_GROUP_STYLE, ...style }; + + return ( +
+ {'items' in group && + group.items.map(item => ( + + ))} +
+ ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/legend/DefaultLegendItem.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/legend/DefaultLegendItem.tsx new file mode 100644 index 000000000000..9d73ddea1931 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/legend/DefaultLegendItem.tsx @@ -0,0 +1,70 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { CSSProperties } from 'react'; +import { LegendItem, LegendLabel } from '@vx/legend'; +import { EncodingConfig } from 'encodable'; +import { LegendItemRendererProps } from './types'; + +const MARK_SIZE = 8; + +const MARK_STYLE: CSSProperties = { display: 'inline-block' }; + +export default function DefaultLegendItem({ + group, + item, + MarkRenderer, + LabelRenderer, +}: LegendItemRendererProps) { + return ( + + {typeof MarkRenderer === 'undefined' ? ( + + + + ) : ( + + )} + {typeof LabelRenderer === 'undefined' ? ( + + {item.input} + + ) : ( + + )} + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/legend/createRenderLegend.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/legend/createRenderLegend.tsx new file mode 100644 index 000000000000..d1a45db97c1a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/legend/createRenderLegend.tsx @@ -0,0 +1,51 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { Encoder, EncodingConfig, Dataset } from 'encodable'; +import { LegendHooks } from './types'; +import DefaultLegend from './DefaultLegend'; + +export default function createRenderLegend( + encoder: Encoder, + data: Dataset, + props: LegendHooks, +) { + if (encoder.hasLegend()) { + const { + LegendRenderer = DefaultLegend, + LegendGroupRenderer, + LegendItemRenderer, + LegendItemLabelRenderer, + LegendItemMarkRenderer, + } = props; + + return () => ( + + ); + } + + return undefined; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/legend/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/legend/types.ts new file mode 100644 index 000000000000..3d04d20371e3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/components/legend/types.ts @@ -0,0 +1,80 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { CSSProperties } from 'react'; +import { + EncodingConfig, + LegendGroupInformation, + LegendItemInformation, +} from 'encodable'; + +export type LegendItemMarkRendererProps = { + group: LegendGroupInformation; + item: LegendItemInformation; +}; + +export type LegendItemMarkRendererType = + React.ComponentType>; + +export type LegendItemLabelRendererProps = + LegendItemMarkRendererProps; + +export type LegendItemLabelRendererType = + React.ComponentType>; + +export type LegendItemRendererProps = { + group: LegendGroupInformation; + item: LegendItemInformation; + MarkRenderer?: LegendItemMarkRendererType; + LabelRenderer?: LegendItemLabelRendererType; +}; + +export type LegendItemRendererType = + React.ComponentType>; + +export type LegendGroupRendererProps = { + group: LegendGroupInformation; + ItemRenderer?: LegendItemRendererType; + ItemMarkRenderer?: LegendItemMarkRendererType; + ItemLabelRenderer?: LegendItemLabelRendererType; + style?: CSSProperties; +}; + +export type LegendGroupRendererType = + React.ComponentType>; + +export type LegendRendererProps = { + groups: LegendGroupInformation[]; + LegendGroupRenderer?: LegendGroupRendererType; + LegendItemRenderer?: LegendItemRendererType; + LegendItemMarkRenderer?: LegendItemMarkRendererType; + LegendItemLabelRenderer?: LegendItemLabelRendererType; + style?: CSSProperties; +}; + +export type LegendRendererType = + React.ComponentType>; + +export type LegendHooks = { + LegendRenderer?: LegendRendererType; + LegendGroupRenderer?: LegendGroupRendererType; + LegendItemRenderer?: LegendItemRendererType; + LegendItemMarkRenderer?: LegendItemMarkRendererType; + LegendItemLabelRenderer?: LegendItemLabelRendererType; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/configureEncodable.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/configureEncodable.ts new file mode 100644 index 000000000000..05a204128652 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/configureEncodable.ts @@ -0,0 +1,83 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + Encodable, + ColorSchemeResolver, + TimeFormatResolver, + CategoricalColorScaleResolver, + defaultColorSchemeResolver, + addPrefix, +} from 'encodable'; +import { + CategoricalColorNamespace, + getCategoricalSchemeRegistry, + getSequentialSchemeRegistry, + getNumberFormatter, + getTimeFormatter, + LOCAL_PREFIX, + getTimeFormatterRegistry, +} from '@superset-ui/core'; + +const timeFormat: TimeFormatResolver = ({ + format, + formatInLocalTime = false, +} = {}) => { + const formatString = formatInLocalTime + ? addPrefix( + LOCAL_PREFIX, + format ?? getTimeFormatterRegistry().getDefaultKey()!, + ) + : format; + + return getTimeFormatter(formatString); +}; + +const colorSchemeResolver: ColorSchemeResolver = ({ + name, + type = 'categorical', +} = {}) => { + if (type === 'sequential') { + const scheme = getSequentialSchemeRegistry().get(name); + + return typeof scheme === 'undefined' + ? scheme + : { type: 'sequential', ...scheme }; + } + if (type === 'categorical') { + const scheme = getCategoricalSchemeRegistry().get(name); + + return typeof scheme === 'undefined' + ? scheme + : { type: 'categorical', ...scheme }; + } + return defaultColorSchemeResolver({ name, type }); +}; + +const colorScaleResolver: CategoricalColorScaleResolver = ({ + name, + namespace, +} = {}) => CategoricalColorNamespace.getScale(name, namespace); + +export default function configureEncodable() { + Encodable.setNumberFormatResolver(getNumberFormatter) + .setTimeFormatResolver(timeFormat) + .setColorSchemeResolver(colorSchemeResolver) + .setCategoricalColorScaleResolver(colorScaleResolver); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/index.ts new file mode 100644 index 000000000000..c20638948642 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/index.ts @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as BoxPlotChartPlugin } from './BoxPlot'; +export { default as LegacyBoxPlotChartPlugin } from './BoxPlot/legacy'; +export { default as ScatterPlotChartPlugin } from './ScatterPlot'; +export { default as LegacyScatterPlotChartPlugin } from './ScatterPlot/legacy'; +export { default as LineChartPlugin } from './Line'; +export { default as LegacyLineChartPlugin } from './Line/legacy'; +export { default as configureEncodable } from './configureEncodable'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/XYChartLayout.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/XYChartLayout.tsx new file mode 100644 index 000000000000..8b900bb3126e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/XYChartLayout.tsx @@ -0,0 +1,200 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { ReactNode, CSSProperties } from 'react'; +import { XAxis, YAxis } from '@data-ui/xy-chart'; +import { ChartFrame, Margin, mergeMargin, Dimension } from '@superset-ui/core'; +import { + ChannelEncoder, + PlainObject, + Value, + XFieldDef, + YFieldDef, +} from 'encodable'; +import createTickComponent from './createTickComponent'; +import computeAxisLayout, { AxisLayout } from './computeAxisLayout'; + +export const DEFAULT_LABEL_ANGLE = 40; + +// Additional margin to avoid content hidden behind scroll bar +const OVERFLOW_MARGIN = 8; + +export interface XYChartLayoutConfig< + XOutput extends Value, + YOutput extends Value, +> { + width: number; + height: number; + minContentWidth?: number; + minContentHeight?: number; + margin: Margin; + xEncoder: ChannelEncoder, XOutput>; + xTickSize?: number; + xTickTextStyle?: CSSProperties; + autoAdjustXMargin?: boolean; + yEncoder: ChannelEncoder, YOutput>; + yTickSize?: number; + yTickTextStyle?: CSSProperties; + autoAdjustYMargin?: boolean; +} + +export default class XYChartLayout< + XOutput extends Value, + YOutput extends Value, +> { + chartWidth: number; + + chartHeight: number; + + containerWidth: number; + + containerHeight: number; + + margin: Margin; + + xEncoder: ChannelEncoder, XOutput>; + + xLayout?: AxisLayout; + + yEncoder: ChannelEncoder, YOutput>; + + yLayout?: AxisLayout; + + constructor(config: XYChartLayoutConfig) { + const { + width, + height, + minContentWidth = 0, + minContentHeight = 0, + margin, + xEncoder, + xTickSize, + xTickTextStyle, + autoAdjustXMargin = true, + yEncoder, + yTickSize, + yTickTextStyle, + autoAdjustYMargin = true, + } = config; + + this.xEncoder = xEncoder; + this.yEncoder = yEncoder; + + if (typeof yEncoder.axis !== 'undefined') { + this.yLayout = computeAxisLayout(yEncoder.axis, { + axisWidth: Math.max(height - margin.top - margin.bottom), + defaultTickSize: yTickSize, + tickTextStyle: yTickTextStyle, + }); + } + + const secondMargin = + this.yLayout && autoAdjustYMargin + ? mergeMargin(margin, this.yLayout.minMargin) + : margin; + const innerWidth = Math.max( + width - secondMargin.left - secondMargin.right, + minContentWidth, + ); + + if (typeof xEncoder.axis !== 'undefined') { + this.xLayout = computeAxisLayout(xEncoder.axis, { + axisWidth: innerWidth, + defaultTickSize: xTickSize, + tickTextStyle: xTickTextStyle, + }); + } + + const finalMargin = + this.xLayout && autoAdjustXMargin + ? mergeMargin(secondMargin, this.xLayout.minMargin) + : secondMargin; + + const innerHeight = Math.max( + height - finalMargin.top - finalMargin.bottom, + minContentHeight, + ); + + const chartWidth = Math.round( + innerWidth + finalMargin.left + finalMargin.right, + ); + const chartHeight = Math.round( + innerHeight + finalMargin.top + finalMargin.bottom, + ); + + const isOverFlowX = chartWidth > width; + const isOverFlowY = chartHeight > height; + if (isOverFlowX) { + finalMargin.bottom += OVERFLOW_MARGIN; + } + if (isOverFlowY) { + finalMargin.right += OVERFLOW_MARGIN; + } + this.chartWidth = isOverFlowX ? chartWidth + OVERFLOW_MARGIN : chartWidth; + this.chartHeight = isOverFlowY + ? chartHeight + OVERFLOW_MARGIN + : chartHeight; + this.containerWidth = width; + this.containerHeight = height; + this.margin = finalMargin; + } + + renderChartWithFrame(renderChart: (input: Dimension) => ReactNode) { + return ( + + ); + } + + renderXAxis(props?: PlainObject) { + const { axis } = this.xEncoder; + + return axis && this.xLayout ? ( + + ) : null; + } + + renderYAxis(props?: PlainObject) { + const { axis } = this.yEncoder; + + return axis && this.yLayout ? ( + + ) : null; + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/computeAxisLayout.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/computeAxisLayout.ts new file mode 100644 index 000000000000..a74e40c7323b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/computeAxisLayout.ts @@ -0,0 +1,137 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { CSSProperties } from 'react'; +import { getTextDimension, Margin, Dimension } from '@superset-ui/core'; +import { AxisOrient, ChannelDef, Value } from 'encodable'; + +import ChannelEncoderAxis from 'encodable/lib/encoders/ChannelEncoderAxis'; + +export interface AxisLayout { + axisWidth: number; + labelAngle: number; + labelFlush: number | boolean; + labelOffset: number; + labelOverlap: 'flat' | 'rotate'; + minMargin: Partial; + orient: AxisOrient; + tickLabelDimensions: Dimension[]; + tickLabels: string[]; + tickTextAnchor?: string; +} + +export default function computeAxisLayout< + Def extends ChannelDef, + Output extends Value, +>( + axis: ChannelEncoderAxis, + { + axisTitleHeight = 20, + axisWidth, + gapBetweenAxisLabelAndBorder = 4, + gapBetweenTickAndTickLabel = 4, + defaultTickSize = 8, + tickTextStyle = {}, + }: { + axisTitleHeight?: number; + axisWidth: number; + gapBetweenAxisLabelAndBorder?: number; + gapBetweenTickAndTickLabel?: number; + defaultTickSize?: number; + tickTextStyle?: CSSProperties; + }, +): AxisLayout { + const tickLabels = axis.getTickLabels(); + const tickLabelDimensions = tickLabels.map((text: string) => + getTextDimension({ + style: tickTextStyle, + text, + }), + ); + + const { + labelAngle, + labelFlush, + labelOverlap, + labelPadding, + orient, + tickSize = defaultTickSize, + } = axis.config; + + const maxWidth = Math.max(...tickLabelDimensions.map(d => d.width), 0); + + // cheap heuristic, can improve + const widthPerTick = axisWidth / tickLabels.length; + const isLabelOverlap = maxWidth > widthPerTick; + const labelAngleIfOverlap = + labelOverlap.strategy === 'rotate' ? labelOverlap.labelAngle : 0; + const labelAngleAfterOverlapCheck = isLabelOverlap ? labelAngleIfOverlap : 0; + const finalLabelAngle = + labelAngle === 0 ? labelAngleAfterOverlapCheck : labelAngle; + + const spaceForAxisTitle = axis.hasTitle() + ? labelPadding + axisTitleHeight + : 0; + let tickTextAnchor = 'middle'; + let labelOffset = 0; + let requiredMargin = + tickSize + + gapBetweenTickAndTickLabel + + spaceForAxisTitle + + gapBetweenAxisLabelAndBorder; + + if (axis.channelEncoder.isX()) { + if (finalLabelAngle === 0) { + const labelHeight = + tickLabelDimensions.length > 0 ? tickLabelDimensions[0].height : 0; + labelOffset = labelHeight + labelPadding; + requiredMargin += labelHeight; + } else { + const labelHeight = Math.ceil( + Math.abs(maxWidth * Math.sin((finalLabelAngle * Math.PI) / 180)), + ); + labelOffset = labelHeight + labelPadding; + requiredMargin += labelHeight; + tickTextAnchor = + (orient === 'top' && finalLabelAngle > 0) || + (orient === 'bottom' && finalLabelAngle < 0) + ? 'end' + : 'start'; + } + requiredMargin += 8; + } else { + labelOffset = maxWidth + spaceForAxisTitle; + requiredMargin += maxWidth; + } + + return { + axisWidth, + labelAngle: finalLabelAngle, + labelFlush, + labelOffset, + labelOverlap: isLabelOverlap ? labelOverlap.strategy : 'flat', + minMargin: { + [orient]: Math.ceil(requiredMargin), + }, + orient, + tickLabelDimensions, + tickLabels, + tickTextAnchor, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/convertScaleToDataUIScaleShape.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/convertScaleToDataUIScaleShape.ts new file mode 100644 index 000000000000..4d756e138ba8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/convertScaleToDataUIScaleShape.ts @@ -0,0 +1,82 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Value, ScaleConfig } from 'encodable'; + +type DataUIScaleType = 'time' | 'timeUtc' | 'linear' | 'band'; + +interface DataUIScale { + type: DataUIScaleType; + domain?: number[] | string[]; + includeZero?: boolean; + nice?: boolean; + paddingInner?: number; + paddingOuter?: number; + range?: number[] | string[]; + rangeRound?: number[] | string[]; +} + +function isCompatibleDomainOrRange( + array: ScaleConfig['domain'] | ScaleConfig['range'], +): array is number[] | string[] { + return ( + typeof array !== 'undefined' && + array.length > 0 && + (typeof array[0] === 'string' || typeof array[0] === 'number') + ); +} + +/** + * Convert encodeable scale object into @data-ui's scale config + * @param scale + */ +export default function convertScaleToDataUIScale( + scale: ScaleConfig, +) { + const { type, domain, range } = scale; + + let outputType: DataUIScaleType; + + if (type === 'linear' || type === 'time' || type === 'band') { + outputType = type; + } else if (type === 'utc') { + outputType = 'timeUtc'; + } else { + throw new Error(`Unsupported scale type: ${type}`); + } + + const output: DataUIScale = { type: outputType }; + if (isCompatibleDomainOrRange(domain)) { + output.domain = domain; + } + if (isCompatibleDomainOrRange(range)) { + output.range = range; + } + if ('nice' in scale && typeof scale.nice === 'boolean') { + output.nice = scale.nice; + } + if ('paddingInner' in scale && typeof scale.paddingInner !== 'undefined') { + output.paddingInner = scale.paddingInner; + } + if ('paddingOuter' in scale && typeof scale.paddingOuter !== 'undefined') { + output.paddingOuter = scale.paddingOuter; + } + + return output; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/createMarginSelector.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/createMarginSelector.tsx new file mode 100644 index 000000000000..759b27ec55f1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/createMarginSelector.tsx @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { createSelector } from 'reselect'; +import { Margin } from '@superset-ui/core'; + +export const DEFAULT_MARGIN = { bottom: 16, left: 16, right: 16, top: 16 }; + +export default function createMarginSelector( + defaultMargin: Margin = DEFAULT_MARGIN, +) { + return createSelector( + (margin: Partial) => margin.bottom, + margin => margin.left, + margin => margin.right, + margin => margin.top, + ( + bottom = defaultMargin.bottom, + left = defaultMargin.left, + right = defaultMargin.right, + top = defaultMargin.top, + ) => ({ + bottom, + left, + right, + top, + }), + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/createTickComponent.tsx b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/createTickComponent.tsx new file mode 100644 index 000000000000..9c02c7a29729 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/createTickComponent.tsx @@ -0,0 +1,110 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { CSSProperties } from 'react'; +import { Dimension } from '@superset-ui/core'; +import { AxisLayout } from './computeAxisLayout'; + +export default function createTickComponent({ + axisWidth, + labelAngle, + labelFlush, + labelOverlap, + orient, + tickLabels, + tickLabelDimensions, + tickTextAnchor = 'middle', +}: AxisLayout) { + if (labelOverlap === 'rotate' && labelAngle !== 0) { + let xOffset = labelAngle > 0 ? -6 : 6; + if (orient === 'top') { + xOffset = 0; + } + const yOffset = orient === 'top' ? -3 : 0; + + return ({ + x, + y, + formattedValue = '', + ...textStyle + }: { + x: number; + y: number; + dy?: number; + formattedValue: string; + textStyle: CSSProperties; + }) => ( + + + {formattedValue} + + + ); + } + + if (labelFlush === true || typeof labelFlush === 'number') { + const labelToDimensionMap = new Map(); + tickLabels.forEach((label, i) => { + labelToDimensionMap.set(label, tickLabelDimensions[i]); + }); + + return ({ + x, + y, + formattedValue = '', + ...textStyle + }: { + x: number; + y: number; + dy?: number; + formattedValue: string; + textStyle: CSSProperties; + }) => { + const dimension = labelToDimensionMap.get(formattedValue); + const labelWidth = typeof dimension === 'undefined' ? 0 : dimension.width; + let textAnchor = tickTextAnchor; + let xOffset = 0; + + if (x - labelWidth / 2 < 0) { + textAnchor = 'start'; + if (typeof labelFlush === 'number') { + xOffset -= labelFlush; + } + } else if (x + labelWidth / 2 > axisWidth) { + textAnchor = 'end'; + if (typeof labelFlush === 'number') { + xOffset += labelFlush; + } + } + + return ( + + {formattedValue} + + ); + }; + } + + // This will render the tick as horizontal string. + return null; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/createTickLabelProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/createTickLabelProps.ts new file mode 100644 index 000000000000..508189653c2c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/createTickLabelProps.ts @@ -0,0 +1,47 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +// export default function createTickLabelProps({ +// labelAngle, +// labelOverlap, +// orient, +// tickTextAnchor = 'start', +// }: { +// labelAngle: number; +// labelOverlap: string; +// orient: string; +// tickTextAnchor?: string; +// }) { +// let dx = 0; +// let dy = 0; +// if (labelOverlap === 'rotate' && labelAngle !== 0) { +// dx = labelAngle > 0 ? -6 : 6; +// if (orient === 'top') { +// dx = 0; +// } +// dy = orient === 'top' ? -3 : 0; +// } + +// return { +// angle: labelAngle, +// dx, +// dy, +// textAnchor: tickTextAnchor, +// }; +// } diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/createXYChartLayoutWithTheme.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/createXYChartLayoutWithTheme.ts new file mode 100644 index 000000000000..941fe3a1dfd4 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/src/utils/createXYChartLayoutWithTheme.ts @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ChartTheme } from '@data-ui/theme'; +import { Value } from 'encodable'; +import XYChartLayout, { XYChartLayoutConfig } from './XYChartLayout'; + +export default function createXYChartLayoutWithTheme< + XOutput extends Value, + YOutput extends Value, +>( + config: XYChartLayoutConfig & { + theme: ChartTheme; + }, +) { + const { theme, ...rest } = config; + + return new XYChartLayout({ + ...rest, + // @ts-ignore + xTickSize: theme.xTickStyles.length || theme.xTickStyles.tickLength, + xTickTextStyle: + theme.xTickStyles.label.bottom || theme.xTickStyles.label.top, + // @ts-ignore + yTickSize: theme.yTickStyles.length || theme.yTickStyles.tickLength, + yTickTextStyle: + theme.yTickStyles.label.left || theme.yTickStyles.label.right, + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/test/index.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/test/index.test.ts new file mode 100644 index 000000000000..4892a4350da6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/test/index.test.ts @@ -0,0 +1,48 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + LegacyScatterPlotChartPlugin, + ScatterPlotChartPlugin, + LegacyLineChartPlugin, + LineChartPlugin, + LegacyBoxPlotChartPlugin, + BoxPlotChartPlugin, +} from '../src'; + +describe('index', () => { + it('exports ScatterPlot', () => { + expect(ScatterPlotChartPlugin).toBeDefined(); + }); + it('exports Line', () => { + expect(LineChartPlugin).toBeDefined(); + }); + it('exports BoxPlot', () => { + expect(BoxPlotChartPlugin).toBeDefined(); + }); + it('exports legacy ScatterPlot', () => { + expect(LegacyScatterPlotChartPlugin).toBeDefined(); + }); + it('exports legacy Line', () => { + expect(LegacyLineChartPlugin).toBeDefined(); + }); + it('exports legacy BoxPlot', () => { + expect(LegacyBoxPlotChartPlugin).toBeDefined(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/test/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/test/tsconfig.json new file mode 100644 index 000000000000..481ca5b4db93 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/test/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "composite": false, + "emitDeclarationOnly": false, + "noEmit": true, + "rootDir": "." + }, + "extends": "../../../tsconfig.json", + "include": [ + "**/*", + "../types/**/*", + "../../../types/**/*" + ], + "references": [ + { + "path": ".." + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/types/@data-ui/theme/index.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/types/@data-ui/theme/index.d.ts new file mode 100644 index 000000000000..42a036f531ca --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/types/@data-ui/theme/index.d.ts @@ -0,0 +1,128 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +declare module '@data-ui/theme' { + type SvgLabelTextStyle = { + fontFamily: string; + fontSize: number; + fontWeight: number; + letterSpacing: number; + fill: string; + stroke: string; + textAnchor?: + | '-moz-initial' + | 'inherit' + | 'initial' + | 'revert' + | 'unset' + | 'end' + | 'start' + | 'middle'; + pointerEvents?: + | '-moz-initial' + | 'inherit' + | 'initial' + | 'revert' + | 'unset' + | 'auto' + | 'none' + | 'visible' + | 'all' + | 'fill' + | 'stroke' + | 'painted' + | 'visibleFill' + | 'visiblePainted' + | 'visibleStroke'; + }; + + export interface ChartTheme { + colors: { + default: string; + dark: string; + light: string; + disabled: string; + lightDisabled: string; + text: string; + black: string; + darkGray: string; + lightGray: string; + grid: string; + gridDark: string; + label: string; + tickLabel: string; + grays: string[]; + categories: string[]; + }; + labelStyles: SvgLabelTextStyle & { + color: string; + lineHeight: string; + paddingBottom: number; + paddingTop: number; + }; + gridStyles: { + stroke: string; + strokeWidth: number; + }; + xAxisStyles: { + stroke: string; + strokeWidth: number; + label: { + bottom: SvgLabelTextStyle; + top: SvgLabelTextStyle; + }; + }; + xTickStyles: { + stroke: string; + length: number; + label: { + bottom: SvgLabelTextStyle & { + dy: string; + }; + top: SvgLabelTextStyle & { + dy: string; + }; + }; + }; + yAxisStyles: { + stroke: string; + strokeWidth: number; + label: { + left: SvgLabelTextStyle; + right: SvgLabelTextStyle; + }; + }; + yTickStyles: { + stroke: string; + length: number; + label: { + left: SvgLabelTextStyle & { + dx: string; + dy: string; + }; + right: SvgLabelTextStyle & { + dx: string; + dy: string; + }; + }; + }; + } + + export const chartTheme: ChartTheme; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/types/@data-ui/xy-chart/index.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/types/@data-ui/xy-chart/index.d.ts new file mode 100644 index 000000000000..47a745702f39 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/types/@data-ui/xy-chart/index.d.ts @@ -0,0 +1,59 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +declare module '@data-ui/xy-chart' { + import React from 'react'; + + type Props = { + [key: string]: any; + }; + + interface XYChartProps { + width: number; + height: number; + ariaLabel: string; + eventTrigger?: any; + margin?: { + top?: number; + right?: number; + bottom?: number; + left?: number; + }; + onMouseMove?: (...args: any[]) => void; + onMouseLeave?: (...args: any[]) => void; + renderTooltip: any; + showYGrid?: boolean; + snapTooltipToDataX?: boolean; + theme?: any; + tooltipData?: any; + xScale: any; + yScale: any; + } + + export class AreaSeries extends React.PureComponent {} + export class BoxPlotSeries extends React.PureComponent {} + export class CrossHair extends React.PureComponent {} + export class LinearGradient extends React.PureComponent {} + export class LineSeries extends React.PureComponent {} + export class PointSeries extends React.PureComponent {} + export class WithTooltip extends React.PureComponent {} + export class XYChart extends React.PureComponent {} + export class XAxis extends React.PureComponent {} + export class YAxis extends React.PureComponent {} +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/types/external.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/types/external.d.ts new file mode 100644 index 000000000000..a273f3a2ba3e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/plugins/preset-chart-xy/types/external.d.ts @@ -0,0 +1,23 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +declare module '*.png' { + const value: any; + export default value; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/prettier.config.js b/superset-frontend/temporary_superset_ui/superset-ui/prettier.config.js new file mode 100644 index 000000000000..5ee96a0cfbde --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/prettier.config.js @@ -0,0 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +module.exports = { + singleQuote: true, + trailingComma: 'all', + arrowParens: 'avoid', +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/scripts/build.js b/superset-frontend/temporary_superset_ui/superset-ui/scripts/build.js new file mode 100644 index 000000000000..0c327e8c50a3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/scripts/build.js @@ -0,0 +1,139 @@ +#!/bin/env node + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-console */ +/** + * Build packages/plugins filtered by globs + */ +process.env.PATH = `./node_modules/.bin:${process.env.PATH}`; + +const rimraf = require('rimraf'); +const { spawnSync } = require('child_process'); +const fastGlob = require('fast-glob'); +const { argv } = require('yargs') + .option('lint', { + describe: 'whether to run ESLint', + type: 'boolean', + // lint is slow, so not turning it on by default + default: false, + }) + .option('babel', { + describe: 'Whether to run Babel', + type: 'boolean', + default: true, + }) + .option('clean', { + describe: 'Whether to clean cache', + type: 'boolean', + default: false, + }) + .option('type', { + describe: 'Whether to run tsc', + type: 'boolean', + default: true, + }); + +const { + _: globs, + lint: shouldLint, + babel: shouldRunBabel, + clean: shouldCleanup, + type: shouldRunTyping, +} = argv; +const glob = globs.length > 1 ? `{${globs.join(',')}}` : globs[0] || '*'; + +const BABEL_CONFIG = '--config-file=../../babel.config.js'; + +// packages that do not need tsc +const META_PACKAGES = new Set(['demo', 'generator-superset']); + +function run(cmd, options) { + console.log(`\n>> ${cmd}\n`); + const [p, ...args] = cmd.split(' '); + const runner = spawnSync; + const { status } = runner(p, args, { stdio: 'inherit', ...options }); + if (status !== 0) { + process.exit(status); + } +} + +function getPackages(packagePattern, tsOnly = false) { + let pattern = packagePattern; + if (pattern === '*' && !tsOnly) { + return `@superset-ui/!(${[...META_PACKAGES].join('|')})`; + } + if (!pattern.includes('*')) { + pattern = `*${pattern}`; + } + const packages = [ + ...new Set( + fastGlob + .sync([ + `./node_modules/@superset-ui/${pattern}/src/**/*.${ + tsOnly ? '{ts,tsx}' : '{ts,tsx,js,jsx}' + }`, + ]) + .map(x => x.split('/')[3]) + .filter(x => !META_PACKAGES.has(x)), + ), + ]; + if (packages.length === 0) { + throw new Error('No matching packages'); + } + return `@superset-ui/${ + packages.length > 1 ? `{${packages.join(',')}}` : packages[0] + }`; +} + +let scope = getPackages(glob); + +if (shouldLint) { + run(`npm run lint --fix {packages,plugins}/${scope}/{src,test}`); +} + +if (shouldCleanup) { + // these modules will be installed by `npm link` but not useful for actual build + const dirtyModules = 'node_modules/@types/react,node_modules/@superset-ui'; + const cachePath = `./node_modules/${scope}/{lib,esm,tsconfig.tsbuildinfo,${dirtyModules}}`; + console.log(`\n>> Cleaning up ${cachePath}`); + rimraf.sync(cachePath); +} + +if (shouldRunBabel) { + console.log('--- Run babel --------'); + const babelCommand = `lerna exec --stream --concurrency 10 --scope ${scope} + -- babel ${BABEL_CONFIG} src --extensions ".ts,.tsx,.js,.jsx" --copy-files`; + run(`${babelCommand} --out-dir lib`); + + console.log('--- Run babel esm ---'); + // run again with + run(`${babelCommand} --out-dir esm`, { + env: { ...process.env, BABEL_OUTPUT: 'esm' }, + }); +} + +if (shouldRunTyping) { + console.log('--- Run tsc ---'); + // only run tsc for packages with ts files + scope = getPackages(glob, true); + run(`lerna exec --stream --concurrency 3 --scope ${scope} \ + -- ../../scripts/tsc.sh --build`); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/scripts/check_license.sh b/superset-frontend/temporary_superset_ui/superset-ui/scripts/check_license.sh new file mode 100755 index 000000000000..9d2026e523ff --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/scripts/check_license.sh @@ -0,0 +1,90 @@ +#!/usr/bin/env bash +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + + +acquire_rat_jar () { + + URL="https://repo1.maven.org/maven2/org/apache/rat/apache-rat/${RAT_VERSION}/apache-rat-${RAT_VERSION}.jar" + + JAR="$rat_jar" + + # Download rat launch jar if it hasn't been downloaded yet + if [ ! -f "$JAR" ]; then + # Download + printf "Attempting to fetch rat\n" + JAR_DL="${JAR}.part" + if [ $(command -v curl) ]; then + curl -L --silent "${URL}" > "$JAR_DL" && mv "$JAR_DL" "$JAR" + elif [ $(command -v wget) ]; then + wget --quiet ${URL} -O "$JAR_DL" && mv "$JAR_DL" "$JAR" + else + printf "You do not have curl or wget installed, please install rat manually.\n" + exit -1 + fi + fi + + unzip -tq "$JAR" &> /dev/null + if [ $? -ne 0 ]; then + # We failed to download + rm "$JAR" + printf "Our attempt to download rat locally to ${JAR} failed. Please install rat manually.\n" + exit -1 + fi + printf "Done downloading.\n" +} + +# Go to the project root directory +FWDIR="$(cd "`dirname "$0"`"/..; pwd)" +cd "$FWDIR" + +TMP_DIR=/tmp + +if test -x "$JAVA_HOME/bin/java"; then + declare java_cmd="$JAVA_HOME/bin/java" +else + declare java_cmd=java +fi + +export RAT_VERSION=0.13 +export rat_jar="${TMP_DIR}"/lib/apache-rat-${RAT_VERSION}.jar +mkdir -p ${TMP_DIR}/lib + + +[[ -f "$rat_jar" ]] || acquire_rat_jar || { + echo "Download failed. Obtain the rat jar manually and place it at $rat_jar" + exit 1 +} + +echo "Running license checks. This can take a while." +echo "$FWDIR"/.rat-excludes +$java_cmd -jar "$rat_jar" -E "$FWDIR"/.rat-excludes -d "$FWDIR" > rat-results.txt + +if [ $? -ne 0 ]; then + echo "RAT exited abnormally" + exit 1 +fi + +ERRORS="$(cat rat-results.txt | grep -e "??")" + +if test ! -z "$ERRORS"; then + echo >&2 "Could not find Apache license headers in the following files:" + echo >&2 "$ERRORS" + exit 1 +else + echo -e "RAT checks passed." +fi diff --git a/superset-frontend/temporary_superset_ui/superset-ui/scripts/commitlint.js b/superset-frontend/temporary_superset_ui/superset-ui/scripts/commitlint.js new file mode 100755 index 000000000000..d952cbf33e55 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/scripts/commitlint.js @@ -0,0 +1,44 @@ +#!/usr/bin/env node + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Check commit messages only for the first commit in branch. + */ +const { execSync, spawnSync } = require('child_process'); + +const envVariable = process.argv[2] || 'GIT_PARAMS'; + +if (!envVariable || !process.env[envVariable]) { + process.stdout.write( + `Please provide a commit message via \`${envVariable}={Your Message}\`.\n`, + ); + process.exit(0); +} +if ( + execSync('git rev-list --count HEAD ^master', { + encoding: 'utf-8', + }).trim() === '0' +) { + const { status } = spawnSync(`commitlint`, ['-E', envVariable], { + stdio: 'inherit', + }); + process.exit(status); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/scripts/copyAssets.js b/superset-frontend/temporary_superset_ui/superset-ui/scripts/copyAssets.js new file mode 100644 index 000000000000..96c41337630e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/scripts/copyAssets.js @@ -0,0 +1,56 @@ +#!/usr/bin/env node + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-console */ +const fg = require('fast-glob'); +const fs = require('fs-extra'); + +const pkgGlob = process.argv[2] || '*'; + +const packages = fg.sync([`{packages,plugins}/${pkgGlob}`], { + onlyDirectories: true, +}); + +console.log('Copying asset files from package {src} to {lib,esm}...'); +packages.forEach(pkg => { + const assets = fg.sync([`${pkg}/src/**/*.{png,gif,jpg,css,geojson}`]); + assets.forEach(filePath => { + ['lib', 'esm'] + .map(dir => filePath.replace(`${pkg}/src`, `${pkg}/${dir}`)) + .forEach(newFilePath => { + fs.copy(filePath, newFilePath, err => { + if (err) { + console.error(err); + } + }); + }); + }); + if (assets.length > 0) { + console.log( + ` Copied ${assets.length + .toString() + .padStart(2)} asset files for ${pkg.replace( + 'packages/superset-ui-', + '', + )}`, + ); + } +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/scripts/lernaVersion.sh b/superset-frontend/temporary_superset_ui/superset-ui/scripts/lernaVersion.sh new file mode 100755 index 000000000000..864d71978930 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/scripts/lernaVersion.sh @@ -0,0 +1,71 @@ +#!/bin/bash +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +rootDir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )" + +lernaVersionArg="$1" +if [[ -z $lernaVersionArg ]]; then + echo '[ERROR] Please provide argument for "lerna version".' + exit 1 +fi + +currentNpm=$(npm --version) +npmVersion=$(node -e "process.stdout.write(require('./package.json').engines.npm)"); +isSatisfiedNpm=$(node -e "process.stdout.write(require('semver').satisfies('$currentNpm', '$npmVersion').toString())"); + +currentNode=$(node --version) +nodeVersion=$(node -e "process.stdout.write(require('./package.json').engines.node)"); +isSatisfiedNode=$(node -e "process.stdout.write(require('semver').satisfies('$currentNode', '$nodeVersion').toString())"); + +# Check node version compatible with package.json +if [[ $isSatisfiedNode != 'true' ]]; then + echo "[ERROR] Your node version($currentNode) is not compatible with package.json($nodeVersion)" + exit 1 +fi + +# Check npm version compatible with package.json +if [[ $isSatisfiedNpm != 'true' ]]; then + echo "[ERROR] Your npm version($currentNpm) is not compatible with package.json($npmVersion)" + exit 1 +fi + +# Ignore Lerna's tag and push +lerna version $1 --no-push --no-git-tag-version --yes + +if [[ -z $(git diff --stat) ]]; then + echo '[ERROR] No changed packages to version.' + exit 1 +fi + +# Get the current tag version +tag=v$(node -e "process.stdout.write(require('./lerna.json').version)"); +message="chore: publish $tag" + +# Update the lock file here +rm "$rootDir/package-lock.json" +npm i --package-lock-only + +if [[ $? -ne 0 ]]; then + echo '[ERROR] Can not update package-lock.json' + exit 1 +fi + +# Auto-tag and auto-commit like usual +git commit --all -m "${message}" +git tag -a ${tag} -m ${tag} +git push origin ${tag} +git push diff --git a/superset-frontend/temporary_superset_ui/superset-ui/scripts/tsc.sh b/superset-frontend/temporary_superset_ui/superset-ui/scripts/tsc.sh new file mode 100755 index 000000000000..c65d4a668de9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/scripts/tsc.sh @@ -0,0 +1,26 @@ +#!/bin/bash +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +startTime=$(node -e 'console.log(Date.now())') +tscExitCode=$(tsc "$@") +duration=$(node -e "console.log('%ss', (Date.now() - $startTime) / 1000)") + +if [ ! "$tscExitCode" ]; then + echo "compiled in ${duration}" +else + exit "$tscExitCode" +fi diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/README.md b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/README.md new file mode 100644 index 000000000000..9cccd25e5967 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/README.md @@ -0,0 +1,5 @@ +# @superset-ui/plugins 🔌💡 + +This directory hold code of the plugins that are migrated from `@superset-ui-plugins` repo. We copy +them all over in one pass to preserve git history. The code in this directory will not be built, +tested, or published yet. They will have to be moved to the `plugins` directory first. diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/README.md b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/README.md new file mode 100644 index 000000000000..82fd92753230 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/README.md @@ -0,0 +1,33 @@ +## @superset-ui/legacy-plugin-chart-word-cloud + +[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-word-cloud.svg?style=flat-square)](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-word-cloud.svg?style=flat-square) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-word-cloud&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-word-cloud) + +This plugin provides Word Cloud for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import WordCloudChartPlugin from '@superset-ui/legacy-plugin-chart-word-cloud'; + +new WordCloudChartPlugin().configure({ key: 'word-cloud' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-word-cloud) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/package.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/package.json new file mode 100644 index 000000000000..68ac00d564f8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/package.json @@ -0,0 +1,37 @@ +{ + "name": "@superset-ui/legacy-plugin-chart-word-cloud", + "version": "0.11.15", + "description": "Superset Legacy Chart - Word Cloud", + "sideEffects": [ + "*.css" + ], + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/core": "^0.14.22", + "@superset-ui/chart-controls": "^0.14.22", + "d3": "^3.5.17", + "d3-cloud": "^1.2.1", + "prop-types": "^15.6.2" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/ReactWordCloud.js b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/ReactWordCloud.js new file mode 100644 index 000000000000..6b0db178c4df --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/ReactWordCloud.js @@ -0,0 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { reactify } from '@superset-ui/core'; +import Component from './WordCloud'; + +export default reactify(Component); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/WordCloud.js b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/WordCloud.js new file mode 100644 index 000000000000..eeb35e8a6e85 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/WordCloud.js @@ -0,0 +1,100 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +/* eslint-disable react/sort-prop-types */ + +import d3 from 'd3'; +import PropTypes from 'prop-types'; +import cloudLayout from 'd3-cloud'; +import { CategoricalColorNamespace, seedRandom } from '@superset-ui/core'; + +const ROTATION = { + square: () => Math.floor(seedRandom() * 2) * 90, + flat: () => 0, + random: () => Math.floor(seedRandom() * 6 - 3) * 30, +}; + +const propTypes = { + data: PropTypes.arrayOf( + PropTypes.shape({ + size: PropTypes.number, + text: PropTypes.string, + }), + ), + width: PropTypes.number, + height: PropTypes.number, + rotation: PropTypes.string, + sizeRange: PropTypes.arrayOf(PropTypes.number), + colorScheme: PropTypes.string, +}; + +function WordCloud(element, props) { + const { data, width, height, rotation, sizeRange, colorScheme } = props; + + const chart = d3.select(element); + chart.classed('superset-legacy-chart-word-cloud', true); + const size = [width, height]; + const rotationFn = ROTATION[rotation] || ROTATION.flat; + + const scale = d3.scale + .linear() + .range(sizeRange) + .domain(d3.extent(data, d => d.size)); + + const layout = cloudLayout() + .size(size) + .words(data) + .padding(5) + .rotate(rotationFn) + .font('Helvetica') + .fontWeight('bold') + .fontSize(d => scale(d.size)); + + const colorFn = CategoricalColorNamespace.getScale(colorScheme); + + function draw(words) { + chart.selectAll('*').remove(); + + const [w, h] = layout.size(); + + chart + .append('svg') + .attr('width', w) + .attr('height', h) + .append('g') + .attr('transform', `translate(${w / 2},${h / 2})`) + .selectAll('text') + .data(words) + .enter() + .append('text') + .style('font-size', d => `${d.size}px`) + .style('font-weight', 'bold') + .style('font-family', 'Helvetica') + .style('fill', d => colorFn(d.text)) + .attr('text-anchor', 'middle') + .attr('transform', d => `translate(${d.x}, ${d.y}) rotate(${d.rotate})`) + .text(d => d.text); + } + + layout.on('end', draw).start(); +} + +WordCloud.displayName = 'WordCloud'; +WordCloud.propTypes = propTypes; + +export default WordCloud; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/images/thumbnail.png new file mode 100644 index 000000000000..1829a2f56088 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/images/thumbnailLarge.png b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/images/thumbnailLarge.png new file mode 100644 index 000000000000..03936e1253d5 Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/images/thumbnailLarge.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/index.js b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/index.js new file mode 100644 index 000000000000..01008bf812d8 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/index.js @@ -0,0 +1,39 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from './images/thumbnail.png'; + +const metadata = new ChartMetadata({ + credits: ['https://github.com/jasondavies/d3-cloud'], + description: '', + name: t('Word Cloud'), + thumbnail, + useLegacyApi: true, +}); + +export default class WordCloudChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('./ReactWordCloud.js'), + metadata, + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/transformProps.js b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/transformProps.js new file mode 100644 index 000000000000..8256f992b99c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-legacy-plugin-chart-word-cloud/src/transformProps.js @@ -0,0 +1,42 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +function transformData(data, formData) { + const { metric, series } = formData; + + const transformedData = data.map(datum => ({ + size: datum[metric.label || metric], + text: datum[series], + })); + + return transformedData; +} + +export default function transformProps(chartProps) { + const { width, height, formData, queriesData } = chartProps; + const { colorScheme, rotation, sizeTo, sizeFrom } = formData; + + return { + width, + height, + data: transformData(queriesData[0].data, formData), + colorScheme, + rotation, + sizeRange: [sizeFrom, sizeTo], + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/README.md b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/README.md new file mode 100644 index 000000000000..93e4f61f4cb1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/README.md @@ -0,0 +1,33 @@ +## @superset-ui/plugin-chart-table + +[![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-table.svg?style=flat-square)](https://img.shields.io/npm/v/@superset-ui/plugin-chart-table.svg?style=flat-square) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-plugin-chart-table&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-plugin-chart-table) + +This plugin provides Table for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import TableChartPlugin from '@superset-ui/plugin-chart-table'; + +new TableChartPlugin().configure({ key: 'table' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-table) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/package.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/package.json new file mode 100644 index 000000000000..700750cad9eb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/package.json @@ -0,0 +1,40 @@ +{ + "name": "@superset-ui/plugin-chart-table", + "version": "0.11.15", + "description": "Superset Chart - Table", + "sideEffects": false, + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@airbnb/lunar": "^2.35.0", + "@airbnb/lunar-icons": "^2.1.4", + "@superset-ui/core": "^0.14.22", + "@superset-ui/chart-controls": "^0.14.22", + "@types/dompurify": "^2.0.0", + "dompurify": "^2.0.6", + "reselect": "^4.0.0" + }, + "peerDependencies": { + "react": "^16.8.6" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/Table.tsx b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/Table.tsx new file mode 100644 index 000000000000..05e35587ebae --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/Table.tsx @@ -0,0 +1,360 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import DataTable from '@airbnb/lunar/lib/components/DataTable'; +import Text from '@airbnb/lunar/lib/components/Text'; +import Input from '@airbnb/lunar/lib/components/Input'; +import withStyles, { + WithStylesProps, +} from '@airbnb/lunar/lib/composers/withStyles'; +import { + Renderers, + ParentRow, + ColumnMetadata, + GenericRow, +} from '@airbnb/lunar/lib/components/DataTable/types'; +import { createSelector } from 'reselect'; +import { NumberFormatter, TimeFormatter } from '@superset-ui/core'; +import getRenderer, { ColumnType, Cell } from './getRenderer'; + +type Props = { + data: ParentRow[]; + height: number; + width: number; + alignPositiveNegative?: boolean; + colorPositiveNegative?: boolean; + columns: ColumnType[]; + filters?: { + [key: string]: any[]; + }; + includeSearch?: boolean; + onAddFilter?: (key: string, value: number[]) => void; + onRemoveFilter?: (key: string, value: number[]) => void; + tableFilter: boolean; +}; + +const NOOP = () => {}; + +const defaultProps = { + alignPositiveNegative: false, + colorPositiveNegative: false, + filters: {}, + includeSearch: false, + onAddFilter: NOOP, + onRemoveFilter: NOOP, +}; + +const SEARCH_BAR_HEIGHT = 40; + +const CHAR_WIDTH = 10; + +const CELL_PADDING = 32; + +const MAX_COLUMN_WIDTH = 300; + +const htmlTagRegex = /(<([^>]+)>)/gi; + +export type TableProps = Props & Readonly; + +type InternalTableProps = TableProps & WithStylesProps; + +type TableState = { + selectedCells: Set; + searchKeyword: string; + filteredRows: ParentRow[]; + filters: { + [key: string]: (string | number)[]; + }; +}; + +function getCellHash(cell: Cell) { + return `${cell.key}#${cell.value}`; +} + +function getText( + value: unknown, + format: TimeFormatter | NumberFormatter | undefined, +) { + if (format) { + return format.format(value as any); + } + if (typeof value === 'string') { + return value.replace(htmlTagRegex, ''); + } + + return String(value); +} + +type columnWidthMetaDataType = { + [key: string]: { + maxWidth: number; + width: number; + }; +}; + +class TableVis extends React.PureComponent { + columnWidthSelector = createSelector( + (data: { rows: ParentRow[]; columns: ColumnType[] }) => data, + data => { + const { rows, columns } = data; + const keys = rows && rows.length > 0 ? Object.keys(rows[0].data) : []; + let totalWidth = 0; + const columnWidthMetaData: columnWidthMetaDataType = {}; + const columnsMap: { + [key: string]: ColumnType; + } = {}; + + columns.forEach(column => { + columnsMap[column.key] = column; + }); + + keys.forEach(key => { + const column = columnsMap[key]; + const format = column?.format; + const maxLength = Math.max( + ...rows.map(d => getText(d.data[key], format).length), + key.length, + ); + const stringWidth = maxLength * CHAR_WIDTH + CELL_PADDING; + columnWidthMetaData[key] = { + maxWidth: MAX_COLUMN_WIDTH, + width: stringWidth, + }; + totalWidth += Math.min(stringWidth, MAX_COLUMN_WIDTH); + }); + + return { + columnWidthMetaData, + totalWidth, + }; + }, + ); + + static defaultProps = defaultProps; + + constructor(props: InternalTableProps) { + super(props); + this.state = { + filteredRows: [], + // eslint-disable-next-line react/no-unused-state + filters: props.filters, + searchKeyword: '', + selectedCells: new Set(), + }; + } + + static getDerivedStateFromProps: React.GetDerivedStateFromProps< + InternalTableProps, + TableState + > = (props: InternalTableProps, state: TableState) => { + const { filters } = props; + const { selectedCells, filters: prevFilters } = state; + if (prevFilters !== filters) { + const newSelectedCells = new Set(Array.from(selectedCells)); + Object.keys(filters).forEach(key => { + filters[key].forEach(value => { + newSelectedCells.add( + getCellHash({ + key, + value, + }), + ); + }); + }); + + return { + ...state, + filters, + selectedCells: newSelectedCells, + }; + } + + return state; + }; + + handleCellSelected = (cell: Cell) => () => { + const { selectedCells } = this.state; + const { tableFilter, onRemoveFilter, onAddFilter } = this.props; + + if (!tableFilter) { + return; + } + const newSelectedCells = new Set(Array.from(selectedCells)); + const cellHash = getCellHash(cell); + if (newSelectedCells.has(cellHash)) { + newSelectedCells.delete(cellHash); + onRemoveFilter(cell.key, [cell.value as number]); + } else { + newSelectedCells.add(cellHash); + onAddFilter(cell.key, [cell.value as number]); + } + this.setState({ + selectedCells: newSelectedCells, + }); + }; + + isSelected = (cell: Cell) => { + const { selectedCells } = this.state; + + return selectedCells.has(getCellHash(cell)); + }; + + handleSearch = (value: string) => { + const { searchKeyword } = this.state; + const { data } = this.props; + if (searchKeyword !== value) { + const filteredRows = data.filter(row => { + const content = Object.keys(row.data) + .map(key => row.data[key]) + .join('|') + .toLowerCase(); + + return content.includes(value.toLowerCase()); + }); + this.setState({ + filteredRows, + searchKeyword: value, + }); + } + }; + + render() { + const { + cx, + data, + columns, + alignPositiveNegative, + colorPositiveNegative, + height, + width, + tableFilter, + styles, + includeSearch, + } = this.props; + + const { filteredRows, searchKeyword } = this.state; + + const dataToRender = searchKeyword === '' ? data : filteredRows; + const renderers: Renderers = {}; + const columnMetadata: ColumnMetadata = {}; + const convertToLowerCase = ({ data: d }: GenericRow, key: string) => + typeof d[key] === 'string' ? (d[key] as string).toLowerCase() : d[key]; + + columns.forEach(column => { + renderers[column.key] = getRenderer({ + alignPositiveNegative, + colorPositiveNegative, + column, + enableFilter: tableFilter, + handleCellSelected: this.handleCellSelected, + isSelected: this.isSelected, + }); + if (column.type === 'metric') { + columnMetadata[column.key] = { + rightAlign: 1, + }; + } + }); + + const keys = + dataToRender && dataToRender.length > 0 + ? Object.keys(dataToRender[0].data) + : []; + const columnWidthInfo = this.columnWidthSelector({ columns, rows: data }); + + keys.forEach(key => { + columnMetadata[key] = { + ...columnWidthInfo.columnWidthMetaData[key], + ...columnMetadata[key], + }; + + if (!renderers[key]) { + renderers[key] = getRenderer({ + alignPositiveNegative, + colorPositiveNegative, + column: { + key, + label: key, + type: 'string', + }, + enableFilter: tableFilter, + handleCellSelected: this.handleCellSelected, + isSelected: this.isSelected, + }); + } + }); + + const tableHeight = includeSearch ? height - SEARCH_BAR_HEIGHT : height; + + return ( + <> + {includeSearch && ( +
+
+ +
+ + Showing {dataToRender.length}/{data.length} rows + +
+ )} +
+ +
+ + ); + } +} + +export default withStyles(({ unit }) => ({ + container: { + display: 'grid', + overflowX: 'scroll', + }, + searchBar: { + alignItems: 'baseline', + display: 'flex', + flexDirection: 'row-reverse', + flexGrow: 0, + marginBottom: unit, + }, + searchBox: { + marginLeft: unit, + width: 25 * unit, + }, +}))(TableVis); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/TableFormData.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/TableFormData.ts new file mode 100644 index 000000000000..ac50c29141b2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/TableFormData.ts @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable camelcase */ +import { QueryFormData, QueryFormMetric } from '@superset-ui/core'; + +type TableFormData = QueryFormData & { + all_columns: string[]; + percent_metrics: QueryFormMetric[]; + include_time: boolean; + order_by_cols: string[]; +}; + +// eslint-disable-next-line no-undef +export default TableFormData; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/buildQuery.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/buildQuery.ts new file mode 100644 index 000000000000..76b38f32f2fc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/buildQuery.ts @@ -0,0 +1,54 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { buildQueryContext, QueryFormMetric } from '@superset-ui/core'; +import TableFormData from './TableFormData'; + +export default function buildQuery(formData: TableFormData) { + // Set the single QueryObject's groupby field with series in formData + return buildQueryContext(formData, baseQueryObject => { + const isTimeseries = formData.include_time; + let columns: string[] = []; + let { groupby } = baseQueryObject; + const orderby: [QueryFormMetric, boolean][] = []; + const sortby = formData.timeseries_limit_metric; + if (formData.all_columns && formData.all_columns.length > 0) { + columns = [...formData.all_columns]; + const orderByColumns = formData.order_by_cols || []; + orderByColumns.forEach(columnOrder => { + const parsedColumnOrder: [QueryFormMetric, boolean] = + JSON.parse(columnOrder); + orderby.push([parsedColumnOrder[0], parsedColumnOrder[1]]); + }); + groupby = []; + } else if (sortby) { + orderby.push([sortby, !formData.order_desc]); + } + + return [ + { + ...baseQueryObject, + columns, + groupby, + is_timeseries: isTimeseries, + orderby, + }, + ]; + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/components/HTMLRenderer.tsx b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/components/HTMLRenderer.tsx new file mode 100644 index 000000000000..720752ce5a15 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/components/HTMLRenderer.tsx @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { useMemo } from 'react'; +import dompurify from 'dompurify'; + +const isHTML = RegExp.prototype.test.bind(/(<([^>]+)>)/i); + +export default function HTMLRenderer({ value }: { value: string }) { + if (isHTML(value)) { + // eslint-disable-next-line react-hooks/rules-of-hooks + const html = useMemo( + () => ({ __html: dompurify.sanitize(value) }), + [value], + ); + return ( + // eslint-disable-next-line react/no-danger +
+ ); + } + + // eslint-disable-next-line react/jsx-no-useless-fragment + return <>{value}; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/createMetadata.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/createMetadata.ts new file mode 100644 index 000000000000..b673b23a375d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/createMetadata.ts @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { t, ChartMetadata } from '@superset-ui/core'; +import thumbnail from './images/thumbnail.png'; + +export default function createMetadata(useLegacyApi = false) { + return new ChartMetadata({ + canBeAnnotationTypes: ['EVENT', 'INTERVAL'], + description: '', + name: t('Table'), + thumbnail, + useLegacyApi, + }); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/getRenderer.tsx b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/getRenderer.tsx new file mode 100644 index 000000000000..b5a5abca5af7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/getRenderer.tsx @@ -0,0 +1,171 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable jsx-a11y/no-static-element-interactions */ +/* eslint-disable jsx-a11y/click-events-have-key-events */ +import React, { CSSProperties, useMemo } from 'react'; +import { HEIGHT_TO_PX } from '@airbnb/lunar/lib/components/DataTable/constants'; +import { RendererProps } from '@airbnb/lunar/lib/components/DataTable/types'; +import { TimeFormatter, NumberFormatter } from '@superset-ui/core'; +import HTMLRenderer from './components/HTMLRenderer'; + +const NEGATIVE_COLOR = '#FFA8A8'; +const POSITIVE_COLOR = '#ced4da'; +const SELECTION_COLOR = '#EBEBEB'; + +const NOOP = () => {}; + +const HEIGHT = HEIGHT_TO_PX.micro; + +export type ColumnType = { + key: string; + label: string; + format?: NumberFormatter | TimeFormatter | undefined; + type: 'metric' | 'string'; + maxValue?: number; + minValue?: number; +}; + +export type Cell = { + key: string; + value: any; +}; + +const NUMBER_STYLE: CSSProperties = { + marginLeft: 'auto', + marginRight: '4px', + zIndex: 10, +}; + +export default function getRenderer({ + column, + alignPositiveNegative, + colorPositiveNegative, + enableFilter, + isSelected, + handleCellSelected, +}: { + column: ColumnType; + alignPositiveNegative: boolean; + colorPositiveNegative: boolean; + enableFilter: boolean; + isSelected: (cell: Cell) => boolean; + handleCellSelected: (cell: Cell) => (...args: any[]) => void; +}) { + const { format, type } = column; + + const isMetric = type === 'metric'; + const cursorStyle = enableFilter && !isMetric ? 'pointer' : 'default'; + + const boxContainerStyle: CSSProperties = { + alignItems: 'center', + display: 'flex', + margin: '0px 16px', + position: 'relative', + textAlign: isMetric ? 'right' : 'left', + }; + + const baseBoxStyle: CSSProperties = { + cursor: cursorStyle, + margin: '4px -16px', + wordBreak: 'break-all', + }; + + const selectedBoxStyle: CSSProperties = { + ...baseBoxStyle, + backgroundColor: SELECTION_COLOR, + }; + + const getBoxStyle = enableFilter + ? (selected: boolean) => (selected ? selectedBoxStyle : baseBoxStyle) + : () => baseBoxStyle; + + const posExtent = Math.abs(Math.max(column.maxValue!, 0)); + const negExtent = Math.abs(Math.min(column.minValue!, 0)); + const total = posExtent + negExtent; + + return ({ keyName, row }: RendererProps) => { + const value = row.rowData.data[keyName]; + const cell = { key: keyName as string, value }; + const handleClick = isMetric + ? NOOP + : useMemo(() => handleCellSelected(cell), [cell]); + + let Parent; + if (isMetric) { + let left = 0; + let width = 0; + const numericValue = value as number; + if (alignPositiveNegative) { + width = Math.abs( + Math.round( + (numericValue / + Math.max(column.maxValue!, Math.abs(column.minValue!))) * + 100, + ), + ); + } else { + left = Math.round( + (Math.min(negExtent + numericValue, negExtent) / total) * 100, + ); + width = Math.round((Math.abs(numericValue) / total) * 100); + } + const color = + colorPositiveNegative && numericValue < 0 + ? NEGATIVE_COLOR + : POSITIVE_COLOR; + + Parent = ({ children }: { children: React.ReactNode }) => { + const barStyle: CSSProperties = { + background: color, + borderRadius: 3, + height: HEIGHT / 2 + 4, + left: `${left}%`, + position: 'absolute', + width: `${width}%`, + }; + + return ( + <> +
+
{children}
+ + ); + }; + } else { + Parent = React.Fragment; + } + + return ( +
+
+
+ + {format ? ( + format.format(value as number & Date) + ) : ( + + )} + +
+
+
+ ); + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/images/thumbnail.png new file mode 100644 index 000000000000..a5b8de9f12ea Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/index.ts new file mode 100644 index 000000000000..4d1b281aca79 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/index.ts @@ -0,0 +1,40 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartPlugin } from '@superset-ui/core'; +import Core from '@airbnb/lunar/lib'; +import transformProps from './transformProps'; +import createMetadata from './createMetadata'; +import buildQuery from './buildQuery'; +import TableFormData from './TableFormData'; + +Core.initialize({ name: 'superset-datatable' }); +const { aesthetic } = Core; +// @ts-ignore +aesthetic.globals = {}; + +export default class TableChartPlugin extends ChartPlugin { + constructor() { + super({ + buildQuery, + loadChart: () => import('./Table'), + metadata: createMetadata(), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/legacy/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/legacy/index.ts new file mode 100644 index 000000000000..604dc7712000 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/legacy/index.ts @@ -0,0 +1,38 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { ChartPlugin } from '@superset-ui/core'; +import Core from '@airbnb/lunar/lib'; +import transformProps from './transformProps'; +import createMetadata from '../createMetadata'; + +Core.initialize({ name: 'superset-datatable' }); + +const { aesthetic } = Core; +// @ts-ignore +aesthetic.globals = {}; + +export default class TableChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../Table'), + metadata: createMetadata(true), + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/legacy/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/legacy/transformProps.ts new file mode 100644 index 000000000000..f5ddc006dc4e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/legacy/transformProps.ts @@ -0,0 +1,93 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ChartProps } from '@superset-ui/core'; +import getProcessColumnsFunction from '../processColumns'; +import getProcessMetricsFunction from '../processMetrics'; +import getProcessDataFunction from '../processData'; + +const processColumns = getProcessColumnsFunction(); +const processMetrics = getProcessMetricsFunction(); +const processData = getProcessDataFunction(); + +const NOOP = () => {}; + +export default function transformProps(chartProps: ChartProps) { + const { + height, + datasource, + initialValues, + formData, + hooks, + queriesData, + width, + } = chartProps; + + const { onAddFilter = NOOP } = hooks; + + const { + alignPn, + colorPn, + includeSearch, + metrics: rawMetrics, + orderDesc, + pageLength, + percentMetrics, + tableFilter, + tableTimestampFormat, + timeseriesLimitMetric, + } = formData; + const { records, columns } = queriesData[0].data; + + const metrics = processMetrics({ + metrics: rawMetrics, + percentMetrics, + records, + }); + + const processedData = processData({ + timeseriesLimitMetric, + orderDesc, + records, + metrics, + }); + + const processedColumns = processColumns({ + columns, + metrics, + records, + tableTimestampFormat, + datasource, + }); + + return { + height, + width, + data: processedData, + alignPositiveNegative: alignPn, + colorPositiveNegative: colorPn, + columns: processedColumns, + filters: initialValues, + includeSearch, + onAddFilter, + orderDesc, + pageLength: pageLength && parseInt(pageLength, 10), + tableFilter, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/processColumns.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/processColumns.ts new file mode 100644 index 000000000000..a2d504783ffe --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/processColumns.ts @@ -0,0 +1,137 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + getTimeFormatter, + TimeFormatter, + getNumberFormatter, + NumberFormats, + NumberFormatter, + DTTM_ALIAS, +} from '@superset-ui/core'; +import { createSelector } from 'reselect'; +import { PlainObject } from './types'; + +type inputType = { + columns: string[]; + metrics: string[]; + records: any[]; + tableTimestampFormat: string; + datasource: PlainObject; +}; + +function processColumns( + columns: string[], + metrics: string[], + records: any[], + tableTimestampFormat: string, + datasource: PlainObject, +) { + const { columnFormats, verboseMap } = datasource; + + const dataArray: { + [key: string]: any[]; + } = {}; + + metrics.forEach(metric => { + const arr: any[] = []; + records.forEach(record => { + arr.push(record[metric]); + }); + + dataArray[metric] = arr; + }); + + const maxes: { + [key: string]: number; + } = {}; + const mins: { + [key: string]: number; + } = {}; + + metrics.forEach(metric => { + maxes[metric] = Math.max(...dataArray[metric]); + mins[metric] = Math.min(...dataArray[metric]); + }); + + const formatPercent = getNumberFormatter(NumberFormats.PERCENT_3_POINT); + const tsFormatter = getTimeFormatter(tableTimestampFormat); + + const processedColumns = columns.map((key: string) => { + let label = verboseMap[key]; + const formatString = columnFormats?.[key]; + let formatFunction: NumberFormatter | TimeFormatter | undefined; + let type: 'string' | 'metric' = 'string'; + + if (key === DTTM_ALIAS) { + formatFunction = tsFormatter; + } + + const extraField: { + [key: string]: any; + } = {}; + + if (metrics.includes(key)) { + formatFunction = getNumberFormatter(formatString); + type = 'metric'; + extraField.maxValue = maxes[key]; + extraField.minValue = mins[key]; + } + + // Handle verbose names for percents + if (!label) { + if (key.length > 0 && key[0] === '%') { + const cleanedKey = key.slice(1); + label = `% ${verboseMap[cleanedKey] || cleanedKey}`; + formatFunction = formatPercent; + } else { + label = key; + } + } + + return { + format: formatFunction, + key, + label, + type, + ...extraField, + }; + }); + + return processedColumns; +} + +const getCreateSelectorFunction = () => + createSelector( + (data: inputType) => data.columns, + data => data.metrics, + data => data.records, + data => data.tableTimestampFormat, + data => data.datasource, + (columns, metrics, records, tableTimestampFormat, datasource) => + processColumns( + columns, + metrics, + records, + tableTimestampFormat, + datasource, + ), + ); + +export default getCreateSelectorFunction; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/processData.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/processData.ts new file mode 100644 index 000000000000..20fa3d137ff6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/processData.ts @@ -0,0 +1,76 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { QueryFormMetric, AdhocMetric } from '@superset-ui/core'; +import { createSelector } from 'reselect'; +import { PlainObject } from './types'; + +type inputType = { + timeseriesLimitMetric: QueryFormMetric; + orderDesc: boolean; + records: PlainObject[]; + metrics: string[]; +}; + +function processData( + timeseriesLimitMetric: QueryFormMetric, + orderDesc: boolean, + records: PlainObject[], + metrics: string[], +) { + const sortByKey = + timeseriesLimitMetric && + ((timeseriesLimitMetric as AdhocMetric).label || + (timeseriesLimitMetric as string)); + + let processedRecords = records; + + if (sortByKey) { + processedRecords = records + .slice() + .sort( + orderDesc + ? (a, b) => b[sortByKey] - a[sortByKey] + : (a, b) => a[sortByKey] - b[sortByKey], + ); + } + + return processedRecords.map( + sortByKey && !metrics.includes(sortByKey) + ? row => { + const data = { ...row }; + delete data[sortByKey]; + + return { data }; + } + : row => ({ data: row }), + ); +} + +const getCreateSelectorFunction = () => + createSelector( + (data: inputType) => data.timeseriesLimitMetric, + data => data.orderDesc, + data => data.records, + data => data.metrics, + (timeseriesLimitMetric, orderDesc, records, metrics) => + processData(timeseriesLimitMetric, orderDesc, records, metrics), + ); + +export default getCreateSelectorFunction; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/processMetrics.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/processMetrics.ts new file mode 100644 index 000000000000..909e04e26e54 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/processMetrics.ts @@ -0,0 +1,57 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { QueryFormMetric, AdhocMetric } from '@superset-ui/core'; +import { createSelector } from 'reselect'; +import { PlainObject } from './types'; + +type inputType = { + metrics: QueryFormMetric[]; + percentMetrics: QueryFormMetric[]; + records: PlainObject[]; +}; + +function processMetrics( + metrics: QueryFormMetric[], + percentMetrics: QueryFormMetric[], + records: PlainObject[], +) { + const processedMetrics = (metrics || []).map( + m => (m as AdhocMetric).label ?? (m as string), + ); + + const processedPercentMetrics = (percentMetrics || []) + .map(m => (m as AdhocMetric).label ?? (m as string)) + .map(m => `%${m}`); + + return processedMetrics + .concat(processedPercentMetrics) + .filter(m => typeof records[0][m] === 'number'); +} + +const getCreateSelectorFunction = () => + createSelector( + (data: inputType) => data.metrics, + data => data.percentMetrics, + data => data.records, + (metrics, percentMetrics, records) => + processMetrics(metrics, percentMetrics, records), + ); + +export default getCreateSelectorFunction; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/transformProps.ts new file mode 100644 index 000000000000..0686f7d2859a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/transformProps.ts @@ -0,0 +1,162 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + ChartProps, + QueryFormMetric, + AdhocMetric, + DTTM_ALIAS, +} from '@superset-ui/core'; +import getProcessColumnsFunction from './processColumns'; +import getProcessMetricsFunction from './processMetrics'; +import getProcessDataFunction from './processData'; + +const processColumns = getProcessColumnsFunction(); +const processMetrics = getProcessMetricsFunction(); +const processData = getProcessDataFunction(); + +type PlainObject = { + [key: string]: any; +}; + +function transformData(data: PlainObject[], formData: PlainObject) { + const { groupby = [], metrics = [], allColumns = [] } = formData; + + const columns = new Set( + [...groupby, ...metrics, ...allColumns].map( + column => column.label || column, + ), + ); + + let records = data; + + // handle timestamp columns + if (formData.includeTime) { + columns.add(DTTM_ALIAS); + } + + // handle percentage columns. + const percentMetrics: string[] = (formData.percentMetrics || []).map( + (metric: QueryFormMetric) => + (metric as AdhocMetric).label ?? (metric as string), + ); + + if (percentMetrics.length > 0) { + const sumPercentMetrics = data.reduce((sumMetrics, item) => { + const newSumMetrics = { ...sumMetrics }; + percentMetrics.forEach(metric => { + newSumMetrics[metric] = (sumMetrics[metric] || 0) + (item[metric] || 0); + }); + + return newSumMetrics; + }, {}); + records = data.map(item => { + const newItem = { ...item }; + percentMetrics.forEach(metric => { + newItem[`%${metric}`] = + sumPercentMetrics[metric] === 0 + ? null + : newItem[metric] / sumPercentMetrics[metric]; + }); + + return newItem; + }); + percentMetrics.forEach(metric => { + columns.add(`%${metric}`); + }); + } + + // handle sortedby column + if (formData.timeseriesLimitMetric) { + const metric = + formData.timeseriesLimitMetric.label || formData.timeseriesLimitMetric; + columns.add(metric); + } + + return { + columns: [...columns], + records, + }; +} + +const NOOP = () => {}; + +export default function transformProps(chartProps: ChartProps) { + const { + height, + width, + datasource, + initialValues, + formData, + hooks, + queriesData, + } = chartProps; + + const { onAddFilter = NOOP } = hooks; + + const { + alignPn, + colorPn, + includeSearch, + metrics: rawMetrics, + orderDesc, + pageLength, + percentMetrics, + tableFilter, + tableTimestampFormat, + timeseriesLimitMetric, + } = formData; + const { records, columns } = transformData(queriesData[0].data, formData); + + const metrics = processMetrics({ + metrics: rawMetrics, + percentMetrics, + records, + }); + + const processedData = processData({ + metrics, + orderDesc, + records, + timeseriesLimitMetric, + }); + + const processedColumns = processColumns({ + columns, + datasource, + metrics, + records, + tableTimestampFormat, + }); + + return { + alignPositiveNegative: alignPn, + colorPositiveNegative: colorPn, + columns: processedColumns, + data: processedData, + filters: initialValues, + height, + includeSearch, + onAddFilter, + orderDesc, + pageLength: pageLength && parseInt(pageLength, 10), + tableFilter, + width, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/types.ts new file mode 100644 index 000000000000..d82599263c4e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/src/types.ts @@ -0,0 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export type PlainObject = { + [key: string]: any; +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/test/buildQuery.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/test/buildQuery.test.ts new file mode 100644 index 000000000000..f656b09332db --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/test/buildQuery.test.ts @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import buildQuery from '../src/buildQuery'; + +describe('TableVis buildQuery', () => { + const formData = { + datasource: '5__table', + granularity_sqla: 'ds', + series: 'foo', + viz_type: 'table', + all_columns: ['a', 'b', 'c'], + percent_metrics: ['a'], + include_time: false, + order_by_cols: [], + }; + + it('should build groupby with series in form data', () => { + const queryContext = buildQuery(formData); + const [query] = queryContext.queries; + expect(query.metrics![0].label).toEqual('a'); + expect(query.groupby).toHaveLength(0); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/test/processData.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/test/processData.test.ts new file mode 100644 index 000000000000..0d1a9a670a4c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/test/processData.test.ts @@ -0,0 +1,78 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import getProcessDataFunction from '../src/processData'; + +describe('processData', () => { + const processData = getProcessDataFunction(); + const timeseriesLimitMetric = 'a'; + const orderDesc = true; + const records = [ + { + a: 1, + b: 1, + c: 3, + }, + { + a: 2, + b: 1, + c: 2, + }, + { + a: 3, + b: 1, + c: 1, + }, + ]; + const metrics = ['a', 'b', 'c']; + + it('returns sorted result', () => { + const result = processData({ + timeseriesLimitMetric, + orderDesc, + records, + metrics, + }); + const maxValue = Math.max(...records.map(r => r[timeseriesLimitMetric])); + const minValue = Math.min(...records.map(r => r[timeseriesLimitMetric])); + expect(result[0].data[timeseriesLimitMetric]).toEqual(maxValue); + expect(result[result.length - 1].data[timeseriesLimitMetric]).toEqual( + minValue, + ); + }); + + it('removes the timeseriesLimitMetric column if it is not included in metrics', () => { + const filteredMetrics = metrics.filter( + metric => metric !== timeseriesLimitMetric, + ); + const result = processData({ + timeseriesLimitMetric, + orderDesc, + records, + metrics: filteredMetrics, + }); + result.forEach(row => { + expect(row.data).toEqual( + expect.not.objectContaining({ + [timeseriesLimitMetric]: expect(Number), + }), + ); + }); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/test/processMetrics.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/test/processMetrics.test.ts new file mode 100644 index 000000000000..70d7311cc6d1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/test/processMetrics.test.ts @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import getProcessMetricsFunction from '../src/processMetrics'; + +describe('processData', () => { + const processMetrics = getProcessMetricsFunction(); + const records = [ + { + a: 1, + '%b': 0.4, + c: 3, + }, + { + a: 2, + '%b': 0.4, + c: 2, + }, + { + a: 3, + '%b': 0.2, + c: 1, + }, + ]; + const metrics = ['a']; + const percentMetrics = ['b']; + + it('returns sorted result', () => { + const result = processMetrics({ + records, + metrics, + percentMetrics, + }); + const expected = ['a', '%b']; + expect(result).toEqual(expect.arrayContaining(expected)); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/types/external.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/types/external.d.ts new file mode 100644 index 000000000000..fe6b1981edbc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/hold-potentially-deprecate/superset-ui-plugin-chart-table/types/external.d.ts @@ -0,0 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +declare module '*.png'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/README.md b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/README.md new file mode 100644 index 000000000000..fa1adc3712dd --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/README.md @@ -0,0 +1,33 @@ +## @superset-ui/plugin-chart-choropleth-map + +[![Version](https://img.shields.io/npm/v/@superset-ui/plugin-chart-choropleth-map.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/plugin-chart-choropleth-map) +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui.svg?path=packages%2Fsuperset-ui-plugin-chart-choropleth-map&style=flat-square)](https://david-dm.org/apache-superset/superset-ui?path=packages/superset-ui-plugin-chart-choropleth-map) + +This plugin provides Choropleth Map for Superset. + +### Usage + +Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to +lookup this chart throughout the app. + +```js +import ChoroplethMapChartPlugin from '@superset-ui/plugin-chart-choropleth-map'; + +new ChoroplethMapChartPlugin().configure({ key: 'choropleth-map' }).register(); +``` + +Then use it via `SuperChart`. See +[storybook](https://apache-superset.github.io/superset-ui/?selectedKind=plugin-chart-choropleth-map) +for more details. + +```js + +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/package.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/package.json new file mode 100644 index 000000000000..518dce25f331 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/package.json @@ -0,0 +1,51 @@ +{ + "name": "@superset-ui/plugin-chart-choropleth-map", + "version": "0.17.41", + "description": "Superset Chart - Choropleth Map", + "sideEffects": false, + "private": true, + "main": "lib/index.js", + "module": "esm/index.js", + "files": [ + "esm", + "lib" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "superset" + ], + "author": "Superset", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "publishConfig": { + "access": "public" + }, + "dependencies": { + "@superset-ui/chart-controls": "0.17.41", + "@superset-ui/core": "0.17.40", + "@types/d3-geo": "^1.11.1", + "@types/geojson": "^7946.0.3", + "@types/topojson-client": "^3.0.0", + "@types/topojson-specification": "^1.0.0", + "@vx/clip-path": "^0.0.197", + "@vx/event": "^0.0.198", + "@vx/pattern": "^0.0.197", + "@vx/tooltip": "^0.0.199", + "@vx/zoom": "^0.0.197", + "d3-geo": "^1.12.0", + "encodable": "^0.7.6", + "geojson": "^0.5.0", + "lodash": "^4.17.15", + "topojson-client": "^3.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.13.1" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/ChoroplethMap.tsx b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/ChoroplethMap.tsx new file mode 100644 index 000000000000..86b2f392cf8a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/ChoroplethMap.tsx @@ -0,0 +1,342 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import React from 'react'; +import { t } from '@superset-ui/core'; +import { Zoom } from '@vx/zoom'; +import { localPoint } from '@vx/event'; +import { RectClipPath } from '@vx/clip-path'; +import { withTooltip } from '@vx/tooltip'; +import { keyBy } from 'lodash'; +import { geoPath } from 'd3-geo'; +import type { FeatureCollection } from 'geojson'; +import { WithTooltipProvidedProps } from '@vx/tooltip/lib/enhancers/withTooltip'; +import loadMap from './loadMap'; +import MapMetadata from './MapMetadata'; +import { + PADDING, + RelativeDiv, + IconButton, + TextButton, + ZoomControls, + MiniMapControl, +} from './components'; +import { + ChoroplethMapEncoding, + choroplethMapEncoderFactory, + DefaultChannelOutputs, +} from './Encoder'; +import MapTooltip, { MapDataPoint } from './MapTooltip'; + +const INITIAL_TRANSFORM = { + scaleX: 1, + scaleY: 1, + translateX: 0, + translateY: 0, + skewX: 0, + skewY: 0, +}; + +/** + * These props should be stored when saving the chart. + */ +export type ChoroplethMapVisualProps = { + encoding?: Partial; + map?: string; +}; + +export type ChoroplethMapProps = ChoroplethMapVisualProps & + WithTooltipProvidedProps & { + data: Record[]; + height: number; + width: number; + }; + +const defaultProps = { + data: [], + encoding: {}, + map: 'world', +}; + +const missingItem = DefaultChannelOutputs; + +class ChoroplethMap extends React.PureComponent< + ChoroplethMapProps & typeof defaultProps, + { + mapShape?: { + metadata: MapMetadata; + object: FeatureCollection; + }; + mapData: { + [key: string]: MapDataPoint; + }; + showMiniMap: boolean; + } +> { + static defaultProps = defaultProps; + + createEncoder = choroplethMapEncoderFactory.createSelector(); + + constructor(props: ChoroplethMapProps & typeof defaultProps) { + super(props); + + this.state = { + mapData: {}, + mapShape: undefined, + showMiniMap: true, + }; + } + + componentDidMount() { + this.loadMap(); + this.processData(); + } + + componentDidUpdate(prevProps: ChoroplethMapProps) { + if (prevProps.map !== this.props.map) { + this.loadMap(); + } + if ( + prevProps.data !== this.props.data || + prevProps.encoding !== this.props.encoding + ) { + this.processData(); + } + } + + handleMouseOver = ( + event: React.MouseEvent, + datum?: MapDataPoint, + ) => { + const coords = localPoint(event); + this.props.showTooltip({ + tooltipLeft: coords?.x, + tooltipTop: coords?.y, + tooltipData: datum, + }); + }; + + toggleMiniMap = () => { + const { showMiniMap } = this.state; + this.setState({ + showMiniMap: !showMiniMap, + }); + }; + + processData() { + const { data, encoding } = this.props; + const encoder = this.createEncoder(encoding); + const { key, fill, opacity, stroke, strokeWidth } = encoder.channels; + + encoder.setDomainFromDataset(data); + + const mapData = keyBy( + data.map(d => ({ + key: key.getValueFromDatum(d, DefaultChannelOutputs.key), + fill: fill.encodeDatum(d, DefaultChannelOutputs.fill), + opacity: opacity.encodeDatum(d, DefaultChannelOutputs.opacity), + stroke: stroke.encodeDatum(d, DefaultChannelOutputs.stroke), + strokeWidth: strokeWidth.encodeDatum( + d, + DefaultChannelOutputs.strokeWidth, + ), + datum: d, + })), + d => d.key, + ); + + this.setState({ mapData }); + } + + loadMap() { + const { map } = this.props; + this.setState({ mapShape: undefined }); + loadMap(map).then(mapShape => { + this.setState({ mapShape }); + }); + } + + renderMap() { + const { height, width, hideTooltip } = this.props; + const { mapShape, mapData } = this.state; + + if (typeof mapShape !== 'undefined') { + const { metadata, object } = mapShape; + const { keyAccessor } = metadata; + const projection = metadata.createProjection().fitExtent( + [ + [PADDING, PADDING], + [width - PADDING * 2, height - PADDING * 2], + ], + object, + ); + const path = geoPath().projection(projection); + + return object.features.map(f => { + const key = keyAccessor(f); + const encodedDatum = mapData[key] || missingItem; + const { stroke, fill, strokeWidth, opacity } = encodedDatum; + + return ( + // eslint-disable-next-line jsx-a11y/mouse-events-have-key-events + this.handleMouseOver(event, encodedDatum)} + onMouseMove={event => this.handleMouseOver(event, encodedDatum)} + onMouseOut={hideTooltip} + onBlur={hideTooltip} + /> + ); + }); + } + + return null; + } + + render() { + const { + height, + width, + encoding, + tooltipOpen, + tooltipLeft, + tooltipTop, + tooltipData, + } = this.props; + const { showMiniMap } = this.state; + const encoder = this.createEncoder(encoding); + + const renderedMap = this.renderMap(); + const miniMapTransform = `translate(${(width * 3) / 4 - PADDING}, ${ + (height * 3) / 4 - PADDING + }) scale(0.25)`; + + return ( + <> + + {zoom => ( + + + + { + if (!zoom.isDragging) return; + zoom.dragEnd(); + }} + onDoubleClick={event => { + const point = localPoint(event) || undefined; + zoom.scale({ scaleX: 1.1, scaleY: 1.1, point }); + }} + > + + {renderedMap} + + {showMiniMap && ( + + + {renderedMap} + + + )} + + + zoom.scale({ scaleX: 1.2, scaleY: 1.2 })} + > + + + + zoom.scale({ scaleX: 0.8, scaleY: 0.8 })} + > + - + + + Reset + + + + + {showMiniMap ? t('Hide Mini Map') : t('Show Mini Map')} + + + + )} + + {tooltipOpen && ( + + )} + + ); + } +} + +export default withTooltip(ChoroplethMap); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/Encoder.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/Encoder.ts new file mode 100644 index 000000000000..ec55985ab30a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/Encoder.ts @@ -0,0 +1,69 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + createEncoderFactory, + DeriveEncoding, + Encoder, + DeriveChannelOutputs, +} from 'encodable'; + +type ChoroplethMapEncodingConfig = { + key: ['Text', string]; + fill: ['Color', string]; + opacity: ['Numeric', number]; + stroke: ['Color', string]; + strokeWidth: ['Numeric', number]; + tooltip: ['Text', string, 'multiple']; +}; + +export type ChoroplethMapEncoding = DeriveEncoding; + +export type ChoroplethMapEncoder = Encoder; + +export type ChoroplethMapChannelOutputs = + DeriveChannelOutputs; + +export const DefaultChannelOutputs = { + key: '', + fill: '#f0f0f0', + opacity: 1, + stroke: '#ccc', + strokeWidth: 1, +}; + +export const choroplethMapEncoderFactory = + createEncoderFactory({ + channelTypes: { + key: 'Text', + fill: 'Color', + opacity: 'Numeric', + stroke: 'Color', + strokeWidth: 'Numeric', + tooltip: 'Text', + }, + defaultEncoding: { + key: { field: 'key', title: 'Location' }, + fill: { value: DefaultChannelOutputs.fill }, + opacity: { value: DefaultChannelOutputs.opacity }, + stroke: { value: DefaultChannelOutputs.stroke }, + strokeWidth: { value: DefaultChannelOutputs.strokeWidth }, + tooltip: [], + }, + }); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/MapMetadata.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/MapMetadata.ts new file mode 100644 index 000000000000..f65b4738490b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/MapMetadata.ts @@ -0,0 +1,57 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import type { FeatureCollection } from 'geojson'; +import { feature } from 'topojson-client'; +import { get } from 'lodash/fp'; +import { RawMapMetadata } from '../types'; +import Projection from './Projection'; + +export default class MapMetadata { + config: RawMapMetadata; + + keyAccessor: (...args: unknown[]) => string; + + constructor(metadata: RawMapMetadata) { + const { keyField } = metadata; + + this.config = metadata; + this.keyAccessor = get(keyField); + } + + loadMap(): Promise { + const { key } = this.config; + + return this.config.type === 'topojson' + ? this.config + .load() + .then(map => feature(map, map.objects[key]) as FeatureCollection) + : this.config.load(); + } + + createProjection() { + const { projection = 'Mercator', rotate } = this.config; + const projectionFn = Projection[projection](); + if (rotate) { + projectionFn.rotate(rotate); + } + + return projectionFn; + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/MapTooltip.tsx b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/MapTooltip.tsx new file mode 100644 index 000000000000..e43f43630fc0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/MapTooltip.tsx @@ -0,0 +1,85 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { isCompleteFieldDef } from 'encodable'; +import { uniqBy } from 'lodash'; +import { Tooltip } from '@vx/tooltip'; +import { TooltipFrame, TooltipTable } from '@superset-ui/core'; +import { ChoroplethMapChannelOutputs, ChoroplethMapEncoder } from './Encoder'; + +export type MapDataPoint = Omit & { + datum: Record; +}; + +export type MapTooltipProps = { + top?: number; + left?: number; + encoder: ChoroplethMapEncoder; + tooltipData?: MapDataPoint; +}; + +export default function MapTooltip({ + encoder, + left, + top, + tooltipData, +}: MapTooltipProps) { + if (!tooltipData) { + return null; + } + + const { channels } = encoder; + const { key, fill, stroke, strokeWidth, opacity, tooltip } = channels; + const { datum } = tooltipData; + + const tooltipRows = [ + { + key: 'key', + keyColumn: key.getTitle(), + valueColumn: key.formatDatum(datum), + }, + ]; + + [fill, stroke, opacity, strokeWidth].forEach(channel => { + if (isCompleteFieldDef(channel.definition)) { + tooltipRows.push({ + key: channel.name as string, + keyColumn: channel.getTitle(), + valueColumn: channel.formatDatum(datum), + }); + } + }); + + tooltip.forEach(g => { + tooltipRows.push({ + key: `${g.name}`, + keyColumn: g.getTitle(), + valueColumn: g.formatDatum(datum), + }); + }); + + return ( + + + row.keyColumn)} /> + + + ); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/Projection.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/Projection.ts new file mode 100644 index 000000000000..0ddbc6c00ab7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/Projection.ts @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + geoMercator, + geoEquirectangular, + geoAlbers, + geoAlbersUsa, +} from 'd3-geo'; + +const Projection = { + Mercator: geoMercator, + Equirectangular: geoEquirectangular, + Albers: geoAlbers, + AlbersUsa: geoAlbersUsa, +}; + +type Projection = keyof typeof Projection; + +export default Projection; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/components.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/components.ts new file mode 100644 index 000000000000..54e9b0f2612c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/components.ts @@ -0,0 +1,67 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/// +import { styled, supersetTheme } from '@superset-ui/core'; + +export const PADDING = supersetTheme.gridUnit * 4; + +export const RelativeDiv = styled.div` + position: relative; +`; + +export const ZoomControls = styled.div` + position: absolute; + top: ${PADDING}px; + right: ${PADDING}px; + display: flex; + flex-direction: column; + align-items: flex-end; +`; + +export const MiniMapControl = styled.div` + position: absolute; + bottom: ${PADDING + 6}px; + right: ${PADDING + 1}px; +`; + +export const IconButton = styled.button` + width: ${({ theme }) => theme.gridUnit * 6}px; + font-size: ${({ theme }) => theme.typography.sizes.xl}px; + text-align: center; + color: #222; + margin: 0px; + margin-bottom: 2px; + background: #f5f8fb; + padding: 0px ${({ theme }) => theme.gridUnit}px; + border-radius: ${({ theme }) => theme.borderRadius}px; + border: none; +`; + +export const TextButton = styled.button` + text-align: center; + font-size: ${({ theme }) => theme.typography.sizes.s}px; + color: #222; + margin: 0px; + background: #f5f8fb; + padding: ${({ theme }) => theme.gridUnit / 2}px + ${({ theme }) => theme.gridUnit * 1.5}px; + border-radius: ${({ theme }) => theme.borderRadius}px; + border: none; +`; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/loadMap.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/loadMap.ts new file mode 100644 index 000000000000..8d1bd6eb6aa9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/chart/loadMap.ts @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { mapsLookup } from '../maps'; +import MapMetadata from './MapMetadata'; + +export default function loadMap(key: string) { + if (key in mapsLookup) { + const metadata = new MapMetadata(mapsLookup[key]); + return metadata.loadMap().then(object => ({ metadata, object })); + } + + return Promise.reject(new Error(`Unknown map: ${key}`)); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/configureEncodable.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/configureEncodable.ts new file mode 100644 index 000000000000..05a204128652 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/configureEncodable.ts @@ -0,0 +1,83 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + Encodable, + ColorSchemeResolver, + TimeFormatResolver, + CategoricalColorScaleResolver, + defaultColorSchemeResolver, + addPrefix, +} from 'encodable'; +import { + CategoricalColorNamespace, + getCategoricalSchemeRegistry, + getSequentialSchemeRegistry, + getNumberFormatter, + getTimeFormatter, + LOCAL_PREFIX, + getTimeFormatterRegistry, +} from '@superset-ui/core'; + +const timeFormat: TimeFormatResolver = ({ + format, + formatInLocalTime = false, +} = {}) => { + const formatString = formatInLocalTime + ? addPrefix( + LOCAL_PREFIX, + format ?? getTimeFormatterRegistry().getDefaultKey()!, + ) + : format; + + return getTimeFormatter(formatString); +}; + +const colorSchemeResolver: ColorSchemeResolver = ({ + name, + type = 'categorical', +} = {}) => { + if (type === 'sequential') { + const scheme = getSequentialSchemeRegistry().get(name); + + return typeof scheme === 'undefined' + ? scheme + : { type: 'sequential', ...scheme }; + } + if (type === 'categorical') { + const scheme = getCategoricalSchemeRegistry().get(name); + + return typeof scheme === 'undefined' + ? scheme + : { type: 'categorical', ...scheme }; + } + return defaultColorSchemeResolver({ name, type }); +}; + +const colorScaleResolver: CategoricalColorScaleResolver = ({ + name, + namespace, +} = {}) => CategoricalColorNamespace.getScale(name, namespace); + +export default function configureEncodable() { + Encodable.setNumberFormatResolver(getNumberFormatter) + .setTimeFormatResolver(timeFormat) + .setColorSchemeResolver(colorSchemeResolver) + .setCategoricalColorScaleResolver(colorScaleResolver); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/images/thumbnail.png b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/images/thumbnail.png new file mode 100644 index 000000000000..fd31d5b8ff8b Binary files /dev/null and b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/images/thumbnail.png differ diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/index.ts new file mode 100644 index 000000000000..d9eb316b4f52 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/index.ts @@ -0,0 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as ChoroplethMapChartPlugin } from './plugin'; +export { maps, mapsLookup } from './maps'; +export { default as configureEncodable } from './configureEncodable'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/belgium-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/belgium-topo.json new file mode 100644 index 000000000000..9449de59133f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/belgium-topo.json @@ -0,0 +1,3131 @@ +{ + "type": "Topology", + "arcs": [ + [ + [11670, 14542], + [17, -7], + [58, 5], + [32, -66], + [9, -29], + [2, -47], + [17, -22], + [1, -20], + [-19, -33], + [43, -91], + [0, -28], + [-48, -27], + [-14, -18], + [-12, -44], + [-3, -49], + [5, -26], + [50, -9], + [52, -36], + [42, -42], + [40, -49], + [28, -56], + [11, -48], + [2, -87], + [-7, -62], + [-14, -42], + [-50, -20], + [-28, -48], + [-1, -20], + [13, -35], + [15, -15], + [59, -36], + [46, -36], + [42, -26], + [3, -26], + [-24, -24], + [-86, -39], + [0, -50], + [-65, -7], + [-73, -25], + [-28, -15], + [-55, -43], + [-40, -17], + [-60, 16], + [-81, -36], + [-79, -33], + [-36, 4], + [-8, 37], + [-19, 11], + [-59, 11], + [-65, 6], + [-32, 12], + [-54, 0], + [-86, 9], + [14, 57], + [3, 43], + [-7, 34], + [-15, 13], + [-43, 67], + [-31, 39], + [-47, 8], + [-13, 23], + [0, 36], + [-25, 9], + [-128, 17], + [-23, 22], + [-28, 10], + [-42, 1], + [-18, 8], + [-16, 40], + [-26, 15], + [-38, 8], + [-4, 16], + [16, 38], + [33, 25], + [19, 35], + [5, 35], + [10, 16], + [32, 13], + [50, 3], + [40, 19], + [31, 6], + [17, 24], + [12, 50], + [1, 69], + [7, 18], + [-14, 29], + [-24, 20], + [-7, 25], + [10, 35], + [65, 75], + [44, 47], + [35, 25], + [-33, 55], + [-4, 27], + [24, 14], + [13, 53], + [57, -11], + [33, -1], + [30, 8], + [79, 56], + [38, 11], + [105, -4], + [56, -11], + [28, -14], + [24, 15], + [70, 55], + [16, 8], + [20, 27], + [44, 19], + [64, -2] + ], + [ + [15151, 20146], + [29, -60], + [-45, -14], + [-46, -27], + [-12, -47], + [-2, -41], + [7, -49], + [-43, -25], + [-50, 8], + [-52, 27], + [-12, 58], + [5, 101], + [19, 25], + [40, 14], + [41, -10], + [121, 40] + ], + [ + [16891, 18169], + [-62, -136], + [-13, -67], + [-4, -160], + [3, -76], + [11, -44], + [25, -46], + [85, -61], + [25, -33], + [40, -40], + [24, -46], + [23, -58], + [15, -78], + [13, -46], + [12, -62], + [20, -57], + [-8, -51], + [-34, -77], + [-57, -91], + [-72, -19], + [-35, -3], + [-105, -2], + [-43, -14], + [-26, -21], + [-28, -46], + [-31, -69], + [-14, -46], + [-260, 7], + [-93, 9], + [-48, -42], + [-43, -46], + [-40, -79], + [-131, -183], + [-43, -30], + [-126, -24], + [-56, -26], + [-52, -31], + [-59, -13], + [-113, -4], + [-44, -18], + [-48, -50], + [-71, -134], + [-45, -68], + [-15, -34], + [-18, -59] + ], + [ + [15350, 15895], + [-72, 28], + [-80, 24], + [-84, 10], + [-43, -2], + [-31, -6], + [-37, -18], + [-58, -18], + [-74, -11], + [-35, -13], + [-30, -22], + [-75, -69], + [-30, -24], + [-73, -48], + [-58, -25], + [-64, -33], + [-60, -10], + [-136, 3], + [-47, 76], + [-69, 91], + [-36, 19], + [-63, 25], + [-78, 49], + [-76, -41], + [-30, -48], + [-76, -37], + [-62, -26], + [-26, -19], + [-33, -41], + [-30, -28], + [-28, -62], + [-48, -73], + [-66, -50], + [-11, 133], + [-24, 52], + [-26, 24], + [-31, 16], + [-45, 5], + [-49, -4], + [-84, 5], + [-75, 1], + [-48, -4], + [-42, -9], + [-29, -54], + [-50, -26], + [-47, -35], + [-47, -55], + [-56, -95], + [-58, -16], + [-42, 0], + [-49, 18], + [-95, 47], + [-75, 19], + [-111, 39], + [-33, 29], + [-55, 29], + [-33, 8], + [-85, 15], + [-19, -48], + [-16, -61], + [-18, -39], + [-16, -21], + [-51, -12], + [-40, 10], + [-80, 37], + [-46, 8], + [-46, -3], + [-56, -17], + [-89, -22], + [-39, -3], + [-29, 8], + [-52, 32], + [-47, 24], + [-73, 14], + [4, 148], + [-3, 34], + [-14, 29], + [-39, 15], + [-45, -2], + [-49, -15], + [-128, 39], + [-136, 26], + [-64, 59], + [-56, 35], + [-63, 22], + [-44, 7], + [-46, -2], + [-37, -6], + [-116, -36], + [-33, 5], + [-30, 12] + ], + [ + [10626, 15915], + [-123, -43], + [-35, -9], + [-59, -3], + [-108, 4], + [13, 113], + [-1, 124], + [-16, 57], + [-13, 68], + [-24, 62], + [-47, 67], + [-30, 69], + [-3, 47], + [14, 57], + [23, 39], + [51, 47], + [109, 109], + [53, 31], + [49, 7], + [63, -1], + [50, -6], + [70, -20], + [74, -4], + [61, 9], + [59, 24], + [85, 21], + [60, 2], + [91, -3], + [51, 101], + [3, 175], + [3, 456], + [-44, 71], + [-24, 76], + [-25, 62], + [-36, 64], + [-29, 84], + [-14, 68], + [-15, 56], + [-10, 109], + [-11, 66], + [65, 150], + [5, 34], + [-4, 33], + [-30, 46], + [-110, 75], + [-21, 27], + [-23, 50], + [-25, 87], + [-6, 128], + [-9, 49], + [-14, 29], + [-43, 67], + [-49, 63], + [-32, 49], + [-31, 28], + [-60, 44] + ], + [ + [10554, 19130], + [-12, 19], + [-45, 17], + [-8, 68], + [-39, 46], + [33, 61], + [83, 5], + [102, -2], + [166, 5], + [13, 33], + [10, 2], + [357, 10], + [57, -212], + [126, 5], + [84, -7], + [106, -5], + [74, 42], + [90, 38], + [30, 87], + [-18, 100], + [-156, 182], + [-48, 140], + [20, 321], + [85, 107], + [39, 17], + [70, 40], + [104, 69], + [151, 56], + [75, 46], + [68, -10], + [99, 10], + [86, 20], + [119, 19], + [42, -55], + [47, -75], + [-15, -42], + [-67, -106], + [-34, -59], + [-20, -51], + [1, -16], + [42, -225], + [338, 79], + [37, -16], + [110, -22], + [115, -9], + [51, -29], + [43, -4], + [47, 19], + [40, -7], + [10, 26], + [102, -19], + [0, 54], + [-10, 75], + [8, 67], + [89, 61], + [92, 56], + [29, 103], + [46, 17], + [26, 28], + [30, 44], + [27, 73], + [27, 52], + [96, 112], + [171, 65], + [161, -69], + [212, -178], + [8, -223], + [-67, -191], + [36, -177], + [-37, 15], + [-116, 17], + [-59, 23], + [-96, 43], + [-80, -31], + [30, -82], + [29, -57], + [54, -43], + [39, -18], + [223, -2], + [326, 65], + [258, -175], + [65, -11], + [57, 45], + [100, 121], + [63, 66], + [80, 71], + [68, 66], + [76, 59], + [27, 59], + [14, 58], + [24, 48], + [-1, 45], + [-11, 48], + [18, 67], + [29, 52], + [50, 58], + [43, 41], + [87, -142], + [195, -48], + [80, -185], + [17, -210], + [-131, -245], + [-5, -99], + [293, -360], + [90, -459], + [257, 31], + [24, 21], + [106, 9], + [74, 21], + [145, -107], + [80, -81], + [-51, -179], + [-58, -152], + [11, -61], + [59, -50] + ], + [ + [21023, 12994], + [-42, -104], + [-26, -80], + [-3, -67], + [13, -58], + [4, -98], + [-3, -83], + [-58, 1], + [-75, -11], + [-60, 2], + [-133, 35], + [-55, 19], + [-134, 16], + [-39, 59], + [-27, 63], + [-62, 63], + [-31, 8], + [-94, 13], + [-72, 28], + [-60, 36], + [-29, 8], + [-28, -2], + [-41, -25], + [-51, -16], + [-67, -1], + [-39, 15], + [-27, 43], + [-39, 93], + [-4, 51] + ], + [ + [19741, 13002], + [19, -21], + [22, 6], + [49, 40], + [161, -1], + [140, 163], + [43, 10], + [23, 23], + [53, 33], + [61, -52], + [20, -52], + [27, -55], + [17, 4], + [126, -101], + [121, 40], + [146, -29], + [160, 84], + [94, -100] + ], + [ + [19732, 13505], + [-64, -34], + [-41, -37], + [-38, -50], + [-64, -67], + [-123, -121], + [-51, -40], + [-55, -27], + [-48, -15], + [-96, -37], + [-70, -15], + [-128, -38], + [-95, -4], + [-60, -40], + [-28, -33], + [-32, -87], + [-6, -71], + [-74, -39], + [-46, -19], + [-80, -24], + [-18, -19], + [-19, -40], + [-55, -13], + [-60, 0], + [-45, -9], + [-38, -26], + [-44, -52], + [-42, -20], + [-85, -17], + [-63, 21], + [-65, 27], + [-32, 32], + [-7, 50], + [5, 116], + [-4, 44], + [-11, 28], + [-20, 17], + [-62, -5], + [-80, -18], + [-83, -8], + [-32, -11], + [-93, -50], + [-73, -29], + [-66, -43], + [-19, -17], + [-60, -80], + [-127, 39], + [-55, 4], + [-22, -4], + [-55, -26], + [-43, -28], + [-41, -15], + [-35, -3], + [-45, 8], + [-112, 48] + ], + [ + [16827, 12608], + [2, 165], + [7, 63], + [20, 32], + [2, 95], + [-28, 71], + [-30, 34], + [-27, 8], + [-48, 3], + [-68, -7], + [-22, -13], + [-42, -7], + [-65, 0], + [-42, -8], + [-48, -17], + [-57, -2], + [-32, -7], + [-23, -12], + [-59, -8], + [-63, -23], + [-31, -2], + [-74, 4], + [-54, 6] + ], + [ + [16045, 12983], + [28, 46], + [22, 44], + [12, 51], + [-7, 54], + [-45, 102], + [88, 20], + [79, 27], + [22, 16], + [22, 38], + [12, 40], + [2, 49], + [-5, 49], + [-13, 47], + [-6, 60], + [4, 35], + [32, 123], + [40, 91], + [37, 108], + [1, 57], + [12, 61], + [30, 54], + [27, 24], + [63, 29], + [29, 20], + [34, 34], + [19, 31], + [11, 47], + [2, 61], + [-5, 61], + [-15, 60], + [-51, 6], + [-152, 7], + [-80, 21], + [-96, 9], + [-73, 0], + [-68, -10], + [-65, -26], + [-50, -27], + [-30, 71], + [-34, 54], + [-64, 3], + [-21, 6], + [-40, 29], + [-24, 30], + [-35, 65], + [5, 79], + [12, 59], + [66, 28], + [96, 69], + [32, 51], + [10, 40], + [-1, 34], + [-10, 31], + [-29, 53], + [-6, 33], + [3, 31], + [25, 30], + [43, 20], + [72, 51], + [56, 31], + [65, 28], + [38, 8], + [8, 82], + [23, 41], + [34, 30], + [56, 26], + [31, 19], + [106, 87], + [-41, 87], + [-20, 31], + [-49, 57], + [-79, 79], + [-39, 17], + [-47, 7], + [-108, 6], + [-55, -7], + [-29, -29], + [-5, -33], + [0, -82], + [-3, -34], + [-11, -30], + [-20, -17], + [-45, -24], + [-72, -24], + [-48, -2], + [-85, 2], + [-98, 10], + [-51, 54], + [-54, 42], + [-93, 43], + [-27, 21] + ], + [ + [16891, 18169], + [9, -6], + [150, 53], + [92, -24], + [344, -7], + [148, 93], + [397, -121], + [46, 53], + [31, 51], + [55, 27], + [39, 51], + [57, 34], + [75, 18], + [74, 42], + [56, 97], + [41, 4], + [106, -49], + [243, -272], + [55, -388], + [105, -123], + [240, -81], + [230, -95], + [24, -138], + [341, -52], + [48, 14], + [34, -8], + [167, 83], + [88, -25], + [123, -65], + [-7, -37], + [16, -32], + [-22, -51], + [35, -43], + [-22, -57], + [246, 28], + [6, 28], + [33, 35], + [39, -3], + [20, -37], + [10, -48], + [27, -64], + [47, -35], + [51, -48], + [-65, -71], + [-31, -42], + [-34, -22], + [-53, -11], + [-30, -25], + [-50, -88], + [-8, -60], + [22, -29], + [45, -7], + [42, -23], + [21, -52], + [-11, -38], + [-74, -60], + [-73, 13], + [-51, -24], + [-16, -45], + [34, -87], + [-24, -43], + [-16, -38], + [14, -92], + [-36, -19], + [-85, 31], + [-21, -38], + [-9, -45], + [-58, -124], + [-29, -77], + [-3, -49], + [39, -30], + [29, -48], + [-24, -50], + [-18, -66], + [-3, -26], + [22, -2], + [-49, -194], + [-234, -292], + [-5, -41], + [37, -37], + [43, -2], + [42, 22], + [47, 11], + [33, -31], + [1, -34], + [-62, -116], + [-38, -59], + [-58, -120], + [-24, -93], + [-31, -65], + [-102, -12], + [-23, -19], + [-38, -95], + [-33, -76], + [-16, -28], + [-13, -48], + [-36, -17], + [-74, -1], + [-115, -80], + [-25, -129], + [-3, -82], + [8, -70], + [6, -86], + [18, -75], + [50, -78], + [75, -25], + [117, -107] + ], + [ + [10626, 15915], + [-10, -91], + [-23, -103], + [-3, -123], + [-6, -48], + [-28, -69], + [-44, -65], + [-96, -75], + [-107, 14], + [-33, 7], + [-62, 26], + [-53, 32], + [-30, -60], + [-43, -74], + [-53, -82], + [6, -50], + [9, -34], + [15, -27], + [48, -66], + [22, -45], + [11, -34], + [13, -66], + [-59, -79], + [-27, -57], + [-21, -61], + [-19, -38], + [-58, 49], + [-81, 57], + [-76, 37], + [-56, 4], + [-40, -16], + [-13, -29], + [-2, -105], + [-6, -59], + [-27, -56], + [-40, -35], + [-36, -11], + [1, -75], + [7, -48], + [26, -69], + [27, -49], + [-49, -77], + [-26, -62], + [-27, -84], + [-22, -30], + [-56, -65], + [-18, -27], + [-23, -49], + [-5, -44], + [16, -38], + [39, -14], + [65, -3], + [35, -21], + [12, -52], + [-2, -135], + [-44, -92], + [-81, -113], + [-67, -82], + [-28, -56], + [-126, -54], + [-40, -4], + [-51, 8], + [-38, -6], + [-89, -29], + [-40, -1], + [-26, 9], + [-42, 24], + [-20, 24], + [-33, 17], + [-31, 1], + [-31, -7], + [-47, -23], + [-55, -48], + [-38, -48], + [-23, -49], + [-9, -44], + [1, -48], + [9, -32], + [25, -45], + [61, -36], + [32, -40], + [-51, -20], + [-84, -26], + [-42, -7], + [-32, 2], + [-56, 15], + [-87, 13], + [-54, 17] + ], + [ + [8361, 12761], + [-33, 56], + [-23, 27], + [-38, 27], + [-32, 8], + [-33, 0], + [-38, -10], + [-30, -21], + [-64, -57], + [-21, -12], + [-40, -5], + [-73, 26], + [-49, 26], + [-50, 16], + [-70, 3], + [-55, -11], + [-39, 28], + [-59, 31], + [-16, 20], + [-37, 70], + [-48, 72], + [-48, 20], + [-35, 1], + [-48, -6], + [-45, -13], + [-40, -4], + [-74, 4], + [-51, 11], + [-77, 3], + [-44, -6], + [-16, -46], + [-17, -69], + [-37, -120], + [-12, -80], + [-17, -36], + [-42, -43], + [-37, -55], + [-38, 23], + [-62, 29], + [-102, 33], + [-36, 4], + [-72, -5], + [-45, -15], + [-57, -6], + [-46, 5], + [-73, 24], + [-104, 47], + [39, 71], + [40, 103], + [-48, 55], + [-38, 22], + [-65, 0], + [-44, -14], + [-60, -7], + [-99, -3], + [-61, 3], + [-44, 13], + [-66, 39], + [-55, 29] + ], + [ + [5737, 13066], + [79, 95], + [91, 93], + [40, 31], + [75, 44], + [35, 30], + [22, 27], + [46, 75], + [-36, 39], + [-39, 25], + [-30, 2], + [-17, 188], + [-16, 57], + [-13, 67], + [-23, 74], + [-33, 63], + [-31, 20], + [-61, 19], + [-76, 28], + [16, 93], + [24, 59], + [19, 74], + [4, 75], + [-4, 61], + [-18, 69], + [-7, 56], + [-47, -3], + [-54, -15], + [-52, -30], + [-53, -7], + [-34, 20], + [-28, 63], + [9, 56], + [-9, 61], + [50, 43], + [43, 54], + [41, 88], + [-87, 103], + [-20, 43], + [3, 41], + [9, 19], + [44, 62], + [11, 43], + [-4, 45], + [-33, 72], + [-5, 36], + [4, 30], + [15, 29], + [37, 55], + [11, 33], + [5, 48], + [4, 130], + [-45, 81], + [-64, 72], + [29, 58], + [32, 54], + [13, 47], + [2, 37], + [-11, 61], + [-19, 29], + [-35, 31], + [-76, 36], + [-63, 47], + [-82, 55], + [-142, 78], + [-87, 73], + [-21, 14], + [-45, 14], + [-85, 1], + [-1, 71], + [35, 28], + [82, 51], + [57, 62], + [65, 39], + [70, 88], + [35, 64], + [20, 61], + [36, 92], + [15, 90], + [10, 46], + [-25, 82], + [-51, 105], + [-66, 101], + [-64, 89], + [64, 66], + [26, 49], + [8, 29], + [1, 33], + [-7, 30], + [-32, 34], + [-11, 49], + [6, 33], + [26, 38], + [68, 55], + [21, 38], + [8, 27], + [-3, 41], + [-33, 60], + [-38, 31], + [-24, 43], + [-7, 28], + [12, 38], + [16, 11], + [45, 11] + ], + [ + [5309, 18250], + [45, -65], + [50, -3], + [59, -28], + [25, -49], + [16, -60], + [68, -44], + [97, -12], + [101, 8], + [210, 11], + [122, 22], + [-56, 343], + [-14, 70], + [80, 29], + [76, -14], + [30, 29], + [56, -12], + [22, 60], + [32, 5], + [79, -60], + [36, -8], + [16, 54], + [10, 52], + [53, 57], + [86, -43], + [94, -55], + [143, -66], + [150, 12], + [104, -57], + [65, -40], + [125, -92], + [77, -19], + [57, 16], + [54, -7], + [75, 5], + [41, -38], + [17, -54], + [39, -17], + [45, 11], + [134, -70], + [-52, -118], + [-10, -53], + [-5, -265], + [122, -106], + [429, 88], + [50, -128], + [113, -22], + [139, 119], + [241, 57], + [234, 260], + [360, 69], + [299, 205], + [497, 387], + [216, 328], + [88, 95], + [34, 48], + [-29, 45] + ], + [ + [16045, 12983], + [5, -55], + [2, -86], + [13, -69], + [31, -67], + [12, -89], + [15, -53] + ], + [ + [16123, 12564], + [-74, -62], + [-41, -25], + [-45, -17], + [-58, -2], + [-45, 14], + [-70, 49], + [-17, 18], + [-54, 73], + [11, 32], + [-9, 61], + [-9, 32], + [-28, 55], + [-51, 49], + [-29, 13], + [-58, 17] + ], + [ + [15546, 12871], + [-28, 24], + [-28, 39], + [-25, 57], + [-21, 27], + [-37, 27], + [-32, 7], + [-33, -2], + [-82, -20], + [-7, -26], + [-23, -34], + [-39, -20], + [-86, -16], + [-48, -22], + [-63, -37], + [-67, -22], + [-79, 13], + [-85, 0], + [-35, -7], + [-80, -36], + [-51, -8], + [-32, 9], + [-36, 39], + [-15, 89], + [-15, 29], + [-34, 27], + [-81, 29], + [-35, 24], + [-39, 58], + [-115, 68], + [-25, 40], + [-15, 71], + [-68, 71], + [-64, 24], + [-100, 44], + [-48, 5], + [-48, -3], + [-33, -10], + [-54, -30], + [-47, -18], + [-59, -33], + [-26, -32], + [-55, -40], + [-83, 1], + [-83, 6], + [-79, 20], + [-104, 8], + [-58, 10], + [-16, -74], + [-3, -48], + [8, -70], + [43, -130], + [5, -47], + [-5, -33], + [-12, -19], + [-27, -13], + [-43, -3], + [-66, 6], + [-69, 1], + [-37, 9], + [-38, 24], + [-63, 59], + [-61, -18], + [-34, -27], + [-30, -56], + [-11, -65], + [-128, -10], + [-46, -10], + [-41, -28], + [-73, -70], + [-43, -24], + [-35, -6], + [-72, 4], + [-42, 11], + [-22, 52], + [-30, 53], + [-14, 67], + [3, 73], + [-69, -4], + [-54, -11], + [-30, -19], + [-43, -41], + [-39, -55], + [-31, -28], + [-50, -89], + [-47, 30], + [-39, 18], + [-79, -1], + [-44, -4], + [-93, -27], + [-60, -22], + [-29, -24], + [-6, -19], + [-7, -75], + [-16, -47], + [-45, -52], + [-49, 88], + [-57, 82], + [-14, 13], + [-66, 40], + [-1, -44], + [-8, -41], + [-16, -35], + [-16, -20], + [-56, -36], + [-18, -45], + [-60, -117], + [-48, -2], + [-74, 5], + [-43, 13], + [-28, 1], + [-25, -8], + [-27, -25], + [-48, -13], + [-80, -7], + [-60, -15], + [-48, 40], + [-94, 59], + [-44, 21], + [-48, 11], + [-111, 5], + [-47, 15], + [-49, 39], + [-90, 100], + [-38, -1], + [-49, 17], + [-69, -6], + [-32, -12], + [-43, -38], + [-39, -60] + ], + [ + [9768, 12483], + [-59, 0], + [-69, -10], + [-51, -19], + [-14, -20], + [-68, -55], + [-49, -27], + [-90, -18], + [-81, -33], + [-31, -8], + [-49, -4], + [-123, 0], + [-48, -4], + [-33, -11], + [-98, -55], + [-33, -15], + [-67, 7], + [-68, 17], + [-34, 3], + [-131, 4], + [-63, 12], + [-18, 33], + [-85, 127], + [-46, 74], + [-15, 34], + [-7, 61], + [1, 75], + [6, 50], + [16, 60] + ], + [ + [5737, 13066], + [-40, -34], + [-30, -40], + [-18, -42], + [-8, -43], + [-184, -105], + [-94, -76], + [-39, -10], + [-84, -53], + [-30, -24], + [-54, -58], + [-56, -77], + [-46, 0], + [-42, 11], + [-77, 48], + [-54, 40], + [-29, 18], + [-44, 34], + [-28, 122], + [-27, 70], + [-35, 71], + [-22, 36], + [-16, 11], + [-31, 8], + [-34, -1], + [-79, -21], + [-57, -5], + [-35, 5], + [-165, 43], + [-115, 4], + [-45, -49], + [-37, -27], + [-45, -9], + [-81, 5], + [-16, -2] + ], + [ + [3940, 12916], + [-125, 209], + [-91, 181], + [-134, -22], + [-86, 54], + [-60, -124], + [-78, -67], + [-60, -16], + [-138, 81], + [-114, -53], + [-25, -42] + ], + [ + [3029, 13117], + [-13, 40], + [-77, 147], + [-33, 53], + [-25, 56], + [-40, 44], + [-53, -18], + [-67, -16], + [-51, -16], + [-95, -7], + [-68, -15], + [-40, -50], + [-27, -56], + [-9, -36], + [-7, -84], + [-12, -36], + [-29, -41], + [-57, -58], + [-43, 16], + [-39, 23], + [-43, 8], + [-83, 0], + [-50, -11], + [-43, -39], + [-38, -19], + [-26, -33], + [-54, -46], + [-23, -26], + [-16, -30], + [2, -51], + [26, -34], + [54, -39], + [24, -26], + [19, -41], + [6, -34], + [9, -151], + [-11, -25], + [-9, -53] + ], + [ + [1988, 12413], + [-7, -2], + [-136, 194], + [-222, -50], + [-139, 109], + [-58, 208], + [-141, 152], + [9, 70], + [-42, 55], + [-99, 61], + [-85, 156], + [-9, 142], + [-24, 26], + [-237, 20], + [-75, 73], + [-50, -49], + [-52, -31], + [-120, -5], + [-64, 239], + [-49, 50], + [-15, 70], + [-98, 22], + [1, 36], + [77, 106], + [-26, 92], + [10, 244], + [-26, 105], + [12, 64], + [-92, 34], + [-13, 32], + [120, 123], + [132, 152], + [-2, 36], + [-146, 408], + [-57, 36], + [-110, 108], + [-59, 428], + [-6, 10], + [-90, 478], + [150, 82], + [84, 48], + [98, 69], + [77, 46], + [10, 11], + [59, 35], + [21, 20], + [56, 40], + [46, 20], + [24, 17], + [140, 57], + [129, 66], + [35, 28], + [81, 55], + [63, 48], + [98, 40], + [45, 29], + [46, 34], + [52, 29], + [17, 17], + [56, 34], + [77, 52], + [112, 80], + [56, 34], + [17, 18], + [102, 71], + [7, 0], + [49, 40], + [52, 37], + [284, 212], + [48, 22], + [46, 43], + [0, 12], + [28, 23], + [56, 34], + [31, -3], + [46, 34], + [77, 43], + [56, 40], + [111, 69], + [11, 11], + [94, 63], + [7, 0], + [74, 57], + [17, 6], + [28, 26], + [35, 23], + [42, 17], + [7, 14], + [42, 32], + [18, 5], + [52, 35], + [14, 20], + [28, 11], + [56, 46], + [21, 8], + [14, 26], + [17, 3], + [39, 32], + [14, 34], + [56, 31], + [21, 0], + [80, 49], + [21, 6], + [28, 20], + [28, 5], + [7, 12], + [49, 23], + [42, 14], + [129, 54], + [39, 9], + [66, 34], + [49, 12], + [18, 14], + [38, 17], + [-14, 43], + [-24, 23], + [-11, 48], + [-31, 60], + [-7, 46], + [10, 26], + [53, -11], + [10, 22], + [21, 18], + [17, -18], + [-10, -22], + [-45, -35], + [-11, -54], + [32, -9], + [27, 37], + [49, 0], + [21, 20], + [35, -2], + [0, -35], + [-31, -11], + [-28, -40], + [17, 0], + [7, -57], + [-14, -12], + [7, -43], + [25, 20], + [-14, 15], + [17, 20], + [0, 34], + [18, 6], + [7, 28], + [21, -5], + [31, -32], + [4, 29], + [28, 11], + [21, -20], + [21, 17], + [-4, 32], + [11, 31], + [-21, 12], + [-35, 77], + [45, 11], + [21, -8], + [11, -78], + [-7, -8], + [0, -63], + [10, -23], + [84, 23], + [46, -3], + [73, 40], + [42, 0], + [91, 46], + [35, 34], + [101, 32], + [70, 28], + [66, 6], + [32, 17], + [84, 34], + [77, 12], + [34, 14], + [52, -62], + [24, -45], + [3, -43], + [-8, -42], + [27, -34], + [40, -37], + [26, -61], + [1, -57], + [-63, -61], + [-32, -89], + [31, -249], + [48, -34], + [-9, -54], + [-3, -62], + [74, -27], + [30, -46] + ], + [ + [5100, 19242], + [22, 5], + [24, -26], + [7, -46], + [-53, 67] + ], + [ + [15546, 12871], + [-22, -70], + [-34, -64], + [-10, -32], + [-6, -58], + [2, -90], + [19, -50], + [12, -135], + [-14, -69], + [-21, -79], + [-3, -49], + [-3, -139], + [-7, -49], + [-64, -133], + [-28, -36], + [-41, -41] + ], + [ + [15326, 11777], + [-95, 36], + [-30, 2], + [-27, -9], + [-17, -18], + [-51, -71], + [-46, -96], + [-46, -5], + [-168, -46], + [-34, -19], + [-28, -36], + [-32, -32], + [-26, -18], + [-48, -23], + [-131, -31], + [-57, -1], + [-58, 7], + [-92, -13], + [-66, -17], + [-45, -3], + [-121, 1], + [-42, -5], + [-72, -24], + [-40, -22], + [-64, -58], + [-39, -22], + [-48, 8], + [-35, 57], + [-53, 123], + [-74, -40], + [-23, -22], + [-34, -48], + [-24, -25], + [-29, -18], + [-55, -6], + [-32, 9], + [-104, 59], + [-29, 5], + [-35, -4], + [-15, -31], + [-3, -40], + [10, -29], + [30, -52], + [26, -60], + [27, -109], + [-2, -29], + [-24, -30], + [-68, -23], + [-35, -5], + [-61, -1], + [-73, 3], + [-108, 17], + [2, 19], + [-21, 16], + [-24, -3], + [-40, -36], + [-61, -31], + [-99, -78], + [12, -47], + [9, -103] + ], + [ + [12758, 10700], + [-104, -4], + [-48, -8], + [-82, -26], + [-71, -27], + [-73, -37], + [-67, -9], + [-33, 43], + [-23, 44], + [-24, 15], + [-38, -3], + [-47, -29], + [-46, -6], + [-28, 25], + [-16, 69], + [-31, 72], + [-50, 38], + [-53, 28], + [-21, 23], + [-33, 18], + [-84, 21], + [-40, 2], + [-88, -18], + [-118, -3], + [-80, -7], + [-122, -40], + [-77, -2], + [-39, 62], + [-39, 36], + [-93, 43], + [-36, 26], + [-42, 43], + [-40, 56], + [-43, 39], + [-38, 44], + [-17, 10], + [-61, 21], + [-59, 13], + [-32, 24], + [-6, 19], + [-3, 55], + [4, 70], + [14, 61], + [-46, 4], + [-55, 14], + [-79, 12], + [-108, 53], + [-21, 21], + [-10, 56], + [5, 49], + [16, 57], + [4, 45], + [-16, 56], + [-63, 94], + [-40, -9], + [-87, -6], + [-101, -108], + [-30, -38], + [-31, -67], + [-14, -63], + [-15, -24], + [-31, -20], + [-33, -13], + [-35, -5], + [-48, 2], + [-35, 7], + [-48, 24], + [-24, 18], + [-26, 33], + [-51, 104], + [-46, 103], + [-10, 47], + [-3, 74], + [16, 22], + [26, 56], + [6, 50], + [-14, 55], + [-5, 83], + [4, 30], + [28, 68], + [57, 98] + ], + [ + [12758, 10700], + [-30, -56], + [-45, -68], + [-37, -76], + [-24, -74], + [-7, -36], + [-5, -123], + [10, -55], + [16, -16], + [41, -9], + [51, 11], + [40, 36], + [27, 5], + [39, -16], + [24, -24], + [27, -54], + [-9, -81], + [-28, -84], + [-38, -91], + [-19, -107], + [1, -67], + [-23, -67], + [155, -25], + [29, -13], + [23, -24], + [9, -21], + [6, -47], + [-9, -74], + [-57, -161], + [-28, -51], + [-10, -29], + [-1, -30], + [11, -56], + [3, -47], + [-6, -47], + [-41, -124], + [-7, -88], + [3, -89], + [21, -95], + [2, -62], + [-8, -49], + [-27, -67], + [-127, -10], + [-84, -26], + [-52, -20], + [-82, -24], + [-29, -1], + [-70, 9], + [-41, 81], + [-46, 44], + [-39, 20], + [-29, 8], + [-44, 2], + [-47, -4], + [-17, -61], + [-32, -66], + [-17, -63], + [-33, -42], + [-30, -12], + [-32, -1], + [-65, 19], + [-79, 16], + [-45, 15], + [-56, 7], + [-31, -5], + [-29, -27], + [-36, -107], + [-23, -35], + [-26, -18], + [-89, -39], + [-46, -24], + [-41, -52], + [-49, -40], + [-33, -12], + [-70, -9], + [-33, -8], + [-30, -17], + [-39, -33], + [-62, -40], + [-68, -49], + [-31, -60], + [-1, -42], + [20, -41], + [24, -27], + [46, -38], + [147, -77], + [25, -5], + [39, 4], + [36, 25], + [21, 27], + [23, 55], + [37, 38], + [32, 8], + [53, -12], + [50, -33], + [118, -73], + [-4, -110], + [-19, -82], + [-7, -98], + [1, -177], + [-7, -61], + [-16, -31], + [-22, -26], + [-52, -40], + [-27, -31], + [-48, -40], + [-15, -30], + [-6, -35], + [2, -35], + [13, -34], + [21, -28], + [52, -44], + [13, -19], + [28, -74], + [41, -134], + [18, -45], + [-10, -69], + [-31, -85], + [12, -85], + [-1, -206], + [5, -62], + [28, -97], + [26, -74], + [41, -85], + [30, -124], + [7, -144], + [16, -70], + [5, -98], + [-2, -150], + [6, -60], + [13, -38], + [22, -41], + [30, -34], + [51, -41], + [32, -63], + [8, -59], + [-1, -171] + ], + [ + [11928, 4544], + [-32, -15], + [-167, 95], + [-126, 20], + [-68, 5], + [-48, 50], + [-198, -15], + [-89, 108], + [-100, 17], + [-55, 43], + [-126, -46], + [-203, -1], + [-159, -64], + [-224, -34], + [-12, 133], + [-136, 89], + [-124, -10], + [-83, 38], + [96, 87], + [39, 96], + [-9, 33], + [-87, 44], + [-74, 115], + [12, 68], + [148, 265], + [64, -6], + [123, 25], + [66, 77], + [146, 77], + [37, 56], + [-16, 102], + [-140, 188], + [-4, 67], + [-44, 51], + [36, 60], + [-52, 199], + [-202, 5], + [-107, -63], + [-121, 61], + [87, 194], + [79, 68], + [12, 70], + [-32, 97], + [41, 98], + [-2, 69], + [27, 56], + [-61, 156], + [95, 17], + [45, 70], + [65, 106], + [98, 86], + [35, 1], + [102, 141], + [-93, 187], + [-135, 28], + [-31, 16], + [-60, 91], + [-60, 3], + [-53, -92], + [93, -101], + [-20, -101], + [-181, 18], + [22, 26], + [-29, 128], + [-62, -13], + [7, 172], + [-42, 132], + [-63, 17], + [-57, 84], + [-127, -25], + [-13, 112], + [-157, 186], + [-91, 44], + [-78, 154], + [-73, -67], + [-129, -37], + [-40, -55], + [-93, 42], + [-30, -61], + [-1, 71], + [-34, 6], + [-264, -163], + [-119, -49], + [-93, -4], + [18, 64], + [-20, 64], + [-95, -8], + [-82, 94], + [-110, 62], + [-95, -18], + [-21, -64], + [-63, -11], + [16, 67], + [-54, 34], + [-57, -34], + [-98, 20], + [-98, -21], + [-12, -33], + [-131, 0], + [-48, -90], + [-4, -72], + [-29, -56], + [12, -154], + [-33, -11], + [-77, 61], + [16, -92], + [-40, -48], + [-124, 155], + [-37, 96], + [-71, 76], + [14, 67], + [-67, 78], + [8, 137], + [-54, 85], + [95, 190], + [3, 212], + [-29, 276], + [-53, 83], + [3, 135], + [-44, 51], + [-65, 6], + [-89, 188], + [-135, 155], + [-155, -56], + [-93, 93], + [-63, -17], + [-234, -39], + [-88, -55], + [-32, -14], + [-21, 29], + [-9, 71], + [8, 36], + [116, 174], + [5, 35], + [-14, 34], + [-59, 36], + [-199, 51], + [-30, -17], + [-88, -111], + [-38, -139], + [-67, 0], + [-24, 19], + [-189, -106], + [-97, -21], + [-81, -60], + [-107, 131], + [-161, 43], + [-37, 3], + [-49, 94], + [-217, 106], + [-43, 127], + [12, 133], + [-35, 59], + [53, 35], + [-40, 50], + [23, 97], + [-35, 56], + [13, 129], + [-46, 116], + [-9, 67], + [-84, 102], + [16, 65], + [-51, 82], + [-39, 48], + [27, 57], + [-23, 52], + [-18, 157], + [11, 32], + [113, 63], + [-52, 157], + [34, 7], + [6, 71], + [-72, 111], + [-237, 33], + [-117, 125], + [43, 94], + [-17, 31], + [-52, 33], + [-24, 91], + [-18, 30] + ], + [ + [3029, 13117], + [-9, -14], + [-126, 36], + [-34, -58], + [-167, -111], + [-71, -72], + [-94, 26], + [-107, -76], + [-15, -29], + [37, -90], + [-40, -39], + [-44, -49], + [-1, -139], + [-49, -92], + [-64, 7], + [-14, -94], + [-60, -11], + [-101, 130], + [-82, -29] + ], + [ + [21023, 12994], + [54, -45], + [345, 71], + [91, -21], + [79, -24], + [79, -14], + [50, 9], + [29, -4], + [3, -27], + [103, -299], + [-1, 22], + [41, -35], + [160, -64], + [117, 9], + [-1, 13], + [138, -12], + [114, -102], + [191, -328], + [155, -190], + [-27, -59], + [52, -46], + [2, -38], + [-39, -3], + [-36, -41], + [-2, 39], + [-39, -3], + [53, -70], + [32, -160], + [154, 100], + [9, -7], + [69, 5], + [119, -69], + [191, 12], + [41, -36], + [1, -18], + [78, -39], + [-169, -250], + [-61, 15], + [-60, -67], + [2, -38], + [-78, 33], + [-51, -71], + [-37, -27], + [-21, -24], + [-38, -3], + [4, -76], + [-75, -44], + [-38, -2], + [-24, -28], + [-22, -96], + [54, -180], + [186, -164], + [85, -152], + [144, -14], + [2, -27], + [38, 2], + [2, -38], + [38, 2], + [-2, 39], + [36, 40], + [40, -36], + [39, -1], + [135, -14], + [102, 50], + [94, -92], + [78, -302], + [134, -125], + [18, 20], + [40, -36], + [2, -40], + [9, -8], + [-78, -260], + [-1, -164], + [-136, -145], + [-5, -111], + [33, -41], + [118, -110], + [2, -42], + [55, -69], + [24, 0], + [5, -37], + [35, 1], + [79, -73], + [4, -76], + [37, 1], + [2, -37], + [38, 1], + [-31, -115], + [-74, -40], + [-37, -2], + [-24, 23], + [-160, -73], + [-95, 102], + [-101, -17], + [-1, 21], + [-36, -41], + [-115, -8], + [6, -114], + [-76, -5], + [6, -114], + [-38, -3], + [2, -38], + [-38, -3], + [6, -114], + [-33, -95], + [4, -60], + [-131, -10], + [-77, -23], + [-19, -22], + [-67, -4], + [-165, -51], + [-68, -116], + [-135, -75], + [121, -481], + [-26, -25], + [-101, -83], + [-80, -18], + [4, -62], + [-38, -1], + [-31, 28], + [-70, -197], + [114, -52], + [-23, -126], + [-49, 1], + [2, -35], + [-78, -2], + [-85, 38], + [56, 138], + [-31, 125], + [-118, 79], + [-131, 16], + [-21, -147], + [-42, -18], + [-65, 11], + [-104, 38], + [-79, 46], + [-31, 124] + ], + [ + [21843, 7004], + [12, 2], + [16, 80], + [12, 45], + [2, 30], + [-9, 32], + [-38, 61], + [-15, 33], + [-26, 167], + [-3, 73], + [-19, 52], + [-26, 103], + [-2, 60], + [10, 65], + [17, 77], + [11, 150], + [19, 69], + [5, 36], + [6, 99], + [-2, 36], + [-12, 45], + [-25, 35], + [-132, 108], + [-76, 41], + [-88, 55], + [-46, 22], + [-30, 8], + [-44, 0], + [-55, -14], + [-45, -5], + [-71, 0], + [-45, 8], + [-65, 33], + [-58, 51], + [-36, 20], + [-46, -5], + [-62, -59], + [-44, -73], + [-12, -39], + [39, -112], + [5, -47], + [-9, -59], + [-40, -88], + [1, -50], + [11, -19], + [26, -20], + [21, -7], + [67, -4], + [39, -15], + [17, -41], + [-1, -34], + [-10, -34], + [-39, -39], + [-80, -27], + [-84, -23], + [-117, -12], + [-69, -16], + [-73, -2], + [-124, 4], + [-48, 6], + [-55, 15], + [-58, -2], + [-91, -33], + [-118, -12], + [-59, -16], + [20, 99], + [31, 77], + [61, 109], + [34, 50], + [8, 29], + [-10, 38], + [-38, 15], + [-55, 4], + [-45, 13], + [-38, 29], + [-24, 27], + [-21, 44], + [-5, 37], + [0, 63], + [4, 102], + [7, 49], + [32, 78], + [27, 51], + [30, 43], + [-127, 35], + [-152, 57], + [-38, 18], + [-50, 32], + [-87, 6], + [-78, 1], + [-37, 63], + [-70, 100], + [-54, 53], + [-38, 55], + [-44, 34], + [-50, 3], + [-94, -36], + [-102, -28], + [-47, -6], + [-48, 2], + [-43, 11], + [-46, 25], + [-24, 22], + [-60, 72], + [-10, 69], + [-9, 40], + [-58, 114], + [-109, -90], + [-52, -27], + [-85, -21], + [-31, 0], + [-42, 15], + [-112, 74], + [-74, 67], + [-30, 22], + [-31, 12], + [-43, 7], + [1, -48], + [10, -55], + [18, -41], + [39, -71], + [6, -33], + [-4, -34], + [-15, -34], + [-44, -50], + [-70, -64], + [-63, -45] + ], + [ + [17893, 9101], + [-49, 7], + [-53, 15], + [-30, 0], + [-64, -13], + [-98, -10], + [-43, -19], + [-99, -107], + [-46, -41], + [-43, -17], + [-43, 4], + [-36, 23], + [-31, 41], + [-34, 36], + [-25, 55], + [-13, 50], + [-27, 84], + [-19, 30], + [-49, 44], + [-48, 23], + [-35, 7], + [-82, 11], + [-62, 23], + [-42, 11], + [31, 139], + [27, 70], + [26, 49], + [-21, 43], + [-19, 58], + [-50, 52], + [-20, 33], + [-20, 53], + [-11, 82], + [-30, 77], + [-53, 76], + [-90, -66], + [-28, -15], + [-41, -9], + [-60, -1], + [-56, 108], + [-54, 85], + [-51, 71], + [-28, 64], + [-54, 15], + [-71, 2], + [-42, 16], + [-28, 32], + [-18, 55], + [-22, 46], + [-15, 12], + [-31, 9], + [-67, -6], + [-101, -40], + [-106, -12], + [-55, -15], + [-96, -16], + [18, 112], + [9, 31], + [47, 96], + [45, 69], + [30, 68], + [19, 86], + [-43, 49], + [-20, 30], + [-49, 106], + [-15, 50], + [-34, 76], + [-44, 30], + [-32, 40], + [-31, 26], + [-23, 32], + [-31, 26], + [-31, 46], + [-89, 109], + [8, 58], + [18, 69], + [5, 58], + [1, 85] + ], + [ + [16123, 12564], + [78, -42], + [48, -56], + [31, -27], + [48, -77], + [32, -63], + [119, 92], + [23, 59], + [14, 104], + [20, 25], + [29, 9], + [67, 7], + [72, 14], + [49, 2], + [74, -3] + ], + [ + [19732, 13505], + [63, -40], + [27, -200], + [-12, -40], + [-26, -56], + [-23, -81], + [-27, -58], + [7, -28] + ], + [ + [21843, 7004], + [-10, 41], + [-143, -53], + [-89, -10], + [-128, -48], + [-85, -372], + [-326, -257], + [-6, -16], + [-12, -81], + [-33, -61], + [-16, -78], + [-12, -88], + [-94, -45], + [-69, -65], + [-30, -60], + [16, -159], + [-39, -163], + [-61, -103], + [-112, -75], + [-11, -67], + [9, -74], + [47, -51], + [51, -76], + [1, -74], + [-41, -45], + [-127, -31], + [-7, -80], + [-30, -40], + [-59, 26], + [-39, 8], + [-23, -39], + [-67, -8], + [-16, -94], + [6, -63], + [-8, -61], + [-35, -63], + [-37, -129], + [-43, -78], + [-39, -9], + [-60, -90], + [6, -43], + [85, -52], + [96, -50], + [78, -58], + [1, -58], + [-23, -9], + [-38, -67], + [-10, -9], + [-107, 5], + [-5, -12], + [5, -58], + [9, -41], + [-11, -31], + [-28, -21], + [0, -82], + [-17, 1], + [-2, -53], + [-26, -19], + [22, -72], + [12, -79], + [-24, -58], + [42, -55], + [17, -88], + [4, -84], + [155, -1], + [75, -73], + [208, -453], + [29, -175], + [0, -25], + [104, -6], + [75, 29], + [54, -9], + [50, -52], + [36, -62], + [44, -62], + [-52, -53], + [-46, -58], + [-15, -86], + [4, -68], + [42, -67], + [70, -45], + [68, -31], + [73, -44], + [-28, -72], + [-7, -47], + [6, -79], + [-5, -76], + [-144, -9], + [-23, -63], + [7, -62], + [-43, -65], + [-28, -69], + [5, -78], + [-58, -43], + [-50, -43], + [-12, -70], + [103, -40], + [36, 3], + [1, -107], + [-40, -51], + [-68, -65], + [-42, -55], + [-106, -92], + [-35, 16], + [-82, -78], + [-14, 28], + [-124, 42], + [-129, 109], + [-89, -36], + [-9, -170], + [-91, -34], + [-79, 53], + [-53, -35], + [-128, -16], + [-77, 68], + [-125, 25], + [-53, 40], + [-98, -28], + [-78, -68], + [0, -36], + [-94, -95], + [20, -100], + [-23, -64], + [-40, -88], + [-25, 12], + [-84, 148], + [-155, 61], + [-95, 6], + [-73, -113], + [-69, -45], + [-193, -59], + [-101, -2], + [-87, -97], + [-29, 18], + [-18, 103], + [-102, 92], + [106, 85], + [7, 104], + [-143, 144], + [-7, 19], + [31, 13], + [48, 130], + [-92, 39], + [-65, 200], + [13, 33], + [-236, 254], + [-294, 142], + [-42, -132], + [-114, -40], + [-44, -22], + [-64, 185], + [99, 178], + [76, 64], + [-85, 104], + [-205, 187], + [-27, 39], + [-11, 37], + [-76, 70], + [-140, -93], + [-95, 35], + [-97, -12], + [-44, 54], + [-57, -22], + [-58, 23], + [-152, -17], + [-5, 170], + [-29, 60], + [-58, 25], + [-51, -86], + [-129, 83], + [11, 99], + [-177, 338], + [-44, 51], + [-130, -33], + [-140, 88], + [-201, 97], + [-82, 146], + [-65, 67], + [-124, 2] + ], + [ + [15206, 3121], + [50, 2], + [11, 37], + [-19, -1], + [6, 26], + [33, 36], + [35, 71], + [5, 37], + [0, 49], + [-6, 37], + [-27, 66], + [-19, 30], + [68, 111], + [40, 42], + [26, 18], + [77, 44], + [75, 53], + [27, 31], + [53, 33], + [37, 15], + [24, 84], + [13, 90], + [12, 28], + [45, 44], + [57, 66], + [48, 35], + [79, 68], + [49, 33], + [39, 41], + [13, 31], + [3, 30], + [-11, 55], + [1, 55], + [11, 45], + [2, 41], + [-22, 58], + [-23, 25], + [-69, 43], + [-31, 34], + [-26, 60], + [-35, 52], + [-32, 37], + [-43, 40], + [-39, 14], + [-27, -4], + [-33, -33], + [-45, -28], + [-21, -7], + [-42, -2], + [-20, 7], + [-20, 19], + [-17, 36], + [-37, 125], + [-12, 31], + [-76, 113], + [-48, 43], + [-6, 42], + [-22, 69], + [-19, 42], + [52, 48], + [36, 26], + [69, 21], + [69, 81], + [34, 49], + [50, 46], + [52, 25], + [14, 11], + [46, 61], + [36, 75], + [3, 67], + [-14, 58], + [-6, 74], + [0, 63], + [5, 74], + [17, 71], + [11, 94], + [22, 36], + [110, 43], + [0, -86], + [-3, -113], + [1, -37], + [8, -35], + [37, -40], + [22, -7], + [47, -4], + [47, 6], + [77, 20], + [79, 1], + [44, -11], + [79, -49], + [147, -1], + [47, 4], + [32, 10], + [64, 32], + [79, 13], + [56, 15], + [79, 10], + [126, 40], + [46, 6], + [73, 0], + [-1, 63], + [-6, 60], + [-13, 47], + [-6, 82], + [3, 34], + [10, 30], + [14, 14], + [50, 18], + [42, 23], + [18, 34], + [2, 33], + [-13, 73], + [-3, 56], + [-32, 24], + [-24, 27], + [-22, 37], + [-42, 88], + [-38, 63], + [-24, 59], + [-12, 80], + [-10, 28], + [-27, 28], + [-22, 33], + [-28, 26], + [-22, 46], + [-14, 11], + [-35, 5], + [-68, -12], + [-36, 16], + [-14, 16], + [-9, 30], + [9, 59], + [49, 26], + [57, 12], + [85, 4], + [31, 8], + [47, 22], + [50, 45], + [34, 23], + [47, 26], + [67, 28], + [49, 6], + [100, 0], + [37, 2], + [35, 9], + [45, 21], + [30, 23], + [38, 36], + [140, 142], + [91, 98], + [31, 41], + [32, 26], + [27, 34], + [31, 25], + [50, 24], + [28, 28], + [62, 37], + [29, 33], + [18, 61], + [19, 45], + [-56, 27], + [-80, 15], + [-45, 13], + [-49, 1], + [-97, -25], + [-71, -40], + [-32, -7], + [-40, 7], + [-24, 37], + [-1, 34], + [7, 35], + [27, 36], + [28, 16], + [63, 13], + [56, 23], + [73, 49], + [17, 21], + [8, 30], + [6, 65], + [12, 37], + [36, 44], + [26, 71], + [8, 45], + [2, 59], + [-5, 47], + [-25, 64], + [-28, 51] + ], + [ + [15206, 3121], + [-101, 1], + [-57, -35], + [-23, -66], + [-46, 6], + [-27, -47], + [-63, 18], + [-95, -29], + [-55, 34], + [-65, -9], + [-77, 53], + [-83, -41], + [-42, 55], + [116, 251], + [-39, 202], + [-55, 41], + [-22, 66], + [-23, 141], + [66, 73], + [132, 295], + [14, 141], + [-41, 101], + [-127, 121], + [-84, 157], + [-197, 55], + [-144, 42], + [-6, 108], + [35, 137], + [66, 21], + [58, 85], + [8, 54], + [26, 267], + [122, 172], + [-18, 61], + [-57, 37], + [-1, 72], + [-55, 39], + [10, 47], + [115, 46], + [9, 135], + [30, 10], + [-32, 95], + [63, 74], + [60, -20], + [24, -68], + [29, -17], + [27, 22], + [-21, 284], + [55, 89], + [112, 81], + [-2, 36], + [-67, 15], + [-62, 125], + [-271, 18], + [-56, 129], + [-128, -171], + [-144, -100], + [-91, -40], + [-58, -163], + [-31, -3], + [2, -98], + [-227, -121], + [-12, -31], + [-67, -14], + [-131, -288], + [31, -103], + [64, 17], + [-4, -167], + [-61, -158], + [12, -169], + [-15, -66], + [53, -87], + [-167, -1], + [-219, -92], + [-235, -15], + [-125, -50], + [-37, -77], + [-55, -39], + [-130, -17], + [-105, -174], + [-81, -46], + [-198, 3], + [-182, -87] + ] + ], + "transform": { + "scale": [0.00015891216812693426, 0.00009714873181622495], + "translate": [2.555355548858756, 49.49721527099614] + }, + "objects": { + "belgium": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0]], + "type": "Polygon", + "properties": { + "ID_0": 23, + "ISO": "BE-BRU", + "NAME_0": "Belgium", + "ID_1": 1, + "NAME_1": "Bruxelles", + "ID_2": 1, + "NAME_2": "Bruxelles", + "TYPE_2": "Hoofdstedelijk Gewest|Région Capitale", + "ENGTYPE_2": "Capital Region", + "NL_NAME_2": null, + "VARNAME_2": "Brussel Hoofstadt|Brusselse Hoofdstedelijke Gewest|Brüssel|Bruxelas|Région de Bruxelles-Capitale|Brussels|Bruselas" + } + }, + { + "arcs": [[[1]], [[2, 3, 4, 5]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 23, + "ISO": "BE-VAN", + "NAME_0": "Belgium", + "ID_1": 2, + "NAME_1": "Vlaanderen", + "ID_2": 2, + "NAME_2": "Antwerpen", + "TYPE_2": "Provincie", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Amberes|Antuérpia|Antwerp|Anvers|Anversa" + } + }, + { + "arcs": [[[6, 7]], [[8, 9, 10, -3, 11]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 23, + "ISO": "BE-VLI", + "NAME_0": "Belgium", + "ID_1": 2, + "NAME_1": "Vlaanderen", + "ID_2": 3, + "NAME_2": "Limburg", + "TYPE_2": "Provincie", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Limbourg|Limburgo" + } + }, + { + "arcs": [[-5, 12, 13, 14, 15]], + "type": "Polygon", + "properties": { + "ID_0": 23, + "ISO": "BE-VOV", + "NAME_0": "Belgium", + "ID_1": 2, + "NAME_1": "Vlaanderen", + "ID_2": 4, + "NAME_2": "Oost-Vlaanderen", + "TYPE_2": "Provincie", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Flandres Oriental|Fiandra Orientale|Flandes Oriental|Flandre orientale|East Flanders|Ost Flandern" + } + }, + { + "arcs": [[16, 17, 18, 19, -13, -4, -11], [-1]], + "type": "Polygon", + "properties": { + "ID_0": 23, + "ISO": "BE-VBR", + "NAME_0": "Belgium", + "ID_1": 2, + "NAME_1": "Vlaanderen", + "ID_2": 5, + "NAME_2": "Vlaams Brabant", + "TYPE_2": "Provincie", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Brabant Flamand|Brabante Flamenco|Brabante Flamengo|Flemish Brabant" + } + }, + { + "arcs": [[[-15, 20, 21, 22, 23]], [[24]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 23, + "ISO": "BE-VWV", + "NAME_0": "Belgium", + "ID_1": 2, + "NAME_1": "Vlaanderen", + "ID_2": 6, + "NAME_2": "West-Vlaanderen", + "TYPE_2": "Provincie", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Fiandra Occidentale|Flandes Occidental|Flandre occidentale|Flandres Ocidental|West Flandern|West Flanders" + } + }, + { + "arcs": [[25, 26, 27, -19]], + "type": "Polygon", + "properties": { + "ID_0": 23, + "ISO": "BE-WBR", + "NAME_0": "Belgium", + "ID_1": 3, + "NAME_1": "Wallonie", + "ID_2": 7, + "NAME_2": "Brabant Wallon", + "TYPE_2": "Provincie", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Waals Brabant|Walloon Brabant" + } + }, + { + "arcs": [[[-20, -28, 28, 29, -21, -14]], [[30, -23]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 23, + "ISO": "BE-WHT", + "NAME_0": "Belgium", + "ID_1": 3, + "NAME_1": "Wallonie", + "ID_2": 8, + "NAME_2": "Hainaut", + "TYPE_2": "Provincie", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Henegouwen|Hennegau" + } + }, + { + "arcs": [[31, 32, 33, -26, -18, 34, -9, 35, -7]], + "type": "Polygon", + "properties": { + "ID_0": 23, + "ISO": "BE-WLG", + "NAME_0": "Belgium", + "ID_1": 3, + "NAME_1": "Wallonie", + "ID_2": 9, + "NAME_2": "Liège", + "TYPE_2": "Provincie", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Luik|Liegi|Lieja|Lüttich" + } + }, + { + "arcs": [[-17, -10, -35]], + "type": "Polygon", + "properties": { + "ID_0": 23, + "ISO": "BE-VLI", + "NAME_0": "Belgium", + "ID_1": 3, + "NAME_1": "Wallonie", + "ID_2": 10, + "NAME_2": "Limburg", + "TYPE_2": "Provincie", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Limbourg|Limburgo" + } + }, + { + "arcs": [[36, 37, -33]], + "type": "Polygon", + "properties": { + "ID_0": 23, + "ISO": "BE-WLX", + "NAME_0": "Belgium", + "ID_1": 3, + "NAME_1": "Wallonie", + "ID_2": 11, + "NAME_2": "Luxembourg", + "TYPE_2": "Provincie", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Lussemburgo|Luxemburg|Luxemburgo" + } + }, + { + "arcs": [[-38, 38, -29, -27, -34]], + "type": "Polygon", + "properties": { + "ID_0": 23, + "ISO": "BE-WNA", + "NAME_0": "Belgium", + "ID_1": 3, + "NAME_1": "Wallonie", + "ID_2": 12, + "NAME_2": "Namur", + "TYPE_2": "Provincie", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Namen" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/brazil-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/brazil-topo.json new file mode 100644 index 000000000000..e5824b4a9f24 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/brazil-topo.json @@ -0,0 +1,3930 @@ +{ + "type": "Topology", + "arcs": [ + [ + [3916, 13919], + [119, -51] + ], + [ + [4035, 13868], + [-27, -29], + [-62, -25], + [-132, -121], + [-14, -32], + [-63, -20], + [-31, -28], + [-69, 12], + [2, -31], + [-53, 0], + [-20, -48], + [-75, -27], + [-57, -73], + [-13, -48], + [-61, 29], + [-101, 4], + [-56, -37], + [1, -34], + [-51, -49], + [-23, -56], + [-83, -50], + [-54, -5], + [-30, -35], + [-95, -20], + [-27, 46], + [9, 32], + [-74, 0], + [-152, 28], + [-83, 4], + [-61, 17], + [-60, -19], + [-36, 11], + [-75, -19], + [-29, 26], + [-91, 0], + [-77, -35], + [-35, -30], + [-104, -16], + [-50, 24], + [-20, 32], + [-41, 19], + [-43, -38], + [1, 371], + [0, 310], + [54, 64], + [-38, 68], + [57, 103], + [-51, -8], + [-41, -45], + [-47, -25], + [-29, -46], + [-38, -13], + [-71, -89], + [-29, 1], + [-65, -42], + [-29, -48], + [-84, -17], + [-441, 0], + [18, 73], + [-2, 45], + [-36, 11], + [-23, 38], + [-13, 99], + [-70, 38], + [-59, -5], + [-109, 43], + [-271, -1], + [16, 35], + [80, 70], + [52, 80], + [-7, 63], + [-47, 50], + [-68, 113], + [-58, 13], + [-40, 59], + [0, 62], + [-26, 3], + [-77, 71], + [-5, 52], + [-25, 36], + [-4, 50], + [-23, 54], + [-62, 37], + [-11, 50], + [45, 16], + [-10, 48], + [-66, 26], + [-63, 64], + [-4, 48], + [15, 51], + [53, 56], + [70, 15], + [-12, 54], + [-39, 57] + ], + [ + [87, 15485], + [280, -133], + [338, -159], + [267, -58], + [92, -30], + [239, -57], + [347, -85], + [311, -71], + [512, -291], + [142, -73], + [215, -119], + [91, -44], + [373, -168], + [336, -150], + [286, -128] + ], + [ + [21280, 14445], + [-35, -56], + [-50, -109], + [-50, -64], + [-48, -39], + [-7, -26], + [-99, -108], + [-25, -44], + [-50, -33], + [-134, -204], + [-122, -117], + [-7, -39], + [-53, -86] + ], + [ + [20600, 13520], + [-22, 44], + [-73, 4], + [-1, 50], + [-42, 46], + [-23, -12], + [-83, 42], + [-65, 76], + [-8, 46], + [-38, 2], + [-63, 51], + [-40, 1], + [-32, 40], + [-74, 39], + [-89, 17], + [-71, 60], + [-41, -5], + [-55, 52], + [-64, 20] + ], + [ + [19716, 14093], + [-14, 28], + [-69, 14], + [-45, 65], + [18, 20] + ], + [ + [19606, 14220], + [61, 72], + [62, 15], + [77, 98], + [5, 50], + [38, 21], + [64, -94], + [56, 35], + [40, -40], + [84, -39], + [45, -65], + [82, -27], + [72, -76], + [46, 67], + [39, -15], + [57, 11], + [59, -37], + [82, 73], + [39, -6], + [50, 33], + [43, 71], + [40, 8], + [-2, 43], + [118, 55], + [68, 6], + [22, -38], + [43, 13], + [83, 45], + [201, -54] + ], + [ + [12914, 20861], + [50, -98], + [-26, -35], + [-39, -15], + [-35, 69], + [-8, 61], + [58, 18] + ], + [ + [12854, 20902], + [52, -43], + [-51, -11], + [-1, 54] + ], + [ + [13096, 20033], + [-47, 4], + [-105, -22], + [-49, -39], + [-21, -69], + [-57, -123], + [-49, -49], + [-64, -43], + [-104, -41], + [-50, -68], + [-82, -25], + [-76, -116], + [-57, -113], + [-75, -80], + [-49, -84], + [-2, -140], + [-66, -71], + [-43, -5], + [-59, 22], + [-58, -57], + [-11, 47], + [-117, 17], + [-46, 53], + [8, 86], + [-23, 25], + [-40, -14], + [11, 86], + [-21, 79], + [-57, -6], + [-31, 51], + [6, 106], + [-91, 96], + [-45, 6], + [-24, 95], + [-64, 137], + [-45, 71], + [17, 183], + [-25, 42], + [-121, 94], + [-26, 121], + [34, 24], + [-23, 31], + [-65, 30], + [10, 33], + [-135, 36], + [-36, -6], + [-25, 36], + [-57, 29], + [-49, -7], + [-7, 54], + [-114, 91], + [-38, 13], + [-64, -10], + [-58, 22], + [-79, -5], + [-15, 96], + [-21, 57], + [2, 58], + [24, 37], + [-26, 37], + [9, 27], + [-40, 75] + ], + [ + [10465, 21047], + [68, 22], + [22, -80], + [85, -2], + [43, -64], + [53, -7], + [22, -30], + [83, 9], + [39, -30], + [14, 37], + [69, 26], + [9, 30], + [62, 15], + [22, 30], + [61, -46], + [120, 26], + [21, -26], + [82, 4], + [53, -42], + [56, 1], + [48, -30], + [46, 13], + [27, 54], + [99, 52], + [64, 86], + [3, 53], + [67, 157], + [18, 8], + [37, 111], + [-10, 27], + [36, 59], + [29, 8], + [168, 304], + [69, 67], + [23, 63], + [52, 31], + [29, 108], + [28, 13], + [-9, 53], + [33, 53], + [60, -41], + [102, -129], + [22, -81], + [28, -58], + [27, -10], + [-7, -90], + [5, -144], + [-5, -74], + [31, -89], + [-5, -47], + [53, -181], + [32, -44], + [22, -60], + [7, -74], + [20, -7], + [41, -127], + [-2, -25], + [71, -102], + [3, -41], + [31, -29], + [41, -74], + [32, -8], + [126, 8], + [83, -34], + [52, -34], + [15, -59], + [11, -146], + [-23, -38], + [29, -49], + [-24, -37], + [0, -64], + [-82, -127], + [-6, -62] + ], + [ + [5799, 20914], + [50, -34], + [77, 11], + [12, -45], + [53, -47], + [41, 9], + [60, -8], + [73, -45], + [-14, -70], + [4, -62], + [-44, -70], + [40, -54], + [52, -38], + [27, -104], + [36, -99], + [42, -63], + [-22, -64], + [15, -47], + [-39, -44], + [-2, -117], + [47, -75], + [-11, -27], + [8, -73], + [21, -78], + [37, -26], + [15, -76], + [41, -42], + [-5, -57], + [36, -34], + [-21, -55], + [-26, -17], + [-24, -57], + [17, -50], + [-44, -42], + [-56, 10], + [-18, -51], + [58, -23], + [46, -64], + [77, -44], + [40, -53], + [45, -26], + [66, -147], + [54, 8], + [106, -39], + [12, 55], + [-24, 35], + [44, 129], + [-18, 94], + [20, 34], + [2, 55], + [45, 58], + [60, 36], + [68, 21], + [0, 31], + [75, 3], + [61, -36], + [118, -116], + [4, -58], + [54, -12], + [35, 17], + [33, -13], + [29, 61], + [24, -1], + [72, 36], + [-53, 117], + [30, 40], + [30, 86], + [3, 48], + [35, 43], + [10, 60], + [33, 41], + [15, 56], + [31, 17], + [12, 58], + [331, 0], + [295, 0] + ], + [ + [8255, 19780], + [1, -159], + [17, -39], + [-10, -69], + [5, -85], + [81, -58], + [8, -46], + [-12, -62], + [94, -103], + [56, -34], + [24, -60], + [-8, -35], + [33, -23], + [25, -45], + [38, 6], + [50, -56], + [45, 60], + [35, 12], + [28, -58], + [-17, -81], + [43, -44], + [52, -11], + [28, -40], + [33, 2], + [19, -52], + [48, 8], + [63, -57], + [35, 3], + [33, -35], + [43, 14], + [96, -38], + [34, -80], + [97, -60], + [61, 2], + [15, -22], + [-26, -53], + [49, -42], + [36, 2], + [47, 41], + [63, -21], + [101, 69], + [71, 17], + [-38, -69], + [-52, -44], + [-66, -28], + [-44, -94], + [34, -15], + [-95, -213], + [-171, -393], + [-72, -174], + [-127, -285], + [-164, -368], + [-171, -395], + [-221, -505], + [-34, -18], + [-13, -36], + [-43, -32], + [-28, -48], + [-2, -48], + [26, -74], + [53, -44], + [85, -113], + [7, -78], + [18, -25] + ], + [ + [8671, 15349], + [-41, -60], + [6, -94], + [-44, -52], + [-7, -36], + [-49, -39], + [6, -40], + [45, -97], + [-17, -55], + [2, -94], + [-54, -94], + [14, -58], + [-25, -65], + [23, -44], + [-58, -13], + [-344, -1], + [-400, 2], + [-309, 2], + [-235, -1], + [-403, 0] + ], + [ + [6781, 14510], + [-24, 41], + [-63, 19], + [-18, -31], + [-38, 1], + [-9, -62], + [-71, -11], + [-23, 42], + [-51, -1], + [-35, 123], + [-44, 9], + [-54, 47], + [3, 56], + [-57, 34], + [-29, -26], + [-37, 65], + [-35, 21], + [-23, 83], + [-96, 68], + [-348, 0], + [-66, 4], + [0, -35], + [-40, -75], + [-16, -53], + [-37, -48], + [-44, 25], + [-40, -24], + [2, -71], + [-18, -15], + [27, -56], + [-34, -6], + [-27, -63], + [-59, -29], + [-9, -58], + [9, -59], + [-50, -28], + [-43, -2], + [-6, 39], + [-68, -28], + [-57, -1], + [-20, -18], + [-155, -1], + [-38, -66], + [11, -55], + [-45, -49], + [-29, -57], + [-49, -26], + [-24, 18], + [-14, 80], + [-19, 12], + [-72, -39], + [-34, 8], + [-9, -53], + [-25, -40], + [-52, 33], + [-45, -22], + [-24, -62], + [-42, -15], + [-14, 32], + [-48, 26], + [-32, 42], + [-84, 2], + [-27, -15], + [-47, 14], + [-64, -9], + [-9, -43], + [-60, -78], + [-150, -69], + [-17, -36] + ], + [ + [87, 15485], + [31, 73], + [-18, 34], + [28, 56], + [42, 53], + [52, 38], + [84, 27], + [19, 26], + [83, 15], + [39, 41], + [15, 55], + [-32, 78], + [-47, 73], + [6, 66], + [23, 15], + [22, 80], + [55, 43], + [51, 80], + [0, 111], + [49, 102], + [-10, 75], + [96, 64], + [51, 1], + [13, 32], + [118, 78], + [9, 33], + [82, 20], + [63, 36], + [36, 40], + [30, 8], + [44, 55], + [63, 27], + [83, -15], + [141, 49], + [52, -10], + [27, 34], + [174, 12], + [63, 104], + [29, 14], + [42, -21], + [129, 37], + [80, -17], + [17, -86], + [31, -9], + [29, 31], + [43, -9], + [22, -44], + [33, 20], + [28, 97], + [79, 444], + [93, 554], + [88, 519], + [-3, 45], + [46, 83], + [-3, 93], + [-35, 84], + [-94, 159], + [32, 62], + [-21, 73], + [-77, 39], + [-66, 70], + [-32, 12], + [-87, 105], + [17, 294], + [-1, 102], + [70, 25], + [61, -3], + [81, 50], + [101, 37], + [60, -65], + [35, 15], + [51, -27], + [48, 30], + [-38, 45], + [25, 80], + [-65, 92], + [-40, 21], + [-48, -22], + [-22, 19], + [-83, 10], + [-51, -11], + [-29, 24], + [-55, -16], + [-1, 376], + [63, 11], + [47, -5], + [55, 29], + [88, -29], + [265, 0], + [383, 2], + [-22, 93], + [19, 68], + [53, -24], + [99, -78], + [89, 116], + [87, -4], + [38, 69], + [89, 59], + [25, -22], + [4, -63], + [32, -129], + [66, -16], + [33, -67], + [14, -169], + [-9, -160], + [127, 37], + [295, -277], + [58, 15], + [34, -21], + [45, 35], + [54, 1], + [19, 44], + [93, 48], + [15, 21], + [84, 5], + [43, -54], + [-31, -140], + [61, 6], + [31, 37], + [-1, 42], + [38, 64], + [48, -6], + [42, 17], + [6, 101], + [28, 19], + [44, -24], + [64, 73], + [53, 43], + [25, -49], + [23, 4], + [72, 58], + [33, 57], + [98, 48], + [-26, -72], + [31, -6], + [22, 49], + [87, 67], + [43, 54], + [-7, 48], + [9, 100], + [48, 35], + [80, -13], + [146, 95], + [39, -9], + [52, 18], + [13, 38] + ], + [ + [8263, 18330], + [-125, -39], + [-35, -51], + [-12, -50], + [62, -61], + [51, 9], + [76, -24], + [38, 8], + [53, -44], + [99, -23], + [27, 30], + [83, 23], + [59, -31], + [9, -49], + [38, -64], + [38, 30], + [45, 7], + [14, 40], + [-3, 62], + [-43, -19], + [-89, 45], + [-88, 99], + [-13, 38], + [-53, 22], + [-56, -10], + [-26, 14], + [-66, -30], + [-30, 49], + [-53, 19] + ], + [ + [19342, 12137], + [43, -41], + [-29, -50], + [-72, -56], + [-2, 46], + [68, 54], + [-8, 47] + ], + [ + [18802, 8955], + [-11, 17], + [-293, 198] + ], + [ + [18498, 9170], + [-22, 34], + [48, 40], + [-26, 69], + [-31, 7], + [-34, 59], + [-30, -3], + [-35, 33], + [-33, 71], + [-44, 33], + [26, 117], + [-14, 24], + [18, 95], + [30, 58], + [68, 6], + [47, -15], + [13, 55], + [-43, 15], + [33, 120], + [58, 29], + [80, 97], + [35, 20], + [42, 74], + [15, 47], + [-36, 50], + [-45, 16], + [-39, 47], + [-46, 7], + [-39, 61], + [-107, -1], + [-19, 30], + [-56, -29], + [-37, 51], + [-38, 27], + [-86, -10], + [-58, 22], + [-25, -38], + [-89, -27], + [-25, 13], + [-64, -4], + [-14, 142], + [-243, 232], + [-84, -43], + [-78, -4], + [-32, 48], + [-61, -15], + [-98, 38], + [4, 22], + [-104, 45], + [-71, 58], + [-83, 49], + [-25, 31], + [-123, 33], + [-74, -11], + [-82, -44], + [-28, -29], + [-114, 39], + [-90, 44], + [5, 77], + [50, 106], + [-111, 41], + [-27, -12], + [-113, 28], + [-104, -28], + [-69, -28], + [-141, -98], + [-34, -55], + [-90, -47], + [-31, -42], + [-39, 10], + [-177, -131], + [-42, 9], + [-59, -79], + [-31, -21], + [-103, -9], + [-60, -40], + [-9, 49], + [38, 46], + [5, 42], + [-39, 53] + ], + [ + [15309, 10976], + [28, 148], + [-7, 111], + [39, 11], + [-20, 73], + [-30, 14], + [-120, 89], + [11, 74], + [-28, 22], + [22, 98], + [-15, 47], + [51, 60], + [-42, 21], + [14, 89], + [44, 15], + [47, 39], + [-9, 27], + [-118, -50], + [-28, 55], + [19, 71], + [-15, 19], + [27, 49], + [81, 31], + [6, 25] + ], + [ + [15266, 12114], + [-104, -18], + [23, 68], + [-15, 117], + [17, 48], + [54, 12], + [1, 31], + [-49, 22], + [-69, 85], + [0, 160], + [49, 75], + [-49, 10], + [32, 131], + [71, 22], + [-70, 39], + [-57, 0], + [-56, 32], + [-16, 60], + [-37, 46], + [19, 32], + [60, 32], + [40, 115], + [64, 51], + [49, 109], + [-10, 40], + [83, 33], + [19, 30], + [88, 60], + [24, 44], + [39, 7], + [30, 54], + [-15, 60] + ], + [ + [15481, 13721], + [66, 27], + [47, -103], + [48, -43], + [15, -61], + [-25, -25], + [7, -65], + [42, -66], + [61, -52], + [95, -11], + [78, -51], + [68, 37], + [11, 33], + [41, 27], + [68, 75], + [60, -4], + [79, 53], + [39, -44], + [54, -11], + [51, 37], + [26, 61], + [-2, 34], + [60, -5], + [45, 71], + [1, 31], + [31, 40], + [11, 62], + [37, -2], + [14, 51], + [-23, 45], + [30, 43], + [-72, 44], + [-31, 73], + [-4, 52], + [44, 62], + [45, 14], + [62, 58], + [62, 33], + [96, -92], + [91, 27], + [59, -20] + ], + [ + [16968, 14156], + [30, -16] + ], + [ + [16998, 14140], + [6, -49], + [69, -58], + [31, 1], + [26, 35], + [52, 9], + [94, 46], + [72, 83], + [42, 18], + [78, 4], + [71, 19], + [26, -17], + [47, 21], + [21, 55], + [66, 79], + [74, 43], + [31, 55], + [35, 24], + [36, 55] + ], + [ + [17875, 14563], + [42, -17], + [30, 19], + [61, 0], + [8, -45], + [36, -3], + [63, -28], + [38, -69], + [18, -74], + [83, -46], + [-7, -58], + [-31, -45], + [8, -64], + [55, -21], + [102, 70], + [43, -9], + [28, 62], + [19, 111], + [34, 10], + [45, -27], + [34, 27], + [59, 9], + [47, 68], + [0, 63], + [109, 21], + [-9, 72], + [46, 4], + [122, 71], + [53, -17], + [30, -83], + [108, -17], + [51, -40], + [82, 5], + [48, -39], + [7, -42], + [29, -31], + [38, 91], + [56, -20], + [-27, -48], + [60, -53], + [49, 28], + [1, -87], + [44, -110], + [19, 19] + ], + [ + [19716, 14093], + [-21, -33], + [19, -46], + [-18, -20], + [6, -53], + [31, -22], + [-14, -56], + [16, -30], + [75, -22], + [31, -84], + [21, -110], + [-52, -24], + [-15, -30], + [25, -48], + [-9, -44], + [9, -62], + [-102, -42], + [-32, 32], + [-85, 0], + [-15, -100], + [35, -61], + [35, -14], + [22, -83], + [50, -27], + [-12, -53], + [19, -59], + [55, -30], + [30, -41], + [78, -29], + [0, -63], + [33, 12], + [36, 60] + ], + [ + [19967, 12911], + [84, 21], + [-70, -141], + [-50, -118], + [-79, -149], + [-110, -162], + [-22, -44], + [-176, -209], + [-83, -51], + [-9, 54], + [7, 63], + [-22, 44], + [-60, 7], + [-42, 56], + [-32, -46], + [-20, -78], + [20, -33], + [-30, -122], + [-31, -45], + [-36, -20], + [-18, -42], + [7, -64], + [34, -28], + [-23, -75], + [23, -35], + [-40, -27], + [-20, -47], + [10, -37], + [-53, -74], + [63, -9], + [-15, -132], + [6, -53], + [-45, -193], + [2, -86], + [16, -7], + [17, -117], + [0, -143], + [30, -172], + [3, -75], + [45, -117], + [-54, -142], + [3, -29], + [-40, -64], + [7, -66], + [-28, -31], + [-26, -164], + [-18, -27], + [-1, -66], + [-21, -138], + [-17, -30], + [-5, -86], + [16, -81], + [-1, -78], + [31, -65], + [-31, -30], + [-46, -75], + [-86, -39], + [-26, -26], + [-86, -148], + [-17, -65] + ], + [ + [20128, 16817], + [-213, -55], + [-20, -73], + [-26, -10], + [-36, -82], + [4, -49], + [-36, -27], + [-31, -93], + [-47, -32], + [-51, -68], + [20, -34], + [-34, -49], + [-9, -42], + [-70, -71], + [-29, -45], + [-78, 1], + [-40, -80], + [-32, -33], + [13, -92] + ], + [ + [19413, 15883], + [-48, -83], + [-17, -68], + [17, -55], + [-18, -41], + [-44, -24], + [14, -63], + [33, -21], + [-4, -70], + [78, -73], + [-28, -82], + [-32, -15], + [-6, -61], + [-33, -33] + ], + [ + [19325, 15194], + [-58, -54], + [-66, -28], + [-33, -45], + [-49, 18], + [-24, 50], + [-75, 37], + [-25, 69], + [-44, 39], + [-45, 17], + [-70, 63], + [-32, 15], + [-137, -16], + [-25, -29], + [-157, -26], + [-40, 34], + [-125, -10] + ], + [ + [18320, 15328], + [19, 52], + [13, 107], + [34, 49], + [-3, 129], + [-24, 45], + [-72, 12], + [-56, 22], + [-20, 65], + [-23, 24], + [-9, 76], + [14, 28], + [-40, 70], + [3, 54], + [-51, 267], + [21, 33], + [-17, 39], + [-2, 106], + [12, 34], + [-8, 79], + [-83, 47], + [-23, 49], + [-55, 41], + [-15, 39], + [41, 118], + [-32, 33], + [23, 55], + [17, 78], + [22, 40], + [-10, 112], + [10, 49], + [-71, 27], + [16, 28], + [-31, 67], + [12, 71], + [-48, 13], + [9, 84], + [-10, 69], + [-43, 29], + [55, 110], + [36, 53], + [4, 35], + [-39, 64] + ], + [ + [17896, 17930], + [32, 19], + [138, -4], + [83, 18], + [142, 8], + [57, 36], + [31, -14], + [140, -2], + [105, -16], + [75, -36], + [78, -59], + [55, -16], + [124, -90], + [87, -31], + [78, -88], + [45, -3], + [51, -61], + [57, -25], + [29, -41], + [58, -41], + [86, -23], + [70, -90], + [49, -36], + [86, -119], + [118, -114], + [74, -34], + [31, -67], + [67, -65], + [146, -43], + [40, -76] + ], + [ + [14611, 10301], + [0, -9] + ], + [ + [14611, 10292], + [-532, 0], + [15, 66], + [-19, 55], + [40, 48], + [-15, 31], + [22, 50], + [0, 70], + [430, 0], + [23, -45], + [27, -6], + [7, -87], + [-35, -84], + [4, -69], + [33, -20] + ], + [ + [18802, 8955], + [-33, -101], + [-9, -98], + [1, -149], + [30, -202], + [-24, -104], + [-47, -104], + [-86, -46], + [-48, -69], + [-56, -110], + [-18, -103], + [-47, -80], + [-79, -163], + [-37, -14], + [-48, -83], + [-88, -26], + [-35, -61], + [-3, -47], + [-28, -59], + [-48, -56], + [-5, -39] + ], + [ + [18094, 7241], + [-67, 44], + [-68, -13], + [-19, 13], + [-136, 24], + [-33, -2], + [-102, 49], + [12, 69], + [-16, 94], + [-73, 30] + ], + [ + [17592, 7549], + [41, 168], + [-26, 87], + [36, 21], + [14, 50], + [189, 0], + [16, 10], + [41, 103], + [4, 43], + [63, 29], + [11, 46], + [-14, 36], + [12, 44], + [108, 97], + [2, 44], + [34, 70], + [-9, 61], + [-34, 60], + [-38, 19], + [15, 48], + [-55, 53], + [-63, 24], + [5, 33], + [54, 0], + [13, -24], + [81, -2], + [26, 15], + [-15, 75], + [-59, 31], + [15, 102], + [-83, 8], + [67, 59], + [51, -24], + [61, -64], + [115, -13], + [63, 25], + [-46, 33], + [14, 29], + [-20, 46], + [40, 49], + [-7, 52], + [-44, 46], + [14, 56], + [47, 27], + [113, -27], + [54, -24] + ], + [ + [15309, 10976], + [-28, -36], + [-49, -7], + [-60, 12], + [-20, 66], + [-80, 62], + [-41, -26], + [-8, -40], + [15, -107], + [15, -27], + [-67, -22], + [-86, 41], + [-41, 5], + [-34, -23], + [16, -36], + [-26, -54], + [5, -29], + [50, -39], + [-7, -30], + [-44, -40], + [-11, -65], + [52, -39], + [23, -97], + [-6, -57], + [-125, -30], + [-54, 1], + [-43, -47], + [-44, -11] + ], + [ + [14611, 10292], + [-24, -47], + [17, -58], + [-24, -58], + [-34, -37], + [-9, -85], + [106, -73], + [57, -212], + [-113, -79], + [-37, -78], + [-62, -54], + [17, -71], + [94, -5], + [37, -56], + [-4, -31], + [-36, -37], + [-12, -87], + [41, -99], + [-41, -16], + [-76, -66], + [-46, -19], + [-65, -85], + [-60, -14], + [-30, -37], + [-54, -18], + [-47, 46], + [-23, -7], + [-104, 57], + [-20, -19], + [-89, -9], + [-93, 20], + [-101, -1], + [-58, 23], + [-38, -39], + [-15, -88], + [-84, -11], + [-34, 12], + [-92, -67], + [-36, 45], + [-2, 31], + [-88, -29], + [-75, -49], + [-56, 19], + [-72, 6], + [-35, -43], + [-46, 5], + [-80, -20], + [-36, -65], + [-69, -69], + [1, -61], + [-47, -60], + [-51, -1], + [-76, -88], + [-31, -67], + [-34, -36] + ], + [ + [12622, 8305], + [-67, 80], + [-137, 65], + [-33, -2], + [-29, 32], + [-95, 23], + [-36, -6], + [-88, 49], + [-66, 50], + [-78, 9], + [-55, 60], + [-89, 16], + [-58, 76], + [-57, 19], + [-21, -19], + [-129, 11], + [-48, 30], + [-28, 41], + [112, 104], + [-11, 26], + [-92, 17], + [-66, -27], + [-17, 19], + [-23, 133], + [39, 25] + ], + [ + [11450, 9136], + [1, 30], + [-34, 41], + [-25, 93], + [-33, 25], + [-7, 50], + [11, 117], + [18, 26], + [-12, 48], + [82, 157], + [31, 96], + [27, -2], + [45, 53], + [49, 21], + [25, 64], + [61, 46], + [17, 50], + [-39, 31], + [-6, 56], + [16, 21], + [61, 12], + [-1, 55], + [121, 56], + [41, 102], + [134, 4], + [34, 44], + [30, -12], + [71, 108], + [-7, 51], + [39, 35], + [18, 73], + [-9, 37], + [20, 75], + [29, 14], + [34, 50], + [59, 35], + [70, 13], + [32, -28], + [87, 69], + [-3, 44], + [70, 182], + [-20, 63], + [21, 99], + [71, 102], + [-18, 205], + [33, 18], + [22, 93], + [54, 51], + [0, 39], + [32, 38], + [16, 151], + [28, 43], + [9, 67] + ], + [ + [12855, 12147], + [50, 138], + [29, 45], + [84, 64], + [3, -79], + [-48, -65], + [-9, -66], + [70, -58], + [58, -5], + [76, -30], + [313, -184], + [15, 11], + [2, 110], + [49, 95], + [71, 65], + [79, -97], + [58, 89], + [73, -68], + [3, -40], + [51, -16], + [33, -63], + [58, -10], + [14, -82], + [84, 38], + [66, 41], + [12, -92], + [71, 16], + [73, -23], + [36, 4], + [79, -91], + [22, 45], + [-16, 106], + [28, 61], + [30, -47], + [46, 0], + [24, -49], + [31, 22], + [30, -16], + [52, 37], + [120, 32], + [104, 80], + [38, 19], + [163, -1], + [20, 86], + [28, -24], + [2, -73], + [92, 20], + [44, 22] + ], + [ + [17394, 18065], + [50, -26], + [-17, -27], + [-43, 23], + [10, 30] + ], + [ + [17405, 18066], + [83, -3], + [-10, -50], + [-36, 38], + [-37, 15] + ], + [ + [16535, 18236], + [32, -29], + [-27, -61], + [-28, 5], + [1, 60], + [22, 25] + ], + [ + [16633, 18318], + [-10, -87], + [-51, -12], + [13, 80], + [48, 19] + ], + [ + [15890, 18892], + [40, -44], + [-36, -31], + [-4, 75] + ], + [ + [17624, 18031], + [-27, -76], + [38, -53], + [-15, -34], + [-56, -53], + [-41, -73], + [-63, -12], + [-20, -73], + [-32, -28], + [-66, 1], + [-38, -23], + [-59, -3], + [-92, -115], + [3, -31], + [-31, -105], + [-53, -48], + [-22, -58], + [-69, -82], + [14, -83], + [50, -30], + [2, -79], + [-47, -73], + [3, -45], + [71, -190], + [10, -62], + [-14, -86], + [-48, -30], + [-66, -112], + [-36, -24], + [0, -156], + [27, -65], + [0, -50], + [45, -46], + [52, -29], + [15, -32], + [-17, -78], + [3, -55], + [-26, -92], + [-45, -49], + [-133, -7], + [-19, -18], + [-98, -29], + [-99, 74], + [-86, 10], + [-47, -32], + [-45, 9], + [-109, -76], + [-7, -30], + [-73, -112], + [-40, -1], + [-101, -63], + [-68, -97], + [-71, 19], + [-59, -63], + [-66, -24], + [-61, -2], + [-34, -31], + [-67, -7], + [-71, -64], + [-28, -115], + [-30, -82], + [-3, -74], + [-44, -55], + [-14, -61], + [-31, -56], + [3, -29], + [-43, -77], + [-13, -48], + [-54, -40], + [-31, -83], + [28, -51], + [25, -113], + [-5, -51], + [60, -70], + [8, -36], + [-27, -33], + [6, -138], + [-24, -51], + [13, -47], + [-20, -98], + [-37, -50], + [0, -36] + ], + [ + [15359, 13661], + [-40, 10], + [-3, 34], + [-77, -18], + [-21, 23], + [-69, -6], + [-63, 62], + [-19, 52], + [3, 65], + [-22, 45], + [-71, 34], + [34, 91], + [4, 62], + [-30, 7], + [-21, 43], + [-51, 6], + [-30, 44], + [-3, 55], + [-23, 38], + [-36, 6], + [-9, 41], + [-63, 7], + [36, 101], + [49, 38], + [-16, 51], + [25, 23], + [-15, 55], + [36, 35], + [36, 95], + [81, 29], + [49, 0], + [32, 69], + [-15, 19], + [24, 48], + [-12, 60], + [-62, 50], + [-57, -8], + [-50, -27], + [-45, -5], + [-63, -60], + [-25, 8], + [-55, 93], + [-44, 39], + [-21, 46], + [-66, 55], + [0, 31], + [-64, 70], + [-1, 108], + [-49, 17], + [-34, -21], + [-46, 48], + [-5, 33], + [46, 6], + [63, 79], + [21, 83], + [5, 117], + [66, 233], + [-21, 54], + [-17, 108], + [3, 94], + [-28, 58], + [5, 97], + [-39, 57], + [-35, 4], + [-68, 45], + [-46, -3], + [-32, 74], + [-65, 15], + [-41, -24], + [-55, 9], + [-102, 53], + [-85, -14], + [-47, -83], + [-41, 17], + [-41, -25] + ], + [ + [13818, 16516], + [176, 147], + [339, 280], + [14, 17], + [61, -13], + [54, 51], + [57, 96], + [2, 24], + [51, 55], + [34, 101], + [54, 29], + [46, 67], + [26, 15], + [24, 86], + [-6, 35], + [20, 58], + [23, 12], + [16, 70], + [55, 41], + [22, 55], + [34, 36], + [51, 106], + [9, 85], + [21, 32], + [-38, 36], + [25, 52], + [64, 17], + [39, 59], + [1, 125], + [77, 78], + [10, 62], + [30, 84], + [-6, 66], + [-48, 3], + [14, 42], + [37, -2], + [39, 29], + [12, 57], + [-25, 60], + [21, 18], + [18, 65], + [-31, 32], + [6, 31], + [37, 20], + [18, 49] + ], + [ + [15301, 18984], + [39, 34], + [14, -83], + [31, 42], + [57, -74], + [32, 23], + [53, -79], + [26, 44], + [63, -65], + [58, -11], + [35, 36], + [0, -94], + [-33, -124], + [26, -23], + [52, 52], + [-16, 26], + [14, 42], + [41, 42], + [31, 9], + [51, -18], + [29, -59], + [24, -15], + [73, 22], + [54, 4], + [20, -30], + [-53, -18], + [-14, -31], + [87, -36], + [46, -64], + [15, -94], + [-52, -58], + [68, -5], + [35, -40], + [23, -73], + [-14, -37], + [44, -49], + [42, 5], + [82, 43], + [27, -2], + [-5, -86], + [-24, -3], + [-31, -70], + [-70, -33], + [16, -21], + [55, -3], + [59, 72], + [39, 19], + [14, 37], + [78, 7], + [40, 43], + [53, -27], + [28, 16], + [47, -19], + [17, 105], + [69, 5], + [47, -12], + [175, -80], + [70, -39], + [54, -8], + [40, -40], + [77, -45], + [63, 5], + [49, -23], + [26, -34], + [101, 2], + [24, 54], + [102, -17] + ], + [ + [12622, 8305], + [6, -53], + [-35, -18], + [-32, -86], + [26, -98], + [-12, -33], + [11, -71] + ], + [ + [12586, 7946], + [-38, -96], + [-53, -33], + [-71, -13], + [-30, -20], + [-95, -131], + [-40, -35], + [-21, -62], + [12, -78], + [-7, -33], + [-48, -15], + [-42, -76], + [-49, -26], + [17, -69], + [-11, -50], + [-33, -60], + [-38, -35], + [-33, 7], + [-25, -32], + [30, -49], + [-30, -60], + [-32, -15], + [-16, -43], + [-70, -74], + [-15, -52], + [-77, -89], + [-51, -21], + [-120, -74], + [-31, -35], + [-79, -32], + [-58, -75] + ], + [ + [11432, 6470], + [-42, -53], + [-95, -37], + [-99, -61], + [-40, -40], + [-16, -101], + [-74, -144], + [-116, -51], + [-51, -177], + [-2, -73], + [-27, -54], + [-85, -49] + ], + [ + [10785, 5630], + [-63, 75], + [-46, 33], + [-106, 39], + [-125, -53], + [-15, -33], + [-99, 1], + [-65, -28], + [-46, 30], + [-22, -19], + [-48, 47], + [0, 103], + [-19, 53], + [-32, 17], + [-1, 97], + [19, 38], + [-26, 38], + [16, 32], + [-10, 56], + [-28, 11], + [-27, 68], + [-15, 92], + [21, 59], + [0, 86], + [-53, 43], + [-12, 92], + [-24, 4], + [-39, 60], + [-109, -8], + [-81, 7], + [-73, 44], + [-34, 75], + [-64, -15], + [-30, -56], + [-42, -35], + [-56, 13], + [-43, -37], + [-93, 44], + [-137, -11], + [-183, 45], + [-18, 41], + [-46, 2], + [-31, -24], + [-90, 7], + [-33, 19], + [33, 124], + [13, 101], + [-10, 65], + [-26, 22], + [57, 139], + [7, 123], + [-11, 35], + [26, 34], + [-56, 58], + [33, 19], + [-5, 70], + [-25, 35], + [-55, 36], + [6, 106], + [-40, 27], + [-5, 62], + [-37, 5], + [-1, 65], + [58, 29], + [95, 78], + [-61, 45], + [-80, 76], + [192, 421], + [40, 1], + [-5, 78], + [-26, -1], + [115, 384], + [29, 23], + [-38, 40], + [-14, 49], + [-66, 128], + [3, 54], + [-39, 52], + [18, 47] + ], + [ + [8882, 9412], + [22, 12], + [16, -100], + [33, -12], + [11, -40], + [69, -32], + [117, 23], + [20, 22], + [62, 1], + [70, 71], + [25, 62], + [36, 11], + [65, 120], + [89, -3], + [58, 20], + [25, -19], + [90, 41], + [16, 24], + [76, 30], + [53, -14], + [3, -28], + [74, -17], + [84, -47], + [76, -17], + [34, -55], + [122, -40], + [94, -65], + [84, 21], + [62, -4], + [56, 34], + [6, 25], + [134, 25], + [46, -34], + [47, -72], + [86, 34], + [51, -9], + [26, 77], + [47, 16], + [72, 96], + [34, 30], + [43, -6], + [-13, -238], + [-83, -24], + [-55, -105], + [65, -30], + [35, -38], + [62, 14], + [106, -34], + [92, 23], + [69, -27], + [56, 2] + ], + [ + [13010, 13901], + [-46, -116], + [-44, -52], + [5, -51], + [-22, -63], + [-51, -102], + [-2, -33], + [-46, -57], + [18, -53], + [-28, -51], + [-6, -56], + [13, -77], + [-27, -35], + [2, -52], + [-48, -138], + [1, -49], + [45, -31], + [-3, -46], + [-32, -35], + [19, -74], + [26, -15], + [-23, -62], + [8, -43], + [-6, -89], + [28, -96], + [2, -42], + [-46, -90], + [46, -72], + [5, -49], + [57, -25] + ], + [ + [8882, 9412], + [-80, 61], + [-57, -35], + [-32, 40], + [-99, 51], + [-84, 104], + [-44, 145], + [6, 164], + [15, 35], + [51, 44], + [-7, 52], + [19, 29], + [1, 63], + [-61, -30], + [-570, 24], + [-385, 10], + [-35, 459], + [-178, 210], + [173, 9], + [-15, 277], + [-27, 7], + [-7, 58], + [-32, 47], + [2, 34], + [-33, 47], + [-18, 62], + [6, 49], + [51, 61], + [-35, 35], + [-14, 77], + [-37, -2], + [-22, 33], + [-45, 5], + [-94, 63], + [-50, 48] + ], + [ + [7145, 11748], + [30, 3], + [88, 127], + [183, 3], + [49, 107], + [8, 33], + [46, 64], + [36, 5], + [21, 46], + [-5, 81], + [34, 104], + [68, 52], + [19, -6], + [41, 80], + [-51, 58], + [-8, 76], + [-43, 50], + [-3, 67], + [-63, 40], + [-12, 77], + [17, 92], + [93, 91], + [-4, 51], + [-30, 45], + [-20, 61], + [-77, 19], + [-127, 1], + [-38, 61], + [-532, 1], + [-55, 5], + [17, 162], + [13, 54], + [8, 109], + [-40, 51], + [-37, 104], + [38, 95], + [13, 75], + [-21, 43], + [8, 44], + [29, 45], + [-16, 54], + [-40, 48], + [16, 42], + [-40, 27], + [6, 35], + [51, 51], + [-19, 59], + [48, 101], + [-32, 58], + [-31, 11] + ], + [ + [8671, 15349], + [43, -26], + [48, -78], + [18, -69], + [22, -13], + [14, -73], + [21, -47], + [3, -53], + [55, -70], + [14, -43], + [33, -27], + [-20, -61], + [-1, -66], + [24, -47], + [25, -142], + [34, 5], + [63, -27], + [-3, -32], + [125, -46], + [54, -51], + [31, -47], + [-11, -50], + [34, -29], + [97, -7], + [26, -85], + [55, 14], + [483, -42], + [437, -38], + [487, -39], + [534, -42], + [482, -37], + [434, -31], + [341, -23], + [337, -26] + ], + [ + [17592, 7549], + [-28, -20], + [-23, -67], + [-94, -25], + [32, -44], + [-46, -38], + [-35, -107], + [-1, -48], + [-34, -54], + [22, -17], + [-52, -54], + [42, -78], + [-47, -15], + [-239, -110], + [-155, -94], + [-44, 9], + [-45, 37], + [-47, 4], + [-77, -38], + [-173, 3], + [-115, -48], + [-62, -14], + [-62, -42], + [-120, -3], + [-61, -47], + [-146, -43] + ], + [ + [15982, 6596], + [-49, -27], + [-89, -12], + [-64, -45], + [-128, -59], + [-33, 36], + [-29, -33], + [-29, 26], + [-48, -28], + [-36, -45], + [7, -31], + [-27, -36], + [-85, 11], + [-48, -38], + [-80, 14], + [-104, -23], + [-18, 45], + [23, 39], + [-57, 19], + [24, 47], + [-32, 72], + [-97, 51], + [-48, 69], + [26, 77], + [32, 20], + [-40, 65], + [23, 37], + [-26, 80], + [36, 41], + [-8, 95], + [-30, -5], + [-37, 37], + [61, 63], + [-69, 45], + [-86, -37], + [-102, 140], + [3, 47], + [-16, 71], + [-53, 56], + [29, 90], + [37, 14], + [12, 37], + [-31, 72], + [-75, 41], + [-4, 59], + [37, 75], + [-43, 55], + [-52, 24], + [-34, 69], + [-62, -18], + [-31, -31], + [-38, 40], + [-85, -8], + [-19, -76], + [-60, 11], + [-37, -24], + [-59, 30], + [-14, 29], + [-62, -40], + [-226, -21], + [-69, -19], + [-17, -50], + [10, -76], + [-55, 3], + [3, 76], + [-16, 57], + [-42, 6], + [-29, -67], + [-58, -19], + [-40, 79], + [1, 120], + [-78, -12], + [-61, 44], + [-49, -15], + [-78, 4], + [-59, -11], + [-84, 16], + [-31, 23], + [-139, 7], + [-65, 49], + [-57, -21], + [-44, -52], + [-70, -18], + [-100, -57], + [-19, -29] + ], + [ + [13096, 20033], + [-4, -37], + [38, -186], + [76, -12], + [129, 51], + [54, -24], + [90, -182], + [26, -110], + [67, 10], + [106, -11], + [37, -34], + [58, -1], + [71, -17], + [38, 12], + [128, -11], + [17, -34], + [175, -204], + [37, -20], + [36, 41], + [47, -33], + [5, 44], + [58, -24], + [25, 40], + [70, -34], + [37, 18], + [87, 8], + [17, -29], + [37, 5], + [7, -41], + [48, 14], + [31, -72], + [55, 22], + [28, -35], + [41, 49], + [17, -59], + [41, -8], + [54, 37], + [19, -24], + [-29, -81], + [53, 18], + [131, -47], + [49, 74], + [39, -66], + [59, -56] + ], + [ + [13818, 16516], + [69, -35], + [65, -12], + [64, 21], + [51, -75], + [89, -46], + [-20, -62], + [-53, -10], + [-11, -63], + [33, -65], + [-49, -23], + [21, -56], + [-84, -65], + [13, -65], + [-48, -26], + [-62, -60], + [-28, -68], + [6, -41], + [-89, -65], + [-112, -18], + [-53, -50], + [-51, -33], + [13, -180], + [-26, -52], + [-80, -100], + [-2, -41], + [22, -52], + [99, -78], + [-1, -64], + [-29, -171], + [-37, -107], + [-36, -23], + [-33, -94], + [-101, -151], + [-50, -10], + [-87, -99], + [-35, -85], + [-79, -81], + [-1, -35], + [-29, -60], + [9, -41], + [-76, -174] + ], + [ + [8255, 19780], + [0, 561] + ], + [ + [8255, 20341], + [55, -29], + [27, 13], + [30, 52], + [101, -14], + [19, 20], + [-5, 95], + [55, 5], + [3, 43], + [32, 28], + [97, -49], + [77, -2], + [1, 94], + [37, -12], + [63, 19], + [26, 24], + [71, -17], + [53, 6], + [66, 119], + [66, 49], + [27, -27], + [72, 41], + [75, -61], + [39, 5], + [63, -32], + [42, 33], + [52, 11], + [20, -14], + [76, 17], + [49, -3], + [60, -30], + [23, 5], + [119, -38], + [49, 35], + [-2, 82], + [-76, 114], + [-43, 15], + [20, 57], + [25, -4], + [32, 48], + [0, 53], + [26, 8], + [110, -76], + [81, 18], + [89, 4], + [71, 48], + [48, -6], + [45, 34], + [15, -28], + [71, 48], + [7, -35], + [51, -60] + ], + [ + [16968, 14156], + [-1, 80], + [18, 10], + [-15, 63], + [59, -42], + [1, -37], + [50, -46], + [-82, -44] + ], + [ + [21380, 15854], + [3, -84], + [17, -32], + [19, -105], + [40, -77], + [-10, -30], + [27, -83], + [0, -82], + [-17, -124], + [-40, 2] + ], + [ + [21419, 15239], + [-34, 4], + [-15, 44], + [-60, 32], + [-80, 19], + [-98, -58], + [-45, 11], + [-15, -97], + [-69, -44], + [-118, -30], + [-18, -25], + [-51, -12], + [-40, 19], + [-98, -6], + [-96, -14], + [-3, -41], + [-28, -23], + [-49, 12], + [-32, -48], + [0, -72], + [-69, -47], + [-78, -29], + [-52, -36], + [-53, 28], + [-40, 49], + [5, 94], + [-79, 26], + [-4, 35], + [32, 18], + [8, 39], + [50, 35], + [-31, 69], + [40, 53], + [76, 32], + [-23, 54], + [-77, 30], + [-37, 36], + [-54, -8], + [-29, -39], + [-45, -1], + [-36, -67], + [-70, -29], + [-53, -56], + [-56, -20], + [-62, -72], + [-37, 17], + [-21, -48], + [-47, 29], + [-41, -29], + [-33, 10], + [-12, 67], + [-97, -30], + [-53, -3], + [-18, 35], + [-49, 42] + ], + [ + [19413, 15883], + [85, 16], + [61, -55], + [77, 8], + [22, -66], + [32, 12], + [23, 88], + [44, 6], + [37, 28], + [47, 83], + [36, 32], + [34, -8], + [43, 20], + [60, 6], + [89, 55], + [67, -2], + [5, -67], + [-84, -64], + [-32, -38], + [-11, -98], + [-38, -12], + [-10, -102], + [94, 12], + [27, -25], + [5, -46], + [36, -8], + [28, 22], + [70, -48], + [56, 66], + [41, 14], + [57, -61], + [-19, -58], + [85, 0], + [20, 46], + [37, 26], + [-28, 59], + [24, 68], + [38, 20], + [-45, 34], + [14, 83], + [39, -2], + [19, 40], + [48, 7], + [7, -65], + [25, -26], + [103, 16], + [31, -41], + [127, -1], + [63, 21], + [43, -24], + [97, -2], + [40, -31], + [54, 7], + [47, -12], + [97, 38] + ], + [ + [14091, 4892], + [3, -76], + [-51, 29], + [48, 47] + ], + [ + [13903, 4518], + [-198, -1], + [-21, -18], + [-97, 6], + [-116, -90], + [-39, -4], + [-53, -43], + [-50, 16], + [-120, 101], + [-71, 14], + [-107, -47], + [25, -63], + [-24, -42], + [-53, -21], + [-57, 91], + [15, 34], + [-54, 39], + [-73, 3], + [-60, -95], + [-114, -58], + [-50, 32], + [-133, -55], + [-31, -56], + [41, -100], + [-32, -36], + [-83, -20], + [-18, 39], + [-108, 32], + [-115, -19], + [-75, 19], + [-56, 53], + [-106, 20], + [-87, 2], + [-32, 22], + [-39, -9], + [-46, 37], + [-171, 2], + [-55, -24], + [-119, 76], + [-43, 7], + [-61, -32], + [-56, 26] + ], + [ + [11161, 4356], + [-69, 76], + [3, 31], + [-65, 63], + [-6, 75], + [14, 24], + [-29, 89], + [-61, 37], + [-95, 20], + [-70, -9], + [-90, -60], + [-79, 41], + [-11, 79], + [66, 104], + [32, 78], + [-15, 39], + [33, 141], + [38, 109], + [1, 91], + [39, 67], + [-9, 51], + [-25, 26], + [-4, 55], + [26, 47] + ], + [ + [11432, 6470], + [72, 30], + [63, -22], + [86, -11], + [66, 34], + [43, -38], + [37, 16], + [114, -34], + [39, 12], + [17, 73], + [101, -28], + [37, -35], + [55, 8], + [26, -28], + [61, 0], + [30, -20], + [63, 25], + [76, -12], + [82, -45], + [116, -31], + [29, 6], + [55, -64], + [46, -28], + [18, 30], + [54, -2], + [81, -24], + [86, 9], + [49, -14], + [64, 16], + [58, -2], + [33, -40], + [-6, -30], + [102, -35], + [26, -32], + [46, -117], + [-14, -140], + [39, -56], + [-7, -67], + [41, -119], + [80, -67], + [0, -37], + [55, -106], + [-3, -49], + [-38, -50], + [2, -63], + [57, -22], + [94, 24], + [63, -9], + [51, 12], + [28, -24], + [89, 16], + [62, -44], + [-29, -36], + [-6, -97], + [-17, -27], + [38, -47], + [30, 51], + [35, 19], + [106, -56], + [56, -102], + [31, -6] + ], + [ + [14200, 4935], + [-70, -84], + [-21, 41], + [-92, 15], + [-31, -39], + [-4, -56], + [-103, 17], + [-5, -29], + [94, -23], + [44, -43], + [-90, -145], + [-19, -71] + ], + [ + [21419, 15239], + [49, -42], + [-45, -86], + [23, -31], + [16, -62], + [-29, -68], + [-44, -147], + [-4, -60], + [-26, -96], + [-49, -74], + [6, -32], + [-36, -96] + ], + [ + [17875, 14563], + [84, 43], + [31, 58], + [54, 31], + [38, 48], + [30, -28], + [31, 51], + [50, 33], + [80, 94], + [49, 102], + [0, 75], + [-60, 31], + [-14, 33], + [19, 69], + [-27, 40], + [-6, 46], + [86, 39] + ], + [ + [17624, 18031], + [101, -81], + [171, -20] + ], + [ + [15481, 13721], + [-11, -49], + [-28, -16], + [-46, 16], + [-37, -11] + ], + [ + [16300, 6207], + [51, -54], + [-59, -19], + [-53, 27], + [61, 46] + ], + [ + [18094, 7241], + [-2, -38], + [-61, -87], + [34, -67], + [-6, -64], + [27, -120], + [-8, -37], + [-135, -80], + [-137, -39], + [-102, -45], + [-57, -44], + [-48, -65], + [-53, -33], + [-20, -39], + [1, -54], + [45, -50], + [-35, -28], + [-44, -76], + [-168, 14], + [-120, 1], + [-184, -25], + [-73, 6], + [-48, 48], + [58, 79], + [-30, 40], + [-84, -38], + [-13, -50], + [52, -38], + [4, -41], + [-69, -30], + [-46, 3], + [-90, -23], + [-179, -13], + [-3, 16], + [38, -10], + [106, 21], + [-54, 27], + [-51, 44], + [-138, -22], + [-37, -47], + [-117, 16], + [-11, 42], + [-44, -19], + [-10, -33], + [-123, -24], + [-25, -102], + [108, -29], + [-37, -47], + [-27, 16], + [-50, -22] + ], + [ + [16028, 6035], + [-89, 85], + [34, 36], + [18, 89], + [27, 36], + [75, 36], + [77, 0], + [108, 32], + [7, 36], + [53, 53], + [-40, 40], + [-87, 21], + [-64, -40], + [-75, 23], + [-60, 109], + [-30, 5] + ], + [ + [20128, 16817], + [52, -67], + [66, -2], + [43, 17], + [43, -18], + [87, -79], + [61, -5], + [89, 17], + [76, -25], + [101, 11], + [81, 29], + [105, -20], + [163, -47], + [65, -74], + [60, -116], + [22, -114], + [37, -119], + [1, -41], + [25, -31], + [5, -92], + [33, -40], + [2, -52], + [23, -29], + [12, -66] + ], + [ + [13292, 2571], + [-113, -159], + [-37, -65], + [-97, -211], + [-78, -216], + [-41, -72], + [-171, -247], + [-41, -67], + [-61, -68], + [-87, -76], + [-98, -103], + [-130, -104], + [-169, -95], + [-110, -86], + [-75, 110], + [52, 9], + [43, -25], + [66, 14], + [1, 29], + [63, 5], + [41, 28], + [94, 133], + [52, -15], + [63, 45], + [41, 105], + [-10, 115], + [37, -14], + [71, 35], + [7, 75], + [30, 2], + [92, 54], + [23, 38], + [12, 80], + [-11, 107], + [49, -35], + [23, 16], + [17, 107], + [-32, 46], + [-35, -3], + [-7, -56], + [-60, 7], + [-8, -31], + [-61, 8], + [-12, -65], + [-65, 31], + [14, 58], + [-34, 24], + [-55, 5], + [-27, 101], + [-37, 30], + [-4, -102], + [8, -70], + [67, -47], + [-47, -46], + [-25, -96], + [-45, -13], + [-11, -63], + [18, -68], + [-37, 3], + [-33, -31], + [18, -101], + [-88, -31], + [-1, -69], + [-93, -3], + [-64, -23], + [-37, -42], + [-18, -84], + [-51, -15], + [21, -72], + [-85, -42], + [3, -70], + [45, -26], + [-55, -39], + [6, -30], + [50, -14], + [20, -59], + [-79, -63], + [-76, -141], + [-57, -195], + [-83, -161], + [-80, -95], + [-202, -173], + [-122, -94], + [-82, 35], + [13, 167], + [-17, 112], + [25, 75], + [102, 75], + [28, 50], + [85, 81], + [-42, 42], + [-136, 53], + [-22, 49], + [-34, -5], + [-61, 60], + [-60, 176], + [-48, 16], + [-16, 34], + [-91, 58], + [-40, -7], + [-200, 140], + [22, 21], + [-46, 67], + [-121, 44], + [-56, -4], + [-68, 50], + [-34, 45], + [-56, -22], + [-71, 38], + [-52, 76], + [-23, 55], + [-120, 108], + [-28, -63], + [-26, -4], + [-94, -71], + [-76, 10], + [-4, 73], + [15, 44], + [-18, 47], + [-60, 28], + [-6, 33], + [-216, 203], + [-41, 15], + [-27, 61], + [-22, -2], + [-75, 65], + [-150, -14], + [-53, -98], + [-58, 14], + [-46, -25], + [-88, 51], + [79, 100], + [38, 23], + [13, 77], + [46, 52], + [72, 17], + [122, 138], + [29, 13], + [35, 64], + [31, 10], + [63, 139], + [93, 30], + [8, 56], + [52, 35], + [17, 72], + [50, 11], + [28, 41], + [71, 57], + [7, 59], + [58, 13], + [14, 74], + [54, -8], + [44, -28], + [12, 45], + [-54, 38], + [81, 66], + [28, -1], + [103, 70], + [-3, 29], + [34, 36], + [66, 36], + [29, -14], + [71, 55], + [40, 9], + [24, 78], + [65, 36], + [90, 21], + [94, 42], + [57, 5], + [68, 46], + [19, 67], + [42, -18], + [83, 60], + [6, 27], + [65, -9] + ], + [ + [11034, 3825], + [44, -12], + [46, 17], + [76, -20], + [64, 32], + [15, 26], + [49, -25], + [90, -23], + [69, 26], + [19, -47], + [107, 5], + [54, -23], + [220, -33], + [34, -16], + [50, 16], + [44, -25], + [56, -57], + [77, -28], + [52, 5], + [65, -45], + [59, -5], + [32, -49], + [57, -12], + [23, -44], + [46, -16], + [76, -54], + [-3, -18], + [70, -40], + [29, -40], + [11, -57], + [35, -2], + [22, -62], + [48, -53], + [48, -32], + [114, -18], + [54, -19], + [69, 6], + [59, -19], + [37, 23], + [51, -9], + [82, -37], + [0, -61], + [-49, -10], + [-16, -38], + [-49, -13], + [-15, -55], + [14, -83], + [-17, -88], + [3, -48], + [52, -15], + [15, -31], + [70, -28] + ], + [ + [7145, 11748], + [-232, 32], + [-84, -36], + [-43, 33], + [-123, -27], + [-35, 54], + [-81, 58], + [-54, 55], + [-6, 60], + [-68, 18], + [-20, -19], + [-74, 15], + [-32, 34], + [-86, 15], + [-25, 32], + [-74, 6], + [-61, 81], + [-48, 2], + [-21, 56], + [-54, 57], + [-55, -41], + [-44, 5], + [-55, 31], + [-28, 52], + [-37, 6], + [-64, 47], + [-62, 10], + [-49, -8], + [-20, -39], + [-130, 4], + [-52, 42], + [-78, -7], + [-76, 70], + [11, 31], + [-30, 30], + [-83, 32], + [-68, 94], + [-110, 16], + [4, 56], + [-17, 86], + [-76, -3], + [3, 89], + [-28, 57], + [-37, 6], + [-35, 143], + [3, 72], + [38, 21], + [-8, 35], + [28, 28], + [-14, 66], + [-39, 53], + [-1, 62], + [-44, 111], + [22, 55], + [45, 52], + [14, 58], + [-26, 88], + [4, 82], + [20, 35], + [-38, 71], + [-49, 32], + [-60, -97], + [-42, 1], + [-49, 45], + [-67, -20], + [-24, 22], + [-85, -20], + [-61, 1], + [-34, -28], + [-56, 1], + [-24, -20], + [-108, -10], + [-18, -11] + ], + [ + [5799, 20914], + [-29, 88], + [11, 42], + [-52, 0], + [-85, -25], + [-69, -1], + [-131, 44], + [-20, 27], + [36, 71], + [2, 55], + [-63, 129], + [-73, 94], + [15, 44], + [-26, 129], + [38, 52], + [0, 34], + [-56, 82], + [-77, 47], + [-24, 1], + [-53, 58], + [-6, 27], + [-52, 44], + [-32, 67], + [-42, 32], + [-8, 41], + [24, 24], + [49, -24], + [35, -62], + [37, -21], + [70, 19], + [78, 5], + [65, -9], + [32, -21], + [43, -92], + [47, -27], + [54, 36], + [82, -3], + [27, 34], + [44, -69], + [65, -15], + [55, 59], + [81, -5], + [-15, -40], + [16, -41], + [44, -4], + [34, -31], + [-6, -38], + [48, -44], + [82, 74], + [57, -17], + [-2, 53], + [-29, 54], + [31, 83], + [49, 10], + [47, -13], + [26, 33], + [84, 37], + [67, -11], + [54, -23], + [41, 38], + [86, 5], + [81, 52], + [91, -3], + [37, 19], + [-8, 59], + [34, 31], + [46, -4], + [34, 19], + [-8, 40], + [67, -3], + [40, -25], + [87, 19], + [34, 53], + [21, 61], + [31, 0], + [56, 31], + [79, 116], + [-47, 119], + [6, 30], + [50, -19], + [73, -7], + [60, 13], + [64, 38], + [49, -12], + [20, -55], + [60, -67], + [-31, -142], + [3, -47], + [-35, -66], + [-37, -44], + [205, -44], + [63, -39], + [-26, -47], + [3, -73], + [47, -19], + [6, -46], + [26, -55], + [-4, -81], + [-49, -28], + [2, -37], + [-101, -64], + [-11, -24], + [34, -38], + [-17, -33], + [20, -49], + [-39, -50], + [-15, -64], + [-34, -56], + [-13, -78], + [-3, -146], + [31, -66], + [12, -100], + [67, -62], + [29, -1], + [-3, -62], + [11, -86], + [-18, -70], + [40, -72], + [34, -32], + [38, -1], + [93, -123], + [23, 0], + [46, -70], + [54, -29], + [132, -29], + [10, -41] + ], + [ + [14545, 5277], + [-160, -115], + [-79, -74], + [-16, 18], + [87, 77], + [28, 13], + [32, 30], + [59, 40], + [18, -8], + [31, 19] + ], + [ + [15259, 5752], + [-47, -74], + [-48, -19], + [-4, 54], + [55, 3], + [44, 36] + ], + [ + [15697, 5831], + [53, -32], + [-40, -77], + [-56, -18], + [-30, 30], + [53, 45], + [20, 52] + ], + [ + [16028, 6035], + [-65, -10], + [-35, 31], + [-38, -39], + [-46, -11], + [-7, -40], + [-84, -28], + [-99, -50], + [-13, -37], + [19, -55], + [-13, -27], + [-63, -1], + [-75, 32], + [-80, 11], + [-52, -6], + [-95, -31], + [-66, -55], + [-69, 7], + [-53, -21], + [-2, -46], + [-64, -26], + [-158, -88], + [-90, -69], + [-1, -46], + [-58, -31], + [-76, -64], + [-123, -70], + [-20, -1], + [-5, 4], + [-7, -3], + [-112, -79], + [-34, -31], + [-36, -4], + [-67, -75], + [-16, -38], + [61, -11], + [-13, -33], + [-73, -59] + ], + [ + [14003, 3703], + [23, -58], + [-68, -133], + [-15, 41], + [9, 50], + [-15, 44], + [66, 56] + ], + [ + [11034, 3825], + [84, 143], + [7, 33], + [-45, 71], + [3, 60], + [30, 117], + [1, 61], + [32, 0], + [15, 46] + ], + [ + [13903, 4518], + [-6, -50], + [14, -63], + [44, -37], + [-46, -94], + [-5, -36], + [-44, -84], + [2, -88], + [23, -52], + [-1, -82], + [34, -17], + [-22, -48], + [15, -27], + [-17, -84], + [50, -29], + [-20, -45], + [-46, -42], + [21, -47], + [-29, -45], + [17, -25], + [3, -74], + [23, -49], + [-28, -52], + [13, -42], + [-28, -98], + [-58, -135], + [6, -27], + [-43, -56], + [-81, -40], + [-153, -106], + [-105, -98], + [-144, -175] + ], + [ + [20600, 13520], + [-75, -23], + [-154, -96], + [-77, -81], + [-179, -273], + [-23, -65], + [-75, -55], + [-50, -16] + ] + ], + "transform": { + "scale": [0.0018229790963059055, 0.001719403043083933], + "translate": [-73.9446029663086, -33.74708175659179] + }, + "objects": { + "brazil": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-AC", + "NAME_0": "Brazil", + "ID_1": 1, + "NAME_1": "Acre", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[3, 4, 5, 6]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-AL", + "NAME_0": "Brazil", + "ID_1": 2, + "NAME_1": "Alagoas", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[7]], [[8]], [[9, 10]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 33, + "ISO": "BR-AP", + "NAME_0": "Brazil", + "ID_1": 3, + "NAME_1": "Amapá", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[11, 12, 13, 14, -3, 15], [16]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-AM", + "NAME_0": "Brazil", + "ID_1": 4, + "NAME_1": "Amazonas", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Amazone" + } + }, + { + "arcs": [[[17]], [[18, 19, 20, 21, 22, 23, 24, 25, -6, 26, 27]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 33, + "ISO": "BR-BA", + "NAME_0": "Brazil", + "ID_1": 5, + "NAME_1": "Bahia", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Ba¡a" + } + }, + { + "arcs": [[28, 29, 30, 31, 32]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-CE", + "NAME_0": "Brazil", + "ID_1": 6, + "NAME_1": "Ceará", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[33, 34]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-DF", + "NAME_0": "Brazil", + "ID_1": 7, + "NAME_1": "Distrito Federal", + "TYPE_1": "Distrito Federal", + "ENGTYPE_1": "Federal District", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-19, 35, 36, 37]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-ES", + "NAME_0": "Brazil", + "ID_1": 8, + "NAME_1": "Espírito Santo", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Espiritu Santo" + } + }, + { + "arcs": [[-21, 38, -35, 39, 40, 41, 42]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-GO", + "NAME_0": "Brazil", + "ID_1": 9, + "NAME_1": "Goiás", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Goiáz|Goyáz" + } + }, + { + "arcs": [[[43]], [[44]], [[45]], [[46]], [[47]], [[48, 49, 50, 51]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 33, + "ISO": "BR-MA", + "NAME_0": "Brazil", + "ID_1": 10, + "NAME_1": "Maranhão", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "São Luíz de Maranhão" + } + }, + { + "arcs": [[-41, 52, 53, 54, 55, 56]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-MS", + "NAME_0": "Brazil", + "ID_1": 11, + "NAME_1": "Mato Grosso do Sul", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[57, -42, -57, 58, 59, -14, 60]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-MT", + "NAME_0": "Brazil", + "ID_1": 12, + "NAME_1": "Mato Grosso", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Matto Grosso" + } + }, + { + "arcs": [[-38, 61, 62, -53, -40, -34, -39, -20]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-MG", + "NAME_0": "Brazil", + "ID_1": 13, + "NAME_1": "Minas Gerais", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Minas|Minas Geraes" + } + }, + { + "arcs": [[-10, 63, -51, 64, -61, -13, 65, 66]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-PA", + "NAME_0": "Brazil", + "ID_1": 14, + "NAME_1": "Pará", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[-24, 67]], [[68, 69, -30, 70]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 33, + "ISO": "BR-PB", + "NAME_0": "Brazil", + "ID_1": 15, + "NAME_1": "Paraíba", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Parahyba" + } + }, + { + "arcs": [[[71]], [[72, 73, -55, 74, 75]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 33, + "ISO": "BR-PR", + "NAME_0": "Brazil", + "ID_1": 16, + "NAME_1": "Paraná", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[76, -7, -26, 77, -31, -70]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-PE", + "NAME_0": "Brazil", + "ID_1": 17, + "NAME_1": "Pernambuco", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Pernambouc" + } + }, + { + "arcs": [[78, -32, -78, -25, -68, -23, 79, -49]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-PI", + "NAME_0": "Brazil", + "ID_1": 18, + "NAME_1": "Piauí", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Piauhy" + } + }, + { + "arcs": [[[80]], [[81, 82, -62, -37]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 33, + "ISO": "BR-RJ", + "NAME_0": "Brazil", + "ID_1": 19, + "NAME_1": "Rio de Janeiro", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-71, -29, 83]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-RN", + "NAME_0": "Brazil", + "ID_1": 20, + "NAME_1": "Rio Grande do Norte", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[84, 85]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-RS", + "NAME_0": "Brazil", + "ID_1": 21, + "NAME_1": "Rio Grande do Sul", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-60, 86, -1, -15]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-RO", + "NAME_0": "Brazil", + "ID_1": 22, + "NAME_1": "Rondônia", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Guaporé" + } + }, + { + "arcs": [[-66, -12, 87]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-RR", + "NAME_0": "Brazil", + "ID_1": 23, + "NAME_1": "Roraima", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Rio Branco" + } + }, + { + "arcs": [[[88]], [[89]], [[90]], [[-83, 91, -75, -54, -63]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 33, + "ISO": "BR-SP", + "NAME_0": "Brazil", + "ID_1": 24, + "NAME_1": "São Paulo", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[92]], [[-86, 93, -73, 94]], [[-17]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 33, + "ISO": "BR-SC", + "NAME_0": "Brazil", + "ID_1": 25, + "NAME_1": "Santa Catarina", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Santa Catharina" + } + }, + { + "arcs": [[95, -27, -5]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-SE", + "NAME_0": "Brazil", + "ID_1": 26, + "NAME_1": "Sergipe", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-80, -22, -43, -58, -65, -50]], + "type": "Polygon", + "properties": { + "ID_0": 33, + "ISO": "BR-TO", + "NAME_0": "Brazil", + "ID_1": 27, + "NAME_1": "Tocantins", + "TYPE_1": "Estado", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/bulgaria-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/bulgaria-topo.json new file mode 100644 index 000000000000..212a5d47acdb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/bulgaria-topo.json @@ -0,0 +1,16396 @@ +{ + "type": "Topology", + "arcs": [ + [ + [16853, 8115], + [-13, -19], + [23, -56], + [33, -18], + [68, 1], + [12, -59], + [3, -161], + [-61, -31], + [-48, -78], + [1, -37], + [-105, 14], + [35, 73], + [-52, -15], + [-12, -116], + [-65, -37], + [-77, -16], + [12, -49], + [-35, -42] + ], + [ + [16572, 7469], + [-67, -51], + [-121, 40], + [-76, -34], + [-27, -50], + [-67, -40], + [-65, -15], + [-86, 62], + [-53, 71], + [-30, -50], + [15, -24], + [-38, -70], + [-83, -49], + [20, -55], + [4, -65], + [49, -54], + [-22, -60], + [-104, -16], + [-34, -91], + [-44, -4], + [1, -71], + [-79, 0], + [-52, -86], + [-89, -4], + [-8, 50], + [-59, 12], + [6, -45], + [-60, 3], + [-1, 49], + [-79, 43], + [-76, 5], + [-28, -72] + ], + [ + [15219, 6798], + [-6, -13], + [-91, 6], + [-28, -60], + [-34, -7], + [-20, 44], + [-34, 228], + [43, -5], + [9, 60], + [48, 13], + [-38, 119], + [-32, 196], + [-76, -32], + [-76, 5], + [-82, 108], + [9, 57], + [-48, 37], + [-66, 8], + [-34, 22] + ], + [ + [14663, 7584], + [0, 44], + [-62, 78], + [24, 46], + [-10, 57], + [4, 80], + [81, 46], + [-17, 72], + [46, 54], + [-20, 110], + [103, 22], + [44, -61], + [23, -5], + [109, 134], + [-78, 16], + [5, 57], + [-34, 73], + [-81, 6], + [-20, 24], + [-9, 98], + [-51, 56], + [-5, 69], + [10, 76], + [-33, 16], + [-26, 45], + [-92, -33], + [-46, 3], + [-34, 36] + ], + [ + [14494, 8803], + [68, 49], + [-6, 57], + [36, 67], + [-61, 102], + [48, 24], + [41, 47], + [70, 8], + [100, 94], + [66, -6], + [68, 26], + [94, 166], + [-38, 92], + [12, 26] + ], + [ + [14992, 9555], + [43, -3] + ], + [ + [15035, 9552], + [50, -38], + [10, -79], + [62, -21], + [29, -29], + [-29, -48], + [2, -42], + [-38, -13], + [-10, -50], + [39, -122], + [109, -115], + [-19, -4], + [-14, -96], + [115, -13], + [84, 23], + [1, -26], + [49, -38], + [88, -12], + [45, -40], + [45, -79], + [-4, -25], + [-80, -118], + [1, -20], + [132, -12], + [72, 3], + [43, 85], + [6, 54], + [47, 0], + [44, -48], + [154, 72], + [25, -25], + [106, -8], + [104, 6], + [-5, -42], + [28, -21], + [28, -78], + [12, -103], + [-62, -38], + [-2, -63], + [44, -85], + [-8, -34], + [48, -34], + [122, -29], + [51, -27], + [7, -47], + [51, -35], + [49, 19], + [59, -6], + [41, 37], + [46, -12], + [41, 39] + ], + [ + [14663, 7584], + [-22, -18], + [-99, -1], + [-9, 48], + [-45, -16], + [-45, 15], + [-62, -25], + [-28, 13], + [-5, 90], + [17, 44], + [-45, 17], + [-73, -8], + [-22, -27], + [-87, -40], + [-48, 41], + [-101, -8], + [-36, -39], + [-31, 7], + [-41, -110] + ], + [ + [13881, 7567], + [-46, 30], + [-30, 60], + [-41, 153], + [42, 58], + [7, 43], + [-28, 22], + [-14, 80], + [-30, 41], + [-50, 162], + [-3, 84], + [-63, 50], + [-4, 45], + [-44, 111], + [58, -13], + [54, 39], + [5, 49] + ], + [ + [13694, 8581], + [75, 36], + [45, -18], + [41, 11], + [17, 47], + [64, -10], + [111, 21], + [35, -34], + [82, 13], + [26, -38], + [77, 72], + [89, 12], + [55, 89], + [83, 21] + ], + [ + [17142, 8066], + [-180, 72], + [-109, -23] + ], + [ + [15035, 9552], + [26, 81], + [55, 36], + [91, -36], + [43, 0], + [56, 79], + [12, 89], + [-15, 74], + [50, 3], + [43, 30] + ], + [ + [15396, 9908], + [43, 12], + [-11, 68], + [97, -22], + [46, 18], + [53, 49], + [63, -9], + [70, -37], + [-35, -51], + [7, -22], + [69, 19], + [36, 49], + [61, -45], + [34, -43], + [149, -95], + [30, 23], + [140, 26], + [17, 38], + [49, -11], + [52, 43], + [29, -41], + [45, 8], + [17, -32], + [152, -79], + [-3, -32] + ], + [ + [16606, 9742], + [-66, -82], + [-16, -88], + [-10, -150], + [40, -4], + [100, -41] + ], + [ + [16654, 9377], + [51, -73], + [-75, -162], + [19, -96], + [32, -44], + [9, -72], + [-31, -32], + [47, -33], + [-59, -74], + [53, -43], + [-29, -31], + [68, -65], + [-19, -85], + [96, -20], + [20, -30], + [51, -21], + [15, -31], + [54, 15], + [6, -81], + [55, -15], + [18, -90], + [46, -40], + [65, -23], + [-2, -59], + [-32, -50], + [30, -56] + ], + [ + [15219, 6798], + [28, -14], + [28, -219], + [-16, -43], + [-42, -31], + [-50, 33], + [-79, 4], + [-26, -29], + [8, -149], + [-5, -83], + [31, -10], + [99, 37], + [-1, 69], + [51, 8], + [111, -77], + [-36, -28], + [-78, -93], + [-24, -95], + [2, -57], + [-39, 3], + [-8, -57], + [-36, -23], + [0, -100], + [-58, 0], + [-55, -133] + ], + [ + [15024, 5711], + [-38, 17], + [-84, -23], + [-29, 31], + [-10, -102], + [-46, 25], + [-69, -24], + [-63, 55], + [-30, 50], + [-90, 7], + [-16, 13], + [-20, 83], + [-94, 14], + [-66, -36], + [-69, 11], + [-14, 50], + [12, 82], + [-21, 70], + [-151, 4], + [-54, 34], + [16, 101], + [-17, 68], + [-27, -2], + [-66, 56] + ], + [ + [13978, 6295], + [-36, 106], + [16, 12], + [-12, 133], + [-13, 47], + [-59, 4], + [-35, 140], + [33, 8], + [-13, 54], + [124, 44], + [13, 43], + [-35, 74], + [-114, 198], + [-113, 147], + [-12, 50] + ], + [ + [13722, 7355], + [61, -9], + [42, 26], + [32, -12], + [40, 22], + [39, 59], + [-15, 26], + [45, 69], + [-28, 17], + [-56, -30], + [-1, 44] + ], + [ + [16448, 13844], + [-12, -28], + [-116, -106], + [-174, -127], + [-47, 16], + [-13, -58] + ], + [ + [16086, 13541], + [-114, 93], + [8, 46], + [-19, 42], + [49, 58], + [13, 50], + [-8, 95], + [82, 39], + [21, -6], + [20, 129], + [-28, 76], + [-53, 46], + [-27, -16], + [-44, 20], + [-32, -41], + [-87, 16], + [-82, -63], + [-69, 24] + ], + [ + [15716, 14149], + [29, 66], + [-9, 72], + [-38, 77], + [39, 92], + [-13, 13], + [-77, 146], + [-62, 13] + ], + [ + [15585, 14628], + [11, 20], + [78, -6], + [125, 49], + [17, 80], + [-15, 11], + [-18, 235], + [26, 70], + [55, 11] + ], + [ + [15864, 15098], + [108, -9], + [57, 29], + [18, -16], + [72, 12], + [26, -43], + [54, 45], + [12, -61], + [69, -95], + [54, 10], + [5, -48], + [42, 3], + [93, 65], + [19, 26], + [99, -3], + [25, -65], + [73, -44], + [-11, -49], + [5, -77], + [-53, -9], + [10, -32], + [132, -34], + [3, -18], + [74, -21], + [4, -55] + ], + [ + [16854, 14609], + [-5, -42], + [-41, -19], + [-48, -77], + [-6, -99], + [-31, -43], + [5, -34], + [37, -24], + [13, -44], + [-23, -36], + [-51, 41], + [-56, 4], + [-53, -29], + [-34, 43], + [-46, -80], + [18, -11], + [-1, -76], + [-64, -6], + [-9, -42], + [43, -35], + [-34, -50], + [-58, 0], + [38, -106] + ], + [ + [15553, 12736], + [-75, 27], + [-89, 56], + [-3, 62], + [-49, 29], + [-97, -21], + [-34, -23], + [-10, -63], + [12, -75] + ], + [ + [15208, 12728], + [-88, 19], + [-44, -46] + ], + [ + [15076, 12701], + [-19, 34], + [-3, 79], + [-60, 64], + [-45, 29], + [-13, 61], + [29, 111], + [-4, 81], + [21, 173], + [-13, 15] + ], + [ + [14969, 13348], + [6, 12], + [136, 0], + [102, 56], + [-23, 70], + [64, 71], + [33, -47], + [68, -50], + [45, -1], + [51, 28], + [-11, -72], + [48, -87], + [39, -15], + [56, -50] + ], + [ + [15583, 13263], + [32, -99], + [-16, -15], + [59, -153], + [-19, -100], + [12, -17], + [-87, -82], + [-11, -61] + ], + [ + [16915, 12565], + [52, -30], + [87, -8], + [47, 17], + [30, -22], + [28, -156] + ], + [ + [17159, 12366], + [5, -55], + [102, -61], + [-59, -146] + ], + [ + [17207, 12104], + [-3, -12], + [-115, -2], + [-18, -33], + [-60, 10], + [18, -64], + [-17, -58], + [-33, -43], + [-83, -79], + [6, -59], + [-30, -52], + [5, -74], + [-69, 21], + [-98, -5], + [-18, 35], + [-148, 61], + [-65, 6], + [-29, -41], + [-39, 28], + [-160, 11], + [0, 82], + [-73, 122], + [11, 15], + [146, -17], + [-30, 52], + [-24, 95], + [-71, 65] + ], + [ + [16210, 12168], + [17, 15], + [98, -11], + [68, 10], + [23, 22], + [20, 85], + [-42, 101], + [54, 16], + [136, -42], + [15, 22], + [76, 18], + [7, 56], + [32, 40], + [118, 7], + [-9, 54], + [92, 4] + ], + [ + [15583, 13263], + [118, 82], + [11, 32], + [82, -27], + [68, 2], + [71, -18], + [85, 55], + [22, 59], + [33, 21], + [13, 72] + ], + [ + [16448, 13844], + [138, -70], + [-20, -73], + [49, -51], + [48, -5], + [-35, -89], + [54, -4], + [21, -46], + [83, -24], + [27, 38], + [64, 19], + [94, -35] + ], + [ + [16971, 13504], + [-50, -169], + [61, -43], + [63, -147], + [-15, -17] + ], + [ + [17030, 13128], + [-19, -23], + [-12, -104], + [-37, -87], + [89, -42], + [19, -54], + [-41, -61], + [-82, -46], + [-31, -111], + [-1, -35] + ], + [ + [16210, 12168], + [-44, 7] + ], + [ + [16166, 12175], + [-14, 138], + [-98, 0], + [-84, -26], + [-54, -39], + [-97, -14], + [-39, 23], + [-28, 45], + [31, 29], + [-32, 65], + [37, 39], + [29, 88], + [-27, 60], + [-105, 24], + [-96, 121], + [-36, 8] + ], + [ + [18275, 13700], + [0, -29], + [51, -57], + [42, -25], + [13, -144], + [-99, 12], + [-57, -4], + [-24, -61], + [-76, -77], + [3, -18] + ], + [ + [18128, 13297], + [-81, 46], + [-22, -5], + [-37, 96], + [-116, 28], + [-75, -2], + [-37, 38], + [-141, -5], + [-89, -24], + [18, -126], + [-57, -63], + [-56, 3], + [-69, -34], + [-92, 2], + [-23, -49], + [-87, -9], + [-23, -36], + [-33, 20], + [-78, -49] + ], + [ + [16971, 13504], + [26, -30], + [61, 11], + [70, 114], + [0, 50], + [35, 111], + [-41, 41], + [-15, 47], + [18, 65], + [30, 32], + [77, 23], + [-11, 40], + [25, 111], + [68, -4], + [49, 27], + [35, 58], + [44, 23], + [-41, 81], + [1, 37] + ], + [ + [17402, 14341], + [-10, 52], + [49, 21], + [25, 34], + [46, -52], + [28, 13], + [32, 70], + [43, 64], + [29, -99], + [62, -44], + [10, -100], + [153, -39] + ], + [ + [17869, 14261], + [27, -83], + [32, -48], + [10, -73], + [80, -9], + [106, -65], + [26, -33], + [24, -102], + [40, -66], + [62, -1], + [-1, -81] + ], + [ + [16854, 14609], + [24, 49] + ], + [ + [16878, 14658], + [73, -31], + [56, -72], + [76, -28], + [29, 13], + [69, -46], + [17, 52], + [69, -6], + [26, -33], + [1, -112], + [94, -16], + [14, -38] + ], + [ + [17509, 12535], + [-68, -14], + [-30, 30], + [-40, -7], + [-48, -60], + [39, -63], + [-115, -52], + [-88, -3] + ], + [ + [18128, 13297], + [-28, -102] + ], + [ + [18100, 13195], + [-108, -47], + [-25, -25], + [-73, -7], + [-12, 83], + [-32, 21], + [-61, -66], + [-57, -35], + [36, -37], + [-38, -38], + [25, -43], + [-70, -42], + [-94, -26], + [-47, 12], + [-61, -50], + [31, -31], + [-10, -76], + [44, -59], + [34, -116], + [-55, -40], + [-18, -38] + ], + [ + [1643, 9015], + [-26, 52], + [10, 98], + [-60, 13], + [-28, 30] + ], + [ + [1539, 9208], + [39, 64], + [8, 55], + [54, 41], + [24, 74], + [-45, 89], + [65, 59], + [-10, 29], + [5, 100], + [68, 28], + [189, 100], + [53, 93], + [135, 80] + ], + [ + [2124, 10020], + [45, -16], + [120, -72], + [-25, -56], + [8, -40], + [72, -92], + [-9, -101], + [51, -7], + [-15, -40], + [115, -20], + [166, 24], + [94, 37], + [38, -41], + [61, 42], + [72, -7], + [72, 50] + ], + [ + [2989, 9681], + [8, -36], + [41, -54], + [4, -54], + [-68, -194], + [-134, -6], + [-26, -21] + ], + [ + [2814, 9316], + [-92, 7], + [-37, -17], + [-58, -57], + [-66, 40], + [-108, 1], + [-57, 21], + [-44, -34], + [-30, -93], + [-117, 38], + [-52, -37], + [23, -36], + [-34, -35], + [-65, -18], + [-27, -39], + [-10, -51], + [-34, -7] + ], + [ + [2006, 8999], + [-53, 32], + [-96, -47], + [-47, -80], + [-59, 66], + [-86, 12], + [-22, 33] + ], + [ + [3354, 8618], + [49, 14], + [78, 57], + [35, 8], + [1, 45], + [-34, 64], + [38, 48], + [-9, 78], + [22, 53], + [-35, 82], + [22, 45], + [32, 13], + [15, 100], + [39, 13] + ], + [ + [3607, 9238], + [35, 6], + [94, -79], + [52, 8], + [75, -105], + [12, -48], + [98, -20], + [27, -25], + [128, 3], + [56, 53], + [57, 20], + [22, 42], + [35, 16], + [16, -48], + [44, -3], + [18, 63], + [40, -7], + [13, -42], + [53, -34], + [38, 26], + [67, -42], + [61, -131], + [71, -29], + [38, 11], + [44, 96], + [66, 26], + [39, 48], + [69, -21], + [43, 0], + [15, -99], + [63, 33], + [53, -28], + [44, 28] + ], + [ + [5193, 8956], + [7, -57] + ], + [ + [5200, 8899], + [-51, -17], + [-46, -75], + [-29, -98], + [7, -107], + [-33, -72], + [-27, 21], + [-36, -25], + [-35, -108], + [-8, -67], + [-51, -110], + [-24, -35], + [-122, -10], + [-59, -22], + [-18, -57], + [10, -73], + [-102, 20], + [3, -26], + [-93, -25], + [-14, -30], + [10, -112], + [42, -1], + [12, -33], + [96, -36], + [-14, -67], + [50, -5], + [63, -44], + [-15, -217], + [40, -57], + [-26, -28], + [18, -33], + [-49, -31], + [-5, -97], + [69, -27], + [76, -128], + [29, -13], + [47, 17], + [33, -32], + [39, 14] + ], + [ + [4987, 7053], + [22, -13], + [-26, -76], + [70, -36], + [30, -60], + [1, -55], + [44, -21], + [-6, -58], + [20, -61], + [-7, -70] + ], + [ + [5135, 6603], + [-63, 0], + [-51, -33], + [-75, -14], + [-94, 44], + [-39, -25], + [-70, 26], + [-44, -48], + [-26, 6], + [-46, 78], + [8, 51], + [-22, 54], + [26, 37], + [21, 123], + [-10, 33], + [-116, 97], + [2, 75], + [-68, 0], + [-51, 29], + [-58, 1], + [-68, 40], + [-89, -76], + [64, -68], + [-2, -36], + [28, -59], + [-12, -19], + [-79, -31], + [-45, -50], + [-21, 44], + [-63, 53], + [-63, 71], + [-52, 5], + [-128, 76], + [-29, 29], + [-45, 80], + [-40, -20], + [-44, 45] + ], + [ + [3671, 7221], + [38, 67], + [-47, 52], + [-10, 41], + [-105, 12], + [-38, 43], + [-75, 22], + [-22, 42], + [-58, 12], + [-44, 28], + [-64, 10], + [-112, 1], + [-37, -29], + [-18, 41], + [52, 62], + [75, 46], + [12, 57], + [-48, 99], + [40, 42], + [-18, 46], + [-85, 27], + [-13, 26], + [-77, 17], + [-57, 24], + [2, 54], + [-27, 30], + [-68, 13], + [-122, 40], + [7, 76] + ], + [ + [2752, 8222], + [59, 70], + [22, 46], + [47, 22], + [114, 14], + [107, -17], + [51, -61], + [82, 24], + [70, -11], + [60, 94], + [25, 64], + [-71, 80], + [36, 71] + ], + [ + [5135, 6603], + [44, -13] + ], + [ + [5179, 6590], + [-35, -72], + [19, -39], + [-29, -32], + [16, -69], + [82, 5], + [39, -22], + [63, -62], + [92, -173] + ], + [ + [5426, 6126], + [-34, -40], + [7, -55], + [-11, -49], + [18, -242], + [-28, -79], + [-31, -39], + [-24, -75], + [31, -88] + ], + [ + [5354, 5459], + [-28, -232], + [15, -29], + [63, -19] + ], + [ + [5404, 5179], + [33, -83], + [-96, 39], + [-48, -19], + [-75, 86], + [-39, -3], + [-74, 32], + [-20, -106], + [-49, -1], + [-108, 33], + [-64, -43], + [-12, -123], + [-50, -75], + [17, -33], + [-40, -62], + [3, -85] + ], + [ + [4782, 4736], + [-63, 6], + [-69, -19], + [-29, 20], + [-110, 23], + [-32, 33] + ], + [ + [4479, 4799], + [8, 43], + [39, 46], + [48, -8], + [28, 30], + [11, 53], + [-57, 83], + [-50, 29], + [-51, -15], + [-37, 22], + [-89, 13], + [-34, 177], + [-41, 21], + [-111, -29], + [-27, -30], + [-133, -43], + [-34, 15], + [-95, -23], + [-65, 48] + ], + [ + [3789, 5231], + [-25, 38], + [12, 53] + ], + [ + [3776, 5322], + [60, 131], + [71, 58], + [16, 103], + [81, 28], + [26, -35], + [47, 2], + [-21, 46], + [-22, 115], + [16, 62], + [-152, 74], + [-47, 78], + [-78, 47], + [-13, 37], + [35, 54], + [-8, 40], + [-75, 144], + [-48, 24], + [-43, -46], + [-62, -23] + ], + [ + [3559, 6261], + [-37, 45], + [13, 44], + [-41, 17], + [-83, -13] + ], + [ + [3411, 6354], + [20, 89], + [50, 38], + [-16, 77], + [-51, 30], + [-22, 58], + [-4, 77], + [10, 126] + ], + [ + [3398, 6849], + [1, 38], + [47, 56], + [4, 47], + [80, 30], + [19, 101], + [33, 56], + [47, 48], + [42, -4] + ], + [ + [4759, 9787], + [-2, -36], + [25, -81], + [50, -20], + [44, -49], + [-65, -42], + [-20, -30], + [29, -63], + [-1, -69], + [78, -26], + [-6, -46], + [24, -51], + [57, -20], + [58, 13], + [55, -31], + [32, -63], + [83, -74], + [-7, -143] + ], + [ + [3607, 9238], + [26, 145], + [21, 19], + [-93, 39], + [26, 134], + [-105, 8], + [-40, -43], + [-73, 16], + [14, 65], + [-35, 42], + [-87, 2], + [-49, -15], + [-64, -88], + [-11, 63], + [32, 35], + [-5, 76], + [16, 34], + [-76, 27], + [-72, -9] + ], + [ + [3032, 9788], + [-20, 69], + [-9, 143], + [62, -3], + [14, 30], + [118, -24], + [21, 43], + [45, 152], + [37, 2], + [101, 71], + [27, 101], + [-59, 62], + [-37, 17] + ], + [ + [3332, 10451], + [51, 7], + [48, -17], + [70, 6], + [-20, 51], + [22, 43], + [45, 1], + [122, -47], + [99, 71], + [28, 139], + [163, -13], + [19, -18], + [64, 10], + [22, 31], + [40, -16], + [48, 16] + ], + [ + [4153, 10715], + [12, -22], + [77, -36], + [29, 42], + [42, -28], + [83, 8], + [14, -53], + [33, -51] + ], + [ + [4443, 10575], + [-86, -62], + [-34, -53], + [-19, -97], + [43, -33], + [43, -104], + [73, 8], + [11, -61], + [32, -83], + [51, -23], + [34, -75], + [-13, -48], + [28, -43], + [102, -59], + [51, -55] + ], + [ + [6761, 8436], + [5, -71], + [29, -31], + [49, -12], + [32, -80], + [44, -76], + [-15, -37], + [-53, -33], + [-34, -42], + [57, -63], + [-13, -72] + ], + [ + [6862, 7919], + [-45, 0], + [-68, 120], + [-24, 22], + [-109, 4] + ], + [ + [6616, 8065], + [17, 25], + [-7, 119], + [-51, 13], + [-30, 133] + ], + [ + [6545, 8355], + [38, 0], + [9, 63], + [50, 42], + [79, -32], + [40, 8] + ], + [ + [5200, 8899], + [63, 13], + [86, -14], + [21, -94], + [22, -46], + [48, 4], + [32, -36], + [60, -6] + ], + [ + [5532, 8720], + [46, -139], + [-85, -41], + [-59, -5], + [-23, -48], + [-56, -22], + [-15, -32], + [-56, -41], + [-33, -81], + [-79, -9], + [-30, -49], + [20, -86], + [-31, -33], + [-33, 13], + [-35, -35], + [0, -36], + [50, -21], + [31, -104], + [40, -51], + [96, -12], + [48, 51], + [23, -10], + [31, -79], + [-3, -35], + [44, -17], + [113, -93], + [28, 62], + [53, 54], + [17, 60], + [33, -36], + [93, -28], + [94, -63], + [84, -2], + [16, 30] + ], + [ + [5954, 7782], + [94, -48], + [-29, -58], + [30, -76], + [-18, -96], + [15, -55], + [-36, -51], + [-14, -71] + ], + [ + [5996, 7327], + [-71, 11], + [-77, -17], + [-35, 18], + [0, 82], + [-49, 42], + [-14, 59], + [-86, 26], + [-75, -32], + [-93, 48], + [-39, -10], + [-25, 40], + [-121, -30], + [-13, -21], + [-163, 13], + [-28, -86], + [17, -75], + [-60, -91], + [-19, -59], + [1, -79], + [13, -39], + [-72, -74] + ], + [ + [5426, 6126], + [60, -19], + [36, 40], + [51, -17], + [70, 44], + [60, -57], + [-39, -39], + [-6, -39], + [30, -34], + [111, -29], + [-80, -122], + [-80, -54], + [7, -43], + [-19, -53], + [-41, 1], + [-52, -63], + [-32, -70], + [-50, -28], + [-98, -85] + ], + [ + [7892, 8120], + [17, -33], + [-40, -62], + [103, -76], + [43, -72], + [31, -28], + [96, -10], + [110, -106], + [15, -61], + [29, -38], + [68, -40] + ], + [ + [8364, 7594], + [2, -55], + [-43, -12], + [-6, -58], + [-46, -18], + [-3, -32], + [31, -37], + [-64, -44], + [-81, 31], + [-34, -35] + ], + [ + [8120, 7334], + [-34, 67], + [-125, 10], + [-25, -11], + [-76, -82], + [-43, 136], + [-114, 48] + ], + [ + [7703, 7502], + [-23, 100], + [-72, 65], + [-36, 55] + ], + [ + [7572, 7722], + [77, 35], + [13, 33], + [-34, 101], + [78, 30], + [10, 49], + [86, 26], + [23, 134] + ], + [ + [7825, 8130], + [67, -10] + ], + [ + [5568, 5264], + [-112, 14], + [-52, -99] + ], + [ + [5179, 6590], + [92, -15], + [22, -24], + [61, -7], + [58, -39], + [128, -50], + [27, -18], + [79, -4], + [89, -56], + [88, 2], + [29, -46], + [30, 66], + [91, -45], + [108, 52], + [132, -39], + [88, 22] + ], + [ + [6301, 6389], + [16, -57] + ], + [ + [6317, 6332], + [-35, -28], + [7, -71], + [-31, -103], + [-27, -34], + [77, -98], + [128, -76], + [8, -29], + [-49, -43], + [-81, -115] + ], + [ + [6314, 5735], + [-107, 35], + [-44, 31], + [5, 50], + [-27, 46], + [-64, 13], + [-36, -15], + [-18, -58], + [26, -52], + [-110, -240], + [-55, -42], + [-48, -81], + [-142, -25], + [-99, -130], + [-27, -3] + ], + [ + [2752, 8222], + [-75, 27], + [13, 33], + [-26, 75], + [-2, 100], + [-180, 7] + ], + [ + [2482, 8464], + [24, 57], + [-46, 46] + ], + [ + [2460, 8567], + [50, 9], + [113, 54], + [9, 50], + [52, 21], + [26, 84], + [89, 88], + [52, 18], + [33, 36] + ], + [ + [2884, 8927], + [61, -5], + [31, -100], + [113, -45], + [115, -86], + [150, -73] + ], + [ + [7982, 8430], + [2, -110], + [-63, -104], + [-1, -87], + [-28, -9] + ], + [ + [7825, 8130], + [-54, 55], + [-109, -13], + [-13, 68], + [-35, 40], + [-55, -31], + [-19, 11], + [-118, -14], + [-57, 12], + [-36, 86], + [5, 76], + [23, 34], + [9, 70] + ], + [ + [7366, 8524], + [59, 42], + [165, -10], + [144, -70], + [50, -56], + [75, 27], + [75, -34], + [48, 7] + ], + [ + [6817, 9499], + [50, 3], + [12, -30], + [102, -43], + [90, 32], + [43, -31], + [45, -159], + [-21, -71], + [-21, -184], + [11, -76], + [93, -42], + [-47, -31], + [-49, -4], + [-2, -64], + [21, -17], + [75, 46], + [44, -5], + [-32, -65], + [-158, -54], + [-25, -68], + [-81, -24], + [0, -43] + ], + [ + [6967, 8569], + [-65, -42], + [-68, -12], + [-69, -44], + [-4, -35] + ], + [ + [6545, 8355], + [-116, 53], + [-84, 60], + [-141, 55], + [-31, 35], + [-74, 33] + ], + [ + [6099, 8591], + [-46, 13], + [2, 62], + [-58, 58], + [25, 47], + [-50, 40], + [-68, -1], + [-31, 18] + ], + [ + [5873, 8828], + [10, 51], + [-11, 103], + [36, 49], + [87, -11] + ], + [ + [5995, 9020], + [32, 21], + [43, -11], + [97, 8], + [54, 69], + [45, 9], + [86, -15], + [-17, 42], + [72, -2], + [25, 54], + [64, 20], + [28, 46], + [29, 0], + [56, 39], + [173, 141], + [-18, 46], + [53, 12] + ], + [ + [6862, 7919], + [-7, -13], + [39, -101], + [25, -32], + [49, -6], + [19, -67], + [39, -76] + ], + [ + [7026, 7624], + [-5, -67], + [-50, -27], + [-20, -77], + [-60, -36], + [-89, 22] + ], + [ + [6802, 7439], + [2, 23], + [-77, 84], + [-71, 130], + [-44, 42] + ], + [ + [6612, 7718], + [18, 40], + [-44, 77], + [17, 55], + [-7, 44], + [-37, 24], + [-13, 46], + [23, 60], + [47, 1] + ], + [ + [5877, 10088], + [87, 1], + [149, -17], + [56, -23], + [-1, -59], + [41, -25], + [43, -2], + [65, 38], + [2, 100], + [33, 67] + ], + [ + [6352, 10168], + [39, -44], + [87, -16], + [59, 71], + [100, -24], + [8, -83], + [-15, -82], + [50, -50], + [16, -108], + [35, -72], + [36, -25] + ], + [ + [6767, 9735], + [-45, -17], + [-14, -93], + [54, -40], + [42, -7], + [20, -41], + [-7, -38] + ], + [ + [5995, 9020], + [-35, 131], + [-3, 71], + [-43, 93], + [3, 81], + [34, 52], + [-51, 56], + [6, 44], + [-88, 66], + [7, 79], + [30, 69], + [39, 27], + [-7, 67], + [29, 74], + [-62, 104], + [23, 54] + ], + [ + [3032, 9788], + [-28, -45], + [-15, -62] + ], + [ + [2124, 10020], + [11, 70], + [37, 42], + [37, 135], + [58, 46], + [76, 22], + [120, 107], + [47, 137], + [9, 110], + [-43, 60], + [79, 114], + [-1, 32] + ], + [ + [2554, 10895], + [33, 27] + ], + [ + [2587, 10922], + [42, -10], + [57, -62], + [22, -85], + [49, -7], + [3, -40], + [48, 3], + [71, -87], + [70, -111], + [25, -60], + [45, 19], + [74, -41], + [150, -8], + [47, 37], + [42, -19] + ], + [ + [5996, 7327], + [37, -31] + ], + [ + [6033, 7296], + [21, -56], + [75, -92], + [-19, -87], + [178, -140], + [46, -106], + [47, 48], + [11, -58], + [30, -25], + [71, 17], + [119, 50], + [80, -21], + [32, -66] + ], + [ + [6724, 6760], + [-29, -1], + [-46, -117], + [-8, -109], + [-80, -102], + [-60, -15], + [-48, 10], + [-104, -8], + [-48, -29] + ], + [ + [6967, 8569], + [40, 7], + [165, -54] + ], + [ + [7172, 8522], + [0, -58], + [-39, -162], + [-65, -141], + [-8, -161], + [33, -65], + [87, -137], + [34, -12], + [54, 22], + [-18, -64], + [22, -25] + ], + [ + [7272, 7719], + [-37, -25], + [-70, 19], + [-94, -33], + [-45, -56] + ], + [ + [6802, 7439], + [-38, -16], + [-9, -43], + [-76, -22], + [-44, -51], + [-54, -13], + [-155, 92], + [-25, 41], + [-65, 8] + ], + [ + [6336, 7435], + [-25, 69], + [21, 69], + [-77, 85], + [64, 37], + [69, 92], + [66, 9], + [21, -32], + [94, 9], + [43, -55] + ], + [ + [7572, 7722], + [-82, -8], + [-103, 26], + [-67, 8], + [-48, -29] + ], + [ + [7172, 8522], + [42, -22], + [152, 24] + ], + [ + [5532, 8720], + [146, -62], + [45, 15], + [20, 44], + [36, 17], + [11, 42], + [66, 21], + [17, 31] + ], + [ + [6099, 8591], + [-28, -86], + [31, -16], + [-28, -48], + [12, -53], + [-21, -28], + [20, -97], + [-41, -185], + [-41, -72], + [-28, 8], + [-36, -43], + [82, -67], + [-23, -69], + [-49, -26], + [5, -27] + ], + [ + [2460, 8567], + [-45, 32], + [-45, -14], + [-50, -40], + [-28, 48], + [-102, 66], + [4, 41], + [-28, 43], + [12, 42], + [-24, 62], + [-47, -17], + [-38, 22], + [-47, -88], + [-67, 33], + [-35, 67], + [86, 135] + ], + [ + [2814, 9316], + [13, -115], + [-46, -2], + [-21, -26], + [-6, -62], + [52, -112], + [49, -60], + [29, -12] + ], + [ + [4759, 9787], + [38, 58], + [14, 80], + [42, 54], + [9, 45], + [108, 71], + [62, 57], + [45, -79], + [77, -59], + [57, -11], + [30, -29], + [42, -3], + [91, 74], + [78, 78], + [51, 74], + [132, 5], + [55, -9] + ], + [ + [5690, 10193], + [38, -59], + [43, -20], + [106, -26] + ], + [ + [6336, 7435], + [-56, -11], + [-63, -45], + [-80, -4], + [-68, -76], + [-36, -3] + ], + [ + [18251, 10433], + [13, -53], + [-82, -47], + [-133, -176], + [-34, 1], + [-82, 74], + [-56, 23], + [-45, -57] + ], + [ + [17832, 10198], + [-14, -5], + [-179, 78], + [-38, 54], + [2, 46], + [-67, 74], + [-119, -7], + [-41, 34], + [-40, 79], + [-127, -9], + [-12, 42], + [-63, -3], + [-37, 49], + [15, 40] + ], + [ + [17112, 10670], + [48, 3], + [-7, 49], + [49, 41], + [-34, 24], + [71, 141], + [73, 22], + [72, 167], + [-9, 105], + [11, 41] + ], + [ + [17386, 11263], + [42, -24], + [201, 29], + [86, -15], + [22, -66], + [51, -10], + [59, -94], + [-4, -29], + [55, -45], + [37, 1], + [-10, -75], + [-48, -13], + [-9, -61], + [25, -39], + [-35, -49], + [44, -40], + [21, -87], + [0, -59], + [63, 75], + [26, -25], + [46, 28], + [56, -77], + [79, -43], + [58, -112] + ], + [ + [18747, 12552], + [-37, 18], + [-23, -40], + [-54, -26], + [-59, 8], + [-61, -10] + ], + [ + [18513, 12502], + [29, 63], + [-45, 20], + [8, 60], + [-81, 12], + [-69, -4] + ], + [ + [18355, 12653], + [17, 10], + [-15, 227], + [-33, 71], + [27, 40], + [7, 72], + [-14, 62], + [-78, 17], + [-23, 40], + [-143, 3] + ], + [ + [18275, 13700], + [55, 1], + [162, 84], + [26, 48], + [71, -32], + [110, -20], + [68, 36], + [11, -40], + [-88, -27], + [1, -122], + [76, -22], + [66, -63], + [136, 60], + [15, -42], + [41, 3], + [106, -44] + ], + [ + [19131, 13520], + [-53, -16], + [61, -76], + [62, -23] + ], + [ + [19201, 13405], + [-60, -59], + [-43, 17], + [-88, -94], + [22, -71], + [-106, -132], + [-70, -26], + [-12, -94], + [-53, -40], + [20, -54], + [73, -50], + [11, -29], + [-86, -38], + [4, -19], + [-106, -70], + [4, -54], + [36, -40] + ], + [ + [18996, 10795], + [-19, -50], + [96, -27], + [28, -40], + [-61, -13], + [-59, -81], + [-62, -103], + [-10, -88] + ], + [ + [18909, 10393], + [-67, 54], + [-57, 5], + [-38, -19], + [-60, 25], + [-6, -61], + [-171, 53], + [-80, 5], + [-23, -30], + [-108, -9], + [-48, 17] + ], + [ + [17386, 11263], + [-45, 52], + [-68, 32], + [-11, 46], + [-52, 15], + [23, 89], + [22, 12], + [44, 79], + [30, 111], + [-34, 36], + [51, 55], + [87, 22], + [21, -15] + ], + [ + [17454, 11797], + [79, 12], + [43, 85], + [61, 24], + [102, 2], + [26, -28], + [-4, -48], + [27, -66], + [55, 12], + [-5, 62], + [75, 15], + [158, -89], + [52, 9], + [70, 36], + [30, 57], + [96, -2], + [11, 58], + [-138, 267], + [259, 34] + ], + [ + [18451, 12237], + [78, -130] + ], + [ + [18529, 12107], + [-34, -66], + [-104, -140], + [0, -35], + [44, -29], + [13, -78], + [109, -27], + [17, -55], + [76, -45], + [-27, -51], + [43, -4], + [18, -100], + [55, -85], + [-15, -71], + [-86, -31], + [-60, 53], + [-26, -28], + [-134, 56], + [40, -149], + [-17, -18], + [49, -84], + [67, -50], + [55, 7], + [170, -51], + [4, 49], + [100, -58], + [-21, -65], + [57, -54], + [24, -69], + [50, -34] + ], + [ + [19471, 12678], + [-19, -25], + [-62, -22], + [-47, -127], + [2, -67], + [-91, 25], + [-56, 85], + [-50, 7], + [-50, -29], + [-17, -79], + [-44, -16], + [-29, -54], + [-105, -12], + [21, 101], + [-91, 93], + [-86, -6] + ], + [ + [19201, 13405], + [128, 11], + [-3, -33], + [103, -92], + [19, -67], + [11, -120], + [334, 98], + [7, 22], + [70, 9], + [27, -62], + [78, 37] + ], + [ + [19975, 13208], + [-18, -46] + ], + [ + [19957, 13162], + [-38, -27], + [-7, -55], + [20, -42], + [-147, -106], + [-57, -59], + [-149, -36], + [-35, -84], + [-66, -40], + [-7, -35] + ], + [ + [18355, 12653], + [-35, -42], + [-15, -62], + [-149, -21], + [9, 43], + [-43, 15], + [-68, -2], + [2, -35], + [-105, -39], + [21, -66], + [-10, -72], + [-92, 50], + [-16, 63], + [-56, -31], + [-76, -62], + [-57, 49], + [-54, -22], + [-32, 21], + [-68, -5], + [-2, 100] + ], + [ + [18639, 9565], + [-14, -35], + [-158, -75], + [-47, 6], + [-59, -46], + [-41, 0] + ], + [ + [18320, 9415], + [-45, -1], + [-33, 109], + [-62, -22], + [-96, 16], + [-71, -55], + [-57, 31], + [-16, -32], + [-45, 9], + [-23, 63], + [-119, -15] + ], + [ + [17753, 9518], + [-32, 22], + [1, 48], + [36, 106], + [-37, 87], + [70, 62], + [9, 51], + [58, 86], + [20, 61], + [-41, 81], + [-5, 76] + ], + [ + [18909, 10393], + [49, -30], + [25, -77], + [-62, -37], + [68, -29], + [36, 34], + [84, -20] + ], + [ + [19109, 10234], + [-22, -58], + [38, -35], + [-21, -49], + [19, -35], + [-110, -26], + [-59, 16], + [-2, -60], + [-124, 16], + [-112, -1], + [-164, -106], + [-18, -68], + [-8, -94], + [24, -69], + [84, -40], + [5, -60] + ], + [ + [19625, 12270], + [-81, -32], + [45, -45], + [-38, -24], + [3, -41], + [-70, -5], + [-31, -24], + [3, -55], + [-73, -4], + [-3, -61], + [-44, -36], + [-10, -31], + [50, -14], + [-4, -83], + [61, -106], + [39, -23], + [10, -46], + [-58, 7], + [0, -114], + [10, -24], + [-117, -30], + [-18, -34], + [-37, 5] + ], + [ + [19262, 11450], + [-1, 31], + [-102, -44], + [-49, 52], + [-8, 46], + [-154, 88], + [-22, -3], + [-45, 51], + [4, 151], + [15, 131], + [-101, 26], + [-31, 19], + [-78, 113], + [-2, 26], + [-72, 12], + [-36, -43], + [-51, 1] + ], + [ + [18451, 12237], + [4, 80], + [37, 73], + [21, 112] + ], + [ + [19471, 12678], + [6, -43], + [73, -11], + [53, -48], + [-4, -53], + [-46, -53], + [64, -120], + [8, -80] + ], + [ + [19262, 11450], + [-48, -70], + [2, -81], + [60, -17], + [14, -81], + [60, -10] + ], + [ + [19350, 11191], + [9, -61], + [-17, -60], + [34, -91], + [6, -71], + [42, -31], + [6, -55], + [-44, -10], + [-44, 27], + [-57, -2], + [-32, -60], + [-81, -54], + [-176, 72] + ], + [ + [16943, 10221], + [10, 19], + [92, -14], + [31, 32], + [8, 77], + [-64, -8], + [-68, 100], + [7, 125], + [34, 82], + [-55, 69], + [174, -33] + ], + [ + [17753, 9518], + [-55, -35], + [-94, 37], + [-139, 20], + [-50, -87], + [-12, -68], + [-50, -22], + [-35, -72], + [-94, -2], + [-45, -15], + [-85, 18], + [-76, -45], + [-120, 36], + [60, 144], + [-65, 9], + [-68, -42], + [-25, 45], + [-54, -24], + [-69, -1], + [-23, -37] + ], + [ + [16606, 9742], + [54, 29], + [92, 86], + [31, -7], + [58, 45], + [-47, 21], + [18, 39], + [-74, 22], + [28, 105], + [124, -9], + [47, 19], + [11, 32], + [-14, 60], + [9, 37] + ], + [ + [17454, 11797], + [21, 94], + [-60, 173], + [-49, 29], + [-49, -32], + [-47, 39], + [-63, 4] + ], + [ + [1926, 7749], + [31, -8] + ], + [ + [1957, 7741], + [33, -52], + [-31, -97], + [70, -36], + [29, -38] + ], + [ + [2058, 7518], + [10, -51], + [-83, -68], + [-54, -73], + [9, -76], + [33, -8], + [179, 88], + [-7, -93], + [8, -41], + [-60, -46], + [-13, -72], + [-60, 30], + [-67, -35], + [43, -30], + [85, -146], + [-71, -17], + [-186, -185], + [-34, 5] + ], + [ + [1790, 6700], + [-2, 96], + [-51, 119], + [11, 85], + [-52, 78], + [-29, 12], + [-6, 75], + [-49, 29], + [-21, 82], + [20, 88], + [-24, 72], + [-33, 21], + [29, 71], + [57, 6], + [-45, 76], + [3, 39], + [52, 46], + [-5, 79], + [84, -15], + [33, -112], + [52, -58], + [26, -7], + [25, 87], + [34, 17], + [27, 63] + ], + [ + [3398, 6849], + [-37, 19], + [-61, -13], + [-31, -45], + [-91, 24], + [-45, 94], + [-105, 44], + [-32, 56], + [-112, 144], + [-89, 64], + [-2, 25], + [-86, 101], + [-41, -2], + [-36, 56], + [-33, -2], + [-162, 37], + [-19, 29], + [-88, -6], + [-10, 36], + [-67, 17], + [-76, -31], + [-23, 24], + [-63, 13], + [-31, -15] + ], + [ + [1957, 7741], + [50, 20], + [24, 51], + [4, 50], + [49, 23], + [69, 76], + [47, 0], + [43, -25], + [-10, -67], + [18, -22], + [129, 64], + [50, 62], + [10, 66], + [-59, 42], + [-34, 130], + [5, 76], + [43, 74], + [24, -34], + [34, 24], + [34, -11], + [22, 42], + [-39, 36], + [12, 46] + ], + [ + [1926, 7749], + [-88, 37], + [-36, -2], + [-18, 42], + [-103, 91], + [-38, -65], + [-9, -53], + [-44, -14], + [-59, 36], + [-11, 55], + [-66, 13], + [-158, -20], + [-104, 95], + [-28, -7], + [-59, 54], + [-17, 88] + ], + [ + [1088, 8099], + [-5, 85], + [139, 106], + [62, -27], + [1, 63], + [36, 44], + [60, -3], + [20, 75], + [28, 15], + [68, -20], + [65, 26], + [57, -9], + [100, 56], + [94, 39], + [-74, 205], + [-60, 8], + [-53, 94], + [41, 71], + [-24, 88] + ], + [ + [1790, 6700], + [15, -17], + [-49, -60], + [-86, -5], + [34, -49] + ], + [ + [1704, 6569], + [-131, 23], + [-61, 70], + [-41, 23], + [-9, 79], + [11, 40], + [-56, 63], + [-63, 27] + ], + [ + [1354, 6894], + [2, 55], + [38, -1], + [1, 70], + [-20, 35], + [16, 36], + [-27, 46], + [-50, -6], + [-75, 39], + [-35, -29], + [-41, 25], + [1, 144], + [-43, 46] + ], + [ + [1121, 7354], + [26, 54], + [-12, 107], + [30, 20], + [26, 60], + [-56, 39], + [-23, 47], + [-56, 49], + [-24, 95], + [16, 65], + [-32, 25], + [37, 120], + [-12, 46], + [47, 18] + ], + [ + [1121, 7354], + [-53, -2], + [-13, 61], + [-41, 17], + [-43, 145], + [16, 47], + [-25, 67], + [-62, 108], + [-47, -31], + [-50, -5], + [-72, -29], + [-18, 34], + [-39, -47], + [-33, 5], + [-37, 59], + [-41, 11], + [-14, 55], + [-88, -12], + [-50, 28] + ], + [ + [411, 7865], + [-11, 37], + [55, 65], + [13, 49], + [-69, 73], + [49, 32], + [21, 92], + [40, 58], + [37, 5], + [20, 94], + [-12, 32], + [-42, 21], + [-45, 88], + [-64, 77], + [-10, 72], + [-63, 80], + [-6, 91], + [13, 19], + [95, 41], + [24, -8], + [95, 89], + [73, 52], + [-1, 66], + [82, 75], + [154, -107], + [-11, 71], + [45, 91], + [78, -1], + [61, 23], + [82, -100], + [64, 28], + [98, -61], + [64, 69], + [127, 24], + [32, -22], + [40, 28] + ], + [ + [3411, 6354], + [-70, -24], + [-50, -43], + [-95, 1], + [13, 28], + [-30, 59], + [-91, -16], + [-42, 9], + [-42, 83], + [20, 36], + [-66, 55], + [-11, -35], + [-49, -56], + [-17, -74], + [4, -64], + [-37, -14], + [-55, 59], + [-34, 12], + [-85, -22] + ], + [ + [2674, 6348], + [-38, 85], + [-53, 2], + [-27, 54], + [-48, 20], + [-25, -16], + [-47, -75], + [-89, 46], + [-43, -6], + [-31, -33], + [-84, -13], + [-26, -130], + [-19, -19], + [-90, 55], + [-28, -15] + ], + [ + [2026, 6303], + [-73, -18], + [-50, 13], + [-12, 36], + [-70, 16], + [-56, -2], + [17, 61], + [-51, 48], + [-3, 69], + [-24, 43] + ], + [ + [10080, 1078], + [-23, 16], + [-1, 59], + [-26, 108], + [-85, 86], + [28, 59], + [-24, 78], + [14, 23], + [-107, 141] + ], + [ + [9856, 1648], + [79, 44], + [43, -13], + [26, 92], + [44, 5], + [-1, 122], + [28, 14], + [-12, 54], + [36, 76], + [121, 33] + ], + [ + [10220, 2075], + [52, 43], + [28, -34], + [43, -15], + [1, -37], + [68, -31], + [19, -47] + ], + [ + [10431, 1954], + [-25, -97], + [12, -42], + [66, -45], + [13, -68], + [-15, -90], + [40, -49] + ], + [ + [10522, 1563], + [-34, -45], + [21, -77], + [-51, -19], + [-69, -135], + [-44, -15], + [0, -34] + ], + [ + [10345, 1238], + [-49, -77], + [-46, -19], + [-25, -35], + [-35, 6], + [-83, -42], + [-27, 7] + ], + [ + [6699, 1596], + [-9, 39], + [54, 142], + [5, 71], + [18, 48], + [48, 56], + [57, -4], + [45, 25], + [-16, 44], + [-74, -18], + [-41, 57], + [10, 102], + [47, 26], + [16, 63], + [32, 40], + [-6, 61], + [-40, 44], + [-88, 42] + ], + [ + [6757, 2434], + [75, 67], + [26, 46], + [-13, 22], + [70, 36], + [-27, 43] + ], + [ + [6888, 2648], + [65, -15], + [41, 44], + [87, 53], + [87, 78], + [6, -70], + [37, -32], + [62, -13], + [76, 2] + ], + [ + [7349, 2695], + [5, -33], + [-21, -50], + [38, -79], + [-2, -56], + [77, -33], + [78, -4], + [22, -46], + [-14, -36], + [63, -82], + [10, -91], + [-30, -100], + [-67, -71], + [-2, -97], + [-12, -34] + ], + [ + [7494, 1883], + [-84, -63], + [-44, -87], + [-65, 32], + [-80, -115], + [6, -55], + [-30, -38], + [-44, 2], + [-58, 77], + [0, 38], + [-41, 17], + [-65, -32], + [-108, 66], + [-15, 29], + [-98, -50], + [-6, -54], + [-63, -54] + ], + [ + [9307, 1006], + [37, 57], + [36, 20], + [34, 55], + [5, 43], + [68, 76], + [11, 50], + [55, 155], + [42, -19], + [-9, 76], + [58, 6], + [15, 110], + [58, 23], + [56, 5], + [13, 24], + [70, -39] + ], + [ + [10080, 1078], + [-8, -115] + ], + [ + [10072, 963], + [-72, -3], + [-52, -49], + [-16, -38], + [-53, -8], + [-78, 50], + [-38, -9], + [-76, 17], + [12, -92], + [-31, -79], + [5, -92], + [-48, -44], + [-56, 74], + [-84, 36], + [-23, 56], + [-63, 30], + [-39, 93], + [-7, 82], + [-46, 19] + ], + [ + [8702, 2908], + [-49, 30], + [-10, 195], + [-42, 67], + [21, 89], + [33, 37], + [-34, 95], + [3, 121] + ], + [ + [8624, 3542], + [34, 35], + [43, -6], + [43, 35], + [47, 8], + [46, 44], + [59, 5], + [41, 57], + [60, -5], + [73, 24] + ], + [ + [9070, 3739], + [123, -21], + [54, -24], + [22, -41], + [44, -8], + [45, 17], + [68, -32], + [31, -101] + ], + [ + [9457, 3529], + [50, -124], + [39, -37], + [-48, -69], + [-56, -104], + [-64, -37], + [33, -119], + [60, -12], + [21, -75], + [54, 11], + [95, -23], + [-38, -101], + [-39, -77] + ], + [ + [9564, 2762], + [-97, -69], + [-15, -38], + [-34, 6], + [8, -71], + [-45, -72], + [7, -26], + [-71, -28], + [-46, -87], + [11, -52], + [-105, -52], + [14, 38], + [-28, 39], + [-3, 88], + [-58, 21], + [-30, 47], + [-74, 68], + [-3, 28], + [-67, 58], + [-122, 124], + [-19, 59], + [-85, 65] + ], + [ + [7922, 1600], + [-27, -36], + [-51, 47], + [-52, 6], + [-104, -71], + [-36, 4], + [-27, 61], + [31, 74], + [-58, 73], + [-70, 45], + [19, 49], + [-53, 31] + ], + [ + [7349, 2695], + [38, 8], + [22, -42], + [117, -31], + [24, 57], + [78, 14], + [12, 41], + [-12, 68], + [49, 79], + [33, -26], + [40, 49] + ], + [ + [7750, 2912], + [68, -35], + [-36, -72], + [15, -96], + [40, -54], + [-46, -102], + [8, -47], + [47, -65], + [-36, -48], + [51, -44], + [7, -47], + [35, -10], + [61, 42], + [23, -75], + [6, -88], + [-54, -36], + [-31, -89], + [-47, 7], + [-62, -32], + [-66, 48], + [-16, -40], + [41, -91], + [98, -84], + [24, -52], + [-15, -53], + [10, -41], + [46, -18], + [1, -90] + ], + [ + [10690, 3106], + [-58, -93], + [-32, -96], + [-8, -74], + [35, -53], + [44, 18], + [34, -71], + [-33, -53] + ], + [ + [10672, 2684], + [36, -137], + [-6, -46], + [44, -110], + [11, -65], + [-22, -69], + [33, -21], + [21, -90], + [-47, -53], + [-35, -2], + [-57, -77], + [-77, -47], + [-71, 11], + [-71, -24] + ], + [ + [10220, 2075], + [-61, 61], + [-64, -60], + [-9, 46], + [-31, 29], + [-45, 187], + [77, 21], + [-26, 31], + [-86, 22], + [-69, 156], + [-13, 59] + ], + [ + [9893, 2627], + [56, 35], + [56, -32], + [29, 26], + [29, 69], + [-10, 83], + [88, 17], + [101, -57], + [20, 46], + [-30, 14], + [-17, 127], + [5, 47], + [30, 58], + [7, 114] + ], + [ + [10257, 3174], + [149, 187], + [56, -68], + [66, -41], + [9, -37], + [-26, -50], + [16, -21], + [66, -12], + [37, 31], + [60, -57] + ], + [ + [11023, 895], + [9, -59], + [-71, -101], + [-14, -48], + [-40, -10], + [-6, -63], + [35, -29], + [85, -19], + [45, -49], + [38, -100] + ], + [ + [11104, 417], + [-136, 71], + [-50, 2], + [-38, 58], + [15, 47], + [-42, 7], + [-69, -52], + [-61, 24], + [-66, 78], + [-7, 43], + [-78, 40], + [-44, -9], + [-88, 38], + [-84, 24], + [-46, -6], + [-98, 67], + [-45, -8], + [-95, 122] + ], + [ + [10345, 1238], + [60, -32], + [95, 2], + [56, -37], + [77, -17], + [48, -64], + [91, 32], + [137, -43], + [53, 2], + [14, 41] + ], + [ + [10976, 1122], + [73, 8], + [15, -91], + [-5, -49], + [-49, 3], + [-11, -30], + [24, -68] + ], + [ + [11044, 1478], + [33, -95], + [-32, -93], + [4, -50], + [-73, -118] + ], + [ + [10522, 1563], + [72, -53], + [15, -61], + [30, -34], + [77, 8], + [9, 83], + [44, 76], + [44, 38], + [130, -66], + [56, -59], + [45, -17] + ], + [ + [8702, 2908], + [-16, -128], + [-53, -132], + [-73, -88], + [-34, -11], + [-21, -39], + [0, -47], + [-46, -50], + [-31, -79], + [-41, 41], + [-67, -3], + [-10, -53], + [-27, -27], + [-90, 39], + [-19, -67], + [41, -25], + [-49, -60], + [-22, -66], + [59, -15], + [93, 15], + [10, -62], + [-15, -74], + [51, -44], + [35, -3], + [62, -58], + [-11, -73] + ], + [ + [8428, 1799], + [-59, -6], + [-76, -68], + [-7, -91], + [-51, -41], + [-32, 29], + [-106, 11], + [-34, 62], + [-88, -21], + [-53, -74] + ], + [ + [7750, 2912], + [-47, 69], + [-6, 56], + [33, 139], + [44, 65], + [-9, 57], + [86, 91], + [36, 87], + [38, -11], + [38, 38], + [71, -1], + [64, 39], + [31, 99], + [61, 54] + ], + [ + [8190, 3694], + [41, 34], + [-46, 101], + [-41, 21], + [25, 51], + [25, 11] + ], + [ + [8194, 3912], + [35, -38], + [16, -56], + [47, 13], + [30, -20], + [78, 5], + [73, -16] + ], + [ + [8473, 3800], + [38, -56], + [-6, -79], + [89, -63], + [30, -60] + ], + [ + [9564, 2762], + [7, -72], + [39, 1], + [3, -42], + [124, -53], + [-14, -51], + [58, -53], + [37, 37], + [6, 77], + [69, 21] + ], + [ + [9307, 1006], + [-70, 23], + [-40, -5], + [-52, 32], + [-30, -39], + [-71, 4], + [32, 76], + [-55, 14], + [-30, -23], + [-57, 6], + [-43, -44], + [-35, 20], + [-41, 74], + [7, 86], + [-18, 60], + [-88, 44], + [-42, 142], + [7, 75], + [-68, 140], + [29, 63], + [-75, 77], + [-37, 25], + [-60, -56], + [-42, -1] + ], + [ + [17431, 4198], + [-32, -58], + [-25, 2], + [-54, -52], + [-21, -66], + [-100, 14], + [-65, 42], + [-43, -12], + [-106, 17], + [-23, -26], + [-41, 31], + [-83, 16], + [-53, 36], + [-18, -77], + [-126, -101], + [-99, -119] + ], + [ + [16542, 3845], + [-15, 59], + [-61, 82], + [-8, 27], + [-69, 51], + [12, 84], + [-37, 10], + [-44, 67], + [14, 47], + [106, 139], + [-6, 108], + [-31, 42], + [-42, 18], + [-32, 40], + [27, 30], + [0, 49], + [-30, 106], + [56, 69], + [-28, 45], + [55, 47], + [-15, 62], + [56, 87], + [-77, 17], + [-92, -64], + [6, 115], + [-98, -19], + [22, -30], + [-31, -29], + [-119, 84], + [-60, -76], + [-116, 33], + [-55, 64], + [-34, -5] + ], + [ + [15796, 5204], + [32, 51], + [-2, 81], + [11, 100], + [51, 107], + [111, -56], + [63, 11], + [57, -24], + [27, -33], + [46, 6], + [26, 57], + [145, 10], + [74, 82], + [86, -19], + [41, -30], + [30, 41], + [39, 4], + [5, 81], + [-37, 36], + [-16, 61], + [93, 44], + [39, -19], + [131, 97], + [65, 23], + [71, 8], + [25, -32], + [77, 57], + [156, 64] + ], + [ + [17242, 6012], + [22, -119], + [24, -55], + [59, -59] + ], + [ + [17347, 5779], + [-74, -33], + [-29, -129], + [-35, -73], + [-26, 28], + [-60, -59], + [-84, -122], + [35, -129], + [-6, -42], + [-40, -50], + [0, -52], + [35, -54], + [40, -22], + [-20, -41], + [75, -8], + [22, -63], + [42, -72], + [-33, -107], + [45, -42], + [-33, -67], + [15, -42], + [63, -68], + [-29, -48], + [-15, -82], + [107, -71], + [92, 29], + [4, -44], + [-35, -63], + [28, -55] + ], + [ + [16572, 7469], + [-11, -77], + [47, -46], + [-32, -37], + [111, -125], + [13, -66], + [39, -28], + [81, 20], + [90, -93], + [4, -34], + [119, -1], + [68, -89], + [10, -54], + [-5, -121], + [-22, -43], + [72, -4], + [48, -33], + [41, 34], + [5, -75], + [17, -46], + [-18, -38], + [-102, -130], + [-15, 24], + [-93, -62], + [-23, -128], + [56, -71], + [53, 32], + [3, -84], + [33, -37], + [81, -45] + ], + [ + [15796, 5204], + [-16, -48], + [-100, -1], + [-125, 67], + [-134, 19], + [-36, 50], + [-53, 4], + [-72, 46], + [-67, -40], + [-39, 65], + [-63, 48] + ], + [ + [15091, 5414], + [-10, 36], + [-80, 35], + [26, 21], + [-23, 53], + [-8, 92], + [28, 60] + ], + [ + [16070, 6705], + [104, -125], + [33, 73], + [99, 14], + [40, -17], + [-17, 113], + [23, 46], + [60, -19], + [49, 71], + [36, -19], + [74, 130], + [-28, 103], + [-31, 50], + [-89, -8], + [25, 120], + [-20, 70], + [-56, 30], + [-50, -27], + [-31, 15], + [-5, -92], + [63, -40], + [-39, -25], + [5, -56], + [-68, 18], + [-24, -52], + [-77, 4], + [-51, 33], + [-53, -99], + [-37, -23], + [58, -137], + [6, -45], + [-62, -70], + [25, -39], + [38, 3] + ], + [ + [17142, 8066], + [18, -55], + [43, -16], + [59, -45] + ], + [ + [17262, 7950], + [-15, -61], + [65, -88], + [59, -1], + [16, -77], + [30, -12], + [27, -88], + [-36, -21], + [17, -103], + [101, -80], + [-19, -130], + [121, -125], + [31, -21], + [-26, -63], + [61, -25], + [40, -49], + [65, 9], + [-45, -88], + [57, -13], + [-28, -105], + [23, -50], + [229, 14], + [26, -30], + [-1, -51], + [88, -37] + ], + [ + [18148, 6655], + [-7, -81], + [-42, -35], + [-67, -23], + [-141, 3], + [-141, -67], + [-24, -39], + [22, -64], + [-26, -47], + [73, -3], + [79, -109], + [67, -34], + [-20, -28], + [28, -48], + [4, -44], + [-41, -71], + [48, -71] + ], + [ + [17960, 5894], + [-56, -21], + [-81, 16], + [-24, -30], + [-35, 15], + [-100, -21], + [-45, -65], + [-2, -33], + [-109, -13], + [-26, 17], + [-42, 80], + [-34, -7], + [-59, -53] + ], + [ + [18502, 4747], + [-39, -26], + [-30, 6], + [-82, -61], + [26, -58], + [-80, -138], + [-100, -5], + [-2, -72], + [13, -25], + [-73, -100], + [-34, -30], + [-33, 19], + [-86, 2], + [-24, -37], + [-31, 7], + [-46, -51], + [-121, 28], + [-58, -49], + [-34, -10], + [-2, -59], + [-59, -4], + [-17, 24], + [-51, 1], + [-80, 55], + [-28, 34] + ], + [ + [17960, 5894], + [73, -68], + [109, 7], + [-3, -43], + [-63, -49], + [-4, -36], + [-57, -107], + [32, -67], + [59, -82], + [69, 3], + [-20, -91], + [-123, -57], + [-20, -112], + [31, -133], + [33, 3], + [31, -51], + [57, -6], + [22, -153], + [50, -44], + [52, 33], + [48, -27], + [82, -13], + [84, -54] + ], + [ + [4153, 11255], + [98, -48], + [54, -82], + [86, -52], + [-43, -73], + [-29, 16], + [-31, -49], + [-138, -16], + [-43, -37], + [-46, -103], + [35, -65], + [27, 7], + [30, -38] + ], + [ + [3332, 10451], + [9, 33], + [-54, 61], + [-2, 54], + [30, 87], + [57, 220], + [49, 19], + [59, 76], + [-13, 55], + [-80, 30], + [43, 144], + [86, 73], + [53, -7], + [74, 69], + [84, -16], + [56, 18] + ], + [ + [3783, 11367], + [44, -47], + [34, 20], + [30, -49], + [83, -43], + [38, 9], + [141, -2] + ], + [ + [4432, 14481], + [-43, -92], + [26, -64], + [34, -40], + [-31, -36], + [-176, -13], + [-1, -28], + [-68, -3], + [-75, 21], + [-6, -42], + [-147, 3], + [-85, -29], + [-68, -158] + ], + [ + [3792, 14000], + [-45, 3], + [-116, -66] + ], + [ + [3631, 13937], + [-52, 17], + [-7, -35], + [-41, -8], + [-51, 14], + [-49, -24], + [-14, -48], + [-29, -25], + [-46, 11], + [-10, -34], + [-55, 16], + [-13, -51], + [-106, 67] + ], + [ + [3158, 13837], + [-30, 49], + [-56, 24], + [-219, 120], + [-109, -49], + [-43, -67] + ], + [ + [2701, 13914], + [-51, 23], + [-154, 18], + [3, 36], + [-43, 35], + [-66, 2] + ], + [ + [2390, 14028], + [26, 115], + [101, 20], + [80, -57], + [24, 44], + [95, -21], + [15, 22], + [-36, 40], + [-73, 37], + [-83, 8], + [-21, 30], + [0, 50] + ], + [ + [2518, 14316], + [147, -27], + [34, -36], + [54, -3], + [276, 49], + [249, 116], + [152, 67], + [70, 10], + [83, 42], + [332, 13], + [84, -9], + [126, 25], + [109, -8], + [122, -58], + [76, -16] + ], + [ + [1846, 11660], + [-123, 68], + [-52, 83], + [-47, 34], + [-6, 65], + [-82, 63] + ], + [ + [1536, 11973], + [32, 61], + [47, 51], + [72, 152], + [8, 33], + [60, 44], + [39, 93], + [-2, 37], + [-66, 83], + [27, 100], + [82, -48], + [6, 61], + [37, 52] + ], + [ + [1878, 12692], + [75, -40], + [37, 27] + ], + [ + [1990, 12679], + [62, -31], + [91, 44], + [29, -39], + [17, -111], + [-8, -47], + [57, -26], + [93, 2], + [70, -34], + [64, -15], + [64, 16] + ], + [ + [2529, 12438], + [52, -54], + [44, -133], + [-13, -72], + [69, -37], + [-91, -61], + [-1, -69], + [-56, -29], + [-76, -9], + [-31, -23], + [-61, -86], + [-49, -53], + [-130, -12], + [-89, -38], + [-100, 6], + [-81, -30], + [-70, -78] + ], + [ + [3631, 13937], + [30, -16], + [-66, -210], + [124, -36], + [-25, -27], + [-23, -83], + [-25, 7], + [-22, -76], + [11, -78], + [-65, 19], + [-50, -23], + [-40, -67], + [-28, -140], + [-46, -29], + [-53, -5], + [-26, -65], + [-45, -14], + [-47, -39], + [5, -38] + ], + [ + [3240, 13017], + [-67, 17], + [-22, -108], + [-136, -9], + [-12, 43], + [-45, 60], + [-175, 122], + [-20, -8] + ], + [ + [2763, 13134], + [10, 80], + [46, -18], + [41, 113], + [50, 19], + [14, 48], + [53, 69], + [2, 48], + [56, 33], + [25, 49], + [80, 9], + [37, -29], + [41, 158], + [-52, 16], + [9, 31], + [-47, 23], + [30, 54] + ], + [ + [2763, 13134], + [-12, -24], + [-108, -7], + [-254, -142], + [-87, 70] + ], + [ + [2302, 13031], + [22, 63], + [-22, 78], + [14, 93], + [56, 71], + [-51, 15], + [-7, 26], + [23, 109], + [34, 24], + [134, 62], + [-8, 33], + [65, 21], + [1, 37], + [57, 5], + [42, -22], + [69, 44], + [28, -5], + [-15, 81], + [-43, 148] + ], + [ + [4289, 13260], + [-57, -42], + [-64, -6], + [-42, -67], + [-69, -23], + [-28, -27], + [-5, -52], + [-131, -6], + [1, -38], + [-60, 1], + [-7, -43] + ], + [ + [3827, 12957], + [-111, 5], + [-68, 23], + [-59, -8], + [-18, -37], + [-98, -8], + [-30, -75], + [-80, 44], + [-33, 57], + [-59, 20], + [-31, 39] + ], + [ + [3792, 14000], + [170, -88], + [6, -88], + [-29, -112], + [99, -42], + [17, -29], + [2, -188], + [23, 0], + [23, -62], + [-2, -48], + [191, -26], + [-3, -57] + ], + [ + [4675, 13036], + [-30, -13], + [-28, 41], + [-103, 14], + [-37, -15], + [-38, 62], + [-82, 63], + [-1, 46], + [-67, 1], + [0, 25] + ], + [ + [4432, 14481], + [124, -34], + [113, -108], + [146, -82], + [193, -32] + ], + [ + [5008, 14225], + [-17, -62], + [2, -91], + [22, -177], + [3, -133], + [-47, 18], + [-78, -236] + ], + [ + [4893, 13544], + [-36, -7], + [-31, -74], + [26, -10], + [-41, -98], + [33, -15], + [-29, -70], + [-63, -27], + [-62, -85], + [27, -27], + [-42, -95] + ], + [ + [2554, 10895], + [-36, 7], + [-55, 47], + [-85, 23], + [-80, -24], + [-83, 90], + [-48, 13], + [-58, 62], + [-89, 125], + [-6, 71], + [-40, 39], + [-41, 7], + [-24, 60], + [12, 58], + [-30, 29], + [-26, 57], + [-19, 101] + ], + [ + [2529, 12438], + [-10, 29], + [50, 104], + [57, 57], + [66, -61], + [-7, -58], + [25, -70], + [75, -51], + [50, 10], + [-11, -54], + [33, -113], + [40, -26], + [-27, -99], + [1, -49], + [36, -25], + [-11, -36], + [-60, -85] + ], + [ + [2836, 11911], + [-111, -89], + [-45, -7], + [-4, -114], + [-85, -75], + [-9, -49], + [55, -31], + [-12, -94], + [21, -96], + [-23, -21], + [-63, 1], + [-31, -69], + [5, -73], + [50, -56], + [-17, -39], + [0, -101], + [20, -76] + ], + [ + [3827, 12957], + [-59, -131], + [-3, -103], + [-69, -21], + [-104, -85], + [-84, 46], + [-54, -101], + [170, -117], + [37, -3], + [145, -122], + [10, -52], + [35, -12], + [63, -74], + [57, 67], + [26, 4], + [81, -61], + [50, -5] + ], + [ + [4128, 12187], + [43, -73], + [-16, -29], + [15, -83], + [-73, -42], + [-12, -72], + [-37, 6], + [-37, -130], + [15, -48], + [-76, -51], + [-31, -43], + [-8, -59], + [-43, -9], + [-63, -82] + ], + [ + [3805, 11472], + [-45, 47], + [-35, 6], + [-30, 169], + [-71, 0], + [-64, 63], + [-44, -29], + [-32, 10], + [-58, -62], + [-98, 56], + [0, 26], + [-73, 30], + [6, 53], + [-106, 37], + [-52, -31], + [-67, 36], + [23, 76], + [-196, -93], + [-27, 45] + ], + [ + [1990, 12679], + [4, 36], + [39, 23], + [36, 50], + [5, 75], + [17, 40], + [65, 55], + [43, 15], + [8, 34], + [95, 24] + ], + [ + [3805, 11472], + [-27, -28], + [5, -77] + ], + [ + [4675, 13036], + [4, -26], + [94, -44], + [85, -88], + [38, 18], + [45, -51], + [105, -67], + [-11, -49] + ], + [ + [5035, 12729], + [-33, -38], + [-98, 27], + [-75, 10], + [-37, -34], + [-17, -58], + [-34, -39], + [25, -25], + [-62, -34], + [-17, 43], + [-67, -16], + [-78, -40], + [-81, 43], + [8, 16], + [-81, 74], + [-27, 10], + [-49, -67], + [-28, 19], + [-42, -66], + [-32, -101], + [-30, -7], + [-50, -100], + [-37, -54], + [27, -19], + [-17, -43], + [25, -43] + ], + [ + [8327, 4228], + [-12, -28] + ], + [ + [8315, 4200], + [-59, -39], + [-5, -99], + [23, -52], + [-24, -67], + [-56, -31] + ], + [ + [8190, 3694], + [-39, 31], + [-105, -34], + [-94, 53], + [-92, -22], + [-70, 10], + [-73, 40], + [-36, -12], + [-15, 39], + [37, 70], + [-19, 54], + [34, 70], + [-47, 82], + [-8, 90] + ], + [ + [7663, 4165], + [-17, 36], + [119, 97], + [21, 60], + [-8, 59], + [61, 56], + [-23, 90], + [23, 48], + [-4, 89], + [142, 151] + ], + [ + [7977, 4851], + [83, 8], + [126, 27] + ], + [ + [8186, 4886], + [31, -1], + [22, -48], + [60, -78] + ], + [ + [8299, 4759], + [-88, -46], + [2, -83], + [-19, -96], + [48, -47], + [23, -92], + [-2, -79], + [64, -88] + ], + [ + [6314, 5735], + [54, -32], + [66, -14], + [28, 10], + [55, -27], + [113, 41], + [120, -93], + [17, -53], + [19, -209], + [-50, 1], + [-50, -33], + [-48, -101], + [-100, -185] + ], + [ + [6538, 5040], + [-61, -51], + [-46, -2], + [-18, -33], + [-74, -67], + [-187, -38], + [-79, -9], + [-60, -19], + [-53, -48], + [-113, 41], + [-177, -6] + ], + [ + [5670, 4808], + [-25, 34], + [10, 92], + [72, 21], + [-7, 36], + [-77, 41], + [-30, 42], + [-87, 55], + [4, 85], + [38, 50] + ], + [ + [7252, 5743], + [-9, -50], + [35, -30], + [66, -131], + [-7, -86], + [81, -7], + [-42, -111], + [-161, -114], + [18, -81], + [-35, 2], + [5, -56], + [-54, 3], + [-38, -20], + [-3, -78], + [-35, -11], + [-10, -144] + ], + [ + [7063, 4829], + [-74, -3], + [-33, 33], + [-99, 6], + [-84, 95] + ], + [ + [6773, 4960], + [-34, 12], + [-52, -21], + [-47, 44], + [-102, 45] + ], + [ + [6317, 6332], + [45, -54], + [62, -14], + [28, -23], + [74, 11], + [74, -72], + [265, -85], + [42, 12], + [62, -68], + [68, -19], + [82, -99], + [63, 43], + [16, -25], + [-34, -36], + [30, -25], + [22, -96], + [36, -39] + ], + [ + [6432, 3215], + [18, -96], + [141, -114], + [67, -35], + [30, -38], + [13, -66], + [-13, -27], + [95, -49], + [43, 19], + [32, -92], + [45, -40], + [-15, -29] + ], + [ + [6757, 2434], + [-65, 50], + [-61, 27], + [27, 27], + [-7, 44], + [-50, 31], + [-65, 9], + [-60, 77] + ], + [ + [6476, 2699], + [-48, 48], + [-13, 41], + [-110, 65], + [-30, 48], + [-50, 45], + [-53, 18], + [-27, 60], + [-50, 40], + [-45, 63], + [-55, -1], + [-52, -26], + [-62, 57], + [-8, 38], + [-62, 31] + ], + [ + [5811, 3226], + [-188, 103], + [28, 119], + [-47, 42], + [-6, 69] + ], + [ + [5598, 3559], + [37, 92] + ], + [ + [5635, 3651], + [59, 19], + [78, -78], + [5, -38], + [46, -70], + [54, -12], + [37, -41], + [78, 4], + [50, 36], + [18, 39], + [40, 18], + [105, -158], + [55, -12], + [18, -49], + [38, -47], + [36, -5], + [38, -39], + [42, -3] + ], + [ + [7663, 4165], + [-149, -40], + [-80, 36], + [22, 29], + [-92, 51], + [-72, 22], + [-36, 35], + [0, 78] + ], + [ + [7256, 4376], + [25, 24], + [24, 135] + ], + [ + [7305, 4535], + [17, 17], + [162, 84], + [57, 77], + [21, 76], + [-6, 31], + [28, 88], + [48, -13], + [100, 102], + [51, 27], + [34, -13], + [51, -80], + [36, -81], + [73, 1] + ], + [ + [6432, 3215], + [0, 61], + [43, 114], + [40, 25], + [30, 54], + [-18, 20], + [45, 141] + ], + [ + [6572, 3630], + [120, 23], + [80, -31], + [17, 33], + [-5, 62], + [54, 66], + [40, 24], + [45, -15], + [44, -58], + [30, 49], + [-9, 74], + [93, 75], + [-61, 52], + [-45, 72], + [-7, 37], + [34, 34], + [160, -7], + [8, 17], + [-99, 52], + [24, 51], + [100, -12], + [13, 31], + [-29, 65], + [48, 19], + [29, 33] + ], + [ + [7420, 6116], + [46, -53], + [63, -24], + [-27, -59], + [83, -67], + [8, -42], + [-20, -79], + [-53, 9], + [-50, -73], + [-69, 31], + [-149, -16] + ], + [ + [6724, 6760], + [63, -34], + [9, -34], + [52, -51], + [92, 1], + [84, -73], + [27, -5], + [21, -49], + [97, -84], + [-24, -47], + [56, -100], + [4, -44], + [117, -84], + [42, -46], + [56, 6] + ], + [ + [6773, 4960], + [-34, -88], + [14, -73], + [-51, -10], + [-29, -100], + [14, -53], + [-17, -110], + [1, -75], + [64, -23], + [-10, -51], + [-86, -78], + [-9, -95], + [-46, -139], + [-78, -42], + [-31, -96], + [13, -89], + [0, -90], + [54, -57], + [30, -61] + ], + [ + [5635, 3651], + [-44, 8], + [0, 58], + [-36, 91], + [-54, 54], + [56, 181], + [-39, 80] + ], + [ + [5518, 4123], + [-13, 53], + [30, 58], + [70, 39], + [8, 44], + [51, 38], + [43, 53], + [70, 38], + [-11, 50], + [-105, 60], + [1, 104], + [30, 93], + [-22, 55] + ], + [ + [8120, 7334], + [-24, -22], + [33, -61], + [-6, -55], + [-55, -73], + [-104, -111], + [-1, -69], + [30, -35], + [15, -68], + [76, -6], + [86, -58], + [-26, -87], + [35, -12], + [32, -63], + [-14, -14] + ], + [ + [8197, 6600], + [-41, -27], + [-13, -49], + [6, -55], + [69, -37], + [-35, -55], + [10, -56], + [-10, -46] + ], + [ + [8183, 6275], + [-14, -47], + [-38, -14], + [-103, 71], + [-30, 4], + [-42, 57], + [-123, -35], + [-19, 36], + [-75, -14] + ], + [ + [7739, 6333], + [-23, 36], + [-93, 98], + [-39, 66], + [22, 47], + [126, 6], + [87, 90], + [-34, 48], + [-16, 56], + [-129, -5], + [-101, 80], + [4, 59], + [-22, 101], + [1, 58], + [48, 108], + [-22, 35], + [83, 122], + [56, 40], + [26, 101], + [-10, 23] + ], + [ + [8183, 6275], + [123, -112], + [-8, -31], + [73, -78], + [-19, -98], + [-39, -39], + [-35, 25], + [-35, -56], + [74, -65], + [16, -31], + [-8, -52], + [64, -12], + [-1, -74], + [30, -132] + ], + [ + [8418, 5520], + [-20, -208], + [30, -51], + [74, 2], + [2, -96], + [68, -13], + [0, -59] + ], + [ + [8572, 5095], + [-93, -25], + [-82, -46], + [2, 40], + [-82, 5], + [-85, -71], + [-27, -50], + [-44, -1], + [25, -61] + ], + [ + [7305, 4535], + [-109, 55], + [-42, 84], + [-4, 39], + [-67, 41], + [-20, 75] + ], + [ + [7420, 6116], + [-10, 35], + [24, 61], + [72, 30], + [48, -20], + [9, -29], + [77, 34], + [12, 61], + [28, 50], + [59, -5] + ], + [ + [17869, 14261], + [41, 56], + [57, 7], + [128, 134], + [24, -46], + [57, 13], + [-29, 43], + [-56, 8], + [-6, 117], + [9, 72], + [-114, 7], + [-45, -17], + [-28, 83], + [119, 9], + [18, 107], + [32, 35] + ], + [ + [18076, 14889], + [52, -42], + [55, 48], + [39, -50], + [170, 59], + [29, 88], + [106, 47], + [56, -29] + ], + [ + [18583, 15010], + [39, -63], + [51, 17], + [39, -64], + [-11, -37], + [25, -66], + [105, 29], + [17, 23], + [99, 1], + [72, -33] + ], + [ + [19019, 14817], + [122, -81], + [39, -58], + [-25, -56], + [-65, -110], + [113, 25], + [31, -107], + [81, 0], + [36, -12], + [38, -141] + ], + [ + [19389, 14277], + [-59, -44], + [-8, -73], + [-53, 0], + [-81, -175], + [-42, 31], + [-55, -61], + [0, -157], + [-39, -40], + [64, -85], + [22, 0], + [45, -59], + [2, -100], + [-54, 6] + ], + [ + [16878, 14658], + [18, 58], + [204, 49], + [2, 44], + [-35, 48], + [24, 66], + [50, 21], + [29, 132], + [-63, 21], + [9, 36], + [129, -42], + [56, 101], + [0, 44], + [-30, 14], + [1, 139], + [26, 97], + [46, -13], + [58, 83], + [-40, 122], + [26, 31], + [9, 62], + [-24, 65] + ], + [ + [17373, 15836], + [315, 195], + [88, 29] + ], + [ + [17776, 16060], + [-15, -60], + [-3, -110], + [-24, -20], + [108, -184], + [129, -61], + [20, -46], + [-52, -23], + [-7, -65], + [-26, -53], + [50, -80], + [-56, -75], + [96, 0], + [1, -120], + [80, -50], + [-5, -56], + [25, -10], + [-5, -68], + [-46, -46], + [30, -44] + ], + [ + [15864, 15098], + [-9, 122], + [-28, 33], + [10, 60], + [51, 6], + [43, 34], + [12, 86], + [-46, 29], + [-79, 4], + [-20, 68], + [-60, 18], + [5, 43] + ], + [ + [15743, 15601], + [85, 25], + [168, -39], + [88, -12], + [152, 55], + [175, 55], + [82, 4], + [172, -24], + [87, 34], + [193, 37], + [55, 45], + [87, 29], + [93, -19], + [193, 45] + ], + [ + [19975, 15484], + [-8, -10], + [1, -186], + [-73, -50], + [-34, -96] + ], + [ + [19861, 15142], + [-30, 41], + [-91, -60], + [-60, -15], + [-85, 7], + [-21, 82], + [-23, 20], + [30, 58], + [-18, 37], + [-37, -16], + [-50, 34], + [-5, 38], + [-44, 21], + [-60, -23], + [36, -49], + [-299, -164], + [-30, -109], + [-10, -77], + [-27, -34], + [-18, -116] + ], + [ + [18583, 15010], + [52, 74], + [-59, 57], + [39, 69], + [-46, 72], + [-39, 13], + [9, 59], + [25, 16], + [-15, 59], + [-80, 45], + [82, 139], + [-63, 81], + [-192, 10], + [-17, 224], + [15, 35], + [15, 125], + [-18, 60] + ], + [ + [18291, 16148], + [50, 24], + [115, 16], + [35, -39], + [93, -22], + [111, 27], + [104, 14], + [117, -48], + [80, -63], + [171, -23], + [52, 9], + [110, 47], + [32, -21], + [24, -71], + [-28, -59], + [56, -134], + [256, -92], + [57, -110], + [113, -147], + [136, 28] + ], + [ + [19861, 15142], + [-17, -48], + [37, -177], + [-72, -58], + [6, -102], + [-28, -81], + [35, -107] + ], + [ + [19822, 14569], + [1, -53], + [-86, -138], + [-81, -23], + [-33, 15], + [-78, -25], + [-28, -52], + [-79, 7], + [-49, -23] + ], + [ + [21004, 15316], + [-145, -44], + [-67, -59], + [48, -106], + [-66, -34], + [-6, -65], + [-49, 3], + [-29, -41], + [21, -37], + [40, 0], + [-10, -69], + [-108, -50], + [-33, -46] + ], + [ + [20600, 14768], + [-66, 120], + [-37, 31], + [-92, 11], + [-7, -72], + [-46, -33], + [6, -56], + [27, -30], + [-61, -59], + [-8, -89], + [-66, -89], + [-73, -8], + [-16, 46], + [-34, -6], + [-77, 136], + [-34, -64], + [-100, -66], + [-39, 30], + [-55, -1] + ], + [ + [19975, 15484], + [137, 28], + [564, -57], + [123, 199], + [119, -102], + [86, -236] + ], + [ + [17776, 16060], + [124, 69], + [86, -5], + [159, 18], + [70, -12], + [76, 18] + ], + [ + [12128, 9287], + [-28, -55], + [81, -59], + [-37, -16], + [-32, -82], + [-44, -21], + [3, -85], + [-16, -52], + [-62, 10], + [-17, -33], + [33, -34], + [-22, -54], + [4, -89], + [13, -21], + [98, -46], + [6, -158] + ], + [ + [12108, 8492], + [1, -66], + [-45, -83], + [-22, -4], + [-57, 54], + [-52, -26], + [-71, 16], + [-43, -22], + [-69, 31], + [-8, 34], + [-67, 7], + [-27, 37], + [-104, -15], + [-63, 52], + [-39, -4], + [-25, -65], + [-36, -49], + [-88, 56], + [-24, 87], + [-40, 70], + [-126, 45] + ], + [ + [11103, 8647], + [-4, 42], + [-41, 76], + [24, 97], + [-15, 77], + [-36, 42], + [9, 70], + [-89, 41], + [-31, -4], + [-86, 45], + [27, 77], + [1, 87], + [-31, 38], + [-6, 52], + [48, 5], + [30, 70], + [31, -26], + [50, 52], + [-5, 40], + [-56, 168], + [33, 7], + [5, 42], + [-58, 7], + [4, 39], + [87, -9], + [75, 28], + [56, -67], + [77, -20], + [51, -50], + [136, -8], + [89, 74], + [62, -11] + ], + [ + [11540, 9728], + [10, -59], + [45, -54], + [44, -16], + [15, 37], + [154, 1], + [46, -35], + [170, 58], + [45, -74], + [22, -57], + [-26, -21], + [1, -57], + [-27, -17], + [37, -121], + [52, -26] + ], + [ + [11766, 10115], + [5, -36], + [-56, -141], + [-50, -17], + [-18, -79], + [-36, -18], + [-51, 8], + [-20, -104] + ], + [ + [11103, 8647], + [-27, -41], + [-147, -121], + [-130, -7], + [-93, -89], + [-34, 21], + [-78, 12], + [-73, 73], + [-24, -57], + [-41, -16] + ], + [ + [10456, 8422], + [3, 43] + ], + [ + [10459, 8465], + [-6, 50] + ], + [ + [10453, 8515], + [26, 66], + [-40, 77], + [-10, 100], + [-51, 44], + [-53, 96], + [-1, 102], + [-69, 23], + [-4, 33], + [20, 82], + [-95, 28], + [-135, -45], + [-28, 65], + [-65, 59], + [-20, 89] + ], + [ + [9928, 9334], + [28, 110], + [-65, 76], + [10, 19], + [-13, 128], + [30, 239] + ], + [ + [9918, 9906], + [45, -7], + [41, 43], + [204, 53], + [0, 18], + [-74, 22], + [36, 74], + [-60, 36], + [-33, 50], + [29, 52], + [-14, 26], + [-15, 131], + [38, 52], + [130, 28], + [37, 90], + [10, 108], + [-37, 49], + [-30, 117], + [16, 52], + [51, -14] + ], + [ + [10292, 10886], + [54, 14], + [71, -18], + [34, -53], + [45, -14], + [204, -4] + ], + [ + [10700, 10811], + [-10, -21], + [18, -78], + [63, -79], + [139, -22], + [-11, -59], + [-34, -62], + [-46, -36], + [31, -46], + [0, -61], + [36, -32], + [30, 39], + [76, 22], + [2, 29], + [58, -3], + [43, -22], + [83, 28], + [98, -51], + [164, 30], + [61, 47] + ], + [ + [11501, 10434], + [83, 1] + ], + [ + [11584, 10435], + [2, -44], + [40, -31], + [-16, -138], + [-17, -8], + [4, -76], + [86, 0], + [83, -23] + ], + [ + [12818, 8635], + [-34, -25], + [-12, -55], + [20, -18], + [82, -15], + [-15, -37], + [-63, -50], + [39, -16] + ], + [ + [12835, 8419], + [-55, -3], + [-46, 23], + [-106, 95], + [-14, -42], + [-38, 5], + [-36, -50], + [-64, 53], + [-96, 19], + [-112, -62] + ], + [ + [12268, 8457], + [-24, 45], + [-136, -10] + ], + [ + [12128, 9287], + [71, -28], + [32, 11], + [-1, 116], + [62, -20], + [33, -33], + [124, -29], + [41, 66], + [71, 2], + [36, 44] + ], + [ + [12597, 9416], + [22, -3], + [-7, -87], + [76, 12], + [53, -22], + [57, 35], + [30, -74], + [-45, -19], + [-12, -39], + [-41, -45], + [59, -22], + [-2, -52], + [40, -98], + [-27, -47], + [12, -39], + [-59, -46], + [-25, -46], + [69, -105], + [0, -51], + [21, -33] + ], + [ + [11766, 10115], + [87, -7], + [62, 17], + [20, -52], + [63, -19], + [115, 15], + [55, 48], + [83, 11], + [33, -79], + [33, 4], + [67, -23], + [153, 20], + [42, -89], + [160, -33], + [1, -28], + [-51, -61], + [-16, -64], + [-39, -20], + [-15, -67], + [-46, -25], + [14, -81], + [-7, -47], + [19, -49], + [-23, -37], + [21, -33] + ], + [ + [13659, 2745], + [31, -4], + [43, 40], + [83, -10], + [86, 8], + [44, -23], + [56, 39], + [67, -5], + [30, -50], + [25, 9] + ], + [ + [14124, 2749], + [44, -46], + [-15, -49], + [71, -159], + [6, -89], + [-69, -74], + [1, -75], + [47, -50], + [24, 1], + [44, -71] + ], + [ + [14277, 2137], + [-28, 4], + [-32, -90], + [-33, -144], + [-30, -24], + [-94, 10], + [-57, -55], + [-38, -9], + [-50, 24], + [-31, 54], + [-26, 75], + [-85, 77], + [-69, 43] + ], + [ + [13704, 2102], + [-24, 63], + [-19, 145], + [-104, 15], + [-39, 37], + [-58, -38], + [-16, 23] + ], + [ + [13444, 2347], + [-23, 16], + [-38, 78], + [-73, 14], + [-1, 47], + [-51, 96], + [-41, 0], + [29, 126], + [55, 12], + [175, -12], + [83, 14], + [21, -9], + [79, 16] + ], + [ + [12013, 4181], + [-76, 54], + [-38, 4], + [-65, -24], + [-46, -34], + [-28, 45], + [-113, -86] + ], + [ + [11647, 4140], + [-33, 82], + [12, 96], + [-66, 184], + [51, 95], + [28, -8], + [22, 67], + [75, 34], + [28, 87], + [4, 115] + ], + [ + [11768, 4892], + [124, -53], + [63, 7], + [41, -46], + [86, -46], + [1, 54], + [75, 10], + [15, 57], + [26, 7], + [32, 62], + [3, 89], + [-34, 51], + [1, 68], + [49, 17], + [50, -12], + [55, 58], + [84, 23], + [21, -59], + [103, -49], + [126, 66], + [34, 143] + ], + [ + [12723, 5339], + [73, 35] + ], + [ + [12796, 5374], + [81, -109], + [-35, -49], + [-15, -212], + [34, -40], + [45, 1], + [37, 48], + [118, 34], + [28, -27], + [63, -7], + [24, -42], + [-4, -41], + [56, -17], + [18, -50], + [-3, -67], + [69, -163], + [89, -18], + [-21, -42], + [23, -26] + ], + [ + [13403, 4547], + [29, 3], + [-21, -189], + [-32, -37] + ], + [ + [13379, 4324], + [-105, 38], + [-37, 104], + [-61, -64], + [-39, -85], + [-33, -20], + [-11, -41], + [-119, -60], + [-43, 35], + [-170, -81], + [-95, 15], + [-12, -42], + [-49, 12], + [-15, 26], + [-106, 17], + [-57, 69], + [-38, -19], + [-94, 42], + [-62, -11], + [-22, -45], + [-61, -22], + [-59, 2], + [-18, -17], + [-60, 4] + ], + [ + [14277, 2137], + [54, -45], + [33, 9], + [63, 180], + [56, 25], + [8, -30], + [64, -13], + [28, -65], + [72, 63] + ], + [ + [14655, 2261], + [32, 7], + [6, -62], + [24, -28], + [87, -15], + [26, 35], + [45, 12], + [2, -104], + [36, -38], + [10, -60], + [-10, -226], + [18, -11], + [96, 7], + [8, -13], + [25, -180], + [-51, -94], + [-4, -61], + [-52, -25], + [-7, -77], + [73, -54], + [102, -148], + [-44, 5], + [-65, -35], + [-52, -68], + [20, -74], + [-29, -51], + [6, -36], + [-31, -25], + [-14, -56], + [-43, -8], + [-15, -112], + [-127, 10], + [-76, -64], + [-51, 27], + [-57, -20], + [-65, 22], + [-25, -24], + [-80, -9], + [-27, -35], + [-15, -66], + [-33, 0], + [-56, -44], + [-111, 10] + ], + [ + [14131, 473], + [-25, 110], + [7, 56], + [-43, 55], + [33, 68], + [-126, -34], + [-24, 32], + [67, 97], + [-60, -18], + [-42, 42], + [-99, -6], + [-58, 21], + [-71, -2], + [-25, 73], + [-33, 17], + [-10, 131], + [87, 97], + [38, 9], + [52, 76], + [-42, 38], + [-25, 50], + [-34, -39], + [-55, 43], + [-12, 63], + [-37, 52], + [-69, 20], + [-20, 55], + [-60, 8], + [-46, 29], + [-29, 62], + [15, 42], + [101, -27], + [-15, 70], + [39, 118], + [-9, 74], + [32, -12], + [137, 97], + [34, 62] + ], + [ + [13412, 4011], + [57, 3], + [19, -61], + [65, -29], + [78, -10], + [-8, -62], + [-43, -4], + [15, -116], + [18, -53], + [-67, -8], + [12, -39], + [83, -36], + [46, 0], + [39, -21], + [36, -64], + [-58, -37], + [-17, -81], + [33, -50], + [-26, -25], + [11, -37], + [-68, -23], + [-30, 16], + [-50, -26], + [-45, 48], + [-104, 46], + [-42, 8], + [-48, -37], + [-11, -56], + [-56, -87] + ], + [ + [13251, 3170], + [-69, 1], + [-26, -16], + [-109, -1], + [-26, 91], + [-35, 78], + [-9, 62], + [-82, -45], + [-55, -5], + [12, -98], + [-59, -85], + [-97, 15], + [-14, -46], + [21, -21], + [-44, -78], + [-16, 22], + [-60, -73], + [9, -67] + ], + [ + [12592, 2904], + [-45, 9], + [-27, -33], + [-78, 28], + [-7, 55], + [-53, 14], + [-77, -44], + [-73, 66], + [-30, 61], + [-68, 47], + [-25, -17], + [-54, 16], + [-56, -25] + ], + [ + [11999, 3081], + [-32, 31], + [-48, 101], + [-8, 100], + [-43, 61], + [-27, 1] + ], + [ + [11841, 3375], + [-31, 55], + [10, 32], + [-58, 78], + [103, -46], + [14, 18], + [78, 14], + [71, 68], + [-19, 54], + [-41, 61], + [26, 30], + [4, 49], + [89, 71], + [-26, 130], + [-106, 137], + [47, 15], + [11, 40] + ], + [ + [13379, 4324], + [3, -73], + [-27, -39], + [48, -36], + [-17, -50], + [-35, 11], + [15, -114], + [46, -12] + ], + [ + [11841, 3375], + [-40, 0], + [-38, -63], + [40, -15], + [-41, -49], + [-63, -15], + [-35, 48], + [-26, -28], + [-12, -59], + [-77, -39], + [-31, 74], + [-118, 62], + [3, 36], + [-63, -2], + [-34, 24], + [29, 105], + [-82, 67], + [-14, 54], + [18, 100] + ], + [ + [11257, 3675], + [129, 6], + [47, 51], + [22, 100], + [66, 113], + [64, 22], + [26, 50], + [-10, 31], + [47, 30], + [-30, 39], + [29, 23] + ], + [ + [13251, 3170], + [75, -52], + [-10, -39], + [45, -14], + [7, -35], + [144, -6], + [36, -33], + [17, -74], + [45, -94], + [31, -28], + [18, -50] + ], + [ + [13444, 2347], + [-62, -44], + [-43, -75], + [-6, -62], + [-28, -25], + [-92, -46], + [-73, 51], + [-93, 21], + [-63, -72], + [-42, -18], + [-31, 66], + [-63, 21], + [-46, -17], + [-44, 23], + [20, 53], + [-11, 39] + ], + [ + [12767, 2262], + [79, 82], + [43, 33], + [52, 138], + [-3, 35], + [-53, 78], + [-5, 132], + [-96, 52], + [-65, 47], + [6, 71], + [-111, -33], + [-22, 7] + ], + [ + [16542, 3845], + [39, -77], + [52, -54], + [-64, -85] + ], + [ + [16569, 3629], + [-71, -13], + [-60, -46], + [-70, -3], + [-51, 118], + [-58, 0], + [-20, -53], + [-40, 0], + [-55, 38], + [55, 91], + [-5, 35], + [-44, 80], + [35, 150], + [-125, 103], + [-28, -25], + [-98, 73], + [-22, -6], + [-58, -78], + [32, -66], + [59, -24], + [5, -65], + [-47, 5], + [-78, -42], + [-40, 4], + [-14, 42], + [-9, 128], + [-34, 89], + [-111, 66], + [-22, 33], + [-73, 47], + [-23, -24], + [-88, -14], + [-64, -46] + ], + [ + [15347, 4226], + [-56, 37], + [-46, -11], + [-40, 28], + [-47, 7], + [-36, 36], + [-51, -6], + [-97, 45], + [-43, 50], + [-12, 50] + ], + [ + [14919, 4462], + [14, 64], + [16, 172], + [-66, 91], + [-26, 124], + [17, 203] + ], + [ + [14874, 5116], + [21, 48], + [51, 8], + [46, 38], + [-9, 45], + [8, 75], + [75, 46], + [25, 38] + ], + [ + [14609, 2637], + [-60, 48], + [-84, -10], + [-37, 35], + [4, 67], + [44, 32], + [-9, 40], + [32, 126], + [79, 77], + [65, 4], + [126, 43], + [65, -20], + [82, 60], + [23, 48], + [-86, 29], + [-51, 91], + [71, 72], + [22, 65], + [110, 97], + [6, 97], + [55, 0], + [19, -28], + [75, 22], + [34, 181], + [-35, 71], + [-12, 62] + ], + [ + [15147, 3946], + [140, 142], + [61, -12], + [21, 107], + [-22, 43] + ], + [ + [16569, 3629], + [43, -53], + [4, -33], + [-58, -30], + [-5, -66], + [-46, -36], + [-55, -138], + [-452, -3], + [-215, -12], + [-103, -208], + [-8, -68], + [-28, -43], + [-22, -84], + [1, -63], + [69, -68], + [47, -76], + [-109, 24], + [-72, -33], + [-70, 7], + [-74, 22], + [-109, 59], + [-54, 71], + [-25, 16], + [-54, -52], + [-87, 25], + [-88, 70], + [-113, -72], + [-44, -11], + [-43, -36], + [-23, -76], + [-105, 18], + [-62, -43] + ], + [ + [14413, 4476], + [-98, -60], + [-74, 41], + [-28, -61], + [-63, -81], + [-33, -19], + [-113, -2], + [-62, 27], + [-55, -25], + [16, -61], + [-32, -37], + [-64, -10], + [-36, -36], + [-59, -25], + [-66, 47], + [-57, -23], + [-132, -6], + [-49, -46], + [4, -88] + ], + [ + [13403, 4547], + [66, 27], + [41, 91], + [48, 15], + [12, 40] + ], + [ + [13570, 4720], + [93, -13], + [25, 25], + [48, 92], + [-18, 42], + [28, 42], + [-6, 37], + [54, 37], + [57, 3], + [0, -97], + [42, -6], + [36, 43], + [36, 14], + [62, -81], + [76, -22], + [38, 7], + [92, -48], + [166, -197], + [14, -122] + ], + [ + [14609, 2637], + [-37, -62], + [-1, -53], + [15, -145], + [21, -60], + [48, -56] + ], + [ + [14124, 2749], + [-27, 172], + [32, 122], + [26, 7], + [63, 60], + [-42, 42], + [0, 109], + [-39, 10], + [-23, 57], + [25, 51], + [44, -25], + [125, 10], + [45, 34], + [66, 11], + [22, 22], + [0, 71], + [32, 36], + [-48, 57], + [54, 36], + [114, -74], + [-7, 46], + [19, 49], + [28, 139], + [45, 31], + [98, -27], + [57, 75], + [65, 69], + [46, 31], + [86, 13], + [75, -7], + [42, -30] + ], + [ + [14413, 4476], + [78, -91], + [69, -19], + [60, 24], + [58, 43], + [37, 47], + [62, -12], + [62, 20], + [80, -26] + ], + [ + [6576, 10969], + [-45, 31], + [-79, 14], + [-21, 50], + [-71, 10], + [-40, -16], + [-29, 34], + [41, 66], + [-28, 19], + [36, 77], + [-24, 47] + ], + [ + [6316, 11301], + [-43, 48], + [77, 89], + [9, 27], + [-26, 55], + [2, 56], + [-39, 144], + [32, 24], + [4, 74], + [113, 28] + ], + [ + [6445, 11846], + [69, 7], + [8, -29], + [93, 0], + [12, 14], + [86, -13], + [89, 1], + [20, 125], + [-8, 39], + [46, 59], + [136, 27], + [57, 36], + [73, -17], + [28, 48], + [53, -8], + [9, 66], + [149, 5], + [12, -62] + ], + [ + [7377, 12144], + [49, -140], + [-41, -103], + [73, -45], + [39, 57], + [54, -30], + [37, 14] + ], + [ + [7588, 11897], + [61, -33], + [-8, -58], + [57, -28], + [48, -60], + [-56, -47], + [-35, -50], + [-43, -108], + [35, -19], + [-14, -99], + [23, -56], + [32, -12], + [62, -82] + ], + [ + [7750, 11245], + [-84, -99], + [-97, -3], + [-66, -33], + [-36, -43], + [-85, 34], + [-12, -21], + [-134, 41], + [-15, 34], + [-125, -21], + [-47, 46], + [-45, 15], + [-81, -31], + [-95, -64], + [-26, 35], + [-62, -74], + [-68, 3], + [-1, -37], + [79, -22], + [12, -61], + [-108, 60], + [-78, -35] + ], + [ + [10309, 11473], + [-125, -4], + [0, 53], + [-56, 1], + [14, -67], + [-121, -26], + [-18, 42], + [-52, 32], + [-211, 7], + [2, 18], + [-77, 50] + ], + [ + [9665, 11579], + [36, 86], + [17, 98], + [64, 61], + [19, 47], + [-67, 34], + [-86, -26], + [-27, -26], + [-67, -27], + [-38, 38], + [-89, 37], + [-49, 43], + [48, 91], + [37, 26], + [-7, 84], + [54, 23], + [65, 9], + [51, -31], + [117, -24], + [27, 21], + [17, 66], + [118, 39], + [54, 6], + [29, 79], + [96, 9], + [73, 91], + [39, 2] + ], + [ + [10196, 12435], + [65, -29], + [-18, -63], + [-29, -37], + [-33, -189], + [6, -127], + [10, -33], + [59, -27], + [219, -4] + ], + [ + [10475, 11926], + [-1, -93], + [54, -6], + [1, -61], + [-44, -9], + [-1, -87], + [45, 4], + [0, -39], + [-33, -33], + [-143, 29], + [-36, -41], + [-8, -117] + ], + [ + [8346, 12229], + [2, 76], + [120, -35], + [54, 14], + [43, 37], + [11, 75], + [38, -25], + [36, 106], + [95, -35], + [14, 44], + [58, 28], + [111, -31], + [71, 42], + [22, 29], + [88, -4], + [-11, 44], + [38, 73], + [62, -21], + [-2, -51], + [69, 18], + [13, 58], + [-79, 17], + [-69, 47], + [11, 44] + ], + [ + [9141, 12779], + [15, -1], + [81, 70], + [43, 61], + [77, 19], + [70, -23], + [64, 15], + [18, 52], + [83, -15] + ], + [ + [9592, 12957], + [25, 34], + [69, -11], + [-17, -73], + [69, -8], + [57, -32], + [19, -33], + [-41, -38], + [-22, -68], + [10, -36], + [151, -23], + [108, -45], + [40, 7], + [24, -34], + [-7, -45] + ], + [ + [10077, 12552], + [75, -33] + ], + [ + [10152, 12519], + [55, -22] + ], + [ + [10207, 12497], + [-11, -62] + ], + [ + [9665, 11579], + [-30, -9], + [-201, -6], + [-2, -44], + [-48, 3], + [-6, -57], + [-49, -7], + [5, -32], + [-90, -58], + [-81, -18], + [-10, -43], + [17, -50], + [-20, -42], + [-52, 3], + [-5, 71], + [-59, 85], + [12, -154], + [-47, -41], + [-12, -42], + [-45, -29], + [16, -55], + [-126, -39], + [-6, -23], + [-89, -36] + ], + [ + [8737, 10956], + [-19, 25], + [-174, 16], + [-185, 109], + [-48, -24], + [-33, -56], + [-70, 19] + ], + [ + [8208, 11045], + [-59, 53], + [0, 105], + [-113, 45], + [-41, 25], + [24, 29], + [-12, 45] + ], + [ + [8007, 11347], + [71, -53], + [59, 7], + [23, 25], + [47, -10], + [82, -77], + [77, 100], + [87, 12], + [31, 87], + [29, 24], + [59, 11], + [-1, 174], + [39, 79], + [-142, 30], + [-32, 29], + [-37, 69], + [-68, 43], + [-45, 74], + [74, 109], + [-46, 14], + [-14, 36], + [56, 25], + [-10, 74] + ], + [ + [9634, 13777], + [28, -73], + [43, -191], + [32, -89], + [-52, -25], + [-73, -6], + [-13, -127], + [31, -6], + [0, -114], + [49, -20], + [-91, -79], + [4, -90] + ], + [ + [9141, 12779], + [-42, -3], + [-4, 76], + [-40, 29], + [5, 159], + [-41, 30], + [-5, 45], + [35, 46], + [-13, 21], + [-103, 41], + [-38, 34], + [-24, -29], + [-56, -12], + [-145, 35], + [-76, -58], + [-60, -74], + [-57, 50], + [19, 49], + [-54, 1], + [-63, 25], + [4, 107], + [-29, 42], + [-126, 30], + [-17, 59], + [-60, 8], + [-21, 54], + [16, 63], + [54, 75], + [38, -11], + [21, 69], + [0, 89], + [-57, 69], + [-9, 61] + ], + [ + [8193, 13959], + [26, -9], + [216, 114], + [46, 1], + [226, -43], + [208, -69], + [73, -50], + [109, -89], + [19, -30], + [121, -102], + [98, -43], + [66, 1], + [102, 47], + [102, 82], + [29, 8] + ], + [ + [8007, 11347], + [-63, 15], + [-25, -34], + [-152, -53], + [-17, -30] + ], + [ + [7588, 11897], + [26, 60], + [48, 12], + [33, 31], + [31, 66], + [70, 74], + [20, -10], + [9, 137], + [-6, 76], + [74, 9], + [-4, 36] + ], + [ + [7889, 12388], + [432, -118], + [25, -41] + ], + [ + [7125, 13177], + [27, -34], + [-16, -30], + [0, -81], + [109, -112], + [121, -30], + [23, 23], + [55, 1], + [39, 23], + [150, 19], + [106, 54], + [0, -46], + [-47, 2], + [-14, -44], + [124, -29], + [39, -38], + [33, -102], + [35, -6], + [-44, -157], + [24, -202] + ], + [ + [7377, 12144], + [67, 29], + [-54, 51], + [-49, 83], + [44, 143], + [31, 44], + [-73, 3], + [-112, 30], + [-143, 53], + [-1, 227], + [40, 30], + [0, 69], + [-110, 97], + [-54, 131] + ], + [ + [6963, 13134], + [59, 62], + [65, 1], + [38, -20] + ], + [ + [7739, 13715], + [68, -13], + [52, 13], + [106, 73], + [5, 38], + [46, 31], + [45, 58], + [132, 44] + ], + [ + [7125, 13177], + [152, 244], + [27, -2], + [183, -54], + [33, 19], + [31, 69], + [100, -41], + [46, 87], + [20, 143], + [22, 73] + ], + [ + [10077, 12552], + [28, 66], + [124, -35], + [-77, -64] + ], + [ + [11183, 12949], + [-6, -14], + [59, -90], + [26, 10], + [59, -69], + [-49, -44], + [-48, -5], + [-2, -143], + [-68, 1], + [-1, -107], + [-46, -36], + [-70, -18], + [3, -51], + [-59, -8], + [-15, -36], + [-57, 32], + [-15, -34], + [16, -77], + [-7, -42], + [65, -20], + [127, 32], + [73, 29], + [64, -58], + [3, -85], + [-45, -1], + [0, -204], + [59, 8], + [21, -25], + [65, -2] + ], + [ + [11335, 11892], + [0, -69], + [71, -9], + [-4, -70], + [-67, -24], + [-36, -97], + [-64, -56], + [-122, -53], + [-3, -33], + [-80, -63], + [-66, -114] + ], + [ + [10964, 11304], + [-13, 2] + ], + [ + [10951, 11306], + [-47, 16], + [-55, -3], + [15, 92], + [-74, 3], + [-5, 68], + [-54, 26], + [-12, 64], + [-87, 242], + [-38, 4], + [12, 105], + [-97, 12], + [-34, -9] + ], + [ + [10207, 12497], + [2, 38], + [34, 36], + [74, -35], + [67, 22], + [15, 54], + [50, 28], + [112, 34], + [120, 10] + ], + [ + [10681, 12684], + [-2, -111], + [107, 6], + [154, 104], + [12, 73], + [46, 21], + [55, 85], + [88, -4], + [42, 91] + ], + [ + [6553, 13121], + [21, 68], + [40, 22], + [63, 2], + [73, -55], + [58, 83], + [155, -107] + ], + [ + [6445, 11846], + [-5, 108], + [26, 70], + [28, -21], + [39, 46], + [42, 75], + [78, 42], + [53, 101], + [45, 65], + [-53, 29], + [10, 25], + [-63, 44], + [-110, 23], + [-20, 60], + [-46, 228], + [-57, 39], + [24, 69], + [35, -12], + [82, 284] + ], + [ + [9634, 13777], + [98, 14], + [124, -40], + [279, 55], + [0, 41], + [72, 34], + [213, -24], + [39, -63], + [113, -94] + ], + [ + [10572, 13700], + [-32, -49], + [-25, -71], + [36, -61], + [-84, 37], + [-36, -7], + [-65, -45], + [-77, 2], + [42, -45], + [-41, -76], + [76, -30], + [-16, -42], + [68, 0], + [7, -21], + [162, -9], + [27, 56], + [67, -4], + [-18, -52], + [-142, -83], + [8, -24], + [-136, -120], + [33, -69], + [79, -43], + [61, -5], + [78, 14], + [28, 42], + [43, -5], + [159, -57], + [-13, -36], + [-52, 1], + [-16, -47], + [-46, -41], + [-45, -5], + [-21, -121] + ], + [ + [11554, 13463], + [-135, -23], + [-101, 5], + [-78, -83], + [24, -118], + [-22, 5], + [-76, -80], + [-22, 25], + [-60, -28], + [107, -73], + [4, -39], + [-23, -67], + [11, -38] + ], + [ + [10572, 13700], + [56, -33], + [208, -40], + [103, 50], + [118, 26], + [74, -6], + [143, -47], + [117, -29], + [61, -47], + [102, -111] + ], + [ + [20726, 10820], + [15, 45], + [60, 2], + [72, 20], + [48, 29], + [69, 10], + [4, 34] + ], + [ + [20994, 10960], + [85, 89], + [48, -27], + [52, 1], + [34, -38], + [94, 43], + [53, -4] + ], + [ + [21360, 11024], + [11, -59], + [22, -19], + [-2, -68], + [-186, 8], + [-28, -25], + [16, -72], + [-28, -132] + ], + [ + [21165, 10657], + [-44, 56], + [-17, -15], + [-12, -77], + [-72, 11], + [-12, 28], + [-121, 30], + [-26, 27], + [-1, 51], + [-73, -9], + [29, -45], + [-51, -17], + [-53, -74], + [-37, 32], + [41, 46], + [10, 119] + ], + [ + [20444, 10145], + [30, 69], + [-55, 60], + [-5, 31], + [-70, 41], + [20, 69], + [25, -12], + [60, 70], + [76, 22], + [-32, 71] + ], + [ + [20493, 10566], + [31, 31], + [49, 84], + [45, 50], + [108, 89] + ], + [ + [21165, 10657], + [35, -21], + [59, 26], + [70, -37], + [18, -60], + [35, -42], + [85, 23], + [22, 46], + [119, 8], + [3, -27], + [52, -26], + [45, -108], + [100, -60], + [94, 34] + ], + [ + [21902, 10413], + [-44, -247], + [-89, -110], + [-2, -107] + ], + [ + [21767, 9949], + [-84, -1], + [-50, -60], + [-40, -13], + [-97, 63], + [-121, -5], + [-138, -24], + [-83, 28], + [-31, 44], + [-11, 52], + [-64, 5], + [-5, 35], + [-66, 83], + [-4, 55], + [-109, 22], + [-50, -58], + [5, -130], + [-94, 12], + [-33, -8], + [-46, -76], + [-79, 1], + [-22, 88], + [-35, 44], + [-67, 13], + [1, 26] + ], + [ + [20153, 10149], + [-15, -94], + [102, -49], + [-67, -105], + [22, -148], + [90, -6], + [-53, -87], + [16, -32], + [-38, -66], + [38, -40], + [-16, -42], + [31, -51], + [49, -27], + [1, -27], + [-83, -43], + [-52, -1], + [-93, -31], + [-135, 11], + [-93, -22] + ], + [ + [19857, 9289], + [-165, 34], + [-7, 47], + [-117, 106], + [-71, -11], + [4, 46], + [49, 65], + [-10, 42], + [-140, 30], + [-66, 38], + [-1, 21], + [-94, 15], + [-153, 14], + [-137, -46], + [-69, -48], + [-38, -54], + [-76, -26], + [-127, 3] + ], + [ + [19109, 10234], + [79, 61], + [54, -48], + [52, 14], + [156, -68], + [7, 18], + [76, 12], + [43, 54], + [6, 45], + [65, 37], + [127, 12], + [83, -18], + [20, -28], + [-27, -107], + [26, -63], + [39, -24], + [46, 28], + [44, -28], + [43, 51], + [50, 27], + [55, -60] + ], + [ + [20265, 11195], + [-8, -77], + [22, -46], + [-44, -59], + [26, -50], + [28, 4], + [28, 46], + [91, -76], + [47, -26], + [-10, -130], + [-53, -81], + [23, -45], + [78, -89] + ], + [ + [20444, 10145], + [-187, 57], + [-46, -64], + [-58, 11] + ], + [ + [19350, 11191], + [94, -5], + [49, -25], + [44, 27], + [45, -8], + [17, 42], + [87, 38], + [27, -5], + [146, 99], + [131, 19], + [46, -18], + [82, 15], + [4, -93], + [12, -33], + [82, -87], + [49, 38] + ], + [ + [20434, 11351], + [-83, 167], + [-48, 33], + [-26, 75] + ], + [ + [20277, 11626], + [42, 52], + [2, 60], + [72, 16], + [87, 164], + [13, 50], + [56, 63], + [46, -60], + [62, -39], + [118, 4], + [65, 25], + [60, 70] + ], + [ + [20900, 12031], + [14, -64], + [150, -15], + [28, -155], + [30, -83], + [-69, -7], + [5, -60], + [38, -2], + [50, -79], + [39, -89], + [13, -89], + [28, -90], + [-111, -27], + [-40, 8], + [-64, 52], + [-28, -64], + [-58, -97], + [-47, -36] + ], + [ + [20878, 11134], + [-63, 10], + [10, 89], + [-7, 64], + [-38, 52], + [-27, 5], + [-105, -69], + [6, -67], + [-39, -27], + [-43, 41], + [-72, 18], + [-42, 41], + [-24, 60] + ], + [ + [20434, 11351], + [-25, -61], + [-116, -69], + [-28, -26] + ], + [ + [19625, 12270], + [73, 20], + [13, -76], + [57, -3], + [24, -41], + [76, -34], + [1, -46], + [-22, -37], + [-3, -108], + [48, -36], + [44, -6], + [34, -58], + [30, 10], + [41, -76], + [88, 39], + [19, -70], + [-17, -11], + [53, -108], + [93, -3] + ], + [ + [21814, 9526], + [21, -97], + [-37, -50], + [-2, -39], + [22, -147], + [-18, -77], + [20, -107], + [-51, -5], + [-29, -82] + ], + [ + [21740, 8922], + [-33, 17], + [-34, -22], + [-82, -12], + [-65, -34], + [-86, 1], + [-30, -11], + [-60, 26], + [-230, 125], + [-96, 78], + [11, 41] + ], + [ + [21035, 9131], + [-57, 81], + [10, 64], + [54, 58], + [104, -56], + [162, 50], + [43, 34], + [5, 56], + [161, 69], + [130, 90], + [83, 4], + [84, -55] + ], + [ + [20994, 10960], + [-46, 73], + [-43, 35], + [-27, 66] + ], + [ + [20900, 12031], + [12, 96], + [-1, 97], + [75, 161], + [-42, -9], + [-20, 93] + ], + [ + [20924, 12469], + [68, 29], + [35, -6], + [77, -45], + [13, -38], + [65, -67], + [68, -114], + [39, 0], + [63, -56], + [89, -99], + [81, 10], + [9, -78], + [-13, -29], + [53, -43], + [46, -79], + [105, -60], + [16, 43], + [36, 14], + [88, 119], + [92, 82], + [43, -47], + [19, 21], + [132, -44] + ], + [ + [22148, 11982], + [43, -16], + [56, -76], + [20, -94], + [22, -6], + [-6, -69], + [156, -139] + ], + [ + [22439, 11582], + [-47, -79] + ], + [ + [22392, 11503], + [-78, -25], + [-48, -29], + [-25, -91], + [-29, -67], + [-42, -37], + [-75, 39], + [-53, -67], + [-80, -41], + [-107, 119], + [-26, 55], + [9, 98], + [-47, 2], + [-15, -97], + [-40, 22], + [-8, -56], + [-38, -25], + [-130, 28], + [-27, -71], + [25, -98], + [-5, -68], + [-116, 7], + [-43, -16], + [-34, -61] + ], + [ + [22392, 11503], + [-15, -139], + [-73, -179], + [-48, -102], + [-26, -32], + [-59, -16], + [-66, 5], + [-76, -36], + [-48, -6], + [-66, -40], + [-71, -103], + [16, -56], + [127, -21], + [5, -20], + [-27, -188], + [-35, -39], + [-28, -118] + ], + [ + [19957, 13162], + [40, -88], + [23, 13], + [28, -56], + [85, -39], + [40, -98], + [34, -57], + [0, -109], + [-15, -68], + [73, -72], + [129, -11], + [138, 63], + [51, 42], + [15, 108], + [92, -37], + [81, -65], + [30, -94], + [-31, -27], + [40, -51], + [114, -47] + ], + [ + [21767, 9949], + [16, -237], + [31, -186] + ], + [ + [21035, 9131], + [-68, 45], + [-94, 0], + [-62, 30] + ], + [ + [20811, 9206], + [-84, 50], + [-108, -12], + [7, -58], + [-59, -13], + [-26, 34], + [-36, 2], + [-97, -26], + [4, -55], + [-97, 15], + [-29, -15] + ], + [ + [20286, 9128], + [-4, 63], + [-91, -18], + [-19, 33], + [-56, 17], + [-55, -46], + [-83, -14], + [-28, 48], + [-50, -5], + [-43, 83] + ], + [ + [4479, 4799], + [-50, -17], + [-46, -101] + ], + [ + [4383, 4681], + [-110, -84] + ], + [ + [4273, 4597], + [-86, -43], + [-48, -4], + [-77, 43], + [-274, 35], + [-43, 66], + [-49, 21], + [-30, -13], + [-75, 20], + [-26, 38], + [-64, -2], + [-49, 21], + [-54, -22], + [-23, 25], + [-48, -1], + [-14, 24], + [-75, -44] + ], + [ + [3238, 4761], + [-25, 25], + [-55, 12], + [-84, -9], + [-83, 60], + [-60, 16], + [-38, 33], + [-47, -22], + [-56, 36], + [21, 55], + [-13, 69] + ], + [ + [2798, 5036], + [16, 48], + [79, 69], + [147, 33], + [94, 50], + [50, 95] + ], + [ + [3184, 5331], + [22, 6], + [98, -67], + [27, 21], + [44, -27], + [105, 20], + [71, -18], + [29, -32], + [54, 29], + [94, 13], + [31, -59], + [30, 14] + ], + [ + [3238, 4761], + [-19, -50], + [-90, -25], + [-75, -82], + [-56, -17], + [-74, 1], + [-87, -57], + [-38, 3], + [-49, -46], + [-83, 29], + [-37, 53], + [8, 58], + [-43, 6], + [-71, -23], + [-82, 9], + [-67, 39], + [-9, 99], + [-75, 35], + [-47, -94], + [-31, -6], + [-76, -74] + ], + [ + [2137, 4619], + [-73, 39], + [-60, 57], + [-12, 92], + [26, 24], + [44, 101], + [0, 59], + [25, 108], + [84, 80] + ], + [ + [2171, 5179], + [74, -21], + [23, 32], + [126, -45], + [56, -33], + [37, -148], + [74, 9], + [39, -28], + [37, 20], + [-26, 74], + [75, -10], + [0, 33], + [112, -26] + ], + [ + [1354, 6894], + [-65, -36], + [16, -30], + [-8, -96], + [-38, -66], + [-158, -1], + [-68, 78], + [-17, -28], + [-57, -6], + [-42, 89], + [14, 50], + [-57, -14], + [-81, 125] + ], + [ + [793, 6959], + [-49, 125], + [-105, 111], + [-23, -6], + [-58, 47], + [-27, 60], + [-58, 42], + [-25, 45], + [-125, 25], + [10, 130], + [28, 31], + [9, 92], + [54, 115], + [11, 46], + [-24, 43] + ], + [ + [3776, 5322], + [-84, 37], + [-58, 78], + [-106, 69], + [-76, 15], + [-93, 64], + [-66, 68], + [-95, 154], + [-51, 31], + [25, 30], + [253, 66], + [90, 54], + [-15, 103], + [47, 82], + [-9, 60], + [21, 28] + ], + [ + [952, 4812], + [-36, 56], + [-37, 1], + [-58, 43], + [-69, 93], + [-77, 26], + [-49, 104], + [-42, 66], + [-18, 94], + [0, 53], + [-60, 29], + [-59, 1], + [-46, 94], + [-11, 52], + [-59, 101], + [-27, 67], + [-80, 61], + [-51, 79], + [2, 39], + [-49, 33], + [-42, 72], + [-72, 11], + [31, 63], + [119, 22], + [22, 34], + [47, -18], + [35, 19], + [34, -52], + [87, 58], + [31, 62], + [-16, 92], + [40, 81], + [44, 24], + [-3, 76], + [159, 20], + [11, 85], + [48, 47], + [1, 57], + [23, 50], + [9, 126], + [39, 47], + [20, 79] + ], + [ + [2026, 6303], + [-10, -61], + [48, -40], + [60, -172], + [3, -33] + ], + [ + [2127, 5997], + [-9, 16], + [-84, -26], + [-76, -81], + [-9, -76], + [-53, -109], + [-33, 11], + [-35, -31], + [-59, -22], + [-37, -32], + [-17, -63], + [-51, -20], + [-102, -106], + [-85, -28], + [-31, -61], + [-86, -13], + [-12, -96], + [26, -81], + [-14, -76], + [-62, 17], + [-25, -19], + [-8, -99], + [-19, -99], + [-47, -24], + [-33, 11], + [-19, 60], + [-48, 4], + [-14, -42], + [-52, 8], + [-34, -67], + [-47, -41] + ], + [ + [2674, 6348], + [45, -127], + [28, -22], + [-15, -52], + [27, -104], + [51, -139], + [41, -26], + [6, -39], + [-44, -42], + [-26, 24], + [-91, -60], + [-52, 45], + [-95, -38], + [11, -166] + ], + [ + [2560, 5602], + [-29, -8], + [-45, -70], + [-44, 44], + [-24, -54], + [-52, -16], + [-74, 68], + [-10, -43], + [40, -45], + [-50, -10], + [-13, -59], + [-38, -30] + ], + [ + [2221, 5379], + [-1, 53], + [24, 54], + [-17, 34], + [26, 60], + [-8, 60], + [6, 83], + [46, 34], + [1, 34], + [-63, -22], + [3, 49], + [-71, 35], + [-39, 49], + [-1, 95] + ], + [ + [3184, 5331], + [-87, 3], + [-81, 70], + [-140, -95], + [-26, 54], + [-99, 0], + [26, 67], + [-136, 22], + [-5, 25], + [37, 54], + [-51, 64], + [-62, 7] + ], + [ + [2171, 5179], + [-6, 93], + [50, 26], + [6, 81] + ], + [ + [2137, 4619], + [42, -71], + [-31, -36], + [-39, -108], + [-37, 33], + [-40, -15], + [-25, -43] + ], + [ + [2007, 4379], + [-58, 18], + [-78, -25], + [-70, 43], + [-64, 98], + [-24, -46], + [-45, -6], + [-121, 56], + [-39, -11], + [-30, 20], + [-16, 50], + [-45, 61], + [-78, -29], + [-68, 1], + [-116, 74], + [-81, 95], + [-71, 5], + [-51, 29] + ], + [ + [15651, 11033], + [-51, -12], + [-48, -47], + [-17, -42], + [-146, -6], + [-29, 61], + [-65, 12], + [9, 59], + [-50, -10], + [-47, -32], + [-29, 26], + [-58, -1], + [-136, -26], + [-19, 22], + [-81, -10], + [-41, 37], + [-44, -56], + [-33, -11] + ], + [ + [14766, 10997], + [-45, 41], + [-56, 86], + [-9, 58], + [-108, 48], + [26, 64], + [70, 25], + [62, 68], + [0, 59], + [-55, 18], + [-52, 77], + [-115, 47], + [-48, -18], + [-21, 25], + [-64, 0] + ], + [ + [14351, 11595], + [45, 219], + [-40, 47], + [-36, -19], + [-40, 35], + [-105, 1] + ], + [ + [14175, 11878], + [-45, 90], + [-18, 0] + ], + [ + [14112, 11968], + [8, 90] + ], + [ + [14120, 12058], + [37, 31], + [34, -24], + [73, 19], + [44, 115], + [140, 139] + ], + [ + [14448, 12338], + [57, 6], + [24, -37], + [-16, -39], + [78, -11], + [44, -42], + [69, -4], + [81, -45], + [73, 1], + [80, -30], + [82, 65], + [20, -78], + [109, 48], + [6, 55], + [59, 3], + [11, 60], + [3, 114], + [-82, 112], + [38, 46], + [35, 0], + [52, 88], + [-63, 78] + ], + [ + [16166, 12175], + [-74, -77], + [-1, -50], + [-110, -125], + [-79, -1], + [-35, -37], + [-15, -53], + [-86, -29], + [-61, -4], + [-14, -35], + [11, -67], + [26, -51], + [8, -62], + [107, -28], + [19, -61], + [50, -42], + [-63, -21], + [-7, -33], + [-51, -42], + [32, -76], + [1, -51], + [-64, -65], + [-34, -3], + [-48, -53], + [-27, -76] + ], + [ + [15869, 10784], + [0, 85], + [-45, 81], + [-90, -5], + [-10, 66], + [-73, 22] + ], + [ + [16943, 10221], + [-31, 32], + [-136, 39], + [1, 48], + [-102, 44], + [-1, 32], + [-36, 57], + [-94, -26], + [-127, 21], + [-68, 19], + [-90, -2], + [-45, 78], + [52, 43], + [-1, 66], + [26, 46], + [-57, 11], + [-11, 33], + [-84, -12], + [-73, -41], + [-30, 39], + [-61, -36], + [-51, 49], + [-49, -13], + [-6, 36] + ], + [ + [14992, 9555], + [-23, 46], + [-62, 2], + [-37, 26], + [-3, 40], + [-32, 21], + [-25, -30], + [-91, 10], + [-87, 36] + ], + [ + [14632, 9706], + [-5, 32], + [40, 97], + [120, 33], + [38, 51], + [-22, 69], + [-95, 5], + [-4, 62], + [-43, 10], + [-22, 50], + [13, 49], + [-28, 77], + [-38, 12], + [-42, 85] + ], + [ + [14544, 10338], + [30, 52], + [53, 26], + [-3, 28], + [-60, 39], + [15, 90], + [41, 14], + [12, 108], + [-15, 41], + [104, 19], + [19, 41], + [43, -1], + [22, 29], + [-39, 173] + ], + [ + [15869, 10784], + [2, -36], + [-38, -52], + [-54, 23], + [-44, -12], + [-36, -33], + [-104, -3], + [-41, -25], + [-66, 27], + [-54, -8], + [-17, -38], + [29, -61], + [47, -13], + [58, -40], + [-12, -113], + [-33, -35], + [0, -101], + [-33, -10], + [-62, -187], + [5, -57], + [-43, -6], + [23, -96] + ], + [ + [14448, 12338], + [2, 68], + [57, 65], + [-47, 61], + [31, 47], + [2, 60], + [22, 38], + [83, 27], + [40, -13], + [71, 49], + [47, -1], + [42, -21], + [43, 22] + ], + [ + [14841, 12740], + [36, 25], + [52, -17], + [19, -27], + [128, -20] + ], + [ + [21527, 4244], + [-179, 72], + [-92, -86], + [-66, 50], + [-5, 133], + [-71, 21], + [-24, 29], + [-7, 122], + [-32, 15], + [-55, -37], + [-29, 9], + [-8, 53], + [-70, 95], + [-60, 37], + [3, 43], + [-60, 51], + [15, 116], + [96, 36], + [-16, 66], + [31, 10], + [-25, 110], + [-74, -20], + [-9, 22] + ], + [ + [20790, 5191], + [22, -1], + [96, 99], + [81, 39], + [11, 81], + [47, 75], + [37, 18], + [95, 2], + [32, -32], + [33, 13], + [78, -6], + [7, 34] + ], + [ + [21329, 5513], + [58, -57], + [45, 3], + [57, -52], + [23, -53], + [62, -21], + [76, -113], + [-28, -43], + [128, -119], + [41, -3], + [71, -180], + [59, -53], + [70, 15], + [32, -63], + [6, -43], + [50, -84], + [51, -42], + [44, -93], + [43, -33], + [-4, -27], + [49, -43], + [25, -133], + [37, -35], + [18, -79], + [-92, -18], + [-76, 2], + [-66, 21], + [-75, -44], + [-101, 14], + [-59, -33], + [-26, 3], + [-38, 47], + [-1, 57], + [-89, 44], + [-75, 3], + [12, -32], + [-65, -23], + [-64, 41] + ], + [ + [18320, 9415], + [5, -62], + [31, -70], + [54, -19], + [19, -43], + [40, -218], + [82, -69], + [49, 5], + [36, -44], + [-24, -54], + [-85, -5], + [-67, -22], + [-26, -38], + [2, -60] + ], + [ + [18436, 8716], + [-55, 15], + [-57, -16], + [-90, 19], + [-51, -19], + [-1, -75], + [19, -3], + [-7, -88], + [-34, -48], + [-83, -32], + [-79, 47], + [-19, -24], + [8, -56], + [-41, -18], + [-29, -178], + [-19, 15], + [-71, -10], + [-45, -44], + [-56, 49], + [-128, -3], + [-7, -24], + [-94, 25], + [-39, -88], + [28, -95], + [-19, -24], + [29, -84], + [-47, -4], + [-23, -29], + [-82, 27], + [-82, -1] + ], + [ + [19688, 6500], + [-15, 42], + [116, 68], + [-59, 102], + [-13, 81], + [-36, 14], + [-47, 52], + [-100, 29], + [11, 88], + [-25, 27], + [-65, 18], + [-58, -54], + [-61, -7], + [-4, -35], + [-56, 8], + [-14, 44], + [-45, 6], + [-90, 120], + [27, 30], + [-26, 67], + [-26, 31], + [-13, 80], + [164, -8], + [47, -17], + [28, -71], + [29, 5], + [71, -66], + [85, -11], + [110, 49], + [-29, 44], + [90, 82], + [1, 48], + [32, 33], + [-179, 184], + [-85, -28], + [-44, 33], + [-57, -3], + [-49, -34], + [-92, 78], + [-19, 27] + ], + [ + [19192, 7656], + [43, 43], + [74, 7], + [43, 135], + [20, 11], + [141, -1], + [82, -34], + [71, 19], + [24, 63], + [-1, 58], + [82, 8], + [14, -41], + [32, -8], + [61, 24], + [28, 88], + [3, 87], + [-33, 27], + [15, 52], + [77, 25] + ], + [ + [19968, 8219], + [112, 1], + [131, -59], + [-20, -91], + [66, -112], + [38, -4], + [16, -110], + [-48, -28], + [-2, -107], + [12, -35], + [38, -12], + [19, -147], + [49, -58], + [13, -90] + ], + [ + [20392, 7367], + [-44, 6], + [-66, -39], + [-73, -114], + [-34, -126], + [-4, -78], + [-17, -69], + [-84, -4], + [-44, -31], + [4, -88], + [81, -102], + [15, 60], + [28, 44], + [48, -86], + [68, -45], + [8, -56], + [40, 10], + [70, 105], + [0, 46], + [82, -54], + [42, -9] + ], + [ + [20512, 6737], + [-43, -62], + [-51, -39], + [7, -66], + [-41, -3], + [-31, -112], + [-1, -60], + [-119, -54], + [37, -123], + [70, -20], + [-39, -39], + [-35, -108], + [-43, -77], + [-88, -2], + [-97, -31], + [8, 74], + [-28, 43], + [-24, 78], + [-9, 74], + [27, 77], + [-35, 42], + [-8, 50], + [-67, 36], + [-41, -16], + [-31, 52], + [-29, 4], + [1, 56], + [-114, -11] + ], + [ + [18899, 7659], + [-30, -42], + [-127, -40], + [4, -58], + [-82, -157], + [23, -82], + [55, -47], + [29, 33], + [25, -48], + [-21, -41], + [48, -55], + [9, -89], + [-100, -45], + [30, -81], + [59, -80], + [-33, -38], + [-4, -66] + ], + [ + [18784, 6723], + [-96, 53], + [-170, 29], + [-210, -4], + [-59, -76], + [-27, -54], + [-74, -16] + ], + [ + [18436, 8716], + [-27, -49], + [12, -24], + [86, -9] + ], + [ + [18507, 8634], + [-9, -57], + [-59, -33], + [10, -75], + [76, -121], + [40, 54], + [-41, 6], + [20, 89], + [57, -38], + [-5, -65], + [-36, -85], + [25, -104], + [51, -67], + [11, -75], + [67, -4], + [7, -57], + [-36, -10], + [-14, -72], + [-36, -48], + [18, -44], + [50, -50], + [34, -6], + [49, 22], + [28, -30], + [57, 24], + [28, -129] + ], + [ + [18784, 6723], + [89, -35], + [78, -62], + [105, -17], + [59, -25], + [100, -61], + [35, 40], + [30, -25], + [25, 34], + [97, -71], + [63, -33], + [59, 28], + [60, -149], + [-3, -94], + [29, -22] + ], + [ + [19610, 6231], + [-94, -63], + [-73, -8], + [19, -62], + [-53, -62], + [-20, -60], + [-8, -119], + [118, -84], + [-25, -90], + [46, -102], + [31, -11], + [45, -58], + [-45, -38], + [-96, -19], + [-13, -71], + [-19, -16] + ], + [ + [19423, 5368], + [-31, 21], + [-70, -24], + [-46, -73], + [27, -44], + [40, -15], + [-22, -84], + [4, -27], + [46, -20], + [28, -50], + [-2, -133], + [-12, -68], + [-43, -29] + ], + [ + [19342, 4822], + [-76, -14], + [-54, 32], + [-71, -36], + [-20, -73], + [-56, -13], + [-18, -54], + [35, -71], + [-62, -4], + [-56, 56], + [-21, -26], + [-49, 0], + [-24, 38], + [-46, -34], + [-38, 4], + [-23, 57], + [-55, 37], + [-154, 31], + [-52, -5] + ], + [ + [18507, 8634], + [131, -16], + [43, -30], + [45, -82], + [62, -16], + [64, -44], + [30, 27], + [97, -13], + [49, 70], + [91, -12], + [41, 45], + [70, -14], + [225, -17], + [79, 20], + [85, -27], + [111, 14], + [119, 2], + [8, -17], + [80, -36] + ], + [ + [19937, 8488], + [2, -97], + [-21, -106], + [44, -24], + [6, -42] + ], + [ + [19192, 7656], + [-49, 8], + [-63, 76], + [-52, -9], + [-116, -40], + [-13, -32] + ], + [ + [20286, 9128], + [-73, -48], + [-25, -55], + [-12, -95], + [-41, -24], + [11, -74], + [51, 7], + [-21, -65], + [7, -132], + [-48, -6], + [-49, -32], + [-77, -18], + [-12, -68], + [-60, -30] + ], + [ + [20237, 5273], + [16, 57], + [-8, 38], + [36, 59], + [-30, 34], + [26, 94], + [-39, 21], + [1, 63], + [28, 59], + [54, 61], + [11, 158], + [55, 46], + [-2, 67], + [107, 20], + [-6, 20], + [64, 108], + [8, 41], + [76, 59], + [53, 64], + [48, -17], + [39, -86], + [100, -34], + [106, -94], + [13, -92], + [29, -21], + [85, 55], + [-7, 36], + [37, 45] + ], + [ + [21137, 6134], + [38, -50], + [60, -4], + [68, 51], + [51, -5], + [-23, -58], + [12, -107], + [-35, -64], + [-73, -51], + [-13, -163], + [22, -61], + [86, -42], + [-1, -67] + ], + [ + [20790, 5191], + [-68, -19], + [-22, 119], + [-108, 8], + [-1, -28], + [-41, -48], + [-1, -68], + [-131, -48], + [-39, 47], + [-24, 78], + [-118, 41] + ], + [ + [21740, 8922], + [14, -128], + [58, -242], + [-2, -29], + [-41, -65], + [5, -76], + [37, -122], + [-6, -107], + [-24, -14], + [-53, 16], + [-152, 0], + [-73, 21], + [-49, -17], + [-190, 41], + [-119, 2], + [-44, -40], + [-33, -150], + [12, -47], + [33, -27], + [-51, -87], + [-42, 34], + [-33, -7], + [-57, -84], + [-40, 17] + ], + [ + [20890, 7811], + [-33, 93], + [-28, 4], + [6, 129], + [-51, -6], + [-32, 24], + [-61, 81], + [12, 128], + [-65, 14], + [-43, 37], + [-34, 70], + [12, 105], + [-36, 2], + [24, 177], + [58, -17], + [68, 83], + [46, 6], + [10, 27], + [22, 190], + [41, 61], + [43, 14], + [49, 91], + [-87, -5], + [-22, 41], + [22, 46] + ], + [ + [21527, 4244], + [-27, -33], + [-11, -91], + [29, -7], + [-23, -62], + [52, -9], + [10, -75], + [-39, -1], + [-45, -31], + [-50, 60], + [-32, -28], + [-30, 70], + [-41, 29], + [-100, 23], + [-53, 55], + [-17, -35], + [-145, 24], + [-46, -35], + [-10, -43], + [-90, -17], + [-27, 8], + [-36, -45], + [-87, 22], + [18, -53], + [-49, -56], + [-33, 49], + [-65, -60], + [-53, -22], + [-31, -49], + [-28, -106], + [-44, 54], + [-28, 8], + [-40, 81], + [-5, 38], + [-74, 116], + [-80, -34], + [-16, 18], + [-73, 18], + [-16, 57], + [-63, -12], + [-35, 53], + [-25, 84], + [-69, -2], + [-7, 50], + [-41, 35], + [-36, -1], + [-7, 70], + [-32, 21], + [-25, 129], + [-54, 72], + [-109, 9], + [0, 40], + [-75, 64], + [-23, 47], + [-43, -4], + [-26, 60], + [-46, -10], + [-34, 35] + ], + [ + [19423, 5368], + [26, -8], + [61, 32], + [64, -26], + [30, -50], + [111, 85], + [38, -10], + [33, -53], + [95, -39], + [36, 33], + [50, -5], + [15, -42], + [123, -19], + [54, 30], + [57, -36], + [21, 13] + ], + [ + [19688, 6500], + [20, -85], + [-94, -37], + [2, -56], + [32, -40], + [-38, -51] + ], + [ + [20512, 6737], + [48, 14], + [-11, 35], + [29, 23], + [45, -48], + [71, -35], + [137, 36], + [-24, -130], + [23, -57], + [41, -33], + [44, -10], + [86, 72], + [35, -63], + [34, -23], + [66, 21], + [-20, -57], + [-54, 4], + [-15, -38], + [12, -139], + [49, -108], + [33, -26], + [-4, -41] + ], + [ + [20890, 7811], + [-50, -14], + [-28, 12], + [-45, -73], + [-18, -115], + [11, -147], + [29, -72], + [44, -53], + [-41, -20], + [-39, 52], + [-58, 21], + [-66, -40], + [-26, 31], + [-41, 3], + [-95, -75], + [-75, 46] + ], + [ + [24449, 12453], + [-100, -191], + [-64, -84], + [-60, -50], + [-23, 4], + [-50, -39], + [-59, -100], + [-42, -41], + [-24, -88], + [-53, 76], + [-136, 36], + [-112, 96], + [-206, 62], + [-103, 15], + [-90, -33], + [-24, 5], + [-192, -54] + ], + [ + [23111, 12067], + [19, 219], + [62, 52], + [-25, 38], + [126, 90], + [-19, 29], + [144, 56], + [-19, 53], + [-47, -18], + [-102, 127], + [-23, -21], + [-52, 64], + [-95, 205] + ], + [ + [23080, 12961], + [142, 87], + [-41, 107], + [135, 71], + [-14, 39], + [174, 97], + [-12, 51], + [99, 16], + [121, 6], + [-4, 93], + [117, 6] + ], + [ + [23797, 13534], + [32, 1], + [94, -81], + [57, -185], + [-26, -8], + [45, -145], + [-138, -46], + [10, -86], + [42, -77], + [-107, -141], + [22, -42], + [92, -80], + [86, 41], + [54, -134], + [46, -34], + [29, 11], + [29, -74], + [64, 33], + [45, -18], + [19, 67], + [69, 10], + [15, -22], + [82, -9], + [-9, -62] + ], + [ + [20716, 14356], + [-48, -96], + [-98, -82], + [-41, 44], + [-49, 1], + [-34, 73], + [-98, 18], + [10, -59], + [-26, -125], + [-67, -24], + [23, -72], + [6, -69], + [-86, -124], + [1, -99], + [-57, -208], + [-17, 5], + [-27, -96], + [-51, -113], + [-45, -19], + [9, -70], + [-46, -33] + ], + [ + [20600, 14768], + [-42, -47], + [-30, -79], + [48, 0], + [-4, -50], + [38, -64], + [16, -117], + [28, -26], + [19, -55], + [43, 26] + ], + [ + [23797, 13534], + [-11, 76], + [113, 17], + [-34, 208], + [98, 18], + [-8, 52] + ], + [ + [23955, 13905], + [525, 28], + [-25, -81], + [22, -89], + [-6, -42], + [-47, -38], + [-1, -104], + [18, -134], + [39, -79], + [-23, -44], + [-21, -152], + [42, -131], + [100, -143], + [14, -73], + [-23, -109], + [-54, -113], + [-9, -51], + [-57, -97] + ], + [ + [21387, 13301], + [47, 6], + [139, -7], + [98, -14], + [-3, -64], + [42, -13], + [35, 22], + [30, -28], + [-33, -48], + [-33, -7], + [38, -85], + [-45, -61], + [20, -18], + [-70, -131], + [-18, -11], + [-102, 1], + [-23, -92], + [4, -42], + [-86, -9], + [-12, 56], + [-38, 60], + [-149, 4], + [-14, 44], + [-46, 32], + [-5, 35], + [-79, -3], + [-10, 169], + [59, 1], + [41, 33], + [51, 119], + [78, 75], + [6, -92], + [35, -40], + [32, 33], + [11, 75] + ], + [ + [23111, 12067], + [-31, -23], + [-114, -12], + [-56, 4], + [-61, 41], + [-54, -3], + [-181, -135], + [-49, -24], + [-41, -72], + [-56, -155], + [8, -42], + [-37, -64] + ], + [ + [22148, 11982], + [17, 108], + [-6, 49], + [-48, 63], + [52, 28], + [-17, 131], + [21, 127], + [-63, -10], + [-56, 126], + [21, 16], + [-36, 105], + [-30, -1], + [62, 128], + [26, -14], + [34, 68], + [89, -3], + [-50, 112], + [28, 23], + [-30, 67], + [147, 72], + [-62, 141] + ], + [ + [22247, 13318], + [196, 25], + [76, -168], + [97, 46], + [20, -46], + [34, 16], + [23, -50], + [31, 15], + [41, -36], + [60, -107], + [41, -90], + [98, 40], + [116, -2] + ], + [ + [22247, 13318], + [-24, 50], + [-96, -41], + [-2, 83], + [-66, -14], + [-26, 67], + [2, 42], + [-23, 55], + [-102, 7], + [-57, 17], + [3, 74], + [-97, -11], + [-19, 257], + [-38, -3], + [-4, 52], + [-71, 150], + [-55, 46] + ], + [ + [21572, 14149], + [-50, 143], + [52, 70], + [-34, 24], + [53, 78], + [27, -19], + [73, 112], + [31, -16], + [16, 199], + [-43, 94], + [-67, 69], + [-39, 19], + [85, 54], + [-130, 218] + ], + [ + [21546, 15194], + [40, 5], + [289, 234], + [108, -131], + [39, -248], + [78, -196], + [79, -345], + [152, -71], + [341, -190], + [459, -209], + [442, -35], + [382, -103] + ], + [ + [20716, 14356], + [89, 59], + [45, -3], + [96, -139], + [47, -100], + [52, -68], + [1, -67], + [-14, -56], + [65, -50], + [43, 3], + [38, -45], + [96, 26], + [-40, 93], + [117, 54], + [11, -21], + [137, 62], + [73, 45] + ], + [ + [21004, 15316], + [57, -156], + [110, -33], + [69, 28], + [306, 39] + ], + [ + [10453, 8515], + [6, -50] + ], + [ + [10456, 8422], + [-93, 24], + [-3, -32], + [52, -8], + [15, -45] + ], + [ + [10427, 8361], + [-11, 13], + [-164, -46], + [-64, -43], + [-36, 35], + [-53, -5], + [-35, -73], + [-133, 48], + [-56, -17] + ], + [ + [9875, 8273], + [-24, 156], + [22, 66], + [7, 80], + [-139, 89], + [-59, 134], + [46, 59], + [14, 76], + [-49, 51], + [31, 51], + [-17, 82], + [-78, 63], + [-56, 76], + [12, 43], + [70, 11], + [42, -29], + [50, 35], + [8, 26], + [101, -16], + [72, 8] + ], + [ + [8312, 9157], + [-79, 98], + [-101, 34], + [-114, 2], + [-32, 21], + [-61, -5], + [-32, 103], + [-136, 63], + [-43, 39], + [14, 106], + [37, 20], + [75, 160], + [6, 70], + [22, 51], + [-28, 85], + [-107, 15], + [3, 36], + [-78, 9], + [-31, 52], + [-39, 11] + ], + [ + [7588, 10127], + [69, 53], + [78, 39], + [25, 54], + [-31, 127], + [0, 55], + [47, 41], + [82, 207], + [-1, 57], + [26, 30], + [-9, 52], + [16, 39], + [81, 12], + [21, 33], + [163, -71], + [59, 56], + [38, -3], + [1, 56], + [-39, 42], + [-6, 39] + ], + [ + [8737, 10956], + [-83, -90], + [-17, -108], + [51, -41], + [-70, -27], + [-39, -133], + [-65, -39], + [-14, -97], + [48, -70], + [35, 13], + [86, -69], + [31, 9], + [62, -37], + [2, -38], + [43, -58], + [31, 12], + [25, -42], + [44, 4], + [61, 55], + [59, -25], + [57, 11], + [-40, -71], + [-20, -90], + [-1, -81] + ], + [ + [9023, 9944], + [-88, 25], + [-153, -28], + [-18, -44], + [-68, -4], + [-75, 16], + [-94, -11], + [-22, 14], + [-113, -22], + [-62, 37], + [-51, -10], + [-5, -32], + [-88, 26], + [-20, -155], + [-23, -70], + [114, -116], + [42, -80], + [-45, -20], + [74, -139], + [3, -66], + [-19, -108] + ], + [ + [7473, 10171], + [-66, -26], + [-59, -85], + [-99, 28], + [-50, -23], + [-89, 23], + [-85, -74], + [19, -67], + [-59, -38], + [11, -79], + [53, -117], + [-2, -44], + [-152, 1], + [-19, 40], + [-57, 24], + [-52, 1] + ], + [ + [6352, 10168], + [-1, 105], + [-47, 78], + [18, 115], + [97, -32], + [48, -36], + [108, 24] + ], + [ + [6575, 10422], + [125, -14], + [131, 23], + [42, 23], + [12, 37], + [48, -31], + [126, -13], + [79, -45], + [-3, 48], + [82, -16], + [46, 32], + [137, -30], + [-28, -45], + [43, -48], + [-44, -40], + [-6, -57], + [108, -75] + ], + [ + [9875, 8273], + [-71, -15], + [-41, 42], + [-56, -1], + [-46, -28], + [-88, 18], + [-37, -45] + ], + [ + [9536, 8244], + [-102, -45], + [-136, 34] + ], + [ + [9298, 8233], + [-43, 17], + [-38, -9], + [-101, 54], + [-38, 46], + [-8, 59], + [-59, 41], + [-25, 93], + [-73, 54], + [-38, -6], + [-126, 62], + [-78, 21], + [-12, -20], + [-112, -9], + [-71, 34], + [-68, 2] + ], + [ + [8408, 8672], + [-20, 51], + [12, 85], + [32, 27], + [32, 70], + [-30, 28], + [-32, 66], + [13, 47], + [-75, 112], + [-28, -1] + ], + [ + [9023, 9944], + [64, -15], + [41, -114], + [-12, -46], + [18, -33], + [61, 10], + [61, -15], + [40, 21], + [70, 2], + [16, 97], + [41, 12], + [92, -9], + [269, 62], + [63, -6], + [31, 18], + [40, -22] + ], + [ + [7588, 10127], + [-115, 44] + ], + [ + [6575, 10422], + [-16, 126], + [-32, 38], + [38, 79], + [14, 85], + [-42, 65], + [57, 88], + [-18, 66] + ], + [ + [8408, 8672], + [-52, -69], + [18, -76], + [-33, -52], + [-53, -46], + [-79, -4], + [-72, 29], + [-26, -18], + [-129, -6] + ], + [ + [10309, 11473], + [116, -10], + [36, -149], + [-26, -79], + [12, -100], + [-165, 3], + [-21, -13], + [20, -96], + [11, -143] + ], + [ + [10951, 11306], + [-9, -81], + [-26, -78], + [-48, -93], + [-16, -128], + [-40, -83], + [-112, -32] + ], + [ + [4094, 891], + [-56, 33], + [35, 63], + [13, 72], + [-42, 57], + [-75, 0], + [0, 125], + [8, 57], + [-57, 75], + [-18, -29], + [-72, 15], + [-92, -86], + [-105, 53], + [-31, -5], + [-24, 76], + [-53, 102], + [-76, -25], + [-101, 58], + [10, 91], + [-49, 21], + [-44, -20], + [-89, 22], + [-57, 3] + ], + [ + [3119, 1649], + [20, 69], + [-13, 46], + [113, 95], + [56, 32], + [66, -17], + [2, 50], + [42, 63], + [-24, 111], + [51, 31], + [45, 89], + [33, 18], + [11, 88], + [27, 50], + [92, 51], + [16, 36], + [97, 10], + [37, 63], + [14, 64], + [65, 78] + ], + [ + [3869, 2676], + [46, 42], + [73, 14], + [16, 70], + [86, 36] + ], + [ + [4090, 2838], + [11, -50], + [92, -53], + [57, 22], + [85, -99], + [34, -77], + [38, 23], + [55, -11], + [25, -33], + [70, -12] + ], + [ + [4557, 2548], + [13, -101], + [25, -78], + [135, -117], + [47, -90], + [116, -84], + [39, -44], + [4, -94], + [13, -25], + [-13, -89], + [73, -121], + [-12, -81], + [8, -30], + [76, -71] + ], + [ + [5081, 1523], + [-9, -52], + [16, -128], + [19, -52], + [-5, -47], + [25, -34], + [-13, -92], + [-33, -65], + [12, -47], + [-46, -93], + [32, -31] + ], + [ + [5079, 882], + [-7, -74], + [-39, -28], + [-85, 1], + [-33, 23], + [-34, -13], + [-43, 55], + [-35, 18], + [-102, -24], + [-58, 43], + [-12, 45], + [-45, 17], + [-151, -36], + [-192, 39], + [-60, -40], + [-63, 17], + [-26, -34] + ], + [ + [3969, 4130], + [-30, -184], + [-41, -40], + [-65, -20], + [1, -106], + [-48, -59], + [-12, -81], + [-97, -191], + [4, -44], + [68, -30], + [48, -43], + [50, 0], + [-5, -65] + ], + [ + [3842, 3267], + [-84, -22], + [-78, 10], + [-8, -34], + [-56, -10], + [-38, 17], + [-60, 2], + [-113, -76], + [-65, -13], + [-63, 67], + [-75, -28], + [-28, 7], + [-43, -118], + [-21, -35], + [-60, -20], + [-42, 61], + [-52, 44], + [-61, 9], + [-58, -93], + [-39, -22], + [-116, -138], + [-103, 43] + ], + [ + [2579, 2918], + [-17, 53], + [-73, 13], + [-77, -5], + [-27, 25], + [1, 80], + [-38, 49], + [-52, 105], + [12, 60], + [-26, 107] + ], + [ + [2282, 3405], + [37, 17], + [30, -26], + [92, 0], + [12, 57], + [121, 36], + [22, 93], + [33, 58], + [-9, 78], + [54, 33], + [-10, 75], + [2, 168], + [57, 38], + [48, 15], + [45, -20], + [86, 9], + [35, -24], + [-35, -49], + [67, -46], + [1, -29], + [92, 20], + [41, 32], + [25, 66], + [82, 8], + [89, 54], + [45, 80], + [7, 44], + [139, 82], + [19, -3], + [50, 76], + [22, 6], + [88, -41], + [28, -81], + [58, -2], + [110, -77], + [59, 0], + [45, -22] + ], + [ + [4273, 4597], + [-14, -79], + [10, -42], + [-70, -25], + [10, -67], + [-106, -78], + [-12, -42], + [-40, -19], + [-35, 14], + [-30, -59], + [-17, -70] + ], + [ + [2282, 3405], + [-23, 19], + [-21, 72], + [-38, 72], + [-56, 7], + [-10, 146], + [-32, 88], + [-47, 35], + [-22, 158], + [17, 121], + [-13, 10], + [4, 106], + [-46, 26], + [24, 49], + [-12, 65] + ], + [ + [5458, 3454], + [26, 60], + [66, 52], + [48, -7] + ], + [ + [5811, 3226], + [-33, -19], + [-39, -103], + [-75, -2], + [-48, -47], + [-77, -23], + [-64, -73], + [-2, -73], + [-98, -66] + ], + [ + [5375, 2820], + [-64, -2], + [-78, -58], + [40, -91], + [-38, -3], + [-32, -31], + [-51, 30], + [-47, -14], + [-83, 23], + [-63, -7], + [-19, -34], + [-116, -24], + [-35, -33], + [-49, -4], + [-69, 50], + [-38, -3], + [-49, -64], + [-27, -7] + ], + [ + [4090, 2838], + [15, 55], + [-7, 120], + [-82, 91] + ], + [ + [4016, 3104], + [118, 221], + [94, 101], + [28, -14], + [67, 30], + [62, 61], + [59, -4], + [22, 50], + [75, -88], + [68, -25], + [64, 2], + [45, 55], + [74, -8], + [70, 37], + [1, -70], + [48, -92], + [94, -38], + [-11, -74], + [59, 22], + [56, 62], + [67, -1], + [47, 40], + [-2, 32], + [35, 40], + [66, 35], + [39, 4], + [42, -28], + [55, 0] + ], + [ + [6699, 1596], + [0, -57], + [21, -74], + [-18, -69], + [43, -45], + [5, -73], + [-68, -28], + [-34, -48], + [-44, 29], + [-46, -4], + [-26, 67] + ], + [ + [6532, 1294], + [-158, 37], + [-64, 102], + [-64, 44], + [62, 61], + [-28, 98], + [-5, 61], + [-36, 64], + [-82, 116] + ], + [ + [6157, 1877], + [14, 41], + [55, 50], + [14, 45], + [-85, -15], + [-24, 29], + [-10, 61], + [-76, 63], + [25, 25], + [35, 79], + [-11, 65], + [-35, 63], + [-3, 92], + [65, 36], + [13, 53], + [25, 21], + [120, 38], + [36, 52], + [102, 41], + [59, -17] + ], + [ + [4094, 891], + [-86, -78], + [-55, -15], + [-48, -68], + [-31, -13], + [-77, 198], + [-43, -7], + [-54, 16], + [-68, -22], + [-88, -77], + [-101, -42], + [-24, -52], + [21, -93], + [-29, -77], + [-92, -68], + [-76, -28], + [-26, 13], + [-228, -5], + [-44, -21], + [-101, 18], + [-184, 72], + [-117, -12], + [-78, 28], + [-44, -17], + [-139, 47], + [46, 59], + [64, 2], + [-12, 149], + [17, 79], + [-21, 70], + [-36, 67], + [47, 78], + [54, 58], + [-2, 59], + [-51, 68], + [-15, 154], + [38, 68], + [5, 57], + [-50, 114], + [7, 43], + [38, 20] + ], + [ + [2411, 1733], + [77, 24], + [52, -11], + [58, -45], + [98, -17], + [60, 76], + [55, 8], + [36, -65], + [75, -103], + [44, 12], + [37, 50], + [116, -13] + ], + [ + [3842, 3267], + [47, -48], + [7, -63], + [120, -52] + ], + [ + [3869, 2676], + [-51, 11], + [-83, -42], + [-6, 40], + [-114, -39], + [-62, -105], + [-53, 7], + [-104, -135], + [-74, -54], + [-68, 67], + [-81, 64], + [-67, 1], + [-39, -33], + [-54, -2], + [-102, 26], + [-23, 23], + [-97, 7], + [-40, 29], + [-21, 45], + [-66, 53] + ], + [ + [2664, 2639], + [-8, 82], + [-63, 182], + [-14, 15] + ], + [ + [6157, 1877], + [-19, -38], + [-42, 6], + [-40, -53], + [-59, 35], + [-8, -53], + [-48, -26], + [-87, -87], + [-52, 68], + [-38, 20] + ], + [ + [5764, 1749], + [-31, 48], + [-63, 25], + [-46, 53], + [-55, 31], + [-23, 49], + [-15, 128], + [-35, 87], + [-38, 37], + [-11, 53], + [44, 50], + [-4, 66], + [-36, 91], + [4, 106], + [-31, 33], + [-10, 116], + [-39, 98] + ], + [ + [4383, 4681], + [48, -82], + [49, -51], + [53, -26], + [57, -56], + [8, -31], + [-60, -9], + [-17, -25], + [41, -157], + [52, -116], + [13, -106], + [-9, -45], + [29, -57], + [0, -61], + [34, -70], + [43, -11], + [0, -48], + [67, -33], + [-14, -78], + [76, -17], + [70, 69], + [65, 15], + [91, -27], + [122, -19], + [63, -57], + [57, -7], + [82, 26], + [-40, -77], + [95, -71] + ], + [ + [5081, 1523], + [19, 50], + [95, 39], + [52, -2], + [65, -72], + [29, -17], + [43, 20], + [-23, 66], + [48, 8], + [33, 57], + [62, -11], + [90, 67], + [79, -41], + [-8, 46], + [99, 16] + ], + [ + [6532, 1294], + [-35, -61], + [-104, -90], + [-64, -7], + [-52, 55], + [-77, 121], + [-66, 59], + [-27, -18], + [2, -49], + [-15, -70], + [-62, -39], + [-133, -1], + [-20, -55], + [-28, 10], + [-84, -30], + [-88, 5], + [-32, -56], + [-12, -50], + [-34, -30], + [-51, -93], + [-35, 36], + [-112, 29], + [-139, -19], + [-82, 35], + [-48, -60], + [-55, -34] + ], + [ + [2411, 1733], + [-1, 95], + [-16, 81], + [-52, 44], + [-10, 46], + [14, 140], + [-20, 68], + [14, 61], + [32, 21], + [78, 11], + [60, 146], + [24, 18], + [83, 138], + [47, 37] + ], + [ + [5518, 4123], + [-81, -22], + [-110, 23], + [-34, 33], + [-59, -23], + [-23, 21], + [-44, -8], + [-23, 28], + [-80, -40], + [-27, -63], + [-96, -25], + [-38, 13], + [17, 39], + [7, 96], + [28, 132], + [-21, 69], + [5, 58], + [-66, 37], + [-19, 41], + [10, 55], + [47, 37], + [-25, 87], + [-58, 24], + [-46, 1] + ], + [ + [14969, 13348], + [-73, -8], + [-33, 18], + [-27, 59], + [29, 30], + [-27, 114], + [18, 137] + ], + [ + [14856, 13698], + [12, -12], + [135, 171], + [82, -28], + [-1, 46], + [136, 56], + [1, 55], + [86, 43], + [-1, 157], + [88, -27], + [162, 7], + [24, -26], + [72, -25], + [7, 23], + [57, 11] + ], + [ + [12441, 12649], + [-52, 19], + [46, 62], + [-63, 74], + [-69, 20], + [-8, 44], + [-53, 26], + [29, 28], + [-56, 70], + [10, 45], + [84, 13], + [62, 52], + [105, 50], + [43, 59], + [57, 10], + [-3, 102], + [-39, 41], + [7, 36] + ], + [ + [12541, 13400], + [65, 8], + [234, 148] + ], + [ + [12840, 13556], + [21, -64], + [55, 10], + [42, -142], + [-2, -51], + [115, -29], + [38, -93], + [54, -31], + [43, -43], + [91, -24], + [17, -54], + [40, -22], + [-54, -36], + [-27, -79], + [-43, -35], + [50, -55], + [20, -42] + ], + [ + [13300, 12766], + [-114, -64], + [-40, -57], + [-14, -43], + [98, 10], + [25, 26], + [76, -70], + [-86, -13], + [4, 42], + [-60, -12], + [-70, 9], + [-9, 60], + [-56, 17], + [-23, -33], + [11, -106], + [-139, -9], + [-60, 163], + [-73, 63], + [-96, -104], + [-30, -16] + ], + [ + [12644, 12629], + [-91, 69], + [-8, -36], + [-45, 2], + [-6, -37], + [-53, 22] + ], + [ + [14856, 13698], + [-149, 200], + [-3, 34], + [-60, 20], + [34, 104], + [-55, -13], + [-22, 26], + [-68, -38], + [-29, 59], + [-38, 35], + [-101, 1], + [-172, -146], + [-109, -42], + [-103, 26], + [-28, 77], + [-122, 10], + [-35, 40] + ], + [ + [13796, 14091], + [82, 91], + [11, 64], + [82, 99], + [42, 87], + [83, 130], + [50, 42], + [95, 59], + [97, 76], + [173, 107], + [103, 162], + [93, 108], + [39, 83], + [39, 44], + [126, 56] + ], + [ + [14911, 15299], + [21, -40], + [42, -182], + [-30, -3], + [-27, -103], + [42, -19], + [12, -32], + [58, -19], + [11, -40], + [37, -9], + [76, -78], + [41, -12], + [18, -82], + [77, -141], + [15, -52], + [106, 60], + [38, 48], + [43, -19], + [91, 33], + [3, 19] + ], + [ + [13738, 12327], + [-9, -65], + [75, 17], + [88, -24], + [18, -49], + [122, -28], + [10, -32], + [78, -88] + ], + [ + [14112, 11968], + [-8, -31], + [-72, -32], + [-86, 20], + [-17, -34], + [-144, -60], + [-55, 17], + [-9, 25], + [-80, -2], + [-17, 12], + [-126, 17], + [-29, 38] + ], + [ + [13469, 11938], + [-90, 31], + [-60, -16], + [-67, 39], + [-32, 108], + [-45, 47], + [-114, 2], + [11, -61], + [-37, -70], + [-85, 21], + [-93, -1], + [-33, 53], + [-40, -6], + [-13, 75], + [-58, 21], + [-57, 51], + [-72, 18], + [-6, 28], + [-52, 35], + [96, 54], + [-15, 95], + [9, 127], + [28, 40] + ], + [ + [13300, 12766], + [-4, -32], + [150, -40], + [7, -44], + [-10, -95], + [43, -26], + [42, -129], + [-4, -38], + [149, 4], + [45, 33], + [25, -35], + [-5, -37] + ], + [ + [14351, 11595], + [-128, 11], + [-87, 31], + [-26, 58], + [-10, 134], + [75, 49] + ], + [ + [14841, 12740], + [-12, 83], + [-45, 39], + [-61, 16], + [-1, 104], + [-43, -10], + [-103, 66], + [-85, -2], + [-126, -37], + [-68, 7], + [-62, 44], + [-42, 5], + [-17, 64], + [56, 24], + [-79, 36], + [-23, 42], + [-48, 44], + [-73, -27], + [-27, 37], + [-32, -11], + [-33, 68], + [-79, -34], + [-45, 21], + [-34, -43], + [-45, 5] + ], + [ + [13714, 13281], + [-23, 35], + [-4, 62], + [-38, 56], + [1, 38], + [-73, 5], + [-4, 72], + [-45, 49], + [-112, 28], + [-34, 25], + [0, 77] + ], + [ + [13382, 13728], + [97, 57], + [37, 46], + [53, 117], + [62, 57], + [55, 8], + [76, 42], + [34, 36] + ], + [ + [12840, 13556], + [202, 113], + [184, 1], + [61, 6], + [95, 52] + ], + [ + [13714, 13281], + [19, -48], + [-43, -118], + [13, -124], + [23, -77], + [-27, -48], + [-33, 9], + [-31, -103], + [17, -60], + [55, -10], + [2, -87], + [54, -89], + [33, -31], + [-30, -176], + [-28, 8] + ], + [ + [14911, 15299], + [90, 5], + [97, -6], + [338, 146], + [96, 91], + [121, 31], + [90, 35] + ], + [ + [12593, 448], + [-51, -31], + [-53, -181], + [-120, 51], + [-111, 4], + [-10, -27], + [-148, -40], + [-12, -56], + [-159, -40], + [-85, 10], + [-37, -43], + [-65, -26], + [-23, -38], + [-43, -2], + [-38, 21], + [-74, 3], + [-32, -53], + [-90, 49], + [-127, 17], + [3, 42], + [-38, 67], + [-13, 83], + [-46, 57], + [-32, 0], + [-69, 35], + [-16, 67] + ], + [ + [11023, 895], + [61, 49], + [117, 11], + [44, 83], + [-25, 41], + [15, 36], + [54, 11], + [46, -56], + [88, 0], + [101, -44], + [52, 38], + [29, 54], + [99, 21], + [81, -2] + ], + [ + [11785, 1137], + [44, -40], + [43, -14], + [37, 44], + [62, -12], + [0, 28], + [106, 37], + [76, -35], + [57, -8], + [83, 20], + [8, -18] + ], + [ + [12301, 1139], + [-27, -63], + [-28, -24], + [3, -54], + [21, -35], + [42, -20], + [-17, -56], + [7, -131], + [-32, -96], + [1, -54], + [33, -15], + [64, 26], + [57, -17], + [19, 24], + [54, -3], + [17, -62], + [55, -52], + [23, -59] + ], + [ + [12709, 2256], + [58, 6] + ], + [ + [14131, 473], + [-53, 2], + [-22, -32], + [-39, -4], + [-52, -37], + [-87, -18], + [-59, 55], + [14, 77], + [-79, 2], + [-26, 50], + [-43, 18], + [-45, 40], + [-28, -59], + [-29, 3], + [-80, -28], + [-30, -57], + [-47, -16], + [-45, 4], + [-56, -18], + [-80, 10], + [-19, -12], + [-16, -130], + [-50, -5], + [-28, 49], + [-45, 30], + [-75, 11], + [-25, 33], + [-45, -8], + [-89, -53], + [-146, 33], + [-50, 51], + [-64, -16] + ], + [ + [12301, 1139], + [99, -40], + [14, -73], + [28, -31], + [29, 31], + [80, -23], + [-28, 79], + [100, 71], + [12, -18], + [94, -7], + [12, 85], + [-32, 15], + [28, 138], + [-26, 17], + [-23, 64], + [-32, 4], + [21, 106], + [56, 49], + [10, 65], + [23, 50], + [27, 8], + [6, 88], + [-88, 144], + [-79, 101], + [6, 46], + [53, 62], + [18, 86] + ], + [ + [10672, 2684], + [47, 19], + [89, 2], + [63, 71] + ], + [ + [10871, 2776], + [92, -75], + [103, -18], + [38, 14], + [103, 7], + [69, 38] + ], + [ + [11276, 2742], + [-7, -35], + [28, -86] + ], + [ + [11297, 2621], + [33, -121], + [40, -5], + [32, -76], + [34, -27], + [28, -55], + [-54, -23], + [-53, -72], + [-20, -8], + [-15, -73], + [-77, -72], + [2, -62], + [61, -42], + [-32, -28], + [95, -37], + [-44, -61], + [56, -17] + ], + [ + [11383, 1842], + [-17, -59], + [-38, 1], + [-124, -30], + [-22, -66], + [53, -76], + [-97, 7], + [-71, -64], + [-23, -77] + ], + [ + [11785, 1137], + [61, 22], + [-9, 104], + [13, 96], + [-15, 39], + [7, 79], + [-10, 72], + [49, 67], + [-27, 132], + [-102, -52], + [-55, 92] + ], + [ + [11697, 1788], + [28, 32], + [93, 46], + [40, 3], + [88, 41], + [44, 56], + [17, 63], + [146, 18], + [4, -50], + [32, -8], + [67, 18], + [41, -31], + [64, 52], + [26, 52], + [87, 37], + [-42, 107], + [117, 32], + [40, 21], + [120, -21] + ], + [ + [10871, 2776], + [48, 73], + [98, 25], + [123, -18], + [25, 25], + [73, -24], + [38, -115] + ], + [ + [11697, 1788], + [-113, 5], + [-58, -19], + [-143, 68] + ], + [ + [11297, 2621], + [65, 20], + [14, 47], + [-18, 28], + [19, 67], + [58, 1], + [18, -50], + [75, 45], + [47, -48], + [32, -56], + [53, 8], + [41, -20], + [8, -41], + [40, -32], + [67, 35], + [50, -24], + [59, 76], + [5, 86], + [-52, 32], + [36, 42], + [27, 70], + [87, 77], + [-29, 97] + ], + [ + [10690, 3106], + [30, -30], + [47, 47], + [93, 17], + [-41, 61], + [5, 44], + [42, 50], + [58, 11], + [36, 33], + [19, 48], + [-1, 148] + ], + [ + [10978, 3535], + [98, 30], + [40, 57], + [17, 69], + [89, 17], + [35, -33] + ], + [ + [11501, 10434], + [-41, 11], + [-45, 38], + [-12, 92], + [-42, 43], + [43, 70], + [-14, 19], + [20, 86], + [-54, 25], + [-14, 28], + [16, 63], + [-128, 40], + [-61, -26], + [-145, 91], + [-53, -5], + [-28, 41], + [131, 12], + [16, 68], + [-43, 17], + [-25, 41], + [-11, 68], + [-47, 48] + ], + [ + [11335, 11892], + [83, 10], + [16, 99], + [37, 36], + [95, 41], + [213, 7], + [8, -28], + [84, 48], + [0, 16], + [159, 2] + ], + [ + [12030, 12123], + [39, -26], + [41, -54], + [-1, -85], + [-27, -20], + [48, -192], + [54, 13], + [59, -55], + [28, -55], + [22, -144], + [67, -81], + [-8, -77], + [81, -32], + [23, -53], + [56, 1] + ], + [ + [12512, 11263], + [4, -73], + [-36, -16], + [1, -50], + [-81, 48], + [-87, -33], + [-59, 60], + [-100, -2], + [-36, -54], + [63, -44], + [1, -256], + [-51, -24], + [-1, -71], + [26, 0], + [11, -87], + [-28, -32], + [28, -48], + [-103, -31], + [-72, -54], + [-67, -13], + [27, 95], + [-1, 39], + [-64, 10], + [-59, -20], + [-34, 30], + [-132, -89], + [-4, -41], + [-57, 2], + [-17, -74] + ], + [ + [14160, 10470], + [31, 33], + [-68, 55], + [-16, -11], + [-50, 135], + [-28, 40], + [14, 71], + [-37, 22], + [-103, -58], + [-61, 12] + ], + [ + [13842, 10769], + [-80, 77], + [-7, 74], + [53, 51], + [49, -3], + [41, 24], + [-29, 75], + [-57, 12], + [-50, 72], + [-24, -8], + [-91, 30], + [-85, -6], + [-59, -30], + [-34, 39], + [-23, 99], + [-26, 161], + [134, 37], + [40, -12], + [43, 23], + [62, -5], + [36, 33], + [38, -9], + [-4, 64], + [-25, 36], + [-72, -46], + [-6, 58], + [-152, 5], + [-115, 69] + ], + [ + [13399, 11689], + [22, 28], + [49, -2], + [-1, 223] + ], + [ + [14544, 10338], + [-32, -13], + [-70, 7], + [-173, 38], + [-46, 95], + [-63, 5] + ], + [ + [13694, 8581], + [-177, 38], + [-70, -27], + [-111, 49], + [-97, 11], + [-10, 60], + [-22, 18] + ], + [ + [13207, 8730], + [6, 27], + [49, 15], + [22, 56], + [-15, 53], + [41, 61], + [49, 19], + [20, 33], + [-25, 57], + [-88, 4], + [-31, 83], + [-35, 60], + [8, 69], + [-56, 18], + [20, 46], + [-47, 8], + [-28, 69], + [116, 50], + [30, -20], + [14, 71], + [-40, 47], + [84, 88], + [34, -51], + [99, 66], + [40, -20], + [89, 35], + [82, -31], + [41, 37], + [45, -10], + [47, 37], + [12, 32] + ], + [ + [13790, 9739], + [47, -27], + [60, 51], + [68, 35], + [52, -27], + [111, 7], + [0, 21], + [77, 13], + [80, 107], + [61, 14], + [65, -45], + [11, -156], + [111, 3], + [30, -29], + [69, 0] + ], + [ + [12441, 12649], + [-23, -47], + [-89, -40], + [6, -60], + [-95, -9], + [-14, -17], + [44, -127], + [-96, -19], + [-65, -60], + [-70, 4], + [13, -36], + [-22, -115] + ], + [ + [11554, 13463], + [113, -58], + [113, -97], + [126, -39], + [92, 7], + [159, 40], + [117, 70], + [146, 32], + [121, -18] + ], + [ + [13633, 10078], + [-56, -27], + [-157, 15], + [-61, 27], + [-167, 7], + [23, 94], + [-23, 67], + [-54, 86], + [-42, 43], + [9, 30] + ], + [ + [13105, 10420], + [26, -3], + [89, 114], + [19, 72], + [40, 62], + [55, -45], + [95, -10], + [24, -20], + [59, 13], + [71, 81], + [68, 24], + [88, -11], + [58, 12], + [3, 38], + [42, 22] + ], + [ + [14160, 10470], + [-27, -28], + [-73, 12], + [-19, -36], + [-62, 26], + [-123, -78], + [-48, -9], + [-74, -39], + [-27, -37], + [13, -71], + [-65, 16], + [-9, -115], + [-13, -33] + ], + [ + [13105, 10420], + [-59, 33], + [-48, 60], + [-65, -24], + [-77, 3], + [-20, 73], + [17, 60], + [-22, 44], + [-4, 72], + [-45, 14], + [-23, 132], + [9, 125], + [35, -41], + [49, 17], + [2, 46], + [-11, 158] + ], + [ + [12843, 11192], + [140, 47], + [59, 47], + [41, -5], + [13, 53], + [117, 0], + [-1, 52], + [56, 14], + [-54, 135], + [18, 31], + [-34, 29], + [98, 69], + [71, 4], + [32, 21] + ], + [ + [13790, 9739], + [20, 24], + [4, 72], + [-19, 189], + [-96, 19], + [-1, 37], + [-65, -2] + ], + [ + [13207, 8730], + [-52, 25], + [-77, -2], + [-18, -61], + [-67, 2], + [-17, -32], + [-62, -14], + [-26, -39], + [-70, 26] + ], + [ + [12512, 11263], + [226, 18], + [61, 29], + [44, -118] + ], + [ + [10978, 3535], + [-28, -53], + [-138, 86], + [19, 115], + [-5, 73], + [-32, 178], + [19, 65], + [52, 9], + [18, 39], + [-20, 88], + [-75, 1], + [-46, 18], + [29, 51], + [-12, 89], + [-24, 46], + [-37, 11], + [-79, 101], + [49, 106], + [98, 45], + [-24, 114], + [-26, -2], + [-24, 52] + ], + [ + [10692, 4767], + [70, 21], + [10, 73], + [43, 4], + [88, 254], + [69, 19] + ], + [ + [10972, 5138], + [54, -38], + [30, 3], + [-27, 101], + [38, -4], + [-13, 59], + [35, -1], + [-2, -59], + [84, 26], + [4, -46], + [77, -16], + [38, 36], + [94, 45], + [37, 38] + ], + [ + [11421, 5282], + [68, -156], + [67, -51], + [84, 6], + [54, -168], + [19, -28], + [55, 7] + ], + [ + [8315, 4200], + [-9, -28], + [36, -95], + [43, -76], + [10, -79], + [35, -43], + [85, -11], + [-42, -68] + ], + [ + [8431, 4681], + [-22, -44], + [26, -24] + ], + [ + [8435, 4613], + [-30, -46], + [23, -103], + [-16, -102], + [-61, -54], + [-4, -66], + [-20, -14] + ], + [ + [8299, 4759], + [1, -25], + [75, -75], + [56, 22] + ], + [ + [9457, 3529], + [38, 40], + [-37, 90], + [52, 19], + [64, 46], + [11, 28], + [161, 77], + [30, -85], + [28, -18], + [25, -63], + [-28, -75], + [63, -37], + [91, 0], + [83, -28], + [72, -49], + [-29, -75], + [8, -30], + [102, -165], + [66, -30] + ], + [ + [9706, 5095], + [151, 1], + [122, 32] + ], + [ + [9979, 5128], + [-81, -68], + [-19, -43], + [-7, -195], + [-38, -14], + [-19, -57], + [11, -73], + [40, -37], + [-2, -36] + ], + [ + [9864, 4605], + [-82, -24] + ], + [ + [9782, 4581], + [-30, 79], + [-48, -77], + [-87, 118], + [-37, -14], + [-35, -95], + [-47, -79], + [-32, -32], + [-57, 11], + [-165, -27], + [-8, 31], + [-43, -4], + [22, -60], + [-34, -66], + [-41, -19], + [-7, -37], + [26, -55], + [-22, -66], + [-21, -156], + [29, -91], + [-44, -77], + [6, -31] + ], + [ + [9107, 3834], + [-33, -49], + [-4, -46] + ], + [ + [8435, 4613], + [50, 41], + [-3, -69], + [87, -52], + [14, -30], + [-6, -92], + [27, -26], + [17, -79], + [57, 15], + [1, -45], + [53, 34], + [27, 108], + [-7, 107], + [36, 43], + [-41, 33], + [-44, 78], + [4, 49], + [-30, 103], + [19, 44] + ], + [ + [8696, 4875], + [60, 87], + [11, 104], + [-62, 5], + [-93, 42], + [-40, -18] + ], + [ + [8418, 5520], + [240, -1], + [14, 25], + [71, 4], + [46, -31] + ], + [ + [8789, 5517], + [35, -59], + [8, -125], + [0, -204], + [49, -3], + [-3, -45], + [118, 25], + [47, -48], + [90, 38] + ], + [ + [9133, 5096], + [-14, -66], + [-33, -33], + [-5, -81], + [13, -46], + [-6, -65], + [119, -48], + [108, 42], + [27, -1], + [46, 67], + [30, 10], + [18, -47], + [52, 48], + [51, -22], + [44, 28], + [25, 85], + [97, 84], + [1, 44] + ], + [ + [10427, 8361], + [-7, -13], + [52, -171], + [-1, -76], + [-13, -66], + [13, -164], + [-3, -155], + [-52, -77], + [-15, -109], + [53, -56], + [33, -182], + [-22, -23] + ], + [ + [10465, 7269], + [-86, 1], + [-78, 19], + [-10, -39], + [18, -98], + [66, -61], + [-30, -34], + [-8, -160], + [-61, 9], + [-144, 56] + ], + [ + [10132, 6962], + [-9, 19], + [-103, 20], + [-54, -17], + [-24, 22], + [-56, -10], + [-51, 62], + [-63, -1] + ], + [ + [9772, 7057], + [30, 84], + [-34, 20], + [-71, 96], + [-14, 49], + [-40, 64], + [-81, -114], + [-85, 1], + [-125, 35], + [-59, 58], + [-48, -22], + [-36, 39], + [-50, -3], + [-32, -30], + [-68, 24], + [-96, 2], + [-12, 24], + [-62, 18], + [-70, -3], + [-69, 44], + [-91, -12], + [-81, 34], + [-4, 29], + [-123, 41], + [-44, 57], + [-43, 2] + ], + [ + [9298, 8233], + [-58, -114], + [-24, -76], + [21, -32], + [-17, -65], + [33, -86], + [71, -7], + [18, -78], + [72, -44], + [45, 27], + [91, 12], + [-48, 57], + [48, 59], + [45, 135], + [-28, 127], + [-27, 27], + [-4, 69] + ], + [ + [9300, 5936], + [-11, -35], + [-85, -15], + [-35, -86], + [-51, 53], + [-46, 2], + [10, -78], + [-40, -62], + [-51, -39], + [-143, 21], + [-87, -130], + [28, -50] + ], + [ + [8197, 6600], + [51, -36], + [70, -85], + [109, -12], + [-23, -72], + [51, -22], + [41, -69], + [69, 78], + [54, -2], + [-11, 42], + [56, 39], + [42, -11], + [95, -61], + [24, 80], + [55, -41], + [73, -4], + [46, -55] + ], + [ + [8999, 6369], + [69, -125], + [54, -4], + [25, -33], + [74, -177], + [79, -94] + ], + [ + [9133, 5096], + [36, 19], + [-18, 120], + [92, -19], + [24, 22], + [-2, 109], + [95, -5], + [82, 16], + [44, -68], + [37, 2], + [3, -57], + [107, 5], + [43, -51], + [-33, -85], + [63, -9] + ], + [ + [9658, 5827], + [2, 34], + [112, 5], + [34, 23], + [122, 246] + ], + [ + [9928, 6135], + [72, -31], + [10, 32], + [178, -81], + [43, 16], + [33, 81], + [46, -34], + [-10, -23], + [145, -61], + [24, 12], + [53, -98], + [24, -26], + [64, -118], + [0, -41], + [77, -15], + [38, -74] + ], + [ + [10725, 5674], + [15, -187], + [-22, -208], + [76, -43] + ], + [ + [10794, 5236], + [-45, -44], + [-152, -13], + [4, -70], + [-71, -41], + [-31, -35], + [-50, 45], + [-144, 55] + ], + [ + [10305, 5133], + [6, 94], + [49, 23], + [31, 115], + [-27, 47], + [-97, 82], + [-1, 52], + [-69, 62], + [-164, -15], + [24, -115], + [-157, 33], + [-64, -24], + [-25, 21], + [-13, 103], + [-37, 23], + [-27, 87], + [-74, 15], + [-2, 91] + ], + [ + [10794, 5236], + [64, -44], + [31, -50], + [83, -4] + ], + [ + [10692, 4767], + [-61, 11], + [3, -41], + [-119, 16], + [-44, -20], + [-22, -41], + [-67, 6], + [-31, 33], + [-62, -50], + [44, -22], + [17, -51], + [-102, -59], + [-91, 2], + [-50, 58], + [-63, -47], + [-167, -9], + [-13, 52] + ], + [ + [9979, 5128], + [80, 4], + [53, -15], + [34, 23], + [71, 10], + [42, -52], + [46, 35] + ], + [ + [8431, 4681], + [7, 36], + [55, 69], + [48, 18], + [59, 71], + [70, 40], + [26, -40] + ], + [ + [9928, 6135], + [-56, 61], + [24, 51], + [-11, 60], + [25, 133], + [-10, 10], + [84, 114], + [36, 20], + [85, 5], + [62, 40], + [16, 57], + [-60, -3], + [-66, 55], + [9, 118], + [66, 106] + ], + [ + [10465, 7269], + [39, -22], + [9, -35], + [41, -33], + [-4, -37], + [111, -50], + [38, -82], + [47, -1], + [26, 21], + [183, 5], + [58, 25], + [71, -24], + [12, -42], + [55, -1] + ], + [ + [11151, 6993], + [-22, -51], + [-28, 3], + [-14, -72], + [-49, -26], + [-34, -58], + [3, -47], + [39, -41], + [96, -44], + [42, -52], + [5, -45], + [-26, -127], + [-49, 5], + [-6, 41], + [-58, 52], + [-86, 16], + [-42, 65], + [-46, -42], + [-36, -108], + [20, -43], + [26, -173], + [-16, -93], + [41, -226], + [-17, -79], + [69, 30], + [39, -1], + [11, -62], + [78, -4], + [-9, -46], + [-81, -46], + [-91, 11], + [-122, -13], + [-63, -43] + ], + [ + [9772, 7057], + [-23, -47], + [-79, 55], + [-81, -1], + [-56, 22], + [0, -97], + [-128, -24], + [8, -86], + [-29, -113], + [-35, -76], + [-15, -92], + [17, -42], + [-92, 21], + [-43, -8], + [-99, -80], + [-61, 1], + [-57, -121] + ], + [ + [9107, 3834], + [34, 30], + [84, 20], + [40, -35], + [63, -1], + [103, -27], + [48, 43], + [29, -4], + [44, 43], + [92, -10], + [10, 102], + [-117, 53], + [-22, 49], + [87, 0], + [25, 85], + [35, 47], + [12, 46], + [53, 66], + [-13, 47], + [-7, 99], + [19, 45], + [56, 49] + ], + [ + [9658, 5827], + [-101, -2], + [-4, 28], + [-135, 58], + [-44, -2], + [-74, 27] + ], + [ + [1595, 16432], + [-52, -126], + [-90, -70], + [-41, -57], + [23, -60], + [-53, -99], + [72, -43], + [19, 70], + [74, -26], + [19, 47], + [109, -50], + [-13, -22], + [-15, -116], + [22, -143], + [61, -31] + ], + [ + [1730, 15706], + [-6, -37], + [-103, 74], + [-25, -40], + [-47, 20], + [22, 44], + [-60, 0], + [-122, -34], + [-77, -32], + [-47, -46], + [-40, -16], + [-56, 28], + [-59, -45] + ], + [ + [1110, 15622], + [-63, 2], + [-47, -14], + [-69, 55], + [20, 30], + [-55, 39] + ], + [ + [896, 15734], + [143, 5], + [13, 53], + [-19, 53], + [0, 86], + [-38, 51], + [41, 244], + [25, 41], + [-54, 41], + [22, 41], + [60, 6], + [-5, 59], + [91, 127] + ], + [ + [1175, 16541], + [63, -62], + [37, 25], + [-51, 46] + ], + [ + [1224, 16550], + [27, 37], + [76, -62], + [216, -37], + [52, -56] + ], + [ + [944, 15367], + [-68, -77], + [10, -82], + [28, -11], + [-23, -54], + [-41, -41], + [3, -70], + [-54, -2], + [-214, -172], + [-22, -34], + [-67, 105], + [-19, 126], + [-50, 43], + [-121, -6], + [-104, -33] + ], + [ + [202, 15059], + [-9, 38], + [21, 38], + [7, 97], + [-18, 83], + [3, 95], + [125, 34], + [4, 35], + [101, -9], + [75, 27], + [81, -8], + [92, 14], + [49, 71], + [-6, 47], + [-28, 56], + [78, 8], + [20, 22], + [82, -19], + [17, 46] + ], + [ + [1110, 15622], + [-46, -72], + [14, -23], + [90, -6], + [-160, -83], + [-64, -71] + ], + [ + [1803, 13017], + [-60, 16], + [-24, -34], + [-53, 3], + [-19, 112] + ], + [ + [1647, 13114], + [-28, 44], + [-62, -4], + [-22, 30], + [-48, 2], + [-62, 43], + [46, 27], + [-89, 55], + [-20, 41], + [-56, 47], + [-13, 66], + [52, -11], + [59, 112], + [0, 28], + [-132, 176], + [-57, 31], + [-39, -84], + [-42, 2], + [-38, 39], + [15, 45], + [-18, 49], + [-29, 23], + [31, 36] + ], + [ + [1095, 13911], + [35, 5], + [115, 89], + [31, -20], + [44, 24], + [47, -15], + [28, 66], + [92, 27], + [12, 103], + [24, 24] + ], + [ + [1523, 14214], + [23, 69] + ], + [ + [1546, 14283], + [151, -45], + [70, 63], + [73, 26], + [26, 77], + [54, 17], + [92, 4], + [42, 35] + ], + [ + [2054, 14460], + [108, -42], + [107, -13], + [58, -27], + [17, -31], + [88, -26], + [86, -5] + ], + [ + [2390, 14028], + [-30, -63], + [-56, -5], + [-12, -34], + [-93, -13], + [15, -71], + [-26, -27], + [-49, 6], + [26, -94], + [-15, -44], + [-86, -44], + [9, -39], + [-30, -76], + [-84, -87], + [-48, -15], + [-92, -5], + [-41, -72], + [-38, -10], + [15, -52], + [-37, -29], + [11, -66], + [41, -26], + [-8, -67], + [41, -78] + ], + [ + [1878, 12692], + [-43, 43], + [20, 45], + [-10, 96], + [21, 61], + [-20, 61], + [-43, 19] + ], + [ + [1595, 16432], + [130, -136], + [69, -53], + [97, -37], + [131, -78], + [110, -103], + [97, -65] + ], + [ + [2229, 15960], + [-40, -27], + [-21, -61], + [-32, 18], + [-37, -61], + [-10, -58], + [-116, 1], + [-53, 69], + [-66, 8], + [-111, -21], + [6, -80], + [-19, -42] + ], + [ + [1175, 16541], + [49, 9] + ], + [ + [2229, 15960], + [7, -5], + [309, -37], + [80, -34], + [51, -54], + [34, -88], + [-32, -107], + [-28, -51], + [-66, -83], + [-15, -40], + [-124, -39], + [-35, 12], + [-170, -45], + [-137, -48], + [-51, -57], + [-41, -189], + [-32, -77], + [8, -55], + [-57, -109], + [-37, -98], + [2, -49], + [56, -152], + [53, -68], + [50, -27] + ], + [ + [1546, 14283], + [1, 62], + [88, 121], + [-50, 66], + [-28, 12], + [-11, 127], + [-60, 2], + [71, 180], + [-77, 14], + [-66, 48], + [-21, 43], + [-40, -12], + [-61, -45] + ], + [ + [1292, 14901], + [-70, -16], + [-9, 86], + [36, 17], + [44, 71], + [1, 35], + [-40, 31], + [63, 87], + [-139, 113], + [-68, 44], + [-67, -9], + [-99, 7] + ], + [ + [1647, 13114], + [-65, -46], + [-6, -51], + [-26, -25], + [-139, -78], + [-63, 19], + [-17, 61], + [42, 37], + [-10, 126], + [-24, 11], + [-43, -79], + [-143, -130], + [-91, 54], + [-83, 0], + [-41, 33], + [-39, -108], + [6, -47], + [45, -41], + [39, -6], + [-29, -61], + [6, -39], + [-35, -12], + [-43, -62], + [-22, -104], + [12, -61], + [-17, -102] + ], + [ + [861, 12403], + [-87, -13], + [-81, 55], + [-105, 250], + [-20, 73], + [5, 67], + [-50, 80], + [-9, 71], + [33, 86], + [-35, 39], + [25, 52], + [-20, 98], + [-26, 41], + [37, 44], + [2, 33], + [-60, 102], + [-69, 8], + [-76, 82] + ], + [ + [325, 13571], + [37, 48], + [45, 92], + [16, 57], + [51, 48], + [64, -4], + [84, 98], + [119, 86], + [20, -51], + [42, 19], + [-8, -62], + [61, -21], + [78, 92], + [48, 23], + [54, -55], + [39, 23], + [20, -53] + ], + [ + [615, 14352], + [79, -46], + [6, -32], + [52, -14], + [63, 22], + [42, -109], + [124, -19], + [98, 23], + [39, 58], + [90, -5], + [175, 44], + [29, 0], + [111, -60] + ], + [ + [325, 13571], + [-59, 26], + [-66, 98], + [-13, 114], + [-25, 113], + [4, 99], + [-60, 74], + [-106, 231], + [14, 77], + [37, 43] + ], + [ + [51, 14446], + [159, 41], + [-7, -45], + [39, -86], + [53, -16], + [97, 3], + [41, -38], + [66, -13], + [82, 19], + [34, 41] + ], + [ + [615, 14352], + [-23, 38], + [112, 68], + [-30, 68], + [75, 8], + [42, -39], + [100, 25], + [50, -21], + [38, 26], + [58, 77], + [-28, 15], + [42, 81], + [-85, 9], + [12, 58], + [266, 95], + [48, 41] + ], + [ + [51, 14446], + [37, 92], + [59, 343], + [-24, 98], + [74, 62], + [5, 18] + ], + [ + [1536, 11973], + [-59, 16], + [-37, 33], + [-170, -6], + [-51, 47], + [-23, 129], + [-88, 41], + [-44, -29], + [-117, 42], + [-25, 25], + [-18, 69], + [-43, 63] + ], + [ + [5574, 12975], + [4, 96], + [-38, 4], + [-109, 41], + [-11, -29], + [-109, 39], + [0, 47], + [-81, 36], + [14, 93] + ], + [ + [5244, 13302], + [54, -15], + [53, 63], + [93, 49], + [78, -2], + [110, 45], + [103, 91], + [42, -6], + [32, 56], + [9, 180], + [84, 145], + [35, 112] + ], + [ + [5937, 14020], + [38, -9] + ], + [ + [5975, 14011], + [-10, -47], + [-37, -67], + [9, -43], + [78, -35], + [108, -72], + [-48, -45], + [84, -24], + [-12, -48], + [68, -14], + [-8, -130], + [45, -38], + [-15, -118], + [53, -32], + [-22, -60], + [68, -26], + [-5, -23] + ], + [ + [6331, 13189], + [-7, -37], + [-87, 21], + [-43, -66], + [-129, -25], + [-159, 42], + [-50, -71], + [-44, -33], + [-28, -88], + [-127, 40], + [-14, -32], + [-69, 35] + ], + [ + [5519, 12785], + [-34, 17], + [-43, -75], + [-13, -156], + [-123, 28], + [-136, 67], + [-78, 72], + [-27, -31] + ], + [ + [5065, 12707], + [-30, 22] + ], + [ + [4893, 13544], + [148, -64], + [10, -42], + [170, -90], + [23, -46] + ], + [ + [5574, 12975], + [-46, -98], + [26, -18], + [-35, -74] + ], + [ + [6553, 13121], + [-154, 28], + [-68, 40] + ], + [ + [5975, 14011], + [136, -26], + [259, -33], + [192, -78], + [122, -43], + [143, -107], + [80, -9], + [239, -95], + [100, 11], + [223, 38], + [18, 8], + [234, 40], + [18, -2] + ], + [ + [5065, 12707], + [-51, -114], + [2, -40] + ], + [ + [5016, 12553], + [-99, -52], + [5, -43], + [-53, -27], + [-94, -160], + [-32, -28], + [68, -76], + [22, -75], + [-2, -64], + [39, -43], + [21, -67], + [-73, -25], + [-32, -46], + [-109, -27], + [-44, 40], + [-70, -32], + [-40, -49], + [-56, -8], + [-81, -100], + [-17, -42], + [-62, 6], + [-57, -58], + [30, -81], + [-91, -88], + [-5, -126], + [-31, -27] + ], + [ + [5519, 12785], + [78, -84], + [57, -45], + [17, -37], + [85, -14], + [36, -26], + [-13, -94], + [14, -87], + [23, -53], + [-32, -14], + [-34, -69], + [0, -88], + [40, -7], + [1, -53], + [63, -23], + [-29, -121], + [-35, -13], + [-75, -70], + [-6, -71], + [-54, 10], + [-63, 35], + [-12, -53] + ], + [ + [5580, 11808], + [-43, 53], + [-65, -34], + [-27, 38], + [-27, 110], + [-133, 72], + [-46, 15], + [-71, 63], + [18, 40], + [-8, 41], + [-120, 65], + [18, 38], + [-47, 122], + [-13, 122] + ], + [ + [5008, 14225], + [134, 45], + [198, 23], + [162, -19], + [38, -79], + [65, -34], + [113, -23], + [81, -54], + [138, -64] + ], + [ + [5690, 10193], + [35, 75], + [10, 51], + [-24, 50], + [-26, 119], + [39, 80], + [113, 9], + [11, -58], + [55, -7], + [-3, 78], + [67, 22], + [40, -4], + [17, 35], + [-31, 37], + [-37, 94], + [-39, 29], + [-23, 46], + [-62, 48], + [68, 134], + [37, 19], + [-30, 40], + [-3, 62], + [-46, 48], + [5, 70] + ], + [ + [5863, 11270], + [64, 17], + [49, -13] + ], + [ + [5976, 11274], + [99, -73], + [53, -15], + [66, 2], + [122, 113] + ], + [ + [5976, 11274], + [26, 28], + [-22, 35], + [21, 43], + [-1, 62], + [36, 82], + [-94, 22], + [-91, -53], + [-59, 72], + [-117, 114], + [-14, 43], + [-73, 15], + [-8, 71] + ], + [ + [5863, 11270], + [-45, 26], + [-56, -14], + [-17, 37], + [-85, 19], + [-16, -65], + [-64, -49], + [12, -53], + [-38, 0], + [-27, -37], + [-65, 27], + [-53, 3], + [-29, 73], + [-59, -75], + [-45, 13], + [-32, 36], + [-36, -8], + [-65, -62], + [-14, 4], + [-45, -97], + [-15, -74], + [-93, -49], + [13, -40], + [-53, -99], + [42, -90], + [56, -61], + [-29, -30], + [38, -95], + [-64, -49], + [-113, -26], + [-65, 20], + [-12, 92], + [-33, -14], + [-73, 40], + [30, 53], + [-27, 45], + [-51, 49], + [-18, -45], + [-84, -10], + [-28, -24], + [-5, -58], + [-57, -8] + ], + [ + [13978, 6295], + [-48, 1], + [-30, -60], + [-62, 17], + [-18, 44], + [-36, 27], + [-56, 95], + [-36, 39], + [-124, -4], + [-30, -102], + [-44, 13], + [-27, -38], + [-52, 27], + [-59, -27], + [-64, 6], + [9, -47], + [-50, -28], + [-93, -7], + [9, -48], + [-62, -30], + [-17, -63], + [54, -126], + [43, -30], + [74, -24], + [39, 43], + [88, -48], + [23, -92], + [-48, -45] + ], + [ + [13361, 5788], + [-70, -19], + [-64, 39], + [-35, 48], + [-89, 18], + [-71, 35], + [-34, -7], + [-91, -142], + [-37, -21], + [40, -97], + [5, -54], + [-81, -62], + [-8, -58], + [-30, -94] + ], + [ + [12723, 5339], + [-35, 4], + [-96, 65], + [-24, -7], + [-84, -84], + [-117, 83], + [-17, -14], + [-58, 41], + [16, 76], + [-93, 65], + [114, 74], + [29, -2], + [9, 87], + [26, -5], + [32, 94], + [-13, 111], + [-52, 61], + [-33, -34], + [-81, -29], + [-20, -28], + [-36, 55], + [-81, 19], + [-6, 78], + [-48, 33], + [68, 152], + [49, 10], + [24, 33], + [-112, -4], + [-130, 59], + [-70, -25], + [-120, 8] + ], + [ + [11764, 6315], + [21, 15], + [-4, 64], + [50, -13], + [57, 31], + [-37, 43], + [-28, 83], + [-48, 5], + [15, 58], + [-48, 12], + [-35, 47], + [-42, -3], + [-77, 30], + [-65, 80], + [-25, 155] + ], + [ + [11498, 6922], + [27, 27], + [73, -11], + [22, -48], + [91, -1], + [55, 51], + [73, 4], + [84, 97], + [13, 89], + [54, 21], + [75, -17], + [134, -55], + [39, 19], + [45, -82], + [51, -45], + [87, 14], + [38, 33], + [48, 68] + ], + [ + [12507, 7086], + [69, 15], + [15, 39], + [67, 25], + [21, 43], + [87, -34], + [68, 18], + [76, -39], + [71, 14], + [13, 56], + [91, 23], + [29, 75], + [57, -23] + ], + [ + [13171, 7298], + [49, 0], + [53, 24], + [29, -75], + [154, 59], + [56, 52], + [61, -31], + [87, 52] + ], + [ + [13660, 7379], + [62, -24] + ], + [ + [13361, 5788], + [37, -28], + [25, -79], + [46, 7], + [15, -98], + [38, -41], + [148, -43] + ], + [ + [13670, 5506], + [-11, -101], + [-85, -47], + [-85, 21], + [-38, -63], + [-79, 31], + [-30, -18], + [13, -132], + [60, -80], + [19, -47], + [76, -116], + [-19, -87], + [68, -104], + [11, -43] + ], + [ + [11764, 6315], + [-39, -49], + [-51, -9], + [-47, -32], + [4, -37], + [-48, -33], + [-109, 49], + [-28, -29], + [23, -99], + [-22, -13], + [-6, -73], + [-27, -30], + [-17, -113], + [-29, -41], + [20, -60], + [49, 11], + [49, -26], + [-3, -116], + [-16, -122], + [-32, 23], + [-27, -35], + [20, -36], + [22, -121], + [-29, -42] + ], + [ + [11151, 6993], + [67, 6], + [37, -44], + [47, 1], + [16, 32], + [-10, 45], + [59, 12], + [23, 25] + ], + [ + [11390, 7070], + [87, -72], + [21, -76] + ], + [ + [13171, 7298], + [11, 86], + [-25, 23], + [-21, 85], + [87, 51], + [61, 102], + [-38, 122], + [-4, 55] + ], + [ + [13242, 7822], + [-18, 39], + [33, 25], + [111, -6], + [33, 39], + [67, -64], + [61, -40], + [82, -32], + [69, -44], + [-11, -29], + [-71, -63], + [50, -66], + [2, -132], + [10, -70] + ], + [ + [13242, 7822], + [-123, 2], + [34, 43], + [-18, 41], + [-38, 32], + [-31, 108], + [9, 55], + [-67, 89], + [-33, -18], + [-39, 76], + [-32, -2], + [-69, 171] + ], + [ + [12268, 8457], + [50, -64], + [-39, -58], + [-6, -114], + [89, -36], + [35, 0], + [-12, -106], + [64, -119], + [-3, -92], + [-56, -66], + [16, -82], + [-64, 5], + [-22, -21], + [40, -230], + [-6, -95], + [85, -44], + [30, -57], + [41, 16], + [40, -17], + [-21, -59], + [10, -40], + [-44, -41], + [12, -51] + ], + [ + [11390, 7070], + [-17, 52], + [-48, -8], + [-34, 30], + [-29, 74], + [28, 58], + [4, 80], + [53, 92], + [83, 34], + [22, 125], + [39, 54], + [0, 115], + [-53, 78], + [-34, -10], + [-61, 129], + [-40, 40], + [-40, 76], + [-45, 24], + [-61, 180], + [56, 65], + [-21, 93], + [13, 105], + [-24, 46], + [-70, 22], + [-8, 23] + ], + [ + [14874, 5116], + [-18, 29], + [-102, -21], + [-61, 17], + [-38, 49], + [-45, -8], + [-134, -55], + [-67, -5], + [-74, 46], + [-55, -20], + [-126, 70], + [-3, 21], + [-93, 38], + [-8, 29], + [-85, -13], + [-53, -41], + [-68, 52], + [25, 68], + [-1, 47], + [-93, 79], + [-49, 18], + [-56, -10] + ] + ], + "transform": { + "scale": [0.0002541612516265452, 0.00017967884493880738], + "translate": [22.3571305, 41.2353299990001] + }, + "objects": { + "bulgaria": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5, 6]], + "type": "Polygon", + "properties": { + "ISO": "BG-SLV20", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "67338", + "NAME_1": "SLV", + "TYPE_1": "Област", + "ID_2": "67338", + "NAME_2": "Сливен", + "TYPE_2": "Община" + } + }, + { + "arcs": [[7, 8, 9, -4]], + "type": "Polygon", + "properties": { + "ISO": "BG-SLV24", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "67338", + "NAME_1": "SLV", + "TYPE_1": "Област", + "ID_2": "72165", + "NAME_2": "Твърдица", + "TYPE_2": "Община" + } + }, + { + "arcs": [[10, -7, 11, 12, 13, 14]], + "type": "Polygon", + "properties": { + "ISO": "BG-SLV11", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "67338", + "NAME_1": "SLV", + "TYPE_1": "Област", + "ID_2": "39030", + "NAME_2": "Котел", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-3, 15, 16, 17, 18, -8]], + "type": "Polygon", + "properties": { + "ISO": "BG-SLV16", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "67338", + "NAME_1": "SLV", + "TYPE_1": "Област", + "ID_2": "51809", + "NAME_2": "Нова Загора", + "TYPE_2": "Община" + } + }, + { + "arcs": [[19, 20, 21, 22, 23, 24]], + "type": "Polygon", + "properties": { + "ISO": "BG-RAZ16", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "61710", + "NAME_1": "RAZ", + "TYPE_1": "Област", + "ID_2": "40422", + "NAME_2": "Кубрат", + "TYPE_2": "Община" + } + }, + { + "arcs": [[25, 26, 27, 28, 29]], + "type": "Polygon", + "properties": { + "ISO": "BG-RAZ36", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "61710", + "NAME_1": "RAZ", + "TYPE_1": "Област", + "ID_2": "77308", + "NAME_2": "Цар Калоян", + "TYPE_2": "Община" + } + }, + { + "arcs": [[30, 31, 32, 33]], + "type": "Polygon", + "properties": { + "ISO": "BG-RAZ17", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "61710", + "NAME_1": "RAZ", + "TYPE_1": "Област", + "ID_2": "44166", + "NAME_2": "Лозница", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-30, 34, -20, 35, 36, 37, -34, 38, 39]], + "type": "Polygon", + "properties": { + "ISO": "BG-RAZ26", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "61710", + "NAME_1": "RAZ", + "TYPE_1": "Област", + "ID_2": "61710", + "NAME_2": "Разград", + "TYPE_2": "Община" + } + }, + { + "arcs": [[40, 41, -37, 42, 43, 44]], + "type": "Polygon", + "properties": { + "ISO": "BG-RAZ14", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "61710", + "NAME_1": "RAZ", + "TYPE_1": "Област", + "ID_2": "32874", + "NAME_2": "Исперих", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-43, -36, -25, 45, 46]], + "type": "Polygon", + "properties": { + "ISO": "BG-RAZ11", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "61710", + "NAME_1": "RAZ", + "TYPE_1": "Област", + "ID_2": "30065", + "NAME_2": "Завет", + "TYPE_2": "Община" + } + }, + { + "arcs": [[47, -31, -38, -42, 48, 49]], + "type": "Polygon", + "properties": { + "ISO": "BG-RAZ29", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "61710", + "NAME_1": "RAZ", + "TYPE_1": "Област", + "ID_2": "65276", + "NAME_2": "Самуил", + "TYPE_2": "Община" + } + }, + { + "arcs": [[50, 51, 52, 53, 54, 55]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO16", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "23409", + "NAME_2": "Драгоман", + "TYPE_2": "Община" + } + }, + { + "arcs": [[56, 57, 58, 59, 60, 61, 62, 63]], + "type": "Polygon", + "properties": { + "ISO": "BG-SOF46", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SOF", + "TYPE_1": "Област", + "ID_2": "68134", + "NAME_2": "Столична", + "TYPE_2": "Община" + } + }, + { + "arcs": [[64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, -62]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO39", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "65231", + "NAME_2": "Самоков", + "TYPE_2": "Община" + } + }, + { + "arcs": [[76, -58, 77, 78, 79, 80, 81]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO43", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "65869", + "NAME_2": "Своге", + "TYPE_2": "Община" + } + }, + { + "arcs": [[82, 83, 84, 85]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO58", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "80323", + "NAME_2": "Челопеч", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-60, 86, 87, 88, 89]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO17", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "27303", + "NAME_2": "Елин Пелин", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-67, 90]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO59", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "22006", + "NAME_2": "Долна баня", + "TYPE_2": "Община" + } + }, + { + "arcs": [[91, 92, 93, 94, 95, 96]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO24", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "38558", + "NAME_2": "Копривщица", + "TYPE_2": "Община" + } + }, + { + "arcs": [[97, -68, -91, -66, 98, 99, 100, 101]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO25", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "38902", + "NAME_2": "Костенец", + "TYPE_2": "Община" + } + }, + { + "arcs": [[102, 103, 104, 105, -64]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO06", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "5027", + "NAME_2": "Божурище", + "TYPE_2": "Община" + } + }, + { + "arcs": [[106, -97, 107, 108]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO54", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "504", + "NAME_2": "Антон", + "TYPE_2": "Община" + } + }, + { + "arcs": [[109, 110, -86, 111, 112, 113, 114]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO18", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "27632", + "NAME_2": "Етрополе", + "TYPE_2": "Община" + } + }, + { + "arcs": [[115, 116, 117, 118, -84]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO57", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "80011", + "NAME_2": "Чавдар", + "TYPE_2": "Община" + } + }, + { + "arcs": [[119, 120, 121, -115, 122]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO34", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "58030", + "NAME_2": "Правец", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-79, 123, -53, 124, 125, 126]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO09", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "15309", + "NAME_2": "Годеч", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-65, -61, -90, 127, 128, 129, -99]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO20", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "32901", + "NAME_2": "Ихтиман", + "TYPE_2": "Община" + } + }, + { + "arcs": [[[-116, -83, -111, 130, 131, 132]], [[-118, 133, 134]]], + "type": "MultiPolygon", + "properties": { + "ISO": "BG-SFO47", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "31044", + "NAME_2": "Златица", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-96, 135, -132, 136, -108]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO55", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "56407", + "NAME_2": "Пирдоп", + "TYPE_2": "Община" + } + }, + { + "arcs": [[137, -113, 138, -88]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO10", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "16314", + "NAME_2": "Горна Малина", + "TYPE_2": "Община" + } + }, + { + "arcs": [[139, -55, 140, -105]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO45", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "67372", + "NAME_2": "Сливница", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-123, -114, -138, -87, -59, -77, 141, 142]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO07", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "5815", + "NAME_2": "Ботевград", + "TYPE_2": "Община" + } + }, + { + "arcs": [[143, -128, -89, -139, -112, -85, -119, -135]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO56", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "48324", + "NAME_2": "Мирково", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-57, -106, -141, -54, -124, -78]], + "type": "Polygon", + "properties": { + "ISO": "BG-SFO26", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68134", + "NAME_1": "SFO", + "TYPE_1": "Област", + "ID_2": "38978", + "NAME_2": "Костинброд", + "TYPE_2": "Община" + } + }, + { + "arcs": [[144, 145, 146, 147]], + "type": "Polygon", + "properties": { + "ISO": "BG-SHU23", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "83510", + "NAME_1": "SHU", + "TYPE_1": "Област", + "ID_2": "58222", + "NAME_2": "Велики Преслав", + "TYPE_2": "Община" + } + }, + { + "arcs": [[148, 149, 150, -49, -41, 151, 152, 153]], + "type": "Polygon", + "properties": { + "ISO": "BG-SHU18", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "83510", + "NAME_1": "SHU", + "TYPE_1": "Област", + "ID_2": "36079", + "NAME_2": "Каолиново", + "TYPE_2": "Община" + } + }, + { + "arcs": [[154, 155, -148, 156, 157, 158, 159]], + "type": "Polygon", + "properties": { + "ISO": "BG-SHU30", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "83510", + "NAME_1": "SHU", + "TYPE_1": "Област", + "ID_2": "83510", + "NAME_2": "Шумен", + "TYPE_2": "Община" + } + }, + { + "arcs": [[160, -154, 161, 162, 163]], + "type": "Polygon", + "properties": { + "ISO": "BG-SHU21", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "83510", + "NAME_1": "SHU", + "TYPE_1": "Област", + "ID_2": "51651", + "NAME_2": "Никола Козлево", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-50, -151, 164]], + "type": "Polygon", + "properties": { + "ISO": "BG-SHU07", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "83510", + "NAME_1": "SHU", + "TYPE_1": "Област", + "ID_2": "10642", + "NAME_2": "Венец", + "TYPE_2": "Община" + } + }, + { + "arcs": [[165, 166, 167, -145, -156, 168, 169]], + "type": "Polygon", + "properties": { + "ISO": "BG-SHU25", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "83510", + "NAME_1": "SHU", + "TYPE_1": "Област", + "ID_2": "67708", + "NAME_2": "Смядово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[170, 171, -159, 172, -149, -161, 173]], + "type": "Polygon", + "properties": { + "ISO": "BG-SHU22", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "83510", + "NAME_1": "SHU", + "TYPE_1": "Област", + "ID_2": "52009", + "NAME_2": "Нови пазар", + "TYPE_2": "Община" + } + }, + { + "arcs": [[174, 175, -160, -172]], + "type": "Polygon", + "properties": { + "ISO": "BG-SHU19", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "83510", + "NAME_1": "SHU", + "TYPE_1": "Област", + "ID_2": "36587", + "NAME_2": "Каспичан", + "TYPE_2": "Община" + } + }, + { + "arcs": [[176, -146, -168, 177, -14, 178]], + "type": "Polygon", + "properties": { + "ISO": "BG-SHU10", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "83510", + "NAME_1": "SHU", + "TYPE_1": "Област", + "ID_2": "12766", + "NAME_2": "Върбица", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-165, -150, -173, -158, 179, -32, -48]], + "type": "Polygon", + "properties": { + "ISO": "BG-SHU11", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "83510", + "NAME_1": "SHU", + "TYPE_1": "Област", + "ID_2": "14516", + "NAME_2": "Хитрино", + "TYPE_2": "Община" + } + }, + { + "arcs": [[180, 181, 182, 183]], + "type": "Polygon", + "properties": { + "ISO": "BG-PER22", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55871", + "NAME_1": "PER", + "TYPE_1": "Област", + "ID_2": "37513", + "NAME_2": "Ковачевци", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-76, 184, -182, 185, -103, -63]], + "type": "Polygon", + "properties": { + "ISO": "BG-PER32", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55871", + "NAME_1": "PER", + "TYPE_1": "Област", + "ID_2": "55871", + "NAME_2": "Перник", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-104, -186, -181, 186, 187, -56, -140]], + "type": "Polygon", + "properties": { + "ISO": "BG-PER08", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55871", + "NAME_1": "PER", + "TYPE_1": "Област", + "ID_2": "6286", + "NAME_2": "Брезник", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-184, 188, 189, 190, 191, -187]], + "type": "Polygon", + "properties": { + "ISO": "BG-PER19", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55871", + "NAME_1": "PER", + "TYPE_1": "Област", + "ID_2": "30778", + "NAME_2": "Земен", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-188, -192, 192, 193, -51]], + "type": "Polygon", + "properties": { + "ISO": "BG-PER51", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55871", + "NAME_1": "PER", + "TYPE_1": "Област", + "ID_2": "73273", + "NAME_2": "Трън", + "TYPE_2": "Община" + } + }, + { + "arcs": [[194, 195, 196, -189, -183, -185, -75]], + "type": "Polygon", + "properties": { + "ISO": "BG-PER36", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55871", + "NAME_1": "PER", + "TYPE_1": "Област", + "ID_2": "61577", + "NAME_2": "Радомир", + "TYPE_2": "Община" + } + }, + { + "arcs": [[197, 198, 199, 200, 201, 202]], + "type": "Polygon", + "properties": { + "ISO": "BG-SML16", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "67653", + "NAME_1": "SML", + "TYPE_1": "Област", + "ID_2": "46045", + "NAME_2": "Мадан", + "TYPE_2": "Община" + } + }, + { + "arcs": [[203, 204, 205, 206, 207]], + "type": "Polygon", + "properties": { + "ISO": "BG-SML10", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "67653", + "NAME_1": "SML", + "TYPE_1": "Област", + "ID_2": "23025", + "NAME_2": "Доспат", + "TYPE_2": "Община" + } + }, + { + "arcs": [[208, -198, 209, 210]], + "type": "Polygon", + "properties": { + "ISO": "BG-SML27", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "67653", + "NAME_1": "SML", + "TYPE_1": "Област", + "ID_2": "63207", + "NAME_2": "Рудозем", + "TYPE_2": "Община" + } + }, + { + "arcs": [[211, 212, 213, 214, 215]], + "type": "Polygon", + "properties": { + "ISO": "BG-SML38", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "67653", + "NAME_1": "SML", + "TYPE_1": "Област", + "ID_2": "80371", + "NAME_2": "Чепеларе", + "TYPE_2": "Община" + } + }, + { + "arcs": [[216, -207, 217, 218]], + "type": "Polygon", + "properties": { + "ISO": "BG-SML05", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "67653", + "NAME_1": "SML", + "TYPE_1": "Област", + "ID_2": "5462", + "NAME_2": "Борино", + "TYPE_2": "Община" + } + }, + { + "arcs": [[219, 220, -200, 221, 222, 223]], + "type": "Polygon", + "properties": { + "ISO": "BG-SML02", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "67653", + "NAME_1": "SML", + "TYPE_1": "Област", + "ID_2": "44402", + "NAME_2": "Баните", + "TYPE_2": "Община" + } + }, + { + "arcs": [[224, 225, -210, -203, 226, 227]], + "type": "Polygon", + "properties": { + "ISO": "BG-SML11", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "67653", + "NAME_1": "SML", + "TYPE_1": "Област", + "ID_2": "31111", + "NAME_2": "Златоград", + "TYPE_2": "Община" + } + }, + { + "arcs": [[228, -227, -202, 229]], + "type": "Polygon", + "properties": { + "ISO": "BG-SML18", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "67653", + "NAME_1": "SML", + "TYPE_1": "Област", + "ID_2": "51319", + "NAME_2": "Неделино", + "TYPE_2": "Община" + } + }, + { + "arcs": [[230, 231, -219, 232, 233, 234, 235, -212]], + "type": "Polygon", + "properties": { + "ISO": "BG-SML09", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "67653", + "NAME_1": "SML", + "TYPE_1": "Област", + "ID_2": "20465", + "NAME_2": "Девин", + "TYPE_2": "Община" + } + }, + { + "arcs": [[236, -222, -199, -209, 237, -231, -216]], + "type": "Polygon", + "properties": { + "ISO": "BG-SML31", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "67653", + "NAME_1": "SML", + "TYPE_1": "Област", + "ID_2": "67653", + "NAME_2": "Смолян", + "TYPE_2": "Община" + } + }, + { + "arcs": [[238, 239, 240, 241, 242]], + "type": "Polygon", + "properties": { + "ISO": "BG-JAM07", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "87374", + "NAME_1": "JAM", + "TYPE_1": "Област", + "ID_2": "27382", + "NAME_2": "Елхово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[243, -241, 244, 245, -16, -2], [246]], + "type": "Polygon", + "properties": { + "ISO": "BG-JAM25", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "87374", + "NAME_1": "JAM", + "TYPE_1": "Област", + "ID_2": "87374", + "NAME_2": "Тунджа", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-247]], + "type": "Polygon", + "properties": { + "ISO": "BG-JAM26", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "87374", + "NAME_1": "JAM", + "TYPE_1": "Област", + "ID_2": "87374", + "NAME_2": "Ямбол", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-242, -244, -1, -11, 247, 248, 249, 250]], + "type": "Polygon", + "properties": { + "ISO": "BG-JAM22", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "87374", + "NAME_1": "JAM", + "TYPE_1": "Област", + "ID_2": "69660", + "NAME_2": "Стралджа", + "TYPE_2": "Община" + } + }, + { + "arcs": [[251, -243, -251, 252]], + "type": "Polygon", + "properties": { + "ISO": "BG-JAM03", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "87374", + "NAME_1": "JAM", + "TYPE_1": "Област", + "ID_2": "5284", + "NAME_2": "Болярово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[253, -80, 254, 255]], + "type": "Polygon", + "properties": { + "ISO": "BG-MON12", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "48489", + "NAME_1": "MON", + "TYPE_1": "Област", + "ID_2": "12961", + "NAME_2": "Вършец", + "TYPE_2": "Община" + } + }, + { + "arcs": [[256, 257, 258, 259, 260, 261, 262]], + "type": "Polygon", + "properties": { + "ISO": "BG-MON24", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "48489", + "NAME_1": "MON", + "TYPE_1": "Област", + "ID_2": "44238", + "NAME_2": "Лом", + "TYPE_2": "Община" + } + }, + { + "arcs": [[263, 264, 265, 266, 267]], + "type": "Polygon", + "properties": { + "ISO": "BG-MON36", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "48489", + "NAME_1": "MON", + "TYPE_1": "Област", + "ID_2": "81390", + "NAME_2": "Чипровци", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-259, 268, 269, 270]], + "type": "Polygon", + "properties": { + "ISO": "BG-MON26", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "48489", + "NAME_1": "MON", + "TYPE_1": "Област", + "ID_2": "47593", + "NAME_2": "Медковец", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-260, -271, 271, 272]], + "type": "Polygon", + "properties": { + "ISO": "BG-MON07", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "48489", + "NAME_1": "MON", + "TYPE_1": "Област", + "ID_2": "6570", + "NAME_2": "Брусарци", + "TYPE_2": "Община" + } + }, + { + "arcs": [[273, 274, -269, -258, 275]], + "type": "Polygon", + "properties": { + "ISO": "BG-MON38", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "48489", + "NAME_1": "MON", + "TYPE_1": "Област", + "ID_2": "87299", + "NAME_2": "Якимово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[276, -276, -257, 277, 278, 279]], + "type": "Polygon", + "properties": { + "ISO": "BG-MON11", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "48489", + "NAME_1": "MON", + "TYPE_1": "Област", + "ID_2": "12543", + "NAME_2": "Вълчедръм", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-126, 280, -268, 281, 282]], + "type": "Polygon", + "properties": { + "ISO": "BG-MON14", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "48489", + "NAME_1": "MON", + "TYPE_1": "Област", + "ID_2": "14773", + "NAME_2": "Георги Дамяново", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-275, 283, 284, 285, -282, -267, 286, -272, -270]], + "type": "Polygon", + "properties": { + "ISO": "BG-MON29", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "48489", + "NAME_1": "MON", + "TYPE_1": "Област", + "ID_2": "48489", + "NAME_2": "Монтана", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-127, -283, -286, 287, -255]], + "type": "Polygon", + "properties": { + "ISO": "BG-MON02", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "48489", + "NAME_1": "MON", + "TYPE_1": "Област", + "ID_2": "3928", + "NAME_2": "Берковица", + "TYPE_2": "Община" + } + }, + { + "arcs": [[288, 289, -284, -274, -277]], + "type": "Polygon", + "properties": { + "ISO": "BG-MON04", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "48489", + "NAME_1": "MON", + "TYPE_1": "Област", + "ID_2": "5236", + "NAME_2": "Бойчиновци", + "TYPE_2": "Община" + } + }, + { + "arcs": [[290, 291, -234, 292, 293, 294, 295, 296]], + "type": "Polygon", + "properties": { + "ISO": "BG-PAZ06", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55155", + "NAME_1": "PAZ", + "TYPE_1": "Област", + "ID_2": "6207", + "NAME_2": "Брацигово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[297, 298, 299, -102]], + "type": "Polygon", + "properties": { + "ISO": "BG-PAZ04", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55155", + "NAME_1": "PAZ", + "TYPE_1": "Област", + "ID_2": "3592", + "NAME_2": "Белово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[300, 301, 302, -298, -101, 303]], + "type": "Polygon", + "properties": { + "ISO": "BG-PAZ29", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55155", + "NAME_1": "PAZ", + "TYPE_1": "Област", + "ID_2": "66264", + "NAME_2": "Септември", + "TYPE_2": "Община" + } + }, + { + "arcs": [[304, -205, 305, 306, 307, 308, 309]], + "type": "Polygon", + "properties": { + "ISO": "BG-PAZ39", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55155", + "NAME_1": "PAZ", + "TYPE_1": "Област", + "ID_2": "70648", + "NAME_2": "Сърница", + "TYPE_2": "Община" + } + }, + { + "arcs": [[310, 311, 312, -294]], + "type": "Polygon", + "properties": { + "ISO": "BG-PAZ21", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55155", + "NAME_1": "PAZ", + "TYPE_1": "Област", + "ID_2": "56277", + "NAME_2": "Пещера", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-293, -233, -218, -206, -305, 313, 314, -311]], + "type": "Polygon", + "properties": { + "ISO": "BG-PAZ03", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55155", + "NAME_1": "PAZ", + "TYPE_1": "Област", + "ID_2": "2837", + "NAME_2": "Батак", + "TYPE_2": "Община" + } + }, + { + "arcs": [[315, -304, -100, -130, 316]], + "type": "Polygon", + "properties": { + "ISO": "BG-PAZ14", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55155", + "NAME_1": "PAZ", + "TYPE_1": "Област", + "ID_2": "43369", + "NAME_2": "Лесичово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-303, 317, -314, -310, 318, 319, -299]], + "type": "Polygon", + "properties": { + "ISO": "BG-PAZ08", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55155", + "NAME_1": "PAZ", + "TYPE_1": "Област", + "ID_2": "10450", + "NAME_2": "Велинград", + "TYPE_2": "Община" + } + }, + { + "arcs": [[320, 321, 322, 323, -94]], + "type": "Polygon", + "properties": { + "ISO": "BG-PAZ32", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55155", + "NAME_1": "PAZ", + "TYPE_1": "Област", + "ID_2": "69835", + "NAME_2": "Стрелча", + "TYPE_2": "Община" + } + }, + { + "arcs": [[324, 325, 326, -295, -313, 327, -301, -316, 328, -323]], + "type": "Polygon", + "properties": { + "ISO": "BG-PAZ19", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55155", + "NAME_1": "PAZ", + "TYPE_1": "Област", + "ID_2": "55155", + "NAME_2": "Пазарджик", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-302, -328, -312, -315, -318]], + "type": "Polygon", + "properties": { + "ISO": "BG-PAZ24", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55155", + "NAME_1": "PAZ", + "TYPE_1": "Област", + "ID_2": "62004", + "NAME_2": "Ракитово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-329, -317, -129, -144, -134, -117, -133, -136, -95, -324]], + "type": "Polygon", + "properties": { + "ISO": "BG-PAZ20", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "55155", + "NAME_1": "PAZ", + "TYPE_1": "Област", + "ID_2": "55302", + "NAME_2": "Панагюрище", + "TYPE_2": "Община" + } + }, + { + "arcs": [[329, 330, 331, 332, 333, -152, -45]], + "type": "Polygon", + "properties": { + "ISO": "BG-SLS10", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "66425", + "NAME_1": "SLS", + "TYPE_1": "Област", + "ID_2": "24030", + "NAME_2": "Дулово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-330, -44, -47, 334, 335, 336]], + "type": "Polygon", + "properties": { + "ISO": "BG-SLS07", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "66425", + "NAME_1": "SLS", + "TYPE_1": "Област", + "ID_2": "15031", + "NAME_2": "Главиница", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-46, -24, 337, 338, -335]], + "type": "Polygon", + "properties": { + "ISO": "BG-SLS34", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "66425", + "NAME_1": "SLS", + "TYPE_1": "Област", + "ID_2": "73496", + "NAME_2": "Тутракан", + "TYPE_2": "Община" + } + }, + { + "arcs": [[339, 340, -332, 341, 342]], + "type": "Polygon", + "properties": { + "ISO": "BG-SLS31", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "66425", + "NAME_1": "SLS", + "TYPE_1": "Област", + "ID_2": "66425", + "NAME_2": "Силистра", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-341, 343, 344, -333]], + "type": "Polygon", + "properties": { + "ISO": "BG-SLS01", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "66425", + "NAME_1": "SLS", + "TYPE_1": "Област", + "ID_2": "415", + "NAME_2": "Алфатар", + "TYPE_2": "Община" + } + }, + { + "arcs": [[345, 346, -344, -340, 347]], + "type": "Polygon", + "properties": { + "ISO": "BG-SLS15", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "66425", + "NAME_1": "SLS", + "TYPE_1": "Област", + "ID_2": "35242", + "NAME_2": "Кайнарджа", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-331, -337, 348, -342]], + "type": "Polygon", + "properties": { + "ISO": "BG-SLS32", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "66425", + "NAME_1": "SLS", + "TYPE_1": "Област", + "ID_2": "66665", + "NAME_2": "Ситово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[349, 350, 351, 352]], + "type": "Polygon", + "properties": { + "ISO": "BG-GAB05", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "14218", + "NAME_1": "GAB", + "TYPE_1": "Област", + "ID_2": "14218", + "NAME_2": "Габрово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[353, -352, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363]], + "type": "Polygon", + "properties": { + "ISO": "BG-GAB29", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "14218", + "NAME_1": "GAB", + "TYPE_1": "Област", + "ID_2": "65927", + "NAME_2": "Севлиево", + "TYPE_2": "Община" + } + }, + { + "arcs": [[364, 365, 366, -350, 367, 368]], + "type": "Polygon", + "properties": { + "ISO": "BG-GAB35", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "14218", + "NAME_1": "GAB", + "TYPE_1": "Област", + "ID_2": "73403", + "NAME_2": "Трявна", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-353, -354, 369, -368]], + "type": "Polygon", + "properties": { + "ISO": "BG-GAB12", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "14218", + "NAME_1": "GAB", + "TYPE_1": "Област", + "ID_2": "23947", + "NAME_2": "Дряново", + "TYPE_2": "Община" + } + }, + { + "arcs": [[370, 371, 372, 373, 374]], + "type": "Polygon", + "properties": { + "ISO": "BG-HKV18", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "77195", + "NAME_1": "HKV", + "TYPE_1": "Област", + "ID_2": "46084", + "NAME_2": "Маджарово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[375, 376, 377, 378, 379, 380, 381]], + "type": "Polygon", + "properties": { + "ISO": "BG-HKV09", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "77195", + "NAME_1": "HKV", + "TYPE_1": "Област", + "ID_2": "21052", + "NAME_2": "Димитровград", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-373, 382, 383, 384]], + "type": "Polygon", + "properties": { + "ISO": "BG-HKV11", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "77195", + "NAME_1": "HKV", + "TYPE_1": "Област", + "ID_2": "32024", + "NAME_2": "Ивайловград", + "TYPE_2": "Община" + } + }, + { + "arcs": [[385, 386, 387, 388, 389, -382, 390]], + "type": "Polygon", + "properties": { + "ISO": "BG-HKV34", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "77195", + "NAME_1": "HKV", + "TYPE_1": "Област", + "ID_2": "77195", + "NAME_2": "Хасково", + "TYPE_2": "Община" + } + }, + { + "arcs": [[391, 392, -376, -390]], + "type": "Polygon", + "properties": { + "ISO": "BG-HKV19", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "77195", + "NAME_1": "HKV", + "TYPE_1": "Област", + "ID_2": "48297", + "NAME_2": "Минерални бани", + "TYPE_2": "Община" + } + }, + { + "arcs": [[393, -375, 394, 395, -387]], + "type": "Polygon", + "properties": { + "ISO": "BG-HKV30", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "77195", + "NAME_1": "HKV", + "TYPE_1": "Област", + "ID_2": "68727", + "NAME_2": "Стамболово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-240, 396, 397, 398, 399, 400, -245]], + "type": "Polygon", + "properties": { + "ISO": "BG-HKV32", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "77195", + "NAME_1": "HKV", + "TYPE_1": "Област", + "ID_2": "72761", + "NAME_2": "Тополовград", + "TYPE_2": "Община" + } + }, + { + "arcs": [[401, 402, -398, 403]], + "type": "Polygon", + "properties": { + "ISO": "BG-HKV28", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "77195", + "NAME_1": "HKV", + "TYPE_1": "Област", + "ID_2": "65677", + "NAME_2": "Свиленград", + "TYPE_2": "Община" + } + }, + { + "arcs": [[404, -391, -381, 405, 406]], + "type": "Polygon", + "properties": { + "ISO": "BG-HKV29", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "77195", + "NAME_1": "HKV", + "TYPE_1": "Област", + "ID_2": "47278", + "NAME_2": "Симеоновград", + "TYPE_2": "Община" + } + }, + { + "arcs": [[407, -383, -372, 408, -402]], + "type": "Polygon", + "properties": { + "ISO": "BG-HKV17", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "77195", + "NAME_1": "HKV", + "TYPE_1": "Област", + "ID_2": "44570", + "NAME_2": "Любимец", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-399, -403, -409, -371, -394, -386, -405, 409]], + "type": "Polygon", + "properties": { + "ISO": "BG-HKV33", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "77195", + "NAME_1": "HKV", + "TYPE_1": "Област", + "ID_2": "77181", + "NAME_2": "Харманли", + "TYPE_2": "Община" + } + }, + { + "arcs": [[410, 411, 412, 413, 414, 415]], + "type": "Polygon", + "properties": { + "ISO": "BG-PVN37", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56722", + "NAME_1": "PVN", + "TYPE_1": "Област", + "ID_2": "80501", + "NAME_2": "Червен бряг", + "TYPE_2": "Община" + } + }, + { + "arcs": [[416, 417, 418, 419]], + "type": "Polygon", + "properties": { + "ISO": "BG-PVN27", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56722", + "NAME_1": "PVN", + "TYPE_1": "Област", + "ID_2": "57772", + "NAME_2": "Пордим", + "TYPE_2": "Община" + } + }, + { + "arcs": [[420, 421, 422, 423, 424, 425, -418, 426, 427, 428, 429]], + "type": "Polygon", + "properties": { + "ISO": "BG-PVN24", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56722", + "NAME_1": "PVN", + "TYPE_1": "Област", + "ID_2": "56722", + "NAME_2": "Плевен", + "TYPE_2": "Община" + } + }, + { + "arcs": [[430, -422, 431, 432]], + "type": "Polygon", + "properties": { + "ISO": "BG-PVN08", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56722", + "NAME_1": "PVN", + "TYPE_1": "Област", + "ID_2": "18099", + "NAME_2": "Гулянци", + "TYPE_2": "Община" + } + }, + { + "arcs": [[433, -415, 434, 435, -430]], + "type": "Polygon", + "properties": { + "ISO": "BG-PVN11", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56722", + "NAME_1": "PVN", + "TYPE_1": "Област", + "ID_2": "22407", + "NAME_2": "Долни Дъбник", + "TYPE_2": "Община" + } + }, + { + "arcs": [[436, -435, -414, 437, 438]], + "type": "Polygon", + "properties": { + "ISO": "BG-PVN23", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56722", + "NAME_1": "PVN", + "TYPE_1": "Област", + "ID_2": "55782", + "NAME_2": "Искър", + "TYPE_2": "Община" + } + }, + { + "arcs": [[439, -432, -421, -436, -437, 440]], + "type": "Polygon", + "properties": { + "ISO": "BG-PVN10", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56722", + "NAME_1": "PVN", + "TYPE_1": "Област", + "ID_2": "22215", + "NAME_2": "Долна Митрополия", + "TYPE_2": "Община" + } + }, + { + "arcs": [[[-424, 441]], [[442, 443, 444, 445, -419, -426, 446, 447]]], + "type": "MultiPolygon", + "properties": { + "ISO": "BG-PVN16", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56722", + "NAME_1": "PVN", + "TYPE_1": "Област", + "ID_2": "43236", + "NAME_2": "Левски", + "TYPE_2": "Община" + } + }, + { + "arcs": [[448, -438, -413, 449]], + "type": "Polygon", + "properties": { + "ISO": "BG-PVN39", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56722", + "NAME_1": "PVN", + "TYPE_1": "Област", + "ID_2": "37376", + "NAME_2": "Кнежа", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-447, -425, -442, -423, -431, 450, 451]], + "type": "Polygon", + "properties": { + "ISO": "BG-PVN21", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56722", + "NAME_1": "PVN", + "TYPE_1": "Област", + "ID_2": "51723", + "NAME_2": "Никопол", + "TYPE_2": "Община" + } + }, + { + "arcs": [[452, -448, -452, 453]], + "type": "Polygon", + "properties": { + "ISO": "BG-PVN03", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56722", + "NAME_1": "PVN", + "TYPE_1": "Област", + "ID_2": "3366", + "NAME_2": "Белене", + "TYPE_2": "Община" + } + }, + { + "arcs": [[454, 455, 456, 457]], + "type": "Polygon", + "properties": { + "ISO": "BG-VAR04", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10135", + "NAME_1": "VAR", + "TYPE_1": "Област", + "ID_2": "3719", + "NAME_2": "Белослав", + "TYPE_2": "Община" + } + }, + { + "arcs": [[458, 459, -458, 460, 461, 462]], + "type": "Polygon", + "properties": { + "ISO": "BG-VAR01", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10135", + "NAME_1": "VAR", + "TYPE_1": "Област", + "ID_2": "84", + "NAME_2": "Аврен", + "TYPE_2": "Община" + } + }, + { + "arcs": [[463, 464, -170, 465]], + "type": "Polygon", + "properties": { + "ISO": "BG-VAR16", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10135", + "NAME_1": "VAR", + "TYPE_1": "Област", + "ID_2": "24565", + "NAME_2": "Дългопол", + "TYPE_2": "Община" + } + }, + { + "arcs": [[466, -459, 467, -466, -169, -155, -176, 468]], + "type": "Polygon", + "properties": { + "ISO": "BG-VAR24", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10135", + "NAME_1": "VAR", + "TYPE_1": "Област", + "ID_2": "58503", + "NAME_2": "Провадия", + "TYPE_2": "Община" + } + }, + { + "arcs": [[469, 470, 471, 472]], + "type": "Polygon", + "properties": { + "ISO": "BG-VAR26", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10135", + "NAME_1": "VAR", + "TYPE_1": "Област", + "ID_2": "70175", + "NAME_2": "Суворово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-470, 473, -469, -175, -171, 474]], + "type": "Polygon", + "properties": { + "ISO": "BG-VAR08", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10135", + "NAME_1": "VAR", + "TYPE_1": "Област", + "ID_2": "10865", + "NAME_2": "Ветрино", + "TYPE_2": "Община" + } + }, + { + "arcs": [[475, 476, 477]], + "type": "Polygon", + "properties": { + "ISO": "BG-VAR05", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10135", + "NAME_1": "VAR", + "TYPE_1": "Област", + "ID_2": "7598", + "NAME_2": "Бяла", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-456, 478, -472, 479, 480, 481, 482, 483]], + "type": "Polygon", + "properties": { + "ISO": "BG-VAR02", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10135", + "NAME_1": "VAR", + "TYPE_1": "Област", + "ID_2": "182", + "NAME_2": "Аксаково", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-484, 484, -461, -457]], + "type": "Polygon", + "properties": { + "ISO": "BG-VAR06", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10135", + "NAME_1": "VAR", + "TYPE_1": "Област", + "ID_2": "10135", + "NAME_2": "Варна", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-480, -471, -475, -174, -164, 485]], + "type": "Polygon", + "properties": { + "ISO": "BG-VAR09", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10135", + "NAME_1": "VAR", + "TYPE_1": "Област", + "ID_2": "12574", + "NAME_2": "Вълчи дол", + "TYPE_2": "Община" + } + }, + { + "arcs": [[486, -478, 487, 488, 489, -464, -468, -463]], + "type": "Polygon", + "properties": { + "ISO": "BG-VAR13", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10135", + "NAME_1": "VAR", + "TYPE_1": "Област", + "ID_2": "21912", + "NAME_2": "Долни чифлик", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-479, -455, -460, -467, -474, -473]], + "type": "Polygon", + "properties": { + "ISO": "BG-VAR14", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10135", + "NAME_1": "VAR", + "TYPE_1": "Област", + "ID_2": "20482", + "NAME_2": "Девня", + "TYPE_2": "Община" + } + }, + { + "arcs": [[490, 491, 492, 493, 494, 495, -71]], + "type": "Polygon", + "properties": { + "ISO": "BG-KNL38", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "41112", + "NAME_1": "KNL", + "TYPE_1": "Област", + "ID_2": "62671", + "NAME_2": "Рила", + "TYPE_2": "Община" + } + }, + { + "arcs": [[496, 497, 498, -494]], + "type": "Polygon", + "properties": { + "ISO": "BG-KNL27", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "41112", + "NAME_1": "KNL", + "TYPE_1": "Област", + "ID_2": "39116", + "NAME_2": "Кочериново", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-191, 499, 500, -193]], + "type": "Polygon", + "properties": { + "ISO": "BG-KNL50", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "41112", + "NAME_1": "KNL", + "TYPE_1": "Област", + "ID_2": "73047", + "NAME_2": "Трекляно", + "TYPE_2": "Община" + } + }, + { + "arcs": [[501, -73]], + "type": "Polygon", + "properties": { + "ISO": "BG-KNL41", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "41112", + "NAME_1": "KNL", + "TYPE_1": "Област", + "ID_2": "65365", + "NAME_2": "Сапарева баня", + "TYPE_2": "Община" + } + }, + { + "arcs": [[502, -500, -190, -197, 503, 504]], + "type": "Polygon", + "properties": { + "ISO": "BG-KNL29", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "41112", + "NAME_1": "KNL", + "TYPE_1": "Област", + "ID_2": "41112", + "NAME_2": "Кюстендил", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-504, -196, 505, 506, 507]], + "type": "Polygon", + "properties": { + "ISO": "BG-KNL04", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "41112", + "NAME_1": "KNL", + "TYPE_1": "Област", + "ID_2": "4501", + "NAME_2": "Бобов дол", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-74, -502, -72, -496, 508, -506, -195]], + "type": "Polygon", + "properties": { + "ISO": "BG-KNL48", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "41112", + "NAME_1": "KNL", + "TYPE_1": "Област", + "ID_2": "68789", + "NAME_2": "Дупница", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-495, -499, 509, -507, -509]], + "type": "Polygon", + "properties": { + "ISO": "BG-KNL05", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "41112", + "NAME_1": "KNL", + "TYPE_1": "Област", + "ID_2": "4532", + "NAME_2": "Бобошево", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-510, -498, 510, 511, -505, -508]], + "type": "Polygon", + "properties": { + "ISO": "BG-KNL31", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "41112", + "NAME_1": "KNL", + "TYPE_1": "Област", + "ID_2": "51216", + "NAME_2": "Невестино", + "TYPE_2": "Община" + } + }, + { + "arcs": [[512, 513, 514, 515, 516, 517, 518, -26, -40, 519]], + "type": "Polygon", + "properties": { + "ISO": "BG-TGV24", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "73626", + "NAME_1": "TGV", + "TYPE_1": "Област", + "ID_2": "57649", + "NAME_2": "Попово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[520, -520, -39, -33, -180, -157, -147, -177, 521]], + "type": "Polygon", + "properties": { + "ISO": "BG-TGV35", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "73626", + "NAME_1": "TGV", + "TYPE_1": "Област", + "ID_2": "73626", + "NAME_2": "Търговище", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-12, -6, 522, 523, 524, -513, -521, 525]], + "type": "Polygon", + "properties": { + "ISO": "BG-TGV02", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "73626", + "NAME_1": "TGV", + "TYPE_1": "Област", + "ID_2": "518", + "NAME_2": "Антоново", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-13, -526, -522, -179]], + "type": "Polygon", + "properties": { + "ISO": "BG-TGV22", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "73626", + "NAME_1": "TGV", + "TYPE_1": "Област", + "ID_2": "53535", + "NAME_2": "Омуртаг", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-27, -519, 526, 527]], + "type": "Polygon", + "properties": { + "ISO": "BG-TGV23", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "73626", + "NAME_1": "TGV", + "TYPE_1": "Област", + "ID_2": "53552", + "NAME_2": "Опака", + "TYPE_2": "Община" + } + }, + { + "arcs": [[528, 529, 530]], + "type": "Polygon", + "properties": { + "ISO": "BG-BGS13", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "7079", + "NAME_1": "BGS", + "TYPE_1": "Област", + "ID_2": "48619", + "NAME_2": "Царево", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-248, -15, -178, -167, 531, 532]], + "type": "Polygon", + "properties": { + "ISO": "BG-BGS23", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "7079", + "NAME_1": "BGS", + "TYPE_1": "Област", + "ID_2": "70247", + "NAME_2": "Сунгурларе", + "TYPE_2": "Община" + } + }, + { + "arcs": [[533, 534, 535, 536, 537]], + "type": "Polygon", + "properties": { + "ISO": "BG-BGS04", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "7079", + "NAME_1": "BGS", + "TYPE_1": "Област", + "ID_2": "7079", + "NAME_2": "Бургас", + "TYPE_2": "Община" + } + }, + { + "arcs": [[538, 539, -249, -533, 540, 541]], + "type": "Polygon", + "properties": { + "ISO": "BG-BGS09", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "7079", + "NAME_1": "BGS", + "TYPE_1": "Област", + "ID_2": "36525", + "NAME_2": "Карнобат", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-253, -250, -540, 542, 543, 544, 545]], + "type": "Polygon", + "properties": { + "ISO": "BG-BGS06", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "7079", + "NAME_1": "BGS", + "TYPE_1": "Област", + "ID_2": "17974", + "NAME_2": "Средец", + "TYPE_2": "Община" + } + }, + { + "arcs": [[546, 547, -535, 548, -542]], + "type": "Polygon", + "properties": { + "ISO": "BG-BGS01", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "7079", + "NAME_1": "BGS", + "TYPE_1": "Област", + "ID_2": "151", + "NAME_2": "Айтос", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-490, 549, -547, -541, -532, -166, -465]], + "type": "Polygon", + "properties": { + "ISO": "BG-BGS18", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "7079", + "NAME_1": "BGS", + "TYPE_1": "Област", + "ID_2": "63224", + "NAME_2": "Руен", + "TYPE_2": "Община" + } + }, + { + "arcs": [[550, 551, -530, 552]], + "type": "Polygon", + "properties": { + "ISO": "BG-BGS27", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "7079", + "NAME_1": "BGS", + "TYPE_1": "Област", + "ID_2": "58356", + "NAME_2": "Приморско", + "TYPE_2": "Община" + } + }, + { + "arcs": [[553, 554, -488, -477]], + "type": "Polygon", + "properties": { + "ISO": "BG-BGS15", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "7079", + "NAME_1": "BGS", + "TYPE_1": "Област", + "ID_2": "51500", + "NAME_2": "Несебър", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-553, -529, 555, -545, 556]], + "type": "Polygon", + "properties": { + "ISO": "BG-BGS12", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "7079", + "NAME_1": "BGS", + "TYPE_1": "Област", + "ID_2": "46663", + "NAME_2": "Малко Търново", + "TYPE_2": "Община" + } + }, + { + "arcs": [[557, -543, -539, -549, -534]], + "type": "Polygon", + "properties": { + "ISO": "BG-BGS08", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "7079", + "NAME_1": "BGS", + "TYPE_1": "Област", + "ID_2": "35883", + "NAME_2": "Камено", + "TYPE_2": "Община" + } + }, + { + "arcs": [[558, -551, -557, -544, -558, -538]], + "type": "Polygon", + "properties": { + "ISO": "BG-BGS21", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "7079", + "NAME_1": "BGS", + "TYPE_1": "Област", + "ID_2": "67800", + "NAME_2": "Созопол", + "TYPE_2": "Община" + } + }, + { + "arcs": [[559, -536, -548, -550, -489, -555]], + "type": "Polygon", + "properties": { + "ISO": "BG-BGS17", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "7079", + "NAME_1": "BGS", + "TYPE_1": "Област", + "ID_2": "57491", + "NAME_2": "Поморие", + "TYPE_2": "Община" + } + }, + { + "arcs": [[560, 561, 562, 563]], + "type": "Polygon", + "properties": { + "ISO": "BG-DOB17", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "72624", + "NAME_1": "DOB", + "TYPE_1": "Област", + "ID_2": "35064", + "NAME_2": "Каварна", + "TYPE_2": "Община" + } + }, + { + "arcs": [[564, -162, -153, -334, -345, -347, 565]], + "type": "Polygon", + "properties": { + "ISO": "BG-DOB27", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "72624", + "NAME_1": "DOB", + "TYPE_1": "Област", + "ID_2": "72271", + "NAME_2": "Тервел", + "TYPE_2": "Община" + } + }, + { + "arcs": [[566, 567, -564]], + "type": "Polygon", + "properties": { + "ISO": "BG-DOB29", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "72624", + "NAME_1": "DOB", + "TYPE_1": "Област", + "ID_2": "83017", + "NAME_2": "Шабла", + "TYPE_2": "Община" + } + }, + { + "arcs": [[568]], + "type": "Polygon", + "properties": { + "ISO": "BG-DOB28", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "72624", + "NAME_1": "DOB", + "TYPE_1": "Област", + "ID_2": "72624", + "NAME_2": "Добрич", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-562, 569, -482, 570, 571]], + "type": "Polygon", + "properties": { + "ISO": "BG-DOB03", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "72624", + "NAME_1": "DOB", + "TYPE_1": "Област", + "ID_2": "2508", + "NAME_2": "Балчик", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-572, 572, 573, 574, -567, -563]], + "type": "Polygon", + "properties": { + "ISO": "BG-DOB12", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "72624", + "NAME_1": "DOB", + "TYPE_1": "Област", + "ID_2": "14711", + "NAME_2": "Генерал Тошево", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-481, -486, -163, -565, 575, -573, -571], [-569]], + "type": "Polygon", + "properties": { + "ISO": "BG-DOB15", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "72624", + "NAME_1": "DOB", + "TYPE_1": "Област", + "ID_2": "72624", + "NAME_2": "Добрич-селска", + "TYPE_2": "Община" + } + }, + { + "arcs": [[576, -574, -576, -566, -346]], + "type": "Polygon", + "properties": { + "ISO": "BG-DOB20", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "72624", + "NAME_1": "DOB", + "TYPE_1": "Област", + "ID_2": "40097", + "NAME_2": "Крушари", + "TYPE_2": "Община" + } + }, + { + "arcs": [[577, -356, 578, 579, 580, -358]], + "type": "Polygon", + "properties": { + "ISO": "BG-LOV02", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "43952", + "NAME_1": "LOV", + "TYPE_1": "Област", + "ID_2": "52218", + "NAME_2": "Априлци", + "TYPE_2": "Община" + } + }, + { + "arcs": [[581, 582, -428, 583, 584]], + "type": "Polygon", + "properties": { + "ISO": "BG-LOV36", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "43952", + "NAME_1": "LOV", + "TYPE_1": "Област", + "ID_2": "75054", + "NAME_2": "Угърчин", + "TYPE_2": "Община" + } + }, + { + "arcs": [[585, -121, 586, 587]], + "type": "Polygon", + "properties": { + "ISO": "BG-LOV38", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "43952", + "NAME_1": "LOV", + "TYPE_1": "Област", + "ID_2": "87014", + "NAME_2": "Ябланица", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-581, 588, 589, 590, 591, -585, 592, -359]], + "type": "Polygon", + "properties": { + "ISO": "BG-LOV34", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "43952", + "NAME_1": "LOV", + "TYPE_1": "Област", + "ID_2": "73198", + "NAME_2": "Троян", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-416, -434, -429, -583, 593, -588, 594]], + "type": "Polygon", + "properties": { + "ISO": "BG-LOV19", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "43952", + "NAME_1": "LOV", + "TYPE_1": "Област", + "ID_2": "44327", + "NAME_2": "Луковит", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-137, -131, -110, -122, -586, -594, -582, -592, 595, -109]], + "type": "Polygon", + "properties": { + "ISO": "BG-LOV33", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "43952", + "NAME_1": "LOV", + "TYPE_1": "Област", + "ID_2": "72343", + "NAME_2": "Тетевен", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-417, 596, -360, -593, -584, -427]], + "type": "Polygon", + "properties": { + "ISO": "BG-LOV18", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "43952", + "NAME_1": "LOV", + "TYPE_1": "Област", + "ID_2": "43952", + "NAME_2": "Ловеч", + "TYPE_2": "Община" + } + }, + { + "arcs": [[597, -361, -597, -420, -446]], + "type": "Polygon", + "properties": { + "ISO": "BG-LOV17", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "43952", + "NAME_1": "LOV", + "TYPE_1": "Област", + "ID_2": "43476", + "NAME_2": "Летница", + "TYPE_2": "Община" + } + }, + { + "arcs": [[598, 599, 600, 601, 602, 603, 604]], + "type": "Polygon", + "properties": { + "ISO": "BG-BLG40", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "4279", + "NAME_1": "BLG", + "TYPE_1": "Област", + "ID_2": "65334", + "NAME_2": "Сандански", + "TYPE_2": "Община" + } + }, + { + "arcs": [[605, 606, 607, 608]], + "type": "Polygon", + "properties": { + "ISO": "BG-BLG44", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "4279", + "NAME_1": "BLG", + "TYPE_1": "Област", + "ID_2": "66460", + "NAME_2": "Симитли", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-493, 609, -609, 610, -511, -497]], + "type": "Polygon", + "properties": { + "ISO": "BG-BLG03", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "4279", + "NAME_1": "BLG", + "TYPE_1": "Област", + "ID_2": "4279", + "NAME_2": "Благоевград", + "TYPE_2": "Община" + } + }, + { + "arcs": [[611, -308, 612, 613, -602, 614, 615]], + "type": "Polygon", + "properties": { + "ISO": "BG-BLG01", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "4279", + "NAME_1": "BLG", + "TYPE_1": "Област", + "ID_2": "2676", + "NAME_2": "Банско", + "TYPE_2": "Община" + } + }, + { + "arcs": [[616, 617, 618, -306, -204]], + "type": "Polygon", + "properties": { + "ISO": "BG-BLG42", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "4279", + "NAME_1": "BLG", + "TYPE_1": "Област", + "ID_2": "65440", + "NAME_2": "Сатовча", + "TYPE_2": "Община" + } + }, + { + "arcs": [[619, 620, -599]], + "type": "Polygon", + "properties": { + "ISO": "BG-BLG33", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "4279", + "NAME_1": "BLG", + "TYPE_1": "Област", + "ID_2": "56126", + "NAME_2": "Петрич", + "TYPE_2": "Община" + } + }, + { + "arcs": [[621, -615, -601, 622, 623, -607]], + "type": "Polygon", + "properties": { + "ISO": "BG-BLG28", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "4279", + "NAME_1": "BLG", + "TYPE_1": "Област", + "ID_2": "14492", + "NAME_2": "Кресна", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-613, -307, -619, 624, 625]], + "type": "Polygon", + "properties": { + "ISO": "BG-BLG13", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "4279", + "NAME_1": "BLG", + "TYPE_1": "Област", + "ID_2": "18366", + "NAME_2": "Гърмен", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-616, -622, -606, -610, -492, 626]], + "type": "Polygon", + "properties": { + "ISO": "BG-BLG37", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "4279", + "NAME_1": "BLG", + "TYPE_1": "Област", + "ID_2": "61813", + "NAME_2": "Разлог", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-604, 627, -625, -618, 628]], + "type": "Polygon", + "properties": { + "ISO": "BG-BLG52", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "4279", + "NAME_1": "BLG", + "TYPE_1": "Област", + "ID_2": "77058", + "NAME_2": "Хаджидимово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[629, -623, -600, -621]], + "type": "Polygon", + "properties": { + "ISO": "BG-BLG49", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "4279", + "NAME_1": "BLG", + "TYPE_1": "Област", + "ID_2": "69969", + "NAME_2": "Струмяни", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-603, -614, -626, -628]], + "type": "Polygon", + "properties": { + "ISO": "BG-BLG11", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "4279", + "NAME_1": "BLG", + "TYPE_1": "Област", + "ID_2": "17395", + "NAME_2": "Гоце Делчев", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-69, -98, -300, -320, 630]], + "type": "Polygon", + "properties": { + "ISO": "BG-BLG53", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "4279", + "NAME_1": "BLG", + "TYPE_1": "Област", + "ID_2": "87338", + "NAME_2": "Якоруда", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-491, -70, -631, -319, -309, -612, -627]], + "type": "Polygon", + "properties": { + "ISO": "BG-BLG02", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "4279", + "NAME_1": "BLG", + "TYPE_1": "Област", + "ID_2": "3504", + "NAME_2": "Белица", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-35, -29, 631, 632, -21]], + "type": "Polygon", + "properties": { + "ISO": "BG-RSE05", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "63427", + "NAME_1": "RSE", + "TYPE_1": "Област", + "ID_2": "10803", + "NAME_2": "Ветово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[633, 634, 635, 636, 637]], + "type": "Polygon", + "properties": { + "ISO": "BG-RSE37", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "63427", + "NAME_1": "RSE", + "TYPE_1": "Област", + "ID_2": "78361", + "NAME_2": "Ценово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-22, -633, 638, 639, 640]], + "type": "Polygon", + "properties": { + "ISO": "BG-RSE27", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "63427", + "NAME_1": "RSE", + "TYPE_1": "Област", + "ID_2": "63427", + "NAME_2": "Русе", + "TYPE_2": "Община" + } + }, + { + "arcs": [[[641, -517, 642, 643, -637, 644]], [[645, -515]]], + "type": "MultiPolygon", + "properties": { + "ISO": "BG-RSE04", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "63427", + "NAME_1": "RSE", + "TYPE_1": "Област", + "ID_2": "7603", + "NAME_2": "Бяла", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-632, -28, -528, 646, 647, 648, -639]], + "type": "Polygon", + "properties": { + "ISO": "BG-RSE13", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "63427", + "NAME_1": "RSE", + "TYPE_1": "Област", + "ID_2": "32095", + "NAME_2": "Иваново", + "TYPE_2": "Община" + } + }, + { + "arcs": [[649, -648, 650, -645, -636]], + "type": "Polygon", + "properties": { + "ISO": "BG-RSE03", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "63427", + "NAME_1": "RSE", + "TYPE_1": "Област", + "ID_2": "5611", + "NAME_2": "Борово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-641, 651, -338, -23]], + "type": "Polygon", + "properties": { + "ISO": "BG-RSE33", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "63427", + "NAME_1": "RSE", + "TYPE_1": "Област", + "ID_2": "67444", + "NAME_2": "Сливо поле", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-527, -518, -642, -651, -647]], + "type": "Polygon", + "properties": { + "ISO": "BG-RSE08", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "63427", + "NAME_1": "RSE", + "TYPE_1": "Област", + "ID_2": "20184", + "NAME_2": "Две могили", + "TYPE_2": "Община" + } + }, + { + "arcs": [[652, -225, 653, 654, 655]], + "type": "Polygon", + "properties": { + "ISO": "BG-KRZ14", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "40909", + "NAME_1": "KRZ", + "TYPE_1": "Област", + "ID_2": "36926", + "NAME_2": "Кирково", + "TYPE_2": "Община" + } + }, + { + "arcs": [[656, -395, -374, -385, 657, -656, 658]], + "type": "Polygon", + "properties": { + "ISO": "BG-KRZ15", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "40909", + "NAME_1": "KRZ", + "TYPE_1": "Област", + "ID_2": "39970", + "NAME_2": "Крумовград", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-230, -201, -221, 659, 660, 661, 662, 663]], + "type": "Polygon", + "properties": { + "ISO": "BG-KRZ02", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "40909", + "NAME_1": "KRZ", + "TYPE_1": "Област", + "ID_2": "607", + "NAME_2": "Ардино", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-655, 664, 665, -659]], + "type": "Polygon", + "properties": { + "ISO": "BG-KRZ21", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "40909", + "NAME_1": "KRZ", + "TYPE_1": "Област", + "ID_2": "48996", + "NAME_2": "Момчилград", + "TYPE_2": "Община" + } + }, + { + "arcs": [[[-661, 666]], [[-657, -666, 667, -663, 668, -388, -396]]], + "type": "MultiPolygon", + "properties": { + "ISO": "BG-KRZ16", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "40909", + "NAME_1": "KRZ", + "TYPE_1": "Област", + "ID_2": "40909", + "NAME_2": "Кърджали", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-654, -228, -229, -664, -668, -665]], + "type": "Polygon", + "properties": { + "ISO": "BG-KRZ08", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "40909", + "NAME_1": "KRZ", + "TYPE_1": "Област", + "ID_2": "20746", + "NAME_2": "Джебел", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-662, -667, -660, -220, 669, 670, -392, -389, -669]], + "type": "Polygon", + "properties": { + "ISO": "BG-KRZ35", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "40909", + "NAME_1": "KRZ", + "TYPE_1": "Област", + "ID_2": "81236", + "NAME_2": "Черноочене", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-363, 671, -444, 672, 673, 674]], + "type": "Polygon", + "properties": { + "ISO": "BG-VTR22", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10447", + "NAME_1": "VTR", + "TYPE_1": "Област", + "ID_2": "55052", + "NAME_2": "Павликени", + "TYPE_2": "Община" + } + }, + { + "arcs": [[675, 676, 677, -643, -516, -646, -514, -525, 678]], + "type": "Polygon", + "properties": { + "ISO": "BG-VTR31", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10447", + "NAME_1": "VTR", + "TYPE_1": "Област", + "ID_2": "69633", + "NAME_2": "Стражица", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-523, -5, -10, 679, 680, 681]], + "type": "Polygon", + "properties": { + "ISO": "BG-VTR13", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10447", + "NAME_1": "VTR", + "TYPE_1": "Област", + "ID_2": "27190", + "NAME_2": "Елена", + "TYPE_2": "Община" + } + }, + { + "arcs": [[682, -673, -443, -453, 683, -634]], + "type": "Polygon", + "properties": { + "ISO": "BG-VTR28", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10447", + "NAME_1": "VTR", + "TYPE_1": "Област", + "ID_2": "65766", + "NAME_2": "Свищов", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-445, -672, -362, -598]], + "type": "Polygon", + "properties": { + "ISO": "BG-VTR32", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10447", + "NAME_1": "VTR", + "TYPE_1": "Област", + "ID_2": "70295", + "NAME_2": "Сухиндол", + "TYPE_2": "Община" + } + }, + { + "arcs": [[684, 685, -676, 686]], + "type": "Polygon", + "properties": { + "ISO": "BG-VTR20", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10447", + "NAME_1": "VTR", + "TYPE_1": "Област", + "ID_2": "44793", + "NAME_2": "Лясковец", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-686, 687, 688, -677]], + "type": "Polygon", + "properties": { + "ISO": "BG-VTR06", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10447", + "NAME_1": "VTR", + "TYPE_1": "Област", + "ID_2": "16359", + "NAME_2": "Горна Оряховица", + "TYPE_2": "Община" + } + }, + { + "arcs": [[689, -687, -679, -524, -682]], + "type": "Polygon", + "properties": { + "ISO": "BG-VTR14", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10447", + "NAME_1": "VTR", + "TYPE_1": "Област", + "ID_2": "30962", + "NAME_2": "Златарица", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-685, -690, -681, 690, -369, -370, -364, -675, 691, -688]], + "type": "Polygon", + "properties": { + "ISO": "BG-VTR04", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10447", + "NAME_1": "VTR", + "TYPE_1": "Област", + "ID_2": "10447", + "NAME_2": "Велико Търново", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-678, -689, -692, -674, -683, -638, -644]], + "type": "Polygon", + "properties": { + "ISO": "BG-VTR26", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10447", + "NAME_1": "VTR", + "TYPE_1": "Област", + "ID_2": "57354", + "NAME_2": "Полски Тръмбеш", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-377, -393, -671, 692, 693, 694, 695]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV23", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "59080", + "NAME_2": "Първомай", + "TYPE_2": "Община" + } + }, + { + "arcs": [[[-235, -292, 696]], [[697, 698, -297, 699]]], + "type": "MultiPolygon", + "properties": { + "ISO": "BG-PDV39", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "39921", + "NAME_2": "Кричим", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-223, -237, -215, 700]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV15", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "44478", + "NAME_2": "Лъки", + "TYPE_2": "Община" + } + }, + { + "arcs": [ + [701, 702, 703, 704, 705, -213, -236, -697, -291, -699, 706, 707, -326, 708, 709, 710] + ], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV26", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "56784", + "NAME_2": "Родопи", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-589, -580, 711, 712, 713, 714, -92, -107, -596, -591, 715]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV13", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "36498", + "NAME_2": "Карлово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[716, -709, -325, -322, 717, 718]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV33", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "70528", + "NAME_2": "Съединение", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-711, 719]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV22", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "56784", + "NAME_2": "Пловдив", + "TYPE_2": "Община" + } + }, + { + "arcs": [[720, 721, 722, 723, 724]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV25", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "62075", + "NAME_2": "Раковски", + "TYPE_2": "Община" + } + }, + { + "arcs": [[725, -694, 726, -703, 727, -724]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV28", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "65139", + "NAME_2": "Садово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-707, -698, 728]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV40", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "55909", + "NAME_2": "Перущица", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-722, 729, -713, 730, 731]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV07", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "6361", + "NAME_2": "Брезово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[732, -718, -321, -93, -715]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV37", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "77270", + "NAME_2": "Хисаря", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-693, -670, -224, -701, -214, -706, 733, -704, -727]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV01", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "702", + "NAME_2": "Асеновград", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-729, -700, -296, -327, -708]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV41", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "51980", + "NAME_2": "Стамболийски", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-714, -730, -721, 734, -719, -733]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV12", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "35523", + "NAME_2": "Калояново", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-728, -702, -720, -710, -717, -735, -725]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV17", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "56784", + "NAME_2": "Марица", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-705, -734]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV42", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "40467", + "NAME_2": "Куклен", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-590, -716]], + "type": "Polygon", + "properties": { + "ISO": "BG-PDV43", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "56784", + "NAME_1": "PDV", + "TYPE_1": "Област", + "ID_2": "68080", + "NAME_2": "Сопот", + "TYPE_2": "Община" + } + }, + { + "arcs": [[735, 736, 737, 738, 739, 740]], + "type": "Polygon", + "properties": { + "ISO": "BG-VID06", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10971", + "NAME_1": "VID", + "TYPE_1": "Област", + "ID_2": "6224", + "NAME_2": "Брегово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[741, 742, -738, 743]], + "type": "Polygon", + "properties": { + "ISO": "BG-VID03", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10971", + "NAME_1": "VID", + "TYPE_1": "Област", + "ID_2": "5195", + "NAME_2": "Бойница", + "TYPE_2": "Община" + } + }, + { + "arcs": [[744, 745, 746, 747, 748, 749, -262, 750]], + "type": "Polygon", + "properties": { + "ISO": "BG-VID16", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10971", + "NAME_1": "VID", + "TYPE_1": "Област", + "ID_2": "21097", + "NAME_2": "Димово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-261, -273, -287, -266, 751, -751]], + "type": "Polygon", + "properties": { + "ISO": "BG-VID33", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10971", + "NAME_1": "VID", + "TYPE_1": "Област", + "ID_2": "63255", + "NAME_2": "Ружинци", + "TYPE_2": "Община" + } + }, + { + "arcs": [[[752, 753, -736]], [[-740, 754]]], + "type": "MultiPolygon", + "properties": { + "ISO": "BG-VID30", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10971", + "NAME_1": "VID", + "TYPE_1": "Област", + "ID_2": "52180", + "NAME_2": "Ново село", + "TYPE_2": "Община" + } + }, + { + "arcs": [[755, -749, 756, 757, -744, -737, -754]], + "type": "Polygon", + "properties": { + "ISO": "BG-VID09", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10971", + "NAME_1": "VID", + "TYPE_1": "Област", + "ID_2": "10971", + "NAME_2": "Видин", + "TYPE_2": "Община" + } + }, + { + "arcs": [[758, 759, 760, -746]], + "type": "Polygon", + "properties": { + "ISO": "BG-VID01", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10971", + "NAME_1": "VID", + "TYPE_1": "Област", + "ID_2": "3616", + "NAME_2": "Белоградчик", + "TYPE_2": "Община" + } + }, + { + "arcs": [[761, -747, -761, 762, 763]], + "type": "Polygon", + "properties": { + "ISO": "BG-VID25", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10971", + "NAME_1": "VID", + "TYPE_1": "Област", + "ID_2": "46245", + "NAME_2": "Макреш", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-748, -762, 764, -757]], + "type": "Polygon", + "properties": { + "ISO": "BG-VID15", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10971", + "NAME_1": "VID", + "TYPE_1": "Област", + "ID_2": "17645", + "NAME_2": "Грамада", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-758, -765, -764, 765, -742]], + "type": "Polygon", + "properties": { + "ISO": "BG-VID22", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10971", + "NAME_1": "VID", + "TYPE_1": "Област", + "ID_2": "40525", + "NAME_2": "Кула", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-745, -752, -265, 766, -759]], + "type": "Polygon", + "properties": { + "ISO": "BG-VID37", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "10971", + "NAME_1": "VID", + "TYPE_1": "Област", + "ID_2": "81757", + "NAME_2": "Чупрене", + "TYPE_2": "Община" + } + }, + { + "arcs": [[767, 768, 769, 770, 771]], + "type": "Polygon", + "properties": { + "ISO": "BG-VRC28", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "12259", + "NAME_1": "VRC", + "TYPE_1": "Област", + "ID_2": "48043", + "NAME_2": "Мизия", + "TYPE_2": "Община" + } + }, + { + "arcs": [[772, 773, -289, -280, 774, -768, 775]], + "type": "Polygon", + "properties": { + "ISO": "BG-VRC35", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "12259", + "NAME_1": "VRC", + "TYPE_1": "Област", + "ID_2": "77102", + "NAME_2": "Хайредин", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-441, -439, -449, 776, -771, 777]], + "type": "Polygon", + "properties": { + "ISO": "BG-VRC31", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "12259", + "NAME_1": "VRC", + "TYPE_1": "Област", + "ID_2": "54020", + "NAME_2": "Оряхово", + "TYPE_2": "Община" + } + }, + { + "arcs": [[778, 779, -256, -288, -285, -290, -774]], + "type": "Polygon", + "properties": { + "ISO": "BG-VRC21", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "12259", + "NAME_1": "VRC", + "TYPE_1": "Област", + "ID_2": "39846", + "NAME_2": "Криводол", + "TYPE_2": "Община" + } + }, + { + "arcs": [[780, 781, -779, -773]], + "type": "Polygon", + "properties": { + "ISO": "BG-VRC05", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "12259", + "NAME_1": "VRC", + "TYPE_1": "Област", + "ID_2": "5548", + "NAME_2": "Борован", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-775, -279, 782, -769]], + "type": "Polygon", + "properties": { + "ISO": "BG-VRC20", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "12259", + "NAME_1": "VRC", + "TYPE_1": "Област", + "ID_2": "37798", + "NAME_2": "Козлодуй", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-595, -587, -120, -143, 783, 784, 785, -411]], + "type": "Polygon", + "properties": { + "ISO": "BG-VRC32", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "12259", + "NAME_1": "VRC", + "TYPE_1": "Област", + "ID_2": "62997", + "NAME_2": "Роман", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-450, -412, -786, 786, -781, -776, -772, -777]], + "type": "Polygon", + "properties": { + "ISO": "BG-VRC08", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "12259", + "NAME_1": "VRC", + "TYPE_1": "Област", + "ID_2": "7702", + "NAME_2": "Бяла Слатина", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-81, -254, -780, -782, -787, -785, 787]], + "type": "Polygon", + "properties": { + "ISO": "BG-VRC10", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "12259", + "NAME_1": "VRC", + "TYPE_1": "Област", + "ID_2": "12259", + "NAME_2": "Враца", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-784, -142, -82, -788]], + "type": "Polygon", + "properties": { + "ISO": "BG-VRC27", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "12259", + "NAME_1": "VRC", + "TYPE_1": "Област", + "ID_2": "47714", + "NAME_2": "Мездра", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-18, 788, 789, -379, 790, 791, 792, 793, 794, 795]], + "type": "Polygon", + "properties": { + "ISO": "BG-SZR31", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68850", + "NAME_1": "SZR", + "TYPE_1": "Област", + "ID_2": "68850", + "NAME_2": "Стара Загора", + "TYPE_2": "Община" + } + }, + { + "arcs": [[796, 797, -406, -380, -790]], + "type": "Polygon", + "properties": { + "ISO": "BG-SZR23", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68850", + "NAME_1": "SZR", + "TYPE_1": "Област", + "ID_2": "53576", + "NAME_2": "Опан", + "TYPE_2": "Община" + } + }, + { + "arcs": [[798, -695, -726, -723, -732, 799, 800, -792]], + "type": "Polygon", + "properties": { + "ISO": "BG-SZR04", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68850", + "NAME_1": "SZR", + "TYPE_1": "Област", + "ID_2": "6183", + "NAME_2": "Братя Даскалови", + "TYPE_2": "Община" + } + }, + { + "arcs": [[801, 802, -795]], + "type": "Polygon", + "properties": { + "ISO": "BG-SZR38", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68850", + "NAME_1": "SZR", + "TYPE_1": "Област", + "ID_2": "51648", + "NAME_2": "Николаево", + "TYPE_2": "Община" + } + }, + { + "arcs": [[803, -365, -691, -680, -9, -19, -796, -803]], + "type": "Polygon", + "properties": { + "ISO": "BG-SZR37", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68850", + "NAME_1": "SZR", + "TYPE_1": "Област", + "ID_2": "18157", + "NAME_2": "Гурково", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-367, 804, -793, -801, 805, -351]], + "type": "Polygon", + "properties": { + "ISO": "BG-SZR12", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68850", + "NAME_1": "SZR", + "TYPE_1": "Област", + "ID_2": "35167", + "NAME_2": "Казанлък", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-800, -731, -712, -579, -355, -806]], + "type": "Polygon", + "properties": { + "ISO": "BG-SZR24", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68850", + "NAME_1": "SZR", + "TYPE_1": "Област", + "ID_2": "55021", + "NAME_2": "Павел баня", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-378, -696, -799, -791]], + "type": "Polygon", + "properties": { + "ISO": "BG-SZR36", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68850", + "NAME_1": "SZR", + "TYPE_1": "Област", + "ID_2": "81414", + "NAME_2": "Чирпан", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-804, -802, -794, -805, -366]], + "type": "Polygon", + "properties": { + "ISO": "BG-SZR22", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68850", + "NAME_1": "SZR", + "TYPE_1": "Област", + "ID_2": "49494", + "NAME_2": "Мъглиж", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-246, -401, 806, -797, -789, -17]], + "type": "Polygon", + "properties": { + "ISO": "BG-SZR27", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68850", + "NAME_1": "SZR", + "TYPE_1": "Област", + "ID_2": "61460", + "NAME_2": "Раднево", + "TYPE_2": "Община" + } + }, + { + "arcs": [[-798, -807, -400, -410, -407]], + "type": "Polygon", + "properties": { + "ISO": "BG-SZR07", + "ID_0": "100", + "NAME_0": "Bulgaria", + "NL_NAME_0": "България", + "ID_1": "68850", + "NAME_1": "SZR", + "TYPE_1": "Област", + "ID_2": "18280", + "NAME_2": "Гълъбово", + "TYPE_2": "Община" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/canada-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/canada-topo.json new file mode 100644 index 000000000000..46b795c0fdc3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/canada-topo.json @@ -0,0 +1,8227 @@ +{ + "type": "Topology", + "arcs": [ + [ + [7579, 10582], + [0, -2695], + [-2, -339], + [0, -3319] + ], + [ + [7577, 4229], + [-993, 1] + ], + [ + [6584, 4230], + [-26, 94], + [-55, 27], + [-21, 79], + [-27, 37], + [2, 89], + [-18, 45], + [6, 106], + [-13, 40], + [6, 89], + [-34, 181], + [-51, 119], + [-53, -15], + [-24, 103], + [-54, 43], + [-24, 116], + [-30, 40], + [-37, 9], + [-21, 80], + [-63, 52], + [-6, 87], + [-74, 115], + [-22, 87], + [-58, -59], + [-24, 105], + [-43, 51], + [-45, 91], + [-57, 4], + [-50, 47], + [23, 75], + [-11, 36], + [-62, 31], + [-5, -42], + [-42, -17], + [-5, 70], + [-24, 52], + [10, 56], + [-38, 120], + [-52, 45], + [-31, 113], + [-46, 48], + [-18, -56], + [-45, 21], + [-42, 108], + [-78, 12], + [-49, 130], + [43, -12], + [-12, 66], + [-27, 2], + [-23, 55], + [0, 3577] + ], + [ + [5134, 10582], + [2445, 0] + ], + [ + [4256, 4198], + [37, -52], + [13, -60], + [-27, -21], + [-15, 29], + [9, 17], + [-12, 15], + [6, 27], + [-11, 45] + ], + [ + [3639, 4458], + [8, -87], + [-35, 24], + [0, 62], + [27, 1] + ], + [ + [3474, 4741], + [11, -20], + [7, 9], + [12, -7], + [3, -38], + [8, -35], + [-6, -3], + [9, -73], + [-52, 12], + [-18, 34], + [-15, 93], + [41, 28] + ], + [ + [3945, 4974], + [28, -76], + [-23, -25], + [-33, 76], + [28, 25] + ], + [ + [3851, 4985], + [27, -67], + [-18, -52], + [-24, 17], + [-16, 85], + [31, 17] + ], + [ + [3977, 4985], + [23, -44], + [-17, -41], + [-25, 45], + [19, 40] + ], + [ + [3589, 5289], + [27, -37], + [-14, -67], + [-54, -10], + [-17, 57], + [58, 57] + ], + [ + [3167, 5313], + [35, -1], + [103, -63], + [17, -41], + [54, -47], + [92, -37], + [52, -38], + [86, -6], + [76, -48], + [121, -33], + [22, -118], + [27, -50], + [16, -74], + [78, -127], + [-11, -40], + [30, -92], + [52, -49], + [53, -17], + [94, -67], + [16, -58], + [21, 1], + [20, -115], + [35, -52], + [9, -37], + [-5, -22], + [11, -29], + [12, -51], + [18, 12], + [21, -128], + [-28, 14], + [-30, -70], + [-34, 38], + [-30, -11], + [-133, 88], + [-87, 50], + [-25, 37], + [-67, 36], + [-19, 38], + [42, 93], + [-35, 36], + [-23, -38], + [-31, 31], + [-27, -44], + [-22, 9], + [-44, 76], + [0, 94], + [-33, 29], + [-34, -12], + [-13, 102], + [-17, -22], + [-62, 6], + [-36, -19], + [-9, 183], + [-9, 24], + [-8, 44], + [1, 51], + [-7, -21], + [-19, 6], + [-11, 19], + [-5, -14], + [-81, -14], + [-33, 106], + [-33, -4], + [-23, 57], + [-38, 9], + [-21, 51], + [-50, 73], + [7, 58], + [-42, 3], + [-24, 33], + [-51, 144], + [89, 58] + ], + [ + [3156, 5781], + [33, -24], + [21, -105], + [-53, 10], + [-14, 109], + [13, 10] + ], + [ + [3183, 6004], + [9, -38], + [-18, -111], + [-23, 33], + [-28, -14], + [18, 116], + [42, 14] + ], + [ + [3168, 6140], + [32, -33], + [0, -50], + [-39, 13], + [7, 70] + ], + [ + [3360, 6207], + [11, -60], + [-103, -104], + [-19, -102], + [-46, -17], + [13, 131], + [20, 49], + [35, 8], + [43, 42], + [1, 25], + [45, 28] + ], + [ + [3052, 6308], + [13, -73], + [-39, -3], + [3, -78], + [-31, -2], + [-4, 152], + [58, 4] + ], + [ + [2327, 6388], + [5, -66], + [-35, -22], + [-27, 64], + [57, 24] + ], + [ + [2868, 6440], + [84, -124], + [-3, -80], + [-31, 23], + [-36, 66], + [-22, 72], + [8, 43] + ], + [ + [3142, 6417], + [-34, -153], + [-37, 15], + [4, 96], + [18, 40], + [49, 2] + ], + [ + [2815, 6649], + [40, -79], + [0, -55], + [-54, 84], + [14, 50] + ], + [ + [2246, 6690], + [10, -59], + [32, -29], + [7, -107], + [-39, -23], + [-10, -99], + [21, -16], + [20, -80], + [53, -44], + [25, -101], + [38, 18], + [23, -64], + [-24, -56], + [-97, 130], + [-21, 77], + [-30, 21], + [-30, 56], + [-80, 109], + [-30, 85], + [-34, 47], + [-16, 53], + [117, 17], + [65, 65] + ], + [ + [2932, 6714], + [92, -85], + [24, -78], + [3, -70], + [-17, -168], + [-40, -5], + [-61, 58], + [-24, 49], + [-17, 166], + [22, 11], + [-3, 114], + [21, 8] + ], + [ + [2875, 6724], + [18, -21], + [-5, -103], + [-22, -14], + [-16, 72], + [25, 66] + ], + [ + [2932, 6846], + [20, -117], + [-55, 5], + [35, 112] + ], + [ + [2576, 6907], + [88, -71], + [49, -70], + [38, -103], + [-13, -31], + [-38, 4], + [-36, 83], + [-44, 39], + [-37, 71], + [-7, 78] + ], + [ + [2967, 6953], + [-6, -91], + [-32, -1], + [-37, -65], + [-1, 105], + [76, 52] + ], + [ + [2621, 7001], + [22, -53], + [17, -7], + [-7, -74], + [-44, 29], + [-16, 52], + [28, 53] + ], + [ + [2641, 7065], + [92, -116], + [29, -64], + [91, -136], + [-31, 2], + [-10, -88], + [-21, -2], + [-56, 97], + [-16, 97], + [-44, 29], + [-10, 59], + [-25, 13], + [1, 109] + ], + [ + [2588, 7176], + [45, -72], + [-27, -87], + [-52, 39], + [-25, 62], + [59, 58] + ], + [ + [2281, 7169], + [-5, -53], + [-41, -111], + [-23, -168], + [11, -49], + [-21, -107], + [-45, -2], + [-8, -54], + [-63, -8], + [-45, 71], + [-2, 98], + [-67, 51], + [1, 62], + [-44, 88], + [-11, 81], + [19, 53], + [14, 102], + [50, -33], + [38, 16], + [25, -65], + [59, 40], + [36, -55], + [17, -78], + [-38, -67], + [-70, -43], + [84, -18], + [27, 140], + [-17, 80], + [54, -2], + [65, 31] + ], + [ + [2472, 7481], + [29, -46], + [-43, -54], + [-3, 56], + [17, 44] + ], + [ + [2644, 7711], + [9, -43], + [-30, -69], + [-36, -39], + [-16, 34], + [73, 117] + ], + [ + [478, 10582], + [3730, 0] + ], + [ + [4208, 10582], + [926, 0] + ], + [ + [6584, 4230], + [-575, 0], + [-1352, -1], + [-196, 2], + [-27, 12], + [-4, 109], + [40, -2], + [13, -10], + [14, 10], + [8, -23], + [41, -9], + [18, -28], + [51, 42], + [-27, -22], + [-18, -9], + [-29, 27], + [-34, 7], + [-6, 13], + [-7, 4], + [-11, -8], + [-27, 17], + [-26, -3], + [-60, -65], + [-17, 8], + [-11, 90], + [8, 35], + [-13, 107], + [-23, 16], + [-33, -21], + [-2, -72], + [-98, 51], + [-42, 90], + [9, 61], + [-23, 22], + [-65, -9], + [-32, 23], + [-16, 48], + [-39, 43], + [11, 76], + [27, 81], + [-28, 51], + [-29, -9], + [-40, 24], + [-30, 47], + [-57, 30], + [-31, -24], + [-56, -11], + [-25, 48], + [-43, -21], + [-55, 19], + [7, 96], + [-9, 95], + [-28, 11], + [-35, -22], + [-28, 37], + [-31, -3], + [-28, 48], + [-23, -54], + [-37, -13], + [-64, 39], + [-43, 49], + [-6, 72], + [-32, -14], + [-28, 51], + [1, 81], + [64, 116], + [-69, 6], + [-22, 93], + [3, 121], + [51, 29], + [15, 98], + [96, 87], + [13, 40], + [-24, 77], + [-43, -36], + [-12, -42], + [-101, -67], + [-11, 58], + [-51, 49], + [-32, -86], + [-18, 57], + [25, 29], + [2, 68], + [27, 107], + [3, 70], + [-29, -20], + [-46, 9], + [-17, 43], + [-3, 73], + [-23, 84], + [-37, 32], + [-32, 55], + [0, 58], + [-21, 48], + [38, 43], + [24, 141], + [-15, 52], + [-40, -77], + [-42, -31], + [-28, -50], + [-6, -129], + [-20, -14], + [-75, 106], + [-34, 81], + [-71, 107], + [-3, 124], + [-47, 57], + [7, 66], + [-55, 25], + [6, 92], + [22, 44], + [-2, 47], + [39, 24], + [57, 204], + [72, 174], + [-11, 56], + [-43, -178], + [-51, -102], + [-14, 53], + [17, 60], + [38, 60], + [-20, 99], + [-21, 60], + [6, 69], + [-11, 48], + [31, 68], + [1, 72], + [-25, 66], + [-35, -15], + [-44, 26], + [-10, 59], + [-38, 14], + [-39, 58], + [-74, 22], + [-94, 85], + [-27, 34], + [-62, -7], + [-10, 119], + [-61, 39], + [19, 99], + [-79, 27], + [30, 69], + [-30, 80], + [-45, 85], + [-77, 198], + [-49, 93], + [-25, 88], + [-70, 136], + [19, 25], + [-78, 102], + [-35, 70], + [-101, 76], + [-37, 68], + [-18, 88], + [-21, 0], + [-33, 68], + [-63, 18], + [-34, 85], + [17, 79], + [-50, 76], + [-60, 59], + [-114, -78], + [-61, -14], + [-26, -100], + [-40, -1], + [2, -105], + [-30, -67], + [-60, -4], + [-112, -92], + [-41, -53], + [-38, 194], + [-245, 298], + [-24, 85], + [-84, 54] + ], + [ + [12719, 8767], + [-165, -236], + [-193, -284], + [-178, -274], + [-119, -187], + [-86, -146], + [-161, -262], + [-237, -406], + [-155, -213], + [-218, -312], + [1, -1787], + [0, -211] + ], + [ + [11208, 4449], + [0, -220], + [-1518, 0] + ], + [ + [9690, 4229], + [-14, 308], + [0, 204], + [-14, 409], + [-8, -1], + [0, 205], + [-7, 204], + [-8, 0], + [-2, 385], + [-22, 515], + [0, 0], + [-8, 88], + [0, 204], + [-8, 95], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 2], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 1], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 1], + [0, 0], + [0, 2], + [0, 0], + [0, 1], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 1], + [0, 0], + [0, 1], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 3], + [0, 0], + [0, 1], + [0, 0], + [0, 2], + [0, 0], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 2], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 1], + [0, 0], + [0, 2], + [0, 0], + [0, 1], + [0, 0], + [0, 0], + [0, 0], + [0, 1], + [0, 0], + [0, 1], + [0, 0], + [0, 3], + [0, 0], + [-9, 51], + [1, 205], + [-11, 0], + [0, 202], + [-9, 72], + [0, 8], + [1, 110], + [0, 0], + [-9, 90], + [0, 0], + [0, 6], + [0, 0], + [0, 113], + [0, 0], + [-9, 4], + [1, 176], + [0, 2], + [-10, 46], + [0, 7], + [1, 174], + [-12, 89], + [0, 19], + [0, 0], + [0, 8], + [0, 253], + [0, 0], + [0, 69], + [0, 3], + [0, 100], + [0, 1], + [0, 72], + [0, 9], + [0, 50], + [0, 1], + [0, 11], + [0, 2], + [0, 39], + [0, 0], + [0, 83], + [0, 1], + [0, 662], + [0, 68], + [0, 23], + [0, 10], + [0, 25], + [0, 5], + [0, 42], + [0, 1], + [0, 47], + [0, 0], + [0, 118], + [0, 0], + [0, 34], + [0, 2], + [0, 5], + [0, 4], + [0, 6], + [0, 63], + [0, 72], + [0, 14], + [0, 7], + [0, 0], + [0, 400] + ], + [ + [9534, 10582], + [1755, 0] + ], + [ + [11289, 10582], + [7, -118], + [-9, -89], + [28, -158], + [-24, -80], + [8, -119], + [43, -56], + [4, -41], + [44, -87], + [57, 40], + [33, -7], + [87, 15], + [123, -29], + [18, -151], + [54, -175], + [47, -247], + [48, -125], + [17, -99], + [-2, -56], + [-43, -161], + [37, 35], + [59, 17], + [42, -15], + [41, 15], + [183, 103], + [59, 8], + [62, -15], + [67, -49], + [95, -83], + [112, -46], + [133, -42] + ], + [ + [18142, 1804], + [10, -86], + [-37, 5], + [27, 81] + ], + [ + [18668, 3586], + [30, -21], + [-35, -70], + [-13, 61], + [18, 30] + ], + [ + [18810, 2486], + [-25, -1], + [-31, -84] + ], + [ + [18754, 2401], + [-19, 15], + [-30, -54], + [-23, 31], + [-29, -80], + [-43, -29], + [-41, -55], + [-74, -50], + [-48, -73], + [-66, -35], + [-25, -40], + [-28, 44], + [-48, -75], + [-62, -40], + [-15, 37], + [-43, -44], + [-44, -12], + [-16, 69], + [-27, -19], + [-55, 37], + [-16, -30], + [-30, 87], + [14, 51], + [-39, 130], + [-51, 47], + [2, 152], + [-1, 646], + [-42, 79], + [-70, 88], + [-33, -37], + [-50, -1], + [-7, -24], + [-70, -40], + [-38, 71] + ], + [ + [17587, 3247], + [62, 29], + [56, 45], + [45, 73], + [1, 209], + [63, 0], + [0, 49], + [128, 0], + [1, -44], + [57, -39], + [108, 74], + [36, 7] + ], + [ + [18144, 3650], + [34, 4], + [39, 33], + [89, -62], + [68, -27], + [24, -45], + [23, -92], + [37, 3], + [75, 83], + [43, 11], + [9, -27], + [41, 7], + [9, -73], + [-34, -74], + [1, -87], + [-18, -70], + [-74, -95], + [28, -43], + [36, 28], + [51, -6], + [-2, -58], + [-24, -63], + [4, -69], + [43, -33], + [13, -129], + [38, -83], + [-1, -47], + [59, -3], + [26, -21], + [81, -27], + [-50, -62], + [-2, -37] + ], + [ + [21282, 3775], + [17, -33], + [35, -6], + [35, 23], + [4, -56], + [-72, 0], + [-19, 72] + ], + [ + [20071, 4058], + [26, -101], + [-111, -4], + [37, 61], + [48, 44] + ], + [ + [21229, 4664], + [9, -83], + [-42, -27], + [-8, 65], + [41, 45] + ], + [ + [20801, 5748], + [7, -63], + [34, -12], + [65, 58], + [-1, -95], + [-34, -74], + [-49, 23], + [-12, -68], + [30, -18], + [1, -65], + [-32, -86], + [-59, -123], + [-5, -50], + [-66, -134], + [-19, -78], + [-68, -143], + [6, -42], + [-26, -96], + [21, -64], + [32, 82], + [50, 62], + [62, 136], + [105, -132], + [50, 43], + [11, -36], + [-52, -64], + [-43, -27], + [-20, -48], + [55, -161], + [42, -3], + [25, 48], + [33, -52], + [8, 78], + [36, -33], + [-27, -82], + [1, -51], + [68, 29], + [27, -4], + [45, 56], + [30, 85], + [20, -66], + [37, 6], + [14, -39], + [24, 48], + [34, 6], + [82, -61], + [48, -76], + [-30, -66], + [-79, -116], + [-3, -43], + [27, -80], + [16, -109], + [27, 16], + [21, -52], + [30, 94], + [39, -38], + [52, 68], + [19, -32], + [-14, -87], + [-33, -46], + [-23, 6], + [-33, -61], + [-52, -63], + [-51, 6], + [-27, 29], + [4, -90], + [61, -1], + [13, -52], + [-53, -153], + [34, -88], + [41, -11], + [10, 114], + [48, 146], + [74, 48], + [4, -58], + [-69, -210], + [46, -87], + [40, 41], + [32, 155], + [16, -28], + [19, -158], + [-62, -228], + [2, -88], + [-11, -73], + [-38, -98], + [-31, -6], + [-36, 66], + [-47, -80], + [-23, 55], + [12, 108], + [-3, 138], + [-41, -58], + [-32, -84], + [-36, -50], + [-30, 10], + [4, 101], + [23, 67], + [35, 160], + [7, 129], + [-24, 110], + [-37, 27], + [-63, -183], + [-8, -63], + [-39, -41], + [-17, 16], + [-56, -18], + [-40, -76], + [-4, -77], + [-22, -19], + [-17, -65], + [-35, -34], + [-47, 26], + [-61, -34], + [-35, 27], + [-2, 49], + [51, 63], + [61, 23], + [44, 60], + [12, 84], + [27, 45], + [54, 20], + [-69, 88], + [-43, -13], + [1, -87], + [-40, -27], + [-9, 38], + [-48, -27], + [-14, 92], + [-26, 86], + [-18, -36], + [-83, -57], + [-65, 7], + [-39, -47], + [-51, 35], + [-76, -5], + [-21, 31], + [-140, 15], + [-14, 21], + [-46, -23], + [-33, 17], + [-63, -45], + [-65, -6], + [-67, -21], + [-34, 46], + [1, 60], + [-23, 100], + [76, 102], + [26, 17], + [88, 156], + [44, 28], + [-25, 55], + [-42, 12], + [6, 67], + [37, 115], + [9, 74], + [24, 73], + [14, -47], + [44, 6], + [24, 86], + [-33, 11], + [-13, 35], + [10, 76], + [63, 109], + [-3, 33], + [33, 126], + [14, 21], + [42, 145], + [32, 175], + [21, 33], + [7, 97], + [64, 46], + [29, 59], + [44, 208], + [24, 54], + [64, 43], + [131, 126] + ], + [ + [19538, 8370], + [6, -93], + [-37, 18], + [31, 75] + ], + [ + [19374, 8506], + [60, 0], + [6, -52], + [-59, 22], + [-7, 30] + ], + [ + [19439, 8825], + [27, -164], + [-18, -38], + [-31, 49], + [-25, -13], + [16, 130], + [31, 36] + ], + [ + [19378, 9162], + [5, -80], + [-41, 27], + [36, 53] + ], + [ + [19337, 9191], + [24, -50], + [-36, -33], + [-26, 44], + [38, 39] + ], + [ + [19363, 9339], + [32, -37], + [-9, -44], + [-40, 41], + [17, 40] + ], + [ + [18807, 10508], + [9, -92], + [-33, -7], + [9, 86], + [15, 13] + ], + [ + [20506, 5630], + [0, 331], + [-1148, -2], + [-489, 1], + [32, 50], + [-18, 102], + [-19, 41], + [-45, 18], + [-20, 60], + [14, 55], + [45, 35], + [103, 13], + [-7, 42], + [-33, 45], + [-68, -12], + [-16, -25], + [-49, -1], + [-18, -90], + [25, -104], + [-28, -95], + [-14, -147], + [-17, -72], + [18, -60], + [-68, -98], + [-24, 72], + [-39, 44], + [-85, -7], + [-61, 119], + [-67, 77], + [-47, 3], + [-23, -31], + [-30, 30], + [-20, 61], + [-36, -47], + [-32, 66], + [-9, 55], + [25, 72], + [2, 237], + [-26, 48], + [-34, -3], + [-15, -110], + [-51, -51], + [-13, 48], + [-29, 9], + [-61, 58], + [-18, 142], + [58, 15], + [21, -39], + [15, 51], + [21, 134], + [-6, 44], + [-29, 35], + [-38, -4], + [-43, 49], + [-9, 53], + [-33, 29], + [-7, 95], + [-53, 64], + [12, 72], + [26, 3], + [-6, 87], + [-21, 62], + [45, 43], + [28, 52], + [29, -39], + [70, 102], + [-66, 121], + [-32, 92], + [47, 8], + [4, -32], + [80, -126], + [66, -19], + [7, 38], + [-29, 95], + [0, 125], + [32, 36], + [87, -161], + [58, -33], + [43, -9], + [3, -52], + [35, -74], + [58, 11], + [5, 33], + [55, 36], + [31, 71], + [27, -19], + [55, -71], + [-7, -47], + [54, -11], + [17, 46], + [73, -48], + [33, -63], + [35, 2], + [34, 55], + [-29, 39], + [24, 109], + [32, -33], + [20, 51], + [-7, 42], + [19, 163], + [-33, 46], + [-1, 133], + [-27, 86], + [11, 73], + [24, 55], + [-54, 66], + [-40, -41], + [-1, 116], + [23, 154], + [-53, 96], + [33, 86], + [27, 16], + [3, 121], + [17, -6], + [19, 95], + [-28, 54], + [23, 61], + [-1, 70], + [16, 59], + [-72, 86], + [-19, -24], + [-48, 168], + [-40, 5], + [3, 67], + [50, 36], + [11, 66], + [36, 5], + [9, 42], + [35, 14], + [-15, 61], + [-31, -29], + [-18, 23], + [14, 80], + [24, -10], + [108, 33], + [-10, 55], + [-39, 29], + [-76, -41], + [-29, -40], + [-23, 68], + [-24, 23], + [-43, -10], + [-81, 54], + [14, 54], + [78, -54], + [-12, 255], + [-53, 26], + [-34, 69], + [27, 173], + [-34, 104], + [37, -6], + [37, 35], + [-64, 88], + [78, 23] + ], + [ + [18691, 10760], + [23, -103], + [-6, -3], + [4, -16], + [-23, -14], + [13, -41], + [52, 0], + [25, -86], + [0, -95], + [71, -41], + [40, -68], + [-23, -68], + [42, -12], + [60, -46], + [2, -108], + [50, -26], + [4, -70], + [35, -18], + [44, -130], + [-35, -64], + [-43, -32], + [37, -51], + [22, 34], + [70, 15], + [7, -168], + [-11, -26], + [-100, -5], + [2, -31], + [126, 43], + [21, -9], + [59, -142], + [15, 31], + [61, -201], + [-50, -25], + [-20, -63], + [74, -39], + [-15, -89], + [24, -42], + [90, -7], + [23, -32], + [5, -68], + [-44, -13], + [-25, -48], + [-2, -44], + [-32, -145], + [-7, -89], + [14, -114], + [82, 1], + [-5, -75], + [18, -62], + [50, 5], + [12, -80], + [82, 7], + [4, -48], + [67, 21], + [32, -31], + [-13, -52], + [48, -141], + [-34, -12], + [-26, -140], + [24, 7], + [27, 59], + [37, -54], + [71, 79], + [21, -20], + [-15, -80], + [43, 8], + [24, 37], + [30, -95], + [27, 82], + [62, -25], + [16, -46], + [13, -126], + [52, -7], + [60, -42], + [56, 14], + [-2, 49], + [59, -4], + [66, -133], + [63, 10], + [19, -87], + [-16, -39], + [-63, -42], + [-45, 18], + [-70, -21], + [-19, -68], + [-46, -4], + [-2, -41], + [-40, -73], + [-79, -23], + [-134, -97], + [-90, 10], + [-34, -35], + [-29, -60], + [-6, -127], + [-55, -51], + [76, -19], + [42, 88], + [69, 19], + [52, 76], + [86, 29], + [-8, 49], + [51, 88], + [33, 2], + [39, 37], + [40, 7], + [3, 95], + [52, 26], + [75, -22], + [108, -8], + [54, -183], + [16, -79], + [-65, -48], + [21, -50], + [1, -58], + [42, 44], + [-1, 50], + [43, 62], + [48, -7], + [17, 23], + [22, -62], + [46, -25], + [17, 15], + [34, -36], + [46, 3], + [10, -107], + [39, -27], + [-8, -140], + [-17, -52], + [22, -67], + [-44, -69], + [14, -56], + [45, 7], + [-15, -102], + [47, -50], + [-16, -112], + [3, -82], + [-48, -78], + [-75, -97], + [-117, -91], + [-43, -101], + [-62, -19] + ], + [ + [18645, 10873], + [60, -57], + [4, -53], + [-96, 53], + [32, 57] + ], + [ + [1280, 15956], + [28, -16], + [1, -80], + [-47, 54], + [18, 42] + ], + [ + [5040, 16030], + [-162, -16], + [36, -896], + [217, -143], + [347, -236], + [374, -156], + [164, -131], + [257, -214], + [355, -314], + [281, -264], + [286, 29], + [0, 0], + [178, 16], + [253, -222], + [178, -161], + [453, -63], + [399, -66], + [175, -32], + [378, -82], + [2, 0], + [248, -59], + [0, 0], + [75, -19], + [0, -33], + [0, -1], + [0, -215], + [0, 0], + [0, -18], + [0, -1], + [0, -7], + [0, -4], + [0, 0], + [0, -1], + [0, -407], + [0, -3], + [0, -70], + [0, 0], + [0, -3], + [0, 0], + [0, -387], + [0, 0], + [0, -77], + [0, -1], + [0, -4], + [0, 0], + [0, -43], + [0, -1], + [0, -458], + [0, 0], + [0, -216], + [0, -4], + [0, -115], + [0, 0], + [0, -47], + [0, -2], + [0, -301] + ], + [ + [9534, 10582], + [-1955, 0] + ], + [ + [4208, 10582], + [-51, 63], + [-30, 56], + [-23, 91], + [4, 47], + [-46, 7], + [-15, 66], + [-30, 40], + [20, 50], + [-12, 122], + [-55, 11], + [-15, -70], + [-79, -3], + [-28, -37], + [-66, 26], + [-33, -6], + [-40, 46], + [-33, -54], + [-24, 36], + [-28, -5], + [-25, -48], + [-50, 24], + [-37, -40], + [-51, 25], + [-2, 91], + [-27, 68], + [-26, 10], + [18, 89], + [-26, 137], + [-33, 24], + [-56, -9], + [-73, 63], + [-68, 78], + [6, 55], + [-41, 3], + [-15, 62], + [-73, 104], + [-29, -4], + [-15, -38], + [-53, 43], + [-45, -11], + [-34, 92], + [14, 142], + [-28, 12], + [-59, 90], + [-24, 77], + [-2, 65], + [21, 67], + [-37, 10], + [-78, 141], + [47, 36], + [-24, 140], + [-29, -1], + [-15, 147], + [-48, -28], + [-25, 45], + [-81, 49], + [-44, 79], + [3, 42], + [-31, 101], + [-55, 50], + [-81, -54], + [-45, 9], + [23, 61], + [-54, 67], + [-25, 61], + [-78, 50], + [-46, -7], + [51, 167], + [-50, 17], + [-56, 54], + [57, 97], + [39, 30], + [51, 115], + [-35, 79], + [-61, 53], + [17, 82], + [-40, 25], + [-62, -76], + [-3, 78], + [-50, 7], + [-68, -54], + [-62, 12], + [27, 122], + [-19, 74], + [-39, -2], + [27, 166], + [-42, 81], + [21, 45], + [-45, 60], + [28, 55], + [-570, 0], + [-18, 100], + [24, 35], + [-15, 190], + [-22, 41], + [-39, 9], + [-2, 95], + [-3, 608] + ], + [ + [1109, 15702], + [28, 4], + [42, -5], + [31, -43], + [20, 24], + [44, -18], + [-12, -30], + [8, 14], + [46, -23], + [31, -30], + [-36, -16], + [0, -3], + [50, 0], + [-3, -9], + [53, -68], + [5, -5], + [11, -12], + [12, 4], + [11, -8], + [8, 10], + [-57, 35], + [27, 28], + [11, -28], + [17, 28], + [-76, 90], + [-25, 15], + [-6, 64], + [35, 5], + [-20, 39], + [7, 2], + [-26, 23], + [-24, -5], + [-82, 59], + [1, 76], + [47, -58], + [51, -32], + [-12, 20], + [14, 2], + [13, 29], + [-17, 6], + [-19, 78], + [40, 3], + [37, -29], + [16, 87], + [34, -54], + [5, 75], + [61, -3], + [40, 20], + [15, -52], + [-5, 21], + [5, -3], + [9, 56], + [33, 47], + [-14, 36], + [50, -12], + [7, -45], + [23, -31], + [37, 12], + [29, -31], + [21, 42], + [-1, -53], + [-39, -55], + [-28, -39], + [12, -32], + [34, 40], + [46, 8], + [45, 35], + [73, -16], + [52, 22], + [9, 90], + [4, 31], + [1, 6], + [68, 13], + [46, -22], + [37, 56], + [32, -13], + [59, 6], + [-3, 34], + [35, 7], + [45, 55], + [52, 16], + [5, 41], + [79, -45], + [34, 86], + [5, 18], + [46, 0], + [45, 31], + [20, -9], + [32, -3], + [21, -10], + [56, -26], + [24, 17], + [22, 48], + [39, -17], + [10, 47], + [34, -36], + [-14, -4], + [37, -28], + [-28, -36], + [-2, -12], + [-168, -88], + [-65, -50], + [-33, -45], + [-35, -8], + [-46, -71], + [-49, 39], + [-46, -29], + [-26, 7], + [-108, -31], + [-48, -23], + [-21, -74], + [-72, -38], + [26, -48], + [68, 0], + [74, 67], + [3, 35], + [44, 35], + [49, -12], + [37, 61], + [11, 42], + [36, -58], + [33, -86], + [-28, -59], + [11, -73], + [16, 98], + [45, 60], + [66, 101], + [30, 68], + [62, 9], + [93, 41], + [27, 23], + [101, 13], + [10, -86], + [36, -33], + [19, 21], + [18, 44], + [50, 69], + [72, 46], + [12, -9], + [9, -9], + [6, 3], + [-8, 21], + [-34, 74], + [37, 38], + [61, -43], + [14, 61], + [97, 25], + [1, -38], + [15, -1], + [-7, 5], + [-8, 42], + [-74, 9], + [-55, 23], + [-30, 46], + [10, 75], + [37, 39], + [152, -121], + [78, -115], + [85, -237], + [104, -129], + [92, -78], + [36, -9], + [62, -30], + [46, 33], + [8, 42], + [5, 49], + [-2, 21], + [-40, 18], + [15, 44], + [40, 4], + [43, 34], + [31, 110], + [-54, 54], + [30, 4], + [103, 20], + [13, 47], + [31, -29], + [-14, -79], + [12, -70], + [-6, -80], + [70, -2], + [-29, -85], + [-44, -44], + [-11, -62], + [32, -15], + [68, -3], + [19, 15], + [9, 16], + [31, -16], + [33, -10], + [47, 16], + [38, 66], + [34, 13], + [22, 71], + [10, 52], + [33, 60], + [48, -19], + [31, 18], + [114, -18], + [100, 7], + [56, -23], + [30, 5], + [69, -52], + [46, -12], + [135, -133] + ], + [ + [7616, 18051], + [2, -231] + ], + [ + [7618, 17820], + [-50, 67], + [-39, 15], + [-12, 89], + [-72, 12], + [-36, 38], + [3, 46], + [55, 9], + [94, -13], + [57, -25], + [0, -1], + [-2, -6] + ], + [ + [7616, 17768], + [-1, -726], + [0, -7], + [-3, -724], + [-228, 5], + [-521, -1], + [-74, -2], + [10, -106], + [-73, 6], + [-12, 100], + [-387, -11], + [-269, 2], + [-269, -6] + ], + [ + [5789, 16298], + [-10, 79], + [97, 52], + [246, 61], + [266, 33], + [87, 20], + [101, -5], + [58, -22], + [153, 3], + [69, -28], + [40, 3], + [66, -23], + [89, 54], + [69, -15], + [43, 7], + [17, 51], + [-79, 10], + [-32, 64], + [-59, 22], + [-69, -7], + [-9, 26], + [-54, -9], + [-74, 54], + [-65, 17], + [-30, -15], + [-63, 39], + [-46, -1], + [-32, -21], + [-69, 2], + [-17, -21], + [-116, -22], + [-98, 3], + [-109, -8], + [-11, -28], + [-41, -6], + [-56, 59], + [-65, -1], + [-44, -18], + [-192, 11], + [-49, 13], + [-1, 35], + [-88, 53], + [-51, 46], + [-38, 56], + [18, 38], + [129, 73], + [74, 10], + [105, 32], + [61, 6], + [13, 25], + [130, 42], + [63, -1], + [-14, 46], + [71, 35], + [68, -15], + [-3, 40], + [-53, 7], + [-113, -36], + [-25, 5], + [-132, -41], + [-53, 2], + [-37, -20], + [-84, -13], + [-83, 9], + [-30, -13], + [-66, 12], + [-9, 50], + [62, 40], + [72, -12], + [-63, 81], + [-41, -38], + [-58, -9], + [-21, 40], + [-88, 2], + [-11, -42], + [-44, 46], + [-10, 108], + [38, 71], + [57, 41], + [52, 82], + [93, 16], + [-11, 77], + [-70, 2], + [-16, 72], + [52, 56], + [83, 63], + [86, 48], + [53, 70], + [155, 61], + [124, 63], + [72, 15], + [130, 50], + [34, 25], + [129, 41], + [18, 22], + [59, 0], + [61, -26], + [65, -97], + [-18, -83], + [-3, -120], + [-45, -2], + [-22, -71], + [-60, -30], + [49, -43], + [88, 59], + [42, -10], + [103, 60], + [-13, 48], + [25, 58], + [67, 48], + [151, -37], + [66, -33], + [65, -10], + [53, -35], + [39, -4], + [87, -47], + [-12, -92], + [-33, -13], + [-17, -47], + [-68, -34], + [2, -43], + [83, 67], + [24, -43], + [49, -10], + [32, 56], + [32, 17], + [27, 57], + [75, -32], + [17, 21], + [73, -66], + [43, 0] + ], + [ + [4762, 18988], + [105, -22], + [37, -51], + [131, -62], + [71, -26], + [110, -23], + [4, -64], + [33, 49], + [95, 3], + [41, -123], + [33, 36], + [15, 84], + [143, 38], + [135, -16], + [80, -26], + [121, -94], + [41, -22], + [77, -75], + [138, -113], + [99, -72], + [-8, -49], + [-97, -72], + [-209, -70], + [-64, -47], + [-135, -52], + [-138, -96], + [-58, -17], + [-179, -106], + [-64, -8], + [4, -88], + [-42, -102], + [-35, -10], + [-59, -49], + [-91, 6], + [3, -81], + [-71, -81], + [24, -72], + [-23, -132], + [-27, -49], + [-37, -27], + [-155, -53], + [-94, 62], + [-42, -40], + [-37, -70], + [-111, -44], + [-79, -80], + [-78, -2], + [-72, 80], + [-49, 161], + [-43, 25], + [-41, 76], + [-60, 42], + [-96, 27], + [-120, 69], + [-18, 32], + [-51, 10], + [-89, -16], + [18, 62], + [-17, 49], + [67, 113], + [37, 79], + [89, 46], + [-1, 69], + [-20, 121], + [26, -12], + [112, 33], + [-42, 62], + [-42, 7], + [25, 69], + [48, 50], + [11, 67], + [48, 73], + [59, 24], + [0, 67], + [50, 32], + [4, 67], + [-84, 27], + [-8, 48], + [-52, 71], + [-3, 69], + [-38, 55], + [38, 50], + [93, 17], + [147, 11], + [141, 21], + [88, 1], + [81, 14], + [103, 36], + [54, 4] + ], + [ + [5709, 19891], + [38, -9], + [-5, -47], + [-52, -58], + [-50, -103], + [-76, -67], + [-9, -27], + [-63, -30], + [-46, -6], + [-43, 32], + [-76, 2], + [14, 71], + [115, 113], + [78, 44], + [50, 0], + [15, 32], + [64, -2], + [10, -19], + [36, 74] + ], + [ + [7619, 20104], + [0, -139] + ], + [ + [7619, 19965], + [-52, -4], + [-27, 33], + [-36, 3], + [-18, 72], + [133, 35] + ], + [ + [7614, 19552], + [6, 0], + [0, -378] + ], + [ + [7620, 19174], + [-40, -20], + [-87, 2], + [-57, -33], + [0, -42], + [-155, -68], + [-104, -56], + [-163, -42], + [-158, -15], + [-134, 15], + [-73, 24], + [-101, 60], + [-7, 40], + [17, 70], + [110, 37], + [58, -2], + [61, 30], + [21, 29], + [74, 30], + [75, 11], + [160, 3], + [46, -12], + [36, 16], + [134, 93], + [-1, 60], + [-55, -5], + [-14, -37], + [-42, -22], + [-172, -19], + [-39, 23], + [-23, 48], + [-26, -27], + [-30, 44], + [-39, -46], + [-9, -43], + [-108, -28], + [-143, -16], + [-19, 26], + [35, 129], + [-36, 77], + [-42, -123], + [-85, -107], + [-64, -16], + [-23, -24], + [-53, -14], + [-32, 18], + [-12, 108], + [-98, -119], + [-65, 12], + [-35, 27], + [-47, 8], + [-6, 91], + [-80, -29], + [-28, -27], + [-62, 29], + [-53, -3], + [-120, 46], + [23, 62], + [75, 69], + [42, 9], + [265, 1], + [100, 58], + [-28, 34], + [-115, -27], + [-42, -20], + [-188, 9], + [-8, 53], + [73, 76], + [205, 7], + [13, 35], + [-118, 0], + [-70, 14], + [9, 80], + [34, 49], + [79, 46], + [98, 26], + [18, 75], + [67, 18], + [73, 36], + [98, 9], + [150, -9], + [24, -25], + [-11, -71], + [40, -65], + [71, 1], + [97, 44], + [95, -8], + [8, -23], + [86, -24], + [23, -77], + [98, -22], + [68, -57], + [-86, -17], + [-2, -36], + [67, 13], + [47, -9], + [66, -52], + [-5, -50], + [25, -72], + [67, 4], + [134, 26], + [11, -17], + [131, -6] + ], + [ + [6581, 20337], + [80, -2], + [66, -34], + [-5, -55], + [-118, -8], + [-167, 18], + [0, 69], + [28, 10], + [116, 2] + ], + [ + [6003, 20710], + [68, -23], + [29, -27], + [78, -17], + [66, -42], + [-20, -47], + [-160, -36], + [-30, -36], + [28, -64], + [88, -27], + [-16, -48], + [-79, 27], + [-14, -39], + [80, -40], + [-11, -76], + [-70, -54], + [-51, -10], + [-132, -2], + [18, -129], + [-77, -45], + [-76, 10], + [-61, 31], + [-47, 45], + [17, 60], + [10, 97], + [35, 22], + [-17, 61], + [-28, -37], + [-71, 11], + [-21, -74], + [2, -58], + [-54, -29], + [-63, 34], + [5, -60], + [52, -30], + [-14, -69], + [-59, -5], + [-22, -86], + [-38, -15], + [-42, 17], + [-43, 96], + [-41, 11], + [1, -186], + [-21, -65], + [-80, -22], + [-35, 30], + [-25, -51], + [-43, 11], + [9, 103], + [-42, -8], + [-26, 22], + [-3, 82], + [-33, 18], + [-40, -31], + [0, -57], + [-79, -73], + [-39, 48], + [-71, 11], + [-21, 25], + [-47, -17], + [-24, -35], + [-63, -36], + [-20, 49], + [11, 69], + [-28, 31], + [-8, 95], + [69, 34], + [101, 24], + [43, -13], + [58, 11], + [28, 24], + [53, 124], + [41, -21], + [44, 37], + [77, 27], + [13, -10], + [41, 78], + [169, 147], + [59, 23], + [14, 42], + [39, 39], + [49, -20], + [26, 33], + [69, 10], + [113, -6], + [84, 6], + [124, -43], + [55, 37], + [44, -20], + [-21, 82], + [78, 43], + [38, 2] + ], + [ + [6520, 21020], + [10, -43], + [41, -4], + [54, -49], + [48, -10], + [5, -59], + [-26, -25], + [-124, -20], + [-185, 121], + [85, 58], + [92, 31] + ], + [ + [7626, 21038], + [-6, -98] + ], + [ + [7620, 20940], + [-99, -22], + [-134, -11], + [29, -63], + [145, 6], + [1, -124], + [-37, -36], + [-55, -22], + [-33, 3], + [-73, -36], + [-109, 12], + [-101, -42], + [-80, -10], + [-97, 20], + [-37, 55], + [-74, -1], + [-8, 32], + [-61, 3], + [11, 55], + [-36, 88], + [21, 84], + [52, -8], + [88, 20], + [38, 31], + [132, 14], + [36, 20], + [23, -14], + [104, 36], + [82, -8], + [61, 17], + [182, 4], + [35, -5] + ], + [ + [7623, 21343], + [-3, -185], + [0, -6] + ], + [ + [7620, 21152], + [-44, 18], + [-87, -33], + [-88, 13], + [-69, 47], + [-72, 2], + [-28, -63], + [-94, 3], + [-21, 42], + [-69, 15], + [-200, -45], + [-39, -17], + [3, 75], + [103, 44], + [82, 17], + [47, 24], + [132, -3], + [32, 26], + [40, 1], + [51, 59], + [87, 16], + [28, 19], + [70, 3], + [139, -72] + ], + [ + [18810, 2486], + [35, 0], + [23, -52], + [35, -24], + [58, 11], + [33, -82], + [74, 39], + [67, -19], + [57, -83], + [98, 98], + [37, 58], + [5, -116], + [66, -32], + [38, 35], + [55, -138], + [-42, -61], + [107, -5], + [-14, -60], + [-67, 10], + [-20, -53], + [-33, 1], + [-76, -73], + [-85, -50], + [-195, -129], + [-12, -31], + [-51, 30], + [-36, -26], + [-27, -102], + [-25, -31], + [-73, 24], + [-2, 93], + [-56, -45], + [-34, -9], + [-9, -113], + [12, -59], + [-37, -19], + [-11, -44], + [-43, -64], + [-44, -118], + [-48, -82], + [-45, 34], + [-27, -33], + [-16, -87], + [-26, -31], + [-57, 0], + [-8, 103], + [-21, 60], + [-66, -23], + [-21, 221], + [19, 125], + [68, 133], + [-16, 31], + [150, 184], + [106, 116], + [111, 77], + [15, -60], + [32, -34], + [12, 46], + [89, 73], + [58, 0], + [-9, 46], + [-43, 4], + [-32, -26], + [-45, 31], + [-70, -20], + [-45, 19], + [-69, -30], + [-15, 44], + [55, 61], + [100, 172] + ], + [ + [19655, 3098], + [34, -48], + [6, -46], + [31, -19], + [-12, -133], + [-26, -106], + [5, -81], + [-52, -102], + [-47, -26], + [5, -73], + [-40, -9], + [3, -49], + [-32, -30], + [88, -41], + [6, 103], + [-13, 36], + [55, 67], + [39, 73], + [63, 37], + [43, -30], + [14, -69], + [-2, -92], + [-19, -30], + [-34, 0], + [1, -59], + [-26, -11], + [-39, -60], + [-84, -49], + [-48, 27], + [-59, -33], + [-41, 0], + [-33, 88], + [-21, 187], + [34, 88], + [25, 25], + [56, 141], + [46, 176], + [49, 74], + [25, 74] + ], + [ + [15126, 8551], + [-43, 8] + ], + [ + [15083, 8559], + [15, 29], + [28, -37] + ], + [ + [18577, 11556], + [66, -28], + [16, -93], + [-24, -93], + [-26, -4], + [-13, 53], + [-24, -1], + [-38, 58], + [-40, 17], + [-13, 74], + [96, 17] + ], + [ + [18542, 11700], + [74, -72], + [-21, -56], + [-49, 37], + [-26, 52], + [22, 39] + ], + [ + [17080, 12251], + [89, -31], + [90, -55], + [56, -96], + [-47, -29], + [-78, 13], + [-27, 54], + [-14, 65], + [-69, 79] + ], + [ + [14363, 12307], + [83, -27], + [-15, -139], + [-43, -55], + [-37, -11], + [-39, -72], + [-45, -39], + [-44, -69], + [-74, -51], + [-45, 42], + [-28, -4], + [-75, -63], + [-1, 71], + [-50, 86], + [1, 43], + [68, 52], + [30, 149], + [59, 54], + [16, -43], + [52, -7], + [75, 56], + [75, -3], + [37, 30] + ], + [ + [18730, 12813], + [54, -21], + [-23, -72], + [-26, 26], + [-5, 67] + ], + [ + [15492, 12914], + [-15, -67], + [-27, 1], + [-33, 56], + [75, 10] + ], + [ + [14689, 12958], + [56, -62], + [32, -13], + [-8, -65], + [91, -41], + [1, -36], + [-71, -13], + [-18, -47], + [-82, -58], + [-26, -52], + [-146, 66], + [-49, 37], + [-81, 42], + [-65, -13], + [-5, 79], + [70, 24], + [11, 42], + [27, -8], + [89, 64], + [88, 26], + [78, -50], + [8, 78] + ], + [ + [18577, 13093], + [24, -53], + [-18, -39], + [-24, 31], + [18, 61] + ], + [ + [13569, 14002], + [26, -56], + [50, -11], + [31, -135], + [-32, -17], + [51, -82], + [-3, -38], + [31, -76], + [21, 4], + [15, 80], + [48, 76], + [49, -59], + [31, -13], + [13, -81], + [82, -35], + [75, 1], + [45, -51], + [4, -40], + [34, -36], + [81, -51], + [66, -64], + [44, -2], + [67, -28], + [87, -117], + [-5, -86], + [44, -90], + [-3, -36], + [-58, -18], + [-28, 13], + [-57, -56], + [-23, -74], + [-62, 40], + [-88, 18], + [-31, -18], + [-16, 49], + [19, 80], + [-130, -45], + [-11, -36], + [-12, -163], + [-31, 12], + [-17, -45], + [-44, -27], + [-19, -34], + [-43, 15], + [-25, -31], + [-24, -109], + [-30, -47], + [-150, -105], + [-66, -2], + [-35, 39], + [-12, 138], + [17, 125], + [-17, 58], + [36, 98], + [-15, 51], + [-30, -44], + [-49, 13], + [-28, -37], + [-2, -108], + [-63, -31], + [-30, 15], + [-58, -3], + [-31, -44], + [-42, -18], + [-52, 10], + [-13, 90], + [73, 113], + [168, 102], + [4, 45], + [-26, 35], + [-17, 72], + [-5, 120], + [50, 180], + [-4, 73], + [19, 65], + [-5, 115], + [17, 133], + [26, 112], + [91, 100], + [27, 9] + ], + [ + [13675, 14064], + [50, -33], + [37, -107], + [35, -60], + [-1, -40], + [-40, -43], + [-37, 77], + [-58, 48], + [-10, 106], + [24, 52] + ], + [ + [13836, 14129], + [90, -52], + [86, -68], + [-5, -87], + [53, -32], + [55, -3], + [-2, -57], + [-101, 10], + [-30, 62], + [-67, -3], + [-19, 131], + [-49, 5], + [-23, 54], + [12, 40] + ], + [ + [19214, 14728], + [-50, -51], + [0, 48], + [50, 3] + ], + [ + [8166, 14751], + [42, -50], + [-11, -32], + [-31, 82] + ], + [ + [18943, 14830], + [-40, -46], + [-7, 44], + [47, 2] + ], + [ + [18832, 14994], + [39, -44], + [-45, -44], + [6, 88] + ], + [ + [8052, 15012], + [29, -20], + [-24, -100], + [-13, 58], + [8, 62] + ], + [ + [7771, 15203], + [35, -28], + [35, 15], + [2, -80], + [-72, 93] + ], + [ + [16299, 15305], + [52, -61], + [80, -47], + [55, 31], + [42, -91], + [-5, -64], + [-74, 0], + [-36, 16], + [-115, -23], + [-39, 14], + [-43, 56], + [-27, 58], + [9, 58], + [60, -13], + [41, 66] + ], + [ + [13288, 15376], + [55, -50], + [4, -120], + [10, -63], + [-22, -70], + [-24, -28], + [-62, 22], + [-38, 94], + [1, 67], + [16, 79], + [60, 69] + ], + [ + [15906, 15402], + [70, -14], + [43, -30], + [85, -20], + [30, -41], + [-36, -126], + [33, -30], + [-12, -62], + [4, -105], + [-35, -97], + [-41, -35], + [-106, -66], + [-111, -6], + [-51, 47], + [-41, -6], + [-11, -34], + [-101, 24], + [-35, 91], + [5, 41], + [-24, 101], + [39, 123], + [40, 87], + [75, 108], + [84, 34], + [67, -12], + [29, 28] + ], + [ + [15123, 15413], + [49, -4], + [31, -46], + [-48, -54], + [-45, 34], + [13, 70] + ], + [ + [16302, 15473], + [58, -76], + [-38, -49], + [-36, 78], + [16, 47] + ], + [ + [16235, 15480], + [30, -110], + [-49, 35], + [19, 75] + ], + [ + [15229, 15528], + [13, -45], + [-46, -31], + [4, 75], + [29, 1] + ], + [ + [8819, 15545], + [79, -15], + [49, -45], + [-11, -44], + [-75, 3], + [-57, 44], + [15, 57] + ], + [ + [16074, 15622], + [63, -32], + [11, -54], + [41, -70], + [-53, 0], + [-22, -25], + [-37, 12], + [-41, 45], + [2, 66], + [36, 58] + ], + [ + [9563, 15676], + [51, -44], + [-27, -48], + [-7, -50], + [-32, 26], + [-68, 15], + [4, 43], + [50, 60], + [29, -2] + ], + [ + [12488, 15684], + [29, -34], + [-35, -67], + [-22, 62], + [28, 39] + ], + [ + [9908, 15807], + [37, -10], + [7, -36], + [40, -29], + [-8, -65], + [-57, -52], + [-24, 50], + [-28, -15], + [3, 130], + [30, 27] + ], + [ + [12310, 15998], + [50, -58], + [-35, -48], + [-14, 31], + [-36, 49], + [12, 18], + [23, 8] + ], + [ + [15283, 16007], + [41, -5], + [26, -51], + [-38, -55], + [-20, 18], + [-24, -80], + [-42, -48], + [-24, -53], + [-111, -48], + [-29, 53], + [51, 98], + [60, 8], + [53, 133], + [57, 30] + ], + [ + [12420, 16032], + [13, -31], + [-26, -69], + [-36, 24], + [-3, 49], + [52, 27] + ], + [ + [15618, 16039], + [49, -42], + [56, 24], + [5, -62], + [-42, -30], + [-64, -78], + [-41, 13], + [-20, 96], + [6, 68], + [51, 11] + ], + [ + [10966, 16113], + [20, -70], + [-13, -60], + [-50, 34], + [-14, 28], + [-49, 27], + [8, 37], + [39, 6], + [22, -30], + [37, 28] + ], + [ + [9715, 16119], + [52, -25], + [-11, -79], + [-33, 5], + [-8, 99] + ], + [ + [11060, 16144], + [45, -12], + [59, -52], + [-9, -64], + [-30, -44], + [-41, 8], + [5, 114], + [-62, -107], + [-14, 89], + [22, 58], + [25, 10] + ], + [ + [17863, 16190], + [35, -26], + [-44, -82], + [-52, 29], + [25, 57], + [36, 22] + ], + [ + [15365, 16216], + [40, -30], + [-23, -69], + [-90, -36], + [-46, -1], + [-43, -34], + [-12, 26], + [72, 75], + [86, 27], + [16, 42] + ], + [ + [14232, 16248], + [72, -20], + [-3, -37], + [-51, 15], + [-18, 42] + ], + [ + [15004, 16250], + [45, -7], + [8, -73], + [-63, -33], + [-30, 36], + [-21, -17], + [-26, 35], + [-58, -103], + [-64, 80], + [-68, -2], + [13, 48], + [43, -16], + [11, 40], + [36, -11], + [36, 17], + [55, -46], + [83, 52] + ], + [ + [10509, 16287], + [51, 1], + [31, -43], + [52, -15], + [24, -59], + [36, -8], + [83, -94], + [31, -1], + [114, -82], + [43, -99], + [44, -11], + [1, -68], + [26, -90], + [42, -33], + [97, 38], + [4, -53], + [-59, -57], + [-14, 45], + [-54, -7], + [-24, -79], + [-49, -2], + [-23, -58], + [-34, -3], + [-26, -43], + [-38, -3], + [-102, 49], + [-30, 35], + [-7, -49], + [-123, 49], + [-24, 37], + [-67, 20], + [-24, -9], + [-43, 47], + [-14, 55], + [-23, -63], + [-37, 29], + [-25, -7], + [-41, 37], + [-14, 59], + [-41, -27], + [-29, -43], + [-57, 43], + [-22, 104], + [30, 33], + [82, -1], + [30, 28], + [50, -5], + [24, 72], + [26, -16], + [19, 64], + [-37, 33], + [33, 55], + [41, 29], + [16, 115], + [37, 12], + [14, 39] + ], + [ + [13179, 16446], + [77, -38], + [34, 17], + [46, -67], + [-45, -21], + [-123, 20], + [-34, 20], + [45, 69] + ], + [ + [9510, 16548], + [46, -51], + [65, 37], + [1, -36], + [-46, -29], + [-66, 79] + ], + [ + [9911, 16745], + [48, -41], + [-10, -58], + [-37, 4], + [-45, 31], + [4, 40], + [40, 24] + ], + [ + [9272, 16752], + [42, -36], + [-23, -46], + [-19, 82] + ], + [ + [16900, 16971], + [49, -26], + [72, -7], + [-10, -44], + [-42, -10], + [-111, -56], + [-17, 58], + [21, 75], + [38, 10] + ], + [ + [16584, 17256], + [7, -58], + [33, 36], + [17, -50], + [-44, -56], + [-67, 106], + [54, 22] + ], + [ + [16685, 17316], + [-3, -75], + [-65, 23], + [7, 43], + [61, 9] + ], + [ + [5040, 16030], + [107, -52], + [169, -23], + [147, -46], + [65, -67], + [101, -54], + [65, -22], + [80, -8], + [68, -38], + [28, 28], + [83, -45], + [68, 11], + [37, -27], + [73, 57], + [31, 16], + [6, 19], + [137, -58], + [31, -27], + [24, 11], + [38, -32], + [16, -39], + [64, -24], + [19, -40], + [61, -46], + [27, -52], + [-5, -38], + [21, -93], + [-49, 4], + [-51, 26], + [-45, -31], + [-35, 2], + [-31, -52], + [-62, 18], + [-41, -120], + [-56, -45], + [55, -11], + [73, -51], + [66, 17], + [23, -25], + [31, 12], + [30, -31], + [87, -9], + [80, -25], + [130, 12], + [16, -18], + [161, 2], + [51, 33], + [169, 14], + [31, -20], + [50, 64], + [57, -38], + [65, 54], + [86, 55], + [47, 15], + [33, 14], + [66, -100], + [12, -66], + [51, -17], + [29, 37], + [83, -17], + [22, -60], + [13, -111], + [31, -42], + [27, 160], + [25, -19], + [20, -126], + [25, 37], + [24, -38], + [71, -50], + [24, -70], + [-5, -71], + [-51, 17], + [-39, -31], + [47, -62], + [-2, -39], + [42, -31], + [49, -104], + [49, -38], + [72, -118], + [-1, 44], + [-70, 83], + [-39, 106], + [-1, 66], + [19, 64], + [46, -54], + [-1, 56], + [57, -49], + [1, 41], + [-45, 35], + [7, 61], + [-44, 41], + [-26, 70], + [-3, 73], + [-28, 95], + [-68, 75], + [17, 58], + [77, 48], + [-51, 54], + [78, 24], + [40, -13], + [55, 45], + [76, 3], + [14, 55], + [45, 20], + [30, -19], + [11, 68], + [51, 32], + [110, 9], + [21, 38], + [-23, 77], + [-34, 15], + [-41, -39], + [-64, 12], + [-28, -59], + [-25, -112], + [-58, 65], + [-38, -55], + [-19, 12], + [-51, -37], + [-18, 37], + [-119, 10], + [-16, -47], + [70, -50], + [-47, 2], + [-30, -23], + [-94, 37], + [-33, 58], + [-67, -42], + [-5, 67], + [26, 20], + [59, 124], + [23, 17], + [88, 6], + [37, 6], + [101, 26], + [89, 39], + [42, 30], + [37, 0], + [109, 73], + [81, -40], + [23, 6], + [79, -78], + [-13, -38], + [29, -64], + [-13, -66], + [103, -83], + [97, -37], + [-5, -52], + [34, -63], + [-1, -53], + [59, -12], + [49, 42], + [21, -12], + [117, 42], + [7, 48], + [30, -7], + [2, -54], + [37, -50], + [59, -25], + [30, -43], + [51, -27], + [48, -1], + [52, -40], + [64, 44], + [42, -53], + [87, -7], + [45, 17], + [38, 42], + [26, -25], + [71, 58], + [34, -26], + [30, 24], + [203, -35], + [15, 13], + [57, -21], + [28, -36], + [24, 20], + [40, -23], + [22, 37], + [28, -7], + [65, 26], + [-59, 94], + [-1, 64], + [32, 17], + [91, -109], + [25, -81], + [38, -38], + [40, -13], + [50, -49], + [15, 59], + [84, -40], + [5, 128], + [-51, 12], + [-70, 85], + [-68, -56], + [-63, -7], + [-53, 63], + [-26, 51], + [11, 47], + [-54, 95], + [18, 16], + [30, -31], + [23, 21], + [62, -34], + [54, 146], + [142, -27], + [61, -65], + [23, -62], + [30, -25], + [48, 16], + [48, -46], + [-55, -65], + [9, -45], + [54, 79], + [67, 42], + [40, -72], + [-34, -98], + [-13, -77], + [13, -109], + [-37, 5], + [-28, -36], + [26, -61], + [51, -25], + [-22, -49], + [20, -55], + [79, 65], + [13, 33], + [36, -49], + [66, -30], + [-24, -106], + [26, -100], + [25, 54], + [-31, 51], + [32, 136], + [-25, 16], + [-16, 84], + [14, 36], + [-42, 60], + [-48, 26], + [39, 75], + [-2, 51], + [24, 38], + [-1, 47], + [53, -17], + [22, 28], + [77, -41], + [54, 79], + [95, 65], + [1, 67], + [55, 53], + [80, 30], + [4, 159], + [14, 24], + [-23, 80], + [-63, 2], + [-39, -127], + [-98, -15], + [-24, 140], + [40, -16], + [57, 103], + [-24, 36], + [18, 86], + [138, 14], + [-52, -57], + [3, -58], + [98, 94], + [-22, 48], + [-6, 71], + [-62, -20], + [-22, -35], + [-94, 1], + [-22, 53], + [-48, 42], + [-19, 46], + [-20, -47], + [-48, -13], + [-47, 41], + [-29, 0], + [-79, 44], + [-34, 37], + [-17, -28], + [-64, 39], + [-19, 82], + [-35, 8], + [-57, 74], + [-18, 107], + [20, 66], + [38, 10], + [18, 82], + [29, -12], + [23, 68], + [-36, 18], + [-20, -22], + [-28, 26], + [-40, 113], + [46, 131], + [-21, 100], + [40, 3], + [25, 62], + [34, 14], + [47, -21], + [11, -33], + [64, -23], + [20, 59], + [-20, 58], + [-70, 11], + [-6, 69], + [36, 4], + [55, 58], + [17, 62], + [48, -1], + [10, 66], + [120, 26], + [35, -1], + [21, -43], + [-10, -63], + [50, -47], + [10, 31], + [67, -24], + [45, 14], + [4, -93], + [59, -55], + [42, -19], + [76, -64], + [26, -45], + [22, -88], + [-17, -113], + [7, -71], + [50, -22], + [8, -54], + [34, -1], + [64, -46], + [1, -65], + [78, -68], + [54, -10], + [39, -123], + [-106, -21], + [-33, 33], + [-62, 11], + [-15, -59], + [82, 8], + [-5, -73], + [-21, -37], + [-72, -56], + [-1, -66], + [73, -26], + [29, -56], + [71, -41], + [40, 41], + [33, 59], + [55, -1], + [34, -83], + [35, 10], + [37, -17], + [15, 26], + [78, -25], + [-80, -84], + [-12, -9], + [6, -17], + [-3, -30], + [-7, -13], + [41, -140], + [55, -58], + [-17, -84], + [12, -91], + [-15, -99], + [53, -20], + [10, -77], + [25, -9], + [66, 126], + [-8, 101], + [64, 107], + [-22, 86], + [30, 55], + [49, 39], + [30, 72], + [45, -70], + [42, 47], + [51, -91], + [40, -10], + [90, -65], + [35, -45], + [38, -85], + [-28, -44], + [44, -72], + [7, -137], + [-78, -16], + [-18, 73], + [-31, -15], + [-9, -46], + [28, -79], + [-30, -75], + [65, -175], + [47, -36], + [154, -232], + [57, -4], + [20, 78], + [58, 43], + [50, -45], + [16, 119], + [-6, 86], + [102, 163], + [36, 17], + [25, 66], + [-1, 63], + [23, 70], + [-3, 41], + [23, 82], + [-10, 43], + [25, 57], + [50, 23], + [27, -36], + [18, 27], + [33, -12], + [18, 97], + [62, 73], + [-110, 49], + [-42, 47], + [-21, 62], + [-14, 122], + [8, 87], + [50, 83], + [54, -25], + [53, 37], + [35, -3], + [60, 21], + [87, -35], + [11, -29], + [107, -39], + [223, -6], + [20, 12], + [11, -76], + [85, -24], + [-5, -171], + [44, -4], + [22, 26], + [68, -2], + [65, -42], + [27, 2], + [6, -51], + [-43, -29], + [-24, -44], + [-23, 3], + [-37, -53], + [-91, -84], + [-90, -36], + [25, -43], + [61, -30], + [5, 40], + [52, 3], + [-15, 90], + [28, 29], + [35, -10], + [17, 32], + [66, -75], + [34, -14], + [15, -51], + [-64, -37], + [-19, -34], + [-39, 9], + [-11, -39], + [-43, -23], + [-27, 49], + [-30, -31], + [-71, 17], + [-8, -26], + [42, -47], + [-4, -58], + [47, -82], + [5, -62], + [30, -78], + [51, -42], + [53, -79], + [56, -42], + [42, -84], + [-33, -82], + [-14, -138], + [-17, -39], + [-29, 9], + [-31, -28], + [-26, 18], + [-43, -28], + [-41, -101], + [-51, -36], + [-51, -83], + [-98, -8], + [-4, -41], + [-99, -80], + [-30, 7], + [-5, 47], + [-28, 48], + [-72, 34], + [-16, 74], + [-66, 6], + [-28, 48], + [-7, 75], + [-26, 21], + [-122, -4], + [-6, -71], + [38, 22], + [9, 40], + [48, 6], + [72, -143], + [51, -8], + [10, -77], + [57, -61], + [15, -84], + [38, -74], + [-65, 6], + [-77, 73], + [-41, -95], + [-57, 42], + [-6, -20], + [-29, 1], + [-70, 55], + [-40, -7], + [-15, 90], + [-28, 93], + [-80, -45], + [-68, -12], + [-69, 25], + [-52, 3], + [-53, -16], + [6, -67], + [26, -50], + [71, -14], + [107, -58], + [-23, -90], + [-87, -78], + [-36, -56], + [-12, -53], + [-24, -2], + [-18, -59], + [-88, -66], + [-25, -72], + [-72, -26], + [-106, 4], + [-84, 56], + [-106, 138], + [-38, 23], + [-41, -5], + [-35, 43], + [-132, 103], + [-14, -69], + [10, -63], + [62, -67], + [24, -65], + [43, -28], + [31, -67], + [107, -5], + [7, -10], + [123, -13], + [125, 10], + [123, -30], + [20, -112], + [-41, -33], + [-13, -44], + [-92, -205], + [-57, -29], + [-11, -71], + [-39, -51], + [-5, -59], + [-41, -15], + [-30, -40], + [-59, -28], + [-48, -39], + [-38, 11], + [-68, -24], + [-76, 41], + [-76, 13], + [-2, -65], + [-46, -55], + [-21, -90], + [-69, -48], + [-65, -10], + [2, -85], + [-70, 55], + [-33, 42], + [-68, 13], + [-52, 52], + [-139, 3], + [-67, 23], + [-22, 32], + [-40, -1], + [-47, 41], + [-121, 45], + [-37, 34], + [-28, -93], + [26, -18], + [33, 72], + [34, -36], + [53, 4], + [25, -42], + [69, -43], + [20, 32], + [30, -43], + [58, -14], + [-2, -58], + [97, 62], + [64, -65], + [50, -28], + [40, -49], + [33, -4], + [67, -64], + [23, -171], + [-19, -62], + [-85, -28], + [-83, -68], + [-52, 4], + [-107, 32], + [-12, -36], + [-60, 31], + [-2, -51], + [27, -45], + [53, -15], + [25, -1], + [-4, -69], + [-55, 13], + [-6, 29], + [-84, -72], + [-51, -9], + [4, -93], + [-52, 0], + [13, -54], + [-65, -8], + [8, -62], + [-6, -60], + [-42, -61], + [-51, 20], + [-20, -119], + [-33, -70], + [-73, -108], + [-24, 0], + [73, -12], + [-11, -48], + [-33, -50], + [-46, -150], + [-35, -59], + [-46, -152], + [-30, -57], + [6, -69], + [-18, -57], + [-2, -77], + [-22, -76] + ], + [ + [10835, 18030], + [-7, -97], + [-56, 6], + [15, 69], + [48, 22] + ], + [ + [10799, 18198], + [44, -30], + [24, -63], + [-28, -51], + [-66, -8], + [-35, 37], + [-10, 60], + [23, 35], + [48, 20] + ], + [ + [7616, 17768], + [1, 8], + [-6, 15], + [7, 29] + ], + [ + [7616, 18051], + [49, 2], + [3, -50], + [134, -64], + [24, -49], + [-1, -52], + [40, 3], + [42, 29], + [24, -62], + [-22, -104], + [61, -97], + [34, -147], + [0, -72], + [73, -57], + [38, -48], + [1, 74], + [34, -19], + [15, 33], + [58, 46], + [-22, 86], + [-39, 18], + [-12, 67], + [-24, 9], + [-7, 113], + [-19, 66], + [4, 75], + [-28, 22], + [-33, 120], + [2, 99], + [-31, 106], + [50, 8], + [1, 85], + [65, -8], + [77, -27], + [60, -54], + [37, 47], + [38, 21], + [48, -46], + [55, -2], + [19, -41], + [198, -140], + [53, -65], + [4, -70], + [22, -149], + [71, -125], + [-6, -76], + [35, -39], + [3, -69], + [27, -42], + [52, -35], + [20, -64], + [-1, -64], + [28, -38], + [1, -58], + [-28, -44], + [-47, -117], + [72, -64], + [33, -6], + [36, -43], + [5, -60], + [94, -66], + [32, -56], + [50, 5], + [56, -47], + [77, 6], + [75, -42], + [42, -41], + [14, -101], + [102, -58], + [9, 40], + [62, -27], + [46, 34], + [86, -2], + [14, -71], + [-20, -107], + [15, -91], + [-25, -19], + [-69, 3], + [-29, 62], + [-46, -46], + [-83, 38], + [-68, 84], + [-20, -91], + [-15, 39], + [-26, -43], + [1, -95], + [-28, -27], + [-46, -7], + [-13, 21], + [-74, 29], + [-30, 50], + [-32, 5], + [13, -76], + [69, -31], + [10, -158], + [50, 83], + [64, 16], + [34, 42], + [83, -5], + [28, -21], + [-28, -81], + [36, -27], + [49, -61], + [-16, -96], + [-66, 7], + [-39, -35], + [-40, 9], + [-16, -51], + [-44, -6], + [-29, -34], + [-62, -3], + [-41, 25], + [-43, -35], + [-47, 30], + [-19, -12], + [-86, 36], + [-19, -13], + [-96, 53], + [-22, -48], + [-145, 19], + [21, 69], + [-20, 36], + [-61, 17], + [-40, 27], + [-75, 18], + [-22, -20], + [-58, -4], + [-52, 52], + [34, 30], + [-16, 66], + [-35, 42], + [-50, 5], + [-28, -59], + [-47, -13], + [12, -71], + [-44, -35], + [-54, -85], + [-44, -24], + [-163, -28], + [-75, 8], + [-26, -47], + [-101, -78], + [-99, -19], + [-60, -33], + [-99, -12], + [-44, 9], + [-24, -34], + [-47, 30], + [-100, -43], + [-13, 28], + [-50, -46], + [-84, 16], + [-119, -17], + [-22, 8], + [-81, -23], + [-40, 7], + [-38, -24], + [-140, 71], + [-24, 59], + [-43, 57], + [-6, 82], + [18, 50], + [-30, 76], + [8, 34], + [-73, 30], + [-60, 11], + [-243, -20], + [-23, 14], + [-165, 14], + [-99, 60], + [-38, 5], + [-14, 80], + [-64, 22], + [-1, 36], + [-90, 56], + [-31, 89] + ], + [ + [14432, 18513], + [98, -6], + [65, -72], + [36, -116], + [-1, -82], + [138, -59], + [18, -41], + [-30, -47], + [3, -46], + [31, -52], + [40, -12], + [25, -46], + [-75, -58], + [-5, -32], + [-49, -29], + [6, -40], + [39, 33], + [28, -32], + [-12, -48], + [-70, -56], + [-15, -63], + [26, -107], + [86, 31], + [17, 31], + [26, 125], + [37, 44], + [77, 25], + [23, -25], + [14, 43], + [76, -33], + [67, -63], + [17, -53], + [-29, -131], + [38, 25], + [26, 79], + [3, 93], + [107, 33], + [-47, 40], + [32, 85], + [110, 65], + [46, 4], + [40, 27], + [80, 12], + [55, -21], + [82, -11], + [18, -44], + [46, -18], + [164, -15], + [133, -44], + [26, -73], + [43, -61], + [-14, -51], + [-61, -47], + [27, -51], + [31, 54], + [198, -26], + [28, -62], + [-13, -55], + [-55, -38], + [-30, 12], + [-56, -47], + [-60, -30], + [28, -43], + [49, 36], + [-43, -123], + [70, 62], + [13, 38], + [47, 17], + [8, 35], + [48, -15], + [49, 41], + [43, 3], + [-24, -88], + [-41, -52], + [1, -76], + [56, 110], + [44, -21], + [8, -48], + [27, -19], + [-24, -67], + [-40, -44], + [9, -44], + [54, 100], + [20, 1], + [26, -63], + [46, -10], + [26, 50], + [-6, 57], + [44, -3], + [-1, 46], + [30, 24], + [32, 81], + [99, -45], + [50, -7], + [111, -58], + [75, -107], + [-30, -34], + [-48, -95], + [-95, 30], + [-52, -18], + [-24, -67], + [-36, -20], + [18, -86], + [25, -13], + [67, 13], + [65, 41], + [73, 16], + [28, 74], + [33, 9], + [66, 55], + [44, -32], + [10, -86], + [-37, -48], + [0, -43], + [-95, -53], + [-15, -45], + [7, -80], + [53, 122], + [36, -5], + [91, 65], + [38, -12], + [88, 76], + [3, -61], + [-84, -74], + [32, -19], + [28, 27], + [64, 23], + [63, 51], + [64, -12], + [28, -26], + [138, -58], + [58, -54], + [-54, -85], + [-41, 35], + [-4, -49], + [-47, -31], + [-34, 2], + [-88, -25], + [-103, -59], + [1, -52], + [64, 65], + [81, 15], + [26, -19], + [30, 15], + [74, 6], + [-36, -102], + [28, -55], + [66, 79], + [19, -6], + [9, 94], + [67, 56], + [144, -102], + [55, -102], + [19, -115], + [-14, -32], + [-47, 1], + [-71, 34], + [-98, -6], + [-52, -78], + [-124, 15], + [2, -41], + [65, -7], + [139, -67], + [51, 16], + [117, -6], + [104, -61], + [43, -50], + [-19, -81], + [-100, 30], + [-118, -12], + [-126, 82], + [-29, -26], + [22, -70], + [102, -60], + [-83, -39], + [4, -63], + [45, -51], + [-128, 38], + [-42, 2], + [-16, -65], + [68, -2], + [-4, -81], + [72, -12], + [0, -23], + [87, -3], + [28, 23], + [60, -49], + [23, 6], + [25, -50], + [26, 45], + [45, -35], + [-18, -70], + [53, -34], + [-17, -72], + [61, 11], + [58, -54], + [23, 24], + [14, -50], + [45, 9], + [33, -107], + [15, 0], + [45, 97], + [37, -3], + [18, -46], + [57, 22], + [30, 54], + [31, -1], + [16, -67], + [-33, -18], + [-14, -85], + [77, 40], + [49, 6], + [49, -65], + [26, 1], + [10, -66], + [50, -86], + [13, -66], + [-43, -40], + [35, -57], + [27, 35], + [95, -6], + [6, -37], + [46, 86], + [31, 13], + [39, -29], + [-7, -65], + [-66, -31], + [15, -78], + [28, -14], + [5, 71], + [36, -19], + [20, -46], + [68, -9], + [21, -61], + [24, 44], + [34, 15], + [-6, 50], + [53, 10], + [11, -79], + [90, -40], + [-7, -29], + [67, -34], + [28, -73], + [-17, -28], + [-52, -20], + [10, -113], + [-59, -1], + [-28, -29], + [-38, 26], + [-34, -8], + [-10, 56], + [-63, 3], + [40, -66], + [-34, -67], + [96, -47], + [-2, -78], + [-64, 3], + [-42, 30], + [28, -102], + [-52, -44], + [-7, -96], + [-146, 18], + [-24, 52], + [-9, -112], + [-55, -1], + [62, -177], + [-34, -21], + [7, -49], + [-23, -121], + [-70, 50], + [-19, 57], + [-27, 15], + [-23, -35], + [-50, 60], + [-10, 70], + [-41, -92], + [-48, 60], + [-43, 32], + [30, 72], + [-40, 12], + [-33, -24], + [-11, 70], + [-39, 44], + [-5, 38], + [-39, 24], + [4, 92], + [26, 48], + [102, 49], + [-30, 37], + [-97, -55], + [-77, -3], + [-29, -14], + [-26, 96], + [-41, 13], + [-47, 75], + [-29, -31], + [-22, 21], + [-1, 87], + [-32, -11], + [-46, 109], + [-68, -45], + [7, -101], + [-11, -22], + [-58, 10], + [-40, 67], + [-23, 2], + [-62, 53], + [51, -119], + [-3, -39], + [70, -55], + [39, -18], + [24, -49], + [-12, -61], + [-53, -10], + [-67, 19], + [-23, -28], + [-31, 18], + [-35, 97], + [-34, -50], + [23, -39], + [6, -72], + [38, -29], + [11, -71], + [64, 22], + [77, 2], + [10, -61], + [-18, -55], + [67, -12], + [-11, -75], + [11, -43], + [64, -108], + [34, -117], + [28, 97], + [22, -51], + [81, -32], + [50, -85], + [-2, 77], + [58, -9], + [51, -102], + [50, 27], + [-19, -107], + [45, -26], + [21, 10], + [-20, -158], + [36, -96], + [-4, -40], + [86, 13], + [11, -61], + [28, -16], + [69, -138], + [-5, -175], + [-47, 144], + [-3, -180], + [-25, -25], + [-29, 24], + [-19, 77], + [-39, -24], + [-10, -110], + [47, -21], + [13, -177], + [-51, 37], + [-33, 0], + [30, -163], + [67, -48], + [71, -2], + [2, -51], + [-66, -60], + [-61, 45], + [-36, 69], + [-37, 18], + [-37, 71], + [-5, 83], + [-52, -7], + [-13, 46], + [-31, 34], + [-68, 19], + [-15, -26], + [-60, 29], + [-47, 52], + [-20, -34], + [-37, 66], + [-23, 10], + [-22, 60], + [-51, 23], + [-38, 61], + [-31, 21], + [-52, 112], + [-32, -35], + [41, -106], + [-13, -16], + [-61, 94], + [-96, 62], + [-27, 51], + [-47, 18], + [-63, -48], + [32, -72], + [56, -64], + [23, 8], + [68, -151], + [62, -27], + [36, -38], + [-5, -39], + [60, 15], + [91, -111], + [38, -81], + [36, -32], + [30, 7], + [76, -132], + [110, -156], + [-24, -91], + [27, -76], + [-80, -6], + [-80, 39], + [-25, 49], + [-47, -2], + [-66, 37], + [-29, -5], + [-16, 51], + [-68, -4], + [-67, 22], + [-167, 40], + [-31, 37], + [-118, 66], + [-43, 78], + [-27, 16], + [-30, 109], + [-64, -20], + [-28, 32], + [-43, -37], + [-78, 76], + [-76, 11], + [-52, 73], + [-34, 23], + [-24, -19], + [-42, 40], + [-50, 20], + [-42, 111], + [-57, 67], + [98, -18], + [64, 65], + [-38, 34], + [-38, 95], + [-71, -6], + [-18, -33], + [-37, -6], + [-34, 38], + [32, 62], + [-25, 29], + [-22, -69], + [-52, 57], + [-7, 41], + [-37, 41], + [-36, 1], + [7, 83], + [-36, 24], + [-26, 49], + [-54, -9], + [-32, 49], + [-32, -19], + [-7, 77], + [-69, -26], + [-35, -48], + [0, 208], + [-35, -67], + [-33, 0], + [-67, 68], + [23, 90], + [-18, 36], + [-19, -129], + [55, -62], + [-42, -94], + [-32, -20], + [-85, 49], + [-18, -12], + [-61, 52], + [-65, 28], + [-25, -124], + [-42, 24], + [-28, -12], + [-44, -61], + [-51, -5], + [-14, 19], + [-67, -39], + [-73, 35], + [-58, -34], + [-13, 55], + [-112, 14], + [-49, 103], + [-26, 20], + [-1, 108], + [26, 35], + [-18, 76], + [46, 56], + [49, 20], + [39, 36], + [28, -6], + [42, 40], + [-47, 60], + [41, 98], + [41, -5], + [19, -34], + [70, 13], + [79, -38], + [90, -56], + [43, 33], + [112, -22], + [55, -20], + [34, 13], + [2, 68], + [79, -7], + [16, 36], + [21, -59], + [26, -4], + [39, 38], + [5, 48], + [29, 0], + [21, 36], + [31, -20], + [49, 11], + [56, -38], + [3, 51], + [-45, 124], + [-112, 101], + [-49, 79], + [8, 82], + [103, 74], + [52, 63], + [75, 70], + [58, 71], + [40, 12], + [150, -36], + [50, 11], + [59, -15], + [100, -51], + [46, -5], + [21, -24], + [18, -86], + [23, -12], + [-16, -192], + [23, -25], + [66, 112], + [47, 30], + [6, 63], + [43, -44], + [28, -52], + [22, 5], + [40, 53], + [67, -41], + [68, 0], + [41, 121], + [-49, 14], + [-82, -56], + [-5, 76], + [27, 19], + [25, -22], + [33, 13], + [6, 62], + [-35, 9], + [-25, 37], + [-48, 26], + [-90, 3], + [-1, -51], + [-77, 148], + [-23, 9], + [-10, 54], + [-34, -8], + [-28, 32], + [-31, -103], + [-23, -26], + [-30, -101], + [-90, 29], + [-11, -18], + [-82, 25], + [-110, -3], + [-96, 31], + [-8, 49], + [39, 58], + [12, 69], + [40, 25], + [58, -1], + [33, 39], + [8, 55], + [-27, 71], + [-35, 146], + [-35, 21], + [4, 74], + [-18, 52], + [-36, -20], + [-20, 60], + [5, 67], + [-23, 100], + [-36, -14], + [-25, 44], + [-31, -25], + [-104, 42], + [-28, 65], + [51, 109], + [-38, 50], + [-75, 14], + [66, -94], + [-48, -26], + [-51, 7], + [-45, 67], + [-79, 74], + [-10, 82], + [14, 90], + [-39, -17], + [-41, -91], + [-54, 32], + [-28, 45], + [-30, -81], + [-34, -19], + [-56, -18], + [-15, -26], + [-77, -49], + [-60, -9], + [-32, 27], + [42, 63], + [-22, 27], + [7, 89], + [46, -94], + [79, -16], + [17, -30], + [22, 39], + [40, -3], + [0, 41], + [60, 106], + [-19, 76], + [-41, 43], + [-109, 67], + [-33, -7], + [-90, 84], + [-86, 41], + [42, 102], + [-102, 14], + [-43, 20], + [-7, -54], + [-30, -16], + [-14, 131], + [9, 61], + [-7, 72], + [-50, 36], + [-70, -40], + [-54, 9], + [-40, 86], + [-24, -14], + [-26, 59], + [-33, -15], + [-60, 57], + [-18, -54], + [-33, 67], + [-53, -83], + [59, -15], + [53, -33], + [23, 21], + [66, -100], + [22, -115], + [-43, -45], + [-156, -2], + [-70, -8], + [-48, 85], + [-65, 0], + [-16, -19], + [-67, 36], + [-113, 7], + [-9, 19], + [-81, -3], + [-79, 25], + [4, -34], + [64, -29], + [37, 4], + [38, -57], + [41, -31], + [51, -69], + [-35, -21], + [-40, 21], + [-22, 37], + [-58, 33], + [-18, 27], + [-71, 26], + [-3, -49], + [-44, -22], + [-20, 19], + [-27, -52], + [-47, 40], + [-28, -45], + [-52, 13], + [-24, 62], + [-78, 57], + [-50, 4], + [-89, -37], + [-115, 19], + [-145, 11], + [-58, 32], + [-71, 14], + [-87, -9], + [-42, -43], + [-86, 44], + [-109, 97], + [-26, 48], + [-45, 0], + [-25, 33], + [-11, -55], + [-58, 10], + [-9, 40], + [-42, -28], + [-76, 3], + [-31, -25], + [-33, 44], + [-166, 63], + [-58, 52], + [-4, 52], + [-101, 97], + [-14, 53], + [25, 52], + [-2, 45], + [48, -35], + [95, 14], + [56, -6], + [73, -63], + [93, 13], + [98, -8], + [52, 38], + [172, -13], + [68, 18], + [110, 76], + [112, 18], + [45, -18], + [11, 31], + [41, -2], + [21, -39], + [-19, -61], + [2, -52], + [30, -1], + [-5, 77], + [6, 158], + [20, 61], + [35, 1], + [2, 64], + [-17, 71], + [-48, 5], + [-10, -29], + [-112, 30], + [-35, 42], + [-24, 82], + [-56, 35], + [7, 48], + [60, 13], + [17, 100], + [32, 17], + [82, -10], + [26, 69], + [-22, 30], + [-28, -27], + [-64, 17], + [-48, 38], + [-42, 104], + [6, 89], + [21, 93], + [68, 6], + [92, -46], + [100, -30], + [-4, 29], + [-56, 17], + [-31, 27], + [-62, 22], + [-93, 10], + [30, 65], + [45, -48], + [23, 51], + [73, -33], + [149, -22], + [-5, 21], + [-141, 39], + [-86, 44], + [10, 45], + [88, 46], + [34, -54], + [7, 65], + [111, 43], + [72, -20], + [6, 54], + [160, 72], + [35, -12], + [46, 53], + [144, -7], + [73, 6] + ], + [ + [8686, 18535], + [94, -14], + [83, -66], + [38, -14], + [27, -49], + [-16, -126], + [-93, -124], + [-3, -37], + [-68, -51], + [-11, -43], + [-60, 67], + [-57, 35], + [-35, 69], + [-41, 14], + [-3, 57], + [-148, 85], + [-12, 65], + [8, 69], + [43, 31], + [89, 11], + [109, -1], + [56, 22] + ], + [ + [14739, 18537], + [65, -5], + [79, -39], + [27, 21], + [28, -23], + [157, -35], + [79, 15], + [191, 6], + [63, -34], + [102, -30], + [63, -29], + [37, -52], + [11, -48], + [56, -7], + [51, -55], + [-10, -57], + [73, -19], + [-6, -73], + [67, -24], + [-9, -42], + [-38, -20], + [-80, -1], + [-97, 11], + [-152, 34], + [-156, -2], + [-118, -35], + [-62, -34], + [-68, -19], + [-52, 3], + [-127, 68], + [-42, 112], + [15, 73], + [-28, 34], + [-33, -3], + [-113, 27], + [-23, 54], + [22, 71], + [-7, 69], + [35, 88] + ], + [ + [13407, 18586], + [140, -24], + [120, -4], + [43, -21], + [-5, -63], + [-67, -36], + [-160, -121], + [-66, -88], + [-65, -140], + [-69, -82], + [-16, -77], + [12, -38], + [61, -60], + [46, -63], + [-47, -134], + [15, -116], + [63, -124], + [103, -92], + [21, -32], + [107, -83], + [36, 4], + [45, -28], + [8, -71], + [-78, 16], + [-31, -32], + [-32, 6], + [-32, -47], + [-43, 20], + [-59, -15], + [-57, -63], + [-53, -22], + [-138, -22], + [-90, 30], + [-100, 53], + [-22, 70], + [-60, -23], + [-177, 19], + [-240, 44], + [-42, 57], + [-11, 97], + [31, 115], + [-24, 86], + [7, 79], + [31, 34], + [-49, 110], + [30, 67], + [27, 22], + [8, 76], + [39, 47], + [15, 48], + [24, -2], + [31, 86], + [20, 115], + [62, 94], + [27, 9], + [54, 76], + [41, 15], + [48, 63], + [106, 66], + [150, 59], + [29, 0], + [113, 34], + [120, 6] + ], + [ + [10041, 18638], + [36, -47], + [75, -23], + [61, -49], + [145, 26], + [95, 10], + [70, 21], + [43, 41], + [76, -30], + [66, -2], + [62, -67], + [-24, -77], + [-45, -32], + [-49, 21], + [4, -52], + [37, -76], + [-89, -23], + [-53, -28], + [-25, -53], + [-52, -35], + [-68, -71], + [5, -76], + [32, 58], + [85, 39], + [100, -14], + [57, -25], + [8, -69], + [89, -97], + [50, 16], + [49, -27], + [43, -142], + [-31, -30], + [-51, -15], + [4, -43], + [28, -36], + [7, -99], + [-5, -76], + [-26, -54], + [-61, -2], + [0, -46], + [-44, -6], + [-84, -53], + [-53, -2], + [-37, 35], + [-52, 15], + [-64, -15], + [-16, -23], + [58, -72], + [-33, -46], + [-73, -74], + [-57, -23], + [-51, 14], + [-80, 56], + [-34, 118], + [-38, 17], + [-36, 110], + [-43, 27], + [-51, 6], + [-12, 38], + [-37, 20], + [-51, 95], + [-29, 30], + [-97, 7], + [-8, 45], + [-34, 33], + [-68, -20], + [-45, 16], + [-26, 44], + [-39, 20], + [-24, 47], + [-65, 37], + [-88, 102], + [-2, 58], + [20, 74], + [43, 59], + [63, -6], + [60, -24], + [49, -74], + [32, 23], + [33, -76], + [61, -62], + [44, 21], + [82, 7], + [11, 21], + [66, -10], + [-12, 85], + [31, 22], + [15, -49], + [24, 10], + [-41, 151], + [-48, -9], + [-29, 80], + [-93, -3], + [-19, 34], + [-60, 16], + [-1, 24], + [-60, 32], + [21, 59], + [40, -6], + [12, 29], + [93, -6], + [33, -56], + [28, 1], + [4, 60], + [-77, 14], + [-40, 73], + [23, 37], + [60, 6], + [41, 22], + [52, -26], + [91, -21], + [3, 36], + [-62, -6], + [-10, 50], + [82, 16] + ], + [ + [10583, 18738], + [16, -46], + [-110, -87], + [-79, -27], + [-108, -21], + [-59, 3], + [-63, 27], + [-14, 33], + [100, 26], + [57, 42], + [60, 0], + [126, 44], + [74, 6] + ], + [ + [11613, 18769], + [114, -13], + [108, -25], + [69, -43], + [9, -49], + [30, -2], + [56, 41], + [98, 6], + [94, -9], + [193, -59], + [0, -64], + [-29, -47], + [-115, -137], + [-65, -90], + [-39, -79], + [-107, -179], + [-56, -65], + [-79, -34], + [-239, 67], + [-57, -23], + [-93, -3], + [2, -45], + [86, -62], + [34, -80], + [-49, -68], + [-45, -14], + [-49, -127], + [-54, -45], + [-52, 6], + [-168, -30], + [-13, 163], + [13, 131], + [-39, 31], + [-13, 64], + [-55, 28], + [-22, 61], + [13, 84], + [-6, 106], + [21, 26], + [-13, 210], + [-17, 55], + [13, 62], + [83, 21], + [38, -44], + [46, 18], + [-85, 85], + [3, 66], + [149, 56], + [124, 26], + [66, 0], + [97, 23] + ], + [ + [10654, 19030], + [9, -67], + [-60, -28], + [-6, 73], + [57, 22] + ], + [ + [11095, 19042], + [71, -32], + [22, -51], + [-61, -2], + [-85, 38], + [53, 47] + ], + [ + [9017, 19508], + [75, -52], + [35, -75], + [7, -51], + [-53, -51], + [-143, -16], + [-68, 25], + [-15, 60], + [26, 99], + [67, 57], + [69, 4] + ], + [ + [11269, 19614], + [87, -10], + [58, -19], + [112, -109], + [44, -21], + [39, -175], + [29, -84], + [-22, -141], + [-50, -19], + [-152, 6], + [-85, -11], + [-89, 26], + [-11, 45], + [-48, 29], + [-109, 24], + [-27, -12], + [-77, 56], + [-53, -6], + [-5, 57], + [-36, 1], + [-20, 33], + [62, 91], + [66, 15], + [29, 78], + [43, 75], + [38, 6], + [72, 39], + [18, -4], + [87, 30] + ], + [ + [10925, 19624], + [97, -46], + [-52, -68], + [-26, 1], + [-39, 56], + [-31, -20], + [-6, -53], + [-74, -42], + [-32, 49], + [7, 44], + [39, -4], + [21, 28], + [58, 13], + [38, 42] + ], + [ + [11369, 19814], + [50, -132], + [-78, -6], + [-49, 28], + [-9, 89], + [86, 21] + ], + [ + [9500, 19817], + [35, -31], + [-107, -37], + [-43, -61], + [-61, -12], + [-116, 4], + [9, 35], + [39, 17], + [18, 34], + [84, 27], + [142, 24] + ], + [ + [9435, 19877], + [-26, -50], + [-204, -57], + [-9, -30], + [-80, -7], + [-26, 66], + [73, 11], + [164, 55], + [108, 12] + ], + [ + [15170, 19887], + [19, -47], + [-75, -38], + [-66, -84], + [-28, -1], + [1, 76], + [65, 32], + [42, 59], + [42, 3] + ], + [ + [9322, 20007], + [53, -12], + [17, -79], + [-23, -28], + [-127, -36], + [-168, -5], + [-137, 47], + [35, 55], + [109, 10], + [172, 43], + [69, 5] + ], + [ + [12818, 20164], + [17, -26], + [-32, -88], + [-2, 111], + [17, 3] + ], + [ + [9016, 20213], + [112, -50], + [17, -33], + [94, -34], + [45, -35], + [-84, -46], + [-104, -13], + [-61, 28], + [-61, 0], + [-23, 64], + [-63, 44], + [-2, 34], + [70, 36], + [60, 5] + ], + [ + [10345, 20219], + [52, -4], + [56, -47], + [78, -19], + [6, -28], + [52, -15], + [-15, -83], + [5, -45], + [62, -54], + [-22, -50], + [-17, -83], + [11, -49], + [-37, -77], + [90, -21], + [-12, -47], + [8, -92], + [-75, 68], + [-35, -63], + [-18, 34], + [-16, -141], + [36, -7], + [52, -83], + [-58, -6], + [-26, -47], + [-90, 0], + [-31, -15], + [-85, -3], + [-25, 35], + [-23, -40], + [-86, 1], + [-16, 50], + [-34, -58], + [-147, 11], + [-50, 18], + [-19, 116], + [42, 2], + [11, 48], + [-68, -11], + [-9, 85], + [126, 15], + [41, 67], + [11, 57], + [-185, -21], + [-79, -21], + [-39, 7], + [-50, -19], + [-67, 1], + [-134, -26], + [-83, -2], + [-49, -26], + [-30, 24], + [16, 80], + [79, 34], + [15, 73], + [106, 26], + [40, -33], + [88, -38], + [-2, 50], + [-42, -3], + [-14, 73], + [-25, -8], + [-31, 143], + [-65, 2], + [39, 128], + [102, -4], + [46, -16], + [50, -48], + [0, -41], + [142, -79], + [47, -39], + [57, -77], + [63, 11], + [-59, 64], + [-21, 78], + [-35, 18], + [-7, 38], + [89, -5], + [-15, 43], + [-57, 22], + [-106, -7], + [-32, 32], + [4, 51], + [50, 38], + [80, 30], + [87, -17], + [60, 12], + [87, -69], + [17, -41], + [38, 8], + [53, -13], + [-19, 80], + [61, 10], + [5, 58] + ], + [ + [9882, 20264], + [-13, -63], + [-153, -48], + [-48, 48], + [98, 18], + [11, 21], + [105, 24] + ], + [ + [12467, 20307], + [71, -52], + [-29, -47], + [-30, -114], + [-33, 7], + [-125, 142], + [30, 42], + [116, 22] + ], + [ + [7614, 19552], + [23, 2], + [19, -9], + [29, 5], + [34, -12], + [54, 1], + [72, -19], + [-1, 45], + [31, 34], + [-57, 77], + [-97, 34], + [-57, 1], + [2, 39], + [-46, -5], + [-1, 35], + [55, 15], + [59, 45], + [9, 57], + [-92, 39], + [-31, 29] + ], + [ + [7619, 20104], + [0, 2], + [-3, 5], + [36, 58], + [22, -9], + [35, 82], + [37, 42], + [161, 20], + [33, -40], + [6, -61], + [-15, -67], + [-2, -74], + [71, -13], + [27, -52], + [-45, -71], + [-13, -77], + [65, 1], + [36, 15], + [68, -19], + [4, -43], + [-54, -47], + [12, -51], + [34, 51], + [77, 19], + [63, -4], + [57, -125], + [17, 41], + [-1, 123], + [52, 49], + [30, 4], + [145, -32], + [82, -43], + [33, -41], + [25, -107], + [-28, -78], + [-38, -9], + [-16, -63], + [11, -38], + [-49, -43], + [-15, -43], + [-57, -95], + [-88, -26], + [-68, 2], + [-33, -42], + [-72, -11], + [-21, 18], + [-86, 17], + [-32, 31], + [-53, -9], + [-31, -46], + [-65, -6], + [-31, 22], + [-12, 51], + [-60, 17], + [-38, -44], + [-71, -26], + [-31, -31], + [-110, -14] + ], + [ + [11073, 20439], + [69, -5], + [60, -38], + [62, -11], + [76, 3], + [34, -32], + [52, -21], + [48, 2], + [16, 26], + [90, -18], + [82, -90], + [15, -58], + [-46, -112], + [73, 75], + [68, 19], + [52, -14], + [123, 14], + [42, 28], + [120, 14], + [117, -23], + [41, -41], + [54, -8], + [-15, -67], + [-73, 19], + [-48, -3], + [-57, 23], + [-7, -33], + [97, -5], + [23, -13], + [142, -18], + [81, -20], + [58, -25], + [116, -11], + [20, -46], + [-53, -26], + [-110, 5], + [-44, -9], + [-95, 15], + [-89, -16], + [0, -84], + [-65, 1], + [41, -62], + [34, 48], + [14, -25], + [66, -1], + [95, 15], + [85, -47], + [-20, -61], + [100, 16], + [38, -85], + [19, -98], + [66, -48], + [43, 32], + [-23, 63], + [48, 38], + [5, -37], + [50, -22], + [45, -47], + [38, 32], + [53, 18], + [59, -39], + [39, 66], + [23, 11], + [48, -23], + [23, -34], + [63, -30], + [59, -7], + [19, -55], + [29, 18], + [112, 6], + [-1, 56], + [77, 57], + [13, -22], + [58, 0], + [51, 58], + [92, -17], + [9, 32], + [82, 9], + [25, 34], + [40, -8], + [23, 41], + [114, -23], + [34, -30], + [53, 22], + [50, -12], + [67, 36], + [74, 12], + [68, -12], + [174, -12], + [14, -87], + [96, -8], + [95, 18], + [71, -17], + [35, -25], + [-1, -47], + [59, -26], + [36, 7], + [17, -42], + [32, -4], + [-31, -123], + [-50, -2], + [-40, -98], + [89, 18], + [29, -14], + [42, -73], + [-151, -40], + [-39, 12], + [-22, -132], + [-30, -16], + [-117, -8], + [-99, 14], + [-128, -69], + [-148, 34], + [-19, 27], + [-29, -29], + [-58, 3], + [-71, 55], + [-9, 108], + [-44, 11], + [-58, 50], + [-1, -61], + [54, -32], + [-60, -114], + [-168, -30], + [-94, -2], + [-20, 14], + [-46, -16], + [-36, 10], + [-40, -17], + [-67, 34], + [-17, -25], + [-138, -14], + [-13, 58], + [-30, -50], + [-82, -16], + [-129, -2], + [-66, 12], + [-38, -16], + [-233, 24], + [-2, 76], + [32, 65], + [-18, 59], + [-58, -27], + [-34, -83], + [-39, 61], + [-21, -75], + [-37, -31], + [-89, -23], + [-87, -1], + [-95, 38], + [-62, 12], + [-27, 29], + [-32, 103], + [-107, -112], + [-71, 1], + [-31, 43], + [-36, -17], + [-39, 42], + [-4, 110], + [-27, 14], + [-21, 83], + [-39, 22], + [-14, 56], + [4, 87], + [49, 71], + [37, 17], + [14, 57], + [-28, 127], + [-63, 27], + [-51, 47], + [-17, 73], + [-24, 38], + [-45, 18], + [-32, 73], + [-57, 0], + [-73, -40], + [-61, -20], + [-76, 11], + [-103, -1], + [-16, 16], + [-78, -38], + [-55, 72], + [-147, 16], + [-67, 52], + [10, 58], + [-50, 32], + [-35, -2], + [-33, 33], + [-87, 6], + [0, 67], + [60, -34], + [-10, 64], + [-33, -9], + [5, 74], + [106, -2], + [4, 37], + [160, 14] + ], + [ + [12211, 20545], + [37, 0], + [7, -68], + [-40, 3], + [-4, 65] + ], + [ + [13649, 20736], + [42, -3], + [33, -53], + [-63, -18], + [-12, 74] + ], + [ + [12260, 20781], + [31, -15], + [104, -7], + [136, -90], + [5, -93], + [-43, -43], + [-92, -18], + [-182, 68], + [-43, 40], + [-6, 67], + [15, 68], + [75, 23] + ], + [ + [8588, 20842], + [79, -22], + [85, -56], + [51, -58], + [-4, -67], + [67, -3], + [85, -79], + [22, -68], + [-25, -21], + [-68, 13], + [-20, -16], + [-95, 39], + [-69, 47], + [-92, 157], + [-42, 134], + [26, 0] + ], + [ + [11131, 20865], + [36, -23], + [54, -7], + [34, 18], + [169, -3], + [94, -22], + [53, 24], + [106, -28], + [-23, -53], + [-41, -51], + [5, -47], + [-114, -19], + [-30, 14], + [-142, 4], + [-78, 10], + [-70, -16], + [-46, 10], + [-112, -5], + [-44, 17], + [-39, 37], + [-1, 76], + [75, 37], + [80, 8], + [34, 19] + ], + [ + [9595, 20924], + [86, -19], + [68, -63], + [-10, -25], + [-88, 5], + [-74, -33], + [-63, 7], + [-103, 57], + [4, 48], + [92, 18], + [88, 5] + ], + [ + [7626, 21038], + [40, -2], + [-6, -81], + [-40, -15] + ], + [ + [9312, 21135], + [20, -44], + [-59, -43], + [-47, 2], + [-11, 25], + [73, 57], + [24, 3] + ], + [ + [7623, 21343], + [111, -46], + [19, -52], + [-12, -73], + [-121, -20] + ], + [ + [10564, 21453], + [68, -12], + [125, -37], + [26, -24], + [90, -9], + [53, -37], + [29, -59], + [57, -23], + [55, 27], + [51, -5], + [155, -69], + [-19, -50], + [-50, -12], + [16, -59], + [51, -42], + [-53, -97], + [-73, 14], + [-11, -16], + [-154, -40], + [-78, -4], + [-18, 24], + [-66, -12], + [-9, -44], + [-28, -14], + [-55, 19], + [-3, 58], + [-89, 50], + [-49, 5], + [2, 39], + [180, -5], + [0, 35], + [-93, 44], + [-67, -7], + [-47, 14], + [-25, 39], + [-37, 6], + [-11, 61], + [-71, 32], + [15, 42], + [67, 21], + [-77, 48], + [-3, 72], + [42, 22], + [104, 5] + ], + [ + [13503, 21595], + [130, -11], + [3, -35], + [-138, -36], + [-152, -21], + [33, 69], + [124, 34] + ], + [ + [9057, 21770], + [54, -5], + [80, -40], + [76, -5], + [50, -67], + [63, -41], + [-5, -82], + [27, -48], + [35, 35], + [2, 49], + [53, 8], + [50, 32], + [89, -7], + [99, -68], + [36, -88], + [111, -4], + [57, 21], + [28, -38], + [32, -4], + [63, -37], + [27, -55], + [57, -24], + [-62, -93], + [-5, -58], + [67, -6], + [43, -52], + [94, -87], + [-31, -42], + [8, -50], + [-114, -43], + [-70, 3], + [-11, -21], + [-58, 21], + [-51, 0], + [-48, 22], + [-66, 61], + [-27, 96], + [-34, 37], + [-74, -6], + [-31, 31], + [-178, 31], + [-94, -32], + [-59, 29], + [-2, 59], + [-80, -9], + [-39, -21], + [-102, -10], + [-51, -43], + [-105, 8], + [-41, 37], + [-37, -3], + [-72, 71], + [-13, 39], + [52, 41], + [98, -2], + [31, -20], + [104, -18], + [85, -3], + [-7, 155], + [-87, 20], + [-44, -28], + [27, 94], + [-43, 33], + [-80, -16], + [-67, -77], + [-62, -12], + [2, 31], + [40, 30], + [26, 76], + [-68, 2], + [-69, -16], + [-61, 4], + [-35, 23], + [4, 70], + [43, 45], + [4, 46], + [61, -24], + [305, 45] + ], + [ + [10126, 22219], + [33, -25], + [92, 15], + [41, -24], + [47, -69], + [-6, -54], + [24, -42], + [-45, -77], + [-34, 30], + [-97, 20], + [13, 51], + [-61, 25], + [-125, -8], + [-21, 8], + [10, 89], + [21, 30], + [56, 29], + [52, 2] + ], + [ + [11153, 22538], + [63, -2], + [-17, -53], + [-46, 55] + ], + [ + [11612, 22927], + [109, -17], + [65, -25], + [87, -16], + [99, -31], + [66, -43], + [3, -45], + [56, -50], + [22, -42], + [77, -52], + [10, -38], + [104, -32], + [27, -72], + [38, -15], + [129, -13], + [62, 9], + [91, -9], + [47, -25], + [-19, -148], + [91, -59], + [74, -13], + [17, 50], + [-44, 18], + [-28, 44], + [4, 53], + [68, 31], + [106, -7], + [79, -19], + [19, -119], + [-39, -25], + [-67, -6], + [8, -41], + [56, 11], + [106, -2], + [31, -40], + [11, -49], + [32, -6], + [-42, -153], + [-71, -46], + [21, -65], + [39, 69], + [150, 48], + [65, -10], + [59, -41], + [12, -77], + [36, 46], + [9, 55], + [74, -25], + [15, -52], + [51, -50], + [32, -4], + [45, -37], + [14, -36], + [-76, -19], + [-21, -29], + [-233, -48], + [-64, -21], + [-27, -52], + [-40, -9], + [-55, 49], + [-1, -87], + [-79, -49], + [-51, -80], + [-29, -14], + [-64, 40], + [-22, 44], + [12, 127], + [-48, -1], + [-26, -89], + [27, -105], + [37, -10], + [22, -41], + [-30, -57], + [-61, -11], + [-94, 95], + [-25, -54], + [49, -53], + [5, -28], + [-49, -78], + [-16, -61], + [-51, 8], + [-37, 26], + [-43, 62], + [-72, 62], + [-91, 112], + [-15, -77], + [74, -60], + [38, -59], + [-12, -41], + [-53, 0], + [-42, 56], + [-50, 15], + [-17, -31], + [-2, -79], + [-155, -3], + [-57, 18], + [-100, 6], + [-55, 28], + [-54, -16], + [-37, 45], + [-28, -3], + [-78, 51], + [-72, 34], + [25, 49], + [57, -12], + [30, 18], + [133, 8], + [72, -7], + [112, 29], + [54, -10], + [-4, 40], + [-77, 9], + [-13, -22], + [-72, -16], + [-142, 3], + [-91, 10], + [-57, 22], + [-31, -18], + [-81, -12], + [-39, 46], + [-33, 11], + [-6, 92], + [-66, -6], + [-43, 45], + [-31, 59], + [52, 20], + [76, 3], + [68, 68], + [107, -6], + [43, 9], + [73, -11], + [98, 2], + [208, 25], + [102, 3], + [-8, 26], + [-82, 1], + [-119, -19], + [-151, -5], + [-61, 58], + [130, -7], + [67, 18], + [108, 8], + [-1, 22], + [-70, -4], + [-68, -19], + [-66, 3], + [-59, 37], + [79, 42], + [9, 66], + [-30, 16], + [-30, -28], + [-45, -73], + [-24, 8], + [-75, -28], + [-54, 41], + [-11, -72], + [-59, -11], + [-8, 45], + [-35, -39], + [-39, 8], + [-9, -41], + [-83, -21], + [-13, 78], + [-73, 23], + [-26, -50], + [-106, -23], + [-20, -23], + [-47, 13], + [-27, 69], + [-28, -22], + [-81, 28], + [7, 54], + [29, 25], + [72, 3], + [195, 42], + [48, 23], + [-1, 49], + [-41, -7], + [-52, -40], + [-194, -24], + [-100, 11], + [-67, 53], + [-44, 54], + [-34, -5], + [-27, 42], + [2, 80], + [-20, 62], + [94, -5], + [69, -35], + [92, -20], + [124, -4], + [70, 9], + [21, 29], + [64, 27], + [-7, 45], + [-46, -41], + [-145, -24], + [-149, 44], + [-117, 49], + [38, 56], + [137, 1], + [-43, 48], + [-12, 53], + [102, 24], + [134, 8], + [80, -29], + [20, 28], + [-30, 69], + [-77, 24], + [-2, 23], + [-76, -14], + [-38, 11], + [17, 69], + [37, 52], + [93, 29], + [85, -13], + [26, -41], + [27, 27], + [44, -2], + [10, 49], + [65, 6], + [81, -14], + [69, 4], + [-1, 73], + [-187, -6], + [-93, 23], + [59, 71], + [107, -17], + [38, 24] + ], + [ + [17382, 23927], + [56, -13], + [34, -52], + [130, 16], + [44, -53], + [20, 27], + [59, -15], + [39, 13], + [74, -12], + [129, -1], + [137, -17], + [102, 5], + [4, -35], + [-106, -38], + [-103, -27], + [-214, -39], + [-3, -27], + [79, 8], + [116, -1], + [123, 38], + [59, -7], + [10, 22], + [223, 57], + [60, -7], + [42, -23], + [28, 52], + [85, 13], + [43, -56], + [61, -31], + [97, 44], + [114, 0], + [23, -47], + [-12, -47], + [52, -12], + [11, -31], + [56, -5], + [29, -43], + [168, 9], + [57, -24], + [122, -8], + [97, -61], + [0, -61], + [-39, -35], + [-81, -26], + [-68, -8], + [-9, -33], + [-59, -32], + [-221, -80], + [-128, -24], + [-50, -31], + [-75, -9], + [-14, -24], + [-62, -18], + [-78, 6], + [-29, 18], + [-152, -18], + [2, -31], + [-94, -23], + [-197, -5], + [-234, -13], + [-8, -26], + [145, 8], + [63, -10], + [10, -31], + [-380, -89], + [-87, -30], + [-159, -30], + [-103, -32], + [5, -31], + [109, 47], + [74, 8], + [197, 33], + [136, 36], + [189, 28], + [318, 65], + [108, 17], + [144, 11], + [16, -53], + [-34, -32], + [-91, -40], + [-151, -57], + [-123, -10], + [-53, -47], + [-37, -10], + [-23, -36], + [-164, -69], + [-74, -7], + [-11, -27], + [-66, -20], + [-26, -31], + [-52, -9], + [-262, -155], + [-37, -64], + [-99, -29], + [-76, -5], + [-31, 56], + [-93, 56], + [-1, -25], + [59, -41], + [-2, -58], + [51, -16], + [7, -57], + [-137, 5], + [-175, -37], + [66, -26], + [78, 24], + [62, -7], + [-37, -78], + [-131, -15], + [59, -39], + [-31, -62], + [-80, -33], + [-117, -10], + [-83, -31], + [-43, 18], + [-60, -4], + [-60, 15], + [-3, 32], + [-47, 30], + [-89, 11], + [-85, -7], + [-26, 34], + [-83, 4], + [-102, -20], + [15, -39], + [187, 5], + [18, -21], + [49, 10], + [66, -26], + [50, -61], + [-2, -55], + [-50, -15], + [-95, 1], + [-51, 28], + [-23, -66], + [-153, 1], + [-26, 25], + [-74, -53], + [-95, -1], + [-123, 18], + [-38, 19], + [-29, -60], + [-150, 1], + [-37, 16], + [-28, 40], + [-26, -5], + [-1, -104], + [114, 12], + [169, -5], + [61, -25], + [27, 6], + [281, -2], + [3, -127], + [-99, 6], + [-146, 23], + [-68, 22], + [-16, 43], + [-46, 15], + [-137, 0], + [-110, -7], + [-48, 9], + [-84, -21], + [237, -10], + [129, -18], + [2, -24], + [-186, 6], + [-101, -16], + [-36, -19], + [-82, 25], + [-20, -56], + [-30, -5], + [-12, -78], + [69, 66], + [34, 14], + [97, 4], + [142, 27], + [16, -9], + [147, -7], + [21, -41], + [80, -27], + [69, 7], + [122, -36], + [7, -45], + [-14, -63], + [-49, -61], + [-52, 0], + [-145, -21], + [174, -74], + [-64, -39], + [-25, -53], + [-45, -7], + [-118, 25], + [-117, 2], + [-31, -43], + [108, -13], + [31, -18], + [39, 16], + [103, -10], + [-14, -47], + [-61, -53], + [-79, 41], + [-61, -19], + [-18, -29], + [-46, -5], + [-30, -54], + [19, -70], + [-31, -25], + [-83, -13], + [-64, -30], + [-44, 19], + [-31, 41], + [-2, -72], + [-41, -52], + [-75, -26], + [-23, -45], + [-59, -4], + [-21, -25], + [-27, 42], + [-21, -27], + [-63, -32], + [-102, 16], + [-52, -1], + [-46, -23], + [-101, 11], + [-85, 21], + [-138, 57], + [-28, 35], + [-58, 29], + [-17, -67], + [57, -28], + [31, -40], + [-186, 4], + [59, -40], + [25, -50], + [120, 57], + [105, 11], + [138, -45], + [0, -72], + [82, 71], + [84, 25], + [76, -12], + [52, -29], + [-13, -55], + [-54, -13], + [12, -73], + [68, -13], + [104, 20], + [36, 39], + [62, 21], + [54, -27], + [42, -54], + [2, -154], + [-49, 6], + [-38, -67], + [-45, -10], + [-10, -29], + [-38, 2], + [-20, 65], + [-42, -4], + [-40, -85], + [-70, -21], + [-17, -46], + [-67, 2], + [-123, -46], + [-53, 0], + [-18, -21], + [-98, -19], + [-48, 28], + [51, 127], + [-42, 27], + [-84, 19], + [-37, -22], + [-96, 5], + [-95, 23], + [0, -68], + [-88, 1], + [-44, -12], + [-81, 50], + [0, 54], + [-32, 8], + [-8, -95], + [-100, 7], + [-19, 25], + [-67, 33], + [-14, 61], + [-26, -3], + [0, -98], + [-80, -13], + [-65, 22], + [-25, 47], + [-35, 16], + [20, -95], + [78, -17], + [-13, -47], + [-55, -13], + [-79, -1], + [-120, 42], + [-45, -11], + [-21, 17], + [-81, 10], + [-23, 27], + [-66, 12], + [-31, -31], + [-52, 6], + [-40, 25], + [-80, -7], + [-19, -46], + [-195, 23], + [16, 71], + [-38, 49], + [2, 128], + [-48, -73], + [-7, -56], + [-46, -113], + [-56, 9], + [-71, 43], + [-2, 96], + [-21, 106], + [30, 28], + [153, 59], + [92, 74], + [179, 11], + [50, -10], + [23, 33], + [49, 18], + [-17, 87], + [-26, -17], + [-95, 15], + [-10, 100], + [-53, 41], + [-52, 16], + [19, 106], + [191, 47], + [124, -6], + [99, -26], + [54, -26], + [58, -49], + [61, -159], + [45, 14], + [27, -42], + [65, 2], + [64, -13], + [75, -39], + [7, 58], + [47, -9], + [61, 8], + [71, -18], + [14, 54], + [45, 6], + [55, 30], + [114, 116], + [84, 114], + [-2, 64], + [-28, 13], + [-28, -24], + [8, -50], + [-98, -83], + [-8, -36], + [-60, -67], + [-65, -47], + [-59, -14], + [-132, 14], + [-73, -1], + [-28, 45], + [-83, 30], + [-27, 121], + [-30, 0], + [-48, 52], + [146, 82], + [27, 82], + [26, 26], + [22, 134], + [-18, 5], + [-48, -135], + [-23, -4], + [-22, -47], + [-51, -51], + [-180, -32], + [13, 64], + [52, 65], + [-1, 52], + [-88, -101], + [-53, 15], + [-54, -59], + [-100, -9], + [-79, 9], + [-21, 131], + [11, 61], + [76, 56], + [77, 0], + [-23, 47], + [10, 52], + [56, 40], + [54, 12], + [107, 6], + [105, 18], + [81, 37], + [68, -6], + [91, -30], + [116, 0], + [105, -15], + [33, -22], + [142, -58], + [39, 5], + [48, -51], + [51, -23], + [-38, 94], + [-64, 0], + [-9, 17], + [-85, 24], + [-8, 26], + [126, 4], + [103, -8], + [50, 13], + [94, -1], + [-31, 91], + [-64, -61], + [-110, -12], + [-65, 21], + [-109, 8], + [-76, -5], + [-142, 15], + [-129, 33], + [37, 74], + [94, -14], + [59, -49], + [15, 42], + [-63, 44], + [-32, 0], + [-54, 83], + [-13, 53], + [-83, 32], + [-49, 85], + [-106, 45], + [-83, 2], + [-139, 32], + [-13, 100], + [-46, 105], + [31, 104], + [28, 15], + [132, 7], + [123, -35], + [308, 0], + [68, -9], + [65, -27], + [76, -57], + [108, -55], + [75, -54], + [47, -8], + [52, -39], + [25, -78], + [38, -16], + [21, -51], + [30, -4], + [27, 29], + [78, -11], + [33, -19], + [95, -6], + [15, 19], + [180, 27], + [-30, 27], + [-150, -27], + [-84, 8], + [-48, 21], + [-84, 8], + [-23, 35], + [13, 101], + [-134, 30], + [-168, 106], + [-51, 48], + [30, 52], + [87, 5], + [109, 20], + [38, -4], + [214, 27], + [93, 17], + [59, -5], + [34, 40], + [108, 2], + [113, 12], + [125, 0], + [105, 29], + [-170, 3], + [-78, -9], + [-31, 48], + [134, 35], + [193, 37], + [166, 18], + [223, 4], + [62, -24], + [13, -39], + [26, 34], + [-65, 48], + [-195, 7], + [-129, 12], + [-280, -33], + [23, 89], + [99, 47], + [30, 53], + [60, 18], + [17, 26], + [90, 40], + [91, 12], + [65, 26], + [17, 28], + [-302, -81], + [-98, -61], + [-55, -19], + [-14, -36], + [-79, 21], + [-60, 33], + [18, -75], + [-5, -80], + [-18, -37], + [-189, -69], + [-136, -32], + [-36, -15], + [-163, -34], + [-301, -35], + [-84, 5], + [15, 54], + [69, 28], + [141, 15], + [83, 35], + [-9, 33], + [-131, -39], + [-17, -15], + [-201, -36], + [-42, 14], + [-12, 36], + [-47, -127], + [-190, -20], + [-192, 0], + [-43, 11], + [-137, 0], + [-156, 41], + [22, 44], + [93, 64], + [133, 104], + [140, 23], + [-18, 24], + [-110, -1], + [-127, -51], + [-67, -57], + [-135, -79], + [-65, -58], + [-68, 0], + [-169, 38], + [-64, 31], + [-213, 71], + [42, 48], + [244, 34], + [64, 0], + [94, -15], + [105, 1], + [145, 21], + [47, 23], + [92, 14], + [18, 19], + [124, 55], + [122, 30], + [-27, 29], + [-40, -16], + [-213, -45], + [-72, -47], + [-158, -15], + [-96, -21], + [-126, -4], + [-41, 6], + [-186, -12], + [-193, -23], + [-68, 4], + [-66, 22], + [-38, 67], + [125, 78], + [134, 72], + [71, 19], + [35, 26], + [134, 10], + [-3, 31], + [-113, -17], + [-208, -50], + [-206, -57], + [-30, 30], + [5, 45], + [105, 42], + [3, 47], + [-37, 30], + [-20, -29], + [-93, 10], + [-50, -23], + [-38, -58], + [-89, -5], + [7, 41], + [-67, 15], + [7, 71], + [48, 19], + [70, -7], + [35, 42], + [84, 4], + [27, 26], + [230, 17], + [10, -29], + [63, -27], + [-14, 63], + [105, 55], + [104, 29], + [116, 11], + [4, 11], + [169, -23], + [56, -72], + [63, -33], + [-2, 97], + [144, -4], + [80, -24], + [70, -46], + [1, 46], + [112, 0], + [94, -12], + [7, -41], + [33, -17], + [0, 55], + [-49, 25], + [-207, 15], + [-84, 30], + [-120, 8], + [-65, 32], + [-2, 31], + [225, -1], + [44, 10], + [86, -6], + [2, 85], + [50, -12], + [47, -53], + [87, 6], + [-6, 46], + [127, 13], + [106, -13], + [82, -53], + [1, -23], + [93, -41], + [-19, -56], + [79, 10], + [2, 41], + [-36, 30], + [-2, 55], + [133, -32], + [35, -32], + [60, -9], + [180, -48], + [24, -62], + [35, 18], + [218, -12], + [51, -52], + [5, 76], + [-171, 13], + [-87, 27], + [-10, 38], + [-95, 5], + [-284, 92], + [-16, 98], + [40, 5], + [156, -10], + [29, 25], + [56, 2], + [8, 45], + [68, -21], + [63, -50], + [57, -17], + [69, 8], + [-105, 69], + [34, 57], + [127, -16], + [32, 27], + [-8, 59], + [71, 15], + [44, 32], + [80, 24], + [89, -12], + [13, 17], + [57, -12], + [32, -41], + [62, -2], + [40, 38], + [48, 7], + [164, -39], + [104, -78], + [28, -33], + [135, -41], + [-5, -64], + [107, 83], + [-102, 34], + [-56, 6], + [-13, 41], + [-72, 38], + [-21, 26], + [-149, 44], + [12, 40], + [185, -2], + [123, 20], + [79, -4], + [97, -17], + [44, 12], + [157, -7], + [111, -40], + [47, -62], + [128, -51], + [160, -40], + [-24, -37], + [22, -74], + [36, -15], + [18, 49], + [6, 89], + [-115, 35], + [-79, 16], + [-45, 23], + [-3, 73], + [27, 23], + [224, 49], + [169, -1], + [-11, -61], + [53, -29], + [74, 11], + [-25, 58], + [154, 28], + [180, 3] + ], + [ + [14578, 6666], + [45, -12], + [49, -41], + [38, -70], + [37, -155], + [-17, -24], + [-77, 30], + [-51, 46], + [-69, 22], + [-98, 55], + [-25, 37], + [56, 87], + [112, 25] + ], + [ + [15030, 5650], + [-1, -260], + [0, -1993], + [-15, -83], + [37, -95], + [-4, -87], + [56, -154], + [11, -5], + [44, -159], + [77, -134], + [70, -15], + [19, -23], + [44, 13], + [18, -18], + [120, -48], + [62, -77], + [30, -94], + [50, -45], + [14, 61], + [36, -11], + [3, -81], + [27, -99], + [72, -60], + [40, 36], + [52, -23], + [46, -58], + [30, 47], + [135, 67], + [44, 39], + [75, -3], + [63, -42], + [-23, -152], + [31, -56] + ], + [ + [16293, 2038], + [-49, -82], + [-109, -50], + [-77, -79], + [-112, -185], + [-14, -51], + [-36, -51], + [-47, -36], + [-68, -108], + [-87, -267], + [-460, 1], + [-128, -105], + [32, -110], + [16, -161], + [25, -45], + [-8, -43], + [-278, -253], + [-290, -108], + [-92, -106], + [-188, -199], + [-67, 0], + [-95, 107], + [-19, 99], + [13, 145], + [55, 25], + [56, 131], + [29, 32], + [24, 224], + [73, 341], + [-72, 761], + [-26, 251], + [-261, 276], + [38, 103], + [-33, 61], + [-62, 8], + [-31, -35], + [-29, 76], + [-17, 132], + [3, 66], + [-59, -13], + [-45, -28], + [-51, 101], + [-20, 146], + [-293, 288], + [-178, 171], + [-267, 249], + [-124, 110], + [-78, -36], + [-158, -157], + [-37, 24], + [-69, 7], + [-24, -15], + [-40, 57], + [-173, 10], + [-24, 77], + [-73, -53], + [-31, -44], + [-33, -12], + [-71, 40], + [-8, 43], + [-64, 34], + [-17, 57], + [-51, -3], + [-2, -59], + [-23, -10], + [-35, 125], + [-35, -6], + [-18, 57], + [-54, 47], + [-76, 13], + [-51, -30], + [-1, -26], + [-69, -15], + [-24, 64], + [-91, 17], + [-8, 25], + [-68, -1], + [-36, 62], + [1, 40], + [-36, 240], + [-32, 43], + [-48, 7] + ], + [ + [12719, 8767], + [28, 2], + [49, -97], + [40, -26], + [44, -56], + [80, -44], + [37, -77], + [47, -131], + [47, -61], + [60, -43], + [69, -8], + [59, -48], + [73, -42], + [20, -26], + [84, -28], + [86, -82], + [59, -86], + [56, -30], + [7, -40], + [34, 9], + [42, -23], + [71, 0], + [49, 23], + [55, -14], + [46, 25], + [53, -14], + [49, -34], + [71, -10], + [50, 16], + [52, -54], + [25, 18], + [52, -24], + [43, -40], + [2, -86], + [17, -59], + [-22, -85], + [-8, -76], + [-29, -138], + [3, -47], + [43, -80], + [32, -164], + [-18, -53], + [-2, -92], + [23, -148], + [-28, -37], + [-17, -86], + [14, -75], + [69, -88], + [7, -41], + [63, -112], + [31, -37], + [24, -155], + [19, -40], + [94, -68], + [16, -45], + [62, -71], + [23, -57], + [29, -178], + [31, -41], + [48, -10], + [55, -72], + [23, -6], + [27, 61], + [-9, 52], + [52, 62] + ], + [ + [18824, 3103], + [4, -98], + [-17, -30], + [40, -109], + [23, -116], + [19, 72], + [97, -43], + [11, -35], + [63, -18], + [89, 38], + [117, 12], + [-4, -79], + [-33, 2], + [-36, -133], + [-8, -81], + [-81, -9], + [-32, 65], + [-3, 70], + [-36, -2], + [-32, -38], + [-84, 47], + [-84, 120], + [-44, -9], + [2, 71], + [-27, 61], + [-40, -8], + [-3, 62], + [57, 131], + [42, 57] + ], + [ + [17587, 3247], + [2, 60], + [-43, 31], + [-190, -440], + [-15, -162], + [-33, -41], + [-24, -88], + [-5, -130], + [11, -47], + [-36, -51], + [6, -37], + [-41, -39], + [-65, -151], + [4, -47], + [-21, -45], + [-15, 57], + [-51, -55], + [-29, 32], + [-32, -48], + [-24, -119], + [-197, -6], + [-180, 7], + [-268, -14], + [-82, 26], + [20, 52], + [59, 44], + [16, 54], + [52, 10], + [23, 28], + [68, 36], + [3, 65], + [21, 92], + [35, 63], + [30, 140], + [51, 46], + [48, 22], + [62, 85], + [60, 55], + [22, 78], + [75, 47], + [47, -4], + [41, 44], + [55, 32], + [24, 48], + [43, 2], + [28, 34], + [78, 55], + [52, 91], + [36, 94], + [34, 39], + [8, 64], + [57, 72], + [58, 130], + [17, 66], + [129, 195], + [92, 88], + [97, 111], + [53, 28], + [24, 32], + [145, 105], + [43, 23], + [86, 74], + [65, 24], + [58, 39], + [165, 35], + [59, -3], + [97, -27], + [80, -56], + [51, -59], + [44, -77], + [-27, -151], + [23, -64], + [-27, -47], + [-86, -48], + [-20, -76], + [-44, -32], + [-52, -61], + [-71, -22], + [-19, 36], + [-68, 30], + [-35, 43], + [-21, -45], + [-111, -4], + [-68, -65] + ], + [ + [18786, 4779], + [55, -38], + [133, -35], + [72, -34], + [139, -103], + [29, -60], + [64, -48], + [58, -28], + [44, -91], + [-18, -69], + [-111, -8], + [-57, 38], + [-112, 37], + [-74, 51], + [-17, 32], + [-64, 31], + [-22, 85], + [-79, 93], + [-105, 59], + [-12, 66], + [77, 22] + ], + [ + [15073, 6017], + [5, -72], + [-15, -26], + [-50, -3], + [-6, 44], + [66, 57] + ], + [ + [14911, 6765], + [17, -73], + [-37, -9], + [0, 66], + [20, 16] + ], + [ + [15233, 8524], + [6, -130], + [-24, -37], + [-14, 121], + [32, 46] + ], + [ + [15024, 8582], + [-23, -112], + [-16, -27], + [-85, -73], + [4, 82], + [44, 5], + [56, 45], + [20, 80] + ], + [ + [15126, 8551], + [26, -71], + [-19, -63], + [-33, -48], + [-15, -68], + [-39, -95], + [-43, 8], + [18, 68], + [0, 59], + [-62, -129], + [-13, 66], + [35, 87], + [31, 37], + [47, -3], + [24, 160] + ], + [ + [17543, 10096], + [28, -55], + [-24, -57], + [-24, 15], + [20, 97] + ], + [ + [17811, 10926], + [29, -9], + [46, -78], + [-30, -64], + [-91, -79], + [-28, 42], + [51, 183], + [23, 5] + ], + [ + [15339, 11052], + [-33, -41], + [-48, -20], + [-5, 38], + [86, 23] + ], + [ + [15012, 11974], + [31, -16], + [49, -85], + [-10, -125], + [-36, -47], + [-24, -111], + [-35, -78], + [-48, -7], + [-20, 89], + [-52, 19], + [-16, 33], + [-6, 92], + [31, 121], + [50, 92], + [86, 23] + ], + [ + [20506, 5630], + [-32, 46], + [-153, -64], + [-29, -44], + [-79, -33], + [-29, 30], + [-48, -60], + [-84, -140], + [-1, -88], + [-86, -71], + [-31, -39], + [-32, -86], + [-58, -26], + [-15, -80], + [-62, -39], + [-39, 29], + [-20, -30], + [-58, -12], + [-37, 18], + [-77, -28], + [-33, 8], + [-60, -20], + [-71, -45], + [-30, 80], + [-32, -9], + [-101, 46], + [-48, -16], + [-39, 16], + [-92, 0], + [-6, -27], + [-56, -23], + [-50, 20], + [-33, 33], + [-84, -1], + [-20, -21], + [-62, 35], + [-31, -19], + [-109, -9], + [-87, 21], + [-84, -28], + [-73, 9], + [-16, -39], + [-74, -10], + [-23, 48], + [-16, -61], + [-45, -32], + [-5, -32], + [-57, -41], + [-14, -76], + [-40, -47], + [3, -58], + [-17, -43], + [-1, -79], + [-35, -81], + [-31, 5], + [-151, -32], + [-15, -98], + [-50, -31], + [-44, 8], + [-15, -67], + [-39, -34], + [-68, -93], + [-19, -93], + [-32, -54], + [-45, -116], + [-64, -93], + [-19, -114], + [-24, -81], + [-54, -69], + [-26, -94], + [-54, -36], + [-65, -183], + [-45, -46], + [-71, -104], + [-25, -59], + [-55, -18], + [-49, -35], + [-34, 14], + [-47, -55], + [-35, -19], + [-25, -70], + [-46, -28], + [-42, -64], + [-47, -16], + [-52, -40], + [-27, -42], + [-9, -77], + [-69, -159], + [-9, -134], + [-24, -29], + [-38, 15], + [-26, -51], + [-64, -26], + [-48, -56] + ], + [ + [15030, 5650], + [-6, 47], + [54, 70], + [15, -74], + [39, -1], + [48, -89], + [31, 57], + [-16, 70], + [-37, 60], + [4, 56], + [29, 1], + [-1, 79], + [26, 10], + [42, 85], + [18, 122], + [2, 88], + [-56, 58], + [-15, 101], + [5, 65], + [-27, 16], + [7, 73], + [-17, 27], + [-9, 74], + [3, 122], + [-30, 23], + [26, 60], + [-28, 119], + [10, 122], + [-27, 77], + [-45, 48], + [-39, 113], + [3, 49], + [-24, 95], + [3, 61], + [127, 58], + [51, 51], + [127, 76], + [46, 61], + [81, 65], + [41, 69], + [124, 163], + [6, 46], + [92, 162], + [24, 79], + [58, -28], + [60, -8], + [44, 51], + [-83, 87], + [-22, 67], + [-17, -115], + [-21, -51], + [2, 387], + [-5, 141], + [-25, 167], + [-29, 72], + [-29, 123], + [-48, 135], + [-67, 86], + [-35, 77], + [-23, 5], + [-105, 78], + [-4, 33], + [-112, 119], + [6, 74], + [-24, 81], + [17, 21], + [35, -17], + [32, 101], + [33, 72], + [24, 5], + [62, 96], + [-38, 51], + [41, 60], + [-17, 62], + [88, 61], + [13, 48], + [-19, 30], + [20, 72], + [-14, -7], + [-39, 31], + [22, 91], + [-9, 26], + [-12, 23], + [-24, 18], + [-10, 41], + [30, 38], + [-53, 94], + [0, 62], + [-65, 24], + [-23, 28], + [50, 76], + [36, 35], + [24, 101], + [-10, 109], + [58, 129], + [-42, -25], + [-16, 55], + [-42, -2], + [-31, 98], + [1, 43], + [-25, 128], + [9, 80], + [12, 56], + [65, 26], + [79, 85], + [90, -28], + [83, -5], + [51, -42], + [70, -16], + [168, -77], + [85, 6], + [85, -25], + [58, -66], + [-5, 65], + [76, -3], + [33, 41], + [40, 12], + [46, 55], + [60, 25], + [30, -58], + [77, -31], + [47, -83], + [38, -22], + [-1, -8], + [38, 8], + [35, -92], + [50, -54], + [35, -4], + [26, -43], + [20, -35], + [21, -85], + [29, 58], + [78, -55], + [-49, -31], + [-7, -50], + [27, -32], + [-10, -52], + [28, -58], + [32, -30], + [111, -24], + [52, -30], + [53, -33], + [35, 8], + [27, 39], + [50, -73], + [9, -76], + [38, -22], + [18, 51], + [43, -9], + [-7, 64], + [20, 55], + [34, -31], + [19, -68], + [-7, -55], + [-67, -70], + [7, -47], + [-30, -38], + [17, -140], + [31, -54], + [-5, -8], + [-9, -77], + [-44, 3], + [-10, -41], + [-53, 15], + [1, -36], + [88, 4], + [31, -50], + [-3, -50], + [23, -66], + [-33, -53], + [-4, -71], + [19, -80], + [30, 20], + [52, -16], + [4, -60], + [-37, -22], + [1, -38], + [-41, -182], + [-33, 0], + [-3, 79], + [-32, 54], + [9, -120], + [-69, -26], + [64, -116], + [57, 113], + [44, 51], + [39, 19], + [63, -12], + [83, 16], + [70, -81], + [1, -97], + [18, -41], + [59, -8], + [25, -69], + [54, 6], + [-2, -74], + [21, -57], + [42, 67], + [87, 38], + [41, 87], + [21, -51], + [40, 33], + [34, 123], + [41, 91], + [67, -37], + [30, 75], + [52, 37], + [28, 75], + [-16, 25], + [5, 71], + [25, -24], + [11, 86], + [41, 64], + [-37, 117], + [39, 72], + [55, 68], + [4, 57], + [10, 12], + [23, 38], + [10, 76], + [51, 56], + [-2, 5], + [40, -18], + [2, -2], + [0, 0], + [1, 0], + [11, -12] + ], + [ + [16262, 12152], + [29, -29], + [43, 7], + [16, -50], + [-107, 45], + [19, 27] + ], + [ + [15364, 12590], + [81, -10], + [42, -24], + [34, -91], + [-12, -51], + [-94, -48], + [-33, 32], + [-97, 136], + [-8, 30], + [87, 26] + ], + [ + [15571, 12713], + [66, -9], + [75, -58], + [33, -89], + [-26, -33], + [-61, 19], + [-109, 108], + [22, 62] + ], + [ + [9690, 4229], + [-1160, 1], + [-953, -1] + ], + [ + [478, 10582], + [-31, 48], + [31, 156], + [-154, -10], + [-72, -88], + [-115, 72], + [-18, -52], + [-118, 50], + [0, 3903], + [-1, 541], + [1, 950], + [149, -34], + [115, 14], + [34, -6], + [63, -45], + [47, 5], + [44, -17], + [65, -68], + [114, -95], + [9, 10], + [4, 30], + [20, -47], + [67, -55], + [197, -107], + [25, 0], + [17, 6], + [42, -36], + [74, -1], + [22, 3], + [0, -4], + [0, -3] + ] + ], + "transform": { + "scale": [0.004091342742859161, 0.0017315871777225339], + "translate": [-141.00686645507812, 41.6769256591798] + }, + "objects": { + "canada": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3]], + "type": "Polygon", + "properties": { + "ID_0": 42, + "ISO": "CAN", + "NAME_0": "Canada", + "ID_1": 1, + "NAME_1": "Alberta", + "TYPE_1": "Province", + "ENGTYPE_1": "Province", + "NL_NAME_1": "", + "VARNAME_1": "" + } + }, + { + "arcs": [ + [[4]], + [[5]], + [[6]], + [[7]], + [[8]], + [[9]], + [[10]], + [[11]], + [[12]], + [[13]], + [[14]], + [[15]], + [[16]], + [[17]], + [[18]], + [[19]], + [[20]], + [[21]], + [[22]], + [[23]], + [[24]], + [[25]], + [[26]], + [[27]], + [[28]], + [[29]], + [[30]], + [[31]], + [[32]], + [[33, 34, -3, 35]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 42, + "ISO": "CAN", + "NAME_0": "Canada", + "ID_1": 2, + "NAME_1": "British Columbia", + "TYPE_1": "Province", + "ENGTYPE_1": "Province", + "NL_NAME_1": "", + "VARNAME_1": "Colombie britannique|New Caledonia" + } + }, + { + "arcs": [[36, 37, 38, 39, 40]], + "type": "Polygon", + "properties": { + "ID_0": 42, + "ISO": "CAN", + "NAME_0": "Canada", + "ID_1": 3, + "NAME_1": "Manitoba", + "TYPE_1": "Province", + "ENGTYPE_1": "Province", + "NL_NAME_1": "", + "VARNAME_1": "" + } + }, + { + "arcs": [[[41]], [[42]], [[43, 44, 45, 46]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 42, + "ISO": "CAN", + "NAME_0": "Canada", + "ID_1": 4, + "NAME_1": "New Brunswick", + "TYPE_1": "Province", + "ENGTYPE_1": "Province", + "NL_NAME_1": "", + "VARNAME_1": "Nouveau-Brunswick|Acadia" + } + }, + { + "arcs": [ + [[47]], + [[48]], + [[49]], + [[50]], + [[51]], + [[52]], + [[53]], + [[54]], + [[55]], + [[56]], + [[57]], + [[58, 59]], + [[60]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 42, + "ISO": "CAN", + "NAME_0": "Canada", + "ID_1": 5, + "NAME_1": "Newfoundland and Labrador", + "TYPE_1": "Province", + "ENGTYPE_1": "Province", + "NL_NAME_1": "", + "VARNAME_1": "Newfoundland|Terre-Neuve|Terre-Neuve-et-Labrador" + } + }, + { + "arcs": [ + [[61]], + [[62, 63, -4, -35, 64, 65]], + [[66, 67]], + [[68, 69]], + [[70]], + [[71]], + [[72, 73]], + [[74, 75]], + [[76]], + [[77]], + [[78]], + [[79, 80]], + [[81, 82]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 42, + "ISO": "CAN", + "NAME_0": "Canada", + "ID_1": 6, + "NAME_1": "Northwest Territories", + "TYPE_1": "Territoire", + "ENGTYPE_1": "Territory", + "NL_NAME_1": "", + "VARNAME_1": "Territoires du Nord-Ouest" + } + }, + { + "arcs": [[[-44, 83]], [[84]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 42, + "ISO": "CAN", + "NAME_0": "Canada", + "ID_1": 7, + "NAME_1": "Nova Scotia", + "TYPE_1": "Province", + "ENGTYPE_1": "Province", + "NL_NAME_1": "", + "VARNAME_1": "Acadia|Nouvelle-Écosse" + } + }, + { + "arcs": [ + [[85, 86]], + [[87]], + [[88]], + [[89]], + [[90]], + [[91]], + [[92]], + [[93]], + [[94]], + [[95]], + [[96]], + [[97]], + [[98]], + [[99]], + [[100]], + [[101]], + [[102]], + [[103]], + [[104]], + [[105]], + [[106]], + [[107]], + [[108]], + [[109]], + [[110]], + [[111]], + [[112]], + [[113]], + [[114]], + [[115]], + [[116]], + [[117]], + [[118]], + [[119]], + [[120]], + [[121]], + [[122]], + [[123]], + [[124]], + [[125]], + [[126]], + [[127]], + [[128]], + [[129]], + [[130]], + [[131]], + [[132]], + [[133]], + [[134]], + [[-40, -63, 135]], + [[136]], + [[137]], + [[-69, 138, -67, 139]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 42, + "ISO": "CAN", + "NAME_0": "Canada", + "ID_1": 8, + "NAME_1": "Nunavut", + "TYPE_1": "Territoire", + "ENGTYPE_1": "Territory", + "NL_NAME_1": "", + "VARNAME_1": "" + } + }, + { + "arcs": [ + [[140]], + [[141]], + [[142]], + [[143]], + [[144]], + [[145]], + [[146]], + [[147]], + [[148]], + [[149]], + [[150]], + [[151]], + [[152]], + [[153]], + [[154]], + [[155]], + [[156]], + [[157]], + [[158]], + [[159]], + [[160]], + [[161]], + [[-75, 162, -73, 163]], + [[164]], + [[165]], + [[166]], + [[167]], + [[168]], + [[169]], + [[170]], + [[-80, 171]], + [[172]], + [[-82, 173]], + [[174]], + [[175]], + [[176]], + [[177]], + [[178]], + [[179]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 42, + "ISO": "CAN", + "NAME_0": "Canada", + "ID_1": 8, + "NAME_1": "Nunavut", + "TYPE_1": "Territoire", + "ENGTYPE_1": "Territory", + "NL_NAME_1": "", + "VARNAME_1": "" + } + }, + { + "arcs": [[180]], + "type": "Polygon", + "properties": { + "ID_0": 42, + "ISO": "CAN", + "NAME_0": "Canada", + "ID_1": 8, + "NAME_1": "Nunavut", + "TYPE_1": "Territoire", + "ENGTYPE_1": "Territory", + "NL_NAME_1": "", + "VARNAME_1": "" + } + }, + { + "arcs": [[[181]], [[182, 183, -37, 184]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 42, + "ISO": "CAN", + "NAME_0": "Canada", + "ID_1": 9, + "NAME_1": "Ontario", + "TYPE_1": "Province", + "ENGTYPE_1": "Province", + "NL_NAME_1": "", + "VARNAME_1": "Upper Canada" + } + }, + { + "arcs": [[185]], + "type": "Polygon", + "properties": { + "ID_0": 42, + "ISO": "CAN", + "NAME_0": "Canada", + "ID_1": 10, + "NAME_1": "Prince Edward Island", + "TYPE_1": "Province", + "ENGTYPE_1": "Province", + "NL_NAME_1": "", + "VARNAME_1": "Île de Saint-Jean|Île du Prince-Édouard" + } + }, + { + "arcs": [ + [[-46, 186]], + [[187]], + [[188]], + [[189]], + [[190]], + [[191]], + [[-86, 192]], + [[193]], + [[194]], + [[195]], + [[196]], + [[-59, 197, -183, 198]], + [[199]], + [[200]], + [[201]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 42, + "ISO": "CAN", + "NAME_0": "Canada", + "ID_1": 11, + "NAME_1": "Québec", + "TYPE_1": "Province", + "ENGTYPE_1": "Province", + "NL_NAME_1": "", + "VARNAME_1": "Lower Canada" + } + }, + { + "arcs": [[-39, 202, -1, -64]], + "type": "Polygon", + "properties": { + "ID_0": 42, + "ISO": "CAN", + "NAME_0": "Canada", + "ID_1": 12, + "NAME_1": "Saskatchewan", + "TYPE_1": "Province", + "ENGTYPE_1": "Province", + "NL_NAME_1": "", + "VARNAME_1": "" + } + }, + { + "arcs": [[-65, -34, 203]], + "type": "Polygon", + "properties": { + "ID_0": 42, + "ISO": "CAN", + "NAME_0": "Canada", + "ID_1": 13, + "NAME_1": "Yukon", + "TYPE_1": "Territoire", + "ENGTYPE_1": "Territory", + "NL_NAME_1": "", + "VARNAME_1": "Yukon Territory|Territoire du Yukon|Yukon|Yuk¢n" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/china-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/china-topo.json new file mode 100644 index 000000000000..bceeb236d814 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/china-topo.json @@ -0,0 +1,4597 @@ +{ + "type": "Topology", + "arcs": [ + [ + [18360, 6657], + [-1, -60], + [-30, -69], + [7, -26], + [-63, -98], + [-28, 13], + [-42, -63], + [34, -9], + [2, -81], + [-47, -41], + [-63, 6], + [-43, 29], + [-26, -23], + [-5, -109], + [10, -81], + [-57, -57], + [-11, -63], + [-59, -42], + [-41, -66], + [-67, -16], + [-45, -42] + ], + [ + [17785, 5759], + [-21, 50], + [-51, 45], + [-55, -16], + [-68, 2], + [-23, 34], + [-44, -8], + [-33, 77], + [-47, 50], + [-34, -6], + [-14, 47], + [-36, -16], + [-6, -95], + [-46, -14], + [-62, -58], + [-52, 7], + [-22, 52], + [62, 65], + [35, 71], + [-89, 63], + [-34, -9], + [-16, -72], + [-32, -9], + [-76, -56], + [-58, 17] + ], + [ + [16963, 5980], + [-24, 76], + [-4, 122], + [-72, 91], + [12, 68], + [-59, 81], + [30, 85], + [66, 56], + [-51, 101], + [-46, -13], + [-25, 43], + [-55, -22], + [-77, 126] + ], + [ + [16658, 6794], + [2, 50], + [44, 57], + [4, 32], + [73, 55], + [80, -3], + [12, 23], + [11, 178], + [-20, 131], + [-21, 55], + [-85, -60], + [-31, 6], + [-54, 67], + [-84, 19], + [-6, 106], + [-17, 54], + [-80, 19], + [-18, 77], + [87, -2], + [71, 27], + [28, 97], + [-19, 56], + [40, 65], + [89, 15], + [-16, 73], + [14, 56], + [-31, 28], + [18, 73], + [51, 24], + [54, -37], + [38, 0], + [10, -47], + [69, -106], + [87, 36], + [27, 37], + [50, 29], + [29, 40], + [-30, 54], + [-19, 105], + [-51, -8], + [-84, 78], + [5, 76] + ], + [ + [16985, 8429], + [73, 31] + ], + [ + [17058, 8460], + [99, -78], + [42, -6], + [41, -45], + [36, 10], + [42, -118], + [67, -57], + [64, 11], + [23, -32], + [41, 17], + [25, -40], + [73, -50], + [-11, -81], + [82, 1], + [72, 17], + [20, -26], + [-78, -222], + [27, -73], + [69, 27], + [21, -126], + [-8, -51], + [50, -66], + [136, 0], + [14, 70], + [41, 53], + [65, 1], + [42, -71], + [26, 4], + [15, -102], + [-34, -73], + [-165, 61], + [-64, -22], + [51, -47], + [-11, -132], + [-62, -13], + [-3, -36], + [-42, -22], + [-10, -75], + [38, -31], + [12, -47], + [79, -38], + [-6, -36], + [75, -9], + [7, -89], + [-70, -78], + [34, -35], + [121, 3], + [28, 32], + [125, -73], + [63, -10] + ], + [ + [17462, 11337], + [-18, -44], + [-56, -30] + ], + [ + [17388, 11263], + [-73, -26], + [-71, 5], + [-31, -39], + [9, -33], + [56, -31], + [-10, -75] + ], + [ + [17268, 11064], + [-38, -45] + ], + [ + [17230, 11019], + [-80, 10], + [-101, -93], + [-84, 60], + [-84, 15], + [-70, -42], + [-27, 45], + [-45, -2], + [-40, 38], + [28, 66], + [-39, 117], + [93, 57], + [59, 2], + [53, 63], + [-90, 123], + [72, 60], + [32, -19], + [48, 21], + [54, 85], + [83, 2], + [-1, 97], + [86, -1], + [20, -39], + [46, -31], + [65, -76], + [55, 4], + [75, -24], + [-8, -40], + [-42, -41], + [29, -98], + [45, -41] + ], + [ + [14348, 6963], + [55, -11], + [14, -50], + [74, -47], + [48, -55], + [33, -11], + [21, -126], + [-30, -27], + [20, -57], + [-36, -94], + [-72, 45], + [-48, -20], + [-54, -70], + [-77, -52], + [-28, -52], + [-24, 55], + [-67, -44], + [-14, 58], + [-62, -14], + [-55, -64], + [-36, 1], + [-17, 46], + [-53, -58], + [-53, 6], + [-7, -57], + [66, -64], + [-17, -90], + [-4, -107], + [-53, -8], + [27, -58], + [55, 60], + [27, -4], + [7, -81], + [78, -28], + [-1, -98], + [42, -61], + [53, 17], + [0, -77], + [49, -47] + ], + [ + [14209, 5619], + [29, -30], + [-27, -96], + [13, -108], + [20, -39], + [-18, -46] + ], + [ + [14226, 5300], + [-48, -47], + [-9, -53], + [-55, -75], + [-40, 30], + [-63, 7], + [16, 100], + [-26, 35], + [-23, -84], + [-32, 102], + [26, 49], + [-53, 1], + [-65, 24], + [17, 51], + [-33, 139], + [-94, 20], + [-80, -62], + [-29, 47], + [4, 43], + [-86, 17], + [-8, 24], + [-64, -32], + [-15, -73], + [27, -30], + [-19, -51], + [-66, -39], + [-40, 58], + [-44, -3], + [-77, -76], + [18, -52], + [-56, -54], + [-54, -13], + [18, 54], + [-46, 94], + [-5, -91], + [-52, -46] + ], + [ + [13070, 5314], + [-50, 138], + [3, 28], + [-57, 24], + [-50, 42], + [-75, -21], + [-32, 88], + [-9, 83], + [-99, 11], + [-6, 56], + [-43, 20], + [-15, 53], + [38, 62], + [73, 38], + [18, 51], + [45, 10], + [6, 88], + [-58, 42], + [-14, 38], + [22, 43], + [39, 22], + [32, 59], + [76, -21], + [63, -33], + [25, -55], + [62, 11], + [34, 32], + [47, 6], + [65, -139], + [59, -5], + [38, 28], + [24, -24], + [80, 99], + [54, 125], + [47, 70], + [-24, 71], + [36, 52], + [143, -19], + [40, 44], + [-9, 48], + [41, 32], + [-16, 29], + [29, 46], + [-4, 37], + [42, 35], + [21, 92], + [34, -2], + [32, 51], + [55, 35], + [-3, 42], + [-96, 88], + [35, 131], + [56, 15] + ], + [ + [13924, 7210], + [64, -53], + [27, 0], + [57, -58], + [57, -15], + [98, -86], + [5, -42], + [116, 7] + ], + [ + [17385, 2784], + [-56, 44], + [-34, 107], + [5, 46], + [-21, 40], + [27, 53], + [-21, 19], + [-12, 76], + [-25, 57], + [-37, 42], + [-12, 56], + [-84, -6], + [-40, 47], + [-79, 55], + [-58, 0], + [-16, 23], + [-60, 20] + ], + [ + [16862, 3463], + [11, 77], + [-21, 66], + [62, 57], + [-7, 75], + [24, 44], + [0, 69], + [33, 40], + [0, 53], + [64, 28], + [51, 78], + [-15, 85], + [84, 128], + [-12, 80], + [-21, 41], + [13, 61], + [52, 71], + [107, 31], + [89, 132], + [-28, 125], + [-32, 13], + [2, 51], + [71, 12], + [39, 47], + [-5, 49], + [75, 33], + [106, -68], + [19, 48], + [57, 37], + [64, 20], + [22, 29], + [78, 15], + [34, 101] + ], + [ + [17878, 5191], + [23, -26], + [49, 8], + [36, 27], + [44, -41], + [-5, -55], + [-32, -31], + [5, -43], + [41, -50], + [28, -119], + [-11, -59], + [17, -39], + [38, 20], + [45, -29], + [48, -10], + [52, 59], + [40, 2], + [32, 71], + [60, -83], + [15, -78], + [53, -32], + [51, 40], + [97, 27], + [41, -20], + [36, -116] + ], + [ + [18681, 4614], + [-72, -66], + [-9, -56], + [-49, -5], + [-26, -50], + [27, -29], + [-5, -75], + [-58, -8], + [31, 77], + [-43, 6], + [-11, -56], + [-39, 30], + [-53, 5], + [-22, -46], + [43, -13], + [38, -71], + [-36, -17], + [44, -59], + [-46, -27], + [-81, -101], + [78, -36], + [-37, -62], + [-9, -104], + [-48, -24], + [9, -40], + [38, -17], + [-6, -51], + [-46, 13], + [-40, 36], + [-46, -23], + [-39, -44], + [85, -67], + [-38, -48], + [-51, -4], + [-26, 36], + [-92, -75], + [28, -67], + [-17, -33], + [-83, -50], + [45, -24], + [-35, -45], + [-9, -46], + [-72, 27], + [-116, -32], + [-8, 50], + [-32, -53], + [39, -17], + [-24, -54], + [-83, 26], + [-8, -41], + [61, 9], + [31, -71], + [-68, -36], + [-26, -53], + [-83, -46], + [6, -31], + [-33, -50], + [-25, 31], + [-47, -66], + [-69, -25], + [-33, -62] + ], + [ + [9404, 12647], + [261, -574], + [-85, -82], + [12, -47], + [124, -156], + [147, -98], + [14, -39], + [-45, -159], + [151, 6], + [84, 101], + [133, 66], + [155, -8], + [48, 43], + [130, -13], + [41, -22], + [43, -71], + [7, -62], + [-89, -108], + [-45, -95], + [-115, -76], + [-63, -97], + [121, 5], + [105, -77], + [89, -25], + [33, -91], + [68, -17], + [-2, -41], + [135, 2], + [-3, -98], + [13, -54], + [59, -77], + [71, 5], + [56, -95], + [81, -29], + [34, -33], + [63, 2], + [122, 119], + [-106, 106], + [154, 35], + [102, 43], + [61, -37], + [161, -40], + [48, 53], + [91, 71], + [190, 58], + [42, 3], + [59, -24], + [-15, -62], + [61, -105], + [-12, -78], + [-57, -26], + [-62, -127], + [-183, -119], + [22, -34], + [28, -99], + [-72, -33], + [18, -123], + [104, -34], + [89, -100], + [114, -95], + [40, 11] + ], + [ + [12234, 9896], + [78, 6], + [80, -17], + [11, -40], + [-43, -29], + [23, -37], + [57, 22], + [46, -75], + [50, -42], + [54, -16], + [4, -43], + [38, -17], + [20, -44], + [-50, -39], + [18, -86], + [45, -26], + [16, -63], + [30, -42], + [12, -74], + [-71, -64], + [4, -69], + [61, -83], + [70, 12], + [19, -50], + [42, -40], + [60, -17], + [48, -64], + [59, -3], + [3, -29], + [44, -60], + [47, 39], + [15, 65], + [-26, 44], + [14, 33], + [-16, 55], + [44, 25], + [80, -29], + [70, 62], + [-28, 46], + [32, 25], + [5, 76], + [-35, 55], + [-156, 49], + [19, 82], + [-28, 56], + [32, 87], + [51, 44], + [-31, 64], + [27, 53], + [-16, 33], + [78, 22], + [90, -20], + [54, 19], + [44, -35] + ], + [ + [13428, 9717], + [10, -72], + [71, -17], + [27, -42], + [141, -34], + [24, -54], + [81, -48], + [71, -2], + [36, -63], + [75, -1], + [41, -43], + [-29, -46], + [25, -64], + [-26, -98], + [-56, -27], + [9, -133], + [35, -38], + [6, -74], + [-20, -57], + [-137, -22], + [-24, 23], + [-86, -35], + [-93, 31], + [-10, -56], + [18, -51], + [43, -46], + [-20, -25], + [-92, 8], + [-21, -32], + [-94, 12], + [-35, -26], + [-111, 109], + [-148, -4], + [-23, -75], + [25, -41], + [-1, -54], + [-92, -85], + [8, -36], + [49, 5], + [101, -81], + [-14, -58], + [-32, -5], + [-4, -56], + [-36, -19], + [-33, -119], + [25, -86], + [42, -60], + [-21, -45], + [-35, 57], + [-57, -5], + [-47, -29], + [-91, 32], + [-46, -61], + [-2, -41], + [-42, -10], + [6, -48], + [74, -55], + [-4, -95], + [-75, -52], + [-58, -15], + [-36, 16] + ], + [ + [12720, 7569], + [-46, -15], + [27, -74], + [-122, -71], + [-44, 24], + [-59, -24], + [-14, 25], + [-82, 7], + [-58, 49], + [-79, 39], + [-6, 56], + [38, 28], + [-3, 65], + [-43, 140], + [-20, 7], + [-25, 71], + [6, 34], + [-47, 39], + [-113, -14], + [-70, 28], + [-21, -21], + [-43, 42], + [-33, -5], + [-79, 34], + [-12, 68], + [19, 78], + [-28, 46], + [-36, 0], + [-33, 65], + [-76, -21], + [-54, -63], + [-71, -31], + [-14, -58], + [-31, 10], + [-46, -39], + [58, -99], + [0, -56], + [40, -18], + [1, -65], + [-34, -32], + [-53, -4], + [-7, -78], + [-40, 18], + [-21, -40], + [-84, -3], + [-29, 30], + [42, 41], + [26, 63], + [-41, 87], + [-25, -34] + ], + [ + [11235, 7898], + [-58, -24], + [-4, 55], + [-28, 44], + [-61, -23], + [-62, 17], + [-53, 90], + [-48, 24], + [-69, 127], + [-2, 78], + [39, 41], + [55, -28], + [47, -3], + [132, -63], + [49, -8], + [14, -32], + [99, 6], + [44, 27], + [27, 52], + [69, 37], + [-69, 95], + [-31, 0], + [-112, 83], + [78, 20], + [4, 53], + [32, 54], + [110, 55], + [41, 93], + [-38, 94], + [61, 9], + [36, 65], + [76, -19], + [14, 45], + [-29, 75], + [35, 51], + [73, 3], + [-9, 125], + [24, 81], + [-66, 46], + [-43, 134], + [-49, 46], + [51, 32], + [-70, 81], + [-31, 17], + [6, 65], + [43, 36], + [-92, 66], + [-30, 44], + [-110, 60], + [23, 39], + [-28, 25], + [-9, 73], + [-40, -31], + [-10, -78], + [-123, 61], + [-173, 144], + [-64, 37], + [-126, 48], + [-18, 77], + [-103, 36], + [-41, 67], + [-44, 20], + [-14, -41], + [31, -42], + [9, -47], + [-141, 68], + [-68, 41], + [-84, 80], + [-35, 59], + [-56, 36], + [-160, 152], + [-27, -3], + [-67, -74], + [-51, 9], + [-29, 40], + [-114, -110], + [-238, 135], + [-40, 35], + [-139, 32], + [-25, -19], + [2, -206], + [-22, -77], + [21, -16], + [-13, -130], + [-58, 9], + [-44, 34], + [-75, 22], + [3, 36], + [-83, 54], + [-46, -6], + [-80, 67], + [-41, 7], + [-49, 54], + [-33, 2], + [-170, 161], + [-43, -8], + [-95, 33], + [-74, -1], + [-41, 35], + [-137, 0], + [-163, -25], + [-108, 3], + [-144, -42], + [-107, -18], + [-12, 12] + ], + [ + [7714, 10793], + [-9, 63], + [6, 85], + [-26, 45], + [-45, 172], + [61, 115], + [-1, 204], + [175, -14], + [117, 76], + [64, 132], + [108, 145], + [136, 121], + [104, 118], + [147, 77], + [196, 43], + [59, -17], + [73, 11], + [48, 26], + [26, 63], + [-12, 49], + [29, 252], + [107, 60] + ], + [ + [9077, 12619], + [130, 13], + [96, -15], + [101, 30] + ], + [ + [14418, 1727], + [-4, 29], + [63, 19], + [14, 87], + [140, 43], + [39, -9], + [-14, 103], + [34, 56], + [80, -27], + [35, 75], + [-5, 73], + [20, 72], + [117, 40], + [24, 46], + [40, 3], + [56, 74], + [29, 75], + [-21, 29], + [-9, 99], + [14, 83], + [28, 34], + [17, 64], + [45, 3], + [12, 90], + [66, 1], + [0, 35], + [46, 41], + [-20, 62], + [0, 72], + [57, 34], + [17, 36], + [-31, 56], + [7, 39], + [-30, 42], + [37, 56] + ], + [ + [15321, 3362], + [60, 88], + [-9, 54], + [14, 83], + [85, -18], + [105, -7], + [48, -119], + [90, 17], + [-15, 119], + [5, 48], + [-45, -4], + [-4, 42], + [65, 10], + [56, 72], + [56, 4], + [28, -49], + [68, -18], + [19, -22], + [68, 19], + [23, -16], + [32, 57], + [27, 9] + ], + [ + [16097, 3731], + [63, -74], + [45, -12], + [62, 15], + [58, 51], + [80, -93], + [-35, -82], + [-101, -65], + [2, -38], + [-48, -87], + [-42, -18], + [73, -44], + [29, -52], + [41, 34], + [61, -9], + [42, 37], + [34, -22], + [25, 43], + [41, 25], + [27, -17], + [42, 31], + [80, 29], + [25, -11], + [35, -68], + [44, -15], + [20, -31], + [44, 14], + [-28, 52], + [0, 68], + [20, 54], + [26, 17] + ], + [ + [17385, 2784], + [-42, -37], + [-74, -1], + [-19, -65], + [-40, -39], + [9, -44], + [-68, -32], + [-28, -37], + [13, -53], + [-43, -36], + [-76, 0], + [-40, -45], + [-115, -34], + [-85, 42], + [-59, -63], + [-50, -33], + [-64, 72], + [-115, -32], + [10, -47], + [-33, -40], + [-53, -1], + [-15, 102], + [-53, -28], + [-14, -88], + [27, -35], + [-53, -17], + [-22, 68], + [-45, -1], + [-108, -49], + [-77, 29], + [-37, 91], + [-78, -1], + [33, -49], + [-39, -110], + [21, -51], + [-19, -58], + [-13, -23], + [-56, -19], + [9, -64], + [-73, -9], + [-84, 54], + [-2, -83], + [-41, -42], + [-29, 48], + [-31, -13], + [-63, -83], + [-65, 30], + [-11, -43], + [-55, -17], + [-57, 50], + [-82, -54], + [-51, 10], + [-9, -49], + [-56, -39], + [-57, -19], + [-86, -4], + [-93, -24], + [-57, -33], + [-48, 4], + [-55, -87], + [-86, -18], + [-35, -45], + [80, -60], + [-72, 4], + [-72, -38], + [14, -39], + [73, -14], + [8, -84], + [24, 9], + [26, -99], + [-36, -77], + [-63, -40], + [-62, -7], + [-28, 27], + [-43, -19], + [-18, 91], + [-34, 41], + [-25, 126], + [-33, 58], + [15, 99], + [-15, 29], + [38, 48], + [1, 58], + [50, 26], + [-58, 98] + ], + [ + [14418, 1727], + [-67, 9], + [-16, -39], + [-50, -27], + [-104, -27], + [-46, 26], + [50, 39], + [-50, 43], + [-52, -1], + [-25, 39], + [-44, -40], + [-14, 44], + [-52, -5], + [-23, -50], + [-49, -17], + [-37, 23], + [-45, -5], + [-21, -36], + [-67, 9], + [-35, 53], + [-39, 9], + [-42, -24], + [-117, -7], + [-32, 74], + [-25, -18], + [-62, 54], + [-10, 62], + [-40, -5], + [-16, 27], + [-43, 0], + [-42, 26], + [-14, 82], + [13, 23], + [-21, 58], + [-37, 55], + [21, 81], + [49, -7], + [16, 116], + [-70, 60], + [-101, -39], + [-59, 69], + [-78, 1], + [-32, -22], + [-47, 22], + [-35, 37], + [-56, 2], + [-15, 65] + ], + [ + [12737, 2566], + [19, 62], + [39, 30], + [51, 68], + [31, 12], + [68, -19], + [51, 179], + [-75, 151], + [-37, -7], + [-27, -45], + [-31, 23], + [-47, -8], + [-9, 38], + [-36, -1], + [-15, -53], + [-33, 6], + [-37, 41], + [-26, -23], + [-24, 131], + [-61, 59], + [-25, -15], + [-85, 23], + [-18, -61], + [-44, 20], + [-43, 108], + [12, 74] + ], + [ + [12335, 3359], + [73, -57], + [51, 30], + [13, 33], + [63, 27], + [3, 43], + [67, 60], + [25, -33], + [61, 1], + [33, -65], + [36, 0], + [71, -48], + [65, 5], + [23, -40], + [71, 63], + [10, 37], + [-21, 55], + [62, 16], + [111, 56], + [25, 39], + [101, 16], + [45, 42], + [-19, 72], + [40, 74], + [45, 10], + [62, -41], + [-3, -44], + [38, -10], + [5, -54], + [30, -37], + [41, 27], + [81, -71], + [128, 53], + [4, 79], + [38, 19], + [29, 53], + [66, -38], + [58, -62], + [-8, 71], + [26, 58], + [108, -15], + [37, -20], + [3, 73], + [26, 76], + [53, -43], + [30, 24], + [68, 135] + ], + [ + [14309, 4028], + [91, -13], + [-20, -64], + [66, 16], + [-17, 44], + [35, 19], + [36, 81], + [52, -27], + [4, -61], + [93, -15], + [17, 53], + [77, 86], + [17, 37], + [59, -43], + [70, 20], + [22, 22], + [69, -14], + [39, -49], + [-5, -75], + [-18, -26], + [6, -61], + [85, -9], + [-7, -56], + [-39, -21], + [8, -62], + [-19, -89], + [-77, -80], + [-37, -59], + [-23, -67], + [20, -59], + [40, 11], + [0, 43], + [71, 61], + [64, -23], + [12, -39], + [-7, -85], + [12, -31], + [-20, -61], + [55, -21], + [49, 72], + [32, 4], + [100, -25] + ], + [ + [14226, 5300], + [-1, -95], + [44, -27], + [-31, -98], + [27, -27], + [-28, -34], + [27, -111], + [25, 1], + [10, -85], + [-85, -81], + [-35, 12], + [-38, -77], + [-63, -40], + [5, -28], + [-33, -53], + [18, -31], + [95, 64], + [21, -25], + [38, 30], + [51, 16], + [48, -46], + [17, -65], + [-23, -64], + [-57, -67], + [10, -119], + [-42, -75], + [25, -25], + [37, 12], + [28, -76], + [-7, -58] + ], + [ + [12335, 3359], + [6, 48], + [65, 88], + [-18, 38], + [35, 75], + [-40, 42], + [-4, 30], + [-40, 28], + [7, 58], + [-50, -2], + [-4, 32], + [-46, 39], + [39, 75], + [24, 111], + [23, 48], + [6, 72], + [56, 64], + [-50, 110], + [-28, -4], + [-26, 66], + [-45, -48], + [-71, 15], + [-48, -66], + [-78, 10], + [-27, 50], + [9, 52], + [-26, 44], + [24, 24], + [-3, 48], + [-48, 81], + [28, 11], + [50, 65], + [39, 90], + [101, -87], + [30, 21], + [34, 76], + [59, -25], + [50, -52], + [48, 17], + [52, -26], + [83, 65], + [64, 6], + [5, 66], + [22, 77] + ], + [ + [12642, 4891], + [73, 35], + [55, -57], + [57, 28], + [169, 19], + [58, 37], + [-6, 75], + [-24, 54], + [-45, 45], + [-68, -26], + [-39, 6], + [3, 58], + [-42, 48], + [-27, -30], + [-30, 22], + [-1, 106], + [41, 46], + [53, -12], + [38, 83], + [55, -60], + [73, -49], + [35, -5] + ], + [ + [14792, 1005], + [40, -79], + [60, -4], + [22, -92], + [-5, -93], + [-88, -111], + [-36, -23], + [-34, -115], + [-8, -58], + [-21, -39], + [7, -91], + [-41, -56], + [-69, -14], + [-62, -66], + [-20, -74], + [-56, 15], + [-59, -14], + [-14, -80], + [-77, -11], + [-25, 34], + [-58, 15], + [-68, -7], + [-20, 36], + [-46, -3], + [-62, 54], + [-59, 23], + [4, 117], + [-29, 56], + [14, 48], + [-18, 84], + [26, 43], + [-18, 56], + [20, 42], + [38, 12], + [91, 97], + [69, 36], + [-8, 68], + [39, 40], + [103, 21], + [24, 38], + [55, 17], + [18, -24], + [73, 15], + [19, -31], + [55, 35], + [103, 40], + [50, -32], + [71, 75] + ], + [ + [17388, 11263], + [-25, -83], + [36, -34], + [-24, -30], + [-4, -88], + [-71, 8], + [-32, 28] + ], + [ + [18201, 11896], + [-20, -62], + [-118, -125], + [-20, -75], + [61, -58], + [59, -30], + [63, -54], + [96, 11], + [25, -49], + [-7, -41], + [26, -81], + [37, -13], + [27, -110] + ], + [ + [18430, 11209], + [-89, -33], + [-95, -99], + [-35, -115], + [19, -40], + [-47, -33], + [-74, -83], + [-77, -27], + [-71, 12], + [-118, -73], + [-51, 23], + [-25, 52], + [-53, 24] + ], + [ + [17714, 10817], + [-1, 74], + [-56, 45], + [24, 68], + [-94, 0], + [-46, 76], + [-26, 81], + [13, 52], + [103, -1], + [-24, 46], + [-41, 13], + [-33, 59], + [-71, 7] + ], + [ + [17230, 11019], + [-1, -78], + [34, -57], + [-7, -94], + [15, -52], + [-58, -19], + [-21, -55], + [19, -93], + [66, -25], + [41, 6], + [33, -60], + [41, 21], + [26, -30], + [117, 45] + ], + [ + [17535, 10528], + [52, -141], + [65, -59], + [6, -3], + [0, -3] + ], + [ + [17658, 10322], + [-68, -92], + [-51, -5], + [-50, -104], + [-17, -11], + [-204, 0], + [-40, -7], + [-75, -105], + [-70, -81], + [-82, 1], + [-26, -48], + [-70, -22], + [-48, -135], + [-72, -131], + [-75, -26], + [-64, -80], + [-23, -61], + [34, -79], + [40, -43], + [4, -46] + ], + [ + [16701, 9247], + [-46, -38], + [-41, 42], + [-54, 18], + [-46, -72], + [-46, 33], + [-124, -5], + [-103, 62], + [-109, 17], + [-57, 37], + [-72, 5] + ], + [ + [16003, 9346], + [-9, 32], + [-45, 18], + [-3, 47], + [-40, 44], + [5, 54], + [62, 24], + [8, 36], + [47, 20], + [-14, 93], + [58, 121], + [23, 20], + [63, 124], + [4, 55], + [-63, 70], + [-35, 114], + [-69, 81], + [-56, 13], + [-18, 75], + [23, 43], + [-8, 47], + [20, 45], + [65, 33], + [32, 62], + [-35, 67], + [52, 55], + [61, 35], + [23, -43], + [102, 27], + [23, 105], + [52, 124], + [-58, 53], + [-6, 112], + [-32, -6], + [-101, 37], + [-14, 33], + [28, 55], + [-12, 33], + [162, 53], + [24, 40], + [-86, 13], + [-18, 60], + [5, 53], + [-34, 21], + [-25, 55] + ], + [ + [16164, 11599], + [-64, 126], + [-42, 45], + [21, 53], + [6, 110], + [-26, 27], + [60, 41], + [54, 4], + [33, 58], + [-11, 83], + [50, 63], + [65, 26], + [-9, 40], + [33, 42], + [86, -11], + [50, -61], + [18, -88], + [-20, -28], + [0, -67], + [130, -29], + [57, 17], + [-15, 45], + [41, 14], + [152, 95], + [42, 17], + [34, -66], + [78, 24], + [52, 73], + [83, -35], + [72, 3], + [66, 38], + [9, 192], + [47, 34], + [155, 10], + [26, 56], + [83, -2], + [39, 19], + [97, -120], + [33, -110], + [-4, -34], + [84, -65], + [11, -60], + [-17, -46], + [-50, 21], + [-14, -37], + [87, -206], + [168, 6], + [48, -27], + [124, -10], + [15, 17] + ], + [ + [23006, 13011], + [-45, -20], + [-67, 30], + [-47, -32], + [-56, 60], + [-88, 39], + [-74, 165], + [-131, -35], + [-2, 59], + [-55, 8], + [-81, -74], + [-77, 1], + [-27, -28], + [-66, -4], + [-11, -119], + [-80, -29], + [-61, 21], + [-46, 122], + [-32, 45], + [-55, 121], + [-21, 20], + [1, 111], + [-42, 70], + [-60, -41], + [-21, -47], + [-43, 6], + [19, -71], + [-20, -53], + [-74, -24], + [-50, 15], + [-46, 47], + [-3, 47], + [-56, 66], + [-10, 106], + [-94, 13], + [-75, -22], + [4, 59], + [-21, 36], + [6, 53], + [33, 37], + [-47, 63], + [-143, 83], + [-83, -9], + [-63, -41], + [-89, 8], + [-45, 20], + [-82, 74], + [-7, 89], + [-110, -39], + [-134, -22], + [-12, 52], + [-67, -26], + [-48, 10], + [-84, -27], + [-60, 16], + [-20, 55], + [-51, 43], + [-33, 1], + [-71, 162], + [32, 36], + [-58, 148], + [-65, -25], + [-87, 0], + [-56, -17], + [-77, 14] + ], + [ + [19772, 14437], + [-63, 88], + [-3, 80], + [103, 20], + [35, 32], + [95, 6], + [14, 60], + [-108, 30], + [-59, -9], + [-19, -52], + [-52, -9], + [-55, 47], + [0, 69], + [-19, 53], + [-95, 36], + [-86, 114], + [43, 32], + [21, 59], + [108, 71], + [152, 82], + [36, 69], + [113, 46], + [72, 84], + [127, 116], + [78, 51], + [15, -85], + [79, -124], + [27, 69], + [-24, 76], + [1, 74], + [39, 66], + [13, 75], + [95, 183], + [107, -18], + [46, 111], + [-20, 65], + [-9, 130], + [32, 200], + [67, 44], + [-1, 28], + [78, 95], + [74, 50], + [-12, 97], + [110, 115], + [-36, 71], + [-51, 58], + [-38, 8], + [-24, 54], + [-139, 151], + [-86, 5], + [-35, -54], + [-45, -15], + [-28, -62], + [-68, -24], + [-81, 24], + [-34, -56], + [-66, 38], + [-140, -13], + [-71, 41], + [-27, -41], + [-141, -35], + [-126, 43], + [-48, 74], + [1, 66], + [-43, 71], + [-9, 121], + [-38, 81], + [56, 21], + [-3, 46], + [-71, 0], + [-97, 75], + [-13, 32], + [-70, 1], + [-75, -92], + [-93, 10], + [-29, 65], + [-46, 6], + [-130, 76], + [68, 41], + [100, 88], + [38, 74], + [40, 35], + [-65, 60], + [10, 29], + [-73, 49], + [81, 29] + ], + [ + [19182, 18114], + [153, 17], + [102, 39], + [45, -28], + [156, 5], + [169, 56], + [105, -4], + [129, -33], + [108, -75], + [52, 11], + [52, -61], + [62, -26], + [53, 2], + [68, -34], + [59, 30], + [82, 0], + [117, -52], + [39, -5], + [63, -50], + [-29, -35], + [74, -29], + [197, -239], + [-16, -89], + [99, -48], + [-33, -100], + [37, -41], + [108, -170], + [-19, -44], + [78, -68], + [-33, -62], + [10, -67], + [76, -64], + [99, -180], + [-29, -55], + [29, -38], + [3, -57], + [81, -26], + [9, -36], + [-37, -57], + [6, -117], + [53, -29], + [14, -54], + [47, -42], + [64, 10], + [41, -35], + [78, -22], + [53, 46], + [57, 6], + [69, -19], + [26, -48], + [88, -11], + [49, -52], + [35, 26], + [45, -23], + [26, 40], + [55, -10], + [10, -58], + [49, -5], + [70, -63], + [25, -59], + [140, -99], + [74, 20], + [77, -44], + [-44, -91], + [30, -63], + [48, -5], + [18, -78], + [24, -28], + [-70, -98], + [13, -36], + [72, -55], + [35, -59], + [1, -51], + [56, -20], + [63, 27], + [99, -3], + [31, -34], + [41, 23], + [49, -19], + [176, 19], + [52, 25], + [52, -22], + [74, 125], + [38, -14], + [36, 37], + [52, 10], + [61, 45], + [78, -1], + [45, -19], + [133, 68], + [102, 70], + [132, 26], + [75, -11], + [38, -103], + [-48, -72], + [15, -60], + [73, -79], + [-41, -88], + [-70, -72], + [-64, -4], + [-58, -54], + [-15, -37], + [29, -40], + [-35, -48], + [-46, -137], + [-2, -86], + [-41, -38], + [-24, -62], + [23, -98], + [-24, -36], + [-60, -22], + [14, -57], + [-31, -56], + [-77, -56], + [5, -90], + [-53, -55], + [-51, -20], + [-33, -46], + [-15, -68], + [16, -83], + [-65, -55], + [-48, 18], + [-62, -188], + [-54, -69], + [-98, 31], + [-81, 64], + [28, 111], + [-49, 144], + [-93, 38], + [-56, -101], + [-86, -79], + [-50, 11], + [-30, -30], + [-53, 7], + [-70, -61], + [56, -65], + [76, -315], + [-36, -132], + [10, -116], + [19, -62] + ], + [ + [16701, 9247], + [-13, -80], + [-35, -22], + [-8, -86], + [188, 106], + [85, 28], + [9, -48], + [-49, 0], + [-60, -55], + [-42, -62], + [-66, -7], + [-35, -43], + [-24, -72], + [-53, -46], + [-18, 15], + [-60, -37], + [-9, -44], + [-62, -57], + [15, -89], + [93, 3], + [32, -44], + [93, -67], + [5, -62], + [37, -50], + [56, -9], + [169, 24], + [36, -14] + ], + [ + [16658, 6794], + [-65, 18], + [11, 58], + [-39, 28], + [-32, -50], + [-89, -25], + [-115, 80], + [16, 72], + [-62, -11], + [-57, 12], + [-48, 49], + [-73, -50], + [-13, 54], + [-42, -6], + [-43, 206], + [10, 64], + [-39, 24], + [-35, -41], + [-62, -34], + [-28, 12], + [-53, 65], + [-30, -22], + [-114, 8], + [-35, -24], + [-89, 28], + [-42, -26], + [-114, 16], + [-82, 69], + [-25, -7], + [-67, 52], + [-58, -6], + [-50, 64], + [-29, 57], + [-49, 29], + [-7, 80], + [-102, 112] + ], + [ + [14907, 7749], + [17, 60], + [-9, 107], + [-68, 47], + [-22, 65], + [-73, 45], + [33, 34], + [-35, 76], + [22, 32], + [-87, 60], + [30, 29], + [-56, 96], + [10, 42] + ], + [ + [14669, 8442], + [120, -6], + [28, 32], + [58, 3], + [101, 76], + [28, -9], + [139, 30], + [47, 73], + [55, 42], + [90, -12], + [9, 92], + [144, 1], + [134, -11], + [58, 20], + [44, 59], + [33, -15], + [38, 56], + [115, 45], + [26, 61], + [5, 87], + [33, 10], + [3, 146], + [26, 124] + ], + [ + [16963, 5980], + [-35, -38], + [-66, -8], + [-75, 60], + [-73, -5], + [-41, -79], + [-101, -14], + [-1, -76], + [-57, 30], + [-56, -45], + [0, -40], + [-44, -19], + [-39, 14], + [-57, -36], + [-90, 20], + [-18, -66], + [-69, -12], + [-52, -86] + ], + [ + [16089, 5580], + [-49, 30], + [-36, -16], + [-51, 93], + [23, 65], + [35, 36], + [-29, 33], + [24, 33], + [-39, 46], + [-36, 7], + [5, 70], + [-47, -28], + [-91, -117], + [-27, -45], + [-43, 31], + [-38, -18], + [-15, 161], + [-40, -24], + [-49, -74], + [-94, 20], + [-32, -50], + [-116, 102], + [-115, 90], + [-96, -9], + [-63, 13], + [-62, 65], + [-122, 11], + [-42, 31], + [-118, -33], + [-9, -76], + [43, -41], + [10, -37], + [-103, -64], + [-107, 78], + [-97, -7], + [-83, -92], + [-55, 12], + [-60, -100], + [-15, -81], + [-29, -20], + [-12, -56] + ], + [ + [14348, 6963], + [20, 119], + [-4, 75], + [-50, 99], + [2, 41], + [52, 114], + [112, -4], + [46, -23], + [71, 41], + [-25, 90], + [-46, 35], + [-105, 19], + [12, 82], + [-42, 25], + [-45, -3], + [-55, 22], + [30, 44], + [132, 5], + [74, -29], + [54, 9], + [21, -24], + [97, 10], + [140, -18], + [68, 57] + ], + [ + [16089, 5580], + [5, -40], + [42, -60], + [35, -17], + [-11, -114], + [36, -66], + [17, -71], + [-68, -77], + [-18, -49], + [-46, -45], + [-48, -11], + [-29, -49], + [12, -42], + [-62, -89], + [-9, -52], + [13, -93], + [33, -7], + [69, 28], + [-10, -84], + [-27, -44], + [15, -46], + [42, -46], + [-33, -82], + [27, -93], + [86, -15], + [-14, -92], + [-47, -88], + [30, -27], + [51, 11], + [11, -43], + [-62, -27], + [-6, -77], + [-46, -102], + [31, -90], + [-11, -50] + ], + [ + [18222, 8692], + [-24, -17], + [-21, -103], + [47, -57], + [62, -2], + [2, -35], + [132, -106], + [64, -12], + [128, -71], + [26, -96], + [61, -156], + [19, -21], + [54, -138], + [-15, -54], + [32, -20], + [47, -112], + [1, -55], + [28, -19], + [7, -65], + [-23, -58], + [19, -77], + [32, -33], + [132, -63], + [31, -26], + [-4, -99], + [20, -33], + [90, -31], + [76, -76], + [32, -96], + [-23, -23], + [-97, 27], + [-120, 73], + [-24, 1], + [-68, -50], + [-5, -31], + [38, -30], + [58, -82] + ], + [ + [19036, 6846], + [-47, -16], + [-34, -87], + [-26, -23], + [-7, -63], + [-64, -1], + [6, -64] + ], + [ + [18864, 6592], + [-77, -20], + [2, -38], + [-50, -21], + [-30, -47], + [-29, 69], + [-29, 26], + [-84, -8], + [-63, 46], + [-33, 77], + [-50, 3], + [-61, -22] + ], + [ + [17058, 8460], + [16, 113], + [21, 20], + [127, 23], + [73, -34], + [64, -122], + [18, -81], + [29, -13], + [45, 70], + [51, -58], + [30, -7], + [49, 40], + [46, -12], + [8, 68], + [60, 11], + [52, -14], + [-7, -35], + [34, -96], + [95, 23], + [24, 123], + [101, 43], + [82, 155], + [78, 0], + [68, 15] + ], + [ + [17785, 5759], + [6, -23], + [-68, -72], + [4, -60], + [21, -52], + [33, -6], + [72, -87], + [29, -71], + [-10, -51], + [23, -51], + [-17, -95] + ], + [ + [23006, 13011], + [12, -44], + [-46, -99], + [6, -29], + [-43, -64], + [12, -46], + [-39, -35], + [-96, 1], + [-98, -29], + [-5, -57], + [37, -39], + [-5, -33], + [-78, 6], + [-67, 73], + [7, 90], + [-59, 9], + [-19, 34], + [-69, 17], + [-54, -150], + [-8, -127], + [-86, -40], + [-32, 28], + [-84, -35], + [-38, -118], + [-74, -35], + [-4, -30], + [-80, 13], + [-68, -23], + [-113, 19], + [-90, -36], + [9, -78], + [23, -46], + [61, -47], + [6, -26], + [-44, -89], + [-40, -24], + [-41, 34], + [-153, -2], + [-83, 15], + [-99, 43], + [-46, 105], + [-40, 24], + [-75, -32], + [-58, -43], + [-66, -149], + [-55, -67], + [-8, -33], + [-51, -39], + [-61, -99], + [-38, 1] + ], + [ + [20866, 11680], + [-50, 5], + [-32, -19], + [-14, 58], + [46, 93], + [-61, 90], + [-78, 137], + [3, 36], + [-52, 7], + [-13, 80], + [13, 69], + [65, 85], + [-58, 5], + [-28, 60], + [-43, 43], + [4, 42], + [-37, 35], + [-35, 141], + [-57, 47], + [8, 59], + [-32, 69], + [-106, -126], + [-60, 20], + [-14, 46], + [32, 42], + [-50, 43], + [-3, 28], + [-105, 36], + [-102, 97], + [-25, -52] + ], + [ + [19982, 12956], + [-44, 0], + [-43, 50], + [-64, 14], + [2, 32], + [72, 18], + [10, 37], + [-22, 99], + [-52, 85], + [15, 70], + [-36, 19], + [-68, 117], + [-38, 42], + [-68, -55], + [-169, -89], + [-68, 22], + [10, 105], + [-77, 86], + [-5, 140], + [15, 128], + [46, 33], + [-37, 40], + [9, 67], + [-59, 30], + [-27, 112], + [-67, -11], + [-44, 17], + [55, 83], + [7, 73], + [98, -50], + [70, -62], + [49, 55], + [48, -29], + [27, -47], + [65, -25], + [30, 30], + [11, 58], + [-17, 94], + [103, 16], + [53, 77] + ], + [ + [18201, 11896], + [65, 82], + [-37, 99], + [-8, 62], + [12, 93], + [24, 64], + [-58, 58], + [20, 34], + [103, 45], + [26, -52], + [96, -21], + [-1, -61], + [112, -167], + [84, 107], + [57, 23], + [-5, 41], + [111, 61], + [72, 26], + [42, -13], + [96, 66], + [54, 55], + [74, 17], + [28, -41], + [80, 54], + [30, 74], + [109, 20], + [50, -26], + [88, 78], + [27, -26], + [177, 0], + [44, 42], + [31, 71], + [73, 23], + [49, -16], + [27, 37], + [29, 151] + ], + [ + [20866, 11680], + [-55, -3], + [-86, -63], + [-42, -50], + [-105, -31], + [-121, -71], + [-200, -179], + [-18, -73], + [-55, -62], + [-79, -31], + [-53, 28], + [-85, 1], + [-99, -65], + [0, 40], + [-59, -10], + [0, -41], + [-47, -23], + [-46, 7], + [-145, -78], + [-38, -32], + [-56, 2], + [-73, -65], + [-3, -31], + [-59, -45], + [-55, -81], + [-86, 1], + [-106, -114], + [-51, 4], + [-59, -53], + [-25, 2], + [-16, 104], + [44, 2], + [45, 36], + [136, 39], + [-19, 65], + [59, 55], + [-16, 67], + [-50, -4], + [-23, -28], + [-38, 66], + [-48, 45], + [80, 19], + [-26, 58], + [6, 33], + [92, 62], + [27, -8], + [134, 169], + [-6, 27], + [84, 93], + [-59, 65], + [2, 41], + [-115, 69], + [-55, 16], + [-70, -2], + [-24, 23], + [-129, 19], + [-96, -77], + [2, -42], + [-43, -7], + [-62, -72], + [-70, -110], + [-22, -66], + [-51, -5], + [-65, -39], + [-85, -29], + [-53, -39] + ], + [ + [16164, 11599], + [-28, -16], + [-1, -91], + [-84, -35], + [-24, 21], + [-92, -79], + [-95, -16], + [-26, 48], + [-143, -42], + [-21, -65], + [-47, -18], + [-109, 68], + [-58, -25], + [-133, -234], + [-17, -91], + [-66, -15], + [-110, 35], + [-62, -123], + [-48, 5], + [-30, -32] + ], + [ + [14970, 10894], + [-30, 21], + [28, 59], + [-41, 22], + [-66, -39], + [-98, -124], + [-34, 65], + [-59, -32], + [-61, 69], + [-46, -5], + [38, -79], + [-80, -36], + [-64, -64], + [-54, -12], + [-16, -69], + [-101, -66], + [-13, -48], + [-96, -80], + [-71, -112], + [-11, -88], + [45, -44], + [-44, -82], + [-28, 36], + [-38, -22], + [0, -137], + [-210, -9], + [-44, -25], + [-53, 27], + [-20, 64], + [-123, 41] + ], + [ + [13580, 10125], + [-90, 35], + [-40, 78], + [-63, 33], + [-68, -18], + [-85, 25], + [-97, 53], + [-14, 46], + [44, 39], + [29, 72], + [-5, 48], + [52, 79], + [63, 68], + [0, 48], + [-49, 22], + [-21, 72], + [0, 65], + [-79, 2], + [-36, -32], + [-90, -20], + [6, -49], + [-59, -8], + [-29, -92], + [-40, -32], + [-49, -151], + [-10, -99], + [11, -90], + [-31, -33], + [2, -53], + [24, -39], + [-32, -107], + [-47, -11], + [-17, -41], + [-114, 1], + [-81, -35], + [-49, -46], + [-121, -20], + [-41, 17], + [-67, -11], + [-53, -45] + ], + [ + [9404, 12647], + [333, -45], + [91, -24], + [307, -17], + [191, -18], + [199, 40], + [115, -8], + [17, 27], + [234, -20], + [361, -88], + [98, -132], + [141, -40], + [129, -3], + [95, -56], + [138, -61], + [215, -51], + [49, 0], + [223, 39], + [-4, -114], + [164, -9], + [36, -40], + [92, 88], + [16, -2], + [198, 115], + [83, 31], + [269, 124], + [232, 50], + [12, 27], + [63, 28], + [40, -18], + [143, -8], + [130, 26], + [22, -12], + [93, 8], + [102, -23], + [74, 24], + [108, -14], + [124, 22], + [114, 79], + [123, 6], + [109, 68], + [15, 46], + [67, 37], + [33, 65], + [44, 38], + [93, 110], + [156, 67], + [54, 8], + [72, 103], + [86, 25], + [18, 27], + [-65, 104], + [-72, 21], + [-111, 148], + [-2, 37], + [51, 101], + [18, 69], + [72, 123], + [37, 45], + [57, 21], + [175, -15], + [56, -49], + [81, -49], + [56, -3], + [88, -33], + [136, -5], + [65, -24], + [67, 53], + [86, 44], + [148, 120], + [68, 120], + [81, 28], + [99, -45], + [136, 9], + [152, 28], + [18, 34], + [119, 89], + [53, 5], + [30, 39], + [-4, 97], + [137, 179], + [133, 28], + [172, 1], + [25, 114], + [73, 2], + [34, -37], + [136, 63], + [91, 81], + [117, -9], + [43, 18], + [52, -12], + [54, 20], + [110, -44], + [76, -52], + [0, -92], + [43, 3], + [38, 49], + [67, 34], + [59, 62], + [-47, 93], + [19, 92], + [-60, 47], + [50, 36], + [-44, 30], + [-86, 7], + [-71, 52], + [5, 49], + [-59, -6], + [-25, 95], + [-139, 53], + [-119, 100], + [-90, 0], + [-74, 20], + [-123, -26], + [-81, -103], + [-72, -78], + [-107, 89], + [-112, 45], + [-74, -4], + [-76, -24], + [-78, 17], + [-47, -21], + [-75, -81], + [-158, 139], + [-15, 121], + [118, 40], + [4, 139], + [115, 135], + [-23, 43], + [259, 496], + [93, -59], + [136, -48], + [81, -2], + [145, -63], + [127, 80], + [155, 131], + [49, 17], + [161, 18], + [49, 15], + [66, 83], + [-7, 89], + [-65, -1], + [36, 132], + [62, 47], + [61, 146], + [67, 64], + [3, 57], + [44, 44], + [48, 80], + [40, 112], + [35, 6], + [119, 104], + [71, 26], + [44, 92], + [-2, 68], + [-55, 36], + [40, 111], + [-106, 57], + [-156, -29], + [-15, 90], + [102, 55], + [99, 106], + [139, 111], + [136, -3], + [189, 55] + ], + [ + [13580, 10125], + [-11, -47], + [-52, -9], + [-5, -30], + [-68, -58], + [-24, -137], + [32, -82], + [-24, -45] + ], + [ + [11235, 7898], + [0, -47], + [-37, -20], + [-13, -46], + [34, -26], + [-43, -85], + [-57, 59], + [-30, 0], + [-97, -34], + [-19, -69], + [1, -60], + [47, -48], + [-8, -53], + [-57, -17], + [-57, -40], + [-85, 30], + [-25, -31], + [-13, -68], + [-33, -30], + [-36, 23], + [36, 59], + [-54, 89], + [-68, -15], + [-5, -47], + [-42, 8], + [-5, 115], + [-53, 40], + [-81, 6], + [7, -46], + [-18, -60], + [-152, 85], + [-36, -12], + [-30, 74], + [-137, 65], + [-33, 64], + [6, 42], + [-23, 75], + [-31, 22], + [6, 51], + [-55, 75], + [-46, 38], + [-62, -11], + [1, 34], + [-93, 18], + [-83, -48], + [-62, 54], + [-51, -29], + [-58, -9], + [-7, -27], + [24, -77], + [33, -52], + [17, -60], + [85, -25], + [-60, -43], + [-4, -31], + [-48, -56], + [21, -59], + [-10, -31], + [-61, -22], + [8, -84], + [42, -69], + [96, -64] + ], + [ + [9621, 7373], + [-32, -26], + [-100, 21], + [4, -114], + [-48, -6], + [-10, -52], + [16, -53], + [-135, -32], + [-60, -1], + [-31, -18], + [29, -46], + [-19, -33], + [31, -53], + [-41, -26], + [-22, 27], + [-44, -7], + [-53, 42], + [-48, 75], + [-27, -5], + [-46, -59], + [46, -63], + [-76, 14], + [-80, -3], + [-88, 35], + [-47, -18], + [-59, 110], + [30, 52], + [-6, 49], + [-57, 51], + [-84, -5], + [-49, 48], + [-24, 62], + [-33, 11], + [-77, 96], + [-31, -35], + [-61, -1], + [-10, -40], + [-65, -3], + [-27, -42], + [-69, 27], + [-42, -6], + [-19, 41], + [-62, 9], + [-55, -48], + [-52, 24], + [-56, 70], + [-74, -16], + [-17, 55], + [-64, -18], + [-66, 33], + [-15, -22], + [-117, 21], + [-63, -7], + [2, 56], + [-33, 10], + [-63, -31], + [-69, 64], + [-93, 56], + [-73, 95], + [-5, 44], + [-72, -9], + [-9, -34], + [-87, -12], + [-36, -51], + [-59, 11], + [-88, 66], + [-32, -5], + [-56, 57], + [-33, 93], + [-78, 43], + [8, 29], + [-30, 54], + [-77, 64], + [-33, 54], + [1, 37], + [61, 38], + [1, 192], + [-34, 100], + [51, 38], + [-17, 51], + [-89, -7], + [-11, 34], + [7, 83], + [-49, 60], + [15, 66], + [77, 28], + [18, 26], + [-9, 55], + [30, 146], + [-44, -6], + [-102, 38], + [-5, 56], + [47, 0], + [82, 27] + ], + [ + [6430, 9204], + [56, -2], + [47, 38], + [16, 64], + [81, -59], + [94, -16], + [83, -1], + [67, -57], + [48, 42], + [54, -4], + [-3, 62], + [-28, 62], + [2, 104], + [-119, 28], + [-6, 104], + [53, 64], + [51, -1], + [63, 50], + [68, 3], + [-10, 69], + [-38, 34], + [-37, 126], + [-60, 8], + [-61, 84], + [-105, 45], + [-44, 54], + [27, 64], + [-60, 91], + [-37, 89], + [-38, 48], + [109, 48], + [86, 93], + [48, -7], + [145, 26], + [72, 21], + [56, 32], + [142, 27], + [99, 45], + [138, 26], + [46, 53], + [140, 16], + [39, 16] + ], + [ + [14970, 10894], + [29, -70], + [-45, -104], + [-48, -27], + [16, -51], + [-54, -130], + [11, -31], + [-24, -64], + [-31, -3], + [-42, -64], + [-38, -10], + [-25, -51], + [-3, -88], + [67, -117], + [48, -125], + [-16, -44], + [-42, -15], + [21, -43], + [-20, -53], + [-94, -132], + [7, -174], + [30, -39], + [-22, -214], + [27, -143], + [15, -10], + [20, -135], + [-34, -103], + [-45, -66], + [-35, -137], + [-18, -22], + [7, -179], + [37, -8] + ], + [ + [13924, 7210], + [-15, 30], + [-96, 4], + [-23, -26], + [-64, -6], + [-10, -32], + [-58, 28], + [-71, 95], + [-59, -4], + [-59, 80], + [-45, -70], + [-72, 65], + [9, 37], + [-19, 56], + [-107, -4], + [-23, 14], + [-56, -36], + [-63, -22], + [-42, 28], + [-61, 12], + [-87, 78], + [-56, -20], + [-78, -56], + [-49, 108] + ], + [ + [17658, 10322], + [96, -58], + [144, -16], + [149, 17], + [39, -23], + [22, -74], + [36, -23], + [3, -40], + [35, -20], + [42, -56], + [-101, -1], + [-43, -81], + [15, -130], + [111, -72], + [24, -41], + [50, 31], + [127, 3], + [55, 60], + [-17, 71], + [96, 35], + [92, 86], + [-1, 39], + [57, 31], + [44, 3], + [72, 40], + [80, -12], + [35, -52], + [42, 1], + [1, -57], + [93, -20], + [33, -42], + [54, -26], + [137, 23], + [51, 31], + [37, -50], + [34, 14], + [33, -27], + [61, 5], + [37, -30], + [-7, -46], + [27, -34], + [-66, -31], + [19, -111], + [-32, -33], + [-54, -15], + [-39, 17], + [-21, 40], + [-51, 11], + [-100, -45], + [-54, -37], + [-10, -34], + [-51, 16], + [-114, -46], + [-84, -75], + [-28, -46], + [-64, 6], + [-25, -42], + [-6, -72], + [15, -57], + [-167, -36], + [33, 61], + [-61, 21], + [-45, -42], + [45, -60], + [-14, -38], + [-50, -34], + [-18, -83], + [-38, -43], + [-69, -1], + [-42, -25], + [-31, -105], + [-61, -60], + [-13, -86], + [-35, -4] + ], + [ + [19012, 6426], + [-26, 48], + [-49, 35], + [-38, -10], + [5, 89], + [-40, 4] + ], + [ + [19036, 6846], + [76, -60], + [60, -32], + [78, -110], + [24, -73], + [-13, -64], + [-30, 6], + [-115, -19], + [-104, -68] + ], + [ + [19024, 7033], + [148, -113], + [90, -29], + [29, -52], + [-53, -28], + [-176, 92], + [-92, 88], + [54, 42] + ], + [ + [12642, 4891], + [-50, 185], + [-47, 16], + [-35, -21], + [-37, -76], + [-60, -6], + [-66, -24], + [-100, 94], + [30, 14], + [28, 57], + [-8, 53], + [-73, 62], + [3, 128], + [-152, -10], + [-38, -56], + [32, -108], + [-67, -53], + [-53, 12], + [-54, -89], + [26, -18], + [4, -93], + [-25, -44], + [-66, -62], + [-55, -107], + [-60, -27], + [-42, -36], + [10, -79], + [-16, -61], + [11, -60], + [34, -60], + [15, -107], + [-11, -117], + [-84, -30], + [-29, -45], + [-43, 18], + [9, 48], + [-88, -21], + [-60, -43], + [-48, -65], + [-125, -3], + [-33, 68], + [-44, 8], + [6, 78], + [-97, 88], + [34, 62], + [-43, 44], + [-3, 63], + [-90, 75], + [10, 86], + [-47, 11], + [-87, 238], + [-47, 63], + [-14, 62], + [-51, -58], + [-40, 30], + [-49, -78], + [-55, 121], + [-43, 44], + [-21, 68], + [54, 22], + [6, 51], + [-47, 31], + [-41, 101], + [-51, 19], + [1, 30], + [-39, 34], + [-4, 55], + [-41, -14], + [-33, -64], + [-8, -53], + [-51, -19], + [-1, -78], + [13, -56], + [-45, -32], + [-54, 98], + [8, 42], + [-33, 185], + [8, 25], + [-7, 178] + ], + [ + [10173, 5685], + [-15, 23], + [-9, 136], + [-23, 58], + [10, 88], + [21, 45], + [-12, 78], + [-22, 36], + [-19, 227], + [-14, 54], + [23, 18], + [-75, 90], + [12, 48], + [-81, 122], + [35, 52], + [36, -43], + [41, 59], + [-16, 32], + [-53, 43], + [-57, 68], + [-67, 134], + [13, 54], + [-52, 60], + [-35, 111], + [-97, 67], + [-96, 28] + ], + [ + [17714, 10817], + [-71, -21], + [-35, -41], + [-10, -65], + [-56, -102], + [-7, -60] + ], + [ + [6430, 9204], + [-97, 34], + [-101, 74], + [-30, -25], + [-92, 59], + [-65, -30], + [-58, 45], + [-20, 37], + [-41, 11], + [-92, -7], + [-42, -22], + [-64, 5], + [-26, -31], + [-71, 5], + [-71, -22], + [-70, 38], + [-91, -62], + [-61, 6], + [-100, -8], + [-29, -29], + [-112, -15], + [-78, -40], + [-7, -50], + [-50, -96], + [-39, -32], + [-103, -17], + [-34, -49], + [-138, 64], + [-93, -17], + [-78, -55], + [-156, -50], + [2, -33], + [-47, -33], + [-95, -26], + [-13, 22], + [-71, -21], + [-138, -12], + [-119, 40], + [-46, -11], + [-51, 44], + [-13, 94], + [-71, 10], + [-23, -25], + [-41, 28], + [-88, 4], + [-32, -72], + [-112, -57], + [1, -45], + [-78, -53], + [-67, -12], + [-61, 11], + [-34, 50], + [-91, -18], + [-66, 43], + [-7, -47], + [-77, 18], + [-62, -4], + [-66, 60], + [-34, -5], + [-57, -44], + [1, -49], + [-59, -86], + [-39, -20], + [-23, -102], + [-37, 0], + [-13, -58], + [20, -21], + [-47, -117], + [-50, -14], + [-68, 1], + [-110, -21], + [-60, 0], + [-16, -41], + [-44, 19] + ], + [ + [2119, 8322], + [-35, 18], + [-108, 105], + [-60, -3], + [-53, 32], + [-31, 51], + [-9, 59], + [-41, 104], + [-37, 152], + [-40, 26], + [-29, 46], + [-77, -21], + [-78, -4], + [-64, 34], + [-32, -4], + [-52, 37], + [-117, 36], + [-74, 74], + [5, 41], + [-147, -22], + [-57, 87], + [-31, 0], + [-28, 55], + [48, 57], + [-28, 52], + [10, 60], + [-35, 86], + [-76, 65], + [-73, 10], + [-37, -23], + [-32, 114], + [-57, 8], + [-33, 31], + [-43, -2], + [-47, -42], + [-40, 65], + [-37, -18], + [-21, 37], + [-59, -11], + [-38, 21], + [30, 63], + [153, -9], + [17, 35], + [73, 16], + [7, 60], + [-32, 47], + [-51, 15], + [-12, 52], + [39, 54], + [-36, 41], + [4, 86], + [-37, 38], + [-14, 53], + [0, 87], + [33, 25], + [-1, 49], + [-59, 12], + [-35, 31], + [-99, 36], + [-99, 8], + [-26, -70], + [-58, 2], + [-47, 50], + [-40, 130], + [55, 32], + [-40, 43], + [-51, 106], + [21, 79], + [-7, 33], + [85, 13], + [31, 63], + [-11, 58], + [-32, 23], + [3, 41], + [73, 134], + [91, 18], + [35, -26], + [73, 62], + [64, 73], + [86, -4], + [-35, 60], + [7, 36], + [63, -38], + [83, -6], + [159, 113], + [19, -78], + [31, -11], + [-22, -66], + [23, -35], + [80, 19], + [21, 28], + [140, -5], + [78, 47], + [7, 37], + [41, 46], + [-3, 69], + [62, 53], + [-1, 52], + [31, 31], + [73, 20], + [42, -23], + [72, 7], + [55, -15], + [79, 0], + [83, 38], + [77, -14], + [48, 17], + [33, 69], + [45, 29], + [8, 74], + [93, 29], + [28, 41], + [51, 13], + [40, 36], + [205, 105], + [88, -30], + [84, 127], + [98, -1], + [61, 19], + [-14, 77], + [17, 20], + [-32, 86], + [5, 56], + [-21, 52], + [36, 98], + [56, 0], + [68, 50], + [-69, 36], + [6, 32], + [73, 39], + [82, 22], + [-22, 63], + [-33, 8], + [34, 70], + [-62, 151], + [-28, 47], + [-47, 188], + [-24, 146], + [59, 118], + [-60, 56], + [-37, 10], + [-83, -20], + [-32, 40], + [49, 88], + [128, 2], + [17, 26], + [64, 3], + [58, 25], + [41, -15], + [88, 23], + [15, 24], + [136, 25], + [94, 50], + [40, -30], + [15, -55], + [72, -22], + [93, 40], + [98, -59], + [43, 57], + [15, 66], + [-16, 44], + [-64, 12], + [-62, 40], + [5, 44], + [86, 181], + [10, 103], + [84, 172], + [27, 120], + [69, 144], + [20, 94], + [58, 6], + [67, -25], + [85, -55], + [192, -53], + [153, 23], + [34, -17], + [79, 10], + [49, -85], + [54, 20], + [103, 93], + [123, 4], + [19, 68], + [46, 14], + [3, 92], + [-38, 63], + [7, 45], + [-32, 171], + [28, 112], + [50, 111], + [41, 28], + [150, 5], + [41, 33], + [106, 21], + [72, 90], + [19, 69], + [-35, 73], + [52, 60], + [53, -2], + [59, 24], + [121, -34], + [105, 44], + [52, 3], + [1, -60], + [32, -38], + [-66, -49], + [70, -66], + [59, -36], + [-27, -65], + [138, -49], + [100, -65], + [-10, -35], + [39, -53], + [90, -28], + [52, -41], + [5, -48], + [60, 2], + [50, 40], + [99, 11], + [20, -53], + [72, -66], + [53, -1], + [157, -77], + [53, -93], + [25, -125], + [86, -125], + [59, -13], + [29, -77], + [39, -52], + [10, -83], + [-48, -117], + [-9, -68], + [35, -47], + [-4, -58], + [-65, -60], + [-60, -100], + [-14, -89], + [42, -49], + [18, -70], + [50, -53], + [87, 6], + [86, -46], + [43, 16], + [68, -41], + [146, 6], + [62, -20], + [67, 11], + [69, -21], + [222, 4], + [175, -27], + [275, -156], + [54, -72], + [97, -38], + [48, -52], + [117, -48], + [173, 18], + [-21, -41], + [2, -97], + [70, -17], + [50, -145], + [82, -157], + [14, -87], + [63, -56], + [32, -59], + [68, -66], + [16, -85] + ], + [ + [10173, 5685], + [-60, -54], + [20, -58], + [-36, -29], + [-7, -89], + [-25, 3], + [-25, 99], + [-49, -13], + [-4, -47], + [17, -78], + [-38, -32], + [14, -92], + [50, -80], + [-17, -51], + [-126, -65], + [-9, 73], + [-38, 71], + [-30, -25], + [25, -51], + [-40, -22], + [-9, -79] + ], + [ + [9786, 5066], + [3, 33], + [-98, 133], + [-45, -14], + [-29, 82], + [-68, -4], + [-29, -65], + [-6, -52], + [-44, -18], + [-90, 63], + [-51, -21], + [-39, 36], + [-50, -6], + [-44, 47], + [-117, -36], + [12, 86], + [74, 82], + [9, 40], + [-35, 86], + [-34, 37], + [-36, -3], + [-47, -53], + [-31, 64], + [27, 44], + [51, 17], + [19, 44], + [-63, -7], + [-57, 110], + [-54, -38], + [-72, -14], + [-76, -71], + [-16, -1], + [-37, -92], + [-81, 16], + [0, 21], + [-151, 38], + [-97, 85], + [-28, -62], + [-51, -1], + [-32, -39], + [-54, -34], + [-24, -67], + [-64, -58], + [-24, -85], + [-36, 16], + [-95, -27], + [-44, 15], + [-65, -26], + [-56, -163], + [-68, -9], + [-51, -49], + [-44, -11], + [-48, -62], + [30, -38], + [-71, -87], + [-101, -21], + [-21, 43], + [-40, -13], + [-40, -40], + [-70, -20], + [-21, 45], + [-47, 2], + [-33, 41], + [-56, 28], + [-7, 31], + [-63, 30], + [-41, -39], + [-91, 7], + [-19, 21], + [-97, 18], + [-39, -27], + [-34, 22], + [-49, -4], + [-35, 50], + [-68, -8], + [-106, 45], + [-56, -29], + [-42, -2], + [-61, -68], + [-29, -76], + [-65, -56], + [-22, -58], + [-54, -46], + [-27, -90], + [-31, -35], + [-32, 35], + [-17, 83], + [32, 53], + [13, 117], + [-15, 49], + [-36, 42], + [-71, 7], + [-74, -56], + [-58, -15], + [-41, 8], + [-44, -30], + [-64, 3], + [-57, -55], + [-58, 29], + [-64, 0], + [-40, -18], + [-76, 4], + [-35, 60], + [-100, 35], + [-40, 46], + [-45, 3], + [-53, -107], + [-82, 35], + [-16, 85], + [-43, -54], + [14, -55], + [-24, -14], + [-68, 86], + [-18, 60], + [-75, 63], + [-62, 14], + [-100, -20], + [-59, 27], + [7, 73], + [29, 72], + [-56, 28], + [-43, -53], + [-37, -5], + [-62, 33], + [-30, 53], + [-54, -1], + [-33, 61], + [-75, 32], + [11, 63], + [-34, 80], + [15, 24], + [-95, 47], + [-60, -15], + [-71, -74], + [-39, 24], + [-39, 54], + [-10, 58], + [-52, 39], + [-35, 58], + [-50, 0], + [-62, 49], + [-61, 13], + [-26, 64], + [-38, 17], + [-87, 71], + [-85, 21], + [-24, 143], + [-45, -12], + [-145, 64], + [-35, -38], + [-56, 25], + [7, -60], + [-12, -50], + [-43, -48], + [-5, -36], + [-56, -14], + [-49, 127], + [-80, 29], + [-32, 43], + [-55, 41], + [-25, -11], + [-101, 58], + [-27, 4], + [11, 82], + [-31, 37], + [-112, 58], + [-53, 42], + [-65, -32], + [-35, 50], + [-78, 55], + [-21, 76], + [-47, 73], + [-29, 18], + [-31, -60], + [-40, -44], + [-33, 94], + [-30, 45], + [42, 45], + [-37, 33], + [-17, 52], + [18, 109], + [-65, 79], + [8, 31], + [-52, 30], + [22, 73], + [-32, 19], + [-10, 52], + [87, 28], + [42, 44], + [17, -50], + [1, -64], + [76, -67], + [38, 21], + [54, 64], + [58, 9], + [79, 41], + [-2, 73], + [-70, 107], + [18, 114], + [-107, 11], + [-30, 50], + [-97, 96], + [-46, 101], + [26, 35], + [-23, 74], + [19, 57], + [-14, 49], + [91, 62], + [15, 37], + [-27, 43] + ], + [ + [12737, 2566], + [-85, 102], + [-45, -64], + [-49, 1], + [-26, -25], + [-89, -51], + [11, -70], + [-43, -86], + [-70, 10], + [-59, -70], + [-48, 19], + [-3, 50], + [-62, -13], + [-31, -46], + [-12, -78], + [-18, -33], + [-129, 148], + [-43, -103], + [-79, 110], + [-21, -66], + [-35, -16], + [-4, -46], + [-63, -58], + [-41, 31], + [-24, 54], + [-141, 86], + [-22, -11], + [-20, -63], + [-51, -70], + [-3, -39], + [-97, 17], + [-64, -34], + [-23, 49], + [-44, -6], + [-7, -52], + [-24, -51], + [-15, -88], + [16, -65], + [64, -74], + [-12, -49], + [30, -69], + [-19, -47], + [-15, -102], + [42, -32], + [-24, -58], + [-32, 5], + [-50, 49], + [-78, -12], + [-38, -22], + [-21, 37], + [9, 59], + [-25, 27], + [6, 74], + [-36, 48], + [2, 62], + [-44, -32], + [-50, -14], + [-69, -91], + [-56, -30], + [-87, 44], + [-63, -50], + [-35, 76], + [10, 55], + [-61, 13], + [-15, 76], + [20, 57], + [-12, 39], + [-45, -15], + [-81, 42], + [-174, 7], + [-19, 19], + [27, 50], + [21, 78], + [40, 49], + [-26, 130], + [50, 55], + [27, 75], + [-3, 41], + [-60, 26], + [-100, -21], + [-28, 37], + [-57, 28], + [14, 28], + [-4, 77], + [-44, 66], + [28, 20], + [-31, 95], + [-40, 8], + [-4, 67], + [61, 110], + [-95, -20], + [-29, 18], + [-76, -15], + [-46, 8], + [-80, -23], + [-58, -32], + [-84, -76], + [-56, 41], + [40, 30], + [40, 60], + [11, 83], + [-35, 90], + [-46, 22], + [7, 138], + [44, 32], + [32, -1], + [-20, 81], + [51, 148], + [42, -23], + [77, 93], + [16, 114], + [55, -41], + [19, 14], + [43, 116], + [30, 26], + [35, -23], + [29, 48], + [-40, 48], + [-15, 66], + [64, 35], + [-24, 32], + [25, 70], + [18, 121], + [-19, 198], + [-19, 108], + [18, 53], + [-14, 38], + [-1, 102], + [-45, 11], + [-45, 41], + [-17, -52], + [-43, -24], + [-9, 50], + [-30, 48], + [-5, 89], + [-28, 33], + [2, 41] + ], + [ + [19000, 5153], + [17, -69], + [-37, -21], + [-14, 49], + [34, 41] + ], + [ + [19285, 6166], + [59, -14], + [76, -47], + [18, -26], + [-14, -46], + [-54, 35], + [-55, -1], + [-30, 99] + ], + [ + [19012, 6426], + [-61, -52], + [-42, -9], + [-29, -49], + [-11, -54], + [-63, -23], + [-24, -34], + [85, -49], + [109, 84], + [33, 7], + [67, -28], + [67, -93], + [33, -62], + [95, -33], + [33, -52], + [-55, -45], + [-63, -90], + [51, -8], + [48, -17], + [11, -22], + [-25, -61], + [22, -44], + [-14, -36], + [-50, -20], + [-59, 8], + [-25, 38], + [-29, -24], + [62, -93], + [-17, -137], + [-51, -45], + [26, -108], + [30, -79], + [-69, 16], + [-48, -100], + [-33, 34], + [-24, 61], + [-78, -100], + [-26, -76], + [-30, 9], + [-5, -68], + [-73, -87], + [-31, -65], + [30, -51], + [-59, -128], + [-39, -27] + ], + [ + [19160, 3611], + [33, -37], + [69, -20], + [6, -84], + [-33, -49], + [-4, -108], + [17, -49], + [-31, -60], + [-3, -64], + [-43, -60], + [-22, -60], + [8, -26], + [-43, -189], + [-23, -162], + [-22, -46], + [-3, -56], + [-40, -96], + [-44, -60], + [-19, -52], + [-48, -48], + [-30, -63], + [-29, -122], + [2, -120], + [-15, -67], + [-55, 28], + [-3, 68], + [-30, 94], + [-44, 67], + [-72, 49], + [-62, 187], + [-2, 67], + [-44, 71], + [28, 108], + [-2, 82], + [26, 131], + [41, 71], + [19, 56], + [61, 108], + [31, 89], + [31, 41], + [21, 63], + [58, 54], + [22, 65], + [63, 110], + [127, 55], + [23, 43], + [41, 24], + [39, -33] + ], + [ + [16356, 2163], + [-35, -136], + [-70, 0], + [-175, 0], + [-35, 23], + [35, 113], + [105, 68], + [70, 0], + [35, 0], + [0, -68], + [70, 0] + ], + [ + [15953, 2036], + [4, -20], + [-22, -8], + [-4, 48], + [13, 0], + [9, -20] + ] + ], + "transform": { + "scale": [0.002506264076531506, 0.0019419661250892803], + "translate": [73.61621093750023, 18.211250305175724] + }, + "objects": { + "china": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-34", + "NAME_0": "China", + "ID_1": 1, + "NAME_1": "Anhui", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "安徽|安徽", + "VARNAME_1": "Ānhuī" + } + }, + { + "arcs": [[6, 7, 8, 9]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-11", + "NAME_0": "China", + "ID_1": 2, + "NAME_1": "Beijing", + "TYPE_1": "Zhíxiáshì", + "ENGTYPE_1": "Municipality", + "NL_NAME_1": "北京|北京", + "VARNAME_1": "Běijīng" + } + }, + { + "arcs": [[10, 11, 12, 13, 14]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-50", + "NAME_0": "China", + "ID_1": 3, + "NAME_1": "Chongqing", + "TYPE_1": "Zhíxiáshì", + "ENGTYPE_1": "Municipality", + "NL_NAME_1": "重慶|重庆", + "VARNAME_1": "Chóngqìng" + } + }, + { + "arcs": [[15, 16, 17, 18]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-35", + "NAME_0": "China", + "ID_1": 4, + "NAME_1": "Fujian", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "福建", + "VARNAME_1": "Fújiàn" + } + }, + { + "arcs": [[19, 20, 21, 22, 23, 24, 25]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-62", + "NAME_0": "China", + "ID_1": 5, + "NAME_1": "Gansu", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "甘肅|甘肃", + "VARNAME_1": "Gānsù" + } + }, + { + "arcs": [[26, 27, 28, -16, 29]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-44", + "NAME_0": "China", + "ID_1": 6, + "NAME_1": "Guangdong", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "廣東|广东", + "VARNAME_1": "Guǎngdōng" + } + }, + { + "arcs": [[-27, 30, 31, 32, 33]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-45", + "NAME_0": "China", + "ID_1": 7, + "NAME_1": "Guangxi", + "TYPE_1": "Zìzhìqu", + "ENGTYPE_1": "Autonomous Region", + "NL_NAME_1": "廣西壯族自治區|广西壮族自治区", + "VARNAME_1": "Guǎngxī Zhuàngzú" + } + }, + { + "arcs": [[34, -33, 35, 36, -13]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-52", + "NAME_0": "China", + "ID_1": 8, + "NAME_1": "Guizhou", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "貴州|贵州", + "VARNAME_1": "Gùizhōu" + } + }, + { + "arcs": [[37]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-46", + "NAME_0": "China", + "ID_1": 9, + "NAME_1": "Hainan", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "海南", + "VARNAME_1": "Hǎinán" + } + }, + { + "arcs": [[[-8, 38]], [[39, 40, 41, -10, 42, 43, 44, 45, 46, 47]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 49, + "ISO": "CN-13", + "NAME_0": "China", + "ID_1": 10, + "NAME_1": "Hebei", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "河北", + "VARNAME_1": "Héběi" + } + }, + { + "arcs": [[48, 49, 50]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-23", + "NAME_0": "China", + "ID_1": 11, + "NAME_1": "Heilongjiang", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "黑龙江省|黑龍江省", + "VARNAME_1": "Hēilóngjiāng" + } + }, + { + "arcs": [[51, -4, 52, 53, 54, -46]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-41", + "NAME_0": "China", + "ID_1": 12, + "NAME_1": "Henan", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "河南", + "VARNAME_1": "Hénán" + } + }, + { + "arcs": [[-53, -3, 55, 56, -11, 57]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-42", + "NAME_0": "China", + "ID_1": 13, + "NAME_1": "Hubei", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "湖北", + "VARNAME_1": "Húběi" + } + }, + { + "arcs": [[58, -28, -34, -35, -12, -57]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-43", + "NAME_0": "China", + "ID_1": 14, + "NAME_1": "Hunan", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "湖南", + "VARNAME_1": "Húnán" + } + }, + { + "arcs": [[59, 60, 61, -6, 62]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-32", + "NAME_0": "China", + "ID_1": 15, + "NAME_1": "Jiangsu", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "江蘇|江苏", + "VARNAME_1": "Jiāngsū" + } + }, + { + "arcs": [[63, -17, -29, -59, -56, -2]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-36", + "NAME_0": "China", + "ID_1": 16, + "NAME_1": "Jiangxi", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "江西", + "VARNAME_1": "Jiāngxī" + } + }, + { + "arcs": [[64, 65, 66, -49]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-22", + "NAME_0": "China", + "ID_1": 17, + "NAME_1": "Jilin", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "吉林", + "VARNAME_1": "Jílín" + } + }, + { + "arcs": [[-40, 67, -66, 68]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-21", + "NAME_0": "China", + "ID_1": 18, + "NAME_1": "Liaoning", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "遼寧|辽宁", + "VARNAME_1": "Liáoníng" + } + }, + { + "arcs": [[-67, -68, -48, 69, 70, 71, -20, 72, -50]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-15", + "NAME_0": "China", + "ID_1": 19, + "NAME_1": "Nei Mongol", + "TYPE_1": "Zìzhìqu", + "ENGTYPE_1": "Autonomous Region", + "NL_NAME_1": "內蒙古自治區|内蒙古自治区", + "VARNAME_1": "Inner Mongol|Nèiměnggǔ" + } + }, + { + "arcs": [[73, -21, -72]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-64", + "NAME_0": "China", + "ID_1": 20, + "NAME_1": "Ningxia Hui", + "TYPE_1": "Zìzhìqu", + "ENGTYPE_1": "Autonomous Region", + "NL_NAME_1": "寧夏回族自治區|宁夏回族自治区", + "VARNAME_1": "Níngxià Húizú" + } + }, + { + "arcs": [[74, 75, 76, -24]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-63", + "NAME_0": "China", + "ID_1": 21, + "NAME_1": "Qinghai", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "青海", + "VARNAME_1": "Qīnghǎi" + } + }, + { + "arcs": [[77, -54, -58, -15, 78, -22, -74, -71]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-61", + "NAME_0": "China", + "ID_1": 22, + "NAME_1": "Shaanxi", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "陝西|陕西", + "VARNAME_1": "Shǎnxī" + } + }, + { + "arcs": [[-63, -5, -52, -45, 79]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-37", + "NAME_0": "China", + "ID_1": 23, + "NAME_1": "Shandong", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "山東|山东", + "VARNAME_1": "Shāndōng" + } + }, + { + "arcs": [[[80, -61, 81]], [[82]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 49, + "ISO": "CN-31", + "NAME_0": "China", + "ID_1": 24, + "NAME_1": "Shanghai", + "TYPE_1": "Zhíxiáshì", + "ENGTYPE_1": "Municipality", + "NL_NAME_1": "上海|上海", + "VARNAME_1": "Shànghǎi" + } + }, + { + "arcs": [[-47, -55, -78, -70]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-14", + "NAME_0": "China", + "ID_1": 25, + "NAME_1": "Shanxi", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "山西", + "VARNAME_1": "Shānxī" + } + }, + { + "arcs": [[-79, -14, -37, 83, 84, -75, -23]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-51", + "NAME_0": "China", + "ID_1": 26, + "NAME_1": "Sichuan", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "四川", + "VARNAME_1": "Sìchuān" + } + }, + { + "arcs": [[85, -43, -9, -39, -7, -42]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-12", + "NAME_0": "China", + "ID_1": 27, + "NAME_1": "Tianjin", + "TYPE_1": "Zhíxiáshì", + "ENGTYPE_1": "Municipality", + "NL_NAME_1": "天津|天津", + "VARNAME_1": "Tiānjīn" + } + }, + { + "arcs": [[-25, -77, 86, 87]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-65", + "NAME_0": "China", + "ID_1": 28, + "NAME_1": "Xinjiang Uygur", + "TYPE_1": "Zìzhìqu", + "ENGTYPE_1": "Autonomous Region", + "NL_NAME_1": "新疆維吾爾自治區|新疆维吾尔自治区", + "VARNAME_1": "Xīnjiāng Wéiwúěr" + } + }, + { + "arcs": [[-76, -85, 88, 89, -87]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-54", + "NAME_0": "China", + "ID_1": 29, + "NAME_1": "Xizang", + "TYPE_1": "Zìzhìqu", + "ENGTYPE_1": "Autonomous Region", + "NL_NAME_1": "西藏自治區|西藏自治区", + "VARNAME_1": "Tibet|Xīzàng" + } + }, + { + "arcs": [[-36, -32, 90, -89, -84]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-53", + "NAME_0": "China", + "ID_1": 30, + "NAME_1": "Yunnan", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "雲南|云南", + "VARNAME_1": "Yúnnán" + } + }, + { + "arcs": [[[91]], [[92]], [[-18, -64, -1, -62, -81, 93]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 49, + "ISO": "CN-33", + "NAME_0": "China", + "ID_1": 31, + "NAME_1": "Zhejiang", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "浙江", + "VARNAME_1": "Zhèjiāng" + } + }, + { + "arcs": [[94]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-71", + "NAME_0": "China", + "ID_1": 32, + "NAME_1": "Taiwan", + "TYPE_1": "Shěng", + "ENGTYPE_1": "Province", + "NL_NAME_1": "台湾", + "VARNAME_1": "Táiwān" + } + }, + { + "arcs": [[95]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-91", + "NAME_0": "China", + "ID_1": 33, + "NAME_1": "Hong Kong", + "TYPE_1": "Tèbié Xíngzhèngqū", + "ENGTYPE_1": "Special Administrative Region", + "NL_NAME_1": "香港", + "VARNAME_1": "Xiānggǎng" + } + }, + { + "arcs": [[96]], + "type": "Polygon", + "properties": { + "ID_0": 49, + "ISO": "CN-92", + "NAME_0": "China", + "ID_1": 34, + "NAME_1": "Macao", + "TYPE_1": "Tèbié Xíngzhèngqū", + "ENGTYPE_1": "Special Administrative Region", + "NL_NAME_1": "澳门", + "VARNAME_1": "Àomén" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/france-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/france-topo.json new file mode 100644 index 000000000000..36175604e702 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/france-topo.json @@ -0,0 +1,8740 @@ +{ + "type": "Topology", + "arcs": [ + [ + [19730, 17629], + [56, -18], + [92, 19], + [55, -18], + [52, 40], + [104, -70], + [35, 33], + [39, -14], + [34, 33], + [60, -64], + [116, -36], + [62, -53], + [158, -30], + [6, -44], + [-86, -140], + [-32, -71], + [-31, -113], + [-60, -61], + [-47, -3], + [-22, -58], + [-73, -15], + [-13, -82], + [-101, -122], + [-80, -50], + [-69, -143], + [8, -159], + [-59, -61], + [-2, -53], + [-50, -150], + [-4, -37], + [22, -120], + [-79, -64], + [-43, -186], + [-38, -39], + [-65, -111], + [-1, -46], + [-32, -32] + ], + [ + [19642, 15491], + [-92, 14], + [3, 50], + [-78, 25], + [11, 99], + [-194, 101], + [-59, 10], + [-21, 71], + [-39, 51], + [-118, 12] + ], + [ + [19055, 15924], + [-30, 42], + [-95, 12], + [-64, 43], + [38, 48], + [-7, 121], + [46, 168], + [-4, 32] + ], + [ + [18939, 16390], + [-71, 6], + [3, 46] + ], + [ + [18871, 16442], + [138, -17], + [38, 47], + [36, 7], + [62, 83], + [37, 111], + [37, 53], + [-59, 5], + [-9, 74], + [74, 168], + [-27, 60], + [-70, 37], + [-28, 42], + [-37, -4], + [-84, 41], + [-3, -51], + [-31, -49], + [-60, 12], + [-64, 33], + [13, 102], + [-104, 60], + [-47, 7], + [-4, 59], + [35, 30], + [23, 63], + [61, -11], + [0, 70], + [32, 51], + [4, 50], + [36, 46], + [-15, 30], + [47, 33], + [11, -75], + [36, -91], + [69, 2], + [54, -60], + [44, 17], + [87, -35], + [-6, -36], + [57, -31], + [50, 30], + [32, -12], + [111, 39], + [131, -79], + [67, 64], + [13, 68], + [72, 144] + ], + [ + [19642, 15491], + [-14, -94], + [-1, -101], + [62, -83], + [21, -61], + [-61, -100], + [0, -73], + [-39, -40], + [8, -91], + [-50, -132], + [28, -110], + [-54, -75], + [17, -98], + [66, -65], + [40, -71], + [-14, -57], + [-103, -69], + [9, -66], + [-24, -48], + [-84, -52], + [-47, -59], + [-56, -36], + [-74, 20], + [-54, -6], + [-87, -39], + [-18, 36], + [-94, 13], + [-9, 108], + [-60, 31] + ], + [ + [18950, 14073], + [18, 50], + [-55, 61], + [-32, 95], + [-118, 15], + [-7, 46], + [23, 71], + [40, 46], + [-28, 80], + [15, 37], + [-39, 46], + [-58, 23], + [-55, 45], + [-114, 30], + [-29, 88] + ], + [ + [18511, 14806], + [77, 23], + [37, 40], + [-33, 88], + [45, 54], + [-11, 78], + [35, 120], + [92, 57], + [49, 119], + [26, 17], + [51, 107], + [-39, 22], + [43, 103], + [30, 24], + [65, 160], + [77, 106] + ], + [ + [9869, 9352], + [54, -24], + [-43, -77], + [33, -34], + [64, -5], + [-11, -50], + [-48, -21], + [-67, -116], + [-22, -68], + [19, -26], + [57, -11], + [2, -31], + [-68, -46], + [0, -54], + [59, 6], + [30, -36], + [-57, -62], + [84, -49], + [19, 12], + [142, -40], + [-32, -44], + [11, -102], + [76, -96] + ], + [ + [10171, 8378], + [-61, -29], + [8, -75], + [42, -127], + [-30, -51], + [22, -54], + [-47, -22], + [-5, -32], + [-57, -10], + [-3, -76], + [-97, -32], + [-6, -48], + [38, -36], + [-9, -48], + [-45, -59], + [-26, 17], + [-70, -86], + [-68, -4], + [-52, -27], + [6, -87], + [-117, -127] + ], + [ + [9594, 7365], + [-6, 43], + [-91, 45], + [-54, 62], + [-78, -18], + [-88, -87], + [-54, 12], + [-28, 56], + [29, 23], + [14, 66], + [-25, 55], + [-45, 26], + [-32, -38], + [-77, -19], + [-110, 4], + [-15, 56], + [-111, -21], + [-14, -49], + [-32, -15], + [-53, 29], + [-64, -19], + [-83, -56], + [-78, 37], + [-11, 69], + [-35, 101], + [-61, 62] + ], + [ + [8392, 7789], + [-26, 27], + [-26, 120], + [28, -6], + [52, 49], + [-42, 41], + [-49, 10], + [-72, -60], + [-26, -47], + [-68, 19], + [-170, -4], + [-26, 50], + [-50, 24], + [68, 127], + [-44, 71], + [19, 79], + [35, 30], + [-7, 48], + [58, 127], + [-42, 100], + [-75, 13], + [-58, -39] + ], + [ + [7871, 8568], + [5, 88], + [63, 117] + ], + [ + [7939, 8773], + [80, 82], + [68, -3], + [25, -29], + [46, 2], + [91, 113], + [25, 61], + [49, -2], + [28, 58], + [-33, 112], + [33, 127], + [62, 92], + [71, 17], + [33, 41], + [84, 40], + [51, 87], + [63, 34], + [16, 77], + [-23, 63], + [114, 58], + [19, 62], + [65, 107] + ], + [ + [8906, 9972], + [50, -62], + [127, 2], + [48, -47], + [-38, -117], + [41, -57], + [44, 7], + [9, -44], + [44, 13], + [45, 96], + [38, -51], + [81, 26], + [57, -20], + [62, 8], + [38, -113], + [59, -53], + [51, 26], + [71, -45], + [-72, -89], + [26, -38], + [42, 16], + [35, -53], + [42, 17], + [63, -42] + ], + [ + [6824, 9087], + [104, -14], + [126, 21], + [2, -78], + [83, -26], + [63, 17], + [88, -60], + [16, -58], + [-21, -73], + [63, -123], + [24, 31], + [135, -66], + [29, -61], + [101, -46], + [74, -10], + [50, 57], + [36, 14], + [34, -47], + [40, 3] + ], + [ + [8392, 7789], + [-67, -28], + [-28, 32], + [-64, -50], + [-64, -26], + [-26, -45], + [-55, -24], + [127, -91], + [-44, -106], + [-68, -57], + [-43, -14], + [-21, -82], + [-48, 13], + [-82, -113], + [6, -103], + [27, -13], + [-27, -77], + [46, -72], + [-73, -66], + [-77, -15], + [-11, -37], + [79, -94], + [2, -52], + [-85, -81], + [-81, -28] + ], + [ + [7715, 6560], + [-83, 101], + [-48, -13], + [3, -135], + [-77, -27], + [-57, 20], + [-122, 15], + [-11, 64], + [20, 112], + [-71, 35], + [-3, 48], + [-74, 6], + [-59, 32], + [-16, 59], + [-151, 100], + [-4, 79], + [-67, 31], + [-22, -30], + [-64, 10], + [-72, -17], + [-10, -28], + [-99, -21], + [-115, 56], + [-81, -32], + [-56, 17], + [41, 110], + [-16, 62], + [-60, -7], + [-85, 54], + [-34, -68], + [-226, -80] + ], + [ + [5996, 7113], + [3, 183], + [43, 74], + [29, 79], + [20, 107], + [75, -1], + [3, -29], + [90, -10], + [81, 25], + [18, 35], + [-59, 38], + [19, 29], + [-166, 155], + [-29, -13], + [-51, -98], + [-27, -19], + [-24, -64], + [-2, -57], + [-33, -15], + [12, 131], + [45, 351], + [32, 308], + [34, 418], + [29, 285], + [2, 262], + [14, 61], + [-7, 60], + [26, 84], + [58, 80], + [19, 58], + [79, -70], + [-48, -35], + [152, -153], + [50, -22], + [54, -80], + [93, -68], + [63, -76], + [64, -156], + [22, -95], + [3, -87], + [85, -250], + [58, -91], + [68, -79], + [35, 4], + [-28, 72], + [-52, 61], + [-49, 125], + [-1, 87], + [-27, 110], + [-17, 122], + [-30, 138] + ], + [ + [7715, 6560], + [17, -55], + [1, -115], + [64, 8], + [130, -13], + [59, -45], + [157, -14], + [1, -33], + [-55, -53], + [-38, -129], + [-25, -13], + [24, -96] + ], + [ + [8050, 6002], + [-32, -59], + [31, -98], + [-26, -37], + [-39, 3], + [-83, 68], + [40, 60], + [-64, 65], + [-13, -46], + [-90, -84], + [-35, 37], + [-80, -18], + [-36, -48], + [-50, -30], + [60, -45], + [-23, -56], + [29, -55], + [-7, -56], + [-37, -29], + [4, -55], + [34, -81], + [-82, -64], + [11, -87], + [-53, -127], + [42, 0], + [7, -71] + ], + [ + [7558, 5089], + [-63, -2], + [-35, -56], + [-47, -19], + [-27, 24], + [-81, 15], + [-67, -42], + [-17, 33], + [45, 44], + [-27, 29], + [-160, -122], + [-22, 35], + [-51, -45], + [-90, 48], + [-77, -4], + [-1, -38], + [-95, 87], + [-52, -53], + [-27, 12], + [-53, -45], + [-59, 20], + [-46, -36], + [-100, 13], + [-7, -83], + [-218, 37], + [-63, 59], + [-181, -109], + [-48, 15], + [-73, -23], + [-74, 4], + [-17, 35], + [-43, 14], + [-35, 48], + [-68, -22] + ], + [ + [5579, 4962], + [53, 107], + [66, 158], + [12, 132], + [31, 171], + [75, 352], + [93, 513], + [60, 470], + [27, 248] + ], + [ + [9594, 7365], + [-96, -95], + [13, -205], + [56, -44], + [10, -112] + ], + [ + [9577, 6909], + [-6, -29], + [-170, -15], + [-47, 57], + [-50, -45], + [13, -42], + [-41, -85], + [126, -78], + [-49, -85], + [16, -18], + [-41, -92], + [-32, -37], + [9, -58], + [-29, -51], + [-112, 43], + [-6, -62], + [-60, -31], + [-19, -91] + ], + [ + [9079, 6190], + [-52, -16], + [-71, -77], + [-16, 42], + [-91, 84], + [-40, -43], + [-44, -18], + [-42, 23], + [-80, -17], + [-27, -61], + [-36, -1], + [-56, -46], + [-40, 16], + [-49, -17], + [-34, -38], + [-108, 41], + [-28, 31], + [-39, -18], + [-79, -88], + [-48, 20], + [-49, -5] + ], + [ + [7783, 5083], + [15, -91], + [27, 10], + [40, -55], + [-8, -71], + [26, -60], + [-52, -5], + [-6, -68], + [41, -55], + [41, 78], + [41, -50], + [-22, -107], + [51, -66], + [-25, -44], + [-58, 5], + [-30, -61], + [5, -45], + [35, -32], + [-41, -82], + [-45, -26], + [10, -104], + [-75, 5], + [-46, -117], + [-80, -65], + [11, -112], + [-51, -40], + [-57, 11], + [-6, -65], + [-36, -10], + [-3, -102], + [16, -43], + [-69, -90], + [26, -79], + [-10, -44], + [32, -25] + ], + [ + [7480, 3378], + [-89, -12], + [-52, -68], + [-47, 4], + [-47, -22], + [-99, 67], + [-32, -77], + [-58, -25], + [-10, 61], + [-41, -11], + [-3, 63], + [-72, 58], + [-47, 63], + [-29, -9], + [-54, 44], + [0, 110], + [-30, 48], + [-49, -6], + [-38, -29], + [-86, -2], + [-70, 30], + [-38, -26], + [-63, 25], + [-55, 64], + [-95, 15], + [-63, 54], + [-105, 25], + [-49, 44], + [-54, -21], + [-94, 62], + [14, 52], + [45, 60], + [-76, -12], + [-40, -46], + [2, -85], + [-15, -64], + [-135, 42], + [-48, 81], + [1, 23], + [86, 85], + [22, 114], + [26, 23], + [1, 149], + [-45, 46], + [-39, -16], + [-82, 34], + [-22, 27], + [-78, -31], + [-28, -67], + [-65, 16], + [-21, 63], + [10, 44], + [-71, 23], + [-92, -41], + [-15, 75], + [-73, 57], + [0, 42], + [72, 17], + [171, 77], + [46, 45], + [48, 99], + [33, 42], + [36, 81] + ], + [ + [7558, 5089], + [102, 27], + [22, -34], + [101, 1] + ], + [ + [7789, 4605], + [9, -92], + [-35, -48], + [53, -13], + [17, 107], + [-44, 46] + ], + [ + [7795, 4438], + [-44, 15], + [-35, -82], + [34, -70], + [44, 29], + [16, 41], + [-15, 67] + ], + [ + [12618, 12449], + [27, -85], + [52, -46], + [71, -23], + [59, -84], + [57, -28], + [99, 85], + [46, 0], + [31, -63], + [74, 5], + [22, 50], + [83, 0], + [23, -50], + [10, -88], + [48, 19], + [52, 57], + [43, -14], + [1, 60], + [73, 46], + [-28, 55], + [80, 0] + ], + [ + [13541, 12345], + [-11, -20], + [74, -157], + [39, -25], + [28, -116], + [32, -16], + [10, -100], + [23, -55], + [86, -36], + [39, 25], + [42, -43], + [2, -53], + [42, -20], + [37, 35], + [65, -13], + [62, -58], + [6, -56], + [-38, -98], + [21, -63], + [-12, -120], + [-126, -57], + [-4, -40] + ], + [ + [13958, 11259], + [-47, -28], + [-95, -15], + [-8, -43], + [-45, -26], + [32, -42], + [-4, -119], + [18, -107], + [28, -46], + [-24, -85], + [33, -121], + [-6, -28], + [-64, -35], + [-61, -14], + [-50, 17], + [-25, -99] + ], + [ + [13640, 10468], + [-24, 58], + [-60, 21], + [-59, 114], + [-36, 6], + [-141, -8], + [-30, 32], + [-21, 82], + [-52, 24], + [-78, -45], + [-57, -3], + [-74, 29], + [-80, -5], + [-28, 25], + [-85, -19], + [-91, 36], + [-15, 68], + [-63, -25], + [-52, 4], + [-35, 47], + [-35, -3], + [-43, 107], + [-43, 13], + [0, 88], + [32, 19], + [0, 51], + [-119, 31], + [-62, -34], + [-3, -84], + [-47, -15], + [-84, 57], + [-15, -96], + [-72, -22], + [-34, -107], + [-26, -14], + [-111, 55] + ], + [ + [11897, 10955], + [-10, 71], + [-47, 25], + [-21, 123], + [-41, 26], + [-28, 83], + [-42, 20], + [-88, 85], + [-44, -20], + [-67, 26], + [-3, 95], + [-40, 16], + [-9, 86] + ], + [ + [11457, 11591], + [6, 70], + [32, 56], + [97, 98], + [120, 6], + [57, 27], + [83, -30], + [115, 73], + [-19, 101], + [-33, 26], + [24, 91], + [-34, 29], + [94, 30], + [71, 74], + [42, 79], + [40, 21], + [20, -40], + [48, -27], + [29, 34], + [53, 4], + [81, 79], + [123, 78], + [112, -21] + ], + [ + [12728, 9146], + [15, -62], + [-19, -25], + [18, -72], + [75, 10], + [102, -40], + [-7, -60], + [24, -63], + [53, -20], + [-17, -82], + [41, -122], + [20, 9], + [79, -45], + [-62, -55], + [-21, -103], + [60, -24], + [40, -81], + [-3, -43] + ], + [ + [13126, 8268], + [-116, -103], + [-64, 12], + [-28, -50], + [13, -48], + [-69, -61], + [-39, 29], + [-34, 63], + [-62, -41], + [-12, -67], + [-72, -117], + [0, -92], + [-26, -33], + [-3, -76], + [-21, -11], + [-53, -154] + ], + [ + [12540, 7519], + [-66, 75], + [-24, 118], + [16, 119], + [-21, 31], + [-47, -14], + [-53, 145], + [-6, 47], + [-72, 4], + [-41, 32], + [-4, 51], + [-59, 70], + [-49, -76], + [-37, 0], + [-45, -86], + [-37, 6], + [-38, -67], + [-7, -113], + [-55, -36], + [-16, -48], + [3, -80], + [-86, -77], + [-17, -69], + [-33, -36], + [-50, -7], + [-84, 22], + [-47, -19], + [-41, 64], + [-59, -6], + [-120, -52], + [-1, -65] + ], + [ + [11344, 7452], + [-59, 52], + [-5, 53], + [20, 30], + [-38, 57], + [-10, 54], + [8, 70], + [28, 85], + [-8, 50], + [-41, 27], + [-84, 140], + [35, 59], + [-49, 55], + [7, 39], + [-28, 57] + ], + [ + [11120, 8280], + [48, 21], + [61, 0], + [12, 45], + [-37, 38], + [-34, 78], + [75, 70], + [45, -12], + [23, 81], + [-14, 45], + [49, 25], + [17, 54], + [-29, 25], + [-12, 90], + [70, 64], + [46, 94], + [32, -3], + [39, 77], + [58, 18], + [24, 129], + [-29, 54], + [48, 9], + [93, -67], + [127, -6], + [-9, 47], + [-47, 37], + [33, 138] + ], + [ + [11809, 9431], + [55, 1], + [59, -60], + [36, 2], + [84, -43], + [44, 6], + [-11, -65], + [51, -64], + [41, 27], + [68, -20], + [47, 37], + [120, -49], + [42, -39], + [44, -122], + [107, -50], + [64, 45], + [6, 56], + [62, 53] + ], + [ + [13955, 9152], + [32, -6], + [32, 39], + [61, 10], + [22, -45], + [47, -25], + [34, 24], + [54, 0], + [62, 29], + [37, 36], + [57, 18], + [31, -22], + [67, 7], + [42, -58], + [56, 25], + [63, -24], + [23, -52], + [-49, -44], + [53, -40], + [-25, -54], + [33, -40], + [75, 35], + [98, -89] + ], + [ + [14860, 8876], + [-17, -130], + [-37, -41], + [-15, -95], + [-42, 47], + [-54, 8], + [-6, -38], + [38, -52], + [-59, -13], + [-17, -79], + [47, -28], + [1, -38], + [-43, -20], + [-51, 5], + [-42, -74], + [36, -56], + [-89, -30], + [-51, 7], + [-11, -68], + [-50, -58], + [-7, -50], + [-36, -28], + [-74, 9], + [-61, -24], + [-47, 12], + [-62, -113], + [-82, 2], + [-32, -126], + [-75, -29], + [-21, -30] + ], + [ + [13901, 7746], + [-36, 8], + [-9, 64], + [-41, -17], + [-97, 161], + [-120, -21], + [11, 58], + [-45, 53], + [-76, -3], + [4, -39], + [-45, -57], + [-95, -22], + [-31, -41], + [-48, 57], + [-32, 112], + [-39, 86], + [-11, 90], + [-26, -9], + [-39, 42] + ], + [ + [12728, 9146], + [120, -5], + [58, 40], + [27, 58], + [79, 11], + [34, 43], + [32, -49], + [40, 59], + [37, -49], + [117, -2], + [37, 45], + [118, -60], + [21, 19], + [33, -104], + [42, -43], + [70, 57], + [148, -16], + [47, 6], + [3, 60], + [69, -4], + [26, -49], + [69, -11] + ], + [ + [13640, 10468], + [43, -19], + [51, -84], + [-55, -82], + [12, -46], + [-41, -107], + [44, -17], + [-2, -47], + [44, -20], + [41, -81], + [-7, -48], + [71, -134], + [51, -16], + [38, -49], + [41, -16], + [72, -94], + [-12, -28], + [29, -99], + [31, -33], + [-28, -33], + [12, -53], + [-118, -89], + [-13, -37], + [11, -84] + ], + [ + [11809, 9431], + [15, 92], + [-4, 81], + [-30, 6], + [-51, 87], + [23, 31], + [12, 75], + [43, -3], + [1, 60], + [22, 38], + [-11, 67], + [-46, 60] + ], + [ + [11783, 10025], + [-89, 74], + [-5, 43], + [-66, 89], + [92, 42], + [-7, 48], + [76, -6], + [30, 52], + [64, 56], + [-17, 20], + [41, 87], + [59, 20], + [-22, 68], + [15, 84], + [-45, 32], + [-35, 91], + [0, 74], + [23, 56] + ], + [ + [11519, 16929], + [51, -23], + [26, -42], + [215, 33], + [33, -80], + [62, -18] + ], + [ + [11906, 16799], + [-37, -46], + [-11, -87], + [-35, -10], + [37, -75], + [-36, -31], + [-1, -49], + [-31, -103], + [25, -17], + [-18, -58], + [4, -125], + [26, -59], + [-61, -50], + [-50, -20], + [-73, -121] + ], + [ + [11645, 15948], + [-50, -28], + [-89, 49], + [-19, -43], + [-48, 9], + [-96, 68], + [-38, -48], + [-43, -21], + [11, -37], + [-169, -7], + [-14, -21], + [-76, 0] + ], + [ + [11014, 15869], + [-54, 51], + [36, 45], + [-18, 27], + [25, 55], + [-15, 81], + [-59, 52], + [-26, 82] + ], + [ + [10903, 16262], + [-8, 36], + [69, 141], + [-37, 61], + [123, -9], + [27, 108], + [35, 29], + [-58, 57], + [21, 83], + [75, 16], + [43, 66], + [-15, 50], + [116, 49], + [19, 35], + [60, 8] + ], + [ + [11373, 16992], + [66, -36], + [22, -60], + [58, 33] + ], + [ + [11536, 17086], + [-17, -157] + ], + [ + [11373, 16992], + [-77, 87], + [-40, 11], + [-1, 119], + [30, 57], + [48, 30] + ], + [ + [11333, 17296], + [103, 86], + [37, 11] + ], + [ + [11473, 17393], + [67, -22], + [-32, -63], + [9, -31] + ], + [ + [11517, 17277], + [-136, -72], + [-12, -36], + [46, -38], + [121, -45] + ], + [ + [11666, 17160], + [79, -24], + [-9, -47], + [-90, 25], + [-60, -30], + [-50, 2] + ], + [ + [11517, 17277], + [108, 2], + [37, -65], + [4, -54] + ], + [ + [13318, 17166], + [0, -61], + [-63, -31], + [-4, -62], + [-49, -3], + [-20, -51], + [108, -52], + [6, -118], + [-44, -34], + [53, -80], + [24, 22], + [98, -61] + ], + [ + [13427, 16635], + [-73, -34], + [-67, -81], + [26, -47], + [-48, -48], + [-70, -2], + [45, -71], + [-78, -44], + [33, -56], + [-20, -65], + [43, -22], + [-9, -58] + ], + [ + [13209, 16107], + [-46, 20], + [-33, -54], + [-82, -6], + [-42, 20], + [-50, -38], + [-72, -2], + [-36, 24], + [-64, -4], + [-63, -34], + [-76, 5], + [-14, -71], + [-39, -50], + [44, -81], + [-59, -143], + [-53, -14], + [-57, -57], + [3, -35] + ], + [ + [12470, 15587], + [-108, -17], + [-71, -60], + [-61, 86], + [-40, -50], + [-75, -47], + [-65, -10], + [-39, 42], + [-95, -16], + [-62, 20], + [-24, -36], + [-95, 30], + [96, 139], + [-26, 91], + [-34, 1], + [-99, 64], + [1, 75], + [-28, 49] + ], + [ + [11906, 16799], + [-5, 39], + [41, 52], + [-11, 28], + [29, 67], + [-22, 79] + ], + [ + [11938, 17064], + [6, 15], + [-57, 163], + [41, 23], + [10, 124], + [-40, 60], + [21, 26], + [-41, 53] + ], + [ + [11878, 17528], + [41, 84], + [16, 76] + ], + [ + [11935, 17688], + [67, 66], + [91, -73], + [49, 9], + [17, -46], + [40, 6], + [74, 79], + [56, -29], + [17, -34], + [70, 35], + [113, -24], + [126, 62], + [24, 36] + ], + [ + [12679, 17775], + [144, -41], + [-14, -33], + [54, -81], + [-30, -86], + [121, -88], + [31, -84], + [54, 26], + [13, -63], + [26, -31], + [49, 27], + [32, -106], + [159, -49] + ], + [ + [11938, 17064], + [-36, 39], + [-112, 81], + [-124, -24] + ], + [ + [11473, 17393], + [11, 35], + [130, 11], + [38, -34], + [81, -3], + [80, 60], + [65, 66] + ], + [ + [11333, 17296], + [8, 94], + [-50, 8], + [2, 46], + [-73, 36], + [-1, 45], + [-65, 14], + [-90, -32], + [-70, 42], + [-67, 6], + [-45, 60], + [-72, -63], + [-17, 30], + [22, 55], + [-65, 44], + [-154, -73], + [-46, 27], + [-36, 51], + [-95, -2] + ], + [ + [10419, 17684], + [72, 120], + [32, 188], + [43, 46] + ], + [ + [10566, 18038], + [56, -20], + [-38, -40], + [41, -60], + [53, 12], + [164, -52], + [141, 48], + [39, -18], + [35, 30], + [91, 42], + [23, -39], + [88, -14], + [24, -44], + [80, 33], + [33, -63], + [70, 19], + [22, 55], + [32, 1], + [58, -85], + [126, -3], + [90, -54], + [-14, -37], + [107, -20], + [48, -41] + ], + [ + [10903, 16262], + [-28, -40], + [-88, 15], + [-20, 47], + [-50, 2], + [-39, 102], + [16, 94], + [-40, 41], + [-80, 15], + [9, 80], + [-76, 2], + [-39, 71], + [-59, 42], + [13, 58], + [-44, 36], + [66, 103], + [-62, 33], + [-13, 50], + [21, 73], + [-11, 93], + [-57, 34], + [27, 41], + [-39, 72], + [-57, 44] + ], + [ + [10253, 17370], + [-10, 57], + [-38, 20], + [10, 92], + [-30, 27], + [-16, 62], + [61, -4], + [53, 38], + [128, 35], + [8, -13] + ], + [ + [8571, 17392], + [-55, 50], + [-32, -52], + [-36, -16], + [-38, 26], + [-108, -27], + [-80, -3], + [-49, -36], + [-30, 58], + [-109, -56], + [-14, -54], + [-102, -43], + [-6, -17], + [-108, -74], + [-95, -27], + [-190, 48], + [-48, -10], + [-72, -62], + [-101, 110], + [-83, 2], + [-70, -57], + [-62, 1], + [-115, -44], + [-103, 44], + [14, -56], + [-96, -69], + [-56, -12], + [-43, -61], + [-51, -18] + ], + [ + [6633, 16937], + [-125, 44], + [-41, 36], + [-41, -29], + [-129, -2], + [-39, 13], + [-28, 80], + [-86, 26], + [86, 94], + [66, 25], + [58, 64], + [1, 48], + [-69, 13], + [14, 61], + [102, -17], + [72, 37], + [45, 51], + [15, 50], + [66, 35], + [-21, 65], + [-16, 169], + [-79, 49], + [56, 126], + [-30, 38], + [-79, -64], + [-80, 23], + [-20, 41], + [-59, 26], + [-32, 45], + [-58, 44], + [-10, 87], + [41, 39], + [-7, 41] + ], + [ + [6206, 18295], + [0, 34], + [72, 72], + [96, 13], + [116, -4], + [58, -44], + [100, -39], + [166, -25], + [119, -2], + [81, -15], + [120, 12], + [103, -23], + [59, 2], + [71, -25], + [122, -72], + [92, -38], + [27, 19], + [87, 3], + [88, 27], + [165, 72], + [91, 73], + [92, 95], + [147, 58], + [108, 11] + ], + [ + [8386, 18499], + [6, 0] + ], + [ + [8392, 18499], + [18, -107], + [-11, -35], + [34, -72], + [-26, -49], + [24, -51], + [67, -3], + [26, -71], + [-94, -36], + [24, -40], + [87, -55], + [-10, -124], + [70, -25], + [-51, -95], + [13, -55], + [-44, -13], + [9, -78], + [61, -11], + [33, -30], + [-51, -157] + ], + [ + [6633, 16937], + [68, -99], + [87, -65], + [-50, -55], + [31, -85], + [-35, -132], + [-46, -28], + [-65, -66], + [-20, -45] + ], + [ + [6603, 16362], + [-55, -15], + [-43, 42], + [-46, 8], + [-31, -50], + [-45, -13], + [-89, 60], + [-15, -16] + ], + [ + [6279, 16378], + [-73, 30], + [-44, -9], + [-32, 29], + [-128, 31], + [-36, -23], + [-9, -56], + [-97, -46], + [-8, -37], + [-56, -37], + [-69, 12], + [-41, 59], + [-55, 3], + [-9, 44], + [-58, 94], + [19, 41], + [-28, 69], + [-42, 40], + [-19, 60] + ], + [ + [5494, 16682], + [78, 2], + [31, -24], + [54, 18], + [98, 9], + [-78, 64], + [-64, 32], + [-51, 105], + [-57, 28], + [-3, 175], + [-17, 71], + [17, 69], + [24, 261], + [-45, 32], + [-35, 152], + [-2, 53], + [28, 84], + [-33, 189], + [-40, 7], + [-31, 84], + [-73, 142], + [-105, 118], + [-52, 4], + [-22, 65], + [-6, 128], + [-28, 35], + [-11, 89], + [-57, 54], + [75, 93], + [-9, 109], + [-45, 85], + [-98, 29], + [-15, 84], + [41, 44], + [77, -44], + [52, 7], + [21, -46], + [78, -23], + [94, -4], + [64, -48], + [66, 4], + [40, -33], + [52, 26], + [93, 10], + [114, 88], + [84, 16], + [144, -32], + [71, -85], + [21, -113], + [-40, 14], + [-18, -47], + [-59, -43], + [4, -91], + [84, -129], + [103, -124], + [34, -72], + [-27, -57], + [47, -9], + [44, -42] + ], + [ + [8571, 17392], + [-42, -92], + [88, -67], + [49, 13], + [34, -19], + [82, -9], + [56, 9], + [52, -59], + [-18, -47], + [127, -88], + [63, -19], + [68, -111], + [-37, -76], + [27, -77], + [72, -1] + ], + [ + [9192, 16749], + [13, -45], + [-2, -96], + [37, 1], + [5, -53], + [28, -28], + [90, -32], + [-2, -50], + [67, -32], + [-23, -101], + [-26, -10], + [30, -70], + [-11, -100], + [-63, -72], + [-123, -64], + [-66, -4], + [-44, -92], + [63, -20], + [-16, -69], + [65, -115], + [-49, -39] + ], + [ + [9165, 15658], + [-59, -33], + [-55, 42], + [-56, 97], + [-54, 52], + [-61, -47], + [-102, 17], + [-81, 76], + [17, 24], + [-117, 34], + [-53, 29], + [-35, 204], + [14, 33], + [-29, 62], + [-101, 65], + [-123, -14], + [-71, -23], + [-29, -59], + [-65, -13], + [-13, -44], + [-55, -17], + [-69, -59], + [-30, 36], + [-90, -32] + ], + [ + [7848, 16088], + [-4, 108], + [10, 50], + [-89, -6], + [-62, 24], + [-28, 129], + [34, 29], + [-97, 80], + [-54, 13], + [-28, -44], + [27, -27], + [-39, -38], + [-80, 5], + [-26, -47], + [-48, -21], + [-122, 50], + [-48, -31], + [-48, 17], + [-68, -82], + [-62, -5], + [-94, -60], + [-6, 69], + [-104, -3], + [15, -52], + [-63, -32], + [-33, 65], + [-59, 14], + [-69, 69] + ], + [ + [14292, 13202], + [-1, 53], + [103, 10] + ], + [ + [14394, 13265], + [8, -37], + [-57, -47], + [-53, 21] + ], + [ + [15201, 15259], + [70, -37], + [62, 8], + [-2, -97], + [88, -11], + [31, -44], + [-48, -79], + [35, -26], + [28, 55], + [48, -7], + [74, -114], + [12, -60], + [50, -48], + [-12, -37], + [-105, -61], + [10, -38], + [53, 3], + [19, -70], + [-26, -65], + [26, -29], + [131, 11], + [-14, -45], + [125, -62], + [50, 68], + [20, -56], + [59, -27], + [40, -57], + [29, -93], + [78, 71], + [104, -6] + ], + [ + [16236, 14306], + [40, -17], + [40, 80], + [82, -61], + [28, -134], + [-76, -117], + [-75, 7], + [-30, -76], + [95, -45], + [-17, -57], + [33, -86], + [70, 10], + [-3, -108], + [-32, -60], + [69, -25] + ], + [ + [16460, 13617], + [-47, -37], + [-14, -160], + [-46, -35], + [14, -48], + [-30, -90], + [-38, -23], + [-45, -117], + [-95, -18], + [-63, -63], + [-12, -45], + [65, -25], + [-66, -41], + [-30, -42] + ], + [ + [16053, 12873], + [-51, 21], + [-89, -57], + [-139, -7], + [-39, 47], + [-71, -21], + [-10, -26], + [-127, 16], + [-34, -38], + [-134, -42], + [-42, -33], + [-54, 13], + [-91, -54], + [-29, 26], + [19, 42], + [-128, 50], + [-43, 89], + [-31, 10], + [11, 56], + [-66, -18], + [-35, 46], + [-97, 19], + [-32, 22], + [-5, 74], + [-91, -22], + [8, 56], + [-112, 25], + [-39, 54], + [-64, 55] + ], + [ + [14438, 13276], + [3, 59], + [29, 36], + [-18, 52], + [-64, 76], + [-66, -35], + [-15, 28], + [-15, 133], + [23, 30], + [-38, 42] + ], + [ + [14277, 13697], + [0, 62], + [-43, 36], + [-8, 73], + [72, 68], + [14, 62], + [-20, 32], + [-2, 70], + [36, 11], + [28, 71], + [26, 0], + [62, 177], + [54, 71], + [28, 104], + [-38, 46], + [30, 38], + [50, -18], + [59, 53], + [-17, 127], + [7, 82], + [-96, -7], + [3, 63], + [45, 124] + ], + [ + [14567, 15042], + [30, 84], + [61, -13], + [99, 26], + [47, -27], + [75, 27], + [100, 8], + [-38, 80], + [66, 50], + [59, 7], + [87, -37], + [48, 12] + ], + [ + [14438, 13276], + [-44, -11] + ], + [ + [14292, 13202], + [-85, -6], + [-34, -94], + [50, -50], + [-21, -96], + [-31, -72], + [25, -57], + [-21, -29], + [7, -105], + [37, -10], + [41, -56], + [-6, -35], + [-66, -44], + [21, -120], + [-36, 3], + [-117, -48], + [-54, -57], + [-60, -30], + [-68, -14], + [-29, -42], + [-49, -4], + [-17, 78], + [-70, 37], + [-119, -33], + [-49, 27] + ], + [ + [12618, 12449], + [39, 70], + [18, 62], + [-12, 103], + [-17, 27], + [43, 102], + [-22, 54], + [17, 121], + [-18, 37], + [-63, 40], + [14, 67], + [-5, 82], + [-47, 166], + [-29, 65], + [6, 70], + [-108, 111], + [-48, 23], + [-18, 55], + [76, 157], + [18, 69], + [-88, 183] + ], + [ + [12374, 14113], + [-35, 34], + [8, 37], + [63, 7], + [26, 26], + [68, -20], + [28, 28] + ], + [ + [12532, 14225], + [62, -26], + [65, 25], + [45, 41], + [37, -7], + [17, -102], + [65, -50], + [61, 13], + [47, -77], + [62, 5], + [16, 28], + [84, -57], + [63, 20], + [17, 43], + [90, -6], + [60, -23], + [10, 63], + [30, 13], + [58, -54], + [43, -13], + [5, -83], + [149, -33], + [55, -93], + [37, -23], + [68, 19], + [47, -56], + [79, 123], + [45, -55], + [-50, -39], + [16, -60], + [57, 34], + [86, -37], + [13, -70], + [43, -52], + [39, 3], + [35, 59], + [89, -1] + ], + [ + [16053, 12873], + [12, -60], + [68, -39], + [33, -108], + [49, -12], + [48, 23], + [37, -74], + [68, -15], + [0, -56], + [-130, -9], + [-72, -32], + [6, -35], + [89, -63], + [-36, -41], + [-8, -44], + [45, -16], + [49, -122], + [-11, -44], + [39, -37], + [-41, -53], + [-13, -76], + [-58, -33], + [-14, -108], + [96, -45], + [-2, -46], + [-71, -46], + [-78, 5], + [-20, -36] + ], + [ + [16138, 11651], + [-57, 4], + [-90, 45], + [-22, 91], + [-93, 2], + [-133, -56], + [-115, 71], + [-41, -26], + [-28, 24], + [-31, -60], + [-2, -60], + [-31, -38], + [-9, -97], + [-46, -81], + [-11, -96], + [-63, -164], + [-47, -178] + ], + [ + [15319, 11032], + [-79, 6], + [-12, 40], + [23, 83], + [-48, 41], + [3, 77], + [-42, 46], + [-64, -7], + [-33, -48], + [-47, -27], + [-45, 59], + [-30, -56], + [-53, -7], + [-24, 48], + [-82, 26], + [-57, -35], + [-16, -147] + ], + [ + [14713, 11131], + [-38, -49], + [-57, -31], + [-68, -65], + [-58, 72], + [-60, 15], + [-43, -48], + [-70, 8], + [-45, 49], + [-68, -23], + [-50, -44], + [-60, 1], + [-37, 76], + [-74, 2], + [-41, 24], + [28, 106], + [-14, 35] + ], + [ + [12532, 14225], + [-56, 66], + [-12, 66], + [33, 43], + [-55, 55], + [9, 29], + [-116, 79], + [11, 103], + [88, 18], + [35, -14], + [82, 52], + [54, 1], + [-15, 104], + [30, 27], + [-34, 72], + [0, 68], + [145, 97], + [35, 58], + [-11, 85], + [-29, 30], + [-11, 72], + [-69, 42], + [-36, 134], + [-21, 29], + [-119, 46] + ], + [ + [13209, 16107], + [55, -40], + [84, -17], + [62, -71], + [-1, -33], + [67, -49], + [-8, -36], + [51, -24], + [14, -38], + [-35, -39], + [31, -30], + [-72, -85], + [29, -23], + [72, 14], + [42, -104], + [59, 13], + [61, 51], + [36, -79], + [51, -60], + [-5, -47], + [43, -52], + [-7, -45], + [75, -63], + [-47, -29], + [16, -46], + [99, -19], + [-19, -85], + [129, -18], + [107, -1], + [54, 32], + [37, -36], + [83, 73], + [87, -27], + [35, -41], + [73, -11] + ], + [ + [4648, 16603], + [2, -30], + [47, -50], + [53, -3], + [40, -44], + [48, 40] + ], + [ + [4838, 16516], + [51, -74] + ], + [ + [4889, 16442], + [70, 20], + [20, -65], + [-17, -39], + [-5, -97], + [-35, -25], + [16, -61], + [-13, -121], + [25, -43], + [-56, -13], + [17, -55], + [-14, -39], + [-48, -11], + [-28, -40], + [-98, 28], + [-48, -84], + [-64, 9], + [-58, -34], + [-7, -82], + [-34, 12], + [-17, -98], + [-90, -58], + [-6, -27] + ], + [ + [4399, 15519], + [-67, -31], + [-67, 10], + [-3, 39], + [-70, 73], + [-40, -2], + [-64, -34], + [-71, -2], + [30, -59], + [-57, -81], + [5, -44], + [-47, -16], + [-69, -75], + [-70, 23], + [26, 167], + [-22, 29], + [-56, -31], + [-71, -12], + [-41, -61], + [-15, 82], + [-40, 54], + [-61, -12], + [-64, 54], + [-81, 16], + [-86, -25], + [-29, 70], + [-57, 35], + [-115, -18], + [-1, -50], + [-27, -36], + [-69, 6], + [-35, -27], + [-108, -19], + [-80, 64], + [-125, -60], + [-7, 64], + [-90, 29], + [-81, -18], + [-49, 17] + ], + [ + [2425, 15638], + [36, 54], + [-19, 73], + [42, 46], + [5, 47], + [-46, 26], + [7, 50], + [-22, 74], + [12, 69], + [-82, 26], + [14, 78], + [75, 58], + [-65, 38], + [-18, 68], + [69, 76], + [9, 32], + [-63, 102], + [-54, 6], + [-38, 67], + [-15, 83], + [21, 31] + ], + [ + [2293, 16742], + [107, 8], + [20, 34], + [-26, 79], + [54, 29], + [0, 32], + [-59, 57], + [34, 86], + [61, 51], + [54, -4], + [90, -36], + [9, -35], + [118, 52], + [43, 39], + [47, -16], + [69, 61], + [48, 18], + [8, -57], + [33, -4], + [150, 72], + [27, -27], + [-29, -56], + [84, -32], + [44, 4], + [-26, -87], + [24, -39], + [94, -4], + [39, -128], + [56, -23], + [17, -57], + [36, -1], + [59, -55], + [-3, -128], + [65, -21], + [26, -44], + [75, -31], + [-2, -67], + [40, -51], + [39, 76], + [94, 46], + [78, 96], + [88, 30], + [35, 35], + [6, 60], + [51, 5], + [25, -27], + [140, 75], + [64, -12], + [-39, -81], + [23, -14], + [57, 43], + [27, -57], + [63, -85], + [35, -16], + [40, 92], + [43, -24] + ], + [ + [98, 16327], + [36, -50], + [-62, -46], + [-72, 35], + [98, 61] + ], + [ + [2425, 15638], + [-87, -34], + [-78, -44], + [-38, 1], + [-56, -90], + [37, -34], + [10, -76], + [42, -23], + [52, -158], + [134, 14], + [88, -35], + [27, -59], + [96, 49], + [38, -35], + [8, -69], + [-36, -51], + [11, -83], + [-71, -17], + [-12, -56], + [-43, -26], + [-51, 31], + [-30, -8], + [29, -74] + ], + [ + [2495, 14761], + [-21, -84], + [-28, -10], + [-212, 38], + [-73, 57], + [-34, -30], + [-125, 14], + [-88, 83], + [-20, 73], + [-78, 73], + [-47, -33], + [13, -65], + [-95, -17], + [-59, 42], + [-74, -2], + [-53, -32], + [3, -62], + [-48, -63], + [-159, -8], + [-80, 19], + [-42, -13], + [-26, 35], + [68, 59], + [-26, 124], + [-93, 168], + [-44, 43], + [-138, 71], + [-28, -32], + [-130, 56], + [-85, 5], + [-23, 18], + [-4, 74], + [67, -8], + [210, 65], + [74, -6], + [18, 22], + [67, 1], + [25, 23], + [66, 7], + [105, -49], + [31, 33], + [19, 119], + [-65, 111], + [-70, 5], + [-26, 28], + [-134, 45], + [-39, -5], + [-43, -102], + [-49, 6], + [-17, 98], + [-89, 69], + [74, 36], + [-13, 81], + [53, 17], + [-10, -71], + [51, 8], + [37, -36], + [69, 26], + [63, -40], + [65, 5], + [90, 44], + [82, -36], + [39, 34], + [-88, 40], + [-62, 3], + [33, 63], + [-92, 4], + [-9, -40], + [-107, -1], + [-6, 54], + [34, 39], + [-20, 36], + [-102, -13], + [-48, -44], + [-31, 3], + [-86, -49], + [-111, 41], + [-45, -59], + [-93, -5], + [-18, 60], + [29, 57], + [-52, 81], + [18, 68], + [37, 60], + [-31, 58], + [6, 56], + [40, 56], + [71, 61], + [142, 6], + [101, 144], + [39, 1], + [31, -35], + [60, 14], + [52, 59], + [52, 6], + [76, 49], + [36, 0], + [74, -61], + [80, 7], + [52, 70], + [115, 28], + [113, 15], + [78, 52], + [45, -7], + [-19, -54], + [11, -54], + [79, -5], + [31, -63], + [62, 13], + [0, 80], + [22, 48], + [42, 21], + [53, -32], + [68, 16], + [82, -48], + [43, 20], + [10, -69] + ], + [ + [4648, 16603], + [-10, 74], + [71, -9], + [47, 13], + [46, -54], + [36, -111] + ], + [ + [6279, 16378], + [-11, -40], + [20, -55], + [-24, -57], + [0, -57], + [42, -83], + [-11, -69], + [22, -49], + [-58, -76], + [-24, -103], + [38, -117], + [-6, -47], + [21, -49], + [24, -158], + [42, -49], + [-18, -82], + [18, -85], + [-73, -29], + [-60, 14], + [-75, -56], + [-51, -222], + [-76, -132] + ], + [ + [6019, 14777], + [-11, -77] + ], + [ + [6008, 14700], + [-183, 55], + [-42, 64], + [-140, 8], + [21, -60], + [-55, -11], + [-41, -37], + [-98, -20], + [-51, -37], + [-17, -87], + [-142, -52], + [-65, -2], + [-141, 20], + [-34, -26], + [-78, -21], + [-58, 17], + [-60, -63], + [-55, -7], + [-53, -32], + [-23, -42] + ], + [ + [4693, 14367], + [-24, 37], + [13, 66], + [-29, 15], + [20, 122], + [77, 5], + [-78, 93], + [58, 30], + [4, 45], + [53, 51], + [-28, 40], + [-64, -18], + [-29, 82], + [54, 93], + [-39, 74], + [-65, 74], + [-47, -9], + [-95, 44], + [-76, -18], + [22, 91], + [48, 49], + [79, 0], + [31, 24], + [-16, 46], + [-104, 2], + [-12, 60], + [-47, 54] + ], + [ + [4889, 16442], + [14, 29], + [-103, 211], + [59, 53], + [23, 43], + [56, 26], + [64, -5], + [54, 20], + [39, -50], + [-40, -27], + [-10, -55], + [51, -69], + [87, -17], + [113, 3], + [104, 26], + [54, 48], + [40, 4] + ], + [ + [2908, 13816], + [90, -57], + [59, -8], + [14, -67], + [67, -41], + [70, -9], + [-26, -58], + [-96, 2], + [-59, 32], + [-68, -18], + [-48, 53], + [-22, 82], + [19, 89] + ], + [ + [2530, 14420], + [107, -30], + [-56, -49], + [-65, 41], + [14, 38] + ], + [ + [4693, 14367], + [16, -64], + [-25, -19], + [6, -141], + [-85, -27], + [-2, -55], + [-54, -5], + [-42, 26], + [-42, -31], + [-23, 42], + [-60, 8], + [-28, -121], + [-146, -8], + [-19, 41], + [-54, -67] + ], + [ + [4135, 13946], + [-62, 21], + [14, 36], + [69, 62], + [-118, 62], + [-58, -30], + [-161, 14], + [-28, -52], + [-56, 22], + [-150, -48], + [-57, 30], + [6, 30], + [-96, 111], + [137, -40], + [50, 23], + [54, -35], + [62, 104], + [-71, 72], + [-36, 15], + [-104, -5], + [-59, -35], + [-28, -50], + [-33, 46], + [-55, -27], + [51, -82], + [-59, 9], + [-129, 46], + [-72, -31], + [-41, 5], + [-13, -77], + [38, -101], + [-39, -28], + [-28, 57], + [-2, 59], + [27, 38], + [-7, 80], + [-36, 70], + [-49, 26], + [-25, 49], + [3, 62], + [63, 26], + [68, 93], + [-66, 21], + [-79, -149], + [-98, 49], + [-9, 29], + [-61, 19], + [-26, 29], + [-47, -1], + [-13, -41], + [-109, -15], + [-74, 80], + [-46, 113], + [18, 54] + ], + [ + [11457, 11591], + [-128, 18], + [-47, -10] + ], + [ + [11282, 11599], + [-25, 77], + [65, 30], + [16, 43], + [-70, 156], + [13, 72], + [27, 31], + [8, 91], + [-35, 12], + [-46, 57], + [28, 46], + [-138, 115], + [74, 75], + [-15, 42], + [-50, 37], + [-37, 52], + [46, 13], + [16, 64], + [80, 55], + [23, 50], + [-69, 3], + [-61, 48], + [-1, 47], + [32, 28], + [10, 105], + [-105, 76], + [41, 71], + [-14, 68], + [-31, -7], + [-46, 55], + [-52, -7], + [-66, -46], + [-58, -8], + [-84, 48], + [-83, 21], + [104, 108], + [-5, 95] + ], + [ + [10774, 13422], + [56, -28], + [43, 19], + [20, 43], + [-31, 48], + [42, 20], + [28, 61], + [86, -56], + [47, 6], + [71, 37], + [92, -8], + [38, 44], + [-59, 76], + [12, 27], + [-37, 106], + [132, 101], + [26, -67], + [60, 20], + [-9, 124], + [15, 52], + [-44, 8], + [-8, 58], + [-32, 64], + [-96, 5], + [-18, 74], + [57, 42], + [128, 45] + ], + [ + [11393, 14343], + [78, 19], + [128, -100], + [101, 56], + [81, -88], + [92, 7], + [66, -38], + [30, -73], + [67, -36], + [3, -47], + [45, -16], + [63, 36], + [-6, 57], + [60, 3], + [54, -63], + [45, 1], + [74, 52] + ], + [ + [11014, 15869], + [-44, -73], + [-5, -73], + [21, -51], + [-7, -51], + [-53, -21], + [-58, -95], + [-15, -51], + [-95, -58], + [-123, -32], + [-110, 0], + [-34, 21], + [-53, -26], + [0, -36], + [-46, -40], + [-72, 32], + [-47, -37], + [9, -106] + ], + [ + [10282, 15172], + [-122, 67], + [-7, -81], + [-46, -13], + [-31, 24], + [-26, -63], + [-32, 23], + [-63, -23], + [-14, 33], + [-53, -12], + [-27, 36], + [-66, -23], + [-64, 138], + [-60, 15], + [-28, 59], + [8, 45], + [-73, 12], + [-86, -4], + [-26, 27], + [81, 52], + [-55, 30], + [-84, -71], + [-17, 27], + [-85, -23], + [-73, 2] + ], + [ + [9233, 15449], + [14, 68], + [99, 7], + [-47, 59], + [-67, 9], + [-67, 66] + ], + [ + [9192, 16749], + [74, 41], + [21, 63], + [69, -15], + [66, 40], + [80, 6], + [73, 69], + [79, -29], + [7, 84], + [52, 6], + [17, -38], + [128, 1], + [19, -27], + [60, 23], + [47, -17], + [76, 72], + [-31, 54], + [5, 36], + [69, 68], + [82, 25], + [20, 60], + [-35, 61], + [21, 30], + [62, 8] + ], + [ + [9983, 13346], + [26, -29], + [31, -88], + [-13, -61], + [-59, -12], + [-64, -143], + [-67, -61], + [-79, 62], + [-160, -58], + [-33, -45], + [3, -107], + [-32, -17], + [-6, -80], + [-36, -165], + [-2, -48], + [-37, -29], + [41, -101], + [-45, 11], + [-33, -52], + [-83, 42], + [-62, -23] + ], + [ + [9273, 12342], + [-84, 100], + [-8, 86], + [-84, 72], + [-75, 97], + [2, 76], + [-25, 89], + [-102, 43], + [-9, 32], + [-79, -12], + [10, -44], + [39, -19], + [-1, -42], + [-144, 8], + [-93, -43], + [-9, -27], + [-115, 44], + [-61, -41], + [-22, 20], + [-19, 73], + [18, 130], + [-18, 59], + [-53, -17], + [-31, 56], + [-56, -40], + [-48, 46], + [36, 42], + [-29, 54], + [-30, -35], + [-46, 49], + [-84, 5], + [-37, 94] + ], + [ + [8016, 13297], + [29, 114], + [15, 166], + [54, 104], + [46, 30], + [10, 41], + [44, 43], + [-44, 39], + [42, 41], + [0, 84], + [61, 111], + [7, 58], + [-38, 37], + [22, 59], + [31, 22], + [-7, 68] + ], + [ + [8288, 14314], + [45, 9], + [25, -30], + [72, -9], + [27, -35], + [61, -26], + [37, 23], + [-59, 100], + [28, 48], + [61, -54], + [45, 4], + [15, 52], + [58, 2], + [147, 62], + [32, 51] + ], + [ + [8882, 14511], + [22, 32], + [71, -21], + [58, -39], + [36, 31], + [80, -33], + [73, -9], + [39, -24], + [-23, -49], + [30, -104], + [54, 9], + [32, 66], + [111, -29], + [-6, -66], + [70, 36], + [67, -103], + [-49, -70], + [76, -140], + [61, -49], + [-35, -93], + [18, -122], + [-43, -61], + [21, -69], + [36, -9], + [47, -51], + [95, 50], + [110, -133], + [50, -115] + ], + [ + [11282, 11599], + [-147, -9], + [-123, 25], + [-22, 24], + [-81, -22], + [-166, -1], + [-32, 54], + [-78, -12], + [19, -51], + [-14, -50], + [-64, -28], + [-40, 56], + [-66, -74], + [-62, 78], + [-84, -55], + [-4, 48], + [-51, 6], + [-114, -145], + [-34, -20] + ], + [ + [10119, 11423], + [-12, 35], + [-97, 89], + [-52, -62], + [-93, 5], + [-50, -19], + [-63, 36] + ], + [ + [9752, 11507], + [55, 113], + [-96, 39], + [-24, 47], + [21, 72], + [-91, 81], + [-108, -1], + [-8, 70], + [-38, -4], + [-76, 34], + [-39, 37], + [-34, 73], + [34, 51], + [-21, 61], + [35, 52], + [-41, 82], + [-48, 28] + ], + [ + [9983, 13346], + [102, 52], + [44, 47], + [95, 22], + [80, -35], + [-17, 73], + [107, 44], + [87, -7], + [25, -29], + [54, 12], + [24, 29], + [93, -104], + [31, 15], + [66, -43] + ], + [ + [10282, 15172], + [69, 17], + [-14, -79], + [-46, -25], + [-1, -35], + [83, -59], + [7, -80], + [-74, -69], + [8, -49], + [45, -47], + [-35, -62], + [75, -61], + [51, 38], + [68, -46], + [60, -16], + [54, -174], + [100, -9], + [52, 15], + [32, 38], + [110, 4], + [8, -36], + [82, 6], + [21, 30], + [86, -6], + [15, 17], + [116, -27], + [84, 18], + [57, -85], + [-2, -47] + ], + [ + [8882, 14511], + [-53, 42], + [44, 29], + [28, 60], + [38, 9], + [95, 81], + [86, 93], + [8, 45], + [-21, 109], + [42, 31], + [36, -8], + [9, 60], + [45, 45], + [-39, 78], + [32, 71], + [-71, 64], + [13, 57], + [61, 2], + [-2, 70] + ], + [ + [16266, 18920], + [-25, -56], + [-57, 4], + [-49, -72], + [-71, -48], + [-43, 62], + [-116, -5], + [-22, 51], + [-40, 8], + [-36, -80], + [2, -55], + [-58, -67], + [77, -111], + [-14, -35], + [22, -46], + [-47, -37], + [30, -34], + [-24, -46], + [-50, -24], + [-45, -54], + [6, -63], + [40, -34], + [-9, -44], + [-62, -11], + [-92, -75] + ], + [ + [15583, 18048], + [-58, 64], + [-49, -16], + [-31, -43], + [-54, -8], + [-128, 14], + [-83, 37], + [-31, -38], + [-74, -10], + [-24, 74], + [-45, 61], + [-56, -21], + [-134, -24], + [-46, 11], + [-53, 41], + [-23, 58], + [-34, -17], + [-70, 23], + [-94, 124], + [-72, 7], + [-19, 34], + [-71, 13], + [-147, 3] + ], + [ + [14187, 18435], + [-16, 75], + [37, 20], + [-30, 55], + [-2, 86], + [52, 23], + [2, 47], + [-37, 14], + [39, 59], + [-19, 53], + [-59, 60], + [37, 34], + [101, -4], + [18, 103], + [90, 48], + [9, 38], + [53, 27], + [25, 87], + [-55, 33], + [42, 158], + [24, 19], + [10, 108], + [-58, 28], + [23, 95] + ], + [ + [14473, 19701], + [120, 25], + [60, -37], + [49, 3], + [100, -38], + [101, 22], + [46, 49], + [85, 41], + [58, 3], + [81, 40], + [17, 125], + [-23, 19], + [32, 64], + [75, 37], + [22, 59], + [57, 32], + [112, 5], + [-4, -141], + [-49, 2], + [-1, -120], + [-30, -39], + [-8, -71], + [-30, -24], + [-8, -54], + [84, -22], + [52, -62], + [6, -54], + [-48, -82], + [34, -100], + [-28, -56], + [117, -18], + [38, 32], + [55, -1], + [36, -47], + [84, -42], + [32, 8], + [83, -127], + [35, -38], + [66, 4], + [58, -18], + [34, 21], + [99, -97], + [22, -52], + [72, -32] + ], + [ + [15149, 16432], + [-26, -141], + [-27, -32], + [59, -28], + [65, -114], + [68, -16], + [-9, -48], + [134, -62], + [-42, -38], + [57, -61], + [-12, -30], + [13, -124], + [-19, -31], + [36, -40], + [-37, -67], + [18, -63], + [-33, -29], + [-21, -58], + [-129, 36], + [-63, -109], + [50, -60], + [-30, -58] + ], + [ + [13427, 16635], + [37, -36], + [38, -74], + [42, -2], + [19, -81], + [136, 3], + [100, -22], + [45, -29], + [41, 22], + [18, 103], + [53, 13], + [16, 60], + [63, 4], + [81, 139], + [66, -7], + [28, 25], + [27, 67], + [79, -34], + [72, 50], + [85, -13], + [99, 25], + [46, -37], + [11, -53], + [-24, -56], + [20, -46], + [-25, -31], + [120, -112], + [47, -30], + [112, -35], + [96, 8], + [54, 23], + [120, -47] + ], + [ + [15641, 16782], + [27, -168], + [41, 5], + [29, 45], + [29, -85], + [74, -21], + [39, -54], + [33, 5], + [99, -80], + [68, -37], + [84, -12], + [34, -63], + [75, -20], + [18, -63], + [56, -48], + [38, -9] + ], + [ + [16385, 16177], + [-93, -64], + [51, -31], + [-38, -43], + [12, -68], + [75, 54], + [80, -17], + [11, -50], + [80, -103], + [40, 26], + [66, -53], + [-20, -60], + [108, -51], + [31, -70], + [-79, -25], + [8, -64], + [-44, -69], + [-36, -83], + [91, -20], + [75, -61], + [55, -61], + [28, -59], + [-25, -43], + [16, -58], + [70, 16], + [78, -77] + ], + [ + [17025, 15043], + [-2, -59], + [-49, 13], + [-46, -85], + [11, -39], + [-104, 17], + [-20, -68], + [-26, -28], + [-52, 13], + [-33, -101], + [47, -26], + [4, -52], + [-31, -26], + [-1, -112], + [-142, -31], + [-21, 68], + [-25, 14], + [-57, -76], + [-74, 24], + [-20, -22], + [-98, -3], + [-48, -120], + [-2, -38] + ], + [ + [15149, 16432], + [84, 22], + [115, -27], + [-48, 146], + [133, 44], + [-19, 85], + [-107, 5], + [40, 59], + [107, -24], + [67, 50], + [120, -10] + ], + [ + [15583, 18048], + [30, -3], + [33, -56], + [-77, -56], + [84, -184], + [21, -164], + [39, -28], + [4, -111], + [-11, -45], + [-89, -59], + [-57, -15], + [-35, -56], + [-2, -65], + [36, -66], + [-72, -54], + [7, -46], + [63, -15], + [85, -111], + [31, -2], + [-32, -130] + ], + [ + [13318, 17166], + [67, 138], + [59, 3], + [12, 58], + [41, 18], + [31, 44], + [29, 87], + [58, 28], + [-42, 58], + [-55, -18], + [-46, 12], + [4, 47], + [69, 62], + [-34, 95], + [22, 54], + [92, 7], + [30, -25], + [70, 35], + [4, 44], + [-69, 6], + [-46, 61], + [0, 69], + [-33, 59], + [-19, 76], + [40, 66], + [104, 25], + [103, 53], + [75, -32], + [13, 84], + [78, 32], + [22, 28], + [56, -70], + [40, 4], + [40, -47], + [35, 3], + [19, 105] + ], + [ + [22460, 1132], + [7, -96], + [-18, -44], + [21, -72], + [-11, -170], + [-45, -30], + [23, -44], + [-49, -39], + [-55, -87], + [75, -21], + [-57, -83], + [-53, -44], + [-34, -84], + [15, -59], + [-29, -18], + [-57, -102], + [47, -29], + [-36, -44], + [-24, -60], + [-63, -6], + [-22, 46], + [-116, 31], + [23, 68], + [-22, 39], + [-98, 39], + [-54, 48], + [-108, 25], + [-50, 31], + [-57, 65], + [-105, 64], + [-7, 47], + [21, 91], + [87, 54], + [42, 9], + [-1, 101], + [-52, 1], + [-49, 42], + [-45, -14], + [-17, 75], + [-76, -40], + [-62, 53], + [46, 31], + [57, 118], + [38, 1], + [24, 92], + [-7, 62], + [30, 29], + [-33, 76], + [-66, -15], + [-34, -26], + [-119, 5], + [-73, 129], + [82, 6], + [33, 33], + [-20, 62], + [46, 40], + [45, 5], + [51, 47], + [-40, 52], + [-19, 60], + [-33, 26], + [-37, -9], + [-62, 37], + [-69, 80], + [4, 48], + [-18, 60], + [5, 80], + [48, 25], + [129, 30], + [-3, 44], + [-43, 45], + [-79, 13], + [31, 55], + [-40, 48], + [-62, -48], + [-15, 30], + [35, 81] + ], + [ + [21181, 2327], + [42, -23], + [55, 6], + [72, -57], + [48, 1], + [64, -23], + [23, -30], + [76, -20], + [64, 30], + [-1, -70], + [68, -104], + [28, 6], + [40, -51], + [36, -4], + [79, -66], + [35, 9], + [3, -73], + [26, -23], + [42, -112], + [49, -26], + [16, -34], + [-3, -87], + [43, -60], + [95, 2], + [-9, -75], + [16, -52], + [-20, -125], + [52, -19], + [-30, -123], + [127, -54], + [105, 78], + [38, -16] + ], + [ + [21181, 2327], + [53, 16], + [-5, 66], + [87, 21], + [23, 117], + [-18, 83], + [61, 33], + [38, 83], + [44, 17], + [41, -31], + [30, 28], + [10, 83], + [92, 6], + [16, 49], + [64, 22], + [41, -13], + [112, 23], + [62, 41], + [-11, 48], + [109, 116], + [68, 10], + [53, -27], + [85, -15], + [3, -40], + [41, -59], + [57, 48], + [-2, 42], + [37, 47], + [-12, 70], + [8, 72], + [-51, 84], + [32, 86], + [4, 80], + [34, 24], + [6, 63], + [-20, 32], + [-4, 97], + [117, 27], + [66, -55], + [-7, -85], + [19, -34], + [35, -327], + [-32, -57], + [-38, -189], + [4, -65], + [41, -81], + [80, -133], + [10, -107], + [-7, -67], + [18, -75], + [0, -83], + [-13, -88], + [10, -103], + [32, -119], + [-11, -97], + [10, -103], + [-7, -168], + [-29, -74], + [-121, -206], + [-88, -126], + [23, -32], + [-28, -121], + [7, -49] + ], + [ + [18450, 14210], + [15, -34], + [135, 1], + [33, -66], + [-27, -58], + [49, -139] + ], + [ + [18655, 13914], + [1, -55], + [-87, -88], + [57, -36], + [122, 21], + [75, -10], + [19, -43], + [-25, -34], + [-53, -6], + [-2, -49], + [-105, -37], + [22, -100], + [-112, -97], + [-59, -66], + [13, -28], + [-78, -70], + [-95, -51], + [-69, -93], + [31, -36], + [-96, -65], + [-31, -55], + [-198, -74], + [-14, 18], + [-98, -106], + [48, -87], + [-7, -88], + [-28, -49], + [-11, -64], + [35, -31], + [-51, -78], + [-126, -101], + [-112, -63], + [-4, -15], + [-143, -144], + [-58, -40], + [-38, -49], + [39, -40] + ], + [ + [17417, 11905], + [-11, -9], + [-127, 124], + [16, 39], + [68, 64], + [-49, 80], + [102, 83], + [66, 41], + [41, 57], + [-84, 122], + [-72, 59], + [-66, 29], + [-62, -11], + [-22, 97], + [-41, 29], + [23, 58], + [-49, 32], + [22, 37], + [-17, 38], + [-68, 2], + [-26, 43], + [-104, 20], + [-75, 32], + [-65, -12], + [2, 54], + [52, 32], + [-24, 81], + [32, 28], + [41, 75], + [-8, 78], + [-49, 54], + [-28, 4], + [-63, 59], + [-3, 49], + [-31, 54] + ], + [ + [16738, 13527], + [56, -3], + [93, 60], + [77, 25], + [126, 101], + [150, -28], + [24, 28], + [62, 23], + [41, 65], + [97, 20], + [14, 55], + [129, 29], + [113, 178], + [52, 17], + [34, -17], + [33, 36], + [76, -22], + [24, -39], + [38, 34], + [26, -31], + [87, -2], + [12, 104], + [70, -26], + [67, 65], + [108, -3], + [63, -47], + [40, 61] + ], + [ + [18476, 14784], + [-58, -71], + [-44, -79], + [2, -57], + [33, -76], + [-5, -55], + [33, -50], + [-20, -75], + [33, -111] + ], + [ + [16738, 13527], + [-34, 25], + [-53, -45], + [-63, 9], + [-106, 60], + [-22, 41] + ], + [ + [17025, 15043], + [52, 49], + [5, 54], + [40, 20], + [36, -52], + [49, -2], + [54, 104], + [54, 32], + [57, -7], + [35, 27], + [38, -40], + [8, -111], + [32, -3], + [86, -56], + [61, 48], + [70, -8], + [66, 29], + [67, -45], + [36, 2], + [72, -134], + [98, 39], + [41, 73], + [51, 23], + [43, -37], + [24, -56], + [91, -52], + [53, -44], + [72, -29], + [11, -44], + [49, -39] + ], + [ + [17417, 11905], + [27, -28], + [-54, -65], + [-36, -79], + [-36, -42], + [19, -48], + [-35, -62] + ], + [ + [17302, 11581], + [-51, -65], + [-72, -58], + [-66, -122], + [-35, 0], + [-15, -58], + [-90, -51], + [-131, 15], + [-63, -18], + [-17, 109], + [-46, 7], + [-54, 53], + [-57, -18], + [-23, -65], + [-51, -12], + [-39, -55], + [-99, -8], + [-27, 26], + [27, 89], + [-59, -1], + [-21, 75], + [-35, -19], + [-43, 29], + [7, 69], + [-46, 39], + [-60, 25], + [20, 43], + [-18, 41] + ], + [ + [18950, 14073], + [-80, -32], + [-84, 35], + [-64, -23], + [24, -98], + [-91, -41] + ], + [ + [18476, 14784], + [35, 22] + ], + [ + [10581, 18444], + [9, -32], + [61, -62], + [23, -75], + [-3, -96], + [47, -47], + [-19, -45], + [-55, 37], + [-67, -12], + [-11, -74] + ], + [ + [8392, 18499], + [138, 32], + [75, 30], + [91, 55], + [43, -11], + [92, -105], + [82, 0], + [41, -71], + [120, 12], + [45, 25], + [51, -9], + [28, -39], + [153, -29], + [3, -107], + [-93, 15], + [-23, -43], + [80, -24], + [63, 9], + [39, -79], + [57, -77], + [80, 22], + [21, 45], + [-26, 38], + [73, 27], + [60, 1], + [18, 59], + [103, 32], + [92, -5], + [22, 90], + [34, 22], + [2, 74], + [54, 41], + [104, 21], + [100, -10], + [39, -27], + [115, 1], + [48, -67], + [32, 3], + [103, -39], + [30, 33] + ], + [ + [10691, 19243], + [-54, 10], + [-11, -54], + [-47, -20], + [3, -52], + [58, -60], + [-43, -21], + [-25, -59], + [21, -53], + [-43, -51], + [39, -43], + [11, -91], + [36, -112], + [59, 29], + [-18, -75], + [-77, -81], + [-19, -66] + ], + [ + [8386, 18499], + [-9, 19], + [-109, 24], + [-87, 5], + [-21, 30], + [-82, 48], + [-44, 52], + [10, 51], + [125, 257], + [15, 94], + [67, 65], + [110, 49], + [66, 12], + [94, 65], + [219, 125], + [73, 58], + [183, 50], + [119, 2], + [102, 39], + [155, 41], + [44, 29], + [93, -9], + [132, 48], + [155, 84], + [190, 167], + [79, 43] + ], + [ + [10065, 19947], + [65, 10], + [57, -16], + [-10, -45], + [115, -106], + [73, -52], + [34, -59], + [127, -69], + [52, -72], + [34, -167], + [79, -128] + ], + [ + [11897, 4718], + [28, -24], + [-41, -52], + [-26, -103], + [67, -25], + [27, -82], + [90, -12], + [27, 47], + [31, 7], + [5, -78], + [81, -64], + [31, 8], + [22, 68], + [78, 79], + [74, 25], + [94, -49], + [90, 18], + [2, -77], + [75, -14], + [35, -39], + [108, -36], + [85, 1], + [58, -79] + ], + [ + [12938, 4237], + [-124, -140], + [-120, -175], + [-111, 78], + [8, 54], + [-42, 34], + [1, -122], + [-42, -11], + [5, -47], + [65, -51], + [6, -41], + [50, 0], + [29, -48], + [-46, -106], + [1, -54], + [44, -52], + [-19, -33], + [-67, -14], + [-25, -72] + ], + [ + [12551, 3437], + [-111, 47], + [-51, 33], + [-29, 44], + [-121, -55], + [-39, -49], + [-11, -49], + [-42, -40], + [-70, -8], + [-27, 14], + [-100, -1], + [-64, 21], + [-62, -6], + [-28, 17], + [-67, -30], + [-115, 25], + [-72, -17], + [-22, -35], + [34, -56], + [-1, -62], + [19, -106], + [-51, -45], + [-101, -23], + [-19, -42], + [-106, -62], + [-15, 25] + ], + [ + [11280, 2977], + [14, 43], + [-21, 41], + [-160, 126], + [-84, -50], + [-83, 9], + [-63, 71], + [30, 14], + [-51, 79], + [-55, 42], + [24, 57], + [110, 10], + [59, 33], + [7, 91], + [-14, 43], + [-72, 22], + [3, 30], + [67, 19], + [10, 145], + [-38, 99], + [-25, 127], + [-44, 26], + [-41, -23], + [-24, 44], + [-75, 7], + [-176, 94], + [20, 59], + [-56, 140] + ], + [ + [10542, 4375], + [73, 98], + [16, 62], + [40, -14], + [51, 51], + [-1, 74], + [80, 119], + [71, -80], + [86, 39], + [51, -37], + [33, 13], + [26, 50] + ], + [ + [11068, 4750], + [37, -15], + [31, -80], + [55, -3], + [95, 49], + [26, -48], + [43, -28], + [22, 59], + [-10, 46], + [53, 58], + [39, -28], + [34, 15], + [98, -57], + [48, -14], + [45, 40], + [103, 6], + [38, -31], + [72, -1] + ], + [ + [15116, 6661], + [79, -125], + [25, -92], + [3, -81], + [-20, -74], + [28, -66], + [61, -11], + [123, -146], + [-2, -57], + [-44, 4], + [3, -53], + [-58, -61], + [-59, -32] + ], + [ + [15255, 5867], + [-70, -89], + [-80, -41], + [38, -47], + [-36, -34], + [17, -53], + [-4, -57], + [-36, -61], + [-25, -75], + [23, -76], + [-44, -12], + [-94, 47], + [-79, -19], + [-14, -59], + [-40, -20], + [-38, -88], + [18, -33], + [55, -17], + [-39, -47], + [-36, 3], + [-83, -81], + [-28, -5], + [-94, -76], + [-75, -29], + [-23, -96] + ], + [ + [14468, 4802], + [-88, 22], + [-56, 29], + [-36, 58], + [43, 49], + [-61, 60] + ], + [ + [14270, 5020], + [-2, 70], + [77, 1], + [68, 151], + [-47, 88], + [-34, 110], + [-46, 5], + [-43, 63], + [-170, 137], + [-23, 60], + [-56, 12], + [-5, 53], + [-96, -13], + [-41, -22], + [-48, 55], + [44, 77], + [-12, 42], + [-39, -1], + [-12, 57], + [-87, 9], + [-72, -44], + [-20, -95], + [-74, 15], + [-63, -90], + [-6, -78], + [-89, 49], + [-15, 71], + [-46, -12], + [-72, -63], + [0, 85], + [-18, 25], + [-101, 6] + ], + [ + [13122, 5843], + [-11, 55], + [40, 67], + [44, 6], + [20, 52], + [38, 23], + [12, 46], + [-99, 75], + [-76, 8], + [-23, 49], + [-42, -24], + [-50, 53], + [94, 38], + [-6, 62], + [25, 50], + [57, 29] + ], + [ + [13145, 6432], + [85, -50], + [16, -42], + [103, -10], + [60, -27], + [32, 20], + [64, -16], + [41, 12], + [22, 53], + [-15, 71], + [52, 20], + [51, -41], + [86, -35], + [58, -54], + [54, 23], + [63, -20], + [84, 75], + [2, 46], + [34, 81], + [-6, 55], + [43, 43], + [-53, 56], + [-27, 49], + [32, 29], + [-50, 120], + [-39, 40], + [49, 40], + [43, -10], + [81, 135] + ], + [ + [14110, 7095], + [73, -60], + [-11, -29], + [47, -36], + [-40, -26], + [22, -68], + [-8, -108], + [34, 27], + [82, 20], + [25, -56], + [54, 10], + [14, -41], + [90, -73], + [44, 9], + [24, 47], + [-1, 52], + [46, 16], + [12, 38], + [118, -8], + [-17, -69], + [19, -38], + [70, 19], + [3, 86], + [85, 14], + [61, -47], + [18, -36], + [117, -44], + [25, -33] + ], + [ + [14270, 5020], + [-73, 7], + [-130, -37], + [-106, -62], + [-105, -91], + [-49, -72], + [-112, -59], + [-59, -60], + [-54, -3], + [-36, -28], + [-106, -120], + [-75, -119], + [-57, 1], + [-71, 35], + [-99, -24], + [-93, -57], + [-107, -94] + ], + [ + [11897, 4718], + [63, 20], + [90, 74], + [-15, 69], + [6, 52], + [-65, 111], + [21, 40], + [-21, 43], + [57, 111], + [107, -17], + [49, -65], + [63, 24], + [30, 34], + [90, 16], + [70, 34], + [2, 61], + [24, 16] + ], + [ + [12468, 5341], + [72, 30], + [77, -35], + [45, 0], + [-7, 143], + [28, 29], + [-40, 78], + [25, 78], + [37, -1], + [60, -41], + [120, -10], + [68, 38], + [-19, 56], + [8, 46], + [38, 51], + [117, -5], + [25, 45] + ], + [ + [13901, 7746], + [14, -148], + [36, -67], + [-1, -79], + [45, -100], + [39, 2], + [59, -162], + [17, -97] + ], + [ + [13145, 6432], + [-20, 71], + [-92, 11], + [-95, -36], + [-31, 32], + [17, 59], + [-108, 36], + [-9, 62], + [-45, 28], + [45, 55], + [-53, 124], + [26, 65], + [-3, 146], + [-28, 42], + [-74, 66], + [22, 133], + [-71, 80], + [-86, 113] + ], + [ + [10690, 2775], + [83, 19], + [42, -9], + [70, 64], + [90, 20], + [45, 101], + [45, -19], + [72, 30], + [84, 15], + [59, -19] + ], + [ + [12551, 3437], + [-49, -38], + [27, -100], + [81, 12], + [-20, 42], + [43, 25], + [-12, -371], + [4, -154], + [33, -167], + [122, -47], + [-8, -77], + [35, -11], + [30, -98], + [-102, -4], + [-34, -18], + [-60, 72], + [-93, 37], + [-30, -18], + [-34, 34], + [-42, -55], + [-121, 6], + [-71, -93], + [-35, -14], + [-30, 30], + [-43, -6], + [-77, -41], + [-32, -39], + [34, -104], + [-92, 8], + [-52, 26], + [-42, -10], + [-20, -43], + [-68, 20], + [-136, 113], + [-84, 28], + [-70, 55], + [-30, -12], + [-53, 35], + [-86, -50], + [-68, 16], + [-37, -21], + [-30, -75], + [-43, -41], + [-97, -19], + [-58, 15], + [-33, 47], + [-47, 164], + [-28, -18], + [-106, 51], + [-65, 46], + [-115, 9], + [-10, 64], + [22, 104], + [71, 23] + ], + [ + [10993, 2589], + [-37, -84], + [75, -23], + [-38, 107] + ], + [ + [11120, 8280], + [-27, 16], + [-94, -23], + [-68, -4], + [-50, 15], + [-32, -50], + [-86, -30], + [-11, -35], + [-62, 5], + [-47, 24], + [-8, 37], + [-62, 29], + [-8, 39], + [-50, 41], + [-30, 48], + [-172, 44], + [-54, -12], + [-70, -58], + [-18, 12] + ], + [ + [9869, 9352], + [50, 106], + [100, -54], + [34, 58], + [27, 9], + [30, 70], + [67, 20], + [1, 39], + [90, 0], + [9, 28], + [64, -31], + [41, 12], + [24, 53], + [38, -1], + [52, 41], + [9, 34], + [71, 68], + [61, 10], + [41, 36], + [14, 49], + [63, -40], + [75, -1], + [37, 77] + ], + [ + [10867, 9935], + [31, 31], + [39, -11], + [19, 39], + [53, -2], + [36, 72], + [71, -2], + [82, -62], + [139, -22], + [12, -33], + [93, -25], + [1, -63], + [75, 14], + [73, 98], + [105, -32], + [87, 88] + ], + [ + [10867, 9935], + [-39, 67], + [35, 74], + [-20, 80], + [-62, 44], + [-43, 1], + [-58, 43], + [-34, 52], + [-41, -28], + [-118, 5], + [-78, 27], + [-1, 74], + [61, 15], + [-56, 84], + [-49, -39], + [-41, 2], + [-51, 33], + [7, 44], + [74, 30], + [3, 76], + [-47, 1], + [15, 89], + [-23, 53], + [13, 38], + [-81, 75], + [25, 34], + [-54, 61], + [-27, 72], + [-83, 11], + [-30, 77], + [44, 80], + [27, 100], + [26, 12], + [-3, 74], + [-39, 27] + ], + [ + [8906, 9972], + [36, 57], + [65, 52], + [24, 92], + [49, 5], + [64, -25], + [-3, 62], + [22, 22], + [48, 121], + [-21, 32], + [13, 80], + [60, -27], + [37, 9], + [87, 84], + [-26, 114], + [-105, 45], + [-59, 41], + [1, 68], + [21, 62], + [-14, 55] + ], + [ + [9205, 10921], + [35, 23], + [-50, 136], + [-8, 69], + [54, 25], + [28, 53], + [43, 15], + [18, 44], + [51, -14], + [111, -1], + [33, 143], + [33, 30], + [124, 13], + [75, 50] + ], + [ + [17039, 18645], + [56, -27], + [19, -75], + [-47, -103], + [79, -144], + [-18, -40], + [53, -51], + [23, -68], + [45, -58], + [-2, -39], + [-76, -88], + [59, -53], + [-10, -41], + [-43, -21], + [25, -83], + [-104, 1], + [40, -140], + [74, -31], + [61, -50], + [-2, -80], + [58, -33], + [51, 10], + [22, -42], + [72, -30], + [135, -6], + [76, -95], + [-2, -66], + [-34, -45], + [79, -24], + [-10, -43], + [96, -91], + [59, 33], + [43, -50], + [46, -5], + [67, -36], + [43, 15], + [57, -93], + [97, -22], + [51, -75], + [48, -20], + [45, 12], + [43, -62], + [80, 2], + [21, -45], + [70, 2], + [57, 25], + [47, -63], + [114, -64], + [69, -101] + ], + [ + [18939, 16390], + [-47, -4], + [-197, -92], + [-113, -120], + [-66, 10], + [-53, -66], + [-76, 15], + [-82, 46], + [-22, -20], + [-79, 51], + [-41, 86], + [-56, -29], + [-25, -50], + [-53, -15], + [-50, -39], + [-70, 6], + [-107, -58], + [-122, 46], + [-17, 50], + [-42, -18], + [-15, -45], + [-127, -20], + [-95, -100], + [-57, 22], + [-116, -7], + [-62, -24], + [-31, 59], + [8, 47], + [-140, 46], + [59, 74], + [-13, 48], + [24, 31], + [-73, 55], + [-72, -20], + [-37, -35], + [-33, 31] + ], + [ + [16841, 16351], + [-7, 57], + [24, 44], + [-94, 50], + [4, 66], + [57, 35], + [9, 56], + [-25, 60], + [31, 101], + [-71, 73], + [34, 48], + [-1, 42], + [40, 39], + [24, 106], + [-25, 86], + [33, 12], + [-54, 98], + [38, 10], + [36, 48], + [49, -5], + [27, 39], + [-71, 60], + [28, 75], + [50, 47], + [-47, 111], + [-8, 51], + [-89, -4], + [-18, 32], + [16, 66], + [-19, 22], + [30, 82], + [-55, -5], + [-16, 50], + [32, 30], + [-31, 40], + [6, 51], + [56, 22], + [3, 80], + [-47, -8], + [-18, 44], + [26, 59], + [-68, 95], + [-3, 41], + [-90, 52], + [-76, -43], + [-82, -26], + [-57, -1], + [-35, 48], + [-11, 56], + [10, 102] + ], + [ + [16386, 18645], + [94, 35], + [34, 36], + [62, -15], + [103, 71], + [63, -30], + [86, 7], + [24, 46], + [98, -48], + [0, -50], + [43, -42], + [46, -10] + ], + [ + [16841, 16351], + [-39, -70], + [-38, -12], + [-60, 25], + [-95, -72], + [-84, 3], + [-70, -27], + [-18, -47], + [-52, 26] + ], + [ + [16266, 18920], + [58, -56], + [18, -97], + [35, -32], + [-28, -42], + [37, -48] + ], + [ + [17039, 18645], + [80, 6], + [39, -22], + [6, -54], + [105, -43], + [22, 40], + [67, 4], + [69, 48], + [19, 34], + [122, 12], + [62, -10], + [30, -50], + [59, -34], + [108, -2], + [29, 23], + [71, -26], + [104, -70], + [30, -35], + [-22, -41], + [67, -38], + [24, -41], + [-53, -40], + [78, -107], + [80, -51], + [-9, -53], + [35, -12], + [13, -79], + [58, -25], + [-27, -39], + [39, -57], + [71, 8], + [78, -39], + [41, 63], + [-36, 75], + [32, 23], + [55, -26], + [63, 28], + [35, -42], + [118, -36], + [-9, -39], + [46, -135], + [72, 60], + [84, -41], + [134, 21], + [74, -34], + [50, 65], + [57, 4], + [5, 62], + [123, 27], + [17, -45], + [54, 10], + [19, -42], + [-22, -32], + [44, -40], + [20, -50], + [58, -40], + [48, 8], + [43, -22], + [12, -45] + ], + [ + [10690, 2775], + [-87, 32], + [-8, 51], + [-50, 24], + [-132, 2], + [-46, 55], + [-38, 12], + [-111, -41], + [1, -54], + [-49, -25], + [-29, 30], + [-25, 90], + [-31, 34], + [-8, 46], + [-56, 40], + [9, 34], + [-163, -11], + [-35, 30], + [-99, -42], + [-49, 43], + [-6, 56], + [-35, 43], + [-52, 25], + [-102, 18], + [-35, -9], + [-37, 43], + [-54, -35], + [-104, 82] + ], + [ + [9259, 3348], + [-24, 147], + [-25, 59], + [79, 28], + [-4, 69], + [58, 4], + [103, 34], + [40, 73], + [-25, 40], + [-5, 89], + [9, 66], + [28, 51], + [44, -30], + [38, 88], + [39, -11], + [56, 53], + [33, -42], + [45, 5], + [56, -59], + [19, -67], + [59, 13], + [-1, 38], + [45, 35], + [-25, 57], + [-77, 9], + [10, 81], + [35, -9], + [36, 27], + [59, -12], + [20, 33], + [66, 14], + [7, 64], + [-87, 29], + [-38, 31], + [12, 52], + [34, 50], + [34, 14], + [124, -137], + [-14, -67], + [80, -39], + [55, 92], + [-24, 44], + [88, 19], + [31, -50], + [26, 31], + [84, -34], + [57, 63], + [23, -18] + ], + [ + [12468, 5341], + [-25, 86], + [-25, 23], + [-50, -7], + [-86, 51], + [-51, -56], + [-64, -19], + [-41, 30], + [-50, 4], + [-81, 84], + [-31, 61], + [-73, 90], + [22, 82], + [-37, 22], + [3, 68], + [-70, 55], + [23, 80], + [-34, 15], + [-26, 87], + [-37, 59], + [-78, 13], + [-33, 89], + [-48, 16], + [-39, 49], + [-39, -10], + [-35, 61], + [-73, -25], + [0, 56], + [-88, 45], + [-35, 2], + [-13, 49], + [-55, -11], + [-129, -88], + [-62, -19] + ], + [ + [11008, 6383], + [-25, 74], + [-94, 16], + [-8, 55], + [37, 69], + [46, -1], + [14, 78], + [-47, 15], + [-60, -8], + [-64, 98], + [34, 42] + ], + [ + [10841, 6821], + [40, 53], + [-61, 78], + [7, 61], + [-35, 31], + [-15, 96], + [124, 29], + [28, 55], + [29, 7], + [41, 65], + [53, 19], + [56, 56], + [46, 11], + [30, -31], + [75, 0], + [26, 46], + [45, 4], + [14, 51] + ], + [ + [9079, 6190], + [34, -81], + [90, 59], + [42, -48], + [-54, -27], + [19, -58], + [-103, -120], + [16, -53], + [60, 24], + [48, -38], + [38, 17], + [38, -44], + [-5, -73], + [28, -26], + [-14, -48], + [46, -18], + [-43, -100], + [88, -3] + ], + [ + [9407, 5553], + [8, -35], + [105, -141], + [59, -24], + [-25, -55], + [63, -73], + [88, -20], + [18, -69], + [34, 20], + [30, -42], + [-1, -61], + [-55, 6], + [-11, -34], + [-49, -6], + [-43, -48], + [-58, 14], + [-13, -116], + [-52, -35], + [37, -29], + [-35, -70], + [6, -43], + [-33, -48], + [-12, -56], + [-42, 11], + [-76, 81], + [-82, 21], + [-67, 3], + [-21, -40], + [-57, 40], + [-60, -103], + [-25, 16], + [-63, -114], + [-47, -39], + [-58, -3] + ], + [ + [8870, 4461], + [-92, 43], + [-63, 8], + [-20, -18], + [-151, 20], + [-26, 49], + [-73, -29], + [-9, 73], + [-42, 32], + [-103, -48], + [-77, 8], + [-73, 118], + [48, 45], + [-54, 73], + [-29, 99], + [-90, 3], + [-37, 60], + [-49, 47], + [-20, 92], + [-92, 2], + [-35, -55] + ], + [ + [10336, 5854], + [-12, -43], + [12, -72], + [58, -58], + [-7, -59], + [57, -36], + [47, -80], + [6, -56], + [72, -60], + [-66, -51], + [88, -13], + [13, -70], + [-40, -16], + [-23, -46], + [182, -118], + [51, -3], + [18, -66], + [58, -74], + [153, -87], + [50, -20], + [15, -76] + ], + [ + [9259, 3348], + [-88, 34], + [-35, -10], + [-109, 58], + [-71, -46], + [14, -81], + [-18, -123], + [32, -67], + [-18, -78], + [-221, 30], + [-15, -24], + [-60, 18] + ], + [ + [8670, 3059], + [7, 29], + [-30, 62], + [-11, 73], + [13, 72], + [-11, 35], + [32, 139], + [42, -22], + [90, -18], + [21, 23], + [37, 131], + [71, 76], + [-40, 26], + [11, 62], + [-55, 52], + [-37, -4], + [-40, -45], + [-10, 83], + [44, 85], + [-92, 49], + [-23, 45], + [-74, 36], + [122, 143], + [-5, 44], + [53, -8], + [-1, 62], + [131, 145], + [-45, 27] + ], + [ + [9407, 5553], + [128, 36], + [34, -10], + [38, 41], + [49, -43], + [65, 47], + [40, -55], + [50, -9], + [-4, -51], + [95, 42], + [132, 71], + [-8, 44], + [-62, -8], + [7, 57], + [71, 73], + [82, -41], + [46, 4], + [45, 80], + [30, -46], + [91, 69] + ], + [ + [8670, 3059], + [-65, -23], + [-60, 10], + [-6, 41], + [-49, 27], + [-51, -42], + [-1, -33], + [-52, -34], + [-46, 41], + [-6, 50], + [-56, 6], + [-73, 40], + [-31, -28], + [-76, -31], + [-28, 15], + [-61, -48], + [-53, 12], + [-22, -36], + [-96, 22], + [-12, 49], + [-53, 13], + [-68, 119], + [-97, 53], + [-128, 96] + ], + [ + [10841, 6821], + [-86, -38], + [-51, 23], + [-17, -40], + [-64, 23], + [-60, -27], + [-81, -72], + [-52, -12], + [1, 45], + [-66, 8], + [18, -115], + [-20, -36], + [-55, -11], + [-43, 100], + [-55, 23], + [-34, -64], + [-115, -76], + [-56, 3], + [-92, 25], + [33, 64], + [2, 71], + [-71, -25], + [-12, -31], + [-102, 39], + [-24, 40], + [-92, 47], + [-20, 56], + [11, 41], + [48, 17], + [-3, 45], + [-47, -5], + [-59, -30] + ], + [ + [11008, 6383], + [-76, -3], + [-34, 35], + [-175, -84], + [-43, -68], + [-49, 41], + [-116, 3], + [-7, -117], + [41, -11], + [17, -36], + [-22, -49], + [-60, -27], + [-50, -88], + [6, -28], + [-109, 5], + [-21, -36], + [60, -19], + [-34, -47] + ], + [ + [12716, 20172], + [-91, -74], + [-56, -24], + [5, 68], + [55, 8], + [36, 47], + [51, -25] + ], + [ + [14331, 19750], + [-87, -19], + [-46, 34], + [-37, -8], + [-78, 49], + [23, 57], + [-20, 37], + [-50, -40], + [-42, -2], + [-55, -38], + [-8, 52], + [-69, 36], + [-142, 13], + [-47, 36], + [-79, -36], + [-77, -65], + [-31, 43], + [-81, 18], + [-80, -75], + [-96, 7], + [-45, 28], + [-70, 3], + [-25, -42], + [-88, -5], + [-15, 33], + [-63, 1], + [-88, -41] + ], + [ + [12835, 19826], + [-76, 28], + [-51, 67] + ], + [ + [12708, 19921], + [-4, 50], + [40, 39], + [-28, 74], + [61, 37], + [4, 60], + [29, 33], + [-39, 42], + [18, 45], + [56, -1], + [12, 37], + [-61, 26], + [3, 37], + [-159, 31], + [-16, 26], + [74, 55], + [-109, 110], + [-36, 82], + [121, 70], + [-93, 69], + [25, 59], + [-92, 72], + [-85, -30], + [-43, 18], + [7, 69], + [-96, -28], + [-25, 122], + [0, 67], + [51, 45], + [44, 8], + [-53, 64], + [-41, 24], + [-61, -13], + [-34, -134], + [-45, 55], + [-136, -26], + [-27, 37], + [-103, -16], + [-18, 33], + [-67, -22], + [-94, 57], + [-68, 96], + [-47, 40], + [-21, 56], + [107, 60], + [-143, 36], + [-47, -12], + [-116, 77], + [-15, 89], + [-127, 297], + [-72, 66] + ], + [ + [11139, 22109], + [142, 26], + [57, 32], + [192, 45], + [58, -23], + [279, 107], + [20, -44], + [30, -161], + [43, -25], + [37, -99], + [-37, -76], + [-11, -136], + [39, -40], + [16, -53], + [55, 19], + [76, -21], + [8, -37], + [137, -181], + [54, 11], + [34, -43], + [61, -20], + [31, 40], + [12, 71], + [187, 87], + [34, -18], + [102, 39], + [81, -128], + [18, -49], + [58, -7], + [21, -77], + [-28, -14], + [1, -66], + [52, -107], + [-3, -82], + [16, -71], + [140, -84], + [90, 41], + [61, 56], + [65, -35], + [7, -54], + [73, 13], + [60, -8], + [95, -138], + [6, -109], + [-23, -42], + [24, -82], + [57, -73], + [33, 20], + [17, 83], + [150, 14], + [71, -62], + [117, 48], + [39, -13], + [59, 36], + [80, -86], + [64, -42], + [9, -67], + [61, -36], + [25, 45], + [41, -10], + [22, -42], + [-84, -90], + [-25, -88], + [5, -37], + [-41, -59], + [106, 0], + [16, -84], + [34, -42], + [-5, -35], + [-52, -35], + [-46, -4], + [-37, -59], + [30, -79], + [-24, -19] + ], + [ + [12708, 19921], + [-25, -19], + [-96, 29], + [-63, -38], + [-35, 27], + [-49, -40], + [-63, 20], + [-32, 77], + [-75, -36], + [-19, -28], + [-66, -22], + [13, 67], + [33, 49], + [-1, 46], + [-79, 34], + [-59, -78], + [-68, 6], + [-26, 29], + [-85, 14], + [-12, 52], + [-55, -48], + [-27, 59], + [-93, -22], + [-39, -99], + [-54, 51], + [-30, -2], + [22, 106], + [39, 40], + [125, 49], + [-67, 82], + [-108, -10], + [-32, -43], + [-47, 34], + [-46, -21], + [-50, 34], + [-148, -45], + [-119, -3], + [-43, 47], + [-31, 68], + [-159, 71], + [-17, 27], + [45, 42], + [-27, 31], + [-41, -43], + [-69, 23], + [-9, 27], + [-100, 58], + [-66, 4], + [-131, -63], + [-47, 14], + [-48, 65] + ], + [ + [10429, 20643], + [-51, 21], + [-42, 55], + [20, 67], + [16, 217], + [41, 48], + [-45, 60], + [0, 156], + [-25, 136], + [72, 154], + [-1, 55], + [-43, 144], + [10, 42], + [84, 11], + [109, 117], + [95, 56], + [190, 63], + [94, 50], + [95, -5], + [91, 19] + ], + [ + [6008, 14700], + [14, -48], + [-28, -53], + [92, -47], + [23, -35], + [-2, -64], + [29, -19], + [8, -56], + [31, -39], + [53, 3], + [44, -33], + [77, -16], + [26, -26], + [-53, -56], + [-202, 22], + [-8, -57], + [37, -89], + [74, -19], + [96, 11], + [51, -36], + [71, 4], + [-4, -54], + [30, -104], + [39, -55], + [-82, -64], + [-86, -14], + [-72, 14], + [-141, -14], + [-20, -24], + [-70, -10], + [-121, -36], + [-48, -39], + [-3, -37], + [69, 8], + [29, -80], + [69, -69], + [41, 31], + [37, -28], + [-12, -48], + [30, -114], + [-95, -89], + [4, -73], + [89, -15], + [34, -54], + [51, -16], + [-4, -51], + [-47, -25] + ], + [ + [6158, 12987], + [-74, 24], + [-110, 102], + [-78, -115], + [-28, 23], + [-61, -34], + [26, -111], + [-11, -56], + [-76, -28], + [-66, -43], + [-1, 70], + [-26, 57], + [20, 21], + [-16, 94], + [-42, 22], + [-67, -85], + [-17, -57], + [51, -87], + [-13, -75], + [45, -57], + [-70, -24], + [-4, -29], + [-142, 42], + [-37, -9], + [-41, 35], + [-45, -12], + [-25, 26], + [-22, 79], + [-45, -12], + [-81, 16], + [1, 48], + [-62, 0], + [-64, 44], + [-6, 45], + [-51, 20], + [-50, 62] + ], + [ + [4870, 12983], + [-30, 70], + [-79, 80], + [-69, 30], + [-94, 17], + [-30, 17], + [-103, 21], + [32, 55], + [87, 28], + [12, 100], + [-29, 44], + [11, 85], + [58, 20], + [109, 16], + [34, 47], + [-121, 5], + [-66, -28], + [-201, -133], + [-67, 39], + [-30, 47], + [-39, 18], + [-61, -7], + [-19, -44], + [-104, 53], + [105, 28], + [-57, 74], + [-58, -29], + [2, 54], + [-41, 67], + [-34, 11], + [165, 157], + [-18, 21] + ], + [ + [7343, 14663], + [12, -47], + [62, -43], + [71, -5], + [79, -33], + [53, 47], + [28, -45], + [-49, -52], + [30, -75], + [127, -33], + [14, 49], + [82, -19], + [74, -2], + [27, -44], + [61, -52], + [97, -1], + [51, -56], + [55, 41], + [3, 40], + [68, -19] + ], + [ + [8016, 13297], + [-54, 25], + [-47, -44], + [-34, -66], + [-17, -79], + [-63, 17], + [-26, -82] + ], + [ + [7775, 13068], + [-41, -24], + [-59, 61], + [40, 36], + [-68, 27], + [-33, -35], + [-53, 28], + [-66, -7], + [-88, -34], + [-22, 17], + [-64, -11], + [-8, -44], + [-128, -10], + [-12, 37], + [-105, -48], + [-3, -74], + [-52, -72], + [-39, -11], + [-78, 18], + [-67, -35], + [-73, 17], + [-40, 27], + [-32, -30], + [-61, -13], + [-17, -36], + [-51, 12] + ], + [ + [6555, 12864], + [-15, 36], + [-52, 37], + [-37, -22], + [-67, 53], + [-21, -40], + [-146, 28], + [-59, 31] + ], + [ + [6019, 14777], + [70, -55], + [83, -3], + [100, -24], + [83, 1], + [66, -29], + [29, 78], + [99, -49], + [4, -24], + [83, -28], + [36, 44], + [87, -42], + [15, -26], + [215, -14], + [40, 52], + [80, -17], + [40, 79], + [82, -64], + [39, 23], + [73, -16] + ], + [ + [7848, 16088], + [-37, -27], + [-52, 9], + [-37, -26], + [6, -39], + [-39, -26], + [30, -90], + [-41, -82], + [30, -86], + [-2, -39], + [-61, -49], + [-70, -34], + [-15, -96], + [35, -47], + [-19, -108], + [-67, 12], + [-93, -73], + [-6, -47], + [45, -15], + [18, -142], + [-64, -25], + [-71, -4], + [-33, -47], + [45, -53], + [3, -68], + [-57, 0], + [-55, -59], + [21, -52], + [71, -9], + [10, -103] + ], + [ + [4260, 12315], + [88, -38], + [37, -34], + [-56, -45], + [-93, 56], + [-13, 39], + [37, 22] + ], + [ + [4444, 12987], + [60, -42], + [-4, -86], + [101, -54], + [13, -84], + [-110, 116], + [-64, -15], + [-66, 84], + [24, 70], + [46, 11] + ], + [ + [6244, 11349], + [-33, 6], + [-2, 4], + [-28, -32], + [-46, 17], + [-52, -32], + [-29, -60], + [-103, 87], + [-20, -47], + [-50, 87], + [-61, 40], + [-54, -11], + [-103, 5], + [-54, 127], + [-188, 32], + [-36, 51], + [-62, 17], + [-104, 74], + [-23, 35], + [-70, 22], + [-18, 103], + [-40, 142], + [-59, 67], + [-64, 112], + [-74, 47], + [3, 29], + [-143, 151], + [-109, 82], + [-18, 164], + [40, 7], + [69, 101], + [40, 31], + [45, 134], + [72, 42] + ], + [ + [6555, 12864], + [16, -67], + [78, -35], + [24, -120], + [52, -82], + [80, -50], + [31, 0], + [-26, -121], + [48, -53], + [11, -45], + [50, -59], + [-35, -31], + [65, -53], + [-18, -38], + [53, -62], + [-20, -33], + [21, -41], + [17, -125], + [-40, -11], + [-25, -40], + [29, -32], + [8, -132], + [15, -60], + [113, -61], + [-34, -59], + [-67, -3], + [-53, -58], + [-10, -34], + [-83, 13], + [-44, -50], + [-38, 2] + ], + [ + [6773, 11324], + [-14, 18], + [-125, 63], + [-13, -49], + [-59, 20], + [-72, -33], + [-39, 25], + [38, 84], + [-47, 12], + [-21, -32], + [-61, 4], + [-51, -22], + [-65, -65] + ], + [ + [14331, 19750], + [142, -49] + ], + [ + [12679, 17775], + [34, 56], + [71, 28], + [-44, 37], + [-14, 62], + [-134, 43], + [-37, -56], + [-30, -10], + [-12, 102], + [116, -3], + [-20, 69], + [13, 58], + [-64, 6], + [-45, 75], + [58, 43], + [46, -20], + [57, 37], + [40, 71], + [0, 128], + [50, -6], + [44, 52], + [-74, 32], + [22, 58], + [-37, 40], + [38, 24], + [14, 50], + [-14, 135], + [-44, 47], + [29, 20], + [-20, 58], + [43, 29], + [-14, 84] + ], + [ + [12751, 19124], + [-37, 118], + [-51, 55], + [38, 24], + [3, 169], + [48, 40], + [-2, 71], + [73, 77], + [-2, 36], + [45, 33], + [-57, 32], + [26, 47] + ], + [ + [10691, 19243], + [38, -9], + [44, -53], + [17, -67], + [70, -4], + [60, 46], + [24, -44], + [45, 24], + [87, -1], + [38, -36], + [101, -16], + [48, 32], + [115, 0], + [117, -44], + [41, -4], + [65, -58], + [59, 12], + [52, -19], + [50, -73], + [43, 35], + [32, -16], + [69, -74], + [68, 34], + [25, -75], + [60, 5], + [-2, 43], + [31, 59], + [85, -1], + [65, -28], + [22, 111], + [60, -2], + [33, 56], + [40, 8], + [41, 48], + [57, -38], + [65, 34], + [56, -63], + [37, 77], + [102, -18] + ], + [ + [10065, 19947], + [115, 104], + [42, 139], + [31, 55], + [85, 50], + [102, -48], + [-11, 52], + [-55, 91], + [-55, 9], + [-10, 57], + [29, 179], + [91, 8] + ], + [ + [5760, 10740], + [110, -80], + [30, -48], + [126, -26], + [-12, -64], + [16, -68], + [68, -89], + [-30, -85], + [17, -47], + [-75, -43], + [-26, 139], + [-191, 176], + [-17, 66], + [12, 55], + [-39, 96], + [11, 18] + ], + [ + [5596, 11222], + [48, -26], + [-18, -44], + [121, 5], + [-24, -58], + [103, 1], + [65, -44], + [43, 3], + [39, -77], + [-15, -26], + [-68, 0], + [-109, 77], + [-107, 58], + [-63, -23], + [-52, 20], + [-36, 68], + [73, 66] + ], + [ + [6773, 11324], + [23, -83], + [-24, -52], + [93, -60], + [13, -49], + [103, -136], + [107, 12], + [31, -19], + [36, -64], + [82, -12], + [75, -41], + [188, -17], + [11, -45], + [96, -27], + [34, -44], + [68, -50], + [14, -60], + [51, -20] + ], + [ + [7774, 10557], + [11, -89], + [-86, -10], + [6, -59], + [50, -65], + [-36, -61], + [3, -58], + [-39, -68], + [-92, -36], + [-41, 70], + [-68, 0], + [-32, -44], + [-212, -47], + [-16, -61], + [68, 5], + [-5, -41], + [16, -155], + [-36, -72], + [69, 5], + [17, -40], + [124, -103], + [-37, -68], + [101, -35], + [5, -64], + [-26, -82], + [31, -48], + [-4, -37], + [-92, -97], + [61, -43], + [-19, -113], + [84, 30], + [51, -36], + [53, 2], + [82, -39], + [-11, -96], + [102, 2], + [26, -33], + [56, -14], + [1, -84] + ], + [ + [6824, 9087], + [-46, 155], + [-46, 91], + [-81, 122], + [-112, 95], + [-22, 46], + [-47, 2], + [-70, 56], + [-5, 55], + [-35, 47], + [-37, -8], + [-46, 39], + [-68, 28], + [-71, 68], + [-82, 49], + [-38, 38], + [-8, 159], + [46, 24], + [41, -8], + [80, 65], + [-48, 59], + [20, 45], + [47, -12], + [68, 96], + [12, 114], + [-18, 35], + [3, 74], + [45, 31], + [-12, 78], + [-46, 19], + [-16, 93], + [-109, 101], + [-92, 29], + [48, 143], + [39, 21], + [79, 95], + [-14, 89], + [15, 41], + [1, 5], + [45, -17] + ], + [ + [7774, 10557], + [68, 38], + [50, 161], + [70, -8], + [84, 94], + [41, -6], + [56, 29], + [49, -45], + [46, 26] + ], + [ + [8238, 10846], + [34, -3], + [111, -80], + [36, 13], + [136, -5], + [16, -32], + [82, 27], + [15, 55], + [-44, 5], + [39, 99], + [56, 4], + [48, -106], + [104, -18], + [3, 27], + [121, 18], + [-17, 35], + [47, 37], + [63, 23], + [117, -24] + ], + [ + [7775, 13068], + [32, -118], + [75, -76], + [-19, -47], + [36, -49], + [20, -70], + [-30, -66], + [80, -57], + [-53, -15], + [-53, -54], + [80, -31], + [-48, -55], + [5, -46], + [70, -59], + [-38, -57], + [-14, -76], + [-40, -73], + [-36, -29], + [75, -50], + [51, -4], + [-4, -69], + [-36, -30], + [16, -60], + [-21, -49], + [-39, 2], + [-13, -126], + [46, -4], + [-15, -143], + [84, -74], + [-32, -38], + [24, -65], + [76, -54], + [69, 96], + [51, -8], + [33, -35], + [-38, -55], + [30, -59], + [-67, -26], + [21, -84], + [-45, -42], + [-9, -60], + [49, -15], + [24, -51], + [95, -35], + [-42, -70], + [13, -36] + ], + [ + [18678, 7541], + [11, -75], + [-31, -104], + [-32, -40], + [-48, -11], + [-34, -52], + [33, -105], + [44, -33], + [56, -96], + [-71, -22], + [-11, -120] + ], + [ + [18595, 6883], + [-71, -54], + [-21, 4], + [-68, -66], + [-16, -64], + [-46, -61], + [-50, -27], + [-11, -96], + [-47, -92], + [32, -101], + [75, -103], + [-16, -84], + [67, -49], + [10, -31], + [66, -42], + [16, -79], + [99, -64], + [45, -69], + [-76, -16], + [-93, 65], + [-48, -19], + [-31, -61], + [-52, -27], + [-80, 7], + [-43, -102], + [50, -13], + [14, -32], + [-113, -50] + ], + [ + [18187, 5557], + [-20, 35], + [-57, 2], + [-50, -50], + [-52, 54], + [-52, -33], + [-110, -6], + [-5, -63], + [-45, -64], + [-45, 5], + [-134, 96], + [-28, 53], + [-60, -9], + [-64, -105], + [-44, -33], + [-46, 19], + [-63, -94], + [-55, -28], + [-20, -56], + [-52, 62], + [-5, 44], + [-51, 16], + [-21, 62], + [-51, 10], + [-26, -61], + [-50, -7], + [-37, 52], + [-78, 23], + [-37, -61] + ], + [ + [16829, 5420], + [-64, 63], + [-4, 56], + [-45, 19], + [-46, 82], + [-42, 13], + [-86, -4], + [-36, 43], + [37, 36], + [53, 120], + [-36, 0], + [-25, 61], + [-84, 7], + [10, 111], + [36, 70], + [3, 104], + [-65, -15], + [-6, 120] + ], + [ + [16429, 6306], + [67, 40], + [52, 122], + [52, 10], + [45, -56], + [-11, -36], + [73, -10], + [6, 40], + [-57, 9], + [9, 50], + [38, 5] + ], + [ + [16703, 6480], + [25, -12], + [96, 54], + [87, 2], + [31, -24], + [122, -20], + [-46, 47], + [-32, 76], + [-43, 32], + [-13, 40], + [40, 55], + [41, -22], + [7, -45], + [50, -50], + [2, 89], + [18, 57], + [-43, 12], + [62, 95], + [25, 81], + [101, 55], + [98, 133], + [113, -35], + [111, -184], + [54, 70], + [-45, 118], + [45, 5], + [48, 35], + [31, -34], + [37, 10], + [38, 118], + [57, -64], + [26, -58], + [35, 7], + [67, -41], + [117, -19], + [116, 3], + [14, 88], + [41, 34], + [23, 72], + [86, 52], + [47, 73], + [80, 50], + [37, 5], + [21, 41], + [37, 7], + [51, 66], + [60, -13] + ], + [ + [18645, 4849], + [-75, 51], + [17, 45], + [-25, 24], + [44, 88], + [7, 63], + [-27, 29], + [-64, -11], + [-61, 54], + [-22, -3], + [-59, 86], + [21, 64], + [-32, 101], + [-65, 5], + [-46, 40], + [-39, -20], + [-32, 92] + ], + [ + [18595, 6883], + [49, -30], + [11, -48], + [44, -47], + [1, -32], + [54, -44], + [12, -82], + [41, -42], + [60, 14], + [101, -69], + [83, -9], + [37, -59], + [35, -2], + [34, -54], + [125, -4], + [24, -66], + [80, 2], + [31, 26], + [46, -4], + [69, 42], + [97, 24], + [69, -4], + [30, 50], + [78, 2], + [-24, -113], + [70, -92], + [-19, -103], + [-56, -31], + [5, -73], + [-25, -49], + [-63, -45], + [-62, -26], + [-16, -104], + [-96, -63], + [47, -202], + [-62, -43], + [-82, -33], + [-49, -76], + [-73, 8], + [-80, -84], + [-27, 21], + [-62, -7], + [-56, -99], + [-71, 21], + [-48, -64], + [-13, -126], + [-65, -11], + [-78, -77], + [-8, 30], + [-58, 1], + [-50, -21], + [-32, -70], + [29, -19], + [-37, -48] + ], + [ + [16823, 5409], + [47, -19], + [7, -45], + [38, -17], + [-22, -67], + [-45, 1], + [-107, -41], + [-31, -72], + [11, -62], + [-48, -20], + [93, -55], + [-4, -115], + [-24, -44], + [44, -34], + [80, -131], + [-45, -19], + [-72, 14], + [-32, -20], + [33, -103], + [-24, -30], + [4, -64], + [55, 10], + [56, -81], + [-3, -34], + [-92, -46], + [-29, -27], + [-18, -128] + ], + [ + [16695, 4160], + [-74, 16], + [-35, -59], + [-43, 26], + [-63, 92], + [-32, -35], + [-82, 32], + [-53, -14], + [-31, 18], + [-64, -14], + [-22, 55], + [50, 71], + [-54, 44], + [28, 66], + [-37, 81], + [-49, 38], + [-74, -55], + [-53, -22], + [-44, 9], + [-240, -9], + [-33, 33], + [-13, 60], + [-53, 74], + [-15, 59], + [-68, 14], + [-114, -80], + [-15, -49], + [43, -19], + [-5, -57], + [-59, -20], + [-70, 30], + [-87, 6], + [-103, -9], + [-122, 37], + [-36, 33], + [45, 50], + [-10, 80], + [-73, 42], + [-139, 8], + [-19, -15], + [-309, 25] + ], + [ + [15255, 5867], + [179, -31], + [74, -53], + [104, -41], + [89, -94], + [32, -89], + [213, -125], + [78, 28], + [122, -25], + [43, -41], + [157, -89], + [132, -48], + [118, -1], + [53, 31], + [49, 49], + [61, -7], + [64, 78] + ], + [ + [18180, 8585], + [60, -112], + [24, -91], + [82, 6], + [36, -121], + [-1, -131], + [78, -62], + [20, -33], + [68, -42], + [66, -20], + [56, 42], + [85, -55], + [29, -38], + [-20, -69], + [25, -44], + [-2, -61], + [63, -81], + [15, -46], + [-23, -26], + [-45, 23], + [-48, -9], + [-70, -74] + ], + [ + [16703, 6480], + [8, 90], + [-13, 34], + [21, 47], + [-61, 2], + [-10, 61], + [-42, 51], + [4, 38], + [-117, 0], + [-30, 39], + [-43, -28], + [-78, 101], + [-15, 70], + [9, 50], + [53, -29], + [-23, 177], + [82, -15], + [143, -60], + [46, 84], + [48, 0], + [-57, 74], + [-47, 20], + [16, 58], + [65, 117], + [-12, 73], + [65, -3], + [64, -23], + [44, 47], + [57, -16], + [16, 49], + [45, 38], + [-44, 35] + ], + [ + [16897, 7661], + [43, 82], + [29, 21], + [58, -10], + [52, 13], + [94, 65], + [-47, 54], + [83, 36], + [41, 40], + [41, -51], + [87, 69], + [27, 38], + [61, -23], + [41, 15], + [81, -14], + [28, 38], + [58, 8], + [49, -56], + [30, 15], + [4, 199], + [-43, 14], + [-49, 128], + [-66, -17], + [-82, 37], + [27, 122], + [35, 10], + [-21, 85], + [48, 46] + ], + [ + [17606, 8625], + [51, -42], + [63, 33], + [48, -48], + [49, -92], + [58, 2], + [29, -24], + [52, 9], + [-8, 78], + [44, 43], + [38, -23], + [64, 55], + [58, -5], + [28, -26] + ], + [ + [17576, 3806], + [15, -60], + [-61, 7], + [46, 53] + ], + [ + [18645, 4849], + [-21, -75], + [-42, -44], + [-64, -40], + [-44, 11], + [-62, -15], + [-30, 35], + [-60, -63], + [-13, -115], + [-54, -13], + [-24, -50], + [-57, -34], + [-69, -63], + [16, -34], + [65, 27], + [85, -51], + [-44, -30], + [4, -63], + [-74, -111], + [-25, 46], + [-71, 13], + [-97, -88], + [-46, 17], + [-92, -18], + [-52, -27], + [-15, -52], + [8, -67], + [-49, 10], + [-31, 40], + [-56, 30], + [-56, -16], + [-53, 6], + [-70, -62], + [-16, -58], + [-38, 33], + [-59, 20], + [-88, -23], + [-37, 61], + [-53, 7], + [-104, -8], + [36, -73], + [-64, 12], + [-55, -65], + [-34, 1], + [-35, 73], + [11, 58], + [-61, 23], + [-30, 33], + [-93, 30], + [-1, 65], + [-36, 18] + ], + [ + [16823, 5409], + [6, 11] + ], + [ + [15116, 6661], + [3, 136] + ], + [ + [15119, 6797], + [45, -21], + [128, 10], + [64, -48], + [0, -80], + [14, -84], + [19, -9], + [84, 76], + [82, 1], + [87, 54], + [110, 51], + [25, -55], + [51, -8], + [61, 46], + [19, -126], + [22, -57], + [96, -17], + [29, 38], + [73, -48], + [49, -11], + [31, 22], + [45, -29], + [-2, -105], + [50, -2], + [49, -41], + [11, -40], + [68, -8] + ], + [ + [15641, 7011], + [46, -70], + [80, -37], + [-70, -35], + [-18, -82], + [-52, -65], + [-89, 27], + [-50, -11], + [-31, 94], + [58, 68], + [18, 76], + [108, 35] + ], + [ + [17302, 11581], + [52, -18], + [110, -94], + [-102, -189], + [31, -73], + [-136, -36], + [-110, -93], + [46, -28], + [-57, -121] + ], + [ + [17136, 10929], + [-55, -2], + [-53, -49], + [6, -52], + [-53, -1], + [-27, 37], + [-42, -56], + [-7, -79], + [9, -131], + [33, -34], + [-4, -77] + ], + [ + [16943, 10485], + [-3, -56], + [-52, -193], + [-14, -15], + [-16, -218], + [-42, -52], + [-75, 11], + [13, -58], + [-36, -41], + [3, -53], + [-54, -16], + [-45, -54] + ], + [ + [16622, 9740], + [-34, 90], + [-87, 81], + [0, 59], + [-95, 91], + [-95, 123], + [17, 58], + [-45, 56], + [-76, 60], + [-81, -80], + [-19, -77], + [-36, -57], + [-66, -47], + [-51, 7], + [-52, 71], + [-87, 24] + ], + [ + [15815, 10199], + [-131, -18], + [-82, 12], + [-61, -16], + [-4, 66], + [-58, 108], + [-5, 40], + [-49, 36], + [-68, -38], + [4, 56], + [-46, 39], + [-72, 8], + [36, 75], + [-23, 168], + [34, 46], + [-21, 55], + [74, 110], + [10, 39], + [-34, 47] + ], + [ + [15350, 9018], + [14, -25], + [-12, -95], + [16, -94], + [0, -91], + [26, -26], + [-38, -73], + [39, -56], + [-1, -57], + [49, -40], + [-29, -40], + [-8, -70], + [37, -96], + [40, -67], + [-50, -92], + [11, -42], + [-59, -88], + [-2, -51], + [-94, -106], + [5, -129], + [27, -83], + [-4, -55], + [-60, -120], + [-45, -47], + [-29, -81], + [22, -29], + [-26, -95], + [15, -28], + [-6, -79], + [-44, -36], + [-4, -71], + [-24, -60], + [3, -99] + ], + [ + [14860, 8876], + [82, 1], + [107, 38], + [-22, 44], + [38, 86], + [99, 83], + [117, 44] + ], + [ + [15281, 9172], + [26, -26], + [-16, -70], + [59, -58] + ], + [ + [15350, 9018], + [90, 24], + [31, -26], + [76, 58], + [96, 48], + [30, -4], + [17, -52], + [50, -1], + [32, -82], + [88, 1], + [-13, -88], + [84, 7], + [12, -36], + [-29, -74], + [36, -68], + [-3, -116], + [-47, -85], + [105, -7], + [34, -44], + [89, 0], + [124, -57], + [80, 48], + [43, 69], + [35, -14], + [-33, -85], + [43, -111], + [-24, -66], + [10, -100], + [-36, -282], + [33, -31], + [223, -76], + [32, -67], + [76, -4], + [62, -22], + [29, -36], + [72, 22] + ], + [ + [18463, 10128], + [-89, -35], + [-70, -102], + [-37, 111], + [-45, 66], + [-89, -11], + [-75, 71], + [-27, 82], + [50, 1], + [-17, 71], + [-71, 36], + [-60, -57], + [-35, -102], + [-38, -82], + [-95, -82], + [11, -35], + [-67, -138], + [-150, -23], + [2, 46], + [-64, -4], + [9, 72], + [-46, 53], + [-97, 18], + [-11, -47], + [-63, 15], + [-20, -23], + [-106, 67], + [10, 63], + [-27, 38], + [-75, -20], + [-16, 50], + [-47, 23], + [4, 63], + [-22, 159], + [-47, 13] + ], + [ + [17136, 10929], + [58, 27], + [64, -17], + [34, 34], + [121, -22], + [61, 38], + [17, 46], + [74, 64], + [94, 43], + [22, 41], + [-22, 35], + [-39, -22], + [-47, 62], + [8, 69], + [-35, 17], + [52, 115], + [131, 99], + [140, 27], + [143, 89], + [241, 1], + [178, -49], + [44, -28], + [-26, -100], + [-54, -46], + [46, -89], + [105, -82], + [-16, -70], + [-50, -49], + [-25, -61], + [15, -50], + [-31, -39], + [5, -61], + [30, -20], + [130, -13], + [-24, -68], + [4, -118], + [56, 49], + [125, -158], + [15, -78], + [40, -21], + [-6, -70], + [-45, -44], + [-3, -53], + [-89, -53], + [-25, -27], + [-72, -24], + [-22, -30], + [-86, 7], + [-9, -102] + ], + [ + [16622, 9740], + [36, -83], + [37, -36], + [1, -57], + [46, -43], + [29, -79], + [25, -26], + [6, -79], + [65, 8], + [45, -36], + [66, -22], + [88, -50], + [-10, 88], + [25, 28], + [-8, 73], + [86, 34], + [58, -44], + [-1, -41], + [64, -37], + [63, 14], + [62, -21], + [24, -50], + [46, -44], + [29, -96], + [-15, -78], + [-42, -13], + [-41, -64], + [13, -60], + [-21, -32], + [21, -72], + [35, -56], + [-28, -78], + [57, 24], + [64, -51], + [35, 14], + [24, -50] + ], + [ + [15281, 9172], + [5, 44], + [-24, 82], + [26, 28], + [-5, 53] + ], + [ + [15283, 9379], + [130, 103], + [47, 62], + [-54, 39], + [-44, 63], + [4, 40], + [72, -30], + [4, 32], + [75, 37], + [97, 14], + [49, 22], + [48, -19], + [31, 105], + [147, 102], + [-35, 76], + [-50, 4], + [-5, 110], + [16, 60] + ], + [ + [14713, 11131], + [54, -39], + [-26, -48], + [50, -32], + [-33, -74], + [-55, 32], + [-92, -45], + [-20, -46], + [2, -65], + [-76, -103], + [78, -73], + [-98, -42], + [63, -31], + [35, -71], + [53, -28], + [-35, -60], + [92, -133], + [-10, -141], + [-42, -30], + [15, -46], + [49, 9], + [-9, -78], + [-30, -52], + [1, -62], + [41, -20], + [27, -70], + [48, -21], + [13, -40], + [83, -44], + [28, -31], + [76, 22], + [25, -27], + [43, 11], + [33, -63], + [61, 48], + [19, -24], + [-57, -65], + [5, -97], + [71, -22], + [34, 37], + [54, -88] + ], + [ + [18463, 10128], + [-5, -51], + [19, -88], + [66, -87], + [62, -13], + [29, -59], + [65, 4], + [68, -14], + [-41, -64], + [10, -147], + [23, -104], + [73, -25], + [5, -49], + [55, -9], + [45, -85], + [88, -56], + [10, -22], + [-111, -187], + [34, -92], + [-1, -63], + [-36, -22], + [-70, -77], + [-23, 32], + [-116, -39], + [-35, -74], + [-82, -27], + [-9, -56], + [-63, -25], + [-80, 51], + [-45, 7], + [-42, -35], + [-85, -1], + [-29, -36], + [-62, -30] + ] + ], + "transform": { + "scale": [0.0006471939327180822, 0.0004361311423551835], + "translate": [-5.134028911590462, 41.36541748046881] + }, + "objects": { + "france": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-67", + "NAME_0": "France", + "ID_1": 1, + "NAME_1": "Alsace", + "ID_2": 1, + "NAME_2": "Bas-Rhin", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": "Unterelsaá" + } + }, + { + "arcs": [[5, 6, 7, -2]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-68", + "NAME_0": "France", + "ID_1": 1, + "NAME_1": "Alsace", + "ID_2": 2, + "NAME_2": "Haut-Rhin", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": "Oberelsaá" + } + }, + { + "arcs": [[8, 9, 10, 11, 12, 13, 14]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-24", + "NAME_0": "France", + "ID_1": 2, + "NAME_1": "Aquitaine", + "ID_2": 3, + "NAME_2": "Dordogne", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[15, -12, 16, 17, 18]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-33", + "NAME_0": "France", + "ID_1": 2, + "NAME_1": "Aquitaine", + "ID_2": 4, + "NAME_2": "Gironde", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": "Bec-D'Ambes" + } + }, + { + "arcs": [[19, 20, 21, 22, -18]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-40", + "NAME_0": "France", + "ID_1": 2, + "NAME_1": "Aquitaine", + "ID_2": 5, + "NAME_2": "Landes", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": "Landas" + } + }, + { + "arcs": [[-11, 23, 24, 25, -20, -17]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-47", + "NAME_0": "France", + "ID_1": 2, + "NAME_1": "Aquitaine", + "ID_2": 6, + "NAME_2": "Lot-et-Garonne", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[26, 27, -22, 28], [29], [30]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-64", + "NAME_0": "France", + "ID_1": 2, + "NAME_1": "Aquitaine", + "ID_2": 7, + "NAME_2": "Pyrénées-Atlantiques", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": "Basses-Pyrénées|Pirinio Atlantiarrak" + } + }, + { + "arcs": [[31, 32, 33, 34, 35, 36]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-03", + "NAME_0": "France", + "ID_1": 3, + "NAME_1": "Auvergne", + "ID_2": 8, + "NAME_2": "Allier", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": "Basses-Alpes" + } + }, + { + "arcs": [[37, 38, 39, 40, 41, 42]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-15", + "NAME_0": "France", + "ID_1": 3, + "NAME_1": "Auvergne", + "ID_2": 9, + "NAME_2": "Cantal", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[43, 44, 45, -38, 46]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-43", + "NAME_0": "France", + "ID_1": 3, + "NAME_1": "Auvergne", + "ID_2": 10, + "NAME_2": "Haute-Loire", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[47, -47, -43, 48, 49, -35]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-63", + "NAME_0": "France", + "ID_1": 3, + "NAME_1": "Auvergne", + "ID_2": 11, + "NAME_2": "Puy-de-Dôme", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[50, 51, 52, 53, 54, 55]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-91", + "NAME_0": "France", + "ID_1": 4, + "NAME_1": "Île-de-France", + "ID_2": 12, + "NAME_2": "Essonne", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[56, -56, 57, 58, 59, 60]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-92", + "NAME_0": "France", + "ID_1": 4, + "NAME_1": "Île-de-France", + "ID_2": 13, + "NAME_2": "Hauts-de-Seine", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[61, -61, 62]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-75", + "NAME_0": "France", + "ID_1": 4, + "NAME_1": "Île-de-France", + "ID_2": 14, + "NAME_2": "Paris", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[63, 64, 65, 66, -52, 67, 68, 69, 70, 71]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-77", + "NAME_0": "France", + "ID_1": 4, + "NAME_1": "Île-de-France", + "ID_2": 15, + "NAME_2": "Seine-et-Marne", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[72, -63, -60, 73, -69]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-93", + "NAME_0": "France", + "ID_1": 4, + "NAME_1": "Île-de-France", + "ID_2": 16, + "NAME_2": "Seine-Saint-Denis", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-70, -74, -59, 74, 75, 76]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-95", + "NAME_0": "France", + "ID_1": 4, + "NAME_1": "Île-de-France", + "ID_2": 17, + "NAME_2": "Val-d'Oise", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-68, -51, -57, -62, -73]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-94", + "NAME_0": "France", + "ID_1": 4, + "NAME_1": "Île-de-France", + "ID_2": 18, + "NAME_2": "Val-de-Marne", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-75, -58, -55, 77, 78]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-78", + "NAME_0": "France", + "ID_1": 4, + "NAME_1": "Île-de-France", + "ID_2": 19, + "NAME_2": "Yvelines", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[79, 80, 81, 82, 83]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-14", + "NAME_0": "France", + "ID_1": 5, + "NAME_1": "Basse-Normandie", + "ID_2": 20, + "NAME_2": "Calvados", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-81, 84, 85, 86, 87]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-50", + "NAME_0": "France", + "ID_1": 5, + "NAME_1": "Basse-Normandie", + "ID_2": 21, + "NAME_2": "Manche", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[88, 89, 90, 91, -85, -80]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-61", + "NAME_0": "France", + "ID_1": 5, + "NAME_1": "Basse-Normandie", + "ID_2": 22, + "NAME_2": "Orne", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[92, 93]], [[94, 95, 96, 97, 98, 99, 100]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 79, + "ISO": "FR-21", + "NAME_0": "France", + "ID_1": 6, + "NAME_1": "Bourgogne", + "ID_2": 23, + "NAME_2": "Côte-d'Or", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-99, 101, -93, 102, -32, 103, 104, 105]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-58", + "NAME_0": "France", + "ID_1": 6, + "NAME_1": "Bourgogne", + "ID_2": 24, + "NAME_2": "Nièvre", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[106, 107, 108, 109, -33, -103, -94, -102, -98]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-71", + "NAME_0": "France", + "ID_1": 6, + "NAME_1": "Bourgogne", + "ID_2": 25, + "NAME_2": "Saône-et-Loire", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-100, -106, 110, -66, 111]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-89", + "NAME_0": "France", + "ID_1": 6, + "NAME_1": "Bourgogne", + "ID_2": 26, + "NAME_2": "Yonne", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[112, 113, 114, 115, 116, 117]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-22", + "NAME_0": "France", + "ID_1": 7, + "NAME_1": "Bretagne", + "ID_2": 27, + "NAME_2": "Côtes-d'Armor", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": "Cotes-Du-Nord" + } + }, + { + "arcs": [[[118]], [[-117, 119, 120]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 79, + "ISO": "FR-29", + "NAME_0": "France", + "ID_1": 7, + "NAME_1": "Bretagne", + "ID_2": 28, + "NAME_2": "Finistère", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[-113, 121]], [[-87, 122, 123, 124, 125, -115, 126]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 79, + "ISO": "FR-35", + "NAME_0": "France", + "ID_1": 7, + "NAME_1": "Bretagne", + "ID_2": 29, + "NAME_2": "Ille-et-Vilaine", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[127]], [[128]], [[-126, 129, 130, -120, -116]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 79, + "ISO": "FR-56", + "NAME_0": "France", + "ID_1": 7, + "NAME_1": "Bretagne", + "ID_2": 30, + "NAME_2": "Morbihan", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-104, -37, 131, 132, 133, 134]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-18", + "NAME_0": "France", + "ID_1": 8, + "NAME_1": "Centre", + "ID_2": 31, + "NAME_2": "Cher", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-54, 135, 136, 137, -90, 138, -78]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-28", + "NAME_0": "France", + "ID_1": 8, + "NAME_1": "Centre", + "ID_2": 32, + "NAME_2": "Eure-et-Loir", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[139, 140, 141, 142, 143]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-37", + "NAME_0": "France", + "ID_1": 8, + "NAME_1": "Centre", + "ID_2": 33, + "NAME_2": "Indre-et-Loire", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-133, 144, 145, 146, -140, 147]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-36", + "NAME_0": "France", + "ID_1": 8, + "NAME_1": "Centre", + "ID_2": 34, + "NAME_2": "Indre", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[148, -134, -148, -144, 149, -137]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-41", + "NAME_0": "France", + "ID_1": 8, + "NAME_1": "Centre", + "ID_2": 35, + "NAME_2": "Loir-et-Cher", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-67, -111, -105, -135, -149, -136, -53]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-45", + "NAME_0": "France", + "ID_1": 8, + "NAME_1": "Centre", + "ID_2": 36, + "NAME_2": "Loiret", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[150, 151, 152, 153]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-08", + "NAME_0": "France", + "ID_1": 9, + "NAME_1": "Champagne-Ardenne", + "ID_2": 37, + "NAME_2": "Ardennes", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[154, -101, -112, -65, 155]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-10", + "NAME_0": "France", + "ID_1": 9, + "NAME_1": "Champagne-Ardenne", + "ID_2": 38, + "NAME_2": "Aube", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[156, 157, 158, -95, -155, 159]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-52", + "NAME_0": "France", + "ID_1": 9, + "NAME_1": "Champagne-Ardenne", + "ID_2": 39, + "NAME_2": "Haute-Marne", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-152, 160, -160, -156, -64, 161]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-51", + "NAME_0": "France", + "ID_1": 9, + "NAME_1": "Champagne-Ardenne", + "ID_2": 40, + "NAME_2": "Marne", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[162, 163]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-2A", + "NAME_0": "France", + "ID_1": 10, + "NAME_1": "Corse", + "ID_2": 41, + "NAME_2": "Corse-du-Sud", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[164, -164]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-2B", + "NAME_0": "France", + "ID_1": 10, + "NAME_1": "Corse", + "ID_2": 42, + "NAME_2": "Haute-Corse", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[165, 166, 167, 168]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-25", + "NAME_0": "France", + "ID_1": 11, + "NAME_1": "Franche-Comté", + "ID_2": 43, + "NAME_2": "Doubs", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[169, -169, 170, -96, -159, 171]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-70", + "NAME_0": "France", + "ID_1": 11, + "NAME_1": "Franche-Comté", + "ID_2": 44, + "NAME_2": "Haute-Saône", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-168, 172, 173, -107, -97, -171]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-39", + "NAME_0": "France", + "ID_1": 11, + "NAME_1": "Franche-Comté", + "ID_2": 45, + "NAME_2": "Jura", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[174, -166, -170, 175, -7]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-90", + "NAME_0": "France", + "ID_1": 11, + "NAME_1": "Franche-Comté", + "ID_2": 46, + "NAME_2": "Territoire de Belfort", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[176, -76, -79, -139, -89, -84, 177]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-27", + "NAME_0": "France", + "ID_1": 12, + "NAME_1": "Haute-Normandie", + "ID_2": 47, + "NAME_2": "Eure", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[178, -178, -83, 179, 180]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-76", + "NAME_0": "France", + "ID_1": 12, + "NAME_1": "Haute-Normandie", + "ID_2": 48, + "NAME_2": "Seine-Maritime", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": "Seine-Inférieure" + } + }, + { + "arcs": [[181, 182, 183, 184, 185, 186]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-11", + "NAME_0": "France", + "ID_1": 13, + "NAME_1": "Languedoc-Roussillon", + "ID_2": 49, + "NAME_2": "Aude", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[187, 188, 189, 190, 191, 192, 193]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-30", + "NAME_0": "France", + "ID_1": 13, + "NAME_1": "Languedoc-Roussillon", + "ID_2": 50, + "NAME_2": "Gard", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[194, -182, 195, 196, -191]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-34", + "NAME_0": "France", + "ID_1": 13, + "NAME_1": "Languedoc-Roussillon", + "ID_2": 51, + "NAME_2": "Hérault", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[197, -193, 198, -39, -46]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-48", + "NAME_0": "France", + "ID_1": 13, + "NAME_1": "Languedoc-Roussillon", + "ID_2": 52, + "NAME_2": "Lozère", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[199, -184, 200], [201]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-66", + "NAME_0": "France", + "ID_1": 13, + "NAME_1": "Languedoc-Roussillon", + "ID_2": 53, + "NAME_2": "Pyrénées-Orientales", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-49, -42, 202, -9, 203, 204]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-19", + "NAME_0": "France", + "ID_1": 14, + "NAME_1": "Limousin", + "ID_2": 54, + "NAME_2": "Corrèze", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-132, -36, -50, -205, 205, -145]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-23", + "NAME_0": "France", + "ID_1": 14, + "NAME_1": "Limousin", + "ID_2": 55, + "NAME_2": "Creuse", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-206, -204, -15, 206, 207, -146]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-87", + "NAME_0": "France", + "ID_1": 14, + "NAME_1": "Limousin", + "ID_2": 56, + "NAME_2": "Haute-Vienne", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[208, -4, 209, 210, 211]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-54", + "NAME_0": "France", + "ID_1": 15, + "NAME_1": "Lorraine", + "ID_2": 57, + "NAME_2": "Meurthe-et-Moselle", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-211, 212, -157, -161, -151, 213]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-55", + "NAME_0": "France", + "ID_1": 15, + "NAME_1": "Lorraine", + "ID_2": 58, + "NAME_2": "Meuse", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-5, -209, 214]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-57", + "NAME_0": "France", + "ID_1": 15, + "NAME_1": "Lorraine", + "ID_2": 59, + "NAME_2": "Moselle", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": "Lothringen" + } + }, + { + "arcs": [[-3, -8, -176, -172, -158, -213, -210]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-88", + "NAME_0": "France", + "ID_1": 15, + "NAME_1": "Lorraine", + "ID_2": 60, + "NAME_2": "Vosges", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-185, -200, 215, 216]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-09", + "NAME_0": "France", + "ID_1": 16, + "NAME_1": "Midi-Pyrénées", + "ID_2": 61, + "NAME_2": "Ariège", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-199, -192, -197, 217, 218, 219, -40]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-12", + "NAME_0": "France", + "ID_1": 16, + "NAME_1": "Midi-Pyrénées", + "ID_2": 62, + "NAME_2": "Aveyron", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[220, 221, 222, -29, -21, -26]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-32", + "NAME_0": "France", + "ID_1": 16, + "NAME_1": "Midi-Pyrénées", + "ID_2": 63, + "NAME_2": "Gers", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[223, -186, -217, 224, 225, -222, 226]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-31", + "NAME_0": "France", + "ID_1": 16, + "NAME_1": "Midi-Pyrénées", + "ID_2": 64, + "NAME_2": "Haute-Garonne", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": "Alto Garona" + } + }, + { + "arcs": [[[-31]], [[-30]], [[-226, 227, -27, -223]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 79, + "ISO": "FR-65", + "NAME_0": "France", + "ID_1": 16, + "NAME_1": "Midi-Pyrénées", + "ID_2": 65, + "NAME_2": "Hautes-Pyrénées", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": "Altos Pirineos" + } + }, + { + "arcs": [[-41, -220, 228, -24, -10, -203]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-46", + "NAME_0": "France", + "ID_1": 16, + "NAME_1": "Midi-Pyrénées", + "ID_2": 66, + "NAME_2": "Lot", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-219, 229, -227, -221, -25, -229]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-82", + "NAME_0": "France", + "ID_1": 16, + "NAME_1": "Midi-Pyrénées", + "ID_2": 67, + "NAME_2": "Tarn-et-Garonne", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-196, -187, -224, -230, -218]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-81", + "NAME_0": "France", + "ID_1": 16, + "NAME_1": "Midi-Pyrénées", + "ID_2": 68, + "NAME_2": "Tarn", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[230]], [[231, 232, 233, 234]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 79, + "ISO": "FR-59", + "NAME_0": "France", + "ID_1": 17, + "NAME_1": "Nord-Pas-de-Calais", + "ID_2": 69, + "NAME_2": "Nord", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[235, 236, -234], [-231]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-62", + "NAME_0": "France", + "ID_1": 17, + "NAME_1": "Nord-Pas-de-Calais", + "ID_2": 70, + "NAME_2": "Pas-de-Calais", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[237, 238, 239, -130, -125]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-44", + "NAME_0": "France", + "ID_1": 18, + "NAME_1": "Pays de la Loire", + "ID_2": 71, + "NAME_2": "Loire-Atlantique", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": "Loire-Inferieure" + } + }, + { + "arcs": [[240, -142, 241, 242, 243, -238, -124, 244]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-49", + "NAME_0": "France", + "ID_1": 18, + "NAME_1": "Pays de la Loire", + "ID_2": 72, + "NAME_2": "Maine-et-Loire", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[245, -245, -123, -86, -92]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-53", + "NAME_0": "France", + "ID_1": 18, + "NAME_1": "Pays de la Loire", + "ID_2": 73, + "NAME_2": "Mayenne", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-138, -150, -143, -241, -246, -91]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-72", + "NAME_0": "France", + "ID_1": 18, + "NAME_1": "Pays de la Loire", + "ID_2": 74, + "NAME_2": "Sarthe", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[246]], [[247]], [[248, -239, -244, 249, 250]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 79, + "ISO": "FR-85", + "NAME_0": "France", + "ID_1": 18, + "NAME_1": "Pays de la Loire", + "ID_2": 75, + "NAME_2": "Vendée", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": "Vendéia" + } + }, + { + "arcs": [[251, -153, -162, -72, 252, 253, -232]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-02", + "NAME_0": "France", + "ID_1": 19, + "NAME_1": "Picardie", + "ID_2": 76, + "NAME_2": "Aisne", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[254, -253, -71, -77, -177, -179]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-60", + "NAME_0": "France", + "ID_1": 19, + "NAME_1": "Picardie", + "ID_2": 77, + "NAME_2": "Oise", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-236, -233, -254, -255, -181, 255]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-80", + "NAME_0": "France", + "ID_1": 19, + "NAME_1": "Picardie", + "ID_2": 78, + "NAME_2": "Somme", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[256]], [[257]], [[258, 259, -13, -16, 260, -251]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 79, + "ISO": "FR-17", + "NAME_0": "France", + "ID_1": 20, + "NAME_1": "Poitou-Charentes", + "ID_2": 79, + "NAME_2": "Charente-Maritime", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": "Charente-Inférieure" + } + }, + { + "arcs": [[-207, -14, -260, 261, 262]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-16", + "NAME_0": "France", + "ID_1": 20, + "NAME_1": "Poitou-Charentes", + "ID_2": 80, + "NAME_2": "Charente", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[263, -262, -259, -250, -243]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-79", + "NAME_0": "France", + "ID_1": 20, + "NAME_1": "Poitou-Charentes", + "ID_2": 81, + "NAME_2": "Deux-Sèvres", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-141, -147, -208, -263, -264, -242]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-86", + "NAME_0": "France", + "ID_1": 20, + "NAME_1": "Poitou-Charentes", + "ID_2": 82, + "NAME_2": "Vienne", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[264, 265, 266, 267, 268, 269]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-04", + "NAME_0": "France", + "ID_1": 21, + "NAME_1": "Provence-Alpes-Côte d'Azur", + "ID_2": 83, + "NAME_2": "Alpes-de-Haute-Provence", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[270, -266, 271]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-06", + "NAME_0": "France", + "ID_1": 21, + "NAME_1": "Provence-Alpes-Côte d'Azur", + "ID_2": 84, + "NAME_2": "Alpes-Maritimes", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[272, 273, -189, 274]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-13", + "NAME_0": "France", + "ID_1": 21, + "NAME_1": "Provence-Alpes-Côte d'Azur", + "ID_2": 85, + "NAME_2": "Bouches-du-Rhône", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[275, -270, 276, 277, 278]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-05", + "NAME_0": "France", + "ID_1": 21, + "NAME_1": "Provence-Alpes-Côte d'Azur", + "ID_2": 86, + "NAME_2": "Hautes-Alpes", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[279]], [[-271, 280, -273, 281, -267]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 79, + "ISO": "FR-83", + "NAME_0": "France", + "ID_1": 21, + "NAME_1": "Provence-Alpes-Côte d'Azur", + "ID_2": 87, + "NAME_2": "Var", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[-268, -282, -275, -188, 282, 283]], [[284]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 79, + "ISO": "FR-84", + "NAME_0": "France", + "ID_1": 21, + "NAME_1": "Provence-Alpes-Côte d'Azur", + "ID_2": 88, + "NAME_2": "Vaucluse", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-174, 285, 286, 287, 288, 289, -108]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-01", + "NAME_0": "France", + "ID_1": 22, + "NAME_1": "Rhône-Alpes", + "ID_2": 89, + "NAME_2": "Ain", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[290, -283, -194, -198, -45, 291, 292]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-07", + "NAME_0": "France", + "ID_1": 22, + "NAME_1": "Rhône-Alpes", + "ID_2": 90, + "NAME_2": "Ardèche", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-277, -269, -284, -291, 293], [-285]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-26", + "NAME_0": "France", + "ID_1": 22, + "NAME_1": "Rhône-Alpes", + "ID_2": 91, + "NAME_2": "Drôme", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[294, -287, 295]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-74", + "NAME_0": "France", + "ID_1": 22, + "NAME_1": "Rhône-Alpes", + "ID_2": 92, + "NAME_2": "Haute-Savoie", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[296, -278, -294, -293, 297, 298, -289]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-38", + "NAME_0": "France", + "ID_1": 22, + "NAME_1": "Rhône-Alpes", + "ID_2": 93, + "NAME_2": "Isère", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[299, -298, -292, -44, -48, -34, -110]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-42", + "NAME_0": "France", + "ID_1": 22, + "NAME_1": "Rhône-Alpes", + "ID_2": 94, + "NAME_2": "Loire", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-290, -299, -300, -109]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-69", + "NAME_0": "France", + "ID_1": 22, + "NAME_1": "Rhône-Alpes", + "ID_2": 95, + "NAME_2": "Rhône", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[300, -279, -297, -288, -295]], + "type": "Polygon", + "properties": { + "ID_0": 79, + "ISO": "FR-73", + "NAME_0": "France", + "ID_1": 22, + "NAME_1": "Rhône-Alpes", + "ID_2": 96, + "NAME_2": "Savoie", + "TYPE_2": "Département", + "ENGTYPE_2": "Department", + "NL_NAME_2": null, + "VARNAME_2": "Sabóia|Savoia" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/germany-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/germany-topo.json new file mode 100644 index 000000000000..99a1d37ae019 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/germany-topo.json @@ -0,0 +1,1850 @@ +{ + "type": "Topology", + "arcs": [ + [ + [3118, 427], + [-45, 8], + [-31, 69], + [-91, 41], + [-46, -8], + [-86, 60], + [-18, 45], + [-118, 86], + [1, -43], + [72, -48], + [37, -95], + [-76, 1], + [-20, 47], + [-67, 40], + [-14, -43], + [-56, -54], + [-52, -4], + [-20, 68], + [-28, 12], + [-32, -48], + [-46, 20], + [10, 83], + [-48, 46], + [-52, 17], + [-111, -34], + [-25, -60], + [-43, -39], + [-1, -38], + [53, -45], + [111, 43], + [4, -83], + [-73, 28], + [-49, -40], + [-19, -49], + [-93, 7], + [-25, 45], + [-77, 23], + [-76, -51], + [-11, -31], + [-65, -13], + [-92, 2], + [-19, 50], + [-57, 0], + [-21, -42], + [-104, -36], + [1, 76], + [-44, -17], + [-78, 108], + [-9, 58], + [29, 44], + [-15, 66], + [27, 78], + [-4, 54], + [53, 127], + [-44, 85], + [8, 116], + [73, 135], + [23, 111], + [43, 37], + [-10, 94], + [28, 120], + [32, 36], + [-4, 95], + [37, 85], + [43, 29], + [55, 73], + [7, 48], + [39, 9], + [70, 73], + [34, 109], + [46, 83], + [27, 15] + ], + [ + [1966, 2311], + [55, 49], + [16, 72], + [40, 58], + [5, 96], + [31, 68], + [-15, 19], + [86, 91], + [-34, 43], + [37, 37], + [12, 101], + [-54, 92], + [-21, 69], + [8, 45] + ], + [ + [2132, 3151], + [34, 7], + [73, -91], + [52, 28], + [-16, 94], + [72, 23], + [6, -94], + [15, -29], + [159, -69], + [-62, -17], + [25, -98], + [43, 56], + [38, 20], + [4, 55], + [73, 6], + [51, 105] + ], + [ + [2699, 3147], + [77, -10], + [58, 25], + [23, 71], + [81, -6], + [28, 66], + [-53, 20], + [-29, 35], + [-6, 51], + [109, 5], + [28, 20], + [66, -15], + [74, 17], + [-20, -122], + [42, 20], + [63, -9], + [32, 21], + [40, -45], + [-9, -31], + [40, -85], + [-8, -56], + [52, -9], + [-7, -91], + [71, -14], + [61, 46], + [39, -69], + [35, -95], + [-51, -76], + [39, -29], + [-18, -91], + [6, -65], + [81, -53], + [25, -45], + [-38, -20], + [39, -59], + [-10, -26], + [82, -43], + [49, -44], + [42, -66], + [-5, -156], + [-24, -100], + [47, -46], + [-24, -65], + [-84, 7], + [-57, 45], + [-19, -60], + [52, -65], + [-24, -126], + [-38, 6], + [-65, -82], + [-117, -4], + [-13, -71], + [-42, -37], + [80, -134], + [1, -76], + [33, -126], + [24, -25], + [5, -92], + [-23, -97], + [-13, -142], + [23, -81], + [-46, -32], + [37, -55], + [10, -102], + [-110, 9], + [-27, -41], + [-87, 35], + [-50, -36], + [-49, -62], + [-60, 9], + [-49, -41] + ], + [ + [5050, 4296], + [47, -46], + [-7, -51], + [75, -24], + [50, -34] + ], + [ + [5215, 4141], + [-20, -95], + [49, -19], + [42, -77], + [-10, -83], + [52, -27], + [96, -103], + [77, -28], + [24, -26], + [-18, -50], + [60, -17], + [-1, -44], + [-52, -71], + [-15, -78], + [-48, -26], + [36, -86], + [64, -21], + [-2, -75], + [37, -31], + [15, -90], + [48, -17], + [13, -135], + [66, -29], + [52, -85], + [125, 0], + [48, -53], + [23, -57], + [48, -32], + [18, -65], + [58, -40], + [-5, -30], + [53, -42], + [43, 9], + [90, -93], + [4, -98], + [48, -26], + [102, 10], + [69, -116], + [67, -12], + [9, -48], + [61, -87], + [-21, -54], + [13, -128], + [-20, -88], + [-50, -38], + [-17, -43], + [-106, 80], + [-62, 28], + [-58, -74], + [-22, -115], + [10, -38], + [-21, -71], + [-94, -92], + [-95, -15], + [-136, -52], + [-48, -59], + [-80, -18], + [-24, -57], + [-72, -61], + [18, -61], + [71, -71], + [18, -81], + [46, -21], + [54, -127], + [-75, -164], + [62, -26], + [25, 24], + [55, -52], + [20, -71], + [-57, -140], + [14, -57], + [-41, -35], + [-76, 38], + [-51, 70], + [-59, 45], + [38, 47], + [-47, 40], + [-28, 50], + [-110, -4], + [-23, -61], + [-60, -8], + [-72, 96], + [-143, -16], + [-61, 16], + [39, -121], + [-70, -11], + [-119, 22], + [-60, -9], + [-55, -44], + [-66, 21], + [-92, -11], + [-26, 16], + [-36, -62], + [-10, -56], + [-60, -9], + [-60, 11], + [-41, -56], + [-78, -57], + [-119, -9], + [-45, -38], + [-108, 5], + [9, 31], + [-91, 109], + [11, 49], + [-93, -30], + [-71, 60], + [-72, 13], + [-21, -38], + [-70, 4], + [-27, 55], + [-23, -107], + [23, -30], + [11, -70], + [-124, -177], + [-76, -45], + [-51, 31], + [51, 109], + [-45, 28], + [-51, -26], + [-37, 55], + [24, 23], + [-87, 74], + [-35, 69], + [-118, 19], + [8, 47], + [-41, 16], + [-35, -70], + [-91, 35], + [-10, 17] + ], + [ + [2699, 3147], + [-29, 55], + [33, 31], + [-15, 65], + [47, 60], + [-68, 129], + [-26, 105], + [8, 181], + [-34, -1], + [22, 95], + [87, 18], + [30, -24], + [53, 57], + [116, -23], + [35, -71], + [84, 17], + [-10, 162], + [22, 31], + [53, -19], + [57, 26], + [-11, 40], + [72, 42], + [16, 169], + [104, -35], + [87, 62], + [44, 67], + [0, 31] + ], + [ + [3476, 4417], + [49, 46], + [88, 5], + [74, -81], + [29, -5], + [74, -132], + [34, 10], + [30, -66], + [74, -30], + [25, -56], + [5, -91], + [97, -20], + [62, 92], + [-72, 65], + [29, 46], + [62, 40], + [86, 6], + [87, -65], + [62, 30], + [38, -60], + [73, -75], + [20, 207], + [-19, 81], + [64, 15], + [39, 46], + [49, -10], + [-10, -86], + [97, -96], + [49, 31], + [24, -20], + [64, 10], + [74, 36], + [33, -41], + [84, 47] + ], + [ + [6093, 6967], + [-70, 37], + [21, 65], + [47, 55], + [-45, 21], + [33, 70], + [46, 14], + [11, 60], + [117, -8], + [56, 19], + [22, 45], + [50, -31], + [-17, -56], + [45, -26], + [73, -92], + [4, -51], + [60, -22], + [24, -51], + [-74, -114], + [-49, 72], + [-51, -9], + [-95, 28], + [-26, -45], + [-141, 59], + [-41, -40] + ], + [ + [7125, 8246], + [26, -100], + [-57, -71], + [3, -122], + [-35, -91], + [-58, -54], + [-107, -64], + [11, -111], + [-27, -33], + [13, -41], + [63, -6], + [35, -47], + [96, -65], + [79, -110], + [117, -71], + [22, -53], + [-22, -27], + [13, -85], + [-66, -63], + [-12, -56], + [48, -129], + [-13, -17], + [108, -66], + [-21, -61], + [17, -30], + [-22, -71], + [60, -71], + [-41, -117], + [11, -56], + [-43, -90], + [-51, -47], + [3, -49], + [44, -15], + [5, -73], + [54, -66], + [22, -111], + [-29, -36] + ], + [ + [7371, 5871], + [-28, -36], + [-183, -9], + [-100, -53], + [-43, 23], + [-116, 17], + [-20, -24], + [-36, -104], + [-54, -100], + [-36, 33], + [-36, -24], + [-59, 2], + [-81, -28], + [-182, 26], + [-82, 68], + [-95, -7], + [-81, -38], + [-27, 101], + [21, 55], + [-58, 82], + [-13, 55], + [-36, -9], + [-29, 56] + ], + [ + [5997, 5957], + [97, 58], + [-1, 151], + [-34, 61], + [-74, 32], + [6, 40], + [-61, 2], + [-9, 45], + [-91, -3], + [-4, 46], + [-120, 48], + [-45, 6], + [-26, -35], + [-66, 1], + [-49, 67], + [-46, -19], + [-55, 36], + [-75, 82], + [-44, 81], + [37, 70], + [-15, 51], + [48, 130], + [-8, 101], + [26, 70], + [-55, 36], + [-77, 6], + [-14, 46], + [22, 90], + [52, 55], + [-5, 56], + [-30, 36], + [6, 60], + [42, 50], + [-19, 71], + [-128, 53], + [-87, -14], + [-61, 21], + [-67, 46], + [-71, 87], + [-46, -4], + [-72, 67] + ], + [ + [4778, 7840], + [-77, 21], + [-41, 41], + [-88, -34], + [-68, 67], + [0, 25] + ], + [ + [4504, 7960], + [104, -1], + [63, 24], + [57, -21], + [42, 121], + [37, 40], + [57, -1], + [25, -35], + [58, 49], + [57, 5], + [130, 63], + [27, 61], + [93, -12], + [52, 25], + [25, -36], + [113, -38], + [0, -30], + [51, -37], + [62, 14], + [66, -27], + [47, 15], + [14, -41], + [62, -2], + [20, -51], + [108, 13], + [55, -47], + [106, 104], + [119, 27], + [42, 30], + [51, -2], + [35, -41], + [28, 70], + [52, 3], + [44, 105], + [-4, 30], + [63, 19], + [12, 45], + [59, 44], + [78, 3], + [18, 60], + [46, -27], + [33, -72], + [104, -28], + [64, 17], + [52, -26], + [53, -2], + [-3, -50], + [-29, -60], + [-78, -73], + [25, -26], + [68, -12], + [61, 39], + [17, 34], + [80, 24] + ], + [ + [2196, 8114], + [79, -63], + [98, -1], + [21, -24], + [72, -3], + [27, -40], + [88, 3], + [3, -132], + [-29, -36], + [-130, 36], + [-41, -6], + [-17, 55], + [-31, 14], + [-39, 105], + [-89, 42], + [-12, 50] + ], + [ + [2203, 8484], + [35, 4], + [8, 58], + [-32, 58], + [-5, 18] + ], + [ + [2209, 8622], + [61, -18], + [42, -60], + [5, -52], + [-37, -36], + [-77, 28] + ], + [ + [3709, 8399], + [-60, -51], + [-59, 4], + [-103, 90], + [-16, -41], + [-75, -5], + [-38, 40], + [-32, -31], + [-53, 45], + [-28, 50], + [5, 66], + [-38, 5] + ], + [ + [3212, 8571], + [5, 35], + [47, 36], + [54, -20], + [57, 81], + [60, -10], + [9, 46], + [59, -5], + [10, 55], + [74, -14], + [7, -56], + [39, -60], + [-15, -55], + [-42, -5], + [7, -75], + [43, -5], + [22, -50], + [61, -70] + ], + [ + [3390, 5592], + [10, -102], + [65, -36], + [41, -71], + [99, -31], + [35, -31], + [-73, -170], + [45, -16], + [-4, -60], + [-130, 21], + [-24, -106], + [41, -61], + [-54, -85], + [-40, -10], + [-20, -71], + [11, -45], + [-20, -55], + [-35, -30], + [9, -50], + [52, -11], + [4, 56], + [81, 8], + [31, -61], + [-40, -25], + [21, -77], + [-19, -56] + ], + [ + [2132, 3151], + [-29, 43], + [-26, 79], + [18, 41], + [53, 23], + [-51, 133], + [8, 41], + [-39, 48], + [14, 31], + [-26, 89], + [-65, 73], + [-58, 7], + [-167, -78], + [-83, -6], + [-16, 51], + [-70, 61], + [53, 41], + [9, 57], + [63, -20], + [4, 41], + [-35, 55], + [23, 31], + [78, 37], + [100, 89], + [-35, 45], + [-11, 61], + [-62, 34], + [-11, 132], + [56, 83], + [44, -29], + [34, 26], + [14, 62], + [-44, 82], + [11, 37] + ], + [ + [1886, 4651], + [38, 70], + [-28, 41], + [28, 51], + [80, 101], + [78, -25], + [66, 71], + [17, 66], + [57, 62], + [1, 117], + [105, -7], + [34, 22], + [9, 46], + [44, 42], + [-23, 106], + [-26, 34], + [-90, -38], + [-27, 40], + [53, 83], + [55, 32], + [106, 39], + [41, -19], + [69, 18], + [-28, 136], + [98, 43], + [59, -33], + [1, -71], + [49, 1], + [94, 94], + [79, 109], + [-30, 24], + [90, 48] + ], + [ + [2985, 5954], + [64, -23], + [83, 2], + [51, -64], + [-53, -46], + [-14, -76], + [21, -44], + [1, -70], + [-57, -43], + [15, -45], + [69, -42], + [62, 13], + [-25, 49], + [75, 71], + [91, 11], + [22, -55] + ], + [ + [4504, 7960], + [-62, 82], + [-88, 47], + [-83, 163], + [-67, 8], + [-57, -38], + [-41, 13], + [-73, 78], + [-92, -8] + ], + [ + [3941, 8305], + [20, 25], + [15, 100], + [46, -1], + [103, 82], + [4, 50], + [73, 18], + [36, 104], + [-27, 67], + [-58, 7], + [-68, 67], + [-7, 101], + [10, 71], + [95, 53], + [6, 49] + ], + [ + [4189, 9098], + [120, 68], + [118, 13], + [57, -39], + [-3, -61], + [68, 20], + [98, -64], + [31, 65], + [-87, 24], + [1, 30], + [66, 36], + [41, -19], + [58, 34], + [40, 57], + [-14, 40], + [63, 64], + [162, -6], + [111, 40], + [82, -3], + [68, 87], + [124, 79], + [59, 110], + [48, 56], + [36, 86], + [32, -37], + [93, -19], + [164, -2], + [-77, -38], + [-107, 6], + [-103, -56], + [-65, 4], + [-11, -53], + [-53, -50], + [21, -32], + [76, 32], + [-1, 36], + [52, 13], + [146, 98], + [9, -53], + [69, -1], + [35, -27], + [42, 66], + [86, 49], + [94, -179], + [95, -88], + [50, -6], + [52, -96], + [24, 16], + [83, -79], + [183, 41], + [93, -71], + [-42, -95], + [64, -58], + [65, -80], + [-5, 88], + [106, -67], + [11, 76], + [-36, 19], + [-26, 66], + [-40, 6], + [-134, -44], + [40, 85], + [-52, 89], + [53, 25], + [24, -74], + [39, -42], + [108, -54], + [169, -167], + [-26, -78], + [-130, 0], + [-32, -31], + [-106, -19], + [87, -87], + [125, -47], + [52, -2], + [38, 35], + [51, -139], + [23, -186], + [34, -46], + [12, -85], + [35, -131] + ], + [ + [6302, 10089], + [-44, -67], + [14, -52], + [53, -37], + [149, 20], + [37, -31], + [-9, -56], + [-82, -69], + [24, -78], + [66, -23], + [-4, -61], + [-50, -27], + [-32, 30], + [-56, -12], + [-80, -65], + [-18, -101], + [-159, 65], + [-50, 36], + [-21, 49], + [13, 54], + [87, -4], + [2, 52], + [-56, 24], + [0, 38], + [60, 26], + [-59, 48], + [-7, 51], + [65, 13], + [38, -15], + [64, 17], + [73, -113], + [38, 9], + [5, 93], + [-46, 5], + [-53, 41], + [-111, -13], + [32, 75], + [-3, 62], + [120, 16] + ], + [ + [742, 8639], + [-35, -75], + [-47, 19], + [-8, 40], + [90, 16] + ], + [ + [2689, 9000], + [86, 3], + [74, -23], + [59, -63], + [38, -89], + [85, -77], + [34, -105], + [105, -66], + [42, -9] + ], + [ + [3709, 8399], + [60, -10], + [96, -69], + [76, -15] + ], + [ + [4778, 7840], + [-31, -50], + [-41, 5], + [-32, -85], + [-130, -85], + [-67, 6], + [-67, 36], + [-135, 7], + [-47, -79], + [-142, 4], + [-9, -84], + [24, -71], + [115, -183], + [38, -145], + [-31, -55], + [83, -101], + [21, -51], + [-51, -9], + [77, -152], + [-45, -24], + [-15, -45], + [40, -16], + [-14, -45], + [-85, -38], + [21, -66], + [-97, -8], + [-139, 2], + [-45, -49], + [-57, 1], + [67, -174], + [-55, -47], + [-5, -62], + [20, -56], + [61, -95], + [26, -75] + ], + [ + [4031, 5951], + [-55, -33], + [1, -53], + [-99, -40], + [-65, 51], + [-50, -40], + [-38, -60], + [-138, -95], + [-123, -34], + [-74, -55] + ], + [ + [2985, 5954], + [-58, 3], + [22, 76], + [-16, 74], + [52, 47], + [-8, 85], + [-60, 9], + [-32, 75], + [-45, 14], + [-7, 66], + [-70, -1], + [14, 46], + [-21, 35], + [3, 71], + [-27, 65], + [-77, 18], + [-7, 61], + [24, 56], + [-87, 39], + [13, 66], + [34, 47], + [50, 16], + [34, 77], + [-22, 61], + [24, 36], + [-67, 23], + [-53, -92], + [-54, -43], + [-56, -16], + [-56, 13], + [-66, -7], + [2, 112], + [-48, 75], + [-80, -43], + [-42, 19], + [-39, -32], + [-24, -56], + [-106, -9], + [7, -50], + [109, -57], + [20, -152], + [-14, -36], + [19, -96], + [-50, -21], + [-8, -41], + [-97, 28], + [-35, -11], + [-72, -63], + [-101, -16], + [-54, -39], + [-46, 18], + [-28, 49], + [103, 40], + [2, 83], + [-66, 2], + [-3, 174], + [40, 13], + [-32, 68], + [-36, 23], + [-70, -14], + [-76, 41], + [-22, 74], + [-67, 22], + [-29, -56], + [1, -65], + [-40, -17], + [-117, -81], + [-77, -64], + [-117, 5], + [-73, -33] + ], + [ + [1000, 6768], + [-35, 69], + [43, 85], + [-67, 158], + [-58, -45], + [-64, 31], + [-74, 3], + [-43, 26], + [5, 198], + [56, 36], + [99, -1], + [36, -17], + [95, 6], + [15, 227], + [11, 44], + [99, 118], + [35, 92], + [2, 133], + [-25, 25], + [48, 98], + [-11, 54], + [-36, 40], + [17, 98], + [-187, 9], + [-21, 30], + [22, 170], + [33, 56], + [57, 10], + [-36, 52], + [56, 78], + [116, 72], + [149, 4], + [74, -12], + [108, 36], + [181, 22], + [85, -8], + [13, -68], + [72, -65], + [46, -96], + [-16, -42], + [-75, -16], + [32, -75], + [32, 10], + [60, -69], + [36, -4], + [53, 89], + [0, 70], + [-70, 5], + [9, 85], + [51, 48], + [35, -10], + [32, -49], + [101, -31], + [7, -63] + ], + [ + [2209, 8622], + [-31, 67], + [0, 53], + [59, 182], + [53, 73], + [54, 13], + [87, -79], + [84, -7], + [107, 10], + [70, 37], + [-3, 29] + ], + [ + [1886, 4651], + [-133, 118], + [6, 76], + [-122, 69], + [16, 61], + [-46, 23], + [-37, -32], + [7, -56], + [-50, -73], + [-35, -78], + [-50, -3], + [-100, -67], + [-97, -22], + [-1, -76], + [-86, -36], + [-54, 2], + [-38, -33], + [-78, 5], + [-41, -53], + [-68, -14], + [-32, -38], + [19, -65], + [-42, -33], + [-47, 49], + [-44, -70], + [48, -104], + [-79, -31], + [-32, 40], + [-72, 19], + [-108, -24], + [-61, 23], + [14, -75] + ], + [ + [443, 4153], + [-53, 79], + [29, 90], + [-37, 65], + [-89, 11], + [-40, 79], + [63, 44], + [7, 45], + [-52, 8], + [-65, 105], + [-75, 23], + [-19, 57], + [-36, 38], + [57, 36], + [47, 78], + [-4, 58], + [-57, 16], + [15, 63], + [-104, 29], + [-30, 58], + [45, 16], + [36, -29], + [25, 65], + [33, 19], + [88, 106], + [-55, 19], + [0, 78], + [128, 165], + [-15, 59], + [14, 91], + [-9, 44], + [-52, 82], + [-55, 49], + [23, 75], + [-70, 31], + [1, 60], + [-55, 112], + [76, 57], + [90, -9], + [-42, 62], + [42, 17], + [41, -48], + [59, 12], + [18, -35], + [72, 28], + [69, -23], + [61, 39], + [116, 51], + [42, -29], + [80, 90], + [-3, 41], + [-63, 48], + [-51, 13], + [2, 46], + [49, 17], + [8, 47], + [70, -2], + [53, 79], + [44, 17], + [16, 48], + [69, 25] + ], + [ + [1966, 2311], + [-115, 29], + [-34, 32], + [-62, 21], + [-33, 38], + [-58, -31], + [-56, 41], + [-108, -24], + [-36, 37], + [-49, 9], + [-66, 77], + [1, 43], + [-38, 22], + [-66, -18] + ], + [ + [1246, 2587], + [-55, 57], + [-7, 45], + [74, 58], + [25, 101], + [-40, 34], + [-58, 13], + [-27, 79], + [42, 32], + [-21, 44], + [-14, 95], + [-63, 2], + [-11, 35], + [-53, -9], + [-71, 61], + [-28, -22], + [-110, -23], + [-97, -72], + [-110, -29], + [-101, -14], + [-31, 22], + [-68, 4] + ], + [ + [422, 3100], + [-1, 60], + [38, 45], + [1, 56], + [66, 67], + [13, 65], + [-9, 58], + [-92, 24], + [-18, 35], + [-116, 58], + [-15, 81], + [-52, 13], + [-37, 120], + [5, 100], + [24, 69], + [36, 22], + [-16, 63], + [88, 40], + [21, 72], + [85, 5] + ], + [ + [1246, 2587], + [-61, -76], + [-40, 20], + [-72, -12], + [-45, 24], + [-39, -36], + [-20, 103], + [-83, 46], + [-81, -14], + [20, -45], + [-22, -37], + [-81, 18], + [-37, 72], + [-21, 86], + [-44, 30], + [-42, 63], + [29, 24], + [-50, 47], + [-4, 45], + [-94, 57], + [-46, -13], + [9, 111] + ], + [ + [5997, 5957], + [-39, 26], + [-76, -33], + [-54, 51], + [-62, -49], + [-75, 22], + [-15, -40], + [-112, -37], + [-85, 1], + [-6, -30], + [-65, 7], + [-46, -40], + [-50, 1], + [-36, -49], + [15, -36], + [-41, -59], + [20, -30], + [-6, -75], + [14, -61], + [-35, -14], + [38, -96], + [14, -90], + [-11, -55], + [20, -40], + [54, -26] + ], + [ + [5358, 5205], + [-20, -55], + [29, -40], + [-46, -95], + [-49, 36], + [-125, -8], + [-49, 60], + [-85, 56], + [-100, -15], + [-49, 31], + [-50, 55], + [-129, -15], + [-30, 61], + [16, 60], + [-44, 76], + [50, 71], + [-45, 35], + [-24, 81], + [-120, 20], + [-89, 5], + [-59, 35], + [-70, -16], + [-25, 101], + [-54, 86], + [5, 51], + [-35, 56], + [-130, 14] + ], + [ + [7371, 5871], + [17, -77], + [81, -36], + [68, -11], + [45, -54], + [3, -123], + [55, -93], + [4, -74], + [-27, -39], + [-24, -180], + [-37, -71], + [-28, -106], + [-66, -78], + [3, -38], + [-38, -54], + [-113, 31], + [-30, 20], + [17, 50], + [-51, 51], + [25, 71], + [-52, 35], + [-70, 22], + [-33, -30], + [-49, 30], + [-73, -19], + [-4, -59], + [119, -42], + [-24, -73], + [-65, -19], + [-33, 16], + [-31, -48], + [-147, -63], + [-48, 7], + [-40, -38], + [-34, 2], + [-32, -84], + [-170, 15], + [-28, -27], + [-59, 0], + [-19, -105], + [-50, -43], + [-74, 31], + [-77, -65], + [-30, 18], + [-44, -125], + [-87, -2], + [-49, 13], + [-4, -81], + [-77, -57], + [-77, 65], + [-69, -20], + [-46, -43], + [-158, -12], + [-19, -69], + [-73, -39], + [3, -31], + [-43, -42], + [-30, -113], + [-33, -2], + [-8, 72], + [-65, 60], + [-1, 59], + [-57, -13] + ], + [ + [5050, 4296], + [-4, 40], + [40, 46], + [-67, 91], + [35, 5], + [21, 56], + [64, 0], + [4, -61], + [80, 31], + [72, 91], + [50, -10], + [47, 66], + [-40, 10], + [-39, 70], + [11, 95], + [89, 18], + [25, 35], + [49, -12], + [40, 69], + [94, 12], + [45, 24], + [-28, 86], + [-69, 17], + [-28, 90], + [-143, 54], + [-40, -14] + ], + [ + [4335, 9885], + [84, -18], + [60, -38], + [59, -124], + [-57, 13], + [-58, -15], + [-65, 18], + [-1, 40], + [-75, -1], + [4, 57], + [49, 68] + ], + [ + [2352, 9916], + [-11, -80], + [-48, -13], + [-24, 60], + [83, 33] + ], + [ + [2072, 10126], + [-15, -30], + [47, -106], + [-27, -4], + [-59, 84], + [54, 56] + ], + [ + [2225, 10186], + [46, -52], + [-24, -51], + [-72, 1], + [-68, 29], + [19, 56], + [99, 17] + ], + [ + [2689, 9000], + [-38, 20], + [-66, -9], + [-48, 45], + [-73, 137], + [43, 28], + [75, -14], + [15, 34], + [-49, 96], + [-48, -11], + [-52, 70], + [32, 122], + [-88, 34], + [-52, -29], + [-82, 54], + [80, 80], + [-4, 46], + [118, 16], + [36, -13], + [52, 29], + [79, 90], + [-19, 39], + [-81, -82], + [-72, 16], + [2, 40], + [51, 36], + [6, 100], + [-52, 72], + [-50, 38], + [-62, 143], + [-63, 75], + [-12, 60], + [-64, -3], + [-52, -35], + [-40, -12], + [-31, 37], + [-63, 19], + [16, 57], + [70, 160], + [38, -42], + [-72, -68], + [8, -81], + [82, -43], + [50, 9], + [56, 3], + [42, 37], + [77, -24], + [68, 29], + [32, -32], + [104, 10], + [60, -43], + [80, 2], + [82, -29], + [34, -64], + [49, 8], + [39, 41], + [34, -32], + [134, 44], + [30, -21], + [142, -57], + [47, -48], + [88, 34], + [31, -123], + [32, -39], + [-5, -149], + [-50, -64], + [-105, -52], + [21, -25], + [131, 38], + [94, 12], + [48, -38], + [-4, -87], + [-39, -45], + [28, -27], + [33, 89], + [97, 42], + [49, -13], + [81, -50], + [97, -36], + [66, -71], + [86, 1], + [71, 64], + [65, 36], + [103, -55], + [17, -196], + [-116, -81], + [-53, -63], + [-74, -6], + [-43, -70], + [29, -56], + [76, -13], + [16, -43] + ] + ], + "transform": { + "scale": [0.0011991174479294346, 0.0007349236821249691], + "translate": [5.87205886840826, 47.26985931396496] + }, + "objects": { + "germany": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3]], + "type": "Polygon", + "properties": { + "ID_0": 86, + "ISO": "DE-BW", + "NAME_0": "Germany", + "ID_1": 1, + "NAME_1": "Baden-Württemberg", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[4, 5, -4, 6, 7]], + "type": "Polygon", + "properties": { + "ID_0": 86, + "ISO": "DE-BY", + "NAME_0": "Germany", + "ID_1": 2, + "NAME_1": "Bayern", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Bavaria" + } + }, + { + "arcs": [[8]], + "type": "Polygon", + "properties": { + "ID_0": 86, + "ISO": "DE-BE", + "NAME_0": "Germany", + "ID_1": 3, + "NAME_1": "Berlin", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[9, 10, 11, 12, 13], [-9]], + "type": "Polygon", + "properties": { + "ID_0": 86, + "ISO": "DE-BB", + "NAME_0": "Germany", + "ID_1": 4, + "NAME_1": "Brandenburg", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[14]], [[15, 16]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 86, + "ISO": "DE-HB", + "NAME_0": "Germany", + "ID_1": 5, + "NAME_1": "Bremen", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[17, 18]], + "type": "Polygon", + "properties": { + "ID_0": 86, + "ISO": "DE-HH", + "NAME_0": "Germany", + "ID_1": 6, + "NAME_1": "Hamburg", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[19, -7, -3, 20, 21, 22]], + "type": "Polygon", + "properties": { + "ID_0": 86, + "ISO": "DE-HE", + "NAME_0": "Germany", + "ID_1": 7, + "NAME_1": "Hessen", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Hesse" + } + }, + { + "arcs": [[[-14, 23, 24, 25]], [[26]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 86, + "ISO": "DE-MV", + "NAME_0": "Germany", + "ID_1": 8, + "NAME_1": "Mecklenburg-Vorpommern", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Mecklenburg-West Pomerania" + } + }, + { + "arcs": [[[27]], [[28, -18, 29, -24, -13, 30, 31, -23, 32, 33, -17, 34], [-15]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 86, + "ISO": "DE-NI", + "NAME_0": "Germany", + "ID_1": 9, + "NAME_1": "Niedersachsen", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Lower Saxony" + } + }, + { + "arcs": [[-22, 35, 36, -33]], + "type": "Polygon", + "properties": { + "ID_0": 86, + "ISO": "DE-NW", + "NAME_0": "Germany", + "ID_1": 10, + "NAME_1": "Nordrhein-Westfalen", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "North Rhine-Westphalia" + } + }, + { + "arcs": [[-21, -2, 37, 38, 39, -36]], + "type": "Polygon", + "properties": { + "ID_0": 86, + "ISO": "DE-RP", + "NAME_0": "Germany", + "ID_1": 11, + "NAME_1": "Rheinland-Pfalz", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Rhineland-Palatinate" + } + }, + { + "arcs": [[40, -39]], + "type": "Polygon", + "properties": { + "ID_0": 86, + "ISO": "DE-SL", + "NAME_0": "Germany", + "ID_1": 12, + "NAME_1": "Saarland", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[41, 42, -31, -12]], + "type": "Polygon", + "properties": { + "ID_0": 86, + "ISO": "DE-ST", + "NAME_0": "Germany", + "ID_1": 13, + "NAME_1": "Sachsen-Anhalt", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Saxony-Anhalt" + } + }, + { + "arcs": [[-11, 43, -5, 44, -42]], + "type": "Polygon", + "properties": { + "ID_0": 86, + "ISO": "DE-SN", + "NAME_0": "Germany", + "ID_1": 14, + "NAME_1": "Sachsen", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Saxony" + } + }, + { + "arcs": [[[45]], [[46]], [[47]], [[48]], [[-25, -30, -19, -29, 49]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 86, + "ISO": "DE-SH", + "NAME_0": "Germany", + "ID_1": 15, + "NAME_1": "Schleswig-Holstein", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-45, -8, -20, -32, -43]], + "type": "Polygon", + "properties": { + "ID_0": 86, + "ISO": "DE-TH", + "NAME_0": "Germany", + "ID_1": 16, + "NAME_1": "Thüringen", + "TYPE_1": "Land", + "ENGTYPE_1": "State", + "NL_NAME_1": null, + "VARNAME_1": "Thuringia" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/index.ts new file mode 100644 index 000000000000..356014d5b4b1 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/index.ts @@ -0,0 +1,235 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { keyBy } from 'lodash/fp'; +import { RawMapMetadata } from '../types'; + +// Edit here if you are adding a new map +const mapsInfo: Record> = { + belgium: { + name: 'Belgium', + type: 'topojson', + // @ts-ignore + load: () => import('./belgium-topo.json'), + keyField: 'properties.ISO', + }, + brazil: { + name: 'Brazil', + type: 'topojson', + // @ts-ignore + load: () => import('./brazil-topo.json'), + keyField: 'properties.ISO', + }, + bulgaria: { + name: 'Bulgaria', + type: 'topojson', + // @ts-ignore + load: () => import('./bulgaria-topo.json'), + keyField: 'properties.ISO', + }, + canada: { + name: 'Canada', + type: 'topojson', + // @ts-ignore + load: () => import('./canada-topo.json'), + keyField: 'properties.NAME_1', + }, + china: { + name: 'China', + type: 'topojson', + // @ts-ignore + load: () => import('./china-topo.json'), + keyField: 'properties.NAME_1', + }, + france: { + name: 'France', + type: 'topojson', + // @ts-ignore + load: () => import('./france-topo.json'), + keyField: 'properties.ISO', + }, + germany: { + name: 'Germany', + type: 'topojson', + // @ts-ignore + load: () => import('./germany-topo.json'), + keyField: 'properties.ISO', + }, + india: { + name: 'India', + type: 'topojson', + // @ts-ignore + load: () => import('./india-topo.json'), + keyField: 'properties.ISO', + }, + iran: { + name: 'Iran', + type: 'topojson', + // @ts-ignore + load: () => import('./iran-topo.json'), + keyField: 'properties.ISO', + }, + italy: { + name: 'Italy', + type: 'topojson', + // @ts-ignore + load: () => import('./italy-topo.json'), + keyField: 'properties.ISO', + }, + japan: { + name: 'Japan', + type: 'topojson', + // @ts-ignore + load: () => import('./japan-topo.json'), + keyField: 'properties.ISO', + }, + korea: { + name: 'Korea', + type: 'topojson', + // @ts-ignore + load: () => import('./korea-topo.json'), + keyField: 'properties.ISO', + }, + liechtenstein: { + name: 'Liechtenstein', + type: 'topojson', + // @ts-ignore + load: () => import('./liechtenstein-topo.json'), + keyField: 'properties.ISO', + }, + morocco: { + name: 'Morocco', + type: 'topojson', + // @ts-ignore + load: () => import('./morocco-topo.json'), + keyField: 'properties.ISO', + }, + myanmar: { + name: 'Myanmar', + type: 'topojson', + // @ts-ignore + load: () => import('./myanmar-topo.json'), + keyField: 'properties.ISO', + }, + netherlands: { + name: 'Netherlands', + type: 'topojson', + // @ts-ignore + load: () => import('./netherlands-topo.json'), + keyField: 'properties.ISO', + }, + portugal: { + name: 'Portugal', + type: 'topojson', + // @ts-ignore + load: () => import('./portugal-topo.json'), + keyField: 'properties.ISO', + }, + russia: { + name: 'Russia', + type: 'topojson', + // @ts-ignore + load: () => import('./russia-topo.json'), + keyField: 'properties.ISO', + rotate: [-9, 0, 0], + }, + singapore: { + name: 'Singapore', + type: 'topojson', + // @ts-ignore + load: () => import('./singapore-topo.json'), + keyField: 'properties.ISO', + }, + spain: { + name: 'Spain', + type: 'topojson', + // @ts-ignore + load: () => import('./spain-topo.json'), + keyField: 'properties.ISO', + }, + switzerland: { + name: 'Switzerland', + type: 'topojson', + // @ts-ignore + load: () => import('./switzerland-topo.json'), + keyField: 'properties.ISO', + }, + thailand: { + name: 'Thailand', + type: 'topojson', + // @ts-ignore + load: () => import('./thailand-topo.json'), + keyField: 'properties.NAME_1', + }, + timorleste: { + name: 'Timor-Leste', + type: 'topojson', + // @ts-ignore + load: () => import('./timorleste-topo.json'), + keyField: 'properties.ISO', + }, + uk: { + name: 'United Kingdom', + type: 'topojson', + // @ts-ignore + load: () => import('./uk-topo.json'), + keyField: 'properties.ISO', + }, + ukraine: { + name: 'Ukraine', + type: 'topojson', + // @ts-ignore + load: () => import('./ukraine-topo.json'), + keyField: 'properties.NAME_1', + }, + usa: { + name: 'USA', + type: 'topojson', + // @ts-ignore + load: () => import('./usa-topo.json'), + keyField: 'properties.STATE', + projection: 'Albers', + }, + world: { + name: 'World Map', + type: 'topojson', + // @ts-ignore + load: () => import('./world-topo.json'), + keyField: 'id', + projection: 'Equirectangular', + rotate: [-9, 0, 0], + }, + zambia: { + name: 'Zambia', + type: 'topojson', + // @ts-ignore + load: () => import('./zambia-topo.json'), + keyField: 'properties.name', + }, +}; + +/** List of available maps */ +export const maps: RawMapMetadata[] = Object.entries(mapsInfo).map( + ([key, metadata]) => + // eslint-disable-next-line @typescript-eslint/consistent-type-assertions + ({ ...metadata, key } as RawMapMetadata), +); + +/** All maps indexed by map key */ +export const mapsLookup = keyBy((m: RawMapMetadata) => m.key)(maps); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/india-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/india-topo.json new file mode 100644 index 000000000000..08c94f310160 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/india-topo.json @@ -0,0 +1,15073 @@ +{ + "type": "Topology", + "arcs": [ + [ + [56424, 1124], + [49, -57], + [46, -219], + [-8, -80], + [64, -88], + [44, -199], + [-43, -41], + [-44, -98], + [-8, -128], + [33, -20], + [-27, -77], + [-95, 24], + [-13, -82], + [-41, -59], + [-48, 19], + [15, 105], + [-61, 65], + [-13, 105], + [-83, 101], + [7, 85], + [-101, 115], + [-64, 3], + [-32, 262], + [44, 32], + [-2, 84], + [25, 31], + [104, -6], + [47, 56], + [116, 8], + [2, 32], + [87, 27] + ], + [ + [56127, 1594], + [26, -107], + [70, -53], + [-70, -149], + [-100, -59], + [-68, -97], + [-43, 60], + [-5, 86], + [21, 36], + [-11, 93], + [68, 45], + [100, 30], + [12, 115] + ], + [ + [55395, 2937], + [65, -41], + [-15, -75], + [125, -85], + [32, -97], + [-169, 14], + [-38, -44], + [-78, 44], + [7, 55], + [-65, 40], + [-17, 44], + [57, 116], + [40, -10], + [56, 39] + ], + [ + [55763, 2945], + [36, -8], + [42, -76], + [-20, -145], + [-146, 130], + [88, 99] + ], + [ + [55717, 3415], + [39, -15], + [1, -66], + [-89, -120], + [97, -130], + [10, -50], + [-63, -34], + [-19, 74], + [-71, -15], + [-54, 109], + [-8, 118], + [78, 54], + [9, 55], + [70, 20] + ], + [ + [54837, 3703], + [38, -22], + [-38, -160], + [61, -79], + [88, -42], + [3, -74], + [-159, 65], + [-83, 122], + [22, 154], + [68, 36] + ], + [ + [55914, 4206], + [15, -102], + [26, -11], + [17, -132], + [-35, -1], + [-4, 111], + [-32, 68], + [13, 67] + ], + [ + [54093, 5757], + [69, -72], + [28, -115], + [-46, -91], + [-175, 1], + [-26, 50], + [2, 156], + [98, 3], + [50, 68] + ], + [ + [53495, 9579], + [93, -79], + [7, -119], + [58, -58], + [-11, -102], + [32, -138], + [-98, -104], + [-18, -103], + [52, -40], + [-81, -133], + [-71, -17], + [-142, 86], + [-72, -39], + [-39, 29], + [56, 91], + [24, 72], + [-27, 79], + [-60, 41], + [3, 123], + [-14, 143], + [82, 17], + [39, 76], + [58, 42], + [3, 53], + [126, 80] + ], + [ + [53771, 10995], + [59, -45], + [37, -132], + [-46, -89], + [58, -58], + [-115, -54], + [-86, 1], + [-40, 46], + [15, 80], + [76, 7], + [3, 84], + [-28, 41], + [11, 62], + [56, 57] + ], + [ + [52842, 11185], + [112, -17], + [10, -115], + [-53, -21], + [-74, 7], + [-19, 43], + [24, 103] + ], + [ + [53547, 11211], + [59, -26], + [-29, -70], + [-35, -1], + [5, 97] + ], + [ + [54605, 11766], + [93, 3], + [-29, -75], + [-64, 72] + ], + [ + [54492, 12206], + [75, -11], + [11, -72], + [64, -117], + [36, -118], + [-69, 11], + [-62, 94], + [-46, 17], + [-28, 71], + [-59, 12], + [-7, 48], + [85, 65] + ], + [ + [54540, 12380], + [27, -9], + [-11, -136], + [-81, 60], + [-4, 81], + [69, 4] + ], + [ + [54620, 12491], + [17, -137], + [-161, 58], + [3, 65], + [65, -23], + [76, 37] + ], + [ + [54710, 12617], + [37, -38], + [19, -108], + [-4, -96], + [-49, -45], + [-71, 109], + [68, 178] + ], + [ + [53901, 12673], + [33, -156], + [46, 32], + [42, -64], + [-45, -152], + [89, -134], + [-31, -23], + [-10, -75], + [-69, -33], + [-21, -54], + [34, -119], + [33, 76], + [67, 15], + [23, -30], + [-19, -77], + [18, -48], + [-71, -356], + [-116, -59], + [31, -60], + [88, -1], + [-7, -130], + [-50, -119], + [-5, -93], + [-141, -26], + [-39, 40], + [10, 65], + [-95, 99], + [2, 92], + [-29, 71], + [9, 57], + [-26, 63], + [-77, 10], + [8, 118], + [-23, 128], + [-46, -4], + [-24, 51], + [28, 108], + [86, 112], + [28, -37], + [17, -90], + [55, -40], + [-11, 121], + [15, 192], + [28, 128], + [-4, 95], + [48, 176], + [96, 130], + [25, 1] + ], + [ + [53967, 12689], + [70, -31], + [3, -109], + [-89, 16], + [16, 124] + ], + [ + [54068, 12845], + [72, 6], + [45, -29], + [88, 2], + [39, -98], + [-62, -27], + [28, -47], + [-162, -273], + [-12, -60], + [-62, -45], + [-56, 83], + [57, 179], + [7, 118], + [-57, 42], + [86, 91], + [-11, 58] + ], + [ + [56406, 12870], + [72, -123], + [18, -72], + [-119, 19], + [-26, 94], + [55, 82] + ], + [ + [54337, 14245], + [22, -75], + [43, 0], + [56, -175], + [-43, -60], + [56, -62], + [37, -85], + [-25, -86], + [-20, -168], + [42, -153], + [-56, -179], + [-58, -66], + [-100, -42], + [-107, 25], + [19, -71], + [79, -103], + [28, -70], + [-119, -48], + [-51, 29], + [-82, 7], + [-53, -41], + [-63, 2], + [-41, 83], + [-6, 194], + [23, 163], + [-31, 54], + [32, 97], + [-4, 84], + [18, 100], + [64, 81], + [-6, 123], + [-45, 147], + [7, 92], + [30, 4], + [119, 140], + [71, 12], + [8, -22], + [13, -1], + [13, 14], + [7, -13], + [-6, -17], + [3, -7], + [7, -1], + [66, 16], + [53, 78] + ], + [ + [53890, 14421], + [52, -29], + [5, -210], + [-15, -59], + [-55, -66], + [-39, -93], + [-50, 154], + [34, 46], + [12, 164], + [56, 93] + ], + [ + [54624, 15765], + [31, -157], + [-23, -110], + [7, -91], + [32, -29], + [26, -104], + [36, -45], + [-16, -43], + [-70, 1], + [-27, 51], + [-53, 19], + [-58, -67], + [80, -40], + [72, -111], + [22, -61], + [-53, -126], + [11, -91], + [-15, -162], + [-53, -88], + [-77, -3], + [-23, -34], + [-98, 91], + [-28, -74], + [9, -88], + [-55, -2], + [-12, -86], + [-44, -27], + [33, -120], + [-32, -8], + [-36, -4], + [6, 19], + [-1, 13], + [-92, 22], + [-24, 258], + [13, 179], + [51, 27], + [-22, 120], + [48, 140], + [42, 61], + [-62, 86], + [30, 207], + [36, 47], + [-16, 50], + [59, 16], + [10, 137], + [59, 52], + [57, 10], + [-24, 81], + [102, 18], + [62, 50], + [49, -38], + [31, 54] + ], + [ + [54594, 16003], + [-2, -74], + [-63, -3], + [-10, 52], + [75, 25] + ], + [ + [20498, 21193], + [11, 52], + [3, 33], + [-2, 13], + [-13, 10], + [-8, 12], + [0, 14], + [10, 54], + [-18, 8], + [-24, 58], + [19, 54], + [8, 44], + [-36, 98], + [-7, 99], + [11, 47], + [14, 19], + [0, 19], + [-3, 26], + [4, 15], + [-17, 85], + [30, 42], + [26, 7], + [14, 0], + [11, -2], + [89, 64], + [34, -27], + [17, 22], + [6, 21], + [0, 17], + [-9, 20], + [-5, 17], + [-109, 58], + [-35, 40], + [-20, 0], + [-63, 17], + [-44, -5], + [-51, -2], + [-23, -22], + [-12, -5], + [-23, -1], + [-85, 40], + [-45, -7], + [-21, 7], + [-23, 20], + [-56, 13], + [-49, 21], + [-15, 17], + [-7, 17], + [-12, 12], + [-11, 16], + [-28, 88], + [160, 30], + [12, -1], + [30, 3], + [10, 8], + [8, -5], + [14, 0], + [18, 2], + [6, 42], + [9, 9], + [13, 11], + [5, 2], + [43, 10], + [25, -5], + [7, 9], + [12, 110], + [35, 37], + [14, 2], + [29, -3], + [9, 6], + [8, 2], + [0, 6], + [-12, 12], + [4, 8], + [8, -1], + [1, 5], + [-2, 17], + [-21, 6], + [38, 84], + [-4, 7], + [-18, 5], + [-14, -9], + [-14, -14], + [-10, -7], + [-12, 1], + [-12, 3], + [-36, 58], + [45, 9], + [20, 17], + [41, 10], + [6, 43], + [0, 13], + [2, 14], + [-4, 8], + [-13, 3], + [-10, -6], + [-17, 7], + [-7, 0], + [-18, -14], + [-9, 3], + [-7, 6], + [-10, 0], + [-4, 7], + [30, 112], + [66, 31], + [9, 6], + [1, 14], + [0, 26], + [-13, 10], + [-7, 9], + [-13, 44], + [8, 47], + [-15, 151], + [31, 18], + [-9, 28], + [5, 13], + [-3, 12], + [-1, 29], + [33, 36], + [2, 16], + [-3, 35], + [10, 20], + [36, 20], + [-81, 223], + [-190, 79], + [-2, 25], + [-19, 6], + [-15, 23], + [45, 135], + [163, 130], + [-45, 28], + [8, 20], + [6, 2], + [20, 40], + [15, 69], + [-7, 9], + [-7, 3], + [0, 30], + [4, 17], + [61, -2], + [-9, -3], + [-7, -12], + [5, -9], + [18, -11], + [36, -1], + [24, 12], + [24, 7], + [1, 56], + [27, 29], + [-15, 16], + [-35, 16], + [-2, 34], + [29, 21], + [23, 10], + [33, -14], + [20, 1], + [33, -13], + [1, 57], + [38, -14], + [12, -13], + [19, 1], + [13, 3], + [2, 20], + [-1, 39], + [82, 26], + [37, -11], + [42, -8], + [1, 29], + [7, 30], + [-48, 27], + [-10, 11], + [-11, 15], + [-24, -6], + [-27, 10], + [-26, -2], + [-65, 24], + [1, 38], + [-15, 22], + [-82, -21], + [-46, 55], + [-29, -37], + [-10, -19], + [-17, -19], + [-11, 6], + [-15, 53], + [-35, -3], + [-11, 7], + [-9, 15], + [-8, 6], + [-47, 10], + [24, 118], + [-11, 58], + [12, 70], + [-2, 8], + [16, 18], + [36, 5], + [10, 4], + [5, 9], + [8, -7], + [11, 7], + [10, 21], + [100, 22], + [27, 21], + [6, 15], + [16, 14], + [9, 39], + [-25, -6], + [-39, 21], + [-5, 10], + [-15, 4], + [-10, 7], + [-30, 1], + [-11, 6], + [6, 24], + [8, 20], + [16, 14], + [17, 9], + [0, 35], + [39, -1], + [13, -19], + [11, 29], + [10, 19], + [10, 7], + [-3, 17], + [8, 1], + [3, 38], + [12, 16], + [11, -4], + [8, 11], + [25, -14], + [-1, 22], + [-20, 44], + [4, 23], + [33, -11], + [10, 4], + [26, -6], + [6, 25], + [1, 38], + [-6, 19], + [7, 14], + [19, 10], + [34, -5], + [7, 16], + [-7, 22], + [20, 15], + [-102, 112], + [-118, 39], + [-16, 44], + [3, 23], + [21, -3], + [8, 20], + [15, 12], + [22, 2], + [28, 7], + [16, 10], + [7, 35], + [-8, 50], + [-7, 15], + [9, 56], + [-40, 24], + [-16, 39], + [-5, 23], + [-13, 2], + [0, 24], + [23, -1], + [23, 39], + [-9, 14], + [-18, 41], + [19, 36], + [48, 51], + [-43, 11], + [-20, 9], + [0, 6], + [-9, 2], + [-21, -17], + [-24, 19], + [11, 16], + [33, 23], + [-37, 54], + [-24, 6], + [-33, 12], + [-13, 59], + [44, 47], + [17, 6], + [13, 70], + [-24, 6], + [-20, 2], + [2, 5], + [-22, 9], + [6, 30], + [69, -12], + [50, 18], + [-27, 55], + [13, 39], + [32, -6], + [5, -17], + [17, 1], + [6, 26], + [-2, 14], + [-19, 6], + [-17, 21], + [24, 103], + [30, 0], + [5, -12], + [6, 1], + [1, 13], + [28, 5], + [25, 7], + [18, -3], + [8, -6], + [-6, -20], + [-9, -11], + [27, -21], + [120, 63], + [34, -7], + [43, 87], + [-39, 124], + [0, 6], + [1, 6], + [2, 17], + [5, 1], + [0, 15], + [-11, 4], + [10, 28], + [26, 18], + [11, 14], + [1, 18], + [17, 22], + [14, 2], + [10, -15], + [1, -26], + [38, -15], + [0, 24], + [35, 50], + [1, 31], + [45, 91], + [31, 90], + [48, 15], + [106, 36], + [77, -17], + [4, 46], + [-99, 59], + [-1, 37], + [-24, 3], + [-12, 26], + [-2, 28], + [-27, 4], + [-28, -9], + [-35, 12], + [8, 44], + [10, 2], + [11, 48], + [-51, -4], + [-7, -11], + [-32, 9], + [5, 23], + [-5, 1], + [9, 52], + [-66, 4], + [-43, -6], + [-22, 109], + [8, 52], + [-3, 19], + [4, 6], + [21, -13], + [15, -5], + [12, 2], + [17, -10], + [8, -1], + [6, 2], + [-8, 46], + [17, 31], + [-3, 33], + [6, 7], + [6, 4], + [21, 0], + [16, -16], + [7, -11], + [7, -16], + [11, 4], + [18, 0], + [5, 22], + [2, 42], + [-14, 11], + [-11, 32], + [34, 52], + [-1, 9], + [3, 7], + [0, 12], + [6, 22], + [12, 9], + [-30, 17], + [4, 20], + [14, 18], + [-1, 12], + [13, 20], + [7, 18], + [2, 18], + [12, 28], + [-1, 21], + [38, 11], + [16, -7], + [18, -2], + [12, 26], + [-11, 22], + [-56, 7], + [-29, 10], + [-2, 8], + [3, 18], + [-3, 15], + [22, 9], + [9, 7], + [28, 8], + [12, 20], + [42, -7], + [30, 32], + [24, 9], + [8, 16], + [18, -3], + [30, -22], + [9, -10], + [23, -15], + [19, -28], + [22, -7], + [35, -11], + [15, -11], + [19, -41], + [41, -18], + [5, -54], + [7, -13], + [14, -5], + [39, 16], + [15, 19], + [29, -12], + [9, -10], + [60, 2], + [28, -16], + [23, -21], + [44, 14], + [30, 12], + [-1, 87], + [31, 122], + [-22, 16], + [-11, 15], + [-6, 18], + [18, 98], + [81, 89], + [47, -11], + [14, 2], + [21, 23], + [11, 18], + [14, 14], + [20, -2], + [20, -10], + [13, 0], + [26, 18], + [6, 22], + [1, 31], + [-5, 16], + [-14, 17], + [-9, 24], + [-10, 77], + [3, 49], + [33, 31], + [2, 15], + [-5, 19], + [2, 41], + [-26, 44], + [-14, 48], + [-11, 24], + [-33, 13], + [-6, 7], + [8, 16], + [27, 45], + [66, 2], + [65, 53], + [-2, 25], + [2, 24], + [17, 7], + [17, 38], + [15, 63], + [-2, 31], + [-14, 26], + [-19, 10], + [-28, 8], + [0, 59], + [-79, 15], + [-20, 9], + [36, 146], + [20, 6], + [20, 2], + [14, -14], + [-1, -14], + [-17, -11], + [-8, -10], + [5, -10], + [24, -17], + [23, -4], + [42, 3], + [40, -9], + [2, -12], + [-2, -24], + [4, -18], + [0, -7], + [7, -15], + [19, -23], + [25, -15], + [43, -15], + [79, -16], + [26, 0], + [17, -21], + [12, -20], + [10, -13], + [21, -1], + [13, 20], + [6, 30], + [15, 13], + [16, 4], + [204, -30], + [64, -16], + [84, -27], + [21, 0], + [13, -10], + [32, -43], + [18, 5], + [16, 9], + [14, 15], + [102, -2], + [27, -23], + [14, -20], + [9, -5], + [21, 6], + [18, 0], + [29, 4], + [13, -7], + [3, -2], + [17, -47], + [8, -16], + [1, -26], + [9, -32], + [4, -21], + [0, -40], + [-9, -25], + [-1, -29], + [42, 1], + [29, -3], + [54, 29], + [85, -10], + [16, -11], + [16, -22], + [-2, -23], + [-11, -51], + [39, -75], + [-6, -11], + [89, -93], + [45, 12], + [28, 0], + [19, -15], + [7, -17], + [23, -6], + [64, -2], + [4, -35], + [78, -27], + [36, -36], + [27, -41], + [19, -16], + [25, -5], + [59, 120], + [17, 15], + [18, 9], + [11, 14], + [29, 117], + [-3, 22], + [-11, 15], + [-13, 14], + [-1, 23], + [15, 7], + [25, -3], + [83, -34], + [26, -15], + [10, -19], + [10, -38], + [59, 19], + [160, -93], + [36, 4], + [25, -4], + [37, -33], + [15, -23], + [12, -27], + [94, 47], + [6, 10], + [0, 34], + [-3, 9], + [1, 3], + [24, 9], + [37, 6], + [5, -34], + [6, -18], + [10, -14], + [29, -21], + [17, -10], + [21, -8], + [19, -3], + [14, 4], + [7, 10], + [45, 132], + [40, 23], + [84, 4], + [39, 10], + [21, 1], + [17, 4], + [37, 31], + [23, 15], + [31, -2], + [51, -10], + [17, -10], + [2, -9], + [16, -22], + [51, -26], + [25, -74], + [62, -46], + [17, -8], + [14, -20], + [17, -10], + [53, -9], + [20, -10], + [14, -16], + [13, -18], + [21, -20], + [9, -5], + [7, -5], + [10, -13], + [3, -19], + [-1, -23], + [60, -92], + [-1, -22], + [-4, -22], + [-8, -17], + [-1, -32], + [-5, -23], + [-16, -38], + [0, -23], + [14, -42], + [-4, -20], + [-28, -20], + [-8, -11], + [-30, -58], + [-25, -76], + [5, -53], + [44, -64], + [1, -12], + [-5, -14], + [-32, -8], + [-9, -9], + [-36, -35], + [-76, -45], + [-29, -43], + [7, -102], + [65, -33], + [56, 4], + [21, -11], + [16, -30], + [3, -18], + [-4, -60], + [-3, -49], + [21, -85], + [-4, -182], + [-12, -33], + [-18, -17], + [-69, -15], + [49, -78], + [35, -30], + [176, -40], + [75, -106], + [79, -43], + [5, -4], + [5, -7], + [30, -30], + [14, -17], + [9, -3], + [11, -1], + [12, 13], + [34, 13], + [12, -2], + [14, 17], + [21, 6], + [14, -13], + [6, -24], + [18, -10], + [30, 0], + [11, 30], + [17, 20], + [13, 7], + [15, 2], + [24, -12], + [47, 12], + [45, 39], + [8, -11], + [15, -6], + [41, -58], + [7, -15], + [18, -62], + [16, -37], + [9, -34], + [27, -58], + [11, -14], + [5, -5], + [7, -4], + [15, 4], + [9, 6], + [31, 32], + [32, -26], + [151, 76], + [84, 1], + [21, -21], + [28, -5], + [7, -6], + [3, -13], + [6, -9], + [9, -6], + [14, -17], + [1, -2], + [1, -7], + [2, -2], + [4, -6], + [152, -95], + [69, -61], + [40, -107], + [26, -15], + [8, -8], + [8, -3], + [24, -18], + [5, -20], + [20, -10], + [7, -14], + [-6, -13], + [-3, -22], + [48, -31], + [10, 8], + [2, 1], + [23, -14], + [-29, -38], + [0, -4], + [1, -6], + [5, -8], + [9, -8], + [4, -9], + [-4, -25], + [136, -273], + [-61, -32], + [-51, -24], + [-3, -31], + [1, -26], + [4, -52], + [23, -16], + [20, -2], + [19, -2], + [78, 7], + [45, 60], + [12, 96], + [34, -13], + [43, -5], + [6, -10], + [13, -33], + [-1, -9], + [-3, -6], + [-10, -5], + [-27, 4], + [29, -156], + [85, 4], + [25, 9], + [44, 25], + [8, 7], + [2, 6], + [16, 5], + [13, 16], + [9, 7], + [43, 3], + [1, -23], + [2, -15], + [-5, -19], + [-11, -13], + [-40, -34], + [-4, -15], + [5, -30], + [-4, -29], + [39, -111], + [41, -278], + [16, -9], + [6, -12], + [16, -114], + [3, -36], + [3, -25], + [18, -50], + [43, -62], + [28, -14], + [24, -2], + [39, 8], + [13, 20], + [17, 19], + [4, 18], + [19, 14], + [136, 82], + [37, -8], + [34, -5], + [47, -32], + [16, -9], + [16, -7], + [58, -33], + [97, -5], + [37, 6], + [44, -3], + [21, 1], + [28, -3], + [22, -5], + [15, -6], + [22, -5], + [22, 11], + [19, -6], + [14, -1], + [134, 42], + [24, -47], + [160, 31], + [23, 22], + [23, 4], + [55, -28], + [25, 0], + [10, 15], + [18, 6], + [16, 14], + [12, 13], + [13, 7], + [45, 87], + [55, 18], + [22, -21], + [11, -33], + [51, 30], + [70, 44] + ], + [ + [29840, 25753], + [80, -114], + [-91, -59], + [-52, 2], + [-120, -121], + [-114, -10], + [-110, -102], + [-4, -71], + [-150, -226], + [46, -40], + [-49, -77], + [-18, -210], + [-114, -155], + [-57, -46], + [-67, -15], + [-138, 79], + [-73, -120], + [-48, -40], + [-170, 17], + [-40, -51], + [-20, -168], + [-38, -3], + [-224, -62], + [-38, -42], + [-91, -16], + [-119, 59], + [-56, -9], + [17, -128], + [-94, 1], + [-34, -81], + [20, -36], + [-11, -104], + [-79, -30], + [-306, 72], + [-119, 95], + [-153, 65], + [-24, -33], + [-116, -52], + [-26, -104], + [-85, -91], + [-56, 18], + [-56, 122], + [-62, -48], + [48, -99], + [-62, -100], + [180, -59], + [76, -55], + [31, 62], + [65, -27], + [24, 32], + [116, -55], + [5, -122], + [-48, -11], + [-22, -102], + [68, -42], + [26, -50], + [-76, -52], + [-161, 31], + [-73, 32], + [-9, 59], + [-74, 62], + [-101, -72], + [-31, 101], + [-87, 37], + [-39, 197], + [-86, 126], + [-47, -18], + [-51, 39], + [-49, -3], + [-29, 62], + [-106, -138], + [-62, -9], + [-48, -42], + [-84, 5], + [-19, -67], + [-61, -68], + [-39, -101], + [91, -25], + [19, -61], + [61, -29], + [-47, -158], + [-124, -122], + [-41, -76], + [-67, -63], + [-42, -4], + [-72, 44], + [-64, 112], + [-113, -18], + [-78, 90], + [-53, -21], + [-61, -64], + [-88, -5], + [-77, -66], + [-106, 3], + [-56, -45], + [-83, -28], + [-86, -2], + [-103, -50], + [-53, -61], + [-178, -7], + [-175, -42], + [-78, -98], + [-14, -62], + [27, -78], + [-38, -47], + [-17, -174], + [36, -60], + [-6, -201], + [-106, -76], + [-118, 48], + [-226, 15], + [-247, -123], + [-5, -61], + [36, -99], + [-46, -56], + [-63, 29], + [-35, 112], + [-54, -16], + [10, -149], + [-63, -95], + [-72, -53], + [-80, -5], + [-115, 44], + [-110, 118], + [-72, 12], + [-98, -93], + [-238, 57], + [-100, 0], + [-78, -49], + [-65, -16], + [-53, -55], + [-106, 13], + [-37, -21], + [19, -71], + [-37, -134], + [-139, -84], + [-33, -119], + [-86, 0], + [-54, -49], + [-83, 38], + [-52, 124], + [-50, -7], + [-33, -83], + [-64, 35], + [-98, 5], + [-89, 45], + [-71, -46], + [-124, -25], + [-183, 50], + [-71, -30], + [-97, 22], + [-73, 66], + [-40, -11], + [-36, 12], + [-51, 3], + [-37, 6], + [-49, 11] + ], + [ + [26302, 15870], + [41, -66], + [-36, -90], + [-52, 63], + [47, 93] + ], + [ + [31102, 23052], + [16, -91], + [-45, -77], + [0, -82], + [-47, -9], + [-33, 68], + [-58, 26], + [6, 84], + [127, 34], + [34, 47] + ], + [ + [29840, 25753], + [39, 27], + [14, 11], + [8, 9], + [33, 52], + [42, 22], + [29, 13], + [30, -1], + [196, 77], + [145, 91], + [6, 25], + [-7, 24], + [11, 11], + [23, 13], + [17, 7], + [77, -30], + [28, 48], + [44, -30], + [34, 3], + [47, -13], + [7, -30], + [33, 11], + [28, 8], + [8, -5], + [21, -37], + [8, -11], + [-6, -12], + [7, -12], + [17, -7], + [13, 3], + [13, 0], + [47, -34], + [10, -3], + [17, 2], + [14, -4], + [3, -18], + [7, -10], + [26, 1], + [17, 5], + [14, 9], + [7, 27], + [0, 29], + [-4, 22], + [-6, 13], + [-17, 21], + [65, 60], + [36, -49], + [39, 25], + [9, -9], + [-3, -9], + [11, -5], + [14, 16], + [2, 4], + [13, 44], + [0, 33], + [-24, 27], + [1, 30], + [-5, 28], + [11, 19], + [-4, 35], + [34, 45], + [-85, 29], + [-9, 49], + [30, 13], + [29, 34], + [-6, 36], + [3, 35], + [5, 13], + [7, 32], + [15, 13], + [51, -2], + [11, 7], + [22, 24], + [7, 11], + [5, 27], + [12, 13], + [-10, 11], + [-9, 18], + [-8, 1], + [-34, -7], + [-16, -19], + [-33, -2], + [-19, 23], + [24, 11], + [33, 50], + [20, 16], + [15, 7], + [11, 31], + [7, 5], + [0, 8], + [-20, 24], + [-1, 23], + [-5, 12], + [-14, 12], + [-11, 15], + [11, 8], + [2, 9], + [10, 7], + [13, 4], + [44, 69], + [32, 30], + [18, 12], + [15, 17], + [22, 47], + [28, 32], + [8, 13], + [45, 46], + [17, 4], + [8, -11], + [-7, -3], + [-9, -2], + [-5, -5], + [13, -33], + [91, -26], + [3, -33], + [-10, -6], + [0, -5], + [-1, -6], + [11, 1], + [7, -12], + [-14, -12], + [14, -10], + [-13, -15], + [-9, -5], + [-3, -8], + [15, -24], + [8, 4], + [6, -10], + [-1, -6], + [3, -14], + [6, -1], + [6, 6], + [7, 4], + [-1, 11], + [13, -4], + [7, 1], + [6, -7], + [8, -2], + [-6, -9], + [-2, -17], + [-9, -6], + [-2, -16], + [-12, 0], + [-5, -11], + [-4, -9], + [-1, -44], + [46, -2], + [98, -52], + [-9, -58], + [2, -17], + [6, -7], + [8, -24], + [-32, -2], + [-14, -18], + [-11, -5], + [-4, -6], + [8, -13], + [3, 0], + [3, -1], + [11, 3], + [7, -23], + [-1, -10], + [-10, -16], + [6, -13], + [-9, -5], + [-8, -7], + [5, -8], + [5, -1], + [4, -1], + [3, -8], + [1, -13], + [20, -5], + [6, -6], + [19, -6], + [5, -6], + [-2, -6], + [6, -11], + [6, -3], + [9, -4], + [14, -17], + [11, -1], + [12, 15], + [18, 13], + [5, 10], + [-6, 28], + [44, 78], + [37, 5], + [19, 10], + [7, 0], + [10, -2], + [152, 80], + [9, 20], + [28, 34], + [-14, 38], + [21, 45], + [-24, 68], + [50, 46], + [43, -14], + [66, -43], + [16, -9], + [15, -7], + [16, -4], + [20, 19], + [12, -4], + [14, -33], + [0, -14], + [26, -84], + [12, 8], + [8, -5], + [7, -2], + [11, 7], + [17, 3], + [11, -22], + [96, 8], + [4, 14], + [6, 12], + [11, 0], + [4, 8], + [9, 13], + [43, 7], + [13, 15], + [14, -19], + [18, -7], + [11, -8], + [6, 0], + [30, 12], + [6, 5], + [23, 35], + [-16, 15], + [-9, 21], + [-28, 24], + [-11, 38], + [-28, 4], + [-15, 9], + [-5, 9], + [2, 8], + [23, 21], + [16, 9], + [6, 6], + [33, 33], + [80, 128], + [2, 11], + [-5, 8], + [-34, 3], + [-31, -18], + [-7, 0], + [-7, 0], + [-95, 124], + [27, 39], + [2, 12], + [-8, 30], + [-6, 7], + [-7, 3], + [-5, 9], + [1, 11], + [4, 6], + [24, 13], + [30, 7], + [33, 15], + [11, 30], + [32, 51], + [-2, 6], + [-1, 5], + [19, 27], + [22, 16], + [40, 60], + [23, 22], + [2, 6], + [-12, 18], + [8, 9], + [38, 24], + [78, -31], + [12, -6], + [7, -5], + [8, -14], + [10, -10], + [15, -5], + [21, 1], + [4, -5], + [-3, -9], + [1, -9], + [8, -8], + [37, 44], + [-2, 9], + [-10, 16], + [-1, 11], + [5, 5], + [4, 0], + [3, 1], + [38, -17], + [12, -2], + [22, 2], + [24, -4], + [12, 14], + [-1, 10], + [-4, 8], + [1, 10], + [12, 24], + [9, 9], + [177, 41], + [-21, 33], + [26, 25], + [24, -26], + [7, 2], + [15, 10], + [8, -1], + [21, 11], + [5, 7], + [-3, 36], + [21, 10], + [9, 8], + [1, 6], + [-12, 13], + [-3, 2], + [-6, 2], + [-16, 3], + [-15, 7], + [-88, 115], + [30, 75], + [-105, 31], + [-13, 38], + [-7, 9], + [2, 6], + [6, 3], + [19, -1], + [28, -6], + [2, 21], + [1, 3], + [4, 3], + [5, 16], + [60, -27], + [12, -3], + [21, 3], + [26, 12], + [9, -2], + [7, -8], + [11, 1], + [2, -2], + [5, -5], + [5, 4], + [5, 3], + [4, -8], + [1, -9], + [-5, -21], + [13, -4], + [61, -70], + [28, -5], + [15, 31], + [-26, 54], + [-4, 40], + [4, 5], + [18, 1], + [20, -8], + [9, 0], + [6, 3], + [5, 9], + [-4, 17], + [7, 23], + [-2, 10], + [-26, 24], + [-6, 18], + [1, 20], + [-14, 8], + [6, 32], + [39, 13], + [34, -47], + [8, 1], + [9, 15], + [5, 6], + [6, 0], + [12, -38], + [-2, -19], + [0, -9], + [8, -26], + [-40, -32], + [79, -13], + [8, 54], + [2, 4], + [15, 15], + [11, 19], + [10, 5], + [-2, 7], + [-14, 27], + [35, 10], + [-1, -5], + [-7, -10], + [1, -19], + [21, 2], + [25, -6], + [5, 12], + [2, 18], + [1, 30], + [39, 21], + [10, 8], + [0, 10], + [-17, 29], + [-5, 12], + [0, 23], + [54, 50], + [56, -66], + [27, -89], + [6, -12], + [7, -8], + [9, -4], + [21, -28], + [18, -20], + [21, -52], + [13, -14], + [13, -69], + [6, -4], + [6, 3], + [12, -6], + [21, -16], + [2, -22], + [20, -62], + [21, -48], + [22, -4], + [34, -35], + [13, 7], + [6, 7], + [-6, 27], + [-35, 59], + [-24, -1], + [-21, 92], + [104, 55], + [103, -228], + [6, -2], + [5, -10], + [5, -37], + [3, -85], + [45, -28], + [6, -36], + [7, -12], + [8, -2], + [21, 5], + [3, -4], + [1, -18], + [4, -11], + [19, 22], + [27, 3], + [57, -22], + [13, -24], + [9, 0], + [11, 2], + [15, 13], + [59, -7], + [55, 10], + [27, -15], + [6, 2], + [3, 6], + [7, 2], + [16, -27], + [10, -7], + [20, -9], + [4, -14], + [-4, -7], + [3, -8], + [20, -6], + [5, -13], + [11, -25], + [57, -15], + [95, 50], + [12, 2], + [17, 9], + [7, 9], + [18, -1], + [17, -12], + [28, -2], + [81, 42], + [17, -7], + [6, 7], + [8, -4], + [1, -13], + [33, -15], + [28, 3], + [12, 13], + [8, 0], + [11, 5], + [5, 11], + [7, 5], + [12, 3], + [36, -21], + [15, 0], + [4, -8], + [8, 2], + [1, 7], + [6, 9], + [25, 8], + [11, 6], + [3, 7], + [-9, 32], + [32, 7], + [1, 48], + [-14, 8], + [-5, 12], + [-4, 24], + [0, 14], + [1, 14], + [3, 7], + [9, -2], + [10, -8], + [6, -6], + [9, -21], + [24, 0], + [16, 19], + [4, 10], + [1, 9], + [-27, 11], + [-12, 7], + [-5, 6], + [7, 12], + [62, -31], + [7, 31], + [52, 18], + [43, 53], + [-21, 37], + [-6, 9], + [-4, 10], + [11, 27], + [31, 32], + [7, 5], + [6, 3], + [-13, 23], + [-18, 17], + [-2, 12], + [2, 6], + [-2, 8], + [10, 13], + [49, -29], + [23, -12], + [20, -5], + [9, 25], + [-1, 10], + [5, 27], + [10, 5], + [16, 25], + [45, 38], + [38, 3], + [9, 13], + [8, 3], + [28, 1], + [13, 3], + [13, 28], + [14, 13], + [4, -4], + [2, -6], + [4, -1], + [13, 10], + [4, -6], + [-7, -56], + [-3, -6], + [10, -38], + [21, -13], + [20, 15], + [8, 31], + [16, 29], + [10, 10], + [-2, 9], + [3, 3], + [23, 1], + [15, -14], + [15, 18], + [24, -3], + [15, -8], + [10, 26], + [9, 2], + [3, 4], + [-11, 11], + [-12, 23], + [-12, 7], + [-9, 1], + [-22, -13], + [-7, -14], + [-26, 9], + [-7, 20], + [1, 11], + [-5, 5], + [-11, -3], + [-15, 13], + [-15, 43], + [-9, 14], + [6, 5], + [33, -14], + [113, 10], + [9, 81], + [91, -30], + [-20, -81], + [140, -86], + [-160, -227], + [-162, -164], + [-56, -69], + [-76, -177], + [-142, -131], + [-108, -137], + [0, -37], + [-171, -175], + [-15, -73], + [-155, -128], + [-147, -138], + [-145, -151], + [-61, -111], + [10, -33], + [-132, -88], + [-262, -137], + [-142, -49], + [-51, -46], + [-172, -66], + [-156, -84], + [-315, -223], + [-25, -71], + [-65, -79], + [-171, -114], + [-18, -64], + [-55, -36], + [-18, -108], + [-54, -72], + [-69, -51], + [-28, -79], + [-95, -66], + [-7, -44], + [-122, -97], + [-11, -52], + [-162, -116], + [-125, -38], + [-214, -106], + [-48, -66], + [-68, -23], + [-551, -268], + [-177, -103], + [-200, -129], + [-205, -164], + [-236, -232], + [-64, -73], + [-53, -112], + [12, -35], + [-72, -98], + [-1, -67], + [42, -70], + [92, -48], + [104, -14], + [-39, -220], + [-92, -91], + [-41, 20], + [-132, -10], + [82, -66], + [-9, -86], + [54, -38], + [47, -103], + [-87, -95], + [-85, -33], + [-326, -169], + [-283, -157], + [-117, -21], + [-108, -38], + [-150, -83], + [-122, -52], + [-70, 48], + [-276, 30], + [-40, 30], + [-160, -12], + [-171, -25], + [-162, -67], + [-78, -51], + [-89, -95], + [-83, -171], + [-35, -168], + [-106, -197], + [10, -103], + [-125, -100], + [-200, -233], + [18, -113], + [-16, -71], + [-133, -74], + [-47, 5], + [-173, -26], + [-35, 9], + [-42, 72], + [19, 38], + [-39, 111], + [40, 53], + [-58, 67], + [-163, 46], + [-149, -6], + [-169, -39], + [-256, -106], + [-244, -156], + [-152, -172], + [-73, -167], + [-81, -313], + [-161, -208], + [-66, -143], + [-31, -119], + [12, -99], + [-49, -145], + [-40, -157], + [6, -141], + [39, -233], + [32, -88], + [8, -155], + [54, -180], + [71, -100], + [50, -182], + [68, -67], + [-33, -145], + [-27, -392], + [-69, -210], + [-26, -240], + [13, -152], + [33, -168], + [53, -101], + [52, -137], + [109, -243], + [16, -85], + [-35, -161], + [-8, -101], + [23, -129], + [-122, 80], + [-1, 50], + [-73, 77], + [-28, -21], + [13, -75], + [-19, -112], + [-27, -4], + [-50, 99], + [-71, -45], + [2, -62], + [-41, -58], + [72, -72], + [50, -75], + [64, -16], + [51, -53], + [35, 12], + [131, -25], + [55, -26], + [26, -65], + [86, -39], + [6, -130], + [-87, 41], + [-5, 19], + [6, 4], + [2, 0], + [4, 0], + [-3, 19], + [-22, 16], + [-17, 76], + [-96, 80], + [-141, -7], + [-17, 16], + [-15, 12], + [-11, 11], + [-26, 15], + [-45, 7], + [-2, 3], + [-6, 4], + [-18, 40], + [-20, 9], + [-7, -8], + [-8, 18], + [-7, 9], + [-5, -4], + [-4, -3], + [-13, -5], + [-19, -5], + [-12, -19], + [-25, -1], + [-10, 4], + [-26, 4], + [-7, 8], + [-15, 9], + [-30, -7], + [-10, -6], + [65, -58], + [40, -6], + [-3, -34], + [-24, 5], + [-42, 3], + [-3, -22], + [-20, -44], + [-10, 0], + [-1, 6], + [-6, 0], + [-43, -13], + [-14, -12], + [1, -16], + [2, -8], + [-5, -30], + [5, -23], + [-10, -12], + [-17, -10], + [-14, 6], + [-19, -3], + [-7, -12], + [7, -45], + [39, -25], + [-62, -88], + [-47, -7], + [-14, -8], + [-13, -12], + [-12, -7], + [-13, -2], + [-12, -7], + [-9, -13], + [-43, -20], + [-60, -2], + [-34, 6], + [-18, -1], + [-45, -52], + [-25, 18], + [-32, 30], + [-7, -9], + [-2, -19], + [-8, -25], + [-10, -7], + [-26, -4], + [-19, -7], + [1, -15], + [39, -26], + [14, -14], + [16, -10], + [49, -23], + [18, -14], + [0, -23], + [-13, -2], + [-9, 1], + [-64, -52], + [-13, 7], + [-2, 17], + [-8, 11], + [-3, 11], + [-13, 6], + [-8, 10], + [-10, 2], + [-6, -19], + [-22, -12], + [-13, -15], + [-16, 11], + [-8, -1], + [1, 9], + [14, 29], + [1, 24], + [-9, 10], + [-16, -10], + [-9, -13], + [-16, 3], + [-5, 14], + [6, 26], + [23, 22], + [-11, 30], + [-24, 29], + [-5, -20], + [-8, -12], + [-20, 15], + [-46, -3], + [-26, -33], + [-43, 20], + [-27, -17], + [-5, -16], + [-2, -15], + [-12, -4], + [-20, 5], + [-12, 5], + [-24, 22], + [-29, 46], + [-6, 51], + [-7, 23], + [-28, 11], + [-55, -2], + [-23, 4], + [-18, 11], + [-54, 7], + [-82, -6], + [-35, -14], + [-59, -29], + [24, -20], + [44, -21], + [36, 3], + [7, -13], + [-15, -15], + [-1, -13], + [3, -6], + [-15, -21], + [-8, -25], + [-3, -21], + [5, -22], + [-2, -19], + [5, -18], + [13, 1], + [3, 14], + [39, 26], + [14, -1], + [7, -17], + [0, -12], + [-53, -19], + [4, -22], + [-4, -13], + [5, -14], + [-7, -7], + [-16, 4], + [-34, 1], + [-29, -4], + [-14, -5], + [-20, -15], + [4, -17], + [-8, -7], + [-5, -12], + [-8, -10], + [-30, 16], + [5, -87], + [-12, -4], + [-15, -1], + [-5, 10], + [-11, -15], + [-30, -4], + [-10, -13], + [-6, -16], + [1, -16], + [-5, -7], + [-20, 41], + [-23, 8], + [-7, 11], + [-25, -5], + [-2, 14], + [-3, 26], + [-9, 7], + [-13, -1], + [-11, -9], + [-11, 22], + [-9, 4], + [-7, -16], + [-2, -18], + [-37, 3], + [-26, -87], + [-47, -17], + [-9, -11], + [-4, -18], + [-14, -23], + [-4, -16], + [-21, -16], + [16, -35], + [0, -11], + [0, -8], + [-8, -24], + [-6, -9], + [-20, -9], + [-19, -10], + [-73, 35], + [-33, 4], + [-48, -27], + [-30, 4], + [-18, 15], + [-15, 17], + [-2, 23], + [-20, 13], + [-23, 5], + [-17, 9], + [-6, 15], + [-26, 4], + [-24, 0], + [-11, 12], + [-15, 22], + [-15, 8], + [-41, -11], + [-8, -14], + [-21, 2], + [-9, -6], + [-20, 15], + [-14, -9], + [-35, 4], + [-30, -37], + [-16, -39], + [11, -8], + [13, -1], + [29, 3], + [6, -9], + [16, -12], + [2, -4], + [-8, -7], + [-4, 7], + [-16, 3], + [-56, -7], + [-18, 0], + [-6, 13], + [3, 43], + [-1, 59], + [-175, 14], + [-31, -31], + [-8, -14], + [-12, -7], + [-51, -14], + [-18, -4], + [-14, 0], + [-82, 25], + [-3, -28], + [-11, -73], + [-5, -19], + [-55, 16], + [-39, 15], + [-5, -3], + [-15, -34], + [-10, -11], + [-37, -33], + [-15, -9], + [14, -11], + [39, -45], + [-19, -3], + [14, -35], + [25, -44], + [-49, -11], + [-73, -175], + [-25, -165], + [-48, -36], + [-9, -13], + [-19, -40], + [12, -6], + [7, 0], + [-4, -13], + [-9, -13], + [-6, -18], + [15, -23], + [-24, -28], + [-22, -12], + [-8, -2], + [-7, 1], + [-13, 30], + [5, 11], + [10, -6], + [4, 6], + [-2, 9], + [-23, 5], + [-19, 23], + [-8, 0], + [-4, 19], + [-10, 6], + [-7, 15], + [-21, 10], + [-11, -11], + [11, -16], + [15, -14], + [5, -14], + [34, -14], + [3, -8], + [-2, -6], + [-11, -2], + [-2, -11], + [-13, 12], + [-10, -11], + [1, -56], + [-43, -24], + [-36, 7], + [4, -54], + [7, -8], + [-2, -7], + [-6, -2], + [1, -33], + [-44, -1], + [-32, -4], + [-15, 13], + [-13, -6], + [-11, -1], + [-16, -10], + [-70, -3], + [-17, 7], + [-27, 20], + [-20, 19], + [-21, 15], + [-46, 27], + [-40, 7], + [-7, 12], + [-7, 21], + [-43, 56], + [-81, -5], + [-60, -32], + [-8, 7], + [-3, 3], + [-12, 3], + [-1, 5], + [12, 27], + [3, 4], + [8, -1], + [7, 6], + [15, 1], + [23, 9], + [15, 27], + [4, 12], + [-21, 62], + [22, 35], + [27, 116], + [-1, 81], + [7, 9], + [21, -4], + [19, 16], + [89, -21], + [7, 21], + [-5, 22], + [15, -1], + [24, -6], + [2, 11], + [11, 15], + [-11, 5], + [-3, -11], + [-11, 1], + [-12, 4], + [-2, 6], + [7, 8], + [1, 20], + [6, 10], + [13, -7], + [11, -1], + [24, 40], + [-1, 15], + [1, 6], + [13, 6], + [-8, 9], + [1, 6], + [10, 8], + [34, -38], + [17, -23], + [21, -15], + [11, 0], + [4, 2], + [8, 22], + [63, -39], + [20, 31], + [21, -4], + [0, -27], + [5, -6], + [1, -15], + [17, -12], + [14, -21], + [-1, -23], + [4, -6], + [6, 30], + [3, 32], + [-5, 30], + [-47, 36], + [-19, 20], + [-10, 15], + [-2, 13], + [6, 11], + [3, 10], + [-10, 20], + [16, 9], + [-8, 9], + [-4, 19], + [2, 13], + [6, 3], + [18, -2], + [53, -13], + [0, 17], + [8, 20], + [-13, 25], + [-11, 57], + [-1, 26], + [1, 5], + [2, 8], + [34, 23], + [83, 26], + [0, 15], + [-13, 24], + [33, 35], + [2, 15], + [29, 14], + [-12, 5], + [-13, 3], + [-12, 13], + [-5, 16], + [0, 14], + [9, 2], + [19, 20], + [31, 4], + [3, 15], + [-9, 11], + [2, 10], + [11, 12], + [18, 5], + [25, -3], + [24, 10], + [-8, 35], + [-5, 13], + [-8, 6], + [-7, 0], + [-6, 0], + [-15, -3], + [-10, 3], + [-3, 17], + [27, 4], + [15, 102], + [7, 12], + [20, 24], + [11, 31], + [-3, 12], + [-19, 10], + [-146, 13], + [-68, 38], + [-8, 38], + [-27, -14], + [-14, -3], + [-14, -8], + [-8, -1], + [-4, -1], + [-12, 22], + [-3, 21], + [-5, 2], + [-5, 3], + [-8, 0], + [-12, -5], + [-18, -16], + [-11, -6], + [-24, -9], + [-19, 24], + [-35, 14], + [2, 19], + [37, -11], + [24, -2], + [4, 22], + [-10, 8], + [-17, 6], + [-3, 9], + [-34, 14], + [-26, -3], + [-3, 19], + [36, 83], + [-13, 77], + [4, 16], + [-7, 15], + [-3, 33], + [2, 17], + [8, 17], + [0, 66], + [40, 84], + [1, 29], + [26, 51], + [-38, 35], + [-29, -2], + [-13, -4], + [-39, -2], + [-68, 13], + [-138, -21], + [-123, 47], + [3, 16], + [-3, 33], + [-18, 12], + [-44, 0], + [-12, 5], + [-3, 51], + [-7, 8], + [-21, 2], + [-38, -3], + [-13, 1], + [-16, -7], + [-79, 11], + [-31, 32], + [-16, 6], + [5, 11], + [7, 7], + [3, 12], + [-6, 13], + [3, 6], + [47, -17], + [44, 8], + [4, 33], + [6, 12], + [-1, 15], + [-54, 54], + [73, 100], + [-6, 25], + [-17, 37], + [21, 42], + [-24, 73], + [-69, 3], + [-9, 40], + [-35, 17], + [-14, 12], + [-16, 5], + [4, -53], + [-4, -13], + [-7, -12], + [-49, 3], + [-24, 17], + [-43, 0], + [-43, -96], + [-46, 0], + [7, 11], + [0, 10], + [-5, 25], + [-8, 72], + [79, 51], + [-7, 28], + [-3, 44], + [11, 54], + [-26, 7], + [-12, -2], + [-13, -18], + [-2, -12], + [-8, -21], + [-4, -2], + [-6, 3], + [-16, -8], + [-20, -37], + [-40, -27], + [-108, 69], + [-106, 9], + [-13, -19], + [-4, -12], + [32, -65], + [14, -41], + [-18, -13], + [19, -12], + [-55, -46], + [-63, -21], + [7, -18], + [6, -9], + [1, -8], + [-5, -9], + [-20, -10], + [-30, -2], + [-60, -13], + [-72, -94], + [-24, -6], + [-35, -15], + [7, 41], + [-4, 18], + [-13, -4], + [-17, 2], + [-16, -2], + [-76, -36], + [-9, -11], + [5, -20], + [46, -13], + [7, -14], + [-34, -18], + [-13, 2], + [-25, 33], + [-19, 2], + [-31, -30], + [-17, -9], + [-15, 6], + [-41, -20], + [-15, 33], + [-4, 20], + [-22, 5], + [-22, -4], + [-10, -16], + [26, -27], + [2, -15], + [0, -27], + [-14, -45], + [-41, 39], + [-34, 5], + [-17, -8], + [-7, -59], + [-58, -5], + [-11, 47], + [39, 110], + [-9, 14], + [-10, 66], + [-4, 5], + [-3, 12], + [-23, 39], + [-11, -7], + [-15, -26], + [-19, 2], + [-7, 5], + [-18, 19], + [-1, 7], + [12, 12], + [-2, 10], + [27, 34], + [-46, 11], + [-31, 4], + [-19, -4], + [-18, 0], + [-46, 30], + [-71, -43], + [-8, 32], + [-12, 27], + [-8, 14], + [-48, -26], + [-5, -12], + [-17, 4], + [-43, -7], + [-12, 0], + [-14, 48], + [-7, 13], + [-3, 18], + [-1, 18], + [6, 17], + [-3, 12], + [-14, 2], + [-19, 1], + [-7, -15], + [-3, -16], + [-8, -29], + [-12, -18], + [-8, -3], + [2, 42], + [-36, -51], + [-30, 8], + [-8, 3], + [15, 93], + [-57, -4], + [2, -19], + [10, -21], + [2, -14], + [5, -23], + [-5, -22], + [-51, 5], + [-20, -21], + [-14, -1], + [3, -15], + [33, -12], + [12, -7], + [27, -22], + [9, -11], + [0, -12], + [-18, -34], + [38, -66], + [-3, -25], + [-7, -15], + [-19, 0], + [-25, 0], + [-20, 2], + [-7, -6], + [-24, -5], + [-27, 9], + [-35, 14], + [-21, -6], + [-12, -11], + [1, -37], + [-20, 3], + [-25, 0], + [-55, 71], + [-34, 1], + [-3, -19], + [-10, -33], + [-5, -34], + [-21, 9], + [-21, 14], + [-25, 100], + [-27, 56], + [-1, 10], + [7, 10], + [11, 6], + [16, 15], + [49, 51], + [4, 30], + [10, 3], + [0, 7], + [-2, 10], + [13, 50], + [23, 9], + [29, 1], + [-12, 65], + [-61, 50], + [-19, 7], + [-23, 15], + [6, 44], + [6, 13], + [-20, 14], + [-17, 15], + [0, 0], + [-5, 6], + [-58, 24], + [-39, 36], + [6, 42], + [9, 16], + [12, -1], + [14, 2], + [48, 10], + [6, 12], + [2, 18], + [-6, 7], + [-1, 17], + [-9, 9], + [-36, 13], + [-11, 41], + [-8, 21], + [-12, 7], + [-23, 28], + [-10, 4], + [-22, -16], + [-63, 21], + [7, 12], + [5, 34], + [5, 19], + [12, 6], + [45, -10], + [12, 14], + [31, 5], + [5, 5], + [5, 24], + [-5, 20], + [5, 6], + [6, -3], + [11, -10], + [10, -7], + [10, -12], + [61, -7], + [44, 5], + [18, -4], + [12, -1], + [4, -10], + [-1, -9], + [-11, -27], + [-3, -47], + [-2, -12], + [12, -4], + [2, -7], + [-8, -11], + [1, -13], + [-1, -14], + [-18, -18], + [34, -104], + [99, -14], + [2, -18], + [15, -3], + [31, 0], + [67, 9], + [8, -17], + [7, -37], + [13, -21], + [-2, -12], + [3, -14], + [29, -15], + [15, -3], + [38, 42], + [50, -13], + [106, 8], + [29, 33], + [19, 13], + [16, 4], + [6, -28], + [-4, -19], + [13, -2], + [55, 46], + [22, -5], + [7, -7], + [1, -15], + [15, -23], + [14, -24], + [-1, -3], + [0, 0], + [1, -7], + [7, -6], + [27, -5], + [18, -8], + [-1, -14], + [-14, -36], + [0, -12], + [-8, -11], + [41, -12], + [1, -7], + [-44, -70], + [2, -14], + [11, -22], + [155, -4], + [-25, 95], + [33, 7], + [13, 10], + [1, 30], + [4, 13], + [0, 16], + [-9, 10], + [-14, 8], + [-74, -6], + [-7, 77], + [-126, 36], + [11, 39], + [15, 32], + [27, -1], + [18, 13], + [6, 16], + [24, 14], + [16, 43], + [35, 30], + [2, 17], + [-4, 9], + [-10, 9], + [-82, -31], + [-9, -14], + [-9, -7], + [5, 33], + [0, 17], + [2, 15], + [16, -1], + [48, 14], + [4, 20], + [9, 21], + [15, 14], + [1, 27], + [17, 3], + [27, 7], + [14, -1], + [16, -9], + [87, -2], + [56, -26], + [26, -5], + [5, 14], + [17, 35], + [-2, 11], + [-12, 9], + [-7, 29], + [-3, 26], + [-14, 22], + [-7, 31], + [21, 76], + [-7, 26], + [-26, 8], + [-11, 22], + [-1, -2], + [-23, -10], + [-31, -17], + [-24, 13], + [-2, 30], + [-1, 44], + [-32, -11], + [-4, 37], + [-11, 2], + [-25, 12], + [-32, 5], + [-35, -28], + [-11, -28], + [2, -23], + [33, -78], + [24, -2], + [9, -27], + [9, -58], + [13, -15], + [2, -12], + [-2, -20], + [-68, -27], + [-16, 58], + [-27, 15], + [-20, 16], + [9, 91], + [-176, 15], + [7, 61], + [-3, 66], + [-17, 2], + [-14, -11], + [-20, -3], + [-15, -12], + [-13, -14], + [-29, -8], + [-20, 9], + [-29, -4], + [-30, 3], + [-97, 54], + [-12, -13], + [-13, 9], + [-19, -13], + [-14, -67], + [-18, -23], + [-12, -9], + [-3, -29], + [-8, -31], + [19, -11], + [-9, -20], + [3, -19], + [-7, -43], + [-10, -19], + [-22, -9], + [-23, -2], + [-21, 2], + [-17, 20], + [-16, 14], + [-23, 36], + [-37, 2], + [-63, -21], + [-21, 10], + [-4, -6], + [-8, 7], + [-15, 5], + [-68, -10], + [-18, 5], + [-12, 9], + [-4, 20], + [-5, 11], + [-17, 25], + [-3, 18], + [24, 11], + [18, 11], + [11, 12], + [3, 17], + [-8, 15], + [-8, 11], + [-96, 32], + [-30, 47], + [-14, 16], + [-1, 11], + [10, 90], + [66, 54], + [12, -5], + [40, -23], + [10, -4], + [5, 8], + [2, 13], + [-1, 38], + [-3, 34], + [2, 12], + [33, 1], + [12, 14], + [22, 43], + [-2, 19], + [-147, 13], + [-27, -8], + [-19, -11], + [-12, -12], + [-22, -5], + [-14, 14], + [-44, 80], + [-26, 14], + [-8, 16], + [-1, 2], + [-18, -6], + [-32, 10], + [-12, 7], + [-47, 119], + [-38, 39], + [23, 180], + [21, 38], + [10, 39], + [28, 63], + [-7, 15], + [-15, 25], + [-4, 23], + [-11, 29], + [-2, 12], + [67, 5], + [14, 9], + [7, 3], + [13, 0], + [11, -6], + [5, 2], + [14, 104], + [44, 141], + [12, 108], + [-4, 40], + [2, 21], + [-52, -7], + [-11, -5], + [-18, -18], + [-27, 29], + [-114, 14], + [-15, 31], + [12, 15], + [6, -1], + [3, 4], + [4, 11], + [3, 11], + [22, 12], + [11, 25], + [-26, 112], + [7, 10], + [18, 15], + [28, 35], + [54, -37], + [18, -1], + [17, -5], + [13, -14], + [38, -22], + [8, -16], + [12, -13], + [16, -36], + [80, 5], + [40, -10], + [25, 1], + [17, -6], + [36, -26], + [33, -6], + [3, 23], + [27, 8], + [11, 13], + [102, -1], + [4, -12], + [-5, -18], + [-12, -24], + [45, -10], + [38, -3], + [4, 18], + [3, 33], + [14, 2], + [5, 11], + [24, -1], + [18, 3], + [4, 22], + [10, 5], + [5, 24], + [16, 41], + [4, 58], + [44, 32], + [14, 31], + [-2, 25], + [-39, 10], + [-7, 16], + [11, 15], + [19, 3], + [26, -4], + [4, 8], + [-1, 13], + [10, 8], + [2, 16], + [-14, 59], + [-36, 56], + [14, 156], + [-72, 10], + [-4, 68], + [-7, 3], + [-1, 16], + [-23, -2], + [-66, -17], + [-17, 6], + [3, 37], + [-55, 48], + [10, 37], + [3, 21], + [-6, 18], + [-17, 11], + [-11, 12], + [6, 39], + [-1, 19], + [-7, 20], + [-8, 8], + [-19, 6], + [-20, 16], + [-9, 17], + [-3, 14], + [-10, 14], + [-44, 33], + [-12, 21], + [56, 20], + [21, 7], + [46, -6], + [5, 20], + [0, 38], + [-11, 118], + [7, 123], + [120, 54], + [76, -64], + [11, 28], + [8, 51], + [-13, 7], + [-18, 21], + [-22, 17], + [-54, 28], + [0, 71], + [-64, 8], + [-1, 61], + [11, -3], + [4, 20], + [-11, 5], + [3, 7], + [9, -1], + [19, 34], + [10, 41], + [-12, 5], + [5, 58], + [-25, 3], + [-6, -10], + [-18, 4], + [-7, 8], + [-22, 1], + [-9, 9], + [-4, 5], + [24, 49], + [17, 25], + [25, 29], + [30, 53], + [24, 24], + [29, 19], + [32, 15], + [55, 14], + [30, 24], + [30, 8], + [30, 3], + [22, 10], + [150, 18], + [74, -24], + [156, -8], + [32, -18], + [18, -6], + [21, 2], + [15, 6], + [33, -3], + [41, 15], + [89, -34], + [36, 2], + [31, -5], + [27, -12] + ], + [ + [59479, 46082], + [-3, 60], + [-44, 54], + [58, 113], + [-60, 32], + [-67, 154], + [99, 48], + [9, 81], + [-37, 31], + [-48, 129], + [1, 123] + ], + [ + [59387, 46907], + [116, -30], + [135, 118], + [125, 73], + [87, 13], + [114, 40], + [23, 127], + [-21, 44], + [62, 84], + [105, 57], + [87, -45], + [34, -50], + [104, 17], + [104, 48], + [276, 54], + [111, 31], + [26, -63], + [57, -6], + [18, 63], + [125, 59], + [15, 46], + [99, 89], + [-92, 141], + [-88, 23], + [-111, -6], + [-14, 63], + [11, 190], + [-42, -2], + [-90, 67], + [-51, 61], + [-42, 122], + [-19, 137], + [22, 88], + [94, 118], + [117, 76], + [102, 102], + [71, 94], + [-6, 35], + [55, 62], + [-333, 20], + [-482, -45], + [-138, -103], + [-62, -73], + [-289, -92], + [-149, 68], + [-176, -53], + [-406, -135], + [-29, -28], + [-114, -16], + [-226, -67], + [-51, -6], + [-27, -66], + [-60, -34], + [-57, 4], + [-116, -80], + [-98, 9], + [-128, -84], + [-106, -19], + [-40, -36], + [-104, -26], + [-57, -43], + [-103, -15], + [-71, 71], + [-118, -57], + [-175, 35], + [-116, 94], + [-27, -74], + [8, -58], + [66, -42], + [6, -80], + [-224, -103], + [6, -27], + [-162, -143], + [-56, -95], + [-134, -67], + [-134, -142], + [-84, -73], + [-73, -99], + [-133, -112], + [40, -72], + [25, -95], + [-259, -136], + [-95, -111], + [-201, -43], + [-255, -32], + [-45, 35], + [-220, 21], + [-178, -16], + [-182, -40], + [-362, -51], + [-224, 110], + [-2, 47], + [-97, 53], + [-228, 59], + [-121, -16], + [-121, 29], + [-29, -119], + [-133, -59], + [-176, 12], + [-130, -15], + [-102, -79], + [-102, 22], + [-111, -27], + [-58, -50], + [-48, 23], + [-131, -50], + [-191, 7] + ], + [ + [52598, 46562], + [20, 89], + [-31, 174], + [-51, 30], + [-35, 73], + [-42, 0], + [-38, 61], + [-12, 84], + [32, 55], + [-25, 77], + [68, 41], + [30, 79], + [0, 124], + [70, -19], + [34, 54], + [-128, 80], + [-28, 120], + [18, 49], + [-34, 84], + [-49, 49], + [5, 51], + [-175, -45], + [-198, 51], + [-46, -31], + [-120, -11], + [-132, 22], + [-52, 67], + [-81, -46], + [-129, 131], + [-72, 103], + [33, 36], + [-42, 78], + [75, 115], + [70, 53], + [16, 151], + [-6, 68], + [-65, 46], + [-73, -13], + [-43, 73], + [52, 32], + [83, -15], + [136, 6], + [55, -80], + [114, -43], + [180, 10], + [72, -164], + [40, -35], + [146, 16], + [23, 51], + [62, 45], + [157, -25], + [222, 180], + [97, 46], + [120, 12], + [27, -19], + [38, -107], + [50, -66], + [160, 37], + [6, 47], + [68, 17], + [66, -51], + [107, 83], + [50, 8], + [63, -53], + [37, 9], + [98, 130], + [141, 53], + [70, 77], + [84, 129], + [-96, 136], + [-72, 34], + [38, 127], + [226, 152], + [37, 43], + [47, -65], + [163, 70], + [39, 71], + [113, 62], + [79, -72], + [74, 75], + [-27, 85], + [162, 16], + [65, 46], + [151, -20], + [64, 53], + [19, 138], + [-90, 58], + [85, 120], + [103, 63], + [64, 142], + [-11, 77], + [61, 20], + [10, 58], + [175, 45], + [74, 53], + [63, -51], + [47, 70], + [63, -53], + [182, -12], + [274, 77], + [96, -48], + [151, 90], + [47, -9], + [85, -62], + [67, 1], + [68, 107], + [7, 65], + [72, 55], + [-35, 53], + [21, 100], + [77, 28], + [107, 121], + [168, 113], + [39, 86], + [27, 109], + [65, 104], + [161, 148], + [137, 5], + [49, 92], + [129, 85], + [139, -24], + [140, 29], + [35, 107], + [81, 60], + [38, 109], + [108, -48], + [75, -54], + [122, -119], + [69, -99], + [0, -105], + [162, 45], + [103, -50], + [108, -6], + [95, -61], + [63, 44], + [129, -20], + [52, -64], + [122, -18], + [161, 3], + [-1, -95], + [36, -25], + [80, 12], + [94, -39], + [142, -28], + [97, 7], + [76, 122], + [32, 123], + [95, -33], + [-4, 201], + [90, 5], + [28, 102], + [72, -30], + [92, 51], + [63, 68], + [56, 5], + [111, 124], + [29, -42], + [109, 36], + [89, 88], + [167, -21], + [127, 90], + [90, 85], + [82, -4], + [45, -67], + [81, -66], + [78, -126], + [-6, -82], + [45, -36], + [68, -116], + [36, -23], + [93, 6], + [43, 53], + [137, 57], + [39, -63], + [-75, -173], + [-27, -24], + [-189, -25], + [-94, -51], + [-38, -75], + [-68, -42], + [-99, -16], + [57, -64], + [76, -150], + [-9, -45], + [-78, -72], + [47, -73], + [135, 54], + [145, 160], + [116, 78], + [196, 12], + [197, 97], + [-106, -197], + [23, -67], + [74, 0], + [38, -102], + [-2, -85], + [102, -145], + [54, -54], + [15, -77], + [-65, -100], + [-118, -24], + [-136, -62], + [55, -94], + [-112, -88], + [-96, -100], + [-102, -4], + [-66, -70], + [80, -48], + [14, -70], + [-222, -144], + [85, -29], + [33, -43], + [112, 19], + [20, -70], + [43, -45], + [52, 15], + [20, 94], + [57, 64], + [115, -2], + [108, 80], + [86, 30], + [145, -1], + [37, -33], + [167, -83], + [37, -96], + [115, -16], + [159, 44], + [60, -95], + [59, -12], + [96, -54], + [58, 23], + [64, 73], + [89, 27], + [74, -31], + [72, -68], + [23, -57], + [121, -5], + [37, -57], + [90, 2], + [203, -117], + [-5, -58], + [-91, -87], + [18, -100], + [-63, -61], + [3, -54], + [119, -4], + [25, -67], + [47, -12], + [-45, -111], + [1, -157], + [23, -50], + [-100, -5], + [-77, 83], + [-114, -48], + [-212, -201], + [-127, -67], + [-13, -101], + [-64, 23], + [-114, -44], + [-82, -159], + [-109, -37], + [-21, -57], + [-48, -24], + [37, -75], + [3, -70], + [49, -65], + [-53, -96], + [-4, -60], + [65, -82], + [53, -27], + [7, -67], + [63, -73], + [13, -58], + [81, -51], + [7, -42], + [111, -96], + [3, -62], + [71, -83], + [49, -16], + [48, -96], + [-55, -79], + [-84, 43], + [-101, -24], + [-71, 71], + [-100, 58], + [-146, 20], + [-115, 56], + [-6, 45], + [59, 41], + [-11, 72], + [-65, 29], + [-13, 60], + [-72, 53], + [-32, 58], + [-136, 23], + [-61, 38], + [-42, -35], + [-161, 16], + [-43, -65], + [-86, -45], + [-68, -62], + [-68, 26], + [-146, 1], + [-92, -35], + [-97, -15], + [-81, 32], + [-71, -53], + [-97, 13], + [-36, -35], + [-119, -35], + [-280, -135], + [-43, -96], + [-83, -102], + [-49, -98], + [-175, -110], + [-136, 4], + [-120, -135], + [-13, -129], + [-53, -48], + [-60, 0], + [-66, 53], + [-81, -72], + [-10, -69], + [-45, -65], + [-145, 39], + [-68, -57], + [-69, -135], + [-39, -11], + [-93, -124], + [-169, -43], + [-97, -51], + [-67, 16], + [-26, 54], + [-50, 0] + ], + [ + [47680, 43426], + [19, -113], + [-55, -29] + ], + [ + [47644, 43284], + [36, 142] + ], + [ + [59387, 46907], + [-90, -86], + [-83, -51], + [-66, -72], + [-223, -80], + [-62, 59], + [-95, -2], + [-61, -24], + [-77, -118], + [-66, -62], + [-42, -112], + [-64, -26], + [-37, -52], + [-54, -19], + [-99, -73], + [-144, -26], + [-63, -43], + [-104, 19], + [-55, -22], + [-48, -64], + [-67, -9], + [-30, -71], + [-98, -52], + [11, -77], + [-40, -124], + [-160, -116], + [-66, 3], + [-25, 191], + [-93, -120], + [-118, -118], + [-23, -66], + [7, -100], + [-32, -66], + [-124, -78], + [-83, -153], + [-39, -10], + [-37, -122], + [-50, -39], + [-60, -237], + [-68, -177], + [2, -76], + [59, -111], + [-50, -49], + [-97, -40], + [-73, -97], + [-68, 40], + [-60, -37], + [-63, -76], + [-35, 74], + [41, 147], + [-29, 112], + [-215, -113], + [42, -130], + [-63, -56], + [-65, -11], + [-57, -103], + [-171, -122], + [-3, -58], + [-132, -129], + [-143, -58], + [-99, -120], + [-88, -46], + [126, -147], + [0, -38], + [146, -63], + [47, -143], + [-58, -83], + [49, -80] + ], + [ + [55602, 42899], + [-155, -107], + [-111, -188], + [-5, -86], + [-33, -113], + [-27, -10], + [-59, -101], + [-63, 4], + [-47, -105], + [36, -87], + [-42, -52], + [20, -58], + [-44, -79], + [-82, -88], + [-6, -93], + [-79, -33], + [-98, 23], + [-53, -215], + [23, -98], + [-31, -44], + [27, -151], + [-98, -87], + [0, -58], + [-37, -52], + [28, -50], + [-36, -108], + [15, -41], + [-85, -18] + ], + [ + [54560, 40804], + [-44, 15], + [-98, -33], + [-53, 40], + [-107, -31], + [-35, -40], + [-95, 92], + [-85, 229], + [-76, -158], + [-86, -222], + [-144, -51], + [-32, -188], + [-134, -17], + [-46, -164], + [-91, -29], + [-55, -60], + [-59, 37], + [-38, 97], + [7, 136], + [-276, -3] + ], + [ + [53013, 40454], + [-185, -6], + [133, 322], + [-37, 110], + [-56, 56], + [0, 101] + ], + [ + [52868, 41037], + [19, 222], + [51, 205], + [78, 110], + [-11, 109], + [-34, 108], + [-74, 44], + [3, 141], + [152, -6], + [74, -66], + [38, 6], + [65, -61], + [213, 43], + [22, 87], + [-19, 56], + [-76, 23], + [-52, 48], + [-25, 69], + [5, 82] + ], + [ + [53297, 42257], + [88, 59], + [40, 117], + [93, -5], + [-4, 79], + [125, -19], + [88, -32], + [50, 77], + [72, 72], + [154, 59], + [72, -11], + [-22, 152], + [49, 42], + [-17, 105], + [-52, 7], + [-54, 89], + [-40, 2], + [-148, 132], + [-96, -31], + [-19, 123], + [-38, 54], + [89, 48], + [51, 50], + [35, 110], + [-161, -74], + [-58, 49], + [-8, 87], + [-131, 35], + [-71, 128], + [-69, 12], + [-39, 123], + [-99, 13], + [-71, -45], + [-225, -43], + [-147, -97], + [-31, 99], + [20, 82], + [-31, 90], + [5, 68], + [61, 89], + [0, 47], + [97, 69], + [-143, 31], + [12, 114], + [199, 149], + [39, 86], + [-71, -8], + [-139, 39], + [-99, -77], + [-87, 6], + [-89, -37], + [-136, 19], + [-29, -35], + [-97, -26], + [-111, 36], + [-31, 62], + [14, 94], + [-124, 49], + [-64, -73], + [-130, -65], + [-17, -66], + [-7, -177], + [-112, -112], + [-47, 19], + [-39, 72], + [-12, 95], + [17, 84], + [-137, 12], + [-41, -122], + [-72, -38], + [-110, -229], + [-60, -41], + [-63, 29], + [-177, -51], + [-124, -197], + [-45, 3], + [-69, -57], + [-78, 36], + [-19, 86], + [50, 149], + [-109, 22], + [-71, -43], + [-119, -13], + [-39, 53], + [-62, -61], + [-42, 8], + [27, 135], + [-102, 7], + [-21, 108], + [-165, 41], + [-29, -22], + [-108, 14], + [-52, -16], + [-41, -77], + [-83, 16], + [-1, 60], + [-59, 26], + [-189, -81], + [4, 47], + [-111, 47], + [-16, -43], + [-101, -88], + [20, 131], + [-63, 88], + [-63, 45], + [-107, -61], + [-70, 58], + [-70, -9], + [-89, -83], + [-83, -24], + [-162, -23], + [-218, 8], + [-48, -66], + [-63, -31], + [-121, -159], + [-124, -83], + [7, -84], + [-73, -82], + [-61, -27], + [94, -94], + [22, -64], + [127, -81], + [30, -36], + [-36, -56], + [-254, -61], + [-36, -31] + ], + [ + [47677, 43442], + [36, 147], + [-28, 115], + [-79, 126], + [-16, 53], + [32, 51], + [-35, 119], + [-32, 19], + [83, 167], + [64, 70], + [10, 56], + [-119, -5], + [47, 107], + [-60, 50], + [-88, 182], + [9, 29], + [-91, 132], + [-66, 19] + ], + [ + [47344, 44879], + [-15, 143], + [12, 73], + [55, 83], + [85, 82], + [2, 52], + [99, 31], + [67, 41], + [-27, 60], + [54, 88], + [-37, 91], + [27, 191], + [27, 32], + [-13, 230], + [-32, 47] + ], + [ + [47648, 46123], + [12, 76], + [59, -29], + [151, -3], + [97, 26], + [117, -11], + [294, 95], + [-14, 78], + [27, 66], + [69, 59], + [188, -17], + [75, 59], + [20, 45], + [121, 14], + [338, -237], + [147, -18], + [41, -40], + [67, 13], + [45, -28], + [90, 16], + [343, 9], + [218, 22], + [127, -20], + [77, 90], + [90, -23], + [111, 7], + [180, -15], + [72, -46], + [91, -13], + [95, 51], + [63, 78], + [154, -101], + [32, -5], + [216, 35], + [72, 38], + [122, -38], + [105, 18], + [165, 91], + [66, 57], + [47, 83], + [96, 9], + [125, -66], + [70, -68], + [153, -24], + [93, 48], + [23, 58] + ], + [ + [43798, 45734], + [58, -53], + [73, 21], + [44, 52], + [105, -28], + [-119, -88], + [32, -51], + [109, -53], + [27, -77], + [-58, -60], + [18, -34], + [80, 5], + [34, -61], + [-62, -30], + [-75, -79], + [-5, -33], + [-105, -64], + [-71, -21], + [-153, -165], + [-83, -9], + [-84, -86], + [-65, 33], + [0, -105], + [-21, -58], + [-103, 16], + [-156, -108], + [-35, -140], + [10, -50], + [-52, -75], + [34, -135], + [194, -45], + [-51, -44], + [50, -42], + [-21, -79], + [81, -51], + [92, -92], + [157, -76], + [-33, -104], + [6, -106], + [-37, -28], + [11, -68], + [92, -93], + [-15, -64], + [-127, 20], + [-107, 101], + [-69, -5], + [-52, -66], + [-67, -10], + [-14, -86], + [-65, -2], + [-56, -71], + [-48, 34], + [-52, -123], + [57, -54], + [-16, -78], + [104, -81], + [47, -14], + [-2, -102], + [-59, -44], + [15, -70], + [-92, 38] + ], + [ + [43098, 42693], + [-9, 60], + [-167, 23], + [-52, 125], + [-169, 2], + [-88, 52], + [-43, -6], + [-20, -81], + [-125, -2], + [31, -69], + [-51, -57], + [-1, -106], + [-176, 76], + [-52, -48], + [-99, 37], + [-71, -309], + [-71, 35], + [-55, -43], + [-49, 9], + [-76, -59], + [-72, -124], + [21, -45], + [-13, -169], + [23, -75], + [-24, -54], + [-91, -34], + [-63, -91], + [12, -67], + [-18, -80], + [16, -46], + [-60, -125], + [-22, -108], + [-75, -41], + [-99, 59], + [-64, -3], + [-84, -101], + [-96, -84], + [-38, 41], + [-62, -10], + [-38, 119], + [-83, -1], + [-18, -59], + [-170, -66], + [-50, 15], + [-100, 75], + [-37, -62], + [-63, -31], + [-18, -56], + [-51, 1], + [-73, -119], + [-3, -137], + [-50, -7], + [-9, -104], + [-102, 5], + [-93, 85], + [-43, 61], + [-75, -5], + [-57, 84], + [41, 74], + [-43, 180], + [-169, 11], + [-110, -17], + [-89, 65], + [-16, 70], + [34, 77], + [-62, 140], + [-93, 36], + [-33, 62], + [-92, -29], + [-123, -78], + [-87, 50], + [-72, 108], + [-112, 21], + [-36, -35], + [-74, 11], + [-89, 55], + [-73, -151], + [3, -67], + [-98, -124], + [26, -128], + [-16, -87], + [-124, 7], + [-70, 42], + [-18, -88], + [-75, -76], + [-66, -6], + [-21, 49], + [-135, -34], + [-66, 20], + [-45, -28], + [-227, -31], + [-122, -111], + [-156, -16], + [36, -81], + [-120, -47], + [-49, -63], + [-40, 62], + [-93, 39], + [-92, -30], + [-48, -84], + [-143, -9], + [-89, 198], + [-79, 28], + [12, 96], + [-28, 31], + [-88, -46], + [-83, -20], + [-37, -54], + [-102, -38], + [-45, -145], + [-126, 17], + [-63, 26], + [-58, -89], + [-54, 5], + [-9, -98], + [-52, -108], + [-63, 50], + [-23, 70], + [-82, -17], + [12, 64], + [-61, 20], + [-28, 51], + [-102, 14], + [-12, 81], + [-82, 46], + [2, 69], + [61, 21], + [-6, 75], + [-57, 101], + [-52, -4], + [-24, -61], + [-83, 29], + [-105, -19], + [-139, -140], + [-46, 52], + [2, 69], + [-66, 100], + [-29, 81], + [-120, 60], + [-43, -96], + [-97, -113], + [-133, -34], + [-151, -7], + [-181, -58], + [-76, 25], + [-181, -6], + [-127, 30], + [-97, 2] + ], + [ + [33666, 41090], + [42, 51], + [38, 154], + [-81, 83], + [34, 63], + [-52, 62], + [-21, 74], + [-59, -10], + [-92, 97], + [-54, 21], + [8, 113], + [-86, 161], + [13, 121], + [-29, 20], + [0, 108], + [-53, 11], + [8, 76], + [66, 233], + [-23, 22], + [14, 93], + [85, 19], + [47, 98], + [112, 6], + [44, 70], + [61, 9], + [80, 63], + [145, 44], + [101, 72], + [66, 14], + [51, 59], + [85, 21], + [75, -13], + [45, 79], + [78, 10], + [-10, 60], + [192, 228], + [51, 13], + [154, 113], + [137, 49], + [-15, 135], + [84, 65], + [131, -5], + [59, -42], + [11, -72], + [39, -19], + [161, -3], + [62, 21], + [16, 151], + [63, 15], + [86, -34], + [18, -68], + [103, 34], + [39, -67], + [51, 13], + [59, -31], + [93, 54], + [-7, 82], + [156, 12], + [-57, 44], + [45, 73], + [-163, 114], + [-40, 84], + [-49, -13], + [-46, 39], + [-119, 8], + [-51, 90], + [-125, 65], + [-131, -26], + [-113, 80], + [-85, 41], + [-64, -4], + [-12, 61], + [-67, 50], + [-100, 115], + [-93, 7], + [-46, 146], + [-57, 63], + [70, 97], + [87, -17], + [81, 40], + [6, 46], + [98, -2], + [53, 129], + [-32, 49], + [9, 83], + [-241, 37], + [-56, 41], + [-44, 79], + [-72, -16], + [-178, 35], + [10, 131], + [52, 42], + [77, -30], + [181, 73], + [3, 42], + [78, 113], + [-10, 70], + [158, -5], + [33, -33], + [77, 0], + [154, -58], + [55, 38], + [258, 27], + [-27, 101], + [-168, 30], + [-16, 74], + [-45, 86], + [-123, -52], + [-39, 61], + [61, 119], + [0, 84], + [-52, 57], + [-114, -38], + [-17, -43], + [-82, 49], + [-3, 68], + [-83, -17], + [-89, 32], + [-10, 93], + [-27, 39], + [31, 97], + [-55, 125], + [-65, 38], + [57, 79], + [-20, 22], + [-124, -43], + [-30, 78], + [96, 143], + [-81, 130], + [-102, 32], + [-13, 58], + [50, 36], + [-24, 87], + [-117, -44], + [8, 92] + ], + [ + [34458, 47619], + [69, 17], + [39, 72], + [-71, 6], + [-11, 84], + [139, 48], + [32, -19], + [234, 4], + [37, 84], + [58, 24], + [29, 74], + [93, -11], + [-4, -72], + [231, -78], + [82, -154], + [221, -40], + [108, 5], + [99, -27], + [300, -52], + [147, -263], + [-30, -120], + [17, -62], + [-17, -94], + [-65, -63], + [-7, -65], + [250, -103], + [81, -17], + [53, 58], + [82, -29], + [9, -47], + [114, -46], + [113, -17], + [36, -47], + [-17, -54], + [73, -51], + [87, -8], + [-32, -75], + [33, -19], + [148, 50], + [171, -6], + [10, -64], + [-36, -62], + [45, -106], + [300, -64], + [90, 44], + [71, 71], + [100, -22], + [95, 38], + [103, 92], + [141, 44], + [161, -33], + [90, -53], + [29, -56], + [-24, -281], + [52, -80], + [116, -35], + [39, -50], + [74, 16], + [16, -95], + [72, 60], + [141, 81], + [3, 45], + [158, 40], + [91, -22], + [187, -109], + [82, 11], + [11, -49], + [74, -3], + [48, 55], + [121, 9], + [192, -80], + [133, -40], + [95, -60], + [95, -8], + [50, -87], + [135, -46], + [13, -33], + [141, -42], + [65, -53], + [47, 6], + [49, 72], + [141, -47], + [136, 65], + [-4, 47], + [80, 5], + [6, 63], + [182, 35], + [60, 84], + [64, 40], + [44, -313], + [156, -107], + [52, 24], + [130, 0], + [46, -21], + [-1, -73], + [105, -15], + [60, -45], + [39, 31], + [-5, 62], + [71, 72], + [86, 7], + [86, 42], + [109, -22], + [80, -58], + [77, -31], + [141, 3], + [127, 78], + [53, -45], + [86, 27], + [43, 114], + [124, -75], + [21, 63], + [92, 32], + [53, -71], + [18, -67], + [73, -48], + [135, -35], + [149, 129], + [19, 68], + [-18, 114], + [18, 45] + ], + [ + [18981, 55329], + [-55, -38], + [-109, 49], + [-66, 53], + [-54, 108], + [90, 39], + [61, 51], + [152, -82] + ], + [ + [19000, 55509], + [-12, -55], + [30, -59], + [-37, -66] + ], + [ + [34775, 36452], + [-58, -43], + [144, -88], + [-3, -73], + [-57, -66], + [-29, -80], + [-75, -27], + [-113, 4], + [-41, -46], + [-79, 9], + [-85, -65], + [-112, -134], + [-57, -38], + [-115, 10], + [-104, -48], + [-59, -65], + [-29, -90], + [-107, -133], + [95, -80], + [-37, -24], + [-99, 1], + [-10, -77], + [32, -36], + [-29, -100], + [143, -121], + [-64, -91], + [28, -44], + [-23, -53], + [-93, 5], + [12, -88], + [-100, 34], + [-34, -80], + [18, -75], + [-61, -109], + [-80, -45], + [46, -46], + [93, -36], + [-44, -78], + [-48, 29], + [0, 72], + [-133, -85], + [-41, -93], + [-44, -201], + [18, -96], + [44, -18], + [52, -85], + [0, -88], + [-42, -49], + [-231, 81], + [-33, -100], + [28, -146], + [-55, 18], + [-62, -59], + [10, -63], + [-25, -52], + [-32, -143], + [-69, -18], + [-92, -71], + [-174, 42], + [-66, 61], + [-67, 28], + [-171, 12], + [-51, -32], + [-86, 33], + [-127, -51], + [-54, 40], + [-161, -1], + [-107, -20], + [20, -110], + [-79, -88], + [29, -63], + [-88, -115], + [-64, -105], + [-154, -96], + [-12, -123], + [-136, -47], + [-31, 84], + [-74, 3], + [-47, 46], + [-28, -100], + [3, -190], + [23, -69], + [-5, -69], + [49, -87], + [4, -73], + [-55, -125], + [-41, -50], + [55, -71], + [70, -31], + [16, -132], + [69, 11], + [22, -73], + [-43, -53], + [1, -59], + [-36, -97], + [63, -59], + [12, -72], + [-50, -35], + [18, -142], + [-76, -133], + [26, -59], + [11, -162], + [176, -44], + [58, -38], + [91, -3], + [85, -52], + [71, -6], + [79, 28], + [110, -15], + [23, -22], + [-23, -177], + [23, -134], + [-27, -51], + [-116, -3], + [-59, -91], + [-89, -24], + [-15, 121], + [56, 75], + [-148, 50], + [-69, 7], + [-50, 36], + [-73, 5], + [-118, -49], + [-109, -119], + [-90, 123], + [-81, 204], + [-68, 61], + [-102, -39], + [-116, 73], + [-34, -5], + [-128, 91], + [-95, -70], + [-90, 130], + [-87, 54], + [-98, -129], + [-65, -46], + [-50, -170], + [47, -117], + [87, -48], + [137, -55], + [-7, -43], + [50, -93], + [159, -11], + [11, -87], + [-44, -115], + [31, -184], + [-36, -95], + [24, -103], + [-52, -85], + [153, 18], + [11, -112], + [49, -86], + [113, 13], + [28, -40], + [-37, -107], + [-53, -41], + [83, -37], + [-26, -96], + [-36, -59], + [8, -159], + [51, -87], + [-23, -58], + [50, -40], + [38, -88], + [-31, -42], + [62, -90], + [38, -256], + [-57, 4], + [-95, -48], + [-28, -91], + [16, -51], + [-43, -131], + [-119, -40], + [-28, -102], + [-99, 16], + [-173, -90], + [-17, -118], + [-70, 16], + [-60, -35], + [146, -79], + [-17, -63], + [-101, -5], + [-9, -67], + [-74, -25], + [-30, -66], + [-192, -179], + [-38, -153], + [-191, -14], + [5, -54], + [-147, -34], + [-57, -65], + [-87, -32], + [-51, -174], + [39, -62], + [-30, -150], + [-77, -147], + [6, -127], + [-71, -119], + [-15, -107], + [-92, 27], + [5, -94], + [-30, -49], + [2, -44] + ], + [ + [29020, 25553], + [-2, -8], + [-22, 5], + [-15, 6], + [-22, 5], + [-28, 3], + [-21, -1], + [-44, 3], + [-134, -1], + [-58, 33], + [-16, 7], + [-16, 9], + [-47, 32], + [-34, 5], + [-37, 8], + [-136, -82], + [-19, -14], + [-4, -18], + [-17, -19], + [-13, -20], + [-39, -8], + [-24, 2], + [-28, 14], + [-43, 62], + [-18, 50], + [-3, 25], + [-3, 36], + [-16, 114], + [-6, 12], + [-16, 9], + [-41, 278], + [-39, 111], + [4, 29], + [-5, 30], + [4, 15], + [40, 34], + [11, 13], + [5, 19], + [-2, 15], + [-1, 23], + [-43, -3], + [-9, -7], + [-13, -16], + [-16, -5], + [-2, -6], + [-8, -7], + [-44, -25], + [-25, -9], + [-85, -4], + [-29, 156], + [27, -4], + [10, 5], + [3, 6], + [1, 9], + [-13, 33], + [-6, 10], + [-77, 18], + [-15, -20], + [3, -76], + [-45, -60], + [-78, -7], + [-19, 2], + [-20, 2], + [-23, 16], + [-4, 52], + [-1, 26], + [3, 31], + [51, 24], + [61, 32], + [-136, 273], + [1, 15], + [3, 10], + [-4, 9], + [-9, 8], + [-5, 8], + [-1, 6], + [0, 4], + [29, 38], + [-23, 14], + [-2, -1], + [-10, -8], + [-48, 31], + [9, 35], + [8, 4], + [-9, 11], + [-6, -1], + [-20, 10], + [-5, 20], + [-24, 18], + [-8, 3], + [-8, 8], + [-26, 15], + [-40, 107], + [-69, 61], + [-152, 95], + [-4, 6], + [-2, 2], + [-1, 7], + [-1, 2], + [-14, 17], + [-9, 6], + [-6, 9], + [-3, 13], + [-7, 6], + [-28, 5], + [-21, 21], + [-84, -1], + [-151, -76], + [-32, 26], + [-31, -32], + [-9, -6], + [-15, -4], + [-7, 4], + [-5, 5], + [-11, 14], + [-27, 58], + [-9, 34], + [-16, 37], + [-18, 62], + [-7, 15], + [-41, 58], + [-15, 6], + [-8, 11] + ], + [ + [26562, 27660], + [-58, 71], + [68, 31], + [61, 72], + [102, 41], + [-23, 104], + [-157, 195], + [8, 108], + [60, 96], + [-14, 41], + [60, 42], + [34, 84], + [-23, 55], + [54, 88], + [78, 42], + [-9, 84], + [25, 60], + [68, 16], + [58, 46], + [55, 136], + [95, 45], + [100, 114], + [54, -47], + [4, -56], + [40, -95], + [30, -17], + [103, 51], + [46, -33], + [-4, -59], + [145, 0], + [37, 49], + [160, 109], + [-58, 64], + [-54, 101], + [103, 37], + [72, 2], + [54, 51], + [-29, 124], + [-59, 12], + [-72, 95], + [-75, -12], + [-46, 57], + [-95, 54], + [-130, 1], + [-13, 38], + [21, 155], + [-71, 61], + [-113, 45], + [-93, 85], + [10, 84], + [-58, 41], + [-92, -2], + [-52, -81], + [-115, 2], + [132, 79], + [33, 67], + [49, 27], + [-17, 58], + [-63, 22], + [-37, -22], + [-91, 37], + [8, 53], + [82, 46], + [57, -44], + [111, -6], + [53, 117], + [-26, 52], + [30, 143], + [-13, 102], + [-37, 33], + [-158, 48], + [-54, -34], + [-73, 32], + [2, 87], + [41, 13], + [-67, 126], + [162, 62], + [119, 2], + [69, 86], + [164, 44], + [-32, 117], + [-35, 36], + [38, 95], + [21, 364], + [-75, 55], + [-130, -69], + [-43, 6], + [-41, 69], + [18, 53], + [64, 51], + [131, 39], + [-40, 76], + [-37, 185], + [28, 65], + [-14, 160], + [-32, 98], + [-167, -7], + [-78, 188], + [54, 92], + [-29, 115], + [49, 170], + [114, 25], + [25, 46], + [89, 6], + [93, 49], + [78, 64], + [74, 130], + [-35, 45] + ], + [ + [27418, 33700], + [61, 97], + [33, 96], + [68, 134], + [-18, 55], + [19, 99], + [-47, 151], + [27, 31], + [-31, 125], + [36, 51], + [5, 87], + [30, 59], + [49, 3], + [45, -42], + [63, 18], + [45, 132], + [17, 164], + [-31, 26], + [18, 138], + [77, 150], + [23, 114], + [42, 94], + [42, 45], + [73, -18], + [33, -72], + [-4, -54], + [78, 7], + [11, 76], + [-38, 84], + [64, 4], + [22, 151], + [-14, 73], + [64, 34], + [79, 6], + [64, 110], + [4, 115], + [-32, 91], + [20, 134], + [84, 34], + [49, 74], + [52, -60], + [65, -24], + [124, 109], + [79, -21], + [15, 80], + [123, -44], + [22, -140], + [56, 9], + [7, 58], + [63, 51], + [74, -6], + [78, 101], + [92, -11], + [13, 44], + [101, -34], + [89, 92], + [-18, 72], + [82, 96], + [45, -7], + [83, 53], + [64, 17], + [-42, 116], + [83, 93], + [-52, 157], + [19, 90], + [136, 22], + [65, 25], + [116, 126], + [59, 20], + [-7, 122], + [-41, 72], + [43, 86], + [92, 17], + [106, -9], + [73, 80], + [120, -28], + [77, 87], + [-30, 54], + [11, 145], + [60, 98], + [43, 34], + [-4, 87], + [-60, 23], + [-49, 68], + [-73, 3], + [-14, 80], + [-165, -32], + [0, 61], + [-116, 32], + [2, 54], + [-46, 43], + [-3, 71], + [-72, 82], + [-81, -32], + [-115, -16], + [-65, 86], + [-91, 9], + [-59, 29], + [-80, -96], + [-85, 19], + [-51, -92], + [-57, 44], + [-7, 99], + [-55, 3], + [-16, 78], + [72, 26], + [23, 141], + [66, -2], + [14, 54], + [52, 23], + [31, 64], + [-39, 84], + [-68, 47], + [9, 62], + [-37, 72], + [-60, 41], + [20, 115], + [119, 52], + [78, -92], + [12, -52], + [53, -52], + [101, -62], + [86, -11], + [181, 80], + [49, 67], + [76, -47], + [109, 24], + [76, -47], + [23, -51], + [195, -6], + [143, 32], + [71, -56], + [52, 33], + [93, -32], + [200, -16], + [165, 22], + [48, -52], + [68, -9], + [62, 23], + [8, 75], + [83, -9], + [96, 37], + [68, 73], + [-12, 83], + [103, 43], + [102, -6], + [131, 94] + ], + [ + [32148, 39786], + [90, -37], + [71, -85], + [160, -87], + [182, 24], + [54, -18], + [146, 34], + [39, 46], + [98, 26], + [47, 91], + [11, 67], + [132, 78], + [36, 125], + [68, 56] + ], + [ + [33282, 40106], + [131, -4], + [39, -41], + [54, 4], + [49, -95], + [136, -40], + [7, -135], + [58, -77], + [23, -94], + [45, -6], + [25, -66], + [165, -42], + [86, -83], + [75, -122], + [6, -116], + [-39, -51], + [82, -78], + [51, -114], + [101, -34], + [251, -51], + [-12, 71], + [18, 67], + [83, 19], + [98, -71], + [5, -129], + [-30, -103], + [-86, -120], + [21, -49], + [-27, -121], + [87, -50], + [31, 53], + [50, -4], + [59, -101], + [-43, -206], + [12, -103], + [-59, -99], + [82, -108], + [47, 6], + [94, -107], + [-13, -75], + [43, -99], + [52, -40], + [24, 120], + [84, -107], + [135, -35], + [117, 41], + [85, -9], + [41, -84], + [-29, -151], + [-122, -56], + [-23, -116], + [-54, -82], + [-55, 3], + [-77, -69], + [15, -107], + [-181, -126], + [-153, 5], + [-71, -98], + [-94, -57], + [-6, -112] + ], + [ + [11058, 30906], + [6, -57], + [-83, -106], + [-40, 50], + [-100, 13], + [-42, 34], + [-89, 7], + [-58, -28], + [-60, 77], + [-69, 30], + [28, 62], + [-34, 127] + ], + [ + [10517, 31115], + [-2, 50], + [-63, 29], + [-37, 50], + [48, 58], + [63, -50], + [35, 47], + [122, 1], + [20, 76], + [79, 3], + [23, 68], + [89, -89], + [78, -12], + [-89, -120], + [-77, -73], + [-69, -17], + [5, -134], + [46, 24], + [58, -35], + [71, 48], + [-23, 51], + [87, 2], + [102, -36], + [-63, -59], + [4, -73], + [34, -18] + ], + [ + [10275, 31713], + [-49, -78], + [16, -70], + [-52, -83] + ], + [ + [10190, 31482], + [15, 145], + [70, 86] + ], + [ + [6102, 32310], + [33, -60], + [-188, 11] + ], + [ + [5947, 32261], + [17, 36], + [86, 29], + [52, -16] + ], + [ + [5864, 32366], + [1, -3] + ], + [ + [5865, 32363], + [-32, -51], + [67, -27] + ], + [ + [5900, 32285], + [-3, -29], + [-275, 33], + [-127, 67], + [-28, 33] + ], + [ + [5467, 32389], + [24, 65], + [-12, 121], + [33, 90], + [52, 68], + [4, 57], + [59, 120], + [58, -64], + [132, 17], + [104, -30], + [47, -121], + [-38, -69], + [-96, -36], + [21, -61], + [89, 3], + [7, -88], + [-68, -30], + [-19, -65] + ], + [ + [20120, 50296], + [-68, -42], + [-63, 17], + [-111, -66], + [29, -94], + [-77, -36], + [-88, -11], + [-51, 63], + [-53, 15], + [-37, 79], + [13, 40], + [-77, 61], + [-34, -15], + [-91, 45], + [-22, -43], + [-82, 30], + [-52, -32], + [-143, 24], + [-92, 76], + [-11, 59], + [62, 46], + [37, 82], + [72, 0], + [28, 73], + [50, 33], + [-11, 77], + [20, 69], + [-28, 131], + [11, 40], + [82, 37], + [114, 0], + [40, 84], + [173, -18], + [24, -55], + [105, 59] + ], + [ + [19789, 51124], + [67, -73], + [-51, -77], + [144, -148], + [102, -47], + [47, -60], + [-36, -109], + [55, -83], + [-64, -28], + [-26, -82], + [93, -121] + ], + [ + [13058, 20567], + [104, 4], + [5, 42], + [107, -46], + [68, 9], + [27, -86], + [-29, -118], + [73, -92], + [-68, -84], + [57, -108], + [-15, -44], + [32, -99], + [84, -32], + [-11, -87], + [40, -85], + [-143, -43], + [-28, -75], + [84, -32], + [44, -102], + [-71, -94], + [-19, -96], + [47, -143], + [-89, -113], + [26, -36], + [-70, -67], + [-83, -20], + [-39, 36], + [-82, -80], + [-79, -18], + [-35, -35] + ], + [ + [12995, 18823], + [-120, 52], + [15, 90], + [-37, 97], + [-87, 44], + [-58, 110], + [-79, 29], + [-17, 74], + [39, 21], + [16, 65], + [-74, 290], + [-43, 136], + [-47, 89], + [-70, -23], + [-72, 37], + [17, 65], + [60, 10], + [85, -24], + [10, 75], + [-56, -6], + [-28, 55], + [-104, 21], + [8, 78], + [-83, -9], + [-28, 127], + [-51, 100], + [2, 66], + [-99, 237], + [-16, 10] + ], + [ + [12078, 20739], + [134, -13], + [17, 27], + [83, -17], + [74, 39], + [99, 133], + [95, -128], + [81, -2], + [57, -125], + [10, -135], + [58, -46], + [172, 40], + [100, 55] + ], + [ + [5865, 32363], + [35, -78] + ], + [ + [9871, 33296], + [62, -51], + [-64, -66], + [-24, 100], + [26, 17] + ], + [ + [3167, 36310], + [63, -79], + [-44, -43], + [-89, 41], + [-4, 49], + [74, 32] + ], + [ + [3807, 36527], + [29, -18], + [27, -51], + [-63, -27], + [-45, 1], + [11, 76], + [41, 19] + ], + [ + [4006, 36619], + [39, -58], + [-42, -32], + [-97, -20], + [6, 76], + [94, 34] + ], + [ + [815, 38285], + [119, -50], + [6, -42], + [-93, -30], + [-71, 13], + [39, 109] + ], + [ + [628, 38670], + [48, -53], + [-21, -122], + [-41, 3], + [-50, 140], + [64, 32] + ], + [ + [648, 38939], + [7, -50], + [-95, -93], + [-17, 46], + [105, 97] + ], + [ + [376, 39421], + [87, -47], + [62, 26], + [-17, -156], + [-61, -170], + [-70, -63], + [-26, -68], + [-115, -45], + [-19, 61], + [-146, -32], + [-71, 45], + [44, 71], + [136, 19], + [26, 46], + [127, 146], + [-9, 60], + [52, 107] + ], + [ + [265, 39464], + [10, -5], + [21, -42], + [-14, -90], + [19, -70], + [-64, -18], + [-60, -50], + [-8, 127], + [30, 86], + [43, 16], + [1, 15], + [-17, 15], + [39, 16] + ], + [ + [680, 39481], + [51, -30], + [-16, -68], + [10, -78], + [-65, -41], + [-111, 14], + [42, 71], + [-19, 74], + [108, 58] + ], + [ + [458, 39590], + [47, -17], + [48, -85], + [-85, -103], + [-127, 109], + [117, 96] + ], + [ + [576, 39729], + [15, -9], + [-17, -96], + [8, -26], + [-54, -38], + [-23, 16], + [-47, 17], + [-88, -45], + [1, 99], + [66, 8], + [75, 34], + [15, 27], + [49, 13] + ], + [ + [765, 39747], + [80, -88], + [-49, -75], + [-63, -43], + [-67, 24], + [-8, 55], + [96, 60], + [11, 67] + ], + [ + [648, 39855], + [43, -47], + [37, -111], + [-142, -99], + [4, 109], + [11, 11], + [-29, 14], + [-42, -4], + [42, 99], + [76, 28] + ], + [ + [534, 39861], + [4, -83], + [-65, -90], + [-114, -28], + [-29, -206], + [-69, 13], + [-26, -10], + [-12, -8], + [0, -5], + [16, -11], + [-1, -14], + [-47, -16], + [-27, -86], + [-14, -112], + [-38, -71], + [-100, 116], + [73, 73], + [-36, 112], + [98, 110], + [55, 132], + [103, -4], + [36, 24], + [8, 83], + [62, 55], + [56, -38], + [67, 64] + ], + [ + [13491, 37705], + [58, -75], + [47, -117], + [-64, -35], + [88, -127], + [82, 20], + [97, -11], + [35, -127], + [-31, -101], + [-56, -13], + [0, -55], + [-80, -127], + [-41, -201], + [-45, -17], + [-188, 26], + [-92, -78], + [-50, -107], + [-123, -82], + [-66, -18], + [-96, 58], + [-87, -17], + [-2, -58], + [92, -20], + [-16, -99], + [49, 8], + [10, -82], + [40, -29], + [72, 44], + [179, -2], + [59, -34], + [21, -73], + [-74, -37], + [-92, -78], + [-16, -49], + [-125, 24], + [-49, 91], + [-88, -26], + [-28, -173], + [42, -40], + [-5, -107], + [103, -21], + [22, -270], + [82, 12], + [-16, -94], + [-55, -17], + [-80, -81], + [-2, -39], + [117, -35], + [-17, -75] + ], + [ + [13102, 35141], + [-218, -72], + [-52, -39], + [-316, -155], + [-83, -1], + [-31, -61], + [41, -162], + [97, -72], + [17, -101], + [-27, -51], + [-89, -27], + [-36, 15], + [-91, -34], + [81, -62], + [21, -104], + [59, -133], + [169, 57], + [81, 8], + [20, 42], + [186, 40], + [260, 0], + [45, -69], + [69, 48], + [73, -32], + [45, 52], + [96, -43], + [-17, -103], + [-44, -36], + [-187, -49], + [-82, 18], + [-55, -31], + [-87, -9], + [-140, 14], + [-12, -68], + [-198, -76], + [-29, -221], + [-124, -82], + [-132, 12], + [9, -58], + [-35, -47], + [5, -116], + [-58, 23], + [-36, -40], + [-84, 6], + [-63, -38], + [-70, 3], + [-98, -45], + [125, -73], + [93, 5], + [26, -146], + [82, -47], + [50, 7], + [19, -61], + [198, -30], + [-22, -116], + [76, -109], + [1, -87], + [30, -19], + [-10, -165], + [20, -61], + [-63, -44], + [-70, 18], + [-56, -85], + [-46, 18], + [8, -182], + [-89, -51], + [-41, 2], + [-86, -81], + [-103, 26], + [-78, -36], + [-64, 38], + [-32, 106], + [-68, 46], + [-62, 5], + [-71, 60], + [-71, -46], + [-2, 76], + [-33, 72], + [-52, -7], + [-41, -114], + [-80, -29], + [81, -132], + [89, -27], + [-11, -205], + [-59, -65], + [-58, -121], + [-18, -76], + [49, -230], + [-36, -58], + [14, -128], + [-112, -16], + [-143, 29], + [-37, -31], + [-1, -93], + [-68, -59], + [-102, -14] + ], + [ + [10517, 31115], + [-189, 33], + [-75, -44], + [-47, -118], + [-91, -62], + [-110, 15] + ], + [ + [10005, 30939], + [20, 146], + [-12, 104], + [32, 110], + [42, 27], + [2, 69], + [101, 87] + ], + [ + [10275, 31713], + [60, 100], + [-3, 83], + [25, 55], + [-24, 156], + [-25, 22], + [-51, 192], + [40, 28], + [-78, 82], + [9, 39], + [-104, 226], + [-13, 60], + [-70, 48], + [-66, 215], + [62, 60], + [-101, 27], + [-13, 63], + [35, 92], + [-77, 41], + [-35, -11], + [-13, -152], + [-73, 4], + [-16, 308], + [-48, 63], + [-8, 143], + [63, 78], + [2, 68], + [92, 121], + [-27, 80], + [49, 137], + [-105, -45], + [-63, 98], + [17, 82], + [49, 86], + [97, 25], + [71, 56], + [41, -31], + [111, 61], + [-83, 57], + [-55, -26], + [-250, 5], + [-110, -51], + [-51, 50], + [-10, 77], + [52, 68], + [19, 115], + [36, 73], + [-99, 59], + [-46, 198], + [11, 136], + [88, 360], + [53, 94], + [65, 53], + [104, 8], + [113, -75], + [127, -24], + [91, 146], + [42, 24], + [113, -56], + [-37, 135], + [-93, -38], + [-112, -78], + [-149, 13], + [-120, 109], + [-63, -12], + [-77, -57], + [-89, -6], + [-60, -53], + [-77, 32], + [-78, 135], + [-41, -38], + [0, -133], + [-58, -101], + [-6, -55], + [-138, -30], + [-98, -415], + [-62, 46], + [20, 74], + [-47, 94], + [-57, -141], + [38, -167], + [56, -84], + [8, -245], + [22, -63], + [-23, -78], + [102, -219], + [-82, -131], + [-31, -160], + [-42, -106], + [-223, -269], + [-54, -92], + [3, -33], + [-63, -94], + [73, -101], + [-130, -69], + [-18, -27], + [-124, -42], + [-87, -55], + [-79, -15], + [-262, -125], + [-72, -85], + [-96, 1], + [-90, -56], + [-91, -18], + [-4, -38], + [-234, -70], + [-33, 12], + [-83, -135], + [-88, -49], + [-91, -8], + [-52, -27], + [-109, -17], + [-265, -133], + [-90, -18], + [-27, -54], + [-138, -3], + [-19, -45], + [-58, -11], + [-132, 32], + [-63, -38] + ], + [ + [5947, 32261], + [-40, 4], + [0, 40], + [-43, 61] + ], + [ + [5467, 32389], + [-63, -1], + [-131, 43], + [-77, 53], + [-109, 44], + [-166, 91], + [-70, 72], + [-63, 15], + [-97, 62], + [-207, 165], + [-279, 244], + [-204, 218], + [-185, 215], + [-253, 307], + [-209, 240], + [113, 117], + [-45, 132], + [-115, -15], + [46, -45], + [-17, -47], + [45, -46], + [-41, -72], + [-76, 64], + [-153, 164], + [-40, 2], + [-115, 101], + [-134, 137], + [-154, 128], + [-55, 70], + [-114, 79], + [-193, 179], + [-161, 178], + [-173, 203], + [-58, 52], + [-169, 199], + [-62, 85], + [8, 28], + [-45, 119], + [51, 92], + [-5, 34], + [61, 111], + [51, 59], + [158, 90], + [-11, -57], + [-67, -53], + [54, -82], + [90, 32], + [32, -23], + [147, 51], + [21, -72], + [-37, -19], + [-51, -176], + [94, -93], + [44, -19], + [149, 41], + [94, 66], + [14, 61], + [174, -34], + [78, 45], + [75, 7], + [3, 40], + [68, 55], + [4, 109], + [61, -52], + [20, -86], + [88, -42], + [120, 24], + [21, 80], + [77, 4], + [-18, 129], + [110, 14], + [114, -125], + [32, 4], + [47, 108], + [103, -9], + [76, 60], + [6, 33], + [48, 57], + [19, -2], + [6, 38], + [214, 67], + [48, -24], + [215, 11], + [64, 72], + [16, 80], + [45, 30], + [56, 91], + [20, 131], + [103, 72], + [18, 89], + [32, 20], + [66, 148], + [48, 70], + [102, 77], + [17, 55], + [92, 130], + [48, 145], + [-122, -29], + [-90, -84], + [-8, -145], + [-21, -44], + [-73, -31], + [-139, 33], + [-79, 63], + [-49, 11], + [-45, -59], + [-104, -21], + [-65, 43], + [0, -85], + [-57, -36], + [-256, -21], + [-84, -16], + [-110, -64], + [-79, 17], + [-149, -51], + [-99, -71], + [-13, -60], + [-70, -98], + [-45, -21], + [-46, 34], + [-114, 24], + [-54, -18], + [-98, 60], + [-64, 11], + [-109, -39], + [-60, 15], + [-99, 67], + [-182, 54], + [-114, -19], + [-153, 33], + [-155, 86], + [-63, 50], + [-243, 136], + [-339, 206], + [-47, 36], + [-110, 42], + [-59, 54], + [-183, 122], + [-56, 74], + [-91, 80], + [61, 15], + [61, 89], + [-20, 68], + [12, 110], + [-69, 84], + [-84, -3], + [-19, 97], + [-52, 33], + [-67, 127], + [-33, 115], + [-1, 221], + [62, 62], + [23, 61], + [67, 72], + [81, 29], + [78, 62], + [54, 92], + [65, 50], + [104, 27], + [-7, 53], + [-126, 15], + [-58, -54], + [-106, 4], + [-50, -43], + [-88, -149], + [-40, 61], + [15, 79], + [60, 51], + [47, 94], + [92, 54], + [-55, 44], + [-64, 3], + [-48, 55], + [21, 36], + [444, -2], + [23, 170], + [10, 574], + [19, 24], + [118, 33], + [47, -232], + [110, -22], + [53, 139], + [56, 41], + [51, -90], + [95, -20], + [158, 91], + [251, -77], + [165, 78], + [78, 18], + [114, -24], + [153, 17], + [153, -43], + [219, 53], + [177, -168], + [95, -70], + [413, -25], + [246, 12], + [54, 33], + [63, 74], + [72, 160], + [89, 36], + [190, 39], + [132, 52], + [161, 32], + [196, 77], + [254, 77], + [80, -43], + [-42, -99], + [-44, -33], + [34, -137], + [-34, -47], + [47, -57], + [136, -35], + [155, -10], + [175, 5], + [106, 57], + [89, 22], + [-20, 78], + [164, 128], + [85, 33], + [32, -31], + [75, 1], + [91, 78], + [74, 22], + [26, 53], + [-90, 51], + [-142, -5], + [-46, 20], + [17, 186], + [-37, 43], + [5, 134], + [44, 72], + [56, 19], + [134, 97] + ], + [ + [6420, 41445], + [27, -28], + [392, -141], + [63, 82], + [67, 26], + [53, -76], + [91, 39], + [145, 83], + [107, 11], + [175, -19], + [99, -86], + [121, 48], + [64, 0], + [86, 34], + [62, -18], + [-2, -91], + [76, -16], + [49, 20], + [5, 113], + [121, -24], + [18, -81], + [130, 69], + [1, 48], + [129, 65], + [72, -20], + [-1, -102], + [70, -45], + [75, 2], + [77, -57], + [97, 54], + [99, -25], + [4, -53], + [-57, -44], + [46, -69], + [51, -28], + [138, 33], + [63, -120], + [76, 17], + [60, -34], + [-25, -76], + [43, -51], + [18, -72], + [100, 26], + [-21, 74], + [91, 126], + [102, -75], + [155, -37], + [75, 8], + [1, -94], + [86, -134], + [182, -7], + [116, 17], + [72, -33], + [51, -58], + [118, 75], + [-29, 77], + [58, 67], + [-22, 69], + [90, 33], + [64, 0], + [96, 68], + [28, -87], + [-2, -85], + [-47, -59], + [93, -60], + [116, -42], + [68, 58], + [45, -25], + [-45, -71], + [-53, 2], + [-30, -78], + [-62, 15], + [-13, -64], + [-51, -40], + [-53, -97], + [-20, -83], + [90, -103], + [106, -67], + [114, -30], + [-51, -123], + [115, -79], + [84, 38], + [78, 81], + [19, 122], + [76, -6], + [0, -57], + [97, -85], + [-7, -122], + [24, -55], + [-3, -119], + [-74, -40], + [-58, -119], + [28, -75], + [-26, -70], + [33, -58], + [53, 40], + [45, -11], + [67, -61], + [62, -101], + [68, -28], + [-19, -142], + [55, -58], + [97, 100], + [106, -5], + [92, -66], + [-52, -212], + [47, -40], + [-32, -40], + [-24, -102], + [157, 7], + [28, -85], + [105, 92], + [40, -56], + [96, 29], + [88, -118], + [61, -136], + [98, 10], + [52, 92], + [62, -101], + [92, -12], + [35, -86], + [127, -2], + [65, -68], + [8, -88], + [-33, -47], + [5, -64], + [62, -49], + [61, -12], + [54, 92], + [93, -32], + [49, -52], + [36, -86], + [-13, -55], + [89, -74] + ], + [ + [20642, 54632], + [37, -31], + [-48, -78], + [1, -60], + [-84, -56], + [-80, -123], + [-50, -105], + [-58, -46], + [-51, 0], + [-28, -52], + [7, -81], + [-89, -42], + [-92, -66], + [-135, -37], + [6, -33], + [-50, -105], + [-156, -200], + [7, -67], + [-59, -130], + [-7, -55], + [-75, -41], + [-12, -62], + [60, -72], + [-120, -270], + [53, -110], + [-55, -45], + [85, -110], + [-12, -68], + [47, -33], + [-32, -47], + [31, -88], + [-48, -17], + [7, -62], + [58, -11], + [17, -65], + [-55, -102], + [30, -81], + [-35, -22], + [28, -107], + [-29, -65], + [26, -44], + [-31, -77], + [72, -55], + [12, -67], + [114, -99], + [-51, -102], + [57, -142], + [-78, -24], + [12, -53] + ], + [ + [20120, 50296], + [50, -26], + [82, -90], + [62, -10], + [22, -53], + [85, -42], + [-11, -44], + [54, -83], + [-61, -40], + [65, -79], + [-7, -61], + [100, -207], + [-14, -48], + [-72, -17], + [1, -93], + [-58, -44], + [10, -126], + [127, -129], + [1, -64], + [-37, -78], + [-111, 2], + [3, -88], + [-61, -38], + [-44, 37], + [-45, -29], + [23, -52], + [-160, 1], + [-58, -68], + [-82, -55] + ], + [ + [19984, 48672], + [-91, -48], + [-186, 62], + [-6, -60], + [-101, -2], + [-63, 55], + [-75, 24], + [-34, -76], + [121, -115], + [-54, -22], + [-47, 48], + [-83, -15], + [-33, -83], + [-19, -113], + [-80, 41], + [-54, -42], + [-40, 53], + [51, 49], + [-57, 43], + [15, 154], + [27, 115], + [41, -4], + [-1, 139], + [-15, 71], + [13, 123], + [-14, 45], + [61, 170], + [34, 168], + [-44, 11], + [-127, 100], + [-45, 76], + [-67, 0], + [-95, -72], + [3, -84], + [-80, -25], + [-35, -40], + [-64, 7], + [-61, -80], + [-76, -12], + [27, -170], + [-134, -21], + [-115, -89], + [-35, 19], + [17, 138], + [-182, 17], + [31, 92], + [61, 47], + [-56, 99], + [-77, 6], + [-170, -20], + [-14, 53], + [-98, 39], + [-68, -34], + [171, -93], + [-52, -50], + [12, -78], + [35, -17], + [-37, -83], + [-102, 1], + [0, 44], + [-86, 50], + [-39, -33], + [-123, 6], + [57, -66], + [-64, -20], + [-45, -68], + [56, -45], + [-21, -146], + [80, -143], + [-73, -94], + [-99, 60], + [-13, 49], + [-75, 32], + [-17, -40], + [-67, -7], + [-89, 34], + [-74, 4], + [4, 104], + [-31, 64], + [11, 58], + [-28, 61], + [41, 112], + [79, -1], + [-73, 110], + [-90, 22], + [129, 132], + [73, 51], + [103, -1], + [-48, 120], + [-92, 40], + [17, 91], + [-71, 35], + [-66, 98], + [-64, 15], + [-11, 55], + [-263, 105], + [-54, 100], + [-95, 35], + [4, 34], + [-103, 27], + [-54, 79], + [-80, 30], + [-43, 138], + [-118, 20], + [-36, 80], + [-19, 194], + [-32, 91], + [-39, 35], + [33, 114], + [-56, 53], + [1, 89], + [-47, 65], + [67, 35], + [42, 79], + [-12, 81], + [-83, 22], + [-85, -8], + [-10, 111], + [-109, 13], + [0, 93], + [34, 41], + [-77, 33], + [17, 63], + [70, 44], + [-46, 174], + [-143, -65], + [10, 133], + [-94, -46], + [-11, -44], + [-168, -24], + [-33, 56], + [-72, -52], + [-152, -31], + [-120, 136], + [-72, -45], + [-83, 23], + [-6, 85], + [-51, 106], + [-171, 89], + [-88, -10], + [-74, -89], + [-97, -15], + [-45, 35], + [-134, 8], + [-19, -95], + [-101, -7], + [9, 61], + [-59, 74], + [-6, 45], + [-86, 44], + [8, 93], + [97, -15], + [72, 168], + [-88, 56], + [15, 229], + [55, 154], + [4, 73], + [-148, 2], + [-27, -29], + [-118, 7], + [-15, 100], + [58, 90], + [90, 30], + [46, 61], + [-43, 85], + [-63, 12], + [30, 82] + ], + [ + [13922, 53612], + [147, -66], + [119, -25], + [0, 43], + [90, 62], + [32, 52], + [63, -23], + [114, 29], + [56, 42], + [106, -77], + [164, -41], + [42, -90], + [59, -29], + [44, -77], + [104, 58], + [62, -6], + [27, 77], + [55, -36], + [-38, -120], + [37, -98], + [50, 7], + [126, 76], + [41, -20], + [-7, -78], + [73, -102], + [-72, -49], + [-21, -116], + [-66, -26], + [32, -91], + [105, -54], + [-22, -56], + [59, -71], + [116, 23], + [31, 62], + [-54, 34], + [60, 68], + [23, 88], + [97, 98], + [37, -4], + [40, 115], + [103, 58], + [1, 50], + [136, -78], + [110, -19], + [15, -50], + [131, 22], + [6, 45], + [90, -1], + [69, -41], + [18, 124], + [94, 8], + [51, 31], + [53, -43], + [53, 20], + [96, -146], + [74, 7], + [81, -53], + [84, 0], + [69, 43], + [83, -5], + [72, 75], + [8, 56], + [85, -21], + [50, 47], + [60, 3], + [61, 62], + [75, 22], + [-7, 71], + [-93, 20], + [-9, 121], + [55, -5], + [-32, 139], + [21, 71], + [68, 106], + [2, 64], + [-57, 45], + [13, 65], + [89, -86], + [170, -21], + [45, 42], + [90, -1], + [26, 70], + [-45, 59], + [39, 36], + [65, -44], + [-5, -74], + [57, -109], + [85, -8], + [23, -47], + [118, 51], + [76, -45], + [66, 37], + [22, 91], + [-15, 82], + [36, 83], + [-107, 111], + [177, 150], + [59, 13], + [90, 81], + [-85, 78], + [107, 77], + [131, -34], + [53, 50], + [71, -58], + [73, -106], + [65, 60], + [-82, 111], + [8, 122], + [41, 10], + [17, 71], + [-77, 37], + [62, 137], + [-30, 47], + [-90, 47], + [10, 72], + [-98, -25], + [2, 58] + ], + [ + [19000, 55509], + [41, 67], + [-42, 92], + [-58, 23], + [-71, 79], + [2, 69] + ], + [ + [18872, 55839], + [88, 55], + [28, -97], + [65, -41], + [110, 62], + [55, -139], + [58, -60], + [97, 7], + [33, -167], + [75, 15], + [122, -41], + [112, -97], + [20, -116], + [-11, -90], + [-101, -75], + [57, -66], + [105, -30], + [38, -105], + [108, 9], + [26, -41], + [104, -30], + [78, 19], + [75, -36], + [33, -58], + [68, 46], + [59, -2], + [-40, -84], + [124, 31], + [41, 73], + [72, -119], + [71, -30] + ], + [ + [22480, 59550], + [83, -50], + [-23, -78], + [88, -70], + [89, -17], + [-126, -189], + [6, -136], + [-55, -73], + [96, -8], + [133, 13], + [109, -69], + [3, -70], + [-44, -69], + [49, -81], + [113, -38], + [10, -44], + [83, -98], + [103, -96], + [75, -10], + [-56, -173], + [-46, -93], + [-9, -114], + [-61, -49], + [-3, -48], + [94, -235], + [100, -5], + [10, -66], + [94, -77], + [-9, -63], + [-56, -57], + [-104, -63], + [-64, -18], + [-31, -46], + [20, -78], + [62, 7], + [113, -87], + [-7, -81], + [-36, -35], + [112, -49], + [29, -62], + [-25, -56], + [85, -67], + [26, -71], + [61, -26] + ], + [ + [23571, 56655], + [6, -59], + [56, -27], + [24, -66], + [56, -26], + [14, -85], + [41, -65], + [-120, -29], + [-84, 24], + [-52, -27], + [-135, 101], + [-52, 133], + [-101, -24], + [-217, 8], + [-32, 50], + [-78, 38], + [-75, -5], + [-64, -63], + [-148, -7], + [-8, 40], + [-103, 90], + [-58, 6], + [-53, 59], + [-155, 1], + [-65, -39], + [-80, -84], + [-105, -27], + [-81, 19], + [-122, -90], + [-138, -17], + [-49, -65], + [-116, 50], + [-116, -46], + [-51, -79], + [-60, -32], + [-19, -69], + [-83, -63], + [43, -113], + [-62, -81], + [-94, 16], + [-45, -63], + [27, -63], + [105, 8], + [-22, -124], + [-85, 21], + [-29, -71], + [28, -33], + [-87, -133], + [-36, -23], + [116, -135], + [-17, -57], + [72, -48], + [20, -55], + [-95, -79], + [48, -85], + [115, -22], + [14, -53], + [-29, -61], + [-69, -17], + [-234, -128], + [-127, -26], + [-90, -47], + [1, -29] + ], + [ + [20616, 54679], + [26, -47] + ], + [ + [18872, 55839], + [-97, 76], + [-29, 56], + [-98, 15], + [-128, 79], + [-24, 114], + [59, 131], + [-80, 41], + [20, 54], + [-18, 73], + [99, 70], + [-143, 155], + [-54, -56], + [-77, 62], + [-49, -22], + [-48, 86], + [-85, 34], + [-81, 124], + [-2, 43], + [-68, 42], + [-96, -30], + [31, -53], + [1, -79], + [-62, -44], + [-210, -49], + [-74, 4], + [-14, 80], + [-59, 27], + [-12, 68], + [49, 51], + [-62, 90], + [-97, 216], + [-179, 253], + [4, 38], + [-60, 97], + [-71, 177], + [-51, 83], + [68, 15], + [-7, 56], + [-121, 235], + [-128, 74], + [-91, 16], + [-134, 113], + [-52, -3], + [-40, 54], + [-94, 41], + [-112, -26], + [-43, 36], + [69, 42], + [99, 107], + [2, 71], + [-79, 19], + [5, 115], + [117, 68], + [133, 22], + [237, 244], + [61, 45], + [119, 30], + [-23, 86], + [-132, 117], + [-9, 51], + [47, 126] + ], + [ + [16899, 59699], + [112, 157], + [-55, 85], + [30, 177], + [-85, 131], + [-116, 67], + [-74, 117], + [46, 84], + [130, 1], + [72, -34], + [74, -72], + [184, 77], + [143, 118], + [25, 83], + [129, 42], + [187, 23], + [39, 45], + [43, 120], + [185, 123], + [56, 59], + [186, -7], + [59, 37], + [114, 32], + [85, -13], + [29, -70], + [60, -26], + [154, 44], + [73, -5], + [66, 105], + [8, 68], + [73, -30], + [55, 16], + [-52, -173], + [11, -41], + [108, -102], + [55, 6], + [88, -186], + [178, -102], + [81, 24], + [87, -61], + [62, 32], + [74, -16], + [0, -52], + [46, -103], + [53, 5], + [103, -46], + [133, -99], + [72, -70], + [76, 6], + [5, 72], + [46, 57], + [102, 6], + [65, -50], + [64, 57], + [77, 2], + [136, 120], + [69, 5], + [89, 41], + [26, 62], + [104, -33], + [171, -153], + [-63, -94], + [140, -58], + [79, -55], + [13, -60], + [112, -77], + [-32, -147], + [37, -32], + [124, -202], + [130, 0], + [18, 85], + [52, -7], + [57, 84], + [50, -45], + [44, 64], + [75, 16], + [30, -31], + [90, 27], + [26, 44], + [130, 42], + [-18, 58], + [126, 59], + [61, -7], + [11, -95], + [-32, -109], + [17, -78], + [39, -35], + [-125, -88], + [-77, -18], + [5, -111], + [-45, -49], + [70, -74], + [158, 124], + [63, -42] + ], + [ + [16899, 59699], + [-77, -89], + [-73, -117], + [-129, -24], + [-75, -135], + [-140, -68], + [-122, -16], + [-104, -48], + [-46, -49], + [-19, -97], + [-106, 46], + [13, 50], + [-129, -35], + [-183, 47], + [-20, -17] + ], + [ + [15689, 59147], + [-200, 143], + [-69, 7], + [-45, 54], + [-70, -28], + [-143, 154], + [-116, 27], + [-93, -97], + [-85, 10], + [-34, 31], + [-75, -3], + [-95, 61], + [-83, 8], + [-43, -28], + [-221, 2], + [-42, 71], + [2, 53], + [-61, 50], + [-23, 118], + [74, 127], + [-47, 61], + [-9, 60], + [38, 112], + [72, 139], + [-43, 26], + [-85, -35], + [-1, -72], + [-60, -79], + [-104, -6], + [-78, -33], + [-144, 94], + [-79, 146], + [-2, 81], + [-34, 56], + [-145, 10], + [-66, 27], + [6, 50], + [57, 56], + [11, 110], + [-212, 82], + [-110, -13], + [-63, 148], + [-142, 132], + [-64, 38], + [-124, 18], + [-27, 23], + [-2, 119], + [25, 29], + [120, -5], + [53, 24], + [140, 170], + [40, 91], + [-13, 97], + [17, 69], + [-19, 61], + [-121, 142], + [-77, 70], + [-75, -19], + [-56, 22], + [-63, 113], + [-53, 162], + [-43, 62], + [22, 46], + [74, 28], + [62, 54], + [46, 76], + [90, 41], + [88, 3], + [88, 28], + [109, 63], + [91, 133], + [4, 115], + [-31, 91], + [-75, 57], + [-117, 1], + [-102, 35], + [-62, -37], + [-178, -36], + [-13, 18], + [-224, 6], + [-27, 98], + [41, 50], + [-1, 59], + [160, 207], + [-1, 122], + [-78, 86], + [-46, 94], + [-45, 40], + [-127, -50], + [-75, 43], + [-98, 7], + [31, 131], + [171, 132], + [96, 51], + [-26, 45], + [19, 73], + [116, 61], + [-46, 169], + [73, 117], + [115, 30], + [64, -52], + [236, 19], + [118, 95], + [148, 61], + [72, 80], + [95, -16], + [65, 30], + [216, -30], + [72, -35], + [162, -12], + [129, -85], + [71, -76], + [125, -28], + [236, -25], + [128, 16], + [275, -100], + [272, 49], + [141, -38], + [131, -15], + [-9, -66], + [195, -113], + [97, -31], + [245, -26], + [188, 6], + [221, -43], + [125, -13], + [97, 42], + [110, 94], + [166, 70], + [30, 45], + [150, 26], + [79, 80], + [109, 3], + [79, -58], + [79, -7], + [258, 116], + [90, 88], + [153, 10], + [113, 65], + [71, 64], + [98, -19], + [105, -59], + [242, -2], + [34, 14], + [42, 88], + [84, 100], + [-13, 132], + [52, 72], + [107, 6], + [115, 82], + [44, -1], + [147, -68], + [104, -4], + [28, 39], + [8, 182], + [120, -25], + [194, 71], + [273, 193], + [356, 222], + [94, 74], + [219, 133], + [144, 100], + [187, 154], + [245, 155], + [35, -98], + [57, -68], + [86, 27], + [51, 76], + [87, 31], + [195, 12], + [69, -45], + [-29, -39], + [-168, -90], + [-68, -87], + [26, -196], + [35, -103], + [87, -151], + [129, -91], + [2, -78], + [-75, -67], + [111, -258], + [113, -207], + [49, -267], + [90, -164], + [80, -64], + [89, -26], + [137, -10], + [43, -35], + [25, -72], + [141, -5], + [121, 25], + [70, -5], + [92, -67], + [108, -123], + [154, -77], + [72, -83], + [165, -125], + [186, -72], + [130, -98], + [26, -102], + [-82, -164], + [-187, -140], + [-312, -143], + [-50, -54], + [12, -50], + [107, -33], + [7, -80], + [-106, -86], + [4, -171], + [54, -116], + [73, -90], + [19, -72], + [-19, -55], + [-145, -154], + [45, -144], + [119, -196], + [87, -114], + [215, -196], + [113, -72], + [35, -47], + [172, -119], + [18, -155], + [146, -66], + [382, -26], + [137, 2], + [72, -25], + [2, -100], + [-98, -175], + [-36, -148], + [33, -90], + [49, -55], + [98, -65], + [55, -78], + [17, -126], + [44, -63], + [93, -51], + [30, -44], + [52, -180], + [-41, -146], + [-81, -37], + [-98, 2], + [-258, -152], + [-58, -82], + [-51, -6], + [-60, 67], + [-48, 11], + [-99, -27], + [-119, -62], + [-68, -78], + [7, -79], + [-37, -102], + [-81, 30], + [-94, -41], + [-68, -6], + [-51, -47], + [-123, 53], + [-88, 110], + [-85, 25], + [-121, 115], + [-35, 231], + [33, 54], + [-44, 198], + [-52, 27], + [-181, -108], + [-48, -88], + [-64, -15], + [-97, 18], + [-72, -14], + [-90, -76], + [-72, 14], + [-89, -54], + [-3, -103] + ], + [ + [43098, 42693], + [-36, -157], + [3, -123], + [45, -54], + [157, -83], + [92, -125], + [122, -116], + [25, -91], + [-15, -35], + [-151, -89], + [-71, -158], + [-56, -84], + [134, -38], + [-32, -101], + [56, -36], + [-22, -115], + [18, -43], + [-50, -72], + [-86, -27], + [-114, 26], + [5, -163], + [42, -54], + [-65, -84], + [21, -116], + [-80, -113], + [-11, -69], + [-165, -132], + [-75, 5], + [-21, -85], + [73, -14], + [57, -70], + [-16, -59], + [-136, 31], + [-105, -4], + [55, -68], + [-51, -20], + [-25, -83], + [-68, 1], + [-94, 64], + [-12, -147], + [23, -69], + [-66, -26], + [-71, -76], + [-109, 55], + [-73, 17], + [-42, -33], + [-48, 22], + [37, 61], + [-128, 2], + [-67, 24], + [-24, -41], + [59, -126], + [71, -33], + [-15, -50], + [16, -101], + [-60, -36], + [-43, -108], + [-57, -2], + [6, 70], + [-77, -1], + [-113, 26], + [-12, -40], + [79, -73], + [-39, -58], + [-94, 12], + [-108, 39], + [-49, 47], + [-157, 65], + [-44, -51], + [-42, 54], + [-64, 32], + [-111, -134], + [-103, -56], + [42, -50], + [-54, -205], + [-119, -23], + [-59, 46], + [-137, -34], + [-128, -47], + [-136, -77], + [-104, 14], + [-80, -8], + [-192, -205], + [-13, -183], + [-114, -47], + [-166, -18], + [-8, 47], + [-92, 44], + [-80, 5], + [27, 62], + [-26, 54], + [22, 56], + [-32, 42], + [-223, 32], + [-58, -52], + [67, -164], + [-46, -5], + [-181, -76], + [-70, 38], + [-71, 11], + [-32, -59], + [8, -95], + [72, -76], + [-65, -28], + [12, -80], + [-22, -62], + [-78, -93], + [19, -164], + [50, 5], + [44, -83], + [82, -67], + [64, 0], + [84, 38], + [120, -5], + [17, -74], + [104, -49], + [53, 7], + [131, -186], + [56, 5], + [25, -54], + [108, 8], + [40, 35], + [116, -50], + [61, 18], + [73, -52], + [51, 48], + [103, -23], + [75, 11], + [33, -54], + [-56, -71], + [-37, 25], + [-83, -71], + [67, -44], + [-66, -84], + [2, -74], + [-39, -120], + [84, -39], + [54, -86], + [156, -27], + [150, -87], + [41, -42], + [-5, -134], + [38, -49], + [120, 10], + [110, -14], + [61, -69], + [12, -161], + [-97, -9], + [41, -111], + [91, -14], + [85, -48], + [-32, -165], + [130, -100], + [-6, -67], + [-144, 19], + [-64, -99], + [-95, -23], + [-55, 17] + ], + [ + [40757, 35745], + [-90, 10], + [-74, 38], + [-6, 59], + [-123, 48], + [-25, 36], + [-118, 12], + [-54, 88], + [-167, -80], + [-157, 90], + [-143, 185], + [-50, 33], + [-98, 22], + [-40, 49], + [-222, 46], + [-71, 122], + [-67, 48], + [-23, -68], + [-129, -80], + [-35, -101], + [87, -78], + [35, 5], + [28, -99], + [-63, -101], + [60, -20], + [-6, -57], + [-105, -142], + [125, -134], + [-71, -124], + [18, -43], + [-132, -217], + [-30, 0], + [-76, -95], + [-242, 1], + [-62, 69], + [50, 64], + [-19, 35], + [39, 60], + [94, 0], + [-63, 78], + [-175, -122], + [-90, -22], + [-81, 96], + [-118, -36], + [-231, 97], + [-166, 91], + [-104, -3], + [-3, -69], + [-85, 1], + [-108, -104], + [-73, -156], + [-57, -5], + [-9, 75], + [-154, 71], + [-48, -17], + [-44, 69], + [-165, 37], + [3, 97], + [97, 177], + [2, 96], + [77, 44], + [-69, 133], + [20, 69], + [-57, 153], + [35, 65], + [-48, 15], + [-200, -82], + [-176, -61], + [-5, 58], + [-93, -35], + [-76, 37], + [-106, -3], + [-20, -63], + [-181, -2], + [-65, 34], + [-286, -31], + [-60, -32], + [-107, -114], + [-118, -7], + [-182, -27], + [-94, 84], + [-116, -5], + [-128, 113], + [4, 108], + [-69, 15], + [-107, 84], + [-121, 25] + ], + [ + [33282, 40106], + [56, 58], + [65, 172], + [-4, 69], + [55, 82], + [-12, 63], + [-45, 46], + [61, 56], + [68, 23], + [19, 58], + [-29, 72], + [-68, 19], + [4, 58], + [-43, 43], + [26, 105], + [231, 60] + ], + [ + [20587, 26673], + [24, -19], + [21, 17], + [9, -8], + [20, -9], + [43, -11], + [-67, -87], + [27, -55], + [-23, -39], + [-23, 1], + [0, -24], + [13, -2], + [61, -86], + [-9, -56], + [7, -15], + [8, -50], + [-7, -35], + [-16, -10], + [-28, -7], + [-22, -2], + [-15, -12], + [-8, -20], + [-24, -20], + [14, -16], + [2, -28], + [118, -39], + [102, -112], + [-20, -15], + [7, -22], + [-7, -16], + [-8, 7], + [-19, 9], + [-5, 22], + [-13, -12], + [11, -21], + [-19, -10], + [-7, -14], + [6, -19], + [-1, -38], + [-6, -25], + [-36, 2], + [-33, 11], + [-4, -23], + [20, -44], + [-24, -8], + [-8, -11], + [-11, 4], + [-12, -16], + [-3, -38], + [-8, -1], + [3, -17], + [-10, -7], + [-10, -19], + [-11, -29], + [-13, 19], + [-39, 1], + [0, -35], + [-33, -23], + [-8, -20], + [-6, -24], + [11, -6], + [30, -1], + [25, -11], + [5, -10], + [39, -21], + [25, 6], + [-9, -39], + [-22, -29], + [-17, -3], + [-10, -18], + [-100, -22], + [-5, -7], + [-5, -14], + [-11, -7], + [-8, 7], + [-5, -9], + [-10, -4], + [-36, -5], + [-7, -11], + [-9, -7], + [2, -8], + [-12, -70], + [11, -58], + [-24, -118], + [47, -10], + [8, -6], + [9, -15], + [11, -7], + [35, 3], + [15, -53], + [11, -6], + [17, 19], + [10, 19], + [29, 37], + [46, -55], + [82, 21], + [14, -60], + [16, 3], + [9, -7], + [29, -3], + [11, -17], + [53, -8], + [24, 6], + [11, -15], + [10, -11], + [48, -27], + [-2, -16], + [-5, -14], + [-1, -29], + [-42, 8], + [-37, 11], + [-82, -26], + [1, -39], + [-2, -20], + [-13, -3], + [-19, -1], + [-12, 13], + [-38, 14], + [-1, -57], + [-33, 13], + [-20, -1], + [-33, 14], + [-23, -10], + [-29, -21], + [2, -34], + [35, -16], + [15, 1], + [0, -17], + [-27, -29], + [12, -17], + [3, -16], + [-16, -23], + [-24, -7], + [-24, -12], + [-36, 1], + [-18, 11], + [-5, 9], + [7, 12], + [9, 3], + [-61, 2], + [-4, -17], + [0, -30], + [14, -12], + [-8, -39], + [-3, -2], + [-4, -28], + [-20, -40], + [-6, -2], + [-8, -20], + [29, 2], + [12, -6], + [4, -24], + [-163, -130], + [24, -63], + [-45, -6], + [-5, -31], + [-11, -16], + [3, -11], + [-11, -8], + [15, -23], + [19, -6], + [2, -25], + [190, -79], + [81, -223], + [-46, -40], + [3, -35], + [-2, -16], + [-33, -36], + [1, -29], + [3, -12], + [-5, -13], + [9, -11], + [0, -17], + [-31, -18], + [15, -151], + [-8, -47], + [13, -44], + [7, -9], + [13, -10], + [0, -26], + [-1, -14], + [-9, -6], + [-50, 8], + [-20, -5], + [4, -34], + [-30, -112], + [4, -7], + [10, 0], + [7, -6], + [9, -3], + [18, 14], + [7, 0], + [17, -7], + [10, 6], + [13, -3], + [4, -8], + [-2, -14], + [0, -13], + [-6, -43], + [-41, -10], + [-20, -17], + [-45, -9], + [25, -29], + [5, -13], + [13, -5], + [-7, -11], + [24, -4], + [10, 7], + [14, 14], + [14, 9], + [18, -5], + [4, -7], + [-12, -18], + [-10, -26], + [-13, -11], + [-3, -29], + [21, -6], + [2, -17], + [-1, -5], + [-8, 1], + [-4, -8], + [6, -4], + [6, -8], + [0, -6], + [-17, -8], + [-29, 3], + [-14, -2], + [-35, -37], + [-12, -110], + [-7, -9], + [-25, 5], + [-43, -10], + [-5, -2], + [-13, -11], + [-9, -9], + [-6, -42], + [-18, -2], + [-14, 0], + [-8, 5], + [-10, -1], + [0, -7], + [-30, -3], + [-12, 1], + [-160, -30], + [28, -88], + [11, -16], + [12, -12], + [7, -17], + [15, -17], + [21, -8], + [28, -13], + [56, -13], + [23, -20], + [21, -7], + [45, 7], + [33, -19], + [52, -21], + [23, 1], + [12, 5], + [23, 22], + [51, 2], + [44, 5], + [63, -17], + [20, 0], + [35, -40], + [109, -58], + [5, -17], + [9, -20], + [0, -17], + [-6, -21], + [-17, -22], + [-34, 27], + [-89, -64], + [-11, 2], + [-14, 0], + [-26, -7], + [-30, -42], + [17, -85], + [-4, -15], + [3, -26], + [0, -19], + [-14, -19], + [-11, -47], + [7, -99], + [36, -98], + [-8, -44], + [-19, -54], + [42, -66], + [-3, -15], + [-7, -39], + [0, -14], + [8, -12], + [13, -10], + [2, -13], + [-3, -33], + [-11, -52], + [-27, 12], + [-31, 5], + [-36, -2], + [-89, 34], + [-41, -15], + [-33, 3], + [-15, -6], + [-21, -2], + [-18, 6], + [-32, 18], + [-156, 8], + [-74, 24], + [-150, -18], + [-22, -10], + [-30, -3], + [-30, -8], + [-30, -24], + [-55, -14], + [-32, -15], + [-29, -19], + [-24, -24], + [-30, -53], + [-25, -29], + [-17, -25], + [-10, -19], + [-14, -30], + [4, -5], + [9, -9], + [22, -1], + [7, -8], + [18, -4], + [6, 10], + [25, -3], + [-5, -58], + [2, -46], + [-19, -34], + [-9, 1], + [-3, -7], + [11, -5], + [-4, -20], + [-11, 3], + [1, -61], + [64, -8], + [18, -29], + [-18, -42], + [54, -28], + [22, -17], + [18, -21], + [13, -7], + [-8, -51], + [-11, -28], + [-76, 64], + [-120, -54], + [-7, -123], + [11, -118], + [0, -38], + [-5, -20], + [-67, -1], + [-11, 3], + [-21, 9], + [-21, 4], + [-3, -36], + [12, -21], + [44, -33], + [10, -14], + [3, -14], + [9, -17], + [20, -16], + [19, -6], + [8, -8], + [7, -20], + [1, -19], + [-6, -39], + [11, -12], + [17, -11], + [6, -18], + [-3, -21], + [-10, -37], + [55, -48], + [1, -23], + [-4, -14], + [17, -6], + [66, 17], + [23, 2], + [1, -16], + [7, -3], + [4, -68], + [72, -10], + [-14, -156], + [36, -56], + [14, -59], + [-2, -16], + [-10, -8], + [1, -13], + [-4, -8], + [-26, 4], + [-19, -3], + [-11, -15], + [7, -16], + [39, -10], + [2, -25], + [-14, -31], + [-18, -17], + [-26, -15], + [-4, -58], + [-16, -41], + [-5, -24], + [-10, -5], + [-4, -22], + [-18, -3], + [-24, 1], + [-5, -11], + [-14, -2], + [-7, -51], + [-38, 3], + [-23, 7], + [-22, 3], + [12, 24], + [5, 18], + [-4, 12], + [-102, 1], + [-11, -13], + [-27, -8], + [-3, -23], + [-33, 6], + [-36, 26], + [-17, 6], + [-25, -1], + [-40, 10], + [-54, 2], + [-26, -7], + [-16, 36], + [-20, 29], + [-38, 22], + [-13, 14], + [-17, 5], + [-18, 1], + [-54, 37], + [-28, -35], + [-18, -15], + [-7, -10], + [26, -112], + [-11, -25], + [-22, -12], + [-3, -11], + [-4, -11], + [-3, -4], + [-18, -14], + [15, -31], + [114, -14], + [27, -29], + [18, 18], + [11, 5], + [52, 7], + [-2, -21], + [4, -40], + [-12, -108], + [-44, -141], + [-14, -104], + [-5, -2], + [-11, 6], + [-13, 0], + [-7, -3], + [-1, -7], + [-13, -2], + [-67, -5], + [2, -12], + [11, -29], + [4, -23], + [15, -25], + [7, -15], + [-28, -63], + [-10, -39], + [-21, -38], + [-23, -180], + [38, -39], + [47, -119], + [12, -7], + [13, -2], + [19, -8], + [18, 6], + [1, -2], + [8, -16], + [26, -14], + [23, -24], + [14, -27], + [7, -29], + [14, -14], + [22, 5], + [12, 12], + [19, 11], + [27, 8], + [147, -13], + [2, -19], + [-22, -43], + [-12, -14], + [-33, -1], + [-2, -12], + [3, -34], + [1, -38], + [-2, -13], + [-5, -8], + [-10, 4], + [-40, 23], + [-12, 5], + [-66, -54], + [-10, -90], + [1, -11], + [14, -16], + [30, -47], + [96, -32], + [8, -11], + [8, -15], + [-3, -17], + [-11, -12], + [-42, -22], + [3, -18], + [17, -25], + [5, -11], + [4, -20], + [12, -9], + [18, -5], + [68, 10], + [15, -5], + [8, -7], + [4, 6], + [21, -10], + [100, 19], + [23, -36], + [16, -14], + [17, -20], + [21, -2], + [23, 2], + [22, 9], + [10, 19], + [2, 24], + [5, 19], + [-3, 19], + [9, 20], + [-19, 11], + [11, 60], + [12, 9], + [18, 23], + [14, 67], + [19, 13], + [13, -9], + [12, 13], + [97, -54], + [30, -3], + [29, 4], + [20, -9], + [29, 8], + [13, 14], + [15, 12], + [34, 14], + [17, -2], + [3, -66], + [-7, -61], + [176, -15], + [-9, -91], + [20, -16], + [27, -15], + [16, -58], + [68, 27], + [2, 20], + [-2, 12], + [-13, 15], + [-9, 58], + [-9, 27], + [-24, 2], + [-33, 78], + [-2, 23], + [11, 28], + [35, 28], + [32, -5], + [25, -12], + [11, -2], + [36, -26], + [0, -44], + [3, -30], + [24, -13], + [31, 17], + [23, 10], + [12, -20], + [17, -9], + [9, 1], + [7, -26], + [-21, -76], + [21, -53], + [3, -26], + [7, -29], + [14, -20], + [-17, -35], + [-5, -14], + [-26, 5], + [-56, 26], + [-87, 2], + [-16, 9], + [-14, 1], + [-27, -7], + [-17, -3], + [-1, -27], + [-15, -14], + [-9, -21], + [-4, -20], + [-64, -13], + [-2, -15], + [0, -17], + [-5, -33], + [9, 7], + [9, 14], + [82, 31], + [10, -9], + [4, -9], + [-2, -17], + [-35, -30], + [-16, -43], + [-24, -14], + [-6, -16], + [-18, -13], + [-27, 1], + [-15, -32], + [-11, -39], + [39, -9], + [13, -6], + [27, -1], + [47, -20], + [7, -77], + [74, 6], + [14, -8], + [9, -10], + [0, -16], + [-4, -13], + [-1, -30], + [-13, -10], + [-33, -7], + [25, -95], + [-155, 4], + [-11, 22], + [-2, 14], + [22, 37], + [22, 33], + [-1, 7], + [-41, 12], + [8, 11], + [0, 12], + [14, 36], + [1, 14], + [-18, 8], + [-27, 5], + [-7, 6], + [-1, 7], + [0, 0], + [1, 3], + [-14, 24], + [-15, 23], + [-1, 15], + [-7, 7], + [-22, 5], + [-55, -46], + [-13, 2], + [4, 19], + [-6, 28], + [-16, -4], + [-19, -13], + [-29, -33], + [-106, -8], + [-50, 13], + [-38, -42], + [-15, 3], + [-18, 12], + [-11, 3], + [-3, 14], + [2, 12], + [-13, 21], + [-7, 37], + [-8, 17], + [-67, -9], + [-31, 0], + [-15, 3], + [-2, 18], + [-99, 14], + [0, 70], + [-29, 20], + [13, 32], + [1, 14], + [-1, 13], + [8, 11], + [-14, 11], + [2, 12], + [3, 47], + [11, 27], + [1, 9], + [-4, 10], + [-12, 1], + [-18, 4], + [-44, -5], + [-61, 7], + [-10, 12], + [-10, 7], + [-11, 10], + [-6, 3], + [-5, -6], + [5, -20], + [-5, -24], + [-5, -5], + [-31, -5], + [-12, -14], + [-45, 10], + [-12, -6], + [-5, -19], + [-5, -34], + [-7, -12], + [63, -21], + [10, 6], + [12, 10], + [10, -4], + [23, -28], + [12, -7], + [64, -84], + [1, -17], + [6, -7], + [-2, -18], + [-6, -12], + [-48, -10], + [-14, -2], + [-12, 1], + [-9, -16], + [-6, -42], + [39, -36], + [58, -24], + [5, -6], + [0, 0], + [17, -15], + [20, -14], + [-6, -13], + [-6, -44], + [14, -9], + [9, -6], + [19, -7], + [13, -18], + [11, -11], + [37, -21], + [12, -65], + [-29, -1], + [-23, -9], + [-2, -13], + [-11, -37], + [2, -10], + [0, -7], + [-10, -3], + [-4, -30], + [-49, -51], + [-16, -15], + [-11, -6], + [-7, -10], + [1, -10], + [25, -7], + [8, -7], + [-6, -42], + [25, -100], + [21, -14], + [21, -9], + [5, 34], + [10, 33], + [3, 19], + [34, -1], + [55, -71], + [45, -3], + [-3, 20], + [2, 17], + [12, 11], + [21, 6], + [35, -14], + [27, -9], + [24, 5], + [7, 6], + [20, -2], + [44, 0], + [7, 15], + [3, 25], + [-38, 66], + [18, 34], + [0, 12], + [-9, 11], + [-27, 22], + [-12, 7], + [-33, 12], + [-3, 15], + [14, 1], + [20, 21], + [51, -5], + [5, 22], + [-7, 37], + [-10, 21], + [-2, 19], + [46, 41], + [11, -37], + [-15, -93], + [8, -3], + [30, -8], + [36, 51], + [-2, -42], + [8, 3], + [12, 18], + [8, 29], + [3, 16], + [7, 15], + [19, -1], + [14, -2], + [3, -12], + [-6, -17], + [1, -18], + [3, -18], + [7, -13], + [20, -10], + [-6, -38], + [12, 0], + [43, 7], + [17, -4], + [5, 12], + [24, 17], + [24, 9], + [8, -14], + [12, -27], + [8, -32], + [71, 43], + [46, -30], + [18, 0], + [19, 4], + [31, -4], + [46, -11], + [-27, -34], + [2, -10], + [-12, -12], + [1, -7], + [24, 1], + [0, -9], + [-6, -11], + [7, -5], + [19, -2], + [49, -6], + [3, -12], + [4, -5], + [10, -66], + [9, -14], + [-39, -110], + [11, -47], + [58, 5], + [7, 59], + [17, 8], + [34, -5], + [9, -10], + [3, -27], + [9, -7], + [20, 5], + [14, 45], + [0, 27], + [-2, 15], + [-26, 27], + [10, 16], + [22, 4], + [22, -5], + [4, -20], + [15, -33], + [41, 20], + [15, -6], + [17, 9], + [31, 30], + [19, -2], + [25, -33], + [13, -2], + [34, 18], + [-7, 14], + [-46, 13], + [-5, 20], + [9, 11], + [76, 36], + [16, 2], + [17, -2], + [13, 4], + [4, -18], + [-5, -17], + [-13, -24], + [11, 0], + [35, 15], + [24, 6], + [72, 94], + [60, 13], + [30, 2], + [20, 10], + [5, 9], + [-1, 8], + [-6, 9], + [-7, 18], + [63, 21], + [17, 26], + [38, 20], + [-1, 25], + [-14, 41], + [-32, 65], + [4, 12], + [13, 19], + [106, -9], + [108, -69], + [40, 27], + [20, 37], + [16, 8], + [6, -3], + [4, 2], + [8, 21], + [2, 12], + [13, 18], + [12, 2], + [26, -7], + [-11, -54], + [3, -44], + [7, -28], + [-79, -51], + [8, -72], + [5, -25], + [0, -10], + [39, -11], + [43, 96], + [43, 0], + [24, -17], + [49, -3], + [7, 12], + [4, 13], + [-4, 53], + [16, -5], + [14, -12], + [35, -17], + [9, -40], + [69, -3], + [24, -73], + [-21, -42], + [17, -37], + [6, -25], + [-73, -100], + [54, -54], + [1, -15], + [-6, -12], + [-4, -33], + [-44, -8], + [-47, 17], + [-3, -6], + [6, -13], + [-3, -12], + [-7, -7], + [-5, -11], + [16, -6], + [31, -32], + [61, -8], + [18, -3], + [16, 7], + [13, -1], + [38, 3], + [21, -2], + [7, -8], + [3, -51], + [12, -5], + [44, 0], + [18, -12], + [3, -33], + [-3, -16], + [123, -47], + [138, 21], + [68, -13], + [39, 2], + [13, 4], + [29, 2], + [38, -35], + [-26, -51], + [-1, -29], + [-40, -84], + [0, -66], + [-8, -17], + [-2, -17], + [3, -33], + [7, -15], + [-4, -16], + [13, -77], + [-6, -26], + [-30, -57], + [63, -30], + [30, -23], + [-4, -22], + [-24, 2], + [-20, 7], + [-9, 13], + [-8, -9], + [-2, -19], + [35, -14], + [19, -24], + [24, 9], + [11, 6], + [18, 16], + [12, 5], + [8, 0], + [5, -3], + [5, -2], + [3, -21], + [12, -22], + [75, -11], + [68, -38], + [146, -13], + [19, -10], + [3, -12], + [-11, -31], + [-20, -24], + [-7, -12], + [-6, -49], + [25, -18], + [-34, -35], + [-27, -4], + [3, -17], + [10, -3], + [15, 3], + [6, 0], + [7, 0], + [8, -6], + [3, -8], + [2, -5], + [8, -35], + [-8, 0], + [-9, -2], + [-7, -8], + [-25, 3], + [-18, -5], + [-13, -22], + [9, -11], + [-3, -15], + [-31, -4], + [-19, -20], + [-9, -2], + [0, -14], + [5, -16], + [12, -13], + [13, -3], + [12, -5], + [-29, -14], + [-2, -15], + [-33, -35], + [13, -24], + [0, -15], + [-83, -26], + [-13, -22], + [-13, 1], + [-8, -2], + [-2, -8], + [-1, -5], + [1, -26], + [11, -57], + [13, -25], + [-8, -37], + [-53, 13], + [-18, 2], + [-6, -3], + [-2, -13], + [4, -19], + [8, -9], + [-16, -9], + [10, -20], + [-3, -10], + [-6, -11], + [2, -13], + [10, -15], + [19, -20], + [47, -36], + [5, -30], + [-3, -32], + [-6, -30], + [-4, 6], + [1, 23], + [-14, 21], + [-17, 12], + [-1, 15], + [-5, 6], + [0, 27], + [-41, -27], + [-86, 15], + [-21, 15], + [-17, 23], + [-34, 38], + [-10, -8], + [7, -15], + [-13, -6], + [-1, -6], + [1, -15], + [-24, -40], + [-11, 1], + [-13, 7], + [-6, -10], + [-1, -20], + [-5, -14], + [12, -4], + [11, -1], + [3, 11], + [11, -5], + [-11, -15], + [-2, -11], + [-24, 6], + [-15, 1], + [5, -22], + [-7, -21], + [-89, 21], + [-19, -16], + [-12, 1], + [-9, 3], + [-7, -9], + [1, -81], + [-46, -138] + ], + [ + [22062, 13868], + [-220, 40], + [-124, 139], + [-93, 26], + [-90, -71], + [-51, 60], + [-55, -55], + [-52, 21], + [41, 66], + [-30, 54], + [-70, -35], + [-125, 1], + [-54, -88], + [-29, -92], + [-65, -120], + [-18, -97], + [-102, -31], + [-18, -52], + [-61, -2], + [-30, 55], + [-140, -39], + [16, -84], + [-34, -37], + [-27, -109], + [19, -118], + [102, -69], + [-20, -167], + [-27, -118], + [-77, -69], + [-28, -62], + [-83, -64], + [-106, -18], + [-9, -137], + [100, -43], + [204, 26], + [113, -17], + [156, -47], + [30, -88], + [59, -47], + [-46, -92], + [-56, -37], + [-68, -100], + [-57, -132], + [-59, -29], + [-140, -38], + [-55, 16], + [-54, -22], + [-73, 20], + [-32, -93], + [-48, 2], + [5, -119], + [-56, -156], + [-40, -22], + [-126, 38], + [-64, -45], + [-91, 91], + [-95, 9], + [-32, -43], + [-82, -2], + [-167, -49], + [-39, -89], + [-44, 2], + [-77, 124], + [-81, 59], + [-132, -51], + [-98, 5], + [-41, -136], + [-60, -59], + [-52, -115], + [-1, -46], + [47, -64], + [-76, -10], + [-143, 22], + [-276, -7], + [-40, -8], + [-119, 29], + [-29, 133], + [-80, 64], + [-116, -99], + [-61, 9] + ], + [ + [18110, 11340], + [-47, 55], + [37, 89], + [-32, 66], + [-153, -45], + [-53, 31], + [-24, 74], + [-54, 57], + [-125, -1], + [-33, 113], + [-43, 34], + [-167, -29], + [0, 276], + [-77, -22], + [-95, -65], + [-117, -18], + [-219, 36], + [-115, 101], + [7, 43], + [-61, 63], + [-10, 102], + [-71, 10], + [-101, -38], + [-73, 92], + [-79, 8], + [-29, 85], + [-128, 20], + [-96, 111], + [11, 28], + [-122, 174], + [-114, 13], + [-45, 114], + [25, 59], + [-95, 46], + [-28, 47], + [2, 103], + [81, -9], + [46, 43], + [-22, 70], + [-73, -12], + [-20, -52], + [-69, -30], + [-13, 79], + [-67, 17], + [-51, 48], + [-22, 82], + [67, 105], + [-55, 29], + [-84, -110], + [-53, 22], + [-28, 119], + [-102, -13], + [14, 103], + [-107, 28], + [-143, -37], + [4, 126], + [-102, -2], + [-25, 57], + [37, 51], + [-7, 58], + [-77, -30], + [-36, 16], + [-131, -54], + [-60, -4] + ], + [ + [14688, 13872], + [-101, 228], + [-53, 278], + [-86, 410], + [-69, 277], + [10, 39], + [-37, 109], + [-36, 42], + [-8, 235], + [-28, 215], + [-44, 250], + [-24, 29], + [-51, 273], + [-40, 176], + [-86, 194], + [-44, 5], + [-78, 88], + [-29, 84], + [-30, 203], + [-38, 168], + [-38, 43], + [-88, 268], + [-38, 213], + [-80, 213], + [2, 42], + [-98, -1], + [-11, 75], + [-69, 135], + [5, 156], + [-36, 88], + [-62, 73], + [-90, -53], + [-38, 59], + [-80, 64], + [-72, 16], + [-38, 43], + [74, 29], + [-4, 50], + [-60, 135] + ], + [ + [13058, 20567], + [34, 116], + [-14, 51], + [72, 62], + [64, 2], + [45, 66], + [58, -79], + [67, 20], + [40, -32], + [129, 56], + [54, 77], + [-14, 36], + [40, 80], + [-74, 3], + [36, 63], + [64, -3], + [-16, 62], + [95, 116], + [63, 165], + [9, 56], + [-60, 24], + [-111, -51], + [-42, 57], + [140, 118], + [120, -54], + [17, 58], + [-13, 68], + [15, 91], + [33, 16], + [-10, 80], + [-53, 55], + [-136, 25], + [-3, 54], + [-66, -12], + [-24, 41], + [-69, -4], + [-55, 143], + [42, 109], + [-9, 119], + [-37, -5], + [-60, 57], + [-40, 106], + [67, 20], + [55, 57], + [118, -61], + [39, 119], + [82, 46], + [70, 14], + [51, 53], + [123, 13], + [-4, -95], + [53, -93], + [147, 69], + [118, 77], + [-75, 52], + [25, 60], + [54, 26], + [4, 93], + [85, 2], + [93, 76], + [157, 27], + [10, 24], + [151, -2], + [-17, 36], + [-9, 163], + [81, 56], + [9, 61], + [112, 91], + [98, -17], + [101, 20], + [1, -60], + [96, -66], + [6, -45], + [68, -20], + [25, -52], + [103, -3], + [24, 51], + [92, 26], + [4, 183], + [133, -2], + [109, 55], + [80, -30], + [81, 51], + [55, -93], + [81, 48], + [89, -5], + [-1, 98], + [87, -7], + [3, -77], + [75, -43], + [74, 29], + [-22, 45], + [8, 121], + [-53, 25], + [73, 57], + [-16, 98], + [-94, 108], + [-1, 60], + [73, 64], + [-14, 131], + [-56, 4], + [-58, 72], + [16, 90], + [-64, 21], + [-12, 73], + [82, 21], + [-1, 70], + [45, 128], + [99, -55], + [23, -95], + [101, 21], + [72, -35], + [27, -64], + [64, -21], + [23, 115], + [75, -28], + [85, -4], + [-2, -121], + [82, -68], + [152, 32], + [34, 29], + [105, 3], + [34, -50], + [51, 74], + [42, 10], + [93, -59], + [43, 36], + [101, 16], + [91, -16], + [12, -60], + [91, -3], + [58, 48], + [19, -91], + [65, 3], + [64, 83], + [-6, 50], + [-101, 13], + [24, 137], + [-87, -5], + [-6, 85], + [42, 7], + [-40, 284], + [185, 22], + [29, 93], + [122, 58], + [4, 101], + [82, 4], + [0, 101], + [80, 10], + [21, -137], + [39, 9], + [37, 111], + [50, 1], + [9, -63], + [54, -29], + [17, -66], + [64, 40], + [57, 99], + [3, 86], + [44, -14], + [81, 47], + [26, 63], + [-49, 56], + [-63, 14], + [7, 95], + [56, 1], + [19, -50], + [174, 49], + [60, -11], + [71, 102], + [14, 111], + [-4, 111], + [75, 10], + [3, 167], + [-68, 14], + [70, 159], + [82, 4], + [14, -45], + [131, -34], + [113, 1], + [16, 34], + [-45, 64], + [96, 28], + [39, 106], + [46, 66], + [62, -9], + [8, 83], + [38, 72], + [29, 148], + [160, 71], + [113, -22], + [12, -68], + [67, -7], + [-17, -132], + [-66, -74], + [99, -21], + [127, -91], + [104, 51], + [16, 58], + [66, -37] + ], + [ + [18110, 11340], + [-5, -79], + [-90, -6], + [-21, -67], + [-160, -67], + [-59, 66], + [-100, -66], + [17, -106], + [54, -105], + [44, 3], + [94, -69], + [29, 33], + [61, -25], + [191, -154], + [197, -69], + [4, -71], + [-58, -136], + [-148, -73], + [-7, -70], + [138, 4], + [34, -27], + [124, 15], + [100, -26], + [162, 106], + [65, -58], + [-11, -50], + [-78, -62], + [24, -58], + [96, -53], + [12, -60], + [-25, -46], + [49, -91], + [-99, 18], + [-47, -35], + [-28, -87], + [-38, -44], + [-17, -94], + [176, -90], + [88, 1], + [98, -45], + [94, -144], + [62, 0], + [20, -67], + [-49, -148], + [-44, -79], + [33, -20], + [6, -80], + [-149, -7], + [23, -88], + [31, -7], + [-27, -339], + [-22, -55], + [18, -65], + [52, -62], + [-43, -149], + [93, -30], + [67, -115], + [196, -30], + [125, 66], + [17, 60], + [60, 50], + [90, 34], + [107, 83], + [130, -14], + [-17, -80], + [80, -120], + [1, -68], + [64, -40], + [-35, -63], + [-7, -118], + [-68, -20], + [-93, -57], + [134, -184], + [-18, -30], + [45, -91], + [-86, -94], + [-51, -132], + [55, -53], + [-11, -69], + [33, -57], + [-53, -20], + [-3, -134], + [-41, -15], + [4, -67], + [-57, -88], + [-22, -108], + [67, 10], + [81, -77], + [84, -14], + [95, 61], + [102, -122], + [-1, -32], + [101, -69], + [-53, -118], + [-45, 10], + [-66, -102], + [-2, -126], + [-119, -139], + [-16, -154], + [-20, -79], + [3, -109], + [-42, -58], + [-81, -68], + [-34, -101], + [-58, -19], + [-48, -58], + [106, -149], + [57, -125], + [74, -58], + [16, -84], + [-65, -80], + [-6, -49], + [-84, -95], + [6, -81], + [42, -136], + [66, -65], + [81, -174], + [-39, -84], + [-55, -30], + [-70, 0], + [41, -117], + [-45, -7], + [-20, -59], + [-57, -73], + [-9, -129], + [-61, 3], + [-69, -59] + ], + [ + [19577, 3568], + [-164, 136], + [-82, 58], + [-34, 83], + [-216, 274], + [-353, 459], + [-74, 117], + [-113, 151], + [-85, 70], + [-33, -3], + [-54, 84], + [-50, 237], + [-33, 66], + [-329, 755], + [-32, 89], + [-63, 257], + [-23, 145], + [-36, 380], + [-51, 296], + [-51, 181], + [49, 14], + [17, -70], + [60, -30], + [-14, -64], + [92, -43], + [27, -88], + [62, -40], + [-25, -48], + [27, -128], + [-17, -89], + [59, -54], + [0, -49], + [-52, -109], + [-31, -165], + [9, -33], + [316, 9], + [-182, 70], + [26, 121], + [-60, 82], + [25, 114], + [-69, 18], + [18, 87], + [-48, 121], + [39, 38], + [-1, 69], + [-71, 162], + [-24, -59], + [-52, 8], + [-108, 233], + [5, 60], + [-47, 88], + [18, 76], + [-86, 94], + [-26, -59], + [67, -165], + [9, -106], + [-42, -17], + [-92, 355], + [-100, 297], + [-51, 193], + [-74, 197], + [-88, 180], + [-5, 62], + [-44, 41], + [-236, 560], + [-73, 351], + [-96, 371], + [-68, 135], + [-121, 361], + [-99, 226], + [-46, 76], + [-139, 90], + [-97, 277], + [-97, 222], + [-124, 135], + [-43, 17], + [-25, 62], + [-82, 95], + [-83, 31], + [-147, 204], + [-22, 107], + [46, 146] + ], + [ + [15665, 12242], + [-34, 23], + [71, 111], + [25, -21], + [63, 53], + [-73, 53], + [-126, -98], + [-91, 20], + [-34, -22], + [21, -177] + ], + [ + [15487, 12184], + [-57, -45], + [-42, 82], + [-31, 173], + [-75, 163], + [-43, 47], + [-101, 263], + [-59, 137], + [-70, 97], + [-87, 180], + [-139, 364], + [-95, 227] + ], + [ + [10760, 3638], + [-26, -46], + [-4, -51], + [-41, -45], + [-25, -1], + [61, 72], + [8, 28], + [27, 43] + ], + [ + [27418, 33700], + [-85, -26], + [-55, 13], + [-63, 76], + [-99, 73], + [-156, 30], + [-12, -66], + [-96, 15], + [-22, 63], + [49, 71], + [-23, 63], + [-57, 59], + [-10, 69], + [-72, 41], + [-39, 81], + [-54, 4], + [-78, 103], + [-87, -1], + [-71, 34], + [-97, -68], + [-56, 9], + [-121, -125], + [-82, 5], + [-72, -51], + [-48, 47], + [-98, -3], + [-25, -68], + [-129, 15], + [-71, 37], + [-73, 80], + [-130, 49], + [-180, -101], + [-92, -7], + [-72, -29], + [-87, 2], + [7, 48], + [-74, 58], + [14, 84], + [-52, 110], + [-66, 31], + [-104, 8], + [-37, -38], + [-241, 45], + [-60, 55], + [-50, -6], + [-37, -78], + [-3, -72], + [-152, 24], + [-14, -49], + [-82, -69], + [-208, -19], + [-76, 37], + [-76, -55], + [-59, -3], + [-2, -67], + [42, -175], + [-79, 30], + [-23, -35], + [-90, 10], + [-183, 0], + [-81, -59], + [-88, 41], + [-139, -10], + [-79, 21], + [-55, 64], + [-113, 32], + [-62, -51], + [-92, -6], + [-36, 139], + [1, 88], + [-99, -14], + [-37, -40], + [-53, 28], + [-40, -35], + [-104, 41], + [-4, -52], + [-119, -39], + [-76, 11], + [-25, -139], + [-232, -138], + [-45, -9], + [-139, -74], + [-178, -56], + [-220, 78], + [-13, -50], + [-103, -15], + [-18, -41], + [-75, 26], + [-75, -11], + [-53, 47], + [-100, -10], + [2, -55], + [-116, 37], + [-135, -8], + [-39, 183], + [-69, 37], + [-38, 100], + [6, 61], + [75, 32], + [103, -4], + [137, -58], + [89, 31], + [-77, 103], + [-30, 188], + [-36, 74], + [-100, 112], + [-103, 33], + [-107, -17], + [-140, 12], + [-133, -4], + [22, -54], + [-64, -47], + [-73, 4], + [-38, -55], + [-190, 73], + [-115, -9], + [-21, -28], + [-136, -64], + [-232, -188], + [-87, 34], + [-41, -51], + [-84, 10], + [-34, -81], + [12, -63], + [-50, -29], + [64, -76], + [-17, -54], + [-90, -54], + [-24, -79], + [-140, -91], + [-94, -92], + [77, -109], + [-83, -208], + [-140, 31], + [-67, -39], + [-83, 20], + [-36, -106], + [-49, -86], + [-90, -17], + [-78, -70], + [-208, -4], + [-27, 41], + [-188, -7], + [-106, 83], + [-48, 89], + [30, 31], + [87, -17], + [-17, 205], + [-66, 89], + [-67, 176], + [-102, -49], + [-39, 29], + [-109, 28], + [-36, 39], + [-115, -10], + [-62, 23], + [-122, -38], + [-69, 16], + [-93, -11], + [-115, 13], + [-73, -25], + [-97, 2], + [-22, 28], + [-157, -48], + [-52, 34], + [-123, 16], + [-185, -20], + [-178, 22], + [-3, 46], + [-106, -20], + [-75, 11], + [-198, 88], + [-51, 47], + [-36, 104], + [-71, 117], + [-88, 18], + [-82, 54], + [-120, 33], + [-51, 45], + [-80, 3], + [-90, -49], + [-223, 32], + [-148, 70], + [-149, 26], + [-62, 52], + [-21, 73], + [-88, 19], + [13, 91], + [-29, 93], + [18, 32], + [13, 151], + [21, 52], + [-75, 105], + [-92, 31], + [-35, 146], + [-104, -25], + [-94, -104], + [-97, -19], + [-20, -68], + [-195, -28], + [-127, 66] + ], + [ + [13491, 37705], + [55, 18], + [95, 96], + [93, -15], + [75, -47], + [99, 8], + [50, 29], + [23, 71], + [137, 29], + [134, 131], + [102, -15], + [67, 40], + [-98, 139], + [-62, 6], + [-90, -26], + [-37, 49], + [-147, 5], + [-32, 83], + [26, 95], + [59, 45], + [1, 83], + [56, 24], + [33, 73], + [100, 13], + [23, 39], + [160, 83], + [70, 55], + [64, -22], + [106, 54], + [76, 114], + [44, 38], + [74, 17], + [-34, 88], + [0, 117], + [36, 37], + [-28, 146], + [-38, 6], + [12, 104], + [-24, 52], + [21, 102], + [59, 111], + [48, 31], + [20, 69], + [46, 60], + [-74, 186], + [-45, 26], + [-25, 83], + [-60, 40], + [-45, 97], + [57, 40], + [-67, 102], + [-49, -18], + [-83, 16], + [-94, -12], + [-33, 56], + [57, 48], + [2, 117], + [61, 97], + [100, 97], + [-95, 95], + [-126, -8], + [-91, 78], + [70, 31], + [21, 64], + [-20, 76], + [92, 33], + [-14, 60], + [74, 80], + [-90, 34], + [29, 94], + [-21, 37], + [85, 52], + [121, -222], + [63, -30], + [92, 14], + [44, 88], + [79, 19], + [-14, 102], + [58, 0], + [-16, 95], + [-93, -7], + [-144, 15], + [-102, 36], + [-6, 93], + [-63, 106], + [-7, 95], + [19, 63], + [65, -3], + [11, -67], + [73, 6], + [27, -94], + [71, -49], + [149, -9], + [67, -34], + [67, 65], + [99, 4], + [-7, 177], + [49, 48], + [58, 12], + [-21, 86], + [42, 58], + [59, -45], + [242, 27], + [86, -10], + [4, -38], + [-72, -43], + [41, -101], + [-44, -129], + [-65, 44], + [-46, -28], + [-12, -57], + [109, -46], + [33, 40], + [101, -21], + [115, 35], + [-16, -67], + [-256, -113], + [-37, 81], + [-93, 25], + [19, 80], + [-107, -26], + [99, -144], + [-64, -4], + [-55, -73], + [7, -66], + [72, -58], + [492, -97], + [69, 10], + [114, 52], + [102, 6], + [70, -79], + [100, 31], + [46, 60], + [136, 76], + [98, 11], + [115, -82], + [-23, -143], + [35, 3], + [19, -127], + [47, -17], + [23, -58], + [58, -11], + [-9, -62], + [40, -28], + [-43, -76], + [-5, -137], + [-92, -53], + [-71, -2], + [-95, 83], + [-110, -127], + [5, -128], + [59, -86], + [71, 8], + [35, -31], + [-17, -164], + [-70, -21], + [-66, -188], + [77, -11], + [24, -58], + [90, -4], + [-2, -83], + [-110, -23], + [2, -60], + [-40, -88], + [-136, -67], + [-69, 149], + [-75, -78], + [-144, -1], + [5, 42], + [-87, 32], + [-39, 40], + [-50, -102], + [-59, -55], + [-18, -139], + [68, -23], + [36, -43], + [129, -78], + [8, -99], + [36, -35], + [75, 13], + [72, -15], + [83, -60], + [24, 33], + [-17, 74], + [70, 16], + [12, 87], + [-65, 29], + [9, 63], + [57, -5], + [68, -48], + [46, -61], + [161, 91], + [56, -22], + [214, 112], + [9, 95], + [-44, 54], + [0, 64], + [66, 11], + [81, 47], + [36, 55], + [201, 49], + [5, 83], + [-30, 171], + [68, 89], + [-26, 87], + [59, 34], + [36, 82], + [45, -48], + [-25, -60], + [25, -120], + [155, -38], + [91, 80], + [77, -5], + [129, -91], + [26, 40], + [88, 5], + [99, -66], + [32, -86], + [125, 40], + [-19, 76], + [94, 66], + [5, 48], + [137, 18], + [52, -50], + [-62, -128], + [103, -74], + [105, 7], + [49, -90], + [81, 0], + [62, 31], + [97, -18], + [35, 133], + [61, 23], + [-153, 167], + [-82, 208], + [27, 17], + [-15, 93], + [20, 140], + [-81, 151], + [69, 39], + [118, -8], + [41, -28], + [-8, -111], + [100, -63], + [71, 30], + [127, 123], + [31, 87], + [-11, 181], + [-88, 168], + [-104, 38], + [-19, 65], + [-92, -25], + [-168, 7], + [4, 42], + [-98, 131], + [77, 33], + [127, -4], + [69, 24], + [49, 54], + [-77, 34], + [24, 52], + [-116, 103], + [-6, 130], + [70, 53], + [149, 51], + [33, 50], + [205, -45], + [82, 25], + [31, 46], + [64, -1], + [27, 58], + [112, -8], + [91, 21], + [90, -82], + [100, 33], + [84, 56], + [9, 153], + [60, 11], + [-26, 77], + [-96, 55], + [-28, 50], + [55, 79], + [-67, 189], + [37, 58], + [-123, 55], + [-187, -146], + [-5, -97], + [-60, -46], + [-82, 4], + [-83, 50], + [-88, 11], + [-80, -34], + [-33, -55], + [-144, -9], + [-13, -43], + [-131, 101], + [-111, 19], + [-154, -34], + [-13, 47], + [-58, 27], + [-131, -6], + [-98, 81], + [-74, 20], + [-30, 98], + [-54, 25], + [-11, 72], + [-86, 131], + [-23, 115], + [11, 125], + [-34, 33], + [25, 57], + [-73, 52], + [11, 53], + [97, 30], + [6, 154], + [150, 182], + [75, -3], + [21, 72], + [73, 13], + [129, -22], + [64, 45], + [-4, 48], + [75, 4], + [53, 62], + [47, 93], + [-21, 42], + [88, 62], + [38, 85], + [112, 30], + [123, 73], + [64, 89], + [160, 44], + [38, 83], + [112, 31], + [65, -20], + [160, 93], + [90, 90], + [22, 72], + [106, 58], + [145, -15], + [-10, 97], + [209, 19], + [63, 59], + [105, 32], + [61, 66], + [97, 62], + [53, -20], + [70, 33], + [27, 63], + [61, 25], + [101, 3], + [17, 104], + [48, 36], + [81, 12], + [54, 106], + [79, -8], + [64, 32], + [51, 60], + [211, -37], + [3, 119], + [49, 27], + [-36, 92], + [52, 30], + [59, -25], + [74, 22], + [-41, 60], + [108, 21] + ], + [ + [22038, 46429], + [101, -37], + [58, 101], + [177, 17], + [50, -100], + [89, 10], + [71, -86], + [126, -23], + [111, -64], + [79, -4], + [41, 45], + [85, -14], + [40, 53], + [83, 19], + [57, -18], + [46, -60], + [109, -3], + [117, -140], + [86, 20], + [97, -39], + [0, -79], + [79, 54], + [38, -27], + [-32, -62], + [42, -85], + [-52, -38], + [35, -100], + [77, -34], + [61, -76], + [-30, -97], + [48, -34], + [53, 25], + [74, -29], + [-21, -64], + [-80, -27], + [18, -66], + [61, -54], + [22, -87], + [-63, -3], + [-45, -63], + [-43, -8], + [-38, -126], + [-85, -76], + [-3, -96], + [-89, -2], + [-35, -39], + [129, -128], + [-45, -19], + [-84, -85], + [-3, -107], + [-61, -96], + [-85, -77], + [16, -91], + [-57, -10], + [-31, -62], + [48, -25], + [-5, -75], + [-105, 67], + [-88, -161], + [-63, -29], + [30, -65], + [67, -24], + [44, -83], + [0, -67], + [-36, -65], + [-259, -54], + [-62, -66], + [-98, 50], + [-51, -53], + [-74, 1], + [-146, 36], + [-70, -64], + [-51, 21], + [-38, -66], + [28, -123], + [-78, -59], + [-111, -54], + [-6, -61], + [-85, -86], + [64, -28], + [18, -43], + [-51, -59], + [81, -31], + [38, -75], + [-15, -36], + [66, -126], + [124, -88], + [-38, -75], + [-77, 5], + [-50, -52], + [-91, -47], + [28, -131], + [-23, -64], + [-84, -73], + [-166, -122], + [-31, -44], + [-65, -26], + [-11, -85], + [47, -13], + [86, -153], + [1, -93], + [92, -154], + [-25, -49], + [29, -77], + [-32, -146], + [-69, -25], + [34, -120], + [52, -15], + [8, -82], + [211, -160], + [-79, -92], + [32, -71], + [98, -80], + [108, 57], + [12, 64], + [60, 32], + [17, 65], + [54, 62], + [116, -78], + [56, -8], + [86, -141], + [82, -52], + [32, -66], + [65, -24], + [61, 42], + [61, -13], + [67, -143], + [57, 54], + [105, 11], + [50, 36], + [-5, 58], + [68, 44], + [-4, 65], + [132, 129], + [-2, 38], + [45, 126], + [-12, 45], + [-83, -10], + [-69, 47], + [-26, 58], + [92, -8], + [6, 158], + [-72, 65], + [-69, 135], + [-41, 3], + [-71, -75], + [-63, -2], + [-55, -34], + [-55, 21], + [-26, 133], + [71, 103], + [-17, 210], + [35, 46], + [-36, 107], + [-149, 77], + [-62, 18], + [-32, 97], + [-63, 41], + [37, 230], + [-48, 69], + [-50, 15], + [-8, 137], + [-71, 162], + [16, 72], + [-105, 68], + [-70, 10], + [-77, -50], + [-53, 61], + [86, 15], + [41, 39], + [82, -32], + [19, 57], + [94, 48], + [3, 58], + [56, 93], + [64, 37], + [125, 28], + [24, -44], + [-93, -88], + [114, -28], + [57, -62], + [63, 21], + [-12, 106], + [14, 60], + [-89, 77], + [143, 46], + [141, -72], + [7, 35], + [-51, 113], + [93, 19], + [21, 84], + [88, -2], + [36, -66], + [-56, -34], + [41, -52], + [-11, -59], + [-59, -50], + [57, -43], + [68, 24], + [22, -42], + [9, -111], + [-219, 35], + [-81, -82], + [-10, -48], + [-88, -89], + [92, -138], + [24, 1], + [36, 114], + [-13, 78], + [63, 69], + [101, -33], + [86, -95], + [-136, -39], + [-26, -57], + [-54, 2], + [21, -81], + [-31, -59], + [21, -64], + [104, 111], + [63, 24], + [65, -50], + [39, 39], + [-62, 62], + [32, 74], + [57, -2], + [31, -91], + [65, -21], + [-70, -90], + [87, -33], + [59, 9], + [62, -30], + [-25, -45], + [57, -76], + [142, 40], + [89, -27], + [26, 103], + [57, -94], + [84, 73], + [-68, 87], + [-12, 49], + [138, 45], + [-2, 98], + [-56, -26], + [-62, 45], + [-66, -3], + [8, 71], + [76, 69], + [236, -141], + [-1, -39], + [72, -47], + [18, -49], + [-72, -28], + [-57, -89], + [12, -115], + [104, -29], + [118, -58], + [60, 44], + [-8, 55], + [80, 101], + [182, -84], + [73, -14], + [162, 37], + [192, -99], + [74, 129], + [-34, 186], + [60, 40], + [46, -17], + [123, 44], + [105, 11], + [52, 169], + [108, 0], + [29, 29], + [97, -35], + [70, 86], + [63, 14], + [2, 52], + [124, -3], + [63, 46], + [78, -77], + [-14, -77], + [20, -56], + [-20, -86], + [84, -42], + [37, -64], + [96, -70], + [49, -108], + [-81, -26], + [-84, -51], + [-97, -151], + [-50, -28], + [-33, -77], + [104, -61], + [118, 50], + [58, 108], + [102, 23], + [65, -86], + [71, 42], + [90, 11], + [78, 48], + [35, 154], + [61, -76], + [-31, -54], + [73, -13], + [70, -90], + [118, 41], + [107, -24], + [0, 52], + [-125, 46], + [-4, 58], + [74, 29], + [149, -26], + [51, 87], + [61, 48], + [79, -56], + [-89, -95], + [13, -121], + [-92, -95], + [47, -62], + [-70, -68], + [-36, -68], + [120, -20], + [176, 85], + [35, -76], + [104, 1], + [59, 34], + [109, -6], + [29, -64], + [85, -71], + [60, 88], + [13, 62], + [98, -45], + [-9, 131], + [40, 26], + [91, 142], + [-35, 86], + [27, 26], + [24, 111], + [135, 17], + [42, -12], + [87, -99], + [86, 21], + [19, -86], + [104, -49], + [20, 82], + [-34, 25], + [32, 63], + [59, 8], + [30, 77], + [74, 24], + [34, -63], + [84, -30], + [-61, -44], + [88, -77], + [-83, -61], + [61, -46], + [54, 42], + [68, -24], + [9, -48], + [76, 21], + [166, -99], + [83, 21], + [159, -84], + [19, -144], + [-17, -84], + [53, -54], + [84, -45], + [88, 21], + [169, -66], + [67, -69], + [44, 29], + [59, -29], + [109, 13], + [-29, -79], + [94, -21], + [10, -122], + [108, -85], + [14, -85], + [69, -10], + [68, -51], + [107, -9], + [-13, 88], + [18, 51], + [-22, 60], + [41, 49], + [146, -69], + [70, 7], + [24, -61], + [299, 111], + [67, -56], + [-9, -63], + [163, -16], + [5, -102], + [62, 5], + [10, -109], + [-121, -25], + [-65, 36], + [-2, -102], + [46, -31], + [-28, -54], + [5, -116], + [-41, -95], + [25, -32], + [92, 4], + [8, -186], + [-30, -57], + [-1, -73], + [-51, -30], + [21, -127], + [-35, -68], + [-71, 12], + [-68, -22], + [97, -87], + [16, -38], + [102, -17], + [-20, -139], + [122, -28], + [14, -88] + ], + [ + [26562, 27660], + [-45, -39], + [-47, -12], + [-24, 12], + [-15, -2], + [-13, -7], + [-17, -20], + [-11, -30], + [-48, 10], + [-6, 24], + [-14, 13], + [-21, -6], + [-14, -17], + [-12, 2], + [-34, -13], + [-12, -13], + [-11, 1], + [-9, 3], + [-14, 17], + [-30, 30], + [-5, 7], + [-5, 4], + [-79, 43], + [-75, 106], + [-176, 40], + [-35, 30], + [-49, 78], + [22, 9], + [47, 6], + [18, 17], + [12, 33], + [4, 182], + [-11, 46], + [-8, 32], + [-2, 7], + [7, 109], + [-3, 18], + [-16, 30], + [-21, 11], + [-56, -4], + [-43, -23], + [-22, 56], + [-7, 102], + [29, 43], + [76, 45], + [36, 35], + [9, 9], + [32, 8], + [5, 14], + [-1, 12], + [-44, 64], + [-5, 53], + [25, 76], + [30, 58], + [8, 11], + [28, 20], + [4, 20], + [-14, 42], + [0, 23], + [16, 38], + [5, 23], + [1, 32], + [8, 17], + [4, 22], + [1, 22], + [-7, 19], + [-23, 38], + [-30, 35], + [1, 23], + [-3, 19], + [-10, 13], + [-7, 5], + [-9, 5], + [-21, 20], + [-13, 18], + [-14, 16], + [-20, 10], + [-53, 9], + [-17, 10], + [-14, 20], + [-17, 8], + [-62, 46], + [-25, 74], + [-51, 26], + [-16, 22], + [-2, 9], + [-17, 10], + [-51, 10], + [-31, 2], + [-23, -15], + [-37, -31], + [-17, -4], + [-21, -1], + [-39, -10], + [-84, -4], + [-40, -23], + [-45, -132], + [-21, -14], + [-19, 3], + [-21, 8], + [-17, 10], + [-29, 21], + [-10, 14], + [-6, 18], + [-5, 34], + [-37, -6], + [-24, -9], + [-1, -3], + [3, -9], + [0, -34], + [-6, -10], + [-94, -47], + [-12, 27], + [-15, 23], + [-37, 33], + [-25, 4], + [-36, -4], + [-160, 93], + [-43, -4], + [-16, -15], + [-10, 38], + [-10, 19], + [-26, 15], + [-83, 34], + [-25, 3], + [-15, -7], + [1, -23], + [13, -14], + [11, -15], + [3, -22], + [-22, -42], + [-7, -75], + [-11, -14], + [-18, -9], + [-17, -15], + [-16, -59], + [22, -47], + [-65, -14], + [-25, 5], + [-19, 16], + [-27, 41], + [-36, 36], + [-78, 27], + [-4, 35], + [-64, 2], + [-23, 6], + [-7, 17], + [-19, 15], + [-28, 0], + [-45, -12], + [-56, 51], + [-32, -26], + [-53, 28], + [52, 40], + [-33, 86], + [11, 51], + [2, 23], + [-16, 22], + [-16, 11], + [-85, 10], + [-54, -29], + [-71, 2], + [1, 29], + [9, 25], + [0, 40], + [-4, 21], + [-9, 32], + [-1, 26], + [-8, 16], + [-17, 47], + [-3, 2], + [-13, 7], + [-29, -4], + [-18, 0], + [-21, -6], + [-9, 5], + [-14, 20], + [-27, 23], + [-102, 2], + [-14, -15], + [-16, -9], + [-18, -5], + [-32, 43], + [-13, 10], + [-21, 0], + [-84, 27], + [-64, 16], + [-204, 30], + [-16, -4], + [-15, -13], + [-6, -30], + [-13, -20], + [-21, 1], + [-10, 13], + [-12, 20], + [-17, 21], + [-26, 0], + [-79, 16], + [-43, 15], + [-25, 15], + [-19, 23], + [-7, 15], + [0, 7], + [-4, 18], + [2, 24], + [-2, 12], + [-40, 9], + [-42, -3], + [-23, 4], + [-24, 17], + [-5, 10], + [8, 10], + [17, 11], + [1, 14], + [-14, 14], + [-20, -2], + [-20, -6], + [-28, -91], + [-8, -55], + [20, -9], + [79, -15], + [0, -59], + [28, -8], + [19, -10], + [14, -26], + [2, -31], + [-15, -63], + [-17, -38], + [-17, -7], + [-2, -24], + [2, -25], + [-28, -11], + [-22, -11], + [-15, -31], + [-66, -2], + [-27, -45], + [-8, -16], + [6, -7], + [33, -13], + [11, -24], + [14, -48], + [26, -44], + [-2, -41], + [5, -19], + [-2, -15], + [-33, -31], + [-3, -49], + [8, -55], + [2, -22], + [9, -24], + [14, -17], + [5, -16], + [-1, -31], + [-32, -40], + [-13, 0], + [-20, 10], + [-20, 2], + [-14, -14], + [-11, -18], + [-21, -23], + [-14, -2], + [-47, 11], + [-81, -89], + [-7, -63], + [-7, -17], + [-4, -18], + [6, -18], + [11, -15], + [22, -16], + [-31, -122], + [1, -87], + [-30, -12], + [-44, -14], + [-23, 21], + [-28, 16], + [-60, -2], + [-9, 10], + [-29, 12], + [-15, -19], + [-39, -16], + [-14, 5], + [-7, 13], + [-5, 54], + [-41, 18], + [-19, 41], + [-15, 11], + [-35, 11], + [-22, 7], + [-19, 28], + [-23, 15], + [-9, 10], + [-30, 22], + [-80, -54], + [-42, 7], + [-12, -20], + [-28, -8], + [-31, -16], + [3, -15], + [-3, -18], + [2, -8], + [29, -10], + [56, -7], + [11, -22], + [-12, -26], + [-18, 2], + [-16, 7], + [-38, -11], + [1, -21], + [-12, -28], + [-2, -18], + [-7, -18], + [-13, -20], + [1, -12], + [-14, -18], + [-4, -20], + [18, -26], + [3, -11], + [-1, -7], + [-8, -4], + [-3, -19], + [1, -9], + [-25, -39], + [-15, -7], + [6, -6], + [11, -32], + [14, -11], + [-2, -42], + [-5, -22], + [-18, 0], + [-11, -4], + [-30, 43], + [-21, 0], + [-6, -4], + [-6, -7], + [-14, -64], + [8, -46], + [-6, -2], + [-8, 1], + [-17, 10], + [-12, -2], + [-15, 5], + [-21, 13], + [-1, -25], + [-8, -52], + [22, -109], + [43, 6], + [66, -4], + [-9, -52], + [5, -1], + [-5, -23], + [32, -9], + [7, 11], + [51, 4], + [-11, -48], + [-18, -46], + [35, -12], + [28, 9], + [27, -4], + [2, -28], + [12, -26], + [25, -40], + [15, -1], + [42, -19], + [42, -39], + [-4, -46], + [-77, 17], + [-106, -36], + [-48, -15], + [-31, -90], + [-45, -91], + [-1, -31], + [-35, -50], + [0, -24], + [-38, 15], + [-1, 26], + [-10, 15], + [-14, -2], + [-17, -22], + [-1, -18], + [-37, -32], + [-10, -28], + [11, -4], + [0, -15], + [-5, -1], + [-2, -17], + [-1, -6], + [0, -6], + [14, -28], + [15, -22], + [10, -74], + [-43, -87], + [-34, 7], + [-120, -63], + [-27, 21], + [9, 11], + [6, 20], + [-6, 0], + [-2, 6], + [-18, 3], + [-13, -20], + [-12, 13], + [-28, -5], + [-1, -13], + [-6, -1], + [-5, 12], + [-30, 0], + [-24, -103], + [17, -21], + [19, -6], + [2, -14], + [-6, -26], + [-17, -1], + [-5, 17], + [-32, 6], + [-13, -39], + [27, -55], + [-50, -18], + [-69, 12], + [-6, -30], + [22, -9], + [-2, -5], + [20, -2], + [24, -6], + [-13, -70], + [-17, -6], + [-44, -47], + [13, -59], + [33, -12], + [24, -6], + [37, -54], + [-33, -23], + [-11, -16] + ], + [ + [12078, 20739], + [-65, 179], + [-54, 116], + [-33, 19], + [-55, 114], + [-167, 69], + [-40, 97], + [-21, 130], + [-37, 78], + [-36, 194], + [-71, 209], + [-25, 119], + [-83, 153], + [-28, 192], + [-52, 98], + [-44, 124], + [53, 43], + [-41, 92], + [76, 49], + [-41, 45], + [-6, 106], + [-54, 97], + [-1, 87], + [28, 65], + [-49, 50], + [3, 169], + [-33, 134], + [27, 88], + [-36, 111], + [24, 56], + [-8, 111], + [-28, 36], + [-57, 201], + [-52, 133], + [43, 117], + [-52, 33], + [-25, 123], + [-66, 7], + [16, 162], + [20, 20], + [-27, 96], + [-87, 89], + [47, 52], + [-79, 159], + [14, 37], + [-44, 83], + [47, 48], + [-53, 179], + [-31, 53], + [-56, 182], + [-38, 27], + [-4, 71], + [-50, 30], + [-17, 106], + [-34, 53], + [14, 52], + [-50, 149], + [-24, 19], + [19, 121], + [-14, 75], + [-81, 70], + [-20, 135], + [78, -24], + [7, -55], + [61, 1], + [136, -48], + [-20, 100], + [-42, -13], + [-59, 46], + [-36, -11], + [-86, 124], + [-86, 49], + [22, 86], + [-33, 16], + [-8, 97], + [-23, 40], + [36, 154], + [38, 25], + [-95, 210], + [-33, 30], + [-33, 131], + [20, 58], + [-2, 162], + [80, 30], + [36, -27], + [60, 82], + [30, -62], + [56, 21], + [-10, 122], + [-77, -40], + [-36, 12], + [-41, 80], + [32, 61], + [84, 27], + [-47, 54], + [34, 39], + [137, 40], + [-34, 67], + [-19, 113], + [-66, -1], + [-18, -73], + [-80, -63], + [-124, 7], + [-39, -170], + [-99, 69], + [26, 100], + [50, 53], + [-26, 63], + [10, 96], + [-18, 70], + [-65, 60], + [17, 111], + [-45, 55], + [18, 186], + [32, 66], + [-91, 104], + [6, 90], + [-33, 94], + [76, 83], + [-84, 57], + [-43, 74], + [-14, 97], + [34, 20], + [-40, 106], + [-5, 133], + [-51, 105], + [-17, 152], + [-58, 38], + [61, 81], + [-9, 126], + [-28, 25], + [127, 132], + [-31, 189], + [41, 32], + [24, 124] + ], + [ + [58259, 43246], + [-14, -90], + [-99, -77], + [-20, -117], + [-52, -110], + [-29, -170], + [36, -47], + [317, -136], + [11, -169], + [-19, -88], + [-89, -131], + [9, -79], + [-30, -80], + [-78, -61], + [-34, -57], + [-35, -148], + [18, -46], + [-50, -99], + [-43, -26], + [-88, 13], + [-1, -96], + [-66, -134], + [-78, -80], + [-43, -16], + [-79, -190], + [-40, -55], + [-27, -130], + [-29, -66], + [-75, -99], + [-56, -7], + [3, -107], + [-32, -89], + [-40, -33], + [-25, -139], + [-46, -28], + [-7, -180], + [-32, -105], + [-111, -183], + [3, -63], + [-58, -21], + [-18, -176], + [-85, -23], + [-59, 118], + [-99, 15], + [-73, 78], + [-106, 0], + [-35, 37], + [-126, 11], + [-66, -39], + [-128, -11], + [-32, 79], + [-69, 85], + [-49, -11], + [-192, 33], + [-80, -7], + [-15, -86], + [-173, -29], + [-34, -32], + [-94, 55], + [-12, 66], + [-50, 66], + [-25, 78], + [-38, 41], + [-136, 42], + [-43, -17], + [7, -85] + ], + [ + [55301, 39995], + [-108, -4], + [-54, 49], + [-81, 32], + [-22, -85], + [-91, 9], + [-61, 79], + [-40, -55], + [-60, 23], + [-50, 67], + [-57, -29], + [-71, 25], + [-77, 64], + [42, 73], + [40, 132], + [-37, 84], + [3, 61], + [60, 88], + [-30, 65], + [6, 101], + [-53, 30] + ], + [ + [55602, 42899], + [6, -70], + [74, -8], + [-14, -52], + [129, -15], + [99, -103], + [174, 298], + [116, 123], + [15, 50], + [76, 43], + [72, 139], + [-109, 71], + [33, 52], + [89, 15], + [37, 43], + [56, -12], + [66, 25], + [161, -28], + [103, 44], + [126, -38], + [50, -61], + [102, -21], + [31, 56], + [86, 7], + [-3, -46], + [71, -79], + [113, 14], + [63, -19], + [270, 135], + [-7, 53], + [113, 106], + [38, -4], + [106, 72], + [74, 107], + [53, -24], + [-46, -98], + [17, -24], + [-62, -112], + [17, -107], + [-13, -62], + [149, -101], + [126, -22] + ], + [ + [53297, 42257], + [-173, 47], + [-19, 67], + [-63, -18], + [-177, 63], + [-198, 104], + [-16, 49], + [-146, 54], + [-169, -33], + [-147, 26], + [-141, -22], + [-45, 11], + [-129, -32], + [-47, 26], + [-43, -67], + [-67, 19], + [-25, -46], + [-113, -38], + [-82, 47], + [-59, 69], + [-48, -54], + [-186, -36], + [-107, 74], + [-105, 1], + [-154, 39], + [-74, 49], + [-40, -21], + [-125, 10], + [-133, -14], + [-123, 9], + [-336, -85], + [-97, 8], + [-71, -19], + [-86, 15], + [-63, 50], + [-101, -50], + [-77, -16], + [-83, 74], + [-66, -35], + [-89, 8], + [-194, -10], + [-117, -63], + [-159, 44], + [-99, 72], + [-43, -11], + [-263, 54], + [-52, 25], + [-121, 4], + [-138, 89], + [-179, 86], + [-152, 14], + [-37, -40], + [-64, -5], + [-77, 142], + [-8, 83], + [73, 210] + ], + [ + [47680, 43426], + [-3, 16] + ], + [ + [55301, 39995], + [0, -163], + [61, -85], + [74, -37], + [1, -245], + [23, -24], + [-11, -89], + [27, -146], + [61, -69], + [-36, -66], + [10, -165], + [-11, -111], + [-44, -60], + [-21, -225], + [35, -53], + [-106, -78], + [29, -50], + [-2, -177], + [36, -74], + [-65, -249], + [-15, -89], + [-56, -98], + [-68, -63], + [-107, -4], + [-103, 116], + [-161, -22], + [-9, -108], + [74, -201], + [-54, -47], + [-36, -71], + [-12, -107], + [-38, -14], + [30, -153], + [-46, -80], + [51, -163], + [47, -37], + [20, -85], + [-66, -73], + [34, -66], + [8, -119], + [90, -54], + [34, -56], + [14, -109], + [10, -229], + [-25, -72], + [-95, -7], + [35, -149], + [-71, -7], + [-30, 51], + [-88, 20], + [-72, -37], + [23, -66], + [-18, -62], + [41, -84], + [-109, 7], + [-33, -115], + [19, -166], + [-47, -2], + [-47, 102], + [-54, -20], + [-58, -123], + [-47, 108], + [-43, 42], + [-10, 71], + [-47, 4], + [-70, 77], + [-95, 35], + [-90, 89], + [-65, 10], + [-29, -261], + [-21, -62], + [-47, 2], + [-47, -61], + [-56, -19], + [-16, 179], + [-75, 173], + [96, 33], + [-22, 83], + [-15, 172], + [-26, 75], + [3, 73], + [-48, 164], + [-18, 163], + [-35, 212], + [-21, 236], + [-31, 119], + [-73, 131], + [-15, 78], + [-43, 65], + [0, 106], + [-61, 41], + [-26, 53], + [-94, 63], + [13, 162], + [26, 111], + [-62, 121], + [14, 114], + [-23, 86], + [-1, 94], + [105, 11], + [-77, 183], + [22, 74], + [-52, 64], + [2, 66], + [-44, 49], + [-32, 179], + [-30, 59], + [12, 48], + [-40, 163], + [-44, 43], + [33, 117], + [-58, 79] + ], + [ + [52951, 39244], + [-20, 200], + [62, 120], + [49, -10], + [47, 114], + [-40, 52], + [-1, 83], + [36, 45], + [-26, 64], + [21, 136], + [4, 208], + [-9, 91], + [-59, 50], + [-2, 57] + ], + [ + [59479, 46082], + [-69, -86], + [-53, -13], + [-60, -55], + [0, -90], + [-88, -76], + [13, -42], + [-114, -146], + [88, -99], + [-9, -52], + [68, -31], + [-16, -77], + [6, -143], + [-23, -41], + [17, -166], + [-25, -93], + [24, -60], + [-2, -83], + [86, -5], + [42, -33], + [-45, -115], + [-104, -109], + [-24, -45], + [-108, -49], + [-64, -63], + [-28, -110], + [74, -144], + [7, -109], + [-41, -49], + [-53, -7], + [-57, -79], + [-107, -92], + [-31, -115], + [-73, -63], + [38, -47], + [-114, -9], + [-36, -30], + [-53, -127], + [-88, -33], + [-198, -50] + ], + [ + [41082, 32408], + [203, -12], + [60, 12], + [36, -66], + [-12, -63], + [-145, 1], + [-110, -62], + [-70, -76], + [-68, 44], + [-2, -66], + [-101, 8], + [57, 76], + [62, 177], + [90, 27] + ], + [ + [40757, 35745], + [-22, -85], + [5, -81], + [165, 25], + [35, -92], + [92, -37], + [134, -28], + [106, -7], + [84, -86], + [49, -11], + [37, -120], + [-64, -113], + [-16, -76], + [71, -98], + [141, -11], + [-2, 110], + [104, 27], + [42, 33], + [1, 66], + [76, -21], + [88, 2], + [37, -77], + [-38, -59], + [22, -90], + [79, -133], + [81, -31], + [76, 0], + [47, -44], + [155, -13], + [59, -124], + [-6, -143], + [31, -85] + ], + [ + [42426, 34343], + [-40, -5], + [-131, -116], + [-70, -13], + [-153, 11], + [-210, -21], + [-205, -88], + [-62, -64], + [-199, -139], + [-227, -241], + [-151, -288], + [2, -125], + [75, -191], + [67, -89], + [47, -142], + [108, -212], + [23, -82], + [-26, -99], + [-169, 29], + [-103, -49], + [-36, -37], + [-4, -85], + [-109, -183], + [124, 3], + [58, 15], + [113, 102], + [76, 34], + [201, -34], + [-339, -227], + [-194, -144], + [-55, -70], + [-57, -117], + [0, -120], + [106, -34], + [18, -68], + [-45, -65], + [-207, -168], + [-126, -49], + [-180, -86], + [-105, -76], + [14, -32], + [-41, -122], + [-135, -138], + [-8, -94], + [-53, -56], + [-85, 14], + [-44, 110], + [-76, 57], + [-69, 18], + [-48, -75], + [33, -26], + [87, 14], + [74, -106], + [75, -59], + [-147, -40], + [-149, -80], + [-212, -72], + [-191, -53], + [-201, -39], + [-237, -67], + [-400, -143], + [-354, -185], + [-184, -84], + [-272, -160], + [-343, -255], + [-74, -66], + [-99, -120], + [-166, -102], + [-218, -187], + [-92, -97], + [-149, -200], + [-76, 30], + [-40, 41], + [-129, 38], + [-9, -81], + [-113, -10], + [-33, 14], + [-6, 1], + [0, -6], + [9, -14], + [15, -43], + [26, -10], + [5, -5], + [-1, -11], + [7, -20], + [26, -9], + [5, 4], + [2, 10], + [22, 13], + [9, -1], + [12, -7], + [12, -23], + [11, -11], + [-3, -4], + [-9, -2], + [-10, -26], + [-15, 8], + [-24, 3], + [-53, -5], + [-3, -3], + [2, -9], + [4, -7], + [-10, 0], + [-4, -3], + [-16, -29], + [-8, -31], + [-41, -2], + [-10, 38], + [3, 6], + [7, 56], + [-17, -4], + [-4, 1], + [-2, 6], + [-4, 4], + [-14, -13], + [-13, -28], + [-13, -3], + [-28, -1], + [-8, -3], + [-9, -13], + [-38, -3], + [-45, -38], + [-16, -25], + [-10, -5], + [-5, -27], + [1, -10], + [-9, -25], + [-20, 5], + [-23, 12], + [-49, 29], + [-10, -13], + [2, -8], + [-2, -6], + [2, -12], + [18, -17], + [13, -23], + [-6, -3], + [-7, -5], + [-31, -32], + [-11, -27], + [4, -10], + [6, -9], + [21, -37], + [-20, -20], + [-5, -10], + [-26, 13], + [13, -28], + [-5, -8], + [-52, -18], + [-7, -31], + [-62, 31], + [-8, 1], + [1, -13], + [5, -6], + [12, -7], + [27, -11], + [-1, -9], + [-4, -10], + [-16, -19], + [-15, 4], + [-3, -3], + [-6, -1], + [-9, 21], + [-6, 6], + [-10, 8], + [-9, 2], + [-3, -7], + [-1, -14], + [0, -14], + [4, -24], + [5, -12], + [14, -8], + [-1, -48], + [-32, -7], + [9, -32], + [-3, -7], + [-11, -6], + [-25, -8], + [-6, -9], + [-1, -7], + [-8, -2], + [-4, 8], + [-15, 0], + [-36, 21], + [-12, -3], + [-7, -5], + [-5, -11], + [-11, -5], + [-8, 0], + [-12, -13], + [-28, -3], + [-33, 15], + [-1, 13], + [-8, 4], + [-6, -7], + [-17, 7], + [-81, -42], + [-28, 2], + [-17, 12], + [-18, 1], + [-7, -9], + [-17, -9], + [-12, -2], + [-95, -50], + [-57, 15], + [-11, 25], + [-5, 13], + [-20, 6], + [1, 15], + [-5, 6], + [1, 8], + [-20, 9], + [-10, 7], + [-16, 27], + [-7, -2], + [-9, -8], + [-27, 15], + [-55, -10], + [-59, 7], + [-15, -13], + [-11, -2], + [-9, 0], + [-13, 24], + [-57, 22], + [-27, -3], + [-19, -22], + [-4, 11], + [-1, 18], + [-3, 4], + [-21, -5], + [-8, 2], + [-58, 76], + [-3, 85], + [-5, 37], + [-5, 10], + [-6, 2], + [-103, 228], + [-104, -55], + [21, -92], + [24, 1], + [35, -59], + [6, -27], + [-6, -7], + [-13, -7], + [-19, 12], + [-15, 23], + [-22, 4], + [-21, 48], + [-20, 62], + [-2, 22], + [-21, 16], + [-12, 6], + [-6, -3], + [-6, 4], + [-13, 69], + [-13, 14], + [-21, 52], + [-18, 20], + [-21, 28], + [-9, 4], + [-7, 8], + [-6, 12], + [-27, 89], + [-56, 66], + [-54, -50], + [0, -23], + [5, -12], + [17, -29], + [0, -10], + [-10, -8], + [-39, -21], + [-1, -30], + [-2, -18], + [-5, -12], + [-46, 4], + [-3, 10], + [2, 9], + [7, 10], + [1, 5], + [-13, 27], + [-19, -10], + [-3, -27], + [14, -27], + [2, -7], + [-10, -5], + [-11, -19], + [-15, -15], + [-2, -4], + [-47, -9], + [-6, 54], + [-5, 4], + [-5, 10], + [-2, 24], + [-62, 25], + [-39, -13], + [-6, -32], + [14, -8], + [-1, -20], + [6, -18], + [26, -24], + [2, -10], + [-7, -23], + [4, -17], + [-5, -9], + [-6, -3], + [-9, 0], + [-20, 8], + [-22, -6], + [4, -40], + [26, -54], + [-15, -31], + [-28, 5], + [-74, 112], + [-5, -3], + [-5, -4], + [-5, 5], + [-2, 2], + [-11, -1], + [-7, 8], + [-9, 2], + [-26, -12], + [-21, -3], + [-12, 3], + [-16, 33], + [-44, -6], + [-5, -16], + [-4, -3], + [-1, -3], + [1, -10], + [1, -6], + [-4, -5], + [-28, 6], + [-19, 1], + [-6, -3], + [-2, -6], + [7, -9], + [13, -38], + [105, -31], + [-30, -75], + [88, -115], + [15, -7], + [16, -3], + [6, -2], + [3, -2], + [12, -13], + [-1, -6], + [-9, -8], + [-21, -10], + [3, -36], + [-5, -7], + [-21, -11], + [-8, 1], + [-15, -10], + [-7, -2], + [-29, -32], + [-177, -41], + [-9, -9], + [-12, -24], + [-1, -10], + [4, -8], + [1, -10], + [-12, -14], + [-24, 4], + [-22, -2], + [-12, 2], + [-38, 17], + [-3, -1], + [-4, 0], + [-5, -5], + [1, -11], + [12, -25], + [-37, -44], + [-8, 8], + [-1, 9], + [3, 9], + [-4, 5], + [-21, -1], + [-15, 5], + [-10, 10], + [-8, 14], + [-7, 5], + [-12, 6], + [-39, -1], + [-39, 32], + [-38, -24], + [-8, -9], + [12, -18], + [-2, -6], + [-23, -22], + [-40, -60], + [-22, -16], + [-19, -27], + [1, -5], + [2, -6], + [-32, -51], + [-11, -30], + [-33, -15], + [-30, -7], + [-24, -13], + [-4, -6], + [0, -6], + [-1, -5], + [5, -9], + [7, -3], + [6, -7], + [8, -30], + [-2, -12], + [-23, -32], + [-4, -7], + [95, -124], + [7, 0], + [7, 0], + [31, 18], + [34, -3], + [5, -8], + [-2, -11], + [-80, -128], + [-33, -33], + [-6, -6], + [-16, -9], + [-23, -21], + [-2, -8], + [5, -9], + [15, -9], + [28, -4], + [64, -98], + [-2, -7], + [-21, -28], + [-6, -5], + [-30, -12], + [-6, 0], + [-11, 8], + [-18, 7], + [-14, 19], + [-13, -15], + [-32, -8], + [-9, 0], + [-2, 1], + [-24, -21], + [-6, -12], + [-4, -14], + [-96, -8], + [-11, 22], + [-17, -3], + [-11, -7], + [-7, 2], + [-8, 5], + [-12, -8], + [-39, 52], + [13, 32], + [0, 14], + [-14, 33], + [-12, 4], + [-20, -19], + [-16, 4], + [-15, 7], + [-16, 9], + [-66, 43], + [-43, 14], + [-50, -46], + [24, -68], + [-21, -45], + [14, -38], + [-28, -34], + [-9, -20], + [-152, -80], + [-10, 2], + [-7, 0], + [-19, -10], + [-37, -5], + [-19, -28], + [-25, -50], + [6, -28], + [-5, -10], + [-18, -13], + [-12, -15], + [-6, 0], + [-5, 1], + [-14, 17], + [-9, 4], + [-6, 3], + [-6, 11], + [2, 6], + [-5, 6], + [-19, 6], + [-6, 6], + [-20, 5], + [-1, 13], + [-3, 8], + [-4, 1], + [-5, 1], + [-5, 8], + [8, 7], + [9, 5], + [-6, 13], + [10, 16], + [1, 10], + [-7, 23], + [-11, -3], + [-3, 1], + [-3, 0], + [-8, 13], + [4, 6], + [11, 5], + [14, 18], + [32, 2], + [-8, 24], + [-6, 7], + [-2, 17], + [9, 58], + [-98, 52], + [-45, 46], + [4, 9], + [5, 11], + [12, 0], + [2, 16], + [9, 6], + [2, 17], + [6, 9], + [-14, 9], + [-7, -1], + [-13, 4], + [1, -11], + [-13, -10], + [-6, 1], + [-3, 14], + [1, 6], + [-6, 10], + [-8, -4], + [-15, 24], + [3, 8], + [9, 5], + [13, 15], + [0, 22], + [-7, 12], + [-11, -1], + [1, 6], + [0, 5], + [10, 6], + [-3, 9], + [-2, 8], + [2, 16], + [-91, 26], + [-13, 33], + [5, 5], + [9, 2], + [7, 3], + [-8, 11], + [-17, -4], + [-45, -46], + [-8, -13], + [-28, -32], + [-22, -47], + [-15, -17], + [-18, -12], + [-32, -30], + [-44, -69], + [-13, -4], + [-10, -7], + [-2, -9], + [-11, -8], + [11, -15], + [14, -12], + [26, -59], + [0, -8], + [-7, -5], + [-5, -12], + [-6, -19], + [-15, -7], + [-20, -16], + [-33, -50], + [-5, -34], + [33, 2], + [16, 19], + [34, 7], + [8, -1], + [9, -18], + [10, -11], + [-12, -13], + [-5, -27], + [-7, -11], + [-22, -24], + [-11, -7], + [-51, 2], + [-15, -13], + [-7, -32], + [-5, -13], + [-3, -35], + [6, -36], + [-59, -47], + [7, -14], + [2, -35], + [85, -29], + [36, -51], + [-17, -34], + [-28, 22], + [-14, 8], + [-11, 10], + [4, -35], + [-11, -19], + [5, -28], + [-1, -30], + [24, -27], + [0, -33], + [-13, -44], + [-2, -4], + [-14, -16], + [-11, 5], + [3, 9], + [-9, 9], + [-39, -25], + [-36, 49], + [-65, -60], + [17, -21], + [6, -13], + [4, -22], + [0, -29], + [-7, -27], + [-14, -9], + [-17, -5], + [-26, -1], + [-7, 10], + [-3, 18], + [-14, 4], + [-17, -2], + [-10, 3], + [-23, 15], + [-24, 19], + [-13, 0], + [-13, -3], + [-17, 7], + [-7, 12], + [6, 12], + [-8, 11], + [-21, 37], + [-8, 5], + [-28, -8], + [-33, -11], + [-7, 30], + [-47, 13], + [-34, -3], + [-72, -18], + [-77, 30], + [-17, -7], + [-23, -13], + [-11, -11], + [1, -49], + [-145, -91], + [-196, -77], + [-30, 1], + [-29, -13], + [-42, -22], + [-33, -52], + [-8, -9], + [-14, -11], + [-109, -71], + [-51, -30], + [-11, 33], + [-22, 21], + [-11, -12], + [-12, -4], + [-32, -2], + [-45, -87], + [-41, -34], + [-18, -6], + [-10, -15], + [-25, 0], + [-55, 28], + [-46, -26], + [-160, -31], + [-24, 47], + [-134, -42], + [-14, 1], + [-19, 6], + [-20, -3] + ], + [ + [25654, 9761], + [-7, -376] + ], + [ + [25647, 9385], + [-69, -6], + [-37, 139], + [-66, 43], + [-101, 18], + [-39, 36], + [-12, 90], + [50, 1], + [57, 64], + [68, -30], + [40, 44], + [116, -23] + ], + [ + [25617, 11991], + [-30, -136], + [-52, -170] + ], + [ + [25535, 11685], + [-31, 69], + [-69, 45], + [-54, -25], + [-81, 16], + [69, 87], + [-89, 83], + [38, 57], + [-15, 53], + [-115, 2], + [11, 50], + [97, 46], + [31, -92], + [97, 20], + [-36, -90], + [32, -42], + [125, 79], + [21, -52], + [51, 0] + ], + [ + [15665, 12242], + [-27, -46], + [-70, -9], + [-9, -52], + [-72, 49] + ], + [ + [13922, 53612], + [-253, 10], + [-250, 20], + [-84, -2], + [-402, 31], + [-391, 3], + [-22, 61], + [38, 132], + [43, 34], + [98, 137], + [8, 156] + ], + [ + [12707, 54194], + [-19, 154], + [-51, 96], + [-135, 186], + [67, 77], + [53, 10], + [10, 86], + [67, -2], + [57, 109], + [226, 158], + [2, 58], + [69, 72], + [60, 8], + [101, 91], + [78, 110], + [91, 55], + [-19, 68], + [93, 112], + [19, 61], + [123, 12], + [-14, 75], + [118, 61], + [3, 33], + [110, 93], + [57, 2], + [92, 70], + [-15, 28], + [48, 123], + [40, 11], + [63, -55], + [123, 25], + [59, 41], + [25, 54], + [-34, 78], + [-116, 15], + [-75, -19], + [-9, -79], + [-91, -11], + [-5, 66], + [-84, 43], + [-11, 102], + [46, 157], + [-24, 57], + [42, 61], + [48, -1], + [93, 228], + [68, 62], + [37, 87], + [-152, 135], + [57, 18], + [4, 93], + [-49, 129], + [-134, 230], + [1, 51], + [75, 29], + [-18, 43], + [28, 122], + [210, 187], + [112, 35], + [216, 85], + [36, 74], + [110, 86], + [128, 80], + [76, -24], + [83, -61], + [116, 29], + [40, 39], + [112, 58], + [143, 1], + [18, 71], + [41, 11], + [60, -74], + [72, 59], + [25, 68], + [57, 29], + [30, 108], + [90, 85], + [7, 71], + [-60, 45], + [-7, 79], + [-31, 34] + ], + [ + [19984, 48672], + [62, -43], + [15, -118], + [-19, -55], + [70, -12], + [18, -127], + [-68, -95], + [32, -35], + [32, -166], + [79, -15], + [38, -84], + [79, -46], + [-31, -85], + [36, -61], + [144, -41], + [100, -90], + [70, -36], + [92, 27], + [-16, -117], + [77, -113], + [-5, -56], + [68, -33], + [-40, -58], + [-87, -1], + [-39, -106], + [-116, -31], + [-58, -64], + [104, -23], + [-14, -68], + [87, -46], + [128, -14], + [31, 61], + [72, -113], + [-26, -49], + [-109, -27], + [-138, -84], + [-213, -63], + [-71, -66], + [-61, -19], + [-11, -56], + [47, -55], + [-23, -77], + [79, -37], + [36, 42], + [38, 139], + [50, -60], + [193, 29], + [107, 51], + [32, 40], + [97, 17], + [17, 96], + [91, 35], + [234, -75], + [41, -37], + [43, 57], + [71, -33], + [46, 29], + [112, -9], + [62, 16], + [98, -31], + [57, 59], + [5, 63], + [54, 5], + [205, -54], + [63, -4], + [-29, -72], + [-95, -54], + [11, -95] + ], + [ + [6420, 41445], + [-75, 73], + [-83, 200], + [-69, 125], + [-128, 189], + [-44, 139], + [-69, 346], + [-297, 302], + [-33, 107], + [-154, 158], + [30, 298], + [-25, 13], + [10, 316], + [-33, 85], + [-42, 21], + [-99, -8], + [-152, -62], + [-93, -1], + [-199, -28], + [-252, 81], + [-29, 23], + [-61, 133], + [-90, 90], + [-56, 33], + [-28, 57], + [-129, 185], + [-34, 95], + [-23, 215], + [30, 91], + [112, 159], + [60, 182], + [-13, 143], + [26, 99], + [-5, 193], + [17, 124], + [-35, 148], + [-134, 89], + [-90, 23], + [-91, -1], + [-234, -38], + [-138, 1], + [-88, 22], + [-96, 49], + [-110, 93], + [-438, 190], + [-33, 29], + [-52, 133], + [37, 218], + [27, 269], + [115, 282], + [47, 91], + [174, 170], + [323, 250], + [108, 100], + [164, 229], + [175, 125], + [19, 32], + [183, 455], + [108, 156], + [111, 118], + [210, 141], + [139, 144], + [248, 58], + [113, -2], + [71, -30], + [215, -206], + [26, -38], + [13, -174], + [131, -224], + [44, -57], + [135, -30], + [193, -9], + [279, 131], + [384, 155], + [142, 41], + [300, 55], + [267, -1], + [122, 12], + [158, -4], + [526, 205], + [33, 210], + [40, 170], + [143, 197], + [287, 223], + [128, 126], + [54, 97], + [204, 612], + [54, 79], + [128, 151], + [297, 149], + [288, 173], + [200, 104], + [410, 166], + [35, 23], + [123, 271], + [173, 199], + [129, 222], + [119, 229], + [176, 297], + [152, 490], + [99, 363], + [60, 54], + [436, 169], + [314, 79], + [88, 30], + [96, 91], + [283, 199] + ], + [ + [45218, 47150], + [-75, -10], + [-13, 49], + [-60, 35], + [-55, -41], + [-89, 59], + [-60, 15], + [-157, -45], + [3, -57], + [-57, -58], + [-64, -26], + [-27, -56], + [-49, -19], + [-150, 39], + [-130, 70], + [-60, 6], + [-99, -27], + [-41, 36], + [-76, -1], + [-46, -47], + [-48, 6], + [-111, 57], + [-6, 54], + [-55, 113], + [-91, 12] + ], + [ + [43602, 47314], + [36, 71], + [2, 84], + [77, 114], + [-54, 82], + [19, 96], + [62, 45], + [-77, 108], + [39, 77], + [-1, 64], + [70, 133], + [46, 31], + [14, 80], + [54, 47], + [30, 174], + [44, 14], + [42, 101], + [-27, 46], + [35, 62], + [-115, 91], + [-47, 12], + [-36, 70], + [56, 119], + [76, -43], + [65, 50], + [65, -1], + [24, -41], + [207, 92], + [112, -24], + [83, 70], + [77, 27], + [45, 59], + [113, -20], + [91, 113], + [138, 44], + [64, -70], + [42, 11], + [143, -13], + [107, -99], + [65, -36], + [26, -55], + [-10, -137], + [50, -15], + [46, -70], + [2, -130], + [-55, -48], + [-8, -92], + [22, -91], + [-37, -89], + [3, -73], + [-81, -62], + [-10, -90], + [-84, -88], + [47, -84], + [-11, -169], + [57, -117], + [63, -61], + [40, 19], + [74, -117], + [71, -23], + [-51, -119], + [-59, -37], + [-82, 10], + [-75, -36], + [0, -62], + [-36, -90], + [-57, -23], + [-15, -55] + ], + [ + [24462, 5952], + [50, -40], + [-42, -61], + [26, -58], + [107, -99], + [-9, -30], + [-112, 76], + [-97, 41], + [-123, 29], + [-2, 57], + [104, 3], + [47, 62], + [51, 20] + ], + [ + [25535, 11685], + [-51, -228], + [-44, -291], + [9, -108], + [58, -141], + [44, -73], + [48, -208], + [21, -15], + [1, -151], + [22, -115], + [21, -216], + [-10, -378] + ], + [ + [25647, 9385], + [11, -524], + [21, -395], + [40, -255], + [-37, -45], + [-69, -25], + [-201, -1], + [43, 60], + [-127, 52], + [-130, -8], + [-43, 59], + [-31, -65], + [14, -43], + [-490, 44], + [-58, -51], + [-98, -32], + [-68, -49], + [-60, -72], + [29, -39], + [-87, -74], + [-33, -190], + [57, -74], + [11, -75], + [-33, -21], + [-192, -214], + [-58, -88], + [-9, -69], + [-73, -85], + [-75, -129], + [-39, -19], + [-131, -177], + [-44, -131], + [-56, -55], + [-23, -80], + [-20, -181], + [-30, -59], + [57, -106], + [90, -110], + [118, -109], + [96, -65], + [97, -26], + [78, 6], + [54, -27], + [-167, -45], + [-252, 31], + [-117, -17], + [-42, -38], + [-102, 9], + [-227, -87], + [-47, -9], + [-38, -50], + [-112, 16], + [-49, -36], + [13, -52], + [-81, -16], + [-85, -48], + [-51, 14], + [-208, -25], + [-102, -34], + [-136, -117], + [-169, -129], + [-78, -49], + [-94, -106], + [-51, -119], + [-19, -263], + [20, -64], + [-38, -78], + [-117, -170], + [0, -61], + [83, -54], + [-36, -167], + [17, -43], + [-94, -104], + [-50, -78], + [-22, -86], + [-70, -53], + [-94, -43], + [-58, -61], + [-143, -94], + [-195, -73], + [-35, -81], + [-91, -72], + [-59, -22], + [-227, -37], + [-81, -33], + [-37, -37], + [2, -68], + [-52, -28], + [-248, 50], + [-161, 53], + [-102, 21], + [-4, 26], + [-260, 177], + [-50, 61], + [-155, 119] + ], + [ + [22062, 13868], + [-3, -13], + [21, -62], + [-4, -12], + [-15, -27], + [-23, -9], + [-15, -1], + [-7, -6], + [-8, 1], + [-3, -4], + [10, -12], + [-1, -3], + [-21, -12], + [1, -5], + [12, -3], + [3, -3], + [8, -7], + [61, -4], + [-1, 36], + [81, 5], + [43, -56], + [7, -21], + [7, -12], + [40, -7], + [46, -27], + [21, -15], + [20, -19], + [27, -20], + [17, -7], + [70, 3], + [16, 10], + [11, 1], + [13, 6], + [15, -13], + [32, 4], + [26, -2], + [7, -9], + [11, 12], + [-1, 33], + [6, 2], + [2, 7], + [-7, 8], + [-4, 54], + [79, 17], + [-1, 56], + [4, 23], + [6, -12], + [26, 1], + [2, 6], + [-3, 8], + [-34, 14], + [-5, 14], + [-15, 14], + [-11, 16], + [11, 11], + [21, -10], + [7, -15], + [10, -6], + [3, -8], + [1, -11], + [8, 0], + [8, 20], + [3, -32], + [8, -10], + [23, -6], + [2, -9], + [-4, -6], + [-10, 6], + [-5, -11], + [13, -30], + [7, -1], + [8, 2], + [22, 12], + [24, 28], + [-15, 23], + [6, 18], + [9, 13], + [4, 13], + [-19, 6], + [19, 40], + [9, 13], + [48, 36], + [25, 165], + [73, 175], + [49, 11], + [-25, 44], + [-14, 35], + [19, 3], + [-39, 45], + [-14, 11], + [15, 9], + [37, 33], + [10, 11], + [15, 34], + [5, 3], + [94, -31], + [5, 19], + [11, 73], + [3, 28], + [82, -25], + [14, 0], + [18, 4], + [51, 14], + [12, 7], + [8, 14], + [31, 31], + [175, -14], + [1, -59], + [-3, -43], + [6, -13], + [18, 0], + [56, 7], + [16, -3], + [4, -7], + [8, 7], + [-2, 4], + [-16, 12], + [-6, 9], + [-29, -3], + [-13, 1], + [-11, 8], + [16, 39], + [30, 37], + [35, -4], + [14, 9], + [20, -15], + [30, 4], + [8, 14], + [41, 11], + [15, -8], + [15, -22], + [11, -12], + [24, 0], + [26, -4], + [6, -15], + [17, -9], + [23, -5], + [20, -13], + [2, -23], + [15, -17], + [18, -15], + [30, -4], + [48, 27], + [33, -4], + [73, -35], + [19, 10], + [20, 9], + [6, 9], + [8, 24], + [0, 8], + [0, 11], + [-16, 35], + [21, 16], + [4, 16], + [14, 23], + [4, 18], + [9, 11], + [20, 2], + [11, 2], + [16, 13], + [26, 87], + [37, -3], + [2, 18], + [7, 16], + [9, -4], + [3, -11], + [8, -11], + [11, 9], + [13, 1], + [9, -7], + [3, -26], + [2, -14], + [25, 5], + [7, -11], + [23, -8], + [-3, -40], + [23, -1], + [5, 7], + [-1, 16], + [6, 16], + [10, 13], + [30, 4], + [11, 15], + [5, -10], + [15, 1], + [12, 4], + [-5, 87], + [30, -16], + [8, 10], + [5, 12], + [8, 7], + [-4, 17], + [20, 15], + [14, 5], + [29, 4], + [34, -1], + [16, -4], + [7, 7], + [-5, 14], + [4, 13], + [-4, 22], + [53, 19], + [0, 12], + [-7, 17], + [-14, 1], + [-39, -26], + [-3, -14], + [-13, -1], + [-5, 18], + [2, 19], + [-5, 22], + [3, 21], + [8, 25], + [15, 21], + [-3, 6], + [1, 13], + [15, 15], + [-7, 13], + [-36, -3], + [-44, 21], + [-24, 20], + [59, 29], + [35, 14], + [82, 6], + [54, -7], + [18, -11], + [23, -4], + [55, 2], + [28, -11], + [7, -23], + [6, -51], + [29, -46], + [24, -22], + [12, -5], + [20, -5], + [12, 4], + [2, 15], + [5, 16], + [27, 17], + [148, 33], + [24, -29], + [11, -30], + [-23, -22], + [-6, -26], + [5, -14], + [16, -3], + [9, 13], + [16, 10], + [9, -10], + [-1, -24], + [-14, -29], + [23, -19], + [13, 15], + [13, 3], + [9, 9], + [6, 19], + [10, -2], + [8, -10], + [13, -6], + [11, -22], + [2, -17], + [13, -7], + [17, 22], + [12, 2], + [35, 28], + [9, -1], + [13, 2], + [0, 23], + [-18, 14], + [-49, 23], + [-16, 10], + [-14, 14], + [-39, 26], + [-1, 15], + [19, 7], + [26, 4], + [10, 7], + [8, 25], + [2, 19], + [7, 9], + [32, -30], + [25, -18], + [16, 6], + [29, 46], + [18, 1], + [34, -6], + [60, 2], + [43, 20], + [9, 13], + [12, 7], + [13, 2], + [25, 19], + [14, 8], + [47, 7], + [62, 88], + [-46, 70], + [40, 9], + [17, 10], + [10, 12], + [-5, 23], + [5, 30], + [-2, 8], + [-1, 16], + [14, 12], + [43, 13], + [6, 0], + [1, -6], + [10, 0], + [20, 44], + [3, 22], + [42, -3], + [24, -5], + [-102, 98], + [10, 6], + [30, 7], + [15, -9], + [7, -8], + [26, -4], + [10, -4], + [25, 1], + [12, 19], + [19, 5], + [13, 5], + [4, 3], + [5, 4], + [42, -28], + [18, -40], + [6, -4], + [2, -3], + [45, -7], + [26, -15], + [11, -11], + [15, -12], + [17, -16], + [141, 7], + [96, -80], + [17, -76], + [22, -16], + [5, -13], + [-2, -6], + [-4, 0], + [-2, 0], + [-6, -4], + [5, -19], + [87, -41], + [31, 66], + [35, -168], + [-6, -129], + [-72, -251], + [-22, -47], + [9, -113], + [-49, -86], + [-6, -73], + [-39, -175], + [-26, -206], + [-6, -125], + [16, -63], + [-194, -588], + [-19, -124], + [-93, -155], + [-134, -159], + [-89, -166], + [-62, -30], + [9, -60], + [-230, -369], + [-83, -196], + [-21, -91] + ], + [ + [52951, 39244], + [-47, -10], + [-1, -75], + [-64, 8], + [-148, 86], + [-139, -182], + [-36, -21], + [-151, 102], + [-41, 95], + [-47, -5], + [-43, -106], + [47, -238], + [-6, -145], + [33, -47], + [-77, -81], + [1, -54], + [-84, 9], + [-116, -89], + [-15, -52], + [-78, -96], + [-82, -174], + [62, -155], + [34, -134], + [44, -108], + [-25, -37], + [-100, -25], + [-48, -114], + [-61, -44], + [-66, 14], + [-91, -37], + [-72, -82], + [-135, 58], + [-35, 53], + [16, 80], + [-85, 166], + [12, 32], + [-50, 72], + [18, 83], + [-37, 36], + [-70, 124], + [-79, 3], + [-57, -78], + [-10, -164], + [67, -215], + [-97, 11], + [-54, 86], + [-50, 130], + [-11, 222], + [-62, 156], + [27, 79], + [-38, 25], + [-20, 102], + [-51, 88], + [-13, 96], + [-109, 80], + [-24, 116], + [-54, 48], + [-14, 76], + [30, 67], + [68, -13], + [-13, 94], + [-94, -2], + [-6, 74], + [37, 66], + [84, -1], + [51, 41], + [8, 98], + [44, 65], + [-56, 138], + [109, 187], + [54, 42], + [119, -28], + [67, 99], + [12, 51], + [-42, 69], + [-4, 61], + [77, 8], + [176, -30], + [120, -50], + [112, 9], + [84, 52], + [23, 154], + [34, 42], + [110, -82], + [115, -20], + [-42, 240], + [216, -114], + [67, -55], + [36, -86], + [47, 13], + [5, 68], + [66, 221], + [-48, 158], + [81, 47], + [38, -57], + [53, 18], + [-44, 95], + [260, -11], + [49, 19], + [44, 94], + [74, 15], + [-33, 68], + [8, 120], + [27, 50], + [74, -63], + [52, -6] + ], + [ + [26133, 51038], + [105, -3], + [117, -108], + [98, -61], + [76, 6], + [12, -66], + [47, -45], + [87, -23], + [19, -78], + [101, -86], + [95, 23], + [102, -42], + [23, -70], + [77, -52], + [33, 20], + [-40, 204], + [80, 59], + [111, -25], + [-22, -43], + [69, -51], + [87, -12], + [139, -153], + [117, -5], + [37, -84], + [156, -74], + [45, 29], + [72, -28], + [-6, -74], + [85, -25], + [76, -47], + [45, 45], + [176, -160], + [288, -56], + [53, -83], + [-4, -83], + [193, -212], + [-6, -147], + [117, 20], + [9, 80], + [78, -5], + [80, -33], + [6, -45], + [75, -52], + [-12, -83], + [151, -77], + [212, -128], + [129, -17], + [226, -192], + [63, -14], + [151, -101], + [145, 174], + [226, -15], + [115, -133], + [68, 3], + [119, -54], + [209, -161], + [140, -71], + [77, -92], + [103, -56], + [54, -5], + [94, 32], + [55, -11], + [141, 47], + [220, 25], + [29, -68], + [-9, -57], + [51, -51], + [-10, -51], + [49, -69], + [-39, -96], + [26, -56], + [-32, -45], + [147, -16], + [73, 12], + [208, -2], + [54, -76], + [176, -44], + [287, 20], + [52, -8], + [49, -69], + [136, -94], + [-15, -42], + [64, -72], + [127, 13], + [79, 83], + [38, 69], + [-48, 85], + [40, 35], + [-29, 51], + [497, -23], + [476, -231], + [55, -43] + ], + [ + [20616, 54679], + [159, 13], + [84, -59], + [82, -106], + [89, -33], + [134, -78], + [230, -80], + [27, -38], + [-55, -57], + [-18, -67], + [-167, -214], + [-74, 15], + [-62, -124], + [34, -33], + [-72, -88], + [-2, -82], + [-49, -55], + [33, -50], + [-65, -106], + [59, -33], + [27, -101], + [49, -56], + [-15, -160], + [87, -42], + [-11, -37], + [92, -23], + [87, 69], + [57, -9], + [90, 39], + [10, -64], + [70, -104], + [17, -133], + [-13, -70], + [118, -6], + [25, 96], + [76, 15], + [27, 58], + [165, 126], + [61, 71], + [83, -14], + [158, 124], + [63, 89], + [119, -51], + [224, -76], + [43, -116], + [9, -93], + [42, -62], + [101, -100], + [139, -76], + [118, -90], + [73, 0], + [86, -58], + [220, -56], + [76, -8], + [-8, -75], + [-88, -88], + [-93, -36], + [-66, -63], + [-59, 16], + [-70, -46], + [4, -39], + [190, -140], + [38, 19], + [72, -26], + [78, -108], + [12, -91], + [87, -32], + [49, 37], + [75, -113], + [26, 75], + [133, 7], + [61, -47], + [91, -28], + [-16, -87], + [67, -71], + [7, -82], + [78, 31], + [74, -52], + [91, -97], + [155, -29], + [114, -46], + [-13, -108], + [35, -69], + [211, 17], + [57, 63], + [45, -27], + [-6, -76], + [91, 48], + [59, 2], + [103, -44], + [96, 71], + [142, 29], + [63, -46], + [-3, -89], + [105, 28], + [-19, -85], + [106, -53], + [51, -48], + [38, -89], + [129, -22], + [56, 47], + [59, 106], + [-32, 39], + [72, 82], + [30, -13] + ], + [ + [23571, 56655], + [21, 17], + [30, 165], + [111, 44], + [57, 101], + [60, 63], + [7, 68], + [43, 34], + [159, -77], + [107, -154], + [97, -81], + [-2, -39], + [60, -55], + [-31, -98], + [63, -21], + [57, -114], + [-14, -34], + [38, -74], + [56, -45], + [125, -26], + [21, -83], + [33, -13], + [15, -91], + [184, 9], + [90, -116], + [-15, -40], + [118, -69], + [152, 96], + [94, -9], + [108, 57], + [140, -67], + [100, 4], + [55, -124], + [77, -77], + [59, 0], + [117, -57], + [66, -55], + [42, 1], + [66, -103], + [64, -46], + [124, 75], + [56, -59], + [12, -53], + [71, 4], + [32, -57], + [-39, -101], + [-86, -63], + [63, -57], + [4, -145], + [64, -39], + [83, 21], + [199, -111], + [71, 10], + [51, -59], + [135, -35], + [100, -68], + [55, 14], + [24, 50], + [59, -15], + [122, -85], + [26, 1], + [155, -101], + [62, -62], + [29, -63], + [85, -65], + [439, -132], + [-73, -57], + [-107, -5], + [-142, -155], + [35, -84], + [-73, -70], + [-86, -29], + [-150, -209], + [-41, 2], + [-95, -97], + [-160, 1], + [-64, -82], + [-4, -67], + [-42, -95], + [-102, -70], + [-32, -64], + [-63, 16], + [-124, -24], + [-48, -96], + [-47, -23], + [44, -151], + [71, -55], + [10, -49], + [-29, -81], + [-149, -197], + [-97, -50], + [14, -81], + [-124, -15], + [-10, -81], + [74, -45], + [-9, -66], + [57, -92], + [43, -19], + [-27, -70], + [-23, -203], + [-79, -23], + [33, -99], + [-87, -61], + [-108, 44], + [-88, -79], + [-35, -98], + [-3, -127], + [-20, -56], + [-48, -15], + [-83, -136], + [14, -183], + [13, -17] + ], + [ + [44659, 34322], + [71, -38], + [2, -95], + [-108, 31], + [35, 102] + ], + [ + [45400, 34340], + [127, -65], + [17, -63], + [-101, -5], + [-57, 63], + [14, 70] + ], + [ + [45168, 34409], + [16, -62], + [46, -25], + [-22, -25], + [-15, -36], + [-71, 39], + [10, 80], + [36, 29] + ], + [ + [44746, 34412], + [103, -64], + [6, -52], + [-81, -57], + [-29, 57], + [-58, 30], + [59, 86] + ], + [ + [45262, 34446], + [5, -78], + [53, -64], + [-92, -37], + [-17, 27], + [18, 20], + [2, 11], + [-10, 9], + [-33, 13], + [-6, 79], + [80, 20] + ], + [ + [45689, 34419], + [49, 8], + [15, -43], + [-16, -31], + [-69, 10], + [21, 56] + ], + [ + [44833, 34535], + [49, -117], + [-14, -53], + [-77, 39], + [42, 131] + ], + [ + [45730, 34567], + [21, -131], + [65, 9], + [11, -111], + [-63, -6], + [-14, 90], + [-12, 11], + [-51, -4], + [-31, 131], + [46, -7], + [28, 18] + ], + [ + [45339, 34569], + [-22, -118], + [-42, 20], + [-41, -2], + [-22, 23], + [-38, 23], + [63, 1], + [6, 17], + [96, 36] + ], + [ + [44249, 34569], + [87, -61], + [7, -71], + [-36, -65], + [-70, 18], + [24, 84], + [-12, 95] + ], + [ + [44563, 34576], + [37, -81], + [-43, -125], + [-67, 72], + [-2, 89], + [75, 45] + ], + [ + [45098, 34584], + [13, -60], + [82, -75], + [-34, -38], + [-83, 105], + [22, 68] + ], + [ + [44015, 34603], + [26, -48], + [-40, -14], + [-1, -40], + [39, -17], + [20, 3], + [15, -69], + [-58, -73], + [-52, 184], + [51, 74] + ], + [ + [45894, 34604], + [72, -127], + [2, -69], + [-95, -38], + [-52, 54], + [1, 102], + [-18, 47], + [90, 31] + ], + [ + [45715, 34616], + [92, -63], + [-4, -89], + [-48, 26], + [-40, 126] + ], + [ + [44765, 34638], + [55, -9], + [34, -77], + [-44, -15], + [3, -63], + [-58, -59], + [-53, 167], + [63, 56] + ], + [ + [45507, 34659], + [67, -45], + [62, -84], + [-44, -131], + [-79, 65], + [-28, 77], + [22, 118] + ], + [ + [44472, 34626], + [35, -66], + [-33, -27], + [-5, -71], + [46, -74], + [-98, -34], + [-17, 156], + [42, 41], + [30, 75] + ], + [ + [44051, 34698], + [111, -18], + [2, -61], + [86, -130], + [-40, -81], + [-4, -171], + [-95, 2], + [-7, 65], + [-61, 64], + [38, 37], + [-4, 77], + [-14, 14], + [-39, -1], + [-21, 19], + [4, 20], + [44, 26], + [-20, 40], + [20, 98] + ], + [ + [45604, 34697], + [83, -27], + [16, -119], + [-49, 8], + [-61, 44], + [11, 94] + ], + [ + [44368, 34702], + [0, -97], + [72, -20], + [-88, -61], + [-45, 53], + [25, 39], + [-14, 63], + [50, 23] + ], + [ + [45775, 34704], + [112, -81], + [-77, -29], + [-35, 110] + ], + [ + [45394, 34707], + [65, -10], + [-47, -107], + [2, -62], + [42, -106], + [-45, -52], + [-67, 45], + [31, 72], + [-14, 85], + [-71, 6], + [15, 90], + [49, 3], + [40, 36] + ], + [ + [44845, 34734], + [3, -38], + [8, -21], + [64, -27], + [-53, -49], + [-51, 115], + [29, 20] + ], + [ + [45763, 34752], + [11, -161], + [-61, 29], + [-22, 101], + [72, 31] + ], + [ + [44906, 34763], + [30, -39], + [-5, -78], + [-77, 39], + [7, 54], + [7, 12], + [38, 12] + ], + [ + [44573, 34759], + [36, 6], + [-17, -125], + [-26, -61], + [-49, -15], + [-22, 143], + [78, 52] + ], + [ + [45140, 34802], + [23, -61], + [71, -51], + [-14, -63], + [52, -18], + [-43, -41], + [13, -31], + [-5, -18], + [-34, -2], + [-27, 13], + [-4, -17], + [52, -37], + [-15, -18], + [-80, 73], + [-36, 125], + [47, 146] + ], + [ + [44762, 34809], + [55, -38], + [-15, -78], + [-83, -96], + [-45, 74], + [1, 51], + [87, 87] + ], + [ + [44492, 34811], + [40, -51], + [-86, -104], + [-39, 82], + [85, 73] + ], + [ + [45386, 34795], + [5, -86], + [-41, -37], + [-57, 41], + [93, 82] + ], + [ + [45297, 34658], + [-68, -27], + [18, 118], + [43, -27], + [7, -64] + ], + [ + [45579, 34845], + [9, -6], + [33, -2], + [5, -11], + [-23, -31], + [2, -10], + [-22, -19], + [12, -8], + [-39, -84], + [-10, 58], + [-34, 77], + [20, 6], + [18, 18], + [29, 12] + ], + [ + [45635, 34894], + [12, -18], + [15, -32], + [1, -40], + [-76, -77], + [11, 29], + [-11, 11], + [21, 18], + [12, 33], + [9, 6], + [-4, 13], + [-21, 2], + [-6, 28], + [18, 4], + [5, 18], + [14, 5] + ], + [ + [44293, 34926], + [46, -14], + [21, -136], + [40, -20], + [-4, -43], + [-46, -4], + [-30, -16], + [-8, -21], + [12, -68], + [-87, -9], + [-4, 100], + [-48, 70], + [-39, 6], + [-9, 31], + [13, 15], + [41, 21], + [51, 17], + [51, 71] + ], + [ + [45447, 34936], + [-1, -18], + [48, -13], + [-5, -14], + [12, -39], + [-2, -49], + [38, -60], + [-13, -44], + [-123, 44], + [9, 155], + [37, 38] + ], + [ + [43866, 34959], + [45, -104], + [30, -197], + [-38, -121], + [3, -92], + [-87, -62], + [-162, 54], + [-11, 57], + [16, 101], + [38, 39], + [24, 101], + [109, 202], + [33, 22] + ], + [ + [45300, 34967], + [7, -13], + [-13, -11], + [7, -11], + [21, 17], + [10, -9], + [56, -8], + [-18, -89], + [-58, -29], + [-63, 42], + [24, 80], + [27, 31] + ], + [ + [45718, 35001], + [114, -71], + [-24, -104], + [-96, -31], + [-55, 87], + [62, 64], + [-1, 55] + ], + [ + [44932, 35011], + [68, -67], + [-31, -194], + [-36, 20], + [-4, 71], + [-56, 74], + [59, 96] + ], + [ + [44801, 35011], + [31, -21], + [-29, -133], + [-71, 42], + [21, 49], + [48, 63] + ], + [ + [44547, 35028], + [31, -26], + [51, -20], + [15, -80], + [-80, -66], + [-26, -46], + [-110, 71], + [17, 93], + [37, 33], + [6, 37], + [35, -4], + [24, 8] + ], + [ + [45144, 35033], + [19, -18], + [46, -6], + [8, -23], + [14, -18], + [38, -32], + [-53, -149], + [-55, -15], + [-65, 111], + [48, 150] + ], + [ + [44972, 35067], + [59, -20], + [-30, -75], + [-65, 48], + [36, 47] + ], + [ + [45404, 35058], + [110, -8], + [62, 31], + [125, -66], + [-15, -84], + [-36, -50], + [-4, 1], + [-17, 28], + [-1, -12], + [-11, -7], + [-1, -16], + [-22, -8], + [-18, -18], + [-27, -14], + [-27, -21], + [-21, 23], + [4, 17], + [-11, 37], + [3, 14], + [-10, 7], + [-29, 2], + [-26, 93], + [-28, 51] + ], + [ + [45156, 35090], + [19, -28], + [49, 16], + [99, -16], + [32, -39], + [-38, -60], + [-9, -22], + [-12, -1], + [13, 14], + [-1, 12], + [-10, 3], + [-4, -2], + [-16, -19], + [-16, 18], + [-30, 5], + [-16, 19], + [-1, 16], + [-74, 53], + [15, 31] + ], + [ + [45204, 35201], + [9, -48], + [110, -77], + [-83, 12], + [-64, -13], + [-23, 40], + [6, 83], + [45, 3] + ], + [ + [45016, 35292], + [123, -43], + [-83, -133], + [-98, 20], + [3, 102], + [55, 54] + ], + [ + [43876, 35309], + [-119, -217], + [-91, -40], + [53, 174], + [52, 48], + [105, 35] + ], + [ + [45352, 35293], + [191, -15], + [17, -193], + [-112, -24], + [-69, 48], + [-109, 8], + [-52, 36], + [-4, 53], + [25, 75], + [88, 35], + [25, -23] + ], + [ + [45550, 35352], + [-2, -61], + [-55, -9], + [-50, 66], + [107, 4] + ], + [ + [45799, 35365], + [54, -4], + [60, -82], + [22, -63], + [-32, -120], + [-72, -18], + [-68, 54], + [41, 59], + [-97, 44], + [-13, 49], + [39, 77], + [66, 4] + ], + [ + [45350, 35388], + [44, -78], + [-113, 24], + [69, 54] + ], + [ + [45479, 35430], + [23, -77], + [-45, 1], + [-22, -8], + [-68, 46], + [112, 38] + ], + [ + [45332, 35445], + [5, -45], + [-55, -40], + [-72, 25], + [68, 101], + [54, -41] + ], + [ + [45363, 35532], + [65, -13], + [41, -83], + [-62, -19], + [-71, 27], + [-14, 62], + [41, 26] + ], + [ + [45467, 35634], + [46, -5], + [81, -129], + [-13, -41], + [-98, -8], + [-57, 77], + [41, 106] + ], + [ + [45654, 35685], + [77, -95], + [-4, -67], + [-55, -136], + [41, -51], + [-26, -48], + [16, -69], + [47, -40], + [2, -66], + [59, -46], + [-64, -34], + [-134, 81], + [-41, 121], + [7, 37], + [-31, 123], + [63, 79], + [-46, 83], + [22, 63], + [67, 65] + ], + [ + [45768, 35708], + [24, -8], + [21, -109], + [59, -36], + [-40, -90], + [17, -89], + [-167, 13], + [39, 42], + [35, 141], + [-52, 123], + [64, 13] + ], + [ + [45094, 35730], + [80, -34], + [73, -4], + [53, -53], + [-50, -54], + [-67, -31], + [-103, -98], + [-1, -70], + [90, -50], + [-20, -75], + [-125, 43], + [-25, 132], + [-40, 57], + [42, 132], + [93, 105] + ], + [ + [45422, 35685], + [12, -107], + [-113, -41], + [-108, -102], + [-23, -56], + [-80, 49], + [72, 63], + [30, 69], + [48, 17], + [78, 82], + [58, -31], + [26, 57] + ], + [ + [45615, 35768], + [48, -8], + [15, -64], + [-36, -3], + [-29, -36], + [-49, 39], + [51, 72] + ], + [ + [45352, 35903], + [28, -98], + [-54, -30], + [31, -108], + [-57, -7], + [-51, 38], + [-41, 10], + [11, 72], + [47, 47], + [27, 16], + [13, 2], + [3, 7], + [43, 51] + ], + [ + [45434, 36087], + [91, -46], + [45, -73], + [56, -33], + [-17, -78], + [54, -88], + [-83, -1], + [-22, -76], + [-75, -48], + [-12, 56], + [-135, 59], + [51, 48], + [-3, 54], + [-49, 71], + [6, 86], + [23, 59], + [30, -2], + [40, 12] + ], + [ + [45730, 36132], + [-1, -134], + [35, -3], + [-8, -94], + [82, -65], + [15, -75], + [63, -74], + [-41, -100], + [-59, 43], + [-11, 95], + [-111, 20], + [-46, 93], + [16, 244], + [66, 50] + ], + [ + [45539, 36517], + [17, -66], + [-27, -78], + [7, -34], + [-9, -14], + [11, -16], + [7, -33], + [17, -25], + [-8, -52], + [36, -28], + [-80, -54], + [-5, 63], + [-46, 23], + [0, 198], + [13, 73], + [67, 43] + ], + [ + [45588, 36555], + [79, -33], + [49, -159], + [37, -34], + [-13, -65], + [-45, -62], + [-9, -90], + [-35, -44], + [-12, -102], + [-80, 59], + [-23, 101], + [43, 28], + [22, 32], + [-16, 55], + [-32, 38], + [-2, 21], + [-19, 25], + [9, 25], + [-5, 16], + [38, 72], + [-39, 106], + [53, 11] + ], + [ + [45218, 47150], + [106, -26], + [58, -44], + [96, -21], + [19, -163], + [-18, -64], + [5, -124], + [36, 10], + [49, 76], + [77, -39], + [-11, -90], + [95, -41], + [94, 40], + [49, -82], + [80, -12], + [40, -87], + [-5, -54], + [60, -63], + [100, 29], + [33, -30], + [137, 18], + [149, 85], + [142, 20], + [11, -46], + [129, -17], + [25, -65], + [81, -8], + [71, 37], + [275, -109], + [-26, -57], + [135, -23], + [114, -38], + [48, -50], + [67, 37], + [109, -26] + ], + [ + [47344, 44879], + [-50, 21], + [-77, 99], + [-51, 23], + [8, -113], + [-37, -2], + [-57, -90], + [73, -55], + [41, -108], + [-143, -86], + [-9, -122], + [-51, -32], + [-29, 68], + [-171, 9], + [-75, 40], + [-79, 11], + [-75, -29], + [-76, 68], + [-147, 62], + [-17, 89], + [-52, 47], + [-71, -2], + [-83, 47], + [-43, 88], + [14, 128], + [-80, 125], + [66, 23], + [-80, 77], + [-10, 120], + [-59, 36], + [-59, -5], + [-38, 42], + [-62, 8], + [-23, 70], + [-56, 25], + [-29, -73], + [-58, -57], + [-16, -69], + [195, -97], + [-7, -72], + [55, -26], + [84, 6], + [-20, -111], + [-210, -1], + [-59, 101], + [-119, 5], + [-62, -125], + [-74, 54], + [6, 95], + [-39, 25], + [-93, -26], + [0, 77], + [-28, 45], + [-115, -20], + [-25, 89], + [-79, 102], + [-115, 51], + [-88, 18], + [-17, 61], + [-54, 53], + [-72, 24], + [-13, 57], + [-119, 23], + [-32, 184], + [-37, -9], + [-51, -77], + [-55, -189], + [-40, -77], + [62, -55], + [27, 75], + [86, -35], + [155, -27], + [22, -102], + [68, -100], + [-36, -32], + [-143, -6], + [-90, -92], + [-113, -81], + [2, -143], + [-71, -43], + [-153, -28], + [-38, -42], + [-116, -59], + [-11, -85], + [-31, -38], + [58, -68], + [-124, -174], + [-43, -126], + [-55, -48], + [45, -75], + [15, -74], + [-19, -55], + [115, -112], + [63, 53], + [35, -23], + [149, 45], + [4, -65], + [234, -158], + [-8, -39], + [71, -59], + [109, -20], + [-18, -110], + [53, -74], + [174, -150], + [160, -48], + [89, -57], + [78, -1], + [22, 60], + [68, 11], + [57, -23], + [68, 71], + [36, -80], + [38, -4], + [23, -74], + [-34, -126], + [40, -16], + [-3, -69], + [135, -61], + [31, -63], + [82, -2], + [72, -28], + [-68, -80], + [1, -96], + [-46, -45], + [-32, -76], + [-56, 40], + [-48, -6], + [-62, 65], + [-97, -87], + [-124, 30], + [-84, 56], + [-85, -21], + [-124, 11], + [-84, -62], + [-49, 41], + [-167, 40], + [-74, -43], + [42, -101], + [-44, -58], + [22, -108], + [0, -89], + [-122, -166], + [9, -54], + [-90, 8], + [-42, -23], + [-58, -135], + [-106, 29], + [-7, 58], + [-73, 91], + [-111, -9], + [-87, -85], + [59, -124], + [-122, -118], + [-98, -145], + [-16, -80], + [-104, -102], + [73, -78], + [135, -212], + [89, -92], + [61, -36], + [66, -75], + [130, -30], + [139, -134], + [141, -34], + [101, 20], + [152, -84], + [51, -6], + [56, -105], + [27, 70], + [133, -47], + [99, 20], + [108, -42], + [32, -67], + [-12, -163], + [-71, -73], + [24, -108], + [58, -147], + [10, -164], + [-18, -162], + [-146, -71], + [-74, -52], + [-23, 28], + [-103, -32], + [57, -99], + [-46, -65], + [-13, -121], + [-23, -50], + [21, -103], + [-27, -57], + [69, -44], + [-12, -61], + [123, 19], + [40, -135], + [179, -160], + [80, 39], + [45, -39], + [-22, -93], + [-56, 4], + [-24, -127], + [20, -45], + [-58, -44], + [23, -71], + [-110, -58], + [59, -54], + [-7, -39], + [108, -33], + [35, -48], + [63, -3], + [37, 65], + [48, -46], + [134, 12], + [105, -92], + [-52, -48], + [-14, -71], + [-75, -75], + [-60, -23], + [-8, -63], + [27, -92], + [-22, -140], + [63, -45], + [26, -166], + [81, 0], + [48, -81], + [-21, -111], + [-83, -67], + [1, -73], + [84, -98], + [-64, -116], + [17, -163], + [-91, -17], + [-60, -40], + [-22, -109], + [-16, -152], + [-6, -159], + [-35, -12], + [-22, 4], + [-16, -7], + [-29, -67], + [4, -104], + [-26, -18], + [1, -15], + [-5, -23], + [-12, -3], + [-30, -17], + [-62, -51], + [-22, -77], + [-75, 33], + [-59, -11], + [-75, -115], + [-42, -116], + [35, -145], + [-46, -53], + [-35, -119], + [36, -71], + [-28, -71], + [-52, -40], + [-18, 36], + [-20, -14], + [-36, 16], + [7, -55], + [-44, -67], + [-120, 98], + [-34, 5], + [9, 47], + [-45, -15], + [-21, -20], + [-17, 11], + [-60, -50], + [-25, -108], + [15, -83], + [-63, -12], + [-20, 133], + [-64, 15], + [-32, -16], + [-11, -57], + [-82, -30], + [-20, -19], + [-3, -20], + [53, -106], + [-143, 22], + [-36, 127], + [-82, 137], + [28, 95], + [-50, 92], + [92, 102], + [40, 72], + [23, 127], + [-30, 138], + [-50, 86], + [-156, 52], + [-97, 2], + [70, 217], + [-57, -45], + [-7, -73], + [-58, -76], + [-51, 6], + [-92, 55], + [-53, 79], + [-4, 158], + [-55, -81], + [10, -113], + [74, -65], + [42, -63], + [97, 0], + [68, -46], + [154, -11], + [128, -171], + [-59, -86], + [-184, -121], + [-67, -19], + [-159, -359], + [-116, -134], + [-73, -36], + [-140, -116], + [-90, -91], + [-80, 6], + [-54, -57], + [-113, -44], + [-258, -48], + [-172, -56] + ], + [ + [43798, 45734], + [-1, 9], + [132, 245], + [10, 123], + [32, 47], + [13, 121], + [-45, 152], + [10, 73], + [-79, 69], + [22, 50], + [-57, 69], + [-4, 86], + [-66, 48], + [-12, 48], + [-99, 17], + [-57, 141], + [-45, 19], + [35, 87], + [15, 176] + ] + ], + "transform": { + "scale": [0.0004547835780230729, 0.00043253225199741204], + "translate": [68.187363, 6.754256] + }, + "objects": { + "india": { + "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]], + [[23]], + [[24]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 105, + "ISO": "IN-AN", + "NAME_0": "India", + "ID_1": 1, + "NAME_1": "Andaman and Nicobar" + } + }, + { + "arcs": [[25, 26]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-AN", + "NAME_0": "India", + "ID_1": 36, + "NAME_1": "Telangana" + } + }, + { + "arcs": [[[27]], [[28]], [[-27, 29]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 105, + "ISO": "IN-AP", + "NAME_0": "India", + "ID_1": 2, + "NAME_1": "Andhra Pradesh" + } + }, + { + "arcs": [[30, 31, 32]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-AR", + "NAME_0": "India", + "ID_1": 3, + "NAME_1": "Arunachal Pradesh" + } + }, + { + "arcs": [[[33, 34]], [[35, 36, 37, 38, 39, 40, 41, 42, 43, -32]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 105, + "ISO": "IN-AS", + "NAME_0": "India", + "ID_1": 4, + "NAME_1": "Assam" + } + }, + { + "arcs": [[44, 45, 46, 47]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-BR", + "NAME_0": "India", + "ID_1": 5, + "NAME_1": "Bihar" + } + }, + { + "arcs": [[48, 49]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-CH", + "NAME_0": "India", + "ID_1": 6, + "NAME_1": "Chandigarh" + } + }, + { + "arcs": [[50, 51, 52, 53, 54, 55]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-CT", + "NAME_0": "India", + "ID_1": 7, + "NAME_1": "Chhattisgarh" + } + }, + { + "arcs": [[56, 57]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-DN", + "NAME_0": "India", + "ID_1": 8, + "NAME_1": "Dadra and Nagar Haveli" + } + }, + { + "arcs": [[[58, 59]], [[60, 61]], [[62, 63, 64, 65]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 105, + "ISO": "IN-DD", + "NAME_0": "India", + "ID_1": 9, + "NAME_1": "Daman and Diu" + } + }, + { + "arcs": [[66, 67]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-DL", + "NAME_0": "India", + "ID_1": 10, + "NAME_1": "Delhi" + } + }, + { + "arcs": [[68, 69, 70]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-GA", + "NAME_0": "India", + "ID_1": 11, + "NAME_1": "Goa" + } + }, + { + "arcs": [ + [[-64, 71]], + [[72]], + [[73]], + [[74]], + [[75]], + [[76]], + [[77]], + [[78]], + [[79]], + [[80]], + [[81]], + [[82]], + [[83]], + [[84]], + [[85]], + [[86]], + [[87, 88, -58, 89, 90, -59, 91, -62, 92, -66, 93, 94]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 105, + "ISO": "IN-GJ", + "NAME_0": "India", + "ID_1": 12, + "NAME_1": "Gujarat" + } + }, + { + "arcs": [[95, -67, 96, 97, 98, -50, 99, 100]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-HR", + "NAME_0": "India", + "ID_1": 13, + "NAME_1": "Haryana" + } + }, + { + "arcs": [[101, 102, 103, -101, 104, 105]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-HP", + "NAME_0": "India", + "ID_1": 14, + "NAME_1": "Himachal Pradesh" + } + }, + { + "arcs": [[-106, 106, 107]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-JK", + "NAME_0": "India", + "ID_1": 15, + "NAME_1": "Jammu and Kashmir" + } + }, + { + "arcs": [[108, 109, -56, 110, -46]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-JH", + "NAME_0": "India", + "ID_1": 16, + "NAME_1": "Jharkhand" + } + }, + { + "arcs": [[111, 112, 113, 114, -69, 115]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-KA", + "NAME_0": "India", + "ID_1": 17, + "NAME_1": "Karnataka" + } + }, + { + "arcs": [[116, 117, 118, 119, -114]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-KL", + "NAME_0": "India", + "ID_1": 18, + "NAME_1": "Kerala" + } + }, + { + "arcs": [[120]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-LD", + "NAME_0": "India", + "ID_1": 19, + "NAME_1": "Lakshadweep" + } + }, + { + "arcs": [[-54, 121, -88, 122, 123]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-MP", + "NAME_0": "India", + "ID_1": 20, + "NAME_1": "Madhya Pradesh" + } + }, + { + "arcs": [[-53, 124, -116, -71, 125, -90, -57, -89, -122]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-MH", + "NAME_0": "India", + "ID_1": 21, + "NAME_1": "Maharashtra" + } + }, + { + "arcs": [[126, 127, -37, 128]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-MN", + "NAME_0": "India", + "ID_1": 22, + "NAME_1": "Manipur" + } + }, + { + "arcs": [[129, -34, 130, -41]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-ML", + "NAME_0": "India", + "ID_1": 23, + "NAME_1": "Meghalaya" + } + }, + { + "arcs": [[-128, 131, 132, -38]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-MZ", + "NAME_0": "India", + "ID_1": 24, + "NAME_1": "Mizoram" + } + }, + { + "arcs": [[133, -129, -36, -31]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-NL", + "NAME_0": "India", + "ID_1": 25, + "NAME_1": "Nagaland" + } + }, + { + "arcs": [[[134]], [[135, 136, -51, -110]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 105, + "ISO": "IN-OR", + "NAME_0": "India", + "ID_1": 26, + "NAME_1": "Orissa" + } + }, + { + "arcs": [[[137, 138]], [[139, 140]], [[141, -119]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 105, + "ISO": "IN-PY", + "NAME_0": "India", + "ID_1": 27, + "NAME_1": "Puducherry" + } + }, + { + "arcs": [[-100, -49, -99, 142, 143, -107, -105]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-PB", + "NAME_0": "India", + "ID_1": 28, + "NAME_1": "Punjab" + } + }, + { + "arcs": [[-98, 144, -123, -95, 145, -143]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-RJ", + "NAME_0": "India", + "ID_1": 29, + "NAME_1": "Rajasthan" + } + }, + { + "arcs": [[146, 147]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-SK", + "NAME_0": "India", + "ID_1": 30, + "NAME_1": "Sikkim" + } + }, + { + "arcs": [[[148]], [[-141, 149, -139, 150, -117, -113, 151]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 105, + "ISO": "IN-TN", + "NAME_0": "India", + "ID_1": 31, + "NAME_1": "Tamil Nadu" + } + }, + { + "arcs": [[-39, -133, 152]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-TR", + "NAME_0": "India", + "ID_1": 32, + "NAME_1": "Tripura" + } + }, + { + "arcs": [[153, -47, -111, -55, -124, -145, -97, -68, -96, -104, 154]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-UP", + "NAME_0": "India", + "ID_1": 33, + "NAME_1": "Uttar Pradesh" + } + }, + { + "arcs": [[-155, -103, 155]], + "type": "Polygon", + "properties": { + "ID_0": 105, + "ISO": "IN-UT", + "NAME_0": "India", + "ID_1": 34, + "NAME_1": "Uttaranchal" + } + }, + { + "arcs": [ + [[156]], + [[157]], + [[158]], + [[159]], + [[160]], + [[161]], + [[162]], + [[163]], + [[164]], + [[165]], + [[166]], + [[167]], + [[168]], + [[169]], + [[170]], + [[171]], + [[172]], + [[173]], + [[174]], + [[175]], + [[176]], + [[177]], + [[178]], + [[179]], + [[180]], + [[181]], + [[182]], + [[183]], + [[184]], + [[185]], + [[186]], + [[187]], + [[188]], + [[189]], + [[190]], + [[191]], + [[192]], + [[193]], + [[194]], + [[195]], + [[196]], + [[197]], + [[198]], + [[199]], + [[200]], + [[201]], + [[202]], + [[203]], + [[204]], + [[205]], + [[206]], + [[207]], + [[208]], + [[209]], + [[210]], + [[211]], + [[212]], + [[213]], + [[214]], + [[215]], + [[216]], + [[217]], + [[218]], + [[219]], + [[220]], + [[221]], + [[222]], + [[223, -43, 224, -136, -109, -45, 225, -147]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 105, + "ISO": "IN-WB", + "NAME_0": "India", + "ID_1": 35, + "NAME_1": "West Bengal" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/iran-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/iran-topo.json new file mode 100644 index 000000000000..1accdd5cc881 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/iran-topo.json @@ -0,0 +1,2390 @@ +{ + "type": "Topology", + "arcs": [ + [ + [3492, 7376], + [110, -20], + [25, -38], + [79, -16], + [73, -36], + [2, -52], + [38, -5] + ], + [ + [3819, 7209], + [-35, -40], + [12, -58], + [-41, 1], + [-54, 24], + [-60, -57], + [-13, -36], + [27, -51], + [39, -18], + [-39, -39], + [-16, -41], + [-63, 18], + [-56, -37] + ], + [ + [3520, 6875], + [-25, 50], + [-29, -41], + [-39, 76], + [-139, -27], + [-62, 15] + ], + [ + [3226, 6948], + [-33, 77], + [18, 34], + [145, 74], + [16, 73], + [34, 54], + [-7, 32], + [-55, 11], + [-56, 49], + [11, 34], + [36, 8], + [157, -18] + ], + [ + [2358, 8751], + [0, -24], + [62, -42], + [-50, -95], + [-60, -64], + [-9, -63], + [-32, -48], + [29, -47], + [4, -42], + [61, -120], + [62, -91], + [71, -59], + [-10, -57], + [14, -43] + ], + [ + [2500, 7956], + [-36, 23], + [-84, -56], + [-26, -2], + [-42, 54], + [-39, -9] + ], + [ + [2273, 7966], + [-135, 96], + [-21, 86], + [-95, 18], + [-28, 108], + [8, 57], + [29, 46], + [-69, 49], + [-35, 39], + [-17, 89], + [5, 55], + [-50, 49], + [-92, -27], + [-33, 3], + [-38, 37], + [-48, -33], + [-19, 25], + [11, 57], + [50, 67], + [54, 47], + [81, -14], + [22, 45], + [-54, 29], + [41, 59], + [-8, 51], + [-36, 36], + [11, 45], + [-23, 43], + [23, 44], + [-43, 88], + [-1, 81], + [-57, 63] + ], + [ + [1706, 9404], + [20, 30], + [81, 28], + [104, 64], + [34, 34], + [47, 3], + [47, 27], + [82, -87], + [44, -61], + [73, -65], + [-86, -32], + [-40, -37], + [7, -43], + [81, -60], + [29, -44], + [-34, -50], + [-94, -15], + [-50, -25], + [4, -41], + [49, -48], + [67, -29], + [36, -80], + [63, 6], + [71, -92], + [17, -36] + ], + [ + [3100, 3368], + [54, 49], + [59, -36], + [88, -4] + ], + [ + [3301, 3377], + [47, -11], + [41, -37] + ], + [ + [3389, 3329], + [-10, -57], + [47, -43], + [43, -93], + [128, -6], + [53, -25], + [35, 0], + [43, -57], + [-4, -65], + [73, -90], + [100, -51], + [94, -219], + [60, -89], + [74, -184], + [13, -89], + [37, -101], + [36, -70], + [-5, -57], + [52, -26], + [59, -76], + [72, -196], + [23, -44], + [203, -173] + ], + [ + [4615, 1518], + [-28, -18], + [-63, 9], + [-50, -8], + [-13, -29] + ], + [ + [4461, 1472], + [-48, 53], + [46, 8], + [0, 35], + [-26, 1], + [-59, 91], + [-38, 32], + [-40, 2], + [-82, 35], + [-77, 88], + [-59, -5], + [-46, 9], + [-74, -14], + [-105, 39], + [-62, 77], + [-40, 75], + [-20, 15], + [14, 57], + [-81, 128], + [-22, 61], + [-10, 116], + [-36, 103], + [-60, -16], + [-35, 54], + [57, 55], + [-2, 39], + [-57, 59], + [-72, -16], + [-15, 32], + [10, 75], + [-5, 103], + [-67, 72], + [-29, 51], + [-75, 75], + [-39, 72], + [-55, 57], + [1, 85], + [-30, 76], + [-23, 17] + ], + [ + [3756, 3997], + [-64, -7], + [-23, -39], + [-106, 11], + [-54, 44], + [-111, 132], + [-89, 11], + [-98, 60] + ], + [ + [3211, 4209], + [56, 86], + [-33, 82], + [-31, 18], + [-71, 113], + [-17, 82], + [-62, 36], + [-41, 94], + [-53, 68], + [-17, 89] + ], + [ + [2942, 4877], + [88, 56], + [42, -5], + [78, 23], + [51, -56], + [102, 4], + [57, 48], + [108, 10], + [35, 26], + [25, -25], + [-4, -51], + [50, -57], + [-21, -59], + [7, -32], + [74, -49], + [56, -63], + [62, -51], + [10, -96], + [-46, -46], + [38, -63], + [-51, -40], + [4, -109], + [44, -97], + [15, -83], + [-10, -65] + ], + [ + [2273, 7966], + [-40, -34], + [-103, 23], + [-90, -13], + [-55, 14], + [-37, -15], + [-110, -10], + [-51, -47], + [-48, -23], + [-42, -65], + [-31, -15], + [-49, -80], + [10, -38] + ], + [ + [1627, 7663], + [-189, -8], + [-10, 30], + [13, 57], + [-32, 34], + [-8, 54], + [-39, 3], + [-25, 34], + [-39, -3], + [-74, -38], + [-35, -34], + [-2, -31], + [-37, -21], + [-46, 44], + [-56, 26], + [-10, 29], + [-94, 65], + [-75, -19], + [-56, 50], + [-103, 60], + [-36, 34], + [-6, 61], + [12, 63], + [-44, 59], + [-25, 54], + [-10, 94], + [2, 144], + [-26, 84], + [-38, 40], + [12, 76], + [53, 65], + [72, 66], + [11, 41], + [-29, 97], + [15, 68], + [72, 78] + ], + [ + [745, 9119], + [145, -36], + [79, -34], + [80, -2], + [53, -24], + [93, 50], + [91, -28], + [39, 34], + [126, 147], + [53, -5], + [40, 28], + [16, 44], + [76, 45], + [70, 66] + ], + [ + [5858, 6080], + [6, -201], + [7, -39], + [0, -174], + [-30, -103], + [-56, -83], + [-92, -1], + [-30, -33], + [-20, -106], + [-44, -125], + [-50, -53], + [-37, -20], + [-104, -34], + [-123, -27], + [-246, -121], + [-90, -14], + [-43, 20], + [-121, 25], + [-36, -7], + [-77, -47], + [-30, -32], + [-65, -14], + [-10, -91], + [16, -149], + [-37, -149], + [-9, -143], + [26, -78] + ], + [ + [4563, 4281], + [-82, -33], + [-95, -26], + [-65, 6], + [-113, 38], + [-2, 65], + [-77, 6], + [-34, -46], + [-87, -59], + [-71, 19], + [-18, -13], + [55, -71], + [36, 1], + [36, -26], + [-19, -162], + [-34, -52], + [-22, -78], + [8, -103], + [-52, -7] + ], + [ + [3927, 3740], + [-65, 45], + [-73, 77], + [-37, 70], + [4, 65] + ], + [ + [2942, 4877], + [31, 85], + [-44, 37], + [-97, -12], + [-36, 88] + ], + [ + [2796, 5075], + [-2, 26], + [102, 57], + [-16, 77], + [90, 49], + [36, 2], + [34, 105], + [35, 53], + [-26, 50], + [30, 34] + ], + [ + [3079, 5528], + [30, 39], + [90, 56], + [73, 9], + [42, 21], + [49, 2], + [85, 35], + [53, 53], + [43, -18], + [22, 97], + [36, 27], + [17, 38], + [-7, 39] + ], + [ + [3612, 5926], + [-18, 5] + ], + [ + [3594, 5931], + [-13, 19], + [12, 39], + [5, 33], + [5, 66], + [0, 13], + [12, 20], + [12, 14], + [42, 14], + [79, 16], + [122, -3], + [31, 1], + [36, 7], + [6, 0], + [19, 8], + [24, 13] + ], + [ + [3986, 6191], + [17, 20] + ], + [ + [4003, 6211], + [75, -50], + [61, -19], + [67, 15], + [86, 2], + [118, -31], + [49, -25], + [123, -37], + [135, 3], + [37, -6], + [153, 2], + [36, 7], + [172, 3], + [79, 14], + [172, 2], + [18, 6], + [295, 2], + [122, 14], + [57, -33] + ], + [ + [4563, 4281], + [113, -45], + [72, -45], + [55, -59], + [42, -78], + [19, -78], + [102, -267], + [23, -32], + [65, -137], + [94, -117], + [18, -78], + [5, -103], + [29, -46], + [169, -98] + ], + [ + [5369, 3098], + [0, -38], + [57, -117], + [11, -52], + [52, -39], + [106, -1], + [35, -13], + [78, -259], + [23, -33] + ], + [ + [5731, 2546], + [33, -117], + [-41, -39], + [144, -131], + [46, -52], + [5, -65], + [-38, -197], + [41, -26], + [35, -51], + [-5, -50], + [-23, -25], + [-85, 2], + [-45, -43], + [-44, -23], + [-26, -93], + [-43, -55], + [-69, 1], + [-40, 19], + [-86, 13], + [-57, -37], + [-47, 26], + [-45, -13], + [-58, 7], + [-68, -12], + [-74, -50], + [7, -58], + [-17, -38], + [0, -51], + [-51, -32], + [-69, 7], + [-98, 32], + [-51, -19], + [-81, 64], + [-103, -5], + [-40, 26], + [-23, 57] + ], + [ + [3389, 3329], + [52, 20], + [94, -12], + [64, 47], + [47, 14], + [58, 47], + [-7, 104], + [-31, 58], + [5, 46], + [29, 20], + [166, -95], + [75, 39], + [5, 33], + [-19, 90] + ], + [ + [3376, 7814], + [0, -22], + [-71, -50], + [-10, -86], + [-59, -49] + ], + [ + [3236, 7607], + [-68, 10], + [-129, -52], + [-36, -28], + [-49, -2], + [-39, 25], + [-56, -2], + [-57, 18], + [-60, 65], + [-2, 34], + [-52, 25] + ], + [ + [2688, 7700], + [-32, 122], + [-92, 98], + [-64, 36] + ], + [ + [2358, 8751], + [41, -12], + [54, 31], + [46, -5], + [-8, -93], + [18, -90], + [4, -85], + [17, -44], + [33, -154], + [37, -48], + [77, -64], + [52, -26], + [113, -32], + [211, -22], + [112, -26], + [28, -25], + [5, -42], + [35, -89], + [95, -87], + [48, -24] + ], + [ + [6267, 8533], + [-2, -73], + [12, -55], + [-16, -76], + [16, -27], + [55, -21], + [5, -73], + [-38, -19], + [-84, -17], + [-64, -52], + [1, -26], + [-40, -39] + ], + [ + [6112, 8055], + [-19, 1], + [-43, -66], + [-30, -78], + [-61, -72], + [-18, -150], + [-56, -32], + [-136, 29], + [-113, -12], + [-82, -45], + [-86, -104], + [-109, -53], + [-71, 19], + [-79, -7] + ], + [ + [5209, 7485], + [-29, 52], + [-81, 63], + [-88, 44], + [-16, 50] + ], + [ + [4995, 7694], + [119, -10], + [50, 17], + [2, 94], + [-53, 171], + [-19, 80], + [179, -20], + [59, 23], + [77, 56], + [39, 16], + [37, -16], + [74, 61], + [11, 54], + [-18, 18], + [21, 60], + [105, 91], + [53, 57], + [29, 5], + [183, 84], + [141, 17], + [87, -31], + [96, 12] + ], + [ + [2161, 6964], + [27, -45], + [38, -12], + [63, 22], + [103, -56], + [69, 9], + [-2, 47] + ], + [ + [2459, 6929], + [18, 20], + [69, -4], + [65, -63], + [-43, -22], + [20, -38], + [131, 6], + [70, -29] + ], + [ + [2789, 6799], + [1, -40], + [26, -31], + [-55, -36], + [-38, 11], + [47, -96], + [-18, -40], + [-62, 3], + [20, -45], + [81, -21], + [52, -63], + [16, -103], + [-31, -15], + [-58, 75], + [17, 60], + [-169, 3], + [15, -91], + [-37, -15], + [8, -71], + [-112, -33], + [64, -29], + [-11, -105], + [52, -94], + [16, -95], + [-67, -79] + ], + [ + [2546, 5849], + [-101, 32], + [-52, 29], + [-57, 3], + [-43, -46], + [-25, 17], + [-121, 7], + [-66, 67], + [-78, 29], + [-117, 98] + ], + [ + [1886, 6085], + [30, 61], + [84, -10], + [38, 9], + [5, 106], + [-70, -16], + [-39, 5], + [-91, 36], + [-20, 26], + [19, 40], + [77, 3], + [-1, 60], + [44, 35], + [5, 40] + ], + [ + [1967, 6480], + [12, 20], + [97, -23], + [42, 61], + [11, 67], + [-40, 58], + [-65, 44], + [-29, 99], + [-55, 111], + [43, 34], + [35, -65], + [49, 35], + [24, 48], + [70, -5] + ], + [ + [6263, 1267], + [62, -24], + [-7, -23], + [-51, -14], + [-13, -43], + [-103, -100], + [-32, 29], + [-60, -33], + [-42, 1], + [-35, -29], + [-174, -63], + [-5, 76], + [34, -10], + [119, 46], + [39, 36], + [65, 21], + [9, 96], + [56, -32], + [138, 66] + ], + [ + [5731, 2546], + [99, -7], + [64, -40], + [34, -52], + [46, -39], + [53, 19], + [78, 76], + [77, 38], + [34, -58], + [2, -163], + [-7, -77], + [-19, -39], + [5, -45], + [109, -125], + [40, -27], + [93, -14], + [95, 55], + [49, 77], + [36, 18], + [75, -41], + [-9, -84], + [21, -98], + [63, -28], + [28, -66], + [51, -54], + [4, -52], + [-36, -25], + [51, -47], + [21, -79], + [4, -193], + [5, -57], + [29, -46], + [56, -9], + [46, -40], + [28, -1], + [51, -60], + [46, 37], + [12, 37], + [57, -8], + [103, -99], + [-40, -24], + [11, -83], + [-23, -31], + [-6, -69], + [6, -89], + [-17, -87], + [63, 17], + [58, -21], + [40, 23], + [23, -19], + [46, -2], + [10, -101], + [75, -3], + [23, 37], + [51, -21], + [17, -39] + ], + [ + [7662, 618], + [-23, -43], + [130, -118], + [22, -77], + [85, -91], + [-16, -35] + ], + [ + [7860, 254], + [-67, -32], + [-60, 11], + [-37, 52], + [-66, 46], + [-58, -3], + [-51, 15], + [-130, -1], + [-52, -17], + [-74, 0], + [-32, 22], + [-44, 68], + [-69, -27], + [-47, 61], + [-42, -12], + [-122, 18], + [-36, 17], + [-21, 33], + [-11, 64], + [-38, 49], + [-10, 53], + [20, 53], + [-43, 38], + [-40, 95], + [12, 127], + [-13, 92], + [-26, 83], + [-42, 53], + [-5, 52], + [-77, 92], + [-128, 25], + [-28, -7], + [-59, 17], + [-81, -35], + [-31, 12], + [-39, -38], + [-42, -18], + [-18, -31], + [-113, -26], + [-41, 2], + [-22, -22], + [-21, -90], + [-53, -42], + [-67, 24], + [-50, -6], + [-10, -28], + [-61, -26], + [-22, -35], + [-44, -15], + [-64, -66], + [-115, -11], + [-31, 57], + [-83, 5], + [-46, 78], + [-64, -7], + [-87, 35], + [-99, -32], + [-70, 18], + [-49, 25], + [-61, 59], + [-13, 77], + [-51, 14], + [-208, 89], + [-66, 43], + [-81, 71] + ], + [ + [1727, 5881], + [28, -62], + [-22, -59], + [-68, -59], + [-58, 6], + [-92, -28], + [-38, -33], + [-8, -44], + [-27, -27], + [54, -93], + [39, -43], + [61, -43], + [78, -24], + [139, -133], + [55, -32], + [37, -83], + [41, -70], + [46, -115] + ], + [ + [1992, 4939], + [-27, -88], + [-62, -87], + [17, -68], + [-15, -36], + [-64, -41] + ], + [ + [1841, 4619], + [-37, 40], + [16, 33], + [-63, 65], + [3, 49], + [-34, 45], + [-45, 17], + [-43, -24], + [-55, 13], + [-147, 148], + [-218, 160], + [-125, 5], + [-28, 40], + [31, 32], + [-13, 37], + [30, 36], + [-1, 52], + [-79, 84], + [-6, 56], + [-64, 102], + [-68, 0], + [-16, 17] + ], + [ + [879, 5626], + [13, 116], + [30, 72], + [-32, 43], + [99, 9], + [33, 20], + [76, -52], + [65, 10], + [52, -29], + [67, -59], + [95, -33], + [94, -1], + [68, 33], + [83, -23], + [18, 63], + [-34, 62], + [89, 29], + [32, -5] + ], + [ + [7130, 4307], + [77, -29], + [101, -62], + [72, -29], + [125, -69], + [119, -50], + [84, -49], + [60, -22], + [125, -189], + [35, -84], + [71, -92] + ], + [ + [7999, 3632], + [-56, -252], + [-4, -85], + [-30, -136], + [-28, -90], + [16, -46], + [52, -47], + [-2, -46], + [22, -151], + [-2, -45], + [-80, -149], + [21, -66], + [-9, -45], + [33, -60], + [-52, -70], + [-68, -51], + [-92, -43], + [-42, -5], + [-8, -46], + [64, -28], + [27, -53], + [-15, -58], + [-62, -57], + [-10, -71], + [12, -111], + [-7, -137], + [-28, -84], + [-29, -122], + [-11, -110], + [21, -66], + [-4, -104], + [62, -53], + [17, -33], + [-2, -84], + [-30, -31], + [41, -46], + [-47, -55], + [0, -38], + [45, -59], + [-28, -37], + [-24, -144] + ], + [ + [5369, 3098], + [30, 20], + [58, -1], + [-5, 65], + [1, 143], + [19, 71], + [-6, 32], + [-35, 20], + [-23, 130], + [-59, 91], + [6, 65], + [30, 72], + [60, 71], + [89, 0], + [185, 45], + [125, -20], + [114, 12], + [54, 26], + [13, 46], + [8, 98], + [-3, 158], + [25, 40], + [116, 45], + [148, 85], + [75, 79], + [93, 46], + [49, 39], + [190, -75], + [113, -51], + [231, -121], + [60, -22] + ], + [ + [1886, 6085], + [-57, 5], + [-8, -110], + [-75, -3], + [-24, -14], + [23, -69], + [-18, -13] + ], + [ + [879, 5626], + [-44, 51], + [-71, 134], + [-41, 7], + [20, 86], + [50, 46], + [7, 90], + [-18, 42], + [-29, -12], + [-26, 86], + [30, 5], + [7, 64], + [84, -2], + [32, -12], + [-11, 75], + [-26, 38], + [12, 64], + [90, 59], + [14, 38], + [-10, 47], + [30, 33], + [58, -22], + [56, 24], + [-2, 49], + [24, 23], + [-26, 55] + ], + [ + [1089, 6694], + [76, -57], + [86, -99], + [61, -109], + [43, -17], + [-14, -54], + [84, -22], + [67, 10], + [4, 47], + [50, 16], + [-15, 33], + [127, 46], + [11, 67], + [84, -3], + [11, 80], + [47, -45], + [32, 1], + [27, -45], + [72, -71], + [25, 8] + ], + [ + [2541, 3496], + [42, -5], + [22, -24], + [36, 19], + [29, -12], + [21, -63], + [-44, -57], + [-34, 39], + [-48, 24], + [1, 34], + [-25, 45] + ], + [ + [3211, 4209], + [-43, -85], + [-65, -23], + [-69, -62], + [4, -84], + [26, -83], + [-15, -66], + [42, -17], + [58, 36], + [13, -52], + [30, -31], + [78, -36], + [25, -51], + [-40, -66], + [1, -33], + [36, -44], + [9, -135] + ], + [ + [3100, 3368], + [-46, 3], + [-37, -18], + [-152, -115], + [-41, 25], + [-7, 57], + [-25, 18], + [-107, -17], + [-7, 58], + [10, 44], + [-16, 34], + [-10, 85], + [-95, -47], + [-44, 7], + [-33, -65], + [36, -51], + [9, -38], + [-13, -95], + [-119, -7], + [-14, -56], + [-51, -20], + [-62, 69], + [-4, 40], + [-30, 38], + [8, 55], + [-74, 84], + [-29, -8], + [-15, 63], + [-69, 39], + [-3, 335], + [-170, 0], + [-2, 267], + [86, 248], + [-32, 66], + [-80, 134], + [-21, 19] + ], + [ + [1992, 4939], + [37, 46], + [18, 78], + [52, 140], + [62, 10], + [93, -1], + [61, 23], + [56, -3], + [60, -61], + [130, 1], + [112, -103], + [62, -10], + [61, 16] + ], + [ + [1089, 6694], + [-14, 40], + [-39, 29], + [-32, 76], + [14, 118], + [74, 6], + [89, 50], + [-21, 43], + [-69, -19], + [-36, 39], + [-32, -18], + [-67, 4], + [-72, -23], + [-65, 102], + [-67, 30] + ], + [ + [752, 7171], + [67, 66], + [44, 97], + [97, 4], + [22, 19], + [-11, 62], + [60, 50], + [46, 4], + [49, -34], + [52, 11], + [159, -1], + [84, 26], + [63, -67], + [86, -20], + [90, 12], + [13, 92], + [26, 8] + ], + [ + [1699, 7500], + [21, -31], + [51, 9], + [53, -23], + [143, -18], + [34, -39], + [10, -72], + [22, -46], + [-8, -114], + [-42, -61], + [151, -95], + [27, -46] + ], + [ + [2546, 5849], + [2, -57], + [-29, -65], + [-5, -50], + [38, -17], + [114, -13], + [42, 34], + [10, 70], + [57, 3], + [23, 33], + [32, -11], + [40, -67], + [-17, -59], + [32, -30], + [75, -41], + [11, 52], + [63, -22], + [1, -52], + [44, -29] + ], + [ + [3520, 6875], + [15, -66], + [-51, -154] + ], + [ + [3484, 6655], + [-29, -41], + [0, -26], + [-10, -53], + [-5, -66], + [-47, -35], + [-74, -4], + [-48, -35], + [-36, -8], + [-50, 10], + [-30, -28], + [-5, -33], + [26, -44], + [-43, -9], + [-37, -16], + [27, -70], + [50, -30], + [49, -24], + [13, -38], + [1, -46], + [88, -74], + [24, 14], + [18, 14], + [49, 8], + [25, -38], + [43, -17], + [68, -36] + ], + [ + [3551, 5930], + [61, -4] + ], + [ + [2789, 6799], + [81, -3], + [24, 48], + [98, 31], + [56, 30], + [49, 3], + [80, 44], + [49, -4] + ], + [ + [5209, 7485], + [-67, -20], + [-56, -40], + [-37, -73], + [-16, -92], + [-76, -67], + [-32, -60], + [-99, -40], + [-44, 12], + [-67, -41], + [-67, -7] + ], + [ + [4648, 7057], + [-63, 45], + [-24, -21], + [-56, -1], + [-68, 46], + [-43, -1], + [-50, 32], + [-36, -7], + [-53, -47], + [-63, -88], + [-67, -1], + [-43, 19], + [-52, 111], + [-68, 50], + [-67, 18], + [-76, -3] + ], + [ + [3492, 7376], + [-1, 33], + [-130, 85], + [-125, 113] + ], + [ + [3376, 7814], + [52, -41], + [147, -93], + [73, -31], + [172, -32], + [124, -57], + [123, -18], + [77, 11], + [201, 62], + [230, 48], + [109, 39], + [93, 22], + [178, 9], + [40, -39] + ], + [ + [7082, 8414], + [-19, -25], + [-74, -27], + [14, -52], + [-25, -39], + [144, -15], + [62, -14], + [54, 13], + [21, -34], + [-15, -33], + [52, -27], + [37, -73], + [-35, -32], + [-3, -53], + [-30, -19], + [-10, -78], + [-45, -45], + [50, -34], + [1, -52], + [41, 12], + [48, -28], + [-51, -24], + [-8, -46], + [44, -14], + [-37, -84], + [-74, -11], + [-122, 24], + [-5, 13], + [-124, 57], + [-257, 157], + [-201, -170], + [13, -72] + ], + [ + [6528, 7589], + [-74, -17], + [-51, 21], + [-53, 1], + [-98, 95], + [-39, 60], + [30, 65], + [-20, 34], + [6, 72], + [-45, 15], + [-27, 66], + [-45, 54] + ], + [ + [6267, 8533], + [23, -14], + [66, 6], + [-6, 62], + [47, 49], + [78, 9], + [18, -20], + [78, 32], + [53, -40], + [116, -23], + [41, 53], + [44, 3], + [25, -73], + [45, -51], + [-11, -64], + [86, -39], + [33, 6], + [79, -15] + ], + [ + [2459, 6929], + [-40, 71], + [-72, 58], + [87, 49], + [88, 10], + [51, -11], + [35, 68], + [87, 37], + [76, 10], + [-3, 99], + [-26, 19], + [-9, 67], + [-39, 32], + [-70, 24], + [-2, 61], + [-60, 45], + [-2, 34], + [53, 83], + [75, 15] + ], + [ + [3484, 6655], + [0, -7], + [6, 7], + [55, 3], + [67, -4], + [49, -11], + [49, -18], + [55, -11], + [32, -32] + ], + [ + [3797, 6582], + [137, -95], + [43, -19] + ], + [ + [3977, 6468], + [68, -31] + ], + [ + [4045, 6437], + [7, -13] + ], + [ + [4052, 6424], + [6, -13], + [2, -47], + [-11, -39], + [-5, -47], + [-11, -26] + ], + [ + [4033, 6252], + [-47, -61] + ], + [ + [3594, 5931], + [-43, -1] + ], + [ + [8511, 5911], + [-98, -18], + [-107, 1], + [-26, 8], + [-85, -9], + [-85, 4], + [-32, 15], + [-83, 139], + [-113, -69], + [-66, -11], + [-51, 9], + [-56, -51], + [-30, 21], + [-116, 18], + [-18, -60], + [23, -35], + [-33, -79], + [23, -42], + [-36, -52], + [2, -60], + [43, -36], + [16, -54], + [56, -15], + [-10, -60], + [-67, -90], + [-101, -42], + [-90, -70], + [-19, -39], + [-7, -98], + [-24, -63], + [-29, -37] + ], + [ + [7292, 5036], + [-24, 14], + [-13, 65], + [-84, 36], + [-97, 70], + [-18, 84], + [-12, 106], + [-4, 133], + [-35, 54], + [-11, 48], + [-56, -45], + [-74, -31], + [-84, 17], + [-48, 42], + [-43, 254], + [23, 127], + [44, 139], + [61, 91], + [91, 50], + [69, 51], + [93, 96], + [-19, 73], + [-170, 130], + [-84, 9], + [-40, -12], + [-157, -76], + [-113, -63], + [-153, -42], + [-44, -6] + ], + [ + [6290, 6450], + [33, 52], + [66, 77], + [75, 64], + [148, 56], + [22, 26], + [19, 65], + [97, 135], + [-2, 46], + [-35, 40], + [-134, 108], + [-40, 216], + [6, 71], + [54, 89], + [5, 52], + [-24, 33], + [-52, 9] + ], + [ + [7082, 8414], + [48, -27], + [62, -12], + [49, -31], + [84, -23], + [13, -57], + [115, -31], + [61, 44], + [22, -24], + [63, -17], + [57, 33], + [21, -20], + [80, -24], + [118, -76], + [37, 12], + [29, -59], + [-15, -18], + [14, -60], + [78, -92], + [1, -29], + [75, 4], + [69, -24], + [49, -41], + [48, 3], + [33, -36], + [48, -89], + [48, -60], + [52, -83], + [137, 2], + [261, 22], + [26, -62], + [-9, -45], + [-1, -104], + [30, -110], + [-1, -34], + [-35, -86], + [39, -48], + [13, -67], + [-19, -100], + [31, -34], + [0, -45], + [-50, -93], + [2, -70], + [-48, -22], + [-6, -58], + [18, -60], + [-19, -94], + [-16, -16], + [2, -76], + [-38, -60], + [4, -40], + [-41, -13], + [-9, -35], + [-86, -38], + [61, -55], + [46, -79], + [-119, 6], + [-63, -70], + [-40, -82] + ], + [ + [6290, 6450], + [-45, -91], + [-149, -258], + [-30, -12], + [-190, 4], + [-18, -13] + ], + [ + [4003, 6211], + [30, 41] + ], + [ + [4052, 6424], + [0, 6] + ], + [ + [4052, 6430], + [3, 66], + [47, 61], + [11, 33], + [-90, 117], + [-8, 53], + [22, 53], + [-3, 66], + [67, -5], + [68, -45], + [57, -52], + [43, -12], + [48, 7], + [74, -31], + [61, -12], + [72, 21], + [48, 27], + [100, 95], + [10, 59], + [-34, 126] + ], + [ + [7999, 3632], + [122, 43], + [130, 32], + [168, 62], + [41, -47], + [60, -16], + [85, -76], + [46, -101], + [31, -42], + [106, 8], + [8, 25], + [-22, 87], + [-11, 85], + [7, 182], + [28, 110], + [41, 96], + [12, 51], + [-20, 55] + ], + [ + [8831, 4186], + [301, -49], + [37, -49], + [-2, -61], + [31, -80], + [-1, -74], + [-25, -41], + [12, -49], + [-255, -334], + [-232, -311], + [18, -11], + [151, -219], + [93, -101], + [-7, -43], + [36, -59], + [39, -90], + [0, -32], + [92, -155], + [63, -86], + [80, -60], + [82, -41], + [93, -14], + [74, -37], + [79, -100], + [101, 17], + [5, -47], + [-15, -116], + [11, -36], + [21, -159], + [13, -177], + [-38, -140], + [20, -26], + [81, -11], + [42, 25], + [65, 5], + [60, -41], + [9, -26], + [-32, -36], + [1, -102], + [9, -41], + [-43, -14], + [4, -70], + [-16, -59], + [-202, 3], + [-88, -44], + [-90, -11], + [-61, -26], + [-26, -76], + [9, -35], + [-80, 14], + [-4, -42], + [-31, -1], + [-98, -45], + [-20, -49], + [-33, -242], + [-41, -2], + [-17, -329], + [-24, -67], + [-46, -6], + [-63, -78], + [-111, 36], + [-5, 26], + [-49, 22], + [-118, 29], + [-117, 38], + [-10, 67], + [-19, 22], + [-54, 0], + [-31, -38], + [12, -42], + [-60, 14], + [-10, 34], + [-90, -26], + [-11, 21], + [-57, -1], + [-47, -16], + [-30, 31], + [-120, -6], + [-62, 51], + [-124, -8] + ], + [ + [8511, 5911], + [29, -190], + [-19, -34], + [3, -60], + [72, -77], + [119, 4], + [-38, -93], + [-98, -112], + [-27, -65], + [64, -276], + [54, -150], + [35, -182], + [-41, -159], + [-14, -141], + [9, -79], + [28, -88], + [144, -23] + ], + [ + [7130, 4307], + [23, 75], + [71, 103], + [6, 57], + [84, 110], + [0, 44], + [29, 50], + [-49, 92], + [0, 38], + [-37, 40], + [42, 43], + [-7, 77] + ], + [ + [4052, 6430], + [-7, 7] + ], + [ + [3977, 6468], + [-43, 19], + [-137, 95] + ], + [ + [1627, 7663], + [30, -42], + [42, -121] + ], + [ + [752, 7171], + [-51, -21], + [-32, 22], + [24, 47], + [-24, 43], + [-4, 59], + [-27, 50], + [-1, 54], + [-21, 26], + [-39, -18], + [-36, 19], + [-38, 74], + [28, 51], + [-14, 68], + [-101, 57], + [37, 60], + [-16, 33], + [12, 47], + [-41, 7], + [-30, 47], + [14, 35], + [-14, 39], + [23, 55], + [-114, 89], + [19, 105], + [-30, 28], + [30, 45], + [-22, 32], + [-62, 1], + [-31, 58], + [-92, 21], + [22, 77], + [43, 81], + [19, 9], + [13, 90], + [41, 26], + [-25, 44], + [-69, -2], + [8, 79], + [-3, 83], + [-29, 57], + [20, 77], + [-31, 14], + [-28, 50], + [-8, 53], + [16, 83], + [-47, 33], + [-8, 64], + [-33, 52], + [12, 26], + [80, 3], + [46, -24], + [66, 41], + [-3, 82], + [28, 45], + [-2, 37], + [62, 57], + [60, -43], + [102, -91], + [14, -71], + [73, -73], + [38, -74], + [69, -35], + [80, -89], + [20, -46] + ] + ], + "transform": { + "scale": [0.001933787757885008, 0.001525388863457386], + "translate": [44.047264099121264, 25.067083358764705] + }, + "objects": { + "iran": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-32", + "NAME_0": "Iran", + "ID_1": 1, + "NAME_1": "Alborz", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": "استان البرز", + "VARNAME_1": null + } + }, + { + "arcs": [[4, 5, 6, 7]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-03", + "NAME_0": "Iran", + "ID_1": 2, + "NAME_1": "Ardebil", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Ardabil" + } + }, + { + "arcs": [[8, 9, 10, 11, 12]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-06", + "NAME_0": "Iran", + "ID_1": 3, + "NAME_1": "Bushehr", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Banader va Jazayer-e Khalij-e Fars|Bushire|Persian Gulf|Ports and Islands of the Persian Gulf" + } + }, + { + "arcs": [[13, 14, 15]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-08", + "NAME_0": "Iran", + "ID_1": 4, + "NAME_1": "Chahar Mahall and Bakhtiari", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Bakhtiari|Chaharmahal va Bakhtiyari|Charmahal-Bakhtiyari" + } + }, + { + "arcs": [[16, 17, 18, -7]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-01", + "NAME_0": "Iran", + "ID_1": 5, + "NAME_1": "East Azarbaijan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Azarbayjan-e Khavari|Azarbaijan-e Sharghi|Azarbaijan-Sharqi|East Azarbayejan|Azerba‹djan e Sharqi" + } + }, + { + "arcs": [[19, 20, 21, -16, 22, 23, 24, 25, 26, 27, 28]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-04", + "NAME_0": "Iran", + "ID_1": 6, + "NAME_1": "Esfahan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Isfahan|Ispahan" + } + }, + { + "arcs": [[29, 30, 31, -11, 32, -21]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-14", + "NAME_0": "Iran", + "ID_1": 7, + "NAME_1": "Fars", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[33, 34, 35, -5, 36]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-19", + "NAME_0": "Iran", + "ID_1": 8, + "NAME_1": "Gilan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[37, 38, 39, 40]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-27", + "NAME_0": "Iran", + "ID_1": 9, + "NAME_1": "Golestan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[41, 42, 43, 44, 45, 46]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-24", + "NAME_0": "Iran", + "ID_1": 10, + "NAME_1": "Hamadan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Hamedan" + } + }, + { + "arcs": [[[47]], [[-12, -32, 48, 49, 50]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 107, + "ISO": "IR-23", + "NAME_0": "Iran", + "ID_1": 11, + "NAME_1": "Hormozgan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Banader va Jazayer-e Bahr-e Oman|Ports and Islands of the Sea of Oman|Saheli" + } + }, + { + "arcs": [[51, 52, 53, 54]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-05", + "NAME_0": "Iran", + "ID_1": 12, + "NAME_1": "Ilam", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Ilam and Poshtkuh" + } + }, + { + "arcs": [[55, 56, -49, -31, 57]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-15", + "NAME_0": "Iran", + "ID_1": 13, + "NAME_1": "Kerman", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-46, 58, -55, 59, 60]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-17", + "NAME_0": "Iran", + "ID_1": 14, + "NAME_1": "Kermanshah", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Bakhtaran|Kermanshahan" + } + }, + { + "arcs": [[[61]], [[-23, -15, 62, -9, 63, -53, 64]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 107, + "ISO": "IR-10", + "NAME_0": "Iran", + "ID_1": 15, + "NAME_1": "Khuzestan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Khuzistan|Kouzistan" + } + }, + { + "arcs": [[-22, -33, -10, -63, -14]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-18", + "NAME_0": "Iran", + "ID_1": 16, + "NAME_1": "Kohgiluyeh and Buyer Ahmad", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Bovir Ahmadi and Kohkiluyeh|Boyer-Ahmad and Koh-Giluye|Boyer Ahmad e Kohkiluyeh|Boyer Ahmadi-ye Sardir va Kohkiluyeh|Kohgil" + } + }, + { + "arcs": [[-47, -61, 65, 66, 67]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-16", + "NAME_0": "Iran", + "ID_1": 17, + "NAME_1": "Kordestan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Kurdistan" + } + }, + { + "arcs": [[-45, 68, -24, -65, -52, -59]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-20", + "NAME_0": "Iran", + "ID_1": 18, + "NAME_1": "Lorestan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[69, 70, 71, -25, -69, -44, 72, -3]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-22", + "NAME_0": "Iran", + "ID_1": 19, + "NAME_1": "Markazi", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-40, 73, 74, -1, 75, -34, 76]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-21", + "NAME_0": "Iran", + "ID_1": 20, + "NAME_1": "Mazandaran", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[77, 78, -38, 79]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-31", + "NAME_0": "Iran", + "ID_1": 21, + "NAME_1": "North Khorasan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Khorasan-e Shemali" + } + }, + { + "arcs": [[-76, -4, -73, -43, 80, -35]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-28", + "NAME_0": "Iran", + "ID_1": 22, + "NAME_1": "Qazvin", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[81, 82, 83, 84, 85, 86, -27, 87, -71]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-26", + "NAME_0": "Iran", + "ID_1": 23, + "NAME_1": "Qom", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[88, 89, 90, -78, 91]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-30", + "NAME_0": "Iran", + "ID_1": 24, + "NAME_1": "Razavi Khorasan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Khorasan-e Razavi" + } + }, + { + "arcs": [[-79, -91, 92, -29, 93, -86, 94, 95, -74, -39]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-12", + "NAME_0": "Iran", + "ID_1": 25, + "NAME_1": "Semnan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-50, -57, 96, 97]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-13", + "NAME_0": "Iran", + "ID_1": 26, + "NAME_1": "Sistan and Baluchestan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Baluchestan va Sistan|Seistan and Baluchistan|Sistan e Baloutchistan" + } + }, + { + "arcs": [[98, -97, -56, 99, -89]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-29", + "NAME_0": "Iran", + "ID_1": 27, + "NAME_1": "South Khorasan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Khorasan-e Janubi" + } + }, + { + "arcs": [[-96, 100, -84, 101, -82, -70, -2, -75]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-07", + "NAME_0": "Iran", + "ID_1": 28, + "NAME_1": "Tehran", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": "استان تهران", + "VARNAME_1": "Teheran" + } + }, + { + "arcs": [[-18, 102, -67, 103]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-02", + "NAME_0": "Iran", + "ID_1": 29, + "NAME_1": "West Azarbaijan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Azarbayjan-e Bakhtari|Azarbaijan-e Gharbi|West Azarbayejan|Azerba‹djan e Gharbi" + } + }, + { + "arcs": [[-100, -58, -30, -20, -93, -90]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-25", + "NAME_0": "Iran", + "ID_1": 30, + "NAME_1": "Yazd", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-36, -81, -42, -68, -103, -17, -6]], + "type": "Polygon", + "properties": { + "ID_0": 107, + "ISO": "IR-11", + "NAME_0": "Iran", + "ID_1": 31, + "NAME_1": "Zanjan", + "TYPE_1": "Ostan", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/italy-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/italy-topo.json new file mode 100644 index 000000000000..6e9cf3a87ac2 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/italy-topo.json @@ -0,0 +1,5584 @@ +{ + "type": "Topology", + "arcs": [ + [ + [7594, 6900], + [-12, -65], + [-36, -19], + [-55, -72], + [-4, -38], + [-47, -35], + [-40, -86], + [-80, -79] + ], + [ + [7320, 6506], + [-37, 100], + [-64, 53], + [-86, 37], + [-51, -40] + ], + [ + [7082, 6656], + [-43, 33], + [-72, -13], + [-23, 160], + [21, 37], + [-18, 50] + ], + [ + [6947, 6923], + [28, 26], + [13, 65], + [-30, 35], + [19, 46], + [-5, 140], + [42, 109], + [90, 34] + ], + [ + [7104, 7378], + [145, -109], + [32, -62], + [63, -78], + [99, -64], + [93, -34], + [0, -85], + [58, -46] + ], + [ + [6649, 7347], + [40, -111], + [34, -66], + [-33, -43], + [-10, -125], + [105, -7], + [48, -24], + [44, -66], + [70, 18] + ], + [ + [7082, 6656], + [-12, -30], + [-65, -34], + [44, -101], + [-116, -13], + [-47, -70], + [-73, 7] + ], + [ + [6813, 6415], + [-20, 37], + [-158, 55], + [-31, 47], + [-51, 18], + [-84, -73], + [-47, 24], + [-16, 37], + [-90, 45], + [-45, 41], + [23, 44], + [-82, 57] + ], + [ + [6212, 6747], + [-145, 85], + [-80, 1], + [-34, 75], + [12, 51] + ], + [ + [5965, 6959], + [51, 37], + [1, 43], + [90, -25], + [61, -40], + [53, 14], + [58, 53], + [-45, 64], + [-26, 3], + [-58, 70], + [-3, 41], + [-68, 48], + [33, 55], + [-68, 55], + [36, 24], + [22, 64], + [-19, 19], + [32, 76], + [93, -21], + [95, 26] + ], + [ + [6303, 7565], + [15, -68], + [107, -111], + [165, -8], + [59, -31] + ], + [ + [7003, 7487], + [101, -109] + ], + [ + [6649, 7347], + [38, 71], + [74, 42], + [62, -5], + [36, 47], + [144, -15] + ], + [ + [6788, 7951], + [21, -101], + [55, -142], + [72, -129], + [67, -92] + ], + [ + [6303, 7565], + [14, 66], + [-37, 8], + [-24, 66] + ], + [ + [6256, 7705], + [42, -18], + [59, 60], + [35, -1], + [37, 79], + [159, 34], + [21, 42], + [179, 50] + ], + [ + [10026, 5402], + [-46, -34], + [-41, -62], + [65, -38], + [-11, -49] + ], + [ + [9993, 5219], + [-45, -6], + [-53, 28], + [-82, -28], + [-10, -42], + [-85, 14], + [-34, -10], + [-48, 35], + [-41, -6], + [-13, -38], + [-52, 21], + [-53, -36], + [-12, 48], + [-58, -24] + ], + [ + [9407, 5175], + [-86, 50], + [-52, 13], + [-75, -7], + [-61, -68], + [-28, 4], + [-146, 166] + ], + [ + [8959, 5333], + [-39, 101] + ], + [ + [8920, 5434], + [46, 57], + [21, 110], + [72, 110], + [-12, 21], + [58, 47], + [96, -47], + [36, 98] + ], + [ + [9237, 5830], + [56, -33], + [412, -156], + [179, -112], + [63, -47], + [41, -62], + [38, -18] + ], + [ + [8755, 6080], + [207, -117], + [90, -31], + [101, -63], + [84, -39] + ], + [ + [8920, 5434], + [-36, 14], + [-39, -37], + [-26, 27], + [-109, 48], + [52, 51], + [5, 52], + [-79, 91], + [-77, 37] + ], + [ + [8611, 5717], + [53, 54], + [60, 17], + [34, 70], + [-42, 69], + [-1, 71], + [49, 19], + [-57, 49], + [48, 14] + ], + [ + [10026, 5402], + [75, -76], + [76, -43], + [127, -43], + [143, -96], + [91, -6], + [99, -112], + [-10, -38], + [58, -67] + ], + [ + [10685, 4921], + [-25, -69], + [-108, -3], + [-16, -38], + [-106, -31], + [-22, -31] + ], + [ + [10408, 4749], + [-98, 41], + [-10, 37], + [-54, 28], + [-86, -20], + [-43, 45], + [-36, 93], + [24, 70], + [-43, 30], + [-9, 61], + [-60, 85] + ], + [ + [8611, 5717], + [-60, -36], + [-116, -32], + [-60, 17], + [-50, -13], + [-19, -43] + ], + [ + [8306, 5610], + [-90, 29], + [-47, 36], + [-27, -28], + [-93, 28], + [-54, 78], + [45, 37], + [-7, 93], + [-46, 21], + [-48, -8] + ], + [ + [7939, 5896], + [-19, 38], + [-53, 28], + [-13, 51], + [38, 78], + [-62, 24], + [-23, 43] + ], + [ + [7807, 6158], + [-63, 48], + [19, 156], + [58, -31], + [24, 43], + [49, 20], + [19, 62], + [-22, 58], + [16, 30], + [-10, 73], + [32, 42], + [-2, 58] + ], + [ + [7927, 6717], + [193, -14], + [81, -18], + [179, 34], + [49, -16], + [76, 2], + [161, 22], + [75, 21], + [69, -12], + [76, -68], + [25, -65], + [-3, -79], + [-63, -46], + [-53, -58], + [-111, -62], + [-43, -36], + [0, -101], + [36, -75], + [81, -66] + ], + [ + [10685, 4921], + [29, -29], + [69, -30], + [46, -45], + [77, -98], + [84, -79], + [38, -93], + [-1, -37], + [50, -74], + [3, -34], + [-40, -75], + [-40, -32], + [-29, -79], + [-11, -182], + [-54, -30], + [-71, 52], + [-44, 3], + [-154, 116], + [-31, 54], + [5, 80], + [-31, 25], + [25, 67], + [-80, 97], + [-16, 87], + [-41, 39], + [-94, 16] + ], + [ + [10374, 4640], + [28, 55], + [6, 54] + ], + [ + [10374, 4640], + [-96, 12], + [-144, -12], + [-53, 42], + [-51, 7], + [-152, 87], + [19, 62], + [-114, 86], + [-101, -15], + [-67, -46], + [-76, -90] + ], + [ + [9539, 4773], + [-53, 44], + [-16, 37], + [-53, 8], + [2, 46], + [-30, 59], + [17, 66], + [-13, 39], + [14, 103] + ], + [ + [9539, 4773], + [-80, -130], + [-47, -120], + [-38, -68], + [-42, -38] + ], + [ + [9332, 4417], + [-55, 18], + [-51, -19], + [-73, 22], + [-40, -18], + [-10, -83] + ], + [ + [9103, 4337], + [-45, 86], + [44, 56], + [-45, 49], + [25, 87], + [-41, 38], + [-20, -39], + [-107, -10], + [-19, 93], + [-64, 89], + [32, 58], + [-61, 116], + [39, 41], + [-64, 74], + [7, 25], + [86, 61], + [-31, 82], + [6, 37], + [114, 53] + ], + [ + [9103, 4337], + [0, -47], + [-56, -105], + [-167, -21], + [-71, -29], + [-56, 34], + [-41, 75], + [-47, 24], + [-28, -25], + [-73, 26], + [-60, -101] + ], + [ + [8504, 4168], + [-32, 65], + [-72, 84] + ], + [ + [8400, 4317], + [58, 99], + [6, 77], + [86, 93], + [-10, 45], + [-42, 15], + [-37, 49], + [1, 51], + [-100, 74], + [-60, 67], + [6, 56], + [-33, 69], + [-54, 32], + [48, 66], + [-69, 38], + [-45, 40], + [4, 86], + [-47, 55] + ], + [ + [8112, 5329], + [40, 7], + [6, 46], + [133, 40], + [42, 116], + [-27, 72] + ], + [ + [9562, 2900], + [-107, -40], + [-161, -106], + [-62, -116], + [33, -196], + [9, -124] + ], + [ + [9274, 2318], + [-42, -4], + [-53, 33], + [-56, 78] + ], + [ + [9123, 2425], + [8, 38], + [-93, 72], + [20, 120], + [-5, 76], + [-45, 35], + [-76, -14] + ], + [ + [8932, 2752], + [5, 127], + [-61, 52], + [-56, 124] + ], + [ + [8820, 3055], + [57, 16], + [88, 49], + [89, 15], + [34, -8], + [39, -55], + [53, -4], + [-2, 81], + [53, 28], + [72, 63] + ], + [ + [9303, 3240], + [49, -48], + [-7, -47], + [71, -77], + [39, 7], + [65, -32], + [45, -53], + [24, -58], + [-27, -32] + ], + [ + [9332, 4417], + [-33, -44], + [-9, -62], + [28, -89], + [-127, -195], + [-2, -80], + [34, -32], + [-3, -83], + [83, -48], + [156, -10], + [83, -100], + [98, -57], + [45, -10] + ], + [ + [9685, 3607], + [-61, -58], + [-1, -50], + [-113, -66], + [-66, 20], + [-54, -49], + [51, -39], + [-13, -60], + [29, -62], + [-91, 12], + [-63, -15] + ], + [ + [8820, 3055], + [-27, 110], + [-9, 173], + [-20, 102], + [-37, 117], + [-67, 107], + [-46, 32], + [-62, 235], + [-20, 101], + [-6, 98], + [-22, 38] + ], + [ + [9685, 3607], + [28, -58], + [60, -41], + [18, -35], + [-24, -77], + [-5, -83], + [38, -59], + [-29, -80], + [-5, -60], + [58, -80], + [-3, -102], + [-52, -55], + [-121, 36], + [-86, -13] + ], + [ + [9274, 2318], + [-14, -60], + [-64, -80], + [-43, -34], + [-120, -51], + [-152, -209], + [-15, -124], + [-41, -92], + [-35, -46], + [-63, -11], + [-68, 18], + [-148, -16], + [-80, 47], + [-37, 61], + [15, 37], + [-22, 92], + [24, 41], + [-22, 71], + [3, 53], + [105, 31], + [43, 30], + [32, 55], + [49, 136], + [19, 11], + [17, 87] + ], + [ + [8657, 2365], + [38, 24], + [41, -11], + [70, 58], + [106, -82], + [56, -17], + [13, -50], + [80, -19], + [36, 23], + [-34, 60], + [-6, 53], + [41, 47], + [25, -26] + ], + [ + [8657, 2365], + [11, 42], + [-97, 109], + [23, 46], + [90, 37], + [34, 41], + [52, 5], + [55, -20], + [78, 48], + [29, 79] + ], + [ + [8112, 5329], + [-37, 4], + [-14, -49], + [-38, -32], + [7, -72], + [-75, -13], + [-25, 63], + [-206, 56], + [-79, -10], + [-83, 13], + [-10, 46], + [-63, -22], + [-57, 32] + ], + [ + [7432, 5345], + [-26, 42], + [7, 68], + [-12, 96] + ], + [ + [7401, 5551], + [22, 61], + [62, -2], + [156, -26], + [37, 29], + [99, 45], + [33, 32], + [-46, 72], + [35, 32], + [-17, 78], + [26, 12], + [106, -18], + [25, 30] + ], + [ + [7401, 5551], + [-38, 5] + ], + [ + [7363, 5556], + [-22, 54], + [-81, -4], + [15, 56], + [-37, 32], + [65, 63], + [-41, 102], + [29, 54], + [33, 9], + [-31, 90], + [45, 16] + ], + [ + [7338, 6028], + [92, -25], + [64, 54], + [42, -8], + [45, 22], + [23, 44], + [61, -35], + [142, 78] + ], + [ + [7224, 6103], + [68, -19], + [46, -56] + ], + [ + [7363, 5556], + [-10, -33], + [-108, -2], + [-100, 24], + [-12, -56], + [-119, -12], + [-15, 36], + [-114, -40], + [12, -63] + ], + [ + [6897, 5410], + [-51, 99], + [-52, 61], + [-24, 83], + [-65, 106], + [-59, 64] + ], + [ + [6646, 5823], + [53, 29], + [8, 40], + [51, 18], + [-8, 60] + ], + [ + [6750, 5970], + [12, 60], + [-22, 31], + [107, 67] + ], + [ + [6847, 6128], + [26, -12], + [35, -77], + [60, 30], + [-27, 39], + [44, 77], + [39, -16], + [69, 2], + [80, -55], + [51, -13] + ], + [ + [6748, 5235], + [76, -25], + [11, -39], + [-86, -19], + [-18, 51], + [17, 32] + ], + [ + [7432, 5345], + [-16, -53], + [-75, -42], + [67, -81], + [-23, -53], + [20, -51], + [-99, -10] + ], + [ + [7306, 5055], + [-138, -64], + [15, 69], + [57, 17], + [75, 91], + [-25, 52], + [-37, 2], + [-110, 107], + [-60, -5], + [-42, -51], + [-23, 30], + [-74, 17], + [-33, 37], + [-14, 53] + ], + [ + [8400, 4317], + [-65, 47], + [-67, -18], + [-76, -91], + [-72, 16], + [-56, 37], + [-11, 51], + [-144, 131], + [-49, -16], + [-68, 68], + [-71, 25], + [27, 55], + [-1, 71], + [51, 28], + [-13, 84], + [-71, 155], + [-78, 120], + [-61, 47], + [-62, -55], + [-52, 19], + [-57, -41], + [-48, -12], + [-50, 17] + ], + [ + [4346, 10380], + [-44, -56], + [27, -68], + [78, 87], + [87, -16], + [131, -63], + [76, -101], + [50, 28], + [67, -25], + [-10, -102] + ], + [ + [4808, 10064], + [-10, -65], + [19, -54], + [-16, -31], + [51, -29], + [-47, -84], + [-72, -74], + [-64, -20], + [-57, -53], + [-50, -95] + ], + [ + [4562, 9559], + [-72, 53], + [-25, 51], + [-38, -50], + [-35, 7], + [-58, -64], + [-75, -19], + [2, -50] + ], + [ + [4261, 9487], + [-40, 14], + [-102, -28] + ], + [ + [4119, 9473], + [-45, 28], + [-53, -39], + [-90, 21], + [-31, 22] + ], + [ + [3900, 9505], + [8, 85], + [30, 32], + [48, -2], + [47, 26], + [8, 97], + [43, -3], + [26, 41], + [-17, 52], + [24, 55], + [-48, 17], + [48, 46], + [11, 72], + [84, 78], + [-20, 61], + [-47, 20], + [37, 81], + [12, 92], + [72, 27], + [80, -2] + ], + [ + [5375, 10366], + [-22, 9], + [-62, 54], + [-48, -79], + [-16, -118], + [28, -74] + ], + [ + [5255, 10158], + [-30, -10], + [-77, -92], + [-117, 16], + [-27, 50], + [-196, -58] + ], + [ + [4346, 10380], + [17, 32], + [53, 19], + [-20, 37], + [-105, 44], + [11, 57] + ], + [ + [4302, 10569], + [75, 14], + [93, -15] + ], + [ + [4470, 10568], + [98, -17], + [87, -61], + [111, 61], + [53, 50], + [112, -2], + [39, 16], + [126, -20], + [39, -55], + [27, 18], + [52, -25], + [52, 24], + [5, -91], + [47, -23], + [19, -49], + [38, -28] + ], + [ + [5361, 9643], + [61, -79] + ], + [ + [5422, 9564], + [5, -63], + [-83, -83], + [29, -21], + [-24, -52], + [-44, -37] + ], + [ + [5305, 9308], + [-26, -41], + [-118, -39], + [-61, -139], + [4, -44] + ], + [ + [5104, 9045], + [-112, 10], + [-37, 37], + [-85, 32], + [-136, 78] + ], + [ + [4734, 9202], + [7, 57], + [-67, 86], + [46, 58], + [54, 110], + [-34, 1] + ], + [ + [4740, 9514], + [4, 46], + [101, 52], + [56, -36], + [23, 47], + [59, 62], + [55, 94], + [63, -75], + [96, -65], + [68, 16], + [65, -54], + [31, 42] + ], + [ + [3900, 9505], + [-67, 52], + [-95, 5], + [-16, -50] + ], + [ + [3722, 9512], + [-92, 46], + [-51, 88] + ], + [ + [3579, 9646], + [54, 159], + [64, 16], + [69, 135], + [65, 51], + [24, 42], + [14, 108], + [31, 37], + [-8, 51], + [8, 141], + [68, 136] + ], + [ + [3968, 10522], + [50, 10], + [53, 42], + [70, 10], + [74, -38], + [87, 23] + ], + [ + [3573, 10551], + [38, -18] + ], + [ + [3611, 10533], + [-76, -162], + [21, -88], + [-30, -79], + [-11, -127], + [-56, -51], + [-9, -50], + [-72, -43], + [-46, -75], + [-59, -49] + ], + [ + [3273, 9809], + [-40, -10], + [-102, 74], + [16, 35], + [-71, 51], + [-103, -7], + [-82, -111], + [-42, -17] + ], + [ + [2849, 9824], + [-30, 58], + [-89, 34], + [-75, -37] + ], + [ + [2655, 9879], + [-19, 42], + [36, 52], + [-4, 93] + ], + [ + [2668, 10066], + [53, 41], + [70, 87], + [58, 24], + [73, 8], + [1, 37], + [49, 64], + [57, 10], + [2, 44], + [51, 43], + [46, 11], + [23, 39], + [-22, 76], + [41, 61], + [13, 58], + [35, 18] + ], + [ + [3218, 10687], + [22, -28], + [48, 28], + [89, -32], + [19, -25], + [85, -42], + [48, 15], + [44, -52] + ], + [ + [2668, 10066], + [-68, 31], + [-74, -2], + [-37, 37], + [-91, 7] + ], + [ + [2398, 10139], + [-3, 93] + ], + [ + [2395, 10232], + [92, -7], + [32, 69], + [-44, 31], + [64, 67], + [-12, 74], + [-56, 33], + [62, 129], + [21, 65], + [64, 57], + [58, 13], + [44, 37] + ], + [ + [2720, 10800], + [36, -42], + [117, -52], + [62, 39], + [96, -19], + [8, 72] + ], + [ + [3039, 10798], + [95, -2], + [26, -66], + [58, -43] + ], + [ + [5255, 10158], + [12, -57], + [5, -156], + [64, -243], + [25, -59] + ], + [ + [4740, 9514], + [-59, -28], + [-52, 32], + [13, 44], + [-80, -3] + ], + [ + [3579, 9646], + [-32, 0], + [-60, 55], + [-70, 21], + [-40, -22] + ], + [ + [3377, 9700], + [-104, 109] + ], + [ + [3611, 10533], + [64, -17], + [51, 19], + [55, 79], + [41, 6], + [12, -54], + [134, -44] + ], + [ + [5705, 9317], + [-22, -55], + [-5, -81], + [-39, -42], + [-54, -6], + [-32, 80], + [-22, -7], + [-69, 43] + ], + [ + [5462, 9249], + [20, 43], + [-43, 38], + [-58, -37] + ], + [ + [5381, 9293], + [-76, 15] + ], + [ + [5422, 9564], + [2, 1], + [0, 0], + [56, -69], + [62, -46], + [53, -64], + [77, -64], + [33, -5] + ], + [ + [6494, 11683], + [-16, -60] + ], + [ + [6478, 11623], + [-33, 8], + [-28, -54], + [32, -18], + [-110, -61], + [-46, -9], + [-3, 67] + ], + [ + [6290, 11556], + [57, 75], + [-16, 104], + [-29, 59], + [70, 106], + [26, 69] + ], + [ + [6398, 11969], + [-16, -75], + [63, -11], + [64, 14], + [35, -15], + [-56, -155], + [6, -44] + ], + [ + [5917, 11693], + [-46, -21], + [-64, 42], + [-74, 4], + [-49, -22], + [-63, -56] + ], + [ + [5621, 11640], + [-52, 58], + [-64, 39], + [-30, 70], + [-77, 41], + [5, 51], + [-27, 58] + ], + [ + [5376, 11957], + [27, 44], + [52, 35], + [14, 44], + [-63, 91], + [-55, 18], + [-45, 40], + [5, 36], + [47, 62], + [30, -1], + [81, 103] + ], + [ + [5469, 12429], + [25, -50], + [56, -7], + [48, -36], + [65, -17], + [107, 39], + [50, -30], + [80, 5], + [14, -87], + [-10, -94], + [-45, -153], + [-12, -140], + [10, -63], + [56, -53], + [4, -50] + ], + [ + [6494, 11683], + [141, -69], + [68, -56], + [63, -76], + [14, -54], + [-71, -60], + [-74, 16], + [22, 49], + [-24, 68], + [-108, 106], + [-47, 16] + ], + [ + [6290, 11556], + [-43, 17], + [0, 1], + [-81, 11], + [-24, 26], + [-122, -51], + [-6, -94] + ], + [ + [6014, 11466], + [-36, 36], + [-15, 65], + [-25, 17], + [-21, 109] + ], + [ + [5469, 12429], + [7, 37], + [59, 44], + [35, -15], + [44, 26], + [-22, 35], + [80, 42], + [24, 65], + [-6, 50] + ], + [ + [5690, 12713], + [85, -8], + [22, -32], + [74, 7], + [220, -26], + [68, -42], + [66, -2], + [63, 30], + [43, -24], + [130, -9], + [140, -38], + [-2, -60], + [-42, -26], + [-84, -18], + [-30, -52], + [-80, -47], + [-72, -90], + [55, -100], + [21, 29], + [86, -52], + [90, -17], + [8, -40], + [-84, -81], + [-69, -46] + ], + [ + [6813, 6415], + [44, -43], + [21, -59], + [-8, -49], + [22, -55], + [-49, -41], + [4, -40] + ], + [ + [6750, 5970], + [-103, -47], + [-44, 43], + [-91, -20], + [-65, 127], + [-112, 47], + [10, -40], + [-33, -29], + [-92, 3], + [-36, 61], + [31, 23], + [-26, 68], + [-46, 19], + [-44, 57] + ], + [ + [6099, 6282], + [-23, 17], + [-3, 81], + [-141, 149], + [13, 61], + [52, 10], + [34, 35], + [49, -22], + [83, 68], + [49, 66] + ], + [ + [6646, 5823], + [-52, 38], + [-79, 9], + [-102, -50], + [-112, 69], + [-93, 28], + [-129, -37], + [-83, -60], + [-24, 12], + [-42, 113], + [-66, 77], + [-83, 45], + [-56, 2] + ], + [ + [5725, 6069], + [-32, 39], + [-17, 74], + [-62, 36], + [-58, 10], + [-47, 70], + [17, 34], + [68, 62], + [18, -81], + [42, 3], + [61, -39], + [86, 143], + [78, 27], + [4, -50], + [77, -94], + [81, -59], + [58, 38] + ], + [ + [5965, 6959], + [-49, 19], + [-45, -27], + [-59, -7], + [-16, 51], + [-86, 51], + [-38, -37], + [-56, -4], + [-39, 38], + [18, 85], + [-106, 59] + ], + [ + [5489, 7187], + [-29, 2], + [-41, 131] + ], + [ + [5419, 7320], + [20, -5], + [20, 5], + [29, -40], + [137, 94], + [70, 37], + [-13, 49], + [43, 5], + [69, 51], + [42, 14], + [4, 67] + ], + [ + [5840, 7597], + [151, 8], + [80, 30], + [27, 25], + [15, 86] + ], + [ + [6113, 7746], + [60, -15], + [30, 24], + [53, -50] + ], + [ + [5725, 6069], + [-99, 51], + [-45, -14], + [-80, 137], + [-88, 109], + [-83, 76], + [-112, 67], + [-16, 79], + [-47, 104], + [-41, 43], + [-64, 35], + [-32, 40], + [-93, 65], + [-76, -13], + [-32, 72], + [-62, 93] + ], + [ + [4755, 7013], + [89, 12], + [61, 88], + [80, -38], + [22, -62], + [107, 5], + [55, 22], + [88, 4], + [54, -46], + [43, 50], + [21, 59], + [60, -33], + [25, 82], + [29, 31] + ], + [ + [4906, 7875], + [34, -72], + [45, -17], + [-49, -77], + [14, -27], + [82, -42], + [122, 34], + [77, -62], + [-4, -72], + [72, -106], + [33, -19], + [40, 33], + [16, -68], + [31, -60] + ], + [ + [4755, 7013], + [-25, 76], + [-65, 95], + [-81, 63], + [-93, 45] + ], + [ + [4491, 7292], + [7, 32], + [56, 40], + [94, 3], + [-1, 66], + [-52, 38], + [22, 32], + [139, 81], + [48, 82], + [32, 92], + [-68, 55] + ], + [ + [4768, 7813], + [53, 19], + [42, 48], + [43, -5] + ], + [ + [2655, 9879], + [-6, -29], + [43, -40], + [-18, -36], + [69, -71], + [-59, -70] + ], + [ + [2684, 9633], + [-63, 27], + [-50, 55], + [-142, 81], + [-34, -53], + [-50, 24], + [7, 33], + [-47, 29], + [-336, 72], + [-101, -60] + ], + [ + [1868, 9841], + [-38, 31], + [11, 42], + [56, 16], + [-11, 70], + [-72, 7] + ], + [ + [1814, 10007], + [84, 93], + [51, -4], + [43, -71], + [144, 55], + [-37, 92], + [46, 47], + [76, -12], + [39, -58], + [45, -14], + [46, -46], + [47, 50] + ], + [ + [1291, 9499], + [13, -77], + [-46, -46], + [35, -44], + [62, 5], + [48, -56] + ], + [ + [1403, 9281], + [-57, -62], + [-152, -71], + [-37, 0], + [-149, -45], + [-36, -31], + [-78, 20], + [-56, -10], + [-29, 113], + [58, 34], + [10, 58], + [75, 40], + [12, 67], + [44, 43] + ], + [ + [1008, 9437], + [32, 94], + [168, -32], + [83, 0] + ], + [ + [2849, 9824], + [111, -106], + [45, -18], + [4, -39], + [100, -87], + [34, -79], + [62, -12], + [-47, -69] + ], + [ + [3158, 9414], + [-52, -10], + [-103, 86], + [-74, -37], + [-99, 85], + [-146, 95] + ], + [ + [1868, 9841], + [-119, -66], + [-53, -51], + [6, -36], + [-68, -101], + [-102, -48], + [-45, -81], + [-2, -47], + [-52, -53], + [5, -60], + [-35, -17] + ], + [ + [1291, 9499], + [-5, 57], + [54, -14], + [25, 40], + [-27, 52], + [23, 73], + [-28, 34], + [69, 40], + [14, 67], + [68, 57], + [-25, 44], + [53, 82] + ], + [ + [1512, 10031], + [9, -11] + ], + [ + [1521, 10020], + [122, -54], + [10, 40], + [161, 1] + ], + [ + [3299, 11977], + [54, -11], + [-48, -98], + [-51, -20], + [-23, -34], + [11, -55], + [38, -29], + [-80, -95], + [2, -126], + [-20, -18], + [-95, -13], + [-51, -80], + [-35, 1], + [-12, -67], + [38, -97], + [11, -60] + ], + [ + [3038, 11175], + [-61, 24], + [-15, -29], + [-93, 75], + [-25, -52], + [-68, 44], + [-57, -18], + [-26, 55] + ], + [ + [2693, 11274], + [18, 99], + [-40, 73] + ], + [ + [2671, 11446], + [-18, 37] + ], + [ + [2653, 11483], + [-29, 116], + [50, 16], + [-26, 110], + [47, 19], + [14, 106], + [-31, 12], + [22, 57] + ], + [ + [2700, 11919], + [46, 11], + [62, 51], + [115, 5], + [61, -22], + [71, -1], + [119, 53], + [125, -39] + ], + [ + [3621, 12341], + [47, -21], + [18, -100], + [-41, -76], + [22, -27], + [-22, -81], + [-47, -47], + [-31, -74], + [47, -131], + [0, -104], + [52, -51], + [81, 37], + [4, 25], + [173, 0] + ], + [ + [3924, 11691], + [-129, -203], + [-69, -90], + [14, -188], + [11, -49] + ], + [ + [3751, 11161], + [-15, -39], + [-85, 0], + [-34, 34], + [-57, -37], + [15, -74], + [-32, -15], + [-106, -138] + ], + [ + [3437, 10892], + [-48, 59], + [-44, -34], + [-111, 30], + [-47, 41], + [-52, 13], + [-89, 61], + [-14, 24], + [6, 89] + ], + [ + [3299, 11977], + [-10, 130], + [126, 82], + [31, 81], + [40, 8], + [80, 75], + [55, -12] + ], + [ + [2595, 12079], + [-53, 17], + [-52, -31], + [-11, -85], + [-26, -42], + [21, -76], + [-15, -52], + [59, -78], + [-82, -124], + [3, -31] + ], + [ + [2439, 11577], + [-48, -57], + [-120, -17], + [-10, -49] + ], + [ + [2261, 11454], + [-119, 11], + [21, 97], + [-47, 68], + [12, 64] + ], + [ + [2128, 11694], + [36, 13], + [69, -30], + [43, 119], + [-51, 19], + [3, 155], + [53, 17], + [-5, 65], + [46, 22], + [115, 126] + ], + [ + [2437, 12200], + [81, 4], + [86, -61], + [-9, -64] + ], + [ + [3437, 10892], + [58, -85], + [53, -3], + [-24, -114], + [77, 36], + [42, -25], + [-78, -92], + [8, -58] + ], + [ + [3039, 10798], + [-18, 34], + [-81, 11], + [-71, 116], + [-86, 47], + [-26, 79], + [-74, -9], + [-51, 48], + [28, 78] + ], + [ + [2660, 11202], + [33, 72] + ], + [ + [2653, 11483], + [-58, 10], + [-93, -10], + [-38, 93], + [-25, 1] + ], + [ + [2595, 12079], + [0, -54], + [89, -41], + [16, -65] + ], + [ + [2720, 10800], + [-16, 42], + [-50, -5], + [-100, 106], + [-52, 19], + [40, 42], + [-18, 26] + ], + [ + [2524, 11030], + [39, 7], + [-25, 57], + [50, 39], + [10, 73], + [62, -4] + ], + [ + [4264, 10771], + [-4, -63], + [122, -87], + [77, -31], + [11, -22] + ], + [ + [3751, 11161], + [40, -46], + [37, -118], + [42, 36], + [60, -75], + [81, -30], + [53, -47], + [7, -48], + [69, -76], + [62, 32], + [62, -18] + ], + [ + [2258, 11425], + [53, -3], + [-6, -42], + [63, 5], + [99, -60], + [44, -7], + [147, 85], + [13, 43] + ], + [ + [2524, 11030], + [-50, 24], + [-135, -28], + [-96, -9], + [-50, -48], + [-37, 62], + [-72, 37], + [-22, 65] + ], + [ + [2062, 11133], + [-50, 86], + [-1, 31], + [-56, 21], + [-19, 71] + ], + [ + [1936, 11342], + [92, 55], + [58, -12], + [50, 25], + [17, 39], + [59, -82], + [52, 5], + [-6, 53] + ], + [ + [2258, 11425], + [3, 29] + ], + [ + [2395, 10232], + [13, 84], + [-39, 25], + [-11, 53], + [-48, -10], + [-52, 49], + [16, 27], + [-94, 99], + [8, 31], + [-71, 51], + [-19, 59], + [-53, -9], + [-52, -51], + [-59, 38], + [-50, -17], + [-5, 66], + [-62, 99], + [-30, 19] + ], + [ + [1787, 10845], + [15, 36], + [-35, 29], + [16, 43], + [-28, 77] + ], + [ + [1755, 11030], + [13, 39], + [79, 14], + [97, -66], + [10, 38], + [62, 59], + [46, 19] + ], + [ + [3565, 12586], + [19, -51], + [71, -5], + [65, -55] + ], + [ + [3720, 12475], + [8, -58], + [-107, -76] + ], + [ + [2437, 12200], + [48, 105], + [-18, 132], + [7, 108], + [81, -2], + [16, -35], + [70, 50], + [-10, -107], + [15, -66], + [25, -10], + [48, -77], + [84, -20], + [70, 8], + [11, 59], + [41, -7], + [163, 51], + [43, -45], + [5, -72], + [54, -24], + [-6, -48], + [70, -5], + [47, 38], + [-19, 50], + [-46, 51], + [58, 96], + [-32, 27], + [-47, -12], + [-39, 26], + [17, 131], + [63, 78], + [55, 24], + [104, -93], + [114, -2], + [36, -23] + ], + [ + [1936, 11342], + [-17, 104], + [-40, 104], + [-41, 6], + [-43, 62], + [35, 68] + ], + [ + [1830, 11686], + [-20, 93], + [137, 140], + [-2, 115] + ], + [ + [1945, 12034], + [60, -6], + [64, -28], + [-56, -85], + [117, -119], + [14, -53], + [-16, -49] + ], + [ + [6533, 8689], + [17, -51], + [-71, 11], + [-95, -8], + [-31, 11], + [-104, -68], + [-85, 86], + [-31, -54], + [-53, -4], + [-58, 28], + [-48, -127], + [-82, -74], + [-66, -14], + [14, -44], + [-32, -27] + ], + [ + [5808, 8354], + [-108, 228], + [26, 15], + [-7, 74] + ], + [ + [5719, 8671], + [36, 56], + [77, 50], + [29, 52], + [39, 17], + [23, 74], + [78, 47], + [9, 44], + [86, 28] + ], + [ + [6096, 9039], + [93, -81], + [138, -83], + [57, -18], + [26, 29], + [58, -74], + [53, -30], + [12, -93] + ], + [ + [6727, 8170], + [37, -159], + [24, -60] + ], + [ + [6113, 7746], + [69, 95], + [-27, 76] + ], + [ + [6155, 7917], + [6, 31] + ], + [ + [6161, 7948], + [49, 42], + [80, -25], + [28, 24], + [-16, 54], + [30, 13], + [122, 14], + [70, 57], + [144, 60], + [59, -17] + ], + [ + [6161, 7948], + [-23, 75], + [49, 29], + [58, 63], + [56, -15], + [64, 11], + [4, 76], + [-32, 40], + [30, 67], + [52, 13], + [3, 45], + [67, 0], + [7, 74], + [132, 33] + ], + [ + [6628, 8459], + [95, -250], + [4, -39] + ], + [ + [6533, 8689], + [72, -193], + [23, -37] + ], + [ + [6155, 7917], + [-21, -34], + [-48, -12], + [-45, 73], + [-54, 40], + [-73, -64], + [1, 71], + [-76, 49], + [10, 90], + [-8, 74], + [-33, 93], + [0, 57] + ], + [ + [5719, 8671], + [-30, 5], + [-24, -50], + [-43, 15], + [-35, -20], + [-57, 50], + [-60, 78], + [-94, -10], + [-50, 51], + [26, 39], + [-15, 42], + [-58, -30], + [-75, 21] + ], + [ + [5204, 8862], + [-27, 40], + [171, 93], + [-79, 64], + [-40, -14], + [-72, 11], + [-53, -11] + ], + [ + [5381, 9293], + [3, -58], + [2, -7], + [76, 21] + ], + [ + [5705, 9317], + [46, -6], + [87, -54], + [166, -131], + [92, -87] + ], + [ + [7224, 6103], + [7, 79], + [97, 86], + [15, 46], + [-80, 45], + [9, 35], + [81, 35], + [-33, 77] + ], + [ + [7594, 6900], + [110, -61], + [95, -21], + [65, -75], + [63, -26] + ], + [ + [1521, 10020], + [38, 57], + [10, 49], + [36, 39], + [3, 54], + [61, 21], + [1, 50], + [55, 26], + [20, 43], + [-118, 77], + [2, 176], + [-24, 17], + [-46, 100], + [-57, -17], + [-77, -46], + [-46, 86], + [18, 36] + ], + [ + [1397, 10788], + [21, 58] + ], + [ + [1418, 10846], + [60, -6], + [50, 22], + [68, -12], + [19, 33], + [124, 1], + [48, -39] + ], + [ + [1512, 10031], + [-8, 60], + [-46, 67], + [59, 118], + [-116, 33], + [-2, 81], + [-35, 14], + [-45, -28], + [-95, 60] + ], + [ + [1224, 10436], + [-47, 87], + [9, 65], + [24, 22], + [0, 155], + [57, 30], + [130, -7] + ], + [ + [1302, 11144], + [11, 49], + [-65, 43], + [-78, 70], + [10, 76] + ], + [ + [1180, 11382], + [40, 68], + [-31, 49], + [29, 54] + ], + [ + [1218, 11553], + [60, -5], + [119, 48], + [185, -140], + [-67, -50], + [38, -70], + [-31, -67], + [-72, -65], + [-59, -94], + [-89, 34] + ], + [ + [1008, 9437], + [2, 32], + [-43, 51], + [15, 63], + [-65, -29], + [-101, -12], + [-41, -23], + [-95, -13], + [-14, 37], + [-76, 2], + [-64, 64], + [-50, 5], + [-61, 38], + [-61, 15], + [-73, 141], + [-30, 15], + [7, 68], + [43, 13], + [-60, 71], + [-21, 58], + [69, 57], + [12, 99], + [43, 42], + [56, -8], + [4, 40] + ], + [ + [404, 10263], + [54, 20], + [35, 43], + [170, 29], + [9, -40], + [61, 18], + [50, -12], + [55, 34], + [60, 65], + [56, -3], + [29, -27], + [75, 16], + [15, 26], + [113, -28], + [38, 32] + ], + [ + [1755, 11030], + [-16, 78], + [-38, 10], + [-46, 47], + [-2, 143], + [-13, 111], + [-49, 57], + [38, 96], + [-26, 43] + ], + [ + [1603, 11615], + [102, 128], + [38, -50], + [87, -7] + ], + [ + [1302, 11144], + [-2, -50], + [-57, -42], + [25, -29], + [0, -100], + [51, -37], + [99, -40] + ], + [ + [404, 10263], + [-37, 45], + [-3, 97], + [-68, 51], + [-34, -23], + [-81, 35], + [-59, 52], + [1, 73], + [-22, 67], + [-49, -3], + [-52, 112], + [56, 37], + [76, 21], + [76, -33], + [44, 45], + [49, 15], + [21, 41], + [148, 59], + [-21, 86], + [67, 104], + [-59, 43], + [-18, 35] + ], + [ + [439, 11222], + [19, 54], + [95, -46], + [43, 57], + [98, 2], + [84, 77], + [86, 17], + [164, -51], + [108, 66], + [44, -16] + ], + [ + [1603, 11615], + [-31, -4], + [17, 98], + [-30, 53], + [-114, 77], + [-88, -33], + [-39, 17], + [-76, -45], + [-80, 33] + ], + [ + [1162, 11811], + [-3, 4] + ], + [ + [1159, 11815], + [8, 59], + [25, 27], + [79, 1], + [40, 56], + [2, 66], + [68, 19], + [32, 30], + [19, 61], + [-68, 101], + [47, 49], + [67, 10], + [45, 70], + [46, 24], + [-22, 37], + [78, 55], + [55, 9], + [35, -122], + [-42, -85], + [35, -91], + [65, -8], + [68, -88], + [3, -47], + [101, -14] + ], + [ + [1218, 11553], + [-69, 85], + [13, 173] + ], + [ + [2597, 3779], + [38, 31], + [44, -25], + [18, -42], + [118, -50] + ], + [ + [2815, 3693], + [-18, -68], + [9, -67], + [-43, -124], + [9, -68], + [-31, -59], + [-5, -128], + [-35, -24], + [-63, -2], + [-64, 21], + [-20, 39], + [-71, 51], + [-73, 18], + [-71, -53], + [-42, 36], + [-72, -84], + [-2, -78], + [27, -36], + [-17, -76], + [-108, -105], + [-65, -52], + [-103, 69], + [-60, -46], + [-42, 32], + [-8, 50] + ], + [ + [1847, 2939], + [78, 91], + [41, 26], + [81, 4], + [25, 41], + [-29, 43], + [4, 38], + [-52, 39], + [-29, 129], + [-36, 53], + [-2, 67] + ], + [ + [1928, 3470], + [54, 38], + [74, 8], + [87, -14], + [45, 28], + [-17, 52], + [52, 31], + [-15, 85], + [44, 111] + ], + [ + [2252, 3809], + [33, 30], + [61, 17], + [57, -67], + [81, -28], + [18, -33], + [67, 12], + [28, 39] + ], + [ + [1619, 3136], + [49, -7], + [33, -29], + [11, -49], + [-21, -97], + [-40, -11], + [-47, 142], + [15, 51] + ], + [ + [1564, 3231], + [-2, -110], + [-33, -8], + [-39, 90], + [74, 28] + ], + [ + [1847, 2939], + [-36, 24], + [2, 54], + [-35, 50], + [-47, 32], + [-47, 91], + [-33, 25], + [-34, 68], + [66, 77], + [-20, 59], + [-40, 51], + [28, 37], + [-10, 53] + ], + [ + [1641, 3560], + [98, 48], + [36, -5], + [87, -90], + [21, -37], + [45, -6] + ], + [ + [1641, 3560], + [-7, 30], + [48, 68], + [33, 99], + [-18, 27], + [2, 97], + [46, 20], + [-2, -5], + [5, -5], + [1, 1], + [47, -16] + ], + [ + [1796, 3876], + [47, -5], + [22, -46], + [104, -34], + [38, 35], + [73, 18], + [48, 68], + [10, 47] + ], + [ + [2138, 3959], + [11, 27], + [58, -24], + [58, -4], + [-13, -149] + ], + [ + [2792, 4552], + [-46, -37], + [-53, 1], + [-39, -36], + [-40, -81], + [-91, -41], + [-16, -97], + [-39, -64], + [-5, -121], + [18, -48], + [-39, -100], + [55, -72], + [70, 22], + [30, -99] + ], + [ + [2138, 3959], + [-29, 18], + [75, 37], + [13, 37], + [-17, 83], + [25, 81], + [-47, 68], + [39, 56], + [45, -9], + [0, 58], + [-24, 52], + [7, 73], + [-33, 31], + [-119, -10], + [-55, -24], + [-114, 23], + [-5, 51], + [-38, 18], + [-6, 70] + ], + [ + [1855, 4672], + [18, -24], + [91, 68], + [70, 14], + [73, 49], + [54, -44], + [74, -91], + [13, 38], + [119, 58], + [54, 72], + [48, 104], + [-90, -2], + [6, 36] + ], + [ + [2385, 4950], + [91, -14], + [80, 58], + [6, 50], + [39, 61], + [61, -17], + [72, 44], + [25, 147], + [48, 33], + [20, 42] + ], + [ + [2827, 5354], + [25, -57], + [-1, -62], + [19, -63], + [36, -40], + [-7, -67], + [46, -73], + [30, -87], + [-65, -155], + [-58, -44], + [-56, -91], + [-4, -63] + ], + [ + [2792, 4552], + [26, -104], + [76, -86], + [-28, -52], + [-20, -100], + [-1, -148], + [-15, -82], + [3, -95], + [-18, -47], + [0, -145] + ], + [ + [2385, 4950], + [5, 113], + [-18, 46], + [-50, -20], + [-101, 43], + [16, 84], + [-4, 59], + [-50, 89], + [-44, -16], + [-26, 24], + [86, 55], + [-17, 55], + [-90, -29], + [-44, 21] + ], + [ + [2048, 5474], + [42, 59], + [8, 42], + [48, 21], + [73, 101], + [88, 11], + [44, 27], + [8, 103], + [67, 29], + [43, -38], + [-10, -43], + [54, -7], + [35, 23], + [55, -46], + [19, -46], + [67, 9], + [50, -42], + [-33, -34], + [-3, -71], + [31, -1], + [27, -73], + [-31, -64], + [87, -50], + [10, -30] + ], + [ + [2598, 5880], + [20, -67], + [-55, -7], + [35, 74] + ], + [ + [1796, 3876], + [-50, 43], + [35, 55], + [13, 97], + [-14, 54], + [-50, 27], + [-82, -13], + [8, 162], + [76, 63], + [-28, 92], + [2, 81], + [20, 92], + [-52, 63], + [-39, 12], + [14, 82] + ], + [ + [1649, 4786], + [21, -17], + [86, 34], + [99, -131] + ], + [ + [1649, 4786], + [-25, 104], + [-37, 29], + [-36, 101], + [-91, -28], + [-45, 14], + [-5, 51], + [39, 20], + [16, 64], + [-61, 50], + [24, 80], + [51, 99], + [4, 30], + [-43, 54], + [25, 49], + [32, -25], + [-5, -59], + [77, -80], + [96, -7], + [31, -22], + [81, 5], + [79, 47], + [22, 34], + [54, 29], + [81, 14], + [35, 35] + ], + [ + [1573, 5692], + [19, -79], + [-50, 7], + [31, 72] + ], + [ + [6619, 1317], + [63, 6], + [9, -59], + [-42, -57], + [-91, -28], + [21, -25], + [0, -69], + [-31, -37], + [87, -56], + [71, 6], + [77, -58], + [-25, -35], + [42, -37], + [32, 0], + [62, -71], + [-42, -106], + [50, -63], + [0, -46] + ], + [ + [6902, 582], + [-56, 3], + [-69, -18], + [-74, 63], + [-68, 5], + [-84, 58], + [-101, 118], + [-98, 8], + [-39, 48], + [-78, 41], + [-100, 126], + [-38, 35], + [-89, 20], + [-36, -13], + [-85, 97], + [-48, 7] + ], + [ + [5839, 1180], + [20, 145], + [44, 51], + [44, 17] + ], + [ + [5947, 1393], + [64, -62], + [100, -3], + [23, -66], + [39, -28], + [20, 37], + [43, 3], + [-1, -78], + [35, -59], + [38, 19], + [-17, 54], + [3, 69], + [39, -13], + [77, 20], + [51, -30], + [35, 26], + [51, 3], + [15, 39], + [57, -7] + ], + [ + [6933, 1354], + [7, -31], + [-41, -41], + [-25, 20], + [34, 69], + [25, -17] + ], + [ + [6994, 1232], + [-8, -125], + [14, -52], + [-66, -70], + [12, -106], + [77, -19], + [60, 30], + [80, -27], + [33, -26] + ], + [ + [7196, 837], + [27, -28], + [-5, -100], + [53, -29], + [40, -59], + [-29, -106] + ], + [ + [7282, 515], + [-99, -68] + ], + [ + [7183, 447], + [-90, 83], + [-79, 38], + [-112, 14] + ], + [ + [6619, 1317], + [64, 76], + [11, -49], + [47, -19], + [38, -41], + [-5, -50], + [53, -41], + [66, 21], + [14, 54], + [34, -1], + [53, -35] + ], + [ + [8040, 1475], + [-50, -86], + [13, -41], + [-41, -99], + [2, -71], + [-57, -57], + [-29, -61], + [5, -156] + ], + [ + [7883, 904], + [-100, 19], + [-56, 49], + [-74, -42], + [1, -70], + [44, -16], + [-41, -67], + [-33, -3], + [-35, -44], + [90, -42], + [-71, -73] + ], + [ + [7608, 615], + [-1, -28], + [-64, -10], + [-20, 20], + [-86, -40], + [-44, -44], + [-40, 25], + [-71, -23] + ], + [ + [7196, 837], + [75, -17], + [62, 20], + [-5, 48], + [90, 35], + [-9, 36], + [41, 41], + [-93, 36], + [-2, 69], + [20, 33], + [49, -9], + [79, 28], + [98, -69], + [33, 171], + [-28, 19], + [6, 74], + [-69, -37], + [17, 174] + ], + [ + [7560, 1489], + [56, -3], + [-40, 67], + [2, 82], + [37, 26], + [51, -34], + [66, 43], + [26, -63], + [88, -21], + [57, 15], + [92, -59], + [45, -67] + ], + [ + [6994, 1232], + [25, 68], + [51, 10], + [48, 34], + [24, 49], + [-24, 42], + [11, 82] + ], + [ + [7129, 1517], + [43, -3], + [74, 36], + [81, -53], + [56, 19], + [38, -34], + [80, -22], + [59, 29] + ], + [ + [7129, 1517], + [-5, 81], + [-85, 146] + ], + [ + [7039, 1744], + [121, -14], + [56, 9], + [46, 31], + [47, -9], + [72, 32], + [74, 15], + [41, 34], + [66, 86], + [39, -16], + [97, 27], + [22, 24], + [50, -50], + [73, -2], + [13, -29], + [49, -2], + [53, 31], + [54, 74], + [114, 9], + [91, 44], + [68, 61], + [122, -42], + [-62, -22], + [-22, -82], + [-79, -164], + [-34, -39], + [-124, -185], + [-46, -90] + ], + [ + [7763, 2386], + [-5, -109], + [-54, 51], + [6, 41], + [53, 17] + ], + [ + [7629, 2463], + [52, -4], + [-17, -61], + [-55, 35], + [20, 30] + ], + [ + [5947, 1393], + [72, 35], + [-31, 51], + [-78, 18], + [-27, 26], + [10, 66], + [65, 7], + [22, 47], + [-65, 128] + ], + [ + [5915, 1771], + [93, 60], + [-21, 56], + [46, 76], + [82, -28], + [75, 36], + [80, -8], + [23, -106], + [53, -17], + [91, 22], + [2, -69], + [77, -61], + [114, -51], + [83, 16], + [103, 57], + [83, 17], + [28, -28], + [112, 1] + ], + [ + [7800, 67], + [-42, -11], + [-41, 38], + [-55, 7], + [-64, -32], + [-90, 22], + [-53, 56], + [-128, 26], + [-33, 38], + [-20, 87], + [-91, 149] + ], + [ + [7608, 615], + [21, -29], + [1, -62], + [65, -91], + [9, -81], + [-40, -124], + [93, -31], + [32, -34], + [11, -96] + ], + [ + [7883, 904], + [13, -63], + [112, -51], + [-31, -44], + [-6, -51], + [50, -102], + [52, -10], + [-13, -94], + [21, -24], + [-107, -87], + [-28, -35], + [-19, -66], + [-28, -34], + [-12, -55], + [42, -144], + [-52, -44], + [-77, 67] + ], + [ + [4960, 243], + [91, -51], + [4, -49], + [-31, -35], + [-38, 13], + [-52, 73], + [26, 49] + ], + [ + [5291, 1663], + [57, -43], + [-78, -10], + [21, 53] + ], + [ + [5839, 1180], + [-108, 5], + [-100, -27], + [-55, 97], + [-47, 33], + [-42, -2], + [-45, 57], + [1, 50], + [-44, 74], + [36, 18], + [19, 53], + [-16, 71], + [25, 86], + [63, 107], + [77, 16], + [18, 45], + [45, -4], + [53, 66], + [21, -66], + [36, -57], + [61, -53], + [78, 22] + ], + [ + [5204, 8862], + [-57, -98], + [-47, -4], + [-7, -39], + [46, -25], + [-82, -53], + [-22, -48], + [37, -38], + [43, -8], + [28, -140], + [-59, -23], + [-34, 21], + [-20, -78], + [-62, -31] + ], + [ + [4968, 8298], + [-92, 8], + [-27, 65], + [-35, -3], + [-70, 42], + [-58, 84], + [-85, 54], + [-35, 45], + [-1, 74], + [-52, 35], + [-70, 81] + ], + [ + [4443, 8783], + [63, 42], + [52, 0], + [-31, 59], + [115, 85], + [-36, 52], + [10, 42], + [72, 132], + [46, 7] + ], + [ + [4443, 8783], + [-31, -28], + [-86, 5], + [-27, -43], + [-47, 23], + [-40, -37], + [-71, 52], + [-54, 16], + [-57, -53], + [-2, -57] + ], + [ + [4028, 8661], + [-77, 11], + [-41, 95], + [21, 34], + [-13, 55], + [17, 30], + [57, 15], + [-34, 100], + [-73, -20], + [-14, 36], + [-68, 69] + ], + [ + [3803, 9086], + [16, 36] + ], + [ + [3819, 9122], + [144, -26], + [76, 24] + ], + [ + [4039, 9120], + [20, -36], + [66, -33], + [36, 78], + [50, 59], + [19, 67], + [10, 157], + [21, 75] + ], + [ + [4491, 7292], + [-66, 23], + [-148, 23], + [-58, -66], + [-58, 39], + [-6, 43], + [64, 10], + [32, 96], + [-32, 66], + [-33, -7], + [-34, 91], + [-72, 43], + [-43, 89], + [-59, 33], + [-109, 25], + [-38, 28], + [29, 40], + [2, 99], + [-64, 43] + ], + [ + [3798, 8010], + [71, 85], + [-1, 71], + [-44, 5], + [-15, 52] + ], + [ + [3809, 8223], + [73, 67], + [108, 2] + ], + [ + [3990, 8292], + [100, 30], + [59, -130], + [140, 9], + [60, -17], + [63, 5], + [-7, -145], + [95, -13], + [56, 30], + [49, -14], + [49, -53], + [0, -80], + [16, -84], + [98, -17] + ], + [ + [3525, 7923], + [29, -34], + [-9, -81], + [-30, -33], + [-55, 8], + [-193, -41], + [-32, 44], + [17, 46], + [120, -2], + [26, 29], + [74, -31], + [53, 95] + ], + [ + [3798, 8010], + [-54, 14], + [-83, -3], + [-13, -37], + [-47, 13], + [-11, 65], + [30, 18], + [22, 140], + [-2, 110], + [-29, 117], + [-38, 41], + [-38, 104], + [-40, 60], + [-47, 35], + [-35, 94], + [10, 47], + [40, 19] + ], + [ + [3463, 8847], + [85, 46], + [58, -12], + [-33, -108], + [40, -138], + [-15, -37], + [39, -101], + [45, -41], + [80, -33], + [22, -73], + [-25, -44], + [50, -83] + ], + [ + [3722, 9512], + [92, -48], + [-3, -50], + [-45, -80], + [3, -134], + [50, -78] + ], + [ + [3803, 9086], + [-60, 13], + [-22, -50], + [-114, -5], + [-44, 16], + [-1, 49], + [-31, 33], + [-35, -20], + [-69, 19], + [-46, -17] + ], + [ + [3381, 9124], + [-17, 70], + [-90, 133] + ], + [ + [3274, 9327], + [28, 15], + [65, 127], + [-53, 47], + [1, 105], + [41, 28], + [21, 51] + ], + [ + [3274, 9327], + [-73, 65], + [-43, 22] + ], + [ + [4028, 8661], + [44, -66], + [13, -46], + [-39, -25], + [-1, -61], + [25, -40], + [-8, -44], + [-44, -33], + [-28, -54] + ], + [ + [3463, 8847], + [-33, -14], + [0, 0], + [-1, -1], + [0, 0], + [-1, 0], + [-39, 115], + [15, 16], + [-23, 161] + ], + [ + [4119, 9473], + [-9, -71], + [-27, -37], + [55, -28], + [-39, -56], + [-12, -132], + [-48, -29] + ], + [ + [4968, 8298], + [-42, -53], + [6, -56], + [54, -32], + [-44, -188], + [18, -10], + [6, -34], + [-24, -6] + ], + [ + [4942, 7919], + [-36, -44] + ], + [ + [5449, 12769], + [-40, -14], + [-69, -62], + [-92, 12], + [-46, -25], + [-134, 84], + [-20, -114], + [-45, -67], + [-30, 15], + [-129, -46] + ], + [ + [4844, 12552], + [-104, 6], + [-84, -53], + [-6, -59], + [-58, -95], + [-70, 16], + [-26, -36], + [-47, -14], + [-23, -41], + [-52, 1], + [-72, -80], + [-37, -13], + [-63, 81], + [60, 74], + [16, 151], + [-11, 46], + [-50, -12], + [-99, 26], + [24, -67], + [-103, 35], + [-49, -49], + [-107, 2], + [-28, 51], + [-77, -43], + [-58, -4] + ], + [ + [3565, 12586], + [30, 105], + [-71, 24], + [-18, 55], + [47, 91], + [6, 60], + [27, 77], + [79, -23], + [96, 43], + [82, -52], + [2, -57], + [110, -30], + [53, 9], + [72, -11], + [62, 71], + [0, 48], + [31, 88], + [93, 51], + [105, 33], + [81, -31], + [88, 54], + [33, -31], + [74, 36], + [46, -26], + [101, -11], + [79, 18], + [67, 45], + [109, 23], + [74, 32], + [82, 15], + [27, -25], + [-32, -48], + [-81, -33], + [11, -57], + [75, -109], + [50, 14], + [32, -69], + [-19, -60], + [60, -11], + [32, -77], + [89, -48] + ], + [ + [4844, 12552], + [-14, -39], + [61, -10], + [-43, -106], + [-49, -45], + [49, -34], + [5, -69], + [79, -29], + [16, -63], + [-43, -98], + [-74, -25], + [-89, 2], + [-48, -83], + [16, -69] + ], + [ + [4710, 11884], + [-10, -25], + [-80, 6], + [-10, 48], + [-62, 7], + [-59, -40], + [-69, -10], + [8, -39], + [-53, -32], + [-59, -1], + [-20, -77], + [-61, -88], + [0, -68], + [-33, -47] + ], + [ + [4202, 11518], + [-130, 14], + [-58, -43], + [-44, 53], + [-43, 4], + [37, 125], + [-40, 20] + ], + [ + [5840, 7597], + [-33, 61], + [-64, -2], + [-16, -34], + [-59, -17], + [-84, 65], + [-45, 51], + [-54, 5], + [-111, -52], + [-60, 93], + [-39, 40], + [34, 88], + [-6, 80], + [-58, 5], + [-123, 32], + [-82, -13], + [-19, -67], + [-79, -13] + ], + [ + [439, 11222], + [-45, 45], + [-44, 13], + [-20, 140], + [-150, 129], + [-11, 49], + [8, 85], + [52, -4], + [125, 74], + [36, 56], + [68, -81], + [33, 26], + [98, 13], + [31, 42], + [89, -33], + [101, 83], + [84, 14], + [79, -3], + [36, -30], + [82, -33], + [68, 8] + ], + [ + [5376, 11957], + [-7, 38], + [-64, 14], + [-82, -81], + [-116, -20], + [-45, -51], + [-27, 14], + [-75, -33], + [-2, -66], + [-69, -19], + [-47, 34], + [-24, -35] + ], + [ + [4818, 11752], + [-12, 56], + [-56, 15], + [-40, 61] + ], + [ + [5449, 12769], + [75, -28], + [144, -9], + [22, -19] + ], + [ + [5091, 11393], + [-54, -34], + [-26, -53], + [-23, -99], + [29, -36], + [-36, -35], + [130, -116], + [37, -4] + ], + [ + [5148, 11016], + [0, -45], + [44, -10] + ], + [ + [5192, 10961], + [-44, -55], + [-164, -36], + [-9, -68] + ], + [ + [4975, 10802], + [-41, 12], + [-109, -28], + [-43, -33], + [-138, 17], + [-34, 19], + [-78, -27], + [-71, 34] + ], + [ + [4461, 10796], + [-13, 173], + [78, 1] + ], + [ + [4526, 10970], + [78, -6], + [17, 66], + [29, 22], + [-4, 73], + [121, 107], + [-21, 92], + [-61, -5], + [21, 128], + [32, 52], + [100, 7] + ], + [ + [4838, 11506], + [55, -27], + [49, -65], + [132, 34], + [17, -55] + ], + [ + [4264, 10771], + [36, -22], + [67, -3], + [42, -42], + [37, -5], + [42, 35], + [-27, 62] + ], + [ + [4975, 10802], + [53, 6], + [21, -43], + [87, -63], + [25, 49], + [105, 37], + [44, 45] + ], + [ + [5310, 10833], + [-55, -58], + [9, -45], + [66, 3], + [25, -88], + [75, -17], + [-21, -104], + [29, -20], + [1, -73], + [-74, 29], + [10, -94] + ], + [ + [5621, 11640], + [-14, -57], + [22, -39], + [-63, -47], + [-26, 22], + [-75, -30], + [-8, -43], + [-43, -5], + [-1, -98], + [-80, 37], + [-55, -20], + [-21, -51], + [-61, 11], + [-57, 69], + [-48, 4] + ], + [ + [4838, 11506], + [-17, 144], + [-49, 29], + [-7, 41], + [53, 32] + ], + [ + [5273, 10926], + [22, -64], + [-51, 2], + [29, 62] + ], + [ + [5192, 10961], + [18, -84], + [100, -44] + ], + [ + [6014, 11466], + [11, -28], + [-176, -26], + [-44, -36], + [-131, -77], + [-128, -60], + [17, 75], + [-59, 39], + [-57, -11], + [-34, -48], + [-65, -16], + [-106, -61], + [3, -58], + [-40, 1], + [-57, -144] + ], + [ + [4202, 11518], + [8, -57], + [34, -43], + [48, -23], + [15, -73], + [64, -56], + [32, -185], + [91, -38], + [-11, -26], + [43, -47] + ] + ], + "transform": { + "scale": [0.001073088069254746, 0.0007855176853911107], + "translate": [6.630878925323543, 36.649860382080185] + }, + "objects": { + "italy": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-CH", + "NAME_0": "Italy", + "ID_1": 1, + "NAME_1": "Abruzzo", + "ID_2": 1, + "NAME_2": "Chieti", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[5, -3, 6, 7, 8, 9, 10]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-AQ", + "NAME_0": "Italy", + "ID_1": 1, + "NAME_1": "Abruzzo", + "ID_2": 2, + "NAME_2": "L'Aquila", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Aquila" + } + }, + { + "arcs": [[11, -4, -6, 12]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-PE", + "NAME_0": "Italy", + "ID_1": 1, + "NAME_1": "Abruzzo", + "ID_2": 3, + "NAME_2": "Pescara", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[13, -13, -11, 14, 15]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-TE", + "NAME_0": "Italy", + "ID_1": 1, + "NAME_1": "Abruzzo", + "ID_2": 4, + "NAME_2": "Teramo", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[16, 17, 18, 19, 20, 21]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-BA", + "NAME_0": "Italy", + "ID_1": 2, + "NAME_1": "Apulia", + "ID_2": 5, + "NAME_2": "Bari", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[22, -21, 23, 24]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-BT", + "NAME_0": "Italy", + "ID_1": 2, + "NAME_1": "Apulia", + "ID_2": 6, + "NAME_2": "Barletta-Andria-Trani", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[25, 26, 27, -17]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-BR", + "NAME_0": "Italy", + "ID_1": 2, + "NAME_1": "Apulia", + "ID_2": 7, + "NAME_2": "Brindisi", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-25, 28, 29, 30, 31, 32]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-FG", + "NAME_0": "Italy", + "ID_1": 2, + "NAME_1": "Apulia", + "ID_2": 8, + "NAME_2": "Foggia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[33, 34, -27]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-LE", + "NAME_0": "Italy", + "ID_1": 2, + "NAME_1": "Apulia", + "ID_2": 9, + "NAME_2": "Lecce", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-28, -35, 35, 36, -18]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-TA", + "NAME_0": "Italy", + "ID_1": 2, + "NAME_1": "Apulia", + "ID_2": 10, + "NAME_2": "Taranto", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Ionio|Tarent|Tarente" + } + }, + { + "arcs": [[-37, 37, 38, 39, -19]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-MT", + "NAME_0": "Italy", + "ID_1": 3, + "NAME_1": "Basilicata", + "ID_2": 11, + "NAME_2": "Matera", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-20, -40, 40, 41, 42, 43, -29, -24]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-PZ", + "NAME_0": "Italy", + "ID_1": 3, + "NAME_1": "Basilicata", + "ID_2": 12, + "NAME_2": "Potenza", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[44, 45, 46, 47, 48, 49]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-CZ", + "NAME_0": "Italy", + "ID_1": 4, + "NAME_1": "Calabria", + "ID_2": 13, + "NAME_2": "Catanzaro", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[50, 51, -49, 52, -41, -39]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-CS", + "NAME_0": "Italy", + "ID_1": 4, + "NAME_1": "Calabria", + "ID_2": 14, + "NAME_2": "Cosenza", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[53, -50, -52]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-KR", + "NAME_0": "Italy", + "ID_1": 4, + "NAME_1": "Calabria", + "ID_2": 15, + "NAME_2": "Crotone", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-46, 54, 55]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-RC", + "NAME_0": "Italy", + "ID_1": 4, + "NAME_1": "Calabria", + "ID_2": 16, + "NAME_2": "Reggio Di Calabria", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Reggio Calabria|Reggio de Calabre" + } + }, + { + "arcs": [[-56, 56, -47]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-VV", + "NAME_0": "Italy", + "ID_1": 4, + "NAME_1": "Calabria", + "ID_2": 17, + "NAME_2": "Vibo Valentia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-44, 57, 58, 59, -30]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-AV", + "NAME_0": "Italy", + "ID_1": 5, + "NAME_1": "Campania", + "ID_2": 18, + "NAME_2": "Avellino", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-60, 60, 61, 62, -31]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-BN", + "NAME_0": "Italy", + "ID_1": 5, + "NAME_1": "Campania", + "ID_2": 19, + "NAME_2": "Benevento", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Bénévent" + } + }, + { + "arcs": [[63, -62, 64, 65, 66, 67, 68]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-CE", + "NAME_0": "Italy", + "ID_1": 5, + "NAME_1": "Campania", + "ID_2": 20, + "NAME_2": "Caserta", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Caserte" + } + }, + { + "arcs": [[[69]], [[70, 71, -65, -61, -59]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 112, + "ISO": "IT-NA", + "NAME_0": "Italy", + "ID_1": 5, + "NAME_1": "Campania", + "ID_2": 21, + "NAME_2": "Napoli", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Napels|Nápoles|Neapel" + } + }, + { + "arcs": [[-43, 72, -71, -58]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-SA", + "NAME_0": "Italy", + "ID_1": 5, + "NAME_1": "Campania", + "ID_2": 22, + "NAME_2": "Salerno", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Salerne" + } + }, + { + "arcs": [[73, 74, 75, 76, 77, 78]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-BO", + "NAME_0": "Italy", + "ID_1": 6, + "NAME_1": "Emilia-Romagna", + "ID_2": 23, + "NAME_2": "Bologna", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Bologne|Bolonha|Bolonia" + } + }, + { + "arcs": [[79, 80, -74, 81, 82, 83]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-FE", + "NAME_0": "Italy", + "ID_1": 6, + "NAME_1": "Emilia-Romagna", + "ID_2": 24, + "NAME_2": "Ferrara", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Ferrare" + } + }, + { + "arcs": [[84, 85, 86, 87, 88, 89]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-FC", + "NAME_0": "Italy", + "ID_1": 6, + "NAME_1": "Emilia-Romagna", + "ID_2": 25, + "NAME_2": "Forli' - Cesena", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-82, -79, 90, 91, 92, 93]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-MO", + "NAME_0": "Italy", + "ID_1": 6, + "NAME_1": "Emilia-Romagna", + "ID_2": 26, + "NAME_2": "Modena", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Modène|Módena" + } + }, + { + "arcs": [[94, 95, 96, 97, 98, 99, 100]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-PR", + "NAME_0": "Italy", + "ID_1": 6, + "NAME_1": "Emilia-Romagna", + "ID_2": 27, + "NAME_2": "Parma", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Parme" + } + }, + { + "arcs": [[-100, 101, 102, 103, 104, 105]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-PC", + "NAME_0": "Italy", + "ID_1": 6, + "NAME_1": "Emilia-Romagna", + "ID_2": 28, + "NAME_2": "Piacenza", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Plaisance" + } + }, + { + "arcs": [[106, -90, 107, -75, -81]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-RA", + "NAME_0": "Italy", + "ID_1": 6, + "NAME_1": "Emilia-Romagna", + "ID_2": 29, + "NAME_2": "Ravenna", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "R vena|Ravenne" + } + }, + { + "arcs": [[-93, 108, 109, -96, 110]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-RE", + "NAME_0": "Italy", + "ID_1": 6, + "NAME_1": "Emilia-Romagna", + "ID_2": 30, + "NAME_2": "Reggio Nell'Emilia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Reggio d'Émilie" + } + }, + { + "arcs": [[111, 112, 113, -86, 114]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-RN", + "NAME_0": "Italy", + "ID_1": 6, + "NAME_1": "Emilia-Romagna", + "ID_2": 31, + "NAME_2": "Rimini", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[115, 116, 117, 118]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-GO", + "NAME_0": "Italy", + "ID_1": 7, + "NAME_1": "Friuli-Venezia Giulia", + "ID_2": 32, + "NAME_2": "Gorizia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Görz" + } + }, + { + "arcs": [[119, 120, 121, 122]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-PN", + "NAME_0": "Italy", + "ID_1": 7, + "NAME_1": "Friuli-Venezia Giulia", + "ID_2": 33, + "NAME_2": "Pordenone", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-116, 123]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-TS", + "NAME_0": "Italy", + "ID_1": 7, + "NAME_1": "Friuli-Venezia Giulia", + "ID_2": 34, + "NAME_2": "Trieste", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Triest" + } + }, + { + "arcs": [[-118, 124, 125, -123, 126, 127]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-UD", + "NAME_0": "Italy", + "ID_1": 7, + "NAME_1": "Friuli-Venezia Giulia", + "ID_2": 35, + "NAME_2": "Udine", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Friuli" + } + }, + { + "arcs": [[128, -68, 129, 130, -8]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-FR", + "NAME_0": "Italy", + "ID_1": 8, + "NAME_1": "Lazio", + "ID_2": 36, + "NAME_2": "Frosinone", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-130, -67, 131, 132]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-LT", + "NAME_0": "Italy", + "ID_1": 8, + "NAME_1": "Lazio", + "ID_2": 37, + "NAME_2": "Latina", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Littoria" + } + }, + { + "arcs": [[-15, -10, 133, 134, 135, 136, 137]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-RI", + "NAME_0": "Italy", + "ID_1": 8, + "NAME_1": "Lazio", + "ID_2": 38, + "NAME_2": "Rieti", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-9, -131, -133, 138, 139, -134]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-RM", + "NAME_0": "Italy", + "ID_1": 8, + "NAME_1": "Lazio", + "ID_2": 39, + "NAME_2": "Roma", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[140, -135, -140, 141, 142, 143]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-VT", + "NAME_0": "Italy", + "ID_1": 8, + "NAME_1": "Lazio", + "ID_2": 40, + "NAME_2": "Viterbo", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Viterbe" + } + }, + { + "arcs": [[-102, -99, 144, 145, 146, 147]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-GE", + "NAME_0": "Italy", + "ID_1": 9, + "NAME_1": "Liguria", + "ID_2": 41, + "NAME_2": "Genova", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Genoa" + } + }, + { + "arcs": [[148, 149, 150]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-IM", + "NAME_0": "Italy", + "ID_1": 9, + "NAME_1": "Liguria", + "ID_2": 42, + "NAME_2": "Imperia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Porto Maurizio" + } + }, + { + "arcs": [[151, 152, -145, -98]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-SP", + "NAME_0": "Italy", + "ID_1": 9, + "NAME_1": "Liguria", + "ID_2": 43, + "NAME_2": "La Spezia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Spezia" + } + }, + { + "arcs": [[-147, 153, -149, 154, 155, 156]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-SV", + "NAME_0": "Italy", + "ID_1": 9, + "NAME_1": "Liguria", + "ID_2": 44, + "NAME_2": "Savona", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[157, 158, 159, 160, 161, 162]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-BG", + "NAME_0": "Italy", + "ID_1": 10, + "NAME_1": "Lombardia", + "ID_2": 45, + "NAME_2": "Bergamo", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Bergame" + } + }, + { + "arcs": [[163, 164, 165, 166, -158, 167]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-BS", + "NAME_0": "Italy", + "ID_1": 10, + "NAME_1": "Lombardia", + "ID_2": 46, + "NAME_2": "Brescia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[168, 169, 170, 171, 172]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-CO", + "NAME_0": "Italy", + "ID_1": 10, + "NAME_1": "Lombardia", + "ID_2": 47, + "NAME_2": "Como", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Côme" + } + }, + { + "arcs": [[-167, 173, -101, -106, 174, 175, -159]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-CR", + "NAME_0": "Italy", + "ID_1": 10, + "NAME_1": "Lombardia", + "ID_2": 48, + "NAME_2": "Cremona", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Crémone" + } + }, + { + "arcs": [[-162, 176, -169, 177]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-LC", + "NAME_0": "Italy", + "ID_1": 10, + "NAME_1": "Lombardia", + "ID_2": 49, + "NAME_2": "Lecco", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-175, -105, 178, 179]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-LO", + "NAME_0": "Italy", + "ID_1": 10, + "NAME_1": "Lombardia", + "ID_2": 50, + "NAME_2": "Lodi", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[180, -83, -94, -111, -95, -174, -166, 181]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-MN", + "NAME_0": "Italy", + "ID_1": 10, + "NAME_1": "Lombardia", + "ID_2": 51, + "NAME_2": "Mantua", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Mantoue|Mantova" + } + }, + { + "arcs": [[182, -160, -176, -180, 183, 184, 185]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-MI", + "NAME_0": "Italy", + "ID_1": 10, + "NAME_1": "Lombardia", + "ID_2": 52, + "NAME_2": "Milano", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Milan" + } + }, + { + "arcs": [[-161, -183, 186, -170, -177]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-MB", + "NAME_0": "Italy", + "ID_1": 10, + "NAME_1": "Lombardia", + "ID_2": 53, + "NAME_2": "Monza and Brianza", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Monza e Brianza" + } + }, + { + "arcs": [[-179, -104, 187, 188, 189, -184]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-PV", + "NAME_0": "Italy", + "ID_1": 10, + "NAME_1": "Lombardia", + "ID_2": 54, + "NAME_2": "Pavia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Pavie" + } + }, + { + "arcs": [[190, 191, -168, -163, -178, -173, 192]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-SO", + "NAME_0": "Italy", + "ID_1": 10, + "NAME_1": "Lombardia", + "ID_2": 55, + "NAME_2": "Sondrio", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-171, -187, -186, 193, 194, 195]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-VA", + "NAME_0": "Italy", + "ID_1": 10, + "NAME_1": "Lombardia", + "ID_2": 56, + "NAME_2": "Varese", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[196, 197, 198, 199]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-AN", + "NAME_0": "Italy", + "ID_1": 11, + "NAME_1": "Marche", + "ID_2": 57, + "NAME_2": "Ancona", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Ancône" + } + }, + { + "arcs": [[200, -16, -138, 201, 202, 203]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-AP", + "NAME_0": "Italy", + "ID_1": 11, + "NAME_1": "Marche", + "ID_2": 58, + "NAME_2": "Ascoli Piceno", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-204, 204, 205]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-FM", + "NAME_0": "Italy", + "ID_1": 11, + "NAME_1": "Marche", + "ID_2": 59, + "NAME_2": "Fermo", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[206, -205, -203, 207, -197]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-MC", + "NAME_0": "Italy", + "ID_1": 11, + "NAME_1": "Marche", + "ID_2": 60, + "NAME_2": "Macerata", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-199, 208, 209, -87, -114, 210, -112, 211]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-PU", + "NAME_0": "Italy", + "ID_1": 11, + "NAME_1": "Marche", + "ID_2": 61, + "NAME_2": "Pesaro E Urbino", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Pesaro-et-Urbino|Pesaro-Urbino|Pésaro y Urbino" + } + }, + { + "arcs": [[-32, -63, -64, 212, -1, 213]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-CB", + "NAME_0": "Italy", + "ID_1": 12, + "NAME_1": "Molise", + "ID_2": 62, + "NAME_2": "Campobasso", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-213, -69, -129, -7, -2]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-IS", + "NAME_0": "Italy", + "ID_1": 12, + "NAME_1": "Molise", + "ID_2": 63, + "NAME_2": "Isernia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-188, -103, -148, -157, 214, 215, 216]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-AL", + "NAME_0": "Italy", + "ID_1": 13, + "NAME_1": "Piemonte", + "ID_2": 64, + "NAME_2": "Alessandria", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Alejandr¡a|Alexandrie" + } + }, + { + "arcs": [[-156, 217, 218, -215]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-AT", + "NAME_0": "Italy", + "ID_1": 13, + "NAME_1": "Piemonte", + "ID_2": 65, + "NAME_2": "Asti", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[219, 220, 221]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-BI", + "NAME_0": "Italy", + "ID_1": 13, + "NAME_1": "Piemonte", + "ID_2": 66, + "NAME_2": "Biella", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Verceil" + } + }, + { + "arcs": [[-155, -151, 222, 223, -218]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-CN", + "NAME_0": "Italy", + "ID_1": 13, + "NAME_1": "Piemonte", + "ID_2": 67, + "NAME_2": "Cuneo", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Coni" + } + }, + { + "arcs": [[-194, -185, -190, 224, 225]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-NO", + "NAME_0": "Italy", + "ID_1": 13, + "NAME_1": "Piemonte", + "ID_2": 68, + "NAME_2": "Novara", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Novare" + } + }, + { + "arcs": [[-220, 226, -216, -219, -224, 227, 228]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-TO", + "NAME_0": "Italy", + "ID_1": 13, + "NAME_1": "Piemonte", + "ID_2": 69, + "NAME_2": "Torino", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Torino|Turim" + } + }, + { + "arcs": [[-195, -226, 229, 230, 231]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-VB", + "NAME_0": "Italy", + "ID_1": 13, + "NAME_1": "Piemonte", + "ID_2": 70, + "NAME_2": "Verbano-Cusio-Ossola", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Verbania" + } + }, + { + "arcs": [[-225, -189, -217, -227, -222, 232, -230]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-VC", + "NAME_0": "Italy", + "ID_1": 13, + "NAME_1": "Piemonte", + "ID_2": 71, + "NAME_2": "Vercelli", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Verceil" + } + }, + { + "arcs": [[233, 234, 235, 236, 237]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-CA", + "NAME_0": "Italy", + "ID_1": 14, + "NAME_1": "Sardegna", + "ID_2": 72, + "NAME_2": "Cagliari", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[238]], [[239]], [[-236, 240, 241]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 112, + "ISO": "IT-CI", + "NAME_0": "Italy", + "ID_1": 14, + "NAME_1": "Sardegna", + "ID_2": 73, + "NAME_2": "Carbonia-Iglesias", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-237, -242, 242, 243, 244]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-VS", + "NAME_0": "Italy", + "ID_1": 14, + "NAME_1": "Sardegna", + "ID_2": 74, + "NAME_2": "Medio Campidano", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[245, -238, -245, 246, 247, 248, 249]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-NU", + "NAME_0": "Italy", + "ID_1": 14, + "NAME_1": "Sardegna", + "ID_2": 75, + "NAME_2": "Nuoro", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-234, -246, 250]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-OG", + "NAME_0": "Italy", + "ID_1": 14, + "NAME_1": "Sardegna", + "ID_2": 76, + "NAME_2": "Ogliastra", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[-249, 251, 252]], [[253]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 112, + "ISO": "IT-OT", + "NAME_0": "Italy", + "ID_1": 14, + "NAME_1": "Sardegna", + "ID_2": 77, + "NAME_2": "Olbia-Tempio", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-247, -244, 254, 255]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-OR", + "NAME_0": "Italy", + "ID_1": 14, + "NAME_1": "Sardegna", + "ID_2": 78, + "NAME_2": "Oristano", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[-252, -248, -256, 256]], [[257]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 112, + "ISO": "IT-SS", + "NAME_0": "Italy", + "ID_1": 14, + "NAME_1": "Sardegna", + "ID_2": 79, + "NAME_2": "Sassari", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[258, 259, 260, 261]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-AG", + "NAME_0": "Italy", + "ID_1": 15, + "NAME_1": "Sicily", + "ID_2": 80, + "NAME_2": "Agrigento", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Agrigente|Girgenti" + } + }, + { + "arcs": [[[262]], [[263, 264, 265, 266, -259, 267]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 112, + "ISO": "IT-CL", + "NAME_0": "Italy", + "ID_1": 15, + "NAME_1": "Sicily", + "ID_2": 81, + "NAME_2": "Caltanissetta", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[268, 269, 270, -265, 271, 272]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-CT", + "NAME_0": "Italy", + "ID_1": 15, + "NAME_1": "Sicily", + "ID_2": 82, + "NAME_2": "Catania", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Catane" + } + }, + { + "arcs": [[-272, -264, 273, 274]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-EN", + "NAME_0": "Italy", + "ID_1": 15, + "NAME_1": "Sicily", + "ID_2": 83, + "NAME_2": "Enna", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[-273, -275, 275, 276]], [[277]], [[278]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 112, + "ISO": "IT-ME", + "NAME_0": "Italy", + "ID_1": 15, + "NAME_1": "Sicily", + "ID_2": 84, + "NAME_2": "Messina", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Messine" + } + }, + { + "arcs": [[-276, -274, -268, -262, 279, 280], [-263]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-PA", + "NAME_0": "Italy", + "ID_1": 15, + "NAME_1": "Sicily", + "ID_2": 85, + "NAME_2": "Palermo", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Palerme" + } + }, + { + "arcs": [[281, -266, -271, 282]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-RG", + "NAME_0": "Italy", + "ID_1": 15, + "NAME_1": "Sicily", + "ID_2": 86, + "NAME_2": "Ragusa", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Raguse" + } + }, + { + "arcs": [[283, -283, -270]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-SR", + "NAME_0": "Italy", + "ID_1": 15, + "NAME_1": "Sicily", + "ID_2": 87, + "NAME_2": "Syracuse", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Siracusa|Syrakus" + } + }, + { + "arcs": [[[284]], [[285]], [[-280, -261, 286]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 112, + "ISO": "IT-TP", + "NAME_0": "Italy", + "ID_1": 15, + "NAME_1": "Sicily", + "ID_2": 88, + "NAME_2": "Trapani", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-210, 287, 288, 289, -88]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-AR", + "NAME_0": "Italy", + "ID_1": 16, + "NAME_1": "Toscana", + "ID_2": 89, + "NAME_2": "Arezzo", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-108, -89, -290, 290, 291, 292, 293, 294, -76]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-FI", + "NAME_0": "Italy", + "ID_1": 16, + "NAME_1": "Toscana", + "ID_2": 90, + "NAME_2": "Florence", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Firenze|Florenca|Florencia|Florenz" + } + }, + { + "arcs": [[-143, 295, 296, 297, 298]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-GR", + "NAME_0": "Italy", + "ID_1": 16, + "NAME_1": "Toscana", + "ID_2": 91, + "NAME_2": "Grosseto", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[299]], [[-297, 300, 301]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 112, + "ISO": "IT-LI", + "NAME_0": "Italy", + "ID_1": 16, + "NAME_1": "Toscana", + "ID_2": 92, + "NAME_2": "Livorno", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Leghorn|Liorna|Livourne" + } + }, + { + "arcs": [[-92, 302, -293, 303, 304, 305, -109]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-LU", + "NAME_0": "Italy", + "ID_1": 16, + "NAME_1": "Toscana", + "ID_2": 93, + "NAME_2": "Lucca", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Lucques" + } + }, + { + "arcs": [[-110, -306, 306, -152, -97]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-MS", + "NAME_0": "Italy", + "ID_1": 16, + "NAME_1": "Toscana", + "ID_2": 94, + "NAME_2": "Massa Carrara", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Apuania|Massa-Carrare|Massa e Carrara" + } + }, + { + "arcs": [[-292, 307, -298, -302, 308, -304]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-PI", + "NAME_0": "Italy", + "ID_1": 16, + "NAME_1": "Toscana", + "ID_2": 95, + "NAME_2": "Pisa", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Pise" + } + }, + { + "arcs": [[-78, 309, -294, -303, -91]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-PT", + "NAME_0": "Italy", + "ID_1": 16, + "NAME_1": "Toscana", + "ID_2": 96, + "NAME_2": "Pistoia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-295, -310, -77]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-PO", + "NAME_0": "Italy", + "ID_1": 16, + "NAME_1": "Toscana", + "ID_2": 97, + "NAME_2": "Prato", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[310, 311, -144, -299, -308, -291, -289]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-SI", + "NAME_0": "Italy", + "ID_1": 16, + "NAME_1": "Toscana", + "ID_2": 98, + "NAME_2": "Siena", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Sienne" + } + }, + { + "arcs": [[312, 313, -191, 314]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-BZ", + "NAME_0": "Italy", + "ID_1": 17, + "NAME_1": "Trentino-Alto Adige", + "ID_2": 99, + "NAME_2": "Bolzano", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Bozen|Südtirol|Alto Adige" + } + }, + { + "arcs": [[315, 316, 317, -164, -192, -314]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-TN", + "NAME_0": "Italy", + "ID_1": 17, + "NAME_1": "Trentino-Alto Adige", + "ID_2": 100, + "NAME_2": "Trento", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Trente|Trient" + } + }, + { + "arcs": [[-198, -208, -202, -137, 318, -311, -288, -209]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-PG", + "NAME_0": "Italy", + "ID_1": 18, + "NAME_1": "Umbria", + "ID_2": 101, + "NAME_2": "Perugia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Pérouse|Perúgia" + } + }, + { + "arcs": [[-136, -141, -312, -319]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-TR", + "NAME_0": "Italy", + "ID_1": 18, + "NAME_1": "Umbria", + "ID_2": 102, + "NAME_2": "Terni", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-231, -233, -221, -229, 319]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-AO", + "NAME_0": "Italy", + "ID_1": 19, + "NAME_1": "Valle d'Aosta", + "ID_2": 103, + "NAME_2": "Aosta", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Aoste|Val d'Aosta, Valle d'Aosta" + } + }, + { + "arcs": [[-127, -122, 320, 321, -316, -313, 322]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-BL", + "NAME_0": "Italy", + "ID_1": 20, + "NAME_1": "Veneto", + "ID_2": 104, + "NAME_2": "Belluno", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[323, 324, 325, 326, 327, 328, 329]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-PD", + "NAME_0": "Italy", + "ID_1": 20, + "NAME_1": "Veneto", + "ID_2": 105, + "NAME_2": "Padua", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Padoue|Padova" + } + }, + { + "arcs": [[-84, -181, 330, -327, 331, 332]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-RO", + "NAME_0": "Italy", + "ID_1": 20, + "NAME_1": "Veneto", + "ID_2": 106, + "NAME_2": "Rovigo", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-121, 333, -330, 334, -321]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-TV", + "NAME_0": "Italy", + "ID_1": 20, + "NAME_1": "Veneto", + "ID_2": 107, + "NAME_2": "Treviso", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Trévise" + } + }, + { + "arcs": [[[335]], [[-332, -326, 336]], [[-126, 337, -324, -334, -120]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 112, + "ISO": "IT-VE", + "NAME_0": "Italy", + "ID_1": 20, + "NAME_1": "Veneto", + "ID_2": 108, + "NAME_2": "Venezia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Venecia|Venedig|Veneza|Venezia|Venise|" + } + }, + { + "arcs": [[338, -328, -331, -182, -165, -318]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-VR", + "NAME_0": "Italy", + "ID_1": 20, + "NAME_1": "Veneto", + "ID_2": 109, + "NAME_2": "Verona", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Vérone" + } + }, + { + "arcs": [[-322, -335, -329, -339, -317]], + "type": "Polygon", + "properties": { + "ID_0": 112, + "ISO": "IT-VI", + "NAME_0": "Italy", + "ID_1": 20, + "NAME_1": "Veneto", + "ID_2": 110, + "NAME_2": "Vicenza", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Vicence" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/japan-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/japan-topo.json new file mode 100644 index 000000000000..5057ec45013e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/japan-topo.json @@ -0,0 +1,7724 @@ +{ + "type": "Topology", + "arcs": [ + [ + [28965, 25896], + [-20, -106], + [52, -51], + [0, -49], + [77, 26], + [49, -1], + [43, 43], + [115, 7], + [10, -21], + [74, -4], + [22, -38], + [84, 26] + ], + [ + [29471, 25728], + [4, -41], + [-35, -54], + [45, -25], + [-17, -54], + [-34, -24], + [8, -45], + [-47, -23], + [-27, -61], + [-54, -43], + [-66, -88], + [-3, -102], + [-55, -60], + [-38, -12], + [-35, -114], + [-84, -51], + [-19, -43], + [-43, 5], + [-116, -41], + [-34, -63], + [8, -48], + [-32, -26], + [-4, -50], + [30, -135], + [-10, -38] + ], + [ + [28813, 24492], + [-164, -31], + [-139, -35], + [-264, -83], + [-120, -47], + [-111, 0], + [-93, -26], + [-42, 0], + [94, 185], + [109, -55], + [51, 22], + [121, 77], + [116, 44], + [-5, 46], + [42, 32], + [72, 5], + [4, 88], + [15, 23], + [-38, 54], + [-44, 18], + [-53, -18], + [-74, 33], + [-27, -36], + [-38, 4], + [-31, -48], + [-49, -6], + [-72, 21], + [-55, -35], + [-40, 23], + [-77, -17], + [-86, 101], + [-53, 24], + [-44, 57], + [-39, -203], + [68, -69], + [30, -13], + [18, -64], + [-61, -13], + [-110, 48], + [-53, 39], + [-40, 63], + [28, 62], + [23, 105], + [-19, 56], + [-65, 76], + [-9, 162], + [50, 77], + [44, 96], + [51, 60], + [-32, 53], + [-74, -137], + [-77, -3], + [-13, -32], + [-114, 34] + ], + [ + [27324, 25309], + [-11, 16], + [-53, 192], + [-48, 21], + [-18, 38] + ], + [ + [27194, 25576], + [16, 81], + [6, 130], + [66, 104], + [26, 23], + [77, 158], + [55, 10], + [74, -25], + [84, 36], + [83, 12], + [82, 42], + [12, 44], + [41, -13], + [53, -66], + [77, -36], + [-2, -62], + [33, -5], + [7, -61], + [27, -31], + [82, -1], + [108, -60], + [42, -39], + [106, 39], + [49, 47], + [63, 2], + [56, -39], + [12, -30], + [59, 4], + [24, -38], + [99, -48], + [125, 88], + [48, 47], + [81, 7] + ], + [ + [33773, 36978], + [129, -83], + [21, -36], + [-4, -134], + [-39, -91], + [-64, -39], + [-122, 30], + [-58, 42], + [41, 96], + [-23, 51], + [41, 33], + [23, 51], + [30, 14], + [25, 66] + ], + [ + [35686, 37328], + [-40, -52], + [-43, -6], + [-52, -82], + [-47, -31], + [39, -43], + [-22, -41], + [8, -99], + [-53, -41], + [13, -70], + [-13, -89], + [-2, -113], + [24, -91], + [38, -79], + [-59, -42], + [-49, 43], + [-82, -40], + [7, -96], + [113, -59], + [-5, -27], + [-78, -106], + [-39, -13], + [24, -65], + [42, -40], + [13, -98], + [-29, -41], + [-8, -50], + [-41, -14], + [-61, -78], + [-49, -32], + [27, -43], + [-54, -101], + [-2, -42], + [-66, -56], + [5, -73], + [-46, -11], + [-5, -59], + [39, -9], + [26, -84], + [34, -29], + [-15, -84], + [53, -68], + [60, -31], + [61, -60], + [-34, -28], + [-8, -48], + [65, -19], + [-88, -124], + [27, -20], + [-28, -89], + [97, -34], + [15, -36], + [-29, -63], + [-51, -63], + [-9, -37], + [18, -68] + ], + [ + [35327, 34354], + [-92, -31], + [-24, -40], + [-60, -24], + [-61, -64], + [-93, -6], + [-84, -27], + [-27, 17] + ], + [ + [34886, 34179], + [-24, 40], + [-66, -10], + [-45, 48], + [-42, 11], + [-23, 58], + [-7, 70], + [-29, 36], + [-106, 7], + [-31, 45], + [-67, 47], + [-28, -36], + [-116, 30], + [-44, -11], + [-65, 20], + [1, 52], + [-104, -15], + [-101, 73], + [-50, 8], + [-23, 61], + [2, 46], + [-98, -22], + [-59, -36], + [-231, 31] + ], + [ + [33530, 34732], + [26, 31], + [43, 105], + [-23, 81], + [42, 83], + [3, 62], + [25, 29], + [76, 13], + [37, 62], + [62, 156], + [54, 239], + [25, 171], + [15, 209], + [-11, 157], + [-41, 90], + [7, 49], + [-34, 86], + [-40, 61], + [-109, 93], + [46, 70], + [84, -23], + [40, -65], + [25, 1], + [14, 86], + [-20, 37], + [39, 53], + [15, 66], + [4, 120], + [-34, 67], + [-136, 62], + [-57, -88], + [-19, -49], + [-42, -31], + [28, -39], + [-22, -42], + [-15, -80], + [48, -28], + [22, -80], + [-27, -34], + [-76, 25], + [-84, -12], + [-24, -23], + [15, -49], + [-80, -19], + [-57, 22], + [-70, -25], + [-38, 53], + [-3, 58], + [-37, 14], + [-29, 71], + [-15, 87], + [59, 5], + [83, -15], + [65, -42], + [103, 39], + [112, 109], + [79, 126], + [76, 190], + [21, 127], + [16, 10], + [36, 173], + [5, 142], + [-23, 42], + [-62, 30], + [-5, 25], + [-65, 38], + [-20, 35] + ], + [ + [33662, 37748], + [126, 8], + [39, -30], + [26, 78], + [57, 28], + [75, -25], + [22, -44], + [127, 2], + [103, -15], + [49, 21], + [87, 13], + [86, -16], + [50, 89], + [61, 16], + [71, -6], + [27, -75], + [80, 0], + [50, -46], + [44, 3], + [50, -27], + [73, 39], + [61, -29], + [44, -46], + [87, 36], + [13, 20], + [76, 4], + [73, 55], + [71, -9], + [11, 78], + [75, 55], + [46, -24], + [-1, -179], + [108, 5], + [107, 16], + [28, -165], + [-42, -24], + [-56, -133], + [20, -93] + ], + [ + [32509, 40272], + [44, -1], + [-6, -49], + [-68, -14], + [-9, 45], + [39, 19] + ], + [ + [37125, 37794], + [-28, -35], + [-141, -54], + [-29, -38], + [0, -51], + [-90, -61], + [-125, 69], + [-68, -8], + [-113, -72], + [-60, -26], + [-33, 70], + [-35, 26], + [-62, -57], + [-42, 5], + [-132, -97], + [-42, 4], + [-72, -22], + [-75, -45], + [15, -44], + [-65, -22], + [-39, -43], + [-102, -35], + [-55, 9], + [-46, 61] + ], + [ + [33662, 37748], + [26, 162], + [-19, 125], + [-44, 76], + [-101, -1], + [-14, 67], + [128, 70], + [80, 89], + [75, 131], + [127, 62], + [83, -55], + [80, 12], + [92, 70], + [94, 15], + [42, 54], + [59, 138], + [43, 182], + [13, 180], + [40, -52], + [34, -12], + [30, 71], + [-100, 64], + [-8, 80], + [-72, 72], + [75, 58], + [29, 97], + [-7, 109], + [23, 56], + [93, -53], + [81, -97], + [58, -29], + [91, 28], + [39, 58], + [42, 17], + [117, -39], + [72, -85], + [-24, -172], + [42, -230], + [70, -285], + [32, -55], + [61, -50], + [109, 0], + [116, 87], + [51, 86], + [-4, 78], + [-18, 32], + [35, 123], + [34, 0], + [54, -37], + [51, 0], + [77, -90], + [-18, -49], + [61, 1], + [60, -37], + [45, -4], + [36, -61], + [42, -33], + [91, 18], + [73, 79], + [63, 119], + [41, 146], + [17, 185], + [48, 59], + [13, 55], + [-28, 89], + [-66, 107], + [-84, 77], + [-57, 1], + [-95, -150], + [-78, -31], + [-41, -40], + [-75, 31], + [-71, 6], + [-61, -55], + [-142, -18], + [-85, -40], + [-36, -43], + [-64, 1], + [-27, 23], + [-10, 125], + [42, 80], + [-12, 52], + [33, 61], + [41, 137], + [34, 155], + [65, 71], + [74, 117], + [12, 40], + [-23, 42], + [53, 27], + [55, -30], + [56, -61], + [81, -29], + [82, 0], + [76, -41], + [80, -70], + [98, -108], + [92, -55], + [67, -22], + [77, -7], + [63, 17], + [105, 48], + [112, 101], + [19, -78], + [-45, -100], + [-68, -256], + [-27, -138], + [9, -100], + [-4, -103], + [-17, -185], + [4, -161], + [19, -206], + [32, -207], + [69, -273], + [74, -180], + [136, -70], + [25, 30], + [105, -86], + [37, -60], + [93, -74] + ], + [ + [35513, 26898], + [-15, -41], + [-97, 26], + [-124, -45], + [-106, 19], + [-98, -37], + [-59, -38], + [-142, -110], + [-94, -89], + [-90, -115], + [-63, -104], + [-55, -160], + [-8, -108], + [10, -89], + [37, -66], + [-26, -60], + [8, -94], + [-23, -79], + [-38, -54], + [-36, 11], + [-40, -38], + [-20, -51], + [-55, 13], + [-16, -34], + [-84, -5], + [-21, -39], + [-59, -9], + [-75, 24], + [-86, -10], + [-34, -27], + [-4, -40], + [-69, -79], + [-34, 8], + [-115, -73], + [-35, -41], + [-39, -102], + [5, -57], + [-41, -56], + [-80, -30], + [-114, -4], + [-38, 19], + [2, 52], + [-88, 54], + [-43, 4], + [-9, 46], + [62, -12], + [67, 13], + [19, 29], + [58, 13], + [-12, 62], + [-58, 33], + [17, 32], + [-25, 32], + [46, 48], + [-35, 61], + [27, 39], + [-38, 55], + [-6, 52], + [16, 50], + [92, 57], + [-5, 54], + [-41, 58], + [-5, 48], + [-52, 56], + [8, 65], + [57, 30], + [100, 25], + [7, 48], + [-18, 77], + [47, 40], + [56, 5], + [35, 61], + [46, 0], + [36, 25], + [105, 147], + [64, 27], + [-21, 98], + [-136, 138], + [-53, -5], + [-5, 51], + [-64, -12], + [-45, 66] + ], + [ + [33648, 26856], + [-25, 55], + [-43, 50], + [-5, 80], + [-35, 30] + ], + [ + [33540, 27071], + [35, 25], + [0, 74], + [23, 53], + [-51, 114], + [-57, 65], + [-61, 127], + [-5, 99], + [-45, 46], + [-27, 87] + ], + [ + [33352, 27761], + [42, -2], + [34, -80], + [109, -104], + [37, -70], + [90, -40], + [3, -53], + [122, -81], + [34, 3], + [104, -58], + [109, -27], + [59, -69], + [123, 41], + [65, -12], + [60, 38], + [80, -22], + [87, 78], + [80, 26], + [42, -6], + [80, 30], + [108, -50], + [92, 4], + [114, -92], + [124, -26], + [43, -28], + [69, -117], + [107, -73], + [144, -73] + ], + [ + [19228, 22959], + [-16, -14], + [2, -94], + [-19, -20], + [-83, -5], + [-9, 40], + [125, 93] + ], + [ + [21106, 23032], + [33, -26], + [95, -13], + [61, -33] + ], + [ + [21295, 22960], + [-29, -66], + [27, -48], + [0, -101], + [-22, -60], + [-35, -28] + ], + [ + [21236, 22657], + [-59, -16], + [-47, 16], + [-48, -33], + [-51, 33], + [-38, -21], + [-23, -41], + [-57, -59], + [-52, 17], + [-66, -6], + [-40, 14], + [-50, -32], + [-80, 13], + [-52, -40], + [-76, 35], + [-40, -14], + [-22, -71], + [-70, -29], + [-54, 32], + [-26, -68], + [-37, -26], + [-2, -51], + [-76, -88], + [-28, -81], + [-61, -10], + [-15, -40], + [19, -62], + [-47, -32], + [-19, -46], + [29, -28], + [4, -50], + [-36, -27], + [-58, -87], + [-1, -26], + [-120, -33], + [-164, 10], + [-55, 15], + [-73, -40], + [35, -31], + [16, -92], + [35, -19], + [23, -71], + [45, -14], + [35, -57], + [-12, -57], + [-81, -44], + [-121, -42], + [-31, -50], + [-18, -113], + [-44, -2], + [-43, -80], + [-59, -70], + [-68, 40], + [-77, 62], + [-14, -28], + [27, -86], + [68, -55], + [12, -52], + [-23, -68], + [41, -58], + [15, -148], + [-6, -48], + [-41, -11], + [-6, -37] + ], + [ + [19253, 20454], + [-38, 10], + [-69, -28], + [-31, 20], + [-3, 41], + [-154, 20], + [27, -68], + [-18, -38], + [-81, 0], + [-11, 72], + [48, 20], + [-28, 43], + [6, 41], + [53, -8], + [-19, 74], + [-70, 94], + [24, 66], + [-28, 27], + [54, 70], + [12, 39], + [-85, 10], + [-42, 39], + [15, 63], + [95, -48], + [47, 112], + [56, 6], + [12, 38], + [-67, 60], + [-49, 25], + [-13, 42], + [53, 42], + [-82, 28], + [-88, -34], + [-106, 49], + [15, 30], + [63, 36], + [-36, 28], + [-22, 53], + [31, 17], + [-22, 52], + [61, 58], + [-1, 35], + [-72, 9], + [-55, 22], + [-88, 2], + [-48, -60], + [-53, -14], + [-34, -36], + [-110, -32], + [-72, -82], + [-75, -32], + [16, 66], + [-64, 15], + [78, 54], + [116, 65], + [84, -11], + [32, 47], + [50, 8], + [175, 98], + [62, 46], + [75, 39], + [21, 50], + [97, 113], + [234, 101], + [116, 95], + [38, 95], + [44, 39], + [-20, 64], + [-1, 70], + [23, 72], + [-5, 61], + [25, 67], + [43, -8], + [43, 19], + [26, 81], + [2, 66], + [25, 72], + [32, 7], + [119, 106], + [121, 23], + [25, 66], + [-16, 51], + [60, 18], + [57, -48], + [48, -76], + [31, -15], + [90, -203], + [68, -78], + [49, -2], + [2, -47], + [118, 55], + [93, 18], + [33, 25], + [10, 41], + [60, -4], + [118, 29], + [21, -28], + [71, 26], + [74, -7], + [121, -42], + [57, 9], + [48, 29], + [-4, 41], + [110, 87] + ], + [ + [19996, 23388], + [59, -9], + [67, -78], + [-78, -58], + [-36, -46], + [-46, -10], + [-1, 66], + [42, 51], + [-40, 45], + [33, 39] + ], + [ + [20142, 23478], + [30, -91], + [-85, -6], + [-48, 80], + [73, 26], + [30, -9] + ], + [ + [20227, 23581], + [25, -54], + [-67, -32], + [1, 54], + [41, 32] + ], + [ + [20379, 23607], + [15, -23], + [-58, -56], + [-20, 28], + [63, 51] + ], + [ + [19958, 23621], + [21, -7], + [52, -92], + [-9, -92], + [-94, -10], + [-85, -43], + [-25, 44], + [16, 31], + [69, 2], + [9, 57], + [-27, 86], + [73, 24] + ], + [ + [26348, 28224], + [58, -73], + [63, -20], + [48, -58], + [25, -118], + [42, -35], + [91, 11], + [65, -72], + [48, -4], + [35, 39], + [103, -16], + [38, 17], + [77, -55], + [45, -48], + [64, -36], + [24, -59], + [78, 11], + [112, 35] + ], + [ + [27364, 27743], + [22, -47], + [-50, -35], + [-25, -132], + [50, -35], + [-5, -50], + [79, -27], + [-12, -46], + [76, -72], + [19, -94], + [-63, -44], + [-6, -52], + [-35, -35], + [-36, 27], + [-75, -12], + [-34, -32], + [-168, -8], + [-51, 17], + [-49, -41], + [-82, 20], + [-64, -47], + [-23, 23], + [-107, -2], + [-98, 45], + [-109, -50], + [-1, -93], + [-33, -66], + [-67, -91] + ], + [ + [26417, 26764], + [-151, 59], + [-30, 31], + [-46, -14], + [-53, -63], + [32, -29], + [19, -72], + [33, -67], + [-14, -71], + [-111, 30], + [-12, -63], + [-73, -58], + [-80, 7], + [-46, -83], + [-46, -10], + [-77, 74], + [-46, -83], + [-21, -127], + [-38, -55], + [-57, -27], + [-35, 39], + [-66, 0], + [-6, -48], + [-37, -10], + [-45, -71] + ], + [ + [25411, 26053], + [-100, -2], + [-37, -22], + [-152, 56], + [-174, 18], + [-13, 84], + [-41, 20], + [-91, 96], + [30, 96], + [-53, 40], + [42, 86] + ], + [ + [24822, 26525], + [3, -44], + [54, -30], + [27, -70], + [36, -13], + [84, 9], + [110, 102], + [20, -65], + [-31, -44], + [55, -22], + [91, 30], + [70, -1], + [31, 87], + [-68, -24], + [0, 46], + [-52, 21], + [47, 46], + [70, -6], + [17, -56], + [34, 16], + [42, -53], + [42, 24], + [14, 36], + [61, 62], + [8, 72], + [72, 11], + [33, -14], + [106, 28], + [39, 50], + [-45, 30], + [28, 68], + [-15, 60], + [47, 85], + [51, 35], + [50, -135], + [-38, -56], + [60, -57], + [35, 11], + [12, 94], + [38, 52], + [3, 121], + [-69, 120], + [-140, 136], + [7, 105], + [-71, 86], + [-8, 28], + [30, 52], + [39, 24], + [36, 61], + [54, 143], + [31, 51], + [80, 62], + [-3, 23], + [85, 131], + [-25, 67], + [85, 1], + [89, 51], + [65, 52] + ], + [ + [14865, 22740], + [-34, -64], + [-40, 13], + [-6, 40], + [80, 11] + ], + [ + [16326, 22029], + [-18, -52], + [27, -49], + [-3, -52], + [-33, -29], + [13, -45], + [-53, -13], + [-139, 2], + [-98, 27], + [-93, -23], + [-99, -65], + [-6, -29], + [-57, -41], + [-17, -49], + [-13, -114], + [-50, -12], + [-17, -84], + [29, -93], + [-14, -63], + [-52, -26], + [-12, -38], + [36, -18], + [-3, -60], + [79, -47], + [-15, -88], + [-28, -73], + [-35, -25] + ], + [ + [15655, 20870], + [-28, 0], + [-144, 62], + [-48, 49], + [-129, -14], + [-22, -92], + [-85, 0], + [-65, 17], + [-33, -52], + [-74, -62], + [-56, -33], + [31, -82], + [-13, -23], + [-79, -9], + [-136, 16] + ], + [ + [14774, 20647], + [43, 54], + [5, 53], + [-23, 75], + [-32, 49], + [-50, 31], + [2, 42], + [-37, 20] + ], + [ + [14682, 20971], + [17, 121], + [59, 102], + [90, 58], + [96, 82], + [51, 84], + [51, -3], + [9, 52], + [2, 126], + [-8, 43], + [-42, 20], + [-93, -34], + [-81, -83], + [-63, 70], + [-77, 17], + [-54, 42], + [-64, 23], + [-53, 40], + [-47, -21], + [-86, 24], + [-70, -31], + [-126, 19], + [-16, -14], + [-123, 2] + ], + [ + [14054, 21710], + [26, 63], + [98, 37], + [32, -8], + [26, 48], + [49, 21], + [-37, 67], + [-30, 17], + [-37, -24], + [-25, 46], + [40, 30], + [44, -14], + [61, 49], + [-11, 38], + [58, 11], + [43, 34], + [36, -25], + [51, -92], + [57, -38], + [41, 3], + [22, 36], + [88, -4], + [78, 32], + [25, 54], + [-6, 43], + [59, 25], + [-54, 48], + [-25, -31], + [-51, -10], + [-27, -51], + [-44, 39], + [111, 47], + [138, 132], + [23, 76], + [-41, 32], + [-7, 54], + [42, 10], + [28, 84], + [72, 26], + [23, 50], + [49, 20], + [72, -31], + [98, 21], + [46, 31], + [-3, 31], + [50, 49], + [50, 10], + [48, -29], + [82, 19], + [57, -8], + [35, -25], + [56, 21], + [97, -85], + [50, 26], + [68, 129], + [114, 7], + [3, -48], + [-36, -46], + [-10, -73], + [-24, -49], + [17, -40], + [-36, -40], + [-38, -11], + [22, -46], + [57, -22], + [41, -74], + [17, -122], + [50, -60], + [36, -78], + [59, -81], + [80, 15], + [89, -47] + ], + [ + [35633, 31904], + [38, -119], + [42, -67], + [-10, -56], + [42, -25], + [46, -80], + [2, -139], + [25, -89], + [2, -168], + [26, -152], + [-9, -162], + [4, -166], + [-20, -56], + [0, -77], + [-23, -90], + [11, -71], + [-37, -98], + [-8, -162], + [-38, -108], + [-12, -116], + [14, -51], + [-62, -106], + [-45, -44], + [-32, 22], + [-42, -14], + [-91, -67], + [-31, 6], + [-51, -42], + [-16, -85] + ], + [ + [35358, 29522], + [-97, 33], + [-58, 0], + [-31, 29], + [-82, 30], + [-77, 6], + [-43, 52], + [-49, 1], + [47, -123], + [-113, -46], + [-121, -132], + [-25, 0], + [-43, 54], + [-53, 29], + [-61, 10], + [-34, 109], + [-82, 24], + [-40, 71], + [-36, 25], + [-56, 3] + ], + [ + [34304, 29697], + [-21, 49], + [-11, 92], + [15, 64], + [-64, -13], + [-35, 25], + [-9, 71], + [-78, 52], + [-24, 39], + [-79, 45], + [-85, 10], + [-36, 28], + [-110, 15], + [-71, 24], + [-166, -16], + [-73, -41], + [-26, -36], + [7, -49], + [-75, -7], + [-56, -37], + [-70, -10], + [-80, -27], + [-26, -40], + [-80, -18], + [-23, -41], + [-63, -8], + [-19, -23], + [-148, -76], + [-62, 7], + [-70, -96], + [-95, -41] + ], + [ + [32571, 29639], + [-90, 34], + [-85, 20], + [-109, -6], + [0, 35] + ], + [ + [32287, 29722], + [24, 39], + [4, 72], + [-15, 54], + [18, 97], + [-39, 106], + [36, 120], + [-47, 87], + [-69, 15], + [-59, 75], + [24, 47], + [62, 64], + [26, 69], + [29, 120], + [-9, 50], + [-39, 10], + [-29, 42], + [39, 75], + [132, 15], + [158, 46], + [85, -10], + [15, 98], + [88, 18], + [55, -13], + [66, 7], + [82, -22], + [55, 45], + [-44, 53], + [9, 76], + [-32, 54], + [-15, 64], + [8, 45], + [40, 14], + [113, 83], + [-13, 22], + [72, 95], + [0, 26], + [159, 159] + ], + [ + [33276, 31739], + [99, 9], + [43, -55], + [95, 54], + [61, -36], + [63, 7], + [33, 32], + [49, -50], + [-4, -23], + [53, -82], + [107, 22], + [49, -6], + [72, -66], + [43, -11], + [74, 52], + [131, -24], + [100, 90], + [34, 59], + [-55, 38], + [6, 87], + [-10, 99], + [28, 61], + [-14, 76], + [16, 21] + ], + [ + [34349, 32093], + [76, -43], + [64, -18], + [70, 12], + [22, 42], + [72, -46], + [64, -20], + [8, -62], + [29, -38], + [106, 8], + [63, 35], + [35, -25], + [62, 6], + [15, -30], + [67, 4], + [44, -24], + [17, -85], + [-23, -40], + [14, -50], + [78, -65], + [100, -11], + [18, 50], + [130, -19], + [11, 222], + [72, 25], + [70, -17] + ], + [ + [29015, 28436], + [13, -48], + [40, -5], + [73, -107], + [-9, -74], + [-36, -26], + [-105, -146], + [39, -52], + [-5, -49], + [-75, -68], + [-1, -77], + [121, -103], + [-28, -36], + [-14, -81], + [-100, -72], + [-38, -87], + [-43, -10], + [-53, -101], + [-43, -6], + [-33, 31], + [-115, -33], + [-35, -101], + [-60, -24], + [-10, -52], + [28, -36], + [105, -1], + [5, -49], + [124, -35], + [57, -103], + [23, -68], + [42, -24], + [43, -66], + [-50, -71], + [39, -71], + [-6, -104], + [51, -57], + [39, 22], + [68, 7], + [37, -47], + [0, -87], + [-62, -44], + [68, -116], + [-73, -51], + [12, -99], + [-84, -62], + [1, -51] + ], + [ + [27194, 25576], + [-91, -2], + [-84, 113], + [-39, 23], + [-46, 99], + [-52, -23], + [-101, -15], + [-32, -33], + [-56, -2] + ], + [ + [26693, 25736], + [-72, 66], + [32, 21], + [2, 89], + [33, 49], + [17, 88], + [-14, 41], + [56, 43], + [-33, 29], + [-21, 51], + [16, 46], + [-6, 50], + [-40, 21], + [-24, 41], + [28, 59], + [-41, 44], + [-49, 2], + [-79, 27], + [12, 60], + [-20, 106], + [-46, -6], + [-27, 101] + ], + [ + [27364, 27743], + [51, 103], + [-23, 70], + [61, 22], + [4, 26], + [91, 133], + [-4, 37], + [-77, 40], + [-25, 55] + ], + [ + [27442, 28229], + [59, 8], + [36, 76], + [70, 77], + [25, -56], + [35, 35], + [93, -49], + [34, -73], + [-26, -69], + [34, -7], + [65, 36], + [39, 62], + [49, 44], + [12, 82], + [129, 110], + [41, 60], + [94, 22], + [25, -41], + [147, 65], + [76, -21], + [-13, -67], + [85, 17], + [26, 37], + [46, 18], + [29, -73], + [112, -33], + [28, 29], + [44, 2], + [85, -77], + [94, -7] + ], + [ + [32571, 29639], + [-59, -145], + [103, -41], + [-55, -91], + [-47, -41], + [28, -110], + [-59, -84], + [-19, -129], + [46, -39], + [102, -30], + [123, 6], + [35, -64], + [-50, -58], + [-73, -117], + [34, -72], + [-50, -39], + [-93, -148], + [4, -49], + [54, -50], + [52, -25], + [-4, -54], + [112, -92], + [101, 27], + [71, -41], + [84, 3], + [29, 15], + [77, -100], + [2, -24] + ], + [ + [33119, 28047], + [-31, -56], + [-49, -16], + [-72, 45], + [-95, -37], + [-140, -9], + [-182, 127], + [-86, -19], + [-98, 27], + [-60, -14], + [-171, 81], + [-70, 5], + [-38, -41], + [-100, -197], + [-30, -108], + [-37, 11], + [-53, -18], + [-63, 0], + [-14, -40], + [-53, -47], + [-59, 6], + [-107, -54], + [-58, -73], + [-44, -11], + [-81, 8], + [-16, -45], + [-59, -50] + ], + [ + [31253, 27522], + [-59, 2], + [-13, 39], + [-61, 18], + [-25, 45], + [11, 67], + [-25, 56], + [34, 33], + [-29, 64], + [-65, 7], + [-44, 72], + [63, -15], + [44, 45], + [-55, 166], + [-7, 59], + [85, 35], + [19, 28], + [-6, 93], + [12, 47], + [-28, 109], + [-84, 23], + [-71, -9], + [-65, -40], + [-67, 26], + [-21, -29], + [-43, 7], + [-33, 35], + [-93, 35], + [-6, 122], + [29, 124], + [31, 33], + [-15, 40], + [14, 53], + [48, 36], + [12, 46], + [133, 45], + [-14, 59], + [15, 43], + [38, 19], + [141, 15], + [11, 22], + [101, 25], + [44, 31] + ], + [ + [31209, 29253], + [25, -16], + [60, 57], + [97, -39], + [26, 35], + [42, 8], + [18, 67], + [-17, 47], + [65, -3], + [54, 32], + [96, 27], + [-26, 41], + [30, 89], + [94, 14], + [-29, 107], + [2, 74], + [62, 2], + [102, 25], + [83, 68], + [0, 51], + [33, 32], + [93, -111], + [41, -28], + [10, -71], + [53, -20], + [40, 13], + [24, -32] + ], + [ + [18713, 23341], + [43, -19], + [-21, -48], + [-35, 29], + [13, 38] + ], + [ + [19625, 23376], + [39, -32], + [-99, -59], + [-34, 8], + [10, 54], + [84, 29] + ], + [ + [19278, 23403], + [20, -34], + [-22, -35], + [-58, 3], + [24, 51], + [36, 15] + ], + [ + [19351, 23408], + [96, -31], + [12, -30], + [-97, -12], + [-51, 25], + [40, 48] + ], + [ + [19787, 23593], + [21, -16], + [-49, -103], + [7, -41], + [-92, -21], + [-47, 14], + [-24, 68], + [78, 16], + [106, 83] + ], + [ + [18913, 23589], + [17, -41], + [-16, -141], + [-36, -44], + [36, -80], + [-61, -38], + [-28, 8], + [-4, 75], + [-43, 27], + [-75, 107], + [8, 76], + [73, -14], + [37, -73], + [56, 45], + [-53, 55], + [-8, 51], + [97, -13] + ], + [ + [18604, 23640], + [28, -52], + [-90, -89], + [-54, -26], + [-26, 46], + [54, 80], + [88, 41] + ], + [ + [20188, 23665], + [26, -65], + [-59, -29], + [-47, -44], + [-51, 39], + [32, 79], + [99, 20] + ], + [ + [20229, 23761], + [44, -5], + [67, -97], + [-37, -91], + [-70, 56], + [-46, 83], + [42, 54] + ], + [ + [20154, 23765], + [20, -52], + [-30, -46], + [-33, 18], + [17, 72], + [26, 8] + ], + [ + [20555, 23788], + [5, -37], + [-107, -47], + [-7, 36], + [74, 45], + [35, 3] + ], + [ + [20358, 23875], + [34, -33], + [-36, -31], + [-5, -37], + [-52, -14], + [-32, 22], + [-3, 60], + [94, 33] + ], + [ + [20208, 25410], + [54, -20], + [158, 25], + [42, -48] + ], + [ + [20462, 25367], + [67, -91], + [34, -27], + [-1, -36], + [-45, -80], + [9, -61], + [-10, -92], + [96, -139], + [65, -54], + [-30, -108], + [22, -142], + [56, -64], + [-38, -111], + [44, -73], + [33, -8], + [54, -101], + [-8, -85], + [11, -61] + ], + [ + [20821, 24034], + [-28, -94], + [-89, -22], + [-19, -19], + [-2, -82], + [-32, -29], + [-62, 25], + [-92, 7], + [-36, 54], + [-5, 61], + [-163, -76], + [-117, -41], + [-75, 1], + [-22, -87], + [-124, -38], + [-45, 19], + [-102, -4], + [-27, -22], + [-68, 0], + [-64, -65], + [-50, 35], + [-63, -6], + [-41, -80], + [-52, 14], + [-8, -98], + [-41, 9], + [-74, -19], + [-30, -56], + [-76, -20], + [-91, 62], + [-41, -58], + [-49, -19], + [11, -34], + [-50, -76], + [43, -7], + [-23, -66], + [60, 1], + [-18, -61], + [-29, -3], + [-87, 36], + [-10, -28], + [-83, -17], + [-18, 57], + [118, 72], + [-28, 31], + [25, 80], + [76, 49], + [28, 65], + [-37, 12], + [-50, 55], + [8, 34], + [-47, 74], + [18, 50], + [-23, 41], + [-66, -6], + [-3, 35], + [-178, -10], + [-156, -146], + [-17, -35], + [-84, -51], + [-34, -62], + [27, -15] + ], + [ + [18406, 23461], + [-94, -6], + [-68, 18], + [-51, 142], + [8, 61], + [-58, 52], + [-58, 22], + [15, 71], + [-16, 63], + [17, 78], + [-29, 66] + ], + [ + [18072, 24028], + [-49, 61], + [30, 62], + [60, 17], + [63, 65], + [17, 48], + [-15, 51], + [19, 73], + [70, 99], + [-55, 33], + [29, 47], + [107, 71], + [21, -9], + [54, 81], + [21, 62], + [54, -24], + [40, -45], + [22, 42], + [63, -8], + [40, 19], + [74, -38], + [44, 65], + [41, 14], + [25, -40], + [164, -12], + [58, 25], + [90, 77], + [72, 1], + [23, -18], + [42, 42], + [55, 21], + [-16, 51], + [-104, 43], + [16, 53], + [38, 21], + [28, 45], + [120, 25], + [43, 80], + [67, 67], + [43, 79], + [88, 94], + [40, 7], + [29, -33], + [87, -34], + [54, 25], + [25, 34], + [98, -77], + [38, 26], + [105, 15], + [58, -21] + ], + [ + [32916, 41953], + [3, -55], + [-33, -62], + [-55, -61], + [7, -91], + [-48, -123], + [-33, -28], + [-72, -15], + [-37, 17], + [-3, 133], + [-38, 82], + [59, 117], + [51, 1], + [153, 40], + [46, 45] + ], + [ + [36414, 46998], + [19, -28], + [-42, -37], + [-39, 18], + [62, 47] + ], + [ + [36154, 48879], + [66, -51], + [94, -6], + [54, -42], + [43, -70], + [9, -80], + [-107, -93], + [-74, -30], + [-119, 73], + [-72, 77], + [2, 65], + [-18, 54], + [46, 50], + [76, 53] + ], + [ + [35722, 49331], + [47, -47], + [46, 2], + [51, 37], + [22, -47], + [-9, -102], + [7, -82], + [-19, -26], + [14, -52], + [-23, -44], + [-37, -1], + [-45, 69], + [-44, 127], + [19, 107], + [-29, 59] + ], + [ + [37627, 49487], + [46, -28], + [17, -65], + [57, -53], + [40, -14], + [26, -73], + [40, -51], + [231, -138], + [222, -257], + [254, -252], + [194, -179], + [49, -29], + [14, -85], + [86, -74], + [3, -83], + [33, -43], + [61, -38], + [54, -109], + [30, -14], + [134, -177], + [103, -97], + [132, -92], + [21, -32], + [123, -91], + [113, -143], + [140, -87], + [34, -32], + [265, -156], + [38, -40], + [102, -60], + [131, -63], + [33, -79], + [99, -65], + [170, -79], + [-26, -44], + [43, -19], + [59, 29], + [199, -79], + [204, -74], + [-106, 6], + [-41, -23], + [76, -63], + [28, -83], + [58, -4], + [24, -51], + [91, -3], + [66, 26], + [101, -17], + [103, -34], + [26, 27], + [28, 79], + [272, -30], + [124, -48], + [-113, -17], + [-32, -146], + [29, -31], + [75, 6], + [57, 36], + [36, 82], + [-6, 77], + [107, 23], + [18, -60], + [-6, -107], + [38, -37], + [49, -94], + [124, -59], + [65, -71], + [81, 20], + [208, -27], + [145, -13], + [176, 3], + [177, 28], + [85, 49], + [23, 46], + [59, 26], + [80, 62], + [53, 68], + [131, 104], + [0, 24], + [121, 70], + [111, 94], + [130, 67], + [66, 120], + [158, 149], + [17, 48], + [56, -15], + [15, -73], + [34, -53], + [-9, -45], + [-111, -195], + [-82, -66], + [-48, -114], + [11, -48], + [-46, -70], + [-83, -71], + [-100, -129], + [-22, -63], + [-50, -78], + [10, -70], + [-34, -94], + [-39, -28], + [-6, -46], + [23, -94], + [48, -49], + [107, -184], + [79, -29], + [13, -74], + [79, -132], + [52, -200], + [5, -51], + [67, -141], + [-14, -39], + [-100, 10], + [-39, -44], + [29, -27], + [25, -72], + [59, 57], + [51, -2], + [-2, -87], + [56, 2], + [97, -37], + [160, -16], + [32, 26], + [107, -73], + [-50, 90], + [51, 74], + [91, 50], + [34, 45], + [85, 44], + [27, 44], + [140, -19], + [28, 21], + [136, -11], + [15, -42], + [-103, -64], + [-107, -17], + [-65, -42], + [-76, 9], + [-93, -93], + [-34, 14], + [-42, -127], + [-33, -46], + [8, -34], + [-26, -67], + [-97, 49], + [-98, -2], + [-143, -23], + [-67, -25], + [-68, 7], + [-69, -23], + [-53, -43], + [-79, -2], + [-27, 23], + [-49, -14], + [-62, -50], + [7, -94], + [-53, -28], + [-7, -57], + [-112, -36], + [-9, -68], + [-127, -45], + [-65, 23], + [-102, -11], + [-42, 57], + [18, 45], + [70, -30], + [98, 71], + [-63, 39], + [-72, 11], + [-56, 27], + [-10, -55], + [-127, -3], + [-86, -87], + [-36, -95], + [104, -79], + [-72, -22], + [-127, 14], + [-87, 28], + [-158, -10], + [-44, 11], + [-87, -28], + [-71, 10], + [-147, 55], + [-42, 68], + [-75, 19], + [-99, -5], + [-131, -25], + [-140, -49], + [-52, -34], + [-130, -45], + [-212, -128], + [-111, -80], + [-504, -422], + [-125, -135], + [-61, -35], + [-9, -42], + [-177, -228], + [-104, -162], + [-110, -213], + [-31, -151], + [23, -75], + [30, -20], + [-21, -94], + [-4, -103], + [-30, -96], + [9, -48], + [-111, -130], + [-31, -115], + [12, -47], + [-165, 127], + [-3, 30], + [-51, 70], + [-142, 86], + [-127, 52], + [-71, 75], + [-113, 32], + [-63, -2], + [-118, 21], + [-84, 46], + [-17, 27], + [-83, 26], + [-98, 16], + [-95, 76], + [-97, 49], + [-48, 5], + [-86, 46], + [-65, 15], + [-83, 77], + [-57, 4], + [-65, 33], + [-189, 123], + [-13, 23], + [-157, 144], + [-114, 42], + [-114, 9], + [-94, 30], + [-28, 36], + [-65, 37], + [-156, 139], + [-186, 78], + [-187, 41], + [-87, 5], + [-158, -12], + [-133, -30], + [-148, -55], + [-223, -121], + [-111, -75], + [-116, -91], + [-150, -67], + [-124, -106], + [-62, -76], + [-77, -77], + [-20, -49], + [-110, 37], + [-34, 43], + [35, 21], + [75, -32], + [-20, 61], + [-82, 15], + [-52, 31], + [-22, 110], + [-55, 85], + [-71, 27], + [-60, 55], + [-38, 10], + [-39, 103], + [-109, 83], + [-127, 10], + [-155, -38], + [-67, 43], + [-128, -6], + [-91, -76], + [-71, -77], + [-55, -77], + [-70, -120], + [-71, -175], + [-21, -87], + [-4, -77], + [41, -101], + [89, -39], + [86, -7], + [53, -52], + [94, -58], + [106, -102], + [68, -39], + [67, -15], + [151, 47], + [70, -4], + [33, 27], + [107, -56], + [25, -70], + [40, -21], + [53, -96], + [106, -59], + [66, -57], + [56, -105], + [48, -51], + [100, -50], + [118, -12], + [147, -73], + [3, -61], + [61, -21], + [17, -43], + [-60, -41], + [-82, 7], + [-68, -67], + [-12, -39], + [-152, -63], + [-93, 3], + [-51, 56], + [-125, 44], + [-50, 2], + [-121, 36], + [-75, -16], + [-30, -53], + [-34, -12], + [-26, 57], + [62, 14], + [7, 44], + [-56, 62], + [-74, 12], + [-74, -34], + [-44, -148], + [-104, -52], + [-44, -46], + [-130, -7], + [-39, -39], + [-17, -62], + [-9, -161], + [17, -83], + [-57, -72], + [-90, -2], + [-107, -53], + [-88, -21], + [-81, -125], + [-16, -45], + [-62, -18], + [-60, 54], + [-43, 11], + [-114, -12], + [-67, 57], + [-51, 96], + [4, 17], + [-63, 129], + [-3, 132], + [29, 68], + [20, 115], + [97, 124], + [26, 50], + [1, 93], + [76, -8], + [33, 66], + [1, 52], + [29, 137], + [-43, 206], + [-94, 118], + [-30, 63], + [-60, 69], + [-75, 37], + [-131, 11], + [-84, 173], + [-34, 24], + [-98, 7], + [-28, 15], + [-50, 71], + [18, 50], + [-37, 69], + [32, 99], + [66, 47], + [43, 68], + [35, 141], + [-24, 104], + [10, 44], + [-38, 110], + [-5, 91], + [58, 59], + [26, 52], + [116, 56], + [126, 8], + [81, -11], + [58, 33], + [26, 55], + [146, 70], + [0, 33], + [79, 125], + [83, -49], + [48, -84], + [104, 25], + [0, 109], + [86, 79], + [82, 130], + [53, 62], + [59, 25], + [145, 83], + [21, 79], + [-37, 22], + [-50, 97], + [-43, 20], + [-45, 100], + [-86, 74], + [-74, 43], + [-70, 100], + [75, 251], + [87, 10], + [30, -13], + [76, 37], + [14, 47], + [61, 16], + [32, -36], + [185, -142], + [45, 1], + [20, -69], + [151, -38], + [37, -32], + [81, -24], + [-5, -45], + [35, -25], + [115, 9], + [126, 28], + [10, 30], + [64, 9], + [55, 27], + [75, -3], + [-13, -93], + [57, -41], + [100, -20], + [142, -63], + [180, 77], + [68, 44], + [74, 66], + [155, 176], + [43, 61], + [7, 214], + [-66, 124], + [-70, 98], + [4, 45], + [32, 49], + [19, 71], + [-11, 41], + [-55, 77], + [-47, 196], + [60, 81], + [43, 96], + [146, 75], + [77, 4], + [28, 41], + [98, 9], + [79, 62], + [60, 84], + [31, 80], + [15, 95], + [20, 36], + [5, 97], + [-20, 198], + [12, 48], + [-9, 135], + [6, 50], + [-20, 168], + [61, 39], + [17, 58], + [54, 93], + [47, 47], + [41, 103], + [19, 220], + [35, 56], + [11, 180], + [-14, 146], + [-40, 193], + [-38, 125], + [-14, 82], + [-24, 35], + [-88, 201], + [-175, 330], + [-45, 114], + [3, 105], + [69, 75], + [22, 43], + [-6, 49], + [52, 49], + [32, 86], + [-41, 52], + [-7, 53], + [28, 79], + [65, -64], + [13, -43], + [63, -14], + [171, 30], + [60, 26], + [58, 46], + [27, 46], + [1, 81], + [26, 35], + [92, 27] + ], + [ + [23891, 24340], + [39, -47], + [-6, -49], + [-51, -53], + [-2, -50], + [-68, -77], + [-31, -53], + [-56, -52], + [-39, -98], + [0, -114], + [40, -35], + [6, -46], + [49, -42], + [17, -73], + [-105, -34], + [-131, -65], + [-64, -56], + [-49, 3], + [-73, -25], + [-39, 60], + [-39, 12], + [23, 44], + [-69, 35], + [-30, 36], + [-7, 51], + [31, 55], + [66, 10], + [46, 28], + [49, 119], + [55, 69], + [31, 80], + [97, 65], + [44, 80], + [33, 38], + [54, 16], + [67, 58], + [55, 82], + [57, 28] + ], + [ + [22873, 24481], + [20, -62], + [-78, 30], + [58, 32] + ], + [ + [24327, 24499], + [40, -55], + [-55, -9], + [-30, 54], + [45, 10] + ], + [ + [22969, 24514], + [6, -61], + [-55, 31], + [49, 30] + ], + [ + [24431, 24547], + [28, -40], + [-69, -8], + [-5, 31], + [46, 17] + ], + [ + [23628, 26760], + [8, -83], + [-15, -65], + [9, -45], + [87, -77], + [20, -58], + [30, -17], + [132, 53], + [64, 5], + [13, -46], + [-6, -107], + [17, -46], + [1, -73], + [-59, -58], + [-45, -18], + [-72, 50], + [-66, -23], + [-17, -119], + [5, -72], + [72, -39], + [78, -19], + [27, -38], + [132, -67], + [32, 34], + [121, 4], + [15, -94], + [66, -38], + [-17, -74], + [36, -23], + [63, 34], + [103, -10], + [4, -70], + [86, 17], + [10, -22], + [88, -25], + [32, -81], + [-2, -41], + [-38, -19], + [-18, -52] + ], + [ + [24624, 25338], + [-63, -4], + [31, -44], + [-16, -128], + [29, -33], + [209, -59], + [-91, -49], + [42, -23], + [-22, -95], + [-17, -11], + [-8, -91], + [48, -51], + [34, -124], + [-25, -38], + [-56, -25] + ], + [ + [24719, 24563], + [-104, -51], + [-51, 69], + [-98, 12], + [-10, -35], + [-139, -20], + [-59, -55], + [-13, -50], + [-133, -16], + [-109, -39], + [-54, 12], + [-30, 29], + [-104, 7], + [-146, 105], + [-27, -17], + [-75, 28], + [-60, 49], + [-21, 35], + [-85, 74], + [-90, 26], + [-98, -30], + [-64, 24], + [-107, -36], + [-94, 56], + [-45, -49], + [-117, 15], + [-29, -8], + [-34, -81], + [-55, -5], + [-44, 40], + [-32, -20] + ], + [ + [22592, 24632], + [-55, 132], + [-26, 39], + [-82, 54], + [-18, 46], + [17, 60], + [53, 38], + [-12, 51], + [-55, 58], + [35, 31], + [-5, 47], + [20, 41], + [-28, 36], + [60, 64], + [41, 9], + [6, 89], + [59, 24], + [24, 105], + [25, 25], + [75, 19], + [0, 49], + [-58, 40], + [-4, 48], + [43, 52] + ], + [ + [22707, 25789], + [58, -25], + [97, 54], + [68, 56], + [-5, 72], + [-22, 40], + [16, 40], + [-25, 54], + [-41, 17], + [1, 125], + [-74, 32], + [-22, 144], + [-27, 35], + [20, 49], + [-35, 54], + [-11, 68], + [-70, 49] + ], + [ + [22635, 26653], + [117, 17], + [94, 47], + [52, 50], + [75, 20], + [24, -27], + [95, -2], + [49, -44], + [65, 61], + [76, -26], + [59, 28], + [96, -18], + [42, 26], + [82, -32], + [67, 7] + ], + [ + [35358, 29522], + [4, -2], + [3, -1], + [13, -39], + [-68, -49], + [-72, -164], + [-8, -65], + [-27, -82], + [5, -46], + [-50, -55], + [-57, -133], + [-20, -20], + [-39, -147], + [-45, -83], + [-2, -148], + [22, -112], + [-51, -62], + [-2, -28], + [-62, -54], + [-8, -69], + [27, -195], + [58, -187], + [62, -144], + [77, -160], + [22, -2], + [48, -103], + [64, -103], + [11, -46], + [163, -237], + [77, -55], + [10, -33] + ], + [ + [33352, 27761], + [-39, -33], + [-39, 9], + [-30, 72], + [-50, 86], + [-11, 58], + [21, 55] + ], + [ + [33204, 28008], + [73, 6], + [42, 29], + [124, 53], + [31, 71], + [-3, 52], + [27, 37], + [52, 5], + [62, -31], + [12, 83], + [84, 32], + [30, 55], + [55, -12], + [34, 17], + [94, 14], + [5, 49], + [89, -12], + [21, 34], + [44, 2], + [28, -37], + [53, 1], + [34, 49], + [2, 80], + [76, 112], + [17, 63], + [-11, 109], + [8, 62], + [-25, 68], + [9, 23], + [-41, 93], + [29, 36], + [95, 20], + [5, 52], + [-51, 50], + [-9, 46], + [24, 98], + [-28, 93], + [-8, 151], + [17, 36] + ], + [ + [27923, 30237], + [30, -40], + [-26, -28], + [20, -36], + [-55, -27], + [-54, 17], + [-30, -27], + [-70, -13], + [-29, 48], + [-49, 26], + [109, 21], + [62, -6], + [60, 11], + [32, 54] + ], + [ + [27949, 29755], + [-125, 9], + [-31, -42], + [-42, 18], + [-43, -20], + [-64, -56], + [-34, -53], + [7, -57], + [-36, -40], + [-24, -96], + [-8, -135], + [-55, -61], + [-52, -15], + [39, -49], + [20, -71], + [-76, -116], + [18, -106], + [46, -55], + [-41, -93], + [6, -71], + [-40, -115], + [3, -42], + [29, -33], + [14, -103], + [-33, -40], + [15, -84] + ], + [ + [26348, 28224], + [69, 64], + [42, 69], + [67, 15], + [118, 96], + [96, 101], + [77, 109], + [40, 39], + [191, 237], + [13, 40], + [45, 39], + [126, 196], + [95, 191], + [38, 110], + [18, 134], + [-8, 58], + [13, 129], + [-50, 25], + [-18, 82], + [-34, 67], + [24, 50], + [-5, 87], + [-21, 25], + [-84, -17], + [11, 156], + [43, 38], + [-1, 43], + [41, 33], + [28, 68], + [-21, 23], + [-2, 73], + [102, 91], + [132, 77], + [74, 13], + [92, -24], + [57, 31], + [220, 98], + [50, 54], + [105, 55], + [129, 16], + [110, 57], + [70, -10], + [50, 9], + [52, -64], + [-23, -45], + [36, -41], + [-12, -49], + [-81, -16], + [-86, 0], + [-31, -25], + [-28, -109], + [54, -120], + [-64, -71], + [-22, -6], + [-106, 21], + [-100, -32], + [-42, -29], + [-40, -71], + [-14, -63], + [-74, -35], + [-52, -44], + [-27, 36], + [-43, 5], + [-53, 53], + [-116, -138], + [-19, -55], + [51, -11], + [-15, -39], + [-53, -20], + [9, -54], + [32, -42], + [40, 48], + [61, -6], + [-3, -36], + [39, -33], + [56, -18], + [52, 56], + [20, 64], + [58, 16], + [7, -89], + [-13, -58], + [19, -177], + [-10, -19] + ], + [ + [37021, 34391], + [-118, 45], + [-84, -2], + [-61, 14], + [-24, -48], + [14, -60], + [-3, -102], + [-68, -65], + [10, -46], + [-19, -47], + [12, -54], + [-43, -10], + [-1, -66], + [-38, -3], + [-71, 34], + [-16, 24], + [-60, 4], + [-61, 32], + [-25, -66], + [-65, -13], + [-18, -64], + [-86, -17], + [-23, 43], + [-106, 31], + [-12, 45], + [-51, 74], + [60, 50], + [-25, 46], + [-73, 19], + [-121, -20], + [-38, 14], + [-63, -18], + [-55, 75], + [-144, 44], + [-143, 85], + [-75, -15] + ], + [ + [37125, 37794], + [58, -64], + [14, -51], + [66, -67], + [30, -49], + [8, -57], + [86, -120], + [31, -84], + [-68, -62], + [6, -52], + [115, -46], + [24, -70], + [-49, -1], + [-41, -71], + [15, -65], + [31, -37], + [58, -27], + [74, -91], + [42, 2], + [33, -51], + [9, -75], + [-29, -23], + [-7, -54], + [31, -70], + [47, -58], + [-10, -42], + [34, -60], + [-14, -74], + [24, -24], + [-28, -102], + [5, -51], + [-30, -57], + [3, -142], + [-52, -62], + [27, -28], + [112, 159], + [20, -118], + [26, -71], + [38, 2], + [27, -74], + [-81, -42], + [-1, -35], + [-40, -34], + [5, -35], + [-79, 6], + [-37, -31], + [48, -67], + [113, 102], + [51, -35], + [-23, -27], + [-19, -87], + [-77, -19], + [-51, 30], + [-71, -85], + [37, -70], + [-83, -22], + [83, -69], + [-101, -17], + [38, -54], + [-1, -45], + [-45, -30], + [70, -69], + [-88, -53], + [-23, -33], + [76, -22], + [-74, -51], + [-74, 3], + [-18, -19], + [126, -62], + [32, -32], + [-66, -40], + [-52, 36], + [-86, 20], + [-8, -55], + [79, -73], + [-23, -77], + [-82, 3], + [-141, -18], + [-3, -61], + [-49, -37], + [47, -26], + [-19, -43], + [-34, -7], + [-47, 70], + [-4, 74], + [-91, -9], + [16, -69] + ], + [ + [22783, 23414], + [-16, -93], + [-78, -15], + [-73, 50], + [-29, -29], + [-90, -6], + [-74, 31], + [-137, -24], + [-34, 6], + [-75, -56], + [6, -41], + [-32, -34], + [-143, -3], + [-46, -71], + [-54, -27], + [-48, 0], + [-48, 35], + [-38, 59], + [-63, -33], + [-76, 9], + [-77, -29], + [-8, -38], + [-40, -15], + [-38, 23], + [-101, -82], + [-14, -50], + [-62, -21] + ], + [ + [21106, 23032], + [50, 18], + [29, 80], + [-10, 89], + [13, 14], + [20, 133], + [-28, 53], + [-45, 27], + [20, 34], + [71, 9], + [49, -14], + [50, 14], + [88, 90], + [20, 49], + [41, 24], + [48, 0], + [31, 35], + [-8, 59], + [42, 20], + [53, -58], + [48, 38], + [6, 73], + [87, -2], + [75, -20], + [30, -35], + [94, -14], + [50, 25], + [96, 9], + [47, 78], + [48, -26], + [8, -31], + [-21, -74], + [46, -44], + [20, 47], + [126, 16], + [31, -44], + [-39, -59], + [84, -74], + [34, 5], + [78, -57], + [94, -30], + [52, -53], + [49, -22] + ], + [ + [21335, 23859], + [35, -61], + [-62, -51], + [-30, 23], + [57, 89] + ], + [ + [10878, 6966], + [37, -37], + [8, -67], + [-64, -3], + [-35, 56], + [54, 51] + ], + [ + [11397, 7826], + [-3, -54], + [-36, -11], + [-82, -112], + [-72, -60], + [-80, -24], + [-53, 45], + [-22, 55], + [23, 75], + [55, -21], + [68, 5], + [36, 25], + [43, 0], + [123, 77] + ], + [ + [11815, 8867], + [38, -14], + [87, 12], + [10, -41], + [-16, -79], + [4, -54], + [57, -35], + [80, -92], + [-42, -112], + [-34, -40], + [-24, -64], + [-104, -16], + [-23, 13], + [-14, 61], + [-72, 68], + [38, 33], + [13, 63], + [-33, 51], + [-1, 73], + [-18, 14], + [24, 65], + [0, 75], + [30, 19] + ], + [ + [12444, 9217], + [20, -33], + [70, 2], + [-32, -43], + [-41, 23], + [-42, -3], + [-12, 44], + [37, 10] + ], + [ + [12336, 9248], + [-8, -86], + [-39, -14], + [7, 72], + [40, 28] + ], + [ + [12413, 9575], + [-11, -47], + [18, -39], + [98, -45], + [35, -63], + [42, 6], + [50, -24], + [56, -1], + [-27, -72], + [-50, -14], + [-22, 34], + [-84, -18], + [0, 50], + [-22, 26], + [-52, -28], + [-19, 36], + [2, 60], + [-56, 38], + [-24, 60], + [66, 41] + ], + [ + [12366, 9818], + [53, -19], + [-7, -37], + [-58, 35], + [12, 21] + ], + [ + [14022, 9985], + [30, -40], + [-54, -59], + [-60, -110], + [-74, -31], + [-56, 86], + [43, 40], + [33, 0], + [85, 82], + [53, 32] + ], + [ + [13367, 10326], + [-1, -58], + [29, -56], + [29, -7], + [2, -79], + [-21, -45], + [-65, -23], + [-24, -31], + [-69, 24], + [-89, -101], + [-44, -72], + [-49, -2], + [14, -47], + [-50, -25], + [-87, -15], + [-34, 7], + [-33, -120], + [1, -34], + [64, -28], + [-49, -49], + [-32, 5], + [-49, -38], + [-17, -69], + [-36, 30], + [-51, -26], + [-24, -36], + [-46, -7], + [-59, 42], + [11, 40], + [-66, 26], + [17, 57], + [-156, 48], + [-40, 26], + [-43, -4], + [-22, 46], + [91, 12], + [56, -10], + [37, 63], + [-39, 35], + [107, 60], + [71, 6], + [16, 31], + [66, 63], + [50, -33], + [33, 41], + [81, 36], + [31, -14], + [41, 70], + [92, -8], + [15, 71], + [54, 49], + [47, -11], + [52, 42], + [19, -58], + [101, -56], + [-15, 56], + [50, 23], + [-38, 89], + [44, 63], + [27, 1] + ], + [ + [12397, 11784], + [36, -2], + [6, -64], + [-37, 12], + [-5, 54] + ], + [ + [13180, 12514], + [27, -10], + [22, -50], + [-46, -14], + [-28, 42], + [25, 32] + ], + [ + [13464, 12968], + [1, -82], + [-86, -78], + [-26, 114], + [53, 36], + [58, 10] + ], + [ + [13690, 13451], + [78, -30], + [9, -60], + [43, -48], + [-115, -4], + [-54, 91], + [39, 51] + ], + [ + [13824, 13707], + [49, -62], + [-5, -37], + [-59, 13], + [-27, 47], + [42, 39] + ], + [ + [14968, 14784], + [55, -39], + [88, -24], + [54, -53], + [85, -26], + [60, -51], + [-21, -155], + [-109, -132], + [-44, -34], + [-109, -22], + [-78, -4], + [-96, 23], + [-40, 70], + [-33, 110], + [-20, 5], + [-27, 79], + [-7, 69], + [32, 37], + [53, -6], + [53, 79], + [37, 22], + [-3, 41], + [70, 11] + ], + [ + [14271, 14851], + [42, -20], + [63, 1], + [71, -29], + [59, -52], + [-71, -51], + [-49, 2], + [-32, 56], + [-33, 12], + [-50, 81] + ], + [ + [15690, 15447], + [-7, -55], + [-36, 1], + [2, 57], + [41, -3] + ], + [ + [14583, 15577], + [33, -24], + [-12, -34], + [-98, -4], + [53, 58], + [24, 4] + ], + [ + [16076, 15650], + [25, -93], + [26, -32], + [-26, -39], + [14, -143], + [-42, -77], + [-14, -51], + [11, -95], + [-44, -47], + [5, -47], + [-111, -114], + [-1, -45], + [-32, -38], + [-4, -64], + [39, -42], + [-25, -26], + [16, -56], + [-19, -58], + [-46, 6], + [-78, -30], + [-63, -45], + [-28, 58], + [17, 89], + [-26, 72], + [-3, 49], + [43, 15], + [18, 47], + [29, 16], + [59, 98], + [52, 129], + [-5, 87], + [-23, 89], + [72, 93], + [10, 39], + [40, 43], + [16, 47], + [-11, 39], + [56, 72], + [2, 25], + [51, 29] + ], + [ + [13861, 15680], + [49, -48], + [-68, -42], + [-52, 47], + [42, 42], + [29, 1] + ], + [ + [13568, 17832], + [0, -55], + [-40, -104], + [-47, 2], + [-10, -70], + [-31, -27], + [-2, -63], + [-54, -52], + [-65, 39], + [53, 119], + [7, 52], + [92, 49], + [60, 8], + [37, 102] + ], + [ + [13692, 18057], + [53, -57], + [49, -31], + [37, 50], + [12, -92], + [-63, -29], + [-54, -1], + [-28, 57], + [-47, 35], + [2, 68], + [39, 0] + ], + [ + [15427, 18556], + [-43, -51], + [-6, -49], + [65, -23], + [83, -79], + [9, -75], + [57, -86], + [85, -14], + [52, -39], + [32, -71], + [-21, -101], + [-21, -8], + [17, -88], + [66, -10], + [29, -35], + [109, -13], + [-18, -62], + [79, -18], + [0, -91], + [16, -66], + [55, -98], + [51, 58], + [71, -63], + [33, -13], + [63, 23], + [48, -28], + [0, -51], + [31, -66], + [-26, -38], + [14, -30], + [-1, -76], + [-42, -19], + [-26, -45], + [0, -52] + ], + [ + [16288, 17079], + [-92, 39], + [-115, -63], + [-63, -81], + [-23, -63], + [-3, -61], + [166, -59], + [14, -44], + [-65, -51], + [35, -28], + [75, -7], + [-84, -62], + [-41, -50], + [-97, -1], + [-28, -89], + [-34, -17], + [-12, -59], + [-34, -40], + [-93, -59], + [-26, 2], + [-58, -43], + [-122, -14], + [-66, -52], + [-68, -18], + [-55, -32], + [-70, -91], + [-5, 133], + [-19, 53], + [123, 71], + [27, 34], + [43, 107], + [-22, 47], + [35, 91], + [29, 46], + [16, 84], + [-10, 30], + [27, 64], + [-75, 167], + [-77, 106], + [-57, 22], + [-6, 110], + [23, 51], + [-86, 44], + [-55, -14], + [-87, 104], + [72, 71], + [101, 18], + [35, -11], + [38, -50], + [-10, -52], + [19, -51], + [84, 8], + [47, 55], + [-2, 37], + [73, 135], + [-60, 98], + [-118, 11], + [-34, 47], + [-58, 16], + [-48, -13], + [-95, -73], + [2, -84], + [-25, -67], + [-53, -38], + [-29, -48], + [16, -50], + [-42, -67], + [-30, -85], + [-23, 4], + [-16, -116], + [26, -114], + [38, -69], + [39, -131], + [108, -104], + [77, -13], + [-17, -62], + [16, -53], + [-34, -11], + [7, -45], + [-34, -37], + [-45, 4], + [-31, -23], + [-59, 11], + [-56, -33], + [-49, 34], + [19, 46], + [-14, 37], + [-66, 72], + [-316, 27], + [-66, 21], + [-10, -46], + [-97, 51], + [-3, 34], + [-53, 0], + [-3, 30], + [53, 22], + [-38, 72], + [3, 27], + [-109, 82], + [-26, 78], + [38, 52], + [55, -64], + [76, -27], + [93, 64], + [76, 125], + [37, 110], + [12, 148], + [-13, 88], + [-21, 53], + [-36, 31], + [-18, 48], + [-154, 150], + [-48, 4], + [-44, 86], + [62, 154], + [38, 54], + [15, 60], + [-32, 141], + [-61, 69], + [50, 82], + [0, 82], + [-59, 6], + [-30, 31] + ], + [ + [14293, 18535], + [39, 72] + ], + [ + [14332, 18607], + [3, -28], + [95, 48], + [94, -11], + [20, -37], + [47, 0], + [50, 29], + [56, 77] + ], + [ + [14697, 18685], + [54, -26], + [32, -61], + [105, -16], + [40, 44], + [63, 19], + [63, -3], + [8, 24], + [62, 11], + [74, 64], + [20, -59], + [57, -13], + [7, -34], + [94, -70], + [51, -9] + ], + [ + [14378, 18716], + [-20, 73], + [-29, 50], + [0, 61] + ], + [ + [14329, 18900], + [12, -12], + [0, -7], + [0, -27], + [0, -2], + [22, -23], + [33, 14], + [8, -58], + [-26, -69] + ], + [ + [14423, 18927], + [7, 44], + [35, 35], + [44, -33] + ], + [ + [14509, 18973], + [-6, -47], + [-42, -12], + [-2, -2], + [-21, -12], + [-14, 17], + [-1, 10] + ], + [ + [33326, 26408], + [-52, -71], + [-54, -26], + [-26, 32], + [132, 65] + ], + [ + [33257, 26487], + [16, 2], + [1, 0], + [3, 0], + [2, 0], + [46, -10], + [-3, -58], + [-163, -87], + [-59, 7], + [-36, -27], + [30, -45], + [73, -44], + [-37, -48], + [-83, -12], + [43, -42], + [23, -125], + [-41, -66], + [22, -27], + [48, 28], + [36, -79], + [72, -1], + [11, -43], + [-19, -81], + [-58, -4], + [-49, -28], + [-32, -41], + [43, -94], + [-96, -6], + [-23, 25], + [2, 94], + [-36, 16], + [43, 58], + [-103, 105], + [5, 26], + [-49, 72], + [-39, -16], + [-168, 41], + [-227, -17], + [-20, -15], + [-133, -29], + [-80, -34], + [-129, -104], + [-16, -115], + [29, -83], + [-58, 6], + [-23, -27] + ], + [ + [32025, 25559], + [-153, 20], + [-12, 65], + [-71, 52], + [-24, 80], + [0, 65], + [58, 60], + [27, 93], + [-16, 28], + [-19, 118], + [-57, 27], + [-110, -7] + ], + [ + [31648, 26160], + [27, 43], + [14, 65], + [36, 26], + [143, 54], + [46, 62], + [72, 9], + [49, 50], + [34, 66], + [-14, 54], + [24, 66], + [-16, 14], + [-8, 89], + [17, 27] + ], + [ + [32072, 26785], + [60, -13], + [22, -40], + [86, -9], + [41, -83], + [41, -15], + [64, 19], + [38, -17], + [117, -18], + [64, -33], + [108, -118], + [28, -63], + [30, 3], + [-5, 94], + [24, 99], + [-80, 59], + [23, 22], + [49, -44], + [76, 87], + [70, -19], + [23, -27], + [92, -24], + [85, -52], + [32, -64], + [97, -42] + ], + [ + [19035, 20052], + [31, -17], + [4, -64], + [-59, 31], + [24, 50] + ], + [ + [21236, 22657], + [4, -24], + [71, -45], + [65, -2], + [33, -33], + [62, 12], + [77, -10], + [42, 15], + [66, -87], + [57, -28], + [83, 16], + [24, 69], + [58, 23], + [25, -46], + [71, 17], + [1, -44], + [50, -79], + [-4, -50], + [22, -54], + [-8, -91], + [119, 13], + [79, -18], + [23, -79], + [-48, -52], + [10, -46], + [58, -58], + [20, -59], + [30, 12], + [89, -29], + [40, 16], + [54, -20] + ], + [ + [22509, 21896], + [-39, -40], + [-85, -154], + [-3, -30], + [-62, -128], + [-23, -146], + [-19, -75], + [-7, -95], + [-41, 17], + [-53, 70], + [-58, 17], + [-8, 43], + [-47, 35], + [-26, 43], + [-61, 62], + [-9, 64], + [-163, 89], + [-33, 89], + [-91, 31], + [-88, 9], + [-22, 19], + [-154, 17], + [-39, 40], + [-91, -6], + [-172, -37], + [-78, -39], + [9, -20], + [-108, -45], + [-111, -64], + [12, -37], + [-45, -42], + [-78, -18], + [-107, -9], + [-54, -42], + [-73, -10], + [-38, -21], + [3, -60], + [-34, -27], + [-8, -128], + [41, -41], + [-32, -36], + [17, -39], + [-88, -103], + [-83, -70], + [-54, -120], + [-76, -58], + [-21, -115], + [-43, 32], + [-70, 2], + [-34, -29], + [-42, -104], + [-12, -64], + [9, -56], + [26, -38], + [-1, -70], + [-31, -31], + [-83, -15], + [27, -143], + [75, -29], + [26, -50], + [11, -79], + [-36, -22], + [-129, 124], + [-101, 36], + [-72, -10], + [-72, -78], + [-46, -10], + [-42, 31], + [-30, -18], + [-68, 91], + [-45, 7], + [-117, -62], + [-22, 71], + [41, 4], + [18, 124], + [120, 89], + [-19, 75], + [-49, -17], + [-45, 7] + ], + [ + [14378, 18716], + [18, -25], + [-60, -56], + [-3, -11], + [-1, -10], + [0, -7] + ], + [ + [14293, 18535], + [-17, 18], + [-18, 19], + [-58, 46], + [11, 57], + [-16, 37], + [-20, 14], + [-1, 2], + [-2, 7], + [0, 3], + [2, 7], + [11, 19], + [3, 3], + [4, 7], + [4, 6], + [5, 8], + [2, 5], + [31, 23], + [3, 1], + [19, 3], + [14, 7], + [3, 1], + [11, 9], + [10, 11], + [7, 11], + [2, 3], + [1, 1], + [25, 37] + ], + [ + [14423, 18927], + [-20, 51], + [50, 44], + [54, -11], + [2, -38] + ], + [ + [14694, 19141], + [-6, -72], + [-55, -39], + [1, 68], + [60, 43] + ], + [ + [14618, 19175], + [30, -31], + [-25, -29], + [-43, 22], + [38, 38] + ], + [ + [14208, 19604], + [33, -18], + [60, 12], + [61, -31], + [3, -92], + [21, -38], + [0, -67], + [152, 74], + [70, 77], + [87, 27], + [51, -29], + [63, 17], + [81, -4], + [-43, -86], + [0, -37], + [-56, -78], + [28, -8], + [-45, -77], + [-35, -26], + [-58, -2], + [-28, 43], + [-60, -22], + [-92, 36], + [-36, -5], + [-57, 26], + [-36, -39], + [42, -23], + [1, -63], + [-39, -100], + [-53, -28], + [-13, -31], + [-97, -57], + [-33, -93], + [-45, -43], + [-57, -18], + [-17, -54], + [-36, -34], + [-18, 68], + [-33, 44], + [30, 46], + [-90, 19], + [53, 94], + [1, 53], + [-31, 50], + [-7, 60], + [45, 86], + [18, 84], + [59, 82], + [21, 66], + [-19, 59], + [56, -5], + [97, 56], + [1, 29] + ], + [ + [14960, 19734], + [34, -35], + [-37, -42], + [-27, 34], + [30, 43] + ], + [ + [14856, 19771], + [32, -33], + [2, -56], + [-40, -91], + [-68, 7], + [19, 71], + [-38, 23], + [26, 46], + [67, 33] + ], + [ + [16616, 20239], + [-126, -15], + [-38, -83], + [-21, -104], + [-77, -42], + [-37, -68], + [-4, -46], + [-60, 0], + [-45, -76], + [-16, -117], + [-47, -34], + [-71, 21], + [-29, -72], + [-41, -17], + [9, -46], + [-29, -33], + [21, -169], + [43, -68], + [44, -9], + [23, -67], + [-4, -47], + [41, -19], + [35, -48], + [-63, -102], + [-56, -3], + [-10, -92], + [34, -5], + [32, -65], + [48, -51], + [-10, -84], + [-89, 6], + [-34, 29], + [-58, 5], + [-70, -118], + [-78, -12], + [-47, 34], + [-62, -22], + [-39, -49], + [-43, 15], + [-55, -17], + [-160, 7] + ], + [ + [14697, 18685], + [18, 107], + [62, 78], + [40, 8], + [12, 56], + [40, 58], + [64, 28], + [-30, 49], + [50, 108], + [162, 168], + [-15, 81], + [-34, 1], + [-11, 47], + [59, 22], + [-72, 42], + [56, 38], + [65, 97], + [66, 40], + [-26, 38], + [-169, 8], + [-43, -22], + [-92, -15], + [-5, 67], + [76, 47], + [82, 33], + [50, 69], + [65, 32], + [15, 71], + [-18, 71], + [29, 50], + [-63, 105], + [-111, 24], + [-8, 70], + [-79, 49], + [-35, -5], + [-39, 31], + [-26, 160], + [-58, 51] + ], + [ + [15655, 20870], + [87, -45], + [26, -52], + [35, -26], + [63, -5], + [40, -62], + [39, -1], + [49, 62], + [-7, 45], + [25, 39], + [-84, 119], + [13, 73], + [65, 25], + [37, 30], + [42, 2], + [100, -27], + [105, -107], + [19, -115], + [40, -22], + [46, -55], + [23, -99], + [36, -31], + [2, -77], + [19, -176], + [33, -38], + [79, -45], + [29, -43] + ], + [ + [25411, 26053], + [12, -30], + [61, -59], + [46, -87], + [37, -31], + [-34, -106], + [48, -157], + [-4, -46], + [-30, -90], + [-1, -76], + [-35, -24], + [31, -62], + [-1, -51], + [44, -50], + [45, -95], + [-24, -104], + [71, -45], + [74, 36], + [13, -84], + [61, -31], + [40, 14], + [50, -122] + ], + [ + [25915, 24753], + [22, -36], + [-4, -46], + [27, -34] + ], + [ + [25960, 24637], + [-34, -72], + [-82, 12], + [-25, 60], + [-61, -6], + [-62, 13], + [-43, -80], + [-74, -8], + [-118, 42], + [-74, 8], + [-38, 59], + [-15, 59] + ], + [ + [25334, 24724], + [29, 60], + [-67, 93], + [-36, 18], + [-31, 102], + [-44, 28], + [-22, 47], + [-59, 36], + [0, 59], + [-75, 2], + [-26, -66], + [35, -14], + [-13, -47], + [-63, -4], + [-11, 25], + [-99, 70], + [8, 77], + [-98, 41], + [-44, -10], + [-75, 27], + [-19, 70] + ], + [ + [23628, 26760], + [24, -27], + [75, -6], + [90, 44], + [41, 64], + [74, -5], + [71, 42], + [47, 69], + [122, 28], + [167, 54], + [90, -74], + [24, -69], + [39, -30], + [-15, -44], + [-49, -19], + [-41, -46], + [-17, -69], + [-61, -53], + [-50, -76], + [124, 10], + [-29, -53], + [67, -31], + [31, -37], + [89, 0], + [-30, -141], + [76, 75], + [90, 12], + [-19, 32], + [-69, -12], + [-39, 68], + [89, 70], + [19, -13], + [68, 34], + [96, -32] + ], + [ + [27324, 25309], + [-78, -21], + [-82, -51], + [-34, -126], + [15, -93], + [-63, -114], + [-117, -150], + [-29, -50], + [-37, -144], + [53, -102], + [-4, -77], + [-37, -40], + [183, -24], + [52, -23], + [29, -59], + [68, -38], + [87, -33], + [7, -21], + [69, -35], + [64, 0], + [50, -16], + [26, -48], + [40, -13], + [1, -46], + [86, -1], + [28, -93], + [-34, -37], + [-106, -72], + [31, -32], + [41, -92], + [-16, -31], + [31, -55], + [-159, -58], + [-89, 18], + [-19, 47], + [129, -8], + [-16, 67], + [-48, -34], + [-70, 33], + [-148, 5], + [36, 69], + [-64, -24], + [1, -27], + [-143, -130], + [-45, 41], + [-84, -46], + [-49, 33], + [-30, -103], + [-89, 17], + [-106, -68], + [-73, -30], + [-21, 37], + [-69, -62], + [-23, 4], + [-48, -66], + [8, -79], + [55, 2], + [-22, -60], + [-129, -15], + [-68, -21], + [35, -31], + [49, -8], + [3, -41], + [71, -45], + [-26, -64], + [7, -53], + [-66, -8], + [-106, -123], + [-69, 37], + [-5, -65], + [-38, -39], + [-42, 12], + [-59, -73], + [-62, -122], + [-72, -195] + ], + [ + [25885, 22296], + [-62, 28], + [-40, -20], + [-48, 59], + [-49, 29], + [-44, 80], + [-56, 41], + [7, 60], + [-13, 74], + [12, 52] + ], + [ + [25592, 22699], + [20, 46], + [59, 12], + [-13, 47], + [63, 77], + [64, 4], + [92, 67], + [31, 61], + [94, -6], + [69, -19], + [-15, 130], + [25, 26], + [-3, 98], + [15, 72], + [-37, 66], + [28, 34], + [45, 99], + [-66, 89], + [-4, 23], + [67, 35], + [-40, 29], + [-45, 115], + [-31, 35], + [50, 93], + [134, 31], + [85, 0], + [26, 111], + [-16, 73], + [-65, -26], + [-47, 98], + [-82, -27], + [-105, 50], + [-26, 39], + [10, 49], + [34, 48], + [-5, 58], + [38, 50], + [-43, 76], + [9, 20], + [-47, 55] + ], + [ + [25915, 24753], + [81, 21], + [54, 32], + [-7, 50], + [78, 60], + [-51, 19], + [-27, 35], + [57, 15], + [62, -21], + [64, 8], + [33, -33], + [101, -31], + [57, 31], + [56, 7], + [33, 34], + [89, 37], + [20, 89], + [41, 30], + [46, 105], + [-3, 103], + [45, 51], + [-9, 21], + [18, 108], + [-19, 12], + [36, 73], + [-82, 75], + [5, 52] + ], + [ + [36894, 32876], + [41, -26], + [-22, -71], + [-38, 22], + [-21, 48], + [40, 27] + ], + [ + [37013, 34178], + [11, -29], + [-52, -26], + [-6, 52], + [47, 3] + ], + [ + [37021, 34391], + [23, -36], + [15, -122], + [28, -16], + [-20, -73], + [-44, 75], + [-85, -60], + [-15, -39], + [18, -44], + [-60, -49], + [-12, -29], + [-70, -30], + [-9, -52], + [89, -61], + [13, -29], + [-51, -41], + [-24, 21], + [-36, -72], + [-38, 1], + [-83, -65], + [31, -24], + [128, -28], + [-10, -60], + [-74, -61], + [-47, -6], + [-15, -43], + [62, -18], + [9, -46], + [81, 35], + [23, -65], + [-16, -69], + [-41, 2], + [-8, 49], + [-50, -26], + [23, -52], + [-3, -69], + [-43, -69], + [64, -51], + [-46, -42], + [12, -28], + [59, -2], + [28, -61], + [11, -84], + [-66, -14], + [-31, 27], + [-48, -7], + [-6, 69], + [-36, 37], + [-29, 94], + [-39, 6], + [-84, -24], + [-3, 60], + [63, 4], + [48, 49], + [-69, 7], + [-59, -54], + [-113, 6], + [-159, -42], + [-123, -76], + [-50, 27], + [-92, 11], + [-51, -28], + [-20, -84], + [51, -32], + [24, -39], + [-55, -45], + [-65, -15], + [-117, -187], + [-42, -97], + [-46, -170], + [-22, -205], + [16, -174], + [18, -52] + ], + [ + [34349, 32093], + [18, 71], + [-26, 65], + [2, 47], + [173, 1], + [99, 51], + [19, 94], + [42, 27], + [70, 119], + [-24, 113], + [16, 94], + [32, 49], + [74, 73], + [-4, 76], + [68, 43], + [30, 41], + [8, 86], + [76, 53], + [-42, 73], + [-60, 36], + [2, 47], + [-29, 37], + [38, 59], + [-3, 49], + [-59, 100], + [114, 23], + [33, 73], + [10, 67], + [-22, 54], + [68, 101], + [-83, 41], + [-7, 77], + [-26, 41], + [-92, 72], + [22, 33] + ], + [ + [17698, 20030], + [-29, -9], + [-32, -60], + [-54, -41], + [-81, -37], + [-30, -47], + [21, -46], + [-61, -97], + [-82, -29], + [-40, -86], + [15, -64], + [80, -51], + [-66, -53], + [-70, 32], + [-19, -59], + [59, -39], + [10, -52], + [-86, -25], + [-40, -118], + [-55, -104], + [-35, -100], + [1, -44], + [-44, -117], + [-3, -45], + [-34, -130], + [-70, -171], + [3, -22], + [-88, -296], + [-17, -172], + [9, -44], + [55, -68], + [-37, -121], + [9, -29], + [-33, -93], + [23, -30], + [-13, -103], + [-76, -45], + [-36, -63], + [-29, -133], + [2, -86], + [-47, -25], + [19, -96], + [-78, -73], + [6, -85], + [-38, 27], + [-14, 43], + [-92, -26], + [-33, 15], + [-20, 46], + [12, 51], + [-32, 9], + [-39, 50], + [-81, 10] + ], + [ + [16616, 20239], + [49, -56], + [125, 11], + [40, 34], + [77, 22], + [27, -40], + [56, -44], + [-17, -47], + [61, -50], + [70, -1], + [30, 36], + [65, 1], + [91, -18], + [69, 15], + [49, 57], + [15, 73], + [47, 17], + [113, -21], + [85, -43], + [-30, -75], + [22, -91], + [38, 11] + ], + [ + [31253, 27522], + [-10, -44], + [48, -75], + [-15, -74] + ], + [ + [31276, 27329], + [-41, 1], + [-73, -90], + [-120, 7], + [-3, 67], + [-29, 34], + [-120, -5], + [-56, 7], + [-23, -39], + [-48, -8], + [-49, 50], + [17, 46], + [-53, 42], + [-106, 31], + [-45, -58], + [-47, -95], + [-86, -105], + [-72, 60], + [-20, -12], + [-95, -213], + [85, -56], + [-5, -24], + [-95, -82], + [22, -89], + [51, -79] + ], + [ + [30265, 26719], + [-31, -43], + [2, -47], + [-29, -67], + [-36, 14], + [-57, -62], + [34, -25], + [-42, -54], + [4, -43], + [40, -33], + [-15, -68], + [-61, -6], + [0, -64], + [33, -20], + [24, -69], + [-17, -44], + [-198, -83], + [-46, -77], + [-44, 3], + [-108, -62], + [-41, -41], + [-52, 0], + [-46, -90], + [-23, 9], + [-85, -19] + ], + [ + [29015, 28436], + [35, 52], + [55, 29], + [43, 77], + [-3, 71], + [40, 50], + [61, 16], + [-35, 65], + [13, 50], + [60, 42], + [47, 3], + [0, 86], + [28, 104], + [-19, 121], + [5, 74], + [18, 30] + ], + [ + [29363, 29306], + [39, 14], + [98, 85], + [6, 28], + [73, 95], + [-15, 98], + [109, 31], + [69, -34], + [63, 11], + [55, -14], + [37, -52], + [-56, -122], + [95, -65], + [41, 19], + [18, 49], + [35, 32], + [64, 16], + [61, -14], + [119, 49], + [68, 7], + [68, -38], + [11, 138], + [42, 31], + [41, -6], + [37, 25], + [42, 108], + [31, 39], + [138, 49], + [99, 25], + [103, -19], + [42, -88], + [-8, -125], + [76, -94], + [39, -29], + [99, -42], + [-14, -69], + [23, -43], + [-52, -80], + [38, -23], + [12, -45] + ], + [ + [11985, 20152], + [29, -49], + [-10, -48], + [-57, -13], + [38, 110] + ], + [ + [11623, 20169], + [2, -59], + [66, -67], + [-10, -71], + [23, -52], + [48, -32], + [41, -50], + [-7, -33], + [-73, 3], + [-57, -17], + [-38, 47], + [-84, -48], + [58, -100], + [-44, -42], + [-38, 12], + [-30, 64], + [-93, -9], + [-47, 15], + [-27, -42], + [-46, 35], + [-64, 22], + [21, 29], + [54, 14], + [65, 83], + [-39, 27], + [13, 52], + [-20, 39], + [0, 101], + [37, 47], + [68, -44], + [12, -49], + [41, 26], + [40, -19], + [40, 28], + [50, 66], + [38, 24] + ], + [ + [11732, 20275], + [62, -46], + [27, -58], + [-62, -84], + [-86, 44], + [3, 100], + [56, 44] + ], + [ + [11909, 20342], + [18, -55], + [-18, -36], + [-51, -40], + [-19, 58], + [-79, 32], + [32, 51], + [42, -18], + [15, -36], + [60, 44] + ], + [ + [11983, 20477], + [49, -20], + [29, -53], + [-26, -80], + [-88, 13], + [-25, 72], + [43, 1], + [18, 67] + ], + [ + [13190, 20508], + [44, -17], + [-14, -50], + [-38, 17], + [8, 50] + ], + [ + [13215, 20775], + [45, 1], + [-23, -68], + [-51, -22], + [-15, 54], + [44, 35] + ], + [ + [12225, 21011], + [-20, -92], + [35, -39], + [-24, -101], + [-33, -55], + [-6, -53], + [44, -73], + [127, 51], + [15, -66], + [-65, -48], + [-16, -43], + [-47, -2], + [-45, -42], + [-29, -55], + [22, -15], + [17, -67], + [-48, 2], + [-30, -35], + [-44, 49], + [5, 59], + [-18, 101], + [-72, 10], + [0, 55], + [33, 27], + [52, -1], + [19, 44], + [-15, 74], + [47, 27], + [39, 82], + [35, 14], + [14, 43], + [-29, 45], + [37, 104] + ], + [ + [12112, 21135], + [37, -14], + [-35, -59], + [-58, 34], + [56, 39] + ], + [ + [12263, 21332], + [34, -78], + [-46, -51], + [-73, 16], + [-40, 36], + [46, 40], + [47, 3], + [32, 34] + ], + [ + [13572, 21409], + [-34, -26], + [-26, -71], + [46, -82], + [60, -53], + [-12, -82], + [15, -42], + [138, -56], + [103, 9], + [36, -86], + [-9, -41], + [-53, -10], + [-5, -35], + [49, -49], + [66, -27], + [34, -54], + [122, -108], + [182, -56], + [100, -11] + ], + [ + [14384, 20529], + [-1, -52], + [-68, -40], + [-35, -43], + [-56, -36], + [5, -22], + [74, -64], + [36, 0], + [86, 40], + [38, 35], + [75, 6], + [58, -15], + [61, -41], + [18, -58], + [62, -120], + [-21, -37], + [12, -41], + [-62, -82], + [17, -59], + [-99, -69], + [-55, 4], + [-69, -58], + [-32, -43], + [-89, -40], + [-23, 64], + [-81, 47], + [12, 93], + [41, 7], + [33, 43], + [53, 35], + [21, 46], + [-40, 56], + [6, 50], + [-28, 24], + [-67, 3], + [-34, -19], + [-85, 15], + [-119, -84], + [-139, 17], + [6, -49], + [-80, -104], + [-40, -82], + [-59, -44], + [-62, -27], + [5, -26], + [-65, -70], + [-44, -18], + [-30, 28], + [45, 49], + [3, 33], + [47, 104], + [-40, 21], + [41, 44], + [51, -16], + [11, 65], + [-66, 33], + [-27, 89], + [-53, 46], + [3, 48], + [-59, 8], + [-10, -34], + [-80, 60], + [-46, 77], + [6, 32], + [-62, 119], + [-43, 41], + [12, 86], + [42, 48], + [-15, 67], + [23, 7], + [46, 136], + [54, -26], + [106, -91], + [-32, -28], + [-27, -68], + [26, -20], + [37, 53], + [34, -31], + [38, 0], + [44, -74], + [-29, -24], + [21, -41], + [-22, -79], + [-16, -114], + [28, 2], + [52, -46], + [20, 31], + [43, -13], + [62, 59], + [61, -46], + [26, 11], + [78, -50], + [10, 37], + [-55, 59], + [-17, 50], + [-47, 44], + [-6, 103], + [45, 42], + [-11, 65], + [-135, 114], + [-44, -6], + [-36, -29], + [-78, 75], + [-44, -12], + [-20, -46], + [-46, 12], + [-26, 89], + [32, -4], + [-6, 76], + [-44, 12], + [-18, -40], + [-61, -15], + [-42, 9], + [61, 58], + [-74, 70], + [0, 46], + [-96, 42], + [-101, 14], + [14, 89], + [58, 40], + [-20, 78], + [-34, 41], + [29, 88], + [-14, 31], + [146, -20], + [48, 43], + [13, -41], + [62, -51], + [90, 49], + [81, -1], + [5, -69] + ], + [ + [13099, 21575], + [2, -87], + [27, -33], + [-47, -19], + [-7, -31], + [-55, -13], + [31, -51], + [-65, -67], + [-17, -62], + [-50, -87], + [-51, -48], + [-120, -55], + [-2, 36], + [58, 29], + [-52, 29], + [10, 46], + [52, 43], + [-14, 53], + [40, 44], + [43, 17], + [-17, 114], + [61, 15], + [98, 2], + [58, 52], + [17, 73] + ], + [ + [13586, 21581], + [64, -16], + [-7, -28], + [62, -24], + [-93, -77], + [-26, 145] + ], + [ + [12861, 21647], + [-13, -70], + [13, -125], + [-35, -12], + [-27, 32], + [36, 103], + [1, 57], + [25, 15] + ], + [ + [13502, 21705], + [63, -91], + [-53, 7], + [-60, -55], + [-28, 34], + [46, 20], + [32, 85] + ], + [ + [13103, 21807], + [37, -64], + [-39, -17], + [-68, 17], + [10, 40], + [60, 24] + ], + [ + [13404, 22618], + [35, -26], + [92, -17], + [-26, -85], + [34, -21], + [2, -54], + [35, -46], + [-34, -32], + [-46, 6], + [-92, -74], + [-26, 0], + [-85, 71], + [-14, 75], + [9, 76], + [28, 13], + [20, 72], + [68, 42] + ], + [ + [12891, 24566], + [58, -43], + [23, -107], + [-25, -58], + [-16, -141], + [-71, -118], + [-43, -33], + [-75, -88], + [15, -28], + [-12, -74], + [37, -9], + [-33, -59], + [37, -41], + [18, -58], + [-54, 1], + [12, -112], + [-54, -35], + [-59, 3], + [-22, -73], + [19, -34], + [-48, -40], + [-12, -70], + [-25, -35], + [-2, -78], + [-105, -81], + [-122, 76], + [24, 138], + [0, 77], + [35, 142], + [-4, 71], + [64, 23], + [-4, -62], + [122, 56], + [34, -67], + [50, 14], + [-28, 45], + [64, 32], + [-10, 82], + [-23, 16], + [-34, -77], + [-66, 8], + [-9, 24], + [-71, -7], + [68, 71], + [-10, 96], + [8, 96], + [35, 49], + [23, 77], + [38, 41], + [-25, 43], + [-49, 16], + [40, 59], + [32, 139], + [141, 17], + [51, 71], + [63, 45] + ], + [ + [25592, 22699], + [-47, -10], + [-39, 22], + [-28, -23], + [-87, -22], + [-66, 40], + [-106, -6], + [-29, -37], + [-48, -23], + [-21, 56], + [-38, 13], + [37, 112], + [37, 40], + [-31, 76], + [-58, 20], + [6, 51], + [-36, 56], + [-79, 38], + [13, 52], + [67, 58], + [14, 47], + [69, 36], + [38, 56], + [-14, 49], + [68, 47], + [81, -36], + [39, 57], + [-21, 64], + [-35, 32], + [-43, -3], + [-37, 122], + [6, 64], + [-41, 66] + ], + [ + [25163, 23813], + [62, 36], + [-15, 48], + [34, 59], + [-14, 184], + [-47, 50], + [57, 87], + [-45, 69], + [14, 88], + [24, 63], + [-1, 59], + [52, 43], + [15, 131], + [35, -6] + ], + [ + [30825, 32920], + [28, -28], + [-21, -59], + [5, -63], + [-35, -109], + [1, -36], + [-65, -96], + [-48, -105], + [1, -79], + [76, -46], + [91, 20], + [78, 33], + [27, -55], + [-48, -114], + [-52, -76], + [-49, -129], + [-54, -61], + [-88, -43], + [-130, -111], + [-102, -6], + [-57, -38], + [-65, -19], + [-62, 16], + [0, 61], + [94, 17], + [50, 94], + [-22, 52], + [61, 81], + [63, 40], + [-2, 44], + [-70, 63], + [-43, 0], + [-59, -97], + [-45, 29], + [18, 121], + [-13, 73], + [30, 34], + [49, 110], + [37, 30], + [28, 72], + [50, 73], + [34, 7], + [87, 88], + [95, 60], + [1, 49], + [28, 48], + [50, 45], + [48, 10] + ], + [ + [32315, 33284], + [-4, -68], + [-65, -5], + [69, 73] + ], + [ + [29363, 29306], + [-17, 65], + [-43, 93], + [-10, 94], + [-29, 35], + [8, 89], + [-110, 62], + [-53, 60] + ], + [ + [29109, 29804], + [31, 2], + [139, 46], + [77, 35], + [96, 28], + [62, 35], + [105, 26], + [89, 48], + [129, 91], + [84, 28], + [93, 104], + [73, -20], + [80, -2], + [87, 14], + [74, 34], + [171, 134], + [197, 190], + [97, 54], + [98, 41], + [52, 53], + [44, 68], + [62, 124], + [117, 154], + [73, 43], + [37, 77], + [27, 26], + [49, 117], + [31, 118], + [-4, 24], + [72, 184], + [87, 94], + [115, 79], + [168, 98], + [103, 73], + [67, 33], + [72, 0], + [185, 69], + [177, 138], + [108, 117], + [124, 186], + [-1, 51], + [42, 80], + [-17, 22], + [15, 63], + [4, 204], + [8, 64], + [54, 118], + [30, 38], + [104, 206] + ], + [ + [32896, 33413], + [110, -62], + [39, 6], + [33, -32], + [124, -19], + [49, -38], + [-25, -37], + [14, -44], + [-31, -126], + [46, -26], + [37, -54], + [85, -27], + [41, 12], + [59, -29], + [116, -114], + [1, -24], + [-80, -122], + [-138, -79], + [-159, 20], + [-52, -76], + [17, -47], + [-1, -74], + [-34, -75], + [36, -71], + [-70, -47], + [-7, -74], + [-26, -41], + [10, -47], + [-36, -131], + [19, -52], + [47, -55], + [66, -30], + [45, 13], + [45, -72] + ], + [ + [16326, 22029], + [40, 25], + [27, -29], + [68, -5], + [46, -46], + [91, 2], + [40, -28], + [33, 15], + [121, -9], + [10, 45], + [75, 59], + [35, 54], + [49, 32], + [-10, 36], + [111, 25], + [59, 24], + [122, -67], + [26, 14], + [80, -129], + [65, -78], + [21, -88], + [-24, -57], + [14, -53], + [-16, -60], + [-37, -62], + [-20, -81], + [-31, 0], + [-53, 37], + [-50, -14], + [23, -52], + [-4, -42], + [-91, -13], + [-22, -53], + [-88, 20], + [-11, 27], + [-74, -16], + [-10, -44], + [37, -169], + [149, -49], + [51, 36], + [152, 42], + [123, -90], + [160, 14], + [110, 46], + [29, -10], + [-54, -77], + [-38, -77], + [-48, -35], + [-46, -135], + [71, -16], + [47, 37], + [52, -2], + [-2, -53], + [-37, -5], + [-25, -36], + [92, -50], + [54, 32], + [22, -35], + [42, -13], + [66, 27], + [8, -27], + [-66, -34], + [-62, 17], + [-41, -20], + [-5, -45], + [-35, -36], + [-7, -49], + [124, -97], + [98, -31], + [-50, -47], + [28, -72], + [-77, -81], + [41, -49], + [-18, -50], + [-48, 7], + [-21, -51], + [-88, -3], + [-41, -69], + [10, -33] + ], + [ + [22077, 24081], + [30, -40], + [-43, -48], + [-77, 49], + [57, 40], + [33, -1] + ], + [ + [22602, 24233], + [8, -118], + [-16, -119], + [-37, -34], + [-35, 36], + [-5, 40], + [-80, -21], + [-60, -125], + [-9, 69], + [15, 33], + [-24, 48], + [-66, 12], + [-55, -44], + [-50, 18], + [47, 119], + [38, -21], + [85, 26], + [79, 60], + [58, -15], + [54, 38], + [53, -2] + ], + [ + [22493, 24620], + [38, -64], + [-63, 8], + [-22, 35], + [47, 21] + ], + [ + [22592, 24632], + [-40, -15], + [-67, 17], + [-98, -49], + [-30, 37], + [-43, -3], + [-17, -34], + [93, -33], + [-48, -37], + [-65, -79], + [-32, -4], + [2, -73], + [-46, -1], + [-56, -61], + [-55, -20], + [-77, 11], + [-14, 26], + [-72, 31], + [-57, -22], + [-96, -13], + [27, -46], + [51, 42], + [117, 8], + [15, -23], + [-22, -73], + [-42, -16], + [-40, -44], + [-58, -16], + [12, -65], + [-50, -30], + [6, -61], + [-45, -13], + [-78, 15], + [-27, 26], + [-72, 11], + [-43, -29], + [11, -65], + [-65, 19], + [-45, 81], + [-32, -10], + [-75, 29], + [1, 108], + [-42, -53], + [-30, 30], + [-43, -36], + [-87, -21], + [-15, -55], + [-71, -8], + [-146, -63], + [-56, 44], + [-9, 38] + ], + [ + [20462, 25367], + [36, 24], + [5, 67], + [57, -8], + [35, 26], + [146, 35], + [-33, 114], + [28, 37], + [77, -32], + [122, 47], + [21, 49], + [-21, 45], + [96, 25], + [28, 71], + [10, 72], + [40, 89], + [84, -13], + [87, -47], + [41, 14], + [87, -15], + [108, -71], + [52, -87], + [66, 48], + [20, 52], + [117, 47], + [3, 46], + [129, 45], + [27, -29], + [-21, -60], + [99, -36], + [94, 16], + [91, -97], + [-12, -58], + [40, -9], + [-9, -89], + [51, -60], + [29, 33], + [141, 56], + [34, -27], + [69, 13], + [91, 62], + [20, 35], + [60, -8] + ], + [ + [1675, 61], + [43, -17], + [-27, -44], + [-77, 8], + [5, 33], + [56, 20] + ], + [ + [2099, 486], + [58, -46], + [-55, -35], + [-25, 43], + [22, 38] + ], + [ + [2267, 682], + [31, -48], + [-51, -3], + [20, 51] + ], + [ + [2044, 714], + [36, -20], + [22, -42], + [-82, 13], + [24, 49] + ], + [ + [1656, 906], + [67, -62], + [104, -38], + [45, -25], + [32, 4], + [47, -46], + [19, -41], + [-13, -50], + [-42, -21], + [-17, -43], + [8, -57], + [-81, -44], + [-56, 39], + [-58, -6], + [-102, 23], + [-59, 45], + [-12, -49], + [-75, 11], + [-38, 64], + [36, 35], + [54, 1], + [92, 63], + [-5, 115], + [46, 50], + [8, 32] + ], + [ + [128, 988], + [67, -26], + [-54, -59], + [-60, 12], + [-32, -12], + [-49, 47], + [58, 25], + [70, 13] + ], + [ + [2724, 1306], + [46, -14], + [-13, -86], + [-60, -56], + [12, -27], + [-54, -64], + [-1, -40], + [-39, -21], + [-23, -57], + [17, -99], + [-17, -119], + [-24, -33], + [-43, 21], + [-70, -56], + [-63, 4], + [-12, 46], + [-64, 32], + [58, 60], + [3, 52], + [-44, 49], + [-63, -27], + [-38, 19], + [15, 44], + [46, 6], + [65, 55], + [27, -47], + [65, -17], + [27, 21], + [58, -8], + [14, 79], + [54, 70], + [24, -12], + [41, 58], + [-13, 51], + [28, 17], + [41, 99] + ], + [ + [3501, 1460], + [35, -27], + [1, -34], + [-43, -34], + [-55, 6], + [-16, 48], + [21, 27], + [57, 14] + ], + [ + [4403, 1889], + [74, -34], + [39, -62], + [-11, -39], + [-68, 11], + [-35, -22], + [-39, 10], + [-18, 67], + [40, -7], + [18, 76] + ], + [ + [4603, 2006], + [80, -152], + [59, -65], + [-7, -45], + [44, -31], + [56, -2], + [40, -50], + [60, -11], + [42, -58], + [-58, -24], + [-106, 7], + [-49, -22], + [-81, -16], + [-91, 56], + [41, 31], + [-18, 67], + [-32, 44], + [45, 35], + [-4, 55], + [39, 22], + [-44, 67], + [-16, 92] + ], + [ + [16428, 4211], + [52, -8], + [24, -35], + [-34, -86], + [-51, -11], + [-37, 25], + [15, 100], + [31, 15] + ], + [ + [16535, 4411], + [85, -18], + [-22, -51], + [-44, 0], + [-29, 40], + [10, 29] + ], + [ + [8747, 5025], + [29, -26], + [-23, -74], + [-45, 1], + [39, 99] + ], + [ + [7591, 5407], + [72, -64], + [11, -66], + [-18, -16], + [-14, -83], + [-41, 29], + [-20, 50], + [-42, 42], + [-48, 8], + [-30, 44], + [130, 56] + ], + [ + [8504, 5891], + [10, -61], + [-64, -2], + [18, 45], + [36, 18] + ], + [ + [10061, 6067], + [28, -63], + [-82, 20], + [3, 26], + [51, 17] + ], + [ + [9654, 6195], + [21, -58], + [-127, -3], + [-27, 34], + [22, 35], + [111, -8] + ], + [ + [10529, 6522], + [73, -78], + [18, 10], + [45, -159], + [-16, -99], + [-48, -38], + [-27, -96], + [-58, -58], + [-25, -47], + [-115, -16], + [-43, 16], + [-25, -18], + [11, -57], + [-44, 6], + [33, -68], + [-108, -81], + [-60, 35], + [-50, -9], + [34, -61], + [-120, -37], + [22, -36], + [-25, -33], + [-75, -4], + [-19, -68], + [-30, -10], + [-85, 40], + [-71, -23], + [-19, -90], + [77, -68], + [-10, -44], + [58, -63], + [58, 1], + [22, 58], + [101, 14], + [-71, -62], + [-100, -13], + [28, -44], + [-59, -4], + [-60, 50], + [-28, -37], + [-70, -34], + [9, -39], + [-37, -42], + [-21, -92], + [-54, -36], + [37, -67], + [70, 21], + [32, -33], + [-22, -42], + [-54, -53], + [-34, 0], + [-62, -45], + [-39, -59], + [-32, 1], + [-55, -36], + [-45, 14], + [10, 118], + [-30, 29], + [18, 39], + [-40, 87], + [24, 41], + [54, 19], + [16, 50], + [55, 64], + [89, 50], + [6, 29], + [-36, 51], + [-3, 59], + [-53, 126], + [2, 69], + [43, -42], + [70, 54], + [30, -26], + [52, 67], + [64, 39], + [-5, 52], + [54, 20], + [40, -3], + [109, 59], + [57, 49], + [17, 62], + [-123, 56], + [-51, 12], + [-30, 55], + [18, 79], + [-28, 26], + [12, 60], + [55, -23], + [81, 20], + [112, -46], + [-23, -37], + [-6, -59], + [42, -32], + [83, 5], + [74, 44], + [18, 59], + [35, 56], + [50, 10], + [32, 32], + [-12, 42], + [54, 19], + [74, 82], + [69, 136], + [-18, 34], + [27, 41] + ], + [ + [9895, 6706], + [38, -26], + [-36, -78], + [-32, 17], + [-6, 70], + [36, 17] + ], + [ + [10062, 7021], + [-35, -31], + [-26, -82], + [-41, -11], + [-38, 15], + [88, 103], + [52, 6] + ], + [ + [25163, 23813], + [-130, -17], + [-120, -78], + [-62, 47], + [-44, -33], + [-57, 0], + [-101, -44], + [-89, 14], + [-17, -42], + [-94, 2], + [-70, -11], + [-35, -26], + [-42, 15], + [-9, -47], + [-37, -18], + [-72, 7], + [-33, -25], + [-43, 3], + [-41, 94] + ], + [ + [24067, 23654], + [21, 21], + [78, -3], + [22, 28], + [72, 13], + [71, 29], + [42, 60], + [34, 11], + [59, 77], + [-59, 53], + [-70, -54], + [-18, 21], + [80, 50], + [67, -66], + [85, 69], + [74, 72], + [-5, 108], + [93, -7], + [53, 81], + [-68, 11], + [-17, 92], + [32, 45], + [-39, 31], + [37, 25], + [8, 142] + ], + [ + [14682, 20971], + [-19, -12], + [-114, 14], + [-4, 32], + [-67, 66], + [-37, -12], + [-19, -45], + [-62, -44], + [-86, -80], + [-11, -71], + [37, -58], + [64, -140], + [62, -64], + [-11, -32], + [-13, 2], + [-18, 2] + ], + [ + [13572, 21409], + [72, -75], + [32, 53], + [-22, 22], + [61, 103], + [6, 33], + [-73, 41], + [-99, 86], + [27, 57], + [86, 42], + [-19, 27], + [49, 65], + [80, 36], + [68, -26], + [80, -62], + [-49, -40], + [37, -24], + [8, -66], + [63, -20], + [77, 14], + [-2, 35] + ], + [ + [33119, 28047], + [85, -39] + ], + [ + [33540, 27071], + [-93, -7], + [-17, 40], + [-52, -13], + [-68, 14], + [-18, -58], + [-116, 33], + [-94, -15], + [-37, -65], + [-55, 28], + [-62, -39], + [-30, 3], + [-42, 66], + [-145, -54], + [-126, -3], + [-53, 57], + [-79, 15], + [-15, 62], + [-66, 33], + [-41, -7], + [-130, 8], + [-104, 54], + [-63, 3], + [-122, 33], + [-52, 42], + [-53, -30], + [-86, -25], + [-19, -42] + ], + [ + [31702, 27204], + [-109, -28], + [-70, 51], + [-43, -5], + [-73, 24], + [-13, 47], + [-118, 36] + ], + [ + [20304, 26408], + [-21, -53], + [-39, 1], + [-12, 49], + [72, 3] + ], + [ + [20552, 26137], + [3, -58], + [-43, -60], + [14, -179], + [-84, -5], + [-157, -63], + [-57, -41], + [45, -24], + [41, -82], + [-90, -67], + [-25, -117], + [9, -31] + ], + [ + [18072, 24028], + [-82, -43], + [-12, -47], + [-51, -53], + [43, -86], + [-112, -154], + [-70, 61], + [-39, -41], + [-55, -27], + [-76, 9], + [-30, -18], + [-87, 83], + [-16, 104], + [35, 35], + [18, 84], + [-144, -18], + [-44, 14], + [-10, 73], + [-50, 87], + [66, 61], + [2, 80], + [43, 16], + [-15, 79], + [-34, 23], + [-5, 52], + [-30, 91] + ], + [ + [17317, 24493], + [37, -7], + [116, 14], + [103, 33], + [71, 43], + [44, 50], + [-14, 51], + [41, 4], + [23, 42], + [45, 0], + [55, 45], + [29, 61], + [51, 13], + [81, 120], + [51, -17], + [60, 136], + [47, 17], + [99, 89], + [59, 37], + [94, 98], + [60, 7], + [89, 46], + [24, 71], + [132, 98], + [1, 57], + [27, 10], + [35, 65], + [43, 14], + [96, 83], + [67, 24], + [9, 25], + [89, 46], + [110, 40], + [68, 105], + [20, 94], + [-5, 57], + [-79, 42], + [-9, 25], + [68, 32], + [68, 15], + [119, -2], + [-42, 39], + [35, 23], + [72, 11], + [46, 37], + [85, 30], + [99, 3], + [29, 16], + [103, -4], + [-8, 63], + [122, -7], + [35, 31], + [42, 68], + [99, -8], + [65, -48], + [85, 23], + [112, 14], + [112, 1], + [-5, -42], + [-78, -5], + [-119, -35], + [-54, -31], + [-48, 22], + [-53, -67], + [17, -72], + [-43, -59], + [65, -34], + [62, 1], + [83, 32], + [57, -34], + [90, -25], + [46, -82] + ], + [ + [19931, 27621], + [63, -11], + [42, -57], + [-106, 28], + [1, 40] + ], + [ + [20146, 27822], + [40, -22], + [-21, -84], + [-44, -58], + [-46, -11], + [3, 65], + [-28, 67], + [96, 43] + ], + [ + [20077, 27874], + [26, -19], + [-42, -49], + [-55, -5], + [29, -64], + [-9, -36], + [-61, -9], + [-30, 45], + [-59, 2], + [45, -91], + [-97, 39], + [-7, 36], + [70, 94], + [60, -5], + [27, 48], + [42, -16], + [61, 30] + ], + [ + [20482, 28347], + [13, -28], + [71, -62], + [62, -24], + [15, -43], + [41, -25], + [-23, -43], + [9, -47], + [-14, -55], + [-62, -21], + [2, -58], + [-26, -10], + [-96, 29], + [-50, -44], + [-135, 124], + [13, 72], + [-27, 8], + [20, 77], + [39, 59], + [48, 22], + [27, 37], + [36, -13], + [37, 45] + ], + [ + [36409, 1769], + [36, -31], + [12, -43], + [-108, -68], + [0, 79], + [60, 63] + ], + [ + [36332, 3236], + [19, -55], + [-47, 7], + [28, 48] + ], + [ + [38001, 6146], + [94, -139], + [-42, -35], + [-17, 91], + [-27, 28], + [-8, 55] + ], + [ + [33311, 21002], + [30, -4], + [54, -61], + [48, -33], + [41, 0], + [23, -42], + [-5, -52], + [-32, -5], + [-36, -42], + [-78, 34], + [-11, 63], + [-41, 11], + [-35, 78], + [42, 53] + ], + [ + [33007, 22709], + [54, -73], + [-25, -41], + [-84, 22], + [1, 53], + [54, 39] + ], + [ + [32847, 23223], + [44, -9], + [39, -61], + [-8, -59], + [-55, -35], + [-66, -20], + [-41, 19], + [-17, 56], + [43, 63], + [-4, 35], + [65, 11] + ], + [ + [32091, 23498], + [53, -29], + [-7, -51], + [-43, -49], + [-34, 78], + [31, 51] + ], + [ + [32374, 23924], + [10, -48], + [-25, -36], + [-6, -111], + [-62, 11], + [23, 121], + [60, 63] + ], + [ + [32527, 24777], + [97, -27], + [43, -36], + [30, -73], + [-8, -126], + [-97, -3], + [-75, 46], + [-18, 183], + [28, 36] + ], + [ + [32025, 25559], + [-66, -93], + [-5, -116], + [53, -6], + [-13, -154], + [60, -15], + [47, -81], + [-33, -132], + [-56, -20], + [-51, -64], + [2, -52], + [-39, -80], + [-55, -40], + [-60, -69], + [-41, -66], + [-16, -81], + [11, -48], + [-75, 18], + [-38, -14], + [-22, -52], + [-119, -52], + [-47, -7], + [-33, 49], + [-75, 49], + [9, 63], + [-72, 65], + [30, 95], + [44, 25], + [-41, 94], + [7, 103], + [-6, 101], + [65, 57], + [-43, 87], + [-7, 57], + [30, 67], + [8, 53], + [90, -5], + [34, -21], + [53, 24], + [37, -17], + [-2, 77], + [-60, 53], + [-38, 57], + [-95, 53], + [-106, 28], + [-114, -3], + [-98, -38], + [-104, -10], + [-41, -23], + [-26, -62], + [-59, -82], + [-31, -21], + [64, -39], + [-23, -55], + [-111, -73], + [-115, -42], + [-104, -64], + [-59, -116], + [28, -63], + [-68, -109], + [-7, -32], + [-136, -92], + [-75, -156], + [1, -69], + [76, -79], + [-81, 0], + [-235, 100], + [-116, 34], + [-131, 20], + [-70, 0], + [-226, -47], + [-157, 38], + [-121, 21], + [-110, 8], + [20, 74], + [30, 48], + [-44, 22], + [-4, -59], + [-43, -6], + [16, 67], + [65, 87], + [0, 54], + [-79, -36], + [-70, 34], + [-14, -70], + [-36, -15], + [121, -191], + [-191, -12] + ], + [ + [30265, 26719], + [48, -111], + [9, -83], + [21, -15], + [17, -95], + [-38, -146], + [24, -43], + [-8, -58], + [-39, -57], + [38, -76], + [4, -68], + [59, -29], + [77, 50], + [76, -35], + [17, -109], + [33, -63], + [19, -86], + [23, 5], + [47, -53], + [124, -11], + [52, 56], + [19, 57], + [-34, 88], + [11, 45], + [-16, 69], + [44, 58], + [-13, 98], + [7, 67], + [100, 87], + [31, -33], + [27, -88], + [103, 11], + [45, -92], + [164, 35], + [117, 10], + [38, 26], + [70, -8], + [67, 38] + ], + [ + [22783, 23414], + [60, 6], + [43, 34], + [86, 5], + [40, -11], + [54, 42], + [0, -90], + [105, -60], + [-43, -69], + [-39, -99], + [11, -38], + [-30, -69], + [-2, -59], + [19, -66], + [68, -18], + [18, 31], + [57, -105], + [55, -26], + [3, -100], + [-93, -84], + [-12, -46], + [93, 9], + [65, -45], + [7, -27], + [-127, -54], + [-48, -32], + [-36, 0], + [-89, -57], + [-19, -61], + [-50, 4], + [1, -40], + [-67, -48], + [-85, -41], + [-56, -40], + [-67, -8], + [-37, -43], + [-7, -62], + [-39, -36], + [1, -40], + [-69, 3], + [-37, -20], + [-8, -58] + ], + [ + [23105, 23517], + [24, -47], + [-20, -36], + [-41, 36], + [37, 47] + ], + [ + [33307, 26664], + [58, -86], + [-62, -8], + [-14, 36], + [18, 58] + ], + [ + [33648, 26856], + [3, -7], + [0, -1], + [33, -65], + [-57, -31], + [40, -33], + [-82, -58], + [-95, 61], + [-56, -26], + [-30, 12], + [-26, -52], + [-51, 106], + [-28, -57], + [-12, -105], + [18, -48], + [58, -21], + [-22, -49], + [-7, 5], + [-77, 0] + ], + [ + [32072, 26785], + [-55, 42], + [-62, 12], + [-95, 56], + [-66, 93], + [-39, 99], + [-1, 47], + [-52, 70] + ], + [ + [20552, 26137], + [19, 175], + [130, -26], + [64, 14], + [41, 80], + [50, 10], + [48, 36], + [187, 40], + [157, -58], + [172, -14], + [91, 1], + [221, 17], + [97, 35], + [203, -9], + [155, 22], + [155, 34], + [101, 39], + [42, 66], + [60, 2], + [90, 52] + ], + [ + [27949, 29755], + [-48, -45], + [11, -36], + [-98, -127], + [56, -83], + [110, -91], + [137, -40], + [37, -30], + [67, -14], + [79, 18], + [124, -15], + [84, 12], + [21, 35], + [95, 67], + [-2, 31], + [36, 61], + [17, 77], + [-18, 40], + [32, 61], + [126, 67], + [45, 14], + [124, 10], + [26, 26], + [99, 11] + ], + [ + [25495, 21740], + [88, -24], + [-56, -48], + [-32, 72] + ], + [ + [25885, 22296], + [-72, -101], + [-5, -54], + [-66, -23], + [15, -94], + [28, -51], + [-73, -13], + [-22, -62], + [-109, -60], + [-62, -20], + [-53, -37], + [-44, -86], + [-34, 54], + [-72, -15], + [-42, 28], + [-54, 0], + [-78, 39], + [-89, -3], + [-30, 23], + [-112, 13], + [-49, 63], + [-93, 2], + [5, 25], + [-80, 37], + [-41, 53], + [15, 89], + [-27, 29], + [-78, 19], + [-24, 30], + [51, 45], + [75, 26], + [-30, 52], + [-55, 52], + [-40, -9], + [-16, 46], + [-44, 4], + [-59, 39], + [-73, -1], + [3, 40], + [-95, 41], + [-27, 33], + [-42, 105], + [-77, 37], + [-27, -12], + [-71, 10], + [37, 44], + [-14, 53], + [30, 131], + [91, 22], + [48, 104], + [-50, 42], + [-95, 5], + [18, 63], + [70, 103], + [73, -11], + [34, 50], + [-17, 56], + [-47, 9], + [-20, 82], + [-53, 62], + [-54, 35], + [-31, 47], + [3, 59], + [32, 9] + ], + [ + [32896, 33413], + [-8, 38], + [79, 137], + [59, 121], + [148, 112], + [37, 65], + [74, 53], + [31, 59], + [59, 153], + [34, 140], + [58, 120], + [70, 210], + [11, 58], + [-18, 53] + ], + [ + [17880, 22474], + [45, -46], + [-59, -25], + [-19, 33], + [33, 38] + ], + [ + [18357, 22515], + [94, -80], + [-82, -1], + [-48, 52], + [36, 29] + ], + [ + [18094, 22601], + [54, -28], + [-56, -83], + [-35, 17], + [45, 51], + [-8, 43] + ], + [ + [18432, 22843], + [82, -44], + [57, -79], + [75, 4], + [24, 46], + [49, -5], + [64, 66], + [37, -27], + [-51, -56], + [-82, -9], + [-26, -33], + [15, -80], + [-53, 0], + [-45, 64], + [-58, 9], + [-99, -52], + [-40, 0], + [-27, -39], + [-64, 106], + [3, 63], + [112, 85], + [27, -19] + ], + [ + [17675, 22891], + [-11, -59], + [-50, -50], + [-59, 19], + [86, 39], + [34, 51] + ], + [ + [18396, 23312], + [38, -12], + [-24, -57], + [-64, 53], + [50, 16] + ], + [ + [16453, 23943], + [-50, -29], + [-38, -61], + [-63, 25], + [26, 35], + [52, 4], + [73, 26] + ], + [ + [18406, 23461], + [25, -51], + [-25, -21], + [30, -61], + [-76, -23], + [24, -50], + [-39, -30], + [14, -92], + [-3, -55], + [24, -30], + [-17, -108], + [-52, -91], + [-114, -13], + [-7, -66], + [12, -103], + [33, -21], + [21, -64], + [-41, -33], + [-29, 7], + [-21, 60], + [16, 22], + [-88, 54], + [-46, 52], + [-54, -34], + [-113, 76], + [-22, 35], + [-53, -1], + [-31, 48], + [-68, 28], + [-26, 41], + [-56, 26], + [-41, -42], + [6, -39], + [-65, -6], + [-12, 47], + [68, 69], + [0, 27], + [-64, 40], + [-64, 1], + [-9, 22], + [-132, -20], + [-43, -33], + [-48, 16], + [-55, -55], + [-16, 36], + [-74, -72], + [-47, -23], + [-60, 16], + [-13, 44], + [-69, 21], + [14, -51], + [-42, -34], + [-39, 6], + [-14, 37], + [-62, 31], + [-93, -107], + [-21, -60], + [-36, 0], + [-99, -75], + [-117, 50], + [-65, -28], + [-37, 49], + [17, 59], + [-39, 36], + [-51, 20], + [-61, 78], + [-85, 11], + [-36, -8], + [-49, -55], + [-17, -56], + [-79, -59], + [-63, -69], + [-2, -47], + [-43, -1], + [-12, 49], + [41, 93], + [-17, 42], + [17, 59], + [-12, 96], + [-56, 30], + [-39, 68], + [9, 76], + [49, -6], + [73, 95], + [0, 86], + [-15, 63], + [-107, 114], + [35, 21], + [22, 57], + [-11, 53], + [32, 37], + [83, -22], + [170, 73], + [-35, 38], + [-44, -6], + [-82, 16], + [40, 78], + [62, -30], + [29, -36], + [59, 2], + [44, 30], + [119, -30], + [13, -49], + [36, -42], + [63, 20], + [69, -6], + [103, 28], + [37, -20], + [64, 26], + [11, 49], + [48, -9], + [83, 24], + [33, 65], + [96, 88], + [-15, 57], + [20, 49], + [66, -3], + [35, 50], + [35, 14], + [42, 47], + [3, 83], + [74, 50], + [10, 45], + [70, 16], + [23, -27], + [51, 20], + [26, 33] + ], + [ + [16231, 24762], + [50, -41], + [-37, -39], + [-24, 26], + [11, 54] + ] + ], + "transform": { + "scale": [0.0005048515201930755, 0.00043399868681727254], + "translate": [122.94208526611328, 24.0454158782959] + }, + "objects": { + "japan": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-23", + "NAME_0": "Japan", + "ID_1": 1, + "NAME_1": "Aichi", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "愛知県", + "VARNAME_1": "Aiti" + } + }, + { + "arcs": [[[5]], [[6, 7, 8, 9, 10]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-05", + "NAME_0": "Japan", + "ID_1": 2, + "NAME_1": "Akita", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "秋田県", + "VARNAME_1": null + } + }, + { + "arcs": [[[11]], [[12, -11, 13]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-02", + "NAME_0": "Japan", + "ID_1": 3, + "NAME_1": "Aomori", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "青森県", + "VARNAME_1": null + } + }, + { + "arcs": [[14, 15, 16, 17]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-12", + "NAME_0": "Japan", + "ID_1": 4, + "NAME_1": "Chiba", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "千葉県", + "VARNAME_1": "Tiba|Tsiba" + } + }, + { + "arcs": [[[18]], [[19, 20, 21, 22]], [[23]], [[24]], [[25]], [[26]], [[27]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-38", + "NAME_0": "Japan", + "ID_1": 5, + "NAME_1": "Ehime", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "愛媛県", + "VARNAME_1": null + } + }, + { + "arcs": [[28, 29, 30, 31, 32]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-18", + "NAME_0": "Japan", + "ID_1": 6, + "NAME_1": "Fukui", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "福井県", + "VARNAME_1": "Hukui" + } + }, + { + "arcs": [[[33]], [[34, 35, 36, 37, 38]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-40", + "NAME_0": "Japan", + "ID_1": 7, + "NAME_1": "Fukuoka", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "福岡県", + "VARNAME_1": "Hukuoka" + } + }, + { + "arcs": [[39, 40, 41, 42, 43, 44, 45]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-07", + "NAME_0": "Japan", + "ID_1": 8, + "NAME_1": "Fukushima", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "福島県", + "VARNAME_1": "Hukusima" + } + }, + { + "arcs": [[46, -5, 47, 48, -30, 49, 50]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-21", + "NAME_0": "Japan", + "ID_1": 9, + "NAME_1": "Gifu", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "岐阜県", + "VARNAME_1": "Gihu" + } + }, + { + "arcs": [[-43, 51, 52, 53, 54]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-10", + "NAME_0": "Japan", + "ID_1": 10, + "NAME_1": "Gunma", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "群馬県", + "VARNAME_1": "GunmaGumma" + } + }, + { + "arcs": [ + [[55]], + [[56]], + [[57]], + [[58]], + [[59]], + [[60]], + [[61]], + [[62]], + [[63]], + [[64]], + [[65]], + [[66]], + [[67, 68, 69, 70, 71]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-34", + "NAME_0": "Japan", + "ID_1": 11, + "NAME_1": "Hiroshima", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "広島県", + "VARNAME_1": "Hirosima" + } + }, + { + "arcs": [[[72]], [[73]], [[74]], [[75]], [[76]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-01", + "NAME_0": "Japan", + "ID_1": 12, + "NAME_1": "Hokkaido", + "TYPE_1": "Do", + "ENGTYPE_1": "Circuit", + "NL_NAME_1": "北海道", + "VARNAME_1": "Ezo|Yeso|Yezo" + } + }, + { + "arcs": [[[77]], [[78]], [[79]], [[80]], [[81]], [[82, 83, 84, 85, 86, 87]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-28", + "NAME_0": "Japan", + "ID_1": 13, + "NAME_1": "Hyogo", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "兵庫県", + "VARNAME_1": "Hiogo" + } + }, + { + "arcs": [[88, -18, 89, 90, -41]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-08", + "NAME_0": "Japan", + "ID_1": 14, + "NAME_1": "Ibaraki", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "茨城県", + "VARNAME_1": null + } + }, + { + "arcs": [[[91]], [[92, -50, -29, 93]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-17", + "NAME_0": "Japan", + "ID_1": 15, + "NAME_1": "Ishikawa", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "石川県", + "VARNAME_1": "Isikawa" + } + }, + { + "arcs": [[94, -7, -13, 95]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-03", + "NAME_0": "Japan", + "ID_1": 16, + "NAME_1": "Iwate", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "岩手県", + "VARNAME_1": null + } + }, + { + "arcs": [[[96, -20, 97]], [[98]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-37", + "NAME_0": "Japan", + "ID_1": 17, + "NAME_1": "Kagawa", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "香川県", + "VARNAME_1": null + } + }, + { + "arcs": [ + [[99]], + [[100]], + [[101]], + [[102]], + [[103]], + [[104]], + [[105]], + [[106]], + [[107]], + [[108]], + [[109]], + [[110]], + [[111]], + [[112]], + [[113]], + [[114]], + [[115]], + [[116]], + [[117]], + [[118]], + [[119]], + [[120]], + [[121, 122, 123, 124, 125]], + [[126, 127]], + [[128, 129]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-46", + "NAME_0": "Japan", + "ID_1": 18, + "NAME_1": "Kagoshima", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "鹿児島県", + "VARNAME_1": null + } + }, + { + "arcs": [[[130]], [[131, 132, 133, 134]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-14", + "NAME_0": "Japan", + "ID_1": 19, + "NAME_1": "Kanagawa", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "神奈川県", + "VARNAME_1": null + } + }, + { + "arcs": [[[135]], [[136, 137, -22]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-39", + "NAME_0": "Japan", + "ID_1": 20, + "NAME_1": "Kochi", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "高知県", + "VARNAME_1": "Koti" + } + }, + { + "arcs": [ + [[-127, 138, -124, 139]], + [[-129, 140]], + [[141]], + [[142]], + [[143]], + [[144]], + [[145]], + [[146, -126, 147, -36, 148]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-43", + "NAME_0": "Japan", + "ID_1": 21, + "NAME_1": "Kumamoto", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "熊本県", + "VARNAME_1": null + } + }, + { + "arcs": [[-32, 149, 150, 151, 152, -83, 153]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-26", + "NAME_0": "Japan", + "ID_1": 22, + "NAME_1": "Kyoto", + "TYPE_1": "Fu", + "ENGTYPE_1": "Urban Prefecture", + "NL_NAME_1": "京都府", + "VARNAME_1": "Kioto" + } + }, + { + "arcs": [[-4, 154, 155, 156, -151, 157, -48]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-24", + "NAME_0": "Japan", + "ID_1": 23, + "NAME_1": "Mie", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "三重県", + "VARNAME_1": "Miye" + } + }, + { + "arcs": [[[158]], [[159]], [[160, -46, 161, -8, -95]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-04", + "NAME_0": "Japan", + "ID_1": 24, + "NAME_1": "Miyagi", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "宮城県", + "VARNAME_1": null + } + }, + { + "arcs": [[162, -122, -147, 163]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-45", + "NAME_0": "Japan", + "ID_1": 25, + "NAME_1": "Miyazaki", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "宮崎県", + "VARNAME_1": null + } + }, + { + "arcs": [[-54, 164, 165, 166, -1, -47, 167, 168]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-20", + "NAME_0": "Japan", + "ID_1": 26, + "NAME_1": "Nagano", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "長野県", + "VARNAME_1": null + } + }, + { + "arcs": [ + [[169]], + [[170]], + [[171]], + [[172]], + [[173]], + [[174]], + [[175]], + [[176]], + [[177]], + [[178]], + [[179, 180]], + [[181]], + [[182]], + [[183]], + [[184]], + [[185]], + [[186]], + [[187]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-42", + "NAME_0": "Japan", + "ID_1": 27, + "NAME_1": "Nagasaki", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "長崎県", + "VARNAME_1": "Nagasaki" + } + }, + { + "arcs": [[-157, 188, 189, -152]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-29", + "NAME_0": "Japan", + "ID_1": 28, + "NAME_1": "Nara", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "奈良県", + "VARNAME_1": null + } + }, + { + "arcs": [[[190]], [[191]], [[-44, -55, -169, 192, 193, 194]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-15", + "NAME_0": "Japan", + "ID_1": 29, + "NAME_1": "Niigata", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "新潟県", + "VARNAME_1": null + } + }, + { + "arcs": [[-164, -149, -35, 195]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-44", + "NAME_0": "Japan", + "ID_1": 30, + "NAME_1": "Oita", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "大分県", + "VARNAME_1": null + } + }, + { + "arcs": [[[196]], [[197]], [[198]], [[-86, 199, -69, 200]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-33", + "NAME_0": "Japan", + "ID_1": 31, + "NAME_1": "Okayama", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "岡山県", + "VARNAME_1": null + } + }, + { + "arcs": [ + [[201]], + [[202]], + [[203]], + [[204]], + [[205]], + [[206]], + [[207]], + [[208]], + [[209]], + [[210]], + [[211]], + [[212]], + [[213]], + [[214]], + [[215]], + [[216]], + [[217]], + [[218]], + [[219]], + [[220]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-47", + "NAME_0": "Japan", + "ID_1": 32, + "NAME_1": "Okinawa", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "沖縄県", + "VARNAME_1": null + } + }, + { + "arcs": [[-190, 221, 222, -84, -153]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-27", + "NAME_0": "Japan", + "ID_1": 33, + "NAME_1": "Osaka", + "TYPE_1": "Fu", + "ENGTYPE_1": "Urban Prefecture", + "NL_NAME_1": "大阪府", + "VARNAME_1": null + } + }, + { + "arcs": [[-38, 223, -180, 224]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-41", + "NAME_0": "Japan", + "ID_1": 34, + "NAME_1": "Saga", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "佐賀県", + "VARNAME_1": null + } + }, + { + "arcs": [[225, -90, -17, 226, 227, -165, -53]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-11", + "NAME_0": "Japan", + "ID_1": 35, + "NAME_1": "Saitama", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "埼玉県", + "VARNAME_1": null + } + }, + { + "arcs": [[-49, -158, -150, -31]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-25", + "NAME_0": "Japan", + "ID_1": 36, + "NAME_1": "Shiga", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "滋賀県", + "VARNAME_1": "Siga" + } + }, + { + "arcs": [[[228]], [[229, -72, 230, 231]], [[232]], [[233]], [[234]], [[235]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-32", + "NAME_0": "Japan", + "ID_1": 37, + "NAME_1": "Shimane", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "島根県", + "VARNAME_1": "Simane" + } + }, + { + "arcs": [ + [[236]], + [[237]], + [[238]], + [[239]], + [[240]], + [[241]], + [[242]], + [[243]], + [[244]], + [[-133, 245, -2, -167, 246]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-22", + "NAME_0": "Japan", + "ID_1": 38, + "NAME_1": "Shizuoka", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "静岡県", + "VARNAME_1": "Sizuoka" + } + }, + { + "arcs": [[-91, -226, -52, -42]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-09", + "NAME_0": "Japan", + "ID_1": 39, + "NAME_1": "Tochigi", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "栃木県", + "VARNAME_1": "Totigi" + } + }, + { + "arcs": [[[-137, -21, -97, 247]], [[248]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-36", + "NAME_0": "Japan", + "ID_1": 40, + "NAME_1": "Tokushima", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "徳島県", + "VARNAME_1": "Tokusima" + } + }, + { + "arcs": [[[249]], [[-16, 250, -135, 251, -227]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-13", + "NAME_0": "Japan", + "ID_1": 41, + "NAME_1": "Tokyo", + "TYPE_1": "To", + "ENGTYPE_1": "Metropolis", + "NL_NAME_1": "東京都", + "VARNAME_1": "Edo|Yedo|Tokio|T¢quio" + } + }, + { + "arcs": [[-201, -68, -230, 252, -87]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-31", + "NAME_0": "Japan", + "ID_1": 42, + "NAME_1": "Tottori", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "鳥取県", + "VARNAME_1": null + } + }, + { + "arcs": [[-193, -168, -51, -93, 253]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-16", + "NAME_0": "Japan", + "ID_1": 43, + "NAME_1": "Toyama", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "富山県", + "VARNAME_1": null + } + }, + { + "arcs": [[[254]], [[-189, -156, 255, -222]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-30", + "NAME_0": "Japan", + "ID_1": 44, + "NAME_1": "Wakayama", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "和歌山県", + "VARNAME_1": null + } + }, + { + "arcs": [[-162, -45, -195, 256, -9]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-06", + "NAME_0": "Japan", + "ID_1": 45, + "NAME_1": "Yamagata", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "山形県", + "VARNAME_1": null + } + }, + { + "arcs": [ + [[257]], + [[258]], + [[259]], + [[260]], + [[261]], + [[262]], + [[263]], + [[-231, -71, 264]], + [[265]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 114, + "ISO": "JP-35", + "NAME_0": "Japan", + "ID_1": 46, + "NAME_1": "Yamaguchi", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "山口県", + "VARNAME_1": "Yamaguti" + } + }, + { + "arcs": [[-228, -252, -134, -247, -166]], + "type": "Polygon", + "properties": { + "ID_0": 114, + "ISO": "JP-19", + "NAME_0": "Japan", + "ID_1": 47, + "NAME_1": "Yamanashi", + "TYPE_1": "Ken", + "ENGTYPE_1": "Prefecture", + "NL_NAME_1": "山梨県", + "VARNAME_1": "Yamanasi" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/korea-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/korea-topo.json new file mode 100644 index 000000000000..0ebf51987956 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/korea-topo.json @@ -0,0 +1,2471 @@ +{ + "type": "Topology", + "arcs": [ + [ + [7454, 4447], + [42, -59], + [-34, -74], + [-76, 102], + [68, 31] + ], + [ + [7860, 4492], + [29, 33], + [61, -30], + [7, -89], + [-97, 86] + ], + [ + [8440, 5110], + [-51, -66], + [-68, 1], + [-22, -112], + [0, -61], + [-61, -81], + [-4, -67], + [-47, -16], + [-7, -38], + [-143, -15], + [5, -131], + [-98, 7], + [-37, 40], + [-34, -31], + [-27, -51], + [-17, -61], + [-70, 4], + [-52, -18], + [-22, 91], + [-27, 9], + [-75, -40], + [-124, 23] + ], + [ + [7459, 4497], + [39, 24], + [6, 47], + [-22, 58], + [115, 20], + [-7, 75], + [61, 52], + [89, -11], + [71, 37], + [29, 81], + [38, 48], + [79, 36], + [52, 70], + [60, 20], + [34, 48], + [50, 22], + [54, -4], + [77, 93] + ], + [ + [8284, 5213], + [101, 9], + [55, -112] + ], + [ + [7083, 9078], + [-23, -33], + [-74, 5], + [-50, -22], + [-32, -74], + [-93, -43], + [-23, -43], + [-86, -52], + [-37, -50], + [-32, -78], + [36, -90], + [-16, -55], + [-52, -39], + [-64, 17], + [-55, -32], + [-89, 22], + [-17, 30], + [-62, 20], + [-47, 80], + [-59, -74], + [-28, -71], + [-114, 23], + [-35, 26], + [-38, -64], + [-81, 37], + [-30, -61], + [-36, -27], + [-8, -77], + [72, -64], + [-42, -22], + [-55, 34], + [-73, 0], + [-38, 20], + [-44, -53], + [-76, -50], + [-15, -40], + [54, -19], + [5, -83], + [-50, -46], + [-52, 55], + [-41, 17], + [-37, -61], + [-49, 1], + [-25, -40], + [29, -50], + [97, -24], + [50, -72], + [23, -61], + [-51, -30], + [-22, -42], + [22, -41], + [-33, -159], + [50, -88], + [-82, -101], + [1, -76], + [106, 1], + [91, -59], + [88, 9], + [80, -18], + [9, -77], + [33, -36], + [-22, -47], + [-70, 27], + [-53, -55], + [29, -45], + [-7, -76], + [-35, -17], + [-11, -106], + [-26, -37], + [-60, 3], + [-52, -57] + ], + [ + [5556, 6668], + [-42, -13], + [-63, 24], + [-64, -32], + [-74, -4], + [-45, 30], + [-121, 2], + [-50, 35] + ], + [ + [5097, 6710], + [-29, -20], + [-42, 44], + [-40, 121], + [-44, 34], + [-7, 192], + [-40, 40], + [-152, 29] + ], + [ + [4743, 7150], + [-12, 32], + [26, 162], + [32, 36], + [37, 112], + [32, 30], + [-22, 41], + [-79, 0], + [6, 76], + [-71, 67], + [-33, -49], + [-88, 15], + [-30, 70], + [-64, 6] + ], + [ + [4477, 7748], + [7, 96], + [26, 48], + [-64, 49], + [-43, 56], + [-51, -5], + [-9, 51], + [-60, 48], + [45, 67], + [7, 73] + ], + [ + [4335, 8231], + [44, 93], + [54, 17], + [17, 60], + [111, -6], + [-8, 65], + [-95, 90], + [-16, 40], + [-105, 99] + ], + [ + [4337, 8689], + [25, 61], + [35, 24], + [159, 47], + [48, 96], + [97, 54], + [66, 63], + [104, -28], + [57, 8], + [4, 44], + [84, 20], + [40, 73], + [19, 123], + [44, -22], + [52, 40], + [120, 172], + [20, 64], + [40, 15] + ], + [ + [5351, 9543], + [59, -208], + [27, -21], + [201, 17], + [41, 73], + [-40, 70], + [7, 30], + [93, 43], + [77, -22], + [51, -118], + [123, 17], + [39, 55], + [78, 9], + [32, 30], + [71, 3], + [119, -67], + [91, 14], + [23, -37], + [-123, -97], + [60, -59], + [73, 34], + [112, 7], + [25, -76], + [74, -49], + [83, 13], + [32, 21], + [82, -9], + [68, -66], + [133, -24], + [21, -48] + ], + [ + [2518, 8130], + [20, -16], + [25, -145], + [-5, -31], + [52, -72], + [-8, -31], + [36, -62], + [-2, -39], + [38, -77], + [-127, -19], + [-71, 65], + [-10, 74], + [11, 70], + [-18, 29], + [0, 109], + [-28, 71], + [13, 2], + [7, 25], + [34, 33], + [33, 14] + ], + [ + [3624, 8789], + [149, 27], + [95, -14], + [104, 28], + [69, 31], + [103, -40], + [140, -82], + [53, -50] + ], + [ + [4335, 8231], + [-65, -5], + [-112, 101], + [-68, 4], + [-45, -41], + [42, -70], + [-8, -178], + [96, -65], + [23, -56], + [-11, -39], + [22, -59], + [38, 0], + [32, -47], + [-52, -51], + [39, -72], + [56, -5], + [5, -54] + ], + [ + [4327, 7594], + [-18, -110], + [5, -58], + [-34, -73], + [5, -35], + [47, -57], + [13, -60], + [73, -64], + [48, 46], + [12, 81], + [48, -7], + [-6, -62], + [95, -98], + [32, -5], + [35, 44], + [61, 14] + ], + [ + [5097, 6710], + [-3, -49], + [-65, -60], + [-129, 4], + [-26, 62], + [-75, -22], + [-87, -2], + [-132, 70], + [-45, 110], + [-81, 108], + [-40, 36], + [-132, -56], + [-27, -36], + [-67, 17], + [-134, -69], + [-77, 3], + [-74, 25], + [-38, 121], + [-180, 71], + [-62, -38], + [-46, -6], + [-23, -35], + [-36, -152], + [-68, -32], + [-19, -29], + [-63, -1], + [-82, -44] + ], + [ + [3286, 6706], + [-36, -42], + [-113, 9], + [3, 66], + [-110, 152], + [-40, 73], + [-67, 5], + [-78, 74], + [7, 64], + [29, 55], + [-17, 68], + [37, 64], + [-83, 128], + [77, 83], + [-69, 58], + [-62, 9], + [30, 102], + [91, 58], + [43, 2], + [23, 60], + [-56, -10], + [-43, -67], + [-76, 23], + [-14, 84], + [28, 68], + [-58, 71], + [13, 31], + [-32, 84], + [-84, 46], + [-80, 12], + [-15, 15], + [-16, -19], + [-34, -10], + [-33, -31], + [-12, -31], + [-39, -15], + [-29, 24], + [36, 120], + [-27, 65], + [-46, 6], + [-12, 107], + [-38, -36], + [-54, -18], + [-29, -45], + [-91, 9], + [-5, 61], + [37, 30], + [60, -30], + [50, 38], + [-68, 57], + [-16, 32], + [-105, -52], + [-26, 70], + [112, 103], + [43, 25], + [-25, 37], + [39, 50], + [-38, 76], + [80, 42], + [59, 7], + [60, -18], + [23, 64], + [56, -87], + [-48, -93], + [-2, -108], + [61, 40], + [-12, 46], + [25, 47], + [77, -14], + [-13, 45], + [80, 49], + [31, 90], + [-60, -13], + [-92, 90], + [-25, 41], + [41, 48], + [215, 34], + [54, 58], + [23, 52], + [43, -15], + [44, -51], + [202, -90], + [108, 2], + [168, -56], + [40, -121], + [57, -91], + [68, -17], + [93, 34] + ], + [ + [6907, 5735], + [-129, -95], + [-104, -6], + [-44, 20] + ], + [ + [6630, 5654], + [37, 28], + [2, 64], + [-83, 101], + [14, 28], + [96, -20], + [21, 56], + [-69, 46], + [-13, 49], + [49, 115], + [71, -1], + [15, 42], + [-80, 51], + [-45, 3], + [-34, 45], + [8, 59], + [44, 42], + [82, 25], + [2, -44], + [39, -49], + [75, 67], + [20, 92], + [77, 37], + [53, 69], + [38, 21], + [110, 8], + [76, -30], + [36, -40], + [-12, -144], + [39, -26], + [19, -115], + [-15, -48], + [-42, -13], + [-18, -56], + [-70, -94], + [19, -51], + [-11, -45], + [-79, -65], + [-90, 69], + [-101, -51], + [-23, -89], + [20, -55] + ], + [ + [4327, 7594], + [83, 23], + [52, 45], + [15, 86] + ], + [ + [8493, 9430], + [-101, -125], + [-64, -31], + [-44, -56], + [-2, -129], + [-19, -20], + [-121, 20], + [-115, 85], + [-39, -21], + [-35, -60], + [-98, 24], + [-134, 13], + [-32, 25], + [-39, -43], + [-89, 4], + [-134, 71], + [-119, 21], + [46, -70], + [-1, -32], + [-66, -8], + [-21, -38], + [-110, 31], + [-73, -13] + ], + [ + [5351, 9543], + [20, 30], + [-2, 147], + [-9, 56], + [33, 60], + [20, 84], + [-2, 111], + [-63, 78], + [102, 117], + [-17, 64], + [-91, -7], + [-51, 37], + [-41, 4], + [-97, 63], + [-125, 63], + [-77, -13], + [-61, 34], + [9, 141], + [-55, 46], + [42, 76], + [-16, 66], + [6, 93], + [65, 47], + [83, 90], + [6, 130], + [-21, 27], + [-73, 0], + [-24, 97], + [-105, 4], + [-26, 22], + [-31, 90], + [-28, 178], + [-76, -42], + [-45, 41], + [-33, -8], + [-36, -54], + [-30, 52], + [-59, 17], + [-49, -33], + [-51, 41], + [72, 106], + [-37, 34], + [-63, -63], + [-98, -65], + [-62, -18], + [-130, 18], + [-41, 43], + [15, 115], + [-16, 25], + [-106, -16], + [-46, 11], + [-55, 123] + ], + [ + [3776, 11905], + [38, 37], + [21, 36], + [231, 160], + [71, -7], + [141, 60], + [72, -10], + [34, -24], + [68, 3], + [129, 42], + [99, -42], + [24, 6], + [93, -45], + [112, 64], + [62, 20], + [55, -28], + [80, 8], + [56, -13], + [42, 26], + [122, -6], + [67, 20], + [15, -35], + [57, -49], + [92, 31], + [37, 35], + [123, -36], + [38, 9], + [136, -29], + [62, 10], + [63, 48], + [56, -2], + [77, 66], + [76, 44], + [32, 46], + [117, 96], + [46, 91], + [15, 79], + [-9, 191], + [88, 61], + [28, -54], + [77, -79], + [-11, -33], + [63, -153], + [61, -67], + [-28, -31], + [20, -42], + [95, -116], + [4, -62], + [66, -122], + [22, -73], + [64, -82], + [10, -63], + [29, -52], + [-4, -65], + [51, -81], + [82, -79], + [6, -47], + [145, -174], + [42, -92], + [45, -55], + [82, -71], + [-9, -38], + [92, -100], + [9, -34], + [210, -205], + [57, -82], + [87, -79], + [-28, -72], + [49, -81], + [98, -76], + [-11, -86], + [60, -105], + [96, -105], + [19, -92], + [90, -63], + [44, -100], + [7, -57], + [56, -22], + [3, -44], + [59, -30], + [-6, -36], + [44, -39], + [0, -91], + [-18, -39], + [22, -69] + ], + [ + [3742, 4748], + [2, -56], + [64, -11], + [57, -47], + [-51, -138], + [-77, -24], + [-96, -11], + [-43, -71], + [-59, 26], + [-73, -14], + [-78, 9], + [-15, 60], + [-114, 33], + [-47, 28], + [-54, 1], + [-4, 79], + [55, 92], + [80, 28], + [67, 74], + [81, -58], + [78, 5], + [22, 48], + [97, 14], + [96, -39], + [12, -28] + ], + [ + [3624, 8789], + [-11, 70], + [-77, 22], + [-9, 37], + [-86, 106], + [-46, 6], + [-2, 66], + [-93, 12], + [26, 71], + [10, 90], + [-15, 47], + [48, 44], + [41, -4], + [-9, 87], + [-97, -8], + [-63, -84], + [-43, -24], + [-72, 95], + [-17, 48], + [27, 62], + [-7, 91], + [51, 41], + [134, -20], + [10, -81], + [22, -12], + [50, 90], + [-13, 33], + [53, 71], + [-67, -7], + [-101, 35], + [-90, 56], + [-140, -45], + [-68, -44], + [-24, -43], + [74, -31], + [31, -66], + [56, -27], + [-10, -36], + [-63, 31], + [-56, -7], + [-55, -48], + [-38, 57], + [28, 24], + [17, 104], + [44, 48], + [55, 39], + [157, 52], + [-5, 30], + [99, 53], + [-6, 50], + [32, 22], + [-3, 8], + [9, 7], + [3, 19], + [0, 1] + ], + [ + [3315, 10027], + [28, 45], + [-10, 105], + [10, 86] + ], + [ + [3343, 10263], + [107, -20], + [-5, -88], + [97, -35], + [39, -34], + [101, -14], + [62, 25], + [121, 2], + [24, -58], + [61, -15], + [40, 31], + [86, 13], + [38, 52], + [-23, 91], + [52, 54], + [-27, 42], + [-69, 22], + [-13, 101], + [6, 62], + [-38, 89], + [-40, 21], + [-116, 14], + [-112, -78], + [-54, 2], + [-70, -26], + [-53, -116], + [-52, -11], + [-55, 29], + [-60, -49] + ], + [ + [3390, 10369], + [-92, 45], + [-97, 23], + [-63, -3], + [-78, -28], + [-93, 10] + ], + [ + [2967, 10416], + [-54, 69], + [-54, 157], + [9, 64], + [-21, 29], + [18, 84], + [-23, 29], + [57, 36], + [63, -32], + [48, -1], + [65, 49], + [63, 3], + [23, 121], + [21, 55], + [12, 124], + [-25, 81], + [117, 41], + [85, 13], + [113, 120], + [46, 66], + [21, 82], + [36, 44], + [149, 94], + [-5, 99], + [45, 62] + ], + [ + [8695, 5748], + [-9, -23], + [-220, 63], + [-55, -63], + [-69, 11], + [-60, 51], + [9, 61], + [-133, 39], + [-119, 13], + [-109, -64], + [7, -117], + [-66, 10], + [-27, -41] + ], + [ + [7844, 5688], + [-85, -49], + [-113, 44], + [-78, 5], + [-63, -78], + [-120, -56], + [-20, -24], + [-78, 37], + [-131, 25], + [-65, -30], + [-53, 3], + [-54, 37], + [-42, 53], + [-35, 80] + ], + [ + [6630, 5654], + [-42, 45], + [-128, 52], + [-44, -19], + [-124, -17], + [-99, 69], + [33, 112], + [-14, 71], + [-127, 121], + [-23, 70], + [-149, 83], + [-79, 13], + [-87, -9], + [-48, 55], + [-42, 9], + [-29, 50] + ], + [ + [5628, 6359], + [-7, 61], + [14, 103], + [-79, 145] + ], + [ + [8493, 9430], + [29, -44], + [22, -106], + [59, -63], + [17, -49], + [-10, -76], + [19, -45], + [-22, -62], + [26, -99], + [-12, -106], + [27, -101], + [58, -83], + [19, -133], + [20, -58], + [0, -81], + [-24, -46], + [-44, -10], + [-61, -126], + [-1, -93], + [57, -74], + [10, -150], + [-30, -187], + [-45, -49], + [-57, -140], + [5, -22], + [-18, -164], + [28, -71], + [-25, -69], + [38, -20], + [17, -135], + [58, -39], + [-2, -35], + [-109, -128], + [65, -34], + [29, -70], + [49, -20], + [96, 76], + [107, 150], + [44, -19], + [26, -147], + [-62, -69], + [6, -47], + [-75, -106], + [15, -37], + [-15, -78], + [30, -5], + [-83, -201], + [12, -34], + [-51, -167], + [0, -55], + [-33, -33], + [-29, -79], + [22, -43] + ], + [ + [11600, 10343], + [11, -147], + [-91, -68], + [-53, 8], + [-80, 51], + [5, 49], + [-27, 31], + [166, 63], + [69, 13] + ], + [ + [6287, 3463], + [100, -37], + [-15, -37], + [-61, -3], + [-66, 31], + [42, 46] + ], + [ + [6764, 3855], + [18, -140], + [-45, 15], + [-18, 46], + [8, 69], + [37, 10] + ], + [ + [6270, 3911], + [38, -79], + [-65, -17], + [-30, 65], + [57, 31] + ], + [ + [6197, 3956], + [12, -41], + [-42, -43], + [-35, 65], + [65, 19] + ], + [ + [5858, 4104], + [-11, -50], + [61, -39], + [22, -37], + [-24, -36], + [21, -58], + [-92, 21], + [-64, -6], + [-46, 40], + [2, 46], + [82, 105], + [49, 14] + ], + [ + [5585, 4161], + [67, -44], + [1, -50], + [-59, -85], + [27, -80], + [62, -24], + [3, -42], + [92, 53], + [81, 4], + [65, -40], + [-28, -83], + [16, -81], + [-45, -42], + [21, -65], + [-53, -2], + [-21, 47], + [-49, -32], + [-62, 15], + [-17, 72], + [3, 79], + [-85, -36], + [19, -55], + [-47, -43], + [-54, 25], + [-42, 59], + [19, 26], + [-68, 143], + [-18, 70], + [43, 43], + [14, 50], + [60, 97], + [55, 21] + ], + [ + [6835, 4230], + [26, -89], + [-41, 3], + [15, 86] + ], + [ + [7093, 4340], + [-11, -104], + [-50, 15], + [24, 58], + [37, 31] + ], + [ + [7152, 4385], + [84, -46], + [-34, -33], + [-17, -68], + [62, -73], + [-52, -159], + [44, 2], + [43, -33], + [-81, -60], + [73, -120], + [-38, -2], + [-23, 47], + [-82, 3], + [10, -64], + [-71, -48], + [29, -56], + [-86, -97], + [-47, 34], + [40, 47], + [-57, 13], + [7, 53], + [-27, 59], + [34, 24], + [9, 112], + [-106, -38], + [-37, -48], + [-67, 73], + [-22, 80], + [13, 33], + [92, 85], + [82, -58], + [40, 37], + [50, -24], + [-35, 105], + [56, 35], + [50, -4], + [64, 189] + ], + [ + [7844, 5688], + [24, -38], + [-7, -48], + [-38, -52], + [5, -50], + [109, 5], + [58, -57], + [67, -35], + [64, -96], + [92, -21], + [46, -27], + [20, -56] + ], + [ + [7459, 4497], + [-67, 2], + [-39, 33], + [-100, -29], + [-73, 17], + [16, 62], + [-47, 2], + [-95, 53], + [-118, 101], + [10, -59], + [45, -54], + [6, -94], + [50, -45], + [-3, -46], + [-34, -16], + [-84, 31], + [14, 39], + [-61, 33], + [-95, 14], + [-39, -21], + [-20, -45], + [32, -30], + [-18, -60], + [58, -47], + [-46, -67], + [-82, 3], + [14, -49], + [-27, -34], + [-2, -101], + [-19, -66], + [98, -2], + [-57, -142], + [-1, -81], + [-31, -76], + [-52, 7], + [-36, 113], + [-88, 34], + [22, 31], + [71, -38], + [-8, 66], + [20, 27], + [-103, 34], + [-80, 53], + [21, 21], + [95, -1], + [-32, 93], + [-70, -27], + [1, -42], + [-78, -14], + [8, 54], + [-56, 21], + [-86, -14], + [5, -107], + [-76, 13], + [-54, -22], + [-53, 64], + [-40, 24], + [-75, 8], + [-34, 49], + [27, 67], + [-18, 56], + [21, 33], + [-21, 65], + [-60, -32], + [11, -93], + [-55, -6], + [-92, 31], + [-89, -108], + [-92, -22], + [-29, 31], + [-86, -44], + [-42, 58] + ], + [ + [5341, 4206], + [39, 67], + [-45, 95], + [-70, 48], + [-67, 141], + [-76, 56], + [-40, 107], + [-3, 80], + [-46, 128] + ], + [ + [5033, 4928], + [49, 51], + [15, 60], + [-15, 69], + [69, 28], + [37, 54], + [-12, 54], + [-72, 167], + [-47, 148], + [94, 145], + [-20, 110], + [57, 71], + [-4, 106], + [48, 82], + [89, 54], + [30, 96], + [59, -12], + [54, 36], + [64, 5], + [45, 61], + [55, 46] + ], + [ + [2016, 9691], + [27, -63], + [85, -30], + [-24, -46], + [-122, 11], + [34, 128] + ], + [ + [2753, 9725], + [60, -43], + [-43, -72], + [-54, -41], + [-46, 17], + [2, 104], + [81, 35] + ], + [ + [2624, 10020], + [66, -63], + [-18, -44], + [-76, 55], + [28, 52] + ], + [ + [2729, 10333], + [23, -18], + [-14, -63], + [-71, 33], + [62, 48] + ], + [ + [3315, 10027], + [-7, -1], + [-3, -13], + [-13, -7], + [-44, -59], + [-105, 17], + [-61, 61], + [-10, 38], + [-48, -2], + [-34, 28], + [0, 55], + [41, 74], + [-17, 127], + [-78, -27], + [-47, -43], + [41, -11], + [40, -60], + [-37, -29], + [-120, -34], + [-38, -46], + [-84, -57], + [-47, -1], + [-45, 60], + [-30, -15], + [-55, 67], + [127, 71], + [118, 5], + [42, 73], + [38, 10], + [47, -31], + [40, 36], + [37, 20], + [26, 8], + [27, 16], + [-49, 59] + ], + [ + [3390, 10369], + [-47, -106] + ], + [ + [2446, 10828], + [-1, -99], + [43, -33], + [53, -7], + [14, -67], + [-53, -38], + [-110, 99], + [-21, 43], + [10, 73], + [65, 29] + ], + [ + [2287, 10983], + [50, -1], + [47, -30], + [89, -21], + [-68, -72], + [-102, -5], + [-34, -32], + [-56, 51], + [36, 77], + [38, 33] + ], + [ + [2662, 11015], + [45, -46], + [110, -69], + [33, -109], + [-17, -29], + [21, -54], + [-15, -60], + [35, -152], + [-46, -40], + [-66, 19], + [-32, -33], + [-104, 6], + [-69, 44], + [-4, 45], + [69, 46], + [-5, 45], + [-37, 71], + [-73, 40], + [13, 114], + [-12, 68], + [73, 35], + [16, 38], + [65, 21] + ], + [ + [3714, 787], + [25, -23], + [-4, -66], + [-53, 42], + [32, 47] + ], + [ + [2875, 785], + [101, 1], + [18, 28], + [65, 4], + [41, 23], + [37, -15], + [127, 44], + [84, 12], + [56, -19], + [52, 5], + [28, -64], + [37, -19], + [67, 7], + [40, -48], + [-1, -84], + [45, 2], + [-45, -128], + [-11, -66], + [-45, -19], + [-83, -163], + [-68, -33], + [-64, 12], + [-64, -66], + [-39, 1], + [-99, -29], + [-59, 0], + [-52, -59], + [-60, 3], + [-147, -15], + [-89, -29], + [-39, 37], + [-40, -13], + [-42, 24], + [-52, -31], + [-128, 16], + [-51, -39], + [-7, -43], + [-39, -22], + [-90, 107], + [-52, 15], + [-76, 91], + [10, 75], + [-12, 42], + [81, 75], + [39, 61], + [73, 45], + [9, 64], + [68, 21], + [33, 57], + [108, 20], + [36, 28], + [133, 18], + [82, 57], + [43, -13], + [41, 22] + ], + [ + [2415, 5766], + [22, -30], + [-32, -47], + [-78, -48], + [-25, 42], + [113, 83] + ], + [ + [2672, 5306], + [7, 50], + [85, 141], + [100, 61], + [23, -21], + [49, 42], + [54, -7], + [77, 74], + [36, -7], + [47, 31], + [-44, 32], + [-82, -22], + [-64, 9], + [-133, -26], + [-103, 72], + [10, 79], + [75, 36], + [103, 94], + [29, -9], + [64, 59], + [55, 73], + [-12, 87], + [156, 30], + [168, -55], + [-14, 69], + [-88, 34], + [-72, 55], + [-9, 25], + [77, 35], + [69, -13], + [67, 31], + [-5, 74], + [-55, -39], + [-118, -8], + [-59, 18], + [-25, -24], + [-109, 6], + [4, 134], + [-97, 32], + [-28, 42], + [116, 13], + [27, -13], + [129, 29], + [78, 1], + [41, 18], + [-15, 58] + ], + [ + [5033, 4928], + [-206, 129], + [-88, 11], + [-111, -29], + [-41, -55], + [-104, 2], + [-43, -21], + [-56, 30], + [-188, 11], + [-62, -18], + [-120, 30], + [15, 131], + [-47, 43], + [-38, 95], + [-59, -10], + [-96, -84], + [-45, 23], + [-14, 38], + [-176, 136], + [-169, -53], + [-3, -126], + [-41, -51], + [-20, -68], + [-30, -32], + [-52, 0], + [-105, -46], + [-100, 10], + [-49, -31], + [-71, -2], + [-55, 79], + [-49, 40], + [2, 28], + [-73, 67], + [2, 53], + [-69, 48] + ], + [ + [8, 2141], + [25, -4], + [32, -65], + [-65, 17], + [8, 52] + ], + [ + [2885, 2346], + [60, -29], + [58, -6], + [-107, -99], + [-70, -6], + [10, 112], + [49, 28] + ], + [ + [3105, 2388], + [25, -62], + [19, -103], + [-32, -38], + [-53, 54], + [41, 70], + [-20, 48], + [20, 31] + ], + [ + [3586, 2429], + [66, -88], + [-20, -65], + [-67, 2], + [-68, 50], + [49, 84], + [40, 17] + ], + [ + [2936, 2472], + [82, -27], + [36, -51], + [-128, -56], + [-14, 78], + [24, 56] + ], + [ + [4312, 2510], + [6, -96], + [-67, 13], + [13, 41], + [48, 42] + ], + [ + [1886, 2670], + [27, -35], + [56, 9], + [21, -66], + [-59, -6], + [-69, 15], + [-11, 44], + [35, 39] + ], + [ + [3771, 2722], + [62, -37], + [-74, -46], + [-43, 50], + [55, 33] + ], + [ + [3472, 2764], + [16, -23], + [67, -4], + [10, -88], + [-90, -8], + [-15, 46], + [-47, 17], + [59, 60] + ], + [ + [1837, 2769], + [63, -89], + [-76, 26], + [13, 63] + ], + [ + [3862, 2817], + [31, -71], + [80, 16], + [-94, -111], + [0, 69], + [-62, 47], + [45, 50] + ], + [ + [3176, 2870], + [81, -46], + [8, -75], + [81, -100], + [-13, -44], + [-65, -13], + [-26, 23], + [-62, 1], + [-24, 46], + [-55, 39], + [-19, 121], + [20, 24], + [74, 24] + ], + [ + [3693, 2893], + [12, -16], + [-37, -86], + [-52, -40], + [-87, 47], + [38, 70], + [98, -27], + [28, 52] + ], + [ + [3472, 2965], + [9, -76], + [-42, -68], + [-126, 9], + [39, 84], + [120, 51] + ], + [ + [3891, 3006], + [42, -21], + [20, -67], + [-78, 9], + [-6, 55], + [22, 24] + ], + [ + [5410, 3009], + [8, -89], + [-48, -17], + [40, 106] + ], + [ + [4715, 3044], + [30, -28], + [75, 4], + [57, -79], + [-96, -51], + [-14, 85], + [-54, 9], + [2, 60] + ], + [ + [4235, 3090], + [35, -50], + [-53, -108], + [-72, 13], + [-95, -8], + [-53, 82], + [38, 32], + [39, -16], + [81, 40], + [80, 15] + ], + [ + [4719, 3209], + [38, -17], + [-35, -68], + [62, -6], + [5, -56], + [-108, 23], + [-12, 59], + [50, 65] + ], + [ + [5282, 3227], + [35, -12], + [63, -146], + [-84, 35], + [-74, 86], + [60, 37] + ], + [ + [1996, 3263], + [15, -33], + [-107, -59], + [14, 63], + [78, 29] + ], + [ + [5117, 3304], + [33, -27], + [-4, -47], + [-48, 2], + [19, 72] + ], + [ + [2306, 3314], + [83, -31], + [22, -53], + [40, -33], + [36, 6], + [67, -69], + [-32, -136], + [15, -35], + [-60, -67], + [-93, -50], + [-49, 9], + [-17, -40], + [-55, -16], + [-49, -37], + [-95, -3], + [-22, 52], + [-69, 39], + [-44, 56], + [62, 99], + [52, 39], + [98, 42], + [16, 50], + [68, 56], + [27, 59], + [-1, 63] + ], + [ + [1919, 3409], + [92, -60], + [-9, -58], + [-50, 22], + [-33, 96] + ], + [ + [1510, 3411], + [20, -64], + [-71, -8], + [-7, 35], + [58, 37] + ], + [ + [1864, 3422], + [5, -54], + [41, -56], + [-48, -39], + [-34, 82], + [-1, 56], + [37, 11] + ], + [ + [2113, 3511], + [43, -23], + [30, -60], + [-112, -46], + [-12, 70], + [51, 59] + ], + [ + [692, 3574], + [2, -86], + [-35, -17], + [-59, -64], + [-16, 68], + [55, 96], + [53, 3] + ], + [ + [5287, 3656], + [85, -40], + [-42, -52], + [57, -81], + [12, -74], + [-16, -44], + [31, -36], + [-36, -29], + [-79, 20], + [-54, 97], + [1, 54], + [45, 29], + [20, 52], + [-24, 104] + ], + [ + [1736, 3665], + [5, -35], + [78, -52], + [5, -33], + [-87, -74], + [-89, 37], + [-8, 94], + [67, -3], + [29, 66] + ], + [ + [1985, 3752], + [72, -8], + [17, -36], + [81, -31], + [7, -87], + [-47, -3], + [-37, 55], + [-38, -28], + [-29, 49], + [-56, 23], + [30, 66] + ], + [ + [2083, 3811], + [42, -25], + [10, -55], + [-42, -9], + [-52, 69], + [42, 20] + ], + [ + [1795, 3830], + [10, -61], + [-49, -41], + [-61, 5], + [-29, -37], + [15, -74], + [-51, -5], + [-46, 38], + [2, 77], + [18, 38], + [60, -17], + [73, 30], + [58, 47] + ], + [ + [2036, 4010], + [50, -6], + [-9, -43], + [27, -55], + [-71, -30], + [9, -63], + [-44, 7], + [-71, 98], + [43, 36], + [63, -24], + [3, 80] + ], + [ + [5234, 4048], + [26, -43], + [-16, -31], + [-62, 36], + [52, 38] + ], + [ + [2402, 4103], + [27, -32], + [49, 1], + [20, -37], + [-40, -27], + [-12, -48], + [76, -2], + [18, -89], + [-41, -20], + [-31, 83], + [-104, 14], + [-1, 43], + [49, 38], + [-46, 45], + [36, 31] + ], + [ + [2267, 4140], + [46, -11], + [-33, -56], + [-35, 36], + [22, 31] + ], + [ + [1921, 4142], + [70, -66], + [-21, -104], + [-96, -22], + [-113, 15], + [72, 94], + [85, 20], + [3, 63] + ], + [ + [5262, 4174], + [11, -49], + [73, -22], + [-24, -50], + [-106, 27], + [-8, 41], + [54, 53] + ], + [ + [5322, 4193], + [10, -63], + [-43, 0], + [-9, 43], + [42, 20] + ], + [ + [2073, 4272], + [57, -8], + [35, -29], + [-86, -26], + [-6, 63] + ], + [ + [2073, 4352], + [44, -11], + [12, -53], + [-57, 5], + [1, 59] + ], + [ + [2100, 4434], + [67, -21], + [30, -59], + [-56, -4], + [-83, 51], + [42, 33] + ], + [ + [2192, 4555], + [112, -35], + [-12, -49], + [63, -92], + [-50, -39], + [-51, 85], + [-87, 12], + [-38, 32], + [-7, 53], + [70, 33] + ], + [ + [2107, 4638], + [-52, -27], + [-41, -117], + [38, -21], + [-33, -63], + [-59, 10], + [-7, 29], + [-63, 42], + [26, 41], + [42, 2], + [89, 89], + [60, 15] + ], + [ + [5341, 4206], + [-74, -21], + [-50, -50], + [-41, -23], + [10, -22], + [-89, -60], + [-42, 29], + [-45, 0], + [-42, -32], + [51, -96], + [53, -8], + [-14, -43], + [67, -9], + [52, 36], + [20, 47], + [66, -16], + [56, 30], + [39, -28], + [-27, -108], + [-42, -78], + [25, -77], + [-105, -54], + [-67, 68], + [-35, -7], + [-30, -71], + [-32, -37], + [-3, -48], + [38, -88], + [-28, -25], + [-74, 46], + [-38, -21], + [-39, 47], + [8, 115], + [49, 52], + [0, 67], + [-50, 113], + [-63, 97], + [-11, 69], + [-49, -9], + [-1, -68], + [-191, -51], + [47, -31], + [-66, -67], + [32, -36], + [-59, -65], + [32, -69], + [69, -47], + [8, -43], + [86, -25], + [51, -76], + [19, -89], + [-61, -45], + [-84, 31], + [-107, -59], + [116, -36], + [-68, -103], + [-61, -59], + [-80, -3], + [14, -72], + [-44, -15], + [-60, 81], + [-39, 12], + [2, 68], + [-78, 23], + [-20, 33], + [-166, -25], + [-31, 16], + [-15, 71], + [62, 86], + [53, -3], + [3, 78], + [49, 49], + [59, 14], + [26, 111], + [31, 27], + [49, -5], + [-5, -86], + [68, -19], + [45, 113], + [-15, 89], + [-30, 5], + [-50, -41], + [-55, -7], + [-33, 65], + [-66, -53], + [-24, -74], + [-39, -35], + [-71, 2], + [-28, 25], + [-67, -79], + [-56, -16], + [-40, -66], + [-104, -32], + [9, -58], + [-40, -59], + [21, -46], + [-59, -55], + [23, -20], + [-16, -62], + [25, -17], + [-58, -76], + [-144, 1], + [24, -54], + [-102, 43], + [-36, -10], + [-57, 45], + [15, 42], + [-20, 66], + [17, 130], + [-58, 13], + [-10, -167], + [-43, -45], + [18, -24], + [-51, -72], + [-48, -6], + [-42, -45], + [-27, 12], + [-60, -37], + [-45, -61], + [16, -64], + [-41, -110], + [-83, 22], + [-27, -44], + [-56, -19], + [18, 82], + [-9, 74], + [-84, -11], + [-9, 50], + [34, 21], + [-3, 46], + [49, 20], + [-13, 35], + [-49, 13], + [-30, 36], + [3, 52], + [-27, 73], + [11, 101], + [-87, 11], + [-62, -40], + [4, 65], + [-110, 32], + [-36, -14], + [-18, 55], + [-47, 24], + [2, 55], + [-43, 36], + [-16, 94], + [61, 189], + [70, -22], + [27, -122], + [-10, -89], + [49, -17], + [22, -82], + [46, -14], + [95, -53], + [36, 50], + [-33, 35], + [-29, 75], + [-29, 23], + [0, 76], + [81, -16], + [-38, -59], + [78, -62], + [83, -11], + [26, 37], + [125, -52], + [-115, 182], + [-60, 70], + [-96, 10], + [-86, -3], + [-51, 32], + [18, 70], + [-42, -3], + [-15, 47], + [29, 51], + [64, 61], + [-13, 72], + [-25, 21], + [32, 62], + [-27, 22], + [5, 91], + [-54, 28], + [12, -74], + [-12, -50], + [-73, -8], + [-19, 64], + [-52, 50], + [16, 30], + [81, -11], + [29, 47], + [-24, 23], + [88, 52], + [-15, 54], + [-61, -17], + [-38, 115], + [-32, -2], + [-4, -77], + [-47, 12], + [-56, -16], + [-29, 66], + [5, 39], + [-13, 50], + [36, 66], + [38, -27], + [51, 8], + [49, -54], + [6, -54], + [66, -50], + [53, 9], + [15, -112], + [101, 105], + [-98, 148], + [-85, 79], + [21, 49], + [-10, 40], + [-97, 7], + [36, 107], + [63, 74], + [20, 100], + [39, 101], + [19, 114], + [53, 27], + [1, 0] + ], + [ + [8695, 5748], + [24, -23], + [-23, -60], + [12, -65], + [-54, -172], + [-96, -11], + [-77, -60], + [18, -53], + [13, -148], + [-72, -46] + ] + ], + "transform": { + "scale": [0.0005012251344949894, 0.0004209892550424911], + "translate": [125.0943069458009, 33.194862365722656] + }, + "objects": { + "korea": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[[0]], [[1]], [[2, 3, 4]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 213, + "ISO": "KR-26", + "NAME_0": "South Korea", + "ID_1": 1, + "NAME_1": "Busan", + "TYPE_1": "Gwangyeoksi", + "ENGTYPE_1": "Metropolitan City", + "NL_NAME_1": "부산광역시", + "VARNAME_1": "Pusan" + } + }, + { + "arcs": [[5, 6, 7, 8, 9, 10, 11, 12]], + "type": "Polygon", + "properties": { + "ID_0": 213, + "ISO": "KR-43", + "NAME_0": "South Korea", + "ID_1": 2, + "NAME_1": "Chungcheongbuk-do", + "TYPE_1": "Do", + "ENGTYPE_1": "Province", + "NL_NAME_1": "충청북도", + "VARNAME_1": "Chungchongbuk-Do" + } + }, + { + "arcs": [[[13]], [[14, -11, 15, 16, -8, 17, 18]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 213, + "ISO": "KR-44", + "NAME_0": "South Korea", + "ID_1": 3, + "NAME_1": "Chungcheongnam-do", + "TYPE_1": "Do", + "ENGTYPE_1": "Province", + "NL_NAME_1": "충청남도", + "VARNAME_1": "Chungchongnam-Do" + } + }, + { + "arcs": [[19, 20]], + "type": "Polygon", + "properties": { + "ID_0": 213, + "ISO": "KR-27", + "NAME_0": "South Korea", + "ID_1": 4, + "NAME_1": "Daegu", + "TYPE_1": "Gwangyeoksi", + "ENGTYPE_1": "Metropolitan City", + "NL_NAME_1": "대구광역시", + "VARNAME_1": "Taegu" + } + }, + { + "arcs": [[-9, -17, 21]], + "type": "Polygon", + "properties": { + "ID_0": 213, + "ISO": "KR-30", + "NAME_0": "South Korea", + "ID_1": 5, + "NAME_1": "Daejeon", + "TYPE_1": "Gwangyeoksi", + "ENGTYPE_1": "Metropolitan City", + "NL_NAME_1": "대구광역시", + "VARNAME_1": "Daejeon Gwang'yeogsi" + } + }, + { + "arcs": [[22, -13, 23, 24]], + "type": "Polygon", + "properties": { + "ID_0": 213, + "ISO": "KR-42", + "NAME_0": "South Korea", + "ID_1": 6, + "NAME_1": "Gangwon-do", + "TYPE_1": "Do", + "ENGTYPE_1": "Province", + "NL_NAME_1": "강원도", + "VARNAME_1": "Kang-Won-Do" + } + }, + { + "arcs": [[25]], + "type": "Polygon", + "properties": { + "ID_0": 213, + "ISO": "KR-29", + "NAME_0": "South Korea", + "ID_1": 7, + "NAME_1": "Gwangju", + "TYPE_1": "Gwangyeoksi", + "ENGTYPE_1": "Metropolitan City", + "NL_NAME_1": "광주광역시", + "VARNAME_1": "Kwangju" + } + }, + { + "arcs": [[-24, -12, -15, 26, 27, 28, 29, 30]], + "type": "Polygon", + "properties": { + "ID_0": 213, + "ISO": "KR-41", + "NAME_0": "South Korea", + "ID_1": 8, + "NAME_1": "Gyeonggi-do", + "TYPE_1": "Do", + "ENGTYPE_1": "Province", + "NL_NAME_1": "경기도", + "VARNAME_1": "Kyonggi-do" + } + }, + { + "arcs": [[[31, 32, -21, 33, 34, -6, -23, 35]], [[36]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 213, + "ISO": "KR-47", + "NAME_0": "South Korea", + "ID_1": 9, + "NAME_1": "Gyeongsangbuk-do", + "TYPE_1": "Do", + "ENGTYPE_1": "Province", + "NL_NAME_1": "경상북도", + "VARNAME_1": "Kyongsangbuk-Do" + } + }, + { + "arcs": [ + [[37]], + [[38]], + [[39]], + [[40]], + [[41]], + [[42]], + [[43]], + [[44]], + [[45]], + [[-20, -33, 46, -4, 47, 48, 49, -34]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 213, + "ISO": "KR-48", + "NAME_0": "South Korea", + "ID_1": 10, + "NAME_1": "Gyeongsangnam-do", + "TYPE_1": "Do", + "ENGTYPE_1": "Province", + "NL_NAME_1": "경상남도", + "VARNAME_1": "Kyongsangnam-Do" + } + }, + { + "arcs": [[[50]], [[51]], [[52]], [[53]], [[54, -30, 55, -28]], [[56]], [[57]], [[58]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 213, + "ISO": "KR-28", + "NAME_0": "South Korea", + "ID_1": 11, + "NAME_1": "Incheon", + "TYPE_1": "Gwangyeoksi", + "ENGTYPE_1": "Metropolitan City", + "NL_NAME_1": "인천광역시", + "VARNAME_1": "Inchon" + } + }, + { + "arcs": [[[59]], [[60]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 213, + "ISO": "KR-49", + "NAME_0": "South Korea", + "ID_1": 12, + "NAME_1": "Jeju", + "TYPE_1": "Do", + "ENGTYPE_1": "Province", + "NL_NAME_1": "제주특별자치도", + "VARNAME_1": "Jeju-doQuelpart" + } + }, + { + "arcs": [[[61]], [[62, -18, -7, -35, -50, 63]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 213, + "ISO": "KR-45", + "NAME_0": "South Korea", + "ID_1": 13, + "NAME_1": "Jeollabuk-do", + "TYPE_1": "Do", + "ENGTYPE_1": "Province", + "NL_NAME_1": "전라북도", + "VARNAME_1": "Chollabuk-Do" + } + }, + { + "arcs": [ + [[64]], + [[65]], + [[66]], + [[67]], + [[68]], + [[69]], + [[70]], + [[71]], + [[72]], + [[73]], + [[74]], + [[75]], + [[76]], + [[77]], + [[78]], + [[79]], + [[80]], + [[81]], + [[82]], + [[83]], + [[84]], + [[85]], + [[86]], + [[87]], + [[88]], + [[89]], + [[90]], + [[91]], + [[92]], + [[93]], + [[94]], + [[95]], + [[96]], + [[97]], + [[98]], + [[99]], + [[100]], + [[101]], + [[102]], + [[103]], + [[104]], + [[105]], + [[106]], + [[107]], + [[108]], + [[-64, -49, 109], [-26]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 213, + "ISO": "KR-46", + "NAME_0": "South Korea", + "ID_1": 14, + "NAME_1": "Jeollanam-do", + "TYPE_1": "Do", + "ENGTYPE_1": "Province", + "NL_NAME_1": "전라남도", + "VARNAME_1": "Chollanam-Do" + } + }, + { + "arcs": [[-16, -10, -22]], + "type": "Polygon", + "properties": { + "ID_0": 213, + "ISO": "KR-50", + "NAME_0": "South Korea", + "ID_1": 15, + "NAME_1": "Sejong", + "TYPE_1": "Do", + "ENGTYPE_1": "Metropolitan Autonomous City", + "NL_NAME_1": "세종특별자치시", + "VARNAME_1": "Sejong Metropolitan Autonomous City" + } + }, + { + "arcs": [[-56, -29]], + "type": "Polygon", + "properties": { + "ID_0": 213, + "ISO": "KR-11", + "NAME_0": "South Korea", + "ID_1": 16, + "NAME_1": "Seoul", + "TYPE_1": "Teukbyeolsi", + "ENGTYPE_1": "Capital Metropolitan City", + "NL_NAME_1": "서울특별시", + "VARNAME_1": "Keijo" + } + }, + { + "arcs": [[110, -5, -47, -32]], + "type": "Polygon", + "properties": { + "ID_0": 213, + "ISO": "KR-31", + "NAME_0": "South Korea", + "ID_1": 17, + "NAME_1": "Ulsan", + "TYPE_1": "Metropolitan City", + "ENGTYPE_1": "Metropolitan City", + "NL_NAME_1": "울산광역시", + "VARNAME_1": "Ulsan-gwangyoksi" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/liechtenstein-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/liechtenstein-topo.json new file mode 100644 index 000000000000..200f67de34e3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/liechtenstein-topo.json @@ -0,0 +1,1605 @@ +{ + "type": "Topology", + "arcs": [ + [ + [5301, 3925], + [-1, 24], + [-26, 81], + [-29, 43], + [-9, 43], + [-3, 40], + [1, 106], + [-20, 45], + [-85, 89], + [-45, 25], + [-54, 52], + [-69, 57], + [-42, 30] + ], + [ + [4919, 4560], + [-55, 40], + [-42, 43], + [-88, 1], + [-58, 9], + [-50, 16], + [-51, 22], + [-64, 41], + [-107, 54], + [-62, 15], + [-86, 2], + [-39, 25] + ], + [ + [4217, 4828], + [-4, 29], + [27, 48], + [-6, 43], + [8, 17], + [1, 50], + [7, 35], + [-15, 25], + [11, 66], + [29, 33], + [18, 35], + [2, 46], + [11, 33], + [23, 47] + ], + [ + [4329, 5335], + [40, 51], + [26, 17], + [62, 54], + [16, 42], + [2, 31], + [10, 24], + [47, 50], + [12, 32] + ], + [ + [4544, 5636], + [74, -50], + [259, -205], + [166, -312], + [337, -176], + [466, -90], + [-18, -392], + [175, -317], + [189, -210], + [-141, -183], + [-190, -242], + [-43, -66] + ], + [ + [5818, 3393], + [0, 33], + [-13, 13], + [-66, 42], + [-129, 49], + [-59, 27], + [-60, 22], + [-87, 19], + [-18, 11], + [-18, 67], + [-1, 33], + [-15, 40], + [-3, 75], + [-21, 40], + [-3, 32], + [-24, 29] + ], + [ + [4035, 2064], + [-11, -31], + [-30, -44], + [1, -43], + [37, -32], + [34, -38], + [9, -43], + [1, -56], + [7, -27], + [3, -76], + [16, -43], + [52, -55], + [46, -34], + [67, -58], + [8, -50], + [-41, -28], + [-63, -19], + [-56, -32], + [-108, -51], + [-80, -17], + [-70, 0], + [-129, 25], + [-102, 89], + [-59, 68], + [-43, 67], + [-10, 32], + [17, 61], + [1, 63], + [-16, 160], + [45, 86], + [102, 96], + [57, 50] + ], + [ + [3720, 2084], + [54, -17], + [27, -4], + [67, -21], + [54, 17], + [30, 18], + [36, 2], + [47, -15] + ], + [ + [1821, 1979], + [17, -16], + [45, -67], + [73, -71], + [21, -60], + [43, -80], + [17, -16], + [51, -29], + [118, -32], + [94, -8], + [24, -11], + [4, -14], + [-5, -90], + [-9, -47], + [-25, -60], + [1, -86], + [31, -55], + [36, -96], + [90, -78], + [12, -18], + [77, -82], + [167, -187] + ], + [ + [2703, 776], + [-25, 10], + [-58, 1], + [-27, -8], + [-48, -27], + [-79, -29], + [-37, -25], + [-74, -32], + [-28, -16], + [-124, -18], + [-143, -16], + [-59, -12], + [-147, -49], + [-30, -13], + [-70, -55], + [-57, -57], + [-34, -20], + [-55, -17], + [-123, -24], + [-67, -6], + [-156, -6], + [-62, -8], + [-49, -19], + [-41, -48], + [-24, -13], + [-31, -4], + [-47, 10], + [-28, 12], + [-49, 31], + [-47, 15], + [-37, 4], + [-37, -6], + [-43, -32], + [-46, -73], + [-39, -77], + [-38, -55], + [-24, -22], + [-33, -12], + [-35, -1], + [-33, 10], + [-53, 47], + [-16, 25], + [-29, 86], + [-15, 27], + [-24, 23], + [-34, 12], + [-37, 0], + [-54, -12], + [-54, -20], + [-49, 21], + [-39, 38], + [-67, 144], + [-10, 34], + [-17, 105], + [-17, 70], + [-4, 70], + [9, 69], + [40, 110], + [82, 53], + [80, 37], + [38, 23], + [83, 23], + [63, 30], + [70, 18], + [63, 31], + [70, 18], + [62, 32], + [70, 19], + [63, 32], + [80, 25], + [71, 49], + [34, 28], + [159, 80], + [33, 28], + [71, 49], + [91, 33], + [115, 83], + [148, 75], + [70, 53], + [60, 58], + [32, 66], + [40, 52], + [24, 66] + ], + [ + [2632, 7081], + [-71, -19], + [-42, 2], + [-100, 21], + [-40, 3] + ], + [ + [2379, 7088], + [-13, 10] + ], + [ + [2366, 7098], + [-21, 69], + [-11, 14], + [-129, 45], + [-58, 18], + [-116, 42], + [-384, 130], + [-4, 5], + [-42, 102], + [-96, 254], + [-5, 5], + [-75, 194], + [-11, 51], + [3, 17], + [27, 2], + [78, -15], + [67, 1], + [12, 27], + [1, 38], + [12, 8], + [39, -1], + [9, 15], + [0, 111], + [-9, 34], + [1, 44], + [9, 58], + [10, 10], + [54, 23], + [54, 11], + [33, 21], + [51, 44], + [42, 54], + [41, 31], + [128, 2], + [57, 44], + [21, 6], + [44, 0], + [24, -10], + [30, -62], + [19, -16], + [33, -9], + [40, 19], + [11, 23], + [34, 30], + [38, 4], + [38, 40], + [21, 9], + [78, 0], + [9, 3], + [41, 47] + ], + [ + [2614, 8690], + [5, 14], + [42, 44], + [47, 33], + [73, 70], + [47, 22], + [16, -6], + [35, -54], + [23, -43] + ], + [ + [2902, 8770], + [-123, -72], + [-82, -55], + [-35, -35], + [-16, -24], + [-93, 11], + [-37, -9], + [-25, -21], + [-95, -123], + [12, -28], + [66, -58], + [0, -20], + [-75, -43], + [-61, -31], + [-37, -45], + [-26, -70], + [-8, -73], + [25, -37], + [26, -24], + [89, -63], + [21, -19], + [94, -67], + [21, -11], + [106, -71], + [21, -11], + [141, -95], + [22, -6], + [62, 62], + [27, 23], + [73, 6], + [20, 74], + [28, 24], + [52, 9], + [82, 19], + [88, 17], + [51, 12], + [76, 0], + [32, -32], + [21, -30], + [42, -74], + [29, -85], + [22, -53], + [-15, -20], + [-40, -11], + [-90, -30], + [-83, -37], + [-1, -15], + [58, -55], + [66, -45], + [48, -15], + [67, -11], + [80, -44], + [40, -27], + [39, -15], + [80, -17], + [52, 13], + [25, 1], + [47, -9], + [49, -30], + [36, -27], + [77, -68], + [35, -9] + ], + [ + [4108, 7171], + [-38, -42], + [-203, -270], + [0, -4] + ], + [ + [3867, 6855], + [-97, 51], + [-66, 31], + [-108, -30], + [-29, -5], + [-45, 76], + [-18, 52], + [-5, 32] + ], + [ + [3499, 7062], + [-5, 75], + [-8, 20], + [-2, 54], + [-26, 52], + [-62, 87], + [-102, 21], + [-103, 25], + [-4, 31], + [-59, 52], + [-37, 18], + [-70, 42], + [-18, 6], + [-22, -12], + [-60, -51], + [40, -76], + [88, -25], + [4, -57], + [-28, -19], + [-65, -10], + [-49, -14], + [-59, -29], + [-115, -71], + [-27, -1], + [-49, 8], + [-16, -20], + [-1, -37], + [-12, -50] + ], + [ + [1296, 7180], + [-10, -2], + [-47, -39], + [-64, -48], + [-39, -33], + [-64, -48], + [-47, -41], + [-126, -95], + [-16, 6], + [-20, 42], + [-75, 134], + [-70, 46], + [-68, 36] + ], + [ + [650, 7138], + [7, 104], + [32, 30], + [25, 39], + [20, 49], + [33, 41], + [30, 67], + [34, 41], + [30, 66], + [32, 42], + [11, 24], + [13, 70], + [14, 37], + [32, 42], + [30, 66] + ], + [ + [993, 7856], + [39, -35], + [118, -62], + [22, 11], + [39, 35], + [22, 4], + [35, -42], + [-6, -15], + [-76, -69], + [-52, -52], + [-46, -61], + [-47, -57], + [-38, -59], + [-34, -46], + [-57, -57], + [-2, -47], + [13, -47], + [82, -51], + [16, 0], + [37, 24], + [21, 4], + [73, 1], + [13, 19], + [0, 36], + [8, 28], + [1, 47], + [8, 20], + [1, 47], + [6, 12], + [5, 57], + [21, 4], + [211, -113], + [11, -26], + [0, -31], + [15, -75], + [9, -88] + ], + [ + [1461, 7172], + [-86, 1], + [-29, 7], + [-50, 0] + ], + [ + [3099, 7064], + [-35, 41], + [8, 101], + [18, 22], + [40, 12], + [69, -90], + [82, -45], + [46, -11], + [93, -28], + [35, -5] + ], + [ + [3455, 7061], + [-3, -54], + [-9, -32], + [-2, -47], + [-28, -50], + [-102, 24], + [-51, -17] + ], + [ + [3260, 6885], + [-57, 98], + [-47, 34], + [-57, 47] + ], + [ + [2091, 7132], + [-91, 8], + [-15, 5], + [-96, 10], + [-122, 0] + ], + [ + [1767, 7155], + [-68, 9], + [-128, 0], + [-33, 7], + [-77, 1] + ], + [ + [993, 7856], + [27, 32], + [14, 37], + [15, 90], + [41, 95], + [20, 124], + [40, 95], + [17, 108], + [15, 44], + [61, 108], + [53, 76], + [43, 50], + [33, 65], + [82, 78], + [14, 18], + [24, 56], + [40, 51], + [31, 66], + [36, 34] + ], + [ + [1599, 9083], + [6, -12], + [47, -26], + [50, -21], + [63, 29], + [56, 41], + [51, 29], + [22, -7], + [50, -46], + [30, -37], + [-2, -44], + [10, -11], + [79, -26], + [27, -23], + [18, -57], + [2, -64], + [43, -38], + [113, -2] + ], + [ + [2264, 8768], + [-12, -20], + [0, -43], + [40, -25], + [36, -2], + [77, 20], + [35, 1], + [47, -15], + [51, 0], + [25, 7], + [51, -1] + ], + [ + [2366, 7098], + [-51, 3], + [-143, 21], + [-44, 2], + [-37, 8] + ], + [ + [3099, 7064], + [-59, -35] + ], + [ + [3040, 7029], + [-8, 15], + [-42, 29], + [-101, 54], + [-106, 0], + [-31, -12], + [-120, -34] + ], + [ + [3499, 7062], + [-44, -1] + ], + [ + [2902, 8770], + [53, 10], + [55, 77], + [70, 53], + [177, 75], + [45, -1], + [8, 33], + [38, 4], + [53, -30], + [36, -13] + ], + [ + [3437, 8978], + [-85, -84], + [-181, -265], + [172, -149], + [294, -125], + [281, -170], + [189, -238], + [257, -360], + [-78, -216], + [-178, -200] + ], + [ + [2379, 7088], + [160, -146], + [1, -24], + [-34, -51], + [-21, -19], + [-19, 9], + [-46, 41], + [-64, 49], + [-47, 41], + [-42, 31], + [-133, 49], + [-15, 11], + [-28, 53] + ], + [ + [3410, 5840], + [5, 9], + [93, 105], + [62, 43], + [24, 46], + [45, 60], + [-76, 42], + [-79, 41], + [-31, 19], + [-78, 39], + [-77, 46], + [-57, 39], + [-21, 4], + [-75, 1], + [-73, 7], + [-14, -10], + [-29, -50], + [-37, -5], + [-103, 22], + [-49, 13], + [-61, 12], + [-18, 11], + [-2, 95], + [-7, 32], + [-2, 65], + [-34, 60], + [-53, 57], + [-76, 42], + [-2, 9], + [55, 93], + [39, 86], + [32, 51], + [13, 4], + [57, -22], + [22, 1], + [51, 30], + [54, 40], + [56, 9], + [37, 1], + [43, 8], + [33, 16] + ], + [ + [3077, 7011], + [28, -24], + [70, -33], + [35, -35], + [20, -45], + [30, 11] + ], + [ + [3867, 6855], + [16, -289], + [84, -374], + [95, -208], + [248, -189], + [234, -159] + ], + [ + [4329, 5335], + [-18, 0], + [-121, 31], + [-113, 54], + [-128, 89], + [-21, 19], + [-89, 63], + [-123, 93], + [-21, 11], + [-81, 56], + [-204, 89] + ], + [ + [2918, 6461], + [32, 0], + [21, -9], + [2, -38], + [43, -5], + [20, 6], + [54, 0], + [26, 11], + [7, 33], + [-45, 50], + [-23, 10], + [-63, 0], + [-19, 5], + [-19, 27], + [-20, 13], + [-43, 1], + [-20, -11], + [1, -61], + [46, -32] + ], + [ + [2406, 6658], + [-51, 30], + [-26, 37], + [1, 21], + [16, 27], + [21, 1], + [87, -42], + [9, -43], + [-6, -15], + [-51, -16] + ], + [ + [3243, 9962], + [-21, 8], + [-93, -95], + [-102, -89], + [-81, -62], + [-73, -63], + [-68, -51], + [-62, -39], + [-53, -46], + [-77, -73], + [1, -20], + [118, -103], + [95, -53], + [147, 81], + [31, 23], + [121, 105], + [100, 75], + [49, 30], + [6, -23], + [-51, -91], + [-61, -97], + [-110, -96], + [-21, -11], + [-85, -58], + [-48, -56], + [-18, -16], + [-87, -38], + [-61, -31], + [-81, -47], + [-96, -47], + [-65, -55], + [-57, -1], + [-22, 6], + [-53, -6], + [-101, -155] + ], + [ + [1599, 9083], + [61, 63], + [24, 55], + [40, 52], + [24, 56], + [44, 50], + [50, 77], + [34, 90], + [37, 55], + [26, 106], + [37, 55], + [27, 78], + [34, 63], + [27, 77], + [39, 54], + [27, 76], + [39, 78], + [25, 84], + [26, 52], + [16, 59], + [4, 47], + [-1, 113], + [-6, 65], + [-19, 95], + [33, 47], + [35, 34], + [50, 57], + [116, -120], + [179, -160], + [224, -255], + [318, -241], + [74, -83] + ], + [ + [3410, 5840], + [-20, -20], + [-56, -78], + [-22, -18], + [-68, -74], + [-8, -20] + ], + [ + [3236, 5630], + [-151, 66], + [-69, 7], + [-71, 4], + [-25, 6], + [-153, -7], + [-102, 1], + [-136, -14], + [-67, 1], + [-202, 58], + [-179, 31], + [-54, -4], + [-62, -109], + [-28, -10], + [-59, -1], + [-13, -10], + [7, -56], + [0, -62], + [8, -45], + [1, -43], + [-9, -13], + [-114, -23], + [-118, -42], + [-13, 1], + [-109, 53], + [-69, 37], + [-18, 17], + [-26, 97], + [-18, 92], + [-24, 90], + [0, 49], + [16, 34], + [0, 18], + [-114, 24], + [-21, 1], + [-98, 21], + [-69, 9], + [-113, 2], + [-18, -9], + [2, -25], + [14, -48], + [28, -130], + [157, -118], + [30, -26], + [224, -168], + [0, -11], + [-30, -33], + [-1, -16], + [55, -43], + [20, -72], + [2, -25], + [15, -69], + [31, -72], + [22, -63], + [11, -21], + [69, -72], + [55, -63], + [37, -36], + [-9, -24], + [-75, -28], + [-41, -11], + [-14, 4], + [-30, 92], + [-47, 50], + [-72, 92], + [-115, 128], + [-21, 7], + [-90, 1], + [-58, -7], + [54, -84], + [221, -279], + [89, -305] + ], + [ + [1479, 4426], + [-48, 83], + [-65, 86], + [-69, 61], + [-55, 42], + [-36, 34], + [-32, 72], + [-49, 62], + [-32, 79], + [-36, 66], + [-31, 79], + [-35, 45], + [-34, 69], + [-42, 54], + [-28, 58], + [-42, 55], + [-27, 58], + [-35, 44], + [-12, 24], + [-66, 188], + [-29, 141], + [-44, 98], + [-24, 126], + [-54, 207], + [-8, 49], + [-16, 179], + [11, 141], + [9, 46], + [41, 134], + [13, 163], + [6, 31], + [40, 138] + ], + [ + [1296, 7180], + [18, -23], + [26, -75], + [37, -119], + [18, -40], + [89, -93], + [16, -23], + [65, -158], + [12, -3], + [90, -1], + [52, 8], + [90, -1], + [71, 8], + [6, 10], + [-34, 126], + [-2, 21], + [-40, 150], + [-26, 124], + [-17, 64] + ], + [ + [3040, 7029], + [37, -18] + ], + [ + [1953, 6362], + [55, -1], + [27, -20], + [46, -87], + [19, -17], + [70, -29], + [10, 1], + [77, 97], + [-31, 27], + [-57, 42], + [-45, 29], + [-130, 53], + [-23, -2], + [-29, -84], + [11, -9] + ], + [ + [4320, 3136], + [9, 49], + [0, 39], + [9, 50], + [1, 76], + [6, 11], + [2, 56], + [58, 126], + [26, 71], + [19, 62], + [0, 35], + [9, 24], + [0, 56], + [-10, 22], + [-105, 17], + [-35, 3], + [-102, 35], + [-82, 9], + [-63, 17], + [-84, 55], + [-52, 50], + [-40, 49], + [-46, 28], + [-58, 27], + [-51, 30], + [-18, 24], + [-1, 36], + [11, 25], + [28, 32], + [31, 63], + [42, 51], + [18, 1], + [34, -26], + [22, 0], + [26, 33], + [0, 58], + [11, 20], + [57, 44], + [56, 64], + [28, 17], + [77, 64], + [36, 56], + [18, 42], + [9, 40], + [1, 51] + ], + [ + [4919, 4560], + [-16, -33], + [-30, -33], + [-91, -115], + [-87, -74], + [-80, -23], + [-41, -8], + [-101, -8], + [-21, -22], + [27, -40], + [48, -59], + [20, -52], + [68, -57], + [34, -14], + [99, 0], + [44, -7], + [67, -1], + [73, 16], + [78, -12], + [54, -76], + [86, -12], + [53, -14], + [72, 1], + [26, 8] + ], + [ + [5818, 3393], + [-125, -190], + [61, -52] + ], + [ + [5754, 3151], + [-46, -53], + [-20, -33], + [-65, 12], + [-127, 36], + [-48, 10], + [-96, 28], + [-48, -6], + [-98, 0], + [-26, -6], + [-30, 5], + [-76, 2], + [-78, 14], + [-63, 2], + [-38, -11], + [-45, -37], + [-41, -25], + [-44, -14], + [-42, -2], + [-38, -21] + ], + [ + [4685, 3052], + [-63, 29], + [-70, 18], + [-43, 20], + [-103, 3], + [-47, 13], + [-39, 1] + ], + [ + [5118, 679], + [-81, 47], + [-28, 32], + [-21, 33], + [-54, 33], + [-60, 45], + [-51, 61], + [-66, 119], + [-99, 66], + [-2, 8], + [99, 85], + [6, 13], + [-34, 59], + [-56, 87], + [-34, 69], + [-20, 67], + [-58, 157], + [-39, 86], + [-51, 120], + [-16, 55], + [47, 118], + [-16, 44], + [-30, 56], + [-4, 26] + ], + [ + [4450, 2165], + [78, 0], + [41, -10], + [96, -56], + [148, -46], + [130, -25], + [57, -14], + [58, 11] + ], + [ + [5058, 2025], + [12, -20], + [19, -60], + [0, -30], + [27, -62], + [34, -38], + [64, -56], + [35, -50], + [11, -29], + [26, -47], + [19, -22], + [22, -47], + [18, -11] + ], + [ + [5345, 1553], + [-48, -275], + [-149, -554], + [32, -32], + [-26, 0], + [-36, -13] + ], + [ + [3243, 9962], + [185, -206], + [314, -402], + [-182, -254], + [-123, -122] + ], + [ + [5118, 679], + [-67, -34], + [-61, -41], + [-67, -26], + [-75, -43], + [-64, -23], + [-80, -19], + [-30, -12], + [-33, -21], + [-35, -35], + [-80, -65], + [-91, -25], + [-97, -38], + [-102, -27], + [-202, -19], + [-83, -14], + [-122, -16], + [-39, -9], + [-148, -63], + [-77, -46], + [-93, -48], + [-79, -55], + [-64, 29], + [-53, 36], + [-52, 55], + [-14, 40], + [-6, 147], + [-21, 124], + [-11, 39], + [-32, 60], + [-62, 55], + [-69, 46], + [-89, 30], + [-116, 77], + [-65, 20], + [-36, 18] + ], + [ + [1821, 1979], + [44, 87], + [26, 83], + [34, 65], + [11, 44], + [5, 76], + [1, 297], + [-8, 91], + [-41, 128], + [-21, 116], + [-9, 33], + [-33, 63], + [-34, 76], + [-44, 79], + [16, 57], + [9, 71], + [-2, 89], + [-9, 70], + [-18, 70], + [-23, 125], + [-43, 131] + ], + [ + [1682, 3830], + [132, 23], + [97, 8], + [39, 6], + [77, -1], + [56, -8], + [46, -12], + [68, -3], + [45, -6], + [68, 7] + ], + [ + [2310, 3844], + [72, -91], + [3, -88], + [81, -97], + [-23, -57], + [1, -15], + [54, -61], + [67, -22], + [27, 6], + [41, -1], + [35, -97], + [3, -17], + [-1, -110], + [-10, -63], + [-23, -85], + [-10, -56], + [-11, -29], + [-30, -52], + [-1, -19], + [62, -88], + [58, -4], + [70, 12], + [65, 6], + [80, 5], + [169, -112], + [12, -28], + [10, -59], + [10, -28], + [106, -98], + [72, -71], + [42, -37], + [81, -53], + [20, 0], + [154, 78], + [13, -1], + [103, -107], + [0, -188], + [8, -33] + ], + [ + [4035, 2064], + [33, 25], + [34, 52], + [18, 47], + [-1, 21], + [-18, 59], + [-37, 100], + [-2, 18], + [0, 181], + [-8, 24], + [3, 33], + [87, 2], + [34, 7], + [55, 0], + [62, 8] + ], + [ + [4295, 2641], + [-3, -91], + [10, -70], + [26, -97], + [23, -63], + [88, -146], + [11, -9] + ], + [ + [2310, 3844], + [88, 31], + [18, 57], + [9, 80], + [-69, 56], + [-20, 42], + [-5, 60], + [-53, 59], + [-11, 64], + [0, 111], + [35, 113], + [28, 45], + [15, 13], + [65, 25], + [24, 13], + [4, 35], + [-40, 79], + [-26, 66], + [4, 49], + [24, 14], + [43, -8], + [20, -24], + [46, -73], + [12, -13], + [54, -15], + [25, 27], + [-1, 66], + [-31, 67], + [-1, 27], + [10, 25], + [56, 17], + [100, -2], + [55, -33], + [53, -71], + [15, -6], + [100, 38], + [52, 47], + [73, 30], + [40, 9], + [-3, 29], + [-47, 161], + [0, 32], + [82, 187], + [14, 40], + [38, 72], + [35, 81], + [2, 46], + [-6, 18] + ], + [ + [4320, 3136], + [-33, -70], + [-34, -110], + [-11, -57], + [0, -92], + [17, -84], + [36, -82] + ], + [ + [5058, 2025], + [36, 19], + [11, 17], + [26, 141], + [3, 43], + [32, 76], + [21, 67], + [29, 53], + [0, 44], + [-46, 41], + [-27, 39], + [-17, 78], + [-1, 34], + [-26, 76], + [-42, 31], + [-44, 50], + [-47, 36], + [-37, 53], + [-42, 37], + [-87, 53], + [-65, 17], + [-50, 22] + ], + [ + [5754, 3151], + [230, -196], + [170, -245], + [129, -325], + [-102, -302], + [-55, -319], + [-407, -7], + [-363, -141], + [-11, -63] + ], + [ + [1682, 3830], + [-8, 23], + [-25, 123], + [-44, 101], + [-23, 105], + [-10, 34], + [-33, 67], + [-36, 100], + [-24, 43] + ] + ], + "transform": { + "scale": [0.000026263459063090908, 0.000020732479520249057], + "translate": [9.472480773925838, 47.04738235473644] + }, + "objects": { + "liechtenstein": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[[0, 1, 2, 3, 4, 5]], [[6, 7]], [[8, 9]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 129, + "ISO": "LI-01", + "NAME_0": "Liechtenstein", + "ID_1": 1, + "NAME_1": "Balzers", + "TYPE_1": "Gemeinden", + "ENGTYPE_1": "Commune", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[10, 11, 12, 13, 14, 15, 16, 17]], [[18, 19, 20, 21]], [[22, 23, 24]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 129, + "ISO": "LI-02", + "NAME_0": "Liechtenstein", + "ID_1": 2, + "NAME_1": "Eschen", + "TYPE_1": "Gemeinden", + "ENGTYPE_1": "Commune", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[25, 26, -21, 27, 28, 29, -13, 30]], [[31, 32, -18, 33, -23]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 129, + "ISO": "LI-03", + "NAME_0": "Liechtenstein", + "ID_1": 3, + "NAME_1": "Gamprin", + "TYPE_1": "Gemeinden", + "ENGTYPE_1": "Commune", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-15, 34, 35]], + "type": "Polygon", + "properties": { + "ID_0": 129, + "ISO": "LI-04", + "NAME_0": "Liechtenstein", + "ID_1": 4, + "NAME_1": "Mauren", + "TYPE_1": "Gemeinden", + "ENGTYPE_1": "Commune", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[36, -31, -12]], [[37, 38, -24, -34, -17, 39, -4, 40], [41]], [[42]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 129, + "ISO": "LI-05", + "NAME_0": "Liechtenstein", + "ID_1": 5, + "NAME_1": "Planken", + "TYPE_1": "Gemeinden", + "ENGTYPE_1": "Commune", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[43, -29, 44]], + "type": "Polygon", + "properties": { + "ID_0": 129, + "ISO": "LI-06", + "NAME_0": "Liechtenstein", + "ID_1": 6, + "NAME_1": "Ruggell", + "TYPE_1": "Gemeinden", + "ENGTYPE_1": "Commune", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [ + [[45, 46, 47, -19, 48, -26, -37, -11, -33, 49, -38], [50], [-43]], + [[-42]], + [[51, -2, 52, -6, 53, 54, 55]], + [[56, 57, 58, 59]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 129, + "ISO": "LI-07", + "NAME_0": "Liechtenstein", + "ID_1": 7, + "NAME_1": "Schaan", + "TYPE_1": "Gemeinden", + "ENGTYPE_1": "Commune", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-30, -44, 60, -35, -14]], + "type": "Polygon", + "properties": { + "ID_0": 129, + "ISO": "LI-08", + "NAME_0": "Liechtenstein", + "ID_1": 8, + "NAME_1": "Schellenberg", + "TYPE_1": "Gemeinden", + "ENGTYPE_1": "Commune", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[61, -9, 62, 63, 64, -7, 65, 66, -57]], + "type": "Polygon", + "properties": { + "ID_0": 129, + "ISO": "LI-09", + "NAME_0": "Liechtenstein", + "ID_1": 9, + "NAME_1": "Triesen", + "TYPE_1": "Gemeinden", + "ENGTYPE_1": "Commune", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[67, -46, -41, -3, -52, 68, -66, -8, -65]], [[-59, 69, -55, 70]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 129, + "ISO": "LI-10", + "NAME_0": "Liechtenstein", + "ID_1": 10, + "NAME_1": "Triesenberg", + "TYPE_1": "Gemeinden", + "ENGTYPE_1": "Commune", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [ + [[-22, -27, -49]], + [[-50, -32, -25, -39]], + [[-51]], + [[-64, 71, -47, -68]], + [[-1, -53]], + [[-58, -67, -69, -56, -70]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 129, + "ISO": "LI-11", + "NAME_0": "Liechtenstein", + "ID_1": 11, + "NAME_1": "Vaduz", + "TYPE_1": "Gemeinden", + "ENGTYPE_1": "Commune", + "NL_NAME_1": null, + "VARNAME_1": null + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/morocco-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/morocco-topo.json new file mode 100644 index 000000000000..6dd73cf01919 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/morocco-topo.json @@ -0,0 +1,3077 @@ +{ + "type": "Topology", + "arcs": [ + [ + [5939, 7385], + [-9, -46], + [-54, -86], + [-3, -43], + [42, -83], + [-28, -66], + [6, -86], + [-10, -41] + ], + [ + [5883, 6934], + [-33, 19], + [-50, 102], + [-84, -1], + [-26, -67], + [-56, -41], + [-78, -2], + [-62, -15], + [-10, 26], + [59, 65], + [-7, 48], + [-75, 20], + [-2, 36], + [21, 54], + [-66, 3], + [-52, 30] + ], + [ + [5362, 7211], + [-8, 34], + [43, 17], + [-32, 75], + [10, 33], + [-15, 48], + [33, 69] + ], + [ + [5393, 7487], + [20, 56] + ], + [ + [5413, 7543], + [0, 0], + [-1, 0], + [78, 80], + [130, 60] + ], + [ + [5620, 7683], + [13, -25], + [41, -4], + [29, -74], + [1, -55], + [29, -55], + [54, -36], + [55, -64], + [97, 15] + ], + [ + [6659, 6350], + [-37, -52], + [-34, -23], + [-110, -16], + [-50, -24], + [-169, -3], + [-90, 31], + [-74, -29], + [3, -39], + [-70, 21], + [-86, 15], + [-77, -53], + [-65, -18], + [-43, 32] + ], + [ + [5757, 6192], + [-29, 42], + [6, 70], + [-15, 40], + [37, 46], + [-2, 100], + [19, 46], + [-5, 32], + [43, 31], + [42, 72], + [-3, 99], + [37, 71], + [-5, 54], + [36, 21] + ], + [ + [5918, 6916], + [50, 9], + [45, -23], + [93, 15], + [37, -29], + [39, -63], + [38, 60], + [112, 61] + ], + [ + [6332, 6946], + [-34, -78], + [9, -18], + [92, -35], + [10, -33], + [37, -14], + [43, -48], + [53, -28], + [8, -46], + [41, -20], + [7, -30], + [-58, -23], + [-2, -47], + [30, -13], + [61, 13], + [6, -35], + [34, -50], + [-20, -14], + [10, -77] + ], + [ + [5883, 6934], + [35, -18] + ], + [ + [5757, 6192], + [-13, -160], + [-51, -147], + [-45, -49] + ], + [ + [5648, 5836], + [-49, 27], + [-89, 77], + [-47, 2], + [-42, 67], + [-71, -4], + [-90, -67], + [-68, -1], + [-64, 145], + [-26, 11], + [-34, 90], + [-27, 29], + [-57, 30], + [-86, 30], + [-5, 31], + [-75, 114] + ], + [ + [4818, 6417], + [8, 52], + [-59, 23], + [11, 56], + [-12, 74], + [9, 123], + [-70, 77], + [28, 60], + [31, 39], + [46, -5], + [-2, 41], + [33, 12], + [30, 46], + [-49, 44], + [32, 76], + [-53, 85] + ], + [ + [4801, 7220], + [104, 48] + ], + [ + [4905, 7268], + [26, -46], + [61, 9], + [16, -19], + [48, 7], + [47, -57], + [41, 19], + [58, -6], + [28, -32], + [-65, -28], + [15, -61], + [34, -6], + [32, 94], + [75, 64], + [41, 5] + ], + [ + [4818, 6417], + [-42, -35], + [-2, -93], + [-34, -30], + [0, -34], + [27, -46], + [-18, -66], + [-33, -53], + [-78, -75], + [-58, -1], + [-20, -67], + [-68, -13], + [-10, -27], + [-81, -35] + ], + [ + [4401, 5842], + [-70, -41], + [-77, 120], + [5, 77], + [-39, 40], + [-49, 12], + [-32, -22], + [-37, 20], + [-103, -10], + [-34, 39], + [-63, 41], + [-31, 39], + [33, 38], + [4, 39], + [-32, 3], + [-47, 76] + ], + [ + [3829, 6313], + [123, 117], + [103, 126], + [73, 97], + [25, 45], + [68, 91], + [1, 59], + [76, 106], + [35, 27], + [46, -27], + [62, 40], + [48, 49], + [42, 63], + [81, 22], + [26, 23], + [52, 12], + [111, 57] + ], + [ + [4401, 5842], + [-4, -67], + [29, -81], + [58, -86], + [107, -56], + [38, -36], + [2, -41] + ], + [ + [4631, 5475], + [-107, -98], + [-34, -70], + [-6, -43], + [-69, -112], + [17, -66], + [45, -51], + [-35, -10] + ], + [ + [4442, 5025], + [-36, 27], + [-67, -33], + [-49, 18], + [-45, 52], + [-100, -23], + [-28, 11], + [-26, -31], + [-33, -3], + [-69, 55], + [-56, 15] + ], + [ + [3933, 5113], + [-7, 20], + [-50, 33], + [-29, 102], + [-49, 19], + [-138, 13], + [-48, -12], + [-50, 6], + [-90, 37] + ], + [ + [3472, 5331], + [75, 99], + [23, 52], + [7, 59], + [56, 78], + [10, 52], + [-14, 44], + [20, 60], + [-34, 36], + [-9, 38], + [30, 53], + [26, 90], + [-51, 84], + [157, 154], + [61, 83] + ], + [ + [9377, 7122], + [24, -50], + [58, -72], + [30, -69], + [-8, -51], + [-20, -34], + [-101, -32], + [-105, -48], + [-55, -14], + [-68, -3], + [-88, 16], + [-145, -1], + [-68, -12], + [-47, -32], + [-73, -82], + [-34, -59], + [-96, -204], + [-55, -67], + [-43, -83], + [-4, -29] + ], + [ + [8479, 6196], + [-33, -15], + [-95, -1], + [-84, 13], + [-7, 33] + ], + [ + [8260, 6226], + [-3, 70], + [-86, 98], + [-37, 27], + [-23, 56], + [-29, 30], + [-91, 4], + [-84, -18], + [-42, 20], + [-45, 57], + [11, 87], + [-69, 76], + [-17, 38] + ], + [ + [7745, 6771], + [-42, 156], + [-34, 86], + [-57, 57], + [-17, 38], + [3, 46], + [96, 157] + ], + [ + [7694, 7311], + [46, 2], + [40, 38], + [41, -4], + [110, 48], + [72, 1], + [96, -44], + [143, -5], + [39, 32], + [21, 60], + [59, 38] + ], + [ + [8361, 7477], + [33, 26], + [60, -15], + [-29, -88], + [32, -42], + [78, 4], + [129, 68], + [30, 42], + [6, 37], + [34, 25], + [41, 60], + [72, 48], + [50, 102], + [24, 16], + [14, 44], + [92, -52], + [42, -58], + [116, -41], + [46, -43], + [118, -31] + ], + [ + [9349, 7579], + [-18, -80], + [-27, -47], + [-51, -62], + [-33, -71], + [18, -67], + [95, -73], + [44, -57] + ], + [ + [7842, 8026], + [-29, -36], + [-30, -65], + [7, -40], + [-24, -43], + [-47, -40], + [-30, -1], + [-17, -60], + [-39, -2], + [5, 48], + [-36, 52] + ], + [ + [7602, 7839], + [-3, 60], + [-18, 62], + [101, 60], + [30, 74], + [71, 51] + ], + [ + [7783, 8146], + [35, -17], + [2, -57], + [22, -46] + ], + [ + [7994, 7968], + [17, -46], + [2, -105], + [28, -31], + [124, -50], + [56, 50], + [79, -26], + [13, -57], + [26, -13], + [61, 4], + [-60, -84], + [-4, -86], + [25, -47] + ], + [ + [7694, 7311], + [1, 67], + [-93, 96], + [-89, 13], + [-32, 39], + [5, 45] + ], + [ + [7486, 7571], + [38, 108], + [-6, 62], + [-28, 51] + ], + [ + [7490, 7792], + [80, 8], + [32, 39] + ], + [ + [7842, 8026], + [80, -22], + [26, -23], + [46, -13] + ], + [ + [7490, 7792], + [-25, 19], + [-20, 85], + [-85, 19] + ], + [ + [7360, 7915], + [-39, 69], + [-68, -6], + [-9, 59], + [-1, 140], + [-21, 53] + ], + [ + [7222, 8230], + [-24, 70] + ], + [ + [7198, 8300], + [39, -47], + [49, -11], + [146, 55], + [49, 1], + [41, -35], + [46, 16], + [78, -8], + [40, -56], + [17, -49], + [77, 13], + [3, -33] + ], + [ + [6813, 9067], + [13, -108], + [-49, -31], + [18, -61], + [-16, -66], + [51, -70], + [11, -50], + [-115, 2], + [-80, -38], + [-65, 8], + [-71, -64], + [-37, -18], + [-7, -41], + [51, -23], + [129, -121], + [83, -36], + [25, -26], + [47, 19], + [8, 33], + [-36, 107], + [60, 23], + [58, -77], + [42, 1], + [25, -65], + [-57, -11], + [-17, -22], + [-2, -67], + [-14, -56] + ], + [ + [6868, 8209], + [-29, 3], + [-33, -28], + [2, -33], + [-68, -37], + [40, -34], + [16, -65] + ], + [ + [6796, 8015], + [-137, 17], + [-151, 55], + [-42, 5], + [-140, -16], + [-93, 26], + [-86, -43] + ], + [ + [6147, 8059], + [-65, 18], + [-18, 30], + [-45, -5], + [-13, 27] + ], + [ + [6006, 8129], + [31, 90], + [43, 85], + [86, 150], + [140, 311], + [81, 215], + [32, -58], + [17, 45], + [-43, 31], + [43, 128] + ], + [ + [6436, 9126], + [89, -9], + [62, 4], + [128, -26], + [57, -24], + [41, -4] + ], + [ + [6882, 9035], + [57, -43], + [49, -66], + [81, 0], + [20, 18], + [47, -39], + [45, -74], + [37, -21], + [101, -23], + [80, 37], + [64, -18] + ], + [ + [7463, 8806], + [-25, -155], + [-1, -51], + [-56, -9], + [-5, -24], + [-68, -47], + [1, -29], + [-40, -20], + [-13, -30], + [-62, -41], + [-42, -12], + [7, -76], + [39, -12] + ], + [ + [7222, 8230], + [-38, -12], + [-4, -48], + [-49, -57], + [19, -28], + [-56, -18], + [-35, -51], + [-23, 26], + [4, 43], + [-71, 22], + [-33, -8], + [-27, 26], + [20, 44], + [-61, 40] + ], + [ + [6813, 9067], + [31, -27], + [38, -5] + ], + [ + [4905, 7268], + [71, 48], + [59, 17], + [70, 59], + [52, 17], + [33, -6], + [63, 24], + [60, 56] + ], + [ + [5313, 7483], + [36, -31], + [44, 35] + ], + [ + [5313, 7483], + [51, 55], + [49, 5] + ], + [ + [4186, 794], + [2, -476], + [-1, -318], + [-612, 2], + [-757, 3] + ], + [ + [2818, 5], + [-30, 36], + [-46, 133], + [-33, 65], + [-33, 105], + [-27, 143], + [-6, 83], + [-17, 54], + [-92, 187], + [-36, 32], + [-66, 29], + [-124, 1], + [-37, 17] + ], + [ + [2271, 890], + [24, 18], + [12, 86], + [165, 132], + [57, 6], + [34, -130], + [64, -49], + [85, 12], + [45, 27], + [284, 89], + [67, 42], + [83, 68], + [161, 103], + [124, 41], + [75, 55], + [30, 49] + ], + [ + [3581, 1439], + [19, -3], + [96, -107], + [68, -33], + [113, -13], + [66, -66], + [15, -61], + [220, -355], + [8, -7] + ], + [ + [3733, 1919], + [-5, -100], + [-24, -36], + [-52, -190], + [-71, -154] + ], + [ + [2271, 890], + [-53, -7], + [-43, 12], + [-93, 92], + [-72, 23], + [-43, 34], + [-31, 68], + [-12, 52], + [-44, 78] + ], + [ + [1880, 1242], + [31, 27], + [63, 90], + [37, 17], + [272, 172], + [82, 59], + [107, 87], + [66, 84] + ], + [ + [2538, 1778], + [43, -40], + [49, 3], + [102, -14], + [44, 10], + [46, -38], + [28, 4], + [59, 57], + [73, 41], + [55, -9], + [29, 27], + [38, 126], + [29, 39], + [58, 5], + [62, -86], + [50, -2], + [59, 19], + [58, 36], + [72, 16], + [34, 33], + [19, 44], + [39, 12], + [66, -12], + [34, -22], + [49, -108] + ], + [ + [2818, 5], + [-450, 2], + [-893, 4] + ], + [ + [1475, 11], + [-15, 95], + [31, 10], + [80, -2], + [-79, 112], + [-44, 83], + [-31, 111], + [-65, 80], + [-57, 180] + ], + [ + [1295, 680], + [38, 21], + [110, 42], + [90, 49], + [52, 40], + [20, 51], + [35, 38], + [15, 39], + [29, 28], + [48, 85], + [51, 51], + [38, 58], + [59, 60] + ], + [ + [6299, 2356], + [-46, 7], + [-69, -51], + [-154, -9], + [-31, -14], + [-53, -54], + [-52, 7], + [-70, 34], + [-106, -2], + [-86, 37], + [-32, -1], + [-100, -60], + [-68, -85], + [-57, -33], + [-83, -17], + [-53, -1], + [-51, 15], + [-32, -25], + [-18, -58], + [-131, -69], + [-54, -56], + [-82, -57], + [-25, -43], + [-111, -80], + [-80, -66], + [-13, 3], + [-164, -156], + [-98, -117], + [-194, -104], + [0, -507] + ], + [ + [3733, 1919], + [7, 58], + [28, 118], + [32, 76], + [35, 26], + [98, -11], + [145, 47], + [110, 43], + [12, 25], + [-47, 65], + [-11, 37], + [6, 172] + ], + [ + [4148, 2575], + [35, 71], + [35, 43], + [5, 39], + [-31, 11], + [-29, -17], + [-26, 16], + [-2, 61], + [33, 35], + [73, 8], + [177, -96], + [30, 2], + [38, 45], + [30, 86], + [30, 29], + [46, -1], + [87, -77], + [104, -51], + [85, 36], + [71, 85], + [35, 17], + [66, -20], + [73, -6], + [34, 52], + [-27, 157], + [30, 86], + [78, 65] + ], + [ + [5228, 3251], + [72, -55], + [23, -41], + [9, -67], + [48, -40], + [168, -10], + [22, 19], + [16, 92], + [42, 112], + [42, 53], + [66, -6], + [54, -35], + [67, -7], + [74, 41], + [73, 103], + [45, 11], + [46, -29], + [40, -50], + [61, -105], + [24, -57], + [57, -98], + [38, -106], + [5, -185], + [-19, -106], + [4, -103], + [-12, -111], + [6, -115] + ], + [ + [1475, 11], + [-485, 1], + [-242, 1], + [-748, 3], + [7, 18], + [83, 48], + [58, 91], + [19, 87], + [26, 53], + [50, 42], + [233, 35], + [133, 33], + [257, 55], + [143, 41], + [173, 107], + [113, 54] + ], + [ + [5491, 5024], + [9, -37], + [38, -26], + [-6, -44], + [74, 8], + [24, -28], + [-9, -69], + [-24, -69], + [-2, -73], + [10, -35] + ], + [ + [5605, 4651], + [-79, -37], + [-49, -78], + [-61, -15], + [-86, -6], + [-46, -25], + [-75, -92], + [-61, -29], + [-55, 0], + [-69, -44] + ], + [ + [5024, 4325], + [-60, -69], + [-66, -41], + [-2, -58], + [-78, -79], + [-53, -38], + [-49, 68], + [-78, -42], + [-129, -30], + [-65, 8], + [-30, -37], + [-103, 6] + ], + [ + [4311, 4013], + [3, 37], + [61, 26], + [107, 187], + [8, 26], + [-11, 90], + [10, 54], + [-12, 88], + [21, 25], + [24, 78], + [47, -1] + ], + [ + [4569, 4623], + [36, 35], + [65, 43], + [-25, 74], + [20, 33], + [57, 16], + [51, -10], + [45, -29], + [42, -55], + [27, 48], + [-20, 62], + [43, 29], + [40, -11], + [97, -1], + [28, 67], + [-13, 60] + ], + [ + [5062, 4984], + [70, 3], + [78, -70], + [20, -1], + [95, 35], + [40, 63], + [51, 17], + [75, -7] + ], + [ + [4442, 5025], + [-34, -67], + [44, -37], + [13, -35], + [-31, -26], + [1, -33], + [34, -21], + [71, -96], + [29, -87] + ], + [ + [4311, 4013], + [-76, -9], + [-32, -36], + [-33, -4], + [-24, 101], + [-55, 32], + [-10, 28], + [-35, 2], + [-37, -50], + [-59, -41], + [-68, -31], + [-46, -56], + [-100, 10] + ], + [ + [3736, 3959], + [-33, 103], + [14, 54], + [-29, 73], + [-90, 74], + [-8, 62], + [34, 78], + [32, 46], + [6, 135], + [75, 36], + [20, -4], + [52, 38], + [5, 68], + [-49, -8], + [-29, 20], + [-8, 73], + [18, 59], + [72, 95], + [41, 37], + [79, 29], + [-5, 86] + ], + [ + [5648, 5836], + [-7, -109], + [17, -87] + ], + [ + [5658, 5640], + [-8, -55], + [10, -108], + [28, -51], + [31, -16], + [11, -48], + [-21, -27], + [5, -56], + [47, -65], + [-29, -16], + [5, -64], + [-15, -17], + [-45, 8], + [-60, -16], + [-37, 23], + [-46, -3], + [-43, -43], + [0, -62] + ], + [ + [5062, 4984], + [-33, 4], + [-37, 42], + [-68, -6], + [-61, 67], + [-80, -11], + [26, 60], + [-19, 77], + [-30, 49], + [-4, 47], + [21, 28], + [3, 75], + [-30, 44], + [-119, 15] + ], + [ + [3736, 3959], + [-33, -20], + [-46, -1], + [-44, -22] + ], + [ + [3613, 3916], + [-58, 30], + [-61, -8], + [-42, -17], + [-54, 22], + [-25, 40], + [-26, -46], + [-26, -14], + [-47, 23], + [-69, 1], + [-21, 63], + [-70, 82] + ], + [ + [3114, 4092], + [10, 76], + [-7, 100], + [-24, 15], + [4, 53], + [19, 44], + [-2, 64], + [20, 54], + [1, 96], + [-33, 76], + [40, 52], + [51, 107], + [45, 75], + [11, 36], + [-2, 84], + [40, 41], + [44, 79], + [51, 60], + [90, 127] + ], + [ + [7486, 7571], + [-53, 74], + [-38, 29], + [-31, -32], + [8, -140], + [34, -80], + [45, -36], + [-32, -51], + [-34, -13], + [-93, 42], + [-109, 27], + [-119, -173], + [-27, -57], + [-42, -42] + ], + [ + [6995, 7119], + [-38, -2], + [-90, 32] + ], + [ + [6867, 7149], + [-2, 65], + [10, 136], + [18, 76], + [13, 155], + [-2, 47], + [-35, 36], + [-12, 78] + ], + [ + [6857, 7742], + [20, 9], + [53, -64], + [33, -4], + [9, 55], + [93, -37], + [22, -70], + [65, 22], + [22, 22], + [28, 88], + [-13, 41], + [56, 25], + [19, 47], + [52, 4], + [44, 35] + ], + [ + [8479, 6196], + [32, -16], + [31, -42], + [68, -147], + [40, -104], + [21, -108], + [88, -21], + [79, -66], + [-17, -41], + [17, -30], + [35, -4], + [68, 14], + [88, -10], + [195, -41], + [9, -31], + [-38, -85], + [-11, -84], + [0, -103], + [31, -238] + ], + [ + [9215, 5039], + [-373, -96], + [0, -289], + [4, -30], + [-50, -38], + [-47, -17], + [-12, -39], + [18, -49], + [-30, -34], + [29, -75], + [-17, -64], + [49, 4], + [1, 23], + [40, 24], + [7, -85], + [63, -26], + [27, -36], + [26, 18], + [12, -60], + [-19, -102], + [-87, -106], + [1, -91], + [26, -43], + [-21, -49], + [-187, -90], + [-135, -43], + [-146, -10], + [-162, -71], + [-267, -307], + [-306, -177], + [-169, -167] + ], + [ + [7490, 2914], + [-33, 109], + [-37, 47], + [-21, 80], + [6, 142], + [-3, 110], + [11, 64], + [-1, 205], + [-46, 74], + [-83, 173] + ], + [ + [7283, 3918], + [-18, 125], + [28, 158], + [2, 48] + ], + [ + [7295, 4249], + [19, 140], + [39, 105], + [22, 95], + [5, 74], + [-18, 69], + [-51, 52], + [-72, 26], + [-68, 47], + [-39, 65], + [-130, 41], + [-66, -18], + [-67, 11], + [-1, 53], + [96, 110], + [101, 126], + [40, 80], + [-118, 104], + [-43, 13], + [-61, -50], + [-37, -10] + ], + [ + [6846, 5382], + [-9, 159], + [24, 24] + ], + [ + [6861, 5565], + [1, 38], + [55, 25], + [32, 41], + [5, 36], + [29, 21], + [57, 12], + [57, -5] + ], + [ + [7097, 5733], + [77, -16], + [57, -47], + [120, 52], + [39, 56], + [56, 37], + [45, 5], + [41, 25], + [67, 22], + [26, 23], + [59, 6], + [98, 57], + [21, 29], + [-84, 18], + [-2, 25], + [59, 32], + [91, 33], + [34, 26], + [181, 42], + [85, 44], + [93, 24] + ], + [ + [7745, 6771], + [-67, -23], + [-126, -13], + [-95, -179], + [-20, -65], + [-44, -13], + [-25, 15], + [23, 88], + [-23, 31], + [-63, 19], + [44, 208], + [-14, 10], + [-132, -5], + [-25, 15], + [-24, 50], + [-31, 27], + [14, 49], + [-23, 113], + [-119, 21] + ], + [ + [7097, 5733], + [10, 35], + [-24, 23], + [21, 56], + [-11, 23], + [40, 93], + [-47, 92], + [-20, 65], + [-55, 6], + [-47, 46], + [-28, 6], + [-56, -28], + [-12, 72], + [-49, 63], + [-35, 4], + [-16, 39], + [-41, 27], + [-68, -5] + ], + [ + [6332, 6946], + [-24, 52], + [9, 68], + [26, 62], + [82, 15], + [29, -19], + [27, 20], + [23, -32], + [33, -2], + [33, -124], + [65, -23], + [56, 58], + [35, 13], + [116, -39], + [22, 9], + [19, 73], + [-16, 72] + ], + [ + [6857, 7742], + [-27, 34], + [50, 53], + [-9, 47], + [-72, 76], + [-3, 63] + ], + [ + [10355, 9050], + [-17, -50], + [-43, -27], + [-7, -74], + [-53, -8], + [-58, -41], + [-15, -48], + [-7, -96], + [18, -75], + [-59, -25], + [-25, -66], + [-2, -57], + [27, -87] + ], + [ + [10114, 8396], + [15, -48], + [-11, -39], + [-40, -19], + [-131, -16], + [-48, -59], + [-10, -60], + [-69, -14], + [-53, -24], + [-75, -21], + [-73, 14], + [-52, -72], + [-55, 15], + [-64, -7], + [-94, -49] + ], + [ + [9354, 7997], + [24, 79], + [-39, 37], + [-1, 114], + [-48, 43], + [-44, 57], + [4, 60], + [65, 40], + [71, 78], + [8, 100], + [78, 48], + [10, 63] + ], + [ + [9482, 8716], + [99, 46], + [32, 50], + [44, 38], + [27, 70], + [97, 70], + [9, 26], + [43, 31], + [36, 3], + [92, 49], + [25, 85], + [31, 25], + [47, 66], + [4, 22] + ], + [ + [10068, 9297], + [125, -49], + [-3, -46], + [43, -46], + [43, -20], + [32, -49], + [47, -37] + ], + [ + [9377, 7122], + [62, 104], + [107, 128], + [52, 104], + [47, 48], + [70, -20], + [156, -27], + [106, -5], + [96, 8], + [112, 59], + [53, -4], + [139, -66], + [84, -20], + [77, 25], + [25, 25], + [72, 40] + ], + [ + [10635, 7521], + [47, -29], + [31, 7], + [21, -64], + [30, -20], + [9, -106], + [-30, -48], + [-2, -47], + [-37, -92], + [2, -96], + [-9, -23], + [41, -79], + [16, -9], + [32, -82], + [57, -68], + [36, -22], + [13, -43], + [-22, -83], + [-54, -22], + [150, -272], + [103, -55], + [239, -211], + [12, -26], + [-62, -69], + [-50, -45], + [-72, -13], + [-21, -70], + [-26, -25], + [12, -44], + [-11, -64], + [5, -44], + [-42, -58], + [67, 20], + [31, -15], + [25, -65], + [-46, -33], + [-123, -2], + [-138, 16], + [-21, 10], + [-63, -15], + [-101, 29], + [-30, 0], + [-168, 59], + [-66, -7], + [-43, 31], + [-109, -44], + [-44, -5], + [-91, 32], + [-24, -15], + [-149, 4], + [-77, -18], + [-50, -40], + [-53, 6], + [-67, -9], + [-85, 6], + [-102, -22], + [-10, -83], + [44, -83], + [4, -39], + [33, -63], + [2, -64], + [18, -41], + [-157, -50], + [-245, -60] + ], + [ + [9349, 7579], + [-7, 79], + [-32, 68], + [-53, 76], + [-44, 48], + [14, 66], + [105, 45], + [22, 36] + ], + [ + [10114, 8396], + [104, 24], + [61, 38], + [39, 1], + [33, 33], + [11, 50], + [57, -4], + [81, 35], + [75, 56] + ], + [ + [10575, 8629], + [51, -92], + [52, -33], + [-84, -120], + [72, -103], + [-7, -92], + [59, -161], + [-48, -294], + [27, -122], + [-54, -47], + [-8, -44] + ], + [ + [9482, 8716], + [-36, 12], + [-58, 49], + [-30, -1], + [-53, 61], + [-119, 2], + [-25, -76], + [-61, -39], + [-28, -36], + [-23, 13], + [-30, -38], + [-22, -81], + [-64, 19], + [-24, 57], + [-27, 29], + [-11, 42], + [55, 39], + [-32, 30], + [22, 42], + [-8, 92], + [-40, -6], + [-38, 27], + [-49, -7], + [-38, 28], + [-16, 32] + ], + [ + [8727, 9006], + [-11, 19], + [6, 117], + [-17, 139], + [13, 79], + [-8, 36] + ], + [ + [8710, 9396], + [38, 35], + [13, 54], + [38, 17], + [111, -77], + [93, -34], + [147, -16], + [26, 23], + [126, 44], + [33, 50], + [55, 9], + [61, 120], + [16, 65], + [36, -1], + [-16, -92], + [14, -18], + [-6, -58], + [44, -68], + [-8, -78], + [39, -64], + [52, -31], + [66, -10], + [14, 27], + [82, -37], + [80, -12], + [78, 29], + [52, 54], + [74, -30] + ], + [ + [10355, 9050], + [61, 11], + [0, -58], + [75, -57], + [5, -43], + [118, -66], + [-13, -69], + [-59, -101], + [33, -38] + ], + [ + [5939, 7385], + [-6, 30], + [18, 109], + [58, -2], + [-6, 84], + [15, 40], + [-21, 98] + ], + [ + [5997, 7744], + [71, -26], + [52, -32], + [29, -60], + [80, 46], + [25, 55], + [-54, 41], + [-47, 132], + [-21, 28], + [32, 43], + [4, 48], + [-21, 40] + ], + [ + [5955, 7831], + [-28, -54], + [-37, 20], + [-63, 68] + ], + [ + [5827, 7865], + [69, 89] + ], + [ + [5896, 7954], + [72, -54], + [8, -44], + [-21, -25] + ], + [ + [5997, 7744], + [-42, 87] + ], + [ + [5896, 7954], + [44, 58], + [66, 117] + ], + [ + [5620, 7683], + [77, 53], + [130, 129] + ], + [ + [3613, 3916], + [43, -124], + [-83, -64], + [-5, -95], + [35, -41], + [-4, -144] + ], + [ + [3599, 3448], + [-29, -14], + [-39, -60], + [-47, 1], + [-59, -38], + [-108, 21] + ], + [ + [3317, 3358], + [-3, 68], + [-50, 34], + [-41, 123], + [-34, 10], + [-41, 73], + [-33, 19], + [-65, 7], + [14, 82], + [23, 33], + [41, 115], + [-20, 41], + [18, 56], + [-12, 73] + ], + [ + [3589, 3290], + [39, -47], + [19, 12], + [41, -21], + [66, 5], + [29, -34], + [-2, -37], + [57, -16], + [37, -30], + [22, -58], + [36, 2], + [36, -55], + [-52, -41], + [-3, -76], + [15, -43], + [31, -28], + [-16, -55], + [-39, -11], + [-18, -30] + ], + [ + [3887, 2727], + [-16, -30], + [-64, -48], + [-9, -64], + [-20, -14], + [-91, 63], + [-31, 58], + [-67, 1], + [-48, 60], + [-134, 54], + [-9, 32], + [-39, 7], + [-47, -29], + [-66, -2], + [-69, 18] + ], + [ + [3177, 2833], + [46, 111], + [29, 57], + [30, 134], + [16, 132] + ], + [ + [3298, 3267], + [62, 9], + [21, -18], + [88, -4], + [21, 50], + [40, -24], + [36, 27], + [23, -17] + ], + [ + [3599, 3448], + [10, -78], + [28, -27], + [-48, -53] + ], + [ + [3298, 3267], + [19, 91] + ], + [ + [7295, 4249], + [-55, -30], + [-79, -26], + [-38, 1], + [-133, 27], + [-17, -112], + [-24, -111], + [0, -47], + [-43, -133], + [-18, -24], + [77, -94], + [15, -39], + [152, 148], + [68, 59], + [83, 50] + ], + [ + [7490, 2914], + [-19, -7], + [-95, -84], + [-42, -45], + [-35, -64], + [3, -61], + [-13, -36], + [-193, -320], + [-11, -36], + [-91, 26], + [-35, 44], + [-24, -24], + [-33, 13], + [25, 69], + [-71, 36], + [-59, -9], + [-16, -15], + [-72, -7], + [-104, -35], + [-89, 25], + [-77, -21], + [-117, 3], + [-23, -10] + ], + [ + [5228, 3251], + [-67, 63], + [-13, 44], + [1, 81], + [22, 86], + [42, 102], + [1, 113], + [-27, 137], + [1, 59], + [-52, 105], + [-39, 36], + [-63, 131], + [1, 64], + [-11, 53] + ], + [ + [5605, 4651], + [65, -1], + [151, -52], + [73, 22], + [52, -16], + [33, 81], + [-15, 46], + [30, 60], + [73, 22], + [47, -13], + [58, 22], + [140, 100], + [149, 67], + [59, 62], + [38, -8], + [53, 8], + [13, 81], + [88, 44], + [34, 53], + [51, 13], + [54, 58], + [-5, 82] + ], + [ + [6256, 3836], + [-115, -15], + [23, -54], + [36, -40], + [81, -51], + [79, -24], + [22, -21], + [19, 120], + [-76, 51], + [-34, -1], + [-35, 35] + ], + [ + [6767, 3278], + [55, 19], + [70, 43], + [-37, 47], + [-44, 10], + [-54, -58], + [10, -61] + ], + [ + [4148, 2575], + [-79, -5], + [-52, 38], + [-106, 105], + [-24, 14] + ], + [ + [2538, 1778], + [44, 92], + [90, 117], + [40, 24], + [35, 39], + [30, 79], + [57, 78], + [41, 90], + [25, 88], + [15, 16], + [50, 102], + [42, 55], + [96, 105], + [34, 62], + [40, 108] + ], + [ + [5658, 5640], + [72, -16], + [99, 26], + [18, 20], + [47, 1], + [55, -20], + [58, 55], + [76, 19], + [13, -19], + [55, -6], + [45, 18], + [42, -8], + [44, 73], + [27, 5], + [21, -36], + [38, 43], + [10, -39], + [38, -18], + [55, 39], + [8, -47], + [56, 1], + [-2, 97], + [46, 10], + [21, 25], + [61, 27], + [61, -83], + [36, -105], + [-29, -41], + [-1, -48], + [36, -15], + [37, 26], + [60, -59] + ], + [ + [8108, 9344], + [-26, -34], + [16, -119], + [-23, -65], + [-62, -45], + [-94, -18], + [-48, -50], + [-86, -60], + [-12, -29] + ], + [ + [7773, 8924], + [-63, -30], + [-97, -19], + [-25, 9], + [-71, -24], + [-54, -54] + ], + [ + [6882, 9035], + [14, 30], + [43, 13], + [27, 51], + [45, 35], + [38, 12], + [43, -32], + [53, 39], + [-21, 53], + [-10, 86], + [-28, 92], + [51, 45] + ], + [ + [7137, 9459], + [39, 19], + [69, -63], + [102, 54], + [67, 117], + [49, 40], + [31, 55], + [29, 3] + ], + [ + [7523, 9684], + [17, -33], + [54, -24], + [72, -87], + [56, -21], + [79, -80], + [94, -41], + [213, -54] + ], + [ + [7067, 10190], + [12, -156], + [-52, -55], + [-117, -5] + ], + [ + [6910, 9974], + [-60, -28], + [-34, 84], + [-29, 37], + [28, 22], + [35, -34], + [48, 23], + [6, 86] + ], + [ + [6904, 10164], + [42, 15], + [53, -4], + [68, 15] + ], + [ + [6837, 9735], + [12, -43], + [36, -42], + [47, -30], + [50, 2], + [81, 42], + [88, -58], + [17, -46], + [-31, -101] + ], + [ + [6436, 9126], + [35, 132], + [40, 127], + [18, 12], + [42, 149] + ], + [ + [6571, 9546], + [90, 4], + [34, -19], + [46, 1], + [-2, 88], + [-41, 37], + [62, 17], + [13, 30], + [38, -2], + [26, 33] + ], + [ + [6837, 9735], + [30, 52], + [29, -1], + [51, 30], + [-37, 158] + ], + [ + [7067, 10190], + [18, 7], + [81, 86], + [58, 10], + [24, -48], + [33, -12], + [-11, -57], + [11, -110], + [21, -71], + [32, -26], + [38, -137], + [66, -26], + [18, -33], + [44, -35], + [23, -54] + ], + [ + [6571, 9546], + [22, 91], + [60, 131], + [31, 152], + [50, 206], + [20, 16], + [62, -4], + [70, -18], + [18, 44] + ], + [ + [8727, 9006], + [-65, -70], + [-41, -15], + [-68, -3], + [-49, -25], + [-49, -65], + [-59, -35] + ], + [ + [8396, 8793], + [-34, 7], + [-22, 53], + [-24, 10], + [-46, -38], + [-37, -68], + [-93, -53], + [-51, 15], + [-28, 31], + [-47, -10], + [-31, 33], + [-58, -17], + [-64, 35], + [-28, 106], + [-60, 27] + ], + [ + [8108, 9344], + [87, -16], + [96, 48], + [132, 22], + [66, 39], + [60, 1], + [48, 31], + [21, -59], + [52, -22], + [40, 8] + ], + [ + [8396, 8793], + [29, -57], + [-1, -53], + [27, -24], + [-71, -27], + [-32, 13], + [-35, -23], + [-62, 11], + [-22, -74], + [-36, -23], + [-9, -43], + [-34, -7], + [-39, -45], + [-23, -46], + [0, -44], + [32, -35], + [-22, -39], + [82, -28], + [46, -48], + [-52, -39], + [23, -42], + [-15, -32], + [-72, 14], + [-140, -62], + [24, -72] + ] + ], + "transform": { + "scale": [0.0010747627634884191, 0.0008017375890082742], + "translate": [-13.167089462280273, 27.670074462890685] + }, + "objects": { + "morocco": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-BES", + "NAME_0": "Morocco", + "ID_1": 1, + "NAME_1": "Chaouia - Ouardigha", + "ID_2": 1, + "NAME_2": "Ben Slimane", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[6, 7, 8, 9]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-KHO", + "NAME_0": "Morocco", + "ID_1": 1, + "NAME_1": "Chaouia - Ouardigha", + "ID_2": 2, + "NAME_2": "Khouribga", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-2, 10, -8, 11, 12, 13, 14, 15]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-SET", + "NAME_0": "Morocco", + "ID_1": 1, + "NAME_1": "Chaouia - Ouardigha", + "ID_2": 3, + "NAME_2": "Settat", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[16, 17, 18, -14]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-JDI", + "NAME_0": "Morocco", + "ID_1": 2, + "NAME_1": "Doukkala - Abda", + "ID_2": 4, + "NAME_2": "El Jadida", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[19, 20, 21, 22, 23, -18]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-SAF", + "NAME_0": "Morocco", + "ID_1": 2, + "NAME_1": "Doukkala - Abda", + "ID_2": 5, + "NAME_2": "Safi", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[24, 25, 26, 27, 28, 29, 30]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-BOM", + "NAME_0": "Morocco", + "ID_1": 3, + "NAME_1": "Fès - Boulemane", + "ID_2": 6, + "NAME_2": "Boulemane", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[31, 32, 33]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-FES", + "NAME_0": "Morocco", + "ID_1": 3, + "NAME_1": "Fès - Boulemane", + "ID_2": 7, + "NAME_2": "Fès", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Fès-Dar-Dbibegh" + } + }, + { + "arcs": [[34, -29, 35, 36, 37, -32, 38]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-SEF", + "NAME_0": "Morocco", + "ID_1": 3, + "NAME_1": "Fès - Boulemane", + "ID_2": 8, + "NAME_2": "Sefrou", + "TYPE_2": "Prefecture", + "ENGTYPE_2": "Prefecture", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-33, -38, 39, 40, 41, 42]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-MOU", + "NAME_0": "Morocco", + "ID_1": 3, + "NAME_1": "Fès - Boulemane", + "ID_2": 9, + "NAME_2": "Zouagha-Moulay Yacoub", + "TYPE_2": "Prefecture", + "ENGTYPE_2": "Prefecture", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[43, 44, 45, 46, 47, 48]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-KEN", + "NAME_0": "Morocco", + "ID_1": 4, + "NAME_1": "Gharb - Chrarda - Béni Hssen", + "ID_2": 10, + "NAME_2": "Kénitra", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Kenitra" + } + }, + { + "arcs": [[49, 50, -42, 51, -44, 52]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-SIK", + "NAME_0": "Morocco", + "ID_1": 4, + "NAME_1": "Gharb - Chrarda - Béni Hssen", + "ID_2": 11, + "NAME_2": "Sidi Kacem", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-16, 53, 54, -3]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-CAS", + "NAME_0": "Morocco", + "ID_1": 5, + "NAME_1": "Grand Casablanca", + "ID_2": 12, + "NAME_2": "Casablanca", + "TYPE_2": "Prefecture", + "ENGTYPE_2": "Prefecture", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[55, -4, -55]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-MOH", + "NAME_0": "Morocco", + "ID_1": 5, + "NAME_1": "Grand Casablanca", + "ID_2": 13, + "NAME_2": "Mohammedia", + "TYPE_2": "Prefecture", + "ENGTYPE_2": "Prefecture", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[56, 57, 58, 59]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-ASZ", + "NAME_0": "Morocco", + "ID_1": 6, + "NAME_1": "Guelmim - Es-Semara", + "ID_2": 14, + "NAME_2": "Assa-Zag", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[60, -59, 61, 62, 63]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-GUE", + "NAME_0": "Morocco", + "ID_1": 6, + "NAME_1": "Guelmim - Es-Semara", + "ID_2": 15, + "NAME_2": "Guelmim", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-58, 64, 65, 66, -62]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-TNT", + "NAME_0": "Morocco", + "ID_1": 6, + "NAME_1": "Guelmim - Es-Semara", + "ID_2": 16, + "NAME_2": "Tan-Tan", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[67, -60, -61, 68, 69, 70]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-TAT", + "NAME_0": "Morocco", + "ID_1": 6, + "NAME_1": "Guelmim - Es-Semara", + "ID_2": 17, + "NAME_2": "Tata", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-66, 71]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-LAA", + "NAME_0": "Morocco", + "ID_1": 7, + "NAME_1": "Laâyoune - Boujdour - Sakia El Hamra", + "ID_2": 18, + "NAME_2": "Laâyoune", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Laayoune" + } + }, + { + "arcs": [[72, 73, 74, 75, 76, 77]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-HAO", + "NAME_0": "Morocco", + "ID_1": 8, + "NAME_1": "Marrakech - Tensift - Al Haouz", + "ID_2": 19, + "NAME_2": "Al Haouz", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[78, -76, 79, 80, -22]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-CHI", + "NAME_0": "Morocco", + "ID_1": 8, + "NAME_1": "Marrakech - Tensift - Al Haouz", + "ID_2": 20, + "NAME_2": "Chichaoua", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[81, 82, -78, 83, -20, -17, -13]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-KES", + "NAME_0": "Morocco", + "ID_1": 8, + "NAME_1": "Marrakech - Tensift - Al Haouz", + "ID_2": 21, + "NAME_2": "El Kelaâ des Sraghna", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "El Kelaa Sraghna" + } + }, + { + "arcs": [[-23, -81, 84, 85, 86]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-ESI", + "NAME_0": "Morocco", + "ID_1": 8, + "NAME_1": "Marrakech - Tensift - Al Haouz", + "ID_2": 22, + "NAME_2": "Essaouira", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-84, -77, -79, -21]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-MMD", + "NAME_0": "Morocco", + "ID_1": 8, + "NAME_1": "Marrakech - Tensift - Al Haouz", + "ID_2": 23, + "NAME_2": "Marrakech", + "TYPE_2": "Prefecture", + "ENGTYPE_2": "Prefecture", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-40, -37, 87, 88, 89, 90]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-HAJ", + "NAME_0": "Morocco", + "ID_1": 9, + "NAME_1": "Meknès - Tafilalet", + "ID_2": 24, + "NAME_2": "El Hajeb", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[91, 92, 93, 94, 95, 96, 97, 98, -26]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-ERR", + "NAME_0": "Morocco", + "ID_1": 9, + "NAME_1": "Meknès - Tafilalet", + "ID_2": 25, + "NAME_2": "Errachidia", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-28, 99, -88, -36]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-IFR", + "NAME_0": "Morocco", + "ID_1": 9, + "NAME_1": "Meknès - Tafilalet", + "ID_2": 26, + "NAME_2": "Ifrane", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-100, -27, -99, 100, -10, 101, -89]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-KHN", + "NAME_0": "Morocco", + "ID_1": 9, + "NAME_1": "Meknès - Tafilalet", + "ID_2": 27, + "NAME_2": "Khénifra", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Khenifra" + } + }, + { + "arcs": [[-41, -91, 102, -45, -52]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-MEK", + "NAME_0": "Morocco", + "ID_1": 9, + "NAME_1": "Meknès - Tafilalet", + "ID_2": 28, + "NAME_2": "Meknès", + "TYPE_2": "Prefecture", + "ENGTYPE_2": "Prefecture", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[103, 104, 105, 106, 107]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-BER", + "NAME_0": "Morocco", + "ID_1": 10, + "NAME_1": "Oriental", + "ID_2": 29, + "NAME_2": "Berkane Taourirt", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-92, -25, 108, 109]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-FIG", + "NAME_0": "Morocco", + "ID_1": 10, + "NAME_1": "Oriental", + "ID_2": 30, + "NAME_2": "Figuig", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-109, -31, 110, -105, 111, 112]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-JRA", + "NAME_0": "Morocco", + "ID_1": 10, + "NAME_1": "Oriental", + "ID_2": 31, + "NAME_2": "Jerada", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Jrada" + } + }, + { + "arcs": [[-107, 113, 114, 115]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-NAD", + "NAME_0": "Morocco", + "ID_1": 10, + "NAME_1": "Oriental", + "ID_2": 32, + "NAME_2": "Nador", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-112, -104, 116]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-OUJ", + "NAME_0": "Morocco", + "ID_1": 10, + "NAME_1": "Oriental", + "ID_2": 33, + "NAME_2": "Oujda Angad", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-103, -90, -102, -9, -11, -1, 117, 118, -46]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-KHE", + "NAME_0": "Morocco", + "ID_1": 11, + "NAME_1": "Rabat - Salé - Zemmour - Zaer", + "ID_2": 34, + "NAME_2": "Khémisset", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Khemisset" + } + }, + { + "arcs": [[119, 120, 121]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-RAB", + "NAME_0": "Morocco", + "ID_1": 11, + "NAME_1": "Rabat - Salé - Zemmour - Zaer", + "ID_2": 35, + "NAME_2": "Rabat", + "TYPE_2": "Prefecture", + "ENGTYPE_2": "Prefecture", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-119, 122, -122, 123, -47]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-SAL", + "NAME_0": "Morocco", + "ID_1": 11, + "NAME_1": "Rabat - Salé - Zemmour - Zaer", + "ID_2": 36, + "NAME_2": "Salé", + "TYPE_2": "Prefecture", + "ENGTYPE_2": "Prefecture", + "NL_NAME_2": "Sale", + "VARNAME_2": null + } + }, + { + "arcs": [[-123, -118, -6, 124, -120]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-SKH", + "NAME_0": "Morocco", + "ID_1": 11, + "NAME_1": "Rabat - Salé - Zemmour - Zaer", + "ID_2": 37, + "NAME_2": "Skhirate-Témara", + "TYPE_2": "Prefecture", + "ENGTYPE_2": "Prefecture", + "NL_NAME_2": null, + "VARNAME_2": "Skhirate-Temara" + } + }, + { + "arcs": [[-86, 125, 126, 127]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-AGD", + "NAME_0": "Morocco", + "ID_1": 12, + "NAME_1": "Souss - Massa - Draâ", + "ID_2": 38, + "NAME_2": "Agadir-Ida ou Tanane", + "TYPE_2": "Prefecture", + "ENGTYPE_2": "Prefecture", + "NL_NAME_2": null, + "VARNAME_2": "Agadir Ida Ou Tanane" + } + }, + { + "arcs": [[128, 129, 130, 131]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-CHT", + "NAME_0": "Morocco", + "ID_1": 12, + "NAME_1": "Souss - Massa - Draâ", + "ID_2": 39, + "NAME_2": "Chtouka-Aït Baha", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Chtouka Ait Baha" + } + }, + { + "arcs": [[132, -132, 133, -127]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-INE", + "NAME_0": "Morocco", + "ID_1": 12, + "NAME_1": "Souss - Massa - Draâ", + "ID_2": 40, + "NAME_2": "Inezgane-Aït Melloul", + "TYPE_2": "Prefecture", + "ENGTYPE_2": "Prefecture", + "NL_NAME_2": null, + "VARNAME_2": "Inezgane Ait Melloul" + } + }, + { + "arcs": [[134, -94, 135, -71, 136, -74, 137, -96], [138], [139]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-OUA", + "NAME_0": "Morocco", + "ID_1": 12, + "NAME_1": "Souss - Massa - Draâ", + "ID_2": 41, + "NAME_2": "Ouarzazate", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-70, 140, -129, -133, -126, -85, -80, -75, -137]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-TAR", + "NAME_0": "Morocco", + "ID_1": 12, + "NAME_1": "Souss - Massa - Draâ", + "ID_2": 42, + "NAME_2": "Taroudannt", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-141, -69, -64, 141, -130]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-TIZ", + "NAME_0": "Morocco", + "ID_1": 12, + "NAME_1": "Souss - Massa - Draâ", + "ID_2": 43, + "NAME_2": "Tiznit", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[-140]], [[-139]], [[-135, -95]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 152, + "ISO": "MA-ZAG", + "NAME_0": "Morocco", + "ID_1": 12, + "NAME_1": "Souss - Massa - Draâ", + "ID_2": 44, + "NAME_2": "Zagora", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-97, -138, -73, -83, 142]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-AZI", + "NAME_0": "Morocco", + "ID_1": 13, + "NAME_1": "Tadla - Azilal", + "ID_2": 45, + "NAME_2": "Azilal", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-98, -143, -82, -12, -7, -101]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-BEM", + "NAME_0": "Morocco", + "ID_1": 13, + "NAME_1": "Tadla - Azilal", + "ID_2": 46, + "NAME_2": "Béni Mellal", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Beni Mellal" + } + }, + { + "arcs": [[143, 144, -50, 145, 146, 147]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-CHE", + "NAME_0": "Morocco", + "ID_1": 14, + "NAME_1": "Tanger - Tétouan", + "ID_2": 47, + "NAME_2": "Chefchaouen", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[148, 149, 150]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-FAH", + "NAME_0": "Morocco", + "ID_1": 14, + "NAME_1": "Tanger - Tétouan", + "ID_2": 48, + "NAME_2": "Fahs Anjra", + "TYPE_2": "Prefecture", + "ENGTYPE_2": "Prefecture", + "NL_NAME_2": null, + "VARNAME_2": "Fahs-Béni Makada" + } + }, + { + "arcs": [[151, -146, -53, -49, 152, 153]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-LAR", + "NAME_0": "Morocco", + "ID_1": 14, + "NAME_1": "Tanger - Tétouan", + "ID_2": 49, + "NAME_2": "Larache", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-147, -152, 154, -149, 155]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-TET", + "NAME_0": "Morocco", + "ID_1": 14, + "NAME_1": "Tanger - Tétouan", + "ID_2": 50, + "NAME_2": "Tétouan", + "TYPE_2": "Prefecture", + "ENGTYPE_2": "Prefecture", + "NL_NAME_2": null, + "VARNAME_2": "Tetouan" + } + }, + { + "arcs": [[-150, -155, -154, 156]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-TNG", + "NAME_0": "Morocco", + "ID_1": 14, + "NAME_1": "Tanger - Tétouan", + "ID_2": 51, + "NAME_2": "Tanger-Assilah", + "TYPE_2": "Prefecture", + "ENGTYPE_2": "Prefecture", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-115, 157, 158, -144, 159]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-HOC", + "NAME_0": "Morocco", + "ID_1": 15, + "NAME_1": "Taza - Al Hoceima - Taounate", + "ID_2": 52, + "NAME_2": "Al Hoceïma", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Al Hoceima" + } + }, + { + "arcs": [[160, -39, -34, -43, -51, -145, -159]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-TAO", + "NAME_0": "Morocco", + "ID_1": 15, + "NAME_1": "Taza - Al Hoceima - Taounate", + "ID_2": 53, + "NAME_2": "Taounate", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-106, -111, -30, -35, -161, -158, -114]], + "type": "Polygon", + "properties": { + "ID_0": 152, + "ISO": "MA-TAZ", + "NAME_0": "Morocco", + "ID_1": 15, + "NAME_1": "Taza - Al Hoceima - Taounate", + "ID_2": 54, + "NAME_2": "Taza", + "TYPE_2": "Province", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/myanmar-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/myanmar-topo.json new file mode 100644 index 000000000000..cea96c28c9a3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/myanmar-topo.json @@ -0,0 +1,5148 @@ +{ + "type": "Topology", + "arcs": [ + [ + [13181, 27971], + [-77, -78], + [-83, -17], + [-61, 14], + [-171, -8], + [-54, -40], + [32, -35], + [-140, -84], + [-86, 13], + [-60, -38], + [-18, -63], + [-48, 49], + [-39, -30], + [-86, 16], + [-215, -82], + [-66, 9], + [-76, -22], + [-77, -61], + [-42, 12], + [-137, 7], + [-23, 39], + [-2, 65], + [-71, 41], + [-38, -9], + [-160, 16], + [-56, -7], + [-32, 32], + [-173, 21], + [-21, 45], + [50, 39], + [67, -15], + [73, 19], + [62, 71], + [14, 49], + [-42, 75], + [-62, 9], + [-6, 94], + [-20, 40], + [66, 91], + [-41, 48], + [-130, -23], + [-73, -38], + [-69, -7], + [-123, 16], + [59, 58], + [-24, 88], + [-38, 26], + [39, 34], + [-16, 47], + [-50, 25], + [-8, 37] + ], + [ + [10829, 28559], + [-10, 25], + [-101, 55], + [-47, 41], + [-51, 13], + [-16, 49], + [64, 43], + [17, 94], + [-78, 4], + [-21, 54], + [84, 43], + [-24, 57], + [78, 14], + [57, 30], + [-31, 77], + [-20, 4], + [-71, 45], + [-40, -28], + [-122, 59], + [-64, -24], + [-51, 59], + [-70, 10], + [-31, 43], + [-44, 8], + [-25, -36], + [-79, -25], + [-92, 11], + [-27, -26], + [-61, -2], + [-61, 30], + [-105, -32], + [-75, -52], + [-36, 0], + [21, 76], + [-189, 104], + [-50, 49], + [31, 63], + [-47, 52], + [-26, 54], + [-96, 13], + [-40, -38], + [-127, 25], + [-52, 60], + [-83, -7], + [-25, 44], + [21, 42], + [-44, 42], + [-23, 73], + [-32, 39], + [26, 113], + [-39, 26], + [4, 40], + [-46, 9], + [-68, 45], + [37, 40], + [102, 4], + [85, 62], + [121, 1], + [108, 49], + [-9, 103], + [39, 22], + [69, -43], + [-23, -91], + [-60, -22], + [-12, -102], + [57, -9], + [41, 28], + [53, 69], + [2, 66], + [19, 39], + [-8, 73], + [-54, 7], + [14, 43], + [-37, 57], + [7, 12], + [-65, 60], + [-60, 78], + [-12, 72], + [9, 43], + [-46, 34], + [-34, 89], + [10, 331], + [-16, 221], + [30, 37], + [89, -33], + [103, -57], + [46, -13], + [24, 51], + [50, 43], + [40, -22], + [117, 48], + [41, 2], + [65, 61], + [16, 110], + [-34, 47], + [-76, 6], + [-125, 77], + [22, 64], + [-43, 118], + [-58, 32], + [65, 42], + [28, 159], + [85, 15], + [57, 88], + [-52, 66], + [-2, 58], + [-24, 29], + [14, 56], + [-86, 30], + [34, 38], + [0, 37], + [-38, 38], + [-94, 43], + [48, 120], + [4, 46], + [-36, 33], + [-83, 12], + [-53, 59], + [-70, 17], + [3, 66], + [33, 47], + [-29, 26], + [9, 48], + [84, 17], + [107, -6], + [59, 13], + [55, -10], + [75, 9], + [43, 55], + [-54, 47], + [-15, 68], + [-41, 25], + [-17, 82], + [-116, 33], + [30, 25], + [-8, 39], + [29, 83], + [136, 47], + [89, 15], + [31, 68], + [93, 21], + [5, 53], + [-46, 83], + [33, 39], + [91, -25], + [-11, 66], + [35, 33], + [52, 8], + [-18, 51], + [-60, -10], + [-96, 8], + [22, 56], + [127, 12], + [64, 61], + [49, 0], + [71, -27], + [61, 2], + [46, -45], + [133, 5], + [42, 19], + [69, 0], + [106, -28], + [39, 32], + [147, 19], + [120, -30], + [55, 17], + [52, 76], + [114, -17], + [96, 28], + [157, 3], + [37, -22], + [82, 19], + [29, -24], + [76, -18], + [28, 24], + [68, 4], + [59, 36], + [39, 74] + ], + [ + [11802, 34419], + [126, 21], + [47, -22], + [65, 85], + [-107, 108], + [-70, 47], + [-9, 49], + [-82, 59], + [-61, 78], + [-71, 25], + [-19, 52], + [-68, 65], + [-2, 50], + [-67, 32], + [-7, 31], + [-70, 46], + [26, 119], + [-21, 137], + [-38, 45], + [64, 28], + [36, 76], + [82, -2], + [54, 33], + [77, 122], + [104, 26], + [80, 2], + [1, 38], + [106, 79], + [41, 5], + [189, 140], + [29, 36], + [123, 32], + [163, -85], + [32, 39], + [-35, 135], + [47, 50], + [23, 51], + [-101, 110], + [-75, -15], + [26, 60], + [-15, 55], + [13, 52], + [52, 18], + [26, 96], + [-38, 29], + [8, 51], + [89, -4], + [60, 25], + [-23, 58], + [38, 34], + [109, -50], + [49, 88], + [49, 1], + [-6, 49], + [-41, 63], + [-2, 33], + [45, 24], + [8, 64], + [42, 26], + [-46, 50], + [-8, 47], + [78, 31], + [15, 26], + [83, 47], + [99, -56], + [37, 38], + [73, 1], + [67, -27], + [9, -35], + [74, -17], + [43, -74], + [-9, -119], + [129, -85], + [11, -49], + [119, -6], + [7, 42], + [52, 29], + [97, 4], + [80, -75], + [55, -33], + [-19, -27], + [85, -19], + [45, -34], + [32, -56], + [-40, -62], + [59, -51], + [45, 25], + [66, 5], + [40, -68], + [64, -13], + [50, -48], + [45, -82], + [-25, -76], + [-29, -33], + [15, -44], + [-24, -59], + [7, -59], + [55, -46], + [70, -2], + [31, -70], + [-1, -57], + [-47, -3], + [-29, -43], + [26, -44], + [107, -38], + [-14, -104], + [67, -36], + [-55, -59], + [34, -39], + [113, -72], + [40, -50], + [19, -85], + [-2, -86], + [22, -45], + [46, -25], + [86, -2], + [44, 19], + [21, 42], + [72, 26], + [-1, 87], + [19, 64], + [-13, 70], + [31, 8], + [62, -56], + [82, -9], + [18, -21], + [112, 44], + [66, -116], + [156, -42], + [58, 36], + [69, -43], + [-38, -154], + [34, -39], + [-33, -85], + [37, -18], + [-9, -67], + [18, -38], + [69, -23], + [13, -35], + [-16, -91], + [-41, -32], + [17, -97], + [-66, -24], + [40, -141], + [-7, -66], + [10, -62], + [62, -4], + [63, -43], + [-5, -64], + [-47, -14], + [-13, -104], + [37, -78], + [10, -77], + [-58, -53], + [2, -27], + [61, -69], + [-16, -152], + [-26, -43], + [67, -44], + [-22, -49], + [47, -86], + [-24, -89], + [-39, -27], + [4, -146], + [-34, -110], + [19, -27], + [-42, -75], + [-13, -73], + [-108, -81], + [-9, -92], + [-18, -40], + [82, 0], + [70, -114], + [-25, -50], + [-38, -6], + [18, -62], + [-60, -27], + [-60, -45], + [-24, 20], + [22, 47], + [-37, 41], + [-53, 9], + [-60, -33], + [-41, 25], + [-33, -47], + [72, -135], + [34, -155], + [61, 3], + [103, -78], + [19, -59], + [29, -23], + [1, -89], + [-42, -13], + [-32, -54], + [-84, -36], + [-149, 54], + [-37, 40], + [-71, -5], + [-30, -37], + [-67, -38], + [-42, -54], + [9, -53], + [-34, -21], + [7, -70], + [-21, -39], + [-91, -30], + [-25, -24], + [-5, -97], + [-15, -35], + [-55, 1], + [-46, -39], + [-39, 0], + [-99, -53], + [-29, 53], + [-73, 50], + [-128, 33], + [-68, -32], + [18, -55], + [-29, -48], + [-53, -45], + [-63, -12], + [-3, -26], + [76, -101], + [-10, -72], + [-32, -64], + [-93, 3], + [-11, -76], + [-53, -42], + [-20, -48], + [-67, -10], + [-46, 11], + [-71, -99], + [-109, -71], + [-60, -19], + [-48, 16], + [-62, 79], + [-90, 15], + [-73, -132], + [-27, -87], + [-79, -110], + [-65, -49], + [-36, -6], + [13, -64], + [-18, -57], + [-1, -78], + [32, -56], + [-8, -57], + [33, -48], + [47, -29], + [57, -3], + [36, -64], + [-89, -46], + [-67, 6], + [-73, 25], + [-51, -19], + [-96, -79], + [-135, -47], + [-36, 5], + [-56, -57], + [36, -34], + [15, -131], + [-6, -115], + [-37, -226], + [-48, -68], + [-7, -36], + [221, 8], + [97, 25], + [30, -7], + [11, -83], + [26, -43], + [59, -19], + [-30, -67], + [-90, 1], + [-16, -39], + [21, -51], + [115, -2], + [56, -17], + [75, -55], + [-97, -66], + [-3, -83], + [42, -17], + [-20, -88], + [-27, -43], + [-70, -33], + [-53, -49], + [-97, -54], + [-17, -76], + [-124, -42], + [-33, -44], + [-76, -31], + [-6, -38], + [67, -19], + [184, -78], + [13, -36] + ], + [ + [13724, 19409], + [-15, -58], + [40, -104], + [-84, -89], + [-34, -52], + [-56, -41], + [11, -40], + [-13, -61], + [72, -101], + [-11, -39], + [-53, 12], + [-51, -47], + [47, -13], + [100, -74], + [-11, -53], + [13, -98], + [-19, -104], + [-56, -6], + [-53, -34], + [-63, -12], + [7, -47], + [-72, -4], + [-4, -129], + [-73, -17], + [-89, -73], + [50, -14], + [20, -42], + [104, -43], + [19, -78], + [-25, -28], + [61, -141], + [-29, -43], + [12, -45], + [37, -38], + [-10, -127], + [14, -51], + [-20, -57], + [-79, 17], + [-77, -35], + [-117, 14], + [-40, -36], + [-82, -42], + [-139, -15], + [-19, -72], + [-87, 4], + [-45, 31], + [-36, -29], + [-53, -5], + [-41, 99], + [-67, 45], + [-88, -17], + [-12, 82] + ], + [ + [12508, 17459], + [-35, 39], + [-18, 51], + [-49, 40], + [-19, 41], + [-106, 6], + [-79, -18], + [-52, 12], + [-80, -8], + [-98, 24], + [-4, 6], + [-81, -15], + [-45, 98], + [-94, 134], + [-44, 117], + [-74, 38], + [36, 42], + [-20, 35], + [-89, 53], + [4, 27], + [-57, 76], + [25, 44], + [-55, 65], + [48, 37], + [-66, 45], + [19, 26], + [-45, 40], + [-23, 60], + [-31, -12], + [-98, 49], + [-19, 87], + [-52, 72], + [6, 139], + [29, 17] + ], + [ + [11242, 18926], + [44, -42], + [81, 52], + [-26, 36], + [32, 38], + [172, 84], + [15, 21], + [-73, 67], + [-27, -18], + [-52, 31], + [17, 26], + [-88, 54], + [6, 30], + [51, 19], + [4, 50], + [114, 62], + [19, 51], + [76, 54], + [49, -1], + [26, 28], + [-19, 38], + [16, 35], + [83, 3], + [107, 44], + [82, 1], + [-29, 72], + [87, 57], + [-44, 39], + [31, 68], + [20, 6], + [-34, 134], + [39, 105], + [-31, 62], + [59, 20], + [98, -15], + [26, -67], + [4, -96], + [107, -33], + [117, 21], + [35, -8], + [11, 57], + [42, 41], + [82, 19], + [33, -75], + [65, -22], + [49, -53], + [108, 15], + [26, 27], + [78, -41], + [-15, -32], + [46, -64], + [110, -5], + [-74, -135], + [0, -62], + [104, -64], + [51, -50], + [83, -3], + [37, -24], + [42, 17], + [31, -23], + [90, 0], + [3, 29], + [74, -21], + [50, -31], + [77, 18], + [59, -23], + [-7, -75], + [33, -65] + ], + [ + [12508, 17459], + [-38, -45], + [1, -45], + [27, -43], + [41, -14], + [44, -57], + [32, -95], + [34, -22], + [19, -59], + [42, -14], + [22, -47], + [-23, -35], + [5, -44], + [42, -58], + [112, -85], + [61, 34], + [41, 102], + [92, 0], + [93, -41], + [29, -66], + [-72, -80], + [29, -50], + [84, -82], + [47, -31], + [5, -84], + [32, -51], + [-22, -51], + [56, -13], + [39, -89], + [38, -59], + [-14, -63], + [-57, -13], + [-44, -38], + [-42, -93], + [71, -126], + [83, -45], + [31, -51], + [58, -40], + [-20, -48], + [68, -71], + [134, -123], + [140, -91], + [44, -89], + [95, -23], + [13, -36], + [47, 5], + [108, -110], + [56, -38], + [-24, -19], + [96, -66], + [56, -19], + [-12, -66], + [19, -63], + [32, -1], + [93, -107], + [97, -35], + [18, -38], + [80, -39], + [53, -95], + [43, -13], + [-13, -70], + [90, -29], + [-4, -62], + [57, -46], + [53, -2], + [76, 20], + [44, -10], + [70, -68], + [21, -53], + [46, 0], + [74, -93], + [-36, -21], + [76, -78], + [14, -45], + [-53, -33], + [-7, -48], + [111, -20], + [11, -28], + [-73, -16], + [-25, -38], + [-44, 9], + [-58, -120], + [132, -88], + [-3, -61], + [44, -41], + [28, 7], + [66, -36], + [30, -73], + [-22, -39], + [78, -85], + [63, -87], + [51, -44], + [-45, -53], + [14, -53], + [48, -75], + [15, -94], + [-3, -70], + [83, -23], + [8, 47], + [33, 4], + [18, 67], + [47, 34], + [41, -9], + [41, 44], + [85, 45], + [34, 68], + [125, -5], + [57, -46], + [32, -67], + [-46, -98], + [39, -18], + [-21, -64], + [8, -35], + [-91, -31], + [-48, -41], + [21, -97], + [-20, -62], + [-61, -46], + [-60, -25], + [-59, 43], + [-34, -12], + [-103, 7], + [-25, 21], + [-115, -13], + [23, -65], + [-31, -39], + [-82, -27], + [7, -33], + [-118, 34], + [-31, -9], + [-6, -54], + [74, -51], + [27, -77], + [-32, -23], + [-24, -84], + [36, -78], + [-19, -78], + [-59, -135], + [-49, -167], + [46, -93], + [-31, -73], + [80, -259], + [-14, -179], + [-47, -89], + [-58, 66], + [-64, 11], + [-42, 34], + [-88, -51], + [-90, -6], + [-59, -112], + [46, -28], + [9, -53], + [-40, -25], + [-29, 33], + [-69, 39], + [-84, 20], + [-48, 27], + [-29, -33], + [24, -33], + [-53, -17], + [-44, -67], + [-74, -6], + [-27, -24], + [-46, 24] + ], + [ + [14542, 10746], + [6, 52], + [-52, 65], + [2, 29], + [-66, 44], + [-42, -1], + [-58, 107], + [-60, 75], + [-56, 35], + [0, 36], + [-71, 113], + [-71, 51], + [-16, 43], + [-58, 61], + [-71, 36], + [3, 63], + [-66, -7], + [-51, 74], + [-82, 8], + [12, 99], + [30, 24], + [-38, 47], + [-21, 124], + [-64, 80], + [22, 15], + [-26, 68], + [44, 46], + [-37, 80], + [32, 44], + [-9, 39], + [55, 22], + [-42, 61], + [2, 35], + [-65, 61], + [-23, 51], + [140, 35], + [88, -24], + [94, 35], + [69, 6], + [131, -11], + [22, -29], + [57, -21], + [33, 28], + [116, 42], + [8, 79], + [-35, 15], + [-85, 84], + [7, 43], + [-90, 92], + [-119, 40], + [-7, 94], + [-28, 107], + [-46, -28], + [-109, 12], + [-24, 51], + [-42, 31], + [-73, 21], + [6, 29], + [-15, 1], + [5, 64], + [-25, 39] + ], + [ + [13683, 13361], + [-114, -55], + [-84, 41], + [-39, 47], + [-92, 23], + [-36, 59], + [-97, -19], + [-2, 45], + [-33, 52], + [-68, 23] + ], + [ + [13118, 13577], + [-97, 130], + [-29, 3], + [2, 127], + [-116, 35], + [-22, 28], + [34, 41], + [-64, 16], + [-40, 84], + [9, 94], + [-24, 49], + [-58, 37], + [92, 155], + [-15, 52], + [10, 19], + [12, 18], + [-4, 5], + [59, 21], + [19, 38], + [-37, 38], + [-27, 78], + [25, 71], + [-47, 110], + [48, 16], + [-12, 75], + [-64, 57], + [15, 15], + [-71, 58], + [-20, 50], + [11, 65], + [-40, 56], + [21, 32], + [13, 82], + [-45, 35], + [-57, 19], + [-44, 59], + [6, 37], + [-32, 67], + [22, 73], + [52, 10], + [20, 45], + [-28, 21], + [-64, -4], + [-10, -76], + [-54, 4], + [1, -50], + [-56, -90], + [-4, -39], + [-99, 38], + [-38, -15], + [-23, -44], + [-39, 4], + [9, -71], + [-48, -2] + ], + [ + [12170, 15353], + [-53, 29], + [19, 137], + [-82, 79], + [18, 25], + [-54, 93], + [25, 64], + [64, 60], + [5, 39], + [-24, 52], + [-49, 28], + [-4, 55], + [-98, 114], + [-15, 32], + [3, 85], + [55, 41], + [3, 34], + [76, 93], + [20, 93], + [35, 25], + [-5, 45], + [-79, 41], + [-88, 68], + [38, 80], + [-54, 118], + [-40, 45], + [-40, -22], + [-19, -59], + [-52, 2], + [-17, 28], + [-4, 78], + [-33, 58], + [-59, -9], + [-45, 13], + [-19, 59], + [-52, 49], + [37, 85], + [18, 157], + [-40, 12], + [24, 53], + [-87, 93], + [-8, 38], + [-51, -4], + [-74, -27], + [-56, 3], + [-42, -42], + [-71, -32], + [-83, 5], + [-82, 53], + [-55, 3], + [-71, -61], + [-59, 45], + [-13, 52], + [-36, -1], + [-55, 95], + [-57, 30], + [-45, 53], + [-28, 97], + [151, 14], + [-25, 39], + [9, 39], + [-44, 20], + [-38, 58], + [42, 84], + [90, -12], + [46, 54], + [-79, 34], + [-125, -25], + [-33, 160], + [4, 41], + [-72, 40], + [-77, 64], + [7, 85], + [-52, 26], + [94, 23], + [32, 48], + [-114, 51], + [-69, 178], + [-39, 13], + [11, 18], + [11, 83], + [-36, 41], + [-45, 12], + [-42, 53], + [60, 63], + [-80, 43], + [-24, 29] + ], + [ + [10175, 19208], + [130, 16], + [60, -11], + [72, 27], + [59, -38], + [91, 4], + [67, -35], + [53, -56], + [46, 31], + [11, 68], + [34, 47], + [43, 17] + ], + [ + [10841, 19278], + [23, -57], + [50, -58], + [71, -6], + [93, -35], + [40, -48], + [46, -8], + [29, -59], + [41, -39], + [8, -42] + ], + [ + [4750, 27914], + [-21, -33], + [9, -88], + [38, -70], + [-38, -36], + [30, -60], + [-52, -51], + [9, -28], + [-30, -77], + [-3, -111], + [-17, -28], + [-78, -7], + [-23, 32], + [-71, 35], + [-57, -63], + [26, -33], + [23, -186], + [-27, -104], + [-3, -5], + [-50, -12], + [1, -119], + [16, -42], + [-26, -72], + [-47, -40], + [-62, -28], + [21, -69], + [-41, -12], + [74, -109], + [0, -70], + [41, -9], + [26, -57], + [-10, -149], + [48, -33], + [-2, -39], + [-72, 0], + [13, -44], + [39, -39], + [14, -104], + [-11, -34], + [-61, -11], + [50, -117], + [0, -69] + ], + [ + [4426, 25723], + [99, -263], + [-78, -20], + [1, -56], + [74, -232], + [24, -29], + [-95, -140], + [47, -224], + [-4, -102], + [14, -95], + [-85, -149], + [26, -170], + [-87, -143], + [12, -48], + [22, -194], + [26, -165], + [87, -98], + [142, -68], + [6, -67], + [34, -61], + [-54, -32], + [-9, -101], + [-36, -51], + [29, -32], + [-22, -35], + [-41, -118], + [-41, -79], + [24, -25], + [-120, -73], + [33, -33], + [78, 4], + [100, -13], + [17, -28], + [-14, -103], + [30, -23], + [31, -67], + [-22, -118], + [-62, -72], + [-77, -11], + [34, -52], + [-8, -26], + [-55, -34], + [-90, -102], + [66, -145], + [30, -5], + [35, -53], + [-45, -61], + [29, -70], + [71, -56], + [7, -30], + [-89, -120], + [-138, -15], + [-24, -27], + [-87, -14], + [-49, -43], + [-25, 22], + [-65, -18], + [-55, 16] + ], + [ + [4077, 21556], + [7, 27], + [-61, 48], + [23, 44], + [-49, 75], + [-24, 59], + [-33, 4], + [-97, -29], + [-14, 68], + [-26, 13], + [-8, 63], + [-58, 83], + [-63, 55], + [-1, 29], + [-126, 8], + [-29, -12], + [-3, -101], + [-75, -41], + [24, -32], + [-14, -97], + [64, -59], + [2, -60], + [-120, 6], + [-41, 17], + [-29, -46], + [-78, -4], + [-42, 51], + [-51, 19], + [-51, -34], + [-25, 25], + [-106, -16], + [-37, 79], + [-165, -20], + [-26, 59], + [-78, 1], + [-84, 37], + [9, 42], + [-94, 41], + [-80, -36], + [-37, 20], + [-36, 135], + [-27, 37], + [-1, 60], + [19, 21], + [-30, 139], + [-16, 32], + [21, 62], + [-80, -11], + [-123, -39], + [-46, 32], + [-51, -14], + [-54, 53], + [-84, 32], + [-57, 1], + [-146, -82], + [-63, 44], + [-65, 3], + [-42, 58], + [16, 33], + [-42, 34], + [0, 62], + [-70, 34], + [-40, -17], + [-66, 109], + [-39, 7], + [-37, 59] + ], + [ + [1222, 22826], + [-36, 64], + [-37, 116], + [-21, 102], + [-23, 42], + [-8, 79], + [-19, 52], + [-5, 81], + [-21, 73], + [5, 63], + [-17, 55], + [9, 77], + [-13, 24], + [21, 136], + [4, 160], + [45, 58], + [-60, 192], + [67, 20], + [47, 61], + [65, -5], + [13, 59], + [-7, 122], + [32, 68], + [74, 26], + [21, -32], + [200, -97], + [63, -48], + [58, -15], + [-8, -55], + [59, -28], + [26, -92], + [70, 96], + [65, 35], + [50, -71], + [66, -16], + [-22, 119], + [36, 85], + [23, 19], + [90, -4], + [-12, 55], + [-36, 44], + [22, 37], + [-19, 57], + [24, 15], + [146, -2], + [35, -53], + [59, 4], + [27, 25], + [-41, 114], + [88, 2], + [40, 18], + [-7, 146], + [-16, 42], + [-2, 150], + [-61, 52], + [-53, 9], + [-8, 73], + [-59, 66], + [8, 70], + [62, 48], + [-13, 55], + [-66, 53], + [-34, 134], + [30, 92], + [-21, 100], + [49, 78], + [5, 45], + [35, 60], + [-6, 27], + [44, 35], + [-33, 92], + [11, 43], + [-44, 21], + [12, 84], + [78, 1], + [58, 28], + [62, -25], + [17, -40], + [66, -37], + [118, -3], + [84, 69], + [44, 101], + [38, 51], + [60, 38], + [-40, 17], + [27, 83], + [3, 84], + [-36, 77], + [6, 116], + [-29, 53], + [67, 23], + [38, 50], + [-27, 62], + [13, 65], + [2, 98], + [55, 73], + [-12, 32], + [36, 82], + [-27, 92], + [45, 72], + [-65, 66], + [0, 36], + [-40, 54], + [28, 102], + [-28, 21], + [-13, 113], + [8, 110], + [-62, 8], + [-76, 106], + [7, 151], + [-18, 38], + [38, 39], + [157, -45], + [33, -33], + [30, -83], + [47, -9], + [12, -71], + [77, -54], + [72, -8], + [56, 25], + [22, 32], + [85, -29], + [49, 35], + [26, 59], + [192, -9], + [49, -11], + [98, 8], + [39, -73], + [105, -82], + [99, 14], + [97, 35], + [72, 2], + [61, -39], + [113, -21], + [28, 10], + [66, -32], + [23, -47], + [109, -2], + [50, -91], + [58, -11] + ], + [ + [10829, 28559], + [-86, -24], + [-129, 26], + [-38, -8], + [-94, -107], + [-41, 20], + [-109, -21], + [-106, -87], + [-55, -58], + [46, -44], + [49, -19], + [95, 41], + [87, -19], + [30, -75], + [-20, -38], + [46, -83], + [-3, -54], + [73, -53], + [8, -61], + [-54, -15], + [-56, -130], + [-64, -53], + [-41, 0], + [-81, -62], + [-13, -46], + [12, -75], + [-47, -20], + [-61, -109] + ], + [ + [10177, 27385], + [-52, 35], + [-17, 58], + [-117, 52], + [-84, -23], + [-49, -54], + [-24, -56], + [-87, 27], + [-109, 9], + [-59, -49], + [-18, 43], + [12, 57], + [-50, 37], + [31, 29], + [5, 55], + [-66, 4], + [-72, -55], + [30, -13], + [-19, -47], + [-77, -11], + [-41, -32], + [-54, -116], + [-6, -66], + [-96, 43], + [-15, -62], + [7, -83], + [-105, -49], + [-27, -46], + [-19, -85], + [63, -66], + [48, -12], + [0, -40], + [-49, -61], + [70, -66], + [-17, -52], + [18, -111], + [50, -13], + [29, -58], + [4, -53], + [-46, -40], + [22, -37], + [-7, -76], + [-19, -29], + [15, -96], + [-30, -74], + [-4, -103], + [8, -247], + [-36, -31], + [-50, -2], + [-69, -26], + [15, -65], + [-14, -34], + [79, -69], + [18, -69], + [69, -72], + [54, -80], + [-46, -37], + [-38, -68], + [18, -76], + [-26, -43], + [16, -73], + [111, -121], + [-1, -44], + [-58, 3], + [-4, -41], + [11, -208], + [22, -24], + [-9, -101], + [54, -77], + [14, -52], + [-21, -85], + [27, -52], + [-60, -191], + [-20, -24], + [-129, -35], + [-62, 15], + [-39, 49], + [-58, 32], + [-108, 11], + [-79, 29], + [-130, -4], + [-62, 22], + [-77, -17], + [-230, 2], + [-48, -20], + [-106, -10], + [-70, -40], + [-44, -57], + [-121, -115], + [-57, -20], + [45, -56], + [-26, -48], + [-54, -22], + [-44, -45], + [-11, -119], + [-48, -74], + [-9, -64] + ], + [ + [7643, 23405], + [-28, 20], + [-26, 87], + [-52, 48], + [-132, 41], + [1, 80], + [-90, 50], + [-13, 53], + [-94, 86], + [4, 51], + [-104, 42], + [-93, -7], + [-50, -33], + [-111, -7], + [-59, -14], + [-48, 16], + [-109, 0], + [-49, 12], + [-115, 50], + [-44, -17], + [-123, -16], + [-93, -39], + [-62, 33], + [-153, 56], + [-175, -69], + [-115, -1], + [8, -91], + [-114, -11], + [-89, 64], + [-65, 11], + [-58, 29], + [28, 209], + [12, 45], + [-37, 44], + [23, 77], + [39, 16], + [-1, 50], + [-32, 37], + [8, 60], + [-20, 57], + [-85, -39], + [-51, 0], + [-46, 37], + [-108, 32], + [-62, 77], + [-62, 220], + [54, 29], + [-16, 77], + [24, 26], + [-24, 61], + [23, 16], + [26, 70], + [-13, 98], + [-51, 37], + [10, 24], + [-34, 91], + [-74, 83], + [-47, 109], + [-52, 55], + [-136, 19], + [8, 72], + [-30, 56], + [-121, -64], + [-119, 13] + ], + [ + [4750, 27914], + [33, 26], + [33, 135], + [45, 31], + [31, 100], + [89, 108], + [41, 92], + [-7, 88], + [21, 78], + [40, 15], + [23, 112], + [37, 20], + [51, 76], + [0, 102], + [66, 13], + [70, 88], + [-41, 30], + [83, 32], + [30, 57], + [-25, 30], + [-12, 62], + [67, 0], + [22, 23], + [60, 151], + [131, 46], + [75, 98], + [19, 80], + [-13, 45], + [156, 20], + [18, 57], + [32, 32], + [-21, 44], + [32, 108], + [41, 55], + [88, 57], + [41, 75], + [-17, 64], + [15, 42], + [51, 31], + [43, 71], + [6, 95], + [-7, 87], + [-90, 39], + [-235, 74], + [-72, 64], + [18, 34], + [3, 69], + [52, 102], + [65, 86], + [7, 75], + [63, 26], + [49, 110], + [145, 34], + [96, -3], + [56, 29], + [46, 57], + [0, 35], + [50, 41], + [82, 3], + [2, 50], + [80, 43], + [50, 119], + [124, 71], + [17, 38], + [104, 33], + [22, 34], + [2, 86], + [-36, 28], + [-36, 90], + [-14, 75], + [95, 78], + [94, 31], + [166, 149], + [17, 52], + [46, 43], + [-49, 35], + [-40, -7], + [-70, 24], + [14, 63], + [-16, 58], + [12, 62], + [46, 40], + [-69, 45], + [29, 35], + [-9, 42], + [6, 165], + [13, 52], + [-81, 39], + [17, 37], + [-52, 58], + [-16, 52], + [94, 90], + [-19, 43], + [71, 31], + [41, 53], + [-13, 57], + [83, 62], + [42, -1], + [84, 77], + [59, -14], + [-1, -37], + [107, -6], + [85, 43], + [53, -8], + [30, 25], + [146, 37], + [9, 35], + [61, 48], + [36, -2], + [62, 96], + [10, 36], + [86, 52], + [62, -35], + [94, -8], + [46, 64], + [11, 55], + [91, 61], + [86, -42], + [41, -2], + [51, 30], + [8, 51], + [36, 44], + [9, 57], + [36, 14], + [51, 69], + [77, -11], + [103, 10], + [140, 70], + [32, 6], + [21, 50], + [121, 126], + [53, 86], + [118, 55], + [34, 26], + [155, 49], + [77, 5], + [102, 55], + [101, -11], + [16, 25], + [75, 17], + [82, -16], + [20, 18], + [84, -20], + [96, 37], + [76, 7], + [123, -16], + [29, -25], + [80, 65], + [77, 31], + [48, 61], + [222, -13], + [15, 29], + [123, -38], + [33, 7], + [77, -24], + [58, -74], + [34, -16], + [27, -58], + [94, -45], + [-18, -50], + [-60, -25], + [9, -40], + [88, -40], + [142, -15], + [131, -47], + [139, -92] + ], + [ + [14687, 418], + [39, -34], + [34, -56], + [-80, -5], + [8, -31], + [-31, -35], + [-1, -63], + [-55, -21], + [-63, 0], + [-80, -35], + [-9, -72], + [-51, -66], + [-68, 25], + [35, 38], + [-29, 37], + [25, 89], + [48, 16], + [44, 55], + [19, 68], + [38, 34], + [69, -14], + [20, 45], + [88, 25] + ], + [ + [14512, 671], + [36, 15], + [25, -55], + [33, -14], + [8, -43], + [-88, -41], + [-62, 44], + [25, 27], + [23, 67] + ], + [ + [15262, 2056], + [29, 12], + [121, -67], + [-31, -49], + [18, -38], + [-54, -58], + [-72, -15], + [-31, 35], + [56, 55], + [-29, 19], + [-7, 106] + ], + [ + [13879, 2143], + [40, 4], + [5, -45], + [-33, -67], + [-78, -3], + [-36, 44], + [75, 81], + [27, -14] + ], + [ + [14492, 2255], + [44, -39], + [46, -12], + [25, -60], + [-1, -39], + [36, -73], + [49, -22], + [28, -39], + [2, -92], + [22, -55], + [-8, -80], + [17, -27], + [-41, -40], + [-86, 5], + [12, 33], + [-11, 62], + [48, 36], + [-27, 68], + [17, 49], + [-46, 39], + [-104, 116], + [-34, -11], + [-28, 65], + [-43, -12], + [-130, -89], + [-26, 44], + [52, 54], + [48, 22], + [119, 113], + [20, -16] + ], + [ + [15371, 2333], + [5, -77], + [-20, -21], + [-60, 12], + [-12, -47], + [-93, 50], + [47, 83], + [48, 9], + [19, 37], + [2, 72], + [29, 16], + [35, -134] + ], + [ + [14765, 3895], + [-1, -61], + [49, -57], + [11, -43], + [-59, -44], + [-48, -210], + [16, -44], + [-17, -31], + [-12, -156], + [-41, -12], + [-67, 21], + [-19, -52], + [-39, 3], + [-97, -47], + [-1, 38], + [74, 0], + [1, 57], + [28, 54], + [-32, 51], + [15, 59], + [63, 123], + [52, 12], + [-38, 49], + [11, 56], + [85, 96], + [12, 58], + [-34, 57], + [37, 27], + [51, -4] + ], + [ + [15336, 3876], + [37, -63], + [-3, -110], + [-27, -137], + [26, -50], + [-58, -55], + [0, -95], + [-60, 9], + [-29, 44], + [-60, -3], + [-17, 21], + [-67, -16], + [-37, 85], + [35, 27], + [-36, 39], + [-80, 24], + [-16, 55], + [32, 64], + [-41, 46], + [40, 56], + [0, 49], + [46, 4], + [116, -18], + [30, 28], + [61, -3], + [69, 31], + [39, -32] + ], + [ + [14070, 4006], + [-4, -53], + [32, -57], + [67, -14], + [14, -56], + [3, -86], + [58, -4], + [-11, -79], + [-51, -78], + [-21, 62], + [-75, 31], + [21, 40], + [-21, 58], + [43, 26], + [-40, 60], + [-1, 47], + [-53, 40], + [39, 63] + ], + [ + [15140, 4474], + [32, -49], + [69, -50], + [21, -63], + [56, -37], + [67, 5], + [169, -76], + [119, -23], + [-34, -52], + [-77, -1], + [-73, -18], + [-115, 8], + [-96, -74], + [-70, -9], + [-44, 33], + [8, 34], + [-28, 37], + [8, 72], + [29, 18], + [-10, 51], + [-52, 18], + [-23, 62], + [18, 30], + [-25, 72], + [51, 12] + ], + [ + [14291, 4874], + [88, -16], + [-30, -160], + [53, -44], + [-25, -19], + [-127, -24], + [-93, 116], + [38, 75], + [13, 54], + [41, 33], + [42, -15] + ], + [ + [14283, 5156], + [7, -41], + [42, -26], + [-25, -60], + [-85, -46], + [-52, -49], + [-128, -63], + [-66, 61], + [-59, 6], + [-19, 30], + [39, 86], + [44, 22], + [36, -11], + [67, -57], + [57, -14], + [20, 50], + [54, 36], + [68, 76] + ], + [ + [15258, 5319], + [45, -37], + [-20, -42], + [0, -55], + [-27, -32], + [37, -24], + [-59, -67], + [-60, 52], + [33, 106], + [-3, 53], + [54, 46] + ], + [ + [14670, 5414], + [42, -65], + [44, -44], + [-59, -40], + [-76, 1], + [-35, 51], + [18, 57], + [66, 40] + ], + [ + [14823, 5629], + [57, -21], + [34, 16], + [54, -14], + [71, -71], + [-40, -29], + [-4, -68], + [21, -34], + [87, -23], + [19, 35], + [-8, 78], + [39, 5], + [25, -47], + [36, -22], + [-36, -41], + [-6, -175], + [-16, -35], + [-58, -27], + [-15, -46], + [-66, -89], + [-46, -34], + [-42, -59], + [-74, -16], + [-63, 34], + [7, 87], + [53, 129], + [5, 35], + [-40, 52], + [23, 68], + [-32, 33], + [-34, 105], + [-6, 118], + [25, 68], + [30, -12] + ], + [ + [14672, 6715], + [24, -50], + [52, -154], + [110, -73], + [-70, -50], + [-46, -10], + [20, -62], + [-28, -11], + [-72, 133], + [-12, 94], + [-28, 45], + [23, 53], + [-23, 82], + [50, 3] + ], + [ + [14556, 10240], + [61, -29], + [43, -101], + [-49, -55], + [63, -52], + [-5, -100], + [85, -79], + [38, -82], + [51, -52], + [83, -34], + [45, -73], + [134, -79], + [58, -81], + [5, -83], + [78, 8], + [10, -53], + [50, -68], + [15, -42], + [57, -41], + [19, -62], + [57, -67], + [58, -99], + [59, -4], + [25, -26], + [109, -61], + [72, 7], + [40, -40], + [33, -59], + [85, -56], + [85, -42], + [40, 2], + [26, -34], + [64, -29], + [25, -46], + [50, -35], + [47, 7], + [114, -42], + [6, -79], + [64, -53], + [28, -47], + [32, -108], + [58, -10], + [39, -27], + [43, -63], + [73, -6], + [6, -52], + [-27, -58], + [36, -14], + [17, -58], + [-3, -58], + [42, -22], + [71, -66], + [-6, -94], + [16, -105], + [-15, -31], + [31, -59], + [-32, -20], + [66, -65], + [-19, -66], + [54, -78], + [-25, -39], + [28, -78], + [-23, -78], + [18, -60], + [-40, -45], + [-6, -55], + [41, -42], + [-21, -22], + [27, -50], + [5, -66], + [-37, -25], + [-86, 39], + [-65, -12], + [-32, -53], + [40, -25], + [6, -70], + [-42, -64], + [-48, -46], + [51, -58], + [112, -52], + [69, -118], + [-81, -62], + [47, -27], + [8, -106], + [64, -70], + [47, -26], + [8, -146], + [29, -40], + [44, 12], + [63, -20], + [10, -74], + [37, -23], + [54, 2], + [83, -85], + [31, -19], + [82, 5], + [51, -107], + [-24, -48], + [-12, -74], + [-42, -84], + [106, -114], + [-30, -84], + [76, -158], + [44, -12], + [-4, -52], + [-25, -24], + [67, -95], + [-45, -58], + [6, -61], + [131, 53], + [64, -34], + [-19, -95], + [-48, -53], + [14, -73], + [-13, -29], + [103, -24], + [33, -31], + [-1, -77], + [-32, -17], + [18, -50], + [-18, -26], + [8, -68], + [38, 12], + [68, -53], + [1, -57], + [59, -18], + [-23, -66], + [-8, -91], + [-99, -61], + [-37, -51], + [9, -34], + [-63, -72], + [-67, -9], + [-40, 33], + [-99, -23], + [-41, -85], + [41, -88], + [-68, -88], + [-119, -59], + [12, -149], + [-93, -41], + [-68, -69], + [-57, -35], + [-8, -30], + [38, -34], + [-61, -69], + [-72, -50], + [-38, -116], + [-68, -51], + [10, -53], + [-73, -51], + [-53, -17], + [6, -40], + [-30, -36], + [-89, -25], + [-68, -39], + [-8, -60], + [-39, -54], + [-149, 28], + [-43, -65], + [-6, -86], + [28, -68], + [-116, -81], + [-106, -8], + [-85, -58], + [-17, 6], + [-89, -71], + [-120, -140], + [-24, -8], + [10, -59], + [-27, -65], + [63, -21], + [23, -46], + [-13, -37], + [29, -39], + [6, -85], + [-44, -39], + [19, -28], + [-21, -41], + [-36, -6], + [-40, -80], + [-38, -28], + [-93, -243], + [-49, -114], + [-108, -63], + [-25, -83], + [-45, -35], + [-31, -96], + [-45, -56], + [-59, -98], + [-42, -37], + [-43, 65], + [-29, 94], + [19, 43], + [-30, 88], + [6, 91], + [-62, 35], + [-20, 33], + [85, 80], + [7, 124], + [43, 106], + [-37, 63], + [-42, 39], + [2, 46], + [-32, 41], + [-16, 117], + [32, 32], + [-45, 62], + [-22, 65], + [24, 48], + [-63, 15], + [7, 49], + [-19, 84], + [32, 9], + [28, 84], + [146, -10], + [10, 40], + [64, 1], + [39, 48], + [40, 100], + [52, 2], + [41, 43], + [-20, 43], + [-53, 1], + [-27, -25], + [-45, 40], + [94, 39], + [30, 48], + [94, -10], + [112, 54], + [6, 96], + [-86, 24], + [25, 64], + [46, 61], + [-28, 57], + [-60, 15], + [-37, 51], + [102, 26], + [94, 97], + [4, 85], + [22, 22], + [11, 69], + [-75, 85], + [-19, 142], + [-51, 42], + [61, 97], + [121, -19], + [-43, 89], + [7, 67], + [-62, -4], + [-26, 24], + [-2, 66], + [28, 11], + [23, 133], + [0, 63], + [132, 16], + [108, 0], + [27, 46], + [56, -6], + [51, -66], + [15, 67], + [-55, 9], + [-66, 30], + [-92, 23], + [-53, -6], + [-20, 50], + [65, 58], + [26, 63], + [-102, -54], + [-57, -54], + [-40, -14], + [-85, -64], + [25, -30], + [-57, -64], + [-63, 18], + [-139, 68], + [17, 30], + [-52, 48], + [65, 59], + [-9, 48], + [40, 66], + [48, 38], + [-91, 23], + [-146, -10], + [-28, 29], + [39, 45], + [89, -9], + [183, 36], + [-3, 34], + [50, 8], + [10, 41], + [48, 11], + [-26, 56], + [80, 16], + [-118, 44], + [59, 65], + [-25, 10], + [-69, -40], + [-81, 52], + [-46, 68], + [1, 65], + [41, 27], + [83, 20], + [12, 43], + [72, 44], + [7, 30], + [-45, 46], + [-87, 2], + [-60, -29], + [-29, -58], + [-42, -11], + [-65, 23], + [-38, -11], + [-39, 35], + [-33, 88], + [43, 26], + [46, 52], + [76, -5], + [102, 15], + [2, 27], + [-199, 21], + [-44, 35], + [25, 91], + [27, 47], + [59, -27], + [45, 1], + [29, -28], + [55, -7], + [135, -78], + [34, 24], + [-197, 66], + [-7, 28], + [-67, 49], + [18, 102], + [112, 45], + [115, 14], + [-47, 33], + [-109, 17], + [-35, 50], + [54, 62], + [29, 83], + [-5, 46], + [73, 90], + [-13, 41], + [-63, 13], + [-15, 24], + [85, 23], + [46, 81], + [-82, -27], + [-57, 89], + [-6, 68], + [-28, 83], + [-82, 62], + [15, 45], + [7, 104], + [-40, 45], + [31, 31], + [-24, 44], + [10, 41], + [-48, 88], + [28, 76], + [-45, 70], + [-47, -2], + [-32, 60], + [-83, 28], + [-20, 28], + [23, 65], + [-66, 14], + [-15, 83], + [4, 82], + [-40, 5], + [-20, 65], + [-62, 50], + [-8, 37], + [33, 22], + [-76, 110], + [-64, 66], + [18, 50], + [-79, 87], + [-82, 44], + [-64, 50], + [-8, 65], + [-79, -3], + [-32, 62], + [24, 47], + [11, 89], + [-18, 157], + [10, 46], + [-26, 35], + [-8, 91], + [-58, 62], + [-9, -78], + [35, -99], + [-2, -55], + [-81, -132], + [-25, -112], + [41, -159], + [-4, -59], + [-61, -72], + [-13, -73], + [9, -54], + [-69, 19], + [-13, 50], + [36, 44], + [31, 77], + [-25, 56], + [-86, 39], + [-24, -3], + [-18, 78], + [-52, 50], + [22, 31], + [-17, 36], + [45, 38], + [-1, 80], + [28, 75], + [-61, 52], + [-20, 118], + [5, 43], + [-31, 52], + [40, 45], + [6, 60], + [59, 69], + [-54, 131], + [-50, 76], + [-145, 165], + [0, 37], + [-67, 93], + [4, 115], + [44, 68], + [-73, -15], + [-7, 99], + [-114, 145], + [-12, 83], + [-27, 57], + [-41, 43], + [57, 111], + [90, 19], + [40, -39], + [29, 33], + [-36, 30], + [-118, 1], + [-84, -64], + [-65, 17], + [-52, 123], + [9, 24], + [-65, 186] + ], + [ + [13555, 10038], + [110, 9], + [-29, 39], + [20, 47], + [78, 17], + [-10, 105], + [23, 86], + [1, 3], + [25, 96], + [156, -39], + [-4, 23], + [30, 21], + [109, 21], + [32, 20], + [53, -45], + [22, -84], + [72, -67], + [51, -31], + [51, 8], + [116, -21], + [31, -25], + [64, 19] + ], + [ + [12170, 15353], + [-21, -22], + [-92, -41], + [-72, -1], + [-33, -45], + [-70, -12], + [-20, 75], + [13, 34], + [-63, 15], + [-49, 40], + [-75, 11], + [-65, 83], + [-54, -10], + [-52, 35], + [-93, -31], + [-14, 25], + [-69, -44], + [5, -68], + [-22, -40], + [26, -102], + [-12, -115], + [34, -46], + [20, -69], + [-39, -77] + ], + [ + [11353, 14948], + [-22, -24], + [19, -52], + [131, -39], + [-36, -66], + [-62, -72], + [13, -45], + [63, -50], + [97, -44], + [-19, -32], + [-68, 1], + [-13, -43], + [2, -95], + [-29, -6], + [0, -75], + [-44, -60], + [-36, -85], + [-12, -68], + [-45, -30], + [-50, -2], + [4, -40], + [40, -83], + [-36, -25] + ], + [ + [11250, 13913], + [-118, 80], + [-23, 92], + [-55, 64], + [-44, -23], + [-38, 21], + [-11, 51], + [-65, 13], + [-77, 51], + [-49, -3], + [-101, -29], + [-80, 4], + [-112, 23], + [-67, -29], + [-28, -30], + [-172, 31], + [-1, 32], + [-63, 6], + [3, 40], + [42, 48], + [13, 60], + [-32, 87], + [-59, 65], + [-79, 39], + [-35, 31], + [-17, 17], + [-41, 63], + [52, 21], + [-32, 114], + [19, 45], + [-44, 137], + [-21, 35], + [-14, 93], + [-43, 45], + [-137, 34], + [3, 67], + [-39, 26], + [-95, 160], + [-99, 102], + [-65, 83], + [37, 24], + [5, 46], + [-45, 89], + [-108, -4], + [-141, -195], + [-70, -39], + [-17, -56], + [-83, -12], + [-24, -52], + [-10, -66], + [-107, -5], + [-79, -54], + [-35, -63], + [-53, -21], + [16, -60], + [-49, -13], + [-68, 25] + ], + [ + [8595, 15223], + [-1, 1], + [-8, 8] + ], + [ + [8586, 15232], + [-39, 75], + [-36, 9], + [-59, 52], + [2, 72], + [-45, 40], + [-75, 33], + [-28, 7], + [-83, -33], + [-35, 28], + [-26, 21], + [-46, 19], + [-83, 10], + [-95, 70], + [-78, 73], + [0, 38], + [60, 47], + [70, 35], + [12, 34], + [-39, 65], + [30, 82], + [-14, 39], + [-57, 41], + [16, 37], + [-10, 70], + [14, 48], + [-10, 63], + [-73, 111], + [-84, 171], + [57, 103], + [-94, 36], + [-82, 47], + [-30, 62], + [-106, 60], + [-46, 10], + [-33, 39], + [10, 65], + [-107, 49], + [-58, 37], + [-13, 29], + [7, 84], + [-40, 35], + [-46, -1], + [-94, 41], + [-41, -52], + [30, -88], + [-37, -24], + [-3, -49], + [-43, -50], + [-93, -19], + [-78, 26], + [-41, 61], + [-50, 5], + [-71, 74], + [-32, -53], + [-147, -34], + [-101, -99] + ], + [ + [6393, 16983], + [-61, 23], + [-98, 172], + [-57, 22], + [28, 54], + [48, 138], + [-92, 25], + [-90, 98], + [36, 59], + [100, 3], + [-16, 27], + [-18, 98], + [-70, 74], + [-43, 92], + [92, 44], + [67, 9], + [24, 67], + [-42, 75], + [-54, 7], + [-48, 35], + [-11, 77] + ], + [ + [6088, 18182], + [25, 17], + [60, -17], + [27, 35], + [64, -16], + [103, 3], + [50, 20], + [46, -9], + [53, -35], + [52, -6], + [24, -37], + [126, 4], + [74, -32], + [72, -55], + [16, -58], + [82, -69], + [53, 64], + [53, -7], + [36, 25], + [46, -14], + [40, 37], + [-21, 91], + [76, 64], + [89, 3], + [21, 38], + [80, 31], + [69, 6], + [2, 47], + [-35, 52], + [5, 34], + [106, 62], + [97, -20], + [43, 25], + [50, 74], + [41, 28], + [23, 48], + [78, 13], + [47, -33], + [82, 37], + [80, -15], + [25, -26], + [56, 19], + [93, -38], + [37, -1], + [57, 32], + [42, -11], + [49, 37], + [94, 12], + [35, -17], + [12, -2], + [45, -22], + [39, 13], + [62, -40], + [44, 7], + [-9, 77], + [28, 43], + [50, 16], + [-25, 34], + [30, 29], + [-20, 49], + [24, 15], + [-10, 66], + [-66, 70], + [-32, 59], + [-1, 89], + [-46, 52] + ], + [ + [8736, 19179], + [86, -6], + [19, -21], + [79, -18], + [56, 2], + [34, 73], + [155, 4], + [150, -45], + [44, 18], + [125, -91], + [58, 0], + [20, 51], + [56, 20], + [20, 67], + [60, -8], + [181, 2], + [27, -20], + [80, 12], + [189, -11] + ], + [ + [7643, 23405], + [-5, -47], + [-48, -97], + [26, -55], + [-28, -44], + [-110, -4], + [4, -61], + [-90, -52], + [-24, -28], + [-105, -73], + [-33, -55], + [-79, 19], + [-252, -95], + [-34, -7], + [-64, -80], + [-138, -33], + [-191, -37], + [-43, -97], + [3, -60], + [-21, -37], + [-3, -61], + [20, -104], + [-17, -58], + [6, -93], + [30, -66], + [70, -15], + [14, -61], + [57, 4], + [91, -36], + [81, 19], + [113, -6], + [47, -64], + [-13, -107], + [10, -57], + [-65, -14], + [-12, -96], + [22, -42], + [-43, -17], + [-20, -37], + [21, -58], + [75, -24], + [28, -38], + [-32, -29], + [20, -52], + [62, 70], + [41, 28], + [-4, 32], + [109, 13], + [124, 55], + [84, -22], + [37, 15], + [120, 86], + [11, 31], + [62, 27], + [68, -27], + [19, -28], + [93, 40], + [39, -18], + [76, 42], + [37, 50], + [55, 25], + [135, -3], + [53, 34], + [18, -53], + [45, 2], + [67, -96], + [-33, -116], + [-35, -30], + [14, -78], + [89, -50], + [52, 15], + [70, -23], + [117, -87], + [-1, -37], + [45, -57], + [-23, -34], + [77, -119], + [5, -53], + [-65, -37], + [22, -68] + ], + [ + [8596, 20879], + [13, -65], + [4, -6], + [31, -2], + [83, -148], + [15, -71], + [88, -41], + [-3, -31], + [-80, -83], + [9, -50], + [-57, -12], + [34, -64], + [-56, -99], + [43, -18], + [19, -53], + [-21, -60], + [56, -69], + [-13, -32], + [40, -40], + [-11, -43], + [-66, -11], + [-7, -66], + [-31, -22], + [-5, -15], + [19, -81], + [-44, -79], + [-87, -62], + [-32, -40], + [39, -25], + [-14, -108], + [48, -50], + [-31, -29], + [39, -62], + [118, -63] + ], + [ + [6088, 18182], + [-70, 109], + [47, 44], + [-42, 31], + [-37, 65], + [-55, 24], + [-26, 39], + [-51, 23], + [-18, 41], + [-46, 13], + [-37, -23], + [-53, 6], + [-34, 65], + [-26, 4], + [-1, 2], + [-53, 91], + [-24, 76], + [19, 30], + [110, 22], + [-13, 98], + [-32, 17], + [-35, 86], + [-114, 85], + [-13, 3], + [-37, 83], + [-70, 30], + [-70, 57], + [-71, 83], + [19, 42], + [-3, 68], + [-31, 22], + [4, 79], + [-48, 82], + [-93, 240], + [78, 51], + [-39, 136], + [-67, 15], + [-22, 54], + [-55, 65], + [-25, 72], + [-53, 70], + [20, 28], + [-2, 59], + [-98, 41], + [-28, 115], + [-57, 34], + [-4, 86], + [-26, 83], + [-46, 17], + [-57, 84], + [-5, 75], + [-56, -13], + [-41, 66], + [-44, 17], + [-49, 80], + [-30, 99], + [-45, 53], + [-67, 11], + [-4, 54], + [-27, 16], + [-90, -26], + [-106, 8], + [23, 42], + [8, 7], + [-36, 70], + [16, 57], + [27, 11] + ], + [ + [10177, 27385], + [-85, -41], + [-44, -72], + [-70, -30], + [17, -43], + [-48, -14], + [2, -46], + [-49, -52], + [-68, -40], + [-53, -64], + [15, -57], + [-39, -16], + [-66, 44], + [-48, -16], + [2, -52], + [27, -9], + [39, -30], + [-38, -54], + [13, -88], + [-41, -107], + [-46, -31], + [3, -77], + [102, -68], + [20, -47], + [-25, -34], + [46, -44], + [59, -22], + [127, -20], + [60, 16], + [50, -15], + [133, 19], + [48, 21], + [55, -4], + [52, 23], + [29, -22], + [46, 37], + [71, 24], + [64, -53], + [65, -23], + [47, -37], + [61, -7], + [47, -33], + [113, 18], + [81, -50], + [-23, -56], + [-76, -81], + [-18, -85], + [-139, -67], + [-156, 30], + [-69, -50], + [-155, -40], + [-78, 30], + [-84, 2], + [-68, -48], + [-126, 15], + [-96, -11], + [-52, -20], + [-6, -5], + [-28, -5], + [-7, -11], + [-47, -43], + [83, -87], + [-11, -2], + [14, -107], + [95, -108], + [44, -25], + [-19, -88], + [100, -50], + [6, -73], + [-33, -27], + [11, -156], + [31, -18], + [122, 10], + [51, -15], + [31, -64], + [76, -66], + [67, -139], + [-5, -65], + [12, -88], + [25, -20], + [75, 8], + [54, -14], + [39, -52], + [179, -5], + [42, -43], + [145, 1], + [54, -17], + [29, -41], + [20, -125], + [30, -9], + [110, -127], + [30, -68], + [72, -73], + [-36, -29], + [74, -42], + [8, -54], + [43, -108], + [-11, -17], + [-98, 13], + [-73, 50], + [-33, -42], + [-44, -9], + [-53, -49], + [-69, -22], + [-44, 41], + [-88, -28], + [-72, -77], + [-54, -28], + [8, -28], + [-99, -57], + [-30, -42], + [-118, -12], + [-15, -8], + [-132, -37], + [-86, -11], + [-59, -20], + [-188, -9], + [-18, -37], + [39, -78], + [-131, -51], + [21, -54], + [1, -109], + [22, -27], + [44, -118], + [-8, -37], + [33, -72], + [2, -17], + [73, -61], + [12, -51], + [11, -13], + [-43, -46], + [-62, 15], + [-157, 0], + [-81, -34], + [-34, -33], + [28, -92], + [-45, -47], + [13, -112], + [52, -9], + [81, -73], + [63, 0], + [108, -48], + [71, 3], + [41, -31], + [93, 27], + [14, -50], + [85, -30], + [93, 37], + [38, -69], + [64, 12], + [57, -43], + [1, -69], + [-35, -22], + [11, -86], + [-95, -15], + [-31, 18], + [-80, -30], + [-36, -51], + [2, -45], + [-23, -49], + [-36, 0], + [30, -85], + [34, -24], + [42, -66], + [71, -14], + [17, -48], + [49, 39], + [14, -150], + [-32, -31], + [-57, 11], + [-50, -25], + [-59, -98], + [25, -162], + [45, -30], + [8, -78], + [45, -45], + [76, -142], + [-101, -57] + ], + [ + [10448, 20644], + [-47, 38], + [-89, 42], + [-208, 146], + [-133, 19], + [-25, 30], + [-85, -45], + [-118, -10], + [-107, -74], + [-87, 29], + [-143, 19], + [-162, -8], + [-13, 30], + [-109, -58], + [-36, -68], + [-99, -32], + [-88, 56], + [-113, 115], + [-58, -31], + [-73, 29], + [-59, 8] + ], + [ + [12885, 13273], + [125, -24], + [84, 6], + [17, -61], + [-77, -130], + [28, -58], + [-51, -72], + [-28, -81], + [19, -50], + [5, -68], + [-16, -58], + [-81, -10], + [-58, 48], + [-8, 78], + [-52, 34], + [-48, 62], + [45, 100], + [-43, 149], + [-53, 53], + [13, 41], + [50, 15], + [53, 39], + [76, -13] + ], + [ + [14542, 10746], + [-5, -51], + [33, -57], + [-59, -65], + [-14, -56], + [22, -82], + [45, -6], + [56, -66], + [-53, -46], + [-11, -77] + ], + [ + [13555, 10038], + [-9, 61], + [38, 58], + [14, 49], + [-74, 104], + [41, 36], + [-19, 57], + [12, 60], + [27, 26], + [-16, 63], + [9, 35], + [-30, 40], + [80, 70], + [-80, -2], + [-60, -21], + [-94, 148], + [24, 51], + [-48, 72], + [13, 44], + [35, 4], + [15, 68], + [37, -9], + [45, 39], + [-34, 98], + [-66, 58], + [51, 118], + [-68, 124], + [-6, 81], + [-37, 124], + [3, 38], + [-32, 57], + [47, 49], + [-18, 141], + [-43, 68], + [-51, 46], + [-158, 87], + [-7, 39], + [-37, 26], + [-6, 46], + [-53, 103], + [1, 43], + [113, 108], + [65, 159], + [7, 104], + [-8, 91], + [-59, 81], + [1, 31], + [42, 47], + [-44, 80], + [28, 41], + [-15, 69], + [14, 28], + [57, -4], + [35, 41], + [10, 48], + [50, 28], + [115, 3], + [70, -71], + [91, -24], + [110, 64] + ], + [ + [13118, 13577], + [-18, -179], + [36, -82], + [-121, 28], + [-62, -7], + [-38, 24], + [-74, -18], + [-133, 10], + [-112, -36], + [-70, -36], + [-36, 22], + [-19, 105], + [-45, 91], + [8, 83], + [-66, -15], + [-61, 27], + [-41, -4], + [-61, 49], + [15, 47], + [-46, 62], + [29, 96], + [-37, 100], + [-9, 93], + [-39, 12], + [-23, 83], + [-50, 22], + [21, 156], + [-8, 80], + [-72, 54], + [32, 71], + [-54, 0], + [-10, -62], + [-25, -30], + [13, -65], + [-43, -71], + [35, -66], + [5, -52], + [-31, -54], + [-64, -16], + [-97, 168], + [-37, 33], + [8, 39], + [76, 133], + [6, 44], + [-28, 75], + [-41, 36], + [-147, 53], + [-72, 56], + [-10, 66], + [20, 43], + [-52, 45], + [-52, -11], + [-50, 14], + [-15, 55] + ], + [ + [3504, 18063], + [26, -22], + [86, -25], + [83, -5], + [102, 28], + [16, -67], + [-15, -52], + [26, -47], + [-26, -34], + [23, -111], + [-55, -56], + [-23, -57], + [-56, -19], + [-95, 7], + [-163, 122], + [-124, 71], + [-48, 50], + [-112, 157], + [100, 25], + [73, -4], + [112, 42], + [51, 35], + [19, -38] + ], + [ + [3390, 19715], + [-137, -99], + [-24, 81], + [53, 9], + [32, 54], + [76, 38], + [23, -50], + [-23, -33] + ], + [ + [3704, 19764], + [-37, -95], + [-67, 25], + [-64, -7], + [-13, 43], + [67, 8], + [79, 102], + [35, -76] + ], + [ + [3855, 19976], + [48, -33], + [-19, -50], + [-14, -100], + [-17, -11], + [-129, -11], + [-9, 42], + [80, 27], + [13, 78], + [-27, 38], + [74, 20] + ], + [ + [3704, 20004], + [43, -10], + [-77, -56], + [-55, -25], + [26, -50], + [-100, -53], + [-39, -48], + [-28, -91], + [-41, 9], + [-11, 50], + [16, 42], + [-23, 45], + [98, 79], + [25, 89], + [67, -17], + [48, 40], + [51, -4] + ], + [ + [3446, 19955], + [-32, -18], + [-115, 15], + [25, 44], + [95, 9], + [55, 56], + [114, 8], + [-26, -41], + [-66, -27], + [-50, -46] + ], + [ + [3074, 20118], + [64, -48], + [59, -4], + [82, 25], + [14, -60], + [-55, -40], + [-37, -130], + [51, -96], + [-49, -2], + [-89, 32], + [-53, 40], + [-27, 70], + [-2, 89], + [-46, 77], + [-42, 99], + [11, 22], + [78, -18], + [41, -56] + ], + [ + [2321, 20379], + [44, -73], + [9, -54], + [104, -180], + [25, -24], + [31, -86], + [62, -67], + [-54, -6], + [-51, 118], + [-69, 91], + [-50, 120], + [-33, 22], + [-7, 44], + [-52, 80], + [41, 15] + ], + [ + [1843, 20468], + [54, -60], + [41, -103], + [15, -70], + [78, -105], + [45, -125], + [-27, -62], + [-33, 85], + [12, 26], + [-54, 51], + [-91, 126], + [-96, 145], + [19, 76], + [37, 16] + ], + [ + [1982, 20504], + [59, 12], + [106, -7], + [32, -24], + [58, -98], + [50, -40], + [43, -90], + [-47, -29], + [-35, -47], + [1, -49], + [33, -86], + [44, -62], + [-74, 13], + [-64, 100], + [-75, 76], + [-15, 105], + [-34, 39], + [-127, 89], + [20, 44], + [-34, 73], + [59, -19] + ], + [ + [2426, 20637], + [42, -46], + [51, 2], + [13, -70], + [25, -35], + [-91, -43], + [-35, -71], + [-127, 52], + [-43, 85], + [-2, 31], + [-59, 65], + [21, 27], + [205, 3] + ], + [ + [2691, 20669], + [36, -4], + [-5, -94], + [23, -83], + [93, -101], + [-14, -18], + [-189, -50], + [-137, -2], + [-19, 20], + [-9, 94], + [16, 21], + [84, 38], + [-39, 54], + [-7, 53], + [-62, 6], + [-39, 46], + [69, 48], + [13, 42], + [85, 16], + [39, 21], + [51, -26], + [11, -81] + ], + [ + [2776, 20915], + [3, -38], + [31, -60], + [23, -5], + [27, 1], + [107, -190], + [26, -116], + [-37, -22], + [-62, -70], + [23, -102], + [-43, -13], + [-23, 94], + [-95, 97], + [-18, 68], + [3, 74], + [-22, 59], + [-44, 75], + [-38, 110], + [63, 41], + [76, -3] + ], + [ + [1608, 21141], + [-7, -28], + [4, -20], + [5, -7], + [-23, -66], + [83, -102], + [-14, -45], + [-70, -38], + [-91, -18], + [-42, 14], + [-25, 78], + [9, 130], + [-24, 106], + [34, -5], + [21, 52], + [46, 22], + [59, -62], + [35, -11] + ], + [ + [2262, 21102], + [-84, -19], + [14, -75], + [-54, -35], + [-67, 0], + [7, 124], + [70, 124], + [47, 58], + [30, -5], + [10, -88], + [27, -84] + ], + [ + [6393, 16983], + [43, -37], + [27, -54], + [43, 0], + [33, -38], + [-26, -50], + [30, -27], + [-36, -57], + [75, -62], + [-21, -47], + [-99, -62], + [38, -50], + [2, -46], + [30, -27], + [-25, -54], + [-75, -48], + [-54, -70], + [41, -89], + [46, -67], + [15, -3], + [53, -32], + [-22, -59], + [35, -39], + [-8, -53], + [-32, -21], + [20, -88], + [-18, -96], + [-66, -22], + [-27, -53], + [-74, -10], + [-35, -46], + [17, -47], + [-24, -54], + [12, -40], + [-38, -35], + [38, -28], + [3, -40], + [33, -36], + [5, -70], + [-44, -27], + [4, -40], + [-64, -55], + [-17, -77], + [-34, 1], + [-32, -81], + [-52, -2], + [-26, 62], + [-59, 4], + [-21, 54], + [-39, 23], + [-62, -9], + [-27, 46], + [-69, 31], + [-54, 62] + ], + [ + [5756, 15218], + [7, 43], + [-23, 65], + [-39, 50], + [48, 86], + [65, -80], + [23, 32], + [-57, 42], + [32, 51], + [-21, 44], + [-44, 9], + [-13, 52], + [-31, 12], + [-20, 51], + [27, 56], + [-22, 36], + [-129, 70], + [30, 76], + [-29, 50], + [20, 22], + [-24, 59], + [8, 30], + [-100, 146], + [-21, 42], + [71, 3], + [55, 52], + [-17, 110], + [-88, 123], + [8, 36], + [-61, 82], + [21, 34], + [-32, 49], + [-221, 14], + [-5, 99], + [48, -11], + [97, 16], + [27, 45], + [8, 60], + [-115, 30], + [-24, 60], + [-61, 92], + [-152, 155], + [33, 56], + [-52, 180], + [-51, 56], + [-179, 119], + [108, 15], + [0, 69], + [-118, 95], + [26, 56], + [-26, 40], + [-91, 11], + [-29, -40], + [-44, 24], + [-24, -34], + [-89, 3], + [19, 57], + [-13, 43], + [39, 93], + [-9, 82], + [-23, 22], + [86, 89], + [-9, 52], + [-82, 20], + [17, 87], + [-13, 31], + [14, 86], + [42, 112], + [-34, 62], + [-2, 81], + [51, 82], + [-59, -12], + [-23, -115], + [21, -140], + [-9, -29], + [-66, -48], + [16, -36], + [-78, -40], + [-53, -69], + [-3, -109], + [15, -63], + [66, -101], + [-40, -74], + [-36, -24], + [7, -41], + [-49, -29], + [18, -31], + [-46, -29], + [-27, 46], + [-45, 29], + [-68, 11], + [-87, 65], + [-166, 87], + [-88, -8], + [-19, 46], + [-48, 27], + [-42, -5], + [-50, 45], + [-20, 106], + [-35, 112], + [-34, 25], + [-61, 4], + [-23, 46], + [-177, 237], + [-108, 129], + [8, 81], + [31, 37], + [64, 34], + [77, 9], + [92, -52], + [39, 6], + [28, -59], + [58, -46], + [-5, -63], + [78, -31], + [68, -11], + [74, -31], + [4, -44], + [86, -62], + [52, -21], + [79, -8], + [87, 49], + [112, 37], + [94, 74], + [-43, 14], + [-77, -41], + [-54, 28], + [-64, -20], + [-106, 28], + [-64, -16], + [-67, 49], + [-39, 107], + [-46, 44], + [-50, 9], + [-83, 76], + [-39, 75], + [22, 63], + [45, 40], + [15, 46], + [44, 18], + [39, -27], + [98, -4], + [13, -49], + [56, -39], + [47, -10], + [43, -34], + [52, -10], + [52, 16], + [77, -30], + [74, -46], + [71, -7], + [75, -52], + [34, 32], + [2, 48], + [-35, 6], + [-50, -34], + [-93, 19], + [18, 45], + [-99, 40], + [-45, 39], + [-181, 96], + [-44, 47], + [-124, 59], + [13, 33], + [176, 105], + [-86, -21], + [-86, -8], + [-39, 32], + [3, 98], + [47, 26], + [114, 12], + [28, 34], + [-14, 55], + [33, 53], + [-34, 80], + [-102, 30], + [-58, 28], + [-16, 29], + [-73, 18], + [-44, -12], + [-76, 7], + [-112, -36], + [-58, -30], + [-42, 14], + [-14, 69], + [-45, -8], + [-38, 110], + [-67, 46], + [-74, -3], + [15, -103], + [-76, 46], + [-30, 45], + [-28, 91], + [-31, 32], + [-2, 62], + [66, -4], + [28, 65], + [-22, 115], + [-124, 215], + [-45, -5], + [-20, 32], + [20, 18], + [-34, 13], + [-2, 41], + [-82, 3], + [-124, -35], + [-34, -76], + [55, -49], + [-89, -15], + [-23, -48], + [-71, -44], + [-55, -16], + [-162, 5], + [-55, -55], + [-108, -57], + [-59, 9], + [11, 144], + [33, 88], + [52, 69], + [7, 75], + [85, 42], + [51, 65], + [-26, 56], + [64, 6], + [22, 24], + [-44, 167], + [-61, 35], + [-49, -104], + [-53, -62], + [-29, -63], + [8, -92], + [-20, -124], + [-88, -106], + [-86, -81], + [-49, -30], + [-67, -165], + [-111, 35], + [-40, 38], + [-139, 69], + [-31, 24], + [67, 121], + [114, 37], + [92, 68], + [-19, 81], + [-73, 85], + [50, 42], + [-25, 0], + [-16, 12], + [3, 23], + [6, 13], + [-13, 15], + [-22, 5], + [-60, 69], + [-25, 52], + [-96, -60], + [-41, 74], + [22, 71], + [-90, 123], + [-46, 19], + [-71, 107], + [-38, 5], + [88, -114], + [35, -29], + [-1, -42], + [92, -60], + [-18, -27], + [-8, -88], + [55, -122], + [9, -52], + [-37, -51], + [-4, -158], + [34, -47], + [-23, -27], + [-87, 82], + [-91, 154], + [-113, 161], + [-35, 18], + [-76, 76], + [-97, 67], + [-7, 59], + [-33, 54], + [-151, 110], + [-165, 84], + [29, 16], + [-50, 107], + [-32, 36], + [-23, 81], + [-71, 115], + [-38, 93], + [-69, 47], + [6, 46], + [-50, 207], + [-53, 34], + [-27, 48], + [-39, -2], + [-24, 40], + [5, 44], + [-66, 20], + [21, 41], + [45, 24], + [49, 63], + [-8, 86], + [-43, 61], + [0, 38], + [49, 36], + [77, 24], + [8, 62], + [34, 23], + [1, 57], + [144, -16], + [34, 92], + [90, 27], + [106, -93], + [17, -50], + [-12, -66], + [82, -14], + [39, -28], + [72, 7], + [5, 38], + [119, 12], + [98, -270], + [46, 4], + [31, 39], + [118, 35] + ], + [ + [11250, 13913], + [-35, -40], + [-37, -91], + [-46, 43], + [-42, -8], + [-97, -98], + [-27, -88], + [23, -30], + [-43, -60], + [-165, -164], + [-217, -92], + [-163, -48], + [-133, -13], + [-93, 16], + [-98, 81], + [-158, 73], + [-16, 48], + [-47, 57], + [6, 78], + [-58, 49], + [-30, 63], + [-1, 60], + [-21, 64], + [98, 36], + [51, 32], + [12, 32], + [67, 25], + [15, 88], + [-30, 3], + [-5, -84], + [-93, -56], + [-58, -10], + [-76, -43], + [-30, -35], + [-11, -63], + [46, -117], + [71, -40], + [10, -45], + [-27, -75], + [64, -147], + [59, -70], + [97, -52], + [0, -50], + [-40, -59], + [-47, -37], + [-91, -41], + [-107, -18], + [-178, -69], + [-75, 12], + [-93, 68], + [-108, 49], + [-35, 31], + [-59, 22], + [-141, -11], + [-103, 21], + [-33, 43], + [12, 30], + [-24, 23], + [-64, -1], + [-7, 57] + ], + [ + [8819, 13262], + [128, 91], + [-17, 54], + [-85, 3], + [-39, 90], + [30, 58], + [-27, 61], + [42, 78], + [72, 23], + [8, 61], + [-24, 137], + [-69, 92], + [27, 38], + [-23, 77], + [68, 104], + [-3, 45], + [-68, 36], + [-41, 40], + [36, 44], + [-32, 62], + [-93, 114], + [0, 39], + [-57, 22], + [-31, 39], + [-86, 5], + [-52, 56], + [37, 52], + [7, 82], + [-27, 67], + [-32, 33], + [-159, -1], + [20, 78], + [116, 15], + [38, 28], + [-1, 67], + [81, 39], + [31, 28], + [0, 4] + ], + [ + [8594, 15223], + [1, 0] + ], + [ + [13181, 27971], + [165, 4], + [56, 68], + [46, 6], + [53, 68], + [94, 28], + [177, 92], + [33, 38], + [112, 13], + [91, 28], + [34, 29], + [110, 47], + [87, 12], + [104, 29], + [189, 14], + [53, 29], + [132, -9], + [49, -18], + [116, -3], + [74, 29], + [162, 24], + [119, -5], + [132, 11], + [21, -35], + [139, -52], + [62, 35], + [101, -4], + [49, 15], + [43, 41], + [100, -6], + [147, 18], + [44, -14], + [110, 47], + [37, -80], + [-65, -51], + [-20, -44], + [-108, -40], + [-31, -41], + [-79, 3], + [-9, -54], + [-41, -37], + [-65, -22], + [-46, 29], + [-70, -43], + [47, -15], + [6, -37], + [-39, -63], + [42, -71], + [9, -53], + [-45, -82], + [204, -44], + [39, 6], + [50, -28], + [54, -86], + [-23, -59], + [44, -15], + [24, -79], + [38, -44], + [60, -19], + [-28, -58], + [-88, -25], + [-92, -74], + [38, -101], + [47, -22], + [89, 18], + [107, -137], + [-20, -48], + [23, -32], + [6, -96], + [50, -34], + [-43, -39], + [10, -47], + [-49, -43], + [-1, -30], + [-58, -85], + [93, -6], + [103, -33], + [87, -15], + [118, 4], + [-8, -84], + [140, -63], + [23, 25], + [123, 5], + [19, -24], + [61, 37], + [56, -46], + [88, -16], + [14, 38], + [61, 15], + [34, -13], + [49, 24], + [7, 42], + [48, 2], + [90, -72], + [70, -9], + [54, -23], + [176, -1], + [34, -17], + [21, -47], + [-36, -37], + [8, -78], + [72, -69], + [35, -54], + [-13, -50], + [-84, -12], + [-77, 20], + [-124, 60], + [-15, -58], + [47, -128], + [-41, -6], + [-114, -75], + [-18, -86], + [-138, -24], + [-23, -43], + [53, -41], + [21, -75], + [28, -18], + [29, -121], + [31, -57], + [-58, -69], + [-1, -41], + [46, -26], + [-21, -35], + [-101, -85], + [-43, -19], + [-26, -40], + [-101, -36], + [-13, -33], + [59, -42], + [-1, -29], + [-56, -32], + [-47, -67], + [0, -96], + [-72, -48], + [-65, -65], + [8, -93], + [70, -41], + [157, -51], + [35, 24], + [90, -34], + [92, 23], + [71, -17], + [96, 13], + [98, 61], + [125, -76], + [24, 23], + [90, -15], + [61, 25], + [41, -35], + [84, -1], + [43, -36], + [67, -9], + [-14, -55], + [75, 1], + [-5, 30], + [95, 21], + [56, -31], + [66, -6], + [131, -52], + [-3, 64], + [40, 20], + [140, -16], + [71, -31], + [-12, -39], + [72, -74], + [13, -30], + [-51, -120], + [-37, -11], + [5, -58], + [-39, -28], + [-5, -88], + [33, -48], + [61, -159], + [21, -27], + [148, -50], + [44, 28], + [110, 25], + [35, -6], + [98, -84], + [-46, -20], + [-51, -68], + [-51, -30], + [27, -60], + [-1, -101], + [21, -27], + [95, -44], + [24, 63], + [81, -25], + [47, -64], + [36, -11], + [105, 27], + [95, 49], + [50, 53], + [97, -17], + [99, 36], + [64, -109], + [66, -60], + [78, 32], + [55, -6], + [80, -36], + [184, 66], + [44, -9], + [75, 70], + [55, -3], + [71, 81], + [52, 35], + [41, 0], + [53, 100], + [70, 28], + [40, 60], + [60, 49], + [61, -13], + [74, 32], + [85, 2], + [131, 53], + [139, 98], + [52, -3], + [28, -127], + [-9, -36], + [88, -47], + [21, -48], + [16, -106], + [-49, -6], + [-20, -34], + [33, -29], + [28, -59], + [-92, -51], + [-93, -87], + [-61, -5], + [-45, -31], + [-105, -109], + [-56, 5], + [-63, -17], + [-76, -46], + [-85, -19], + [-25, -42], + [-66, -44], + [-89, -23], + [-71, 8], + [-113, 36], + [-24, -9], + [-56, -184], + [-5, -78], + [-33, -28], + [-48, -94], + [-55, -45], + [-12, -67], + [-57, -24], + [-47, -42], + [-108, -7], + [3, -81], + [-59, -45], + [-39, -147], + [38, -32], + [72, -5], + [25, 19], + [178, 37], + [20, -38], + [-119, -89], + [-75, -25], + [-49, 5], + [-124, -18], + [-177, 33], + [-81, -1], + [-59, -14], + [-44, -52], + [-43, -26], + [-101, -21], + [-86, -58], + [-63, -62], + [-88, -108], + [-48, -88], + [-10, -55], + [-61, -146], + [-23, -97], + [-26, -53], + [8, -74], + [-79, -63], + [-50, 17], + [-26, 37], + [-50, -1], + [-113, 67], + [-73, 67], + [-90, -36], + [-128, -10], + [-68, -84], + [-1, -55], + [-77, -76], + [-128, 8], + [-57, 23], + [-49, -52], + [-70, -16], + [-59, 23], + [-29, 31], + [-80, -25], + [-133, 53], + [-106, 15], + [-33, 34], + [-101, 20], + [-3, -59], + [86, -40], + [42, -57], + [33, -162], + [92, -60], + [-22, -52], + [-39, -40], + [-56, -9], + [-75, -88], + [-125, -37], + [-127, 0], + [-117, -51], + [-150, 77], + [-131, 56], + [-57, -10], + [-81, 8], + [-109, -62], + [-75, 4], + [-84, -129], + [27, -67], + [-56, -54], + [30, -54], + [-11, -38], + [-39, -17], + [30, -113], + [-11, -59], + [-39, -80], + [-201, -61], + [-37, -46], + [-33, 43], + [-136, 94], + [-117, -67], + [-35, -47], + [-97, -1], + [-67, 26], + [-34, -20], + [-87, -20], + [-85, -38], + [-43, -36], + [-51, 10], + [-46, -21], + [-41, -44], + [-90, 65], + [-188, -54], + [-77, 14], + [-38, 23], + [-43, -21], + [-132, 3], + [-69, -22], + [-103, -17], + [-37, 40], + [14, 28], + [-89, 45], + [-81, 75], + [-71, 33], + [-90, -29], + [-37, 67], + [-85, 14], + [-40, -17], + [8, -74], + [-27, -105], + [16, -80], + [35, -43], + [-55, -30], + [-120, -14], + [-4, -60], + [-85, -18], + [-105, -39], + [-75, 4] + ], + [ + [10841, 19278], + [17, 21], + [-46, 65], + [-17, 48], + [-126, -1], + [-92, 22], + [-29, 48], + [115, 91], + [112, 34], + [40, 33], + [-55, 70], + [-65, 15], + [-13, 34], + [-100, 83], + [-27, 87], + [-76, 51], + [-153, -20], + [-24, 60], + [26, 27], + [-32, 43], + [-118, 98], + [-71, 97], + [18, 23], + [119, -8], + [56, 25], + [-1, 38], + [59, 8], + [20, 28], + [-48, 55], + [-36, 77], + [47, 36], + [61, 17], + [46, 61] + ], + [ + [7418, 11973], + [-43, 42], + [104, 171], + [-4, 149], + [58, 50], + [17, 41], + [48, 20], + [52, -90], + [-6, -111], + [-16, -37], + [-53, -44], + [-92, -136], + [-65, -55] + ], + [ + [7259, 12497], + [42, -28], + [-56, -27], + [11, -102], + [-15, -9], + [-103, 27], + [-31, -8], + [-21, -32], + [4, -41], + [-37, -23], + [-18, 86], + [8, 39], + [49, 62], + [137, 67], + [30, -11] + ], + [ + [7602, 12512], + [-49, 66], + [30, 53], + [115, 62], + [-5, -89], + [-91, -92] + ], + [ + [5957, 12490], + [-35, -55], + [-63, -50], + [-63, -109], + [-63, -22], + [-88, -5], + [-82, -43], + [-23, -83], + [-38, 4], + [-36, -36], + [-40, -90], + [-55, 26], + [-26, 75], + [-29, 132], + [15, 43], + [149, 34], + [37, 24], + [99, 118], + [43, 75], + [53, 31], + [99, 117], + [74, 55], + [91, 38], + [0, -37], + [41, -54], + [-60, -188] + ], + [ + [7118, 12562], + [-30, -61], + [-94, -65], + [-47, -68], + [-4, -49], + [41, -93], + [-4, -60], + [-36, -188], + [-15, -22], + [-53, 19], + [-42, -12], + [-51, 16], + [-17, -23], + [10, -82], + [-8, -32], + [18, -31], + [-25, -29], + [-64, -23], + [-216, 28], + [-39, 21], + [-22, 46], + [30, 40], + [70, 12], + [-1, 24], + [-72, 7], + [-22, 32], + [34, 45], + [-6, 45], + [-69, 96], + [41, 57], + [84, 66], + [51, -2], + [57, 47], + [-2, 44], + [-42, 57], + [81, 24], + [52, 103], + [143, -6], + [7, 60], + [77, 43], + [17, 63], + [21, 11], + [16, 37], + [23, 13], + [10, 20], + [27, 9], + [31, 54], + [83, 12], + [-25, -76], + [37, -41], + [-74, -55], + [7, -42], + [36, -44], + [-24, -47] + ], + [ + [6014, 12948], + [-62, -104], + [-78, -86], + [-75, -29], + [-23, 35], + [79, 49], + [33, 59], + [-5, 57], + [131, 19] + ], + [ + [8955, 12666], + [-35, -13], + [-30, 39], + [75, 36], + [41, 152], + [-3, 61], + [56, 82], + [52, -68], + [-2, -98], + [-14, -60], + [-140, -131] + ], + [ + [9064, 12699], + [48, 74], + [15, 68], + [26, 45], + [-7, 85], + [65, 76], + [47, -10], + [140, -77], + [15, -60], + [-61, -48], + [-80, -84], + [-48, -29], + [-160, -40] + ], + [ + [6185, 13526], + [19, -4], + [25, 0], + [2, -21], + [32, -18], + [-12, -43], + [-44, -6], + [-22, -16], + [-33, -126], + [-87, -37], + [-34, 68], + [54, 49], + [8, 129], + [92, 25] + ], + [ + [8586, 15232], + [8, -9] + ], + [ + [8819, 13262], + [-26, -74], + [72, 9], + [33, -12], + [0, -54], + [42, -31], + [98, -31], + [22, -31], + [-60, -91], + [-2, -70], + [-44, -121], + [-42, -23], + [-69, -87], + [-155, -105], + [-69, -13], + [-76, -109], + [-24, -9], + [13, -66], + [-95, -140], + [-29, -19], + [-34, -61], + [-168, -134], + [-25, -27], + [-135, -103], + [6, -31], + [-126, -79], + [-143, -47], + [-185, -17], + [-89, 21], + [-18, 22], + [23, 49], + [-48, 101], + [23, 90], + [36, 23], + [46, 92], + [57, 36], + [30, 38], + [31, 115], + [-11, 124], + [-65, 89], + [47, 44], + [47, 80], + [14, 98], + [-121, -42], + [-35, -34], + [-22, -65], + [54, -107], + [-47, -16], + [-29, -49], + [-60, -55], + [-1, -86], + [-73, -101], + [-32, -116], + [-22, -44], + [28, -117], + [-66, -46], + [-58, -12], + [-114, 39], + [-29, 24], + [-11, 76], + [2, 109], + [18, 42], + [24, 128], + [-29, 85], + [17, 21], + [125, -22], + [27, 13], + [6, 32], + [-13, 81], + [41, 11], + [33, 44], + [-120, 20], + [-81, -4], + [27, 96], + [-41, 93], + [62, 39], + [-33, 66], + [22, 52], + [-74, 58], + [-23, -64], + [-40, -55], + [-23, -6], + [-2, -15], + [-29, -24], + [-12, -27], + [-26, -12], + [-17, -64], + [-86, -48], + [8, -51], + [-147, 8], + [-61, -107], + [-57, -8], + [-19, -33], + [47, -76], + [-59, -52], + [-25, 11], + [-9, 92], + [-23, 78], + [-23, 33], + [63, 143], + [174, 27], + [44, 26], + [84, 105], + [-152, -109], + [-79, -2], + [-101, -40], + [-79, -157], + [23, -51], + [-34, -64], + [-84, -126], + [23, -34], + [-113, -99], + [-97, -138], + [-95, -23], + [-87, 41], + [-92, 101], + [32, 44], + [102, 36], + [101, 88], + [63, 65], + [8, 75], + [-20, 22], + [-97, -137], + [7, -27], + [-123, -69], + [-111, -34], + [-30, -23], + [-60, 26], + [-3, 35], + [77, 40], + [60, 76], + [45, 34], + [60, 75], + [55, 101], + [-2, 54], + [20, 72], + [-42, 91], + [-12, 53], + [57, 80], + [14, 88], + [47, 53], + [-3, 123], + [-38, 103], + [77, 30], + [44, 101], + [1, 45], + [97, 13], + [-31, 12], + [7, 40], + [-36, 19], + [-2, 19], + [-40, 2], + [-20, 33], + [-39, 28], + [-11, -19], + [37, -12], + [7, -24], + [-71, -12], + [-27, -60], + [4, -73], + [-64, -55], + [22, -136], + [17, -50], + [-8, -105], + [-58, 23], + [-42, -14], + [-39, -78], + [-48, -66], + [12, -65], + [-98, -49], + [-77, 58], + [-58, 12], + [-55, -21], + [61, -32], + [19, -46], + [-29, -22], + [39, -38], + [-35, -78], + [-128, -122], + [-50, -72], + [-50, -35], + [-119, -21], + [-67, -68], + [-141, -39], + [-6, -24], + [-70, -67], + [-74, 107], + [-32, 26], + [-4, 189], + [5, 64], + [49, 58], + [-30, 54], + [25, 16], + [13, 79], + [33, 46], + [-31, 86], + [9, 50], + [32, 53], + [19, 95], + [30, 66], + [-8, 51], + [22, 52], + [-36, 75], + [68, 16], + [36, -38], + [76, 34], + [41, 59], + [-66, 66], + [76, 53], + [27, 72], + [-23, 45], + [11, 82], + [83, 80], + [25, 49], + [-36, 123], + [-30, 60], + [26, 60], + [46, -43], + [76, 59], + [-1, 62], + [36, 25], + [30, 80], + [-26, 28], + [-7, 62], + [26, 49], + [38, 23], + [33, 53], + [-49, 59], + [-50, 15], + [-14, 58], + [115, -4], + [55, -19], + [48, 33], + [-51, 50], + [-39, 10], + [11, 52], + [-19, 39], + [39, 76], + [49, 24], + [92, 2], + [-13, 32], + [20, 73], + [-3, 58], + [-29, 22], + [7, 135] + ], + [ + [6823, 11962], + [14, -1], + [40, 10], + [44, -30], + [-20, -56], + [-92, -61], + [-32, 12], + [8, 41], + [-5, 97], + [43, -12] + ], + [ + [6382, 11954], + [-25, -103], + [-116, 8], + [-47, 14], + [-25, 52], + [100, 78], + [4, 40], + [63, 94], + [33, 16], + [34, -94], + [35, -41], + [-56, -64] + ] + ], + "transform": { + "scale": [0.00041464988706034164, 0.0005008896272676118], + "translate": [92.1727, 9.8528] + }, + "objects": { + "myanmar": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2]], + "type": "Polygon", + "properties": { "ID": 1, "NAME": "Kachin State", "PCODE": "MMR001", "ISO": "MM-11" } + }, + { + "arcs": [[3, 4, 5]], + "type": "Polygon", + "properties": { "ID": 2, "NAME": "Kayah State", "PCODE": "MMR002", "ISO": "MM-12" } + }, + { + "arcs": [[-5, 6, 7, 8, 9, 10, 11, 12]], + "type": "Polygon", + "properties": { "ID": 3, "NAME": "Kayin State", "PCODE": "MMR003", "ISO": "MM-13" } + }, + { + "arcs": [[13, 14, 15, 16]], + "type": "Polygon", + "properties": { "ID": 4, "NAME": "Chin State", "PCODE": "MMR004", "ISO": "MM-14" } + }, + { + "arcs": [[-2, 17, 18, 19, -14, 20]], + "type": "Polygon", + "properties": { "ID": 5, "NAME": "Sagaing Region", "PCODE": "MMR005", "ISO": "MM-01" } + }, + { + "arcs": [ + [[21]], + [[22]], + [[23]], + [[24]], + [[25]], + [[26]], + [[27]], + [[28]], + [[29]], + [[30]], + [[31]], + [[32]], + [[33]], + [[34]], + [[35]], + [[36]], + [[37, 38]] + ], + "type": "MultiPolygon", + "properties": { "ID": 6, "NAME": "Tanintharyi Region", "PCODE": "MMR006", "ISO": "MM-05" } + }, + { + "arcs": [[-11, 39, 40, 41, 42, 43, 44, 45, 46]], + "type": "Polygon", + "properties": { "ID": 7, "NAME": "Bago Region", "PCODE": "MMR007", "ISO": "MM-02" } + }, + { + "arcs": [[47, 48, -46, 49, -15, -20]], + "type": "Polygon", + "properties": { "ID": 9, "NAME": "Magway Region", "PCODE": "MMR009", "ISO": "MM-03" } + }, + { + "arcs": [[50, 51, -48, -19]], + "type": "Polygon", + "properties": { "ID": 10, "NAME": "Mandalay Region", "PCODE": "MMR010", "ISO": "MM-04" } + }, + { + "arcs": [[[52]], [[-8, 53, -39, 54]], [[55, -40, -10]]], + "type": "MultiPolygon", + "properties": { "ID": 11, "NAME": "Mon State", "PCODE": "MMR011", "ISO": "MM-15" } + }, + { + "arcs": [ + [[56]], + [[57]], + [[58]], + [[59]], + [[60]], + [[61]], + [[62]], + [[63]], + [[64]], + [[65]], + [[66]], + [[67]], + [[68]], + [[69]], + [[70]], + [[-16, -50, -45, 71, 72]] + ], + "type": "MultiPolygon", + "properties": { "ID": 12, "NAME": "Rakhine State", "PCODE": "MMR012", "ISO": "MM-16" } + }, + { + "arcs": [[73, 74, 75, -42]], + "type": "Polygon", + "properties": { "ID": 13, "NAME": "Yangon Region", "PCODE": "MMR013", "ISO": "MM-06" } + }, + { + "arcs": [[76, -6, -13, 77, -51, -18, -1]], + "type": "Polygon", + "properties": { "ID": 14, "NAME": "Shan State", "PCODE": "MMR014", "ISO": "MM-17" } + }, + { + "arcs": [ + [[78]], + [[79]], + [[80]], + [[81]], + [[82]], + [[83]], + [[84]], + [[85]], + [[86]], + [[87, -75, 88, -72, -44]], + [[89]], + [[90]] + ], + "type": "MultiPolygon", + "properties": { "ID": 17, "NAME": "Ayeyarwady Region", "PCODE": "MMR017", "ISO": "MM-07" } + }, + { + "arcs": [[-78, -12, -47, -49, -52]], + "type": "Polygon", + "properties": { "ID": 18, "NAME": "Naypyitaw", "PCODE": "MMR018", "ISO": "MM-18" } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/netherlands-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/netherlands-topo.json new file mode 100644 index 000000000000..90ec02c08d8b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/netherlands-topo.json @@ -0,0 +1,1332 @@ +{ + "type": "Topology", + "arcs": [ + [ + [4837, 5060], + [-23, -61], + [-7, -234], + [-16, -170], + [-15, -28], + [-83, 34], + [-50, -17], + [-57, 31], + [-59, -7], + [-95, 8], + [-55, -22], + [-30, -45] + ], + [ + [4347, 4549], + [-4, 50], + [-122, 61], + [-81, -20], + [-49, -45], + [5, -68], + [-85, -12], + [-42, 20], + [-46, -23], + [-28, 73], + [-50, 39], + [-96, 26], + [-44, 35], + [-47, -23], + [-24, 11], + [-57, 173], + [47, 30], + [58, 75], + [-107, 145] + ], + [ + [3575, 5096], + [115, 91], + [65, 88], + [60, -5], + [40, -46], + [79, 64], + [43, 95], + [-85, 150], + [6, 80], + [-81, 34], + [14, 33] + ], + [ + [3831, 5680], + [37, -18], + [48, 147], + [34, 74], + [53, 45], + [47, 19], + [59, -23], + [47, -90], + [46, -32], + [46, -75], + [76, 19], + [57, -6], + [261, -306], + [89, -168], + [33, -29], + [-27, -96], + [29, -2], + [43, -64], + [28, -15] + ], + [ + [3231, 4347], + [2, -4] + ], + [ + [3233, 4343], + [-10, -120], + [-58, -122], + [-75, -73], + [-33, 6], + [-80, -45], + [-64, -76], + [-61, 2], + [-34, -48], + [21, -37], + [-31, -140], + [-153, -52], + [-34, 26], + [-113, 118], + [-122, 56], + [-63, -15], + [-31, 21], + [-6, 109], + [42, 40], + [126, 87], + [230, 184], + [0, 43], + [29, 59], + [57, 7], + [73, 87], + [108, 39], + [21, -26], + [140, -42], + [62, -3], + [57, -81] + ], + [ + [3153, 4980], + [31, -53], + [41, 0], + [94, -79], + [25, -80], + [32, -49], + [-33, -69], + [51, -25] + ], + [ + [3394, 4625], + [-21, -50], + [-172, -64], + [-219, 1], + [-61, 92], + [-31, 21], + [4, 258], + [83, 150], + [70, 24] + ], + [ + [3047, 5057], + [47, 4], + [59, -81] + ], + [ + [2205, 6197], + [-33, -56], + [-72, -44], + [17, -19], + [-112, -103], + [-86, 14], + [92, 71], + [51, 52], + [97, 70], + [46, 15] + ], + [ + [3666, 6451], + [-29, -52], + [11, -57], + [145, -63], + [-9, -93], + [-86, -169], + [21, -38], + [-39, -47], + [-30, -76], + [-1, -78], + [39, -47], + [74, -3], + [69, -48] + ], + [ + [3575, 5096], + [-78, -67], + [-81, -23], + [-32, 61], + [-53, -17], + [-10, -28], + [-62, -54], + [-52, 11], + [-21, 29], + [-33, -28] + ], + [ + [3047, 5057], + [-73, 15], + [-18, 39], + [-33, -24], + [-44, -2], + [-14, -32], + [-38, -9], + [-85, 46], + [-84, -5], + [-71, 61], + [11, 57], + [49, 28], + [-8, 70], + [15, 59], + [-17, 68], + [-2, 78], + [-45, 124], + [-87, -20], + [-169, -164] + ], + [ + [2334, 5446], + [-3, 5] + ], + [ + [2331, 5451], + [165, 164], + [61, 19], + [49, 41], + [40, 94], + [9, 92], + [40, 123], + [102, 89], + [69, 97], + [82, 57], + [100, 41], + [194, 111], + [18, 17], + [73, 0], + [98, 33], + [98, 14], + [69, -10], + [68, 18] + ], + [ + [2803, 6539], + [14, -41], + [-79, -32], + [-31, -35], + [-94, -4], + [-53, -47], + [-157, -40], + [-45, -48], + [-46, 32], + [56, 86], + [158, 44], + [134, 42], + [109, 42], + [34, 1] + ], + [ + [2989, 6597], + [35, -22], + [62, -8], + [199, 20], + [-17, -42], + [-108, -31], + [-109, 11], + [-24, -32], + [-61, -10], + [-37, 15], + [-16, 55], + [45, 43], + [31, 1] + ], + [ + [3878, 6689], + [-101, -49], + [-28, -26], + [-127, -14], + [-36, 34], + [40, 39], + [252, 16] + ], + [ + [4409, 3313], + [-12, -79], + [-22, -29], + [-54, -3], + [-4, -82], + [80, -22], + [75, -78], + [24, -8], + [3, -73], + [-38, -11], + [-4, -64], + [-82, -86], + [-40, 16], + [-25, 35], + [-45, -30], + [-135, -61], + [-95, -68], + [-30, 35], + [-78, 6], + [17, -86], + [-53, 8], + [-22, 37], + [-55, -9], + [-28, 62], + [-91, -22], + [-64, 86], + [-65, -31], + [62, -76], + [3, -33], + [-77, 4], + [-54, 44], + [-9, -32], + [-78, -56], + [-38, 8], + [-1, -55], + [28, -35], + [9, -74], + [-46, -55] + ], + [ + [3365, 2396], + [-53, 28], + [-30, 61], + [-36, -47] + ], + [ + [3246, 2438], + [-111, -15], + [-45, 18], + [-68, 72], + [-40, 13], + [-33, 61], + [-63, 24], + [-56, -30], + [-72, 33], + [-32, -48], + [-48, 0], + [-30, 28], + [-49, -81], + [-19, -83], + [-70, -43], + [-66, -9], + [-37, 24], + [-76, -3], + [-26, 31], + [-6, 43], + [-49, 35], + [-30, -20], + [-99, 102] + ], + [ + [2121, 2590], + [32, -7], + [24, 99], + [60, 72], + [29, -2], + [47, 111] + ], + [ + [2313, 2863], + [41, 83], + [32, -21], + [51, 46], + [33, -31], + [62, -26], + [40, 33], + [46, 2], + [62, 35], + [74, -2], + [66, -35], + [31, -33], + [57, -28], + [28, 35], + [-17, 80], + [-36, 51], + [4, 56], + [-42, 35], + [6, 72], + [-9, 53], + [-42, -55], + [-51, -19], + [-33, 26], + [36, 32], + [18, 129], + [-35, 41], + [-44, 18], + [0, 81], + [-61, 39], + [14, 63] + ], + [ + [2644, 3623], + [89, 35], + [73, 6], + [42, 125], + [54, 56], + [23, 48], + [126, 71], + [96, 85], + [66, 106], + [33, 129] + ], + [ + [3246, 4284], + [23, 0], + [55, -110], + [52, 6], + [46, 59], + [35, 21], + [38, -28], + [59, -77], + [0, -50], + [23, -31], + [-12, -59], + [26, -20], + [-12, -50], + [-53, -19], + [-13, -119], + [38, -53], + [62, -175], + [249, -3], + [16, 37], + [86, 0], + [17, -46], + [65, -99], + [99, -12], + [46, 12], + [35, -42], + [35, 23], + [36, -22], + [3, -59], + [-16, -26], + [70, -30], + [55, 1] + ], + [ + [3666, 6451], + [74, 9], + [75, -46], + [90, 56], + [243, 40], + [138, 58], + [89, 14], + [73, -27], + [19, 22], + [65, -31], + [27, -30], + [-15, -75], + [19, -29], + [14, -110], + [94, -77], + [70, -40], + [78, -11], + [-6, -82], + [41, -31], + [208, -54], + [17, -98], + [-57, -112], + [-18, -61], + [38, -46], + [-9, -78], + [7, -158], + [-55, -165], + [-99, -140], + [-44, -52], + [-5, -37] + ], + [ + [4027, 6798], + [39, -40], + [-44, -37], + [-20, 63], + [25, 14] + ], + [ + [2170, 5296], + [7, 7] + ], + [ + [2177, 5303], + [18, 8], + [139, 135] + ], + [ + [3394, 4625], + [40, -53], + [-31, -26], + [-3, -6], + [-58, -21], + [-29, -9], + [-37, 18], + [-63, -24], + [-12, -78], + [30, -79] + ], + [ + [3233, 4343], + [13, -59] + ], + [ + [2644, 3623], + [-52, 52], + [-74, 22] + ], + [ + [2518, 3697], + [-19, 46], + [-60, 36], + [-111, -13], + [-30, 46], + [-58, 34], + [-74, -13], + [-52, 38], + [-46, 35], + [84, 62], + [78, 111], + [-48, 11], + [17, 68], + [-4, 43], + [34, 44], + [-25, 46], + [-61, 178], + [0, 83], + [34, 28], + [47, 1], + [59, -55], + [43, 9], + [100, 84], + [13, 67], + [75, 48], + [-21, 24], + [-8, 66], + [-31, 28], + [-85, 4], + [-48, -33], + [-43, 32], + [-25, 46], + [13, 175], + [-96, 220] + ], + [ + [3365, 2396], + [94, -35], + [-2, -108], + [21, -25], + [88, -30], + [-18, -91], + [-19, -43], + [86, -87], + [29, -69], + [53, -77], + [14, -79], + [-21, -163], + [22, -106], + [-43, -57], + [-31, -11], + [-12, -55], + [-48, -70], + [-14, -40], + [-51, -61], + [0, -139], + [26, -34], + [60, 0], + [35, -50], + [-54, -6], + [-30, -22], + [-88, -111], + [-52, -34], + [-38, -115], + [-28, 7], + [-28, 45], + [-71, -30], + [47, -103], + [-11, -48], + [66, 27], + [106, -30], + [-39, -52], + [17, -62], + [88, -27], + [-10, -51], + [16, -53], + [-32, -67], + [-56, -15], + [15, -58], + [-41, -45], + [-32, 27], + [-15, -46], + [38, -33], + [8, -61], + [-51, 14], + [-71, -17], + [-31, 34], + [-33, -19], + [-55, -3], + [-52, 60], + [-53, -54], + [-53, -3], + [18, 60], + [-6, 47], + [-52, 40], + [-14, 37], + [3, 86], + [46, 23], + [21, 59], + [26, 7], + [43, 107], + [-40, 26], + [48, 69], + [15, 80], + [-14, 30], + [24, 67], + [25, -3], + [30, 159], + [44, 40], + [-48, 41], + [-51, -7], + [0, 52], + [-43, 21], + [-52, -21], + [-70, 12], + [-5, 33], + [-105, 52] + ], + [ + [2854, 1132], + [73, 23], + [7, 107], + [62, 102], + [259, 90], + [79, 78], + [-78, 160], + [-26, 131], + [-18, 150], + [126, -31], + [90, 41], + [38, -35], + [8, 67], + [-26, 94], + [-71, 75], + [-12, 137], + [-91, 38], + [-28, 79] + ], + [ + [2854, 1132], + [-13, 18], + [-12, 92], + [-50, 64], + [-30, 11], + [-89, -88], + [-82, 28], + [-31, -22], + [-90, 8], + [-47, 15], + [23, 78], + [-47, 44], + [-95, -19], + [-19, 108], + [-60, 85], + [28, 81], + [-20, 93], + [-77, 22], + [-21, -89], + [-80, -90], + [-25, -8], + [-53, 41], + [-67, -15], + [-66, 14], + [5, 41], + [63, -24], + [-7, 42], + [12, 98], + [-77, 58], + [-35, -15], + [-58, -101], + [-37, -28], + [0, -46], + [-41, -5], + [-73, 19], + [-70, -19], + [-9, 53], + [28, 65], + [-18, 31], + [-77, -9], + [-90, -54], + [-18, -25], + [-4, -76], + [42, -76], + [-3, -44], + [-33, -19], + [-66, 2], + [-11, 49], + [-77, -6] + ], + [ + [1177, 1514], + [-18, 93], + [17, 22], + [-21, 59] + ], + [ + [1155, 1688], + [27, 42], + [-36, 42], + [-35, 96] + ], + [ + [1111, 1868], + [12, 48], + [-8, 46], + [-40, 55], + [-10, 50], + [31, 53], + [30, 14] + ], + [ + [1126, 2134], + [28, -2], + [75, 32], + [45, 5], + [34, 27], + [21, 53], + [41, 38], + [86, -32], + [37, 1], + [107, 32], + [25, 24], + [94, 30], + [56, 72], + [29, 77], + [32, 33], + [51, 11] + ], + [ + [1887, 2535], + [49, 10], + [58, 52], + [30, 9], + [97, -16] + ], + [ + [2518, 3697], + [-54, 11], + [-36, -88], + [-28, -100], + [-30, -66], + [-90, 9], + [-101, -38], + [-16, 115], + [31, 55], + [-45, 85], + [25, 28], + [-40, 52], + [-19, -35], + [-90, -46], + [-22, -42], + [-39, 2], + [-70, -57], + [-44, -9] + ], + [ + [1850, 3573], + [-66, -29], + [-25, 43], + [-71, -3], + [-40, -31], + [-47, -9], + [-60, 10], + [15, 120], + [26, 28], + [30, 81], + [-37, 13], + [-26, -22], + [-92, 45] + ], + [ + [1457, 3819], + [86, 252], + [49, 214], + [46, 397], + [9, 124], + [16, 76], + [30, 75], + [47, 225], + [3, 116], + [13, 51], + [68, 17], + [50, -136], + [80, -49], + [89, 49], + [18, 43], + [59, 23], + [50, 0] + ], + [ + [2177, 5303], + [154, 148] + ], + [ + [1931, 5896], + [63, -114], + [-11, -30], + [-2, -107], + [-67, -112], + [-34, -9], + [-37, -54], + [-44, -13], + [-51, -39], + [-12, 73], + [15, 109], + [26, 66], + [114, 197], + [40, 33] + ], + [ + [4347, 4549], + [15, -46], + [-11, -46], + [33, -42], + [-41, -51], + [-10, -59], + [5, -106], + [66, -47], + [116, -6], + [42, -32], + [58, -23], + [41, 13], + [48, 68], + [27, -99], + [29, -62], + [47, -59], + [2, -61], + [-66, -153], + [19, -90], + [26, -52], + [-45, -22], + [-54, -4], + [-25, -84], + [-68, -31], + [-39, -51], + [-6, -61], + [-38, -29], + [-109, -1] + ], + [ + [2313, 2863], + [-124, 52], + [0, 52], + [-44, -17], + [-36, 17], + [-28, -40], + [-36, 11], + [-41, -55], + [-44, -11], + [-23, 74], + [-75, 112], + [34, 86], + [49, 31], + [-54, 30], + [-4, 82], + [-38, 33], + [26, 44], + [80, -4], + [22, 57], + [-117, 95], + [-10, 61] + ], + [ + [187, 1584], + [36, -5], + [98, -63], + [87, -19], + [10, -24], + [79, -46], + [44, 19], + [71, -38], + [100, 65], + [51, 15], + [20, 93], + [55, -12], + [43, -86], + [92, -4], + [72, 8], + [38, 19], + [41, -58], + [-70, -111], + [-164, -140], + [-75, -16], + [-48, -62], + [-50, -13], + [-28, -28], + [-34, 35], + [-88, -21], + [-25, 25], + [13, 103], + [-57, 40], + [-54, 1], + [-61, 45], + [-30, -3], + [-67, 39], + [-16, -39], + [-85, -7], + [14, -97], + [-89, -10], + [-34, 13], + [-62, 66], + [-13, 94], + [19, 35], + [-19, 45], + [-1, 57], + [67, 42], + [77, 16], + [43, 27] + ], + [ + [640, 1916], + [-36, 30], + [-43, -21], + [-56, 18], + [-63, -52], + [-29, 54], + [-48, 36], + [65, -143], + [66, 87], + [45, -16], + [41, 21], + [58, -14] + ], + [ + [640, 1916], + [81, 0], + [40, -32], + [78, -31], + [34, -38], + [16, -48], + [50, -88], + [51, -36], + [62, 30], + [52, -17], + [-2, 48], + [53, -16] + ], + [ + [1177, 1514], + [-74, -6], + [18, 38], + [-46, 36], + [-57, -29], + [-102, 33], + [-134, 130], + [-67, -42], + [-30, -121], + [-113, -20], + [-72, 70], + [-39, 0], + [-21, 46], + [-68, 55], + [-35, -37], + [-62, -2], + [-68, 46], + [-45, 85], + [-81, 76], + [6, 39], + [155, 115], + [61, 9], + [27, -17], + [74, 31] + ], + [ + [404, 2049], + [50, -18], + [77, 26], + [71, 8], + [34, -12], + [49, -90], + [-45, -47] + ], + [ + [1111, 1868], + [-24, -42], + [-57, 40], + [-113, 6], + [-69, 101], + [-44, 21], + [5, 44], + [38, 7], + [67, 39], + [68, -1], + [-35, 73], + [48, 23], + [72, -42], + [59, -3] + ], + [ + [1018, 2254], + [2, -2] + ], + [ + [1020, 2252], + [-52, -19], + [-25, -66], + [-34, -35], + [-80, -37], + [-54, -8], + [-52, 36], + [-51, 7], + [-16, 85], + [-69, 40], + [-12, 34], + [-115, -70], + [-6, -15] + ], + [ + [454, 2204], + [-44, 42], + [-11, 60], + [15, 39], + [85, 48], + [82, -2], + [27, 44] + ], + [ + [608, 2435], + [4, -3] + ], + [ + [612, 2432], + [-22, -44], + [79, 13], + [25, -26], + [83, 2], + [48, -75], + [11, -39], + [39, -6], + [63, -40], + [19, 23], + [61, 14] + ], + [ + [1020, 2252], + [44, 1], + [40, -21], + [21, -37], + [56, -10], + [100, 39], + [10, 50], + [-85, 62], + [-34, 13], + [-37, 53], + [-67, 73], + [-38, 12], + [-132, 83], + [-25, 38] + ], + [ + [873, 2608], + [15, 23] + ], + [ + [888, 2631], + [24, 9], + [71, -55], + [36, 7], + [35, -43], + [63, -40], + [23, -54], + [131, -55], + [84, -55], + [98, -22], + [53, -26], + [190, 73], + [47, 31], + [35, 44], + [15, 48], + [41, 35], + [53, 7] + ], + [ + [404, 2049], + [2, 41], + [39, 63], + [9, 20], + [1, 26], + [-1, 5] + ], + [ + [1180, 2423], + [29, -56], + [46, -8], + [22, 26], + [-97, 38] + ], + [ + [612, 2432], + [35, 60], + [102, 52], + [52, -1], + [40, -53], + [-1, -68], + [42, -99], + [79, -9], + [53, -23], + [4, -37] + ], + [ + [608, 2435], + [33, 72], + [-13, 39], + [16, 36], + [161, 67], + [68, -41] + ], + [ + [888, 2631], + [13, 40], + [-45, 77], + [27, 49], + [-14, 41], + [-55, -18], + [-7, 30], + [32, 55], + [9, 85], + [82, -32], + [59, 71], + [186, 266], + [41, 45], + [72, 111], + [60, 110], + [109, 258] + ] + ], + "transform": { + "scale": [0.0007705376781471888, 0.00041178641301035853], + "translate": [3.371388912200927, 50.75516510009777] + }, + "objects": { + "netherlands": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3]], + "type": "Polygon", + "properties": { + "ID_0": 158, + "ISO": "NL-DR", + "NAME_0": "Netherlands", + "ID_1": 1, + "NAME_1": "Drenthe", + "TYPE_1": "Provincie", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[4, 5]], [[6, 7, 8]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 158, + "ISO": "NL-FL", + "NAME_0": "Netherlands", + "ID_1": 2, + "NAME_1": "Flevoland", + "TYPE_1": "Provincie", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[9]], [[10, -3, 11, -9, 12, 13, 14]], [[15]], [[16]], [[17]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 158, + "ISO": "NL-FR", + "NAME_0": "Netherlands", + "ID_1": 3, + "NAME_1": "Friesland", + "TYPE_1": "Provincie", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Frise|Frisia|Frísia" + } + }, + { + "arcs": [[18, 19, 20, 21, 22, 23, 24]], + "type": "Polygon", + "properties": { + "ID_0": 158, + "ISO": "NL-GE", + "NAME_0": "Netherlands", + "ID_1": 4, + "NAME_1": "Gelderland", + "TYPE_1": "Provincie", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Geldern|Gheldria|Guelders|Gueldre" + } + }, + { + "arcs": [[[-4, -11, 25]], [[26]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 158, + "ISO": "NL-GR", + "NAME_0": "Netherlands", + "ID_1": 5, + "NAME_1": "Groningen", + "TYPE_1": "Provincie", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Groninga|Groningue" + } + }, + { + "arcs": [[27, 28, -13, -8, 29, -6, 30, -24, 31, 32]], + "type": "Polygon", + "properties": { + "ID_0": 158, + "ISO": "NL-YS", + "NAME_0": "Netherlands", + "ID_1": 6, + "NAME_1": "IJsselmeer", + "TYPE_1": "Water body", + "ENGTYPE_1": "Water body", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[33, 34, -20]], + "type": "Polygon", + "properties": { + "ID_0": 158, + "ISO": "NL-LI", + "NAME_0": "Netherlands", + "ID_1": 7, + "NAME_1": "Limburg", + "TYPE_1": "Provincie", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Limbourg|Limburgo" + } + }, + { + "arcs": [[-35, 35, 36, 37, 38, 39, 40, -21]], + "type": "Polygon", + "properties": { + "ID_0": 158, + "ISO": "NL-NB", + "NAME_0": "Netherlands", + "ID_1": 8, + "NAME_1": "Noord-Brabant", + "TYPE_1": "Provincie", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Brabante del Norte|Brabante do Norte|Brabante settentrionale|Brabant-septentrional|Nord-Brabant|Nort" + } + }, + { + "arcs": [[[41, 42, 43, -33]], [[44, -14, -29]], [[45]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 158, + "ISO": "NL-NH", + "NAME_0": "Netherlands", + "ID_1": 9, + "NAME_1": "Noord-Holland", + "TYPE_1": "Provincie", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Holanda do Norte|Hollande-septentrionale|North Holland" + } + }, + { + "arcs": [[46, -25, -31, -5, -30, -7, -12, -2]], + "type": "Polygon", + "properties": { + "ID_0": 158, + "ISO": "NL-OV", + "NAME_0": "Netherlands", + "ID_1": 10, + "NAME_1": "Overijssel", + "TYPE_1": "Provincie", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-32, -23, 47, -42]], + "type": "Polygon", + "properties": { + "ID_0": 158, + "ISO": "NL-UT", + "NAME_0": "Netherlands", + "ID_1": 11, + "NAME_1": "Utrecht", + "TYPE_1": "Provincie", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[48]], [[49, 50, -37, 51, 52]], [[-39, 53]], [[54, 55, 56, 57, 58]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 158, + "ISO": "NL-ZE", + "NAME_0": "Netherlands", + "ID_1": 12, + "NAME_1": "Zeeland", + "TYPE_1": "Provincie", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Zelanda|Zélande|Zelândia" + } + }, + { + "arcs": [[[-56, 59, 60, 61, -40, -54, -38, -51, -53, 62], [63]], [[-59, 64]], [[-50]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 158, + "ISO": "NL-ZM", + "NAME_0": "Netherlands", + "ID_1": 13, + "NAME_1": "Zeeuwse meren", + "TYPE_1": "Water body", + "ENGTYPE_1": "Water body", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[-64]], [[-60, -55, -65, -58, 65]], [[-48, -22, -41, -62, 66, -43]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 158, + "ISO": "NL-ZH", + "NAME_0": "Netherlands", + "ID_1": 14, + "NAME_1": "Zuid-Holland", + "TYPE_1": "Provincie", + "ENGTYPE_1": "Province", + "NL_NAME_1": null, + "VARNAME_1": "Hollande-méridionale|South Holland" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/portugal-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/portugal-topo.json new file mode 100644 index 000000000000..2b0247ecf90b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/portugal-topo.json @@ -0,0 +1,1911 @@ +{ + "type": "Topology", + "arcs": [ + [ + [41133, 13807], + [-96, -63], + [-12, -51], + [-9, -135], + [20, -66], + [-6, -46], + [-67, -98], + [-30, -127], + [32, -45], + [-27, -55], + [58, -37], + [16, -51], + [45, -67], + [79, -90], + [46, -89], + [55, -59], + [0, -46], + [60, -116] + ], + [ + [41297, 12566], + [-40, -38], + [-36, 6], + [-80, 111], + [16, 50], + [-76, 23], + [-45, 57], + [-34, 104], + [-93, -20], + [-34, -46], + [-74, -17], + [-26, -63], + [-82, -97], + [-62, -34], + [-1, -35], + [-141, 12], + [-13, 20], + [-80, 14], + [-59, -20], + [-71, 30], + [-82, 72], + [-54, 18], + [-22, -19], + [-72, 25], + [-168, 105], + [-63, 26], + [-26, -32], + [-41, -4], + [-41, 56], + [-48, -17], + [-68, 3], + [-33, -15], + [-57, 15] + ], + [ + [39491, 12856], + [-57, 50], + [-122, 24], + [-14, 40], + [-78, 1], + [67, 88], + [-10, 52], + [-62, 17], + [26, 33], + [-43, 107], + [-38, 39], + [-19, 47], + [-52, -19], + [-40, -36], + [-40, 11], + [-51, -20], + [-37, 70], + [-59, -45], + [-69, 7], + [-74, 48], + [-40, -8], + [-30, 128], + [76, 82], + [37, 20], + [37, 51], + [65, 32], + [69, 153], + [-96, 5] + ], + [ + [38837, 13833], + [79, 97], + [51, -30], + [88, 96], + [18, -32], + [49, 67], + [72, -29], + [29, 42], + [34, 2], + [54, -40], + [34, -53], + [48, 23], + [42, -45], + [40, -15], + [-3, -41], + [57, -22], + [30, 71], + [-51, 10], + [-52, 88], + [43, 35], + [-189, 92], + [47, 69], + [25, 108] + ], + [ + [39382, 14326], + [31, -6], + [31, 51], + [68, 42], + [82, -9], + [-28, -41], + [30, -77], + [42, 98], + [53, -12], + [57, -59], + [-11, -38], + [19, -42], + [71, 14], + [17, 30], + [55, 18], + [85, -143], + [89, -20], + [88, 4], + [35, 16], + [33, 68], + [59, -59], + [25, 37], + [50, -28], + [49, 24], + [36, 58], + [68, -3], + [38, 34], + [-18, 54], + [34, 35], + [35, -49], + [36, 7], + [66, -55], + [-22, -84], + [74, -50], + [-9, -34], + [15, -87], + [40, -80], + [84, -31], + [47, 25], + [-11, 35], + [53, 34], + [27, -28], + [57, 44], + [59, -88], + [-37, -50], + [9, -41], + [40, -33] + ], + [ + [39321, 18903], + [46, -18], + [-1, -88], + [50, -10], + [52, -55], + [60, -22], + [88, 67], + [4, -47], + [-74, -100], + [20, -53], + [-13, -44], + [43, -68], + [-38, -39], + [-70, 36], + [-42, -43], + [-70, 41], + [-40, -20], + [31, -62], + [-64, -144], + [-101, -55], + [12, -57], + [49, -37], + [15, -56], + [-10, -51], + [84, -65], + [-107, -44], + [33, -61], + [6, -64], + [60, -63], + [-56, -4], + [-72, -38], + [-16, -37], + [27, -41], + [-62, -105], + [-2, -92] + ], + [ + [39163, 17364], + [-3, -43], + [-74, -12], + [-14, -40], + [-67, -14], + [-10, -85], + [-58, 29], + [-64, 4], + [17, 41], + [53, 6], + [-12, 67], + [15, 95], + [-59, 70], + [-41, -31], + [-65, 13], + [15, 84], + [-25, 64], + [-60, 5], + [-19, -36], + [1, -69], + [-29, -22], + [-51, 23], + [-41, 54], + [-140, 135] + ], + [ + [38432, 17702], + [63, 272], + [37, 3], + [9, 29], + [51, 14], + [41, 60], + [-28, 192], + [-32, -49], + [3, -85], + [-34, -45], + [3, -43], + [-39, -71], + [-23, 0], + [96, 347], + [63, 276], + [27, 191] + ], + [ + [38669, 18793], + [67, 21], + [20, -25], + [63, 3], + [27, 48], + [45, -48], + [45, -6], + [23, 47], + [46, 42], + [38, -72], + [51, -18], + [4, 84], + [72, -23], + [111, 86], + [40, -29] + ], + [ + [10555, 9984], + [52, -4], + [5, -57], + [60, -51], + [4, -74], + [-84, -7], + [-43, 46], + [-112, -21], + [-24, 25], + [-24, 75], + [38, 46], + [128, 22] + ], + [ + [9957, 11767], + [60, 3], + [102, 43], + [33, 34], + [60, -15], + [79, -4], + [118, 10], + [42, -18], + [26, -94], + [-27, -108], + [-39, -36], + [-73, -12], + [-63, 23], + [-72, -28], + [-98, -22], + [-28, -24], + [-94, 5], + [-73, -7], + [-91, 11], + [-76, 47], + [-117, 20], + [-95, -33], + [-151, 110], + [-40, 42], + [-71, 57], + [-24, 72], + [52, 55], + [73, 55], + [104, -51], + [72, -111], + [90, -12], + [72, -39], + [99, 21], + [46, 39], + [72, -40], + [32, 7] + ], + [ + [4867, 13388], + [45, -8], + [131, -72], + [30, -42], + [87, -14], + [123, -95], + [197, -31], + [46, -68], + [-89, -26], + [-165, 22], + [-30, -28], + [-76, -32], + [-59, 67], + [-153, -1], + [-66, 30], + [-72, -13], + [-121, 68], + [-42, 76], + [5, 98], + [40, 43], + [62, 24], + [42, -10], + [65, 12] + ], + [ + [4355, 13570], + [89, -31], + [24, -28], + [75, -39], + [-13, -84], + [-30, -81], + [-155, -16], + [-49, 17], + [-16, 76], + [-102, 52], + [-29, 42], + [74, 21], + [59, -3], + [73, 74] + ], + [ + [5034, 13817], + [93, -25], + [51, -31], + [152, -54], + [50, -31], + [132, -47], + [23, 3], + [81, -62], + [342, -175], + [39, -38], + [-34, -24], + [-91, -6], + [-128, 70], + [-69, 52], + [-140, 28], + [-52, 44], + [-111, 36], + [-173, 103], + [-17, 37], + [-65, 31], + [-83, 89] + ], + [ + [6845, 13920], + [48, -25], + [47, 9], + [124, -32], + [47, 9], + [70, -56], + [0, -100], + [32, -24], + [-52, -70], + [-11, -58], + [-91, -2], + [-55, 20], + [-175, 8], + [-17, -11], + [-128, 78], + [-29, 43], + [-18, 87], + [30, 77], + [51, 27], + [127, 20] + ], + [ + [5526, 14566], + [60, -22], + [78, -151], + [-38, -20], + [-130, 55], + [-40, 78], + [44, 58], + [26, 2] + ], + [ + [178, 15460], + [19, -64], + [39, -45], + [-60, -150], + [-55, -28], + [-96, 6], + [-25, 96], + [9, 154], + [43, 56], + [33, 13], + [33, -36], + [60, -2] + ], + [ + [287, 15852], + [-29, -26], + [-28, 73], + [44, 50], + [35, -40], + [-22, -57] + ], + [ + [41297, 12566], + [41, -41], + [45, 38], + [50, -9], + [28, 46], + [119, 32], + [15, -36], + [-61, -91], + [17, -59], + [-52, -96], + [-1, -78], + [-29, -74], + [-64, -15], + [-30, 28], + [-79, 31], + [-32, -23], + [-3, -43], + [-51, -38], + [-46, 18], + [-102, -22], + [-28, -32], + [23, -51], + [-11, -67], + [-47, -57], + [5, -46], + [-77, -135], + [-39, -24], + [-82, -87], + [-47, -23], + [-16, -77], + [-27, -48], + [5, -75], + [-71, -114], + [-36, -100], + [-26, -30], + [17, -59] + ], + [ + [40605, 11109], + [-86, -10], + [-57, -20], + [-41, -50], + [-72, 35], + [-119, -20], + [-37, -37], + [-174, -93], + [-64, -9], + [-17, -36], + [-60, -29], + [-68, 4], + [-38, -19], + [-9, -86], + [-43, -13], + [-60, -74], + [-158, 33], + [-74, 39], + [-76, 57], + [-50, 25], + [-19, 94], + [-97, -13], + [-37, 10], + [-91, -23], + [-7, -54], + [-59, -45], + [-66, 25], + [-44, -10], + [-90, 67], + [-86, -28], + [-22, -47], + [-40, 45], + [-81, 5], + [-45, -12], + [-34, 77], + [-74, 28] + ], + [ + [38410, 10925], + [4, 147], + [15, 51], + [-11, 56], + [-47, 89], + [41, 170], + [5, 98], + [-30, 47], + [5, 73], + [24, 99] + ], + [ + [38416, 11755], + [18, -28], + [96, 3], + [73, -121], + [40, 33], + [47, -34], + [77, 9], + [7, 93], + [55, 106], + [33, 17], + [91, 0], + [29, 23], + [64, 3], + [97, -13], + [54, 8], + [63, 76], + [-17, 27], + [23, 87], + [1, 93], + [-33, 51], + [-66, 24], + [-93, 86], + [37, 110], + [31, -30], + [53, 88], + [78, -8], + [12, 105], + [76, -16], + [17, 39], + [46, 8], + [64, 37], + [61, 14], + [0, 93], + [-23, 70], + [-36, 48] + ], + [ + [39816, 19584], + [-26, -63], + [-79, -61], + [-51, 54], + [-36, -31], + [-57, 30], + [-45, 47], + [-34, 79], + [-33, 21], + [-64, 0], + [-88, -99], + [-7, -42], + [-43, -6], + [-42, 50], + [-113, -8], + [-37, 20], + [-44, -19], + [-23, 29], + [-79, -16], + [-62, -56], + [-111, 6], + [-35, 84], + [52, 24], + [-22, 39], + [-77, 16], + [-12, 36], + [-44, 29], + [-30, -16], + [-78, 59], + [-49, 5] + ], + [ + [38447, 19795], + [-23, 68], + [5, 73], + [-34, 111], + [-8, 59] + ], + [ + [38387, 20106], + [91, 5], + [56, 42], + [103, 19], + [35, 27], + [67, -45], + [46, 19], + [21, -38], + [41, 13], + [-11, 70], + [44, 36], + [14, 92], + [48, 13], + [122, 70], + [183, 5], + [27, 46], + [35, -24], + [67, 36], + [60, 54], + [54, 13] + ], + [ + [39490, 20559], + [58, -20], + [63, -2], + [73, 25] + ], + [ + [39684, 20562], + [-17, -123], + [-26, -30], + [-30, -94], + [-42, -33], + [121, 1], + [87, -11], + [26, -22], + [-29, -54], + [4, -110], + [51, 2], + [149, -35], + [38, 29], + [47, 2], + [33, -64], + [-38, -36], + [-49, -99], + [-47, -7], + [-24, -43], + [-60, -26], + [-6, -104], + [-43, -40], + [-13, -81] + ], + [ + [41599, 18822], + [-135, 25], + [-28, -5], + [-42, 43], + [-85, 49], + [0, 57], + [22, 57], + [-59, 5], + [14, 37], + [-57, 12], + [-23, -63], + [-50, -3], + [-101, 41], + [-57, -21], + [-37, 9] + ], + [ + [40961, 19065], + [-88, 17], + [-56, 100], + [-74, 40] + ], + [ + [40743, 19222], + [29, 81], + [43, -11], + [-2, 95], + [74, 145], + [-32, 100], + [2, 95], + [62, 43], + [37, 3], + [17, 84], + [23, 36], + [94, 16], + [-50, 89], + [0, 60], + [26, 114], + [50, 86], + [9, 67], + [56, 56], + [8, 72], + [-39, 30], + [-25, 57], + [14, 154] + ], + [ + [41139, 20694], + [46, 87], + [-18, 31], + [-4, 80], + [77, 47], + [92, -38], + [18, -47], + [121, -3], + [40, 50], + [43, -10], + [23, -53], + [101, -10], + [109, 13], + [20, 52], + [-3, 50], + [73, -18], + [31, -89], + [87, -23], + [172, 33], + [41, 27], + [50, -66], + [-43, -104], + [91, -18], + [-45, -202], + [-35, -70], + [28, -146], + [61, -53], + [41, -8], + [53, 19], + [9, 32], + [167, -10], + [90, -32], + [81, -63], + [32, -58], + [47, -17], + [33, -54], + [-39, -34], + [-43, -83], + [-36, -21], + [-20, -56], + [-61, -81], + [18, -32], + [-54, -41], + [19, -58], + [-63, -26], + [-32, 30], + [-33, -18], + [18, -61], + [-61, -18], + [-38, -94], + [-53, -9], + [-191, -137], + [-46, 23], + [-70, -4], + [-74, -87], + [-17, -61], + [-67, -69], + [-46, -31], + [23, -68], + [-94, -149], + [-102, -21], + [-79, 25], + [-28, -20] + ], + [ + [41565, 17123], + [-105, -71], + [-14, -65], + [10, -133], + [27, -36], + [100, -16], + [56, -101], + [46, -53], + [9, -109], + [-19, -29], + [2, -86], + [-36, -36], + [13, -49], + [-8, -68], + [-47, -41], + [-7, -30], + [-88, -63], + [17, -83], + [-29, -67], + [11, -29], + [-31, -59], + [-17, -69], + [-67, -24], + [-125, 7], + [-40, -21], + [-171, 30], + [-56, -12], + [-81, -45], + [-75, 22], + [-44, -10], + [-91, 35], + [-136, 11], + [-13, -8] + ], + [ + [40556, 15815], + [-64, -11], + [-49, -47], + [-70, -27], + [-42, 53], + [-71, -49], + [-11, -70], + [-58, -15], + [-26, -53], + [-51, -44], + [-43, -15] + ], + [ + [40071, 15537], + [22, 67], + [-40, 59], + [-23, 64], + [-111, 97], + [-61, 26], + [-14, 126], + [-57, -18], + [-23, 33], + [-50, 7], + [-35, -25], + [7, -39], + [-20, -53], + [2, -56], + [-28, -21], + [40, -92], + [-138, -12], + [-32, 28], + [-112, 28], + [-26, 32], + [7, 81], + [-12, 92], + [8, 72], + [-54, 13], + [-36, 60] + ], + [ + [39285, 16106], + [-14, 28], + [39, 36], + [-6, 40], + [106, 16], + [20, 32], + [87, 45], + [52, 108] + ], + [ + [39569, 16411], + [54, 41], + [98, 27], + [64, 47], + [50, -1], + [18, 36], + [55, -9], + [24, 23], + [-16, 53], + [103, 58], + [79, -15], + [5, 58], + [51, -22], + [74, 77], + [-5, 45], + [-99, 78], + [-23, 49], + [40, 58], + [3, 48] + ], + [ + [40144, 17062], + [83, 15], + [41, 53], + [83, 23], + [73, 63], + [10, 49], + [129, -9], + [34, 59], + [2, 48], + [50, 62], + [43, 16], + [95, -46], + [43, 3], + [92, 62], + [59, 12], + [38, -18], + [-11, -79], + [6, -51], + [-61, -102], + [-17, -48], + [78, -33], + [65, -8], + [51, 52], + [63, -40], + [56, 34], + [8, 57], + [49, 26], + [34, -93], + [86, -1], + [32, 26], + [107, -71] + ], + [ + [39163, 17364], + [79, -12], + [101, -85], + [72, 41], + [63, 5], + [34, -14], + [67, 9], + [43, 43], + [83, 56], + [61, 11], + [50, 30], + [35, 41], + [40, 12], + [79, 97], + [64, 49], + [31, 7] + ], + [ + [40065, 17654], + [2, -37], + [52, -54], + [-23, -39], + [-55, -14], + [-4, -42], + [31, -24], + [51, 4], + [0, -96], + [55, -99], + [-62, -16], + [-29, -60], + [61, -115] + ], + [ + [39569, 16411], + [15, 82], + [-80, 123], + [22, 100], + [-60, 37], + [-53, -83], + [-40, 33], + [-73, -47], + [-37, -80], + [44, -74], + [-23, -22], + [-57, 20], + [-69, -86], + [-70, -21], + [16, 55], + [-20, 110], + [-40, 56], + [-111, -89], + [-55, -5], + [-1, -38], + [-48, -11], + [-1, 138], + [-64, 9], + [-46, -81], + [-95, 79], + [-105, 10], + [-50, 20], + [-37, -10], + [-28, -53], + [-160, 70] + ], + [ + [38243, 16653], + [45, 139], + [11, 67], + [-23, 53], + [-59, 53], + [52, 133], + [61, 195], + [102, 409] + ], + [ + [39871, 9964], + [44, -16], + [41, -48], + [-56, -18], + [-84, 78], + [55, 4] + ], + [ + [40085, 10010], + [11, -5], + [-3, -25], + [-67, -32], + [-12, 22], + [52, 35], + [19, 5] + ], + [ + [40605, 11109], + [32, -7], + [65, -161], + [-10, -94], + [37, -36], + [-8, -96], + [6, -88], + [33, -72], + [-17, -62], + [20, -16], + [24, -149], + [-91, 12], + [-91, -24], + [-151, -70], + [-33, -53], + [-294, -205], + [-21, 15], + [-17, 9], + [-20, -2], + [-75, -42], + [-31, -58], + [-39, 41], + [-56, 14], + [-71, -5], + [-160, 113], + [-51, 29], + [-130, 47], + [-80, -16], + [-31, 8], + [-90, -31], + [-48, 37], + [-69, 27], + [-46, -25], + [-67, -11], + [-110, 33], + [-104, 43], + [-122, 5], + [-89, -81], + [-73, 2], + [-107, -53], + [-61, 4], + [-59, -43], + [-59, -6], + [-19, -40], + [-41, -46], + [-51, 43], + [-38, 9], + [7, 65], + [30, 40], + [4, 44], + [33, 29], + [56, 143], + [-11, 26], + [45, 77], + [45, 109], + [-25, 74], + [5, 44], + [84, 145], + [27, 97], + [18, 24] + ], + [ + [40782, 18586], + [52, -46], + [-16, -35], + [-64, 3], + [-8, 37], + [36, 41] + ], + [ + [41599, 18822], + [0, -27], + [96, -124], + [26, -22], + [38, -133], + [48, -16], + [11, -81], + [-35, -30], + [12, -79], + [-15, -25], + [-9, -93], + [34, -58], + [20, -135], + [-12, -49], + [-56, -89], + [-11, -59], + [76, -34], + [10, -86], + [-34, -22], + [-59, -110], + [18, -81], + [99, -112], + [-16, -65], + [-47, -21], + [-79, -63], + [-7, -70], + [-67, -23], + [-75, 8] + ], + [ + [40065, 17654], + [10, 21], + [67, -2], + [43, 43], + [77, 37], + [79, 22], + [54, 32], + [51, -7], + [29, 45], + [46, 111], + [34, 52], + [-35, 77], + [-52, 47], + [-7, 28], + [45, 42], + [-23, 39], + [-71, 41], + [59, 101], + [5, 44], + [51, 51], + [76, -8], + [60, -82], + [47, -41], + [26, 24], + [59, 121], + [43, 17], + [4, 56], + [65, 47], + [19, 84], + [-78, 44], + [61, 67], + [-13, 77], + [34, 136], + [31, 45] + ], + [ + [38072, 15007], + [-55, -7], + [-22, 37], + [-46, -1], + [-97, -91], + [-6, -51], + [-57, -52], + [-48, -2], + [-25, 59], + [23, 47], + [-24, 75], + [-125, 11], + [-39, -53], + [-72, 18] + ], + [ + [37479, 14997], + [-29, 62], + [-1, 88], + [100, 55], + [124, 112], + [95, 143], + [32, 19], + [70, 78], + [67, 105], + [-18, 63], + [58, 174], + [-1, 44], + [32, 101], + [51, 114], + [89, 236], + [95, 262] + ], + [ + [39285, 16106], + [-64, 11], + [-31, -62], + [-68, -46], + [-28, 20], + [-46, -15], + [-15, -31], + [-52, 73], + [-8, 75], + [-27, 60], + [-58, -17], + [-66, -77], + [-80, -28], + [-56, 24], + [-77, -49], + [13, -80], + [-11, -47], + [67, -19], + [-18, -91], + [-89, -53], + [26, -57], + [1, -68], + [26, -38], + [-74, -90], + [-54, 18], + [25, -109], + [-40, -7], + [-81, 14], + [-75, -23], + [-59, 4], + [-39, -18], + [-49, -94], + [-23, -71], + [-44, 5], + [-51, -85], + [25, -82], + [-13, -46] + ], + [ + [38072, 15007], + [33, -21], + [-15, -74], + [36, 4], + [87, -45], + [49, 36], + [38, -47], + [44, -10], + [22, -78], + [-56, -25], + [-56, 16], + [-28, -51], + [53, -67], + [112, -61], + [44, -102], + [-32, -9], + [-24, -48], + [-48, -5], + [-38, -114], + [16, -30], + [-54, -38], + [-6, -43], + [-36, -57], + [0, -32], + [-98, -134] + ], + [ + [38115, 13972], + [-34, 62], + [-9, 61], + [10, 81], + [-25, 31], + [-27, -94], + [-33, -52], + [-49, -35], + [-36, -85], + [-9, -119], + [-21, -64], + [-67, -54], + [-120, -29], + [-72, 18], + [-50, -7], + [-53, -42], + [-66, 17], + [-62, 37], + [-49, -25], + [-68, 10], + [-44, 28], + [24, 93], + [-49, 67], + [42, 78], + [55, 129], + [49, 151], + [-16, 167], + [15, 54], + [-10, 68], + [106, 211], + [34, 121], + [6, 89], + [-8, 58] + ], + [ + [25224, 108], + [33, -91], + [-7, -17], + [-73, 166], + [-6, 26], + [53, -84] + ], + [ + [24102, 852], + [27, -46], + [60, -44], + [25, -21], + [84, -21], + [118, 40], + [139, 18], + [67, -62], + [6, -20], + [73, -64], + [2, 0], + [4, -2], + [149, -45], + [59, 11], + [6, -22], + [-68, 0], + [-35, -18], + [-47, -95], + [-34, -13], + [-49, -81], + [-75, -14], + [-45, 11], + [-45, -12], + [-44, -18], + [-72, 40], + [-52, 3], + [-119, 59], + [-29, -2], + [-60, 55], + [-126, 74], + [-55, 79], + [1, 24], + [-2, 4], + [-2, 7], + [-33, 58], + [118, 121], + [54, -4] + ], + [ + [25578, 1356], + [7, -20], + [8, -27], + [-3, -32], + [-52, 1], + [-88, -80], + [-31, 33], + [26, 36], + [4, 6], + [3, 18], + [11, 33], + [81, 52], + [34, -20] + ], + [ + [39382, 14326], + [-55, 55], + [-13, 89], + [-39, 13], + [0, 48], + [-90, 44], + [70, 109], + [6, 28], + [111, 42], + [86, 81], + [55, 68], + [-3, 51], + [32, 33], + [80, -27], + [102, 142], + [-3, 46], + [104, 48], + [50, 61], + [-12, 31], + [-83, 53], + [-23, 55], + [15, 70], + [24, 16], + [45, 108], + [85, -29], + [91, -76], + [30, 2], + [24, 50] + ], + [ + [40556, 15815], + [54, -99], + [18, -64], + [55, -28], + [69, -97], + [65, -18], + [11, -72], + [98, -36], + [53, -41], + [-13, -76], + [-36, -89], + [21, -29], + [0, -61], + [135, -138], + [-28, -55], + [11, -100], + [34, -33], + [93, -26], + [60, -37], + [-14, -31], + [-7, -92], + [67, -21], + [88, 41], + [43, -5], + [81, -61], + [37, -73], + [-14, -33], + [15, -49], + [-47, -90], + [-46, -61], + [-22, -53], + [-45, -39], + [33, -62], + [-10, -31], + [-50, -23], + [-48, -84], + [-50, -2], + [-62, -75], + [-45, -24], + [-27, -41] + ], + [ + [39816, 19584], + [45, -48], + [-30, -47], + [88, -59], + [-2, -68], + [33, -57], + [35, -14], + [-32, -73], + [11, -44], + [-44, -119], + [3, -33] + ], + [ + [39923, 19022], + [-68, 6], + [-173, -73], + [-71, 25], + [-90, -37], + [-106, 20], + [-17, -26], + [-77, -34] + ], + [ + [38669, 18793], + [-19, 79], + [-2, 85], + [-19, 109], + [-37, 64], + [-46, 76], + [-10, 118], + [-29, 116], + [1, 50], + [-27, 22], + [-13, 71], + [-40, 85], + [19, 127] + ], + [ + [38837, 13833], + [-103, 31], + [1, 68], + [17, 71], + [-56, -22], + [-31, -47], + [-65, 37], + [-41, -1], + [-59, -106], + [-16, -76], + [-65, -20], + [-72, 60], + [-60, -29], + [-68, -14], + [-30, 40] + ], + [ + [38189, 13825], + [-28, 34], + [18, 48], + [-23, 43], + [-41, 22] + ], + [ + [38416, 11755], + [-12, 195], + [-21, 48], + [-72, 23], + [-49, 53], + [38, 36], + [49, 113], + [65, 206], + [28, 151], + [2, 192], + [-41, 255], + [29, 65], + [16, -27], + [60, 9], + [114, 0], + [-46, 51], + [-37, -2], + [-12, 162], + [-17, 73], + [-65, -35], + [-12, -54], + [43, -5], + [4, -40], + [-79, -14], + [-140, 90], + [-66, -27], + [-20, -46], + [-81, -20], + [-16, -31], + [-126, -66], + [-75, 17], + [-45, -29], + [-58, 0], + [-54, -45], + [-34, 7], + [45, 109], + [22, 99], + [-14, 108], + [-52, 135], + [-68, 101], + [32, 26], + [103, 9], + [50, -15], + [50, -52], + [64, -8], + [-6, 38], + [57, 34], + [72, -17], + [0, 72], + [-40, -7], + [-15, 36], + [66, 48], + [102, 53], + [35, -4] + ], + [ + [38387, 20106], + [-30, 82], + [-3, 60], + [-54, 60], + [-34, 108], + [28, 127], + [-20, 58], + [5, 73], + [38, 15], + [56, 75], + [55, 14], + [66, 56], + [3, 48], + [144, 85], + [4, 50], + [38, 47], + [71, 21], + [83, -6], + [49, 56], + [115, 7], + [36, -23], + [83, 9], + [42, 30], + [43, -14], + [133, 117], + [48, -9], + [52, 34], + [16, -167], + [115, 22], + [38, -22], + [21, -55], + [-3, -68], + [-76, -28], + [-56, -46], + [-20, -61], + [-40, -35], + [-32, -58], + [40, -80], + [54, -34], + [-5, -95] + ], + [ + [40743, 19222], + [-130, -30], + [-24, -38], + [-36, 18], + [-54, -60], + [-114, -4], + [-40, 8], + [-54, -46], + [-137, 23], + [-62, -14], + [-82, 28], + [-87, -85] + ], + [ + [39684, 20562], + [66, 31], + [41, 75], + [68, 8], + [48, 23], + [25, 100], + [32, -1], + [-1, -133], + [38, -16], + [36, 49], + [114, 13], + [25, 26], + [52, -15], + [50, 34], + [86, -58], + [120, -5], + [-48, -71], + [64, -37], + [91, 27], + [61, 42], + [56, 9], + [38, -97], + [37, -10], + [32, 56], + [128, 1], + [98, 51], + [98, 30] + ] + ], + "transform": { + "scale": [0.0005848950788891755, 0.0004541432399403744], + "translate": [-31.262424468994027, 32.48131179809599] + }, + "objects": { + "portugal": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-07", + "NAME_0": "Portugal", + "ID_1": 1, + "NAME_1": "Évora", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[5, 6, 7, 8]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-01", + "NAME_0": "Portugal", + "ID_1": 2, + "NAME_1": "Aveiro", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[9]], [[10]], [[11]], [[12]], [[13]], [[14]], [[15]], [[16]], [[17]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 182, + "ISO": "PT-20", + "NAME_0": "Portugal", + "ID_1": 3, + "NAME_1": "Azores", + "TYPE_1": "Região autónoma", + "ENGTYPE_1": "Autonomous region", + "NL_NAME_1": null, + "VARNAME_1": "Açores" + } + }, + { + "arcs": [[18, 19, 20, 21, -2]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-02", + "NAME_0": "Portugal", + "ID_1": 4, + "NAME_1": "Beja", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[22, 23, 24, 25, 26]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-03", + "NAME_0": "Portugal", + "ID_1": 5, + "NAME_1": "Braga", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[27, 28, 29, 30]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-04", + "NAME_0": "Portugal", + "ID_1": 6, + "NAME_1": "Bragança", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": "Braganza" + } + }, + { + "arcs": [[31, 32, 33, 34, 35, 36]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-05", + "NAME_0": "Portugal", + "ID_1": 7, + "NAME_1": "Castelo Branco", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[37, 38, -36, 39, 40, -7]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-06", + "NAME_0": "Portugal", + "ID_1": 8, + "NAME_1": "Coimbra", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[41]], [[42]], [[-20, 43]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 182, + "ISO": "PT-08", + "NAME_0": "Portugal", + "ID_1": 9, + "NAME_1": "Faro", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[44]], [[45, -37, -39, 46, -28]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 182, + "ISO": "PT-09", + "NAME_0": "Portugal", + "ID_1": 10, + "NAME_1": "Guarda", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[47, 48, -40, -35, 49]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-10", + "NAME_0": "Portugal", + "ID_1": 11, + "NAME_1": "Leiria", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-48, 50, 51]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-11", + "NAME_0": "Portugal", + "ID_1": 12, + "NAME_1": "Lisboa", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": "Lisbon|Lisbona|Lisbonne|Lissabon" + } + }, + { + "arcs": [[[52]], [[53]], [[54]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 182, + "ISO": "PT-30", + "NAME_0": "Portugal", + "ID_1": 13, + "NAME_1": "Madeira", + "TYPE_1": "Regiões autônoma", + "ENGTYPE_1": "Autonomous region", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-5, 55, -33, 56]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-12", + "NAME_0": "Portugal", + "ID_1": 14, + "NAME_1": "Portalegre", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-23, 57, 58, -9, 59]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-13", + "NAME_0": "Portugal", + "ID_1": 15, + "NAME_1": "Porto", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": "Oporto" + } + }, + { + "arcs": [[-34, -56, -4, 60, 61, -51, -50]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-14", + "NAME_0": "Portugal", + "ID_1": 16, + "NAME_1": "Santarém", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-61, -3, -22, 62]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-15", + "NAME_0": "Portugal", + "ID_1": 17, + "NAME_1": "Setúbal", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-25, 63]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-16", + "NAME_0": "Portugal", + "ID_1": 18, + "NAME_1": "Viana do Castelo", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": "Vianna do Castello" + } + }, + { + "arcs": [[-30, 64, -58, -27, 65]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-17", + "NAME_0": "Portugal", + "ID_1": 19, + "NAME_1": "Vila Real", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": "Villa Real" + } + }, + { + "arcs": [[-47, -38, -6, -59, -65, -29], [-45]], + "type": "Polygon", + "properties": { + "ID_0": 182, + "ISO": "PT-18", + "NAME_0": "Portugal", + "ID_1": 20, + "NAME_1": "Viseu", + "TYPE_1": "Distrito", + "ENGTYPE_1": "District", + "NL_NAME_1": null, + "VARNAME_1": "Vizeu" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/russia-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/russia-topo.json new file mode 100644 index 000000000000..2f1d910797c0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/russia-topo.json @@ -0,0 +1,8430 @@ +{ + "type": "Topology", + "arcs": [ + [ + [41398, 1621], + [77, -41], + [46, 13], + [37, -48], + [18, -113], + [-26, 21], + [-19, -68], + [24, -76], + [-12, -101], + [12, -62], + [-24, -80], + [-21, -2], + [-54, 55], + [-43, -1], + [-16, 22], + [24, 56], + [46, -11], + [17, 65], + [-46, 47], + [-4, 87], + [30, 130], + [-45, 40], + [-28, -7], + [-6, -50], + [-30, -15], + [-86, 15], + [-75, 70], + [46, 12], + [38, -29], + [51, 15], + [69, 56] + ], + [ + [50344, 4667], + [-22, 20], + [-67, -54], + [6, -163], + [-46, 4], + [-27, -41], + [-32, 17], + [-63, -12], + [13, -62], + [-87, -132], + [-93, -52], + [-30, -3], + [-55, -57], + [-48, -9], + [-19, -50], + [20, -60], + [57, -14], + [17, -46], + [-29, -61], + [-73, -24] + ], + [ + [49766, 3868], + [-45, 97], + [-47, 32], + [-83, 30], + [-30, -48], + [-38, 13], + [-40, -74], + [-54, 7], + [-27, -14], + [-25, 24], + [-40, 1], + [-34, -25], + [-21, 28], + [-17, 72], + [-62, -15], + [16, 99], + [-88, 44], + [-11, -42], + [-34, 0], + [5, -95], + [-41, -19], + [-11, -39], + [-46, 28], + [-165, 467], + [-155, 374], + [-71, 145] + ], + [ + [48602, 4958], + [20, 33], + [-4, 70], + [27, 2], + [36, -33], + [56, 18], + [20, 53], + [57, 1], + [101, 30], + [13, 31], + [121, 94], + [63, 70], + [70, 25], + [30, -63], + [64, -12], + [22, -66], + [41, -82], + [76, -26], + [-6, -20], + [56, -40], + [38, 49], + [19, 85], + [76, 82], + [131, 31], + [19, -7], + [54, 36], + [34, -22], + [37, 60], + [88, 51] + ], + [ + [49961, 5408], + [20, -4], + [38, -82], + [24, 6], + [55, -59], + [56, -43], + [31, -68], + [16, -66], + [30, -55], + [73, -13], + [-39, -126], + [59, -63], + [-12, -64], + [8, -65], + [24, -39] + ], + [ + [58612, 5939], + [23, -13], + [126, 2], + [68, 10], + [40, 22], + [38, -12], + [33, -141], + [-24, -56], + [-37, -12], + [-10, -55], + [-49, -15], + [-8, -31], + [-44, -49], + [-108, -81], + [0, -37], + [-33, -96], + [-61, -16], + [-34, -45], + [-11, -67], + [23, -43], + [55, -51], + [26, 17], + [53, -13], + [31, -103], + [14, -76], + [74, -98], + [22, 33], + [152, 12], + [49, 36], + [-3, 37], + [35, 29], + [53, 19], + [15, -26], + [58, -12], + [87, 57], + [45, -26], + [31, -114], + [-6, -56], + [-44, -86], + [4, -74], + [16, -28], + [-24, -40], + [3, -46], + [-98, 18], + [-148, 82], + [-7, -109], + [29, -44], + [-39, -56], + [-63, 5], + [-83, -94], + [-18, -59], + [-132, -57], + [-34, -37], + [17, -56], + [-49, -70], + [-29, -12], + [-25, -89], + [-33, -26], + [11, -38], + [-27, -87], + [42, 13], + [17, -56], + [-19, -30], + [92, -77], + [15, -44], + [8, -105], + [-4, -62], + [-22, -31], + [20, -49], + [0, -72], + [-23, -56] + ], + [ + [58688, 3297], + [-31, 3], + [-24, -26], + [-26, -83], + [-32, -7], + [-42, -48] + ], + [ + [58533, 3136], + [-23, 16], + [-35, -16], + [-66, 79], + [-12, 47], + [-61, 100], + [-26, 8], + [-50, -34], + [-23, 42], + [-42, 8], + [-12, 38], + [-60, 10], + [-24, -36], + [-57, 46], + [-30, -9], + [-29, 77], + [-25, 23], + [-3, 93], + [14, 74], + [-39, 21], + [-15, 75], + [14, 44], + [-47, 143], + [-36, 51], + [-4, 54], + [15, 49], + [-37, 54], + [9, 35], + [-68, 168], + [15, 80], + [-46, 38], + [7, 71], + [-93, 190], + [-51, 90], + [-73, 46], + [-39, 0], + [-28, -25], + [-87, 47], + [-24, 49], + [-25, -9], + [-51, 59], + [-61, 27], + [-49, 3], + [-80, -44], + [-74, -5], + [-21, 23], + [-53, -31] + ], + [ + [56928, 5005], + [-18, 54], + [-2, 109], + [-28, 63], + [-32, 29], + [20, 63], + [-14, 72], + [80, 32], + [-41, 89], + [0, 50], + [-35, 17], + [52, 78], + [-8, 77], + [14, 74], + [-30, 82], + [-27, 7], + [-25, -51], + [-34, 10], + [-19, 97], + [-4, 97], + [-22, 21], + [-57, -3], + [-41, -39], + [-48, -17], + [-54, 9], + [-2, 100], + [23, 27], + [52, 10], + [-33, 87], + [-64, 15], + [-32, 45], + [9, 38], + [-37, 36], + [29, 49] + ], + [ + [56500, 6432], + [60, 7], + [54, 43], + [105, 10], + [103, -23], + [30, -92], + [100, -3], + [85, -99], + [27, -8], + [34, 38], + [28, -43], + [67, -31], + [77, 4], + [25, -19], + [52, -104], + [29, -23], + [8, -48], + [76, -39], + [98, 9], + [41, -45], + [31, 11], + [54, -27], + [3, -43], + [74, -11], + [27, 28], + [52, -21], + [35, 37], + [48, -1], + [17, -42], + [34, 10], + [16, 37], + [75, -16], + [30, 6], + [104, -75], + [36, -2], + [30, 32], + [-20, 41], + [49, 26], + [63, 11], + [71, -25], + [135, 26], + [49, -29] + ], + [ + [42258, 10320], + [46, -7], + [34, -42], + [105, -26], + [92, -52], + [33, 13], + [55, -35], + [49, 18], + [137, -98], + [125, 10], + [-23, 34], + [81, 79], + [155, -11] + ], + [ + [43147, 10203], + [13, -34], + [-4, -94], + [10, -61], + [4, -153], + [106, 19], + [17, -48], + [76, -125], + [61, -18], + [-32, -135], + [-132, 35], + [-30, -55], + [-92, 9], + [-18, -54], + [-73, -2], + [-6, -48], + [-55, 12], + [-3, 42], + [-54, 9], + [-237, -13], + [-35, -30], + [-81, 14], + [-96, -40], + [28, -60], + [50, -37], + [102, -25], + [112, -96], + [6, -58], + [-28, -37], + [31, -70], + [99, -70], + [-52, -69], + [-45, -28], + [32, -93], + [-6, -129], + [34, 1], + [5, -53], + [41, -1], + [10, 48], + [119, -2], + [-16, 63], + [27, 100], + [53, 2], + [21, 43], + [162, -27], + [-54, -256], + [-12, -3], + [-36, -190], + [88, -26], + [-50, -177], + [-91, -12], + [-73, -65], + [-9, -55] + ], + [ + [43034, 8051], + [-70, 13], + [-2, 44], + [-75, 32], + [-69, -6], + [-21, -81] + ], + [ + [42797, 8053], + [-49, 2], + [-3, 38], + [-57, 29], + [-34, -23], + [-58, -4], + [-51, 30], + [13, 54], + [-98, 14], + [-15, -120], + [-184, 19], + [-15, 37], + [-77, -20], + [-76, -88], + [-38, 18], + [-25, -37], + [-55, 60], + [-60, -47], + [-107, 65], + [-43, -1], + [-31, -59], + [-47, -43], + [-36, 3], + [-58, 41], + [-47, 6], + [-23, -32], + [-61, -13], + [-44, 35], + [-48, -26], + [-63, -10], + [-92, 23], + [-100, 96], + [10, 47], + [-82, 140], + [4, 48] + ], + [ + [41047, 8335], + [2, 58], + [29, 132], + [-47, 99], + [-42, 16], + [25, 65], + [-2, 70], + [-40, 40], + [-54, -9], + [-84, 51], + [-58, 83], + [-5, 46], + [26, 46], + [-39, 82], + [-54, 73], + [83, -4], + [48, 66], + [-11, 68] + ], + [ + [40824, 9317], + [9, -14], + [104, -14], + [37, -38], + [49, 45], + [66, 17], + [10, 50], + [-52, 126], + [-128, 14], + [-68, 116], + [-40, 13], + [-16, 64], + [66, 33], + [34, 88], + [125, -52], + [35, -54], + [71, -56], + [125, -12], + [76, -38], + [52, -44], + [49, 29], + [70, -27], + [49, 32], + [-27, 158], + [-47, 39], + [-62, 95], + [-4, 48], + [30, 69], + [105, 65], + [66, 86], + [108, 28], + [73, 65], + [74, 112], + [37, 7], + [100, -49], + [80, 9], + [63, -49], + [68, -81], + [47, 123] + ], + [ + [43862, 12370], + [82, -60], + [-6, -78], + [-58, 2], + [-42, 69], + [-64, 38], + [88, 29] + ], + [ + [44281, 13199], + [92, -45], + [56, 3], + [73, -33], + [49, -4], + [33, -49], + [-83, -65], + [23, -42], + [-62, -66], + [-45, -13], + [-45, -142], + [28, -57], + [-36, -68], + [65, -183], + [91, -152], + [155, -135], + [98, -45], + [-28, -63], + [-57, -16], + [-132, -7], + [-58, 43], + [-75, -17], + [-43, 39], + [-59, -61], + [-85, 60], + [-135, 17], + [-62, 33], + [22, 48], + [-43, 44], + [57, 39], + [-58, 26], + [-46, 93], + [-74, -16], + [-71, 70], + [-76, -42], + [-98, 37], + [-31, 93], + [22, 120], + [46, 26], + [118, -18], + [-4, 38], + [57, 49], + [14, 118], + [-69, 61], + [36, 49], + [96, 16], + [14, 101], + [47, 40], + [81, 23], + [84, -4], + [118, 57] + ], + [ + [46698, 14666], + [138, -30], + [94, -58], + [-24, -106], + [-137, -112], + [-195, -73], + [-153, -30], + [-323, -109], + [-445, -125], + [-57, 0], + [-45, -61], + [-172, -64], + [-46, -117], + [-61, -49], + [-54, -6], + [-60, -56], + [-75, 25], + [-24, -71], + [-82, 17], + [7, -111], + [-152, -133], + [3, -55], + [-58, -72], + [-87, -26], + [23, -34], + [-105, -88], + [-109, 11], + [-59, 30], + [-74, -3], + [-84, 46], + [-133, -20], + [34, 74], + [-64, 14], + [-73, 48], + [168, 122], + [104, 58], + [43, 101], + [147, 15], + [-104, 69], + [153, 30], + [7, 87], + [-28, 42], + [-97, 46], + [202, 41], + [-14, 49], + [46, 20], + [132, -14], + [-22, 65], + [90, 64], + [128, 31], + [-5, 28], + [102, 39], + [78, -2], + [122, 43], + [141, 16], + [-34, 47], + [29, 44], + [118, 15], + [62, -19], + [196, -19], + [174, 52], + [31, -22], + [141, 75], + [72, -5], + [141, 118], + [127, 34], + [69, 50], + [133, 24] + ], + [ + [45137, 15931], + [75, -25], + [-99, -48], + [-93, 42], + [117, 31] + ], + [ + [43539, 15935], + [66, -76], + [-176, 7], + [110, 69] + ], + [ + [43365, 15986], + [56, -21], + [-89, -50], + [-71, 44], + [104, 27] + ], + [ + [44664, 16038], + [12, -112], + [-174, -4], + [-35, 99], + [197, 17] + ], + [ + [43920, 16053], + [168, -65], + [-169, -31], + [-144, 28], + [125, 32], + [20, 36] + ], + [ + [44848, 16090], + [170, -19], + [-36, -52], + [-151, -85], + [-101, 26], + [-18, 97], + [136, 33] + ], + [ + [44567, 16203], + [52, -57], + [-183, 3], + [32, 49], + [99, 5] + ], + [ + [42874, 16244], + [-7, -52], + [-101, -74], + [-148, -12], + [-182, 20], + [194, 41], + [244, 77] + ], + [ + [45572, 16250], + [77, -49], + [-42, -66], + [-90, -20], + [-72, -68], + [-142, 35], + [-111, -23], + [-75, 28], + [18, 94], + [102, 54], + [96, -18], + [239, 33] + ], + [ + [43515, 16283], + [23, -36], + [149, -60], + [-142, -62], + [-222, -32], + [-26, -48], + [-103, 2], + [-29, -87], + [-193, -18], + [52, 120], + [249, 96], + [-94, 60], + [131, 49], + [205, 16] + ], + [ + [44518, 16342], + [248, -26], + [-49, -39], + [-199, 65] + ], + [ + [44235, 16347], + [140, -38], + [135, 1], + [143, -69], + [155, -30], + [-125, -39], + [-61, 45], + [-346, 66], + [-41, 64] + ], + [ + [45499, 16356], + [24, -46], + [-137, -48], + [-155, 30], + [268, 64] + ], + [ + [46091, 16391], + [160, -24], + [11, -84], + [-172, -92], + [-268, -31], + [-115, 62], + [100, 67], + [160, 34], + [-10, 33], + [134, 35] + ], + [ + [44600, 16467], + [218, -44], + [-192, -40], + [-92, 29], + [66, 55] + ], + [ + [44780, 16533], + [149, -36], + [-97, -38], + [-163, 61], + [111, 13] + ], + [ + [45039, 16655], + [24, -51], + [-199, -8], + [34, 49], + [141, 10] + ], + [ + [42895, 1734], + [-41, 72], + [-34, -20], + [-42, 25], + [49, 191], + [-47, -16], + [-15, 51], + [-56, 43], + [35, 51], + [37, 3], + [13, 70], + [25, 10], + [14, 46], + [-27, 56], + [-20, 4], + [-28, 49], + [-53, 130], + [-10, 41], + [-28, 2], + [-35, 34], + [-59, 91], + [-27, 69], + [5, 47], + [-35, -1], + [-47, 55] + ], + [ + [42469, 2837], + [-48, 47], + [-5, 49], + [40, 75], + [61, 9], + [53, 50], + [37, 66], + [36, -2], + [61, -56], + [5, -23] + ], + [ + [42709, 3052], + [-22, -87], + [79, -43], + [36, -52], + [7, -70], + [-22, -17], + [29, -98], + [37, -34], + [7, 56], + [53, -28], + [70, 6], + [23, -34], + [37, -100], + [43, -8], + [10, -84], + [23, -81], + [42, -100], + [-17, -30], + [-31, -2], + [-18, 34], + [-33, -47], + [56, -50], + [8, -22], + [63, -46], + [9, -65], + [-35, -87], + [-79, -51], + [-34, -31], + [-33, -80], + [-33, 21], + [-36, -35], + [-35, 59], + [-22, -31], + [20, -32], + [-16, -49] + ], + [ + [44746, 6201], + [27, -84], + [46, 14], + [40, -27], + [57, 2], + [46, 31], + [56, -42], + [33, 30] + ], + [ + [45051, 6125], + [54, 11], + [-20, -54], + [5, -38], + [-20, -50], + [36, -28], + [0, -53], + [62, -13], + [-29, -51], + [-53, -7], + [-7, -39], + [-35, -35], + [-29, 19], + [-39, -59], + [40, -49], + [-45, -39], + [-65, 96], + [-40, 30], + [-94, 25], + [-54, -37], + [-26, -67], + [26, -55], + [-6, -49], + [93, -89], + [35, -73], + [28, 0], + [32, 40], + [34, 11], + [41, -27], + [31, 37], + [57, 27], + [29, -8], + [79, 118], + [39, -32], + [9, -34], + [-22, -72], + [-23, -26], + [-6, -55], + [23, -23], + [-9, -65], + [-28, 14], + [-51, -7], + [-21, -67], + [-47, -29], + [-14, -166], + [0, -99], + [18, -99], + [-24, -38], + [-13, -134], + [18, -73] + ], + [ + [45020, 4614], + [11, -57], + [-38, -26], + [2, -93], + [-14, -88], + [-71, -49], + [-29, 36], + [-78, 21], + [-22, -64], + [-65, -52], + [-44, 68], + [-33, -20], + [-33, 72], + [18, 35], + [-21, 60], + [-45, 81], + [3, 70], + [-23, 49], + [-44, 40], + [-38, -104], + [-24, -19], + [-42, 23], + [-13, 74], + [-20, 22], + [-3, 85], + [-32, -13], + [-37, 83], + [-22, 95], + [-43, -12], + [-22, 48], + [-55, 18], + [-31, 33], + [-44, 89], + [-35, 46], + [-45, 101] + ], + [ + [43988, 5266], + [-4, 86], + [16, 107], + [33, 72], + [-22, 91], + [-62, 95], + [66, 22], + [28, 45], + [41, 28], + [20, 81], + [36, 40], + [-1, 33], + [-75, 87] + ], + [ + [44064, 6053], + [58, 63], + [56, 98] + ], + [ + [44178, 6214], + [25, 57], + [81, -44], + [42, 17], + [32, -24], + [65, 46], + [30, 0], + [35, -78], + [42, 2], + [43, 28], + [60, -99], + [27, -11], + [47, 30], + [39, 63] + ], + [ + [41157, 4127], + [33, -13], + [-10, -77], + [41, -20], + [44, 0], + [-23, -77], + [46, -60], + [27, -77], + [-14, -25], + [21, -128], + [22, -29], + [-26, -91] + ], + [ + [41318, 3530], + [-54, -5], + [-62, 69], + [-45, 10], + [-61, -19], + [-54, 57], + [-51, 137], + [-82, -39], + [-25, 5], + [-61, -45], + [-20, 37], + [-34, -14], + [-30, 64], + [-60, 0], + [-38, -36], + [-42, 93], + [17, 41], + [-30, 106], + [9, 30] + ], + [ + [40595, 4021], + [27, -30], + [59, 12], + [31, 53], + [39, 22], + [74, -30], + [37, 42], + [34, 1], + [32, 51], + [52, 26], + [68, -7], + [45, 26], + [64, -60] + ], + [ + [40545, 4949], + [23, -106], + [-42, -32], + [-24, -50], + [29, -53], + [-40, -94], + [22, -38] + ], + [ + [40513, 4576], + [-68, -119], + [-51, -16], + [1, -71] + ], + [ + [40395, 4370], + [-45, 59], + [5, 48], + [-74, 91], + [-91, 5], + [-50, -42], + [-51, -5], + [-33, 33], + [-32, 1], + [-2, -81], + [-52, -47], + [-50, 30], + [-23, 74], + [-17, 10], + [5, 106], + [-20, 53], + [17, 31], + [-57, 108], + [23, 68], + [40, 15], + [36, -46], + [62, -14], + [49, 40], + [64, 94] + ], + [ + [40099, 5001], + [64, 96], + [35, 92], + [49, 56] + ], + [ + [40247, 5245], + [55, -15], + [22, -49], + [52, 7], + [53, -76], + [4, -99], + [112, -64] + ], + [ + [55742, 6451], + [-30, -34], + [5, -58], + [-31, -38], + [43, -27], + [5, -89], + [28, -92], + [-12, -48], + [24, -145], + [6, -116], + [42, -18], + [44, 4], + [39, -72], + [38, -34], + [24, -84], + [-26, -107], + [-19, -31], + [-81, -10], + [-135, -50], + [-20, -50], + [-45, -31], + [-69, -79], + [-45, -21], + [-23, -55], + [-96, -41], + [-26, -41], + [0, -84], + [18, -55], + [30, -30], + [13, -50], + [25, -15], + [-13, -91], + [-39, -67], + [-48, -13], + [-39, -62], + [-83, -11], + [-38, -43], + [-76, -4], + [-36, -43], + [-34, 27], + [-46, -48], + [-53, -97], + [-65, -30], + [-51, -37], + [-31, -47], + [-6, -38], + [-29, -30], + [-46, 8], + [-12, 29], + [-73, 3], + [-62, -68], + [-73, -32], + [-56, 31], + [-45, 3], + [-43, -17], + [-21, -86], + [34, -36], + [-48, -35], + [-9, -106], + [-30, -37], + [64, -49], + [6, -53], + [-90, -59], + [-15, -49], + [-38, -43], + [7, -24] + ], + [ + [54231, 3596], + [-5, -9], + [-4, -3], + [-82, 16], + [-24, 14], + [-39, 90], + [-67, 41], + [-54, -21], + [-38, 40], + [-88, 16], + [-42, 19], + [-45, -32], + [-45, -5], + [-61, -31], + [-35, -3], + [-29, -43], + [-35, -19], + [-39, 20], + [-31, -27], + [-76, 34], + [-16, 38], + [-42, -4], + [-64, 52], + [-26, 45], + [-34, 18], + [6, 59], + [-25, 56], + [8, 41], + [-37, 177], + [-80, 25], + [-56, 5], + [-76, 64], + [-81, 51], + [-98, 1], + [-42, 53], + [-90, 38], + [-57, 61] + ], + [ + [52582, 4473], + [0, 26], + [-65, 37], + [0, 65], + [32, 43], + [22, 59], + [14, 106], + [38, -3] + ], + [ + [52623, 4806], + [41, 86], + [25, -4], + [56, 41], + [2, 42], + [44, -6], + [32, 35], + [33, -143], + [60, -53], + [12, -32], + [105, -89], + [43, -59], + [7, -37], + [69, -69], + [21, 17], + [82, -19], + [54, -119], + [53, -33], + [18, -66], + [-4, -45], + [24, -59], + [44, 5], + [46, -32], + [-3, -88], + [22, -10], + [56, 50], + [77, 28], + [15, 88], + [126, 96], + [132, 203], + [83, 132], + [197, 155], + [102, 132], + [77, 298], + [7, 193], + [26, 76], + [0, 158], + [11, 69], + [-15, 13], + [-5, 81], + [11, 22], + [36, 163], + [45, 31], + [-42, 40], + [-12, 54], + [-52, 49], + [31, 75], + [69, 59], + [75, 24], + [38, -10], + [33, 35], + [24, 75], + [72, -16], + [36, -35], + [32, 12], + [74, -22], + [35, 39], + [15, 57], + [28, 30], + [50, -81], + [53, 7], + [65, -37], + [32, 43], + [39, -90], + [68, -36], + [76, 11], + [78, -50], + [33, 59], + [57, -11], + [58, 17], + [53, 107], + [6, 57], + [104, 2], + [34, 44], + [55, 3], + [4, -48], + [-69, -69] + ], + [ + [42552, 514], + [-37, 34], + [-43, -6], + [-32, 66], + [-17, 2] + ], + [ + [42423, 610], + [23, 88], + [-5, 56], + [22, 57], + [2, 50], + [-22, 41], + [-50, 52] + ], + [ + [42393, 954], + [6, 44] + ], + [ + [42399, 998], + [30, 17], + [7, 82], + [55, -30], + [23, 67] + ], + [ + [42514, 1134], + [40, -30], + [22, 13], + [54, -39], + [49, 60], + [30, -62], + [-2, -52], + [-43, -119], + [21, -84], + [-4, -56], + [18, -62], + [-16, -29], + [-41, 5], + [-20, -26], + [17, -36], + [-35, -16], + [-3, -31], + [-49, -56] + ], + [ + [45616, 6135], + [32, -53], + [8, -43], + [56, -71], + [1, -115], + [-93, -80], + [36, -62], + [-56, -54], + [45, -135], + [43, 24], + [22, -25], + [46, -3], + [70, 24], + [27, -70], + [-32, -38], + [-2, -41], + [51, -70] + ], + [ + [45870, 5323], + [-40, -2], + [-20, -38], + [-39, 5], + [-75, -77], + [-22, 45], + [-47, 9], + [-26, -45], + [-40, 34], + [-30, -14], + [-22, 36], + [-35, -40], + [-47, -14], + [36, -56], + [-57, -81], + [48, -20], + [73, 3], + [-14, -47], + [-34, 19], + [-27, -47], + [4, -40], + [53, -29], + [39, 11], + [24, -37], + [59, -18], + [5, -46], + [-46, 2], + [-44, -20], + [-38, 30], + [-42, -1], + [-77, -110], + [3, -59], + [43, -115], + [-66, -70], + [-43, -8], + [-31, -45], + [-40, -17] + ], + [ + [45255, 4421], + [-17, 34], + [13, 49], + [26, 32], + [-2, 48], + [-26, 18], + [-113, 24], + [-37, -20], + [-4, -59], + [-48, 67], + [-27, 0] + ], + [ + [45051, 6125], + [45, 95], + [67, -20], + [18, -36], + [65, 1], + [65, 17], + [31, -23], + [106, 6], + [-13, 39], + [25, 25], + [90, -27], + [66, -67] + ], + [ + [2, 11379], + [30, -27], + [71, 2], + [34, -47], + [81, -22], + [27, -86], + [129, -50], + [20, -62], + [53, 16], + [58, -28], + [112, -79], + [-14, -30], + [59, -36], + [92, -7], + [-59, -56], + [27, -41], + [94, -31], + [-50, 71], + [34, 27], + [94, -58], + [16, -90], + [72, -34], + [-22, -126], + [29, -47], + [9, -68], + [-51, -38], + [101, -57], + [-3, -94], + [93, 61], + [-32, 43], + [41, 53], + [-24, 122], + [-20, 42], + [103, 8], + [38, -52], + [148, -34], + [48, 18], + [131, 1], + [-3, -34], + [65, -45], + [-5, -29], + [87, -67], + [72, -72], + [60, -25], + [26, -43], + [73, -19], + [0, -31], + [-94, -18], + [-68, -59], + [7, -77], + [-24, -29], + [-122, -30], + [-122, -2], + [-113, 63], + [66, -112], + [-14, -78], + [24, -67], + [-29, -35], + [-91, -53], + [-16, -76], + [79, -45], + [-1, -54], + [-57, -4], + [-40, -56], + [-45, -5], + [-36, 30], + [-52, 1], + [-62, 34], + [-19, 57], + [-106, 66], + [8, 54], + [-83, -31], + [-55, 6], + [-14, 29], + [-87, 59], + [24, 66], + [-30, 43], + [-8, 66], + [-161, 64], + [-36, 26], + [-66, -63], + [-81, -15], + [-128, 8], + [-2, 112], + [-74, 62], + [76, 134], + [-91, -27], + [-57, 3], + [-108, -28], + [0, -66], + [21, -65], + [71, -61], + [-25, -31], + [-19, -129], + [-86, -76], + [0, 402], + [0, 602], + [0, 204], + [2, 402] + ], + [ + [65687, 11806], + [95, -29], + [76, -39], + [-46, -123], + [-51, 0], + [-142, 52], + [-10, 26], + [-60, 26], + [70, 78], + [68, 9] + ], + [ + [66795, 8446], + [3, 1] + ], + [ + [66798, 8447], + [1, 0] + ], + [ + [66799, 8447], + [-12, 58], + [-23, 47], + [-35, 4], + [8, 99], + [-10, 31], + [-69, 38], + [-112, -38], + [-59, -39], + [-57, 33], + [-67, -18], + [-32, 27], + [-134, -74], + [-37, 30], + [-25, -36], + [-55, -18], + [-73, 31], + [-36, -12], + [-39, 148], + [-54, 16], + [-22, 39], + [-88, 65], + [-29, -7], + [-95, 61], + [50, 44], + [23, 55], + [144, 136], + [-47, 118], + [-63, 13], + [-27, 31], + [-15, 71], + [-37, 8], + [-19, 50], + [-94, -24], + [-60, 23], + [-3, 39], + [-49, 35], + [-29, 49], + [-33, -31], + [-84, -17], + [-31, 33], + [-102, 16], + [-22, 51], + [-69, 3], + [-33, 37], + [-39, -24], + [-69, 15], + [-66, 40], + [-74, -15], + [-50, 25], + [-56, -100] + ], + [ + [64690, 9613], + [-83, -3], + [-40, 39], + [-89, 14], + [-38, 24], + [-42, 80], + [-71, 33], + [-126, 21], + [-78, 84], + [-18, 49], + [-188, 71], + [-31, 31], + [2, 99], + [50, 87], + [-51, 2], + [-75, 45] + ], + [ + [63812, 10289], + [-22, 44], + [101, 139], + [-33, 46], + [1, 64], + [-90, 29], + [-77, 62], + [-16, 81], + [5, 93], + [80, 12], + [-25, 54], + [44, 84], + [35, 20], + [69, -3], + [73, 51], + [75, -20], + [47, 41], + [140, -11], + [127, 61], + [187, -55], + [23, 111], + [29, 48], + [-24, 36], + [42, 38], + [-63, 59], + [13, 61], + [36, 19], + [-82, 95], + [23, 108] + ], + [ + [64530, 11656], + [91, -8], + [69, 28], + [114, -7], + [33, 28], + [103, -71], + [234, -4], + [78, -27], + [140, -12], + [148, 120], + [59, -11], + [-18, -41], + [58, -37], + [-10, -71], + [24, -71], + [70, -3], + [73, -46], + [44, -3], + [14, -89], + [39, -39], + [90, 11], + [140, 73], + [33, 39], + [-14, 82], + [-68, 135], + [-71, -6], + [15, 48], + [55, 43], + [0, 113], + [137, -14], + [283, -56], + [82, -61], + [89, 44], + [59, 10], + [76, -18], + [136, -4], + [112, -5], + [34, -23], + [98, -15], + [134, -55], + [71, -6], + [26, -29], + [165, -28], + [42, -20], + [4, -55], + [102, -5], + [70, -64], + [0, -37], + [54, -14], + [3, -8], + [0, -38], + [0, -556], + [0, 0], + [0, -621], + [0, -392], + [-30, -15], + [-63, -80], + [-70, -14], + [-65, -53], + [-85, 2], + [-123, 24], + [-37, 65], + [-76, -40], + [-77, 40], + [-69, -37], + [72, -60], + [16, -32], + [59, 68], + [78, 14], + [-18, -94], + [14, -40], + [93, -85], + [71, 47], + [64, -154], + [18, -100], + [-30, -29], + [29, -95], + [32, -42], + [67, -37], + [29, -59], + [-35, -25], + [16, -50], + [41, -22], + [9, -56], + [-50, -85], + [-46, -25], + [12, -40], + [-118, 39], + [-87, 47], + [-155, 9], + [-69, -16], + [-74, -43], + [-47, -50], + [-58, -17], + [-127, -64], + [-7, -28], + [-79, -41], + [4, 5], + [-24, -7], + [-26, -39], + [-23, -6], + [-6, 6], + [-5, 0] + ], + [ + [67850, 12424], + [0, -228], + [-73, -42], + [-104, -6], + [-46, -25], + [-35, 113], + [51, 57], + [60, 29], + [48, 50], + [99, 52] + ], + [ + [182, 12447], + [58, -4], + [126, -48], + [112, -105], + [-48, -56], + [-49, -20], + [-208, -46], + [-173, 31], + [0, 56], + [0, 113], + [0, 56], + [182, 23] + ], + [ + [43053, 5994], + [-39, -58], + [-11, -44], + [-43, -57], + [-17, -72], + [44, -49], + [-53, -77], + [-9, -49], + [-70, -6], + [-19, -44] + ], + [ + [42836, 5538], + [-42, -3], + [-35, -34], + [-74, 54] + ], + [ + [42685, 5555], + [-12, 52], + [-57, 66] + ], + [ + [42616, 5673], + [-4, 69], + [29, 24], + [28, 83], + [-71, 53], + [-8, 40], + [27, 44], + [6, 84] + ], + [ + [42623, 6070], + [72, 58], + [36, -12], + [18, 28], + [101, 60], + [24, -60], + [75, -26], + [21, -65], + [83, -59] + ], + [ + [39469, 7766], + [8, 23], + [34, 20], + [10, -3], + [25, -9], + [35, -21], + [43, -18], + [28, -5], + [-3, -9], + [-4, -23], + [33, -26], + [-5, -41], + [23, -28], + [26, -17], + [-7, -28], + [-23, -3], + [-14, -19], + [-8, -13], + [-55, 5], + [-24, 21], + [-10, 17], + [-30, 41], + [-33, 14] + ], + [ + [39518, 7644], + [67, 0], + [30, 50], + [-42, 11], + [-8, 55], + [-72, 20], + [-24, -14] + ], + [ + [42764, 1486], + [-12, -121], + [30, -41], + [22, -93], + [27, -34], + [29, -76], + [34, -61], + [-1, -68], + [-20, -98], + [9, -49], + [-11, -104], + [45, -56], + [2, -80], + [33, -82], + [34, -59], + [57, -176], + [24, -33], + [-16, -83], + [-42, -51], + [-27, -5], + [-32, -111], + [-65, -5], + [-51, 48], + [-7, 48], + [-24, 60], + [-17, -13], + [-21, 72], + [-26, 50], + [-42, 8], + [-59, 53], + [-86, 50], + [-31, 39], + [21, 29], + [11, 70] + ], + [ + [42514, 1134], + [2, 54], + [-42, 3], + [-25, 39], + [40, 19], + [12, 36], + [-26, 28], + [-10, 47], + [36, 30], + [27, 72], + [-11, 44], + [23, 44] + ], + [ + [42540, 1550], + [22, 11], + [105, -27], + [32, -41], + [37, -24], + [28, 17] + ], + [ + [50344, 4667], + [38, -36], + [60, -33], + [53, 48], + [47, -55], + [44, 2], + [4, -96] + ], + [ + [50590, 4497], + [-28, -46], + [-41, -14], + [-26, -93], + [37, -36], + [-34, -94], + [89, -82], + [36, 18], + [18, 71], + [18, 13] + ], + [ + [50659, 4234], + [39, -61], + [-11, -43], + [19, -94], + [31, -57], + [31, -22], + [33, -58], + [3, -31], + [58, -77], + [-13, -35], + [-39, 0], + [-35, -26], + [39, -103], + [-1, -46] + ], + [ + [50813, 3581], + [15, -97], + [-45, -21], + [-65, -65], + [-54, -14], + [-31, 22], + [-39, -16], + [-41, 4], + [-44, -125], + [-55, -6], + [-49, -35], + [-24, 6], + [-8, 48], + [-42, 15], + [-27, 40], + [-20, 80], + [-34, 35], + [-36, 3], + [-84, -63], + [-9, 27], + [-97, 5], + [-39, 26], + [-20, 101], + [-23, 19], + [3, 56], + [-31, 16], + [-67, 63], + [-29, -10], + [-20, 126], + [-32, 47] + ], + [ + [42423, 610], + [-40, 21], + [-15, -47], + [-23, 47] + ], + [ + [42345, 631], + [45, 29], + [13, 28], + [-10, 65], + [-50, 65], + [-1, 58], + [-14, 22], + [2, 53], + [42, -17], + [21, 20] + ], + [ + [56370, 6973], + [-85, -20], + [-36, 21], + [-28, 45], + [-97, 35], + [-60, -38], + [20, -76], + [-31, -30], + [-21, -91], + [-33, 1], + [31, -92], + [-15, -40], + [22, -75], + [57, -7], + [19, -27], + [-28, -40], + [16, -35], + [-15, -75], + [-34, -18], + [-26, 46], + [-54, -70], + [-97, -1], + [-40, 34], + [-21, -18], + [-72, 49] + ], + [ + [52623, 4806], + [-104, 92], + [-85, -23], + [-3, 46], + [-37, 8], + [-13, 51], + [-78, 9], + [-57, 94], + [-30, -1], + [-44, 59], + [-30, -33] + ], + [ + [52142, 5108], + [-43, 13], + [-36, 53], + [-49, 101], + [-74, 68], + [21, 73], + [36, 8], + [23, 53], + [67, -14], + [41, 99], + [4, 63], + [-14, 33], + [17, 67], + [-10, 37], + [48, 27], + [-18, 39], + [4, 74], + [-13, 73], + [34, 39], + [8, 56], + [31, 35], + [34, -19], + [44, 64], + [-3, 69], + [67, 11], + [3, 58], + [-29, 14], + [8, 86], + [-55, 5], + [22, 67], + [-52, 34], + [109, 308], + [160, -7], + [55, -21], + [70, 25], + [12, 64], + [26, 48], + [69, 7], + [24, -104], + [38, -9], + [20, -72], + [-4, -37], + [60, -51], + [40, 31], + [-30, 74], + [0, 84], + [49, -3], + [33, 69], + [-14, 28], + [74, 54], + [28, 72], + [102, 53], + [64, 82], + [-5, 56], + [-28, 64], + [15, 50], + [66, 16], + [26, 41], + [43, -5], + [32, -93], + [34, -47], + [77, -24], + [5, -62], + [55, 12], + [16, -60], + [64, 5], + [41, 41], + [-20, 56], + [64, 67], + [43, 26], + [-4, 53], + [-83, 126], + [-19, 55], + [60, 76], + [83, -4], + [-17, 34], + [5, 137], + [-64, 8], + [-53, 33], + [-63, 97], + [18, 45], + [-3, 112], + [29, 49], + [57, 34], + [-22, 56], + [66, 37], + [61, 62], + [71, 40], + [-11, 53], + [89, 87], + [14, 69], + [-13, 25], + [72, 95], + [11, 45], + [-48, 14], + [-4, 40], + [-62, 79], + [-5, 50], + [42, 12], + [9, 46], + [56, 65], + [-41, 66], + [24, 32], + [20, 94], + [-12, 56], + [79, -29], + [21, 24], + [57, -32], + [21, 37], + [108, 12], + [39, 34], + [-37, 65], + [-29, 13] + ], + [ + [54293, 9434], + [47, 0], + [38, -44], + [16, -52], + [44, -22], + [-14, -74], + [-76, -5], + [-31, -81], + [83, -2], + [87, -19], + [39, -75], + [24, 7], + [13, -165], + [34, -65], + [-32, -30], + [-36, -70], + [24, -64], + [82, 4], + [22, -98], + [-14, -55], + [-36, -19], + [-31, -65], + [10, -45], + [43, -70], + [-8, -91], + [38, -15], + [48, -59], + [53, -11], + [-9, -59], + [-44, -65], + [-1, -48], + [-65, -87], + [-49, -150], + [14, -32], + [-22, -65], + [-37, -61], + [1, -53], + [-32, -42], + [-10, -67], + [35, -19], + [29, -56], + [58, -58], + [54, -8], + [75, 41], + [25, 67], + [73, -1], + [27, -18], + [33, 27], + [40, -23], + [72, 37], + [51, 78], + [4, -74], + [67, 3], + [-1, -35], + [-43, -36], + [-3, -76], + [34, -32], + [22, 53], + [150, 101], + [-6, 64], + [34, 55], + [41, 26], + [26, 50], + [37, 8], + [16, 48], + [58, 38], + [-5, 43], + [33, 52], + [37, -2], + [29, 37], + [34, 85], + [33, -12], + [51, 32], + [110, -58], + [45, -12], + [72, -64], + [35, -76], + [40, 11], + [-27, -90], + [3, -118], + [23, -19], + [123, -18], + [20, 65], + [38, 3], + [26, -52], + [70, -27], + [17, -49], + [-26, -39], + [11, -117], + [13, -46], + [-10, -85], + [58, -44], + [3, -107] + ], + [ + [42167, 6655], + [10, -56], + [-43, -27], + [-11, -54], + [36, -22], + [-33, -73], + [-102, -19], + [-32, -28], + [23, -60], + [-2, -61], + [-55, -28] + ], + [ + [41958, 6227], + [-64, 21], + [-42, -47], + [-24, 11], + [-6, 53], + [-55, -19], + [-143, 22], + [-24, 37], + [-77, -35], + [-17, -41], + [-41, 22], + [-23, 124], + [-33, 17], + [-51, -19] + ], + [ + [41358, 6373], + [39, 121], + [84, 65], + [77, 28] + ], + [ + [41558, 6587], + [124, 41], + [85, 35], + [8, 52], + [30, 40], + [61, -51], + [104, 27], + [23, -25], + [14, -75], + [111, 64], + [49, -40] + ], + [ + [42298, 1034], + [18, -55], + [0, -93], + [-57, -8], + [-10, -61], + [-44, 26], + [-15, -55], + [-43, -89], + [-39, -7] + ], + [ + [42108, 692], + [-42, 16], + [-57, 96], + [-64, 6] + ], + [ + [41945, 810], + [-6, 72], + [12, 73], + [51, 52], + [5, 35] + ], + [ + [42007, 1042], + [101, 42], + [11, -45], + [37, 17], + [40, -18], + [36, 75], + [63, -33], + [3, -46] + ], + [ + [37956, 5771], + [13, -29], + [109, -71], + [84, 1], + [71, -61], + [6, -46], + [-28, -27], + [-8, -50], + [10, -99], + [-241, -16], + [-176, 21], + [-141, 26], + [88, 75], + [-28, 15], + [-27, 58], + [2, 68], + [144, -12], + [65, -17], + [25, 14], + [-7, 111], + [39, 39] + ], + [ + [42895, 1734], + [-15, -138], + [-75, -129], + [-41, 19] + ], + [ + [42540, 1550], + [-47, 81], + [-96, 68], + [-9, 20], + [-74, 27], + [-25, 24], + [-42, 83], + [-20, 60], + [-60, 35], + [-45, 7], + [-24, 36], + [-88, 57], + [-16, -47], + [-47, -40], + [-44, -8], + [3, 59], + [-30, -8], + [0, -62], + [-87, 26] + ], + [ + [41789, 1968], + [-12, 59], + [23, 24], + [38, 4], + [-3, 37], + [51, 19], + [-27, 89], + [67, -42], + [56, -54], + [36, 23], + [30, -24], + [46, -66], + [44, -15], + [53, 87], + [19, 80], + [-22, 12], + [50, 102], + [33, 28], + [19, 184], + [-2, 40], + [-63, -13], + [-40, -42], + [-18, 66] + ], + [ + [42167, 2566], + [-2, 68], + [26, 43], + [38, 26], + [19, 46], + [46, -19], + [27, 55], + [-37, 28], + [10, 48], + [44, -6], + [-6, -41], + [71, 3], + [14, 35], + [52, -15] + ], + [ + [40943, 5581], + [-10, -88], + [-33, -11], + [-31, -40], + [24, -28], + [-5, -44], + [-82, -17], + [-55, -41], + [5, -38], + [-49, -73], + [-11, -58], + [14, -49] + ], + [ + [40710, 5094], + [-36, -47], + [-39, -1], + [-14, -42], + [-76, -55] + ], + [ + [40247, 5245], + [39, 124], + [-17, 16], + [8, 61], + [59, 25], + [47, -31], + [43, 5], + [12, 48], + [80, 65], + [-5, 61], + [42, 24], + [38, 75], + [0, 27] + ], + [ + [40593, 5745], + [40, -10], + [35, 24], + [106, -43], + [21, 50], + [36, -22], + [63, -3], + [33, -59], + [16, -101] + ], + [ + [65208, 5800], + [49, -40], + [9, -60], + [29, -64], + [38, -40], + [-15, -47], + [-74, 87], + [-17, 66], + [-31, 53], + [12, 45] + ], + [ + [64946, 7387], + [27, -84], + [-18, -65], + [-85, -23], + [-116, -96], + [66, 181], + [81, 43], + [45, 44] + ], + [ + [66795, 8446], + [-4, -1], + [2, 3], + [5, -1] + ], + [ + [64542, 8383], + [0, 36], + [-31, 53], + [50, 39], + [-53, 38], + [-9, 30], + [101, 48], + [8, 72], + [-22, 45], + [28, 40], + [-73, 81], + [-27, 7], + [11, 79], + [48, 14], + [40, 36], + [-15, 79], + [61, 54], + [-2, 32], + [-51, 60], + [34, 57], + [-24, 85], + [28, 36], + [98, 74], + [-51, 83], + [-1, 52] + ], + [ + [66799, 8447], + [-2, 10], + [-9, -3], + [-1, -9], + [-11, -6], + [-39, 11], + [-19, -54], + [-33, -11], + [-62, 23], + [-6, -81], + [-52, -54], + [-54, 30], + [-27, -22], + [40, -55], + [-85, -45], + [-20, -68], + [-25, -1], + [-33, -54], + [-69, -14], + [-73, -94], + [-131, -81], + [7, -39], + [-33, -29], + [-16, -113], + [-26, -17], + [-66, 67], + [-30, 72], + [-6, 49], + [-60, 42], + [-8, 35], + [-50, -10], + [-108, 18], + [-66, -7], + [-229, -114], + [-49, -88], + [-58, -66], + [-24, -46], + [-35, -5], + [20, 136], + [20, 26], + [-8, 114], + [-49, -21], + [-44, -62], + [-116, -80], + [13, -32], + [-24, -55], + [-47, -33], + [-15, 61], + [-54, 68], + [-59, -57], + [-57, 19], + [-34, -55], + [-41, -4], + [-16, -34], + [3, -66], + [-37, -19], + [26, -110], + [-51, -20], + [-33, -58], + [5, -56], + [-90, -116], + [-60, -130], + [-30, -149], + [30, -68], + [75, -38], + [-7, 49], + [41, 29], + [63, -50], + [30, 0], + [18, -42], + [-39, -96], + [-59, -55], + [-1, -65], + [14, -62], + [-14, -108], + [26, -35], + [60, 20], + [3, -124], + [20, -45], + [1, -58], + [-34, -21], + [-25, -51], + [-45, 24], + [-34, 66], + [51, 80], + [-32, 24], + [-55, -39], + [31, -51], + [-75, -48], + [-51, -123], + [-34, -114], + [5, -144], + [18, -60], + [53, -89], + [-5, -39], + [-78, -103], + [-80, -8], + [-18, 40], + [-40, 2], + [-75, -49], + [-115, -141], + [-18, -89], + [-6, -97], + [20, -40], + [-20, -71], + [36, -76], + [-3, -49], + [-67, 62], + [-36, -8], + [-73, -49], + [-72, -91], + [-26, 73], + [-29, -56], + [42, -34], + [-29, -43], + [-1, -120], + [17, -25], + [-51, -117], + [-5, -57], + [-45, -70], + [-25, -61], + [-53, -47], + [-73, -130], + [-67, -76], + [-62, 107], + [-11, 83], + [2, 115], + [-7, 153], + [-23, 134], + [-38, 162], + [-16, 206], + [-29, 252], + [-40, 253], + [-25, 245], + [3, 108], + [15, 208], + [16, 58], + [40, 206], + [26, 73], + [63, 56], + [30, 65], + [20, -11], + [59, 154], + [-29, 148], + [97, -10], + [31, 21], + [28, 78], + [43, -14], + [79, 38], + [65, 78], + [68, 58], + [133, 190], + [-1, 50], + [26, 59], + [103, 108], + [14, 62], + [69, 25], + [79, 98], + [39, 75], + [67, 51], + [13, 70], + [57, 82], + [107, 43], + [23, 47], + [95, 27], + [53, 28], + [-24, 40], + [12, 54], + [57, 42], + [21, 53], + [-52, 52], + [23, 74], + [27, 5], + [26, 251], + [109, 75], + [43, -22], + [41, 23], + [-87, 47], + [-20, 44], + [-106, -12], + [-151, -57], + [-3, -82], + [-25, -41], + [7, -83], + [-26, -94], + [65, -32], + [-69, -69], + [-25, 71], + [-75, -17] + ], + [ + [41945, 810], + [-24, 29], + [-73, -24], + [-86, 16], + [-30, 48], + [-17, -8], + [-72, 37], + [-44, 44] + ], + [ + [41599, 952], + [1, 82], + [18, 74], + [25, 27], + [13, 57], + [68, -28], + [33, -42], + [32, 45], + [17, 79], + [-22, 42], + [32, 37] + ], + [ + [41816, 1325], + [31, 10], + [30, -59], + [50, -8], + [30, -65], + [-30, -39], + [23, -55], + [29, 23], + [28, -90] + ], + [ + [40112, 10400], + [1, 0], + [58, -16], + [63, -42], + [88, -92], + [31, 3], + [81, -66], + [55, -75], + [-12, -148], + [-63, -60], + [68, -124], + [-1, -39], + [31, -61], + [-23, -56], + [32, -33], + [-40, -32], + [69, -75], + [53, -26], + [34, 37], + [113, -97], + [8, -56], + [66, -25] + ], + [ + [41047, 8335], + [-74, -10], + [-61, 43], + [-35, -34], + [-49, 6], + [-31, -60], + [-149, -88] + ], + [ + [40648, 8192], + [-34, -13], + [-138, 73], + [-47, -41], + [-138, 12], + [-58, -33], + [35, -40], + [47, 2], + [-29, -64], + [-58, 27], + [-54, -73], + [-70, -77], + [-28, 2], + [-390, 161], + [-175, 59], + [-60, 61] + ], + [ + [39451, 8248], + [81, 96], + [22, 46], + [257, 337], + [65, 167], + [-60, 91], + [-7, 39], + [-86, 73], + [-49, 22], + [-98, 120], + [48, 26], + [54, 94], + [-7, 85], + [-82, 61], + [-6, 77], + [23, 25], + [-18, 57], + [-56, -1], + [-20, 35], + [-3, 75], + [38, 33], + [-32, 36], + [21, 44], + [-7, 120], + [74, 44], + [-39, 161], + [-47, 67], + [-48, 121] + ], + [ + [39469, 10399], + [237, 25], + [129, 1], + [41, -10], + [52, -100], + [82, -3], + [54, 93], + [48, -5] + ], + [ + [50630, 5826], + [-30, -43], + [14, -130], + [41, -71], + [-38, -92], + [5, -132], + [49, 47], + [22, -43], + [37, 10], + [7, -59], + [-26, -39], + [30, -126], + [-36, -11], + [-41, -81], + [12, -74], + [32, -92], + [-26, -45], + [53, -77], + [-33, -76], + [11, -34], + [-29, -47], + [-38, -29], + [-3, -47], + [-53, -38] + ], + [ + [49961, 5408], + [-21, 66], + [-4, 72], + [24, 24], + [-38, 76], + [10, 50], + [-21, 169], + [-30, 51], + [-38, 153] + ], + [ + [49843, 6069], + [53, 42], + [41, 2], + [57, 30], + [51, 4], + [67, 91], + [51, 32], + [7, 44], + [44, -27], + [34, 26], + [39, -34], + [62, 13], + [6, 32], + [76, 1], + [9, -47], + [186, 141] + ], + [ + [50626, 6419], + [11, -94], + [-10, -58], + [19, -59], + [40, -26], + [55, -68], + [5, -47], + [33, -96], + [-44, -39], + [-43, -13], + [-62, -93] + ], + [ + [59778, 5700], + [-20, -83], + [-72, 14], + [62, 64], + [30, 5] + ], + [ + [59867, 5728], + [61, -47], + [47, -15], + [-41, -47], + [1, -51], + [-64, -63], + [-33, 90], + [-35, 19], + [64, 114] + ], + [ + [61214, 8537], + [47, 5], + [85, -55], + [64, 35], + [78, -41], + [84, -134], + [-4, -48], + [34, -117], + [-21, -97], + [-38, -17], + [-1, -96], + [-57, 33], + [-95, -76], + [-24, -47], + [21, -61], + [43, -46], + [101, 18], + [19, -44], + [38, -9], + [-5, -43], + [53, -17], + [38, -34], + [9, -91], + [-16, -94], + [-44, -19] + ], + [ + [61623, 7442], + [-98, 38], + [-25, -25], + [-1, -52], + [-48, -54], + [-41, 41], + [22, 43], + [-70, 30], + [-68, -4], + [-43, -18], + [-108, 1], + [-73, 13], + [-52, -7], + [-51, -27], + [-51, 15], + [-148, -68], + [-87, -100], + [-53, -108], + [-69, -72], + [-52, -26], + [-50, -58], + [-42, -122], + [-11, -66], + [-37, -34], + [-57, -25], + [-38, -88], + [-34, -8], + [-37, -67], + [-43, -11], + [-46, -52], + [-8, -48], + [-55, -31], + [-8, -42], + [-50, -60], + [-36, -71], + [-12, -62], + [-24, -6], + [-38, -95], + [-25, -7], + [-148, -173], + [-72, -52], + [-54, -114], + [-82, -72], + [-33, -13], + [-54, -69], + [5, -72], + [129, -70], + [47, 18], + [60, -10], + [57, 20], + [11, -25], + [-22, -60], + [10, -79], + [-5, -71], + [-17, -22], + [4, -89], + [91, 23], + [-15, 131], + [57, 54], + [39, -24], + [-20, -40], + [-35, -6], + [63, -105], + [-32, -82], + [-32, -5], + [-3, -52], + [120, 20], + [66, 62], + [13, 69], + [40, 38], + [-3, -79], + [-29, -45], + [25, -47], + [22, 55], + [20, 111], + [-8, 133], + [83, -48], + [29, -5], + [87, 47], + [2, -36], + [77, -61], + [24, -40], + [-14, -34], + [56, -94], + [74, -60], + [-6, -30], + [53, -44], + [42, -9], + [5, -53], + [-56, -72], + [-35, -23], + [45, -37], + [13, -104], + [-28, -74], + [26, -47], + [49, -55], + [-32, -25], + [14, -60], + [-47, -51], + [-10, -57], + [-29, -10], + [-12, -58], + [-24, -23], + [8, -50], + [-27, -8], + [1, -120], + [-34, -68], + [-15, -128], + [15, -76], + [1, -83], + [30, -43], + [-34, -27], + [-16, -49], + [24, -36], + [4, -91], + [-40, -130], + [-5, -81], + [10, -54], + [-23, -31], + [-12, -69], + [-2, -96], + [-83, -114], + [-35, -79], + [-51, -69], + [-39, -133], + [-1, -29] + ], + [ + [60133, 2540], + [-44, 35], + [-41, -1], + [-5, 102], + [36, 27], + [-9, 63], + [-26, 34], + [1, 56], + [-19, 43], + [-8, 57], + [-30, 13], + [-18, -47], + [-51, -21], + [-29, -35], + [-55, -1], + [-27, -38], + [14, -44], + [30, -21], + [7, -62], + [33, -34], + [30, 7], + [21, -23], + [7, -70], + [-53, -67], + [-19, 11], + [-54, -64], + [-64, 45], + [-26, -89], + [10, -33], + [-74, -85], + [-50, -12], + [-53, 41], + [-39, -13], + [-22, 51], + [-31, 7], + [-38, 41], + [-7, 40], + [-44, 14], + [-19, -33], + [-57, -2], + [-15, -70], + [-19, -23], + [-1, -63], + [-16, -20], + [-75, -20] + ], + [ + [59184, 2236], + [0, 65], + [22, 109], + [16, 38], + [-14, 32], + [35, 72], + [30, 3], + [34, 58], + [19, 69], + [-35, 63], + [-7, 48], + [23, 58], + [-18, 81], + [-53, 4] + ], + [ + [59236, 2936], + [42, 43], + [45, -19], + [25, 67], + [-72, 17], + [-36, 45], + [-29, -41], + [-81, 19], + [-63, 40], + [-30, 47], + [-18, 115], + [-67, 23], + [-9, 33], + [-67, -1], + [-2, 38], + [-43, 32], + [-20, -13], + [-13, -67], + [-41, 19], + [-51, -47], + [-18, 11] + ], + [ + [58612, 5939], + [-17, 90], + [15, 63], + [34, 73], + [5, 72], + [31, 34], + [60, -20], + [10, 98], + [30, 39], + [-68, 125], + [-47, 34], + [13, 62], + [38, -27], + [55, 127], + [57, 60], + [-59, 72], + [-48, 85], + [31, 45], + [60, -61], + [39, 87], + [-12, 100], + [48, -6], + [25, 53], + [-10, 29], + [19, 71], + [42, 10], + [3, 77], + [36, 34], + [93, 28], + [22, -14], + [65, 15], + [46, -26], + [171, -40], + [95, 160], + [47, 1], + [40, -35], + [131, -39], + [35, 36], + [40, 7], + [52, 54], + [4, 40], + [31, 34], + [89, -8], + [33, 83], + [-15, 20], + [3, 114], + [28, 56], + [-11, 31], + [36, 95], + [-57, 72], + [44, 92], + [53, 57], + [107, 80], + [62, 27], + [65, 118], + [1, 69], + [47, 4], + [27, 153], + [24, 35], + [38, 2], + [45, 36], + [34, -46], + [39, 7], + [45, -94], + [70, -76], + [57, 26], + [12, -51], + [49, -18], + [24, 28], + [47, -14], + [47, 34], + [82, -21], + [67, 5], + [20, -97], + [91, 49], + [37, 83] + ], + [ + [50973, 4489], + [-52, -20], + [-41, -91], + [19, -61], + [-34, -20], + [-49, -72], + [-34, 23], + [-51, -14], + [-72, 0] + ], + [ + [50630, 5826], + [60, -56], + [3, -43], + [44, -79], + [66, 23], + [20, -18], + [46, 34], + [43, 8], + [58, -37], + [4, -59], + [86, -33], + [-11, -67], + [57, -57], + [9, -62], + [48, -115], + [1, -37], + [-26, -61], + [27, -124], + [51, -28], + [19, -65], + [-35, -53], + [-58, -33], + [9, -86], + [-29, -49], + [-39, -36], + [-64, -83], + [-46, -121] + ], + [ + [49854, 8593], + [-1, -78], + [48, -82], + [120, -42], + [48, -45], + [49, -11], + [9, -33], + [-59, -31], + [2, -55], + [-207, -124], + [-59, -46] + ], + [ + [49804, 8046], + [-58, -4], + [-80, 73], + [-61, -4], + [-99, -76], + [-48, -50], + [-2, -41], + [-47, -36], + [-55, 48], + [-73, -8], + [-74, 8], + [-7, 45], + [-61, 22], + [-106, -48], + [-162, -5], + [-10, 54], + [-44, 8], + [-26, -28], + [-144, 20], + [-199, 0], + [-10, -64], + [13, -39], + [-40, -36], + [1, -94], + [-27, -60], + [8, -42], + [-18, -167], + [-94, -18], + [-44, -46], + [-21, -53], + [-40, -40], + [12, -97], + [-94, -101], + [-7, -20] + ], + [ + [48087, 7147], + [-19, 18], + [-172, 3], + [-34, 42], + [-61, 17], + [-53, -24], + [-71, 28], + [25, 33], + [-84, 67], + [-42, 51], + [2, 31], + [-68, 91], + [-38, 5], + [-95, 85], + [-34, 42], + [-114, -16], + [-85, 53], + [-63, -30], + [-46, 39], + [-51, -11], + [21, -68], + [-99, -90], + [-50, 0], + [-11, -70], + [-24, -51], + [-63, -27], + [-61, -11], + [-25, -44], + [-88, -54], + [-25, 24], + [-40, -37], + [2, -92], + [-99, -36], + [-62, -2] + ], + [ + [46360, 7113], + [-7, 37], + [-40, 16], + [-36, 46], + [-54, 184], + [-28, 35], + [-69, 3], + [-50, 23], + [-81, 13], + [-36, 57], + [1, 113], + [-28, 121], + [-84, 38], + [6, 64], + [-49, 86], + [-37, 114], + [11, 77], + [-33, 53], + [-309, 205], + [-124, 19], + [-67, -15], + [-15, 60], + [-30, 24], + [-69, 12] + ], + [ + [45132, 8498], + [5, 131], + [28, 16], + [-1, 49], + [-35, 42], + [-14, 70], + [16, 71], + [-42, 44], + [16, 40], + [41, 307], + [12, 37], + [56, 65], + [-49, 48], + [5, 78], + [-32, 50], + [35, 65], + [-8, 56], + [76, 54], + [29, 57], + [42, -11], + [34, -58], + [91, 71], + [55, 65], + [3, 70], + [45, 61], + [82, 60] + ], + [ + [45622, 10036], + [45, -40], + [30, -82], + [78, -46], + [-10, -126], + [-15, -32], + [25, -54], + [-59, -67], + [61, -56], + [34, 17], + [70, -30], + [14, -49], + [33, -28], + [78, 42], + [73, -1], + [202, 58], + [117, 13], + [42, -31], + [62, 23], + [43, -39], + [-23, -64], + [26, -40], + [58, -42], + [73, 6], + [26, -17], + [133, 100], + [82, -42], + [18, 61], + [56, 39], + [24, -25], + [68, 2], + [9, -23], + [86, 12], + [79, -61], + [11, -39], + [-30, -34], + [63, -132], + [70, 2], + [38, -49], + [1, -64], + [21, -88], + [102, 40], + [100, -1], + [35, 49], + [41, 0], + [52, -84], + [156, -18], + [52, -53], + [96, 7], + [143, 29], + [114, -62], + [64, 28], + [57, -29], + [20, -51], + [45, -47], + [84, -66], + [65, -4], + [117, 21], + [36, -11], + [159, 3], + [17, 85], + [57, 20], + [77, 68], + [3, 30], + [63, 20], + [66, -88], + [-7, -22], + [86, -63], + [33, -6], + [37, 52], + [35, -25], + [90, -2], + [1, -46], + [53, -16], + [5, -30], + [66, -31], + [29, 30], + [59, -5], + [35, -58], + [77, -81] + ], + [ + [43034, 8051], + [35, -107], + [-5, -39], + [40, -66], + [-53, -69], + [9, -54], + [-1, -130], + [108, -20], + [-5, -56], + [55, -21], + [50, -37], + [-12, -55], + [56, 1], + [4, 168], + [40, 13], + [-3, 40], + [130, 42], + [26, -3], + [46, 79], + [41, -7], + [40, -50], + [82, 153], + [62, -24] + ], + [ + [43779, 7809], + [34, -20], + [166, -30], + [19, 36], + [39, -67], + [-1, -64], + [-17, -83], + [-66, -142], + [25, -72], + [93, -47], + [-17, -26], + [29, -90], + [-33, -36], + [10, -86] + ], + [ + [44060, 7082], + [-74, -30], + [-28, 3], + [-22, 49], + [-38, -16], + [-14, -42], + [-77, 7], + [-46, 22], + [-48, -18], + [-50, -105], + [31, -33], + [17, -142], + [-34, -79], + [-41, -42], + [-58, -9], + [-20, -55], + [60, -156], + [18, -15], + [-30, -84], + [-38, -6], + [-2, -61], + [33, -56], + [19, -93] + ], + [ + [43618, 6121], + [-20, -19], + [-55, 31], + [-21, 45], + [-42, 39], + [-22, 67], + [-53, 47], + [-43, 4] + ], + [ + [43362, 6335], + [13, 53], + [-24, 40], + [-39, 2], + [-7, 66], + [-27, 17], + [-48, -25], + [-34, 62], + [-40, -34], + [-21, 27], + [-74, -15], + [-36, 14], + [-21, -53], + [-44, -14], + [-39, 24], + [-53, -72], + [-46, -18], + [-16, 36], + [-68, 9] + ], + [ + [42738, 6454], + [15, 105], + [-25, 86], + [24, 42], + [36, -8], + [98, 47], + [11, 88], + [33, 44], + [-75, 30], + [-171, 14], + [-16, 11] + ], + [ + [42668, 6913], + [18, 64], + [-9, 32], + [33, 96], + [83, 35], + [-5, 30], + [70, 88], + [45, 8], + [-16, 54], + [-42, 34], + [-9, 76], + [-40, 8], + [10, 102] + ], + [ + [42806, 7540], + [-3, 58], + [-31, 9], + [19, 156], + [-47, -45], + [-71, 31], + [-16, 49], + [89, 15], + [11, 76], + [39, 54], + [-12, 69], + [13, 41] + ], + [ + [46267, 11146], + [-28, -51], + [9, -127], + [36, -28], + [93, 17], + [-16, -115], + [29, -88], + [-73, -37], + [-31, -39], + [-100, -81], + [12, -69], + [-97, -45], + [-60, -61], + [-49, 0], + [-41, -43], + [-88, -48], + [-61, -127], + [-34, -36], + [-12, -68], + [-134, -64] + ], + [ + [45132, 8498], + [-20, -55], + [7, -47] + ], + [ + [45119, 8396], + [-102, -73], + [-154, -5], + [-152, 11], + [-22, -13], + [-69, 23], + [-55, -41], + [-30, -86], + [-73, 19], + [-25, -63], + [-86, 7], + [-38, -46], + [-24, -59], + [-209, 35], + [-10, -53], + [-91, 17], + [17, 63], + [-106, 15], + [-17, -49], + [-58, 4], + [-24, -50], + [-83, 17], + [-26, -118], + [72, -29], + [36, -35], + [-11, -78] + ], + [ + [43147, 10203], + [440, 249], + [55, 26], + [16, 54], + [99, 68], + [458, -34], + [259, -7], + [568, 4], + [229, 1], + [237, 3], + [280, 167], + [5, 55], + [31, 56], + [47, 40], + [67, 13], + [47, 46], + [-10, 45], + [127, 70], + [-5, 56], + [90, 32], + [80, -1] + ], + [ + [42668, 6913], + [-99, -14], + [-44, -50], + [-31, 46], + [-46, 17], + [-63, -4], + [-2, -82], + [-23, -71], + [-27, 4], + [-42, -76], + [-58, -31], + [-66, 3] + ], + [ + [41558, 6587], + [-16, 80], + [34, 53], + [20, 76], + [-15, 41], + [28, 25], + [-2, 44], + [31, 25], + [23, 65], + [32, 27], + [-45, 74] + ], + [ + [41648, 7097], + [58, 79], + [-20, 27], + [21, 81], + [70, 32], + [82, 19], + [-19, 63], + [47, 21], + [71, 5], + [41, -74], + [61, 50], + [38, -21], + [152, 3], + [27, -36], + [37, 10], + [92, -16], + [13, 28], + [49, 13], + [115, -15], + [23, 59], + [63, 17], + [6, 91], + [131, 7] + ], + [ + [41212, 2321], + [26, -9], + [13, -67], + [39, -5], + [21, 53], + [37, 31], + [14, -16], + [78, -8], + [29, -27], + [-13, -68], + [39, -27], + [5, -60], + [17, -32], + [59, 3], + [72, -59], + [39, -72] + ], + [ + [41687, 1958], + [-4, -30], + [26, -47], + [-20, -37], + [-60, -8], + [-6, -51], + [37, -60], + [7, -75], + [54, -3], + [10, -45], + [30, -59], + [30, -22], + [2, -40], + [-24, -47], + [-6, -50], + [53, -59] + ], + [ + [41599, 952], + [-27, -6], + [-59, 27], + [-31, -8], + [-16, -73], + [-28, 53], + [-76, 113], + [-87, 153], + [-39, 48], + [-41, 28], + [-66, 26], + [-45, 64], + [-29, 63], + [-20, -30], + [-33, 11], + [-31, 35], + [-24, 89], + [-67, 52], + [-51, 15], + [-6, 22], + [37, 45], + [12, 60], + [64, -48], + [47, 5], + [29, 50], + [0, 71], + [44, 47], + [22, 106], + [37, 7], + [27, 47], + [34, -44], + [21, 22], + [-55, 62], + [-36, 62], + [-39, 12], + [-17, 92], + [49, -1], + [42, 36], + [40, 59], + [31, -3] + ], + [ + [48852, 13059], + [52, -67], + [16, -66], + [-31, -21], + [-95, 13], + [-42, 57], + [100, 84] + ], + [ + [54891, 13398], + [-64, -83] + ], + [ + [54827, 13315], + [-41, 37], + [-82, -46], + [-112, -1], + [-20, 57], + [50, 18], + [30, 57], + [115, -3], + [124, -36] + ], + [ + [55058, 13660], + [177, -15], + [69, -28], + [-42, -95], + [-71, -53], + [-126, 27], + [-93, 39], + [-26, 42], + [92, 6], + [20, 77] + ], + [ + [50326, 13841], + [-34, -62], + [-91, 2], + [40, 54], + [85, 6] + ], + [ + [51996, 14382], + [102, 0], + [8, -69], + [-132, 5], + [22, 64] + ], + [ + [54829, 13312], + [-3, -31], + [-101, -161], + [95, -15], + [12, -43], + [-40, -114], + [12, -64], + [82, -46], + [-29, -54], + [118, -48], + [-7, -40], + [69, -29], + [2, -135], + [19, -162], + [39, -13], + [52, -67], + [-7, -53], + [-75, -8], + [-33, -33], + [-79, -16], + [-113, -58], + [-70, -16], + [-85, -52], + [4, -91], + [-96, -8], + [-47, -63], + [15, -101], + [-28, -82], + [-79, 26], + [-113, -2], + [-58, -57], + [-98, -18], + [-87, -45], + [-101, 11], + [-67, -76], + [141, -211], + [11, -93], + [-5, -192], + [-23, -222], + [-3, -108], + [-135, -73], + [-13, -54], + [-87, -8], + [30, -42], + [82, -31], + [32, -60], + [3, -82], + [-24, -39], + [-3, -100], + [50, -28], + [13, -53], + [-5, -121], + [68, -60], + [-3, -66], + [-58, -10], + [-22, -58], + [-70, -56], + [8, -83], + [-68, -82], + [16, -71], + [55, -25], + [88, 3], + [84, -34], + [49, -4], + [6, -37], + [60, 8], + [58, -37], + [26, 15] + ], + [ + [52142, 5108], + [-6, -32], + [-51, -24], + [-38, 0], + [-30, -27], + [-63, 16], + [-64, -46], + [-36, 26], + [-17, -23], + [-70, -7], + [-38, -185], + [-62, -22], + [-45, -125], + [-28, -37], + [-29, -115], + [-34, -9], + [-82, -91], + [-29, -45], + [-34, 2], + [-48, -25], + [-102, -8], + [-88, 47], + [-49, -10], + [-26, 25], + [-36, -20], + [-27, 74], + [-37, 42] + ], + [ + [50626, 6419], + [22, 60], + [-7, 69], + [28, 84], + [47, 33], + [-8, 34], + [64, 40], + [-4, 87], + [-39, 31], + [-66, 4], + [-33, 39], + [-105, 25], + [-23, 67], + [-10, 95], + [76, 108], + [41, 70], + [53, 31], + [-40, 68], + [-8, 44], + [-129, -18], + [-32, 59], + [-40, 114], + [-64, 2], + [-12, 78], + [-117, 35], + [-111, -6], + [-62, -19], + [-169, -5], + [-13, 45], + [15, 90], + [32, 54], + [-17, 46], + [-91, 163] + ], + [ + [49854, 8593], + [13, 35], + [63, 75], + [23, 91], + [88, 104], + [20, 62], + [-14, 28], + [13, 89], + [-92, 90], + [36, 36], + [8, 70], + [114, 87], + [1, 88], + [-28, 93], + [20, 32], + [-21, 88], + [-47, 21], + [-58, -23], + [-51, 58], + [-106, -6], + [-16, 81], + [60, 67], + [-13, 73], + [-52, 86], + [-66, 41], + [-73, 12], + [-38, 93], + [44, 53], + [-93, 146], + [46, 63], + [-55, 94], + [-167, 131], + [35, 35], + [0, 101], + [-42, 30], + [-67, 113], + [118, 17], + [3, 59], + [63, 79], + [-7, 119], + [42, 22], + [-49, 70], + [-48, 104], + [8, 40], + [-99, 21], + [25, 67], + [-54, 31], + [-15, -62], + [-129, -31], + [-61, 37], + [-154, 19], + [-51, 57], + [-20, 63], + [-75, 13], + [-22, 89], + [147, 135], + [117, 90], + [71, 23], + [31, 63], + [-56, 170], + [-130, 37], + [-118, 117], + [23, 73], + [75, 2], + [61, 37], + [50, 94], + [-115, 53], + [-100, -2], + [-112, 67], + [-33, 67] + ], + [ + [48725, 12770], + [182, -9], + [83, -59], + [136, -46], + [5, -20], + [111, -84], + [20, -38], + [75, -25], + [171, 29], + [113, -23], + [-57, -76], + [-2, -53], + [-135, -56], + [14, -80], + [-23, -18], + [38, -100], + [46, -1], + [40, 70], + [51, -39], + [-26, -183], + [-59, -58], + [32, -73], + [63, 28], + [-39, 62], + [80, 2], + [46, 25], + [31, 66], + [-38, 73], + [-36, 126], + [-48, 96], + [45, 47], + [7, 48], + [47, 50], + [-59, 99], + [-134, 35], + [-84, 148], + [-171, 27], + [-75, 30], + [-28, 35], + [18, 47], + [3, 136], + [-54, 45], + [21, 52], + [-62, 42], + [56, 53], + [-25, 54], + [157, 8], + [103, 25], + [307, 4], + [242, 45], + [35, -21], + [95, 6], + [22, 38], + [231, 31], + [40, -39], + [-129, -95], + [149, 21], + [57, 71], + [-142, 144], + [-19, 49], + [-125, 20], + [-10, 24], + [142, 62], + [-49, 39], + [-117, 14], + [69, 57], + [114, -35], + [134, 120], + [-104, 42], + [69, 22], + [119, -25], + [131, 97], + [109, 61], + [67, -13], + [151, 63], + [122, 1], + [136, 44], + [121, 11], + [235, 48], + [-66, 74], + [90, 39], + [113, 1], + [54, -20], + [154, 31], + [88, -5], + [84, -65], + [174, -11], + [177, 56], + [87, 57], + [159, -47], + [32, -85], + [59, 11], + [-72, 134], + [-98, 32], + [60, 44], + [291, 13], + [42, 75], + [-47, 81], + [75, 49], + [5, 47], + [243, 162], + [121, 58], + [135, 27], + [239, -64], + [115, -1], + [59, -65], + [-72, -7], + [-40, -48], + [-119, -37], + [28, -40], + [145, 16], + [136, -32], + [130, -5], + [7, -48], + [-74, -70], + [-63, -96], + [252, 23], + [82, 63], + [226, 15], + [94, -23], + [68, 27], + [80, -12], + [145, -21], + [23, -26], + [195, -118], + [-17, -27], + [2, -80], + [143, 47], + [15, -103], + [63, 2], + [0, -68], + [-94, -95], + [66, -43], + [-13, -51], + [-173, -144], + [-114, -27], + [-65, -89], + [-72, 12], + [-106, -62], + [-111, -16], + [31, -21], + [-90, -53], + [-7, -44], + [-69, -50], + [-84, -15], + [-63, -47], + [-105, -109], + [-165, -25], + [-72, -59], + [-27, -57], + [-100, 0], + [-70, -89], + [-11, -91], + [61, 10], + [11, 83], + [37, 31], + [259, -12], + [85, 56], + [77, 10], + [193, 48], + [90, 36], + [56, 47], + [86, 25] + ], + [ + [53229, 15657], + [138, -39], + [-56, -63], + [-28, -95], + [144, 71], + [187, -49], + [57, -65], + [109, -33], + [-16, -130], + [-64, -48], + [-100, -2], + [-267, -56], + [-302, 0], + [-251, -95], + [-101, 3], + [8, 70], + [90, 71], + [46, 67], + [18, 83], + [194, 225], + [194, 85] + ], + [ + [51255, 15929], + [196, -23], + [167, -50], + [-138, -82], + [-217, -10], + [-4, 51], + [-126, 11], + [-31, 52], + [49, 41], + [104, 10] + ], + [ + [52308, 15962], + [176, -67], + [156, 18], + [96, -52], + [95, -106], + [-93, -36], + [-2, -101], + [-28, -68], + [57, -92], + [-82, -48], + [-79, -7], + [-278, 7], + [-154, 71], + [-120, -2], + [-237, 23], + [-29, 53], + [-88, 63], + [26, 53], + [-138, 41], + [71, 88], + [120, 12], + [-70, 49], + [109, 70], + [269, 5], + [223, 26] + ], + [ + [48924, 16264], + [116, -23], + [-92, -42], + [-166, 17], + [142, 48] + ], + [ + [51051, 16399], + [144, -53], + [-105, -29], + [-163, 26], + [-3, 36], + [127, 20] + ], + [ + [51970, 16417], + [68, -16], + [119, -114], + [244, -114], + [-118, -33], + [37, -124], + [-77, -23], + [-258, -10], + [-222, -27], + [-52, -34], + [-147, -23], + [-179, 70], + [-17, 34], + [-149, -1], + [0, 35], + [180, 49], + [99, 94], + [-113, 34], + [99, 70], + [244, 28], + [242, 105] + ], + [ + [46170, 6388], + [2, -73], + [41, -116], + [64, 1], + [79, -113], + [65, 17], + [33, -50], + [29, 30], + [42, -27], + [75, -7], + [19, -76], + [98, -38], + [46, 19], + [18, -50], + [83, -100], + [1, -47] + ], + [ + [46865, 5758], + [-19, -24], + [-72, -8], + [21, -48], + [-16, -44], + [-60, 9], + [-25, -41], + [-37, -17], + [-146, -32], + [-143, -58], + [-35, 29], + [-17, -35], + [-46, 20], + [-56, -52], + [7, -65], + [-49, 22], + [-45, -6], + [-61, -32], + [-101, -17], + [-95, -36] + ], + [ + [45616, 6135], + [2, 50], + [23, 18], + [45, 86], + [65, 11], + [38, 27], + [33, -21], + [70, 21], + [55, -51], + [62, -8], + [37, 102], + [51, 46], + [50, -1], + [23, -27] + ], + [ + [41044, 4443], + [13, -39], + [31, -18], + [63, 19] + ], + [ + [41151, 4405], + [23, -14], + [9, -66], + [-56, -45], + [20, -37], + [16, -85], + [-6, -31] + ], + [ + [40595, 4021], + [-37, 16], + [-13, 66], + [-28, 7], + [-54, -20], + [-6, 24], + [-73, 5], + [-8, 57], + [17, 53], + [-36, 65], + [52, 14], + [-14, 62] + ], + [ + [40513, 4576], + [95, 43], + [24, -73], + [61, 8], + [81, 27], + [27, -57], + [65, -42], + [59, -15], + [49, -63], + [18, 34], + [29, -24], + [23, 29] + ], + [ + [39215, 7413], + [-1, 0], + [1, 0] + ], + [ + [39215, 7413], + [1, 0], + [18, 19], + [-24, 54], + [9, 53], + [-17, 34], + [82, -4], + [7, 61], + [47, -22], + [45, 14], + [32, 73], + [107, -22], + [-4, -29] + ], + [ + [39469, 7766], + [-57, 2], + [-92, 77], + [15, 126], + [-19, 0], + [-36, -4], + [-68, -58], + [-33, 38], + [125, 146], + [22, -3], + [35, 74], + [76, 58], + [14, 26] + ], + [ + [40648, 8192], + [-13, -106], + [-20, -37], + [-55, -22], + [26, -77], + [-37, -186], + [56, -87], + [-2, -72], + [23, -40], + [-10, -95], + [-22, -56], + [-40, -21], + [-41, 9], + [-29, -74] + ], + [ + [40484, 7328], + [-83, 28], + [-40, -24], + [-48, 25], + [-38, 75], + [-74, -23], + [-32, 27], + [-60, -38], + [-17, -81], + [-58, 28], + [-18, 56], + [-62, 48], + [-19, -45], + [-64, 26], + [5, -48], + [-32, -83], + [-74, -2], + [-11, -45], + [-34, -33], + [-19, -47], + [-54, -14], + [-37, 26], + [-15, -50], + [9, -63], + [-43, -10] + ], + [ + [39566, 7061], + [-59, 2], + [-52, 41], + [-14, 42], + [-48, 55], + [-137, 28], + [-19, 44], + [-84, 15] + ], + [ + [39153, 7288], + [0, 2], + [0, 0], + [31, 101], + [31, 22] + ], + [ + [41501, 4962], + [-13, -51], + [10, -161], + [-32, -22], + [20, -85], + [50, -36], + [0, -31], + [41, -20], + [41, -53], + [-22, -26], + [-18, -81] + ], + [ + [41578, 4396], + [-118, 5], + [-35, -18], + [-38, 19], + [-4, 39], + [-66, 18], + [-14, -47], + [-38, 44], + [-40, 8], + [-74, -59] + ], + [ + [41044, 4443], + [-3, 43], + [62, 78], + [-19, 54], + [-37, 55], + [19, 65], + [-6, 101] + ], + [ + [41060, 4839], + [10, 20], + [69, -5], + [9, -41], + [73, 64], + [-33, 86], + [54, 20], + [-18, 51], + [35, 28] + ], + [ + [41259, 5062], + [23, 1], + [32, -74], + [67, 13], + [5, 38], + [34, 27], + [27, -18], + [17, -58], + [37, -29] + ], + [ + [61214, 8537], + [76, 98], + [-1, 81], + [43, 47], + [12, 43], + [-6, 103], + [-37, 30], + [-4, 56], + [32, 55], + [10, 75], + [41, 80], + [-3, 67], + [91, 36], + [41, 94], + [101, 3], + [84, -48], + [88, -30], + [42, 11], + [52, 85], + [-48, 81], + [60, 52], + [25, -33], + [107, -6], + [47, -24], + [92, 73], + [56, -36], + [-15, -68], + [113, -59], + [-3, 57], + [111, 15], + [41, -11], + [34, 48], + [60, 18], + [84, -37], + [-13, 52], + [87, 68], + [-48, 135], + [50, 96], + [90, 13], + [53, 66], + [13, 73], + [-7, 87], + [166, 37], + [-28, 68], + [63, 54], + [82, -33], + [161, 19], + [35, -46], + [127, 19], + [47, -27], + [23, -54], + [62, 23], + [49, 52], + [79, 22], + [40, -29], + [49, 11], + [-30, 52], + [22, 38] + ], + [ + [64542, 8383], + [-87, -120], + [-64, -47], + [-38, -57], + [-110, -112], + [-14, -47], + [-119, -28], + [48, 152], + [-90, -6], + [9, 45], + [-13, 53], + [38, 100], + [31, 23], + [25, 83], + [-12, 63], + [-59, -29], + [-30, -58], + [-58, -19], + [-30, 88], + [-69, 19], + [-99, -49], + [-42, 12], + [-42, -38], + [-104, 23], + [-92, -59], + [-16, -37], + [-48, -12], + [-25, -130], + [-81, -75], + [-39, -63], + [-3, -44], + [-208, -194], + [-39, -75], + [-35, -19], + [15, -75], + [-50, -2], + [6, -74], + [-34, -78], + [65, -37], + [42, 53], + [28, -32], + [41, 5], + [38, -53], + [-26, -64], + [-75, -18], + [-36, 30], + [-34, -53], + [-68, -9], + [-19, 41], + [-65, 26], + [-28, -54], + [-63, -14], + [-23, -62], + [-65, 14], + [-26, 30], + [-50, -19], + [-15, -36], + [-69, -18], + [-63, 4], + [-42, 87], + [60, 39], + [55, -14], + [68, 9], + [-21, 47], + [-44, 31], + [-20, 48], + [-48, 60], + [-124, -31], + [-55, 36], + [-164, 58], + [-47, -16], + [-47, -45], + [14, -51], + [-85, -13], + [5, -38], + [-31, -50], + [-28, 6], + [-5, 51], + [-43, 13], + [-54, -9], + [-77, -57], + [-33, 35], + [-64, 15] + ], + [ + [43362, 6335], + [26, -44], + [-35, -38], + [-49, 36], + [-61, -37], + [-24, -34], + [-36, 16], + [-33, -28], + [7, -78], + [-55, -26], + [-49, -108] + ], + [ + [42623, 6070], + [-15, 71], + [-34, 22], + [13, 64], + [-33, 26], + [-21, 48], + [49, 36], + [-5, 70], + [69, 26], + [92, 21] + ], + [ + [42685, 5555], + [10, -78], + [31, -72], + [-18, -38], + [-44, -43], + [-68, -26], + [-30, -65] + ], + [ + [42566, 5233], + [-12, -21], + [-84, -20], + [-14, 34], + [-60, 1], + [-46, -27], + [-12, -28], + [27, -47], + [-34, -22], + [-74, 13], + [-39, 28], + [-8, 48], + [-70, 47], + [-23, -15], + [-37, 22], + [-11, -82], + [-110, -20], + [-52, 17] + ], + [ + [41907, 5161], + [27, 66], + [-20, 37], + [63, 45], + [-40, 50], + [15, 81], + [24, 34], + [-59, 63], + [10, 46] + ], + [ + [41927, 5583], + [29, -28], + [33, 18], + [23, -24], + [94, 78], + [60, -55], + [47, -7], + [6, -28], + [47, -53], + [45, -28], + [84, -22], + [29, 117], + [37, 46], + [35, 16], + [-2, 67], + [34, 38], + [15, -62], + [47, -7], + [26, 24] + ], + [ + [41013, 6037], + [50, -52], + [4, -63], + [-58, -45], + [-35, 74], + [2, 50], + [37, 36] + ], + [ + [41148, 6372], + [21, -28] + ], + [ + [41169, 6344], + [-22, -72], + [32, -63], + [-9, -45], + [23, -45], + [10, -64], + [47, -29], + [35, 9], + [18, -41], + [44, -33], + [103, 24], + [30, -78], + [-1, -48], + [31, -79] + ], + [ + [41510, 5780], + [-69, -90], + [-10, -42], + [-51, -12], + [-57, -140], + [-76, -14], + [-31, -147] + ], + [ + [41216, 5335], + [-2, 1], + [-1, 0], + [-1, 1], + [-13, 9], + [-29, 59], + [14, 80], + [-71, 40], + [-32, 57], + [-53, -56], + [-39, 48], + [-46, 7] + ], + [ + [40593, 5745], + [-17, 23], + [12, 85], + [-1, 109], + [-36, 70] + ], + [ + [40551, 6032], + [32, 58], + [-1, 51], + [29, 32], + [6, 54], + [33, 23], + [45, -43], + [61, 11], + [111, 70], + [56, -11], + [3, 73], + [83, 47], + [12, 40], + [70, -29], + [14, -42], + [43, 6] + ], + [ + [39469, 10399], + [-62, 97], + [-6, 63], + [111, 154], + [59, 67], + [15, 63], + [-64, 51], + [-68, 115], + [-127, 49], + [-40, 145], + [50, 77], + [17, 57], + [-70, 13], + [155, 87], + [11, 75], + [127, 45], + [71, 84], + [30, -31], + [79, 18], + [-11, 83], + [120, -45], + [36, 48], + [64, 2], + [1, 59], + [86, -46], + [111, -39], + [-1, -37], + [-50, -33], + [-125, 29], + [64, -64], + [185, -32], + [-23, -52], + [111, 14], + [245, -49], + [52, 13], + [141, -51], + [101, -71], + [159, -96], + [135, -129], + [50, -1], + [177, -140], + [53, 3], + [149, -98], + [72, -69], + [-14, -31], + [30, -60], + [-7, -66], + [51, -22], + [-1, -83], + [-49, -101], + [-99, -121], + [-106, -80], + [-99, -29], + [-67, -34], + [-158, -18], + [-103, 19], + [-104, 54], + [-118, 16], + [-222, 58], + [-90, 73], + [-83, -22], + [-16, 44], + [-82, 15], + [-47, 49], + [-36, -36], + [-98, 74], + [-43, 74], + [-40, -30], + [-1, -54], + [74, -78], + [49, -4], + [24, -15], + [-9, -13], + [-4, 2], + [1, 1], + [0, 2], + [-1, 2], + [-1, 1], + [5, -4], + [2, 0], + [-4, 8], + [-23, 4], + [-8, -25], + [-1, 0], + [-4, 0], + [-1, -1], + [-36, 9], + [-8, -5] + ], + [ + [43187, 11594], + [38, -6], + [111, -70], + [45, -57], + [-91, -129], + [-94, -44], + [-114, -21], + [-66, 69], + [-1, 95], + [28, 82], + [67, 63], + [77, 18] + ], + [ + [46130, 11439], + [-30, -48], + [32, -58], + [102, -21], + [76, -117], + [-43, -49] + ], + [ + [42258, 10320], + [49, 114], + [-22, 43], + [31, 50], + [-40, 68], + [-102, 79], + [71, 205], + [-5, 50], + [16, 173], + [-132, 99], + [-13, 51], + [119, -56], + [154, 8], + [111, -11], + [79, -28], + [28, -54], + [95, -84], + [-2, -40], + [30, -88], + [-73, 3], + [-177, -41], + [-9, -55], + [-63, -37], + [-5, -70], + [118, -65], + [43, -107], + [42, -33], + [102, 16], + [16, -18], + [151, 42], + [54, 36], + [5, 136], + [30, 38], + [-19, 62], + [31, 20], + [120, 23], + [51, 59], + [53, 10], + [139, 80], + [172, 118], + [138, 35], + [-4, 24], + [91, 22], + [50, -32], + [22, -54], + [63, 49], + [-49, 87], + [168, 93], + [44, 0], + [48, -37], + [-25, -80], + [39, -82], + [-95, -11], + [-38, -58], + [90, 8], + [60, -14], + [36, 38], + [46, -6], + [33, -45], + [67, 96], + [73, 54], + [54, 1], + [65, 38], + [83, -22], + [167, -23], + [60, 82], + [230, 99], + [89, -66], + [24, -57], + [-54, -4], + [-3, -114], + [97, -26], + [53, 72], + [-31, 47], + [134, 38], + [72, 74], + [14, 38], + [-16, 61], + [-46, 2], + [-2, 51], + [-78, 102], + [-3, 47], + [100, 14], + [-2, 63], + [31, 19], + [106, -35], + [85, -14], + [166, -9], + [142, -35], + [145, -54], + [122, -84], + [-44, -19], + [6, -19], + [-3, -27], + [4, -4] + ], + [ + [45054, 11982], + [104, -102], + [161, -111], + [9, -86], + [-97, -25], + [-73, 25], + [-27, 67], + [-82, -3], + [-74, 76], + [26, 139], + [53, 20] + ], + [ + [41927, 5583], + [-1, 69], + [-43, -24], + [-67, 34], + [-12, 37] + ], + [ + [41804, 5699], + [13, 6], + [50, 114], + [-9, 82], + [32, 55], + [31, 20], + [9, 48], + [41, 28], + [5, 45], + [41, 46], + [-36, 18], + [-23, 66] + ], + [ + [42345, 631], + [-35, 1], + [-44, -25], + [-9, -25], + [-49, -28], + [-41, 28], + [11, 50], + [-43, 48], + [-27, 12] + ], + [ + [42298, 1034], + [54, 12], + [33, -14], + [14, -34] + ], + [ + [40484, 7328], + [47, -47], + [27, -52], + [63, 7], + [127, -79], + [26, -59], + [25, -3] + ], + [ + [40799, 7095], + [-58, -15], + [-35, -36], + [-69, 15], + [-39, -29], + [-12, -40], + [-47, -39], + [-46, 24], + [-20, -71], + [-95, 55], + [-116, -61], + [20, -31], + [-15, -101], + [-44, -22], + [-5, -47], + [-56, -62], + [-55, -1], + [-23, -45], + [-70, -33], + [1, -24], + [-94, -37], + [-30, -69], + [-121, 21] + ], + [ + [39770, 6447], + [-32, -10], + [-26, 38], + [22, 88], + [-64, 49], + [34, 76], + [-29, 40], + [8, 101], + [-46, -1], + [-82, 69], + [-33, 12], + [5, 63], + [39, 26], + [0, 63] + ], + [ + [48602, 4958], + [-57, 71], + [-152, 159], + [-34, 41], + [-30, 82], + [61, -4], + [18, 31], + [13, 91], + [-77, -53], + [-51, 12], + [-1, -34], + [-100, -58] + ], + [ + [48192, 5296], + [-2, 164], + [20, 55], + [-57, 92], + [-36, 7], + [16, 49], + [-37, 99], + [-3, 47], + [25, 50], + [-28, 13], + [-12, 57], + [45, 31], + [-8, 39], + [43, 81], + [92, 43], + [33, -10], + [18, 37], + [-32, 35], + [-13, 70], + [-37, 7], + [75, 81], + [0, 92], + [-25, 130] + ], + [ + [48269, 6565], + [128, -27], + [232, -10], + [65, 6], + [13, -25], + [58, -23], + [104, -22], + [84, -61], + [100, -170], + [61, 9], + [105, 34], + [75, -108], + [35, -1], + [123, 45], + [75, 9], + [11, 38], + [51, 17], + [23, -43], + [-27, -83], + [50, -154], + [-14, -68], + [61, -1], + [69, 130], + [33, 14], + [25, -24], + [34, 22] + ], + [ + [48192, 5296], + [-57, -21], + [11, -46], + [-78, -73], + [-45, 10], + [-60, -96], + [-15, -49], + [-94, 77], + [-48, -37], + [-47, -11], + [-29, 18], + [19, 89], + [24, 37], + [41, -9], + [11, 79], + [-87, -41], + [-39, 15], + [-19, 44], + [-106, 21], + [-64, 35], + [-59, 6], + [-4, -45], + [-42, -13], + [-32, 31], + [-27, -30], + [-26, 43], + [4, 47], + [26, 26], + [-6, 79], + [-38, 120], + [3, 79], + [-36, 93], + [-57, -10] + ], + [ + [47216, 5764], + [-7, 40], + [43, 42], + [-24, 163], + [36, -3], + [28, 68], + [-8, 56], + [26, 46], + [-9, 59], + [47, 86], + [29, -7], + [36, 31], + [10, 55], + [-14, 42], + [-75, 99], + [-18, 62], + [-44, -5], + [-30, -43], + [-44, 67], + [54, 51], + [-17, 69], + [-24, 33], + [10, 123], + [46, 128], + [16, 68], + [78, -63], + [-9, -63], + [12, -78], + [112, 25], + [51, -38], + [68, 4], + [55, -17], + [61, 72], + [189, -9], + [110, 103], + [81, 85] + ], + [ + [48091, 7115], + [34, -55], + [-58, -54], + [37, -40], + [-26, -50], + [80, -59], + [13, -94], + [44, -99], + [54, -99] + ], + [ + [40710, 5094], + [7, -27], + [47, -17], + [40, -58], + [35, 8], + [12, -43], + [70, -13], + [34, 13], + [53, -11], + [0, -56], + [37, -12], + [15, -39] + ], + [ + [45255, 4421], + [12, -38], + [65, -50], + [-25, -33], + [39, -35], + [58, -1], + [18, -61], + [54, -22], + [42, 1], + [13, -74], + [-24, -174], + [-84, -50], + [-34, -10], + [-89, 7], + [-54, 76], + [-44, -115], + [-57, -28], + [1, 39], + [-123, 40], + [-22, 53], + [-32, -4], + [-10, 101], + [-71, -3], + [-78, 26], + [-3, -71], + [-59, -25], + [-45, 82], + [-25, -16], + [-61, 9], + [0, -44], + [-50, 38], + [-15, -57], + [-40, -3], + [-6, -60], + [-90, -82], + [-58, 36], + [-56, 71], + [-66, 25], + [-10, -34], + [14, -72], + [-42, -39], + [-15, 33], + [9, 69], + [-58, 95], + [-7, 40], + [-72, 35], + [-25, 36], + [-8, 57], + [-37, 34], + [-43, 5], + [-36, -22], + [-29, 13], + [-49, -15], + [-30, 78], + [-99, 10], + [-18, -33], + [-63, -49], + [-13, 70], + [-18, 15], + [-71, -4], + [-10, 28] + ], + [ + [43506, 4319], + [5, 19] + ], + [ + [43511, 4338], + [87, 92], + [24, 46], + [-7, 90], + [30, 54], + [-5, 70], + [26, 11], + [11, 75], + [65, 61], + [0, 72], + [16, 51], + [-14, 82], + [22, 41], + [7, 58], + [25, 51], + [13, 77], + [-17, 27], + [7, 82], + [30, 22] + ], + [ + [43831, 5400], + [82, -39], + [13, -57], + [62, -38] + ], + [ + [42566, 5233], + [37, 7], + [86, -152], + [-2, -53], + [35, -1], + [46, -51], + [9, -85], + [-10, -97], + [13, -45], + [-34, -71] + ], + [ + [42746, 4685], + [-29, 37], + [-58, -26], + [-64, -59], + [-5, -49], + [-47, 46], + [-37, -42], + [-73, -3], + [-13, -29], + [-45, 59], + [-46, 12], + [-9, -42], + [-44, -46], + [-65, 33], + [-28, 29], + [-66, -37], + [-34, 40], + [-32, -23] + ], + [ + [42051, 4585], + [1, 41], + [29, 73], + [-55, 93], + [-74, 86], + [2, 29], + [-53, 97], + [-40, 55], + [1, 93] + ], + [ + [41862, 5152], + [45, 9] + ], + [ + [44178, 6214], + [-10, 52], + [-48, 52], + [-40, 12], + [-3, 69], + [38, 5], + [50, 114], + [-5, 86], + [-25, 9], + [16, 64], + [-37, 39], + [25, 95], + [-14, 66], + [-57, 106], + [12, 19], + [-20, 80] + ], + [ + [45119, 8396], + [20, -49], + [-36, -95], + [13, -124], + [24, -49], + [-1, -65], + [-18, -79], + [-36, -91], + [3, -40], + [-30, -110], + [-55, -54], + [-28, -48], + [-26, -100], + [47, -69], + [47, -17], + [32, -46], + [10, -76], + [-20, -60], + [58, -66], + [12, -53], + [-126, -116], + [-40, -70], + [17, -64], + [30, -8], + [5, -53], + [-58, -65], + [-18, 43], + [-59, 10], + [-35, -69], + [-14, -77], + [28, -40], + [-17, -85], + [-68, -77], + [-44, 20], + [-19, -49], + [34, -67], + [-11, -35], + [6, -102] + ], + [ + [60133, 2540], + [-41, -54], + [-44, -82], + [-48, -156], + [-2, -64], + [-32, -42], + [-11, -77], + [-64, -123], + [-16, -57], + [-62, -81], + [-41, -96], + [-64, -73], + [-7, -43], + [-23, -19], + [-28, -78], + [-21, -21], + [-51, -134], + [-43, -27], + [-11, -43], + [-33, -54], + [-3, -57], + [-32, -50], + [8, -27], + [-39, -64], + [-12, 2], + [-19, -80], + [-55, -47], + [-87, -104], + [-39, -28], + [-41, -65], + [-46, -34], + [-22, 12], + [-84, -69], + [-32, 62], + [-24, -41], + [-29, 49], + [-31, -2], + [-17, 34], + [-29, -23], + [1, 78], + [16, 47], + [-12, 27], + [-84, -55], + [36, 89], + [-57, -1], + [1, -54], + [-48, -75], + [-31, -91], + [-17, -10], + [-9, -65], + [-69, 20], + [1, -62], + [-38, -64], + [-16, 76], + [12, 36], + [-18, 31], + [3, 45], + [46, 23], + [45, 0], + [33, 114], + [19, 128], + [-14, 59], + [-5, 92], + [17, 105], + [-36, 251], + [-26, 51], + [33, 49], + [62, 9], + [41, 64], + [27, 80], + [43, -30], + [24, -115], + [-14, -88], + [39, -52], + [46, -24], + [26, 55], + [29, 150], + [23, -15], + [30, 44], + [-8, 66], + [23, 91], + [50, 59], + [-3, 72], + [37, 44], + [14, 45], + [-6, 45], + [39, 47], + [-11, 78], + [32, 83] + ], + [ + [39770, 6447], + [-34, -93], + [45, -41], + [-5, -61], + [39, -12], + [16, -49], + [32, 0], + [-6, -64], + [12, -41], + [-27, -33], + [12, -94] + ], + [ + [39854, 5959], + [-89, -21], + [-13, -30] + ], + [ + [39752, 5908], + [-21, -12], + [-101, 112], + [-57, 8], + [-92, -76], + [-20, 25], + [12, 82], + [-76, 28], + [-57, -27], + [-19, 50], + [-61, -10], + [-25, 42], + [13, 50], + [-19, 105], + [-43, 80], + [7, 27], + [-42, 52], + [5, 77], + [17, 80], + [-63, 53], + [-22, 34], + [3, 70], + [27, 54], + [43, -1], + [-57, 189], + [14, 54], + [-18, 151], + [53, 83] + ], + [ + [41503, 3424], + [14, 25], + [58, -18], + [74, 41], + [28, 91], + [54, 76], + [5, 40] + ], + [ + [41736, 3679], + [19, -44], + [29, -21], + [-5, -37], + [56, -33], + [44, -48], + [-22, -138], + [2, -99], + [35, 7], + [31, -25], + [58, -75], + [10, -32], + [-37, -120], + [-62, -21], + [-37, -38], + [11, -49], + [-23, -104], + [68, -10], + [66, -65], + [7, -41], + [45, -114], + [26, 24], + [23, -55], + [87, 25] + ], + [ + [41789, 1968], + [-49, 3], + [-12, -27], + [-41, 14] + ], + [ + [41212, 2321], + [33, 14], + [49, 55], + [37, -8], + [-18, 108], + [-48, -35], + [-72, -32], + [-62, 0], + [19, 54], + [-8, 110], + [15, 37], + [74, 30], + [14, 70], + [54, -6], + [48, 14], + [65, -18], + [18, 73], + [37, 106], + [-31, 84], + [0, 40], + [-31, 8], + [21, 107], + [36, -20], + [16, 22], + [-62, 56], + [86, 114], + [-7, 77], + [8, 43] + ], + [ + [41862, 5152], + [-128, -18], + [-17, -110], + [-46, -4], + [-55, 32], + [-48, -22], + [-7, -38], + [-60, -30] + ], + [ + [41259, 5062], + [6, 59], + [-19, 44], + [-13, 85], + [7, 51], + [-24, 34] + ], + [ + [41510, 5780], + [49, -2], + [19, -53], + [51, 3], + [23, 22], + [39, -12], + [47, -42], + [66, 3] + ], + [ + [61598, 1098], + [17, -20], + [-52, -56], + [-11, 43], + [46, 33] + ], + [ + [61474, 1356], + [41, -65], + [-17, -34], + [-32, -4], + [-35, -46], + [-31, -91], + [-38, -36], + [-3, -48], + [-24, -2], + [-6, 45], + [64, 90], + [64, 172], + [17, 19] + ], + [ + [61968, 1781], + [19, -27], + [-22, -68], + [-25, 5], + [-102, -90], + [-22, -46], + [-36, -23], + [-34, 2], + [-3, -41], + [-49, -56], + [-25, -59], + [-23, -4], + [-17, -45], + [-22, 20], + [30, 57], + [27, 20], + [16, 74], + [25, 20], + [30, 79], + [86, 74], + [52, -7], + [29, 32], + [40, 77], + [26, 6] + ], + [ + [62299, 2052], + [-62, -82], + [-38, -77], + [-29, -20], + [-37, -63], + [-26, 28], + [27, 64], + [22, 5], + [49, 93], + [25, 6], + [31, 50], + [38, -4] + ], + [ + [63109, 3453], + [-1, -126], + [-40, -20], + [5, 57], + [36, 89] + ], + [ + [63334, 3918], + [20, -11], + [4, -96], + [-23, -17], + [-31, -92], + [-52, -25], + [-32, -48], + [-37, -3], + [3, 67], + [27, 51], + [47, 13], + [21, 32], + [19, 83], + [34, 46] + ], + [ + [63418, 3957], + [5, -40], + [-33, -58], + [-28, 21], + [2, 38], + [54, 39] + ], + [ + [60822, 5416], + [54, -141], + [-17, -39], + [5, -92], + [48, -165], + [12, -62], + [-37, 4], + [29, -137], + [23, -19], + [-3, -104], + [-39, -97], + [9, -26], + [-14, -69], + [43, -152], + [-20, -98], + [46, -21], + [6, -90], + [13, -27], + [53, -381], + [32, -90], + [23, -108], + [3, -60], + [19, -44], + [8, -103], + [-24, -16], + [-84, 51], + [-44, 10], + [-80, -70], + [-19, -53], + [6, -66], + [-44, -143], + [-38, -200], + [-7, -67], + [8, -79], + [28, -88], + [45, -56], + [14, -41], + [2, -75], + [17, -75], + [-9, -29], + [24, -45], + [54, 45], + [16, -211], + [-27, -43], + [-17, 95], + [9, 42], + [-40, 28], + [-54, 12], + [-28, 46], + [-53, -39], + [-38, -152], + [-15, -106], + [-27, -35], + [-18, 69], + [-23, 205], + [34, 122], + [12, 120], + [-17, 47], + [0, 129], + [23, 99], + [22, 52], + [-11, 139], + [-48, 130], + [-8, 50], + [25, 47], + [22, 141], + [14, 237], + [-3, 233], + [-20, 59], + [7, 125], + [29, 79], + [3, 53], + [-35, 140], + [-52, 82], + [7, 35], + [-38, 48], + [6, 201], + [33, 80], + [-2, 63], + [18, 140], + [-17, 39], + [-12, 88], + [81, 63], + [8, -60], + [36, -3], + [37, 69], + [-25, 31], + [33, 42], + [5, 91], + [-48, 74], + [-21, 57], + [58, 8], + [14, 57] + ], + [ + [64345, 11606], + [-13, -48], + [27, -99], + [-8, -45], + [-67, -2], + [21, 101], + [-18, 58], + [58, 35] + ], + [ + [59897, 12452], + [41, -37], + [-45, -39], + [-114, 30], + [39, 43], + [79, 3] + ], + [ + [60087, 12605], + [48, -82], + [-85, -58], + [-67, 29], + [33, 82], + [71, 29] + ], + [ + [58031, 12877], + [45, -34], + [105, -41], + [98, 6], + [-54, -110], + [-128, 19], + [-98, 80], + [-95, 1], + [-32, 39], + [159, 40] + ], + [ + [58260, 13078], + [42, -23], + [-107, -59], + [-36, 20], + [101, 62] + ], + [ + [56528, 13092], + [74, -19], + [-9, -44], + [-92, 4], + [27, 59] + ], + [ + [60700, 13398], + [107, -40], + [123, -84], + [52, -62], + [-6, -86], + [-43, -25], + [-146, 15], + [-199, 37], + [-146, 49], + [-154, -36], + [-1, 39], + [94, 4], + [78, 65], + [30, 76], + [211, 48] + ], + [ + [56500, 6432], + [-27, 31], + [5, 75], + [-51, 104], + [10, 66], + [-82, 61], + [24, 164], + [-9, 40] + ], + [ + [54829, 13312], + [-2, 3] + ], + [ + [54891, 13398], + [80, -62], + [110, -21], + [104, 7], + [68, 63], + [53, -89], + [-47, -87], + [73, -50], + [-16, -45], + [6, -107], + [-58, -51], + [62, 41], + [22, 96], + [-18, 28], + [63, 45], + [-62, 71], + [142, 36], + [110, -1], + [66, 41], + [76, 4], + [224, -26], + [90, -27], + [244, -7], + [33, -16], + [0, -1], + [3, -6], + [-79, -53], + [-14, -1], + [36, -81], + [176, -51], + [69, -39], + [60, 14], + [191, -27], + [110, 17], + [64, -27], + [158, -34], + [-6, 35], + [71, -2], + [48, 81], + [28, 37], + [-66, 89], + [23, 102], + [110, -23], + [83, 78], + [54, -33], + [89, -29], + [-3, -41], + [81, 0], + [48, -25], + [101, 12], + [11, -57], + [86, 7], + [15, 57], + [208, -36], + [-16, -7], + [-40, -9], + [77, 6], + [-19, -6], + [58, -21], + [8, -19], + [66, -25], + [5, -7], + [17, -53], + [-74, -40], + [-121, -25], + [4, 2], + [-16, 2], + [-18, -16], + [103, -11], + [-34, -50], + [-99, -24], + [-32, 4], + [-104, -67], + [-52, -41], + [118, -13], + [109, -34], + [12, -29], + [123, -89], + [43, -112], + [68, -7], + [32, 32], + [-26, 67], + [44, -58], + [-22, -103], + [46, -137], + [47, -15], + [21, -62], + [57, 0], + [17, -52], + [131, -66], + [71, -25], + [79, 90], + [25, 93], + [33, 52], + [30, 116], + [64, 117], + [58, 30], + [-19, -57], + [81, -88], + [96, -61], + [122, -30], + [114, 8], + [-18, 37], + [180, 69], + [93, -10], + [38, -3], + [88, -57], + [80, -32], + [52, -59], + [49, -59], + [35, 73], + [-36, 40], + [39, 86], + [120, 16], + [41, 25], + [94, -80], + [93, -5], + [-32, 71], + [3, 82], + [-40, 41], + [50, 56], + [17, 57], + [-66, -4], + [-53, -41], + [-35, 56], + [87, 96], + [173, -10], + [73, 23], + [48, 53], + [-86, 88], + [109, -8], + [56, -35], + [131, -24], + [225, -8], + [190, -24], + [292, -63], + [122, -43], + [-156, -12], + [-76, 6], + [-39, 31], + [-84, -10], + [-55, -72], + [381, 34], + [82, -4], + [-104, -113], + [-19, 42], + [-100, 22], + [-28, -37], + [41, -59], + [-97, -27], + [-50, -47], + [-5, -43], + [65, -4], + [137, 57], + [193, 211], + [234, 6], + [206, -64], + [59, -37], + [62, -76], + [-75, -58], + [-77, 39], + [-32, -61], + [62, -19], + [82, 5], + [69, -53], + [76, -14], + [12, -34], + [150, -38], + [36, -34], + [87, -153], + [146, -23], + [163, 27], + [119, 33], + [272, 48], + [235, -2], + [185, -30], + [189, -67], + [83, -54], + [47, -54], + [53, -127], + [-66, -187], + [58, -39], + [163, -31], + [33, -136], + [-19, -96], + [55, -16], + [63, -63], + [-34, 183], + [75, 76], + [103, 62] + ], + [ + [60454, 13547], + [57, -15], + [-4, -93], + [-120, -34], + [-43, 58], + [23, 73], + [87, 11] + ], + [ + [61534, 14087], + [30, -65], + [92, -45], + [47, 44], + [189, -10], + [56, -85], + [132, 28], + [144, -22], + [96, -50], + [-6, -92], + [-176, -42], + [-97, -13], + [-192, 23], + [-89, 70], + [-103, 18], + [-151, 66], + [-22, 91], + [50, 84] + ], + [ + [59506, 14202], + [31, -64], + [61, -35], + [-45, -92], + [-75, -13], + [28, 204] + ], + [ + [60136, 14337], + [173, -149], + [87, -16], + [2, -66], + [121, -4], + [-30, 139], + [45, 39], + [120, 20], + [144, -102], + [100, -25], + [94, 22], + [309, -115], + [-79, -56], + [-19, -115], + [-66, -43], + [-181, 1], + [-85, 36], + [-50, 71], + [-18, 65], + [91, 66], + [-18, 37], + [-107, 6], + [-84, -33], + [35, -113], + [120, -129], + [148, -28], + [-8, -40], + [-129, -12], + [-70, -33], + [-96, 50], + [-77, 8], + [-245, -47], + [-66, 57], + [-89, -105], + [-74, -27], + [-67, 33], + [-95, 15], + [-59, 69], + [-92, 52], + [-85, 88], + [98, 32], + [-51, 88], + [-10, 68], + [83, 36], + [-30, 38], + [47, 39], + [83, 3], + [17, 43], + [163, 37] + ], + [ + [43511, 4338], + [-26, 63], + [-66, 39], + [-38, 42], + [-58, 18], + [-91, 93], + [-6, 29], + [-73, -3], + [-51, 69], + [-42, 21], + [-16, 44] + ], + [ + [43044, 4753], + [32, 55], + [-16, 24], + [-55, 24], + [8, 36], + [-44, 100], + [13, 34], + [68, 19], + [-3, 70], + [34, 36], + [55, -27], + [24, 53], + [70, 21], + [40, -26], + [65, 50], + [46, 50], + [18, 73], + [-5, 45], + [-30, 70] + ], + [ + [43364, 5460], + [59, -23], + [34, -59], + [27, 48], + [45, -41], + [9, 77], + [36, 57], + [59, -11], + [63, -55], + [44, -71], + [45, 45], + [46, -27] + ], + [ + [43506, 4319], + [-22, -49], + [-38, -11], + [-28, -107], + [-78, -41], + [-41, -51], + [-60, 6], + [-18, -58], + [17, -53], + [-60, -31], + [-51, -75], + [-35, -24], + [23, -180], + [22, -33], + [-27, -39], + [-57, -37], + [-40, 30], + [-23, 74], + [-53, 99], + [-50, 53], + [-22, -27] + ], + [ + [42865, 3765], + [-40, 35], + [-39, 3], + [-19, 48], + [-45, 35], + [-34, -62], + [-69, 1], + [2, 44], + [-46, 47], + [-35, -29], + [3, -49], + [-52, 8], + [-29, -16], + [-13, 53], + [25, 42], + [0, 43], + [-47, 94], + [-40, 26], + [-111, 0], + [-21, -32], + [-71, 13], + [-52, -46], + [-29, 8], + [-83, 85] + ], + [ + [42020, 4116], + [-2, 57], + [-18, 37], + [-50, 38] + ], + [ + [41950, 4248], + [-3, 45], + [32, 65], + [22, 114], + [50, 113] + ], + [ + [42746, 4685], + [32, 4], + [86, -37], + [32, 29], + [33, -21], + [14, 71], + [101, 22] + ], + [ + [40099, 5001], + [-56, 66], + [9, 50], + [-71, 46], + [-55, -10], + [8, 95], + [-104, 101], + [-17, 83], + [-29, 19], + [24, 57], + [-85, 66], + [34, 61], + [8, 93], + [-29, 64], + [20, 25], + [-4, 91] + ], + [ + [39854, 5959], + [63, -32], + [57, 21], + [7, -35], + [103, -4], + [63, -17], + [41, 5], + [13, 32], + [43, 10], + [38, 42], + [-3, 37], + [98, 60], + [96, -65], + [14, 25], + [64, -6] + ], + [ + [46360, 7113], + [11, -121], + [32, -85], + [-60, -39], + [-65, -72], + [-25, 20], + [-98, -64], + [23, -31], + [-26, -51], + [41, -211], + [35, -16], + [-13, -46], + [-45, -9] + ], + [ + [41950, 4248], + [-59, 42], + [-49, -16], + [-63, 43], + [-49, 11], + [-10, -22], + [-66, 3], + [-8, 64], + [-68, 23] + ], + [ + [43618, 6121], + [20, -20], + [-20, -47], + [156, -24], + [-4, 62], + [47, -17], + [59, 79], + [-43, 20], + [32, 43], + [49, 17], + [6, -74], + [38, -38], + [63, 45], + [3, -36], + [-61, -95], + [24, -26], + [77, 43] + ], + [ + [43364, 5460], + [-39, -1], + [-43, 23], + [-40, 97], + [-52, 22], + [-60, -92], + [-62, -11], + [-75, 63], + [-35, -27], + [-29, 20], + [-36, -62], + [-26, -15], + [-31, 61] + ], + [ + [48091, 7115], + [-4, 32] + ], + [ + [52582, 4473], + [-26, -34], + [-29, -90], + [-72, -42], + [-16, -105], + [-35, -10], + [-34, -200], + [28, -31], + [-11, -38], + [33, -76], + [36, -23], + [-8, -93], + [-31, -86], + [-48, -64], + [-18, 15], + [-63, -80], + [-45, -6], + [-36, 58], + [-54, -3], + [-19, 30], + [-39, -32], + [-20, 35], + [-39, 13], + [-116, -40], + [-66, 11], + [-31, 46], + [-67, -9], + [-39, 80], + [-10, 94], + [-23, 49], + [-155, 1], + [-56, -8], + [-23, 37], + [9, 43], + [-36, 13], + [-44, -32], + [-53, 70], + [-4, -58], + [-21, -25], + [-58, 19], + [-42, -26], + [-1, -34], + [-40, -14], + [0, -35], + [-58, -3], + [-75, 13], + [-14, -62], + [21, -20], + [-22, -51], + [-55, -8], + [-15, -46], + [-129, -35] + ], + [ + [41017, 7082], + [7, -25], + [-45, -39], + [2, -49], + [51, -54], + [-55, -47], + [-1, -69], + [36, -16], + [51, -75], + [4, -59], + [34, -44], + [49, 14], + [8, -33], + [-29, -44], + [20, -64], + [-27, -17], + [0, -44], + [26, -45] + ], + [ + [40799, 7095], + [70, 113], + [47, 18], + [101, -144] + ], + [ + [47216, 5764], + [-57, -58], + [-56, 34], + [-48, 52], + [-63, 8], + [-72, 28], + [-55, -70] + ], + [ + [41169, 6344], + [23, -54], + [42, 20], + [31, -24], + [37, 15], + [39, -17], + [17, 89] + ], + [ + [42865, 3765], + [-22, -26], + [-11, -55], + [15, -38], + [-22, -57], + [-62, -52], + [-21, -208], + [51, -68], + [-22, -66], + [-30, -27], + [-32, -116] + ], + [ + [41736, 3679], + [23, 57], + [-7, 113], + [-46, 63], + [57, 68], + [48, 32], + [16, 57], + [68, -5], + [76, 15], + [49, 37] + ], + [ + [41648, 7097], + [-86, 13], + [-37, -13], + [-39, 25], + [-35, 71], + [-116, 67], + [-55, -22], + [-20, -58], + [-62, 14], + [-29, -23], + [-73, 11], + [-26, -47], + [-31, 9], + [-22, -62] + ], + [ + [41503, 3424], + [-11, 22], + [-67, -20], + [-26, 24], + [-10, 48], + [-42, -2], + [-29, 34] + ], + [ + [47032, 10473], + [119, -45], + [0, -47], + [-56, -27], + [-51, 40], + [-12, 79] + ], + [ + [47384, 10522], + [33, -96], + [-56, -5], + [-60, -46], + [-70, -9], + [-65, 41], + [218, 115] + ], + [ + [48575, 12862], + [85, -16], + [32, -36], + [-102, -75], + [-160, -5], + [-4, 33], + [75, 66], + [74, 33] + ], + [ + [46130, 11439], + [0, 1], + [0, 1], + [35, 26], + [0, 26], + [30, 2], + [126, -70], + [115, -66], + [102, -32], + [47, -59], + [182, -126], + [70, -60], + [81, 153], + [23, 69], + [-34, 45], + [-72, 22], + [-77, 116], + [7, 108], + [-55, -5], + [-194, 98], + [15, 93], + [97, 34], + [-27, 57], + [-24, 17], + [44, 91], + [-25, 30], + [27, 100], + [-112, 61], + [27, 68], + [-32, 10], + [35, 69], + [76, 29], + [142, 94], + [40, 42], + [41, 72], + [46, 148], + [27, 119], + [43, 96], + [29, 36], + [190, 24], + [207, -6], + [44, 9], + [104, -35], + [97, -33], + [26, -192], + [-48, -74], + [-21, -76], + [-31, -23], + [2, -54], + [-90, -72], + [4, -44], + [73, -89], + [61, -27], + [0, -60], + [44, -58], + [-25, -95], + [14, -77], + [-61, -56], + [32, -65], + [-18, -62], + [32, -93], + [-33, -45], + [28, -63], + [-19, -45], + [-10, -128], + [20, -65], + [91, -76], + [81, -65], + [-16, -79], + [-65, -67], + [-5, -68], + [27, -44], + [-19, -80], + [-43, -44], + [-64, -21], + [-26, -110], + [-66, -7], + [-1, -60], + [-50, -95], + [-71, -6], + [-59, -37], + [-41, 3], + [-52, -44], + [-59, -16], + [-53, 52], + [-65, -18], + [-22, 21], + [-90, 3], + [-115, -42], + [-6, -39], + [72, 58], + [67, 6], + [-3, -65], + [61, -52], + [175, -64], + [169, 8], + [153, -49], + [62, 49], + [-12, 40], + [24, 62], + [72, 13], + [21, 32], + [97, 47], + [22, 43], + [46, 24], + [19, 85], + [-9, 33], + [40, 66], + [97, 77], + [30, 60], + [2, 104], + [-40, 88], + [-52, 52], + [29, 54], + [-5, 68], + [50, 45], + [117, 44], + [166, 39], + [74, -6], + [4, -76], + [134, -123], + [-39, -85], + [40, -16], + [-27, -56], + [20, -82], + [-34, -58], + [110, -70], + [114, -21], + [100, 29], + [-56, 28], + [-79, -12], + [-52, 33], + [-74, 18], + [15, 147], + [49, 38], + [72, 17], + [-44, 52], + [2, 36], + [-44, 48], + [-7, 118], + [-160, 66], + [-19, 37], + [-54, -3], + [-78, 49], + [-100, 3], + [-71, -45], + [-75, -25], + [-55, 23], + [-83, -26], + [-43, 39], + [26, 96], + [-71, 138], + [26, 38], + [23, 104], + [-21, 14], + [104, 128], + [7, 97], + [-57, 62], + [-13, 64], + [-64, 101], + [-99, 85], + [92, 99], + [-10, 45], + [87, 48], + [129, 49], + [67, 52], + [22, 55], + [-16, 141], + [-45, 75], + [36, 28], + [127, -130], + [-25, -22], + [38, -85], + [-25, -30], + [-64, -149], + [43, -122], + [-44, -60], + [37, -48], + [137, -35], + [142, -11], + [10, -75], + [0, 31], + [12, 42], + [144, -19], + [27, -62], + [82, -23], + [46, 11], + [-44, 47], + [-12, 51], + [-75, 39], + [-122, 19], + [-36, 35], + [-76, 20], + [-75, 50], + [-42, 130], + [69, 42], + [88, 18], + [115, -87], + [59, -12], + [85, 63], + [-47, 56], + [-91, -19], + [72, 104], + [119, 27] + ], + [ + [47962, 13071], + [48, -11], + [-27, -94], + [-85, 52], + [64, 53] + ], + [ + [47279, 13222], + [55, -16], + [88, -84], + [-80, -53], + [-50, 2], + [-90, -38], + [-97, 15], + [53, 127], + [121, 47] + ], + [ + [59236, 2936], + [-45, -15], + [-48, -56], + [-63, -54], + [-58, 16], + [-29, -36], + [-59, -27], + [-36, -99], + [-24, 17], + [-24, -20], + [-84, -14], + [-57, 24], + [-46, 2], + [-30, -21], + [-27, 16], + [-17, 86], + [-40, 73], + [33, 78], + [-19, 85], + [-23, 3], + [-15, 51], + [21, 72], + [-13, 19] + ], + [ + [56928, 5005], + [-44, -3], + [-113, -55], + [-64, 3], + [-66, -89], + [-46, -84], + [-49, -43], + [7, -72], + [74, 23], + [50, -46], + [-19, -88], + [26, -29], + [1, -54], + [-20, -73], + [-34, -21], + [-56, -82], + [-17, -5], + [-19, -89], + [-43, -99], + [-2, -45], + [-31, -51], + [-29, -116], + [-29, -38], + [-17, -104], + [30, 0], + [4, -71], + [-32, -66], + [-122, -40], + [-73, -104], + [-60, -63], + [-69, 50], + [-38, 1], + [-64, 38], + [-41, 42], + [-21, 46], + [-76, 38], + [-91, -61], + [-65, 10], + [-26, 29], + [-44, 81], + [-62, 33], + [-61, 11], + [-105, -78], + [-106, -106], + [-27, -93], + [-70, -47], + [-38, 22], + [-109, -62], + [-103, -9], + [-75, -71], + [-43, -23], + [-32, 7], + [-37, 40], + [-31, -38], + [-100, 27], + [-25, -4], + [-46, 49], + [-68, 7], + [-77, -10], + [-51, 80], + [-62, 56], + [-2, 78], + [-39, 52] + ] + ], + "transform": { + "scale": [0.005305821665438469, 0.0024405569616505096], + "translate": [-180, 41.20720672607415] + }, + "objects": { + "russia": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-AD", + "NAME_0": "Russia", + "ID_1": 1, + "NAME_1": "Adygey", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Адыгея", + "VARNAME_1": "Adygea|Adygeya|Adygheya|Republic of Adygeya|Adygeyskaya A.Obl.|Respublika Adygeya" + } + }, + { + "arcs": [[1, 2, 3, 4]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-ALT", + "NAME_0": "Russia", + "ID_1": 2, + "NAME_1": "Altay", + "TYPE_1": "Kray", + "ENGTYPE_1": "Territory", + "NL_NAME_1": "Алтайский край", + "VARNAME_1": "Altayskiy Kray" + } + }, + { + "arcs": [[5, 6, 7, 8, 9]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-AMU", + "NAME_0": "Russia", + "ID_1": 3, + "NAME_1": "Amur", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Амурская область", + "VARNAME_1": "Amurskaya Oblast" + } + }, + { + "arcs": [ + [[10, 11, 12, 13, 14, 15]], + [[16]], + [[17]], + [[18]], + [[19]], + [[20]], + [[21]], + [[22]], + [[23]], + [[24]], + [[25]], + [[26]], + [[27]], + [[28]], + [[29]], + [[30]], + [[31]], + [[32]], + [[33]], + [[34]], + [[35]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 188, + "ISO": "RU-ARK", + "NAME_0": "Russia", + "ID_1": 4, + "NAME_1": "Arkhangel'sk", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Архангельская область", + "VARNAME_1": "Arcangelo|Archangel|Archangelsk|Arkhangelskaya Oblast" + } + }, + { + "arcs": [[36, 37, 38]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-AST", + "NAME_0": "Russia", + "ID_1": 5, + "NAME_1": "Astrakhan'", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Астраханская область", + "VARNAME_1": "Astrachan|Astrakhanskaya Oblast" + } + }, + { + "arcs": [[39, 40, 41, 42, 43, 44]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-BA", + "NAME_0": "Russia", + "ID_1": 6, + "NAME_1": "Bashkortostan", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Башкортостан", + "VARNAME_1": "Bashkir|Bashkiriya|Bashkirskaya A.S.S.R.|Republic of Bashkortostan|Respublika Bashkortostan" + } + }, + { + "arcs": [[45, 46, 47]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-BEL", + "NAME_0": "Russia", + "ID_1": 7, + "NAME_1": "Belgorod", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Белгородская область", + "VARNAME_1": "Belgorodskaya Oblast" + } + }, + { + "arcs": [[48, 49, 50, 51, 52]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-BRY", + "NAME_0": "Russia", + "ID_1": 8, + "NAME_1": "Bryansk", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Брянская область", + "VARNAME_1": "Bryanskaya Oblast" + } + }, + { + "arcs": [[53, 54, 55, 56]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-BU", + "NAME_0": "Russia", + "ID_1": 9, + "NAME_1": "Buryat", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Бурятия", + "VARNAME_1": "Buryatiya|Buryat-Mongol A.S.S.R.|Republic of Buryatia|Buryatskaya A.S.S.R.|Respublika" + } + }, + { + "arcs": [[57, 58, 59, 60, 61]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-CE", + "NAME_0": "Russia", + "ID_1": 10, + "NAME_1": "Chechnya", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Чечено-Ингушска", + "VARNAME_1": "Cecenia|Chechenia|Chechênia|Tchetchnia|Chechen-Ingush A.S.S.R.|Checheno-Ingushetia|Checheno-Ingushetia" + } + }, + { + "arcs": [[62, 63, 64, -41, 65]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-CHE", + "NAME_0": "Russia", + "ID_1": 11, + "NAME_1": "Chelyabinsk", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Челябинская область", + "VARNAME_1": "Chelyabinskaya Oblast" + } + }, + { + "arcs": [[[66]], [[67]], [[68, 69, 70, 71, 72, 73]], [[74]], [[75]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 188, + "ISO": "RU-CHU", + "NAME_0": "Russia", + "ID_1": 12, + "NAME_1": "Chukot", + "TYPE_1": "Avtonomnyy Okrug", + "ENGTYPE_1": "Autonomous Province", + "NL_NAME_1": "Чукотский АОк", + "VARNAME_1": "Chukotka|Chukotskiy Aok" + } + }, + { + "arcs": [[76, 77, 78, 79, 80]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-CU", + "NAME_0": "Russia", + "ID_1": 13, + "NAME_1": "Chuvash", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Чувашская Республика", + "VARNAME_1": "Chuvashskaya A.S.S.R.|Chuvashskaya Respublika|Chuvashiya|Chuvash Republic" + } + }, + { + "arcs": [[81, 82]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-SPE", + "NAME_0": "Russia", + "ID_1": 14, + "NAME_1": "City of St. Petersburg", + "TYPE_1": "Gorsovet", + "ENGTYPE_1": "City", + "NL_NAME_1": "Санкт-Петербург (горсовет)", + "VARNAME_1": "Sankt-Peterburg gorsovet" + } + }, + { + "arcs": [[83, -62, 84, 85]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-DA", + "NAME_0": "Russia", + "ID_1": 15, + "NAME_1": "Dagestan", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Дагестан", + "VARNAME_1": "Dagestanskaya A.S.S.R.|Daghestan|Republic of Dagestan|Respublika Dagestan|Dagistan" + } + }, + { + "arcs": [[86, 87, 88, 89, -2]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-AL", + "NAME_0": "Russia", + "ID_1": 16, + "NAME_1": "Gorno-Altay", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Алтай", + "VARNAME_1": "Gorno-Altayskaya A.Obl.|Respublika Altay|Oirot|Republic of Altai" + } + }, + { + "arcs": [[-59, 90, 91]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-IN", + "NAME_0": "Russia", + "ID_1": 17, + "NAME_1": "Ingush", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Респу́блика Ингуше́тия", + "VARNAME_1": "Ingouchie|Inguchétia|Inguschetien|Ingushetia|Ingushetiya|Ingush Republic|Ingushskaya Respublika|Respublika Ingushetiya" + } + }, + { + "arcs": [[92, -57, 93, 94, 95]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-IRK", + "NAME_0": "Russia", + "ID_1": 18, + "NAME_1": "Irkutsk", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Иркутская область", + "VARNAME_1": "Irkutskaya Oblast" + } + }, + { + "arcs": [[96, 97, 98, 99]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-IVA", + "NAME_0": "Russia", + "ID_1": 19, + "NAME_1": "Ivanovo", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Ивановская область", + "VARNAME_1": "Ivanovskaya Oblast" + } + }, + { + "arcs": [[100, 101, 102, 103]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KB", + "NAME_0": "Russia", + "ID_1": 20, + "NAME_1": "Kabardin-Balkar", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Кабардино-Балкарская Респу", + "VARNAME_1": "Kabardin A.S.S.R.|Kabardino-Balkarskaya A.S.S.R.|Kabardino-Balkariya|Kabardino-Balkarsk|Kabard|Kabardino-Balkarskaya Republic" + } + }, + { + "arcs": [[104]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KGD", + "NAME_0": "Russia", + "ID_1": 21, + "NAME_1": "Kaliningrad", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Калининградская область", + "VARNAME_1": "Kaliningradskaya Oblast" + } + }, + { + "arcs": [[-37, 105, -86, 106, 107, 108]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KL", + "NAME_0": "Russia", + "ID_1": 22, + "NAME_1": "Kalmyk", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Калмыкия", + "VARNAME_1": "Kalmykiya|Khalmg Tangch|Republic of Kalmykia|Kalmytskaya A.S.S.R.|Respublika Kalmykiya" + } + }, + { + "arcs": [[109, 110, -53, 111, 112]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KLU", + "NAME_0": "Russia", + "ID_1": 23, + "NAME_1": "Kaluga", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Калужская область", + "VARNAME_1": "Kaluzhskaya Oblast" + } + }, + { + "arcs": [[[113]], [[114]], [[-69, 115]], [[116, -71, 117]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KAM", + "NAME_0": "Russia", + "ID_1": 24, + "NAME_1": "Kamchatka", + "TYPE_1": "Kray", + "ENGTYPE_1": "Territory", + "NL_NAME_1": "Камчатская край", + "VARNAME_1": "Kamçatka|Kamchatskaya Kray" + } + }, + { + "arcs": [[-103, 118, 119, 120]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KC", + "NAME_0": "Russia", + "ID_1": 25, + "NAME_1": "Karachay-Cherkess", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Карачаево-Черкессия Респуб", + "VARNAME_1": "Karaçay-Çerkes|Karachay-Cherkessiya|Karachayevo-Cherkesskaya Respublika|Karachayevo-Cherkessiya|Karachayevo-Cherkess Republic|K" + } + }, + { + "arcs": [[121, -15, 122, 123, 124, 125]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KR", + "NAME_0": "Russia", + "ID_1": 26, + "NAME_1": "Karelia", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Карелия", + "VARNAME_1": "Karelian A.S.S.R.|Karelo-Finnish A.S.S.R.|Karel'skaya A.S.S.R.|Olonets|Olonetskaya G.|Kareliya|Republic of Karelia" + } + }, + { + "arcs": [[126, -87, -5, 127, 128, 129]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KEM", + "NAME_0": "Russia", + "ID_1": 27, + "NAME_1": "Kemerovo", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Кемеровская область", + "VARNAME_1": "Kemerovskaya Oblast" + } + }, + { + "arcs": [[[130]], [[131]], [[132, 133, 134, 135, 136, -6, 137]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KHA", + "NAME_0": "Russia", + "ID_1": 28, + "NAME_1": "Khabarovsk", + "TYPE_1": "Kray", + "ENGTYPE_1": "Territory", + "NL_NAME_1": "Хабаровский край", + "VARNAME_1": "Khabarovskiy Kray" + } + }, + { + "arcs": [[138, -88, -127, 139]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KK", + "NAME_0": "Russia", + "ID_1": 29, + "NAME_1": "Khakass", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Хакасия", + "VARNAME_1": "Khakassiya|Republic of Khakasia|Khakasskaya A.Obl.|Respublika Khakasiya|Republic of Khakasia" + } + }, + { + "arcs": [[140, 141, 142, 143, 144, 145]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KHM", + "NAME_0": "Russia", + "ID_1": 30, + "NAME_1": "Khanty-Mansiy", + "TYPE_1": "Avtonomnyy Okrug", + "ENGTYPE_1": "Autonomous Province", + "NL_NAME_1": "Ханты-Мансийский АОк", + "VARNAME_1": "Khanty-Mansiysk|Khanty-Mansiyskiy A.Okr.|Khanty-Mansiyskiy A.Okr.-Yugra|Khanty-Mansiyskiy Aok" + } + }, + { + "arcs": [[146, 147, 148, 149, 150, 151, 152, 153, -13]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KIR", + "NAME_0": "Russia", + "ID_1": 31, + "NAME_1": "Kirov", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Кировская область", + "VARNAME_1": "Vyatka|Vyatskaya G.|Kirovskaya Oblast" + } + }, + { + "arcs": [[154, -145, 155, 156, -147, -12, 157]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KO", + "NAME_0": "Russia", + "ID_1": 32, + "NAME_1": "Komi", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Коми", + "VARNAME_1": "Komi A.S.S.R.|Republic of Komi|Respublika Komi" + } + }, + { + "arcs": [[-153, 158, -100, 159, 160]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KOS", + "NAME_0": "Russia", + "ID_1": 33, + "NAME_1": "Kostroma", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Костромская область", + "VARNAME_1": "Kostromskaya Oblast" + } + }, + { + "arcs": [[161, 162, -120, 163], [-1]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KDA", + "NAME_0": "Russia", + "ID_1": 34, + "NAME_1": "Krasnodar", + "TYPE_1": "Kray", + "ENGTYPE_1": "Territory", + "NL_NAME_1": "Краснодарский край", + "VARNAME_1": "Cossacks of the Black Sea|Kuban|Kubanskaya|Yekaterinodar|Krasnodarskiy Kray" + } + }, + { + "arcs": [ + [[164]], + [[165, 166]], + [[167]], + [[168]], + [[169]], + [[170, -95, 171, -140, -130, 172, -141, 173, 174]], + [[175]], + [[176]], + [[177]], + [[178]], + [[179]], + [[180]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KYA", + "NAME_0": "Russia", + "ID_1": 35, + "NAME_1": "Krasnoyarsk", + "TYPE_1": "Kray", + "ENGTYPE_1": "Territory", + "NL_NAME_1": "Красноярский край", + "VARNAME_1": "Krasnoyarskiy Kray|Yeniseisk|Yeniseyskaya G." + } + }, + { + "arcs": [[181, 182, -63, 183]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KGN", + "NAME_0": "Russia", + "ID_1": 36, + "NAME_1": "Kurgan", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Курганская область", + "VARNAME_1": "Kurganskaya Oblast" + } + }, + { + "arcs": [[184, 185, -48, 186, -50, 187]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-KRS", + "NAME_0": "Russia", + "ID_1": 37, + "NAME_1": "Kursk", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Курская область", + "VARNAME_1": "Kurskaya Oblast" + } + }, + { + "arcs": [[188, 189, -82, 190, -124, 191, 192, 193, 194]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-LEN", + "NAME_0": "Russia", + "ID_1": 38, + "NAME_1": "Leningrad", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Ленинградская область", + "VARNAME_1": "Saint Petersburg|Sankt-Peterburgskaya G.|Leningradskaya Oblast" + } + }, + { + "arcs": [[195, 196, -185, 197, 198, 199]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-LIP", + "NAME_0": "Russia", + "ID_1": 39, + "NAME_1": "Lipetsk", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Липецкая область", + "VARNAME_1": "Lipetskaya Oblast" + } + }, + { + "arcs": [[-133, 200, -72, -117, 201]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-MAG", + "NAME_0": "Russia", + "ID_1": 40, + "NAME_1": "Maga Buryatdan", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Магаданская область", + "VARNAME_1": "Magadanskaya Oblast" + } + }, + { + "arcs": [[202, -81, 203, -151]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-ME", + "NAME_0": "Russia", + "ID_1": 41, + "NAME_1": "Mariy-El", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Марий Эл", + "VARNAME_1": "Mari|Mari-El|Republic of Mari El|Mariyskaya A.S.S.R.|Respublika Mariy El" + } + }, + { + "arcs": [[-79, 204, 205, 206, 207]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-MO", + "NAME_0": "Russia", + "ID_1": 42, + "NAME_1": "Mordovia", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Мордовия", + "VARNAME_1": "Mordov|Mordvian Autonomous Republic|Mordvinia|Republic of Mordovia|Mordovian A.S.S.R." + } + }, + { + "arcs": [[208]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-MOW", + "NAME_0": "Russia", + "ID_1": 43, + "NAME_1": "Moscow City", + "TYPE_1": "Gorod", + "ENGTYPE_1": "City", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[209, 210, 211, 212, -113, 213, 214], [-209]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-MOS", + "NAME_0": "Russia", + "ID_1": 44, + "NAME_1": "Moskva", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Московская область", + "VARNAME_1": "Mosca|Moscou|Moscow|Moskau|Moskova|Moskovskaya" + } + }, + { + "arcs": [[-126, 215]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-MUR", + "NAME_0": "Russia", + "ID_1": 45, + "NAME_1": "Murmansk", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Мурманская область", + "VARNAME_1": "Murmanskaya Oblast" + } + }, + { + "arcs": [[[216]], [[217, -158, -11, 218]], [[219]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 188, + "ISO": "RU-NEN", + "NAME_0": "Russia", + "ID_1": 46, + "NAME_1": "Nenets", + "TYPE_1": "Avtonomnyy Okrug", + "ENGTYPE_1": "Autonomous Province", + "NL_NAME_1": "Ненецкий АОк", + "VARNAME_1": "Nenetskiy A.Okr.|Nenetskiy Aok" + } + }, + { + "arcs": [[-152, -204, -80, -208, 220, 221, -97, -159]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-NIZ", + "NAME_0": "Russia", + "ID_1": 47, + "NAME_1": "Nizhegorod", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Нижегородская область", + "VARNAME_1": "Gor'kiy|Gor'kovskaya|Gorky|Nizhegorodskaya|Nizhniy-Novgorod|Nizhegorodskaya Oblast" + } + }, + { + "arcs": [[-60, -92, 222, -101, 223]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-SE", + "NAME_0": "Russia", + "ID_1": 48, + "NAME_1": "North Ossetia", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Северная Осетия", + "VARNAME_1": "Kuzey Osetya|Respublika Severnaya Osetiya|Severnaya Osetiya-Alaniya|North Ossetian A.S.S.R.|Republic of North Osetia-Alania" + } + }, + { + "arcs": [[224, 225, 226, -193]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-NGR", + "NAME_0": "Russia", + "ID_1": 49, + "NAME_1": "Novgorod", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Новгородская область", + "VARNAME_1": "Novgorodskaya Oblast" + } + }, + { + "arcs": [[-128, -4, 227, 228, 229]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-NVS", + "NAME_0": "Russia", + "ID_1": 50, + "NAME_1": "Novosibirsk", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Новосибирская область", + "VARNAME_1": "Novosibirskaya Oblast" + } + }, + { + "arcs": [[-229, 230, 231, 232]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-OMS", + "NAME_0": "Russia", + "ID_1": 51, + "NAME_1": "Omsk", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Омская область", + "VARNAME_1": "Omskaya Oblast" + } + }, + { + "arcs": [[-198, -188, -49, -111, 233]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-ORL", + "NAME_0": "Russia", + "ID_1": 52, + "NAME_1": "Orel", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Орловская область", + "VARNAME_1": "Orlovskaya|Or'ol|Oryol|Orlovskaya Oblast" + } + }, + { + "arcs": [[-42, -65, 234, 235, 236, 237]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-ORE", + "NAME_0": "Russia", + "ID_1": 53, + "NAME_1": "Orenburg", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Оренбургская область", + "VARNAME_1": "Chkalov|Orenburgskaya|Orenburgskaya Oblast" + } + }, + { + "arcs": [[238, 239, 240, 241, -206]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-PNZ", + "NAME_0": "Russia", + "ID_1": 54, + "NAME_1": "Penza", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Пензенская область", + "VARNAME_1": "Penzenskaya Oblast" + } + }, + { + "arcs": [[-45, 242, -148, -157, 243]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-PER", + "NAME_0": "Russia", + "ID_1": 55, + "NAME_1": "Perm'", + "TYPE_1": "Kray", + "ENGTYPE_1": "Territory", + "NL_NAME_1": "Пермская край", + "VARNAME_1": "Molotov|Permskaya" + } + }, + { + "arcs": [[244, -135]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-PRI", + "NAME_0": "Russia", + "ID_1": 56, + "NAME_1": "Primor'ye", + "TYPE_1": "Kray", + "ENGTYPE_1": "Territory", + "NL_NAME_1": "Приморский край", + "VARNAME_1": "Küsten-Gebiet|Maritime Territory|Primorsk|Primorskiy Kray" + } + }, + { + "arcs": [[-227, 245, 246, 247, -194]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-PSK", + "NAME_0": "Russia", + "ID_1": 57, + "NAME_1": "Pskov", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Псковская область", + "VARNAME_1": "Pskovskaya Oblast" + } + }, + { + "arcs": [[248, 249, -108, 250, -162, 251]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-ROS", + "NAME_0": "Russia", + "ID_1": 58, + "NAME_1": "Rostov", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Ростовская область", + "VARNAME_1": "Province of the Don Cossacks|Provinz des Donischen Heeres|Voyska Donskovo|Rostovskaya Oblast" + } + }, + { + "arcs": [[-221, -207, -242, 252, -200, 253, -212, 254]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-RYA", + "NAME_0": "Russia", + "ID_1": 59, + "NAME_1": "Ryazan'", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Рязанская область", + "VARNAME_1": "Ryazanskaya Oblast|Ryazanskaya Oblast" + } + }, + { + "arcs": [[[255]], [[256]], [[257]], [[258]], [[259]], [[260]], [[261]], [[262]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 188, + "ISO": "RU-SAK", + "NAME_0": "Russia", + "ID_1": 60, + "NAME_1": "Sakhalin", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Сахалинская область", + "VARNAME_1": "Sakhalinskaya Oblast" + } + }, + { + "arcs": [ + [[263]], + [[264]], + [[265]], + [[266]], + [[267]], + [[268]], + [[269]], + [[-73, -201, -138, -10, 270, -96, -171, 271, -166, 272]], + [[273]], + [[274]], + [[275]], + [[276]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 188, + "ISO": "RU-SA", + "NAME_0": "Russia", + "ID_1": 61, + "NAME_1": "Sakha", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Саха", + "VARNAME_1": "Republic of Sakha|Yakutia-Sakha|Yakutsk|Yakut A.S.S.R.|Yakutskaya A.S.S.R.|Respublika Sakha" + } + }, + { + "arcs": [[-237, 277, 278, 279]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-SAM", + "NAME_0": "Russia", + "ID_1": 62, + "NAME_1": "Samara", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Самарская область", + "VARNAME_1": "Kuybyshev|Kuybyshevskaya|Samarskaya Oblast" + } + }, + { + "arcs": [[-236, 280, 281, 282, 283, -240, 284, -278]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-SAR", + "NAME_0": "Russia", + "ID_1": 63, + "NAME_1": "Saratov", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Саратовская область", + "VARNAME_1": "Saratovskaya Oblast" + } + }, + { + "arcs": [[-214, -112, -52, 285, -247, 286]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-SMO", + "NAME_0": "Russia", + "ID_1": 64, + "NAME_1": "Smolensk", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Смоленская область", + "VARNAME_1": "Smolenskaya Oblast" + } + }, + { + "arcs": [[-85, -61, -224, -104, -121, -163, -251, -107]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-STA", + "NAME_0": "Russia", + "ID_1": 65, + "NAME_1": "Stavropol", + "TYPE_1": "Kray", + "ENGTYPE_1": "Territory", + "NL_NAME_1": "Ставропольский край", + "VARNAME_1": "Stavropol'skiy Kray|Stavropolskiy Kray" + } + }, + { + "arcs": [[287, -184, -66, -40, -244, -156, -144]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-SVE", + "NAME_0": "Russia", + "ID_1": 66, + "NAME_1": "Sverdlovsk", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Свердловская область", + "VARNAME_1": "Yekaterinburg|Sverdlovskaya Oblast" + } + }, + { + "arcs": [[-241, -284, 288, -196, -253]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-TAM", + "NAME_0": "Russia", + "ID_1": 67, + "NAME_1": "Tambov", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Тамбовская область", + "VARNAME_1": "Tambovskaya Oblast" + } + }, + { + "arcs": [[289, -43, -238, -280, 290, -77, -203, -150]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-TA", + "NAME_0": "Russia", + "ID_1": 68, + "NAME_1": "Tatarstan", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Татарстан", + "VARNAME_1": "Kazan|Kazanskaya G.|Tatar A.S.S.R.|Tatarskaya A.S.S.R.|Republic of Tatarstan|Respublika Tatars" + } + }, + { + "arcs": [[-173, -129, -230, -233, 291, -142]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-TOM", + "NAME_0": "Russia", + "ID_1": 69, + "NAME_1": "Tomsk", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Томская область", + "VARNAME_1": "Tomskaya Oblast" + } + }, + { + "arcs": [[-254, -199, -234, -110, -213]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-TUL", + "NAME_0": "Russia", + "ID_1": 70, + "NAME_1": "Tula", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Тульская область", + "VARNAME_1": "Tul'skaya|Tulskaya Oblast" + } + }, + { + "arcs": [[-56, 292, -89, -139, -172, -94]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-TY", + "NAME_0": "Russia", + "ID_1": 71, + "NAME_1": "Tuva", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Республика Тыва", + "VARNAME_1": "Respublika Tyva|Republic of Tuva|Tyva|Tuvinskaya A.S.S.R.|Republic of Tyva" + } + }, + { + "arcs": [[293, -215, -287, -246, -226, 294]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-TVE", + "NAME_0": "Russia", + "ID_1": 72, + "NAME_1": "Tver'", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Тверская область", + "VARNAME_1": "Kalinin|Kalininskaya|Tverskaya Oblast" + } + }, + { + "arcs": [[-292, -232, 295, -182, -288, -143]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-TYU", + "NAME_0": "Russia", + "ID_1": 73, + "NAME_1": "Tyumen'", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Тюменская область", + "VARNAME_1": "Tobol'sk|Tobol'skaya G.|Tyumenskaya Oblast" + } + }, + { + "arcs": [[-243, -44, -290, -149]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-UD", + "NAME_0": "Russia", + "ID_1": 74, + "NAME_1": "Udmurt", + "TYPE_1": "Respublika", + "ENGTYPE_1": "Republic", + "NL_NAME_1": "Удмуртская Республика", + "VARNAME_1": "Udmurtiya|Udmurt Republic|Udmurtskaya A.S.S.R.|Udmurtskaya Respublika" + } + }, + { + "arcs": [[-279, -285, -239, -205, -78, -291]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-ULY", + "NAME_0": "Russia", + "ID_1": 75, + "NAME_1": "Ul'yanovsk", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Ульяновская область", + "VARNAME_1": "Simbirsk|Simbirskaya G.|Ul'yanovskaya Oblast" + } + }, + { + "arcs": [[-222, -255, -211, 296, -98]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-VLA", + "NAME_0": "Russia", + "ID_1": 76, + "NAME_1": "Vladimir", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Владимирская область", + "VARNAME_1": "Vladimirskaya Oblast" + } + }, + { + "arcs": [[297, -38, -109, -250, 298, -282]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-VGG", + "NAME_0": "Russia", + "ID_1": 77, + "NAME_1": "Volgograd", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Волгоградская область", + "VARNAME_1": "Stalingrad|Volgogradskaya Oblast" + } + }, + { + "arcs": [[-14, -154, -161, 299, -295, -225, -192, -123]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-VLG", + "NAME_0": "Russia", + "ID_1": 78, + "NAME_1": "Vologda", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Вологодская область", + "VARNAME_1": "Vologodskaya Oblast" + } + }, + { + "arcs": [[-289, -283, -299, -249, 300, -46, -186, -197]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-VOR", + "NAME_0": "Russia", + "ID_1": 79, + "NAME_1": "Voronezh", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Воронежская область", + "VARNAME_1": "Voronezhskaya Oblast" + } + }, + { + "arcs": [[[301]], [[302]], [[303]], [[-174, -146, -155, -218, 304]], [[305]], [[306]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 188, + "ISO": "RU-YAN", + "NAME_0": "Russia", + "ID_1": 80, + "NAME_1": "Yamal-Nenets", + "TYPE_1": "Avtonomnyy Okrug", + "ENGTYPE_1": "Autonomous Province", + "NL_NAME_1": "Ямало-Ненецкий АОк", + "VARNAME_1": "Yamalo-Nenetskiy A. Okrug" + } + }, + { + "arcs": [[-160, -99, -297, -210, -294, -300]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-YAR", + "NAME_0": "Russia", + "ID_1": 81, + "NAME_1": "Yaroslavl'", + "TYPE_1": "Oblast", + "ENGTYPE_1": "Region", + "NL_NAME_1": "Ярославская область", + "VARNAME_1": "Yaroslavskaya" + } + }, + { + "arcs": [[307, -7, -137]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-YEV", + "NAME_0": "Russia", + "ID_1": 82, + "NAME_1": "Yevrey", + "TYPE_1": "Avtonomnaya Oblast", + "ENGTYPE_1": "Autonomous Region", + "NL_NAME_1": "Eврейская АОб", + "VARNAME_1": "Den jødiske autonome oblasten|Evrey|Jewish A.Obl.|Yahudi|Yevreyskaya A.Obl.|Evreyskaya AOb" + } + }, + { + "arcs": [[-271, -9, 308, -54, -93]], + "type": "Polygon", + "properties": { + "ID_0": 188, + "ISO": "RU-ZAB", + "NAME_0": "Russia", + "ID_1": 83, + "NAME_1": "Zabaykal'ye", + "TYPE_1": "Kray", + "ENGTYPE_1": "Territory", + "NL_NAME_1": "Забайкальский край", + "VARNAME_1": "Zabaykalsky" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/singapore-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/singapore-topo.json new file mode 100644 index 000000000000..c6b4ec19d4f9 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/singapore-topo.json @@ -0,0 +1,7518 @@ +{ + "type": "Topology", + "arcs": [ + [ + [3548, 26653], + [25, -43], + [27, -40], + [24, -44], + [20, -53], + [30, -55], + [35, -60], + [54, -49], + [61, -45], + [64, -37], + [64, -26], + [64, -14], + [62, -4], + [59, -4], + [58, 3], + [60, -6], + [56, -21], + [54, 0], + [47, -18], + [36, -36], + [30, -44], + [13, -59], + [19, -59], + [-6, -60], + [-22, -61], + [-30, -57], + [-20, -65], + [-21, -67], + [-15, -77], + [18, -90], + [37, -85], + [48, -77], + [44, -82], + [56, -59], + [61, -34], + [64, -20], + [61, -23], + [64, -2], + [63, 17], + [62, 20], + [57, 28], + [59, 20], + [47, 35], + [41, 41], + [38, 41], + [28, 40], + [17, 43], + [3, 43], + [-5, 46], + [-11, 44], + [-28, 34], + [-35, 24], + [-48, -9], + [-62, -35], + [-56, -46], + [-52, -13], + [-37, 30], + [-24, 47], + [-21, 46], + [-24, 35], + [-21, 35], + [-19, 36], + [-5, 50], + [-1, 57], + [-4, 66], + [-19, 72], + [-11, 80], + [-2, 83], + [-2, 82], + [-12, 80], + [-29, 72], + [-46, 59], + [-52, 47], + [-49, 42], + [-47, 38], + [-46, 34], + [-42, 40], + [-46, 30], + [-40, 32], + [-37, 35], + [-31, 36], + [-28, 33], + [-30, 32], + [-38, 27], + [-40, 39], + [-46, 53], + [-51, 63], + [-57, 60], + [-50, 54], + [-48, 40], + [-30, 46], + [-36, 37], + [-51, 29], + [-45, 49], + [-45, 60], + [-40, 72], + [-38, 72], + [-34, 71], + [-26, 69], + [-24, 64], + [-39, 47], + [-38, 48], + [-28, 62], + [-34, 60], + [-44, 50], + [-46, 45], + [-42, 42], + [-28, 41], + [4, 52], + [67, 94], + [72, 43], + [65, 25], + [57, 41], + [59, 26], + [58, 21], + [51, 30], + [31, 49], + [19, 61], + [14, 69], + [-7, 83], + [3, 96], + [56, 90], + [34, -3], + [11, -4], + [50, -18], + [63, 19], + [68, 23], + [60, 41], + [58, 40], + [68, 13], + [72, -16], + [68, 25], + [68, 29], + [66, 27], + [58, 31], + [58, 31], + [74, 7], + [72, 0], + [111, -124], + [74, 0], + [36, -41], + [37, 41], + [0, 124], + [-37, 43], + [-20, 60], + [-15, 62], + [-12, 61], + [-25, 52], + [-27, 46], + [-26, 38], + [-33, 35], + [-24, 54], + [-28, 61], + [-13, 73], + [-15, 71], + [-2, 74], + [6, 71], + [43, 57], + [44, 49], + [38, 44], + [37, 39], + [33, 37], + [29, 38], + [17, 43], + [22, 54], + [23, 81], + [26, 106], + [30, 83], + [35, 32], + [40, -16], + [54, -10], + [55, -18], + [55, -23], + [50, -26], + [58, -11], + [62, 5], + [67, 24], + [73, 9], + [73, 2], + [70, 0], + [83, 0], + [404, 0], + [37, 41], + [294, 0], + [36, 41], + [37, 0], + [37, 41], + [12, -13], + [25, -28], + [184, 0], + [110, -124], + [0, -41], + [36, -41], + [0, -124], + [38, -41], + [0, -247], + [36, -41], + [0, -82], + [36, -41], + [0, -41], + [74, -83], + [74, 0], + [37, -41], + [36, 0], + [37, 41], + [37, 0], + [110, 124], + [0, 123], + [37, 41], + [0, 83], + [37, 41], + [-37, 41], + [0, 123], + [-37, 42], + [0, 41], + [-36, 41], + [0, 41], + [-37, 41], + [0, 41], + [-221, 248], + [0, 41], + [-37, 41], + [0, 123], + [37, 42], + [0, 41], + [184, 205], + [23, 50], + [12, 61], + [5, 55], + [11, 44], + [44, 32], + [75, 7], + [80, -38], + [63, -32], + [56, -11], + [56, -3], + [55, 1], + [49, 5], + [35, 18], + [6, 47], + [-31, 73], + [-51, 44], + [-64, 14], + [-69, 6], + [-67, 10], + [-59, 20], + [-82, 9], + [-37, 0], + [-73, 83], + [0, 164], + [-37, 41], + [0, 42], + [-110, 123], + [-257, 0], + [-30, -1], + [-44, -1], + [-56, -14], + [-62, -20], + [-65, -5], + [-64, 0], + [-49, 0], + [-16, 0], + [-67, 0], + [-68, -1], + [-71, -6], + [-67, -18], + [-63, -18], + [-58, -25], + [-58, -19], + [-54, -35], + [-61, -32], + [-74, -3], + [-70, 26], + [-63, 7], + [-51, 4], + [-37, 14], + [-33, 21], + [-34, 22], + [-23, 36], + [-30, 36], + [-36, 38], + [-41, 29], + [-52, -1], + [-49, -34], + [-46, -43], + [-35, -48], + [-29, -39], + [-26, -32], + [-27, -23], + [-20, -21], + [-36, 41], + [0, 124], + [28, 106], + [40, 78], + [40, 73], + [38, 68], + [45, 51], + [46, 40], + [38, 47], + [26, 63], + [31, 69], + [36, 75], + [44, 76], + [53, 68], + [48, 82], + [38, 96], + [37, 101], + [37, 101], + [0, 41], + [36, 41], + [0, 124], + [37, 41], + [0, 576], + [-73, 83], + [-37, 0], + [-111, 123], + [0, 41], + [38, 41], + [0, 42], + [36, 41], + [0, 41], + [184, 206], + [0, 41], + [21, 63], + [17, 77], + [12, 71], + [-1, 71], + [-15, 75], + [-22, 83], + [-10, 98], + [6, 100], + [38, 84], + [59, 60], + [59, 52], + [52, 51], + [39, 55], + [28, 60], + [13, 67], + [19, 65], + [31, 56], + [47, 46], + [58, 35], + [72, 8], + [64, -1], + [48, -7], + [32, -22], + [37, -22], + [25, 59], + [27, 26], + [44, 19], + [49, 34], + [46, 48], + [51, 42], + [37, 55], + [16, 76], + [22, 80], + [13, 80], + [20, 70], + [22, 61], + [31, 38], + [32, 20], + [15, 46], + [18, 45], + [4, 70], + [2, 78], + [8, 74], + [22, 66], + [6, 64], + [10, 59], + [21, 48], + [8, 62], + [17, 62], + [20, 66], + [31, 60], + [30, 60], + [14, 64], + [17, 59], + [13, 61], + [8, 61], + [24, 55], + [7, 57], + [6, 54], + [23, 47], + [9, 58], + [12, 60], + [20, 59], + [17, 64], + [23, 49], + [37, 41], + [0, 41], + [404, 453], + [0, 41], + [37, 41], + [36, 0], + [38, 42], + [73, 0], + [37, -42], + [74, 0], + [36, 42], + [110, -1], + [257, 289], + [37, 0], + [61, 1], + [77, 5], + [71, -2], + [53, 8], + [36, 22], + [33, 6], + [34, 8], + [35, 26], + [36, 42], + [44, 43], + [56, 30], + [54, 24], + [51, 33], + [48, 31], + [61, 26], + [73, 21], + [74, 4], + [71, 1], + [66, 7], + [56, 25], + [66, 8], + [66, 8], + [61, 27], + [61, 24], + [59, 26], + [60, 31], + [60, 34], + [64, 37], + [64, 38], + [63, 36], + [54, 57], + [52, 63], + [51, 65], + [50, 57], + [31, 70], + [39, 60], + [39, 59], + [56, 57], + [58, 64], + [70, 66], + [68, 72], + [65, 68], + [65, 47], + [62, 31], + [54, 32], + [45, 44], + [43, 51], + [45, 51], + [46, 52], + [38, 60], + [39, 62], + [40, 64], + [47, 54], + [54, 43], + [51, 44], + [48, 46], + [45, 48], + [50, 46], + [41, 59], + [40, 57], + [65, 11], + [55, 24], + [53, 14], + [39, 34], + [33, 52], + [43, 51], + [60, 45], + [61, 35], + [63, 14], + [50, 30], + [58, 23], + [53, 32], + [59, 35], + [62, 39], + [68, 39], + [76, 36], + [80, 25], + [80, 25], + [78, 28], + [84, 1], + [77, 1], + [68, 7], + [62, 7], + [53, 22], + [61, 14], + [70, 14], + [78, 22], + [91, 4], + [93, 1], + [74, 0], + [36, -41], + [110, 0], + [38, 41], + [110, 0], + [36, 41], + [111, 0], + [36, -41], + [294, 0], + [38, -41], + [36, 0], + [37, -42], + [37, 0], + [36, -41], + [37, 0], + [74, -82], + [73, 0], + [147, -165], + [0, -41], + [36, -41], + [0, -41], + [74, -83], + [0, -41], + [59, -67], + [40, -45], + [54, -27], + [39, -46], + [40, -43], + [46, -39], + [51, -41], + [50, -54], + [53, -55], + [53, -57], + [52, -50], + [37, -59], + [23, -67], + [28, -50], + [37, -41], + [0, -82], + [37, -42], + [0, -40], + [36, -42], + [0, -41], + [38, -41], + [0, -41], + [18, -41], + [0, -42], + [-9, -72], + [-120, -175], + [0, -82], + [-37, -41], + [5, -46], + [29, -63], + [26, -66], + [12, -71], + [2, -73], + [0, -75], + [-4, -78], + [-17, -80], + [-35, -79], + [-67, -62], + [-68, -66], + [-3, -92], + [51, -71], + [73, -27], + [63, -24], + [44, -37], + [18, -31], + [-14, -47], + [-74, -110], + [-38, -41], + [0, -82], + [-36, -83], + [-27, -124], + [-38, -110], + [-28, -44], + [3, -21], + [-36, -77], + [-37, -61], + [17, -68], + [-9, -35], + [9, -75], + [-4, -60], + [-1, -67], + [-3, -71], + [-15, -68], + [-22, -67], + [-38, -54], + [-50, -46], + [-47, -51], + [-44, -57], + [-43, -60], + [-49, -52], + [-56, -45], + [-56, -46], + [-50, -52], + [-47, -56], + [-48, -52], + [-50, -52], + [-46, -59], + [-48, -58], + [-48, -61], + [-58, -49], + [-68, -32], + [-69, -21], + [-63, -24], + [-71, -12], + [-76, -3], + [-78, -6], + [-75, -34], + [-65, -54], + [-51, -64], + [-63, -52], + [-58, -47], + [-60, -32], + [-55, -30], + [-58, -12], + [-57, -15], + [-54, -12], + [-56, -6], + [-55, 1], + [-57, 7], + [-59, 10], + [-66, 10], + [-70, 11], + [-66, 25], + [-63, 36], + [-66, 40], + [-45, 72], + [-54, 69], + [-60, 61], + [-68, 38], + [-68, 21], + [-44, 3], + [-21, 1], + [-36, -41], + [-37, 0], + [-18, -20], + [-55, -62], + [0, -41], + [-56, -31], + [-54, -10], + [-38, -42], + [-73, -41], + [-37, 0], + [-36, 42], + [-111, 0], + [-73, -83], + [-221, 0], + [-106, -5], + [-105, -5], + [-277, 10], + [-24, -7], + [-48, -13], + [-65, -186], + [37, -51], + [58, -21], + [52, 31], + [37, 31], + [37, 31], + [9, 41], + [55, 10], + [55, 11], + [101, 0], + [331, 0], + [74, -83], + [92, -185], + [91, 0], + [111, 185], + [0, 41], + [36, 42], + [0, 41], + [38, 41], + [72, 0], + [74, 82], + [37, 0], + [37, -41], + [52, -13], + [35, -20], + [24, -15], + [15, -28], + [17, -33], + [14, -42], + [20, -45], + [5, -55], + [1, -59], + [7, -54], + [23, -42], + [20, -39], + [28, -29], + [39, -17], + [49, -3], + [56, 1], + [59, 11], + [54, 28], + [56, 25], + [59, 17], + [61, 17], + [64, 20], + [74, 7], + [74, 15], + [77, 48], + [72, 7], + [20, -13], + [30, -20], + [35, -36], + [21, -30], + [15, -61], + [34, -13], + [28, 31], + [36, 10], + [33, 31], + [56, -17], + [56, -41], + [47, -51], + [35, -57], + [20, -67], + [18, -71], + [4, -80], + [-5, -80], + [-25, -68], + [-17, -65], + [-22, -50], + [-15, -54], + [-25, -49], + [-25, -57], + [-17, -68], + [-26, -60], + [-10, -65], + [-22, -54], + [-14, -52], + [-19, -45], + [-15, -45], + [-14, -47], + [-17, -51], + [-5, -66], + [-6, -72], + [-21, -65], + [-18, -61], + [-17, -49], + [16, -44], + [25, -46], + [32, -48], + [25, -53], + [17, -55], + [-12, -59], + [-9, -63], + [-23, -64], + [-24, -67], + [-39, -62], + [-50, -44], + [-48, -47], + [-49, -42], + [-43, -46], + [-35, -46], + [-49, -39], + [-62, -30], + [-57, -28], + [-135, -37], + [0, -42], + [18, -41], + [18, -41], + [10, -62], + [82, 0], + [37, 31], + [28, 41], + [36, 31], + [64, 31], + [55, 24], + [51, 40], + [51, 35], + [53, 37], + [52, 30], + [54, 25], + [45, 33], + [38, 36], + [32, 39], + [25, 43], + [32, 43], + [35, 44], + [32, 49], + [25, 51], + [16, 52], + [18, 46], + [6, 58], + [6, 65], + [24, 71], + [6, 79], + [0, 79], + [-8, 73], + [-22, 62], + [-6, 62], + [2, 64], + [13, 67], + [21, 66], + [23, 68], + [24, 63], + [30, 49], + [37, 32], + [36, 29], + [47, 6], + [51, 0], + [52, -7], + [44, -32], + [44, -44], + [40, -52], + [30, -65], + [31, -60], + [27, -58], + [29, -50], + [20, -56], + [22, -54], + [21, -59], + [22, -63], + [32, -61], + [37, -64], + [36, -68], + [34, -72], + [31, -75], + [21, -79], + [23, -69], + [20, -63], + [16, -53], + [3, -47], + [1, -42], + [5, -46], + [30, -61], + [-36, -41], + [0, -83], + [73, -82], + [-37, -41], + [74, -83], + [73, 0], + [7, 44], + [26, 42], + [24, 39], + [19, 35], + [4, 31], + [-8, 50], + [2, 33], + [0, 49], + [0, 57], + [6, 61], + [24, 60], + [6, 72], + [0, 81], + [-6, 85], + [-23, 77], + [-13, 80], + [-28, 67], + [-27, 66], + [-35, 65], + [-43, 67], + [-45, 76], + [-40, 82], + [-34, 83], + [-37, 80], + [-37, 78], + [-44, 72], + [-48, 65], + [-36, 76], + [-29, 80], + [-28, 78], + [-36, 69], + [-39, 61], + [-41, 47], + [-36, 39], + [-36, 42], + [-26, 51], + [-12, 59], + [-22, 53], + [-9, 68], + [-9, 72], + [-3, 70], + [11, 56], + [4, 53], + [10, 54], + [28, 44], + [41, 37], + [51, 36], + [53, 41], + [53, 51], + [39, 73], + [36, 95], + [48, 78], + [46, 68], + [52, 45], + [48, 35], + [41, 36], + [34, 40], + [48, 23], + [38, 31], + [37, 31], + [38, 31], + [29, 52], + [52, 32], + [53, 37], + [63, 27], + [59, 33], + [62, 36], + [69, 37], + [62, 63], + [73, 59], + [42, 86], + [15, 100], + [8, 96], + [30, 79], + [33, 72], + [35, 68], + [47, 63], + [56, 54], + [60, 51], + [59, 43], + [54, 44], + [49, 46], + [45, 54], + [38, 64], + [30, 74], + [32, 75], + [31, 75], + [38, 66], + [40, 62], + [45, 53], + [44, 47], + [38, 45], + [32, 46], + [21, 56], + [21, 49], + [21, 49], + [-11, 54], + [-19, 59], + [-26, 63], + [-7, 78], + [-16, 81], + [-21, 81], + [-35, 159], + [-9, 42], + [-64, 82], + [-27, 83], + [-74, 114], + [-55, 93], + [-26, 86], + [-26, 67], + [-35, 55], + [-45, 58], + [-41, 69], + [-25, 78], + [11, 81], + [24, 70], + [35, 52], + [43, 42], + [51, 33], + [66, 19], + [70, 9], + [70, -34], + [66, -50], + [67, -47], + [70, -45], + [77, -46], + [36, 0], + [37, -41], + [37, 0], + [110, -123], + [74, 0], + [37, -42], + [36, 0], + [37, -41], + [73, 83], + [74, 0], + [36, 41], + [111, 0], + [37, 41], + [36, 0], + [53, 30], + [71, 16], + [68, 22], + [75, -11], + [70, -13], + [68, -3], + [66, -6], + [59, -25], + [66, 8], + [61, -11], + [56, -3], + [47, 18], + [97, 27], + [74, 0], + [64, -31], + [73, 20], + [82, 21], + [65, 51], + [9, 42], + [36, 72], + [36, 62], + [32, 61], + [38, 73], + [49, 70], + [51, 65], + [41, 62], + [38, 42], + [0, 41], + [257, 288], + [0, 41], + [37, 41], + [0, 41], + [36, 42], + [0, 82], + [37, 41], + [0, 83], + [37, 41], + [21, -24], + [16, -17], + [36, 41], + [37, 0], + [37, 41], + [0, 41], + [74, 82], + [9, 42], + [146, 82], + [29, 41], + [36, 0], + [36, -41], + [148, 0], + [37, 41], + [36, 0], + [38, 32], + [50, 47], + [62, 37], + [80, 11], + [80, 22], + [66, 48], + [69, 54], + [66, 57], + [58, 66], + [49, 69], + [50, 60], + [50, 53], + [72, 25], + [69, 36], + [67, 35], + [70, 29], + [74, 25], + [70, 35], + [74, 42], + [77, 49], + [75, 58], + [66, 76], + [64, 80], + [79, 59], + [81, 56], + [71, 67], + [79, 52], + [64, 58], + [56, 57], + [57, 43], + [50, 44], + [47, 40], + [49, 35], + [56, 27], + [55, 30], + [54, 37], + [51, 50], + [44, 64], + [40, 71], + [43, 65], + [28, 34], + [37, 41], + [37, 0], + [36, 42], + [37, 0], + [37, 41], + [36, -1], + [38, 42], + [36, 0], + [36, 41], + [0, 41], + [38, 41], + [0, 41], + [183, 206], + [294, 0], + [38, 41], + [110, 0], + [18, 21], + [18, 21], + [37, 0], + [37, 41], + [36, 0], + [221, 247], + [74, 0], + [36, 41], + [74, 0], + [110, 124], + [37, 0], + [64, -11], + [120, 51], + [83, 11], + [83, 0], + [54, 20], + [74, 11], + [36, 0], + [38, -42], + [73, 0], + [37, -40], + [73, 0], + [43, -38], + [56, 2], + [68, 29], + [78, 6], + [79, 1], + [81, -1], + [81, 0], + [84, 6], + [83, 28], + [82, 45], + [89, 33], + [87, 5], + [70, -19], + [72, 15], + [54, -21], + [52, -21], + [56, -37], + [51, -32], + [56, -30], + [57, -36], + [56, -42], + [57, -42], + [49, -43], + [39, -42], + [29, -35], + [8, -41], + [-9, -44], + [-54, -47], + [-56, -14], + [-57, -16], + [-90, -42], + [-70, -56], + [-63, -62], + [-53, -65], + [-41, -65], + [-23, -70], + [-6, -71], + [18, -71], + [26, -55], + [38, 40], + [0, 42], + [36, 41], + [0, 41], + [37, 41], + [58, 61], + [63, 56], + [86, 55], + [52, 30], + [50, 31], + [54, 11], + [26, 5], + [41, -27], + [42, -26], + [41, -33], + [45, -33], + [61, -4], + [65, 18], + [50, 51], + [42, 57], + [32, 55], + [24, 51], + [13, 54], + [0, 41], + [37, 41], + [0, 41], + [37, 41], + [0, 42], + [110, 123], + [0, 82], + [110, 124], + [74, 0], + [147, -165], + [37, 1], + [110, -124], + [-37, -41], + [0, -83], + [-73, -82], + [0, -41], + [37, -41], + [36, 0], + [74, -83], + [36, 0], + [38, -41], + [36, 0], + [36, -41], + [74, 0], + [74, -41], + [36, 0], + [37, -41], + [0, -41], + [37, -42], + [0, -41], + [37, -41], + [74, -82], + [73, 0], + [37, -42], + [184, 1], + [36, -41], + [69, -25], + [72, -50], + [72, -52], + [62, -59], + [54, -56], + [44, -51], + [38, -45], + [29, -39], + [28, -31], + [39, -18], + [44, -25], + [57, -23], + [64, -22], + [66, -30], + [64, -36], + [51, -56], + [47, -60], + [49, -55], + [57, -47], + [61, -44], + [64, -42], + [59, -40], + [55, -37], + [56, -23], + [52, -23], + [54, -26], + [64, -20], + [60, -36], + [58, -41], + [54, -41], + [46, -42], + [38, -48], + [36, -56], + [30, -67], + [23, -72], + [19, -72], + [3, -71], + [-8, -70], + [-23, -67], + [-14, -83], + [-36, -83], + [-66, -79], + [-87, -45], + [-79, -16], + [-59, -20], + [-69, -15], + [-147, 0], + [-36, 41], + [-38, 0], + [-36, -41], + [-37, 0], + [-6, -31], + [-5, -30], + [-2, -43], + [18, -42], + [29, -32], + [33, -27], + [42, -21], + [47, -18], + [54, -6], + [53, 1], + [53, 1], + [50, 2], + [53, 8], + [53, 24], + [62, 8], + [62, 9], + [61, 24], + [64, 9], + [64, 9], + [58, 24], + [62, 7], + [66, 0], + [68, -9], + [60, -39], + [45, -65], + [45, -67], + [35, -67], + [28, -64], + [29, -59], + [16, -63], + [22, -58], + [14, -65], + [21, -62], + [3, -77], + [-12, -86], + [-27, -91], + [-51, -90], + [-78, -76], + [-81, -76], + [-78, -80], + [-75, -81], + [-47, -107], + [-27, -52], + [27, -20], + [37, 0], + [30, 18], + [74, 49], + [72, 74], + [68, 71], + [74, 71], + [79, 74], + [82, 25], + [18, -8], + [53, -21], + [60, -49], + [53, -50], + [37, -47], + [25, -45], + [27, -35], + [21, -32], + [10, -31], + [20, -21], + [21, -33], + [33, -40], + [36, -52], + [37, -57], + [39, -56], + [35, -54], + [36, -46], + [37, -39], + [33, -35], + [28, -36], + [22, -41], + [23, -38], + [14, -45], + [22, -40], + [10, -55], + [21, -55], + [10, -58], + [-4, -55], + [-22, -51], + [-15, -56], + [-26, -53], + [-24, -60], + [-32, -56], + [-38, -49], + [-33, -53], + [-39, -44], + [-37, -38], + [-27, -34], + [-14, -38], + [-17, -41], + [-9, -61], + [-30, -59], + [-37, -57], + [-41, -48], + [-43, -36], + [-41, -28], + [-33, -34], + [-29, -44], + [-33, -49], + [-31, -58], + [-2, -66], + [-20, -38], + [-45, -110], + [-19, -62], + [-9, -73], + [-38, -112], + [-38, -57], + [-30, -69], + [-27, -68], + [-32, -59], + [-33, -60], + [-40, -59], + [-42, -60], + [-46, -52], + [-43, -48], + [-44, -56], + [-53, -48], + [-48, -39], + [-39, -44], + [-24, -65], + [-32, -72], + [0, -83], + [-38, -41], + [0, -41], + [-36, -42], + [0, -82], + [-74, -82], + [0, -41], + [-36, -42], + [0, -41], + [-74, -82], + [0, -41], + [-74, -82], + [0, -42], + [-36, -41], + [0, -41], + [-37, -41], + [0, -83], + [-220, -247], + [-37, 0], + [-18, -20], + [-19, -21], + [-36, 0], + [-38, -41], + [-65, -47], + [-59, -56], + [-67, -53], + [-76, -45], + [-77, -36], + [-66, -6], + [-53, 10], + [-45, 22], + [-45, 13], + [-42, 27], + [-51, 13], + [-45, 27], + [-51, 29], + [-62, 24], + [-68, 32], + [-80, 24], + [-82, 30], + [-73, 34], + [-65, 26], + [-72, -5], + [-77, 0], + [-69, 15], + [-64, 13], + [-59, 34], + [-67, 39], + [-77, 27], + [-86, -20], + [-89, -23], + [-80, -29], + [-63, -38], + [-55, -40], + [-53, -38], + [-56, -35], + [-58, -37], + [-46, -58], + [-33, -72], + [-26, -75], + [-17, -70], + [-23, -59], + [-15, -58], + [-23, -49], + [-19, -52], + [-25, -47], + [-20, -50], + [-15, -52], + [0, -53], + [16, -47], + [34, -37], + [29, -35], + [31, -12], + [34, 30], + [37, 41], + [35, 45], + [29, 46], + [22, 46], + [25, 37], + [27, 31], + [28, 28], + [23, 37], + [32, 31], + [40, 29], + [55, 18], + [62, 17], + [69, 12], + [61, 26], + [64, 19], + [55, 25], + [58, 2], + [46, -17], + [34, -24], + [20, -31], + [12, -36], + [-20, -45], + [-33, -59], + [-37, -69], + [-41, -69], + [-30, -76], + [-11, -85], + [7, -83], + [29, -69], + [34, -63], + [26, -59], + [11, -56], + [2, -48], + [-10, -40], + [-18, -34], + [-10, -38], + [-11, -38], + [-7, -37], + [17, -47], + [21, -52], + [43, -41], + [48, -31], + [48, -27], + [40, -28], + [43, -10], + [49, -1], + [57, 0], + [73, 0], + [84, 1], + [86, 13], + [70, 59], + [69, 52], + [45, 71], + [35, 75], + [28, 76], + [16, 76], + [30, 60], + [33, 48], + [34, 37], + [49, 4], + [53, -24], + [54, -43], + [52, -40], + [51, -16], + [37, 6], + [31, 27], + [35, 42], + [33, 69], + [14, 86], + [8, 81], + [20, 61], + [32, 46], + [43, 41], + [57, 40], + [67, 41], + [75, 44], + [75, 47], + [54, 67], + [59, 58], + [59, 51], + [56, 54], + [66, 47], + [68, 43], + [66, 41], + [56, 43], + [45, 47], + [32, 54], + [27, 57], + [27, 54], + [22, 53], + [27, 44], + [43, 33], + [58, 31], + [60, 44], + [61, 58], + [70, 64], + [74, 56], + [62, 50], + [53, 49], + [54, 45], + [56, 44], + [51, 49], + [45, 55], + [37, 55], + [32, 54], + [18, 64], + [27, 64], + [32, 68], + [32, 69], + [49, 53], + [54, 43], + [52, 43], + [45, 54], + [30, 78], + [34, 88], + [31, 98], + [40, 94], + [41, 88], + [38, 76], + [29, 67], + [6, 68], + [4, 69], + [23, 67], + [47, 59], + [56, 59], + [64, 47], + [73, 29], + [70, 29], + [65, 32], + [70, 15], + [67, 26], + [84, 8], + [88, 5], + [85, 9], + [78, -44], + [88, -17], + [55, -27], + [63, -37], + [79, -37], + [44, -16], + [42, -75], + [49, -68], + [54, -52], + [54, -54], + [51, -60], + [49, -61], + [41, -69], + [37, -74], + [34, -74], + [32, -70], + [34, -63], + [42, -50], + [47, -49], + [55, -44], + [64, -39], + [78, -34], + [94, -27], + [53, -25], + [27, -40], + [37, -44], + [46, -40], + [46, -33], + [30, -36], + [20, -34], + [1, -86], + [-11, -114], + [2, -83], + [11, -55], + [8, -59], + [5, -58], + [40, -28], + [32, 46], + [25, 78], + [10, 90], + [-1, 106], + [-22, 116], + [-3, 91], + [34, 50], + [51, 47], + [73, 35], + [91, 16], + [89, 5], + [96, -30], + [88, -34], + [76, -47], + [84, -50], + [83, -46], + [80, -44], + [73, -38], + [48, -11], + [36, -42], + [110, 0], + [38, -41], + [146, 0], + [37, -41], + [74, 0], + [74, -3], + [65, -12], + [72, -5], + [63, -20], + [47, -34], + [37, -54], + [34, -64], + [28, -77], + [6, -81], + [-21, -70], + [-28, -65], + [-26, -56], + [-26, -59], + [-32, -55], + [-35, -48], + [-33, -42], + [-30, -37], + [-28, -33], + [-34, -28], + [-28, -40], + [-38, -36], + [-52, -32], + [-52, -37], + [-110, -123], + [0, -41], + [-74, -83], + [-36, 0], + [0, -41], + [-38, -41], + [-146, 0], + [-38, -41], + [-36, 0], + [-55, -62], + [-55, -62], + [0, -41], + [-37, -41], + [-37, -41], + [-37, -42], + [74, -82], + [0, -41], + [37, -41], + [36, 0], + [37, 41], + [0, 41], + [37, 41], + [0, 41], + [36, 42], + [74, 0], + [74, 44], + [67, 38], + [62, 41], + [59, 36], + [56, 21], + [49, 29], + [44, 38], + [46, 41], + [44, 39], + [43, 37], + [42, 42], + [49, 41], + [58, 34], + [64, 10], + [61, -11], + [65, -69], + [36, 42], + [0, 41], + [-146, 164], + [36, 42], + [0, 41], + [36, 41], + [0, 41], + [74, 82], + [0, 165], + [23, 16], + [33, 43], + [28, 62], + [22, 64], + [15, 67], + [26, 58], + [37, 61], + [0, 246], + [93, 206], + [55, 103], + [55, 83], + [128, 20], + [36, 42], + [43, 21], + [57, 48], + [69, 50], + [35, 18], + [54, 27], + [73, 0], + [37, 41], + [111, 0], + [36, -41], + [37, 41], + [73, 0], + [37, 41], + [37, 0], + [74, 83], + [73, 0], + [37, 41], + [37, 0], + [73, 82], + [37, 0], + [36, 41], + [38, 0], + [36, 42], + [36, 0], + [38, -42], + [110, 0], + [51, 32], + [51, 22], + [50, 30], + [56, 29], + [67, 3], + [70, -27], + [80, -31], + [66, -81], + [13, -104], + [-27, -92], + [-30, -75], + [-12, -75], + [0, -52], + [-9, -113], + [0, -52], + [9, -165], + [45, -83], + [0, -165], + [16, -53], + [-42, -61], + [-10, -81], + [-6, -92], + [-22, -85], + [-1, -91], + [26, -76], + [29, -62], + [26, -60], + [38, -52], + [34, -56], + [37, -49], + [55, -16], + [37, 9], + [27, -27], + [31, -82], + [34, -51], + [37, -37], + [43, -33], + [49, -48], + [50, -61], + [47, -68], + [54, -68], + [61, -65], + [59, -78], + [52, -86], + [52, -67], + [47, -51], + [57, -30], + [0, -82], + [110, -123], + [0, -42], + [37, -41], + [0, -41], + [-37, -41], + [0, -83], + [-110, -123], + [0, -288], + [-37, -41], + [0, -41], + [-37, -42], + [0, -41], + [-37, -41], + [0, -41], + [37, -41], + [0, -41], + [-37, -42], + [0, -41], + [-110, -123], + [-36, 0], + [-74, -83], + [-45, -118], + [-19, -20], + [-55, -52], + [-9, -31], + [-28, -21], + [-9, -20], + [83, -73], + [91, 114], + [56, 83], + [137, 154], + [64, 73], + [82, 82], + [73, 62], + [83, 62], + [45, 62], + [279, 250], + [83, 41], + [63, 62], + [83, 41], + [100, 52], + [56, 21], + [111, 0], + [36, 41], + [37, 0], + [73, 82], + [37, 0], + [37, 41], + [221, 0], + [36, -41], + [74, 0], + [36, -41], + [110, 0], + [38, -41], + [80, -13], + [76, -49], + [54, -82], + [25, -76], + [25, -64], + [26, -60], + [6, -65], + [1, -61], + [5, -54], + [20, -42], + [11, -47], + [3, -48], + [31, -132], + [27, -93], + [46, -113], + [36, -42], + [37, -82], + [28, -68], + [36, -68], + [56, -57], + [65, -44], + [79, -21], + [77, -21], + [54, -26], + [28, -51], + [35, -58], + [44, -62], + [60, -52], + [66, -45], + [65, -42], + [61, -46], + [64, -39], + [73, -33], + [69, -43], + [55, -57], + [48, -58], + [46, -46], + [44, -36], + [54, -22], + [64, -19], + [68, -12], + [63, -28], + [60, -32], + [44, -52], + [37, -64], + [57, -26], + [60, -31], + [72, -13], + [69, -27], + [72, -7], + [71, 0], + [68, 0], + [66, 0], + [70, 0], + [75, -3], + [73, -16], + [65, -34], + [70, -24], + [77, -12], + [77, -30], + [80, -21], + [74, -20], + [71, -5], + [67, 0], + [61, 0], + [58, 0], + [56, 0], + [52, 0], + [51, 4], + [50, 18], + [54, 16], + [60, 3], + [69, 4], + [72, 15], + [74, 22], + [74, 0], + [99, -12], + [164, -21], + [129, -21], + [-55, 124], + [-146, 0], + [-74, 62], + [29, 33], + [0, 41], + [-73, 83], + [0, 41], + [37, 41], + [0, 41], + [36, 41], + [0, 83], + [45, 49], + [66, 74], + [70, -89], + [-10, -82], + [127, -41], + [184, 41], + [84, 61], + [128, 124], + [79, 151], + [43, 47], + [55, 34], + [40, 30], + [19, 38], + [19, 33], + [13, 39], + [26, 41], + [23, 45], + [23, 42], + [29, 33], + [29, 37], + [25, 49], + [29, 57], + [38, 59], + [39, 63], + [45, 51], + [45, 44], + [45, 38], + [57, 12], + [91, -64], + [102, -12], + [101, 35], + [46, 36], + [46, 36], + [58, -8], + [59, -30], + [66, -19], + [75, 8], + [76, -8], + [67, 12], + [68, 4], + [68, -3], + [71, -12], + [80, -2], + [85, -24], + [147, 0], + [37, -41], + [36, 0], + [37, 41], + [74, 0], + [36, 41], + [37, -41], + [73, 0], + [38, -41], + [110, 0], + [36, -41], + [111, 0], + [37, -42], + [36, 0], + [37, -41], + [110, 0], + [37, -41], + [37, 0], + [36, -41], + [79, -5], + [72, -21], + [71, -27], + [72, -29], + [37, -41], + [221, 0], + [16, 17], + [21, 24], + [36, -1], + [110, 124], + [111, 0], + [37, -41], + [36, -41], + [10, -114], + [-10, -248], + [10, -123], + [101, -186], + [2, -65], + [13, -62], + [21, -57], + [23, -53], + [18, -50], + [22, -42], + [10, -46], + [9, -47], + [20, -40], + [11, -49], + [17, -45], + [29, -38], + [15, -59], + [11, -57], + [16, -50], + [31, -40], + [19, -52], + [18, -52], + [23, -44], + [19, -46], + [18, -52], + [11, -58], + [23, -52], + [10, -56], + [21, -44], + [15, -49], + [30, -40], + [24, -47], + [20, -52], + [29, -45], + [28, -51], + [21, -61], + [28, -33], + [110, -124], + [36, 0], + [38, -41], + [73, 0], + [73, -83], + [0, -21], + [0, -20], + [-110, -124], + [-36, 1], + [-74, -83], + [0, -41], + [-37, -41], + [37, -41], + [0, -42], + [36, -41], + [0, -41], + [38, -41], + [0, -123], + [-38, -42], + [0, -205], + [-36, -42], + [0, -41], + [-37, -41], + [0, -165], + [-184, -206], + [0, -41], + [-36, -41], + [-10, -51], + [-23, -51], + [-18, -59], + [-12, -64], + [-10, -71], + [-9, -92], + [-33, -84], + [-36, -67], + [-35, -49], + [-32, -43], + [-25, -41], + [-17, -43], + [-18, -42], + [-13, -50], + [-14, -60], + [-14, -71], + [-14, -76], + [-19, -61], + [-18, -56], + [-12, -60], + [-16, -51], + [-34, -38], + [-12, -44], + [-5, -58], + [-28, -71], + [-20, -82], + [-128, -29], + [-37, -49], + [-46, -155], + [-92, -185], + [-73, -217], + [-121, -300], + [-23, -79], + [-65, -203], + [-72, -145], + [36, -103], + [-119, -165], + [-27, -206], + [-19, -124], + [-64, -145], + [-119, -289], + [-82, -279], + [-184, -495], + [-132, -339], + [18, -52], + [92, -10], + [27, -52], + [138, -62], + [9, -92], + [64, -42], + [91, 0], + [65, -41], + [73, 0], + [147, -165], + [0, -41], + [-37, -41], + [0, -41], + [-183, -206], + [0, -41], + [36, -41], + [0, -42], + [74, 0], + [184, -205], + [147, 0], + [36, -42], + [184, 0], + [74, 124], + [36, 41], + [37, 0], + [37, -41], + [37, 0], + [36, -41], + [74, 0], + [37, -41], + [37, 0], + [110, 123], + [74, 0], + [36, 41], + [37, 0], + [37, -41], + [36, 0], + [37, 41], + [74, 0], + [36, -41], + [148, 0], + [17, 20], + [19, 21], + [110, 0], + [74, 83], + [110, 0], + [37, -42], + [220, 0], + [38, 42], + [110, 0], + [146, 164], + [148, 0], + [36, -41], + [37, 0], + [37, 41], + [111, 0], + [36, 41], + [36, 0], + [150, 31], + [366, 0], + [220, 7], + [111, 4], + [183, 0], + [37, 41], + [199, -24], + [210, 0], + [28, 13], + [114, 52], + [367, 0], + [37, -41], + [37, -41], + [0, -42], + [37, -41], + [0, -82], + [37, -41], + [0, -206], + [-74, -82], + [0, -42], + [184, -205], + [37, 0], + [74, -83], + [0, -123], + [-37, -42], + [0, -82], + [-74, -82], + [-37, 0], + [-37, -41], + [0, -42], + [-36, -41], + [-37, 0], + [0, -41], + [-37, -41], + [0, -82], + [37, -41], + [0, -206], + [37, -42], + [-37, -41], + [0, -41], + [73, -82], + [0, -41], + [-36, -42], + [0, -82], + [36, -41], + [0, -82], + [-36, -41], + [-148, 0], + [-72, 82], + [0, 288], + [-74, 82], + [0, 41], + [-331, 371], + [-37, 0], + [-73, 82], + [-38, 0], + [-72, 83], + [183, 205], + [0, 83], + [-111, 123], + [-36, 0], + [-36, 42], + [-38, 0], + [-73, -83], + [0, -41], + [-37, -41], + [-36, 0], + [-37, 41], + [-37, 0], + [-73, 82], + [-74, 0], + [-36, -41], + [-38, 0], + [-73, -82], + [0, -247], + [37, -41], + [0, -42], + [36, -41], + [0, -41], + [38, -41], + [0, -82], + [36, -206], + [0, -124], + [37, -41], + [37, 0], + [0, -41], + [36, -41], + [74, 0], + [37, -41], + [184, 0], + [72, -83], + [0, -41], + [-36, -41], + [0, -82], + [-110, -124], + [-37, 0], + [-37, 41], + [-36, 0], + [-37, 42], + [-37, 0], + [-37, 41], + [-36, 0], + [-37, 41], + [-37, 0], + [-36, 41], + [-38, 0], + [-110, 123], + [0, 83], + [-36, 41], + [0, 41], + [-38, 41], + [0, 83], + [38, 41], + [0, 123], + [-74, 83], + [-37, -41], + [-73, 0], + [-37, 41], + [-110, 0], + [-37, 41], + [-698, 0], + [-38, 41], + [-294, 0], + [-36, -41], + [-110, 0], + [-37, -41], + [-37, 0], + [-37, -41], + [-36, 0], + [-74, -83], + [-147, -165], + [-37, 0], + [-74, -82], + [-36, -41], + [-37, 0], + [-37, -41], + [-36, 0], + [-37, -41], + [-37, 0], + [-37, -42], + [-73, 0], + [-73, -82], + [-38, -41], + [-73, 0], + [-37, -41], + [-73, 0], + [-37, -41], + [-184, 0], + [-37, 41], + [0, 82], + [-36, 0], + [-37, 41], + [-73, -82], + [-38, 0], + [-36, 41], + [-36, 0], + [-38, 41], + [-36, 0], + [-37, 41], + [-37, 0], + [-36, 42], + [-37, 0], + [-37, 41], + [-37, 0], + [-37, 41], + [-73, 0], + [-37, -41], + [-73, 82], + [-38, 0], + [-36, 41], + [-36, 0], + [-38, 41], + [-73, 0], + [-73, 83], + [-147, 0], + [-37, 41], + [-37, -41], + [-74, 0], + [-110, -124], + [0, -41], + [-147, -165], + [-110, 124], + [-37, 0], + [-37, 41], + [-110, 0], + [-147, 165], + [37, 41], + [0, 82], + [-37, 42], + [0, 41], + [-37, 41], + [0, 41], + [-74, 82], + [-36, 0], + [-37, 41], + [0, 42], + [-75, -39], + [-70, -3], + [-74, 8], + [-75, 26], + [-75, 0], + [-72, -30], + [-73, -23], + [-74, -26], + [-67, -36], + [-66, -41], + [-53, -57], + [-33, 9], + [-34, 20], + [-34, 29], + [-30, 29], + [-34, 12], + [-30, 15], + [-27, 20], + [-38, 9], + [-46, 20], + [-54, 3], + [-60, -2], + [-59, 12], + [-58, 3], + [-32, -4], + [-22, -3], + [-51, -26], + [-50, -18], + [-52, -22], + [-56, -19], + [-58, -24], + [-67, -6], + [-70, -2], + [-74, -9], + [-71, -24], + [-72, -9], + [-66, -13], + [-58, -21], + [-61, -13], + [-57, -24], + [-59, -15], + [-52, -18], + [-48, -16], + [-44, -36], + [-56, -36], + [-61, -42], + [-74, -37], + [-90, 21], + [-75, 34], + [-63, 11], + [-20, -2], + [-37, -3], + [-51, -24], + [-56, -17], + [-56, -30], + [-64, -20], + [-67, -30], + [-69, -38], + [-76, -41], + [-80, -43], + [-76, -54], + [-65, -69], + [-70, -54], + [-76, 20], + [-81, 28], + [-85, 2], + [-82, -23], + [-84, -18], + [-75, -36], + [-73, -31], + [-80, 4], + [-76, 14], + [-64, -21], + [-66, -7], + [-66, 0], + [-68, 0], + [-71, -3], + [-70, -13], + [-61, -28], + [-54, -34], + [-54, -24], + [-53, -27], + [-48, -34], + [-55, -30], + [-61, -24], + [-59, -26], + [-60, -13], + [-51, -25], + [-55, -14], + [-46, -34], + [-44, -42], + [-49, -50], + [-55, -56], + [-77, -39], + [-74, 15], + [-71, 6], + [-66, 1], + [-64, -6], + [-44, -35], + [-74, 0], + [-36, -42], + [-74, 0], + [-36, -41], + [-38, 1], + [-36, -42], + [-36, 0], + [-38, -41], + [-36, 0], + [-37, -41], + [-37, 0], + [-36, -41], + [-37, 0], + [-37, -42], + [-441, 0], + [-37, -41], + [-37, 0], + [-36, -41], + [-37, 0], + [-37, -41], + [-45, -9], + [-66, -27], + [-75, -14], + [-77, -26], + [-81, -6], + [-83, -1], + [-83, 0], + [-83, -5], + [-81, -23], + [-82, -13], + [-80, -13], + [-73, -23], + [-70, -12], + [-56, -29], + [-61, -19], + [-61, -29], + [-61, -32], + [-71, -15], + [-65, -33], + [-67, -31], + [-80, -10], + [-83, -9], + [-68, -33], + [-60, -40], + [-51, -38], + [-53, -22], + [-48, -20], + [-54, -14], + [-54, -27], + [-64, -20], + [-68, -28], + [-67, -38], + [-72, -41], + [-75, -41], + [-75, -40], + [-80, -29], + [-86, -15], + [-85, -17], + [-85, -18], + [-88, -4], + [-87, -8], + [-78, -34], + [-74, -41], + [-67, -47], + [-55, -61], + [-71, -41], + [-79, -14], + [-74, -2], + [-67, 0], + [-61, -6], + [-57, -26], + [-61, -16], + [-56, -29], + [-60, -22], + [-57, -27], + [-50, -38], + [-51, -39], + [-57, -30], + [-63, -19], + [-56, -33], + [-57, -26], + [-59, -25], + [-56, -34], + [-65, -34], + [-82, -17], + [-85, -25], + [-88, -8], + [-87, -15], + [-76, -39], + [-68, -48], + [-61, -44], + [-51, -52], + [-47, -48], + [-42, -48], + [-32, -53], + [-35, -47], + [-51, -27], + [-55, -24], + [-66, -12], + [-63, -28], + [-62, -32], + [-56, -39], + [-54, -41], + [-52, -44], + [-46, -50], + [-49, -47], + [-54, -45], + [-56, -46], + [-52, -54], + [-57, -49], + [-70, -31], + [-67, -33], + [-56, -40], + [-49, -47], + [-49, -43], + [-51, -39], + [-45, -45], + [-45, -43], + [-55, -30], + [-55, -34], + [-57, -33], + [-68, -19], + [-67, -31], + [-65, -39], + [-67, -44], + [-61, -51], + [-55, -60], + [-54, -55], + [-50, -50], + [-48, -41], + [-62, -29], + [-36, -41], + [-74, 0], + [-36, 41], + [-38, 0], + [-367, 412], + [0, 41], + [-110, 124], + [0, 41], + [-148, 165], + [0, 41], + [-36, 41], + [0, 41], + [-74, 82], + [0, 41], + [-36, 42], + [0, 41], + [-37, 41], + [0, 41], + [-37, 41], + [0, 83], + [-37, 41], + [0, 82], + [-36, 41], + [0, 42], + [-37, 41], + [0, 41], + [-37, 41], + [0, 41], + [-37, 41], + [0, 42], + [-37, 41], + [0, 164], + [-36, 41], + [0, 42], + [12, 95], + [-2, 115], + [55, 96], + [82, -7], + [80, 4], + [60, -3], + [80, 10], + [84, 21], + [100, 39], + [36, 42], + [38, 0], + [36, 41], + [37, 0], + [37, 41], + [73, 82], + [0, 124], + [-36, 41], + [0, 41], + [-37, 41], + [0, 247], + [-110, 124], + [-38, 0], + [-36, 41], + [-36, 0], + [-38, 41], + [-36, -41], + [-37, 0], + [-110, -124], + [0, -82], + [-37, -41], + [0, -83], + [-37, -41], + [0, -41], + [-36, 0], + [-37, -41], + [-37, 0], + [-37, -41], + [-73, 0], + [-74, -83], + [-36, 0], + [-56, -61], + [-18, -21], + [0, -41], + [-37, -41], + [0, -82], + [-37, -42], + [0, -123], + [-110, -124], + [0, -41], + [37, -41], + [0, -165], + [73, -82], + [0, -82], + [37, -42], + [0, -123], + [-37, -41], + [0, -124], + [37, -41], + [0, -206], + [-73, -82], + [-74, 0], + [-37, -41], + [-73, 0], + [-37, 41], + [-77, -318], + [83, -93], + [-27, -31], + [0, -21], + [45, -10], + [47, -52], + [39, -52], + [37, -41], + [74, 0], + [73, -82], + [37, 0], + [36, -41], + [74, 0], + [37, -41], + [73, 0], + [37, -42], + [37, 0], + [37, -41], + [37, 0], + [477, -535], + [0, -82], + [37, -42], + [0, -205], + [-37, -41], + [0, -42], + [-146, -164], + [-38, 0], + [-36, -41], + [-37, 0], + [-110, -124], + [-37, 0], + [-257, -288], + [-37, 0], + [-73, -83], + [-38, 0], + [-37, -41], + [-49, -41], + [-49, -38], + [-53, -30], + [-58, -24], + [-52, -33], + [-47, -40], + [-44, -42], + [-45, -41], + [-47, -43], + [-54, -46], + [-56, -56], + [-64, -34], + [-63, 42], + [-55, 66], + [-59, 55], + [-69, 16], + [-66, 10], + [-57, 29], + [-61, 26], + [-58, 29], + [-42, 48], + [-47, 31], + [-40, 37], + [-36, 40], + [-40, 43], + [-42, 43], + [-41, 42], + [-42, 39], + [-33, 37], + [-37, 0], + [-37, 41], + [-37, -41], + [0, -41], + [-74, -83], + [-23, -48], + [11, -42], + [12, -59], + [12, -67], + [22, -62], + [4, -63], + [0, -64], + [0, -70], + [0, -81], + [0, -495], + [0, -98], + [0, -85], + [-1, -64], + [1, -48], + [6, -50], + [23, -63], + [-6, -89], + [-40, -93], + [-59, -88], + [-74, -66], + [-90, 10], + [-77, 55], + [-69, 65], + [-54, 80], + [-39, 86], + [-36, 59], + [0, 41], + [-74, 82], + [-73, -41], + [-37, -41], + [-74, 0], + [0, -124], + [-73, -82], + [37, -41], + [0, -42], + [-74, -82], + [-36, 0], + [-38, 41], + [0, 41], + [-36, 42], + [0, 41], + [-74, 82], + [0, 41], + [-47, 35], + [-51, 36], + [-44, 46], + [-50, 43], + [-57, 39], + [-53, 47], + [-52, 51], + [-39, 60], + [-44, 59], + [-45, 57], + [-56, 49], + [-58, 50], + [-63, 44], + [-58, 44], + [-53, 41], + [-48, 34], + [-53, 1], + [-47, -36], + [-38, 0], + [-86, -62], + [-134, -20], + [-36, 0], + [-37, 41], + [-111, 0], + [-37, 41], + [-110, 0], + [-36, -41], + [-110, 0], + [-38, -41], + [-36, 0], + [-37, -41], + [-37, 0], + [-18, -21], + [-18, -20], + [-74, 0], + [-27, -31], + [-83, -93], + [-37, 0], + [-74, -82], + [-36, 0], + [-38, -41], + [-36, 0], + [-36, -42], + [-38, 0], + [-146, -164], + [-111, 0], + [-36, -41], + [-405, 0], + [-37, -42], + [-147, 0], + [-36, -41], + [-75, 33], + [-80, 11], + [-27, 36], + [-30, 39], + [-51, 35], + [-77, 23], + [-63, 30], + [-44, 34], + [-40, 10], + [-32, 22], + [-41, 25], + [-46, 35], + [-49, 47], + [-46, 55], + [-50, 51], + [-60, 34], + [-63, 29], + [-54, 36], + [-53, 35], + [-48, 35], + [-53, 18], + [-45, -4], + [-45, -28], + [-38, -43], + [-35, -55], + [-42, -49], + [-37, -41], + [-36, 0], + [-37, -41], + [-37, 41], + [-36, 0], + [-38, 41], + [-146, 0], + [-111, -123], + [0, -83], + [-73, -82], + [-56, 0], + [-50, -1], + [-42, 1], + [-43, 1], + [-45, 8], + [-45, 29], + [-56, 30], + [-67, 33], + [-72, 48], + [-70, 65], + [-67, 76], + [-61, 77], + [-58, 69], + [-44, 64], + [-37, 58], + [-41, 43], + [-55, 27], + [-47, 31], + [-36, 41], + [-74, 0], + [-37, -41], + [-37, 0], + [-36, -42], + [-74, 83], + [-37, 0], + [-74, 82], + [-36, 0], + [-37, 42], + [-37, 0], + [-74, 82], + [-110, 0], + [-36, 41], + [-37, 0], + [-73, 82], + [-37, 0], + [-37, 42], + [-37, 0], + [-147, 164], + [-37, 0], + [-74, 82], + [-36, 0], + [-36, 42], + [-53, 28], + [-55, 18], + [-60, 36], + [-64, 40], + [-65, 39], + [-59, 36], + [-36, 41], + [-46, 21], + [-100, 2], + [-75, 50], + [-52, 51], + [-56, 33], + [-67, 31], + [-73, 36], + [-76, 33], + [-81, 48], + [-63, 80], + [-43, 85], + [-23, 49], + [-30, 25], + [-37, 0], + [-36, 41], + [-38, 0], + [-72, 82], + [-38, 0], + [-36, 42], + [-37, 0], + [-110, 123], + [-37, 0], + [-37, 41], + [-36, 0], + [-38, 41], + [-110, 0], + [-110, -123], + [0, -165], + [-74, -82], + [-73, 0], + [-73, -82], + [0, -42], + [-37, -41], + [-37, 0], + [-111, -123], + [-72, 0], + [0, -41], + [-112, -124], + [0, -41], + [-72, -82], + [-111, 0], + [-73, 82], + [0, 41], + [-74, 82], + [-37, 0], + [-36, 42], + [0, 82], + [220, 247], + [0, 41], + [37, 41], + [0, 165], + [-81, -7], + [-139, 42], + [-146, 20], + [-64, 42], + [-56, 62], + [-191, -11], + [-29, 83], + [-109, 10], + [-46, 42], + [-183, 0], + [-83, 31], + [-210, 113], + [-128, 124], + [0, 62], + [-128, 124], + [54, 51], + [92, 0], + [46, -51], + [9, -114], + [256, -175], + [101, 0], + [73, 62], + [74, 0], + [18, 103], + [184, 10], + [18, -31], + [27, 0], + [36, -82], + [-54, -11], + [0, -82], + [36, -10], + [9, -63], + [37, -61], + [73, -11], + [83, -62], + [118, 21], + [0, 41], + [-18, 31], + [18, 41], + [47, 0], + [45, -72], + [101, 1], + [45, -32], + [56, 0], + [27, -124], + [18, -35], + [110, 124], + [0, 41], + [38, 41], + [0, 82], + [36, 42], + [0, 123], + [-36, 41], + [0, 83], + [-74, 82], + [-36, 0], + [-74, 82], + [-37, 0], + [-37, 42], + [-36, 0], + [-37, 41], + [-37, 0], + [-73, 82], + [-37, 0], + [-73, 82], + [-38, 0], + [-110, 124], + [-110, 0], + [-74, 82], + [-36, 0], + [-367, 412], + [0, 82], + [-38, 41], + [0, 330], + [74, 82], + [36, 0], + [38, 41], + [36, 0], + [74, 82], + [0, 83], + [-37, 41], + [-41, 64], + [-47, 54], + [-51, 47], + [-50, 47], + [-51, 44], + [-37, 50], + [-45, 32], + [-41, 34], + [-42, 40], + [-36, 0], + [-37, 41], + [-37, 0], + [-73, -82], + [0, -41], + [-37, -42], + [0, -41], + [-37, -41], + [37, -41], + [0, -83], + [-147, -164], + [-110, 0], + [-37, -42], + [-331, 0], + [-37, -41], + [-74, 0], + [-36, 41], + [-36, 0], + [-38, 42], + [-36, 0], + [-37, 41], + [-73, 0], + [-35, 33], + [-61, 15], + [-59, 33], + [-63, 35], + [-76, 25], + [-74, 23], + [-37, 0], + [-36, 42], + [-74, 0], + [-37, 41], + [-147, 0], + [-73, 82], + [-148, 0], + [-36, 42], + [-37, 0], + [-37, 41], + [-36, 0], + [-38, 41], + [-110, 0], + [-46, 31], + [-67, 18], + [-56, 27], + [-58, 6], + [-57, 0], + [-62, 1], + [-66, 3], + [-66, -1], + [-65, 13], + [-56, 27], + [-46, 30], + [-52, 4], + [-66, -14], + [-101, -3], + [-105, 33], + [-70, 14], + [-63, -17], + [-84, -2], + [-80, 19], + [-57, 48], + [-49, 53], + [-40, 63], + [-27, 88], + [-30, 96], + [-19, 102], + [-19, 60], + [37, 42], + [-37, 41], + [0, 82], + [-220, 247], + [0, 83], + [-37, 41], + [0, 371], + [-10, 82], + [0, 73], + [28, 103], + [46, 72], + [73, 145], + [10, 60], + [0, 41], + [110, 123], + [0, 42], + [74, 82], + [0, 41], + [37, 41], + [0, 41], + [73, 83], + [0, 41], + [147, 206], + [36, 41], + [38, 41], + [0, 82], + [36, 41], + [0, 83], + [38, 41], + [0, 165], + [27, 51], + [-65, 72], + [-74, 0], + [-36, 0], + [-36, -41], + [0, -41], + [-38, -41], + [0, -83], + [-73, -82], + [0, -41], + [-37, -41], + [0, -42], + [-36, -41], + [0, -82], + [-37, -41], + [0, -41], + [-37, -42], + [-37, -20], + [-92, -103], + [-18, -41], + [-36, -41], + [0, -42], + [-38, -41], + [0, -82], + [-36, -41], + [0, -41], + [-37, -41], + [-8, -10], + [-29, -39], + [-46, -73], + [-55, -113], + [-36, -73], + [-9, -92], + [-19, -93], + [-19, -62], + [0, -93], + [-27, -83], + [-27, -51], + [-19, -42], + [0, -82], + [-74, -82], + [0, -42], + [-36, -41], + [0, -41], + [-37, -41], + [0, -165], + [37, -41], + [0, -41], + [36, -42], + [37, 0], + [37, -41], + [73, 0], + [37, -41], + [26, -33], + [31, -55], + [26, -70], + [29, -69], + [29, -66], + [6, -72], + [-1, -62], + [-9, -49], + [-25, -31], + [-37, -23], + [-47, 3], + [-50, 33], + [-61, 41], + [-71, 41], + [-74, 42], + [-71, 40], + [-64, 36], + [-49, 38], + [-43, 27], + [-31, 32], + [-29, 27], + [-37, 6], + [-36, 0], + [-37, 41], + [-73, 0], + [-37, 41], + [-110, 123], + [0, 41], + [-148, 165], + [-72, 0], + [-38, -41], + [-36, 0], + [-37, -41], + [0, -41], + [73, -83], + [0, -41], + [38, -41], + [36, 0], + [367, -412], + [-36, -41], + [0, -41], + [-74, -82], + [0, -83], + [-110, -123], + [-37, 0], + [-36, -41], + [-38, 41], + [-36, 0], + [-36, 41], + [-74, 0], + [-110, 123], + [-38, 0], + [-36, 42], + [-295, 0], + [-36, 41], + [-36, 0], + [-38, 41], + [-36, 0], + [-37, 41], + [0, 41], + [-37, 41], + [0, 83], + [-36, 41], + [0, 206], + [36, 41], + [-36, 41], + [0, 206], + [-111, 123], + [-37, -41], + [-36, 1], + [-37, -42], + [-37, 0], + [-37, -41], + [0, -82], + [-36, -42], + [0, -288], + [36, -41], + [0, -82], + [-110, -124], + [-74, 0], + [-36, -41], + [-37, 0], + [-37, -41], + [-36, 0], + [-54, 5], + [-62, 22], + [-58, 18], + [-43, 29], + [-45, 8], + [-33, 0], + [-73, 0], + [-37, -41], + [-74, 0], + [-36, 41], + [-37, 0], + [-110, 124], + [0, 41], + [-37, 41], + [0, 41], + [-110, 124], + [-37, 0], + [-36, -41], + [-38, 0], + [-36, -41], + [36, -42], + [0, -206], + [-73, -82], + [0, -123], + [-37, -42], + [0, -41], + [-36, -41], + [-74, 0], + [-36, -41], + [-38, 0], + [-73, -82], + [-184, 0], + [-110, 123], + [0, 494], + [36, 41], + [0, 42], + [-73, 82], + [-111, -124], + [0, -41], + [-36, -41], + [0, -124], + [36, -41], + [0, -41], + [38, -41], + [0, -165], + [-258, 0], + [-36, -41], + [-37, 0], + [-49, -36], + [-47, -27], + [-56, -6], + [-48, 15], + [-33, 9], + [-89, -2], + [-81, -12], + [-41, 22], + [-34, 29], + [-44, 4], + [-45, -17], + [-39, -27], + [-48, -21], + [-98, -1], + [-93, -12], + [-38, 41], + [-220, 0], + [8, 25], + [38, 93], + [-38, 82], + [0, 93], + [-36, 63], + [0, 165], + [-18, 134], + [-74, 72], + [-82, 52], + [0, -93], + [37, -83], + [9, -124], + [-37, -93], + [55, -113], + [0, -165], + [-9, -231], + [-147, -165], + [-37, 0], + [-36, -22], + [-48, -21], + [-51, -22], + [-71, -13], + [-69, -1], + [-44, 8], + [-35, 16], + [-44, 22], + [-48, 42], + [-41, 67], + [-44, 66], + [-41, 60], + [-47, 49], + [-47, 42], + [-54, 28], + [-41, 37], + [-36, 40], + [-29, 46], + [-24, 59], + [-18, 61], + [-26, 48], + [-34, 37], + [-43, 28], + [-47, 35], + [-40, 63], + [-41, 83], + [-24, 85], + [26, 65], + [21, 53], + [-5, 55], + [-11, 61], + [-29, 42], + [-24, 38], + [-31, 17], + [-40, 2], + [-40, -3], + [-30, 3], + [0, -41], + [-74, -83], + [0, -41], + [-36, -41], + [0, -124], + [-38, -40], + [0, -42], + [0, -69], + [-28, -39], + [-8, -38], + [-1, -39], + [4, -40], + [15, -39], + [27, -40], + [11, -40], + [14, -38], + [38, -39], + [72, -41], + [78, -44], + [58, -76], + [20, -92], + [28, -76], + [40, -73], + [0, -41], + [37, -42], + [37, 0], + [37, -41], + [36, 0], + [184, -206], + [0, -41], + [36, -41], + [0, -247], + [-110, -123], + [-110, 0], + [-36, 41], + [-258, 0], + [-37, -41], + [-36, 0], + [-38, -41], + [0, -42], + [-36, -41], + [0, -41], + [-110, -124], + [-57, -24], + [-50, -42], + [-37, -46], + [-25, -51], + [-24, -51], + [-31, -51], + [-34, -64], + [-36, 0], + [-37, -41], + [-37, 0], + [-73, 82], + [-37, 0], + [-111, 124], + [-36, 0], + [-37, 41], + [0, 41], + [-37, 41], + [0, 41], + [-73, 83], + [0, 41], + [-110, 124], + [-37, -42], + [-37, 0], + [-37, -41], + [-221, 0], + [-110, 124], + [0, 41], + [38, 41], + [-89, 99], + [-22, 25], + [-74, -83], + [-73, 0], + [-73, 83], + [0, 41], + [36, 41], + [0, 41], + [37, 41], + [0, 41], + [73, 83], + [-73, 82], + [-73, 0], + [-111, -124], + [-37, 0], + [-36, -41], + [-38, 41], + [-36, 0], + [-147, 165], + [0, 41], + [-37, 41], + [0, 42], + [-73, 82], + [-37, 0], + [-331, 371], + [0, 41], + [-294, 329], + [-37, 0], + [-368, 412], + [0, 41], + [-146, 165], + [-37, 0], + [0, 123], + [37, 42], + [0, 40], + [110, 124], + [36, 0], + [38, 41], + [220, 0], + [37, 42], + [0, 41], + [37, 41], + [0, 41], + [36, 41], + [-36, 41], + [0, 83], + [-148, 164], + [-36, 0], + [-21, -23], + [-17, -18], + [-36, 0], + [-36, 41], + [-148, 0], + [2, -308], + [0, -77], + [-45, -83], + [-146, -186], + [-47, -423], + [-531, -155], + [-62, 213], + [-41, 142], + [-122, -69], + [-36, -42], + [0, -41], + [-38, -41], + [0, -41], + [-36, -42], + [0, -205], + [-37, -41], + [-28, -34], + [-35, -38], + [-13, -48], + [-17, -46], + [-15, -47], + [-11, -53], + [-21, -56], + [-6, -67], + [3, -77], + [7, -78], + [-46, -74], + [-51, -62], + [-44, -51], + [-27, -55], + [6, -54], + [31, -43], + [49, -30], + [60, -34], + [47, -50], + [26, -51], + [48, -29], + [53, -30], + [54, -29], + [58, -33], + [65, -33], + [74, -27], + [86, -12], + [65, -17], + [47, -31], + [40, -59], + [52, -68], + [58, -55], + [67, -49], + [75, -31], + [68, -29], + [60, -26], + [56, -15], + [85, -29], + [55, -42], + [137, -41], + [110, -52], + [65, -10], + [37, -22], + [54, -16], + [64, -62], + [55, -80], + [31, -68], + [-8, -57], + [-10, -68], + [-19, -74], + [-21, -64], + [-24, -62], + [-15, -63], + [-29, -58], + [-31, -55], + [-41, -40], + [-57, -11], + [-58, -5], + [-64, -8], + [-94, 25], + [-142, -8], + [-101, 21], + [-109, 0], + [-73, -11], + [-221, 0], + [-45, 31], + [-247, 0], + [-138, 11], + [-81, 10], + [-101, 10], + [-156, 11], + [-175, 10], + [-36, 31], + [-193, 0], + [-219, 31], + [-57, 6], + [-58, 1], + [-58, 0], + [-60, 0], + [-70, 0], + [-146, 0], + [-37, -42], + [-74, 0], + [-36, 42], + [-111, 0], + [-37, 41], + [-73, 0], + [-81, 0], + [-92, 6], + [-69, 33], + [-37, 60], + [-52, 65], + [-331, 371], + [-36, 0], + [-148, 165], + [0, 41], + [-36, 41], + [0, 123], + [36, 42], + [0, 164], + [-36, 41], + [0, 83], + [36, 134], + [258, 278], + [12, 43], + [28, 66], + [35, 67], + [35, 69], + [36, 71], + [35, 72], + [28, 74], + [17, 73], + [25, 62], + [7, 62], + [0, 60], + [-1, 64], + [0, 71], + [4, 83], + [20, 85], + [34, 79], + [42, 69], + [36, 75], + [27, 83], + [33, 70], + [23, 66], + [20, 75], + [21, 70], + [20, 72], + [28, 67], + [21, 70], + [18, 73], + [23, 73], + [33, 66], + [35, 65], + [39, 61], + [35, 65], + [27, 75], + [18, 88], + [31, 78], + [30, 75], + [13, 83], + [28, 76], + [20, 81], + [23, 79], + [33, 75], + [37, 76], + [35, 80], + [31, 83], + [26, 84], + [23, 79], + [32, 64], + [30, 58], + [15, 63], + [21, 50], + [-3, 61], + [-26, 83], + [-16, 88], + [39, 91], + [53, 67], + [36, 70], + [36, 63], + [36, 63], + [36, 63], + [33, 66], + [20, 74], + [24, 69], + [32, 62], + [25, 65], + [24, 70], + [24, 76], + [19, 85], + [15, 101], + [32, 90], + [14, 79], + [23, 68], + [8, 70], + [2, 71], + [5, 71], + [26, 67], + [14, 78], + [26, 77], + [25, 81], + [30, 78], + [35, 67], + [27, 65], + [30, 55], + [26, 55], + [16, 64], + [22, 63], + [11, 91], + [0, 165], + [-184, 205], + [0, 124], + [74, 82], + [0, 41], + [37, 42], + [0, 41], + [37, 41], + [0, 41], + [36, 41], + [0, 41], + [37, 42], + [-37, 41], + [0, 288], + [-36, 41], + [0, 41], + [-37, 42], + [0, 82], + [-37, 41], + [0, 41], + [-36, 41], + [0, 42], + [73, 82], + [258, 0], + [18, 21], + [18, 20], + [74, 0], + [36, 41], + [38, 0], + [36, 41], + [36, 0], + [111, -123], + [0, -41], + [37, -41], + [-37, -42], + [0, -123], + [147, -165], + [73, 0], + [63, -56], + [64, -58], + [64, -49], + [63, -43], + [57, -40], + [56, -38], + [55, -30], + [39, -40] + ], + [ + [32862, 40181], + [-73, 0], + [0, 42], + [-110, 123], + [0, 82], + [-110, 124], + [-74, 41], + [0, 124], + [-330, 370], + [36, 41], + [0, 330], + [-110, 123], + [0, 124], + [-37, 41], + [0, 41], + [-258, 288], + [184, 0], + [147, -82], + [0, -82], + [405, -453], + [0, -206], + [404, -453], + [-36, -41], + [73, -82], + [0, -42], + [37, -41], + [0, -329], + [-148, -41], + [0, -42] + ], + [ + [9092, 39653], + [-38, -31], + [-45, 21], + [-46, 10], + [-28, 51], + [0, 52], + [38, 21], + [66, 13], + [44, 49], + [36, 0], + [36, -31], + [9, -52], + [-72, -103] + ], + [ + [58489, 39373], + [-10, -37], + [76, 6], + [0, -47], + [36, 6], + [-2, -43], + [64, 0], + [66, -5], + [93, 5], + [0, -77], + [97, -3], + [15, -9], + [217, 0], + [266, 0], + [458, -92], + [360, -8], + [233, -202], + [382, -340], + [420, -361], + [154, -172], + [379, -505], + [192, -611], + [-138, -6], + [-101, -62], + [27, -82], + [34, -54], + [-16, -12], + [-6, -40], + [41, 3], + [-2, -44], + [37, 0], + [2, -37], + [36, -6], + [2, -76], + [39, -5], + [-2, -41], + [-34, 2], + [-3, -45], + [33, 2], + [4, -85], + [106, 4], + [6, -123], + [32, 0], + [0, -44], + [-34, -2], + [0, -33], + [-38, -4], + [-3, -85], + [-31, 2], + [-5, -80], + [-37, 0], + [4, -40], + [-108, -2], + [-2, -84], + [-39, 2], + [-2, -44], + [-69, 1], + [-1, -41], + [-1, -40], + [38, 0], + [2, 43], + [31, -2], + [7, -34], + [30, -7], + [0, -45], + [-33, 2], + [0, -39], + [-40, -2], + [-2, -79], + [44, 0], + [-2, -126], + [-79, -2], + [6, -202], + [35, 2], + [-2, -41], + [-35, -2], + [0, -65], + [-2, -16], + [-35, -4], + [-4, -122], + [43, 0], + [0, -83], + [-79, -2], + [0, -37], + [-33, -6], + [0, -161], + [37, -2], + [0, -79], + [-37, -2], + [-4, -37], + [-35, 0], + [0, -41], + [0, -70], + [4, -54], + [31, 2], + [2, -45], + [-75, 0], + [2, -37], + [-37, -2], + [-2, -166], + [39, 0], + [0, -41], + [-39, -2], + [0, -37], + [-34, -2], + [0, -40], + [-33, -2], + [-4, -84], + [33, 4], + [2, -134], + [-33, 8], + [-2, -80], + [-39, -4], + [4, -196], + [-33, -7], + [-7, -51], + [-34, 10], + [1, -47], + [-35, 0], + [-4, -37], + [-38, -3], + [4, -41], + [-112, 6], + [-5, -41], + [-70, 0], + [2, -39], + [-38, 0], + [0, 37], + [-38, -2], + [0, -35], + [-110, -2], + [0, -85], + [36, 0], + [2, -41], + [-110, 0], + [2, 31], + [-2, 12], + [-70, -6], + [0, 41], + [-40, 6], + [2, 38], + [-147, -2], + [-4, 43], + [-34, 2], + [0, 41], + [-182, 0], + [-2, 42], + [-149, 0], + [1, -40], + [-150, -2], + [3, -43], + [-31, 0], + [-4, -16], + [-5, -21], + [-31, -4], + [-7, -40], + [-68, -4], + [-4, -74], + [-32, 2], + [-4, 35], + [-68, 0], + [-4, -41], + [-73, -2], + [0, -40], + [-73, 2], + [-1, -45], + [-32, 2], + [-6, 41], + [-32, 2], + [0, -41], + [-39, -4], + [-4, -37], + [-76, -6], + [9, -38], + [-39, 0], + [-47, 3], + [-61, 0], + [-6, -44], + [-71, -2], + [2, -35], + [-187, -6], + [2, -37], + [-74, -5], + [-1, -39], + [-38, 0], + [3, -39], + [-36, -2], + [0, 44], + [-37, 0], + [-2, -48], + [-76, 4], + [0, -82], + [-103, 0], + [-1, -40], + [-111, -2], + [2, -43], + [-77, 4], + [0, -43], + [-82, 0], + [11, -37], + [-81, 0], + [4, -83], + [-68, -2], + [-7, -37], + [-34, -11], + [0, -84], + [-34, 4], + [-2, -82], + [-36, 2], + [-2, -38], + [-72, -4], + [-1, -115], + [-36, -4], + [-2, -79], + [38, -6], + [1, -39], + [-150, 0], + [0, -14], + [1, -28], + [-74, 2], + [4, 42], + [-39, 0], + [-1, -28], + [-1, -55], + [-35, 0], + [0, -39], + [-185, -4], + [2, -40], + [-222, -2], + [2, 120], + [-34, 2], + [-4, 35], + [-31, 11], + [0, 41], + [-44, 6], + [3, 23], + [-36, 10], + [2, 42], + [-46, 0], + [7, 37], + [-38, 2], + [2, 82], + [-39, 2], + [2, 83], + [-39, 0], + [0, 37], + [-38, 6], + [0, 40], + [-75, 2], + [0, 39], + [-35, 0], + [0, 80], + [-32, 3], + [-4, 84], + [38, 0], + [-2, 33], + [-34, 2], + [-6, 43], + [-66, -2], + [-5, 44], + [-74, -2], + [2, 115], + [2, 89], + [-146, 6], + [-3, 81], + [-39, 0], + [2, 41], + [-51, 2], + [17, 118], + [-38, 6], + [0, 29], + [-43, 8], + [5, 128], + [-78, -2], + [6, 41], + [-37, 0], + [0, 38], + [-35, 4], + [-2, 80], + [-38, 2], + [0, 40], + [-73, 0], + [-2, 43], + [-36, 0], + [0, 39], + [-36, 0], + [2, 40], + [-36, -3], + [-2, 166], + [-33, -1], + [0, 120], + [141, 6], + [0, 41], + [-36, -4], + [0, 46], + [-38, 0], + [2, 45], + [-71, 0], + [-3, -33], + [1, -16], + [-24, 0], + [-16, -4], + [0, -46], + [1, -20], + [-34, -11], + [-75, 2], + [0, 15], + [1, 41], + [0, 25], + [-109, 0], + [-2, 45], + [-38, 0], + [5, 244], + [-39, -2], + [-2, 87], + [-34, -4], + [0, 47], + [-37, -6], + [2, 165], + [-39, 4], + [-2, 161], + [-38, -2], + [0, 89], + [-34, -4], + [0, 41], + [-74, -5], + [0, 12], + [-2, 74], + [-31, 3], + [-6, 41], + [-33, 2], + [-4, 39], + [-31, 0], + [-2, 37], + [-73, 2], + [-4, -33], + [-34, -4], + [-2, 83], + [-147, -11], + [2, 91], + [-73, -4], + [-5, 39], + [-29, 0], + [-1, 50], + [-148, 0], + [-1, 34], + [-72, 4], + [-2, 40], + [-38, 0], + [2, 82], + [-36, 2], + [-2, 37], + [-39, 0], + [0, 41], + [-33, 3], + [2, 39], + [-40, 0], + [-2, 47], + [-37, 0], + [0, 79], + [-72, 0], + [2, 91], + [0, 90], + [2, 46], + [5, 17], + [62, 10], + [0, 68], + [42, 8], + [-3, 79], + [42, 2], + [0, 39], + [32, 8], + [-3, 31], + [41, 7], + [1, 35], + [2, 80], + [35, 4], + [-5, 89], + [1, 35], + [1, 13], + [1, 16], + [0, 12], + [34, 0], + [43, 2], + [-2, 21], + [-3, 37], + [5, 27], + [33, -2], + [-2, 64], + [-423, -85], + [-17, 244], + [8, 140], + [2, 35], + [202, -23], + [72, 31], + [101, -20], + [64, 20], + [-1, 12], + [-10, 76], + [-31, 0], + [-1, 14], + [-2, 25], + [-27, 8], + [-9, 37], + [-20, 0], + [-16, 2], + [-2, 29], + [5, 46], + [-5, 49], + [0, 37], + [-34, 0], + [0, 120], + [-21, 2], + [-20, 4], + [1, 13], + [2, 20], + [-14, 4], + [-22, 0], + [0, 79], + [14, 0], + [22, 10], + [0, 33], + [-16, 6], + [-20, 0], + [-1, 15], + [-1, 19], + [-20, 0], + [-13, 2], + [-3, 26], + [-3, 68], + [3, 58], + [0, 39], + [-8, 15], + [-15, 0], + [-13, 2], + [2, 14], + [2, 23], + [0, 31], + [-11, 15], + [-29, 0], + [2, 55], + [-2, 27], + [0, 37], + [4, 34], + [22, 8], + [5, 9], + [11, 17], + [0, 40], + [-13, 16], + [-14, 4], + [-17, 2], + [0, 15], + [2, 54], + [0, 35], + [2, 45], + [-4, 13], + [28, -3], + [12, 3], + [0, 45], + [-5, 37], + [22, 4], + [20, 0], + [1, 39], + [78, -4], + [-9, 39], + [77, 4], + [-5, -84], + [77, 1], + [0, -47], + [184, 4], + [-3, -39], + [73, 0], + [0, 43], + [409, -2], + [-4, -41], + [114, 0], + [0, 39], + [38, -2], + [-6, 45], + [72, 0], + [2, -39], + [34, -2], + [4, 37], + [37, 4], + [0, 38], + [76, 6], + [0, 35], + [70, 2], + [-2, 39], + [116, 5], + [-4, 119], + [75, 4], + [4, 83], + [143, 2], + [0, 122], + [42, 0], + [-5, 41], + [-39, 0], + [2, 130], + [75, -4], + [-4, 35], + [40, 4], + [-5, 39], + [45, 2], + [153, 0], + [133, 0], + [120, -13], + [92, 16], + [104, 4], + [137, -49], + [82, -16], + [63, -7], + [172, -6], + [194, -7], + [145, 33], + [95, 62], + [65, 87], + [5, 81], + [58, 52], + [119, 13], + [232, 4], + [19, 13], + [46, 10], + [22, 6], + [14, 4], + [28, -10] + ], + [ + [35202, 37349], + [-42, -42], + [-34, -31], + [-62, -33], + [-43, 16], + [-54, 26], + [-62, 19], + [-42, 18], + [-14, 5], + [-69, -11], + [-69, 13], + [-72, 63], + [-67, 59], + [-56, 53], + [-47, 47], + [-49, 39], + [-45, 39], + [-43, 45], + [-37, 53], + [-36, 54], + [-39, 51], + [-39, 46], + [-39, 48], + [-37, 48], + [-39, 46], + [-42, 46], + [-45, 47], + [-52, 45], + [-62, 43], + [-69, 48], + [-84, 46], + [-96, 44], + [-93, 60], + [-48, 55], + [-27, 67], + [-23, 65], + [20, 70], + [19, 78], + [33, 74], + [51, 60], + [50, 60], + [55, 54], + [60, 45], + [63, 39], + [55, 45], + [49, 43], + [48, 45], + [48, 44], + [57, 34], + [56, 32], + [66, 14], + [62, 24], + [62, 10], + [62, 1], + [62, -4], + [60, -17], + [60, -16], + [64, -4], + [62, -1], + [61, -7], + [55, -28], + [57, -20], + [52, -30], + [51, -38], + [53, -41], + [54, -42], + [56, -43], + [51, -46], + [54, -46], + [59, -38], + [60, -37], + [56, -41], + [60, -39], + [60, -38], + [64, -37], + [71, -28], + [59, -38], + [47, -53], + [45, -54], + [53, -42], + [47, -40], + [36, -37], + [15, -37], + [-57, -81], + [-60, -74], + [-43, -58], + [-35, -49], + [-28, -53], + [-22, -64], + [-27, -68], + [-38, -59], + [-48, -50], + [-50, -53], + [-47, -63], + [-47, -62], + [-41, -65], + [-41, -65], + [-43, -75], + [-56, -86], + [-40, -42] + ], + [ + [47713, 38452], + [-110, 0], + [0, 41], + [-110, 42], + [0, 329], + [80, 45], + [67, 38], + [184, 0], + [110, -42], + [0, -164], + [-221, -248], + [0, -41] + ], + [ + [42421, 38720], + [-38, -41], + [159, -125], + [3, -18], + [59, -59], + [149, -35], + [94, 0], + [124, -38], + [128, -52], + [101, -35], + [300, -117], + [132, -49], + [173, -108], + [465, -219], + [409, -188], + [-200, -151], + [45, -7], + [147, -13], + [74, -248], + [72, 21], + [30, 82], + [110, 0], + [0, -41], + [331, -41], + [1, 137], + [22, -6], + [100, -4], + [124, -17], + [118, -14], + [117, -7], + [63, 7], + [112, 21], + [87, 80], + [285, 50], + [73, -41], + [0, -42], + [74, 0], + [0, 83], + [220, 41], + [294, 0], + [74, -41], + [110, -41], + [73, -42], + [0, -82], + [184, 0], + [0, 82], + [148, 0], + [110, -41], + [28, -64], + [100, -35], + [230, -21], + [200, 81], + [321, 0], + [82, 21], + [22, 59], + [193, 0], + [0, -82], + [221, 0], + [0, 82], + [74, 0], + [220, -82], + [73, -41], + [74, -82], + [0, -41], + [37, -42], + [0, -41], + [73, -82], + [0, -41], + [37, -42], + [0, -41], + [-110, -123], + [36, -41], + [0, -124], + [-36, -41], + [0, -41], + [-37, -41], + [0, -42], + [-37, -41], + [0, -41], + [-37, -41], + [74, -82], + [0, -42], + [-37, -41], + [147, -82], + [37, -41], + [0, -165], + [-442, -41], + [-403, -41], + [-111, -41], + [-73, -42], + [0, -41], + [-148, 0], + [0, 41], + [-36, 42], + [-147, 0], + [0, -42], + [-147, 0], + [0, 42], + [-74, 82], + [-257, 0], + [-74, -41], + [-110, -41], + [-73, -42], + [-110, -41], + [-74, -41], + [-110, -41], + [0, -329], + [-38, -42], + [-146, -41], + [0, -41], + [-37, -41], + [-147, -41], + [0, -82], + [-111, 0], + [0, 41], + [-36, 41], + [-148, 0], + [0, -82], + [-110, -124], + [-293, -41], + [-552, -42], + [37, -41], + [-74, -41], + [0, -41], + [-478, 0], + [0, 165], + [-220, 247], + [-73, 41], + [0, 41], + [-74, 82], + [0, 42], + [-74, 82], + [0, 41], + [-73, 82], + [-111, 42], + [0, 41], + [-110, 123], + [74, 41], + [0, 83], + [-74, 82], + [0, 329], + [-183, 0], + [0, -123], + [-38, -41], + [0, -124], + [-36, -41], + [0, -165], + [-110, 0], + [0, 42], + [-37, 41], + [0, 41], + [-74, 82], + [37, 42], + [0, 82], + [-73, 82], + [-184, 41], + [0, 41], + [-110, 124], + [-368, 41], + [-367, 206], + [0, 41], + [-184, 206], + [36, 41], + [0, 124], + [74, 41], + [184, 206], + [0, 41], + [-38, 41], + [-72, 0], + [-184, -206], + [-74, -41], + [-110, -41], + [0, -124], + [-331, 0], + [0, 41], + [-37, 42], + [-147, 41], + [0, 41], + [-37, 41], + [0, 41], + [-36, 42], + [73, 41], + [37, 41], + [0, 41], + [-37, 41], + [-37, 0], + [-146, -82], + [0, -41], + [-295, 0], + [0, 41], + [-147, 164], + [-147, 42], + [0, 82], + [-36, 41], + [0, 83], + [-38, 41], + [0, 41], + [-220, 247], + [36, 41], + [0, 165], + [368, 82], + [111, 123], + [0, 124], + [368, 41], + [0, 165], + [110, 41], + [110, 0], + [0, -41], + [293, 0], + [0, 83], + [112, 0], + [0, -83] + ], + [ + [16161, 38463], + [28, -10], + [28, 21], + [27, 10], + [27, -21], + [18, -51], + [0, -52], + [-18, -31], + [-45, -10], + [-46, -31], + [-19, -41], + [-18, -72], + [-55, -63], + [-45, -30], + [-19, -11], + [-37, 0], + [-9, 11], + [19, 30], + [27, 52], + [37, 31], + [27, 41], + [19, 52], + [-19, 21], + [0, 20], + [19, 31], + [0, 73], + [-19, 51], + [-27, 31], + [-18, 42], + [0, 61], + [27, 32], + [13, -11], + [15, -10], + [9, -31], + [27, -42], + [27, -20], + [0, -73] + ], + [ + [36097, 38329], + [38, -41], + [36, 0], + [36, -41], + [38, 0], + [36, -42], + [37, 0], + [110, -123], + [37, 0], + [73, -83], + [38, 0], + [36, -41], + [74, 0], + [74, -82], + [36, 0], + [36, -41], + [38, 0], + [73, -83], + [37, 0], + [183, -205], + [0, -42], + [38, -41], + [0, -41], + [36, -41], + [0, -41], + [-36, -42], + [-38, 0], + [0, -40], + [-36, -42], + [-26, -172], + [-74, -82], + [-84, -75], + [-37, -41], + [-74, 0], + [-36, -42], + [0, -41], + [-74, 0], + [-74, 83], + [-72, 0], + [-38, 41], + [-73, 0], + [-192, 10], + [-249, 31], + [-37, 41], + [-36, 0], + [-38, 41], + [-36, 0], + [-74, 83], + [-36, 0], + [-37, 41], + [-74, 0], + [-36, 41], + [-37, 0], + [-37, 41], + [-110, 0], + [-74, 82], + [9, 52], + [28, 31], + [37, 41], + [0, 41], + [83, 124], + [64, 82], + [73, 82], + [0, 42], + [74, 82], + [0, 41], + [73, 82], + [0, 42], + [166, 267], + [65, 11], + [38, 6], + [25, 4] + ], + [ + [53448, 37876], + [73, -82], + [74, 0], + [36, -42], + [111, 0], + [147, -164], + [37, 0], + [37, -41], + [73, 0], + [110, -124], + [0, -165], + [37, -41], + [0, -123], + [73, -83], + [0, -82], + [38, -41], + [0, -165], + [-111, -123], + [0, -41], + [-73, -83], + [-37, 0], + [-37, -41], + [-110, 0], + [-37, 41], + [-294, 0], + [-37, -41], + [-37, 0], + [-36, 41], + [-37, 0], + [-37, 41], + [-37, 0], + [-36, 42], + [-37, 0], + [-147, 164], + [-36, 0], + [-148, 165], + [0, 41], + [-36, 41], + [0, 82], + [-38, 42], + [0, 41], + [38, 41], + [0, 123], + [72, 83], + [0, 41], + [38, 41], + [0, 41], + [36, 42], + [0, 41], + [74, 82], + [0, 41], + [36, 41], + [0, 42], + [38, 41], + [0, 164], + [-38, 42], + [50, 55], + [24, 27], + [37, 0], + [110, -124], + [0, -41], + [37, -41], + [0, -41] + ], + [ + [40172, 36616], + [60, -8], + [57, 25], + [67, 1], + [68, -26], + [67, -56], + [54, -63], + [45, -54], + [38, -53], + [31, -60], + [30, -60], + [18, -69], + [25, -67], + [33, -66], + [33, -67], + [55, -51], + [59, -43], + [59, -46], + [52, -56], + [52, -65], + [52, -67], + [66, -52], + [62, -44], + [54, -47], + [43, -50], + [43, -52], + [49, -51], + [42, -71], + [27, -82], + [18, -76], + [-12, -76], + [-45, -59], + [-27, -26], + [-31, -1], + [-49, 50], + [-41, 77], + [-44, 71], + [-44, 61], + [-51, 47], + [-52, 47], + [-52, 45], + [-60, 33], + [-54, 30], + [-47, 1], + [-38, -21], + [-48, -18], + [-43, -31], + [-42, -26], + [-33, -17], + [-54, 30], + [-53, 66], + [5, 47], + [14, 51], + [22, 48], + [3, 47], + [-8, 42], + [-24, 35], + [-17, 37], + [-29, 35], + [-44, 34], + [-61, 29], + [-65, 54], + [-72, 56], + [-46, 70], + [-38, 76], + [-36, 75], + [-33, 73], + [-35, 69], + [-48, 55], + [-55, 47], + [-48, 54], + [-41, 56], + [-39, 49], + [-42, 39], + [-42, 35], + [-54, 29], + [-73, 16], + [-83, 72], + [-27, 84], + [-10, 56], + [-8, 38], + [-9, 42], + [29, 41], + [56, 3], + [35, -3], + [36, -3], + [74, -14], + [63, -34], + [57, -46], + [42, -66], + [49, -66], + [56, -61], + [54, -58], + [53, -50] + ], + [ + [44663, 34500], + [-111, 0], + [0, 41], + [-37, 41], + [-73, 41], + [-110, 124], + [-74, 41], + [0, 41], + [-147, 165], + [0, 41], + [-220, 247], + [-148, 83], + [0, 41], + [-74, 82], + [0, 41], + [-72, 83], + [0, 41], + [-111, 123], + [257, 0], + [74, -82], + [0, -41], + [74, -82], + [0, -42], + [36, -41], + [0, -123], + [331, -371], + [0, -82], + [74, -41], + [146, -165], + [0, -41], + [185, -42], + [0, -82], + [0, -41] + ], + [ + [14756, 35274], + [-92, 0], + [-37, 21], + [-19, 21], + [10, 20], + [19, 52], + [18, 0], + [9, 72], + [27, 72], + [55, -20], + [19, -31], + [27, -52], + [0, -93], + [-36, -62] + ], + [ + [5083, 31327], + [-64, -11], + [0, 73], + [37, 31], + [37, 72], + [63, 134], + [38, 72], + [0, 62], + [36, 11], + [36, 0], + [38, -41], + [-29, -73], + [0, -82], + [-72, -125], + [-9, -41], + [-28, -41], + [-83, -41] + ], + [ + [4653, 30123], + [-47, -15], + [-50, 30], + [-46, 38], + [-43, 31], + [-51, 16], + [-39, 34], + [-34, 50], + [-29, 65], + [-8, 81], + [24, 83], + [44, 71], + [45, 58], + [43, 47], + [37, 41], + [34, 39], + [39, 31], + [45, 13], + [44, 14], + [37, 24], + [39, 18], + [46, 27], + [64, 16], + [68, -39], + [22, -13], + [37, -85], + [28, -82], + [-42, -302], + [-30, -37], + [-65, -67], + [-66, -54], + [-56, -46], + [-60, -52], + [-30, -35] + ], + [ + [53889, 29560], + [37, -42], + [73, 0], + [74, -82], + [110, 0], + [37, -41], + [74, 0], + [36, -41], + [36, 0], + [38, -41], + [36, 0], + [74, -83], + [0, -41], + [74, 0], + [110, -123], + [37, 0], + [73, -83], + [37, 0], + [36, -41], + [74, 0], + [36, -41], + [74, 0], + [74, -82], + [36, 0], + [74, -83], + [37, 0], + [110, -123], + [37, 0], + [111, -124], + [95, 0], + [10, -8], + [188, -198], + [0, -41], + [-62, -70], + [-48, -53], + [-37, 0], + [-74, -83], + [0, -41], + [-36, -41], + [0, -41], + [36, -41], + [-72, -82], + [0, -83], + [-74, 0], + [-147, 165], + [-74, 0], + [-110, -124], + [-37, 42], + [0, 40], + [-37, 42], + [0, 41], + [-36, 41], + [0, 165], + [36, 41], + [-36, 41], + [0, 82], + [-38, 42], + [0, 41], + [-51, 58], + [-21, 24], + [0, 41], + [-74, 0], + [-110, -123], + [0, -41], + [-37, -42], + [-74, 83], + [-73, 0], + [-37, 41], + [-37, 0], + [-37, 41], + [-74, 0], + [-36, 41], + [-74, 0], + [-36, -41], + [0, -123], + [74, -83], + [72, 0], + [0, -41], + [38, 0], + [110, -123], + [60, -21], + [0, -103], + [-9, -52], + [-9, -52], + [0, -82], + [9, -41], + [0, -42], + [-18, -51], + [-19, -93], + [0, -103], + [10, -42], + [0, -113], + [-28, -73], + [-18, -31], + [-37, -20], + [-64, -31], + [-18, -18], + [-37, -31], + [-54, -10], + [-37, -31], + [-92, -104], + [0, -217], + [9, -93], + [10, -51], + [-99, -101], + [-74, 0], + [-36, 41], + [-37, 0], + [0, 41], + [-111, 124], + [-36, 0], + [-37, 41], + [-111, 0], + [-73, 82], + [-330, 0], + [-74, 83], + [-74, -83], + [-36, 0], + [-110, -123], + [0, -41], + [-38, -42], + [0, -41], + [-36, -41], + [-74, 0], + [-73, 82], + [-148, -164], + [-72, 82], + [0, 41], + [36, 41], + [0, 42], + [36, 41], + [0, 82], + [38, 41], + [0, 41], + [36, 42], + [0, 41], + [37, 41], + [0, 82], + [37, 42], + [0, 40], + [36, 42], + [0, 206], + [37, 41], + [0, 123], + [37, 42], + [0, 41], + [-74, 82], + [-36, 0], + [-37, 41], + [-73, -82], + [0, -82], + [-110, -124], + [0, -165], + [36, -41], + [0, -41], + [-36, -41], + [0, -42], + [-38, -40], + [0, -124], + [-36, -41], + [0, -41], + [-38, -42], + [0, -41], + [-36, -41], + [0, -82], + [-36, -41], + [0, -42], + [-38, -41], + [0, -82], + [-73, -82], + [0, -83], + [-37, -41], + [0, -41], + [-36, -41], + [0, -124], + [-37, -41], + [0, -41], + [-220, -247], + [-38, 41], + [-36, 0], + [0, -82], + [-37, -41], + [37, -42], + [0, -246], + [-110, -124], + [-47, -36], + [-36, -186], + [-28, -108], + [-147, 0], + [0, -41], + [-37, -41], + [0, -82], + [-36, -41], + [0, -165], + [-37, -41], + [0, -82], + [-37, 0], + [-36, -42], + [0, -41], + [-38, 0], + [-110, 123], + [0, 42], + [-36, 41], + [0, 82], + [-37, 42], + [0, 123], + [73, 82], + [0, 247], + [74, 83], + [0, 41], + [74, 82], + [0, 42], + [36, 41], + [-184, 205], + [37, 42], + [0, 41], + [37, 0], + [74, 82], + [0, 41], + [36, 41], + [0, 83], + [37, 41], + [0, 82], + [147, 165], + [0, 41], + [37, 41], + [0, 83], + [-37, 41], + [37, 41], + [0, 123], + [36, 42], + [0, 41], + [37, 0], + [37, 41], + [0, 41], + [74, 82], + [0, 42], + [36, 41], + [0, 82], + [37, 41], + [0, 247], + [73, 83], + [0, 41], + [38, 41], + [0, 41], + [110, 124], + [0, 41], + [36, 41], + [0, 83], + [37, 40], + [0, 42], + [37, 41], + [0, 82], + [37, 41], + [0, 42], + [-147, 164], + [-38, 0], + [-72, 83], + [0, 41], + [36, 41], + [0, 123], + [36, 41], + [0, 83], + [38, 41], + [0, 83], + [183, 205], + [0, 41], + [184, 206], + [0, 206], + [36, 41], + [148, 0], + [36, -41], + [0, -206], + [-72, -82], + [0, -82], + [-148, -165], + [0, -165], + [-184, -206], + [0, -82], + [-36, -41], + [0, -41], + [110, -124], + [146, 0], + [74, 83], + [0, 41], + [148, 164], + [146, -164], + [0, -41], + [-73, -83], + [0, -82], + [73, 0], + [185, -206], + [146, 165], + [0, 82], + [38, 41], + [0, 83], + [72, 82], + [0, 123], + [38, 41], + [0, 42], + [73, 82], + [0, 83], + [37, 41], + [0, 82], + [36, 41], + [0, 82], + [37, 42], + [0, 41], + [147, 164], + [37, 0], + [36, 42], + [38, 0], + [110, 123], + [0, 41], + [74, 83], + [36, 0] + ], + [ + [10182, 18609], + [0, -248], + [-147, -164], + [-37, 0], + [-44, -50], + [-29, -33], + [-40, -45], + [-34, -46], + [-34, -49], + [-28, -58], + [-8, -83], + [8, -92], + [32, -69], + [23, -56], + [-8, -53], + [-24, -48], + [-32, -42], + [-24, -45], + [-17, -53], + [-23, -48], + [-28, -53], + [-50, -58], + [-106, -27], + [-70, 14], + [-50, -3], + [-39, -39], + [-36, -60], + [-37, -74], + [-44, -78], + [-54, -65], + [-23, -33], + [-36, -16], + [-57, -17], + [-80, 33], + [-74, 70], + [-36, 41], + [0, 247], + [-295, 329], + [0, 41], + [37, 42], + [0, 41], + [220, 247], + [0, 41], + [38, 41], + [0, 41], + [36, 41], + [0, 41], + [184, 206], + [37, 0], + [73, 83], + [37, 0], + [74, 82], + [36, 0], + [37, 41], + [73, 0], + [38, -41], + [36, 0], + [36, -41], + [38, 0], + [36, -41], + [74, 0], + [36, 41], + [148, 0], + [73, 82], + [0, 83], + [37, 41], + [0, 123], + [111, 124], + [36, 0], + [110, -124], + [-74, -82], + [0, -41], + [-36, -41] + ], + [ + [11983, 18897], + [37, -41], + [183, 0], + [111, -124], + [0, -41], + [147, -165], + [37, 0], + [37, 41], + [0, 124], + [37, 41], + [36, 0], + [74, -82], + [0, -41], + [74, -83], + [36, 0], + [147, -165], + [0, -41], + [37, -41], + [0, -41], + [221, -247], + [0, -206], + [36, -41], + [0, -41], + [74, -82], + [36, 0], + [74, 82], + [36, 0], + [38, -41], + [36, 0], + [441, -494], + [38, 0], + [32, 22], + [44, 26], + [41, 31], + [61, 23], + [94, 12], + [78, 18], + [65, 45], + [71, 56], + [87, 65], + [12, -2], + [39, -8], + [37, 0], + [36, -41], + [0, -42], + [38, -41], + [0, -82], + [36, -41], + [110, -124], + [37, 0], + [37, -41], + [73, 0], + [368, -412], + [65, -35], + [79, 0], + [73, 34], + [32, 8], + [34, 9], + [39, -42], + [40, -43], + [72, -81], + [47, -75], + [34, -63], + [73, -82], + [37, 0], + [36, -41], + [38, 0], + [183, -206], + [0, -288], + [-294, -330], + [0, -41], + [-257, -288], + [-37, 0], + [-184, 206], + [-36, -41], + [-38, 0], + [-36, -41], + [-148, 164], + [-110, 0], + [-61, 25], + [-40, 14], + [-52, 14], + [-45, 29], + [-49, 28], + [-54, 25], + [-57, 25], + [-24, 2], + [-37, 2], + [-63, -4], + [-64, -21], + [-66, 9], + [-75, 12], + [-88, 4], + [-84, 65], + [-34, 68], + [-30, 49], + [-40, 34], + [-46, 33], + [-54, 35], + [-69, 19], + [-72, 29], + [-69, 39], + [-63, 45], + [-60, 38], + [-625, 700], + [-37, -1], + [-37, 42], + [-147, 0], + [-146, -165], + [-38, 0], + [-36, -41], + [-37, 0], + [-73, 82], + [-37, 0], + [-37, 41], + [-37, 0], + [-37, 42], + [-183, -1], + [-74, 83], + [-36, 0], + [-38, 41], + [-36, 0], + [-110, 124], + [0, 123], + [-37, 41], + [0, 288], + [-37, 42], + [0, 164], + [-37, 41], + [0, 124], + [-36, 41], + [0, 41], + [-37, 42], + [0, 82], + [-37, 41], + [0, 41], + [-147, 165], + [0, 41], + [-37, 41], + [0, 165], + [74, 82], + [36, 0], + [74, 83], + [37, 0], + [73, 82], + [0, 82], + [44, 49], + [67, 75], + [36, 0] + ], + [ + [14116, 17909], + [0, -41], + [-74, 0], + [0, 41], + [-74, 0], + [0, -41], + [-74, 0], + [0, 82], + [38, 41], + [0, 41], + [36, 41], + [0, 41], + [-74, 83], + [112, 123], + [0, 41], + [110, 0], + [0, -82], + [73, -41], + [0, -247], + [-73, -82] + ], + [ + [10881, 17703], + [36, -41], + [74, 0], + [74, -83], + [73, 0], + [184, -206], + [0, -123], + [220, -247], + [0, -41], + [37, -41], + [0, -165], + [37, -41], + [0, -83], + [36, -41], + [0, -41], + [74, -82], + [0, -41], + [221, -247], + [73, 0], + [37, -42], + [36, 0], + [38, 42], + [110, 0], + [36, 41], + [147, 0], + [37, -41], + [37, 0], + [37, -42], + [37, 0], + [73, 83], + [111, 0], + [146, -165], + [0, -41], + [295, -330], + [36, 0], + [184, -205], + [74, 0], + [36, 41], + [74, 0], + [183, -206], + [258, 0], + [36, -41], + [38, 0], + [73, -82], + [37, 0], + [36, 41], + [16, -18], + [21, -23], + [147, 0], + [73, -83], + [32, -73], + [12, -76], + [-17, -110], + [-21, -120], + [-16, -78], + [-18, -42], + [-15, -39], + [-24, -41], + [-14, -58], + [-30, -60], + [-39, -62], + [-48, -59], + [-56, -52], + [-54, -53], + [-53, -58], + [-54, -61], + [-61, -62], + [-82, -43], + [-44, -15], + [-42, -2], + [-54, 10], + [-58, 13], + [-49, 31], + [-47, 39], + [-50, 40], + [-57, 37], + [-57, 36], + [-50, 46], + [-48, 42], + [-53, 32], + [-62, 18], + [-60, 29], + [-55, 35], + [-39, 46], + [-46, 32], + [-46, 37], + [-49, 20], + [-57, 4], + [-63, 7], + [-61, 34], + [-71, 38], + [-82, 34], + [-64, 59], + [-56, 63], + [-45, 82], + [-44, 85], + [-45, 86], + [-36, 80], + [-26, 65], + [-34, 43], + [-37, 32], + [-33, 33], + [-38, 0], + [-36, 41], + [-36, 0], + [-38, -41], + [-36, 0], + [-16, -18], + [-21, -23], + [-37, 0], + [-36, -42], + [-37, 0], + [-110, -123], + [0, -42], + [-37, -41], + [0, -123], + [-74, -82], + [147, -165], + [0, -41], + [37, -41], + [0, -83], + [37, -41], + [0, -41], + [73, -82], + [0, -83], + [74, -82], + [0, -41], + [74, 0], + [36, -42], + [110, 0], + [74, -82], + [73, 0], + [37, -41], + [147, 0], + [37, -41], + [73, 0], + [38, -41], + [0, -83], + [-38, -41], + [0, -82], + [110, -124], + [0, -41], + [38, -41], + [0, -41], + [36, -42], + [0, -123], + [37, -41], + [0, -82], + [-73, -83], + [-38, 0], + [-72, 83], + [-38, 0], + [-73, 82], + [-37, 0], + [-36, 41], + [-37, 0], + [-37, 42], + [-74, 0], + [-36, 40], + [-147, 0], + [-74, -82], + [-110, 0], + [-59, -66], + [-15, -16], + [-36, 0], + [-258, -288], + [-37, 0], + [-146, -165], + [-38, 41], + [-73, -82], + [-147, 0], + [-37, 41], + [-73, 0], + [-37, 41], + [-36, 0], + [-111, -124], + [-37, 1], + [-36, -41], + [-38, 0], + [-36, 41], + [-110, 0], + [-37, 41], + [-147, 0], + [-37, 41], + [-36, 0], + [-38, 41], + [0, 41], + [-36, 41], + [0, 247], + [-37, 42], + [0, 41], + [-37, 41], + [0, 41], + [-110, 123], + [0, 42], + [-74, 82], + [0, 41], + [-36, 42], + [0, 41], + [36, 41], + [0, 165], + [38, 41], + [0, 617], + [-38, 41], + [0, 42], + [-36, 41], + [0, 41], + [-74, 82], + [-110, 0], + [-21, -23], + [-16, -18], + [-36, 0], + [-38, -41], + [0, -82], + [-110, -124], + [-110, 124], + [0, 41], + [-36, 41], + [-74, 0], + [-19, -21], + [-18, -20], + [-37, 0], + [-110, 123], + [-37, 0], + [-73, 83], + [0, 123], + [-37, 41], + [0, 41], + [-36, 41], + [0, 42], + [-38, 41], + [-36, -41], + [-36, -42], + [-38, 0], + [-74, -82], + [-73, 82], + [0, 83], + [37, 41], + [0, 41], + [36, 42], + [0, 41], + [38, 41], + [0, 206], + [-38, 41], + [0, 41], + [-36, 41], + [0, 124], + [-37, 41], + [0, 41], + [-37, 41], + [37, 41], + [0, 42], + [73, 82], + [112, -124], + [0, -41], + [110, -123], + [73, 0], + [110, 123], + [37, 0], + [37, 41], + [110, 0], + [40, 124], + [34, 123], + [330, 371], + [147, 0], + [74, -82], + [0, -42], + [36, -41], + [-36, -41], + [0, -288], + [-37, 0], + [-37, -41], + [0, -41], + [-36, -42], + [0, -41], + [-37, -41], + [37, -41], + [0, -41], + [73, -83], + [111, 0], + [36, -41], + [36, 0], + [38, 41], + [-38, 41], + [38, 42], + [0, 41], + [36, 41], + [0, 41], + [-36, 41], + [0, 42], + [73, 82], + [0, 165], + [-37, 41], + [0, 123], + [110, 124], + [0, 82], + [38, 41], + [0, 82], + [36, 42], + [-74, 82], + [0, 41], + [-36, 41], + [0, 42], + [-37, 41], + [0, 41], + [-37, 41], + [0, 82], + [74, 83], + [36, 0], + [38, 41], + [110, 0], + [73, 82], + [0, 41], + [74, 83], + [0, 41], + [184, 206] + ], + [ + [8387, 16811], + [60, -35], + [71, 3], + [47, -9], + [23, -4], + [57, -52], + [56, -68], + [65, -69], + [72, -55], + [61, -40], + [43, -39], + [17, -39], + [-21, -49], + [-44, -57], + [-47, -62], + [-53, -51], + [-64, -43], + [-83, -41], + [-39, -13], + [-55, -19], + [-77, 11], + [-70, 33], + [-56, 43], + [-47, 44], + [-48, 36], + [-52, 26], + [-47, 24], + [-46, 15], + [-46, 13], + [-49, 24], + [-56, 18], + [-49, 32], + [-32, 43], + [-3, 71], + [8, 91], + [9, 86], + [14, 94], + [36, 81], + [52, 31], + [68, 30], + [43, 9], + [45, 9], + [56, -15], + [58, -15], + [70, -47], + [53, -45] + ], + [ + [25989, 14245], + [-221, 0], + [0, 41], + [-110, 41], + [73, 82], + [0, 41], + [37, 42], + [0, 41], + [18, 20], + [19, 21], + [74, 0], + [0, -82], + [146, -83], + [38, -41], + [-74, -82], + [0, -41] + ], + [ + [29114, 14533], + [146, -165], + [0, -41], + [331, -371], + [37, 0], + [257, -288], + [0, -206], + [-110, -123], + [-36, 0], + [-38, 41], + [-110, 0], + [-37, -41], + [-73, 0], + [-37, -42], + [-110, 0], + [-18, -20], + [-19, -21], + [-37, 0], + [-184, -205], + [-36, 41], + [-37, 0], + [-37, 41], + [-73, 0], + [-37, 41], + [-221, 0], + [-36, 42], + [-38, 0], + [-36, 40], + [-74, 0], + [-36, 41], + [-74, 0], + [-36, 42], + [-37, -42], + [-258, 0], + [-36, 42], + [-38, 0], + [-36, 41], + [-74, 0], + [-73, 82], + [0, 124], + [-147, 165], + [0, 82], + [-37, 41], + [0, 82], + [37, 41], + [0, 42], + [37, 41], + [73, 0], + [148, 165], + [36, 0], + [36, 41], + [74, 0], + [37, 41], + [37, 0], + [74, 82], + [36, 0], + [37, 41], + [37, 0], + [37, 42], + [36, 0], + [37, 41], + [73, 0], + [38, -41], + [36, 0], + [36, 41], + [148, 0], + [36, -41], + [37, 0], + [37, 41], + [147, 0], + [74, 0], + [36, -41], + [38, 41] + ], + [ + [25548, 13833], + [36, -41], + [37, 0], + [37, -41], + [37, 0], + [36, -42], + [110, 0], + [38, -41], + [256, 0], + [38, -41], + [146, 0], + [37, 41], + [148, 0], + [36, 41], + [147, 0], + [37, -41], + [36, 0], + [38, -41], + [73, 0], + [37, -41], + [110, 0], + [37, -41], + [110, 0], + [74, -83], + [110, 0], + [36, -41], + [37, 0], + [184, -205], + [0, -42], + [37, -41], + [37, 0], + [36, -41], + [37, 0], + [37, -41], + [74, 0], + [36, -42], + [221, 0], + [37, -41], + [36, 41], + [37, 0], + [37, 42], + [37, 0], + [73, -83], + [221, 0], + [36, -41], + [37, 0], + [37, -41], + [73, 0], + [111, -124], + [73, 0], + [148, -164], + [36, 0], + [0, -82], + [74, -83], + [0, -41], + [73, -82], + [37, 0], + [18, 20], + [18, 21], + [74, 0], + [37, 41], + [73, 0], + [111, 124], + [0, 40], + [74, 83], + [110, 0], + [36, 41], + [110, 0], + [37, 41], + [37, 0], + [37, -41], + [73, 0], + [111, 124], + [110, 0], + [36, -42], + [0, -164], + [148, -165], + [0, -41], + [-74, -82], + [0, -42], + [-36, -41], + [0, -41], + [-38, 0], + [0, -41], + [-73, -82], + [-46, -93], + [-18, -31], + [-47, -41], + [-36, -41], + [0, -83], + [-37, -41], + [0, -41], + [-37, -41], + [0, -41], + [-73, -83], + [-82, -102], + [-46, -62], + [-56, -41], + [-36, -42], + [-38, 0], + [-72, -82], + [-38, 0], + [-36, -41], + [0, -83], + [-74, -82], + [0, -41], + [-37, -41], + [0, -41], + [-147, -165], + [-73, 0], + [-37, 41], + [-73, 0], + [0, 206], + [-110, 0], + [-38, -41], + [-36, 0], + [-258, -288], + [0, -42], + [-73, -82], + [-110, 0], + [-294, 330], + [-74, 0], + [-37, 41], + [-36, 0], + [-184, 205], + [36, 42], + [-36, 41], + [0, 41], + [-38, 41], + [-72, 0], + [-47, 0], + [-54, -10], + [-194, 175], + [0, 82], + [-36, 41], + [0, 41], + [-74, 83], + [0, 41], + [-74, 82], + [0, 124], + [-146, 165], + [-74, 0], + [-110, 123], + [0, 41], + [-37, 41], + [-37, 0], + [-37, 42], + [-146, 0], + [-38, 41], + [-36, 0], + [-110, 123], + [0, 42], + [-148, 164], + [-36, 0], + [-74, 82], + [-37, 0], + [-146, 165], + [-74, 0], + [-36, 41], + [-74, 0], + [-110, 124], + [0, 41], + [-74, 83], + [0, 40], + [-37, 0], + [-37, 41], + [-36, 0], + [-37, 42], + [-37, 0], + [-37, 41], + [-73, 0], + [-147, 165], + [-37, 0], + [-147, 164], + [0, 42], + [36, 41], + [74, 0], + [37, 41], + [221, 0] + ], + [ + [29298, 13041], + [92, -62], + [164, 0], + [0, -42], + [-37, -41], + [0, -41], + [-257, 0], + [-63, 41], + [29, 83], + [72, 62] + ], + [ + [19372, 11074], + [37, -41], + [36, 0], + [37, -41], + [37, 0], + [36, -41], + [38, 0], + [36, -41], + [37, 0], + [221, -247], + [36, 0], + [74, -83], + [37, 1], + [36, -42], + [74, 0], + [36, -41], + [38, 0], + [330, -370], + [0, -42], + [74, -82], + [0, -41], + [405, -453], + [441, -494], + [0, -41], + [36, -41], + [0, -206], + [36, -41], + [0, -83], + [-72, -82], + [0, -41], + [-38, -41], + [-36, 0], + [-37, 41], + [-37, 0], + [-37, 41], + [-73, 0], + [-37, 41], + [-74, 0], + [-36, 41], + [-258, 0], + [-146, 165], + [0, 41], + [-92, 182], + [0, 62], + [-27, 21], + [-47, 30], + [-9, 42], + [-36, 31], + [-36, 51], + [-83, 31], + [-27, -41], + [-9, -93], + [0, -103], + [-10, -83], + [-91, -51], + [-46, -42], + [-46, -31], + [-147, -41], + [-182, 0], + [-83, -31], + [-37, 0], + [-96, -16], + [-36, -41], + [-74, 0], + [-36, 41], + [-74, 0], + [-73, 10], + [-92, 0], + [-92, 72], + [-36, 0], + [-38, 41], + [-36, 0], + [-37, 41], + [-37, 0], + [-221, 248], + [-36, 0], + [-37, 40], + [-37, 0], + [-110, 124], + [0, 41], + [-74, 83], + [0, 41], + [-183, 206], + [0, 41], + [-37, 41], + [0, 123], + [37, 42], + [0, 164], + [-37, 42], + [0, 82], + [37, 41], + [0, 82], + [110, 124], + [73, 0], + [38, 41], + [110, 0], + [146, -165], + [0, -41], + [37, -41], + [0, -41], + [37, -41], + [0, -41], + [110, -124], + [37, 0], + [37, 41], + [0, 41], + [73, 83], + [0, 123], + [-36, 41], + [0, 42], + [-37, 41], + [0, 41], + [-74, 82], + [0, 83], + [-37, 41], + [0, 82], + [294, 329], + [111, 0], + [37, -41], + [36, 41], + [74, 0] + ], + [ + [17792, 10828], + [36, -42], + [0, -41], + [-74, -82], + [0, -412], + [38, -41], + [0, -41], + [36, -41], + [0, -83], + [-74, -82], + [0, -41], + [-110, 0], + [-73, -82], + [-37, 0], + [-110, -124], + [-111, 0], + [-36, -41], + [0, -41], + [-258, 0], + [-36, -42], + [-37, 0], + [-37, 42], + [-110, 0], + [-37, -42], + [-74, 0], + [-36, 42], + [-74, 0], + [-36, 41], + [-38, 0], + [-257, 288], + [0, 41], + [221, 247], + [36, 0], + [74, 82], + [37, 42], + [73, 0], + [37, 41], + [0, 41], + [37, 41], + [-110, 124], + [-74, 0], + [-36, 41], + [0, 82], + [73, 83], + [37, 0], + [29, 32], + [44, 50], + [37, 0], + [74, -83], + [36, 1], + [37, -42], + [74, 0], + [73, 83], + [73, 0], + [38, 41], + [73, 0], + [37, -41], + [36, 0], + [37, -41], + [37, 0], + [110, 123], + [37, 0], + [74, 82], + [73, 0], + [73, -82], + [0, -41], + [38, -41], + [0, -41] + ], + [ + [29437, 9179], + [-54, -11], + [-28, 30], + [-30, 53], + [-48, 62], + [-55, 71], + [-60, 72], + [-46, 88], + [-37, 95], + [-16, 99], + [17, 52], + [11, 34], + [67, -10], + [46, -21], + [46, -51], + [27, -42], + [37, -72], + [37, -51], + [36, -42], + [64, -103], + [46, -41], + [37, -21], + [24, -58], + [-39, -74], + [-82, -59] + ], + [ + [31695, 9232], + [-72, 0], + [-56, 72], + [-27, 41], + [-29, 73], + [65, 51], + [92, 72], + [92, 175], + [18, 21], + [18, 20], + [38, 0], + [36, -41], + [83, -124], + [-18, -102], + [-101, -155], + [-38, -31], + [-101, -72] + ], + [ + [31356, 9428], + [-92, -93], + [-74, -123], + [-55, -72], + [-46, -11], + [-120, 0], + [-55, 41], + [-110, 52], + [0, 165], + [64, 50], + [37, 0], + [45, -31], + [28, -10], + [37, 0], + [73, 10], + [37, 72], + [72, 42], + [29, 25], + [18, 16], + [75, -51], + [37, -41], + [0, -41] + ], + [ + [31135, 8934], + [74, -83], + [36, 0], + [37, 41], + [37, 0], + [257, -288], + [36, 0], + [222, -247], + [36, 0], + [31, -50], + [38, -47], + [29, -60], + [8, -75], + [-12, -73], + [-18, -63], + [-17, -56], + [-16, -50], + [-6, -60], + [-19, -72], + [-73, -83], + [-42, -38], + [-30, 14], + [-45, 18], + [-39, 27], + [-29, 35], + [-20, 47], + [-24, 47], + [-34, 45], + [-42, 45], + [-45, 47], + [-47, 45], + [-42, 44], + [-20, 25], + [-111, 124], + [0, 41], + [-36, 41], + [0, 41], + [-38, 41], + [0, 42], + [-36, 41], + [0, 41], + [-36, 41], + [36, 41], + [-74, 82], + [0, 42], + [-74, 82], + [0, 82], + [30, 33], + [44, 50], + [74, 0] + ], + [ + [18048, 8481], + [-110, 0], + [0, 41], + [37, 41], + [0, 41], + [-73, 83], + [0, 41], + [-74, 82], + [36, 41], + [-36, 41], + [184, 0], + [36, -41], + [0, -329], + [0, -41] + ], + [ + [32165, 8645], + [0, -41], + [72, 0], + [38, -41], + [73, 0], + [37, 41], + [36, -41], + [44, -33], + [29, -58], + [24, -56], + [22, -51], + [14, -47], + [-28, -58], + [-31, -52], + [-31, -4], + [-44, 21], + [-72, 9], + [-37, 41], + [-36, 0], + [-38, 41], + [-36, 0], + [-36, 41], + [-38, 0], + [-36, 42], + [-37, 0], + [-37, 41], + [-37, 0], + [-73, 82], + [0, 41], + [-37, 0], + [-36, 41], + [0, 41], + [-38, 42], + [111, 123], + [37, 0], + [36, 41], + [74, 0], + [37, -41], + [0, -82], + [74, -83] + ], + [ + [17608, 8357], + [-111, 0], + [0, 42], + [-73, 41], + [-37, 41], + [-74, 41], + [74, 82], + [0, 83], + [-37, 41], + [0, 41], + [-37, 41], + [368, 0], + [0, -82], + [-73, -83], + [36, -41], + [-73, -41], + [73, -41], + [0, -82], + [-36, -41], + [0, -42] + ], + [ + [30400, 8357], + [36, -41], + [38, 0], + [36, -41], + [74, 0], + [36, 41], + [74, 83], + [37, 0], + [110, -124], + [0, -82], + [36, -42], + [74, 1], + [148, -165], + [0, -41], + [-38, -42], + [-36, 0], + [-74, -82], + [0, -165], + [36, -41], + [0, -41], + [38, -41], + [0, -83], + [36, -40], + [0, -83], + [-36, -41], + [-4, -49], + [-5, -67], + [-58, -73], + [-21, -20], + [-44, 12], + [-52, 33], + [-48, 41], + [-39, 42], + [-30, 46], + [-28, 51], + [-28, 61], + [-42, 57], + [-42, 72], + [-184, 206], + [0, 41], + [-110, 123], + [-37, 40], + [-43, 47], + [-58, 48], + [-61, 61], + [-69, 56], + [-46, 71], + [5, 92], + [65, 79], + [70, 62], + [71, 31], + [58, 14], + [27, -17], + [19, -13], + [40, -29], + [40, -22], + [29, -26] + ], + [ + [19188, 6711], + [74, -83], + [112, 11], + [128, -52], + [53, 0], + [38, -41], + [73, 0], + [111, -124], + [36, 0], + [37, -41], + [37, 0], + [36, -41], + [74, 0], + [147, -82], + [146, 0], + [38, 41], + [80, 57], + [146, 51], + [56, 62], + [122, 77], + [183, 0], + [37, 41], + [37, 41], + [148, 0], + [36, 41], + [37, 0], + [18, 21], + [19, 21], + [36, -42], + [37, 0], + [37, -41], + [37, 41], + [36, 0], + [74, 83], + [36, -41], + [111, -37], + [56, -134], + [73, -196], + [46, -145], + [0, -413], + [9, -340], + [0, -218], + [0, -82], + [-37, -41], + [0, -124], + [-184, -205], + [-36, 0], + [-217, -85], + [-201, -93], + [-101, -103], + [-9, -197], + [-23, -222], + [0, -83], + [-38, -41], + [-122, -174], + [-166, -165], + [-116, -155], + [-37, 0], + [-18, -21], + [-18, -20], + [-74, 0], + [-36, -41], + [-38, 0], + [-18, -21], + [-18, -20], + [-38, 0], + [-36, -41], + [-257, -42], + [-37, 42], + [-37, 0], + [-36, 41], + [-37, 0], + [-37, 41], + [-36, 0], + [-111, 123], + [0, 41], + [73, 83], + [74, 0], + [37, -41], + [147, 0], + [37, -42], + [73, 0], + [37, -41], + [74, 0], + [36, 41], + [36, 0], + [74, 83], + [74, 0], + [36, 41], + [38, 0], + [293, 329], + [0, 83], + [38, 41], + [0, 247], + [36, 41], + [0, 41], + [-110, 124], + [-74, 0], + [-36, 41], + [-37, 0], + [-37, 41], + [-37, 0], + [-74, 82], + [-36, 0], + [-36, 42], + [-38, -1], + [-110, 124], + [-36, 0], + [-111, 124], + [-37, 0], + [-73, 82], + [-37, 0], + [-73, 82], + [-37, 0], + [-37, 41], + [-36, 0], + [-38, -41], + [-110, 0], + [-36, -41], + [-38, 0], + [-36, -41], + [-37, 0], + [-73, -82], + [0, -42], + [-295, -329], + [0, -82], + [-36, -42], + [0, -164], + [147, -165], + [0, -41], + [37, 0], + [293, -329], + [0, -42], + [-73, -82], + [-37, 0], + [-588, 659], + [0, 41], + [37, 41], + [0, 124], + [37, 41], + [0, 41], + [37, 41], + [0, 41], + [-37, 41], + [0, 42], + [-37, 41], + [0, 41], + [-37, 41], + [0, 41], + [-37, 42], + [0, 41], + [-36, 41], + [0, 82], + [-37, 41], + [0, 42], + [-37, 41], + [0, 41], + [37, 41], + [0, 41], + [-37, 41], + [0, 83], + [-37, 41], + [0, 41], + [-36, 41], + [0, 371], + [36, 41], + [0, 41], + [-36, 41], + [0, 124], + [36, 41], + [0, 124], + [74, 82], + [0, 82], + [37, 41], + [0, 124], + [36, 41], + [0, 165], + [-36, 41], + [0, 41], + [-74, 82], + [0, 165], + [37, 41], + [0, 42], + [110, 123], + [0, -41], + [74, -82], + [0, -165], + [73, -83], + [0, -41], + [148, -165], + [0, -41], + [36, -41], + [0, -164] + ], + [ + [28672, 7204], + [-111, 0], + [0, 42], + [-72, 41], + [0, 165], + [36, 41], + [184, 0], + [0, -206], + [-37, -41], + [0, -42] + ], + [ + [28866, 6877], + [-15, -26], + [-25, 25], + [-83, -1], + [-36, 21], + [-28, 51], + [28, 42], + [0, 41], + [9, 30], + [17, 66], + [34, 70], + [48, 83], + [62, 36], + [63, 1], + [63, -18], + [51, -57], + [22, -98], + [-41, -70], + [-55, -54], + [-43, -55], + [-35, -50], + [-36, -37] + ], + [ + [14152, 6752], + [0, -41], + [74, -83], + [0, -41], + [36, -41], + [37, 0], + [74, -82], + [110, 0], + [36, 41], + [38, 0], + [36, 41], + [37, 0], + [36, 41], + [37, 41], + [38, 0], + [36, 41], + [147, 0], + [37, -41], + [37, -41], + [0, -41], + [11, -61], + [17, -41], + [0, -62], + [-64, -10], + [-46, 0], + [-73, -21], + [-64, -62], + [-36, -52], + [0, -61], + [27, -21], + [36, -21], + [92, -21], + [137, 0], + [37, -30], + [75, -73], + [92, -41], + [18, -10], + [35, -113], + [146, -165], + [38, 0], + [29, -78], + [-2, -80], + [-36, -66], + [-54, -44], + [-65, -12], + [-59, 21], + [-51, 22], + [-35, 28], + [-28, 16], + [-44, 21], + [-29, -21], + [-44, -41], + [-60, -47], + [-80, -30], + [-93, -24], + [-94, -34], + [-98, -23], + [-49, -6], + [-46, 22], + [-60, 14], + [-57, 31], + [-61, 29], + [-71, 20], + [-24, 8], + [-47, 16], + [-76, -5], + [-78, -18], + [-77, -6], + [-75, -1], + [-76, 0], + [-73, -8], + [-63, -30], + [-64, -22], + [-63, -10], + [-67, 17], + [-60, -3], + [-55, -19], + [-59, -7], + [-61, -1], + [-62, 3], + [-57, 11], + [-51, 21], + [-53, 10], + [-48, 14], + [-47, 19], + [-53, 5], + [-58, 0], + [-58, 1], + [-60, 6], + [-56, 27], + [-60, 14], + [-55, 24], + [-61, 9], + [-64, 1], + [-68, 1], + [-71, 5], + [-71, 21], + [-75, 17], + [-74, 25], + [-72, 38], + [-46, 74], + [3, 98], + [44, 81], + [58, 66], + [63, 60], + [75, 48], + [80, 43], + [78, 41], + [73, 46], + [65, 58], + [54, 71], + [51, 75], + [49, 78], + [48, 78], + [52, 71], + [58, 56], + [64, 43], + [73, 0], + [19, 21], + [18, 21], + [73, 0], + [37, 41], + [73, 0], + [38, 41], + [73, 0], + [37, -41], + [110, 0], + [36, 41], + [38, 0], + [36, 41], + [74, 0], + [15, 17], + [21, 24], + [74, 0], + [37, 41], + [36, 0], + [37, 41], + [37, 0], + [36, 42], + [38, 0], + [36, 41], + [38, 0], + [110, -124], + [0, -123], + [36, -41] + ], + [ + [23415, 6669], + [38, -41], + [72, 0], + [221, -247], + [0, -82], + [37, -41], + [0, -42], + [111, -123], + [0, -41], + [110, -124], + [74, 0], + [36, 41], + [15, -17], + [21, -24], + [38, 0], + [36, -41], + [0, -41], + [37, -41], + [0, -42], + [37, -40], + [36, 0], + [74, -83], + [0, -41], + [110, -124], + [37, -41], + [0, -164], + [-37, -42], + [0, -41], + [-96, -108], + [-124, 26], + [-37, 41], + [-73, 0], + [-38, 41], + [-36, -41], + [-103, 34], + [-95, 23], + [-35, 49], + [-31, 46], + [-30, 54], + [-37, 0], + [-37, 41], + [-37, 0], + [-36, 41], + [-74, 0], + [-110, 124], + [-220, 0], + [-37, 41], + [0, 41], + [-37, 41], + [0, 124], + [-37, 41], + [0, 123], + [-37, 42], + [0, 41], + [-22, 93], + [22, 109], + [32, 88], + [11, 74], + [27, 46], + [41, 43], + [37, 41], + [0, 41], + [73, 82], + [73, 0] + ], + [ + [14741, 3705], + [36, -41], + [37, 0], + [37, -41], + [73, 0], + [330, -371], + [-36, -41], + [0, -82], + [-74, -82], + [-220, 0], + [-37, -42], + [-36, 0], + [0, -41], + [-37, -41], + [0, -41], + [-37, -42], + [0, -205], + [-110, -124], + [-148, 0], + [-36, -41], + [-184, 0], + [-37, -41], + [-36, 0], + [-22, -24], + [-15, -17], + [-37, 0], + [-36, -41], + [-74, 0], + [-36, -42], + [-38, 0], + [-74, -82], + [-73, 0], + [-184, -206], + [-36, 42], + [-37, -1], + [-37, 41], + [0, 42], + [-36, 41], + [0, 41], + [-38, 41], + [0, 41], + [-36, 42], + [0, 82], + [36, 41], + [0, 41], + [-36, 41], + [0, 124], + [-36, 41], + [0, 41], + [-74, 82], + [0, 42], + [-74, 82], + [0, 41], + [-36, 41], + [0, 41], + [36, 42], + [18, 10], + [37, 31], + [93, -83], + [36, 0], + [36, 42], + [74, 0], + [37, -42], + [110, 0], + [37, -41], + [73, 0], + [37, 41], + [37, 0], + [148, 165], + [0, 83], + [36, 41], + [0, 82], + [36, 41], + [0, 165], + [38, 41], + [257, 0], + [36, -41], + [148, 0], + [36, 41], + [148, 0] + ], + [ + [15366, 1441], + [36, -42], + [74, 0], + [110, -123], + [37, 0], + [36, -41], + [37, 0], + [37, -41], + [36, 41], + [74, 0], + [74, 82], + [73, 0], + [37, -41], + [36, 0], + [38, -41], + [146, 0], + [37, -41], + [110, 0], + [74, -83], + [36, 0], + [38, 41], + [36, 0], + [25, -81], + [-8, -74], + [-29, -64], + [-32, -54], + [-36, -43], + [-33, -39], + [-22, -38], + [-18, -37], + [-16, -42], + [-22, -42], + [-29, -44], + [-27, -55], + [-12, -70], + [-13, -74], + [12, -74], + [3, -76], + [-7, -74], + [-30, -48], + [-73, -82], + [-37, -41], + [-37, 41], + [-36, -41], + [-258, 0], + [-36, 41], + [-38, 0], + [-36, 41], + [-257, 0], + [-294, 329], + [0, 289], + [-38, 41], + [0, 82], + [-36, 0], + [-37, 41], + [-220, 0], + [-37, 42], + [-73, 82], + [0, 41], + [36, 41], + [0, 41], + [147, 165], + [37, 0], + [37, 41], + [110, 0], + [36, 41], + [38, 0], + [36, 41], + [36, 0], + [38, 42], + [74, 0] + ] + ], + "transform": { + "scale": [0.000007556642339590362, 0.000006747147159528739], + "translate": [103.61666870117193, 1.166389942169189] + }, + "objects": { + "singapore": { + "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]], + [[23]], + [[24]], + [[25]], + [[26]], + [[27]], + [[28]], + [[29]], + [[30]], + [[31]], + [[32]], + [[33]], + [[34]], + [[35]], + [[36]], + [[37]], + [[38]], + [[39]], + [[40]], + [[41]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 205, + "ISO": "SGP", + "NAME_0": "Singapore", + "OBJECTID_1": 197, + "ISO3": "SGP", + "NAME_ENGLI": "Singapore", + "NAME_ISO": "SINGAPORE", + "NAME_FAO": "Singapore", + "NAME_LOCAL": "Singapore", + "NAME_OBSOL": null, + "NAME_VARIA": null, + "NAME_NONLA": null, + "NAME_FRENC": "Singapour", + "NAME_SPANI": "Singapur", + "NAME_RUSSI": "Сингапур", + "NAME_ARABI": "سنغافورة", + "NAME_CHINE": "新加坡", + "WASPARTOF": null, + "CONTAINS": null, + "SOVEREIGN": "Singapore", + "ISO2": "SG", + "WWW": null, + "FIPS": "SN", + "ISON": 702, + "VALIDFR": "19650809", + "VALIDTO": "Present", + "POP2000": 4018114, + "SQKM": 526.041, + "POPSQKM": 7638.40461105, + "UNREGION1": "South-Eastern Asia", + "UNREGION2": "Asia", + "DEVELOPING": 1, + "CIS": 0, + "Transition": 0, + "OECD": 0, + "WBREGION": null, + "WBINCOME": "High income: nonOECD", + "WBDEBT": "Debt not classified", + "WBOTHER": null, + "CEEAC": 0, + "CEMAC": 0, + "CEPLG": 0, + "COMESA": 0, + "EAC": 0, + "ECOWAS": 0, + "IGAD": 0, + "IOC": 0, + "MRU": 0, + "SACU": 0, + "UEMOA": 0, + "UMA": 0, + "PALOP": 0, + "PARTA": 0, + "CACM": 0, + "EurAsEC": 0, + "Agadir": 0, + "SAARC": 0, + "ASEAN": 1, + "NAFTA": 0, + "GCC": 0, + "CSN": 0, + "CARICOM": 0, + "EU": 0, + "CAN": 0, + "ACP": 0, + "Landlocked": 0, + "AOSIS": 1, + "SIDS": 1, + "Islands": 1, + "LDC": 0 + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/spain-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/spain-topo.json new file mode 100644 index 000000000000..5f75e7736b51 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/spain-topo.json @@ -0,0 +1,3329 @@ +{ + "type": "Topology", + "arcs": [ + [ + [12672, 10414], + [-31, -19], + [-28, -54], + [-78, -100], + [-31, -152], + [-40, -89], + [-4, -55], + [-57, -36], + [-16, -71], + [-46, -32], + [-1, -34], + [-47, -47], + [-53, -11], + [-47, 74], + [-49, 47], + [-37, 8], + [-48, -33], + [-35, 27], + [-69, -23], + [-59, -116], + [-44, -25], + [-56, -1], + [-66, 20], + [-53, 55], + [-30, -12], + [-124, 11] + ], + [ + [11523, 9746], + [-9, 40], + [86, 60], + [-32, 61], + [70, 78], + [-35, 118], + [58, 13], + [16, 65], + [25, 11], + [38, 120], + [51, -18], + [91, -54], + [-4, 78], + [23, 117], + [51, 55], + [84, 66], + [78, 16], + [-14, 96], + [46, 11], + [-6, 77], + [36, 89], + [-19, 35], + [5, 71], + [67, 43] + ], + [ + [12229, 10994], + [27, -30], + [38, 13], + [47, -18], + [51, -45], + [-10, -71], + [10, -51], + [-13, -58], + [45, -91], + [83, -143], + [83, -13], + [82, -73] + ], + [ + [9980, 10017], + [20, -16], + [22, -90], + [-36, -71], + [-28, -16], + [-82, 59], + [-49, -63], + [39, -48], + [-30, -100], + [-38, -52], + [-45, -20], + [-65, -88], + [-67, 13], + [1, -34], + [65, -16], + [26, 42], + [44, -3], + [59, -107], + [31, -100], + [48, -32] + ], + [ + [9895, 9275], + [-48, -82], + [-18, -85], + [-67, 24], + [-12, -97], + [-32, -35], + [-75, -44], + [-48, 38], + [-117, 31], + [-35, 58], + [-61, 59], + [-40, -10], + [-61, 28], + [-25, 70], + [-45, 31], + [-46, 90], + [-26, 88], + [9, 126], + [-53, 37], + [-74, 18], + [-36, 93], + [70, 82] + ], + [ + [9055, 9795], + [-4, 63], + [17, 47] + ], + [ + [9068, 9905], + [111, -6], + [63, -39], + [97, -13], + [65, 7], + [13, 46], + [55, 33], + [67, -6], + [38, 60], + [65, -65], + [45, 24], + [42, 50], + [-32, 53], + [59, 20], + [31, -86], + [70, 49], + [52, -82], + [71, 67] + ], + [ + [10053, 11864], + [35, -35], + [101, -17], + [7, -71], + [56, -18], + [126, -79], + [11, -31], + [78, -40], + [55, -59], + [127, -59] + ], + [ + [10649, 11455], + [37, -52], + [40, -173], + [-87, -122], + [17, -70], + [-21, -172], + [58, -15], + [-21, -60], + [57, -49], + [-49, -44], + [50, -44], + [88, -140], + [37, -71] + ], + [ + [10855, 10443], + [-66, 2], + [-52, -62], + [-42, 7], + [-42, -98], + [7, -33], + [-56, -49] + ], + [ + [10604, 10210], + [-34, 34], + [-4, 58], + [-31, 13], + [-45, -27], + [-18, -36], + [-58, -15], + [-60, 50] + ], + [ + [10354, 10287], + [-14, 84], + [-83, 1], + [-32, 24], + [-48, 86], + [-43, 105], + [7, 87], + [-52, 95], + [-37, 13], + [-46, -60], + [-53, 19], + [-128, -99], + [-29, 25], + [-18, 87], + [78, 32], + [-28, 117], + [-46, 34], + [-11, 83], + [-61, 64], + [-1, 45], + [-69, 95] + ], + [ + [9640, 11224], + [38, 40], + [7, 102], + [-38, 70], + [-7, 60], + [13, 51], + [64, 32], + [51, 53], + [38, 78], + [45, -9], + [13, 34], + [96, 74], + [93, 55] + ], + [ + [11966, 11173], + [98, -53], + [62, -9] + ], + [ + [12126, 11111], + [50, -70], + [53, -47] + ], + [ + [11523, 9746], + [-101, 3], + [-68, -23], + [-59, -39], + [-98, 20], + [-36, 32], + [-57, -16], + [-78, 8] + ], + [ + [11026, 9731], + [9, 55], + [-47, 72], + [-132, 37], + [-86, 64], + [-43, 8], + [-43, 59], + [-38, 3], + [-11, 112], + [-31, 69] + ], + [ + [10855, 10443], + [38, -25], + [82, 7], + [32, 73], + [90, 69], + [44, 12], + [70, 56], + [22, 39], + [83, -57], + [78, 25], + [27, 55], + [69, 4], + [61, -49], + [146, 74], + [-1, 91], + [64, 108], + [27, 70], + [69, 61], + [18, -14], + [56, 49], + [-1, 55], + [37, 27] + ], + [ + [8608, 11306], + [56, -30], + [49, -1], + [-16, -63], + [44, -29], + [104, 4], + [27, -75], + [71, -8], + [62, 42], + [85, -86], + [77, -20], + [17, -20] + ], + [ + [9184, 11020], + [42, -43], + [-26, -29], + [25, -82], + [-44, 13], + [-49, -54], + [-48, 7], + [-125, -43], + [-31, -107], + [88, -13], + [-2, -35], + [74, -165], + [-39, -15], + [-22, -80], + [40, -41], + [-10, -86], + [-31, -154], + [23, -80], + [-11, -79], + [30, -29] + ], + [ + [9055, 9795], + [-32, 7], + [-50, 121], + [-50, 65], + [-57, 48], + [-142, 100], + [-73, 36], + [-42, 38], + [-34, 120], + [-45, -97], + [-80, 13], + [-21, -12], + [-186, -25], + [-19, 68], + [-6, 154], + [-38, 137], + [-25, 37], + [59, 119], + [17, 97], + [76, 65], + [53, 116], + [7, 73], + [67, 2], + [38, 50], + [78, -21], + [29, 149], + [29, 51] + ], + [ + [10649, 11455], + [10, 59], + [77, -22], + [148, -17], + [83, 10], + [36, 50], + [59, 3], + [84, -33], + [71, 16], + [43, -12], + [73, 45], + [1, 38], + [188, -39], + [50, 42], + [55, -30], + [42, 27], + [37, -21], + [98, 83] + ], + [ + [11804, 11654], + [69, -39], + [56, 17], + [25, -24], + [-4, -81], + [68, -18], + [-2, -104], + [34, -16], + [-4, -107], + [-80, -109] + ], + [ + [11026, 9731], + [-43, 18], + [-94, -29], + [-84, 24], + [-34, -26], + [-106, -15], + [-111, 13], + [-27, -15], + [-63, -117], + [-76, -44], + [-23, -56], + [-88, -22], + [-81, 24], + [-57, -8], + [-54, -43], + [-61, -11], + [-102, -76], + [-27, -73] + ], + [ + [9980, 10017], + [66, 31], + [113, 88], + [14, 43], + [49, 49], + [19, -43], + [71, 40], + [-21, 50], + [63, 12] + ], + [ + [9184, 11020], + [34, 34], + [80, 27], + [60, -3], + [34, 73], + [-3, 64], + [57, 55], + [115, -3], + [-40, -48], + [36, -46], + [46, 58], + [37, -7] + ], + [ + [13364, 16350], + [118, -120], + [49, 19], + [49, -31], + [47, 8], + [60, 40], + [121, -72], + [66, -85], + [48, -10], + [134, 54], + [64, -21], + [26, -42], + [52, 50], + [27, -32], + [100, 9], + [102, -12] + ], + [ + [14427, 16105], + [37, -74], + [46, -11], + [-26, -114], + [-28, -33], + [47, -134], + [-48, -211], + [5, -32], + [-39, -102], + [-68, -100], + [23, -52], + [-39, -69], + [-45, -20], + [-11, -38], + [-52, -10], + [-56, -81], + [16, -87], + [41, -7], + [34, -54], + [-38, -55], + [-38, -4], + [-10, -85] + ], + [ + [14178, 14732], + [-69, 22], + [-20, -27], + [-67, -16], + [-19, -40], + [-135, 23], + [-27, 121], + [-40, 53], + [1, 59], + [-64, -19], + [-89, 64], + [-9, 49], + [-105, 73], + [-16, 109], + [-81, 69], + [-21, 48], + [-106, 6], + [-44, 64], + [20, 64], + [50, -16], + [0, 175], + [25, 64], + [-39, 29], + [-25, -57], + [-61, 18], + [38, 91], + [1, 44], + [-31, 53], + [-32, 140], + [28, 85], + [-10, 81] + ], + [ + [13231, 16161], + [41, 46], + [-7, 65], + [56, 80], + [43, -2] + ], + [ + [14090, 14372], + [47, -91], + [-27, -107], + [25, -71], + [-83, -94] + ], + [ + [14052, 14009], + [-44, -6], + [-54, -39], + [-20, 40], + [-62, -1], + [-100, 59], + [-22, -30], + [-9, -68], + [-54, -29], + [-55, 4], + [-2, -47], + [67, -13], + [-7, -102], + [9, -49], + [-44, -28], + [48, -62], + [-43, -61], + [-45, -38], + [12, -31], + [-85, -39], + [-38, 25], + [-33, -129], + [-59, -85], + [-75, -11], + [-21, -55], + [-37, -15], + [6, -74], + [25, -28] + ], + [ + [13310, 13097], + [-53, -37], + [-35, 28], + [5, 77], + [-65, 40], + [-116, -11] + ], + [ + [13046, 13194], + [-18, 41] + ], + [ + [13028, 13235], + [62, 28], + [10, 26], + [-58, 58], + [-75, 2], + [-30, 59], + [-56, -45], + [-70, 17] + ], + [ + [12811, 13380], + [-20, 43], + [-50, 6], + [-204, 222] + ], + [ + [12537, 13651], + [44, 69], + [43, 26], + [5, 99], + [67, -19], + [48, 134], + [-20, 56], + [13, 82], + [-58, 68], + [3, 69] + ], + [ + [12682, 14235], + [45, -5], + [85, 40], + [-8, 45], + [37, 42], + [94, -10], + [12, 59], + [47, 38], + [68, -4], + [13, 35], + [113, -98], + [56, 57], + [65, -28], + [29, 71], + [51, -62], + [65, 85], + [-15, 129], + [54, 45], + [61, -9], + [56, -78], + [71, -18], + [70, -72], + [32, -1], + [129, -72], + [10, -33], + [111, -28], + [57, 9] + ], + [ + [14178, 14732], + [30, -62], + [-19, -22], + [28, -54] + ], + [ + [14217, 14594], + [-16, -55], + [-32, -3], + [-15, -65], + [-64, -34], + [0, -65] + ], + [ + [12682, 14235], + [-153, 162], + [-89, 46], + [-20, 37], + [-71, -28] + ], + [ + [12349, 14452], + [-73, 40], + [-18, 144], + [38, 66], + [15, 70], + [50, -20], + [5, -46], + [58, 27], + [-21, 83], + [10, 64], + [-20, 58], + [54, -2], + [49, 67], + [36, -1], + [19, 79], + [-50, 59], + [26, 44], + [-29, 85], + [0, 61] + ], + [ + [12498, 15330], + [7, 44] + ], + [ + [12505, 15374], + [62, -13], + [25, -34], + [61, 2], + [45, -41], + [134, -15], + [89, 139], + [-72, 89], + [-13, 102], + [13, 74], + [54, 69], + [-24, 25], + [14, 48], + [53, 63], + [-12, 43], + [43, 22], + [57, 72], + [4, 40], + [87, 1], + [8, 55], + [61, 12], + [37, 34] + ], + [ + [11504, 16814], + [-3, -55], + [-52, 8], + [-121, -41], + [-36, -31], + [10, -116] + ], + [ + [11302, 16579], + [-54, 0], + [-125, 51], + [-53, -78], + [-185, -124], + [-23, -66], + [127, -66], + [3, -74], + [-137, -33], + [-35, -3], + [-27, -5] + ], + [ + [10793, 16181], + [-53, 30], + [1, 81], + [-59, -7], + [-10, 102], + [-83, 19], + [-39, 67], + [-50, 27], + [-73, -43], + [-137, 2] + ], + [ + [10290, 16459], + [-22, 57], + [-65, 55], + [8, 59] + ], + [ + [10211, 16630], + [72, 3], + [12, 79], + [74, 12], + [27, 32], + [59, -19], + [-13, 67], + [20, 53] + ], + [ + [10462, 16857], + [183, -4], + [151, 45], + [82, 10], + [19, 30], + [102, 28], + [31, -49], + [134, 69], + [40, -6], + [77, -91], + [90, -7], + [80, -21], + [53, -47] + ], + [ + [13209, 11923], + [-25, -10], + [35, -85], + [-35, -41], + [-49, -2] + ], + [ + [13135, 11785], + [-121, 106], + [-50, -17], + [-72, -65], + [-45, 14], + [-35, -44], + [-4, -73], + [-35, -53], + [13, -55], + [2, -112], + [-85, -69], + [-62, 1], + [-9, 51], + [-47, 23], + [-126, -90], + [-54, -16], + [-66, 16], + [-38, -64], + [-76, -39], + [-37, -95], + [-53, -51], + [-9, -42] + ], + [ + [11804, 11654], + [9, 88], + [63, 36], + [23, 92], + [-86, 77], + [-9, 79], + [-56, 27], + [-34, 51], + [53, 75], + [4, 59], + [-29, 60], + [92, 139], + [-15, 58] + ], + [ + [11819, 12495], + [95, 23], + [52, -18], + [31, 20], + [105, -117], + [40, 55], + [25, -61], + [92, 58], + [72, -16], + [-9, 87], + [32, 12], + [42, -70], + [79, 12], + [90, -26], + [23, 44], + [86, 42], + [94, 61] + ], + [ + [12768, 12601], + [32, -41], + [61, -14], + [24, -28], + [146, -37], + [-25, -134], + [-55, -112], + [91, -157], + [144, 17], + [14, -48], + [9, -124] + ], + [ + [10276, 12599], + [-81, -39], + [-61, 17] + ], + [ + [10134, 12577], + [33, 125], + [27, 47], + [77, -45], + [17, -62], + [-12, -43] + ], + [ + [11674, 12659], + [32, -53], + [6, -76], + [28, -2], + [40, 52], + [39, -85] + ], + [ + [10053, 11864], + [43, 11], + [36, 123], + [22, 35], + [51, -5], + [12, 61], + [-77, 39], + [-23, 89], + [62, -28], + [38, 14], + [-32, 57], + [49, 107], + [74, -12], + [7, 28], + [-43, 114], + [39, 27], + [31, 84], + [-14, 28] + ], + [ + [10328, 12636], + [53, 4], + [4, 33], + [45, 28], + [26, 48], + [52, -41], + [101, -37], + [61, -5], + [37, 18], + [21, 77], + [95, 9], + [-13, -111], + [-45, -16], + [-23, -101], + [135, -11], + [5, -58], + [95, -41], + [58, 36], + [34, -25], + [35, 29], + [91, 2], + [61, 47], + [51, 66], + [47, 4], + [42, 67], + [116, 26], + [56, -48], + [71, -6], + [35, 29] + ], + [ + [12811, 13380], + [50, -114], + [104, -47], + [63, 16] + ], + [ + [13046, 13194], + [-47, -24], + [3, -96], + [-12, -54], + [-46, -77], + [10, -41], + [-39, -30], + [-43, 20], + [-37, -37], + [-34, -84], + [-33, -13], + [0, -157] + ], + [ + [11674, 12659], + [5, 139], + [13, 44], + [-69, 82], + [-47, 127], + [-48, 41], + [20, 119], + [-36, -3], + [-14, 86] + ], + [ + [11498, 13294], + [56, 6], + [26, 39], + [-10, 54] + ], + [ + [11570, 13393], + [138, 8], + [47, 40], + [18, 66], + [-11, 76], + [7, 78], + [65, -11], + [36, 41], + [132, 14], + [-19, 53], + [114, 48], + [72, 53], + [9, 56], + [46, -28], + [44, 43], + [50, -14], + [44, -48], + [85, -10], + [51, -174], + [39, -33] + ], + [ + [11570, 13393], + [-9, 71], + [-25, 66], + [-55, -17], + [41, 145], + [-53, 40], + [-1, 78], + [-100, 88], + [6, 35], + [-106, 67], + [21, 41], + [-24, 57], + [-29, 5], + [45, 106], + [36, 128], + [-31, 38], + [-78, 131] + ], + [ + [11208, 14472], + [100, 50], + [8, 46], + [83, 3], + [64, 50] + ], + [ + [11463, 14621], + [111, -33], + [86, 20], + [33, 38], + [31, -57], + [64, -22], + [17, 21], + [81, -35], + [106, -101], + [36, -73], + [112, -23], + [70, 43], + [44, -14], + [84, 13], + [11, 54] + ], + [ + [10328, 12636], + [-52, -37] + ], + [ + [10134, 12577], + [-9, 0] + ], + [ + [10125, 12577], + [-81, 101], + [-20, 1], + [-90, 109], + [39, 74], + [10, 57], + [-22, 91], + [-30, -2], + [-37, -48], + [-48, 21], + [25, 91], + [-33, 37], + [-57, -7], + [28, 105], + [-3, 125], + [25, 16] + ], + [ + [9831, 13348], + [162, -12], + [47, 51], + [44, -45], + [62, 28], + [0, 36], + [126, 98], + [48, 23], + [9, -77], + [53, -11], + [29, 18] + ], + [ + [10411, 13457], + [33, -19], + [84, 63], + [54, 55], + [12, -75], + [34, -22], + [39, 59], + [108, -35], + [26, 25], + [60, -59], + [30, 3], + [117, -39], + [22, -39], + [37, 8], + [90, -41], + [-11, -56], + [-61, -40], + [-39, -71], + [-44, 2], + [-52, -28], + [47, -46], + [173, 137], + [57, 32], + [65, -5], + [79, 44], + [39, -35], + [88, 19] + ], + [ + [10302, 14455], + [4, -83], + [59, -45], + [25, -63], + [31, -16], + [15, -140], + [41, 9], + [10, -51], + [38, -47], + [9, -116], + [76, 15], + [34, 31], + [88, 14] + ], + [ + [10732, 13963], + [0, -71], + [-94, -30], + [-30, -48], + [-1, -141], + [-83, -23], + [-18, -83], + [-37, -5], + [-50, -62], + [-8, -43] + ], + [ + [9831, 13348], + [-24, 52], + [-2, 58], + [-46, 37], + [-31, -48], + [-46, -14], + [-61, 22], + [-63, 82], + [-35, 2] + ], + [ + [9523, 13539], + [40, 66], + [-4, 71], + [78, 49], + [34, -48], + [65, 55], + [22, 100], + [-66, -23], + [1, 42], + [52, -6], + [50, 44], + [14, 63], + [55, 33], + [101, 111], + [0, 52], + [38, 56], + [-13, 36], + [30, 51], + [-44, 51], + [17, 94] + ], + [ + [9993, 14436], + [85, 33], + [35, -11], + [75, -56], + [49, 38], + [65, 15] + ], + [ + [11752, 16214], + [66, 0], + [139, -55], + [-12, -72], + [-145, -8], + [-13, 35], + [-53, 40], + [18, 60] + ], + [ + [11513, 16609], + [-31, -43], + [37, -26], + [-8, -97], + [65, -3], + [37, -55], + [-4, -45], + [-84, -7], + [-17, 31], + [-59, 18], + [-44, -79], + [44, -49], + [96, -67], + [63, -28], + [24, -35], + [64, -16], + [35, -59] + ], + [ + [11731, 16049], + [-20, -15], + [-93, 21], + [-77, -96], + [26, -28], + [14, -166], + [-43, -23], + [16, -113], + [-31, -48], + [72, -123], + [79, -6], + [14, -62] + ], + [ + [11688, 15390], + [-65, -97], + [-14, -48], + [-54, -12], + [-65, -89], + [-17, 38], + [-65, 42], + [3, -106], + [-60, -33], + [-4, -48], + [-37, -19], + [-40, -92], + [-63, -13] + ], + [ + [11207, 14913], + [-80, -5], + [-64, -59], + [-3, -51], + [-70, 12], + [-30, 51], + [-90, 59] + ], + [ + [10870, 14920], + [-38, 50], + [3, 66], + [-32, 37], + [21, 45] + ], + [ + [10824, 15118], + [-38, 67], + [1, 42], + [83, 32], + [-26, 105], + [26, 48], + [-95, 20], + [37, 42], + [-50, 29], + [-64, 7], + [11, 49], + [-28, 52], + [-40, 141], + [-32, 20], + [-11, 55], + [71, 27], + [-38, 160], + [13, 72], + [69, 68], + [80, 27] + ], + [ + [11302, 16579], + [125, 70], + [23, -28], + [63, -12] + ], + [ + [10290, 16459], + [-44, -37], + [-6, -40], + [-66, -116], + [-37, -103], + [44, -44], + [-27, -170], + [21, -8], + [-12, -162], + [-30, -42], + [-9, -53], + [-37, -9] + ], + [ + [10087, 15675], + [-70, 22], + [-80, -52], + [-36, 3], + [-16, -57], + [-94, 12], + [13, -98], + [-4, -95] + ], + [ + [9800, 15410], + [-35, -12] + ], + [ + [9765, 15398], + [-45, 24], + [-31, 48] + ], + [ + [9689, 15470], + [-45, -42], + [-50, 79], + [-75, -20], + [-73, 6], + [-56, 23], + [-32, -18], + [-58, 36], + [-59, 5], + [-82, -15], + [-89, 56], + [-76, 2], + [-39, -21], + [-122, 37], + [-50, -8], + [-62, 47] + ], + [ + [8721, 15637], + [33, 48], + [5, 65], + [-66, 28], + [9, 90], + [-89, 54], + [-37, -28], + [-80, 16] + ], + [ + [8496, 15910], + [24, 133], + [1, 66], + [26, 31], + [82, 39], + [49, 68], + [-24, 54], + [36, 44] + ], + [ + [8690, 16345], + [58, -22], + [20, 25], + [84, 7], + [55, -13], + [76, 29], + [35, 106], + [130, -31], + [31, 43], + [38, -30], + [125, 47], + [13, -50], + [82, -55], + [65, 2], + [28, 79], + [31, 15], + [113, -41], + [121, 74], + [77, -11], + [72, 24], + [67, 2], + [29, 83], + [51, 7], + [79, 56], + [41, -61] + ], + [ + [10824, 15118], + [-150, 46], + [-62, -52], + [-57, 26], + [-39, -31], + [-39, 23], + [5, 43], + [-61, -8], + [-79, 94], + [-92, -88], + [-37, 86], + [-40, 37], + [-88, 5], + [42, 121], + [25, 29], + [-8, 77], + [-76, 4], + [19, 145] + ], + [ + [9867, 14490], + [84, -16], + [42, -38] + ], + [ + [9523, 13539], + [-46, 64], + [-66, -29], + [-44, -45], + [-50, 23], + [-7, 37], + [-51, 24], + [5, 43], + [-41, 19], + [-53, 65], + [-32, 5], + [-80, -46], + [-24, -46], + [-123, -57], + [-39, -82], + [-100, -1], + [-29, -25], + [-63, 3], + [-21, 23] + ], + [ + [8659, 13514], + [1, 28], + [56, 40], + [7, 32], + [-44, 54], + [-8, 40], + [41, 64], + [-38, 58], + [36, 96], + [-25, 94], + [21, 110], + [-43, 112], + [-55, 71], + [94, 21], + [42, 72], + [-11, 33], + [51, 49], + [41, 72], + [75, -1], + [54, 51] + ], + [ + [8954, 14610], + [83, -8], + [80, -35], + [102, -68], + [19, 24], + [77, -13], + [5, -51], + [53, -2], + [28, 93], + [101, -24], + [66, 17], + [70, -31], + [25, 12], + [52, -45], + [61, 15], + [6, -43], + [78, -21], + [7, 60] + ], + [ + [11207, 14913], + [2, -27], + [88, -74], + [65, -32], + [7, -82], + [94, -77] + ], + [ + [11208, 14472], + [-57, -17], + [-28, -45], + [-68, -57], + [-33, -58], + [-86, -35], + [-45, -79], + [-20, -100], + [-69, -7], + [-70, -111] + ], + [ + [10302, 14455], + [65, 44], + [10, 47], + [98, 139], + [-15, 32], + [83, 51], + [133, 15], + [179, 65], + [15, 72] + ], + [ + [11688, 15390], + [23, -14], + [66, 40], + [5, 66], + [48, 15], + [15, -39], + [-37, -57], + [64, -37], + [72, -2], + [50, 77], + [0, 49], + [58, 25], + [92, 8], + [62, -46], + [77, 1], + [-19, -39], + [35, -48], + [5, -68], + [63, -6], + [51, -35], + [80, 50] + ], + [ + [9765, 15398], + [-17, -63], + [-59, 135] + ], + [ + [9867, 14490], + [-6, 118], + [-19, 36], + [-12, 161], + [83, 56], + [-76, 93], + [0, 71], + [-48, 84], + [85, 57], + [-20, 47], + [20, 130], + [-74, 67] + ], + [ + [8954, 14610], + [50, 58], + [76, 45], + [8, 63], + [89, 134], + [-50, 63], + [-77, 46], + [-75, 5], + [-46, -21], + [-27, 26], + [-13, 71], + [36, 132], + [-41, 9], + [20, 51], + [-42, 18], + [-77, -16], + [-38, 11], + [-149, 1], + [-30, 31] + ], + [ + [8568, 15337], + [17, 58], + [-39, 27], + [17, 73], + [79, 100], + [79, 42] + ], + [ + [16050, 14992], + [-241, -115], + [-62, -52], + [-95, -45], + [-61, -85], + [-49, -90], + [-66, -24], + [-59, -2], + [-74, -34], + [-160, -40] + ], + [ + [15183, 14505], + [-44, 105], + [-15, 79], + [-60, 36], + [-5, 79], + [-61, 33], + [32, 49], + [-41, 25] + ], + [ + [14989, 14911], + [-25, 41], + [68, 24], + [-51, 75], + [34, 103], + [93, -34], + [63, 94], + [-11, 51], + [79, 84], + [-34, 80], + [36, 34], + [-17, 40], + [29, 65], + [-36, 94], + [117, 32] + ], + [ + [15334, 15694], + [46, 18], + [125, -36], + [-35, -62], + [31, -58], + [-37, -31], + [101, -19], + [54, 12], + [116, -22], + [35, -57], + [42, 6], + [31, -45], + [-20, -110], + [-119, -79], + [22, -52], + [56, -3], + [68, -45], + [17, -43], + [143, 24], + [32, -20], + [8, -80] + ], + [ + [15334, 15694], + [6, 71], + [-33, 49], + [-58, 23], + [-1, 56] + ], + [ + [15248, 15893], + [57, -4], + [85, -46], + [37, -68], + [46, -29], + [47, 9], + [37, 54], + [95, 26], + [117, -50], + [68, -53], + [64, 16], + [71, -16], + [-16, 49], + [54, 37], + [53, -5], + [35, 44], + [61, -3], + [20, 26], + [78, -25], + [30, -34], + [65, 9], + [-12, -59], + [124, -59], + [-28, -73], + [-47, -25], + [-43, 35], + [-40, -66], + [3, -58], + [53, -49], + [22, -50], + [-14, -35], + [29, -59], + [-23, -83], + [-44, -45], + [-34, -6], + [-33, -60], + [-61, -32], + [-34, -41], + [-88, -33], + [-32, -40] + ], + [ + [14989, 14911], + [-16, -11], + [-116, 5], + [-40, -31], + [10, -56], + [-84, -27], + [-82, -115], + [-282, -67], + [-33, 36], + [-39, -40], + [-90, -11] + ], + [ + [14427, 16105], + [2, 161], + [35, 22], + [115, -38], + [52, -39], + [27, 17], + [86, -25], + [70, -78], + [148, 11], + [65, -129], + [-2, -59], + [23, -36], + [-19, -74], + [54, -13], + [32, 27], + [133, 41] + ], + [ + [15183, 14505], + [-87, -15], + [-105, -54], + [-76, -4], + [-117, -59], + [-75, -10], + [-64, -41], + [-76, -84], + [-55, -86], + [-65, -61], + [18, -42], + [74, -36], + [33, -43], + [-77, -52], + [-129, -28], + [-48, -58], + [-18, -48] + ], + [ + [14316, 13784], + [-50, 20], + [-46, 70], + [-85, 25], + [-47, 110], + [-36, 0] + ], + [ + [12505, 15374], + [-41, 23], + [-3, 40], + [64, 93], + [30, -17], + [71, 11], + [-14, 66], + [-70, 14], + [-55, 71], + [-95, 80], + [-64, 5], + [-42, 57], + [-33, -15], + [-114, 65], + [-73, 22] + ], + [ + [12066, 15889], + [22, 30], + [-6, 87], + [-70, -14], + [58, 83], + [52, -31], + [29, 40], + [-11, 57], + [47, 26], + [-14, 39], + [35, 53], + [-12, 66] + ], + [ + [12196, 16325], + [31, 58], + [62, -12], + [70, 45], + [12, 90], + [58, 35], + [33, 49], + [-14, 46], + [97, 65], + [9, 42], + [42, 10] + ], + [ + [12596, 16753], + [81, 9], + [5, -50], + [85, 38], + [93, -43], + [0, -69], + [-24, -64], + [-42, -40], + [22, -48], + [68, -20], + [6, 70], + [75, -54], + [103, -23], + [79, -32], + [27, -30], + [127, -13], + [43, 17], + [20, -51] + ], + [ + [13893, 12032], + [115, -41], + [67, -48], + [19, -57], + [-116, -116], + [-67, -15], + [-63, -109], + [-40, 12], + [-119, -59], + [-55, -41], + [-54, -86], + [-51, -42], + [1, -131], + [-65, -14], + [-33, -55], + [-17, -164], + [-25, -11], + [-53, -135] + ], + [ + [13337, 10920], + [-52, 18], + [-70, 86], + [-77, 140], + [-11, 67], + [37, 66], + [16, 60], + [-17, 70], + [-73, 27], + [2, 102], + [52, 60], + [10, 81], + [-19, 88] + ], + [ + [13209, 11923], + [52, -14], + [24, -41], + [60, 24], + [83, -29], + [20, -44], + [85, 60], + [-45, 13], + [-23, 43], + [93, 9], + [70, 33], + [55, 50], + [62, -30], + [63, 5], + [85, 30] + ], + [ + [14316, 13784], + [-74, -130], + [-9, -50], + [-101, -124], + [-9, -33], + [-61, -47], + [-37, -97], + [-66, -41], + [-42, -129], + [-63, -63], + [-77, -143] + ], + [ + [13777, 12927], + [-63, 30], + [-29, 50], + [-53, 3], + [-25, -58], + [-39, -32], + [-67, 86], + [-30, -58], + [-50, 13], + [-3, 88], + [-61, -17], + [-47, 65] + ], + [ + [13777, 12927], + [-19, -79], + [-37, -38], + [-43, -100], + [-13, -100], + [35, -137], + [50, -116], + [-10, -57], + [39, -109], + [39, -70], + [75, -89] + ], + [ + [8608, 11306], + [-62, -5], + [-66, -26], + [-34, 89], + [-134, 191], + [11, 110], + [30, 48], + [3, 144], + [103, 99], + [23, 1], + [48, 67], + [5, 49], + [52, 99], + [-17, 76], + [-36, 30], + [-89, -8], + [9, 60], + [-68, 31], + [-21, 64], + [13, 28] + ], + [ + [8378, 12453], + [21, -15], + [40, 60], + [-2, 49], + [105, 27], + [-24, 47], + [135, -58], + [47, 10], + [11, -50], + [38, -31], + [-41, -82], + [26, -54], + [66, -12], + [16, 23], + [130, -33], + [91, -6], + [34, 26], + [25, -95], + [49, -9], + [68, -62], + [49, 66], + [46, 38], + [5, -70], + [191, 77], + [56, -56], + [60, 17], + [27, 56], + [-28, 39], + [72, 18], + [41, -47], + [62, 14], + [29, 79], + [5, 92], + [71, -34], + [74, 21], + [26, 24], + [126, 55] + ], + [ + [8378, 12453], + [-60, 66], + [-10, 44], + [22, 80], + [-68, 38], + [-89, 104], + [-27, 83], + [156, -28], + [61, 28], + [76, -15], + [105, 19], + [29, 108], + [-8, 41], + [64, 65], + [14, 74], + [4, 109], + [-46, 75], + [-57, 26], + [2, 96], + [47, 34], + [66, 14] + ], + [ + [8013, 17197], + [13, -60], + [-44, -82], + [3, -52], + [-27, -86], + [-33, -52], + [-44, 7], + [-1, -59], + [-50, -71], + [19, -17], + [-30, -86], + [18, -83], + [-4, -47], + [29, -88], + [-24, -88], + [-49, -59] + ], + [ + [7789, 16274], + [-35, -18], + [-106, 30], + [-20, -39], + [-78, 11], + [-33, -59], + [-58, -34], + [-48, 10], + [-82, -14], + [-90, -39], + [-7, -32] + ], + [ + [7232, 16090], + [-52, -43], + [-43, 32], + [-38, -27], + [-64, -105], + [-75, 58], + [31, 47], + [6, 58], + [40, 89], + [-105, -28], + [-17, 46], + [19, 54], + [-9, 64], + [-131, 17], + [28, 54], + [-16, 51], + [19, 78], + [70, 13], + [-38, 51], + [60, 50], + [58, -16], + [61, 49], + [-1, 56], + [53, 41], + [86, -7], + [65, -26], + [98, 34], + [62, 5], + [54, 61], + [70, -37], + [-3, 52], + [41, 1], + [34, -48], + [49, 65], + [-55, 9], + [-38, 35], + [-15, 56], + [87, 81], + [26, 41], + [57, 22], + [35, 68], + [43, -1], + [75, 61], + [37, 4], + [7, -60], + [84, 39], + [26, -37] + ], + [ + [8515, 16944], + [-38, -51], + [-54, 4], + [-4, -45], + [86, -149], + [77, -67], + [18, -59], + [54, 52], + [34, -61], + [-96, -50], + [-9, -53], + [98, -74], + [9, -46] + ], + [ + [8496, 15910], + [-17, -53], + [-37, -23], + [-18, -62], + [-45, -4], + [-59, 57], + [-74, 0], + [-75, -43], + [-99, 19], + [-93, 47], + [-123, 82], + [-14, 55] + ], + [ + [7842, 15985], + [29, 55], + [15, 97], + [-47, 21], + [-34, 42], + [-16, 74] + ], + [ + [8013, 17197], + [60, 37], + [13, -78], + [65, 69], + [55, -41], + [77, -30], + [46, -82], + [58, -31], + [137, -8], + [-9, -89] + ], + [ + [8568, 15337], + [-72, -23], + [-49, 42], + [-35, -23], + [10, -54], + [-17, -42], + [-91, -40], + [-57, 0], + [-48, 24], + [-93, -38], + [-100, 83], + [-23, -16], + [-144, -11], + [-51, -15], + [-19, -37], + [-62, -27], + [-55, 11], + [3, 46], + [-42, 56], + [41, 74], + [59, 36], + [-25, 71], + [-52, -11], + [-10, 88] + ], + [ + [7636, 15531], + [19, 18], + [4, 80], + [-73, 7], + [2, 67], + [-38, 31], + [-31, 146], + [38, 10], + [99, 88], + [120, -31], + [66, 38] + ], + [ + [7636, 15531], + [-42, -19], + [-60, -57], + [-75, -12], + [-67, 8], + [-22, -28], + [-69, -7], + [-19, -47], + [-65, -41], + [-1, -23], + [-103, -67], + [-3, 178], + [-8, 56], + [61, 40], + [0, 54], + [41, 47], + [-78, 50], + [146, 146], + [-23, 22], + [-45, -44], + [-79, 20], + [-32, 67], + [71, 44], + [-16, 40], + [54, 51], + [30, 81] + ], + [ + [15010, 11930], + [20, -114], + [-51, 9], + [42, 77], + [-11, 28] + ], + [ + [15097, 12281], + [55, -31], + [2, -58], + [-60, -96], + [-71, -36], + [-26, -39], + [-60, -15], + [-86, 44], + [66, 80], + [-7, 53], + [53, 50], + [62, 9], + [72, 39] + ], + [ + [16385, 13184], + [-74, -55], + [-22, -46], + [48, -107], + [71, -41], + [104, 39], + [60, -23], + [-3, -81], + [-39, -36], + [-22, -84], + [-55, -56], + [-21, -82], + [-33, -71], + [-69, -39], + [-71, -64], + [-71, 105], + [-128, -1], + [-39, 51], + [-8, 129], + [-57, 36], + [-87, -43], + [-31, -68], + [-34, 80], + [-70, -5], + [-15, 61], + [19, 29], + [138, 91], + [175, 167], + [74, 25], + [59, 44], + [84, 1], + [65, 35], + [52, 9] + ], + [ + [17050, 13322], + [14, -44], + [51, 14], + [4, -41], + [65, -64], + [41, -92], + [-28, -75], + [-70, 31], + [-123, 90], + [-64, 16], + [-90, -11], + [10, 39], + [-29, 41], + [20, 52], + [164, 16], + [35, 28] + ], + [ + [2101, 573], + [5, -146], + [30, -51], + [-14, -120], + [-29, -90], + [-101, -43], + [-9, -29], + [-98, 42], + [-66, 64], + [-34, 81], + [-1, 68], + [86, 104], + [19, 88], + [51, 17], + [25, -25], + [62, 3], + [56, -17], + [18, 54] + ], + [ + [3276, 1189], + [43, -63], + [5, -154], + [-29, -66], + [11, -91], + [-67, -188], + [-223, -78], + [-77, -121], + [-128, 39], + [80, 29], + [55, 34], + [78, 90], + [5, 93], + [36, 62], + [8, 64], + [41, 51], + [69, 209], + [-9, 37], + [33, 30], + [69, 23] + ], + [ + [3596, 1707], + [36, -35], + [-4, -57], + [-28, -29], + [13, -46], + [-29, -97], + [-120, -81], + [-77, -21], + [-27, -60], + [-76, 16], + [32, 87], + [14, 100], + [49, 50], + [34, 0], + [38, 48], + [103, 18], + [21, 82], + [21, 25] + ], + [ + [178, 217], + [35, -50], + [-36, -80], + [-21, -10], + [-11, -77], + [-52, 43], + [-93, 30], + [6, 46], + [64, -5], + [58, 44], + [50, 59] + ], + [ + [691, 611], + [44, -18], + [64, -51], + [4, -71], + [-65, -67], + [-36, -5], + [-51, 34], + [-29, 49], + [24, 115], + [45, 14] + ], + [ + [1535, 1008], + [30, -34], + [-30, -38], + [-59, -38], + [-56, -82], + [-40, -32], + [-1, -80], + [-48, -108], + [-14, -68], + [-61, -94], + [-119, -58], + [-23, 13], + [-22, 80], + [-25, 26], + [-53, 105], + [-2, 62], + [-63, 96], + [69, 41], + [63, -24], + [57, 30], + [57, -4], + [68, 26], + [66, 77], + [36, 60], + [51, 27], + [82, -4], + [37, 21] + ], + [ + [184, 1297], + [52, -27], + [50, 11], + [47, -118], + [-32, -60], + [14, -54], + [-7, -57], + [-57, -125], + [-18, 3], + [-22, 96], + [-60, 126], + [-31, 128], + [64, 77] + ], + [ + [11731, 16049], + [59, -63], + [13, 46], + [64, -30], + [-9, -55], + [27, -42], + [60, -22], + [31, 12], + [90, -6] + ], + [ + [11969, 16531], + [5, -68], + [-46, -25], + [15, -40], + [131, -5], + [83, -36], + [39, -32] + ], + [ + [11513, 16609], + [25, -19], + [125, 29], + [-11, -83], + [51, -50], + [126, -24], + [48, 8], + [26, 59], + [66, 2] + ], + [ + [11969, 16531], + [32, 9], + [32, 135], + [35, 48], + [4, 57] + ], + [ + [12072, 16780], + [66, -25], + [75, 14], + [39, -25], + [227, 68], + [37, 35], + [62, -46], + [18, -48] + ], + [ + [11504, 16814], + [73, -10], + [85, 99], + [75, -6], + [73, 26], + [53, -54], + [107, -33], + [27, 4], + [75, -60] + ], + [ + [8515, 16944], + [23, 88], + [75, 20], + [83, -20], + [167, -2], + [124, 5], + [61, -9], + [88, 41], + [96, -37], + [66, 33], + [66, -1], + [29, 42], + [56, 23], + [107, -107], + [214, 10], + [23, -24], + [70, 3], + [66, -65], + [94, 2], + [241, -49], + [90, -32], + [108, -8] + ], + [ + [13337, 10920], + [-29, -69], + [-46, -64], + [55, -76], + [54, -49], + [-151, -51], + [-122, 27], + [-40, -32], + [-89, 25], + [-60, -15], + [-62, -61], + [-44, -21], + [-17, -36], + [-114, -84] + ] + ], + "transform": { + "scale": [0.001304515428916816, 0.0009340932354723947], + "translate": [-18.160694122314453, 27.64708328247076] + }, + "objects": { + "spain": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-AL", + "NAME_0": "Spain", + "ID_1": 1, + "NAME_1": "Andalucía", + "ID_2": 1, + "NAME_2": "Almería", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[3, 4, 5, 6]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-CA", + "NAME_0": "Spain", + "ID_1": 1, + "NAME_1": "Andalucía", + "ID_2": 2, + "NAME_2": "Cádiz", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[7, 8, 9, 10, 11, 12]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-CO", + "NAME_0": "Spain", + "ID_1": 1, + "NAME_1": "Andalucía", + "ID_2": 3, + "NAME_2": "Córdoba", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[13, 14, -2, 15, 16, -10, 17]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-GR", + "NAME_0": "Spain", + "ID_1": 1, + "NAME_1": "Andalucía", + "ID_2": 4, + "NAME_2": "Granada", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[18, 19, -6, 20]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-H", + "NAME_0": "Spain", + "ID_1": 1, + "NAME_1": "Andalucía", + "ID_2": 5, + "NAME_2": "Huelva", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-18, -9, 21, 22]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-J", + "NAME_0": "Spain", + "ID_1": 1, + "NAME_1": "Andalucía", + "ID_2": 6, + "NAME_2": "Jaén", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-17, 23, -4, 24, -11]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-MA", + "NAME_0": "Spain", + "ID_1": 1, + "NAME_1": "Andalucía", + "ID_2": 7, + "NAME_2": "Málaga", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-12, -25, -7, -20, 25]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-SE", + "NAME_0": "Spain", + "ID_1": 1, + "NAME_1": "Andalucía", + "ID_2": 8, + "NAME_2": "Sevilla", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[26, 27, 28, 29]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-HU", + "NAME_0": "Spain", + "ID_1": 2, + "NAME_1": "Aragón", + "ID_2": 9, + "NAME_2": "Huesca", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[30, 31, 32, 33, 34, 35, 36, 37]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-TE", + "NAME_0": "Spain", + "ID_1": 2, + "NAME_1": "Aragón", + "ID_2": 10, + "NAME_2": "Teruel", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[38, 39, -38, 40, 41, 42, 43, -29]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-Z", + "NAME_0": "Spain", + "ID_1": 2, + "NAME_1": "Aragón", + "ID_2": 11, + "NAME_2": "Zaragoza", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[44, 45, 46, 47, 48, 49]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-S3", + "NAME_0": "Spain", + "ID_1": 3, + "NAME_1": "Cantabria", + "ID_2": 12, + "NAME_2": "Cantabria", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[50, 51, -14, -23, 52, 53, 54]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-AB", + "NAME_0": "Spain", + "ID_1": 4, + "NAME_1": "Castilla-La Mancha", + "ID_2": 13, + "NAME_2": "Albacete", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[55, 56]], [[57, -53, -22, -8, 58, 59]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 215, + "ISO": "ES-CR", + "NAME_0": "Spain", + "ID_1": 4, + "NAME_1": "Castilla-La Mancha", + "ID_2": 14, + "NAME_2": "Ciudad Real", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-36, 60, -34, 61, -54, -58, 62, 63, 64]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-CU", + "NAME_0": "Spain", + "ID_1": 4, + "NAME_1": "Castilla-La Mancha", + "ID_2": 15, + "NAME_2": "Cuenca", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-41, -37, -65, 65, 66, 67]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-GU", + "NAME_0": "Spain", + "ID_1": 4, + "NAME_1": "Castilla-La Mancha", + "ID_2": 16, + "NAME_2": "Guadalajara", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-63, -60, 68, -57, 69, 70, 71, 72]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-TO", + "NAME_0": "Spain", + "ID_1": 4, + "NAME_1": "Castilla-La Mancha", + "ID_2": 17, + "NAME_2": "Toledo", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[73, 74, -72, 75, 76, 77]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-AV", + "NAME_0": "Spain", + "ID_1": 5, + "NAME_1": "Castilla y León", + "ID_2": 18, + "NAME_2": "Ávila", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[78]], [[79, 80, 81, 82, 83, 84, -46, 85]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 215, + "ISO": "ES-BU", + "NAME_0": "Spain", + "ID_1": 5, + "NAME_1": "Castilla y León", + "ID_2": 19, + "NAME_2": "Burgos", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[86, 87, 88, 89, 90, 91, 92, 93, -48]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-LE", + "NAME_0": "Spain", + "ID_1": 5, + "NAME_1": "Castilla y León", + "ID_2": 20, + "NAME_2": "León", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-85, 94, -87, -47]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-P", + "NAME_0": "Spain", + "ID_1": 5, + "NAME_1": "Castilla y León", + "ID_2": 21, + "NAME_2": "Palencia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[95, -77, 96, 97, 98]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-SA", + "NAME_0": "Spain", + "ID_1": 5, + "NAME_1": "Castilla y León", + "ID_2": 22, + "NAME_2": "Salamanca", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[99, -67, 100, -74, 101, -83]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-SG", + "NAME_0": "Spain", + "ID_1": 5, + "NAME_1": "Castilla y León", + "ID_2": 23, + "NAME_2": "Segovia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-42, -68, -100, -82, 102]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-SO", + "NAME_0": "Spain", + "ID_1": 5, + "NAME_1": "Castilla y León", + "ID_2": 24, + "NAME_2": "Soria", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[103, -90]], [[-95, -84, -102, -78, -96, 104, -88]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 215, + "ISO": "ES-VA", + "NAME_0": "Spain", + "ID_1": 5, + "NAME_1": "Castilla y León", + "ID_2": 25, + "NAME_2": "Valladolid", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-104, -89, -105, -99, 105, 106, -91]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-ZA", + "NAME_0": "Spain", + "ID_1": 5, + "NAME_1": "Castilla y León", + "ID_2": 26, + "NAME_2": "Zamora", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[107, 108, 109, 110]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-B", + "NAME_0": "Spain", + "ID_1": 6, + "NAME_1": "Cataluña", + "ID_2": 27, + "NAME_2": "Barcelona", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-111, 111, 112]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-GI", + "NAME_0": "Spain", + "ID_1": 6, + "NAME_1": "Cataluña", + "ID_2": 28, + "NAME_2": "Girona", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-112, -110, 113, -39, -28, 114]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-L", + "NAME_0": "Spain", + "ID_1": 6, + "NAME_1": "Cataluña", + "ID_2": 29, + "NAME_2": "Lleida", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[115, 116, -31, -40, -114, -109]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-T", + "NAME_0": "Spain", + "ID_1": 6, + "NAME_1": "Cataluña", + "ID_2": 30, + "NAME_2": "Tarragona", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "type": null, + "properties": { + "ID_0": 215, + "ISO": "ES-CE", + "NAME_0": "Spain", + "ID_1": 7, + "NAME_1": "Ceuta y Melilla", + "ID_2": 31, + "NAME_2": "Ceuta", + "TYPE_2": "Ciudad Autónoma", + "ENGTYPE_2": "Autonomous City", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "type": null, + "properties": { + "ID_0": 215, + "ISO": "ES-ML", + "NAME_0": "Spain", + "ID_1": 7, + "NAME_1": "Ceuta y Melilla", + "ID_2": 32, + "NAME_2": "Melilla", + "TYPE_2": "Ciudad Autónoma", + "ENGTYPE_2": "Autonomous City", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-64, -73, -75, -101, -66]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-M5", + "NAME_0": "Spain", + "ID_1": 8, + "NAME_1": "Comunidad de Madrid", + "ID_2": 33, + "NAME_2": "Madrid", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-30, -44, 117, 118, 119, 120]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-NA7", + "NAME_0": "Spain", + "ID_1": 9, + "NAME_1": "Comunidad Foral de Navarra", + "ID_2": 34, + "NAME_2": "Navarra", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[121, 122, -51, 123]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-A", + "NAME_0": "Spain", + "ID_1": 10, + "NAME_1": "Comunidad Valenciana", + "ID_2": 35, + "NAME_2": "Alicante", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Alacant" + } + }, + { + "arcs": [[-117, 124, 125, -32]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-CS", + "NAME_0": "Spain", + "ID_1": 10, + "NAME_1": "Comunidad Valenciana", + "ID_2": 36, + "NAME_2": "Castellón", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Castelló" + } + }, + { + "arcs": [[[-126, 126, -124, -55, -62, -33]], [[-61, -35]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 215, + "ISO": "ES-V", + "NAME_0": "Spain", + "ID_1": 10, + "NAME_1": "Comunidad Valenciana", + "ID_2": 37, + "NAME_2": "Valencia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "València" + } + }, + { + "arcs": [[-13, -26, -19, 127, 128, -70, -56, -69, -59]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-BA", + "NAME_0": "Spain", + "ID_1": 11, + "NAME_1": "Extremadura", + "ID_2": 38, + "NAME_2": "Badajoz", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-76, -71, -129, 129, -97]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-CC", + "NAME_0": "Spain", + "ID_1": 11, + "NAME_1": "Extremadura", + "ID_2": 39, + "NAME_2": "Cáceres", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[130, 131, 132]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-C", + "NAME_0": "Spain", + "ID_1": 12, + "NAME_1": "Galicia", + "ID_2": 40, + "NAME_2": "A Coruña", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "La Coruña" + } + }, + { + "arcs": [[133, -93, 134, 135, -131, 136]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-LU", + "NAME_0": "Spain", + "ID_1": 12, + "NAME_1": "Galicia", + "ID_2": 41, + "NAME_2": "Lugo", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-92, -107, 137, 138, -135]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-OR", + "NAME_0": "Spain", + "ID_1": 12, + "NAME_1": "Galicia", + "ID_2": 42, + "NAME_2": "Ourense", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-136, -139, 139, -132]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-PO", + "NAME_0": "Spain", + "ID_1": 12, + "NAME_1": "Galicia", + "ID_2": 43, + "NAME_2": "Pontevedra", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[140]], [[141]], [[142]], [[143]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 215, + "ISO": "ES-PM", + "NAME_0": "Spain", + "ID_1": 13, + "NAME_1": "Islas Baleares", + "ID_2": 44, + "NAME_2": "Baleares", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[144]], [[145]], [[146]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 215, + "ISO": "ES-GC", + "NAME_0": "Spain", + "ID_1": 14, + "NAME_1": "Islas Canarias", + "ID_2": 45, + "NAME_2": "Las Palmas", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[147]], [[148]], [[149]], [[150]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 215, + "ISO": "ES-TF", + "NAME_0": "Spain", + "ID_1": 14, + "NAME_1": "Islas Canarias", + "ID_2": 46, + "NAME_2": "Santa Cruz de Tenerife", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[151, -118, -43, -103, -81]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-LO4", + "NAME_0": "Spain", + "ID_1": 15, + "NAME_1": "La Rioja", + "ID_2": 47, + "NAME_2": "La Rioja", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[152, -119, -152, -80, 153], [-79]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-VI", + "NAME_0": "Spain", + "ID_1": 16, + "NAME_1": "País Vasco", + "ID_2": 48, + "NAME_2": "Álava", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": "Araba" + } + }, + { + "arcs": [[-120, -153, 154, 155]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-SS", + "NAME_0": "Spain", + "ID_1": 16, + "NAME_1": "País Vasco", + "ID_2": 49, + "NAME_2": "Guipúzcoa", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-155, -154, -86, -45, 156]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-BI", + "NAME_0": "Spain", + "ID_1": 16, + "NAME_1": "País Vasco", + "ID_2": 50, + "NAME_2": "Vizcaya", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-49, -94, -134, 157]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-O2", + "NAME_0": "Spain", + "ID_1": 17, + "NAME_1": "Principado de Asturias", + "ID_2": 51, + "NAME_2": "Asturias", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-123, 158, -3, -15, -52]], + "type": "Polygon", + "properties": { + "ID_0": 215, + "ISO": "ES-MU6", + "NAME_0": "Spain", + "ID_1": 18, + "NAME_1": "Región de Murcia", + "ID_2": 52, + "NAME_2": "Murcia", + "TYPE_2": "Provincia", + "ENGTYPE_2": "Province", + "NL_NAME_2": null, + "VARNAME_2": null + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/switzerland-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/switzerland-topo.json new file mode 100644 index 000000000000..5965bc7e8f61 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/switzerland-topo.json @@ -0,0 +1,11333 @@ +{ + "type": "Topology", + "arcs": [ + [ + [43893, 22349], + [-54, -36], + [-73, -134], + [-65, 8], + [-61, -39], + [-46, -18], + [-26, -81], + [-87, -130], + [-66, -65], + [-26, -54], + [-67, -52], + [-26, -74], + [-18, 0], + [-38, -50], + [-26, 0], + [-87, -39], + [-36, -26], + [-33, 1], + [-57, 23], + [-61, 10], + [-283, 6], + [-42, 9], + [50, -120], + [-55, -35], + [-49, 2], + [-60, -59], + [-2, -43], + [-32, -33], + [-18, -79], + [-60, -12], + [-31, -27], + [-73, -22], + [-39, -68], + [-73, -13], + [-37, -36], + [-41, -17], + [-19, -32], + [-43, 3], + [-60, 34], + [-13, 70], + [-4, 77], + [-34, 41], + [-58, 91], + [-27, 28], + [4, 67], + [-146, 41], + [-93, 45], + [-67, 6], + [-52, -13], + [-45, 10], + [-48, -29], + [-89, -112], + [-81, -26], + [-43, -42], + [-1, -101], + [-12, -91], + [25, -100], + [-9, -20], + [-63, -37], + [-41, -55], + [-51, -123], + [9, -76], + [-59, -47], + [-33, -61], + [-28, -88], + [-54, -81], + [-19, -89], + [-146, -126], + [-135, -7], + [-105, -41], + [-70, -7], + [-67, -25], + [-51, 8], + [-106, -25], + [-44, 3], + [-105, -43], + [-58, 12], + [-36, -47], + [-77, -8], + [-63, -59], + [-72, -15], + [-92, -43], + [-16, 25], + [-41, 11], + [-48, -4], + [-53, 18], + [-26, 32], + [13, 109], + [-3, 106], + [-30, 4], + [-69, -22], + [-85, 30], + [-9, 35], + [-45, 14], + [-75, -15], + [-39, 20], + [-59, -5], + [-93, -25] + ], + [ + [38936, 20246], + [-19, 62], + [61, 84], + [19, 183], + [-60, 89], + [-37, 35], + [-3, 91], + [-15, 35], + [31, 47], + [116, 51], + [64, 42], + [91, 27], + [47, 60], + [13, 40], + [35, 33], + [64, 84], + [111, -1], + [32, 13], + [64, 50], + [137, 42], + [111, 113], + [116, 46], + [73, 44], + [26, 85], + [-14, 139], + [7, 32], + [-36, 134], + [-6, 51], + [-18, 28], + [8, 47], + [-21, 19], + [-43, 0], + [-23, 22], + [-15, 46], + [-29, 24], + [-16, 73], + [-33, 51], + [-60, 155] + ], + [ + [39714, 22422], + [67, 53], + [32, -7], + [66, 45], + [6, 22], + [62, -5], + [21, 19], + [38, -8], + [80, 23], + [12, 37], + [-20, 49], + [-39, 4], + [-38, 58], + [9, 36], + [-23, 20], + [-9, 43], + [38, 109], + [39, 61], + [18, 133], + [33, 45], + [84, 49], + [-77, 50], + [-29, -1], + [-79, 28], + [-45, 36], + [-15, 39], + [-37, 23], + [-14, 43], + [-43, -42], + [-159, 279], + [-21, 30], + [118, 50], + [7, 56], + [-68, 10], + [-55, 62], + [-40, 118], + [-106, 90], + [-59, 43], + [1, 51], + [-19, 31], + [-43, 25], + [-11, 24], + [-14, 148], + [-68, 32], + [-71, 47], + [-69, -1], + [-25, 55], + [31, 35], + [72, 16], + [38, 23], + [-4, 43], + [-33, 54], + [2, 105], + [40, 31], + [29, -6], + [43, 26], + [36, -8], + [34, 13], + [10, -29], + [36, -12], + [52, 8], + [35, 31], + [79, 46], + [85, 32], + [54, 80], + [83, 28], + [16, 18], + [10, 136], + [25, 83], + [45, 95], + [24, 11], + [38, 83], + [36, 30], + [6, 104], + [61, 68], + [-6, 20], + [129, 100], + [-35, 23], + [-64, 6], + [-103, 49], + [-47, 6], + [-46, 33], + [4, 57], + [35, 31], + [39, 90], + [60, 36], + [86, 36], + [0, 64], + [-18, 32], + [24, 32], + [-2, 49], + [36, 54], + [-24, 61], + [-63, 22], + [-25, 47], + [15, 73], + [17, 30], + [19, 73], + [-13, 68], + [17, 21], + [-27, 43], + [59, 40], + [27, 36], + [20, 72], + [217, 372], + [23, 33], + [152, 192] + ], + [ + [40638, 27579], + [12, 15], + [600, -659], + [42, -48], + [138, -127], + [28, -42], + [43, -23], + [326, 40], + [97, 30], + [75, -36], + [41, 0], + [74, 26], + [273, -16], + [157, -62], + [562, -106], + [-14, -158], + [14, -130], + [-21, -41], + [4, -73], + [-23, -34], + [-8, -97], + [19, -69], + [34, -83], + [-20, -93], + [28, -161], + [-3, -74], + [18, -7], + [-22, -75], + [-42, -91], + [-26, -24], + [-20, -94], + [-45, -45], + [-78, -92], + [-42, -7], + [-53, -64], + [-24, 10], + [-78, -17], + [-14, -18], + [-71, -19], + [-53, -49], + [-151, -116], + [243, -182], + [22, 9], + [84, -51], + [19, -26], + [53, -5], + [74, 45], + [29, -40], + [42, -19], + [104, 64], + [47, 42], + [131, 81], + [37, -9], + [60, 21], + [52, -44], + [43, -15], + [53, 6], + [25, -11], + [46, -57], + [37, -28], + [25, -52], + [84, -38], + [4, -44], + [31, -30], + [52, -116], + [-8, -38], + [1, -82], + [30, -77], + [68, -142], + [3, -56], + [-32, -12], + [-26, -50], + [3, -73], + [11, -32], + [-36, -125], + [33, -40], + [5, -71], + [-36, -87], + [-17, -109], + [41, -123], + [-15, -67], + [-96, -31], + [-13, -43], + [7, -109], + [-10, -53], + [18, -21], + [22, -67], + [-3, -23], + [130, -76], + [19, -21], + [13, -108], + [18, -47], + [-32, -58], + [16, -52], + [-25, -54], + [-8, -55] + ], + [ + [32740, 26914], + [41, -101], + [20, -103], + [-32, -89], + [34, -62], + [45, -10], + [24, 17], + [111, -3], + [53, 34], + [93, 73], + [113, 20], + [23, -174], + [34, -149], + [20, -5], + [57, 47], + [79, 27], + [16, 36], + [178, 152], + [178, -256], + [-9, -276] + ], + [ + [33818, 26092], + [-224, 121], + [-12, 38], + [0, 69], + [-63, 28], + [-77, -35], + [-67, 18], + [-131, 51], + [-18, -62], + [-90, 1], + [-53, -38], + [-2, -58], + [-83, -19], + [-97, -40], + [-74, -70], + [-54, -83], + [-62, -57], + [2, -55], + [-14, -38], + [21, -61], + [-19, -22], + [-29, -108], + [-99, -86], + [-19, -1], + [-45, -52], + [-35, -12], + [-44, -35], + [21, -185], + [102, -27], + [14, -11], + [414, 122], + [51, -31], + [71, -4], + [26, -13], + [62, -56], + [-1, -42], + [101, -62], + [151, -138], + [68, -19], + [119, -152], + [65, -42], + [34, -59], + [46, -33], + [9, -33], + [53, -55], + [35, -10], + [48, -80], + [58, -5], + [74, -21], + [39, -35], + [8, -85], + [-7, -101], + [-60, -164], + [-74, -28], + [-36, -45], + [-79, -8], + [-157, -77], + [-126, -24], + [-73, 20] + ], + [ + [33486, 23983], + [12, 259], + [-547, 161], + [-17, -304], + [-10, -84], + [-152, 2], + [-120, 40], + [-22, -9], + [-63, 3], + [-38, 20], + [-144, -52], + [-36, 45], + [25, 49], + [-12, 301], + [-204, 45], + [-454, -629], + [-208, 214], + [-109, -30], + [-66, -4], + [-34, 11], + [-112, -5], + [-11, -40], + [-40, -5], + [-28, -28], + [-68, 10], + [-50, 24], + [-27, 35], + [-56, -11], + [-51, 13], + [-59, 2], + [-73, -39], + [-64, -43], + [-24, -49], + [-41, -33], + [-27, -55], + [-58, -28], + [-59, 70], + [-25, 48], + [-29, -15], + [-59, 30], + [-40, 1], + [-20, -58], + [-24, -28], + [-50, -107], + [-39, -42], + [13, -38], + [53, -71], + [78, -52] + ], + [ + [30297, 23507], + [0, -64], + [-39, -19], + [-76, 8], + [-230, -52], + [-107, 36], + [-102, 62], + [-72, -65], + [-52, 4], + [-127, -70], + [-53, -13], + [-74, -72], + [-56, -21], + [2, -21], + [-64, -31], + [18, -35], + [-5, -60], + [32, -59], + [98, -132], + [11, 3], + [42, -82], + [-38, -64], + [-37, -13], + [-24, -42], + [-44, -17], + [-32, -40], + [-49, -26], + [-35, -40], + [-58, -44], + [-25, -45], + [-48, -11], + [-51, -72], + [-49, -98], + [-22, -21], + [-52, -80], + [-18, -62], + [-45, -65], + [-4, -29], + [-52, -124], + [-31, -60], + [-49, 43], + [-15, 72], + [-1, 61], + [30, 139], + [-62, 18], + [-35, -4], + [-32, 29], + [-55, 15], + [-41, -34], + [-34, -5], + [-44, -62], + [3, -38], + [-25, -39], + [-22, -65], + [-61, -36], + [-65, -6], + [-44, -28], + [-2, -101], + [-36, -60], + [42, -153], + [1, -84], + [18, -50], + [-26, -44], + [1, -56], + [-50, -37], + [2, -49], + [16, -44], + [-31, -75], + [-38, -16], + [-34, 15], + [-23, -64], + [8, -37], + [-33, -90], + [-52, -40], + [-30, -46], + [-54, -18], + [-46, -155], + [57, -92], + [15, -9], + [-9, -54], + [59, -77], + [19, -43], + [150, -297], + [5, -48], + [-9, -63], + [-38, -4], + [-76, -74], + [-2, -39], + [23, -36], + [-10, -52], + [-90, -96], + [-32, -22] + ], + [ + [27872, 19721], + [-106, 9], + [-49, 37], + [-51, 16], + [-67, -8], + [-117, -38], + [-82, -40], + [-89, -56], + [-107, -21], + [-25, -20], + [-9, -44], + [-72, -52], + [-58, -30], + [-34, 29], + [-84, 18], + [-30, 22], + [-52, 83], + [-11, 54], + [-48, 38], + [-29, 1], + [-27, 35], + [-40, 13], + [-42, 34], + [-31, 42], + [19, 54], + [-27, 38], + [-13, 45], + [-55, 110], + [-67, 56], + [-173, 172], + [-85, 72], + [-240, 154], + [-117, 70], + [-246, 123], + [-59, 113], + [-30, 25], + [-4, 76], + [-34, 57], + [9, 72], + [-13, 97], + [29, 115], + [-64, 40], + [-5, 67], + [-59, 16], + [-35, 22], + [8, 115], + [-22, 76], + [6, 54], + [26, 37], + [53, 26], + [44, -1], + [47, 25], + [17, 37], + [32, 2], + [4, 67], + [26, 57], + [59, 94], + [6, 28], + [33, 36], + [6, 63], + [-21, 27], + [-15, 52], + [-25, 17], + [-51, -1], + [-26, 34], + [-76, 37], + [25, 44], + [21, 82], + [29, 67], + [57, 63], + [114, 50], + [58, 36], + [49, 18], + [53, 44], + [65, -6], + [14, -17], + [60, -17], + [61, 8], + [36, 32], + [37, 93], + [38, 53], + [11, 100], + [58, 33], + [41, -3], + [34, 47], + [9, 65], + [-11, 44], + [14, 31], + [-14, 57], + [10, 30], + [52, 56], + [53, 7], + [70, 63], + [-8, 44], + [-2, 97], + [-10, 49], + [45, 42], + [48, 17], + [21, 24], + [-3, 34], + [-33, 86], + [5, 23], + [-23, 73], + [0, 44], + [49, 52], + [25, 110], + [30, 29], + [-32, 35], + [-48, 33], + [-10, -19], + [-93, -10], + [-39, -14], + [-92, -8], + [-44, 23], + [-33, 34], + [-24, 67], + [-41, 4], + [-77, -41], + [-41, 1], + [-77, -35], + [-74, -13], + [-25, 29], + [-40, 110], + [43, 69], + [5, 31], + [-49, 70], + [-28, 15], + [-20, 55], + [8, 62], + [-27, 53], + [-36, 7], + [-56, 39], + [-25, 50], + [12, 40], + [-31, 69], + [-91, 8], + [-31, 77], + [-21, 8], + [-59, 95], + [22, 41], + [-28, 32], + [47, 107], + [58, 62], + [-36, 17], + [11, 57], + [23, 28], + [47, 99], + [-15, 38], + [18, 39], + [25, 100], + [-15, 35], + [30, 51], + [3, 83], + [-12, 68], + [-25, 21], + [21, 52], + [-48, 34], + [-15, 34], + [19, 57], + [-43, 76], + [26, 82], + [-23, 23], + [-68, 29], + [17, 32], + [0, 64], + [-31, 0], + [1, 57], + [41, 68], + [191, 96], + [24, 27], + [2, 57], + [44, 7], + [-18, 49], + [28, 65], + [-15, 28], + [9, 35], + [-36, 60], + [-55, 53], + [-41, 59], + [-37, 89], + [-22, 111], + [1, 92], + [45, 121], + [49, 54], + [-2, 37], + [-28, 18], + [-15, 86], + [-36, 38], + [-13, 47], + [-89, 57], + [-51, 71], + [-54, 40], + [-24, 38], + [14, 56], + [-14, 61], + [-42, 32], + [-25, 77], + [-32, 44], + [-72, 170], + [2, 48], + [-29, 7], + [-12, 44], + [-51, 59], + [-29, 3], + [-17, 98], + [12, 97], + [18, 48] + ], + [ + [25096, 28832], + [44, 19], + [14, -28], + [135, -40], + [189, 100], + [399, 118], + [171, 17], + [54, -38], + [93, -85], + [164, -41], + [85, 93], + [82, 57], + [109, 133], + [103, 87], + [-39, 44], + [5, 29], + [-19, 43], + [-27, 8], + [-18, 66], + [-38, 47], + [5, 38], + [-31, 52], + [-8, 49], + [20, 46], + [72, 42], + [208, -15], + [24, -33], + [179, 31], + [112, 112], + [127, -146], + [-7, -35], + [15, -72], + [53, -81], + [49, -49], + [50, -69], + [-7, -22], + [17, -47], + [-14, -31], + [5, -89], + [-16, -47], + [1, -73], + [61, -13], + [19, -23], + [49, -9], + [49, -27], + [13, 32], + [282, 53], + [4, -13], + [152, 51], + [-64, 95], + [-21, 84], + [27, 26], + [55, -1], + [43, -35], + [60, -7], + [39, 36], + [52, 26], + [14, 48], + [50, 12], + [84, 46], + [139, -54], + [96, -164], + [-2, -56], + [43, -99], + [140, -14], + [74, -50], + [81, 52], + [4, 32], + [65, 31], + [137, 9], + [155, 46], + [91, 9], + [57, 24], + [33, 29], + [41, 15], + [63, -63], + [14, -62], + [-7, -35], + [-35, -26], + [-33, -87], + [-53, 1], + [-43, 15], + [-83, -6], + [-76, -24], + [-1, -33], + [45, 0], + [34, -34], + [-24, -34], + [10, -55], + [64, -68], + [114, -19], + [-18, -50], + [20, -7], + [23, -57], + [59, 18], + [57, -8], + [66, 41], + [47, 11], + [41, 29], + [117, -7], + [-23, 111], + [3, 96], + [17, 37], + [12, 69], + [-16, 25], + [45, 74], + [-2, 22], + [63, 50], + [98, 50], + [117, 431], + [60, 9], + [21, -21], + [103, -11], + [-19, 76], + [22, 5], + [-5, 50], + [32, 41], + [53, 9], + [16, 34], + [-12, 32], + [24, 34], + [106, 22], + [11, -6], + [30, -89], + [47, 1], + [72, 19], + [12, -53], + [37, -1], + [57, 26], + [12, -23], + [78, -20], + [57, -52], + [68, -91], + [73, -31], + [-42, -50], + [-33, -61], + [19, -134], + [69, -146], + [50, 4], + [90, -142], + [40, -109], + [-10, -75], + [18, -71], + [6, -71], + [18, -88], + [50, -66], + [-19, -127], + [77, -19], + [37, -175], + [28, -76], + [-1, -78], + [52, -120], + [58, -82], + [-5, -94], + [13, -47], + [-4, -66], + [35, -68], + [-3, -27], + [42, -16], + [2, -30], + [64, -112], + [-20, -29], + [53, -33], + [45, -80], + [43, -47], + [3, -70], + [31, -22], + [19, -124], + [56, -27], + [113, -35], + [15, -42], + [56, -36], + [27, 16], + [104, -5], + [46, -26], + [34, 10], + [29, -20], + [81, 4], + [14, -15], + [48, 23], + [44, 40] + ], + [ + [15128, 22096], + [49, -26], + [38, -53], + [79, 27], + [7, -21], + [-71, -64], + [-55, -40], + [-49, -68], + [-93, 23], + [-6, 65] + ], + [ + [15027, 21939], + [51, 20], + [23, 53], + [-33, 44], + [60, 40] + ], + [ + [15727, 22361], + [4, -76], + [-8, -23], + [39, -90], + [-48, -1], + [-68, -38], + [-70, -59], + [-19, -52], + [-45, 7], + [-27, 92], + [20, 11], + [-28, 48], + [-51, 53], + [22, 107], + [139, 64], + [32, -16], + [57, 23], + [36, 2], + [15, -52] + ], + [ + [27872, 19721], + [44, 25], + [64, 2], + [63, -42], + [129, 37], + [64, -39], + [41, -7], + [72, 20], + [40, -1], + [57, 15], + [10, -66], + [38, -38], + [36, -61], + [43, -25], + [25, -43], + [12, -48], + [60, -19], + [43, 18], + [46, -8], + [64, -49], + [47, -12], + [87, -71], + [118, -112], + [20, -37], + [30, -19], + [80, -77], + [36, 44], + [117, 45], + [13, 26], + [55, 23], + [9, 36], + [34, 13], + [15, 27], + [56, -25], + [27, 26], + [156, 65], + [53, 35], + [45, -39], + [42, -10], + [92, 30], + [63, 1], + [55, -63], + [97, -57], + [14, -42], + [86, 0], + [39, -10], + [55, 20], + [69, 155], + [86, -42], + [84, -29], + [52, -35], + [58, -21], + [34, -55], + [54, -62], + [34, -67], + [83, 16], + [73, -16], + [34, -23], + [46, 44], + [133, 100], + [69, 36], + [60, 44], + [3, 21], + [63, 62], + [57, 37], + [66, 66], + [67, 46], + [13, 25], + [56, 35], + [36, 42], + [349, 48], + [49, 32], + [3, 31], + [69, 38] + ], + [ + [32164, 19737], + [24, 7], + [88, -50], + [20, -46], + [46, -68], + [46, -32], + [72, -17], + [54, -128] + ], + [ + [32514, 19403], + [15, -122], + [59, 19], + [39, 39], + [51, 24], + [95, 97], + [45, -5], + [41, -26], + [10, -34], + [43, -17], + [45, 33], + [94, 12], + [39, -9], + [49, -44], + [60, 8], + [-2, -84], + [25, -20], + [0, -36] + ], + [ + [33222, 19238], + [-18, -92], + [-46, -102], + [-31, 8], + [-27, -23], + [6, -36], + [33, -34], + [22, -53], + [-40, -51], + [-7, -39], + [17, -26], + [-9, -72], + [38, -73], + [43, -26], + [37, -64], + [-35, -57], + [3, -247], + [11, -40], + [74, -48], + [-1, -62], + [-19, -68], + [39, -136], + [-32, -93], + [-5, -85], + [-104, -35], + [-53, -31], + [-37, 16], + [-82, 12], + [-46, -17], + [-110, 27], + [-62, 2], + [-11, 42], + [-29, 24], + [-52, -5], + [-117, 49], + [-11, -25], + [11, -70], + [-30, -81], + [21, -52], + [2, -65], + [-13, -87], + [33, -34], + [32, -89], + [56, -28], + [25, -72], + [3, -132], + [13, -76] + ], + [ + [32714, 16992], + [-150, 21], + [-54, -141], + [-2, -22], + [-53, -33], + [-94, -129], + [-7, -30], + [-53, -61], + [-69, -18], + [-19, 18], + [-20, -66], + [-24, -34], + [-3, -171], + [25, -51], + [-3, -52], + [-27, -88], + [-3, -35], + [-36, -51], + [-9, -55], + [-43, -45], + [-4, -74], + [14, -47], + [-6, -31], + [15, -55], + [-23, -39], + [-14, -69], + [55, -78], + [-57, -96], + [-39, -28], + [-80, -95], + [5, -46], + [-42, -32], + [-64, -75], + [-65, -34], + [-32, -29], + [-124, -25], + [-41, 9], + [-78, -12], + [-24, -14], + [-54, -95], + [2, -38], + [-60, -55], + [-10, -28], + [-62, -59], + [-88, -20], + [-28, 7], + [-42, -28], + [-47, -10], + [-48, -88], + [-56, -51], + [-85, 6], + [-60, -44], + [-77, -18], + [-12, -33], + [-53, -48], + [-74, 2], + [-64, -21], + [-87, -40], + [-31, 12], + [-64, -11], + [-23, 13], + [-52, -17], + [-38, 10], + [-40, -11], + [-51, 2], + [-109, -25], + [-73, -47], + [-29, 20], + [-157, -18], + [-89, -53], + [-51, -1], + [-21, 48], + [-61, 29], + [-7, 70], + [7, 78], + [-69, -8], + [-75, 20], + [-44, -21], + [-142, 17], + [-109, 58], + [-78, 16], + [-58, 32], + [-69, 6], + [-46, 66], + [-67, 60], + [-43, 63], + [-126, 41], + [-64, -10], + [-61, 29], + [-27, 38], + [-50, -6], + [-22, 16], + [-65, 5], + [-101, 69], + [-48, -37], + [-80, -5], + [-82, -17], + [-85, 69], + [-145, 20], + [-100, 59], + [-22, 39], + [-43, 13], + [-74, -12], + [-24, 13], + [-104, 14], + [-104, -51], + [-39, -37], + [-52, -22], + [-43, 15], + [-59, -47], + [-5, -36], + [-28, -32], + [-30, -72], + [-47, -38], + [-67, 11], + [-142, -65], + [-44, -90], + [-39, -24], + [-2, -50], + [32, -67], + [32, -26], + [-13, -31], + [82, -126], + [-33, -91], + [9, -71], + [-42, -75], + [-45, -1], + [-88, -70], + [-55, -27], + [-34, 16], + [-41, -19], + [-64, 2], + [-40, -39], + [-74, -57], + [-28, -97], + [-86, -37], + [-35, -33], + [19, -20], + [-21, -49], + [-54, 2], + [-44, -10], + [-11, -34], + [-29, -21], + [-13, -34], + [-71, 1], + [-55, -27], + [-62, -63], + [-35, -6], + [-57, 23], + [-49, -49], + [-147, -53], + [-84, -12], + [-94, 10], + [-167, -23], + [-28, 34], + [-48, -7], + [-100, -83], + [-110, -65], + [-37, -45], + [2, -26], + [-50, -39], + [-40, -13], + [-95, -55], + [-63, -18], + [-127, -60], + [-62, -87], + [-83, -46], + [-35, -64], + [-59, -43], + [-25, -68], + [-78, -24], + [-53, -59], + [-32, 7], + [-19, -38], + [-50, -42], + [-60, -17], + [-20, -41], + [-141, -91], + [-15, -29], + [-56, -39], + [-110, -64], + [-118, -20], + [-50, -60], + [-35, -66], + [-92, -19], + [-57, 59], + [-70, 47], + [-73, 113], + [-45, 1], + [-53, 34], + [-52, 17], + [-51, 34], + [-114, 48], + [-460, 201], + [-125, 80], + [-19, -63], + [-43, -49], + [-43, -34], + [-43, 1], + [-51, -26], + [-31, -32], + [15, -75], + [3, -57], + [-30, -68], + [-67, -55], + [-44, 5], + [-15, -31], + [25, -88], + [-7, -29], + [-38, -38], + [-19, -45], + [-119, 45], + [-36, 46], + [-5, 29], + [-68, -1], + [-86, -52], + [-87, -8], + [-42, -33], + [-50, 19], + [-49, -2], + [-59, -29], + [-84, 1], + [-62, -13], + [-72, -35], + [-9, -55], + [-19, -19], + [-41, -95], + [2, -34], + [54, -42], + [129, -72], + [53, -4], + [113, -103], + [-186, -99], + [-37, -84], + [8, -44], + [-17, -14], + [-114, -30], + [-31, -21], + [-83, 5], + [-106, 26], + [-75, -7], + [-18, -52], + [-44, -57], + [-43, -12], + [-62, 41], + [-57, -33], + [-47, 9], + [-23, 39], + [9, 41], + [-26, 131], + [-22, 48], + [-37, 37], + [-82, -33], + [-8, -57], + [-39, -55], + [-81, -1], + [-20, -34], + [-47, 48], + [-1, 46], + [-64, 27], + [-46, -11], + [-29, 14], + [-65, 10], + [-40, 25], + [-21, 40], + [-68, -22], + [-70, -86], + [-154, -14], + [-24, -29], + [-46, -5], + [-35, -31], + [-56, -15], + [-41, -35], + [-27, 41], + [-91, -70], + [-8, -23], + [-51, -61], + [-22, 4], + [-32, -51], + [-43, -46], + [-22, 10], + [-33, -25], + [-33, -56], + [-68, -39], + [-39, -37], + [-47, -10], + [-52, -71], + [-67, -59], + [-61, 11], + [-88, -53], + [-67, -27], + [-74, -10], + [-114, -46], + [-107, -10], + [-62, 82], + [-29, 53], + [-9, 51], + [24, 65], + [-20, 53], + [25, 26], + [2, 39], + [25, 28], + [6, 152], + [-33, 92], + [-150, -179], + [-47, -15], + [-64, 31], + [-379, -182], + [-24, -77], + [7, -58], + [19, -47], + [-17, -29], + [-5, -48], + [9, -113], + [18, -30], + [-51, -46], + [-63, -104], + [-30, -26], + [-25, 6], + [-55, -46], + [-91, -19], + [-89, -8], + [-67, 22], + [-77, 37] + ], + [ + [16872, 10406], + [11, 389], + [-49, 183], + [76, 36], + [22, -5], + [21, 42], + [-3, 48], + [-16, 31], + [-96, -62], + [-41, 1], + [-69, 116], + [-16, 92], + [-32, 24], + [2, 85], + [-22, 40], + [-30, -17], + [-131, 4], + [16, 122], + [48, 92], + [-2, 25], + [33, 45], + [14, 53], + [25, 35], + [10, 66], + [43, 52], + [-11, 110], + [20, 111], + [19, 49], + [-41, 62], + [-6, 39], + [-36, 17], + [-43, 80], + [-17, 67], + [-84, 91], + [-4, 30], + [32, 110], + [51, -10], + [23, 13], + [62, -33], + [107, 7], + [76, 38], + [50, 13], + [34, 46], + [25, 106], + [-14, 44], + [85, 47], + [-80, 72], + [34, 29], + [12, 55], + [-12, 15], + [26, 85], + [-47, 120], + [-31, 103], + [-11, 191], + [160, 24], + [-2, 67], + [-22, 56], + [88, 57], + [20, 56], + [29, 33], + [5, 83], + [20, 17], + [-2, 48], + [31, 88], + [-17, 34], + [20, 55], + [3, 79], + [-16, 24], + [-1, 67], + [-17, 73], + [3, 36], + [-28, 46], + [17, 87], + [-18, 51], + [-26, 24], + [-51, 88], + [-23, 18], + [-1, 151] + ], + [ + [17077, 14972], + [45, 9], + [88, 41], + [107, 74], + [47, 49], + [70, 106], + [37, 83], + [61, 99], + [135, 156], + [31, -7], + [92, -53], + [103, -40], + [70, 12], + [60, 31], + [37, 84], + [23, 76], + [34, 25], + [75, 29], + [-79, 175], + [19, 182], + [27, 138], + [-6, 49], + [-76, 64], + [5, 179], + [10, 125], + [100, 5], + [81, 38], + [39, 60], + [-25, 91], + [-92, 173], + [33, 12], + [76, -14], + [22, 13], + [43, -10], + [83, 16], + [70, -4], + [27, -45], + [30, -18], + [7, -67], + [14, -30], + [43, -15], + [16, -28], + [-7, -69], + [32, -40], + [15, 86], + [44, 54], + [3, 22], + [50, 21], + [152, 151], + [-108, -15], + [34, 146], + [-9, 19], + [17, 78], + [-19, 37], + [36, 70], + [36, 44], + [-46, 110], + [63, 64], + [-25, 59], + [2, 27], + [41, 47], + [-29, 54], + [-40, -11], + [-71, 9], + [-49, 49], + [-31, 86], + [-37, -26], + [-175, 17], + [-9, 62], + [45, 75], + [13, 65], + [-2, 49], + [-26, 31], + [-79, 20], + [-23, 20], + [-41, -8], + [-77, 18], + [-33, 24], + [-256, 37], + [-30, -20], + [-104, 108], + [-39, 82], + [-10, 67], + [7, 119], + [19, 91], + [46, 70], + [32, 72], + [9, 64], + [-20, 24], + [-2, 97], + [5, 61], + [-63, 121], + [-39, 7], + [-36, 57], + [-2, 63], + [-24, 40], + [54, 42], + [14, 39], + [59, 36], + [5, 46], + [44, 38], + [-32, 65], + [19, 50], + [-25, 81], + [43, 55], + [33, 65], + [8, 58], + [17, 27], + [-2, 40], + [15, 62], + [97, 121], + [38, 21], + [-17, 43], + [23, 63], + [2, 36], + [-14, 67], + [6, 32], + [69, 24], + [63, 36], + [14, 42], + [-25, 45], + [5, 19], + [-74, 75], + [-11, 37], + [-54, 29], + [-20, 23], + [-61, 24], + [-76, 59], + [-19, 60], + [-53, 42], + [98, 60], + [34, 12], + [7, 105], + [51, 38], + [13, -41], + [47, 19], + [34, -12], + [88, -56], + [-27, -38], + [-30, 10], + [-37, -42], + [49, -67], + [50, -7], + [54, 10], + [36, -41], + [107, 57], + [28, 28], + [27, -9], + [31, 35], + [37, 76], + [44, 38], + [20, 50], + [-17, 41], + [6, 75], + [-26, 36], + [-35, 15], + [-19, 100], + [15, 205], + [-27, 39], + [-60, 30], + [-91, 23], + [-168, 55], + [-49, 2], + [-154, -38], + [-65, -3], + [-75, 16], + [-87, 30], + [-79, -2], + [-40, -22], + [-62, -63], + [-41, 8], + [-92, 55], + [-85, 28], + [-42, 52], + [-54, 32], + [-83, 11], + [-101, 34], + [-16, -50], + [-91, 3], + [-57, 45], + [-16, 43], + [-30, 25], + [-60, -13], + [-27, -24], + [-60, -91], + [-69, 89], + [-62, 19], + [-51, -14], + [-53, 10], + [-41, -31], + [-21, -39], + [-75, 26], + [-7, 15], + [85, 43], + [44, 13], + [73, 51], + [13, 40], + [34, 18], + [-25, 72], + [14, 71], + [-19, 77], + [17, 41], + [1, 58], + [56, 9], + [3, 53], + [18, 12], + [-113, 183], + [-9, 63], + [79, 27], + [8, 121], + [-31, 24], + [15, 109], + [29, 44], + [-37, 27], + [-26, 41], + [-84, -15], + [-32, 31], + [-40, 15], + [12, 57], + [50, -8], + [96, 7], + [13, 69], + [90, -12], + [6, 45], + [29, 73], + [75, 37], + [-11, 21], + [88, 57], + [47, 77], + [51, 50], + [-10, 44], + [-76, 80], + [-43, 35], + [-49, 15], + [56, 78], + [-9, 44], + [-34, 2], + [-77, 143], + [-25, -21], + [-34, 32], + [-37, -58], + [-69, 47], + [-58, -94], + [-59, 10], + [5, -41], + [-26, -6], + [-515, -281], + [-26, 9], + [-69, -24], + [-755, -187], + [-32, 11], + [-51, -7], + [-377, 12], + [-81, 14], + [-154, 46] + ], + [ + [14452, 23643], + [-195, 529], + [72, 105], + [31, 100], + [5, 37], + [-6, 236], + [16, 48], + [80, 108], + [136, 108], + [45, 23], + [148, 30], + [102, 90], + [73, 53], + [123, 153], + [-9, 42], + [-32, 52], + [-34, 20], + [-21, 76], + [8, 52], + [-9, 49], + [-42, 45], + [134, 114], + [-3, 84], + [-148, 215], + [-166, 67], + [-82, 3], + [-104, 108], + [-108, 69], + [-8, 13], + [-158, -109], + [-70, 174], + [55, 72], + [50, 79], + [114, 102], + [-23, 36], + [-95, 18], + [-34, -8], + [-39, -57], + [-130, -3], + [-70, -15], + [-38, 20], + [-21, -26], + [-60, -26], + [-51, -46], + [-123, -42], + [-253, -56], + [-124, -13], + [-92, -25], + [-68, -6], + [-112, -66], + [-48, -9], + [-87, 79], + [-43, -70], + [-68, -57], + [-76, -53], + [-94, -43], + [-176, -105], + [-98, -74], + [-69, -41], + [-52, -20], + [-52, -35], + [-111, -62], + [20, 146], + [46, 216], + [123, 112], + [53, 229], + [51, 234], + [-53, 98], + [-48, 74], + [-15, 45], + [-106, 193], + [-32, 72], + [-110, 219] + ], + [ + [12071, 27423], + [24, 58], + [116, 116], + [65, -270], + [40, -49], + [-4, -85], + [38, -23], + [17, -56], + [52, 21], + [63, 48], + [46, 9], + [137, 60], + [49, 45], + [55, 67], + [213, 136], + [111, 118], + [26, 132], + [17, 59], + [143, 57], + [6, -33], + [38, -37], + [-14, -29], + [23, -37], + [57, 28], + [135, -14], + [87, -131], + [49, -13], + [64, 46], + [40, 73], + [16, 58], + [64, 98], + [25, 113], + [170, 10], + [190, 38], + [92, 134], + [86, 225], + [100, 173], + [-8, 24], + [49, 82], + [104, 46], + [47, 38], + [-32, 135], + [13, 66], + [59, 45], + [92, 17], + [146, 75], + [1, -89], + [30, 0], + [44, 40], + [49, -77], + [-41, -33], + [36, -60], + [104, 1], + [2, 31], + [45, 61], + [47, 31], + [109, -25], + [135, 50], + [78, 13], + [85, -12], + [79, -25], + [6, 21], + [47, 7], + [97, 41], + [34, 22], + [29, -2], + [-34, 70], + [-53, 59], + [30, 33], + [-43, 15], + [-73, -10], + [4, 76], + [44, 10], + [14, 34], + [-24, 75], + [41, 76], + [91, 49], + [65, 12], + [110, 54], + [-9, 103], + [3, 59], + [27, 26], + [-16, 42], + [-51, 7], + [-7, 53], + [51, 36], + [-6, 19], + [-62, 29], + [5, 20], + [67, 9], + [71, -9], + [30, 9], + [120, 15], + [32, -9], + [90, 21], + [153, -7], + [42, -16], + [-40, -55], + [53, -64], + [63, 23], + [114, -38], + [121, 1], + [93, -50], + [42, -10], + [137, -1], + [71, 9], + [1, 24], + [62, 6], + [66, -26], + [131, -33], + [86, 18], + [26, 17], + [74, -2], + [133, 35], + [70, 8], + [49, 28], + [85, 22], + [76, 105], + [120, 83], + [11, 41], + [67, 87], + [109, -12], + [195, 68], + [64, 13], + [126, 86], + [54, 30], + [23, -19], + [135, -20], + [38, 9], + [166, -18], + [79, 14], + [17, -68], + [91, -27], + [25, -32], + [56, 14], + [38, -11], + [173, 29], + [84, -7], + [153, -34], + [106, 14], + [114, -5], + [26, -38], + [49, -21], + [61, -41], + [54, -3], + [62, 14], + [15, -12], + [91, 63], + [94, 43], + [66, 46], + [95, 83], + [106, 54], + [275, 72], + [103, 51], + [-56, 18], + [-87, -34], + [-215, -10], + [-50, 32], + [35, 100], + [42, 74], + [13, 68], + [144, 103], + [62, 25], + [0, 43], + [30, 48] + ], + [ + [21277, 31081], + [57, -30], + [2, -36], + [42, 12], + [39, -44], + [0, -21], + [126, -214], + [-7, -37], + [-39, -57], + [-93, -59], + [-45, 19], + [-133, -122], + [-19, -209], + [-105, -84], + [6, -69], + [-33, -41], + [-56, -41], + [-110, -16], + [-49, 4], + [-95, -31], + [-104, -49], + [-7, 17], + [-95, -51], + [-39, -10], + [-14, -31], + [-96, -51], + [-24, 8], + [-86, -104], + [-40, -57], + [-57, -141], + [-29, -50], + [-48, -47], + [-186, -25], + [-11, -9], + [-134, -1], + [-47, -31], + [-63, -58], + [-79, -50], + [-107, -31], + [-19, -16], + [-16, -65], + [26, -106], + [37, -50], + [-72, -55], + [-49, 7], + [-52, -29], + [-83, -86], + [-48, -29], + [-100, -46], + [-137, -49], + [-28, -24], + [-50, -16], + [-53, -60], + [-110, -87], + [-39, -1], + [-28, 30], + [-145, -38], + [-79, -33], + [21, -105], + [38, -106], + [27, 1], + [102, -320], + [111, 39], + [35, 21], + [37, -75], + [48, -16], + [44, -29], + [59, -71], + [53, -97], + [82, -202], + [30, -84], + [-15, -14], + [-82, 11], + [-33, -20], + [-5, -30], + [25, -67], + [48, -5], + [64, 20], + [14, -15], + [104, 50], + [102, -15], + [43, 7], + [55, 60], + [10, 75], + [23, 43], + [45, 23], + [57, 14], + [53, 32], + [20, 30], + [3, 55], + [-12, 75], + [32, 47], + [37, 11], + [32, -19], + [20, -76], + [44, -28], + [58, 38], + [26, 36], + [2, 46], + [-17, 56], + [5, 31], + [93, -12], + [144, 26], + [122, 11], + [11, -52], + [-39, -39], + [18, -63], + [-55, -34], + [97, -80], + [31, -117], + [78, 27], + [36, -8], + [54, -31], + [35, 7], + [18, -28], + [-91, -88], + [33, -51], + [-56, -53], + [-50, -21], + [-36, -30], + [-46, -75], + [-62, -21], + [-15, -18], + [-69, -26], + [-62, 49], + [-41, -7], + [-15, 32], + [-55, 29], + [-92, -26], + [-104, -93], + [16, -94], + [-21, -38], + [-68, -5], + [-53, -18], + [-52, -36], + [1, -54], + [-65, -53], + [26, -18], + [36, -74], + [43, 6], + [21, -52], + [55, 45], + [13, -35], + [-15, -42], + [-26, -27], + [85, -33], + [-30, -37], + [-36, 23], + [-76, 10], + [-57, -48], + [-58, -17], + [-8, 14], + [-136, -33], + [-38, -36], + [-40, -16], + [-116, 82], + [-67, -44], + [-14, 79], + [-29, 50], + [-41, -52], + [-38, -12], + [-25, 28], + [-46, -16], + [-20, -31], + [-35, 15], + [-12, -33], + [20, -73], + [-21, -40], + [14, -32], + [29, -19], + [30, -91], + [45, -44], + [-1, -42], + [29, -61], + [17, -91], + [23, -25], + [27, 15], + [41, -22], + [8, -57], + [125, 32], + [29, -3], + [96, 22], + [45, 17], + [108, 82], + [40, -45], + [143, 62], + [45, -129], + [-31, -11], + [9, -35], + [-28, -12], + [-10, -68], + [19, -37], + [15, -122], + [67, -88], + [0, -27], + [72, -3], + [108, 32], + [54, 33], + [86, 28], + [23, -8], + [29, 25], + [36, 82], + [24, 16], + [29, 51], + [-17, 46], + [-40, 22], + [-87, 175], + [14, 6], + [-47, 83], + [14, 5], + [-20, 93], + [413, 180], + [84, 89], + [81, 26], + [67, 57], + [53, 89], + [0, 67], + [30, 76], + [42, 71], + [52, 47], + [5, 61], + [28, 39], + [57, 22], + [-2, 41], + [-71, 58], + [-32, 99], + [-18, 27], + [74, 26], + [-4, 23], + [75, 17], + [41, 23], + [10, -34], + [70, 22], + [51, -65], + [60, 36], + [16, 30], + [77, 49], + [27, 41], + [75, 7], + [27, -78], + [25, -28], + [31, -6], + [70, 32], + [63, -90], + [33, -35], + [54, -219], + [29, 68], + [55, 36], + [72, -21], + [133, 25], + [89, 34], + [21, 36], + [78, -66], + [35, -12], + [60, -1], + [77, 18], + [10, -24], + [58, 29], + [11, -42], + [57, -51], + [73, 17], + [27, 35], + [-17, 121], + [30, 67], + [-23, 17], + [33, 34], + [77, 105], + [13, -16], + [61, 15], + [96, 0], + [13, 119], + [29, 31], + [24, 141], + [-28, 21], + [-61, 17], + [7, 44], + [28, 25], + [12, 60], + [-106, 102], + [-11, 44], + [-41, 12], + [-6, 47], + [-60, -5], + [-141, 22], + [53, 100], + [-21, 67], + [-48, 96], + [8, 58], + [-25, 59], + [-50, 14], + [-24, 46], + [63, 41], + [-45, 89], + [-70, -52], + [-18, 28], + [-41, -39], + [-18, 32], + [-45, -40], + [-35, 62], + [-59, -6], + [-10, 48], + [-46, 57], + [-13, 46], + [-59, 62], + [-42, -10], + [-24, 74], + [-29, -12], + [-48, 64], + [-38, 7], + [24, 174], + [-21, 135], + [-33, 111], + [-90, 71], + [-91, 135], + [272, 61], + [183, 37], + [84, 8], + [370, 9], + [81, 36], + [82, 59], + [76, 21], + [34, 22], + [23, -24], + [89, 31], + [35, 21], + [41, 61], + [28, 7], + [48, -62], + [121, -65], + [43, -14], + [40, -57], + [-12, -15], + [34, -52], + [46, -21], + [-11, -21], + [61, -93], + [38, 53], + [127, -145], + [-11, -29], + [10, -38], + [102, -140], + [75, 16], + [85, -59], + [61, 36], + [52, -1], + [49, -13], + [26, 23], + [25, 68], + [55, 84], + [131, 24], + [16, -131], + [116, -85], + [42, 13], + [81, 73], + [57, 93], + [35, 35], + [52, 13], + [10, -69], + [38, -44], + [88, -32], + [46, 17], + [24, 26], + [68, 44] + ], + [ + [24915, 29458], + [30, -76], + [40, -52], + [-20, -22], + [12, -50], + [-50, -80], + [27, -40], + [-26, -61], + [20, -40], + [40, -46], + [15, -46], + [37, -57], + [56, -56] + ], + [ + [17042, 22751], + [4, 46], + [-51, 18], + [-36, -7], + [15, -39], + [-43, -27], + [-41, -8], + [-75, -43], + [-28, -47], + [20, -81], + [23, -50], + [93, 59], + [39, 11], + [31, 35], + [46, -2], + [3, 135] + ], + [ + [23147, 27401], + [-61, 15], + [-38, -3], + [-74, -39], + [-59, -137], + [3, -65], + [64, 22], + [34, -4], + [100, -32], + [49, 114], + [24, -13], + [69, 87], + [-84, 4], + [-27, 51] + ], + [ + [32918, 35612], + [-26, -31], + [-65, -26], + [-25, -86], + [11, -50], + [-17, -11], + [-26, -82], + [1, -35], + [32, -39], + [-25, -38], + [31, -51], + [-62, 7], + [-31, -15], + [-41, -59], + [-29, -15], + [12, -31], + [-49, -60], + [27, -62], + [-127, -58], + [12, -65], + [-49, -59], + [-30, 40], + [-42, 31], + [-42, -24], + [-28, -57], + [-13, -101], + [-1, -81], + [-21, -47], + [-55, -30], + [-14, -23], + [-62, 23], + [-10, -20], + [-60, -6], + [-33, -16], + [5, -47], + [-34, -35], + [-16, -74], + [57, -59], + [-49, -42], + [32, -38], + [24, -106], + [-9, -95], + [17, -99], + [133, 12], + [13, -21], + [-8, -113], + [23, -76], + [-37, -18], + [-64, 2], + [1, -44], + [-29, -40], + [50, -18], + [1, -40], + [35, -47], + [9, -39], + [83, 0], + [17, -60], + [32, 2], + [23, -28], + [30, -106], + [-66, -21], + [-8, -50], + [11, -117], + [24, -10], + [17, -83], + [-29, -61], + [-77, 18], + [-32, -32], + [5, -32], + [41, -29], + [68, -23], + [59, -3], + [4, -24], + [52, -81], + [-5, -62], + [-52, -69], + [-50, 34], + [-28, -36], + [47, -38], + [-44, -58], + [-5, -62], + [41, -46], + [-35, -55], + [-37, -23], + [-41, 49], + [-95, -31], + [-22, -52], + [-21, 36], + [-34, -31], + [41, -44], + [33, 9], + [70, -5], + [30, 20], + [48, -8], + [48, -89], + [59, 8], + [24, -20], + [29, 24], + [59, -41], + [-19, -74], + [0, -192], + [22, -34], + [-3, -41], + [26, -39], + [33, -19], + [-3, -55], + [32, -31], + [54, 5], + [16, -73], + [-44, -52], + [30, -86], + [2, -85], + [26, -12], + [-46, -81], + [-3, -46], + [-23, -46], + [38, -52], + [8, -50], + [43, -28], + [42, -44], + [41, -86], + [-37, -63], + [-21, -73], + [38, -18], + [14, -36], + [36, 5], + [139, 54], + [30, -8], + [41, -34], + [26, 29], + [71, 14], + [20, 36], + [84, 26], + [15, 64], + [50, -12], + [-83, -144], + [9, -53], + [-33, -35], + [-12, -33], + [-71, -49], + [11, -36], + [-71, -34], + [-52, -53], + [2, -59], + [-39, -29], + [20, -41], + [-38, -99], + [-85, -52], + [-18, -43], + [-42, -38], + [-53, -17], + [-81, -11], + [-39, -34], + [-91, -58], + [-42, 45], + [-38, 18], + [-35, -20], + [33, -53], + [26, -82], + [16, -82], + [27, -51], + [65, -66], + [15, -65], + [-23, -95], + [5, -34], + [44, -60], + [0, -44], + [-21, -70], + [14, -40], + [53, -58], + [32, -48] + ], + [ + [32712, 29108], + [12, -42], + [-10, -36], + [-40, -61], + [-23, -105], + [-101, -102], + [-38, -92], + [-2, -37], + [33, -135], + [42, -57], + [6, -36], + [-8, -88], + [28, -179], + [32, -78], + [4, -48], + [-47, -94], + [-18, -82], + [1, -64], + [24, -113], + [13, -15], + [92, -29], + [24, -36], + [41, -158], + [3, -135], + [-42, -93], + [3, -41], + [25, -68], + [10, -73], + [-11, -50], + [-25, -47] + ], + [ + [24915, 29458], + [107, 47], + [115, 134], + [32, 70], + [8, 84], + [42, 73], + [4, 27], + [45, 62], + [27, 57], + [15, 60], + [50, 105], + [25, 94], + [43, 41], + [76, 37], + [69, 51], + [60, -2], + [64, -15], + [65, 5], + [41, 91], + [85, 87], + [-27, 80], + [10, 76], + [71, 138], + [31, 50], + [65, 82], + [24, -36], + [93, -78], + [14, -28], + [247, -30], + [125, -3], + [23, -56], + [-20, -90], + [-3, -59], + [16, -85], + [63, 15], + [74, 29], + [158, 40], + [81, 25], + [17, 52], + [127, 73], + [48, 66], + [63, 8], + [127, 72], + [29, 52], + [-41, 84], + [-6, 38], + [106, 92], + [14, 92], + [-31, 53], + [83, 74], + [9, 39], + [27, 26], + [62, 30], + [43, 100], + [6, 83], + [18, 27], + [6, 76], + [24, 89], + [-21, 56], + [-43, 187], + [-83, 4], + [-5, -37], + [-53, 20], + [-31, -12], + [-51, 26], + [3, 114], + [-12, 13], + [-25, 95], + [-74, 58], + [-137, 36], + [-26, 60], + [-23, -16], + [-49, 15], + [-29, -10], + [-63, 51], + [-40, 68], + [-26, -10], + [-121, 69], + [226, 106], + [50, 15], + [5, -110], + [16, -3], + [24, 122], + [-26, 63], + [-22, 114], + [7, 59], + [-5, 59], + [-16, 27], + [-27, 88], + [-76, 63], + [23, 45], + [-31, 109], + [-74, 53], + [-21, 3], + [-21, -40], + [-35, -14], + [-32, -41], + [2, -44], + [-51, -5] + ], + [ + [26671, 33318], + [10, 73], + [-18, 9], + [-99, 92], + [-117, -36], + [32, 126], + [7, 78], + [26, 108], + [-6, 80], + [34, 74], + [-13, 11], + [-58, -38], + [-122, -44], + [-61, 13], + [-16, 25], + [-35, -16], + [-82, 3], + [-84, 45], + [-92, 1], + [0, 148], + [-70, 81], + [-16, 103], + [-51, 28], + [-7, 70], + [-28, 21], + [-104, 29], + [-34, 36], + [-47, 74], + [-31, -14], + [-7, 90], + [20, 103], + [-36, 5], + [-33, -21], + [-27, -53], + [-73, 0], + [5, 57], + [-24, 98], + [-25, 31], + [-45, 97], + [-66, 41], + [-78, -52], + [-66, 22], + [-64, 11], + [-45, -11], + [26, -40], + [-28, -30], + [4, -81], + [-5, -153], + [-15, -29], + [-1, -54], + [-43, -14], + [-73, -92], + [-102, -94], + [-43, -68], + [-66, -90], + [-69, -3], + [-64, 35], + [19, -62], + [-59, 12], + [-61, -59], + [-9, 60], + [48, 89], + [-17, 18], + [11, 44], + [-33, 28], + [-13, 35], + [4, 74], + [-19, 60], + [32, 53], + [-4, 61], + [-52, 33], + [-41, -9], + [-21, 18], + [-251, 86], + [-99, 0], + [-32, 9], + [-48, -15], + [-148, 47], + [-38, 44], + [-19, 59], + [-50, 0], + [-54, 23], + [-6, 35], + [-32, 31], + [-25, -27], + [-23, 17], + [-36, -10], + [-25, 16], + [-18, 66] + ], + [ + [23427, 35039], + [59, 37], + [33, 9], + [127, 14], + [77, 4], + [199, 27], + [47, 24], + [48, 56], + [90, 33], + [111, 49], + [124, 16], + [81, 31], + [35, 28], + [65, 30], + [43, 86], + [54, 66], + [95, 70], + [20, 41], + [16, 64], + [14, 104], + [22, 83], + [53, 94], + [41, 15], + [62, -7], + [90, -24], + [33, -59], + [50, -28], + [66, 0], + [111, 34], + [85, 69], + [127, 30], + [97, -6], + [86, 10], + [49, -6], + [69, -25], + [79, -69], + [64, -64], + [33, -44], + [73, -156], + [12, -67], + [-11, -51], + [-44, -80], + [-2, -44], + [14, -68], + [26, -71], + [31, -45], + [51, -45], + [42, -17], + [70, -8], + [103, 6], + [111, -53], + [79, -6], + [31, 39], + [28, 79], + [16, 95], + [25, 34], + [80, 38], + [125, -43], + [145, -18], + [214, 29], + [57, -3], + [96, -36], + [92, -71], + [76, -14], + [91, 31], + [152, 27], + [96, 42], + [156, 129], + [25, 41], + [41, -10], + [66, 29], + [45, -10], + [113, -111], + [48, -23], + [94, 6], + [76, 49], + [39, 41], + [35, 89], + [21, 196], + [41, 77], + [53, 55], + [51, 20], + [48, 4], + [95, -13], + [122, 2], + [33, 10], + [24, 36], + [-9, 73], + [24, 41], + [136, 86], + [47, 5], + [116, -40], + [35, 6], + [44, 29], + [42, 54], + [43, 71], + [51, 30], + [46, 9], + [44, 24], + [37, 57], + [77, 165], + [53, 62], + [54, 34], + [56, 15], + [91, -10], + [75, -39], + [39, -42], + [31, -104], + [10, -82], + [42, -50], + [47, 27], + [82, 113], + [36, 19], + [81, -4], + [96, 42], + [57, 13], + [51, -16], + [32, -89], + [31, -17], + [113, 38], + [70, 11], + [115, -23], + [91, -55], + [35, -37], + [8, -34], + [-27, -140], + [-7, -78], + [31, -90], + [43, -49], + [42, -28], + [75, -32], + [38, -33], + [103, -141], + [64, -61], + [100, -37], + [94, -6], + [107, 11], + [142, -16], + [106, -26], + [53, -4], + [100, -25], + [68, -34], + [28, 20], + [54, 124], + [67, 70], + [36, 21], + [37, -2], + [93, -44], + [94, -68], + [161, -74] + ], + [ + [18279, 33008], + [43, 36], + [76, -18], + [32, 6], + [36, -49], + [37, -25], + [12, -30], + [73, -18], + [66, -26], + [43, 12], + [84, -17], + [41, 12], + [63, -9], + [113, -35] + ], + [ + [18998, 32847], + [21, -17], + [-8, -48], + [-34, -26], + [-9, -129], + [-24, -65], + [-16, -81], + [78, -16], + [77, 15], + [125, -24], + [60, -20], + [82, -14], + [81, -6], + [94, 4], + [34, 40], + [56, 29], + [51, -7], + [90, -29], + [76, 15], + [49, 21], + [39, 67], + [-1, 35], + [20, 66], + [38, 55], + [12, 50], + [-46, 71], + [-14, 67], + [-35, 62], + [-36, 29], + [-48, 64], + [-78, 70], + [-145, -50], + [-26, 6], + [-34, 48] + ], + [ + [19527, 33129], + [47, 81], + [-27, 16], + [85, 65], + [-14, 69], + [31, 45], + [34, -5], + [55, 23], + [120, 32] + ], + [ + [19858, 33455], + [5, -61], + [14, -41], + [84, -114], + [18, -43], + [23, 0], + [133, 73], + [22, 22], + [116, 31], + [49, 1], + [83, 49], + [153, 37], + [93, -20], + [61, -1], + [102, 48], + [176, 3], + [-43, 259], + [22, 82], + [54, 7], + [42, 113], + [-1, 147], + [-48, -2], + [-1, 91], + [-10, 40], + [-157, -12], + [-70, 20], + [-34, 23], + [-7, 77], + [-16, -1] + ], + [ + [20721, 34283], + [-2, 68], + [-32, 98], + [-27, 11], + [-38, 54], + [-53, 46], + [-16, 102], + [25, -14], + [37, -99], + [39, -22], + [78, 49], + [82, 5], + [22, -50], + [22, 18], + [40, -8], + [-4, 68], + [55, 63], + [45, 103], + [0, 45], + [-56, 78], + [-31, -20], + [-68, 58], + [-47, -37], + [-67, -80], + [-41, -18], + [-35, 19], + [-37, -13], + [-24, 35], + [13, 42], + [-24, 58], + [-22, 23], + [41, 100], + [58, 67], + [48, 20], + [26, -17], + [77, 18], + [28, 19], + [87, 93], + [-8, 12], + [79, 55], + [77, 26], + [51, 37], + [87, 86], + [104, 58] + ], + [ + [21310, 35539], + [44, -35], + [25, -43], + [63, -67], + [-44, -112], + [-33, 13], + [-39, -164], + [119, 28], + [145, -35], + [77, -3], + [78, -39], + [-21, -56], + [3, -36], + [-43, -100], + [42, -65], + [35, -4], + [19, -49], + [-8, -76], + [12, -64], + [61, -10], + [93, 123], + [99, 197], + [42, 35], + [25, 55], + [52, 28], + [56, -21], + [8, 193], + [-7, 35], + [-52, 52], + [-12, 29], + [0, 75], + [130, 58], + [88, -6] + ], + [ + [22367, 35475], + [45, -26], + [35, -36], + [48, -75], + [45, -88], + [27, -38], + [47, -35], + [108, -28], + [27, -44], + [29, -94], + [42, -54], + [77, -36], + [73, -24], + [210, -6], + [32, 8], + [123, 87], + [92, 53] + ], + [ + [26671, 33318], + [22, -48], + [-107, -121], + [-39, -28], + [-10, -48], + [17, -65], + [51, -147], + [-25, -22], + [75, -104], + [82, -97], + [-45, -26], + [-56, -66], + [-78, -21], + [-45, -35], + [-58, -9], + [-76, -48], + [24, -75], + [-55, -57], + [-96, -46], + [-16, -20], + [-42, 7], + [-106, -43], + [-45, -35], + [-42, 27], + [-37, 53], + [-40, -35], + [-26, 19], + [-115, 111], + [-22, 3], + [-70, -24], + [13, -59], + [-12, -40], + [-48, 10], + [-28, -9], + [-32, -75], + [-82, -42], + [37, -87], + [26, -25], + [29, 7], + [49, -61], + [-12, -79], + [-36, 20], + [-101, -65], + [-73, 14], + [-43, -17], + [-15, -28], + [-117, -29], + [-35, -33], + [-96, -40], + [-40, -40], + [-47, -108], + [-41, -48], + [-146, -43], + [-121, -2], + [-68, -11], + [-43, -26], + [-60, -108], + [-35, -122], + [4, -68], + [-24, -150], + [-110, -24], + [-39, 34], + [-35, -7], + [-91, 4], + [-53, -10], + [4, 51], + [-37, 27], + [-163, 8], + [-36, 24], + [-116, 109], + [-116, 164], + [-83, 226], + [-186, 42], + [-160, 31], + [-307, -39], + [-60, -13], + [-249, -37], + [-153, -17], + [-18, 124], + [4, 44], + [-29, 57], + [10, 44], + [-82, 3], + [-31, 47], + [0, 50], + [53, 14], + [-24, 189], + [-5, 101], + [-32, 198], + [93, 0], + [238, -19], + [87, 19], + [131, 102], + [79, 50], + [65, 227], + [-1, 37], + [26, 65], + [-13, 56], + [-35, 47], + [7, 72], + [20, 108], + [22, 44], + [55, 51], + [16, 36], + [82, 26], + [14, 33], + [-7, 52], + [20, 53], + [43, 48], + [43, 85], + [44, 16], + [-64, 137], + [-36, 36], + [-35, 56], + [-47, 23], + [-69, -3], + [-94, 26], + [-94, 44], + [-70, -11], + [-45, 37], + [-39, 105], + [13, 67], + [-3, 42], + [-106, -31], + [-64, 15], + [-36, -30], + [-27, -56], + [20, -17], + [70, -16], + [-40, -30], + [17, -48], + [-85, -32], + [-39, 17], + [-46, -59], + [-63, 26], + [-88, 6], + [-32, 12], + [-41, 36], + [-123, 52], + [-27, -13], + [-74, 16], + [20, -111], + [-6, -36], + [-35, -42], + [6, -92], + [26, -7], + [-48, -95], + [86, -11], + [78, -50], + [27, -2], + [79, -87], + [-35, -25], + [6, -98], + [-50, -166], + [-32, -76], + [0, -70], + [-16, -46], + [11, -39], + [-4, -100], + [-24, 13], + [-88, -14], + [-70, -29], + [-48, 18], + [-86, 12], + [-96, -83], + [-49, 3], + [-26, 28], + [11, 38], + [-33, 8], + [11, 50], + [-37, 32], + [-90, 9], + [-2, -97], + [7, -34], + [-24, -92], + [27, -107], + [43, -32], + [19, 8], + [63, -47], + [24, -51], + [-52, -11], + [-143, -15], + [-130, 17], + [-69, 2], + [-107, -6], + [-112, -15], + [-126, -34], + [27, -64], + [52, -73], + [-10, -57], + [-55, -76], + [-66, -146], + [-36, -61], + [-106, 27], + [-102, -92], + [-71, -10], + [-72, 14], + [-99, 45], + [-2, 30], + [-49, -3], + [-47, 64], + [-10, 83], + [8, 103], + [-81, -14], + [-85, 44], + [-48, -38], + [-60, 22], + [-28, 49], + [-68, -6], + [17, -53], + [-29, -34], + [-37, 11], + [-25, 42], + [-37, -40], + [1, -42], + [24, -40], + [-12, -24], + [17, -124], + [-60, -59], + [-23, -104] + ], + [ + [19746, 31805], + [-49, -30], + [-116, 2], + [-177, 22], + [61, 85], + [-35, 95], + [4, 80], + [-16, 29], + [-91, 7], + [-60, 33], + [-33, 2], + [-39, 126], + [-10, 8], + [-87, -9], + [-55, 149], + [-7, 42], + [-61, 8], + [-47, 27], + [-100, -3], + [-130, 24], + [-9, 61], + [-35, 12], + [-44, 40], + [-34, 12], + [-14, 30], + [-58, 35], + [-6, 29], + [-35, 22], + [-2, 44], + [-40, 20], + [-77, 2], + [-79, 38], + [-12, 57], + [36, 59], + [-10, 45] + ], + [ + [32712, 29108], + [39, -47], + [20, -66], + [26, -35], + [-29, -44], + [29, -40], + [7, -127], + [16, -84], + [37, -19], + [10, -48], + [70, 15], + [31, 17], + [83, -24], + [47, 4], + [28, 27], + [35, -53], + [35, -7], + [20, -44], + [56, -10], + [11, -38], + [36, 16], + [41, -31], + [36, -69], + [74, 13], + [46, -48], + [28, -4], + [35, -57], + [15, 23], + [49, -29], + [74, 9], + [51, 37], + [50, 21], + [137, 7], + [34, 33], + [86, 33], + [3, 80], + [66, 4], + [112, -21], + [80, -7], + [7, 77], + [52, -29], + [38, 50], + [89, -34], + [14, 12], + [80, -7], + [12, 33], + [51, -34], + [36, -42], + [51, 2], + [39, -22], + [76, -3], + [26, -28], + [39, 21], + [58, -3], + [17, -22], + [-29, -59], + [14, -57], + [43, -6], + [28, 32], + [51, -18], + [38, 11], + [45, -77], + [-13, -30], + [3, -63], + [24, -43], + [59, 28], + [40, 46], + [38, -16], + [91, -119], + [33, -82], + [-11, -46], + [45, -37], + [-2, -56], + [101, -173], + [-41, -55], + [-15, -65], + [27, -20], + [68, -4], + [36, -11], + [74, -3], + [7, -44], + [38, -6], + [136, 40], + [48, -21], + [55, 8], + [6, -43], + [-7, -99], + [9, -49], + [60, -26], + [123, -5], + [18, 26], + [53, 26], + [90, 12], + [68, 17] + ], + [ + [36472, 27379], + [49, -10], + [30, -84], + [15, -77], + [-9, -26], + [6, -67], + [-42, -7], + [-44, -41], + [-24, -4], + [-30, -37], + [-57, -122], + [29, -80], + [-27, -62], + [15, -48], + [-29, -36], + [-27, -84], + [-40, -6], + [-37, -68], + [-27, -6], + [-36, -40], + [8, -65], + [-58, -2], + [-23, -14], + [-73, -6], + [10, -58], + [-65, -67], + [-26, -14], + [-110, -167], + [-8, -77], + [-102, -51], + [-151, 11], + [-39, 17], + [-149, 5], + [-42, -10], + [-16, -50], + [-100, -30], + [-51, 19], + [-70, -53], + [-10, -50], + [-66, -19], + [-55, -30], + [-46, 10], + [-44, -46], + [-64, -21], + [-51, -4], + [-42, 38], + [31, 78], + [-13, 38], + [-4, 69], + [-15, 36], + [-55, 4], + [-31, -10], + [-45, 12], + [-73, -7], + [-39, 16], + [-46, -45], + [-69, -3], + [-63, -13], + [-69, 4], + [-52, -35], + [-383, 208] + ], + [ + [32514, 19403], + [285, 140], + [131, -80], + [-1, 55], + [-14, 16], + [-3, 55], + [-27, 63], + [-46, 61], + [-1, 47], + [-59, 17], + [-49, 0], + [-46, 18], + [-33, 47], + [-51, 51], + [-69, -3], + [-118, 153], + [-38, 15], + [33, 61], + [18, 56], + [-8, 57], + [-41, 25], + [-63, 19], + [-33, 38], + [-23, 7], + [-9, 63], + [29, 68], + [-45, 162], + [-22, 23], + [-25, 79], + [12, 36], + [-17, 72], + [0, 71], + [-17, 32], + [-8, 72], + [31, 35], + [2, 160], + [-92, 0], + [-35, 61], + [25, 38], + [13, 52], + [69, 14], + [11, 84], + [43, 56], + [89, -9], + [13, -34], + [-11, -41], + [21, -47], + [38, -41], + [-32, -39], + [-52, -32], + [-44, -93], + [6, -99], + [-21, -75], + [11, -31], + [49, 112], + [39, 64], + [39, -43], + [41, 57], + [59, 25], + [47, 81], + [45, 46], + [39, -13], + [59, 27], + [-2, 19], + [47, 47], + [26, -5], + [20, 29], + [26, -82], + [53, -62], + [-5, -31], + [27, -110], + [-21, -30], + [8, -43], + [95, -20], + [45, -21], + [78, 34], + [44, 33], + [57, -10], + [86, 23], + [57, -8], + [102, 30], + [75, 4], + [46, -12] + ], + [ + [33522, 21099], + [50, -6], + [38, 41], + [35, 14], + [30, -37], + [58, -29], + [88, -26], + [61, 20], + [8, -30], + [49, -56], + [6, -30], + [37, -41], + [6, -65], + [-31, -44], + [-130, -60], + [-64, -41], + [-35, -74], + [-12, -58], + [-27, -44], + [6, -61], + [-8, -103], + [-28, -28], + [2, -28], + [-41, -73], + [67, -79], + [1, -82], + [-62, -69], + [-85, -40], + [-107, 24], + [35, -58], + [19, 0], + [57, -46], + [39, 29], + [75, 32], + [11, -92], + [-36, -43], + [-9, -51], + [67, -61], + [24, -61], + [43, -48], + [37, -171], + [-37, -29], + [-56, -11], + [-20, -26], + [-118, -32], + [-45, 3], + [-24, 27], + [-58, 8], + [-23, -21], + [-33, 11], + [-160, -116] + ], + [ + [30297, 23507], + [43, 4], + [49, 23], + [67, -17], + [96, 51], + [89, 87], + [32, -13], + [52, 11], + [20, -45], + [133, 10], + [125, -57], + [109, 5], + [99, 29], + [52, 4], + [77, -36], + [-3, -36], + [29, -38], + [25, -67], + [-64, -269], + [50, -72], + [-143, -113], + [-57, -98], + [-40, -43], + [-48, -119], + [35, -24], + [122, -51], + [12, -29], + [115, -91], + [45, 21], + [33, -20], + [25, 12], + [69, 7], + [74, 33], + [86, 22], + [48, 27], + [41, -64], + [-14, -52], + [5, -42], + [-16, -64], + [32, -19], + [23, -53], + [-11, -69], + [-20, -57], + [-53, -50], + [-12, -65], + [27, -94], + [-2, -157], + [-66, -92], + [-2, -86], + [-62, -81], + [22, -77], + [-5, -56], + [50, -63], + [12, -68], + [3, -77], + [-49, -93], + [-11, -59], + [9, -45], + [-37, -95], + [16, -96], + [25, -20], + [21, -68], + [-4, -85], + [49, -11], + [-14, -39], + [1, -74], + [-37, -33], + [-88, -39], + [-36, -38], + [-10, -40], + [23, -56], + [32, -52], + [72, -50], + [5, -27], + [48, -45], + [47, -71], + [55, -18], + [-4, -43], + [18, -50], + [44, -23], + [21, -35], + [51, -22], + [29, -27], + [78, -23], + [108, -90], + [-3, -25] + ], + [ + [33486, 23983], + [-39, -250], + [419, -159], + [305, 67], + [309, -3], + [377, 215] + ], + [ + [34857, 23853], + [53, -143], + [-34, -66], + [-72, -107], + [-64, -35], + [11, -55], + [-38, -94], + [-23, -29], + [-47, -19], + [16, -68], + [-7, -68], + [0, -104], + [18, -76], + [1, -48], + [-19, -65], + [3, -59], + [-80, 2], + [-13, -15], + [-60, 17], + [14, -62], + [30, -32], + [-10, -56], + [-41, -64], + [3, -22], + [-40, -29], + [-88, -31], + [-37, -28], + [-158, -14], + [-13, -58], + [-132, -88], + [-82, -25], + [-41, 43], + [-22, 45], + [-28, -18], + [-32, 13], + [-100, -1], + [-15, -27], + [-11, -105], + [-38, -70], + [-141, -53], + [-39, -22], + [-47, -3], + [-13, -41], + [-66, -80], + [15, -23], + [45, -9], + [54, 10], + [20, -10], + [47, -66], + [14, -50], + [50, -65], + [0, -38], + [32, -80], + [-69, -57], + [-28, -37], + [-52, -15], + [-10, -56], + [40, -71], + [16, -57], + [-30, -81], + [2, -43], + [-18, -28], + [15, -53], + [24, -35], + [0, -30] + ], + [ + [43893, 22349], + [72, -62], + [42, -98], + [126, -105], + [95, 71], + [38, 13], + [47, -3], + [86, -44], + [51, 39], + [35, 2], + [103, -32], + [118, 5], + [37, -21], + [66, -71], + [57, -13], + [114, 25], + [109, 4], + [59, -72], + [53, 24], + [113, -31], + [133, -25], + [33, 17], + [89, -9], + [94, 7], + [74, -21], + [94, -65], + [84, -22], + [124, -7], + [48, -15], + [32, -24], + [53, -10], + [72, -39], + [39, -43], + [67, -20], + [61, -98], + [38, -20], + [109, -120], + [49, 35], + [23, 47], + [22, 88], + [-22, 98], + [54, 12], + [113, -11], + [39, 110], + [-26, 98], + [-7, 73], + [50, 31], + [18, 54], + [41, 48], + [91, 36], + [77, 83], + [-126, 69], + [-10, 100], + [17, 33], + [18, 77], + [38, 35], + [32, 54], + [13, 58], + [-2, 47], + [96, 45], + [-11, 30], + [76, 119], + [21, 92], + [37, -5], + [22, 88], + [17, 11], + [165, 30], + [8, 17], + [-10, 82], + [8, 93], + [-19, 48], + [22, 59], + [55, 45], + [62, 6], + [12, 21], + [83, 15], + [85, -7], + [58, 46], + [-320, 429], + [-145, 234], + [-31, 122], + [-31, 73], + [-277, 439], + [-50, 77], + [-57, 102], + [-19, 54] + ], + [ + [46917, 25106], + [15, 58], + [25, 22], + [40, -20], + [1, -43], + [33, -67], + [19, -4], + [74, 146], + [27, 5], + [54, -48], + [26, 14], + [9, 47], + [37, -18], + [124, 12], + [27, 10], + [32, 56], + [306, 100], + [50, -27], + [19, -26], + [56, -28], + [59, -82], + [3, -79], + [14, -58], + [31, -35], + [39, 1], + [63, 46], + [101, 26], + [52, 23], + [82, -9], + [16, 18], + [63, 24], + [48, 46], + [107, 37], + [50, 57], + [50, -21], + [48, -63], + [65, -47], + [20, -34], + [67, -24], + [139, -25], + [52, 9], + [63, 46], + [-2, 25], + [52, 94], + [50, -6], + [74, -24], + [63, -1], + [50, 26], + [51, 8], + [35, -14], + [45, 9], + [96, 51], + [26, -2], + [3, -64], + [82, -76], + [58, -13], + [67, -45], + [54, -3], + [80, 32], + [13, -43], + [-39, -27], + [37, -62], + [87, -44], + [48, -37], + [82, 14], + [53, -14], + [38, 3], + [41, -24], + [48, -8], + [47, 14], + [6, -22], + [41, -8], + [29, -83], + [88, -4], + [39, 20], + [81, -9], + [57, 28], + [146, 1], + [38, -17], + [43, 12], + [31, -56], + [34, -17], + [35, -67], + [51, -30], + [78, -26], + [14, -29], + [66, -79], + [64, -38], + [41, 16], + [115, -59], + [24, -41], + [39, -16], + [26, -51], + [99, -28], + [38, 44], + [69, 22], + [87, 4], + [58, 52], + [36, 87], + [24, -18], + [102, -24], + [26, 9], + [68, -8], + [42, -34], + [12, -47], + [-41, -20], + [-32, -45], + [-49, -20], + [28, -137], + [77, -53], + [63, -35], + [67, -26], + [7, -111], + [17, -70], + [23, -30], + [-5, -29], + [-95, -71], + [-20, -46], + [16, -48], + [-61, -77], + [-7, -32], + [-50, -39], + [-13, -30], + [20, -55], + [-10, -43], + [-41, -43], + [-17, -38], + [29, -57], + [63, -54], + [11, -25], + [-20, -47], + [-4, -59], + [-28, -20], + [23, -54], + [-2, -65], + [10, -45], + [-9, -34], + [54, -9], + [-39, -43], + [-19, -61], + [49, -1], + [43, -18], + [27, -27], + [129, -27], + [37, -27], + [32, -59], + [81, -30], + [24, -19], + [56, 24], + [34, -28], + [25, -62], + [83, -70], + [75, -27], + [118, -73], + [63, 0], + [55, -20], + [111, 61], + [62, 14], + [27, -24], + [27, -50], + [46, -3], + [65, 23], + [22, 38], + [64, 14], + [30, -37], + [27, -98], + [6, -65], + [55, -11], + [45, -62], + [73, -4], + [68, -49], + [69, -22], + [52, 35], + [62, -8], + [43, 30], + [29, -58], + [47, -46], + [41, -14], + [37, -95], + [40, -64], + [32, -29], + [37, 4], + [51, -58], + [16, -71], + [41, -10], + [92, -83], + [-8, -78], + [-16, -70], + [8, -95], + [49, -45], + [34, 5], + [26, -24], + [52, 16], + [71, -7], + [74, 13], + [44, -6], + [49, -24], + [47, 0], + [34, 16], + [19, -27], + [54, -35], + [-14, -66], + [9, -65], + [52, -42], + [16, -33], + [47, -44], + [56, -101], + [105, 26], + [15, 21], + [67, 20], + [13, 45], + [37, 42], + [115, -21], + [117, 3], + [41, 24], + [21, 46], + [28, 8], + [77, -16], + [38, -19], + [22, -37], + [59, 56], + [29, 9], + [63, -9], + [22, 14], + [19, 48], + [89, 8], + [47, 33], + [20, 68], + [29, 34], + [51, 23], + [23, 24], + [33, 70], + [81, 1], + [54, -38], + [72, 4], + [81, 26], + [43, 23], + [58, -18], + [66, -4], + [55, 12], + [-15, 55], + [25, 32], + [-10, 94], + [26, 45], + [8, 43], + [-7, 63], + [11, 33], + [-55, 88], + [-33, 13], + [-21, 70], + [7, 82], + [29, 13], + [34, 42], + [33, 87], + [-6, 33], + [36, 132], + [-9, 24], + [17, 51], + [37, 17], + [30, 54], + [-22, 94], + [15, 156], + [143, -19], + [99, -25], + [93, -13], + [307, -121], + [15, 7], + [78, -67], + [53, 96], + [116, 24], + [58, -14], + [42, 16], + [-1, 105], + [-56, 68], + [-36, 28], + [-37, 51], + [-12, 59], + [30, 45], + [-12, 74], + [22, 64], + [58, 20], + [73, 12], + [22, -7], + [61, 22], + [32, 30], + [25, 101], + [-9, 58], + [6, 50], + [23, 54], + [38, 52], + [6, 62], + [70, 91], + [13, 28], + [-10, 60], + [61, 28], + [23, 66], + [4, 69], + [33, 27], + [88, 34], + [41, -17], + [95, 1], + [83, -18], + [20, 39], + [64, 46], + [25, 45], + [59, 60], + [62, 11], + [119, -69], + [52, -128], + [74, -66], + [63, -100], + [73, -32], + [75, -58], + [48, -68], + [4, -47], + [-16, -70], + [-45, -77], + [6, -23], + [-16, -83], + [53, -55], + [46, -31], + [62, 9], + [45, -11], + [42, -41], + [54, -3], + [58, -28], + [89, 8], + [15, -38], + [56, -24], + [17, -21], + [87, -33], + [37, -38], + [18, -45], + [39, -35], + [98, -44], + [63, -7], + [17, -19], + [-27, -37], + [-27, -92], + [3, -33], + [34, -36], + [3, -36], + [-26, -87], + [6, -32], + [-21, -37], + [13, -64], + [-38, -61], + [-63, -35], + [1, -65], + [-14, -86], + [-32, -41], + [5, -81], + [-7, -62], + [-40, -44], + [1, -19], + [-40, -38], + [-59, -98], + [28, -22], + [32, -48], + [6, -80], + [21, -85], + [-13, -128], + [-31, -93], + [22, -147], + [29, -125], + [-42, -27], + [-28, -73], + [-36, -52], + [34, -37], + [-12, -88], + [-37, -17], + [-36, 7], + [-12, -59], + [-34, -32], + [51, -115], + [-60, -51], + [2, -72], + [24, -39], + [-94, -249], + [-42, -65], + [-32, -11], + [-34, -33], + [-49, -27], + [-126, -18], + [-4, -33], + [-33, -30], + [15, -47], + [-17, -40], + [-52, -23], + [10, -28], + [77, -35], + [22, -47], + [37, -18], + [20, -90], + [56, -48], + [31, -68], + [0, -97], + [25, -67], + [9, -81], + [-22, -122], + [-16, -36], + [-76, 14], + [-168, -152], + [-136, -91], + [-17, -46], + [-54, -31], + [-15, -22], + [-61, -28], + [-23, -36], + [58, -52], + [42, -21], + [23, -33], + [2, -36], + [82, -120], + [41, -18], + [-16, -67], + [6, -25], + [-35, -49], + [-1, -54], + [-15, -37], + [-39, -34], + [-49, -20], + [-57, 11], + [-90, -198], + [-11, -58], + [-32, -76], + [-54, -13], + [-35, -31], + [-41, 5], + [-24, -61], + [36, -29], + [47, -107], + [21, -24], + [12, -57], + [25, -41], + [-17, -78], + [15, -40], + [7, -85], + [-23, -56], + [15, -76], + [28, -10], + [29, -45], + [4, -58], + [47, -77], + [20, -109], + [-24, -40], + [18, -27], + [71, -38], + [35, -7], + [140, 64], + [88, 1], + [109, 19], + [97, -2], + [58, 47], + [114, -78], + [108, -94], + [28, -34], + [224, -226], + [73, -91], + [64, -8], + [-10, -79], + [-54, -57], + [-36, -70], + [14, -71], + [20, -21], + [2, -76], + [-33, -37], + [-13, -58], + [17, -36], + [31, -17], + [-23, -121], + [-29, -52], + [17, -74], + [-56, -54], + [-16, -49], + [-25, -25], + [-11, -72], + [-26, -19], + [6, -36], + [-14, -44], + [49, -113], + [-21, -33], + [-23, -83], + [-45, -63], + [16, -99], + [-25, -25], + [-34, -1], + [-36, -22], + [-78, -6], + [-10, -89], + [-31, -25], + [-45, -93], + [-64, 55], + [-29, 6], + [-123, 75], + [-40, 80], + [-62, 62], + [-54, 42], + [-89, 100], + [-56, -8], + [-65, -33], + [-122, -92], + [-39, -17], + [-124, 71], + [-47, 53], + [-57, -6], + [-56, 56], + [-35, 1], + [-122, 59], + [-109, -2], + [-53, 10], + [-28, -64], + [6, -67], + [-76, -63], + [-35, -53], + [-35, -18], + [-33, 9], + [-27, 51], + [-57, 71], + [-67, 50], + [-59, -37], + [-36, -35], + [-30, 5], + [-61, -35], + [-45, 55], + [-76, -9], + [-84, 20], + [-22, 40], + [27, 61], + [-6, 83], + [-44, 44], + [-39, 67], + [-11, 85], + [-20, 35], + [-74, 14], + [-125, 69], + [-8, 29], + [-35, 37], + [-37, -17], + [-36, 5], + [-81, -64], + [-49, -55], + [-102, 68], + [-30, 77], + [7, 31], + [-8, 83], + [-16, 20], + [-6, 63], + [-13, 22], + [14, 77], + [39, 50], + [39, 108], + [39, 36], + [19, 55], + [39, 67], + [43, 41], + [-64, 72], + [-124, 167], + [-48, 99], + [-12, 88], + [0, 76], + [-19, 5], + [-46, -36], + [-85, -42], + [-21, -32], + [-44, -17], + [-60, -105], + [4, -48], + [-62, -95], + [-119, 78], + [-94, 29], + [-52, 9], + [-30, 18], + [-6, 49], + [-63, -7], + [-66, -33], + [-123, -80], + [-152, -88], + [-24, 10], + [-51, -28], + [-44, 4], + [-133, -88], + [-82, 1], + [-9, -59], + [-28, 1], + [-29, -32], + [-63, -25], + [-73, 23], + [-31, -8], + [-141, 59], + [-35, 40], + [-49, 3], + [-22, -55], + [-31, -45], + [5, -51], + [27, -50], + [-19, -39], + [-27, -21], + [-12, -102], + [55, -78], + [-13, -63], + [18, -20], + [-11, -48], + [-23, -12], + [-46, -98], + [-98, -25], + [-127, -20], + [0, -42], + [17, -39], + [42, -32], + [31, -47], + [-103, -133], + [-56, -11], + [-36, -45], + [1, -34], + [-27, -44], + [8, -35], + [-21, -44], + [-35, -12], + [-34, -34], + [-14, -45], + [-61, -23], + [-72, 8], + [-20, -20], + [-46, 0], + [-5, -32], + [-32, -48], + [0, -52], + [31, -47], + [88, -57], + [8, -36], + [-35, -22], + [4, -43], + [19, -28], + [19, -72], + [-5, -90], + [-29, -99], + [-62, -57], + [-59, -8], + [6, -73], + [36, -97], + [47, -40], + [-46, -72], + [-10, -100], + [38, -79], + [-3, -28], + [-38, -44], + [-24, -79], + [6, -34], + [84, -89], + [29, -51], + [-3, -76], + [9, -36], + [29, -28], + [-25, -85], + [-79, -60], + [-3, -38], + [-28, -8], + [-32, -59], + [8, -67], + [-44, -42], + [16, -46], + [36, -51], + [55, -4], + [47, -17], + [43, -32], + [31, 26], + [27, -53], + [-10, -43], + [17, -123], + [50, -63], + [40, -16], + [115, 46], + [41, -9], + [40, -54], + [-14, -47], + [21, -41], + [23, 14], + [60, -8], + [52, 25], + [45, -3], + [37, -25], + [48, 2], + [37, 80], + [43, 11], + [26, 48], + [92, -43], + [23, 0], + [26, 64], + [42, 23], + [60, 0], + [36, 30], + [21, -9], + [25, -46], + [83, -5], + [53, -10], + [-8, -27], + [22, -51], + [38, -28], + [30, -210], + [108, 63], + [49, -10], + [5, -29], + [72, -135], + [-57, -46], + [-10, -43], + [3, -62], + [16, -65], + [-6, -57], + [15, -67], + [-27, -65], + [-43, -38], + [-40, -14], + [-86, 16], + [-20, 22], + [-69, -11], + [-97, -76], + [-38, -48], + [-67, -53], + [13, -72], + [-29, -56], + [17, -91], + [21, -76], + [0, -44], + [-68, -29], + [-69, -47], + [-47, -66], + [-39, -28], + [-32, 12], + [-26, -29], + [16, -107], + [-9, -45], + [-35, -41], + [10, -30], + [-16, -31], + [-2, -95], + [-11, -30], + [77, -116], + [50, -129], + [-1, -43], + [35, -98], + [57, -35], + [36, -7], + [57, -44], + [23, -35], + [52, -43], + [70, -28], + [-10, -72], + [15, -34], + [113, -97], + [68, -14], + [21, -25], + [32, -71], + [-35, -61], + [26, -33], + [62, -21], + [22, -25], + [-7, -29], + [0, -115], + [22, -15], + [0, -67], + [61, -29], + [54, -67], + [19, -74], + [41, -95], + [-21, -75], + [-321, -304], + [-65, -194], + [-146, -77], + [-36, -30], + [-50, 15], + [-71, -37], + [-58, 32], + [-130, 7], + [-76, 58], + [-58, -19], + [-55, 19], + [-85, -16], + [-100, -47], + [-50, -72], + [-78, -78], + [-9, -19], + [-52, 17], + [-9, 34], + [-42, 11], + [-60, 97], + [-32, 5], + [-63, 51], + [-100, 39], + [8, 32], + [65, 32], + [57, 62], + [10, 47], + [-14, 63], + [12, 29], + [37, 31], + [0, 52], + [45, 25], + [1, 56], + [-18, 29], + [-6, 73], + [-35, 26], + [25, 24], + [-33, 94], + [0, 62], + [-25, 25], + [-32, 0], + [-73, 56], + [-29, 4], + [-19, 33], + [-57, 49], + [-65, 33], + [-24, 28], + [-80, 14], + [-68, 29], + [-45, 6], + [-82, 31], + [-136, 39], + [-59, 41], + [-17, 45], + [-7, 87], + [-19, 30], + [-14, 62], + [59, 29], + [7, 21], + [55, 64], + [2, 45], + [-35, 20], + [-27, 53], + [37, 38], + [14, 81], + [-70, 14], + [-7, 22], + [-102, 86], + [-18, 35], + [-58, 42], + [15, 64], + [28, 49], + [-4, 22], + [25, 50], + [-6, 24], + [45, 61], + [26, 19], + [5, 51], + [69, 60], + [-23, 79], + [7, 52], + [18, 43], + [-37, 26], + [-53, -1], + [-48, -18], + [-117, 121], + [-45, 13], + [-37, 58], + [-88, 58], + [-116, 201], + [37, 91], + [-76, 24], + [-31, -16], + [-111, -34], + [-102, -41], + [-58, -60], + [-2, -31], + [17, -43], + [-28, -32], + [-54, -13], + [-30, 91], + [-45, 20], + [-33, -23], + [-28, 65], + [-56, 89], + [-13, 34], + [-45, 24], + [-64, -40], + [-43, -45], + [-27, 3], + [-32, -22], + [-104, -49], + [-29, -5], + [-20, -59], + [-29, -39], + [-93, -63], + [-66, -56], + [-46, 46], + [-27, -24], + [-61, 10], + [-59, -15], + [-58, 28], + [-45, -54], + [-55, -7], + [-25, 18], + [-26, -28], + [-72, 3], + [-12, -45], + [-57, -73], + [-80, -70], + [-43, -47], + [-44, 10], + [-75, -35], + [-18, -26], + [-46, -23], + [-30, -43], + [-121, -13], + [-76, -53], + [-38, 1], + [-41, -47], + [-41, -64], + [-32, -10], + [-85, 20], + [-65, 37], + [-47, 49], + [-50, 85], + [-48, 31], + [-90, 42], + [-18, 41], + [-31, 29], + [-61, -25], + [-25, 16], + [-45, -40], + [-50, -66], + [-68, -53], + [-27, -46], + [32, -58], + [6, -44], + [24, -61], + [-55, -34], + [-4, -46], + [-49, -31], + [-29, -66], + [6, -41], + [71, -17], + [41, -33], + [-2, -108], + [-16, -79], + [-85, -78], + [-28, -90], + [-24, -103], + [12, -32], + [-12, -52], + [-62, -22], + [-28, 3], + [-79, -18], + [-52, 17], + [-23, 24], + [-52, 17], + [-53, -6], + [-91, 71], + [-4, 56], + [-63, 62], + [-23, -4], + [-25, -35], + [-39, -24], + [-7, -68], + [-75, 11], + [-50, -22], + [-61, -57], + [-35, 1], + [-35, -25], + [-3, -42], + [-61, -22], + [-44, -39], + [-99, -18], + [-128, 45], + [-86, -15], + [-9, 25], + [-79, 73], + [-22, 47], + [-45, -9], + [-54, 9], + [-51, 24], + [-86, -46], + [-37, 32], + [-45, 4], + [-45, -19], + [-49, 15], + [-85, 84], + [-30, -5], + [-51, 49], + [-35, 9], + [-46, 34], + [-11, 52], + [-36, 10], + [-39, -16], + [-29, -46], + [-37, -23], + [-93, 74], + [-115, 125], + [-51, 79], + [-63, 82], + [-20, 50], + [-76, 101], + [-2, 62], + [-18, 43], + [-42, 10], + [3, 48], + [-29, 21], + [-12, 109], + [-16, 84], + [-17, 41], + [1, 74], + [-40, 15], + [-28, 44], + [-36, 31], + [-5, 61], + [-24, 65], + [-27, 44], + [-53, 26], + [-66, 10], + [-70, 29], + [-35, 73], + [-47, -12], + [-45, 34], + [-103, 30], + [-49, 43], + [27, 89], + [-26, 65], + [32, -4], + [33, 34], + [-3, 30], + [39, 52], + [-31, 61], + [4, 130], + [-14, 18], + [-18, 113], + [-40, 97], + [4, 47], + [-21, 40], + [-56, 52], + [-17, 53], + [19, 200], + [26, 101], + [-9, 57], + [45, 117], + [-15, 71], + [4, 98], + [-16, 131], + [17, 91], + [-9, 37], + [57, 59], + [27, 67], + [-24, 100], + [2, 82], + [-14, 41], + [-176, -10], + [-8, 89], + [159, 10], + [-1, 39], + [15, 69], + [-4, 65], + [12, 95], + [-7, 88], + [-14, 64], + [42, 46], + [-21, 23], + [-55, -11], + [-25, -18], + [-21, -43], + [-279, -151], + [-32, -48], + [-24, -59], + [-31, -21], + [-39, -56], + [21, -65], + [-27, -73], + [3, -84], + [-20, -56], + [-65, -54], + [-53, -92], + [-33, -24], + [-31, -1], + [-65, 38], + [-79, 25], + [-38, 36], + [-69, 33], + [-26, 50], + [-6, 66], + [-36, 29], + [-1, 38], + [-43, 6], + [-28, 35], + [-48, 8], + [-24, 74], + [-40, 19], + [-42, 101], + [18, 73], + [45, 28], + [3, 97], + [-67, 24], + [-80, 89], + [-53, -44], + [-16, -42], + [-32, -20], + [-49, 22], + [-44, -5], + [-77, -26], + [-39, -1], + [-27, 45], + [-221, -23], + [-84, -19], + [-44, 2], + [-77, -62], + [-50, -6], + [-51, -33], + [-69, -16], + [-14, -18], + [-59, 1], + [-68, -29], + [-5, -34], + [-35, -56], + [7, -44], + [-18, -23], + [-18, -61], + [-32, -35], + [7, -41], + [35, -50], + [-18, -83], + [0, -69], + [-28, -37], + [9, -139], + [48, -26], + [-42, -46], + [0, -22], + [-38, -68], + [-30, -34], + [-59, -47], + [-41, -20], + [-136, -15], + [-42, -49], + [-28, -3], + [24, -176], + [-11, -43], + [4, -56], + [19, -44], + [38, -28], + [18, -31], + [44, -22], + [17, -30], + [46, -34], + [23, -71], + [55, -14], + [30, -32], + [39, 38], + [34, -13], + [19, -86], + [41, -13], + [23, -91], + [-4, -32], + [15, -71], + [-32, -42], + [23, -31], + [-15, -46], + [-66, -87], + [26, -60], + [0, -28], + [43, -67], + [45, -23], + [-5, -45], + [-41, -51], + [-7, -37], + [-25, -6], + [-10, -90], + [-35, -26], + [27, -37], + [-1, -67], + [41, -110], + [14, -66], + [20, -40], + [83, -30], + [87, -18], + [29, -60], + [-20, -70], + [19, -19], + [8, -47], + [23, -49], + [-15, -37], + [-59, -50], + [-29, -63], + [17, -88], + [42, -70], + [37, -43], + [-46, -55], + [-10, -116], + [-17, -28], + [-117, -43], + [-47, -103], + [26, -71], + [4, -66], + [14, -49], + [0, -65], + [-35, -19], + [-90, -80], + [-49, -60], + [4, -16], + [-34, -67], + [-17, -61], + [-52, -35], + [-62, -29], + [-6, -27], + [0, -95], + [-30, -75], + [-68, -44], + [15, -108], + [-8, -29], + [-44, -81], + [27, -121], + [-36, -55], + [16, -64], + [-8, -19], + [8, -88], + [-13, -36], + [-1, -80], + [-24, -28], + [-96, -1], + [-30, 22], + [-53, -16], + [-115, -61], + [-50, -7], + [-4, -29], + [29, -78], + [-33, -51], + [-28, -100], + [6, -45], + [-64, -71], + [-68, -17], + [-29, 7], + [-49, -36], + [-22, -38], + [-23, -108], + [-15, -15], + [-17, -63], + [6, -30], + [-38, -51], + [13, -100], + [22, -23], + [-34, -73], + [7, -50], + [-17, -62], + [-111, -101], + [-19, -51], + [-29, -31], + [-33, -2], + [-36, 31], + [-57, 2], + [-30, 17], + [-43, -15], + [-81, -8], + [-25, -23] + ], + [ + [42699, 7153], + [-79, 12], + [-48, 39], + [-106, 119], + [-84, 49], + [-57, 91], + [-3, 73], + [-18, 19], + [-62, 116], + [-29, 11], + [-41, 84], + [-114, 107], + [-39, 14], + [-257, 137], + [-29, 39], + [-39, 113], + [-15, 111], + [-43, 162], + [-40, -6], + [-27, -25], + [-42, 88], + [61, 37], + [16, 423], + [8, 33], + [-67, 123], + [-7, 28], + [-115, 109], + [-18, 95], + [-55, 72], + [-35, 159], + [-24, 80], + [26, 61], + [58, 21], + [38, 62], + [8, 32], + [33, 42], + [32, 75], + [51, 23], + [39, 123], + [-34, 87], + [-51, 64], + [-18, 35], + [-40, 33], + [1, 51], + [70, 94], + [-28, 36], + [-15, 43], + [41, 98], + [-3, 49], + [42, 7], + [52, 57], + [51, 15], + [23, 32], + [37, -8], + [48, 11], + [2, 64], + [42, 64], + [13, 39], + [16, 109], + [-15, 99], + [4, 66], + [36, 44], + [-4, 31], + [-30, 50], + [0, 55], + [-50, 151], + [-28, 35], + [55, 143], + [65, 82], + [-31, 45], + [-28, 15], + [-25, 47], + [11, 35], + [90, 41], + [63, 38], + [9, 57], + [-27, 81], + [-33, 45], + [-40, 114], + [-36, 52], + [-25, 61], + [-24, 26], + [7, 97], + [-34, 138], + [63, 103], + [4, 92], + [40, 144], + [-20, 52], + [-50, 85], + [-63, 78], + [5, 91], + [-38, 33], + [-71, 28], + [-49, 38], + [-111, -40], + [-63, -41], + [-83, 10], + [-44, 51], + [-41, 14], + [-31, 30], + [30, 45], + [-39, 92], + [-62, 28], + [-18, 41], + [16, 48], + [-17, 17], + [-23, 71], + [-33, 52], + [-40, 35], + [-36, 14], + [-9, 29], + [-55, 67], + [-29, 93], + [9, 54], + [-7, 56], + [14, 24], + [-34, 90], + [4, 72], + [-13, 31], + [-37, 9], + [-7, 62], + [65, 37], + [16, 77], + [-20, 40], + [4, 37], + [-29, 129], + [46, 90], + [18, 49], + [4, 50], + [-16, 21], + [46, 75], + [0, 85], + [21, 32], + [22, 77], + [76, 89], + [-2, 60], + [24, 69], + [68, 30], + [-2, 38], + [20, 38], + [-35, 59], + [-77, 37], + [-16, 37], + [0, 127], + [-92, -12], + [-26, 42], + [-31, 7], + [-29, 29], + [-61, -1], + [-23, 42], + [-100, 109], + [-37, 14], + [-118, 8], + [-155, -59], + [-142, -125], + [-85, 21], + [-60, -22], + [-33, 164], + [44, 152], + [-69, 239], + [-33, 35], + [-39, 14], + [-21, -48], + [6, -85], + [-12, -37], + [-45, -34], + [-23, -32], + [-51, -45], + [-111, 49], + [-98, 14], + [-16, 32], + [-50, -25], + [-30, -43], + [-92, -21], + [-14, -42], + [-49, -30], + [-16, -61], + [2, -58], + [20, -71], + [31, -58], + [72, -75], + [22, -51], + [-21, -45], + [14, -37], + [-67, -84], + [-101, -94], + [-130, -44], + [-61, -57], + [-132, -31], + [-33, -60], + [-94, -23], + [-93, -10], + [-17, -39], + [-56, -24], + [-24, 6], + [-83, -74], + [-82, -66], + [-47, -4], + [-107, 15], + [-26, 75], + [-1, 77], + [-386, -165], + [-517, 224], + [-37, -17], + [-53, 15], + [-61, 38], + [-41, -27], + [-48, -51], + [-65, 0], + [-26, 27], + [-106, 48], + [-16, 19], + [-50, -40], + [-26, -35], + [-63, -41], + [-77, 22], + [-28, 24], + [-58, 8], + [-7, 68], + [-24, 33], + [-50, 14], + [-34, 33], + [-55, -28], + [-26, 15], + [-66, 1], + [-48, -39], + [-44, 13] + ], + [ + [36293, 15489], + [42, 190], + [-18, 92], + [1, 41], + [-45, 65], + [-1, 68], + [33, 82], + [-25, 76], + [13, 135], + [-28, 81], + [-71, -7], + [-47, 10], + [-50, 32], + [-2, 29], + [-62, 37], + [-17, 25], + [1, 49], + [-19, 56], + [-74, 66], + [11, 69], + [51, 36], + [24, 39], + [-15, 32], + [29, 80], + [-49, 58], + [87, 123], + [64, -1], + [71, 59], + [52, 81], + [42, 28], + [-19, 78], + [-42, 53], + [-7, 40], + [10, 116], + [-19, 59], + [29, 57], + [-16, 85], + [-2, 55], + [36, 67], + [57, 17], + [76, -18], + [40, 41], + [30, 98], + [14, 17], + [79, 34], + [35, -2], + [50, -50], + [54, -40], + [110, 73], + [6, 72], + [33, 17], + [57, -5], + [43, 15], + [74, 90], + [57, 45], + [44, 11], + [90, 77], + [20, 48], + [-8, 35], + [-54, 130], + [10, 58], + [28, 32], + [5, 54], + [71, 45], + [43, 52], + [65, 45], + [68, 38], + [46, -9], + [8, -82], + [28, -6], + [15, -44], + [30, -40], + [22, -74], + [43, -21], + [19, -59], + [67, 35], + [103, 34], + [64, -5], + [54, 51], + [66, 23], + [59, 45], + [-24, 88], + [-10, 67], + [50, 103], + [-6, 58], + [32, 87], + [33, 26], + [-1, 83], + [54, 23], + [38, 50], + [84, -35], + [38, 51], + [-56, 88], + [1, 44], + [-33, 139], + [15, 34], + [-17, 89], + [-20, 44], + [24, 77], + [34, 9], + [45, 50], + [62, 2], + [32, -29], + [88, -4], + [-5, 91], + [70, 35], + [97, 122], + [83, 21], + [45, -2], + [64, 46], + [37, 82] + ], + [ + [48810, 32961], + [-87, -20], + [-67, 2], + [-51, -8], + [-29, -20], + [-94, -30], + [-31, 26], + [-59, -10], + [-119, -8], + [-30, -10], + [-62, 10], + [0, 32], + [-25, 54], + [-56, -9], + [-36, -37], + [0, -27], + [-50, -44], + [22, -41], + [53, -39], + [38, 3], + [16, -22], + [56, -28], + [22, -50], + [-55, -10], + [-29, -27], + [14, -25], + [53, -6], + [51, 13], + [81, -30], + [14, -36], + [-22, -62], + [51, -8], + [-3, -40], + [-44, -40], + [14, -24] + ], + [ + [48346, 32390], + [-4, -18], + [-68, -36], + [-57, -58], + [-102, -75], + [-20, -35], + [-40, 6], + [-42, -40], + [-36, -12] + ], + [ + [47977, 32122], + [-56, 54], + [-70, 146], + [-46, 39], + [85, 37], + [31, -8], + [28, -38], + [93, 21], + [47, -16], + [16, -55], + [89, 30], + [25, 35], + [7, 112], + [30, 37], + [-69, 15], + [-55, -5], + [-42, 10], + [-91, 46], + [-39, 88], + [8, 25], + [-25, 57], + [-30, -6], + [-45, 32], + [-19, 41], + [-62, 23], + [-28, -2], + [1, -77], + [-21, -44], + [-73, -41], + [-64, -9], + [-41, -43], + [16, -33], + [-14, -25], + [37, -49], + [-44, -36], + [21, -41], + [99, -38], + [-88, -58], + [-96, -38], + [-33, 1], + [-53, -50], + [-17, -38], + [15, -78], + [-54, -38], + [17, -19] + ], + [ + [47367, 32086], + [-22, -35], + [-45, -135], + [-16, -111], + [-4, -120], + [32, -11], + [-63, -58], + [-23, -46], + [26, -28], + [-26, -89], + [33, -184], + [16, -15], + [3, -130] + ], + [ + [47278, 31124], + [-210, 58], + [-105, -62], + [-98, -4], + [-82, -12], + [-80, 74], + [-130, 83], + [-69, 57], + [-32, -19], + [-31, 26], + [-29, -16], + [-98, 228], + [12, 12], + [-19, 55], + [-113, -60], + [-11, 25], + [-37, 6], + [-81, -17], + [-43, 30], + [-88, 95], + [-5, 35], + [-51, 28], + [3, 19], + [-59, 27], + [-52, -56], + [-148, 62], + [10, 120], + [-31, 15], + [-57, -21], + [-23, -43], + [-36, 21], + [-55, -14], + [-72, 16], + [-31, -36], + [-25, 17], + [-58, -23], + [36, -25], + [56, -63], + [17, -5], + [14, -105], + [-33, -29], + [31, -102], + [29, -17], + [-17, -30], + [27, -69], + [41, -53], + [-19, -20], + [-57, -12], + [-34, -31], + [-135, -30], + [-44, -38], + [-6, -41], + [16, -19], + [24, -87], + [-91, -23], + [-80, -62], + [-59, -203], + [-26, -18], + [-146, -53], + [-64, -45], + [-20, -74], + [52, 2], + [10, -48], + [34, -63], + [-20, -52], + [38, -82], + [-45, -67], + [29, -92], + [-55, -114], + [8, -95], + [25, -44], + [42, -21], + [3, -51], + [64, -58], + [121, -264], + [5, -95], + [23, -75], + [113, -248] + ], + [ + [45151, 29129], + [-34, -8], + [-112, 12], + [-70, -21], + [-44, -31], + [-69, 17], + [-56, 87], + [-53, 23], + [-35, 41], + [12, 50], + [-10, 38], + [-44, 3], + [-100, -48], + [-54, 61], + [-45, -1], + [-41, 46], + [-34, 62], + [-63, -14], + [-4, 35], + [-73, 67], + [-15, -27], + [-71, -3], + [-49, -31], + [-5, -27], + [-41, -30], + [-48, -17], + [-65, 45], + [-54, 10], + [-81, -28], + [-35, -1], + [-81, 19], + [-38, 30], + [-41, 6], + [-63, 34], + [-47, 40], + [-61, 32], + [-71, 63], + [-32, 15], + [26, 77], + [69, 65], + [50, 23], + [27, 57], + [43, 45], + [23, 84], + [-47, 67], + [-11, 34], + [-32, 35], + [-18, 45], + [18, 42], + [6, 67], + [-47, 110], + [6, 23], + [-29, 112], + [-29, 36], + [47, 27], + [30, 38], + [88, 24], + [10, 23], + [123, 76], + [8, 22], + [-15, 51], + [-62, 82], + [-39, 82], + [-31, 16], + [-30, -21], + [-66, -14], + [-29, -24], + [-26, 13], + [-62, -40], + [-8, 65], + [-17, 4], + [-26, 57], + [-51, 50], + [43, 54], + [34, 85], + [39, 22], + [-30, 36], + [-76, -65], + [-38, -13], + [-29, 109], + [-23, 29], + [-5, 45], + [91, -24], + [147, 33], + [39, 42], + [-1, 56], + [66, 60], + [10, 44], + [29, 32], + [-14, 46], + [26, 22], + [-39, 103], + [1, 42], + [52, 50], + [50, 3], + [35, -14], + [35, 17], + [12, 101], + [-6, 66], + [41, 18], + [31, -9], + [95, 59], + [26, -16], + [49, 36], + [80, 6], + [15, -38], + [59, 34], + [48, 14], + [50, -36], + [34, 35], + [66, -28], + [34, -29], + [52, 9], + [139, -29], + [6, -17], + [55, -6], + [62, -18], + [76, 27], + [155, 33], + [59, 50], + [56, 14], + [88, -44], + [31, 20], + [62, -3], + [56, 18], + [108, 51], + [51, -27], + [16, 27], + [49, 24], + [33, 1], + [42, 44], + [34, 19], + [91, -9], + [41, -21], + [71, -13], + [37, -22], + [15, -51], + [26, -20], + [122, -4], + [39, 25], + [78, 22], + [46, 37], + [95, 20], + [70, 32], + [18, 60], + [36, 21], + [32, 50], + [-36, 65], + [0, 21], + [64, 54], + [1, 77], + [-34, 98], + [29, 54], + [3, 45], + [36, 4], + [50, -25], + [34, 16], + [58, -27], + [29, -38], + [29, 4], + [6, 33], + [44, 14], + [113, 49], + [48, 52], + [32, 13], + [61, -6], + [33, 16], + [33, -10], + [85, 48], + [110, 20], + [114, 63], + [13, 24], + [67, 61], + [61, -5], + [71, 51], + [59, -10], + [51, 52], + [9, 34], + [-23, 46], + [-13, 72], + [90, 132], + [132, 24], + [27, -36], + [32, 5], + [6, -42], + [-11, -50], + [50, 26], + [51, -9], + [53, 20], + [73, -39], + [61, 13], + [82, -16], + [73, -1], + [22, -19], + [99, -43], + [20, -39], + [79, 17], + [6, -34], + [107, -92], + [17, -1], + [94, -72], + [114, -36], + [109, -54], + [15, -55], + [-15, -37], + [-89, -32], + [-70, -12] + ], + [ + [48810, 32961], + [-54, -65], + [-70, -24], + [-30, -37], + [-70, -38], + [-36, -9], + [-117, -72], + [-14, -34], + [4, -48], + [101, -61], + [-7, -27], + [73, -20], + [47, -40], + [-59, -16], + [-50, -37], + [-146, -23], + [-36, -20] + ], + [ + [47977, 32122], + [-36, -44], + [-44, -25], + [-67, 59], + [14, 51], + [-46, 22], + [-71, -3], + [-94, -37], + [-115, -20], + [-151, -39] + ], + [ + [47278, 31124], + [-3, -265], + [-11, -89], + [-49, -241], + [-16, -36], + [-47, -38], + [-12, -34], + [5, -45], + [37, -59], + [8, -36], + [-67, -45], + [-30, -41], + [23, -21], + [-15, -62], + [-4, -61], + [-33, -81], + [13, -50], + [-37, -92], + [-56, -46], + [-15, -50], + [-42, -48], + [-7, -38], + [-42, -64], + [-48, -47], + [-36, -22], + [-30, -49], + [-41, -36], + [-41, -18], + [-65, -54], + [-29, -11], + [-14, -32], + [-108, -105], + [-31, -7], + [-39, -40], + [-32, -4], + [-60, -32], + [-48, -43], + [-97, 11], + [-55, -22], + [-65, -53], + [-81, -115], + [-26, -15], + [-76, -4], + [-87, -25], + [-102, -43], + [-48, 43], + [-47, 19], + [-14, 27], + [-55, 44], + [-26, 6], + [-38, 50], + [-84, 21], + [-98, -1], + [-28, 13], + [-73, 57], + [-5, 34] + ], + [ + [32714, 16992], + [106, -17], + [30, -72], + [12, -85], + [-14, -149], + [-20, -25], + [28, -131], + [-6, -268], + [-46, -77], + [3, -62], + [-28, -63], + [-88, -108], + [-12, -32], + [36, -54], + [-17, -30], + [-22, -157], + [-17, -35], + [25, -30], + [-4, -30], + [37, -68], + [-7, -45], + [95, -130], + [29, -87], + [5, -66], + [27, -57], + [24, -22], + [-5, -75], + [21, -100], + [26, -51], + [-4, -25], + [28, -38], + [8, -41], + [51, -11], + [33, -53], + [77, -13], + [67, -63], + [93, -33], + [66, -31], + [38, 11], + [38, 38], + [100, -97], + [11, -36], + [74, -34] + ], + [ + [33612, 14440], + [7, -52], + [-71, -38], + [-58, -95], + [-77, -85], + [-13, -77], + [-14, -32], + [-45, -22], + [-74, -3], + [-79, -183], + [-9, -38], + [-29, -30], + [-111, 34], + [-40, -2], + [-55, -42], + [-63, -17], + [-42, -31], + [-66, 42], + [-49, -39], + [-132, -8], + [-31, 38], + [-53, -7], + [-33, 17], + [-9, -62], + [27, -61], + [13, -75], + [-10, -32], + [-33, -18], + [-20, -46], + [-46, -66], + [-7, -28], + [45, -55], + [8, -65], + [34, -35], + [-57, -19], + [-37, -30], + [12, -50], + [-7, -27], + [-48, -56], + [34, -141] + ], + [ + [32374, 12904], + [-33, -24], + [-60, 5], + [-34, 37], + [-110, -22], + [-133, -90], + [-35, -36], + [-24, -81], + [-21, -6], + [-77, -81], + [-32, -18], + [-48, -72], + [-106, -71], + [-64, -57], + [-8, -33], + [-58, 2], + [-78, -31], + [-118, 14], + [-41, -24], + [-13, -53], + [-50, -66], + [1, -63], + [-107, -112], + [-21, -31], + [47, -16], + [33, -37], + [46, 2], + [61, -46], + [29, -7], + [54, 38], + [8, -33], + [71, -72], + [21, -102], + [-33, -35], + [-1, -67], + [52, -38], + [-21, -47], + [-27, -13], + [-11, -42], + [9, -33], + [-27, -66], + [-68, -33], + [-50, -7], + [-53, -25], + [-58, -49], + [-4, -21], + [-54, -15], + [-72, -75], + [-37, -47], + [-99, 35], + [-37, 30], + [-18, -16], + [-96, -34], + [-48, -73], + [49, -96], + [15, -90], + [-43, -23], + [-31, -41], + [37, -30], + [1, -23], + [-41, -18], + [-47, 27], + [-45, -1], + [-45, -36], + [3, -80], + [-46, -15], + [-76, -6], + [-65, 14], + [-103, -95], + [-51, -26], + [9, -40], + [-37, -54], + [18, -15], + [-1, -44], + [22, -15], + [-44, -63], + [-93, -69], + [3, -72], + [-38, -48], + [-10, -30], + [11, -54], + [-49, -38], + [-130, -113], + [-56, 24], + [-106, -46], + [-102, -75], + [-126, -15], + [-50, 5], + [-81, -19], + [-43, 22], + [-22, 29], + [-65, 25], + [-22, 28], + [-69, 18], + [-65, -1], + [-94, -94], + [-32, -54], + [-55, -11], + [-50, -46], + [-26, -61], + [-7, -57], + [-17, -11], + [-54, -99], + [-100, -23], + [-47, -90], + [-49, -43], + [-96, -99], + [-49, -15], + [-25, -21], + [9, -81], + [-30, -33], + [-46, -4], + [5, -45], + [20, -30], + [40, -22], + [45, -47], + [141, -21], + [21, -8], + [10, -55], + [52, 11], + [61, -10], + [24, -85], + [-5, -86], + [17, -44], + [31, -33], + [74, -34], + [48, -119], + [40, -31], + [39, -5], + [42, -31], + [73, -7], + [62, -296], + [104, -176], + [2, -77], + [24, -164], + [53, -32], + [104, -136], + [12, -50], + [-9, -69], + [-73, -44], + [-25, -30], + [-17, -82], + [-42, -55], + [-32, -25], + [-22, -114], + [3, -52], + [45, -69], + [2, -111], + [23, -13], + [-62, -125], + [-54, -79], + [-54, -33], + [-54, -6], + [-24, 22], + [-37, -4], + [-113, -32], + [-45, -50], + [-86, -50], + [10, -58], + [-23, -66], + [13, -39], + [-20, -50], + [-7, -65], + [-37, -23], + [-7, -43], + [-23, -35], + [-52, -6], + [-35, -19], + [-18, 13], + [-42, -52], + [-140, -33], + [-80, -31], + [-44, 19], + [-68, 1], + [-116, -34], + [-74, -46], + [-57, -21], + [-62, 18], + [-38, -30], + [-45, -16], + [-52, 0], + [-56, 18], + [-18, -42], + [6, -78], + [-41, -62], + [-16, -48], + [11, -43], + [-16, -119], + [-40, -48], + [-50, -102], + [9, -38], + [-16, -74], + [31, -42], + [-5, -73], + [18, -18], + [13, -71], + [54, -107], + [2, -44], + [24, -71], + [26, -34], + [-1, -55], + [-35, -34], + [-41, -10], + [-65, -32], + [-35, -31], + [-68, -96], + [-51, -45], + [26, -18], + [48, -115], + [-67, -74], + [-18, -41], + [30, -71], + [-13, -73], + [-70, -12], + [-80, 17], + [-12, -66], + [-33, -50], + [-20, -57], + [-30, -33], + [4, -33], + [-75, -91], + [-58, 20], + [-72, 46], + [-84, -8], + [-87, -29], + [-52, -6], + [-53, -21], + [-51, 23], + [-131, 8], + [-143, -25], + [-56, 13], + [-87, 1], + [-54, -24], + [-19, 8], + [-119, 14], + [-37, -65], + [2, -24], + [-33, -79], + [-44, -21], + [-11, -38], + [-61, -81], + [-14, -66], + [-117, -49], + [-93, -54], + [-6, -36], + [43, -76], + [4, -87], + [-51, -55], + [7, -27], + [-35, -59], + [32, -57], + [-8, -102], + [-80, -26], + [-33, -224], + [32, -41], + [6, -52], + [40, -42], + [34, -75], + [-45, -77], + [-7, -40], + [-39, -21], + [-44, 3], + [-44, -63], + [-26, 15], + [-27, 60], + [-44, 16], + [-73, -14], + [-42, 4], + [-91, 30], + [-55, -6], + [-59, 58], + [-137, 47], + [-55, -18], + [-59, -53], + [-46, -10], + [-51, -64], + [-48, -42], + [-46, -8], + [-72, 60], + [-21, 73], + [-50, 39], + [-19, 32], + [-47, 7], + [-56, 22], + [-26, 23], + [-28, 54], + [-35, 20], + [-42, 68], + [-90, 23], + [-82, 13], + [-39, 23], + [-29, -6], + [-45, 16], + [-40, -123], + [-27, -48], + [-59, -39], + [-31, -36], + [-15, -87], + [-57, -17], + [-132, 5], + [-46, 33], + [-21, 40], + [-42, 34], + [-13, 78], + [-52, 31], + [-7, 24], + [24, 131], + [-8, 46], + [19, 83], + [-21, 27], + [-29, 1], + [-84, 76], + [-12, 28], + [-107, 8], + [-55, 11], + [-77, 31], + [-40, 80], + [-20, 91], + [-21, 8], + [-29, 70], + [-26, 12], + [-34, 66], + [-58, 54], + [-41, -5], + [-41, 25], + [-24, -7], + [-29, -40], + [-56, -6], + [-96, -66], + [-73, -13], + [-94, 18], + [-42, 0], + [-92, 27], + [-32, -21], + [-32, 1], + [-67, -41], + [-75, 21], + [-62, -2], + [-68, 11], + [-102, 2], + [-47, 32], + [-31, 52], + [11, 66], + [-48, 157], + [-55, 31], + [-97, -5], + [-75, -34], + [-103, 11], + [-46, -4], + [-56, -44], + [-13, -78], + [-38, -43], + [-8, -33], + [19, -115], + [22, -34], + [5, -63], + [18, -70], + [-10, -44], + [-33, -59], + [-62, -49], + [-52, 42], + [-90, -3], + [-39, 21], + [-30, -3], + [-47, 73], + [-40, 23], + [-25, -43], + [-35, -22], + [-61, -14], + [-35, 13], + [-68, 65], + [-45, -50], + [2, -56], + [-56, -36], + [-62, 5], + [-80, -55], + [-35, -8], + [-51, -67], + [-41, -32], + [7, -77], + [25, -72], + [11, -79], + [-47, -50], + [-26, -3], + [-67, 31], + [-82, -3], + [-25, -58], + [-67, 4], + [-60, -28], + [-28, 6], + [-36, -49], + [-14, -45], + [-51, -55], + [-40, -86], + [-101, -99], + [-66, -22], + [-7, -34], + [-33, -20], + [-33, 1], + [-67, -58], + [-46, -3], + [-34, 15], + [-30, 37], + [-20, -1], + [-48, -53], + [1, -53], + [-42, -69], + [-80, -90], + [-77, -29], + [-58, 45], + [-36, 39], + [-25, -4], + [-24, 29], + [-44, 17], + [-38, 29], + [-64, -18], + [-23, 46], + [-42, 39], + [2, 63], + [-14, 14], + [-64, 9], + [-79, 65], + [-86, -29], + [-99, -56], + [-87, -9], + [-81, 28], + [-26, 102], + [-81, 0], + [-60, 21], + [-50, -11], + [-25, 36], + [-76, 60], + [-54, -31], + [-13, -57], + [-47, -24], + [-16, -70], + [-23, -31], + [-82, -216], + [-74, -20], + [-15, -31], + [-47, -35], + [1, -24], + [-47, -37], + [-49, -58], + [-14, -33], + [-51, -21], + [-29, 36], + [1, 44], + [-19, 20], + [-43, 7], + [-41, -41], + [-55, -23], + [-67, 1], + [-53, 30], + [-44, 8], + [-35, -46], + [-35, 11], + [-89, -32], + [-9, -99], + [-63, -37], + [-15, -29], + [-50, -9], + [-31, -71], + [-49, -24], + [-13, -64], + [-20, -41], + [12, -92], + [23, -49], + [-47, -61], + [-81, -36], + [-59, 31], + [-19, -5], + [-59, 61], + [-24, 12], + [-43, -13], + [-178, 170], + [23, 38], + [12, 55], + [-42, 49], + [-104, 21], + [-22, -26], + [-68, -39], + [-77, -15], + [-24, -32], + [-55, -22], + [-21, -34], + [-1, -46], + [-101, -99], + [-17, 5], + [-55, -52], + [-33, -49], + [-69, 9], + [-53, -26], + [-72, 22], + [-27, -5], + [-51, 60], + [-20, 114], + [-49, 105], + [38, 62], + [-84, 96], + [-52, 51], + [-46, 16], + [-35, 49], + [-7, 41], + [-25, 35], + [-1, 105], + [-35, -4], + [-54, 44], + [1, 17], + [-78, 45], + [-2, 134], + [5, 53], + [-51, 83], + [-29, 2], + [-65, 37], + [-76, 93], + [-7, 25], + [-44, 33], + [-9, 76], + [-17, 30], + [2, 40], + [-17, 42], + [-35, 38], + [-35, 88], + [16, 57], + [0, 54], + [20, 29], + [-18, 140], + [3, 59], + [-19, 19], + [-95, 32], + [-99, 25], + [-18, 35], + [-26, -1], + [-71, 99], + [-26, 65], + [-28, 13], + [22, 82], + [62, 41], + [61, 15], + [36, 24], + [17, 40], + [-14, 33], + [-40, 40], + [-51, 87], + [-40, 4], + [-12, 34], + [11, 62], + [-30, 52], + [3, 61], + [-52, 51], + [-14, 27], + [-65, -44], + [-63, 19], + [-97, 77], + [-44, 11], + [-4, 56], + [-21, 60], + [2, 54], + [-37, 100], + [7, 43], + [-58, 42], + [-34, 48], + [-61, 56], + [-44, 89], + [-49, -14], + [-111, 228], + [-41, 168], + [-17, 36], + [-68, -22], + [-26, 5], + [-50, 41], + [-28, 50], + [-34, 29], + [6, 39], + [23, 29], + [-4, 54], + [12, 31], + [-47, 35], + [-71, -27], + [-54, 12], + [-79, -106], + [-57, -66], + [2, -17], + [-51, -46], + [5, -34], + [-34, -38], + [-58, -19], + [-123, -22], + [-41, -39], + [-7, -73], + [-22, -14], + [-42, 46], + [-52, 9], + [-88, 56], + [-6, 40], + [-47, 33], + [10, 74], + [31, 73], + [28, 121], + [21, 19], + [17, 87], + [60, 32], + [36, 41], + [48, 23], + [-12, 51], + [-26, 40], + [30, 48], + [13, 76], + [-34, 47], + [-7, 30], + [-79, 137], + [38, 29], + [23, 41], + [1, 38], + [43, 29], + [31, 50], + [15, 54], + [23, 36], + [-21, 35], + [-8, 75], + [40, 69], + [23, 90], + [24, 41], + [-26, 11], + [-32, -17], + [-37, 34], + [-137, -50], + [-58, 44], + [-62, 18], + [-51, -17], + [-30, 11], + [-97, 3], + [-70, 18], + [-42, -1], + [-53, 15], + [-61, 34], + [-54, 75], + [-56, -15], + [-50, 10], + [-95, -26], + [-69, -3], + [-48, -37], + [-32, 58], + [-21, -4], + [-40, 83], + [-55, -1], + [-20, -13], + [-59, 17], + [-21, 57], + [-2, 66], + [-19, 39], + [-5, 75], + [-55, 118], + [-1, 32], + [31, 93], + [-13, 63], + [84, 107], + [24, 6], + [44, 70], + [30, 16], + [25, 124], + [71, 56], + [-41, 157], + [-10, 69], + [-65, 203], + [0, 48], + [45, 62], + [10, 60], + [26, 21], + [-1, 39], + [49, 31], + [54, 109], + [37, 19], + [19, 35], + [2, 91], + [-18, 52], + [9, 39], + [76, 40], + [51, 4], + [85, 129], + [9, 83], + [27, 68], + [41, 8], + [121, 72], + [46, 62], + [-13, 84], + [37, 53], + [39, 88], + [-17, 155], + [26, 50], + [53, 75], + [-6, 64], + [-70, 109], + [-14, 57], + [-48, 25], + [-31, -7], + [-15, -37], + [-40, -11], + [-35, 26], + [-20, 65], + [-56, 15], + [-44, 46], + [-21, 51], + [-58, 2], + [-21, 25], + [-7, 42], + [23, 42], + [-63, 136], + [-51, 20], + [-23, 53], + [-39, 8], + [-53, 45], + [-78, 53], + [-78, -25], + [-36, 76], + [-14, 70], + [21, 49], + [-35, 46], + [0, 34], + [-129, -18], + [-28, 9], + [-3, 80], + [-54, 98], + [-17, 67], + [-21, 31], + [-39, 24], + [-31, 62], + [-22, 103], + [12, 113], + [65, 70], + [58, 43], + [58, -3], + [76, 9], + [30, 25], + [54, 69], + [18, 49], + [70, 54], + [23, 39], + [14, 92], + [-34, 16], + [-27, 46], + [15, 133], + [26, 23], + [215, 682] + ], + [ + [11532, 12395], + [51, -52], + [406, -544], + [88, -131], + [101, -106], + [77, -99], + [48, -27], + [61, -58], + [24, -35], + [13, -58], + [7, -149], + [-20, -78], + [-40, -86], + [-2, -73], + [23, -35], + [56, -50], + [77, -148], + [27, -33], + [62, -37], + [52, -5], + [140, 22], + [61, -15], + [24, -22], + [114, -154], + [15, -33], + [19, -123], + [-8, -92], + [5, -57], + [46, -210], + [7, -113], + [36, -70], + [57, -46], + [57, -29], + [48, -38], + [100, -105], + [33, -61], + [51, -264], + [23, -40], + [103, -135], + [89, -91], + [67, -52], + [28, -50], + [11, -116], + [17, -43], + [56, -77], + [19, -56], + [59, -46], + [23, -29], + [11, -78], + [-4, -76], + [16, -47], + [53, -45], + [26, -121], + [36, -204], + [106, -71], + [63, -79], + [53, -117], + [30, -26], + [17, -66], + [66, 12], + [87, 43], + [163, 113], + [37, 6], + [67, 70], + [97, 32], + [76, -41], + [63, 16], + [57, 33], + [28, 3], + [74, 67], + [34, 55], + [45, 8], + [24, 31], + [65, 32], + [126, 136], + [57, 104], + [30, 11], + [-13, 121], + [29, 65], + [10, 70], + [26, 25], + [120, -12], + [78, 27], + [56, 75], + [66, 30], + [17, 34], + [5, 68], + [46, 95], + [72, 10], + [61, 63], + [28, 51], + [56, 46], + [6, 32], + [50, 63], + [32, 57], + [75, -2], + [62, 45], + [14, 46], + [-28, 111], + [-14, 91], + [53, 44], + [61, 13], + [-13, 55], + [41, 16], + [-103, 123], + [-2, 154], + [14, 36], + [60, 67], + [12, 39], + [53, 58], + [81, 32], + [-2, 23], + [40, 48], + [15, 40], + [-10, 80], + [79, 37], + [93, 83] + ], + [ + [45287, 34462], + [11, 10], + [64, -28], + [-14, -49], + [-46, 25], + [-15, 42] + ], + [ + [39822, 31704], + [18, 45], + [50, 35], + [69, 21], + [42, 80], + [7, 33], + [53, -23], + [66, 8], + [-2, 55], + [24, 58], + [46, 1], + [2, 32], + [38, 112], + [16, 19], + [-23, 64], + [-22, 26], + [25, 40], + [32, 101], + [69, 37], + [21, -21], + [70, 9], + [27, 81], + [5, 48], + [23, 73], + [-14, 47], + [-30, 17], + [9, 45], + [-8, 46], + [34, 5], + [104, 50], + [-16, 57], + [62, -20], + [77, 13], + [39, -23], + [30, 34], + [57, 33], + [15, 73], + [33, 27], + [75, -94], + [97, 45], + [24, -35], + [24, 12], + [-7, 68], + [56, -26], + [37, 55], + [32, 27], + [74, -34], + [23, 19], + [34, -11], + [41, 8], + [-3, 33], + [32, 26], + [-61, 36], + [-45, 11], + [-4, 41], + [-48, 43], + [-41, 18], + [-79, 10], + [-185, 70], + [-19, 54], + [58, 34], + [-24, 22], + [-8, 49], + [15, 28], + [-39, 23], + [-121, 37], + [-99, 41], + [-18, 29], + [44, 46], + [-44, 10], + [1, 80], + [-33, 22], + [5, 37], + [55, 57], + [-8, 47], + [30, 45], + [67, 3], + [28, -24], + [57, -1], + [32, 24], + [27, -28], + [25, 35], + [145, 88], + [42, -39], + [94, -26], + [4, -34], + [33, -3], + [24, -47], + [42, 15], + [-6, 41], + [18, 22], + [64, -4], + [56, 12], + [53, 40], + [22, -26], + [69, 52], + [36, 7], + [16, -30], + [11, -98], + [52, -58], + [21, -67], + [26, 14], + [79, 8], + [22, 27], + [131, -25], + [69, -21], + [21, -65], + [89, 19], + [26, 21], + [-4, 30], + [36, 21], + [138, 29], + [39, -25], + [119, 55], + [63, -3], + [53, 44], + [10, 48], + [54, 110], + [-29, 36], + [2, 27], + [47, 42], + [22, 41], + [81, -15], + [-37, -102], + [76, -61], + [34, -10], + [49, 34], + [23, -105], + [79, 36], + [62, -39], + [-5, -46], + [50, 32], + [27, -31], + [58, 5], + [59, -12], + [-14, -37], + [17, -76], + [27, -22], + [-12, -37], + [57, -26], + [1, 30], + [67, 70], + [19, -11], + [66, 26], + [56, -6], + [46, -21], + [-2, -44], + [65, -3], + [51, -16], + [49, 3], + [33, -91], + [55, -27], + [37, 11], + [115, -11], + [61, 45], + [103, 49], + [46, 6], + [10, 42], + [28, 33], + [72, -17], + [31, -56], + [97, -15], + [33, -31], + [76, 45], + [55, 52], + [-1, 24], + [30, 34], + [60, 30], + [51, 86], + [25, 11], + [-20, 48], + [9, 69], + [-37, 75], + [-34, 3], + [-61, -54], + [-23, 71], + [10, 36], + [-10, 41], + [23, 48], + [65, -16], + [21, 55], + [-66, 16], + [-56, 57], + [-73, 20], + [8, -37], + [-43, -5], + [-21, -59], + [-32, 9], + [-45, -30], + [-6, -30], + [-69, 20], + [-39, -32], + [-131, 19], + [-27, 17], + [-13, 45], + [12, 27], + [52, 36], + [32, -26], + [2, -32], + [32, -5], + [-12, 80], + [43, 13], + [1, 36], + [28, 43], + [-34, 44], + [149, 45], + [37, 33], + [68, -8], + [18, 47], + [58, -12], + [76, -75], + [12, 53], + [-18, 57], + [40, 55], + [44, 26], + [48, -9], + [26, -37], + [61, -18], + [12, 26], + [113, -17], + [28, -49], + [-17, -32], + [30, -18], + [3, -33], + [33, -32], + [123, -32], + [44, 6], + [-8, -64], + [-33, -30], + [-41, 9], + [-60, -71], + [36, -12], + [-31, -66], + [-25, 6], + [-13, -38], + [-67, 8], + [-26, -93], + [19, -30], + [27, 49], + [27, 11], + [63, -36], + [125, -22], + [2, 52], + [83, -16], + [73, -45], + [59, 9], + [30, -25], + [-5, -87], + [-13, -19], + [-42, 1], + [-20, -49], + [58, -33], + [-61, -49], + [-22, -53], + [22, -14], + [66, 11], + [25, 36], + [77, 5], + [-16, -37], + [34, -20], + [31, -42], + [57, -18], + [38, -59], + [-7, -26], + [29, -29], + [50, -20], + [-9, 58], + [39, 2], + [26, 58], + [-9, 41], + [20, 45], + [-16, 30], + [31, 16], + [44, 106], + [41, 19], + [43, 43], + [10, 41], + [37, -3], + [66, -25], + [51, 109], + [60, 39], + [11, 25], + [75, 41], + [890, 825] + ], + [ + [47277, 35190], + [158, -209], + [230, -25], + [249, 30], + [149, -665], + [-7, -110], + [6, -42], + [24, -57], + [36, -44], + [167, -137], + [57, -74], + [132, -322], + [30, -53], + [70, -33], + [43, 14], + [19, 34], + [19, 110], + [25, 24], + [51, -36], + [64, -140], + [49, -73], + [75, -34], + [237, -17], + [138, -33], + [49, -26], + [18, -32], + [-19, -73], + [-142, -152], + [-40, -91], + [9, -78], + [47, -131], + [25, -105], + [19, -246], + [-3, -76], + [36, -4], + [40, -87], + [37, -53], + [31, -23], + [109, -56], + [43, -58], + [4, -31], + [-11, -158], + [-41, -83], + [-105, -130], + [-48, -33], + [-65, -28], + [-85, -15], + [-142, 3], + [-44, -7], + [-97, -42], + [-24, 22], + [-256, -299], + [-61, -93], + [-18, -42], + [-61, -225], + [-73, -298], + [-13, -32], + [-64, -100], + [-61, -57], + [-178, -116], + [-109, -103], + [-39, -70], + [-31, -140], + [-16, -53], + [-61, -120], + [-85, -78], + [-91, -68], + [-37, -69], + [-2, -129], + [-6, -31], + [-125, -364], + [-32, -67], + [-178, -316], + [-40, -101], + [-27, -179], + [-120, -268], + [-37, -163], + [-26, -159], + [1, -38], + [62, -326], + [36, -99], + [85, -201], + [81, -119], + [32, -65], + [56, -212], + [86, -505], + [10, -145], + [-11, -73], + [-42, -141], + [-38, -55], + [-273, -230], + [-229, -140], + [-43, -56], + [-1, -55], + [53, -199] + ], + [ + [40638, 27579], + [-112, 67], + [17, 27], + [-48, 34], + [-81, 45], + [-102, 32], + [-43, -30], + [-41, 9], + [-9, -40], + [-30, 6], + [-9, -37], + [-110, 12], + [-4, 102], + [-20, 89], + [-38, 217], + [105, -26], + [50, 261], + [69, 37], + [-22, 52], + [-35, 35], + [-53, 8], + [-119, -22], + [-31, -1], + [-178, 37], + [-1240, -197], + [-123, -5], + [-75, 12], + [-82, 25], + [-116, 65], + [-66, 56], + [-70, 84] + ], + [ + [38022, 28533], + [-170, 387], + [11, 69], + [34, 11], + [49, 47], + [-3, 26], + [140, 44], + [37, 3], + [78, 36], + [69, 15], + [29, -32], + [75, -11], + [11, -30], + [32, -18], + [91, 0], + [1, 33], + [79, 40], + [29, -26], + [-5, -49], + [63, -41], + [65, -18], + [102, 21], + [13, 39], + [40, 15], + [-3, 88], + [210, 21], + [212, 53], + [42, 22], + [4, -47], + [158, 50], + [105, 41], + [10, 24], + [53, -24], + [53, 54], + [9, 56], + [69, 63], + [21, 43], + [-48, 44], + [83, 67], + [8, 83], + [15, 39], + [-43, 22], + [-26, -49], + [-22, 1], + [-1, 50], + [-18, 46], + [-33, 22], + [-35, 76], + [32, 1], + [91, 31], + [51, 28], + [7, 46], + [38, 43], + [45, 133], + [17, 24], + [56, 30], + [48, 13], + [36, -12], + [105, 26], + [43, 88], + [47, 75], + [7, 31], + [36, 57], + [-53, 67], + [-16, 58], + [-30, 32], + [-9, 47], + [6, 63], + [16, 29], + [11, 82], + [-83, 39], + [13, 31], + [-10, 98], + [15, 24], + [-37, 93], + [-56, 47], + [-56, 3], + [-39, -14], + [-12, 80], + [-44, 64], + [-19, 67], + [-31, 62], + [-12, 86], + [-44, 69], + [-40, 0], + [-22, 24] + ], + [ + [46766, 33907], + [167, 112], + [-85, 59], + [-49, 68], + [-31, 19], + [-38, -3], + [-43, 19], + [-117, 70], + [-22, -62], + [30, -21], + [-29, -69], + [17, -29], + [56, -11], + [-9, -33], + [83, -13], + [71, -48], + [-1, -58] + ], + [ + [42699, 7153], + [-9, -94], + [-25, -54], + [-20, -16], + [-75, -19], + [-63, -43], + [-54, -70], + [-85, -37], + [-22, -67], + [-51, -50], + [-29, -60], + [0, -29], + [-36, -70], + [-43, -105], + [-49, 18], + [-67, -15], + [-44, -40], + [-49, -14], + [-55, -56], + [-16, -41], + [-60, -21], + [-81, -15], + [-43, -28], + [-11, -24], + [-88, -33], + [-84, -68], + [20, -78], + [49, -74], + [28, -76], + [22, -93], + [103, -246], + [4, -89], + [-71, -124], + [-10, -36], + [-56, -38], + [-16, -135], + [11, -46], + [-23, -64], + [-56, -26], + [-100, -15], + [-68, -27], + [-54, 13], + [-10, 19], + [-69, 4], + [-29, -16], + [-43, -53], + [-73, -2], + [-11, -16], + [-115, -95], + [-56, -20], + [-35, 12], + [-78, -67], + [-15, -64], + [19, -37], + [-7, -33], + [-99, -118], + [-10, -119], + [-16, -36], + [20, -57], + [68, -59], + [15, -41], + [43, -32], + [55, -75], + [27, -324], + [50, -147], + [-75, -19], + [-4, -64], + [-60, -39], + [-64, 24], + [-24, -17], + [-3, -98], + [-32, -22], + [-6, -27], + [-80, -26], + [-11, 17], + [-82, 4], + [9, -36], + [-11, -42], + [15, -47], + [-22, -56], + [-31, 20], + [-45, -46], + [70, -80], + [134, -52], + [129, -67], + [19, -194], + [25, -38], + [-47, -93], + [-21, -16], + [37, -64], + [65, -19], + [36, -52], + [-18, -50], + [-20, -95], + [3, -31], + [39, 10], + [50, -7], + [43, -43], + [94, -5], + [78, 24], + [40, -62], + [50, -48], + [-5, -34], + [86, -2], + [58, 13], + [-12, -90], + [48, -36], + [21, 1], + [72, -63], + [41, 20], + [25, -7], + [38, -64], + [-25, -63], + [20, -138], + [132, 60], + [30, -32], + [-22, -44], + [18, -32], + [-49, -20], + [-16, -53], + [-31, -32], + [-48, 5], + [17, -76], + [-24, -36], + [5, -30], + [-31, -35], + [-45, -22], + [-41, -85], + [-46, -41], + [-72, -25], + [-34, 7], + [-39, -34], + [5, -45], + [-77, -167], + [0, -93], + [29, -65], + [-23, -53], + [-58, -63], + [-22, -61], + [-40, 0], + [-30, -58], + [1, -38], + [-39, -21], + [-5, -35], + [33, -69], + [-28, -62], + [-12, -53], + [-50, -112], + [47, -32], + [-39, -43], + [-44, -6], + [-36, 23], + [-47, 1], + [-88, -76], + [-34, 20], + [-67, 11], + [-62, 20], + [-64, 48], + [-61, -19], + [-14, 24], + [23, 33], + [-7, 24], + [40, 170], + [-65, 7], + [-47, 66], + [-26, 14], + [-69, -59], + [-52, 24], + [-34, -24], + [13, -24], + [-36, -43], + [-43, -2], + [-41, 48], + [-41, 6], + [-35, 28], + [8, 56], + [-76, 51], + [-98, 37], + [-41, -21], + [-86, -21], + [-97, -71], + [1, -26], + [-41, -26], + [0, -40], + [-43, 0], + [-71, 17], + [-111, -77], + [7, 154], + [20, 86], + [86, 145], + [74, 105], + [83, 131], + [33, 35], + [72, 29], + [66, 59], + [-49, 67], + [-57, -59], + [-33, 52], + [-23, 100], + [-1, 123], + [-12, 68], + [-32, 91], + [-32, 61], + [-44, 11], + [-22, 91], + [28, 63], + [9, 86], + [-66, 101], + [-6, 25], + [-41, 71], + [-32, 82], + [-91, 1], + [-33, 55], + [-116, 130], + [-49, 122], + [10, 86], + [48, 96], + [-3, 263], + [-41, 86], + [-81, -26], + [-123, -22], + [-46, 50], + [-37, 8], + [-61, 35], + [-36, 86], + [-56, 15], + [-59, 51], + [-56, 67], + [-34, 21], + [-51, 79], + [-32, 17], + [-9, 76], + [-35, 4], + [-9, 51], + [-68, 21], + [-21, 42], + [-26, 16], + [-50, -16], + [-39, 12], + [-55, -7], + [-46, 30], + [-34, 42], + [-50, -24], + [-36, 17], + [-112, 15], + [-64, 16], + [-24, -6], + [0, -48], + [-30, -23], + [-56, 15], + [17, 45], + [29, 133], + [49, 208], + [151, 224], + [20, 57], + [79, 34], + [105, 34], + [78, 109], + [29, 71], + [10, 74], + [22, 78], + [36, -22], + [36, 65], + [-83, 55], + [71, 100], + [126, -58], + [22, 38], + [117, 229], + [-5, 142], + [-28, 144], + [-61, 2], + [-64, 82], + [-37, 26], + [-57, 19], + [-35, 27], + [-89, 126], + [-26, -10], + [-44, 90], + [-45, 20], + [-28, 57], + [-127, 84], + [-19, -38], + [-39, -44], + [-25, -52], + [-109, 1], + [-115, -15], + [-79, 46], + [-118, 90], + [-38, -6], + [-72, 23], + [-43, 40], + [-9, 27], + [-183, 354], + [-239, -241], + [-128, -252], + [-196, 60], + [-44, 21], + [-47, -12], + [-24, 18], + [-32, -13], + [-46, 23], + [-57, 60], + [-13, 85], + [-64, 13], + [-76, -32], + [-31, 27], + [-133, 49], + [-17, 61], + [-43, 69], + [-96, 95], + [-81, -21], + [-134, -8], + [-31, 8], + [-92, -24], + [-104, 0], + [-38, 102], + [9, 95], + [-11, 33], + [-67, 49], + [-28, 61], + [-56, 41], + [-67, 76], + [-6, 35], + [20, 33], + [77, 50], + [0, 71], + [36, 4], + [7, 28], + [-32, 17], + [-79, -1], + [-92, 39], + [11, 33], + [-11, 34], + [-53, 42], + [-77, -23], + [-64, 54], + [-20, 51], + [-31, 204], + [-78, 119], + [-4, 23], + [-69, 30], + [-32, 1], + [-15, 35], + [-23, 103], + [-140, 102], + [-25, 2], + [-36, 103], + [-24, 37], + [-1, 38], + [-24, 66], + [-25, 126], + [-1, 56], + [-50, 37], + [-65, 16], + [-28, 20], + [-64, -36], + [-80, 23], + [-35, 37], + [-44, 20], + [-40, 41], + [-51, 18], + [-75, 44], + [-74, 23], + [-115, 2], + [-93, 32], + [-36, 22], + [-33, 67], + [-5, 103], + [-27, 66], + [-43, 3], + [-27, 29], + [-115, 40], + [-35, -5], + [-54, 52], + [-13, 75], + [46, 70], + [27, 9], + [2, 53], + [105, 64], + [-81, 214], + [-101, 138], + [-74, 87], + [-31, 51], + [-7, 83], + [-80, 130], + [19, 40], + [58, 41], + [61, 30], + [20, 100], + [28, 28], + [5, 123], + [25, 74], + [133, 31], + [-4, 33], + [27, 42], + [0, 45], + [64, 26], + [23, 56], + [42, 54], + [-25, 52], + [8, 47], + [-5, 76], + [7, 99], + [-35, 122], + [39, 69], + [-1, 25], + [74, 74], + [-42, 137], + [8, 79], + [-16, 92], + [3, 58], + [-33, 88], + [-40, 52], + [19, 55], + [57, 79], + [53, 56], + [-11, 36], + [-84, 107], + [-4, 59], + [52, 79], + [16, 42], + [-39, 83], + [-47, 53], + [-50, 38], + [-17, 57], + [4, 44], + [46, 72], + [-21, 32], + [-20, 92], + [24, 47], + [56, 42], + [34, 68], + [-17, 59], + [-44, 14], + [14, 47], + [-8, 46], + [-85, 54], + [-44, 68], + [12, 31], + [-42, 76], + [-53, 37], + [-87, -20], + [-18, 30], + [-92, -21], + [-50, -31], + [-86, -14], + [-59, -46], + [-77, 6], + [-87, -39], + [-26, -47], + [-48, 12], + [-31, -12], + [-48, -66], + [-41, 22], + [-68, -9] + ], + [ + [33612, 14440], + [42, 33], + [25, 64], + [116, 12], + [50, 31], + [33, -7], + [50, 19], + [55, 0], + [33, 24], + [109, 51], + [45, 1], + [-3, 48], + [15, 27], + [-36, 54], + [-43, 129], + [18, 60], + [-36, 73], + [16, 46], + [33, 52], + [16, 51], + [40, 31], + [0, 68], + [-11, 53], + [24, 35], + [-10, 54], + [51, 12], + [15, 69], + [70, 68], + [69, 8], + [32, 31], + [91, -55], + [10, -26], + [80, -36], + [34, -1], + [48, 19], + [79, -6], + [37, 11], + [68, 39], + [65, -43], + [53, -94], + [32, 1], + [90, -75], + [105, 13], + [48, -6], + [124, 25], + [47, 46], + [74, 18], + [83, -35], + [14, -42], + [25, -12], + [-10, -53], + [21, -62], + [4, -47], + [53, -29], + [81, -5], + [142, 53], + [82, 52], + [29, 62], + [69, 50], + [26, 38], + [58, 18], + [20, 20], + [81, 14] + ], + [ + [40275, 3341], + [-5, 16], + [-137, 21], + [-29, -102], + [-8, -63], + [-66, -139], + [-7, -89], + [110, -30], + [27, -30], + [92, -3], + [15, 44], + [6, 86], + [26, 61], + [-27, 18], + [-13, 79], + [2, 76], + [14, 55] + ], + [ + [39714, 22422], + [-24, -8], + [-94, -70], + [-48, -8], + [-20, -33], + [-26, 1], + [-61, -60], + [-48, -7], + [-23, -42], + [-106, -18], + [-38, -30], + [1, -34], + [-39, -2], + [-10, -32], + [-57, 0], + [-54, -13], + [-46, -31], + [-32, -59], + [-88, -59], + [-79, -17], + [-64, 19], + [-33, -10], + [0, -57], + [-38, -54], + [-32, -12], + [-37, -65], + [-47, 56], + [-24, 58], + [17, 183], + [-11, 50], + [0, 59], + [17, 77], + [-11, 73], + [-22, 9], + [-39, -37], + [-20, -38], + [-87, -37], + [-80, 185], + [-31, 53], + [-4, 62], + [30, 34], + [-18, 19], + [16, 61], + [3, 73], + [-36, 42], + [-5, 42], + [-75, 11], + [-14, 23], + [-79, 25], + [-46, 57], + [-74, -56], + [-96, -39], + [-80, -121], + [-56, -9], + [-113, 43], + [-19, 14], + [-47, 104], + [2, 29], + [-47, 36], + [-58, -28], + [-32, -35], + [-69, -17], + [-102, -61], + [-41, -12], + [-37, 6], + [-21, -36], + [-88, -4], + [-18, -41], + [-45, -11], + [-15, -27], + [-81, -64], + [-65, -69], + [0, -29], + [-67, -48], + [-38, 11], + [-68, -22], + [-52, 77], + [-54, 34], + [-41, 118], + [51, 79], + [-7, 43], + [-43, 112], + [-3, 56], + [-30, 28], + [-16, 50], + [-38, 3], + [-77, -32], + [-42, 14], + [-100, -23], + [-39, -18], + [-78, 28], + [-80, 19], + [-26, -11], + [-115, 42], + [-34, 21], + [-66, 13], + [-99, 2], + [-75, 11], + [-54, 46], + [-257, -11], + [-12, 337], + [-31, 136], + [40, 145], + [-14, 91], + [-80, 69], + [-196, 65], + [-152, -66] + ], + [ + [36472, 27379], + [-11, 114], + [-73, 51], + [-37, 40], + [-36, 130], + [13, 35], + [-4, 50], + [60, 51], + [27, 40], + [88, 160], + [72, 13], + [39, 22], + [5, 69], + [43, 16], + [53, -38], + [40, 53], + [52, 11], + [316, 165], + [486, 146], + [216, 76], + [201, -50] + ], + [ + [32918, 35612], + [48, -23], + [59, -4], + [79, 19], + [140, 68], + [82, 31], + [107, -5], + [64, 34], + [87, 71], + [32, 14], + [67, -17], + [49, 8], + [45, 41], + [63, 31], + [-8, 23], + [-72, 114], + [-72, -19], + [-30, -35], + [-75, -14], + [-114, -5], + [-28, 76], + [-57, 8], + [10, 87], + [-17, 48], + [-39, 48], + [-5, 101], + [93, -2], + [65, 33], + [39, 64], + [48, 14], + [41, 67], + [14, 86], + [55, -31], + [17, 22], + [51, 6], + [63, -11], + [134, 56], + [37, -2], + [31, 36], + [-1, 63], + [26, 27], + [57, 4], + [-22, 41], + [34, 31], + [-7, 61], + [11, 75], + [68, 11], + [65, -53], + [81, 4], + [68, -21], + [28, 2], + [-3, -95], + [56, 15], + [19, -39], + [83, 4], + [98, -18], + [18, -52], + [37, -53], + [12, -53], + [86, 10], + [25, -96], + [-17, -33], + [-48, -20], + [1, -77], + [-34, -65], + [-30, -32], + [19, -38] + ], + [ + [34751, 36253], + [-36, -5], + [-61, -56], + [1, -37], + [-72, -48], + [-38, 9], + [-88, -54], + [-53, -55], + [-22, -5], + [22, -75], + [-46, -26], + [29, -28], + [24, -57], + [-33, -56], + [57, -17], + [68, 11], + [26, -15], + [-3, -59], + [-61, -28], + [44, -42], + [46, -71], + [18, -51], + [12, -96], + [12, -35], + [37, -49], + [35, -13], + [51, 46], + [91, 162], + [22, 77], + [6, 72], + [31, 91], + [40, 27], + [49, 8], + [19, 48], + [-25, 65], + [-15, 87], + [14, 63], + [25, 44], + [72, 56], + [90, 29], + [38, 46], + [-9, 77], + [19, 85] + ], + [ + [35187, 36378], + [102, 109], + [23, 75], + [-11, 65], + [-63, 122], + [-34, 136], + [-3, 93], + [-20, 118], + [5, 44], + [76, 55], + [16, 28], + [19, 78], + [47, 31], + [64, -52], + [23, -67], + [-4, -56], + [-41, -41], + [-70, -5], + [-35, -39], + [26, -41], + [38, -14], + [106, 15], + [56, 22], + [45, 40], + [23, 37], + [53, 144], + [-12, 77], + [-115, 122], + [-64, 43], + [-23, -15], + [-53, 53], + [-26, 62], + [-8, 49] + ], + [ + [35327, 37666], + [24, 76], + [21, -12], + [22, 88], + [35, 46], + [24, -13], + [32, -53], + [32, -3], + [76, 51], + [13, 69], + [-42, 175], + [7, 32], + [174, 39], + [52, 26], + [59, -17], + [109, -95], + [65, -49], + [59, -14] + ], + [ + [36089, 38012], + [80, -20] + ], + [ + [36169, 37992], + [3, -67], + [-23, -91], + [17, -47], + [104, -68], + [8, -63], + [1, -118], + [26, -34], + [10, -56], + [24, -15], + [60, -78], + [18, -72], + [68, -41], + [69, -7], + [70, -73], + [71, -44], + [29, 34], + [41, 16], + [41, -53], + [84, 1], + [15, 25], + [66, -5], + [71, -34], + [107, 26], + [5, -54], + [51, -23], + [14, 44], + [52, 32], + [85, 25], + [18, 39], + [34, 13], + [31, 48], + [55, 34], + [52, -6], + [46, -22], + [31, 45], + [52, 30], + [40, 53], + [15, 61], + [0, 54], + [26, 94], + [60, -14], + [143, 10], + [-4, -92], + [20, -5], + [-9, -111], + [8, -56], + [68, -12], + [62, -39], + [84, -16], + [70, -40], + [-4, -54], + [26, -72], + [-15, -59], + [-71, -129], + [-15, -45], + [-32, 11], + [-63, -49], + [-19, -98], + [16, -41], + [4, -83], + [-25, -3], + [-39, -48], + [-45, -6], + [-12, -43], + [-1, -71], + [-14, -72], + [-17, -33], + [13, -38], + [-82, 30], + [-38, -2], + [-65, 19], + [-9, 15], + [22, 107], + [-40, 3], + [-98, 64], + [-131, 49], + [-99, 60], + [-44, 4], + [-33, -30], + [-74, 60], + [-36, 67], + [-31, -45], + [9, -64], + [-12, -31], + [3, -65], + [-36, 1], + [-40, -25], + [-10, -76], + [35, -14], + [1, -56], + [79, -101], + [-10, -78], + [13, -71], + [100, 11], + [83, 0], + [70, -13], + [518, -185], + [-47, -6], + [-20, -47], + [69, -21], + [-19, -91], + [44, -14], + [-9, -56], + [86, -29], + [36, 0], + [10, 36], + [31, -11], + [56, 22], + [82, -28], + [16, 47], + [102, -45], + [5, -118], + [39, 20], + [37, -6], + [-8, -57], + [88, 7], + [2, -57], + [-68, -2], + [-71, -27], + [-5, -30], + [-30, -13], + [-81, 11], + [-33, -5], + [-20, -33], + [37, -79], + [27, -123], + [23, -62], + [73, -74], + [-8, -43], + [24, -7], + [-5, -85], + [88, -29], + [113, 3], + [-1, -21], + [174, 0], + [75, -23], + [74, -34], + [46, 37], + [38, -30], + [139, -48], + [13, -32], + [-4, -42], + [-28, -55], + [17, -40], + [-3, -85], + [14, -109], + [-51, -145], + [-13, -1], + [12, -129], + [-10, -119], + [53, -10], + [12, -57], + [-165, -69], + [-7, -99], + [-39, -39], + [36, -24], + [-16, -53], + [21, -30], + [76, -8], + [18, -104], + [49, -29], + [-2, -62], + [32, -37], + [33, -67], + [42, -23], + [44, -52], + [29, -65], + [-45, -19], + [-39, -52], + [58, -95], + [-3, -16], + [54, -43], + [106, -8], + [41, -29], + [68, 12], + [55, -2], + [26, -22], + [-28, -48], + [-59, -10], + [-60, 32], + [-53, -11], + [-14, 15], + [-45, -33], + [-41, 51], + [-38, -58], + [12, -33], + [80, -38], + [-30, -38], + [-16, -47], + [35, -111], + [-19, -51], + [2, -59], + [-23, -16], + [-18, -56], + [-65, -88], + [-15, -56], + [49, -22], + [57, 9], + [54, -31], + [72, -9], + [68, -52], + [24, -52], + [67, -67], + [47, -19], + [70, -57], + [27, -36], + [0, -36], + [-46, -82], + [45, -78] + ], + [ + [36169, 37992], + [37, 8], + [85, 50], + [71, 63], + [52, 73], + [35, 20], + [119, -47], + [69, -57], + [44, -16], + [83, 0], + [50, 24] + ], + [ + [36814, 38110], + [56, 28], + [80, 13] + ], + [ + [36950, 38151], + [78, 3], + [90, -30], + [81, -12], + [56, 1], + [88, -26], + [100, -54], + [70, -56], + [47, -60], + [143, -90], + [54, -26], + [53, -11], + [46, 9] + ], + [ + [37856, 37799], + [74, 50], + [49, 7], + [61, -27], + [94, 19], + [128, -57], + [41, -5], + [78, -52], + [50, -59], + [20, -85], + [23, -20], + [64, -18], + [99, -53], + [-111, -171], + [41, -25], + [31, 3], + [83, -22], + [37, 78], + [61, 44], + [23, -1], + [73, -42], + [39, 15] + ], + [ + [38914, 37378], + [21, 6], + [77, -19], + [50, -30], + [78, -69], + [55, -25], + [35, -2], + [161, 70], + [160, 43], + [76, 35], + [60, 10], + [54, -3], + [63, 17], + [78, 85], + [61, 34], + [175, 68], + [132, 94], + [62, 67], + [59, 40], + [256, 126], + [93, 52], + [120, 45], + [88, 0], + [103, -25], + [194, -56], + [133, -30], + [140, -24], + [133, -14], + [158, -6], + [125, -27], + [37, -18], + [179, -149], + [220, -67], + [65, -29], + [34, 0], + [115, 61], + [51, -9], + [64, -26], + [29, -60], + [130, -138], + [12, -24], + [64, 18], + [32, -18], + [123, 53], + [205, -41], + [426, 26], + [152, 19], + [27, 32], + [106, -2], + [158, -59], + [2365, -1250], + [104, -94], + [665, -875] + ], + [ + [35327, 37666], + [6, 66], + [-116, 12], + [-28, -71], + [-37, -49], + [-23, 13], + [-94, -51], + [-90, -69], + [-52, 24], + [-38, 41], + [-23, -12], + [-39, 32], + [-19, -10], + [-18, 59], + [4, 39], + [-39, 7], + [-55, -23], + [-58, -8], + [-35, -29], + [-38, 2], + [-42, -33], + [-50, -17], + [-15, -35], + [37, -132], + [-74, 34], + [-30, 28], + [-5, 65], + [-32, -28], + [-55, -26], + [15, -51], + [26, -20], + [-12, -38], + [51, -75], + [12, -47], + [-27, -68], + [-26, 3], + [-80, -21], + [-51, 13], + [-85, 40], + [-61, -16], + [-78, 13], + [-54, -19], + [-73, -5], + [1, -64], + [-43, -13], + [-41, 55], + [-30, -24], + [-32, 4], + [-18, 31], + [10, 37], + [-24, 37], + [-53, 17], + [-45, -20], + [5, -36], + [53, -28], + [4, -27], + [-38, -28], + [-44, -12], + [16, -36], + [32, 2], + [-22, -53], + [-46, 19], + [-39, 45], + [-45, 141], + [45, 154], + [-46, 6], + [-49, -53], + [-36, -20], + [-48, 41], + [-42, 5], + [-72, -23], + [-87, 71], + [-27, 0], + [-17, 43], + [-44, 54], + [-111, 96], + [-115, -14], + [-38, 4], + [-88, 159], + [10, 42], + [42, 57], + [89, 15], + [29, 61], + [33, 23], + [-35, 87], + [-83, 127], + [-74, 24], + [-24, 50], + [46, 83], + [83, 94], + [38, 70], + [40, -14], + [69, 45], + [10, -8], + [75, 67], + [46, 60], + [39, 20], + [47, 52], + [50, 40], + [30, 3], + [98, -15], + [-9, 21], + [4, 74], + [33, 41], + [-9, 28], + [-36, -1], + [-31, 55], + [-21, 101], + [13, 41], + [68, 54], + [2, 115], + [20, 36], + [73, 30], + [55, 55], + [33, 112], + [47, 85], + [112, 86], + [34, 54], + [66, 46], + [26, -31], + [59, -20], + [40, 35], + [52, 24], + [97, 20], + [10, 33], + [81, -60], + [51, -56], + [22, 68], + [61, 84], + [80, 1], + [42, 36], + [77, 35], + [121, 42], + [33, 21], + [45, -15], + [70, -64], + [23, -3], + [-5, -55], + [42, 9], + [106, 41], + [44, 27], + [-18, 69], + [-21, 41], + [7, 52], + [-172, 60], + [6, 81], + [1, 117], + [17, 63], + [56, 62], + [31, -45], + [37, -4], + [37, -88], + [-8, -44], + [61, 11], + [105, 52], + [68, -80], + [72, 75], + [35, 12], + [141, -22], + [33, -14], + [62, -59], + [-9, -47], + [57, -24], + [-22, -120], + [-21, -24], + [-43, -13], + [-9, -64], + [50, -119], + [61, -18], + [-31, -110], + [-22, -42], + [0, -43], + [75, -77], + [36, -92], + [52, -24], + [31, 42], + [112, 101], + [28, -19], + [41, 54], + [-29, 32], + [53, 38], + [48, 61], + [-24, 20], + [-40, -6], + [26, 148], + [-12, 60], + [-50, 60], + [4, 71], + [16, 81], + [26, 6], + [9, 71], + [50, 29], + [47, 11], + [46, -84], + [-4, -47], + [-35, -46], + [66, 0], + [39, -28], + [31, -55], + [47, -2], + [80, -38], + [17, 22], + [53, -63], + [13, -65], + [-2, -65], + [73, -77], + [-68, -59], + [43, -109], + [26, -141], + [81, -53], + [34, 18], + [23, 61], + [33, 11], + [72, 72], + [35, -11], + [60, 46], + [62, -22], + [35, -25], + [79, -17], + [47, -54], + [-25, -34], + [162, -121], + [4, -78], + [-25, -34], + [-70, 1], + [-44, -14], + [-39, 6], + [-19, -23], + [-40, 13], + [-27, -35], + [-18, -60], + [-75, -49], + [-6, -46], + [-40, -126], + [35, -49], + [55, -124], + [48, 2], + [42, -32], + [111, -34], + [44, -44], + [-54, -93], + [-15, -85], + [-35, -105], + [-27, -118], + [21, -80] + ], + [ + [36814, 38110], + [-3, 87], + [-83, 28], + [6, 110], + [-39, 49], + [-15, 74], + [-42, 115], + [-45, 36], + [-36, -4], + [-15, -25], + [-103, -42], + [8, -46], + [-53, -18], + [-33, 3], + [-52, 38], + [18, 37], + [-55, 14], + [-39, -8], + [-38, -34], + [-90, 48], + [18, -112], + [101, -61], + [38, -138], + [-31, -5], + [-2, -45], + [-57, -41], + [-17, -31], + [-114, -16], + [-2, -37], + [58, -27], + [-8, -47] + ], + [ + [34751, 36253], + [48, -45], + [41, 19], + [31, -6], + [34, -45], + [32, 23], + [74, -13], + [23, 74], + [46, 39], + [45, 12], + [19, 78], + [43, -11] + ], + [ + [37856, 37799], + [-33, 96], + [32, 88], + [12, 74], + [43, 77], + [39, 6], + [32, -13], + [63, 37], + [-50, 65], + [-31, -4], + [-86, 18], + [13, 66], + [-23, 47], + [-81, 51], + [-45, -14], + [-101, 22], + [-74, 5], + [-65, 19], + [4, 47], + [24, 19], + [-1, 39], + [19, 25], + [-34, 37], + [-8, 57], + [66, 26], + [25, 33], + [-3, 40], + [59, -23], + [39, 93], + [40, 4], + [69, 50], + [98, -34], + [-1, 35], + [-35, 116], + [40, 32], + [108, 21], + [-6, -50], + [19, -71], + [48, -16], + [-31, -59], + [-56, -33], + [38, -26], + [56, -18], + [51, -71], + [27, -53], + [91, 21], + [3, -34], + [-88, -76], + [45, -18], + [19, -29], + [84, 18], + [47, 55], + [94, -36], + [68, -33], + [1, -53], + [33, -106], + [85, 31], + [85, -15], + [41, 22], + [55, 3], + [62, -32], + [-26, -47], + [37, -67], + [32, -27], + [-23, -52], + [-45, -18], + [-66, 8], + [3, 52], + [-41, 42], + [-40, -39], + [-29, 45], + [-29, -30], + [-54, -11], + [-14, -42], + [53, -3], + [39, -38], + [-18, -72], + [-39, -26], + [-31, -46], + [-7, -90], + [76, -18], + [57, 1], + [98, -90], + [37, -85], + [37, -31], + [36, -198], + [-8, -2], + [-2, -115] + ], + [ + [12071, 27423], + [-39, -1] + ], + [ + [12032, 27422], + [-66, 23], + [-69, -18], + [-53, 13], + [-30, 37], + [-19, 50], + [21, 28], + [150, 96], + [130, 66], + [26, 34], + [27, 74], + [56, -10], + [32, 12], + [-4, 98], + [20, 57], + [44, 57], + [26, 95], + [36, 17], + [41, 52], + [43, 18], + [32, 46], + [92, 61], + [31, 36], + [76, 51], + [40, 70], + [61, 12], + [93, 44], + [35, 34], + [40, 65], + [4, 55], + [50, 42], + [62, 16], + [54, 2], + [40, 69], + [4, 69], + [57, 26], + [61, 56], + [39, 14], + [12, 26], + [-48, 70], + [-63, 66], + [-9, 77], + [36, 45], + [22, 65], + [4, 69], + [-18, 52], + [26, 86], + [-91, 185], + [3, 40], + [-57, 80], + [-5, 29], + [45, 37], + [63, 68], + [49, 15], + [53, 2], + [76, -19], + [87, 24], + [64, -28], + [36, 44], + [6, 60], + [96, -19], + [57, 24], + [35, 1], + [43, -20], + [33, 3], + [35, 32], + [58, 82], + [54, -6], + [31, 36], + [16, 107], + [33, 24], + [37, 112], + [-11, 45], + [-32, 67], + [-49, 2], + [9, 86], + [83, 17], + [132, 16], + [62, 16], + [41, 28], + [134, -39], + [23, 2], + [151, 160], + [-45, 11], + [-9, 35], + [30, 42], + [62, 21], + [34, 88], + [-78, 60], + [-89, 15], + [9, 45], + [30, 29], + [-15, 70], + [3, 41], + [-26, 56], + [0, 37], + [-91, 58], + [-110, -18], + [-7, 26], + [-3, 102], + [-62, -11], + [-123, 25], + [-27, 47], + [-36, 6], + [-31, -31], + [-18, 25], + [-58, -93], + [-41, -19], + [-74, -54], + [-51, -25], + [-100, 11], + [-67, -11], + [-105, -63], + [-36, 12], + [-80, -30], + [-23, 21], + [-41, -20], + [-62, -4], + [-58, 18], + [-81, -17], + [-43, -30], + [-102, -3], + [-27, 18], + [-121, -66], + [-65, 2], + [-48, 44], + [-169, 39], + [-46, -33], + [-50, 18], + [-11, -40], + [-157, -87], + [-50, 4], + [1, 106], + [41, 69], + [18, 91], + [15, 36], + [-18, 111], + [70, 78], + [93, 65], + [13, 47], + [94, 8], + [84, 50], + [25, 22], + [23, 64], + [-31, 28], + [2, 63], + [-17, 56], + [69, 13], + [1, 40], + [23, 73], + [-2, 54], + [34, 26], + [12, -32], + [62, 16], + [41, -4], + [135, 9], + [33, 112], + [9, 83], + [-6, 131], + [-14, 182], + [3, 46], + [21, 12], + [69, 2], + [105, 25], + [35, -29], + [83, 41], + [33, 37], + [54, 193], + [42, 1], + [100, 42], + [41, -22], + [81, -4], + [77, 34], + [42, 58], + [41, 34], + [-9, 37], + [-53, 10], + [10, 67], + [41, 45], + [-21, 61], + [10, 46], + [-117, -17], + [-11, 25], + [31, 63], + [-9, 19], + [-56, 30], + [-25, 65], + [29, 95], + [0, 120], + [-34, 132], + [30, 30], + [101, 50], + [105, 70], + [218, 74], + [64, -2], + [36, -60], + [19, 4], + [69, -48], + [32, 1], + [4, -35], + [101, 20], + [65, -49], + [40, -19], + [111, 5], + [28, -16], + [124, -45], + [6, -53], + [31, -32], + [86, 32], + [135, 101], + [37, 14], + [77, -23], + [167, 17], + [42, 24], + [144, 129], + [20, 26], + [30, -19], + [119, -24], + [177, -112], + [40, -65], + [52, -50], + [39, -13], + [51, 2], + [17, -15], + [76, 7], + [36, 14], + [124, 16], + [136, 48], + [76, 15], + [26, -59], + [-116, -50], + [-45, -8], + [-7, -48], + [-46, -75], + [-30, -107], + [-96, -196], + [21, -40], + [-2, -99], + [-8, -46], + [-50, -170], + [-57, -146], + [71, -1], + [226, -80], + [34, -32], + [9, -42], + [55, -5], + [76, 6], + [14, -13], + [73, 38], + [111, 40], + [35, 23], + [78, 4], + [59, -26], + [28, -32], + [45, -78], + [-17, -55], + [20, -41], + [64, -15], + [26, -26], + [-4, -37], + [14, -89], + [53, 48], + [61, 35], + [194, 53], + [55, 57], + [83, 60], + [19, 36], + [44, 13], + [52, -9], + [54, -28], + [42, 47], + [62, 16], + [22, 40], + [63, 10], + [75, -20], + [24, 12], + [122, 3], + [51, 27] + ], + [ + [19746, 31805], + [38, -13], + [64, -39], + [24, -35], + [81, -41], + [26, -48], + [116, -40], + [62, -3], + [149, 25], + [104, -33], + [97, 19], + [52, 21], + [161, 11], + [178, -3], + [12, -46], + [-39, -73], + [0, -22], + [83, -48], + [70, -17], + [8, -47], + [78, 9], + [24, -89], + [-61, -113], + [29, -53], + [78, -3], + [97, -43] + ], + [ + [11044, 18669], + [-24, -50], + [-60, -53], + [-18, -34], + [8, -53], + [-90, -111], + [-110, -67], + [-9, 29], + [-42, 65], + [22, 23], + [-32, 60], + [-81, 44], + [-41, 73], + [53, 97], + [85, 18], + [9, 33], + [74, 80], + [40, 30], + [63, 140], + [42, -40], + [36, 35], + [54, -47], + [45, -24], + [-18, -37], + [-11, -142], + [5, -69] + ], + [ + [11866, 19399], + [39, 84], + [41, -22], + [-12, -42], + [42, -6], + [24, -29], + [14, -57], + [39, -28], + [-8, -54], + [14, -17], + [64, -7], + [56, -82], + [65, -25], + [33, -29], + [-16, -40], + [58, -43], + [26, -41], + [-212, -341], + [9, -44], + [-19, -31], + [33, -19], + [-45, -65], + [-35, -13], + [-62, 29], + [-69, 8], + [-105, 57], + [-77, 67], + [-43, 17], + [-33, 33], + [-147, -13], + [-56, -21], + [-75, -97], + [-30, -23], + [-68, 0], + [-35, -24], + [-28, 12], + [-91, -25], + [-23, 31], + [-37, 18], + [-7, 28], + [42, 33], + [33, 97], + [61, -34], + [42, 22], + [36, 35], + [26, -30], + [61, 42], + [55, -4], + [23, 27], + [-12, 37], + [75, 82], + [34, 74], + [46, 46], + [27, 56], + [-12, 28], + [15, 33], + [33, 24], + [65, 77], + [53, 33], + [48, 49], + [54, 107], + [-29, 20] + ], + [ + [12129, 22211], + [211, -279], + [133, -184], + [40, -35], + [85, -59], + [35, -55], + [22, 19], + [22, -35], + [51, 41], + [136, -189], + [-69, -37], + [10, -15], + [-64, -34], + [-29, 48], + [-62, -22], + [-56, -41], + [-31, 13], + [-25, -23], + [-62, -19], + [61, -76], + [218, 96], + [38, -59], + [28, 3], + [29, -56], + [32, -28], + [24, 8], + [40, -100], + [22, 8], + [24, -35], + [-136, -105], + [-137, -189], + [-36, -93], + [-6, -115], + [-28, -70], + [37, -106], + [0, -43], + [42, -107], + [-39, -71], + [-39, -52], + [85, -68], + [60, 71], + [-14, 16], + [69, 64], + [33, -38], + [66, 7], + [10, -31], + [44, -37], + [-11, -53], + [-39, -30], + [-30, -69], + [-50, -22], + [-11, -48], + [-59, -145], + [10, -48], + [-16, -36], + [-50, -45], + [-17, -33], + [-35, 47], + [-44, -10], + [-79, 1], + [10, -31], + [-64, -19], + [-11, -37], + [-81, 20], + [-115, -61], + [-103, 58], + [-33, 30], + [-59, 19], + [-40, 53], + [25, 43], + [-62, 56], + [-132, -81], + [17, -34], + [-26, -30], + [-71, -44], + [-47, 45], + [-33, -56], + [-12, -43], + [-43, -31], + [-67, 42], + [-32, -75], + [-53, 68], + [-44, 29], + [-39, 4], + [-40, 21], + [13, 27], + [-61, 66], + [-56, 44], + [-89, -57], + [-65, 57], + [-134, 157], + [-79, -87], + [-15, 13], + [35, 84], + [116, 117], + [-43, 72], + [-70, -53], + [-25, 38], + [-127, 127], + [-335, 383], + [503, 512] + ], + [ + [10985, 21054], + [321, 322], + [542, 552], + [281, 283] + ], + [ + [17077, 14972], + [-18, 0], + [-40, -46], + [-25, -5], + [-72, -42], + [-39, -46], + [-11, -44], + [-48, -55], + [-16, -33], + [-93, -129], + [-30, -25], + [-88, 144], + [-4, 35], + [-98, 90], + [-81, -72], + [-67, -86], + [-20, -7], + [-88, -80], + [-95, -63], + [-48, -50], + [-61, -33], + [-81, 9], + [-59, 23], + [-41, -30], + [-22, -46], + [-7, -59], + [-36, -40], + [-5, -61], + [-41, -77], + [-10, -92], + [-71, -80], + [-58, -38], + [-51, -83], + [-62, -24], + [-72, -44], + [-34, -12], + [-46, -52], + [-7, -40], + [-42, -49], + [-35, -18], + [-32, 29], + [-121, -30], + [-26, 18], + [-60, -1], + [-65, 22], + [-69, -49], + [-32, 11], + [-56, 42], + [-63, -36], + [-27, -41], + [-62, -51], + [-46, -19], + [-43, -58], + [-49, -48], + [-74, -46], + [-134, -153], + [-22, -54], + [-26, -17], + [-61, -79], + [12, -17], + [-18, -123], + [-35, -95], + [-67, -27], + [-54, -34], + [-75, -30], + [-46, -39], + [-83, -54], + [-71, -19], + [-47, 1], + [10, 52], + [47, 70], + [52, 98], + [-36, 88], + [-68, 75], + [-22, 43], + [-34, 1], + [-16, 49], + [0, 109], + [-10, 15], + [10, 59], + [-15, 52], + [47, 50], + [-74, 62], + [-27, 61], + [2, 26], + [-20, 57], + [5, 89], + [-96, 67], + [-29, 63], + [-100, 71], + [-23, 44], + [-46, 14], + [-38, -26], + [-77, 11], + [-78, -17], + [-39, 18], + [-34, 57], + [-42, -1], + [-35, 61], + [-68, 23], + [-43, 36], + [-43, 11], + [-11, 32], + [-34, -6], + [-79, 17], + [-36, -18], + [-23, -39], + [-38, -31], + [-25, 8], + [14, 75], + [22, 38], + [-7, 89], + [-25, 2], + [-181, -137], + [-28, -47], + [-70, -79], + [-26, -42], + [-81, -72], + [-21, -46], + [-26, -95], + [-73, -16], + [-112, 6], + [-45, 67], + [-35, -7], + [-68, 65], + [-72, 121], + [-3, 40], + [-25, 103], + [-74, -6], + [-28, 39], + [-61, 49], + [-37, 100], + [-59, 76], + [32, 42], + [59, 109], + [8, 80], + [36, 30], + [2, 23], + [49, 51], + [5, -73], + [147, -6], + [110, 25], + [84, 44], + [56, 7], + [24, -64], + [-6, -20], + [49, -25], + [-20, -56], + [6, -51], + [40, 5], + [7, 83], + [33, 77], + [39, 47], + [18, 42], + [65, 47], + [19, 39], + [124, 146], + [53, 74], + [25, -11], + [48, 41], + [37, 14], + [28, -17], + [41, 35], + [-35, 42], + [-6, 66], + [33, 61], + [-49, 18], + [-35, -29], + [-67, -35], + [-29, 5], + [-23, -54], + [-1, -45], + [-25, -18], + [-67, 105], + [-66, -43], + [-56, 145], + [-63, 104], + [-75, 54], + [-33, 4], + [-65, 39], + [-15, -19], + [-33, 40], + [-35, 18], + [-14, -23], + [-40, -9], + [-33, -69], + [-39, -30], + [-27, -44], + [-75, 22], + [-31, 32], + [-42, -10], + [-38, 119], + [-91, 48], + [0, -37], + [-34, -56], + [22, -55], + [-51, 9], + [-19, -25], + [-41, 6], + [-31, -61], + [-41, -17], + [-61, 25], + [18, 40], + [-2, 42], + [38, 55], + [7, 72], + [-13, 9], + [36, 132], + [-13, 23], + [-25, 127], + [48, 18], + [26, 176], + [-27, 125], + [15, 12], + [-6, 55], + [12, 72], + [-20, 55], + [4, 49], + [-24, 49], + [-28, 5], + [-19, 61], + [17, 51], + [10, 80], + [37, 94], + [26, 30], + [-65, 44], + [2, 27], + [41, -5], + [66, 34], + [86, -21], + [15, -42], + [53, 6], + [-17, 29], + [48, 53], + [67, 132], + [40, 46], + [33, -15], + [27, 49], + [38, -15], + [29, 22], + [76, -35], + [-26, -41], + [41, -9], + [110, -60], + [42, 39], + [37, 53], + [48, -32], + [38, 11], + [29, 37], + [4, 45], + [-53, 36], + [42, 93], + [56, 80], + [-103, 75], + [-16, 83], + [75, 96], + [63, -49], + [29, 31], + [76, 106], + [36, -1], + [56, 88], + [22, -9], + [27, 45], + [-1, 28], + [39, 78], + [-29, 26], + [29, 61], + [28, 16], + [33, 67], + [63, 76], + [44, 30], + [58, 62], + [89, 24], + [26, 30], + [28, 61], + [110, 135], + [69, 62], + [14, 24], + [-21, 30], + [17, 51], + [43, 65], + [21, 72], + [-21, 12], + [-21, 76], + [-67, 51], + [-28, 43], + [-21, 0], + [-66, -37], + [-57, -19], + [-45, 67], + [-25, -27], + [-40, 27], + [-47, 53], + [44, 78], + [38, 34], + [76, -58], + [38, 44], + [62, 91], + [60, 74], + [43, 30], + [-55, 18], + [38, 83], + [70, 87], + [33, 55], + [52, 20], + [24, -31], + [34, -6], + [21, 52], + [70, 43], + [9, 19], + [-9, 86], + [-12, 18], + [58, 85], + [36, 43], + [40, 28], + [8, 32], + [-42, 35], + [16, 22], + [-92, 117], + [20, 21], + [-37, 55], + [41, 54], + [-23, 23], + [43, 106], + [57, 78], + [38, -17], + [22, -44], + [39, -4], + [27, -32], + [60, -1], + [73, -21], + [8, 32], + [57, 59], + [0, 36], + [36, 46], + [0, 56], + [-60, 20], + [-25, 20], + [13, 41], + [-52, 54], + [39, 5], + [33, 41], + [3, 29], + [-57, 66], + [-39, -21], + [-27, 25], + [13, 26], + [-34, 36], + [-1, 39], + [20, 28], + [-20, 34], + [37, 63], + [-48, 51], + [30, 105], + [97, 103], + [32, 55], + [-110, 170], + [-39, 49], + [-18, -3], + [-35, 66], + [-45, -17], + [9, -28], + [-62, -35], + [-77, -18], + [-33, -21], + [40, -87], + [13, 2], + [37, -73], + [-7, -11], + [67, -119], + [-60, -39], + [-62, 123], + [-31, -14], + [-53, 94], + [-46, 8], + [10, 43], + [-35, 22], + [-39, 83], + [-43, 14], + [-13, 48], + [-42, 79], + [-31, -24], + [-38, 76], + [-52, 16], + [-45, -13], + [-29, 47], + [71, 60], + [13, 24], + [-43, 40], + [-72, 91], + [-336, 402] + ], + [ + [12533, 22533], + [431, 558] + ], + [ + [12964, 23091], + [429, -494], + [56, -83], + [57, -23], + [31, -42], + [36, -1], + [34, 35], + [61, -15], + [56, -33], + [26, -47], + [-76, -93], + [36, -33], + [-43, -52], + [56, -60], + [20, -38], + [58, -59], + [67, -79], + [176, -179], + [-49, -67], + [-15, -3], + [-146, -135], + [74, -94], + [121, -24], + [17, 43], + [75, 60], + [12, 52], + [68, -84], + [51, 23], + [5, -23], + [65, -28], + [24, 12], + [47, -59], + [-15, -14], + [-63, -124], + [91, -94], + [39, -20], + [-8, -27], + [-76, -45], + [10, -35], + [-58, -54], + [1, -50], + [28, -49], + [17, 19], + [57, -65], + [28, 56], + [45, -29], + [58, 96], + [24, 67], + [54, 14], + [29, 49], + [16, 49], + [52, 83], + [41, 51], + [38, 25], + [-1, 22], + [36, 29], + [28, 56], + [-25, 61], + [-60, 38], + [31, 14], + [-10, 34], + [-61, -22], + [4, 85], + [35, 46], + [61, 30], + [43, 34], + [1, 25], + [46, 27], + [18, 46], + [-30, 31], + [110, 12] + ], + [ + [15128, 22096], + [34, 40], + [-69, 64], + [-50, 80], + [-328, 482], + [-27, 42], + [46, 74], + [-12, 151], + [-24, 85], + [13, 40], + [-12, 50], + [4, 39], + [-19, 40], + [28, 19], + [-23, 47], + [45, 28], + [-14, 40], + [37, 48], + [-37, 44], + [-120, 84], + [-145, 43] + ], + [ + [14455, 23636], + [-3, 7] + ], + [ + [21310, 35539], + [35, 14], + [27, 88], + [-38, 41], + [6, 22], + [114, 76], + [14, 30], + [68, -12], + [49, -19], + [47, 10], + [78, -23], + [-4, 62], + [18, 112], + [44, 119], + [126, -46], + [85, -55], + [-11, -74], + [17, -29], + [-6, -41], + [111, 6], + [79, -26], + [119, 91], + [81, 92], + [31, 51], + [43, 40], + [48, 20], + [-20, 58], + [52, 56], + [72, -25], + [53, -6], + [164, -71], + [104, 1], + [39, 69], + [66, 64], + [66, 2], + [29, -21], + [-72, -19], + [-69, -89], + [-29, -18], + [-75, -84], + [4, -41], + [117, -52], + [14, -106], + [26, -17], + [-2, -56], + [69, -30], + [10, -21], + [-34, -61], + [-15, -57], + [-29, 56], + [-4, 59], + [-58, -35], + [-53, -83], + [29, -35], + [-65, 0], + [-1, 35], + [-29, 8], + [-62, -16], + [-18, 7], + [-73, -19], + [-34, -44], + [-22, 1], + [-83, -49], + [-57, 27], + [-37, 0], + [-68, 54], + [-29, -55] + ], + [ + [19858, 33455], + [60, 113], + [49, 53], + [26, 12], + [6, 41], + [-65, 49], + [-40, -27], + [-28, 54], + [-51, 48], + [-12, -15], + [-72, 52], + [-54, 8], + [-37, 39], + [-48, -34], + [-57, -1], + [11, 55], + [46, 92], + [43, 54], + [10, 50], + [45, 74], + [25, 19], + [81, -61], + [80, -35], + [50, -63], + [57, -17], + [17, -20], + [80, 11], + [49, -87], + [79, -89], + [68, -6], + [51, 20], + [89, 22], + [54, 51], + [24, 70], + [62, 29], + [25, 30], + [33, -5], + [-17, 56], + [54, 38], + [78, 34], + [-31, 108], + [23, 6] + ], + [ + [18998, 32847], + [13, 19], + [55, -14], + [107, 58], + [117, 6], + [0, 64], + [47, 36], + [115, 51], + [75, 62] + ], + [ + [2811, 10684], + [67, 137], + [28, -18], + [22, 48], + [118, -111], + [-36, -44], + [-64, 35], + [-32, 31], + [-30, -51], + [5, -57], + [-18, -18], + [-60, 48] + ], + [ + [3805, 10695], + [-118, -262] + ], + [ + [3687, 10433], + [-340, 164], + [-46, 0], + [-139, 100], + [23, 99], + [-45, 0], + [-36, 31], + [-33, -12], + [-80, 66], + [-97, 38], + [-26, 76], + [69, 34], + [-24, 47], + [77, 45], + [104, -87], + [55, 8], + [70, -4], + [34, -99], + [28, -17], + [68, 6], + [456, -233] + ], + [ + [3514, 10049], + [296, -156], + [19, -17], + [61, -15], + [-7, -42], + [27, -36], + [-11, -47], + [13, -62], + [24, -8], + [22, -55], + [-18, -44], + [-75, -62], + [-39, 4], + [-13, -29], + [-48, -47], + [6, -28], + [-9, -88], + [63, -63], + [93, -216], + [158, -156], + [-18, -61], + [36, -13], + [50, -66], + [44, 17], + [65, 42], + [39, 16], + [38, 44], + [45, 14], + [-9, 36], + [42, 28], + [43, 53], + [33, 73], + [54, 12], + [-1, -48], + [-31, -46], + [13, -67], + [95, -31], + [59, 36], + [44, -5], + [-55, -99], + [50, -30], + [-10, -49], + [22, -71], + [-50, -100], + [-51, -79], + [-56, -117], + [-51, -87], + [-69, -42], + [-23, -28], + [-148, -128], + [-124, -35], + [-57, -24], + [-120, -67], + [-33, -41], + [-57, -39], + [-81, -12], + [-62, 35], + [-54, -10], + [-30, -46], + [-34, -7], + [-78, -55], + [-12, -35], + [-49, -20], + [-18, -59], + [-78, -45], + [-42, -10], + [-57, -66], + [-15, -48], + [-38, -30], + [-13, -38], + [-38, 0], + [-53, -44], + [-35, 4], + [-29, -64], + [35, -242], + [-46, -50], + [-91, -72], + [-57, -53], + [-76, -13], + [-140, -77], + [-55, -24], + [-70, -43], + [-50, -105], + [-29, 19], + [-78, -59], + [-5, -28], + [-79, -24], + [-53, 2], + [-44, 31], + [-120, 21], + [-87, -3], + [-19, 23], + [-44, 5], + [-60, -10], + [-36, 91], + [-53, 75], + [-226, -63], + [-35, 23], + [-155, 25], + [-111, 3], + [-52, -88], + [-20, -108], + [-24, -36], + [-35, 29], + [-71, -68], + [-22, -66], + [-51, 79], + [-58, 27], + [-45, 7], + [-19, 26], + [-71, 24], + [-55, -15], + [-60, 15], + [-71, -21], + [-45, 28], + [-77, 29], + [-93, -41], + [-22, 17], + [-34, -43], + [-13, -79], + [-38, -38], + [-21, -39], + [-61, -41], + [-46, 9], + [-57, -48], + [-54, 22], + [-50, -45], + [-20, 77], + [54, 52], + [75, 41], + [10, 44], + [-23, 49], + [-7, 53], + [36, 79], + [28, 80], + [56, 85], + [45, 120], + [49, 91], + [11, 99], + [14, 40], + [46, -8], + [21, -49], + [21, 22], + [32, 133], + [46, 63], + [6, 38], + [-21, 20], + [-15, 51], + [-113, 48], + [-12, 38], + [-146, 69], + [-109, 58], + [26, 51], + [46, 20], + [46, 38], + [-44, 88], + [32, 94], + [40, 76], + [59, 45], + [113, -12], + [69, -29], + [11, 44], + [-10, 33], + [-36, 55], + [36, 25], + [63, -14], + [53, -36], + [41, 58], + [34, 10], + [12, 52], + [60, 45], + [8, 51], + [25, -14], + [18, 32], + [47, -3], + [74, 28], + [109, 108], + [113, -106], + [53, -39], + [18, 41], + [28, 18], + [35, 81], + [49, 68], + [61, 69], + [39, 16], + [52, -81], + [31, -13], + [56, 22], + [77, 64], + [49, 16], + [71, -7], + [28, -15], + [112, -123], + [32, -29], + [72, 72], + [25, -25], + [160, 164], + [50, 66], + [-44, 56], + [21, 51], + [-3, 34], + [-43, 63], + [-16, 44], + [24, 29], + [-60, 22], + [-73, 93], + [48, 41], + [-66, 46], + [-21, 38], + [-50, 41], + [24, 87], + [-33, 39], + [26, 43], + [58, 48], + [36, 44], + [22, 53], + [44, -2], + [57, 62], + [12, 41], + [-39, 77], + [26, 80], + [-11, 33], + [6, 93], + [72, 91] + ], + [ + [2264, 10162], + [2, -26], + [53, -68], + [51, -47], + [13, -33], + [81, -71], + [0, -14], + [132, -76], + [36, -37], + [83, -30], + [98, -50], + [87, -17], + [312, -159], + [147, 278], + [155, 237] + ], + [ + [14455, 23636], + [-106, 33], + [-402, 114], + [-983, -692] + ], + [ + [12533, 22533], + [-404, -322] + ], + [ + [10985, 21054], + [-329, 363], + [-63, 13], + [-142, 18], + [-71, -60], + [-8, 56], + [37, 41], + [32, 100], + [19, 98], + [-35, 21], + [28, 208], + [-179, 145], + [-76, 71], + [-57, 14], + [14, 114], + [-3, 85], + [44, 203], + [38, 107], + [-24, 13], + [-23, 42], + [9, 46], + [-70, -26], + [-349, -157], + [-278, -133], + [-183, -131], + [-11, -15], + [-90, -54], + [-23, -93], + [-246, -355], + [-166, 5], + [-110, -44], + [-105, -65], + [-68, 15], + [-82, -3], + [-165, -76], + [-59, -32], + [-140, -98], + [-48, -18], + [-42, 2], + [-47, -29], + [-60, -66], + [-98, -36], + [-121, -158], + [-70, -51], + [-119, -36], + [-133, -49], + [-297, -118], + [-152, 11], + [-56, 15], + [-15, 61], + [-71, 9] + ], + [ + [6722, 21027], + [38, 494], + [20, 299], + [-88, 214], + [-218, 341], + [-77, 83], + [-42, 144], + [85, 42], + [99, 68], + [94, 95], + [90, 104], + [26, 66], + [41, 46], + [15, 38], + [42, 42], + [28, 56], + [65, 95], + [98, 114], + [57, 47], + [111, 111], + [110, -171], + [74, 37], + [47, 36], + [65, 34], + [69, 22], + [33, -5], + [112, 31], + [35, 3], + [156, 70], + [119, 44], + [59, 8], + [81, 43], + [44, 9], + [95, 60], + [102, 81], + [87, 56], + [92, 15], + [63, -29], + [78, -7], + [45, 17], + [55, 3], + [127, 96], + [80, 37], + [90, 94], + [76, 140], + [30, 100], + [69, 156], + [76, 104], + [126, 90], + [85, 53], + [119, 53], + [36, 10], + [104, -9], + [28, 4], + [66, 72], + [57, 72], + [40, 14], + [36, 62], + [102, 64], + [6, 17], + [-102, 32], + [-45, 91], + [-48, 18], + [-44, -7], + [-19, 18], + [-27, 57], + [-53, 25], + [-37, 64], + [25, 46], + [92, 15], + [21, 24], + [21, 58], + [41, 14], + [-18, 35], + [30, 46], + [0, 26], + [-46, 16], + [-3, 43], + [57, 12], + [77, 67], + [12, 36], + [39, 20], + [56, 4], + [58, 56], + [45, -45], + [73, 1], + [51, 11], + [62, 34], + [18, 33], + [23, 79], + [1, 34], + [-69, 98], + [-20, 83], + [8, 28], + [77, 4], + [37, 36], + [30, 52], + [37, 21], + [31, 37], + [124, 76], + [64, 14], + [72, -1], + [50, 51], + [47, 10], + [149, 70], + [29, 26], + [49, -1], + [84, 43], + [11, 73], + [25, 21], + [66, -6], + [22, 12], + [36, 65], + [28, 29], + [41, 17], + [29, 37], + [33, 66], + [29, -6], + [123, 89], + [8, 66], + [126, 51], + [24, 56], + [51, 52], + [40, 56], + [1, 22] + ], + [ + [11532, 12395], + [-1855, 553], + [-2170, 41], + [-1246, -825], + [-1205, -246], + [-1096, -881], + [-155, -342] + ], + [ + [3687, 10433], + [-173, -384] + ], + [ + [2264, 10162], + [-7, 33], + [23, 44], + [61, 58], + [50, 109], + [24, 26], + [-9, 30], + [37, 54], + [-26, 16], + [7, 55], + [40, 42], + [115, 47], + [36, 76], + [75, 72], + [-3, 57], + [24, 92], + [29, 54], + [113, 125], + [-3, 35], + [-51, 84], + [-65, 61], + [-7, 78], + [-27, 21], + [-18, -41], + [-99, -6], + [-41, 54], + [-159, 174], + [-37, 24], + [-252, 207], + [9, -63], + [-60, 54], + [-37, -4], + [-76, 102], + [-16, 62], + [-25, 34], + [-151, 47], + [-249, 70], + [-50, 31], + [90, 186], + [44, 57], + [9, 78], + [147, 176], + [10, 63], + [-26, 73], + [-78, 58], + [-55, 64], + [33, 84], + [-45, 46], + [4, 74], + [-14, 39], + [57, 42], + [110, 121], + [155, 158], + [28, 68], + [66, 205], + [81, 196], + [34, 109], + [120, 165], + [218, 270], + [76, -66], + [131, 184], + [-66, 52], + [108, 121], + [-247, 252], + [-368, 383], + [58, 69], + [92, 83], + [28, 71], + [35, 51], + [47, 35], + [127, 121], + [30, 10], + [83, 83], + [78, 39], + [54, 76], + [44, 44], + [54, 1], + [84, 50], + [89, 64], + [9, 88], + [54, 26], + [30, 46], + [74, 36], + [76, 65], + [9, 31], + [45, 71], + [-14, 18], + [61, 35], + [46, -14], + [73, 91], + [-2, 24], + [61, 25], + [-11, 17], + [32, 40], + [64, 23], + [50, 40], + [41, 65], + [28, 62], + [72, 65], + [56, 68], + [143, 126], + [189, 183], + [21, 78], + [5, 51], + [136, 104], + [48, 76], + [29, 1], + [88, 32], + [42, 30], + [31, 0], + [251, 172], + [121, 75], + [27, -6], + [188, 79], + [108, 87], + [37, 10], + [23, 68], + [45, 30], + [39, 70], + [14, -15], + [64, 1], + [8, 15], + [69, 18], + [-6, 103], + [-13, 27], + [63, 14], + [52, -15], + [69, 15], + [70, 81], + [34, 76], + [-24, 68], + [-25, 23], + [93, 103], + [326, 96], + [66, 25], + [76, 48], + [104, 99], + [4, 100], + [141, 134], + [44, 18], + [-7, 90], + [88, 207], + [-225, 187], + [-91, 73], + [-47, 222], + [128, 73], + [-18, 166], + [49, 178], + [193, 325], + [34, 53] + ] + ], + "transform": { + "scale": [0.00007502352717409281, 0.00004913555434863117], + "translate": [5.9559112999999995, 45.8181309] + }, + "objects": { + "switzerland": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-GL", + "NAME_0": "Switzerland", + "ID_1": 9, + "NAME_1": "Glarus", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Glaris|Glarona|Glaruna" + } + }, + { + "arcs": [[4, 5, 6, 7, 8, 9]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-LU", + "NAME_0": "Switzerland", + "ID_1": 12, + "NAME_1": "Lucerne", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Lucerna|Luzern" + } + }, + { + "arcs": [ + [[10, 11]], + [[12]], + [[13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, -9], [24], [25]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 223, + "ISO": "CH-BE", + "NAME_0": "Switzerland", + "ID_1": 6, + "NAME_1": "Bern", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Berna|Berne" + } + }, + { + "arcs": [[26, 27, -10, -24, 28, 29, 30]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-AG", + "NAME_0": "Switzerland", + "ID_1": 1, + "NAME_1": "Aargau", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Argovia|Arg¢via|Argovie" + } + }, + { + "arcs": [[31, 32, 33, 34, 35, 36, 37, -30, 38, 39]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-BL", + "NAME_0": "Switzerland", + "ID_1": 4, + "NAME_1": "Basel-Landschaft", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Bâle-Campagne|Basel-Country|Baselland|Basel-Land|Basilea campagna|Basilea Campaña|Basilea-Champagna" + } + }, + { + "arcs": [[40, 41, -5, -28]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-ZG", + "NAME_0": "Switzerland", + "ID_1": 26, + "NAME_1": "Zug", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Zoug|Zugo" + } + }, + { + "arcs": [[[-16, 42, 43]], [[44, -14, -8]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 223, + "ISO": "CH-OW", + "NAME_0": "Switzerland", + "ID_1": 15, + "NAME_1": "Obwalden", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Obvaldo|Obwald|Unterwalden-le-Haut|Obwaldo|Sursilvania" + } + }, + { + "arcs": [[45, 46, -43, -15, -45, -7]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-NW", + "NAME_0": "Switzerland", + "ID_1": 14, + "NAME_1": "Nidwalden", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Nidvaldo|Nidwald|Unterwalden-le-Bas|Nidwaldo" + } + }, + { + "arcs": [[47, 48, 49, 50, -1]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-GR", + "NAME_0": "Switzerland", + "ID_1": 10, + "NAME_1": "Graubünden", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Graubünden|Grigioni|Grischun|Grisons" + } + }, + { + "arcs": [[51, 52, 53, 54, 55, 56]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-AR", + "NAME_0": "Switzerland", + "ID_1": 2, + "NAME_1": "Appenzell Ausserrhoden", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Appenzell Ausser-Rhoden|Appenzell Outer Rhodes|Appenzell dadens|Appenzell Rhodes Extérieures|Appenzello Esterno" + } + }, + { + "arcs": [[[57, -52]], [[58, -54]], [[-56, 59]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 223, + "ISO": "CH-AI", + "NAME_0": "Switzerland", + "ID_1": 3, + "NAME_1": "Appenzell Innerrhoden", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Appenzell Inner-Rhoden|Appenzell Inner Rhodes|Appenzell dador|Appenzell Rhodes Intérieures|Appenzello Interno" + } + }, + { + "arcs": [[-18, 60, 61, 62, 63]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-VS", + "NAME_0": "Switzerland", + "ID_1": 23, + "NAME_1": "Valais", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Vallais|Vallese|Wallis" + } + }, + { + "arcs": [[[64]], [[65, 66, -48, -4, 67, 68], [-57, -60, -55, -59, -53, -58], [69]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 223, + "ISO": "CH-SG", + "NAME_0": "Switzerland", + "ID_1": 16, + "NAME_1": "Sankt Gallen", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Saint-Gall|San Gallo|Son Gagl" + } + }, + { + "arcs": [[70, -62, 71, -50], [72]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-TI", + "NAME_0": "Switzerland", + "ID_1": 21, + "NAME_1": "Ticino", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Tesino|Tessin" + } + }, + { + "arcs": [[-3, 73, -46, -6, -42, 74, -68]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-SZ", + "NAME_0": "Switzerland", + "ID_1": 18, + "NAME_1": "Schwyz", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-75, -41, -27, 75, 76, 77, 78, 79, 80, -69]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-ZH", + "NAME_0": "Switzerland", + "ID_1": 25, + "NAME_1": "Zürich", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Turitg|Zurigo|Zürih|Zurique" + } + }, + { + "arcs": [[[-70]], [[-81, 81, 82, 83, 84, 85, -66], [-65]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 223, + "ISO": "CH-TG", + "NAME_0": "Switzerland", + "ID_1": 20, + "NAME_1": "Thurgau", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Thurgovie|Turgovia|Turg¢via" + } + }, + { + "arcs": [[-72, -61, -17, -44, -47, -74, -2, -51]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-UR", + "NAME_0": "Switzerland", + "ID_1": 22, + "NAME_1": "Uri", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[[-79, 86, -83, 87]], [[88, -77]], [[-85, 89]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 223, + "ISO": "CH-SH", + "NAME_0": "Switzerland", + "ID_1": 17, + "NAME_1": "Schaffhausen", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Schaffhouse|Schaffusa|Sciaffusa" + } + }, + { + "arcs": [[90, 91, -40, 92, -22]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-JU", + "NAME_0": "Switzerland", + "ID_1": 11, + "NAME_1": "Jura", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Giura" + } + }, + { + "arcs": [[[-25]], [[93]], [[94]], [[95, 96]], [[97, 98, 99, -11, 100, 101, -20], [-13]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 223, + "ISO": "CH-FR", + "NAME_0": "Switzerland", + "ID_1": 7, + "NAME_1": "Fribourg", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Freiburg|Friburg|Friburgo" + } + }, + { + "arcs": [[-37, 102]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-BS", + "NAME_0": "Switzerland", + "ID_1": 5, + "NAME_1": "Basel-Stadt", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Bâle-Ville|Basel-City|Basel-Town|Basilea-Citad|Basilea Ciudad|Basilea città|Basiléia cidade" + } + }, + { + "arcs": [[[-26]], [[103, -35]], [[104, -33]], [[-93, -39, -29, -23]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 223, + "ISO": "CH-SO", + "NAME_0": "Switzerland", + "ID_1": 19, + "NAME_1": "Solothurn", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Soletta|Soleure|Soleuro|Soloturn" + } + }, + { + "arcs": [[[105]], [[106, 107]], [[108, 109]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 223, + "ISO": "CH-GE", + "NAME_0": "Switzerland", + "ID_1": 8, + "NAME_1": "Genève", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Cenevre|Genebra|Geneve|Geneva|Genevra|Genf|Ginebra|Ginevra" + } + }, + { + "arcs": [[-91, -21, -102, 110, -99, 111, -97, 112, 113]], + "type": "Polygon", + "properties": { + "ID_0": 223, + "ISO": "CH-NE", + "NAME_0": "Switzerland", + "ID_1": 13, + "NAME_1": "Neuchâtel", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Neuenburg" + } + }, + { + "arcs": [ + [[-111, -101, -12, -100]], + [[-19, -64, 114, -108, 115, -110, 116, -113, -96, -112, -98], [-94], [-95], [-106]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 223, + "ISO": "CH-VD", + "NAME_0": "Switzerland", + "ID_1": 24, + "NAME_1": "Vaud", + "TYPE_1": "Canton|Kanton|Chantun", + "ENGTYPE_1": "Canton", + "NL_NAME_1": null, + "VARNAME_1": "Vad|Waadt|Waadtland" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/thailand-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/thailand-topo.json new file mode 100644 index 000000000000..07a6cb46d193 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/thailand-topo.json @@ -0,0 +1,9644 @@ +{ + "type": "Topology", + "arcs": [ + [ + [23307, 29710], + [33, -19], + [74, -73], + [8, -55], + [-16, -81], + [77, -175], + [15, -71], + [60, -33] + ], + [ + [23558, 29203], + [-51, -7], + [-50, -69], + [-23, -66], + [-51, -82], + [21, -107], + [-3, -39], + [-38, -49], + [-61, -28], + [-14, -64], + [32, -34], + [-59, -115], + [2, -161], + [-15, -39], + [-77, -45], + [-74, -26], + [-14, -24], + [5, -75], + [-47, -108], + [11, -97], + [92, -33], + [19, -35], + [-14, -75], + [-56, -18], + [-68, -61], + [16, -35], + [-27, -43], + [-54, 8], + [9, 64], + [-71, 15], + [-19, 35], + [-43, -14], + [-42, 57], + [-42, -31], + [-57, 92], + [-55, 15], + [-140, 77], + [-50, -8], + [-39, 36], + [-196, 46], + [-55, -30], + [28, -36], + [57, -3], + [23, -43], + [-62, -15], + [-3, -48], + [-45, -36], + [-53, -11], + [4, -113], + [-96, -30], + [-22, -38], + [-65, 45], + [-48, 12] + ], + [ + [21878, 27714], + [-12, 59], + [-77, 17], + [-51, -9], + [-6, 52], + [-39, 33], + [-31, 71], + [21, 33], + [-15, 124], + [-54, 25], + [31, 132], + [-18, 53], + [60, 161], + [36, 27], + [-30, 60], + [7, 46], + [50, 67], + [1, 39], + [61, 64], + [45, 26], + [-8, 73], + [52, 19], + [33, 67], + [-39, 50], + [45, 35], + [10, 43], + [74, 96], + [10, 29], + [134, 28], + [55, 40], + [67, 0], + [151, -26], + [68, -26], + [140, -16], + [67, 33], + [55, -41], + [30, -1], + [37, 130], + [-1, 38], + [-57, 18], + [-40, -16], + [-40, 76], + [-36, 33] + ], + [ + [22664, 29476], + [71, 10], + [28, -31], + [68, 1], + [17, 42], + [81, -7], + [78, 28], + [16, 64], + [103, 63], + [37, -8], + [87, 57], + [57, 15] + ], + [ + [9537, 25355], + [2, -20], + [80, -29], + [44, -67] + ], + [ + [9663, 25239], + [-28, -68], + [5, -61], + [-30, -45], + [-2, -87], + [-42, -42], + [41, -46], + [-3, -34], + [30, -96], + [-8, -77], + [-19, -44], + [-96, -56], + [-55, -4], + [-16, 27], + [-58, -8], + [1, 94], + [-16, 77], + [-100, 4], + [-37, -22], + [-157, -27], + [-93, 23], + [-39, -30], + [-63, -13] + ], + [ + [8878, 24704], + [-65, 21], + [-19, 50], + [-57, 42], + [5, 46], + [-37, 47], + [43, 63], + [-47, 83], + [94, 91], + [15, 29], + [-47, 111], + [-2, 94], + [-27, 45], + [14, 101], + [53, 37] + ], + [ + [8801, 25564], + [56, 20], + [64, -7], + [73, -29], + [59, 29], + [65, 14], + [35, -40], + [-6, -33], + [44, -42], + [42, 14], + [37, -61], + [79, 36], + [29, -19], + [-5, -59], + [72, 1], + [92, -33] + ], + [ + [10897, 23208], + [-19, -134], + [-5, -101], + [-42, -31], + [138, -99], + [-26, -34], + [-60, -33], + [-167, -252], + [18, -8] + ], + [ + [10734, 22516], + [-54, -1], + [-167, 55], + [-239, 5], + [6, -64], + [-41, -110], + [-136, 39], + [-19, -50], + [-207, 46], + [24, 66], + [-84, 41], + [-28, -23], + [3, -44], + [-24, -34], + [-81, 10], + [-9, -124], + [17, -67], + [-28, -10], + [-93, 17], + [-80, -8], + [-24, -50], + [-8, -87], + [25, -149] + ], + [ + [9487, 21974], + [-137, -23] + ], + [ + [9350, 21951], + [-10, 49], + [44, 81], + [-6, 61], + [-62, -16], + [-54, 104], + [-7, 69], + [-64, 59], + [-52, 8], + [9, 50], + [-34, 110], + [3, 92] + ], + [ + [9117, 22618], + [-9, 197], + [-28, 51] + ], + [ + [9080, 22866], + [33, -51], + [249, -9], + [159, -11], + [21, -22], + [93, 32], + [46, 35], + [-9, 34], + [95, 68], + [72, 279], + [-11, -1] + ], + [ + [9828, 23220], + [32, 13], + [91, -26], + [16, 29], + [48, -18], + [1, -30], + [52, -19], + [144, -4], + [53, -33], + [135, 0], + [134, 38], + [363, 38] + ], + [ + [20898, 34567], + [-49, -13], + [-61, 14], + [-23, -24], + [-104, -44], + [24, -66], + [63, -55], + [-50, -82], + [-86, -62], + [-68, -67], + [-73, 30], + [5, 34], + [-64, 21], + [-42, -44], + [-61, -17], + [-28, -71], + [48, -38], + [-11, -21], + [55, -87] + ], + [ + [20373, 33975], + [-49, -6], + [-5, -56], + [-39, -22], + [-79, -14], + [-58, 24], + [-23, 61], + [-52, 38], + [25, 44], + [-20, 67], + [-56, -23], + [14, 85], + [-91, -16], + [-59, 22], + [-62, -37], + [-122, 2], + [50, -35], + [-53, -43], + [-87, 108], + [53, 123], + [-91, -27], + [-93, 25], + [-16, 41], + [-106, 46], + [-79, 43], + [-95, 32], + [-14, 53], + [-29, 33], + [-16, 61], + [-56, 10], + [-86, 66], + [-137, 35], + [-66, -40], + [1, -51], + [30, -120], + [-35, -33], + [-54, 49], + [-37, -46], + [-43, 16], + [-30, -32], + [-107, 22] + ], + [ + [18501, 34480], + [-35, 89], + [-64, 27], + [-33, -11], + [-55, 57], + [-93, 23], + [-34, 90], + [40, 26], + [-66, 25], + [19, 127], + [51, 4], + [62, -21], + [62, 43], + [-25, 50], + [-63, 36], + [-6, 29], + [-134, 84], + [-45, -8], + [0, 79], + [81, 37], + [18, 87] + ], + [ + [18181, 35353], + [-4, 31], + [-63, 60], + [-67, -3], + [-32, 51], + [5, 40], + [113, 96], + [38, 59], + [52, 26], + [107, 0], + [165, 40], + [32, 0], + [136, -65], + [189, 3], + [92, -20], + [75, -40], + [84, 2], + [48, -13], + [100, -56], + [147, -105], + [146, 2], + [192, -8], + [72, -31], + [58, -116], + [83, 1], + [138, 109], + [65, 27], + [93, -7], + [62, -70], + [204, -258], + [3, -27], + [82, -135], + [35, -95], + [43, -57], + [128, -127], + [75, -67], + [21, -33] + ], + [ + [17610, 27486], + [5, -41], + [-43, -103], + [-29, -15], + [80, -62], + [54, -4], + [86, -100], + [80, -14], + [100, -98], + [111, -31], + [52, 17], + [47, -54], + [44, 52], + [32, 1], + [44, 54], + [74, 18], + [54, -12], + [55, -39], + [1, -29], + [104, -1], + [27, 39], + [52, 22], + [67, 0], + [4, -48], + [94, -24], + [-15, -57], + [-67, -3], + [-43, -21], + [-5, -65], + [-68, -31], + [-27, -88], + [-32, -38], + [26, -48], + [-22, -49], + [24, -28], + [-14, -81], + [22, -111], + [17, -20], + [-31, -59], + [64, -45], + [-25, -39], + [-46, -1], + [-29, -69], + [44, -62], + [-36, -72], + [33, -43], + [-29, -64], + [-87, -69], + [-43, -96], + [-42, -10], + [-62, -79], + [-39, 12], + [-65, -68], + [-40, 12], + [-17, -83], + [-71, -41], + [27, -55], + [-13, -92], + [-49, -142], + [-67, -47], + [14, -66], + [-74, -82], + [-10, -50], + [33, -33], + [6, -49], + [-27, -54], + [22, -25], + [-13, -51], + [55, -49], + [-3, -38], + [40, -76], + [-51, -139], + [-26, -36], + [-1, -84], + [17, -60] + ], + [ + [17960, 24270], + [-72, -1], + [-86, 25], + [-41, -13], + [-26, -44], + [-35, 31], + [-37, -17], + [2, -39], + [-156, -36], + [-71, -27], + [2, -28], + [-100, -118], + [-80, -48], + [-133, -17], + [-46, -36], + [-30, -51] + ], + [ + [17051, 23851], + [-92, -35], + [-54, 27], + [-31, -14], + [-5, -50], + [-33, -2], + [-80, 48], + [-76, 13], + [-29, -32], + [-64, 7], + [-36, -61], + [-94, 1], + [-122, -29], + [-39, 58], + [-88, 38], + [-60, -46], + [-65, 57], + [-63, -10], + [-24, -28], + [-99, -56], + [-87, 20], + [-43, -28], + [-79, 24], + [-27, -28], + [-113, 33], + [-17, 26] + ], + [ + [15531, 23784], + [69, 116], + [154, -12], + [24, 31], + [80, 3], + [31, 41], + [64, 14], + [83, 50], + [79, 69], + [115, 53], + [51, 49], + [-44, 46], + [-69, 24], + [-60, -17], + [-51, 6], + [-51, 35], + [-16, 66], + [-44, 14], + [-16, 35], + [1, 69], + [21, 75], + [37, 46], + [53, 9], + [17, 32], + [16, 94], + [-23, 11], + [-245, 29], + [-82, -4], + [-36, 49], + [29, 40], + [6, 79], + [-65, 160], + [6, 89], + [-50, 152], + [58, 60], + [9, 41], + [-39, 48], + [-49, 18], + [-37, 78], + [22, 64], + [39, 39], + [49, -58], + [75, -32], + [100, 34], + [23, 31], + [34, 98], + [-4, 51], + [-32, 28], + [9, 41], + [54, 35], + [8, 60], + [-18, 49], + [45, 6], + [85, -59], + [280, -8], + [53, 58], + [-7, 45], + [22, 38], + [55, 30], + [55, -6], + [18, 42], + [-4, 63], + [62, 9], + [10, 36], + [-5, 112], + [141, 166], + [22, -1], + [57, 66], + [79, 10], + [63, 43], + [134, -14], + [82, 23], + [26, 41], + [-40, 30], + [0, 66], + [-21, 84], + [40, 62], + [-45, 47], + [12, 44], + [107, 35], + [-8, 73], + [-28, 27], + [-74, 18], + [-12, 42], + [78, 60], + [60, 3], + [44, 35], + [-48, 60], + [-9, 42], + [-37, 32], + [-126, -14], + [-52, 74], + [-55, 46], + [-64, 16], + [-78, -27], + [-130, -3], + [-15, 35], + [-86, 99], + [3, 80], + [-36, 95], + [25, 62] + ], + [ + [16594, 27945], + [76, -36], + [79, 6], + [109, 41], + [42, 121], + [-16, 118], + [10, 92], + [50, 50], + [112, 25] + ], + [ + [17056, 28362], + [32, -80], + [113, -44], + [30, -51], + [50, -10], + [17, -72], + [-15, -51], + [-97, -53], + [117, -106], + [3, -36], + [47, -43], + [75, -20], + [-21, -54], + [18, -35], + [47, -19], + [74, -57], + [-60, -85], + [59, -39], + [65, -21] + ], + [ + [11579, 23274], + [31, -21], + [40, -102], + [-23, -28], + [0, -97], + [-25, -28], + [64, -34], + [54, 14], + [54, 42], + [62, -4], + [42, 18], + [44, -48], + [87, 35], + [56, -20], + [35, 8], + [106, -42], + [12, 24], + [66, -12], + [41, 22], + [2, -67], + [88, -28], + [50, -1], + [31, -28], + [96, -10], + [58, -54], + [110, -43], + [70, -5], + [137, -142], + [57, 2], + [102, 28], + [24, -18], + [62, 4], + [37, 67], + [37, 15], + [8, 52], + [43, 23], + [48, -5], + [58, 48], + [55, -46], + [24, -41], + [46, -33], + [-3, -46], + [26, -39], + [-18, -52], + [57, -70], + [54, 26], + [33, -28], + [9, -165], + [69, -17], + [35, -78], + [53, -55], + [58, 12] + ], + [ + [13941, 22207], + [1, -30], + [-43, -76], + [-112, -27], + [45, -42], + [49, -6], + [28, -74], + [42, -48], + [77, -42], + [-14, -37], + [20, -37], + [77, -71], + [42, -85], + [-3, -41], + [27, -30], + [2, -59] + ], + [ + [14179, 21502], + [-65, -23], + [-61, -86], + [-62, 4], + [-66, -22], + [-46, -169], + [-76, 54], + [-54, 0], + [-34, -36], + [-199, -138], + [-41, 11], + [-121, -20] + ], + [ + [13354, 21077], + [-38, 73], + [-55, 68], + [-19, 59], + [-45, 58], + [-32, 8], + [-54, 47], + [-121, 28], + [-51, 52], + [-58, 29], + [-24, 100], + [-29, 26], + [1, 56], + [-22, 32], + [-40, -5], + [-93, 35], + [-91, -31], + [-43, -3], + [-29, 42], + [-54, 23], + [0, 61], + [-40, 14], + [-51, -17], + [-87, 20], + [-49, 60], + [-85, 49], + [-153, 167], + [-77, 35], + [-177, 42], + [-70, 37], + [-76, -14], + [-38, -65], + [-55, -3], + [-53, -43], + [-119, -3], + [-5, -21], + [53, -75], + [-32, -6], + [-45, -45], + [-37, -8], + [-15, -48], + [-66, -45], + [-69, 1], + [-20, 20] + ], + [ + [11091, 21887], + [-114, -22], + [-162, 17], + [-117, 28] + ], + [ + [10698, 21910], + [9, 42], + [62, -6], + [1, 87], + [23, 69], + [45, 36], + [26, -18], + [37, 46], + [-18, 59], + [42, 2], + [63, 73], + [49, 36], + [9, 30], + [-45, 25], + [11, 35], + [-224, 69], + [-54, 21] + ], + [ + [10897, 23208], + [1, 40] + ], + [ + [10898, 23248], + [221, 26], + [95, 2], + [82, 19], + [177, -7], + [106, -14] + ], + [ + [9153, 26456], + [-76, -53], + [-57, -18], + [-17, -53], + [-54, -1], + [-50, -22], + [-82, -8], + [-1, -84], + [55, -17], + [30, -81], + [54, -77], + [-55, -50], + [-177, 27] + ], + [ + [8723, 26019], + [-125, -58], + [-42, -48], + [-61, 13], + [-45, 70], + [-114, 31], + [-27, -11], + [-79, 22], + [16, -66], + [-11, -52], + [-101, -25], + [-116, -16], + [-67, 21], + [-49, -10], + [-104, 22], + [-49, -7], + [-33, 41], + [-57, 35], + [-79, -11], + [-103, 20], + [-88, 50], + [-131, 3], + [-19, 40] + ], + [ + [7239, 26083], + [42, 69], + [46, 14], + [102, 52], + [18, 47], + [-34, 37], + [50, 46], + [40, 81], + [-86, 101], + [-81, 74], + [36, 30], + [-42, 41], + [-69, 93], + [-7, 153], + [45, 37], + [115, 37], + [44, 38], + [248, -35], + [64, -38], + [205, 37], + [24, -16], + [141, 1], + [39, -25], + [44, 7], + [82, -17], + [29, 15], + [12, 74], + [64, 50], + [-16, 47], + [-58, 38], + [25, 35], + [11, 78], + [46, 27] + ], + [ + [8418, 27311], + [73, -19], + [131, -101], + [98, -27], + [115, -119], + [72, -94], + [35, -140], + [28, -18], + [21, -97], + [40, -65], + [133, -74], + [-11, -101] + ], + [ + [13444, 30794], + [114, -89], + [55, 32], + [92, 29], + [59, -10], + [61, -33], + [55, 3], + [55, -42], + [58, 15], + [73, 0], + [13, -44], + [63, -14], + [40, -84], + [7, -47], + [92, -26], + [68, -135], + [84, -19], + [41, -26], + [33, 15], + [84, -10], + [105, 25], + [43, -32], + [29, 30], + [65, 5], + [88, -58], + [39, -41], + [73, -38], + [71, -17], + [83, 17], + [43, -26], + [52, 18], + [125, -25], + [40, 62], + [32, -114], + [136, -91], + [-33, -41], + [-13, -98], + [-65, -103], + [-35, -106], + [8, -51], + [-33, -21], + [-51, -76], + [-134, -163], + [-40, -64], + [-104, -97], + [-43, -56], + [68, -108], + [26, 10], + [116, -38], + [7, -48], + [104, -55], + [-46, -51], + [-8, -74], + [-38, -111], + [-64, -97], + [-46, -16], + [21, -175] + ], + [ + [15212, 28385], + [-46, 12], + [-13, -40], + [-93, -34], + [-63, 0], + [-2, -29], + [-42, -53], + [-38, -21], + [-81, 35], + [-8, -40], + [-41, -9], + [-57, 14], + [-39, -54], + [-73, -147], + [-47, -73], + [-50, -41], + [-33, 6], + [-51, -41], + [-32, -104], + [-72, -102], + [15, -45], + [-33, -82], + [1, -73], + [-71, -48], + [-41, 24], + [-117, -33], + [-69, 4], + [-24, -39], + [-43, -21], + [-54, -93], + [-52, -33], + [-113, 68], + [-59, 8], + [-47, 37], + [-83, -119], + [-57, -15], + [-121, 14], + [-63, 29], + [-44, -10], + [-85, 28], + [-50, -15], + [-44, -82], + [-24, -12], + [-69, 47], + [-26, -17], + [-148, 7], + [-67, -13], + [-78, -38], + [-56, 31], + [-125, 5], + [-67, -149], + [-66, 12], + [-15, 27] + ], + [ + [12336, 27068], + [-15, 26], + [-14, 100], + [6, 159], + [24, 142], + [-34, 125], + [-12, 140] + ], + [ + [12291, 27760], + [41, 175], + [24, 58], + [44, 204], + [-69, 1], + [-134, 54], + [-34, 81], + [-35, 19], + [27, 41], + [14, 66], + [-8, 74], + [11, 66], + [59, 20], + [73, 89], + [-16, 50], + [16, 77], + [-52, -7], + [-63, 85], + [20, 24], + [-63, 109], + [23, 130], + [25, 50], + [9, 131], + [38, 36], + [28, 54], + [57, 11], + [-31, 89], + [12, 58], + [-73, 34], + [70, 45], + [-12, 57], + [36, 73], + [-8, 33], + [18, 82], + [74, 51], + [-23, 60], + [54, 43], + [38, 51], + [46, 16], + [4, 40], + [74, 76], + [-30, 64], + [6, 39], + [164, 91], + [-62, 42], + [8, 135], + [76, 23], + [-51, 107], + [25, 59], + [63, -39], + [102, -46], + [15, 40], + [-19, 83], + [-47, 50], + [-3, 53], + [102, -17], + [18, -42], + [34, -3], + [41, -59], + [48, -17], + [61, 21], + [124, -13], + [98, -90], + [66, 47] + ], + [ + [15271, 18809], + [26, 21] + ], + [ + [15297, 18830], + [-26, -21] + ], + [ + [15301, 18832], + [27, 33] + ], + [ + [15328, 18865], + [-27, -33] + ], + [ + [15342, 18884], + [-8, -19] + ], + [ + [15334, 18865], + [8, 19] + ], + [ + [15342, 18884], + [-37, -41], + [-62, -30], + [-8, -86], + [-53, -27], + [-47, -52], + [-60, 34], + [-39, 75], + [20, 60], + [-32, 96], + [-34, 36], + [-58, -50], + [-15, -48], + [67, -1], + [13, -88], + [55, -66], + [-2, -41], + [-51, -14], + [-108, 62], + [-113, 124], + [-76, 68], + [-77, 40], + [-87, 101], + [-66, 57], + [-96, 50], + [-113, 106], + [-105, 49], + [-67, 4], + [-26, 76], + [30, 30], + [-39, 41], + [-27, -56], + [7, -119], + [-146, 108], + [39, 20], + [-11, 49], + [-102, 30], + [-21, 40], + [-6, 59], + [-112, 83], + [-124, 62], + [0, 44], + [38, 24], + [2, 35] + ], + [ + [13593, 19828], + [24, 56], + [37, 40], + [39, 165], + [-8, 77], + [-30, 100], + [-83, 112], + [7, 26], + [-43, 38], + [-71, -31], + [-50, 49], + [0, 69], + [61, 83], + [-16, 64], + [-111, -8], + [-12, 51], + [-62, 117], + [17, 43], + [-40, 27], + [32, 45], + [4, 47] + ], + [ + [13288, 20998], + [42, 24], + [24, 55] + ], + [ + [14179, 21502], + [38, -48], + [28, -66], + [74, -24], + [-17, -46], + [-3, -85], + [87, 11], + [46, 42], + [112, 24], + [28, 35], + [5, 74], + [31, 61], + [76, -78], + [100, 15], + [48, -122], + [53, 15], + [72, -1], + [32, -20], + [97, 10], + [26, 81], + [50, -7], + [75, 81], + [55, -48] + ], + [ + [15292, 21406], + [0, -79], + [32, -10], + [20, -85], + [53, -61], + [19, -59], + [15, -103], + [58, -56], + [-5, -38], + [56, -64], + [15, -40], + [65, -13], + [105, -189], + [30, -21], + [63, 0], + [-119, -82], + [46, -47], + [-47, -36], + [70, -139], + [-1, -88], + [-23, -41], + [44, -29], + [-1, -47], + [54, -36], + [-13, -41], + [24, -35], + [-10, -45], + [-46, -44], + [-25, 3] + ], + [ + [15771, 19881], + [-60, 12], + [-50, -56], + [-96, 5], + [-59, -72], + [-118, -90], + [9, -86], + [39, -92], + [-40, -16], + [38, -46], + [70, -55], + [-65, -17], + [-65, 45], + [-15, 36], + [-91, -22], + [-22, -54], + [-102, -37], + [31, -42], + [6, -87], + [35, -21], + [39, -57], + [-14, -49], + [-52, -33], + [28, -34], + [15, -61], + [100, -41], + [10, -27] + ], + [ + [6279, 37290], + [-79, -41], + [1, -70], + [33, -46], + [-24, -58], + [24, -92], + [-2, -60], + [-102, -59], + [-4, -36], + [27, -94], + [34, -55], + [-1, -76], + [-69, -54], + [1, -24], + [-63, -111], + [18, -46], + [47, -36], + [-51, -19], + [-11, -86], + [54, -5], + [37, -25], + [-25, -35], + [4, -46], + [-56, -5], + [-20, -94], + [-29, -28] + ], + [ + [6023, 35989], + [-66, 16], + [-101, 94], + [-78, 29], + [-54, 36], + [50, 62], + [-9, 98], + [-78, 18], + [-55, 56], + [5, 57], + [-106, 28], + [-61, -24], + [-38, -51], + [-32, -10], + [-98, 2], + [-89, -33], + [-113, 17], + [-31, -38], + [1, -45], + [-65, -28], + [-48, -45], + [5, -42], + [-49, -49], + [-29, -60], + [-62, -79], + [-29, -3], + [-99, -65], + [-42, 10], + [-37, -42], + [-86, -51], + [-43, -51], + [-44, -25], + [-74, -16], + [-36, -39], + [-49, -6], + [-61, 37], + [-51, -11], + [-52, -70], + [22, -47], + [-31, -22], + [-27, -71], + [66, -80], + [-92, -29], + [2, -86], + [89, -20], + [115, -68], + [107, -40], + [1, -71], + [25, -10], + [-4, -117], + [28, -49], + [35, -12], + [18, -116], + [-35, -79], + [48, -22], + [-108, -190], + [37, -27], + [53, 19], + [80, -63], + [24, -115], + [45, -98], + [45, -165], + [-57, -17], + [7, -84], + [-103, -47], + [-59, -4], + [-42, 99], + [-32, -6], + [-46, -76], + [-65, 9], + [-23, -24], + [-80, 0], + [-68, -15], + [16, -39] + ], + [ + [4110, 33884], + [-6, -28], + [-73, -50], + [-83, -34], + [-47, 116], + [-42, 18], + [-34, 49], + [-75, 21], + [-39, -39], + [-47, 41], + [-67, 36], + [-36, -30], + [-43, 8], + [-7, -51], + [49, -24], + [-20, -77], + [41, -69], + [24, -92], + [-6, -84], + [28, -93], + [0, -52], + [93, -15], + [51, -52], + [19, -49], + [-84, -29], + [-49, -35], + [-45, -56], + [-10, -112], + [-16, -50], + [36, -74], + [44, -10], + [41, -45], + [-10, -96], + [-55, -96], + [32, -28], + [38, -91], + [-8, -76], + [-86, -53], + [-114, 30], + [2, 46], + [-110, 36], + [-59, -28], + [-52, 13], + [-64, -6], + [-97, -30], + [-19, -21], + [-72, 24], + [-50, 40], + [31, 48], + [5, 58], + [-48, 47], + [7, 26], + [-86, 88], + [92, 25], + [17, 35], + [-23, 46], + [28, 70], + [-5, 48], + [-35, 45], + [-6, 63], + [-53, 137], + [-75, 10], + [-50, -17], + [-19, -41], + [-69, -37], + [-146, -23], + [-34, 27], + [-92, -16], + [-34, 72], + [-43, 28], + [-66, 168] + ], + [ + [2279, 33494], + [110, 68], + [55, 57], + [17, 52], + [-8, 127], + [-21, 7], + [17, 79], + [-42, 52], + [-86, 3], + [-51, 33], + [-43, 54], + [-18, 72], + [-44, 44], + [-72, 22], + [-15, 36], + [-43, 11], + [-4, 51], + [40, 63], + [203, 75], + [103, -45], + [79, -13], + [18, 51], + [89, 54], + [184, 28], + [2, 30], + [-41, 59], + [16, 28], + [61, 14], + [49, 35], + [50, 73], + [-68, 31], + [-59, -27], + [-46, 56], + [-53, -24], + [-75, 73], + [-73, 12], + [-29, 130], + [58, 70], + [-28, 37], + [11, 45], + [-70, 21], + [-36, 109], + [12, 38], + [168, 15], + [-71, 49], + [11, 78], + [-16, 49], + [-72, 40], + [-31, 61], + [-71, 66], + [-119, 56], + [28, 50], + [70, 32], + [50, 124], + [97, 28], + [50, 37], + [14, 60], + [99, -28], + [74, 57], + [16, 34], + [-27, 44], + [-46, 14], + [-8, 48], + [-81, 5], + [-2, 39], + [-58, 7], + [-60, 36], + [-82, -12], + [-36, 38], + [20, 60], + [-36, 99], + [5, 85], + [16, 39], + [40, 23], + [0, 48], + [-87, 5], + [-38, 113], + [29, 121], + [40, 64], + [69, 66], + [99, 33], + [1, 49], + [43, 29], + [-20, 80], + [16, 51], + [48, 59], + [13, 71], + [45, 20], + [13, 38], + [88, 109], + [38, 19], + [-31, 90], + [38, 56], + [98, -22], + [121, 9], + [45, -32], + [19, -90], + [24, -51], + [52, -23], + [4, -51], + [36, -15], + [53, -72], + [60, -23], + [52, 54], + [124, -13], + [114, -29], + [38, -20], + [54, 4], + [28, 30], + [74, 29], + [68, 10], + [95, 31], + [48, 54], + [-23, 124], + [-25, 83], + [-81, 65], + [-73, 30], + [-40, 47], + [90, 64], + [-30, 66], + [11, 41], + [36, 31], + [-29, 32], + [20, 49], + [-36, 67], + [11, 71], + [-37, 25], + [-22, 51], + [49, 109], + [-14, 54], + [43, 72], + [-18, 66], + [-44, 44], + [-31, -2], + [-9, 107], + [-70, 33], + [-21, 123], + [9, 23], + [-106, 58], + [-106, 83], + [-3, 81] + ], + [ + [3432, 39216], + [45, 33], + [110, 34], + [60, -61], + [89, -56], + [16, 85], + [63, 31], + [62, -11], + [60, 50], + [96, 51], + [118, 29], + [146, 9], + [88, -20], + [56, 64], + [53, 18], + [42, 37], + [9, 41], + [48, -8], + [201, -147], + [36, -8], + [19, 59], + [66, -45], + [29, -44], + [58, -17], + [20, 44], + [9, 88], + [36, -3], + [41, 67], + [52, 137], + [-31, 26], + [16, 171], + [40, 14], + [6, 52], + [-24, 55], + [0, 58], + [45, 25], + [-24, 56], + [2, 49], + [38, 71], + [34, 18], + [5, 67], + [192, 35], + [-15, 33], + [106, 42], + [59, -16], + [95, 10], + [44, -32], + [109, -31], + [164, -103], + [98, 9], + [115, 38], + [171, 11], + [95, 47], + [83, 25], + [-12, 36], + [55, 45] + ], + [ + [6626, 40484], + [13, -19], + [115, -27], + [48, -44], + [-35, -36], + [-38, 7], + [-167, -64], + [19, -78], + [-48, -36], + [-51, -16], + [31, -59], + [-28, -13], + [-36, -64], + [-107, -60], + [-20, -86], + [17, -39], + [-66, -20], + [-48, -68], + [23, -72], + [69, -58], + [-13, -25], + [34, -47], + [-80, 0], + [-49, -54], + [-36, -74], + [-19, -115], + [-47, -44], + [-94, -11], + [-60, -78], + [-90, -46], + [-18, -44], + [26, -103], + [53, -20], + [42, -112], + [58, -27], + [24, -39], + [-73, -63], + [-20, -52], + [37, -26], + [32, -100], + [-24, -68], + [43, -64], + [26, -124], + [-47, -30], + [51, -134], + [27, -94], + [-16, -37], + [-81, -84], + [-14, -135], + [32, -18], + [21, -78], + [-6, -52], + [64, -79], + [67, -42], + [16, -36], + [40, -7], + [-3, -46], + [59, -134] + ], + [ + [9350, 39342], + [-66, -71], + [-38, -7], + [-42, -52], + [-55, -4], + [-48, -42], + [-26, -67], + [-81, -15], + [-86, 15], + [-60, -63], + [-15, -47], + [-71, 1], + [-24, -26], + [-76, -36], + [-65, -65], + [-36, -17], + [-198, -17], + [-50, -32], + [-6, -109], + [16, -47], + [-26, -89], + [-160, -66], + [-67, 11], + [-117, -11], + [-84, -61], + [-22, 73], + [-48, -16], + [-39, 59], + [-181, -6], + [-119, 12], + [-37, -23], + [-180, -56], + [-103, -10], + [33, -99] + ], + [ + [7173, 38359], + [-57, 25], + [-47, -18], + [-128, 17], + [-67, 41], + [-80, 21], + [-19, -28], + [38, -41], + [-9, -119], + [26, -23], + [-3, -77], + [-88, -150], + [-17, -43], + [-15, -178], + [-15, -42], + [43, -17], + [30, -51], + [-24, -45], + [-45, -38], + [4, -62], + [-56, -30], + [-53, 8], + [-58, -21], + [-30, -58], + [-113, -101], + [-47, -28], + [-64, -11] + ], + [ + [6626, 40484], + [77, 2], + [9, 70], + [29, 9], + [30, 93], + [-88, 67], + [-26, 1], + [-20, 91], + [-39, 80], + [7, 88], + [-33, 44], + [-122, 62], + [3, 81], + [45, 5], + [73, -25], + [61, -65], + [62, -16], + [60, 3], + [66, -35], + [104, -35], + [72, 27], + [126, -68], + [66, 25], + [37, -7], + [20, 44], + [45, 27], + [136, -42], + [106, 4], + [85, 101], + [4, 80], + [49, 43], + [51, 77], + [96, 16], + [52, -10], + [117, 53], + [80, -81], + [5, -38], + [58, -13], + [71, -47], + [79, -35], + [43, -38], + [73, -129], + [9, -57], + [-14, -112], + [61, -48], + [130, -16], + [60, 10], + [20, 42], + [-43, 92], + [85, 40], + [70, 10], + [31, 36], + [0, 82], + [53, 28], + [18, 56], + [66, 39], + [88, -10], + [87, 4], + [78, -58], + [11, -61], + [39, -6], + [38, -120], + [74, -96], + [12, -51], + [113, -67], + [22, -29], + [-3, -67], + [93, -52], + [83, -97], + [52, -2], + [66, 83], + [79, -19], + [-21, -90], + [-6, -107], + [-25, -56], + [-28, -129], + [-105, -237], + [8, -81], + [-44, -83], + [-71, -59], + [-66, -25], + [-54, -55], + [14, -21], + [-33, -83], + [-71, -63], + [-27, -65], + [6, -51] + ], + [ + [11004, 19424], + [35, -78], + [-26, -18], + [-34, 70], + [25, 26] + ], + [ + [10491, 19788], + [64, 1], + [9, -59], + [-83, -70], + [-9, 100], + [19, 28] + ], + [ + [10513, 20368], + [-27, -67], + [-41, 41], + [11, 35], + [57, -9] + ], + [ + [10176, 20426], + [20, -48], + [-33, -24], + [-25, 71], + [38, 1] + ], + [ + [10571, 21074], + [31, -85], + [-36, -13], + [-24, 70], + [29, 28] + ], + [ + [13288, 20998], + [-82, 7], + [-72, 26], + [-123, -76], + [-66, 7], + [8, -56], + [-48, -96], + [-46, -33], + [-93, 5], + [-34, -40], + [-56, -6], + [-32, -34], + [-69, -36], + [-81, 52], + [-47, -36], + [-57, 11], + [-71, -12], + [-56, 27], + [-61, 73], + [-49, 25], + [-100, -50], + [-7, -40], + [-56, 18], + [-26, 46], + [-41, 2], + [-41, -27], + [-127, 63], + [-32, -1], + [-34, -40], + [15, -52], + [-26, -23], + [-212, 0], + [-69, -60], + [-32, -51], + [70, -23], + [9, -51], + [29, -26], + [-35, -33], + [-7, -119], + [-72, -150], + [-27, -103], + [-78, -47], + [-54, -60], + [4, -40], + [-34, -105], + [-58, -118], + [23, -46], + [-2, -52] + ], + [ + [11133, 19618], + [-74, -33], + [-17, -119], + [-54, -1], + [-80, 53], + [32, 74], + [-82, 44], + [-50, -28], + [-75, -1], + [-12, 63], + [-72, 108], + [-1, 55], + [19, 49], + [93, 53], + [25, -23], + [74, 45], + [33, 82], + [-7, 40], + [-54, 120], + [-116, 128], + [85, 81], + [-3, 80], + [64, 13], + [43, 35], + [32, 69], + [-41, 96], + [-72, -6], + [-58, 96], + [21, 92], + [62, 47], + [5, 49], + [74, 73], + [33, 95], + [-26, 148], + [-23, 50], + [-58, 65], + [41, 40], + [29, 72], + [116, 27], + [43, 28], + [24, 97], + [-51, 114], + [16, 88], + [20, 11] + ], + [ + [6565, 14970], + [-15, -35], + [4, -117], + [52, -80], + [31, -25], + [-71, -58], + [-45, 35], + [-43, -45], + [-80, -1], + [-39, -164], + [-49, -102], + [-1, -38], + [-55, -49], + [-27, -73], + [-78, -73], + [0, -33], + [-64, 7], + [-42, -21], + [-54, -70], + [-30, -81], + [-41, -36], + [0, -71], + [-32, -54], + [4, -56], + [-43, -19], + [-55, 14], + [-19, -44], + [20, -47], + [49, -25], + [-97, -41], + [10, -59], + [102, -101], + [60, -49], + [-11, -39], + [16, -84], + [-28, -34], + [-56, 28], + [-61, -54], + [-25, 33], + [-88, 46], + [-98, -28], + [-67, -56], + [22, -39], + [-17, -47], + [55, -90], + [57, -9], + [114, -139], + [52, 32], + [24, -15], + [-104, -64], + [-54, 16], + [-37, -110], + [-33, -59], + [-55, -36], + [-18, -41], + [9, -155], + [53, -77], + [41, -22], + [-81, -82], + [-14, -90], + [29, -79], + [4, -87], + [-17, -33], + [28, -123], + [-9, -29], + [-49, -17], + [-25, -52], + [0, -51], + [23, -179], + [39, -104] + ], + [ + [5536, 11390], + [-90, -2], + [-52, -25], + [-30, 27], + [-74, 0], + [-19, -36], + [55, -51], + [11, -40], + [-67, -10], + [-61, 35], + [-63, 78], + [-43, -1], + [-97, 44], + [-71, 4], + [-15, 25], + [-87, 0], + [-72, 36], + [-122, -17], + [-33, -52], + [-31, -15], + [-76, -2], + [-85, -55], + [-28, 26], + [-45, -19], + [-4, -160], + [-84, -75] + ], + [ + [4253, 11105], + [-51, 75], + [-42, 6], + [-109, 67], + [-57, 1], + [16, 85], + [-60, 78], + [8, 70], + [-25, 18], + [-13, 94], + [42, 31], + [120, 125], + [31, -5], + [87, 97], + [2, 74], + [90, 66], + [13, 44], + [79, 45], + [100, -37], + [29, 31], + [19, 84], + [45, 44], + [60, -2], + [63, 38], + [63, 73], + [-11, 62], + [-29, 27], + [-140, -7], + [58, 118], + [-22, 44], + [29, 38], + [5, 59], + [38, 2], + [22, 34], + [-57, 50], + [11, 48], + [76, 103], + [30, 80], + [-31, 28], + [23, 58], + [102, 115], + [9, 50], + [-43, 100], + [-84, 11], + [-23, 49], + [5, 67], + [-32, 51], + [33, 69], + [37, 17], + [32, 50], + [56, 15], + [47, 61], + [-33, 97], + [57, 40], + [15, 59], + [-59, 19], + [16, 71], + [-77, 52], + [-5, 64], + [-86, 8], + [-17, 37], + [28, 31], + [46, 116], + [-44, 12], + [-32, 61] + ], + [ + [4713, 14373], + [49, 50], + [56, 97], + [38, -39], + [70, -3], + [49, 57], + [111, 69], + [0, 44], + [-37, 140], + [75, 130], + [80, -25], + [33, -28], + [61, 13], + [40, 49], + [27, 111], + [79, 46], + [68, 9] + ], + [ + [5512, 15093], + [11, -57], + [188, -84], + [75, -12], + [27, -25], + [53, -3], + [44, -27], + [28, 32], + [52, -11], + [116, 28], + [193, -56], + [55, 40], + [41, 3], + [67, 50], + [103, -1] + ], + [ + [19290, 31772], + [53, 34], + [45, 6], + [83, -48], + [52, -81], + [70, -64], + [65, -15], + [5, -41], + [-32, -43], + [47, -110], + [147, -63], + [-4, -47], + [24, -25], + [73, -22], + [14, -36], + [50, -15], + [92, -49], + [69, -69], + [38, 76], + [47, 32], + [33, 71], + [50, 0], + [76, 58], + [134, -57], + [16, -43] + ], + [ + [20537, 31221], + [43, -38], + [42, -67], + [64, -73], + [36, 10], + [8, -80], + [52, -43], + [34, -100], + [60, -32], + [-17, -62], + [14, -63], + [-8, -75], + [41, -6], + [46, -37], + [5, -53], + [52, -37], + [-9, -62], + [49, -19], + [1, -76], + [-35, -54], + [35, -54], + [-3, -72] + ], + [ + [21047, 30128], + [-51, 22], + [-76, -20], + [-72, 42], + [-85, -24], + [2, -21], + [-143, -24], + [-94, -35], + [-14, -31], + [-72, -2], + [-5, 113], + [-137, 22], + [-45, -35], + [-91, 30], + [-52, -21], + [-51, 10], + [-84, 40], + [-69, 49], + [-51, -24], + [-62, 20], + [-51, -12], + [-139, -116], + [-90, -45], + [-3, -21], + [-111, -62], + [77, -74], + [2, -61], + [88, -68], + [-4, -120], + [-47, -37], + [-14, -74], + [-91, 2], + [-115, -39], + [-41, -51], + [-62, 2], + [-3, 26], + [-69, 1], + [-57, -16], + [-72, 22], + [-39, 32], + [-63, 12], + [-34, -63], + [-53, 11] + ], + [ + [18804, 29488], + [-70, 22], + [-33, -46], + [-51, -26], + [-35, 64], + [16, 50], + [-99, 47], + [-29, 50], + [24, 67], + [-55, 45], + [-80, 5], + [-55, 33], + [-6, 93], + [-26, 51], + [-121, 20], + [-15, 57], + [-33, 13], + [-61, -47], + [-269, -43], + [-31, 41], + [-5, 57], + [60, 112], + [-44, 67], + [-33, 76], + [5, 34], + [49, 66], + [31, 79], + [-56, 152], + [81, 56], + [-13, 35], + [-117, 8] + ], + [ + [17733, 30726], + [-4, 45], + [22, 43], + [-38, 71], + [38, 91], + [-35, 37], + [12, 39], + [48, 16], + [50, 61], + [9, 85], + [-39, 77], + [5, 48], + [-90, 8], + [4, -60], + [-71, -72], + [-30, -1], + [-33, 62], + [32, 30], + [21, 54], + [9, 78], + [-73, 39] + ], + [ + [17570, 31477], + [11, 70], + [36, 54], + [109, -25], + [77, 11], + [72, -11], + [62, 52], + [28, -25], + [72, 7], + [106, -99], + [43, -10], + [89, 9], + [67, -12], + [56, -47], + [76, -25], + [51, -87], + [-3, -67], + [37, -50], + [80, 33], + [-17, 28], + [37, 64], + [44, 23], + [41, 77], + [24, 14], + [-14, 97], + [59, 123], + [41, 35], + [-25, 138], + [74, 44], + [42, 67], + [76, 8], + [16, 28], + [115, -25], + [61, -59], + [7, -37], + [38, -32], + [-13, -67], + [45, -9] + ], + [ + [7669, 30985], + [10, -25], + [112, -5], + [13, -57], + [-14, -29], + [29, -75], + [-3, -52], + [18, -118], + [118, -48], + [33, -49], + [129, 19], + [34, -12] + ], + [ + [8148, 30534], + [64, -163], + [1, -41], + [-68, -77], + [-56, -100], + [-3, -101], + [-30, -63], + [37, -44], + [36, -79], + [44, 9], + [-1, -68], + [-66, -70], + [39, -40], + [50, 6], + [-24, -69], + [19, -27], + [86, -36], + [-34, -71], + [-33, -21] + ], + [ + [8209, 29479], + [-33, -29], + [49, -69], + [-60, -18], + [-94, -102], + [-64, -49], + [-79, -84], + [-27, -48], + [-61, -12], + [-51, 11], + [-88, -43], + [-69, -56], + [2, -103], + [-51, -43], + [-12, -39], + [-54, -25], + [-4, -52], + [-59, 16], + [-53, -22], + [11, -43], + [-68, -65], + [-25, -66], + [-56, 43], + [-49, 16], + [-83, -39], + [-74, -19], + [-82, 77], + [-42, 3], + [-34, 34], + [-66, -2], + [-17, 21], + [-68, 4], + [-62, 49], + [-103, 9], + [-67, -17], + [-7, -55], + [-94, 0], + [-68, 49], + [-46, -24], + [-124, 21], + [-35, 23], + [-74, -41], + [-33, 40], + [-34, -57], + [-41, 7], + [-51, -27], + [-164, 104], + [-107, 3], + [-15, -24], + [-77, -12], + [-43, -45], + [-59, 10], + [-100, -82], + [-23, 9] + ], + [ + [5321, 28616], + [-5, 75], + [31, 33], + [-22, 53], + [-43, 49], + [43, 53], + [-22, 68], + [15, 104], + [56, 21], + [35, 66], + [-25, 71], + [-45, 12], + [-45, 63], + [-81, 24], + [8, 79], + [39, 10], + [17, 83], + [29, 45], + [-101, 126], + [-24, 97], + [34, 46], + [-4, 66], + [-49, 143], + [-59, 6], + [20, 117], + [-32, 58], + [-52, 14], + [-26, 52], + [-1, 46], + [41, 28], + [73, -68], + [99, 18], + [87, -27], + [68, 25], + [49, -16], + [49, 68], + [76, 9], + [21, 52], + [87, 28], + [120, 3], + [54, 97], + [-20, 64], + [-18, 116], + [7, 87], + [74, 17], + [6, 43], + [41, 85], + [27, 12], + [32, 133], + [-38, 51], + [72, 29], + [18, 45], + [66, 3], + [91, -27], + [43, 31], + [-39, 83], + [25, 65], + [132, 36] + ], + [ + [6355, 31386], + [54, 12], + [52, -16], + [19, 51], + [68, 31], + [28, -48], + [36, -20], + [38, -58], + [87, 1], + [85, -25], + [17, -118], + [63, -71], + [51, -78], + [72, -42], + [28, 6], + [68, -49], + [53, 8], + [3, -41], + [89, 32], + [20, -52], + [94, -62], + [92, -3], + [56, 47], + [20, 52], + [84, -18], + [37, 60] + ], + [ + [5003, 26653], + [55, -55], + [-10, -155], + [36, -52], + [-27, -41], + [80, -63], + [66, -19], + [52, 11], + [34, -24], + [162, 30], + [45, -63], + [70, -36], + [70, 35], + [39, -35], + [89, -5], + [88, -59], + [70, 9] + ], + [ + [5922, 26131], + [40, -20], + [71, -108], + [-29, -35], + [30, -33], + [-10, -78], + [-80, -86], + [-29, -13], + [35, -76], + [48, -57], + [50, -7], + [52, -73], + [47, -34], + [91, -17], + [105, 43], + [47, -25], + [80, -211], + [63, 18], + [88, -2], + [88, 39], + [29, 39], + [-37, 45], + [28, 59], + [-18, 71], + [50, 8], + [31, -34], + [58, 8], + [94, -9], + [50, 47], + [41, 11], + [69, -37], + [55, -48], + [81, -27], + [37, -40], + [84, -19], + [80, 12], + [42, -23], + [-64, -89], + [62, -29], + [-1, -28], + [49, -53], + [35, -62], + [13, -90], + [-69, -11], + [-20, -55], + [73, -43], + [-29, -103], + [23, -66], + [-2, -171], + [-10, -34], + [25, -77], + [-21, -48], + [12, -127], + [-21, -33], + [29, -75], + [-16, -73], + [13, -90], + [-13, -43], + [-38, -41], + [-3, -41], + [-62, -44], + [-59, 22], + [-22, -46], + [-36, 9], + [-46, -109], + [-8, -49], + [14, -88], + [73, -18], + [104, 24], + [17, -38], + [44, -25], + [32, -43], + [67, -6] + ], + [ + [7628, 23526], + [31, -48], + [-63, -85], + [36, -37], + [26, -77], + [49, -21], + [23, -39] + ], + [ + [7730, 23219], + [-64, -81], + [-58, -152], + [-51, -13], + [-5, -96], + [-24, -49], + [-49, 34], + [-107, 14], + [-184, 13], + [-102, 43], + [-93, -93], + [-92, -39], + [-47, -53], + [-66, -23], + [-54, -35], + [-137, 20], + [-61, 55], + [-20, 42], + [-80, -55], + [-58, -7], + [-108, -32], + [-57, -29], + [-176, -32], + [-31, 13], + [-43, -25], + [-37, 56], + [-61, -51], + [-79, 19], + [-110, -40], + [-14, -18], + [-67, 15], + [-31, -19] + ], + [ + [5564, 22601], + [-33, 26], + [-3, 49], + [-94, 41], + [-16, 66], + [11, 53], + [-19, 44], + [-37, 15], + [-5, 53], + [29, 39], + [-10, 73], + [-84, -2], + [-36, 40], + [-22, 59], + [-57, 41], + [-66, 14], + [-33, 123], + [-34, 44], + [1, 33], + [-83, 37], + [-12, 137], + [-34, 46], + [-41, -14], + [-67, 46], + [-72, 6], + [-59, 34], + [-22, 49], + [-132, 96], + [-35, -7], + [-52, 49], + [-68, 24], + [-148, 117], + [-74, 36], + [-29, 60], + [-42, -6], + [-44, 41], + [-80, 41], + [-39, 37], + [-50, -8], + [-39, 33], + [-16, 54], + [10, 65], + [-62, 7], + [-60, 90], + [4, 38], + [-27, 49], + [-72, 55], + [-43, 63], + [-66, 179], + [-94, -21], + [-16, 65], + [12, 62], + [-24, 14], + [-65, 94], + [-142, 93], + [-47, 51], + [-41, 79], + [-79, 26], + [-92, 120], + [-8, 50], + [-36, 27], + [-22, 52], + [-63, 46], + [-20, 54], + [39, 65], + [-93, 95], + [60, 69], + [-28, 67], + [-36, 20], + [2, 60], + [-70, 43], + [13, 109], + [60, 64], + [-36, 32], + [-29, 55], + [-81, 58], + [-7, 48], + [22, 49], + [2, 53], + [28, 16], + [39, 77], + [-41, 75], + [-3, 57], + [33, 11], + [34, -33], + [48, -9], + [70, 16], + [4, 27], + [75, 81], + [62, 43], + [-24, 56], + [33, 35], + [86, -50], + [50, -4], + [171, -109], + [40, 49], + [-19, 65], + [-32, 28], + [51, 66], + [-16, 59], + [29, 37], + [39, -12], + [103, 47], + [42, 33], + [71, -32], + [78, -17], + [37, -29], + [0, -47], + [36, -30], + [65, 92], + [16, 74], + [10, 135], + [-7, 141], + [-25, 130], + [-44, 77], + [-23, 101], + [20, 38], + [25, 112] + ], + [ + [3744, 27971], + [40, 15], + [17, -40], + [92, -14], + [17, -39], + [52, 31], + [35, -42], + [24, -67], + [111, -130], + [36, -58], + [43, -38], + [-61, -51], + [168, -82], + [-15, -78], + [45, -25], + [43, -66], + [92, -91], + [62, -86], + [22, 5], + [91, -64], + [61, -91], + [-6, -46], + [75, -23], + [33, -58], + [66, 15], + [31, -13], + [25, -112], + [60, -70] + ], + [ + [17733, 30726], + [1, -93], + [-91, -44], + [-13, -78], + [-39, -31], + [-21, -54], + [-53, -67], + [-58, -32], + [-113, -23], + [-27, -50], + [-187, -59], + [26, -67], + [-65, -109], + [-55, -27], + [-19, -42], + [-69, -45], + [-3, -87], + [-80, -55], + [-65, -67], + [3, -61], + [-15, -110], + [13, -93], + [29, -61], + [-38, -35], + [27, -46], + [43, -24], + [-58, -138], + [23, -59], + [116, -67], + [-34, -32], + [48, -35], + [19, -89], + [-46, -100], + [40, -85], + [74, -69], + [-24, -152], + [38, -30], + [-4, -48] + ], + [ + [16594, 27945], + [-54, 20], + [-48, 49], + [-91, -12], + [-26, 58], + [-54, 44], + [26, 48], + [-58, 23], + [-37, -34], + [-95, 6], + [-80, 30], + [-37, -44], + [-53, -14], + [-140, 8], + [-69, 45], + [-92, -27], + [-80, 1], + [-120, -61], + [-117, 101], + [-67, 20], + [23, 62], + [-113, 117] + ], + [ + [13444, 30794], + [9, 24], + [64, 28], + [40, 128], + [2, 83] + ], + [ + [13559, 31057], + [150, 60], + [97, 27], + [34, 44], + [84, 14], + [133, 78], + [-6, 22], + [148, -28], + [48, 84], + [91, -33], + [11, 24], + [77, 65] + ], + [ + [14426, 31414], + [84, 1], + [22, 17], + [60, -44], + [95, 0], + [13, -28], + [88, -38], + [79, 11], + [43, 37], + [63, 19], + [16, 34], + [75, -3], + [73, -20], + [0, -30], + [66, -30], + [15, -58], + [45, -75], + [102, 0], + [167, -79], + [196, 39], + [135, -59], + [219, -37], + [16, 142], + [26, 75], + [54, 118], + [84, 138], + [32, 91], + [-39, 64] + ], + [ + [16255, 31699], + [32, 54], + [-3, 91], + [93, 115], + [23, -83], + [185, -97], + [55, -42], + [20, -54], + [68, -37], + [-56, -45], + [45, -58], + [-33, -63], + [4, -59], + [40, -83], + [93, 52], + [56, -4], + [80, -61], + [59, -67], + [107, 14], + [74, 22], + [55, 36], + [95, 41], + [42, 33], + [36, -3], + [69, 45], + [31, -4], + [45, 35] + ], + [ + [5166, 5671], + [45, -41], + [13, -50], + [71, -59], + [-9, -102], + [57, -83], + [49, -114], + [-38, -57], + [-90, 74], + [-49, 74], + [-69, 154], + [9, 66], + [-21, 55], + [2, 55], + [30, 28] + ], + [ + [5257, 5774], + [73, -23], + [54, 18], + [36, -39], + [30, -68], + [-37, -56], + [-7, -82], + [-76, 17], + [-23, -25], + [-75, 71], + [-19, 66], + [-43, 25], + [1, 86], + [86, 10] + ], + [ + [4357, 5984], + [23, -14], + [37, -82], + [-72, 25], + [12, 71] + ], + [ + [5200, 6233], + [34, -2], + [60, -38], + [56, 13], + [-5, -39], + [17, -12], + [-4, -12], + [8, -4], + [42, 17], + [35, -29], + [4, -88], + [-31, -40], + [-23, -83], + [-10, -80], + [-54, -57], + [-151, 34], + [-52, 124], + [-14, 52], + [26, 87], + [-32, 87], + [76, 16], + [18, 54] + ], + [ + [4914, 6244], + [55, -12], + [37, -95], + [-1, -97], + [-73, 104], + [-77, 60], + [9, 30], + [50, 10] + ], + [ + [5085, 6321], + [30, 0], + [59, -66], + [-35, -60], + [-46, -3], + [-34, 78], + [26, 51] + ], + [ + [5270, 6405], + [27, -28], + [-35, -65], + [-33, -10], + [17, 105], + [24, -2] + ], + [ + [5001, 6442], + [32, -24], + [19, -58], + [-48, -73], + [-24, 34], + [-27, 111], + [48, 10] + ], + [ + [5940, 7515], + [119, -61], + [8, -91], + [-61, -64], + [27, -75], + [-41, -89], + [-57, -35], + [29, -64], + [-8, -25], + [152, 9], + [118, -76], + [25, -68], + [9, -118], + [60, -110], + [-53, -49], + [-4, -79] + ], + [ + [6263, 6520], + [-40, -41], + [-49, 15], + [-35, -41], + [-71, -10], + [-92, -78], + [7, -62], + [-84, -83], + [50, -65], + [-17, -43], + [47, -4], + [-8, -55], + [-39, -43], + [3, -31], + [52, -19], + [15, -78], + [-12, -73], + [-79, -57] + ], + [ + [5911, 5752], + [-35, -16], + [-37, -41], + [-36, 21], + [-11, 42], + [-51, -31], + [-141, 89], + [-30, 66], + [-35, 33], + [-57, 20], + [-25, 121], + [-7, 75], + [-31, 26], + [-13, 1], + [-8, -7], + [-30, -10], + [-3, 19], + [-14, 10], + [8, 38], + [-66, -4], + [-36, 34], + [56, 145], + [-54, 61], + [-31, -59], + [-90, -51], + [-22, 33], + [-14, 68], + [-49, 45], + [-88, -15], + [-86, 143], + [45, 35], + [-115, 99], + [-1, 41], + [-119, -84], + [-51, 26], + [-45, -46], + [-33, -7], + [-36, 46], + [-81, 54], + [-83, -15], + [-70, 38], + [-27, 62], + [18, 37], + [-3, 64], + [35, 53], + [-50, 29], + [-8, 42], + [39, 68], + [-7, 53], + [-54, 103], + [-35, 38], + [-13, 66], + [-25, 32], + [7, 66], + [-80, -22], + [-92, -74], + [-87, 53], + [4, 50], + [33, 47], + [9, 70], + [-9, 45], + [100, 35], + [-73, 80], + [28, 28], + [26, 4], + [9, 13], + [-5, 70] + ], + [ + [4026, 7907], + [-33, 84], + [59, 78], + [14, 74], + [40, 105], + [48, 54], + [-10, 102] + ], + [ + [4144, 8404], + [56, -8], + [75, 124], + [44, -4], + [34, -41], + [73, -48], + [15, 42], + [132, -1], + [37, -67], + [98, -36], + [112, -138], + [34, -21], + [-7, -55], + [24, -25], + [4, -68], + [22, -43], + [-5, -61], + [-29, -83], + [28, -45], + [71, -24], + [79, -66], + [126, -79], + [72, -11], + [37, 10], + [149, 9], + [174, -66], + [87, -17], + [73, -55], + [94, -43], + [40, -3], + [47, 34] + ], + [ + [7173, 38359], + [-6, -56], + [51, -90], + [-32, -68], + [23, -90], + [-1, -92], + [29, -82], + [45, -85], + [0, -32], + [41, -71], + [45, -26], + [0, -46], + [49, -151], + [69, -28], + [73, 17], + [0, -38], + [39, -17], + [-7, -88], + [129, -34], + [51, -24], + [111, -24], + [43, -54], + [16, -48], + [158, -104], + [60, -26], + [52, 17], + [20, -31], + [68, -42], + [23, -50], + [-25, -66], + [15, -48], + [66, 29], + [79, -52] + ], + [ + [8457, 36759], + [35, -68], + [-75, -92], + [7, -129], + [24, -94], + [-19, -23], + [-17, -88], + [61, -71], + [-27, -41], + [4, -40], + [-32, -43], + [-33, 32], + [-45, -34], + [-62, -10], + [1, -114], + [-21, -53], + [-66, -88], + [-65, -121], + [-19, -55], + [-38, -29], + [-81, -23], + [-66, -92], + [-9, -63], + [-92, -134], + [-54, 9], + [-92, -23], + [-78, -108], + [-31, 5], + [-66, -65], + [-7, -41], + [-138, -165], + [-3, -60], + [-44, -33], + [-55, -103], + [-93, -17], + [-30, -52], + [-71, -14], + [-18, 41], + [-70, 15], + [-129, -72], + [28, -69], + [-93, -54], + [-21, -48], + [-108, -49], + [-116, -111], + [-27, -61], + [-138, -100], + [-41, -48], + [-13, -45], + [-57, -26], + [-23, -70], + [-49, -51], + [32, -21], + [5, -62], + [51, -17], + [48, -70], + [106, -6], + [18, 44], + [51, 37] + ], + [ + [6496, 33776], + [13, -170], + [-19, -32], + [-61, -34], + [-11, -86], + [26, -38], + [-88, 0], + [-39, -98], + [68, -32], + [-15, -31], + [21, -71], + [-50, -18], + [-6, -89], + [-38, -30], + [23, -75], + [55, -41], + [-9, -118], + [129, -81], + [15, -104], + [-63, -56], + [-14, -70], + [13, -75], + [-40, -3], + [-10, -64], + [-57, -29], + [-63, 1], + [-11, -32], + [-59, 4], + [-57, 107], + [-55, 42], + [-77, 15] + ], + [ + [6017, 32468], + [-38, 12], + [-19, 83], + [-32, 26], + [-46, 103], + [12, 91], + [-15, 52], + [-32, 14], + [-100, 1], + [-64, -71], + [10, -21], + [-108, -99], + [-62, 1], + [-36, 64], + [-61, 11], + [-39, -17], + [-71, 51], + [-29, -12], + [-61, 43], + [-26, -7], + [-50, 71], + [-54, 31], + [-105, 126], + [-108, 5], + [-38, 18], + [-16, 132], + [-47, 37] + ], + [ + [4782, 33213], + [-18, 79], + [13, 53], + [-64, 18], + [-26, 57], + [6, 44], + [68, 39], + [108, 0], + [25, 17], + [158, -29], + [58, -56], + [98, -8], + [40, 83], + [-12, 50], + [15, 87], + [64, 25], + [2, 106], + [55, 5], + [22, 71], + [37, 38], + [-41, 38], + [-19, 52], + [99, 24], + [72, -35], + [46, 8], + [-43, 99], + [68, 9], + [3, 24], + [-65, 54], + [-68, 89], + [-86, 28], + [9, 76], + [-64, 32], + [22, 64], + [-1, 53], + [-52, 81], + [-9, 47], + [-33, 49], + [6, 82], + [-16, 17], + [-7, 115], + [-39, 56], + [15, 38], + [-84, 114], + [-24, 68], + [24, 70], + [67, 2], + [36, 19], + [56, -9], + [32, 30], + [43, -40], + [33, 24], + [-10, 54], + [39, 55], + [78, 5], + [7, 43], + [47, 48], + [-3, 76], + [64, 36], + [27, 89], + [69, 27], + [50, 52], + [17, 88], + [45, 43], + [125, -17], + [62, 32], + [-5, 88] + ], + [ + [4782, 33213], + [-43, -21], + [-41, -48], + [-12, -56], + [-62, 56], + [-109, 3], + [-25, -34], + [-55, -1], + [-112, -49], + [-22, -33], + [-106, -15], + [-15, -32], + [-70, -59], + [-30, 44], + [13, 57], + [61, 52], + [2, 40], + [-28, 34], + [16, 32], + [1, 84], + [-27, 88], + [-28, 17], + [22, 113], + [-19, 26], + [38, 67], + [120, 44], + [27, 27], + [-19, 44], + [-114, 105], + [9, 39], + [-44, 47] + ], + [ + [14540, 35099], + [-13, -38], + [1, -103], + [-45, -7], + [-45, -35], + [-53, -175] + ], + [ + [14385, 34741], + [-4, -138], + [-42, -53], + [-10, -70], + [-32, 0], + [-8, -100], + [48, -163], + [33, -79], + [-13, -138], + [-34, -37], + [28, -47], + [-48, -10], + [-39, -107], + [25, -103], + [14, -111], + [46, -55], + [42, 21], + [82, -61] + ], + [ + [14473, 33490], + [69, -73], + [48, -115], + [43, -31], + [11, -100], + [-59, -94], + [-109, -61], + [-106, -43], + [-59, 27], + [-124, -2], + [-19, -64], + [23, -43], + [-33, -24], + [112, -108], + [-14, -48], + [13, -50], + [-61, -14], + [-25, -50], + [28, -49], + [52, -52], + [77, -45], + [59, -51], + [14, -110], + [-180, 32], + [-29, -33], + [61, -23], + [173, -5], + [-69, -64], + [-26, -46], + [-67, 32], + [1, -94], + [138, -33], + [23, -24], + [53, -4], + [42, -78], + [-9, -36], + [47, -30], + [26, -43], + [78, -43], + [-31, -43], + [-72, -24], + [-64, -4], + [-2, -45], + [-69, -61], + [-50, 4], + [-79, -41], + [49, -126], + [69, -44] + ], + [ + [13559, 31057], + [-174, -29], + [-25, 10], + [-44, 64], + [-61, 51], + [96, 50], + [-78, 56], + [-46, 85], + [29, 180], + [-30, 27], + [-19, 63], + [16, 33], + [-48, 63], + [-45, 91], + [-49, 43], + [-63, -124], + [-60, -10], + [-44, -34], + [-74, 30], + [-62, 166], + [-51, 7], + [-130, 98], + [-34, 5], + [-65, -59], + [-27, 1], + [-78, 57], + [-67, -38], + [-26, 27], + [-101, -13], + [-48, -34], + [-36, 53], + [-101, 3], + [-59, -9], + [-20, 30], + [-59, 33], + [-27, 52], + [-75, -24], + [10, -48], + [-57, -107], + [-41, -33], + [-13, -45], + [-89, -16], + [-55, -23], + [-22, -80], + [4, -173], + [-50, -113], + [-91, 29] + ], + [ + [11370, 31452], + [3, 62], + [-91, 9], + [-37, 25], + [68, 55], + [-30, 87], + [55, 109], + [-8, 119], + [53, 172], + [15, 14], + [18, 151], + [72, 66], + [3, 57], + [-48, 49], + [-29, 71], + [-102, 9], + [-70, 74], + [-34, 5], + [-21, 49], + [-55, 32], + [-63, 0], + [-48, -17], + [-105, 13], + [-21, 104], + [26, 87], + [-17, 120], + [-67, 39], + [-60, -41], + [-71, 12], + [-43, 32], + [-11, 37], + [32, 65], + [66, 40], + [23, 36], + [-37, 43], + [21, 60], + [54, 59], + [48, 15], + [44, -47], + [53, -22], + [80, 16] + ], + [ + [11036, 33318], + [105, -25], + [159, -59], + [4, -41], + [42, -8], + [57, -67], + [50, 17], + [54, -79], + [58, 12], + [99, -44], + [19, 68], + [47, 10], + [-6, 81], + [41, 18], + [107, 11], + [99, 171], + [140, 104], + [9, 46], + [128, 35], + [34, 43], + [65, 47], + [54, -38], + [17, 54], + [64, 33], + [-28, 32], + [84, 22], + [55, 57], + [84, -73], + [29, 82], + [64, 48], + [45, 6], + [34, 38], + [64, -14], + [-4, 52], + [-59, 36], + [39, 57], + [20, 77], + [26, 6], + [40, -48], + [44, 33], + [30, 83], + [97, 15], + [155, 45], + [46, -22], + [56, 46], + [-10, 71], + [67, 152], + [16, 87], + [30, 62], + [53, 47], + [33, -21], + [92, -19], + [167, -82], + [95, 21], + [45, 67], + [61, 58], + [30, 48], + [141, 89], + [99, 87], + [28, 97], + [132, 68], + [58, -18] + ], + [ + [12336, 27068], + [-15, -113], + [16, -144], + [-58, 15], + [-1, -145], + [85, -113], + [-13, -59], + [30, -81], + [4, -90], + [33, -68] + ], + [ + [12417, 26270], + [-37, -20], + [-72, 6], + [-39, 19], + [-36, -51], + [-10, -95], + [-47, -43], + [-89, -19], + [-65, 7], + [-20, -101], + [-29, -52], + [-33, -19], + [-85, 33], + [-57, -18], + [-49, 9], + [-87, -52], + [-71, -14], + [-126, 30], + [-73, -72], + [19, -29], + [-8, -57], + [-42, -31], + [70, -27], + [-63, -55], + [-16, -74], + [-91, 53], + [-81, 73], + [-90, -4], + [-26, 14], + [-43, -36], + [13, -44], + [-4, -100], + [41, -31], + [-23, -31], + [-59, -13], + [-89, 38], + [-43, 40], + [-40, 7], + [-49, -26], + [-43, 63], + [-54, 47], + [-88, 6], + [-16, -24], + [-121, 4], + [-69, 21], + [-9, -68], + [-52, -62], + [-39, -24], + [-79, -7], + [-89, -88], + [-163, 9], + [73, -112], + [-73, -65] + ], + [ + [9946, 25185], + [-61, 29], + [-89, -12], + [-14, 31], + [-105, -30], + [-14, 36] + ], + [ + [9537, 25355], + [29, 63], + [32, 27], + [-44, 33], + [-12, 76], + [13, 52], + [-28, 44], + [-22, 97], + [-65, 34], + [7, 58], + [-25, 26], + [-16, 92], + [68, 25], + [16, 62], + [-8, 58], + [40, 53], + [20, 77], + [-79, 27], + [-68, 47] + ], + [ + [9395, 26306], + [64, 98], + [64, 60], + [29, -13], + [110, 70], + [-19, 31], + [29, 65], + [54, 30], + [25, 51], + [52, 23], + [36, 46], + [73, 18], + [-11, 42], + [19, 42], + [-44, 22], + [15, 43], + [83, 34], + [32, 67], + [37, 26], + [-16, 44], + [52, 167], + [-9, 35], + [65, 38], + [63, 6], + [37, 26], + [109, 17], + [98, 33], + [21, 21], + [-5, 83], + [-56, 23], + [24, 49] + ], + [ + [10426, 27603], + [94, 4], + [56, -98], + [49, -25], + [41, 3], + [44, -26], + [130, 9], + [34, -29], + [127, -51], + [36, -71], + [57, -22], + [-6, -73], + [98, -62], + [44, -71], + [142, -4], + [67, 40], + [65, -42], + [75, -32], + [180, 7], + [157, 71], + [86, 23], + [89, 73], + [0, 79], + [-21, 110], + [26, 47], + [-12, 30], + [1, 111], + [-38, 41], + [38, 16], + [23, 83], + [64, 2], + [90, 20], + [29, -6] + ], + [ + [2279, 33494], + [-89, 53], + [-58, 54], + [-14, 56], + [-40, 37], + [-25, 104], + [-95, 175], + [-33, 45], + [19, 43], + [-42, 45], + [-40, 13], + [-110, -7], + [-59, -80], + [21, -42], + [-35, -30], + [-149, -71], + [-88, 22], + [-66, -28], + [-25, 22], + [-105, -20], + [-22, 14] + ], + [ + [1224, 33899], + [-82, 67], + [-47, 25], + [-32, 70], + [-53, 82], + [9, 50], + [44, 106], + [58, 48], + [75, 29], + [8, 78], + [-40, 105], + [-84, 129], + [-60, 133], + [-8, 134], + [-77, 49], + [-23, 39], + [-85, 84], + [-12, 78], + [66, 53], + [19, 49], + [-60, 85], + [-135, 57], + [-77, -18], + [-43, -128], + [-90, -55], + [-140, 124], + [-50, 80], + [-7, 58], + [31, 82], + [-35, 42], + [-36, 5], + [-32, 80], + [-45, 37], + [-28, 63], + [-23, 92], + [-45, 53], + [-42, 17], + [-33, 40], + [-10, 91], + [59, 33], + [-4, -80], + [71, -6], + [44, 16], + [66, -47], + [40, -115], + [62, -37], + [109, 42], + [51, -46], + [36, 16], + [58, -19], + [37, 107], + [56, -16], + [20, 31], + [98, 6], + [51, 30], + [6, 49], + [50, -10], + [47, 45], + [114, -22], + [85, 10], + [13, 28], + [84, -21], + [49, 6], + [19, 111], + [-13, 10], + [8, 97], + [-2, 111], + [-57, 81], + [0, 45], + [27, 61], + [-71, 188], + [15, 50], + [-10, 92], + [-77, 26], + [-138, 114], + [-4, 33], + [62, 14], + [55, 49], + [75, 22], + [14, 52], + [-5, 136], + [105, 11], + [-15, 61], + [45, 25], + [39, -5], + [56, 47], + [71, 11], + [14, 65], + [-16, 52], + [24, 27], + [-12, 71], + [17, 28], + [-1, 114], + [-80, 46], + [-18, 39], + [-84, 40], + [38, 45], + [82, -4], + [25, 56], + [-25, 73], + [-68, 64], + [13, 148], + [70, 72], + [1, 26], + [137, 148], + [41, 21], + [-94, 86], + [17, 123], + [61, 15], + [35, -12], + [87, 24], + [69, 34], + [23, -11], + [77, 25], + [-10, 54], + [34, 51], + [56, -21], + [111, 25], + [15, 64], + [-32, 16], + [-12, 47], + [18, 37], + [-27, 60], + [37, 113], + [-13, 66], + [42, 70], + [26, -25], + [81, 20], + [48, -103], + [38, 1], + [73, 38], + [43, -34], + [101, -42], + [26, -58], + [96, -41], + [43, -37], + [-20, -34], + [54, -62], + [65, 20], + [85, -4], + [81, 43], + [124, -12], + [94, 28], + [59, -31], + [144, 10], + [18, -12] + ], + [ + [18804, 29488], + [-47, -33], + [5, -41], + [-28, -76], + [-53, -46], + [-31, -131], + [53, -101], + [-30, -71], + [10, -139], + [45, -51], + [6, -70], + [-68, -51], + [-1, -40], + [-39, -71], + [-23, -97], + [9, -97], + [-42, -70], + [0, -49], + [-21, -100], + [-18, -20], + [-72, -12], + [-121, 46], + [-45, -45], + [-94, -18], + [-96, -104], + [73, -10], + [7, -39], + [-44, -93], + [10, -52], + [43, -63], + [1, -33], + [87, -42], + [71, -18], + [16, -40], + [46, 28], + [116, 7], + [23, -36], + [-2, -73], + [-18, -24], + [-48, -156] + ], + [ + [18484, 27357], + [-63, -20], + [-45, -41], + [-58, -10], + [-225, 39], + [-60, 69], + [-62, -2], + [-18, 21], + [-281, 68], + [-62, 5] + ], + [ + [22558, 31177], + [59, -140], + [21, -22], + [-1, -74], + [14, -87], + [-58, -145], + [-11, -108], + [-21, -77], + [5, -64], + [23, -48], + [83, -89], + [63, -39], + [150, -72], + [65, -94], + [1, -53], + [71, -100], + [3, -39], + [44, -48], + [95, -34], + [84, -101], + [59, -33] + ], + [ + [22664, 29476], + [-71, 20], + [-87, 4], + [-71, 31], + [-64, 44], + [-133, -56], + [-78, 41], + [-5, 34], + [-71, 23], + [-9, 53], + [-73, 109], + [-54, 39], + [-59, -6], + [-37, 72], + [-82, 0], + [-246, 21], + [-65, -15], + [-67, -53] + ], + [ + [21392, 29837], + [-65, 40], + [-41, 143], + [9, 79], + [-26, 93], + [-62, 55], + [-11, -53], + [-54, -44], + [-95, -22] + ], + [ + [20537, 31221], + [110, 45], + [53, 61], + [6, 78], + [104, 5], + [103, -36], + [40, -3], + [23, 36], + [72, 9], + [45, 42] + ], + [ + [21093, 31458], + [27, -67], + [79, -70], + [46, 77], + [103, 52], + [89, -43], + [118, -20], + [25, 34], + [84, -52], + [13, -22], + [73, 3], + [65, -45], + [132, 42], + [90, -9], + [75, 7], + [125, -7], + [28, -38], + [1, -71], + [89, -105], + [84, 76], + [20, 37], + [38, 3], + [61, -63] + ], + [ + [12480, 24446], + [134, -70], + [23, -55], + [41, -34], + [23, -64], + [-17, -32], + [-5, -87], + [-103, -12], + [-44, -23], + [-113, -1], + [-47, 49], + [-56, -44], + [16, -63], + [-35, -80], + [-80, -19], + [-108, -92], + [-62, -31], + [-11, -59], + [50, -35], + [13, -62], + [35, -39], + [-108, -91], + [-76, 30], + [-107, -26], + [-32, 8], + [-60, -92], + [-88, -53], + [-60, -18], + [-24, -77] + ], + [ + [10898, 23248], + [1, 342], + [-5, 102], + [4, 273], + [97, 55], + [17, 101] + ], + [ + [11012, 24121], + [-19, 42], + [13, 55], + [120, -28], + [93, 15], + [22, 36], + [94, 78], + [18, 93], + [-26, 39], + [5, 52], + [47, -16], + [12, -39], + [48, -25], + [71, 6], + [101, -30], + [28, -65], + [60, -7], + [29, 53], + [68, 12], + [11, 22], + [-30, 66], + [27, 32], + [4, 61], + [59, 50], + [-12, 56], + [41, 17] + ], + [ + [11896, 24696], + [12, 29], + [100, 62], + [20, -30], + [48, -12], + [36, -70], + [62, -18], + [147, -88], + [130, -140], + [29, 17] + ], + [ + [8960, 23710], + [-19, -152], + [-3, -108], + [-22, -65], + [30, -78], + [69, -49], + [-102, -117], + [33, -20], + [134, -255] + ], + [ + [9117, 22618], + [-23, -30], + [-115, -33], + [-9, -49], + [-175, -66], + [-36, 44], + [-120, -11], + [-29, 19], + [-96, -18], + [-66, -75], + [-55, -20], + [-85, 8] + ], + [ + [8308, 22387], + [1, 126], + [-97, -11], + [-28, 29], + [-11, 60], + [26, 60], + [-10, 23], + [-84, -47], + [-143, -13], + [-35, 42], + [-5, 37], + [40, 43], + [29, 104], + [2, 42], + [-65, 6], + [-25, 36], + [-77, 10], + [12, 71], + [-33, 77], + [42, 17], + [34, 80], + [-23, 20], + [-71, -5], + [-57, 25] + ], + [ + [7628, 23526], + [79, 36], + [109, 118], + [70, 14], + [40, 44], + [72, -1], + [352, 35], + [157, -4], + [73, 58], + [181, 44], + [85, 75] + ], + [ + [8846, 23945], + [12, -99], + [115, -12], + [-13, -124] + ], + [ + [21093, 31458], + [48, 40], + [105, 22], + [52, 106], + [49, 38], + [47, 11], + [12, 49], + [130, 57], + [-5, 37], + [-135, 71], + [29, 98], + [71, 51], + [47, 57], + [-35, 34], + [8, 86], + [40, 39], + [44, 83], + [50, 51], + [-89, 109], + [-10, 76], + [43, 20], + [19, 71], + [-32, 51], + [-17, 64], + [25, 45], + [-3, 91], + [-119, -11], + [-103, 3], + [-29, 13], + [-139, 4], + [-105, -46], + [-63, -4], + [-82, 26], + [-141, -19], + [-14, -58], + [-67, -43], + [-16, 43], + [-63, 21], + [-44, -57], + [-59, -10], + [-44, 33], + [-46, 66], + [-39, 83], + [-35, 34], + [-27, 85], + [32, 2], + [59, 123], + [-15, 79], + [51, 35], + [8, 53], + [-71, 75], + [21, 57], + [59, 6], + [44, 35], + [-13, 100], + [32, 15], + [-33, 55], + [4, 52], + [-51, 41], + [19, 24], + [-60, 33], + [-49, 1], + [-36, 64], + [21, 47] + ], + [ + [20898, 34567], + [88, -88], + [58, -116], + [71, -165], + [46, -90], + [27, -27], + [78, -36], + [114, -34], + [49, -48], + [27, -60], + [58, -72], + [24, -58], + [57, -78], + [57, -54], + [58, -84], + [48, -33], + [200, -76], + [147, -79], + [52, -37], + [41, -6], + [119, -77], + [126, -61], + [46, -47], + [122, -181], + [59, -42], + [62, -76], + [31, -64], + [12, -223], + [-7, -58], + [6, -146], + [-67, -262], + [-47, -145], + [-94, -136], + [-20, -113], + [10, -96], + [-6, -47], + [15, -120], + [64, -141], + [-71, -114] + ], + [ + [15531, 23784], + [-28, 15], + [-68, -33], + [-61, 4], + [-50, 49], + [-19, -92], + [-76, -31], + [-18, 20], + [-55, -19], + [-59, 39], + [-47, -17], + [-20, 50], + [-59, -17], + [-86, 9], + [-27, 29], + [4, 46], + [-63, 67], + [-50, -14], + [-26, -49], + [2, -81], + [-46, -16], + [-65, 4], + [-76, 33] + ], + [ + [14538, 23780], + [-117, 44], + [-98, 80], + [-65, 17], + [-141, 70], + [58, 40], + [-97, 21], + [47, 31], + [35, 65], + [50, 18], + [-12, 67], + [-111, 14], + [-52, -38], + [-37, 62], + [-107, 9], + [-54, -19], + [-55, 50], + [-59, 29], + [-88, -11], + [-69, 32], + [-27, -23], + [-99, -30], + [11, -44], + [-29, -47], + [-90, 68], + [-57, 64], + [-118, 104], + [-34, 43], + [-41, -2], + [-23, 57], + [-51, 24], + [-62, 6], + [-114, -7], + [-41, -31], + [-75, 28], + [-73, 79], + [-80, -17], + [-71, -31], + [33, -65], + [-45, -91] + ], + [ + [11896, 24696], + [-91, 108], + [-82, 44], + [-9, 37], + [37, 28], + [64, 96], + [-31, 47], + [12, 61], + [-25, 108], + [2, 56], + [-40, 64], + [44, 136], + [91, -79], + [93, -3], + [35, -17], + [90, 42], + [14, 49], + [51, 0], + [43, 39], + [-10, 29], + [47, 34], + [138, 66], + [60, 72], + [109, 39], + [7, 59], + [-18, 81], + [-53, 137], + [9, 26], + [-38, 100], + [-28, 115] + ], + [ + [10458, 28932], + [43, -46], + [-55, -124], + [-7, -76], + [30, -37], + [92, -27], + [22, -22], + [-5, -98], + [-37, -55], + [66, -201], + [0, -113], + [82, -16], + [-1, -57], + [-56, -31], + [-2, -84], + [-24, -45], + [21, -45], + [-49, -58], + [25, -26], + [-41, -78], + [-45, -49], + [-63, -11], + [-28, -30] + ], + [ + [9395, 26306], + [-125, 101], + [-85, 22], + [-32, 27] + ], + [ + [8418, 27311], + [-75, 24], + [-62, -6], + [26, 95], + [-51, 6], + [-70, 70], + [0, 55], + [-56, -2], + [5, -41], + [-55, 4], + [-93, 34], + [-41, -11], + [-22, 93], + [7, 110], + [-13, 68], + [16, 60], + [-26, 154], + [-26, 5], + [-184, -55], + [-13, -104], + [-159, 59], + [-63, 38], + [-74, 25], + [-20, 25], + [-88, 51], + [-73, -6], + [-111, -47], + [-28, 0], + [-45, -47], + [-79, -48], + [-74, -20], + [-69, -60], + [-22, -38], + [-49, -15], + [-110, -72], + [-58, 19], + [-75, -8], + [-5, 47], + [-56, 17], + [-74, 44], + [-15, 24], + [-130, 30], + [-35, 78], + [5, 30], + [-43, 47], + [-65, 29], + [-114, 7], + [-59, 64], + [-87, 15], + [-23, 54], + [-74, 69], + [-208, 83], + [-38, -6] + ], + [ + [5467, 28358], + [-38, 58], + [-48, 12], + [-39, 50], + [5, 96], + [-26, 42] + ], + [ + [8209, 29479], + [37, -12], + [32, -43], + [72, -10], + [40, -56], + [-43, -77], + [51, -38], + [-3, -32], + [59, -54], + [12, -93], + [96, -162], + [38, -23], + [-2, -55], + [45, -35], + [-7, -28], + [90, -10], + [73, -39], + [24, 29], + [13, 76], + [68, -2], + [20, -50], + [172, 83], + [1, 36], + [67, -23], + [-48, -96], + [57, -14], + [67, 15], + [147, -35], + [146, -4], + [121, 15], + [74, 28], + [-5, -59], + [115, 62], + [45, 51], + [74, 20], + [157, 60], + [67, -3], + [88, 22], + [57, -21], + [132, 30] + ], + [ + [9131, 6453], + [-50, -6], + [-39, -44], + [-185, 7], + [-10, -32], + [-63, -31], + [-136, -31], + [-106, -36] + ], + [ + [8542, 6280], + [-143, -21], + [-126, -72], + [-179, 53], + [-51, 30], + [-46, 53], + [-58, 14], + [-77, -23], + [-77, 32], + [-227, -24], + [-46, 15], + [-42, -69], + [-30, -24], + [-58, 9], + [-84, -12] + ], + [ + [7298, 6241], + [15, 65], + [-24, 18], + [32, 61], + [-28, 107], + [63, 31], + [-8, 62], + [-67, 49], + [-82, -18], + [-142, 64], + [-80, -9], + [-46, -52], + [-40, -17], + [-24, -64], + [-47, -49], + [-31, 1], + [-23, -58], + [-45, -18], + [-48, -111], + [-53, -8], + [-24, 20], + [-76, -5], + [-28, 67], + [-109, -84], + [-51, 26], + [2, 193], + [-71, 8] + ], + [ + [5940, 7515], + [-28, 17], + [-2, 51], + [-127, 90], + [-17, 77], + [34, 24], + [43, 110], + [57, 47], + [96, 60], + [8, 22], + [62, 24], + [19, 55], + [68, -55], + [50, 41], + [53, 8], + [44, 33], + [-13, 65], + [79, 81], + [29, 48], + [46, 7], + [-23, 84], + [45, 49], + [47, 22], + [58, 80], + [-16, 27], + [88, 62], + [15, 27], + [13, 92], + [-21, 7], + [-2, 86], + [13, 42], + [-28, 69], + [67, 49], + [62, -1], + [-8, 69], + [52, 45], + [24, 70], + [103, 27], + [51, -38], + [60, 24], + [136, 37], + [-22, 65], + [20, 46], + [53, -13], + [57, 70], + [5, 50], + [33, 38], + [-13, 29], + [19, 70], + [-7, 233], + [-52, 18], + [39, 58], + [-1, 76], + [43, 52], + [-19, 186], + [45, 45], + [24, 57] + ], + [ + [7401, 10329], + [55, -35], + [91, -36], + [60, 18], + [37, -142], + [30, 0], + [67, -125], + [-22, -63], + [2, -123], + [16, -38], + [36, -8], + [53, -74], + [14, -215], + [30, -38], + [-26, -47], + [-6, -109], + [10, -147], + [21, -144], + [34, -161], + [8, -112], + [46, -325], + [20, -57], + [62, -69], + [67, 3], + [132, -181], + [90, -230], + [46, -75], + [109, -40], + [41, -29], + [89, -13], + [-33, 71], + [-24, 87], + [46, 110], + [-11, 55], + [29, 9], + [74, -69], + [76, -123], + [124, -320], + [81, -279], + [40, -181], + [99, -555], + [17, -66] + ], + [ + [11427, 35565], + [-36, -65], + [-53, -2], + [-43, -46], + [-45, -18], + [-89, -66], + [-52, -7], + [-60, -82], + [-70, -63], + [-43, -12], + [-41, -65], + [39, -46], + [-53, -49], + [-6, -46], + [17, -55], + [-123, -62], + [11, -45], + [-39, -24], + [-65, -85], + [-91, -4], + [-31, -66], + [-81, -70], + [-125, -2], + [-26, 10], + [-104, -16], + [-70, 44], + [-53, -7], + [-122, 28], + [-112, -38], + [-75, -7], + [-23, -48], + [-209, 24], + [-104, -7], + [-54, -26], + [-24, 24] + ], + [ + [9372, 34566], + [8, 25], + [-41, 95], + [20, 30], + [-40, 27], + [10, 39], + [-25, 54], + [18, 50], + [50, 43], + [84, 5], + [55, 112], + [-17, 57], + [67, 139], + [55, 43], + [-42, 112], + [46, 89], + [32, 29], + [24, 72], + [70, 7], + [45, 86], + [-2, 80], + [-28, 109], + [-75, -38], + [-68, -4], + [-53, 55], + [-51, -8], + [-75, 26], + [-55, -44], + [-55, 3], + [-40, 75], + [25, 54], + [-22, 73], + [-44, 21], + [25, 157], + [18, 49], + [-57, -2], + [-29, 28], + [-22, 86], + [37, 79], + [24, 9], + [60, 81], + [-102, 30], + [-4, 92], + [-60, 8], + [9, 50] + ], + [ + [9147, 36749], + [-1, 57], + [79, 76], + [3, 53], + [59, 49], + [14, 100], + [96, 60], + [18, 54], + [-27, 44], + [59, 68], + [11, 54], + [54, 79], + [102, -5], + [1, -46], + [63, -31], + [-34, -48], + [27, -28], + [103, -3], + [-14, 120], + [46, 13], + [22, -34], + [59, -4], + [68, -29], + [44, 36], + [-23, 34], + [-80, 34], + [-65, 47], + [35, 86], + [28, -26], + [50, 24], + [83, -12], + [57, 51], + [-27, 23], + [-60, 151], + [9, 50], + [-15, 76], + [-49, 70], + [34, 104], + [-17, 49], + [-131, 10], + [-8, 80], + [-89, 61], + [13, 29], + [-46, 45], + [5, 56], + [56, 26], + [74, 54], + [1, 50], + [57, 83] + ], + [ + [9891, 38639], + [47, 37], + [11, 85], + [44, 67], + [105, 15], + [145, -62], + [91, -22], + [156, -95], + [34, 48], + [78, 43], + [96, 120], + [36, 14], + [71, 94], + [21, 68], + [85, -27], + [122, 9], + [50, -16], + [24, 22], + [98, -20], + [28, 27], + [120, -30], + [12, -38], + [71, -22], + [6, -28], + [76, -10], + [18, -31], + [54, 18], + [82, 7], + [94, -13], + [30, 80], + [110, -6], + [115, -61], + [18, -34], + [-40, -56], + [33, -64], + [-43, -41], + [-14, -115], + [-90, 17], + [-82, -11], + [-14, -41], + [29, -73], + [-50, -71], + [-35, -16], + [10, -63], + [45, -76], + [75, -14], + [26, -42], + [-34, -60], + [38, -67], + [45, -178], + [-28, -111], + [37, -100], + [-2, -58], + [86, -39], + [37, -44], + [92, -61], + [41, -8], + [50, -57], + [-66, -127], + [-77, -5], + [-48, -55], + [-7, -43], + [16, -65], + [-69, -37], + [1, -36], + [-63, -31], + [-26, -50], + [26, -63], + [-2, -42], + [-33, -53], + [28, -63], + [-9, -87], + [-32, -38], + [-4, -45], + [-41, -43], + [32, -58], + [45, -4], + [54, -31], + [-31, -84], + [-49, -78], + [-84, -53], + [-96, -29], + [-5, -61], + [20, -28], + [-11, -53], + [-106, -24], + [-28, -65], + [-108, -20], + [-36, -61], + [6, -44], + [-121, -115], + [14, -56], + [70, -60], + [16, -57] + ], + [ + [13369, 2677], + [103, -142], + [126, -154], + [57, -56], + [43, -14], + [73, -50], + [59, -12], + [126, -137], + [108, -98], + [146, -100], + [262, -158], + [15, -28], + [-33, -30], + [-10, -96], + [23, -90], + [25, -34], + [-31, -28], + [-34, -68], + [-28, -22], + [-32, -71], + [-149, -81], + [-97, -85], + [2, -38], + [-91, -67], + [6, -70], + [-41, -19], + [-1, -45], + [-27, -41], + [43, -54], + [24, -77], + [-81, -80], + [-67, 2], + [-34, -18], + [-20, -51], + [-91, -79], + [-45, -3], + [-33, -71], + [6, -67], + [-29, -8], + [-96, 75], + [-18, 50], + [-42, 42], + [-46, -1], + [-94, -46], + [-16, -51], + [-30, -5], + [-28, 59], + [-53, 42], + [-36, 53], + [2, 131], + [-17, 33], + [-71, 15], + [-66, 90], + [-88, 57], + [-62, -25], + [-79, -15], + [-118, -70] + ], + [ + [12684, 771], + [-29, 20], + [1, 141], + [-45, 87], + [5, 198], + [-38, 76], + [-58, 5], + [-29, 44], + [11, 33], + [-44, 90], + [-44, 40], + [-73, 27], + [-15, 68], + [-35, 53], + [65, 34], + [31, 47], + [-23, 18], + [22, 71], + [-28, 83], + [19, 49], + [-32, 26], + [24, 85], + [61, 40], + [3, 80], + [18, 59], + [31, 19], + [108, 0], + [-22, 72], + [6, 31], + [63, -6], + [166, -60], + [32, 37], + [-51, 37], + [40, 40], + [45, 15], + [93, 86], + [51, 72], + [-47, 57] + ], + [ + [12966, 2645], + [12, 44], + [-70, 51], + [12, 53], + [88, 36], + [74, -5], + [26, -27], + [41, 18], + [22, -43], + [-2, -46], + [32, -58], + [124, -15], + [44, 24] + ], + [ + [14473, 33490], + [57, 31], + [51, -38], + [26, 7], + [61, 76], + [73, -2], + [38, 13], + [101, -19], + [90, 15], + [46, -15], + [56, 36], + [113, 15], + [26, -237], + [22, -42], + [-3, -70], + [81, -100], + [39, -69], + [70, -191], + [105, -174], + [40, -100], + [-9, -122], + [209, 15], + [173, -51], + [86, -5], + [-8, -44], + [-53, -60], + [-69, -17], + [-89, -41], + [-145, -21], + [29, -64], + [54, -65], + [66, -165], + [70, -86], + [86, -64], + [95, -38], + [115, -73], + [80, -26] + ], + [ + [18501, 34480], + [-36, -36], + [-9, -54], + [59, -24], + [16, -47], + [-42, -27], + [1, -53] + ], + [ + [18490, 34239], + [-63, -49], + [-97, -29], + [-41, 22], + [-99, -47], + [30, -74], + [-52, -33], + [-75, 55], + [-42, 73], + [-45, 38], + [-49, -8], + [-81, -54], + [-39, -1], + [-48, -73], + [-17, -91], + [-50, -11], + [-51, 64], + [-14, 48], + [-44, 49], + [-36, -4], + [-70, 65], + [-39, -16], + [-158, -6], + [-94, -129], + [-38, -22], + [-32, 29], + [-11, 60], + [-84, 104], + [-88, -13], + [-46, 29], + [-42, -29], + [11, -83], + [-29, -36], + [-60, -22], + [-27, -47], + [51, -132], + [-16, -32], + [6, -65], + [-15, -44], + [-36, -16], + [-11, -60], + [-44, -19], + [-93, -11], + [-62, -104], + [3, -71], + [-86, -6], + [-17, -37], + [-60, 6], + [-44, 38], + [-74, -39], + [-17, -27], + [-62, -8], + [-6, 60], + [-151, 38], + [16, 67], + [-20, 56], + [57, 40], + [-80, 43], + [-154, 120], + [-38, 49], + [-173, -28], + [-85, 40], + [-27, 114], + [-26, 38], + [-72, 65], + [4, 83], + [-41, 64], + [-70, 27], + [-19, 31], + [-70, 43], + [-38, 7], + [-76, 73], + [-40, 80], + [-35, -32], + [-92, 37], + [-68, 40], + [-148, 28], + [-43, -78], + [-59, 51], + [12, 72], + [-54, 1], + [-42, 28], + [-14, 50], + [-66, -12], + [-90, 75] + ], + [ + [14540, 35099], + [82, 7], + [31, -26], + [61, -8], + [60, -144], + [46, -46], + [59, -29], + [78, -62], + [23, -38], + [115, -95], + [70, -23], + [110, -7], + [50, -27], + [186, -131], + [96, -40], + [91, -18], + [66, 12], + [58, -20], + [91, 14], + [139, -32], + [29, -60], + [10, -67], + [-26, -78], + [-52, -84], + [39, -55], + [96, -4], + [81, -59], + [75, -19], + [33, 61], + [-56, 53], + [26, 64], + [42, 23], + [127, 24], + [57, 28], + [82, 109], + [121, 33], + [102, 74], + [147, 33], + [94, 47], + [64, 9], + [59, -12], + [118, -80], + [59, 16], + [55, 52], + [70, 88], + [12, 65], + [-24, 60], + [24, 137], + [33, 32], + [132, 67], + [39, 36], + [23, 92], + [-17, 75], + [64, 79], + [95, 25], + [107, 43], + [126, 25], + [63, 35] + ], + [ + [8960, 23710], + [51, 40], + [114, -33], + [32, -36] + ], + [ + [9157, 23681], + [-38, -168], + [16, -51], + [55, -103], + [37, -25], + [67, 5], + [132, -31], + [62, -38], + [32, 11], + [95, -87], + [94, 5], + [63, 31], + [56, -10] + ], + [ + [9157, 23681], + [300, -3], + [108, -8], + [58, 14], + [56, 32], + [101, -43], + [46, 26], + [173, 56], + [240, 117], + [258, 117], + [125, 50] + ], + [ + [10622, 24039], + [205, 86], + [6, -84], + [179, 80] + ], + [ + [12966, 2645], + [-76, -41], + [-99, 15], + [-53, 56], + [10, 35], + [-41, 39], + [-51, 5], + [-46, -29], + [-55, 3], + [-44, -37], + [-53, 37], + [-111, -75], + [-31, 3], + [-122, -42], + [-65, 40], + [-42, -1], + [-36, 92], + [-1, 41], + [32, 17], + [-13, 66], + [-45, 68], + [-35, -40], + [-61, -23], + [-42, -39], + [-22, -49], + [-52, -56], + [-163, 21], + [-37, 20], + [-49, -4], + [-78, 54] + ], + [ + [11485, 2821], + [-68, 39], + [-83, 80], + [10, 39], + [-12, 83], + [-114, 24], + [37, 61], + [-11, 93], + [42, 48], + [43, 21], + [26, 63], + [-68, 43], + [61, 42] + ], + [ + [11348, 3457], + [120, 13], + [182, 0], + [145, 30], + [79, 38], + [40, 44], + [44, 3], + [57, -53], + [38, -14], + [49, 22], + [60, -45], + [45, 42], + [-6, 70], + [49, -19], + [205, -46], + [61, -3], + [228, -72], + [19, 12], + [56, -52], + [59, -28], + [199, -314], + [33, -25], + [83, -135], + [176, -248] + ], + [ + [3653, 6925], + [99, -67], + [41, -2], + [21, -50], + [47, -40], + [-32, -72], + [10, -67], + [28, -41], + [-3, -98], + [-34, -87], + [-27, -10], + [-44, 41], + [-39, 98], + [21, 48], + [47, 46], + [1, 62], + [-64, 54], + [-45, 4], + [-19, 51], + [-43, 47], + [-19, 49], + [54, 34] + ], + [ + [3939, 7162], + [-2, -104], + [-52, -143], + [-53, 12], + [-26, -19], + [-80, 51], + [65, 13], + [40, 100], + [108, 90] + ], + [ + [3453, 7643], + [-12, -75], + [-27, 6], + [13, 35], + [-10, 27], + [-16, 18], + [-6, 18], + [35, 2], + [23, -31] + ], + [ + [2821, 9468], + [121, -44], + [44, -44], + [-45, -100], + [-40, -19], + [-29, -55], + [-11, -71], + [-41, -74], + [-17, 62], + [-46, 63], + [41, 74], + [-4, 115], + [-26, 87], + [53, 6] + ], + [ + [2883, 9897], + [61, -104], + [41, -34], + [34, -105], + [-21, -39], + [-121, -98], + [-128, 1], + [17, 108], + [-8, 156], + [38, 40], + [-3, 66], + [90, 9] + ], + [ + [2959, 9905], + [72, -62], + [-22, -61], + [-60, 74], + [10, 49] + ], + [ + [2954, 10147], + [-33, -87], + [-41, -44], + [18, -26], + [-33, -59], + [-62, -25], + [1, 98], + [25, -2], + [79, 105], + [46, 40] + ], + [ + [3542, 10290], + [64, -34], + [-7, -28], + [18, -89], + [-22, -56], + [-71, -63], + [-23, -67], + [29, -96], + [-57, -12], + [9, -92], + [23, -97], + [-64, -47], + [2, -42], + [48, -80], + [48, -58], + [-31, -41], + [-135, -53], + [14, -83], + [-3, -56], + [-27, -57], + [86, -16], + [101, -30], + [22, -52], + [62, -4], + [63, -126], + [134, -47], + [-14, -237], + [-38, -25], + [-35, -58], + [-74, -23], + [-29, -35], + [87, -65], + [64, -27], + [150, 40], + [39, 45], + [81, 6], + [62, -45], + [26, -36] + ], + [ + [4026, 7907], + [-2, -76], + [-34, -4], + [-29, -32], + [45, -66], + [-9, -18], + [-97, -8], + [-23, 58], + [-67, -65], + [-6, -47], + [-64, -4], + [-116, -73], + [-66, -15], + [-97, 59], + [-1, 27], + [-25, 32], + [-39, 4], + [-4, -16], + [3, -22], + [7, -58], + [40, -30], + [-96, -16], + [11, -37], + [39, -31], + [-3, -86], + [34, -128], + [-74, -82], + [-26, -76], + [24, -33], + [-48, -43], + [-16, 57], + [-30, 17], + [-75, -99], + [-42, 34], + [-8, 48], + [-36, 91], + [-75, -23], + [-34, 43], + [-91, 32], + [-37, -8], + [0, 114], + [-38, 168], + [-69, 258], + [-34, 100], + [-44, 187], + [-48, 155], + [53, 62], + [46, 20], + [11, 35], + [-24, 76], + [30, 11], + [10, 63], + [-16, 47], + [-21, 179], + [47, 27], + [34, 54], + [-8, 106], + [15, 52], + [1, 110], + [27, 15], + [50, 81], + [-1, 69], + [29, 51], + [33, 19], + [40, 78], + [36, 18], + [80, -51], + [78, -81], + [-48, 124], + [-34, 21], + [8, 58], + [-83, 15], + [-49, 68], + [29, 57], + [76, 46], + [80, 16], + [-79, 63], + [-33, 56], + [-9, 92], + [-63, 87], + [-5, 52], + [33, 58], + [55, -2], + [61, -25], + [0, 41], + [-59, 23], + [95, 157], + [10, 80], + [35, 74] + ], + [ + [3196, 10397], + [35, 9], + [38, -29], + [83, 33], + [29, -11], + [51, -75], + [44, -37], + [66, 3] + ], + [ + [8542, 6280], + [-20, -98], + [-31, -94], + [56, 23], + [81, -12], + [30, -52], + [79, -15], + [58, -305], + [7, -227], + [19, -184], + [63, -84], + [84, -83], + [39, -18], + [117, 229], + [116, 10], + [64, -101], + [14, -66], + [-23, -114], + [36, -184], + [54, -162], + [26, -26], + [-11, -79], + [-73, -50], + [-49, 37], + [-23, 83], + [-46, -6], + [-21, -80], + [-57, -10], + [14, -48], + [-21, -39], + [-57, -26], + [-28, -54], + [-66, -2], + [-131, -49], + [-56, 2], + [-36, -21], + [-114, -31], + [-56, -73], + [-29, 0], + [-81, 47], + [-76, -41], + [-65, -13], + [-34, -25], + [-19, -83] + ], + [ + [8276, 4156], + [-52, 5], + [-47, -16], + [-79, 28] + ], + [ + [8098, 4173], + [-40, 68], + [-39, 28], + [-74, 156], + [0, 31], + [-46, 72], + [39, 76], + [-18, 38], + [-2, 92], + [-63, 12], + [-44, 28], + [-2, 72], + [-26, 27], + [19, 64], + [-122, 148], + [-13, 54], + [-29, 26], + [16, 35], + [-36, 46], + [-63, 38], + [42, 103], + [-35, 19], + [-78, 92], + [36, 88], + [-54, 69], + [51, 1], + [30, 36], + [0, 55], + [-90, 61], + [1, 50], + [-35, 118], + [-30, 21], + [11, 54], + [-34, 39], + [-33, 96], + [-39, 55] + ], + [ + [9147, 36749], + [-5, 21], + [-83, -6], + [-26, 22], + [-193, 3], + [-40, 16], + [-84, -32], + [-121, 57], + [-77, -48], + [-61, -23] + ], + [ + [9350, 39342], + [58, -20], + [51, -58], + [-44, -97], + [41, -23], + [5, -82], + [52, -46], + [43, -15], + [35, -42], + [6, -85], + [-44, -95], + [21, -123], + [88, -4], + [61, 21], + [126, -34], + [42, 0] + ], + [ + [10458, 28932], + [-120, 71], + [-266, 74], + [35, 157], + [-4, 52], + [-29, 34], + [194, 289], + [39, 37], + [-45, 21], + [-36, -38], + [-42, 1], + [-46, 87], + [-45, 36], + [-5, 88] + ], + [ + [10088, 29841], + [37, 20], + [19, 49], + [52, 47], + [68, 35], + [-12, 84], + [14, 24], + [204, 23], + [8, 34], + [72, 31], + [-19, 61], + [69, 28], + [-7, 33], + [58, 28], + [10, 49], + [37, 3], + [-3, 49], + [31, 16], + [-22, 54], + [-9, 72], + [43, 125], + [96, 90], + [101, -6], + [20, 80], + [-26, 16], + [17, 51], + [-48, 33], + [25, 42], + [-14, 35], + [-56, 8], + [-11, 32], + [72, 50], + [106, 9], + [10, 67], + [68, 31], + [4, 53], + [95, 25], + [46, 46], + [13, 51], + [49, 35], + [65, -2] + ], + [ + [7667, 21490], + [-11, -58], + [20, -173], + [80, 21], + [45, 93], + [77, -17], + [37, 35], + [45, 9] + ], + [ + [7960, 21400], + [-3, -91], + [54, -54], + [50, -24], + [58, -96], + [44, -43], + [78, -32], + [67, -46], + [-11, -79], + [4, -108], + [60, -79], + [59, -14], + [-28, -46], + [-101, -111], + [-68, -100], + [-29, -78], + [-12, -112], + [-39, -101], + [-40, -59], + [-78, -195], + [-24, -78], + [-10, -145], + [-24, -156] + ], + [ + [7967, 19553], + [-90, -8], + [-62, 16], + [-68, -42], + [-51, 14], + [-61, -11], + [-81, 16], + [-191, -121], + [-30, 123], + [-122, 68], + [-120, -20], + [-68, -26], + [-45, 20], + [-51, -20], + [-2, -60], + [39, -36], + [-15, -99], + [6, -32], + [-32, -41], + [-58, 22], + [-29, 63], + [-25, 16], + [-89, 8], + [-72, -50], + [-72, 36], + [-22, 38], + [-40, 5], + [-79, -30], + [-44, 11] + ], + [ + [6393, 19413], + [-83, 91], + [-45, -8], + [-96, 34], + [5, 21], + [-72, 27], + [-17, 54], + [-131, 45], + [-15, 103], + [-63, 39], + [-91, -15], + [-36, 55], + [18, 29], + [2, 67], + [-21, 37], + [-17, 90], + [-99, 63], + [-14, 45], + [9, 50], + [-23, 25], + [7, 60], + [-59, 43], + [27, 48], + [38, 5], + [31, 42], + [-73, 149], + [-79, 55], + [-78, 29], + [-63, 95], + [87, 71], + [25, 88], + [-6, 83], + [-37, 15], + [5, 69], + [46, 30], + [78, 7], + [53, -42], + [49, 2], + [40, 37] + ], + [ + [5695, 21151], + [59, -14], + [44, -45], + [76, -103], + [167, 79], + [-17, 70], + [22, 54], + [76, 57], + [64, -62], + [120, -54], + [62, -15], + [23, -29], + [46, -1], + [74, 45], + [22, -26], + [67, -31], + [45, 83], + [76, -21], + [58, 6], + [35, -21], + [76, 23], + [81, -1], + [108, 27], + [12, 59], + [-8, 140], + [63, 23], + [42, 64], + [137, 58], + [87, 7], + [91, -30], + [21, 29], + [62, -2], + [81, -30] + ], + [ + [8148, 30534], + [65, 24], + [41, -30], + [98, 19], + [54, 72], + [62, 7], + [118, -40], + [83, 34], + [53, 105], + [35, 4], + [60, -62], + [-5, -151], + [4, -94], + [18, -18], + [75, 26], + [179, -37], + [121, 30], + [48, 32], + [55, -76], + [22, 19], + [73, -39], + [124, 20], + [49, 50], + [10, 45], + [74, 58], + [101, 12], + [128, 46], + [39, -34], + [-6, -145], + [-25, -24], + [-14, -138], + [25, -30], + [18, -69], + [-1, -62], + [15, -87], + [67, -54], + [-20, -76], + [8, -71], + [56, 42], + [33, -1] + ], + [ + [7669, 30985], + [36, 63], + [159, 14], + [-1, 56], + [-28, 52], + [94, 65], + [31, 91], + [114, 25], + [47, -46], + [52, 30], + [-39, 37], + [11, 47], + [98, 7], + [66, -24], + [89, 30], + [42, 130], + [-25, 112], + [-110, 82], + [-37, -10], + [-124, 76], + [-54, 116], + [-31, 12], + [-63, -33], + [-43, 26], + [13, 42], + [-12, 53], + [40, 30], + [-27, 82], + [5, 42], + [50, -14], + [23, 24] + ], + [ + [8045, 32202], + [52, 38], + [103, -64], + [24, 45], + [102, 1], + [128, 57], + [132, 29], + [57, -58], + [35, 5], + [200, 142], + [-17, 101], + [-29, 104], + [19, 98], + [137, 65], + [48, 11], + [52, -22], + [23, 40], + [61, 16], + [25, -18], + [99, 43], + [150, 51], + [153, 1], + [38, 26], + [22, -56], + [131, 17], + [58, 21], + [46, -10], + [56, 26], + [-1, 52], + [33, 53], + [43, 23], + [50, -2], + [-8, 55], + [86, 23], + [55, 57], + [45, 23], + [95, 23], + [31, 47], + [95, 87], + [30, 55], + [75, 102], + [83, 16], + [23, 19], + [43, 96], + [50, 61], + [97, 5], + [12, -35], + [44, -13], + [92, 12], + [67, 43], + [36, 77] + ], + [ + [11126, 33790], + [52, -49], + [0, -98], + [-46, -62], + [10, -105], + [-20, -53], + [-86, -105] + ], + [ + [9946, 25185], + [-62, -81], + [-21, -83], + [85, -51], + [-6, -62], + [117, -14], + [64, 1], + [42, 85], + [51, 7], + [77, -34], + [203, -11], + [-22, -47], + [-1, -68], + [-82, -25], + [2, -20], + [69, -47], + [-21, -26], + [17, -52], + [-26, -46], + [24, -40], + [-31, -58], + [104, -56], + [-17, -39], + [-18, -111], + [16, -48], + [110, 13], + [2, -233] + ], + [ + [8846, 23945], + [1, 208], + [49, 55], + [26, 59], + [4, 167], + [34, 29], + [-21, 93], + [-68, 32], + [-20, 49], + [27, 67] + ], + [ + [9372, 34566], + [-67, -1], + [-51, -58], + [-77, -48], + [17, -55], + [10, -110], + [-35, -25], + [-19, -60], + [-46, -6], + [-40, 49], + [-19, 66], + [-58, 10], + [-36, 58], + [-37, -12], + [-53, 25], + [-66, -39], + [-32, -56], + [-61, -61], + [-77, -44], + [-28, -2], + [-49, -64], + [-47, -27], + [-215, -64], + [-39, 38], + [-95, -37], + [-85, -10], + [13, -44], + [-33, -41], + [-53, -6], + [-13, -46], + [-66, 4], + [-79, 58], + [-43, 9] + ], + [ + [7793, 33967], + [-165, -24], + [-79, 15], + [-122, -44], + [-74, -134], + [-67, -49], + [-65, 47], + [-14, 52], + [-43, 5], + [-15, 51], + [-49, 64], + [-46, -14], + [-78, 54], + [-93, 18], + [-100, -29], + [-70, -2], + [-80, -42], + [-4, -35], + [-52, -24], + [-52, -82], + [-29, -18] + ], + [ + [3152, 5569], + [-1, -35], + [-45, -41], + [-30, 31], + [31, 43], + [45, 2] + ], + [ + [3335, 6479], + [-19, -42], + [-39, 4], + [-7, 43], + [65, -5] + ], + [ + [2893, 7200], + [137, -81], + [23, -122], + [45, -35], + [46, 3], + [0, -45], + [33, -37], + [60, -17], + [75, 51], + [13, -35], + [-9, -112], + [-41, -13], + [-23, -42], + [6, -98], + [-57, -35], + [-1, -48], + [57, -120], + [31, -42], + [54, 34], + [-3, -91], + [-72, -31], + [-52, -2], + [-16, -57], + [43, -90], + [-68, -4], + [-30, 65], + [-83, -36], + [-45, -111], + [18, -18], + [-110, -51], + [1, 43], + [-47, -4], + [-6, 46], + [37, 32], + [-28, 150], + [-53, 33], + [53, 45], + [16, 71], + [-111, 69], + [71, 45], + [-10, 66], + [44, 75], + [-14, 74], + [-38, 33], + [4, 59], + [-19, 34], + [81, 41], + [14, 85], + [-25, 127], + [-29, 85], + [28, 11] + ], + [ + [14538, 23780], + [-23, -61], + [2, -68], + [-29, -32], + [-51, -15], + [-102, -63], + [4, -69], + [-24, -13], + [-129, -8], + [-119, -28], + [-52, -41], + [14, -56], + [1, -97], + [30, -55], + [-116, 5], + [-19, -58], + [-4, -89], + [73, -79], + [-24, -64], + [26, -50], + [45, -10], + [-3, -119], + [-72, -41], + [68, -41], + [-12, -75], + [32, -108], + [-22, -57], + [40, -61], + [-48, -78], + [-75, 18], + [-8, -60] + ], + [ + [7967, 19553], + [2, -136], + [59, -174], + [-4, -62], + [15, -115], + [15, -21], + [-8, -72], + [37, -47], + [22, -100], + [-6, -87], + [-32, -55], + [-45, -141], + [16, -54], + [68, -63], + [1, -42], + [59, -67], + [-48, -58], + [-91, -67], + [-44, -93], + [22, -35], + [-17, -33], + [-51, -8], + [-243, -243], + [-64, -84], + [-88, -180], + [-10, -85], + [68, -83], + [-46, -5], + [-65, -62], + [8, -52], + [29, -33], + [-44, -40], + [25, -33], + [-40, -42], + [-123, -95], + [-81, -90], + [-28, -67], + [-127, -187], + [-73, -125], + [-46, -95], + [-24, -92], + [-50, -88], + [-17, -75], + [-62, -116], + [-11, -49], + [-44, -22], + [-36, -84], + [-15, -137], + [15, -67], + [34, -67], + [44, -36], + [-11, -49], + [-48, 27], + [-69, 12], + [-56, -30], + [-60, -64], + [-38, -81], + [-7, -75], + [30, -158], + [16, -40], + [-1, -89], + [-14, -72] + ], + [ + [5512, 15093], + [67, 37], + [21, 102], + [27, 1], + [118, 83], + [14, 86], + [64, 71], + [28, 84], + [23, 13], + [51, -39], + [65, 76], + [7, 46], + [-42, 42], + [35, 22], + [58, 85], + [-41, 76], + [88, 62], + [6, 29], + [65, 68], + [93, 29], + [29, 69], + [-36, 130], + [4, 22], + [79, 54], + [60, -6], + [42, 87], + [61, 73], + [-33, 59], + [-14, 67], + [26, 90], + [33, 28], + [117, 36], + [36, -41], + [110, 13], + [28, 60], + [43, 31], + [-12, 46], + [59, 89], + [109, 66], + [-2, 69], + [19, 35], + [3, 61], + [43, 107], + [-52, -5], + [-53, 32], + [1, 33], + [-46, 51], + [-66, 11], + [3, 39], + [-30, 51], + [21, 70], + [-18, 40], + [35, 20], + [2, 108], + [-47, 45], + [-120, 22], + [10, 62], + [-26, 48], + [4, 34], + [67, 75], + [-1, 57], + [29, 89], + [-46, 15], + [-148, -18], + [-24, -40], + [-65, 18], + [3, 59], + [41, 24], + [25, 65], + [-22, 76], + [-43, 42], + [27, 58], + [6, 58], + [-69, 34], + [1, 32], + [-85, 126], + [25, 39], + [-31, 20], + [32, 52], + [1, 80], + [-53, 44], + [-2, 62], + [-67, 31], + [9, 57], + [61, 29], + [-23, 91], + [17, 92], + [47, 74] + ], + [ + [3264, 11576], + [31, -99], + [-24, -45], + [-38, -20], + [-54, 54], + [6, 46], + [53, 3], + [26, 61] + ], + [ + [3391, 11834], + [42, -27], + [-21, -40], + [16, -40], + [-45, -27], + [-18, -45], + [-45, 17], + [-4, 51], + [32, 28], + [-13, 69], + [56, 14] + ], + [ + [4253, 11105], + [-4, -48], + [68, -42], + [25, -68], + [-63, -26], + [-132, -139], + [-33, -45], + [-86, -30], + [47, -60], + [-28, -33], + [-75, -29], + [22, -43], + [45, -30], + [1, -78], + [-30, -38], + [-76, 27], + [-70, -41], + [-42, 18], + [-44, 48], + [-57, -20], + [-55, 6], + [-104, -95], + [-20, -49] + ], + [ + [3196, 10397], + [15, 107], + [52, 56], + [46, 97], + [29, 202], + [50, 141], + [60, -93], + [-16, -87], + [37, 11], + [0, 82], + [52, 57], + [80, 37], + [-6, 42], + [-45, 39], + [-50, -11], + [-73, 22], + [-15, 83], + [46, 15], + [66, -64], + [3, 67], + [19, 60], + [-46, 14], + [-7, 48], + [60, -18], + [58, 26], + [38, 38], + [17, 61], + [34, 33], + [-12, 32], + [-127, 35], + [-17, 81], + [80, 22], + [22, 26], + [-74, 144], + [61, 88], + [45, 13], + [19, -31], + [51, 84], + [-12, 43], + [67, 32], + [-1, 64], + [40, 114], + [59, 104], + [34, 34], + [28, 72], + [78, 99], + [86, 232], + [57, 106], + [66, 177], + [0, 36], + [36, 33], + [16, 201], + [36, 35], + [14, 45], + [41, 58], + [51, 11], + [-3, 30], + [35, 36], + [7, 55], + [26, 53], + [-22, 64], + [14, 46], + [-44, 33], + [4, 78], + [-30, 45], + [-64, 36], + [9, 65], + [21, 18], + [-11, 88], + [115, 111], + [70, 100], + [59, 56], + [64, 37], + [19, -30] + ], + [ + [8308, 22387], + [9, -35], + [-48, -27], + [1, -27], + [-68, -20], + [33, -43], + [-17, -47], + [20, -111], + [-42, -32], + [0, -57] + ], + [ + [8196, 21988], + [-60, 21], + [-44, -56], + [-26, 14], + [-67, -32], + [-11, 23], + [-125, 12], + [-53, -33], + [-35, -53], + [-4, -111], + [-73, -153], + [-31, -130] + ], + [ + [5695, 21151], + [-5, 51], + [-37, 88], + [36, 25], + [-64, 66], + [10, 75], + [53, 52], + [-5, 185], + [18, 31], + [-35, 104], + [26, 21], + [-59, 103], + [14, 46], + [0, 85], + [-86, 85], + [43, 34], + [-36, 65], + [15, 60], + [-16, 66], + [13, 44], + [-17, 32], + [16, 73], + [-15, 59] + ], + [ + [13593, 19828], + [-43, -61], + [-4, -45], + [-103, 40], + [-90, -12], + [-88, -26], + [-58, -30], + [-91, -110], + [-125, 23], + [-108, -14], + [-2, -44], + [-51, -7], + [-259, 11], + [-82, -19], + [-33, -21], + [-3, -47], + [-32, -26], + [-149, 80], + [-180, 68], + [-68, 32], + [-148, 23], + [-294, 22], + [-121, 15], + [-109, -11], + [-64, -26], + [-155, -25] + ], + [ + [21392, 29837], + [-33, -71], + [10, -22], + [-36, -53], + [-65, -46], + [-38, -45], + [-71, -42], + [-76, -21], + [-23, -77], + [-82, -91], + [-33, 17], + [-48, -45], + [-68, -14], + [-43, -65], + [-47, -24], + [-65, 11], + [-62, -115], + [19, -63], + [35, -25], + [-9, -67], + [-29, -34], + [7, -58], + [-37, -19], + [-102, 27], + [-84, -13], + [-10, -60], + [29, -59], + [-62, -109], + [-3, -40], + [31, -21], + [7, -72], + [-48, -36], + [-8, -51], + [-27, -31], + [3, -40], + [101, 2], + [136, 69], + [56, 9], + [39, -47], + [75, -26], + [10, -34], + [-34, -47], + [22, -95], + [-20, -37], + [38, -28], + [85, -104], + [31, -94], + [-18, -25], + [65, -51], + [-90, -27], + [-125, -72], + [-1, -40] + ], + [ + [20694, 27716], + [-52, 14], + [-96, -82], + [12, -24], + [-65, -42], + [13, -41], + [-75, -24], + [-124, -122], + [-25, -115] + ], + [ + [20282, 27280], + [-36, 38], + [-84, -18], + [-21, 39], + [-66, 34], + [-67, 10], + [-60, 68], + [-96, -33], + [-46, 12], + [-50, -35], + [-173, -30], + [-42, 29], + [-68, -25], + [-212, 36], + [-159, 45], + [-80, -13], + [-61, -31], + [-57, -65], + [-61, 0], + [-72, 26], + [-54, 42], + [-115, 5], + [-118, -57] + ], + [ + [17051, 23851], + [36, -69], + [-46, -52], + [-10, -80], + [-67, -60], + [-8, -92], + [32, -82], + [-45, -38], + [-76, -6], + [-61, -53], + [-102, -58], + [-38, -62], + [-62, -28], + [-46, -214], + [-32, -29], + [-102, -140], + [24, -60], + [-46, 2], + [-86, -63], + [-29, -7], + [-241, -114], + [-60, -22], + [-56, -49], + [-42, -64], + [67, -48], + [30, -44], + [64, -14], + [-16, -38], + [-66, -13], + [-13, -50], + [-134, -59], + [-110, 21], + [-157, -34], + [-59, 32], + [-82, -12], + [-85, 28], + [-28, -36], + [-53, -22], + [-11, -41], + [83, -103], + [-20, -160], + [17, -116], + [-48, -162], + [21, -20], + [21, -86], + [-17, -28] + ], + [ + [19290, 31772], + [-13, 25], + [21, 68], + [-29, 73], + [35, 76], + [-94, 42], + [-46, 74], + [-25, 7], + [-64, 61], + [-62, -41], + [-157, 99], + [-147, 75], + [-64, -20], + [-85, 20], + [-18, -20], + [-121, 65], + [-50, 0], + [-32, 54], + [-105, 23], + [-32, 18], + [-69, -9], + [-29, 17], + [-66, 107], + [43, 48], + [19, 58], + [90, 114], + [-59, 78], + [-21, 74], + [43, 64], + [-3, 88], + [74, 56], + [16, 66], + [50, 41], + [18, 55], + [58, 37], + [111, 11], + [20, 105], + [-11, 50], + [24, 48], + [-17, 52], + [27, 121], + [-29, 78], + [-41, -16], + [-19, 48], + [-35, 27], + [-2, 41], + [60, 80], + [-7, 56], + [61, 19], + [0, 79], + [35, 6], + [-32, 69], + [-21, 0] + ], + [ + [10698, 21910], + [-118, 33], + [-327, 41], + [-68, 3], + [-174, 51], + [-43, 42], + [-83, 39], + [13, -59], + [-47, -50], + [-257, -38], + [-107, 2] + ], + [ + [9350, 21951], + [-163, -19], + [-128, 12], + [-98, 44], + [-41, -58], + [-39, -25], + [-91, -20], + [-232, -61], + [-212, -63] + ], + [ + [8346, 21761], + [-18, 88], + [-94, 125], + [-38, 14] + ], + [ + [8346, 21761], + [-67, -25], + [-54, -62], + [-17, -63], + [-35, -27], + [-73, 17], + [1, -96], + [-126, -74], + [-15, -31] + ], + [ + [5534, 2580], + [80, -59], + [-27, -13], + [-54, 17], + [1, 55] + ], + [ + [5896, 2680], + [150, -72], + [-6, -75], + [-34, -44], + [-87, -2], + [-8, 86], + [-21, 33], + [6, 74] + ], + [ + [5807, 2695], + [26, -20], + [5, -55], + [-57, -14], + [-66, -37], + [-85, 23], + [6, 82], + [94, 0], + [77, 21] + ], + [ + [7643, 3115], + [31, -7], + [14, -74], + [-71, 13], + [26, 68] + ], + [ + [7067, 3074], + [16, -45], + [33, -5], + [23, -47], + [2, -107], + [-18, -56], + [48, -69], + [13, -124], + [-14, -70], + [-34, 14], + [-47, -22], + [7, -31], + [-53, -40], + [-25, 38], + [-19, 84], + [-42, 54], + [-32, 0], + [-54, 86], + [15, 43], + [35, 12], + [16, 62], + [-9, 55], + [35, 10], + [44, 46], + [14, 66], + [-14, 88], + [60, -42] + ], + [ + [7180, 3441], + [3, -52], + [-25, -44], + [-36, 38], + [35, 58], + [23, 0] + ], + [ + [7391, 4206], + [65, 4], + [59, -37], + [79, -84], + [71, -40], + [132, 76], + [119, 17], + [45, -17], + [82, 16], + [55, 32] + ], + [ + [8276, 4156], + [22, -140], + [46, -46], + [-44, -25], + [-2, -51], + [58, -44], + [-11, -61], + [45, -27], + [86, -118], + [78, -1], + [57, -29], + [62, -5], + [67, -49], + [36, -65], + [-36, -68], + [-32, -28], + [-22, -76], + [49, -162], + [-6, -68] + ], + [ + [8729, 3093], + [-53, -27], + [-23, -49], + [1, -126], + [-44, -64], + [14, -66], + [22, -7], + [20, -76], + [-77, -28], + [-17, -46], + [19, -175], + [-46, -59], + [9, -37], + [-78, -104], + [-11, 71], + [-51, 156], + [-42, -11], + [34, 98], + [-29, 56], + [-35, 23], + [-34, -106], + [-47, 2], + [-92, 69], + [-45, 47], + [-53, 93], + [-126, -11], + [3, 74], + [35, -2], + [37, 37], + [-28, 21], + [-27, 78], + [-56, -26], + [-80, 91], + [-19, 48], + [38, 38], + [-118, 1], + [-26, 66], + [-73, 76], + [-10, 27], + [-94, -30], + [-19, 20], + [-15, 83], + [-49, 71], + [-37, 27], + [-69, -4], + [-95, 54], + [-63, 16], + [-37, 82], + [6, 28], + [-18, 109], + [60, 73], + [-57, 2], + [-37, 88], + [40, 25], + [-40, 78], + [67, 89], + [31, -11], + [42, 64], + [-13, 26], + [70, 27], + [17, 57], + [80, -13] + ], + [ + [20694, 27716], + [46, -77], + [-13, -56], + [40, -46], + [52, -17], + [55, -41], + [62, -86], + [96, -101], + [6, -46], + [36, -60], + [42, -2], + [109, -76], + [178, -3], + [63, -71], + [27, -71], + [63, -10] + ], + [ + [21556, 26953], + [159, -35], + [35, -25], + [105, -3], + [81, -42], + [149, 3], + [36, 43], + [57, -26], + [110, -11], + [0, -31], + [76, 26], + [46, -97], + [61, -62], + [8, -30], + [-27, -42], + [32, -31], + [44, 28], + [33, -33], + [-93, -77], + [-72, -19], + [-4, -97], + [23, -43], + [-1, -81], + [-37, -30], + [-3, -37], + [31, -33], + [2, -86], + [16, -26], + [-8, -59], + [58, -28], + [209, -68], + [94, -45], + [18, -74], + [53, -91], + [-65, -22], + [-28, -37], + [59, -80], + [9, -90], + [71, -53], + [18, -50], + [85, -62], + [-2, -99], + [-79, -5], + [-40, -64], + [-5, -53], + [-26, -28], + [6, -72], + [-36, -82], + [62, -82], + [74, -60], + [-9, -79], + [-89, -86], + [59, -44], + [83, 34], + [64, -56], + [33, -48] + ], + [ + [23091, 24473], + [-88, 34], + [-114, -24], + [-11, 30], + [-52, 10], + [-44, 52], + [-53, -6], + [-65, -30], + [-47, -49], + [-60, 18], + [-69, 58], + [-47, -33], + [-46, -72], + [-59, 11], + [-50, 66], + [-52, -48], + [-73, -28], + [-122, -123], + [-87, 4], + [-60, 45], + [-46, 15], + [-48, -13], + [-40, -65], + [-48, 37], + [-73, 2], + [-12, 21], + [-88, 19], + [-90, 2], + [-116, -14], + [-73, 37], + [-88, 69], + [-81, -48], + [-10, -35], + [-92, -33], + [-56, 43], + [-47, 5], + [-43, -24], + [4, -46], + [-82, -14], + [-21, 53], + [-92, 14], + [-57, -82], + [-99, -10] + ], + [ + [20494, 24321], + [-39, 47], + [20, 47], + [-11, 80], + [31, 164], + [-21, 66], + [-48, 28], + [8, 49], + [-16, 74], + [41, 27], + [28, 62], + [16, 75], + [-7, 64], + [-20, 32], + [6, 66], + [-18, 41], + [-80, 66], + [-60, 76], + [-4, 37], + [25, 55], + [-37, 108], + [-49, 28], + [-187, 53], + [-50, 61], + [54, 64], + [-10, 16], + [34, 73], + [70, 53], + [19, 51], + [33, 19], + [24, 72], + [70, 50], + [-12, 68], + [49, 8], + [31, 75], + [-29, 34], + [25, 37], + [-55, 20], + [-38, 128], + [23, 63], + [-85, 44], + [37, 110], + [-13, 65], + [35, -3], + [26, 84], + [2, 65], + [44, 54], + [7, 42], + [45, 14], + [45, 61], + [53, 8], + [71, 43], + [4, 33], + [-34, 59], + [-123, 43], + [-142, 0] + ], + [ + [8801, 25564], + [-71, 54], + [60, 196], + [-48, 17], + [25, 65], + [-92, -7], + [-12, 77], + [47, 16], + [13, 37] + ], + [ + [9758, 4369], + [48, -66], + [-46, -33], + [-18, 34], + [16, 65] + ], + [ + [9131, 6453], + [63, -290], + [158, -598], + [94, -331], + [52, -153], + [56, -142], + [112, -220], + [80, -116], + [56, -54], + [76, -146], + [-48, -21], + [-209, 151], + [-61, 36], + [-109, -14], + [-101, -36], + [-63, -72], + [7, -29], + [77, -45], + [15, -67], + [126, -50], + [16, 24], + [67, -51], + [63, 12], + [112, 4], + [71, 60], + [66, 28], + [10, 27], + [-53, 121], + [60, -23], + [50, -78], + [30, -15], + [112, -168], + [75, -100], + [157, -190], + [123, -116], + [94, -57], + [70, -14], + [60, 31], + [131, -110], + [128, -90], + [156, -76], + [144, -35], + [94, 17] + ], + [ + [11485, 2821], + [-59, -43], + [73, -72], + [-93, -60], + [-45, -61], + [-80, -11], + [-2, -45], + [-30, -52], + [-105, -65], + [-56, 13], + [-14, -50], + [-77, -73], + [-47, 6], + [-39, -69], + [-9, -62], + [15, -24], + [11, -93], + [-16, -26], + [24, -40], + [-56, -78], + [-65, -21], + [-75, 1], + [-45, -22], + [-19, 51] + ], + [ + [10676, 1925], + [14, 52], + [-1, 79], + [-41, -18], + [-35, 24], + [5, 80], + [-16, 146], + [-112, 51], + [-90, 10], + [-19, 30], + [-8, 97], + [-29, 15], + [-66, -82], + [-86, -75], + [-64, -7], + [-34, -22], + [-49, 39], + [-58, 6], + [-82, 54], + [-50, 11], + [-37, 35], + [-105, -24], + [-73, 41], + [-43, 66], + [-64, -12], + [-32, 29], + [-104, -46], + [-88, 46], + [-88, 22], + [-39, 60], + [1, 27], + [-122, 94], + [39, 51], + [-12, 55], + [7, 58], + [-65, 34], + [-24, 33], + [-1, 60], + [-52, -1], + [-19, -34], + [-58, 7], + [-54, -12], + [-61, 73], + [-32, 16] + ], + [ + [7793, 33967], + [11, -27], + [65, -28], + [13, -36], + [-41, -28], + [103, -113], + [54, -35], + [40, -152], + [-35, -65], + [22, -36], + [-106, -79], + [-44, -16], + [7, -53], + [48, -66], + [-28, -50], + [10, -41], + [139, -66], + [28, -59], + [38, -23], + [-11, -68], + [-31, -90], + [62, -65], + [-28, -67], + [42, -74], + [-64, -104], + [-60, -2], + [-21, -23], + [-9, -110], + [-15, -30], + [69, -42], + [-25, -47], + [19, -70] + ], + [ + [6355, 31386], + [58, 80], + [-37, 56], + [-42, 11], + [1, 66], + [-25, 64], + [53, 59], + [-16, 30], + [-80, 27], + [-33, 133], + [21, 24], + [-47, 38], + [-118, -1], + [-56, 54], + [-22, 92], + [15, 39], + [-27, 78], + [33, 153], + [-16, 79] + ], + [ + [5922, 26131], + [0, 35], + [51, 21], + [18, 30], + [-33, 32], + [28, 71], + [71, 48], + [34, 3], + [77, -88], + [90, 3], + [68, -29], + [34, -101], + [36, -48], + [130, 10], + [126, -23], + [24, -34], + [89, -17], + [82, -47], + [47, 5], + [85, -24], + [3, 137], + [86, 0], + [91, -38], + [80, 6] + ], + [ + [8317, 11073], + [56, -83], + [-34, -54], + [-49, -36], + [-17, -72], + [47, -66], + [-75, -36], + [-57, -41], + [-49, -83], + [-89, 2], + [-56, -35], + [-23, 31], + [-69, 17], + [-6, 120], + [-30, 57], + [30, 18], + [5, 115], + [-47, 85], + [14, 20], + [118, 16], + [60, 20], + [49, -46], + [106, -32], + [63, -8], + [26, 18], + [27, 73] + ], + [ + [5536, 11390], + [9, -71], + [29, -69], + [116, -144], + [0, -90], + [69, -152], + [30, -84], + [67, -102], + [115, -107], + [-60, -44], + [-57, -89], + [-74, -25], + [-61, -44], + [-10, -82], + [30, -81], + [-4, -62], + [41, -51], + [54, -19], + [35, -34], + [56, 38], + [49, 8], + [41, -40], + [53, 9], + [23, -42], + [62, 21], + [5, -54], + [63, -16], + [95, 41], + [135, -21], + [86, 32], + [31, 42], + [38, 96], + [47, 58], + [55, 14], + [114, -43], + [103, -2], + [91, 93], + [76, 2], + [55, 74], + [117, -49], + [59, 33], + [47, -26], + [35, 21] + ], + [ + [8186, 11672], + [24, -33], + [56, -1], + [13, -59], + [47, -15], + [25, -88], + [-16, -35], + [12, -58], + [-35, -61], + [-59, 15], + [-99, 49], + [-85, 14], + [-41, 54], + [0, 58], + [-46, 28], + [18, 79], + [77, 50], + [51, -43], + [58, 46] + ], + [ + [7609, 12569], + [40, -45], + [15, -57], + [-49, -69], + [-76, 17], + [37, 60], + [-25, 61], + [14, 33], + [44, 0] + ], + [ + [20494, 24321], + [-18, -11], + [-105, 2], + [-32, 41], + [-31, -31], + [-48, 25], + [-95, -13], + [-14, -55], + [-62, 15], + [-131, 7], + [-61, 80], + [-63, 14], + [-37, -35], + [-80, -6], + [-68, 13], + [-70, 45], + [-144, -3], + [-27, 28], + [23, 125], + [-43, 19], + [-108, -1], + [-43, -22], + [34, -33], + [-111, -56], + [-43, 50], + [-85, 29], + [-127, -30], + [-53, -30], + [-56, -11], + [-24, -43], + [-32, 1], + [-53, -60], + [-43, 10], + [-48, 63], + [-55, -27], + [-28, -66], + [-81, -12], + [-106, 4], + [-59, -9], + [-37, 15], + [-98, -23], + [-56, 7], + [-116, -67] + ], + [ + [5467, 28358], + [-24, -76], + [23, -79], + [-15, -88], + [-37, -61], + [-34, -190], + [-29, -13], + [-39, -90], + [-101, -44], + [-10, -28], + [36, -94], + [42, -26], + [15, -37], + [-62, -105], + [-6, -51], + [36, -70], + [-5, -39], + [-66, -74], + [-6, -84], + [-39, -50], + [4, -79], + [19, -33], + [-41, -23], + [-17, -93], + [-40, -18], + [9, -87], + [-28, -69], + [-49, -4] + ], + [ + [3744, 27971], + [-37, -9], + [-37, 88], + [69, 253], + [26, 70], + [98, 216], + [-44, -2], + [-34, 119], + [32, 118], + [41, 33], + [-12, 52], + [-39, 61], + [-91, 53], + [16, 67], + [95, 16], + [31, -54], + [51, -1], + [11, 55], + [98, 31], + [62, 105], + [-9, 41], + [64, 26], + [53, -28], + [83, -17], + [110, 20], + [56, -55], + [65, 13], + [36, 41], + [63, 27], + [7, 59], + [24, 34], + [-3, 80], + [-26, 49], + [43, 51], + [44, 14], + [70, 45], + [36, 142], + [24, -3], + [25, 68], + [-23, 49], + [-24, 122], + [-41, 25], + [-61, 66], + [-77, 18], + [-28, -25], + [-58, 5], + [-49, -82], + [9, -18], + [-105, -59], + [-2, -30], + [-48, -30], + [-60, 5], + [-53, -38], + [-30, -56], + [-1, -43], + [-36, -9], + [-10, -56], + [-107, 31], + [7, 93], + [-20, 133], + [-63, 108], + [-16, 63], + [59, 86], + [-19, 39], + [-51, 18], + [-20, 49], + [-132, 142], + [-20, 47], + [23, 72], + [-44, 45], + [0, 71], + [-30, -1], + [-115, 37], + [-27, 33], + [9, 56], + [-9, 71], + [-39, 27], + [-96, 36], + [-2, 77], + [59, 62], + [-12, 45], + [98, 25], + [5, 25], + [82, 14], + [-31, 50], + [-131, 31], + [19, 56], + [41, 51], + [43, 19], + [-40, 40], + [17, 47], + [-106, 51], + [45, 39], + [-31, 20], + [-52, 108], + [-45, -11], + [-13, 86], + [-47, 33], + [-66, 21], + [-14, 28], + [-64, 19], + [-92, -29], + [-70, 4], + [-81, 82], + [30, 88], + [-125, 27], + [14, 61], + [-50, 53], + [-17, 58], + [-43, 13], + [-38, 114], + [-25, -23], + [-53, 25], + [-20, 54], + [-93, 29], + [-24, 42], + [-59, 48], + [-29, 2], + [-33, 72], + [-48, 10], + [-17, 67], + [17, 111], + [-84, 13], + [-72, 87], + [-41, 24], + [27, 36], + [-57, 30], + [-98, 108], + [-34, 50], + [-60, -5], + [-35, 56], + [-67, 9], + [-49, 22], + [-36, 64], + [-15, 58], + [-180, 124], + [-86, 92], + [-77, 51], + [-9, 35], + [-86, 91], + [10, 92], + [-64, 69] + ], + [ + [6782, 4178], + [48, -7], + [78, -58], + [-132, 3], + [-24, 46], + [30, 16] + ], + [ + [6920, 4374], + [32, -23], + [-25, -47], + [-51, -12], + [44, 82] + ], + [ + [6265, 4601], + [83, -2], + [68, -47], + [-106, -20], + [-56, -49], + [0, -41], + [-61, 0], + [-29, 40], + [18, 42], + [-7, 74], + [48, 33], + [42, -30] + ], + [ + [5947, 4941], + [48, -39], + [-14, -56], + [-48, 27], + [-19, 63], + [33, 5] + ], + [ + [7391, 4206], + [-79, 26], + [-61, -20], + [-58, 12], + [-35, -22], + [-60, 3], + [-32, 96], + [1, 48], + [-76, -45], + [-67, -61], + [-42, 0], + [7, 46], + [54, 17], + [14, 59], + [-68, 33], + [5, -51], + [-58, -80], + [-80, 169], + [-61, 71], + [-52, 44], + [37, 96], + [79, 12], + [38, 77], + [11, 59], + [32, 52], + [-54, 10], + [-1, -68], + [-28, -47], + [-100, -60], + [-54, 30], + [11, 40], + [-29, 73], + [12, 82], + [-23, 33], + [-51, -34], + [-5, -57], + [31, -94], + [-21, -84], + [-45, -24], + [-128, 45], + [-64, 48], + [-35, -26], + [-60, 89], + [-113, 108], + [32, 67], + [-15, 28], + [4, 86], + [-54, 142], + [-49, 37], + [-12, 45], + [16, 46], + [-51, 53], + [-18, 62], + [-37, 55], + [13, 47], + [-60, -4], + [-35, 64], + [65, 99], + [29, 14] + ], + [ + [15940, 17030], + [-15, -39], + [53, -4], + [71, -70], + [-7, -27], + [25, -76], + [-17, -63], + [-36, -39], + [16, -31], + [-8, -110], + [-78, 38], + [-5, 48], + [-60, -7], + [-62, 35], + [18, 43], + [37, 10], + [-33, 80], + [-21, 125], + [40, 19], + [-18, 59], + [37, 40], + [-8, 40], + [28, 26], + [53, -85], + [-10, -12] + ], + [ + [15647, 17329], + [53, -19], + [68, -4], + [-19, -40], + [-36, 9], + [-40, -46], + [-47, 59], + [21, 41] + ], + [ + [14977, 18228], + [58, -35], + [64, -1], + [93, -22], + [35, -37], + [68, -41], + [42, -82], + [36, -27], + [112, -153], + [36, -69], + [49, -35], + [-35, -45], + [-66, 17], + [-93, 93], + [-16, -101], + [-84, 1], + [-49, 30], + [-51, -4], + [-23, -28], + [-66, 145], + [19, 73], + [-13, 45], + [-46, 38], + [3, 60], + [-35, 68], + [14, 68], + [-52, 42] + ], + [ + [15771, 19881], + [-29, -37], + [30, -134], + [2, -59], + [55, -40], + [74, -10], + [40, 15], + [158, -119], + [83, -10], + [-5, -70], + [55, -10], + [45, -108], + [53, -57], + [87, -56], + [-11, -30], + [62, -26], + [12, -64], + [67, -10], + [46, -59], + [18, -49], + [-10, -46], + [-99, -22], + [-78, -76], + [-7, -85], + [8, -86], + [-36, -106], + [12, -47], + [-2, -76], + [-42, -135], + [19, -58], + [58, -61], + [15, -52], + [97, -102], + [26, -64], + [-2, -44], + [23, -129], + [29, -35], + [32, -79], + [45, -42], + [19, -73], + [-8, -41], + [49, -112], + [104, -135], + [45, -15], + [59, -82], + [20, -60], + [1, -186], + [-32, 9], + [16, 84], + [-31, 78], + [-87, 145], + [-118, 129], + [-158, 186], + [-13, 46], + [36, 55], + [-57, 114], + [14, 30], + [-14, 77], + [-44, 62], + [-266, 210], + [-70, 37], + [-52, 50], + [60, 14], + [1, 53], + [-31, 27], + [-103, 51], + [-24, 22], + [-63, -25], + [-24, -58], + [34, -40], + [-59, -13], + [15, -41], + [-12, -46], + [30, -37], + [-17, -69], + [37, -14], + [50, -93], + [-68, -15], + [-60, 26], + [10, 70], + [-59, 83], + [-32, 21], + [-121, 45], + [-73, 73], + [-71, 15], + [-109, -1], + [-94, 69], + [-65, 16], + [-41, -8], + [-21, -44], + [-60, 23], + [-37, -4], + [-51, 55], + [32, 63], + [-27, 60], + [-42, 47], + [33, 43], + [91, 23], + [56, 26], + [21, 38], + [102, 86], + [-51, 57] + ], + [ + [15297, 18830], + [4, 2] + ], + [ + [15328, 18865], + [6, 0] + ], + [ + [21556, 26953], + [47, 154], + [-25, 100], + [-56, 15], + [-29, 167], + [-36, 33], + [50, 89], + [-14, 42], + [45, 110], + [39, -23], + [60, 13], + [118, 1], + [123, 60] + ], + [ + [23558, 29203], + [68, -32], + [51, 14], + [60, -37], + [47, 5], + [234, -83], + [183, -19], + [141, -40], + [105, 0], + [38, -22], + [145, -16], + [34, -26], + [-17, -52], + [-81, 9], + [-39, -16], + [-54, -91], + [-30, -20], + [-24, -81], + [29, -25], + [80, -168], + [33, -47], + [3, -56], + [30, -39], + [59, -17], + [0, -39], + [47, -58], + [78, -24], + [117, 58], + [110, -52], + [54, 5], + [25, -30], + [124, -50], + [32, -83], + [72, -85], + [5, -87], + [-31, -107], + [0, -64], + [-50, -58], + [-52, -113], + [29, -93], + [-34, -137], + [-35, -42], + [-109, -45], + [-60, 0], + [-96, -19], + [-49, -46], + [-30, -62], + [15, -32], + [102, -57], + [72, 19], + [92, -6], + [43, 14], + [25, -28], + [30, -118], + [-28, -32], + [-67, 4], + [-62, -27], + [-70, -92], + [-59, -39], + [-87, -131], + [27, -29], + [-32, -36], + [-9, -58], + [23, -40], + [117, -40], + [14, -47], + [33, -19], + [79, -5], + [-15, -62], + [74, -46], + [16, -70], + [101, -19], + [32, -38], + [-75, -40], + [-35, -45], + [-85, 26], + [-30, -80], + [43, -23], + [50, -58], + [-17, -46], + [-107, -35], + [43, -44], + [9, -43], + [-73, -41], + [-53, -54], + [12, -79], + [-8, -57], + [72, -44], + [-47, -28], + [10, -61], + [-28, -31], + [25, -51], + [-16, -71], + [32, -37], + [0, -114], + [31, -38], + [-29, -27], + [12, -56], + [-30, -9], + [-68, -105], + [-43, -9], + [-25, -63], + [-67, -89], + [-23, -10], + [-26, -64], + [-33, -34], + [-61, 36], + [-26, -45], + [-121, -70], + [-64, -9], + [-64, 35], + [-43, -61], + [-69, -30], + [-24, -31], + [-68, 26], + [-79, -83], + [-86, 43], + [-72, -7], + [-29, -54], + [29, -33], + [-46, -36], + [-33, -51], + [10, -80], + [-34, -47], + [-119, -69], + [-161, 3], + [-12, 33], + [-75, 46], + [0, 61], + [-95, 129], + [6, 90], + [27, 60], + [-87, 76], + [-83, -26], + [-63, 43], + [-54, 5] + ], + [ + [11427, 35565], + [127, -37], + [59, -55], + [61, -2], + [42, -21], + [-102, -123], + [33, -55], + [-46, -40], + [45, -38], + [20, -82], + [45, 3], + [34, -24], + [-57, -120], + [-11, -72], + [-23, -44], + [33, -135], + [34, -37], + [-72, -95], + [-28, 20], + [-93, -119], + [-11, -120], + [-37, -11], + [-48, -61], + [-129, -34], + [-82, -58], + [-6, -42], + [33, -30], + [5, -90], + [-84, -27], + [-31, -55], + [42, -54], + [-13, -25], + [-63, -24], + [-11, -42], + [33, -26] + ], + [ + [12684, 771], + [-48, -42], + [-43, -10], + [-183, 11], + [-50, -10], + [-77, -109], + [-73, -44], + [-42, -1], + [-52, -31], + [-87, 36], + [-68, -54], + [-43, -116], + [31, -77], + [-9, -49], + [-116, -90], + [-71, -77], + [-66, -13], + [-50, -51], + [-71, -44], + [-7, 58], + [-41, 91], + [-187, 216], + [-83, 1], + [-44, 71], + [-79, 51], + [-12, 42], + [90, 81], + [-29, 42], + [10, 64], + [60, 78], + [22, 46], + [44, -21], + [31, 24], + [71, -23], + [54, 114], + [68, 57], + [8, 25], + [-62, 50], + [15, 31], + [4, 80], + [-30, 44], + [39, 41], + [9, 38], + [42, 53], + [-60, 30], + [-70, 59], + [-94, 24], + [51, 51], + [1, 26], + [98, 26], + [57, 44], + [-64, 123], + [19, 26], + [-46, 31], + [-62, -11], + [-69, 7], + [-105, -13], + [-64, 42], + [-31, 43], + [-52, 8], + [-19, -41], + [-64, -57], + [-134, -13], + [-64, 41], + [-36, -51], + [-42, 0], + [-57, 126], + [24, 50] + ] + ], + "transform": { + "scale": [0.000327590235404905, 0.00035884621559740756], + "translate": [97.34552764892602, 5.616197109222526] + }, + "objects": { + "thailand": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-37", + "NAME_0": "Thailand", + "ID_1": 1, + "NAME_1": "Amnat Charoen", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "อำนาจเจริญ", + "VARNAME_1": "" + } + }, + { + "arcs": [[4, 5, 6, 7]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-15", + "NAME_0": "Thailand", + "ID_1": 2, + "NAME_1": "Ang Thong", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "อ่างทอง", + "VARNAME_1": "" + } + }, + { + "arcs": [[8, 9, 10, 11, 12, 13, 14]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-10", + "NAME_0": "Thailand", + "ID_1": 3, + "NAME_1": "Bangkok", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "กรุงเทพมหานคร", + "VARNAME_1": "Krung Thep|Krung Thep Maha Nakhon" + } + }, + { + "arcs": [[15, 16, 17, 18]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-38", + "NAME_0": "Thailand", + "ID_1": 4, + "NAME_1": "Bueng Kan", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "บึงกาฬ", + "VARNAME_1": "" + } + }, + { + "arcs": [[19, 20, 21, 22, 23, 24]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-31", + "NAME_0": "Thailand", + "ID_1": 5, + "NAME_1": "Buri Ram", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "บุรีรัมย์", + "VARNAME_1": "Buri Rum" + } + }, + { + "arcs": [[25, 26, 27, 28, 29, 30, -9, 31, 32]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-24", + "NAME_0": "Thailand", + "ID_1": 6, + "NAME_1": "Chachoengsao", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ฉะเชิงเทรา", + "VARNAME_1": "Chaxerngsao|Pad Rew|Paed Riu|Petrieu|Shajeun Dhrao" + } + }, + { + "arcs": [[33, 34, 35, 36]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-18", + "NAME_0": "Thailand", + "ID_1": 7, + "NAME_1": "Chai Nat", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ชัยนาท", + "VARNAME_1": "Chainat" + } + }, + { + "arcs": [[37, 38, 39, 40]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-36", + "NAME_0": "Thailand", + "ID_1": 8, + "NAME_1": "Chaiyaphum", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ชัยภูมิ", + "VARNAME_1": "" + } + }, + { + "arcs": [[47, 48, 49, -28, 50, 51, 52]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-22", + "NAME_0": "Thailand", + "ID_1": 9, + "NAME_1": "Chanthaburi", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "จันทบุรี", + "VARNAME_1": "" + } + }, + { + "arcs": [[53, 54, 55, 56, 57, 58]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-50", + "NAME_0": "Thailand", + "ID_1": 10, + "NAME_1": "Chiang Mai", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "เชียงใหม่", + "VARNAME_1": "" + } + }, + { + "arcs": [[59, 60, -59, 61]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-57", + "NAME_0": "Thailand", + "ID_1": 11, + "NAME_1": "Chiang Rai", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "เชียงราย", + "VARNAME_1": "" + } + }, + { + "arcs": [[[62]], [[63]], [[64]], [[65]], [[66]], [[-50, 67, 68, -29]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 228, + "ISO": "TH-20", + "NAME_0": "Thailand", + "ID_1": 12, + "NAME_1": "Chon Buri", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ชลบุรี", + "VARNAME_1": "" + } + }, + { + "arcs": [[69, 70, 71, 72, 73]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-86", + "NAME_0": "Thailand", + "ID_1": 13, + "NAME_1": "Chumphon", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ชุมพร", + "VARNAME_1": "" + } + }, + { + "arcs": [[74, 75, 76, 77, 78, 79]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-46", + "NAME_0": "Thailand", + "ID_1": 14, + "NAME_1": "Kalasin", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "กาฬสินธุ์", + "VARNAME_1": "" + } + }, + { + "arcs": [[80, 81, 82, 83, 84]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-62", + "NAME_0": "Thailand", + "ID_1": 15, + "NAME_1": "Kamphaeng Phet", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "กำแพงเพชร", + "VARNAME_1": "Gampheang Phet|Kambhengbhej" + } + }, + { + "arcs": [[85, 86, 87, 88, 89, 90]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-71", + "NAME_0": "Thailand", + "ID_1": 16, + "NAME_1": "Kanchanaburi", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "กาญจนบุรี", + "VARNAME_1": "" + } + }, + { + "arcs": [[-79, 91, -24, 92, -38, 93, 94, 95, 96]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-40", + "NAME_0": "Thailand", + "ID_1": 17, + "NAME_1": "Khon Kaen", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ขอนแก่น", + "VARNAME_1": "" + } + }, + { + "arcs": [ + [[97]], + [[98]], + [[99]], + [[100]], + [[101]], + [[102]], + [[103]], + [[104]], + [[105, 106, 107, 108, 109]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 228, + "ISO": "TH-81", + "NAME_0": "Thailand", + "ID_1": 18, + "NAME_1": "Krabi", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "กระบี่", + "VARNAME_1": "" + } + }, + { + "arcs": [[110, 111, 112, 113, 114, -54, -61]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-52", + "NAME_0": "Thailand", + "ID_1": 19, + "NAME_1": "Lampang", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ลำปาง", + "VARNAME_1": "" + } + }, + { + "arcs": [[-115, 115, -55]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-51", + "NAME_0": "Thailand", + "ID_1": 20, + "NAME_1": "Lamphun", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ลำพูน", + "VARNAME_1": "Hariphunchai|Lampoon" + } + }, + { + "arcs": [[116, 117, 118, -95, 119, 120, 121]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-42", + "NAME_0": "Thailand", + "ID_1": 21, + "NAME_1": "Loei", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "เลย", + "VARNAME_1": "" + } + }, + { + "arcs": [[122, 123, 124, -5, 125, 126, 127, -40]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-16", + "NAME_0": "Thailand", + "ID_1": 22, + "NAME_1": "Lopburi", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ลพบุรี", + "VARNAME_1": "" + } + }, + { + "arcs": [[-57, 128, 129]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-58", + "NAME_0": "Thailand", + "ID_1": 23, + "NAME_1": "Mae Hong Son", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "แม่ฮ่องสอน", + "VARNAME_1": "" + } + }, + { + "arcs": [[130, 131, -25, -92, -78]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-44", + "NAME_0": "Thailand", + "ID_1": 24, + "NAME_1": "Maha Sarakham", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "มหาสารคาม", + "VARNAME_1": "" + } + }, + { + "arcs": [[132, -4, 133, 134, -76, 135, 136]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-49", + "NAME_0": "Thailand", + "ID_1": 25, + "NAME_1": "Mukdahan", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "มุกดาหาร", + "VARNAME_1": "" + } + }, + { + "arcs": [[137, -33, 138, 139, 140]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-26", + "NAME_0": "Thailand", + "ID_1": 26, + "NAME_1": "Nakhon Nayok", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "นครนายก", + "VARNAME_1": "Nakon Nayok" + } + }, + { + "arcs": [[141, -13, 142, 143, -88, 144, 145]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-73", + "NAME_0": "Thailand", + "ID_1": 27, + "NAME_1": "Nakhon Pathom", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "นครปฐม", + "VARNAME_1": "" + } + }, + { + "arcs": [[-137, 146, -16, 147]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-30", + "NAME_0": "Thailand", + "ID_1": 28, + "NAME_1": "Nakhon Phanom", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "นครพนม", + "VARNAME_1": "" + } + }, + { + "arcs": [[-93, -23, 148, 149, -141, 150, -123, -39]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-30", + "NAME_0": "Thailand", + "ID_1": 29, + "NAME_1": "Nakhon Ratchasima", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "นครราชสีมา", + "VARNAME_1": "Khorat|Nagara Rajasima|Nakaun Rachasima" + } + }, + { + "arcs": [[151, -127, 152, -37, 153, 154, -83, 155]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-60", + "NAME_0": "Thailand", + "ID_1": 30, + "NAME_1": "Nakhon Sawan", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "นครสวรรค์", + "VARNAME_1": "" + } + }, + { + "arcs": [[156, 157, 158, -106, 159, 160]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-80", + "NAME_0": "Thailand", + "ID_1": 31, + "NAME_1": "Nakhon Si Thammarat", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "นครศรีธรรมราช", + "VARNAME_1": "Nakhon Thammarat|Nagara Sridharmaraj|Nakhon Sri Thammarat|Nakhornsrithamrat|Nakornsrithamaraj" + } + }, + { + "arcs": [[161, 162, 163, 164]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-55", + "NAME_0": "Thailand", + "ID_1": 32, + "NAME_1": "Nan", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "น่าน", + "VARNAME_1": "" + } + }, + { + "arcs": [[165, 166, 167]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-96", + "NAME_0": "Thailand", + "ID_1": 33, + "NAME_1": "Narathiwat", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "นราธิวาส", + "VARNAME_1": "" + } + }, + { + "arcs": [[-96, -119, 168]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-39", + "NAME_0": "Thailand", + "ID_1": 34, + "NAME_1": "Nong Bua Lam Phu", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "หนองบัวลำพู", + "VARNAME_1": "Nong Bua Lamphu" + } + }, + { + "arcs": [[169, 170, -117, 171, -18]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-43", + "NAME_0": "Thailand", + "ID_1": 35, + "NAME_1": "Nong Khai", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "หนองคาย", + "VARNAME_1": "" + } + }, + { + "arcs": [[-14, -142, 172, 173]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-12", + "NAME_0": "Thailand", + "ID_1": 36, + "NAME_1": "Nonthaburi", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "นนทบุรี", + "VARNAME_1": "" + } + }, + { + "arcs": [[-139, -32, -15, -174, 174, 175]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-13", + "NAME_0": "Thailand", + "ID_1": 37, + "NAME_1": "Pathum Thani", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ปทุมธานี", + "VARNAME_1": "" + } + }, + { + "arcs": [[-168, 176, 177, 178]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-94", + "NAME_0": "Thailand", + "ID_1": 38, + "NAME_1": "Pattani", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ปัตตานี", + "VARNAME_1": "" + } + }, + { + "arcs": [ + [[179]], + [[180]], + [[181]], + [[182]], + [[183]], + [[184]], + [[185]], + [[186, -109, 187, 188]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 228, + "ISO": "TH-82", + "NAME_0": "Thailand", + "ID_1": 39, + "NAME_1": "Phangnga", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "พังงา", + "VARNAME_1": "" + } + }, + { + "arcs": [[189, 190, 191, -158]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-93", + "NAME_0": "Thailand", + "ID_1": 40, + "NAME_1": "Phatthalung", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "พัทลุง", + "VARNAME_1": "" + } + }, + { + "arcs": [[-164, 192, -111, -60, 193]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-56", + "NAME_0": "Thailand", + "ID_1": 41, + "NAME_1": "Phayao", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "พะเยา", + "VARNAME_1": "" + } + }, + { + "arcs": [[-94, -41, -128, -152, 194, 195, -120]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-67", + "NAME_0": "Thailand", + "ID_1": 42, + "NAME_1": "Phetchabun", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "เพชรบูรณ์", + "VARNAME_1": "" + } + }, + { + "arcs": [[196, 197, 198, 199, 200]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-76", + "NAME_0": "Thailand", + "ID_1": 43, + "NAME_1": "Phetchaburi", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "เพชรบุรี", + "VARNAME_1": "Petchburi" + } + }, + { + "arcs": [[-195, -156, -82, 201]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-66", + "NAME_0": "Thailand", + "ID_1": 44, + "NAME_1": "Phichit", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "พิจิตร", + "VARNAME_1": "" + } + }, + { + "arcs": [[-121, -196, -202, -81, 202, 203, 204]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-65", + "NAME_0": "Thailand", + "ID_1": 45, + "NAME_1": "Phitsanulok", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "พิษณุโลก", + "VARNAME_1": "Bisnulok|Phisanulauk|Phitsnulok|Pitsanuloke" + } + }, + { + "arcs": [[-125, 205, -175, -173, -146, 206, -6]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-14", + "NAME_0": "Thailand", + "ID_1": 46, + "NAME_1": "Phra Nakhon Si Ayutthaya", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "พระนครศรีอยุธยา", + "VARNAME_1": "Ayudhya|Ayutthaya" + } + }, + { + "arcs": [[-163, 207, 208, -112, -193]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-54", + "NAME_0": "Thailand", + "ID_1": 47, + "NAME_1": "Phrae", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "แพร่", + "VARNAME_1": "" + } + }, + { + "arcs": [[[209]], [[210]], [[211]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 228, + "ISO": "TH-83", + "NAME_0": "Thailand", + "ID_1": 48, + "NAME_1": "Phuket", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ภูเก็ต", + "VARNAME_1": "" + } + }, + { + "arcs": [[212, -26, -138, -150]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-25", + "NAME_0": "Thailand", + "ID_1": 49, + "NAME_1": "Prachin Buri", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ปราจีนบุรี", + "VARNAME_1": "" + } + }, + { + "arcs": [[213, -74, 214, -199]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-77", + "NAME_0": "Thailand", + "ID_1": 50, + "NAME_1": "Prachuap Khiri Khan", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ประจวบคีรีขันธ์", + "VARNAME_1": "" + } + }, + { + "arcs": [[[215]], [[216]], [[-72, 217, -189, 218]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 228, + "ISO": "TH-85", + "NAME_0": "Thailand", + "ID_1": 51, + "NAME_1": "Ranong", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ระนอง", + "VARNAME_1": "" + } + }, + { + "arcs": [[219, 220, -201, 221, -89, -144]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-70", + "NAME_0": "Thailand", + "ID_1": 52, + "NAME_1": "Ratchaburi", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ราชบุรี", + "VARNAME_1": "" + } + }, + { + "arcs": [[-49, 222, -68]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-21", + "NAME_0": "Thailand", + "ID_1": 53, + "NAME_1": "Rayong", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ระยอง", + "VARNAME_1": "" + } + }, + { + "arcs": [[223, 224, 225, -131, -77, -135]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-45", + "NAME_0": "Thailand", + "ID_1": 54, + "NAME_1": "Roi Et", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ร้อยเอ็ด", + "VARNAME_1": "" + } + }, + { + "arcs": [[-22, 226, -51, -27, -213, -149]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-27", + "NAME_0": "Thailand", + "ID_1": 55, + "NAME_1": "Sa Kaeo", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "สระแก้ว", + "VARNAME_1": "Srakaeo" + } + }, + { + "arcs": [[-147, -136, -75, 227, -170, -17]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-47", + "NAME_0": "Thailand", + "ID_1": 56, + "NAME_1": "Sakon Nakhon", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "สกลนคร", + "VARNAME_1": "" + } + }, + { + "arcs": [[-31, 228, -10]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-11", + "NAME_0": "Thailand", + "ID_1": 57, + "NAME_1": "Samut Prakan", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "สมุทรปราการ", + "VARNAME_1": "" + } + }, + { + "arcs": [[229, 230, -220, -143, -12]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-74", + "NAME_0": "Thailand", + "ID_1": 58, + "NAME_1": "Samut Sakhon", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "สมุทรสาคร", + "VARNAME_1": "Samudrasagara" + } + }, + { + "arcs": [[-231, 231, -197, -221]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-75", + "NAME_0": "Thailand", + "ID_1": 59, + "NAME_1": "Samut Songkhram", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "สมุทรสงคร", + "VARNAME_1": "" + } + }, + { + "arcs": [[-151, -140, -176, -206, -124]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-19", + "NAME_0": "Thailand", + "ID_1": 60, + "NAME_1": "Saraburi", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "สระบุรี", + "VARNAME_1": "Sara Buri" + } + }, + { + "arcs": [[[232]], [[233]], [[234]], [[235]], [[236]], [[237]], [[238, -191, 239, 240]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 228, + "ISO": "TH-91", + "NAME_0": "Thailand", + "ID_1": 61, + "NAME_1": "Satun", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "สตูล", + "VARNAME_1": "" + } + }, + { + "arcs": [[241, 242, 243, 244, -225]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-33", + "NAME_0": "Thailand", + "ID_1": 62, + "NAME_1": "Sisaket", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ศรีสะเกษ", + "VARNAME_1": "Si Sa Ket" + } + }, + { + "arcs": [[-126, -8, 245, -34, -153]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-17", + "NAME_0": "Thailand", + "ID_1": 63, + "NAME_1": "Sing Buri", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "สิงห์บุรี", + "VARNAME_1": "" + } + }, + { + "arcs": [[[246]], [[247, -178, 248, 249, -240, -190, -157]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 228, + "ISO": "TH-90", + "NAME_0": "Thailand", + "ID_1": 64, + "NAME_1": "Songkhla", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "สงขลา", + "VARNAME_1": "" + } + }, + { + "arcs": [[250, -203, -85, 251, -113, -209]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-64", + "NAME_0": "Thailand", + "ID_1": 65, + "NAME_1": "Sukhothai", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "สุโขทัย", + "VARNAME_1": "" + } + }, + { + "arcs": [[-35, -246, -7, -207, -145, -87, 252]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-72", + "NAME_0": "Thailand", + "ID_1": 66, + "NAME_1": "Suphan Buri", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "สุพรรณบุรี", + "VARNAME_1": "" + } + }, + { + "arcs": [[[253]], [[254, -160, -110, -187, -218, -71]], [[255]], [[256]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 228, + "ISO": "TH-84", + "NAME_0": "Thailand", + "ID_1": 67, + "NAME_1": "Surat Thani", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "สุราษฎร์ธานี", + "VARNAME_1": "" + } + }, + { + "arcs": [[-226, -245, 257, -20, -132]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-32", + "NAME_0": "Thailand", + "ID_1": 68, + "NAME_1": "Surin", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "สุรินทร์", + "VARNAME_1": "" + } + }, + { + "arcs": [[-56, -116, -114, -252, -84, -155, 258, -91, 259, -129]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-63", + "NAME_0": "Thailand", + "ID_1": 69, + "NAME_1": "Tak", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ตาก", + "VARNAME_1": "" + } + }, + { + "arcs": [[[260]], [[261]], [[262]], [[263]], [[-192, -239, 264, -107, -159]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 228, + "ISO": "TH-92", + "NAME_0": "Thailand", + "ID_1": 70, + "NAME_1": "Trang", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ตรัง", + "VARNAME_1": "" + } + }, + { + "arcs": [[[265]], [[266]], [[267]], [[268, -43, 269, -45, 270, -46, -53]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 228, + "ISO": "TH-23", + "NAME_0": "Thailand", + "ID_1": 71, + "NAME_1": "Trat", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ตราด", + "VARNAME_1": "" + } + }, + { + "arcs": [[-243, 271, -2, 272]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-34", + "NAME_0": "Thailand", + "ID_1": 72, + "NAME_1": "Ubon Ratchathani", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "อุบลราชธานี", + "VARNAME_1": "" + } + }, + { + "arcs": [[-228, -80, -97, -169, -118, -171]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-41", + "NAME_0": "Thailand", + "ID_1": 73, + "NAME_1": "Udon Thani", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "อุดรธานี", + "VARNAME_1": "" + } + }, + { + "arcs": [[-36, -253, -86, -259, -154]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-61", + "NAME_0": "Thailand", + "ID_1": 74, + "NAME_1": "Uthai Thani", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "อุทัยธานี", + "VARNAME_1": "" + } + }, + { + "arcs": [[-204, -251, -208, -162, 273]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-53", + "NAME_0": "Thailand", + "ID_1": 75, + "NAME_1": "Uttaradit", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "อุตรดิตถ์", + "VARNAME_1": "" + } + }, + { + "arcs": [[-167, 274, -249, -177]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-95", + "NAME_0": "Thailand", + "ID_1": 76, + "NAME_1": "Yala", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ยะลา", + "VARNAME_1": "" + } + }, + { + "arcs": [[-3, -272, -242, -224, -134]], + "type": "Polygon", + "properties": { + "ID_0": 228, + "ISO": "TH-35", + "NAME_0": "Thailand", + "ID_1": 77, + "NAME_1": "Yasothon", + "TYPE_1": "Changwat", + "ENGTYPE_1": "Province", + "NL_NAME_1": "ยโสธร", + "VARNAME_1": "" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/timorleste-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/timorleste-topo.json new file mode 100644 index 000000000000..8d14f1905a80 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/timorleste-topo.json @@ -0,0 +1,1585 @@ +{ + "type": "Topology", + "arcs": [ + [ + [10937, 7269], + [26, -126], + [-18, -63], + [-44, -28], + [-14, -43], + [54, -63], + [3, -34], + [53, -71], + [-10, -75], + [49, -104], + [28, -8], + [12, -105], + [23, -14], + [14, -62], + [68, -33], + [25, 6], + [36, -62], + [-13, -74], + [0, -126], + [-12, -21], + [49, -123], + [-68, -66], + [-12, -60] + ], + [ + [11186, 5914], + [-53, -33], + [-54, 53], + [-19, -12], + [-45, 37], + [-50, 1], + [3, -71], + [-19, -50], + [-90, -60], + [-6, -80], + [-27, -11], + [-22, -47], + [-24, -3], + [-33, -47], + [-82, 34] + ], + [ + [10665, 5625], + [12, 40], + [-116, 113], + [-37, -15], + [-35, 11], + [-56, 48], + [-36, 8], + [-71, -39], + [-73, -14], + [-50, -24], + [-26, -40], + [-10, -129], + [-41, -4], + [-118, 18], + [-43, -23], + [-31, 4], + [-20, -53], + [17, -35], + [-2, -94], + [11, -64], + [-75, -37], + [-21, 9], + [-73, -18], + [-36, -45], + [-49, -14], + [-37, -55], + [-40, -5], + [-54, 38], + [-40, -20], + [-38, -48], + [-35, -12], + [-78, 0], + [-37, 11], + [-35, -30] + ], + [ + [9292, 5107], + [-64, -16], + [-28, 175], + [11, 31], + [-21, 54], + [-32, 35], + [-43, 101], + [-43, 9], + [-48, -10], + [-30, 29], + [-7, 78], + [-30, 28], + [44, 73], + [16, 61], + [49, 37], + [-11, 56], + [39, 65], + [-3, 65], + [-69, 54], + [-38, 0], + [-23, 56], + [58, 18], + [82, -23], + [42, 1], + [17, 135], + [65, -32], + [83, 18], + [50, 66], + [53, 48], + [58, 121], + [-3, 56], + [-29, 14], + [-38, 95], + [-17, 76], + [-66, 22], + [-50, 44] + ], + [ + [9266, 6747], + [4, 23], + [65, 4], + [-8, 53], + [18, 38], + [52, 31], + [22, 40] + ], + [ + [9419, 6936], + [31, -1], + [66, -47], + [127, -54], + [69, 31], + [39, 31], + [62, 80], + [11, 44], + [112, 29], + [-37, 76], + [106, 50], + [144, -80], + [30, 11], + [41, 59], + [36, 103], + [31, 9], + [-1, -57], + [77, -78], + [61, -6], + [16, 46], + [-14, 83], + [28, 20], + [47, 79], + [54, -20], + [32, -30], + [76, 12], + [54, -14], + [71, 0], + [69, 12], + [45, -19], + [35, -36] + ], + [ + [10665, 5625], + [-37, -27], + [-58, -5], + [-64, -77], + [-50, -14], + [-11, -37], + [-40, -56], + [17, -27], + [-30, -39], + [32, -76], + [-13, -36], + [32, -68], + [-37, -38], + [18, -45], + [-10, -112], + [40, -20], + [-23, -44], + [4, -112], + [-33, -77], + [-34, -29], + [-67, 51], + [-35, -5], + [-71, -186], + [-49, -4], + [-52, 45], + [-56, 11], + [-24, -34], + [5, -37], + [-47, -59], + [-7, -57], + [-34, -11], + [-7, -65], + [-46, -39], + [-36, -66], + [-11, -81], + [14, -71], + [-26, -103], + [-17, -142], + [36, -29], + [-6, -63], + [24, -48], + [-2, -89], + [103, -67], + [101, -45], + [9, -43], + [50, -55], + [44, 10], + [62, -61], + [80, 27], + [29, -12], + [19, -47], + [63, -34], + [20, -64], + [26, -16], + [4, -105], + [-30, -85], + [-71, -6], + [-38, -40], + [5, -42], + [-22, -49], + [18, -118], + [26, -76], + [4, -70], + [16, -25], + [80, -44], + [75, -120] + ], + [ + [10527, 2417], + [-60, -19], + [-55, -37], + [-81, -4], + [-87, 10], + [-202, 105], + [-70, 14], + [-107, -12], + [-56, -22], + [-98, -72], + [-91, -88], + [-89, -69], + [-183, -18], + [-81, -33] + ], + [ + [9267, 2172], + [20, 84], + [84, 145], + [50, 16], + [28, 64], + [20, 94], + [31, 85], + [-61, 25], + [-34, 62], + [-2, 41], + [-25, 35], + [-166, -8], + [3, 26], + [-135, 96], + [45, 175], + [-9, 66], + [-33, 71], + [13, 46], + [-10, 39], + [-44, 35], + [-27, 50], + [-119, 25], + [-2, 45], + [26, 46], + [-21, 84], + [29, 84], + [-12, 52], + [-30, 31], + [-15, 59], + [-73, 29] + ], + [ + [8798, 3874], + [-23, 29], + [-11, 67], + [37, 74] + ], + [ + [8801, 4044], + [119, 73], + [13, 44], + [36, 45], + [-29, 77], + [53, 83], + [79, 60], + [50, 49], + [7, 64], + [61, 45], + [22, 41], + [-17, 108], + [40, 24], + [37, 81], + [85, 42], + [30, 44], + [-95, 183] + ], + [ + [2555, 2630], + [121, -48], + [74, -20], + [18, -128], + [-30, -87], + [-48, -40], + [-16, -127], + [7, -105], + [-16, -37], + [2, -63], + [-64, -118], + [6, -121], + [41, -135], + [-50, -74], + [-48, 17], + [-43, -65], + [-10, -147], + [-33, 16], + [-49, -6], + [-26, -27], + [-72, -10], + [-36, -35], + [-21, -82], + [-29, -29], + [-65, -33], + [-38, 21], + [-12, -100], + [-28, -48], + [24, -20], + [21, -67], + [-5, -71], + [-79, -91], + [-32, -81], + [-56, -42], + [-20, -37], + [-2, -72], + [67, -58], + [26, -107], + [-56, -38], + [-5, -110], + [-38, -56], + [-44, 22], + [-119, -56], + [-48, -45], + [-83, 12], + [-99, -82], + [-61, 13], + [7, 110], + [24, 72], + [32, 53], + [-30, 114], + [23, 54], + [-18, 50], + [-58, 74], + [4, 79], + [-29, 82], + [-52, 84], + [-6, 51], + [-62, 33], + [-55, 79], + [-31, 10], + [-24, 59], + [-30, -13], + [-89, 79], + [-34, -35], + [-41, -8], + [-5, -48], + [-73, -4], + [-15, -50], + [-52, -37], + [-52, -14], + [-36, -31], + [26, -37], + [-69, -101], + [8, -50], + [-25, -16], + [-153, -43], + [-58, 120], + [-80, 35], + [-40, -19], + [-84, -2], + [-204, 388], + [-47, 59], + [-28, 14], + [-25, 45], + [1, 65], + [119, 30], + [61, 58], + [64, -23], + [80, 26], + [22, 37], + [69, 71], + [73, 5], + [39, 23], + [55, 74], + [126, 13], + [47, 40], + [19, 49], + [37, 46], + [44, 110], + [33, 110], + [98, 29], + [21, 18], + [65, -7], + [47, 51], + [73, 8], + [35, 18], + [106, -12], + [54, 92], + [55, 7], + [98, 60], + [45, 7], + [51, 36], + [19, 69], + [39, 27], + [48, -16], + [72, 31], + [119, 1], + [35, -17], + [93, 0], + [96, 42], + [37, 44], + [32, -6], + [104, 120], + [99, 42], + [83, -11], + [42, 14] + ], + [ + [16842, 8406], + [15, -73], + [33, -21], + [25, -48], + [-9, -41], + [15, -79], + [56, -166], + [87, -53], + [41, -5], + [27, -36], + [-50, -25], + [-38, -62], + [-26, -9], + [3, -93], + [44, -39], + [41, -53], + [71, -24], + [48, -96], + [21, -81], + [76, -41], + [81, -64], + [16, -117], + [41, -16], + [55, -60], + [21, -53], + [23, 4], + [7, -67], + [19, -49], + [-28, -64], + [-28, 11], + [-43, -22], + [-72, -9], + [-28, -26], + [-40, -93], + [-55, -54], + [-14, -80], + [-57, -1], + [-45, -65], + [-17, -72], + [-51, -77], + [-45, -22] + ], + [ + [17062, 6365], + [31, 79], + [-42, 80], + [6, 32], + [-42, 26], + [-65, 90], + [-47, -7], + [-188, 30], + [-57, 47], + [-81, 23], + [-56, -91], + [-111, -30], + [-40, -84], + [10, -104], + [-63, -100], + [-109, 158], + [-49, 58], + [6, 58], + [-27, 11], + [-35, -26], + [-77, -18], + [-52, -55], + [-76, -29], + [-85, -101], + [-69, -5], + [-74, 34], + [-55, 109], + [-6, 28], + [-61, 80], + [-28, 53], + [4, 42], + [-19, 41], + [-1, 47], + [20, 66], + [-66, 46], + [3, 60], + [-28, 80], + [-63, 11], + [8, -39], + [-37, -119], + [18, -77], + [34, -5], + [4, -47], + [-33, -23], + [-52, -116], + [-39, -45], + [-20, -73], + [60, -68], + [5, -108], + [-32, 0], + [-18, -116], + [-33, -18], + [-244, 83], + [-37, 26], + [-18, 85], + [-31, 33], + [0, 60], + [29, 63], + [-38, 0], + [-52, -26], + [-27, -41], + [-57, -1], + [-46, -33], + [-18, -59], + [-94, -50], + [-30, 23], + [-23, 59], + [-70, -21], + [-39, -39], + [-61, -3], + [-106, 94], + [-53, 4], + [-51, -72], + [-12, -50], + [-31, -16], + [-22, -49], + [-60, -5], + [-21, 69], + [-79, -11], + [-49, 18], + [-32, -106], + [-92, 14], + [-23, 70], + [-51, 6], + [-40, -47], + [-49, 31], + [-54, 7], + [-27, 49], + [-38, 33], + [-42, -22], + [-41, 49], + [-33, 0] + ], + [ + [13373, 6475], + [16, 46], + [83, 77], + [7, 18], + [70, 29], + [25, 60], + [48, 48], + [35, 73], + [-4, 83], + [-19, 44], + [35, 42], + [-23, 79], + [29, 126], + [-63, 86], + [-17, 92], + [-10, 211], + [9, 36], + [-93, 90], + [-29, 44], + [-26, 94] + ], + [ + [13446, 7853], + [54, -1], + [79, -49], + [46, -3], + [108, 61], + [127, -31], + [46, -27], + [66, 31], + [72, 96], + [35, -5], + [115, 44], + [83, 75], + [51, 80], + [53, 42], + [99, 33], + [108, 16], + [38, 82], + [74, 89], + [95, 36], + [47, -41], + [28, 29], + [109, 47], + [92, 31], + [65, -46], + [55, -13], + [41, -26], + [88, -89], + [30, -4], + [60, -41], + [90, -15], + [44, -23], + [85, -20], + [83, -61], + [40, -55], + [53, -7], + [43, -31], + [96, -92], + [52, 7], + [37, -12], + [87, 93], + [105, 4], + [63, 73], + [141, 67], + [47, 6], + [129, 105], + [39, 9], + [62, 41], + [136, 48] + ], + [ + [7275, 5847], + [41, -77], + [32, -34], + [58, 19], + [154, -18], + [95, -102], + [53, -73], + [86, -175], + [48, -85], + [14, -67], + [8, -144], + [74, -93], + [-4, -157], + [36, -84], + [79, -32], + [13, -16], + [8, -92], + [26, -8], + [61, -106], + [-44, -48], + [-29, -64], + [59, -112], + [5, -56], + [69, -63], + [34, -96], + [-7, -59], + [42, -41], + [88, 13], + [66, 60], + [71, 3], + [16, 14], + [84, 10], + [90, 35], + [72, -49], + [28, -6] + ], + [ + [8798, 3874], + [17, -31], + [14, -86], + [-84, -140], + [-54, 71], + [-10, 68], + [-25, 20], + [-47, -95], + [-26, -11], + [-4, -55], + [-55, -65], + [-56, -22], + [-44, -84], + [-14, -53], + [25, -74], + [-42, -70], + [22, -70], + [30, -49], + [-23, -91], + [-31, -38], + [-30, -83], + [-68, 30], + [-56, 6], + [-18, -23], + [-45, 1], + [-31, -64], + [-45, -35], + [-21, -78], + [7, -40], + [88, -60], + [60, -12], + [77, -55], + [-50, -89], + [8, -25], + [-43, -62], + [-29, -21], + [-42, 23], + [-53, -2], + [-54, -32], + [-46, -46], + [-29, 17], + [-86, 17], + [-36, -37], + [-11, -40], + [-72, 53], + [-50, -28], + [-52, -47], + [-33, 47], + [-29, -34], + [-96, 54], + [-6, 38], + [41, 108], + [-12, 48], + [-40, 37], + [-82, 37], + [-93, 13], + [-76, 47], + [-30, -28] + ], + [ + [7208, 2634], + [-18, 67], + [15, 91], + [-17, 14], + [-36, 162], + [10, 32], + [44, 18], + [-37, 82], + [30, 47], + [14, 129], + [27, 28], + [18, 54], + [-17, 48], + [-1, 58], + [26, 21], + [2, 89], + [-29, 70], + [-1, 83], + [-80, 65], + [-59, 61], + [-87, 110], + [-70, -2], + [-49, 48], + [-1, 41], + [-50, 50], + [-6, 59], + [-57, 29], + [-48, -46], + [-18, -72], + [3, -45], + [-23, -87], + [-66, -102], + [-40, -21], + [-38, -60], + [-43, -40], + [-66, 3], + [-38, -37], + [-95, -10], + [-39, -39], + [-11, -44], + [-41, 12], + [-14, -56], + [-67, -3], + [-36, -98], + [-54, -19], + [-37, 10], + [-41, -19], + [-54, 18], + [-21, 40], + [-102, 1], + [-22, 77], + [-35, -11], + [-45, 23], + [9, 62], + [-62, 84], + [0, 78], + [33, 14], + [-2, 122], + [-24, 7], + [52, 129], + [57, 110], + [10, 64], + [30, 91], + [70, 30], + [17, -7], + [47, 53], + [18, 83], + [34, 25], + [20, 46], + [23, 119], + [53, 93], + [0, 39], + [23, 73], + [4, 104], + [49, 78], + [80, 93], + [38, 33], + [27, 49], + [35, 31], + [90, -7], + [89, 37], + [57, 60], + [98, 121], + [25, 63], + [1, 50], + [-29, 240], + [-8, 123] + ], + [ + [6652, 5953], + [8, 31], + [52, -16], + [83, 9], + [42, -6], + [25, -34], + [74, -19], + [60, -53], + [91, 7], + [57, -20], + [70, 40], + [61, -45] + ], + [ + [9267, 2172], + [-50, -23], + [-97, -64], + [-101, -85], + [-93, -58], + [-143, -48], + [-67, 6], + [-149, -23], + [-99, -51], + [-116, -96], + [-71, -80], + [-56, -46], + [-162, -108], + [-110, -114], + [-29, -43], + [-57, -121], + [-39, -44], + [-39, 23], + [-53, -21], + [-42, -60], + [-25, -67], + [-80, -84], + [-75, -96], + [-126, -147], + [-95, 21], + [-63, -17], + [-145, -19], + [-124, -43], + [-124, -80], + [-66, -61], + [-104, -131], + [-31, -49], + [-32, 87], + [-30, 51], + [11, 78], + [-15, 53], + [16, 31], + [-17, 38], + [19, 26], + [-28, 64], + [16, 119], + [-29, 51], + [-29, 10], + [-34, 79], + [-82, 75], + [-16, 81], + [15, 169], + [-18, 46], + [-74, 45], + [-53, 17], + [-38, 39], + [-31, 64], + [-52, 33], + [-28, 41], + [-59, -1], + [-15, 31], + [22, 92], + [-54, 81], + [-12, 103], + [-20, 38], + [-12, 111], + [-28, 20], + [23, 50], + [-6, 64], + [18, 147], + [30, 46], + [-2, 61], + [40, 104], + [38, -14], + [68, -2], + [18, 37], + [78, -13], + [44, 9], + [15, -30], + [84, 21], + [24, 18], + [99, -53], + [41, -2], + [30, -98], + [71, -52], + [52, -73], + [27, 72], + [90, 72], + [31, 10], + [75, 77], + [97, 29], + [59, -17], + [105, -1], + [30, 57] + ], + [ + [9419, 6936], + [-50, 6], + [-19, 24], + [12, 51], + [-7, 43], + [19, 51], + [-15, 56], + [-67, 28], + [-3, 46], + [-85, 101], + [27, 43] + ], + [ + [9231, 7385], + [62, -5], + [64, 85], + [100, 69], + [153, -83], + [77, -6], + [49, -38], + [69, 45], + [35, -3], + [67, 23], + [24, -6], + [40, 72], + [3, 39], + [-33, 19], + [-2, 76], + [39, -21], + [41, 19], + [2, -44], + [84, -16], + [82, 15], + [70, -9], + [46, 11], + [113, -89], + [90, 20], + [133, 110], + [33, -54], + [47, 46], + [78, -16], + [52, 32], + [56, 61], + [173, 67], + [95, -11], + [46, 20], + [79, 88], + [35, -9], + [40, 40] + ], + [ + [11373, 7932], + [62, -54], + [36, -75], + [65, -57], + [-23, -69], + [11, -31], + [-47, -52], + [-40, -10], + [-51, -64], + [-49, 30], + [-39, -33], + [-91, -8], + [-47, -46], + [-46, 0], + [-12, 24], + [-50, 7], + [-19, -32], + [-4, -69], + [-34, -90], + [-58, -34] + ], + [ + [10114, 10726], + [15, -46], + [15, -114], + [-9, -27], + [28, -96], + [-22, -25], + [-1, -47], + [-37, -78], + [-5, -75], + [-53, -60], + [-26, -55], + [-27, -18], + [-47, -95], + [-20, -216], + [14, -45], + [-65, -247], + [-104, -156], + [-43, -15], + [-94, 17], + [-45, 65], + [-159, 10], + [-147, 165], + [-33, 96], + [24, 43], + [86, 80], + [24, 51], + [10, 109], + [83, 55], + [82, 2], + [41, 90], + [22, 11], + [18, 69], + [99, 130], + [49, 48], + [31, 99], + [46, 31], + [65, 74], + [73, 124], + [112, 46] + ], + [ + [7275, 5847], + [44, 73], + [76, 54], + [47, -5], + [37, 29], + [59, -2], + [27, 14], + [92, 2], + [85, 76], + [31, -16], + [44, 10], + [68, 53], + [36, 63], + [64, 38], + [32, -10], + [37, 75], + [55, 6], + [21, -24], + [70, 20], + [50, -15], + [32, -56], + [62, 2], + [-4, 31], + [79, -11], + [62, 77], + [107, 21], + [14, 32], + [-5, 73], + [34, 57], + [48, -35], + [77, 44], + [61, 52], + [19, 51], + [48, 23], + [24, 41], + [52, -28], + [29, 28], + [47, -11], + [18, 25], + [99, 0], + [46, 36], + [53, -12], + [14, 19] + ], + [ + [20835, 8514], + [49, -28], + [35, -44], + [32, -90], + [-17, -85], + [-43, -11], + [-16, -31], + [-61, 14], + [-75, 84], + [-5, 104], + [9, 41], + [49, 43], + [43, 3] + ], + [ + [17102, 5824], + [-14, 24], + [19, 58], + [9, 117], + [-29, 9], + [5, 81], + [-35, 40], + [10, 42], + [-10, 126], + [5, 44] + ], + [ + [16842, 8406], + [77, 44], + [51, 59], + [22, 5], + [67, 61], + [46, -1], + [35, -57], + [58, -56], + [101, -34], + [51, 30], + [64, 2], + [54, 68], + [46, 29], + [73, -2], + [56, 40], + [37, 4], + [30, 35], + [28, 1], + [59, 35], + [67, 67], + [153, 97], + [42, -4], + [47, 39], + [65, 32], + [71, 66], + [111, 116], + [100, 39], + [62, 46], + [279, 36], + [55, -39], + [79, -82], + [48, -21], + [32, 12], + [70, -34], + [42, -69], + [62, -83], + [50, -10], + [70, 10], + [46, -28], + [57, 5], + [109, -16], + [115, 20], + [73, 29], + [150, 164], + [22, 4], + [48, 50], + [34, -18], + [70, 3], + [35, -39], + [13, -57], + [81, -104], + [26, -49], + [82, -84], + [58, -3], + [85, -47], + [56, 6], + [44, -28], + [66, 13], + [58, -19], + [43, -42], + [8, -124], + [16, -62], + [-5, -103], + [-48, -44], + [-44, -1], + [-68, -31], + [-42, -54], + [-10, -62], + [-62, -81], + [-82, -65], + [-92, -37], + [-16, -47], + [-34, -41], + [-72, -60], + [-25, -87], + [-138, -143], + [-75, -38], + [-50, -59], + [-134, -82], + [-30, -46], + [-50, -15], + [-39, -60], + [-42, -26], + [-88, -89], + [-20, -41], + [-101, -95], + [-12, -35], + [-95, -115], + [-71, -109], + [-49, -96], + [-69, -65], + [-93, -103], + [-45, -122], + [-36, -39], + [-66, 35], + [-41, -4], + [-54, 22], + [-57, 2], + [-97, -11], + [-55, -21], + [-127, -76], + [-80, -80], + [-38, -55], + [-64, -4], + [-129, -95], + [-59, -79], + [-77, -80], + [-89, -63], + [-99, -32], + [-44, -4], + [-39, -32], + [-39, 2], + [-31, 33], + [-66, 11], + [-55, -12], + [-60, 16], + [-47, 53], + [-89, -1], + [-79, -37], + [-64, -43], + [-13, 9] + ], + [ + [6652, 5953], + [-6, 41], + [26, 32], + [33, 150], + [0, 113], + [-16, 62], + [53, 86], + [14, 78], + [34, 93], + [39, 50], + [24, 78], + [129, 41], + [59, 48], + [89, 40], + [170, 89], + [62, 9], + [46, 36], + [115, 3], + [61, 13], + [62, -6], + [53, 12], + [92, -17], + [168, 24], + [77, 101], + [69, -15], + [37, 7], + [37, 52], + [80, 0], + [38, 28], + [110, 26], + [46, 25], + [65, 57], + [203, 32], + [73, -30], + [92, -20], + [28, -25], + [102, 28], + [53, -1], + [12, -48], + [38, 3], + [35, 63], + [14, 80], + [63, -6] + ], + [ + [13373, 6475], + [-44, 45], + [-68, -22], + [-44, 24], + [-105, -51], + [-25, -67], + [-35, -35], + [-27, -164], + [13, -35], + [-4, -85], + [-33, -24], + [-17, -58], + [-79, -95], + [-36, -25], + [-55, -63], + [-27, 2], + [-37, -52], + [-31, -84], + [33, -107], + [-25, -59], + [45, -32], + [8, -36], + [62, -50], + [58, -77], + [-4, -87], + [24, -36], + [69, -36], + [33, -54], + [-10, -75], + [-26, -40], + [24, -65], + [-49, -84], + [47, -74], + [2, -45], + [33, -46], + [17, -52], + [2, -99], + [25, -106], + [-2, -35], + [28, -49], + [58, -14], + [48, -31], + [44, -72], + [80, -68], + [-13, -20], + [5, -72], + [43, -20], + [28, -41] + ], + [ + [13406, 4004], + [-75, -31], + [-64, -39], + [-224, -175], + [-55, -55], + [-29, -54], + [-108, -142], + [-37, -22] + ], + [ + [12814, 3486], + [-43, 163], + [-34, 18], + [-22, 95], + [-19, 41], + [-51, 8], + [-8, 43], + [-110, 147], + [-29, -9], + [-89, 51], + [-4, 16], + [-110, 98], + [-126, 59], + [-83, 98], + [-15, 82], + [-50, 16], + [2, 39], + [-56, 81], + [39, 82], + [-133, 116], + [-37, 12], + [-23, 38], + [-58, 27], + [-46, -7], + [-63, 37], + [-56, -10], + [-66, 30], + [-127, 22], + [-20, -33], + [-39, 23], + [-3, 149], + [-67, 80], + [-38, 74], + [-36, 37], + [15, 75], + [-30, 21], + [-24, 81], + [52, 58], + [-2, 23], + [48, 96], + [27, 77], + [-40, 13], + [5, 84], + [42, 79], + [2, 34], + [-30, 31], + [-24, -33], + [-29, 11], + [-20, 55] + ], + [ + [11373, 7932], + [115, 84], + [238, -17], + [23, 15], + [68, 2], + [25, -26], + [94, -15], + [86, 15], + [24, 18], + [55, -18], + [58, -52], + [45, 3], + [37, -25], + [57, 25], + [55, -37], + [43, -65], + [89, -38], + [31, -50], + [87, -29], + [98, 2], + [39, -33], + [89, 33], + [24, -18], + [1, -58], + [41, 39], + [123, -15], + [42, 52], + [38, 24], + [37, -7], + [61, 50], + [39, 5], + [51, -35], + [60, 54], + [75, 3], + [25, 35] + ], + [ + [12814, 3486], + [-18, -21], + [-128, -66], + [-82, -10], + [5, -39], + [-180, -204], + [-87, -78], + [-135, -68], + [-124, -107], + [-46, -13], + [-196, 7], + [-90, 19], + [-88, 35], + [-145, 22], + [-79, -28], + [-41, -48], + [-57, -43], + [-16, -52], + [-53, -42], + [-49, 39], + [-35, 7], + [-76, -14], + [-78, -49], + [-43, 0], + [-28, -56], + [-70, -40], + [-69, -7], + [-51, 21], + [-68, -24], + [-79, -88], + [-81, -122] + ], + [ + [17102, 5824], + [-179, -5], + [-205, -53], + [-88, -48], + [-78, -62], + [-36, -13], + [-94, -82], + [-44, -59], + [-41, -36], + [-121, 24], + [-64, -20], + [-27, -31], + [-53, -95], + [-48, -22], + [-129, -193], + [-61, -103], + [-84, -157], + [-27, -69], + [-70, -114], + [-28, -98], + [-45, -119], + [-75, -70], + [-44, -57], + [-76, -9], + [-72, -26], + [-42, 34], + [-22, -12], + [-63, 15], + [-47, -24], + [-58, 24], + [-111, -19], + [-72, -31], + [-32, -1], + [-128, -48], + [-373, -168], + [-161, -7], + [-54, 15], + [-223, 32], + [-138, 11], + [-104, 0], + [-123, -41], + [-69, -44], + [-87, -39] + ] + ], + "transform": { + "scale": [0.0001573528709846786, 0.00012845422338243526], + "translate": [124.0452, -9.5047] + }, + "objects": { + "timorleste": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5]], + "type": "Polygon", + "properties": { "NAME": "Aileu", "ISO": "TL-AL" } + }, + { + "arcs": [[6, 7, 8, 9, 10, -3]], + "type": "Polygon", + "properties": { "NAME": "Ainaro", "ISO": "TL-AN" } + }, + { "arcs": [[11]], "type": "Polygon", "properties": { "NAME": "Oecusse", "ISO": "TL-OE" } }, + { + "arcs": [[12, 13, 14, 15]], + "type": "Polygon", + "properties": { "NAME": "Baucau", "ISO": "TL-BA" } + }, + { + "arcs": [[16, -10, 17, 18, 19]], + "type": "Polygon", + "properties": { "NAME": "Bobonaro", "ISO": "TL-BO" } + }, + { + "arcs": [[20, -18, -9]], + "type": "Polygon", + "properties": { "NAME": "Covalima", "ISO": "TL-CO" } + }, + { + "arcs": [[[-6, 21, 22, 23]], [[24]]], + "type": "MultiPolygon", + "properties": { "NAME": "Dili", "ISO": "TL-DI" } + }, + { + "arcs": [[-11, -17, 25, -4]], + "type": "Polygon", + "properties": { "NAME": "Ermera", "ISO": "TL-ER" } + }, + { + "arcs": [[[26]], [[27, -13, 28]]], + "type": "MultiPolygon", + "properties": { "NAME": "Lautem", "ISO": "TL-LA" } + }, + { + "arcs": [[-22, -5, -26, -20, 29]], + "type": "Polygon", + "properties": { "NAME": "Liquica", "ISO": "TL-LI" } + }, + { + "arcs": [[-15, 30, 31, 32, -1, -24, 33]], + "type": "Polygon", + "properties": { "NAME": "Manatuto", "ISO": "TL-MT" } + }, + { + "arcs": [[-33, 34, -7, -2]], + "type": "Polygon", + "properties": { "NAME": "Manufahi", "ISO": "TL-MF" } + }, + { + "arcs": [[-28, 35, -31, -14]], + "type": "Polygon", + "properties": { "NAME": "Viqueque", "ISO": "TL-VI" } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/uk-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/uk-topo.json new file mode 100644 index 000000000000..1febc029e672 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/uk-topo.json @@ -0,0 +1,12370 @@ +{ + "type": "Topology", + "arcs": [ + [ + [12941, 4355], + [11, -91], + [50, -25], + [-31, -66], + [-9, -56] + ], + [ + [12962, 4117], + [-70, 14] + ], + [ + [12892, 4131], + [-31, -5] + ], + [ + [12861, 4126], + [-34, 83] + ], + [ + [12827, 4209], + [78, 31], + [15, 97], + [21, 18] + ], + [ + [8711, 3636], + [-4, 59], + [52, -4], + [49, 21], + [20, 84] + ], + [ + [8828, 3796], + [105, -5], + [33, 35], + [25, 65] + ], + [ + [8991, 3891], + [29, -34], + [156, -7], + [173, 45] + ], + [ + [9349, 3895], + [0, -124], + [-79, -65], + [55, -18], + [10, -39] + ], + [ + [9335, 3649], + [-83, -64], + [-87, -2], + [-27, -44], + [-51, -24], + [-45, 7], + [-7, 35], + [-69, 28], + [-76, -44], + [-44, 0], + [-70, 74], + [-65, 21] + ], + [ + [12148, 5186], + [-27, -14], + [-91, -5], + [-18, -61], + [8, -60], + [28, -50] + ], + [ + [12048, 4996], + [-44, -33], + [-13, -51], + [-35, -33], + [-28, 45] + ], + [ + [11928, 4924], + [-40, 91], + [-62, 65], + [-33, -9], + [-53, 51], + [-40, 17], + [46, 116] + ], + [ + [11746, 5255], + [23, 36], + [-19, 68], + [29, 42], + [7, 62], + [-42, 27], + [54, 84], + [71, 65], + [-21, 55], + [-64, 73], + [15, 73], + [-49, 46] + ], + [ + [11750, 5886], + [29, 61], + [-10, 111], + [75, 18], + [47, -47], + [50, 32], + [0, 59], + [32, 51], + [66, 15] + ], + [ + [12039, 6186], + [43, -29], + [16, -51], + [70, -26], + [4, -67], + [20, -38], + [91, -8], + [2, -55], + [58, -28], + [28, -49], + [-19, -32], + [59, -25], + [-15, -46], + [128, -30], + [-23, -133] + ], + [ + [12501, 5569], + [-87, -101], + [6, -53], + [-54, -35], + [-26, -46], + [-52, 39], + [-31, -25], + [-54, -7], + [5, -47], + [-25, -35], + [-37, 56], + [-19, -93], + [21, -36] + ], + [ + [10521, 3668], + [-17, 87], + [-52, 29], + [-44, 90], + [61, 35], + [-10, 66], + [-32, 26], + [-44, 107] + ], + [ + [10383, 4108], + [-6, 37] + ], + [ + [10377, 4145], + [25, 73], + [49, 13], + [70, -10], + [56, -36], + [45, 19], + [45, -11], + [33, 23], + [39, -20], + [25, 33], + [48, -3], + [37, -42], + [56, 2], + [63, -26], + [53, 22], + [23, -54], + [47, -56], + [55, -10], + [118, -93], + [17, -3], + [96, 70], + [57, 69], + [-32, 69], + [-2, 51] + ], + [ + [11400, 4225], + [60, -24], + [77, 6], + [39, 41], + [92, 3], + [34, -48], + [-26, -91], + [65, -61], + [55, 0], + [-30, 58], + [-1, 59], + [41, 10], + [81, -21], + [6, -46], + [50, 6], + [16, -79] + ], + [ + [11959, 4038], + [-20, -115], + [-64, 30], + [-30, -43], + [-13, -58], + [-31, -41], + [-56, -14], + [-93, -48], + [-66, -84] + ], + [ + [11586, 3665], + [-80, 46], + [-99, 6], + [-48, 23], + [-70, -8], + [-44, 13], + [-53, -19], + [-41, 48], + [-75, -5], + [-14, -43], + [-185, 36], + [-227, 4], + [-55, -46], + [5, -46], + [-79, -6] + ], + [ + [12835, 3924], + [11, 88], + [49, 28], + [-3, 91] + ], + [ + [12962, 4117], + [37, -60], + [49, 15] + ], + [ + [13048, 4072], + [-1, -41] + ], + [ + [13047, 4031], + [-19, -42], + [-74, -102], + [8, -48] + ], + [ + [12962, 3839], + [-41, 34], + [-50, 8], + [-36, 43] + ], + [ + [9236, 9682], + [-29, -77], + [-86, 24], + [-43, -52], + [-60, 8] + ], + [ + [9018, 9585], + [-33, 68], + [2, 218], + [43, 62], + [74, 27], + [42, -18], + [56, -149], + [34, -111] + ], + [ + [9932, 2072], + [-53, 16], + [2, 78] + ], + [ + [9881, 2166], + [74, 4], + [79, -34], + [36, -50] + ], + [ + [10070, 2086], + [-56, 5], + [-82, -19] + ], + [ + [12367, 4169], + [-85, 8], + [-46, 51] + ], + [ + [12236, 4228], + [29, 73], + [33, 10], + [24, 50] + ], + [ + [12322, 4361], + [34, -72], + [58, -56] + ], + [ + [12414, 4233], + [38, -60] + ], + [ + [12452, 4173], + [-47, -16] + ], + [ + [12405, 4157], + [-38, 12] + ], + [ + [12742, 2256], + [-152, 65], + [-106, 32], + [-74, 10] + ], + [ + [12410, 2363], + [-34, 79], + [25, 47], + [47, -7], + [43, 49], + [35, -23] + ], + [ + [12526, 2508], + [111, -89], + [63, -61], + [42, -102] + ], + [ + [8828, 3796], + [4, 157], + [-55, 62], + [-56, 35], + [-38, 43] + ], + [ + [8683, 4093], + [71, 99] + ], + [ + [8754, 4192], + [25, -38], + [140, -87], + [79, -38], + [-7, -138] + ], + [ + [12736, 3638], + [-19, 64], + [-46, 91], + [-43, 36], + [-24, 50] + ], + [ + [12604, 3879], + [2, 13] + ], + [ + [12606, 3892], + [12, 5] + ], + [ + [12618, 3897], + [65, -6], + [39, -20], + [32, 70] + ], + [ + [12754, 3941], + [81, -17] + ], + [ + [12962, 3839], + [-16, -113], + [-87, -113], + [-4, -59], + [-58, 5] + ], + [ + [12797, 3559], + [-47, -1], + [-14, 80] + ], + [ + [11988, 4335], + [32, -106], + [-19, -143], + [-19, -43] + ], + [ + [11982, 4043], + [-23, -5] + ], + [ + [11400, 4225], + [-60, 57], + [30, 50], + [-48, 75], + [20, 41], + [14, 83], + [66, -7], + [-12, 134], + [-40, 62], + [-79, 41], + [-78, -10], + [-33, -23], + [-38, 20], + [-20, 56], + [-43, 17], + [-11, 151], + [69, -37], + [33, 24], + [-23, 117], + [-28, 50], + [9, 56], + [42, 52], + [-52, 33], + [43, 104], + [-81, 42] + ], + [ + [11080, 5413], + [-50, 22], + [67, 68], + [89, 25], + [19, 28], + [48, -4], + [74, 23], + [58, -138], + [50, 40] + ], + [ + [11435, 5477], + [44, -59], + [88, -88], + [83, -70], + [96, -5] + ], + [ + [11928, 4924], + [-27, 6], + [-40, -53], + [-110, 26], + [-33, 46], + [2, 36], + [-57, 13], + [-25, -53], + [30, -48], + [47, -34], + [7, -68], + [62, -53], + [63, 1], + [60, -85], + [16, -107], + [58, -18], + [-38, -69], + [8, -86], + [37, -43] + ], + [ + [13377, 6504], + [-81, -62], + [-4, -46], + [43, -89], + [41, -41], + [-19, -78], + [57, -3], + [56, -69], + [-22, -43], + [-96, -29], + [-70, 60], + [-49, -50], + [63, -84], + [51, 33], + [52, 5], + [63, -30], + [18, -46], + [-28, -86], + [1, -42], + [-55, 8], + [-44, -49], + [-6, -40], + [-44, -64], + [16, -116] + ], + [ + [13320, 5543], + [-64, -40], + [-59, 78], + [-57, 28], + [-46, -21], + [-72, 12], + [-20, -64], + [-80, -38], + [-49, 33], + [3, -71], + [-41, -64] + ], + [ + [12835, 5396], + [-43, 105], + [-92, 22], + [-27, -30], + [-56, -16], + [-62, -37], + [-39, 62], + [-15, 67] + ], + [ + [12039, 6186], + [-4, 38], + [-36, 64], + [2, 44], + [87, 44], + [13, 34], + [50, 42], + [70, 112], + [-19, 89], + [-87, 56], + [13, 66], + [-24, 58] + ], + [ + [12104, 6833], + [25, -2], + [105, -133], + [59, -8], + [71, 72], + [34, 52], + [111, 64], + [115, 21], + [19, 34], + [0, 153] + ], + [ + [12643, 7086], + [73, -27], + [48, 1], + [37, 59], + [-7, 77], + [66, 19], + [77, 45], + [34, -3] + ], + [ + [12971, 7257], + [-23, -139], + [60, -24], + [-19, -80], + [90, -74], + [-38, -44], + [13, -60], + [-15, -46], + [7, -55], + [44, -88], + [48, 32], + [64, 8], + [50, -33], + [52, -91], + [73, -59] + ], + [ + [12523, 4266], + [31, -97], + [20, -28] + ], + [ + [12574, 4141], + [-9, -10] + ], + [ + [12565, 4131], + [-29, -6], + [-35, 52], + [-49, -4] + ], + [ + [12414, 4233], + [62, 38] + ], + [ + [12476, 4271], + [47, -5] + ], + [ + [9797, 8503], + [-42, -55], + [-37, -4], + [-56, -48], + [-106, 10], + [8, -50], + [-34, -8], + [-70, -87] + ], + [ + [9460, 8261], + [-57, -72] + ], + [ + [9403, 8189], + [-42, -21], + [-49, 4], + [-45, -59], + [-44, -10], + [-12, -39], + [11, -95], + [-18, -28] + ], + [ + [9204, 7941], + [-67, -28], + [-10, -35], + [-71, -28], + [-50, 19], + [-22, -37], + [-74, 16], + [-17, 61], + [-50, 22], + [-155, -49] + ], + [ + [8688, 7882], + [-69, 47], + [-56, -2], + [-22, 47], + [-49, 51], + [-5, 81], + [-46, 122], + [-64, 62], + [-27, 51] + ], + [ + [8350, 8341], + [70, 69], + [-5, 39], + [-63, 75], + [-68, 61], + [-53, 31], + [-81, 14] + ], + [ + [8150, 8630], + [-10, 75] + ], + [ + [8140, 8705], + [48, 51], + [61, -31], + [75, 8], + [43, -19], + [30, 45] + ], + [ + [8397, 8759], + [69, -45], + [59, 12], + [37, 27], + [62, 1], + [12, 59], + [-67, 2] + ], + [ + [8569, 8815], + [61, 50], + [-7, 44], + [46, 60], + [89, -24] + ], + [ + [8758, 8945], + [26, -55], + [85, -50], + [36, -58] + ], + [ + [8905, 8782], + [39, -9], + [159, 111] + ], + [ + [9103, 8884], + [27, 65] + ], + [ + [9130, 8949], + [94, -46], + [71, -7], + [50, -46], + [66, 33], + [92, -24], + [25, -62], + [28, 16], + [30, 82], + [58, 4], + [46, -23], + [48, 47] + ], + [ + [9738, 8923], + [28, -89], + [4, -185], + [7, -58], + [29, -29], + [-9, -59] + ], + [ + [5990, 2613], + [143, -5], + [3, -51], + [57, -120], + [-32, -36], + [-16, -107], + [14, -51], + [41, -49], + [53, 10], + [-2, -59], + [23, -57], + [3, -70], + [20, -36], + [18, -92], + [57, -45], + [-7, -97], + [41, -59], + [4, -58], + [79, -23], + [40, -101], + [-41, 1], + [-19, -63] + ], + [ + [6469, 1445], + [38, -78], + [-7, -121], + [39, -91], + [-37, -103], + [-55, 62], + [-69, 43], + [-110, 3], + [-30, 11], + [-74, -9], + [-21, -44], + [-130, -52], + [-69, 22], + [-24, -19], + [-118, -5], + [-34, 46], + [-89, -44], + [14, -62], + [-41, -31], + [-2, -108], + [-19, -38], + [-96, 10], + [-60, -61], + [-81, -25], + [-22, -43], + [2, -53], + [-54, -64], + [-24, 39], + [7, 76], + [-17, 43], + [-46, -20], + [26, -60], + [-36, -19], + [4, -45], + [-32, -52], + [3, -52], + [-23, -27], + [37, -37], + [27, -72], + [-15, -46], + [-30, -7], + [-16, -69], + [-83, 8], + [-61, -126], + [-70, 41], + [-35, 83], + [17, 37], + [-32, 91], + [-81, 89], + [-35, -5], + [-47, 38], + [-58, 3], + [-48, 46], + [-45, 16], + [-56, -12], + [-26, -43], + [23, -47], + [-26, -70], + [-35, -24], + [-145, -46], + [-67, 76], + [34, 48], + [-17, 136], + [49, 81], + [73, 25], + [84, 60], + [24, 31], + [73, 20], + [47, -52], + [46, -15], + [66, 87], + [-6, 33], + [76, -5], + [43, 29], + [59, 66], + [44, 30], + [15, 82], + [53, 6], + [26, 51], + [35, 21], + [16, 68], + [1, 79], + [113, 38], + [41, 59], + [26, 248], + [60, 8], + [20, 41], + [49, -13], + [33, 55], + [66, 52], + [110, 9], + [37, 68], + [20, 121], + [75, 36], + [76, 78], + [4, 60], + [48, 31], + [92, 93], + [2, 181], + [-20, 120], + [22, 49] + ], + [ + [3392, 9], + [7, 51], + [50, -13], + [-16, -47], + [-41, 9] + ], + [ + [12475, 3635], + [78, 73], + [-11, 75], + [-20, 26] + ], + [ + [12522, 3809], + [7, 54] + ], + [ + [12529, 3863], + [75, 16] + ], + [ + [12736, 3638], + [-59, 26], + [-30, -39], + [-56, -12], + [-25, -47], + [-39, -9], + [-52, 78] + ], + [ + [8213, 13087], + [28, 81], + [-4, 92], + [82, -32], + [40, 2], + [33, 79], + [65, 26], + [50, 79] + ], + [ + [8507, 13414], + [45, 71], + [72, 17], + [106, 80], + [20, 36] + ], + [ + [8750, 13618], + [67, -152], + [63, -22], + [15, -53], + [60, -60], + [62, 18], + [34, -123], + [-115, -70], + [-11, -67], + [-36, -50], + [40, -23], + [34, -89], + [-26, -19], + [-16, -59], + [-35, -26], + [41, -63], + [4, -90], + [44, -40], + [50, -7], + [147, 108], + [56, -94], + [85, -71] + ], + [ + [9313, 12566], + [-33, -144], + [-40, -94], + [14, -22], + [79, -43], + [18, -40], + [-39, -58], + [30, -102], + [112, -93], + [26, -53], + [42, -9], + [12, -186] + ], + [ + [9534, 11722], + [-58, -24], + [-74, 4], + [-48, -32], + [-27, -46], + [18, -90], + [-95, -84], + [61, -77], + [-8, -101], + [17, -41], + [-14, -57], + [-64, 19], + [-71, -58], + [-69, 5] + ], + [ + [9102, 11140], + [-15, 21], + [-109, -77], + [-67, -32], + [-75, 8], + [-64, -104], + [-56, 15], + [-36, 48], + [-87, 20], + [-63, -59] + ], + [ + [8530, 10980], + [-46, 39], + [-19, 48], + [-45, -29], + [-15, -81], + [-91, -25], + [-33, 29], + [11, 39], + [-84, 58], + [-12, -95], + [-21, -17], + [-44, -93], + [-77, -77], + [-47, 30], + [-58, -16], + [-25, 96], + [12, 61], + [-11, 43], + [43, 16], + [25, 130], + [-39, 35], + [-41, -60], + [18, -41], + [-29, -32], + [-35, 15], + [-59, -15], + [-62, 111], + [-57, 78], + [-27, 197], + [-41, 39], + [-53, 105], + [-112, 141], + [-56, 93], + [-58, 64], + [37, 33], + [45, 102], + [19, 102], + [-7, 104], + [20, 43], + [66, 85], + [15, 57], + [68, 62], + [41, 63], + [-2, 108], + [50, 157], + [53, 67], + [103, -26], + [37, 51], + [-48, 32], + [33, 55], + [110, 47], + [104, -69], + [96, 27], + [-29, 47], + [60, 74] + ], + [ + [7909, 10941], + [-15, -22], + [24, -56], + [-35, -17], + [-6, 71], + [32, 24] + ], + [ + [10602, 11787], + [-51, 4], + [30, -81], + [-39, -8], + [-33, 79], + [-45, 5], + [-11, -40], + [-67, 63], + [-33, 59], + [-44, -11], + [-18, 39], + [-58, 20] + ], + [ + [10233, 11916], + [1, 122], + [12, 34], + [65, 10], + [83, -59], + [132, 0], + [49, 18], + [55, 53] + ], + [ + [10630, 12094], + [23, -40], + [-6, -52], + [-35, -24], + [-14, -52], + [33, -58], + [-29, -81] + ], + [ + [10980, 8723], + [23, -18], + [0, -61], + [-53, -76], + [10, -59], + [-2, -108], + [-58, -14], + [-20, -28], + [-48, 7], + [-50, -30], + [-4, -30], + [31, -122], + [-56, -86], + [12, -96], + [55, -71], + [2, -102], + [20, -69], + [-3, -53], + [57, -47], + [-44, -49] + ], + [ + [10852, 7611], + [-57, 2], + [-103, -80], + [-36, -107], + [-47, -15], + [-70, -91], + [-86, 3], + [-16, -42], + [13, -71], + [-71, -54] + ], + [ + [10379, 7156], + [-84, 0], + [-9, 56], + [-81, 50], + [42, 83], + [64, 36], + [20, 66], + [36, 33], + [-58, 78], + [-134, 11], + [-50, 54], + [-102, 24], + [-25, 75], + [1, 51], + [34, 14], + [7, 81], + [81, 55], + [18, 45], + [-3, 57], + [-24, 25], + [-18, 101], + [6, 50], + [-41, 73], + [1, 59], + [-37, 55], + [-48, 35], + [-112, 48], + [-30, 48], + [-36, -16] + ], + [ + [9738, 8923], + [52, 72], + [-44, 37], + [3, 38], + [40, 43], + [28, 131], + [66, 15], + [32, 83] + ], + [ + [9915, 9342], + [39, -2], + [81, -41] + ], + [ + [10035, 9299], + [30, -50], + [12, -73], + [83, -71], + [-4, -78], + [48, -18], + [16, -42], + [65, -28], + [-6, -64], + [86, -36], + [14, -29], + [-40, -53], + [58, -3], + [58, -39], + [107, 44], + [40, 43], + [56, 5], + [19, -48], + [72, -20], + [31, 38], + [43, -37], + [59, -22], + [98, 5] + ], + [ + [10618, 7588], + [35, 103], + [-6, 45], + [-77, 63], + [-49, 9], + [-76, -103], + [-12, -56], + [77, -75], + [92, -14], + [16, 28] + ], + [ + [6626, 1123], + [35, 38], + [91, 48], + [-4, 53], + [-122, 93], + [-45, 0], + [-44, -24] + ], + [ + [6537, 1331], + [-25, 76], + [-43, 38] + ], + [ + [5990, 2613], + [32, 109], + [-3, 73], + [19, 71], + [77, 1], + [66, -19], + [54, -52], + [67, -13], + [51, 15], + [74, 111], + [34, 14], + [14, 49], + [66, -16], + [41, 62], + [-90, -9], + [-9, 103], + [-54, 78], + [62, 8], + [9, 57], + [-17, 32], + [28, 41], + [41, -5], + [78, 36], + [72, 14], + [33, -25], + [32, 21], + [117, 12], + [37, 28], + [64, -7], + [61, 15], + [103, 7], + [83, -15] + ], + [ + [7232, 3409], + [-15, -138], + [-68, -13], + [-75, 10], + [-7, -91], + [75, -80], + [36, -10], + [52, -62], + [55, -1], + [62, -53], + [59, 3], + [12, -22], + [-29, -78], + [12, -32], + [104, -12], + [31, 60], + [49, 14], + [45, -25], + [33, 8], + [71, -54], + [5, -71], + [73, -6], + [78, -80], + [69, -10], + [95, 12], + [-31, -87], + [45, -46], + [85, 29], + [63, -6], + [-1, -72], + [126, -70], + [21, -73] + ], + [ + [8362, 2353], + [98, -65], + [-95, -68], + [21, -23], + [-25, -72], + [10, -38] + ], + [ + [8371, 2087], + [-112, -54], + [-95, 8], + [-18, -43], + [-145, -2], + [-103, -33], + [-62, -109], + [-93, -50], + [-60, 5], + [-12, 50], + [-51, 111], + [-22, -33], + [22, -32], + [10, -147], + [-33, -38], + [-41, -86], + [-23, -92] + ], + [ + [7533, 1542], + [-114, 3], + [-33, -26], + [-48, -90], + [-10, -79], + [43, -69], + [158, -82] + ], + [ + [7529, 1199], + [-5, -71], + [-88, -59], + [-48, -13], + [-52, -78], + [-17, -76], + [-4, -108], + [-37, 9], + [-54, -49], + [-80, 60], + [-20, -43], + [-55, 22], + [-52, 65], + [-4, 57], + [-25, 51], + [-120, 51], + [-48, 7], + [-68, -37], + [-47, 27], + [-19, 36], + [-41, -4], + [-19, 77] + ], + [ + [8362, 2353], + [42, 48], + [194, 35], + [44, 33], + [66, 2], + [91, 48], + [57, -3], + [-3, 66], + [31, 119], + [-5, 49], + [72, 6], + [12, 60], + [68, -17], + [37, -84], + [44, -26], + [12, 46], + [47, -14], + [93, 46], + [-48, 41], + [9, 45], + [59, 67], + [-16, 58], + [20, 48] + ], + [ + [9288, 3026], + [123, -31], + [65, -71], + [74, -149], + [31, -13], + [36, -65], + [59, 11], + [38, 30], + [55, 15], + [38, 39], + [30, -11] + ], + [ + [9837, 2781], + [63, -115], + [41, -49], + [63, 23], + [47, -11], + [-10, -62], + [-41, -36], + [10, -66], + [40, 5], + [14, -93], + [-20, -76], + [34, -86], + [76, 24], + [2, -61], + [84, 0], + [8, -49] + ], + [ + [10248, 2129], + [-71, 0], + [-37, -56], + [-70, 13] + ], + [ + [9881, 2166], + [-32, 41], + [-78, 11], + [-17, -18], + [-21, -89], + [-26, -28] + ], + [ + [9707, 2083], + [24, -94], + [70, -39], + [62, -91], + [-37, -37], + [-3, -66], + [-99, -6], + [-46, -31], + [-11, 37], + [-62, 15], + [-34, 36], + [-112, 29], + [-56, -16], + [-119, 23], + [-19, 19], + [-128, 10], + [-42, -58], + [-20, -55], + [6, -52], + [51, -9], + [19, -50], + [-64, -93], + [14, 118], + [-86, 102], + [-145, 134], + [-198, 134], + [-79, 41], + [-174, 40], + [-48, -37] + ], + [ + [10233, 11916], + [-64, -16], + [-62, 10], + [-30, -121], + [-55, 54], + [-39, -57], + [-117, -67], + [-38, -1], + [-75, 47], + [-57, 19], + [-80, -31], + [-58, -47], + [-24, 16] + ], + [ + [9313, 12566], + [48, 23], + [90, -35], + [29, 56], + [46, 9], + [40, 47], + [5, 39], + [71, -17], + [131, 88], + [108, -51], + [23, -28], + [56, 37], + [69, 145] + ], + [ + [10029, 12879], + [175, -27], + [157, -4], + [52, -33] + ], + [ + [10413, 12815], + [11, -56] + ], + [ + [10424, 12759], + [43, -68], + [25, -82], + [97, -7], + [43, 11], + [32, 153], + [56, 23] + ], + [ + [10720, 12789], + [40, -83], + [41, -185], + [76, -104] + ], + [ + [10877, 12417], + [-72, -36], + [-47, -75], + [-11, -90], + [-68, -22], + [-13, -31] + ], + [ + [10666, 12163], + [-36, -69] + ], + [ + [12136, 4084], + [34, 61], + [-44, 20], + [47, 60] + ], + [ + [12173, 4225], + [63, 3] + ], + [ + [12367, 4169], + [-12, -83] + ], + [ + [12355, 4086], + [-170, -16], + [-49, 14] + ], + [ + [12279, 9882], + [-19, 58], + [-47, 59], + [-67, 3], + [-59, -38], + [-27, -64], + [-8, -92] + ], + [ + [12052, 9808], + [-57, 7], + [-93, -20], + [-79, 56], + [-95, -20], + [-46, -88] + ], + [ + [11682, 9743], + [-98, -78], + [-114, -114], + [-25, -4] + ], + [ + [11445, 9547], + [1, 52], + [-120, 63], + [-81, 8], + [-115, -32] + ], + [ + [11130, 9638], + [-52, 72], + [23, 98], + [108, -49], + [56, 20], + [60, 46], + [-32, 59], + [44, 65], + [20, 102], + [-30, 71], + [1, 84] + ], + [ + [11328, 10206], + [0, 62], + [29, 134], + [-11, 72] + ], + [ + [11346, 10474], + [57, 91], + [230, 39], + [47, -36], + [49, -3], + [5, 46], + [36, 19], + [0, 68], + [54, 23], + [49, 44], + [85, -4], + [99, 62], + [-3, 42], + [42, 39], + [6, 62], + [62, 7], + [28, -41], + [90, -35], + [105, -7], + [39, 58] + ], + [ + [12426, 10948], + [95, -49], + [50, -14], + [34, -46], + [-42, -26], + [-96, -15], + [-63, -95], + [-1, -144], + [83, -264], + [35, -73], + [160, -247], + [97, -131], + [113, -170], + [18, -39], + [-8, -62], + [-87, 54], + [-51, 10], + [-127, -47], + [-78, 17], + [-88, 92], + [-8, 21], + [-82, 73], + [-25, 63], + [-76, 26] + ], + [ + [12526, 2508], + [18, 115], + [34, 58], + [-18, 53], + [57, 60], + [34, -32], + [42, 2], + [13, 105], + [39, 72], + [-60, 103], + [53, 20], + [32, 34], + [-22, 63] + ], + [ + [12748, 3161], + [61, 0] + ], + [ + [12809, 3161], + [103, 22], + [32, -13], + [-20, -71], + [119, 26], + [68, -30], + [95, 25], + [6, -33], + [97, -65], + [23, -43], + [85, -45], + [8, -45], + [84, -31], + [49, -47], + [130, 36], + [56, -48], + [100, 5], + [34, -23], + [51, -114], + [67, -1], + [2, -58] + ], + [ + [13998, 2608], + [-111, 31], + [-29, -4], + [-66, -49], + [-90, -107], + [-120, -47], + [-79, -9], + [-77, -32], + [-94, -17], + [-88, -44], + [-42, -75], + [-39, -25], + [-89, -106], + [-36, 7], + [-94, 55], + [-50, 1], + [-80, 62], + [-72, 7] + ], + [ + [12672, 4361], + [-45, 13], + [-103, 4], + [-28, -27], + [-20, -80] + ], + [ + [12322, 4361], + [-39, 96] + ], + [ + [12283, 4457], + [58, 15], + [13, 60], + [41, -34], + [65, 31], + [38, 59], + [202, -31] + ], + [ + [12700, 4557], + [13, -79] + ], + [ + [12713, 4478], + [-41, -117] + ], + [ + [13525, 4144], + [-4, 32], + [-94, 35], + [-186, 36], + [-52, 3] + ], + [ + [13189, 4250], + [-17, 54], + [-36, 13], + [-78, 116], + [-122, -30] + ], + [ + [12936, 4403], + [-54, -5], + [-42, -37], + [-83, 65] + ], + [ + [12757, 4426], + [-44, 52] + ], + [ + [12700, 4557], + [16, 144], + [53, 91], + [107, 24], + [74, 33], + [22, 90], + [1, 59], + [37, 46], + [-13, 63], + [-71, -17], + [-46, 231], + [-42, 25], + [-3, 50] + ], + [ + [13320, 5543], + [119, 25], + [53, -54], + [164, 69], + [62, 6], + [34, -25], + [21, -61], + [9, -83], + [98, -147], + [115, 12], + [72, 23], + [79, -12], + [76, -34], + [57, -4] + ], + [ + [14279, 5258], + [115, -22], + [52, 20], + [38, -19], + [68, 20], + [36, -8], + [5, -43], + [-47, -123], + [30, 6], + [46, -52], + [-83, -118], + [-153, -106], + [-125, -18], + [-23, 68], + [-52, 48], + [-75, -11], + [-64, -48], + [-15, -61], + [-73, -76], + [-115, 2], + [-74, -62], + [63, -13], + [54, 19], + [98, 1], + [63, 72], + [42, 4], + [26, -33], + [-9, -97], + [12, -36], + [-27, -136], + [24, -61], + [-43, -54], + [-134, -111] + ], + [ + [13939, 4210], + [-11, 13], + [-199, 76], + [-55, -20], + [-20, -68], + [15, -16] + ], + [ + [13669, 4195], + [-41, -58], + [-69, -16], + [-34, 23] + ], + [ + [8833, 4373], + [-51, 21] + ], + [ + [8782, 4394], + [-17, 61], + [25, 91], + [-27, 42], + [-12, 97], + [26, 34], + [-24, 66], + [11, 62], + [43, 84] + ], + [ + [8807, 4931], + [40, 40], + [103, 62], + [45, -7], + [21, 54], + [53, 7], + [52, 36], + [1, 49], + [-39, 83], + [-31, 26], + [30, 159], + [47, -65], + [53, 1], + [62, 50] + ], + [ + [9244, 5426], + [14, 2], + [50, -107], + [109, -24], + [39, 69], + [49, -8], + [-2, 50], + [17, 86], + [73, 4], + [-42, -92], + [106, 4], + [60, -21], + [89, 68], + [98, 13], + [38, -8], + [52, -52], + [23, 68], + [-52, 73], + [30, 27], + [43, -11], + [52, 77], + [31, 18] + ], + [ + [10121, 5662], + [62, -53], + [13, -51], + [48, -88], + [92, -12], + [-60, -110] + ], + [ + [10276, 5348], + [-6, -64], + [56, -36], + [9, -35], + [-49, -56], + [12, -41], + [-30, -28], + [-26, -72], + [-5, -149], + [-45, -58], + [25, -32], + [24, -149], + [43, -47], + [-53, -20] + ], + [ + [10231, 4561], + [-27, 6], + [-34, -47], + [-37, -10] + ], + [ + [10133, 4510], + [-41, 4], + [-28, 88], + [-54, -98], + [-50, 43], + [-31, -28], + [-77, 2], + [-13, -60], + [-58, 15], + [-103, 48], + [-64, -114], + [-71, -79], + [-63, 23], + [-71, -50], + [-47, -5] + ], + [ + [9362, 4299], + [-42, 76], + [-65, 5], + [-31, -36], + [-28, 22], + [7, 84], + [-97, 33], + [-50, -24], + [-13, 53], + [-84, 42], + [-46, -70], + [-12, -50], + [-68, -61] + ], + [ + [12754, 3941], + [-18, 71], + [-54, 59] + ], + [ + [12682, 4071], + [27, -23], + [36, 59] + ], + [ + [12745, 4107], + [21, -21], + [59, 5], + [36, 35] + ], + [ + [12700, 4212], + [-82, -43], + [-8, -27] + ], + [ + [12610, 4142], + [-23, 32], + [24, 38], + [-34, 43] + ], + [ + [12577, 4255], + [7, 29], + [55, 6] + ], + [ + [12639, 4290], + [62, -54] + ], + [ + [12701, 4236], + [-1, -24] + ], + [ + [8140, 8705], + [-35, 49], + [-9, 60], + [-64, 67], + [-41, 82], + [45, 45], + [104, 48], + [37, 33], + [52, 17], + [34, -80], + [26, -103], + [108, -164] + ], + [ + [12401, 4028], + [-34, 27] + ], + [ + [12367, 4055], + [-12, 31] + ], + [ + [12405, 4157], + [17, -81], + [46, -51] + ], + [ + [12468, 4025], + [-30, -31], + [-37, 34] + ], + [ + [10767, 2427], + [19, 105], + [-2, 76], + [-90, 62], + [-83, -11], + [-31, -40], + [-6, -56] + ], + [ + [10574, 2563], + [55, -50], + [157, -180], + [-52, -75], + [-51, -1], + [-56, -47], + [-65, -13], + [-101, -38], + [-54, -101], + [-32, 29], + [-127, 42] + ], + [ + [9837, 2781], + [35, 29], + [131, 25], + [39, -43], + [104, -38], + [63, -8], + [63, -63], + [66, 24], + [16, 44], + [-32, 46], + [37, 59], + [-38, 43], + [3, 52], + [-17, 82], + [14, 57], + [-45, 47], + [7, 61], + [-11, 55], + [-44, 87], + [-17, 81], + [101, -6], + [72, 61], + [61, -33], + [-2, 78], + [29, 70], + [-10, 70], + [59, 7] + ], + [ + [11586, 3665], + [53, -102], + [-2, -123], + [-26, -32], + [-75, 20], + [-44, -34], + [-16, -57], + [23, -55], + [1, -80], + [49, -12], + [16, -60], + [48, -32], + [-10, -58] + ], + [ + [11603, 3040], + [-31, -20], + [-19, -53], + [-60, 8], + [-50, -52], + [-6, -40], + [-36, -46], + [-3, -43], + [-56, -128], + [13, -60], + [-45, -74], + [43, -68], + [-14, -66] + ], + [ + [11339, 2398], + [-94, 1] + ], + [ + [11245, 2399], + [-3, 27], + [-113, 19], + [-42, -35] + ], + [ + [11087, 2410], + [-67, -22], + [54, -122], + [-37, -39], + [-70, 36], + [-44, 57], + [-133, 74], + [-23, 33] + ], + [ + [12577, 4255], + [-54, 11] + ], + [ + [12672, 4361], + [-33, -71] + ], + [ + [12173, 4225], + [-47, 171] + ], + [ + [12126, 4396], + [38, -1], + [79, 52], + [40, 10] + ], + [ + [10927, 12111], + [-158, 13], + [-103, 39] + ], + [ + [10877, 12417], + [96, -64], + [-27, -53], + [45, -110], + [-33, -41] + ], + [ + [10958, 12149], + [-31, -38] + ], + [ + [13189, 4250], + [24, -47], + [-131, -51], + [-8, -55], + [-26, -25] + ], + [ + [12941, 4355], + [-5, 48] + ], + [ + [8807, 4931], + [-52, 10], + [-22, 34], + [-59, 0], + [-61, 120], + [-62, 41], + [-67, 70], + [-43, -6], + [-72, -51], + [-66, 49], + [-9, 45], + [-84, 103] + ], + [ + [8210, 5346], + [-52, 101], + [7, 63], + [-45, 59], + [-5, 74], + [24, 37], + [-44, 37], + [80, 54], + [-56, 47], + [76, 126], + [10, 41], + [62, 63], + [87, 15], + [-69, 67], + [13, 60], + [52, 37], + [-1, 42] + ], + [ + [8349, 6269], + [37, 9], + [138, 121], + [53, -29], + [32, -71], + [73, -3], + [-21, -70], + [76, -54], + [29, 8], + [15, 60], + [36, 6] + ], + [ + [8817, 6246], + [14, -104], + [22, -36], + [-3, -67], + [17, -26], + [117, 3], + [57, 57], + [61, -17], + [-15, -73], + [63, -26], + [13, -37], + [-6, -126], + [27, -66], + [47, -23], + [15, -40], + [-2, -239] + ], + [ + [12126, 4396], + [-87, -10], + [-34, 14], + [-17, -65] + ], + [ + [12048, 4996], + [50, -10], + [57, -49], + [66, 69], + [-19, 77], + [-29, 29], + [-25, 74] + ], + [ + [12136, 4084], + [-49, -107], + [-22, 4] + ], + [ + [12065, 3981], + [-48, 13], + [-35, 49] + ], + [ + [12367, 4055], + [-50, -7], + [-53, -30], + [-12, -34], + [-76, -12], + [-4, -55], + [-23, -39] + ], + [ + [12149, 3878], + [-70, 42], + [-14, 61] + ], + [ + [11132, 2011], + [-35, -49], + [-63, -27], + [-39, -42], + [-25, -120], + [-88, -40], + [-84, -19], + [-67, 76], + [-68, 60], + [-78, 36], + [-61, 64], + [-65, 2], + [-61, -22], + [69, 127], + [80, 7], + [59, 42], + [24, -4], + [87, 36], + [46, 67], + [77, 3], + [83, -80], + [90, -4], + [69, -33], + [19, -63], + [31, -17] + ], + [ + [12610, 4142], + [-36, -1] + ], + [ + [12405, 4157], + [18, -3], + [48, -74], + [40, -36] + ], + [ + [12511, 4044], + [-43, -19] + ], + [ + [13047, 4031], + [61, -43], + [69, 23], + [43, -49], + [37, -8], + [71, 17] + ], + [ + [13328, 3971], + [65, 11], + [15, 73], + [62, 8] + ], + [ + [13470, 4063], + [-41, -59], + [5, -64], + [38, -28], + [-11, -64], + [-71, -100], + [-14, -64], + [87, 24], + [44, -12], + [85, -80], + [82, 64], + [28, 120] + ], + [ + [13702, 3800], + [28, 21], + [15, 72], + [31, 2], + [12, -53], + [57, -41], + [0, -52], + [82, -24], + [84, -1], + [29, -32], + [55, 13], + [103, 4], + [42, 46], + [100, 17], + [99, 3], + [60, 18], + [104, -8], + [15, 12], + [133, 12], + [68, 14], + [38, -38], + [-8, -69], + [-51, -63], + [-53, 3], + [5, -101], + [41, -145], + [0, -158], + [-36, -74], + [-96, -52], + [-68, -53], + [-65, -6], + [-50, -59], + [-156, -27], + [-59, -31], + [-75, -79], + [-25, -46], + [-21, -115], + [27, -105], + [-13, -25], + [-156, 28] + ], + [ + [12809, 3161], + [-4, 118], + [-23, 73], + [29, 84], + [-14, 123] + ], + [ + [13809, 3884], + [7, 83], + [67, -22], + [43, -34], + [98, -14], + [74, -74], + [22, -46], + [-45, -44], + [-37, -9], + [-110, 38], + [-82, 5], + [5, 33], + [-60, 57], + [18, 27] + ], + [ + [12279, 9882], + [-227, -74] + ], + [ + [12384, 3805], + [-27, -31] + ], + [ + [12357, 3774], + [-37, -30], + [-37, -85], + [-32, 47], + [25, 60], + [-13, 36] + ], + [ + [12263, 3802], + [13, 67], + [27, 35], + [53, 22] + ], + [ + [12356, 3926], + [28, -121] + ], + [ + [12529, 3863], + [-7, 25] + ], + [ + [12522, 3888], + [-15, 111], + [30, 41] + ], + [ + [12537, 4040], + [27, 66] + ], + [ + [12564, 4106], + [34, -107], + [-17, -45], + [25, -62] + ], + [ + [9018, 9585], + [-80, -72], + [-46, 36], + [-39, -45], + [-28, 29], + [-76, -19], + [-9, -100], + [-30, -79], + [-57, -49] + ], + [ + [8653, 9286], + [-36, 46], + [-38, -31], + [-5, -60] + ], + [ + [8574, 9241], + [-86, 63] + ], + [ + [8488, 9304], + [-69, 16], + [-65, 55], + [-7, -77], + [-107, 67], + [1, 48], + [28, 44], + [-11, 42], + [34, 51], + [48, 32], + [46, 89], + [-23, 123] + ], + [ + [8363, 9794], + [8, 62], + [-111, 20], + [-41, 46], + [-18, 53], + [1, 135], + [14, 96], + [2, 142], + [72, 13], + [122, 48], + [27, -13], + [63, 64], + [-30, 13], + [-46, 130], + [18, 98], + [49, 45], + [62, 30], + [37, 97], + [-31, 17], + [-31, 90] + ], + [ + [9102, 11140], + [-8, -33], + [-87, -118], + [-53, -53], + [4, -97], + [38, -42], + [76, -45], + [14, -84], + [46, -23], + [69, 19], + [38, -8], + [11, -104], + [18, -28], + [52, -5], + [38, -50], + [69, 33], + [8, -38], + [47, -6], + [24, -76], + [102, -55], + [11, -68], + [46, -66], + [50, -39] + ], + [ + [9715, 10154], + [-22, -60] + ], + [ + [9693, 10094], + [-71, -36], + [-37, -49], + [-1, -94], + [-57, -76], + [12, -75] + ], + [ + [9539, 9764], + [-109, -63], + [-73, -117], + [-8, 99], + [-72, -19], + [-41, 18] + ], + [ + [11755, 7317], + [-112, -81], + [-82, 7], + [-34, -26], + [8, -91], + [0, -201], + [52, -162], + [52, -67] + ], + [ + [11639, 6696], + [-47, -19], + [-41, 20], + [-121, -5], + [-32, -81], + [33, -30], + [-40, -38], + [-59, 37], + [-37, 5], + [-105, -49], + [17, -31], + [-34, -78], + [-82, 56], + [-49, -53], + [-34, -65], + [-44, 8] + ], + [ + [10964, 6373], + [-37, 89], + [-43, 26], + [-78, 138], + [-151, 85], + [-31, 59], + [-115, 54], + [-34, 47], + [-41, 16], + [5, 52], + [-25, 53], + [37, 52], + [-68, 91] + ], + [ + [10383, 7135], + [-4, 21] + ], + [ + [10852, 7611], + [-8, -109], + [12, -52], + [51, -54], + [55, -15], + [32, 35], + [48, 16], + [50, 41], + [71, -11], + [107, 10], + [16, 46], + [176, 174], + [42, 93], + [2, 32], + [41, 41], + [37, 10] + ], + [ + [11584, 7868], + [3, -45], + [30, -40], + [-27, -86], + [13, -62], + [45, -13], + [49, -127], + [21, -25], + [37, -153] + ], + [ + [11145, 6925], + [11, 71], + [-22, 65], + [-71, 20], + [-59, 0], + [-30, -46], + [19, -162], + [66, -26], + [86, 78] + ], + [ + [12618, 3897], + [47, 74], + [-20, 72], + [37, 28] + ], + [ + [13142, 7510], + [-38, -120], + [20, -50], + [-113, -90], + [-40, 7] + ], + [ + [12643, 7086], + [-76, -15], + [-54, -35], + [-67, 9], + [-24, 37], + [-92, -23], + [-79, 42], + [-128, -69], + [-96, 16], + [-35, -17] + ], + [ + [11992, 7031], + [-7, 36], + [67, 29], + [51, 64], + [-148, 60], + [-16, 39], + [-55, 40], + [-129, 18] + ], + [ + [11584, 7868], + [-29, 66], + [7, 50], + [63, 78], + [74, 34], + [-34, 86], + [13, 35], + [-11, 113], + [7, 51], + [-58, 27], + [21, 54], + [57, 32], + [41, -2], + [11, 73], + [-70, 25], + [-29, -30], + [-62, 7], + [-7, 88], + [41, 63], + [-28, 112], + [-38, 34], + [22, 54], + [-56, 124], + [33, 51], + [4, 40] + ], + [ + [11556, 9133], + [57, 90], + [11, 70], + [183, -22], + [9, -45], + [-17, -59], + [26, -32], + [51, -4], + [151, 55], + [12, 81], + [88, 16], + [-2, 55], + [-113, 18], + [89, 72], + [95, -27], + [37, 6], + [54, 64], + [13, 60] + ], + [ + [12300, 9531], + [66, -42], + [42, -61], + [57, -22], + [-41, -57], + [20, -88], + [-9, -62], + [71, -69], + [43, -61], + [60, 40], + [-29, 50], + [51, 125], + [110, 31] + ], + [ + [12741, 9315], + [26, -32], + [39, 5], + [33, -48], + [105, -43], + [33, -91], + [36, -58], + [93, -191], + [64, -146], + [46, -128], + [27, -142], + [-12, -142], + [-16, -88], + [-63, -26], + [-34, -41], + [-172, -153], + [-59, -79], + [-69, -141], + [13, -53], + [68, -16], + [87, -92], + [62, -98], + [94, -2] + ], + [ + [12610, 4142], + [-7, -26] + ], + [ + [12603, 4116], + [-34, 3] + ], + [ + [12569, 4119], + [-4, 12] + ], + [ + [9130, 8949], + [-47, 20], + [20, 79], + [-56, 112], + [-55, 1], + [-65, -70] + ], + [ + [8927, 9091], + [-50, 59], + [-6, 36], + [-127, -2], + [-91, 102] + ], + [ + [9539, 9764], + [78, -63], + [77, 31], + [23, -54], + [-6, -42], + [27, -73] + ], + [ + [9738, 9563], + [43, -10] + ], + [ + [9781, 9553], + [16, -54], + [58, -66], + [60, -91] + ], + [ + [13470, 4063], + [56, 5], + [94, -23], + [131, -15], + [34, -76], + [-30, -26], + [-101, 16], + [-45, -64], + [-80, -21], + [39, -40], + [134, -19] + ], + [ + [8927, 9091], + [-74, -13], + [-35, 26], + [-46, -24], + [34, -103], + [-48, -32] + ], + [ + [8569, 8815], + [-44, -4], + [-62, 19], + [-158, 138], + [-32, 134], + [-47, 65] + ], + [ + [8226, 9167], + [-30, 93], + [-4, 55], + [-54, 53], + [0, 61], + [72, 144], + [48, 74], + [42, 42], + [27, 69], + [36, 36] + ], + [ + [12356, 3926], + [66, 12], + [46, -36], + [54, -14] + ], + [ + [12522, 3809], + [-83, -13], + [-55, 9] + ], + [ + [10869, 11801], + [-61, 40], + [-11, 34], + [10, 76], + [50, 85], + [60, -6] + ], + [ + [10917, 12030], + [1, -56], + [57, -128] + ], + [ + [10975, 11846], + [-82, -11], + [-24, -34] + ], + [ + [11435, 5477], + [18, 64], + [41, 35], + [-35, 35], + [-40, 78], + [78, 29], + [28, 64], + [45, -14], + [21, 40], + [49, -2], + [110, 80] + ], + [ + [12745, 4107], + [-23, 29], + [-22, 76] + ], + [ + [12701, 4236], + [51, 4] + ], + [ + [12752, 4240], + [43, 22], + [32, -53] + ], + [ + [15289, 6758], + [-76, 30], + [-40, -27], + [-16, -54], + [34, -47], + [36, -13], + [-59, -74], + [-29, -14], + [-63, 41], + [-116, -47], + [-43, 18], + [-38, -18], + [-33, 26], + [-45, -63], + [-72, -37], + [-58, -100], + [-73, -5], + [-58, -55], + [-48, -17], + [-116, 28], + [-69, 1], + [-62, 23], + [-91, -36], + [-62, 57], + [-74, 1], + [-65, 33], + [-73, -35], + [-54, -6], + [-26, 21], + [-60, 4], + [-34, 25], + [1, 54], + [57, 46], + [-49, 24], + [-56, -19], + [-118, 18], + [-98, -39], + [-66, 2] + ], + [ + [13142, 7510], + [51, -5], + [43, -40], + [60, 68], + [77, 49], + [-2, 45], + [42, 103], + [36, 124], + [48, 50], + [153, -3], + [85, 37], + [104, -23], + [305, -38], + [41, 35], + [210, -73], + [109, -9], + [131, -32], + [187, -125], + [88, -92], + [174, -154], + [82, -88], + [57, -87], + [69, -236], + [-16, -204], + [13, -54] + ], + [ + [12300, 9531], + [11, 27], + [128, 40] + ], + [ + [12439, 9598], + [137, -131], + [33, 6], + [60, -45], + [72, -113] + ], + [ + [11556, 9133], + [-176, 15], + [21, 35], + [-42, 42] + ], + [ + [11359, 9225], + [-36, 79], + [43, 38], + [49, -12], + [13, 45], + [-47, 67], + [64, 26], + [0, 79] + ], + [ + [11682, 9743], + [20, 27], + [99, 40], + [102, -90], + [69, 2], + [38, 41], + [115, 7], + [95, 31], + [64, 7], + [122, -184], + [33, -26] + ], + [ + [8299, 3639], + [43, 157], + [30, 42], + [51, 5], + [33, 73], + [114, 138], + [113, 39] + ], + [ + [8711, 3636], + [-147, 19], + [34, -78], + [-71, -7], + [-63, 19], + [-14, -40], + [-60, 33], + [-68, -15], + [-23, 72] + ], + [ + [11346, 10474], + [-88, 7], + [-25, 40], + [-4, 97], + [-29, 29], + [-97, 4], + [-80, -33], + [-45, -122], + [-81, -29], + [-4, -61], + [25, -80], + [60, -97], + [53, -43], + [171, -7], + [83, 36], + [43, -9] + ], + [ + [11130, 9638], + [-185, -23], + [-45, -46] + ], + [ + [10900, 9569], + [-25, 38], + [2, 94], + [38, 110], + [-58, 8], + [-67, 82] + ], + [ + [10790, 9901], + [23, 53], + [-27, 52], + [3, 76], + [-31, 68], + [30, 38], + [-3, 87], + [20, 80], + [-58, 50], + [-78, -15], + [-101, -86], + [-77, 12], + [-41, 64], + [-21, -69], + [-51, -20], + [-85, 16], + [-129, -11] + ], + [ + [10164, 10296], + [-102, 104], + [-110, -7], + [-44, 37], + [-62, 8], + [-10, -67], + [-34, -38], + [11, -105], + [-54, -17], + [-44, -57] + ], + [ + [10602, 11787], + [35, 29], + [57, -9], + [11, -55], + [52, -14], + [112, 63] + ], + [ + [10975, 11846], + [96, -15], + [59, 18], + [67, -33], + [78, 20], + [64, -35], + [77, 24], + [62, -22], + [1, 74], + [34, 63], + [53, 44] + ], + [ + [11566, 11984], + [51, -76], + [47, 15], + [47, -37], + [29, -53], + [105, -28], + [102, -105], + [-15, -54], + [101, -93], + [71, -154], + [-4, -48], + [32, -101], + [62, -83], + [128, -58], + [-23, -65], + [67, -77], + [60, -19] + ], + [ + [11080, 5413], + [-45, -50], + [-66, -29], + [-121, 3], + [-46, 153], + [4, 84], + [83, 63], + [-124, 169] + ], + [ + [10765, 5806], + [27, 50], + [81, 37], + [-26, 84], + [85, 57], + [-1, 58], + [-22, 26], + [32, 49], + [-58, 25], + [12, 42], + [77, 28], + [24, 25], + [-32, 86] + ], + [ + [11639, 6696], + [48, 42], + [23, 52], + [197, 122], + [40, 86], + [45, 33] + ], + [ + [11992, 7031], + [36, -71], + [-11, -106], + [87, -21] + ], + [ + [10569, 13306], + [-58, -54], + [-98, 5], + [-39, 24] + ], + [ + [10374, 13281], + [-152, 30] + ], + [ + [10222, 13311], + [-12, -101], + [-46, -13], + [-56, -112] + ], + [ + [10108, 13085], + [-50, -32], + [-32, -110], + [-42, -25], + [45, -39] + ], + [ + [8750, 13618], + [39, 65], + [49, 18], + [12, 54], + [-15, 55], + [86, 69], + [26, 60], + [44, 26], + [88, 91], + [52, 15], + [38, -14], + [25, -45], + [53, 54], + [27, 86], + [55, 12], + [30, 43], + [85, 15], + [49, 86], + [-46, 81], + [-4, 50], + [-61, 103], + [-30, 104], + [-70, 83], + [-8, 48], + [137, 29], + [97, 173], + [124, 102], + [12, 93], + [74, 25] + ], + [ + [9718, 15199], + [38, -37], + [23, -89], + [43, -58], + [126, -122], + [25, -76], + [41, -45], + [71, 8], + [26, -38], + [105, -53], + [96, -134], + [-16, -37], + [42, -52], + [-9, -52], + [37, -24], + [-1, -132], + [20, -21], + [-1, -62], + [-46, -50], + [38, -120], + [50, -49], + [-31, -121], + [16, -56], + [41, -52], + [36, -89], + [-24, -103], + [49, -94], + [-7, -50], + [63, -85] + ], + [ + [10980, 8723], + [60, 85], + [-14, 31], + [45, 47], + [-6, 58], + [77, 89], + [78, -12], + [53, 67], + [11, 74], + [75, 63] + ], + [ + [11029, 7691], + [57, 68], + [2, 55], + [-48, 107], + [-38, 34], + [-46, -8], + [-38, -57], + [-16, -139], + [42, -94], + [43, -18], + [42, 52] + ], + [ + [10377, 4145], + [-27, 7], + [-65, 125], + [-43, 11], + [-3, 69], + [26, 30], + [8, 53], + [-43, 48], + [1, 73] + ], + [ + [10276, 5348], + [72, -75], + [26, 32], + [54, 5], + [6, 40], + [53, 35], + [21, 161], + [37, 72], + [50, 11], + [43, 38], + [41, -40], + [42, 32], + [-33, 36], + [48, 41], + [29, 70] + ], + [ + [6626, 1123], + [-1, 48], + [-56, -9], + [-62, 101], + [30, 68] + ], + [ + [9932, 2072], + [-69, -39], + [-32, 29], + [-90, 2], + [-34, 19] + ], + [ + [11245, 2399], + [-71, -29], + [18, -110], + [-85, -23], + [-29, 34], + [16, 78], + [-7, 61] + ], + [ + [11283, 2393], + [28, -24], + [13, -136], + [-119, 27], + [50, 46], + [-3, 56], + [31, 31] + ], + [ + [12752, 4240], + [-6, 84], + [11, 102] + ], + [ + [10917, 12030], + [10, 81] + ], + [ + [10958, 12149], + [99, 23], + [227, -112], + [65, 0], + [39, -35], + [69, -4], + [64, -33], + [45, -4] + ], + [ + [12263, 3802], + [-54, 25], + [-60, 51] + ], + [ + [12401, 4028], + [-47, -42], + [2, -60] + ], + [ + [8349, 6269], + [-27, 14], + [-68, -16], + [-68, 12], + [-53, 61], + [-54, 39], + [-38, 51], + [-44, 17], + [-27, 55], + [0, 51], + [27, 41], + [69, 29], + [60, 41], + [117, 7], + [14, 43], + [42, 14], + [25, 59], + [-54, 72], + [-84, -61], + [-27, -45], + [-57, 96], + [1, 42], + [64, 48], + [25, 96], + [51, 39], + [-5, 75], + [32, 76], + [62, 11], + [17, 43], + [-51, 32], + [-13, 32], + [-86, 21], + [-24, 41], + [-57, 7], + [-40, 31] + ], + [ + [8078, 7443], + [-22, 66], + [54, 88], + [-18, 70], + [52, 28], + [10, 49], + [141, 104], + [46, -2], + [51, -51], + [73, 23], + [37, -5], + [104, -106], + [49, 41], + [45, 7], + [4, 74], + [-16, 53] + ], + [ + [9204, 7941], + [21, -24], + [-16, -79], + [-65, -34], + [-34, -61], + [-11, -70], + [22, -45], + [102, 41], + [-18, -119], + [-28, -42] + ], + [ + [9177, 7508], + [-113, -60], + [-93, -35], + [-77, -44], + [-85, -23], + [-25, -41], + [33, -56], + [266, -268], + [53, -26], + [42, 87], + [83, 228], + [24, 48] + ], + [ + [9285, 7318], + [27, -36], + [-7, -86], + [25, -52], + [91, -29], + [7, -84], + [-15, -62], + [-43, -23], + [-55, 14], + [-11, -46], + [61, -35], + [27, -39], + [-24, -37], + [18, -77], + [-43, -34], + [-21, -76], + [18, -80] + ], + [ + [9340, 6536], + [-27, -36], + [-51, 10], + [-17, -28], + [34, -88], + [-93, -15], + [-29, -53], + [-88, -15], + [3, -52], + [-37, -27], + [-48, 33], + [-32, -24], + [-12, -56], + [-63, -8], + [-27, 48], + [-36, 21] + ], + [ + [9335, 3649], + [34, -22], + [-6, -53], + [41, -27], + [10, -55], + [-24, -50], + [-20, -92], + [-122, -235], + [2, -59], + [38, -30] + ], + [ + [7232, 3409], + [144, -36], + [55, 35], + [65, 0], + [131, -58], + [54, -66], + [63, 4], + [137, -12], + [110, 57], + [63, 16], + [87, 0], + [60, -14], + [86, 75], + [-26, 72], + [9, 158], + [29, -1] + ], + [ + [8754, 4192], + [27, 98], + [52, 83] + ], + [ + [9362, 4299], + [39, -151], + [-52, -22], + [-49, -42], + [39, -32], + [10, -157] + ], + [ + [10035, 9299], + [13, 41], + [52, 8], + [84, 50], + [60, -12], + [87, 35], + [46, 88] + ], + [ + [10377, 9509], + [35, 23], + [37, -33], + [74, -4], + [55, 22], + [36, -15], + [83, 10], + [34, -46], + [58, -12], + [91, 53], + [20, 62] + ], + [ + [10767, 2427], + [-96, 104], + [-85, 43], + [-12, -11] + ], + [ + [14147, 4896], + [39, -49], + [-70, -39], + [-68, -1], + [8, 42], + [52, 42], + [39, 5] + ], + [ + [13939, 4210], + [-62, -55], + [-31, 16], + [-177, 24] + ], + [ + [12564, 4106], + [5, 13] + ], + [ + [12603, 4116], + [63, -5], + [16, -40] + ], + [ + [10383, 7135], + [-31, -54], + [-44, -34], + [10, -43], + [-16, -98], + [-45, -32], + [-130, 10], + [-36, -11] + ], + [ + [10091, 6873], + [-55, 40], + [-60, -39] + ], + [ + [9976, 6874], + [-29, 28] + ], + [ + [9947, 6902], + [-31, 80], + [-1, 82], + [-55, 41], + [-27, -72], + [-108, -55], + [-60, -21] + ], + [ + [9665, 6957], + [-46, 68], + [-50, -12], + [-19, -43], + [-54, -33], + [-29, -53], + [38, -31], + [25, -55], + [47, -5] + ], + [ + [9577, 6793], + [-13, -75], + [-63, -36], + [27, -61], + [8, -141] + ], + [ + [9536, 6480], + [-26, -3], + [-73, 36], + [-59, 2], + [-38, 21] + ], + [ + [9285, 7318], + [-67, 88], + [1, 64], + [-42, 38] + ], + [ + [9403, 8189], + [22, -78], + [40, -236], + [35, -48], + [98, -13], + [32, 66], + [-12, 60], + [-75, 161], + [-63, 83], + [-20, 77] + ], + [ + [15289, 6758], + [30, -140], + [-38, -61], + [-14, -149], + [-51, -111], + [-18, -78], + [-50, -62], + [-21, -57], + [-15, -184], + [-60, -301], + [-23, -22], + [-112, -55], + [-69, -82], + [-20, -57], + [-53, -44], + [-35, -55], + [-86, -30], + [-44, 38], + [-142, -33], + [-14, 25], + [-73, -30], + [-56, 12], + [-38, -24], + [-2, 0], + [-6, 0] + ], + [ + [12748, 3161], + [-110, -1], + [-34, 16], + [-64, -18], + [-32, 45], + [-60, 24], + [-178, -115], + [-73, -5], + [-102, -46], + [-81, -4], + [-97, -42], + [-89, -8], + [-37, 22], + [-91, -35], + [-63, 18], + [-34, 28] + ], + [ + [12357, 3774], + [37, -53], + [-2, -63], + [61, 27], + [22, -50] + ], + [ + [10383, 4108], + [-30, -32], + [-144, -79], + [-93, 7], + [-73, 45], + [-36, 71], + [-6, 101], + [11, 49], + [110, 197], + [11, 43] + ], + [ + [13525, 4144], + [-55, -31], + [-76, 4], + [-27, -38], + [-5, -69], + [-34, -39] + ], + [ + [7533, 1542], + [-7, -66], + [35, -31], + [-28, -40], + [-35, 20], + [-38, -66], + [5, -72], + [63, -26], + [1, -62] + ], + [ + [10569, 13306], + [39, -82], + [-3, -80] + ], + [ + [10605, 13144], + [75, -55], + [38, -76], + [-21, -47] + ], + [ + [10697, 12966], + [25, -85], + [-14, -39], + [12, -53] + ], + [ + [12511, 4044], + [26, -4] + ], + [ + [10121, 5662], + [-44, 61], + [-79, 17], + [-51, 35], + [-23, -41], + [-79, 80], + [32, 79], + [30, 39], + [0, 52], + [-26, 92], + [55, 20], + [22, 64], + [30, 29], + [-43, 89], + [35, 46], + [13, 55] + ], + [ + [9993, 6379], + [32, -19], + [38, -62], + [67, -12], + [54, 20], + [48, -33], + [177, 76] + ], + [ + [10409, 6349], + [38, -42], + [38, 30], + [71, -4], + [46, 46], + [-9, 118], + [-25, 22] + ], + [ + [10568, 6519], + [-243, 16] + ], + [ + [10325, 6535], + [-62, -50], + [-31, 38], + [-87, 149], + [12, 37] + ], + [ + [10157, 6709], + [-29, 90], + [-37, 74] + ], + [ + [9993, 6379], + [-83, 23], + [-80, -15], + [-42, -24], + [-28, 39], + [28, 65] + ], + [ + [9788, 6467], + [-70, 49] + ], + [ + [9718, 6516], + [-41, -37], + [-36, 35], + [-54, -36], + [-51, 2] + ], + [ + [12410, 2363], + [-111, 0], + [-121, -44], + [-119, -19], + [-140, 0], + [-87, -29], + [-82, -13], + [-112, -38], + [-41, -46], + [-41, -80], + [-73, 71], + [-121, 78], + [33, 31], + [-74, 72], + [18, 52] + ], + [ + [3759, 12152], + [-107, -10], + [-135, -70], + [-51, 2] + ], + [ + [3466, 12074], + [-70, -13], + [-32, 29], + [-153, -77] + ], + [ + [3211, 12013], + [5, 88], + [23, 96], + [-4, 38], + [-115, 133] + ], + [ + [3120, 12368], + [42, 158], + [-16, 39] + ], + [ + [3146, 12565], + [136, -16], + [53, 50], + [34, -19], + [91, 15], + [82, -32], + [30, 52], + [59, 13], + [101, -39] + ], + [ + [3732, 12589], + [57, -46], + [-27, -68], + [36, -87], + [-18, -111], + [43, -22] + ], + [ + [3823, 12255], + [-58, -34], + [24, -51], + [-30, -18] + ], + [ + [4379, 11729], + [-103, -29], + [-33, 34], + [-78, 14], + [-41, 66] + ], + [ + [4124, 11814], + [-7, 88], + [53, 55], + [-8, 31], + [56, 63], + [-3, 83] + ], + [ + [4215, 12134], + [42, 34], + [44, -26], + [72, 0], + [50, 30], + [17, 40], + [41, 20], + [7, 39] + ], + [ + [4488, 12271], + [69, -73], + [-14, -42], + [22, -73], + [63, -81], + [-13, -40], + [37, -137], + [42, -22], + [-3, -43], + [-39, -81], + [-28, -22], + [27, -47], + [-1, -78], + [-43, -70], + [-7, -58], + [-44, 24], + [-3, 45], + [-45, 66], + [-30, 17], + [2, 57], + [49, 55], + [1, 133], + [-20, 116], + [-36, 0], + [-48, 70], + [-38, 6], + [-66, 55], + [-33, -116], + [72, -58], + [18, -145] + ], + [ + [3325, 11261], + [-61, -2], + [-65, -21], + [-60, -38], + [-39, -71], + [-38, 23], + [-58, -46], + [-42, 4], + [-61, -80] + ], + [ + [2901, 11030], + [-60, 42], + [-65, -46], + [-27, 43], + [-41, 13], + [-48, 46], + [-26, 96], + [-46, 36], + [13, 49], + [-19, 86] + ], + [ + [2582, 11395], + [49, 32], + [-5, 45], + [41, 55], + [-7, 54], + [21, 31], + [116, -24], + [32, 71], + [-5, 34], + [60, 50], + [67, -38], + [86, 36] + ], + [ + [3037, 11741], + [66, -116], + [38, -3], + [0, -56], + [33, -44], + [40, -3], + [44, 43] + ], + [ + [3258, 11562], + [45, -137], + [-5, -122], + [27, -42] + ], + [ + [3846, 12606], + [-114, -17] + ], + [ + [3146, 12565], + [15, 115], + [-30, 163], + [-23, 66] + ], + [ + [3108, 12909], + [69, 4], + [39, -18], + [-26, 128], + [119, 25], + [66, 85], + [57, -4], + [67, 25], + [73, 44] + ], + [ + [3572, 13198], + [35, -16], + [42, -92], + [57, 1] + ], + [ + [3706, 13091], + [98, -99], + [17, -35], + [-22, -98], + [15, -97], + [45, -22], + [49, 11], + [30, -57], + [-21, -31], + [-90, -6], + [19, -51] + ], + [ + [3108, 12909], + [-20, 75] + ], + [ + [3088, 12984], + [-48, 36], + [2, 44], + [-45, 49], + [-15, 64], + [14, 53], + [-46, 93], + [52, 55], + [8, 85], + [85, 47] + ], + [ + [3095, 13510], + [56, -2], + [77, -58], + [45, 30], + [46, -24], + [26, -50], + [33, -12], + [141, 42], + [-10, -82], + [8, -52], + [55, -104] + ], + [ + [3930, 11526], + [16, -44], + [-46, -56], + [5, -53], + [29, -77], + [-27, -17], + [-34, -100], + [-73, 47], + [-11, -43] + ], + [ + [3789, 11183], + [-41, 15], + [-62, -27], + [-114, 10], + [-132, 50], + [-92, 0], + [-23, 30] + ], + [ + [3258, 11562], + [20, 19], + [91, -25], + [136, 15], + [34, 40], + [6, 53] + ], + [ + [3545, 11664], + [66, 28], + [43, -18], + [114, -77], + [-7, -49], + [82, -31], + [87, 9] + ], + [ + [3984, 12214], + [41, -55] + ], + [ + [4025, 12159], + [115, -28] + ], + [ + [4140, 12131], + [-12, -55], + [-116, -28], + [-89, -72] + ], + [ + [3923, 11976], + [-114, 68], + [-16, 71], + [-34, 37] + ], + [ + [3823, 12255], + [57, 1], + [28, -41], + [36, 33], + [40, -34] + ], + [ + [4035, 12308], + [-40, 75], + [25, 148] + ], + [ + [4020, 12531], + [145, 18], + [72, -33], + [76, 18] + ], + [ + [4313, 12534], + [-31, -66], + [-78, -66], + [-20, 9], + [-79, -38], + [-70, -65] + ], + [ + [4124, 11814], + [-73, -32] + ], + [ + [4051, 11782], + [-43, 57], + [-39, 99], + [-46, 38] + ], + [ + [4140, 12131], + [75, 3] + ], + [ + [3088, 12984], + [-32, -44], + [-64, -17], + [-82, 33], + [-21, -29], + [-59, -18], + [-62, 33], + [-65, -46] + ], + [ + [2703, 12896], + [-21, 118], + [-20, 31], + [42, 56], + [-43, 46], + [4, 160], + [-22, 81], + [-60, 61], + [33, 105] + ], + [ + [2616, 13554], + [162, 10], + [31, 61], + [153, 31], + [95, 40] + ], + [ + [3057, 13696], + [25, -85], + [13, -101] + ], + [ + [3211, 12013], + [-134, -75] + ], + [ + [3077, 11938], + [-163, 68], + [-113, -38], + [-35, 54], + [-42, -21], + [-84, 30], + [-107, -29], + [-96, 31] + ], + [ + [2437, 12033], + [16, 76], + [-32, 96], + [4, 51], + [-46, 30], + [19, 49], + [-11, 96], + [37, 28] + ], + [ + [2424, 12459], + [36, -32], + [81, -2], + [95, 32], + [67, -26], + [29, 14], + [59, -78], + [56, -26], + [123, 52], + [39, -11], + [21, 40], + [90, -54] + ], + [ + [3466, 12074], + [-29, -73], + [15, -108], + [51, -51], + [-20, -43], + [16, -49], + [43, -44], + [3, -42] + ], + [ + [3037, 11741], + [-16, 78], + [-27, 38], + [83, 81] + ], + [ + [2162, 13256], + [-40, -49], + [32, -35], + [32, -90], + [65, 1], + [-16, -49], + [21, -104], + [45, -33], + [19, -111], + [1, -76], + [43, -61] + ], + [ + [2364, 12649], + [-87, -25], + [-59, 21], + [-78, 96], + [-49, -16], + [-21, 100], + [-99, 9], + [21, 69], + [-81, 22], + [-84, -11], + [-60, 66] + ], + [ + [1767, 12980], + [32, 6], + [-11, 95], + [30, 109], + [48, 61], + [62, -2], + [62, 48], + [45, -29], + [83, 14], + [44, -26] + ], + [ + [4041, 11022], + [-74, -14], + [-61, 38], + [-56, -21], + [-41, -37], + [-34, 79], + [-11, 75], + [25, 41] + ], + [ + [3930, 11526], + [26, 28], + [-15, 49], + [48, 61], + [-8, 42], + [70, 76] + ], + [ + [4379, 11729], + [28, -62], + [-28, -43], + [8, -46], + [-36, -89], + [112, 49], + [47, -21], + [28, -101], + [-2, -65], + [-28, -63], + [-58, -70], + [-57, -26], + [-20, -54], + [-36, 12], + [-25, 44], + [-83, 3], + [-123, -31], + [-89, -86], + [24, -58] + ], + [ + [2582, 11395], + [-9, 39], + [-47, 21], + [-9, 60], + [-143, 112], + [-56, -8], + [-89, -116], + [3, -32], + [-73, -54], + [-35, -3], + [-15, -51] + ], + [ + [2109, 11363], + [-10, 52], + [-62, -38], + [-31, 16], + [-37, 90], + [-56, 7], + [-34, 46], + [14, 51], + [-52, 69] + ], + [ + [1841, 11656], + [80, 16], + [68, 31], + [50, 0], + [21, 28], + [68, 29], + [67, -4], + [51, 63], + [78, 25], + [16, 42], + [37, 6], + [43, 42], + [-4, 51], + [21, 48] + ], + [ + [1329, 12108], + [27, -12] + ], + [ + [1356, 12096], + [34, -58], + [46, 3], + [61, -47], + [72, 10], + [-44, -154], + [28, -127], + [1, -70], + [75, -62], + [129, 80], + [83, -15] + ], + [ + [2109, 11363], + [-28, -49], + [77, -65], + [11, -116], + [-91, -20], + [-53, -37], + [-4, -89], + [-46, -119], + [-43, 107], + [-33, -44], + [28, -41], + [-41, -35], + [-57, 48], + [-59, -3], + [-24, 45], + [-51, -35], + [-15, -39], + [-73, 22], + [-46, -16], + [-40, 43], + [-53, 15], + [-11, 57], + [-61, 29], + [-37, 58], + [-106, 7], + [-96, -10], + [-29, 34], + [-10, 103], + [-35, 104], + [-41, -8], + [-55, 30], + [-40, 84], + [-50, 59], + [-57, 7], + [-73, 111], + [-82, 74], + [14, 87], + [35, -5], + [69, 51], + [41, 4], + [32, 91], + [32, 46], + [102, -20], + [145, 23], + [14, 46], + [119, 97], + [41, 14] + ], + [ + [4020, 12531], + [-149, 9], + [-25, 66] + ], + [ + [3706, 13091], + [133, 123], + [49, 59] + ], + [ + [3888, 13273], + [21, -16], + [-18, -114], + [-25, -46], + [53, -48], + [57, -20], + [37, -69], + [21, -68], + [58, -32], + [67, -125], + [-9, -67], + [61, 16], + [-47, 55], + [42, 24], + [61, -34], + [46, -95], + [0, -100] + ], + [ + [2703, 12896], + [18, -25], + [-12, -93], + [-51, -48], + [-116, 13], + [2, -54], + [-43, -39] + ], + [ + [2501, 12650], + [-36, 31], + [-74, -6], + [-27, -26] + ], + [ + [2162, 13256], + [21, -22], + [117, 17], + [45, 51], + [18, 98], + [37, 33], + [50, 190], + [92, -61], + [74, -8] + ], + [ + [2424, 12459], + [49, 26], + [10, 41] + ], + [ + [2483, 12526], + [43, 20], + [-25, 104] + ], + [ + [3500, 13931], + [22, -43], + [-51, -16], + [-11, 45], + [40, 14] + ], + [ + [3057, 13696], + [55, 66], + [49, 12], + [26, -29], + [177, -4], + [64, -22], + [78, -67], + [86, 24], + [32, 35], + [136, -78], + [51, -74], + [10, -75], + [-25, -21], + [9, -73], + [-30, -48], + [-1, -65], + [23, -13], + [91, 9] + ], + [ + [4041, 11022], + [1, -73], + [-17, -93], + [-25, -53], + [-145, -116], + [-17, -33], + [-72, -49], + [-5, 45], + [-82, 169], + [-250, 12], + [-41, -39], + [-22, 48], + [-39, -14], + [12, -66], + [-58, -46], + [-56, -9], + [-66, 14], + [-47, -26], + [-73, -7], + [-57, -24], + [-52, 9], + [-51, 61], + [27, 77], + [-3, 65], + [29, 59], + [-31, 97] + ], + [ + [4035, 12308], + [-51, -94] + ], + [ + [4025, 12159], + [95, 70], + [105, 56], + [39, -17], + [103, 9], + [29, 26], + [92, -32] + ], + [ + [1356, 12096], + [59, 64], + [61, -4], + [77, 47], + [24, -13], + [90, 35], + [25, -24], + [76, 69], + [35, 62], + [90, 43], + [32, 58], + [58, -7], + [41, 40], + [52, 22], + [141, -10], + [40, 30], + [90, 20], + [33, 23], + [103, -25] + ], + [ + [1329, 12108], + [27, 21], + [-17, 49], + [-76, -34], + [-79, 50], + [-49, -10], + [-20, 43], + [-63, 40], + [8, 61], + [87, 123], + [124, -85], + [164, 108], + [99, 7], + [42, 17], + [21, 134], + [70, 55], + [55, 129], + [3, 140], + [42, 24] + ], + [ + [9662, 18553], + [-34, -96], + [-95, -127], + [-37, -88], + [-39, -55], + [19, -54], + [-5, -91], + [-23, -60], + [-64, -99], + [-28, -11], + [-72, -120], + [-114, -54], + [-50, -86] + ], + [ + [9120, 17612], + [-87, 10], + [-60, 71], + [-88, 12], + [-37, 23], + [-73, 104], + [-6, 82], + [28, 82], + [-47, 72], + [-59, 41], + [-49, 67], + [-71, 0], + [-35, 38], + [-61, 29], + [-82, -38], + [-146, 4], + [-49, -19], + [-41, -48], + [-30, -124], + [-19, -18], + [-58, 41], + [-56, 7], + [-113, 54], + [-28, -76], + [-150, -49] + ], + [ + [7703, 17977], + [-98, -16], + [-62, 39], + [-68, -12], + [-30, 20], + [0, 71], + [-27, 23], + [-54, -18], + [-56, 18], + [-37, -25], + [-59, 6], + [-24, 26], + [-78, -7] + ], + [ + [7110, 18102], + [22, 88], + [53, 71], + [-5, 93], + [18, 127], + [85, 47] + ], + [ + [7283, 18528], + [88, -34], + [284, 0], + [121, 19], + [33, 60], + [-33, 91], + [20, 72], + [76, 34], + [134, 174], + [100, 53], + [136, -27], + [65, 80], + [28, 76], + [-4, 94], + [-52, 95], + [-9, 125], + [28, 72], + [83, 71], + [65, 42], + [121, 0], + [115, -38], + [37, 19], + [2, 42], + [-65, 102], + [-46, 42], + [-62, 124], + [1, 158] + ], + [ + [8549, 20074], + [51, 8], + [103, -15], + [50, -20], + [127, -4], + [66, -31], + [84, 7], + [164, -10], + [65, 5], + [61, 63], + [82, -35], + [97, -22], + [87, 70], + [63, 0], + [58, -21], + [56, 13], + [13, -46], + [112, -18], + [42, -90], + [93, -64], + [-6, -67], + [38, -114], + [-6, -34], + [40, -94], + [0, -85], + [-118, -186], + [-67, -58], + [-70, -90], + [-30, -16], + [-60, -113], + [-53, -121] + ], + [ + [9691, 18886], + [-99, 10], + [-46, -43], + [-41, 0], + [-48, 48], + [-90, 0], + [-47, -53], + [2, -62], + [45, -81], + [-33, -72], + [-80, -2], + [-12, -92], + [28, -44], + [339, 74], + [53, -16] + ], + [ + [9691, 18886], + [-40, -139], + [7, -91], + [36, -11], + [-32, -92] + ], + [ + [8169, 16928], + [-100, 40], + [-34, 68], + [2, 38], + [39, 97], + [86, 98], + [-67, 23], + [-39, 83], + [-38, 26], + [-119, 30], + [-23, 19], + [-84, 120], + [-31, 94], + [0, 94], + [-53, 143], + [-5, 76] + ], + [ + [9120, 17612], + [-29, -94], + [-29, 42], + [-59, 8], + [-1, -63], + [49, 15], + [70, -5], + [-24, -63], + [-43, -16], + [-42, -57], + [5, -45], + [37, -29], + [-102, -156], + [-85, -28], + [-41, -60], + [-108, -71], + [-34, -85], + [-82, 32], + [-53, -3] + ], + [ + [8549, 16934], + [-34, 102], + [-123, 0], + [-60, -19], + [-140, -22], + [-23, -67] + ], + [ + [3166, 17487], + [24, -14], + [-23, -86], + [-45, -79], + [-101, -91], + [-41, -3], + [-66, -35], + [-59, 23], + [88, 101], + [29, 48], + [75, 55], + [20, 39], + [99, 42] + ], + [ + [4891, 17354], + [192, -24], + [36, -37], + [103, -23], + [54, 41], + [27, 45], + [73, 9], + [69, 39], + [89, -33], + [108, 19], + [49, -28], + [72, -4] + ], + [ + [5763, 17358], + [54, -5], + [57, 26], + [24, -47], + [-16, -50], + [48, -12], + [55, -96], + [-54, 11], + [-144, -68], + [47, -35], + [17, -40], + [-40, -71], + [54, -51] + ], + [ + [5865, 16920], + [-38, -29], + [-84, -17], + [-5, -42], + [-66, -28], + [-49, -47], + [-44, -118], + [85, -51], + [-5, -64], + [89, 26], + [103, -19], + [-33, -53], + [21, -50], + [-41, -84], + [7, -129], + [102, -284], + [19, -27] + ], + [ + [5926, 15904], + [1, -303], + [9, -48] + ], + [ + [5936, 15553], + [-114, 41], + [-51, 90], + [-123, 63], + [-74, 159], + [-7, -52], + [49, -112], + [60, -72], + [-102, -10], + [-48, 82], + [1, 57], + [-56, 47], + [18, -146], + [-21, -101], + [-36, -45], + [-24, -114], + [-31, -38], + [-13, -57], + [-99, 26], + [-42, 72], + [-46, 1], + [-124, 120], + [-27, -76], + [-47, -37], + [58, -185], + [-173, 68], + [-14, 71], + [-38, 33], + [5, 77], + [28, 81], + [-24, 21], + [8, 78], + [39, 39], + [35, 94], + [37, 58], + [72, 68], + [21, 82], + [75, 23], + [77, 47], + [57, 133], + [-64, -14], + [-1, -43], + [-46, -68], + [-84, -25], + [-64, -54], + [-29, -81], + [-39, -21], + [-21, -62], + [-56, 5], + [-3, -93], + [-66, -70], + [-68, 19], + [-33, -13], + [9, -120], + [24, -31], + [14, -132], + [62, -115], + [48, -56], + [44, -115], + [-21, -58], + [-33, 6], + [-64, -39], + [-79, -104], + [2, -46], + [-44, -147], + [1, -78], + [25, -37], + [-42, -30], + [-8, -84], + [-32, -126], + [-50, -139], + [-1, -65], + [49, -121], + [-69, -124], + [-59, -41], + [-117, 3], + [-54, -39], + [-69, -9], + [-50, 22], + [2, 97], + [-11, 31], + [9, 113], + [64, 76], + [50, 23], + [13, 92], + [-3, 114], + [13, 109], + [-17, 66], + [34, 25], + [23, 77], + [22, 127], + [-8, 45], + [49, 35], + [95, 178], + [26, 2], + [112, 99], + [-27, 29], + [-62, -80], + [-114, -68], + [2, 46], + [-70, 50], + [-15, 47], + [12, 83], + [52, 90], + [36, 86], + [-113, -76], + [-9, 79], + [30, 82], + [38, 41], + [66, 117], + [-26, 11], + [-80, -128], + [-60, 3], + [86, 163], + [97, 164], + [61, -13], + [20, 25], + [-58, 44], + [95, 182], + [-31, 8], + [-76, -86], + [-20, 36], + [48, 112], + [9, 68], + [-104, 68], + [-43, 74], + [16, 48], + [64, 30], + [85, 68], + [23, 94], + [72, 80], + [-13, 51], + [60, 40], + [43, -6], + [105, 20], + [85, -19], + [26, 18], + [58, -33], + [55, 8], + [72, 79], + [-19, 55], + [-45, -105], + [-75, -21], + [-36, 29], + [-31, -5], + [-118, 25], + [-56, -9], + [-15, 60], + [-77, 9], + [39, 71], + [49, 13], + [32, -41], + [100, 49], + [3, 54], + [-84, -68], + [-77, 65], + [83, 123], + [96, 112] + ], + [ + [3509, 16518], + [-20, 71], + [86, -28], + [252, 83], + [31, 56], + [-46, 17], + [-42, -46], + [-78, -26], + [-54, 2], + [-70, -21], + [-21, 38], + [13, 48], + [74, 61], + [44, 94], + [64, -8], + [83, 49], + [-19, 54], + [-147, -36], + [-37, -27], + [-80, 17], + [-40, -12], + [-43, 31], + [-57, 7], + [9, 43], + [76, -6], + [44, 15], + [46, -38], + [56, 40], + [-54, 23], + [-60, 49], + [-50, -17], + [-105, 26], + [-7, 54], + [32, 66], + [2, 60], + [136, 22], + [-6, 54], + [44, 28], + [46, -2], + [27, 29], + [131, -48], + [67, -117], + [38, -27], + [46, -143], + [234, -20], + [49, -68], + [68, -8], + [77, -94], + [30, -65], + [-72, -141], + [-71, -71], + [-132, -82], + [-82, 31], + [58, 51], + [-59, 28], + [-64, -82], + [-79, 4], + [-81, -76], + [-127, 8], + [-17, -28], + [-160, 7], + [-26, -63], + [-88, 14], + [-20, 32], + [-66, 11], + [19, 120], + [29, 38], + [68, -6], + [53, -53], + [48, -22] + ], + [ + [4469, 16897], + [18, 83], + [59, 32], + [89, 117], + [58, -4], + [-78, -86], + [-27, -48], + [-119, -94] + ], + [ + [2512, 16839], + [-98, 80], + [-1, 116], + [65, 34], + [89, -29], + [80, 64], + [39, -22], + [29, 32], + [69, -19], + [1, -32], + [-93, 0], + [-36, -39], + [-15, -54], + [-82, -8], + [-27, -45], + [11, -63], + [-31, -15] + ], + [ + [4511, 16760], + [63, 12], + [-18, -58], + [-39, -52], + [-54, 21], + [48, 77] + ], + [ + [3286, 16610], + [2, -37], + [-49, -76], + [-27, 64], + [74, 49] + ], + [ + [4363, 16263], + [-13, 43], + [24, 78], + [47, -60], + [-25, -97], + [-33, 36] + ], + [ + [4315, 16221], + [22, -24], + [-31, -78], + [-77, 1], + [27, 71], + [59, 30] + ], + [ + [4150, 15705], + [-73, -150], + [-1, -34], + [-73, -123], + [-52, -37], + [-41, -194], + [-149, 36], + [-23, 32], + [-25, 137], + [6, 51], + [74, 127], + [65, 31], + [31, -8], + [44, 36], + [-79, 43], + [0, 24], + [79, 127], + [125, 103], + [62, 29], + [37, 60], + [71, 39], + [40, 52], + [44, -31], + [6, -64], + [-63, -99], + [-74, -152], + [-31, -35] + ], + [ + [3576, 15971], + [19, 45], + [57, -13], + [-41, -96], + [-43, -44], + [17, -48], + [-31, -35], + [-90, 16], + [25, 67], + [4, 62], + [48, 51], + [35, -5] + ], + [ + [3522, 15778], + [-17, -58], + [-45, 48], + [62, 10] + ], + [ + [3137, 14854], + [-57, 56], + [48, 58], + [-15, 31], + [70, 119], + [-47, 52], + [41, 53], + [7, 102], + [93, 13], + [32, 44], + [49, -20], + [24, -45], + [37, 65], + [40, 18], + [105, 109], + [53, 24], + [61, 3], + [-16, -115], + [44, -115], + [-4, -81], + [29, -80], + [57, -54], + [-4, -67], + [27, -21], + [-14, -48], + [30, -70], + [-105, -94], + [-80, -52], + [-69, 18], + [-33, -31], + [-36, -73], + [-42, -36], + [-103, 26], + [12, 95], + [46, 63], + [55, 20], + [-32, 105], + [-33, 39], + [-51, 16], + [9, 56], + [105, 59], + [3, 47], + [-127, 6], + [-56, -141], + [-45, -64], + [-108, -90] + ], + [ + [4200, 14848], + [-13, 16], + [68, 91], + [3, -111], + [-58, 4] + ], + [ + [7177, 15885], + [-80, 93], + [-60, 3], + [-23, 56], + [32, 71], + [23, 92] + ], + [ + [7069, 16200], + [97, 60], + [53, -67], + [87, -7], + [12, 25], + [65, 3], + [74, -28], + [-1, -25], + [-119, -57], + [18, -70] + ], + [ + [7355, 16034], + [-1, -56], + [-124, -23], + [-53, -70] + ], + [ + [5276, 13104], + [76, 41], + [92, -25], + [53, 43], + [27, 57], + [103, 19], + [147, -6], + [104, 31], + [16, 59], + [-36, 23], + [-5, 88], + [54, 53], + [107, 54], + [74, -25], + [31, 16] + ], + [ + [6119, 13532], + [45, 46], + [9, -87], + [41, 29], + [2, 52], + [25, 22], + [12, 92], + [35, 61], + [6, 56], + [41, 32], + [36, 84], + [78, -9], + [19, 32], + [63, -8], + [79, -76], + [32, 41], + [0, 43], + [41, 78], + [-18, 63], + [6, 63], + [34, 49], + [100, 52], + [-8, 49], + [37, 18] + ], + [ + [6834, 14314], + [40, -17], + [115, 1], + [78, -22], + [83, -96], + [39, -98], + [51, -21], + [11, -109], + [87, -80], + [38, 8], + [14, 67], + [52, 28], + [6, 140], + [100, 67] + ], + [ + [7548, 14182], + [83, -14], + [49, 19], + [97, 0], + [42, 68], + [94, -24], + [17, -26], + [-62, -45], + [-30, -42], + [-9, -93], + [36, -20], + [115, 80], + [64, -58], + [50, 18], + [38, -12], + [9, -58], + [61, -58], + [33, -88], + [55, -12], + [77, 51], + [80, -26], + [28, -42], + [-38, -22], + [43, -42], + [7, -47], + [-30, -43], + [-7, -121], + [44, -48], + [13, -63] + ], + [ + [8213, 13087], + [-104, -24], + [-51, -30], + [-81, 30], + [-101, -26], + [-58, 28], + [-83, -17], + [-49, 15], + [-46, 42], + [-18, -41], + [-40, -23], + [-76, 0], + [-41, 29], + [-45, -96], + [36, -96], + [-50, -55], + [-64, -11], + [-98, 12], + [-83, -70], + [-50, 21], + [-17, -51], + [-78, 0], + [51, -56], + [-73, -54], + [-96, -42], + [-36, -38], + [-119, -4], + [-31, 30], + [25, 103], + [-34, 23], + [-26, -40], + [1, -101], + [-104, 10], + [-90, 118], + [-14, 78], + [-38, -48], + [-75, 23], + [-77, 41], + [-35, 49], + [-55, 12], + [-1, -84], + [15, -63], + [85, -38], + [18, -39], + [-27, -45], + [5, -57], + [-16, -69], + [23, -68], + [-20, -37], + [-64, -34], + [-55, 39], + [-54, 15], + [-60, 38], + [-36, 51], + [-33, 9], + [-26, 75], + [-139, 99], + [-51, 56], + [-71, 2], + [-37, 23], + [-31, 64], + [-62, 14], + [-32, -32], + [-97, -58], + [-33, -72], + [18, -17], + [56, -181], + [6, -64], + [60, -50], + [-23, -29], + [7, -80], + [-67, 8], + [-63, 65], + [-12, 58], + [37, 27], + [-68, 87], + [-11, 98], + [-62, 53], + [-140, 147], + [-11, 52], + [-59, 107], + [-3, 167], + [25, 61], + [91, 47], + [51, -58], + [15, -177], + [47, -50], + [61, 23], + [-9, 55], + [-61, 138] + ], + [ + [8549, 16934], + [-68, -36], + [-98, 6], + [-80, -38], + [-100, 13] + ], + [ + [8203, 16879], + [-34, 49] + ], + [ + [6119, 13532], + [34, 111], + [0, 209], + [-44, 74], + [-87, 73], + [-64, 109], + [11, 39], + [153, -28], + [7, 66], + [-34, 89], + [7, 31], + [69, 66], + [9, 89], + [-25, 70], + [-71, 31], + [-134, 89] + ], + [ + [5950, 14650], + [106, 78], + [14, 62], + [-49, 27], + [-113, 4], + [-11, 50], + [88, 97], + [60, 115] + ], + [ + [6045, 15083], + [17, -22], + [235, -103], + [93, -52], + [49, -12] + ], + [ + [6439, 14894], + [49, -116], + [56, -62], + [11, -47], + [-51, -69], + [15, -51], + [195, 4], + [51, 47], + [56, -4], + [46, -78], + [-4, -85], + [-29, -119] + ], + [ + [6624, 15718], + [7, -111], + [33, -17], + [75, 4], + [5, -86], + [-38, -41], + [-117, 4], + [-18, -47] + ], + [ + [6571, 15424], + [-77, -5], + [-82, 68], + [-38, -46], + [-84, 18] + ], + [ + [6290, 15459], + [-12, 17], + [-7, 165] + ], + [ + [6271, 15641], + [93, -48], + [40, 5], + [10, 75], + [-29, 74], + [132, 7], + [59, 16], + [48, -52] + ], + [ + [9223, 15563], + [-104, -129], + [52, -23], + [-38, -58], + [-157, -20], + [-92, -74], + [-67, 16], + [-20, 38], + [-121, -53], + [-66, 27], + [-59, -43] + ], + [ + [8551, 15244], + [-307, 231], + [-40, 41], + [-8, 53] + ], + [ + [8196, 15569], + [105, 26], + [26, 32], + [73, 7], + [57, 71], + [35, 101], + [25, 0], + [41, 62], + [62, 9], + [111, -23], + [12, 14], + [98, -29], + [53, -94], + [50, -35], + [34, 14], + [78, -26], + [22, -26], + [96, -46], + [51, -59], + [0, -1], + [-1, -1], + [0, 0], + [-1, -2] + ], + [ + [6455, 15171], + [-17, -113], + [39, -38], + [0, -114], + [-38, -12] + ], + [ + [6045, 15083], + [2, 9] + ], + [ + [6047, 15092], + [41, 34], + [70, 27], + [125, 84] + ], + [ + [6283, 15237], + [14, -65], + [81, 3], + [52, 22], + [25, -26] + ], + [ + [7703, 15233], + [2, 193], + [-61, 29], + [-21, 32], + [-1, 208] + ], + [ + [7622, 15695], + [90, -17], + [55, 30], + [45, -45], + [83, -13], + [144, 17], + [73, -73], + [59, -25] + ], + [ + [8171, 15569], + [-14, -147], + [-151, -21], + [-252, -183] + ], + [ + [7754, 15218], + [-51, 15] + ], + [ + [3201, 21190], + [98, -95], + [30, -132], + [-12, -59], + [-31, -42], + [-71, 36], + [-57, -34], + [29, -32], + [7, -61], + [-34, -73], + [-38, 8], + [-57, -57], + [-62, -19], + [-110, 19], + [-84, 126], + [7, 66], + [-29, 52], + [-40, -17], + [45, -119], + [70, -96], + [7, -112], + [-183, 35], + [85, -169], + [-79, -45], + [-88, -18], + [-35, -68], + [-100, -54], + [-37, -66], + [-133, 124], + [-48, 77], + [-44, 16], + [-25, 62], + [49, 5], + [39, -40], + [40, 8], + [95, 93], + [91, 29], + [-59, 31], + [55, 59], + [104, -26], + [8, 36], + [-141, 93], + [-63, 15], + [-46, -9], + [-93, 38], + [-8, 135], + [52, 5], + [-10, 102], + [-61, 20], + [-24, 116], + [-24, 65], + [59, 65], + [-17, 56], + [53, 23], + [24, 95], + [76, 8], + [34, -38], + [99, -35], + [-53, -30], + [99, -39], + [63, 62], + [115, -23], + [-10, 80], + [-39, 29], + [-56, 123], + [46, 58], + [64, -1], + [43, 57], + [105, 60], + [41, -7], + [69, 41], + [42, 2], + [40, 76], + [99, 65], + [85, 76], + [65, 27], + [33, 49], + [47, 5], + [43, 39], + [17, 54], + [57, -43], + [10, -43], + [49, -38], + [-13, -69], + [33, -41], + [-56, -109], + [-7, -58], + [29, -32], + [-24, -61], + [-36, -23], + [-20, -60], + [-56, -20], + [5, -44], + [-61, -1], + [8, -62], + [-41, -18], + [77, -79], + [80, 43], + [53, 64], + [96, 33], + [-44, -134], + [-60, -53], + [-73, -23], + [-44, 63], + [-32, 3], + [-46, -50], + [-74, 35], + [32, -121], + [-5, -56], + [-108, -8] + ], + [ + [2546, 21562], + [48, -14], + [50, -69], + [50, -40], + [-24, -45], + [-95, 1], + [-11, 78], + [-27, 38], + [9, 51] + ], + [ + [2186, 20959], + [32, -18], + [12, -70], + [-77, 10], + [-27, 56], + [60, 22] + ], + [ + [2377, 20660], + [22, -50], + [-37, -58], + [-56, 12], + [28, 87], + [43, 9] + ], + [ + [2821, 20533], + [75, -6], + [-29, -55], + [-46, 61] + ], + [ + [0, 20418], + [71, -20], + [-47, -41], + [-24, 61] + ], + [ + [2062, 20307], + [11, -51], + [-57, -14], + [-21, 51], + [67, 14] + ], + [ + [2140, 20188], + [19, -53], + [-72, -43], + [-29, 25], + [28, 57], + [54, 14] + ], + [ + [1807, 19918], + [22, 65], + [34, 11], + [87, -27], + [136, 113], + [54, -36], + [-2, -74], + [37, -16], + [66, 8], + [45, -29], + [-59, -84], + [-73, 50], + [-3, -98], + [80, 12], + [-45, -144], + [-47, -76], + [-128, -4], + [-23, 14], + [-85, -8], + [-2, 47], + [-44, 65], + [-67, 33], + [-33, 41], + [-59, -45], + [-31, 8], + [-55, 92], + [53, 155], + [95, -24], + [47, -49] + ], + [ + [1780, 19694], + [52, 5], + [49, -51], + [-27, -59], + [-74, 105] + ], + [ + [2078, 19531], + [-66, -14], + [-44, 45], + [33, 26], + [61, -13], + [16, -44] + ], + [ + [2077, 19580], + [49, -1], + [21, -51], + [-25, -34], + [-47, 48], + [2, 38] + ], + [ + [2056, 19464], + [20, -112], + [-48, -51], + [-94, 6], + [-73, 53], + [-63, 21], + [-27, 115], + [48, 11], + [18, 43], + [118, -16], + [30, -50], + [38, 26], + [33, -46] + ], + [ + [1985, 18547], + [-156, 1], + [-59, 117], + [-18, 114], + [3, 61], + [-26, 58], + [23, 39], + [3, 83], + [38, 41], + [-4, 118], + [-17, 103], + [21, 32], + [86, 8], + [34, -38], + [62, -17], + [20, -61], + [49, -27], + [-14, -59], + [24, -55], + [44, -14], + [-19, -48], + [-72, -52], + [-18, -166], + [28, -85], + [-47, -50], + [47, -17], + [50, -60], + [-82, -26] + ], + [ + [1969, 18520], + [9, -38], + [-53, -52], + [-4, 72], + [48, 18] + ], + [ + [1624, 18271], + [7, 24], + [78, 54], + [104, -54], + [9, -38], + [-67, -48], + [-19, -62], + [-138, -3], + [-40, 11], + [4, 54], + [57, 20], + [5, 42] + ], + [ + [1542, 18153], + [52, -9], + [34, -63], + [-63, -35], + [-45, 60], + [22, 47] + ], + [ + [1465, 17848], + [-2, -77], + [-49, -17], + [-7, 73], + [58, 21] + ], + [ + [7529, 15703], + [-39, -34], + [-88, 12], + [-101, -126], + [-77, -27], + [-81, -76], + [-51, -18] + ], + [ + [7092, 15434], + [-9, 28], + [-117, 70], + [43, 58], + [-85, 4], + [-22, 69], + [-55, 3], + [3, 54], + [-57, 15] + ], + [ + [6793, 15735], + [34, 28], + [98, 37], + [144, 16], + [83, 21], + [58, -3] + ], + [ + [7210, 15834], + [2, -46], + [84, -43], + [136, 7], + [97, -49] + ], + [ + [7355, 16034], + [68, 17], + [50, 46], + [32, -28], + [84, 6], + [126, -18], + [40, 64], + [53, 14], + [39, 46], + [54, 29], + [-5, 59], + [-36, 36], + [-88, 9], + [-21, 72], + [41, 45], + [52, -1], + [13, 55], + [47, -4], + [25, 31], + [-30, 97] + ], + [ + [7899, 16609], + [101, 37], + [114, 68], + [38, 8], + [76, 55], + [70, 10], + [68, 42], + [14, 27], + [78, 15], + [38, -33], + [70, 14], + [11, -26], + [-14, -120], + [-18, -29], + [-82, -39], + [65, -24], + [86, -52], + [134, -16], + [47, -23], + [36, -56], + [69, -46], + [-154, -146], + [-135, -55], + [-47, -38], + [-48, -7], + [-73, 63], + [-91, 7], + [-44, -29], + [-48, -63], + [-41, -17], + [-57, -74], + [-89, -51], + [-43, -147], + [-59, 5], + [-26, -25], + [-51, 13], + [-106, -52], + [-27, -34], + [-47, -9], + [-2, -39], + [-186, 85], + [-47, -2], + [-43, 48], + [-130, -30], + [-100, 44] + ], + [ + [7206, 15868], + [-29, 17] + ], + [ + [6283, 15237], + [1, 116] + ], + [ + [6284, 15353], + [6, 106] + ], + [ + [6571, 15424], + [62, -60], + [59, 0], + [14, -33], + [-21, -73] + ], + [ + [6685, 15258], + [-137, 9], + [-29, -27], + [11, -65], + [-19, -27], + [-56, 23] + ], + [ + [7162, 19910], + [48, -119], + [29, -20], + [-4, -116], + [36, -26], + [12, -76], + [-8, -121], + [-51, -60], + [26, -38], + [52, 59], + [83, 9], + [47, 38], + [119, 22], + [88, -81], + [60, -12], + [20, -103], + [-50, -61], + [-40, -73], + [-41, -32], + [-15, -47], + [56, -34], + [-15, -125], + [52, -37], + [-11, -53], + [-37, -63], + [-33, 2], + [-83, -38], + [-37, -48], + [-86, -72], + [-40, -4], + [-56, -53] + ], + [ + [7110, 18102], + [-30, 10], + [-90, -24], + [-93, 59], + [-28, -48], + [-24, -86], + [-84, 18], + [-98, -19], + [-96, 34], + [-56, -40], + [2, -61], + [-77, -42], + [-74, -21], + [-44, -53], + [-50, 6], + [-39, -35], + [-64, -89], + [-56, 19], + [-59, 46], + [-55, -103], + [-39, -23], + [7, -71], + [-36, -48], + [17, -42], + [-87, -43], + [-85, -14], + [-9, -74] + ], + [ + [4891, 17354], + [-31, 22], + [61, 56], + [43, -1], + [95, 76], + [-92, 16], + [122, 194], + [93, 112], + [-105, 72], + [-135, 3], + [14, -28], + [112, 10], + [84, -53], + [-142, -158], + [-52, -70], + [7, -50], + [-79, -15], + [-74, -71], + [-5, -27], + [-74, -82], + [-41, -1], + [-54, -71], + [-33, -20], + [-98, -160], + [-80, -65], + [-96, -50], + [-25, 30], + [-84, 16], + [-29, 37], + [-138, 30], + [-93, 51], + [-48, 50], + [-27, 71], + [-33, 22], + [-9, 69], + [137, 44], + [113, -6], + [107, 88], + [65, 7], + [6, 32], + [-78, -4], + [-101, -92], + [-130, 7], + [-14, 30], + [-65, -36], + [-74, 18], + [-30, 33], + [-98, 8], + [-36, -35], + [-67, 12], + [-61, 76], + [59, 99], + [101, 27], + [82, -12], + [98, 27], + [57, 34], + [80, -87], + [25, 30], + [1, 59], + [76, -19], + [61, 44], + [-106, 42], + [10, 48], + [109, 19], + [44, 52], + [-44, 23], + [59, 47], + [-78, 17], + [-109, -28], + [-72, 1], + [-4, 29], + [65, 20], + [-5, 60], + [44, 45], + [15, 129], + [20, 48], + [34, 14], + [118, 10], + [28, -71], + [55, -35], + [68, -6], + [140, 48], + [-3, 22], + [-124, -50], + [-60, 26], + [-33, 43], + [-16, 77], + [-96, -19], + [-47, 42], + [-17, 46], + [59, 63], + [40, 21], + [12, 51], + [65, 3], + [50, 22], + [78, -22], + [85, -83], + [27, 33], + [-53, 30], + [-11, 53], + [-74, 33], + [-75, -7], + [-42, 36], + [21, 75], + [47, 30], + [27, 48], + [-46, 48], + [29, 43], + [169, 47], + [-207, 31], + [-96, -5], + [18, 101], + [46, 26], + [-3, 34], + [106, -7], + [52, 40], + [67, -3], + [107, 93], + [31, 64], + [-34, 13], + [-108, -131], + [-93, -34], + [-54, 29], + [33, 90], + [-117, -65], + [-46, -50], + [-94, -26], + [-50, 39], + [-10, 77], + [26, 26], + [-23, 102], + [-41, 2], + [-25, 70], + [0, 83], + [25, 66], + [0, 57], + [24, 78], + [41, 16], + [99, -106], + [66, 10], + [-3, -40], + [42, -24], + [94, 31], + [129, -14], + [-29, 60], + [-173, -14], + [-41, 16], + [-1, 59], + [-65, 23], + [-11, 60], + [-53, 60], + [-69, 41], + [49, 92], + [-5, 34], + [44, 25], + [73, 1], + [20, 59], + [-95, 3], + [-70, 39], + [11, 127], + [-18, 54], + [9, 118], + [42, -8], + [132, 26], + [9, -88], + [32, -23], + [-5, -72], + [61, -77], + [58, 117], + [4, 60], + [-85, 66], + [4, 131], + [59, 26], + [68, -37], + [0, -68], + [20, -40], + [125, -40], + [-2, 45], + [45, 101], + [107, -55], + [39, -56], + [94, -31], + [21, 35], + [-100, 36], + [-38, 66], + [-81, 18], + [-16, 35], + [72, 30], + [39, -63], + [62, -10], + [71, 18], + [135, -110], + [33, -1], + [63, -120], + [28, -1], + [-50, 108], + [-50, 25], + [-28, 44], + [-92, 62], + [34, 87], + [-74, 20], + [-9, 23], + [-99, 25], + [8, 25], + [-88, 105], + [-82, 19], + [0, 51], + [-50, 27], + [32, 95], + [53, -20], + [53, -69], + [59, -4], + [55, 23], + [13, 63], + [-9, 60], + [-38, 75], + [-4, 43], + [-71, 86], + [-1, 31], + [-64, 45], + [14, 54], + [78, -10], + [55, -59], + [100, 70], + [123, -4], + [30, 61], + [-5, 84], + [-46, 27], + [-27, 83], + [48, 68], + [5, 67], + [58, -18], + [-7, 82], + [51, 54], + [44, 5], + [-110, 91], + [18, 88], + [32, 41], + [61, 7], + [59, 135], + [9, 89], + [88, -42], + [116, -7], + [66, -32], + [41, -49], + [85, 4], + [52, -60], + [70, -8], + [7, -50], + [-91, -96], + [4, -79], + [50, 48], + [47, 94], + [72, 35], + [-7, 96], + [84, 28], + [159, -68], + [38, -81], + [-56, -59], + [-40, -148], + [73, 94], + [9, 39], + [93, 108], + [80, 17], + [128, -29], + [1, 48], + [70, -15], + [26, 53], + [99, -17], + [48, 32], + [8, 44], + [44, 13], + [14, -73], + [77, 22], + [48, -38], + [43, 23], + [48, -11], + [125, 28], + [184, 126], + [14, -21], + [155, 18], + [-17, -49], + [47, -15], + [44, 31], + [83, -9], + [96, -28], + [27, 39], + [-101, 75], + [11, 55], + [43, 28], + [50, -63], + [71, -5], + [38, 23], + [102, 3], + [56, -44], + [88, 20], + [117, -6], + [-17, -87], + [-47, -121], + [-80, -85], + [-17, -52], + [9, -63], + [30, -31], + [83, 15], + [-2, -87], + [-69, -128], + [-12, -66], + [-53, -39], + [-114, -130], + [-78, -19], + [-168, -80], + [-123, -154], + [-55, -91], + [-246, -182], + [-103, -86], + [-61, -10], + [-71, -63], + [-18, -83], + [-68, -52], + [-65, -11], + [-72, -36], + [-35, -95], + [23, -77], + [-32, -31], + [-7, -69], + [-106, 0], + [-27, -27], + [-98, 18], + [-41, 28], + [-103, -4], + [-43, -40], + [161, 23], + [76, -89], + [63, 10], + [78, -40], + [117, 75], + [69, -20], + [42, -43], + [44, 9], + [47, 40], + [24, 52], + [49, -30], + [-105, -155], + [-99, -98], + [3, -18], + [-90, -131], + [-88, 16], + [38, 94], + [-92, -10], + [-50, -34], + [-76, -78], + [-74, 10], + [-83, -36], + [-54, -7], + [3, -43], + [-169, -135], + [57, -23], + [72, 85], + [119, 93], + [45, 19], + [77, 2], + [-5, -31], + [115, 4], + [79, 52], + [63, -22], + [-50, -46], + [-113, -136], + [-16, -71], + [-83, -30], + [-7, -36], + [-88, -133], + [-115, 4], + [-84, 26], + [-69, -26], + [59, -58], + [117, 5], + [115, 39], + [51, -31], + [104, 81], + [25, 60], + [63, 33], + [23, 39], + [-32, 57], + [73, 29], + [114, -39], + [101, 14], + [97, 47], + [56, 57] + ], + [ + [4016, 18901], + [56, 39], + [70, 9], + [39, 30], + [62, 12], + [134, -55], + [-28, -45], + [-3, -69], + [-62, -60], + [-113, -48], + [6, -61], + [-67, -94], + [-34, 9], + [-31, -66], + [-74, -110], + [-92, -38], + [-58, -9], + [-20, 72], + [40, 93], + [34, 43], + [-12, 57], + [77, 51], + [37, 47], + [-23, 26], + [-73, -22], + [-41, 100], + [-106, -204], + [-46, 26], + [15, 78], + [-42, 45], + [-81, -29], + [-34, 11], + [-152, -45], + [43, 77], + [-102, -6], + [-76, 114], + [-68, 77], + [-46, 131], + [52, 23], + [1, 68], + [-53, 49], + [15, 27], + [-80, 55], + [-44, -35], + [-12, -126], + [-26, -10], + [-57, 42], + [-80, 21], + [-72, 45], + [-30, 108], + [-67, 40], + [5, 61], + [31, 11], + [24, 106], + [50, 34], + [74, -135], + [77, -38], + [-40, 145], + [115, 15], + [-121, 113], + [11, 144], + [80, -52], + [20, -94], + [95, -45], + [52, -66], + [90, 39], + [58, -17], + [-46, 122], + [6, 126], + [-47, 71], + [107, 79], + [-1, 67], + [81, 28], + [5, -38], + [54, -32], + [36, -108], + [66, -15], + [77, -133], + [-4, -225], + [9, -60], + [-14, -109], + [-47, -43], + [78, -45], + [-20, -73], + [54, -104], + [-6, -29], + [86, -12], + [9, -47], + [61, -49], + [141, -50], + [18, -35] + ], + [ + [3885, 19608], + [-27, 44], + [27, 39], + [-14, 63], + [48, 28], + [-2, -77], + [-32, -97] + ], + [ + [3881, 19532], + [-28, -84], + [-34, -26], + [11, -137], + [36, -86], + [-40, -59], + [-71, 2], + [-20, 58], + [10, 56], + [-15, 113], + [44, 104], + [65, 7], + [-34, 68], + [76, -16] + ], + [ + [3858, 19121], + [75, -18], + [36, -30], + [-2, -64], + [-92, -13], + [-54, 71], + [37, 54] + ], + [ + [3555, 18710], + [33, -38], + [-32, -41], + [-44, -15], + [-34, 53], + [77, 41] + ], + [ + [3137, 18406], + [-41, -7], + [-54, 29], + [65, 39], + [30, -61] + ], + [ + [3243, 18356], + [26, 36], + [90, 44], + [122, -68], + [20, -66], + [-28, -121], + [-56, -57], + [-48, -9], + [-60, 45], + [-34, 56], + [-88, 71], + [56, 69] + ], + [ + [3551, 18028], + [67, 30], + [13, 73], + [57, -32], + [-3, -109], + [-29, -36], + [-43, -2], + [-67, 43], + [5, 33] + ], + [ + [4039, 17795], + [65, -35], + [-38, -30], + [-44, 22], + [17, 43] + ], + [ + [5700, 15336], + [-36, 32], + [-112, 3], + [-59, -16] + ], + [ + [5493, 15355], + [-12, 67], + [28, 34], + [0, 97], + [129, 57], + [180, -79], + [44, -3] + ], + [ + [5862, 15528], + [76, -130], + [3, -79], + [-30, -22], + [-175, 17], + [-36, 22] + ], + [ + [8171, 15569], + [25, 0] + ], + [ + [8551, 15244], + [-51, -22], + [-46, -65], + [-68, -5], + [-15, 75], + [-193, -164], + [-33, -40], + [3, -45], + [-40, -17], + [-36, 26], + [3, 43], + [-61, 162], + [-67, -65], + [-59, -6], + [-41, 51], + [-58, 1], + [-35, 45] + ], + [ + [7162, 19910], + [80, 33], + [5, 36], + [121, 15], + [106, -6], + [74, 37], + [24, 70], + [202, 56], + [98, -21], + [159, -74], + [190, -57], + [39, -4], + [133, 67], + [8, 20], + [108, 21], + [40, -29] + ], + [ + [5163, 15113], + [-39, 97], + [3, 70], + [-78, 79], + [-41, 96], + [50, 58], + [37, -10], + [76, -79], + [44, -24], + [27, -58], + [5, -54], + [52, 11], + [2, -88], + [30, -93], + [-16, -70], + [13, -42], + [-44, -19], + [-31, 29], + [-13, 73], + [-77, 24] + ], + [ + [5700, 15336], + [53, -117], + [119, -117], + [175, -10] + ], + [ + [5950, 14650], + [-111, -76] + ], + [ + [5839, 14574], + [-10, 61], + [-45, 53], + [-64, 44], + [-96, 44], + [-94, 118], + [-58, 34], + [2, 59], + [28, 20], + [41, 52], + [-5, 81], + [-42, 96], + [-3, 119] + ], + [ + [5476, 15170], + [6, -101], + [-77, -9], + [30, 87], + [41, 23] + ], + [ + [4817, 14427], + [-9, 54], + [19, 50], + [-8, 62], + [-73, 115], + [25, 111], + [24, 58], + [49, 22], + [18, 45], + [87, 42], + [82, -45], + [65, -65], + [34, -94], + [8, -108], + [-26, -58], + [61, -15], + [39, -52], + [-42, -25], + [-22, -46], + [69, -40], + [-21, -64], + [20, -49], + [-39, -64], + [-76, 3], + [-24, -19], + [-114, 11], + [-96, 68], + [-20, 66], + [-30, 37] + ], + [ + [6624, 15718], + [65, 52], + [94, 0], + [10, -35] + ], + [ + [7092, 15434], + [23, -61], + [96, 30], + [26, -34], + [-51, -31], + [40, -118], + [-23, -74] + ], + [ + [7203, 15146], + [-70, -53], + [-149, -78], + [-23, 4], + [-125, 107], + [-123, 94], + [-28, 38] + ], + [ + [9202, 24452], + [-42, -39], + [-2, -59], + [-61, 13], + [24, 66], + [81, 19] + ], + [ + [8310, 24271], + [124, -50], + [27, -43], + [9, -79], + [-67, 55], + [-110, -33], + [-37, 53], + [-2, 43], + [-49, 38], + [105, 16] + ], + [ + [9003, 24098], + [-27, -49], + [-118, 5], + [-110, -91], + [-13, 48], + [187, 143], + [56, -28], + [67, 62], + [105, 55], + [-13, -94], + [-73, 8], + [-61, -59] + ], + [ + [8648, 23935], + [-4, -74], + [-21, -50], + [-83, 75], + [12, 38], + [59, 5], + [-17, 61], + [6, 70], + [80, -44], + [-32, -81] + ], + [ + [8213, 23774], + [-40, 19], + [-57, 63], + [-3, 35], + [48, 58], + [54, -7], + [13, -40], + [128, 0], + [-35, -51], + [20, -63], + [-63, -22], + [-65, 8] + ], + [ + [8389, 23881], + [32, -17], + [-11, -86], + [-31, 13], + [10, 90] + ], + [ + [8952, 23698], + [12, -46], + [-56, -18], + [-81, 81], + [-18, -84], + [-63, 31], + [54, 68], + [45, 30], + [-65, 66], + [106, -24], + [-22, -36], + [63, -17], + [25, -51] + ], + [ + [8155, 23439], + [50, -7], + [28, 34], + [130, -52], + [25, 66], + [37, -39], + [-18, -44], + [13, -56], + [146, 59], + [7, -95], + [147, 65], + [-6, -126], + [-102, -21], + [-78, -116], + [-20, 45], + [-55, 29], + [-35, -73], + [46, -70], + [-20, -54], + [-60, -82], + [-11, -57], + [42, -38], + [-21, -56], + [-36, -1], + [-58, 39], + [4, 85], + [-57, 69], + [21, 46], + [68, 29], + [-1, 29], + [56, 78], + [-13, 63], + [-59, 96], + [-51, 12], + [-114, -43], + [-41, 8], + [-32, -38], + [-82, 4], + [-47, 19], + [-22, 42], + [-4, 114], + [-87, -94], + [-40, 8], + [-54, 78], + [-8, 38], + [27, 166], + [2, 98], + [55, 102], + [104, 35], + [73, -10], + [149, -78], + [61, -18], + [-2, -40], + [73, -84], + [-90, -87], + [-54, -36], + [14, -41] + ], + [ + [8579, 23665], + [4, -45], + [-53, -117], + [-96, 27], + [-53, -11], + [48, 102], + [71, -36], + [26, 59], + [53, 21] + ], + [ + [7932, 22884], + [43, 41], + [108, 5], + [-4, -50], + [-149, -25], + [-75, 6], + [-116, 156], + [-26, 87], + [-67, 2], + [16, 84], + [39, 53], + [95, 16], + [21, -54], + [48, -8], + [106, -71], + [20, -60], + [-3, -128], + [-65, -13], + [9, -41] + ], + [ + [8183, 23051], + [-48, -38], + [37, -51], + [-90, 2], + [-14, 31], + [41, 41], + [74, 15] + ], + [ + [7069, 16200], + [-27, 67], + [-52, -12], + [-43, 52], + [-82, 43], + [-50, 48], + [-152, 24], + [-31, 39], + [-74, 17], + [-72, 74], + [-14, 69], + [7, 63], + [55, 29], + [0, 170], + [57, -12], + [78, 40], + [-39, 88], + [-34, 25], + [-46, -7], + [-86, -46], + [-75, -26], + [-56, 134], + [-43, 19], + [-57, -38], + [-136, -39], + [-57, 9], + [-13, -34], + [-104, -23], + [-58, -53] + ], + [ + [8203, 16879], + [-36, -13], + [-76, -66], + [-64, -82], + [-128, -109] + ], + [ + [5862, 15528], + [91, -20], + [92, 15] + ], + [ + [6045, 15523], + [42, -10], + [197, -160] + ], + [ + [7548, 14182], + [-51, 73], + [33, 139], + [40, 59], + [-3, 117], + [-59, 103], + [72, 31], + [14, 35], + [-16, 59], + [126, 152], + [-61, 27], + [1, 41], + [-34, 92] + ], + [ + [7610, 15110], + [35, 71], + [58, 52] + ], + [ + [9223, 15563], + [62, -35], + [100, -18], + [77, 11], + [44, -31], + [56, -2], + [4, -61], + [90, -61], + [9, -67], + [53, -100] + ], + [ + [11467, 27760], + [-160, -7], + [-117, -194], + [53, -43], + [-59, -236], + [-163, -16], + [-37, 43], + [-24, 98], + [-4, 113], + [-16, 56], + [20, 77], + [73, 66], + [17, 174], + [79, 18], + [92, -16], + [56, -58], + [21, 41], + [-8, 53], + [29, 29], + [9, 65], + [-17, 51], + [58, 55], + [28, 63], + [163, -31], + [6, -129], + [-52, -25], + [45, -76], + [-76, -34], + [-38, -62], + [46, -54], + [-24, -21] + ], + [ + [10495, 26437], + [-87, 82], + [-48, -2], + [-96, 86], + [-51, 28], + [20, 105], + [-2, 61], + [92, 16], + [55, -16], + [105, 43], + [68, 87], + [-4, 68], + [89, 53], + [-69, 40], + [2, 85], + [-85, 44], + [-44, 42], + [-105, -16], + [-34, 32], + [102, 75], + [7, 74], + [51, 28], + [50, -21], + [88, 76], + [13, 112], + [65, -33], + [55, 0], + [0, 43], + [64, -6], + [-19, -213], + [-39, -12], + [22, -92], + [92, -53], + [49, 43], + [83, -96], + [3, -81], + [64, -26], + [84, 74], + [33, -25], + [-113, -109], + [69, -34], + [5, -57], + [-65, -38], + [-9, -48], + [59, -18], + [-84, -90], + [47, -21], + [-46, -45], + [-13, -47], + [-42, 2], + [-19, -59], + [51, -38], + [12, -48], + [-23, -49], + [20, -86], + [-88, -81], + [1, -90], + [39, -61], + [-71, -32], + [10, -52], + [34, -38], + [-26, -51], + [-42, 22], + [-32, -131], + [-1, -62], + [-34, -102], + [-40, 75], + [-95, -22], + [16, 72], + [60, 128], + [-25, 34], + [3, 62], + [39, 18], + [-57, 115], + [6, 50], + [76, 124], + [9, 63], + [-58, 33], + [13, 54], + [-28, 48], + [-83, -10], + [5, -42], + [-70, -60], + [-83, 16] + ], + [ + [11437, 27647], + [54, -14], + [19, -57], + [64, 20], + [6, -46], + [-51, -60], + [-39, 28], + [-84, -55], + [-36, 28], + [-59, 126], + [15, 28], + [71, -21], + [40, 23] + ], + [ + [11369, 26990], + [-111, -129], + [-88, 28], + [-20, 85], + [114, -5], + [23, 30], + [82, -9] + ], + [ + [10167, 26905], + [85, -6], + [15, -47], + [-58, -23], + [-39, 23], + [-3, 53] + ], + [ + [11132, 26474], + [43, -64], + [55, -6], + [-18, -48], + [-47, 28], + [-30, -98], + [-73, 34], + [11, 80], + [-55, 58], + [22, 31], + [92, -15] + ], + [ + [9656, 26417], + [39, -14], + [-10, -94], + [-91, 53], + [19, 47], + [43, 8] + ], + [ + [10306, 24869], + [31, -58], + [-61, 5], + [30, 53] + ], + [ + [5276, 13104], + [-26, 54], + [4, 96], + [80, 160], + [8, 82], + [91, 76], + [32, 68], + [73, 70], + [0, 67], + [32, 62], + [3, 89], + [-13, 34], + [104, 90], + [6, 106], + [37, 54], + [49, 33], + [83, 14], + [23, 83], + [33, 51], + [-5, 44], + [-52, 81], + [1, 56] + ], + [ + [7203, 15146], + [67, 30], + [114, 22], + [68, -42], + [62, -5], + [96, -41] + ], + [ + [6271, 15641], + [-65, 0], + [-34, 59], + [-39, 11], + [-18, 66], + [60, 33], + [-25, 33], + [-79, 22], + [-31, 25], + [-114, 14] + ], + [ + [7206, 15868], + [4, -34] + ], + [ + [6045, 15523], + [-108, 28], + [-1, 2] + ], + [ + [7529, 15703], + [93, -8] + ], + [ + [6471, 8439], + [-110, -92], + [-79, -42], + [-72, 34], + [-16, 45], + [-39, -11], + [-34, 64], + [-61, 13], + [8, 65], + [-78, 96], + [-4, 37], + [-38, 51], + [39, 38], + [-36, 91], + [34, 79], + [-25, 103], + [101, 13], + [31, 28], + [47, -10], + [38, 35], + [89, -13], + [126, -34], + [19, -41], + [-14, -48], + [22, -43], + [34, -2], + [53, -167], + [92, 26], + [35, 37], + [110, -38], + [-37, -35], + [-26, -73], + [-181, -137], + [-28, -69] + ], + [ + [8097, 4860], + [26, -75], + [6, -159], + [-12, -8] + ], + [ + [8117, 4618], + [-82, 64], + [-92, 33], + [-37, 82], + [-46, 60] + ], + [ + [7860, 4857], + [21, 55], + [100, -16], + [74, 6] + ], + [ + [8055, 4902], + [42, -42] + ], + [ + [7585, 4127], + [-71, -43], + [8, -113], + [-12, -36], + [-77, -42] + ], + [ + [7433, 3893], + [-29, 55], + [-94, 98], + [-85, -3], + [-39, 60], + [-26, 87] + ], + [ + [7160, 4190], + [106, -23], + [75, 43], + [-17, 71], + [-46, 45], + [23, 45], + [20, 90], + [96, -14], + [58, 19] + ], + [ + [7475, 4466], + [87, -64], + [42, -70], + [-19, -205] + ], + [ + [7950, 4217], + [-43, 87], + [-66, 179] + ], + [ + [7841, 4483], + [36, 27], + [3, 46], + [-32, 84], + [-55, 208] + ], + [ + [7793, 4848], + [67, 9] + ], + [ + [8117, 4618], + [65, -52], + [-8, -131], + [65, -62] + ], + [ + [8239, 4373], + [-114, -48], + [38, -63], + [-28, -50] + ], + [ + [8135, 4212], + [-80, 25], + [-105, -20] + ], + [ + [8021, 3994], + [-31, 23], + [-89, 4], + [-45, 80] + ], + [ + [7856, 4101], + [23, 41], + [71, 75] + ], + [ + [8135, 4212], + [52, -44], + [-12, -62] + ], + [ + [8175, 4106], + [-66, -30], + [-53, -101], + [-35, 19] + ], + [ + [6908, 4777], + [-66, 11], + [-66, -58], + [-28, -108], + [-43, -73] + ], + [ + [6705, 4549], + [-19, -31], + [-84, -13], + [-31, 10], + [-26, 45], + [-56, 18], + [-139, -31], + [-49, 49], + [-47, 82], + [8, 116], + [-56, -32], + [-65, -58], + [-157, 20], + [-29, -22], + [-89, 2] + ], + [ + [5866, 4704], + [-2, 185], + [-34, 51], + [-90, -14], + [-63, 11], + [12, 37], + [51, 18], + [-23, 60], + [11, 38], + [58, 64], + [92, 5], + [49, 23], + [118, 75], + [34, 53], + [-43, 64], + [-26, 80], + [-25, 33] + ], + [ + [5985, 5487], + [91, -1], + [129, -24], + [257, 10], + [48, 23], + [61, 75], + [62, 51], + [88, 42], + [35, -18], + [69, -5], + [81, 65], + [101, 5], + [153, -47], + [32, 40] + ], + [ + [7192, 5703], + [51, -18], + [-6, -72], + [64, -29], + [35, -114], + [-44, -48], + [-33, -61], + [13, -105], + [-34, -41], + [-10, -75], + [8, -55], + [-15, -41], + [-46, -48], + [-21, -76], + [-49, -84] + ], + [ + [7105, 4836], + [-29, 38], + [-70, 0], + [-16, -64], + [-27, -30], + [-55, -3] + ], + [ + [6917, 6816], + [88, 7], + [42, -19], + [15, -41], + [-7, -74], + [31, -58], + [68, 13], + [32, 38], + [30, -6], + [-18, -82], + [-31, -22], + [-4, -54], + [60, -45], + [38, -97], + [35, -50], + [12, -61], + [-61, -12], + [-40, -41], + [44, -116], + [-50, -41], + [-12, -143], + [-14, -62], + [17, -147] + ], + [ + [5985, 5487], + [-94, 33], + [-29, 34], + [-81, 12], + [2, 94] + ], + [ + [5783, 5660], + [11, 64], + [72, 23], + [179, -7], + [73, 78], + [53, 27], + [81, 101], + [75, -8], + [98, 91], + [75, 41], + [105, 159], + [61, 174], + [23, 134], + [43, 92], + [-11, 119], + [60, -2], + [75, 49], + [52, 19] + ], + [ + [6908, 6814], + [9, 2] + ], + [ + [7529, 8785], + [-9, -173], + [61, -96], + [4, -110], + [-34, -66], + [-130, -146], + [101, -20], + [59, -60], + [14, -60], + [10, -147] + ], + [ + [7605, 7907], + [-48, -30], + [-36, 12], + [-72, -11], + [-39, 43], + [-11, 65], + [-101, -47], + [-74, -64], + [-71, -37], + [-30, -33], + [-50, 20], + [-57, 50], + [-51, 116], + [-74, -33], + [-52, 0], + [17, 89], + [-11, 77], + [-46, 73], + [4, 56], + [80, 120], + [34, 113], + [-109, 124] + ], + [ + [6808, 8610], + [94, 49], + [83, 56], + [64, 17], + [-19, 70], + [106, 14], + [59, -63], + [49, -28], + [142, -9], + [143, 69] + ], + [ + [8105, 8139], + [-14, -19], + [-13, -159], + [68, -86], + [-156, -67], + [-163, -13], + [-92, -113], + [-26, -56] + ], + [ + [7709, 7626], + [-67, -28], + [-50, 14] + ], + [ + [7592, 7612], + [3, 82], + [23, 24], + [-36, 78], + [63, 65], + [12, 39], + [-52, 7] + ], + [ + [7529, 8785], + [158, 71], + [66, 16] + ], + [ + [7753, 8872], + [-21, -47], + [-10, -90], + [61, -63], + [-10, -70], + [10, -70], + [63, -109], + [68, -63], + [90, -10], + [68, -153], + [33, -58] + ], + [ + [8350, 8341], + [-52, -15], + [-165, -149], + [-28, -38] + ], + [ + [7753, 8872], + [71, 10], + [14, -51], + [153, -106], + [117, -117], + [42, 22] + ], + [ + [5905, 8754], + [86, -147], + [-51, -23], + [-32, 13], + [-41, 103], + [-63, -5], + [-24, 61], + [67, 45], + [58, -47] + ], + [ + [7592, 7612], + [-31, -70], + [-53, -4], + [-75, -36], + [-29, -90], + [25, -54], + [13, -85], + [-44, -90], + [-98, -17], + [-45, -33], + [-42, 4], + [-54, -21], + [-50, 13], + [-54, -87], + [9, -37], + [-15, -71], + [-56, -59], + [-53, -21], + [-23, -38] + ], + [ + [6908, 6814], + [-39, 21], + [-125, -46], + [-42, 6], + [-51, 121], + [-34, 50], + [17, 74], + [32, 75], + [59, 48], + [-6, 88], + [-30, 66], + [-94, 139], + [-13, 37], + [36, 28], + [16, 61], + [-37, 83], + [14, 79], + [-50, -17], + [-78, 32], + [-148, -31], + [-16, -39], + [-91, 7], + [-26, -34], + [-79, -35], + [-10, -58], + [-44, -35], + [16, -106], + [-35, 5], + [-107, 76], + [-34, 5], + [-47, -61], + [-66, -12], + [-49, 19], + [-17, -55], + [-54, 31], + [45, 96], + [16, 57], + [77, 58], + [35, 79], + [109, 86], + [69, -6], + [83, 75], + [54, 85], + [44, 0], + [75, 84], + [24, 53], + [6, 82], + [-17, 78], + [53, -25], + [2, 64], + [56, 42], + [22, 42], + [67, 53], + [4, 50], + [130, 92], + [57, -21], + [74, 19], + [47, 31] + ], + [ + [7841, 4483], + [-114, 139], + [-88, 135], + [38, 28], + [-33, 132] + ], + [ + [7644, 4917], + [44, 28], + [29, -41], + [42, -16], + [34, -40] + ], + [ + [8782, 4394], + [-72, -85], + [-46, -3], + [-79, -42] + ], + [ + [8585, 4264], + [-82, 54], + [8, 28], + [72, 70], + [-2, 56], + [-51, 14], + [-91, -61], + [-96, 4] + ], + [ + [8343, 4429], + [-22, 104], + [0, 107], + [-21, 33], + [-46, 14], + [-40, 145], + [-48, 28], + [-69, 0] + ], + [ + [8055, 4902], + [100, 47], + [36, 99], + [44, 48], + [-43, 134], + [18, 116] + ], + [ + [6973, 4404], + [88, 180], + [-153, 193] + ], + [ + [7105, 4836], + [54, -71], + [45, 8], + [125, 48], + [84, -44], + [11, -29] + ], + [ + [7424, 4748], + [18, -49], + [3, -154], + [30, -79] + ], + [ + [7160, 4190], + [-63, 128], + [-51, 54], + [-6, 36], + [-67, -4] + ], + [ + [8585, 4264], + [-67, -46], + [-96, -34], + [-69, 7], + [-52, 23], + [-13, -28], + [-113, -80] + ], + [ + [8239, 4373], + [104, 56] + ], + [ + [5866, 4704], + [-81, -46], + [16, -50], + [-48, -108], + [-66, -8], + [-41, -38], + [-88, 23], + [-75, -56], + [-47, -68], + [-90, 31], + [-30, -4], + [-68, 29], + [10, 58], + [-22, 53], + [-50, 10], + [-37, 41], + [19, 25], + [49, -6], + [73, 13], + [80, -25], + [22, 23], + [-108, 42], + [-79, -10], + [-13, 26], + [-92, -9], + [0, -67], + [-45, 7], + [1, 48], + [-61, 36], + [101, 129], + [61, -10], + [24, 39], + [-2, 74], + [-33, 112], + [-135, 43], + [-71, -4], + [-57, -19], + [-16, 45], + [29, 33], + [-17, 36], + [77, 23], + [63, 41], + [27, 46], + [54, -5], + [20, 36], + [53, -1], + [36, 21], + [14, 86], + [-26, 29], + [31, 40], + [124, -17], + [11, -58], + [138, 51], + [75, 8], + [-18, 42], + [40, 41], + [45, 7], + [41, 48], + [47, 104], + [52, -34] + ], + [ + [7644, 4917], + [-53, -1], + [-11, -67], + [-101, -43], + [-55, -58] + ], + [ + [7709, 7626], + [28, -45], + [107, -59], + [85, -123], + [75, 36], + [74, 8] + ], + [ + [7856, 4101], + [-119, 17], + [-30, -28], + [-74, 51], + [-48, -14] + ], + [ + [6973, 4404], + [-50, -23], + [-63, 8], + [-48, -51], + [12, -75], + [-69, 12], + [-55, -15], + [-60, 24], + [-37, -5], + [-30, -37], + [-110, -36], + [-68, 51], + [-38, 124], + [35, 12], + [44, 46], + [6, 33], + [71, -46], + [121, 46], + [57, 38], + [14, 39] + ], + [ + [8021, 3994], + [23, -48], + [-8, -89], + [-30, -16], + [-56, 7], + [-93, -43], + [-29, 18], + [-44, -30], + [-95, 0], + [-172, 48], + [-58, 5], + [-26, 47] + ], + [ + [10298, 13292], + [-1, -60], + [68, -7], + [7, -33], + [-19, -42], + [62, -11], + [-7, -34], + [50, -23] + ], + [ + [10458, 13082], + [-9, -47] + ], + [ + [10449, 13035], + [-27, -15], + [-60, 29], + [-68, -29], + [-89, 30], + [-28, -9], + [-41, 37], + [-28, 7] + ], + [ + [10222, 13311], + [76, -19] + ], + [ + [10298, 13292], + [76, -11] + ], + [ + [10605, 13144], + [-35, -45], + [-114, -15] + ], + [ + [10456, 13084], + [2, -2] + ], + [ + [10697, 12966], + [-3, 11] + ], + [ + [10694, 12977], + [-74, -33], + [-135, 5] + ], + [ + [10485, 12949], + [-6, 66], + [-30, 20] + ], + [ + [10456, 13084], + [120, 1], + [29, 59] + ], + [ + [10424, 12759], + [-10, 62] + ], + [ + [10414, 12821], + [3, 70], + [-17, 40], + [85, 18] + ], + [ + [10694, 12977], + [0, 0], + [-9, -15], + [12, 4] + ], + [ + [10414, 12821], + [-1, -6] + ], + [ + [10164, 10296], + [-5, -18], + [22, -9], + [-13, -17], + [-45, -3], + [-46, 32], + [-19, -29], + [59, -57], + [66, 7], + [30, -23], + [-25, -192], + [44, 9], + [12, -17], + [50, -1], + [-14, -29], + [-47, -30] + ], + [ + [10233, 9919], + [-48, 15], + [-29, -40], + [-20, 0], + [2, -32], + [-22, 0], + [-14, -21] + ], + [ + [10102, 9841], + [-58, 98], + [-27, -2], + [-41, -39], + [-25, 17], + [-1, 61], + [-81, 23], + [-78, -3], + [-8, 25], + [-90, 73] + ], + [ + [10102, 9841], + [25, -1], + [26, -33], + [7, -85], + [-24, 37], + [-116, -63], + [-41, 6], + [15, -16], + [-75, -54], + [-59, 8], + [-57, -58], + [-54, -24] + ], + [ + [9749, 9558], + [32, -5] + ], + [ + [10233, 9919], + [34, -29], + [31, 6], + [21, -75], + [46, 0], + [31, -32] + ], + [ + [10396, 9789], + [-40, -17], + [-6, -19], + [16, -8], + [-35, -30], + [36, -43], + [-50, -19], + [16, -75], + [41, -44], + [3, -25] + ], + [ + [9738, 9563], + [11, -5] + ], + [ + [10790, 9901], + [-141, -78], + [-64, 23], + [-66, -1], + [-11, -15], + [-22, 20], + [-72, -80], + [-18, 19] + ], + [ + [6243, 11427], + [6, -56], + [57, -33], + [55, -19], + [-73, -93], + [-43, -93], + [-32, -35], + [4, -27], + [20, -21], + [-71, -72], + [-42, -4], + [-19, -17], + [-2, -22], + [11, -14], + [8, -6], + [-57, -46], + [-38, -3], + [-27, -57], + [-42, -3], + [-62, -56], + [6, -21], + [17, 12], + [-31, -56], + [-9, 12], + [11, 22], + [-12, 24], + [-26, -1], + [-14, -10], + [-7, -24], + [-34, 11], + [-10, 39], + [-55, 4], + [-40, -58], + [-35, -15], + [-59, -30], + [-19, 29], + [53, 23], + [50, 68], + [-28, 2], + [26, 54], + [22, -13], + [17, 65], + [7, 61], + [-17, 23], + [6, 27], + [26, 22], + [5, 68], + [27, 40], + [17, -2], + [67, 67], + [61, 74], + [65, 143], + [17, 60], + [20, 37], + [77, 41], + [173, 75], + [4, -66], + [-19, -73], + [-12, -57] + ], + [ + [8688, 7882], + [42, 74], + [45, 112], + [-49, 40], + [-24, -26], + [-51, 65], + [31, 58], + [30, 4], + [8, 65], + [52, -7], + [17, 38], + [27, -6], + [24, 58], + [49, -16], + [-7, 37], + [19, -9], + [17, 21], + [43, -36], + [64, 37], + [46, -29], + [37, 18], + [0, 29], + [-20, 15], + [1, 66], + [38, -12], + [36, -61], + [21, 15], + [20, -20], + [14, 28], + [-5, 32], + [-56, 26], + [-6, 35], + [20, 7], + [7, 32], + [48, -28], + [22, 66], + [-23, -1], + [-44, 47], + [-30, 4], + [-19, -19], + [-38, 61], + [-66, 14], + [-22, 81], + [14, 28], + [83, 59] + ], + [ + [8140, 8705], + [-7, 6], + [0, 31] + ], + [ + [8133, 8742], + [44, 42], + [71, -48], + [49, 24], + [36, -15], + [43, 23], + [11, -11], + [4, 6] + ], + [ + [8391, 8763], + [1, 0], + [39, -23], + [38, -23], + [45, 2], + [49, 35], + [34, -21], + [54, 46], + [1, 1] + ], + [ + [8652, 8780], + [19, -21], + [1, 1] + ], + [ + [8672, 8760], + [1, -1], + [-1, 1] + ], + [ + [8672, 8760], + [23, 15], + [33, -18], + [23, 24], + [65, -26], + [-6, 13], + [31, -2], + [7, 28], + [16, -21], + [20, 26], + [21, -17] + ], + [ + [8672, 8760], + [-11, 19], + [-25, 42], + [15, 33], + [19, 4], + [3, 7], + [-31, 4], + [-24, -27], + [-15, -40], + [-54, 26], + [-8, -7] + ], + [ + [8541, 8821], + [-7, 17], + [20, 6], + [0, 21] + ], + [ + [8554, 8865], + [46, 22], + [16, 64], + [28, -1], + [19, 55] + ], + [ + [8663, 9005], + [44, -8], + [3, -22], + [33, -13], + [15, -17] + ], + [ + [8652, 8780], + [0, -1], + [20, -19] + ], + [ + [8554, 8865], + [-32, -1], + [-19, 41], + [-4, 40], + [50, 5], + [-22, 49], + [-28, -13], + [-54, 41], + [39, 20], + [-3, 80], + [-48, 51], + [-20, -11], + [-12, 26] + ], + [ + [8401, 9193], + [51, 74], + [36, 37] + ], + [ + [8574, 9241], + [-29, -22], + [9, -47], + [21, 1], + [14, -62], + [-15, -12], + [43, -31], + [-16, -66], + [62, 3] + ], + [ + [8541, 8821], + [-13, -10], + [-62, 19], + [-36, 29], + [-117, 95], + [-32, 82], + [-7, 61] + ], + [ + [8274, 9097], + [49, 14], + [2, 50], + [26, 27], + [50, 5] + ], + [ + [8274, 9097], + [-1, 1], + [-47, 69] + ], + [ + [8133, 8742], + [0, 0], + [-8, -8], + [-11, 38], + [-8, 28], + [-95, 108], + [-21, 59], + [40, 36], + [197, 107], + [35, -83], + [21, -93], + [100, -158], + [8, -13] + ], + [ + [9788, 6467], + [-50, 38] + ], + [ + [9738, 6505], + [5, 76] + ], + [ + [9743, 6581], + [53, 13], + [20, 38], + [20, 4], + [18, 39], + [-36, 16], + [1, 61], + [48, 7], + [-5, 38], + [22, 4] + ], + [ + [9884, 6801], + [58, 57], + [9, 40] + ], + [ + [9951, 6898], + [-4, 4] + ], + [ + [10157, 6709], + [-30, 3], + [-68, -22], + [65, -13], + [-6, -122], + [-29, -5], + [-31, 21], + [-51, -105], + [-14, -19], + [-33, 2], + [-3, -16], + [34, -13], + [2, -41] + ], + [ + [10361, 6532], + [207, -13] + ], + [ + [10409, 6349], + [-8, 32], + [-49, 12], + [-2, 69], + [-18, 31], + [9, 28], + [20, 3], + [0, 8] + ], + [ + [9654, 6807], + [-9, -66], + [33, -31], + [-10, -64], + [-48, -49], + [56, -16], + [53, 48], + [14, -48] + ], + [ + [9738, 6505], + [-20, 11] + ], + [ + [9577, 6793], + [7, 33], + [19, -34], + [42, 34], + [9, -19] + ], + [ + [9654, 6807], + [34, 8] + ], + [ + [9688, 6815], + [59, 42], + [52, -35], + [17, 20], + [19, -17], + [26, 9], + [23, -33] + ], + [ + [10325, 6535], + [36, -3] + ], + [ + [9688, 6815], + [-17, 14], + [18, 36], + [-41, 36], + [34, 38], + [-17, 18] + ], + [ + [9976, 6874], + [-25, 24] + ] + ], + "transform": { + "scale": [0.0006771910104204371, 0.0003878181286485979], + "translate": [-8.611390113830566, 49.909862518310604] + }, + "objects": { + "uk": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BDG", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 1, + "NAME_2": "Barking and Dagenham", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[5, 6, 7, 8, 9]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BAS", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 2, + "NAME_2": "Bath and North East Somerset", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[10, 11, 12, 13, 14, 15, 16]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BDF", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 3, + "NAME_2": "Bedfordshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[17, 18, 19, 20, 21, 22]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WBK", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 4, + "NAME_2": "Berkshire", + "TYPE_2": "County", + "ENGTYPE_2": "County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[23, -2, 24, 25, 26, 27]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BEX", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 5, + "NAME_2": "Bexley", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[28, 29]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BBD", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 6, + "NAME_2": "Blackburn with Darwen", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": "Blackburn, Blackburn and Darwen" + } + }, + { + "arcs": [[30, 31, 32]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BMH", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 7, + "NAME_2": "Bournemouth", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[33, 34, 35, 36, 37, 38]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BEN", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 8, + "NAME_2": "Brent", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[39, 40, 41]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BNH", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 9, + "NAME_2": "Brighton and Hove", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[42, 43, 44, -7]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BST", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 10, + "NAME_2": "Bristol", + "TYPE_2": "Unitary Authority (city)", + "ENGTYPE_2": "Unitary Authority (city)", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[45, 46, 47, 48, 49, -28, 50, 51]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BRY", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 11, + "NAME_2": "Bromley", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[52, 53, -21, 54, 55, 56, -13, 57]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BKM", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 12, + "NAME_2": "Buckinghamshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[58, 59, 60, -16, 61, 62, 63, 64]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CAM", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 13, + "NAME_2": "Cambridgeshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[65, 66, 67, -37, 68, 69]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CMD", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 14, + "NAME_2": "Camden", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CHS", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 15, + "NAME_2": "Cheshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[85, 86]], [[87]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CON", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 16, + "NAME_2": "Cornwall", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": "Cornouailles|Cornovaglia|Cornualha|Cornualles|Cornwall and Isles of Scilly" + } + }, + { + "arcs": [[88, 89, 90, -46, 91]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CRY", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 17, + "NAME_2": "Croydon", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[92, 93, 94, 95, 96, 97, 98]], [[99]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CMA", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 18, + "NAME_2": "Cumbria", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[100, 101, 102]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-DAL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 19, + "NAME_2": "Darlington", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[103, 104, 105, -85, 106, 107, 108], [109]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-DBY", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 20, + "NAME_2": "Derbyshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-110]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-DER", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 21, + "NAME_2": "Derby", + "TYPE_2": "Unitary Authority (city)", + "ENGTYPE_2": "Unitary Authority (city)", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[110, 111, -86, 112, 113, 114, 115, 116, 117]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-DEV", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 22, + "NAME_2": "Devon", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-115, 118, 119, 120, 121, -32, 122, 123]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-DOR", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 23, + "NAME_2": "Dorset", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[124, -96, 125, 126, 127, 128, 129, 130, 131, -102]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-DUR", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 24, + "NAME_2": "Durham", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": "County Durham" + } + }, + { + "arcs": [[132, 133, -34, 134, 135]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-EAL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 25, + "NAME_2": "Ealing", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[136, 137, 138, 139, 140, 141, 142, 143]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ERY", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 26, + "NAME_2": "East Riding of Yorkshire", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": "East Riding, East Yorkshire" + } + }, + { + "arcs": [[144, 145, 146, 147, -42]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ESX", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 27, + "NAME_2": "East Sussex", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[148, -69, -36, 149, 150, 151, 152]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ENF", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 28, + "NAME_2": "Enfield", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[153, 154, 155, 156, -152, 157, -60, 158, 159, 160, 161]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ESS", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 29, + "NAME_2": "Essex", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[162, 163, 164, 165, 166, 167, 168, 169, 170]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-GLS", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 30, + "NAME_2": "Gloucestershire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[171, 172, 173, -3, -24, -50]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-GRE", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 31, + "NAME_2": "Greenwich", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[174, 175, 176, 177, 178]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-HCK", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 32, + "NAME_2": "Hackney", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[179, -78]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-HAL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 33, + "NAME_2": "Halton", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[180, 181, -135, -39, 182, 183]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-HMF", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 34, + "NAME_2": "Hammersmith and Fulham", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[184, 185, -121, 186, -23, 187, 188, 189, 190, 191]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-HAM", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 35, + "NAME_2": "Hampshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": "Southampton" + } + }, + { + "arcs": [[192, -70, -149, 193, -177]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-HRY", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 36, + "NAME_2": "Haringey", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[194, 195, -150, -35, -134]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-HRW", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 37, + "NAME_2": "Harrow", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[196, -131, 197, 198]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-HPL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 38, + "NAME_2": "Hartlepool", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[199, -25, -1, 200, -155]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-HAV", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 39, + "NAME_2": "Havering", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[201, 202, 203, 204, -165]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-HRT", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 40, + "NAME_2": "Herefordshire", + "TYPE_2": "Unitary Authority (county)", + "ENGTYPE_2": "Unitary Authority (county)", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[205, -58, -12, 206, -17, -61, -158, -151, -196]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-HEF", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 41, + "NAME_2": "Hertfordshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-206, -195, -133, 207, 208, -53]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-HIL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 42, + "NAME_2": "Hillingdon", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[209, 210, -208, -136, -182]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-HNS", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 43, + "NAME_2": "Hounslow", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[211]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-IOW", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 44, + "NAME_2": "Isle of Wight", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-193, -176, 212, -66]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ISL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 45, + "NAME_2": "Islington", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[213, 214, -183]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-KEC", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 46, + "NAME_2": "Kensington and Chelsea", + "TYPE_2": "London Borough (royal)", + "ENGTYPE_2": "London Borough (royal)", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[-27, 215, 216, 217, 218, -147, 219, -51]], [[220]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 242, + "ISO": "GB-KEN", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 47, + "NAME_2": "Kent", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[221, -137]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-KHL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 48, + "NAME_2": "Kingston upon Hull", + "TYPE_2": "Unitary Authority (city)", + "ENGTYPE_2": "Unitary Authority (city)", + "NL_NAME_2": null, + "VARNAME_2": "Hull" + } + }, + { + "arcs": [[222, 223, 224, 225]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-KTT", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 49, + "NAME_2": "Kingston upon Thames", + "TYPE_2": "London Borough (royal)", + "ENGTYPE_2": "London Borough (royal)", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-91, 226, 227, 228, 229, -47]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-LBH", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 50, + "NAME_2": "Lambeth", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[230, 231, 232, 233, 234, -98, 235, 236, 237, 238, -30]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-LAN", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 51, + "NAME_2": "Lancashire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[239, 240, 241, 242, -105, 243, 244], [245]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-LEC", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 52, + "NAME_2": "Leicestershire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-246]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-LCE", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 53, + "NAME_2": "Leicester", + "TYPE_2": "Unitary Authority (city)", + "ENGTYPE_2": "Unitary Authority (city)", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[246, -172, -49]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-LEW", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 54, + "NAME_2": "Lewisham", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[247, -64, 248, 249, -245, 250, 251, 252, 253]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-LIN", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 55, + "NAME_2": "Lincolnshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[254, 255, 256, -67, -213]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-LND", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 56, + "NAME_2": "London", + "TYPE_2": "London Borough (city)", + "ENGTYPE_2": "London Borough (city)", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-11, -207]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-LUT", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 57, + "NAME_2": "Luton", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[257, 258, -231, -29, -239, 259, 260, 261, -107, -84]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-MAN", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 58, + "NAME_2": "Manchester", + "TYPE_2": "Metropolitan Borough (city)", + "ENGTYPE_2": "Metropolitan Borough (city)", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-218, 262]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-MDW", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 59, + "NAME_2": "Medway", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": "Medway Towns" + } + }, + { + "arcs": [[263, -80, 264, 265, -234, -233, -232, -259]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-MER", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 60, + "NAME_2": "Merseyside", + "TYPE_2": "Metropolitan County", + "ENGTYPE_2": "Metropolitan County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[266, -227, -90, 267, -226]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-MRT", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 61, + "NAME_2": "Merton", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[268, 269, 270]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-MDB", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 62, + "NAME_2": "Middlesbrough", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[271, -14, -57]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-MIK", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 63, + "NAME_2": "Milton Keynes", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-174, 272, -179, 273, 274, -4]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NWM", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 64, + "NAME_2": "Newham", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[275, -65, -248, 276]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NFK", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 65, + "NAME_2": "Norfolk", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-253, 277, 278]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NEL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 66, + "NAME_2": "North East Lincolnshire", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-252, 279, 280, -139, 281, -278]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NLN", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 67, + "NAME_2": "North Lincolnshire", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[282, -43, -6, 283]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NSM", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 68, + "NAME_2": "North Somerset", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": "North West Somerset" + } + }, + { + "arcs": [ + [284, -141, 285, 286, 287, 288, -236, -97, -125, -101, 289, -271, 290, 291, -143] + ], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NYK", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 69, + "NAME_2": "North Yorkshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-56, 292, 293, -241, 294, 295, -62, -15, -272]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NTH", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 70, + "NAME_2": "Northamptonshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[296, 297, 298, 299, -126, -95, 300, 301]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NBL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 71, + "NAME_2": "Northumberland", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[302, -280, -251, -244, -104], [303]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NTT", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 72, + "NAME_2": "Nottinghamshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-304]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NGM", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 73, + "NAME_2": "Nottingham", + "TYPE_2": "Unitary Authority (city)", + "ENGTYPE_2": "Unitary Authority (city)", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-20, 304, -168, 305, -293, -55]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-OXF", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 74, + "NAME_2": "Oxfordshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-296, -249, -63]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-PTE", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 75, + "NAME_2": "Peterborough", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[306, -111]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-PLY", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 76, + "NAME_2": "Plymouth", + "TYPE_2": "Unitary Authority (city)", + "ENGTYPE_2": "Unitary Authority (city)", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-123, -31, 307]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-POL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 77, + "NAME_2": "Poole", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[-191, 308]], [[309]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 242, + "ISO": "GB-POR", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 78, + "NAME_2": "Portsmouth", + "TYPE_2": "Unitary Authority (city)", + "ENGTYPE_2": "Unitary Authority (city)", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-275, 310, -156, -201, -5]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-RDB", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 79, + "NAME_2": "Redbridge", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-291, -270, 311, -199, 312]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-RCC", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 80, + "NAME_2": "Redcar and Cleveland", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[313, -210, -181, 314, -225]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-RIC", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 81, + "NAME_2": "Richmond upon Thames", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-250, -295, -240]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-RUT", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 82, + "NAME_2": "Rutland", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[315, 316, -74, 317, 318, 319, 320, -204]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SHR", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 83, + "NAME_2": "Shropshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": "Salop" + } + }, + { + "arcs": [[-284, -10, 321, -119, -114, 322]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SOM", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 84, + "NAME_2": "Somerset", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[323, -171, 324, -8, -45]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SGC", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 85, + "NAME_2": "South Gloucestershire", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-303, -109, 325, 326, -286, -140, -281]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SY", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 86, + "NAME_2": "South Yorkshire", + "TYPE_2": "Metropolitan County", + "ENGTYPE_2": "Metropolitan County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[327, -185]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-STH", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 87, + "NAME_2": "Southampton", + "TYPE_2": "Unitary Authority (city)", + "ENGTYPE_2": "Unitary Authority (city)", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[328]], [[329, -161]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SOS", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 88, + "NAME_2": "Southend-on-Sea", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": "Southend" + } + }, + { + "arcs": [[-48, -230, 330, -256, 331, -247]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SWK", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 89, + "NAME_2": "Southwark", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[332, 333, 334, 335, 336, 337, 338, -320, 339, -318, -73, 340, -71, -106, -243]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-STS", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 90, + "NAME_2": "Staffordshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-290, -103, -132, -197, -312, -269]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-STT", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 91, + "NAME_2": "Stockton-on-Tees", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": "Stockton" + } + }, + { + "arcs": [[-72, -341]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-STE", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 92, + "NAME_2": "Stoke-on-Trent", + "TYPE_2": "Unitary Authority (city)", + "ENGTYPE_2": "Unitary Authority (city)", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-159, -59, -276, 341]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SFK", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 93, + "NAME_2": "Suffolk", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-146, 342, -188, -22, -54, -209, -211, -314, -224, 343, -92, -52, -220]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SRY", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 94, + "NAME_2": "Surrey", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-344, -223, -268, -89]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-STN", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 95, + "NAME_2": "Sutton", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[344, -169, -305, -19]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SWD", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 96, + "NAME_2": "Swindon", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": "Thamesdown" + } + }, + { + "arcs": [[-340, -319]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-TFW", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 97, + "NAME_2": "Telford and Wrekin", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": "The Wrekin, Wrekin" + } + }, + { + "arcs": [[345, -216, -26, -200, -154]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-THR", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 98, + "NAME_2": "Thurrock", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-117, 346]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-TOB", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 99, + "NAME_2": "Torbay", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-255, -175, -273, -173, -332]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-TWH", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 100, + "NAME_2": "Tower Hamlets", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-129, -128, -127, -300, -299, -298, -297, 347, 348, 349]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-TAW", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 101, + "NAME_2": "Tyne and Wear", + "TYPE_2": "Metropolitan County", + "ENGTYPE_2": "Metropolitan County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-274, -178, -194, -153, -157, -311]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WFT", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 102, + "NAME_2": "Waltham Forest", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-184, -215, 350, -228, -267, -315]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WND", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 103, + "NAME_2": "Wandsworth", + "TYPE_2": "London Borough", + "ENGTYPE_2": "London Borough", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-264, -258, -83, -82, -81]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WRT", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 104, + "NAME_2": "Warrington", + "TYPE_2": "Unitary Authority", + "ENGTYPE_2": "Unitary Authority", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[351, 352, 353, 354, 355, 356, -333, -242, -294, -306, -167]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WAR", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 105, + "NAME_2": "Warwickshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[357, 358, 359, -338, -337, -336, -335, -334, -357, -356, -355, -354, -353]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WM", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 106, + "NAME_2": "West Midlands", + "TYPE_2": "Metropolitan County", + "ENGTYPE_2": "Metropolitan County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-189, -343, -145, -41, 360]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WSX", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 107, + "NAME_2": "West Sussex", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-108, -262, -261, -260, -238, -237, -289, -288, -287, -327, -326]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WY", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 108, + "NAME_2": "West Yorkshire", + "TYPE_2": "Metropolitan County", + "ENGTYPE_2": "Metropolitan County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-38, -68, -257, -331, -229, -351, -214]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WSM", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 109, + "NAME_2": "Westminster", + "TYPE_2": "London Borough (city)", + "ENGTYPE_2": "London Borough (city)", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-9, -325, -170, -345, -18, -187, -120, -322]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WIL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 110, + "NAME_2": "Wiltshire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-166, -205, -321, -339, -360, -359, -358, -352]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WOR", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 111, + "NAME_2": "Worcestershire", + "TYPE_2": "Administrative County", + "ENGTYPE_2": "Administrative County", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-142, -285]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-YOR", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 112, + "NAME_2": "York", + "TYPE_2": "Unitary Authority (city)", + "ENGTYPE_2": "Unitary Authority (city)", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[361, 362, 363, 364, 365, 366, 367]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ANT", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 113, + "NAME_2": "Antrim", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[368, 369, 370, 371]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ARD", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 114, + "NAME_2": "Ards", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[372, 373, 374, 375, 376]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ARM", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 115, + "NAME_2": "Armagh", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[377, -366, 378, 379, 380, 381]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BLA", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 116, + "NAME_2": "Ballymena", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[382, 383, 384, -380]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BLY", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 117, + "NAME_2": "Ballymoney", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[385, 386, -377, 387, 388]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BNB", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 118, + "NAME_2": "Banbridge", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[389, 390, 391, 392, -368, 393]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BFS", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 119, + "NAME_2": "Belfast", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[394, 395, 396]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CKF", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 120, + "NAME_2": "Carrickfergus", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[397, 398, -392, 399, -370]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CSR", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 121, + "NAME_2": "Castlereagh", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[400, 401, 402, 403, -384]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CLR", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 122, + "NAME_2": "Coleraine", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[404, 405, 406, 407, -364]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CKT", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 123, + "NAME_2": "Cookstown", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[408, -388, -376, 409, -405, -363]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CGV", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 124, + "NAME_2": "Craigavon", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[410, 411, 412]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-DRY", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 125, + "NAME_2": "Derry", + "TYPE_2": "District", + "ENGTYPE_2": "London Borough (city)", + "NL_NAME_2": null, + "VARNAME_2": "Londonderry" + } + }, + { + "arcs": [[413, -386, 414, -398, -369, 415]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-DOW", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 126, + "NAME_2": "Down", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[416, 417, 418, -406, -410, -375]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-DGN", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 127, + "NAME_2": "Dungannon", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[419, 420, -418, 421]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-FER", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 128, + "NAME_2": "Fermanagh", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-396, 422, -382, 423, 424]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-LRN", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 129, + "NAME_2": "Larne", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[425, 426, -411, 427, -402]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-LMV", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 130, + "NAME_2": "Limavady", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-362, -393, -399, -415, -389, -409]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-LSB", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 131, + "NAME_2": "Lisburn", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[428, 429, -426, -401, -383, -379, -365, -408]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-MFT", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 132, + "NAME_2": "Magherafelt", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[430]], [[-424, -381, -385, -404, 431]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 242, + "ISO": "GB-MYL", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 133, + "NAME_2": "Moyle", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-373, -387, -414, 432]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NYM", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 134, + "NAME_2": "Newry and Mourne", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": "Mourne" + } + }, + { + "arcs": [[-378, -423, -395, 433, -394, -367]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NTA", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 135, + "NAME_2": "Newtownabbey", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-391, 434, -371, -400]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NDN", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 136, + "NAME_2": "North Down", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-421, 435, -429, -407, -419]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-OMH", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 137, + "NAME_2": "Omagh", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-412, -427, -430, -436, -420, 436]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-STB", + "NAME_0": "United Kingdom", + "ID_1": 2, + "NAME_1": "Northern Ireland", + "ID_2": 138, + "NAME_2": "Strabane", + "TYPE_2": "District", + "ENGTYPE_2": "District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[437, 438, 439, 440, 441, 442, 443]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ABD", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 139, + "NAME_2": "Aberdeenshire", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[444, -444]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ABE", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 140, + "NAME_2": "Aberdeen", + "TYPE_2": "Unitary District (city)", + "ENGTYPE_2": "Unitary District (city)", + "NL_NAME_2": null, + "VARNAME_2": "Aberdeen City" + } + }, + { + "arcs": [[445, -439, 446, 447]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ANS", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 141, + "NAME_2": "Angus", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": "Forfar" + } + }, + { + "arcs": [ + [[448]], + [[449, 450, 451, 452, 453]], + [[454]], + [[455]], + [[456]], + [[457]], + [[458]], + [[459]], + [[460]], + [[461]], + [[462]], + [[463]], + [[464]], + [[465]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 242, + "ISO": "GB-AGB", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 142, + "NAME_2": "Argyll and Bute", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": "Earra-Ghaidheal agus Bòd" + } + }, + { + "arcs": [[466, 467, 468]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CLK", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 143, + "NAME_2": "Clackmannanshire", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[469, 470, 471, 472, -93, 473]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-DGY", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 144, + "NAME_2": "Dumfries and Galloway", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[474, 475, -448]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-DND", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 145, + "NAME_2": "Dundee", + "TYPE_2": "Unitary District (city)", + "ENGTYPE_2": "Unitary District (city)", + "NL_NAME_2": null, + "VARNAME_2": "Dundee City" + } + }, + { + "arcs": [[476, 477, 478, 479, -471]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-EAY", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 146, + "NAME_2": "East Ayrshire", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[480, 481, 482, 483]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-EDU", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 147, + "NAME_2": "East Dunbartonshire", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[484, 485, 486]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ELN", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 148, + "NAME_2": "East Lothian", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": "Haddington" + } + }, + { + "arcs": [[487, -479, 488, 489, 490]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ERW", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 149, + "NAME_2": "East Renfrewshire", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[491, 492, 493, 494]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-EDH", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 150, + "NAME_2": "Edinburgh", + "TYPE_2": "Unitary District (city)", + "ENGTYPE_2": "Unitary District (city)", + "NL_NAME_2": null, + "VARNAME_2": "Édimbourg|Edimburgo" + } + }, + { + "arcs": [ + [[495]], + [[496]], + [[497]], + [[498]], + [[499]], + [[500]], + [[501]], + [[502]], + [[503]], + [[504]], + [[505]], + [[506]], + [[507]], + [[508]], + [[509]], + [[510]], + [[511]], + [[512]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ELS", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 151, + "NAME_2": "Eilean Siar", + "TYPE_2": "Island Area", + "ENGTYPE_2": "Island Area", + "NL_NAME_2": null, + "VARNAME_2": "Western Isles" + } + }, + { + "arcs": [[513, 514, 515, 516]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-FAL", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 152, + "NAME_2": "Falkirk", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[517, 518, 519, -469]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-FIF", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 153, + "NAME_2": "Fife", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[520, 521, -482, 522, 523, -491]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-GLG", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 154, + "NAME_2": "Glasgow", + "TYPE_2": "Unitary District (city)", + "ENGTYPE_2": "Unitary District (city)", + "NL_NAME_2": null, + "VARNAME_2": "Glasgow City" + } + }, + { + "arcs": [ + [[524, -441, 525, -450, 526]], + [[527]], + [[528]], + [[529]], + [[530]], + [[531]], + [[532]], + [[533]], + [[534]], + [[535]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 242, + "ISO": "GB-HLD", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 155, + "NAME_2": "Highland", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[536, 537, 538]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-IVC", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 156, + "NAME_2": "Inverclyde", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[539, -486, 540, -494]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-MLN", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 157, + "NAME_2": "Midlothian", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": "Edinburgh" + } + }, + { + "arcs": [[541, -442, -525]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-MRY", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 158, + "NAME_2": "Moray", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": "Elgin" + } + }, + { + "arcs": [[[542]], [[-537, 543, -489, -478, 544, 545]], [[546]], [[547]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NAY", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 159, + "NAME_2": "North Ayshire", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-481, 548, -515, 549, 550, -523]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NLK", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 160, + "NAME_2": "North Lanarkshire", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [ + [[551]], + [[552]], + [[553]], + [[554]], + [[555]], + [[556]], + [[557]], + [[558]], + [[559]], + [[560]], + [[561]] + ], + "type": "MultiPolygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ORK", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 161, + "NAME_2": "Orkney Islands", + "TYPE_2": "Island Area", + "ENGTYPE_2": "Island Area", + "NL_NAME_2": null, + "VARNAME_2": "Orcadas|Orcades|Orcadi|Orkneyöarna|Orknøyene" + } + }, + { + "arcs": [[-518, -468, 562, -451, -526, -440, -446, -476, 563]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-PKN", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 162, + "NAME_2": "Perthshire and Kinross", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": "Perth and Kinross" + } + }, + { + "arcs": [[-490, -544, -539, 564, 565, -521]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-RFW", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 163, + "NAME_2": "Renfrewshire", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[566, 567, -495, -541, -485, 568, -301, -94, -473]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SCB", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 164, + "NAME_2": "Scottish Borders", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": "The Borders" + } + }, + { + "arcs": [[[569]], [[570]], [[571]], [[572]], [[573]], [[574]], [[575]], [[576]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 242, + "ISO": "GB-ZET", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 165, + "NAME_2": "Shetland Islands", + "TYPE_2": "Island Area", + "ENGTYPE_2": "Island Area", + "NL_NAME_2": null, + "VARNAME_2": "Zetland" + } + }, + { + "arcs": [[-545, -477, -470, 577]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SAY", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 166, + "NAME_2": "South Ayrshire", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-488, -524, -551, 578, -567, -472, -480]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SLK", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 167, + "NAME_2": "South Lanarkshire", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-484, 579, -452, -563, -467, -520, 580, -516, -549]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-STG", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 168, + "NAME_2": "Stirling", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-522, -566, 581, -453, -580, -483]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WDU", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 169, + "NAME_2": "West Dunbartonshire", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": "Dumbarton and Clydebank" + } + }, + { + "arcs": [[-514, 582, -492, -568, -579, -550]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WLN", + "NAME_0": "United Kingdom", + "ID_1": 3, + "NAME_1": "Scotland", + "ID_2": 170, + "NAME_2": "West Lothian", + "TYPE_2": "Unitary District", + "ENGTYPE_2": "Unitary District", + "NL_NAME_2": null, + "VARNAME_2": "Linlithgow" + } + }, + { + "arcs": [[583]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-AGY", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 171, + "NAME_2": "Anglesey", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[584, 585, 586, 587]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BGW", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 172, + "NAME_2": "Blaenau Gwent", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[588, 589, 590, 591]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BGE", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 173, + "NAME_2": "Bridgend", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[592, 593, 594, -586, 595, 596, 597]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CAY", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 174, + "NAME_2": "Caerphilly", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[598, 599, -598, 600, 601]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CRF", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 175, + "NAME_2": "Cardiff", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[602, 603, 604, 605, 606, 607]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CMN", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 176, + "NAME_2": "Carmarthenshire", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[608, -606, 609, 610, 611]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CGN", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 177, + "NAME_2": "Ceredigion", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": "Cardiganshire" + } + }, + { + "arcs": [[612, 613, 614]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CWY", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 178, + "NAME_2": "Conwy", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": "Aberconwy and Colwyn" + } + }, + { + "arcs": [[615, 616, 617, -613, 618, 619]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-DEN", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 179, + "NAME_2": "Denbighshire", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[620, -620, 621, -76]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-FLN", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 180, + "NAME_2": "Flintshire", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[622]], [[-614, -618, 623, -612, 624]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 242, + "ISO": "GB-GWN", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 181, + "NAME_2": "Gwynedd", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": "Caernarfonshire and Merionethshire" + } + }, + { + "arcs": [[625, 626, -594]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-MTY", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 182, + "NAME_2": "Merthyr Tydfil", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[627, 628, 629, -588, 630, -202, -164]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-MON", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 183, + "NAME_2": "Monmouthshire", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[631, -608, 632, 633, -591, 634]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NTL", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 184, + "NAME_2": "Neath Port Talbot", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": "Neath and Port Talbot" + } + }, + { + "arcs": [[635, -601, -597, 636, -629]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NWP", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 185, + "NAME_2": "Newport", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-610, -605, 637]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-PEM", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 186, + "NAME_2": "Pembrokeshire", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[638, -633, -607, -609, -624, -617, 639, -316, -203, -631, -587, -595, -627]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-POW", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 187, + "NAME_2": "Powys", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-634, -639, -626, -593, -600, 640, -592]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-RCT", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 188, + "NAME_2": "Rhondda, Cynon, Taff", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[641, -603, -632]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SWA", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 189, + "NAME_2": "Swansea", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-596, -585, -630, -637]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-TOF", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 190, + "NAME_2": "Torfaen", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[642, -589, -641, -599]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-VGL", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 191, + "NAME_2": "Vale of Glamorgan", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-640, -616, -621, -75, -317]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WRX", + "NAME_0": "United Kingdom", + "ID_1": 4, + "NAME_1": "Wales", + "ID_2": 192, + "NAME_2": "Wrexham", + "TYPE_2": "Unitary Authority (wales)", + "ENGTYPE_2": "Unitary Authority (wales", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[643, 644, 645, -299, 646]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NET", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 205, + "NAME_2": "Newcastle upon Tyne", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[647, -297, 347, 648, 649, -644]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-NTY", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 204, + "NAME_2": "North Tyneside", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[348, 650, 651, 652, -645, -650, 653]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-STY", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 203, + "NAME_2": "South Tyneside", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-129, 654, 655, -652, 656, 349]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SND", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 202, + "NAME_2": "Sunderland", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-646, -653, -656, 657, -127, -300]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-GAT", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 201, + "NAME_2": "Gateshead", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[658, 659, 660, -237, -289]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BRD", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 206, + "NAME_2": "Bradford", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[661, 662, -261, -260, -238, -661]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CLD", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 207, + "NAME_2": "Calderdale", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[663, 664, -326, -108, -262, -261, 665, -662, -660]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-KIR", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 208, + "NAME_2": "Kirklees", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[666, -664, -659, -288]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-LDS", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 209, + "NAME_2": "Leeds", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-665, -667, -287, -327]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WKF", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 210, + "NAME_2": "Wakefield", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[667]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "IM", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "Isle of Man", + "ID_2": 2, + "NAME_2": "Isle of Man", + "TYPE_2": "Crown Dependency", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[82, 83, 84, 70, 71, 72, 73, 668]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CHE", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 211, + "NAME_2": "Cheshire East", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[74, 75, 76, 669, 670, 671, 672, 673, 674, 81, -669]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-CHW", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 212, + "NAME_2": "Cheshire West and Chester", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[[80, -675, 675, 676, 677, 678]], [[-673, 679]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 242, + "ISO": "GB-HAL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 213, + "NAME_2": "Halton", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-678, 680, 681, -233, 682]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-KWL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 215, + "NAME_2": "Knowsley", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-677, 683, 684, -681]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-LIV", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 216, + "NAME_2": "Liverpool", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-683, -232, -259, 263, -679]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SHN", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 217, + "NAME_2": "St. Helens", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-682, -685, 685, 265, -234]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SFT", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 218, + "NAME_2": "Sefton", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-671, 686]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WRL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 219, + "NAME_2": "Wirral", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[357, 687, 688, 689, 690, 691, -335, -334, -357, 692]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-BIR", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 220, + "NAME_2": "Birmingham", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[693, -354, 694]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-COV", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 221, + "NAME_2": "Coventry", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[695, -689, 696, 359, -338, 697]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-DUD", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 222, + "NAME_2": "Dudley", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-690, -696, 698, 699]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SAW", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 223, + "NAME_2": "Sandwell", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-695, -353, -693, -356, 700]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-SOL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 224, + "NAME_2": "Solihull", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-691, -700, 701, -336, -335, 702]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WLL", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 225, + "NAME_2": "Walsall", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + }, + { + "arcs": [[-337, -702, -699, -698]], + "type": "Polygon", + "properties": { + "ID_0": 242, + "ISO": "GB-WLV", + "NAME_0": "United Kingdom", + "ID_1": 1, + "NAME_1": "England", + "ID_2": 226, + "NAME_2": "Wolverhampton", + "TYPE_2": "Metropolitan District", + "ENGTYPE_2": "Metropolitan District", + "NL_NAME_2": null, + "VARNAME_2": null + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/ukraine-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/ukraine-topo.json new file mode 100644 index 000000000000..a35467bb046a --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/ukraine-topo.json @@ -0,0 +1,2877 @@ +{ + "type": "Topology", + "arcs": [ + [ + [9162, 6541], + [-86, -102], + [46, -49], + [70, -17], + [-1, -32], + [-46, -31], + [-2, -128], + [-131, -29], + [-77, 9], + [-54, -31], + [-7, 72], + [-62, 73], + [-23, -24], + [-61, 73], + [-62, 9], + [-31, -31], + [-23, -64], + [-62, -63], + [15, -32], + [-38, -55], + [-69, 33], + [-23, -24], + [-70, 1], + [-92, 49], + [-100, -7], + [-46, -31], + [-77, -8], + [8, -103], + [-68, -55], + [-130, -79], + [-16, 32], + [-61, 25], + [-54, -8], + [-68, -47], + [-54, 48], + [-92, 9], + [-46, -32], + [-54, 24], + [-130, 1], + [-45, -48], + [-14, -79], + [-53, -48], + [31, -31], + [1, -48], + [-146, 16], + [-29, -71], + [-99, -24], + [-22, -32], + [-54, 23], + [-45, -56], + [-122, 38] + ], + [ + [6688, 5557], + [52, 56], + [-10, 79], + [-45, 16], + [29, 48], + [-40, 62], + [-30, 8], + [-47, 54], + [6, 64], + [-84, 30], + [-2, 55], + [-31, 47], + [6, 56], + [-69, 38], + [35, 80], + [-40, 70], + [-1, 64], + [72, 113], + [-2, 72] + ], + [ + [6487, 6569], + [25, -71], + [151, 59], + [22, 48], + [-9, 63], + [22, 24], + [85, -6], + [16, -40], + [61, 49], + [17, -72], + [132, -23], + [105, 128], + [71, -40], + [61, 48], + [39, -1], + [40, -47], + [54, 23], + [62, -8], + [69, 24], + [7, 71], + [69, 16], + [0, 40], + [54, 31], + [29, 96], + [39, 15], + [-16, 48], + [61, 119], + [6, 72], + [-16, 72], + [6, 71], + [86, 55], + [62, 16], + [-64, 120], + [94, 15], + [32, -24], + [-15, -64], + [9, -64], + [31, -40], + [71, 16], + [55, -25], + [86, -1], + [78, 135], + [94, 15], + [-16, 80], + [8, 87], + [47, 40], + [31, 119], + [47, -8], + [48, 31] + ], + [ + [8533, 7881], + [8, -32], + [63, -64], + [56, -25], + [23, -127], + [40, 7], + [15, -56], + [63, -72], + [0, -104], + [-47, -7], + [55, -73], + [109, -73], + [8, -95], + [70, -25], + [62, -65], + [-8, -32], + [38, -48], + [0, -48], + [-71, -95], + [15, -96], + [54, -33], + [-8, -32], + [-77, 2], + [-62, 33], + [-86, 25], + [-23, -64], + [46, -56], + [124, -82], + [69, 7], + [23, -33], + [70, 23] + ], + [ + [9631, 10773], + [-32, -113], + [-55, -92], + [-1, -64], + [32, -9], + [78, -90], + [47, -10], + [1, -55], + [-56, -15], + [-40, 25], + [-47, -44], + [73, -49], + [-28, -63], + [-91, 9], + [-102, -79], + [-1, -73], + [-42, -56], + [8, -40], + [48, -72], + [-33, -48], + [65, -121], + [-24, -103], + [-33, -8], + [-16, -72], + [7, -88], + [-40, -7], + [-9, -160], + [-25, -63], + [-57, -40], + [24, -40], + [-25, -47], + [97, -65], + [7, -48], + [-24, -56], + [128, -49], + [7, -80], + [-41, -23], + [7, -128], + [39, -40], + [-65, -63], + [16, -48], + [-48, -23], + [-10, -120], + [-25, -71] + ], + [ + [9345, 8272], + [-32, -56], + [-89, -63], + [-48, -63], + [-80, -31], + [-174, 2], + [-56, -8], + [-24, 64], + [-79, 9], + [-48, 24], + [-64, -103], + [-87, -7] + ], + [ + [8564, 8040], + [-56, 32], + [-48, 65], + [-24, 95], + [47, 32], + [0, 48], + [-72, 0], + [-32, 64], + [-97, 57], + [-40, -32], + [1, -63], + [-80, 8], + [-63, -63], + [-80, 25], + [-63, -48], + [-73, 57], + [-96, 1], + [-50, 88], + [14, 119], + [-75, 88], + [-9, 32], + [-63, -15], + [-176, 0], + [-89, 48], + [21, 96], + [-73, 48], + [-35, 80], + [-2, 47], + [-49, 40], + [-63, 1], + [-17, 32], + [21, 79], + [-33, 89], + [38, 31], + [-9, 56], + [22, 40] + ], + [ + [7161, 9317], + [46, 14], + [14, 56], + [45, 22], + [-29, 93], + [-6, 104], + [-38, 29], + [-37, 91], + [32, 49], + [-39, 74], + [40, 16], + [9, 50], + [39, 17], + [63, 155], + [12, 64], + [86, 42], + [-5, 47], + [48, 53], + [67, 4], + [9, 116], + [90, 0], + [47, 22], + [105, -63], + [51, 29], + [10, 39], + [117, 53], + [39, -25], + [165, -6], + [107, -25], + [44, 15], + [77, -32], + [-22, -65], + [84, 7], + [43, -25], + [118, 47], + [17, 32], + [59, 15], + [44, 64], + [-19, 130], + [58, 24], + [-32, 112], + [147, -3], + [76, -42], + [74, -67], + [34, 24], + [114, 3], + [24, -40], + [59, 29], + [83, 78], + [88, 21], + [6, 41], + [50, 0], + [86, -40], + [71, 8] + ], + [ + [2969, 5805], + [71, -20], + [68, 12], + [59, -60], + [-5, -32], + [56, -21], + [42, 42], + [157, -31], + [-3, -56], + [26, -38], + [91, 13], + [11, -31], + [54, -5], + [66, 36] + ], + [ + [3662, 5614], + [63, -13], + [38, -86], + [55, -13], + [28, 42], + [61, 4], + [-5, 56], + [73, 54], + [86, -31], + [26, 41], + [60, -3], + [85, -25], + [43, 43], + [62, -28], + [4, 64], + [38, 19], + [32, -38], + [52, 43] + ], + [ + [4463, 5743], + [70, -51], + [17, -48], + [-6, -65], + [54, -62] + ], + [ + [4598, 5517], + [-52, -21], + [-7, -34], + [-71, -18], + [-49, 42], + [-33, -78], + [-47, -13], + [-28, 30], + [-40, -18], + [-48, 35], + [-78, -59], + [-63, 7], + [-41, 75], + [-132, -42], + [88, -73], + [-8, -65], + [-40, -21], + [-17, 56], + [-53, 39], + [-14, -53], + [-50, -80], + [-72, -53], + [-49, 14], + [-61, -43], + [-57, -6], + [-58, -146], + [-47, -35], + [-20, -75], + [-75, -23], + [-34, 13], + [-93, -23], + [-77, -1], + [-74, -42], + [-127, 13], + [-29, -14], + [-240, -33], + [-62, -25], + [-14, -50], + [-90, -123], + [-65, -57], + [-93, 3] + ], + [ + [2378, 4520], + [61, 124], + [3, 32], + [-54, 58], + [-32, 69], + [-8, 72], + [30, 91], + [48, 52], + [-5, 56], + [66, 21], + [62, 149], + [52, 19], + [123, 152], + [66, 29], + [91, 6], + [101, -26], + [-39, 93], + [8, 72], + [-21, 150], + [39, 66] + ], + [ + [10837, 2251], + [22, -129], + [46, -145], + [98, -232], + [61, -110], + [85, -115], + [49, -86], + [98, -131], + [63, -59], + [66, -35], + [59, 38], + [105, 30], + [32, 46], + [-3, 40], + [81, 57], + [31, -46], + [54, -40], + [48, -9], + [56, 44], + [-1, 48], + [63, 40], + [120, 20], + [50, -6], + [65, -43], + [62, 7], + [32, -32], + [59, 14], + [42, -75], + [-36, -46], + [-102, 18], + [-4, -76], + [-37, -51], + [-30, -74], + [4, -55], + [32, -116], + [-59, -37], + [-96, -8], + [-31, -35], + [-170, 30], + [-61, -50], + [-44, 8], + [-56, -27], + [-25, 60], + [-78, 73], + [-90, 41], + [-40, 4], + [-77, -27], + [-60, -54], + [-19, -41], + [36, -38], + [-52, -25], + [-12, -40], + [-67, 6], + [-29, -72], + [-61, -20], + [-32, -98], + [-40, -49], + [-45, 52], + [-56, 13], + [-63, -33], + [-100, 4], + [-242, -125], + [-63, -72], + [-54, -117], + [-4, -52], + [-61, -13], + [-22, -44], + [-73, -19], + [-32, -87], + [-160, -50], + [-49, 17], + [-69, -13] + ], + [ + [9951, 4], + [106, 48], + [-55, 128], + [-55, -36], + [-71, 26], + [-30, 39], + [-9, 55], + [72, 47], + [18, 72], + [-41, 41], + [-91, -5], + [-5, 56], + [57, 22], + [-13, 33], + [-62, 26], + [-16, 49] + ], + [ + [9756, 605], + [28, 42], + [5, 71], + [-10, 120], + [-27, 88], + [-48, 80], + [-76, 75], + [-34, 11], + [-67, -31], + [-40, -36], + [-26, 37], + [-68, 39], + [-113, 141], + [3, 85], + [-37, -24], + [-91, 18], + [-97, -2], + [-87, -67], + [-136, 40], + [-13, 61], + [17, 44], + [73, 79], + [173, 110], + [31, 38], + [113, 97], + [168, 95], + [11, 64], + [64, -38], + [64, 25], + [94, 87], + [58, 29], + [46, -24], + [17, 43], + [93, 39], + [65, 68], + [-104, 12], + [-14, 131], + [23, 42], + [-15, 35] + ], + [ + [9799, 2329], + [4, 70], + [24, 33], + [77, -59], + [63, 17], + [53, -24], + [77, -67], + [15, -45], + [44, -12], + [13, -46], + [11, 49], + [120, -27], + [100, -1], + [84, 101], + [79, -63], + [34, 81], + [51, -46], + [-4, -67], + [-44, 20], + [-53, -9], + [-32, -26], + [-3, -56], + [54, -66], + [68, 24], + [53, 83], + [-9, 93], + [39, 18], + [82, -27], + [38, -26] + ], + [ + [11026, 6427], + [128, -4], + [6, -49], + [205, -135], + [51, -50], + [68, -10], + [106, 13], + [88, -67], + [16, 31], + [138, 44], + [29, -187], + [81, -43], + [21, -33], + [-5, -89], + [65, -59], + [44, -18], + [-19, -72], + [102, -60], + [82, 135], + [115, -85], + [70, 38], + [38, -1] + ], + [ + [12455, 5726], + [70, -84], + [52, -18], + [-51, -95], + [10, -88], + [-24, -24], + [0, -120], + [45, 6], + [36, -34], + [22, -121], + [-53, -22], + [28, -146], + [-32, -46], + [-74, 18], + [-100, 60], + [-54, -22], + [6, -169], + [41, -49], + [-75, -30], + [32, -81] + ], + [ + [12334, 4661], + [-106, -45], + [-72, 26], + [-39, -32], + [-95, 11], + [-13, 40], + [-82, -22], + [6, 121], + [-22, 0], + [-36, 171], + [-37, -7], + [-27, 57], + [-121, -45], + [-5, 49], + [-59, 2], + [-28, 49], + [-137, -85], + [-154, 53], + [-44, 25], + [-74, 2], + [-142, -28], + [-46, -39], + [-67, 2], + [-6, 33], + [-51, 26], + [19, -90], + [-31, -23], + [12, -98], + [-56, -103], + [63, -91], + [-23, -15], + [12, -74], + [52, 7], + [-2, -65], + [-40, -63], + [27, -66], + [-10, -72], + [20, -66], + [-52, -15], + [-89, 3], + [-94, 52], + [-73, 2], + [-90, -29], + [-149, -35], + [-127, -43] + ], + [ + [10246, 4141], + [-120, -35], + [-29, 17], + [-42, 75], + [-98, -28], + [-135, -18], + [-6, 41], + [-45, 2], + [-5, 120], + [-75, -12], + [-9, -56], + [-38, -38], + [-60, -5], + [-24, -47], + [-44, 34], + [-6, 40], + [-53, -6], + [-14, 41], + [-97, 28] + ], + [ + [9346, 4294], + [0, 24], + [-89, 27], + [1, 79], + [-14, 57], + [31, 30], + [52, -1], + [9, 71], + [-14, 48], + [24, 119], + [-60, 10], + [9, 95] + ], + [ + [9295, 4853], + [24, 48], + [37, -2], + [62, 54], + [137, 67], + [-7, 41], + [61, 14], + [100, 44], + [54, 46], + [-14, 57], + [-31, 1], + [-6, 64], + [-22, 25], + [17, 88], + [-4, 200], + [92, 30], + [39, 39], + [30, -25], + [85, 53], + [-29, 89], + [-37, 42], + [-46, 1], + [-37, 49], + [16, 40], + [47, 31], + [106, -19], + [30, -33], + [48, 95], + [18, 80] + ], + [ + [10065, 6072], + [52, -42], + [53, -9], + [83, -51], + [21, -57], + [61, -17], + [52, -42], + [47, 47], + [-29, 65], + [39, 48], + [-36, 57], + [41, 104], + [9, 56], + [48, 63], + [129, -3], + [18, 72], + [107, 22], + [32, 55], + [62, 31], + [128, -19], + [44, -25] + ], + [ + [14441, 4702], + [-111, 8], + [-78, -19], + [-63, -231], + [-77, 18], + [-10, -45], + [-49, -35], + [-127, -1], + [8, -38], + [-81, 2], + [-12, -43], + [-40, -24], + [-17, -56], + [17, -93], + [-11, -102], + [-39, -11], + [-24, -74], + [87, -17], + [7, -65], + [-75, -33], + [-10, -147], + [-58, -67], + [-89, 56], + [-26, -30], + [-60, 5], + [-53, 24], + [-89, -35], + [-80, -7], + [-61, 20], + [-81, -19], + [-54, -74], + [-115, -183], + [-39, 57], + [-49, 25], + [-61, -52], + [-88, -41] + ], + [ + [12733, 3375], + [-26, 52], + [17, 39], + [76, 40], + [-42, 37], + [24, 29], + [-98, 72], + [-4, 56], + [-105, 84], + [76, 28], + [-24, 81], + [-4, 64], + [95, -21], + [38, 22], + [50, 77], + [38, 13], + [51, 100], + [-82, -2], + [-64, 43], + [-54, 75], + [-58, 26], + [-39, -30], + [-68, 99], + [-51, 10], + [-28, 33], + [-50, 153], + [2, 32], + [-74, -14], + [26, 71], + [-21, 17] + ], + [ + [12455, 5726], + [-2, 105], + [-39, 106], + [199, 32], + [59, -27], + [25, 47], + [38, -2], + [19, 48], + [53, -3], + [40, 30], + [34, 62], + [64, 45], + [-4, 48], + [64, 36], + [12, 64], + [101, 25], + [-12, 49], + [72, 35], + [-18, 74], + [-36, 34], + [49, 45], + [69, -5], + [113, -32], + [61, 3], + [12, 48] + ], + [ + [13428, 6593], + [56, -69], + [-27, -54], + [44, -28], + [105, -24], + [-22, -88], + [26, -66], + [-68, -84], + [175, -14], + [-2, -129], + [58, -37], + [-28, -62], + [42, -44], + [-6, -80], + [-56, -36], + [59, -214], + [-18, -39], + [34, -43], + [89, -24], + [4, -48], + [49, -45], + [-55, -35], + [-6, -72], + [120, -2], + [38, -84], + [-4, -48], + [58, -37], + [126, -35], + [18, -139], + [186, -15], + [1, -64], + [28, -18], + [-11, -114] + ], + [ + [2187, 6918], + [43, -141], + [40, -12], + [27, -54], + [-26, -50], + [13, -55], + [52, -59], + [-41, -60], + [53, -75], + [62, -11], + [-17, -57], + [-42, -43], + [112, -55], + [54, -4], + [16, -94], + [91, 7], + [21, -142], + [28, -53], + [51, 107], + [75, 13], + [13, -55], + [89, -50], + [75, -74], + [-7, -96] + ], + [ + [2378, 4520], + [-81, 70], + [-8, 55], + [-64, 13], + [-68, 45], + [1, 45], + [-90, 97] + ], + [ + [2068, 4845], + [-3, 88], + [41, 34], + [-14, 62], + [-67, 65], + [-20, 53], + [30, 74], + [-47, 27], + [2, 56], + [-108, 92], + [-35, 52], + [-39, -61], + [-70, 24], + [-36, 60], + [-1, 151], + [-124, -38], + [-38, -69], + [-48, 27], + [4, 104], + [-52, -7], + [-51, 58], + [-14, 62], + [-67, -8], + [-63, 96], + [-56, 25] + ], + [ + [1192, 5872], + [15, 74], + [-14, 62], + [13, 90], + [-11, 31], + [40, 125], + [68, 72], + [-4, 40], + [64, 48], + [40, -19], + [100, -4], + [49, 46], + [49, -34], + [26, 43], + [63, -9], + [90, 10], + [43, 36], + [82, 17], + [50, 37], + [-63, 25], + [-22, 70], + [34, 44], + [24, 74], + [-38, 77], + [36, 19], + [-15, 79], + [45, 12], + [33, 51], + [42, -36], + [29, 10], + [57, -43], + [70, -1] + ], + [ + [13565, 7493], + [34, -53], + [-49, -52], + [27, -44], + [-18, -47], + [-38, 11], + [-19, -48], + [59, -28], + [2, -82], + [-66, -52], + [-23, -104], + [-40, -13], + [-23, -96], + [35, -51], + [7, -113], + [50, -45], + [-3, -40], + [-72, -43] + ], + [ + [11026, 6427], + [-41, 114], + [11, 80], + [32, 48], + [44, -41], + [105, -11], + [77, 54], + [17, 40], + [55, 56], + [-13, 57], + [-44, 33], + [17, 56], + [121, -27], + [2, 49], + [-61, 9], + [-5, 49], + [68, -2], + [-27, 90], + [-43, 66], + [-121, 19], + [2, 65], + [-38, 1], + [-18, 130], + [-44, 41], + [-69, 1], + [-83, 34], + [-74, 66], + [-13, 57], + [33, 72], + [47, 48], + [-22, 49], + [2, 64] + ], + [ + [10943, 7794], + [40, 48], + [69, 24], + [79, 63], + [68, -33], + [49, 97], + [86, 40], + [69, -34], + [31, 32], + [70, 23], + [32, 31] + ], + [ + [11536, 8085], + [61, -1], + [69, 57], + [19, 66], + [89, -6], + [34, 21], + [83, 3], + [69, -19], + [24, -47], + [83, -75], + [-10, -23], + [40, -66], + [59, 3], + [38, 39], + [55, 3], + [55, -54], + [34, -66], + [54, -13], + [43, 65], + [143, 85], + [40, 11], + [109, -18], + [97, 21], + [108, 48], + [37, 48], + [62, -13], + [72, 24], + [-10, -101], + [79, -66], + [62, 0], + [-18, -114], + [23, -60], + [92, -109], + [148, -66], + [12, -38], + [85, -86], + [-11, -45] + ], + [ + [8881, 2273], + [150, -43], + [62, -7], + [61, 37], + [16, -24], + [126, -22], + [-15, -26], + [-86, 7], + [-167, 34], + [-147, 44] + ], + [ + [9799, 2329], + [-31, 66], + [-41, -54], + [-15, -51], + [-86, -70], + [-97, 123], + [-68, 45], + [-37, 2], + [-43, -42], + [-89, 42], + [-14, -62], + [-68, -6], + [-144, 22], + [-78, -30], + [-45, 4], + [-70, -50], + [-263, 87], + [4, 74], + [-42, -7], + [-58, 37], + [-29, 49], + [-81, 17], + [-42, 49], + [-56, -32], + [-73, 8], + [-20, 46], + [61, 37], + [73, 1], + [71, 31], + [45, 53], + [-30, 66], + [-62, -10], + [-118, 52], + [-56, 14], + [-41, -27], + [-57, 31], + [-72, 65], + [99, -3], + [77, 14], + [100, -45], + [22, 6], + [95, -41], + [95, 15], + [66, -26], + [98, -20], + [-21, 85], + [2, 67], + [-42, 19], + [-86, -46], + [-37, 78], + [-39, 0], + [-42, 35] + ], + [ + [8414, 3047], + [85, 41], + [8, 63], + [59, 37], + [44, 54], + [52, 30], + [57, -33], + [30, 54], + [73, 6], + [58, -26], + [8, 47], + [125, -14], + [21, -32], + [96, 3], + [104, 27], + [-13, 64], + [24, 63], + [-6, 71], + [66, -27], + [39, 54], + [-88, 60], + [-50, 50], + [0, 32], + [46, 61], + [75, 29], + [46, 54], + [45, 13], + [-64, 107], + [30, 22], + [3, 120], + [-13, 112], + [-28, 105] + ], + [ + [10246, 4141], + [86, -76], + [19, -106], + [33, -107], + [149, 43], + [41, -83], + [-37, -7], + [24, -139], + [35, -58], + [12, -82], + [27, -67], + [72, -59], + [59, -2], + [18, -99], + [37, -1], + [13, -74], + [-45, -7], + [-2, -91], + [-89, -30], + [-17, -49], + [36, -34], + [66, -2], + [5, -91], + [-30, -49], + [35, -43], + [74, 24], + [41, -92], + [44, 17], + [86, -41], + [19, -114], + [-7, -53] + ], + [ + [11050, 2569], + [-68, -44], + [-97, -23], + [-41, -33], + [-33, -76], + [17, -47], + [9, -95] + ], + [ + [4311, 8365], + [11, -40], + [84, -59], + [-48, -133], + [66, -44], + [2, -32], + [66, -28], + [3, -56], + [58, -29], + [26, -39], + [70, 45], + [3, -64], + [77, -84], + [-54, -36], + [3, -56], + [49, -21], + [-59, -84], + [-56, 4], + [20, -63], + [-29, -50], + [9, -32], + [57, -12], + [31, -135], + [65, -20], + [82, -60] + ], + [ + [4847, 7237], + [-5, -48], + [-48, -3], + [11, -56], + [41, -21], + [-44, -76], + [20, -79], + [-37, -35], + [35, -78], + [66, -213], + [0, -153], + [-57, 29], + [-43, -67], + [-47, -3], + [-33, 30], + [-47, -3], + [-28, -58], + [-56, 13], + [-11, -89], + [-54, -4], + [-34, -91], + [25, -38], + [-28, -50], + [28, -86], + [-12, -73], + [11, -55], + [-10, -113], + [-27, -74] + ], + [ + [3662, 5614], + [-55, 13], + [-33, 30], + [-5, 63], + [-76, 84], + [6, 121], + [-24, 110], + [-17, 15], + [-5, 168], + [13, 33], + [-23, 103], + [23, 114], + [-15, 87], + [43, 52], + [-19, 55], + [-4, 160], + [-12, 63], + [-50, 37], + [6, 33], + [51, 44], + [-11, 55], + [51, 52], + [-5, 72], + [-34, 30], + [28, 50], + [-64, 133], + [22, 25], + [-36, 62], + [-7, 88], + [54, 28], + [-10, 137], + [47, 3], + [-23, 103] + ], + [ + [3478, 7837], + [55, 12], + [81, 95], + [94, 7], + [118, 145], + [16, -7], + [102, 145], + [13, 50], + [93, 47], + [89, -19], + [21, 42], + [93, 47], + [10, -39], + [48, 3] + ], + [ + [7103, 8392], + [33, -55], + [48, -16], + [87, -1], + [38, 48], + [80, 0], + [1, -64], + [-46, -32], + [10, -79], + [40, -24], + [1, -40], + [-93, -72], + [-40, 16], + [-31, -39], + [50, -88], + [-38, -48], + [-65, 48], + [-10, 88], + [-23, 0], + [-147, 183], + [-46, -40], + [-39, 8], + [28, 112], + [52, 72], + [46, 32], + [64, -9] + ], + [ + [8564, 8040], + [-16, -64], + [-31, -23], + [16, -72] + ], + [ + [6487, 6569], + [-76, 22], + [-33, 86], + [-54, 14], + [-32, 71], + [81, 98], + [-31, 15], + [-11, 119], + [-40, 71], + [37, 41], + [-40, 31] + ], + [ + [6288, 7137], + [6, 72], + [-38, -2], + [4, 96], + [44, 74], + [24, -24], + [67, 50], + [51, 97], + [45, 49], + [-40, 55], + [12, 96], + [-31, 40], + [-4, 119], + [29, 57], + [-17, 56], + [21, 72], + [-38, 7], + [-10, 56], + [-39, 23], + [-17, 48], + [-63, 38], + [5, 81], + [-32, 15], + [27, 113], + [-18, 88], + [84, 42], + [6, 65], + [-80, 54], + [19, 121], + [-51, 88], + [14, 41], + [-3, 81], + [30, 49], + [-90, 96], + [-89, 63], + [-18, 74], + [13, 58], + [47, 1], + [36, 68], + [-2, 50], + [-32, 25] + ], + [ + [6160, 9489], + [43, 46], + [82, -25], + [12, 110], + [60, -25], + [109, 73], + [20, -68], + [35, -46], + [86, 14], + [42, 47], + [50, -8], + [22, 45], + [59, -13], + [97, -1], + [41, -17], + [84, -84], + [11, -72], + [-28, -13], + [78, -77], + [38, 9], + [60, -67] + ], + [ + [9295, 4853], + [-14, 57], + [-84, -22], + [-46, -54], + [-37, 17], + [-84, -6], + [-46, -70], + [30, -80], + [-39, -63], + [-60, -30], + [-45, 9], + [-83, -22], + [-68, 10], + [-37, 40], + [-68, -6], + [-15, -79], + [-82, -7], + [-15, 48], + [-53, 32], + [-67, -7], + [-15, -23], + [-83, -7], + [8, 103], + [22, 55], + [-22, 72], + [-83, 9], + [-8, 87], + [45, 8], + [-15, 71], + [-53, 1], + [-61, 56], + [-37, -39], + [-38, 0], + [-68, 41], + [-114, -23], + [-15, 24], + [-60, -24], + [-9, 80], + [-45, 16], + [-31, 56], + [-107, 9], + [-22, -55], + [-67, -32], + [-84, 1], + [-92, 48], + [-37, -39], + [-54, -15], + [-61, 24], + [-130, -7], + [-23, 15], + [-45, -47] + ], + [ + [6978, 5085], + [-220, 15], + [-93, 133], + [-36, -56], + [-38, 23], + [-68, 7] + ], + [ + [6523, 5207], + [4, 142], + [14, 71], + [73, 81], + [75, 33], + [-1, 23] + ], + [ + [9162, 6541], + [47, -17], + [69, 7], + [0, -40], + [131, -43], + [23, -48], + [6, -72], + [54, -9], + [-14, 88], + [31, 23], + [46, -65], + [-24, -39], + [45, -57], + [-23, -40], + [14, -80], + [69, -34], + [31, 39], + [30, -49], + [54, 7], + [61, -18], + [47, 71], + [61, -41], + [54, -2], + [91, -50] + ], + [ + [2532, 8017], + [82, -34], + [-34, -75], + [28, -55], + [-1, -96], + [115, -153] + ], + [ + [2722, 7604], + [57, -35], + [-15, -106], + [-35, -59], + [-67, -45], + [-54, -5], + [-33, 22], + [-84, -23], + [6, -80], + [-18, -66], + [-48, 20], + [-49, -156], + [-62, -6], + [-89, -47], + [-46, 3], + [2, -103] + ], + [ + [1192, 5872], + [-59, -8], + [-85, 21], + [-12, 39], + [-60, -8], + [-91, 13], + [-5, 39], + [-46, 83], + [-125, -22], + [-14, 54], + [-55, 43], + [-11, 47], + [30, 43], + [-19, 46] + ], + [ + [640, 6262], + [-36, 131], + [-50, 63], + [-35, -4], + [-8, 116], + [50, 65], + [2, 61], + [-73, 101], + [-21, 50], + [2, 67], + [-28, 44], + [8, 55], + [74, 89], + [27, 78], + [85, 76], + [14, 48], + [87, 100], + [107, 142], + [70, 112], + [49, 35], + [14, 42], + [99, 80], + [95, 112], + [68, 45], + [8, 30], + [75, 63], + [15, 54], + [80, 51], + [114, -13], + [86, 44], + [21, 47], + [30, 200], + [-11, 25] + ], + [ + [1658, 8471], + [49, 22], + [66, -50], + [10, -31], + [65, -16], + [20, 35], + [72, -16], + [-13, -34], + [43, -36], + [45, 21], + [38, -77], + [32, -5], + [0, -97], + [107, -62], + [-4, -49], + [64, -11], + [37, 28], + [88, -8], + [20, 42], + [79, -99], + [56, -11] + ], + [ + [13565, 7493], + [42, 39], + [83, 10], + [16, 158], + [38, -15], + [81, 29], + [29, -111], + [44, -24], + [45, 17], + [23, -42], + [92, 13], + [74, -31], + [36, -55], + [93, -59], + [61, -2], + [14, -78], + [117, 12], + [83, 81], + [43, -41], + [37, -109], + [96, -41], + [64, 36], + [129, -30], + [-6, -49], + [51, -109], + [54, -14], + [64, -64], + [101, -12], + [38, 51], + [88, 13], + [87, -16], + [39, -46], + [8, -75], + [-46, -66], + [-1, -79], + [32, -175], + [-106, -112], + [-36, -9], + [-62, -82], + [-22, -77], + [-103, 9], + [-59, -35], + [-65, 5], + [29, -57], + [39, -18], + [69, -141], + [67, 32], + [77, -48], + [27, 45], + [42, 4], + [-3, -78], + [-72, -74], + [-166, 67], + [-14, -78], + [-33, -19], + [-29, -161], + [-44, -56], + [28, -37], + [81, 3], + [56, -31], + [17, -69], + [-15, -64], + [76, -116], + [-3, -36], + [-74, -52], + [56, -29], + [60, 21], + [24, -67], + [-16, -59], + [-46, -8], + [-33, -117], + [-73, -166], + [26, -21], + [-28, -63], + [1, -85], + [-77, -73], + [-83, 15], + [-85, -15], + [-63, 44], + [-42, -22], + [-24, 41], + [-54, -18], + [-77, 5], + [-85, -36], + [-56, 31] + ], + [ + [8414, 3047], + [-28, 54], + [6, 40], + [-32, 55], + [25, 160], + [-47, -38], + [-34, -101], + [38, -55], + [-24, -118], + [-78, -38], + [-123, 51], + [-42, -4], + [-48, -61], + [-58, 36], + [-92, -4], + [-18, -30], + [-125, 28] + ], + [ + [7734, 3022], + [7, 111], + [-14, 166], + [-37, 23], + [-85, 102], + [-8, 64], + [83, 15], + [121, 5], + [-9, 56], + [45, -1], + [-2, 87], + [-32, 111], + [-111, -22], + [4, 150], + [-119, -30], + [-24, 63], + [-61, -7], + [-46, 64], + [37, 31], + [-31, 48], + [15, 39], + [-31, 40], + [5, 127], + [-46, 32], + [-55, 120], + [-29, -55], + [-61, 0], + [7, 48], + [-167, -24], + [-54, 32], + [-25, 143], + [52, 56], + [-32, 48], + [-68, -8], + [-10, 159], + [-39, 40], + [-8, 55], + [36, 111], + [45, 8], + [-9, 56] + ], + [ + [7734, 3022], + [-24, 8], + [-127, -36], + [-178, -71], + [-34, 9], + [-44, -61], + [37, -83], + [-17, -102], + [-62, -69], + [-100, -217], + [-42, -51], + [-30, -64], + [-104, -123], + [-84, -127], + [-99, -98], + [-62, -27], + [-57, 65], + [-38, -105], + [-44, -29], + [-70, -3], + [-31, -24], + [20, -48], + [60, -31], + [-89, -71], + [-72, -71], + [-61, -88], + [37, -35], + [77, -43], + [8, -164], + [-32, -145], + [-47, 6], + [6, 66], + [-23, 95], + [-53, 68], + [-136, 71], + [-112, -16], + [-41, 6], + [-85, -63], + [-92, -37], + [-52, -40], + [-49, -66], + [-92, 72], + [-21, -58], + [-31, -5], + [21, -70], + [-53, -18], + [-74, 27], + [-61, 7], + [-180, 95], + [-55, 109], + [1, 45], + [-62, 48], + [45, 84], + [36, 20], + [81, -36], + [26, -43], + [69, 24], + [-14, 84], + [40, 22], + [-17, 110], + [-27, 14], + [45, 84], + [44, -2], + [5, 45], + [96, 31], + [-5, 37], + [67, 37], + [-22, 103], + [25, 74], + [136, 38], + [30, 25], + [8, 62], + [-34, 53], + [85, 126], + [-94, 104], + [35, 65], + [-47, 182], + [133, 91], + [52, -3], + [78, 51], + [-6, -185], + [76, -11], + [-8, 72], + [31, 47], + [43, -62], + [44, 50], + [48, -44], + [-9, -29], + [53, -47], + [28, -60], + [75, -1], + [-7, 101], + [55, -6], + [15, 56], + [63, -126], + [49, -24], + [52, 52], + [54, -28], + [55, 28], + [-68, 138], + [-42, -5], + [-44, 58], + [51, 26], + [11, 40], + [-16, 80], + [21, 54], + [6, 97], + [-34, 58], + [27, 31], + [-76, 22], + [-8, 53], + [-66, -29], + [-40, 8], + [-12, 69], + [-70, 8], + [-41, 59], + [13, 181], + [-58, -30], + [-32, 68], + [65, 15], + [-26, 138], + [38, 27], + [-13, 138], + [-73, -1], + [-11, -67], + [-41, -21], + [-43, 26], + [13, 72], + [-59, 15], + [-10, 74], + [-64, -16], + [-38, 18], + [-11, 57], + [-52, 91], + [57, 31], + [35, 92], + [-17, 114], + [39, 46], + [-23, 54], + [-27, 122], + [-17, 144], + [-68, -14], + [-28, -56], + [-41, 9], + [-34, 41], + [-38, -31], + [-76, 104], + [1, 65] + ], + [ + [5728, 4998], + [85, 24], + [11, 91], + [68, -26], + [34, 85], + [69, -60], + [97, -63], + [97, 3], + [22, 31], + [68, -22], + [68, 2], + [21, 31], + [68, 2], + [-2, 70], + [89, 41] + ], + [ + [9345, 8272], + [72, -17], + [79, -1], + [9, 64], + [111, -41], + [47, -49], + [80, -1], + [32, 16], + [110, -41], + [87, -1], + [49, 39], + [-7, 40], + [71, 8], + [33, 31], + [61, -64], + [79, 7], + [73, 39], + [30, -32], + [13, -97], + [107, -89], + [14, -65], + [45, -49], + [39, 0], + [6, -65], + [46, -9], + [-1, -48], + [-48, -32], + [52, -73], + [108, -9], + [9, 48], + [86, 23], + [106, -10] + ], + [ + [4723, 9662], + [-89, -50], + [31, -94], + [-68, 26], + [-37, -60], + [35, -38], + [-37, -51], + [-40, -11], + [25, -112], + [-54, -44], + [-35, -76], + [4, -56], + [-36, -76], + [-40, -2], + [-61, -53], + [40, -119], + [-11, -74], + [16, -120], + [20, -72], + [-60, -69], + [8, -128], + [-23, -18] + ], + [ + [3478, 7837], + [-41, 30], + [-19, 47], + [-83, 42], + [-28, -50], + [-66, 43], + [-38, -27], + [-50, -76], + [-142, -2], + [-29, -35], + [-49, 21], + [-89, -79], + [-64, -86], + [-54, -12], + [-4, -49] + ], + [ + [2532, 8017], + [44, 44], + [-11, 47], + [46, 12], + [-47, 93], + [3, 74], + [-36, 53], + [62, 13], + [74, -26], + [45, 28], + [-14, 88], + [57, -20], + [4, 49], + [36, 43], + [48, -4], + [115, 65], + [79, 6], + [21, -72], + [89, -18], + [36, 44], + [6, 138], + [28, 59], + [97, -18], + [-28, 63], + [-9, 129], + [71, 13], + [36, 43], + [-3, 49], + [-51, 53], + [-73, 3], + [-19, 56], + [79, 5], + [35, 76], + [-53, 70], + [-41, 13], + [-28, 63], + [-69, 77], + [5, 41], + [-106, 17], + [-51, 37], + [-23, 105], + [-58, 28], + [32, 108], + [-52, 53], + [69, 38], + [71, 149], + [-52, 51], + [5, 55], + [60, 72], + [-74, 11], + [-17, 29] + ], + [ + [2970, 10222], + [154, -6], + [40, 32], + [92, -39], + [74, 19], + [58, -19], + [66, -64], + [148, -6], + [116, -91], + [65, 27], + [171, -4], + [41, -74], + [34, 13], + [101, -23], + [11, 24], + [167, 7], + [5, -140], + [54, -39], + [-28, -71], + [102, 29], + [93, -5], + [80, 30], + [44, -29], + [99, -2], + [-4, -64], + [-40, -26], + [10, -39] + ], + [ + [9951, 4], + [-3, 0], + [-5, -4], + [-56, 0], + [-19, 41], + [-50, 10], + [-8, 56], + [-35, 31], + [-85, 13], + [-81, 77], + [47, 68], + [63, 7], + [15, 154], + [-11, 86], + [33, 62] + ], + [ + [9631, 10773], + [88, 7], + [35, -48], + [79, 16], + [53, 39], + [91, -7], + [9, -62], + [68, -3], + [10, -58], + [48, -39], + [24, -49], + [82, -81], + [-39, -88], + [20, -73], + [55, -79], + [36, -14], + [23, -55], + [34, 3], + [130, -118], + [-19, -52], + [31, -60], + [-25, -24], + [-82, -4], + [-39, -27], + [-115, -15], + [-30, -32], + [137, -101], + [15, -50], + [42, -31], + [-13, -51], + [-36, -38], + [-31, -86], + [100, -57], + [-61, -132], + [80, -36], + [43, 46], + [88, -28], + [118, 2], + [27, -81], + [113, -16], + [11, 31], + [122, 51], + [126, -22], + [5, -95], + [57, -124], + [73, 11], + [27, 26], + [95, -44], + [1, -28], + [-60, -54], + [-9, -61], + [52, -21], + [-8, -65], + [26, -31], + [1, -64], + [54, -59], + [-16, -45], + [25, -67], + [-72, -65], + [-3, -69], + [29, -27], + [12, -58], + [58, -70], + [45, -12], + [5, -86], + [60, -58] + ], + [ + [2068, 4845], + [-57, -21], + [-56, 25], + [-47, -60], + [-48, -1], + [-83, -40], + [-27, 27], + [-71, -2], + [-12, 30], + [-77, 41], + [-135, -41], + [-30, 62], + [-37, 17], + [-93, -14], + [-45, 31], + [-72, -4], + [-22, -49], + [-138, 67], + [-47, 44], + [-13, 49], + [-118, 12], + [-18, -78], + [-30, -40], + [-52, -24], + [-74, 39], + [15, -68], + [-26, -13], + [-59, 39], + [29, 71], + [-46, 106], + [-70, 5], + [-57, -39], + [-68, 26], + [-5, 62], + [-60, 106], + [-68, 21], + [-59, -19], + [-28, 82], + [-103, 173], + [-61, 0], + [21, 189], + [17, 50], + [40, 23], + [53, 84], + [45, 20], + [13, 55], + [-20, 51], + [26, 24], + [7, 109], + [24, 19], + [8, 66], + [47, 83], + [55, 9], + [16, 110], + [36, 13], + [61, -70], + [105, 8], + [86, -48] + ], + [ + [5728, 4998], + [-2, 55], + [-80, 22], + [-90, 10], + [-66, 36], + [-38, -61], + [-72, -52], + [-19, 118], + [-39, 0], + [-23, -52], + [-37, 26], + [40, 39], + [12, 54], + [-22, 33], + [-109, -55], + [-25, 63], + [-69, -29], + [-21, 26], + [11, 66], + [-40, 34], + [-105, 2], + [-56, 53], + [22, 31], + [-105, 92], + [-69, -20], + [-100, 41], + [-28, -13] + ], + [ + [4847, 7237], + [61, 45], + [95, 22], + [48, -21], + [86, 29], + [157, 10], + [33, -30], + [45, 67], + [56, -21], + [46, 10], + [18, -47], + [39, 2], + [14, 49], + [102, -27], + [13, 65], + [85, 28], + [14, 41], + [74, -85], + [19, -103], + [24, -23], + [-37, -58], + [2, -48], + [33, -46], + [2, -48], + [123, 6], + [108, -12], + [-2, 64], + [62, -14], + [75, 51], + [46, -6] + ], + [ + [1658, 8471], + [-60, 108], + [3, 61], + [-42, 8], + [17, 91], + [97, -6], + [38, 29], + [-105, 73], + [-83, 146], + [-17, 79], + [-34, 4], + [-17, 59], + [16, 32], + [-105, 85], + [-21, 75], + [-56, 21], + [-14, 37], + [35, 78], + [16, 72], + [-29, 116], + [20, 112], + [-30, 35], + [19, 41], + [137, 17], + [5, -27], + [86, 0], + [7, -64], + [63, -10], + [80, 50], + [33, 67], + [104, 68], + [63, 90], + [-16, 65], + [43, 102], + [89, 3], + [97, 24], + [178, -36], + [114, 31], + [42, -20], + [78, 68], + [169, 29], + [73, -48], + [106, -21], + [63, 27], + [50, -20] + ], + [ + [12733, 3375], + [-72, -33], + [-67, -66], + [-58, -143], + [-37, 63], + [-56, 39], + [-92, -2], + [-168, -69], + [-52, -42], + [-72, -122], + [-31, 60], + [-40, 29], + [-67, -18], + [-53, 14], + [-107, -12], + [-173, -102], + [-60, -84], + [-60, -58], + [-96, -44], + [-99, -135], + [-97, -175], + [-33, -72], + [-37, -48], + [-139, -69], + [0, 37], + [61, 61], + [66, 16], + [62, 33], + [8, 46], + [34, 38], + [82, 150], + [-79, -7], + [-56, 35], + [-59, -47], + [-36, -79] + ], + [ + [4723, 9662], + [69, -43], + [21, 64], + [41, 8], + [-11, 57], + [12, 71], + [58, -5], + [20, -68], + [34, -23], + [100, 1], + [76, 109], + [88, 64], + [-13, -91], + [33, 3], + [61, -89], + [43, -3], + [59, 45], + [96, -46], + [68, -3], + [-8, -61], + [36, -96], + [79, 20], + [-19, 33], + [35, 78], + [68, 43], + [115, 8], + [55, 68], + [48, 27], + [49, -100], + [41, -36], + [-20, -72], + [64, -65], + [7, -64], + [32, -7] + ] + ], + "transform": { + "scale": [0.001171110329852683, 0.0007382609567284698], + "translate": [22.14834213256836, 44.39125061035162] + }, + "objects": { + "ukraine": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-71", + "NAME_0": "Ukraine", + "ID_1": 1, + "NAME_1": "Cherkasy", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Cherkas'ka Oblast'|Cherkasskaya Oblast'|Cherkassy" + } + }, + { + "arcs": [[4, 5, 6, 7]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-74", + "NAME_0": "Ukraine", + "ID_1": 2, + "NAME_1": "Chernihiv", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Chernigov|Tschernigow" + } + }, + { + "arcs": [[8, 9, 10, 11, 12]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-77", + "NAME_0": "Ukraine", + "ID_1": 3, + "NAME_1": "Chernivtsi", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Chernivets'ka Oblast'|Chernovitskaya Oblast'|Chernovtsy|Czernowitz|Tschernowzy|Tchernovtsy" + } + }, + { + "arcs": [[13, 14, 15, 16]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-43", + "NAME_0": "Ukraine", + "ID_1": 4, + "NAME_1": "Crimea", + "TYPE_1": "Autonomous Republic", + "ENGTYPE_1": "Autonomous Republic", + "NL_NAME_1": null, + "VARNAME_1": "Crimée|Criméia|Krim|Krymskaya Respublika|Respublika Krym" + } + }, + { + "arcs": [[17, 18, 19, 20, 21, 22, 23]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-12", + "NAME_0": "Ukraine", + "ID_1": 5, + "NAME_1": "Dnipropetrovs'k", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Dnipropetrovsk|Dniepropietrovsk|Dnjepropetrowsk" + } + }, + { + "arcs": [[24, 25, -19, 26, 27]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-14", + "NAME_0": "Ukraine", + "ID_1": 6, + "NAME_1": "Donets'k", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Donetsk|Donetskaya Oblast'|Donezk|Stalino" + } + }, + { + "arcs": [[28, -13, 29, 30, 31]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-26", + "NAME_0": "Ukraine", + "ID_1": 7, + "NAME_1": "Ivano-Frankivs'k", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Ivano-Frankovsk|Ivano-Frankovskaya Oblast'|Stanislav" + } + }, + { + "arcs": [[32, -27, -18, 33, 34, 35]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-63", + "NAME_0": "Ukraine", + "ID_1": 8, + "NAME_1": "Kharkiv", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Charkow|Jarkov|Karkov|Khar'kov" + } + }, + { + "arcs": [[[36]], [[37, 38, -21, 39, 40, -17]]], + "type": "MultiPolygon", + "properties": { + "ID_0": 240, + "ISO": "UA-65", + "NAME_0": "Ukraine", + "ID_1": 9, + "NAME_1": "Kherson", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Cherson|Khersons'ka Oblast'" + } + }, + { + "arcs": [[41, 42, -10, 43, 44]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-68", + "NAME_0": "Ukraine", + "ID_1": 10, + "NAME_1": "Khmel'nyts'kyy", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Khmelnitsky|Khmelnytskyi|Chmelnizkij|Hmelnicki|Kamenets-Podol'skaya Oblast'|Khmel'nyts'ka Oblast'" + } + }, + { + "arcs": [[45]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-30", + "NAME_0": "Ukraine", + "ID_1": 11, + "NAME_1": "Kiev City", + "TYPE_1": "Independent City", + "ENGTYPE_1": "Independent City", + "NL_NAME_1": null, + "VARNAME_1": "Kyiv" + } + }, + { + "arcs": [[-7, 46, -3, 47, 48, 49], [-46]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-32", + "NAME_0": "Ukraine", + "ID_1": 12, + "NAME_1": "Kiev", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Kiev Oblast|Kiew|Kijew|Kiiv|Kijev|Kiyev|Kyiv|Kyjiv|Kyyiv|Kyyivs'ka Oblast'" + } + }, + { + "arcs": [[-23, 50, 51, 52, -1, 53]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-35", + "NAME_0": "Ukraine", + "ID_1": 13, + "NAME_1": "Kirovohrad", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Kirovograd|Kirovogradskaya Oblast'" + } + }, + { + "arcs": [[54, 55, -32, 56, 57, 58]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-46", + "NAME_0": "Ukraine", + "ID_1": 14, + "NAME_1": "L'viv", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Lemberg|Llvov|L'vov|Lwow|L'vivs'ka Oblast'" + } + }, + { + "arcs": [[-28, -33, 59]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-09", + "NAME_0": "Ukraine", + "ID_1": 15, + "NAME_1": "Luhans'k", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Luhansk|Lugansk|Luhans'ka Oblast'|Voroshilovgrad" + } + }, + { + "arcs": [[-22, -39, 60, 61, -51]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-48", + "NAME_0": "Ukraine", + "ID_1": 16, + "NAME_1": "Mykolayiv", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Mykolaiv|Nikolajew|Nikolayev" + } + }, + { + "arcs": [[-62, 62, 63, -52]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-51", + "NAME_0": "Ukraine", + "ID_1": 17, + "NAME_1": "Odessa", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Odesa|Odes'ka Oblast'|Odesskaya Oblast'" + } + }, + { + "arcs": [[-34, -24, -54, -4, -47, -6, 64]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-53", + "NAME_0": "Ukraine", + "ID_1": 18, + "NAME_1": "Poltava", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[65, -45, 66, -55, 67, 68]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-56", + "NAME_0": "Ukraine", + "ID_1": 19, + "NAME_1": "Rivne", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Rovno|Rivnens'ka Oblast'|Rovenskaya Oblast'" + } + }, + { + "arcs": [[-15, 69]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-40", + "NAME_0": "Ukraine", + "ID_1": 20, + "NAME_1": "Sevastopol'", + "TYPE_1": "Autonomous Republic", + "ENGTYPE_1": "Autonomous Republic", + "NL_NAME_1": null, + "VARNAME_1": "Sebastopol" + } + }, + { + "arcs": [[-35, -65, -5, 70]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-59", + "NAME_0": "Ukraine", + "ID_1": 21, + "NAME_1": "Sumy", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": null + } + }, + { + "arcs": [[-44, -9, -29, -56, -67]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-61", + "NAME_0": "Ukraine", + "ID_1": 22, + "NAME_1": "Ternopil'", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Ternopol|Ternopol'" + } + }, + { + "arcs": [[-57, -31, 71]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-21", + "NAME_0": "Ukraine", + "ID_1": 23, + "NAME_1": "Transcarpathia", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Transcarpathian|Zakarpattia|Ruthenia|Zakarpats'ka Oblast'|Zakarpatskaya Oblast'" + } + }, + { + "arcs": [[-48, -2, -53, -64, 72, -11, -43, 73]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-05", + "NAME_0": "Ukraine", + "ID_1": 24, + "NAME_1": "Vinnytsya", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Vinnytsia|Vinnitskaya Oblast'|Vinnyts'ka Oblast|Winniza" + } + }, + { + "arcs": [[-68, -59, 74]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-07", + "NAME_0": "Ukraine", + "ID_1": 25, + "NAME_1": "Volyn", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Volhynia|Volyns'ka Oblast'|Volynskaya Oblast'|Wolynien" + } + }, + { + "arcs": [[-26, 75, -40, -20]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-23", + "NAME_0": "Ukraine", + "ID_1": 26, + "NAME_1": "Zaporizhzhya", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Saporoshje|Zaporizhia|Zaporiz'ka Oblast'|Zaporojie|Zaporozhskaya Oblast'|Zaporozh'ye|Zaporožje" + } + }, + { + "arcs": [[-49, -74, -42, -66, 76]], + "type": "Polygon", + "properties": { + "ID_0": 240, + "ISO": "UA-18", + "NAME_0": "Ukraine", + "ID_1": 27, + "NAME_1": "Zhytomyr", + "TYPE_1": "Oblast'", + "ENGTYPE_1": "Region", + "NL_NAME_1": null, + "VARNAME_1": "Zhitomir|Jitomir|Shitomir|Zhitomirskaya Oblast'" + } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/usa-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/usa-topo.json new file mode 100644 index 000000000000..95e8f36c7fac --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/usa-topo.json @@ -0,0 +1,22866 @@ +{ + "type": "Topology", + "arcs": [ + [ + [29191, 41293], + [0, -314], + [-1, -2201], + [0, -309], + [-1, -665], + [0, -177], + [1, -937], + [0, -543], + [0, -960], + [0, -143], + [-1, -1878], + [-1, -1023], + [0, -413], + [0, -293], + [-1, -62], + [1, -734], + [-1, -242], + [-1, -644], + [0, -851], + [-1, -190], + [0, -361], + [-1, -187], + [-1, -749], + [-1, -422] + ], + [ + [29182, 26995], + [-701, 4], + [-1923, -2], + [-559, -1], + [-402, -1], + [-226, 19], + [-500, 217], + [-396, 172], + [-1240, 530], + [-1156, 483], + [-481, 195], + [-387, 166], + [-297, 127], + [-1410, 593], + [-1047, 429], + [8, 310], + [19, 21], + [32, -1], + [63, 99], + [53, 138] + ], + [ + [18632, 30493], + [76, 45], + [117, -18], + [221, 234], + [58, 144], + [6, 67], + [-11, 166], + [-80, 131], + [-22, 19], + [-90, 14], + [-34, -26], + [-30, -2], + [-33, 8], + [-95, 47], + [-61, 110], + [3, 36], + [17, 66], + [18, 27], + [15, 44], + [7, 66], + [6, 184], + [-52, 208], + [-39, 141], + [104, 47], + [71, 45], + [8, 58], + [53, 98], + [66, 92], + [43, 94], + [-9, 57], + [19, 221], + [21, 24], + [42, 21], + [4, 28], + [-19, 122], + [-35, 125], + [-4, 82], + [13, 200], + [35, 111], + [67, 80], + [47, 74], + [7, 38], + [-1, 106], + [4, 22], + [24, 38], + [16, 16], + [39, 0], + [45, 22], + [84, 49], + [16, 16], + [128, 89], + [34, 56], + [114, 126], + [61, 22], + [-12, 108], + [-72, 116], + [-42, 30], + [-121, 101], + [-140, 127], + [-210, 510], + [-24, 97], + [-162, 189], + [-150, 260], + [-7, 48], + [11, 46], + [3, 199], + [-7, 40] + ], + [ + [18793, 36254], + [-5, 66], + [26, 168], + [42, 66], + [38, 20], + [11, 25], + [6, 61], + [1, 52], + [-50, 357], + [-16, 72], + [-42, 141], + [-46, 50], + [-19, 38], + [-29, 115], + [5, 52], + [7, 26], + [32, 198], + [-7, 48], + [-35, 57], + [-24, 26], + [-20, 124], + [-14, 281], + [4, 94], + [-1, 75], + [-47, 168], + [-23, 97], + [-22, 261], + [36, 43], + [194, 96], + [112, 24], + [109, -1], + [245, -25], + [29, -20], + [69, -71], + [34, -55], + [13, -43], + [20, -39], + [55, -64], + [46, -28], + [46, 2], + [111, 21], + [30, 44], + [23, 92], + [10, 62], + [107, 214], + [30, 18], + [-1, 142], + [-2, 99], + [4, 207], + [0, 257], + [-8, 461], + [0, 471], + [0, 397] + ], + [ + [19877, 41296], + [157, -1], + [1860, 1], + [125, 0], + [679, 1], + [329, 1], + [1759, 1], + [414, -1], + [818, 5], + [475, 2], + [306, -14], + [614, -1], + [1153, 3], + [372, 0], + [253, 0] + ], + [ + [57109, 31251], + [0, 314], + [1, 248], + [-1, 295], + [1, 155], + [-2, 333], + [-43, 42], + [-34, 17], + [-180, 44], + [-132, -18], + [-9, -9], + [-183, -99], + [-99, 63], + [-103, 77], + [-12, 18], + [-28, 81] + ], + [ + [56285, 32812], + [1, 64], + [10, 475], + [10, 430], + [8, 424], + [8, 409], + [4, 170], + [12, 564], + [16, 625], + [2, 109], + [15, 593], + [4, 178], + [4, 92], + [7, 219], + [-4, 62], + [5, 18], + [-60, 475], + [-67, 541], + [-43, 346], + [-47, 361], + [-25, 189], + [-47, 373], + [-29, 258], + [-30, 245] + ], + [ + [56039, 40032], + [184, 0], + [759, -2], + [455, 1], + [275, 1], + [544, -2], + [243, 0], + [386, -1], + [362, -1], + [227, 0], + [452, 0], + [393, 0], + [368, 3], + [251, -1], + [223, 1], + [360, 1], + [252, -1], + [246, -5], + [518, 2], + [308, 2], + [498, 0], + [370, -1], + [494, -1], + [142, 0], + [-7, -25], + [42, -126], + [113, -113], + [16, -28], + [1, -199], + [-23, -57], + [-14, -21], + [-58, -17], + [-196, -204], + [-184, -239], + [-84, -193], + [-8, -45], + [451, 5], + [419, 4], + [313, 4] + ], + [ + [65130, 38774], + [24, -66], + [62, -68], + [-3, -128], + [-50, 23], + [-34, -3], + [-60, -34], + [-15, -50], + [8, -25], + [37, -22], + [37, -13], + [38, -22], + [15, -27], + [-5, -20], + [-218, -161], + [-83, -25], + [-44, 10], + [-39, 22], + [-74, -53], + [-17, -37], + [6, -84], + [34, -62], + [28, -27], + [31, -10], + [39, 10], + [-46, -296], + [-89, -23], + [-111, 69], + [-21, -2], + [-21, -18], + [11, -200], + [-26, -24], + [-21, -4], + [-29, 37], + [-61, 11], + [-115, -139], + [-19, -92], + [25, -27], + [57, 5], + [78, 42], + [13, -59], + [-53, -166], + [-71, -4], + [-20, -16], + [-9, -36], + [18, -49], + [13, -16], + [22, -10], + [44, 9], + [35, -14], + [38, -62], + [6, -18], + [18, -196], + [-35, -48], + [-32, -13], + [-17, 6], + [-62, 41], + [-32, -16], + [-27, -31], + [-36, -139], + [-189, -54], + [-27, -77], + [1, -35] + ], + [ + [64057, 36238], + [103, -103], + [18, -44], + [-10, -76], + [-107, -154], + [-200, -36], + [-17, 7], + [-23, 51], + [-47, 4], + [-23, -10], + [-8, -51], + [20, -126], + [-23, -34], + [-28, -4], + [-46, 38], + [-33, 4], + [-23, -52], + [-10, -91], + [41, -50], + [43, -45], + [2, -27], + [-23, -40], + [-33, -10], + [-47, 16], + [-23, -21], + [20, -560], + [-18, -51], + [-72, -61], + [-83, -38], + [-196, -31], + [-172, -314], + [-23, -27], + [-48, 4], + [-31, -18], + [-3, -32], + [32, -46], + [28, -29], + [1, -28], + [-24, -35], + [-47, -3], + [-30, -61], + [11, -57], + [31, -30], + [44, -21], + [17, -55], + [-15, -83], + [-144, -62], + [-101, -12], + [-131, -77], + [2, -32], + [96, -115], + [-58, -187], + [-134, -160], + [-9, -68], + [33, -107], + [-2, -30], + [-9, -19], + [-29, -22], + [-52, 12], + [-18, -12], + [-13, -57], + [12, -28], + [54, -50], + [50, -50], + [-6, -29], + [-34, -30], + [-134, -39], + [-15, -37], + [31, -59], + [168, -142], + [13, -60], + [-25, -48], + [-98, -27], + [80, -306], + [57, -132], + [46, -61], + [-3, -193], + [-71, -270], + [-75, -86] + ], + [ + [62463, 31213], + [-184, 2], + [-299, 3], + [-273, 2], + [-101, -1], + [-602, 2], + [-508, 4], + [-522, 8], + [-387, 6], + [-483, 7], + [-185, 1], + [-313, 1], + [-258, 1], + [-287, 1], + [-527, 1], + [-425, 0] + ], + [ + [8343, 33724], + [18, 21], + [33, 7], + [47, -16], + [53, 10], + [29, 25], + [8, 17], + [22, 3], + [38, -15], + [47, 0], + [31, 11], + [34, 34], + [22, -5], + [-1, -28], + [-12, -29], + [7, -33], + [39, -37], + [40, -15], + [47, 9], + [-2, -34], + [6, -33], + [10, -15], + [-5, -20], + [-50, -3], + [-31, -13], + [-55, -42], + [-5, -13], + [-52, -14], + [-39, -3], + [-20, -22], + [-23, -8], + [-88, 59], + [-19, 22], + [-20, 50], + [-16, 11], + [-20, 51], + [-28, 42], + [-45, 26] + ], + [ + [9197, 33870], + [35, -5], + [28, 4], + [30, -19], + [25, -3], + [40, -26], + [34, -45], + [91, -17], + [34, 8], + [28, 38], + [-9, 15], + [29, 31], + [37, 1], + [13, 9], + [69, -31], + [17, -18], + [-22, -23], + [-19, -10], + [-9, -40], + [-25, -25], + [-28, 2], + [-27, -16], + [-54, -7], + [-3, 5], + [-78, -8], + [-51, -34], + [-31, -8], + [-27, -24], + [-40, 11], + [-28, -12], + [-71, 9], + [-87, 19], + [-57, 25], + [-21, 72], + [15, 37], + [1, 22], + [-31, 34], + [-44, 32], + [-13, 28], + [8, 20], + [52, -11], + [63, -4], + [59, -29], + [13, -18], + [20, -2], + [34, 13] + ], + [ + [7945, 33833], + [41, -14], + [47, 45], + [21, -11], + [24, 4], + [53, 53], + [14, -35], + [-7, -23], + [22, -9], + [29, 7], + [23, -18], + [31, -47], + [-27, -12], + [-58, 3], + [-19, -12], + [-32, 9], + [-63, 34], + [-34, -17], + [-50, 7], + [-20, 26], + [5, 10] + ], + [ + [9654, 31910], + [30, 11], + [43, -30], + [86, -46], + [54, -67], + [-27, -22], + [-59, -10], + [-67, 19], + [-11, 10], + [-52, 16], + [-36, 36], + [-26, 79], + [32, -19], + [33, 23] + ], + [ + [9879, 33737], + [-27, 14], + [7, 15], + [23, -2], + [-3, -27] + ], + [ + [11551, 30939], + [-21, 27], + [-28, 98], + [-18, 32], + [-24, 29], + [-25, 98], + [-17, 18], + [-19, -1], + [2, 41], + [21, 12], + [35, -5], + [20, -23], + [10, -47], + [35, -64], + [21, -25], + [60, -93], + [21, -26], + [46, -36], + [26, -35], + [143, -142], + [31, -44], + [-14, -5], + [-36, 12], + [-27, -2], + [-58, -59], + [-5, 16], + [-31, 35], + [-58, 53], + [-22, 7], + [-15, 18], + [-20, 43], + [0, 19], + [-33, 49] + ], + [ + [11597, 32337], + [27, -9], + [14, 6], + [60, -49], + [41, -4], + [77, -44], + [26, -7], + [6, -48], + [102, -132], + [13, -39], + [-3, -25], + [-22, -24], + [-16, -5], + [-33, 16], + [-32, 25], + [-27, 12], + [-52, 2], + [-70, -6], + [-47, 19], + [-30, 46], + [-13, 31], + [19, 75], + [-12, 65], + [-7, 20], + [-28, 11], + [-23, -5], + [-13, 21], + [-27, 10], + [-39, -3], + [-23, 15], + [-9, 23], + [-34, 47], + [15, 17], + [77, 1], + [26, -15], + [57, -47] + ], + [ + [4305, 43447], + [-30, -1], + [-22, 22], + [29, 28], + [18, -6], + [5, -43] + ], + [ + [3197, 43062], + [17, 15], + [14, -21], + [-6, -19], + [-21, 4], + [-4, 21] + ], + [ + [4379, 43381], + [16, 14], + [21, -45], + [-25, -8], + [-12, 39] + ], + [ + [968, 53907], + [206, -4], + [520, -3], + [367, 11], + [234, 1], + [281, -3], + [217, 12], + [142, 10], + [204, -12], + [82, 0], + [682, 4], + [248, 9], + [229, 3], + [165, -4], + [240, -1], + [297, -9], + [580, -9], + [202, -4], + [271, -4], + [187, -1], + [335, -1], + [222, -8], + [290, 1], + [348, 0], + [756, -1], + [534, 3] + ], + [ + [8807, 53897], + [-1, -2045], + [1, -784], + [6, -942], + [0, -599], + [-2, -481], + [-7, -734], + [-1, -148], + [-3, -699], + [-5, -333], + [0, -222], + [9, -570], + [180, -167], + [589, -551], + [255, -239], + [227, -216], + [377, -357], + [706, -676], + [592, -579], + [723, -707], + [386, -380], + [617, -617], + [623, -629], + [308, -311], + [954, -981], + [727, -758], + [343, -361], + [416, -438], + [79, -83], + [448, -480], + [251, -268], + [206, -223], + [28, -28], + [410, -444], + [225, -246], + [319, -347] + ], + [ + [18632, 30493], + [-1388, -130], + [-764, -78], + [-428, -46], + [-529, -56], + [-1367, -156], + [-16, 105], + [1, 54], + [-12, 76], + [-38, 84], + [-38, 53], + [-31, 18], + [-30, -2], + [-20, -12], + [-23, -30], + [-19, -5], + [-17, 78], + [-4, 65], + [9, 68], + [-4, 86], + [-12, 41], + [-37, 48], + [-2, 44], + [16, 30], + [16, -7], + [17, 27], + [8, 37], + [-5, 66], + [-11, 78], + [-38, 205], + [-24, 56], + [-30, 101], + [-10, 47], + [-25, 72], + [-63, 118], + [-74, 113], + [-81, 139], + [-45, 70], + [-67, 95], + [-78, 80], + [-45, 34], + [-45, 19], + [-22, 50], + [-44, 61], + [-26, 26], + [-73, 53], + [-12, -20], + [-45, 17], + [-21, 57], + [-65, 83], + [-43, 64], + [-55, 27], + [-48, 54], + [-68, 47], + [-43, 18], + [-51, 15], + [-25, 37], + [-112, 86], + [-54, 56], + [-65, 88], + [-45, 47], + [-23, 11], + [-59, 48], + [-45, 18], + [-44, 7], + [-13, -35], + [12, -80], + [-49, -2], + [-95, -33], + [-72, 12], + [-37, 11], + [-70, 49], + [-11, 12], + [-45, 11], + [-22, -14], + [-27, 16], + [-32, 82], + [44, 65], + [20, 10], + [5, 28], + [-1, 64], + [-39, 109], + [-55, 142], + [-34, 73], + [-44, 72], + [-34, 45], + [-31, 30], + [-44, 28], + [-49, 8], + [-64, -7], + [-11, -6], + [-109, 6], + [-21, -14], + [-50, -10], + [-49, 8], + [-23, -1], + [-72, -27], + [-40, -51], + [-66, 66], + [-26, 17], + [-77, 13], + [-60, 16], + [-18, -6], + [-31, 12], + [-43, 30], + [-50, 16], + [-61, 42], + [-61, 19], + [-34, 20], + [-18, 2], + [-22, -12], + [-38, 14], + [-109, 98], + [-27, 14], + [-24, 4], + [-39, 75], + [-37, 95], + [-16, 54], + [-8, 46], + [-16, 35], + [-23, 20], + [-21, -5], + [-20, 7], + [-46, 38], + [-21, 35], + [-40, 38], + [-37, -3], + [-70, 87], + [-15, 8], + [-47, 46], + [-21, 3], + [-71, 27], + [-49, 24], + [-42, 45], + [-106, 19], + [-41, -13], + [-19, 4], + [-43, -3], + [-30, -10], + [-7, -23], + [-32, -20], + [-38, 2], + [-30, 17], + [-75, 33], + [-17, 4], + [-76, -4], + [-33, -20], + [-38, 2], + [-95, 64], + [-58, 3], + [-29, 24], + [-68, 39], + [-57, 8], + [-22, -5], + [-70, -3], + [-56, 24], + [-42, 9], + [-79, -7], + [-78, 0], + [-23, -6], + [-84, 0], + [-23, 6], + [-12, -9], + [-74, -21], + [-187, -18], + [-18, -11], + [-37, 2], + [-9, 69], + [-26, 37], + [-39, 83], + [-25, 21], + [-105, 65], + [-51, -1], + [-26, -6], + [-28, 30], + [-15, 38], + [10, 59], + [28, 76], + [43, 145], + [1, 44], + [-25, 53], + [-21, 19], + [-21, 45], + [27, 94], + [25, 125], + [-1, 39], + [-11, 22], + [-43, 34], + [-6, 35], + [-9, 17], + [-44, 8], + [58, 249], + [12, 76], + [6, 72], + [-2, 102], + [-9, 55], + [-28, 61], + [-21, 14], + [-24, -1], + [-44, 46], + [-29, 12], + [-37, 6], + [-38, -9], + [-11, -38], + [-34, 23], + [-13, 22], + [-36, 19], + [-77, 49], + [-18, 5], + [-31, 48], + [-44, 56], + [14, 76], + [18, 41], + [23, 83], + [8, 50], + [1, 35], + [-7, 82], + [-6, 25], + [-29, 68], + [-22, 31], + [-21, 17], + [-72, -6], + [-43, 34], + [-63, 1], + [-41, 61], + [-51, 57], + [-13, 6], + [-77, 99], + [-46, 111], + [-33, 33], + [-43, 74], + [-41, 20], + [-12, -6], + [-104, 40], + [-63, 44], + [-9, 38], + [-46, 61], + [-2, 99], + [-31, 77], + [-45, 53], + [-59, 49], + [-34, 53], + [-12, 27], + [-49, 29], + [-43, 47], + [-2, 48], + [-17, 39], + [-25, 127], + [-32, 76], + [-15, 16], + [-38, 19], + [-80, 27], + [-29, 64], + [-5, 37], + [-26, 18], + [-22, 39], + [-20, 68], + [-94, 129], + [-69, 74], + [-117, 82], + [-32, 17], + [-31, 0], + [-41, 42], + [-6, 24], + [-24, 44], + [-42, 28], + [-26, 35], + [-11, 38], + [3, 57], + [-23, 45], + [6, 60], + [-7, 41], + [-16, 15], + [-6, 27], + [5, 28], + [-20, 70], + [-21, 47], + [-9, 33], + [6, 53], + [-11, 39], + [35, 8], + [-13, 88], + [-18, 16], + [-28, -5], + [-28, 23], + [4, 23], + [53, 89], + [6, 40], + [27, 2], + [63, -64], + [2, -19], + [33, 7], + [20, 17], + [34, 48], + [32, 68], + [20, 65], + [14, 79], + [2, 91], + [33, 136], + [-6, 28], + [-34, 84], + [-34, 78], + [-64, 131], + [-33, 47], + [-49, 48], + [-44, 23], + [-18, 0], + [-22, -17], + [-40, -44], + [-20, 12], + [-53, 15], + [-21, -6], + [-7, -28], + [-73, -7], + [-74, 19], + [-64, 48], + [-27, 15], + [-59, 57], + [-36, 26], + [-86, 115], + [-15, 33], + [-45, 74], + [-40, 37], + [-58, 2], + [-1, 47], + [-12, 21], + [-29, 29], + [-13, 43], + [-23, 21], + [-21, 5], + [-27, 32], + [-4, 60], + [-16, 34], + [-5, 39], + [13, 44], + [19, 180], + [1, 56], + [-16, 39], + [-26, 45], + [-38, 109], + [-4, 65], + [-12, 48], + [-37, 50], + [-40, -21], + [-10, 8], + [-33, 66], + [-5, 40], + [11, 38], + [-8, 60], + [1, 36], + [30, 23], + [8, 32], + [5, 80], + [-5, 107], + [-18, 94], + [-10, 120], + [-5, 24], + [17, 19], + [37, 6], + [14, 51], + [27, -16], + [70, 16], + [34, 2], + [18, -15], + [24, -38], + [17, -140], + [36, -14], + [-9, -37], + [-17, 7], + [-42, -26], + [10, -71], + [25, -43], + [-2, -25], + [-22, -10], + [2, -27], + [39, -29], + [18, -26], + [-6, -12], + [-27, 7], + [-10, -21], + [34, -33], + [80, -4], + [3, -18], + [18, -21], + [81, -6], + [34, -38], + [56, -49], + [33, -3], + [3, -38], + [49, -46], + [24, -7], + [29, 17], + [23, -20], + [30, 19], + [-1, 54], + [-31, 80], + [-16, 17], + [-18, 53], + [3, 31], + [-14, 101], + [-19, 68], + [-76, 76], + [-18, 2], + [-62, 59], + [-20, 44], + [1, 14], + [27, 22], + [-40, 28], + [-55, 14], + [-69, 34], + [-5, 65], + [19, 34], + [36, 18], + [5, 44], + [-17, 66], + [1, 48], + [-26, 33], + [-20, 7], + [-42, 0], + [-10, -11], + [-30, 2], + [-20, 13], + [-2, 31], + [-43, 37], + [-31, 65], + [28, 0], + [29, -18], + [60, 56], + [10, 30], + [-13, 45], + [18, 5], + [36, -15], + [35, 23], + [38, -5], + [32, 30], + [39, 55], + [0, 17], + [-19, 58], + [-19, 21], + [-35, 57], + [-24, 25], + [-96, 66], + [-69, 23], + [-12, -36], + [-55, -49], + [-29, 5], + [-55, -10], + [-13, -17], + [14, -92], + [-15, -38], + [-14, -61], + [3, -33], + [31, -29], + [34, -11], + [19, -18], + [8, -29], + [-15, -15], + [-29, 7], + [-34, -43], + [9, -68], + [-26, 4], + [-6, -26], + [17, -18], + [29, -8], + [11, -40], + [25, -22], + [19, -2], + [19, -31], + [-22, -25], + [-22, -6], + [-35, 12], + [-4, -24], + [12, -79], + [-13, -15], + [-41, -11], + [-34, 6], + [-47, 29], + [-23, 39], + [-43, 19], + [-31, 40], + [-48, 28], + [-24, 28], + [-31, 18], + [-48, 5], + [-38, -32], + [-46, 28], + [-18, 53], + [-33, 25], + [-21, 6], + [-32, 34], + [-26, 63], + [-45, 51], + [-65, 51], + [-48, 21], + [-107, 17], + [-32, -8], + [-29, -22], + [-18, -40], + [14, -30], + [-92, 6], + [23, 22], + [36, 97], + [59, 179], + [16, 65], + [6, 39], + [-9, 55], + [-22, 28], + [-5, 39], + [-44, 78], + [9, 11], + [34, 13], + [3, 20], + [-19, 43], + [-17, 14], + [-33, 60], + [-37, 34], + [-27, 8], + [-23, -8], + [-5, -28], + [-19, 7], + [-20, 51], + [11, 32], + [1, 62], + [-32, 78], + [-34, 63], + [-35, 55], + [-12, 33], + [-31, 23], + [-39, 39], + [-67, 49], + [-88, 42], + [-70, 73], + [-18, 9], + [-65, 55], + [-21, 62], + [-12, 17], + [-41, 27], + [-14, 37], + [-49, 87], + [-50, 77], + [-17, 32], + [-37, 43], + [-53, 39], + [-46, 24], + [-19, 30], + [-16, 37], + [-16, 21], + [-56, 54], + [-26, 12], + [-26, 28], + [-10, 22], + [-62, 54], + [-16, 4], + [-14, 50], + [-9, 18], + [-53, 53], + [-41, 50], + [-28, 10], + [-2, 48], + [-23, 45], + [18, 6], + [33, 52], + [27, 69], + [13, 67], + [-8, 66], + [-36, 129], + [-15, 43], + [-27, 36], + [-11, 64], + [-35, 67], + [-9, 5], + [-17, 47], + [-5, 63], + [-19, 68], + [-30, 37], + [1, 33], + [-15, 53], + [5, 29], + [-25, 49], + [-8, 63], + [8, 28], + [0, 68], + [14, 100], + [35, 115], + [22, 44], + [32, 109], + [-1, 18], + [-38, 113], + [10, 43], + [-8, 97], + [-11, 61], + [-29, 67], + [-40, 31], + [-16, 74], + [2, 60], + [-5, 49], + [-22, 92], + [-56, 34], + [-48, 44], + [-42, 118], + [-46, 32], + [-15, 38], + [-32, 63], + [-29, 27], + [-75, 101], + [-38, 28], + [-30, -4], + [-14, 18], + [-1, 91], + [-12, 32], + [-44, 64], + [-55, 31], + [-57, 20], + [-32, 16], + [-50, 77], + [-30, 27], + [-51, 32], + [-71, 62], + [-45, 44], + [-13, 28], + [-29, 16], + [-37, 43], + [-1, 39], + [30, 97], + [-10, 42], + [-18, 47], + [-5, 63], + [-15, 45], + [-34, 36], + [-20, 38], + [-13, 40], + [24, 61], + [22, 70], + [-4, 38], + [14, 45], + [29, 65], + [64, 171], + [31, 63], + [44, 97], + [76, 140], + [37, 86], + [49, 90], + [47, 97], + [34, 82], + [40, 125], + [35, 161], + [11, 98], + [-25, 51], + [-23, 15], + [-29, -2], + [-2, 85], + [-11, 30], + [3, 58], + [-12, 19], + [13, 34], + [27, 4], + [40, 114], + [29, 100], + [1, 28], + [26, 119], + [37, 220], + [17, 163], + [-5, 77], + [-18, 80], + [-11, 24], + [-1, 92], + [-19, 15], + [-16, 39], + [7, 41], + [-7, 43], + [-25, 36], + [-11, 60], + [-28, 42], + [-15, 131], + [-20, 50], + [-20, 28], + [-23, 15], + [-26, -25], + [-23, 28], + [-67, 60], + [-17, 1], + [-14, 30], + [21, 23], + [27, 67], + [20, 70], + [21, 105], + [9, 133], + [-3, 107], + [-12, 38] + ], + [ + [38481, 51391], + [363, 1], + [528, 0], + [394, 1], + [530, 1], + [141, 0], + [254, -1], + [171, 1], + [404, -1], + [494, 0], + [446, 1], + [1, -638], + [-1, -534], + [0, -366], + [-1, -617], + [1, -367] + ], + [ + [42206, 48872], + [0, -386], + [2, -440], + [2, -345], + [0, -291], + [2, -304], + [3, -646], + [3, -589], + [0, -363], + [0, -414], + [0, -306], + [1, -339], + [1, -812], + [2, -314], + [3, -311], + [-1, -366], + [0, -317], + [0, -144], + [0, -532], + [-1, -375] + ], + [ + [42223, 41278], + [-264, 1], + [-318, 2], + [-401, 2], + [-567, 11], + [-208, -3], + [-28, 4] + ], + [ + [40437, 41295], + [-156, 0], + [-1204, -5], + [-511, -4], + [-1348, -7], + [-500, -1], + [-224, 6], + [-185, -1], + [-422, 2], + [-335, -1], + [-170, 1], + [-517, -1], + [-468, -3], + [-425, -2], + [-262, -2], + [-109, 1], + [-361, -2], + [-244, 19], + [-782, 0], + [-113, 0], + [-1501, -1], + [-169, 0], + [-449, -1], + [-622, -1], + [-169, 1] + ], + [ + [29191, 41293], + [1, 285], + [-2, 663], + [8, 393], + [-1, 220], + [1, 241], + [0, 309], + [-3, 349], + [2, 458], + [-33, 302], + [0, 567], + [1, 555], + [10, 465], + [1, 97], + [4, 460], + [0, 610], + [0, 330], + [0, 411], + [1, 1005], + [0, 413], + [2, 801], + [3, 287], + [-4, 876] + ], + [ + [29182, 51390], + [1488, -2], + [618, 5], + [1118, 2], + [590, 2], + [266, -1], + [752, -3], + [125, -2], + [122, -5], + [483, -6], + [616, 0], + [844, 3], + [621, 0], + [113, 0], + [717, 9], + [526, 0], + [300, -1] + ], + [ + [98503, 53931], + [9, -421], + [9, -294], + [0, -322], + [-15, -455], + [-39, 8], + [-39, -19], + [-5, -43], + [16, -27], + [4, -101], + [-15, -25], + [-37, -31] + ], + [ + [98391, 52201], + [-16, 22], + [-34, 14], + [-57, -11], + [-36, 15], + [-17, -1], + [-21, -20], + [-27, -13], + [-20, 13], + [-12, -23], + [-62, -10], + [-117, 7], + [-51, -51], + [-41, 0], + [-51, 28], + [-30, 31], + [-25, 1], + [-22, -25], + [-2, -35], + [-17, -20], + [-23, 19], + [-49, -1], + [1, -21], + [-19, -18], + [-105, -13], + [-30, 13], + [-27, -14], + [1, -20], + [-72, -20], + [-22, 42], + [-100, 2], + [-38, -23], + [-24, 2], + [-39, -27], + [-50, 7], + [-26, -31], + [-44, 44], + [-23, 9], + [-27, -7], + [-36, 8], + [-68, -15], + [-35, 3], + [-23, -24], + [-18, -32], + [-30, -1], + [-3, 24], + [-19, 13], + [-19, -11], + [-41, 30], + [-59, -5], + [-60, -32], + [-15, 12], + [-39, 0], + [-12, -23], + [-51, -13], + [-42, 12], + [19, 32], + [-27, 58], + [-22, -8], + [-1, -28], + [-28, -26], + [-49, -17], + [-45, -46], + [-53, -74], + [-14, 8], + [-53, 7], + [-53, -41], + [-49, -55], + [-10, -54], + [-36, -10], + [-74, 35], + [-14, 15], + [-47, -21], + [-47, -39], + [-13, 3], + [-24, -44], + [-27, -23], + [-45, 27], + [-18, -6], + [-29, -24], + [-35, -16], + [-77, -15], + [-37, -41], + [-15, -3], + [-25, -33], + [-40, -42], + [-29, 1], + [-33, -15], + [-17, -38], + [-30, 30], + [-43, -23], + [0, -24], + [-11, -25], + [-16, 6], + [-8, 25], + [-30, -19], + [-30, -34], + [-4, -23], + [-26, -2], + [-2, 24], + [-35, 12], + [-74, -33], + [-26, -43] + ], + [ + [95045, 51350], + [5, 67], + [-29, 47], + [-107, 178], + [164, 103], + [292, 180], + [-127, 208], + [12, 179], + [13, 171], + [14, 235], + [16, 225], + [31, 525], + [33, 568] + ], + [ + [95362, 54036], + [359, -6], + [120, -6], + [328, -12], + [353, -6], + [94, -3], + [-6, -98], + [93, 14], + [17, 45], + [3, 38], + [111, 2], + [556, -9], + [487, -8], + [141, -7], + [482, -10], + [3, -39] + ], + [ + [88602, 46176], + [147, 153], + [244, -258], + [-171, -180], + [-69, -76] + ], + [ + [88753, 45815], + [13, 149], + [-17, 53], + [-51, 72], + [-41, 11], + [-20, 17], + [-35, 59] + ], + [ + [75199, 36220], + [358, -3], + [360, 0], + [489, -1], + [99, 13], + [132, 1], + [123, 3], + [697, 18] + ], + [ + [77457, 36251], + [-64, -192], + [-186, -119], + [-45, -113], + [-30, -29], + [-76, -82], + [-28, -120], + [-25, -64], + [3, -36], + [24, -35], + [87, -87], + [94, -73], + [137, -60], + [-5, -21], + [154, -193], + [27, -29], + [71, -52], + [52, -23], + [50, 21], + [76, 8], + [68, 0], + [36, -18], + [15, -25], + [49, -114], + [174, -373], + [25, -116], + [-5, -13], + [5, -37], + [18, -80], + [27, -71], + [25, -24], + [50, -23], + [17, -29], + [17, -42], + [34, -38], + [142, -335], + [252, -227], + [11, -5], + [36, 4], + [147, -114], + [43, -46], + [101, -125], + [53, -167], + [41, -140], + [32, -37], + [83, -63], + [19, 0], + [48, -12], + [56, -28], + [42, -29], + [148, -210], + [101, -181], + [18, -196], + [94, -211], + [289, -330], + [143, -54], + [146, -125], + [56, -54], + [28, -36], + [10, -29], + [-6, -49], + [-10, -39], + [142, -387], + [35, -160], + [-19, -276], + [-7, -21], + [13, -27], + [42, -58], + [76, -66], + [36, -21], + [20, -3], + [80, -52], + [142, -182], + [58, -249], + [50, -48], + [12, -20], + [23, -91], + [3, -50], + [-14, -24], + [11, -288], + [9, -112], + [7, -11], + [96, -64], + [35, -8], + [293, -126] + ], + [ + [81594, 28767], + [49, -28], + [30, 1], + [5, -32], + [-15, -58], + [-27, -48], + [-37, -26], + [-27, -25], + [-26, -14], + [-33, 3], + [-2, 30], + [-34, 1], + [-44, -40], + [-7, -44], + [14, -20], + [26, -10], + [24, 3], + [13, -10], + [-24, -33], + [-45, -46], + [-39, -51], + [-14, -2], + [-27, 27], + [-50, 22], + [-44, 2], + [12, -48], + [-8, -33], + [-25, -22], + [1, -18], + [35, -16], + [32, 1], + [6, -26], + [-20, -25], + [-39, -86], + [-16, -19], + [-38, -21], + [-62, -76], + [-14, -5], + [-42, 18], + [-60, 13], + [-20, -35], + [33, -45], + [46, -25], + [18, 17], + [23, 4], + [15, -10], + [-10, -53], + [9, -51], + [-3, -79], + [-31, -75], + [-19, -59], + [-24, -36], + [-11, -1], + [-13, 31], + [-34, 1], + [-19, -27], + [-49, -13], + [-25, 9], + [-11, -19], + [-7, -40], + [10, -9], + [76, -4], + [34, 26], + [33, -25], + [8, -27], + [-23, -34], + [-28, -77], + [-78, -127], + [-22, -46], + [-38, -94], + [-7, -103], + [27, -6], + [25, -22], + [-11, -29], + [-26, -36], + [-4, -88], + [-11, -26], + [-12, -48], + [2, -36], + [-10, -12], + [-38, 4], + [-47, -53], + [-29, -50], + [-11, -28], + [2, -17], + [-16, -32], + [-35, -9], + [-24, 3], + [-7, -69], + [4, -86], + [-25, -116], + [-10, -26], + [-27, 3], + [-31, -6], + [-33, -49], + [-40, -28], + [-5, -19], + [12, -20], + [21, -9], + [17, 13], + [24, -14], + [12, -22], + [38, 0], + [12, 44], + [22, 9], + [9, -50], + [-3, -125], + [-43, -182], + [-34, -65], + [-16, -49], + [-9, -53], + [1, -71], + [19, -66], + [10, -15] + ], + [ + [80555, 25424], + [-187, 7], + [-115, 14], + [-34, 46], + [-24, -6], + [-154, 27], + [-23, 13], + [-16, 32], + [-34, 22], + [-88, 47], + [-63, -9], + [-52, 16], + [-70, 74], + [-174, -85], + [-44, -16], + [-51, -267], + [2, -53], + [22, -55], + [46, -95], + [14, -81], + [-21, -112], + [1, -55], + [-63, -341], + [-139, 11], + [-75, -22], + [-12, 5], + [-34, 41], + [-27, 64], + [-11, 58], + [8, 78], + [-12, 111], + [-4, 171], + [-81, 11], + [-217, 19], + [-362, 30], + [-241, 19], + [-335, 27], + [-480, 38], + [-321, 26], + [-150, 12], + [-413, 30], + [-370, 27], + [-130, 10], + [-378, 26], + [-368, 23], + [-472, 28], + [-614, 38], + [-58, 99], + [-85, 347], + [-33, 57], + [-45, 62], + [-28, 91], + [-7, 74] + ], + [ + [73933, 26158], + [6, 33], + [-57, 208], + [-11, 30], + [-76, 123], + [-29, 9], + [-15, 13], + [-14, 53], + [-8, 181], + [20, 63], + [25, 64], + [37, 300], + [50, 286], + [-30, 196], + [-55, 56], + [-72, 137], + [-2, 55], + [14, 40], + [-11, 87], + [-30, 40], + [-1, 143], + [16, 122], + [49, 68], + [46, 75], + [18, 50], + [41, 150], + [-11, 98], + [15, 200], + [97, 108], + [58, 25], + [80, 97], + [24, 76], + [-14, 45], + [-41, 49], + [-118, 54], + [-12, 37], + [39, 112], + [15, 79], + [-8, 84], + [-27, 61], + [-6, 109], + [-11, 27], + [-28, 48], + [-41, 42], + [-47, 62], + [-20, 49], + [-45, 99], + [-19, 108], + [-42, 151], + [10, 48], + [16, 20], + [-113, 248], + [-70, 467], + [-28, 186], + [-106, 754], + [-82, 567], + [-45, 305], + [-69, 480], + [-42, 295], + [-76, 518], + [-74, 474], + [-22, 129], + [-51, 332], + [-21, 130], + [-57, 384], + [-22, 161], + [-19, 152] + ], + [ + [72811, 36210], + [449, -3], + [161, 4], + [181, 3], + [251, 2], + [197, 2], + [245, 0], + [347, 1], + [208, 0], + [214, 0], + [135, 1] + ], + [ + [68726, 55152], + [5, -51], + [-10, -129], + [-4, -90], + [-29, -59], + [-19, -79], + [-7, -72], + [12, -80], + [30, -96], + [23, -60], + [109, -201], + [31, -52], + [26, -31], + [53, -50], + [20, -44], + [5, -73], + [71, -243], + [12, -73], + [23, -34], + [-9, -21], + [1, -34], + [13, -59], + [16, -47], + [37, -57], + [8, -46], + [29, -50], + [34, -35], + [22, -10], + [12, -61], + [1, -40] + ], + [ + [69241, 53175], + [-2, -14], + [0, -352], + [-1, -277], + [-3, -392], + [1, -333], + [0, -356], + [1, -431], + [0, -296], + [-1, -508], + [-1, -185], + [-6, -534], + [-2, -259], + [-2, -344], + [-2, -324], + [1, -551], + [3, -576], + [-1, -224], + [-23, 13], + [-76, -39], + [-35, -60], + [-12, -79], + [9, -54], + [22, -34], + [11, 4], + [-32, -159], + [-44, -72], + [-25, -1], + [-18, -16], + [-13, -37], + [81, -84], + [79, -115], + [113, -259], + [-13, -79], + [-17, -38], + [-24, -30], + [-23, -83], + [5, -10], + [46, -27], + [57, -166], + [-6, -61], + [-39, -156], + [-22, -33], + [-16, -12], + [-73, -17], + [-39, -25], + [-37, -58], + [-14, -81], + [-45, -99], + [-34, -58], + [26, -59], + [-175, -300], + [-210, -310], + [-114, -55], + [-51, -47], + [-18, -63], + [4, -28], + [34, -56], + [47, -20], + [8, -28], + [-31, -53], + [-27, -24], + [-59, -25], + [-73, -46], + [-54, -145], + [2, -22], + [53, -153], + [-1, -209], + [-14, -15], + [-64, 8], + [-30, 11], + [41, -127], + [40, -43], + [0, -73] + ], + [ + [68303, 43312], + [-32, -93], + [-27, -50], + [-24, -24], + [-93, -59], + [-54, -87], + [-16, -45], + [6, -62], + [31, -117], + [13, -31], + [22, -15], + [91, -100], + [17, -32], + [1, -67], + [-38, -40], + [-320, -42], + [-49, -11], + [-58, -30], + [-33, -29], + [-52, -61], + [-94, 51], + [-57, -22], + [-31, -20], + [-26, -31], + [-12, -24], + [-71, -242], + [-2, -17], + [12, -55], + [70, -106], + [24, -17], + [21, -25], + [43, -129], + [-38, -136], + [-26, -63], + [-45, -16], + [-58, -5], + [-58, 12], + [-58, 40], + [-24, 35], + [-68, 50], + [-341, 176], + [-201, 88], + [-30, 2], + [-62, 12], + [-64, -14], + [-75, -54], + [-84, -94], + [-152, -231], + [-14, -30], + [-13, -63], + [7, -41], + [23, -44], + [63, -54] + ], + [ + [66247, 41250], + [-69, -30], + [-29, 8], + [-40, 23], + [-36, 7], + [-65, -7], + [-58, 24], + [-160, 120], + [-13, 39], + [-54, 177], + [-99, 235], + [-92, 161], + [-3, 18], + [12, 54], + [43, 57], + [27, 12], + [50, 6], + [21, 10], + [15, 30], + [13, 79], + [-9, 50], + [-25, 75], + [-21, 33], + [-46, 54], + [-31, 57], + [-46, 109], + [-9, 50], + [1, 55], + [17, 14], + [10, 102], + [-16, 117], + [-290, 328], + [-128, 115], + [-195, 148], + [-34, -22], + [-34, -43], + [-38, -25], + [-40, 2], + [-51, 27], + [-43, 92], + [-2, 22], + [-42, 93], + [-140, 135], + [-100, 62], + [-217, 180], + [-170, 195], + [-37, 60], + [-18, 57], + [-19, 115], + [3, 104], + [3, 26], + [37, 105], + [9, 17], + [94, 113], + [19, 42], + [11, 73], + [36, 141], + [21, 42], + [45, 75], + [53, 50], + [22, 43], + [12, 56], + [-6, 66], + [-10, 38], + [-42, 71], + [-6, 22], + [4, 36], + [72, 102], + [90, 80], + [10, 19], + [16, 80], + [-8, 30], + [-209, 151], + [-46, 26], + [-290, 109], + [-83, 13], + [-40, -22], + [-19, -37], + [-8, -46], + [-38, -59], + [-68, -70], + [-42, -15], + [-32, 0], + [-77, 50], + [-60, 79], + [-12, 20], + [-89, 300], + [-2, 25], + [55, 79], + [4, 31], + [-86, 380], + [-5, 12], + [-130, 144], + [-79, 73], + [-76, 52], + [-206, 153], + [-91, 73], + [-216, 255], + [-18, 30], + [-18, 84], + [-96, 57], + [-222, 231], + [-35, 42], + [-4, 40], + [8, 82], + [-126, 159], + [-25, 76], + [-25, 277], + [-65, 144], + [-29, 229], + [-5, 134], + [13, 134], + [30, 130], + [52, 143], + [32, 52], + [48, 38] + ], + [ + [61992, 49819], + [57, 17], + [24, 17], + [6, 24], + [16, 224], + [-10, 57], + [-29, 46], + [-36, 21], + [-2, 39], + [84, 119], + [21, 20], + [79, 42], + [99, 29], + [65, 2], + [58, -3], + [91, 59], + [29, 25], + [20, 66], + [32, 255], + [-5, 26], + [8, 32], + [155, 201], + [21, 19], + [55, 28], + [11, 15], + [20, 73], + [19, 203], + [-7, 69], + [-7, 27], + [5, 61], + [-80, 149], + [-29, 25], + [-25, -2], + [-58, 33], + [-118, 160], + [-1, 22], + [123, 406], + [37, 32], + [71, 21], + [265, 58], + [114, -5], + [27, -6], + [63, -1], + [153, 30], + [92, 81], + [198, 60], + [47, 4], + [24, 10], + [118, 123], + [105, 124], + [-3, 67], + [16, 79], + [36, 139], + [24, 39], + [44, 44], + [105, 65], + [64, 25], + [11, 10], + [57, 313], + [20, 164], + [-1, 33], + [-18, 51], + [-25, 40], + [-7, 77], + [9, 30], + [2, 69], + [-10, 19], + [-81, 80], + [-44, 28], + [-133, 64], + [-80, 34], + [-14, 3], + [-64, 51], + [-52, 73], + [-22, 60], + [12, 38], + [15, 71], + [-5, 18], + [-108, 139], + [-153, 119], + [-121, 71], + [-55, 49], + [-4, 34], + [28, 42] + ], + [ + [63440, 55194], + [159, -2], + [119, 0], + [160, -2], + [582, 3], + [310, -6], + [482, -2], + [269, -8], + [300, -4], + [206, -5], + [335, -5], + [146, 0], + [97, -3], + [433, -4], + [373, 4], + [167, -1], + [271, 1], + [133, 3], + [280, -2], + [146, -3], + [318, -6] + ], + [ + [74272, 46608], + [-20, -9], + [-108, -90], + [-15, -23], + [15, -41], + [74, -101], + [111, -293], + [7, -39], + [-51, -179], + [-58, -29], + [-186, -30], + [-54, 10], + [-42, -6], + [-195, -126], + [-11, -15], + [-60, -55], + [-63, -28], + [-31, -1], + [-44, 20], + [-24, 25], + [-38, 67], + [-23, 15], + [-57, 12], + [-226, -14], + [-43, -19], + [-34, -51], + [-9, -51], + [33, -199], + [44, -118], + [0, -43], + [-14, -37], + [-18, -20], + [-55, -28], + [-270, -185], + [-24, -41], + [-23, -69], + [-10, -39], + [-1, -48], + [-28, -86], + [-40, -65], + [-16, -15], + [-114, -72], + [-30, 14], + [-23, 34], + [-33, 6], + [-46, -14], + [-25, -15], + [-127, -234], + [-21, -58], + [-1, -53], + [8, -73], + [-2, -63], + [-30, -145], + [-15, -26], + [-39, -33], + [-145, -32], + [-266, 43], + [-12, 4], + [-77, 42], + [-87, 73], + [-12, 27], + [-10, 55], + [1, 33], + [13, 70], + [-24, 33], + [-48, 3], + [-25, -14], + [-17, -22], + [-123, -61], + [-59, -69], + [-5, -29], + [-36, -42], + [-27, -10], + [-84, -6], + [-18, -15], + [-6, -26], + [-1, -151], + [-148, -277], + [-55, -37], + [-39, -3], + [-9, 57], + [-91, 82], + [-17, -11], + [-25, 3], + [-36, 47], + [-36, 69], + [-32, 78], + [-14, 45], + [-38, 25], + [-15, 0], + [-60, -30], + [-54, -58], + [-33, -45], + [-31, -24], + [-111, -17], + [-58, -26], + [-44, -33], + [-23, -43], + [4, -48], + [-26, -109], + [-19, -54], + [-17, -25], + [-25, -21], + [-38, -13], + [-33, 8], + [-7, 13], + [-130, 133], + [-113, 74], + [-73, 64], + [-145, 94], + [-42, 17], + [-29, 6], + [-60, -8], + [-113, -89], + [-72, 47], + [-17, 16], + [-24, 41], + [-5, 51], + [-34, 20], + [-15, -8], + [-52, -116], + [16, -50], + [54, -49], + [5, -66], + [-33, -57], + [-16, -17], + [-57, -15], + [-47, 6], + [-15, 20], + [-5, 50], + [35, 75], + [-7, 25], + [-32, 20], + [-146, -32], + [-40, -33], + [-13, -5], + [-74, 2], + [-20, 14], + [-30, 47], + [-15, 36], + [-33, 28], + [-40, -3], + [-60, -82], + [-6, -44], + [24, -41], + [23, -23], + [13, -30], + [8, -50], + [-6, -26], + [-69, -78], + [-50, 17], + [-10, 11], + [-53, 31], + [-23, 5], + [-20, -7] + ], + [ + [69241, 53175], + [6, 4], + [28, -46], + [65, -47], + [14, 6], + [32, -15], + [14, 3], + [11, -26], + [-12, -15], + [29, -29], + [54, -14], + [54, -20], + [76, -16], + [68, -2], + [18, -6], + [107, 11], + [62, 14], + [50, 19], + [0, 20], + [65, 13], + [10, -12], + [101, 41], + [71, 32], + [173, 88], + [48, 44], + [63, 28], + [94, 56] + ], + [ + [70542, 53306], + [344, -1], + [224, -1], + [473, 2], + [256, 1], + [284, -2], + [342, -2], + [342, 0], + [557, 3], + [253, -2], + [247, 1], + [124, -1], + [287, 2], + [23, -43], + [0, -119] + ], + [ + [74298, 53144], + [1, -209], + [3, -448], + [0, -69], + [1, -393], + [0, -412], + [1, -421], + [1, -396], + [1, -94], + [-1, -505], + [-3, -442], + [0, -108], + [-4, -283], + [-4, -174], + [-7, -509], + [-4, -285], + [0, -221], + [-1, -402], + [-2, -227], + [-6, -435], + [-2, -503] + ], + [ + [66745, 23009], + [-46, -87], + [-94, -154], + [-11, 14], + [9, 31], + [39, 49], + [16, 12], + [40, 76], + [31, 73], + [11, 35], + [0, 48], + [12, 37], + [28, 29], + [19, 96], + [-13, 21], + [22, 38], + [6, 106], + [-17, 61], + [-3, 44], + [6, 30], + [-10, 54], + [-14, 45], + [-17, 36], + [4, 17], + [40, -90], + [18, -72], + [13, -91], + [-2, -114], + [-15, -106], + [-12, -58], + [-21, -71], + [-39, -109] + ], + [ + [62463, 31213], + [-67, -108], + [-22, -78], + [10, -38], + [22, -22], + [40, -17], + [28, 0], + [28, 14], + [24, 45], + [2, 102], + [-14, 19], + [8, 23], + [52, 22], + [23, -12], + [14, -20], + [42, -132], + [0, -51], + [-12, -38], + [-30, -39], + [-36, -38], + [-41, -8], + [-32, -31], + [-25, -52], + [-6, -25], + [-5, -67], + [-2, -87], + [21, -23], + [58, 2], + [85, -26], + [31, -13], + [12, -13], + [-18, -49], + [-22, -23], + [-43, -22], + [-36, -28], + [-63, -82], + [-3, -26], + [4, -39], + [19, -47], + [25, -27], + [44, -4], + [25, -53], + [3, -27], + [-16, -21], + [-35, -113], + [1, -43], + [14, -28], + [25, -33], + [46, -34], + [33, -17], + [43, -13], + [66, -75], + [-19, -90], + [8, -26], + [25, -15], + [158, -35], + [6, -22], + [-12, -35], + [-185, -252], + [-4, 22], + [-28, 30], + [-33, 16], + [-13, -3], + [-163, -70], + [-45, -29], + [-11, -13], + [-13, -51], + [-7, -55], + [6, -27], + [16, -29], + [59, -16], + [119, 15], + [38, 16], + [23, -9], + [14, -28], + [-1, -26], + [-14, -32], + [-173, -290], + [-224, -293], + [-84, -25], + [-62, -13], + [-22, -9], + [-13, -21], + [-26, -110], + [-8, -48], + [-2, -70], + [-61, -109], + [-5, -53], + [4, -82], + [-12, -45], + [-32, -17], + [-57, 0], + [-23, -6], + [-19, -18], + [-5, -28], + [1, -47], + [12, -16], + [41, -7], + [44, -13], + [18, -27], + [-14, -32], + [-50, -37], + [-56, -24], + [-58, 6], + [-22, -32], + [14, -178], + [19, -41], + [9, -36], + [-9, -45], + [-16, -36], + [-22, -20], + [-29, -56], + [2, -49], + [38, -66], + [20, -49], + [-12, -34], + [-13, -12], + [-47, -23], + [-50, -8], + [-45, -140], + [-10, -129], + [50, -193], + [24, -28], + [8, -32], + [-5, -28], + [-17, -34], + [-24, -24], + [-97, -52], + [397, -1], + [370, 0], + [306, -1], + [436, 2], + [170, -1], + [311, 1], + [270, 1], + [99, 1], + [381, 2], + [449, 1], + [123, 1], + [194, 0], + [38, 7], + [8, -6], + [-1, -79], + [-30, -131], + [-22, -47], + [-31, -7], + [-31, -116], + [-68, -290], + [-30, -178], + [36, -146], + [30, -92], + [87, -142], + [52, -58], + [14, -2], + [77, -101], + [100, -284], + [0, -46], + [-20, -50], + [-5, -34], + [66, -178], + [50, -78], + [15, -14], + [90, 0] + ], + [ + [65518, 24089], + [-24, -23], + [-47, -7], + [-46, -46], + [-56, 15], + [-44, -45], + [-30, -51], + [-39, -26], + [-10, -81], + [-28, -14], + [-27, -4], + [-27, -16], + [-7, -33], + [28, -54], + [-32, -15], + [-24, 26], + [-31, 24], + [-36, 8], + [-67, -5], + [-40, -48], + [-33, -50], + [10, -67], + [15, -56], + [11, -25], + [38, -29], + [25, -4], + [54, 12], + [50, 21], + [38, 33], + [28, -31], + [-43, -26], + [-19, -20], + [7, -51], + [58, -73], + [36, -26], + [38, -3], + [21, -12], + [42, 3], + [46, 20], + [28, 24], + [13, 39], + [-2, 51], + [17, 37], + [0, 35], + [15, 35], + [1, 61], + [-13, 28], + [18, 13], + [38, 14], + [92, 72], + [14, 17], + [-9, 46], + [11, 33], + [21, 18], + [43, -40], + [26, -6], + [29, -22], + [20, -6], + [86, 12], + [7, -19], + [-7, -26], + [-16, -16], + [-23, -2], + [-42, -23], + [-31, -32], + [0, -74], + [51, -33], + [48, -4], + [1, -112], + [20, -20], + [67, 11], + [31, 18], + [59, 127], + [19, 51], + [43, 22], + [12, -13], + [-11, -55], + [59, -7], + [-11, -27], + [-13, -92], + [-26, 11], + [-34, -1], + [-31, -11], + [-71, -68], + [-8, -27], + [20, -15], + [42, -3], + [31, 16], + [58, 7], + [9, -31], + [-34, -32], + [-28, -11], + [-47, -7], + [-42, -16], + [-85, -13], + [-38, -17], + [1, -22], + [19, -13], + [51, -13], + [5, -54], + [20, -21], + [26, -4], + [46, 36], + [30, 12], + [-13, -31], + [-1, -64], + [29, -23], + [-3, -12], + [-64, 2], + [-20, 10], + [-17, 28], + [-23, 18], + [-31, 5], + [-25, -15], + [-35, 34], + [-15, -10], + [-9, -36], + [-29, -46], + [-25, -27], + [7, -111], + [-44, 14], + [-44, 39], + [-28, 18], + [-36, 15], + [-45, 30], + [-18, 0], + [-38, -20], + [-23, 28], + [-47, 2], + [-67, 14], + [-32, -9], + [3, -75], + [9, -22], + [49, -26], + [36, 10], + [11, -7], + [-12, -30], + [5, -15], + [43, -25], + [31, -10], + [44, 0], + [85, -101], + [2, -25], + [-33, 28], + [-34, 20], + [-23, 23], + [-90, 11], + [-47, 12], + [-23, -1], + [-22, 37], + [-31, 3], + [16, -63], + [0, -31], + [-12, -26], + [-19, -3], + [-32, 6], + [-18, -5], + [-7, -24], + [7, -31], + [25, -37], + [5, -20], + [-30, -43], + [6, -73], + [-34, -27], + [-2, -19], + [13, -19], + [52, -47], + [40, 6], + [17, -8], + [33, -53], + [39, -30], + [13, -47], + [23, -10], + [5, 19], + [48, 62], + [38, -28], + [-7, -73], + [25, -64], + [19, -36], + [39, 18], + [19, 45], + [13, -24], + [24, -21], + [65, -7], + [79, 3], + [45, -25], + [36, -9], + [-21, -33], + [-6, -39], + [51, -14], + [37, 34], + [38, -3], + [20, -13], + [27, -36], + [8, -36], + [24, -32], + [31, 10], + [8, 26], + [28, 36], + [8, 23], + [39, -20], + [2, -32], + [25, -61], + [14, -16], + [32, -14], + [20, -64], + [55, -39], + [8, -31], + [-19, -16], + [-1, -39], + [11, -25], + [18, -16], + [42, 11], + [2, 11], + [71, 31], + [26, -23], + [27, -80], + [-9, -38], + [-15, -4], + [-20, 17], + [-37, -19], + [-6, -12], + [16, -39], + [12, 6], + [15, -19], + [-4, -18], + [-48, -59], + [-6, -57], + [-13, -35], + [-54, -8], + [-26, 17], + [-30, -12], + [-41, -54], + [-24, -48], + [-16, -50], + [-39, 23], + [7, 19], + [-14, 18], + [-24, -2], + [-16, 23], + [-11, 67], + [-16, 28], + [-20, 15], + [-34, -3], + [-4, -24], + [6, -22], + [-11, -17], + [-59, -13], + [-45, -36], + [0, -16], + [-18, -47], + [-25, -3], + [-84, -165], + [-52, -56], + [-15, 11], + [13, 71], + [27, 49], + [43, 21], + [75, 139], + [-10, 30], + [-27, 51], + [-37, 29], + [-58, 7], + [-10, 48], + [3, 55], + [-15, 28], + [-29, 26], + [-27, 74], + [-15, 32], + [-31, 42], + [-20, 18], + [-100, 54], + [-130, 40], + [-121, 93], + [-101, 38], + [-105, 18], + [-70, -2], + [-56, 3], + [-9, 59], + [14, 36], + [23, 25], + [34, 64], + [-5, 50], + [-12, 28], + [-33, 16], + [-3, 32], + [22, 56], + [-2, 35], + [-28, 19], + [-50, -15], + [-48, -30], + [-57, -78], + [-42, -2], + [-17, 15], + [-51, 73], + [-38, -2], + [-37, -90], + [-2, -85], + [7, -13], + [-2, -33], + [-11, -29], + [9, -49], + [-5, -54], + [11, -39], + [27, -11], + [8, -20], + [-12, -27], + [-30, -11], + [-21, 7], + [-25, -3], + [-7, -35], + [-18, -13], + [-30, -8], + [-27, 1], + [9, -48], + [42, -34], + [6, -47], + [51, 8], + [43, 51], + [26, 22], + [67, 38], + [19, 30], + [16, -4], + [-10, -31], + [-122, -95], + [-68, -82], + [-39, -34], + [-46, -50], + [-130, -113], + [-92, -52], + [-16, 7], + [-24, -5], + [-183, -72], + [-12, 17], + [45, 28], + [61, 10], + [74, 37], + [6, 37], + [29, 5], + [0, 47], + [-27, 24], + [-38, 2], + [-21, 8], + [4, 21], + [-35, 52], + [-11, 10], + [4, 53], + [14, 9], + [20, -18], + [13, 2], + [8, 28], + [-28, 53], + [-47, 31], + [0, 47], + [-8, 21], + [-31, 31], + [-64, -7], + [0, -24], + [-10, -15], + [-29, -15], + [8, -44], + [-29, -87], + [-63, -32], + [-20, 19], + [-53, -8], + [9, 25], + [-34, 18], + [-10, 28], + [42, 17], + [11, 56], + [22, 35], + [-41, 23], + [-42, 37], + [-28, 9], + [-29, -37], + [-48, 6], + [-25, 16], + [-32, -23], + [-13, -69], + [10, -14], + [35, -1], + [39, -30], + [0, -16], + [-23, -11], + [-8, -40], + [-27, 7], + [-80, -9], + [-11, 18], + [-18, -4], + [-11, -31], + [-10, -52], + [16, -29], + [-19, -91], + [-57, -25], + [-43, 7], + [-32, -12], + [-25, 16], + [-61, -24], + [-17, -34], + [-49, -32], + [-8, -59], + [10, -23], + [31, -13], + [31, -1], + [28, 10], + [46, 34], + [30, -6], + [13, -10], + [35, 2], + [33, 15], + [49, 15], + [4, -16], + [-20, -10], + [-154, -52], + [-46, -8], + [-78, 2], + [-26, -8], + [-52, 7], + [-10, 24], + [7, 14], + [-7, 33], + [-34, 69], + [-27, 25], + [-15, 31], + [-24, 36], + [-51, 55], + [-30, 24], + [-11, 29], + [-25, 17], + [-37, -24], + [-35, -5], + [-45, 14], + [-14, 19], + [-50, -2], + [-66, 15], + [-39, 51], + [-26, 20], + [-131, 14], + [-37, 12], + [-111, 55], + [-44, 46], + [-60, 83], + [4, 17], + [43, 0], + [33, 14], + [28, 47], + [5, 38], + [14, 41], + [32, 22], + [20, 5], + [30, -28], + [28, 0], + [19, 23], + [-5, 50], + [-34, 44], + [12, 35], + [-18, 39], + [-38, 12], + [-30, 15], + [-4, 38], + [-10, 26], + [-29, 23], + [-25, -12], + [-77, 23], + [-14, 17], + [-5, 30], + [-20, 27], + [-84, -9], + [-34, 10], + [-13, 11], + [-9, 32], + [-28, 30], + [-40, -1], + [-91, -37], + [-25, 5], + [10, 36], + [-7, 32], + [-15, 19], + [-9, 71], + [-21, 97], + [-14, 12], + [-39, 0], + [-34, -16], + [-46, -12], + [-45, 19], + [41, 72], + [1, 57], + [15, 65], + [-6, 62], + [-21, 18], + [-63, 9], + [-82, -18], + [-49, 27], + [-28, -3], + [-58, -19], + [-87, -55], + [-53, -40], + [-41, 19], + [10, 30], + [-8, 51], + [9, 44], + [29, 58], + [9, 61], + [-29, 53], + [-36, 19], + [-33, -13], + [-17, -38], + [-46, 3], + [-38, -17], + [-42, -39], + [-96, -33], + [-39, -23], + [-95, -71], + [-69, -71], + [-9, -48], + [28, -70], + [3, -23], + [39, -97], + [34, -8], + [52, 3], + [33, 12], + [42, 2], + [17, -17], + [30, -14], + [65, -13], + [47, 6], + [19, 21], + [13, 36], + [44, 10], + [31, -18], + [36, 10], + [40, -11], + [6, -34], + [31, -25], + [68, -27], + [12, -15], + [7, -33], + [53, -5], + [69, -34], + [-4, -17], + [-42, -37], + [-24, -11], + [-34, -36], + [-12, -40], + [2, -40], + [-34, -18], + [-27, 12], + [-21, -12], + [-13, -20], + [-50, 25], + [-8, 28], + [-18, 18], + [-45, 8], + [-36, 32], + [-17, 1], + [-59, 37], + [-42, 10], + [-30, 27], + [-77, 48], + [-16, 30], + [-20, 14], + [-38, -1], + [-73, 6], + [-98, -12], + [-100, -48], + [-74, -58], + [-53, -15], + [-54, -1], + [-70, 16], + [-102, 30], + [-133, 25], + [-158, 22], + [-108, 22], + [-69, 24], + [-169, 74], + [-236, 132], + [-129, 79], + [-63, 32], + [-169, 68], + [-43, 21], + [-165, 54], + [-93, 18], + [-75, 1], + [-53, -8], + [-86, -29], + [-10, -11], + [-46, 10], + [-125, 15], + [-67, 1], + [-118, -15], + [-97, -20], + [-83, -7], + [-90, -14], + [-108, -27], + [-45, -18], + [-62, -35], + [-37, -29], + [-35, -34] + ], + [ + [57491, 22852], + [-101, 189], + [-12, 16], + [15, 180], + [188, 365], + [61, 67], + [9, 5], + [56, 90], + [18, 39], + [31, 172], + [0, 30], + [-31, 118], + [-16, 257], + [-28, 9], + [-56, 85], + [15, 144], + [12, 15], + [91, 85], + [9, 35], + [-23, 158], + [-56, 81], + [23, 89], + [278, 576], + [28, 41], + [9, 129], + [51, 139], + [-17, 211], + [23, 167], + [-7, 268], + [-7, 13], + [-32, -1], + [-50, -45], + [-17, -5], + [-26, 41], + [-9, 58], + [-2, 58], + [-11, 83], + [-12, 27], + [-44, 14], + [-51, 57], + [58, 184], + [-55, 37], + [-48, 56], + [-63, 198], + [-127, 117], + [-38, 52], + [-30, 79], + [16, 73], + [17, 143], + [8, 110], + [-51, 215], + [-91, 142], + [-58, 80], + [-22, 13], + [-81, 76], + [-75, 142], + [-50, 48], + [1, 305], + [-1, 378], + [-1, 547], + [1, 396], + [-1, 125], + [1, 450], + [-1, 373] + ], + [ + [62367, 57697], + [-282, 1], + [-525, -1], + [-238, 1], + [-318, -1], + [-426, 1], + [-186, -1], + [-237, 0], + [-452, -1], + [-263, -1], + [-481, 0], + [-415, -1], + [-419, 0], + [-556, 1], + [-325, 0], + [-228, 2], + [-288, 0], + [-414, 0], + [-271, 0], + [-444, 0], + [-260, 0], + [-411, 1], + [-297, -1], + [-149, 0], + [-112, -2], + [-420, 1], + [-224, 0], + [-357, 0], + [-555, 1], + [-190, 0] + ], + [ + [52624, 57697], + [0, 477], + [0, 477], + [0, 251], + [1, 552], + [1, 326], + [1, 339], + [0, 211], + [0, 401], + [0, 259], + [-1, 396], + [0, 622], + [-2, 225], + [-2, 8], + [-65, 140], + [-61, 47], + [-178, 82], + [-117, 6], + [-22, 18], + [-75, 104], + [-24, 76], + [-37, 82], + [-36, 50], + [-136, 163], + [25, 85], + [16, 26], + [169, 131], + [63, 40], + [72, 37], + [38, 37], + [128, 185], + [13, 50], + [15, 129], + [-2, 60], + [9, 16], + [2, 35] + ], + [ + [52419, 63840], + [-13, 72], + [-14, 160], + [22, 61], + [17, 34], + [4, 51], + [-6, 44], + [-38, 171], + [-13, 18], + [-25, 218], + [1, 123], + [-62, 104], + [-71, 78], + [-97, 140], + [10, 11], + [-42, 251], + [-82, 218], + [-2, 143], + [-33, 317], + [64, 234], + [-24, 58], + [-21, 15], + [-58, 92], + [-3, 389], + [-16, 284], + [-36, 347], + [-18, 119], + [17, 206], + [20, 11], + [-16, 227], + [-65, 167], + [-176, 382], + [-37, 114], + [-43, 33], + [-120, 468], + [-19, 30], + [-47, 96], + [-45, 154], + [1, 183], + [32, 17], + [25, 76], + [1, 111], + [-20, 46], + [-18, 26], + [-18, 114], + [27, 23], + [15, 37], + [-6, 250], + [-45, 48], + [-23, 11], + [131, 349], + [-83, 169], + [-38, 97], + [-78, 236], + [-61, 165], + [-12, 53], + [9, 76], + [9, 8] + ], + [ + [51180, 71575], + [1533, -2], + [1929, -3], + [400, 0], + [1, 470], + [0, 503], + [50, -38], + [127, -41], + [82, 8], + [47, 32], + [59, 3], + [89, -50], + [158, -105], + [50, -280], + [45, -194], + [43, -53], + [0, -252], + [58, 0], + [67, -293], + [-13, -52], + [-1, -215], + [115, -99], + [178, -95], + [120, -12], + [98, 37], + [51, 2], + [149, -4], + [33, -6], + [56, -29], + [18, -32], + [1, -68], + [49, -18], + [182, -13], + [138, -1], + [394, -39], + [33, -49], + [30, -80], + [3, -23], + [-11, -65], + [-14, -20], + [6, -20], + [39, -27], + [70, -2], + [176, 1], + [219, 34], + [143, 42], + [20, 41], + [-17, 64], + [3, 11], + [113, 40], + [68, 2], + [37, 46], + [172, 41], + [88, -1], + [51, -44], + [70, 0], + [101, 7], + [201, -7], + [469, -216], + [131, 17], + [43, -8], + [17, -62], + [-21, -48], + [-46, -7], + [-43, 3], + [-26, -7], + [-26, -81], + [46, -48], + [59, -18], + [150, 10], + [71, 18], + [56, 0], + [95, -85], + [77, -304], + [57, -128], + [110, -15], + [56, 100], + [-12, 30], + [-9, 70], + [3, 17], + [29, 50], + [50, 31], + [385, 10], + [46, -84], + [77, -165], + [22, -35], + [43, 12], + [87, -33], + [74, -50], + [146, -52], + [88, 17], + [51, -14], + [8, -13], + [21, -124], + [-24, -76], + [132, -42], + [133, -11], + [152, -64], + [275, 13], + [21, -7], + [72, 9], + [75, 25], + [137, 105], + [66, 56], + [4, 9], + [191, 96], + [110, 76], + [170, 66], + [71, -3], + [15, -13], + [65, -155], + [27, -87], + [-7, -20], + [33, -33], + [27, -61], + [18, -18], + [339, 40], + [138, -19], + [81, 14], + [91, 0], + [109, -27], + [27, 20], + [33, 8], + [252, 18], + [76, -1], + [22, -13], + [60, -6], + [34, -9], + [93, -41], + [48, -69], + [7, -21], + [-5, -35], + [7, -17], + [46, -35], + [132, -68], + [45, -6], + [48, 18], + [51, 57], + [104, 20], + [27, 1], + [47, -9], + [68, -23], + [60, -8], + [170, -12], + [139, 30], + [-11, -31], + [-86, -24], + [-19, -14], + [-6, -31], + [-32, -20], + [-30, -2], + [-43, 36], + [-38, -1], + [-15, -31], + [1, -36], + [-39, -6], + [-69, -25], + [-60, -41], + [-15, -17], + [-39, -29], + [-65, -39], + [-112, -44], + [-33, 1], + [-97, -31], + [-13, -11], + [-6, -28], + [-75, -41], + [-74, -23], + [-54, -9], + [-54, -17], + [-7, -19], + [-23, -1], + [-53, -19], + [-82, -7], + [-34, -16], + [-16, -21], + [-77, -5], + [-37, -8], + [-88, -35], + [-33, -6], + [-35, -26], + [-100, -13], + [-14, -7], + [-82, -17], + [-7, -13], + [-31, -13], + [-147, -46], + [-26, -32], + [-63, -25], + [-117, -61], + [-71, -32], + [-93, -49], + [-246, -170], + [-73, -61], + [-22, -33], + [-37, -13], + [-156, -125], + [-18, -17], + [-24, -4], + [-60, -70], + [-37, -38], + [-16, -5], + [-40, -31], + [-35, -46], + [-18, -6], + [-25, -32], + [-35, -66], + [-33, -28], + [-60, -61], + [-44, -64], + [-49, -34], + [-70, -68], + [-51, -66], + [-8, -15], + [-54, -50], + [-21, -8], + [-38, -30], + [-109, -117], + [-38, -8], + [-39, -36], + [-103, -46], + [-33, -54], + [-40, -24], + [-45, -47], + [-13, -35], + [-41, -31], + [-71, -23], + [-61, -56], + [-74, -79], + [-7, -15], + [-48, -30], + [-36, -17], + [-29, -5], + [-55, -42], + [-23, -7], + [-59, -55], + [-70, -43], + [-60, -44], + [-24, -27], + [-29, -13], + [-84, -60], + [-6, -15], + [-45, -24], + [-15, -16], + [11, -36], + [44, -71], + [72, -88], + [20, -11] + ], + [ + [60883, 65786], + [-35, 6], + [-103, 102], + [-51, -1], + [-135, -79], + [-14, -39], + [17, -30], + [0, -28], + [-27, -61], + [-19, -12], + [-56, -2], + [-51, 7], + [-42, 28], + [2, -96], + [-3, -525], + [0, -240], + [-2, -358], + [0, -267], + [-61, -19], + [-217, -131], + [-396, -228], + [-96, -74], + [-25, -28], + [-24, -40], + [-53, -123], + [-11, -54], + [-30, -85], + [-36, -37], + [-69, -49], + [-52, -32], + [-28, -158], + [-8, -67], + [4, -84], + [5, -49], + [23, -20], + [89, -17], + [37, 4], + [144, -79], + [85, -169], + [30, -179], + [-75, -169], + [-52, -56], + [-36, -29], + [-16, -35], + [-12, -214], + [-48, -291], + [3, -83], + [42, -95], + [33, -179], + [-27, -255], + [-36, -106], + [-33, -123], + [121, -71], + [196, -172], + [19, -25], + [4, -25], + [130, -134], + [29, -14], + [79, -12], + [250, -19], + [32, -8], + [38, -26], + [31, -66], + [2, -46], + [21, -38], + [26, -30], + [65, -48], + [39, -35], + [197, -62], + [128, -55], + [137, -69], + [17, -12], + [71, -72], + [13, -27], + [58, -178], + [-10, -54], + [32, -77], + [125, -104], + [125, -64], + [36, -9], + [92, -98], + [149, -151], + [23, -12], + [61, -12], + [77, -9], + [78, -24], + [58, -31], + [129, -177], + [97, -149], + [50, -52], + [41, -138], + [-21, -313], + [9, -133], + [7, -14], + [88, -276] + ], + [ + [66316, 24218], + [34, 0], + [7, -22], + [-33, -53], + [-50, 54], + [-72, 18], + [114, 3] + ], + [ + [66679, 24200], + [-17, -11], + [-67, -27], + [-54, -6], + [-4, 9], + [54, 8], + [51, 17], + [21, 12], + [36, 36], + [30, 5], + [-50, -43] + ], + [ + [67411, 24174], + [13, -1], + [64, -29], + [43, -1], + [23, 16], + [48, -6], + [-44, -19], + [-47, -5], + [-75, 24], + [-25, 21] + ], + [ + [67032, 24266], + [101, -43], + [155, -28], + [-26, -9], + [-87, 18], + [-59, 6], + [-86, 35], + [-53, -10], + [-23, 1], + [-36, 16], + [74, 3], + [26, 16], + [14, -5] + ], + [ + [67983, 36238], + [139, -236], + [51, -25], + [-39, -424], + [-40, -360], + [-28, -299], + [-40, -427], + [-50, -523], + [-43, -441], + [-40, -421], + [-40, -434], + [-14, -153], + [-51, -565], + [-67, -750], + [-13, -156], + [-66, -763], + [-39, -447], + [-32, -356], + [-33, -344], + [-30, -332], + [-25, -271], + [-5, -208], + [13, -386], + [9, -192], + [18, -469], + [22, -519], + [11, -292], + [12, -293], + [24, -663], + [16, -481], + [17, -443] + ], + [ + [67620, 24565], + [-8, -22], + [10, -29], + [-30, -18], + [-17, 30], + [-28, 2], + [-23, -18], + [0, -25], + [-14, -20], + [-33, -25], + [-16, -4], + [-46, 8], + [-2, 15], + [-31, 32], + [-25, 8], + [-81, 2], + [-31, 36], + [-32, -13], + [-20, 14], + [-74, 9], + [-29, -16], + [-39, -31], + [-53, -2], + [-33, 12], + [-46, 45], + [-75, 49], + [3, 25], + [-58, 37], + [-31, -42], + [12, -44], + [-54, 28], + [-8, 14], + [-69, 5], + [-92, -8], + [-84, -17], + [-124, -40], + [-193, -93], + [-62, -22], + [-96, -43], + [-36, -6], + [-6, 11], + [5, 52], + [19, 10], + [3, 45], + [-23, 40], + [-42, 24], + [-39, -3], + [-32, -13], + [-24, -42], + [62, -36], + [19, -47], + [-14, -42], + [-28, -24], + [-39, -21], + [-33, -43], + [-66, -34], + [-21, -79], + [-32, -46], + [-1, -49], + [-25, -27], + [-15, 4], + [-12, 38], + [-8, 6], + [-43, -27], + [-39, -6] + ], + [ + [64057, 36238], + [774, -3], + [183, -1], + [281, 3], + [280, -2], + [263, 0], + [397, 0], + [227, 0], + [429, 2], + [589, 2], + [167, -1], + [336, 0] + ], + [ + [25463, 60154], + [-108, 30], + [-46, 35], + [-15, 43], + [-148, 266], + [-195, 257], + [-100, 69], + [-32, -1], + [-175, -115], + [-52, -156], + [-17, -98], + [-140, -128], + [-56, -6], + [-136, 21], + [-61, -43], + [-129, -70], + [-69, 32], + [-11, 29], + [-39, 62], + [-144, -19], + [-243, -58], + [-202, 2], + [-65, 23], + [-26, 29], + [-42, 23], + [-29, 0], + [-47, -12], + [-75, -53], + [-36, -132], + [-23, -35], + [-29, -30], + [-44, 7], + [-117, 43], + [-132, 9], + [-268, 38], + [-57, 14], + [-116, -49], + [-57, -85], + [-19, -43], + [-5, -102], + [-12, -31], + [-34, -26], + [-49, 8], + [-176, 133], + [-62, 60], + [-44, 114], + [-55, 309], + [14, 27], + [-4, 19], + [-92, 207], + [-63, 112], + [-43, 45], + [-93, 68], + [-73, 38], + [-58, -26], + [-95, -61], + [-23, -9], + [-22, 16], + [-189, 187], + [-39, 74], + [-42, 120], + [8, 16], + [40, -1], + [48, 60], + [2, 117], + [-6, 69], + [-27, 44], + [-40, 1], + [-170, 168], + [19, 33], + [1, 15], + [-63, 106], + [-94, 110], + [-45, 37], + [-120, 203], + [-41, 193], + [-25, 149], + [16, 45], + [-13, 73], + [-25, 23], + [-45, 24], + [-6, 48], + [21, 74], + [-5, 25], + [-17, 29], + [-40, 31], + [-114, 72], + [-70, 103], + [-69, 46], + [-30, 12], + [-52, -23], + [-36, -122], + [-187, -228], + [-98, -39], + [-111, 9], + [-115, -192], + [-77, -2], + [-29, 58], + [-175, 176], + [-25, 5], + [-75, 3], + [-69, -14], + [-19, 15], + [-4, 183], + [24, 13], + [17, -3], + [49, 29], + [27, 35], + [10, 92], + [-18, 48], + [-44, 24], + [-35, 29], + [-35, 77], + [96, 169], + [30, 25], + [93, 21], + [102, 88], + [-14, 175], + [-20, 37], + [-33, 22], + [-66, 24], + [-34, 30], + [-13, 37], + [-1, 54], + [28, 45], + [16, 50], + [-1, 46], + [-28, 74], + [19, 83], + [86, 322], + [91, 367], + [-14, 80], + [72, 174], + [29, 181], + [0, 57], + [-13, 28], + [-60, 32], + [-97, -5], + [-45, -17], + [-66, -34], + [-205, 3], + [-41, 15], + [-40, 52], + [-13, 34], + [3, 34], + [-7, 39], + [-42, 44], + [-43, 1], + [-50, -15], + [-41, 3], + [-52, 60], + [-109, 109], + [-51, 45], + [-65, 22], + [-60, 48], + [-14, 21], + [-20, 83], + [5, 78], + [-255, 288], + [-48, 86], + [-189, 230], + [-123, 106], + [-47, 72], + [-5, 28], + [-48, 88], + [-35, 15], + [-154, 25], + [-107, 27], + [-82, 42], + [-52, 88], + [-19, 46], + [-28, 37], + [-212, 122], + [-57, 19], + [-16, 62], + [7, 50], + [26, 55], + [-33, 74], + [-18, 49], + [7, 45], + [27, 53], + [28, 155], + [-33, 149], + [-10, 16], + [-354, 389], + [-163, 221], + [-77, 81], + [-2, 253], + [0, 349], + [1, 723], + [0, 1150], + [0, 109] + ], + [ + [16158, 71576], + [1485, -4], + [973, 3], + [538, 1], + [690, -4], + [698, -5], + [1073, 2], + [199, 1], + [1519, -1], + [631, -1], + [172, -1], + [914, 1], + [713, 0], + [269, 1], + [980, 2], + [411, 1], + [941, 2], + [197, 0], + [602, -2], + [122, -1], + [841, 1], + [570, 0], + [1967, 0], + [1031, 0], + [233, 1], + [473, -2], + [364, 0], + [403, 1], + [342, 0], + [70, 0], + [478, 0], + [555, 0], + [763, 0], + [194, 0], + [920, 1] + ], + [ + [38489, 71573], + [0, -385], + [3, -559], + [-1, -86], + [1, -456], + [2, -93], + [2, -529], + [2, -487], + [5, -275], + [-3, -291], + [-3, -726], + [-1, -293], + [0, -200], + [0, -571], + [-1, -243], + [1, -545], + [0, -465], + [-1, -658], + [-2, -707], + [3, -138] + ], + [ + [38496, 63866], + [3, -194], + [3, -784], + [0, -169], + [4, -294], + [-1, -407], + [0, -538], + [-32, -6] + ], + [ + [38473, 61474], + [-768, 3], + [-549, 1], + [-471, 4], + [-108, -1], + [-1436, 1], + [-132, -7], + [-17, -11], + [-624, 1], + [-1164, 5], + [-357, 2], + [-99, 9], + [-882, 2], + [-565, 0], + [-398, 0], + [-231, -4], + [-589, 3], + [-103, 0], + [-859, -2], + [-38, 15], + [-309, -1], + [-985, -8], + [-579, 4], + [-207, -19], + [-607, -10], + [-294, 0], + [-84, 14], + [-233, 11], + [-314, -2], + [-22, -165], + [-1, -175], + [3, -610], + [12, -380] + ], + [ + [33875, 28134], + [-413, 0], + [-466, -1], + [-551, 1], + [-234, -1], + [-1462, 0], + [-1, -716], + [0, -420], + [-1195, -2], + [-371, 0] + ], + [ + [40437, 41295], + [0, -228], + [0, -480], + [0, -552] + ], + [ + [40437, 40035], + [-73, -56], + [0, -406], + [1, -662], + [-1, -797], + [0, -295], + [-2, -1036], + [0, -650], + [-1, -262], + [0, -452], + [-1, -526], + [-1, -378], + [1, -141], + [0, -639], + [-4, -258], + [-8, -503], + [-3, -130], + [-2, -202], + [-7, -459], + [-2, -149], + [-5, -278], + [-8, -554], + [0, -435], + [-1, -365], + [1, -405], + [0, -952], + [0, -364], + [-488, -1], + [-737, 0], + [-561, -1], + [-944, 1], + [-208, 0], + [-512, 1], + [-438, 0], + [-513, 0], + [-850, 3], + [-208, 1], + [-387, -1], + [-382, -1], + [-350, -2], + [-29, -113], + [-24, -240], + [25, -36], + [17, -1], + [71, -83], + [40, -21], + [18, -16], + [14, -37] + ], + [ + [38489, 71573], + [366, -1], + [1700, -1], + [1343, -1], + [365, 1], + [976, 1], + [522, 0], + [550, 0], + [905, 0], + [468, -1], + [500, 0], + [722, 1], + [979, 1], + [1953, 1], + [325, 1], + [678, -1], + [339, 1] + ], + [ + [52419, 63840], + [-257, 2], + [-553, -1], + [-39, 0], + [-557, -1], + [-303, 0], + [-563, 1], + [-417, 1], + [-330, 1], + [-1002, 6], + [-686, 4], + [-307, -1], + [-433, 1], + [-183, 2], + [-301, 0], + [-400, 2], + [-382, 2], + [-483, 2], + [-367, 0], + [-573, 1], + [-309, 0], + [-316, 1], + [-532, 0], + [-309, 0], + [-466, 1], + [-378, 0], + [-282, 0], + [-414, 1], + [-188, 1], + [-99, -1], + [-401, 0], + [-237, 1], + [-440, -1], + [-511, 0], + [-204, 1], + [-701, 0] + ], + [ + [42223, 41278], + [261, 1], + [559, 4], + [454, 3], + [272, 2], + [370, 3], + [125, 0], + [503, 3], + [230, 3], + [652, 3], + [159, 1], + [225, -2], + [389, -1], + [299, -4], + [315, 0], + [332, 0], + [284, 0], + [476, -1], + [288, 0], + [316, 0], + [355, -3], + [216, 0], + [379, 1], + [432, 1], + [307, 1], + [57, -1], + [268, 0], + [586, 1], + [219, -1], + [286, 1], + [235, 0], + [622, 0], + [401, 0], + [371, -1], + [169, 2], + [190, -1], + [509, 0], + [236, 0], + [395, 1], + [372, 0], + [265, -2], + [285, 0], + [152, -2] + ], + [ + [56039, 41290], + [0, -380], + [1, -592], + [-1, -286] + ], + [ + [56285, 32812], + [-9, -31], + [-62, -25], + [-8, 1], + [-247, 112], + [-138, 78], + [-20, 29], + [-27, 61], + [-115, 14], + [-87, 33], + [-317, 290], + [-43, 108], + [-9, 35], + [-116, 49], + [-167, 63], + [-22, -3], + [-40, -68], + [9, -54], + [-4, -26], + [-20, -36], + [-50, -35], + [-97, -12], + [-126, -7], + [-71, 7], + [-184, 28], + [-14, 21], + [5, 49], + [-19, 57], + [-14, 6], + [-61, 4], + [-293, -169], + [-12, -49], + [-113, -26], + [-233, 50], + [-275, -25], + [-94, -25], + [-16, -61], + [-14, -74], + [-11, -38], + [-22, -27], + [-72, -28], + [-17, 3], + [-139, -6], + [-121, -74], + [-100, 150], + [-46, 12], + [-97, -21], + [-210, 155], + [-6, 49], + [9, 55], + [-20, 27], + [-68, 36], + [-26, -2], + [-11, -17], + [-20, -78], + [-22, -53], + [-21, -23], + [-92, -18], + [-176, 58], + [-19, 14], + [-31, 38], + [-23, 71], + [-7, 94], + [-15, 42], + [-27, 24], + [-95, -61], + [-24, -124], + [-38, -62], + [-78, -111], + [-82, -213], + [-28, -31], + [-26, -10], + [-56, 14], + [-39, 37], + [-61, 158], + [0, 48], + [19, 31], + [25, 0], + [27, 23], + [0, 17], + [-26, 121], + [-9, 14], + [-47, 39], + [-29, -4], + [-157, -106], + [-115, -134], + [-100, 0], + [-50, 23], + [-18, 33], + [21, 74], + [1, 52], + [-13, 25], + [-53, 39], + [-27, 7], + [-34, -15], + [-66, -41], + [-61, 13], + [-18, 38], + [16, 86], + [-38, 41], + [-88, 54], + [-29, 5], + [-39, -19], + [-14, -29], + [-62, -91], + [-96, -115], + [-91, -83], + [-59, -21], + [-21, 2], + [-166, 80], + [-21, 20], + [45, 117], + [15, 135], + [-71, 30], + [-67, -20], + [-40, -1], + [-82, 25], + [-39, 77], + [-117, 203], + [-58, 6], + [-186, 45], + [-47, 42], + [-72, 15], + [-35, -23], + [-29, -49], + [-4, -17], + [-138, -145], + [-55, 20], + [-92, 155], + [-44, 39], + [-42, 29], + [-70, 4], + [-27, -3], + [-25, -24], + [-64, -39], + [-122, 1], + [-173, 41], + [-114, 76], + [-87, 46], + [-175, 9], + [-109, -7], + [-71, 14], + [-62, 20], + [-39, 194], + [3, 83], + [-3, 32], + [-93, 166], + [-177, 97], + [-78, -167], + [-16, -8], + [-62, 4], + [-24, 37], + [-86, 52], + [-29, 12], + [-110, 10], + [-11, -4], + [-68, -104], + [-88, -4], + [-58, 11], + [-134, 132], + [-49, 59], + [-133, 174], + [-17, 36], + [-20, 25], + [-71, 69], + [-42, 12], + [-17, -2], + [-85, -45], + [0, 469], + [0, 717], + [0, 384], + [0, 605], + [0, 496], + [0, 661], + [0, 440], + [0, 1121], + [-336, 0], + [-286, -1], + [-349, 0], + [-235, 0], + [-377, 1], + [-436, -1], + [-1002, 0], + [-377, 1], + [-383, 1], + [-242, 0], + [-1563, 1] + ], + [ + [84216, 48161], + [-249, 0], + [-285, -1], + [-284, 0], + [-730, 1], + [-392, 1], + [0, 544], + [0, 356], + [0, 239], + [2, 570], + [-2, 300], + [0, 305] + ], + [ + [82276, 50476], + [0, 534], + [0, 557], + [0, 253], + [1, 196], + [-1, 232], + [0, 239], + [0, 262], + [0, 329], + [0, 453], + [0, 323] + ], + [ + [82276, 53854], + [156, 71], + [48, 15], + [86, 42], + [62, 20], + [62, 33], + [123, 73], + [79, 41], + [41, 29], + [22, 23], + [34, 88], + [35, 42], + [53, 17], + [31, -45], + [0, -23], + [20, -3], + [134, 81], + [108, 75], + [56, 25], + [28, 21], + [34, 15], + [43, 11], + [86, 52], + [68, 35] + ], + [ + [83685, 54592], + [0, -350], + [1, -333], + [415, -2], + [888, 2], + [347, -4], + [518, 6], + [537, -1], + [341, 2], + [174, -3], + [371, -2], + [152, 1], + [456, 3], + [708, -2], + [379, 6], + [160, 0], + [515, -4], + [179, -3], + [220, -1], + [369, 1], + [308, 1], + [923, 0], + [232, 1], + [33, -16], + [91, -99], + [25, -38], + [30, -136], + [217, -86], + [12, 3], + [48, -22], + [44, -79], + [69, -150], + [10, -304], + [-9, -34], + [23, -124], + [105, -160], + [83, -58], + [50, -19], + [39, -68], + [28, -21], + [144, -25], + [87, -10], + [114, -149], + [-7, -25] + ], + [ + [93114, 52290], + [-124, -53], + [-63, -44], + [-64, -80], + [-16, -26], + [-43, -90], + [-10, -32], + [5, -10], + [-5, -40], + [-28, -71], + [-76, -108], + [-96, -86], + [15, -26], + [-3, -15], + [-128, -134], + [-60, -38], + [-41, -18], + [-33, -21], + [-40, -33], + [-10, -43], + [29, -14], + [5, -39], + [121, -204], + [-1, -31], + [-103, -173], + [-48, -44], + [-70, 10], + [-46, -66], + [-14, -152], + [6, -184], + [20, -73], + [79, -41], + [23, 6], + [33, -6], + [32, -14], + [59, -64], + [7, -41], + [-11, -179], + [22, -93], + [44, -30], + [20, -7], + [305, -300], + [167, -176], + [90, -137], + [-3, -34], + [-31, -30], + [-181, -87], + [-254, -131], + [-181, -172], + [-114, -147], + [-96, -103], + [-48, -40], + [-46, -23], + [-67, -18], + [-66, 1], + [-126, -61], + [-76, -60] + ], + [ + [91774, 48365], + [-72, 46], + [-84, 33], + [-75, 12], + [-75, 1], + [-30, -3], + [-72, -18], + [-53, -23], + [-43, -25], + [-58, -48], + [-42, -49], + [-90, -128] + ], + [ + [91080, 48163], + [-419, 0], + [-421, -2], + [-334, 0], + [-552, 0], + [-325, -2], + [-292, -1], + [-365, 0], + [-402, 0], + [-140, 1], + [-353, 1], + [-82, 2], + [-568, 2], + [-571, 1], + [-796, 0], + [-229, 0], + [-858, -3], + [-157, -1] + ], + [ + [80120, 40256], + [-41, -122], + [-15, -9], + [20, -79], + [0, -51], + [-34, -79], + [2, -6], + [-22, -279], + [-40, -8], + [-32, 4], + [-46, 24], + [-8, 30], + [-114, -58], + [-99, -89], + [-46, -94], + [-50, -92], + [-124, -247], + [-100, -62], + [-87, -4], + [-20, 39], + [2, 23], + [-21, 52], + [-118, 24], + [-20, -5], + [-29, -45], + [-163, -50], + [-43, -8], + [-51, -27], + [-63, -56], + [-99, -192], + [-82, -75], + [-94, -57], + [-73, 26], + [-27, 20], + [-7, 69], + [22, 100], + [-30, 42], + [-33, 23], + [-87, -50], + [-59, -55], + [-73, -50], + [-45, -75], + [-95, -105], + [-42, 41], + [-40, 9], + [-46, -20], + [-27, -52], + [28, -109], + [-38, -90], + [-82, -127], + [-40, -43], + [-22, -12], + [-194, 4], + [-121, -38], + [-140, -83], + [-28, -30], + [9, -14], + [-7, -35], + [-80, -96], + [-129, -48], + [-147, -67], + [-62, -72], + [-12, -38], + [-24, -14], + [-265, 8], + [-66, 11], + [-150, -17], + [-229, -113], + [-100, -117], + [-36, -30], + [-16, -3], + [-76, -93], + [-42, -173], + [-24, -14], + [10, -58], + [21, -61], + [-4, -14], + [-60, -69], + [-78, -53], + [-196, 21], + [-17, 26], + [-29, 5], + [-117, -107], + [-4, -48], + [-30, -286], + [-25, -264] + ], + [ + [72811, 36210], + [-408, 9], + [-73, 1], + [-833, 6], + [-160, 2], + [-131, -3], + [-113, 0], + [-277, 4], + [-344, 0], + [-277, 8], + [-371, 9], + [-165, 5], + [-241, 5], + [-452, 2], + [-190, 3], + [-393, 4], + [-368, 3], + [-32, -30] + ], + [ + [65130, 38774], + [48, 0], + [31, 61], + [11, 68], + [112, 143], + [42, 27], + [15, 20], + [4, 43], + [-5, 28], + [-24, 40], + [-41, 36], + [-131, 159], + [15, 9], + [25, -10], + [141, -25], + [24, 2], + [89, 22], + [13, 12], + [-2, 46], + [-17, 25], + [-18, -7], + [-45, 26], + [-62, 53], + [-15, 35], + [8, 33], + [19, 16], + [45, 0], + [39, -12], + [29, -2], + [24, 6], + [24, 24], + [18, 66], + [-19, 254], + [-36, 57] + ], + [ + [65491, 40029], + [100, -1] + ], + [ + [65591, 40028], + [-15, -48], + [0, -22], + [13, -21], + [27, -12], + [21, 3], + [22, 16], + [36, 44], + [22, 43] + ], + [ + [65717, 40031], + [70, 4], + [63, 7], + [119, 9], + [306, -8], + [285, -4], + [242, 2], + [538, -3], + [104, -2], + [295, -1], + [517, -9], + [28, 43], + [10, 67], + [-5, 53], + [-18, 104], + [-20, 83], + [-23, 61], + [-4, 46], + [109, -3], + [302, -33], + [-7, -77], + [395, 12], + [422, 7], + [557, 4], + [388, 10], + [174, 3], + [387, 11], + [76, -47], + [168, 46], + [262, -7], + [252, -24], + [215, -14], + [92, -8], + [454, -22], + [440, -15], + [81, -2], + [69, 3], + [363, 26], + [336, -10], + [440, -41], + [151, -8], + [962, -28], + [509, -6], + [553, -18], + [28, 46] + ], + [ + [76402, 40288], + [379, -9], + [364, 2], + [51, -11], + [411, 1], + [368, -1], + [280, 0], + [234, 3], + [485, 2], + [155, 0], + [68, -3], + [446, -1], + [21, 56], + [179, -5], + [334, -6], + [-57, -60] + ], + [ + [92096, 43887], + [-102, -172], + [-42, -92], + [-27, -73], + [-28, -52], + [-33, -34], + [-14, 0], + [-33, 21], + [-16, 18], + [-53, 1], + [-44, -30], + [-28, -31], + [-36, -48], + [-52, -83], + [-61, -144], + [-17, -45], + [-29, -58], + [-16, -45], + [-9, -58], + [-32, -102], + [-14, -36], + [-3, -51], + [8, -19], + [23, -4], + [3, -17], + [-23, -32], + [-50, -88], + [-61, -127], + [8, -43], + [-8, -40], + [-12, -23], + [-47, -62], + [-43, -81], + [-12, -33], + [1, -25], + [-17, -37], + [-55, -76], + [-25, -21], + [-10, 10], + [-26, -12], + [14, -51], + [-16, -62], + [16, -67], + [-25, -43], + [7, -27], + [-55, -67], + [-89, -89], + [-16, -24], + [-38, -30], + [-35, 49], + [-37, -33], + [-46, -5], + [1, 26], + [-15, 72], + [-39, 79], + [-27, 42], + [-1, 35], + [6, 31], + [-28, 66], + [4, 29], + [15, 30], + [-15, 21], + [9, 72], + [8, 36], + [31, 50], + [20, 42], + [13, 91], + [-6, 28], + [3, 47], + [10, 27], + [29, 57], + [-5, 36], + [8, 46], + [17, 55], + [18, 32], + [5, 43], + [-7, 31], + [31, 92], + [28, 56], + [61, 96], + [16, 19], + [0, 49], + [17, 39], + [40, 25], + [24, 73], + [23, 19], + [17, 33], + [-17, 36], + [-11, 38], + [46, 32], + [17, 6], + [26, -6], + [51, 6], + [13, 25], + [24, 8], + [12, 17], + [14, 53], + [36, 36], + [8, 29], + [-4, 33], + [-41, 36], + [-20, 3], + [-12, -12], + [-49, -2], + [-8, 19], + [85, 81], + [14, -18], + [19, 4], + [45, 51] + ], + [ + [91300, 43694], + [85, 110], + [419, 48], + [292, 35] + ], + [ + [90735, 43404], + [-16, -75], + [-30, 17], + [-5, 56], + [2, 33], + [49, -31] + ], + [ + [90697, 43701], + [-44, -46], + [-28, -51], + [-6, 35], + [-20, 62] + ], + [ + [90599, 43701], + [98, 0] + ], + [ + [87487, 47152], + [95, -8], + [140, -42], + [59, -38], + [49, -61], + [44, -22], + [49, -19], + [45, -44], + [3, -22], + [-37, -77], + [-49, -18], + [-21, -28], + [-20, -63], + [5, -46], + [8, -17], + [115, -119], + [65, -18], + [90, -14], + [65, 4], + [90, -44], + [56, -36], + [18, -50], + [-7, -22], + [11, -42], + [27, -23], + [26, -14], + [44, -11], + [57, 3], + [35, -8], + [53, -77] + ], + [ + [88753, 45815], + [-5, -69], + [-62, -134], + [-58, -35], + [-28, -26], + [-22, -32], + [-6, -61], + [11, -37] + ], + [ + [88583, 45421], + [-51, 3], + [-33, -31], + [-50, -17], + [-27, 52], + [-45, 2], + [-15, -26], + [7, -19], + [-4, -76], + [-32, -20], + [6, -44], + [-29, -46], + [1, -19], + [-14, -36], + [-32, -46], + [-18, -33], + [-23, -68], + [-5, -46], + [12, -78], + [16, -51], + [-13, -36], + [40, -35], + [15, -26], + [-1, -20], + [16, -30], + [27, -16], + [47, -4], + [76, 23], + [37, 3], + [31, 10], + [46, 56], + [62, 4], + [37, -3], + [28, 24], + [26, 46], + [23, 11], + [59, -66], + [-10, -82], + [-7, -32], + [-18, -44], + [8, -23], + [53, -62], + [31, -10], + [35, -44], + [9, -51], + [-18, -23], + [9, -34], + [47, -29], + [49, -13], + [66, -63], + [68, -22], + [27, 0], + [67, 14], + [52, -6], + [32, -25], + [8, -26], + [32, -22], + [33, 29], + [5, 16], + [30, 2], + [37, -22], + [40, 1], + [26, 13], + [29, -12], + [19, -50], + [5, -47], + [40, -38], + [68, -45], + [13, -19], + [26, -68], + [11, -41], + [45, -23], + [42, -9], + [13, -38], + [65, -55], + [21, -25], + [46, -21], + [58, -16], + [31, -13], + [145, -90], + [54, -56], + [-15, -69], + [-12, -73], + [-27, -39], + [-31, -9], + [-20, 22], + [-26, -26], + [-6, -44], + [7, -16], + [-10, -96], + [13, -52], + [-14, -24], + [18, -40], + [1, -39], + [-24, -11], + [-18, -20], + [-28, -53], + [14, -25], + [48, -10], + [26, -15], + [25, -45], + [-2, -11], + [-54, 20], + [-98, -29], + [-35, 42], + [-34, 4], + [-82, 60], + [-54, 34], + [-32, 1], + [-15, -48], + [-24, -12], + [-49, 53], + [3, 61], + [-9, 43], + [-38, 59], + [-30, 74], + [-15, 29], + [-33, 10], + [-24, 20], + [-67, 39], + [-13, 27], + [-41, 47], + [-40, -7], + [-38, 35], + [-20, 39], + [-10, 34], + [-17, 26], + [-34, 9], + [-35, -25], + [3, -16], + [31, -57], + [28, -41], + [31, -65], + [20, -25], + [15, -7], + [48, -2], + [11, -9], + [1, -40], + [12, -24], + [24, -11], + [45, -2], + [38, -16], + [-1, -34], + [42, -35], + [-1, -36], + [34, -79], + [-6, -25], + [17, -38], + [58, -75], + [29, -14], + [170, 3], + [29, -35], + [17, -43], + [52, -22], + [47, 2], + [47, -10], + [60, -20], + [-5, -27], + [-51, -37], + [-35, 0], + [-21, -44], + [14, -36], + [44, -25], + [42, 6], + [35, 42], + [13, -16], + [30, -66], + [23, -86], + [4, -64], + [9, -89], + [-6, -29], + [-30, -45], + [-15, -56], + [2, -33], + [-20, -8], + [-48, 26], + [-7, 22], + [-47, 66], + [-55, 26], + [-38, 27], + [-11, 33], + [-41, 10], + [-5, -43], + [-36, -14], + [-15, -33], + [19, -30], + [54, -55], + [34, -64], + [13, -56], + [22, -15], + [13, -23], + [-57, -13], + [-46, -3], + [-22, -27], + [-87, -7], + [-13, 11], + [-19, -13], + [-19, -40], + [17, -21], + [42, -24], + [144, 23], + [8, -5], + [-11, -55], + [12, -20], + [-3, -34], + [-16, -49], + [34, -12], + [40, 33], + [31, -6], + [6, -37], + [18, -25], + [36, -8], + [35, -30], + [33, -81], + [6, -26], + [-40, -124], + [-21, -85], + [-20, 0], + [-6, 31], + [-42, 4], + [-14, -22], + [-47, -21], + [-43, -40], + [-28, -50], + [-32, 18], + [-44, 72], + [8, 24], + [-31, 50], + [-115, 89], + [1, 37], + [-20, 16], + [-34, -20], + [-24, 11], + [-22, 41], + [-72, 57], + [-12, 20], + [5, 38], + [33, 45], + [-12, 18], + [-16, 63], + [-19, 37], + [-38, 36], + [-73, 5], + [-18, -10], + [-59, -13], + [-23, -54], + [-27, -2], + [-43, 44], + [-38, -8], + [-3, -19], + [11, -23], + [74, -70], + [18, -28], + [32, -13], + [28, 7], + [34, 66], + [9, 54], + [12, 8], + [29, -39], + [12, -24], + [-15, -38], + [0, -42], + [9, -10], + [18, -72], + [-2, -33], + [-18, -51], + [-1, -54], + [11, -23], + [31, -24], + [63, -2], + [47, -17], + [17, -16], + [27, -47], + [71, -51], + [7, -26], + [39, -21], + [23, -32], + [10, -88], + [-2, -54], + [25, -33], + [29, 3], + [13, 48], + [30, 3], + [44, -18], + [38, 6], + [3, 60], + [59, -2], + [47, -11], + [-4, 51], + [7, 53], + [21, -10], + [34, 32], + [23, 1], + [32, -10], + [62, -49], + [24, -14], + [59, -21], + [94, -21], + [82, -36], + [14, 0], + [56, 21], + [46, 37], + [36, -3], + [33, -22], + [9, -28], + [36, -173], + [12, -75], + [30, -129], + [51, -175], + [58, -154], + [31, -119], + [13, -83] + ], + [ + [90933, 40162], + [-159, -1], + [-316, 0], + [-355, 0], + [-425, 0], + [-494, 0], + [-203, -17], + [-462, 6], + [-159, -4], + [-88, 0], + [-875, 1], + [-201, 0], + [-480, -3], + [-209, 2], + [-420, -6], + [-109, -3], + [-248, 3], + [-248, -1], + [-327, 1], + [-284, -2], + [-406, 0], + [-312, -2], + [-291, 3], + [-471, 1], + [-200, 1], + [-264, 2], + [-110, 1], + [-378, 16], + [-476, 29], + [-106, 0], + [-174, -6], + [-119, 6], + [-298, 14], + [-457, 20], + [-85, -1], + [-312, 15], + [-160, 16], + [-132, 3] + ], + [ + [76402, 40288], + [49, 40], + [227, 124], + [55, 12], + [69, -14], + [197, 79], + [22, 12], + [267, 92], + [60, 4], + [58, 10], + [15, 19], + [5, 27], + [-11, 15], + [-1, 36], + [60, 109], + [50, 75], + [185, 12], + [115, 38], + [92, 126], + [7, 21], + [-5, 31], + [9, 19], + [-26, 33], + [3, 28], + [30, 21], + [23, 6], + [17, 16], + [1, 19], + [27, 15], + [47, -1], + [35, 23], + [92, 74], + [3, 93], + [-2, 60], + [180, 144], + [111, 84], + [102, 55], + [297, 124], + [110, 113], + [602, 570] + ], + [ + [79579, 42652], + [76, -65], + [-28, -8], + [-94, -65], + [-6, -16], + [8, -40], + [9, -15], + [71, -23], + [25, -19], + [15, -63], + [-12, -102], + [16, -39], + [48, -41], + [11, -28], + [28, 4], + [25, -58], + [21, -21], + [0, -23], + [20, -14], + [93, -10], + [34, -17], + [25, 2], + [26, -29], + [6, -51], + [30, -11], + [83, -71], + [9, -23], + [220, 11], + [99, 68], + [6, 41], + [176, 88], + [40, 88], + [20, -3], + [28, 48], + [79, -97], + [176, -162], + [38, 20], + [70, 50], + [102, 40], + [53, 15], + [92, 16], + [99, 7], + [14, -5], + [48, 11], + [53, 26], + [35, 22], + [95, 80], + [-43, 65], + [27, 141], + [87, -53], + [23, -29], + [42, -30], + [12, -29], + [274, 153], + [207, 123], + [31, -118], + [36, -31], + [20, 8], + [73, 60], + [195, 124], + [11, 5], + [-29, 89], + [34, 25], + [44, 91], + [90, 63], + [36, 52], + [-34, 25], + [-53, 21], + [-46, 95], + [-7, 21], + [17, 11], + [43, 58], + [9, 30], + [-7, 18], + [10, 45], + [57, 108], + [120, 192], + [59, 46], + [238, 251], + [45, 92], + [35, 87], + [53, 95], + [-13, 74], + [24, 50], + [8, 74], + [54, 60], + [192, 164], + [-40, 92], + [3, 11], + [143, 163], + [79, 173], + [2, 20], + [-20, 62], + [56, 90], + [37, 204], + [95, -47], + [79, -32], + [35, -24], + [29, -42], + [83, -194], + [306, -114], + [27, 11], + [32, 23], + [-4, 14], + [28, 18], + [9, 16], + [98, 125], + [4, 16], + [62, 166], + [52, 150], + [21, 46], + [80, 140], + [65, 157], + [4, 52], + [103, 161], + [11, 10], + [232, -219], + [64, 122], + [50, 113], + [37, 73], + [17, 18], + [110, 76], + [17, -31], + [203, 137], + [82, 123], + [7, 16], + [-33, 31], + [118, 143], + [90, 63], + [38, 47], + [39, 62], + [15, 38], + [-30, 43], + [-22, 23], + [27, 36], + [45, 80], + [110, 276], + [-40, 11], + [28, 273], + [220, -188], + [365, -320], + [381, -334], + [11, 20], + [94, 244], + [5, 50], + [13, 16], + [22, 66], + [58, 81] + ], + [ + [91512, 47870], + [-22, 20], + [-6, 33], + [22, 8] + ], + [ + [91506, 47931], + [6, -61] + ], + [ + [91774, 48365], + [-2, -15], + [-40, -32], + [-19, -24], + [-34, -58], + [-17, -50], + [-53, -83], + [-11, -30] + ], + [ + [91598, 48073], + [-37, 16], + [-61, -90], + [-46, -15], + [-46, -73], + [-6, -15], + [6, -47], + [91, -89], + [-5, -9], + [-9, -79], + [18, -17], + [-11, -31], + [-18, 2], + [-21, -32], + [-10, -43], + [7, -47], + [33, -55], + [29, -22], + [33, -35], + [27, -62], + [20, -65], + [35, -29], + [7, -29], + [39, -31], + [17, -6], + [40, -38], + [7, -42], + [13, -29], + [37, -52], + [10, -25], + [-6, -28], + [1, -50], + [16, -19], + [7, -29], + [-3, -41], + [-25, -35], + [-4, -46], + [17, -171], + [-1, -55], + [10, -22], + [31, -23], + [63, -61], + [51, -92], + [13, -52], + [0, -58], + [17, -14], + [-18, -37], + [15, -29], + [76, -90], + [58, -83], + [50, -53], + [27, -42], + [59, -42], + [46, -20], + [39, 2], + [30, 14], + [14, 22], + [14, -63], + [5, -86], + [26, -195], + [0, -72], + [10, -62], + [19, -306], + [2, -89] + ], + [ + [92456, 44957], + [-254, -1], + [-346, 3], + [-107, 2], + [-244, 7], + [-249, 11], + [-10, 156], + [-16, 286], + [-34, 591], + [-37, 620], + [-4, 71], + [-35, 591], + [-39, 656], + [-2, 112], + [1, 101] + ], + [ + [79579, 42652], + [-55, 13], + [-19, -24], + [-75, -6], + [-127, 72], + [-16, 49], + [-31, 41], + [-144, 121], + [-57, 37], + [-87, 74], + [-19, 52], + [-35, 71], + [13, 58], + [-21, 43], + [-163, 239], + [-106, 100], + [-48, 66], + [6, 23], + [60, 79], + [-1, 20], + [-41, 34], + [-41, 8], + [-19, 18], + [-36, 77], + [-15, 55], + [-98, 143], + [-40, 14], + [-28, 37], + [-16, 70], + [76, 206], + [38, -2], + [17, 44], + [5, 131], + [-44, 169], + [-3, 76], + [7, 23] + ], + [ + [78416, 44883], + [61, -44], + [75, 8], + [334, 84], + [20, 9], + [18, 25], + [12, 34], + [34, 181], + [8, 99], + [32, 37], + [23, 12], + [30, 0], + [50, -17], + [47, 4], + [30, 27], + [10, 56], + [-19, 209], + [-11, 64], + [-20, 59], + [-40, 41], + [-2, 34], + [11, 25], + [46, 45], + [12, 4], + [84, 125], + [86, 264], + [77, 59], + [19, 60], + [10, 19], + [35, 11], + [28, -5], + [124, -97], + [30, -53], + [35, -78], + [0, -33], + [-48, -58], + [-1, -25], + [34, -33], + [63, 7], + [214, 112], + [7, 20], + [-15, 206], + [-16, 28], + [-57, 54], + [-15, 30], + [-2, 57], + [122, 33], + [-5, 230], + [18, 11], + [83, 131], + [167, 84], + [118, 194], + [139, 128], + [21, 14], + [39, -2], + [42, -35], + [11, -16], + [24, -92], + [18, -21], + [16, -4], + [52, 10], + [98, 74], + [45, 27], + [41, 11], + [47, -10], + [15, 6], + [283, 333], + [81, 88], + [142, 130], + [96, 25], + [22, 10], + [90, 214], + [4, 16], + [44, 468], + [-7, 21], + [7, 29], + [87, 103], + [36, 32], + [16, 168], + [-3, 54], + [12, 76], + [39, 162], + [100, 232], + [27, 25], + [39, 64], + [25, 67], + [6, 27], + [-18, 108], + [-18, 54], + [13, 134], + [24, 120], + [-21, 21], + [-105, 209], + [2, 36], + [59, 71], + [13, 10], + [48, 14], + [23, -14], + [53, 9], + [77, 38] + ], + [ + [84216, 48161], + [-4, -478], + [-7, -26], + [-9, -609], + [3, -38], + [-2, -149], + [156, 112], + [45, 55], + [227, 212], + [81, 30], + [22, 30], + [218, 231], + [78, 20], + [31, -35], + [106, -60], + [175, 204], + [93, 171], + [70, 94], + [50, -44], + [-22, -41], + [22, -30], + [132, -91], + [62, -28], + [168, -39], + [181, -7], + [59, 56], + [9, 56], + [-34, 25], + [-15, 26], + [2, 16], + [50, 90], + [140, 44], + [78, -24], + [56, -27], + [22, -2], + [87, 110], + [62, 68], + [27, 15], + [62, -14], + [66, -21], + [62, -39], + [72, -78], + [48, -83], + [119, -46], + [81, 8], + [34, -50], + [-8, -31], + [43, -99], + [38, -46], + [70, -21], + [78, -155], + [49, -108], + [-39, -105], + [8, -26], + [53, -31], + [16, -1] + ], + [ + [63783, 66569], + [-1, 69], + [15, 55], + [22, 19], + [37, 11], + [41, -1], + [5, -24], + [-14, -54], + [-6, -53], + [-18, -31], + [-30, -19], + [-65, -28], + [-2, 20], + [16, 36] + ], + [ + [63448, 66177], + [27, 29], + [37, 0], + [28, -37], + [34, -28], + [-29, -18], + [-54, -5], + [-116, -48], + [-18, -35], + [29, -14], + [27, -1], + [-3, -26], + [-73, -17], + [-37, 8], + [-43, -43], + [-45, -33], + [-46, -5], + [10, 50], + [-14, 33], + [59, 26], + [48, 10], + [10, 26], + [28, 26], + [69, 33], + [34, 24], + [38, 45] + ], + [ + [63554, 66321], + [-107, -29], + [-33, 31], + [38, 60], + [62, 24], + [135, 40], + [38, -29], + [-29, -53], + [-21, -11], + [-26, -40], + [-37, 12], + [-20, -5] + ], + [ + [70316, 62509], + [16, 34], + [18, -25], + [19, -8], + [46, 2], + [29, 13], + [30, -5], + [15, -16], + [42, 13], + [-1, 38], + [26, 3], + [21, -36], + [-5, -17], + [-29, 0], + [-32, -41], + [-22, -48], + [-19, -15], + [-8, -30], + [4, -30], + [-18, -26], + [-23, 4], + [-22, -25], + [5, -61], + [-15, -3], + [-17, 38], + [-44, 53], + [-35, 23], + [0, 25], + [19, 17], + [-17, 63], + [17, 60] + ], + [ + [63440, 55194], + [8, 26], + [-16, 64], + [-107, 219], + [-32, 25], + [-92, 27], + [-138, 29], + [-196, 57], + [-51, 26], + [-144, 107], + [-29, 79], + [-15, 86], + [-43, 200], + [-31, 32], + [-49, 23], + [-4, 8], + [-55, 336], + [-5, 53], + [1, 46], + [-2, 113], + [6, 24], + [35, 21], + [19, 24], + [156, 229], + [8, 31], + [-51, 92], + [-41, 55], + [-191, 147], + [9, 128], + [-23, 196] + ], + [ + [60883, 65786], + [13, -3], + [38, -31], + [48, -26], + [35, -7], + [104, 26], + [55, 6], + [32, -7], + [38, 1], + [56, 11], + [75, 37], + [194, 65], + [102, 49], + [30, 8], + [70, -7], + [48, 7], + [35, 23], + [80, 17], + [48, 22], + [22, 19], + [38, 2], + [42, 9], + [57, 60], + [67, 32], + [67, 9], + [28, 18], + [45, 57], + [36, 5], + [14, -29], + [40, -25], + [20, 1], + [37, 46], + [46, -17], + [49, 13], + [6, 47], + [23, 9], + [24, -13], + [28, 7], + [25, 20], + [10, 35], + [28, 22], + [45, 15], + [20, 20], + [20, 40], + [16, 6], + [20, -13], + [61, -18], + [24, 25], + [54, 42], + [44, 11], + [34, -13], + [97, -78], + [58, -71], + [6, -26], + [-35, -29], + [-20, -44], + [-34, -90], + [-50, -49], + [-18, -36], + [-39, -2], + [-13, -21], + [8, -16], + [-14, -25], + [-34, -20], + [3, -24], + [24, -59], + [33, -60], + [-2, -16], + [-27, -33], + [-33, -25], + [-47, -18], + [-7, -12], + [-17, -83], + [-27, -43], + [-24, -29], + [18, -22], + [44, -13], + [24, 1], + [60, 45], + [11, 1], + [71, 36], + [64, 23], + [46, 28], + [27, 25], + [-2, 47], + [16, 13], + [20, 56], + [79, -70], + [125, -102], + [77, -61], + [52, -34], + [38, -13], + [23, 15], + [37, 6], + [59, -39], + [68, -32], + [36, 12] + ], + [ + [63855, 65432], + [7, -22], + [26, -33], + [48, -13], + [31, 3], + [82, -61], + [54, 6], + [149, -100], + [50, -97], + [20, -3], + [60, -162], + [28, -39], + [-1, -57], + [395, -103], + [1175, -308], + [282, -75], + [124, -49], + [388, -214], + [18, -23], + [46, -22], + [85, -8], + [56, 21], + [17, -2], + [96, -33], + [8, -8], + [16, -56], + [53, -8], + [46, 14], + [150, 77], + [47, -7], + [18, -59], + [15, -9], + [123, -24], + [87, 19], + [151, -96], + [84, 30], + [20, -36], + [53, -11], + [16, 12], + [50, -11], + [67, -38], + [69, -51], + [53, -86], + [2, -9], + [-63, -78], + [-50, -46], + [6, -33], + [68, -61], + [41, -14], + [40, 2], + [20, 22], + [90, 14], + [229, -115], + [114, -105], + [49, -70], + [-2, -18], + [-78, -34], + [-1, -32], + [60, -76], + [6, -128], + [-8, -167], + [-11, -37], + [-26, -53], + [-14, -10], + [-74, -93], + [-52, -174], + [5, -7], + [66, -28], + [22, 11], + [10, 18], + [79, 3], + [72, -4], + [61, 65], + [46, 31], + [36, -18], + [32, -35], + [18, -46], + [0, -28], + [-114, -200], + [-5, -42], + [-37, -93], + [-19, -21], + [20, -69], + [133, -160], + [129, -31] + ], + [ + [69117, 61721], + [5, -25], + [-26, -8], + [-16, -17], + [-29, -77], + [2, -78], + [-10, -94], + [-59, -10], + [-64, 4], + [-131, -23], + [-86, -29], + [-12, -7], + [-37, -49], + [-9, -33], + [8, -33], + [22, -36], + [-19, -43], + [-19, -9], + [-33, -76], + [-23, -4], + [-42, -29], + [-6, -22], + [-42, -101], + [-27, -57], + [-19, -7], + [-25, -24], + [-34, -59], + [-12, -85], + [-1, -46], + [-22, -11], + [-14, -68], + [0, -17], + [20, -53], + [-25, -18], + [-8, -26], + [-20, -33], + [-16, -5], + [-12, -26], + [69, -69], + [64, -23], + [50, -1], + [28, 16], + [22, 30], + [34, 66], + [-9, 18], + [69, 69], + [67, 38], + [41, 32], + [62, 7], + [18, 7], + [27, 36], + [5, 28], + [35, 37], + [18, 29], + [3, 36], + [-5, 43], + [28, 34], + [33, 52], + [78, 101], + [17, 37], + [50, 63], + [54, 34], + [58, -2], + [36, 16], + [29, 30], + [25, -13], + [43, -2], + [77, 74], + [32, -13], + [0, -29], + [27, -41], + [39, 14], + [2, 50], + [-18, 33], + [-24, 16], + [2, 18], + [22, 57], + [34, 56], + [27, 78], + [45, 66], + [26, 52], + [36, 46], + [35, 28], + [36, 45], + [8, 28], + [6, 73], + [32, 41], + [-5, 29], + [8, 46], + [31, 19], + [14, -23], + [35, -7], + [38, 25], + [15, 27], + [36, 18], + [51, 1], + [2, 36], + [-7, 44], + [26, 86], + [57, 22], + [14, 37], + [24, 31], + [12, -17], + [32, 5], + [32, 29], + [63, -10], + [24, -43], + [-26, -35], + [3, -39], + [18, -7], + [-11, -48], + [-13, -29], + [-32, -10], + [-8, 26], + [-47, 0], + [-15, -27], + [-10, -95], + [2, -39], + [30, -30], + [-31, -29], + [-16, -38], + [10, -28], + [1, -50], + [-17, -4], + [-11, -20], + [-30, -22], + [-5, -29], + [-18, -10], + [-55, 8], + [-7, -41], + [-27, -75], + [-45, -19], + [-48, -92], + [2, -51], + [25, -21], + [6, -21], + [-60, -37], + [-22, -26], + [-2, -22], + [20, -30], + [3, -26], + [-117, -73], + [-16, -34], + [-12, -47], + [-42, -25], + [-29, -50], + [3, -34], + [-34, -85], + [-12, -47], + [-19, -44], + [-27, -44], + [-47, -110], + [-22, -34], + [-23, -16], + [-36, -40], + [-18, -47], + [-39, -87], + [-29, -102], + [-12, -87], + [-16, -41], + [-15, -93], + [-21, -75], + [1, -47], + [-30, -62], + [-22, -75], + [8, -71], + [36, -84], + [25, -76], + [1, -48], + [-22, -78], + [-38, -51], + [-43, -39], + [-70, -31], + [-38, -25], + [-48, -43], + [-16, -58], + [4, -37], + [-5, -39], + [-29, -36], + [-22, -44], + [-23, -77], + [-6, -60], + [-37, -71], + [-15, -87], + [-17, -57], + [14, -71], + [-2, -52], + [6, -54], + [49, -109], + [-5, -44], + [-13, -35], + [13, -74], + [0, -48], + [-6, -20], + [-53, -102], + [-87, -153], + [-17, -39], + [-14, -90], + [1, -42], + [8, -45], + [-28, -80], + [-36, -67], + [-52, -74], + [-18, -30], + [-23, -61], + [-9, -43], + [-13, -113], + [-24, -59], + [-18, -85], + [3, -37], + [26, -97], + [16, -27], + [12, -40], + [-36, -84], + [0, -29], + [14, -30], + [31, -38], + [18, -62], + [-7, -25], + [-22, -34], + [-24, -22], + [-7, -34], + [6, -33], + [15, -39], + [57, -56], + [22, -41], + [5, -45], + [-10, -138], + [24, -82], + [22, -54], + [54, -74], + [38, -32], + [13, -22], + [-6, -28], + [-15, -27], + [-8, -38], + [7, -52], + [-7, -48], + [-39, -83], + [-21, -79], + [-10, -71], + [1, -23], + [16, -49], + [-5, -21], + [2, -124], + [5, -38], + [17, -58] + ], + [ + [38481, 56436], + [1, -621], + [0, -363], + [0, -889], + [0, -337], + [-1, -604], + [1, -384], + [0, -278], + [0, -148], + [1, -432], + [-1, -298], + [-1, -405], + [0, -286] + ], + [ + [29182, 51390], + [-292, 2], + [-873, -8], + [-333, -2], + [-360, -1], + [-841, -6], + [-1016, 8], + [0, 640], + [1, 318], + [-1, 510], + [0, 1064] + ], + [ + [25467, 53915], + [-1, 356], + [0, 522], + [2, 413], + [4, 1138], + [-1, 584], + [0, 303], + [-1, 468], + [-1, 398], + [-2, 396], + [-4, 623], + [-1, 941], + [1, 97] + ], + [ + [38473, 61474], + [3, -578], + [0, -632], + [3, -852], + [-1, -611], + [0, -482], + [0, -412], + [0, -391], + [2, -351], + [1, -729] + ], + [ + [68123, 24349], + [70, -60], + [23, -27], + [-8, -11], + [-57, -7], + [-51, 18], + [-55, 0], + [-78, -11], + [-134, -37], + [-1, 9], + [42, 15], + [63, 15], + [95, 17], + [60, 6], + [20, 18], + [11, 29], + [0, 26] + ], + [ + [73933, 26158], + [-283, 0], + [-640, -10], + [-1038, -9], + [-231, 2], + [-203, 0], + [-158, 1], + [-271, -3], + [-81, 5], + [-214, -2], + [-87, 6], + [-303, 2], + [-259, 4], + [-252, 0], + [-172, -2], + [-318, -1], + [-61, 1], + [-261, -2], + [9, -54], + [-13, -101], + [-39, -97], + [-24, -80], + [20, -51], + [171, -258], + [55, -53], + [40, -15], + [59, -45], + [79, -68], + [19, -46], + [5, -30], + [0, -42], + [-104, -278], + [36, -60], + [22, -204], + [-16, -5], + [-24, -42], + [-20, -61], + [2, -142], + [-4, -28], + [-123, -49] + ], + [ + [69251, 24341], + [-74, -16], + [-43, -13], + [-141, -49], + [-146, -23], + [-121, -28], + [-71, -6], + [-163, 8], + [-67, -2], + [-70, -9], + [-53, -12], + [8, 23], + [106, 14], + [34, 52], + [24, 13], + [33, -21], + [8, -14], + [39, -21], + [61, 2], + [79, 36], + [56, 0], + [39, 20], + [21, 38], + [0, 35], + [-32, 51], + [-45, 32], + [-23, 21], + [-39, 54], + [-13, 39], + [-15, 20], + [-37, 16], + [-77, 65], + [-5, 12], + [-9, 81], + [-11, 62], + [-22, 26], + [-3, 16], + [41, 97], + [18, 63], + [-5, 38], + [-20, 50], + [5, 76], + [-13, 51], + [-32, 54], + [-36, 3], + [-47, 41], + [-51, 25], + [-25, -28], + [-9, -31], + [-15, -20], + [-18, -2], + [-33, -20], + [5, -65], + [10, -17], + [-20, -61], + [-19, -23], + [-19, -40], + [7, -43], + [-2, -44], + [-15, -13], + [-19, -35], + [-4, -42], + [12, -55], + [-18, -47], + [4, -64], + [-6, -126], + [-15, -52], + [-23, -46], + [-16, -45], + [-36, 17], + [-30, -7], + [-37, -19], + [-7, 11], + [-5, 44], + [18, 23], + [-22, 36], + [-8, 0], + [-104, 51], + [-41, 1], + [-15, -31], + [-48, -1], + [-6, 26], + [-24, 20], + [-59, -1], + [-19, -6], + [-38, -41] + ], + [ + [82776, 11880], + [-18, -44], + [-15, -10], + [-37, -95], + [-36, -64], + [-82, -169], + [-5, -16], + [8, -39], + [-16, -37], + [-35, -60], + [-42, -55], + [-53, -33], + [-28, -49], + [-35, -15], + [-22, -25], + [-37, -55], + [9, -18], + [-11, -21], + [-80, -82], + [-52, -81], + [-11, -12], + [-31, -6], + [-43, -32], + [-45, -64], + [-44, -40], + [-1, 19], + [35, 24], + [32, 43], + [4, 33], + [46, 35], + [30, 16], + [19, -6], + [22, 23], + [28, 72], + [-4, 37], + [40, 6], + [29, 29], + [25, 48], + [27, 23], + [38, 56], + [-9, 20], + [-30, 13], + [-25, 26], + [20, 18], + [15, -25], + [48, -27], + [31, 44], + [0, 21], + [-26, 84], + [2, 9], + [62, -36], + [19, 12], + [14, 22], + [16, 51], + [-9, 54], + [9, 15], + [32, 21], + [37, 11], + [23, 52], + [7, 57], + [-17, 36], + [-47, 36], + [8, 10], + [45, 9], + [20, -9], + [25, 20], + [43, 50], + [5, 27], + [26, 48], + [35, 44], + [4, 49], + [16, 45], + [37, 19], + [22, 27], + [15, 44], + [13, 61], + [13, 37], + [5, 32], + [-4, 24], + [6, 31], + [17, 29], + [9, -2], + [1, -90], + [-18, -36], + [-38, -142], + [-33, -37], + [-30, -90], + [-4, -37], + [-19, -13] + ], + [ + [80296, 10156], + [5, 26], + [33, 60], + [10, -1], + [28, -29], + [13, -3], + [30, 20], + [13, 41], + [40, 16], + [26, 3], + [14, -18], + [19, 8], + [13, 18], + [-1, 55], + [22, -2], + [16, -32], + [20, 37], + [-8, 39], + [43, -10], + [18, -14], + [14, -44], + [47, -44], + [27, -3], + [49, -16], + [8, -24], + [10, -67], + [22, -21], + [-10, -13], + [-55, -30], + [-116, -47], + [-13, 6], + [-2, 43], + [-21, 17], + [-33, -3], + [-31, -15], + [-40, 5], + [-20, 8], + [9, 20], + [-8, 17], + [-34, 13], + [-8, -11], + [-11, -42], + [-4, -48], + [-14, -12], + [-52, -14], + [-105, -71], + [-114, -34], + [-39, -36], + [-12, 3], + [-76, -9], + [-62, -11], + [-38, -14], + [-45, -5], + [-7, 48], + [5, 16], + [20, 3], + [13, 38], + [37, -3], + [48, 13], + [17, 0], + [16, -21], + [27, 16], + [20, 24], + [20, -14], + [29, 14], + [18, 26], + [25, 21], + [35, 13], + [41, 54], + [1, 20], + [58, 20] + ], + [ + [79240, 9948], + [14, 43], + [33, 10], + [39, -23], + [9, -39], + [-9, -29], + [-23, -30], + [-79, -3], + [-11, 10], + [1, 28], + [26, 33] + ], + [ + [80916, 10193], + [10, -10], + [-69, -39], + [6, 16], + [34, 37], + [19, -4] + ], + [ + [81549, 10465], + [7, -29], + [-11, -12], + [-49, 7], + [-144, -121], + [-15, -7], + [-20, 26], + [-56, -30], + [-21, -28], + [-5, -30], + [-55, -10], + [-32, 50], + [33, 11], + [16, -2], + [60, 31], + [46, 48], + [37, -25], + [52, 27], + [14, 22], + [49, 29], + [94, 43] + ], + [ + [80790, 10405], + [23, -2], + [27, -50], + [5, -40], + [-28, -17], + [-14, 33], + [-30, 3], + [-43, 46], + [-14, 26], + [27, -2], + [29, 15], + [18, -12] + ], + [ + [81775, 10574], + [-14, -31], + [-49, 1], + [-45, -24], + [1, 11], + [29, 18], + [29, 34], + [41, 40], + [23, -8], + [-15, -41] + ], + [ + [81885, 10677], + [17, -1], + [32, 41], + [23, 1], + [-40, -46], + [-92, -68], + [39, 53], + [21, 20] + ], + [ + [79044, 15315], + [18, 8], + [7, -31], + [-7, -27], + [16, -54], + [36, -90], + [7, -59], + [34, -109], + [17, -81], + [18, -64], + [21, -32], + [31, -31], + [33, -1], + [22, -9], + [59, -46], + [21, 27], + [27, 11], + [45, -34], + [42, -5], + [3, -7], + [-91, -67], + [-22, -9], + [-43, 8], + [-53, 28], + [-41, 49], + [-45, 30], + [-15, 22], + [-11, 33], + [-28, 169], + [-7, 26], + [-31, 60], + [-31, 116], + [-18, 45], + [-36, 72], + [6, 40], + [16, 12] + ], + [ + [74352, 22895], + [88, 79], + [24, 26], + [38, 52], + [3, -20], + [-35, -52], + [-95, -105], + [-64, -45], + [-101, -43], + [-58, -31], + [-136, -100], + [-146, -60], + [-27, -5], + [-35, 46], + [-48, 43], + [1, 14], + [53, -45], + [52, -26], + [28, -7], + [12, 19], + [54, 15], + [37, 17], + [66, 51], + [23, 28], + [45, 23], + [63, 38], + [91, 36], + [28, 31], + [39, 21] + ], + [ + [73646, 22825], + [41, 17], + [38, 5], + [38, -9], + [31, -35], + [-27, -57], + [-10, -39], + [-52, -12], + [-33, 18], + [-37, 38], + [-41, 34], + [-37, 22], + [-8, 23], + [75, 2], + [22, -7] + ], + [ + [77991, 18497], + [-15, 10], + [2, 130], + [11, 27], + [0, 36], + [-25, 71], + [6, 23], + [13, 4], + [24, -118], + [-4, -62], + [-11, -10], + [11, -88], + [-12, -23] + ], + [ + [80555, 25424], + [31, -30], + [-7, -72], + [-22, -173], + [1, -115], + [15, -82], + [-24, -48], + [13, -15], + [26, -3], + [29, -37], + [7, -151], + [18, -54], + [2, -153], + [8, -92], + [12, -75], + [55, -281], + [87, -487], + [26, -103], + [11, -34], + [24, -37], + [11, -44], + [11, -63], + [2, -94], + [12, -91], + [30, -115], + [22, -62], + [33, -120], + [89, -282], + [74, -204], + [143, -420], + [150, -404], + [41, -93], + [69, -118], + [25, -71], + [29, -65], + [170, -341], + [143, -299], + [117, -199], + [56, -109], + [62, -93], + [16, -32], + [14, -57], + [12, -80], + [46, -132], + [21, -48], + [-3, -20], + [-67, -35], + [-21, -25], + [-26, -43], + [-15, -51], + [-14, -67], + [-6, -69], + [-2, -64], + [7, -135], + [26, -201], + [44, -208], + [35, -118], + [72, -198], + [115, -274], + [0, -5], + [118, -302], + [60, -246], + [2, -36], + [11, -31], + [25, -47], + [12, -71], + [24, -113], + [20, -61], + [15, 0], + [51, -201], + [22, -103], + [38, -97], + [12, -47], + [63, -185], + [59, -143], + [15, -59], + [-12, -15], + [18, -50], + [21, -81], + [41, -99], + [42, -136], + [89, -402], + [28, -158], + [-2, -63], + [-10, -13], + [9, -129], + [-5, -99], + [0, -161], + [-6, -108], + [-22, -151], + [-19, -164], + [-18, -273], + [-9, -45], + [-9, -137], + [-17, -82], + [-23, -212], + [-7, -130], + [-8, -23], + [-15, -254], + [0, -178], + [-6, -82], + [2, -107], + [-4, -58], + [-10, -67], + [-1, -48], + [-18, -56], + [-12, -24], + [-16, -95], + [-4, -95], + [-11, -1], + [-30, 51], + [12, 64], + [11, 28], + [-15, 41], + [-22, 19], + [-25, -3], + [-58, -30], + [-21, -21], + [-8, -18], + [-11, -73], + [-29, -75], + [-2, -16], + [-19, -38], + [-21, -16], + [-24, -43], + [-8, -51], + [0, -45], + [7, -20], + [-22, -71], + [-28, -17], + [-20, -84], + [0, -52], + [5, -33], + [16, -57], + [15, -15], + [-11, -36], + [1, -63], + [10, -16], + [25, -18], + [-6, -28], + [-47, -87], + [-49, -29], + [-23, -25], + [-17, -41], + [-5, -32], + [-62, -63], + [-52, -39], + [-38, -39], + [-29, -41], + [-23, -43], + [-23, 19], + [-9, 25], + [-14, 10], + [-19, -11], + [-20, 5], + [1, 29], + [-15, 17], + [-41, 7], + [-34, -39], + [8, -59], + [-46, -47], + [-18, -11], + [-39, -2], + [-17, -20], + [-65, -6], + [-20, -22], + [-16, -47], + [-34, 15], + [-39, -6], + [-7, 32], + [-21, 29], + [-72, 14], + [-56, -30], + [-7, 19], + [-30, 23], + [-54, -7], + [-46, -31], + [-1, -56], + [-28, 4], + [-51, -18], + [-53, -1], + [-51, -24], + [-45, 13], + [-51, -3], + [-54, -24], + [-28, 21], + [-48, 63], + [-24, 11], + [-14, 19], + [-3, 48], + [-24, 63], + [-31, 36], + [2, 59], + [5, 19], + [12, 92], + [18, 40], + [6, 32], + [-5, 17], + [21, 41], + [12, 5], + [23, -11], + [8, 41], + [-21, 64], + [-24, 2], + [-17, 15], + [0, 30], + [7, 22], + [-41, 142], + [-20, 29], + [-23, 23], + [-30, 51], + [-4, 30], + [13, 44], + [-11, 36], + [-31, 25], + [-13, 38], + [0, 33], + [-14, 32], + [-1, 36], + [-24, 62], + [-44, 68], + [-24, 57], + [-72, 75], + [-11, -4], + [-21, 15], + [4, 66], + [-21, 32], + [-12, 31], + [40, 35], + [-17, 76], + [-68, 58], + [-16, 30], + [-55, 41], + [-32, -10], + [-32, 13], + [-24, 32], + [-5, 17], + [-25, 0], + [-25, -11], + [-22, 6], + [2, 26], + [-30, 12], + [-25, -3], + [-67, -28], + [-14, -1], + [-56, 13], + [-16, 8], + [-39, 2], + [-36, -31], + [-17, -73], + [-10, -29], + [-21, 19], + [-44, 113], + [-26, 24], + [-9, 62], + [-25, 45], + [-8, 28], + [4, 85], + [-28, 30], + [-73, 207], + [-13, 161], + [-11, 53], + [-4, 86], + [-7, 75], + [-23, 145], + [-21, 84], + [-46, 129], + [-61, 81], + [-18, 41], + [-50, 45], + [-34, 19], + [-14, 14], + [-10, 47], + [-51, 21], + [-22, -2], + [-9, 17], + [8, 36], + [-64, 36], + [-44, -16], + [-8, -52], + [-43, -22], + [-20, 0], + [-12, 144], + [-13, 51], + [-6, 46], + [-29, 147], + [-23, 42], + [-59, 69], + [4, 38], + [11, 13], + [41, 6], + [48, -12], + [13, -21], + [24, -60], + [24, -4], + [12, 49], + [3, 44], + [10, 36], + [24, 65], + [10, 80], + [0, 38], + [12, 33], + [-7, 91], + [4, 51], + [-5, 45], + [-14, 15], + [-45, 16], + [-4, 45], + [6, 42], + [12, 11], + [29, 0], + [11, 9], + [-2, 48], + [-25, 20], + [-59, -1], + [-17, -9], + [-37, -71], + [-46, -2], + [-25, -21], + [4, -50], + [31, -114], + [18, -157], + [-8, -16], + [-41, -11], + [-10, -16], + [-80, -2], + [-22, 31], + [-16, -25], + [-17, -46], + [-16, -98], + [-8, 21], + [-1, 79], + [-9, 70], + [-37, 109], + [-23, 35], + [-93, 168], + [-91, 193], + [-35, 91], + [-49, 100], + [-27, 100], + [-16, 34], + [-15, 70], + [-66, 167], + [-51, 118], + [-10, 17], + [-26, 20], + [-20, 27], + [1, 48], + [-13, 27], + [-40, 67], + [-49, 66], + [-35, 70], + [-60, 87], + [-31, 33], + [1, 18], + [-31, 109], + [-31, 65], + [-34, 45], + [1, 20], + [64, -40], + [-5, -55], + [7, -8], + [38, -3], + [-1, 27], + [23, 30], + [44, 8], + [9, 27], + [26, 46], + [37, 49], + [1, 35], + [28, 22], + [22, 5], + [36, 50], + [13, 58], + [40, 86], + [42, 83], + [36, 34], + [32, 10], + [-1, 58], + [39, 16], + [42, 30], + [2, 25], + [27, 49], + [2, 24], + [14, 19], + [15, 5], + [17, 63], + [-7, 35], + [-10, 78], + [-21, 48], + [-34, 0], + [-52, 26], + [-4, 21], + [-29, 19], + [-22, -20], + [4, -62], + [-1, -80], + [36, -51], + [-7, -52], + [-32, 0], + [-40, 14], + [-80, 51], + [2, 36], + [27, 6], + [16, 32], + [-24, 33], + [22, 33], + [-5, 74], + [-14, 40], + [-24, 45], + [-66, 10], + [-56, -3], + [-180, -28], + [-14, -26], + [7, -30], + [19, -20], + [34, -9], + [12, -22], + [26, -8], + [81, -6], + [-12, -17], + [4, -32], + [41, -45], + [78, 26], + [2, -65], + [-58, -1], + [6, -35], + [11, -20], + [5, -48], + [-39, -45], + [-29, -48], + [-14, -65], + [10, -54], + [-16, -56], + [-11, -16], + [-24, -10], + [-46, 15], + [-4, -29], + [-27, 14], + [-37, -4], + [-9, -16], + [-8, -53], + [12, -50], + [34, -32], + [-13, -34], + [-52, -31], + [-6, 11], + [-5, 50], + [2, 176], + [-15, 62], + [-28, 35], + [-17, 57], + [-37, 60], + [-56, 56], + [-16, 21], + [-33, 81], + [-9, 81], + [7, 60], + [12, 68], + [18, 63], + [18, -13], + [-31, -121], + [12, 1], + [21, 45], + [28, 83], + [24, 129], + [0, 53], + [19, 60], + [-2, 127], + [4, 54], + [-17, 62], + [-33, 6], + [6, 44], + [14, 39], + [65, 79], + [-3, 64], + [10, 25], + [24, 18], + [25, 77], + [-5, 22], + [7, 62], + [29, 51], + [18, 57], + [0, 84], + [16, 48], + [25, 20], + [18, 35], + [-11, 38], + [15, 19], + [14, 50], + [-10, 41], + [4, 69], + [8, 5], + [13, 37], + [-9, 13], + [9, 46], + [5, 57], + [-18, 40], + [13, 43], + [-3, 33], + [8, 80], + [16, 74], + [-20, 37], + [6, 17], + [-17, 46], + [21, 25], + [10, 50], + [5, 58], + [-11, 16], + [-8, 87], + [27, 32], + [-8, 42], + [5, 41], + [-9, 32], + [-21, 25], + [-32, 4], + [-29, 13], + [-25, 69], + [-12, 7], + [-28, 45], + [-22, 50], + [-4, 56], + [-42, -7], + [-7, 17], + [9, 18], + [11, 50], + [-11, 70], + [-44, 26], + [5, 22], + [-68, 7], + [-12, 57], + [41, 16], + [5, 24], + [-13, 38], + [2, 43], + [-42, 30], + [-58, 9], + [-54, -1], + [-66, 20], + [-42, -5], + [-64, 10], + [-14, 21], + [-16, -5], + [-42, -67], + [-1, -26], + [-21, -18], + [-43, -8], + [-6, 39], + [-22, 17], + [14, 45], + [-8, 34], + [-26, 32], + [-16, 49], + [24, 80], + [-4, 18], + [-22, 28], + [-35, 6], + [-38, 35], + [-40, 18], + [-21, -8], + [-16, 9], + [-14, 61], + [-2, 34], + [5, 43], + [-26, 47], + [-21, 26], + [-3, 52], + [-29, 66], + [-42, 32], + [-44, 6], + [-15, -9], + [-42, 15], + [-23, 55], + [-8, 40], + [-37, 0], + [-35, 35], + [-12, 26], + [-26, 0], + [-16, 9], + [-9, 24], + [-30, 11], + [0, 40], + [-10, 114], + [1, 44], + [10, 43], + [-9, 71], + [-16, 70], + [-43, 22], + [-36, -2], + [-52, 35], + [-1, 20], + [-18, 25], + [-36, 21], + [-46, 16], + [-32, 50], + [-21, 47], + [-24, 18], + [-13, 41], + [8, 18], + [-8, 50], + [-18, 41], + [-18, 21], + [-25, 15], + [-36, 111], + [-41, 33], + [-49, 62], + [-132, 86], + [-58, 48], + [-75, 16], + [-31, 37], + [-160, 104], + [-4, 18], + [-49, 47], + [-59, 48], + [-17, 31], + [-44, 18], + [-72, -5], + [-37, -23], + [-37, 3], + [-20, -20], + [-21, 13], + [-20, -20], + [-40, -26], + [-41, 2], + [-36, 37], + [-18, -8], + [-54, 2], + [-16, 19], + [-3, 20], + [-17, 7], + [-24, -16], + [-8, -36], + [6, -38], + [-12, -20], + [-39, -7], + [-32, 30], + [-50, -14], + [-31, -14], + [-13, -85], + [7, -93], + [26, -9], + [9, -23], + [7, -73], + [10, -56], + [-4, -28], + [-14, -33], + [-10, -7], + [-56, -10], + [-48, 21], + [-55, 13], + [-17, 18], + [-15, 39], + [-35, -11], + [-45, -27], + [-32, 7], + [-45, -17], + [-77, -56], + [-48, -30], + [-19, -20], + [-64, -53], + [-16, -32], + [-25, -14], + [-26, 6], + [-15, -5], + [-72, -56], + [-47, -47], + [-13, 1], + [-114, -77], + [-24, -6], + [-58, -34], + [-25, -21], + [-20, -29], + [-18, 33], + [22, 51], + [24, 43], + [-31, 31], + [-39, -5], + [-11, -26], + [-33, -57], + [-15, -13], + [-32, -7], + [-9, -39], + [-46, -30], + [-82, -10], + [-65, 20], + [-55, -1], + [-37, -7], + [-59, -19], + [-44, -20], + [-94, -17], + [-60, -31], + [-57, 7], + [-53, -7], + [-46, -24], + [-17, -30], + [-31, 53], + [-20, 44], + [-33, 106], + [-30, 150], + [-7, 73], + [8, 61], + [14, 32], + [14, -16], + [-12, -74], + [-2, -71], + [20, -100], + [32, -133], + [45, -62], + [17, 0], + [50, 16], + [12, 16], + [19, 251], + [-3, 28], + [-16, 16], + [-3, 45], + [-22, 32], + [-22, 11], + [-19, 57], + [-31, 68], + [-39, 56], + [-38, 44], + [-39, 29], + [-64, 24], + [-17, -5], + [-34, 9], + [-40, 26], + [-60, 61], + [-57, 78], + [-17, 28], + [-13, 45], + [-24, 2], + [-32, 23], + [-65, 31], + [-81, 48], + [-62, 54], + [-37, 47], + [-47, 49], + [-67, 56], + [-125, 94], + [-82, 57], + [-144, 82], + [-168, 83], + [-247, 101], + [-141, 49], + [-122, 29], + [-89, 15], + [-110, 9], + [-65, -4], + [-43, 11], + [-193, 24], + [-220, -11], + [-185, -28], + [-110, -21], + [-457, -113], + [-95, -17], + [-115, -14], + [-51, 20], + [-45, -14], + [-58, -12], + [-129, -40], + [-183, -42] + ], + [ + [25467, 53915], + [-687, -2], + [-170, -3], + [-687, -3], + [-74, 0], + [-461, -4], + [-140, 11], + [-274, 0], + [-487, -2], + [-114, 0], + [-319, -4], + [-224, -1], + [-736, -10], + [-685, -13], + [-239, -3], + [-277, 14] + ], + [ + [19893, 53895], + [-446, 2], + [-589, 0], + [-308, 14], + [-280, 0], + [-231, -10], + [-1765, 6], + [-97, -2], + [-233, 0], + [-557, -3], + [-304, 3], + [-729, 4], + [-15, 3] + ], + [ + [14339, 53912], + [0, 2035], + [0, 551], + [0, 1393], + [0, 582], + [56, 143], + [26, 20], + [39, 115], + [49, 178], + [6, 287], + [67, 131], + [0, 42], + [-13, 21], + [-136, 160], + [-20, 7], + [-76, 8], + [-25, -13], + [-241, 39], + [-36, 38], + [-15, 55], + [15, 103], + [-47, 328], + [12, 48], + [97, 107], + [23, 44], + [53, 196], + [37, 105], + [62, 157], + [34, 45], + [52, 27], + [158, 92], + [147, 241], + [38, 114], + [-35, 64], + [-14, 50], + [24, 99], + [114, 156], + [101, 159], + [38, 154], + [25, 130], + [41, 169], + [224, 448], + [135, 205], + [32, 56], + [1, 33], + [-48, 89], + [-73, 77], + [-13, 26], + [-5, 58], + [4, 49], + [-23, 46], + [-86, 67], + [-72, 14], + [-290, 160], + [-127, 142], + [-17, 32], + [-16, 64], + [-76, 134] + ], + [ + [14545, 63992], + [-52, 169], + [34, 244], + [-62, 210], + [-54, 141], + [-111, 113], + [-25, 63], + [26, 29], + [13, 116], + [0, 294], + [0, 716], + [0, 761], + [0, 333], + [0, 551], + [-2, 204], + [-1, 414], + [-2, 111], + [1, 532], + [1, 273], + [4, 249], + [8, 471], + [0, 149], + [1, 501], + [3, 550], + [1, 385] + ], + [ + [14328, 71571], + [512, 2], + [1318, 3] + ], + [ + [42206, 48872], + [274, 1], + [118, -1], + [398, -1], + [404, 0], + [160, 0], + [289, 0], + [430, -1], + [473, 0], + [71, -1], + [328, 0], + [542, 0], + [348, -1], + [330, 0], + [350, 1], + [413, 1], + [435, 0], + [437, 0], + [418, 0], + [37, 1], + [241, -1], + [534, 1], + [324, -1], + [313, 0], + [305, 0], + [470, -1], + [272, 1], + [230, -1], + [364, -1], + [454, 0], + [341, 0], + [592, -2], + [279, 0], + [365, 0], + [323, 0], + [762, -1], + [125, 0] + ], + [ + [54755, 48865], + [1, -24], + [11, -18], + [224, -211], + [90, -60], + [89, -36], + [80, 8], + [26, 17], + [5, 45], + [17, 23], + [15, 5], + [101, 1], + [34, -17], + [15, -21], + [60, -310], + [-40, -88], + [-39, -7], + [-144, -129], + [-172, -254], + [-11, -50], + [20, -52], + [291, -337], + [68, -81], + [-1, -49], + [5, -69], + [13, -48], + [127, -188], + [149, -136], + [30, -11], + [41, 3], + [14, 9], + [196, -36], + [18, -11], + [3, -37], + [-32, -68], + [0, -121], + [-1, -312], + [0, -330], + [-7, -481], + [-3, -548], + [1, -223], + [0, -245], + [-2, -172], + [0, -284], + [-1, -234], + [-5, -315], + [-2, -346], + [3, -406], + [-2, -279], + [0, -220], + [-1, -341], + [1, -333], + [-1, -148] + ], + [ + [90596, 44123], + [-24, 16], + [-45, -22], + [-19, 17], + [12, 40], + [-6, 26], + [7, 104], + [32, 28], + [42, 0], + [50, -65], + [-20, -22], + [1, -52], + [18, -38], + [19, -4], + [1, -24], + [-16, -13], + [-2, -23], + [25, -32], + [4, -46], + [-33, -16], + [-24, 14], + [-43, 49], + [17, 30], + [20, 11], + [-16, 22] + ], + [ + [90599, 43701], + [-6, 76], + [2, 79], + [13, 43], + [39, 18], + [30, -6], + [24, -28], + [30, -12], + [10, -37], + [-26, -6], + [-19, -74], + [10, -36], + [-9, -17] + ], + [ + [92456, 44957], + [-11, -92], + [-13, -64], + [-20, -86], + [-24, -78], + [-16, -3], + [-17, -30], + [-26, -94], + [-49, -135], + [-29, -92], + [-34, -137], + [-31, -85], + [-41, -87], + [-49, -87] + ], + [ + [91300, 43694], + [13, 26], + [-16, 14], + [-27, 3], + [-50, 22], + [-47, -33], + [-39, 18], + [-46, 5], + [-86, -86], + [-4, -13], + [-53, -38], + [-45, -16], + [-25, 33], + [8, 15], + [6, 60], + [-15, 50], + [30, 72], + [14, 23], + [4, 56], + [29, 11], + [18, -11], + [34, 22], + [31, 40], + [-12, 20], + [-46, 14], + [-28, -13], + [0, -18], + [-28, 0], + [-12, 38], + [31, 65], + [49, 32], + [18, 50], + [-30, 28], + [-29, -10], + [-17, -16], + [-59, 17], + [-68, -42], + [1, -36], + [-24, 20], + [-19, 48], + [23, 85], + [-8, 19], + [17, 22], + [101, 43], + [19, -14], + [26, 6], + [33, 24], + [-10, 41], + [-35, 43], + [-24, 2], + [-31, -31], + [-16, 37], + [-5, 28], + [-11, 13], + [-40, 23], + [-30, -21], + [0, -28], + [26, -15], + [-11, -20], + [-32, 6], + [1, 27], + [-39, 33], + [-3, 29], + [-40, 70], + [-2, 20], + [50, 8], + [32, 23], + [5, 43], + [-23, 61], + [-52, 22], + [-18, -35], + [3, -18], + [-12, -53], + [-54, -36], + [-9, -35], + [37, -41], + [6, -20], + [-31, -97], + [15, -28], + [7, -35], + [-48, 26], + [-22, 29], + [-10, 35], + [-46, 3], + [-14, 23], + [9, 37], + [-16, 24], + [-51, -14], + [-41, 25], + [-24, -15], + [-12, -21], + [8, -39], + [23, -32], + [32, 2], + [36, -17], + [-9, -25], + [-36, 3], + [-42, 33], + [-28, 51], + [-4, 25], + [-39, 64], + [-27, 19], + [-33, 0], + [-27, 21], + [-15, 53], + [52, 21], + [-21, 41], + [-43, 6], + [-18, 67], + [-1, 52], + [-34, 66], + [-36, 51], + [-20, 34], + [-9, 47], + [17, 20], + [17, -5], + [53, 15], + [48, -1], + [31, 51], + [5, 33], + [-17, 6], + [-38, -20], + [-13, 12], + [9, 32], + [-26, 51], + [-28, 16], + [59, 41], + [9, 16], + [-21, 29], + [29, 14], + [33, 29], + [18, 5], + [11, -36], + [34, -19], + [41, 36], + [29, 20], + [28, -9], + [24, 29], + [-16, 54], + [-36, 38], + [-47, -6], + [-23, 28], + [-48, 78], + [0, 57], + [-31, 3], + [-28, -31], + [-9, -29], + [-44, 13], + [-1, 24], + [-32, 5], + [-28, -41], + [-5, -26], + [23, -34], + [-1, -26], + [-34, -20], + [-14, 38], + [14, 111], + [-1, 55], + [12, 53], + [20, 16], + [26, 44], + [2, 42], + [15, 32], + [23, 3], + [19, 20], + [12, 42], + [11, -11], + [29, -56], + [58, -33], + [39, 5], + [13, 39], + [-12, 35], + [-9, 48], + [4, 51], + [-9, 25], + [3, 90], + [-19, 22], + [-34, 13], + [-34, -9], + [1, -45], + [-23, -2], + [-5, 26], + [-15, 29], + [-43, -33], + [-6, -26], + [11, -40], + [-28, -11], + [-18, 33], + [-34, -14], + [-4, -34], + [14, -71], + [-18, -21], + [-18, 4], + [-20, -14], + [-13, -40], + [-13, 8], + [-2, 28], + [21, 59], + [-2, 85], + [8, 80], + [14, 46], + [58, 107], + [5, 59], + [16, 30], + [16, -23], + [17, -56], + [30, -54], + [35, 3], + [55, -15], + [19, -18], + [31, 7], + [72, 66], + [0, 27], + [-27, 54], + [-11, 37], + [17, 32], + [30, 17], + [26, 69], + [-72, 9], + [-37, -27], + [-12, -54], + [-5, -59], + [8, -41], + [14, -26], + [-15, -11], + [-43, 21], + [-20, 27], + [3, 27], + [19, 53], + [-5, 77], + [-36, 107], + [-15, 24], + [-33, 6], + [8, 50], + [15, 38], + [20, 28], + [44, 105], + [24, 73], + [15, 19], + [15, 0], + [32, 40], + [17, 53], + [-17, 15], + [0, 17], + [29, 32], + [20, 10], + [26, -4], + [23, 16], + [-3, 26], + [34, 25], + [11, 29], + [113, -4], + [32, -8], + [18, -14], + [38, 14], + [0, 44], + [-61, 3], + [-10, 20], + [11, 20], + [52, 31], + [18, 40], + [27, 13], + [11, 31], + [-25, 28], + [-23, -21], + [-18, 7], + [29, 59], + [19, 85], + [19, 50], + [17, 22], + [-6, 48], + [-42, 13], + [-25, -32], + [-107, -9], + [-60, -25], + [-39, -103], + [6, -23], + [29, -27], + [28, 4], + [21, -7], + [20, -69], + [-37, -28], + [-39, -2], + [-28, -21], + [-9, -16], + [-46, -40], + [-23, 3], + [-23, -36], + [-16, -37], + [-88, -70], + [-24, 29], + [-19, 0], + [-30, -20], + [23, -42], + [-18, -6], + [-23, -29], + [-10, -52], + [-31, 1], + [13, 39], + [-14, 28], + [6, 53], + [-53, 18], + [-33, -8], + [14, -51], + [-10, -23], + [22, -27], + [-26, -28], + [-26, 23], + [-16, -1], + [-31, -32], + [-7, -58], + [-20, -17], + [-13, -28], + [29, -23], + [-5, -35], + [-52, -39], + [-15, -35], + [-32, -26], + [-39, 26], + [-47, -9], + [-59, 53], + [-25, -26], + [0, -57], + [15, -32], + [33, -21], + [14, -21], + [31, 8], + [58, -52], + [45, -30], + [-8, -47], + [21, -80], + [-3, -18], + [-29, -54], + [63, -50], + [20, -55], + [-52, -56], + [-50, -16], + [-10, -21], + [-37, -4], + [6, -41], + [39, -39], + [-22, -43], + [5, -43], + [-19, 1], + [-12, 18], + [-33, -12], + [6, -63], + [-54, -55], + [5, -30], + [14, -7], + [24, 12], + [12, -36], + [-17, -54], + [-20, -41], + [-28, -16], + [-20, -42], + [-45, -27], + [4, -58], + [25, -43], + [33, -8], + [-11, -62], + [0, -54], + [15, -82], + [16, -42], + [8, -34], + [-9, -64], + [2, -87], + [-4, -42], + [3, -26], + [18, -61], + [25, -55], + [69, -80], + [9, -22], + [27, -23], + [39, -47], + [23, -47], + [27, -21], + [3, -67], + [-34, -51], + [-8, -38], + [12, -37], + [40, -21], + [13, -17], + [-37, -46], + [-9, -47], + [26, -105], + [43, -65], + [16, -35], + [44, -58], + [18, -43], + [-34, -47], + [14, -51], + [3, -70], + [18, -71], + [-41, 26], + [-21, -1], + [-15, 16], + [-20, 50], + [-38, 59], + [-25, 10], + [-29, -2], + [-17, 34], + [1, 17], + [-19, 32], + [-37, 1], + [-18, -51], + [8, -34], + [-20, -2], + [-9, 28], + [-35, 53], + [-17, 9], + [-25, -3], + [-14, -13], + [-20, 47], + [-23, 87], + [-25, 28], + [-45, 40], + [-78, 29], + [-22, -2], + [-54, 24], + [-80, -3], + [-44, 5], + [-23, -33], + [-49, 16], + [-35, 21], + [-27, 33], + [12, 9], + [6, 69], + [-36, 48], + [-46, -5], + [21, -60], + [-5, -32], + [-18, -13], + [-32, 32], + [-41, 20], + [-41, 29], + [-23, 8], + [-2, 50], + [-14, 25], + [-23, 21], + [-22, 9], + [-41, 36], + [-15, 39], + [-8, 81], + [-20, 36], + [-5, 32], + [-28, 60], + [-45, -3], + [-65, -50], + [-29, -43], + [-28, -4], + [-32, 11], + [-25, -47], + [-93, -66], + [-38, -15], + [-17, 9], + [-63, 49], + [-26, 80], + [8, 54], + [-26, 116], + [19, 77], + [48, 100], + [31, 8], + [70, 115], + [26, 16], + [39, -4], + [37, 22], + [8, 14], + [-10, 39] + ], + [ + [93114, 52290], + [442, -276], + [122, -82], + [293, -184], + [256, -149], + [362, -218], + [16, 0], + [-45, -201], + [-28, -90], + [-150, -316], + [-20, -119] + ], + [ + [94362, 50655], + [-26, 3], + [-24, -38], + [-34, -28], + [-24, -27], + [-21, -61], + [-92, -20], + [-70, 12], + [-15, -7], + [-25, -32], + [-12, -138], + [-17, -48], + [-25, 5], + [-32, -25], + [-5, -18], + [9, -54], + [-41, -55], + [-8, -27], + [10, -42], + [10, -18], + [47, -17], + [50, -26], + [7, -17], + [23, 0], + [35, 37], + [32, -22], + [45, 20], + [31, -22], + [76, -31], + [32, -28], + [21, -9], + [77, -20], + [14, -1], + [13, 81], + [-27, 55], + [20, 10], + [32, -72], + [2, -80], + [11, -92], + [0, -60], + [-11, -123], + [-8, -50], + [-22, -106], + [-69, -289], + [-6, -59], + [-11, -46], + [-46, -258], + [-24, -172], + [-26, -280], + [-11, -93], + [-31, -57], + [-52, -129], + [-92, -162], + [-92, -177], + [-16, -18], + [-53, -85], + [-26, -16], + [-36, -3], + [-5, -32], + [21, -38], + [-4, -19], + [-56, -99], + [-60, -76], + [-74, -62], + [-11, -42], + [-88, -40], + [-115, -79], + [-55, -51], + [-18, -37], + [-38, -20], + [-62, -66], + [-41, -60], + [-19, -23], + [-9, -33], + [-37, -48], + [-80, -151], + [19, -30], + [-3, -13], + [-60, -71], + [-76, -130], + [-14, -58], + [-12, -21], + [-49, -31], + [-59, -63], + [-25, -36], + [-33, 4], + [-46, -25], + [-50, -9], + [-55, 7], + [-16, 23], + [31, 154], + [31, 85], + [65, 132], + [21, 65], + [12, 77], + [-2, 38], + [-34, 41], + [-106, 39], + [-26, 5], + [-41, -3], + [-52, 6], + [0, 41], + [-18, 14], + [-22, -9], + [-28, 4], + [-44, -13], + [-27, 9], + [-26, -11], + [-23, -45], + [-22, -24], + [-50, 55], + [2, 37], + [-10, 46], + [-14, 20], + [-52, 50], + [-13, 0], + [-54, 29], + [-19, 65], + [-37, 11], + [-20, -13], + [-12, -24], + [-49, 53], + [-21, 55], + [-2, 18], + [-27, 23], + [-25, -2], + [-18, -16], + [-46, 42], + [-17, 54], + [-61, 31], + [-20, 27], + [-42, 92], + [-21, -2], + [-54, 37], + [-5, 16], + [-53, 4], + [-12, 25], + [1, 65], + [29, 9], + [23, 158], + [4, 39], + [-25, 15], + [-56, 55] + ], + [ + [91506, 47931], + [60, 65], + [32, 77] + ], + [ + [91144, 36752], + [67, 25], + [43, 34], + [13, 21], + [43, -9], + [44, 16], + [48, 38], + [30, 18], + [4, 34], + [28, -14], + [39, 5], + [47, 17], + [12, 39], + [10, 76], + [10, 45], + [22, 129], + [22, 169], + [13, 78], + [-3, 59], + [3, 44], + [17, 68], + [0, 117], + [-5, 60], + [-12, 64], + [-37, 81], + [-15, 104], + [1, 22], + [-34, 109], + [21, 1], + [37, -79], + [12, -36], + [31, -126], + [38, -207], + [-7, -108], + [-16, -187], + [-29, -222], + [-29, -181], + [-44, -217], + [-14, -20], + [-50, 15], + [-93, -11], + [-47, -18], + [-174, -76], + [-76, -25], + [-131, -73], + [-194, -117], + [-71, -59], + [-35, -37], + [-22, 5], + [40, 59], + [5, 57], + [10, 13], + [32, -6], + [22, 5], + [113, 77], + [101, 55], + [71, 28], + [30, 28], + [59, 13] + ], + [ + [91290, 38593], + [29, -24], + [-4, -33], + [31, -2], + [33, -57], + [20, -67], + [-6, -23], + [10, -80], + [-18, -16], + [-27, 23], + [-54, 13], + [-14, 17], + [28, 21], + [-1, 60], + [-22, 50], + [-16, 4], + [-31, 45], + [-8, 35], + [-40, 25], + [-6, 26], + [16, 10], + [51, -7], + [29, -20] + ], + [ + [90933, 40162], + [19, -128], + [41, -196], + [30, -164], + [42, -169], + [44, -154], + [24, -62], + [40, -128], + [37, -102], + [40, -91], + [71, -144], + [165, -397], + [33, -104], + [36, -87], + [-19, -20], + [-20, 50], + [-23, 34], + [-13, 40], + [-29, 41], + [-23, 56], + [-33, 56], + [3, 42], + [-5, 49], + [-54, 102], + [-36, 31], + [-20, 40], + [-83, 23], + [-5, 45], + [8, 29], + [-9, 20], + [-19, 1], + [-8, 37], + [3, 50], + [-19, 116], + [-11, 82], + [-37, 119], + [-15, 38], + [-52, 71], + [7, 39], + [-12, 65], + [-16, 16], + [-28, 7], + [-13, 28], + [7, 58], + [18, 26], + [-8, 61], + [-21, 23], + [-10, 32], + [2, 78], + [-23, 37], + [-31, 14], + [-14, 14], + [-6, 48], + [-16, 54], + [-14, 10], + [-37, -8], + [-15, 20], + [-46, 11], + [-23, -1], + [-58, 29], + [-29, -7], + [-19, -23], + [-5, -30], + [22, -60], + [15, -28], + [16, -14], + [44, -16], + [33, -46], + [40, 4], + [15, 22], + [17, -5], + [13, -92], + [-13, -54], + [53, -122], + [13, -66], + [11, -22], + [40, -10], + [-2, -36], + [-10, -35], + [6, -43], + [10, -32], + [18, -16], + [20, -41], + [-6, -16], + [3, -42], + [29, -47], + [3, -32], + [17, -23], + [24, -61], + [17, -76], + [-16, -25], + [-67, 51], + [-22, 23], + [-37, 64], + [1, 60], + [-15, 16], + [-55, 17], + [-64, 4], + [-104, 31], + [-41, 21], + [-27, 7], + [-37, -19], + [-22, -20], + [-4, -21], + [11, -40], + [-23, -23], + [-38, -11], + [-161, -32], + [-25, -25], + [1, -16], + [-46, -29], + [-41, 8], + [-49, 16], + [-42, 0], + [-21, -10], + [-10, -21], + [-36, -20], + [-59, 4], + [-104, -21], + [-18, -44], + [-42, -45], + [-15, -9], + [-15, -38], + [-61, -16], + [-41, -31], + [-62, 11], + [-29, 0], + [-24, -9], + [-25, 23], + [-27, 44], + [-21, 12], + [-31, 2], + [-40, -8], + [-34, -43], + [-25, -21], + [10, -45], + [-29, -47], + [-9, -22], + [5, -32], + [10, -19], + [34, -24], + [122, 4], + [39, 13], + [109, 6], + [39, 14], + [20, 14], + [43, 14], + [25, 24], + [116, 35], + [30, -31], + [1, -23], + [34, -52], + [42, 3], + [43, 9], + [84, 65], + [109, 39], + [69, 13], + [154, -1], + [20, -8], + [39, 8], + [71, -55], + [18, -35], + [-10, -58], + [15, -51], + [13, -22], + [50, -20], + [28, 10], + [28, 48], + [38, 29], + [1, 22], + [-38, 49], + [17, 13], + [72, 31], + [37, 3], + [55, -6], + [76, -43], + [15, -37], + [35, -22], + [6, -44], + [19, -43], + [31, -58], + [-2, -18], + [9, -47], + [26, -34], + [13, -41], + [1, -29], + [-23, -102], + [7, -8], + [20, -63], + [21, -123], + [-52, -55], + [-1, -43], + [9, -42], + [14, -32], + [-33, -39], + [-29, -17], + [-28, -29], + [5, -32], + [-41, -13], + [-74, -9], + [-27, 20], + [-15, 20], + [-66, -34], + [-22, -35], + [-3, -33], + [-15, -20], + [-54, -10], + [-17, -20], + [-18, -38], + [3, -44], + [-45, -24], + [-16, -23], + [2, -30], + [-6, -25], + [-22, -28], + [-3, -49], + [-27, -37], + [-22, 15], + [-24, 4], + [-25, -27], + [8, -54], + [-18, -33], + [-44, -24], + [-74, -29], + [-19, -27], + [0, -26], + [-42, 0], + [-31, 20], + [-44, 0], + [-55, 34], + [-33, 0], + [-23, -17], + [-32, 6], + [-41, 25], + [-57, 0], + [-10, -23], + [-46, 6], + [-17, 17], + [-25, 3], + [-21, -20], + [-61, 34], + [-8, 40], + [-23, 14], + [-25, -8], + [-19, -23], + [-25, 0], + [-25, 25], + [-42, 26], + [-109, -11], + [-48, 0], + [-27, -23], + [-15, -26], + [17, -56], + [31, -23], + [27, -9], + [63, -2], + [11, -9], + [90, -17], + [33, -20], + [19, -48], + [8, -45], + [0, -40], + [-19, -45], + [-23, -26], + [-8, -51], + [-19, -14], + [-31, -37], + [-27, -45], + [-7, -20], + [7, -63], + [-19, -48], + [-21, -17], + [-21, -48], + [-33, -12], + [-13, -42], + [-13, -20], + [-25, -17], + [-16, 0], + [-32, -25], + [-12, -23], + [0, -43], + [8, -31], + [25, -45], + [75, -9], + [40, 17], + [50, 6], + [69, 17], + [21, 25], + [2, 43], + [19, 45], + [11, 46], + [20, 16], + [52, -47], + [6, -22], + [1, -46], + [12, -74], + [36, -36], + [20, -31], + [118, -11], + [10, 14], + [-5, 27], + [-39, 75], + [-20, 23], + [16, 18], + [63, -31], + [56, -38], + [0, -21], + [-14, -27], + [-1, -26], + [11, -18], + [28, -21], + [-4, -53], + [-12, -8], + [-51, -67], + [-41, -71], + [-26, -25], + [-39, 2], + [-21, -26], + [-38, -18], + [-21, -36], + [-8, -39], + [0, -31], + [24, -18], + [36, 4], + [79, 88], + [34, 47], + [91, 91], + [75, 72], + [72, 93], + [65, 72], + [90, 109], + [34, 36], + [44, 68], + [9, 3], + [40, -17], + [14, -28], + [-69, -72], + [-120, -108], + [-178, -208], + [-143, -134], + [-143, -171], + [-118, -177], + [-82, -132], + [-56, -118], + [-22, -67], + [-35, 69], + [8, 37], + [2, 38], + [-56, 36], + [-73, 32], + [-45, 12], + [-62, 40], + [-32, -2], + [-62, 11], + [-80, 0], + [-88, -8], + [-166, -27], + [-156, -34], + [-76, -21], + [-197, -71], + [-61, -28], + [-73, -43], + [-60, -44], + [-151, -131], + [-262, -162], + [-53, -39], + [-122, -98], + [-47, -42], + [-98, -103], + [-49, -45], + [-48, -54], + [-49, -64], + [-49, -57], + [-45, -68], + [-121, -209], + [-24, -55], + [-53, -155], + [-14, -29], + [-70, -243], + [-23, -66], + [-35, -84], + [-19, -87], + [-6, -61], + [-19, -23], + [-68, 36], + [-22, 75], + [-143, 45], + [-77, 15], + [-76, 5], + [-183, -4], + [-201, -27], + [-232, -92], + [-60, -36] + ], + [ + [85957, 33350], + [-204, 234], + [-114, 133], + [-668, 764], + [-238, 271], + [-297, 350], + [-189, 211], + [-324, 358], + [-100, 86], + [-160, 2], + [-286, 2], + [-271, 8], + [-460, 10], + [-244, 7], + [-363, 5], + [-244, 3], + [-36, 14], + [28, 279], + [-46, 69], + [-186, 287], + [-53, 77], + [-42, -37], + [-156, -121], + [-30, 43], + [1, 61], + [9, 26], + [30, 17], + [7, 15], + [-21, 99], + [-87, 11], + [-277, 18], + [-475, 25], + [-509, 26], + [-198, 10], + [-546, 25], + [-167, 12], + [-57, 0], + [-178, 30], + [-172, -88], + [-76, -32], + [-36, -10], + [-85, -42], + [-194, -52], + [-1, -5], + [-144, -130], + [-33, -4], + [9, 26], + [-7, 19], + [-217, -72], + [-393, -139] + ], + [ + [85957, 33350], + [-24, -8], + [-57, -9], + [-163, -68], + [-78, -44], + [-109, -79], + [-75, -64], + [-93, -95], + [-140, -166], + [-129, -185], + [-39, -84], + [-23, -24], + [-81, -101], + [-32, -57], + [-63, -144], + [-22, -65], + [-9, -69], + [-19, -60], + [-34, -184], + [0, -41], + [15, -79], + [-29, -83], + [-14, -20], + [-37, -26], + [-42, -47], + [-15, -30], + [-85, -39], + [-71, -49], + [-13, -45], + [3, -18], + [-7, -37], + [-39, -111], + [-81, -7], + [-24, 8], + [-13, 21], + [-70, -19], + [-42, -16], + [-9, 36], + [-34, 43], + [-29, 7], + [-66, -36], + [-43, -37], + [-11, -38], + [-26, -31], + [-31, -67], + [0, -20], + [21, -47], + [38, 1], + [24, 19], + [6, -18], + [-12, -52], + [-102, -45], + [-46, -40], + [-74, -56], + [-14, -37], + [-32, -25], + [6, -31], + [-18, -19], + [-157, -73], + [-14, -27], + [-56, -28], + [-34, 5], + [-13, -29], + [10, -28], + [-4, -17], + [-33, -83], + [6, -27], + [-57, -49], + [-98, -64], + [-13, 0], + [-22, -33], + [-9, -25], + [-34, -19], + [-50, 3], + [-74, -17], + [-83, -33], + [-50, -30], + [-35, -47], + [-9, -35], + [-30, 19], + [-32, 5], + [-76, -62], + [-59, -37], + [-102, -96], + [-11, 1], + [-10, 31], + [-37, 13], + [-31, -24], + [-22, -28], + [-39, -12], + [-9, 14], + [-1, 37], + [-9, 18], + [-30, 14], + [-23, -16], + [-37, -1], + [-16, -49], + [-8, -42], + [9, -35], + [23, -55], + [40, -4], + [24, -32], + [7, -53], + [-30, -100], + [-21, -34], + [3, -26], + [-21, -18], + [-96, -52], + [-51, -42], + [-48, -22], + [-47, 1], + [-40, -34], + [-39, -12], + [-37, -17], + [-19, -81], + [-37, -40], + [-60, -102], + [-52, -51], + [-76, -45], + [-42, -32], + [-29, 9], + [-30, -9], + [-27, -25], + [-87, -121], + [25, -20], + [12, -23] + ], + [ + [4344, 68829], + [-41, -1], + [-21, 7], + [-27, 39], + [8, 55], + [-11, 28], + [-48, 64], + [-28, 6], + [-50, -25], + [-12, -20], + [-48, -15], + [-10, 17], + [17, 31], + [0, 26], + [-31, 25], + [-41, 10], + [-48, 52], + [20, 20], + [4, 44], + [-36, 42], + [29, 95], + [-7, 62], + [-14, 42], + [-14, 18], + [-30, 11], + [-42, -2], + [-44, -19], + [-13, 50], + [-46, 47], + [-44, 17], + [-18, 24], + [-34, 14], + [-13, 31], + [32, 82], + [38, 49], + [18, 63], + [29, 28], + [62, 99], + [16, 51], + [1, 67], + [37, 10], + [31, -21], + [34, 36], + [24, -15], + [3, -21], + [19, -5], + [-7, -81], + [7, -25], + [63, -28], + [66, -54], + [17, -27], + [1, -31], + [-46, -38], + [-51, -1], + [-31, 32], + [-46, 9], + [-35, -11], + [-10, -62], + [-54, -11], + [-1, -15], + [-30, -47], + [2, -42], + [69, -8], + [46, -31], + [39, -66], + [20, -67], + [13, -18], + [18, -73], + [-25, -44], + [32, -63], + [17, -62], + [12, -6], + [46, 22], + [6, 41], + [-27, 54], + [23, 2], + [41, -8], + [55, -65], + [24, -36], + [32, -23], + [57, -22], + [46, -5], + [5, -85], + [37, -49], + [6, -30], + [-1, -41], + [-15, -40], + [-34, -34], + [2, -34], + [-27, -12], + [-13, 17] + ], + [ + [3875, 70535], + [13, 0], + [25, -41], + [34, -28], + [59, -33], + [11, -48], + [-50, 20], + [-37, -20], + [-38, -8], + [-17, 7], + [-9, 23], + [7, 41], + [-3, 74], + [5, 13] + ], + [ + [3754, 70586], + [37, -31], + [5, -15], + [40, -55], + [-35, -63], + [-52, -10], + [-25, 65], + [-16, 21], + [-1, 25], + [28, 49], + [19, 14] + ], + [ + [3782, 70617], + [47, 22], + [32, -50], + [-17, -5], + [-37, 13], + [-25, 20] + ], + [ + [3595, 70568], + [-9, -14], + [7, -27], + [27, -22], + [29, -36], + [-3, -26], + [-19, -17], + [-11, -38], + [3, -18], + [18, -13], + [-3, -23], + [-40, -36], + [-29, -17], + [-7, -73], + [13, -15], + [19, -50], + [-18, -27], + [-25, 4], + [-90, -15], + [-36, 11], + [8, 34], + [-26, 3], + [-20, 15], + [-5, 26], + [-19, 19], + [-66, -25], + [-143, 23], + [-53, 49], + [-97, 33], + [-40, 32], + [-41, 61], + [3, 46], + [-27, 36], + [6, 43], + [-22, 20], + [-24, -2], + [-10, 25], + [14, 28], + [32, 38], + [50, 4], + [29, -9], + [53, 6], + [17, -25], + [-6, -38], + [50, -15], + [27, -24], + [22, -33], + [27, -14], + [35, -7], + [51, 3], + [3, 20], + [-17, 21], + [-40, 5], + [-33, 29], + [20, 20], + [-33, 31], + [-14, 23], + [47, 33], + [25, 53], + [39, 31], + [8, 13], + [66, 53], + [13, 33], + [45, 17], + [44, 4], + [35, -7], + [79, -35], + [61, -47], + [107, -45], + [-22, -31], + [-54, -36], + [-15, -5], + [-33, -36], + [18, -44] + ], + [ + [2854, 70778], + [23, 0], + [70, -42], + [32, -29], + [46, -59], + [-25, -1], + [-28, 11], + [-151, 81], + [-40, 36], + [2, 13], + [44, 2], + [27, -12] + ], + [ + [3175, 70862], + [34, 2], + [4, -62], + [-30, -33], + [-39, -14], + [11, 36], + [-20, 15], + [-43, 10], + [56, 44], + [27, 2] + ], + [ + [3157, 71579], + [26, -63], + [-73, -5], + [-43, 2], + [-13, 65], + [103, 1] + ], + [ + [3789, 70910], + [50, -77], + [10, -24], + [35, -14], + [49, -53], + [16, -64], + [-48, 17], + [-71, 73], + [-34, 77], + [-19, 14], + [-31, 0], + [-6, 37], + [12, 43], + [37, -29] + ], + [ + [14545, 63992], + [-560, 8], + [-490, -2], + [-229, 3], + [-733, 5], + [-240, -2], + [-352, 1], + [-339, 0], + [-336, 1], + [-576, -3], + [-39, -52], + [-35, -25], + [-123, -67], + [-61, -25], + [-81, -13], + [-48, 1], + [-57, 12], + [-58, 18], + [-122, -17], + [-100, -31], + [-207, -37], + [-69, 6], + [-87, 43], + [-54, -15], + [-43, -35], + [-86, -123], + [-192, -29], + [-55, 5], + [-370, -90], + [-261, -98], + [-54, -28], + [-75, -91], + [-359, -67], + [-146, -12], + [-44, 14], + [-30, 25], + [-70, 72], + [-59, 20], + [-81, -2], + [-63, -39], + [-38, -36], + [-185, -75], + [-125, -37], + [-27, -26], + [-85, -50], + [-52, 38], + [-224, -10], + [-42, -15], + [-202, -43], + [-9, 51], + [-29, 54], + [-179, 73], + [-48, 12], + [-65, -4], + [-54, -26], + [-41, 3], + [-73, 18], + [-111, 59], + [-19, 5], + [-174, -52], + [-151, -28], + [-51, -2], + [-142, 32], + [-104, -34], + [-65, -57], + [2, -22], + [-14, -19], + [-139, -80], + [-221, -99], + [-19, -5], + [-53, 7], + [-80, -17], + [-34, -34], + [-88, -41], + [-33, -10], + [-52, -1], + [-68, 12], + [-40, 53], + [-51, 17], + [-208, 18], + [-283, 67], + [-57, 21], + [-118, 66], + [-48, 33], + [-20, 58], + [4, 49], + [23, 88], + [-2, 62], + [-15, 54], + [-49, 74], + [-1, 38], + [20, 65], + [1, 43], + [-54, 235], + [-131, 251], + [-37, 59], + [-394, 256], + [-94, 10], + [-87, -42], + [-125, -70], + [-169, 4], + [-111, 89], + [6, 120], + [-37, 52], + [-51, 45], + [-17, 5], + [-118, -27] + ], + [ + [2204, 64657], + [0, 17], + [-64, -13], + [-59, -1], + [-104, 17], + [-18, 14], + [-3, 60], + [-37, 23], + [-44, -10], + [-8, -32], + [-24, 4], + [-34, -38], + [-29, -1], + [-38, 25], + [-19, -3], + [-129, -110], + [-63, 14], + [-19, 15], + [-65, 65], + [-28, 36], + [-2, 20], + [-28, 24], + [-65, 17], + [-18, -18], + [-16, -63], + [-10, -19], + [-32, 7], + [-36, -29], + [-2, 19], + [10, 55], + [22, 77], + [11, 150], + [2, 57], + [1, 212], + [-9, 159], + [-12, 114], + [-3, 74], + [13, 30], + [27, 8], + [23, -38], + [-31, -20], + [3, -13], + [51, -88], + [1, -47], + [-6, -82], + [-10, -89], + [10, -84], + [47, -8], + [13, 23], + [2, 50], + [26, 3], + [20, -42], + [46, 10], + [42, 77], + [45, 37], + [5, 37], + [-17, 37], + [-25, 27], + [-23, 67], + [-49, 37], + [-7, 25], + [-3, 57], + [37, 12], + [35, 23], + [-2, 57], + [14, 15], + [37, 13], + [57, 38], + [25, 9], + [10, 36], + [-30, 28], + [-27, 7], + [-30, 50], + [-33, -9], + [-11, -14], + [0, -37], + [-60, -3], + [-37, 27], + [-20, -29], + [11, -54], + [-38, 12], + [-18, -14], + [-35, 17], + [-37, 27], + [-7, 15], + [-32, 20], + [-33, 3], + [-29, 28], + [3, 27], + [-3, 70], + [-9, 66], + [-12, 65], + [-28, 110], + [-28, 65], + [51, 17], + [32, -29], + [6, -14], + [2, -70], + [30, -16], + [33, 23], + [11, 52], + [24, 19], + [42, 13], + [8, 17], + [46, 29], + [51, -2], + [79, 30], + [60, 17], + [42, 22], + [-30, 32], + [-41, 27], + [-76, -5], + [-16, 5], + [-21, 25], + [-61, -4], + [-38, 12], + [-14, 16], + [27, 32], + [-22, 19], + [-17, 47], + [-74, 28], + [-75, 3], + [-29, -2], + [-36, -16], + [-19, -36], + [22, -82], + [3, -44], + [25, -69], + [-31, -9], + [-32, -27], + [-40, -8], + [16, 81], + [4, 91], + [-8, 181], + [-6, 68], + [-13, 80], + [2, 23], + [-13, 32], + [-12, 69], + [-24, 111], + [-51, 175], + [-11, 19], + [-28, 23], + [-26, 2], + [-28, 51], + [-25, 59], + [-36, 18], + [-9, 30], + [-5, 54], + [-19, 68], + [-15, 185], + [-21, 143], + [-5, 5], + [-14, 87], + [-16, 55], + [-13, 71], + [-26, 84], + [-30, 65], + [-15, 86], + [-19, 53], + [-44, 48], + [-42, 11], + [-10, 70], + [-14, 49], + [-16, 14], + [-27, 0], + [-51, 37], + [-34, 48], + [-8, 25], + [-48, 30], + [-39, 5], + [-30, 20], + [-37, 120], + [-50, 73], + [3, 46], + [-16, 84], + [-12, 84], + [-15, 24], + [-5, 27], + [2, 45], + [15, 29], + [-15, 41], + [-49, 97], + [-19, 18], + [0, 24], + [52, 36], + [14, 36], + [11, 53], + [-29, 51], + [40, 39], + [7, 26], + [8, 75], + [20, 10], + [13, 80], + [-21, 26], + [-50, 22], + [-31, 41], + [-25, 12], + [-9, 26], + [28, 22], + [41, -2], + [77, 4], + [26, -13], + [15, -23], + [63, 14], + [13, -21], + [33, -19], + [15, 4], + [48, -45], + [25, -2], + [28, -15], + [179, -107], + [35, -30], + [27, -11], + [36, 8], + [36, -25], + [80, -24], + [7, -23], + [44, -12], + [62, 20], + [38, -23], + [47, -17], + [96, -48], + [73, -27], + [-10, -42], + [66, -26], + [39, -30], + [130, -33], + [48, 2], + [38, -12], + [36, -4], + [66, 3], + [40, -16], + [50, 10], + [100, -7], + [40, 14], + [52, 5], + [19, -11], + [29, 21], + [56, -10], + [66, -32], + [16, -28], + [70, -10], + [31, 14], + [26, 25], + [17, 2], + [30, -14], + [24, -26], + [28, -9], + [63, 5], + [33, 15], + [31, 3], + [-6, -42], + [33, -16], + [55, -10], + [63, 4], + [53, -7], + [33, 2], + [49, 18], + [15, -9], + [59, -4], + [59, 29], + [47, 42], + [51, 56], + [36, 25], + [23, -3], + [-20, -46], + [50, -16], + [58, -58], + [36, -17], + [29, -45], + [22, -54], + [41, 10], + [23, 13], + [46, 14], + [62, 7], + [52, -18], + [-18, -63], + [17, -21], + [76, -28], + [53, 17], + [-15, 30], + [-39, 26], + [-7, 62], + [11, 26], + [80, 59], + [92, 22], + [44, 0], + [21, -66], + [-82, -50], + [-16, -24], + [58, -86], + [7, -23], + [45, 12], + [6, 51], + [-17, 7], + [28, 48], + [65, 30], + [13, -16], + [-1, -24], + [18, -112], + [25, -27], + [-2, -38], + [-32, -22], + [-27, 20], + [-40, -21], + [9, -51], + [32, -37], + [33, -2], + [13, -34], + [-15, -37], + [5, -19], + [45, -14], + [12, -25], + [-7, -41], + [33, -38], + [50, -6], + [-40, -32], + [-9, -22], + [-25, -5], + [-30, 9], + [-51, 1], + [22, -44], + [-13, -48], + [-57, -47], + [-23, -8], + [-30, -23], + [-5, -67], + [-14, -41], + [-1, -30], + [34, -25], + [14, 4], + [19, 28], + [15, 49], + [45, 26], + [16, 57], + [63, 61], + [46, 28], + [28, 52], + [64, 2], + [1, 41], + [-24, 71], + [-4, 27], + [-15, 19], + [-38, 12], + [-1, 35], + [25, 4], + [4, -22], + [18, -23], + [19, -6], + [61, -3], + [40, -33], + [25, -64], + [2, -42], + [13, -82], + [7, -13], + [37, -27], + [-5, -29], + [-19, -18], + [0, -26], + [44, -52], + [0, -41], + [-31, -16], + [-36, -1], + [-22, 8], + [-65, -2], + [21, -87], + [23, -16], + [36, 10], + [13, -24], + [0, -34], + [-8, -37], + [-18, -50], + [47, -41], + [-13, -43], + [4, -50], + [8, -23], + [27, -13], + [-46, -22], + [-27, -3], + [-30, -20], + [-16, -24], + [1, -47], + [-7, -36], + [43, 1], + [42, -22], + [61, -13], + [29, -17], + [-15, -22], + [1, -20], + [49, -51], + [-12, -21], + [0, -102], + [4, -26], + [19, -13], + [61, -8], + [39, -26], + [-52, -19], + [-67, -40], + [-20, -26], + [-10, -30], + [-29, 3], + [-40, -23], + [-4, -13], + [-48, 8], + [-17, 31], + [4, 33], + [-48, 2], + [-8, -30], + [-29, -52], + [1, -29], + [70, 3], + [115, -99], + [51, -27], + [27, 7], + [38, 48], + [-28, 23], + [-38, 7], + [3, 15], + [37, 32], + [110, 43], + [51, 13], + [22, 18], + [-1, 109], + [-18, 42], + [-24, 19], + [-13, 66], + [-52, 22], + [28, 22], + [12, 56], + [-7, 17], + [-40, 35], + [-18, 33], + [5, 24], + [-9, 64], + [-21, 47], + [-21, 18], + [36, 20], + [27, 30], + [32, -32], + [51, 21], + [6, 20], + [-10, 25], + [-43, 38], + [-34, 19], + [-34, 5], + [-19, 15], + [-28, 48], + [41, 54], + [27, 54], + [24, 19], + [13, 51], + [-17, 50], + [4, 24], + [-26, 34], + [-5, 19], + [4, 60], + [5, 11], + [72, 83], + [25, 15], + [19, 58], + [-7, 27], + [22, 80], + [20, 33], + [7, 61], + [54, 18], + [54, 8], + [36, 29], + [6, 14], + [-11, 28], + [4, 49], + [10, 24], + [-13, 33], + [-91, 51], + [-46, 59], + [-30, 31], + [-8, 18], + [-32, 12], + [-41, 72], + [1, 64], + [-10, 34], + [12, 24], + [3, 33], + [-19, 14], + [-25, 63], + [-19, 28], + [-55, 10], + [-16, 9], + [-37, -20], + [8, -35], + [14, -14], + [-24, -32], + [-28, -6], + [-16, -15], + [5, -54], + [62, -91], + [58, -44], + [60, -65], + [35, -66], + [-5, -17], + [-26, 7], + [-20, 20], + [-10, 33], + [-57, 62], + [-48, 28], + [-33, 41], + [-20, -3], + [-22, -22], + [-41, 34], + [-20, 70], + [-27, 56], + [-3, 65], + [8, 34], + [-1, 43], + [8, 24], + [50, 19], + [19, -13], + [36, 8], + [19, 39], + [107, -48], + [21, 14], + [6, 31], + [38, 46], + [-23, 41], + [-46, 57], + [-29, 20], + [-34, 9], + [-61, 55], + [-60, 12], + [-48, 47], + [-11, 35], + [-28, 23], + [-7, 52], + [13, 32], + [-11, 12], + [-34, -2], + [-12, -36], + [-61, -36], + [-66, -16], + [-45, 41], + [-9, 37], + [22, 8], + [23, 29], + [-5, 47], + [-13, 13], + [-46, -3], + [-21, -48], + [-22, 16], + [-1, 37], + [21, 48], + [32, 29], + [24, -13], + [105, 44], + [28, -2], + [3, -22], + [57, -10], + [20, -23], + [37, -81], + [19, 3], + [49, -18], + [54, 25], + [-22, 55], + [-3, 90], + [-36, 92], + [-51, 10], + [-5, 18], + [41, 6], + [31, -6], + [14, -28], + [18, -14], + [63, 28], + [22, 29], + [14, 45], + [-43, 58], + [-29, 8], + [-42, 44], + [-25, 33], + [-12, 34], + [-23, 109], + [44, 61], + [9, 35], + [-38, 17], + [-46, 46], + [-59, 8], + [-55, -19], + [-18, -32], + [-40, -36], + [-19, -31], + [22, -29], + [26, -15], + [12, -35], + [-17, -18], + [-28, 7], + [-30, 28], + [-51, 64], + [13, 38], + [36, 65], + [1, 28], + [-24, 4], + [-38, 41], + [-34, -6], + [-2, -29], + [-22, 6], + [4, 67], + [-15, 74], + [-10, 14], + [-117, 81], + [3, 24], + [61, 42], + [11, 25], + [-3, 24], + [-16, 20], + [-28, 10], + [-32, -27], + [-57, 18], + [-8, 15], + [10, 28], + [38, 48], + [42, 41], + [33, 14], + [-3, 14], + [652, 0], + [576, 0], + [646, -12], + [1163, 10], + [512, -1], + [2138, -2], + [509, 0], + [552, 0], + [549, 0], + [1191, -1], + [1428, 0], + [739, -2] + ], + [ + [97276, 55745], + [-755, 26], + [-295, 10], + [-451, 12] + ], + [ + [95775, 55793], + [-21, 0], + [-27, 141], + [10, 82], + [13, -2], + [8, 270], + [9, 228], + [19, 469], + [12, 348], + [11, 404], + [9, 51], + [-112, 229], + [-7, 6], + [-113, -12], + [-16, -25], + [-46, -112], + [-53, 38], + [-5, 11], + [18, 147], + [34, 97], + [61, 127], + [37, 91], + [-13, 36], + [-40, 57], + [-17, 60], + [-17, 185], + [-19, 61], + [4, 48], + [-1, 170], + [-9, 27], + [-48, 40], + [14, 93], + [72, 281], + [74, 88], + [48, 45], + [18, 366], + [36, 100], + [4, 27], + [-12, 95], + [-12, 60], + [-60, 117], + [-33, 28], + [-33, 44], + [-30, 109], + [47, 214], + [47, 191], + [-55, 126], + [36, 417], + [13, 42] + ], + [ + [95630, 61508], + [479, 12], + [132, -2], + [315, 5], + [318, -3], + [618, -26], + [446, 1], + [382, 9], + [242, 5], + [493, 5] + ], + [ + [99055, 61514], + [-4, -13], + [-47, -21], + [-13, -14], + [-1, -25], + [39, -93], + [42, -91], + [-3, -16], + [-143, -240], + [-96, -138], + [-6, -19], + [4, -45], + [49, -80], + [85, -181], + [31, -97], + [-81, -206], + [-36, -50], + [-150, -148], + [-54, -41], + [-67, -26], + [-32, 14], + [-59, -19], + [-38, -44], + [-3, -38], + [-347, -106], + [-18, -9], + [-87, -88], + [-17, -39], + [7, -210], + [21, -50], + [24, -31], + [-27, -110], + [-108, -313], + [-1, -38], + [11, -9], + [5, -47], + [-31, -80], + [-86, -83], + [-28, -131], + [-2, -70], + [-40, -87], + [-52, -60], + [-58, -35], + [-13, 0], + [-59, -80], + [-50, -171], + [-9, -51], + [9, -36], + [-123, -201], + [15, -46], + [0, -78], + [-33, -206], + [3, -80], + [12, -105], + [-78, -266], + [-24, -126], + [36, -119], + [-20, -272], + [-210, -352], + [1, -26], + [24, -121], + [62, -69], + [35, -22], + [23, -26], + [37, -89] + ], + [ + [19877, 41296], + [-2, 229], + [-1, 486], + [0, 220], + [-1, 306], + [0, 284], + [2, 356], + [6, 162], + [-4, 479], + [1, 375], + [0, 646], + [0, 351], + [0, 337], + [4, 2184], + [1, 917], + [1, 532], + [2, 952], + [4, 585], + [0, 83], + [3, 608], + [4, 1872], + [-2, 274], + [-2, 361] + ], + [ + [61992, 49819], + [-122, 14], + [-12, 25], + [-62, 43], + [-177, 243], + [-5, 19], + [8, 49], + [-4, 17], + [-142, 120], + [-38, 26], + [-23, 38], + [-178, -9], + [-81, -5], + [-424, -16], + [-377, -8], + [-150, -5], + [-196, -4], + [-178, -7], + [-198, -6], + [-131, -2], + [-343, -3], + [-292, -10], + [-302, -8], + [-337, -2], + [-198, 1], + [-264, -6], + [-112, -1], + [-275, -4], + [-253, -6], + [-369, -4], + [-478, -3], + [-266, 1], + [-157, 2], + [-465, 10], + [-287, 4], + [-188, 3], + [-253, 3], + [-312, 5], + [-217, 6], + [-230, 2] + ], + [ + [53904, 50341], + [23, 20], + [8, 26], + [-51, 111], + [-36, 38], + [-51, 12], + [-37, 26], + [-75, 101], + [-11, 36], + [14, 48], + [37, 31], + [75, 287], + [-14, 250], + [-12, 21], + [-60, 44], + [1, 106], + [26, 307], + [-115, 50], + [-16, 15], + [-8, 28], + [47, 180], + [-21, 118], + [-48, 22], + [-25, 27], + [-7, 24], + [36, 114], + [12, 100], + [-119, 233], + [-66, 2], + [-12, -46], + [-34, 2], + [-64, 56], + [-9, 19], + [-44, 187], + [3, 20], + [35, 46], + [4, 33], + [-8, 21], + [-41, 55], + [46, 40], + [37, 42], + [23, 196], + [-12, 29], + [-28, 17], + [-46, 49], + [-62, 104], + [-33, 75], + [5, 21], + [32, 14], + [10, 13], + [14, 112], + [-1, 17], + [-171, 137], + [-56, 36], + [-39, 17], + [-12, 68], + [-53, 143], + [-68, 79], + [-10, 25], + [-19, 97], + [6, 12], + [38, 9], + [25, 38], + [-12, 53], + [-86, 160], + [-16, 19], + [-45, 29], + [-18, 36], + [4, 123], + [4, 19], + [48, 62], + [13, 35], + [-1, 39], + [-8, 29], + [-20, 27], + [-24, 9], + [-64, 5] + ], + [ + [52642, 55146], + [-42, 21], + [-28, 47], + [7, 48], + [1, 52], + [-73, 188], + [-49, 76], + [-61, 56], + [-50, 37], + [-16, -7], + [-37, 28], + [-17, 79], + [14, 85], + [101, 144], + [28, 8], + [25, 20], + [15, 47], + [57, 219], + [2, 67], + [-6, 144], + [87, 86], + [55, 148], + [-73, 253], + [-18, 8], + [-133, 0], + [-51, 111], + [-4, 15], + [32, 54], + [32, -7], + [40, 18], + [9, 32], + [8, 157], + [-5, 50], + [-25, 1], + [-37, 30], + [-68, 69], + [-16, 42], + [5, 15], + [30, 30], + [-6, 40], + [-22, 40], + [271, 0] + ], + [ + [65491, 40029], + [-40, 69], + [-18, 48], + [-3, 20], + [9, 30], + [26, 32], + [47, 10], + [51, -12], + [29, -11], + [21, -30], + [10, -33], + [4, -43], + [-12, -41], + [-24, -40] + ], + [ + [65717, 40031], + [31, 99], + [24, 89], + [22, 102], + [20, 28], + [40, 15], + [32, 3], + [25, -30], + [35, -67], + [42, -56], + [22, -16], + [61, 11], + [25, 27], + [21, 54], + [9, 69], + [19, 31], + [24, 23], + [5, 56], + [-51, 110], + [-3, 24], + [6, 35], + [25, 36], + [28, 14], + [50, -10], + [22, -9], + [13, 84], + [-104, 70], + [4, 58], + [55, 29], + [87, 244], + [-59, 96] + ], + [ + [74272, 46608], + [61, 24], + [39, 59], + [22, 21], + [42, -6], + [25, -19], + [54, -83], + [9, -9], + [98, -60], + [22, -8], + [32, 0], + [174, 51], + [30, 22], + [113, -21], + [198, -168], + [40, -53], + [131, -286], + [4, -32], + [-2, -68], + [4, -58], + [11, -33], + [37, -38], + [249, -81], + [51, 1], + [122, 41], + [31, 1], + [34, -9], + [74, -39], + [63, -17], + [31, -23], + [141, -197], + [8, -33], + [21, -23], + [154, -56], + [29, -5], + [26, 12], + [13, 26], + [12, 69], + [18, 23], + [21, 12], + [153, 45], + [39, -1], + [267, -107], + [66, -45], + [17, -21], + [7, -26], + [71, -50], + [233, 44], + [27, 12], + [28, 43], + [180, 210], + [35, 11], + [61, -10], + [20, 7], + [47, 37], + [36, 17], + [55, 16], + [28, -13], + [15, -30], + [2, -44], + [-6, -30], + [7, -80], + [30, -170], + [12, -40], + [14, -23], + [36, -34], + [57, -32], + [109, -2], + [64, -43], + [11, -14], + [47, -77], + [134, -212] + ], + [ + [103139, 58387], + [13, -14], + [-25, -30], + [-12, 23], + [24, 21] + ], + [ + [102916, 58778], + [8, -34], + [-27, -15], + [-7, 17], + [15, 84], + [24, -28], + [-13, -24] + ], + [ + [106281, 60269], + [8, 5], + [62, -21], + [-16, -49], + [19, -15], + [33, -40], + [-12, -42], + [-36, -15], + [-8, 22], + [-23, 110], + [-26, 10], + [-1, 35] + ], + [ + [101629, 58323], + [46, 12], + [-24, -47], + [-3, -31], + [-28, -36], + [-26, 25], + [-1, 24], + [36, 53] + ], + [ + [101533, 58108], + [-36, -51], + [-29, -24], + [-9, 21], + [20, 53], + [29, 30], + [25, -29] + ], + [ + [101505, 58157], + [-12, -24], + [-28, -27], + [-12, 9], + [23, 49], + [20, 9], + [9, -16] + ], + [ + [101546, 58181], + [33, 24], + [20, -3], + [-35, -50], + [-26, -14], + [-10, 21], + [18, 22] + ], + [ + [101688, 58200], + [-57, -34], + [33, 49], + [24, -15] + ], + [ + [103935, 58613], + [-4, -38], + [12, -30], + [-20, -36], + [-13, 23], + [-8, 46], + [-19, 1], + [10, 47], + [25, 17], + [17, -30] + ], + [ + [103630, 58972], + [-63, -80], + [-28, 13], + [58, 90], + [27, -2], + [6, -21] + ], + [ + [104423, 58989], + [-32, 16], + [-23, -11], + [-23, 4], + [17, 60], + [-7, 50], + [-13, 41], + [63, 31], + [18, 21], + [15, -5], + [48, -61], + [-12, -30], + [-19, 0], + [-20, -84], + [2, -30], + [-14, -2] + ], + [ + [104111, 59092], + [-9, 1], + [-31, -45], + [-104, -27], + [-21, 0], + [-29, 18], + [-19, 87], + [-25, 46], + [9, 63], + [-64, -1], + [15, 52], + [33, 45], + [53, 29], + [19, 18], + [58, 41], + [42, 9], + [12, -64], + [49, -38], + [0, -24], + [-48, 1], + [-5, -17], + [9, -36], + [17, 1], + [30, -59], + [33, -37], + [5, -22], + [-29, -41] + ], + [ + [103819, 59667], + [43, 72], + [0, 65], + [15, 74], + [15, 35], + [45, 20], + [20, -13], + [15, -43], + [-21, -50], + [-39, -25], + [-7, -32], + [17, -48], + [-32, -58], + [-23, -94], + [-18, -25], + [-36, -30], + [-18, 58], + [-22, 20], + [4, 19], + [42, 55] + ], + [ + [104644, 59271], + [14, -37], + [-21, -25], + [-26, 9], + [-3, 25], + [14, 30], + [22, -2] + ], + [ + [104906, 59273], + [22, 7], + [30, -44], + [-14, -23], + [-50, 0], + [-22, 27], + [21, 30], + [13, 3] + ], + [ + [104730, 59437], + [28, -5], + [25, 7], + [74, -91], + [-22, -36], + [-58, -54], + [-20, -7], + [-19, 23], + [2, 20], + [-17, 30], + [-43, 6], + [-31, -2], + [-10, 14], + [12, 25], + [39, 49], + [40, 21] + ], + [ + [104306, 59662], + [24, -7], + [17, -20], + [66, -33], + [22, -27], + [11, -35], + [-13, -59], + [-23, -25], + [11, -42], + [-44, -59], + [-51, -15], + [-2, -33], + [-20, -1], + [-19, 39], + [-32, 13], + [-21, 26], + [12, 87], + [-13, 22], + [-3, 28], + [41, 27], + [12, 37], + [26, 34], + [-1, 43] + ], + [ + [104912, 59460], + [41, 20], + [22, -20], + [-21, -18], + [-12, -51], + [-15, -6], + [-59, 37], + [27, 34], + [17, 4] + ], + [ + [104693, 59512], + [24, -18], + [12, -28], + [-10, -10], + [-48, 13], + [-5, 17], + [9, 44], + [18, -18] + ], + [ + [104099, 59557], + [42, -38], + [1, -23], + [-21, -26], + [-18, 2], + [-36, 22], + [-38, 11], + [-15, 25], + [-3, 24], + [22, 16], + [66, -13] + ], + [ + [105133, 59629], + [41, -8], + [-13, -15], + [-35, -14], + [-1, -30], + [-15, -11], + [-33, -3], + [-19, 17], + [4, 45], + [38, -2], + [24, 6], + [9, 15] + ], + [ + [104645, 59890], + [37, -126], + [-20, -15], + [-48, 28], + [-28, 22], + [3, 28], + [15, 35], + [4, 57], + [32, 3], + [5, -32] + ], + [ + [100541, 56585], + [-97, 51], + [-134, 124], + [-10, 45], + [10, 100], + [22, 122], + [-32, 20], + [-10, 21], + [-45, 35], + [-87, 105], + [-13, 28], + [-26, 30], + [-40, 11], + [-28, 25], + [-31, 81], + [-7, 39], + [2, 57], + [42, 149], + [18, 93], + [-15, 61], + [13, 17], + [4, 30], + [-36, 44], + [-17, 330], + [0, 35], + [-13, 196], + [-8, 307], + [-15, 451], + [-14, 417], + [-9, 208], + [-29, 680], + [-15, 367], + [-42, 666], + [-29, 516], + [-17, 205] + ], + [ + [99833, 62251], + [100, 18], + [41, 16], + [35, 44], + [73, -4], + [61, -57], + [19, -108], + [20, -69], + [22, -18], + [52, -14], + [33, 22], + [58, 222], + [1, 132], + [-30, 32], + [-3, 24], + [50, 61], + [32, 16], + [51, -8], + [19, -17], + [0, -23], + [26, -32], + [33, -22], + [97, -32], + [15, -2], + [32, 16], + [15, 59], + [-16, 53], + [-28, 40], + [-48, 22], + [-75, 87], + [-12, 52], + [2, 19], + [39, 45], + [27, 43], + [-3, 36], + [53, 57], + [176, 173], + [177, 117], + [34, 7], + [101, 132], + [-38, 95], + [40, 21], + [15, 41], + [85, 84], + [64, 17], + [44, 33], + [40, 40], + [17, 38], + [25, 103], + [-47, 48], + [-86, 22], + [-3, 113], + [5, 122], + [39, 75], + [10, 11], + [60, 19], + [26, 104], + [-74, 69], + [-27, 42], + [158, 353], + [36, 47], + [25, 21], + [77, 27], + [143, 120], + [62, 396], + [49, 307], + [332, 454], + [469, 630], + [637, 845], + [145, -28], + [169, -41], + [24, -15], + [21, -59], + [-19, -15], + [4, -31], + [-27, -25], + [7, -299], + [31, -39], + [96, -52], + [74, -36], + [29, -21], + [47, -49], + [89, 38], + [242, 116], + [266, 120], + [196, 27], + [211, 146], + [52, 11], + [92, 1], + [82, -15], + [30, -15], + [131, -87], + [369, -289], + [11, -43], + [25, -44], + [87, -116], + [79, -67], + [57, -28], + [48, -34], + [2, -13], + [0, -750], + [14, -1226], + [1, -849], + [24, -104], + [9, -206], + [-31, -10], + [-40, -32], + [-9, -22], + [-21, -255], + [27, -40], + [91, -26], + [202, -136], + [157, -47], + [80, -18], + [36, -2], + [20, 19], + [-2, 16], + [24, 8], + [50, -3], + [45, -60], + [9, -72], + [-9, -121], + [-43, 20], + [-27, -5], + [-75, -51], + [56, -159], + [24, -15], + [57, -67], + [14, -34], + [-13, -89], + [-57, -109], + [-48, -24], + [-7, -26], + [48, -94], + [109, -197], + [95, -91], + [27, -11], + [64, 49], + [5, 42], + [22, 66], + [37, 9], + [204, -72], + [60, -77], + [31, -50], + [40, -110], + [-28, -7], + [-22, -23], + [33, -30], + [33, -39], + [14, -26], + [12, -46], + [25, -36], + [31, -104], + [9, -14], + [58, -53], + [33, -16], + [-11, -76], + [23, -64], + [-35, -31], + [19, -61], + [22, -13], + [42, 12], + [3, -14], + [-20, -19], + [-34, 0], + [-29, -41], + [-46, -49], + [-44, -16], + [-35, 11], + [-2, -28], + [-19, -42], + [-47, -1], + [-9, -60], + [-47, -56], + [-19, -4], + [-17, -25], + [-13, -37], + [-27, -18], + [-31, 1], + [-10, -18], + [5, -25], + [-44, -16], + [-40, -5], + [-32, 9], + [-42, -36], + [2, -39], + [-38, -30], + [-40, -2], + [-15, 28], + [23, 10], + [32, 53], + [2, 36], + [-32, 27], + [3, 81], + [14, 13], + [2, 23], + [-17, 4], + [-88, -21], + [-39, -43], + [-8, -31], + [26, -43], + [7, -52], + [-27, -31], + [-20, 17], + [-19, -60], + [-24, -14], + [-17, 27], + [-43, -5], + [-26, -20], + [-64, 51], + [-3, 27], + [-22, 20], + [-32, -9], + [-21, -29], + [-17, 12], + [-17, -17], + [-42, -149], + [10, -10], + [14, -44], + [-11, -21], + [-150, -14], + [-22, 31], + [-47, -1], + [-32, -24], + [7, -30], + [-8, -28], + [-20, -24], + [-16, 8], + [-38, -3], + [6, 30], + [-6, 44], + [-20, 43], + [-25, 12], + [-22, -12], + [-4, -58], + [-30, 0], + [-15, 23], + [-6, 36], + [-39, 34], + [-19, 3], + [-11, -18], + [5, -22], + [-25, -48], + [9, -98], + [-28, -33], + [-4, -38], + [32, -71], + [-6, -23], + [-26, 13], + [-18, 27], + [-16, -6], + [-9, -59], + [-14, -39], + [-23, 63], + [-3, 28], + [-32, -4], + [-1, -42], + [-46, 11], + [-10, -10], + [0, -34], + [-33, -30], + [-12, 0], + [-28, 49], + [-19, 2], + [-16, -26], + [10, -17], + [-38, -75], + [-18, -7], + [2, -36], + [-12, -32], + [-33, 12], + [-16, 31], + [-4, 64], + [-28, -6], + [-20, 36], + [-16, 42], + [-1, 49], + [-13, 62], + [9, 56], + [-15, 27], + [-52, 9], + [-37, -30], + [-44, 4], + [9, 17], + [-4, 22], + [-41, 13], + [-25, -32], + [6, -39], + [-38, 17], + [-15, 31], + [-17, 2], + [-16, -62], + [-20, -21], + [-32, -5], + [6, -41], + [50, 19], + [39, -18], + [7, -32], + [-12, -15], + [64, -61], + [22, 4], + [36, -58], + [18, -65], + [2, -38], + [-34, -55], + [-77, -46], + [-78, 1], + [-26, -12], + [-17, -19], + [-1, -25], + [15, -48], + [-50, -57], + [-41, -5], + [-6, 16], + [-42, 22], + [-23, 24], + [-22, -1], + [-22, 13], + [-34, 56], + [-12, 52], + [-9, 9], + [0, 35], + [35, 24], + [4, 18], + [-21, 17], + [21, 51], + [25, 20], + [-3, 31], + [57, 36], + [18, 4], + [-2, 27], + [-25, 52], + [-28, 19], + [-9, -33], + [-45, -50], + [-32, 8], + [2, 64], + [6, 31], + [-18, 23], + [-30, -2], + [-16, -27], + [9, -62], + [-10, -35], + [6, -50], + [-32, -1], + [-9, 26], + [19, 40], + [-14, 72], + [-26, -7], + [-10, -40], + [-27, -2], + [-38, -39], + [-38, 15], + [-21, -23], + [13, -51], + [18, -7], + [8, -42], + [-33, -55], + [-7, -39], + [20, -43], + [33, -2], + [13, -24], + [5, -36], + [17, -28], + [-19, -39], + [12, -35], + [-3, -20], + [-48, 22], + [-22, 29], + [-19, 12], + [-57, 55], + [-23, 2], + [-26, 28], + [-99, 32], + [-79, 57], + [-14, 17], + [-24, 7], + [-30, -4], + [-18, -23], + [-43, -32], + [-60, 11], + [-2, 11], + [13, 83], + [12, 32], + [-7, 33], + [-6, 85], + [12, 48], + [25, 17], + [30, 71], + [4, 28], + [-49, -13], + [-36, -16], + [-55, -44], + [-40, -42], + [-12, 6], + [-10, 36], + [-16, 18], + [-50, -10], + [-8, -24], + [-27, -24], + [-67, -7], + [-16, -28], + [23, -73], + [33, -28], + [24, -49], + [-12, -80], + [-8, -24], + [-38, -46], + [-46, -4], + [-2, -52], + [-23, -43], + [-23, -21], + [-20, -38], + [-4, -47], + [-17, -48], + [-5, -62], + [-13, -15], + [-31, -1], + [-6, -21], + [10, -68], + [-8, -30], + [-39, -34], + [0, -27], + [22, -21], + [61, 24], + [24, -7], + [22, -33], + [-35, -28], + [-25, 5], + [-29, -37], + [11, -23], + [-38, -18], + [-35, -26], + [-28, -29], + [7, -25], + [-46, -22], + [-40, -8], + [-43, -50], + [-8, -21], + [8, -19], + [-19, -45], + [-19, -16], + [-44, -10], + [-9, -16], + [-32, -10], + [-15, 56], + [-24, 35], + [-15, 1], + [-36, -36], + [-22, 3], + [27, 30], + [2, 14], + [-51, 31], + [-38, 1], + [-27, -26], + [-40, -1], + [-19, 19], + [-33, 14], + [-29, -32], + [-19, -1], + [-17, -56], + [-16, -98], + [-45, -58], + [-5, -28], + [-31, -79], + [-19, 18], + [-21, 78], + [-36, 15], + [-12, -23], + [10, -29], + [-14, -50], + [-29, 8], + [-14, -6], + [-5, -47], + [-48, -25], + [-1, 31], + [23, 13], + [6, 51], + [-11, 19], + [-18, -2], + [-16, -33], + [-3, -33], + [-12, -13], + [-25, 49], + [-28, -25], + [-6, -48], + [4, -34], + [-5, -32], + [-21, 0], + [-38, 64], + [-22, 22], + [-16, -5], + [-17, -32], + [-9, -60], + [-62, -77], + [-51, -2], + [4, -27], + [-106, -59], + [-7, -41], + [-30, -1], + [-7, 91], + [-18, 5], + [12, 41], + [-14, 42], + [-27, 6], + [-36, -14], + [-44, 20], + [-40, -36], + [-18, 4], + [-45, -42], + [-13, -20], + [-23, 4], + [-74, -17], + [13, 53], + [17, 27], + [38, 45], + [13, 28], + [-9, 34], + [-15, -3], + [-28, 30], + [5, 29], + [30, 25], + [8, 22], + [-30, 15], + [-24, -22], + [-40, -55], + [1, -17], + [-52, -5], + [-49, -26], + [-66, -44], + [-21, -27], + [0, -16], + [-41, -35], + [6, 32], + [-32, -4], + [-14, -47], + [5, -28], + [-43, -56], + [2, -38], + [-28, 0], + [-37, -55], + [-2, -21], + [25, -22], + [-3, -18], + [55, -84], + [-11, -73], + [5, -16], + [25, -10], + [8, -54], + [-17, -19], + [-26, 12], + [-22, -3], + [-23, -23], + [-33, 4], + [-20, 23], + [-49, -31], + [-16, -15], + [-64, -10], + [-36, -29], + [-33, -55], + [-11, -28], + [4, -67], + [20, -37], + [42, -32], + [-39, -20], + [-27, -39], + [-11, -41], + [-29, -4], + [-28, -13], + [-12, -17], + [5, -33], + [-32, -49], + [-44, -41], + [-36, 15], + [-60, -6], + [-33, -18], + [-34, -38], + [-17, -28], + [-42, -102], + [-16, -53], + [5, -29], + [29, -40], + [-23, -56], + [-58, -91], + [-28, -91], + [-8, -34], + [-31, -41], + [-20, -54], + [-13, -15], + [-58, -27] + ], + [ + [100323, 52870], + [-16, -5], + [-16, 28], + [12, 25], + [15, -20], + [5, -28] + ], + [ + [100742, 52579], + [40, -10], + [21, 3], + [19, -41], + [-5, -56], + [15, -38], + [36, -27], + [40, -12], + [10, -38], + [32, 3], + [22, 32], + [-1, 24], + [17, 26], + [25, 4], + [8, -61], + [-6, -40], + [2, -68], + [-5, -14], + [-84, -4], + [-78, 6], + [-114, 1], + [-206, -19], + [-43, -14], + [-27, -16], + [-31, -28], + [-8, -38], + [-13, -7], + [-49, 34], + [-33, 32], + [-36, 51], + [10, 16], + [40, 5], + [54, -20], + [26, 14], + [74, 112], + [31, 28], + [21, 56], + [27, 26], + [70, 50], + [85, 54], + [14, -26] + ], + [ + [101680, 52139], + [19, 4], + [36, 24], + [31, 32], + [27, 45], + [5, 52], + [-4, 19], + [-35, 52], + [30, -6], + [28, -43], + [108, -227], + [0, -36], + [-10, -30], + [-17, -13], + [-50, -20], + [-25, -4], + [-70, 12], + [-57, 5], + [-25, -9], + [-41, 3], + [-96, 34], + [-124, 68], + [-35, 14], + [-33, 34], + [-3, 22], + [27, -1], + [30, -17], + [8, -20], + [20, -13], + [39, 0], + [23, 11], + [134, -2], + [60, 10] + ], + [ + [95362, 54036], + [-18, 0], + [-21, 93], + [181, 670], + [109, 399], + [162, 595] + ], + [ + [97276, 55745], + [327, -12], + [320, -12], + [339, -13], + [544, -18], + [637, -20], + [90, 115], + [70, 2], + [49, -15], + [-8, 134], + [38, 45], + [30, 18], + [208, 97], + [76, 27], + [121, 49], + [54, 6], + [31, -10], + [70, -55], + [58, 29] + ], + [ + [100330, 56112], + [0, -55], + [23, -173], + [23, -88], + [38, -91], + [4, -16], + [-16, -28], + [27, -20], + [37, -9], + [27, -31], + [2, -15], + [73, -27], + [48, 62], + [35, 30], + [28, 8], + [18, -12], + [-5, -68], + [15, -9], + [36, 7], + [7, -30], + [-4, -34], + [-22, 0], + [-24, -16], + [-32, -71], + [-35, -46], + [-25, -1], + [-1, 20], + [-19, 12], + [-37, -43], + [-58, -15], + [-13, 14], + [-38, -17], + [-87, -22], + [-36, -25], + [-47, -4], + [-42, -9], + [9, -60], + [45, -8], + [21, -40], + [-9, -33], + [-41, -1], + [-41, -29], + [-14, -35], + [-13, -10], + [-26, 15], + [-25, 0], + [-25, -23], + [4, -50], + [9, -18], + [28, -8], + [14, -29], + [-57, 5], + [-13, 46], + [-1, 40], + [-31, -15], + [-1, -13], + [-41, -43], + [-14, -43], + [19, -39], + [14, -4], + [1, -32], + [35, -70], + [-19, -7], + [-21, 23], + [-43, -8], + [-16, -14], + [-17, -53], + [5, -27], + [23, -33], + [-10, -36], + [19, -43], + [13, -9], + [40, 2], + [34, 11], + [25, -21], + [46, 3], + [27, 49], + [-1, 28], + [-35, 16], + [15, 14], + [47, 2], + [2, -20], + [20, -38], + [36, -44], + [38, -2], + [36, -12], + [76, -34], + [30, -52], + [45, -45], + [15, -7], + [15, -99], + [15, -14], + [39, -76], + [40, -63], + [44, -49], + [3, -18], + [-16, -13], + [-2, -20], + [9, -45], + [-48, -34], + [-5, -40], + [8, -23], + [-21, -17], + [-15, 18], + [-17, 2], + [-30, -15], + [4, -20], + [21, -32], + [67, -66], + [27, 2], + [59, -54], + [34, 19], + [27, 6], + [57, -52], + [12, -32], + [1, -24], + [26, -45], + [12, -77], + [-30, -70], + [1, -39], + [44, -62], + [44, -44], + [42, -31], + [110, -43], + [69, -14], + [157, -11], + [29, -21], + [30, -31], + [45, 50], + [35, 24], + [50, 22], + [13, -3], + [76, 24], + [36, -3], + [49, 19], + [59, 16], + [73, 37], + [31, 33], + [8, 20], + [-1, 76], + [-9, 96], + [17, 26], + [-45, 30], + [-12, 76], + [-44, -4], + [-35, -70], + [-1, 98], + [-7, 118], + [-12, 67], + [-22, 53], + [-23, 27], + [-75, 46], + [-40, -5], + [-31, -24], + [-15, -27], + [3, -30], + [-28, 8], + [-20, 38], + [-27, 30], + [-22, 15], + [13, 23], + [23, 14], + [68, 10], + [54, -10], + [82, -27], + [63, -33], + [44, -36], + [47, -57], + [40, -71], + [48, -101], + [33, -96], + [43, -168], + [17, -90], + [14, -172], + [1, -125], + [-9, -55], + [-34, -73], + [-13, -4], + [-18, -30], + [-28, -115], + [-10, -69], + [-18, -27], + [-25, -2], + [1, 24], + [17, 24], + [14, 37], + [13, 80], + [26, 82], + [-5, 32], + [-38, 34], + [-33, 12], + [-28, -10], + [-112, -13], + [-96, -31], + [-33, 0], + [-60, -13], + [-102, -42], + [-20, -20], + [-6, -25], + [-15, 0], + [-3, 38], + [-10, 18], + [-30, 6], + [-57, -12], + [-31, 14], + [-41, -13], + [-18, -38], + [-57, -24], + [-68, -3], + [-15, -34], + [-30, -50], + [-28, -34], + [-32, -16], + [-54, -8], + [-69, -2], + [-96, -13], + [-42, -12], + [-18, -15], + [-20, -34], + [-40, -16], + [-55, -40], + [-54, -26], + [-43, -41], + [-7, -23], + [-54, -37], + [-51, -2], + [-34, -9], + [-41, -41], + [-17, -8], + [-67, -4], + [-47, -13], + [-38, -17], + [-2, 16], + [40, 40], + [31, -17], + [53, 19], + [52, 42], + [49, 20], + [49, 11], + [27, 34], + [24, 8], + [39, 37], + [17, 22], + [161, 107], + [8, 16], + [0, 39], + [21, 18], + [1, 27], + [-19, 56], + [23, 49], + [-23, 33], + [4, 16], + [24, 26], + [-16, 61], + [-29, 8], + [29, 30], + [38, 13], + [-2, 36], + [-33, 15], + [-23, -9], + [-25, 16], + [-71, 23], + [-19, 12], + [-14, -7], + [-5, -24], + [14, -26], + [7, -48], + [-4, -23], + [-46, 30], + [-20, -6], + [-13, -67], + [8, -34], + [-14, -32], + [-21, 23], + [-60, 14], + [-14, -26], + [22, -12], + [8, -24], + [-19, -17], + [-46, -1], + [-17, 11], + [-20, -12], + [9, -78], + [-13, -14], + [-22, 68], + [-7, 33], + [-30, 13], + [-45, -35], + [16, -22], + [8, -43], + [-20, 5], + [-17, 39], + [-18, -3], + [4, -39], + [-7, -25], + [-32, -13], + [20, -35], + [12, -63], + [-19, 0], + [-70, -25], + [-8, -25], + [-37, -22], + [-30, -7], + [-30, -25], + [-42, 17], + [-51, 9], + [-65, -30] + ], + [ + [99766, 52643], + [-26, 363], + [0, 48], + [-77, 20], + [-37, 17] + ], + [ + [99626, 53091], + [-54, 90] + ], + [ + [99572, 53181], + [-68, 105], + [-124, 71], + [-21, 66], + [3, 68], + [-3, 152], + [-25, 7], + [-44, -6], + [-10, 72], + [1, 242], + [-221, -4], + [-51, -5], + [-119, -3], + [-387, -15] + ], + [ + [72883, 63399], + [32, -8], + [11, -15], + [34, -2], + [45, 10], + [6, -21], + [-43, -22], + [41, -28], + [9, -70], + [-16, -19], + [-6, -25], + [10, -42], + [19, -31], + [6, -78], + [-8, -29], + [-33, -33], + [-39, -19], + [-7, -28], + [-52, -15], + [-105, 27], + [-22, 39], + [19, 66], + [29, 37], + [-9, 48], + [8, 60], + [26, 41], + [35, 34], + [13, 48], + [-3, 75] + ], + [ + [67081, 69342], + [19, 29], + [32, 30], + [80, 40], + [66, 19], + [59, 31], + [41, -24], + [44, 7], + [36, 30], + [41, 10], + [24, -2], + [45, 20], + [5, -51], + [-14, -10], + [-41, -9], + [-37, -26], + [-30, -39], + [-49, -40], + [-102, -70], + [-21, -24], + [8, -39], + [-11, -26], + [-168, -119], + [-90, -41], + [-100, -36], + [-37, -5], + [-75, -35], + [-38, 1], + [-87, -31], + [-35, -19], + [-10, -19], + [-73, -37], + [-11, -55], + [20, -16], + [29, 0], + [80, 18], + [-23, -28], + [-162, -60], + [-44, -23], + [-63, -15], + [-96, -43], + [-30, -17], + [-63, -12], + [-60, 19], + [-4, 24], + [-18, 23], + [-61, 4], + [12, 16], + [-50, 45], + [15, 32], + [39, 17], + [22, 47], + [65, 53], + [157, 83], + [143, 62], + [45, 25], + [99, 43], + [48, 3], + [37, 21], + [3, 15], + [108, 55], + [47, -4], + [71, 39], + [0, 23], + [82, 56], + [42, 23], + [39, 12] + ], + [ + [74695, 63543], + [-57, 74], + [-51, 31], + [8, 65], + [32, -6], + [40, -52], + [35, -91], + [20, -14], + [75, -31], + [44, 6], + [40, -12], + [113, -47], + [21, 15], + [3, 35], + [30, -56], + [88, -32], + [-27, -39], + [-3, -27], + [-41, -26], + [0, -20], + [-22, -13], + [-24, -1], + [-21, 11], + [-39, 4], + [-34, 11], + [-27, -4], + [-32, 17], + [-15, 43], + [-30, 25], + [-46, 64], + [-59, 33], + [-21, 37] + ], + [ + [71903, 61500], + [-42, -22], + [-33, -5], + [-39, 14], + [0, 39], + [24, 56], + [44, 21], + [46, -18], + [0, -25], + [-16, -22], + [16, -38] + ], + [ + [72015, 61880], + [51, -6], + [30, -12], + [24, -32], + [0, -45], + [-7, -19], + [-7, -66], + [13, -35], + [1, -26], + [-38, -17], + [-30, 19], + [-44, 58], + [-29, 22], + [-15, 23], + [-8, 90], + [10, 31], + [17, 15], + [32, 0] + ], + [ + [76815, 53236], + [-263, -8], + [-531, -23], + [-893, -33], + [-145, -6], + [-685, -22] + ], + [ + [70542, 53306], + [88, 62], + [112, 87], + [70, 64], + [112, 124], + [40, 62], + [29, 60], + [48, 146], + [103, 213], + [30, 85], + [35, 41], + [116, 157], + [35, 52], + [54, 93], + [64, 143], + [46, 120], + [23, 92], + [-1, 18], + [15, 29], + [29, 77], + [22, 92], + [17, 151], + [10, 63], + [18, 75], + [-7, 108], + [25, 67], + [13, 70], + [4, 69], + [-3, 110], + [-5, 53], + [-2, 124], + [2, 66], + [-6, 61], + [-4, 90], + [-19, 175], + [-11, 69], + [-22, 86], + [-11, 19], + [-8, 66], + [-49, 132], + [-66, 149], + [-148, 306], + [-22, 56], + [-51, 147], + [-25, 89], + [-38, 151], + [-19, 59], + [-76, 155], + [-18, 43], + [-16, 60], + [-5, 40], + [5, 64], + [17, 49], + [35, 52], + [53, 67], + [38, 54], + [30, 63], + [15, 45], + [11, 67], + [0, 62], + [-5, 38], + [-21, 86], + [-5, 72], + [-28, 133], + [-38, 76], + [-34, 53], + [-24, 65], + [0, 26], + [26, 44], + [100, 77], + [32, 35], + [54, 93], + [38, 82], + [32, 47], + [21, 54], + [15, 51], + [31, 34], + [21, 53], + [29, 61], + [59, 94], + [31, 140], + [7, 50], + [-7, 78], + [5, 79], + [19, 47], + [28, 120], + [6, 44], + [-9, 71], + [-12, 36], + [-41, 99], + [-9, 39], + [4, 58], + [15, 31], + [30, 18], + [112, 37], + [22, 19], + [73, -1], + [28, 8], + [32, 26], + [21, 43], + [8, 29], + [3, 88], + [11, 42], + [0, 34], + [-10, 77], + [-2, 49], + [10, 53], + [15, 13], + [38, 12], + [14, -21], + [40, -20], + [32, 1], + [22, 16], + [14, 22], + [11, 37], + [27, 28], + [39, 71], + [29, -1], + [45, -27], + [22, -37], + [19, -10], + [63, 3], + [53, 24], + [50, 71], + [17, 94], + [18, 21], + [28, 70], + [11, 11], + [53, 25], + [31, 27], + [27, 41], + [12, 60], + [35, 74], + [69, 104], + [22, -21], + [39, 5], + [40, 30], + [25, 46], + [20, -1], + [25, -53], + [-8, -30], + [-39, -25], + [-22, -33], + [-49, -3], + [-18, -10], + [-27, -55], + [10, -35], + [48, -107], + [19, -7], + [13, -23], + [0, -39], + [-58, -8], + [-4, -48], + [-42, -43], + [29, -35], + [8, -41], + [0, -120], + [-43, -15], + [-44, -118], + [-6, -63], + [1, -44], + [18, -53], + [9, -52], + [-7, -37], + [24, -20], + [32, -6], + [32, 9], + [5, 38], + [17, 61], + [67, 141], + [24, 24], + [4, 41], + [-42, 3], + [-21, 11], + [46, 55], + [12, 22], + [24, 87], + [1, 35], + [51, 40], + [32, 3], + [19, -76], + [-38, -18], + [-11, -66], + [-2, -49], + [7, -16], + [-17, -92], + [-20, -44], + [-19, -7], + [-39, -28], + [-30, -40], + [-8, -21], + [0, -51], + [-30, -75], + [41, -28], + [50, -2], + [42, 50], + [-8, 49], + [18, 42], + [46, 28], + [22, 25], + [5, 27], + [64, 116], + [5, 34], + [32, 42], + [19, 48], + [33, 171], + [-7, 50], + [2, 70], + [6, 24], + [21, 34], + [-1, 121], + [-19, 65], + [-6, 96], + [-12, 22], + [-4, 115], + [32, 90], + [30, 30], + [38, 28], + [51, 49], + [63, 5], + [20, 11], + [20, 28], + [31, 22], + [48, 44], + [51, 10], + [72, 24], + [166, -16], + [40, -7], + [20, 14], + [118, 23], + [80, 43], + [6, 25], + [-6, 37], + [-11, 11], + [-110, 19], + [-5, -22], + [-107, 40], + [-53, 57], + [-35, 45], + [-39, 113], + [-11, 45], + [-8, 74], + [14, 43], + [35, 36], + [26, 43], + [8, 30], + [25, 26], + [86, 31], + [26, 24], + [9, 21], + [48, 42], + [50, 61], + [3, 46], + [-16, 21], + [-59, 38], + [-23, 20], + [105, 0], + [52, -25], + [81, 5], + [48, -18], + [78, 6], + [20, 13], + [16, 43], + [-25, 28], + [38, 22], + [40, -17], + [32, 14], + [15, -3], + [19, -52], + [63, -25], + [5, -18], + [65, -23], + [74, -47], + [92, -49], + [30, -30], + [144, -95], + [36, 6], + [28, 36], + [26, 1], + [69, -35], + [87, 22], + [74, -28], + [37, -22], + [102, -25], + [36, -33], + [29, -43], + [43, -49], + [33, -29], + [24, -43], + [-1, -36], + [9, -47], + [24, -47], + [25, -20], + [37, -17], + [37, -3], + [51, 20], + [57, -15], + [37, 7], + [72, -2], + [56, -19], + [51, -45], + [44, -53], + [31, -29], + [65, -41], + [34, -7], + [29, 2], + [32, -15], + [63, 5], + [46, -43], + [54, -29], + [45, -33], + [83, -48], + [54, -13], + [37, 9], + [23, 18], + [44, -29], + [33, 28], + [15, -5], + [20, -35], + [60, -79], + [24, -17], + [19, -33], + [40, -28], + [24, -7], + [12, -20], + [-12, -35], + [-45, -23], + [12, -47], + [40, -60], + [29, -54], + [1, -24], + [16, -24], + [21, -4], + [20, -36], + [40, -13], + [-4, -33], + [19, -75], + [18, -22], + [14, -54], + [-1, -17], + [48, -90], + [-11, -8], + [-57, 22], + [-71, 23], + [-32, 23], + [-18, 30], + [-60, 20], + [-64, -32], + [-15, -17], + [-23, -48], + [15, -38], + [28, -22], + [-35, -45], + [12, -96], + [9, -29], + [25, -35], + [38, -20], + [20, -40], + [77, -43], + [60, -14], + [-1, -69], + [12, -28], + [26, -31], + [9, -92], + [-3, -119], + [12, -43], + [33, -38], + [-7, -62], + [-23, -92], + [-34, -59], + [-13, -53], + [-2, -34], + [4, -77], + [9, -62], + [-18, -65], + [1, -71], + [-17, -105], + [0, -39], + [10, -62], + [-23, -81], + [-2, -36], + [5, -45], + [-21, -27], + [-39, 8], + [-17, -13], + [-52, -65], + [-24, -18], + [-21, -56], + [-32, -18], + [-5, 20], + [-32, 14], + [-31, 3], + [-55, -16], + [-29, -31], + [-24, -33], + [-21, -53], + [-9, -74], + [-26, -106], + [0, -92], + [-10, -46], + [-28, -37], + [-4, -43], + [11, -32], + [-31, -6], + [-37, 4], + [-54, -9], + [-55, -41], + [-16, -39], + [15, -67], + [-119, -7], + [-37, -16], + [-45, 0], + [-76, 10], + [-36, -19], + [-40, -53], + [-15, -3], + [-23, -62], + [-2, -29], + [-30, -13], + [-18, -48], + [-2, -108], + [-15, -174], + [-6, -26], + [-47, -67], + [28, -89], + [56, -108], + [23, -21], + [84, -49], + [69, -4], + [67, -33], + [17, 12], + [82, -41], + [41, -53], + [63, -17], + [29, 21], + [66, 75], + [43, 54], + [60, 86], + [18, 3], + [4, 36], + [50, 43], + [16, 3], + [18, -18], + [49, 9], + [19, 22], + [19, 45], + [36, 52], + [-12, 26], + [16, 38], + [23, 33], + [28, 19], + [-3, 25], + [9, 36], + [32, 18], + [2, 13], + [57, 34], + [49, 58], + [1, 34], + [-29, 46], + [53, 14], + [25, 12], + [43, 39], + [25, 46], + [14, 44], + [64, 18], + [58, 6], + [28, -3], + [66, 19], + [46, 29], + [24, 6], + [53, -6], + [38, 13], + [23, 24], + [31, 64], + [10, 10], + [63, 10], + [43, 43], + [37, -10], + [35, 18], + [24, 3], + [48, -49], + [26, -15], + [80, -21], + [74, -34], + [19, -35], + [34, -6], + [48, -44], + [20, -43], + [34, -61], + [31, -77], + [27, -86], + [44, -40], + [22, -39], + [-8, -25], + [26, -28], + [29, -159], + [-2, -31], + [13, -41], + [14, -154], + [-2, -24], + [10, -168], + [12, -54], + [15, -94], + [38, -104], + [0, -15], + [22, -83], + [26, -67], + [0, -38], + [8, -137], + [-3, -49], + [13, -38], + [1, -44], + [-5, -26], + [17, -203], + [7, -32], + [19, -40], + [14, -89], + [14, -45], + [6, -65], + [9, -39], + [28, -38], + [25, -66], + [65, -135], + [12, -6], + [-59, -173], + [-13, -25], + [-28, -100], + [-26, -389], + [-49, -242], + [-25, -75], + [-112, -135], + [-43, -13], + [-34, 21], + [-100, -88], + [-12, 16], + [27, 23], + [12, 21], + [-31, 30], + [0, 42], + [-13, 35], + [-24, -6], + [-19, 12], + [-4, 18], + [23, 22], + [32, 7], + [4, 23], + [-15, 21], + [38, 26], + [44, -15], + [27, 27], + [15, 35], + [-2, 24], + [-21, 26], + [-46, 7], + [-26, 22], + [-50, 6], + [-10, -15], + [-37, -2], + [-51, -33], + [-22, -35], + [-29, -9], + [-30, 4], + [-31, -33], + [-12, -37], + [2, -25], + [15, -13], + [41, -19], + [2, -52], + [12, -29], + [-74, -2], + [-24, -7], + [-22, -18], + [-9, -30], + [-44, -64], + [-15, -57], + [-3, -73], + [26, -53], + [-30, -108], + [-4, -25], + [-19, -32], + [-31, -19], + [-25, -47], + [9, -19], + [-66, -31], + [-54, -18], + [-56, -7], + [-85, -30], + [-29, -23], + [-31, -47], + [-59, -129], + [-11, -162], + [18, -94], + [-17, -125], + [-45, -6], + [-21, -30], + [-37, -18], + [6, -36], + [-5, -53], + [13, -30], + [-11, -30], + [-40, -6], + [-1, -24], + [-14, -18], + [-22, -3], + [-38, -38], + [-15, -32], + [0, -22], + [-23, -30], + [-33, 14], + [-29, -4], + [-24, -18], + [-19, -27], + [-15, -45], + [-4, -44], + [-10, -25], + [-46, -36], + [-12, 22], + [-17, -9], + [-27, -45], + [-25, -57], + [-46, -30], + [-14, -25], + [-3, -49], + [11, -49], + [25, -73], + [-55, -21] + ], + [ + [63855, 65432], + [130, 87], + [38, 18], + [39, -12], + [77, 39], + [52, 15], + [137, 53], + [118, 25], + [102, 33], + [32, 15], + [60, 48], + [19, 25], + [54, 35], + [72, 59], + [48, 57], + [82, 82], + [31, 21], + [77, 37], + [131, 30], + [87, 7], + [58, -20], + [13, -15], + [29, -1], + [93, 33], + [63, 10], + [40, 15], + [79, -12], + [65, 6], + [40, 11], + [81, 34], + [228, 116], + [40, 24], + [49, 46], + [62, 87], + [48, 49], + [45, 23], + [22, -19], + [36, -3], + [44, 8], + [44, 27], + [31, -10], + [46, 0], + [48, 17], + [24, 16], + [29, 30], + [36, 55], + [20, 43], + [19, 68], + [27, 37], + [63, 34], + [13, 2], + [62, 67], + [47, 24], + [22, -1], + [25, 13], + [65, 76], + [56, 48], + [80, 52], + [30, 3], + [57, 31], + [67, 18], + [136, 119], + [43, 51], + [13, 36], + [21, 30], + [76, 79], + [54, 34], + [122, 48], + [72, 48], + [86, 19], + [38, 29], + [1, 18], + [67, 23], + [180, 28], + [69, 3], + [15, 15], + [114, 9], + [92, -2], + [59, -10], + [150, -7], + [30, 3], + [82, -32], + [49, -29], + [27, -23], + [11, -85], + [-21, -13], + [-39, 12], + [-42, -18], + [-66, -17], + [-28, -18], + [-21, 3], + [-40, 22], + [-63, 2], + [-111, -14], + [-28, -7], + [-15, -32], + [4, -30], + [29, -18], + [17, -33], + [-15, -21], + [-42, -4], + [-38, -25], + [-51, -41], + [-71, -21], + [-31, -29], + [-47, -64], + [-39, -15], + [-27, -40], + [-58, -58], + [-58, -18], + [-33, 0], + [-31, -26], + [-15, -25], + [-10, -36], + [-1, -41], + [20, -32], + [-29, -25], + [-14, 19], + [-31, 0], + [-32, -35], + [1, -38], + [-17, -41], + [-79, -45], + [-24, -29], + [-11, -74], + [-16, -52], + [-34, -37], + [-47, -67], + [-61, -14], + [-9, -64], + [-13, -60], + [-38, -94], + [-4, -89], + [-10, -48], + [19, -64], + [20, -49], + [45, 0], + [43, 63], + [63, 67], + [2, 36], + [15, 14], + [38, -3], + [77, 83], + [54, 42], + [37, 23], + [32, 35], + [144, 74], + [43, 20], + [21, -12], + [-33, -46], + [-69, -63], + [23, -36], + [90, 13], + [47, 19], + [36, 8], + [31, -5], + [61, -24], + [87, -7], + [56, 7], + [103, 2], + [48, -43], + [53, -22], + [35, 15], + [26, -5], + [68, -28], + [0, -25], + [39, -16], + [28, 12], + [11, -38], + [1, -34], + [13, -23], + [26, -5], + [35, 4], + [37, 24], + [5, -41], + [38, -20], + [34, -1], + [47, -60], + [24, -14], + [8, -75], + [15, -57], + [18, -25], + [93, -81], + [-2, -28], + [40, -76], + [65, -30], + [7, -52], + [40, -30], + [59, -3], + [14, -16], + [36, -6], + [5, -33], + [-22, -19], + [33, -64], + [-28, -11], + [-6, -24], + [8, -22], + [42, -43], + [29, -17], + [75, -22], + [97, -9], + [105, 6], + [51, 17], + [89, -9], + [37, 5], + [16, 19], + [40, 30], + [58, 12], + [54, 34], + [75, -18], + [23, -25], + [3, -17], + [29, -64], + [0, -31], + [36, -19], + [45, 4], + [27, -19], + [10, -43], + [16, -11], + [70, -8], + [40, 10], + [13, 57], + [39, 43], + [71, 4], + [26, -10], + [47, -77], + [23, -16], + [22, 42], + [5, 108], + [-23, 13], + [-11, 21], + [-13, 82], + [25, 28], + [33, 15], + [13, -11], + [34, 10], + [47, -68], + [-3, -39], + [-10, -34], + [-12, -11], + [-10, -37], + [35, -20], + [17, 30], + [17, 9], + [0, -58], + [43, -17], + [53, 61], + [61, 45], + [55, 49], + [25, 45], + [23, 22], + [60, -6], + [87, 36], + [76, 37], + [301, 192], + [49, 39], + [43, 9], + [35, -40], + [37, -7], + [48, 8], + [69, 25], + [78, 15], + [77, 9], + [55, 19], + [86, 16], + [68, -5], + [86, -20], + [83, -9], + [67, -1], + [85, 8], + [82, -3], + [70, -11], + [83, -1], + [61, 4], + [51, 12], + [209, 84], + [149, 78], + [62, 22], + [156, 25], + [203, -14], + [51, 6], + [50, 23], + [37, 8], + [46, 1], + [25, -9], + [-67, -60], + [-38, -44], + [-23, -40], + [-14, -38], + [-1, -56], + [-14, -126], + [-2, -61], + [3, -49], + [15, -97], + [-34, -14], + [-20, -28], + [12, -57], + [30, -41], + [34, -20], + [85, -9], + [61, 33], + [5, -22], + [35, -33], + [41, -5], + [59, 11], + [22, -24], + [11, -29], + [27, -12], + [55, 6], + [57, 18], + [85, 37], + [84, 49], + [46, -14], + [42, 7], + [27, -33], + [16, -38], + [44, -44], + [20, -29], + [41, -23], + [89, 52], + [19, 3], + [26, -20], + [32, 21], + [13, 33], + [0, 22], + [-15, 12], + [34, 55], + [46, 30], + [48, -5], + [37, 24], + [92, -22], + [114, -12], + [71, 98], + [60, 15], + [121, -25], + [20, -31], + [12, -34], + [-65, -216], + [14, -117], + [43, -263], + [14, -68], + [-18, -18], + [-31, -5], + [-23, -20], + [-23, 23], + [-44, 6], + [-68, -9], + [-25, -20], + [-30, -44], + [7, -35], + [-11, -43], + [56, -32], + [45, 8], + [37, 45], + [10, -6], + [87, -4], + [19, -15], + [27, -59], + [20, -11], + [54, -1], + [63, -36], + [-65, -46], + [-14, -24], + [-5, -29], + [37, -33], + [45, -62], + [40, -26], + [31, -29], + [48, -13], + [37, 9], + [24, -34], + [42, -16], + [15, -32], + [51, -14], + [9, 4], + [42, 77], + [29, -8], + [22, -50], + [45, -17], + [32, 21], + [21, 36], + [0, 34], + [-16, 50], + [-42, 13], + [-30, 42], + [-21, 76], + [22, 13], + [36, -17], + [39, -28], + [81, 0], + [16, 26], + [30, 6], + [79, -8], + [49, 9], + [67, -35], + [33, -1], + [16, -50], + [13, -20], + [21, -8], + [20, -54], + [5, -41], + [15, -25], + [97, -38], + [14, -30], + [-16, -31], + [-13, -8], + [-41, -100], + [-29, -27], + [-66, -15], + [-40, 9], + [-91, 41], + [-47, 33], + [-56, -25], + [-59, -4], + [-44, 10], + [-81, -11], + [-27, 10], + [-14, 21], + [-50, -10], + [-10, 27], + [-45, 17], + [-30, 22], + [-56, -6], + [-19, -19], + [-58, 19], + [-61, 4], + [-21, -15], + [-39, -6], + [-117, 30], + [-19, -9], + [-38, 29], + [-56, -9], + [-58, -23], + [-11, 8], + [-112, -4], + [-31, -29], + [-140, 0], + [-43, -36], + [-43, -25], + [-97, 67], + [-27, 49], + [-37, -23], + [-33, 23], + [-6, 26], + [-43, 7], + [-13, -9], + [0, -41], + [-34, -4], + [-4, 22], + [7, 33], + [-5, 36], + [-21, 43], + [-36, 25], + [-32, -4], + [-10, -11], + [-42, -1], + [-72, 59], + [-16, 8], + [-36, -17], + [-32, -48], + [0, -26], + [12, -95], + [-2, -20], + [-66, -10], + [-13, -15], + [-17, -49], + [11, -23], + [27, -13], + [10, -29], + [-38, -23], + [23, -83], + [38, -53], + [-37, -13], + [-9, -27], + [-40, -4], + [-85, 58], + [-72, 34], + [-13, 24], + [-7, 42], + [-20, 5], + [-38, 24], + [-12, 15], + [-70, 38], + [-36, 64], + [-68, 76], + [-56, 50], + [-19, 12], + [-78, 31], + [-62, 13], + [-26, 11], + [-51, 34], + [-40, 12], + [-72, -8], + [-13, -7], + [-47, 40], + [-81, 13], + [-40, 16], + [-53, 36], + [-37, 15], + [-37, -1], + [-47, -25], + [-23, 34], + [-34, 15], + [-28, 1], + [-28, -16], + [-9, -26], + [-63, 28], + [-36, 1], + [-40, -14], + [-36, -30], + [-117, -124], + [-26, -55], + [-57, -62], + [-29, -43], + [-62, -17], + [-50, 13], + [-36, 0], + [-88, 31], + [-37, 6], + [-28, -9], + [-13, -22], + [-18, -6], + [-35, 7], + [-60, -2], + [-29, -21], + [-26, -27], + [-6, -41], + [10, -28], + [-62, 40], + [-83, 36], + [-97, 28], + [-82, 12], + [-53, -5], + [-67, -28], + [-69, 24], + [-45, -11], + [-24, -33], + [-39, 7], + [-44, -17], + [-70, -67], + [-16, -23], + [-15, -137], + [-31, -45], + [-11, -72], + [6, -19], + [-22, -20], + [-60, -1], + [-11, 14], + [-26, -4], + [-24, -20], + [-6, -45], + [-15, -18], + [-29, -10], + [-20, 7], + [-24, -5], + [-13, -28], + [-34, 20], + [-19, -5], + [-16, -40], + [-4, -40], + [-30, -32], + [-54, 21], + [-29, -29], + [2, -58], + [-5, -39], + [-44, 8], + [-31, -26], + [20, -98], + [-12, -18], + [-18, 12], + [-28, -5], + [-33, 14], + [-39, 32], + [-15, 35], + [-24, 3], + [-18, 47], + [4, 40], + [19, 18], + [30, -8], + [24, 10], + [20, 26], + [-11, 47], + [16, 21], + [29, 9], + [26, 38], + [-3, 40], + [7, 47], + [26, 4], + [36, -21], + [27, 7], + [12, 26], + [-9, 16], + [20, 27], + [14, -3], + [15, 23], + [-7, 22], + [7, 24], + [31, 21], + [18, 33], + [-1, 55], + [-22, 39], + [-49, 26], + [-29, -5], + [-37, -56], + [-19, -1], + [-37, -40], + [2, -43], + [-26, -23], + [-139, 29], + [-14, 8], + [-26, 40], + [-30, 7], + [-44, -18], + [-4, -14], + [4, -62], + [14, -21], + [3, -26], + [-24, -43], + [-29, -36], + [-37, -25], + [-1, -33], + [-31, -39], + [-6, -32], + [6, -17], + [-59, -31], + [-12, 5], + [-51, -6], + [-31, -30], + [-43, -5], + [-38, -58], + [-10, 48], + [-22, 12], + [-6, 23], + [13, 58], + [5, 62], + [-12, 33], + [0, 65], + [-13, 47], + [-31, 53], + [-25, 18], + [-39, -12], + [-33, -54], + [-1, -85], + [-11, -31], + [3, -34], + [17, -13], + [-8, -28], + [-24, -46], + [20, -26], + [-67, -19], + [-30, -38], + [-33, -10], + [-80, -51], + [-46, -64], + [-49, -93], + [-21, -27], + [-54, -93], + [-47, -127], + [-32, -66], + [-25, -26], + [-25, -45], + [0, -26], + [13, -17], + [-19, -37], + [-43, -40], + [-9, -28], + [-53, -49], + [-14, -50], + [-59, -83], + [-13, -58], + [-49, -51], + [-88, -124], + [-68, -82], + [-27, -19], + [-41, -45], + [-28, -49], + [-21, -59], + [3, -23], + [37, -48] + ], + [ + [54755, 48865], + [-8, 23], + [-390, 606], + [-57, 32], + [3, 60], + [-4, 13], + [-129, 129], + [-121, 310], + [-10, 45], + [21, 20], + [42, 73], + [-70, 64], + [-1, -20], + [-24, -34], + [-72, 2], + [-34, 18], + [-4, 13], + [-10, 93], + [17, 29] + ], + [ + [38481, 56436], + [445, 2], + [441, -2], + [321, 0], + [506, 0], + [245, -1], + [389, -1], + [567, -1], + [753, 0], + [386, -1], + [465, -7], + [735, 4], + [638, 0], + [622, 2], + [150, 1], + [229, -1], + [415, 0], + [388, -2], + [408, 0], + [424, 0], + [513, 0], + [550, 0], + [436, 1], + [311, 1], + [15, -52], + [43, -77], + [38, -32], + [225, -122], + [226, -100], + [72, -25], + [203, -167], + [40, -17], + [65, -2], + [93, 16], + [25, 15], + [52, 49], + [38, 56], + [16, 46], + [9, 59], + [56, 22], + [31, 3], + [26, -19], + [74, -29], + [164, -18], + [288, 19], + [202, 28], + [176, -4], + [133, -15], + [72, -61], + [53, -62], + [98, -57], + [158, -31], + [49, -19], + [121, -62], + [76, -16], + [25, 6], + [174, -70], + [166, -102], + [21, -45], + [10, -42], + [-7, -53], + [6, -22], + [153, -222], + [27, -19], + [230, -66], + [22, 0], + [60, 24] + ], + [ + [8807, 53897], + [23, 4], + [366, 4], + [800, -8], + [67, 0], + [1018, -4], + [1079, 10], + [2179, 9] + ], + [ + [100541, 56585], + [-28, -69], + [-47, -82], + [-29, -29], + [-66, -132], + [-27, -67], + [-14, -94] + ], + [ + [99055, 61514], + [12, 141], + [13, 8], + [112, 130], + [58, 201], + [-10, 30], + [-74, 49], + [78, 20], + [108, 72], + [85, 70], + [24, 9], + [33, -29], + [13, -45], + [50, -42], + [91, -29], + [83, -5], + [14, 6], + [50, 124], + [13, 18], + [25, 9] + ], + [ + [94139, 50215], + [-63, -39], + [-60, -26], + [-17, -17], + [-25, -3], + [-25, -14], + [-15, 16], + [3, 29], + [19, 18], + [2, 26], + [-12, 31], + [35, 29], + [23, 0], + [11, 15], + [13, 72], + [16, 31], + [-1, 36], + [-11, 9], + [2, 30], + [21, 27], + [17, 8], + [51, -16], + [61, 8], + [63, 16], + [19, -1], + [12, -17], + [4, -44], + [27, -51], + [-28, -50], + [-42, -44], + [-39, -49], + [-19, -11], + [-29, -32], + [-13, 13] + ], + [ + [97883, 51651], + [11, 27], + [79, -34], + [5, -19], + [-10, -90], + [-19, -9], + [0, 53], + [-12, 27], + [-32, 17], + [-35, -2], + [-7, 14], + [20, 16] + ], + [ + [98234, 52111], + [16, -15], + [-81, -40], + [-44, -30], + [-64, -8], + [3, 14], + [30, 47], + [23, -1], + [29, 20], + [21, -3], + [67, 16] + ], + [ + [95045, 51350], + [-5, -42], + [-33, -14], + [-16, -44], + [-66, -34], + [-18, -17], + [-47, -32], + [-45, -68], + [-14, -68], + [12, -28], + [-46, 5], + [-11, -7], + [-5, -29], + [7, -25], + [27, -24], + [29, -53], + [25, 15], + [26, 51], + [0, 15], + [48, 66], + [-2, 34], + [29, 9], + [71, -33], + [37, 17], + [3, 37], + [38, 50], + [30, -1], + [42, 24], + [54, 21], + [34, -18], + [89, 24], + [15, 61], + [12, 11], + [41, -22], + [50, -7], + [14, -34], + [43, -3], + [6, 12], + [4, 73], + [14, 3], + [35, -45], + [40, -27], + [40, 7], + [67, -13], + [123, -49], + [149, 60], + [8, 68], + [8, 27], + [56, 14], + [54, 3], + [70, -28], + [6, 6], + [83, 5], + [76, -1], + [77, -9], + [47, 1], + [116, 18], + [97, -12], + [26, 26], + [85, 26], + [47, 10], + [45, -6], + [55, 8], + [93, 18], + [119, 101], + [82, 37], + [31, 37], + [29, 48], + [51, 5], + [39, 21], + [76, 94], + [63, 18], + [58, 38], + [23, 7], + [20, -11], + [42, 18], + [14, -12], + [-29, -49], + [-22, -22], + [-66, -41], + [1, 50], + [-12, 15], + [-37, -15], + [-16, -30], + [0, -33], + [33, -46], + [36, -20], + [33, -1], + [-5, -32], + [17, -41], + [25, -24], + [35, 7], + [45, -11], + [29, -21], + [21, 1], + [20, 15], + [9, 19], + [22, 18], + [17, -3], + [31, -31], + [0, -40], + [39, -61], + [14, -14], + [25, -7], + [23, 13], + [13, 32], + [49, 1], + [-4, 28], + [30, 0], + [39, 19], + [29, 29], + [60, 20], + [11, 17], + [3, 43], + [74, 23], + [38, 1], + [18, -13], + [37, -2], + [25, -11], + [-33, -46], + [-55, -31], + [-60, -15], + [-174, -86], + [-159, -71], + [-523, -266], + [-138, -60], + [-193, -74], + [-319, -117], + [-43, -14], + [-177, -72], + [-112, -50], + [-166, -84], + [-79, -34], + [-285, -89], + [-100, -24], + [-83, -2], + [-24, 38], + [-60, -13], + [-75, -33], + [-109, -36], + [-208, -50], + [-40, 8], + [-50, 3], + [-67, -13], + [-201, 4], + [3, 16], + [-41, 0], + [-59, -15], + [-51, -19], + [-83, -41], + [-104, -40], + [4, 38], + [-32, 33], + [-97, -7], + [-21, 20], + [22, 31], + [-18, 26], + [-41, 9], + [-12, 21], + [-5, 30], + [19, 55], + [26, 32], + [-4, 49], + [-9, 21], + [15, 37], + [-14, 20] + ], + [ + [83685, 54592], + [82, 37], + [135, 78], + [96, 66], + [88, 55], + [66, 48], + [67, 55], + [40, 17], + [45, 44], + [45, 63], + [43, 33], + [56, 57], + [38, 0], + [26, 27], + [64, 29], + [35, 30], + [40, 22], + [37, 11], + [55, 24], + [83, 20], + [19, 27], + [17, 64], + [14, 11], + [20, 49], + [60, 67], + [28, 12], + [3, 59], + [25, 53], + [56, 31], + [51, 10], + [88, 67], + [48, 13], + [93, 84], + [28, 34], + [4, 20], + [-15, 22], + [-12, 66], + [12, 37], + [-12, 28], + [-12, 2], + [-19, 35], + [-17, 45], + [-39, 4], + [12, 34], + [1, 59], + [-25, 59], + [-25, 23], + [-75, 27], + [-72, 47], + [-16, 24], + [-16, 188], + [-56, 15], + [-14, 40], + [17, 90], + [27, 43], + [-30, 240], + [-22, 59], + [94, 29], + [89, 19], + [77, 30], + [180, 61], + [105, 24], + [57, 19], + [93, 17], + [116, 42], + [162, 30], + [109, 13], + [30, -10], + [191, 14], + [21, -6], + [202, -8], + [31, -5], + [165, 17], + [75, 0], + [151, -23], + [54, -3], + [34, 10], + [100, -31], + [33, 0], + [55, -19], + [109, -15], + [59, -11], + [46, 5], + [6, -10], + [49, -18], + [31, -16], + [24, -39], + [88, -73], + [48, -20], + [95, -71], + [48, -19], + [32, -3], + [62, 40], + [45, 10], + [74, 29], + [41, 9], + [44, 18], + [93, 10], + [49, 1], + [20, -7], + [74, -2], + [94, 17], + [76, -7], + [55, 16], + [24, -5], + [35, 6], + [83, -18], + [62, -24], + [63, 0], + [21, 8], + [68, -10], + [55, 36], + [34, 17], + [50, 3], + [42, 14], + [24, 18], + [88, 10], + [48, 23], + [41, 33], + [29, 30], + [61, 2], + [25, 21], + [29, 35], + [50, 88], + [22, 30], + [44, 25], + [82, 64], + [58, 30], + [30, 27], + [17, -5], + [37, 16], + [27, 44], + [115, 76], + [77, 7], + [44, -31], + [27, -4], + [63, 2], + [69, 30], + [45, 12], + [33, 40], + [27, 75], + [8, 64], + [5, 125], + [-17, 174], + [-14, 87], + [-30, 128], + [-39, 55], + [-31, 31], + [-30, 15], + [1, 37], + [39, 37], + [34, 11], + [29, -7], + [16, -21], + [31, -5], + [41, 32], + [41, 26], + [24, 2], + [34, 24], + [4, 37], + [-16, 70], + [-1, 36], + [-22, 25], + [-44, -6], + [-28, 23], + [-81, 29], + [-30, -18], + [-26, 1], + [-19, 12], + [3, 37], + [-28, 35], + [-27, 10], + [-7, 24], + [6, 57], + [-13, 35], + [-105, 29], + [-1, 42], + [-11, 33], + [21, 83], + [80, 166], + [49, 12], + [76, -1], + [72, 28], + [29, 17], + [50, 46], + [86, 139], + [136, 93], + [82, 40], + [42, -1], + [15, -11], + [39, 16], + [68, 48], + [77, 68], + [94, 94], + [24, 99], + [79, 113], + [128, 129], + [383, 367], + [108, 94], + [185, 142], + [59, 51], + [-11, 26], + [46, 31], + [124, 71], + [50, 14], + [92, 35], + [210, 126], + [41, 30], + [23, 48], + [38, 15], + [271, 82], + [47, -4], + [185, -28], + [765, -29], + [268, -1], + [507, 25], + [465, 7], + [524, 17] + ], + [ + [78217, 52933], + [17, -3], + [25, 17], + [-5, -59], + [-15, -22], + [-25, -1], + [-44, 25], + [-19, 20], + [32, 41], + [21, 0], + [13, -18] + ], + [ + [77986, 53052], + [58, 13], + [-8, -16], + [-55, -62], + [-28, -14], + [-3, 47], + [18, 26], + [18, 6] + ], + [ + [78025, 53139], + [39, 0], + [-35, -29], + [-8, -27], + [-15, -3], + [-24, 36], + [43, 23] + ], + [ + [78006, 53213], + [9, -38], + [-49, 2], + [18, 35], + [22, 1] + ], + [ + [76815, 53236], + [-4, -13], + [18, -52], + [68, -39], + [32, 2], + [31, -14], + [35, 3], + [28, 15], + [7, 25], + [21, -5], + [61, -52], + [104, -75], + [12, -18], + [69, -33], + [91, -33], + [78, -11], + [33, -17], + [36, -29], + [44, -69], + [28, -31], + [53, -43], + [56, -36], + [66, -25], + [68, 12], + [52, 37], + [24, 36], + [3, 40], + [-8, 31], + [12, 18], + [35, 10], + [26, -42], + [48, -61], + [17, -15], + [25, 0], + [41, 15], + [59, -12], + [13, -13], + [-1, -24], + [-19, -26], + [22, -49], + [41, -13], + [55, -77], + [76, -76], + [1, -8], + [110, -72], + [82, -40], + [61, -7], + [38, 13], + [55, 26], + [61, 43], + [68, 32], + [51, 9], + [80, -4], + [68, 15], + [114, 76], + [22, 18], + [31, 7], + [132, 52], + [153, 52], + [32, -3], + [56, -23], + [12, -17], + [38, -18], + [113, -20], + [31, 1], + [92, 29], + [53, 1], + [70, -22], + [63, 37], + [8, 10], + [78, 65], + [58, 23], + [63, 50], + [69, 68], + [61, 68], + [55, 23], + [64, 65], + [43, 61], + [101, 85], + [66, 52], + [96, 58], + [27, 24], + [43, -5], + [28, 8], + [120, 64], + [133, 78], + [38, 13], + [76, 42], + [51, 18], + [26, 19], + [138, 21], + [67, 16], + [159, 73], + [26, 30], + [30, 5], + [5, -13], + [45, 17], + [69, 17], + [258, 95], + [52, 26], + [65, 24] + ], + [ + [968, 53907], + [-5, 19], + [-104, 100], + [-32, 1], + [-23, 15], + [-27, 40], + [-50, 63], + [-28, 56], + [9, 38], + [-8, 30], + [-11, 5], + [-10, 37], + [12, 9], + [-1, 47], + [-28, 40], + [-3, 56], + [-11, 21], + [-51, 59], + [11, 70], + [-10, 74], + [-35, 61], + [4, 8], + [6, 107], + [-8, 109], + [-13, 50], + [24, 53], + [2, 77], + [41, 121], + [17, 88], + [-20, 58], + [-1, 75], + [-22, 77], + [-7, 9], + [-63, 36], + [4, 36], + [-47, 108], + [-33, 23], + [-34, -18], + [-9, 5], + [-3, 43], + [-15, 91], + [-22, 61], + [-15, 22], + [-15, 45], + [97, 194], + [36, 86], + [34, 101], + [11, 22], + [38, 179], + [8, 66], + [-5, 47], + [20, 27], + [41, 147], + [12, 66], + [0, 32], + [24, 117], + [-12, 51], + [-26, 39], + [29, 51], + [27, 32], + [36, 10], + [22, 22], + [50, 93], + [52, 121], + [58, 166], + [41, 139], + [57, 279], + [-3, 16], + [21, 81], + [47, 259], + [33, 257], + [14, 120], + [17, 196], + [21, 173], + [-6, 55], + [16, 115], + [5, 66], + [-2, 22], + [8, 71], + [4, 77], + [-13, 23], + [1, 30], + [12, 44], + [-1, 27], + [17, 44], + [15, 97], + [15, 114], + [31, 33], + [-27, 32], + [0, 93], + [-3, 58], + [14, 76], + [21, 255], + [12, 67], + [-3, 26], + [-19, 36], + [13, 50], + [8, 87], + [-14, 63], + [-17, 22], + [3, 67], + [14, 84], + [23, 17], + [10, 30], + [31, 128], + [13, 69], + [3, 55], + [16, 83], + [20, 160], + [-26, 9], + [11, 69], + [42, 43], + [27, 130], + [13, 140], + [-9, 40], + [19, 160], + [-2, 92], + [-17, 51], + [-64, 7], + [52, 20], + [11, 18], + [15, 79], + [9, 112], + [-6, 47], + [-17, 46], + [-6, 56], + [19, 10], + [16, 42], + [18, 138], + [-17, 16], + [11, 37], + [22, 192], + [0, 118], + [-13, 62], + [-42, 60], + [-26, 12], + [2, 16], + [23, 36], + [14, 138], + [-2, 83], + [-9, 95], + [-22, 57], + [-25, 21], + [-1, 20], + [44, 57], + [23, 13], + [37, 7], + [18, 82], + [-3, 82], + [-7, 75], + [-26, 112], + [-22, 64], + [-28, 69], + [-67, 138], + [-26, 14], + [24, 18], + [24, -3], + [18, -28], + [-3, -16], + [15, -20], + [38, -5], + [65, -41], + [42, -56], + [24, -12], + [68, -18], + [22, 8], + [3, 23], + [-41, 32], + [-1, 18], + [47, 7], + [31, -5], + [52, 15], + [64, 28], + [43, -17], + [56, -3], + [58, 33], + [16, 14], + [56, -9], + [19, 30], + [7, 26], + [32, 6], + [36, -26], + [71, 49], + [1, 27] + ], + [ + [99277, 52561], + [-13, -25], + [-19, 15], + [9, 79], + [17, 2], + [14, 30], + [-22, 24], + [-2, 25], + [14, 82], + [10, 27], + [29, 8], + [7, -36], + [-7, -138], + [6, -47], + [-39, -22], + [-4, -24] + ], + [ + [99374, 52852], + [-11, 36], + [14, 37], + [7, 37], + [-39, 21], + [-30, 49], + [-6, 24], + [33, 7], + [18, -13], + [5, -27], + [-14, -21], + [24, -17], + [29, -7], + [18, -19], + [4, -41], + [-26, -59], + [-26, -7] + ], + [ + [98893, 51884], + [18, 21], + [6, 49], + [29, 0], + [13, -29], + [-18, -44], + [-3, -28], + [8, -21], + [31, -28], + [-14, -33], + [-77, -14], + [-34, 18], + [-3, 17], + [14, 55], + [30, 37] + ], + [ + [99572, 53181], + [-30, -33], + [6, -40], + [-7, -37], + [-34, -62], + [-14, 6], + [-4, 25], + [-20, 45], + [-19, -26], + [-25, -19], + [-4, 45], + [6, 23], + [18, 17], + [3, 36], + [-27, 40], + [-16, 13], + [-66, 10], + [-29, -41], + [0, -42], + [-14, -56], + [-9, -15], + [-22, 13], + [-1, 31], + [-52, 0], + [-58, 8], + [9, -58], + [36, 16], + [30, -20], + [10, -185], + [-82, -23], + [10, -38], + [47, -77], + [4, -46], + [-12, -45], + [6, -66], + [-23, -5], + [5, -28], + [-11, -36], + [-41, -31], + [1, -63], + [-36, -55], + [-16, -36], + [-81, 12], + [-53, -8], + [-129, -32], + [-118, -45], + [-61, -29], + [-98, -9], + [-112, -31], + [-44, -23], + [-10, 9], + [6, 31] + ], + [ + [99766, 52643], + [-30, -9], + [-7, -20], + [-50, -37], + [-5, -18], + [-43, -16], + [-7, 18], + [12, 49], + [-30, 37], + [11, 39], + [-24, 79], + [9, 64], + [2, 74], + [-16, 63], + [-46, -16], + [-5, -80], + [14, -32], + [-1, -98], + [16, -19], + [-23, -70], + [7, -44], + [-8, -21], + [-22, 28], + [-22, 7], + [-39, -2], + [-18, -9], + [-17, -75], + [-32, 2], + [-30, -16], + [-25, 4], + [-22, 24], + [29, 28], + [21, -4], + [36, 20], + [-12, 64], + [-14, 12], + [0, 27], + [33, 41], + [4, 31], + [31, 62], + [17, 14], + [21, 75], + [3, 43], + [39, 38], + [73, 8], + [30, 83] + ], + [ + [51923, 18869], + [36, 36], + [-1, 26], + [-11, 54], + [-11, 24], + [12, 19], + [46, 35], + [109, 5], + [55, 19], + [12, 12], + [-11, 34], + [30, 5], + [46, 22], + [-2, 15], + [21, 46], + [82, 65], + [-5, 15], + [33, 35], + [22, 13], + [52, 1], + [12, 8], + [9, 26], + [24, 16], + [98, 21], + [47, 16], + [32, 20], + [28, 25], + [3, 31], + [26, 11], + [10, -71], + [-29, -40], + [-48, -21], + [-202, -122], + [-137, -104], + [-136, -120], + [-118, -114], + [-171, -181], + [-147, -188], + [-71, -101], + [-64, -99], + [-56, -104], + [-19, -43], + [-8, -46], + [-73, -105], + [-58, -103], + [-94, -191], + [-65, -156], + [-138, -360], + [-53, -163], + [-41, -151], + [-44, -201], + [-25, -146], + [-14, -124], + [-11, -152], + [-4, -133], + [1, -139], + [15, -210], + [11, -96], + [25, -159], + [34, -182], + [60, -256], + [48, -176], + [10, -29], + [74, -304], + [65, -320], + [17, -100], + [23, -188], + [22, -262], + [13, -55], + [-13, 2], + [-15, 26], + [-4, 62], + [-15, 110], + [2, 78], + [-10, 94], + [-19, 145], + [-38, 207], + [-23, 80], + [-25, 52], + [-5, 71], + [-8, 56], + [-12, 37], + [-16, 30], + [-26, 98], + [-30, 16], + [-34, 72], + [4, 50], + [-15, 53], + [-15, 36], + [-25, 90], + [4, 47], + [-18, 87], + [-32, 25], + [-14, 34], + [11, 109], + [-11, 36], + [4, 36], + [-9, 32], + [-26, 31], + [7, 138], + [-4, 34], + [-11, 33], + [4, 111], + [-2, 268], + [7, 78], + [-7, 28], + [1, 157], + [23, 109], + [-17, 13], + [8, 61], + [14, 54], + [3, 66], + [12, 56], + [17, 23], + [-9, 48], + [-8, 16], + [9, 68], + [29, 76], + [19, 31], + [12, 39], + [0, 41], + [23, 74], + [44, 85], + [20, 61], + [31, 53], + [16, 35], + [-8, 18], + [47, 88], + [-11, 23], + [21, 63], + [32, -2], + [25, 47], + [6, 36], + [0, 35], + [-10, 24], + [24, 13], + [36, 69], + [8, 30], + [35, 8], + [31, 41], + [6, 21], + [45, 73], + [9, 49], + [11, 27], + [-11, 10], + [-51, -8], + [-12, 19], + [141, 38], + [25, 42], + [55, 120], + [-5, 27], + [57, 93], + [15, 56], + [-17, 11], + [16, 53], + [19, 46], + [10, -19], + [19, 10], + [10, 26], + [27, 22], + [11, 20], + [-1, 35], + [39, 48], + [29, 1], + [7, 102], + [14, 36], + [27, -13], + [14, -27], + [22, -17], + [29, 8] + ], + [ + [57491, 22852], + [-28, -37], + [-26, -7], + [-43, 2], + [-76, 15], + [-131, 4], + [-103, -26], + [-141, -63], + [-413, -214], + [-273, -141], + [-175, -95], + [-67, -41], + [-73, -52], + [-44, -38], + [-27, -32], + [-29, -50], + [-13, -36], + [-26, 0], + [-31, -18], + [-32, -1], + [-8, 36], + [30, 45], + [24, 19], + [56, 64], + [33, 26], + [37, 75], + [26, 26], + [29, 3], + [20, -11], + [33, 6], + [37, 18], + [27, 23], + [-3, 39], + [28, 44], + [26, 17], + [23, -6], + [41, -30], + [39, 5], + [30, 14], + [-16, 46], + [-37, 6], + [-5, 17], + [-37, 49], + [-44, 1], + [-44, -28], + [-60, -21], + [-123, -38], + [-49, -11], + [-42, -19], + [-52, -1], + [-23, 14], + [-18, 44], + [36, 0], + [68, 89], + [48, 104], + [29, 175], + [-4, 72], + [-54, 131], + [-30, 31], + [-57, -34], + [-39, -16], + [-44, -27], + [-66, -89], + [-25, -66], + [-5, -42], + [-9, -18], + [-39, -26], + [-41, -11], + [-11, 4], + [-24, 51], + [-4, 36], + [-12, 12], + [-43, 7], + [-13, -39], + [-61, -64], + [-19, -51], + [4, -26], + [46, -48], + [12, -22], + [-12, -26], + [-35, -42], + [-20, -49], + [6, -38], + [29, -47], + [33, -25], + [44, -16], + [91, -21], + [-7, -24], + [-24, -46], + [-9, -46], + [21, -7], + [54, -37], + [6, -46], + [2, -123], + [-15, -71], + [1, -76], + [14, -26], + [19, -12], + [49, 11], + [46, 22], + [5, 40], + [0, 56], + [22, 24], + [48, -46], + [14, 4], + [86, -13], + [-72, -68], + [-31, -36], + [-32, -29], + [-414, -331], + [-104, -93], + [-53, -58], + [-27, -52], + [-124, -112], + [-88, -87], + [-62, -68], + [-47, -70], + [-23, -14], + [-81, -76], + [-44, -56], + [-10, -24], + [-63, -18], + [-44, -1], + [-87, -57], + [-152, -117], + [-455, -316], + [-133, -80], + [-217, -113], + [-143, -80], + [-217, -137], + [-49, -26], + [-45, -43], + [-48, -33], + [-61, -50], + [-34, -43], + [-37, -19], + [-55, -50], + [-6, 17], + [73, 84], + [124, 102], + [83, 43], + [16, 37], + [130, 88], + [76, 37], + [108, 70], + [25, 5], + [47, 27], + [40, 17], + [8, 20], + [-7, 17], + [5, 52], + [8, 22], + [-33, 21], + [-19, -27], + [-50, 11], + [-26, -9], + [-46, -34], + [-50, -27], + [-92, -34], + [-72, -45], + [-21, -16], + [-43, -17], + [-13, 1], + [-10, 53], + [37, 29], + [3, 24], + [-34, 47], + [41, 53], + [-11, 7], + [42, 57], + [2, 17], + [-21, 16], + [-54, -11], + [-48, -30], + [-21, 11], + [-36, -15], + [-31, -29], + [1, -67], + [-46, -10], + [-83, -36], + [-6, -17], + [-181, -118], + [-27, -9], + [10, 27], + [5, 41], + [-19, 36], + [-38, 10], + [24, 26], + [-3, 27], + [-13, 6], + [-73, 18], + [-33, -2], + [-18, 59], + [26, 49], + [-4, 23], + [-31, 20], + [-12, 47], + [-18, 6], + [-102, -40], + [-29, -32], + [12, -23], + [43, -48], + [2, -36], + [34, -25], + [9, -21], + [-23, -36], + [22, -91], + [6, -6], + [63, 2], + [17, -5], + [7, -29], + [73, -41], + [14, -49], + [16, -23], + [104, -89], + [56, -59], + [33, -46], + [-3, -17], + [-107, -53], + [-38, -34], + [-43, -26], + [-29, -9], + [-73, -41], + [-20, -23], + [-56, -36], + [-94, -19], + [-40, -29], + [-30, 30], + [-18, -12], + [-13, 16], + [10, 52], + [-11, 77], + [-8, 17], + [-23, 5], + [-49, 0], + [-25, 8], + [-26, -15], + [-26, -56], + [-9, -48], + [8, -103], + [-2, -30], + [-33, -55], + [7, -20], + [35, -67], + [0, -14], + [-25, -66], + [-78, -77], + [-56, -44], + [-48, -59], + [-23, -14], + [-45, -59], + [-52, -1], + [-70, 36], + [-13, -4], + [-37, -29], + [-3, -18], + [11, -25], + [-24, -58], + [8, -78], + [10, -30], + [-9, -21], + [-33, -29], + [-25, -65], + [-25, -23], + [-86, -161], + [-14, -9], + [-12, -51], + [-16, -13], + [-20, -35], + [-55, -124], + [-5, -18], + [-41, -5], + [-29, 9], + [-6, 45], + [-24, 36], + [-18, 46], + [-43, 14], + [-40, -9], + [-55, -26], + [-55, -46], + [-11, 3], + [-35, -32], + [-23, -61], + [-3, -78], + [13, -41], + [33, -63], + [40, -41], + [57, -32], + [116, -41], + [-11, -43], + [-12, -2], + [-56, -163], + [-4, -24], + [8, -26], + [-51, -58], + [-28, -111], + [-13, -24], + [-7, -37], + [-6, -62], + [-16, -51], + [-12, -20], + [-12, -64], + [4, -32], + [-65, -208], + [-15, -22], + [-32, -19], + [-38, 0], + [-60, -40], + [-47, -58], + [-45, 9], + [-23, 15], + [34, 19], + [17, 33], + [36, 9], + [-9, 35], + [7, 14], + [28, 27], + [-6, 51], + [-27, 20], + [-24, -13], + [-11, -22], + [-33, -44], + [-61, -50], + [-24, -15], + [-47, -62], + [-24, 5], + [-27, -13], + [-7, -28], + [2, -45], + [19, -25], + [59, -2], + [43, -9], + [24, -15], + [34, -9], + [43, 5], + [19, 10], + [18, 23], + [28, 16], + [33, 7], + [32, 23], + [48, 4], + [4, -16], + [-23, -140], + [-19, -145], + [2, -72], + [-16, -3], + [-8, -39], + [-10, -10], + [-35, 17], + [-20, -3], + [-8, -18], + [5, -41], + [29, -30], + [-18, -21], + [1, -58], + [17, -5], + [8, -25], + [-10, -60], + [-10, 4], + [-98, -2], + [-24, -10], + [-11, -14], + [8, -24], + [3, -39], + [-11, -67], + [27, -82], + [1, -13], + [-22, -32], + [0, -52], + [-12, -9], + [-9, -56], + [20, -36], + [28, -7], + [52, -54], + [47, -101], + [24, -12], + [6, -45], + [2, -78], + [42, -193], + [-2, -61], + [33, -93], + [21, -48], + [-10, -84], + [-16, -35], + [0, -30], + [8, -25], + [-17, -36], + [-11, -9], + [7, -43], + [22, -9], + [27, 3], + [-3, -36], + [-16, -40], + [29, -20], + [20, 20], + [33, -20], + [15, -37], + [-9, -35], + [-27, -38], + [-6, -66], + [8, -23], + [29, 24], + [5, 22], + [21, 20], + [27, 7], + [25, -22], + [-12, -48], + [-30, -33], + [11, -18], + [-1, -47], + [7, -64], + [22, -5], + [17, 17], + [20, 4], + [9, -52], + [-26, -43], + [0, -19], + [31, -66], + [15, -4], + [1, -46], + [-20, -58], + [19, -43], + [21, -36], + [4, -27], + [-21, -9], + [-2, -14], + [29, -41], + [16, -15], + [45, -15], + [72, -2], + [16, -6], + [9, -89], + [-19, -29], + [-18, 1], + [-21, -16], + [13, -71], + [19, -11], + [24, 3], + [40, 18], + [22, 36], + [0, 23], + [-18, 53], + [-19, 21], + [33, 27], + [24, -4], + [-3, -59], + [3, -53], + [12, -118], + [-51, -20], + [-103, -10], + [-80, -18], + [-144, -52], + [-26, -39], + [-8, -32], + [0, -46], + [-77, -72], + [-165, 60], + [-27, 18], + [-133, 128], + [-159, 213], + [-6, 29], + [-404, 78], + [-223, -9], + [-6, -12], + [-61, -32], + [-367, 77], + [-43, 28], + [-227, 183], + [-97, 136], + [-51, 29], + [-222, 86], + [-70, 5], + [-18, -23], + [-136, 68], + [-84, 136], + [-105, 96], + [-28, 4], + [-72, -12], + [-347, 103], + [-108, 80], + [-116, 301], + [-76, 332], + [-62, 249], + [-49, 139], + [-99, 160], + [-107, 70], + [-125, 224], + [-11, 100], + [42, 79], + [6, 207], + [-28, 186], + [-20, 36], + [-20, 11], + [-15, -8], + [-44, 31], + [-65, 72], + [-15, 25], + [57, 102], + [27, 86], + [9, 49], + [14, 191], + [-73, 222], + [-41, 81], + [-110, 90], + [-42, 7], + [-7, -15], + [-73, 0], + [-330, 344], + [-61, 80], + [-47, 146], + [-5, 28], + [16, 73], + [-49, 45], + [-129, 183], + [-122, 255], + [-45, 105], + [-13, 26], + [-104, 52], + [-51, 20], + [-58, 36], + [-103, 126], + [-62, 89], + [-104, 332], + [25, 232], + [-9, 7], + [-90, 31], + [-34, 55], + [-46, 153], + [-31, 30], + [-100, 135], + [-18, 72], + [-4, 37], + [10, 29], + [-2, 60], + [-52, 163], + [-21, 51], + [-80, 92], + [-93, 136], + [-22, 70], + [7, 102], + [4, 7], + [-34, 219], + [-20, 67], + [-229, 371], + [-291, 254], + [-77, 40], + [-78, 129], + [-11, 38], + [-31, 73], + [-50, 27], + [-94, 11], + [-182, 129], + [-22, 236], + [-6, 15], + [-119, 88], + [-55, 7], + [-112, 241], + [-95, 32], + [-318, 2], + [-17, -31], + [-21, -11], + [-260, 70], + [-181, 36], + [-114, 13], + [-178, -29], + [-18, -12], + [-123, 19], + [-272, 154], + [-37, 25], + [-28, 29], + [-49, 0], + [-77, -80], + [-41, -207], + [-33, 9], + [-55, 30], + [-98, 25], + [-26, -13], + [-101, -82], + [-108, -2], + [-97, -28], + [-46, -38], + [-16, -67], + [-87, -259], + [-68, -127], + [-50, -51], + [-43, -213], + [-3, -73], + [-79, -140], + [-37, -174], + [18, -98], + [27, -11], + [9, -41], + [-21, -26], + [-136, -96], + [-83, -39], + [-202, -322], + [-21, -122], + [-76, -32], + [-14, -2], + [-220, 46], + [-189, 86], + [-162, 129], + [0, 25], + [-60, 85], + [-42, 47], + [-62, 44], + [-95, 27], + [-32, -6], + [-163, 52], + [-99, 103], + [-45, 96], + [-86, 39], + [-161, 39], + [-71, 12], + [-116, 40], + [-220, 174], + [-45, 49], + [-85, 150], + [-42, 87], + [-52, 44], + [-50, 13], + [-57, 22], + [-136, 82], + [-225, 204], + [-43, 91], + [-21, 98], + [1, 32], + [-31, 107], + [-125, 250], + [-64, 101], + [-14, 2], + [-9, 25], + [-26, 247], + [15, 186], + [-3, 219], + [-40, 142], + [-98, 165], + [-36, 34], + [-146, 191], + [-25, 277], + [-106, 250], + [-79, 28], + [-134, 186], + [-158, 167], + [-153, 125], + [-72, -2], + [-29, 9], + [-240, 142], + [-32, 87], + [-270, 243], + [-39, 76], + [-4, 42], + [-10, 53], + [-33, 64], + [-85, 84], + [-113, 51], + [-76, 72], + [-81, 93], + [-141, 219], + [-57, 29], + [-43, 31], + [-107, 159], + [-49, 44], + [-172, 56], + [-62, 26], + [-130, 98], + [-29, 40], + [-66, 171], + [-192, 390], + [-45, 75], + [-68, 51], + [-35, 12], + [-67, -13], + [-104, 81] + ], + [ + [20433, 4513], + [11, -17], + [11, -83], + [-14, -56], + [-19, -24], + [-14, 7], + [-42, 51], + [-11, 48], + [44, 76], + [34, -2] + ], + [ + [21804, 4722], + [18, 28], + [37, -16], + [2, -37], + [-8, -25], + [-15, -18], + [-15, -4], + [-14, 22], + [4, 23], + [-9, 27] + ], + [ + [21446, 4915], + [-27, 47], + [16, 7], + [23, -23], + [12, 13], + [16, 120], + [21, -19], + [3, -43], + [-17, -19], + [4, -62], + [23, -13], + [-4, 32], + [20, 5], + [1, -61], + [-12, -40], + [-21, 17], + [-17, -13], + [4, -45], + [-38, -80], + [-26, -30], + [-21, -86], + [-2, -49], + [-10, -15], + [-18, 34], + [-3, 39], + [11, 14], + [15, 53], + [16, 42], + [22, 32], + [-10, 17], + [-17, -15], + [-21, 6], + [-16, 63], + [0, 12], + [30, 56], + [27, -26], + [5, -25], + [19, 17], + [-8, 38] + ], + [ + [21722, 4862], + [33, 11], + [23, -16], + [15, -82], + [-39, -47], + [-16, 4], + [-1, 31], + [12, 33], + [-4, 24], + [-19, 13], + [-4, 29] + ], + [ + [21666, 4996], + [17, -9], + [9, -43], + [-12, -38], + [2, -26], + [27, -25], + [-9, -22], + [-15, 18], + [-17, -2], + [-26, -33], + [-12, 31], + [-1, 60], + [17, 53], + [1, 35], + [14, 81], + [11, -19], + [-6, -61] + ], + [ + [20658, 4760], + [13, -18], + [22, -4], + [42, -28], + [14, -39], + [-14, -11], + [-13, 12], + [2, 20], + [-11, 19], + [-18, -5], + [-32, -64], + [-13, 4], + [-29, 42], + [-4, 17], + [-16, 12], + [-17, -2], + [-8, 16], + [3, 23], + [26, 25], + [43, -12], + [10, -7] + ], + [ + [21194, 5067], + [-12, 16], + [-15, -16], + [-3, -36], + [11, -33], + [20, -16], + [29, -68], + [1, -14], + [-10, -64], + [-65, 24], + [-11, 13], + [-12, 41], + [-29, -23], + [-8, -74], + [-20, 59], + [-13, 18], + [-12, 103], + [-11, 27], + [18, 79], + [37, 32], + [21, 0], + [12, -17], + [3, -46], + [17, 8], + [13, 52], + [27, -6], + [2, -21], + [46, -18], + [26, 34], + [13, -1], + [21, -63], + [-8, -62], + [-16, 6], + [-12, 29], + [-25, 9], + [-15, -14], + [-22, 19], + [2, 23] + ], + [ + [21311, 5242], + [35, 2], + [8, -74], + [-4, -13], + [-25, 12], + [-55, -9], + [-17, 29], + [9, 30], + [23, 26], + [26, -3] + ], + [ + [18868, 3344], + [21, -10], + [20, -45], + [21, 15], + [7, -14], + [-5, -28], + [-43, -40], + [-21, 8], + [-27, -48], + [-15, 29], + [-39, -5], + [-28, -24], + [-39, 89], + [9, 63], + [42, 59], + [53, 0], + [0, -39], + [22, -24], + [22, 14] + ], + [ + [19122, 3282], + [20, -33], + [-4, -12], + [-38, 5], + [-21, 9], + [-43, -13], + [-6, 15], + [68, 25], + [24, 4] + ], + [ + [19257, 3344], + [18, 5], + [11, -29], + [-12, -41], + [-42, -18], + [-77, 16], + [-10, 15], + [9, 19], + [26, 20], + [56, -4], + [21, 17] + ], + [ + [18981, 3508], + [21, -3], + [1, -16], + [-34, -36], + [4, -17], + [22, -29], + [51, 5], + [12, -17], + [-6, -24], + [-37, 2], + [-27, -86], + [-12, -6], + [-28, 26], + [-11, 78], + [24, 38], + [-22, 2], + [-20, -7], + [-9, 16], + [2, 25], + [16, 41], + [24, -13], + [29, 21] + ], + [ + [20241, 3902], + [106, -29], + [18, -27], + [7, -38], + [-25, -32], + [-57, 29], + [-14, -35], + [-10, 1], + [-44, 52], + [7, 79], + [12, 0] + ], + [ + [15366, 10776], + [8, 20], + [1, 48], + [23, 43], + [28, -9], + [29, -127], + [76, -94], + [91, -35], + [52, -25], + [8, -20], + [32, -47], + [-15, -5], + [-82, 20], + [-23, -20], + [-17, -2], + [-13, 20], + [-55, 56], + [-21, 39], + [-56, 89], + [-15, 1], + [-52, 29], + [1, 19] + ], + [ + [18395, 10390], + [0, -15], + [21, -7], + [5, -41], + [-3, -70], + [19, -73], + [27, -29], + [20, 1], + [-1, -53], + [-10, -19], + [-49, -18], + [-24, 6], + [-61, -38], + [-42, -33], + [-20, -33], + [-4, -18], + [20, -39], + [-12, -27], + [-39, -3], + [-22, 49], + [-21, 20], + [-57, 42], + [-24, 9], + [-30, -11], + [-43, -2], + [-14, 23], + [-30, 19], + [-20, 2], + [-17, 28], + [-40, 50], + [-44, 36], + [-48, -7], + [-9, 5], + [-50, 73], + [-27, 6], + [-13, 11], + [2, 23], + [-14, 63], + [-27, 54], + [0, 13], + [20, 24], + [23, 17], + [46, 1], + [39, -3], + [26, -15], + [45, -13], + [37, 11], + [13, 18], + [0, 37], + [-11, 18], + [27, 43], + [41, 18], + [34, 0], + [5, 45], + [26, 41], + [54, -37], + [22, 24], + [44, 22], + [10, 10], + [0, 33], + [15, -4], + [7, -54], + [19, -61], + [31, -7], + [34, 7], + [17, 28], + [71, -34], + [14, -38], + [-1, -79], + [-7, -49] + ], + [ + [31704, 13043], + [29, -56], + [28, 19], + [16, 53], + [24, -9], + [31, 18], + [40, -5], + [20, 7], + [5, 15], + [33, 34], + [17, 8], + [15, -24], + [-1, -32], + [11, -24], + [63, -40], + [21, -43], + [48, -24], + [52, -62], + [43, -31], + [8, -28], + [44, -93], + [22, -17], + [32, -17], + [24, -43], + [-12, -17], + [-28, 41], + [-36, 27], + [-31, 12], + [-25, 22], + [-36, 65], + [-19, 24], + [-40, 14], + [-32, 37], + [-24, 1], + [-6, -22], + [36, -36], + [36, -26], + [18, -29], + [-12, -30], + [26, -24], + [67, -45], + [14, -1], + [38, -18], + [14, -48], + [26, -33], + [24, -16], + [28, -33], + [-31, -14], + [6, -13], + [53, -60], + [9, -23], + [-17, -80], + [-8, -8], + [-31, 11], + [-25, -25], + [18, -18], + [7, -57], + [-2, -55], + [-7, -34], + [-22, -76], + [-27, -47], + [7, -30], + [-23, -68], + [-1, -20], + [-26, -27], + [-19, 1], + [-44, 68], + [-50, 114], + [-1, 59], + [5, 31], + [15, 36], + [-20, 15], + [-16, -2], + [-23, 56], + [19, 20], + [6, -16], + [24, -6], + [1, 26], + [-107, 83], + [-3, 24], + [-18, 25], + [-46, 35], + [-37, 66], + [-29, 27], + [-12, 36], + [-1, 30], + [-18, 50], + [-28, 43], + [-16, 17], + [-37, 79], + [-17, 20], + [-29, 50], + [-10, 41], + [-61, 62], + [-14, 0], + [-24, 23], + [-40, 59], + [-42, 82], + [-11, 47], + [96, -50], + [26, -34], + [27, 2], + [23, -46] + ], + [ + [34482, 10824], + [-1, -14], + [28, -44], + [27, -5], + [-7, -72], + [-38, -28], + [-73, 17], + [-17, 10], + [-6, 25], + [24, 42], + [50, 72], + [13, -3] + ], + [ + [34095, 11052], + [32, -19], + [30, -6], + [18, -15], + [-8, -37], + [22, -60], + [0, -31], + [17, -80], + [-36, 18], + [-28, 27], + [-41, 68], + [-12, 11], + [-35, 72], + [-17, 62], + [22, 6], + [36, -16] + ], + [ + [22578, 6848], + [-10, -14], + [-31, -6], + [-18, -31], + [-69, -24], + [-3, 18], + [12, 34], + [15, 22], + [46, 14], + [32, 3], + [26, -16] + ], + [ + [16890, 14078], + [62, -7], + [39, 4], + [76, -38], + [39, -7], + [2, -11], + [-35, -129], + [-28, -45], + [-12, 1], + [-28, 23], + [-30, 11], + [-58, -1], + [-40, -13], + [-27, -16], + [-23, -45], + [-37, -46], + [-15, -45], + [3, -70], + [-27, -46], + [-41, 22], + [4, 24], + [-20, 79], + [-16, 42], + [-43, 64], + [-29, 21], + [-12, 23], + [-26, 18], + [-26, -7], + [-27, 3], + [-14, 71], + [-23, 56], + [-24, 34], + [-48, 50], + [-114, 74], + [-38, 12], + [-50, 2], + [-63, -43], + [-9, -35], + [-16, -23], + [-38, -31], + [-12, -1], + [-36, 35], + [-38, 27], + [-27, 13], + [-30, 86], + [-8, 58], + [8, 112], + [17, 47], + [14, 23], + [6, 30], + [-3, 63], + [10, 9], + [-4, 67], + [28, 2], + [8, -18], + [-5, -74], + [15, -35], + [32, -26], + [51, -36], + [66, -31], + [58, -34], + [35, -13], + [16, 1], + [79, 86], + [35, 30], + [44, 27], + [76, -16], + [9, -22], + [30, -49], + [29, -16], + [20, -106], + [-2, -39], + [14, -18], + [38, -22], + [18, -18], + [80, -18], + [24, -30], + [12, -36], + [49, -20], + [39, -3], + [17, -11] + ], + [ + [19371, 14564], + [27, 20], + [17, -14], + [17, 1], + [18, 18], + [11, -8], + [15, -36], + [2, -50], + [-12, -11], + [-35, 0], + [-53, -15], + [-26, 16], + [-3, 32], + [22, 47] + ], + [ + [17272, 16037], + [19, 36], + [28, 17], + [26, -5], + [18, -18], + [11, -24], + [4, -39], + [-14, -44], + [-30, -28], + [-36, 10], + [-26, 38], + [0, 57] + ], + [ + [17014, 16933], + [17, 13], + [3, -29], + [-13, -7], + [-7, 23] + ], + [ + [18019, 17553], + [4, -14], + [-26, -19], + [-8, -27], + [-17, 3], + [-3, 19], + [26, 30], + [24, 8] + ], + [ + [32789, 10839], + [31, -4], + [19, 30], + [22, 14], + [5, -17], + [-14, -23], + [-16, -46], + [-8, -51], + [-32, -3], + [-22, 49], + [-8, 38], + [23, 13] + ], + [ + [32801, 11032], + [15, -17], + [7, -56], + [-46, 40], + [-22, 0], + [-39, 57], + [7, 14], + [-4, 25], + [-36, 51], + [-14, 50], + [-32, 10], + [-21, 63], + [19, 86], + [-7, 21], + [-17, 15], + [0, 16], + [44, -37], + [41, 2], + [-1, 38], + [-41, 38], + [-25, 3], + [-79, 40], + [-22, 16], + [-12, 37], + [-26, 21], + [-36, 11], + [-32, 39], + [-52, 109], + [-4, 20], + [12, 67], + [20, 19], + [71, -23], + [7, 15], + [-12, 25], + [-37, 1], + [-34, 14], + [21, 12], + [27, -6], + [12, 27], + [-11, 21], + [32, -3], + [35, -24], + [75, -71], + [25, -34], + [1, -28], + [33, 3], + [-6, 39], + [-13, 26], + [-14, 4], + [6, 24], + [25, -5], + [36, 3], + [12, -23], + [-1, -28], + [24, -51], + [26, -25], + [27, -46], + [0, -26], + [-49, -32], + [5, -76], + [7, -23], + [20, -10], + [27, -28], + [-20, -23], + [4, -64], + [46, -4], + [17, -21], + [11, -105], + [2, -33], + [-16, -21], + [22, -28], + [20, -77], + [-8, -24], + [-17, -2], + [-20, 22], + [-10, 50], + [-16, 31], + [-22, 25], + [-14, -9], + [10, -50], + [-25, -41], + [13, -13], + [25, 12], + [26, -62], + [-2, -13] + ], + [ + [33250, 12032], + [11, -20], + [-17, -49], + [-15, -16], + [-16, -59], + [-31, -48], + [-30, -2], + [-48, -29], + [-26, -11], + [-27, 26], + [-12, 25], + [11, 41], + [-63, 40], + [-46, 15], + [-37, 37], + [-13, 22], + [-27, 26], + [-16, -40], + [3, -22], + [21, -31], + [23, 12], + [0, 22], + [31, -36], + [5, -29], + [13, -33], + [39, 12], + [30, -9], + [43, -86], + [-25, -6], + [24, -36], + [-4, -43], + [-12, -25], + [-70, -21], + [-23, 18], + [-17, -13], + [-2, -53], + [-15, -32], + [-37, -28], + [-31, -5], + [-41, 88], + [-1, 15], + [-18, 49], + [-21, 30], + [-21, 18], + [-12, 24], + [-38, 137], + [-16, 25], + [-19, -53], + [-20, 8], + [-39, 1], + [-47, 55], + [0, 17], + [-21, 29], + [-81, 32], + [-7, 39], + [6, 19], + [41, 57], + [90, 20], + [40, 18], + [86, 10], + [53, 14], + [6, 20], + [89, 50], + [70, -33], + [13, -10], + [38, -46], + [24, -45], + [22, -10], + [38, 14], + [41, -23], + [24, -34], + [47, -11], + [20, 0], + [10, -23], + [27, -23], + [23, 8] + ], + [ + [34218, 11014], + [32, -6], + [18, 4], + [21, -25], + [33, 8], + [44, -27], + [-5, -16], + [43, -84], + [8, -27], + [-1, -39], + [-41, -32], + [-32, 12], + [-23, -57], + [-26, 19], + [6, 21], + [-4, 50], + [-14, 13], + [-3, 21], + [15, 11], + [-3, 21], + [-37, 21], + [-29, 57], + [-7, 39], + [5, 16] + ], + [ + [33336, 10757], + [39, -17], + [12, -35], + [0, -22], + [-11, -46], + [-24, 8], + [-10, -16], + [-9, -44], + [10, -11], + [25, 10], + [10, -33], + [-27, -42], + [-17, -67], + [5, -37], + [15, -57], + [-14, 1], + [-46, 39], + [1, 74], + [-9, 38], + [-19, 28], + [-62, 14], + [-16, -29], + [-19, 89], + [3, 29], + [53, 27], + [20, -4], + [9, -33], + [-12, -28], + [3, -24], + [17, -7], + [13, 29], + [5, 28], + [-7, 43], + [26, -3], + [3, 28], + [-3, 34], + [6, 16], + [30, 20] + ], + [ + [32902, 11453], + [15, 21], + [78, 27], + [37, 27], + [43, 19], + [13, 20], + [21, -6], + [56, -47], + [15, -5], + [35, -45], + [5, -40], + [13, -24], + [91, -53], + [19, -5], + [24, 22], + [128, -42], + [37, -32], + [34, -16], + [57, -42], + [45, -95], + [12, -13], + [23, 19], + [23, -10], + [42, -60], + [24, -20], + [65, -8], + [35, -24], + [-7, -28], + [-46, 19], + [-39, 1], + [-7, -18], + [25, -28], + [26, -14], + [-7, -13], + [-67, -62], + [2, -10], + [43, 9], + [43, 54], + [8, 1], + [31, -31], + [30, 6], + [49, -61], + [15, 0], + [4, -23], + [-5, -32], + [-34, -15], + [14, -25], + [43, 6], + [14, 19], + [-10, 37], + [6, 52], + [22, -8], + [26, -42], + [14, -30], + [2, -19], + [-13, -27], + [8, -29], + [11, 3], + [5, -41], + [-4, -64], + [-30, -66], + [8, -14], + [26, 14], + [21, 80], + [27, 9], + [74, -174], + [15, -12], + [22, -41], + [7, -72], + [0, -40], + [-46, -45], + [-11, -5], + [-23, 11], + [-33, 1], + [-16, -32], + [-60, 86], + [6, 42], + [-62, 42], + [-36, -44], + [-46, 10], + [-36, 17], + [-8, 13], + [10, 30], + [-27, 110], + [-16, 11], + [-10, -20], + [4, -44], + [-10, -1], + [-11, 45], + [-2, 65], + [-22, 21], + [-11, -18], + [14, -33], + [-19, -33], + [-16, -16], + [59, -73], + [4, -23], + [-12, -46], + [-62, -7], + [-31, 4], + [-18, 25], + [6, 14], + [0, 55], + [-29, 38], + [-35, 28], + [-23, -8], + [-7, -19], + [-25, 18], + [-8, 15], + [-32, -4], + [-2, -16], + [48, -54], + [49, -37], + [35, -55], + [-5, -28], + [7, -11], + [30, 2], + [62, -82], + [20, -21], + [38, -9], + [9, 10], + [-10, 26], + [-17, 22], + [3, 16], + [28, 27], + [50, -10], + [18, -15], + [32, -75], + [18, -26], + [-1, -32], + [-16, 2], + [-54, 44], + [-9, -14], + [93, -116], + [-3, -17], + [-38, -19], + [-51, -3], + [-26, 50], + [-25, 17], + [-21, -5], + [-64, 42], + [-74, 57], + [-24, 8], + [-16, 43], + [-17, 27], + [-22, -4], + [-34, 44], + [6, 15], + [39, 28], + [-23, 18], + [-29, -9], + [-29, 40], + [16, 35], + [-29, 15], + [-14, -7], + [-6, -23], + [-21, -29], + [-25, 12], + [-6, -22], + [-15, -14], + [-28, 27], + [-8, 20], + [-13, 58], + [16, 39], + [26, 23], + [14, -8], + [25, -34], + [21, 14], + [-2, 21], + [-30, 10], + [-6, 17], + [9, 48], + [20, 11], + [14, 71], + [-27, 21], + [-25, 34], + [5, 23], + [-31, 43], + [-18, 17], + [-30, -43], + [-22, 10], + [-52, 3], + [-33, 11], + [3, 64], + [-31, 37], + [-42, 3], + [-6, -15], + [21, -23], + [7, -20], + [-10, -22], + [-28, -6], + [-35, 6], + [-45, 39], + [10, 68], + [26, 24], + [67, -11], + [12, 5], + [26, 37], + [4, 22], + [-24, 44], + [-9, 7], + [-34, -14], + [-48, 49], + [-38, 63], + [-4, -54], + [-19, -85], + [-23, -27], + [-48, -16], + [-30, 29], + [17, 36], + [0, 112], + [10, 24], + [23, 92], + [-5, 19], + [-37, 14], + [-19, -4], + [-56, 105], + [3, 46] + ], + [ + [32985, 10946], + [10, -16], + [5, -49], + [-17, -9], + [-37, 36], + [-6, 28], + [12, 29], + [19, 6], + [14, -25] + ], + [ + [31471, 12480], + [10, -11], + [34, -12], + [13, -12], + [16, 2], + [50, -8], + [16, -24], + [25, -18], + [20, -1], + [41, 15], + [32, 55], + [35, 8], + [11, 33], + [16, 11], + [16, -17], + [25, -60], + [44, -46], + [65, -113], + [2, -21], + [-18, -42], + [-49, -39], + [-29, -5], + [-33, 20], + [-64, 20], + [-129, 24], + [-57, 17], + [-24, -43], + [-24, 16], + [-9, -12], + [15, -19], + [23, -12], + [38, -9], + [15, 24], + [22, -8], + [-22, -49], + [23, -43], + [26, -35], + [8, -33], + [-18, -24], + [6, -37], + [-16, -16], + [2, -37], + [-70, -25], + [-26, 4], + [-15, 32], + [-26, 6], + [-60, 42], + [3, 31], + [-43, 32], + [-41, 15], + [-24, -14], + [-13, 8], + [-90, 95], + [-5, 23], + [-42, 36], + [-48, 1], + [-27, 37], + [-48, 8], + [-49, 159], + [1, 22], + [12, 21], + [15, 0], + [7, 49], + [-10, 90], + [-21, 42], + [-2, 19], + [37, 22], + [26, -57], + [38, -45], + [16, 19], + [-11, 17], + [1, 49], + [7, 12], + [44, 21], + [7, -13], + [24, 11], + [10, 60], + [22, 63], + [15, 15], + [38, -35], + [12, -3], + [58, 14], + [37, -10], + [17, -11], + [8, -80], + [-11, -33], + [-9, -63], + [21, -40], + [21, 7], + [2, 34], + [-11, 26], + [1, 26], + [10, 39], + [0, 61], + [19, 24], + [68, -15], + [71, 35], + [27, -17], + [42, 14], + [29, -18], + [25, -37], + [17, -62], + [-18, -59], + [-72, 6], + [-11, -16], + [11, -16], + [20, -7], + [33, 1], + [67, -24], + [6, -10], + [-21, -45], + [-70, -53], + [-12, -4], + [-48, 5], + [-48, 25], + [-65, 2], + [-22, 8], + [-13, -15] + ], + [ + [32528, 10977], + [-18, -5], + [-67, 32], + [-43, 65], + [-53, 31], + [-24, 21], + [-46, 56], + [-62, 66], + [-9, 47], + [9, 30], + [16, 11], + [-15, 22], + [-21, -24], + [-16, -35], + [-10, -10], + [-33, 43], + [-23, 22], + [-51, -3], + [-36, 36], + [11, 20], + [-19, 12], + [-15, -19], + [-23, -4], + [-18, 27], + [-13, 96], + [7, 32], + [-35, 27], + [-13, 28], + [2, 27], + [12, 11], + [-9, 46], + [-25, -16], + [-5, 23], + [-28, 23], + [-16, 40], + [-19, 25], + [9, 45], + [-17, 53], + [-34, -23], + [-15, 1], + [-23, -45], + [-41, 40], + [-5, 16], + [-44, 17], + [-18, 28], + [19, 17], + [-6, 25], + [20, 54], + [0, 30], + [-20, 63], + [17, 70], + [7, 14], + [30, 6], + [42, -27], + [0, -19], + [24, -3], + [20, 23], + [31, -15], + [15, -18], + [41, 2], + [57, 41], + [36, 8], + [45, -57], + [14, -44], + [-10, -6], + [-32, 17], + [-27, -20], + [6, -21], + [39, 0], + [32, -30], + [110, -170], + [26, -44], + [24, -63], + [37, -35], + [18, -52], + [21, -19], + [55, -87], + [43, -87], + [28, -88], + [-13, -25], + [18, -37], + [20, -26], + [30, -65], + [55, -141], + [24, -106] + ], + [ + [31643, 11861], + [24, -43], + [19, -6], + [7, -19], + [22, -10], + [34, -57], + [19, -6], + [16, -56], + [3, -90], + [-49, -52], + [-17, -34], + [-18, 0], + [-27, 102], + [22, 52], + [-4, 40], + [-19, 11], + [-16, -10], + [-17, 14], + [-27, 60], + [-17, 50], + [-24, 21], + [6, 14], + [31, 25], + [32, -6] + ], + [ + [25733, 12724], + [10, -21], + [0, -30], + [-9, -37], + [4, -48], + [9, -31], + [-21, -47], + [8, -17], + [21, 10], + [10, -21], + [-6, -75], + [-7, -31], + [12, -43], + [2, -52], + [-4, -57], + [-11, 1], + [-34, 28], + [-9, 21], + [-44, -3], + [-2, 53], + [5, 247], + [26, -32], + [14, 19], + [-12, 20], + [-8, 40], + [29, 82], + [17, 24] + ], + [ + [25750, 12875], + [21, 22], + [45, -41], + [-8, -42], + [-54, -34], + [-16, 36], + [-1, 47], + [13, 12] + ], + [ + [25536, 12837], + [20, 1], + [33, -32], + [-1, -33], + [-22, -28], + [-20, 14], + [-33, 48], + [15, 39], + [8, -9] + ], + [ + [25819, 13162], + [29, -10], + [-2, -24], + [-16, -32], + [-34, 4], + [-37, -10], + [-7, 4], + [30, 50], + [15, -3], + [22, 21] + ], + [ + [25946, 12468], + [7, 35], + [-13, 0], + [-6, 24], + [31, 55], + [10, -25], + [17, -15], + [23, 16], + [5, -24], + [-22, -46], + [10, -28], + [36, 72], + [18, 11], + [6, -18], + [-19, -87], + [-42, -83], + [-18, -41], + [-11, -50], + [-27, -97], + [1, -47], + [-13, -41], + [-17, -30], + [8, -36], + [23, -2], + [2, -52], + [-23, -30], + [-19, 11], + [-20, -11], + [-9, -22], + [2, -23], + [-11, -20], + [-21, -6], + [-43, -64], + [-27, 13], + [-4, 78], + [12, 26], + [19, 10], + [-1, 25], + [-10, 29], + [18, 45], + [23, 6], + [7, 21], + [-2, 31], + [26, 65], + [38, 71], + [10, 41], + [11, 82], + [-5, 37], + [24, 17], + [7, 52], + [-11, 25] + ], + [ + [12554, 42], + [-14, -42], + [-20, 7], + [-5, 57], + [17, 26], + [19, -22], + [3, -26] + ], + [ + [12611, 124], + [-18, -30], + [0, 83], + [14, 24], + [18, -26], + [9, -52], + [-23, 1] + ], + [ + [11503, 672], + [9, 0], + [48, -34], + [8, -36], + [39, -48], + [35, -72], + [32, -41], + [23, -12], + [13, -31], + [5, -32], + [17, -12], + [60, -13], + [37, -41], + [-6, -12], + [-26, -2], + [-16, 18], + [-52, -8], + [-20, 27], + [0, 13], + [-77, 96], + [-21, 55], + [-30, 59], + [-52, 55], + [-29, -3], + [-38, 34], + [-34, 44], + [-4, 16], + [11, 23], + [14, -1], + [7, -19], + [23, -19], + [24, -4] + ], + [ + [13693, 617], + [-25, 73], + [10, 35], + [26, 12], + [19, -8], + [33, 3], + [13, 31], + [12, 6], + [12, -16], + [6, -77], + [-10, -13], + [-9, 40], + [-16, -52], + [-4, -51], + [25, -23], + [33, 1], + [54, 20], + [53, 0], + [13, -66], + [-1, -38], + [-10, -51], + [-26, -10], + [-65, 25], + [-22, 16], + [-31, -77], + [-12, 4], + [-52, -7], + [-18, -56], + [-25, -23], + [-12, 34], + [5, 23], + [-11, 28], + [-13, 4], + [-19, -57], + [-13, -50], + [-27, 14], + [-4, 33], + [3, 33], + [26, 45], + [17, 2], + [13, 36], + [-6, 42], + [-18, 28], + [6, 27], + [24, 6], + [33, -5], + [13, 59] + ], + [ + [13182, 570], + [2, -10], + [-22, -42], + [7, -33], + [-14, -28], + [-23, 16], + [-13, -42], + [13, -60], + [-13, -4], + [-11, 23], + [-6, 37], + [-76, 43], + [7, 28], + [40, 1], + [30, 11], + [7, 24], + [-9, 46], + [-36, 6], + [-23, 38], + [-63, 68], + [-7, 19], + [16, 36], + [35, 13], + [60, -20], + [25, 3], + [19, -45], + [-4, -30], + [30, -37], + [49, -1], + [71, 20], + [-16, -39], + [-43, -10], + [-30, -14], + [-2, -17] + ], + [ + [13399, 482], + [-15, 9], + [-26, -6], + [-23, -22], + [-39, -3], + [-19, 10], + [-11, -8], + [-10, -51], + [-10, 14], + [-18, 49], + [33, 35], + [42, -23], + [20, 2], + [26, 28], + [89, 29], + [34, 30], + [5, 38], + [0, 96], + [9, 20], + [40, -13], + [27, -47], + [-17, -50], + [-23, -23], + [-4, -23], + [7, -102], + [-11, -25], + [-57, -25], + [-27, 14], + [-3, 26], + [-19, 21] + ], + [ + [12694, 599], + [-11, 5], + [-28, 44], + [8, 45], + [23, 18], + [30, -39], + [8, -32], + [-9, -30], + [-21, -11] + ], + [ + [11309, 869], + [-8, 14], + [-29, 10], + [-27, 53], + [29, 0], + [14, -21], + [21, -56] + ], + [ + [14082, 603], + [9, -25], + [-15, -17], + [-31, -5], + [-26, -40], + [-19, -8], + [-38, 16], + [-10, 17], + [9, 57], + [21, 7], + [17, -29], + [30, -4], + [0, 20], + [-18, 16], + [24, 17], + [36, 8], + [11, -30] + ], + [ + [10940, 1254], + [-33, -37], + [2, -28], + [32, -14], + [-3, -30], + [-23, -6], + [-73, 34], + [-30, -24], + [-13, -35], + [3, -35], + [-20, 6], + [-27, 40], + [-15, 12], + [-1, 17], + [17, 14], + [28, 5], + [29, 46], + [34, 13], + [34, -2], + [7, 8], + [6, 54], + [32, 93], + [20, 14], + [27, -36], + [6, -26], + [-9, -26], + [-13, -2], + [-17, -55] + ], + [ + [11988, 955], + [-13, -44], + [-43, -33], + [-17, 1], + [-45, 38], + [-17, 33], + [-4, 20], + [5, 54], + [27, -3], + [22, 34], + [20, 6], + [20, -6], + [52, -72], + [-7, -28] + ], + [ + [11349, 1118], + [16, 8], + [35, -23], + [17, -38], + [-26, -46], + [-18, 0], + [-16, 42], + [-8, 57] + ], + [ + [14223, 687], + [14, -10], + [-31, -31], + [-15, 16], + [10, 35], + [22, -10] + ], + [ + [14056, 762], + [-12, -12], + [8, -41], + [-25, -5], + [-50, 42], + [-16, 79], + [18, 42], + [14, 15], + [42, -15], + [36, -88], + [-15, -17] + ], + [ + [11192, 1237], + [11, 0], + [18, -25], + [4, -37], + [-8, -12], + [-21, -1], + [-12, 16], + [-4, 43], + [12, 16] + ], + [ + [14892, 1008], + [-33, 4], + [-41, 32], + [8, 26], + [37, -18], + [19, 35], + [-5, 40], + [67, 43], + [15, -3], + [43, -33], + [41, -79], + [2, -36], + [-33, -81], + [-58, 13], + [-10, -17], + [2, -28], + [31, -34], + [28, -49], + [-3, -25], + [-27, 23], + [-31, -9], + [-6, -13], + [-57, 15], + [-23, -38], + [-13, -39], + [-20, 16], + [-27, -6], + [-23, -20], + [-19, 11], + [-11, -14], + [-58, -26], + [-24, 31], + [-51, 16], + [-40, -4], + [-23, -18], + [1, -16], + [-40, -5], + [-30, 15], + [-67, 14], + [-17, 11], + [64, 24], + [31, 7], + [20, -31], + [23, 26], + [31, 2], + [21, 19], + [4, 27], + [11, 17], + [33, -32], + [26, -2], + [63, 16], + [42, 34], + [7, 25], + [13, 17], + [30, 5], + [20, -15], + [9, 16], + [-26, 25], + [1, 19], + [46, -10], + [30, 1], + [23, 33], + [-4, 36], + [-22, 7] + ], + [ + [15239, 842], + [45, -56], + [23, 9], + [46, -11], + [9, -15], + [58, 3], + [32, 9], + [24, 0], + [9, -13], + [43, -3], + [30, -13], + [-42, -15], + [-30, 7], + [-48, -16], + [-53, -4], + [-54, -13], + [-42, -16], + [-18, -2], + [-32, 27], + [-53, 17], + [-40, -10], + [-15, -14], + [-35, 12], + [-17, 19], + [-19, 42], + [-20, 0], + [-21, 39], + [8, 6], + [26, -11], + [46, -5], + [44, -25], + [39, 27], + [46, 24], + [11, 1] + ], + [ + [10823, 1348], + [-11, 7], + [-19, 37], + [-4, 32], + [5, 18], + [27, 26], + [13, 3], + [19, -14], + [17, -43], + [-3, -36], + [-29, -29], + [-15, -1] + ], + [ + [15710, 960], + [5, 39], + [23, 59], + [57, 49], + [21, -3], + [40, -28], + [14, -43], + [-6, -11], + [-47, -51], + [-55, -26], + [-39, -1], + [-13, 16] + ], + [ + [10141, 1838], + [-16, 37], + [17, 13], + [28, -27], + [-13, -25], + [-16, 2] + ], + [ + [9042, 2336], + [20, 31], + [28, -2], + [42, -14], + [-8, -17], + [-24, -15], + [-11, -35], + [8, -33], + [0, -79], + [-35, 11], + [-19, 33], + [-7, 30], + [-14, 4], + [-24, -12], + [-22, 7], + [-32, 33], + [-18, 9], + [14, 28], + [33, 17], + [13, -20], + [27, 1], + [15, 31], + [14, -8] + ], + [ + [16356, 1173], + [-10, 26], + [-1, 24], + [9, 26], + [18, 18], + [29, -35], + [-4, -37], + [-13, -22], + [-28, 0] + ], + [ + [16571, 1302], + [6, 92], + [42, 53], + [26, 21], + [18, 0], + [36, -26], + [2, -41], + [-17, -46], + [-26, -10], + [-8, 11], + [-29, -27], + [-23, -48], + [-27, 21] + ], + [ + [9294, 2572], + [14, 6], + [21, -25], + [5, -29], + [-23, 10], + [-17, 17], + [0, 21] + ], + [ + [16883, 1576], + [20, 3], + [38, -20], + [1, -28], + [-9, -30], + [-45, -5], + [-8, 7], + [3, 73] + ], + [ + [8686, 2880], + [6, 46], + [-5, 20], + [-48, 76], + [-27, 4], + [-35, -8], + [-20, 15], + [-2, 20], + [86, 61], + [56, -8], + [168, -79], + [22, -31], + [22, -49], + [19, -1], + [19, -27], + [51, -117], + [-6, -20], + [-52, 12], + [-32, 51], + [-12, -5], + [-23, -58], + [-24, -5], + [-55, 34], + [-48, -27], + [-42, 48], + [-18, 48] + ], + [ + [16988, 1669], + [19, -9], + [22, 7], + [39, 44], + [34, -9], + [20, -25], + [-13, -84], + [-22, -5], + [-45, 31], + [-20, -2], + [-7, -17], + [-31, -16], + [-17, 18], + [-10, 31], + [9, 30], + [22, 6] + ], + [ + [17796, 2173], + [-28, -18], + [-17, -33], + [-12, -36], + [1, -36], + [-42, -85], + [-4, -35], + [-18, -26], + [-43, -12], + [-16, -35], + [-28, -39], + [-24, -19], + [-75, -83], + [-62, -56], + [-28, -19], + [20, 47], + [29, 13], + [15, 16], + [41, 99], + [31, 92], + [9, 44], + [-22, 30], + [-2, 43], + [15, 46], + [64, 96], + [38, -9], + [22, 16], + [22, 3], + [42, -13], + [8, 12], + [-15, 55], + [-23, 43], + [3, 100], + [18, 54], + [21, 17], + [42, 55], + [26, 15], + [65, 29], + [22, -15], + [-1, -16], + [32, -19], + [41, -1], + [18, -19], + [-10, -32], + [-21, -44], + [12, -32], + [1, -28], + [-16, -25], + [-37, -32], + [-35, -46], + [-55, -47], + [-24, -15] + ], + [ + [16960, 1704], + [-8, -25], + [-16, -16], + [-22, 15], + [-11, 37], + [13, 26], + [18, 1], + [22, -16], + [4, -22] + ], + [ + [17090, 1774], + [-10, 5], + [-12, 31], + [5, 51], + [31, 17], + [8, -16], + [1, -28], + [-13, -47], + [-10, -13] + ], + [ + [18439, 3104], + [23, 19], + [16, -2], + [24, -34], + [8, -28], + [-16, -9], + [-8, -36], + [16, -34], + [29, -15], + [53, 42], + [-2, 54], + [25, 66], + [11, -16], + [-1, -22], + [21, -18], + [17, 28], + [7, -5], + [30, -49], + [2, -25], + [-9, -37], + [-39, -18], + [-14, -14], + [-15, -33], + [-5, -28], + [-62, -76], + [6, -39], + [32, 26], + [21, 33], + [38, 33], + [15, 7], + [41, 34], + [5, 23], + [35, 26], + [14, -17], + [-2, -74], + [-22, -54], + [-15, -8], + [-28, -31], + [-8, -24], + [-73, -58], + [-11, 6], + [-39, -31], + [-4, -111], + [-32, -54], + [-39, 20], + [-17, -14], + [-4, -52], + [-35, -14], + [-6, -17], + [-41, 27], + [-15, -32], + [-22, 22], + [-5, -20], + [-28, -21], + [-11, 10], + [-71, -79], + [-2, -33], + [-22, -6], + [-19, 8], + [-25, -26], + [-17, -62], + [-51, 19], + [-10, -5], + [-2, -41], + [-11, 0], + [-78, 34], + [-28, 35], + [28, 25], + [42, 65], + [19, 7], + [16, -7], + [61, 45], + [13, 28], + [30, -1], + [20, -17], + [32, 67], + [39, -15], + [17, 49], + [25, 15], + [-4, 30], + [-15, 12], + [-17, 63], + [8, 26], + [23, 9], + [15, -15], + [24, 20], + [-12, 21], + [-21, 13], + [4, 39], + [26, 26], + [50, 3], + [21, -49], + [0, -18], + [26, 9], + [8, 64], + [-5, 18], + [-35, 12], + [-59, 28], + [-22, -23], + [-62, 78], + [-3, 46], + [33, 78], + [12, 19], + [68, 57], + [28, 8], + [30, 29], + [12, -14] + ], + [ + [16947, 6106], + [21, 2], + [16, -10], + [-7, -22], + [-39, -56], + [-26, 6], + [-16, 22], + [-5, 26], + [-33, 10], + [-5, 34], + [69, -15], + [25, 3] + ], + [ + [16599, 6717], + [-9, 31], + [-52, 8], + [-1, 36], + [13, 17], + [34, 15], + [20, -10], + [46, 23], + [5, -8], + [-7, -49], + [-49, -63] + ], + [ + [23332, 6278], + [24, 7], + [9, -27], + [-5, -42], + [17, -42], + [3, -23], + [-5, -34], + [-30, 8], + [-31, -13], + [-24, 52], + [1, 12], + [31, 43], + [10, 59] + ], + [ + [23749, 7196], + [9, -19], + [-16, -29], + [-35, -48], + [-17, -16], + [-24, -34], + [-11, -26], + [-21, -65], + [-12, -6], + [-20, 15], + [-5, 16], + [17, 80], + [10, 33], + [61, 113], + [38, 11], + [26, -25] + ], + [ + [23959, 7245], + [26, 17], + [7, -15], + [-5, -23], + [-23, -39], + [-18, -12], + [-56, -18], + [-21, 1], + [-27, -28], + [-53, 6], + [-16, 34], + [5, 27], + [17, 42], + [26, 30], + [19, -5], + [37, 28], + [16, -36], + [21, -26], + [15, -1], + [30, 18] + ], + [ + [24362, 8881], + [25, 31], + [13, -7], + [15, -44], + [-18, -18], + [-38, -10], + [-15, -50], + [25, -60], + [14, -12], + [17, 26], + [-11, -98], + [18, -9], + [22, 38], + [40, 23], + [38, 11], + [13, -2], + [3, -41], + [-29, -78], + [-12, -17], + [-3, -60], + [4, -30], + [-12, -20], + [-64, 7], + [-5, -26], + [-27, 11], + [-17, 18], + [-27, -15], + [-26, 9], + [-18, 27], + [-21, -21], + [-67, 8], + [28, -30], + [62, -14], + [23, -22], + [26, -15], + [25, -5], + [13, -19], + [0, -71], + [-20, -57], + [-36, -1], + [-14, -35], + [-35, 20], + [-17, 33], + [-47, 3], + [-27, -30], + [-11, -33], + [8, -10], + [36, 27], + [23, -13], + [16, -22], + [-17, -39], + [-31, -34], + [-21, -7], + [-36, 0], + [-2, -20], + [27, -21], + [19, 1], + [20, 20], + [54, 18], + [36, -15], + [7, -14], + [-13, -33], + [-36, -21], + [-48, -50], + [-14, 7], + [-13, -12], + [-12, -26], + [14, -46], + [-8, -34], + [-26, -28], + [-25, 13], + [7, 36], + [-27, 33], + [-19, 4], + [2, 49], + [18, 31], + [13, 43], + [-16, 19], + [-17, -8], + [-4, -20], + [-34, -119], + [-1, -25], + [-40, 20], + [-32, -21], + [-4, -36], + [33, 12], + [10, -5], + [28, -56], + [0, -32], + [-14, -35], + [-41, -33], + [-7, -41], + [24, -19], + [-8, -25], + [-24, -30], + [-21, 11], + [-13, -19], + [-13, -56], + [-4, -32], + [-14, -28], + [-22, -12], + [-14, 20], + [-36, -37], + [-10, 1], + [3, 46], + [12, 72], + [16, 22], + [13, 46], + [16, 36], + [16, 18], + [13, 41], + [-25, 5], + [-30, -25], + [-9, 47], + [6, 81], + [15, 33], + [13, 6], + [18, 35], + [7, 38], + [-16, 12], + [-17, -51], + [-43, -76], + [-8, -62], + [-13, -60], + [-34, -43], + [-14, -44], + [0, -40], + [-26, -44], + [-10, 52], + [-11, 28], + [-40, 37], + [-45, 15], + [-23, 2], + [-13, 99], + [-24, 101], + [-10, 30], + [-24, 45], + [-23, 26], + [-37, 8], + [-20, -15], + [-26, 7], + [17, 36], + [2, 104], + [-6, 51], + [16, 82], + [33, 45], + [0, 45], + [25, -1], + [42, 85], + [46, 50], + [63, 5], + [22, 21], + [24, -8], + [19, -107], + [8, -14], + [19, -1], + [27, -100], + [10, -21], + [55, -68], + [9, 29], + [-25, 39], + [-34, 30], + [-19, 64], + [-2, 45], + [18, 60], + [-36, 38], + [4, 27], + [87, 14], + [4, 18], + [-16, 14], + [-58, 13], + [-30, 3], + [-22, -20], + [-8, 7], + [-23, 123], + [38, 74], + [39, 43], + [34, -2], + [43, -43], + [18, -49], + [8, -59], + [7, -18], + [22, 19], + [2, 47], + [-2, 33], + [-19, 41], + [14, 10], + [49, -19], + [8, 34], + [-5, 15], + [-32, 0], + [-33, 16], + [-42, 46], + [2, 46], + [17, 16], + [10, -14], + [93, -57], + [15, 7], + [55, -24], + [15, 15], + [-61, 57], + [-37, 22], + [-20, 39], + [27, 10], + [11, -13], + [45, -29], + [29, -6], + [15, 32], + [69, -6], + [5, 19], + [-9, 54], + [57, 15], + [3, -55], + [-44, -137], + [-1, -39], + [5, -45], + [10, -21], + [26, -4], + [-17, 91], + [18, 50], + [21, -21], + [12, 5], + [26, 43], + [7, 23], + [-12, 41], + [18, 16], + [5, -21], + [18, -3], + [17, 56], + [4, 25], + [13, 21], + [10, -5], + [2, -45], + [29, 4], + [19, -5], + [-11, -43], + [-20, 14], + [-20, -5], + [-6, -19], + [29, -67], + [9, -7] + ], + [ + [24345, 9385], + [-16, -5], + [-9, -28], + [38, -89], + [-1, -13], + [-29, -17], + [-25, -7], + [-37, -2], + [-10, -22], + [-5, -38], + [-19, 31], + [-5, 53], + [-6, 19], + [-15, -3], + [6, -74], + [1, -41], + [-7, -27], + [-19, -19], + [-27, -13], + [-8, 19], + [-15, 11], + [-73, 21], + [-20, 15], + [-26, -50], + [13, -27], + [22, -27], + [26, -4], + [45, -24], + [-27, -31], + [-15, -4], + [-54, 6], + [-51, 14], + [-9, 14], + [-32, -3], + [-31, -23], + [-27, 15], + [1, 13], + [27, 93], + [22, 13], + [36, -40], + [16, -11], + [5, 23], + [-13, 21], + [-31, 31], + [-1, 55], + [13, 14], + [45, -11], + [28, 30], + [-4, 10], + [-27, 8], + [-22, 19], + [15, 63], + [18, -1], + [32, -15], + [22, 12], + [3, 27], + [-19, -4], + [-15, 23], + [15, 23], + [35, -9], + [12, 50], + [-29, -3], + [-25, 26], + [30, 13], + [9, 12], + [12, 64], + [19, 5], + [31, 29], + [-9, 19], + [-16, 10], + [-18, 63], + [14, 49], + [16, 29], + [15, -27], + [19, 5], + [15, 35], + [38, 36], + [12, -3], + [6, -49], + [-3, -70], + [-16, -25], + [-20, -85], + [-1, -27], + [23, -79], + [8, -2], + [45, 31], + [3, 34], + [-12, 34], + [10, 16], + [25, -14], + [46, -56], + [22, 57], + [23, -27], + [-5, -88], + [7, -53], + [13, 3], + [-4, 37], + [5, 37], + [32, 60], + [14, -21], + [13, -67], + [5, -44], + [-2, -21], + [-28, -81], + [-12, -11], + [-41, 16], + [-16, 19], + [4, 23], + [-23, 27] + ], + [ + [33137, 11738], + [14, 32], + [24, 17], + [33, 2], + [24, 40], + [35, 1], + [27, -12], + [14, -23], + [-7, -25], + [-1, -39], + [29, -34], + [9, -30], + [-18, -34], + [-22, -21], + [-22, -35], + [-15, -9], + [-84, 30], + [-34, 7], + [-10, 20], + [3, 25], + [-1, 56], + [2, 32] + ], + [ + [31336, 13030], + [-21, -32], + [-26, 11], + [-38, 2], + [-28, -58], + [-67, -63], + [-9, 5], + [0, 33], + [-13, 35], + [-18, -10], + [-24, 1], + [-11, 13], + [28, 51], + [-6, 32], + [-10, 1], + [-19, 30], + [-10, 51], + [-76, 70], + [-12, 31], + [-28, 31], + [-31, 24], + [11, 32], + [-32, 78], + [-9, 12], + [-39, 26], + [-21, -1], + [17, -28], + [18, -17], + [30, -57], + [23, -121], + [-3, -8], + [-35, -21], + [-83, 23], + [-49, 2], + [-47, 84], + [-9, 27], + [-19, -9], + [12, -53], + [-11, -31], + [-17, -7], + [-22, 13], + [-42, 2], + [-15, -30], + [-31, 34], + [-11, -25], + [14, -52], + [30, 0], + [46, 10], + [7, 13], + [35, -4], + [44, 5], + [70, -28], + [77, -64], + [-2, -49], + [-16, -31], + [-5, -30], + [12, -3], + [34, 68], + [1, 33], + [44, 20], + [62, -125], + [46, -14], + [7, -24], + [20, -26], + [13, -7], + [29, -51], + [-14, -57], + [-53, -69], + [-23, 13], + [2, 35], + [-31, -1], + [-13, -27], + [23, -29], + [4, -31], + [-6, -10], + [-37, -11], + [-45, 14], + [-21, -1], + [-11, -34], + [45, -36], + [16, -31], + [0, -34], + [-24, -28], + [-22, 1], + [-26, 31], + [-10, 30], + [-24, -9], + [-40, 8], + [-1, 15], + [-64, 41], + [-35, -1], + [-32, -41], + [-42, 21], + [-33, 9], + [-18, -3], + [-74, 25], + [-51, 22], + [-62, 17], + [-9, -7], + [-28, 10], + [-18, 43], + [-65, 36], + [-75, 25], + [-15, 21], + [-1, 28], + [-17, 41], + [-36, 30], + [-50, 30], + [-40, 16], + [-4, 38], + [-63, -5], + [-186, -6], + [-72, 33], + [-46, 16], + [-37, 7], + [-173, 11], + [-75, 10], + [-63, 17], + [-110, 38], + [-56, 10], + [-1, 31], + [21, 14], + [-5, 39], + [1, 49], + [26, 17], + [18, -40], + [25, 24], + [-12, 39], + [12, 63], + [-42, 18], + [8, 43], + [-25, 32], + [-41, 68], + [-16, 45], + [26, 56], + [-3, 67], + [-22, 42], + [-20, -11], + [0, -30], + [8, -69], + [-32, -45], + [-7, -74], + [10, -28], + [-10, -32], + [-31, -47], + [-84, -134], + [-6, -29], + [-25, -34], + [-40, -22], + [-142, -54], + [-71, -15], + [-20, -1], + [-44, 10], + [-70, 12], + [-29, 1], + [-96, -2], + [-18, 19], + [-33, 82], + [-27, -6], + [-62, -69], + [-101, 22], + [-39, -5], + [-55, -19], + [-52, -3], + [-128, -24], + [-67, -23], + [-45, -21], + [-38, -25], + [-58, -56], + [-133, -87], + [-80, -58], + [-28, -25], + [-68, -72], + [-43, -5], + [-27, 7], + [-10, 22], + [4, 17], + [-59, 38], + [-44, 13], + [-21, 39], + [-28, -6], + [-19, -13], + [0, -20], + [-23, -19], + [-32, 18], + [-19, -24], + [-16, -3], + [-31, 14], + [-15, 40], + [-28, 20], + [-33, 10], + [-63, -33], + [-9, 86], + [8, 102], + [-25, 3], + [-2, -17], + [-45, -15], + [-40, -41], + [-16, -34], + [0, -40], + [26, -42], + [33, -26], + [-3, -9], + [-42, -10], + [-68, 15], + [-70, 31], + [-9, 36], + [-45, 17], + [-63, -1], + [-39, -53], + [-40, -6], + [-9, 10], + [12, 36], + [37, 50], + [18, 85], + [-22, 0], + [-6, -38], + [-9, -19], + [-68, -100], + [-22, -37], + [-38, -41], + [-40, -9], + [-15, -11], + [13, -50], + [24, 22], + [57, 42], + [21, -16], + [-8, -36], + [-20, -38], + [-25, -25], + [-14, -5], + [-30, -40], + [-31, -53], + [-32, -79], + [-18, -6], + [-29, 38], + [12, 30], + [27, 32], + [12, 40], + [-10, 5], + [-40, -39], + [-27, -1], + [-15, 51], + [15, 92], + [13, 34], + [24, 12], + [14, -12], + [23, -4], + [31, 32], + [16, 28], + [5, 24], + [51, 36], + [68, 91], + [56, 46], + [-19, 17], + [-26, -13], + [-20, 11], + [-22, -28], + [-5, 29], + [4, 35], + [18, 53], + [-5, 9], + [-32, -72], + [-23, -29], + [-19, -33], + [-40, -29], + [-13, 25], + [35, 88], + [29, 57], + [-17, 33], + [-13, -49], + [-15, -26], + [-26, 0], + [-6, -29], + [-18, -8], + [-9, 21], + [-14, -4], + [-11, -30], + [0, -27], + [-26, -25], + [-44, -9], + [-15, -18], + [-21, 6], + [-27, 47], + [35, 36], + [17, -2], + [21, 35], + [14, 4], + [38, 36], + [35, 44], + [19, 53], + [-9, 24], + [-29, -15], + [-4, -32], + [-11, -31], + [-22, -21], + [-64, -31], + [-41, 54], + [-18, -6], + [-12, -48], + [4, -27], + [-28, -20], + [-11, 9], + [-9, 43], + [18, 36], + [25, 3], + [-26, 35], + [-16, 50], + [10, 40], + [3, 75], + [-19, 11], + [-31, -39], + [-15, -57], + [1, -29], + [-18, -47], + [-15, -18], + [-35, -2], + [-11, 17], + [2, 35], + [-24, 12], + [-9, -39], + [8, -46], + [-13, -14], + [-17, 11], + [-12, 38], + [-18, -19], + [12, -64], + [-29, -60], + [-33, 6], + [-13, 52], + [-19, 12], + [1, -37], + [9, -14], + [-5, -23], + [-16, 9], + [-23, 124], + [0, 64], + [-10, 25], + [-19, -4], + [5, -20], + [4, -132], + [37, -100], + [0, -30], + [-24, -20], + [-11, 30], + [1, 17], + [-32, 19], + [-13, -2], + [0, -49], + [20, -17], + [17, -34], + [-17, -16], + [-58, -7], + [0, -15], + [-38, -51], + [-26, -6], + [-21, 4], + [-10, 34], + [1, 85], + [5, 49], + [11, 45], + [12, 74], + [-12, 32], + [-15, -13], + [-13, -65], + [-10, -3], + [-30, 67], + [-16, -8], + [13, -79], + [-1, -35], + [-9, -44], + [-11, -28], + [9, -63], + [0, -30], + [-8, -44], + [-16, -5], + [-20, 18], + [-1, -45], + [40, -13], + [6, -27], + [6, -62], + [16, -2], + [9, 91], + [18, 20], + [34, 8], + [21, -15], + [25, -84], + [-10, -51], + [-28, -44], + [-10, -4], + [-16, -85], + [6, -48], + [10, -11], + [25, 31], + [0, 34], + [9, 47], + [22, 56], + [11, 4], + [63, -67], + [10, -15], + [0, -27], + [23, -34], + [3, -110], + [5, -86], + [-36, -15], + [-18, 13], + [-7, 31], + [-21, 9], + [-8, -12], + [8, -33], + [-20, -45], + [-15, -17], + [-4, -50], + [17, 3], + [11, 41], + [21, 22], + [14, -8], + [-12, -35], + [22, -11], + [11, 10], + [1, 36], + [26, -20], + [-5, -31], + [3, -29], + [17, 13], + [-6, 23], + [10, 15], + [26, -20], + [-4, -35], + [-13, -6], + [-7, -36], + [2, -56], + [13, -4], + [11, 35], + [0, 26], + [24, 44], + [22, -1], + [16, -31], + [-23, -54], + [-10, -7], + [4, -65], + [17, -2], + [16, 51], + [6, 35], + [14, 25], + [19, -17], + [-7, -65], + [-17, -32], + [-41, -53], + [-21, 31], + [-10, -28], + [-16, -24], + [-28, -17], + [-12, 1], + [6, 50], + [27, 11], + [5, 13], + [-25, 17], + [-36, -31], + [-22, 10], + [3, 39], + [-24, 100], + [-13, 12], + [-15, -17], + [23, -182], + [-10, -45], + [-20, 16], + [-3, 18], + [-27, -7], + [1, -26], + [-10, -41], + [-13, -18], + [-16, 0], + [-1, 29], + [-21, -17], + [-20, 23], + [-18, -22], + [-9, -35], + [-14, -5], + [-25, 30], + [-21, 10], + [-9, -25], + [-32, -11], + [-17, 6], + [15, 63], + [-14, 20], + [-11, -25], + [-15, -5], + [-21, -51], + [-1, -33], + [6, -50], + [-14, -44], + [-35, 83], + [-28, 97], + [-13, 25], + [-20, -23], + [21, -101], + [-5, -11], + [-2, -50], + [-22, 9], + [-6, -56], + [-2, -64], + [28, -42], + [16, -14], + [7, -65], + [-30, -5], + [-28, 42], + [-23, 53], + [-30, 60], + [-8, -62], + [37, -141], + [-1, -42], + [-11, -29], + [-24, 20], + [-10, 57], + [-29, 29], + [-40, 4], + [-18, -22], + [-2, -20], + [33, -21], + [19, -25], + [-1, -25], + [-13, -22], + [-2, -34], + [6, -48], + [-35, 29], + [6, -53], + [-15, -56], + [-26, -58], + [-21, -23], + [-14, -1], + [-1, 61], + [-9, 41], + [-15, -7], + [-14, -58], + [2, -48], + [-7, -69], + [-17, -2], + [-31, 80], + [-4, 50], + [-16, -8], + [-3, -42], + [-16, -4], + [9, -27], + [26, -23], + [12, -55], + [-3, -25], + [-20, -12], + [-10, 36], + [-24, -13], + [-4, -32], + [4, -28], + [-4, -35], + [-23, -33], + [-10, -45], + [-12, -12], + [19, -45], + [-14, -47], + [-32, 10], + [-27, 48], + [-16, -50], + [9, -50], + [-30, -29], + [-20, 18], + [-27, -9], + [-4, -19], + [-38, 25], + [-20, 38], + [-7, -33], + [-30, -46], + [16, -30], + [-30, -10], + [0, -40], + [-45, -14], + [-20, -13], + [-10, 17], + [-9, 52], + [-29, -25], + [-16, -2], + [-21, 11], + [-10, 29], + [-22, -8], + [-18, 65], + [5, 39], + [22, 26], + [2, 28], + [-12, 11], + [4, 32], + [21, 29], + [21, 18], + [22, 2], + [5, 32], + [22, 24], + [42, -4], + [13, 17], + [15, -1], + [-6, 35], + [13, 46], + [22, 12], + [35, 30], + [-10, 46], + [31, 5], + [2, 21], + [-14, 39], + [27, 37], + [-3, 32], + [27, 82], + [9, 36], + [-21, 7], + [-32, -34], + [-31, -68], + [-37, -68], + [-19, -10], + [-21, -25], + [-5, -30], + [-16, -17], + [-60, -5], + [-21, 10], + [-72, 46], + [-19, 28], + [-9, 32], + [8, 81], + [-3, 40], + [10, 50], + [-3, 109], + [1, 28], + [25, 89], + [18, 41], + [33, 112], + [2, 66], + [-18, 104], + [3, 17], + [25, 24], + [-8, 77], + [-12, 68], + [0, 37], + [-31, 26], + [-11, 21], + [-22, 63], + [-26, 40], + [-7, 28], + [13, 20], + [23, 17], + [15, 26], + [0, 19], + [15, 13], + [59, 29], + [52, 98], + [57, 121], + [7, 27], + [26, 29], + [76, 105], + [17, -11], + [49, -74], + [35, -14], + [60, 4], + [0, 13], + [47, 38], + [16, 42], + [34, 13], + [9, 27], + [-9, 32], + [-22, 17], + [-28, 35], + [-11, 0], + [-104, 53], + [20, 87], + [-3, 17], + [-39, 5], + [-53, -13], + [-25, -19], + [-76, -36], + [-45, 28], + [-17, -10], + [-19, 15], + [-16, -60], + [-41, -42], + [-23, -32], + [-20, -7], + [-2, -18], + [-23, -27], + [-11, -48], + [-10, -98], + [-6, -22], + [-49, -29], + [-21, -39], + [-48, -15], + [-45, -80], + [-49, -141], + [18, -45], + [46, -78], + [0, -26], + [-43, 11], + [-63, -25], + [-37, -55], + [-2, -71], + [3, -66], + [-22, -18], + [-20, -44], + [-13, -42], + [-2, -40], + [7, -34], + [17, -29], + [32, -14], + [-26, -50], + [-20, -13], + [1, -61], + [-5, -19], + [-18, -10], + [-22, -47], + [-7, -34], + [-26, -16], + [-19, 22], + [-34, -21], + [1, -27], + [16, -38], + [25, -5], + [2, -30], + [15, -15], + [29, -14], + [18, -30], + [2, -27], + [-9, -30], + [2, -20], + [-19, -54], + [-1, -63], + [-32, -33], + [-3, -23], + [-30, -6], + [-27, -15], + [-24, 5], + [-53, -49], + [-28, -6], + [-22, -57], + [42, 15], + [19, -11], + [18, 36], + [27, 10], + [17, -23], + [3, -22], + [-3, -120], + [-27, -25], + [-9, -31], + [-20, -30], + [-22, 4], + [-10, 25], + [-16, -6], + [12, -32], + [-15, -23], + [-12, 11], + [-19, -3], + [-5, 16], + [9, 22], + [-8, 74], + [-38, 52], + [-3, -25], + [16, -51], + [4, -32], + [-4, -57], + [-25, -23], + [-22, 18], + [-4, -36], + [25, -12], + [4, -20], + [-5, -45], + [-28, -4], + [-44, -28], + [3, -24], + [16, -15], + [23, -43], + [-6, -35], + [-37, -32], + [-30, -9], + [-36, -52], + [-20, -1], + [-15, -29], + [-1, -31], + [29, 11], + [4, -19], + [-29, -42], + [-3, -45], + [7, -52], + [6, -6], + [-10, -48], + [-14, -29], + [-18, -21], + [18, -11], + [20, 4], + [10, -24], + [-6, -39], + [7, -28], + [19, -26], + [17, 28], + [12, 46], + [23, 8], + [71, -2], + [20, 28], + [21, -1], + [19, 17], + [47, -65], + [34, -17], + [18, 3], + [8, 19], + [23, -23], + [17, 1], + [22, -39], + [14, -4], + [28, -57], + [-17, -28], + [-5, -32], + [4, -25], + [-2, -68], + [-12, -44], + [-14, 0], + [-27, -39], + [-7, -22], + [0, -37], + [-31, -43], + [-39, -20], + [-35, -3], + [-18, -13], + [8, -104], + [-2, -27], + [-51, -22], + [-5, -15], + [9, -43], + [20, -36], + [26, -8], + [-3, -18], + [-36, -48], + [-33, 5], + [3, -43], + [14, -4], + [26, -33], + [-4, -84], + [-10, -28], + [-17, -11], + [-4, -35], + [13, -25], + [-30, -5], + [-13, -57], + [-52, 52], + [-12, -11], + [17, -53], + [1, -41], + [-15, -15], + [-18, 2], + [-11, -47], + [-29, 8], + [-10, 33], + [-26, -18], + [0, -39], + [-11, -25], + [-23, -8], + [-7, 17], + [-29, 2], + [-40, -29], + [-44, -84], + [34, -49], + [1, -24], + [-9, -25], + [-23, -18], + [-31, -43], + [-39, -7], + [-5, -14], + [10, -44], + [26, -20], + [-2, -41], + [-30, -24], + [-65, 41], + [-22, 25], + [-10, 0], + [-18, -28], + [3, -64], + [13, -29], + [0, -38], + [-37, -38], + [2, -46], + [10, -50], + [-63, -21], + [-15, -18], + [-24, 4], + [-24, 26], + [-13, -12], + [9, -73], + [11, -33], + [13, -15], + [-1, -19], + [-31, -8], + [-25, 31], + [-23, 6], + [-10, -12], + [-1, -40], + [-12, -5], + [-33, -35], + [-12, -35], + [-37, -72], + [-21, -17], + [-1, -45], + [21, -6], + [66, 83], + [14, -47], + [-1, -55], + [-24, -14], + [5, -30], + [34, -30], + [-9, -41], + [-26, -33], + [-5, -27], + [10, -22], + [-35, -54], + [-7, -35], + [10, -16], + [0, -25], + [-38, 2], + [-51, -16], + [-9, -26], + [3, -70], + [-17, -16], + [-29, 53], + [-23, -4], + [6, -40], + [-28, -26], + [-9, -26], + [-10, -57], + [-37, -16], + [16, -46], + [-7, -22], + [-17, -12], + [-42, 29], + [-9, 18], + [-44, 41], + [-25, -10], + [-12, -33], + [9, -26], + [21, -7], + [8, -34], + [-45, -21], + [-10, -39], + [-1, -32], + [14, -30], + [28, 2], + [18, -29], + [-3, -24], + [-30, -17], + [-25, 2], + [-36, -24], + [-17, 18], + [-22, 51], + [-12, 1], + [-73, -47], + [-38, -78], + [5, -25], + [17, 1], + [9, 18], + [30, 14], + [36, -27], + [17, -51], + [-14, -40], + [-12, 2], + [-36, 25], + [-32, -13], + [-39, 2], + [-6, -25], + [11, -11], + [-2, -35], + [-54, -7], + [-20, 13], + [-20, -1], + [-29, -41], + [-31, -97], + [10, -43], + [26, 8], + [18, -13], + [34, 4], + [57, -23], + [0, -30], + [-14, -22], + [-33, -32], + [5, -22], + [31, 2], + [30, 28], + [6, 13], + [26, 0], + [-46, -63], + [-31, -36], + [-23, -40], + [-5, -30], + [7, -52], + [-14, 2], + [-13, 43], + [-14, -21], + [19, -40], + [17, -18], + [8, -25], + [-14, -23], + [-15, 31], + [-16, -6], + [9, -40], + [-5, -13], + [-51, 70], + [-8, 71], + [-17, 9], + [-11, -29], + [0, -24], + [10, -49], + [13, -20], + [4, -34], + [-1, -33], + [-8, -11], + [-30, -4], + [-8, 10], + [4, 47], + [-10, 7], + [-47, -19], + [-14, -84], + [-40, -19], + [-118, -69], + [-44, -33], + [-9, -24], + [5, -75], + [-11, 3], + [-22, 38], + [-3, 80], + [-14, 2], + [-20, -28], + [20, -27], + [16, -102], + [-2, -22], + [-12, -26], + [-3, -29], + [16, -43], + [-4, -23], + [-25, -66], + [-33, -33], + [-17, -8], + [-9, 34], + [7, 18], + [38, 13], + [4, 14], + [-11, 25], + [-17, 1], + [-12, 110], + [13, 65], + [8, 13], + [-19, 16], + [-34, 12], + [-47, 2], + [-19, -21], + [11, -45], + [-18, -24], + [-23, 17], + [-33, -14], + [-13, -33], + [3, -59], + [-27, -53], + [-22, -32], + [-41, -29], + [-21, -1], + [-42, 17], + [-7, -31], + [24, -40], + [-15, -37], + [-7, -50], + [4, -30], + [-13, -36], + [-16, -8], + [-15, 54], + [-18, 46], + [-18, 9], + [-19, -40], + [-20, 10], + [-26, -16], + [0, -21], + [53, -3], + [8, -19], + [-3, -49], + [-51, -20], + [-29, 20], + [-5, 19], + [7, 23], + [-23, 18], + [-20, -7], + [-13, -22], + [-9, -57], + [-12, -38], + [-90, -104], + [-23, -9], + [-21, 3], + [2, 24], + [-24, 1], + [-35, -25], + [-5, -12], + [-23, 0], + [-6, 26], + [9, 40], + [-3, 93], + [32, 92], + [5, 44], + [-5, 14], + [-27, 11], + [-30, -3], + [-46, -25], + [-10, -18], + [-28, -108], + [14, -111], + [7, -17], + [-12, -39], + [-37, -112], + [-11, -14], + [-6, -34], + [3, -26], + [-10, -28], + [-39, 30], + [-24, 0], + [-6, -18], + [28, -62], + [18, -14], + [12, -31], + [-2, -24], + [-39, -45], + [-34, 28], + [-9, 22], + [4, 22], + [-13, 17], + [-16, -6], + [-15, -44], + [0, -20], + [22, -46], + [-10, -39], + [-22, -12], + [-18, 22], + [-28, -5], + [-23, -11], + [-29, 13], + [-24, 37], + [-8, 33], + [27, 17], + [19, -22], + [7, 20], + [-22, 33], + [-18, 9], + [-9, 25], + [-16, 76], + [-41, 50], + [-19, 4], + [-16, -14], + [-13, -51], + [-3, -40], + [15, -24], + [22, 3], + [16, -24], + [21, -41], + [-10, -15], + [-3, -34], + [15, -48], + [19, -43], + [6, -52], + [-9, 0], + [-31, 24], + [-19, -4], + [-13, -21], + [8, -24], + [-25, -35], + [-34, -12], + [-35, 22], + [-33, 55], + [2, 37], + [-26, 53], + [-40, 31], + [-15, -4], + [-33, -28], + [-12, -59], + [8, -18], + [32, -10], + [51, -45], + [10, -30], + [-46, -74], + [-25, -49], + [-38, -27], + [-31, -39], + [2, -11], + [28, -44], + [44, 10], + [18, 28], + [20, -12], + [50, -80], + [2, -31], + [-32, 3], + [-10, 30], + [-22, 4], + [-10, -11], + [-34, -2], + [-20, 26], + [-17, 35], + [-20, -14], + [-12, -28], + [0, -76], + [-23, -4], + [-35, -43], + [-5, -15], + [-42, 13], + [-37, 4], + [-102, -19], + [-55, -21], + [-65, -49], + [-40, -71], + [-2, -77], + [-27, -43], + [-17, -17], + [-67, -29], + [-17, -15], + [-49, -3], + [-50, 22], + [-17, 28], + [-23, 73], + [-19, 28], + [-7, 50], + [11, 36], + [38, 33], + [32, 17], + [22, 28], + [27, 115], + [21, 115], + [1, 45], + [26, 43], + [27, 16], + [27, -18], + [16, -23], + [22, 13], + [38, 35], + [17, 33], + [24, 15], + [36, 12], + [28, 36], + [28, 54], + [19, 1], + [35, 26], + [16, -7], + [44, 2], + [53, 13], + [5, -38], + [46, -48], + [29, -76], + [-3, -51], + [12, -3], + [31, 34], + [-4, 26], + [-15, 24], + [-1, 30], + [12, 12], + [18, -14], + [16, 23], + [-30, 48], + [-8, 59], + [-16, 79], + [48, 54], + [42, 28], + [17, -10], + [53, 5], + [33, 20], + [15, 50], + [-4, 21], + [-28, 2], + [6, 32], + [76, 67], + [20, 55], + [8, 54], + [14, 47], + [38, 64], + [57, 150], + [28, 83], + [41, 52], + [25, 57], + [44, 52], + [29, 44], + [15, 40], + [16, 31], + [45, 26], + [31, 23], + [23, 25], + [59, 31], + [69, 47], + [16, -26], + [24, -4], + [52, 13], + [11, -13], + [73, 81], + [17, 0], + [28, -45], + [4, -50], + [-15, 4], + [-32, -25], + [-6, -58], + [15, -42], + [68, -77], + [16, 25], + [49, -30], + [4, 20], + [-53, 44], + [-16, 83], + [14, 18], + [45, -7], + [47, 23], + [18, -3], + [13, -47], + [24, -34], + [23, 13], + [46, -27], + [9, 23], + [-27, 36], + [18, 19], + [-4, 29], + [-25, 8], + [-49, 38], + [-57, 26], + [-2, 50], + [-22, 21], + [25, 92], + [10, 59], + [9, 83], + [1, 45], + [11, 59], + [32, 51], + [19, 39], + [8, 32], + [19, 36], + [27, 19], + [32, 43], + [23, 43], + [40, 91], + [119, 123], + [40, 26], + [48, 45], + [21, 43], + [-2, 24], + [95, 130], + [22, 47], + [14, -24], + [41, -33], + [33, -6], + [54, 22], + [4, 29], + [-7, 39], + [-9, 10], + [-27, 77], + [0, 127], + [6, 33], + [58, 192], + [26, 70], + [55, 79], + [32, 35], + [36, 63], + [16, 17], + [22, 94], + [54, 91], + [32, 33], + [34, -66], + [30, -9], + [2, 33], + [-18, 76], + [-14, 33], + [-36, -11], + [-13, 31], + [-11, 95], + [6, 62], + [-3, 113], + [-14, 193], + [-2, 106], + [16, 47], + [56, 29], + [12, 58], + [-17, 6], + [-6, -21], + [-16, 5], + [-37, 34], + [-17, 22], + [-13, 60], + [-1, 72], + [9, 108], + [9, 32], + [20, 30], + [15, 12], + [14, 40], + [8, 44], + [34, 80], + [35, 65], + [4, 23], + [8, 110], + [-11, 67], + [14, 37], + [-10, 41], + [-25, 12], + [2, -50], + [-8, -33], + [-16, -28], + [-38, -40], + [-25, -13], + [-30, -29], + [-28, -39], + [-22, -11], + [-19, -20], + [-5, -23], + [-58, -43], + [-59, -76], + [-71, -69], + [-41, -32], + [-40, -4], + [-32, 21], + [-18, 22], + [-18, 70], + [-14, 21], + [-23, 20], + [-40, 7], + [-25, 18], + [-6, 67], + [-5, 17], + [-28, 35], + [-36, -53], + [-20, -15], + [-1, -70], + [14, -44], + [-8, -40], + [-19, -16], + [-1, -33], + [24, -76], + [37, -84], + [37, -70], + [-28, -95], + [-13, -16], + [-27, -14], + [-22, 3], + [-55, 19], + [-73, 142], + [-32, 68], + [-66, 123], + [-18, 29], + [-56, 62], + [-36, 12], + [-27, 0], + [16, 68], + [-16, 34], + [-19, 5], + [-31, -16], + [1, -89], + [-24, 2], + [12, -42], + [-3, -22], + [-40, -38], + [-47, 71], + [2, 27], + [-32, 13], + [-13, -33], + [-25, 1], + [-8, 59], + [-31, -25], + [-29, 46], + [-17, 8], + [23, 52], + [-35, 83], + [-62, -64], + [-62, -84], + [-41, -72], + [-24, -107], + [-16, 67], + [-58, -41], + [-70, -92], + [-60, -65], + [-11, -43], + [5, -49], + [-60, -49], + [-10, -28], + [-31, -15], + [-20, -48], + [-28, -20], + [-12, 54], + [-49, 37], + [-82, -32], + [-48, 25], + [71, 59], + [28, -35], + [25, 16], + [3, 51], + [31, 83], + [-1, 61], + [-28, 165], + [-29, 105], + [-75, 92], + [-40, 116], + [8, 47], + [36, -29], + [-17, 114], + [47, 85], + [11, 50], + [22, 2], + [12, 30], + [-30, 73], + [-51, 97], + [-33, 108], + [-54, 95], + [-37, 56], + [-10, 73], + [-11, 23], + [-22, 19], + [-19, 41], + [-12, 39], + [-6, 41], + [10, 31], + [3, 40], + [-15, 26], + [-15, -21], + [-8, -44], + [-13, -18], + [-20, 43], + [-8, 36], + [-13, 7], + [-17, -14], + [-12, -47], + [-2, -33], + [8, -26], + [6, -46], + [-6, -58], + [-47, -39], + [-25, 5], + [-23, -7], + [-7, -22], + [-27, -26], + [-57, -47], + [-22, -29], + [-55, -53], + [-71, -39], + [-85, -33], + [-43, -12], + [-45, -6], + [-67, 2], + [-64, 21], + [-15, 9], + [-22, 30], + [-21, 58], + [-6, 39], + [12, 16], + [21, 6], + [-4, 31], + [-28, 36], + [-48, 30], + [-14, 0], + [-22, 23], + [-54, 104], + [-10, 33], + [-18, 8], + [-34, 38], + [-9, 29], + [-21, 31], + [-32, -6], + [-31, 9], + [-49, 38], + [-42, 51], + [-33, 52], + [3, 21], + [28, 15], + [20, 24], + [13, 35], + [0, 23], + [-13, 16], + [-29, -1], + [-51, -59], + [-22, -4], + [-49, 8], + [-26, 49], + [14, 34], + [46, 6], + [33, 55], + [11, 33], + [32, 47], + [14, -1], + [22, 32], + [-2, 21], + [-26, 33], + [-6, 29], + [25, 9], + [21, 24], + [-7, 16], + [-33, -13], + [-5, 27], + [8, 45], + [20, 56], + [1, 28], + [-25, -30], + [-9, -22], + [7, -14], + [-24, -39], + [-20, -14], + [-19, 9], + [-21, 42], + [1, 22], + [24, 5], + [-19, 65], + [2, 11], + [28, 42], + [38, -2], + [23, 17], + [10, 72], + [23, -3], + [-10, 32], + [-37, -1], + [-6, -7], + [4, -54], + [-25, -1], + [-26, 20], + [-26, 53], + [0, 25], + [-13, 3], + [-36, 34], + [-14, -16], + [-5, -76], + [4, -40], + [-23, -6], + [-61, 20], + [-17, 25], + [-24, 128], + [1, 68], + [-17, 18], + [-51, 14], + [-11, -9], + [-27, 36], + [-17, 61], + [-3, 36], + [28, 28], + [30, 21], + [6, 24], + [-3, 26], + [-23, 34], + [-43, 29], + [-21, -2], + [-13, -20], + [-30, -10], + [-4, -12], + [13, -26], + [-19, -11], + [-26, 67], + [-9, 44], + [4, 133], + [9, 26], + [2, -106], + [34, 9], + [58, 35], + [36, 13], + [-1, 20], + [-18, 0], + [-32, 16], + [-30, 26], + [-37, 81], + [2, 18], + [50, 23], + [34, -5], + [44, 2], + [10, 20], + [36, 10], + [9, 29], + [-38, 56], + [-18, 57], + [-8, 41], + [6, 84], + [20, 75], + [128, 292], + [14, 59], + [24, 51], + [37, 66], + [18, 23], + [67, 42], + [37, 28], + [-11, 22], + [-37, -18], + [-20, 28], + [9, 40], + [38, -22], + [-23, 154], + [-9, 44], + [12, 55], + [25, 25], + [7, 58], + [-11, 44], + [16, 58], + [11, 19], + [37, 47], + [0, 13], + [-25, 9], + [3, 22], + [49, 99], + [24, 42], + [22, 19], + [57, 36], + [25, 11], + [39, 7], + [26, -13], + [34, -27], + [58, -5], + [13, -28], + [36, -51], + [10, 7], + [24, -10], + [10, -25], + [36, -31], + [42, -49], + [69, 22], + [34, 19], + [14, 33], + [34, 47], + [19, 37], + [-1, 39], + [6, 22], + [19, 16], + [17, -1], + [22, 21], + [30, 69], + [43, 115], + [4, 37], + [22, 56], + [28, 43], + [-14, 60], + [16, 4], + [57, -27], + [13, 4], + [14, -27], + [-2, -22], + [11, -26], + [36, 2], + [34, 8], + [60, 29], + [36, -14], + [49, 18], + [52, 24], + [43, 29], + [19, 20], + [8, 52], + [22, 41], + [42, 100], + [29, 90], + [12, 52], + [-7, 72], + [-23, 78], + [-20, 55], + [-18, 35], + [-21, 71], + [-10, 46], + [-12, 118], + [3, 15], + [-14, 35], + [-105, 143], + [-15, 30], + [-18, 0], + [-37, 20], + [-35, -4], + [6, 99], + [27, 35], + [26, -18], + [33, -11], + [57, 1], + [23, 13], + [-16, 43], + [38, 17], + [45, 78], + [3, 15], + [-6, 110], + [-37, 73], + [-27, 41], + [-20, 11], + [-36, 36], + [-22, 30], + [-6, 26], + [-17, -2], + [-5, -45], + [-26, -40], + [-19, -58], + [-4, -40], + [-18, -19], + [-31, -11], + [-29, 9], + [-28, 25], + [-70, -103], + [-21, -16], + [-56, -17], + [-25, -16], + [-16, -30], + [-4, -44], + [-37, -37], + [-67, -80], + [-23, -74], + [6, -25], + [-6, -75], + [-30, -34], + [-24, -44], + [-9, 31], + [-2, 62], + [-24, 79], + [-1, 29], + [-33, 46], + [-11, 4], + [-26, -11], + [9, -72], + [-20, -50], + [-4, -34], + [-24, -14], + [-22, 34], + [-11, 45], + [-38, 38], + [-38, 30], + [-55, 28], + [-85, 5], + [-51, -33], + [-64, 9], + [-58, -9], + [-40, -22], + [-45, -38], + [-91, -87], + [-24, -12], + [-51, -12], + [-74, 36], + [-73, 28], + [-51, 14], + [-73, 23], + [-62, 11], + [-98, 26], + [-18, 8], + [-57, 62], + [-9, 15], + [-27, 95], + [0, 75], + [17, 14], + [8, 32], + [-4, 44], + [-43, 75], + [-58, 54], + [-5, 13], + [2, 46], + [-13, 20], + [-47, 43], + [-18, 40], + [4, 16], + [30, -25], + [21, -7], + [42, 6], + [11, 27], + [30, 17], + [20, 33], + [-5, 56], + [30, 36], + [14, 27], + [-11, 25], + [-39, 37], + [-24, 8], + [-36, -18], + [-50, 13], + [-37, 26], + [-45, 24], + [-131, 17], + [-27, 14], + [-36, 37], + [-48, 62], + [-46, 37], + [-24, 24], + [-30, 9], + [-28, 20], + [-8, 41], + [-10, 18], + [0, 35], + [8, 35], + [44, 51], + [42, 31], + [42, 27], + [68, 54], + [78, 78], + [60, 76], + [55, 58], + [8, 14], + [44, 53], + [102, 111], + [66, 59], + [30, -22], + [41, -15], + [-8, -17], + [25, -33], + [12, -5], + [52, 12], + [47, -24], + [22, 14], + [11, 18], + [25, 3], + [14, 28], + [-12, 24], + [-39, 43], + [-24, 7], + [-30, 1], + [-11, 33], + [8, 28], + [-11, 56], + [26, 27], + [46, 36], + [87, 74], + [74, 58], + [21, 11], + [138, 91], + [104, 54], + [19, 1], + [85, 21], + [38, 5], + [-1, -21], + [27, -21], + [20, 10], + [33, -11], + [11, -40], + [0, -29], + [-10, -44], + [-26, -45], + [-8, -36], + [2, -71], + [13, -27], + [5, -37], + [-24, -52], + [-17, -17], + [-42, -22], + [1, -24], + [25, 0], + [31, 16], + [14, -34], + [12, -44], + [28, -44], + [3, -25], + [50, 2], + [28, 17], + [14, 19], + [53, 5], + [20, -16], + [42, -8], + [26, 8], + [32, 19], + [84, 26], + [48, -54], + [31, 10], + [24, 19], + [25, -32], + [21, 5], + [42, 35], + [21, 29], + [7, -12], + [33, -2], + [28, -22], + [40, -16], + [18, 63], + [30, 48], + [15, 51], + [3, 28], + [18, 77], + [20, 29], + [50, -1], + [10, -36], + [42, -9], + [37, 33], + [18, -3], + [15, 14], + [-4, 18], + [-24, 30], + [-8, 26], + [-19, 32], + [-32, 10], + [-51, 25], + [-57, 16], + [-58, -9], + [-40, -46], + [-33, -18], + [9, 59], + [3, 50], + [-8, 82], + [-58, 80], + [-25, 25], + [-7, 34], + [-24, 53], + [-33, 32], + [-53, 9], + [-27, 10], + [-6, 41], + [-23, 53], + [-18, 28], + [-2, 27], + [6, 29], + [34, 29], + [50, 24], + [23, -20], + [20, -55], + [49, -86], + [29, -7], + [2, -23], + [-19, -80], + [7, -55], + [37, -46], + [21, -58], + [55, -56], + [51, -48], + [18, -12], + [46, 25], + [36, 34], + [13, 33], + [-5, 17], + [-65, -3], + [-5, 41], + [-19, 21], + [-54, 39], + [-64, 91], + [-6, 13], + [1, 94], + [20, 45], + [3, 32], + [29, 124], + [38, -27], + [26, 6], + [-1, 28], + [-16, 26], + [-33, 23], + [-25, 0], + [-40, 41], + [-28, -5], + [-75, -37], + [-29, -26], + [-8, -16], + [-38, -3], + [-32, -12], + [-8, 44], + [-17, -14], + [-40, -11], + [-22, 50], + [-46, -32], + [-3, -18], + [-16, -14], + [-67, 33], + [-69, 16], + [-66, 25], + [-27, 3], + [-42, 22], + [-15, 16], + [-3, 94], + [-8, 54], + [-24, 108], + [-21, 76], + [-47, 136], + [-25, 57], + [-22, 35], + [-23, 24], + [-108, 93], + [-81, 106], + [-93, 113], + [-44, 49], + [-16, 37], + [-82, 67], + [-54, 17], + [-42, 3], + [-23, 14], + [-33, 32], + [-9, 30], + [-81, 112], + [-39, 41], + [-63, 47], + [-36, 19], + [-33, -1], + [-8, 9], + [33, 28], + [104, 63], + [23, 47], + [3, 58], + [19, 64], + [2, 58], + [9, 77], + [4, 118], + [-11, 95], + [3, 23], + [124, -13], + [46, -8], + [105, 8], + [160, 51], + [48, 22], + [40, 13], + [85, 21], + [37, 27], + [19, 23], + [29, 21], + [44, 68], + [31, 34], + [21, 29], + [35, 63], + [24, 65], + [45, 98], + [20, 13], + [34, 110], + [2, 46], + [12, 80], + [5, 9], + [4, 58], + [-4, 21], + [-28, 36], + [28, 25], + [29, 101], + [-14, 28], + [-23, 10], + [6, 36], + [29, 52], + [21, 16], + [21, 49], + [43, 81], + [8, -1], + [30, 73], + [4, 32], + [-1, 47], + [20, 5], + [12, 18], + [-2, 20], + [12, 40], + [43, 66], + [39, 77], + [25, 82], + [18, 22], + [4, -30], + [22, -29], + [5, 21], + [20, -4], + [19, -29], + [32, 0], + [37, 9], + [41, 23], + [67, 92], + [11, -10], + [40, 37], + [29, 39], + [67, 103], + [2, 14], + [71, 119], + [42, 92], + [37, 74], + [31, 52], + [39, 80], + [32, 36], + [89, 72], + [15, -10], + [10, -35], + [-8, -13], + [-48, -20], + [-2, -29], + [15, -25], + [46, 6], + [39, 14], + [13, 11], + [-8, 27], + [93, 6], + [75, 27], + [-1, 30], + [40, -2], + [26, 9], + [35, 20], + [41, 32], + [31, 32], + [69, 99], + [28, 52], + [34, 82], + [30, 95], + [36, 105], + [35, 95], + [41, 69], + [20, 21], + [6, -40], + [11, -22], + [52, -30], + [41, 7], + [41, -11], + [17, -42], + [6, -35], + [16, 20], + [55, 22], + [51, -14], + [7, -7], + [5, -41], + [18, -34], + [-6, -43], + [-23, -27], + [-17, -30], + [-12, -43], + [-17, -28], + [-42, -13], + [-3, -18], + [1, -60], + [16, -35], + [4, -63], + [20, 6], + [7, 24], + [41, 12], + [26, -2], + [36, 50], + [2, 31], + [-6, 35], + [2, 32], + [17, 32], + [13, 46], + [23, 18], + [18, -39], + [11, 14], + [-7, 45], + [-32, 36], + [2, 20], + [27, 42], + [11, -37], + [16, 21], + [-11, 39], + [13, 25], + [80, -55], + [53, -53], + [19, -38], + [-6, -17], + [-8, -88], + [7, -39], + [24, -33], + [18, -10], + [47, 26], + [28, -16], + [14, -20], + [-2, -22], + [17, -5], + [29, 37], + [17, 38], + [11, 59], + [11, 21], + [39, 22], + [65, 6], + [27, 13], + [49, 52], + [29, 11], + [37, -15], + [72, -1], + [52, 17], + [41, -6], + [61, -16], + [27, -41], + [-25, -26], + [-16, -70], + [0, -18], + [-22, -37], + [10, -48], + [17, -38], + [17, -4], + [8, 16], + [23, -17], + [35, 3], + [26, -6], + [13, -14], + [14, 8], + [49, -5], + [26, 19], + [-5, -47], + [13, -21], + [-52, -43], + [-4, -25], + [16, -17], + [33, 14], + [67, 19], + [34, -2], + [47, -14], + [23, -17], + [12, 9], + [-6, 52], + [37, -2], + [5, 29], + [18, 19], + [35, 20], + [14, 49], + [96, 32], + [22, 2], + [9, -23], + [-5, -29], + [8, -12], + [30, 17], + [40, 1], + [10, 13], + [46, 101], + [17, -17], + [43, 35], + [25, -7], + [30, 37], + [18, -24], + [29, 14], + [41, 3], + [33, -13], + [43, -33], + [30, 9], + [24, -15], + [15, 18], + [6, 21], + [26, 2], + [52, -56], + [8, -43], + [23, -13], + [17, 9], + [34, 64], + [29, 5], + [12, -14], + [36, -2], + [33, -12], + [17, -13], + [28, -57], + [29, -13], + [51, 20], + [33, -5], + [15, 9], + [24, 47], + [16, -42], + [22, -19], + [51, 11], + [22, 55], + [47, 6], + [63, 38], + [29, 3], + [41, 15], + [32, 0], + [27, -14], + [28, 6], + [36, 26], + [0, 20], + [24, -10], + [15, -21], + [50, -29], + [31, 5], + [23, -25], + [22, -11], + [50, 5], + [20, -19], + [58, 9], + [22, -16], + [23, 27], + [-1, 15], + [38, -3], + [36, 15], + [30, 81], + [33, 25], + [32, 17], + [23, 37], + [15, 8], + [30, 99], + [38, 11], + [2, 13], + [48, 31], + [2, 16], + [26, -5], + [5, -41], + [7, -10], + [41, 21], + [7, 23], + [16, 17], + [19, -2], + [34, -23], + [17, 9], + [0, 18], + [34, -7], + [64, -8], + [92, -39], + [37, -30], + [7, -18], + [41, 9], + [72, -30], + [35, -47], + [23, 25], + [22, 11], + [44, -5], + [70, -30], + [41, -29], + [10, -34], + [23, -23], + [36, 16], + [-2, 62], + [30, 2], + [43, -12], + [350, -1219], + [824, -2825], + [1249, -4179], + [488, -1601], + [28, -91], + [211, 14], + [-3, 105], + [233, -26], + [62, 228], + [235, 156], + [14, -35], + [33, -271], + [93, -61], + [124, -15], + [43, 2], + [50, -91], + [31, -36], + [35, -16], + [326, -168], + [234, -121], + [135, -240], + [18, -89], + [31, 22], + [40, 141], + [112, 240], + [8, 30], + [96, 68], + [1, 152], + [-53, 139], + [52, 87], + [4, 79], + [-14, 34], + [-12, 50], + [0, 45], + [67, 65], + [47, 73], + [107, 205], + [109, -37], + [78, -54], + [24, 4], + [57, -38], + [31, -83], + [10, -41], + [19, -36], + [45, -68], + [31, -43], + [97, 1], + [49, -19], + [71, -33], + [34, 22], + [74, -72], + [32, -56], + [37, -42], + [55, -41], + [137, -15], + [79, -6], + [105, -83], + [90, -47], + [80, -49], + [36, -83], + [73, -61], + [83, -52], + [34, -23], + [102, -123], + [148, -98], + [103, -106], + [75, -57], + [88, -87], + [143, -99], + [103, -99], + [60, -96], + [68, -33], + [65, -110], + [65, -59], + [39, -5], + [38, -26], + [75, -90], + [56, -26], + [65, 46], + [96, -29], + [147, -8], + [52, -16], + [144, 55], + [109, -49], + [43, 6], + [35, 15], + [60, -84], + [95, 13], + [51, 65], + [65, -56], + [30, -34], + [30, -78], + [10, -113], + [-9, -29], + [6, -48], + [24, -50], + [30, -21], + [37, -104], + [57, -74], + [35, -26], + [58, -105], + [33, -22], + [9, -16], + [-12, -122], + [2, -67], + [17, -93], + [2, -119], + [-5, -71], + [-22, -125], + [-20, -77], + [-24, -34], + [-2, -23], + [22, -13], + [-20, -41], + [-33, 20], + [-23, 46], + [-29, 6], + [15, -39], + [-11, -33], + [-15, -6], + [-30, 4], + [-29, 26], + [-4, 17], + [-48, 85], + [-10, 37], + [-39, 8], + [-11, 36], + [-8, 45], + [-50, 27], + [-32, 29], + [-18, 32], + [23, 87], + [3, 36], + [-7, 19], + [7, 17], + [26, 10], + [-33, 61], + [-46, 57], + [-7, 17], + [-5, 61], + [-12, 41], + [-32, 61], + [-51, 90], + [-41, 45], + [-38, 30], + [-87, 61], + [-53, 23], + [-37, 27], + [-8, -9], + [10, -28], + [59, -27], + [67, -45], + [41, -56], + [63, -49], + [25, -32], + [40, -67], + [0, -24], + [-10, -31], + [26, -69], + [44, -70], + [15, -5], + [26, -35], + [-12, -18], + [-44, 53], + [-6, -29], + [19, -26], + [22, -66], + [-4, -44], + [-14, -83], + [-19, -21], + [-30, -1], + [-26, 16], + [-2, 31], + [4, 52], + [-10, 74], + [-18, 29], + [-35, -37], + [13, -24], + [15, -6], + [14, -20], + [3, -44], + [-10, -34], + [-20, -51], + [-12, -7], + [-47, 48], + [1, 14], + [-21, 9], + [-8, -10], + [9, -37], + [-9, -9], + [-58, 18], + [-32, -3], + [-24, 12], + [-13, 18], + [-68, 26], + [-28, 65], + [14, 35], + [23, 25], + [15, 54], + [-13, 23], + [-16, -2], + [-22, 19], + [-13, 64], + [-28, 23], + [-2, 23], + [22, 41], + [-5, 23], + [-21, -1], + [-7, -19], + [-30, 61], + [1, 29], + [-22, 10], + [-17, -33], + [-24, -22], + [25, -32], + [22, -2], + [8, -11], + [16, -108], + [20, -51], + [-3, -84], + [-26, 7], + [-7, -16], + [45, -72], + [1, -47], + [-8, -2], + [-49, 19], + [-26, -9], + [-20, 2], + [-25, 14], + [-65, 101], + [-28, 19], + [20, 21], + [3, 23], + [-19, 48], + [25, 33], + [3, 28], + [-10, 48], + [-24, 91], + [-49, 79], + [-5, 54], + [17, -6], + [2, 49], + [-11, 73], + [-10, 13], + [-22, -14], + [-6, -18], + [14, -54], + [-19, -46], + [-9, -74], + [61, -83], + [2, -44], + [-31, -12], + [-21, -23], + [-2, -49], + [14, -19], + [0, -18], + [-20, -16], + [-23, 21], + [-31, 70], + [-48, 55], + [-39, 33], + [-17, 2], + [-19, -22], + [-15, -29], + [2, -28], + [-62, 58], + [-20, 29], + [-27, 74], + [3, 29], + [22, 8], + [15, 20], + [-12, 64], + [2, 56], + [30, 41], + [11, 1], + [33, -26], + [16, 4], + [-12, 39], + [-25, 33], + [-57, 95], + [12, 11], + [62, -5], + [22, -27], + [5, -19], + [28, -16], + [-4, 33], + [-35, 50], + [-34, 15], + [-13, -10], + [-46, 22], + [-23, 42], + [-5, 24], + [12, 23], + [2, 40], + [-11, 30], + [-12, 7], + [-15, -29], + [-13, 2], + [-34, -24], + [-44, 7], + [-6, 30], + [13, 78], + [11, 52], + [-11, 4], + [-19, -19], + [-15, -69], + [6, -16], + [-14, -14], + [-43, 0], + [-79, 18], + [-44, 45], + [-34, 14], + [-34, 29], + [-14, 25], + [23, 30], + [6, 37], + [-24, 35], + [-13, 3], + [-10, -58], + [-34, -5], + [-18, -9], + [-31, 9], + [-24, -7], + [-26, -18], + [-22, 30], + [-22, 1], + [-21, -45], + [-108, 9], + [-37, 57], + [-6, 43], + [3, 36], + [15, 9], + [20, -10], + [47, 38], + [3, 19], + [-6, 31], + [-34, -20], + [-50, -5], + [-19, 18], + [0, 18], + [-65, 78], + [-18, 56], + [9, 16], + [-6, 22], + [-13, 0], + [-18, -32], + [-29, 0], + [-42, 31], + [-11, 22], + [-15, 73], + [29, 22], + [37, -15], + [57, 14], + [92, -7], + [31, -6], + [-7, 24], + [-48, 18], + [-22, 4], + [-13, -8], + [-97, 27], + [-46, 18], + [-3, 13], + [-34, 67], + [-17, -10], + [-3, -20], + [19, -59], + [-29, -17], + [-60, 11], + [-141, 116], + [-52, 36], + [-76, 98], + [-194, -86], + [-163, 88], + [-151, 83], + [-206, 380], + [-35, 63], + [18, 10], + [-53, 96], + [-32, 47], + [-42, 52], + [-61, 50], + [-49, 49], + [13, -54], + [19, -32], + [18, -14], + [20, -1], + [37, -51], + [1, -67], + [23, -68], + [34, -11], + [29, -42], + [19, -62], + [-9, -21], + [49, -58], + [31, -25], + [22, -46], + [83, -97], + [13, -27], + [-24, -4], + [7, -22], + [54, -66], + [46, -64], + [41, -66], + [19, -39], + [-14, -31], + [8, -29], + [33, -61], + [-33, -9], + [-35, 10], + [-23, -18], + [-15, 2], + [-26, 18], + [-44, 44], + [-42, 65], + [-6, -4] + ], + [ + [41796, 12069], + [11, -2], + [54, -36], + [22, -25], + [14, -45], + [163, -106], + [52, -54], + [46, -25], + [17, -31], + [20, -11], + [18, 2], + [22, 17], + [18, 2], + [71, -33], + [15, -13], + [27, -4], + [69, -29], + [49, -25], + [79, -46], + [38, -32], + [120, -78], + [70, -40], + [26, -7], + [26, -20], + [64, -66], + [77, -56], + [22, -30], + [31, -24], + [68, -71], + [10, -7], + [46, -61], + [9, -29], + [32, -37], + [25, -12], + [27, -48], + [-1, -59], + [-6, -30], + [19, -100], + [-3, -11], + [13, -88], + [15, -26], + [15, -5], + [29, 6], + [31, 26], + [74, -4], + [22, -29], + [26, -52], + [18, -47], + [-1, -47], + [13, -79], + [42, -38], + [26, -4], + [4, -33], + [10, -23], + [28, -20], + [22, -29], + [45, -42], + [59, -38], + [45, -22], + [33, -29], + [21, -3], + [26, -20], + [13, -29], + [-12, -96], + [-24, -44], + [-48, -64], + [-32, -28], + [-68, -71], + [-24, -39], + [-33, -40], + [-25, -41], + [-69, -43], + [-73, -34], + [-89, -63], + [-34, -36], + [-46, -17], + [-25, 2], + [-61, -18], + [-76, 30], + [-40, 10], + [-58, -18], + [-27, -39], + [-47, -40], + [-9, -42], + [-19, -21], + [-31, -16], + [-23, -2], + [-46, -32], + [-23, -43], + [-33, -46], + [-21, -12], + [-72, -20], + [-16, -13], + [8, -21], + [-29, -26], + [-22, -57], + [-21, -22], + [9, -33], + [4, -59], + [-12, -35], + [-26, -25], + [-18, -59], + [5, -47], + [-6, -23], + [-23, -2], + [-17, -26], + [-19, -46], + [-32, -41], + [-23, -18], + [-32, 16], + [-17, 45], + [-73, 77], + [-76, 36], + [-92, 86], + [-94, 30], + [-57, 35], + [-16, 50], + [-42, 66], + [-9, 1], + [-39, 105], + [-5, 89], + [4, 158], + [-7, 32], + [-5, 73], + [7, 41], + [0, 62], + [-7, 98], + [-6, 28], + [-30, 78], + [-37, 61], + [4, 37], + [-29, 40], + [-8, 21], + [-12, 76], + [1, 27], + [-17, 17], + [-15, -8], + [-29, 20], + [-9, 55], + [-26, 95], + [-20, 24], + [-14, 79], + [-21, 57], + [-49, 91], + [-62, 22], + [-15, 24], + [0, 25], + [10, 7], + [-23, 48], + [-34, 36], + [-7, 39], + [-27, 32], + [9, 29], + [5, 37], + [-3, 61], + [45, 53], + [24, 38], + [35, 71], + [31, 23], + [29, 3], + [18, -13], + [26, 16], + [-5, 41], + [14, 30], + [17, 64], + [12, 27], + [-1, 23], + [42, 55], + [14, 37], + [27, 19], + [11, -3], + [5, 50], + [-4, 78], + [-8, 25], + [-52, 72], + [-37, 43], + [-42, 74], + [-42, 102], + [-34, 154], + [-2, 78], + [14, 49], + [28, 31], + [38, 8], + [83, -33], + [59, -38], + [9, -2] + ], + [ + [32208, 16266], + [24, -5], + [8, -49], + [-22, 5], + [-10, 49] + ], + [ + [32932, 16965], + [4, 9], + [7, 83], + [29, 14], + [46, 2], + [28, -20], + [17, -42], + [-24, -8], + [-17, -54], + [-4, -71], + [16, -44], + [7, -38], + [-34, -27], + [-46, -17], + [-43, -8], + [-24, -19], + [-19, -44], + [-21, -62], + [-18, -85], + [2, -24], + [-25, 12], + [-35, 33], + [-35, 53], + [-3, 87], + [14, 94], + [29, 32], + [37, 60], + [40, 21], + [53, 37], + [19, 26] + ], + [ + [34168, 17556], + [43, 25], + [39, -22], + [6, -8], + [36, -16], + [26, 6], + [29, -26], + [54, -59], + [23, -81], + [23, -17], + [11, -50], + [2, -43], + [-28, -83], + [-2, -45], + [-19, -21], + [-6, -20], + [-1, -45], + [34, -146], + [1, -31], + [-27, -25], + [-7, -28], + [-44, -36], + [-41, -66], + [-29, -32], + [-35, -31], + [-53, 32], + [-38, 18], + [-52, 8], + [-72, 6], + [-57, 23], + [-49, 1], + [-59, 53], + [-25, 42], + [-54, 65], + [-65, 21], + [-31, 20], + [-76, 31], + [-17, 16], + [-53, 85], + [-10, 34], + [-2, 83], + [9, 22], + [52, 69], + [8, 38], + [6, 70], + [11, 23], + [45, 31], + [56, 10], + [104, 89], + [42, 46], + [45, 3], + [22, -9], + [18, -25], + [11, 6], + [30, -12], + [10, -20], + [16, -6], + [11, 12], + [-4, 38], + [20, 18], + [17, -2], + [27, -18], + [20, 5], + [28, -8], + [21, -18] + ], + [ + [39122, 14613], + [31, -10], + [19, 17], + [4, 47], + [12, 27], + [24, -17], + [28, -54], + [16, -42], + [85, -34], + [10, 20], + [58, -23], + [49, 6], + [35, 16], + [94, 9], + [57, -13], + [16, -38], + [32, 4], + [13, -7], + [1, -24], + [-16, -50], + [-36, -59], + [-45, -46], + [-26, -20], + [-4, -14], + [-74, -29], + [-56, -11], + [-19, -21], + [-29, 8], + [-8, 11], + [-115, 37], + [-99, 45], + [-58, 23], + [-13, 18], + [-83, 25], + [-30, 3], + [-55, -7], + [-34, -14], + [-208, -4], + [-86, 21], + [-32, 24], + [18, 68], + [5, 35], + [14, 29], + [17, 12], + [24, 29], + [12, 41], + [-4, 43], + [-29, 36], + [9, 16], + [32, -18], + [56, -1], + [19, -8], + [23, -31], + [69, -21], + [24, 3], + [31, -4], + [30, -12], + [29, 0], + [67, -27], + [46, 3], + [50, -17] + ], + [ + [40243, 12855], + [-30, -1], + [-46, -23], + [-38, 34], + [-49, -22], + [-19, -16], + [-11, 10], + [-38, -16], + [-28, 6], + [-46, 55], + [8, 37], + [27, 38], + [51, 19], + [63, 52], + [5, 17], + [60, 30], + [19, -6], + [30, -27], + [25, -39], + [-8, -29], + [-4, -66], + [33, -22], + [-4, -31] + ], + [ + [39943, 14158], + [8, 24], + [27, -5], + [27, -34], + [35, -12], + [35, -30], + [47, -99], + [23, -34], + [13, -10], + [7, -28], + [23, -16], + [18, -49], + [29, -47], + [14, -10], + [93, 39], + [67, 17], + [25, 33], + [31, 20], + [21, -7], + [30, 27], + [35, -21], + [39, 11], + [24, -27], + [22, 7], + [40, -9], + [26, -17], + [5, -36], + [23, -5], + [7, -24], + [92, -82], + [16, -30], + [66, -14], + [11, -36], + [33, -54], + [47, 10], + [65, -58], + [52, -9], + [61, -35], + [3, -16], + [33, -35], + [9, -23], + [-1, -23], + [8, -37], + [3, -56], + [-19, -62], + [-19, -31], + [-31, -6], + [-15, -25], + [-18, -46], + [-12, -5], + [-42, 8], + [-13, -15], + [-55, -35], + [-15, -15], + [-23, -9], + [-12, 15], + [-41, -3], + [-6, -8], + [-39, 22], + [-32, -7], + [-27, -13], + [-18, -17], + [-52, -34], + [-33, -11], + [-15, -19], + [-17, -6], + [-39, 7], + [-54, -1], + [-14, -12], + [-33, -7], + [-74, 23], + [-9, 33], + [-27, 0], + [-27, 26], + [1, 15], + [-25, 74], + [9, 35], + [-38, 180], + [-18, 30], + [-13, 45], + [-13, 72], + [-21, 24], + [-33, 21], + [-32, 5], + [-17, -13], + [-13, -34], + [-23, -5], + [-194, 120], + [-106, 132], + [-25, 48], + [-5, 45], + [-27, 38], + [0, 83], + [16, 70], + [20, 67], + [25, 4], + [15, 27], + [-3, 20], + [44, -2], + [15, -8] + ], + [ + [39217, 13952], + [38, 4], + [37, -17], + [65, -6], + [37, -9], + [43, -21], + [132, -139], + [27, -35], + [38, -65], + [6, -44], + [-10, -36], + [-30, -76], + [-56, -22], + [-36, -24], + [-34, -12], + [-76, 3], + [-34, -8], + [-40, 57], + [-28, 79], + [0, 74], + [-9, 29], + [-46, 73], + [-91, 64], + [-12, 19], + [-12, 52], + [3, 23], + [40, 32], + [48, 5] + ], + [ + [37119, 15032], + [-81, -14], + [-28, 0], + [-20, 11], + [-25, 54], + [18, 10], + [-17, 21], + [-10, -10], + [-24, 75], + [-19, 39], + [-48, 60], + [-36, 23], + [-15, 67], + [-25, 48], + [-59, 59], + [-31, 47], + [-9, 94], + [-12, 42], + [-37, 47], + [-61, 51], + [3, 7], + [43, 8], + [120, 1], + [41, -12], + [83, 7], + [33, 23], + [-7, 29], + [47, 50], + [20, 39], + [1, 38], + [42, 64], + [31, 38], + [47, 18], + [8, 11], + [35, -1], + [49, -62], + [22, -54], + [34, -48], + [9, -57], + [30, -48], + [22, -15], + [54, -82], + [3, -38], + [21, 7], + [29, -17], + [39, -73], + [5, -46], + [-22, -5], + [-3, -25], + [25, -87], + [11, -19], + [32, -12], + [18, -15], + [8, -25], + [19, -28], + [42, -39], + [21, 13], + [1, 26], + [-13, 58], + [17, 19], + [52, -9], + [13, -9], + [4, -29], + [-11, -52], + [11, -52], + [31, -4], + [32, -53], + [-2, -37], + [13, -40], + [35, -55], + [68, -54], + [19, 1], + [0, -31], + [-68, -68], + [2, -19], + [-27, -10], + [-12, 50], + [-19, 15], + [-65, -19], + [-15, 3], + [-24, -12], + [-24, -33], + [-30, -5], + [-23, 9], + [-27, 50], + [-30, 28], + [-90, 48], + [-24, 55], + [-12, 5], + [-23, -26], + [20, -34], + [-79, 7], + [-4, 31], + [-34, 26], + [-37, -24], + [-64, -19], + [-37, -6] + ] + ], + "transform": { + "scale": [0.000537370115134944, 0.0003963271122083071], + "translate": [-124.731828, 20.63360029907278] + }, + "objects": { + "usa": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 113594.084, + "GEO_ID": "0400000US04", + "ISO": "US-AZ", + "LSAD": "", + "NAME": "Arizona", + "NAME_1": "Arizona", + "STATE": "AZ" + }, + "id": 0 + }, + { + "arcs": [[5, 6, 7, 8, 9, 10]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 52035.477, + "GEO_ID": "0400000US05", + "ISO": "US-AR", + "LSAD": "", + "NAME": "Arkansas", + "NAME_1": "Arkansas", + "STATE": "AR" + }, + "id": 1 + }, + { + "arcs": [ + [[11]], + [[12]], + [[13]], + [[14]], + [[15]], + [[16]], + [[17]], + [[18]], + [[19]], + [[20]], + [[21, 22, -3, 23]] + ], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 155779.22, + "GEO_ID": "0400000US06", + "ISO": "US-CA", + "LSAD": "", + "NAME": "California", + "NAME_1": "California", + "STATE": "CA" + }, + "id": 2 + }, + { + "arcs": [[24, 25, 26, 27, 28, 29]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 103641.888, + "GEO_ID": "0400000US08", + "ISO": "US-CO", + "LSAD": "", + "NAME": "Colorado", + "NAME_1": "Colorado", + "STATE": "CO" + }, + "id": 3 + }, + { + "arcs": [[30, 31, 32, 33]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 4842.355, + "GEO_ID": "0400000US09", + "ISO": "US-CT", + "LSAD": "", + "NAME": "Connecticut", + "NAME_1": "Connecticut", + "STATE": "CT" + }, + "id": 4 + }, + { + "arcs": [[34, 35]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 61.048, + "GEO_ID": "0400000US11", + "ISO": "US-DC", + "LSAD": "", + "NAME": "District of Columbia", + "NAME_1": "District of Columbia", + "STATE": "DC" + }, + "id": 5 + }, + { + "arcs": [[36, 37, 38, 39, 40, 41]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 57513.485, + "GEO_ID": "0400000US13", + "ISO": "US-GA", + "LSAD": "", + "NAME": "Georgia", + "NAME_1": "Georgia", + "STATE": "GA" + }, + "id": 6 + }, + { + "arcs": [[42, 43, 44, 45, 46, 47]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 55518.93, + "GEO_ID": "0400000US17", + "ISO": "US-IL", + "LSAD": "", + "NAME": "Illinois", + "NAME_1": "Illinois", + "STATE": "IL" + }, + "id": 7 + }, + { + "arcs": [[48, -44, 49, 50, 51]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 35826.109, + "GEO_ID": "0400000US18", + "ISO": "US-IN", + "LSAD": "", + "NAME": "Indiana", + "NAME_1": "Indiana", + "STATE": "IN" + }, + "id": 8 + }, + { + "arcs": [[[52]], [[-11, 53, 54, 55]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 43203.905, + "GEO_ID": "0400000US22", + "ISO": "US-LA", + "LSAD": "", + "NAME": "Louisiana", + "NAME_1": "Louisiana", + "STATE": "LA" + }, + "id": 9 + }, + { + "arcs": [[56, 57, 58, 59, 60]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 79626.743, + "GEO_ID": "0400000US27", + "ISO": "US-MN", + "LSAD": "", + "NAME": "Minnesota", + "NAME_1": "Minnesota", + "STATE": "MN" + }, + "id": 10 + }, + { + "arcs": [[[61]], [[62]], [[63]], [[64]], [[65, 66, -54, -10, 67]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 46923.274, + "GEO_ID": "0400000US28", + "ISO": "US-MS", + "LSAD": "", + "NAME": "Mississippi", + "NAME_1": "Mississippi", + "STATE": "MS" + }, + "id": 11 + }, + { + "arcs": [[68, 69, 70, 71, 72]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 145545.801, + "GEO_ID": "0400000US30", + "ISO": "US-MT", + "LSAD": "", + "NAME": "Montana", + "NAME_1": "Montana", + "STATE": "MT" + }, + "id": 12 + }, + { + "arcs": [[73, -1, -28, 74, 75]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 121298.148, + "GEO_ID": "0400000US35", + "ISO": "US-NM", + "LSAD": "", + "NAME": "New Mexico", + "NAME_1": "New Mexico", + "STATE": "NM" + }, + "id": 13 + }, + { + "arcs": [[-71, 76, -59, 77]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 69000.798, + "GEO_ID": "0400000US38", + "ISO": "US-ND", + "LSAD": "", + "NAME": "North Dakota", + "NAME_1": "North Dakota", + "STATE": "ND" + }, + "id": 14 + }, + { + "arcs": [[-75, -27, 78, 79, -7, 80]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 68594.921, + "GEO_ID": "0400000US40", + "ISO": "US-OK", + "LSAD": "", + "NAME": "Oklahoma", + "NAME_1": "Oklahoma", + "STATE": "OK" + }, + "id": 15 + }, + { + "arcs": [[81, 82, 83, 84, 85, 86, 87]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 44742.703, + "GEO_ID": "0400000US42", + "ISO": "US-PA", + "LSAD": "", + "NAME": "Pennsylvania", + "NAME_1": "Pennsylvania", + "STATE": "PA" + }, + "id": 16 + }, + { + "arcs": [[88, -42, 89, -68, -9, 90, 91, 92, 93, 94]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 41234.896, + "GEO_ID": "0400000US47", + "ISO": "US-TN", + "LSAD": "", + "NAME": "Tennessee", + "NAME_1": "Tennessee", + "STATE": "TN" + }, + "id": 17 + }, + { + "arcs": [[[95, 96]], [[97]], [[98, 99]], [[100, -36, 101, 102, 103, -95, 104, 105]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 39490.086, + "GEO_ID": "0400000US51", + "ISO": "US-VA", + "LSAD": "", + "NAME": "Virginia", + "NAME_1": "Virginia", + "STATE": "VA" + }, + "id": 18 + }, + { + "arcs": [[[106, 107]], [[108, 109, 110, -87]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 1948.543, + "GEO_ID": "0400000US10", + "ISO": "US-DE", + "LSAD": "", + "NAME": "Delaware", + "NAME_1": "Delaware", + "STATE": "DE" + }, + "id": 19 + }, + { + "arcs": [[111, 112, -82, 113, -106]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 24038.21, + "GEO_ID": "0400000US54", + "ISO": "US-WV", + "LSAD": "", + "NAME": "West Virginia", + "NAME_1": "West Virginia", + "STATE": "WV" + }, + "id": 20 + }, + { + "arcs": [[[114]], [[115]], [[116]], [[117]], [[-48, 118, -61, 119, 120, 121]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 54157.805, + "GEO_ID": "0400000US55", + "ISO": "US-WI", + "LSAD": "", + "NAME": "Wisconsin", + "NAME_1": "Wisconsin", + "STATE": "WI" + }, + "id": 21 + }, + { + "arcs": [[122, -30, 123, 124, -73, 125]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 97093.141, + "GEO_ID": "0400000US56", + "ISO": "US-WY", + "LSAD": "", + "NAME": "Wyoming", + "NAME_1": "Wyoming", + "STATE": "WY" + }, + "id": 22 + }, + { + "arcs": [[[126]], [[-41, 127, 128, -66, -90]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 50645.326, + "GEO_ID": "0400000US01", + "ISO": "US-AL", + "LSAD": "", + "NAME": "Alabama", + "NAME_1": "Alabama", + "STATE": "AL" + }, + "id": 23 + }, + { + "arcs": [ + [[129]], + [[130]], + [[131]], + [[132]], + [[133]], + [[134]], + [[135]], + [[136]], + [[137]], + [[138]], + [[139]], + [[140]], + [[141, -128, -40]] + ], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 53624.759, + "GEO_ID": "0400000US12", + "ISO": "US-FL", + "LSAD": "", + "NAME": "Florida", + "NAME_1": "Florida", + "STATE": "FL" + }, + "id": 24 + }, + { + "arcs": [[-125, 142, 143, 144, 145, 146, -69]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 82643.117, + "GEO_ID": "0400000US16", + "ISO": "US-ID", + "LSAD": "", + "NAME": "Idaho", + "NAME_1": "Idaho", + "STATE": "ID" + }, + "id": 25 + }, + { + "arcs": [[-26, 147, 148, -79]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 81758.717, + "GEO_ID": "0400000US20", + "ISO": "US-KS", + "LSAD": "", + "NAME": "Kansas", + "NAME_1": "Kansas", + "STATE": "KS" + }, + "id": 26 + }, + { + "arcs": [[[149]], [[-100, 150]], [[-102, -35, -101, -114, -88, -111, 151, -97, 152]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 9707.241, + "GEO_ID": "0400000US24", + "ISO": "US-MD", + "LSAD": "", + "NAME": "Maryland", + "NAME_1": "Maryland", + "STATE": "MD" + }, + "id": 27 + }, + { + "arcs": [[153, 154, -108, 155, -109, -86]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 7354.22, + "GEO_ID": "0400000US34", + "ISO": "US-NJ", + "LSAD": "", + "NAME": "New Jersey", + "NAME_1": "New Jersey", + "STATE": "NJ" + }, + "id": 28 + }, + { + "arcs": [[[156]], [[157]], [[158, 159, -37, -89, -104]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 48617.905, + "GEO_ID": "0400000US37", + "ISO": "US-NC", + "LSAD": "", + "NAME": "North Carolina", + "NAME_1": "North Carolina", + "STATE": "NC" + }, + "id": 29 + }, + { + "arcs": [[160, -38, -160]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 30060.696, + "GEO_ID": "0400000US45", + "ISO": "US-SC", + "LSAD": "", + "NAME": "South Carolina", + "NAME_1": "South Carolina", + "STATE": "SC" + }, + "id": 30 + }, + { + "arcs": [ + [[161]], + [[162]], + [[163]], + [[164]], + [[165]], + [[166]], + [[167]], + [[168]], + [[169]], + [[-146, 170, 171]] + ], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 66455.521, + "GEO_ID": "0400000US53", + "ISO": "US-WA", + "LSAD": "", + "NAME": "Washington", + "NAME_1": "Washington", + "STATE": "WA" + }, + "id": 31 + }, + { + "arcs": [[172, 173, 174, 175]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 9216.657, + "GEO_ID": "0400000US50", + "ISO": "US-VT", + "LSAD": "", + "NAME": "Vermont", + "NAME_1": "Vermont", + "STATE": "VT" + }, + "id": 32 + }, + { + "arcs": [[-124, -29, -5, 176, -143]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 82169.62, + "GEO_ID": "0400000US49", + "ISO": "US-UT", + "LSAD": "", + "NAME": "Utah", + "NAME_1": "Utah", + "STATE": "UT" + }, + "id": 33 + }, + { + "arcs": [[-47, 177, 178, 179, -57, -119]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 55857.13, + "GEO_ID": "0400000US19", + "ISO": "US-IA", + "LSAD": "", + "NAME": "Iowa", + "NAME_1": "Iowa", + "STATE": "IA" + }, + "id": 34 + }, + { + "arcs": [[[180, -92]], [[-105, -94, 181, -45, -49, 182, -112]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 39486.338, + "GEO_ID": "0400000US21", + "ISO": "US-KY", + "LSAD": "", + "NAME": "Kentucky", + "NAME_1": "Kentucky", + "STATE": "KY" + }, + "id": 35 + }, + { + "arcs": [ + [[183]], + [[184]], + [[185]], + [[186]], + [[187]], + [[188]], + [[189]], + [[190]], + [[191]], + [[192]], + [[193]], + [[194]], + [[195]], + [[196]], + [[197]], + [[198]], + [[199]], + [[200]], + [[201]], + [[202]], + [[203]], + [[204]], + [[205, 206]] + ], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 30842.923, + "GEO_ID": "0400000US23", + "ISO": "US-ME", + "LSAD": "", + "NAME": "Maine", + "NAME_1": "Maine", + "STATE": "ME" + }, + "id": 36 + }, + { + "arcs": [[[207]], [[208]], [[209]], [[210, -173, 211, 212, 213, 214, 215, -34]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 7800.058, + "GEO_ID": "0400000US25", + "ISO": "US-MA", + "LSAD": "", + "NAME": "Massachusetts", + "NAME_1": "Massachusetts", + "STATE": "MA" + }, + "id": 37 + }, + { + "arcs": [[[216]], [[217]], [[218]], [[219]], [[220]], [[221, -51, 222]], [[223, -121]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 56538.901, + "GEO_ID": "0400000US26", + "ISO": "US-MI", + "LSAD": "", + "NAME": "Michigan", + "NAME_1": "Michigan", + "STATE": "MI" + }, + "id": 38 + }, + { + "arcs": [[-8, -80, -149, 224, -178, -46, -182, -93, -181, -91]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 68741.522, + "GEO_ID": "0400000US29", + "ISO": "US-MO", + "LSAD": "", + "NAME": "Missouri", + "NAME_1": "Missouri", + "STATE": "MO" + }, + "id": 39 + }, + { + "arcs": [[225, -179, -225, -148, -25, -123]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 76824.171, + "GEO_ID": "0400000US31", + "ISO": "US-NE", + "LSAD": "", + "NAME": "Nebraska", + "NAME_1": "Nebraska", + "STATE": "NE" + }, + "id": 40 + }, + { + "arcs": [[-4, -23, 226, -144, -177]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 109781.18, + "GEO_ID": "0400000US32", + "ISO": "US-NV", + "LSAD": "", + "NAME": "Nevada", + "NAME_1": "Nevada", + "STATE": "NV" + }, + "id": 41 + }, + { + "arcs": [[227, -212, -176, 228, -206]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 8952.651, + "GEO_ID": "0400000US33", + "ISO": "US-NH", + "LSAD": "", + "NAME": "New Hampshire", + "NAME_1": "New Hampshire", + "STATE": "NH" + }, + "id": 42 + }, + { + "arcs": [[[229]], [[230]], [[231]], [[-211, -33, 232, -154, -85, 233, -174]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 47126.399, + "GEO_ID": "0400000US36", + "ISO": "US-NY", + "LSAD": "", + "NAME": "New York", + "NAME_1": "New York", + "STATE": "NY" + }, + "id": 43 + }, + { + "arcs": [[[234]], [[235]], [[236]], [[237]], [[-183, -52, -222, 238, -83, -113]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 40860.694, + "GEO_ID": "0400000US39", + "ISO": "US-OH", + "LSAD": "", + "NAME": "Ohio", + "NAME_1": "Ohio", + "STATE": "OH" + }, + "id": 44 + }, + { + "arcs": [[-145, -227, -22, 239, -171]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 95988.013, + "GEO_ID": "0400000US41", + "ISO": "US-OR", + "LSAD": "", + "NAME": "Oregon", + "NAME_1": "Oregon", + "STATE": "OR" + }, + "id": 45 + }, + { + "arcs": [[[240]], [[241]], [[242]], [[-31, -216, 243]], [[244, -214]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 1033.814, + "GEO_ID": "0400000US44", + "ISO": "US-RI", + "LSAD": "", + "NAME": "Rhode Island", + "NAME_1": "Rhode Island", + "STATE": "RI" + }, + "id": 46 + }, + { + "arcs": [[-72, -78, -58, -180, -226, -126]], + "type": "Polygon", + "properties": { + "CENSUSAREA": 75811, + "GEO_ID": "0400000US46", + "ISO": "US-SD", + "LSAD": "", + "NAME": "South Dakota", + "NAME_1": "South Dakota", + "STATE": "SD" + }, + "id": 47 + }, + { + "arcs": [[[245]], [[-6, -56, 246, -76, -81]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 261231.711, + "GEO_ID": "0400000US48", + "ISO": "US-TX", + "LSAD": "", + "NAME": "Texas", + "NAME_1": "Texas", + "STATE": "TX" + }, + "id": 48 + }, + { + "arcs": [ + [[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]] + ], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 570640.95, + "GEO_ID": "0400000US02", + "ISO": "US-AK", + "LSAD": "", + "NAME": "Alaska", + "NAME_1": "Alaska", + "STATE": "AK" + }, + "id": 49 + }, + { + "arcs": [[[326]], [[327]], [[328]], [[329]], [[330]], [[331]], [[332]], [[333]], [[334]]], + "type": "MultiPolygon", + "properties": { + "CENSUSAREA": 6422.628, + "GEO_ID": "0400000US15", + "ISO": "US-HI", + "LSAD": "", + "NAME": "Hawaii", + "NAME_1": "Hawaii", + "STATE": "HI" + }, + "id": 50 + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/world-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/world-topo.json new file mode 100644 index 000000000000..0e1994c900ac --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/world-topo.json @@ -0,0 +1,27322 @@ +{ + "arcs": [ + [ + [7080, 7327], + [-5, 4], + [-10, -10], + [5, -6] + ], + [ + [7070, 7315], + [-16, -12], + [-9, 5], + [-28, -4], + [-12, -6], + [-1, -5], + [-17, -18], + [-11, -16], + [6, -10], + [6, -18], + [-2, -15], + [3, -8], + [-18, -35], + [4, -12], + [-2, -18], + [-7, -5], + [-13, 0], + [-13, 4], + [3, -16], + [6, -6], + [-1, -9], + [4, -9], + [-12, -14], + [-8, 0], + [-6, -18], + [2, -7], + [-6, -11], + [2, -30], + [-8, -17], + [-6, -1], + [-2, 8], + [-15, 4], + [-3, -8], + [-14, -12], + [6, -9], + [-11, -7], + [-13, 6], + [-7, -15], + [-8, -7], + [-3, -19], + [2, -9], + [-4, -35], + [-32, -17], + [-16, 2], + [-11, -11], + [-14, 6], + [-30, -5], + [-46, 26] + ], + [ + [6689, 6902], + [27, 56], + [1, 10], + [-4, 21], + [-24, 7], + [-1, 9], + [1, 35], + [-7, 43], + [0, 9], + [7, 14], + [1, 9], + [-10, 5], + [0, 31], + [11, 8], + [-5, 13], + [7, 6], + [5, 26], + [-1, 11], + [4, 19] + ], + [ + [6701, 7234], + [8, -10], + [13, -1], + [6, -7], + [1, -9], + [5, 8], + [5, -4], + [13, 13], + [0, 24], + [9, 0], + [4, 6], + [20, 11], + [9, 15], + [0, 16], + [5, 14], + [-1, 9], + [9, 8], + [12, 0], + [4, 16], + [4, 3], + [15, -14], + [5, 2] + ], + [ + [6847, 7334], + [14, 2], + [7, -12], + [6, 6], + [8, -6] + ], + [ + [6882, 7324], + [7, -15], + [7, 10], + [15, 9], + [2, 5], + [10, -14], + [5, 7], + [-2, 13], + [4, 8], + [21, 2], + [-3, 18], + [5, 4], + [12, 26], + [9, -2], + [7, -9], + [-1, -21], + [6, 3], + [2, -8], + [-3, -14], + [-1, -35], + [3, -12], + [7, -4], + [15, 19], + [9, 1], + [3, 11], + [14, 14], + [13, -2], + [-1, -12], + [14, 8], + [12, 2], + [7, -9] + ], + [ + [5665, 4557], + [3, -32], + [-3, -9], + [0, -36], + [2, -12], + [-5, -22], + [4, -12], + [-56, 0], + [0, -182], + [3, -21], + [6, -7], + [15, -33], + [6, -7], + [3, -10], + [6, -7] + ], + [ + [5649, 4167], + [-53, -21], + [-11, 4], + [-8, -4], + [-13, 9], + [-8, -3], + [-17, 2], + [-5, 4], + [-10, 0], + [-7, 9], + [-5, 14], + [-52, 0], + [-66, 0], + [-7, -1], + [-12, 17], + [-4, 9], + [-6, 1], + [-18, -16], + [-15, 4], + [-6, -6] + ], + [ + [5326, 4189], + [0, 28], + [2, -1], + [-2, 58], + [7, 9], + [1, 23], + [6, 24], + [2, 20], + [0, 23], + [5, 12], + [0, 26], + [4, 4], + [8, 20], + [0, 10], + [6, 12], + [5, 0], + [8, 20], + [5, 28], + [-1, 20], + [2, 29], + [-2, 15], + [-7, 15], + [-8, 46], + [-7, 29], + [6, 16], + [6, 7], + [-1, 21], + [-3, 9], + [-10, 48], + [-2, 4], + [0, 21], + [-8, 16], + [-8, 30], + [16, 4], + [10, 11] + ], + [ + [5366, 4846], + [4, -2], + [18, 2], + [12, -3], + [21, 2], + [32, 1], + [7, -4], + [4, -15], + [0, -22], + [3, -16], + [3, -3], + [0, -19], + [10, -23], + [0, -8], + [9, -20], + [7, 4], + [6, -4], + [2, 6], + [33, 0], + [1, 20], + [4, 12], + [-2, 8], + [2, 18], + [21, 0], + [9, 5], + [-3, -22], + [36, 0], + [1, -22], + [-2, -20], + [5, -23], + [-4, -53], + [1, -14], + [6, -17], + [3, -2], + [4, -23], + [0, -22], + [-4, -9], + [3, -18], + [6, 7], + [13, -4], + [14, 9], + [12, -3], + [2, 8] + ], + [ + [5363, 4916], + [-7, -5], + [-8, -18], + [-1, -40], + [-8, -2] + ], + [ + [5339, 4851], + [-2, 5], + [2, 14], + [-6, 24] + ], + [ + [5333, 4894], + [10, 23], + [7, 3], + [4, 10], + [9, -14] + ], + [ + [5582, 7537], + [-1, 0] + ], + [ + [5581, 7537], + [1, 0] + ], + [ + [5537, 7617], + [1, 0] + ], + [ + [5538, 7617], + [-1, 0] + ], + [ + [5557, 7633], + [4, -13], + [7, -4], + [3, -22] + ], + [ + [5571, 7594], + [-4, -21], + [6, -24] + ], + [ + [5573, 7549], + [2, -10] + ], + [ + [5575, 7539], + [6, -2] + ], + [ + [5581, 7537], + [1, -1] + ], + [ + [5582, 7536], + [0, 0] + ], + [ + [5582, 7536], + [0, -5] + ], + [ + [5582, 7531], + [1, -5] + ], + [ + [5583, 7526], + [0, 0] + ], + [ + [5583, 7526], + [-2, -13], + [-5, -2], + [-2, -17], + [-11, -8], + [3, -12], + [-6, -8], + [-5, 3] + ], + [ + [5555, 7469], + [-3, 19], + [-11, 9], + [-1, 22], + [-4, 4], + [4, 16], + [-1, 29], + [5, 23], + [-7, 2] + ], + [ + [5537, 7593], + [1, 14] + ], + [ + [5538, 7607], + [0, 13] + ], + [ + [5538, 7620], + [9, 19], + [3, -11], + [7, 5] + ], + [ + [5553, 8659], + [10, -5], + [-7, -11], + [-10, 6], + [7, 10] + ], + [ + [5047, 7630], + [-7, -5], + [-1, 11] + ], + [ + [5039, 7636], + [8, 1], + [0, -7] + ], + [ + [6563, 6637], + [0, 0] + ], + [ + [6563, 6659], + [2, -2], + [1, -36] + ], + [ + [6566, 6621], + [-8, -14], + [-3, 13], + [-6, -4], + [-1, -38], + [7, -9], + [-11, -3], + [-4, -6], + [2, -9], + [-10, -44], + [0, -17] + ], + [ + [6532, 6490], + [-2, -5], + [-70, 18], + [-3, 5], + [-25, 63], + [0, 9] + ], + [ + [6432, 6580], + [6, -1], + [0, -13], + [12, -3], + [10, 11], + [24, -2], + [11, -4], + [15, 12], + [6, 14], + [1, 15], + [11, 12], + [13, 31], + [11, 13], + [5, 19] + ], + [ + [6557, 6684], + [3, -2], + [-1, -22], + [4, -1] + ], + [ + [6562, 6642], + [0, 0] + ], + [ + [3093, 2021], + [0, 6] + ], + [ + [3093, 2027], + [0, -6] + ], + [ + [3093, 2028], + [0, 123] + ], + [ + [3093, 2151], + [10, -17], + [-8, -15], + [11, -6], + [5, -17], + [12, -13], + [7, -13], + [17, -13], + [11, -14], + [12, -7], + [20, 0], + [-5, -16], + [-18, 1], + [-11, -8], + [-12, 6], + [-51, 9] + ], + [ + [3259, 3902], + [11, -14], + [7, -29], + [9, -17], + [15, -17], + [3, -11], + [17, -13], + [11, -1], + [15, -18], + [4, -9], + [15, -17], + [9, -5], + [5, -8], + [13, -5], + [8, -20], + [-6, -14], + [-3, -19], + [-8, -10], + [-1, -25], + [-3, -14], + [-5, -4], + [-5, -15], + [4, -5], + [13, 1], + [19, -8], + [5, -5], + [7, 4], + [5, -5], + [6, 3], + [4, -8], + [3, 12], + [5, 5], + [10, -9], + [5, 8], + [-1, 8], + [6, 12], + [6, 0], + [11, 18], + [5, 40], + [0, 22] + ], + [ + [3483, 3710], + [5, -4], + [6, 7], + [9, -9], + [1, -17], + [5, -14], + [-2, -9], + [0, -25], + [-2, -17], + [-13, -19], + [-15, -5], + [-6, -19], + [-8, -4], + [-6, -13], + [-7, -5], + [3, -10], + [-6, -4], + [-20, -39], + [-2, -11], + [-12, -25], + [-5, -2], + [-1, -10], + [-8, -11] + ], + [ + [3399, 3445], + [0, -7], + [-7, -12], + [2, -23], + [-3, -20], + [-5, -13], + [3, -4], + [-2, -14], + [-4, -5], + [3, -25], + [-3, -8] + ], + [ + [3383, 3314], + [2, -25], + [-2, -12], + [-6, 0], + [-4, -34], + [5, -29], + [-4, -14], + [5, -12], + [23, -21], + [11, -25], + [-7, -19], + [0, -13], + [7, -17], + [12, -6], + [1, -29], + [-11, -30], + [-13, -26], + [-2, -16], + [-27, -24], + [-37, -16], + [-27, -8], + [-27, 0], + [-15, 11], + [3, -32], + [5, -9], + [-2, -21], + [-4, 3], + [-1, -21], + [-4, -5], + [6, -17], + [-2, -18], + [-20, -16], + [-21, 0], + [-26, 20], + [-8, 2], + [-4, -10], + [5, -32], + [-2, -24], + [6, -16], + [11, -4], + [-4, -10], + [13, 0], + [2, 10], + [-6, 0], + [14, 11], + [5, -13], + [1, -17], + [-3, -12], + [-12, -5], + [-3, 16], + [-13, 5], + [-9, -15], + [19, -13], + [-20, -17], + [-8, -19], + [3, -43], + [-4, -11], + [-9, -7], + [0, -20], + [-14, 3], + [-8, -5], + [-1, -8], + [-14, -5], + [-9, -18], + [0, -9], + [-6, -9], + [-2, -14], + [7, -25], + [7, -6], + [8, -16], + [6, -4], + [17, 0], + [6, -6], + [2, -20], + [-5, -33], + [-6, -2], + [-12, -18], + [-16, -14], + [-3, -10], + [-9, -10], + [-6, -22], + [2, -16], + [-5, -18], + [-5, -6], + [-23, -14], + [-5, -12], + [-2, -21], + [2, -24], + [9, -34], + [11, -24], + [-3, -1] + ], + [ + [3098, 2168], + [-15, 10], + [-26, 10], + [-55, 1], + [-4, 12], + [-11, 13], + [6, 19], + [-5, 7], + [5, 13], + [-2, 14], + [-13, 1], + [-11, -8], + [-3, 26], + [-7, 9], + [2, 22], + [-3, 11], + [3, 15], + [9, 1], + [3, 17], + [12, 10], + [1, 22], + [7, 7], + [-1, 15], + [-5, 7], + [6, 30], + [8, 13], + [2, 22], + [8, 9], + [-3, 32], + [4, 11], + [-4, 4], + [0, 15], + [8, 5], + [5, 13], + [-8, 17], + [-14, 5], + [7, 5], + [17, 3], + [2, 17], + [-18, 3], + [-1, 18], + [5, 7], + [-4, 14], + [3, 7], + [-6, 16], + [5, 9], + [-11, 7], + [0, 45], + [3, 8], + [8, 1], + [-5, 26], + [2, 43], + [-3, 11], + [4, 27], + [5, 21], + [-2, 18], + [8, 13], + [0, 25], + [15, 13], + [-3, 15], + [-1, 21], + [-5, 20], + [3, 35], + [-2, 24], + [3, 12], + [10, 4], + [-1, 8], + [10, 14], + [-2, 40], + [-4, 4], + [6, 6], + [0, 12], + [9, 39], + [6, 2], + [-2, 34], + [3, 18], + [-9, 9], + [3, 18], + [-4, 6], + [0, 16], + [-5, 12], + [-2, 14], + [3, 9], + [-5, 2], + [-3, 15], + [1, 24], + [6, 8], + [0, 13], + [5, 19], + [7, 8], + [2, 10], + [-4, 4], + [2, 16], + [-4, 31], + [7, 10], + [1, 26], + [4, 17], + [13, 33], + [9, 38], + [6, -3], + [8, 7], + [0, 10], + [-8, 21], + [0, 10], + [5, 9], + [-2, 26], + [-3, 17], + [2, 15], + [5, 4], + [-6, 14], + [2, 14], + [7, 13], + [25, 20], + [9, 54], + [-5, 17] + ], + [ + [3133, 3869], + [5, 9], + [0, 8], + [7, 6], + [2, 12], + [9, 5], + [4, 19], + [3, -2], + [10, -17], + [21, 0], + [12, -5], + [6, -38], + [3, 20], + [8, 29], + [32, 1], + [4, -14] + ], + [ + [6265, 7522], + [0, 0] + ], + [ + [6249, 7560], + [2, -10], + [15, -14], + [-6, -16], + [6, -11], + [11, -10], + [-3, -13], + [-7, 2], + [15, -25], + [9, -1], + [-3, -13], + [5, -7], + [-5, -5], + [3, -15] + ], + [ + [6291, 7422], + [-10, -2] + ], + [ + [6281, 7420], + [-4, 23], + [-7, 7], + [1, 10], + [-13, -1], + [-8, 14], + [-7, -4] + ], + [ + [6243, 7469], + [-8, 16], + [-12, 1], + [-11, 7], + [-3, 20], + [5, 12], + [-3, 17], + [-5, 8] + ], + [ + [6206, 7550], + [9, 0], + [11, 7], + [10, -3], + [13, 6] + ], + [ + [6249, 7546], + [0, 0] + ], + [ + [6255, 7542], + [0, 0] + ], + [ + [488, 408], + [24, -7], + [-48, -4], + [-13, 16], + [37, -5] + ], + [ + [542, 484], + [-90, 7], + [20, 11], + [65, -10], + [5, -8] + ], + [ + [3331, 592], + [8, -3], + [-1, -57], + [-23, -11], + [-52, 4], + [-17, 17], + [-32, -10], + [-67, 20], + [3, 10], + [19, -10], + [115, 3], + [8, 27], + [39, 10] + ], + [ + [4135, 588], + [34, -2], + [-10, -10], + [-44, 8], + [-5, 11], + [25, -7] + ], + [ + [3120, 602], + [25, -4], + [35, -20], + [-20, -7], + [-40, 31] + ], + [ + [3137, 618], + [-11, -15], + [-30, 6], + [41, 9] + ], + [ + [4054, 618], + [1, -6], + [-76, 3], + [30, 13], + [45, -10] + ], + [ + [547, 618], + [21, -9], + [14, -23], + [-47, -2], + [-90, 25], + [-10, 7], + [5, 17], + [24, 15], + [25, 0], + [58, -30] + ], + [ + [3143, 666], + [-58, -38], + [-39, -36], + [-31, 3], + [-10, 10], + [11, 23], + [23, 11], + [92, 33], + [12, -6] + ], + [ + [9654, 680], + [-35, -8], + [-8, 14], + [21, -7], + [22, 11], + [0, -10] + ], + [ + [3740, 650], + [1, -7], + [44, 2], + [21, -39], + [-7, -30], + [-18, -1], + [9, -11], + [-158, -26], + [-16, -9], + [-121, -4], + [1, 17], + [22, 27], + [26, -4], + [60, 37], + [-13, 14], + [14, 40], + [31, 33], + [52, 14], + [37, -3], + [38, -11], + [19, -13], + [-4, -20], + [-38, -6] + ], + [ + [9641, 732], + [63, -13], + [-27, -10], + [-42, -2], + [-19, 12], + [25, 13] + ], + [ + [839, 754], + [14, -14], + [-32, 3], + [-11, 7], + [29, 4] + ], + [ + [938, 754], + [-21, -7], + [-2, 12], + [23, -5] + ], + [ + [951, 834], + [16, -10], + [-24, 3], + [8, 7] + ], + [ + [9561, 885], + [-8, -14], + [-7, 9], + [15, 5] + ], + [ + [1342, 903], + [19, -12], + [-6, -6], + [-27, 12], + [14, 6] + ], + [ + [1458, 897], + [-1, -13], + [-17, 20], + [18, -7] + ], + [ + [1760, 918], + [-17, -8], + [-3, 7], + [26, 11], + [-6, -10] + ], + [ + [1680, 914], + [-12, 3], + [10, 17], + [17, -2], + [-1, -10], + [-14, -8] + ], + [ + [1635, 935], + [17, 0], + [7, -14], + [-23, -10], + [0, -10], + [-32, -4], + [-22, 7], + [3, 11], + [15, 12], + [-27, 3], + [7, 10], + [55, -5] + ], + [ + [4425, 917], + [9, -22], + [-14, 0], + [-4, 16], + [-29, 3], + [20, 7], + [12, 19], + [11, 1], + [-5, -24] + ], + [ + [9717, 944], + [-11, 3], + [8, 14], + [3, -17] + ], + [ + [1498, 961], + [13, -7], + [9, -16], + [-11, -7], + [29, 6], + [17, -9], + [7, -11], + [-6, -12], + [-22, 3], + [-48, 22], + [0, 8], + [-19, 7], + [-3, 16], + [34, 0] + ], + [ + [2955, 972], + [-2, -10], + [-13, 0], + [15, 10] + ], + [ + [2514, 979], + [-20, -5], + [-4, 5], + [22, 8], + [2, -8] + ], + [ + [2918, 987], + [18, -3], + [-8, -40], + [-36, 14], + [-7, 10], + [11, 7], + [18, 0], + [-19, 10], + [23, 2] + ], + [ + [2474, 988], + [-3, -19], + [-14, -1], + [6, 17], + [-10, 16], + [23, 1], + [-2, -14] + ], + [ + [2365, 999], + [-10, 3], + [18, 7], + [-8, -10] + ], + [ + [2270, 1031], + [14, -3], + [-2, 14], + [10, 0], + [2, -17], + [10, 19], + [19, 1], + [5, -10], + [-23, -11], + [8, -3], + [27, 11], + [-6, -10], + [13, -10], + [-15, -1], + [1, -9], + [-72, 2], + [2, 5], + [-24, -1], + [6, 7], + [-29, 6], + [-58, 7], + [6, 10], + [57, 7], + [8, -11], + [7, 7], + [23, -12], + [-13, 13], + [17, 9], + [15, -6], + [-8, -14] + ], + [ + [4919, 1112], + [8, -10], + [14, 1], + [-17, -19], + [-8, 18], + [-16, 10], + [19, 0] + ], + [ + [2947, 1119], + [8, -13], + [-22, -10], + [-48, -11], + [-9, 4], + [2, 12], + [33, 5], + [9, 12], + [8, -13], + [3, 14], + [16, 0] + ], + [ + [3313, 1111], + [-7, 10], + [11, 1], + [-4, -11] + ], + [ + [4835, 1126], + [-5, -10], + [-10, 9], + [15, 1] + ], + [ + [5082, 1116], + [-11, 6], + [19, 4], + [-8, -10] + ], + [ + [4913, 1121], + [-10, 0], + [6, 12], + [12, 3], + [2, -14], + [-10, -1] + ], + [ + [7004, 1113], + [-10, 3], + [-5, 16], + [16, -11], + [-1, -8] + ], + [ + [5124, 1122], + [-12, 11], + [12, 5], + [0, -16] + ], + [ + [5745, 1129], + [-22, 0], + [-2, 11], + [19, 6], + [5, -17] + ], + [ + [5040, 1146], + [-7, -18], + [-5, 21], + [12, -3] + ], + [ + [2924, 1165], + [8, -12], + [-12, -13], + [-23, 5], + [-1, 13], + [8, 7], + [20, 0] + ], + [ + [5449, 1148], + [-17, 8], + [11, 12], + [19, -1], + [-11, -8], + [-2, -11] + ], + [ + [3001, 1170], + [-23, 2], + [-6, 7], + [17, 4], + [12, -13] + ], + [ + [3283, 1179], + [-6, -12], + [-16, 30], + [11, 2], + [11, -20] + ], + [ + [3055, 1197], + [19, -24], + [1, -17], + [16, -26], + [11, -25], + [3, -60], + [-6, -23], + [-20, -7], + [-2, -10], + [-40, -7], + [-49, 0], + [-21, 13], + [10, 8], + [16, -3], + [45, -2], + [14, 8], + [-7, 6], + [-28, -9], + [-18, 10], + [35, 8], + [1, 5], + [-31, 0], + [-14, 17], + [-11, -17], + [-31, 2], + [10, -8], + [-14, -9], + [-38, 14], + [-1, 15], + [15, 8], + [16, -8], + [-4, 12], + [9, 4], + [16, -13], + [-4, 14], + [29, -2], + [9, 7], + [-23, 7], + [10, 6], + [30, -6], + [19, 11], + [20, 0], + [13, -11], + [-2, 16], + [-35, 7], + [5, 17], + [24, 8], + [15, -4], + [-18, 14], + [-20, -4], + [-27, 14], + [7, 34], + [-10, 5], + [0, 20], + [45, 10], + [9, -7], + [2, -18] + ], + [ + [7385, 1327], + [-15, 4], + [8, 9], + [7, -13] + ], + [ + [3111, 1321], + [9, -5], + [-16, -13], + [-8, -22], + [-11, 0], + [-7, 9], + [22, 44], + [15, 12], + [5, -5], + [-10, -11], + [1, -9] + ], + [ + [7686, 1378], + [4, -8], + [-14, -2], + [10, 10] + ], + [ + [3174, 1408], + [-3, -16], + [-10, -2], + [6, 17], + [7, 1] + ], + [ + [7805, 1401], + [-19, 0], + [-1, 7], + [12, 10], + [15, -7], + [-7, -10] + ], + [ + [7870, 1413], + [-16, 19], + [9, -2], + [7, -17] + ], + [ + [3410, 1465], + [-6, 6], + [14, 7], + [-8, -13] + ], + [ + [3242, 1481], + [-2, -9], + [14, -8], + [-14, -12], + [-26, 3], + [20, 26], + [8, 0] + ], + [ + [3270, 1492], + [2, -17], + [-12, -8], + [10, 25] + ], + [ + [3394, 1508], + [-2, -9], + [20, -7], + [-8, -17], + [-7, 6], + [-7, -7], + [-14, 20], + [5, 8], + [13, 6] + ], + [ + [3446, 1521], + [-9, 7], + [15, -2], + [-6, -5] + ], + [ + [0, 324], + [46, 3], + [68, -14], + [19, 8], + [194, -14], + [21, -11], + [128, -2], + [122, -11], + [81, -3], + [-58, 13], + [54, 1], + [-124, 12], + [-104, 7], + [24, 11], + [-55, 17], + [37, 2], + [-52, 17], + [-71, -3], + [-37, 23], + [-127, 27], + [73, -2], + [18, -14], + [73, -4], + [20, 4], + [70, -3], + [6, -14], + [50, 10], + [19, -11], + [127, 8], + [18, 9], + [-44, 5], + [81, 5], + [16, 14], + [70, 14], + [-10, 10], + [-54, 26], + [31, 11], + [-19, 10], + [-74, 13], + [17, 11], + [109, 6], + [135, 7], + [0, 5], + [-77, 24], + [-11, 11], + [13, 10], + [43, -4], + [46, 10], + [-17, 11], + [-75, 12], + [-55, 17], + [-3, 5], + [-68, 8], + [-43, 21], + [14, 11], + [48, 6], + [-2, 14], + [-71, -7], + [-47, 23], + [14, 18], + [-3, 26], + [9, 1], + [24, -17], + [21, 17], + [21, -5], + [18, 4], + [38, -10], + [-9, -10], + [36, -3], + [2, 10], + [72, -30], + [30, 16], + [30, 6], + [-36, 7], + [7, 14], + [32, -17], + [21, 7], + [13, -13], + [27, 0], + [-16, 13], + [21, 1], + [-31, 15], + [29, -5], + [-22, 20], + [-27, 16], + [-38, -3], + [-33, 3], + [2, 9], + [28, 4], + [9, 7], + [69, -21], + [6, 8], + [-27, 13], + [9, 11], + [56, 6], + [1, 10], + [41, 4], + [2, 6], + [19, -3], + [9, -14], + [18, 0], + [-10, 14], + [29, 6], + [16, 14], + [61, 4], + [30, -4], + [-16, 9], + [4, 14], + [30, 0], + [11, 11], + [22, -4], + [18, -16], + [30, 9], + [58, -4], + [20, -5], + [64, 13], + [93, 0], + [8, -7], + [45, 3], + [41, 0], + [59, 10], + [-3, 10], + [24, 6], + [6, -12], + [33, -3], + [51, 6], + [-7, 21], + [11, 10], + [21, 0], + [-9, -7], + [19, 2], + [-8, -12], + [4, -14], + [15, 3], + [-18, -16], + [-6, -21], + [9, 6], + [46, 8], + [15, 0], + [-10, 11], + [0, 20], + [15, 6], + [35, -17], + [-5, -19], + [-34, -18], + [4, -7], + [45, 4], + [84, -10], + [53, 13], + [28, -3], + [14, 4], + [49, -4], + [-3, -8], + [20, -8], + [70, 13], + [-27, 6], + [2, 10], + [-34, 3], + [17, 7], + [3, 14], + [-46, 3], + [5, 11], + [-7, 15], + [-33, 5], + [-4, 20], + [42, -4], + [3, -6], + [47, 2], + [-5, 21], + [-41, 3], + [-46, 0], + [-11, 7], + [-4, 20], + [11, 7], + [26, -4], + [-17, -12], + [21, -4], + [33, 4], + [84, -1], + [9, -7], + [44, -11], + [17, 7], + [24, -7], + [21, 8], + [46, 0], + [33, -7], + [16, 10], + [25, 1], + [6, 10], + [-10, 17], + [33, -4], + [1, -10], + [-15, -14], + [9, -9], + [30, 6], + [8, -11], + [38, 11], + [5, -13], + [28, -10], + [20, 2], + [43, -19], + [29, 9], + [-2, 28], + [24, -11], + [-8, 25], + [28, -2], + [24, -17], + [-2, -16], + [55, 8], + [5, -7], + [-15, -14], + [48, 6], + [7, 5], + [34, -5], + [26, 15], + [57, 12], + [21, -2], + [42, 10], + [35, 16], + [22, 43], + [-1, 7], + [-20, 21], + [-4, 13], + [6, 23], + [-15, 38], + [-15, 16], + [4, 21], + [-13, 16], + [15, 0], + [-1, 7], + [25, -14], + [5, 14], + [11, 6], + [0, 11], + [-18, 7], + [14, 5], + [-5, 17], + [6, 14], + [-9, 16], + [12, 3], + [6, 21], + [-10, 5], + [-19, -1], + [15, 30], + [6, 0], + [-2, -17], + [15, -6], + [1, 26], + [-4, 14], + [8, 4], + [14, -7], + [5, 34], + [14, -2], + [-5, 11], + [19, -4], + [3, 23], + [16, 1], + [-5, 27], + [11, 6], + [16, -7], + [-4, 11], + [20, 14], + [11, -3], + [9, 12], + [10, 1], + [-1, 10], + [14, 4], + [-1, 13], + [30, 14], + [13, -2], + [3, 10], + [12, 2], + [1, 8], + [21, 4], + [7, 8], + [13, 6], + [11, -3], + [7, -20], + [-10, -3], + [-2, 12], + [-15, -12], + [-10, 0], + [-15, -17], + [-9, -22], + [-9, -6], + [-7, 7], + [-6, -6], + [-19, -5], + [-17, -29], + [-20, 3], + [6, -10], + [-18, -10], + [9, -14], + [-14, -14], + [13, -19], + [16, 3], + [0, 10], + [21, -2], + [-16, -14], + [-16, 0], + [-2, -16], + [-5, 16], + [-19, -3], + [1, -28], + [-16, 27], + [-15, 3], + [-10, -29], + [11, -10], + [-9, -4], + [-14, 11], + [-12, -15], + [6, -16], + [-15, -6], + [-8, 5], + [-3, -33], + [10, -6], + [-12, -11], + [21, 6], + [6, -6], + [-20, -7], + [14, -6], + [-10, -7], + [36, -17], + [-2, 17], + [23, 7], + [-14, -17], + [15, -6], + [-5, -8], + [14, -25], + [14, -7], + [-2, -21], + [15, -13], + [-1, -11], + [-10, 4], + [5, -18], + [22, 1], + [-16, -24], + [20, 4], + [9, -21], + [-5, -12], + [-12, -1], + [-14, -13], + [14, -1], + [11, 10], + [9, -8], + [-7, -12], + [-38, -3], + [36, -14], + [13, 10], + [0, -26], + [-19, -2], + [6, -18], + [17, 8], + [-7, -24], + [25, 4], + [-11, -19], + [-9, 8], + [-3, -13], + [-15, 12], + [-21, 5], + [13, -17], + [21, -10], + [-7, -23], + [-21, 5], + [21, -13], + [-23, -13], + [31, 7], + [-9, -17], + [-36, 6], + [17, -17], + [-10, -13], + [-13, -3], + [-2, 17], + [-17, 2], + [6, -15], + [-14, 3], + [-10, -10], + [18, 2], + [7, -9], + [-35, -4], + [-2, -7], + [33, -3], + [-85, -34], + [-52, -9], + [4, -3], + [-60, -13], + [4, -11], + [-17, -7], + [-31, -1], + [-20, 4], + [-46, 0], + [-31, 8], + [-64, 0], + [34, -42], + [23, -15], + [10, 6], + [66, -8], + [-25, -26], + [-38, -9], + [-61, 13], + [-95, 13], + [-30, -6], + [118, -34], + [-9, -17], + [-71, -7], + [-61, 21], + [-37, 30], + [12, -23], + [-13, -4], + [17, -20], + [42, -17], + [17, -23], + [18, -7], + [2, 20], + [108, -4], + [17, -13], + [-20, -24], + [-22, -3], + [-62, 0], + [55, -10], + [39, 6], + [24, -26], + [-8, -7], + [24, -16], + [19, 7], + [38, -10], + [7, 13], + [39, 9], + [21, -6], + [9, -14], + [46, -9], + [89, -24], + [77, -3], + [-92, -8], + [62, -5], + [-2, -4], + [-62, -1], + [-6, -25], + [26, -5], + [52, 8], + [75, 3], + [-64, -17], + [33, -33], + [-6, -17], + [66, -4], + [49, 30], + [72, 31], + [52, 14], + [16, -1], + [53, 11], + [65, 5], + [59, -2], + [6, -17], + [-17, -11], + [31, -7], + [67, 24], + [-2, 10], + [36, 18], + [9, 16], + [79, 27], + [42, -13], + [34, 10], + [18, 17], + [53, 0], + [40, 12], + [42, -3], + [-21, 10], + [37, 0], + [5, 7], + [153, 6], + [48, 10], + [-61, 7], + [-165, 11], + [31, 17], + [-27, 0], + [9, 15], + [-73, -12], + [-96, 23], + [-5, 14], + [12, 23], + [11, 3], + [8, 18], + [24, 0], + [-7, 12], + [28, 18], + [34, 10], + [17, 0], + [5, 10], + [28, 7], + [15, 13], + [36, 16], + [52, 10], + [29, 14], + [48, 10], + [53, 7], + [31, -4], + [22, 14], + [17, -6], + [43, 6], + [-18, 11], + [29, 26], + [-3, 10], + [14, 17], + [24, 3], + [23, -7], + [39, 33], + [-10, 4], + [-27, -10], + [-22, 3], + [17, 4], + [-20, 7], + [1, 13], + [28, 23], + [18, 3], + [12, -9], + [16, 11], + [-15, 16], + [29, -7], + [14, 11], + [42, 13], + [3, 19], + [10, 20], + [-18, 0], + [-18, 7], + [-1, 18], + [16, 2], + [1, -9], + [21, -10], + [7, 17], + [16, 9], + [-12, 10], + [13, 4], + [3, -10], + [22, -7], + [10, -28], + [15, 7], + [15, -5], + [-4, 9], + [6, 23], + [-11, 13], + [13, 5], + [25, -7], + [16, 14], + [13, -8], + [-20, -29], + [71, -3], + [7, -9], + [4, 12], + [18, 3], + [5, -6], + [28, -5], + [7, 11], + [12, -7], + [-4, -14], + [12, -9], + [21, 25], + [13, 8], + [41, 14], + [105, 20], + [19, 0], + [28, 7], + [-5, 17], + [12, 2], + [-1, -17], + [11, -3], + [25, 9], + [-8, 8], + [9, 9], + [22, -23], + [31, -14], + [21, -5], + [14, 25], + [18, 7], + [-16, 10], + [16, 1], + [8, -13], + [22, -4], + [22, 3], + [27, -4], + [3, 9], + [17, 3], + [-3, -18], + [45, -4], + [11, 1], + [-6, 11], + [17, 9], + [11, -10], + [-10, -23], + [10, -10], + [23, -1], + [26, 4], + [3, 13], + [16, 24], + [24, -18], + [-21, -6], + [14, -7], + [26, -5], + [13, 26], + [15, -4], + [0, -15], + [27, -15], + [31, -3], + [35, 17], + [23, 3], + [38, 21], + [40, 5], + [38, 11], + [7, 7], + [2, 33], + [-12, 13], + [-1, 13], + [20, 12], + [28, 0], + [4, -8], + [-21, -13], + [24, -1], + [20, -13], + [-2, -23], + [45, 4], + [8, -15], + [7, 9], + [26, -1], + [-5, -7], + [19, -19], + [2, 12], + [13, 7], + [-1, 10], + [15, 4], + [-2, 32], + [4, 14], + [26, 6], + [21, 15], + [28, 4], + [8, 17], + [32, 8], + [24, 0], + [-6, 5], + [34, 13], + [14, -6], + [-2, 23], + [18, 5], + [14, -8], + [-13, -7], + [10, -3], + [6, -12], + [9, 8], + [16, -6], + [-5, -17], + [13, 20], + [-3, 14], + [16, 5], + [2, 11], + [-19, -3], + [-6, 13], + [27, 6], + [-2, -9], + [15, 2], + [0, -13], + [11, 8], + [11, -7], + [10, 7], + [-14, 3], + [10, 16], + [-16, 1], + [-1, 12], + [9, 14], + [23, 4], + [11, 12], + [30, 4], + [25, 7], + [40, -6], + [19, -10], + [15, -20], + [11, 3], + [13, -8], + [1, -9], + [-36, 3], + [15, -8], + [-11, -23], + [1, -12], + [7, 13], + [33, 10], + [23, -11], + [12, 1], + [5, -20], + [12, -4], + [4, 11], + [24, 0], + [18, -7], + [45, -7], + [24, 9], + [30, -9], + [45, -7], + [48, -4], + [9, -3], + [35, 8], + [-1, -15], + [14, -30], + [-13, -3], + [-7, -17], + [13, 0], + [-16, -9], + [12, -8], + [0, -9], + [-27, -3], + [17, -14], + [-13, -6], + [9, -5], + [-17, -12], + [-13, 18], + [-18, -29], + [13, -14], + [34, 8], + [1, -21], + [-15, -30], + [-17, -8], + [-5, -19], + [-10, -7], + [-6, -33], + [-12, -36], + [-15, -8], + [25, -10], + [22, 10], + [-3, 26], + [14, 11], + [34, 3], + [8, 20], + [20, 6], + [-6, 7], + [17, 12], + [14, 3], + [-11, 7], + [16, 40], + [17, 7], + [14, 12], + [-6, 15], + [22, 23], + [15, 5], + [8, -12], + [28, 6], + [5, -7], + [13, 8], + [-3, 16], + [35, 18], + [22, 5], + [7, 21], + [16, 4], + [-7, 13], + [9, 12], + [19, 10], + [73, 24], + [30, 4], + [13, -3], + [-6, 13], + [29, 18], + [36, -4], + [9, 7], + [18, 0], + [34, 17], + [8, -5], + [14, 4], + [23, -4], + [23, 1], + [19, 14], + [25, 5], + [12, -6], + [34, 1], + [4, -10], + [31, 17], + [11, -4], + [8, -10], + [13, 6], + [16, 0], + [16, 6], + [13, -10], + [14, 13], + [9, 0], + [8, -26], + [8, 11], + [13, 3], + [9, 9], + [27, 7], + [14, 17], + [0, 7], + [27, 0], + [8, 6], + [27, -9], + [24, -3], + [65, -22], + [29, -6], + [-3, -17], + [12, 13], + [16, -19], + [18, 0], + [29, 17], + [7, 0], + [-5, 20], + [13, 14], + [62, 17], + [35, -27], + [-3, -15], + [21, 2], + [16, -8], + [3, -10], + [-17, -16], + [-31, -8], + [-11, -15], + [25, 3], + [22, 10], + [32, 6], + [13, 10], + [-3, -10], + [19, 3], + [5, -6], + [32, -1], + [41, 14], + [0, -3], + [-45, -17], + [5, -7], + [73, 19], + [18, 14], + [58, 14], + [13, -9], + [11, 6], + [8, 14], + [14, 6], + [12, -14], + [14, 6], + [-8, -12], + [3, -11], + [11, 0], + [0, -16], + [28, 6], + [11, -7], + [10, 7], + [6, -10], + [11, 13], + [2, 21], + [16, 19], + [18, 8], + [28, -7], + [30, 4], + [8, 6], + [19, -2], + [13, -11], + [-5, -11], + [19, 10], + [11, 0], + [9, 12], + [4, -14], + [13, 7], + [8, -8], + [30, 1], + [20, -11], + [35, -3], + [12, -6], + [28, -3], + [10, -5], + [20, 3], + [14, -13], + [27, 10], + [12, -6], + [-4, -11], + [21, 8], + [5, -6], + [-22, -38], + [0, -10], + [11, 0], + [26, 23], + [9, -10], + [14, 7], + [14, -31], + [13, 5], + [-8, -14], + [8, -7], + [23, 3], + [4, -6], + [39, 4], + [35, -1], + [10, 4], + [-1, -21], + [16, -13], + [0, 14], + [24, 0], + [17, -11], + [23, 7], + [-5, 24], + [5, 3], + [24, -14], + [2, -10], + [16, -13], + [14, -3], + [17, -14], + [19, 3], + [6, -10], + [6, 8], + [17, -1], + [45, -17], + [14, -20], + [-16, 0], + [28, -13], + [19, -34], + [-3, -13], + [18, 0], + [2, 34], + [16, 3], + [22, -23], + [21, 2], + [-3, 7], + [38, -3], + [13, -6], + [12, 5], + [13, -6], + [-9, -6], + [27, 2], + [18, -20], + [10, -3], + [48, -30], + [2, 21], + [19, -31], + [-5, -6], + [-13, 7], + [-13, -34], + [12, 6], + [-5, -17], + [-39, 15], + [-11, -1], + [16, -13], + [29, -8], + [-8, -19], + [-20, -10], + [-14, 16], + [-2, -13], + [-32, 1], + [-12, 5], + [1, -16], + [9, 6], + [23, -6], + [-20, -4], + [-5, -9], + [-34, 0], + [9, -14], + [-26, -1], + [1, 15], + [-11, 9], + [-4, -20], + [17, -14], + [-15, 0], + [13, -30], + [-24, 1], + [-20, -6], + [-3, 16], + [-30, -30], + [9, -7], + [-5, -13], + [-22, 2], + [-34, -12], + [45, -1], + [-4, -7], + [21, -16], + [-2, -16], + [-18, -5], + [18, -3], + [4, -13], + [-13, -11], + [14, -5], + [-14, -17], + [18, 0], + [20, -30], + [-7, -11], + [27, -7], + [-11, -20], + [14, -7], + [20, 8], + [12, -14], + [36, -4], + [-15, -13], + [-12, 9], + [-47, -2], + [-37, -7], + [-14, -13], + [-34, 22], + [20, -29], + [-38, 2], + [-9, -8], + [9, -14], + [-23, -14], + [27, 3], + [-37, -16], + [52, -4], + [-72, -17], + [-6, -13], + [61, 6], + [7, -8], + [-35, -4], + [40, -4], + [-17, -13], + [9, -23], + [-22, 5], + [25, -20], + [40, -9], + [38, -31], + [-89, -12], + [59, -2], + [53, 8], + [73, -27], + [12, -14], + [24, 3], + [-3, -20], + [86, -9], + [66, -23], + [124, -12], + [-9955, -15] + ], + [ + [3456, 1546], + [12, -3], + [-1, -9], + [-17, 4], + [-19, -9], + [3, 13], + [22, 4] + ], + [ + [3431, 1556], + [12, -2], + [-6, -9], + [-6, 11] + ], + [ + [3331, 1581], + [7, -5], + [-12, -7], + [-4, 7], + [-20, -3], + [-1, 6], + [30, 2] + ], + [ + [3392, 1616], + [7, -6], + [-33, -7], + [10, 13], + [16, 0] + ], + [ + [3470, 1665], + [-6, -10], + [-5, 8], + [11, 2] + ], + [ + [6916, 2373], + [5, -3], + [-5, -12], + [16, -14], + [19, 13], + [7, -1], + [-1, -15], + [-9, 1], + [-11, -5], + [2, -7], + [13, 1], + [-1, -9], + [-22, 3], + [-7, 8], + [-5, -13], + [-8, 4], + [5, 20], + [-5, 14], + [1, 12], + [6, 3] + ], + [ + [9093, 2685], + [-7, -6], + [5, 12], + [2, -6] + ], + [ + [9020, 2837], + [14, -3], + [13, -8], + [2, -6], + [17, -8], + [24, 13], + [5, -4], + [5, 11], + [5, -4], + [4, 9], + [10, -13], + [-1, -28], + [1, -39], + [-7, 1], + [-1, -22], + [-4, -21], + [3, -1], + [0, -21], + [-10, 9], + [6, 10], + [-14, 1], + [-4, -23], + [-2, 6], + [-8, -26], + [-9, 6], + [-14, -1], + [-3, 20], + [-2, -6], + [-4, 15], + [-7, 9], + [-6, 24], + [0, 13], + [9, -9], + [-13, 31], + [-11, 37], + [-2, 13], + [4, 15] + ], + [ + [9121, 2859], + [-9, -6], + [0, 6], + [9, 0] + ], + [ + [9109, 2896], + [9, -16], + [1, -14], + [-5, -2], + [-11, 22], + [6, 10] + ], + [ + [9001, 2876], + [-5, -4], + [-1, 25], + [7, 3], + [-1, -24] + ], + [ + [8822, 3134], + [-1, -10], + [12, 1], + [0, -11], + [-11, 1], + [-5, -10], + [-20, 1], + [-4, 17], + [21, 11], + [8, 0] + ], + [ + [9263, 3604], + [-1, -18], + [-2, 14], + [3, 4] + ], + [ + [9261, 3608], + [-2, 17], + [3, 2], + [-1, -19] + ], + [ + [8136, 3714], + [7, -36], + [-7, 19], + [0, 17] + ], + [ + [9257, 3758], + [2, -20], + [-10, -37], + [1, 32], + [5, 7], + [-2, 14], + [4, 4] + ], + [ + [9195, 3832], + [5, -3], + [0, -17], + [-7, 17], + [2, 3] + ], + [ + [9061, 4133], + [3, -7], + [-3, -7], + [-4, 13], + [4, 1] + ], + [ + [8880, 4236], + [-7, -7], + [0, -6], + [-8, 0], + [1, 8], + [10, 8], + [4, -3] + ], + [ + [8805, 4285], + [2, -15], + [-4, 8], + [2, 7] + ], + [ + [8797, 4395], + [0, -9], + [6, 2], + [-5, -8], + [-1, -14], + [6, -6], + [-8, 0], + [-6, 5], + [-1, 14], + [9, 16] + ], + [ + [8621, 4522], + [5, -21], + [-7, 4], + [-8, -2], + [5, 9], + [-2, 9], + [6, 10], + [1, -9] + ], + [ + [8624, 4533], + [6, -6], + [14, 10], + [6, -2], + [1, -21], + [-14, -18], + [-13, 16], + [-3, 29], + [3, -8] + ], + [ + [8682, 4547], + [1, -13], + [-4, 6], + [3, 7] + ], + [ + [8959, 4566], + [-1, -8], + [6, -7], + [3, -19], + [0, -30], + [10, -9], + [-4, -20], + [6, -4], + [4, -11], + [-2, -17], + [5, 2], + [-1, -13], + [3, -19], + [-2, -19], + [5, -20], + [3, -22], + [5, -2], + [15, 18], + [4, -22], + [18, -23], + [-3, -12], + [2, -6], + [2, -37], + [3, -8], + [-2, -16], + [6, -22], + [9, -9], + [-1, -11], + [5, -19], + [1, -16], + [-3, -34], + [9, -15], + [-2, -17], + [5, -14], + [13, -15], + [4, 7], + [2, -12], + [8, 0], + [4, -6], + [1, -14], + [19, -12], + [1, -10], + [7, 5], + [3, -13], + [4, 1], + [1, -10], + [-4, -1], + [-1, -10], + [15, -24], + [-1, -8], + [8, -30], + [0, -14], + [3, -20], + [8, -7], + [5, -13], + [-3, 22], + [4, 5], + [3, -9], + [10, -13], + [2, 13], + [6, -21], + [-2, -15], + [3, -36], + [4, 0], + [4, -13], + [5, -4], + [6, -13], + [6, 3], + [4, -6], + [6, -27], + [8, -7], + [4, -25], + [10, -6], + [0, -27], + [6, -16], + [-2, -19], + [4, -40], + [-4, -3], + [10, -41], + [1, -17], + [3, -4], + [1, -40], + [-7, -21], + [-2, -39], + [-7, -32], + [0, -30], + [-3, -28], + [-5, -21], + [-6, -11], + [0, -23], + [-13, -15], + [-11, -20], + [-6, -26], + [-5, -3], + [0, -26], + [-9, -18], + [-3, -27], + [-4, -14], + [2, -9], + [-8, -7], + [-9, -34], + [0, -24], + [-7, -34], + [4, -21], + [-2, -14], + [-13, -16], + [-33, -2], + [-16, -10], + [-10, -13], + [-13, -24], + [-19, -4], + [3, -12], + [4, 7], + [-2, -20], + [-6, 16], + [-8, -3], + [-4, 16], + [-3, -3], + [-8, 9], + [5, 8], + [-2, 9], + [-6, 0], + [-1, -10], + [-8, -5], + [-6, 8], + [8, 1], + [3, 17], + [-6, 10], + [-15, -14], + [10, -2], + [-2, -8], + [-6, 0], + [-10, -11], + [-14, -22], + [-32, 28], + [-5, -2], + [-8, 7], + [-9, -1], + [1, -6], + [-8, 1], + [-4, 13], + [-14, 5], + [-10, 11], + [-3, 13], + [-13, 23], + [-3, 18], + [5, 6], + [0, 13], + [-9, 34], + [-14, 26], + [6, 2], + [3, 10], + [-4, 3], + [-21, -20], + [-8, 0], + [-1, 7], + [9, 12], + [3, 33], + [-8, 16], + [-3, 16], + [-7, -13], + [-1, -20], + [-5, -23], + [-7, 4], + [-15, -11], + [3, 23], + [11, -3], + [3, 21], + [-1, 25], + [4, 17], + [9, 19], + [-3, 19], + [6, 4], + [-8, 34], + [0, -26], + [-3, 2], + [-6, -11], + [-5, -27], + [-25, -26], + [-8, -24], + [-4, -3], + [-4, -16], + [6, 2], + [0, -12], + [-5, 7], + [-6, -5], + [-6, 18], + [-1, 21], + [-3, 17], + [-11, 20], + [-4, 27], + [-12, 0], + [-2, 13], + [-4, 1], + [7, 15], + [-5, 12], + [-8, -5], + [3, 9], + [-8, 16], + [-14, -5], + [-10, 14], + [-7, 1], + [-9, -6], + [-12, 18], + [-18, 14], + [-9, -7], + [-18, 2], + [-33, -7], + [-27, -23], + [-20, -11], + [-17, -2], + [-14, 5], + [-18, -19], + [-15, -10], + [-2, -6], + [-17, -8], + [-4, -5], + [-5, -28], + [-7, -16], + [-6, -7], + [-4, 3], + [-6, -7], + [-3, 9], + [-19, -3], + [-8, -6], + [0, 8], + [-14, 3], + [-20, -2], + [-13, -6], + [-16, -1], + [-9, -16], + [-2, -12], + [-16, 1], + [-3, -11], + [-7, -4], + [-2, -11], + [-20, -8], + [-2, -5], + [-12, 7], + [-18, -1], + [-15, 14], + [-10, 19], + [-10, 9], + [-4, -3], + [-4, 15], + [0, 32], + [6, -7], + [7, 3], + [6, 18], + [-1, 36], + [3, 8], + [0, 43], + [-18, 66], + [-4, 34], + [1, 32], + [-5, 22], + [-7, 17], + [0, 16], + [-11, 24], + [-2, 38], + [-5, 16], + [-11, 32], + [-7, 13], + [5, 14], + [6, -26], + [7, 6], + [0, 9], + [-9, 14], + [-4, 27], + [2, 4], + [7, -20], + [-1, -17], + [5, 14], + [2, -22], + [7, -2], + [0, 30], + [-5, 13], + [-6, 26], + [-4, 4], + [-3, 21], + [-5, 16], + [1, 26], + [4, 22], + [5, 6], + [0, 24], + [2, 10], + [-5, 22], + [3, 7], + [7, 33], + [4, 4], + [-2, -20], + [1, -21], + [7, 4], + [8, 34], + [23, 20], + [13, 26], + [21, 22], + [5, -3], + [8, 6], + [7, -7], + [12, 7], + [8, 14], + [17, 3], + [10, 20], + [12, -6], + [7, 6], + [12, 3], + [16, 11], + [11, 13], + [9, 25], + [3, 19], + [4, 4], + [16, 39], + [-4, 1], + [-2, 36], + [3, 14], + [8, 17], + [6, 3], + [0, 10], + [7, 12], + [-1, -15], + [5, -3], + [0, -14], + [12, -37], + [-1, 10], + [3, 13], + [-2, 11], + [7, -10], + [-3, 24], + [-6, 5], + [6, 13], + [-5, 8], + [5, 2], + [7, -7], + [-1, 9], + [7, -9], + [16, -1], + [-10, 3], + [-1, 9], + [6, 4], + [1, 18], + [-4, -11], + [-3, 18], + [1, 9], + [6, 1], + [3, 9], + [5, 0], + [4, -9], + [1, 10], + [-6, 3], + [4, 17], + [11, -10], + [0, 9], + [-8, 16], + [10, 14], + [3, -4], + [7, 6], + [1, -11], + [3, 5], + [4, 26], + [-5, 5], + [4, 7], + [3, -19], + [9, 16], + [1, -16], + [4, 14], + [4, 0], + [-3, 11], + [6, 4], + [4, -14], + [9, 1], + [11, -28], + [10, -16], + [-3, -17], + [0, -13], + [4, -1], + [-1, 11], + [5, 14], + [4, 3], + [12, -5], + [9, -11], + [-1, 11], + [7, -5], + [3, -14], + [4, 1], + [-3, 18], + [5, -1], + [-6, 15], + [-7, 11], + [4, 20], + [7, 4], + [1, 18], + [4, 9], + [11, 12], + [-5, 9], + [0, 14], + [6, 2], + [0, 12], + [6, 6], + [2, 11], + [7, -14], + [0, 17], + [4, -2], + [-1, 12], + [9, 5], + [3, -13], + [13, 4], + [4, -5], + [9, 5], + [7, 9], + [2, 24], + [-7, 12], + [-9, -5], + [-5, 12], + [-5, 0], + [7, 11], + [10, -1], + [9, -21], + [6, 10], + [7, -21], + [14, -7], + [4, 6], + [4, -11], + [3, 4], + [4, -12], + [6, -1], + [8, 7], + [11, -18], + [13, 11], + [6, 2], + [-4, -8], + [2, -6], + [5, 7], + [5, -5], + [-2, -11], + [7, -1], + [3, 14], + [-5, 3], + [10, 9], + [4, -17], + [3, 7], + [4, -11], + [-12, -28], + [4, -6], + [-9, -21], + [0, 9], + [-5, -6], + [0, 8], + [-7, -9], + [0, -26], + [4, 3], + [-4, -29], + [-3, -3], + [-7, -24], + [-4, -4], + [2, -13], + [22, -27], + [0, -8], + [10, -11], + [4, -9], + [7, 1], + [10, -14], + [10, -7], + [9, -21], + [7, -8], + [20, -9], + [4, -7], + [1, -15], + [22, -24], + [14, 4], + [10, 13], + [3, 24], + [7, 18], + [3, 26], + [3, 9], + [-2, 9], + [3, 25], + [5, 20], + [-4, 40], + [3, 16], + [-4, 13], + [1, 21], + [5, 21], + [-2, 18], + [6, 14], + [-2, 11], + [-5, -4], + [6, 28], + [6, 1], + [-2, 8], + [6, 41], + [0, 14], + [5, 2], + [6, 11] + ], + [ + [5470, 7982], + [-2, -9], + [5, -23], + [3, -3] + ], + [ + [5476, 7947], + [-3, -17], + [-12, 3], + [-6, -6], + [7, -3], + [-5, -12], + [-1, -22], + [-9, -9] + ], + [ + [5447, 7881], + [-19, -12], + [-16, -2], + [-9, -14], + [-23, 9] + ], + [ + [5380, 7862], + [-32, 7], + [-12, 17], + [2, 7], + [-12, -5], + [-17, -1], + [-4, -11], + [-15, 6] + ], + [ + [5290, 7882], + [-2, 7], + [-6, -8], + [-16, 12] + ], + [ + [5266, 7893], + [-2, 12] + ], + [ + [5264, 7905], + [1, 14] + ], + [ + [5265, 7919], + [4, 2] + ], + [ + [5269, 7921], + [7, 0], + [8, -16], + [6, 15], + [12, -1], + [2, -7], + [9, 1], + [9, 10], + [32, 4], + [6, -11], + [3, 9], + [-5, 5], + [1, 13], + [-6, 9], + [4, 7], + [12, 5], + [4, 16], + [7, -3], + [3, 13] + ], + [ + [5383, 7990], + [7, -9], + [18, 0], + [7, 11], + [0, 12], + [11, -1], + [20, -13], + [10, 3], + [13, -6], + [1, -5] + ], + [ + [6281, 7420], + [-19, 8], + [-9, 14], + [-9, 24] + ], + [ + [6244, 7466], + [-1, 3] + ], + [ + [6289, 7594], + [9, -6], + [11, -12], + [5, -17], + [16, -3], + [5, 15], + [9, 6], + [5, 16] + ], + [ + [6349, 7593], + [15, -31], + [1, -11], + [10, -28], + [15, -3], + [8, -10], + [-11, -3], + [-13, -11], + [0, -11], + [-6, -28], + [4, -11], + [-5, 0], + [-1, -17], + [-7, 10], + [-2, -43] + ], + [ + [6357, 7396], + [-7, -2], + [-6, 12], + [-11, 12], + [1, 8], + [7, 2], + [-5, 18], + [6, 7], + [-10, 16], + [-4, -1], + [-26, -29], + [-11, -17] + ], + [ + [6249, 7560], + [8, 10], + [13, -8], + [8, -9], + [6, 1], + [6, -8], + [4, 3], + [1, 15], + [-10, 9], + [-3, 13], + [7, 8] + ], + [ + [5848, 5045], + [-4, -15], + [2, -14], + [9, -5], + [0, -17], + [-9, -13], + [-9, -34], + [-11, -21], + [-3, 1] + ], + [ + [5823, 4927], + [-9, 39], + [1, 21], + [-4, 4] + ], + [ + [5811, 4991], + [0, 18], + [-4, 5], + [-2, 12] + ], + [ + [5805, 5026], + [4, 7], + [5, -4], + [0, -9], + [11, 1], + [5, 7], + [1, 21], + [6, -6], + [7, 7], + [4, -5] + ], + [ + [5166, 8104], + [10, -14], + [1, -10], + [-8, -11] + ], + [ + [5169, 8069], + [-7, -3], + [-4, -16], + [2, -14] + ], + [ + [5160, 8036], + [-9, -3], + [-4, 10], + [-13, 7], + [-1, 21], + [-9, -13], + [-10, 3], + [2, 15], + [-5, 5], + [-10, 0], + [0, 6], + [-11, 5], + [-4, 15], + [-7, -6], + [-7, 8], + [-2, 15] + ], + [ + [5070, 8124], + [16, 14], + [7, 3] + ], + [ + [5093, 8141], + [0, -6], + [16, -3], + [8, 9] + ], + [ + [5117, 8141], + [1, 0] + ], + [ + [5118, 8141], + [3, 3], + [16, -1], + [7, -8], + [9, 0], + [9, -11], + [-6, -13], + [10, -7] + ], + [ + [5099, 5856], + [-3, -17], + [7, -16], + [0, -19], + [3, -5], + [-1, -16], + [-5, 0], + [1, -14], + [-3, -18], + [-6, -3], + [0, -9], + [-5, -12], + [-2, -20], + [-8, -4], + [-2, -15], + [0, -41], + [-1, -12], + [2, -25], + [1, -42], + [-2, -18] + ], + [ + [5075, 5550], + [-31, -9] + ], + [ + [5044, 5541], + [5, 3], + [-5, 18], + [1, 24], + [0, 73], + [-1, 5], + [0, 43], + [-6, 13], + [-1, 37], + [-16, 23], + [0, 19], + [4, 17] + ], + [ + [5025, 5816], + [5, 3], + [1, 13], + [4, -1], + [3, 11], + [6, -3], + [11, 2], + [8, 13], + [3, 14] + ], + [ + [5066, 5868], + [-1, 19], + [14, 10], + [10, -21], + [2, -8], + [6, -4], + [2, -8] + ], + [ + [5006, 6041], + [-2, -21], + [6, -16], + [-1, -9], + [7, -24], + [5, 0], + [7, -13], + [7, -7], + [-9, -1], + [0, -15], + [6, -6], + [11, -19], + [8, -1], + [3, 7], + [5, -3], + [3, -15], + [-6, -4], + [10, -26] + ], + [ + [5025, 5816], + [-12, 0], + [-18, 8] + ], + [ + [4995, 5824], + [-8, -3], + [-5, -10], + [-2, 5], + [-59, 0], + [-3, -22], + [3, -11], + [2, -25], + [0, -24], + [2, -5] + ], + [ + [4925, 5729], + [-4, -4], + [-10, 24], + [-6, 5], + [-10, 1], + [-11, -7], + [-4, -11], + [-11, 3], + [-4, 12], + [-3, -1], + [-4, 24], + [-9, 1], + [-3, 7] + ], + [ + [4846, 5783], + [3, 24], + [-2, 14], + [6, 9], + [1, 19], + [-4, 14], + [8, 10], + [9, 1], + [10, 18], + [-1, 24], + [6, 0], + [0, 14], + [-3, 11], + [10, 13], + [15, -13], + [5, 7], + [0, 25], + [6, -5], + [5, 21], + [11, 16], + [12, -6], + [1, 16], + [8, 3], + [11, 13], + [8, 5], + [8, 15], + [8, -4], + [8, 2], + [11, -8] + ], + [ + [7529, 6456], + [0, 16], + [3, -11], + [-3, -5] + ], + [ + [7521, 6458], + [-5, -7], + [2, 29], + [-4, 4], + [3, 11], + [6, -20], + [-2, -17] + ], + [ + [7571, 6448], + [0, -29], + [2, -10], + [-12, 7], + [1, -20] + ], + [ + [7562, 6396], + [1, -15], + [-7, 20], + [-1, 27], + [-3, 9], + [-2, 29], + [-11, 31], + [-5, -14], + [-9, 0], + [-8, 26], + [1, 14], + [-4, 6], + [-9, 4], + [11, -11], + [-4, -10], + [2, -12], + [-3, -8], + [5, -13], + [-2, -18], + [-6, -9], + [-1, -11], + [-7, 1], + [1, 7], + [-5, 6], + [-2, -15], + [-12, -7], + [0, 14], + [-4, -18], + [-4, 10], + [-1, 18] + ], + [ + [7473, 6457], + [-6, 48], + [2, 14], + [-7, 2], + [3, 13], + [-6, 8], + [0, 11], + [5, 8], + [0, 22], + [-7, 0], + [-11, 12], + [-2, 7], + [4, 12], + [5, 1], + [3, 18], + [13, -1], + [-3, 18], + [-8, 1], + [-3, 11], + [-9, 14], + [2, 12], + [5, 4], + [4, 14], + [5, -9], + [11, -3], + [7, -14], + [7, -2], + [2, 15], + [6, -18], + [-2, -4], + [1, -32], + [15, -8], + [23, 2], + [7, -3], + [18, 3], + [11, -14], + [-6, -2], + [-5, -31], + [-5, -2], + [0, -9], + [-8, 2], + [0, -6], + [-7, 0], + [-7, -21], + [2, -14], + [9, -30], + [7, 5], + [0, 15], + [5, 8], + [-1, 11], + [5, 4], + [8, -22], + [0, -25], + [3, -12], + [3, -42] + ], + [ + [5793, 7702], + [0, -17], + [-11, -3], + [-6, -14], + [-2, -26], + [-4, 1], + [-8, -16], + [5, 1], + [11, -28] + ], + [ + [5778, 7600], + [-13, -4], + [-6, 9], + [-21, -5], + [-7, -15] + ], + [ + [5731, 7585], + [-8, 0], + [2, -21], + [-25, -7], + [-9, 10], + [-8, 1], + [-2, 6], + [-14, 0], + [-8, -7], + [-13, 0], + [-10, -4] + ], + [ + [5636, 7563], + [3, 22], + [-5, 18], + [-9, 5], + [-5, 11] + ], + [ + [5620, 7619], + [5, 6], + [-3, 23], + [9, 5], + [7, 17], + [-13, 15], + [-4, 15], + [1, 17], + [8, 13] + ], + [ + [5630, 7730], + [9, -8], + [-4, -15], + [17, 3], + [18, -8], + [10, 3], + [21, -5], + [4, -4], + [11, 5], + [9, 16], + [25, 10], + [10, -10], + [15, -2], + [8, -13], + [10, 0] + ], + [ + [6402, 6694], + [3, 0], + [0, -24], + [-4, 8], + [1, 16] + ], + [ + [2971, 6401], + [-3, -10], + [-15, -3], + [-1, 6], + [9, 10], + [4, -4], + [6, 12], + [0, -11] + ], + [ + [2969, 6475], + [8, -3], + [-7, -3], + [-1, 6] + ], + [ + [2948, 6491], + [0, -14], + [-5, 9], + [5, 5] + ], + [ + [2889, 6546], + [9, -13], + [-10, 9], + [1, 4] + ], + [ + [2908, 6546], + [6, -21], + [0, -8], + [7, -10], + [0, -8], + [-7, 15], + [-1, 14], + [-5, 18] + ], + [ + [2840, 6572], + [6, 0], + [0, -20], + [-8, 5], + [-3, 13], + [5, 2] + ], + [ + [2908, 6577], + [-3, 0], + [-4, 16], + [7, -16] + ], + [ + [2830, 6632], + [3, 0], + [8, -40], + [-8, -11], + [-10, 14], + [7, 37] + ], + [ + [2869, 6655], + [0, -4], + [16, -20], + [-1, -29], + [-2, 7], + [3, 17], + [-6, 14], + [-11, 8], + [1, 7] + ], + [ + [2819, 6722], + [15, -4], + [-21, -5], + [6, 9] + ], + [ + [2839, 6733], + [5, 0], + [16, -25], + [0, -11], + [-4, -3], + [0, -19], + [-6, 5], + [4, 8], + [0, 18], + [-8, 23], + [-7, 4] + ], + [ + [5528, 7765], + [9, 0], + [-7, -29], + [14, -17], + [-10, -5], + [7, -13], + [-1, -8], + [-7, -3] + ], + [ + [5533, 7690], + [-8, -3], + [0, -8], + [-7, -6], + [-1, -13], + [-4, 0], + [-1, -26] + ], + [ + [5512, 7634], + [-22, 19] + ], + [ + [5490, 7653], + [-2, 3] + ], + [ + [5488, 7656], + [0, 8], + [-35, 57], + [-8, 32], + [-7, 3], + [0, 29], + [6, 2], + [10, -12], + [3, 10], + [9, -1], + [4, 7], + [4, -7], + [22, -6], + [4, 4], + [19, -3], + [2, -11], + [7, -3] + ], + [ + [5781, 8416], + [4, -6], + [9, 3], + [3, -8], + [9, 4], + [11, -6], + [1, -13], + [12, 9], + [16, -3], + [11, -11], + [-2, -19], + [6, -15], + [-7, -13], + [11, -10], + [-3, -7], + [7, -14], + [15, -15], + [-3, -11], + [10, 1], + [11, -9], + [6, -11], + [-15, -22], + [-22, 5], + [-4, -9], + [8, -10], + [2, -30], + [5, -13] + ], + [ + [5882, 8183], + [-23, -2], + [-12, -29], + [3, -14], + [-7, -1], + [-6, 11], + [-15, -1], + [-9, -6], + [-5, 14], + [-13, -11], + [-11, 13], + [-16, -10], + [1, 7], + [-13, 0], + [-1, 7], + [-21, 5], + [-10, 6], + [-28, 2], + [-19, -4], + [-11, -18], + [-11, 3], + [0, -5] + ], + [ + [5655, 8150], + [0, 34], + [-12, 10], + [6, 13], + [15, 11], + [0, 18], + [-7, 25], + [-5, 28] + ], + [ + [5652, 8289], + [20, 1], + [5, -4], + [12, 5], + [-1, 7], + [19, 11], + [1, -8], + [8, 6], + [-7, 3], + [9, 37], + [8, 1], + [3, 10], + [9, -1], + [6, 10], + [-8, 1], + [2, 20] + ], + [ + [5738, 8388], + [11, 10], + [17, -2], + [8, 17], + [7, 3] + ], + [ + [2547, 6247], + [-3, -6], + [9, 0], + [-1, -18], + [-5, -28], + [4, -4], + [-4, -10], + [2, -16], + [-2, -24], + [-7, -21], + [-5, -2], + [-5, -20] + ], + [ + [2530, 6098], + [-9, 0], + [2, 51], + [0, 60] + ], + [ + [2523, 6209], + [4, 10], + [4, -6], + [9, 26], + [0, 6], + [7, 2] + ], + [ + [3084, 4249], + [-4, -1] + ], + [ + [3080, 4248], + [4, 1] + ], + [ + [3384, 4022], + [-1, 21], + [-24, 29], + [-24, 0], + [-51, -22], + [-4, -23], + [-10, -28], + [0, -29], + [-8, -54], + [-3, -14] + ], + [ + [3133, 3869], + [-10, -5], + [-9, 4], + [1, 16], + [-3, 11], + [0, 16], + [-4, 7], + [-3, 23], + [0, 15], + [-6, 20], + [-4, 2], + [2, 18], + [-6, 6], + [1, 10], + [-3, 14], + [6, 2], + [1, 8], + [-5, 11], + [7, 16], + [-13, 23], + [-3, 34], + [-3, 18], + [2, 6], + [-7, 5], + [0, 8], + [-5, 18] + ], + [ + [3069, 4175], + [-4, 17], + [7, 8], + [10, 30] + ], + [ + [3082, 4230], + [5, -3], + [-1, 11], + [8, 5], + [0, 6], + [-7, 0], + [-1, 9], + [4, 4], + [-7, 3], + [0, 7], + [-10, 17] + ], + [ + [3073, 4289], + [6, 16], + [-7, 15], + [6, 28], + [5, 6], + [3, 20], + [-6, 22], + [4, 8], + [-1, 36], + [7, 11], + [2, 12], + [-16, 55], + [-9, 34] + ], + [ + [3067, 4552], + [23, -3], + [-1, -8], + [10, 6], + [9, 20], + [11, 3], + [11, 19], + [7, 3], + [11, 20], + [19, 8], + [7, 1], + [4, -5], + [5, 9], + [3, -32], + [-4, -13], + [3, -21], + [-2, -18], + [2, -19], + [3, -2], + [1, -14], + [4, -2], + [1, -12], + [5, -1], + [4, -10], + [6, -4], + [1, -11], + [13, -4], + [4, 4], + [10, -7], + [4, -8], + [5, 4], + [9, -20], + [4, 1], + [8, -10], + [7, 0], + [0, -6], + [8, -17], + [22, 4], + [18, -27], + [-2, -20], + [5, -18], + [1, -28], + [-9, -1], + [9, -20], + [3, -47], + [47, -4], + [3, 3], + [0, -13], + [-4, -8], + [2, -34], + [11, -15], + [6, -1], + [0, -8], + [6, -27], + [0, -10], + [-6, -46], + [-9, -38], + [7, -13], + [-8, -10] + ], + [ + [3651, 3581], + [1, 22], + [3, 0], + [-4, -22] + ], + [ + [3650, 3661], + [-4, 8], + [6, 7], + [-2, -15] + ], + [ + [3919, 4412], + [0, -16], + [-4, 16], + [4, 0] + ], + [ + [3660, 5124], + [-3, 3], + [4, 9], + [-1, -12] + ], + [ + [3588, 5149], + [0, -7], + [-8, -7], + [1, 9], + [7, 5] + ], + [ + [3577, 5151], + [2, -5], + [-4, -19], + [-3, -11], + [-15, -19], + [0, 13], + [7, 10], + [0, 14], + [2, 11], + [8, 8], + [3, -2] + ], + [ + [3573, 5156], + [5, 19], + [0, -10], + [-5, -9] + ], + [ + [3608, 5175], + [11, -6], + [9, 5], + [27, -7], + [-2, -14], + [-1, -20], + [-4, -14], + [-5, -5], + [0, -14], + [-7, -5], + [-3, 7], + [0, -11], + [-9, 1], + [-6, -12], + [-14, 3], + [-4, -6], + [-5, 2], + [-7, 28], + [1, 13], + [6, -5], + [1, 8], + [-7, -1], + [0, 23], + [2, 17], + [4, 10], + [5, 5], + [8, -2] + ], + [ + [3586, 5165], + [-4, 4], + [1, 13], + [7, 3], + [2, -9], + [-6, -11] + ], + [ + [3625, 5187], + [3, -5], + [-2, -7], + [-11, 2], + [10, 10] + ], + [ + [3599, 5183], + [-5, 0], + [-2, 9], + [6, -1], + [1, -8] + ], + [ + [3624, 5200], + [-6, -5], + [-3, -12], + [-14, 0], + [-1, 12], + [8, 1], + [15, 9], + [1, -5] + ], + [ + [3600, 5213], + [1, -14], + [-2, -7], + [0, 23], + [1, -2] + ], + [ + [3609, 5216], + [-6, -13], + [1, 14], + [5, -1] + ], + [ + [3608, 5236], + [0, -10], + [-5, 0], + [5, 10] + ], + [ + [3600, 5305], + [1, -11], + [-5, 4], + [4, 7] + ], + [ + [3431, 5295], + [13, -7], + [2, 14], + [-6, 10], + [5, 17], + [6, -8], + [11, 2], + [0, 4], + [10, 2], + [8, -5], + [3, -7] + ], + [ + [3483, 5317], + [3, -7], + [8, -3], + [7, 3], + [6, 9], + [5, -7], + [6, 5], + [9, -9], + [9, 11], + [8, 31], + [1, 14], + [4, 7], + [15, 44] + ], + [ + [3564, 5415], + [5, 24], + [8, -16], + [1, -21], + [3, 4], + [-1, -29], + [3, -31], + [7, -22], + [1, -18], + [6, -18], + [13, -4], + [4, -8], + [0, -19], + [-7, -4], + [7, -3], + [-11, -17], + [-5, -12], + [-4, -17], + [-5, -11], + [-5, -1], + [-9, -17], + [-4, -19], + [-8, -19], + [0, -14], + [-7, -8], + [-1, -13], + [-6, 4], + [-14, -13], + [13, 2], + [0, -10], + [9, 7], + [7, 10], + [11, 11], + [13, 17], + [-5, -12], + [5, -5], + [0, -14], + [4, -9], + [0, -11], + [7, -14], + [4, 9], + [6, 4], + [5, -7], + [12, 10], + [1, -7], + [-5, -41], + [2, -2], + [8, 40], + [7, 18], + [2, -8], + [8, 21], + [3, -12], + [1, 19], + [4, -2], + [4, 16], + [1, 15], + [5, 0], + [5, 12], + [2, -11], + [4, 10], + [11, -7], + [19, -9], + [0, -10], + [7, -6], + [8, 5], + [1, -7], + [10, -9], + [1, -8], + [6, 9], + [-2, -11], + [1, -13], + [3, 11], + [5, 4], + [10, -14], + [-3, -5], + [6, -1], + [3, -8], + [-5, -16], + [5, 5], + [3, -14], + [-4, 0], + [-5, -36], + [2, -9], + [6, 14], + [1, 23], + [8, 8], + [1, -9], + [-7, -12], + [7, -2], + [2, 14], + [9, 4], + [6, -4], + [-1, 12], + [4, 0], + [18, -13], + [6, -11], + [15, -5], + [3, 6], + [5, -9], + [29, 4], + [3, 2], + [14, -3], + [25, -31], + [3, -1], + [8, -15], + [5, -2], + [11, -27], + [14, -26], + [9, -6], + [4, -12], + [6, -1], + [6, -8], + [16, -1], + [5, 3], + [13, -6], + [4, -13], + [9, -57], + [1, -24], + [5, -21], + [-1, -53], + [-7, -40], + [-7, -25], + [-10, -27], + [-3, 5], + [-2, -16], + [-12, -24], + [-3, -13], + [-10, -10], + [-5, -9], + [-11, -37], + [-15, -52], + [-13, -34], + [-5, 0], + [0, 14], + [-4, 9], + [-4, -16], + [0, -17], + [-4, -7], + [0, -27], + [-2, -5], + [2, -28], + [-3, -20], + [2, -9], + [0, -24], + [2, -28], + [2, -6], + [-4, -25], + [-6, -53], + [1, -31], + [-2, -9], + [-7, -8], + [-7, -30], + [2, -51], + [-3, -13], + [-6, -6], + [-9, -44], + [-13, -31], + [-8, -25], + [4, -27], + [-5, -10], + [-12, -7], + [-13, -20], + [0, -21], + [-17, 1], + [-11, -3], + [0, 18], + [-7, -5], + [2, -13], + [-22, -7], + [10, 7], + [-9, 3], + [-8, -7], + [-2, 7], + [-9, -7], + [1, -17], + [-10, -3], + [-2, -6], + [-10, -7], + [-1, -11], + [-12, 4], + [-8, -7], + [-1, -7], + [-11, -6], + [-11, -13], + [-5, -12], + [-10, -9], + [-10, -15], + [-1, -15], + [-8, -7], + [-6, 4], + [1, -17], + [-4, -17], + [-1, -19], + [-5, -6], + [4, -6], + [-3, -16], + [3, -6], + [2, -32], + [-2, -52], + [-4, -17], + [-17, -23], + [-5, -12], + [-14, -39], + [-8, -37], + [-10, -34], + [-12, -25], + [-22, -27], + [-3, -9], + [0, 17], + [5, -4], + [11, 20], + [5, 3], + [4, 11], + [-1, 12], + [5, 1], + [0, 10], + [9, 9], + [-1, 22], + [4, -6], + [1, 12], + [-12, -4], + [-9, 8], + [3, -7], + [-6, -21], + [-1, -24], + [-6, -10], + [-9, -4], + [-3, -21], + [-4, -3], + [-1, -14], + [5, -10], + [-5, -7], + [-6, -30], + [-7, -26], + [-18, -28] + ], + [ + [3517, 3240], + [-4, 10] + ], + [ + [3513, 3250], + [2, 1], + [1, 23], + [5, 4], + [2, 13], + [5, 6], + [5, -10], + [6, 18], + [-4, 16], + [-12, -19] + ], + [ + [3523, 3302], + [-11, 11], + [-5, 23], + [-15, 14], + [-9, 21], + [-8, 3], + [-4, 8], + [-7, 3], + [-2, 10], + [-8, 11], + [-6, -13], + [-4, 0], + [0, 16], + [-23, 40], + [-7, 0], + [-2, -8], + [-11, -2], + [-2, 6] + ], + [ + [3483, 3710], + [0, 8] + ], + [ + [3483, 3718], + [5, 3], + [0, 26], + [4, 16], + [0, 34] + ], + [ + [3492, 3797], + [-9, 15], + [-10, -10], + [-13, 1], + [-3, 21], + [1, 11], + [-4, 23], + [1, 21], + [-7, 19], + [-9, 1], + [-6, 12], + [-12, -10], + [-31, 8], + [0, 36], + [3, 16], + [-9, 61] + ], + [ + [3067, 4552], + [-11, 2], + [-7, -8], + [-12, 3], + [0, 41], + [1, 29], + [2, 20], + [-10, -14], + [-2, -7], + [-9, -11], + [-25, 0], + [-3, 27], + [-14, 7], + [-11, 0], + [7, 16], + [0, 8], + [-6, 17], + [-4, 2], + [-1, 11], + [-5, 6], + [-2, 15], + [-5, 9], + [2, 9], + [-8, 14], + [1, 11], + [7, 2], + [-3, 13], + [2, 13], + [11, 17], + [5, 3], + [1, 12], + [-3, 14], + [8, 24], + [1, 30], + [14, 14], + [14, 21], + [17, 5], + [10, 6], + [5, 11], + [9, 1], + [3, -6], + [10, -5], + [0, 5] + ], + [ + [3056, 4939], + [6, 58], + [0, 9], + [5, 46], + [0, 10], + [5, 54], + [-4, 13], + [-2, 24], + [-13, 21], + [1, 42], + [12, 4], + [3, 5], + [10, -6], + [-2, 21], + [-4, 4], + [-14, 0], + [0, 37], + [8, 4], + [5, -3], + [34, 0], + [-1, 16], + [7, -15], + [5, 4], + [9, 19], + [4, -5], + [7, -29], + [-1, -21], + [6, 2] + ], + [ + [3142, 5253], + [11, -21], + [10, -7], + [10, 14], + [6, -1], + [-1, -17], + [11, 17], + [1, 10], + [11, 6], + [10, 16], + [0, -8], + [9, 16], + [0, 14], + [19, 16], + [1, 14], + [-20, 4], + [2, 15], + [-6, 20], + [0, 30], + [-13, 22], + [-4, 12], + [2, 5], + [4, -10], + [12, 0], + [4, -14], + [10, 4], + [4, -5], + [4, 7], + [4, -5], + [7, -18], + [7, 5], + [-1, 20], + [6, 1], + [4, 9], + [7, -6], + [18, 12], + [0, 6], + [16, 10], + [10, 22], + [-2, 13], + [-3, 1] + ], + [ + [3312, 5482], + [11, 0], + [3, 4], + [8, -12], + [-3, -33], + [6, 0], + [5, -8], + [-2, -8], + [4, -14], + [0, -10], + [-7, -12], + [1, -13], + [-4, -17], + [-1, -22], + [2, -17], + [5, -5], + [0, -26], + [6, -8], + [8, -19], + [8, -4], + [4, -7], + [8, 5], + [0, 10], + [5, 9], + [9, -5], + [6, 11], + [7, 0], + [3, 11], + [9, 7], + [9, -8], + [9, 4] + ], + [ + [3347, 5935], + [-4, 3], + [0, 13], + [6, -10], + [-2, -6] + ], + [ + [8198, 5465], + [5, -34], + [-7, 5], + [-2, 24] + ], + [ + [8194, 5460], + [4, 5] + ], + [ + [8166, 5448], + [6, -1], + [7, 5], + [7, 12], + [9, 10], + [-2, -10] + ], + [ + [8193, 5464], + [-7, -9], + [2, -17], + [0, -14], + [-7, -10], + [-7, 23], + [-8, 11] + ], + [ + [7545, 6781], + [-2, -8], + [5, -11], + [6, 3], + [3, -10], + [-3, -11], + [3, -13], + [-5, -4], + [-33, -3], + [-10, 8], + [-6, -9], + [-11, -3], + [-12, 9], + [-6, -2], + [-7, 7], + [-3, 12], + [4, 10] + ], + [ + [7468, 6756], + [3, 13], + [13, 29], + [11, 14], + [12, 3], + [0, -5], + [9, -1], + [-4, -10], + [18, -5], + [5, 6], + [10, -8], + [0, -11] + ], + [ + [5701, 4158], + [-1, -8], + [8, -27], + [7, -13], + [6, -21], + [4, -29], + [8, -13], + [14, -17], + [7, -3], + [3, -9], + [0, -15], + [12, -1], + [-1, -34], + [6, -12], + [3, -15], + [18, -5], + [12, -10], + [1, -14], + [7, -7] + ], + [ + [5815, 3905], + [-9, -3], + [-3, -13], + [-8, -7], + [-12, -4], + [-12, -27], + [-5, -6], + [-2, -10], + [-11, -7], + [-4, -13], + [-5, -31], + [-8, -10], + [-3, -10], + [-15, -6], + [0, -10], + [-8, -41], + [-5, -7], + [-10, 1], + [-4, -5], + [-17, 5], + [-10, 6], + [-13, 20], + [-7, 1], + [-7, -5], + [-6, -23], + [0, -14], + [-6, -13], + [-8, -7], + [-6, -18], + [-7, -2], + [-2, -10], + [-15, 0], + [-15, 4], + [0, 21], + [5, 11], + [0, 19], + [-4, 13], + [-1, 14], + [-10, 29], + [-8, 10] + ], + [ + [5554, 3757], + [0, 159], + [28, 0], + [0, 212], + [23, 4], + [21, 9], + [21, 5], + [9, -27], + [15, 26], + [7, 4], + [4, -6], + [7, 13], + [12, 2] + ], + [ + [5634, 5812], + [4, -14], + [8, -14], + [10, -31], + [1, -16], + [-1, -21], + [-5, -6], + [3, -9], + [-2, -17], + [19, -1] + ], + [ + [5671, 5683], + [2, -7], + [-4, -11], + [3, -6], + [16, -5], + [8, -17], + [5, -3], + [1, -11], + [-4, -4], + [6, -14], + [18, -19], + [2, -10], + [8, -10], + [-2, -16], + [8, -21], + [6, -2], + [13, -23], + [-1, -15], + [6, -14] + ], + [ + [5762, 5475], + [-12, 7], + [-4, -8], + [-10, -1], + [-12, 12], + [-6, -3], + [-11, 9], + [-4, -5], + [0, -13], + [-18, -7], + [-5, 11], + [-6, -10], + [-27, -19], + [-12, 12], + [-9, -34], + [-3, -5], + [-23, 9], + [-2, -3], + [-20, 12], + [-7, -2], + [-6, 20], + [-13, 14], + [-3, 7], + [-10, 1], + [-17, -34], + [-1, -7], + [-6, -3], + [2, -12], + [-1, -27], + [1, -13] + ], + [ + [5517, 5383], + [-4, 9], + [-11, -4], + [-16, 7], + [-8, -6], + [-15, -2], + [-4, -7], + [-3, -27], + [1, -7], + [-8, -34] + ], + [ + [5449, 5312], + [-2, 8], + [0, 26], + [-4, 13], + [-5, 3], + [-15, 32], + [-6, 21], + [4, 1], + [-3, 14], + [-10, 19], + [-1, 31], + [-4, 6], + [2, 8], + [1, 27], + [-7, 10], + [10, 13], + [5, 24], + [3, 4], + [6, 30], + [6, 14] + ], + [ + [5429, 5616], + [9, -4], + [7, 8], + [10, 5], + [4, 11], + [2, -12], + [5, -7], + [23, 26], + [7, -2], + [5, 4], + [15, 1], + [15, 36], + [-6, 7], + [0, 8], + [5, 5], + [17, 0], + [10, 7], + [9, -1], + [4, 12], + [8, 5], + [5, 19], + [13, 24], + [5, 4], + [3, 10], + [-1, 14], + [8, 5], + [0, 5], + [14, 9], + [9, -3] + ], + [ + [2957, 7804], + [-12, -5], + [13, 16], + [-1, -11] + ], + [ + [2699, 7829], + [2, -7], + [13, 9], + [3, -9], + [5, 9], + [9, -4], + [2, -11], + [-7, -12], + [-23, 15], + [-15, 6], + [11, 4] + ], + [ + [2665, 7849], + [6, -2], + [-2, -11], + [-4, 13] + ], + [ + [3319, 7889], + [6, -10], + [-2, -13], + [-7, -22], + [5, 3], + [-19, -34], + [10, 5], + [9, 11], + [-10, 0], + [12, 21], + [4, -8], + [11, 0], + [-7, -23], + [-16, -12], + [-6, 3], + [-13, -5], + [-5, 21], + [1, 13], + [6, 7], + [10, 30], + [7, 14], + [4, -1] + ], + [ + [3221, 7879], + [6, -21], + [3, 6], + [12, -8], + [33, 3], + [3, -3], + [-17, -10], + [4, -13], + [-11, -3], + [-2, 12], + [-19, 2], + [-4, 11], + [-11, 0], + [2, 14], + [-9, -1], + [4, 16], + [7, 9], + [-1, -14] + ], + [ + [3503, 7956], + [10, 3], + [-1, -7], + [-9, 4] + ], + [ + [2562, 7993], + [-9, -6], + [0, 8], + [9, -2] + ], + [ + [2924, 7774], + [20, 14], + [8, 11], + [6, 0], + [2, 17], + [7, 17], + [14, 11], + [5, 9], + [17, 17], + [5, -2], + [32, 22], + [14, 22], + [0, 4], + [14, 20], + [0, 5], + [16, 23], + [21, 20], + [44, 28], + [28, 8], + [18, -3], + [10, -5], + [11, -14], + [1, -8], + [-11, 8], + [11, -15], + [-4, -13], + [-11, -4], + [-1, -6], + [-18, -13], + [-16, 11], + [-3, -5], + [-11, 0], + [18, -11], + [9, -15], + [8, 9], + [12, 0], + [3, -6], + [-7, -14], + [-1, -10], + [-11, -13], + [16, 0], + [-3, -15], + [11, -32], + [20, -8], + [-8, -6], + [7, -7], + [10, 0], + [4, -9], + [5, 5], + [24, -6], + [10, 10], + [5, -15], + [7, 3], + [7, -12], + [-7, -5], + [14, -3], + [-1, -4], + [-18, -7], + [0, -3], + [-32, -21], + [-9, 4], + [-4, -9], + [-8, 1], + [1, -9], + [-11, 0], + [1, 10], + [-9, -5], + [-4, -8], + [2, -10], + [-6, -5], + [-8, -19], + [-9, -10], + [-6, 1], + [-9, -11], + [-5, 14], + [-9, 5], + [-1, 14], + [7, 29], + [21, 24], + [22, 18], + [1, -13], + [7, 8], + [20, 9], + [-34, 2], + [-5, -6], + [-4, 6], + [13, 15], + [-3, 9], + [-5, -12], + [-16, -9], + [-17, -16], + [-4, 4], + [-10, -10], + [-12, -1], + [-8, 6] + ], + [ + [3134, 7784], + [-9, 6], + [1, 19] + ], + [ + [3126, 7809], + [-10, 9] + ], + [ + [3116, 7818], + [1, 1], + [-1, 74], + [-14, 17], + [-16, -11], + [-9, 17], + [-19, -37], + [-4, -23], + [-7, -12], + [1, -17], + [-12, -20], + [1, -11], + [-18, -5], + [-6, -16], + [-89, -1] + ], + [ + [1546, 8044], + [6, -11], + [-14, 13], + [8, -2] + ], + [ + [1479, 8054], + [4, -13], + [-7, 0], + [-4, 9], + [7, 4] + ], + [ + [3218, 8058], + [33, -11], + [15, -14], + [11, -6], + [10, -14], + [-16, -6], + [-24, 11], + [-14, 9], + [-2, 9], + [-22, 16], + [9, 6] + ], + [ + [1494, 8104], + [-11, -4], + [6, 9], + [5, -5] + ], + [ + [1448, 8112], + [20, -17], + [22, -5], + [26, -13], + [5, -19], + [9, -12], + [4, -16], + [22, -13], + [10, -22], + [8, -25], + [-6, -6], + [-11, 3], + [-22, 14], + [-14, 12], + [9, 11], + [-18, -4], + [-9, 9], + [4, 11], + [-8, 0], + [-1, 10], + [-14, -3], + [0, 11], + [7, 3], + [-8, 5], + [-1, 10], + [-15, -2], + [-33, 43], + [-2, 7], + [16, 8] + ], + [ + [3447, 8155], + [6, -8], + [7, 7], + [-5, -17], + [-12, 4], + [2, -12], + [7, -5], + [-28, -60], + [-3, -27], + [6, 13], + [13, 21], + [12, -13], + [7, 0], + [-17, -14], + [11, -17], + [15, 9], + [-2, -16], + [12, 1], + [8, 14], + [9, -8], + [5, 3], + [15, -10], + [-4, -13], + [-17, -15], + [10, 3], + [-3, -15], + [12, -7], + [3, 10], + [4, -6], + [7, 9], + [-5, -19], + [-11, -9], + [-7, 0], + [6, -14], + [-6, -9], + [8, -15], + [2, 13], + [6, 14], + [12, 6], + [-9, -18], + [-1, -22], + [8, 8], + [3, 14], + [5, -19], + [-5, -10], + [-2, -19], + [-5, -17], + [-6, 3], + [-10, -3], + [4, 26], + [-2, 5], + [-14, -23], + [-4, 1], + [8, 31], + [1, 14], + [-5, 15], + [-18, -29], + [-10, -9], + [0, -8], + [-8, -11], + [-9, -1], + [-9, 5], + [3, 7], + [11, 3], + [15, 28], + [-11, 3], + [-6, -12], + [-10, 12], + [-28, -4], + [-25, 3], + [-6, 4], + [-18, -6], + [-15, -2], + [-4, 17], + [27, 37], + [-9, 3], + [-14, -6], + [8, 9], + [6, -3], + [9, 33], + [10, -9], + [-2, 9], + [8, 4], + [-11, 4], + [25, 78], + [8, 11], + [8, 28], + [24, 18] + ], + [ + [1448, 8147], + [-7, 0], + [2, 14], + [5, -14] + ], + [ + [1445, 8181], + [-2, -17], + [-4, 14], + [6, 3] + ], + [ + [2798, 8181], + [-3, -7], + [-8, 3], + [11, 4] + ], + [ + [1462, 8192], + [-15, -17], + [2, 14], + [17, 12], + [-4, -9] + ], + [ + [1430, 8212], + [1, -9], + [-8, 2], + [7, 7] + ], + [ + [2738, 8248], + [8, -1], + [10, -15], + [3, -12], + [-10, 1], + [-29, 15], + [6, 10], + [12, 2] + ], + [ + [1339, 8249], + [4, -12], + [-6, -9], + [6, -21], + [17, -18], + [-5, -5], + [-20, 26], + [-16, 32], + [20, 7] + ], + [ + [1427, 8244], + [3, -10], + [-2, -21], + [-14, 7], + [-3, 12], + [2, 20], + [14, -8] + ], + [ + [1419, 8255], + [-7, 1], + [4, 10], + [3, -11] + ], + [ + [1382, 8268], + [9, -8], + [5, -15], + [-7, 0], + [-15, 26], + [8, -3] + ], + [ + [1386, 8270], + [-9, 4], + [2, 6], + [7, -10] + ], + [ + [1395, 8273], + [11, -17], + [-5, -9], + [-21, 36], + [3, 5], + [12, -15] + ], + [ + [1380, 8293], + [-2, -10], + [-7, 7], + [9, 3] + ], + [ + [1305, 8302], + [20, -3], + [5, -14], + [-15, -10], + [13, -2], + [2, 21], + [12, 6], + [-8, -28], + [0, -22], + [-13, -7], + [-9, 10], + [7, 6], + [-11, 3], + [-7, 25], + [4, 15] + ], + [ + [2815, 8428], + [-1, -10], + [-7, -3], + [4, 17], + [4, -4] + ], + [ + [2787, 8429], + [-11, -11], + [1, 8], + [10, 3] + ], + [ + [2801, 8446], + [-3, -6], + [9, -8], + [-12, -27], + [-8, -3], + [2, 12], + [-9, -16], + [-3, 4], + [14, 23], + [3, -5], + [3, 26], + [4, 0] + ], + [ + [3293, 8462], + [1, -19], + [-7, 7], + [6, 12] + ], + [ + [3204, 8666], + [5, -10], + [-11, 7], + [6, 3] + ], + [ + [3109, 8672], + [7, -7], + [-4, -10], + [-10, -6], + [-3, 7], + [5, 16], + [5, 0] + ], + [ + [3200, 8731], + [-2, -16], + [-16, 19], + [18, -3] + ], + [ + [2793, 8775], + [5, -7], + [-8, -30], + [-8, -9], + [-10, 11], + [-2, 14], + [12, 23], + [11, -2] + ], + [ + [3203, 8784], + [8, 0], + [-6, -10], + [-9, 3], + [7, 7] + ], + [ + [3033, 8802], + [15, -11], + [0, -7], + [-13, 1], + [-7, 15], + [5, 2] + ], + [ + [2719, 8809], + [7, -3], + [-2, -12], + [-27, -27], + [-23, -5], + [-6, 18], + [18, 27], + [8, -5], + [9, 6], + [16, 1] + ], + [ + [2822, 8839], + [21, -4], + [4, -9], + [-13, -10], + [-16, 17], + [4, 6] + ], + [ + [3216, 8833], + [-8, 14], + [5, 2], + [3, -16] + ], + [ + [2857, 8849], + [12, -6], + [0, -11], + [-20, 14], + [8, 3] + ], + [ + [3204, 8862], + [4, -12], + [-12, 8], + [8, 4] + ], + [ + [3186, 8910], + [2, -6], + [-13, -6], + [11, 12] + ], + [ + [2625, 8972], + [12, -9], + [-7, -5], + [11, -20], + [9, 16], + [14, -17], + [20, -4], + [4, -10], + [19, -12], + [5, 2], + [16, -14], + [5, -23], + [19, -8], + [-1, 8], + [22, -21], + [-8, -2], + [-19, -16], + [-26, 14], + [-12, -1], + [-1, 17], + [-15, -1], + [2, 13], + [-19, -10], + [2, -14], + [-19, -8], + [-9, -19], + [-25, -10], + [-5, 33], + [-27, -2], + [-14, -5], + [8, 20], + [20, 13], + [-6, 24], + [6, 15], + [0, 28], + [5, 23], + [13, 12], + [1, -7] + ], + [ + [2638, 8984], + [9, -10], + [0, -16], + [-12, 13], + [3, 13] + ], + [ + [2657, 8990], + [18, -11], + [-3, -6], + [15, -10], + [-15, 2], + [-15, 25] + ], + [ + [2936, 9103], + [24, -5], + [1, -12], + [-28, 0], + [-10, 16], + [13, 1] + ], + [ + [2601, 9095], + [-7, -12], + [-8, 5], + [-3, 16], + [9, 13], + [7, -6], + [2, -16] + ], + [ + [2900, 9117], + [16, -9], + [-4, -11], + [3, -24], + [-9, -11], + [-14, -6], + [-31, -1], + [-7, 12], + [0, 22], + [15, 25], + [31, 3] + ], + [ + [2096, 9122], + [-15, 8], + [14, 1], + [1, -9] + ], + [ + [2919, 9131], + [3, -14], + [-16, 10], + [2, 12], + [11, -8] + ], + [ + [2173, 9144], + [-3, -12], + [-12, 5], + [15, 7] + ], + [ + [2218, 9152], + [-13, -10], + [2, 17], + [11, -7] + ], + [ + [2820, 9179], + [-10, -28], + [-16, -3], + [26, 31] + ], + [ + [2860, 9180], + [10, -6], + [-13, -11], + [-6, 16], + [9, 1] + ], + [ + [2315, 9189], + [14, 0], + [-4, -11], + [-10, 11] + ], + [ + [2342, 9191], + [8, -12], + [-14, -3], + [6, 15] + ], + [ + [3114, 9197], + [-2, -10], + [-10, 3], + [12, 7] + ], + [ + [2834, 9196], + [-16, -12], + [-9, 1], + [20, 15], + [5, -4] + ], + [ + [2787, 9204], + [9, -8], + [-21, -3], + [4, -8], + [-24, 10], + [16, 8], + [16, 1] + ], + [ + [2294, 9191], + [5, 5], + [10, -12], + [22, -14], + [6, -20], + [18, -3], + [-17, -6], + [-13, -15], + [-33, 4], + [-9, 7], + [-25, 7], + [-3, 8], + [-11, -6], + [-11, 11], + [33, 17], + [-4, 16], + [12, -9], + [-6, 16], + [10, 11], + [18, -11], + [-2, -6] + ], + [ + [3004, 9275], + [14, -3], + [-20, -12], + [-5, 8], + [11, 7] + ], + [ + [2924, 7774], + [-11, -4], + [-19, -25] + ], + [ + [2894, 7745], + [-6, -7], + [-19, -10], + [-11, -18], + [-17, 9], + [-5, -3], + [-30, -8], + [-17, -15], + [-5, -17], + [13, -6], + [7, 4] + ], + [ + [2804, 7674], + [-1, -9] + ], + [ + [2803, 7665], + [5, -11], + [-36, -7], + [-9, -13], + [-11, 6], + [-12, -1], + [-32, -36], + [-12, -2], + [-5, 4], + [0, 12], + [5, 4], + [13, -1], + [1, 10], + [-6, 4] + ], + [ + [2704, 7634], + [5, 9], + [1, 17] + ], + [ + [2710, 7660], + [8, 4], + [12, 20], + [-1, 38], + [4, 14], + [9, 16], + [0, 12], + [-12, 25], + [11, 0], + [1, -14], + [14, -17], + [18, -14], + [0, 17], + [4, 6], + [6, -5], + [-9, 17], + [2, 14], + [-10, 3], + [-10, 32], + [-12, 0], + [-10, 8], + [-39, 6], + [-3, 0], + [-30, 10] + ], + [ + [2663, 7852], + [0, 10], + [-10, -4] + ], + [ + [2653, 7858], + [-3, 4], + [4, 24], + [-8, 1], + [3, 23], + [-11, 14], + [5, 20], + [-25, 0], + [-8, 9], + [-12, 39], + [-22, -2], + [-24, 14], + [-2, -22], + [-7, -2], + [3, 15], + [-6, -2], + [-5, -26], + [-5, -3], + [3, 16], + [-10, -5], + [-5, -22], + [-7, -6] + ], + [ + [2511, 7947], + [-9, -1], + [-4, 7], + [-20, 0], + [-2, 7], + [-16, -11], + [-8, 4], + [-10, 14], + [-8, -7], + [-3, 12], + [-14, 11], + [-22, -6], + [-3, 7], + [-17, 3], + [-6, 5], + [-4, 31], + [-9, 3], + [0, -22], + [-79, 0], + [-80, 0], + [-55, 0], + [-79, 0], + [-79, 0], + [-49, 0], + [-49, 0], + [-80, 0], + [-61, 0], + [-74, 0], + [-81, 0] + ], + [ + [1590, 8004], + [-8, 0] + ], + [ + [1582, 8004], + [-1, 0] + ], + [ + [1581, 8004], + [-7, 20], + [2, 14], + [-8, -11], + [-12, 8], + [-1, 15], + [-14, 0], + [-6, 8], + [3, 18], + [-3, 5], + [-9, 0], + [-20, 12], + [-13, -2], + [6, 17], + [-14, 1], + [-10, 6], + [-4, -6], + [-14, 11], + [-8, 12], + [9, 23], + [13, 3], + [-9, 3], + [-10, -15], + [-4, 12], + [0, 14], + [19, 25], + [0, 13], + [-12, -16], + [-7, -5], + [-8, 17], + [-4, -12], + [4, 26], + [-10, 9], + [-10, 34], + [10, -5], + [-8, 12], + [5, 21], + [-17, -20], + [-3, -14], + [-21, 32], + [-4, 26], + [-6, -3], + [1, 17], + [7, 4], + [10, 33], + [-5, 0], + [-4, 28], + [2, 8] + ], + [ + [1387, 8402], + [0, 0] + ], + [ + [1387, 8402], + [-1, 12], + [-9, 1], + [-9, 13], + [-10, 3], + [-14, 11], + [-7, 0], + [0, 11], + [-7, 4], + [2, 10], + [-29, 56], + [-20, 40], + [-12, 8], + [-4, 12], + [-21, 22], + [3, 8], + [-13, 13], + [-25, -11], + [-2, -20], + [-27, -20], + [-5, 17], + [-43, 50], + [3, 16], + [-17, -1], + [-9, -8], + [-12, 6], + [-16, 1], + [0, 538] + ], + [ + [1083, 9194], + [29, -2], + [23, -6], + [15, -16], + [50, -21], + [26, 2], + [-3, 18], + [20, 5], + [-1, 8], + [29, 8], + [12, -5], + [-9, -9], + [24, 4], + [10, 14], + [16, 0], + [45, 28], + [22, -4], + [5, 11], + [9, -11], + [-45, -25], + [-27, -6], + [-3, -10], + [-18, -6], + [-4, -15], + [-9, 3], + [-4, -11], + [24, -3], + [-11, 15], + [29, 13], + [15, 12], + [12, -9], + [14, 21], + [35, 9], + [0, -10], + [23, 16], + [-2, 9], + [22, 7], + [-13, 3], + [0, 17], + [23, -16], + [14, -32], + [15, -16], + [20, -9], + [9, 4], + [-8, 12], + [10, 9], + [8, 18], + [10, -1], + [-2, -19], + [12, 0], + [-13, -19], + [24, -2], + [14, 8], + [6, 20], + [36, -3], + [23, -10], + [23, -16], + [31, -5], + [23, -13], + [57, -13], + [-9, 8], + [11, 4], + [38, -17], + [18, -18], + [-3, -9], + [-26, 2], + [-8, -18], + [-9, -3], + [47, -13], + [40, -1], + [3, 4], + [36, 1], + [22, 14], + [13, -16], + [18, 0], + [7, -21], + [6, 15], + [20, -23], + [-7, -21], + [25, -29], + [-12, 23], + [1, 18], + [16, -14], + [-4, 15], + [-9, 8], + [0, 15], + [-12, 12], + [7, 19], + [35, 18], + [21, 5], + [1, 13], + [-24, -7], + [2, -8], + [-22, -7], + [-16, 5], + [7, -11], + [-22, -3], + [-2, 12], + [-10, -3], + [14, 20], + [27, 5], + [31, 14], + [12, -3], + [9, -11], + [4, -20], + [19, -6], + [4, -12], + [20, -1], + [9, 8], + [5, -11], + [27, -14], + [21, -3], + [23, 10], + [26, -1], + [15, -7], + [25, 5], + [22, -12], + [12, 11], + [-16, 12], + [-10, -9], + [-10, 10], + [3, 9], + [-11, 11], + [27, 1], + [-8, 9], + [21, -3], + [5, -12], + [18, 3], + [-11, -15], + [26, 12], + [-16, -41], + [11, -19], + [10, 8], + [11, -20], + [4, 16], + [-15, 26], + [7, 19], + [17, -3], + [18, 14], + [18, 33], + [-10, 8], + [-5, -13], + [-15, 0], + [11, 34], + [18, -2], + [2, 13], + [-22, -5], + [-9, 14], + [-7, -7], + [-25, 10], + [-21, 22], + [1, 14], + [9, 15], + [-12, 9], + [5, 30], + [14, 6], + [8, -7], + [5, 12], + [-13, 4], + [18, 9], + [2, 13], + [18, 3], + [4, -19], + [7, 7], + [32, -24], + [4, -30], + [37, -41], + [-25, 2], + [-4, -6], + [18, -3], + [-25, -18], + [20, -9], + [18, 7], + [10, -9], + [19, -1], + [-23, -12], + [14, -11], + [6, -20], + [-2, -17], + [9, -12], + [11, 12], + [4, 31], + [11, 15], + [9, 1], + [28, -27], + [5, -32], + [-16, 2], + [1, -19], + [8, -19], + [17, -15], + [-1, -14], + [15, 7], + [-3, 7], + [14, -1], + [1, 20], + [17, 23], + [7, 37], + [25, 0], + [-10, 13], + [11, 7], + [-20, 11], + [-2, 10], + [6, 23], + [7, -4], + [20, 5], + [16, -9], + [30, -1], + [15, -23], + [22, -5], + [-6, -12], + [-12, -5], + [20, -5], + [1, -10], + [-20, -13], + [-17, 6], + [-2, -7], + [18, -11], + [-5, -13], + [26, -30], + [-7, -27], + [-13, -1], + [-17, -24], + [-12, -1], + [-10, -11], + [-25, 21], + [16, -30], + [-4, -2], + [-19, 14], + [4, -14], + [-25, 7], + [-5, 17], + [-19, -5], + [-18, 2], + [7, -12], + [19, -9], + [-16, -15], + [-3, -13], + [-23, -20], + [-16, 0], + [-17, 15], + [-31, 20], + [-10, -3], + [-30, 2], + [32, -7], + [14, -11], + [11, -16], + [56, -5], + [2, -11], + [-16, -20], + [-14, -27], + [-18, -15], + [-24, 1], + [-12, 10], + [4, -14], + [-10, -17], + [-21, -3], + [-19, 10], + [-14, 0], + [-37, 16], + [-8, -2], + [11, -10], + [4, 5], + [31, -11], + [-10, -11], + [18, 11], + [6, -8], + [25, -12], + [2, -18], + [-22, -16], + [-19, 5], + [-10, -3], + [15, -16], + [-19, 5], + [-2, -20], + [-8, -12], + [-18, -12], + [11, -4], + [-17, -12], + [-19, -60], + [-8, -31], + [3, -40], + [-3, -17], + [13, -17], + [3, 4], + [29, -1], + [2, -15], + [10, -37], + [9, -24], + [-3, -25], + [12, 2], + [30, 12], + [15, -3], + [15, -12], + [30, -8], + [12, -15], + [13, -10], + [7, -15], + [10, -12], + [11, -1], + [32, -17], + [21, -20], + [12, -3], + [19, 5], + [15, -6], + [12, 1], + [18, -9], + [3, -14], + [-6, -25], + [0, -12], + [8, -17], + [-2, -23], + [3, -13], + [-5, -19], + [20, -28], + [6, -21], + [10, -5], + [15, -30], + [1, -10], + [19, -11], + [1, 16], + [10, 15], + [11, -20], + [6, 11], + [-9, 15], + [13, 19], + [2, 22], + [-6, 4], + [1, 19], + [-5, 0], + [-5, 42], + [-2, 32], + [-7, 2], + [-6, 25], + [-5, 1], + [39, 22], + [16, 14], + [19, 23], + [12, 21], + [4, 16], + [0, 44], + [-8, 34], + [-9, 20], + [-24, 23], + [-13, 16], + [-2, 16], + [22, 21], + [-1, 20], + [14, 6], + [-1, 13], + [-7, 2], + [-7, 35], + [6, 6], + [-16, 2], + [10, 15], + [2, 20], + [6, 5], + [-13, 13], + [-4, 34], + [18, 16], + [21, -4], + [32, -14], + [34, -1], + [14, 12], + [18, -9], + [17, -14], + [-1, -8], + [30, -19], + [-9, -10], + [14, -16], + [23, -5], + [11, 2], + [2, -11], + [12, -1], + [2, 12], + [5, -18], + [-12, -15], + [6, -26], + [2, -26], + [-6, -6], + [3, -9], + [11, -2], + [-8, -8], + [2, -18], + [-19, -7], + [10, -3], + [15, 12], + [13, 1], + [11, -6], + [5, -24], + [7, 10], + [9, -20], + [28, 15], + [6, 21], + [10, -9], + [5, 18], + [7, 3], + [-2, 12], + [8, 8], + [-3, 22], + [8, 2], + [7, 25], + [14, 2], + [0, -12], + [9, -6], + [-1, -17], + [6, 0], + [5, -15], + [12, -13], + [-11, -9], + [13, 3], + [1, -13], + [7, 1], + [4, -11], + [-9, -11], + [16, 0], + [-2, -19], + [15, -12], + [7, -20], + [-14, -11], + [10, 2], + [6, -6], + [-6, -7], + [18, -7], + [-8, -18], + [-7, 0], + [5, -13], + [-9, -4], + [11, -10], + [-12, -2], + [5, -5], + [14, 1], + [-3, -13], + [10, -2], + [1, -7], + [22, -5], + [-4, -5], + [3, -16], + [-4, -16], + [20, 12], + [-2, -10], + [10, -5], + [10, 9], + [6, -22], + [30, -6], + [14, -10], + [-9, -11], + [-15, -1], + [-1, -6], + [-33, -12], + [21, 5], + [3, -3], + [-30, -15], + [-13, -3], + [2, -15], + [-11, -14], + [38, 24], + [6, 15], + [19, 9], + [-5, 7], + [24, -1], + [11, -22], + [-12, -11], + [6, -9], + [9, 15], + [30, -19], + [4, -15], + [-6, -7], + [5, -9], + [-7, -12], + [8, -9], + [4, -17], + [-8, -15], + [-20, -17], + [-10, -13], + [-8, 5], + [-25, -14], + [-8, 3], + [-7, -12], + [-8, -5], + [1, -12], + [-13, -8], + [0, -8], + [-11, -6], + [-3, -10], + [-38, -3], + [-10, -5], + [-6, 7], + [-51, 4], + [-26, -2], + [-37, 0], + [-5, -5], + [-8, 5], + [-19, -25], + [-3, -23], + [-4, -6], + [-19, -3], + [-4, -11], + [-24, -18], + [-10, -28], + [-7, -9], + [-19, 14], + [-5, -2], + [22, -14], + [-5, -20], + [-10, -17], + [-6, -3], + [-6, -17], + [-17, -23], + [-15, -1], + [-21, -24], + [-10, -4], + [-7, -18], + [-12, -11], + [-7, -11], + [-6, -2], + [5, -8], + [-15, -12], + [-6, -8] + ], + [ + [1827, 9404], + [6, -29], + [-17, -11], + [32, 3], + [-4, 6], + [17, 15], + [49, -17], + [-3, -15], + [17, 6], + [18, -8], + [8, 4], + [-26, 29], + [23, -2], + [24, -23], + [11, -1], + [-1, -11], + [13, -38], + [6, -4], + [21, 15], + [-15, 14], + [-9, 45], + [0, 25], + [29, -10], + [8, 7], + [26, -17], + [18, -30], + [4, -24], + [19, -29], + [-7, -28], + [16, -17], + [25, -16], + [8, 1], + [35, -23], + [16, 4], + [4, -24], + [-13, -6], + [-4, 13], + [-5, -14], + [-19, 11], + [-14, -26], + [22, 5], + [-2, -17], + [9, -10], + [-19, -8], + [-24, -5], + [-49, 6], + [4, 12], + [-40, 5], + [-4, 18], + [-10, -16], + [-17, -13], + [-28, -6], + [-12, -9], + [-56, -11], + [-59, -3], + [-16, 19], + [2, 22], + [-18, 5], + [-26, -3], + [-22, 4], + [-18, 9], + [0, 6], + [-18, 12], + [-4, 14], + [39, 12], + [41, 5], + [53, -7], + [9, 7], + [22, -3], + [-18, 14], + [-19, 2], + [-18, 8], + [-58, -6], + [-19, 4], + [-40, -1], + [-19, 23], + [17, 8], + [41, 11], + [13, 11], + [-48, -10], + [-21, 6], + [13, 5], + [-36, 7], + [0, 11], + [16, 17], + [13, 3], + [-13, 15], + [34, 25], + [50, 16], + [27, 11], + [10, -5] + ], + [ + [2094, 9405], + [-16, -22], + [-8, 1], + [-18, 19], + [-26, 12], + [13, 13], + [42, 1], + [16, -10], + [-3, -14] + ], + [ + [2768, 9430], + [25, -7], + [37, 2], + [19, -6], + [32, -26], + [-1, -17], + [-52, 5], + [-28, -9], + [-22, 6], + [-4, 22], + [-21, 5], + [1, 25], + [14, 0] + ], + [ + [2595, 9436], + [41, -3], + [4, -8], + [-30, -21], + [-18, -26], + [10, -20], + [-3, -28], + [9, -14], + [19, -16], + [14, -5], + [-16, -13], + [-13, 0], + [-8, -10], + [21, 10], + [18, -2], + [8, 17], + [-4, 14], + [-16, -1], + [-8, 13], + [2, 21], + [16, 1], + [-18, 12], + [-3, 25], + [14, 2], + [-6, 11], + [26, -5], + [-19, 15], + [63, 24], + [37, -1], + [11, -27], + [14, -5], + [0, -14], + [10, -10], + [-26, -24], + [18, 11], + [-11, -18], + [5, -13], + [12, 5], + [16, 25], + [23, -13], + [11, 14], + [26, 14], + [67, -15], + [7, -14], + [-14, -14], + [33, 4], + [0, -15], + [-32, -17], + [31, 12], + [19, -1], + [-10, -9], + [-4, -17], + [12, 19], + [3, -12], + [15, -7], + [13, 23], + [32, -12], + [8, -11], + [-10, -12], + [-11, 3], + [-13, -14], + [4, -6], + [25, 7], + [4, 9], + [15, 2], + [3, -9], + [-13, -17], + [30, 15], + [-3, -16], + [15, 10], + [31, -11], + [-10, -16], + [-31, -9], + [32, 3], + [-1, -16], + [12, 9], + [6, 14], + [24, -23], + [2, -12], + [-26, 3], + [-15, -11], + [19, -8], + [19, 1], + [16, -11], + [-2, -8], + [-26, 2], + [-15, 8], + [-22, 3], + [22, -8], + [13, -10], + [-8, -4], + [5, -11], + [-43, 2], + [33, -6], + [-9, -8], + [29, -2], + [23, -6], + [-10, -6], + [8, -11], + [37, -12], + [12, 7], + [-2, -12], + [18, -4], + [13, -28], + [-21, -10], + [47, 10], + [-7, -18], + [22, -5], + [5, 9], + [18, -10], + [10, -16], + [-20, -10], + [14, -3], + [-30, -8], + [14, -7], + [-7, -17], + [-15, -3], + [7, -7], + [-17, -1], + [-7, 16], + [3, -21], + [-9, -4], + [9, -9], + [-5, -24], + [-17, 9], + [-9, 14], + [-1, -9], + [-18, 16], + [-1, 14], + [-9, 5], + [19, 17], + [-31, -5], + [-2, 9], + [-22, 20], + [2, 8], + [-13, -6], + [-6, -11], + [-16, 12], + [7, -15], + [16, -12], + [-1, -7], + [-20, -1], + [-9, 18], + [-2, -18], + [12, -16], + [14, 3], + [-2, -10], + [10, -2], + [10, -39], + [1, 14], + [31, -16], + [-3, -16], + [17, 0], + [-10, -10], + [11, -14], + [11, -5], + [-9, -11], + [12, -6], + [0, -25], + [-7, 5], + [-4, 18], + [-2, -14], + [10, -29], + [-17, 5], + [8, -19], + [-7, -5], + [-1, 13], + [-12, 11], + [-12, -3], + [-13, 13], + [-5, -5], + [-20, 21], + [-6, 12], + [-1, -16], + [-27, 24], + [-8, -3], + [23, -33], + [17, -6], + [17, -21], + [5, 0], + [16, -26], + [7, -2], + [-9, -20], + [-30, 16], + [-35, 7], + [-12, 7], + [-25, 24], + [-9, -2], + [-38, 22], + [-5, 14], + [15, 10], + [-16, 12], + [-2, -7], + [-15, 9], + [-13, 14], + [-15, 33], + [-20, -9], + [4, 15], + [-14, -6], + [-5, -14], + [-30, 14], + [-5, -12], + [-24, -12], + [-14, 2], + [-18, 11], + [-4, 27], + [5, 9], + [18, 8], + [-3, 15], + [21, -2], + [25, -11], + [9, -9], + [-6, -7], + [10, -12], + [-2, 16], + [-16, 17], + [23, -3], + [1, 7], + [15, -3], + [11, 12], + [19, -5], + [-7, 19], + [-8, 4], + [-13, 18], + [41, 32], + [5, 19], + [15, 6], + [-4, 22], + [-12, 18], + [-4, 23], + [-23, 5], + [3, 18], + [-19, -6], + [-13, 16], + [2, 15], + [-9, -11], + [-10, 2], + [-32, -14], + [0, 20], + [28, 3], + [1, 9], + [-30, 19], + [-15, 5], + [10, 9], + [-23, 0], + [0, 21], + [-20, 2], + [-10, 12], + [-21, 2], + [21, -15], + [3, -13], + [-29, -7], + [-6, 8], + [-39, 3], + [15, -14], + [-9, -2], + [-14, 13], + [-15, -11], + [-25, 12], + [-15, -3], + [-31, 3], + [-5, 4], + [-39, 2], + [-21, 21], + [1, -11], + [-47, 11], + [-21, 25], + [9, 7], + [22, -4], + [27, 0], + [-15, 18], + [-6, -3], + [-47, 6], + [-5, 7], + [5, 17], + [-9, 11], + [5, 24], + [25, 52], + [36, 27], + [33, 8] + ], + [ + [2227, 9438], + [17, -9], + [57, 6], + [4, -12], + [-12, -6], + [8, -7], + [-19, -7], + [-19, -16], + [35, -3], + [9, -16], + [12, 3], + [5, -18], + [-9, -6], + [3, -27], + [-25, -13], + [-26, 2], + [9, -8], + [-13, -13], + [-19, 3], + [-13, 25], + [-27, 24], + [-21, 3], + [-34, 24], + [-4, 9], + [14, 16], + [11, -4], + [16, -18], + [24, 2], + [10, 8], + [-4, 14], + [-11, 1], + [-28, 20], + [11, 7], + [16, -9], + [3, 8], + [-13, 12], + [33, 5] + ], + [ + [2287, 9448], + [-13, -11], + [-23, -4], + [-12, 7], + [34, 10], + [14, -2] + ], + [ + [2423, 9449], + [18, -8], + [8, 5], + [45, -7], + [-28, -33], + [-12, -21], + [-14, -14], + [-33, 4], + [-13, -4], + [10, -16], + [-18, -22], + [-29, -6], + [-2, 33], + [-11, 9], + [-2, 60], + [11, 2], + [1, 14], + [44, 9], + [25, -5] + ], + [ + [1623, 9476], + [28, -12], + [41, -10], + [46, 4], + [58, -41], + [-3, -6], + [-28, -9], + [-76, -37], + [-3, -15], + [-14, -8], + [-13, 1], + [-3, -32], + [-7, -11], + [-22, -7], + [-9, 5], + [-11, -12], + [-27, -10], + [-26, 36], + [-34, 14], + [-14, 0], + [0, 10], + [14, 22], + [9, 4], + [-4, 18], + [17, 2], + [-12, 9], + [14, 21], + [16, 15], + [-10, 9], + [-14, 28], + [87, 12] + ], + [ + [2118, 9518], + [-3, -12], + [-30, 4], + [15, 17], + [18, -9] + ], + [ + [2378, 9537], + [25, -20], + [2, -24], + [-5, -11], + [-41, 1], + [-43, 18], + [23, 30], + [25, 8], + [14, -2] + ], + [ + [2325, 9539], + [-16, -17], + [-5, 9], + [21, 8] + ], + [ + [2164, 9558], + [-14, -12], + [-20, -1], + [7, 9], + [27, 4] + ], + [ + [2380, 9546], + [-17, 10], + [11, 3], + [6, -13] + ], + [ + [2157, 9563], + [-38, -10], + [11, 8], + [27, 2] + ], + [ + [1732, 9567], + [5, -3], + [-22, -28], + [-10, -5], + [-22, 5], + [20, 18], + [29, 13] + ], + [ + [2805, 9567], + [0, -15], + [-16, -3], + [16, 18] + ], + [ + [2149, 9575], + [-6, -11], + [-43, 0], + [2, 8], + [47, 3] + ], + [ + [2113, 9595], + [25, -12], + [-38, -5], + [-7, 16], + [20, 1] + ], + [ + [2266, 9598], + [21, -11], + [7, -58], + [-18, 1], + [14, -20], + [-11, -7], + [-47, -3], + [-20, 3], + [-11, 19], + [33, 20], + [-52, -5], + [-33, -7], + [2, 14], + [20, 10], + [-6, 28], + [18, 3], + [35, -31], + [7, 21], + [-30, 12], + [15, 9], + [23, 0], + [13, -10], + [20, 12] + ], + [ + [2213, 9601], + [-38, -8], + [20, 9], + [18, -1] + ], + [ + [2508, 9589], + [-10, -2], + [-15, 15], + [17, 6], + [8, -19] + ], + [ + [1981, 9607], + [-3, -11], + [20, -20], + [-11, -11], + [22, -7], + [-10, -10], + [27, 5], + [12, 10], + [31, -10], + [1, -18], + [-15, -30], + [-28, -8], + [-21, 7], + [-19, -7], + [-5, 8], + [-25, -11], + [-22, -4], + [-24, -12], + [-34, -10], + [-29, 0], + [-27, 17], + [52, 17], + [27, 0], + [19, 13], + [-36, -6], + [-3, 5], + [-44, -9], + [-5, 24], + [-10, -23], + [-35, -6], + [-55, 16], + [12, 13], + [30, 0], + [31, 14], + [-30, -8], + [-32, 0], + [10, 12], + [57, 5], + [-39, 0], + [-12, 12], + [23, 10], + [10, 12], + [36, 1], + [7, -17], + [28, 5], + [33, -21], + [14, -22], + [62, -1], + [6, 7], + [-32, 17], + [18, 11], + [-30, 11], + [18, 11], + [15, 19], + [15, 0] + ], + [ + [1840, 9610], + [3, -10], + [-34, 3], + [31, 7] + ], + [ + [2354, 9618], + [44, -6], + [16, -16], + [46, 3], + [26, -13], + [-26, 0], + [59, -9], + [-2, -7], + [-52, -1], + [30, -6], + [28, -18], + [2, -16], + [14, 11], + [11, -8], + [26, 6], + [13, -9], + [59, 10], + [21, 10], + [23, -5], + [16, 6], + [39, -3], + [40, -18], + [6, -11], + [-25, -15], + [16, 1], + [10, -9], + [-23, -7], + [-1, -11], + [-29, 0], + [-12, -6], + [-33, 5], + [-7, 16], + [-11, -16], + [-84, -5], + [-53, 2], + [2, 20], + [-21, -15], + [-21, -3], + [-30, 10], + [-10, -4], + [-19, 9], + [1, 10], + [-13, 14], + [11, 38], + [-14, 8], + [-14, 21], + [-17, -6], + [-37, -3], + [6, 7], + [-27, 3], + [-11, 14], + [-18, 4], + [15, 6], + [-15, 7], + [13, 6], + [32, -1] + ], + [ + [1774, 9644], + [20, -9], + [-25, -7], + [-2, -15], + [13, -14], + [-30, -8], + [-9, -17], + [-20, 9], + [5, 24], + [-19, -6], + [-1, -22], + [-34, -26], + [-19, -3], + [-7, 19], + [-15, -12], + [-46, 8], + [9, 15], + [31, 5], + [9, 14], + [22, 7], + [15, 17], + [27, 15], + [26, 1], + [18, -6], + [32, 11] + ], + [ + [2491, 9653], + [17, -10], + [-11, -14], + [-30, 11], + [0, 13], + [24, 0] + ], + [ + [2083, 9641], + [18, -11], + [-11, -7], + [-23, 12], + [-14, 25], + [13, 0], + [17, -19] + ], + [ + [2350, 9662], + [51, 0], + [13, -7], + [-11, -10], + [-70, 0], + [-6, 13], + [23, 4] + ], + [ + [2196, 9660], + [-42, -1], + [0, 9], + [21, 1], + [21, -9] + ], + [ + [1824, 9675], + [20, -11], + [-15, -6], + [-27, 14], + [22, 3] + ], + [ + [1955, 9679], + [-35, -12], + [21, -5], + [-3, -16], + [-52, -10], + [-31, 11], + [3, 23], + [51, 10], + [46, -1] + ], + [ + [1933, 9718], + [31, -15], + [-4, -11], + [-50, 5], + [-52, -7], + [-5, 8], + [40, 8], + [40, 12] + ], + [ + [2308, 9715], + [18, -10], + [40, -9], + [-15, -7], + [9, -16], + [-51, -11], + [-22, 18], + [22, 2], + [-33, 10], + [-10, 12], + [7, 18], + [35, -7] + ], + [ + [2120, 9752], + [22, -6], + [10, -21], + [25, 12], + [58, -29], + [-8, -16], + [22, -13], + [0, -11], + [-25, -6], + [-19, 5], + [-12, 19], + [-45, 10], + [-50, -6], + [-10, 18], + [38, -3], + [1, 15], + [-18, 11], + [-27, -9], + [10, 11], + [-26, 2], + [4, 16], + [50, 1] + ], + [ + [2237, 9796], + [21, -8], + [-5, -17], + [-36, 22], + [20, 3] + ], + [ + [2423, 9866], + [56, -44], + [40, -1], + [1, -15], + [22, 9], + [22, -2], + [19, -26], + [-9, -26], + [20, 9], + [23, -2], + [24, -19], + [-46, -14], + [-69, -50], + [-26, 25], + [15, -26], + [-24, 10], + [0, -11], + [-49, 4], + [-22, 17], + [34, 3], + [-45, 2], + [-28, 21], + [25, 12], + [79, 3], + [-58, 1], + [0, 12], + [-36, -11], + [-3, 7], + [-33, -6], + [-14, 15], + [27, 4], + [-31, 3], + [-21, 14], + [-4, 14], + [53, -6], + [21, 9], + [-36, -4], + [-32, 9], + [14, 17], + [41, 2], + [7, 8], + [-33, 3], + [17, 15], + [39, 0], + [7, 9], + [-28, 8], + [41, -2] + ], + [ + [3064, 9969], + [92, -13], + [-63, -13], + [33, 0], + [64, 14], + [63, -22], + [36, -2], + [8, -17], + [-85, -27], + [-75, -6], + [11, -7], + [-78, -18], + [137, 21], + [-4, -9], + [-119, -45], + [-9, -11], + [-28, -4], + [-23, -32], + [-31, -8], + [-32, 7], + [7, -13], + [-52, -10], + [-85, -2], + [20, -4], + [80, -3], + [-1, -11], + [-35, 3], + [-9, 7], + [-57, -2], + [56, -5], + [-45, -3], + [55, -3], + [-14, -6], + [38, -1], + [8, -15], + [-22, -5], + [-30, 2], + [38, -10], + [-14, -14], + [-35, -13], + [-43, 0], + [19, -17], + [-14, -13], + [-47, -6], + [-38, 9], + [-17, 14], + [5, -14], + [18, -8], + [57, -7], + [-10, -14], + [19, -6], + [18, 11], + [7, -22], + [-21, -10], + [-5, 7], + [-22, -15], + [-42, -11], + [8, 17], + [-36, 5], + [-6, -7], + [-40, 2], + [-13, 10], + [-6, -17], + [-23, -1], + [-61, 10], + [-4, -7], + [-37, 4], + [-15, 10], + [-1, 17], + [33, 15], + [23, -1], + [15, 8], + [-21, 5], + [-15, 25], + [29, 7], + [27, -6], + [22, -23], + [54, -3], + [27, 35], + [-39, -27], + [-38, 10], + [15, 39], + [-21, -13], + [-21, 5], + [-35, -4], + [1, 19], + [24, 20], + [44, 7], + [35, -5], + [56, 1], + [-53, 4], + [-30, 6], + [11, 9], + [-23, 27], + [-37, 6], + [0, 32], + [75, -4], + [67, -35], + [-7, 16], + [-44, 23], + [80, 9], + [54, 8], + [-44, 0], + [94, 17], + [-62, -3], + [-2, 9], + [57, 26], + [-37, -9], + [-40, -28], + [-44, -11], + [-53, -5], + [27, 11], + [-48, 2], + [1, -13], + [-55, -1], + [-26, 5], + [26, 19], + [85, 11], + [-93, -8], + [-33, -21], + [-58, 14], + [99, 12], + [30, 12], + [-43, -8], + [-98, -8], + [-15, 8], + [12, 11], + [45, 14], + [-57, -12], + [12, 13], + [-22, 4], + [-21, -8], + [-14, 7], + [27, 11], + [83, 15], + [87, -6], + [-56, 12], + [43, 5], + [-12, 10], + [30, 1], + [59, -23], + [-11, 12], + [82, -19], + [-75, 24], + [18, 17], + [41, -8], + [-28, 15], + [47, -2], + [16, 12], + [41, -3], + [44, -11], + [-31, 15], + [35, 4], + [54, -3], + [10, -8], + [24, 12], + [91, 2] + ], + [ + [5255, 7927], + [0, 0] + ], + [ + [5255, 7927], + [0, 0] + ], + [ + [5255, 7927], + [10, -8] + ], + [ + [5264, 7905], + [2, -12] + ], + [ + [5290, 7882], + [-2, -13], + [-10, -7], + [4, -15], + [-6, 6], + [-12, -4], + [-2, 10], + [-5, 0], + [-1, -14], + [-5, -6], + [-1, -18], + [-7, 10], + [2, 5], + [-11, 9], + [0, 13], + [-10, -11], + [1, -8], + [-9, -12], + [-8, 4], + [-13, -4] + ], + [ + [5195, 7827], + [-7, 15], + [0, 14] + ], + [ + [5188, 7856], + [-5, 6], + [-8, -4], + [-3, -9] + ], + [ + [5172, 7849], + [-4, 7], + [2, 10], + [8, 9], + [0, 11], + [7, 4], + [12, 28], + [8, -5], + [5, 10] + ], + [ + [5210, 7923], + [14, -1], + [9, 5], + [4, 9], + [9, -9], + [9, 0] + ], + [ + [3101, 2016], + [-9, -10], + [13, -7], + [6, -18], + [-2, -7], + [-8, 14], + [-15, -2], + [2, 19], + [-18, -5], + [-1, -4], + [-14, 10], + [3, 5], + [39, 9], + [4, -4] + ], + [ + [3116, 2021], + [14, -1], + [7, -9], + [-5, -12], + [-7, 7], + [-9, -6], + [-8, 1], + [-2, 15], + [10, 5] + ], + [ + [3041, 2018], + [7, -9], + [-19, 2], + [-1, 8], + [13, -1] + ], + [ + [3069, 2021], + [8, -5], + [-19, -3], + [-1, 8], + [12, 0] + ], + [ + [3013, 2074], + [7, -1], + [8, -15], + [-5, -7], + [-8, 10], + [-4, -3], + [-2, 16], + [4, 0] + ], + [ + [3003, 2080], + [6, -2], + [-5, -24], + [-11, 16], + [0, 7], + [10, 3] + ], + [ + [3044, 2081], + [2, -8], + [-9, 4], + [3, -17], + [-9, 10], + [-1, 10], + [8, 1], + [-2, 10], + [6, 7], + [2, -17] + ], + [ + [2972, 2103], + [2, 3], + [22, -21], + [-6, -2], + [-14, -18], + [4, 15], + [-9, 1], + [-7, -7], + [1, 12], + [-8, 1], + [3, 17], + [12, -1] + ], + [ + [2925, 2147], + [15, -16], + [8, 0], + [21, -22], + [-10, 3], + [-11, 14], + [-13, -1], + [-10, 22] + ], + [ + [3093, 2028], + [0, -1] + ], + [ + [3093, 2021], + [-12, -3], + [-17, 9], + [-13, -4], + [-23, 10], + [-10, 10], + [-17, -8], + [-1, 12], + [8, -7], + [10, 12], + [7, -9], + [6, 12], + [-2, 12], + [20, -15], + [7, 5], + [13, -4], + [10, -11], + [3, 8], + [-28, 18], + [-4, 19], + [24, 15], + [-1, 8], + [-25, -6], + [-6, 8], + [1, 17], + [9, 1], + [0, 8], + [12, 7], + [2, 13], + [6, 4], + [5, -11], + [16, 0] + ], + [ + [2952, 2165], + [-2, -17], + [-9, 0], + [-2, 7], + [13, 10] + ], + [ + [2921, 2176], + [8, -2], + [-6, -7], + [-2, 9] + ], + [ + [2938, 2182], + [8, -11], + [-5, -6], + [-3, 17] + ], + [ + [2920, 2209], + [3, -4], + [-3, -19], + [-5, 7], + [5, 16] + ], + [ + [2943, 2211], + [3, -10], + [-9, 5], + [6, 5] + ], + [ + [2925, 2234], + [1, -8], + [-9, 1], + [8, 7] + ], + [ + [2931, 2257], + [2, -13], + [-14, -1], + [-1, 9], + [9, -2], + [4, 7] + ], + [ + [2924, 2263], + [1, -11], + [-8, 7], + [7, 4] + ], + [ + [2906, 2275], + [8, 0], + [-10, -15], + [2, 15] + ], + [ + [2931, 2276], + [3, 1], + [5, -22], + [-5, 0], + [-6, 13], + [3, 8] + ], + [ + [2908, 2302], + [14, -5], + [0, -6], + [-18, -9], + [1, 12], + [7, -5], + [-4, 13] + ], + [ + [2903, 2329], + [8, -14], + [-12, 3], + [4, 11] + ], + [ + [2914, 2359], + [5, -2], + [0, -12], + [-9, 10], + [4, 4] + ], + [ + [2906, 2359], + [2, -6], + [-9, -5], + [7, 11] + ], + [ + [2925, 2377], + [5, 0], + [2, -27], + [-3, -27], + [3, -13], + [-9, -10], + [-4, 6], + [1, 25], + [-4, -21], + [-7, 11], + [-2, 25], + [13, -3], + [2, 12], + [-7, 18], + [10, 4] + ], + [ + [2906, 2392], + [1, -9], + [-7, -5], + [-2, 13], + [8, 1] + ], + [ + [2924, 2406], + [4, -8], + [2, -18], + [-14, 4], + [-1, 6], + [9, 16] + ], + [ + [2913, 2413], + [9, -4], + [-1, -11], + [-7, -2], + [-5, 19], + [4, -2] + ], + [ + [2907, 2415], + [7, -32], + [-6, 0], + [0, 16], + [-5, -5], + [-3, 20], + [7, 1] + ], + [ + [2921, 2430], + [3, -17], + [-11, 6], + [-1, 6], + [9, 5] + ], + [ + [2945, 2427], + [4, -6], + [-19, 2], + [7, 7], + [8, -3] + ], + [ + [2914, 2436], + [-3, -8], + [-5, 6], + [8, 2] + ], + [ + [2924, 2545], + [-1, -11], + [-10, 7], + [11, 4] + ], + [ + [2936, 2556], + [-5, -9], + [0, 15], + [5, -6] + ], + [ + [2955, 2556], + [-6, -2], + [3, 11], + [3, -9] + ], + [ + [2948, 2591], + [3, -16], + [-7, 2], + [-6, 12], + [10, 2] + ], + [ + [2946, 2594], + [-9, -4], + [3, 9], + [6, -5] + ], + [ + [2946, 2613], + [2, -4], + [-11, -6], + [-4, 10], + [13, 0] + ], + [ + [2974, 2623], + [6, -4], + [-12, -23], + [-4, -1], + [-5, 16], + [7, 2], + [-1, 11], + [9, -1] + ], + [ + [2948, 2662], + [3, -7], + [-11, 0], + [8, 7] + ], + [ + [2945, 2775], + [11, 1], + [5, -30], + [-8, -2], + [-4, -15], + [9, -10], + [-6, -5], + [6, -13], + [-7, -2], + [2, -14], + [-17, 3], + [-3, 4], + [7, 21], + [-1, 36], + [4, 8], + [2, 18] + ], + [ + [3098, 2168], + [-21, 9], + [-7, -4], + [-3, -12], + [-8, -1], + [-27, -20], + [-3, -19], + [-1, -36], + [-7, -5], + [-24, 11], + [-10, 15], + [5, 11], + [15, 1], + [10, 5], + [6, 18], + [-5, 1], + [-22, -19], + [-5, 6], + [-7, -20], + [1, -10], + [-20, 22], + [9, 0], + [-1, 20], + [14, 1], + [13, 9], + [14, 0], + [-2, 5], + [-21, 3], + [-19, -19], + [1, -11], + [-6, -4], + [-8, 6], + [6, 5], + [-9, 6], + [9, 1], + [2, 11], + [-11, -5], + [0, 29], + [6, -2], + [15, 16], + [9, -1], + [0, 13], + [-7, -6], + [-15, 13], + [10, -15], + [-6, -4], + [-4, -13], + [-8, 7], + [0, 17], + [-9, 7], + [-1, 13], + [6, 2], + [1, 13], + [-6, -6], + [-7, 4], + [-1, 17], + [11, -2], + [-1, 9], + [-6, -4], + [-5, 21], + [-13, 14], + [9, 8], + [1, 26], + [3, 6], + [-5, 9], + [0, 44], + [10, 11], + [-11, 13], + [-3, 13], + [21, -4], + [6, -13], + [5, 5], + [-10, 27], + [-1, -6], + [-21, 1], + [-2, 12], + [9, -2], + [-7, 11], + [6, 12], + [5, 0], + [6, 11], + [-6, 2], + [-3, 12], + [-11, 0], + [-1, -5], + [-11, 14], + [4, 11], + [-13, -16], + [2, -11], + [-6, -3], + [-4, 19], + [13, 13], + [3, 10], + [12, 11], + [0, 11], + [14, 3], + [6, -14], + [-1, -8], + [7, -4], + [-7, -18], + [4, -3], + [5, 16], + [4, 49], + [8, 10], + [-3, 20], + [4, -1], + [14, 13], + [1, 15], + [-14, 13], + [4, 39], + [-1, 17], + [9, 12], + [-3, 14], + [0, 18], + [5, 2], + [-3, 15], + [5, 3], + [4, -15], + [0, 27], + [-8, -3], + [-4, 6], + [8, 12], + [-10, 13], + [-3, -13], + [-12, -6], + [-7, 4], + [2, 7], + [-5, 11], + [-2, 27], + [5, 20], + [1, 37], + [9, 7], + [4, 19], + [1, 19], + [-9, 38], + [2, 30], + [-6, 26], + [1, 22], + [9, -3], + [5, 16], + [0, 18], + [4, -4], + [5, 42], + [6, 9], + [-1, 15], + [6, 18], + [5, 6], + [1, 15], + [4, 12], + [1, 31], + [6, 21], + [4, 4], + [1, 12], + [-4, 23], + [6, 5], + [4, 37], + [-4, 9], + [1, 25], + [-5, 52], + [0, 24], + [2, 12], + [7, 5], + [2, 44], + [-5, 10], + [-1, 19], + [6, 11], + [4, 20], + [0, 18], + [3, 22], + [4, 2], + [-1, 30], + [4, 5], + [2, 15], + [2, 41], + [-2, 11], + [2, 19], + [6, 8], + [-1, 24], + [-2, 5], + [1, 62], + [3, 17], + [-6, 0], + [1, 25], + [6, 1], + [4, 33], + [0, 23], + [2, 25], + [2, 3], + [0, 24], + [-3, 10], + [0, 37], + [2, 6], + [-1, 31], + [-5, 51], + [0, 21], + [-2, 8] + ], + [ + [3044, 4127], + [12, 4], + [4, 9], + [0, 26], + [9, 9] + ], + [ + [8073, 6343], + [8, -9], + [1, -20], + [-9, -13], + [-7, -43], + [-4, 0], + [-5, -15], + [-9, -1], + [-2, -11], + [-14, 6], + [-14, 12], + [-1, 42], + [10, 19], + [8, 9], + [-1, 10], + [7, -3], + [5, 9], + [8, -6], + [10, 10], + [8, -9], + [1, 13] + ], + [ + [8066, 6398], + [4, -5], + [-8, -2], + [4, 7] + ], + [ + [8393, 6916], + [2, -7], + [-8, 4], + [6, 3] + ], + [ + [8386, 6994], + [-10, 4], + [-11, 15], + [6, 2], + [9, -11], + [8, -5], + [-2, -5] + ], + [ + [8689, 7778], + [-2, 10], + [-10, 6], + [-11, -7] + ], + [ + [8666, 7787], + [-4, 7], + [-12, -22], + [-11, -4], + [0, -9], + [6, -40], + [-2, -28], + [3, -6], + [-5, -31], + [-19, -10], + [3, -13] + ], + [ + [8625, 7631], + [-8, 13], + [0, 9], + [-9, 7], + [-4, -13], + [-1, -19], + [-14, -5], + [-1, -10], + [-7, -10], + [-26, -3], + [8, -20], + [-3, -13], + [-30, 7], + [-2, 12], + [-9, 1], + [-12, -34], + [-9, -16], + [-6, 0], + [-8, -10], + [-16, -14], + [-14, -21] + ], + [ + [8454, 7492], + [-5, -13], + [-6, -5], + [-9, 3], + [-11, -3], + [-28, -28], + [-3, -9], + [-8, -11], + [-3, 5], + [-7, -13], + [-10, -4], + [0, 12], + [15, 8], + [-10, 29], + [6, 0], + [-2, 11], + [12, 12], + [11, 27], + [-3, 13], + [-22, 14], + [-12, -7], + [0, -7], + [-10, -13], + [-4, -16], + [-14, -7], + [-17, -19], + [-1, -19], + [-10, -15], + [-10, 0], + [-7, -8], + [-11, 11], + [-6, -6], + [-5, -28], + [5, -14], + [10, -13], + [14, -4], + [7, 5], + [12, -25], + [-7, -1], + [-2, -21], + [10, -12], + [13, 1], + [2, 11], + [10, 10], + [3, 9], + [12, 10], + [11, -8], + [0, -6], + [9, -7], + [34, -4], + [-7, -15], + [3, -13], + [-9, -5], + [-5, 9], + [-28, -23], + [-6, 3], + [4, -11], + [-7, -1], + [0, -17], + [-11, -5], + [2, 8], + [-8, 2], + [2, -13], + [-7, -22], + [-8, -4], + [-7, -26], + [-5, -3], + [1, -16], + [12, -14], + [17, -12], + [6, -38], + [11, -36], + [-1, -21], + [15, -16], + [0, -13], + [11, -10], + [4, -16], + [-8, 1], + [-9, 9], + [-10, -3], + [-4, 11], + [-11, 2], + [-5, -7], + [-7, 4], + [-3, 16], + [-6, 2], + [3, -11], + [11, -13], + [16, 4], + [2, -9], + [7, -5], + [8, -15], + [9, -9], + [6, -12], + [2, -13], + [-9, -2], + [-12, -10], + [-8, -11], + [-5, -15], + [6, -2], + [6, 9], + [6, -1], + [8, -19], + [13, -6], + [-13, -19], + [7, 5], + [0, -22], + [-4, -6], + [-5, 3], + [1, -27], + [-5, -3], + [5, -23], + [-5, 2], + [-4, -10], + [-3, 12], + [-9, -28], + [-8, -17], + [-3, -23], + [-6, -4], + [-1, -11], + [-9, -7], + [-1, -8], + [-5, 9], + [-4, -6], + [5, -6], + [2, -11], + [-5, 4], + [2, -10], + [-5, -15], + [5, -3], + [-3, -18], + [-4, 0], + [6, -17], + [-11, 10], + [-4, -8], + [5, -14], + [-9, 1], + [-3, -9], + [3, -10], + [-10, 0], + [4, -9], + [-3, -8], + [-6, 3], + [-5, -5], + [-2, 8], + [-5, -13], + [3, -11], + [-5, -4], + [-1, -10], + [-6, -1], + [-7, -13], + [-4, 1], + [-5, -14], + [-6, 5], + [0, -9], + [-10, -21], + [-1, -10], + [-6, 1], + [-13, -12], + [-7, 6], + [0, -11], + [-14, 8], + [-5, -13], + [-6, 11], + [-5, -7], + [4, -8], + [-4, -3], + [-2, 9], + [-5, -3] + ], + [ + [8172, 6482], + [-4, -2] + ], + [ + [8168, 6480], + [-7, -3], + [-2, 17], + [-3, -1], + [-2, 15], + [-6, -8], + [6, -17], + [0, -15], + [-2, -9], + [-10, 20], + [7, -19], + [-10, -14], + [-5, 1], + [-13, -12], + [-10, 3], + [-11, -15], + [-25, -8], + [-3, -10], + [-6, -1], + [-7, -13], + [5, -7], + [-1, -13], + [7, -9], + [-4, -10], + [-13, -2], + [-1, 10], + [-7, 25], + [3, 28], + [5, 0], + [0, 8], + [-8, 1], + [-2, 14], + [-1, -16], + [-12, 1], + [0, 6], + [-9, 2], + [-9, 13], + [2, -16], + [-6, 7], + [0, -8], + [-9, -5] + ], + [ + [7999, 6420], + [-7, 10], + [-9, -4], + [-12, 14], + [1, 6], + [-10, 2], + [0, 14], + [-4, 7], + [0, 14], + [5, 0], + [0, 16], + [-14, 0], + [-18, 12], + [-7, 14], + [-14, -13], + [1, -9], + [-14, -14], + [-3, 8], + [-6, -8], + [0, -9], + [-11, 16], + [-4, -12], + [-5, 11], + [-7, -21], + [-5, 10], + [-13, 9], + [-4, -20], + [-3, 0] + ], + [ + [7836, 6473], + [-13, 3], + [-4, -12], + [1, -10], + [5, -15], + [0, -39], + [-5, 6], + [-9, -2], + [-2, 20] + ], + [ + [7809, 6424], + [-2, 12], + [-7, -6], + [-3, -8], + [-8, -4], + [-2, 5], + [-5, -6], + [-2, 13], + [-4, 3], + [-1, 19], + [-14, 5], + [-6, -1], + [0, 16], + [4, 5], + [-1, 14], + [6, 11], + [-5, 13], + [-8, -2], + [-7, 5], + [2, 6], + [-6, 40], + [6, 9], + [-9, -3], + [-13, 1], + [-14, -14], + [-2, 5], + [5, 10], + [-1, 18], + [-4, 0], + [0, 17], + [7, 8], + [-2, 12], + [4, 11], + [2, -3], + [6, 10], + [0, 13], + [6, -3], + [3, 13], + [7, 6], + [-4, 6], + [5, 33], + [0, 29], + [-2, 31], + [-7, 4], + [-1, -9], + [-7, 20], + [0, 16], + [-8, 13], + [-9, 9], + [-5, -18] + ], + [ + [7703, 6808], + [-7, 9], + [-4, -3], + [-7, 15], + [-7, 1], + [5, 6], + [-4, 17], + [-9, 21], + [-12, -9], + [-6, 0], + [-6, -9], + [-9, 4], + [-9, 11], + [-8, -6], + [-3, -16], + [-9, -6], + [-6, -8], + [-7, -1], + [-9, -16], + [-12, -14], + [0, -11], + [-9, -9], + [-12, -5], + [-8, 2] + ], + [ + [7468, 6756], + [-4, 12], + [3, 18], + [-1, 10], + [-6, 5], + [-13, -14] + ], + [ + [7447, 6787], + [-8, 2], + [-4, -5], + [-15, 1], + [-3, 7], + [-14, 9], + [-4, -11], + [-9, 10], + [-3, -11], + [-2, 13], + [-6, 7], + [-16, 3], + [2, 17], + [-4, 3], + [-7, -6], + [-9, 11], + [-7, 12], + [-2, 16], + [-5, 5], + [-13, -7], + [-9, 26], + [-9, 2], + [-9, 15], + [-10, 8], + [-1, 15], + [-14, 5], + [-11, -23], + [-7, 11] + ], + [ + [7248, 6922], + [-11, 15], + [-10, 6], + [1, 9], + [-14, 15], + [-4, -3], + [-9, 13], + [-5, 16], + [-9, -8], + [-2, 12], + [4, 5], + [-4, 7], + [2, 15], + [-9, 14], + [-2, 20], + [9, 4], + [6, -16], + [10, 8], + [7, 13], + [-5, 14], + [0, 12], + [-7, 3], + [-8, 16], + [-3, 33], + [8, 8], + [0, 7], + [-10, 12], + [-9, 5], + [-8, 41], + [1, 9], + [-7, 0] + ], + [ + [7160, 7227], + [-18, 1], + [-11, 8] + ], + [ + [7131, 7236], + [-5, 6], + [0, 8], + [-13, -4], + [-4, 10], + [1, 27], + [-7, 15], + [-9, 1], + [0, 7], + [-8, 7], + [-7, -2], + [-9, 4] + ], + [ + [7080, 7327], + [7, 10], + [-8, 13], + [3, 7], + [-5, 17], + [-1, 26], + [-12, 9], + [-6, 0], + [-2, -9], + [-6, 3], + [-4, 16], + [4, 9], + [-6, 12], + [1, 14] + ], + [ + [7045, 7454], + [8, 8], + [-3, 9], + [4, 18], + [11, 3], + [10, 14], + [3, 10], + [11, -4], + [8, 11], + [4, -20], + [18, 4], + [9, 13], + [0, 10], + [5, 15], + [18, -2], + [11, 5], + [5, -2], + [8, 19], + [26, 23], + [27, 15], + [-1, 8] + ], + [ + [7227, 7611], + [1, 3], + [-3, 23], + [3, 11], + [9, 6], + [-7, 5], + [13, 6], + [-4, 13], + [2, 7], + [-11, 37], + [0, 32], + [5, 5], + [-18, 8], + [7, 9], + [21, 5], + [23, 13], + [3, -9], + [13, 3], + [7, -7], + [4, 17], + [-11, 7], + [7, 21], + [9, 47], + [5, 14], + [0, 14], + [24, -13], + [21, 1], + [4, -10], + [13, 13], + [7, 0], + [5, 9], + [-4, 41], + [4, 25], + [25, 10], + [4, 10], + [0, 17], + [4, 6], + [12, -1] + ], + [ + [7424, 8009], + [15, 5] + ], + [ + [7439, 8014], + [-4, -17], + [9, -8], + [-2, -9], + [16, -10], + [2, -12], + [14, -12], + [11, 1], + [7, -11], + [9, 3], + [11, -21], + [0, -11], + [15, -34], + [1, -11], + [-5, -14], + [3, -17], + [-7, -13], + [-2, -16], + [6, -17], + [6, 2], + [16, -9], + [23, -4], + [11, 2], + [23, -8], + [6, -13], + [7, 0], + [14, -19], + [9, -5], + [11, 2], + [-2, -16], + [6, -3], + [9, -41], + [12, -19], + [2, -11], + [23, 4], + [63, -13], + [14, 6], + [49, -12], + [7, -15], + [29, -11], + [18, -15], + [23, 7], + [0, -12], + [13, -5], + [6, 10], + [44, 30], + [36, 10], + [20, -3], + [20, 4], + [25, 19], + [15, 29], + [18, 12], + [10, 13], + [-9, 18], + [-7, 23], + [11, 33], + [5, 4], + [13, -1], + [5, -10], + [14, -6], + [13, -3], + [16, 16], + [14, 24], + [6, -3], + [23, 5], + [15, 18], + [-1, 7], + [11, 24], + [6, 3], + [15, -1], + [1, 13], + [9, -4], + [16, 12], + [12, -3], + [3, 5], + [14, -8], + [11, -1], + [5, 6], + [-4, 23], + [-18, 25], + [0, 6], + [-10, 7], + [-6, 11], + [-10, 5], + [-12, -3] + ], + [ + [8270, 7946], + [-7, -13] + ], + [ + [8263, 7933], + [-5, -6], + [-13, 13], + [-17, -1], + [-11, -9], + [-7, 10], + [-2, 13], + [8, 8], + [-1, 12], + [25, 79] + ], + [ + [8240, 8052], + [16, -12], + [14, -6], + [12, 9], + [13, 17], + [12, 1], + [7, 6], + [1, 14], + [-4, 6], + [8, 27], + [7, 10], + [1, 11], + [8, 23], + [16, 14], + [3, 17], + [-4, 7], + [3, 13], + [-8, 5], + [-12, -1], + [22, 37], + [12, 1], + [26, 11], + [19, 0], + [11, 6], + [28, -11], + [4, -9], + [20, -1], + [17, -13], + [23, -49], + [-3, -10], + [6, -23], + [6, -9], + [1, -20], + [10, -19], + [1, -23], + [7, -6], + [-2, -23], + [5, -9], + [11, -7], + [20, 2], + [7, -14], + [13, -3], + [9, -7], + [11, -17], + [12, 0], + [-4, -13], + [6, -8], + [2, -13], + [-4, -13], + [7, -20], + [15, 2], + [13, -5], + [17, 3], + [3, 9], + [12, 14], + [12, -1], + [6, 9], + [18, 8], + [9, -7], + [-4, -13], + [6, -17], + [-8, -19], + [-9, -6], + [-4, -38], + [-5, -13], + [2, -9], + [-11, -22], + [-1, -15], + [-8, -8], + [-2, -21], + [-8, -3] + ], + [ + [4913, 5477], + [0, -1] + ], + [ + [4913, 5476], + [0, 1] + ], + [ + [4925, 5729], + [-2, -26], + [3, -1], + [4, -47], + [-8, -15], + [-6, -39], + [-7, -28], + [2, -31], + [2, -4], + [4, -31], + [5, -1], + [2, -13], + [-3, -14] + ], + [ + [4921, 5479], + [-10, 3], + [-3, -4], + [-15, 4], + [-5, 4], + [-18, 3], + [-3, -9], + [16, 7], + [6, -3], + [-22, -5], + [-22, -3], + [-38, -25], + [-5, -8], + [-12, -10] + ], + [ + [4790, 5433], + [-1, 2], + [0, 41], + [5, 10], + [-1, 33], + [-10, 7], + [-1, 13], + [-6, 7], + [-10, 3], + [-6, 8], + [8, 15], + [1, 23], + [-5, 23] + ], + [ + [4764, 5618], + [7, -1], + [3, 10], + [3, 27], + [-7, 4], + [2, 14], + [7, 0], + [5, -7], + [2, 15], + [-8, 9], + [1, 12], + [5, 5], + [-5, 6], + [2, 13], + [-5, -2], + [-3, 7], + [1, 32], + [4, 6] + ], + [ + [4778, 5768], + [4, 2], + [5, 14], + [5, 1], + [3, -12], + [9, -6], + [2, 12], + [7, -1], + [1, 18], + [8, -5], + [-1, 8], + [5, 2], + [2, -15], + [-2, -13], + [6, -3], + [3, 9], + [11, 4] + ], + [ + [5402, 5930], + [2, -13], + [7, -8], + [3, -17], + [-1, -10], + [5, -3], + [2, -34], + [-2, -3], + [-1, -26], + [3, -28], + [9, -22], + [6, -8], + [-7, -3], + [-9, 3], + [-10, -4], + [-15, 3], + [-7, -19], + [11, -27], + [17, -29], + [3, -1], + [8, -30], + [2, -17], + [4, -2], + [-3, -16] + ], + [ + [5449, 5312], + [-3, -5], + [2, -25], + [-18, 15], + [-7, 3], + [-10, -2], + [-8, 12], + [-9, -3], + [-27, 0] + ], + [ + [5369, 5307], + [-6, 5], + [-48, 3], + [-1, -7] + ], + [ + [5314, 5308], + [-38, 0], + [-4, 10] + ], + [ + [5272, 5318], + [0, 12], + [4, 27], + [-1, 12], + [-8, 18], + [-2, 13], + [6, 11], + [-2, 8], + [-10, -11], + [-10, 10], + [-2, 29], + [-11, -4], + [2, 17] + ], + [ + [5238, 5460], + [6, 19], + [1, 41], + [4, 2], + [10, 24], + [10, 13], + [2, 14], + [10, 13], + [3, -8], + [7, 1], + [1, 9], + [8, -5], + [7, -14], + [1, -16], + [7, 1], + [6, 15], + [-1, 8], + [10, 15], + [-2, 17], + [5, 9], + [0, 9], + [5, 14], + [1, 25], + [16, 23], + [2, 34], + [9, 9], + [2, 17], + [-1, 14], + [6, 5], + [3, 30], + [12, 34], + [6, -1], + [11, 14], + [1, 37], + [-3, 10], + [-10, 4], + [-3, 40] + ], + [ + [5390, 5936], + [7, 0] + ], + [ + [5397, 5936], + [-1, -11], + [6, 5] + ], + [ + [5398, 5936], + [1, 0] + ], + [ + [5399, 5936], + [-1, 0] + ], + [ + [5944, 7202], + [0, 0] + ], + [ + [5944, 7202], + [-3, 0] + ], + [ + [5941, 7202], + [0, 0] + ], + [ + [5941, 7202], + [3, 0] + ], + [ + [5905, 7208], + [0, 1] + ], + [ + [5905, 7209], + [1, 0] + ], + [ + [5906, 7209], + [1, 0] + ], + [ + [5907, 7209], + [-2, -1] + ], + [ + [5935, 7200], + [1, -2] + ], + [ + [5936, 7198], + [-7, -1], + [-1, 11], + [-17, -6], + [-3, 7] + ], + [ + [5908, 7209], + [0, 0] + ], + [ + [5908, 7209], + [3, -5], + [17, 6], + [1, -10], + [6, 0] + ], + [ + [5807, 5072], + [0, -19], + [-2, 6], + [2, 13] + ], + [ + [5762, 5475], + [2, -10], + [7, -8], + [0, -10], + [16, -18], + [12, 12], + [6, 1], + [5, -9], + [7, 12], + [0, 6], + [10, -5], + [0, -12], + [4, -3], + [7, -21], + [10, -6], + [0, -14], + [6, 4], + [2, -10] + ], + [ + [5856, 5384], + [2, -7], + [-5, -19], + [3, -15], + [-4, -19], + [8, -3], + [8, -13] + ], + [ + [5868, 5308], + [-10, -15], + [-12, -24], + [0, -15] + ], + [ + [5846, 5254], + [-7, -6], + [-2, -13], + [-6, -5], + [0, -21], + [-3, -7], + [-4, -25] + ], + [ + [5824, 5177], + [-7, -9], + [-3, -12], + [1, -13], + [8, 12] + ], + [ + [5823, 5155], + [-1, -6], + [-1, -46] + ], + [ + [5821, 5103], + [-7, -8], + [-3, -9] + ], + [ + [5811, 5086], + [-3, 1], + [-7, -28], + [3, -9], + [-3, -10] + ], + [ + [5801, 5040], + [4, -14] + ], + [ + [5811, 4991], + [-2, -3], + [-1, -49], + [4, 11], + [-1, -27], + [-3, -5], + [0, -30], + [7, -28], + [-1, -13], + [-4, -5], + [10, -49], + [6, -14], + [6, -6], + [6, -13], + [2, -29], + [7, -10], + [2, -12] + ], + [ + [5849, 4709], + [-28, -8], + [-19, -7] + ], + [ + [5802, 4694], + [-16, -35], + [0, -23], + [4, -2], + [2, 9] + ], + [ + [5792, 4643], + [4, -21], + [-1, -21], + [1, -34], + [-5, -16], + [0, -10], + [-4, -17], + [4, -25], + [9, -11], + [6, -17], + [14, -4], + [-2, 11], + [9, 5], + [0, -75], + [-5, 1], + [-1, 12], + [-10, -10], + [-7, 1], + [-2, 14], + [-6, 17], + [-4, -2], + [-1, 13], + [-5, 13], + [-16, 7], + [-6, 6], + [-3, 16], + [-5, 7], + [-1, 12], + [-5, 0], + [-1, -16], + [-7, -8], + [-10, 6], + [-11, 0], + [-4, 7], + [-14, 8], + [0, 26], + [-17, -7], + [-8, -8], + [-4, 5], + [3, 14], + [-8, 6], + [-4, 9] + ], + [ + [5366, 4846], + [-9, 2], + [-4, -10], + [-7, -3], + [-7, 16] + ], + [ + [5363, 4916], + [8, -9], + [0, -6], + [8, 11], + [1, 14], + [7, -2], + [12, 12], + [2, -8], + [-3, -7], + [1, -20], + [9, 0], + [4, 6], + [10, 27], + [8, 8], + [1, 8], + [9, 4], + [10, 35], + [-1, 29], + [1, 13], + [-1, 26], + [12, 25], + [0, 7], + [11, 30], + [8, 5], + [12, 27], + [0, 21], + [3, 25], + [3, 7], + [-2, 14], + [1, 28], + [5, 27], + [-1, 34], + [16, 57], + [0, 19] + ], + [ + [5333, 4894], + [-5, 13], + [0, 10], + [-15, 33], + [-5, 6] + ], + [ + [5308, 4956], + [2, 12], + [8, 13], + [5, -10], + [5, -2], + [4, 22], + [-8, 9], + [3, 10], + [-7, 12], + [2, 7], + [-1, 20], + [4, -5], + [6, 5], + [4, -5], + [11, 5], + [-1, 24], + [5, 5], + [5, -5], + [5, -26], + [11, -4], + [9, 13], + [1, 6], + [9, -22], + [5, 9], + [0, 20], + [5, 5], + [1, 41], + [-2, 10], + [3, 23], + [-9, 9], + [-3, 11], + [-5, 0], + [0, 27], + [5, 19], + [5, 0], + [6, 16], + [-5, 18], + [0, 11], + [-14, 6], + [-7, -9], + [-7, -3], + [-4, 22], + [2, 23], + [3, 9] + ], + [ + [3018, 5865], + [-19, -13], + [-7, -27], + [-6, -1], + [-7, -26], + [-5, -13], + [-2, -37], + [-11, -37], + [11, 7], + [1, -11], + [4, 2], + [4, -28], + [8, -16], + [1, -19], + [-4, -7], + [1, -28], + [7, -3], + [3, -18], + [7, -5], + [5, 4], + [18, -4], + [9, 7], + [10, -10], + [7, -1], + [18, -46], + [5, -2], + [7, 8], + [11, -5], + [29, 8], + [4, -18], + [-6, -10], + [0, -17], + [-5, -6], + [0, -66], + [5, -28], + [4, -2], + [5, -17], + [-15, -35], + [7, -6], + [11, -18], + [0, -12], + [4, -17], + [5, -39] + ], + [ + [3056, 4939], + [-8, 22], + [-6, -2], + [-7, 6], + [18, 59], + [0, 7], + [-26, 25], + [-10, -10], + [-2, 7], + [-8, 7], + [-6, -11], + [-10, -7], + [-8, 6], + [-9, -5], + [-7, 8], + [2, 12], + [-2, 17], + [-10, 6], + [1, 12], + [-4, 13], + [-7, 3], + [-5, 10], + [-5, 2], + [-4, 26], + [-6, 11], + [-5, 2], + [-8, 14], + [-5, -2] + ], + [ + [2909, 5177], + [-11, 11], + [-3, -1], + [-7, 15], + [-8, 7], + [-3, -12], + [-9, -1], + [-19, 10], + [-1, 14], + [-7, 11], + [-11, 5], + [-13, 16], + [-7, 13] + ], + [ + [2810, 5265], + [-5, 10], + [5, 13], + [7, -2], + [-3, 14], + [0, 13], + [7, 19], + [10, -5], + [0, 9], + [9, -4], + [1, 22], + [12, 29], + [0, 6], + [7, 20], + [-6, -5], + [-4, 5], + [-1, 15], + [3, 16], + [-2, 57], + [-5, 2], + [9, 12], + [0, 7], + [-7, 20], + [3, 5], + [1, 19], + [-5, 6], + [-3, 17], + [-7, 14] + ], + [ + [2836, 5599], + [2, 14], + [13, 12], + [1, 13], + [4, 2], + [-6, 28], + [-3, 3], + [3, 11] + ], + [ + [2850, 5682], + [12, -31], + [1, -12], + [5, 0], + [-1, 29], + [-4, 10], + [7, 5], + [10, 15], + [6, 23], + [12, 4], + [2, 15], + [-3, 1], + [3, 13], + [-1, 20], + [3, 2], + [0, 16], + [8, 14], + [11, 14], + [9, -5], + [-3, -8], + [7, -4], + [4, 18], + [1, 14], + [10, -3], + [15, 1], + [6, 12], + [10, 13], + [13, 10], + [3, 11], + [-1, 9], + [6, 1], + [12, 10], + [8, -6], + [3, -18], + [-6, -10] + ], + [ + [6235, 4487], + [1, -17], + [-4, 8], + [3, 9] + ], + [ + [6207, 4496], + [-7, 9], + [1, 21], + [4, 1], + [-1, -12], + [3, -19] + ], + [ + [4324, 6037], + [-5, 9], + [5, 2], + [0, -11] + ], + [ + [4340, 6065], + [8, -16], + [-5, -7], + [-4, 7], + [1, 16] + ], + [ + [4365, 6116], + [5, -8], + [-8, -3], + [3, 11] + ], + [ + [4303, 6173], + [3, -6], + [-7, -10], + [-3, 11], + [7, 5] + ], + [ + [2676, 5812], + [7, -32], + [16, -36], + [7, -10] + ], + [ + [2706, 5734], + [-3, -5], + [-5, 7], + [-2, -8], + [0, -23], + [6, -10], + [-5, -4], + [2, -19], + [-6, -11], + [4, -16] + ], + [ + [2697, 5645], + [-2, 11], + [-5, 9], + [0, 15], + [-9, 5], + [5, -10], + [0, -10], + [-12, 12], + [3, 27], + [-8, 14], + [-10, 11], + [-11, 8], + [1, 10], + [-12, 21], + [-4, -7], + [9, -12], + [-6, -16], + [-6, 15], + [-10, 5], + [-5, 19], + [1, 16], + [3, 2], + [1, 15], + [-8, 5], + [7, 2], + [0, 9] + ], + [ + [2619, 5821], + [2, 7], + [21, -15], + [5, 7], + [13, -10], + [0, -5], + [8, -5], + [8, 5], + [0, 7] + ], + [ + [2698, 6446], + [5, -3], + [4, -17], + [-10, -9], + [-8, 8], + [7, 1], + [-4, 15], + [6, 5] + ], + [ + [2836, 6454], + [6, -1], + [-1, -7], + [-5, 8] + ], + [ + [2823, 6481], + [-2, -7], + [-7, 5], + [9, 2] + ], + [ + [2914, 6329], + [-1, 4] + ], + [ + [2913, 6333], + [-1, 0] + ], + [ + [2912, 6333], + [-2, -4] + ], + [ + [2910, 6329], + [-10, -1], + [-15, 6], + [-21, -3], + [-2, -3], + [-21, -3], + [6, 17], + [9, 10], + [3, 9], + [-8, 15], + [-19, -1], + [-13, 20], + [-1, 18], + [-6, 16], + [-14, -5], + [-10, 8], + [-8, 0], + [-10, 11], + [-5, 10], + [-13, -1], + [-13, 8], + [-13, 4], + [-7, 11], + [12, 1], + [1, 7], + [-7, 6], + [-25, 1], + [-10, -21], + [-7, -9], + [-15, 0], + [-2, -15], + [-3, 2], + [-11, -11], + [1, 10], + [-11, -3], + [10, 9], + [5, 0], + [-2, 15], + [3, 11], + [12, 15], + [14, 8], + [3, 6], + [19, 3], + [9, 8], + [27, -2], + [3, -6], + [15, 2], + [6, -8], + [10, 1], + [11, -12], + [9, -20], + [15, -1], + [13, -13], + [5, -1], + [7, -16], + [12, -5], + [-3, 9], + [12, -16], + [5, -11], + [23, -17], + [0, -5], + [12, 2], + [3, -6], + [-5, -10], + [2, -9], + [20, 1], + [7, -5], + [9, -19], + [5, 2], + [2, -9], + [-3, -6], + [-13, 0], + [-10, -9] + ], + [ + [3089, 5876], + [-11, 16], + [3, 2], + [8, -18] + ], + [ + [5905, 7209], + [1, 0] + ], + [ + [5941, 7202], + [-6, -2] + ], + [ + [5908, 7209], + [6, 1], + [0, 11], + [14, -4], + [17, 8], + [15, 13], + [0, -3], + [-19, -22], + [3, -11] + ], + [ + [5938, 7197], + [0, 0] + ], + [ + [5938, 7197], + [0, 0] + ], + [ + [5937, 7198], + [0, 0] + ], + [ + [5944, 7202], + [-3, -6] + ], + [ + [5941, 7196], + [0, 6] + ], + [ + [5936, 7198], + [0, -1] + ], + [ + [5936, 7197], + [-3, -9], + [-16, -11] + ], + [ + [5917, 7177], + [-8, 1] + ], + [ + [5909, 7178], + [-7, 3], + [-5, 11], + [1, 9], + [7, 7] + ], + [ + [5907, 7209], + [1, 0] + ], + [ + [5411, 8112], + [4, 8], + [9, -9], + [14, -7], + [6, -6], + [12, -3], + [-7, -8], + [13, -20], + [10, 7], + [-4, 12], + [9, -2], + [19, -24], + [4, 4], + [7, -7], + [8, 0], + [8, -23] + ], + [ + [5523, 8034], + [-8, -1], + [-12, -15], + [-1, -11], + [-15, -14], + [-9, 4], + [-8, -15] + ], + [ + [5383, 7990], + [-10, 11], + [-13, 20], + [-10, 9], + [-7, 17], + [3, 13], + [-5, 11], + [6, 13], + [26, 11], + [3, 8], + [9, 1], + [13, 9], + [-2, 8], + [15, -9] + ], + [ + [5255, 7927], + [0, 0] + ], + [ + [5394, 8289], + [0, -4] + ], + [ + [5394, 8285], + [0, 4] + ], + [ + [5371, 8330], + [6, -3], + [4, -14], + [-11, -5], + [-6, 4], + [1, 12], + [6, 6] + ], + [ + [5262, 8339], + [4, 3], + [12, -11], + [5, -15], + [13, -5], + [11, 2], + [1, -9], + [-10, -8], + [12, -2], + [8, -7], + [5, 14], + [11, 2], + [14, 11], + [13, 4], + [3, -10], + [10, -8], + [6, 2], + [3, -17], + [13, -10] + ], + [ + [5396, 8275], + [3, -23], + [-5, -27], + [12, -14], + [-3, -9], + [7, -21], + [-4, -20], + [2, -11], + [7, -4], + [2, -14], + [-6, -20] + ], + [ + [5269, 7921], + [-15, 12], + [1, -6] + ], + [ + [5210, 7923], + [-2, 4], + [8, 55], + [9, 11], + [2, 10], + [-16, 4], + [-4, 7], + [-18, -1], + [-13, 17] + ], + [ + [5176, 8030], + [4, 20], + [-6, 3], + [-5, 16] + ], + [ + [5166, 8104], + [-3, 14], + [9, 22], + [0, 9], + [-8, 12], + [5, 10], + [8, -4], + [10, 5], + [8, 28], + [-10, 5], + [2, 9], + [8, 1], + [4, 18], + [0, 16] + ], + [ + [5199, 8249], + [-3, 19], + [6, 6], + [21, 2], + [6, -18], + [0, 12], + [8, -4], + [2, 20], + [9, 1], + [-8, 29], + [10, 6], + [-9, 13], + [-1, 9] + ], + [ + [5240, 8344], + [22, -5] + ], + [ + [6201, 5844], + [-9, -28] + ], + [ + [6192, 5816], + [-6, 4], + [-22, -7], + [-4, 8] + ], + [ + [6160, 5821], + [0, 12] + ], + [ + [6160, 5833], + [0, 24], + [10, 22], + [7, 22] + ], + [ + [6177, 5901], + [8, -6], + [3, 9], + [9, 11] + ], + [ + [6197, 5915], + [6, -14], + [2, -25], + [-10, -14], + [-7, -3], + [-3, -11], + [13, 3], + [3, -7] + ], + [ + [3294, 6081], + [4, -5], + [0, -15], + [-3, -3], + [-3, 16], + [2, 7] + ], + [ + [5312, 8347], + [17, -10], + [-1, -7], + [-10, -1], + [-8, 6], + [2, 12] + ], + [ + [5348, 8350], + [-12, -5], + [4, 7], + [8, -2] + ], + [ + [5272, 8355], + [7, -12], + [-8, 2], + [1, 10] + ], + [ + [5413, 8363], + [6, -13], + [-9, 3], + [3, 10] + ], + [ + [5287, 8385], + [7, 0], + [6, -15], + [-2, -16], + [-19, 1], + [-11, 24], + [19, 6] + ], + [ + [5342, 8415], + [7, -3], + [0, -22], + [-11, -12], + [8, -11], + [-13, -8], + [5, -3], + [-8, -10], + [8, -5], + [-9, -11], + [-4, 32], + [-13, 0], + [-2, 28], + [13, 12], + [5, -13], + [14, 26] + ], + [ + [5247, 8463], + [-2, -13], + [-9, 0], + [11, 13] + ], + [ + [5240, 8344], + [-2, 32], + [-14, 7], + [3, 14], + [6, 5], + [-4, 11], + [-4, -6], + [0, 34], + [16, 1], + [7, 12], + [9, -10], + [-3, 15], + [18, 12], + [-32, -9], + [-5, -13], + [-7, 3], + [11, 20], + [17, 1], + [9, 6], + [10, 19], + [20, 10], + [-6, -10], + [3, -20], + [-7, -15], + [2, -23], + [12, -1], + [5, -6], + [-6, -16], + [-11, 2], + [-4, -20], + [-20, -21], + [6, -16], + [-7, -5], + [8, -8], + [-8, -10] + ], + [ + [3006, 6222], + [2, 16], + [-6, 10] + ], + [ + [3002, 6248], + [0, 0] + ], + [ + [3002, 6248], + [-1, 2] + ], + [ + [3001, 6250], + [-1, 4] + ], + [ + [3000, 6254], + [8, 11], + [-2, 9], + [4, 12], + [-4, 32] + ], + [ + [3006, 6318], + [3, 11], + [14, -4], + [4, 6], + [11, -10], + [5, 1], + [4, -8], + [11, 0], + [4, -20], + [6, 2], + [11, -3], + [-2, -5], + [-11, 2], + [0, -8], + [24, -7], + [12, -20], + [-9, -23], + [-8, 11], + [-17, 0], + [-9, 4], + [-8, -14], + [-9, -2], + [-3, 12], + [-9, -8], + [-5, 2], + [1, -9], + [-10, -31], + [-6, 8], + [-4, 17] + ], + [ + [5238, 7310], + [2, -6], + [-7, -4], + [1, -6], + [-8, -8], + [6, -5], + [-4, -35], + [3, -10], + [-1, -19], + [4, -5], + [-4, -8], + [-3, -30], + [-11, -11], + [-1, -9], + [-7, -8], + [-1, -14], + [7, -25], + [0, -11], + [10, -7], + [6, -15], + [2, -20], + [19, -24], + [7, -62], + [6, -44] + ], + [ + [5264, 6924], + [-7, -7], + [11, -29], + [5, -37], + [-2, -44], + [4, -19], + [-5, -34], + [2, -21], + [3, -4], + [-2, -20], + [-10, -9], + [-3, -10], + [18, -52], + [0, -25], + [5, -5], + [1, -10], + [6, -6], + [7, 5], + [21, -13], + [3, -4], + [11, -43] + ], + [ + [5332, 6537], + [-28, -35], + [-99, -122], + [-24, -40], + [-17, -32], + [-8, -8], + [-39, -15] + ], + [ + [5117, 6285], + [-26, -9], + [-5, 7], + [4, 15], + [-2, 11], + [1, 14], + [-8, 8], + [-12, 4], + [-9, 16], + [-2, -4], + [-9, 5], + [-4, 14], + [-14, 12], + [1, 19], + [-14, 18], + [-28, 40], + [-8, 9], + [-36, 49], + [-21, 30], + [-8, 9], + [-51, 70] + ], + [ + [4866, 6622], + [-64, 78], + [-16, 21], + [-28, 33] + ], + [ + [4758, 6754], + [0, 22] + ], + [ + [4758, 6776], + [0, 59], + [12, 18], + [18, 22], + [7, 0], + [8, 8], + [10, 0], + [27, 5], + [6, -5], + [7, 21], + [11, 17], + [11, 11], + [6, 11], + [17, 8], + [3, 14], + [-8, 21], + [4, 4], + [1, 15], + [23, 9], + [-3, 14], + [12, 5], + [35, -3], + [0, 17], + [6, 7], + [-11, 14], + [-4, 11], + [2, 8], + [-5, 10], + [2, 18], + [-4, 8], + [2, 24], + [-4, 15], + [3, 6], + [-4, 7], + [2, 9], + [-12, 19] + ], + [ + [4938, 7203], + [8, 0], + [18, 16], + [2, 12], + [11, 12], + [8, 0], + [1, 7], + [6, -5], + [8, 2], + [5, 15], + [24, 22], + [25, 4], + [10, 4], + [8, -2], + [11, 13], + [3, -4], + [12, 2], + [9, 8], + [21, -1], + [13, -7], + [8, -8], + [10, 11], + [14, 5], + [6, 10], + [12, -12], + [8, 2], + [0, 9], + [9, -1], + [7, -10], + [13, 4], + [10, -1] + ], + [ + [2774, 5010], + [-4, -1], + [0, 11], + [5, 9], + [5, -3], + [-6, -16] + ], + [ + [2519, 5143], + [-4, -14], + [-5, 0], + [9, 14] + ], + [ + [2493, 5154], + [0, -14], + [-8, 2], + [1, 11], + [7, 1] + ], + [ + [2459, 5168], + [2, -12], + [-7, 2], + [-1, 8], + [6, 2] + ], + [ + [2478, 5174], + [6, -6], + [-5, -6], + [-4, 5], + [3, 7] + ], + [ + [2463, 5192], + [4, -22], + [6, -11], + [-1, -9], + [6, -10], + [-4, -13], + [-13, -3], + [-3, 10], + [12, 14], + [-9, 21], + [-3, 18], + [5, 5] + ], + [ + [2909, 5177], + [-10, 0], + [6, -20], + [4, -4], + [-1, -13], + [2, -13], + [-5, 0], + [-4, -27], + [-15, -40], + [-16, -25], + [-33, -24], + [-9, -21], + [1, -7], + [-6, 5], + [-1, -22], + [-8, -31], + [-1, -17], + [-4, -3], + [-1, -12], + [-4, -7], + [-8, 2], + [-5, 16], + [0, 9], + [-8, 2], + [-9, 11], + [-8, -11], + [-2, 5], + [4, 10], + [-5, 9], + [10, 10], + [-2, 22], + [-3, 6] + ], + [ + [2768, 4987], + [11, 12], + [6, 40], + [-3, 5], + [-4, -11], + [-1, 15], + [-7, -22], + [-11, 18], + [-7, 5], + [5, 13], + [-1, 22], + [-2, 5], + [2, 15], + [-4, 19], + [10, 7], + [3, 21], + [-1, 11], + [12, 24], + [1, 31], + [-2, 13], + [12, 11], + [19, 9], + [4, 15] + ], + [ + [5949, 6986], + [2, -6] + ], + [ + [5951, 6980], + [17, -99] + ], + [ + [5968, 6881], + [-4, -12], + [-3, -33], + [-5, -16], + [0, -26], + [-5, -14], + [-13, 15], + [-6, 17], + [-10, 16], + [-1, 26], + [-8, 12], + [-5, 14], + [-2, 23], + [-4, -1], + [-4, -16], + [6, -10], + [3, -16], + [0, -14], + [4, -6], + [14, -42], + [5, -5], + [5, -36], + [4, -4], + [5, -25], + [0, -11], + [11, -43], + [15, -51], + [8, -35], + [15, -29], + [-8, 3], + [2, -41], + [3, -16], + [6, -13], + [10, -6], + [2, -8], + [16, -29] + ], + [ + [6024, 6449], + [-78, 0], + [-73, 0], + [0, 14], + [-6, -14], + [-57, 0], + [-71, 0], + [-46, 0] + ], + [ + [5693, 6449], + [0, 421], + [-3, 10], + [-1, 24], + [-4, 13], + [6, 20], + [3, 17], + [-4, 22], + [0, 14], + [8, 16] + ], + [ + [5698, 7006], + [1, -7], + [7, -2], + [12, 7], + [14, -6], + [27, -8], + [1, -7], + [8, -5], + [5, 4], + [4, -9], + [21, -6], + [8, -9], + [13, 7], + [16, 22], + [4, -4], + [4, 14], + [3, -3], + [11, 6], + [-9, -10], + [9, 2], + [7, 11], + [13, -9], + [8, 5], + [-3, -15], + [7, -4], + [1, -7], + [6, 2], + [0, 9], + [6, -10], + [7, -4], + [31, 7], + [9, 9] + ], + [ + [6111, 6097], + [3, -11], + [8, -6], + [-12, 2], + [-2, 8], + [3, 7] + ], + [ + [6177, 5901], + [-6, 15], + [-8, 12], + [-5, 18], + [-14, 19], + [-7, 23], + [-5, 10], + [-10, 7], + [-5, 9], + [-9, -1], + [-10, 9], + [-10, -6], + [-5, 10], + [-3, -8], + [-13, -5], + [-6, 16], + [-3, -1], + [-6, 12], + [-9, -45], + [-6, 19], + [-5, 1], + [-2, -8], + [-10, 1], + [-6, -4] + ], + [ + [6014, 6004], + [-3, 51], + [6, 17], + [1, 18], + [3, 5], + [5, 24], + [-2, 23], + [3, 6], + [-1, 17], + [12, -2], + [3, 17], + [21, 13], + [5, 18], + [5, 9] + ], + [ + [6072, 6220], + [9, -35], + [0, -9], + [6, -31], + [1, -24], + [3, -23], + [4, -4], + [0, -17], + [5, -2], + [2, -22], + [4, -1], + [-2, 18], + [3, 4], + [6, -7], + [0, -17], + [6, -8], + [3, 5], + [6, -3], + [3, -12], + [12, -6], + [12, -31], + [2, -9], + [9, -6], + [3, -12], + [3, 1], + [4, -13], + [1, -13], + [4, 2], + [6, -13], + [0, -8], + [10, -9] + ], + [ + [5941, 7196], + [-3, 1] + ], + [ + [5938, 7197], + [-2, 0] + ], + [ + [4503, 6784], + [-3, -9], + [-5, 3], + [8, 6] + ], + [ + [4571, 6803], + [1, -17], + [-5, -6], + [-6, 6], + [2, 19], + [8, -2] + ], + [ + [4552, 6828], + [-7, -11], + [-2, -14], + [-7, -8], + [-6, 21], + [12, 4], + [4, 8], + [6, 0] + ], + [ + [4604, 6803], + [7, 35], + [5, -4], + [-4, -26], + [-8, -5] + ], + [ + [4503, 6844], + [4, -7], + [-3, -16], + [-4, 14], + [3, 9] + ], + [ + [4626, 6861], + [0, -6], + [-9, -10], + [-1, 11], + [10, 5] + ], + [ + [4919, 7214], + [-1, 3] + ], + [ + [4918, 7217], + [1, -3] + ], + [ + [4851, 7247], + [-1, 5] + ], + [ + [4850, 7252], + [1, -5] + ], + [ + [5043, 7435], + [2, -6], + [-6, -9], + [-6, 2], + [10, 13] + ], + [ + [5088, 7483], + [0, -11], + [8, 0], + [-7, -23], + [-4, -6], + [-8, 7], + [-3, 10], + [-9, 0], + [9, 14], + [14, 9] + ], + [ + [5114, 7490], + [6, -11], + [-3, -3], + [-12, 12], + [9, 2] + ], + [ + [5055, 7627], + [0, 0] + ], + [ + [4950, 7681], + [11, -8], + [1, -9], + [16, -8], + [6, -11], + [6, 3], + [8, -7], + [20, 0], + [0, 9], + [18, -7], + [3, -7] + ], + [ + [5047, 7630], + [8, -9], + [8, 4], + [6, -5], + [12, 8], + [7, -3] + ], + [ + [5088, 7625], + [4, -5], + [-6, -6], + [3, -18], + [-4, -6], + [-23, -20], + [-3, -10], + [-17, -6], + [-15, -8], + [-8, -13], + [5, -6], + [-8, -7], + [-7, -18], + [-8, -14], + [-11, -32], + [3, -21], + [6, -15], + [7, -7], + [-21, -22], + [-9, -36], + [4, -6], + [-19, -4], + [-12, -20], + [-2, -15], + [-7, -12], + [-5, 6], + [-7, -1], + [-3, -8], + [-6, 4], + [-42, -1], + [-7, -13], + [-15, -5], + [-4, -16] + ], + [ + [4851, 7264], + [0, 0] + ], + [ + [4851, 7264], + [-6, -7], + [-14, 11], + [-9, 24], + [-2, 18], + [-12, 13], + [-14, 2] + ], + [ + [4794, 7325], + [-3, 18], + [7, 27], + [6, 2], + [3, 10], + [-5, 0], + [-6, 14], + [1, 17], + [6, 6], + [3, 12], + [-5, 3], + [-5, 22], + [-6, 12], + [14, 0], + [4, 14], + [-4, 17], + [7, 8], + [-1, 30], + [-3, 6], + [8, 16], + [6, 4], + [6, 14], + [-10, 6], + [0, 16], + [-16, 2], + [-2, -7], + [-11, -3], + [-3, 3], + [-13, -3], + [3, 13], + [-4, 6], + [-15, -10] + ], + [ + [4756, 7600], + [-4, 7], + [8, 12], + [-7, 6], + [1, 13], + [-6, -4], + [1, 10], + [-7, 18], + [12, 17], + [5, -3], + [11, 5], + [-2, 4], + [13, 17], + [6, 2], + [13, -13], + [36, 2], + [14, -2], + [17, -9], + [16, 0], + [17, 6], + [3, -6], + [11, -2], + [10, 4], + [16, -8], + [10, 5] + ], + [ + [5628, 8557], + [8, 2], + [12, -10], + [-17, -13], + [-15, -4], + [-10, 7], + [0, 13], + [22, 5] + ], + [ + [5631, 8581], + [8, -10], + [-15, -8], + [-3, 11], + [-9, 4], + [19, 3] + ], + [ + [5778, 8608], + [4, -7] + ], + [ + [5782, 8601], + [-5, -1] + ], + [ + [5777, 8600], + [3, -1] + ], + [ + [5780, 8599], + [-7, -9] + ], + [ + [5773, 8590], + [-4, -10] + ], + [ + [5769, 8580], + [-12, 1], + [-9, -8], + [13, -28], + [6, -22] + ], + [ + [5767, 8523], + [5, -8], + [-7, -3], + [-6, -16] + ], + [ + [5759, 8496], + [-14, 5], + [-8, -6], + [-15, 19], + [-26, 13], + [-21, -12] + ], + [ + [5675, 8515], + [7, 26], + [-10, -3], + [-13, 5], + [-6, 13], + [-3, 20], + [6, 3], + [-5, 14], + [18, 5], + [6, 10], + [30, 1], + [8, 10], + [35, -13], + [27, -2], + [3, 4] + ], + [ + [6160, 5833], + [0, -12] + ], + [ + [6192, 5816], + [-8, -22], + [5, -23], + [5, -13], + [6, -8], + [1, -13], + [4, -12], + [5, -4], + [12, -21], + [51, -34], + [31, -23], + [28, 0] + ], + [ + [6332, 5643], + [-21, -43], + [-31, -61], + [-14, -31], + [-14, -34], + [-5, -9], + [-27, 3], + [-20, -14], + [-8, -12], + [-1, -8], + [-9, -7], + [-12, -2], + [-7, -13] + ], + [ + [6163, 5412], + [-19, -3], + [-3, 2], + [-9, 19], + [-26, -24], + [-8, -27], + [-25, 12], + [-15, 0], + [-7, 11], + [-28, 36], + [-23, 1], + [-3, 10] + ], + [ + [5997, 5449], + [-4, 8], + [0, 27], + [-2, 9], + [-11, -2], + [-1, 9], + [-5, 7], + [-3, 12], + [0, 13], + [-4, 11], + [-3, 24], + [-6, 5], + [0, 8], + [-6, 4], + [-7, 24], + [-9, 16], + [-19, 8], + [-1, 9], + [5, 9], + [0, 17], + [12, 3], + [2, -5], + [7, 3], + [5, 9], + [-1, 50] + ], + [ + [5946, 5727], + [4, 33], + [3, 9], + [-1, 22], + [7, 18], + [6, -7], + [5, 5], + [0, 25], + [4, 16], + [-1, 14], + [6, 8], + [2, 12], + [11, 31], + [11, 1], + [0, 19], + [3, 19], + [6, 24], + [2, 28] + ], + [ + [5634, 8649], + [-3, -11], + [-9, 9], + [12, 2] + ], + [ + [5804, 9158], + [-14, -7], + [8, -9], + [-8, -12], + [7, -21], + [18, -7], + [18, -21], + [-2, -10], + [-23, -30], + [-1, -9], + [13, -20], + [11, -25], + [5, -23], + [-10, -1], + [2, -32], + [-7, -6], + [6, -11], + [9, -1], + [-2, -23], + [14, -8], + [1, -11], + [-17, -18], + [14, -16], + [21, -15], + [9, -17], + [-9, -24], + [-25, -28], + [-15, -23], + [-18, -22], + [-10, -7], + [-27, -31] + ], + [ + [5772, 8670], + [-31, -8], + [-19, -2], + [-8, -8], + [-15, 0], + [-6, -6], + [-38, -11], + [-10, -6], + [-10, 17], + [3, 10], + [-12, -6], + [2, 10], + [-10, 0], + [-12, 14], + [-5, -7], + [-8, 8], + [-2, 23], + [5, 3], + [3, 23], + [-5, 25], + [-5, 3], + [3, 22], + [-6, 2], + [3, 27], + [13, 9], + [-5, 12], + [11, -3], + [13, 8], + [-5, 9], + [17, 9], + [3, 10], + [13, 6], + [10, 18], + [17, 18], + [5, 16], + [25, 8], + [-4, 14], + [2, 17], + [-33, 19] + ], + [ + [5671, 8973], + [-15, 37], + [10, 20], + [-12, 20], + [5, 16], + [-7, 26], + [5, 3], + [-23, 26], + [-21, 5], + [-41, 32] + ], + [ + [5572, 9158], + [12, 1], + [7, 14], + [10, -2], + [21, -31], + [22, -6], + [20, 12], + [27, -15], + [7, 13], + [18, 12], + [-1, 17], + [6, 22], + [15, 15], + [16, -2], + [22, 10], + [17, -16], + [18, -7], + [6, -12], + [-14, -14], + [3, -11] + ], + [ + [9954, 4093], + [-5, -13], + [-7, 0], + [12, 13] + ], + [ + [9951, 4184], + [0, -5], + [9, -12], + [2, -26], + [-10, -2], + [-3, -6], + [-10, -2], + [-15, 11], + [-1, 12], + [5, 7], + [-2, 6], + [7, 12], + [18, 5] + ], + [ + [0, 4252], + [9987, -23], + [-2, -11], + [4, 2], + [7, 14], + [0, -17], + [-16, -2], + [-1, 7], + [-11, -10], + [-4, -9], + [-7, 15], + [12, 16], + [13, 4], + [2, 8], + [-9984, 6] + ], + [ + [3351, 2225], + [4, -3], + [-17, -28], + [-11, -4], + [-4, -11], + [-8, -4], + [-11, 12], + [16, 3], + [-4, 17], + [12, 1], + [-13, 15], + [11, -5], + [9, 6], + [15, -3], + [1, 4] + ], + [ + [3368, 2227], + [7, 2], + [4, -8], + [12, 3], + [4, -18], + [-17, -11], + [-16, 0], + [8, -4], + [-12, -6], + [1, -10], + [-11, 5], + [3, -11], + [-9, 12], + [6, 17], + [13, 11], + [-3, 14], + [10, 4] + ], + [ + [6541, 3981], + [5, -2], + [5, -13], + [-1, -13], + [-7, -1], + [-6, 6], + [-4, 14], + [8, 9] + ], + [ + [6252, 4454], + [4, -5], + [-1, -13], + [-3, -1], + [0, 19] + ], + [ + [3483, 5317], + [7, 10], + [4, 16], + [2, 29], + [4, 19], + [-10, 24], + [-3, 26], + [-1, 25], + [4, 16], + [5, 9] + ], + [ + [3495, 5491], + [3, 5], + [3, 18], + [12, -10], + [11, -4], + [6, -6], + [10, -19], + [22, -31], + [3, -18], + [-1, -11] + ], + [ + [3306, 6034], + [4, -11], + [-1, -7], + [-9, 13], + [1, 11], + [5, -6] + ], + [ + [3288, 6120], + [2, -14], + [-4, -5], + [-3, 22], + [5, -3] + ], + [ + [3295, 6124], + [5, -5], + [-9, -3], + [1, 18], + [3, -10] + ], + [ + [5262, 7641], + [2, -7], + [1, -27], + [-4, -7], + [-2, -24], + [-7, -9], + [-8, 9], + [3, 8], + [-7, 3], + [2, 19], + [-5, 15], + [3, 10], + [13, 13], + [6, -1], + [3, 16], + [0, -18] + ], + [ + [5160, 8036], + [5, -6], + [11, 0] + ], + [ + [5172, 7849], + [16, 7] + ], + [ + [5195, 7827], + [-7, -5], + [5, -18], + [5, -6], + [-2, -11], + [-13, -6], + [3, -11], + [8, -5], + [1, -9], + [-6, -11], + [4, -14], + [10, -7], + [9, 3], + [-4, -22] + ], + [ + [5208, 7705], + [-2, -3] + ], + [ + [5206, 7702], + [-2, -1] + ], + [ + [5204, 7701], + [-11, -10], + [-9, -23], + [-14, -6], + [-22, 9], + [0, 7], + [-15, 1], + [-7, 6], + [-11, 0], + [-5, 6], + [-13, -17], + [-10, -6], + [-3, -9], + [0, -26], + [4, -8] + ], + [ + [4950, 7681], + [9, 13], + [6, 48], + [-1, 11], + [4, 49], + [11, -11], + [0, 8], + [-14, 16], + [3, 6], + [1, 26], + [-20, 14], + [-9, 18], + [4, 14], + [-5, 12], + [-8, 1], + [-3, 15], + [-6, -3], + [-11, 11], + [-18, 6], + [-4, 6], + [-11, -5], + [0, 7], + [-9, 7], + [12, 5], + [-14, 12], + [1, 13], + [10, 6], + [22, 0], + [2, 9], + [12, 2], + [10, -20], + [12, 9], + [16, -4], + [4, 8], + [-1, 28], + [-6, 8], + [0, 18], + [16, 0], + [-1, -11], + [5, -6], + [30, -4], + [8, 7], + [-5, 3], + [2, 11], + [10, 9], + [18, 7], + [11, 15], + [0, 37], + [10, 8], + [17, 4] + ], + [ + [4800, 8771], + [13, -21], + [-14, 13], + [1, 8] + ], + [ + [4808, 8772], + [9, -11], + [-11, 3], + [2, 8] + ], + [ + [9394, 5584], + [3, -9], + [-4, -1], + [1, 10] + ], + [ + [5308, 4956], + [-3, 13], + [-10, 15], + [0, 9], + [-17, 28], + [-8, 19], + [7, -8], + [5, 3], + [-8, 8], + [-7, 1], + [-2, 13], + [-9, 21], + [1, 10], + [8, 2], + [-2, 7], + [-4, -5], + [-9, 16], + [-1, 11], + [-6, 18], + [5, 6], + [2, -7], + [2, 12], + [6, 13], + [1, 14], + [-1, 27], + [2, -7], + [11, -2], + [-8, 7], + [-5, 19], + [9, -6], + [-2, 24], + [3, 7], + [4, -4] + ], + [ + [5272, 5240], + [6, 1], + [36, -1], + [0, 68] + ], + [ + [4964, 8107], + [6, -6], + [-7, -6], + [-6, 6], + [7, 6] + ], + [ + [4883, 8252], + [-4, -10], + [-6, 16], + [10, -6] + ], + [ + [4825, 8298], + [-11, -2], + [-8, 20], + [-10, -17], + [-14, 5], + [-9, 13], + [11, 10], + [-5, 6], + [11, 2], + [8, 19] + ], + [ + [4798, 8354], + [20, 10], + [13, -2], + [0, -8], + [18, -35], + [-7, -6], + [-11, -19], + [-6, 4] + ], + [ + [4857, 8375], + [-7, 14], + [7, -1], + [0, -13] + ], + [ + [4830, 8398], + [2, -9], + [-7, -6], + [-6, 6], + [1, 10], + [10, -1] + ], + [ + [4839, 8409], + [-5, -13], + [-4, 6], + [9, 7] + ], + [ + [4832, 8443], + [11, -10], + [-2, -5], + [-18, -4], + [7, 10], + [-7, 5], + [9, 4] + ], + [ + [4795, 8489], + [3, -18], + [-4, 1], + [1, 17] + ], + [ + [4800, 8503], + [1, -8], + [-10, 7], + [9, 1] + ], + [ + [4824, 8506], + [5, -20], + [14, -6], + [-9, -6], + [-10, 1], + [-13, 15], + [11, 5], + [2, 11] + ], + [ + [4827, 8543], + [-5, -20], + [-16, -15], + [3, 11], + [-7, 3], + [2, 15], + [23, 15], + [0, -9] + ], + [ + [4907, 8560], + [9, 0], + [-6, -20], + [-22, -20], + [6, -7], + [-8, -14], + [22, 8], + [20, -3], + [16, 2], + [7, -13], + [-6, -9], + [-6, -24], + [-9, -18], + [-10, -8], + [8, -10], + [-21, -15], + [9, -4], + [11, 6], + [13, -8], + [14, -19], + [4, -29], + [8, -27], + [19, -9], + [4, -13], + [8, -7], + [-4, -5], + [11, -24], + [-7, 1], + [12, -23], + [-7, -19], + [8, -7], + [5, 11], + [20, -2], + [11, -10], + [3, -16], + [-5, -24], + [-4, 0], + [-14, -26], + [-11, -12], + [12, -3], + [13, 1], + [-3, -14], + [-11, -13], + [-5, 1], + [-14, -11], + [-12, 6], + [-18, -6], + [-3, 7], + [-18, -7], + [-14, -1], + [2, -8], + [-27, 9], + [-13, -6], + [-2, -17], + [-8, -7], + [-11, 10], + [-16, -3], + [-12, -21], + [-8, 10], + [19, 25], + [7, 14], + [1, 12], + [6, -1], + [2, 11], + [12, 3], + [11, -4], + [11, 2], + [8, 20], + [-23, -9], + [-8, 12], + [-13, -3], + [0, 6], + [-10, 3], + [-8, -7], + [-10, 18], + [13, 6], + [20, 18], + [2, 9], + [-2, 24], + [-17, -4], + [11, 12], + [5, 11], + [27, 10], + [8, 19], + [-4, 11], + [5, 2], + [-1, 14], + [-9, -6], + [-11, 23], + [9, 26], + [-19, -10], + [-11, 5], + [1, -10], + [-13, 10], + [-5, -5], + [-1, 21], + [11, 19], + [-15, 29], + [-8, -15], + [-4, -23], + [-5, -1], + [3, 22], + [-1, 18], + [5, 24], + [8, 18], + [-12, -13], + [-5, 11], + [0, 17], + [5, 10], + [-6, 19], + [7, 25], + [12, 0], + [-5, 20], + [11, 21], + [20, -6], + [26, 7] + ], + [ + [4912, 8589], + [-2, -13], + [-4, 10], + [6, 3] + ], + [ + [4964, 8673], + [4, -27], + [-15, 5], + [9, 7], + [2, 15] + ], + [ + [6206, 7550], + [-23, 27], + [-5, -9], + [-8, 5], + [-9, -5], + [-8, 5] + ], + [ + [6153, 7573], + [7, 17], + [-8, 51], + [-10, 6], + [-3, 11], + [-21, 13], + [-8, 10] + ], + [ + [6110, 7681], + [2, 9], + [16, 0], + [27, -19], + [21, 2], + [7, -6], + [6, 1], + [10, -14], + [17, -9], + [-2, -8], + [6, -4], + [16, 12], + [7, -8], + [4, 8], + [11, -14], + [11, 0], + [-2, -18], + [8, -10], + [14, -9] + ], + [ + [4995, 5824], + [5, -3], + [-3, -26], + [10, -13], + [3, -27], + [-4, -30], + [8, 0], + [-2, -24], + [2, -8], + [-4, -8], + [9, -19], + [-3, -11], + [0, -28], + [-3, -15], + [4, -3], + [-1, -23], + [-3, -2], + [6, -28], + [8, -9], + [5, -13] + ], + [ + [5032, 5534], + [-7, -19], + [-15, 1], + [-21, -17], + [-12, -16], + [-6, 0], + [-6, -7], + [-11, -5], + [-10, -15], + [-7, 8], + [-24, 12] + ], + [ + [4913, 5477], + [8, 2] + ], + [ + [4851, 7264], + [0, 0] + ], + [ + [4683, 5897], + [-3, -14], + [6, -9], + [6, 11], + [4, 0], + [8, -17], + [4, 13], + [5, 5], + [16, -11], + [2, 7], + [14, 19], + [5, -5], + [2, -20], + [3, -1], + [-1, -21], + [13, -17], + [-9, -23], + [5, 5], + [6, -3], + [0, -28], + [9, -12], + [0, -8] + ], + [ + [4764, 5618], + [-6, 8], + [-1, -12], + [-11, -17], + [-5, 13], + [-4, 0], + [3, 19], + [-5, 25], + [0, 11], + [-8, 10], + [-7, -7], + [-6, 3] + ], + [ + [4714, 5671], + [-3, 1], + [-5, -11], + [-3, 4], + [5, 15], + [-3, 10], + [0, 15], + [-4, 1], + [2, 13], + [-15, 39], + [-19, 0], + [-17, -7], + [-5, -26], + [-12, -21], + [-5, -1] + ], + [ + [4630, 5703], + [4, 8], + [-12, 23], + [0, 12], + [-4, -2], + [-6, 13], + [-20, 29], + [4, 20], + [-5, -10], + [-3, 21], + [-4, -14], + [-2, 11] + ], + [ + [4582, 5814], + [8, 30], + [12, 8], + [16, 4], + [0, 19], + [-6, 11], + [7, 3], + [-1, 24] + ], + [ + [4618, 5913], + [19, -3], + [-1, -8], + [17, -6], + [3, -5], + [7, 6], + [20, 0] + ], + [ + [4534, 5935], + [-2, 17], + [4, 7], + [8, -14], + [5, 5], + [-8, 2], + [-1, 13] + ], + [ + [4540, 5965], + [29, 0], + [4, 12], + [7, 2], + [8, -5], + [2, -7], + [6, 1], + [4, -10], + [12, 7], + [3, -14], + [-15, -6], + [-5, 7], + [-11, 6], + [-6, 7], + [-1, -9], + [-5, -4], + [-12, -1], + [0, -11], + [-24, 1], + [-2, -6] + ], + [ + [4553, 5826], + [1, -7], + [-6, 3], + [5, 4] + ], + [ + [4582, 5814], + [-1, 9], + [-5, -7], + [-7, 20], + [5, 15], + [8, -2], + [-9, 7], + [-2, -8], + [-3, 8], + [2, 11], + [8, -1], + [-5, 6], + [-6, -7], + [-11, -6], + [3, 14], + [-7, -6], + [-6, 6], + [1, 13], + [-5, -2], + [-7, 9] + ], + [ + [4535, 5893], + [14, 7], + [15, -1], + [13, 14], + [41, 0] + ], + [ + [5272, 5240], + [-3, 6], + [-10, 3], + [3, 15], + [10, 28], + [0, 26] + ], + [ + [5243, 5399], + [5, -8], + [-8, -24], + [-6, 4], + [0, 10], + [4, 1], + [1, 11], + [4, 6] + ], + [ + [5663, 7229], + [13, -11], + [9, 5], + [22, -8], + [8, 3], + [-1, -12], + [9, 6], + [7, -7], + [-2, -5], + [-25, -2], + [-16, -4], + [0, 9], + [-10, 6], + [-24, 5], + [1, 17], + [4, 5], + [5, -7] + ], + [ + [5756, 7245], + [-1, -17], + [-3, -5], + [4, 22] + ], + [ + [5640, 7268], + [-4, -2], + [0, 12], + [4, -10] + ], + [ + [5784, 7281], + [-5, -19], + [-8, -12], + [-2, 13], + [5, 13], + [10, 5] + ], + [ + [5710, 7319], + [-4, -10], + [-2, 10], + [6, 0] + ], + [ + [5731, 7350], + [-10, -7], + [2, 7], + [8, 0] + ], + [ + [5748, 7357], + [-5, -6], + [-5, 6], + [10, 0] + ], + [ + [5576, 7363], + [5, -7], + [-4, -5], + [-5, 10], + [4, 2] + ], + [ + [5690, 7366], + [3, -13], + [-8, 16], + [5, -3] + ], + [ + [5571, 7398], + [6, -23], + [-8, 2], + [-3, 14], + [5, 7] + ], + [ + [5723, 7405], + [3, -16], + [-4, -9], + [-5, 25], + [6, 0] + ], + [ + [5651, 7423], + [11, -14], + [8, 0], + [5, -29], + [7, 0], + [0, -10], + [-7, 1], + [-8, 23], + [-11, 0], + [-1, 9], + [-12, 17], + [-9, -1], + [13, 12], + [4, -8] + ], + [ + [5733, 7446], + [6, -17], + [-13, 0], + [4, 10], + [-10, -4], + [-2, 8], + [13, 8], + [2, -5] + ], + [ + [5553, 7474], + [-2, -18], + [-5, 18], + [7, 0] + ], + [ + [5706, 7488], + [-2, -14], + [-9, 3], + [0, 9], + [11, 2] + ], + [ + [5688, 7522], + [-8, 1], + [4, 10], + [4, -11] + ], + [ + [5586, 7536], + [18, 3], + [4, 11], + [23, 3], + [5, 10] + ], + [ + [5731, 7585], + [7, -8], + [1, -14], + [-8, -6], + [0, -15], + [-8, -13] + ], + [ + [5723, 7529], + [-3, 5], + [-11, 2], + [-11, 8], + [-12, -10], + [-8, 6], + [-9, -12], + [-11, 1], + [4, -19], + [-4, -10], + [8, -6], + [-1, -11], + [-9, 17], + [-8, 0], + [0, -6], + [10, -14], + [-9, 6], + [-2, 14], + [-12, 9], + [0, 14], + [-6, -6], + [-3, -28], + [8, -15], + [2, -11], + [5, -6], + [7, -17], + [-11, 9], + [-4, -7], + [6, -16], + [-9, -6], + [17, -11], + [0, -9], + [8, -2], + [13, -15], + [-2, -5], + [2, -25], + [-3, -1], + [-12, 22], + [-15, -11], + [5, -3], + [0, -11], + [10, -10], + [-11, -8], + [-11, 16], + [0, -8], + [7, -21], + [3, -20], + [0, -17], + [-11, 22], + [-5, -6], + [-4, -14], + [0, 13], + [-6, 19], + [-6, -1], + [0, -14], + [-7, 3], + [-3, 13], + [3, 14], + [-3, 15], + [-13, 17], + [7, 16], + [7, 2], + [6, 9], + [19, -10], + [10, -12], + [9, 10], + [-5, 6], + [-17, 14], + [-1, -6], + [-12, 4], + [-12, -7], + [-4, 8], + [-8, -4], + [-5, 24], + [-4, -1], + [-1, 16], + [-13, 20], + [-2, 14], + [-5, 4] + ], + [ + [5583, 7526], + [0, 0] + ], + [ + [5582, 7531], + [4, 5] + ], + [ + [3288, 5876], + [-5, -2], + [5, 13], + [0, -11] + ], + [ + [3786, 8632], + [-12, -4], + [4, 9], + [8, -5] + ], + [ + [3787, 8645], + [3, -11], + [-11, 4], + [-4, 10], + [12, -3] + ], + [ + [3846, 8835], + [12, -11], + [-9, 0], + [-12, 15], + [9, -4] + ], + [ + [3579, 8886], + [3, 14], + [6, -4], + [-9, -10] + ], + [ + [3876, 8910], + [-1, -14], + [-10, 26], + [11, -12] + ], + [ + [3961, 8973], + [2, -9], + [-18, -2], + [0, 10], + [16, 1] + ], + [ + [3583, 9209], + [9, -5], + [-9, -16], + [-11, 9], + [11, 12] + ], + [ + [3535, 9210], + [20, -7], + [5, -10], + [-9, -9], + [-40, -14], + [-19, 9], + [8, 9], + [-21, 2], + [3, 11], + [-6, 23], + [14, 9], + [30, -7], + [15, -16] + ], + [ + [4292, 9258], + [5, -6], + [-22, -8], + [-56, -5], + [5, 12], + [24, 14], + [11, 0], + [27, 11], + [6, -18] + ], + [ + [3513, 9274], + [-13, 6], + [9, 10], + [4, -16] + ], + [ + [3537, 9281], + [-14, 10], + [21, 1], + [-7, -11] + ], + [ + [3472, 9375], + [-13, -11], + [-4, 9], + [17, 2] + ], + [ + [4335, 9380], + [22, -3], + [33, -25], + [-20, 4], + [17, -11], + [-5, -9], + [-50, 20], + [-10, 8], + [0, 15], + [13, 1] + ], + [ + [4354, 9391], + [36, -8], + [-3, -13], + [-17, -1], + [-14, 11], + [-38, 1], + [0, 5], + [36, 5] + ], + [ + [4333, 9407], + [21, -8], + [-47, 6], + [55, -12], + [-48, -4], + [-29, 9], + [13, 12], + [35, -3] + ], + [ + [4418, 9469], + [11, -1], + [11, -14], + [-32, -5], + [-18, 7], + [3, 8], + [25, 5] + ], + [ + [4439, 9496], + [13, -2], + [-12, -10], + [-14, 7], + [13, 5] + ], + [ + [4505, 9520], + [-7, -8], + [21, -2], + [-15, -6], + [-30, -2], + [2, 17], + [29, 1] + ], + [ + [4481, 9596], + [3, -41], + [-16, 34], + [13, 7] + ], + [ + [2994, 9643], + [23, -5], + [-21, -3], + [-2, 8] + ], + [ + [4445, 9674], + [18, -11], + [-32, 9], + [14, 2] + ], + [ + [4519, 9788], + [-33, -16], + [-26, 9], + [49, 14], + [10, -7] + ], + [ + [3575, 9904], + [-53, 7], + [4, 13], + [49, -20] + ], + [ + [3722, 9942], + [44, -15], + [-28, -11], + [-44, 11], + [-20, 15], + [48, 0] + ], + [ + [3880, 9983], + [38, -14], + [-47, 9], + [9, 5] + ], + [ + [4105, 9998], + [43, -1], + [139, -17], + [-12, -6], + [-116, -3], + [-142, -14], + [100, 5], + [47, 8], + [96, -4], + [39, 6], + [2, -18], + [34, 4], + [72, -17], + [-31, -17], + [-54, -4], + [-152, -7], + [-81, -17], + [1, -9], + [30, 8], + [107, 13], + [89, -4], + [-3, -12], + [-44, -9], + [-2, -11], + [85, 20], + [2, 14], + [51, 4], + [11, -19], + [-7, -14], + [-56, -36], + [-16, -18], + [53, 26], + [58, 30], + [75, -8], + [37, 24], + [53, -1], + [57, -12], + [13, -8], + [-64, -27], + [-24, 0], + [7, -12], + [-31, -8], + [-46, 1], + [36, -15], + [-18, -11], + [-40, -3], + [-44, 6], + [-25, -22], + [11, -12], + [20, 3], + [-9, -21], + [17, -12], + [-27, -8], + [0, -11], + [-28, -2], + [-11, -42], + [-18, -22], + [18, 0], + [10, 17], + [51, -16], + [-6, -10], + [-19, 10], + [-22, -2], + [38, -26], + [10, 6], + [21, -5], + [2, -18], + [-10, -12], + [-35, 13], + [-27, -3], + [-24, -13], + [-13, 12], + [-14, -8], + [10, -12], + [18, 1], + [0, -16], + [19, 4], + [30, -4], + [6, -11], + [-15, -4], + [21, -14], + [3, -29], + [-17, -4], + [-4, 9], + [-16, -2], + [-26, 17], + [8, -12], + [24, -14], + [-8, -27], + [30, -5], + [7, 6], + [13, -11], + [-18, -15], + [-16, 2], + [-7, 11], + [-36, -2], + [-11, -18], + [9, -27], + [-2, 21], + [9, 3], + [36, -10], + [-7, -26], + [-28, 3], + [-18, -14], + [-36, 11], + [-14, 9], + [-1, 13], + [-10, -16], + [-25, -4], + [-17, -16], + [24, -7], + [-16, -14], + [22, -6], + [6, -12], + [-19, -7], + [21, 1], + [23, -15], + [33, -16], + [-17, -14], + [20, 9], + [14, -3], + [-17, -11], + [2, -17], + [9, 14], + [10, -1], + [0, -35], + [8, -18], + [-13, -10], + [-11, 3], + [-7, 22], + [-2, -22], + [-19, 0], + [-16, 10], + [-9, 27], + [-24, 13], + [-15, 14], + [-20, 5], + [-16, -3], + [-26, 23], + [-16, -2], + [31, -13], + [-8, -6], + [26, -8], + [25, 1], + [11, -12], + [-16, -13], + [-24, -7], + [-44, 2], + [14, -7], + [-11, -17], + [2, -11], + [40, 7], + [13, -6], + [-17, -3], + [-27, -14], + [-16, -3], + [34, -3], + [11, 16], + [15, -4], + [29, 13], + [23, -11], + [25, -7], + [33, 0], + [0, -8], + [-14, 0], + [-4, -12], + [-19, -2], + [1, -10], + [-13, -8], + [-17, -1], + [2, -9], + [-26, -21], + [-31, -10], + [-13, -9], + [-23, 1], + [1, -6], + [-24, -7], + [-9, 4], + [-5, -11], + [-18, 10], + [-1, -16], + [-30, -3], + [-30, 17], + [6, -17], + [-4, -12], + [-11, 1], + [-16, -12], + [-12, -33], + [-13, -5], + [-1, -15], + [-27, -26], + [-15, -2], + [-14, -18], + [-13, 3], + [-20, -12], + [-17, 14], + [15, 16], + [-12, 0], + [-7, -21], + [-14, -1], + [8, -16], + [-17, 1], + [-7, -6], + [-8, 9], + [-14, -12], + [2, -15], + [-14, -14], + [-10, 8], + [-13, -3], + [1, -12], + [14, -11], + [-1, -13], + [-13, -9], + [-12, 1], + [3, -8], + [18, -1], + [7, -27], + [-13, 0], + [6, -7], + [-18, -12], + [-13, 6], + [12, -15], + [-4, -15], + [-21, -8], + [-6, -11], + [9, -15], + [-21, 9], + [12, -11], + [9, -1], + [-8, -21], + [11, 5], + [-6, -22], + [-8, -6], + [7, -7], + [-17, -13], + [9, -6], + [-3, -17], + [-20, 3], + [20, -7], + [-12, -15], + [-11, 5], + [14, -18], + [0, -9], + [-29, 6], + [-13, -12], + [-12, 10], + [3, 19], + [-9, 0], + [6, 10], + [-15, -11], + [-11, 20], + [6, 8], + [-3, 10], + [-10, -9], + [-22, -8], + [3, 7], + [-19, -8], + [-17, 0], + [14, 12], + [-20, 6], + [-4, 9], + [7, 5], + [-20, 5], + [-1, 9], + [-10, 13], + [8, 10], + [-10, 16], + [-15, 2], + [-8, 9], + [5, 28], + [-12, 7], + [15, 8], + [-28, -3], + [-2, 19], + [-11, 10], + [3, 23], + [-6, 8], + [14, -1], + [13, 13], + [6, 16], + [9, -13], + [-4, 16], + [-11, 4], + [-15, -12], + [2, 10], + [-19, -33], + [-9, 0], + [1, 29], + [22, 16], + [-10, 2], + [-8, -13], + [-23, 50], + [-12, 0], + [-4, 23], + [19, 15], + [18, 9], + [21, 21], + [-21, -13], + [-3, -7], + [-33, -23], + [-9, 1], + [1, 22], + [11, 11], + [16, -1], + [5, 10], + [-34, 3], + [-6, 14], + [49, 13], + [17, -3], + [12, 6], + [-28, -2], + [-28, -7], + [-21, -2], + [2, 10], + [25, 18], + [15, 2], + [12, -7], + [24, 4], + [-49, 5], + [-24, -17], + [0, 18], + [22, 10], + [-5, 12], + [15, -1], + [16, -8], + [21, 2], + [-6, 8], + [7, 12], + [-13, 0], + [9, -8], + [-31, -6], + [-3, 7], + [-15, -1], + [13, 14], + [18, 4], + [23, -2], + [-5, 11], + [7, 22], + [16, -8], + [0, 19], + [-17, -7], + [10, 18], + [-2, 11], + [15, 4], + [-8, 11], + [-24, 0], + [-25, 5], + [-25, 17], + [-22, 4], + [-15, 18], + [11, 6], + [48, -8], + [25, -15], + [24, -6], + [5, 11], + [-14, -6], + [1, 16], + [-24, 21], + [17, -6], + [-5, 9], + [-22, -1], + [16, 9], + [-4, 6], + [-19, -12], + [5, 13], + [24, 4], + [-8, 4], + [-21, -8], + [-7, 9], + [25, 4], + [-41, 6], + [-4, 7], + [-14, -11], + [0, -11], + [-14, -5], + [-24, 1], + [-17, 17], + [17, 13], + [-8, 8], + [19, 13], + [-21, 11], + [17, 5], + [10, 12], + [-3, 15], + [-18, 4], + [4, 18], + [-30, 38], + [7, 13], + [-16, 5], + [7, 11], + [-21, 13], + [4, 8], + [-31, 10], + [-14, 17], + [13, 3], + [-7, 17], + [-16, -2], + [-4, 10], + [-26, 9], + [-17, -2], + [-4, 9], + [-42, 5], + [-31, 8], + [-6, -11], + [-27, 5], + [1, -9], + [-35, -1], + [7, 10], + [-15, 1], + [-6, -12], + [-18, 11], + [-7, -6], + [23, -12], + [-58, 9], + [-30, 15], + [36, 17], + [-57, 7], + [-26, 11], + [12, 12], + [50, 5], + [21, 6], + [50, -3], + [14, 9], + [-19, 13], + [-24, -11], + [-45, -4], + [-29, 6], + [21, 8], + [-33, -1], + [13, 9], + [-30, -4], + [-44, 23], + [8, 21], + [91, 16], + [8, 10], + [43, 9], + [42, -2], + [31, 23], + [-5, 30], + [-56, 2], + [-12, 15], + [39, 20], + [28, 7], + [8, 12], + [46, 13], + [44, -9], + [16, 6], + [6, 19], + [-19, 15], + [104, 24], + [90, 11], + [24, -14], + [-6, -33], + [24, 17], + [-1, 11], + [85, -18], + [-31, 13], + [44, 0], + [-31, 12], + [-15, 20], + [65, -8], + [77, -19], + [22, -14], + [25, 1], + [-8, 28], + [38, -1], + [-68, 26], + [132, 2], + [-157, 7], + [28, 14], + [74, 4], + [6, 5], + [54, -17], + [95, 1], + [-42, 3], + [53, 5], + [-49, 3], + [0, 13], + [180, 11] + ], + [ + [2530, 6098], + [8, -8], + [4, 5], + [7, -7] + ], + [ + [2549, 6088], + [-17, -28], + [-9, -9], + [-2, -15], + [2, -14], + [-6, -9] + ], + [ + [2517, 6013], + [-6, -1], + [2, -10], + [-5, -3], + [-10, -17], + [-1, -9] + ], + [ + [2497, 5973], + [-15, 12], + [-19, 1], + [-9, 9], + [-17, 25] + ], + [ + [2437, 6020], + [3, 7], + [-1, 33], + [1, 10], + [11, 38], + [36, 0], + [2, 20], + [-7, 4], + [-4, 17], + [-8, 7], + [-1, 7], + [-9, 13], + [12, 0], + [1, 33], + [50, 0] + ], + [ + [9022, 5957], + [-2, -11], + [-3, 10], + [5, 12], + [4, -3], + [-4, -8] + ], + [ + [3409, 5499], + [-2, -9], + [4, -10], + [-2, -8], + [-13, -2], + [-5, -8], + [2, -9], + [-6, -39], + [4, -7], + [2, -13], + [5, -8], + [0, -8], + [10, 0], + [2, -28], + [6, -15], + [0, -8], + [9, -27], + [6, -5] + ], + [ + [3312, 5482], + [-18, 43], + [8, 14], + [-2, 28], + [9, 7], + [5, -2], + [11, 21], + [-7, 0], + [-5, 21], + [5, 19], + [5, 3], + [15, 22], + [-6, 18] + ], + [ + [3332, 5676], + [4, -9], + [7, -3], + [15, -20], + [17, -36], + [1, -15], + [-4, -18], + [1, -10], + [3, 13], + [4, 2], + [10, -8], + [9, -18], + [2, -9], + [6, -1], + [5, -11], + [0, -27], + [-3, -7] + ], + [ + [8172, 6482], + [5, -7], + [-5, -9], + [-9, 5], + [5, 9] + ], + [ + [7037, 2130], + [10, -6], + [-7, -4], + [-3, 10] + ], + [ + [2691, 6046], + [-12, -1], + [-4, -8], + [-12, -4], + [-8, -7], + [-8, 2], + [-3, 9], + [-6, -6], + [-4, -11], + [0, -12], + [-5, -3], + [-5, -13], + [-6, -5], + [0, -7], + [-8, 9], + [-8, -14], + [-13, -2], + [2, -26], + [-6, -2], + [0, -10], + [-11, -5] + ], + [ + [2574, 5930], + [-4, 22], + [-10, 3] + ], + [ + [2560, 5955], + [3, 17], + [-2, 12], + [-6, -1], + [-3, 6], + [-10, -8], + [0, 7], + [-7, 3], + [-8, 17], + [-10, 5] + ], + [ + [2549, 6088], + [8, 9], + [7, 2], + [7, -7], + [2, 4], + [12, -6], + [4, 3], + [12, -1], + [13, 11], + [15, -6], + [11, 6], + [18, -9], + [13, -22], + [-8, 6], + [10, -19], + [8, 0], + [-7, 9], + [9, -6], + [4, -13], + [4, -3] + ], + [ + [5512, 7634], + [1, -9] + ], + [ + [5513, 7625], + [-8, 12], + [-27, 21], + [12, -5] + ], + [ + [5466, 7679], + [-8, -5], + [-2, 8], + [10, -3] + ], + [ + [5412, 7751], + [11, -14], + [-10, 8], + [-1, 6] + ], + [ + [5401, 7772], + [0, -20], + [-5, 27], + [5, -7] + ], + [ + [5404, 7789], + [3, -10], + [-5, -3], + [2, 13] + ], + [ + [5458, 7861], + [5, -3], + [18, -29], + [6, 0], + [9, -10], + [17, 0], + [11, 9] + ], + [ + [5524, 7828], + [3, -33], + [12, -10], + [-10, -3], + [-1, -17] + ], + [ + [5488, 7656], + [-12, 12], + [-6, 13], + [-14, 10], + [-11, -4], + [-2, 10], + [-14, 14], + [-9, 17], + [8, 5], + [-15, 23], + [-1, 23], + [-9, 12], + [-7, 2], + [-3, -20], + [-8, -11], + [-8, 20], + [0, 20] + ], + [ + [5377, 7802], + [9, -3], + [13, 3], + [6, 6], + [20, -9], + [-2, 17], + [12, 6], + [-2, 20], + [9, 5], + [8, 12], + [8, 2] + ], + [ + [3002, 6248], + [-1, 2] + ], + [ + [2977, 6260], + [-12, 8], + [1, 7], + [11, -10], + [0, -5] + ], + [ + [3000, 6254], + [2, -6] + ], + [ + [3006, 6222], + [-8, 11], + [-24, -5], + [-11, 6], + [-8, 0], + [-6, -5], + [1, -8], + [-12, 16], + [-7, 4], + [2, 15], + [6, 2], + [16, -10], + [24, -4], + [4, 8], + [7, -2], + [0, 7], + [-13, 23], + [1, 19], + [3, 2], + [-9, 11], + [-11, 1], + [-2, 6], + [8, 10], + [11, 2], + [13, -11], + [15, -2] + ], + [ + [5614, 7970], + [21, -26] + ], + [ + [5635, 7944], + [-8, -11], + [-4, 2], + [-13, -17], + [-4, -19], + [-5, -6], + [-4, -21], + [-6, -5], + [-1, -12], + [-6, -10], + [-7, 2], + [-5, -8], + [-10, -1] + ], + [ + [5562, 7838], + [-16, 4], + [-11, -11], + [-11, -3] + ], + [ + [5458, 7861], + [-7, 21], + [-4, -1] + ], + [ + [5476, 7947], + [6, -1], + [10, -13], + [15, 0], + [14, 3], + [-1, 10], + [7, 4], + [14, 3], + [4, 7], + [8, -7], + [12, 11], + [3, 13], + [9, 3], + [9, -5], + [11, 3], + [5, -11], + [12, 3] + ], + [ + [8426, 4574], + [2, -3], + [-6, -11], + [-11, -6], + [0, 8], + [6, 3], + [10, 17], + [-1, -8] + ], + [ + [8386, 4582], + [-1, -10], + [-6, 2], + [7, 8] + ], + [ + [8333, 4644], + [9, -18], + [4, 2], + [10, -24], + [-10, -15], + [-9, 5], + [-5, 14], + [-10, 12], + [-15, 3], + [-4, 11], + [10, 10], + [20, 0] + ], + [ + [8473, 4637], + [-2, -11], + [-16, -29], + [-8, 0], + [-2, -6], + [-12, -5], + [-3, 9], + [7, 6], + [-5, 10], + [2, 16], + [10, 18] + ], + [ + [8444, 4645], + [2, -5], + [7, 4], + [3, 10] + ], + [ + [8456, 4654], + [13, 13] + ], + [ + [8469, 4667], + [7, -5], + [0, -8], + [-6, -2], + [3, -15] + ], + [ + [8318, 4695], + [-3, -16], + [1, 18], + [2, -2] + ], + [ + [8424, 4708], + [1, -8], + [-8, -2], + [4, 11], + [3, -1] + ], + [ + [8242, 4700], + [-7, -24], + [3, -4], + [-11, -3], + [-10, 6], + [6, 6], + [-1, 15], + [7, 13], + [8, -1], + [5, -8] + ], + [ + [8442, 4708], + [-5, -4], + [-10, -16], + [-5, 4], + [7, 9], + [-2, 6], + [12, 4], + [3, -3] + ], + [ + [8450, 4700], + [-5, -10], + [-4, 6], + [11, 16], + [-2, -12] + ], + [ + [8858, 4702], + [-10, -1], + [7, 12], + [3, -11] + ], + [ + [8265, 4700], + [-2, 12], + [5, 2], + [-3, -14] + ], + [ + [8459, 4715], + [2, -3], + [13, 1], + [1, -11], + [-22, -6], + [3, 18], + [3, 1] + ], + [ + [8550, 4716], + [8, -3], + [-2, -6], + [-6, 9] + ], + [ + [8276, 4716], + [4, 0], + [5, -15], + [6, 7], + [6, -6], + [8, 2], + [1, -19], + [-18, -12], + [0, 10], + [-7, -11], + [-12, -2], + [-9, -9], + [-7, -2], + [-11, 5], + [2, 11], + [-1, 13], + [12, 14], + [6, -8], + [4, 5], + [6, -18], + [14, 4], + [-6, 11], + [-4, 1], + [-6, 16], + [7, 3] + ], + [ + [8415, 4713], + [2, -8], + [-7, -8], + [2, -8], + [-13, -10], + [-8, 1], + [-9, -9], + [-11, 5], + [-1, -7], + [-12, 0], + [-2, 6], + [-7, 2], + [-9, -3], + [-13, 4], + [0, 11], + [13, 18], + [19, -4], + [15, -16], + [15, 11], + [6, -12], + [6, 1], + [0, 7], + [12, 12], + [-4, 4], + [3, 8], + [3, -5] + ], + [ + [8208, 4712], + [5, -15], + [-14, -15], + [-7, 13], + [-11, 8], + [-3, 14], + [12, -6], + [8, 8], + [10, -7] + ], + [ + [8604, 4733], + [0, -14], + [-5, 14], + [5, 0] + ], + [ + [8519, 4741], + [-6, -15], + [-15, 2], + [-5, -7], + [5, 21], + [11, -2], + [8, 7], + [2, -6] + ], + [ + [8857, 4720], + [-12, -20], + [-23, 0], + [5, 24], + [6, 21], + [6, 8], + [11, 6], + [5, -1], + [7, -11], + [-5, -27] + ], + [ + [8656, 4770], + [0, -26], + [-8, -16], + [-7, -6], + [3, 28], + [10, 23], + [2, -3] + ], + [ + [8664, 4774], + [1, -9], + [-7, 7], + [6, 2] + ], + [ + [8166, 4787], + [3, -6], + [-12, -8], + [-3, -6], + [-12, -1], + [-12, 5], + [4, 15], + [32, 1] + ], + [ + [8204, 4789], + [6, -5], + [-10, -1], + [4, 6] + ], + [ + [8738, 4813], + [-1, -5], + [-6, 7], + [3, 6], + [4, -8] + ], + [ + [8733, 4812], + [3, -8], + [-6, -16], + [-7, 2], + [2, 30], + [-1, 7], + [9, -15] + ], + [ + [7948, 4837], + [3, 4], + [13, -9], + [8, 1], + [0, 9], + [9, -3], + [2, -10], + [7, -5], + [6, 2], + [5, -8], + [8, 5], + [5, -14], + [2, -16], + [11, -1], + [10, -5], + [4, 4], + [11, -7], + [7, 4], + [5, -7], + [7, 8], + [2, 19], + [4, 5], + [7, -1], + [3, -15], + [12, 3], + [12, -14], + [16, 1], + [0, -13], + [6, -8], + [-2, -17], + [16, -15], + [12, 4], + [7, 6], + [13, -11], + [-3, -41], + [7, -10], + [-18, 4], + [-20, 20], + [-6, -1], + [-10, -8], + [-9, 6], + [-16, 4], + [-2, -6], + [-9, 6], + [-11, 0], + [-13, 8], + [-14, 14], + [-18, 10], + [-23, 1], + [-2, -7], + [-18, 4], + [-11, 14], + [-25, 5], + [-4, 10], + [4, 15], + [-7, -1], + [-7, 10], + [-20, -2], + [3, 10], + [2, -8], + [4, 17], + [5, 1], + [1, 18], + [5, 17], + [4, -6] + ], + [ + [8346, 4810], + [-1, 39], + [3, -8], + [-2, -31] + ], + [ + [8685, 4859], + [3, -16], + [-4, 0], + [1, 16] + ], + [ + [8737, 4870], + [5, -12], + [1, -27], + [-5, -14], + [-8, 8], + [-1, 9], + [2, 19], + [6, 17] + ], + [ + [7843, 4868], + [-9, 8], + [9, -3], + [0, -5] + ], + [ + [8386, 4889], + [2, 1], + [2, -20], + [-3, -2], + [-4, 10], + [3, 11] + ], + [ + [8410, 4898], + [-4, -6], + [0, -18], + [-10, -1], + [3, 23], + [-2, 8], + [11, 13], + [2, -19] + ], + [ + [8422, 4913], + [0, -9], + [-5, 6], + [-2, -24], + [7, -6], + [-2, -7], + [-8, -5], + [0, -10], + [-6, -1], + [-2, 9], + [5, 17], + [3, 22], + [0, 15], + [4, 10], + [6, -17] + ], + [ + [8418, 4952], + [5, -5], + [-3, -8], + [-5, 6], + [3, 7] + ], + [ + [8564, 4977], + [-2, -8], + [-9, -3], + [3, 10], + [8, 1] + ], + [ + [8225, 4951], + [-3, 23], + [3, 18], + [4, 5], + [1, -36], + [-5, -10] + ], + [ + [8523, 5004], + [7, -6], + [-2, -7], + [6, -2], + [0, -14], + [-15, -15], + [-15, 15], + [-5, 14], + [1, 12], + [11, 5], + [12, -2] + ], + [ + [8598, 5023], + [14, -13], + [8, 1], + [7, -8], + [1, -15], + [7, -11], + [-1, -17], + [-24, 23], + [-3, 8], + [-9, 2], + [-2, -10], + [-15, 7], + [-2, 8], + [-6, -10], + [-7, -2], + [-6, 20], + [-4, -17], + [-6, 11], + [8, 6], + [1, 12], + [21, 0], + [5, -5], + [13, 10] + ], + [ + [7789, 5006], + [0, -13], + [-7, 21], + [0, 8], + [6, -7], + [1, -9] + ], + [ + [7994, 5036], + [13, -12], + [-2, -21], + [-6, -7], + [-3, 11], + [-8, -10], + [0, 26], + [2, 12], + [4, 1] + ], + [ + [7782, 5024], + [-5, -4], + [0, 20], + [5, -16] + ], + [ + [7769, 5060], + [4, -12], + [-4, 1], + [-5, 11], + [5, 0] + ], + [ + [8501, 5041], + [-3, 3], + [-3, 21], + [4, 3], + [2, -27] + ], + [ + [8483, 5079], + [15, 1], + [11, -2], + [-2, -3], + [-24, -4], + [0, 8] + ], + [ + [8620, 5085], + [2, -15], + [-6, -6], + [-14, 10], + [10, 9], + [8, 2] + ], + [ + [8458, 5089], + [22, -6], + [0, -9], + [-8, -3], + [-7, 2], + [-10, -6], + [-1, 20], + [4, 2] + ], + [ + [8762, 5091], + [20, -3], + [6, -5], + [14, -4], + [-11, -5], + [-15, 5], + [-14, 12] + ], + [ + [7940, 5097], + [5, -5], + [4, -17], + [0, -18], + [4, -16], + [14, -6], + [-5, -8], + [-2, -12], + [4, -10], + [-22, 15], + [0, 21], + [-3, 4], + [-1, 14], + [-18, 4], + [0, 8], + [7, 9], + [-3, 5], + [9, 9], + [2, -13], + [3, 1], + [-2, 12], + [4, 3] + ], + [ + [8550, 5100], + [9, -9], + [-6, -5], + [-11, -3], + [-5, 6], + [1, 9], + [6, 8], + [6, -6] + ], + [ + [8421, 5116], + [1, -14], + [3, 9], + [6, -1], + [0, -10], + [-4, -5], + [-3, 6], + [-1, -12], + [-3, 18], + [-6, -15], + [-4, 10], + [3, 13], + [8, 1] + ], + [ + [8044, 5127], + [4, -10], + [-9, -8], + [0, 18], + [5, 0] + ], + [ + [7746, 5129], + [7, -31], + [4, -7], + [-2, -11], + [-9, 6], + [-9, 29], + [3, 13], + [6, 1] + ], + [ + [8636, 5129], + [4, -8], + [-2, -16], + [-7, 6], + [-3, 15], + [8, 3] + ], + [ + [8634, 5139], + [-7, -9], + [-4, 6], + [11, 3] + ], + [ + [8761, 5145], + [12, -2], + [9, -20], + [6, -4], + [-7, -7], + [-7, 2], + [-4, 22], + [-3, -4], + [-6, 13] + ], + [ + [8536, 5138], + [-5, 0], + [3, 9], + [2, -9] + ], + [ + [8915, 5033], + [0, -218], + [-3, -12], + [3, -17], + [0, -128] + ], + [ + [8915, 4658], + [-10, 18], + [-4, 12], + [-15, 28], + [-17, -5], + [-3, 6], + [-7, -8], + [-1, 19], + [5, 19], + [-4, 4], + [-7, 18], + [13, -3], + [-12, 8], + [-4, 13], + [10, 2], + [-8, 7], + [1, 5], + [-7, 13], + [-3, 32], + [-8, 7], + [0, 12], + [-4, 8], + [-15, 20], + [-21, 12], + [-18, 18], + [-14, 4], + [-7, -1], + [-16, 20], + [1, 11], + [-4, -6], + [-5, 9], + [-1, -9], + [-5, 7], + [1, 8], + [-6, -4], + [-4, 14], + [-3, -5], + [0, 28], + [6, 6], + [-1, 9], + [-6, -11], + [0, -14], + [-7, -21], + [1, -8], + [-5, -11], + [-7, -3], + [-6, 11], + [-2, 14], + [6, 8], + [-9, 15], + [-3, 12], + [-6, 8], + [-6, -2], + [-2, 12], + [5, 5], + [10, -2], + [4, -6], + [9, 18], + [7, 5], + [7, -10], + [8, 7], + [4, 12], + [-1, 9], + [-7, -8], + [-11, 2], + [-16, -6], + [-4, 7], + [-6, -5], + [-8, 11], + [-4, 22], + [-5, 11], + [-9, 2], + [-5, -3], + [-7, 4], + [3, 13], + [5, 6], + [0, 18], + [7, 5], + [8, 0], + [10, 17], + [8, 5], + [8, -1], + [12, -10], + [6, -11], + [17, 0], + [5, -8], + [-4, -5], + [7, -22], + [-1, -12], + [-4, -7], + [2, -39], + [5, -10], + [3, -17], + [1, 17], + [5, -3], + [1, -23], + [5, -17], + [6, -6], + [11, 0], + [2, 7], + [10, 16], + [1, 11], + [9, 14], + [3, 18], + [9, -2], + [14, 10], + [-3, 16], + [19, 18], + [4, 0], + [11, -13], + [9, -4], + [5, -10], + [7, -3], + [20, -21], + [10, 3], + [16, -10], + [-2, -6], + [8, 0] + ], + [ + [7903, 5160], + [0, -12], + [-8, 7], + [6, 9], + [2, -4] + ], + [ + [8544, 5159], + [1, -17], + [6, 0], + [-1, -9], + [-5, 6], + [-5, -3], + [0, 10], + [-5, 11], + [6, 9], + [3, -7] + ], + [ + [8533, 5168], + [1, -14], + [-4, -1], + [0, 14], + [3, 1] + ], + [ + [7735, 5153], + [-4, 0], + [3, 16], + [1, -16] + ], + [ + [7881, 5163], + [-8, -1], + [3, 8], + [5, -7] + ], + [ + [8633, 5183], + [14, -10], + [-2, -13], + [-6, 2], + [-11, 13], + [8, -16], + [-6, -1], + [-1, 8], + [-9, 2], + [-2, 9], + [15, 6] + ], + [ + [7737, 5167], + [-5, 8], + [0, 8], + [5, -16] + ], + [ + [7904, 5183], + [11, -16], + [-7, 4], + [-8, -1], + [4, 13] + ], + [ + [7850, 5240], + [4, 0], + [7, -11], + [-14, -1], + [-1, 20], + [4, -8] + ], + [ + [7861, 5243], + [2, -12], + [-8, 11], + [-5, -1], + [5, 9], + [6, -7] + ], + [ + [7892, 5248], + [-1, -8], + [-5, 3], + [6, 5] + ], + [ + [7904, 5252], + [2, -10], + [-2, -11], + [-3, 13], + [-6, -3], + [2, 9], + [7, 2] + ], + [ + [7845, 5238], + [-6, 7], + [-1, 17], + [3, 2], + [5, -9], + [-1, -17] + ], + [ + [7704, 5270], + [3, -2], + [6, -18], + [6, -7], + [-2, -28], + [-4, 1], + [-3, 14], + [-5, 7], + [-8, 26], + [7, 7] + ], + [ + [7839, 5273], + [7, -4], + [0, -13], + [-10, 11], + [-2, 10], + [5, -4] + ], + [ + [8473, 5279], + [5, -11], + [-3, -3], + [-6, -26], + [-5, -5], + [-7, -25], + [-24, -11], + [-11, 3], + [-4, 10], + [-24, 0], + [-12, -4], + [-6, 6], + [-13, -7], + [-11, 7], + [-10, -4], + [-7, -19], + [-3, -19], + [3, -26], + [4, -13], + [5, -1], + [5, -12], + [2, -17], + [13, 1], + [2, 12], + [8, 18], + [5, -3], + [13, 0], + [1, 9], + [15, -2], + [7, 4], + [-7, 4], + [10, 6], + [9, -5], + [0, -20], + [-3, -4], + [-4, 11], + [-9, -3], + [-8, -23], + [-9, -17], + [-12, -6], + [-3, -12], + [-10, 8], + [0, -8], + [8, -15], + [5, -3], + [11, -32], + [7, -26], + [-5, -8], + [-1, -14], + [13, -17], + [-1, -9], + [7, -3], + [0, -15], + [-4, -6], + [-4, 6], + [-14, -7], + [-2, -7], + [2, -12], + [-12, 1], + [-5, 9], + [1, 25], + [3, 8], + [-8, 7], + [-13, 25], + [0, 9], + [5, 10], + [1, 26], + [-8, 8], + [-17, -20], + [6, -16], + [0, -25], + [-2, -12], + [1, -36], + [2, -7], + [-4, -14], + [-1, -14], + [5, -24], + [-15, -2], + [-4, -8], + [-11, 16], + [0, 14], + [3, 7], + [0, 18], + [4, 19], + [0, 23], + [-5, 19], + [2, 12], + [-6, 3], + [-10, -8], + [-3, 14], + [2, 27], + [-4, 0], + [1, 13], + [3, -1], + [7, 11], + [-1, 15], + [3, 13], + [4, 2], + [-2, 14], + [0, 26], + [5, 11], + [1, 11], + [7, 11], + [1, 50], + [3, 16], + [4, 4], + [-1, 10], + [9, 8], + [7, -3], + [6, 14], + [0, 15], + [3, 3], + [10, -7], + [5, 3], + [0, -9], + [5, -4], + [8, 2], + [8, -5], + [7, 1], + [10, -12], + [4, 8], + [19, -6], + [8, 1], + [10, 8], + [9, 23], + [10, 19], + [2, -4] + ], + [ + [7825, 5301], + [0, -16], + [-7, -2], + [-2, 18], + [9, 0] + ], + [ + [8556, 5309], + [-6, -20], + [5, -6], + [0, -25], + [-11, -20], + [3, -8], + [6, 3], + [0, 8], + [7, 8], + [-3, 5], + [3, 9], + [11, 11], + [4, -1], + [-1, -29], + [-11, -9], + [0, -14], + [11, -6], + [0, -13], + [-20, 8], + [-3, -10], + [1, -20], + [5, -25], + [10, -24], + [-11, 11], + [-5, 20], + [-5, 6], + [1, 34], + [-4, 4], + [-2, 38], + [-3, 10], + [4, 12], + [0, 12], + [4, 16], + [10, 15] + ], + [ + [8571, 5333], + [3, -7], + [-3, -21], + [-8, -7], + [-3, 16], + [5, 13], + [6, 6] + ], + [ + [7663, 5350], + [2, -7], + [14, -20], + [-5, 0], + [-14, 13], + [-4, 9], + [7, 5] + ], + [ + [8268, 5370], + [-4, 6], + [4, 4], + [0, -10] + ], + [ + [8489, 5385], + [-4, -3], + [0, 16], + [4, -13] + ], + [ + [8269, 5423], + [5, -1] + ], + [ + [8274, 5422], + [-2, -7], + [-3, 8] + ], + [ + [8008, 5418], + [2, -16], + [-2, -7], + [-8, 11], + [-1, 9], + [7, 11], + [2, -8] + ], + [ + [8265, 5422], + [-5, 1], + [11, -21], + [-1, -10], + [-15, -1], + [7, -13], + [-5, -10], + [11, -13], + [-4, -4], + [16, -37], + [-8, -15], + [1, -8], + [7, -13], + [9, -10], + [10, -16], + [6, -14], + [-7, -9], + [-16, 4], + [-8, 12], + [4, -17], + [-6, 2], + [-6, -18], + [-4, -26], + [2, -2], + [-3, -17], + [1, -14], + [4, 4], + [-3, -14], + [4, -4], + [-9, -8], + [-1, 5], + [-7, -22], + [-14, -16], + [1, -8], + [-9, -10], + [6, 1], + [-2, -24], + [6, 0], + [-2, -19], + [-4, -2], + [0, -18], + [-5, -7], + [-6, -36], + [-38, -32], + [0, 28], + [-14, 23], + [-6, -9], + [-9, 3], + [0, 12], + [-6, -6], + [-9, 20], + [-3, -10], + [3, -3], + [-14, -16], + [-9, 6], + [-7, -11], + [-4, -1], + [1, 27], + [-4, 17], + [0, -10], + [-4, -4], + [-7, 5], + [-9, -9], + [-7, 6], + [-2, -5], + [-3, 12], + [-7, -8], + [-6, 62], + [-5, 8], + [3, 3], + [2, 20], + [-4, 16], + [-7, 11], + [-7, 4], + [-2, -4], + [-7, 21], + [0, 34], + [5, -2], + [-5, 14], + [-5, 4], + [0, 20], + [3, 50], + [7, 9], + [1, 14], + [9, 9] + ], + [ + [8045, 5303], + [-3, -16], + [3, -12], + [17, -35], + [7, -8], + [8, 3], + [2, 6], + [10, 4], + [7, -6], + [9, 2], + [8, 7], + [2, 18], + [8, 7], + [15, 0], + [-2, -8], + [9, -3], + [11, -8], + [7, 12], + [16, -1], + [5, 12], + [1, 13], + [3, 2], + [-1, 20], + [12, 14], + [-4, 12], + [1, 10], + [5, 10], + [6, -1], + [4, 65], + [5, 11], + [6, -4], + [3, 5], + [7, -4], + [10, 4], + [13, 0], + [10, -12] + ], + [ + [8523, 5442], + [2, -13], + [-3, -14], + [-4, -2], + [2, 32], + [3, -3] + ], + [ + [7652, 5506], + [11, -6], + [4, -11], + [10, -6], + [12, 4], + [10, -8], + [9, 6], + [11, -21], + [3, -16], + [6, -9], + [0, -16], + [13, -17], + [3, -9], + [6, -5], + [20, -26], + [7, -15], + [-1, -13], + [3, -5], + [3, 6], + [6, -23], + [14, -21], + [-2, 19], + [6, 1], + [8, -16], + [1, -14], + [10, -6], + [12, -18], + [1, -19], + [7, -15], + [13, -3], + [5, -14], + [-13, -13], + [8, 1], + [12, 15], + [11, -13], + [2, -18], + [-7, 0], + [-6, -21], + [7, -4], + [-5, -5], + [1, -12], + [4, -12], + [9, -1], + [7, -6], + [6, 2], + [2, -16], + [1, -28], + [4, -14], + [7, -5], + [-1, -9], + [8, -5], + [13, -1], + [0, -13], + [5, -6], + [0, -10], + [6, -4], + [2, -14], + [-6, -14], + [-1, -15], + [3, -5], + [-4, -25], + [2, -13], + [0, -26], + [-2, -53], + [-7, 2], + [-7, 19], + [-3, -6], + [0, -12], + [-8, 6], + [-9, 11], + [-1, -4], + [5, -19], + [-4, -3], + [-3, 11], + [-10, 17], + [-5, 19], + [-7, 10], + [-11, 12], + [-28, 46], + [-1, 17], + [-17, 23], + [-8, 29], + [-9, 16], + [-5, 17], + [2, 7], + [-9, 34], + [0, 8], + [-5, 3], + [1, 11], + [-9, 30], + [-9, 14], + [0, 13], + [-4, 9], + [-9, 10], + [-5, 1], + [-1, 21], + [-9, 45], + [0, 20], + [-3, 0], + [-7, 14], + [-5, 2], + [-9, 14], + [-7, 6], + [-2, 27], + [-5, 5], + [-4, 14], + [-3, 5], + [-8, 23], + [-11, 6], + [-8, 21], + [-6, 5], + [-13, 28], + [-5, 27], + [-3, 6], + [0, 17], + [8, 2] + ], + [ + [4872, 8298], + [-4, 5], + [8, 13], + [4, -7], + [-8, -11] + ], + [ + [7606, 5598], + [2, -16], + [-2, -11], + [-5, 16], + [0, 9], + [5, 2] + ], + [ + [7571, 5804], + [0, -12], + [-5, 0], + [-1, 12], + [6, 0] + ], + [ + [7583, 5964], + [1, -29], + [-3, 1], + [1, -36], + [-3, -2], + [1, -13], + [-5, -6], + [2, -9], + [-2, -25], + [-5, 13], + [5, 34], + [0, 29], + [2, 1], + [0, 26], + [6, 16] + ], + [ + [7448, 6428], + [-4, 1], + [4, 13], + [0, -14] + ], + [ + [7248, 6922], + [-16, -24], + [0, -12], + [-5, -9], + [1, -17], + [-7, -14], + [9, -14], + [9, -1], + [7, -10], + [9, -6], + [2, -11], + [15, -17], + [6, 3], + [11, -14], + [7, 2], + [1, -11], + [12, -4], + [18, 0], + [8, 4], + [6, -8], + [8, -2], + [1, -18], + [8, -3], + [10, -14], + [9, 7], + [7, -16], + [4, 5], + [9, -3], + [11, -11], + [7, 7], + [9, -11], + [13, 6], + [7, -5], + [4, 17], + [0, 13], + [-6, 11], + [2, 24], + [3, 21] + ], + [ + [7703, 6808], + [0, -19], + [-13, -15], + [0, -11], + [7, -21], + [-7, 6], + [-4, 10], + [-21, -9], + [-2, -10], + [-14, -19], + [-9, -5], + [-2, -21], + [4, -12], + [-4, -6], + [0, -10], + [-10, -18], + [-2, -16], + [3, -3], + [-2, -22], + [-3, -2], + [-6, -22], + [-5, -27], + [-11, 9], + [-11, -2], + [4, -18], + [-2, -30], + [-9, -21], + [2, -34], + [-3, 1], + [-1, -12], + [-8, 9], + [-3, -10] + ], + [ + [7473, 6457], + [-4, -11], + [5, -18], + [-6, 2], + [-4, -6], + [-2, 22], + [-5, -3], + [-1, -16], + [-7, 0], + [-1, 26], + [-8, -18], + [-21, -14], + [-8, -19], + [6, -28], + [-7, -10], + [-4, -16], + [-4, -3], + [-6, -16], + [-19, -10], + [-5, 9], + [-5, -13], + [5, 1], + [-15, -26], + [-9, -26], + [-13, -29], + [-9, -8], + [-6, -10], + [-9, -22], + [-21, -21], + [-6, -16], + [3, -5], + [-1, -14], + [-6, -9], + [-11, -8], + [-10, 4], + [-4, -3], + [-1, -20], + [-10, -15], + [-1, 10], + [-6, -1], + [-9, -10], + [-3, -17], + [-2, -18], + [3, -24], + [-1, -30], + [3, -29], + [-5, -4], + [7, -9], + [0, -14], + [-3, -37], + [-8, -24], + [-4, -26], + [2, -16], + [0, -46], + [1, -17], + [-15, 0], + [-2, -15], + [-8, -21], + [-2, -13], + [5, -9], + [-20, -12], + [-5, -12], + [-2, -22], + [-2, -8], + [-16, -16], + [-7, 6], + [-11, 22], + [-7, 19], + [-6, 25], + [-3, 32], + [4, -10], + [0, 11], + [-6, 7], + [-2, 18], + [-6, 30], + [-1, 14], + [-9, 36], + [-9, 17], + [-6, 25], + [-6, 34], + [-2, 33], + [-8, 39], + [-1, 14], + [-7, 14], + [-2, 12], + [-4, 5], + [0, 15], + [-3, 4], + [-4, 24], + [-4, 8], + [-5, 29], + [-1, 37], + [-5, 30], + [-6, 45], + [1, 7], + [-3, 22], + [-1, 23], + [-3, 24], + [2, 33], + [4, 12], + [-2, 36], + [-3, -4], + [-3, 11], + [2, 16], + [12, 11], + [-16, -3], + [2, 14], + [-2, 14], + [9, 5], + [-13, 4], + [-2, -15], + [-8, -7], + [8, -18], + [-6, -25], + [-17, -17], + [-14, -11], + [-5, 0], + [-10, 9], + [-11, 17], + [-15, 33], + [-15, 29], + [0, 10], + [7, 1], + [0, -9], + [14, 12], + [3, -3], + [9, 7], + [7, 23], + [-10, -1], + [-9, -10], + [-13, 5], + [-11, 10], + [-9, 15], + [-4, 19], + [-6, 14] + ], + [ + [6893, 6556], + [5, 7], + [10, 0], + [0, 19], + [13, -3], + [11, 2], + [5, -7], + [6, 0], + [3, 8], + [13, 7], + [0, -8], + [6, -3], + [9, 10], + [-4, 12], + [3, 3], + [-5, 27], + [-6, 14], + [0, 17], + [-10, 1], + [-6, 14], + [2, 35], + [-9, 2], + [-10, 11], + [1, 17], + [10, 20], + [6, 22], + [7, 12], + [6, 1], + [4, -16], + [4, -2], + [9, 7], + [20, 8], + [0, 9], + [8, 16], + [5, 21], + [16, 16], + [9, 29], + [3, 22], + [12, 8], + [4, 7], + [-2, 10], + [6, 11], + [6, 19], + [10, 12], + [-4, 2], + [3, 17], + [-2, 24], + [7, 10], + [14, 8], + [1, 10], + [-8, 8], + [-11, 2], + [0, 14], + [-9, 2], + [0, 13], + [-9, 10], + [4, 22], + [-5, 5], + [1, 10], + [7, 10], + [-9, 1], + [1, 16], + [-5, 3], + [4, 19], + [13, 6], + [7, -5], + [16, -2], + [11, -9], + [11, 11], + [17, 3], + [3, 10], + [5, 1], + [4, 11] + ], + [ + [7140, 7205], + [20, 22] + ], + [ + [4825, 8298], + [2, -37], + [6, -29], + [-6, -16], + [-4, -28], + [-10, 1], + [-8, -4], + [-12, 0], + [-5, -10], + [-7, 0], + [-4, -8], + [-7, -1], + [-12, -14], + [-20, 0], + [-11, -8], + [10, 14], + [-20, -4], + [12, 13], + [-11, -6], + [-7, 10], + [13, 14], + [-15, -2], + [5, 10], + [13, -2], + [-1, 11], + [8, 12], + [-10, -5], + [12, 12], + [5, 21], + [10, 8], + [-16, -2], + [-14, 9], + [-3, 9], + [6, 13], + [0, 24], + [-5, 4], + [22, 4], + [23, -3], + [-5, 4], + [12, 9], + [3, 8], + [-15, -1], + [-2, 7], + [10, 6], + [2, 18], + [15, 2], + [6, -6], + [4, 17], + [13, -9], + [-9, -9] + ], + [ + [6560, 6732], + [-4, -9], + [-5, 0], + [-16, -12], + [0, 7], + [13, 7], + [13, 13], + [-1, -6] + ], + [ + [6357, 7396], + [3, -38], + [4, -9], + [9, -7], + [13, -2], + [9, -5], + [2, -13], + [21, -24], + [23, -9], + [43, 18], + [16, -4], + [-3, 30] + ], + [ + [6497, 7333], + [8, -1], + [16, 11], + [1, 13], + [9, 13], + [9, 7], + [24, 0], + [3, 10], + [17, -4], + [5, 4], + [3, -17], + [23, -10], + [8, -9], + [10, 3], + [11, -10], + [10, -21], + [13, -7], + [8, -22], + [23, 0], + [2, -31], + [-3, -8], + [4, -5], + [0, -15] + ], + [ + [6689, 6902], + [14, -27], + [0, -8], + [6, -21], + [10, -20], + [14, -8], + [5, -10], + [5, -1], + [-1, -12], + [2, -18], + [-1, -26], + [11, 2], + [4, -8], + [-4, -17], + [0, -11], + [-12, 0], + [-12, -7], + [-2, -10], + [-11, -7], + [-7, -59] + ], + [ + [6710, 6634], + [-5, -8], + [-10, 9], + [-12, 4], + [-1, 9], + [-5, -6], + [-24, 3], + [-2, 4], + [-12, -4], + [-6, 10], + [-7, 2], + [-14, -2], + [-4, 8], + [-17, 5], + [-4, 19], + [-4, 42], + [-6, 17], + [-11, 3], + [-8, -2], + [-5, -8], + [-9, -4], + [-3, -11], + [-6, 2], + [-13, -17], + [-11, 5], + [-3, 7], + [-17, 0], + [-8, 16], + [-10, 6], + [-13, 16], + [-4, 16], + [-12, 11], + [-9, -1], + [-8, 6], + [-9, 35], + [0, 12], + [-8, 13], + [2, 10], + [-6, 0], + [1, 16], + [-15, 30], + [0, 10], + [-5, 6], + [-11, -12], + [-2, 9], + [-7, -1], + [-9, 13], + [8, -1], + [0, 9], + [-9, -8], + [1, -20], + [-11, -4] + ], + [ + [6347, 6908], + [-3, 15], + [-11, 14], + [0, 31], + [-9, 0], + [0, 23], + [4, 21], + [-9, 22], + [-5, 19], + [-6, -1], + [-14, 21], + [-16, 15], + [4, 5], + [-4, 15], + [-11, 15], + [-5, 22], + [3, 14], + [-4, 8], + [2, 8], + [6, -3], + [-2, 9], + [7, 21], + [7, 2], + [1, 7], + [-6, 16], + [1, 10], + [6, 2], + [-4, 9], + [-6, -3], + [-14, 14], + [-3, 21], + [-5, 0], + [-1, 18], + [-6, 5], + [2, 12], + [-3, 7] + ], + [ + [6243, 7322], + [0, 10], + [-6, 6], + [1, 17], + [-10, 17], + [6, 20], + [-4, 0], + [-3, 45], + [-5, 13], + [11, 4], + [4, 19], + [7, -7] + ], + [ + [6347, 6908], + [-13, 5], + [-3, -3] + ], + [ + [6331, 6910], + [-7, 6], + [-9, 0], + [-6, -5], + [-8, -33], + [-9, -20] + ], + [ + [6292, 6858], + [-5, -2], + [-46, 8], + [-62, 91], + [-11, 18], + [-47, 49], + [-34, 10] + ], + [ + [6087, 7032], + [4, 8], + [-7, 3], + [0, 11], + [-8, 51] + ], + [ + [6076, 7105], + [4, 3], + [43, 44], + [14, 11], + [7, 22], + [1, 40], + [3, 8], + [-2, 23] + ], + [ + [6146, 7256], + [0, 0] + ], + [ + [6146, 7256], + [0, 20], + [3, 10], + [13, 5], + [15, 26], + [-1, 3] + ], + [ + [6176, 7320], + [6, 2], + [6, 13], + [9, 0], + [10, -7], + [12, -2], + [8, 4], + [1, -18], + [11, 12], + [4, -2] + ], + [ + [4554, 9014], + [7, -14], + [12, -7], + [12, 13], + [-4, -20], + [10, 2], + [-2, -20], + [12, 4], + [0, -8], + [21, -10], + [-4, -10], + [6, -8], + [-13, -25], + [-13, -4], + [-2, -15], + [-24, -8], + [-39, -26], + [-31, -6], + [-1, -11], + [-23, -7], + [-27, 8], + [-12, 0], + [-28, 20], + [-42, -4], + [4, 9], + [14, 4], + [10, 10], + [2, 11], + [-13, -6], + [-9, 29], + [-32, 1], + [-11, -4], + [-3, 8], + [23, 2], + [15, 8], + [25, -2], + [-21, 7], + [22, 16], + [-39, 7], + [-20, -9], + [-18, 6], + [7, 8], + [12, -7], + [-8, 15], + [17, -5], + [-9, 12], + [10, 17], + [20, -8], + [-5, 7], + [9, 16], + [11, -11], + [25, -14], + [-2, -19], + [9, -29], + [0, 13], + [9, 15], + [9, -10], + [5, 13], + [-5, 20], + [9, 3], + [13, -22], + [6, -1], + [-1, 19], + [22, 6], + [16, -26], + [-6, 27], + [10, -1], + [10, -11], + [12, 14], + [6, -6], + [13, 3], + [-3, 19], + [15, 2] + ], + [ + [5993, 7068], + [-6, -5], + [0, -15] + ], + [ + [5987, 7048], + [-10, 8], + [-6, -14], + [0, -19], + [6, -9], + [-7, -11], + [-2, -14], + [10, 1], + [5, 6] + ], + [ + [5983, 6996], + [0, -9] + ], + [ + [5983, 6987], + [0, -6] + ], + [ + [5983, 6981], + [1, -8] + ], + [ + [5984, 6973], + [-8, -34], + [0, -21], + [-6, -33] + ], + [ + [5970, 6885], + [-2, -4] + ], + [ + [5951, 6980], + [8, 18], + [-2, 4] + ], + [ + [5957, 7002], + [7, 21], + [6, 44], + [5, 21] + ], + [ + [5975, 7088], + [10, 0], + [1, 9], + [8, 10] + ], + [ + [5994, 7107], + [-1, -9], + [3, -19], + [-3, -11] + ], + [ + [5434, 7386], + [-12, -29], + [-3, -25], + [6, -18], + [-6, -11], + [1, -8], + [-10, 1], + [-8, 6], + [-3, 10], + [-7, 8], + [-7, -1], + [-25, 27], + [-10, 1], + [-4, 6], + [0, 19], + [7, 6], + [6, -6], + [4, 10], + [7, 1], + [10, -13], + [9, 4], + [9, -2], + [17, 10], + [4, -4], + [12, 11], + [3, -3] + ], + [ + [5256, 7557], + [8, -6], + [8, -34], + [-5, -14], + [3, -13], + [-2, -30], + [-6, -24], + [-10, 6], + [-5, -19], + [-8, 0], + [-7, 17], + [5, 39], + [-4, 1], + [2, 23], + [-5, 17], + [-4, 0], + [2, 16], + [8, -2], + [9, 6], + [11, 17] + ], + [ + [5380, 7862], + [-9, -16], + [7, -7], + [-4, -8], + [3, -12], + [8, -10], + [-5, -1] + ], + [ + [5380, 7808], + [1, 7], + [-18, 1], + [-3, -5], + [-16, -12], + [-4, 2], + [-1, -16], + [9, -13], + [-6, -7], + [-2, -13], + [2, -18], + [8, -16], + [9, -7], + [19, -21], + [12, -54], + [18, -28], + [12, -11], + [25, 0], + [4, -9], + [-8, -15], + [19, -17], + [13, -7], + [14, -18], + [13, -8], + [0, -6], + [12, -15], + [2, -10], + [-4, -18], + [-9, 6], + [-5, 23], + [-11, 0], + [-14, 11], + [-11, -25], + [-2, -21], + [9, -5], + [9, -11], + [-1, -29], + [-11, -1], + [-5, -8], + [1, -18], + [-8, -10], + [-8, -20], + [-10, 4], + [0, 15], + [5, 3], + [3, 12], + [-3, 8], + [9, 5], + [2, 12], + [-4, 8], + [-2, 21], + [-4, 6], + [-2, 20], + [-7, 11], + [-5, -5], + [-12, 13], + [2, 8], + [-6, 18], + [-8, 1], + [-5, 8], + [-7, 3], + [-10, 22], + [-10, 1], + [-8, -3], + [-5, 11], + [-7, 2], + [-12, 24], + [-10, 10], + [-8, 18], + [-10, 5], + [-3, 12], + [-9, 9], + [1, 6], + [-8, 2], + [1, 18], + [-7, 17], + [0, 14], + [-5, 13], + [-7, 1], + [-16, 17], + [-15, 5], + [-14, -19], + [-3, -11], + [-17, -6] + ], + [ + [5344, 7711], + [0, 0] + ], + [ + [5345, 7596], + [0, 0] + ], + [ + [2849, 6246], + [15, -3], + [3, -8], + [12, -7], + [4, -14], + [-9, -3], + [-10, 6], + [-1, -7], + [-6, 3], + [-1, -11], + [-7, 10], + [-8, -1], + [-7, 10], + [-3, 10], + [-8, 2], + [5, 12], + [10, 5], + [11, -4] + ], + [ + [6087, 7032], + [-4, -6], + [-57, -30], + [15, -28], + [13, -29], + [-9, -10], + [-4, -18], + [-21, -8], + [-7, -22], + [-12, -17], + [-31, 9] + ], + [ + [5970, 6873], + [0, 12] + ], + [ + [5984, 6973], + [-1, 8] + ], + [ + [5983, 6987], + [4, 0], + [0, 25] + ], + [ + [5987, 7012], + [0, 36] + ], + [ + [5993, 7068], + [7, -5], + [10, -16], + [12, -3], + [54, 61] + ], + [ + [8563, 6721], + [-5, -10], + [-7, -5], + [-4, -21], + [0, 20], + [7, 8], + [-3, 7], + [7, -1], + [4, 12], + [1, -10] + ], + [ + [8603, 6820], + [-13, -15], + [0, 9], + [11, 11], + [2, -5] + ], + [ + [8624, 6937], + [5, -5], + [-7, -8], + [2, 13] + ], + [ + [8639, 6942], + [-5, -5], + [6, 22], + [-1, -17] + ], + [ + [8616, 7056], + [0, -12], + [-6, -7], + [1, 18], + [5, 1] + ], + [ + [8578, 7069], + [-1, -10], + [-6, 2], + [7, 8] + ], + [ + [8638, 7135], + [3, -16], + [7, -3], + [9, 6], + [1, -15], + [-5, -9], + [10, 1], + [0, -17], + [5, -2], + [-11, -22], + [-6, -38], + [0, -16], + [-3, -14], + [-7, 5], + [1, -11], + [-12, -13], + [2, 20], + [-5, 12], + [-2, -4], + [0, -22], + [-9, 5], + [4, 18], + [-5, 12], + [1, 21], + [2, -2], + [8, 19], + [-2, 11], + [3, 12], + [-5, 15], + [-8, 2], + [7, -19], + [-6, -11], + [1, 11], + [-10, -10], + [-6, 18], + [1, 10], + [4, -14], + [5, -1], + [-1, 10], + [-11, 11], + [1, 10], + [6, -2], + [18, 22], + [2, 9], + [6, 4], + [7, -3] + ], + [ + [8726, 7162], + [8, -9], + [5, 1], + [-1, -13], + [4, -10], + [-10, -11], + [-5, -23], + [-8, 15], + [-5, 2], + [-13, -11], + [0, -7], + [-7, -11], + [-1, -16], + [-10, 0], + [3, 9], + [-6, 1], + [-6, 31], + [11, 14], + [2, 17], + [6, 6], + [5, -10], + [10, 2], + [3, 14], + [8, 9], + [7, 0] + ], + [ + [8747, 7160], + [-3, -8], + [-3, 8], + [8, 15], + [-2, -15] + ], + [ + [8595, 7181], + [-2, -23], + [-3, 4], + [1, 16], + [4, 3] + ], + [ + [8845, 7375], + [1, -10], + [-6, -6], + [-1, 17], + [8, 13], + [-2, -14] + ], + [ + [8923, 7564], + [5, 3], + [-1, -34], + [2, -14], + [8, -11], + [5, -22], + [4, -26], + [-5, -14], + [0, -12], + [-7, -6], + [-5, -25], + [1, -17], + [-6, 9], + [-7, -6], + [-3, -24], + [3, -14], + [-2, -39], + [-5, -8], + [-5, -19], + [-1, -20], + [8, -27], + [-11, -7], + [-2, -21], + [-16, -17], + [2, 30], + [5, 11], + [-8, 0], + [-4, -12], + [1, -16], + [-7, 11], + [-8, -5], + [0, -21], + [-9, -16], + [-1, 25], + [-6, 4], + [-6, -11], + [-4, -18], + [-17, 5], + [-15, -6], + [7, 9], + [-13, 1], + [0, 16], + [-5, -3], + [-3, -22], + [9, -9], + [1, -10], + [-7, 3], + [-10, -9], + [0, -10], + [-6, -8], + [-3, -15], + [-5, -7], + [-10, 5], + [-1, 8], + [-9, 11], + [3, 8], + [-3, 14], + [10, 17], + [-2, 9], + [-11, -4], + [-6, 7], + [-7, 0], + [-20, -18], + [-10, 1], + [-3, -9], + [-6, 2], + [-15, -9], + [-1, 9], + [-8, -6], + [-2, -24], + [-11, 13], + [-16, -7], + [-4, 7], + [-3, -8], + [-1, 25], + [3, 5], + [12, -1], + [3, 10], + [7, 5], + [17, 28], + [7, 7], + [-1, 9], + [17, 8], + [5, -8], + [24, 6], + [7, 7], + [11, -2], + [8, 7], + [-1, -12], + [13, -4], + [12, 10], + [-3, 18], + [5, 16], + [7, 8], + [10, 28], + [-1, 26], + [11, 10], + [6, 1], + [-3, -13], + [-9, -5], + [4, -6], + [-2, -13], + [10, -6], + [3, 10], + [21, 13], + [10, 12], + [10, 29], + [14, 15], + [1, 16], + [9, 23], + [3, 24], + [4, 10], + [1, 17], + [-4, 11], + [-5, -3], + [7, 19], + [1, 11], + [-5, 13], + [5, 10], + [7, 3], + [1, 26], + [9, -5], + [3, -20], + [3, 9], + [8, -6], + [3, 19], + [-13, -5], + [3, 23], + [10, -10] + ], + [ + [8944, 7799], + [15, -24], + [4, -13], + [19, -27], + [11, -7], + [0, -6], + [12, 0], + [3, -7], + [13, -4], + [15, 25], + [1, -8], + [-7, -17], + [-1, -9], + [8, -28], + [8, 6], + [-4, -12], + [-6, 0], + [-8, -10], + [-27, -4], + [-11, -14], + [-8, -20], + [-3, -23], + [-8, 11], + [-14, 9], + [-8, 11], + [-12, 9], + [-8, -3], + [-12, -15], + [-9, 15], + [-5, 0], + [-6, -18], + [12, -8], + [13, -20], + [-13, -1], + [-8, -7], + [-6, -13], + [-7, 10], + [5, 14], + [-3, 17], + [-7, 6], + [3, 26], + [12, 7], + [5, 11], + [-5, 13], + [6, 8], + [8, -9], + [10, -3], + [7, 10], + [-3, 22], + [9, 14], + [0, 22], + [3, 6], + [1, 20], + [-6, 23], + [3, 12], + [9, 3] + ], + [ + [6762, 7807], + [-15, 8], + [-3, 11], + [1, 13], + [12, 14], + [11, -3], + [7, -11], + [1, -13], + [-4, -11], + [-10, -8] + ], + [ + [7140, 7205], + [-9, 31] + ], + [ + [6651, 7782], + [-20, 19] + ], + [ + [6631, 7801], + [12, 18], + [8, -37] + ], + [ + [7227, 7611], + [-6, 13], + [-15, 4], + [-12, 17], + [-14, 6], + [-14, 0], + [-19, 2], + [-14, 5], + [-13, -5], + [-16, 1], + [-3, -6], + [-13, 2], + [-12, 8], + [-12, 13], + [-21, -10], + [-5, -27], + [3, -9], + [-22, 14], + [-27, 9], + [-10, -1], + [-10, -13], + [-5, -15], + [3, -3] + ], + [ + [6970, 7616], + [-6, -3], + [-4, -11], + [-4, 5], + [-9, -16], + [-20, -15], + [0, -5], + [-10, -5], + [0, -10], + [-13, -17], + [1, -19], + [-4, 0], + [-13, 13], + [4, 14], + [-5, 7], + [-33, -3], + [-5, 20], + [-2, 30], + [-14, 0], + [2, 57], + [-8, -7], + [-8, 26], + [-7, 5], + [-10, 19], + [-12, -10], + [-37, 4], + [-32, -8], + [-23, 38], + [-2, 12], + [-28, 28] + ], + [ + [6668, 7765], + [0, 34], + [-2, 9], + [-7, -1], + [3, 20], + [17, -5], + [8, 16], + [12, 7], + [2, 14], + [-11, 2], + [-3, 9], + [-13, 3], + [-8, -7], + [4, -13], + [17, 0], + [2, -11], + [-4, -6], + [-24, 2], + [-2, 12], + [-7, 0], + [7, -14], + [-3, -17], + [-8, -6], + [-4, 5], + [4, 13], + [-15, -3], + [-6, -23] + ], + [ + [6627, 7805], + [-73, -31], + [0, -212] + ], + [ + [6554, 7562], + [-14, -3], + [-15, 32], + [0, 6], + [-20, 23], + [-20, -3], + [-14, -9], + [-15, -21] + ], + [ + [6456, 7587], + [-1, 20], + [6, 15], + [3, 22], + [-15, 9], + [-8, -3], + [-6, 18], + [-12, 0], + [1, 23], + [-4, 4], + [-8, 33], + [-17, 9], + [1, 17], + [16, -1], + [4, -6], + [16, -2], + [-17, 20], + [12, 28], + [9, 5], + [22, 0], + [11, -6], + [10, 2], + [-15, 10], + [0, 6], + [9, 18], + [4, 40], + [-8, 19], + [-13, 2], + [-10, -10], + [-16, 14], + [-9, 3], + [-12, -11], + [-9, -2], + [-18, -21], + [-13, 2], + [-2, -14] + ], + [ + [6367, 7850], + [-9, 9], + [-10, 5], + [0, 12], + [6, -6], + [7, 6], + [-9, 19], + [-4, 15], + [-14, 23], + [-11, 0], + [-7, 5], + [-1, -9], + [-7, 7], + [0, 26], + [-18, 8], + [8, 30], + [8, 10], + [-7, 14], + [3, 28], + [12, 12], + [-1, 14], + [9, 9], + [22, -37], + [13, 11], + [-5, 20], + [0, 13], + [20, 17], + [0, 15], + [11, 0], + [15, 12], + [6, 17], + [5, 6], + [14, -3], + [1, -11], + [11, -1], + [6, 12], + [11, 6], + [5, -16], + [23, 0], + [9, -7], + [1, -9], + [7, -1], + [6, -13], + [10, -7], + [-3, -16], + [8, 2], + [1, 24], + [10, -13], + [16, -15], + [13, 11], + [11, 20], + [18, 0], + [5, -11], + [11, 1], + [1, 13], + [22, -4], + [0, -11], + [10, -11], + [16, -3], + [1, -9], + [7, 4], + [5, 18], + [9, -10], + [15, -1], + [17, 10], + [2, 19], + [4, 6], + [-7, 11], + [-10, 1], + [-3, 8], + [-16, 3], + [3, 8], + [-12, 4], + [11, 15], + [7, 1], + [10, 11], + [-10, 23], + [22, 16], + [17, -3], + [1, 7], + [-13, 9], + [-14, 3], + [2, 12], + [-6, 8], + [5, 11], + [-6, 3], + [12, 10], + [4, -6], + [43, 7], + [25, 14], + [25, 5], + [9, -4], + [-1, 10], + [7, 7], + [15, -1], + [15, 6], + [33, 8], + [13, 6], + [2, 13], + [10, 0], + [2, 9], + [8, -4], + [-1, 9], + [8, -6], + [13, 0], + [14, -11], + [8, 9], + [14, -12], + [1, -18], + [6, -3], + [-1, -23], + [-6, 0], + [6, -13], + [3, 6], + [11, -4], + [10, 5], + [3, 9], + [9, -14], + [-3, -13], + [9, 3], + [-4, 10], + [11, -1], + [3, -8], + [11, -2], + [8, 7], + [-3, -12], + [-6, 1], + [-6, -17], + [6, -8], + [13, 12], + [14, -10], + [1, 12], + [9, 9], + [7, -2], + [12, 11], + [-2, 4], + [31, 15], + [12, 8], + [-7, -19], + [-8, 1], + [3, -9], + [34, -36], + [7, -11], + [42, -97], + [12, -38], + [15, 7], + [-1, 14], + [6, 6], + [15, -7], + [-3, -15], + [9, 2], + [2, -13], + [11, 3], + [6, -4], + [17, 5], + [18, 12], + [13, -7], + [11, -20], + [0, -15], + [23, -14], + [-2, -7], + [9, -19], + [19, -1], + [6, -7], + [12, 20], + [0, -10], + [12, -22], + [7, -9] + ], + [ + [6163, 5412], + [-17, -50], + [-9, -17], + [0, -175], + [1, -39], + [15, -39], + [0, -7] + ], + [ + [6153, 5085], + [-6, -15], + [-9, -4], + [-4, -20], + [-5, -9], + [-5, 0], + [-9, -13], + [2, -12], + [-3, -18], + [-6, -12], + [-3, -25], + [-4, -11], + [-7, -30], + [-6, -3] + ], + [ + [6088, 4913], + [-21, 33], + [-19, 27], + [-5, 13], + [4, 6], + [-1, 14], + [-100, 116] + ], + [ + [5946, 5122], + [3, 12], + [-4, 7], + [0, 10], + [4, 7], + [9, -1], + [-2, 6], + [11, 4], + [-4, 11], + [-10, -6], + [2, -6], + [-9, 7], + [-3, 12], + [1, 12] + ], + [ + [5944, 5197], + [4, 21], + [7, 12], + [2, 15], + [9, 9], + [2, 18], + [3, 6], + [0, 26], + [-3, 18], + [2, 3], + [-14, 40], + [-2, 17], + [2, 13], + [-8, 5], + [-3, 24], + [-2, 2] + ], + [ + [5943, 5426], + [11, 23], + [15, 14], + [14, 9], + [4, -7], + [2, -16], + [8, 0] + ], + [ + [7045, 7454], + [-13, -5], + [-15, 2], + [-9, -5], + [-2, -6], + [-5, 10], + [-7, -7], + [-2, 12], + [-8, 8], + [-12, -11], + [-8, -1], + [-4, 11], + [-36, -5], + [-2, 14], + [7, 20], + [14, 6], + [18, -12], + [1, 7], + [8, 8] + ], + [ + [6970, 7500], + [12, 3], + [11, -7], + [9, 15], + [8, -3], + [0, 14], + [7, -6], + [4, 9], + [10, 8], + [-13, 3], + [-5, 9], + [-9, -1], + [0, 10], + [-8, 0], + [-6, 22], + [-1, -10], + [-6, -2], + [0, -13], + [-6, -1], + [-12, 7], + [-4, 14], + [-4, -4], + [-9, 10], + [8, 7], + [22, 29], + [-8, 3] + ], + [ + [6976, 7489], + [-6, 4], + [2, -14], + [4, 10] + ], + [ + [6993, 7480], + [0, 0] + ], + [ + [6961, 7477], + [0, 0] + ], + [ + [7901, 5783], + [-6, 7], + [-11, 2], + [-7, -4], + [-3, 5], + [5, 13], + [0, 15], + [-4, 5], + [-3, -16], + [-9, 2], + [-2, 38], + [-3, 3] + ], + [ + [7858, 5853], + [0, 7], + [-6, 22], + [0, 22], + [-6, 7], + [0, 21], + [-3, 7], + [-2, 25], + [6, 0], + [10, 26], + [1, 11], + [9, 8], + [12, 5], + [9, -5], + [5, 3], + [11, -2], + [5, 4], + [6, -3], + [2, -10], + [4, 8] + ], + [ + [7921, 6009], + [3, -14], + [13, -1], + [3, -9], + [6, -1], + [2, 7], + [-6, 19], + [7, 7], + [6, -2], + [3, 6], + [8, -14], + [4, 0], + [8, 11], + [5, 2], + [2, 10] + ], + [ + [7985, 6030], + [0, -14], + [-3, -2], + [-2, -19], + [3, -10], + [0, -10], + [5, -22], + [-5, -20], + [4, -24], + [-2, -15], + [-2, -6], + [-4, 5], + [-8, -14], + [-8, -7], + [-8, -1], + [0, -17], + [-11, 7], + [-4, -13], + [-1, -15], + [9, -13], + [1, -17], + [-9, 3], + [-3, 10], + [-10, -2], + [-3, -7], + [-7, 6], + [1, -11], + [-6, -13], + [-9, 0], + [-2, -6] + ], + [ + [627, 5299], + [5, -18], + [-8, 8], + [3, 10] + ], + [ + [8522, 7115], + [1, -14], + [-17, -6], + [-2, 8], + [5, 8], + [13, 4] + ], + [ + [8508, 7172], + [1, -8], + [-7, 2], + [6, 6] + ], + [ + [8575, 7196], + [-1, -14], + [-5, 11], + [6, 3] + ], + [ + [8518, 7361], + [8, 22], + [5, 6], + [27, 0], + [7, 17] + ], + [ + [8565, 7406], + [7, -27], + [14, -31], + [6, -25], + [4, -25], + [-2, -7], + [-1, -33], + [4, -6], + [-2, -25], + [-9, -23], + [-18, 0], + [-1, -15], + [-3, 6], + [-17, 1], + [-2, -20], + [-4, 14], + [0, -13], + [-5, -9], + [-3, 13], + [-6, -5], + [-3, -11], + [-4, 3], + [-4, -10], + [-2, 15], + [-7, 2], + [0, 9], + [6, -7], + [2, 11], + [-4, 1], + [-2, 18], + [2, 17], + [6, 9], + [-4, 4], + [8, 7], + [-7, 10], + [5, 1], + [-5, 11], + [-1, 31], + [-3, 8], + [3, 12], + [7, -1], + [-6, 42], + [4, 3] + ], + [ + [5598, 7616], + [-9, -9], + [-3, 6], + [-10, -8], + [0, -11], + [-5, 0] + ], + [ + [5557, 7633], + [8, 15] + ], + [ + [5565, 7648], + [9, 17], + [-2, 6], + [14, -7], + [8, -19], + [10, -5], + [-6, -24] + ], + [ + [6338, 6909], + [5, -15], + [-4, -7], + [-5, 12], + [4, 10] + ], + [ + [6345, 6826], + [-22, 0], + [-6, 27], + [-25, 5] + ], + [ + [6331, 6910], + [7, -26], + [-6, 2], + [-7, -12], + [10, -1], + [2, -19], + [8, -28] + ], + [ + [7836, 6473], + [2, -9], + [8, -12], + [6, -22], + [2, 9], + [5, -5], + [0, -9], + [-2, -23], + [7, -19], + [15, -11], + [2, 8], + [9, 10], + [5, -4], + [9, -13], + [-1, -9], + [-6, -3], + [9, -6], + [0, -8], + [7, -2], + [0, -11], + [-2, -10], + [-9, -12], + [-8, 6], + [-4, -15], + [-6, -7], + [18, -21], + [4, -8], + [9, -5], + [5, -6], + [-2, -12], + [6, -14], + [5, 0], + [7, -30], + [13, -24], + [9, -17], + [0, -18], + [4, -11], + [5, 5], + [4, -14], + [8, -12], + [4, -1], + [-1, -8], + [-6, -5], + [2, -12], + [7, -8], + [5, -12], + [-5, -33] + ], + [ + [7921, 6009], + [9, 11], + [0, 20], + [1, 5], + [-3, 11], + [3, 6], + [2, 24], + [-5, 5], + [0, 13], + [-11, 7], + [0, 8], + [-8, 15], + [0, 29], + [2, 20], + [-3, 9], + [-7, 7], + [-6, 14], + [-7, 24], + [-18, 8], + [-2, -10], + [-9, -15], + [-9, -6], + [-16, 16], + [-4, -9], + [-19, -26], + [-4, -7], + [-5, 6], + [3, 19], + [4, 9], + [0, 17], + [-3, 3], + [5, 14], + [0, 15], + [3, 7], + [-3, 6], + [-1, 19], + [2, 7], + [-12, 2], + [-2, -7], + [-7, 0], + [-3, 9], + [3, 29], + [-5, 15], + [-6, -5] + ], + [ + [7780, 6353], + [0, 15], + [7, 14], + [4, -1], + [0, 13], + [6, 16], + [3, 0], + [9, 14] + ], + [ + [5975, 7088], + [14, 52], + [1, 19], + [9, 12], + [0, 7] + ], + [ + [5999, 7178], + [13, -3], + [4, -23], + [-9, -14], + [2, -8], + [-6, 2], + [-6, -12], + [3, -5], + [-6, -8] + ], + [ + [4790, 5433], + [-19, 13], + [-21, 22], + [-9, 12], + [-21, 40], + [-9, 19], + [-12, 7], + [-1, 10], + [-14, 13], + [-3, 12] + ], + [ + [4681, 5581], + [3, 14], + [6, 12], + [15, 23], + [0, 16], + [8, 8], + [1, 17] + ], + [ + [5693, 6449], + [0, -115], + [-27, 0], + [0, -28] + ], + [ + [5666, 6306], + [-66, 66], + [-3, 4], + [-45, 45], + [-34, 36], + [-45, 45], + [-30, 31], + [-27, -26] + ], + [ + [5416, 6507], + [-22, -22], + [-20, 33], + [-42, 19] + ], + [ + [5264, 6924], + [10, 7], + [11, 30], + [-5, 31], + [6, 17], + [5, 1], + [10, 22], + [19, 18], + [-2, 10], + [1, 34] + ], + [ + [5319, 7094], + [10, -6], + [12, -14], + [15, -2], + [14, 6], + [6, -6], + [17, -5], + [8, -12], + [20, -6], + [5, -13], + [0, -14], + [7, -25], + [4, -7], + [17, -9], + [10, 0], + [18, -8], + [23, -18], + [3, -7], + [18, -22], + [8, 0], + [14, 14], + [10, 24], + [1, 18], + [-6, 24], + [0, 16], + [3, 12], + [15, 24], + [14, 13], + [10, 1], + [5, 7], + [21, -3], + [21, -14], + [-1, -18], + [6, -6], + [19, -7], + [2, -5], + [25, -2], + [5, -18] + ], + [ + [3307, 5973], + [-4, 11], + [5, 10], + [-1, -21] + ], + [ + [7235, 5735], + [7, -13], + [17, -49], + [5, -36], + [5, -8], + [4, -24], + [0, -20], + [-2, -22], + [-12, -22], + [-22, -17], + [-9, 5], + [-4, 7], + [-7, 43], + [-1, 50], + [1, 40], + [2, 10], + [0, 17], + [6, 17], + [-2, 7], + [4, 10], + [6, 1], + [-14, 10], + [2, 7], + [7, -3], + [7, -10] + ], + [ + [5798, 3530], + [6, -12], + [10, -10], + [3, -14], + [-4, -17], + [-5, -7], + [1, -10], + [-8, -9], + [-13, -4], + [-5, -7], + [-4, -22], + [-8, 2], + [-16, 35], + [-5, 22], + [8, 6], + [12, 35], + [8, 2], + [4, 10], + [13, 8], + [3, -8] + ], + [ + [5582, 8366], + [-1, 0] + ], + [ + [5581, 8366], + [1, 0] + ], + [ + [5652, 8289], + [0, 9], + [-14, 16], + [-6, -1] + ], + [ + [5632, 8313], + [-3, 6], + [5, 24], + [-8, 11], + [-15, 1], + [-21, 9] + ], + [ + [5590, 8364], + [-6, 32], + [0, 16] + ], + [ + [5584, 8412], + [8, 9], + [22, 11], + [15, -4], + [8, 3], + [29, -5], + [4, -4], + [22, 8], + [5, -12], + [15, -2], + [26, -28] + ], + [ + [5759, 8496], + [14, -14], + [-6, -26], + [14, -17], + [0, -23] + ], + [ + [5584, 8412], + [-2, 19], + [2, 24], + [10, 12], + [0, 15], + [8, 15], + [22, 11], + [18, -21], + [4, -17], + [12, -7], + [19, 15], + [-2, 37] + ], + [ + [3249, 6221], + [-2, 2] + ], + [ + [3247, 6223], + [2, -2] + ], + [ + [4851, 7247], + [2, -14], + [14, -21], + [11, -5], + [19, 8], + [6, -5], + [15, 7] + ], + [ + [4919, 7214], + [2, -9], + [17, -2] + ], + [ + [4758, 6776], + [-3, 0], + [1, -30], + [-18, -3], + [-7, -11], + [-16, -2], + [-9, 7], + [-10, 1], + [-13, -7], + [2, -15], + [-4, -6], + [-8, -25], + [-8, -3], + [-4, -23], + [-3, -30], + [-3, -13], + [-6, -12], + [-12, -16], + [-6, -22], + [-16, -16], + [-4, -13], + [-6, -53], + [0, -16], + [-12, -26], + [1, -7], + [-4, -14], + [-11, -4], + [-22, 4], + [-18, -1], + [-12, -4] + ], + [ + [4527, 6416], + [1, 21], + [4, 20], + [10, 13], + [4, 26], + [5, 11], + [-2, 5], + [13, 42], + [-4, 0], + [8, 12], + [11, 26], + [5, 4], + [5, 17], + [0, 22], + [10, 45], + [0, 9], + [9, 16], + [7, 4], + [10, 14], + [10, 53], + [7, 16], + [24, 8], + [16, 14], + [11, 23], + [15, 15], + [21, 49], + [5, 19], + [1, 14], + [-7, 13], + [0, 26], + [2, 26], + [3, 11], + [9, 18], + [3, 24], + [-1, 7], + [11, 17], + [10, 23], + [26, 19], + [21, 25], + [15, 48], + [2, 15], + [9, 39], + [14, 7] + ], + [ + [5206, 7702], + [-2, -1] + ], + [ + [5783, 7801], + [-3, 21], + [1, 26], + [3, 22], + [-4, 18], + [-6, 5], + [-17, 36], + [-10, 30], + [-8, 3] + ], + [ + [5739, 7962], + [20, 10], + [14, -2], + [6, -9], + [21, -8], + [10, -13], + [-1, -25], + [7, -10], + [5, 2], + [0, -20], + [10, -9], + [-1, -16], + [6, -9], + [-15, 0], + [-3, 6], + [-7, -6], + [-1, 9], + [-7, -4], + [1, -26], + [-13, -19], + [0, -11], + [-8, -1] + ], + [ + [6384, 4200], + [0, 8], + [5, 14], + [-5, -22] + ], + [ + [6370, 4487], + [-2, -11], + [7, -4], + [1, -18], + [7, -8], + [4, -13], + [-1, -9], + [5, -25], + [3, -37], + [0, -29], + [8, -27], + [-4, -34], + [-3, -9], + [-6, 7], + [-3, 25], + [-8, -7], + [3, -23], + [-2, -5], + [5, -11], + [-1, -25], + [-5, -13], + [-6, -24], + [2, -29], + [-4, -39], + [-3, -11], + [-10, -59], + [-2, -19], + [-7, -32], + [-3, -29], + [-10, -57], + [-4, -16], + [-2, -24], + [-7, -48], + [-1, -16], + [-4, -13], + [-8, -47], + [-14, -15], + [-11, -2], + [-13, -11], + [-6, -9], + [-12, -2], + [-11, 17], + [-10, 2], + [-10, 15], + [-2, 20], + [-7, 14], + [-1, 45], + [3, 10], + [-4, 6], + [-1, 16], + [-6, 12], + [-4, 36], + [3, 27], + [4, 6], + [0, 17], + [7, 4], + [11, 46], + [4, 7], + [6, 29], + [-3, 4], + [2, 24], + [-6, 18], + [1, 16], + [-6, 22], + [-1, 35], + [-3, 15], + [15, 49], + [0, 30], + [12, -1], + [11, 16], + [10, -2], + [0, 7], + [8, 4], + [4, -6], + [1, 9], + [6, 5], + [18, 25], + [3, -7], + [-3, -10], + [7, 2], + [-4, 18], + [4, 5], + [2, 12], + [6, 8], + [-3, -22], + [11, 28], + [-3, 11], + [3, 11], + [4, -2], + [3, 11], + [-4, 9], + [0, 19], + [7, -1], + [1, -10], + [4, -1], + [0, 14], + [5, 1], + [-1, 9], + [6, -4], + [3, 5], + [1, 16], + [3, 8], + [-2, 22], + [3, 13], + [5, 4], + [3, 18], + [2, -8] + ], + [ + [2590, 6367], + [-7, -17], + [2, 17], + [5, 0] + ], + [ + [1889, 6595], + [7, -4], + [1, -9], + [-8, 13] + ], + [ + [1800, 6801], + [-5, -1], + [5, 12], + [0, -11] + ], + [ + [1880, 6866], + [3, -12], + [-3, -16], + [-7, 7], + [2, 17], + [5, 4] + ], + [ + [1847, 6884], + [4, -14], + [5, -1], + [2, -17], + [-11, 17], + [-3, 9], + [3, 6] + ], + [ + [2186, 6889], + [0, -8], + [7, -2] + ], + [ + [2193, 6879], + [11, -20], + [1, -12], + [9, -31], + [6, -12], + [9, -27], + [7, -6], + [-1, -15], + [2, -15] + ], + [ + [2237, 6741], + [3, -16], + [3, 2], + [2, -14] + ], + [ + [2245, 6713], + [2, -9], + [20, -12], + [4, -8], + [16, -2], + [9, -10], + [5, 6] + ], + [ + [2301, 6678], + [0, -14], + [-8, -31], + [-6, -38], + [-2, -30], + [-1, -43], + [1, -16], + [-4, -22], + [3, -29], + [5, -34], + [15, -57], + [9, -17], + [9, -27], + [3, -25], + [5, -5], + [1, -9], + [7, -19], + [7, -4], + [11, 2], + [5, -9], + [6, -2], + [8, -21], + [10, 3], + [16, 11], + [17, 3], + [15, 13], + [10, 2], + [6, -12], + [10, -3], + [6, 17], + [-5, 8], + [14, 16], + [5, 11], + [1, 21], + [7, 14], + [-1, 6], + [1, 39], + [3, 15], + [16, 17], + [19, 4], + [17, 12], + [14, 2], + [20, -9], + [6, 9], + [6, -10], + [2, -17], + [-3, -16], + [-9, -18], + [-7, -19], + [-1, -19], + [-8, -16], + [9, -8], + [-6, -40], + [-3, -10], + [-2, -23], + [-3, 14], + [-4, 3], + [2, 18], + [-5, -4], + [-3, -15] + ], + [ + [2437, 6020], + [-20, 42], + [-19, 33], + [-11, 16], + [-10, 10], + [-1, -6], + [-8, 1], + [-4, 13], + [-5, -9], + [9, -4], + [-11, -1], + [-8, -12], + [-15, -9], + [-7, -8], + [-8, -2], + [-15, 10], + [-4, 6], + [-17, 3], + [-8, 13], + [-13, 6], + [-6, 14], + [-5, 0], + [-15, 8], + [-5, 0], + [-5, 9], + [-31, 22], + [-6, 11], + [-13, 14], + [-4, 13], + [-7, 6], + [-5, -4], + [-32, 20], + [-8, 21], + [-9, 14], + [-12, 13], + [-15, 12], + [-3, 14], + [-5, 6], + [-8, 22], + [0, 10], + [-4, 8], + [3, 8], + [10, 6], + [-7, 15], + [7, 12], + [1, 22], + [-6, 8], + [-7, 23], + [-2, 32], + [-9, 17], + [-15, 34], + [-12, 32], + [-21, 28], + [7, -7], + [0, 9], + [-5, -1], + [-9, 13], + [-6, 18], + [7, 0], + [-22, 24], + [0, 5], + [-9, -3], + [6, 9], + [-7, -1], + [-8, 9], + [0, 14], + [4, 9], + [0, 19], + [-4, 9], + [-10, 3], + [-5, 23], + [-9, 2], + [-7, 13], + [-2, 26], + [2, 3], + [-14, 4], + [-8, 12], + [-5, 13], + [-5, 5], + [-13, 29], + [-2, 20], + [-5, 2], + [1, 9], + [-11, 23], + [0, 16], + [-10, 36], + [3, 20], + [-16, 10], + [-1, 10], + [-7, 6], + [-9, -6], + [-10, 15], + [-8, 2], + [0, -41], + [4, -8], + [3, -27], + [-1, -19], + [7, -21], + [4, -1], + [17, -27], + [3, -23], + [7, -3], + [11, -32], + [3, -25], + [4, -12], + [8, -6], + [4, -20], + [6, -7], + [-1, -6], + [8, -25], + [-3, 20], + [8, -10], + [0, -9], + [5, -13], + [1, -29], + [9, -25], + [10, -36], + [-2, -15], + [3, -15], + [8, -8], + [0, 13], + [14, -16], + [4, -23], + [7, -10], + [0, -14], + [-11, -19], + [-7, 0], + [-6, 36], + [-8, 9], + [-12, 22], + [-14, 16], + [-5, 14], + [-4, -3], + [-4, 14], + [-3, -1], + [-2, 25], + [3, 3], + [0, 27], + [-9, 30], + [-3, 0], + [-17, 21], + [-1, 21], + [-4, -13], + [-10, -1], + [-5, 13], + [-8, 9], + [-10, 6], + [0, 9], + [-16, 20], + [-1, 8], + [15, -5], + [7, 6], + [5, -13], + [-1, 17], + [2, 28], + [-9, 26], + [-4, 3], + [-12, 26], + [-6, 2], + [-14, 19], + [-4, 12], + [0, 19], + [-5, 4], + [-1, 26], + [-7, 9], + [0, 11], + [-10, 22], + [1, 15], + [-8, 14], + [-6, 28] + ], + [ + [1746, 7056], + [66, 10], + [-1, -12], + [46, -30], + [58, -37], + [79, 0], + [0, 26], + [46, 0], + [11, -20], + [8, -8], + [14, -26], + [6, -4], + [7, -12], + [6, -21], + [-1, -10], + [5, -21], + [14, -20], + [25, -19], + [8, 14], + [4, 30], + [8, 2], + [3, 6], + [5, -5], + [20, -2], + [3, -8] + ], + [ + [2290, 6649], + [-4, -5], + [0, -32], + [-2, -53], + [6, 67], + [4, 13], + [-4, 10] + ], + [ + [5582, 7536], + [0, 0] + ], + [ + [5586, 7536], + [-4, 1] + ], + [ + [5581, 7537], + [0, 0] + ], + [ + [5575, 7539], + [-2, 10] + ], + [ + [5598, 7616], + [20, 7], + [2, -4] + ], + [ + [5117, 6285], + [0, -124], + [-1, -33], + [-4, -7], + [-4, -29], + [-11, -17], + [0, -8], + [-14, 4], + [0, -5], + [-47, -3], + [-9, -17], + [-9, -3], + [-13, 3], + [1, -5] + ], + [ + [4683, 5897], + [-1, 36], + [-6, 21], + [-5, -5], + [-8, 23], + [4, 5], + [-2, 28], + [-5, 6], + [1, 18], + [-2, 5] + ], + [ + [4659, 6034], + [5, -2], + [7, 8], + [0, 24], + [3, 11], + [6, 7], + [14, -22], + [3, -2], + [4, 13], + [12, 1], + [14, -4], + [13, 7], + [65, 0], + [41, 0], + [5, 45], + [-8, 15], + [-1, 33], + [-2, 21], + [-1, 36], + [-2, 22], + [-6, 109], + [0, 17], + [-3, 39], + [-6, 104], + [0, 14], + [-3, 39], + [0, 16], + [-3, 37], + [50, 0] + ], + [ + [7737, 5862], + [0, -11], + [-4, -2], + [-1, 13], + [5, 0] + ], + [ + [7733, 5907], + [-2, -14], + [-1, 20], + [3, -6] + ], + [ + [7622, 6095], + [-2, 9], + [7, 13], + [2, -6], + [-7, -16] + ], + [ + [7710, 6117], + [-4, 12], + [2, 5], + [2, -17] + ], + [ + [7602, 6269], + [-2, -10], + [-5, 9], + [7, 1] + ], + [ + [7604, 6305], + [6, -6], + [-6, -6], + [-3, 10], + [3, 2] + ], + [ + [7780, 6353], + [-9, 6], + [0, -6], + [-10, 2], + [3, -11], + [-6, -6], + [-8, 1], + [-1, -17], + [-21, -7], + [-6, 8], + [0, -9], + [-5, -4], + [-2, -10], + [1, -18], + [-4, -10], + [3, -19], + [-10, -8], + [5, -6], + [5, -22], + [-2, -10], + [11, -23], + [4, -17], + [7, -8], + [-1, -11], + [6, -28], + [6, 5], + [-2, -15], + [-7, -3], + [0, -40], + [-9, -4], + [-2, -12], + [2, -16], + [6, -13], + [3, -15], + [11, -14], + [4, -11], + [3, -67], + [6, -9], + [1, -25], + [2, 1], + [3, -19], + [-6, -12], + [-1, -12], + [-5, -17], + [-6, -8], + [0, -8], + [-5, -4], + [-2, -23] + ], + [ + [7742, 5779], + [-7, -20], + [0, 24], + [-1, 18], + [7, 10], + [1, 45], + [-5, 2], + [4, 20], + [-6, 11], + [5, 21], + [-3, 32], + [-9, 31], + [-4, -1], + [0, 27], + [-3, 9], + [-5, 30], + [0, 32], + [-2, 26], + [-4, 14], + [2, 25], + [-8, -2], + [-5, 13], + [0, 18], + [-3, 12], + [-6, 8], + [0, -23], + [-2, -16], + [-5, -11], + [-11, 3], + [2, -12], + [-16, -8], + [-2, -16], + [-7, -13], + [-9, 8], + [-6, -4], + [0, 12], + [-5, -9], + [-3, 5], + [3, 21], + [-12, -19], + [-1, 11], + [4, 22], + [2, 38], + [4, 9], + [0, 22], + [-2, 3], + [-2, 30], + [-6, 24], + [-5, 8], + [0, 20], + [-2, -4], + [-1, -16], + [-7, 9], + [-6, 22], + [9, -10], + [6, 14], + [-11, 14], + [3, 13], + [-4, -3], + [-6, 11], + [-10, -1], + [2, 16], + [-4, -12], + [-5, 6], + [5, 4], + [-5, 9], + [0, -11], + [-7, 22], + [-3, 3], + [-3, 21] + ], + [ + [5533, 7690], + [8, -17], + [11, -8], + [13, -12], + [0, -5] + ], + [ + [5538, 7620], + [0, -3] + ], + [ + [5537, 7617], + [-6, 0], + [7, -10] + ], + [ + [5537, 7593], + [-14, 24], + [-10, 8] + ], + [ + [8263, 7933], + [2, -6], + [9, 9], + [-4, 10] + ], + [ + [7439, 8014], + [9, 6], + [1, 10], + [19, 0], + [8, 3], + [15, 13], + [-2, 11], + [25, 18], + [5, 0], + [8, 12], + [11, 0], + [12, 16], + [9, -2], + [7, 10], + [7, -10], + [9, 6], + [2, -10], + [33, -2], + [3, -22], + [8, -10], + [8, 1], + [15, -8], + [9, 7], + [21, -9], + [11, 2], + [9, -10], + [7, 11], + [15, 6], + [5, 15], + [2, 14], + [-8, 6], + [-6, 22], + [7, 27], + [5, 0], + [3, 14], + [8, 4], + [7, 20], + [11, -11], + [11, -3], + [9, -10], + [14, 0], + [23, -15], + [7, 1], + [17, -9], + [2, -43], + [17, -15], + [11, -7], + [20, -3], + [13, 10], + [19, 4], + [4, 6], + [21, -6], + [4, -6], + [13, 3], + [14, -20], + [22, -3], + [-1, -15], + [17, -20], + [16, 1], + [31, -10], + [3, 4], + [9, -6], + [20, 14], + [18, 1], + [11, 8], + [10, -2], + [8, 5], + [3, 12], + [27, 27], + [17, -1], + [17, -20], + [9, -1], + [12, 8], + [12, -5], + [3, -6] + ], + [ + [5913, 3637], + [-22, 0] + ], + [ + [5891, 3637], + [1, 15], + [-3, 17], + [1, 16], + [-3, 3] + ], + [ + [5887, 3688], + [1, 16], + [0, 71], + [-4, 30], + [-3, 5], + [-6, 24], + [1, 14], + [-7, 44] + ], + [ + [5869, 3892], + [31, 64], + [-2, 10], + [4, 10], + [-1, 17], + [6, 7], + [9, 29], + [1, 14], + [-6, 6], + [1, 36], + [-5, 2], + [0, 11], + [6, 3], + [-1, 14], + [4, 4], + [-2, 36], + [3, 14], + [-1, 17], + [-5, 22], + [4, 14], + [-7, -1], + [-1, 6], + [-13, 9], + [-9, 1], + [-5, 12], + [-5, 1], + [-7, 10], + [-9, -2], + [-2, 4], + [-13, -1], + [0, 21] + ], + [ + [5844, 4282], + [-1, 18], + [-4, 20], + [19, 14], + [14, 6], + [19, 16], + [4, 1], + [27, 19] + ], + [ + [5922, 4376], + [6, -21], + [7, -13], + [1, 6], + [17, 6], + [5, -11], + [2, -41], + [-5, -11], + [0, -9], + [-5, -10], + [5, -13], + [1, -14], + [9, -15], + [5, -13], + [5, -4], + [0, -17], + [5, 0], + [-2, 38], + [4, 19], + [9, 2], + [3, 5], + [1, 35], + [-1, 16], + [3, 15], + [-2, 14], + [-21, 54], + [-6, 11] + ], + [ + [5968, 4405], + [-2, 10], + [-1, 28], + [2, 8], + [-4, 14], + [0, 16], + [6, 10], + [2, 25] + ], + [ + [5971, 4516], + [19, 0], + [5, 10], + [9, -10], + [1, -7], + [15, 1], + [7, 6], + [12, -8], + [11, 10], + [1, 13], + [7, 4], + [11, -8], + [11, 13], + [11, 0], + [5, 9], + [9, 4], + [18, 27] + ], + [ + [6123, 4580], + [6, -13], + [-7, -32], + [0, -23], + [3, -18], + [0, -28], + [3, -20], + [-6, -8], + [5, -1], + [-2, -39], + [4, -23], + [-4, -8], + [6, -2], + [-3, -8], + [6, -5], + [0, -22], + [-5, -7], + [1, -8], + [-3, -24], + [-13, -26], + [-3, -14], + [-7, -7], + [3, -7], + [-21, -26], + [-1, -7], + [-11, -2], + [-16, -16], + [-6, -3], + [-20, -22], + [-11, -32], + [-8, -15], + [-2, -13], + [-5, 5], + [1, -12], + [-4, 6], + [-13, -18], + [-6, -17], + [-16, -26], + [-3, 4], + [0, -25], + [-3, -12], + [6, -15], + [3, 0], + [4, -39], + [4, -16], + [2, -20], + [-1, -24], + [5, 16], + [2, -16], + [-2, -10], + [3, -20], + [-7, -50], + [6, -4], + [-3, -17], + [-9, -26], + [-13, -11], + [-26, -17], + [-11, -10], + [-12, -16], + [-5, -18], + [-4, -6], + [3, -12], + [7, -5], + [-1, -33] + ], + [ + [4659, 6034], + [-6, 12], + [-12, 16], + [-1, 13], + [-8, 8], + [-2, 17], + [-5, 13], + [-10, -2], + [-6, 16], + [-8, 14], + [-16, 0], + [-20, -9], + [-19, 1], + [-1, -15], + [-3, -3], + [-2, -22] + ], + [ + [4540, 6093], + [0, 30], + [2, 18], + [8, 33], + [4, 26], + [0, 28], + [-3, 40], + [-5, 20], + [-6, 11], + [9, 24], + [0, 28], + [-9, 26], + [0, -9], + [-5, 11], + [-4, 19], + [-4, -3], + [-1, -16] + ], + [ + [4526, 6379], + [-1, 6], + [3, 26], + [55, 0], + [55, 0], + [0, 15], + [-4, 71], + [3, 10], + [12, 16], + [17, 11], + [0, 146], + [56, 0], + [36, 0], + [0, 74] + ], + [ + [6603, 4026], + [2, -11], + [-3, -12], + [-9, -1], + [0, 15], + [4, 13], + [6, -4] + ], + [ + [5969, 4525], + [0, 2] + ], + [ + [5969, 4527], + [0, -2] + ], + [ + [5964, 4534], + [0, 2] + ], + [ + [5964, 4536], + [0, -2] + ], + [ + [5952, 4624], + [-3, 6] + ], + [ + [5949, 4630], + [3, -6] + ], + [ + [5946, 4634], + [0, 1] + ], + [ + [5946, 4635], + [0, -1] + ], + [ + [5941, 4623], + [2, -16], + [8, -22], + [-1, -51], + [3, -25], + [-8, -21], + [0, -15], + [4, -4], + [0, -16], + [4, -12], + [-1, -26], + [2, -9], + [7, -10], + [-2, -24], + [7, -10], + [2, 11], + [8, -16], + [4, 0], + [-6, 34], + [-6, 2], + [0, 12] + ], + [ + [5922, 4376], + [-7, -1], + [-2, 12], + [-6, 14], + [6, 8], + [4, 49], + [9, 3], + [5, 11], + [-4, 0], + [-4, 11], + [2, 15], + [-3, 27], + [5, 15], + [-4, 17], + [7, 6], + [5, 11], + [-4, 20], + [-6, 8], + [1, 15], + [-4, 12], + [-7, 1], + [-1, 11] + ], + [ + [5914, 4641], + [10, -5], + [4, -7], + [9, 1], + [4, -7] + ], + [ + [8093, 5320], + [-2, 3], + [0, 20], + [2, -2], + [0, -21] + ], + [ + [8269, 5423], + [5, -1] + ], + [ + [7786, 5497], + [-1, -11], + [-3, 11], + [4, 0] + ], + [ + [7773, 5553], + [-3, -8], + [-3, 8], + [6, 0] + ], + [ + [7834, 5543], + [9, -7], + [3, -14], + [18, -29], + [9, -33], + [1, -32], + [-4, -8], + [0, -23], + [4, -12], + [-2, -6], + [1, -32], + [10, -15], + [3, -23], + [8, -23], + [1, -24], + [-16, 4], + [-4, -10], + [-5, 15], + [-15, 19], + [-7, 11], + [-10, 9], + [-11, 21], + [-14, 15], + [2, 9], + [-2, 17], + [-6, 17], + [-11, 19], + [2, 9], + [-4, 6], + [1, 21], + [-2, 19], + [-6, 11], + [2, 6], + [-2, 23], + [0, 26], + [-7, 25] + ], + [ + [7780, 5554], + [2, 15], + [4, -9], + [12, -7], + [2, -11], + [7, 1], + [0, -19], + [-3, -9], + [3, -8], + [5, 9], + [9, 7], + [6, -10], + [7, 30] + ], + [ + [8045, 5303], + [0, -10], + [8, -13], + [9, 1], + [16, -8], + [6, -6], + [0, 16], + [5, 22], + [0, 18], + [4, 0], + [2, 16], + [5, 8], + [11, 2], + [20, 10], + [9, 9], + [12, 33], + [7, 12], + [6, 19], + [1, 16] + ], + [ + [8193, 5464], + [1, -4] + ], + [ + [8198, 5465], + [6, 1], + [6, 15], + [-6, 9], + [6, 11], + [6, 0], + [3, 14], + [4, 4], + [1, 17], + [6, 6], + [1, 8], + [8, 18], + [3, 19], + [3, -3], + [-2, -22], + [6, 8], + [3, 15], + [4, -2], + [1, -18], + [7, -3], + [6, -10], + [-4, -13], + [5, -16], + [6, 9], + [3, -14], + [8, -1], + [9, -15], + [15, -10], + [0, -11], + [-15, -13], + [-7, -1], + [-2, 6], + [-7, -8], + [5, -14], + [9, -13], + [-18, -12], + [-11, 10], + [-1, -14] + ], + [ + [8256, 5598], + [-5, -6], + [0, 10], + [6, 4], + [-1, -8] + ], + [ + [5649, 4167], + [22, 9], + [17, -1], + [7, -5], + [6, -12] + ], + [ + [5554, 3757], + [1, -13], + [0, -196], + [-12, -8], + [-2, -9], + [-7, -5], + [-3, -11], + [-11, 7], + [-16, -4], + [-16, 13], + [-5, -1], + [-2, 28], + [-4, 0], + [-3, 11], + [-5, -2], + [-4, -12], + [0, -11], + [-8, -7] + ], + [ + [5457, 3537], + [-5, 4], + [-15, 27], + [-12, 41], + [-2, 21], + [-5, 18], + [2, 11], + [-5, 7], + [0, 21], + [-3, 11], + [-1, 23], + [1, 20], + [-11, 53], + [1, 33], + [-2, 25], + [3, 10], + [-1, 27], + [-14, 39], + [-4, 18], + [-13, 37], + [-5, 37], + [-3, 3], + [-4, 20], + [-7, 22], + [-3, 18], + [-8, 23], + [-8, 14], + [-5, 21], + [-3, 36], + [1, 12] + ], + [ + [9665, 3952], + [5, -3], + [-1, -13], + [-7, 3], + [-2, 12], + [5, 1] + ], + [ + [9646, 3990], + [4, -27], + [-9, 7], + [-1, 8], + [6, 12] + ], + [ + [9555, 4026], + [7, -13], + [6, 0], + [16, -24], + [5, -3], + [11, -30], + [7, -3], + [15, -20], + [4, -10], + [11, -14], + [2, -10], + [-3, -5], + [-12, 8], + [-2, -4], + [-6, 8], + [-2, 13], + [-4, -1], + [-7, 14], + [-13, 7], + [-4, 13], + [-12, 16], + [-1, 8], + [-6, 6], + [-12, 44] + ], + [ + [5416, 6507], + [4, -53], + [1, -34], + [12, -31], + [-1, -12], + [11, -21], + [-7, -29], + [0, -21], + [-6, -142], + [-1, -9], + [-22, -46], + [-12, -29], + [-13, -39], + [0, -11], + [-9, -19], + [4, -39] + ], + [ + [5377, 5972], + [-6, 1], + [-4, -10], + [-5, 0], + [-14, -18], + [-2, -10], + [-10, 2], + [-7, 9], + [-12, 6], + [-22, 1], + [-13, -6], + [-7, -7], + [-8, -20], + [-18, 2], + [-10, 7], + [-15, 20], + [-9, 1], + [-10, -12], + [-6, 0], + [-3, -7], + [-7, 4], + [-4, 15], + [-12, 21], + [-3, -3], + [-16, 14], + [-8, -8], + [-12, 2], + [-11, -6], + [-9, -11], + [-1, -28], + [-4, -14], + [-8, -13], + [-1, -25], + [1, -21], + [-2, -2] + ], + [ + [5377, 5972], + [13, -36] + ], + [ + [5238, 5460], + [-5, -4], + [-6, 14], + [5, -21], + [-2, -4], + [-17, -3], + [-14, 10], + [0, -10], + [-4, -4], + [0, 13], + [-4, 2], + [3, -18], + [-25, -6], + [-7, 6], + [-8, 17], + [-3, 12], + [-3, 27], + [-4, 8], + [-3, 17], + [-6, 13], + [-13, 20], + [-15, 4], + [-12, -1], + [4, 6], + [-5, 2], + [0, -9], + [-19, -1] + ], + [ + [2691, 6046], + [-6, -4], + [4, -35], + [-7, -20], + [-4, -40], + [2, -21], + [-1, -19], + [2, -10], + [-4, -2], + [1, 15], + [-5, -4], + [4, -12], + [-5, -31], + [3, 2], + [1, -14], + [-6, -11], + [1, -16], + [5, -12] + ], + [ + [2619, 5821], + [-6, 13], + [-12, 18], + [-7, 15], + [-4, 17], + [-26, 41], + [4, 10], + [6, -5] + ], + [ + [5093, 8141], + [24, 0] + ], + [ + [5162, 8210], + [-10, -17], + [-10, 7], + [15, 13], + [5, -3] + ], + [ + [5118, 8141], + [-21, 6], + [1, 7], + [9, 1], + [7, -11], + [-3, 33], + [8, 7], + [6, 13], + [6, 36], + [10, -1], + [14, 21], + [11, 5], + [24, 3], + [9, -12] + ], + [ + [5140, 8230], + [7, -10], + [-8, -8], + [0, -15], + [12, -5], + [12, 14], + [-12, 20], + [-2, 13], + [-9, -9] + ], + [ + [5157, 8665], + [-10, 4], + [10, 9], + [0, -13] + ], + [ + [5249, 8849], + [3, -8], + [-16, -5], + [-3, 7], + [16, 6] + ], + [ + [5244, 8857], + [-2, -7], + [-13, 0], + [15, 7] + ], + [ + [5344, 8955], + [3, -6], + [-12, -11], + [9, 17] + ], + [ + [5387, 9114], + [3, -5], + [-17, -6], + [5, 13], + [9, -2] + ], + [ + [5420, 9124], + [-11, -11], + [-15, -6], + [9, 15], + [17, 2] + ], + [ + [5441, 9154], + [2, -15], + [8, 12], + [8, -5], + [-1, -15], + [-21, -8], + [-4, -7], + [-17, -3], + [6, 18], + [6, 0], + [6, 23], + [7, 0] + ], + [ + [5421, 9152], + [6, -15], + [-9, -5], + [-18, 7], + [21, 13] + ], + [ + [5439, 9158], + [-11, -3], + [20, 19], + [-9, -16] + ], + [ + [5492, 9188], + [10, -7], + [-3, -14], + [-32, -8], + [9, 12], + [-6, 8], + [22, 9] + ], + [ + [5523, 9207], + [6, -7], + [-8, -11], + [-17, -2], + [5, 15], + [14, 5] + ], + [ + [5533, 9218], + [12, -6], + [-15, -10], + [-9, 7], + [12, 9] + ], + [ + [5652, 9249], + [5, -8], + [-16, -11], + [-6, 7], + [17, 12] + ], + [ + [5649, 9262], + [-11, -16], + [-24, -4], + [7, 13], + [17, -3], + [11, 10] + ], + [ + [5856, 9203], + [2, -15], + [-17, 4], + [-10, -15], + [-16, -3], + [-11, -16] + ], + [ + [5572, 9158], + [-14, 0], + [7, -8], + [-11, -20], + [0, -11], + [-42, 13], + [-8, -3], + [1, -19], + [-8, -13], + [-16, 8], + [-15, -11], + [-5, -16], + [-14, -13], + [9, -12], + [-1, -10], + [-27, -31], + [2, -13], + [-12, -7], + [-15, -1], + [3, -17], + [-3, -30], + [-5, -12], + [-20, -30], + [14, -8], + [1, -15], + [-5, -10], + [-21, 5], + [-15, -8], + [-14, -21], + [-5, -18], + [6, -16], + [-4, -24], + [7, -20], + [-5, -30], + [20, -20], + [-4, -18], + [-13, -4], + [10, -29], + [-3, -21], + [-10, -13], + [-7, 0], + [-6, -16], + [4, -21], + [-6, -21], + [-5, 6] + ], + [ + [5317, 8580], + [-2, 7], + [-16, 4], + [-5, 22], + [-5, -3], + [1, -15], + [-5, -12], + [-15, -2], + [-28, -36], + [-16, -16], + [-15, -5], + [-30, 5], + [4, 7], + [-19, 9], + [-10, 9], + [-4, 11], + [2, 18], + [14, -10], + [-5, 13], + [9, 14], + [-12, 11], + [2, -11], + [-10, -4], + [-8, 9], + [8, 18], + [11, 0], + [-5, 7], + [7, 5], + [5, 15], + [10, 13], + [-13, -9], + [-6, -16], + [-6, 16], + [-6, -8], + [-6, 8], + [3, 14], + [12, -3], + [-1, 14], + [-10, -9], + [-10, 14], + [3, 16], + [10, 0], + [-13, 10], + [0, 10], + [11, 7], + [-11, 5], + [11, 16], + [33, -6], + [-31, 8], + [-7, -3], + [7, 17], + [13, 1], + [25, 16], + [-12, -3], + [12, 13], + [22, -8], + [-1, 10], + [-16, 2], + [-2, 12], + [10, 5], + [7, -6], + [16, 2], + [4, 11], + [12, -2], + [-5, 11], + [34, 19], + [7, -14], + [24, 5], + [-2, 8], + [19, 14], + [2, 9], + [-18, -7], + [2, -9], + [-26, -14], + [-12, 16], + [15, 11], + [-3, 9], + [14, 10], + [12, 17], + [13, -11], + [0, 17], + [11, 5], + [4, 17], + [19, 3], + [-10, 6], + [10, 12], + [-8, 12], + [27, 33], + [-8, 8], + [9, 16], + [12, 10], + [-7, 6], + [20, 4], + [10, 13], + [22, -3], + [0, 5], + [-28, 1], + [28, 31], + [-15, -9], + [4, 15], + [30, 7], + [-22, 1], + [23, 8], + [5, -17], + [6, 8], + [-11, 14], + [17, 8], + [32, -1], + [-9, 8], + [-29, -5], + [2, 11], + [24, 6], + [6, 22], + [10, 6], + [4, 14], + [19, 5], + [11, 13], + [26, 10], + [8, -11], + [15, 2], + [11, 14], + [19, -17], + [-5, 14], + [-18, 15], + [28, 3], + [20, -6], + [5, -14], + [11, 25], + [29, 23], + [0, 11], + [37, -7], + [-19, -17], + [-9, -26], + [8, -1], + [6, 15], + [33, 35], + [-3, -34], + [17, 22], + [11, 6], + [-8, 10], + [28, 3], + [8, -5], + [-19, -29], + [14, 2], + [11, 20], + [9, 1], + [21, -14], + [8, 4], + [27, -25], + [-16, -2], + [-10, -10], + [-39, 6], + [-3, -4], + [29, -8], + [-2, -12], + [34, 3] + ], + [ + [5713, 9281], + [11, -11], + [-15, -3], + [-6, 9], + [10, 5] + ], + [ + [4778, 9282], + [-1, -9], + [-15, -2], + [16, 11] + ], + [ + [5647, 9686], + [-7, -11], + [38, -10], + [-33, -33], + [-23, 0], + [10, 17], + [-53, -6], + [22, 27], + [-22, 9], + [23, 8], + [45, -1] + ], + [ + [5596, 9708], + [21, -5], + [1, -13], + [-43, -4], + [-15, 17], + [36, 5] + ], + [ + [5313, 9706], + [24, -18], + [-29, 12], + [-16, 19], + [13, 4], + [8, -17] + ], + [ + [5467, 9783], + [4, 5], + [53, -31], + [2, -16], + [23, 1], + [8, -9], + [40, -9], + [-5, -12], + [-44, -1], + [-22, -10], + [3, -21], + [-18, -4], + [-5, -31], + [-14, 1], + [-11, -30], + [-12, -11], + [3, -11], + [-20, 6], + [-35, 25], + [-18, 3], + [-9, 22], + [50, -2], + [-31, 7], + [59, 9], + [-36, 4], + [-50, -9], + [-5, 19], + [40, 3], + [17, 12], + [27, 1], + [-3, 22], + [-14, -14], + [-16, -1], + [-1, 23], + [-28, -21], + [10, -6], + [-25, -10], + [-23, -1], + [-17, 20], + [-20, 10], + [21, 16], + [-19, 4], + [10, 14], + [-23, -12], + [-16, 26], + [31, 17], + [9, -10], + [47, 12], + [-3, -10], + [-33, -9], + [37, -1], + [19, 16], + [20, -12], + [5, -15], + [28, -25], + [-14, 23], + [-7, 33], + [24, 9], + [7, -9] + ], + [ + [5642, 9812], + [113, -16], + [-1, -15], + [-37, -13], + [-5, -13], + [-38, -5], + [-6, -7], + [-32, 2], + [-1, 11], + [-57, -2], + [-32, 10], + [22, 8], + [39, 1], + [0, 7], + [-66, -7], + [-28, 4], + [-12, 23], + [33, -5], + [33, 19], + [53, -25], + [3, 26], + [19, -3] + ], + [ + [9617, 2273], + [0, -19], + [-6, 6], + [6, 13] + ], + [ + [9665, 2494], + [6, -10], + [0, -14], + [-12, -2], + [-5, -8], + [1, 13], + [5, 6], + [-1, 14], + [6, 1] + ], + [ + [96, 2665], + [10, -1], + [-9, -6], + [6, -11], + [-9, -5], + [3, 13], + [-9, 8], + [8, 2] + ], + [ + [9802, 2850], + [-4, 0], + [-2, -14], + [9, -2], + [1, -21], + [4, -9], + [10, 14], + [6, 3], + [3, -10], + [3, 13], + [9, -2], + [-4, -7], + [3, -10], + [-6, -8], + [6, -18], + [-8, -17], + [-3, -13], + [-9, -13], + [-6, -23], + [-15, -16], + [-1, -24], + [9, -5], + [1, -9], + [-7, -4], + [-10, 10], + [-7, -9], + [-25, -22], + [-4, -20], + [0, -17], + [-7, -15], + [-5, -25], + [0, -16], + [-8, -3], + [-17, -24], + [-4, -11], + [-13, -7], + [-11, 0], + [-1, 6], + [-13, -4], + [-5, 16], + [-11, -2], + [-2, 10], + [-8, 3], + [-3, -7], + [-16, 3], + [1, 13], + [-9, 0], + [0, 10], + [9, 6], + [-2, 8], + [4, 17], + [8, -7], + [-4, 16], + [36, 56], + [2, 7], + [10, 1], + [19, 21], + [8, 4], + [16, 27], + [14, 12], + [13, 29], + [6, 37], + [9, 4], + [8, 16], + [1, 31], + [15, 21], + [7, 0] + ], + [ + [9872, 3102], + [4, -10], + [-7, 5], + [3, 5] + ], + [ + [9807, 3201], + [-1, -14], + [3, -11], + [8, -8], + [8, 2], + [10, -9], + [2, -9], + [5, 4], + [1, -13], + [5, -10], + [-2, -23], + [9, -16], + [-3, -21], + [7, -17], + [8, 0], + [4, -17], + [5, 3], + [-4, 18], + [3, 20], + [3, -14], + [7, -9], + [1, -35], + [2, -7], + [14, -7], + [19, -13], + [10, 4], + [5, 14], + [8, 7], + [8, 0], + [7, -10], + [-6, -15], + [-1, -32], + [-10, -9], + [-2, -34], + [-1, 12], + [-12, 1], + [-10, -8], + [-4, -10], + [1, -13], + [4, -3], + [-5, -25], + [-8, -21], + [-6, -9], + [-9, -30], + [-8, -14], + [-13, -14], + [-3, 11], + [-9, -1], + [-8, 12], + [4, 4], + [10, 24], + [4, 27], + [-5, 17], + [-15, 10], + [-6, 12], + [-9, 4], + [-6, 8], + [1, 14], + [22, 19], + [3, 41], + [4, 20], + [-3, 30], + [4, 10], + [-3, 8], + [-8, -6], + [-2, 16], + [-6, 19], + [7, -12], + [-2, 22], + [-11, 8], + [1, -9], + [-26, 61], + [2, 16], + [-12, 29], + [10, 1] + ], + [ + [6629, 6344], + [-1, 12], + [8, 19], + [-7, -31] + ], + [ + [6474, 6141], + [-8, 37], + [-2, 0], + [-11, 55], + [-10, 44] + ], + [ + [6443, 6277], + [13, 8], + [52, 37], + [19, 12], + [9, 56], + [9, 61], + [-13, 39] + ], + [ + [6566, 6621], + [6, -28], + [6, -15], + [10, -17], + [31, -18], + [8, 2], + [6, -11], + [13, -39], + [7, -13], + [8, -2], + [0, -17], + [-9, -27], + [-4, -19], + [-12, -17], + [-11, -42], + [-8, 1], + [1, 11], + [-5, -3], + [-3, -13], + [-4, -4], + [-1, -20], + [-3, -10], + [2, -31], + [2, -11], + [-3, -4], + [-15, -2], + [-8, -6], + [-7, -12], + [-3, -28], + [-5, -10], + [-5, 1], + [-21, -7], + [-6, -19], + [2, -9], + [-7, -20], + [-8, -3], + [-4, 5], + [-16, -3], + [-12, -14], + [-7, 0], + [-7, -6] + ], + [ + [6557, 6684], + [2, 8], + [9, -6], + [-5, -27] + ], + [ + [6893, 6556], + [-1, -9], + [-8, 10], + [-6, -3], + [-8, 15], + [-5, 42], + [-13, 5], + [1, 20], + [-5, 7], + [-3, 13], + [-7, 1], + [2, -7], + [-16, -8], + [-13, 2], + [-1, -4], + [-23, -1], + [-19, 6], + [-4, -11], + [-28, 4], + [-5, -6], + [-17, -8], + [1, 8], + [-5, 2] + ], + [ + [2729, 5623], + [3, -19], + [-7, 12], + [4, 7] + ], + [ + [2836, 5599], + [-8, 16], + [-7, 31], + [5, 4], + [0, 10], + [5, 8], + [-5, 3], + [-4, -7], + [-3, 16], + [-10, 15], + [-6, 5], + [-10, 2], + [-9, -12], + [0, -13], + [-8, -11], + [-12, -10], + [0, -8], + [10, -19], + [4, -14], + [-10, -6], + [-2, -9], + [-13, -2], + [0, 7], + [-8, 30], + [-1, -14], + [-10, 8], + [-3, 19], + [-9, 8], + [-6, -1], + [0, 8], + [-8, -4], + [-9, 2], + [-2, -16] + ], + [ + [2706, 5734], + [6, -10], + [3, -23], + [13, -4], + [-4, 11], + [5, -3], + [6, -15], + [10, -1], + [9, 5], + [7, 12], + [14, 8], + [14, 22], + [10, -4], + [7, 2], + [-2, -7], + [16, -2], + [17, -19], + [3, -9], + [10, -15] + ], + [ + [3073, 4289], + [-8, 13], + [-7, 0], + [2, -20], + [-3, 4], + [-3, -15], + [17, -10], + [-2, -8], + [7, -8], + [4, 3] + ], + [ + [3084, 4249], + [-2, -19] + ], + [ + [3044, 4127], + [-14, 19], + [0, 3], + [-13, 15], + [0, 13], + [-3, 10], + [-18, 16], + [-6, 15], + [-10, 5], + [-17, 20], + [-17, 13], + [-3, 8], + [-32, 34], + [-1, 9], + [-9, 19], + [-10, 12], + [-6, 25], + [-4, 2], + [0, 15], + [3, 23], + [-10, 34], + [0, 7], + [-8, 20], + [1, 6], + [-7, 9], + [-3, 11], + [-2, 23], + [-4, 10], + [-8, 9], + [1, 11], + [-4, 20], + [-12, 36], + [-1, 20], + [-4, 9], + [-2, 18], + [-5, 8], + [-4, 33], + [-6, 23], + [-14, 29], + [-6, 35], + [-7, 12], + [-6, 16], + [-16, 16], + [-11, 17], + [0, 11], + [8, 6], + [-2, 16], + [-7, 11], + [3, 15], + [-8, 19], + [2, 25], + [12, 23], + [0, 5], + [14, 21] + ], + [ + [8339, 5486], + [-9, -12], + [-3, 4], + [12, 8] + ], + [ + [8361, 5534], + [5, -6], + [-8, -6], + [3, 12] + ], + [ + [8390, 5552], + [-3, 0], + [-4, 14], + [7, 5], + [7, -7], + [-7, -12] + ], + [ + [8493, 5581], + [-3, 9], + [3, 5], + [0, -14] + ], + [ + [8251, 5645], + [-2, -13], + [-1, 14], + [3, -1] + ], + [ + [8489, 5736], + [9, -8], + [3, -13], + [4, 4], + [-1, -13], + [4, -7], + [0, -10], + [-6, -9], + [8, -6], + [-1, -20], + [3, 3], + [-2, -23], + [5, -6], + [1, -27], + [-4, -16], + [-6, -12], + [-1, -28], + [-4, 20], + [1, 8], + [-6, 19], + [-1, 14], + [-5, -4], + [0, -9], + [-5, -8], + [-3, -22], + [6, -6], + [3, -20], + [-1, -12], + [-7, -21], + [-7, 13], + [3, 8], + [-3, 9], + [-3, -14], + [-10, 5], + [-13, 14], + [-5, 15], + [0, 20], + [-2, 0], + [1, 19], + [6, 8], + [0, 9], + [-5, 11], + [-15, 13], + [-3, -12], + [1, -15], + [-4, 9], + [-4, -1], + [0, 12], + [-4, -14], + [-6, 0], + [1, 16], + [-9, -3], + [-7, -26], + [-2, -17], + [-3, -3], + [-5, 9], + [7, 30], + [-1, 11], + [7, 16], + [16, 6], + [3, 21], + [8, 1], + [2, 11], + [3, -6], + [6, 1], + [4, -13], + [0, -15], + [11, 6], + [2, 17], + [3, 4], + [6, -8], + [3, 5], + [0, 23], + [4, 1], + [5, -9], + [5, 10], + [7, 1], + [0, 17], + [-4, 21], + [2, 8], + [5, -12] + ], + [ + [8503, 5750], + [-4, -2], + [2, 14], + [2, -12] + ], + [ + [8453, 5767], + [7, -6], + [-1, -12], + [-7, -13], + [-12, 2], + [-2, 9], + [7, 10], + [3, 10], + [5, 0] + ], + [ + [8479, 5754], + [-4, 9], + [3, 3], + [1, -12] + ], + [ + [8490, 5782], + [1, -31], + [-5, 11], + [0, 15], + [4, 5] + ], + [ + [8332, 5791], + [-6, -5], + [2, 10], + [4, -5] + ], + [ + [8408, 5792], + [-5, -9], + [0, 11], + [4, 7], + [1, -9] + ], + [ + [8423, 5815], + [8, -4], + [1, -7], + [-7, -25], + [-1, -15], + [-4, -13], + [0, -19], + [5, -11], + [-2, -12], + [-7, -5], + [-3, 15], + [-9, 8], + [-5, 15], + [2, 15], + [11, 6], + [-1, 23], + [4, 23], + [8, 6] + ], + [ + [8444, 5821], + [1, -35], + [-2, -9], + [-9, -14], + [0, -7], + [-6, -27], + [-3, -4], + [2, 34], + [9, 27], + [5, 33], + [3, 2] + ], + [ + [8319, 5836], + [0, -30], + [6, -17], + [-10, -11], + [-4, -14], + [-13, -9], + [1, -12], + [-9, -26], + [-10, -10], + [-1, -9], + [-8, -14], + [-6, -2], + [-1, -9], + [-9, 0], + [19, 43], + [4, 0], + [9, 23], + [7, 11], + [6, 20], + [12, 17], + [4, 32], + [0, 14], + [3, 3] + ], + [ + [8456, 5842], + [7, -8], + [4, 7], + [6, -10], + [-1, -30], + [5, -8], + [2, -19], + [-8, -4], + [2, -10], + [-8, 7], + [-1, 14], + [2, 19], + [-2, 11], + [-5, 5], + [-4, -4], + [1, 30] + ], + [ + [8456, 5856], + [5, -12], + [-5, 0], + [0, 12] + ], + [ + [8396, 5860], + [10, -14], + [4, 6], + [3, -11], + [7, 8], + [-1, -24], + [-9, -10], + [-1, -11], + [-6, -6], + [-9, -2], + [-6, -13], + [-2, 20], + [4, 17], + [0, 39], + [-6, 1], + [3, 10], + [9, -10] + ], + [ + [8332, 5870], + [2, -13], + [-3, -2], + [-2, 15], + [3, 0] + ], + [ + [8331, 5890], + [11, -11], + [0, -5], + [-10, 1], + [-1, 15] + ], + [ + [8405, 5890], + [-5, 12], + [6, 0], + [-1, -12] + ], + [ + [8469, 5906], + [10, -3], + [2, -13], + [5, -4], + [-2, -6], + [1, -33], + [6, -24], + [-14, 0], + [-2, 10], + [-4, 0], + [-4, 10], + [6, 17], + [-5, 0], + [-6, 16], + [-8, 11], + [-3, 20], + [7, -3], + [11, 2] + ], + [ + [8426, 5905], + [6, -6], + [5, -13], + [4, -1], + [4, -15], + [0, -12], + [-17, 28], + [-8, -17], + [3, 13], + [-1, 26], + [4, -3] + ], + [ + [8392, 5910], + [-3, -30], + [-3, 11], + [2, 17], + [4, 2] + ], + [ + [8434, 5912], + [3, -18], + [-5, 16], + [2, 2] + ], + [ + [8421, 5926], + [-7, 8], + [2, 6], + [5, -14] + ], + [ + [8360, 5962], + [15, -22], + [-1, -23], + [-3, -26], + [-4, -5], + [-9, 17], + [-4, 15], + [0, 14], + [-7, 12], + [-4, 18], + [10, -4], + [7, 4] + ], + [ + [8385, 5963], + [7, -9], + [-4, -11], + [-5, 8], + [2, 12] + ], + [ + [8450, 5993], + [5, -11], + [0, -12], + [-7, -8], + [-4, 7], + [3, 5], + [0, 20], + [3, -1] + ], + [ + [8387, 6049], + [2, -18], + [-3, -5], + [-3, 23], + [4, 0] + ], + [ + [8358, 6252], + [7, 4], + [10, -14], + [13, -6], + [4, 13], + [3, 0], + [2, -15], + [-4, -8], + [-1, -29], + [3, -15], + [4, 0], + [2, -28], + [-8, -32], + [1, -4], + [-18, -18], + [2, -10], + [-7, -28], + [9, -32], + [-3, -1], + [4, -30], + [5, -10], + [10, -2], + [-3, 13], + [8, 9], + [8, -1], + [9, -20], + [-1, -12], + [5, -3], + [3, 17], + [17, -13], + [1, -4], + [-12, -1], + [0, -8], + [5, -8], + [4, -16], + [6, -8], + [2, -12], + [-2, -14], + [-6, 5], + [-1, 13], + [-7, 1], + [-8, 7], + [0, 14], + [-3, 11], + [-7, 6], + [-5, 16], + [-9, 7], + [2, -18], + [5, -15], + [-3, -12], + [-7, 25], + [-17, 19], + [-8, -8], + [1, -6], + [-11, -4], + [-4, 16], + [-6, 2], + [-2, -7], + [-1, 24], + [11, 17], + [-4, 14], + [-9, -4], + [2, -13], + [-4, -3], + [-4, 23], + [-7, 4], + [-1, 23], + [-4, 8], + [1, 26], + [-4, 3], + [0, 23], + [9, -15], + [9, 5], + [-3, 17], + [0, 21], + [4, 10], + [-1, 11], + [0, 43], + [5, 23], + [-1, 10], + [10, 4] + ], + [ + [8740, 5620], + [-2, -13], + [-3, 3], + [5, 10] + ], + [ + [9256, 4529], + [13, -10], + [0, -5], + [-10, 3], + [-3, 12] + ], + [ + [9195, 4611], + [7, -2], + [-2, -10], + [-8, 2], + [-5, 23], + [8, -13] + ], + [ + [9184, 4640], + [3, 2], + [5, -15], + [-14, 1], + [0, 16], + [6, -4] + ], + [ + [9176, 4644], + [-1, -9], + [-5, 5], + [-1, 9], + [6, 1], + [1, -6] + ], + [ + [9234, 4667], + [10, -3], + [5, -11], + [-10, 2], + [-5, 12] + ], + [ + [8989, 4680], + [-11, 16], + [11, -11], + [0, -5] + ], + [ + [8981, 4701], + [6, 0], + [1, -7], + [-7, 7] + ], + [ + [9105, 4867], + [7, -7], + [-1, -11], + [-7, 10], + [1, 8] + ], + [ + [9299, 4867], + [8, -4], + [3, -17], + [6, -8], + [1, -9], + [5, -4], + [8, -16], + [2, -14], + [-7, -8], + [-5, 1], + [-10, 17], + [1, 14], + [-14, 25], + [0, 19], + [2, 4] + ], + [ + [9089, 4870], + [-4, 0], + [-2, 11], + [3, 3], + [3, -14] + ], + [ + [9296, 4889], + [-2, -21], + [-1, 25], + [3, -4] + ], + [ + [9228, 4941], + [-2, -6], + [7, -2], + [0, -17], + [-5, -20], + [-8, -1], + [5, -25], + [-8, -9], + [-11, 3], + [2, -8], + [-14, -21], + [-15, -13], + [-24, -2], + [-3, 10], + [-6, 4], + [-6, -5], + [-2, 7], + [-10, 12], + [-9, 7], + [4, 14], + [11, -5], + [3, 4], + [7, -8], + [20, 6], + [2, 24], + [4, -27], + [8, 6], + [8, -5], + [8, 6], + [0, 10], + [10, 20], + [7, -3], + [2, 5], + [-2, 23], + [-3, 16], + [7, 0], + [5, -8], + [2, 8], + [6, 0] + ], + [ + [8915, 5033], + [7, -1], + [25, -25], + [25, -17], + [13, -4], + [9, -11], + [5, -11], + [15, -2], + [0, -8], + [9, -6], + [5, -15], + [8, -3], + [13, -25], + [-1, -38], + [14, -4], + [18, -16], + [5, -7], + [12, -3], + [9, -22], + [0, -18], + [-25, -3], + [0, -12], + [5, -13], + [1, -15], + [7, -6], + [8, -21], + [12, -8], + [3, -30], + [7, -9], + [2, -19], + [21, 3], + [-4, -19], + [1, -9], + [7, -6], + [15, -2], + [1, -5], + [-9, -5], + [8, -16], + [10, -7], + [12, -3], + [-4, -5], + [-9, -1], + [10, -10], + [-7, -9], + [-13, 6], + [2, 7], + [-9, 8], + [-7, -1], + [-8, 6], + [-12, 0], + [1, 5], + [-11, -3], + [-2, 5], + [-17, 1], + [-11, 33], + [-5, 2], + [-7, 22], + [-8, 6], + [-4, 23], + [-10, 30], + [-13, 9], + [-5, -1], + [-7, 8], + [-9, 2], + [-6, 12], + [-6, -1], + [2, -13], + [-7, 10], + [1, -8], + [-13, 8], + [4, -19], + [-11, -4], + [1, -12], + [-18, -5], + [-6, 1], + [11, -10], + [7, -15], + [1, -11], + [-22, -23], + [-11, 10], + [-20, -3], + [-6, 4], + [-3, -5], + [-6, 7] + ], + [ + [9195, 5027], + [10, -11], + [11, -17], + [7, -3], + [14, -33], + [11, -10], + [5, -22], + [-2, -14], + [-5, -10], + [-6, 14], + [1, 21], + [-5, 19], + [-10, 21], + [-6, 2], + [-9, 16], + [-5, 4], + [-9, 15], + [-10, 7], + [8, 1] + ], + [ + [9172, 5046], + [6, -5], + [0, -12], + [-8, 0], + [-3, 9], + [5, 8] + ], + [ + [9079, 5070], + [12, -5], + [-3, -8], + [-17, 0], + [0, 11], + [8, 2] + ], + [ + [9154, 5105], + [6, -13], + [-6, 5], + [0, 8] + ], + [ + [5544, 8319], + [0, -1] + ], + [ + [5544, 8318], + [4, -1] + ], + [ + [5548, 8317], + [63, -4], + [21, 0] + ], + [ + [5655, 8150], + [1, -13], + [14, -27], + [-5, 0], + [4, -18], + [-10, -8], + [-18, -24], + [-13, -25], + [4, -28], + [-6, 2] + ], + [ + [5626, 8009], + [-15, 8], + [-11, 12], + [-16, -2], + [-4, -6], + [-6, 6], + [-10, 0], + [-14, -12], + [-1, 12], + [-10, 11], + [-7, -11], + [-9, 7] + ], + [ + [5396, 8275], + [8, -3], + [0, 13], + [-10, 0] + ], + [ + [5394, 8289], + [54, 20], + [12, 16], + [10, 2], + [11, 9], + [27, 5], + [7, -23], + [12, -6], + [17, 7] + ], + [ + [3138, 6248], + [29, -2], + [9, -6], + [2, -7], + [-7, -13], + [-9, -5], + [-17, 3], + [-12, -1], + [1, 15], + [-3, 7], + [3, 10], + [4, -1] + ], + [ + [8625, 7631], + [5, -14] + ], + [ + [8630, 7617], + [-7, 4], + [-11, -15], + [-11, -27], + [4, -15], + [-3, -11], + [1, -19], + [-11, -5], + [-7, -16], + [-13, -11], + [-8, -14], + [-9, 1], + [-4, -9], + [-10, -8], + [2, -9], + [-6, -13], + [2, -13], + [9, -2], + [17, -29] + ], + [ + [8518, 7361], + [-8, 4], + [-8, -9], + [-8, 15], + [-7, 1], + [2, -14], + [-10, 9], + [-7, -2], + [3, 9], + [-13, 4], + [9, 5], + [-3, 9], + [10, 20], + [-3, 4], + [4, 21], + [5, 14], + [-4, 8], + [-16, 7], + [-11, 14], + [1, 12] + ], + [ + [4525, 7072], + [11, -2], + [-3, -7], + [-10, 3], + [2, 6] + ], + [ + [4286, 7362], + [15, 1], + [0, -6], + [-10, -3], + [-5, 8] + ], + [ + [4220, 7396], + [-11, -2], + [-2, 9], + [13, -7] + ], + [ + [4248, 7409], + [-8, 0], + [0, 8], + [6, 0], + [2, -8] + ], + [ + [4794, 7325], + [-12, -12], + [-21, 8], + [-10, -7], + [4, 24], + [1, 44], + [-4, 18], + [-8, -2], + [-1, 11], + [8, 6], + [-2, 7], + [-4, -11], + [-9, 1], + [4, 38], + [6, 7], + [7, 36], + [-1, 3], + [7, 47], + [-6, 50], + [3, 7] + ], + [ + [3492, 3797], + [-1, -17], + [-4, -23], + [-1, -22], + [-3, -17] + ], + [ + [5949, 6986], + [8, 16] + ], + [ + [5987, 7012], + [-4, -16] + ], + [ + [853, 4163], + [-9, -2], + [-1, 11], + [5, 3], + [5, -12] + ], + [ + [6422, 6601], + [-8, -2], + [-3, 9] + ], + [ + [6411, 6608], + [1, 10], + [-3, 15], + [1, 20], + [3, 6], + [4, 24], + [6, 6], + [4, -12], + [5, -2], + [1, -9], + [-4, -14], + [4, -14], + [0, -15], + [-4, -17], + [-7, -5] + ], + [ + [5783, 7801], + [3, -8], + [11, -6], + [14, 12], + [10, -3], + [2, -9] + ], + [ + [5823, 7787], + [-1, -22], + [-14, -4], + [-3, 13], + [-4, -3], + [-6, -35], + [1, -21], + [-3, -13] + ], + [ + [5630, 7730], + [-6, 15], + [8, 5], + [-10, 9], + [-6, -14], + [-5, 9], + [-10, 2], + [-9, 9], + [5, 16], + [-15, 12], + [-6, 9], + [1, 16], + [-13, 13], + [-2, 7] + ], + [ + [5635, 7944], + [10, 8], + [7, -5], + [20, -6], + [10, 3], + [9, -14], + [10, 11], + [26, 6], + [3, 12], + [9, 3] + ], + [ + [9064, 7741], + [7, 1], + [-12, -10], + [-16, -24], + [15, 37], + [6, -4] + ], + [ + [9133, 7793], + [-15, -6], + [-10, -15], + [-5, 0], + [-7, -11], + [-18, -19], + [10, 17], + [-3, 3], + [25, 28], + [9, 0], + [12, 15], + [2, -12] + ], + [ + [9182, 7845], + [-21, -27], + [-10, -9], + [15, 27], + [16, 9] + ], + [ + [9227, 7898], + [-1, -8], + [-10, -14], + [11, 22] + ], + [ + [9301, 8041], + [-1, -17], + [-6, 3], + [7, 14] + ], + [ + [9336, 8091], + [-7, -15], + [-9, -4], + [-5, -11], + [-5, 16], + [15, 9], + [4, 15], + [7, 3], + [0, -13] + ], + [ + [9344, 8100], + [-7, 6], + [7, 7], + [0, -13] + ], + [ + [8967, 8309], + [5, -11], + [-3, -7], + [8, -35], + [4, -38], + [-6, -46], + [5, -11], + [-2, -12], + [6, 0], + [9, -69], + [10, -33], + [0, -7], + [8, -36], + [-9, 14], + [-23, 9], + [3, -6], + [-10, -7], + [-2, -16], + [-12, -57], + [6, -26], + [8, -11], + [0, -11], + [5, -21], + [9, 4], + [1, -28], + [-3, -6], + [-2, 22], + [-17, 3], + [-2, 6], + [-7, -5], + [-6, -32], + [-5, -9], + [-3, 6], + [-4, 29], + [7, 30], + [-3, 31], + [7, 21], + [-3, 26], + [-5, 12], + [7, 55], + [0, 46], + [-3, 10], + [1, 17], + [5, 19], + [-5, 18], + [-11, 14], + [-1, 38], + [4, 5], + [3, 26], + [-4, 26], + [13, 9], + [1, -9], + [10, 9], + [-4, 8], + [9, 2], + [-2, 12], + [-10, 21], + [5, -2], + [5, 11], + [3, -8] + ], + [ + [9669, 8321], + [-19, 19], + [4, 0], + [15, -19] + ], + [ + [8810, 8355], + [-14, -11], + [8, 11], + [6, 0] + ], + [ + [8827, 8358], + [9, -8], + [-12, -22], + [-6, 15], + [-6, 1], + [8, 17], + [7, -3] + ], + [ + [5548, 8317], + [18, 15], + [-10, 2], + [-12, -16] + ], + [ + [5544, 8319], + [10, 17], + [0, 12], + [12, -1], + [15, 19] + ], + [ + [5582, 8366], + [-12, -19], + [12, -3], + [7, 5], + [1, 15] + ], + [ + [9609, 8371], + [18, -27], + [1, -11], + [-13, 14], + [-4, 13], + [-7, 6], + [5, 5] + ], + [ + [9571, 8591], + [3, -16], + [-8, -2], + [-23, -18], + [9, 26], + [19, 10] + ], + [ + [5777, 8600], + [3, -1] + ], + [ + [6924, 9029], + [21, -5], + [-5, -13], + [-16, 18] + ], + [ + [6396, 9167], + [-24, -22], + [-23, -4], + [-10, 9], + [1, 19], + [15, 16], + [13, 1], + [28, -19] + ], + [ + [9482, 9188], + [-3, -8], + [6, -25], + [-10, 6], + [-2, 19], + [9, 8] + ], + [ + [9705, 9201], + [-6, -12], + [-29, 7], + [-11, 8], + [14, 11], + [32, -8], + [0, -6] + ], + [ + [6648, 9234], + [5, -8], + [26, -17], + [0, -11], + [-25, -1], + [-5, 11], + [-10, -2], + [-13, 12], + [-1, 15], + [13, 8], + [10, -7] + ], + [ + [6464, 9295], + [14, -14], + [-6, -11], + [-7, 12], + [-15, 9], + [14, 4] + ], + [ + [0, 9271], + [9990, -7], + [-25, -4], + [-4, 14], + [8, 11], + [30, 17], + [-9999, -31] + ], + [ + [8829, 9305], + [-3, -9], + [-20, 5], + [23, 4] + ], + [ + [0, 9302], + [26, 4], + [18, -3], + [27, -17], + [-12, -12], + [-42, -8], + [-17, 5], + [0, 31] + ], + [ + [7160, 9347], + [-27, 1], + [22, 18], + [21, -9], + [-16, -10] + ], + [ + [8580, 9366], + [-7, -7], + [-15, 7], + [22, 0] + ], + [ + [8592, 9374], + [-28, 2], + [18, 7], + [10, -9] + ], + [ + [7209, 9382], + [0, -11], + [-19, 1], + [-8, 7], + [16, 13], + [11, -10] + ], + [ + [7078, 9392], + [-5, -14], + [-16, 10], + [21, 4] + ], + [ + [6536, 9406], + [31, -6], + [-8, -26], + [-15, -9], + [-7, -32], + [5, -18], + [16, -29], + [23, -20], + [19, -10], + [-49, -5], + [-16, 3], + [-2, -8], + [-14, 12], + [-18, -1], + [-11, 7], + [-11, 34], + [-11, -4], + [-10, 10], + [-19, -6], + [-8, 6], + [-3, 22], + [11, 12], + [15, -5], + [9, 22], + [11, 9], + [-20, 7], + [7, 8], + [21, 1], + [-7, 12], + [17, 12], + [13, -2], + [20, 9], + [11, -5] + ], + [ + [6970, 9416], + [1, -13], + [11, -6], + [-42, -7], + [3, 20], + [27, 6] + ], + [ + [8951, 9436], + [32, -18], + [0, -21], + [-33, 3], + [-40, 10], + [-27, -4], + [2, 8], + [17, 1], + [17, 22], + [32, -1] + ], + [ + [8903, 9439], + [-10, 16], + [20, 5], + [2, -17], + [-12, -4] + ], + [ + [8148, 9464], + [-16, -15], + [-37, 13], + [18, 14], + [34, -4], + [1, -8] + ], + [ + [7281, 9528], + [-4, -16], + [-14, 11], + [18, 5] + ], + [ + [9075, 9530], + [47, -4], + [5, -12], + [15, 3], + [49, -6], + [-8, -15], + [-25, -8], + [-43, 2], + [-58, 24], + [7, 20], + [11, -4] + ], + [ + [8773, 9524], + [-11, -1], + [6, 29], + [14, -16], + [-9, -12] + ], + [ + [8863, 9565], + [40, -20], + [10, 14], + [19, 1], + [-8, 10], + [35, -19], + [29, 1], + [50, -20], + [-19, -5], + [5, -8], + [-16, -15], + [-40, 6], + [-11, 13], + [15, 13], + [-3, 8], + [-25, -4], + [5, -18], + [12, -15], + [30, -9], + [-38, -6], + [-14, 10], + [-49, -10], + [-6, 8], + [-17, -18], + [-33, 8], + [-25, 20], + [-2, 34], + [18, 1], + [-9, 9], + [42, 18], + [5, -7] + ], + [ + [7674, 9577], + [3, -9], + [-30, 3], + [27, 6] + ], + [ + [8125, 9595], + [2, -10], + [-18, 11], + [16, -1] + ], + [ + [9145, 9596], + [-23, 0], + [29, 8], + [-6, -8] + ], + [ + [6893, 9615], + [24, -15], + [-21, -24], + [-51, -17], + [-116, -32], + [-47, -18], + [0, -15], + [-22, -8], + [-2, -8], + [-17, 8], + [1, -16], + [-26, 8], + [15, -17], + [-16, -8], + [-16, -31], + [-24, -20], + [-36, 4], + [-11, 6], + [-20, -6], + [-4, 9], + [24, 12], + [-30, -4], + [-2, 8], + [26, 12], + [-3, 6], + [26, 13], + [-3, 20], + [24, 4], + [-14, 7], + [18, 4], + [-18, 4], + [-3, 9], + [21, -4], + [14, 19], + [19, -4], + [-5, 11], + [38, 20], + [23, 3], + [14, 11], + [23, -2], + [0, 12], + [52, -5], + [61, 15], + [49, 28], + [35, 1] + ], + [ + [7679, 9622], + [-33, -4], + [35, 11], + [-2, -7] + ], + [ + [8666, 7787], + [3, -13], + [-2, -13], + [9, -14], + [7, 9], + [6, 22] + ], + [ + [6367, 7850], + [-12, -15], + [-2, -14], + [-4, 9], + [-10, -14], + [-17, 0], + [-7, -31], + [-8, -23], + [-10, -8], + [0, -13], + [14, -11], + [8, -28], + [-2, -14], + [6, 19], + [-5, -26], + [0, -21], + [7, -10], + [4, -16], + [12, -26], + [2, -11], + [6, -4] + ], + [ + [6110, 7681], + [-15, 21], + [-1, 6], + [-18, 24], + [-15, 7], + [-11, 15], + [-9, 1], + [-8, 19], + [-17, 11], + [8, 3], + [-1, 11], + [8, -6], + [11, 2], + [5, -4], + [0, 16], + [-4, 2], + [8, 10], + [2, 14], + [4, -6], + [2, 11], + [11, 0], + [-13, 17], + [-5, 0], + [-4, 15], + [6, -3], + [13, 14], + [24, 9], + [0, 13], + [-30, -8] + ], + [ + [6061, 7895], + [-1, 12], + [5, 17], + [11, 5], + [3, 10], + [25, -3], + [0, 13], + [6, 12], + [-8, 29], + [10, 5], + [-8, 3], + [11, 26], + [-1, 14], + [-10, -2], + [-5, 10], + [-7, 0], + [-5, 9], + [-6, -5], + [-8, 10], + [-18, -4], + [-8, 11], + [-8, 20], + [-16, -6], + [-6, -7], + [-10, 4], + [-5, 8], + [-13, -5], + [-6, 10], + [2, 10], + [-4, 19], + [-7, 12], + [-11, -3], + [-13, 12], + [-3, 17], + [8, 9], + [-8, 8], + [-1, 10], + [-11, 13], + [-13, 1], + [-9, -8], + [-15, 5], + [-1, -11], + [-12, -7], + [-3, 5] + ], + [ + [5767, 8523], + [9, -9], + [6, 9], + [-6, 10], + [-10, -2], + [7, 19], + [-4, 30] + ], + [ + [5773, 8590], + [9, 11] + ], + [ + [5778, 8608], + [-1, 16], + [11, -5], + [3, 11], + [10, -4], + [7, 12], + [29, -8], + [2, 8], + [-9, 9], + [-25, 2], + [-10, 28], + [-16, -9], + [-7, 2] + ], + [ + [5856, 9203], + [15, -9], + [19, 18], + [16, -11], + [14, -3], + [-7, -8], + [-20, 4], + [6, -7], + [19, -3], + [-6, -7], + [19, 4], + [5, -5], + [35, -7], + [23, -1], + [52, -28], + [21, -21], + [14, -2], + [16, -14], + [13, -3], + [30, -21], + [1, -23], + [7, -2], + [-5, -24], + [-21, -24], + [-30, -15], + [-22, -4], + [-28, 5], + [-22, 9], + [-27, 3], + [-27, 15], + [-36, 7], + [-24, 23], + [-11, 0], + [8, -15], + [18, -11], + [3, -9], + [13, -6], + [-4, -7], + [14, -3], + [21, -20], + [-4, -21], + [-6, -7], + [13, -46], + [-6, -4], + [16, -15], + [15, 2], + [12, -18], + [31, -13], + [16, 9], + [1, 21], + [-25, 5], + [-16, 19], + [-3, 12], + [10, 2], + [7, 12], + [18, -9], + [10, -13], + [0, -9], + [10, 10], + [31, -15], + [9, 7], + [18, -7], + [-4, 22], + [-19, 30], + [4, 9], + [18, 12], + [6, 9], + [18, 5], + [22, 27], + [11, -8], + [20, 3], + [22, -21], + [1, 11], + [11, 23], + [0, 16], + [-20, 19], + [10, 28], + [3, 31], + [-25, 18], + [18, -4], + [37, 0], + [18, -6], + [16, -18], + [5, -18], + [-38, -5], + [-12, -22], + [17, -9], + [8, -17], + [20, -5], + [34, 13], + [5, 22], + [-3, 11], + [26, 7], + [1, 6], + [24, 9], + [31, 22], + [8, -1], + [31, 13], + [-1, -12], + [16, 4], + [-12, 10], + [32, 18], + [15, -3], + [-7, -14], + [6, -13], + [-21, -8], + [29, -3], + [7, 6], + [11, -7], + [1, 12], + [29, 14], + [38, -5], + [18, 17], + [25, 8], + [15, -13], + [-10, -8], + [1, -13], + [16, -4], + [8, 10], + [-6, 7], + [20, 5], + [13, 11], + [0, 10], + [-22, 28], + [15, 6], + [2, 10], + [74, -10], + [20, -7], + [19, -15], + [62, -29], + [33, -25], + [2, -9], + [17, 25], + [7, 19], + [-21, 2], + [-10, 16], + [-1, 12], + [-35, 14], + [3, 16], + [12, 3], + [-6, 9], + [6, 15], + [-1, 20], + [-16, -3], + [-2, 17], + [8, 14], + [28, 12], + [15, 17], + [14, 51], + [12, 16], + [5, -5], + [52, 1], + [39, -11], + [1, -25], + [-16, -26], + [1, -7], + [-15, -11], + [8, -13], + [16, -10], + [5, -15], + [-2, -25], + [-10, -9], + [8, -25], + [-5, -11], + [3, -21], + [-3, -16], + [5, -8], + [26, -20], + [-15, -16], + [3, -22], + [-18, -13], + [-9, -27], + [-20, -14], + [2, -15], + [-15, -1], + [-10, -7], + [-22, 21], + [-22, -6], + [8, -15], + [27, -10], + [22, 2], + [24, -8], + [10, 6], + [2, 16], + [13, 2], + [26, 20], + [1, 17], + [24, 24], + [-1, 25], + [-11, 15], + [3, 17], + [29, 12], + [31, 4], + [1, -11], + [19, -15], + [-5, -15], + [5, -20], + [-7, -7], + [18, -13], + [18, -1], + [-25, 13], + [0, 18], + [20, 10], + [-11, 14], + [-5, 24], + [-19, 5], + [-24, 13], + [-17, 1], + [-20, -10], + [-27, 5], + [3, 18], + [-10, 15], + [6, 25], + [17, 20], + [-21, 41], + [-15, 12], + [14, 22], + [39, 16], + [5, 17], + [-4, 28], + [15, -7], + [6, -30], + [-13, -17], + [7, -17], + [-5, -18], + [11, -4], + [57, -7], + [6, -11], + [12, 0], + [-4, 17], + [-17, 2], + [-39, 16], + [-8, 20], + [27, 8], + [17, -13], + [15, 3], + [-5, 14], + [-15, -2], + [15, 14], + [16, 5], + [28, -3], + [51, -35], + [23, -3], + [18, 5], + [14, -7], + [-14, -16], + [-16, -6], + [-2, -17], + [7, -12], + [-10, -12], + [11, 2], + [0, 11], + [10, 11], + [9, -6], + [-4, -27], + [-10, -9], + [14, -10], + [-7, 14], + [18, 0], + [6, 8], + [-17, 44], + [13, 23], + [-6, 11], + [-32, 15], + [-3, 11], + [-26, 4], + [-14, 11], + [4, 23], + [-11, 9], + [2, 28], + [39, 5], + [43, -1], + [59, 10], + [40, 3], + [-23, -18], + [25, 2], + [10, 13], + [-19, 21], + [-22, 4], + [14, 18], + [-21, 4], + [13, 10], + [16, -7], + [68, 47], + [67, 8], + [66, 16], + [-28, 9], + [19, 3], + [22, -5], + [25, 7], + [21, -3], + [-16, -13], + [58, 10], + [32, 12], + [29, -10], + [-29, 24], + [18, -3], + [40, 4], + [1, 26], + [63, 39], + [43, 3], + [33, -17], + [-21, -13], + [-24, -3], + [82, -7], + [6, -6], + [-27, -21], + [36, -1], + [4, 12], + [38, 1], + [19, -4], + [27, 5], + [47, -24], + [3, -16], + [19, 4], + [3, -28], + [-21, 5], + [1, -12], + [22, -1], + [-2, -14], + [-20, -17], + [-20, -6], + [-12, -13], + [-47, -16], + [-2, -9], + [-32, -15], + [-20, -19], + [-27, -1], + [-12, -18], + [-17, -2], + [-6, -15], + [-15, -12], + [23, 6], + [7, 17], + [37, -2], + [15, 8], + [51, 12], + [23, 10], + [-7, 6], + [-25, -5], + [-6, 8], + [13, 10], + [25, -6], + [7, 7], + [8, -13], + [19, -6], + [22, 5], + [-2, 12], + [16, -20], + [-8, -12], + [44, 9], + [19, 7], + [100, -13], + [-18, -4], + [1, -11], + [38, -12], + [36, -5], + [25, 2], + [21, -8], + [-7, 11], + [19, -6], + [11, 17], + [-8, 10], + [3, 16], + [17, -2], + [10, 10], + [23, -14], + [29, 0], + [12, -16], + [7, 15], + [30, -4], + [7, -12], + [34, -14], + [-34, -12], + [30, -6], + [-39, -3], + [20, -10], + [18, -1], + [6, -12], + [-15, -11], + [-19, 8], + [27, -37], + [13, -27], + [40, -21], + [13, 12], + [18, 43], + [10, 14], + [13, -19], + [23, -12], + [22, 0], + [4, 6], + [31, 8], + [22, -6], + [19, -11], + [11, -13], + [7, 27], + [16, 4], + [12, -13], + [17, 2], + [-3, 27], + [15, 17], + [-29, 0], + [12, 16], + [37, 2], + [4, 10], + [-12, 9], + [23, -1], + [23, -9], + [38, 0], + [50, -8], + [39, -12], + [-37, 1], + [-16, 4], + [-13, -15], + [27, 6], + [42, 2], + [-26, -26], + [10, 16], + [-12, 4], + [-3, -17], + [-23, -12], + [29, 4], + [30, 31], + [36, 0], + [34, -9], + [13, -13], + [-12, -9], + [-7, 7], + [-9, -11], + [25, -2], + [-2, -11], + [20, 2], + [0, -13], + [24, 3], + [18, -20], + [-13, 0], + [26, -9], + [28, 3], + [65, 12], + [45, -1], + [26, -6], + [33, -17], + [11, -25], + [-11, -19], + [3, -8], + [31, -8], + [3, -28], + [11, -11], + [-10, -25], + [14, 22], + [-2, 26], + [19, 17], + [51, 7], + [23, -12], + [23, 2], + [11, -5], + [24, -1], + [21, 16], + [16, -13], + [2, -19], + [29, -8], + [7, -18], + [22, 4], + [17, 12], + [-13, 32], + [-11, -1], + [11, 11], + [-1, 19], + [41, -7], + [22, -1], + [17, -10], + [1, 9], + [37, -6], + [20, 2], + [28, -7], + [71, -27], + [17, -16], + [-9958, -15], + [3, -12], + [28, -11], + [2, -9], + [12, 1], + [20, -19], + [16, -2], + [-10, -7], + [12, -5], + [0, 10], + [12, -7], + [8, -20], + [10, -2], + [-3, -18], + [5, -13], + [-7, -6], + [14, -8], + [-1, -14], + [17, 13], + [-11, 3], + [9, 6], + [-2, 17], + [-9, 6], + [27, 1], + [20, -12], + [-5, 9], + [32, -6], + [10, -17], + [13, -7], + [10, -17], + [5, 4], + [17, -14], + [-9, 0], + [-14, -11], + [-5, -15], + [-21, 13], + [11, -20], + [-32, 3], + [4, -27], + [-19, -12], + [-8, -11], + [16, -5], + [6, -9], + [-13, -1], + [-12, -9], + [-23, 10], + [-2, 8], + [-16, 10], + [-33, 12], + [-4, 29], + [-29, 10], + [-12, -10], + [-30, 4], + [-11, 27], + [9, 7], + [2, 15], + [-7, -11], + [-28, -4], + [0, -16], + [13, -11], + [-7, -23], + [9982, -11], + [-10, -13], + [-34, -9], + [-21, 8], + [-1, 8], + [-16, 9], + [12, -16], + [-24, 2], + [-11, 7], + [20, -23], + [20, 12], + [-3, -16], + [17, -17], + [8, 8], + [12, -25], + [2, -16], + [-5, -13], + [18, -9], + [2, -20], + [7, -16], + [-12, -7], + [0, -10], + [-28, 12], + [-22, 3], + [-10, 16], + [2, -16], + [-21, -16], + [-25, -11], + [-25, -18], + [-12, 2], + [-7, -10], + [-8, 4], + [-1, -10], + [-10, -10], + [-11, 2], + [5, -8], + [-22, -13], + [-3, -12], + [-17, -4], + [-1, -9], + [-15, -7], + [-10, -16], + [-6, -18], + [-8, 8], + [-7, 21], + [-13, 9], + [-32, 0], + [-35, -20], + [-16, -23], + [-4, 0], + [8, 39], + [-33, -24], + [-5, -14], + [-7, -2], + [-2, 11], + [-30, 3], + [2, -9], + [-9, -4], + [-5, -19], + [4, -12], + [-12, -10], + [4, -10], + [-18, -16], + [-10, -26], + [1, -19], + [13, -7], + [1, 11], + [18, -8], + [3, -6], + [-15, -21], + [1, -36], + [11, 1], + [4, -32], + [-9, -10], + [-12, 13], + [8, 11], + [-6, 4], + [-8, -7], + [6, -6], + [-16, -12], + [-7, -25], + [-1, -16], + [11, -34], + [-11, -14], + [-13, -1], + [-6, 6], + [-15, -9], + [-13, -15], + [-6, -22], + [4, -13], + [-3, -6], + [5, -22], + [-13, 10], + [-9, -5], + [-21, -25], + [1, -26], + [-7, -19], + [-10, -20], + [-11, -7], + [-2, -8], + [-17, -22], + [-9, 17], + [-1, 40], + [-4, 33], + [-7, 23], + [-4, 46], + [-9, 60], + [-2, 29], + [4, 46], + [6, 29], + [6, 15], + [17, 15], + [7, 17], + [-5, 22], + [16, 0], + [7, 14], + [15, 0], + [20, 19], + [24, 33], + [3, 13], + [13, 12], + [5, 12], + [8, 2], + [18, 25], + [14, 14], + [-1, 8], + [30, 21], + [21, 9], + [-8, 4], + [15, 18], + [-7, 9], + [8, 12], + [2, 33], + [14, 12], + [17, -5], + [-18, 17], + [-15, -1], + [-22, -8], + [3, -11], + [-8, -6], + [3, -9], + [-6, -15], + [10, -9], + [-10, -7], + [-5, 11], + [-10, -2], + [-12, -18], + [-32, -32], + [-19, -14], + [8, 27], + [-17, -7], + [5, 11], + [-3, 9], + [14, 29], + [-3, 10], + [-12, -14], + [-10, -2], + [-3, 12], + [-13, 2], + [-26, -10], + [-15, 3], + [-22, -15], + [-1, -18], + [-20, -20], + [0, -9], + [-27, -20], + [-13, -28], + [-7, -1], + [-2, -23], + [14, 5], + [16, -14], + [-1, -7], + [-11, -3], + [-8, 5], + [-13, -10], + [-19, 11], + [0, -8], + [-10, -2], + [-2, -8], + [-16, 8], + [-9, -11], + [-17, -2], + [-9, 15], + [10, 4], + [18, -1], + [6, 4], + [-15, 8], + [-10, 14], + [-13, -8], + [-12, 2], + [-2, 7], + [-23, 8], + [-16, -8], + [5, -5], + [-14, -5], + [6, -12], + [-14, 2], + [-2, 7], + [-12, 0], + [-10, -9], + [-31, 13], + [-3, -16], + [-8, -3], + [-6, 9], + [4, 6], + [-27, -1], + [-32, 2], + [-19, -3], + [-25, -13], + [-19, -30], + [-17, -11], + [-8, -13], + [-5, -20], + [-15, -9], + [-4, -11], + [-11, -12], + [-14, -9], + [-22, -32], + [-12, -26], + [-26, -27], + [-8, -4], + [-15, -23], + [-19, -15], + [0, -12], + [14, -9], + [30, 5], + [0, -28], + [-4, -21], + [12, 0], + [5, 14], + [-6, 6], + [10, 10], + [8, -2], + [-8, -11], + [9, -11], + [-12, -22], + [16, 4], + [11, 9], + [7, 14], + [1, -9], + [-10, -15], + [7, -3], + [8, 26], + [-1, 20], + [16, -8], + [9, 5], + [17, -12], + [0, -11], + [27, -32], + [6, -10], + [-13, -12], + [8, -5], + [1, -15], + [-4, -13], + [11, -12], + [-6, -3], + [3, -9], + [-9, -16], + [-6, -3], + [0, -12], + [-6, -8], + [0, -18], + [-4, -4], + [-3, -20], + [1, -32], + [3, -23], + [-6, -17], + [1, -17], + [-6, -17], + [0, -14], + [-26, -38], + [-7, -28], + [-13, -18], + [-5, -27], + [-18, -41], + [-15, -25], + [-10, -11], + [-8, -20], + [-6, -6], + [-5, -15], + [-7, -5], + [-11, -25], + [-3, -14], + [-5, 0], + [-1, -12], + [-18, -20], + [-9, -6], + [-7, -11], + [-8, 0], + [-12, -10], + [-6, 7], + [-4, -4], + [-12, 10], + [-3, -4], + [-1, 23], + [-9, -11], + [1, 15], + [-16, -21], + [-1, -11], + [-14, -11], + [-4, -17] + ], + [ + [7858, 9748], + [0, -12], + [30, 4], + [14, -16], + [16, -1], + [8, -19], + [-16, -10], + [-31, -5], + [-68, -3], + [-33, -14], + [-21, 5], + [21, 17], + [6, 19], + [36, 39], + [19, -6], + [2, 11], + [17, -9] + ], + [ + [7118, 9769], + [37, -6], + [-27, -3], + [-10, 9] + ], + [ + [7523, 9794], + [79, -8], + [-18, -13], + [-55, 8], + [-6, 13] + ], + [ + [6659, 9787], + [-27, 3], + [21, 7], + [6, -10] + ], + [ + [7715, 9797], + [-5, -21], + [25, 17], + [20, 0], + [24, -16], + [-9, -24], + [-19, -5], + [25, -18], + [-39, -10], + [-38, 4], + [-11, 8], + [-50, 2], + [-18, 12], + [-1, 14], + [-33, 3], + [29, 14], + [23, 19], + [77, 1] + ], + [ + [6585, 9810], + [-4, -16], + [-28, 0], + [1, 14], + [31, 2] + ], + [ + [6481, 9813], + [15, -7], + [-35, -6], + [20, 13] + ], + [ + [6646, 9809], + [-52, -12], + [-13, 20], + [42, 0], + [23, -8] + ], + [ + [6329, 9836], + [-38, -20], + [-39, 11], + [77, 9] + ], + [ + [6729, 9835], + [-5, -10], + [-29, -12], + [-38, 1], + [-13, 13], + [14, 11], + [65, 2], + [6, -5] + ], + [ + [6537, 9839], + [-13, -8], + [-22, 8], + [35, 0] + ], + [ + [6388, 9840], + [7, -8], + [30, 3], + [-9, -14], + [-60, -9], + [4, -14], + [-38, -4], + [16, 15], + [-22, 8], + [63, 10], + [-18, 7], + [27, 6] + ], + [ + [7225, 9845], + [-28, -9], + [2, 9], + [26, 0] + ], + [ + [6560, 9854], + [57, -11], + [-29, -1], + [-28, 12] + ], + [ + [6542, 9848], + [13, 2], + [47, -13], + [-19, -7], + [-41, 18] + ], + [ + [6797, 9859], + [20, -16], + [-28, -11], + [-36, -3], + [-17, 9], + [46, 10], + [15, 11] + ], + [ + [7536, 9852], + [-37, 1], + [2, 7], + [38, -2], + [-3, -6] + ], + [ + [7665, 9859], + [54, -29], + [-20, -3], + [0, -24], + [-75, -6], + [-22, -7], + [-63, 20], + [36, 9], + [15, 17], + [-22, -3], + [16, 14], + [81, 12] + ], + [ + [6577, 9869], + [28, -6], + [-38, -6], + [10, 12] + ], + [ + [6605, 9878], + [14, -9], + [-44, 4], + [30, 5] + ], + [ + [5846, 5121], + [2, -14], + [5, -5], + [3, -11], + [1, -26], + [-1, -18], + [-8, -2] + ], + [ + [5801, 5040], + [6, 7], + [8, 22], + [-4, 17] + ], + [ + [5821, 5103], + [7, 4], + [4, -9], + [5, 7], + [5, 16], + [4, 0] + ], + [ + [4526, 6379], + [-1, 15], + [2, 22] + ], + [ + [6163, 6147], + [4, 4], + [4, -6], + [-8, 2] + ], + [ + [6345, 6826], + [6, -29], + [6, -11], + [0, -14], + [11, -4], + [-4, -5], + [5, -5], + [11, -23], + [8, -6], + [0, -16], + [6, -10], + [-2, -18], + [-4, 4], + [7, -31], + [8, -17], + [0, -12], + [8, -21] + ], + [ + [6422, 6601], + [7, -4], + [-5, -9], + [8, -8] + ], + [ + [6443, 6277], + [-4, -2], + [-58, -16], + [-17, -4], + [-27, -27], + [-16, -40], + [-3, -19], + [-9, -11], + [-5, 1], + [-7, 19], + [-11, -3], + [-25, 5], + [-5, 6], + [-16, 1], + [-15, -5], + [-11, 0], + [-7, 10], + [-9, -11], + [-1, -24], + [2, -15], + [-11, -16] + ], + [ + [6188, 6126], + [-2, 21], + [-5, 8], + [0, 8], + [-6, 9], + [0, 15], + [-15, 23], + [-9, 25], + [0, 8], + [-7, 16], + [-2, 14], + [-11, 49], + [-18, 29], + [-9, 3], + [-6, 13], + [-13, 43], + [3, 7], + [-7, 28], + [4, 20], + [0, 19], + [-8, 23], + [0, 8], + [-14, 46], + [-18, 21], + [-2, -3], + [-12, 35], + [3, 0], + [0, 20], + [-4, 7], + [-4, 18], + [-8, 11], + [1, 11], + [-5, 5], + [-8, 30], + [-4, 7], + [-8, 26], + [-7, 15], + [-6, 24], + [-8, 14], + [-6, -3], + [-6, 7], + [5, 20], + [4, 47] + ], + [ + [6024, 6449], + [0, -20], + [6, -21], + [2, -34], + [2, -65], + [5, -40], + [4, -8], + [10, -8], + [5, -9], + [1, -10], + [10, -6], + [3, -8] + ], + [ + [5946, 5727], + [-6, 5], + [3, 17], + [-2, 21], + [-20, 35], + [-3, 45], + [2, 5], + [2, 31], + [-13, 0], + [0, -12], + [-18, 0], + [7, -17], + [0, -27], + [2, -11], + [-14, -24], + [-1, -9], + [-18, -39], + [-13, -4], + [-14, 23], + [-7, 8], + [-11, -12], + [-4, -17], + [-13, -9], + [-5, -10], + [1, -6], + [-23, 0], + [-4, 15], + [-22, 1], + [-14, -7], + [-11, 27], + [-8, 12], + [-2, 15], + [-21, -7], + [-3, -21], + [-5, -6], + [0, -19], + [-3, -6], + [-3, -29], + [-11, -12] + ], + [ + [5634, 5812], + [3, 13], + [-1, 15], + [-4, -1], + [-7, 16], + [3, 23], + [-5, -2], + [0, 34], + [-7, 7], + [-6, -7], + [-5, 9], + [6, 21], + [7, 14], + [-5, 25], + [4, 9], + [9, 9], + [-4, 7], + [-1, 18], + [8, 6], + [0, 10], + [7, 15], + [2, 15], + [-2, 11], + [7, 9], + [12, 2], + [11, -2], + [0, 218] + ], + [ + [5943, 5426], + [-14, -28], + [-9, 2], + [-3, 6], + [-5, -5], + [-13, -3], + [-6, -13], + [-7, 5], + [-4, 12], + [-7, -8], + [-11, 7], + [-8, -17] + ], + [ + [4535, 5893], + [-1, 42] + ], + [ + [4540, 5965], + [-5, 11], + [-1, 13], + [-14, 41], + [-8, 3], + [11, 9], + [8, 18], + [9, 33] + ], + [ + [7884, 5266], + [4, -3], + [-4, -7], + [-7, 2], + [7, 8] + ], + [ + [3953, 2073], + [22, -4], + [11, -7], + [17, -21], + [3, -11], + [-10, -7], + [-10, 20], + [-12, 11], + [-22, 11], + [1, 8] + ], + [ + [9445, 4521], + [15, -17], + [-6, 0], + [-3, 9], + [-8, 4], + [2, 4] + ], + [ + [9612, 4569], + [-6, -12], + [-3, 7], + [9, 5] + ], + [ + [9481, 4595], + [13, -14], + [8, 0], + [5, -13], + [0, -8], + [-12, 4], + [-9, 10], + [-1, 11], + [-6, 3], + [2, 7] + ], + [ + [9483, 4641], + [4, -12], + [0, -10], + [-5, 7], + [1, 15] + ], + [ + [9442, 4640], + [13, 0], + [11, -20], + [-4, -9], + [-10, 7], + [-13, 1], + [-6, 13], + [0, 16], + [3, 2], + [6, -10] + ], + [ + [9388, 4691], + [3, -9], + [-6, 0], + [3, 9] + ], + [ + [9371, 4689], + [-5, 3], + [5, 6], + [0, -9] + ], + [ + [9466, 4701], + [6, -16], + [-2, -11], + [5, -5], + [7, -34], + [-14, 21], + [-3, 10], + [-5, 37], + [6, -2] + ], + [ + [9378, 4711], + [4, -3], + [3, -19], + [-7, 4], + [-2, 13], + [-9, -2], + [-1, 6], + [6, 13], + [5, -1], + [1, -11] + ], + [ + [9365, 4716], + [-5, 1], + [-1, 9], + [4, 5], + [2, -15] + ], + [ + [9349, 4747], + [6, -9], + [-4, -9], + [-5, 14], + [3, 4] + ], + [ + [9405, 4746], + [4, 0], + [9, -16], + [12, -12], + [9, -15], + [1, -13], + [-7, 12], + [-11, 9], + [-18, 25], + [-3, 13], + [4, -3] + ], + [ + [9349, 4800], + [13, -15], + [3, -16], + [10, -7], + [-2, -7], + [-15, 13], + [-7, 18], + [-6, 9], + [4, 5] + ], + [ + [4650, 5621], + [2, -12], + [-12, 10], + [10, 2] + ], + [ + [4681, 5581], + [-6, 9], + [-23, 18], + [1, 15], + [-7, 4], + [-6, 10], + [2, 3], + [-3, 18], + [-5, -4], + [-3, 18], + [7, 1], + [-6, 7], + [0, 11], + [4, 7], + [-6, 5] + ], + [ + [2560, 5955], + [-2, -14], + [-12, 0], + [-13, 5], + [-14, 14], + [-14, 2], + [-8, 11] + ], + [ + [6359, 5831], + [0, -104], + [-27, -84] + ], + [ + [6201, 5844], + [18, -44], + [13, -18], + [15, 0], + [11, 15], + [4, 0], + [10, 12], + [11, -4], + [6, -7], + [6, 4], + [21, 25], + [8, -5], + [14, 3], + [9, 10], + [12, -4] + ], + [ + [6359, 5831], + [14, 5], + [4, 7], + [7, 0], + [12, 7], + [13, 23], + [15, -9], + [-5, -19], + [-1, -18], + [2, -35], + [8, -8], + [-14, -6], + [-3, -53], + [-4, -8], + [-1, -12], + [-6, -10], + [-3, -22], + [-6, -20], + [-8, -13], + [0, -11], + [-6, -25], + [-10, -29], + [-4, -29], + [-12, -48], + [-13, -33], + [-7, -26], + [-12, -30], + [-14, -28], + [-10, -24], + [-9, -15], + [-8, -19], + [-21, -26], + [-8, -7], + [-18, -27], + [-8, -17], + [-10, -15], + [-22, -48], + [-11, -21], + [-18, -49], + [-9, -28] + ], + [ + [5183, 5187], + [-3, -2], + [-1, 13], + [5, 8], + [3, -11], + [-4, -8] + ], + [ + [3409, 5499], + [3, 3], + [1, 20], + [5, 7], + [8, -2], + [20, -10], + [2, 10], + [33, 0], + [18, -8], + [-1, -20], + [-3, -8] + ], + [ + [5626, 8009], + [-12, -39] + ], + [ + [5377, 7802], + [3, 6] + ], + [ + [5474, 8485], + [-7, -30], + [-12, -34], + [0, 19], + [19, 45] + ], + [ + [5521, 8514], + [8, 1], + [-8, -14], + [-2, -22], + [-10, -8], + [-5, 7], + [-1, 19], + [10, 16], + [8, 1] + ], + [ + [5327, 8537], + [-2, -9], + [-9, 3], + [11, 6] + ], + [ + [5671, 8973], + [-41, -2], + [-9, 5], + [1, -19], + [-16, 0], + [3, -8], + [-13, 0], + [4, -13], + [-10, -13], + [-4, -15], + [12, -15], + [-17, -17], + [-4, -15], + [-13, -13], + [-8, 1], + [-11, -13], + [-32, -24], + [0, -9], + [-17, -3], + [5, -11], + [-5, -7], + [-15, -2], + [5, -14], + [-5, -29], + [-7, -9], + [5, -32], + [0, -18], + [10, -10], + [10, 4], + [14, -25], + [9, -2], + [6, -19], + [-20, -23], + [-6, 3], + [8, -16], + [-17, -16], + [-18, -13], + [-13, -2], + [8, -8], + [-6, -3], + [3, -15], + [-10, -16], + [6, -8], + [0, -17], + [-6, -10], + [-3, -37], + [-3, 0], + [-6, -23], + [-5, -8], + [-6, 5], + [-27, -3], + [-11, -14], + [-2, -11], + [5, -10], + [-6, -9], + [-11, 3], + [-10, -5], + [-14, 2], + [4, 15], + [-14, 31], + [8, 6], + [-6, 8], + [8, 2], + [-15, 26], + [-18, 47], + [4, 27], + [-4, 8], + [-9, -4], + [-4, 9], + [-1, 39], + [6, -6] + ], + [ + [5891, 3637], + [-3, 2], + [-1, -29], + [-12, 0], + [-11, 7], + [-9, 22], + [0, 24], + [7, 17], + [1, 10], + [8, 11], + [14, -15], + [2, 2] + ], + [ + [3249, 6221], + [-2, 2] + ], + [ + [5999, 7178], + [-3, 27], + [1, 18], + [-4, 4], + [1, 20], + [3, 4] + ], + [ + [5997, 7251], + [7, -5], + [5, 9], + [0, 11], + [9, 3], + [-4, 14], + [4, 21], + [8, -5], + [2, -7], + [12, 0], + [5, 6], + [18, 10], + [10, -11], + [16, -3], + [21, 8], + [20, 17], + [22, -1], + [16, 7], + [4, 7], + [4, -12] + ], + [ + [5402, 5930], + [5, 0], + [0, 13], + [-4, 3], + [-6, -5], + [2, -5] + ], + [ + [5398, 5936], + [-1, 0] + ], + [ + [5044, 5541], + [-12, -7] + ], + [ + [7728, 5654], + [6, -7], + [0, -10], + [-6, -6], + [0, 23] + ], + [ + [7840, 5883], + [5, -11], + [-4, 1], + [-1, 10] + ], + [ + [7858, 5853], + [-4, 22], + [-5, 11], + [-1, -7], + [-12, 18], + [0, 8], + [-5, 0], + [-8, 10], + [-7, -5], + [-16, 5], + [3, 15], + [-3, 7], + [4, 21], + [-11, 5], + [-15, -8], + [-2, -9], + [4, -13], + [-4, -16], + [0, -27], + [2, -5], + [-7, -15], + [0, -11], + [-4, -13], + [-5, -20], + [0, -15], + [-9, -32], + [2, -7], + [-2, -27], + [5, -21], + [-3, -10], + [16, 5], + [4, -12], + [1, -29], + [9, -16], + [0, -12], + [4, -37], + [4, -16], + [-4, 4], + [-3, 29], + [-6, -2], + [2, -13], + [6, -18], + [6, 0], + [9, -18], + [12, 1], + [6, -4], + [6, -21], + [7, -12] + ], + [ + [7780, 5554], + [-4, 13], + [-8, 12], + [2, 14], + [-6, 2], + [-5, 10], + [-2, 18], + [-7, 5], + [1, 7], + [-5, 11], + [-4, 1], + [-3, 18], + [-5, -2], + [-2, -12], + [-4, 5], + [-2, 18], + [2, 14], + [4, 19], + [0, 16], + [3, 16], + [7, 40] + ], + [ + [6962, 7540], + [0, 0] + ], + [ + [6882, 7324], + [1, 20], + [12, 24], + [3, 15], + [-7, 12], + [-2, 14], + [4, 10], + [-2, 9], + [-12, 1], + [0, 7], + [-9, 4], + [2, 16], + [8, 9], + [18, -6], + [7, 6], + [0, 11], + [8, 4], + [1, 14], + [-10, 2], + [13, 4], + [7, -3], + [1, 9], + [-4, 11], + [5, 14], + [8, -8], + [18, 14], + [5, 7], + [8, -18], + [-11, -19], + [7, -10], + [9, 3] + ], + [ + [6497, 7333], + [-3, 23], + [2, 30], + [-1, 22], + [4, 15], + [-12, 17], + [0, 9], + [-11, 0], + [1, 8], + [14, 2], + [-9, 14], + [6, 10], + [-5, 3], + [-14, -3], + [-5, 6], + [0, 25], + [4, 9], + [2, 19], + [4, -11], + [13, -1], + [5, -8], + [16, 6], + [1, 12], + [8, -6], + [3, 14], + [-19, 23], + [-4, 34], + [-6, 5], + [-16, -3], + [-5, -6], + [-5, -17], + [4, 0], + [-3, -19], + [-7, 9], + [-3, 13] + ], + [ + [6554, 7562], + [29, -5], + [4, 7], + [-4, 7], + [-2, 23], + [4, 3] + ], + [ + [6585, 7597], + [4, -18], + [11, -2], + [7, 14], + [-6, 6], + [0, 13] + ], + [ + [6601, 7610], + [5, 1], + [4, 19], + [7, -2], + [-3, 10], + [11, 1], + [2, 6], + [8, -12], + [7, -2], + [7, -14], + [13, 2], + [5, -8], + [-1, -12], + [6, -8], + [-5, -4], + [4, -10], + [-3, -10], + [11, -11], + [18, 1], + [6, -3], + [7, 6], + [9, -10], + [8, -36], + [4, -2], + [5, -29], + [27, -31], + [4, -10], + [13, -16], + [5, 2], + [10, -14], + [27, -29], + [7, 1], + [19, -14], + [3, -4], + [-4, -9], + [0, -25] + ], + [ + [8444, 4645], + [12, 9] + ], + [ + [8469, 4667], + [5, 9], + [1, 10], + [20, 8], + [10, -1], + [6, 5], + [3, -4], + [11, 10], + [11, -6], + [-13, -19], + [-8, -3], + [-4, -9], + [-7, -2], + [-6, -8], + [-10, -3], + [-15, -17] + ], + [ + [130, 3966], + [6, 0], + [-1, -7], + [-5, 7] + ], + [ + [3308, 5807], + [-4, -9], + [1, -31], + [-4, -4], + [-14, -1], + [-5, 4], + [10, 7], + [0, 20], + [-5, 5], + [8, 7], + [13, 2] + ], + [ + [5303, 7135], + [4, -6], + [-9, -6], + [0, 11], + [5, 1] + ], + [ + [5238, 7310], + [7, 2], + [10, 15], + [13, 6], + [17, -9], + [-4, -1], + [6, -17], + [-5, -4], + [10, -3], + [14, 20], + [3, -14], + [-10, -23], + [-6, -4], + [-3, -16], + [6, -18], + [11, -10], + [-1, -16], + [3, -7], + [-3, -11], + [-12, -28], + [-14, -14], + [-2, -16], + [4, -12], + [9, -10], + [6, 4], + [0, -13], + [11, 4], + [2, -20], + [9, -1] + ], + [ + [5778, 7600], + [-2, -9], + [6, -15], + [20, -17], + [6, -2], + [-3, -13], + [-14, -1], + [-9, 6], + [-6, -7], + [-12, 1], + [-9, -20], + [-14, -10], + [-15, -24], + [2, 17], + [13, 10], + [3, 7], + [-20, -3], + [-1, 9] + ], + [ + [5997, 7251], + [2, 5], + [-6, 17], + [12, 18], + [0, 11], + [-6, 7], + [-10, -18], + [-8, -3], + [-18, 15], + [-11, -13], + [-17, -26], + [-7, 1], + [-17, -8], + [-13, 9], + [-7, 18], + [-21, 18], + [-18, 5], + [-3, -3], + [0, -18], + [-5, -18], + [-4, 6], + [-13, -10], + [-12, 5], + [-7, 9], + [0, 16], + [-7, -1], + [-7, 9], + [-10, 3], + [-3, -6], + [-11, 1], + [-2, -6], + [-9, 3], + [8, 5], + [12, 0], + [-1, 7], + [8, 7], + [-15, -3], + [-12, 2], + [-1, 8], + [7, -2], + [-10, 13], + [0, 14], + [-5, 5], + [7, 4], + [-1, 13], + [-17, 7], + [-11, 9], + [7, 6], + [-4, 14], + [4, 3], + [5, -20], + [14, 8], + [-7, 0], + [-5, 16], + [6, 2], + [3, 10], + [-6, -2], + [0, 14], + [-6, 9], + [9, 16], + [-24, -6], + [2, 29], + [16, 25], + [16, 3], + [2, -7], + [11, -1], + [-1, 11], + [8, -2], + [-2, -7], + [11, 3], + [19, -3], + [1, 7], + [-8, 3], + [5, 6], + [27, 5], + [-15, 3], + [-11, 13], + [6, 13], + [19, -6], + [11, 5], + [15, -8], + [9, 1], + [7, 11], + [29, 28], + [14, 6], + [10, 9], + [28, -6], + [10, 0], + [10, 9], + [1, -10], + [6, -11], + [9, -5], + [10, 6], + [4, -16], + [8, -13], + [5, 8], + [12, -5], + [0, -6], + [13, -8], + [8, 0], + [15, -7], + [32, 11], + [4, -6], + [14, -5], + [12, 7], + [24, 20], + [3, 7] + ], + [ + [8378, 6635], + [10, -12], + [-5, -8], + [1, -22], + [-6, -18], + [-4, -43], + [-3, -19], + [-6, -20], + [-4, -5], + [-4, -17], + [-1, -27], + [-5, 7], + [-1, 16], + [-11, 20], + [-2, 22], + [-3, 0], + [2, 15], + [0, 20], + [17, 58], + [3, 3], + [4, 18], + [12, 7], + [2, 9], + [4, -4] + ], + [ + [6108, 4736], + [-7, -14], + [1, 11], + [6, 3] + ], + [ + [6093, 4842], + [6, -26], + [-4, -4], + [-7, 16], + [0, 15], + [5, -1] + ], + [ + [6102, 4899], + [5, -11], + [-3, -19], + [-2, 30] + ], + [ + [5914, 5071], + [5, -1], + [2, -12], + [-9, 7], + [2, 6] + ], + [ + [5882, 5125], + [1, 0] + ], + [ + [5883, 5125], + [1, 0] + ], + [ + [5884, 5125], + [-1, -28], + [-2, 0], + [-1, -30], + [-2, -20], + [4, 2], + [0, -28], + [2, 8], + [4, -3], + [0, 13], + [5, -3], + [-3, 10], + [7, 6], + [2, -10], + [12, -2], + [8, 5], + [3, -7], + [17, 17], + [-2, 8], + [-4, -6], + [-10, 4], + [5, 8], + [-3, 9], + [5, -1], + [5, 9], + [-1, 12], + [6, 0], + [-2, 7], + [8, 17] + ], + [ + [6088, 4913], + [1, -10], + [-4, -16], + [-3, -25], + [-5, -21], + [2, -26], + [5, -5], + [12, -22], + [2, -15], + [-4, -5], + [-4, -23], + [1, -10], + [4, -2], + [0, -13], + [-4, -14], + [2, -25], + [4, -7], + [0, -16], + [4, -4], + [0, -15], + [4, -21], + [-2, -8], + [15, -16], + [5, -14] + ], + [ + [5971, 4516], + [-2, 9] + ], + [ + [5969, 4527], + [-5, 7] + ], + [ + [5964, 4536], + [-4, 14], + [2, 20], + [-2, 4], + [-1, 30], + [-7, 20] + ], + [ + [5949, 4630], + [-3, 4] + ], + [ + [5946, 4635], + [-4, -2], + [-1, -10] + ], + [ + [5914, 4641], + [-12, 10], + [-3, 6], + [-13, 6], + [-6, 6], + [-4, 13], + [-11, 6] + ], + [ + [5865, 4688], + [0, 10], + [-4, 5], + [-1, 11], + [-11, 36], + [1, 11], + [-3, 8], + [2, 12], + [-5, 9], + [-7, 21], + [-6, -1], + [-6, 12], + [0, 13], + [6, 7], + [-5, 32], + [1, 21], + [-6, 5], + [2, 27] + ], + [ + [5846, 5121], + [10, 4], + [26, 0] + ], + [ + [5883, 5125], + [1, 0] + ], + [ + [5944, 5197], + [-8, -3], + [1, 8], + [-8, -8], + [-3, 15], + [-5, -3], + [-2, -12], + [-6, -7], + [0, 7], + [-6, -6], + [0, 10], + [-8, -17], + [-9, 0], + [-4, -9], + [3, -7], + [-9, -26], + [2, -14] + ], + [ + [5823, 5155], + [5, 6], + [2, 14], + [-6, 2] + ], + [ + [5846, 5254], + [4, -12], + [9, 28], + [10, 11], + [3, 11], + [-1, 25], + [-3, -9] + ], + [ + [6061, 7895], + [-18, 0], + [-6, -11], + [-4, 2], + [-12, -13], + [-4, 3], + [-22, -8], + [-14, -18], + [-4, 3], + [-11, -12], + [4, -22], + [15, -28], + [18, 10], + [13, -3], + [-5, -9], + [1, -11], + [-17, -4], + [-9, 7], + [-4, -10], + [-23, -12], + [-12, -18], + [-10, -2], + [-11, 11], + [5, 5], + [1, 24], + [-8, 3], + [-11, 13], + [-9, -2], + [-1, 8], + [24, 21], + [8, 2], + [-1, 14], + [-6, -3], + [-5, 10], + [-3, -6], + [-18, -3], + [-17, 14], + [4, 8], + [-7, 6], + [17, -5], + [4, 9], + [-11, -4], + [-6, 5], + [-25, -2], + [-24, -46], + [-5, 1], + [-10, -23], + [4, 2], + [-3, -14] + ], + [ + [5836, 7853], + [9, -17], + [2, 3], + [-11, 14] + ], + [ + [5948, 7848], + [0, -9], + [-11, 7], + [3, -13], + [4, 5], + [21, -17], + [6, -8], + [4, -20], + [9, -4], + [-12, 23], + [-7, 26], + [-10, -6], + [-7, 16] + ], + [ + [3523, 3302], + [-5, -5], + [0, -12], + [-8, -5], + [3, -30] + ], + [ + [3517, 3240], + [-4, -18], + [-7, -13], + [0, -7], + [-13, -16], + [-20, -17], + [-12, 10], + [-14, 0], + [-7, -8], + [-20, 15], + [-8, 13], + [-18, -1], + [-16, 29], + [-2, 10], + [3, 27], + [-1, 10], + [9, 9], + [-4, 31] + ], + [ + [677, 6342], + [13, -11], + [2, -12], + [8, -13], + [-6, -10], + [-16, -13], + [-3, -11], + [-7, 9], + [1, 15], + [-4, 25], + [5, 12], + [-1, 17], + [8, -8] + ], + [ + [649, 6394], + [3, -7], + [7, 2], + [8, -8], + [0, -7], + [-9, -6], + [-4, 2], + [0, 10], + [-7, 7], + [2, 7] + ], + [ + [631, 6405], + [16, -4], + [-2, -5], + [-15, 2], + [1, 7] + ], + [ + [613, 6427], + [6, -8], + [1, -12], + [-13, 2], + [-3, 14], + [7, 10], + [2, -6] + ], + [ + [571, 6463], + [4, -3], + [-1, -14], + [-8, -3], + [-6, 11], + [11, 9] + ], + [ + [2301, 6687], + [-6, 35], + [0, 12], + [6, -47] + ], + [ + [2761, 6828], + [-2, -18], + [-2, 17], + [4, 1] + ], + [ + [2366, 6873], + [3, -1], + [-11, -13], + [8, 14] + ], + [ + [1707, 7111], + [7, -9], + [-6, 0], + [-1, 9] + ], + [ + [1671, 7144], + [8, -4], + [-8, -2], + [0, 6] + ], + [ + [2993, 7551], + [-6, -11], + [8, 7], + [8, -1], + [-20, -15], + [-36, -12], + [-4, 1], + [4, 11], + [7, 6], + [29, 6], + [10, 8] + ], + [ + [2582, 7791], + [0, -10], + [-7, -17], + [-3, 8], + [10, 19] + ], + [ + [2679, 7836], + [1, -8], + [-10, 3], + [9, 5] + ], + [ + [2563, 7913], + [-19, -17], + [-6, 0], + [5, 14], + [8, 6], + [12, -3] + ], + [ + [2541, 7956], + [-2, -6], + [-15, -14], + [0, 8], + [17, 12] + ], + [ + [1595, 7969], + [-3, -9], + [8, -13], + [-1, -5], + [-9, 17], + [5, 10] + ], + [ + [1582, 8004], + [-1, 0] + ], + [ + [2511, 7947], + [-14, -11], + [-19, -11], + [-20, -29], + [-17, -21], + [9, -3], + [22, 14], + [6, 0], + [-5, -19], + [14, -2], + [11, 5], + [7, 9], + [14, 4], + [10, 7], + [7, 13], + [7, -14], + [-1, -10], + [10, 6], + [9, -1], + [12, -22], + [11, 0], + [9, -4], + [14, 14], + [18, -2], + [13, 6], + [0, -17], + [15, -1] + ], + [ + [2663, 7852], + [-3, -10], + [9, -12], + [-16, 1], + [-5, 4], + [-2, -11], + [-7, 9], + [-15, 5], + [-3, -7], + [-25, -7], + [-13, 0], + [-15, -39], + [-3, -12], + [-10, -17], + [2, -8], + [10, 17], + [7, -3], + [-11, -49], + [1, -13], + [-6, -26], + [0, -14], + [4, -15], + [-2, -28], + [9, -33], + [8, -4], + [16, 14], + [7, 22], + [5, 26], + [0, 15], + [-9, 37], + [3, 10], + [-3, 17], + [8, 20], + [0, 14], + [5, 15], + [7, 2], + [7, 15], + [-3, -22], + [4, -4], + [4, 14], + [0, 16], + [11, 5], + [-3, 15], + [9, 10], + [13, -8], + [6, -11], + [16, -7], + [6, -13], + [-4, -11], + [4, -6], + [-1, -28], + [-6, -5], + [-1, -13], + [-7, -2], + [-3, -18], + [6, -5], + [7, 6], + [6, 16], + [9, 5], + [7, -10], + [4, -37], + [3, -14] + ], + [ + [2704, 7634], + [-5, 5], + [-3, -17], + [-6, -8], + [-3, -17], + [-6, -12], + [15, -11], + [7, 0], + [5, -7], + [9, 4], + [14, 3], + [9, 12], + [24, 15], + [26, 21], + [14, 21], + [5, 2], + [-1, 17], + [-5, 3] + ], + [ + [2804, 7674], + [10, 6], + [16, 2], + [13, -8], + [18, 0], + [8, 5], + [15, 19], + [-3, 9], + [4, 4], + [-7, 11], + [15, 16], + [1, 7] + ], + [ + [3116, 7818], + [10, -9] + ], + [ + [3134, 7784], + [3, -9], + [-3, -20], + [-20, -16], + [-6, 5], + [-13, -5], + [1, -9], + [-12, 11], + [-3, -22], + [-14, -14], + [-10, 3], + [-8, -8], + [1, -9], + [-11, -15], + [-6, -22], + [1, -15], + [5, 1], + [-13, -19], + [9, -7], + [5, -23], + [17, -8], + [-14, -3], + [-6, -6], + [0, 11], + [-15, -14], + [0, 12], + [-5, 5], + [-1, -17], + [-12, -9], + [-29, -2], + [-6, -9], + [-8, -1], + [-23, -27], + [-1, -10], + [8, -1], + [-2, -29], + [-3, -14], + [-7, -9], + [-1, -11], + [-12, -24], + [-1, 15], + [-7, 2], + [-10, 13], + [3, -23], + [9, -21], + [1, -16], + [-10, -31], + [-7, -13], + [-8, -30], + [-2, 11], + [4, 20], + [6, 17], + [-6, -2], + [1, 9], + [-13, 21], + [-1, 17], + [4, 11], + [-2, 15], + [11, 15], + [-5, 0], + [-11, -10], + [2, -16], + [-4, -6], + [0, -23], + [4, -6], + [1, -20], + [-9, 11], + [-8, -2], + [9, -4], + [11, -13], + [-2, -17], + [-6, 3], + [8, -12], + [-7, -12], + [6, -8], + [-4, -8], + [12, -4], + [5, -35], + [7, -23], + [-5, 9], + [-6, 38], + [-2, -15], + [6, -17], + [-9, 5], + [0, -7], + [-15, -4], + [-2, -6], + [15, 3], + [13, -8], + [-1, -17], + [-3, 2], + [-5, -13], + [-13, 1], + [-2, 9], + [-4, -8], + [7, -6], + [-2, -11], + [-11, -8], + [17, -2], + [-7, -11], + [-15, -4], + [-15, -18], + [-9, -27], + [-11, 1], + [-13, -12], + [-5, -10], + [-4, -21], + [-22, -32], + [-14, -8], + [1, -8], + [-12, -15], + [1, -5], + [-11, -14], + [-3, -12], + [2, -18], + [-4, -5], + [-3, -19], + [8, -63], + [9, -38], + [9, -26], + [-5, 0], + [0, -10], + [18, -75], + [3, -31], + [-2, -12], + [-1, -28], + [-4, -11], + [-4, -29], + [-12, -1], + [-7, -4], + [0, 14], + [-6, 25], + [-6, 7], + [-6, 0], + [-3, 31], + [-6, 5], + [0, 20], + [-7, -2], + [-6, 21], + [-3, 18], + [7, 15], + [-1, 8], + [-7, 6], + [0, -19], + [-5, 8], + [2, 21], + [4, 14], + [0, 26], + [-4, 16], + [-7, 0], + [-10, 20], + [-6, 20], + [-11, 14], + [-10, -4], + [-10, -15], + [-16, -5], + [0, 7], + [-11, 20], + [-22, 14], + [-15, -1], + [-2, 9], + [-4, -11], + [-14, -5], + [-4, 7], + [-1, 16], + [-3, 2], + [-2, -22], + [-5, 5], + [-5, -5], + [-10, 6], + [-14, -7], + [-7, -9], + [-11, 7], + [-4, 7], + [-8, -12], + [2, -7], + [10, -1], + [3, 4], + [6, -14], + [5, 12], + [3, -3], + [-8, -29], + [4, -8], + [11, -5], + [3, -9], + [-4, -9], + [-3, 10], + [-15, 9], + [2, 4], + [-12, 11], + [4, -9], + [-2, -16], + [-10, 12], + [-8, -14], + [-15, 9], + [0, 13], + [-7, 3], + [-3, 12], + [-6, 5], + [-9, -8], + [4, -6], + [-13, -2], + [-21, 13], + [-16, -5], + [2, 17], + [-8, -18], + [-17, -13], + [-1, 19], + [-8, -5], + [-1, -9], + [4, -12], + [-8, -12], + [1, -4], + [-14, -18], + [-16, -9], + [-12, 8], + [1, -9], + [6, -8], + [-7, -6], + [-5, 6], + [1, -12], + [-12, -8], + [1, -14], + [-7, -33], + [-3, -26], + [7, -32], + [1, -16], + [3, -1] + ], + [ + [2245, 6713], + [1, 7], + [-9, 21] + ], + [ + [2193, 6879], + [-7, 10] + ], + [ + [1746, 7056], + [-4, 10], + [-2, 27], + [-8, 16], + [-15, 18], + [-6, 2], + [-3, 12], + [-9, 0], + [-10, 6], + [-10, 18], + [-21, 3], + [-9, 5], + [0, 33], + [-7, 5], + [0, 12], + [-12, 15], + [-5, 18], + [-9, 13], + [-4, 23], + [5, 9], + [-3, 11], + [-6, -1], + [-8, 13], + [-3, 21], + [3, 5], + [9, -11], + [-10, 29], + [8, 6], + [-7, 6], + [-2, -19], + [-16, 13], + [5, 3], + [-7, 20], + [-7, 6], + [-10, 20], + [1, 10], + [-4, 16], + [2, 10], + [-2, 15], + [-7, 17], + [-8, 9], + [0, 19], + [8, 15], + [-2, 17], + [3, 16], + [-2, 16], + [-5, 5], + [3, 12], + [-5, 8], + [-1, 32], + [-5, 10], + [9, 41], + [4, 25], + [2, 52], + [2, 11], + [1, 62], + [13, 7], + [-14, -2], + [1, 29], + [-4, -2], + [6, 13], + [-7, 6], + [-10, 44], + [-7, 20], + [6, 11], + [15, -11], + [24, 0], + [7, -6], + [4, -14], + [-9, -15], + [12, 8], + [2, -20], + [-7, -10], + [2, -4], + [10, 14], + [-1, 29], + [5, 8], + [-5, 18], + [-9, 6], + [8, 12], + [-10, 16], + [1, 6] + ], + [ + [60, 8169], + [1, -9], + [-11, 9], + [10, 0] + ], + [ + [80, 8161], + [-11, 0], + [12, 11], + [-1, -11] + ], + [ + [96, 8175], + [2, -14], + [-10, 0], + [1, 14], + [7, 0] + ], + [ + [177, 8186], + [18, -5], + [-12, -3], + [-15, 5], + [9, 3] + ], + [ + [162, 8200], + [5, -4], + [-4, -12], + [-7, -4], + [-27, -2], + [22, 6], + [9, 7], + [-7, 4], + [9, 5] + ], + [ + [9827, 8206], + [-2, -8], + [-9, 2], + [11, 6] + ], + [ + [9802, 8235], + [12, -10], + [-11, -5], + [-1, 15] + ], + [ + [332, 8268], + [5, -12], + [-32, -29], + [11, 24], + [7, 1], + [-1, 9], + [10, 7] + ], + [ + [367, 8291], + [6, -8], + [9, 8], + [-9, -15], + [8, 1], + [-14, -16], + [-4, 1], + [-20, -13], + [-6, 4], + [19, 9], + [1, 25], + [10, 4] + ], + [ + [391, 8303], + [7, -5], + [-10, -3], + [3, 8] + ], + [ + [451, 8354], + [5, -1], + [6, -16], + [-8, -9], + [-16, 0], + [-4, -9], + [-14, -3], + [-3, 11], + [7, 3], + [10, 16], + [3, -2], + [14, 10] + ], + [ + [1304, 8361], + [8, -30], + [-14, 25], + [6, 5] + ], + [ + [558, 8363], + [-9, -20], + [4, 19], + [5, 1] + ], + [ + [1355, 8404], + [7, -16], + [-1, -16], + [-6, -11], + [-13, 9], + [-5, 8], + [5, 20], + [13, 6] + ], + [ + [1295, 8417], + [2, -9], + [-14, -4], + [5, 11], + [7, 2] + ], + [ + [1319, 8419], + [9, -1], + [0, -12], + [-13, 5], + [4, 8] + ], + [ + [1289, 8428], + [10, -1], + [4, -16], + [13, -7], + [9, -30], + [9, -9], + [-1, -33], + [-16, 17], + [2, 8], + [-21, 10], + [8, 20], + [-11, -1], + [6, 13], + [-3, 17], + [-9, 2], + [0, 10] + ], + [ + [1315, 8433], + [-5, -12], + [-6, 8], + [11, 4] + ], + [ + [1328, 8428], + [4, -13], + [-9, 9], + [0, 12], + [5, -8] + ], + [ + [1308, 8454], + [9, -14], + [-10, -3], + [1, 17] + ], + [ + [1278, 8457], + [7, -4], + [1, -11], + [-6, -6], + [-6, -28], + [-3, 4], + [0, 20], + [-4, 26], + [11, -1] + ], + [ + [1283, 8470], + [24, -10], + [-2, -17], + [-9, 13], + [7, -18], + [-16, -4], + [0, 23], + [-10, 9], + [6, 4] + ], + [ + [745, 8475], + [8, 0], + [-14, -10], + [6, 10] + ], + [ + [1234, 8479], + [-1, -12], + [-6, -2], + [-1, 19], + [8, -5] + ], + [ + [1237, 8491], + [8, 2], + [9, -14], + [7, -29], + [-1, -30], + [-5, 0], + [-13, 33], + [-1, 15], + [-10, 18], + [6, 5] + ], + [ + [749, 8519], + [11, 0], + [7, -8], + [-2, -10], + [8, 0], + [-4, -10], + [-18, 4], + [10, -7], + [-18, -9], + [-14, -22], + [-10, -6], + [6, 10], + [-12, -1], + [-12, 22], + [3, 14], + [7, 7], + [10, 0], + [7, -19], + [-4, 28], + [5, 5], + [16, -5], + [-3, 10], + [7, -3] + ], + [ + [1229, 8536], + [23, -12], + [-1, -13], + [-7, -1], + [-18, 12], + [14, -15], + [13, 1], + [1, -16], + [-7, 0], + [-19, 17], + [7, -17], + [-4, -6], + [-8, 6], + [-1, 10], + [-12, 12], + [1, 20], + [18, 2] + ], + [ + [1252, 8544], + [6, -11], + [14, -6], + [8, -16], + [-2, -5], + [2, -21], + [-19, -19], + [-1, 12], + [4, 10], + [-5, 13], + [-7, 43] + ], + [ + [761, 8550], + [18, -11], + [-6, -8], + [-18, -4], + [-10, 2], + [1, 9], + [10, 1], + [5, 11] + ], + [ + [913, 8659], + [5, -3], + [-25, -29], + [20, 32] + ], + [ + [385, 8661], + [13, -6], + [2, -22], + [-19, -5], + [-10, 2], + [-19, 13], + [-4, 7], + [16, 0], + [9, 9], + [12, 2] + ], + [ + [929, 8665], + [13, -4], + [-15, -9], + [2, 13] + ], + [ + [897, 8667], + [-2, -19], + [-4, 10], + [6, 9] + ], + [ + [231, 8857], + [0, -6], + [17, -7], + [20, 7], + [23, -20], + [21, -2], + [-2, -9], + [-15, 1], + [-9, -13], + [-3, 10], + [-28, 19], + [-17, -8], + [-13, 10], + [6, 18] + ], + [ + [1387, 8402], + [-3, -8], + [4, -28], + [-10, -21], + [-9, -8], + [-7, 2], + [-3, 23], + [6, 6], + [-1, 24], + [-15, 16], + [-8, -7], + [-7, -22], + [-9, 13], + [7, 4], + [5, 24], + [-18, 22], + [-11, 25], + [-19, 8], + [12, 9], + [-11, 10], + [-3, 12], + [14, -6], + [-15, 12], + [-15, 23], + [-16, 11], + [-4, 24], + [-6, 1], + [-1, 17], + [-6, -11], + [7, -17], + [1, -24], + [-13, 11], + [-8, -2], + [2, 13], + [-8, 12], + [-3, -4], + [-17, 8], + [19, -18], + [2, -12], + [-9, -4], + [-20, 5], + [-23, 23], + [-9, 16], + [-34, 19], + [-11, 9], + [12, 10], + [-5, 11], + [-18, -12], + [-9, 0], + [-21, 9], + [3, 11], + [-13, -5], + [-31, 8], + [-30, -6], + [-12, 12], + [-16, 5], + [3, 18], + [-11, -14], + [-21, 5], + [9, 13], + [-18, -1], + [-16, 19], + [-12, 1], + [-2, -7], + [-15, -3], + [-3, 6], + [9, 19], + [-17, -18], + [2, -20], + [8, -8], + [-6, -3], + [-8, -27], + [-18, 1], + [-5, -5], + [-2, 13], + [-12, -25], + [-13, 3], + [-7, -13], + [-19, -17], + [-16, -2], + [-6, 6], + [3, 9], + [19, 10], + [2, 8], + [-11, -6], + [-10, 7], + [4, 16], + [8, 10], + [5, 19], + [-5, 8], + [27, 21], + [6, -6], + [18, 3], + [-14, 10], + [4, 5], + [-19, 4], + [-15, -15], + [-9, -2], + [-20, -27], + [-7, -16], + [-11, -2], + [9, -10], + [-18, -24], + [-11, 0], + [-4, -11], + [-9, -5], + [-3, -20], + [10, 3], + [13, -8], + [2, -6], + [-11, -12], + [-5, 0], + [-14, -31], + [-4, 7], + [-2, -11], + [-12, 1], + [-9, -17], + [-9, 2], + [-2, -13], + [-10, -1], + [-14, -15], + [7, -5], + [-7, -12], + [-5, 4], + [-12, -16], + [-17, -5], + [-2, -11], + [-13, -1], + [-4, -8], + [7, -10], + [-10, -4], + [-1, -7], + [-22, -6], + [-5, -17], + [-6, 16], + [-20, -21], + [-10, 2], + [-12, -10], + [-5, 2], + [6, 12], + [-10, 1], + [-6, -22], + [-9, -11], + [-12, 8], + [-4, -14], + [-7, 2], + [-9, -9], + [0, 18], + [10, 3], + [22, 30], + [12, 12], + [9, 3], + [34, -7], + [-10, 9], + [5, 17], + [16, 15], + [24, 17], + [9, -4], + [-1, 15], + [10, 16], + [18, 15], + [2, 46], + [12, 18], + [5, 16], + [-8, -7], + [-25, -13], + [-11, 12], + [1, 10], + [-9, -10], + [4, -20], + [-11, -2], + [-14, 29], + [-8, -10], + [-12, 17], + [-19, -11], + [-20, -18], + [-11, 4], + [11, 7], + [-1, 13], + [6, 7], + [-12, 2], + [0, 15], + [7, 6], + [-20, 46], + [-1, -17], + [-16, -8], + [-23, -4], + [-9, 6], + [-13, 23], + [-19, 12], + [20, 19], + [18, -3], + [7, -12], + [9, 7], + [-4, 7], + [-29, 2], + [-20, 20], + [-7, -6], + [-9, 14], + [0, 21], + [-6, 7], + [15, 2], + [-4, 13], + [18, 26], + [8, -3], + [-3, 14], + [5, 17], + [11, 0], + [-8, 7], + [7, 5], + [17, 0], + [2, -11], + [17, 1], + [20, 24], + [25, -1], + [18, 17], + [-6, 30], + [-13, 9], + [10, 4], + [9, 13], + [-10, 12], + [-41, -24], + [-17, -5], + [-12, 9], + [-18, 0], + [-19, -8], + [-33, 8], + [-8, 6], + [3, 12], + [-11, 10], + [7, 9], + [13, 2], + [-38, 8], + [-18, 10], + [37, 28], + [24, 9], + [16, 13], + [16, 7], + [29, 2], + [-7, -11], + [7, -19], + [26, 2], + [24, -8], + [11, 18], + [13, -3], + [-13, 10], + [-11, -2], + [-2, 11], + [-15, 10], + [-5, 9], + [9, 3], + [7, -17], + [12, -11], + [10, 4], + [14, -9], + [16, 2], + [-3, 14], + [-23, 0], + [-9, -7], + [-10, 10], + [2, 20], + [-23, -2], + [-30, 5], + [-10, 27], + [-34, 25], + [-20, 9], + [-16, 11], + [9, 17], + [0, 14], + [16, -2], + [37, 4], + [19, 11], + [15, 16], + [2, 19], + [29, 33], + [26, 0], + [45, 27], + [39, 4], + [21, 14], + [12, 13], + [33, -7], + [-12, -12], + [11, -6], + [16, 16], + [13, -7], + [2, -12], + [19, 5], + [38, -1], + [9, -4], + [-12, -15], + [24, 0], + [-6, -6], + [32, 3], + [11, -5], + [30, 5], + [31, -8], + [27, -11], + [40, 0], + [30, -12], + [40, 9], + [52, -27], + [12, 0] + ], + [ + [2912, 6333], + [-2, -4] + ], + [ + [2914, 6329], + [-1, 4] + ], + [ + [6651, 7782], + [-7, -26], + [12, -19], + [-3, -12], + [11, 5], + [3, 8], + [-2, 16], + [3, 11] + ], + [ + [6601, 7610], + [-7, 11], + [-5, -2], + [-4, -22] + ], + [ + [6627, 7805], + [-10, -35], + [2, -18], + [4, -10], + [9, 17], + [-3, 20], + [3, 6], + [-1, 16] + ], + [ + [3301, 5940], + [-4, 4], + [5, 8], + [-1, -12] + ], + [ + [3313, 5694], + [1, -6], + [-5, -8], + [-9, -2], + [1, 7], + [12, 9] + ], + [ + [3303, 5691], + [4, 12], + [2, -5], + [-6, -7] + ], + [ + [3228, 5816], + [-8, -8], + [-9, 6], + [4, 7], + [6, -5], + [4, 10], + [3, -10] + ], + [ + [3018, 5865], + [-3, -7], + [-14, -7], + [0, -13], + [10, -38], + [-1, -16], + [-4, -6], + [-10, -30], + [5, -18], + [6, -7], + [-1, -15], + [6, -5], + [9, 7], + [5, 10], + [-1, 32], + [-11, 30], + [-2, 23], + [3, 10], + [4, 0], + [12, 13], + [18, 8], + [5, 9], + [8, -2], + [-2, 13], + [-11, -5], + [-2, 13], + [2, 16], + [5, 5], + [6, -10], + [2, -22], + [4, -10], + [12, 3], + [15, -10], + [7, -12], + [4, -15], + [-2, -7], + [5, -15], + [8, -1], + [17, 4], + [6, 4], + [21, 2], + [11, -20], + [11, -9], + [11, -5], + [8, 2], + [4, 9], + [5, 0], + [2, 8], + [20, 5], + [-5, 5], + [-9, 1], + [10, 6], + [7, -3], + [11, 6], + [12, 1], + [16, -4], + [8, 4], + [-2, -6], + [-10, -6], + [-16, 0], + [1, -9], + [5, -5], + [1, -12], + [-9, -1], + [5, -4], + [8, 8], + [5, -25], + [2, 17], + [11, -10], + [7, -3], + [-2, 7], + [13, -19], + [4, 1], + [7, -12], + [-9, -24], + [-3, -22], + [-12, 0], + [10, -11], + [3, 6], + [14, 6], + [6, -4], + [3, 6], + [9, -4] + ], + [ + [7888, 5785], + [0, -17], + [-4, 12], + [4, 5] + ], + [ + [7999, 6420], + [-7, 1], + [-4, -12], + [-7, -3], + [1, -12], + [-6, -6], + [-5, 4], + [-9, -2], + [4, -16], + [-8, -8], + [2, -17], + [-7, -4], + [-4, -11], + [-7, -4], + [-3, -15], + [-1, -23], + [-5, -13], + [7, -30], + [7, -15], + [11, -17], + [-1, -15], + [8, -21], + [9, -14], + [4, -12], + [16, -29], + [6, -2], + [16, -47], + [8, -11], + [1, -21], + [5, -18], + [-2, -5], + [6, -25], + [0, -35], + [2, -3], + [0, -23], + [3, -13], + [-6, -10], + [0, -42], + [-3, -5], + [4, -7], + [-4, -10], + [-2, 4], + [0, -16], + [-7, -2], + [-2, -8], + [-4, 0], + [-8, -14], + [-6, -1], + [-2, -13], + [-5, 0], + [-11, -13], + [-13, 0], + [-5, 12], + [1, -23], + [-11, 2], + [11, -9], + [-4, -11], + [-6, 4], + [7, -11], + [-3, -2], + [-12, 24], + [0, -5], + [10, -18], + [2, -11], + [-5, -6], + [-10, 15], + [4, -19], + [-1, -6], + [-17, -13], + [-12, -29], + [-11, -2], + [5, 9], + [-2, 10], + [0, 36], + [2, 17], + [6, 7], + [-10, 15], + [-5, -5], + [-3, 16] + ], + [ + [9706, 4050], + [-7, 13], + [4, 7], + [3, -20] + ], + [ + [9699, 4104], + [2, -14], + [-8, 6], + [0, 12], + [6, -4] + ], + [ + [9675, 4172], + [7, -8], + [-6, -8], + [-6, 7], + [5, 9] + ], + [ + [9671, 4228], + [8, -15], + [-7, 1], + [-1, 14] + ], + [ + [9675, 4243], + [-6, -2], + [-6, 7], + [7, 9], + [5, -14] + ], + [ + [9650, 4255], + [10, -14], + [1, -7], + [-10, -6], + [-4, 27], + [-5, 1], + [1, 12], + [4, -1], + [3, -12] + ], + [ + [9672, 4262], + [-3, 21], + [1, 9], + [3, -20], + [-1, -10] + ], + [ + [9662, 4292], + [-5, 2], + [9, 9], + [-4, -11] + ], + [ + [9671, 4298], + [-2, 1], + [-1, 24], + [2, -2], + [1, -23] + ], + [ + [9633, 4310], + [4, 2], + [0, 11], + [5, -11], + [3, -23], + [-11, -7], + [-7, 15], + [1, 11], + [-3, 15], + [1, 17], + [5, -11], + [2, -19] + ], + [ + [9653, 4368], + [1, -9], + [-5, 0], + [4, 9] + ], + [ + [9654, 4385], + [-4, -3], + [-1, 10], + [5, -7] + ], + [ + [5917, 7177], + [-8, 1] + ], + [ + [233, 4380], + [5, -6], + [-14, 2], + [-4, 7], + [7, 5], + [6, -8] + ], + [ + [213, 4406], + [3, -6], + [-1, -12], + [-9, 0], + [-5, 15], + [12, 3] + ], + [ + [6488, 5914], + [7, -6], + [7, 6], + [10, -9], + [-9, -11], + [-10, -3], + [-6, 2], + [-5, 12], + [6, 9] + ], + [ + [6474, 6141], + [-14, -9], + [-10, -18], + [-2, -12], + [2, -20], + [-10, -7], + [-13, -15], + [-23, -11], + [-11, -11], + [-4, 0], + [-25, -18], + [-3, -12], + [-8, -16], + [-6, -3], + [-14, 3], + [-10, -9], + [-6, -13], + [-15, -8], + [-5, -6], + [-14, 0], + [-16, -6], + [-7, -15], + [-15, -17], + [-7, 3], + [-4, -8], + [-14, -5], + [-10, 9], + [-3, -4], + [-7, 35], + [2, 25], + [-6, 21], + [-2, 16], + [-3, 43], + [-6, 7], + [4, 2], + [-3, 17], + [3, 18], + [-1, 29] + ], + [ + [5913, 3637], + [-1, -16], + [-5, -23], + [-3, -38], + [-5, -21], + [-10, -19], + [-7, -3], + [-13, -27], + [-21, -68], + [-4, -16], + [-15, -32], + [-4, -4], + [-16, -28], + [-9, -21], + [-13, -22], + [-25, -35], + [-27, -26], + [-15, 4], + [-9, -9], + [0, -11], + [-17, 5], + [-4, -12], + [-11, 1], + [-8, 6], + [-16, 4], + [-6, -7], + [-23, 6], + [-10, -4], + [-12, -19], + [-7, 3], + [-6, -5], + [-11, 4], + [-1, -6], + [-11, 0], + [-14, -20], + [-9, 3], + [-9, 9], + [0, 11], + [-6, 4], + [-8, -2], + [0, 17], + [-10, -2], + [0, -13], + [-4, 19], + [5, 10], + [-2, 12], + [-7, 16], + [-4, 20], + [-4, -1], + [1, 18], + [7, -2], + [4, 8], + [1, 20], + [-2, 22], + [-4, 17], + [-9, 20], + [-7, 28], + [-8, 24], + [-6, 42], + [-6, 29], + [-7, 15], + [-3, 15] + ], + [ + [5815, 3905], + [12, 3], + [14, -12], + [15, 3], + [13, -7] + ], + [ + [5844, 4282], + [-15, 1], + [-13, -5], + [-15, -18], + [0, -21], + [-3, -8] + ], + [ + [5798, 4231], + [-3, 3], + [-13, -9], + [-5, -13], + [-12, -14], + [-13, -38], + [-2, -11] + ], + [ + [5750, 4149], + [-9, -7], + [-14, 11], + [-7, -7], + [-7, 11], + [-12, 1] + ], + [ + [5792, 4643], + [5, 5], + [9, 23], + [3, 15], + [-7, 8] + ], + [ + [5849, 4709], + [-4, -14], + [7, -1], + [9, -18], + [5, 4], + [-1, 8] + ], + [ + [5750, 4149], + [10, 22], + [5, 5], + [4, 17], + [11, 9], + [0, 11], + [8, 0], + [8, 9], + [1, -7], + [8, 12], + [-7, 4] + ] + ], + "type": "Topology", + "objects": { + "world": { + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5]], + "type": "Polygon", + "id": "AFG", + "properties": { "name": "Afghanistan" } + }, + { + "arcs": [[[6, 7, 8, 9]], [[10, 11, 12]]], + "type": "MultiPolygon", + "id": "AGO", + "properties": { "name": "Angola" } + }, + { + "arcs": [ + [[13, 14]], + [[15, 16]], + [[17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30]] + ], + "type": "MultiPolygon", + "id": "ALB", + "properties": { "name": "Albania" } + }, + { + "arcs": [[[31]]], + "type": "MultiPolygon", + "id": "ALD", + "properties": { "name": "Aland" } + }, + { "arcs": [[32, 33]], "type": "Polygon", "id": "AND", "properties": { "name": "Andorra" } }, + { + "arcs": [[[34]], [[35, 36, 37, 38, 39], [40]]], + "type": "MultiPolygon", + "id": "ARE", + "properties": { "name": "United Arab Emirates" } + }, + { + "arcs": [[[41, 42]], [[43, 44]], [[45, 46, 47, 48, 49, 50]]], + "type": "MultiPolygon", + "id": "ARG", + "properties": { "name": "Argentina" } + }, + { + "arcs": [[[51]], [[52, 53, 54, 55, 56], [57], [58]]], + "type": "MultiPolygon", + "id": "ARM", + "properties": { "name": "Armenia" } + }, + { + "arcs": [[[121]]], + "type": "MultiPolygon", + "id": "ATF", + "properties": { "name": "Fr. S. Antarctic Lands" } + }, + { + "arcs": [ + [[122]], + [[123]], + [[124]], + [[125]], + [[126]], + [[127]], + [[128]], + [[129]], + [[130]], + [[131]], + [[132]], + [[133]], + [[134]], + [[135]], + [[136]], + [[137]], + [[138]], + [[139]], + [[140]] + ], + "type": "MultiPolygon", + "id": "AUS", + "properties": { "name": "Australia" } + }, + { + "arcs": [[141, 142, 143, 144, 145, 146, 147, 148, 149, 150]], + "type": "Polygon", + "id": "AUT", + "properties": { "name": "Austria" } + }, + { + "arcs": [[[151, 152, -55]], [[-59]], [[-58]], [[153, 154, 155, -53, 156], [-52]]], + "type": "MultiPolygon", + "id": "AZE", + "properties": { "name": "Azerbaijan" } + }, + { + "arcs": [[157, 158, 159, 160]], + "type": "Polygon", + "id": "BDI", + "properties": { "name": "Burundi" } + }, + { + "arcs": [[161, 162, 163, 164, 165, 166, 167]], + "type": "Polygon", + "id": "BEL", + "properties": { "name": "Belgium" } + }, + { + "arcs": [[168, 169, 170, 171, 172]], + "type": "Polygon", + "id": "BEN", + "properties": { "name": "Benin" } + }, + { + "arcs": [[173, -172, 174, 175, 176, 177]], + "type": "Polygon", + "id": "BFA", + "properties": { "name": "Burkina Faso" } + }, + { + "arcs": [[[178]], [[179]], [[180, 181, 182]]], + "type": "MultiPolygon", + "id": "BGD", + "properties": { "name": "Bangladesh" } + }, + { + "arcs": [[183, 184, 185, 186, 187, 188]], + "type": "Polygon", + "id": "BGR", + "properties": { "name": "Bulgaria" } + }, + { "arcs": [[189]], "type": "Polygon", "id": "BHR", "properties": { "name": "Bahrain" } }, + { + "arcs": [ + [[190]], + [[191]], + [[192]], + [[193]], + [[194]], + [[195]], + [[196]], + [[197]], + [[198]], + [[199]], + [[200]] + ], + "type": "MultiPolygon", + "id": "BHS", + "properties": { "name": "Bahamas" } + }, + { + "arcs": [[201, 202, 203, 204, 205]], + "type": "Polygon", + "id": "BIH", + "properties": { "name": "Bosnia and Herz." } + }, + { + "arcs": [[206, 207, 208, 209, 210]], + "type": "Polygon", + "id": "BLR", + "properties": { "name": "Belarus" } + }, + { + "arcs": [[[211, 212, 213]]], + "type": "MultiPolygon", + "id": "BLZ", + "properties": { "name": "Belize" } + }, + { + "arcs": [[[214, 215]], [[216, -51, 217, 218, 219, 220, 221]]], + "type": "MultiPolygon", + "id": "BOL", + "properties": { "name": "Bolivia" } + }, + { + "arcs": [ + [[222]], + [[223]], + [[224]], + [[225]], + [[226]], + [[227]], + [[228]], + [[229]], + [[230]], + [[231]], + [[232]], + [[233]], + [[234]], + [[235]], + [[236]], + [[237]], + [[238, 239, 240, 241, 242, 243, -47, 244, 245, 246, -222, 247, 248, 249, 250]] + ], + "type": "MultiPolygon", + "id": "BRA", + "properties": { "name": "Brazil" } + }, + { "arcs": [[251]], "type": "Polygon", "id": "BRB", "properties": { "name": "Barbados" } }, + { + "arcs": [[[252, 253]], [[254, 255]]], + "type": "MultiPolygon", + "id": "BRN", + "properties": { "name": "Brunei" } + }, + { + "arcs": [[256, 257]], + "type": "Polygon", + "id": "BTN", + "properties": { "name": "Bhutan" } + }, + { + "arcs": [[258, 259, 260]], + "type": "Polygon", + "id": "BWA", + "properties": { "name": "Botswana" } + }, + { + "arcs": [[261, 262, 263, 264, 265, 266]], + "type": "Polygon", + "id": "CAF", + "properties": { "name": "Central African Rep." } + }, + { + "arcs": [ + [[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, 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]] + ], + "type": "MultiPolygon", + "id": "CAN", + "properties": { "name": "Canada" } + }, + { + "arcs": [[385, 386, 387, -148, 388, -146, 389, 390, 391, 392, 393]], + "type": "Polygon", + "id": "CHE", + "properties": { "name": "Switzerland" } + }, + { + "arcs": [ + [[394]], + [[395]], + [[396]], + [[397]], + [[398]], + [[399]], + [[400]], + [[401]], + [[402]], + [[-44, 403, -42, 404]], + [[405]], + [[406]], + [[407]], + [[408]], + [[409]], + [[410]], + [[411]], + [[412]], + [[413]], + [[414]], + [[415]], + [[416]], + [[417]], + [[418]], + [[419]], + [[420]], + [[421]], + [[422]], + [[423]], + [[424]], + [[425]], + [[426]], + [[427]], + [[428]], + [[429]], + [[430]], + [[431]], + [[432]], + [[433]], + [[434]], + [[435]], + [[-50, 436, 437, -218]] + ], + "type": "MultiPolygon", + "id": "CHL", + "properties": { "name": "Chile" } + }, + { + "arcs": [ + [[438]], + [[439]], + [[440]], + [[441]], + [ + [ + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + -258, + 452, + 453, + 454, + 455, + 456, + -1, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464 + ] + ] + ], + "type": "MultiPolygon", + "id": "CHN", + "properties": { "name": "China" } + }, + { + "arcs": [[[465, 466]], [[-177, 467, 468, 469, 470, 471]]], + "type": "MultiPolygon", + "id": "CIV", + "properties": { "name": "C\u00f4te d'Ivoire" } + }, + { + "arcs": [[[472, -266, 473, 474, 475, 476, 477, 478, 479]], [[480, 481]]], + "type": "MultiPolygon", + "id": "CMR", + "properties": { "name": "Cameroon" } + }, + { + "arcs": [[[482, 483, 484, 485]], [[486, 487, 488, 489]], [[490, 491, 492, 493]]], + "type": "MultiPolygon", + "id": "CNM", + "properties": { "name": "Cyprus U.N. Buffer Zone" } + }, + { + "arcs": [ + [[494]], + [ + [ + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + -160, + 504, + 505, + 506, + 507, + -10, + 508, + -11, + 509, + -264 + ] + ] + ], + "type": "MultiPolygon", + "id": "COD", + "properties": { "name": "Dem. Rep. Congo" } + }, + { + "arcs": [[-510, -13, 510, 511, -474, -265]], + "type": "Polygon", + "id": "COG", + "properties": { "name": "Congo" } + }, + { + "arcs": [[[512, -249, 513, 514, 515, 516, 517]]], + "type": "MultiPolygon", + "id": "COL", + "properties": { "name": "Colombia" } + }, + { + "arcs": [[[518]], [[519]]], + "type": "MultiPolygon", + "id": "COM", + "properties": { "name": "Comoros" } + }, + { + "arcs": [[[520]], [[521]], [[522]], [[523]]], + "type": "MultiPolygon", + "id": "CPV", + "properties": { "name": "Cape Verde" } + }, + { + "arcs": [[[524, 525, 526, 527]]], + "type": "MultiPolygon", + "id": "CRI", + "properties": { "name": "Costa Rica" } + }, + { + "arcs": [[[528]], [[529]], [[530]], [[531, 532, 533, 534]]], + "type": "MultiPolygon", + "id": "CUB", + "properties": { "name": "Cuba" } + }, + { + "arcs": [[535]], + "type": "Polygon", + "id": "CUW", + "properties": { "name": "Cura\u00e7ao" } + }, + { + "arcs": [[[536, -488]], [[-486, 537, -494, 538]]], + "type": "MultiPolygon", + "id": "CYN", + "properties": { "name": "N. Cyprus" } + }, + { + "arcs": [ + [[539, 540]], + [[541]], + [[542, 543, -484]], + [[544, 545, 546, 547, -490, 548, -492]] + ], + "type": "MultiPolygon", + "id": "CYP", + "properties": { "name": "Cyprus" } + }, + { + "arcs": [[549, 550, -151, 551]], + "type": "Polygon", + "id": "CZE", + "properties": { "name": "Czech Rep." } + }, + { + "arcs": [ + [[-387, 552]], + [[553, 554]], + [[555]], + [[556, 557, -552, -150, 558, -394, 559, 560, -162, 561, 562, 563]] + ], + "type": "MultiPolygon", + "id": "DEU", + "properties": { "name": "Germany" } + }, + { + "arcs": [[564, 565, 566, 567, 568, 569]], + "type": "Polygon", + "id": "DJI", + "properties": { "name": "Djibouti" } + }, + { "arcs": [[570]], "type": "Polygon", "id": "DMA", "properties": { "name": "Dominica" } }, + { + "arcs": [[[571]], [[572]], [[573]], [[574]], [[575]], [[576]], [[577]], [[-564, 578]]], + "type": "MultiPolygon", + "id": "DNK", + "properties": { "name": "Denmark" } + }, + { + "arcs": [[[579, 580, 581, 582, 583, 584]]], + "type": "MultiPolygon", + "id": "DOM", + "properties": { "name": "Dominican Rep." } + }, + { + "arcs": [[585, 586, 587, 588, 589, 590, 591, 592]], + "type": "Polygon", + "id": "DZA", + "properties": { "name": "Algeria" } + }, + { + "arcs": [[[593]], [[594]], [[595]], [[596]], [[597]], [[598]], [[599, 600, -515]]], + "type": "MultiPolygon", + "id": "ECU", + "properties": { "name": "Ecuador" } + }, + { + "arcs": [[[601, 602, 603, 604, 605, 606]]], + "type": "MultiPolygon", + "id": "EGY", + "properties": { "name": "Egypt" } + }, + { + "arcs": [[[607]], [[-569, 608, 609, 610]]], + "type": "MultiPolygon", + "id": "ERI", + "properties": { "name": "Eritrea" } + }, + { + "arcs": [[-485, -544, 611, -541, 612, -545, -491, -538], [-542]], + "type": "Polygon", + "id": "ESB", + "properties": { "name": "Dhekelia" } + }, + { + "arcs": [ + [[613]], + [[614]], + [[615]], + [[616]], + [[617]], + [[618]], + [[619, 620]], + [[621, 622]], + [[623]], + [[624]], + [[625]], + [[626]], + [[627, -33, 628, 629, 630, 631, 632, 633]] + ], + "type": "MultiPolygon", + "id": "ESP", + "properties": { "name": "Spain" } + }, + { + "arcs": [[[634]], [[635]], [[636, 637, 638, 639, 640, 641, 642, 643, 644]]], + "type": "MultiPolygon", + "id": "EST", + "properties": { "name": "Estonia" } + }, + { + "arcs": [[-568, 645, -566, 646, 647, 648, 649, 650, -609]], + "type": "Polygon", + "id": "ETH", + "properties": { "name": "Ethiopia" } + }, + { + "arcs": [[[651]], [[652, 653, 654, 655]]], + "type": "MultiPolygon", + "id": "FIN", + "properties": { "name": "Finland" } + }, + { + "arcs": [[[656]], [[657]], [[658]]], + "type": "MultiPolygon", + "id": "FJI", + "properties": { "name": "Fiji" } + }, + { + "arcs": [[[659]], [[660]]], + "type": "MultiPolygon", + "id": "FLK", + "properties": { "name": "Falkland Is." } + }, + { + "arcs": [ + [[661]], + [[662]], + [[-240, 663, 664]], + [[665]], + [[666]], + [[667]], + [[668]], + [[669, -560, -393, 670, -391, 671, 672, 673, 674, -629, -34, -628, 675, -164], [-627]] + ], + "type": "MultiPolygon", + "id": "FRA", + "properties": { "name": "France" } + }, + { + "arcs": [[[676]], [[677]]], + "type": "MultiPolygon", + "id": "FRO", + "properties": { "name": "Faeroe Is." } + }, + { + "arcs": [[[678]]], + "type": "MultiPolygon", + "id": "FSM", + "properties": { "name": "Micronesia" } + }, + { + "arcs": [[[-512, 679, 680, -475]]], + "type": "MultiPolygon", + "id": "GAB", + "properties": { "name": "Gabon" } + }, + { + "arcs": [ + [[681]], + [[682]], + [[683, 684]], + [[685]], + [[686]], + [[687]], + [[688]], + [[689]], + [[690]], + [[691]], + [[692]], + [[693]], + [[694]], + [[695]] + ], + "type": "MultiPolygon", + "id": "GBR", + "properties": { "name": "United Kingdom" } + }, + { + "arcs": [[-157, -57, 696, 697, 698]], + "type": "Polygon", + "id": "GEO", + "properties": { "name": "Georgia" } + }, + { + "arcs": [[699, 700, -466, 701, -468, -176]], + "type": "Polygon", + "id": "GHA", + "properties": { "name": "Ghana" } + }, + { + "arcs": [[-631, 702]], + "type": "Polygon", + "id": "GIB", + "properties": { "name": "Gibraltar" } + }, + { + "arcs": [[703, -471, 704, 705, 706, 707, 708]], + "type": "Polygon", + "id": "GIN", + "properties": { "name": "Guinea" } + }, + { + "arcs": [[709, 710]], + "type": "Polygon", + "id": "GMB", + "properties": { "name": "Gambia" } + }, + { + "arcs": [[[711]], [[712, 713, -708]]], + "type": "MultiPolygon", + "id": "GNB", + "properties": { "name": "Guinea-Bissau" } + }, + { + "arcs": [[[-681, 714, -476]], [[715]]], + "type": "MultiPolygon", + "id": "GNQ", + "properties": { "name": "Eq. Guinea" } + }, + { + "arcs": [ + [[716]], + [[717]], + [[718]], + [[719]], + [[720]], + [[721]], + [[722]], + [[723]], + [[724]], + [[725]], + [[726]], + [[727]], + [[728]], + [[729]], + [[730]], + [[731]], + [[732, -186, 733, 734, -27, 735, -25, 736]] + ], + "type": "MultiPolygon", + "id": "GRC", + "properties": { "name": "Greece" } + }, + { + "arcs": [[[737]]], + "type": "MultiPolygon", + "id": "GRD", + "properties": { "name": "Grenada" } + }, + { + "arcs": [ + [[738]], + [[739]], + [[740]], + [[741]], + [[742]], + [[743]], + [[744]], + [[745]], + [[746]], + [[747]], + [[748]], + [[749]], + [[750]], + [[751]], + [[752]], + [[753]], + [[754]], + [[755]], + [[756]], + [[757]], + [[758]], + [[759]], + [[760]], + [[761]], + [[762]], + [[763]] + ], + "type": "MultiPolygon", + "id": "GRL", + "properties": { "name": "Greenland" } + }, + { + "arcs": [[-213, 764, 765, 766, 767, 768]], + "type": "Polygon", + "id": "GTM", + "properties": { "name": "Guatemala" } + }, + { "arcs": [[769]], "type": "Polygon", "id": "GUM", "properties": { "name": "Guam" } }, + { + "arcs": [[[770, -251, 771, 772]]], + "type": "MultiPolygon", + "id": "GUY", + "properties": { "name": "Guyana" } + }, + { + "arcs": [[[773, -447]]], + "type": "MultiPolygon", + "id": "HKG", + "properties": { "name": "Hong Kong" } + }, + { + "arcs": [[774]], + "type": "Polygon", + "id": "HMD", + "properties": { "name": "Heard I. and McDonald Is." } + }, + { + "arcs": [[[775, 776, 777, -766, 778]]], + "type": "MultiPolygon", + "id": "HND", + "properties": { "name": "Honduras" } + }, + { + "arcs": [ + [[-204, 779, 780]], + [[781]], + [[782]], + [[783]], + [[784]], + [[785, 786, -206, 787, 788]] + ], + "type": "MultiPolygon", + "id": "HRV", + "properties": { "name": "Croatia" } + }, + { + "arcs": [[[-582, 789]], [[790]], [[-584, 791, -580, 792]]], + "type": "MultiPolygon", + "id": "HTI", + "properties": { "name": "Haiti" } + }, + { + "arcs": [[793, 794, 795, -786, 796, -143, 797]], + "type": "Polygon", + "id": "HUN", + "properties": { "name": "Hungary" } + }, + { + "arcs": [ + [[798]], + [[799]], + [[800]], + [[801, 802, 803, 804]], + [[805]], + [[806]], + [[807]], + [[808]], + [[809]], + [[810]], + [[811]], + [[812]], + [[813]], + [[814]], + [[815]], + [[816]], + [[817]], + [[818]], + [[819]], + [[820]], + [[821]], + [[822]], + [[823]], + [[824]], + [[825]], + [[826]], + [[827]], + [[828]], + [[829]], + [[830]], + [[831]], + [[832]], + [[833]], + [[834]], + [[835]], + [[836]], + [[837]], + [[838]], + [[839]], + [[840]], + [[841]], + [[842]], + [[843]], + [[844]], + [[845]], + [[846]], + [[847]], + [[848]], + [[849]], + [[850]], + [[851]], + [[852]], + [[853]], + [[854]], + [[855]], + [[856]], + [[857, 858]], + [[859]], + [[860]], + [[861]], + [[862]], + [[863]], + [[864]], + [[865]], + [[866]], + [[867]], + [[868]], + [[869]], + [[870]], + [[871]], + [[872]], + [[873]], + [[874]], + [[875]], + [[876]], + [[877]], + [[878]], + [[879]], + [[880]], + [[881, 882]], + [[883]], + [[884, 885]], + [[886]], + [[887]] + ], + "type": "MultiPolygon", + "id": "IDN", + "properties": { "name": "Indonesia" } + }, + { + "arcs": [[888]], + "type": "Polygon", + "id": "IMN", + "properties": { "name": "Isle of Man" } + }, + { + "arcs": [ + [[889]], + [[890]], + [[891]], + [[892]], + [[893, -453, -257, -452, 894, -183, 895, 896, 897, -455]] + ], + "type": "MultiPolygon", + "id": "IND", + "properties": { "name": "India" } + }, + { + "arcs": [[[-684, 898]]], + "type": "MultiPolygon", + "id": "IRL", + "properties": { "name": "Ireland" } + }, + { + "arcs": [[[899]], [[-54, -156, 900, 901, -3, 902, 903, 904, 905, -152]]], + "type": "MultiPolygon", + "id": "IRN", + "properties": { "name": "Iran" } + }, + { + "arcs": [[-905, 906, 907, 908, 909, 910, 911, 912, 913]], + "type": "Polygon", + "id": "IRQ", + "properties": { "name": "Iraq" } + }, + { + "arcs": [[[914]]], + "type": "MultiPolygon", + "id": "ISL", + "properties": { "name": "Iceland" } + }, + { + "arcs": [[915, 916, 917, 918, 919, 920, 921, -603, 922, 923, 924, 925]], + "type": "Polygon", + "id": "ISR", + "properties": { "name": "Israel" } + }, + { + "arcs": [[[926]], [[927]], [[928, 929, -672, -390, -145], [930], [931]]], + "type": "MultiPolygon", + "id": "ITA", + "properties": { "name": "Italy" } + }, + { "arcs": [[932]], "type": "Polygon", "id": "JAM", "properties": { "name": "Jamaica" } }, + { + "arcs": [[933, 934, -921, 935, -919, 936, 937, -916, 938, -910]], + "type": "Polygon", + "id": "JOR", + "properties": { "name": "Jordan" } + }, + { + "arcs": [ + [[939]], + [[940]], + [[941]], + [[942]], + [[943]], + [[944]], + [[945]], + [[946]], + [[947]], + [[948]], + [[949]], + [[950]], + [[951]] + ], + "type": "MultiPolygon", + "id": "JPN", + "properties": { "name": "Japan" } + }, + { "arcs": [[952]], "type": "Polygon", "id": "KAB", "properties": { "name": "Baikonur" } }, + { + "arcs": [[-898, 953, -456]], + "type": "Polygon", + "id": "KAS", + "properties": { "name": "Siachen Glacier" } + }, + { + "arcs": [[[954, 955]], [[-460, 956, 957, 958, 959, 960, 961, 962], [-953]]], + "type": "MultiPolygon", + "id": "KAZ", + "properties": { "name": "Kazakhstan" } + }, + { + "arcs": [[[-649, 963, 964, 965, 966, 967, 968]]], + "type": "MultiPolygon", + "id": "KEN", + "properties": { "name": "Kenya" } + }, + { + "arcs": [[-459, 969, 970, -957], [971], [972], [973]], + "type": "Polygon", + "id": "KGZ", + "properties": { "name": "Kyrgyzstan" } + }, + { + "arcs": [[[974, 975, 976, 977]]], + "type": "MultiPolygon", + "id": "KHM", + "properties": { "name": "Cambodia" } + }, + { + "arcs": [[[978]]], + "type": "MultiPolygon", + "id": "KIR", + "properties": { "name": "Kiribati" } + }, + { + "arcs": [[[979]], [[980]], [[981]], [[982, 983]]], + "type": "MultiPolygon", + "id": "KOR", + "properties": { "name": "Korea" } + }, + { + "arcs": [[984, -18, 985, 986]], + "type": "Polygon", + "id": "XKX", + "properties": { "name": "Kosovo" } + }, + { + "arcs": [[[987]], [[988, -908, 989]]], + "type": "MultiPolygon", + "id": "KWT", + "properties": { "name": "Kuwait" } + }, + { + "arcs": [[990, -977, 991, 992, -450]], + "type": "Polygon", + "id": "LAO", + "properties": { "name": "Lao PDR" } + }, + { + "arcs": [[-925, 993, 994]], + "type": "Polygon", + "id": "LBN", + "properties": { "name": "Lebanon" } + }, + { + "arcs": [[-470, 995, 996, -705]], + "type": "Polygon", + "id": "LBR", + "properties": { "name": "Liberia" } + }, + { + "arcs": [[-606, 997, 998, 999, -587, 1000, 1001]], + "type": "Polygon", + "id": "LBY", + "properties": { "name": "Libya" } + }, + { + "arcs": [[1002]], + "type": "Polygon", + "id": "LCA", + "properties": { "name": "Saint Lucia" } + }, + { + "arcs": [[-389, -147]], + "type": "Polygon", + "id": "LIE", + "properties": { "name": "Liechtenstein" } + }, + { + "arcs": [[[1003]]], + "type": "MultiPolygon", + "id": "LKA", + "properties": { "name": "Sri Lanka" } + }, + { "arcs": [[1004]], "type": "Polygon", "id": "LSO", "properties": { "name": "Lesotho" } }, + { + "arcs": [[[1005, 1006]], [[-210, 1007, 1008, 1009, 1010]]], + "type": "MultiPolygon", + "id": "LTU", + "properties": { "name": "Lithuania" } + }, + { + "arcs": [[-561, -670, -163]], + "type": "Polygon", + "id": "LUX", + "properties": { "name": "Luxembourg" } + }, + { + "arcs": [[1011, -211, -1011, 1012, -644]], + "type": "Polygon", + "id": "LVA", + "properties": { "name": "Latvia" } + }, + { + "arcs": [[1013, 1014]], + "type": "Polygon", + "id": "MAF", + "properties": { "name": "St-Martin" } + }, + { + "arcs": [[-622, 1015, -620, 1016, -592, 1017, 1018]], + "type": "Polygon", + "id": "MAR", + "properties": { "name": "Morocco" } + }, + { + "arcs": [[1019, -674]], + "type": "Polygon", + "id": "MCO", + "properties": { "name": "Monaco" } + }, + { + "arcs": [[1020, 1021]], + "type": "Polygon", + "id": "MDA", + "properties": { "name": "Moldova" } + }, + { + "arcs": [[[1022]], [[1023]]], + "type": "MultiPolygon", + "id": "MDG", + "properties": { "name": "Madagascar" } + }, + { + "arcs": [ + [[1024]], + [[1025]], + [[1026]], + [[1027]], + [[1028]], + [[1029, 1030, 1031, 1032, 1033, -214, -769, 1034, 1035], [1036]] + ], + "type": "MultiPolygon", + "id": "MEX", + "properties": { "name": "Mexico" } + }, + { + "arcs": [[[-23, 1037]], [[-187, -733, 1038, -15, 1039, -21, 1040, -19, -985, 1041]]], + "type": "MultiPolygon", + "id": "MKD", + "properties": { "name": "Macedonia" } + }, + { + "arcs": [[1042, -178, -472, -704, 1043, 1044, -589]], + "type": "Polygon", + "id": "MLI", + "properties": { "name": "Mali" } + }, + { + "arcs": [ + [[1045]], + [[1046]], + [[1047]], + [[1048]], + [[1049]], + [[1050]], + [[-993, 1051, 1052, -181, -895, -451]] + ], + "type": "MultiPolygon", + "id": "MMR", + "properties": { "name": "Myanmar" } + }, + { + "arcs": [[1053, -986, -31, 1054, -16, 1055, -29, 1056, -780, -203]], + "type": "Polygon", + "id": "MNE", + "properties": { "name": "Montenegro" } + }, + { + "arcs": [[-464, 1057, -462, 1058]], + "type": "Polygon", + "id": "MNG", + "properties": { "name": "Mongolia" } + }, + { + "arcs": [[[1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067]]], + "type": "MultiPolygon", + "id": "MOZ", + "properties": { "name": "Mozambique" } + }, + { + "arcs": [[[1068, 1069, 1070, -590, -1045]]], + "type": "MultiPolygon", + "id": "MRT", + "properties": { "name": "Mauritania" } + }, + { + "arcs": [[[1071]]], + "type": "MultiPolygon", + "id": "MUS", + "properties": { "name": "Mauritius" } + }, + { + "arcs": [ + [[1072, 1073]], + [[1074, 1075]], + [[1076, 1077]], + [[1078, 1079]], + [[1080, -1065, 1081, 1082]] + ], + "type": "MultiPolygon", + "id": "MWI", + "properties": { "name": "Malawi" } + }, + { + "arcs": [ + [[1083]], + [[-882, 1084]], + [[1085]], + [[1086]], + [[1087, 1088]], + [[-886, 1089, -256, 1090, -253, 1091]], + [[1092]] + ], + "type": "MultiPolygon", + "id": "MYS", + "properties": { "name": "Malaysia" } + }, + { + "arcs": [[1093, -261, 1094, 1095, -8]], + "type": "Polygon", + "id": "NAM", + "properties": { "name": "Namibia" } + }, + { + "arcs": [[[1096]], [[1097]], [[1098]]], + "type": "MultiPolygon", + "id": "NCL", + "properties": { "name": "New Caledonia" } + }, + { + "arcs": [[1099, 1100, -173, -174, -1043, -588, -1000]], + "type": "Polygon", + "id": "NER", + "properties": { "name": "Niger" } + }, + { + "arcs": [[[1101, -478, 1102, -169, -1101]]], + "type": "MultiPolygon", + "id": "NGA", + "properties": { "name": "Nigeria" } + }, + { + "arcs": [[[1103, -528, 1104, -776]]], + "type": "MultiPolygon", + "id": "NIC", + "properties": { "name": "Nicaragua" } + }, + { + "arcs": [[[-166, 1105]], [[1106]], [[-562, -168, 1107], [1108]]], + "type": "MultiPolygon", + "id": "NLD", + "properties": { "name": "Netherlands" } + }, + { + "arcs": [ + [[1109]], + [[1110]], + [[1111]], + [[1112]], + [[1113]], + [[1114]], + [[1115]], + [[1116]], + [[1117]], + [[1118]], + [[1119]], + [[1120]], + [[1121]], + [[1122]], + [[1123, -656, 1124, 1125]], + [[1126]], + [[1127]], + [[1128]], + [[1129]], + [[1130]], + [[1131]], + [[1132]] + ], + "type": "MultiPolygon", + "id": "NOR", + "properties": { "name": "Norway" } + }, + { + "arcs": [[-894, -454]], + "type": "Polygon", + "id": "NPL", + "properties": { "name": "Nepal" } + }, + { + "arcs": [[[1133]], [[1134]], [[1135]], [[1136]], [[1137]], [[1138]]], + "type": "MultiPolygon", + "id": "NZL", + "properties": { "name": "New Zealand" } + }, + { + "arcs": [[[1139]], [[1140, 1141, -37, 1142]], [[-41], [-35]], [[-40, 1143]]], + "type": "MultiPolygon", + "id": "OMN", + "properties": { "name": "Oman" } + }, + { + "arcs": [[[-954, -897, 1144, -903, -2, -457]]], + "type": "MultiPolygon", + "id": "PAK", + "properties": { "name": "Pakistan" } + }, + { + "arcs": [[[1145]], [[-517, 1146, -526, 1147]]], + "type": "MultiPolygon", + "id": "PAN", + "properties": { "name": "Panama" } + }, + { + "arcs": [[[-248, -221, 1148, -215, 1149, -219, -438, 1150, -600, -514]]], + "type": "MultiPolygon", + "id": "PER", + "properties": { "name": "Peru" } + }, + { + "arcs": [ + [[1151]], + [[1152]], + [[1153]], + [[1154]], + [[1155]], + [[1156]], + [[1157]], + [[1158]], + [[1159]], + [[1160]], + [[1161]], + [[1162]], + [[1163]], + [[1164]], + [[1165]], + [[1166]], + [[1167]], + [[1168]], + [[1169]], + [[1170]], + [[1171]], + [[1172]], + [[1173]], + [[1174]], + [[1175]], + [[1176]], + [[1177]], + [[1178]], + [[1179]], + [[1180]], + [[1181]] + ], + "type": "MultiPolygon", + "id": "PHL", + "properties": { "name": "Philippines" } + }, + { + "arcs": [[[1182]]], + "type": "MultiPolygon", + "id": "PLW", + "properties": { "name": "Palau" } + }, + { + "arcs": [ + [[1183]], + [[1184]], + [[1185]], + [[1186]], + [[1187]], + [[1188]], + [[1189]], + [[1190]], + [[1191]], + [[1192]], + [[1193]], + [[1194]], + [[-858, 1195]], + [[1196]], + [[1197]], + [[1198]], + [[1199]] + ], + "type": "MultiPolygon", + "id": "PNG", + "properties": { "name": "Papua New Guinea" } + }, + { + "arcs": [[1200, 1201, 1202, -1008, -209, 1203, 1204, -550, -558, 1205, -554, 1206]], + "type": "Polygon", + "id": "POL", + "properties": { "name": "Poland" } + }, + { + "arcs": [[[1207]]], + "type": "MultiPolygon", + "id": "PRI", + "properties": { "name": "Puerto Rico" } + }, + { + "arcs": [[[1208, 1209, -983, 1210, -445]]], + "type": "MultiPolygon", + "id": "PRK", + "properties": { "name": "Dem. Rep. Korea" } + }, + { + "arcs": [[[1211]], [[1212]], [[1213]], [[1214]], [[1215, -633]]], + "type": "MultiPolygon", + "id": "PRT", + "properties": { "name": "Portugal" } + }, + { + "arcs": [[-247, 1216, -245, -46, -217]], + "type": "Polygon", + "id": "PRY", + "properties": { "name": "Paraguay" } + }, + { + "arcs": [[[-602, 1217, -923]], [[-938, 1218, -917]]], + "type": "MultiPolygon", + "id": "PSX", + "properties": { "name": "Palestine" } + }, + { + "arcs": [[[1219]]], + "type": "MultiPolygon", + "id": "PYF", + "properties": { "name": "Fr. Polynesia" } + }, + { + "arcs": [[1220, 1221]], + "type": "Polygon", + "id": "QAT", + "properties": { "name": "Qatar" } + }, + { + "arcs": [[1222, 1223, -189, 1224, -795, 1225, -1021]], + "type": "Polygon", + "id": "ROU", + "properties": { "name": "Romania" } + }, + { + "arcs": [ + [[1226]], + [[1227]], + [[1228]], + [[1229]], + [[1230]], + [[1231]], + [[1232]], + [[1233]], + [[1234]], + [[1235]], + [[1236]], + [[-1203, 1237, -1201, 1238, -1006, 1239, -1009]], + [[1240]], + [[1241]], + [[1242, -639]], + [[1243]], + [[1244]], + [[1245]], + [[1246]], + [[1247]], + [[1248]], + [[1249]], + [[1250]], + [[1251]], + [[1252]], + [[1253]], + [[1254]], + [[1255]], + [[1256]], + [[1257]], + [[1258]], + [[1259]], + [[1260]], + [[1261]], + [[1262]], + [[1263]], + [[1264]], + [[1265]], + [[1266]], + [[1267]], + [[1268]], + [[1269]], + [[1270]], + [ + [ + -1209, + -444, + 1271, + -465, + -1059, + -461, + -963, + 1272, + -154, + -699, + 1273, + 1274, + -207, + -1012, + -643, + 1275, + -641, + 1276, + -637, + 1277, + -653, + -1124, + 1278 + ] + ], + [[1279]], + [[1280]], + [[1281]], + [[1282]], + [[1283]], + [[1284]], + [[1285]], + [[1286]], + [[1287]], + [[1288]], + [[1289]], + [[1290]], + [[1291]], + [[1292]], + [[1293]], + [[1294]], + [[1295]], + [[1296]], + [[1297]], + [[1298]] + ], + "type": "MultiPolygon", + "id": "RUS", + "properties": { "name": "Russia" } + }, + { + "arcs": [[1299, -161, -504, 1300, -502, 1301]], + "type": "Polygon", + "id": "RWA", + "properties": { "name": "Rwanda" } + }, + { + "arcs": [[-591, -1071, 1302, -1018]], + "type": "Polygon", + "id": "ESH", + "properties": { "name": "W. Sahara" } + }, + { + "arcs": [[[1303]], [[-989, 1304, -1221, 1305, -38, -1142, 1306, 1307, -934, -909]]], + "type": "MultiPolygon", + "id": "SAU", + "properties": { "name": "Saudi Arabia" } + }, + { + "arcs": [[[1308, -610, -651, 1309, -262, 1310, -998, -605]]], + "type": "MultiPolygon", + "id": "SDN", + "properties": { "name": "Sudan" } + }, + { + "arcs": [[-650, -969, 1311, -496, -263, -1310]], + "type": "Polygon", + "id": "SSD", + "properties": { "name": "S. Sudan" } + }, + { + "arcs": [[-1044, -709, -714, 1312, -711, 1313, -1069]], + "type": "Polygon", + "id": "SEN", + "properties": { "name": "Senegal" } + }, + { "arcs": [[1314]], "type": "Polygon", "id": "SGP", "properties": { "name": "Singapore" } }, + { + "arcs": [[[1315]]], + "type": "MultiPolygon", + "id": "SGS", + "properties": { "name": "S. Geo. and S. Sandw. Is." } + }, + { + "arcs": [ + [[1316]], + [[1317]], + [[1318]], + [[1319]], + [[1320]], + [[1321]], + [[1322]], + [[1323]], + [[1324]], + [[1325]], + [[1326]], + [[1327]], + [[1328]] + ], + "type": "MultiPolygon", + "id": "SLB", + "properties": { "name": "Solomon Is." } + }, + { + "arcs": [[[1329]], [[-997, 1330, -706]]], + "type": "MultiPolygon", + "id": "SLE", + "properties": { "name": "Sierra Leone" } + }, + { + "arcs": [[[-778, 1331, -767]]], + "type": "MultiPolygon", + "id": "SLV", + "properties": { "name": "El Salvador" } + }, + { + "arcs": [[-931]], + "type": "Polygon", + "id": "SMR", + "properties": { "name": "San Marino" } + }, + { + "arcs": [[1332, -647, -565, 1333]], + "type": "Polygon", + "id": "SOL", + "properties": { "name": "Somaliland" } + }, + { + "arcs": [[-964, -648, -1333, 1334]], + "type": "Polygon", + "id": "SOM", + "properties": { "name": "Somalia" } + }, + { + "arcs": [[-1225, -188, -1042, -987, -1054, -202, -787, -796]], + "type": "Polygon", + "id": "SRB", + "properties": { "name": "Serbia" } + }, + { + "arcs": [[[1335]]], + "type": "MultiPolygon", + "id": "STP", + "properties": { "name": "S\u00e3o Tom\u00e9 and Principe" } + }, + { + "arcs": [[-664, -239, -771, 1336]], + "type": "Polygon", + "id": "SUR", + "properties": { "name": "Suriname" } + }, + { + "arcs": [[1337, -798, -142, -551, -1205]], + "type": "Polygon", + "id": "SVK", + "properties": { "name": "Slovakia" } + }, + { + "arcs": [[-789, 1338, -929, -144, -797]], + "type": "Polygon", + "id": "SVN", + "properties": { "name": "Slovenia" } + }, + { + "arcs": [[[1339]], [[1340]], [[1341]], [[1342, -1125, -655]]], + "type": "MultiPolygon", + "id": "SWE", + "properties": { "name": "Sweden" } + }, + { + "arcs": [[-1061, 1343]], + "type": "Polygon", + "id": "SWZ", + "properties": { "name": "Swaziland" } + }, + { + "arcs": [[1344, -1014]], + "type": "Polygon", + "id": "SXM", + "properties": { "name": "Sint Maarten" } + }, + { + "arcs": [[-913, 911, -911, -939, -926, -995, 1345, 1346]], + "type": "Polygon", + "id": "SYR", + "properties": { "name": "Syria" } + }, + { + "arcs": [[-1311, -267, -473, 1347, -481, 1348, -479, -1102, -1100, -999]], + "type": "Polygon", + "id": "TCD", + "properties": { "name": "Chad" } + }, + { + "arcs": [[-171, 1349, -700, -175]], + "type": "Polygon", + "id": "TGO", + "properties": { "name": "Togo" } + }, + { + "arcs": [[[1350]], [[1351]], [[-992, -976, 1352, -1089, 1353, -1052]]], + "type": "MultiPolygon", + "id": "THA", + "properties": { "name": "Thailand" } + }, + { + "arcs": [[[-974]], [[1354]], [[-970, -458, -6, 1355]]], + "type": "MultiPolygon", + "id": "TJK", + "properties": { "name": "Tajikistan" } + }, + { + "arcs": [[[-4, -902, 1356, -961, 1357, 1358, 1359]]], + "type": "MultiPolygon", + "id": "TKM", + "properties": { "name": "Turkmenistan" } + }, + { + "arcs": [[[1360, -803]], [[-805, 1361]]], + "type": "MultiPolygon", + "id": "TLS", + "properties": { "name": "Timor-Leste" } + }, + { + "arcs": [[[1362]]], + "type": "MultiPolygon", + "id": "TON", + "properties": { "name": "Tonga" } + }, + { + "arcs": [[[1363]]], + "type": "MultiPolygon", + "id": "TTO", + "properties": { "name": "Trinidad and Tobago" } + }, + { + "arcs": [[[1364]], [[-1001, -586, 1365]]], + "type": "MultiPolygon", + "id": "TUN", + "properties": { "name": "Tunisia" } + }, + { + "arcs": [[[1366, -734, -185]], [[-697, -56, -153, -906, -914, -1347, 1367]]], + "type": "MultiPolygon", + "id": "TUR", + "properties": { "name": "Turkey" } + }, + { + "arcs": [[[1368]]], + "type": "MultiPolygon", + "id": "TWN", + "properties": { "name": "Taiwan" } + }, + { + "arcs": [ + [[1369]], + [[1370]], + [[1371]], + [[1372]], + [ + [ + 1373, + 1374, + 1375, + -966, + 1376, + -1067, + 1377, + -1074, + 1378, + -1076, + 1379, + -1078, + 1380, + -1080, + 1381, + -1083, + 1382, + 1383, + -158, + -1300, + 1384 + ] + ] + ], + "type": "MultiPolygon", + "id": "TZA", + "properties": { "name": "Tanzania" } + }, + { + "arcs": [ + [[-1375, 1385]], + [[1386, -1385, -1302, -501, 1387, -499, 1388, -497, -1312, -968]] + ], + "type": "MultiPolygon", + "id": "UGA", + "properties": { "name": "Uganda" } + }, + { + "arcs": [[[1389, -1223, -1022, -1226, -794, -1338, -1204, -208, -1275], [1390], [1391]]], + "type": "MultiPolygon", + "id": "UKR", + "properties": { "name": "Ukraine" } + }, + { + "arcs": [[1392, -242, 1393, -48, -244]], + "type": "Polygon", + "id": "URY", + "properties": { "name": "Uruguay" } + }, + { + "arcs": [ + [[1394]], + [[1395]], + [[1396]], + [[1397]], + [[1398]], + [[1399]], + [[1400]], + [[1401]], + [[1402]], + [[1403]], + [[1404]], + [[1405]], + [[1406]], + [[1407]], + [[1408]], + [[1409]], + [[1410, -344]], + [ + [ + 1411, + -340, + 1412, + -338, + 1413, + -336, + 1414, + -334, + -278, + 1415, + -276, + 1416, + -1033, + 1417, + -1031, + 1418, + -1036, + 1419, + -342 + ] + ], + [[1420]], + [[1421]], + [[1422]], + [[1423]], + [[1424]], + [[1425]], + [[1426]], + [[1427]], + [[1428]], + [[1429]], + [[1430]], + [[1431]], + [[1432]], + [[1433]], + [[1434]], + [[1435]], + [[1436]], + [[1437]], + [[1438]], + [[1439]], + [[1440]], + [[1441]], + [[1442]], + [[1443]], + [[1444]], + [[1445]], + [[1446]], + [[1447]], + [[1448]], + [[1449]], + [[1450]], + [[1451]], + [[1452]], + [[1453]], + [[-347, 345, 1454]] + ], + "type": "MultiPolygon", + "id": "USA", + "properties": { "name": "United States" } + }, + { + "arcs": [[[-534, 1455]], [[1456, -532]]], + "type": "MultiPolygon", + "id": "USG", + "properties": { "name": "USNB Guantanamo Bay" } + }, + { + "arcs": [ + [[-973]], + [[-972]], + [[-955, 1457, -958, -971, -1356, -5, -1360, 1458, -1358, -960, 1459], [-1355]] + ], + "type": "MultiPolygon", + "id": "UZB", + "properties": { "name": "Uzbekistan" } + }, + { "arcs": [[-932]], "type": "Polygon", "id": "VAT", "properties": { "name": "Vatican" } }, + { + "arcs": [[[1460]]], + "type": "MultiPolygon", + "id": "VCT", + "properties": { "name": "St. Vin. and Gren." } + }, + { + "arcs": [[[1461]], [[1462]], [[1463]], [[-772, -250, -513, 1464]]], + "type": "MultiPolygon", + "id": "VEN", + "properties": { "name": "Venezuela" } + }, + { + "arcs": [[[1465]], [[1466, -978, -991, -449]]], + "type": "MultiPolygon", + "id": "VNM", + "properties": { "name": "Vietnam" } + }, + { + "arcs": [ + [[1467]], + [[1468]], + [[1469]], + [[1470]], + [[1471]], + [[1472]], + [[1473]], + [[1474]], + [[1475]], + [[1476]], + [[1477]], + [[1478]] + ], + "type": "MultiPolygon", + "id": "VUT", + "properties": { "name": "Vanuatu" } + }, + { + "arcs": [[1479, -547]], + "type": "Polygon", + "id": "WSB", + "properties": { "name": "Akrotiri" } + }, + { + "arcs": [[[1480]], [[1481]]], + "type": "MultiPolygon", + "id": "WSM", + "properties": { "name": "Samoa" } + }, + { + "arcs": [[[1482]], [[1483, -1307, -1141]]], + "type": "MultiPolygon", + "id": "YEM", + "properties": { "name": "Yemen" } + }, + { + "arcs": [[[-1062, -1344, -1060, 1484, -1095, -260, 1485], [-1005]]], + "type": "MultiPolygon", + "id": "ZAF", + "properties": { "name": "South Africa" } + }, + { + "arcs": [[-1383, -1082, -1064, 1486, 1487, 1488, -1094, -7, -508, 1489, -506, 1490]], + "type": "Polygon", + "id": "ZMB", + "properties": { "name": "Zambia" } + }, + { + "arcs": [[-1063, -1486, -259, -1489, 1491, -1487]], + "type": "Polygon", + "id": "ZWE", + "properties": { "name": "Zimbabwe" } + } + ], + "type": "GeometryCollection" + } + }, + "transform": { "translate": [-180, -90], "scale": [0.036003600360036005, 0.01736514657995801] } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/zambia-topo.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/zambia-topo.json new file mode 100644 index 000000000000..96f9d5ed1f36 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/maps/zambia-topo.json @@ -0,0 +1,3951 @@ +{ + "type": "Topology", + "arcs": [ + [ + [25255, 22350], + [-11, -20], + [-3, -10], + [0, -13], + [0, -37], + [-4, -21], + [-24, -74], + [-4, -40], + [0, -20], + [7, -17], + [11, -13], + [3, -14], + [0, -20], + [-512, -739], + [-42, -41], + [-49, -23], + [-1261, -232], + [-18, -7], + [-80, -10], + [-31, -40], + [-14, -47], + [4, -64], + [20, -111], + [-10, -151], + [10, -61], + [25, -47], + [59, -70], + [21, -44], + [-4, -40], + [-6, -47], + [-7, -44], + [17, -34], + [-10, -20], + [-11, -20], + [-10, -17], + [-11, -10], + [-10, -7] + ], + [ + [23300, 20125], + [0, 4], + [-129, -10], + [-63, -27], + [-101, -81], + [-157, -81], + [-49, -10], + [-34, 20], + [-53, 58], + [-38, 16], + [-38, 0], + [-28, -13], + [-46, -44], + [-55, -40], + [-133, -51], + [-45, -36], + [-18, -44], + [-38, -135], + [-10, -77], + [-11, -34], + [-7, -26], + [14, -27], + [87, -128], + [49, -20], + [45, -4], + [35, -16], + [14, -61], + [-10, -64], + [-32, -50], + [-41, -30], + [-60, -7], + [-21, 7], + [-14, 13], + [-10, 17], + [-14, 10], + [-21, 0], + [-42, -3], + [-21, 3], + [-76, 30], + [-126, 78], + [-24, 6], + [-119, 4], + [-34, 3], + [-28, 13], + [-39, 37], + [-52, 68], + [-31, 16], + [-241, -6], + [-73, -20], + [-63, -31], + [-52, -37], + [-31, 68], + [-46, -11], + [-52, -26], + [-42, 3], + [-31, 17], + [-24, 0], + [-14, 6], + [-4, 47], + [-7, 34], + [-244, 501], + [-76, 107], + [-178, 111], + [-25, 41], + [-13, 64], + [-35, 63], + [-39, 58], + [-38, 36], + [-105, 64], + [-41, 37], + [-18, 51], + [-7, 94], + [-28, 27], + [-104, -17], + [-63, 20], + [-146, 87], + [-39, 34], + [-52, 128], + [-42, 33], + [-69, -43], + [-11, 30], + [-35, 67], + [-14, 17], + [-24, 27], + [-28, 20], + [-31, 0], + [-39, -23], + [-34, 53], + [-25, 165], + [-35, 37], + [-48, 17], + [-25, 40], + [-28, 235], + [-10, 37], + [-42, 44], + [-21, 34], + [11, 13], + [3, 34], + [-52, 201], + [-18, 31], + [-45, 50], + [-21, 37], + [-35, 101], + [-17, 27], + [-14, 50], + [-4, 182], + [11, 60], + [153, 256], + [11, 13], + [66, 57], + [14, 10], + [-21, 128], + [10, 74], + [28, 50], + [32, 37], + [52, 128], + [-4, 118], + [4, 33], + [10, 20], + [25, 44], + [7, 34], + [0, 40], + [-32, 181], + [0, 34], + [42, 67], + [38, 81], + [14, 37], + [0, 34], + [-3, 73], + [3, 34], + [18, 30], + [52, 61], + [11, 37], + [7, 37], + [27, 67], + [7, 37], + [0, 151], + [14, 81], + [28, 77], + [39, 74], + [52, 61], + [21, 33], + [21, 74], + [45, 84], + [14, 17], + [17, 10], + [39, -3], + [17, 3], + [42, 37], + [45, 54], + [39, 64], + [17, 67], + [-17, 23], + [-70, 61], + [-18, 34], + [7, 40], + [18, 70], + [-4, 41], + [-73, 90], + [-38, 61], + [0, 47], + [14, 34], + [-28, 50], + [14, 34], + [17, 30], + [11, 40], + [7, 44], + [-4, 40], + [-21, 64], + [-28, 54], + [-24, 60], + [-7, 88], + [7, 70], + [17, 54], + [7, 54], + [-14, 67], + [-7, 0], + [-24, 17], + [-7, 7], + [-10, 20], + [-4, 33], + [-7, 17], + [-101, 98], + [28, 64], + [73, 97], + [45, 104], + [28, 131], + [7, 273], + [-21, 245], + [11, 74], + [94, 218], + [28, 148], + [28, 61], + [55, 27], + [7, 13], + [-80, 91], + [-7, 50], + [-17, 20], + [-28, 10], + [-28, 24], + [-42, 64], + [-17, 70], + [-4, 158], + [-7, 37], + [-27, 71], + [-4, 30], + [-14, 47], + [-56, 74], + [-14, 30], + [18, 21], + [66, 23], + [21, 27], + [-94, -3], + [-38, 16], + [-14, 44], + [0, 61], + [-7, 43], + [-11, 37], + [-24, 37], + [-70, 57], + [-35, 41], + [-17, 53], + [7, 48], + [3, 63], + [-3, 64], + [-63, 84], + [-104, 64], + [-147, 34], + [-129, 57], + [-45, 124], + [59, 125], + [126, 94], + [271, 148], + [279, 228], + [495, 555], + [380, 571], + [111, 292], + [14, 303], + [-125, 302], + [-11, 64], + [77, 37], + [356, 61], + [515, 90], + [471, 81], + [627, 108] + ], + [ + [22634, 32998], + [-3, -4], + [-21, -70], + [-87, -195], + [-35, -57], + [-11, -14], + [-42, -43], + [-27, -27], + [-11, -4], + [-90, -27], + [-115, -47], + [-25, -16], + [-14, -11], + [-28, -37], + [-35, -53], + [-87, -199], + [-31, -57], + [-10, -13], + [-21, -20], + [-11, -14], + [-7, -17], + [-94, -262], + [-66, -326], + [-98, -285], + [-17, -31], + [-38, -50], + [-11, -10], + [-28, -17], + [-90, -30], + [-28, -14], + [-11, -10], + [-17, -27], + [-70, -272], + [-7, -17], + [-14, -3], + [-38, 0], + [-14, -3], + [-10, -14], + [-7, -17], + [-7, -40], + [-7, -20], + [-7, -71], + [17, -37], + [14, -17], + [42, -30], + [52, -30], + [31, -13], + [28, -17], + [21, -20], + [21, -27], + [25, -17], + [24, -14], + [31, -3], + [25, 7], + [17, 10], + [14, 0], + [21, -10], + [17, -10], + [11, -10], + [38, -51], + [7, -17], + [14, -30], + [11, -13], + [10, -14], + [10, -6], + [35, -7], + [18, -7], + [10, -10], + [18, -27], + [10, -10], + [14, -3], + [14, 0], + [24, 17], + [14, 0], + [11, -11], + [7, -23], + [3, -37], + [11, -27], + [7, -23], + [3, -24], + [-10, -84], + [-4, -20], + [4, -34], + [52, -205], + [-7, -30], + [-7, -24], + [-7, -20], + [-7, -13], + [-14, -10], + [-14, -7], + [-17, -3], + [-11, -10], + [-7, -17], + [-3, -20], + [-11, -81], + [4, -27], + [3, -34], + [11, -26], + [24, -54], + [63, -192], + [14, -27], + [17, -20], + [11, -10], + [24, -20], + [11, -7], + [17, 0], + [14, 4], + [28, 16], + [17, 4], + [18, 0], + [38, -4], + [14, -6], + [14, -7], + [45, -44], + [11, -13], + [45, -108], + [17, -23], + [21, -14], + [14, -6], + [11, -11], + [10, -13], + [7, -10], + [7, -7], + [11, -3], + [34, -7], + [18, -10], + [10, -24], + [18, -36], + [17, -17], + [18, -10], + [34, -7], + [14, -7], + [28, -17], + [14, -6], + [14, 0], + [49, 10], + [17, -4], + [63, -23], + [52, -10], + [14, -7], + [14, -7], + [52, -33], + [95, -34], + [55, -7], + [18, -6], + [10, -7], + [21, -24], + [14, -6], + [17, 0], + [35, 3], + [18, 0], + [35, -3], + [17, 0], + [35, 3], + [14, 0], + [14, -7], + [14, -6], + [10, -14], + [7, -13], + [31, -61], + [32, -57], + [42, -47], + [34, -30], + [11, -20], + [10, -27], + [14, -57], + [11, -27], + [14, -17], + [28, -14], + [34, -6], + [28, -14], + [14, -6], + [14, -14], + [11, -10], + [7, -13], + [7, -17], + [34, -118], + [4, -30], + [-14, -77], + [-77, -222], + [-3, -20], + [-4, -24], + [7, -37], + [7, -20], + [49, -131], + [28, -57], + [7, -14], + [0, -17], + [-11, -16], + [-48, -44], + [-21, -24], + [-18, -26], + [-17, -34], + [-11, -34], + [-48, -255], + [-11, -34], + [-10, -13], + [-7, -10], + [-7, -10], + [-42, -34], + [-28, -17], + [-14, -3], + [-35, -7], + [-17, 4], + [-38, 6], + [-18, 7], + [-45, 24], + [-32, 13], + [-17, 3], + [-136, 7], + [-70, -10], + [-13, -3], + [-60, -31], + [-24, -16], + [-45, -44], + [-91, -104], + [-24, -20], + [-14, -11], + [-70, -30], + [-108, -60], + [-94, -27], + [-28, -14], + [-11, -6], + [-17, -14], + [-10, -10], + [-14, -23], + [-39, -47], + [-17, -14], + [-87, -57], + [-11, -10], + [-10, -14], + [-7, -26], + [-7, -108], + [-11, -34], + [-10, -20], + [-14, -6], + [-10, -14], + [-18, -27], + [-49, -91], + [-3, -23], + [3, -24], + [18, -43], + [10, -20], + [25, -31], + [3, -17], + [-7, -23], + [-10, -20], + [-119, -178], + [-14, -34], + [-7, -17], + [-14, -80], + [-14, -21], + [-17, -6], + [-17, -4], + [-63, 7], + [-18, 0], + [-20, -10], + [-18, -37], + [-31, -30], + [-363, -259], + [-14, -20], + [-7, -24], + [4, -396], + [-7, -24], + [-7, -17], + [-132, -137], + [-60, -74], + [-24, -47], + [-7, -14], + [7, -17], + [24, -13], + [227, -91], + [28, -20], + [268, -303], + [11, -6], + [17, -7], + [17, -7], + [35, 4], + [32, 6], + [17, 0], + [17, 0], + [14, -6], + [140, -84], + [17, -7], + [18, 0], + [14, 10], + [7, 17], + [3, 20], + [7, 87], + [14, 84], + [3, 21], + [-3, 23], + [-28, 44], + [-21, 27], + [-35, 53], + [-10, 24], + [-11, 37], + [-3, 34], + [3, 26], + [4, 21], + [3, 20], + [-7, 23], + [-55, 94], + [-18, 54], + [35, 44], + [49, 37], + [822, 494], + [21, 7], + [18, -4], + [14, -6], + [48, -44], + [98, -61], + [115, -43], + [31, -17], + [56, -37], + [14, -14], + [14, -26], + [80, -175], + [21, -27], + [10, -10], + [67, -51], + [17, -13], + [17, -24], + [81, -154], + [7, -17], + [3, -17], + [4, -37], + [13, -185], + [-174, -1277], + [21, 20], + [28, 58], + [87, 36], + [14, 24], + [4, 34], + [10, 37], + [17, 40], + [21, 27], + [101, 80], + [35, 48], + [14, 73], + [21, 27], + [21, 14], + [42, 10], + [369, -10], + [53, -10], + [45, -31], + [930, -752], + [11, -14], + [7, -17], + [3, -16], + [0, -24], + [0, -10], + [-3, -7] + ], + [ + [30545, 30410], + [118, -407], + [150, -370], + [24, -342], + [-324, 30], + [-299, 84], + [-300, 30], + [-349, -57], + [-250, -145], + [-199, -141], + [-227, -30], + [-223, 87], + [-76, -228], + [-199, 104], + [-226, -20], + [-199, 144], + [-150, -114], + [-174, -171], + [-150, -88], + [-77, -198], + [-198, -286], + [223, -255], + [226, -430], + [126, -370], + [97, -400], + [227, -171], + [299, -141], + [102, -115], + [6, -850], + [-191, -44], + [-14, 14], + [-14, 27], + [-21, 23], + [-31, 7], + [-28, -17], + [-25, -64], + [-21, -13], + [-38, -10], + [-101, -61], + [-56, -23], + [-76, -10], + [-32, -14], + [-14, -34], + [21, -26], + [4, -24], + [-14, -10], + [-45, 0], + [-21, -10], + [-7, -24], + [10, -134], + [-10, -40], + [-21, -24], + [-60, -40], + [-20, -27], + [-32, 30], + [-59, 24], + [-63, 13], + [-49, 0], + [-55, -10], + [-42, -20], + [-133, -111], + [7, -24], + [39, -43], + [17, -27], + [7, -24], + [11, -13], + [34, -4], + [25, 7], + [21, 14], + [24, 3], + [21, -24], + [14, -70], + [-49, -24], + [-108, 0], + [-24, -33], + [-4, -31], + [14, -33], + [59, -74], + [14, -20], + [-7, -14], + [-10, -27], + [-14, -23], + [-21, -17], + [-17, -23], + [-4, -24], + [-3, -20], + [-133, -131], + [-48, -20], + [-63, 0], + [28, 33], + [10, 34], + [-3, 37], + [-18, 37], + [-31, 30], + [-14, -34], + [-4, -80], + [-45, -14], + [-56, 17], + [-24, 37], + [31, 44], + [-62, 0], + [-39, -84], + [-24, -111], + [-28, -74], + [-24, -20], + [-84, -34], + [-31, -3], + [-21, -10], + [-32, -17], + [-38, -17], + [-42, -3], + [59, -71], + [-13, -30], + [-42, 7], + [-39, 47], + [-28, -14], + [-27, -30], + [-14, -37], + [-7, -37], + [-53, -118], + [-244, -342], + [-62, -148], + [-25, -84], + [-21, -31], + [-66, -70], + [-17, -10], + [-32, -47], + [-13, -10], + [-70, 13], + [-35, 3], + [-28, -16], + [-24, -31], + [-18, -33], + [-17, -67], + [-14, -31], + [-18, -27], + [-24, -13], + [-38, -7], + [-53, -27], + [-27, -60], + [-21, -77], + [-32, -71], + [-69, -60], + [-42, -41], + [-87, -37] + ], + [ + [22634, 32998], + [49, 10], + [791, 138], + [791, 134], + [599, 104], + [767, 135], + [509, 87], + [77, -323], + [149, -336], + [189, -312], + [202, -242], + [97, -88], + [122, -80], + [133, -54], + [125, -3], + [63, 36], + [59, 48], + [66, 40], + [70, 0], + [35, -30], + [56, -84], + [34, -27], + [39, -7], + [24, 10], + [21, 17], + [157, 60], + [35, 10], + [21, 11], + [7, 13], + [10, 3], + [24, -16], + [11, -24], + [10, -60], + [11, -24], + [38, -30], + [38, -4], + [42, 4], + [46, -4], + [45, -27], + [66, -84], + [45, -33], + [115, -37], + [60, -57], + [21, -88], + [0, -124], + [24, -148], + [66, -104], + [289, -249], + [49, -23], + [59, 0], + [63, 27], + [101, 60], + [70, 7], + [443, -138], + [-56, -138], + [0, -168], + [62, -134], + [126, -34], + [63, 30], + [41, 37], + [49, 21], + [73, -11], + [88, -57], + [31, -10], + [28, 4], + [56, 13], + [27, 0], + [35, -20], + [28, -17], + [108, -128], + [59, -47], + [60, -23] + ], + [ + [28154, 15770], + [-66, -54], + [-140, -34], + [-66, -44], + [-122, -104], + [-28, -33], + [-10, -10], + [-21, 16], + [-28, 4], + [-24, -7], + [-11, -27], + [-14, -47], + [-55, -74], + [-28, -87], + [-39, -7], + [-80, 20], + [-28, -10], + [-34, -50], + [-81, -37], + [-38, -68], + [-52, -248], + [-18, -47], + [-73, -84], + [-7, -7], + [-49, -57], + [18, -54], + [-32, -27], + [-87, -10], + [-34, -20], + [-77, -64], + [-42, -13], + [-21, -24], + [0, -57], + [-10, -54], + [-67, -27], + [-3, -13], + [-49, -81], + [-45, -47], + [-21, -27], + [-17, -43], + [-28, -17], + [-28, -10], + [-2311, -7], + [0, -10], + [11, -10], + [14, -7], + [35, -10], + [59, -10], + [17, -3], + [18, -14], + [14, -34], + [80, -272], + [10, -23], + [18, -10], + [76, -37], + [140, -44], + [31, -17], + [14, -10], + [35, -34], + [14, -10], + [14, -6], + [14, -10], + [7, -14], + [14, -30], + [17, -30], + [3, -14], + [4, -20], + [3, -37], + [0, -27], + [-3, -27], + [-14, -43], + [-17, -37], + [-28, -54], + [-21, -30], + [-35, -31], + [-77, -43], + [-24, -24], + [-42, -47], + [-28, -17], + [-14, -13], + [-10, -20], + [-14, -37], + [-14, -27], + [-21, -24], + [-87, -84], + [-115, -171], + [-21, -27], + [-17, -10], + [-18, -3], + [-17, 0], + [-35, 6], + [-18, -3], + [-13, -7], + [-11, -20], + [-14, -34], + [-7, -43], + [-10, -31], + [-18, -20], + [-14, -13], + [-17, -7], + [-24, -17], + [-32, -37], + [-10, -23], + [-11, -37], + [-7, -71], + [-17, -64], + [-11, -6], + [-10, -24], + [-14, -37], + [-21, -124], + [-17, -172], + [17, -37], + [63, -60], + [73, -97], + [14, -24] + ], + [ + [24049, 11565], + [-150, 10], + [-28, 17], + [-31, 33], + [-11, 11], + [-17, 3], + [-21, 0], + [-17, -3], + [-21, -7], + [-28, -20], + [-32, -4], + [-24, -13], + [-21, 10], + [-10, 13], + [-11, 10], + [-14, -3], + [-17, -27], + [-21, -64], + [-7, -16], + [-10, -17], + [-7, -10], + [-21, -14], + [-25, -6], + [-45, -7], + [-28, 0], + [-24, 3], + [-49, 14], + [-21, 0], + [-21, -14], + [-59, -54], + [-14, -10], + [-17, -6], + [-63, 6], + [-18, 0], + [-237, -104], + [-14, -13], + [-20, -21], + [-25, -23], + [-174, -111], + [-24, -23], + [-18, -11], + [-97, -3], + [-18, 7], + [-21, -10], + [-24, -17], + [-42, -67], + [-17, -44], + [-11, -77], + [-35, -145], + [-80, -168], + [-199, -40], + [-243, -7], + [-251, 71], + [-523, -178], + [-153, -34], + [-161, -77], + [-369, -367], + [-237, -90], + [-261, -37], + [-258, -7], + [-492, 144], + [-83, -57], + [-98, -212], + [-77, -238], + [-80, -158], + [-90, -37], + [-175, 40], + [-501, 182], + [-509, 91], + [-39, 0], + [-38, -7], + [-28, -14], + [-150, -111], + [-24, -40], + [-7, -34], + [21, -47], + [38, -30], + [70, -20], + [160, -27], + [46, -17], + [38, -40], + [77, -168], + [41, -155], + [7, -57], + [4, -33], + [-4, -17], + [-3, -20], + [-28, -41], + [-52, -47], + [-317, -97], + [-129, -299] + ], + [ + [17212, 8238], + [-11, -10], + [-17, -31], + [-11, -10], + [-21, 7], + [-31, 17], + [-21, 3], + [-31, -3], + [-21, -10], + [-28, -34], + [-21, 27], + [-10, 30], + [-18, 24], + [-14, 17], + [-17, 13], + [-35, 37], + [-7, 13], + [-3, 17], + [7, 14], + [10, 10], + [10, 10], + [11, 10], + [7, 13], + [0, 14], + [-11, 10], + [-3, 17], + [-4, 20], + [4, 64], + [-4, 20], + [-7, 13], + [-48, 20], + [-11, 14], + [-3, 17], + [-4, 20], + [-3, 20], + [-4, 13], + [-17, 14], + [-153, 57], + [-14, 7], + [-4, 3], + [-3, 14], + [7, 30], + [-7, 17], + [-18, 10], + [-45, -4], + [-25, -10], + [-13, -17], + [-4, -16], + [-3, -27], + [-7, -14], + [-39, -23], + [-7, -14], + [-7, -20], + [0, -20], + [-7, -17], + [-7, -17], + [-7, -13], + [-10, -7], + [-17, -13], + [-21, -20], + [-11, -14], + [-10, -10], + [-18, -7], + [-14, -3], + [-14, -10], + [-7, -13], + [-7, -17], + [-6, -17], + [-14, -7], + [-14, 0], + [-49, 27], + [-56, 20], + [-14, 0], + [-10, -20], + [-11, -23], + [-247, -498], + [-7, -27], + [-49, -33], + [-31, 50], + [-35, 10], + [0, 40], + [-153, 740], + [-77, 50], + [-697, 41], + [-28, 10], + [14, 23], + [70, 67], + [0, 21], + [-32, 30], + [-394, 255], + [-118, 27], + [-174, 24], + [-4234, 127] + ], + [ + [9967, 9427], + [3, 236], + [-14, 124], + [4, 30], + [3, 20], + [11, 11], + [90, 90], + [21, 27], + [11, 10], + [14, 10], + [17, 0], + [17, 0], + [18, -3], + [17, -3], + [21, 3], + [21, 17], + [11, 20], + [3, 20], + [-7, 98], + [4, 33], + [10, 17], + [45, 50], + [42, 71], + [18, 37], + [10, 34], + [3, 147], + [0, 21], + [-7, 16], + [-87, 175], + [-7, 27], + [0, 34], + [0, 67], + [7, 34], + [7, 23], + [25, 34], + [17, 33], + [7, 31], + [4, 40], + [7, 23], + [7, 21], + [10, 13], + [10, 10], + [14, 10], + [32, 10], + [17, 14], + [7, 16], + [0, 21], + [0, 40], + [7, 108], + [-17, 67], + [-4, 54], + [4, 30], + [7, 23], + [14, 31], + [10, 16], + [7, 14], + [28, 80], + [21, 44], + [52, 91], + [18, 27], + [10, 10], + [14, 10], + [10, 7], + [21, 6] + ], + [ + [10632, 11857], + [73, 51], + [39, 37], + [52, 10], + [52, 3], + [1649, -225], + [17, -20], + [11, -14], + [20, -47], + [25, -30], + [31, -20], + [46, -13], + [76, -14], + [133, -71], + [21, -26], + [17, -31], + [21, -27], + [31, -10], + [32, 7], + [104, 51], + [18, 174], + [34, 71], + [122, 161], + [189, 165], + [125, 208], + [24, 34], + [39, 33], + [49, 21], + [48, 6], + [32, -10], + [55, -30], + [35, -7], + [18, 7], + [10, 17], + [14, 17], + [31, 6], + [248, -20], + [56, 17], + [104, 81], + [42, 16], + [369, 17], + [49, 51], + [14, 16], + [21, 58], + [-7, 376], + [-3, 17], + [0, 17], + [0, 16], + [17, 31], + [52, 84], + [7, 17], + [7, 20], + [4, 20], + [0, 20], + [-4, 40], + [-7, 37], + [-24, 64], + [-25, 44], + [-146, 208], + [-35, 34], + [-111, 70], + [-14, 14], + [-4, 13], + [14, 27], + [32, 14], + [59, 23], + [28, 14], + [14, 20], + [3, 13], + [4, 17], + [-7, 131], + [3, 84], + [11, 91], + [24, 74], + [63, 101], + [31, 67], + [4, 20], + [3, 20], + [4, 20], + [-7, 17], + [-11, 10], + [-90, 51], + [-25, 16], + [-14, 14], + [-17, 23], + [-11, 14], + [-7, 17], + [-10, 50], + [-11, 34], + [-17, 27], + [-17, 27], + [-21, 26], + [-25, 17], + [-24, 14] + ], + [ + [14518, 14812], + [1216, -44], + [258, -37], + [3, -17], + [-3, -20], + [-4, -20], + [-3, -20], + [0, -17], + [24, -84], + [7, -17], + [7, -13], + [42, -44], + [11, -14], + [3, -16], + [7, -17], + [7, -57], + [10, -31], + [4, -20], + [7, -57], + [17, -70], + [11, -21], + [17, -20], + [11, -6], + [31, -27], + [52, 23], + [80, 67], + [67, 84], + [28, 84], + [-21, 74], + [-4, 51], + [14, 40], + [28, 20], + [38, 10], + [35, -10], + [21, -57], + [14, -20], + [17, -20], + [21, -4], + [18, 17], + [3, 27], + [-3, 24], + [3, 23], + [94, 138], + [28, 50], + [0, 24], + [-7, 20], + [-3, 20], + [10, 31], + [18, 13], + [28, 3], + [24, 0], + [14, 7], + [7, 44], + [-14, 43], + [0, 44], + [45, 54], + [49, -7], + [21, -3], + [14, -10], + [52, -37], + [31, -17], + [35, -13], + [251, -21], + [56, -20], + [45, -47], + [199, -551], + [31, -64], + [39, -60], + [59, -58], + [31, -16], + [28, -7], + [14, 7], + [14, 6], + [38, 27], + [21, 7], + [25, 7], + [80, 3], + [24, 7], + [14, 7], + [25, 6], + [34, 7], + [168, 3], + [101, 14], + [17, 6], + [14, 7], + [24, 17], + [11, 13], + [10, 11], + [14, 13], + [21, 13], + [39, 7], + [24, 0], + [24, -3], + [185, -57], + [38, -4], + [25, 0], + [59, 20], + [56, 11], + [94, 3], + [31, -3], + [140, -44], + [52, -7], + [195, 17], + [21, 3], + [14, 7], + [28, 13], + [38, 27], + [14, 7], + [119, 20], + [240, 10], + [31, 14], + [14, 20], + [-21, 373], + [4, 17], + [7, 13], + [10, 14], + [429, 366], + [21, 24], + [52, 87], + [63, 71], + [24, 23], + [101, 67], + [119, 51], + [14, 6], + [10, 10], + [192, 269], + [115, 131], + [10, 14], + [7, 10], + [7, 23] + ], + [ + [21111, 15927], + [25, 0], + [73, 14], + [73, 3], + [66, -37], + [28, -40], + [17, -54], + [28, -37], + [46, -13], + [31, 20], + [56, 77], + [42, 27], + [66, 30], + [174, 131], + [422, 182], + [59, 40], + [174, 185], + [70, 34], + [70, -4], + [52, -37], + [52, -47], + [56, -40], + [38, -3], + [25, 10], + [24, -4], + [24, -37], + [11, -33], + [-7, -37], + [-11, -34], + [-13, -27], + [-25, -16], + [-52, -14], + [-21, -27], + [-4, -27], + [7, -70], + [-7, -31], + [-17, -10], + [-28, -6], + [-24, -17], + [0, -47], + [10, -40], + [18, -37], + [17, -37], + [28, -27], + [45, -31], + [63, -30], + [118, -37], + [192, 0], + [45, 7], + [46, 107], + [3, 377], + [0, 507], + [0, 484], + [0, 508], + [0, 595], + [4, 511], + [0, 564], + [0, 397], + [0, 363] + ], + [ + [23300, 20112], + [55, 13], + [14, 7], + [11, 10], + [10, 14], + [28, 43], + [14, 30], + [7, 21], + [4, 20], + [14, 171], + [3, 20], + [7, 17], + [10, 14], + [11, 10], + [10, 10], + [244, 114], + [63, 17], + [70, 10], + [14, 0], + [21, -13], + [24, -31], + [52, -70], + [56, -115], + [3, -16], + [4, -17], + [7, -61], + [3, -17], + [4, -16], + [10, -24], + [46, -67], + [14, -27], + [17, -27], + [21, -20], + [45, -30], + [25, -14], + [24, -10], + [38, -10], + [18, -7], + [17, -20], + [28, -57], + [14, -17], + [66, -30], + [39, -7], + [13, -6], + [14, -7], + [14, -10], + [14, -10], + [49, -17], + [42, -27], + [31, -17], + [73, -13], + [18, -7], + [42, -27], + [14, -7], + [17, -3], + [52, 0], + [25, -10], + [28, -13], + [41, -27], + [28, -10], + [21, 0], + [52, 10], + [35, 0], + [18, -4], + [17, -13], + [14, -17], + [18, -37], + [13, -20], + [18, -20], + [28, -14], + [21, -3], + [17, 3], + [31, 10], + [32, 4], + [35, -7], + [17, -10], + [14, -17], + [17, -37], + [7, -27], + [0, -27], + [-3, -151], + [-10, -40], + [-28, -67], + [-4, -17], + [-3, -20], + [0, -41], + [3, -37], + [4, -16], + [3, -17], + [14, -17], + [21, -20], + [35, -27], + [76, -40], + [32, -17], + [14, -17], + [17, -27], + [11, -44], + [0, -27], + [-4, -23], + [-24, -71], + [-4, -20], + [0, -20], + [4, -17], + [21, -30], + [35, -37], + [83, -74], + [42, -23], + [28, -11], + [42, 24], + [24, 17], + [24, 23], + [35, 54], + [14, 7], + [14, 0], + [18, -7], + [14, -17], + [38, -104], + [21, -33], + [21, -24], + [35, -24], + [59, -30], + [14, -13], + [10, -17], + [7, -34], + [4, -23], + [-4, -24], + [-7, -17], + [-7, -16], + [-17, -27], + [-42, -54], + [-7, -13], + [-31, -88], + [-4, -17], + [4, -16], + [45, -175], + [3, -37], + [0, -20], + [-13, -84], + [10, -24], + [21, -23], + [181, -142], + [59, -33], + [28, -20], + [28, -17], + [18, -3], + [34, 0], + [98, 23], + [21, 0], + [17, -3], + [105, -34], + [38, -3], + [21, -7], + [80, -30], + [25, -4], + [17, 4], + [35, 0], + [38, -34], + [223, -242], + [39, -30], + [17, -3], + [38, 0], + [18, 3], + [17, 3], + [14, 7], + [11, 10], + [10, 13], + [10, 14], + [7, 13], + [28, 74], + [4, 7], + [3, 30], + [4, 64], + [7, 17], + [7, 13], + [10, 10], + [28, 14], + [59, 23], + [18, 4], + [132, 0], + [38, -7], + [18, -7], + [101, -53], + [28, -21], + [14, -13], + [10, -13], + [18, -48], + [10, -53], + [49, -743], + [17, -64], + [56, -124], + [70, -84], + [38, -54], + [4, -34], + [7, -60], + [-4, -114], + [0, -168] + ], + [ + [14518, 14812], + [-101, 74], + [-45, 43], + [-11, 20], + [-14, 31], + [-14, 43], + [-3, 37], + [14, 222], + [10, 54], + [21, 60], + [14, 31], + [10, 13], + [60, 51], + [10, 13], + [7, 17], + [11, 23], + [31, 165], + [10, 27], + [11, 20], + [10, 10], + [28, 14], + [59, 23], + [28, 17], + [14, 13], + [14, 21], + [35, 90], + [7, 10], + [14, 14], + [66, 37], + [18, 17], + [17, 30], + [31, 60], + [11, 34], + [10, 30], + [0, 20], + [-7, 61], + [-7, 33], + [-35, 78], + [-3, 23], + [-7, 27], + [0, 57], + [7, 34], + [7, 23], + [7, 17], + [7, 14], + [10, 13], + [25, 24], + [163, 114], + [25, 20], + [28, 37], + [21, 37], + [10, 27], + [7, 23], + [80, 390], + [0, 4], + [-14, 6], + [-14, 7], + [-17, 3], + [-21, 0], + [-66, -13], + [-18, 7], + [-17, 13], + [-10, 27], + [-11, 17], + [-10, 10], + [-14, 3], + [-11, 14], + [-10, 30], + [-7, 13], + [-11, 14], + [-14, 7], + [-14, 6], + [-7, 0], + [-52, 4], + [-17, 6], + [-14, 11], + [-25, 20], + [-13, 6], + [-81, 37], + [-14, 10], + [-10, 11], + [-21, 26], + [-10, 11], + [-28, 20], + [-32, 17], + [-14, 10], + [-14, 13], + [-6, 20], + [-4, 17], + [4, 20], + [27, 44], + [28, 74], + [11, 20], + [10, 30], + [4, 20], + [-7, 21], + [-7, 13], + [-56, 67], + [-14, 7], + [-14, 13], + [-14, 17], + [-7, 30], + [-10, 21], + [-11, 16], + [-14, 10], + [-10, 14], + [-14, 17], + [-7, 30], + [0, 23], + [21, 37], + [10, 27], + [28, 148], + [7, 24], + [11, 20], + [24, 44], + [21, 23], + [28, 17], + [14, 3], + [17, 4], + [52, 6], + [14, 4], + [32, 13], + [24, 20], + [21, 21], + [28, 40], + [31, 64], + [105, 148], + [24, 16], + [28, 14], + [119, 23], + [17, 7], + [14, 14], + [0, 13], + [-7, 10], + [-21, 27], + [0, 3], + [-28, 78], + [-7, 23], + [-3, 27], + [0, 47], + [3, 27], + [11, 24], + [7, 20], + [14, 33], + [0, 104], + [-4, 21], + [-35, 117], + [-3, 20], + [-4, 24], + [14, 7], + [14, -4], + [66, -16], + [84, -4], + [28, 4], + [56, 10], + [35, 6], + [376, -43], + [17, 10], + [21, 13], + [35, 51], + [17, 16], + [39, 24], + [14, 10], + [45, 24], + [38, 57], + [18, 13], + [14, 10], + [31, 10], + [14, 7], + [21, 20], + [45, 44], + [25, 20], + [14, 3], + [41, 14], + [28, -24], + [46, -30], + [41, -34], + [0, -20], + [-7, -23], + [11, -20], + [84, -17], + [34, -17], + [11, -7], + [42, 64], + [45, 17], + [10, 7], + [129, 97], + [11, 10] + ], + [ + [16717, 19826], + [14, -13], + [129, -158], + [83, -30], + [133, -14], + [136, 7], + [94, 27], + [59, 50], + [31, 47], + [39, 27], + [76, -7], + [60, -27], + [170, -114], + [42, -60], + [14, -88], + [18, -70], + [66, -24], + [56, 10], + [41, 4], + [220, -24], + [28, -17], + [10, -30], + [7, -34], + [14, -30], + [73, -64], + [42, 20], + [45, 48], + [74, 23], + [59, -30], + [45, -47], + [49, -41], + [80, 0], + [59, 11], + [60, -7], + [55, -17], + [53, -34], + [247, -238], + [42, -74], + [56, -168], + [38, -78], + [101, -117], + [28, -64], + [0, -91], + [-35, -54], + [-49, -40], + [-28, -47], + [21, -87], + [60, -91], + [66, -74], + [49, -81], + [10, -174], + [31, -34], + [42, 0], + [49, 23], + [28, 41], + [42, 97], + [41, 27], + [136, -33], + [122, -138], + [202, -293], + [53, -53], + [21, -37], + [24, -121], + [14, -17], + [42, -14], + [10, -16], + [-3, -17], + [-14, -37], + [0, -14], + [3, -16], + [-7, -37], + [4, -17], + [14, -17], + [17, -3], + [14, -7], + [11, -7], + [27, -117], + [28, -21], + [60, -3], + [27, -10], + [35, -54], + [91, -501], + [49, -141], + [90, -97], + [39, -54], + [48, -13], + [56, 13], + [52, 23], + [56, 0] + ], + [ + [24537, 10506], + [-7, 7], + [0, 407], + [-18, 101], + [-14, 10], + [-31, 37], + [-24, 40], + [-28, 40], + [-25, 20], + [-45, 24], + [-17, 13], + [-14, 17], + [-119, 175], + [-14, 13], + [-14, 10], + [-66, 31], + [-21, 20], + [-10, 27], + [-11, 43], + [-10, 24] + ], + [ + [28154, 15770], + [31, 23], + [67, 24], + [48, -11], + [60, -16], + [62, -10], + [49, 23], + [234, 202], + [73, 104], + [35, 128], + [24, 134], + [52, 198], + [14, 31], + [63, 16], + [24, 17], + [14, 24], + [7, 33], + [21, 68], + [46, 47], + [41, 50], + [11, 81], + [17, 0], + [7, -14], + [7, -16], + [7, -17], + [49, 33], + [66, 41], + [39, 33], + [31, 44], + [17, 10], + [63, 7], + [21, 17], + [14, 20], + [7, 30], + [38, -17], + [25, 7], + [24, 17], + [35, 16], + [-18, 64], + [-3, 71], + [7, 67], + [14, 54], + [3, 17], + [-3, 37], + [0, 13], + [17, 17], + [18, 3], + [17, -3], + [11, 7], + [38, 43], + [14, 21], + [10, 30], + [32, 3], + [62, 20], + [63, 27], + [24, 34], + [11, 60], + [45, 155], + [28, 54], + [28, 23], + [24, 7], + [18, 13], + [14, 71], + [28, 67], + [7, 37], + [3, 44], + [18, 111], + [0, 114], + [10, 34], + [14, 23], + [10, 27], + [14, 84], + [32, 40], + [62, 333], + [0, 148], + [7, 27], + [28, 47], + [7, 20], + [4, 51], + [14, 20], + [17, 20], + [28, 33], + [21, 41], + [38, 101], + [39, 43], + [146, 131], + [10, 34], + [53, 71], + [24, 70], + [14, 74], + [7, 71], + [244, -64], + [178, 0], + [149, 175], + [49, 198], + [126, 144], + [174, 0], + [376, 27], + [676, 229], + [401, 144], + [126, 313], + [198, 373], + [0, 161], + [59, 94], + [119, 58], + [143, 43] + ], + [ + [33744, 21866], + [28, -437], + [-11, -124], + [-38, -128], + [0, -54], + [35, -77], + [10, -47], + [-10, -54], + [-18, -53], + [-28, -175], + [-118, -309], + [-11, -115], + [7, -114], + [21, -54], + [84, -90], + [35, -48], + [38, -110], + [52, -239], + [56, -101], + [105, -40], + [219, 74], + [119, -44], + [49, 0], + [34, -13], + [4, -71], + [-24, -54], + [-14, -10], + [-77, -50], + [-24, -57], + [-46, -10], + [-10, -24], + [-4, -84], + [-28, -40], + [-90, -41], + [-32, -37], + [-48, -77], + [-60, -71], + [-69, -47], + [-67, -16], + [-24, 10], + [-24, 16], + [-28, 17], + [-39, 4], + [-76, -17], + [-25, -10], + [-34, -44], + [-49, -118], + [-42, -33], + [-31, -10], + [-18, -10], + [-14, -14], + [-14, -13], + [-17, -17], + [-11, -24], + [-14, -16], + [-31, -4], + [-14, 17], + [-35, 77], + [-21, 24], + [-27, 7], + [-21, -4], + [-49, -13], + [-25, -14], + [-27, -26], + [-25, -14], + [-21, 24], + [-14, 26], + [-14, 17], + [-21, 7], + [-24, -13], + [-42, -41], + [-31, -47], + [-91, -205], + [-108, -178], + [-42, -91], + [-10, -60], + [17, -249], + [21, -37], + [80, -57], + [74, -77], + [24, -81], + [-14, -97], + [-80, -205], + [-49, -377], + [4, -60], + [14, -58], + [24, -57], + [45, -77], + [11, -40], + [-18, -47], + [-87, -31], + [-76, -104], + [-53, -134], + [-42, -192], + [-41, -181], + [-53, -131], + [-83, -51], + [-56, -10], + [-24, -37], + [-7, -54], + [3, -60], + [-14, -77], + [-38, -31], + [-112, -16], + [-38, -31], + [-80, -77], + [-39, -7], + [-55, 24], + [-42, 3], + [-31, -27], + [-11, -70], + [35, -108], + [94, -23], + [108, -4], + [80, -37], + [112, -178], + [17, -40], + [-24, -37], + [-112, -57], + [-31, -41], + [17, -90], + [87, -44], + [108, -24], + [91, -37], + [45, -43], + [147, -205], + [14, -51], + [7, -50], + [17, -54], + [24, -23], + [53, 3], + [24, -13], + [18, -31], + [3, -17], + [-7, -20], + [-10, -171], + [14, -51], + [69, -100], + [56, 13], + [94, 172], + [38, 50], + [42, 23], + [105, 34], + [28, 30], + [28, 88], + [27, 16], + [46, -36], + [90, -195], + [53, -71], + [-216, -81], + [-262, -100], + [-373, -142], + [-515, -195], + [-499, -191], + [-453, -172], + [-313, -121], + [-276, -104], + [-240, -50], + [-112, -37], + [-226, -114], + [-300, -111], + [-390, -145], + [-429, -158], + [-202, -117], + [-279, -165], + [-254, -104], + [-310, -84], + [-384, -105], + [-310, -84], + [-52, -3], + [-422, -107], + [-296, -78], + [-415, -168], + [-254, -101], + [-314, -131], + [-278, -151], + [-220, -124], + [-261, -34], + [-49, -13], + [0, -4] + ], + [ + [24537, 10506], + [-4, -23], + [21, -101], + [0, -151], + [18, -148], + [108, -424], + [76, -164], + [94, -68], + [46, -20], + [38, -43], + [28, -61], + [21, -64], + [14, -70], + [7, -222], + [10, -37], + [46, -67], + [7, -34], + [-7, -34], + [-56, -117], + [-18, -78], + [7, -47], + [84, -97], + [17, -27], + [32, -101], + [-7, -10], + [-42, -17], + [-119, -53], + [-83, -4], + [-94, 47], + [-49, 24], + [-77, 10], + [-24, -10], + [-45, -44], + [-25, -17], + [-45, -13], + [-35, 13], + [-77, 61], + [-118, 27], + [-122, -20], + [-119, -34], + [-115, -24], + [-128, 17], + [-258, 77], + [-133, 14], + [-66, -17], + [-122, -60], + [-129, -24], + [-171, -64], + [-73, -10], + [-63, 10], + [-55, 17], + [-63, 10], + [-73, -23], + [-112, -105], + [-52, -37], + [-258, -23], + [-45, -10], + [-655, -336], + [-108, -125], + [-25, -16], + [-63, -17], + [-55, -41], + [-49, -47], + [-28, -37], + [-66, -131], + [-35, -40], + [-73, -17], + [-136, -3], + [-63, -10], + [-14, -10] + ], + [ + [20759, 7186], + [0, 3], + [-45, 40], + [-63, 47], + [-69, 17], + [-49, -57], + [-35, 20], + [-31, 0], + [-25, -13], + [-10, -34], + [-35, 24], + [-21, -10], + [-14, -21], + [-14, -13], + [-28, 3], + [-45, 14], + [-21, 3], + [-52, -7], + [-18, 4], + [-28, 13], + [-202, 178], + [-38, 21], + [-59, 3], + [-119, -20], + [-63, 13], + [-48, 37], + [-129, 148], + [-49, 44], + [-49, 17], + [-111, 16], + [-35, 17], + [-59, 47], + [-32, 20], + [-59, 17], + [-296, -23], + [-49, -20], + [-87, -68], + [-32, -6], + [-27, 20], + [-95, 87], + [-48, 30], + [-293, 128], + [-63, 10], + [-56, 20], + [-31, 47], + [-28, 61], + [-38, 57], + [-112, 57], + [-122, 7], + [-118, -30], + [-98, -58], + [-28, 17], + [-17, 20], + [-7, 27], + [7, 27], + [-56, 41], + [-69, 13], + [-129, -3] + ], + [ + [10632, 11857], + [-76, 4], + [-35, -14], + [-14, -10], + [-70, -37], + [-52, -6], + [-42, 0], + [-28, 3], + [-17, 7], + [-14, 10], + [-14, 10], + [-11, 10], + [-31, 17], + [-56, 13], + [-195, 20], + [-38, 0], + [-18, -6], + [-52, -31], + [-31, -13], + [-129, -30], + [-46, -17], + [-27, -14], + [-11, -10], + [-59, -23], + [-115, -30], + [-28, -4], + [-143, 10], + [-28, 0], + [-28, -6], + [-55, -21], + [-28, -3], + [-21, -3], + [-21, 6], + [-24, 7], + [-25, 14], + [-21, 16], + [-24, 20], + [-63, 81], + [-35, 54], + [-7, 13], + [-10, 34], + [-4, 17], + [-3, 20], + [14, 111], + [0, 17], + [-7, 77], + [0, 34], + [3, 10], + [7, 16], + [4, 7], + [3, 7], + [11, 7], + [17, 10], + [66, 27], + [77, 40], + [10, 10], + [25, 20], + [31, 37], + [7, 17], + [4, 20], + [7, 148], + [14, 77], + [3, 7], + [4, 13], + [3, 17], + [11, 14], + [17, 27], + [24, 47], + [11, 37], + [10, 40], + [4, 23], + [0, 121], + [-7, 27], + [-14, 27], + [-32, 44], + [-20, 17], + [-21, 6], + [-115, -23], + [-32, 7], + [-52, 20], + [-335, 188], + [-20, 7], + [-70, 13], + [-66, 20], + [-60, 10], + [-153, 58], + [-24, 13], + [-18, 17], + [-14, 30], + [-7, 17], + [-14, 30], + [-3, 17], + [-4, 17], + [-3, 20], + [3, 87], + [0, 17], + [-24, 64], + [-7, 37], + [-7, 13], + [-7, 17], + [-17, 20], + [-35, 37], + [-70, 91], + [-14, 17], + [-10, 3], + [-11, 0], + [-24, -17], + [-14, -10], + [-14, -3], + [-14, -7], + [-10, -13], + [-7, -17], + [-4, -20], + [0, -37], + [-7, -10], + [-3, -4], + [-18, -3], + [-7, 3], + [-3, 4], + [-4, 10], + [0, 17], + [7, 64], + [-3, 20], + [-11, 3], + [-14, 0], + [-27, 10], + [-14, 3], + [-7, -10], + [-4, -13], + [7, -34], + [0, -16], + [-7, -14], + [-10, -7], + [-14, 4], + [-32, 13], + [-17, 4], + [-35, 0], + [-10, 13], + [-7, 17], + [-25, 33], + [-35, 24], + [-24, 17], + [-14, 17], + [-14, 20], + [-66, 77], + [-10, -3], + [-11, -10], + [-7, -17], + [-14, -10], + [-28, -7], + [-3, -10], + [7, -14], + [7, -10], + [10, -13], + [4, -14], + [-7, -10], + [-14, -3], + [-18, -3], + [-41, 3], + [-21, 7], + [-18, -4], + [-10, -10], + [-11, -13], + [-10, -10], + [-21, -4], + [-11, 10], + [-10, 17], + [-7, 17], + [-7, 17], + [-10, -3], + [-7, -11], + [-11, -13], + [-10, -10], + [-14, -3], + [-18, 0], + [-111, 37], + [-25, 16], + [-17, 17], + [-3, 40], + [0, 21], + [-7, 23], + [-11, 24], + [-31, 33], + [-21, 10], + [-11, 0], + [-3, -13], + [-4, -17], + [-7, -13], + [-10, -14], + [-7, -10], + [0, -17], + [7, -13], + [17, -17], + [7, -13], + [4, -17], + [-7, -10], + [-17, -7], + [-25, 3], + [-35, 7], + [-21, 14], + [-59, 43], + [-45, 47], + [-14, 4], + [-18, 0], + [-38, -27], + [-31, -10], + [-14, -7], + [-18, -27], + [-14, -7], + [-17, -3], + [-28, 3], + [-17, 0], + [-18, -6], + [-10, -10], + [-14, -34], + [-11, -13], + [-10, -11], + [-28, -13], + [-14, -7], + [-21, -3], + [-24, 3], + [-21, 10], + [-21, 21], + [-17, 6], + [-14, -3], + [-11, -14], + [-7, -13], + [-7, -20], + [-7, -20], + [-7, -20], + [-10, -17], + [-18, -7], + [-13, 7], + [-25, 30], + [-14, 3], + [-10, -3], + [-28, -40], + [-31, -34], + [-25, -20], + [-14, -7], + [-28, -10], + [-28, -3], + [-38, 3], + [-28, 14], + [-45, 23], + [-21, 7], + [-21, 0], + [-24, -20], + [-14, -7], + [-18, -3], + [-10, -4], + [-14, -10], + [-11, 0], + [-20, 3], + [-25, 4], + [-63, 27], + [-55, 0], + [-46, 13], + [-21, 37], + [0, 67], + [-31, -20], + [-70, -74], + [-34, -13], + [-32, -7], + [-35, -10], + [-97, -67], + [-52, 17], + [-49, 37], + [-46, 20], + [-48, -14], + [-105, -64], + [-118, -33], + [-108, -91], + [-49, -34], + [-307, -87], + [-84, -50], + [-94, -91], + [-27, -24], + [-39, -13], + [-31, 0], + [-28, 10], + [-35, 3], + [-52, -16], + [-77, -74], + [-49, -27], + [-122, 0], + [14, 30], + [0, 23], + [-3, 17], + [-11, 24], + [-122, -51], + [14, 71], + [67, 114], + [38, 51], + [10, 16], + [4, 17], + [-11, 10], + [-17, 4], + [-230, 27], + [-28, 10], + [-17, 10], + [-25, 20], + [-17, 27], + [-7, 13], + [-7, 17], + [-11, 37], + [0, 40], + [0, 41], + [0, 10], + [-7, 20], + [-17, 17], + [-35, 23], + [-28, 10], + [-24, 0], + [-17, 0], + [-14, -6], + [-77, -37], + [-52, -14], + [-18, 0], + [-14, 7], + [-7, 3], + [-10, 14], + [-4, 13], + [-10, 37], + [-18, 51], + [-17, 26], + [-42, 51], + [-261, 188], + [-73, 34], + [-25, 3], + [-17, -3], + [-11, -10], + [-76, -81], + [-11, -10], + [-17, -7], + [-140, -7], + [-13, -6], + [-11, -10], + [-7, -17], + [-35, -198], + [-7, -21], + [-21, -37], + [-31, -6], + [-38, 10], + [-28, 17], + [-28, 20], + [-31, 23], + [-74, 14], + [-34, 16], + [-18, 27], + [-3, 27], + [-14, 27], + [-18, 24], + [-14, 10], + [-52, 13], + [-24, 27], + [-56, 7], + [-31, 0], + [-25, 7], + [-17, 6], + [-73, 54], + [-11, 13], + [-28, 64], + [-7, 10], + [-7, 7], + [-202, 138], + [-435, 407], + [-32, 23], + [-70, 44], + [-31, 10], + [-24, 7], + [-18, -4], + [-14, -3], + [-14, -10], + [-10, -10], + [-31, -61], + [-7, -13], + [-14, -10], + [-39, -27], + [-14, -10], + [-7, -17], + [-13, -30], + [-11, -14], + [-10, -10], + [-88, -44], + [-20, -6], + [-28, -4], + [-49, -3], + [-28, 7], + [-24, 6], + [-11, 7], + [-49, 41], + [-73, 84], + [-35, 26], + [-90, 48], + [-56, 10] + ], + [ + [0, 14886], + [0, 309], + [0, 514], + [0, 511], + [0, 514], + [0, 511], + [369, 0], + [373, 0], + [370, 0], + [369, 0], + [369, 0], + [370, 0], + [373, 0], + [369, 0], + [370, 0], + [372, 0], + [370, 0], + [369, 0], + [370, 0], + [372, 0], + [370, 0], + [369, 0], + [98, 0], + [-35, 124], + [-52, 108], + [-67, 97], + [-160, 189], + [-63, 94], + [-27, 111], + [20, 134], + [60, 151], + [55, 252], + [53, 239], + [38, 97], + [133, 222], + [101, 165], + [24, 57], + [10, 57], + [-31, 155], + [-10, 208], + [-32, 84], + [-76, 91], + [-63, 104], + [-18, 155], + [21, 477], + [18, 437], + [62, 165], + [7, 33], + [-13, 84], + [-14, 256], + [-25, 84], + [-31, 64], + [-25, 63], + [0, 88], + [18, 67], + [52, 134], + [84, 145], + [14, 40], + [0, 54], + [-11, 84], + [4, 44], + [7, 37], + [31, 50], + [94, 81], + [28, 47], + [0, 40], + [-132, 330], + [-18, 87], + [11, 484], + [-56, 10], + [-18, 47], + [14, 131], + [-3, 188], + [10, 61], + [18, 67], + [-11, 50], + [-55, 98], + [-21, 60], + [-21, 165], + [104, -3], + [140, -30], + [125, -54], + [70, -71], + [0, -30], + [-18, -61], + [0, -33], + [7, -37], + [21, -67], + [4, -41], + [-4, -111], + [18, -43], + [62, 10], + [60, 23], + [48, -3], + [112, -37], + [59, -10], + [112, 0], + [56, -7], + [66, -33], + [87, -61], + [73, -77], + [35, -67], + [-11, -41], + [-24, -30], + [-24, -30], + [0, -51], + [14, -40], + [52, -50], + [21, -27], + [14, -61], + [3, -70], + [-3, -74], + [-11, -68], + [-24, -53], + [-94, -168], + [-39, -47], + [-125, -41], + [-38, -37], + [28, -60], + [45, -27], + [125, 0], + [56, -10], + [66, -47], + [101, -104], + [60, -31], + [69, -6], + [63, 13], + [125, 50], + [28, 4], + [35, -4], + [32, 7], + [20, 27], + [7, 37], + [14, 34], + [18, 27], + [28, 26], + [24, 14], + [66, 17], + [32, 16], + [31, 34], + [52, 84], + [35, 34], + [112, 53], + [226, 0], + [115, 27], + [223, 125], + [122, 43], + [115, -10], + [429, 44], + [177, 40], + [283, 158], + [94, 20], + [35, -36], + [7, -78], + [-4, -87], + [7, -67], + [-3, -34], + [-25, -24], + [-59, -26], + [-35, -31], + [14, -30], + [35, -30], + [14, -27], + [-24, -64], + [-35, -30], + [-25, -40], + [4, -81], + [21, -71], + [69, -131], + [21, -60], + [-3, -34], + [-42, -54], + [-10, -30], + [0, -34], + [6, -60], + [81, -276], + [28, -60], + [24, -27], + [21, -13], + [24, -4], + [39, 0], + [41, -10], + [18, -23], + [14, -27], + [28, -31], + [170, -90], + [53, -51], + [3, -20], + [4, -17], + [-4, -17], + [-24, -87], + [17, -47], + [45, -20], + [60, 0], + [28, 17], + [17, 23], + [21, 20], + [38, 7], + [32, 10], + [10, 34], + [11, 33], + [24, 21], + [136, -4], + [101, -74], + [94, -97], + [115, -74], + [52, -10], + [174, 0], + [32, 3], + [59, 30], + [21, 7], + [35, -7], + [14, -10], + [10, -16], + [164, -148], + [63, -27], + [42, -37], + [41, -104], + [53, -27], + [38, -7], + [516, 7], + [66, -27], + [59, -44], + [63, -34], + [104, 7], + [63, -30], + [35, -3], + [35, 16], + [56, 44], + [31, 14], + [112, 23], + [115, 3], + [69, -26], + [53, -44], + [45, -51], + [56, -47], + [104, -40], + [241, -17], + [115, -27], + [55, -37], + [53, -43], + [48, -27], + [63, 13], + [45, 51], + [35, 57], + [46, 44], + [76, 0], + [136, -17], + [129, 30], + [115, 77], + [105, 111], + [55, 135], + [14, 275], + [28, 135], + [46, 77], + [45, 47], + [31, 50], + [4, 91], + [-35, 145], + [-4, 64], + [42, 50], + [25, 3], + [66, -10], + [28, 0], + [115, 44], + [125, 10], + [87, 37], + [18, 3], + [52, -80], + [31, -155], + [14, -168], + [-7, -114], + [73, -296], + [555, -387], + [139, -268], + [14, -138], + [143, -467], + [49, -71], + [160, -148] + ], + [ + [20759, 7186], + [-42, -20], + [-101, -108], + [-66, -91], + [-7, -23], + [-42, -71], + [-10, -37], + [7, -30], + [14, -24], + [14, -20], + [7, -17], + [-18, -117], + [-38, -141], + [-14, -135], + [49, -97], + [-70, -182], + [-10, -74], + [10, -57], + [49, -144], + [0, -78], + [-70, -131], + [-14, -27], + [-17, -121], + [-42, -53], + [-118, -98], + [-25, -60], + [-59, -61], + [-24, -27], + [-42, -6], + [-84, 0], + [-143, -31], + [-1080, -467], + [-202, -144], + [-293, -269], + [-272, -128], + [-460, -218], + [-153, -101], + [-119, -145], + [-404, -669], + [-49, -121], + [-62, -269], + [-81, -171], + [-156, -178], + [-307, -306], + [-788, -897], + [-31, -51], + [-3, -33], + [3, -88], + [7, -77], + [-101, -138], + [-112, -117], + [-87, -91], + [-80, -51], + [-45, -13], + [-143, -7], + [-31, -13], + [-108, -81], + [-70, 27], + [-282, -141], + [-74, -10], + [-45, -14], + [-38, -27], + [-87, -87], + [-35, -10], + [-42, 10], + [-171, 57], + [-49, 27], + [-41, 40], + [-46, 58], + [-38, 33], + [-49, 24], + [-80, 13], + [-125, 44], + [-227, 138], + [-139, 27], + [-108, -17], + [-25, 6], + [-17, 21], + [-25, 16], + [-27, 17], + [-136, 17], + [-28, 10], + [-18, 20], + [-17, 34], + [-21, 27], + [-24, 13], + [-28, -17], + [-105, -87], + [-28, -17], + [-69, -17], + [-49, -30], + [-52, -13], + [-18, -7], + [-3, -13], + [7, -44], + [-4, -14], + [-42, -13], + [-55, 0], + [-49, -13], + [-18, -41], + [-21, 24], + [-163, -94], + [-35, -4], + [-126, 4], + [-181, 94], + [-31, 40], + [-21, 54], + [3, 50], + [49, 17], + [-42, 61], + [-136, 60], + [-27, 54], + [-28, 37], + [-60, 40], + [-66, 37], + [-111, 30], + [-35, 37], + [-38, 27], + [-74, -10], + [-156, -74], + [-203, -44], + [-17, -6], + [-24, -30], + [-18, -7], + [-21, 3], + [-28, 17], + [-14, 3], + [-223, 0], + [-34, 7], + [-98, 40], + [-94, -6], + [-28, 6], + [-59, 31], + [-91, 77], + [-56, 30], + [-20, 24], + [-18, 40], + [-31, 40], + [-42, 27], + [-42, 10], + [-49, 4], + [-24, 10], + [-38, 57], + [-14, 10], + [-35, 20], + [-14, 14], + [-4, 20], + [4, 43], + [-11, 21], + [-41, 50], + [-21, 0], + [-28, -40], + [-7, 23], + [-14, 24], + [-21, 17], + [-28, 6], + [-7, 17], + [-24, 101], + [-11, 7], + [-52, 50], + [-10, 14], + [-35, 0], + [-21, 6], + [-14, 14], + [-21, 27], + [0, 23], + [21, 57], + [-11, 10], + [-31, -3], + [-56, -20], + [-28, 0], + [-48, 40], + [-32, 54], + [-3, 3] + ], + [ + [8911, 1734], + [28, 232], + [17, 74], + [11, 14], + [17, 20], + [10, 17], + [7, 6], + [32, 30], + [14, 21], + [21, 37], + [7, 23], + [3, 24], + [-3, 20], + [-11, 37], + [-3, 27], + [0, 185], + [7, 37], + [7, 23], + [20, 27], + [49, 40], + [11, 10], + [48, 94], + [32, 41], + [56, 111], + [3, 23], + [0, 20], + [-14, 27], + [-7, 14], + [-10, 10], + [-11, 27], + [-3, 37], + [14, 87], + [7, 40], + [14, 27], + [24, 20], + [80, 47], + [18, 17], + [21, 27], + [34, 61], + [18, 43], + [7, 31], + [0, 20], + [-4, 17], + [-7, 16], + [-7, 21], + [-3, 26], + [7, 51], + [24, 20], + [28, 17], + [31, 7], + [154, 84], + [21, 23], + [28, 40], + [48, 95], + [18, 47], + [7, 33], + [-87, 326], + [-14, 30], + [-7, 17], + [-4, 20], + [4, 54], + [24, 165], + [4, 40], + [-4, 30], + [-10, 11], + [-25, 20], + [-28, 20], + [-17, 7], + [-35, 10], + [-314, 43], + [-17, 7], + [-17, 17], + [-39, 87], + [-7, 37], + [-10, 54], + [-7, 13], + [-7, 14], + [-14, 10], + [-105, 81], + [-80, 80], + [-10, 10], + [-4, 4], + [-3, 6], + [-7, 41], + [0, 17], + [3, 10], + [4, 3], + [10, 3], + [49, 11], + [14, 3], + [14, 7], + [24, 20], + [14, 13], + [300, 447], + [21, 24], + [56, 30], + [10, 10], + [49, 44], + [10, 10], + [18, 3], + [17, 4], + [14, 6], + [18, 7], + [38, 27], + [42, 50], + [7, 14], + [10, 10], + [14, 10], + [14, 10], + [14, 7], + [45, 13], + [42, 20], + [18, 24], + [20, 44], + [74, 188], + [10, 13], + [28, 54], + [35, 91], + [14, 23], + [21, 24], + [17, 27], + [18, 33], + [6, 14], + [11, 10], + [14, 13], + [14, 7], + [14, 7], + [10, 10], + [14, 6], + [11, 11], + [10, 10], + [11, 16], + [24, 31], + [17, 23], + [0, 17], + [-3, 13], + [-14, 11], + [-18, 6], + [-17, 7], + [-38, 3], + [-21, 4], + [-14, 6], + [-14, 11], + [-11, 10], + [-20, 27], + [-63, 53], + [-11, 10], + [-7, 14], + [-17, 30], + [-3, 17], + [-7, 47], + [0, 37], + [7, 23], + [10, 17], + [28, 20], + [14, 14], + [14, 23], + [-4, 17], + [-7, 10], + [-10, 20], + [-7, 24], + [-4, 47], + [7, 27], + [11, 17], + [14, 10], + [17, 20], + [21, 37], + [31, 91], + [46, 363], + [0, 43], + [-4, 17], + [-7, 17], + [-7, 13], + [-21, 27], + [-24, 20], + [-14, 11], + [-17, 6], + [-14, 0], + [-14, -3], + [-14, -10], + [-21, -27], + [-24, -44], + [-21, -23], + [-14, -10], + [-14, -7], + [-18, -3], + [-17, 0], + [-18, 0], + [-17, 3], + [-17, 7], + [-14, 10], + [-25, 23], + [-21, 24], + [-38, 70], + [-7, 17], + [-7, 24], + [-3, 37], + [3, 20], + [7, 17], + [42, 30], + [10, 13], + [14, 20], + [4, 24], + [3, 20], + [-3, 20], + [-4, 17], + [-7, 14], + [-10, 13], + [-11, 10], + [-14, 10], + [-27, 14], + [-67, 47], + [-10, 16], + [-11, 17], + [-7, 31], + [4, 20], + [10, 16], + [84, 74], + [14, 17], + [10, 20], + [14, 44], + [4, 24], + [-4, 20], + [-17, 27], + [-45, 53], + [-4, 7], + [-3, 10], + [-4, 20], + [4, 21], + [7, 13], + [10, 10], + [59, 27], + [14, 3], + [18, -6], + [10, -7], + [14, 0], + [11, 3], + [10, 14], + [42, 87], + [10, 27], + [11, 47], + [0, 37], + [-4, 47], + [0, 27], + [7, 20], + [7, 17], + [25, 20], + [24, 34], + [17, 30], + [4, 23], + [3, 21], + [-7, 16], + [-7, 14], + [-31, 60], + [-17, 47] + ], + [ + [8911, 1734], + [-39, 27], + [-59, -30], + [-38, 60], + [-80, 41], + [-202, 43], + [-98, -3], + [-31, 7], + [-21, 17], + [-14, 16], + [-18, 7], + [-254, 44], + [-132, 0], + [-28, -10], + [-21, -24], + [-18, -23], + [-31, -21], + [-45, -43], + [-32, -17], + [-28, 0], + [-27, 3], + [-46, 21], + [-28, 20], + [-17, 23], + [-24, 17], + [-77, 17], + [-56, 30], + [-90, 17], + [-126, 50], + [-52, 10], + [-52, -6], + [-126, -41], + [-24, -10], + [-32, 20], + [-160, 7], + [-56, 7], + [-52, -4], + [-91, -20], + [-125, -27], + [-129, -30], + [-125, -27], + [-129, -30], + [-126, -30], + [-129, -27], + [-129, -30], + [-125, -27], + [-129, -30], + [-129, -27], + [-126, -31], + [-128, -27], + [-126, -30], + [-129, -27], + [-129, -30], + [-125, -30], + [-91, -20], + [-56, 0], + [-104, -24], + [-119, -27], + [-17, 47], + [-4, 44], + [21, 47], + [-66, 61], + [-59, 77], + [-59, 47], + [-46, 23], + [-41, 17], + [-98, 7], + [-49, -7], + [-52, -13], + [-52, -7], + [-53, 14], + [-35, 43], + [-3, 47], + [7, 54], + [-7, 54], + [-31, 37], + [-133, 57], + [-69, 64], + [-74, 91], + [-55, 104], + [-25, 90], + [-17, 37], + [-126, 148], + [-42, 27], + [-142, 44], + [-182, 84], + [-80, 60], + [-118, 118], + [-91, 54], + [-42, 37], + [-28, 50], + [-31, 158], + [-42, 91], + [-59, 91], + [-136, 158], + [-42, 33], + [-177, 81], + [-35, 0], + [-18, 13], + [-14, 31], + [0, 57], + [-7, 30], + [-38, 40], + [-94, 34], + [-42, 30], + [-24, 41], + [-35, 97], + [-216, 376], + [-21, 31], + [-28, 16], + [-49, 11], + [-17, 10], + [-14, 20], + [-21, 40], + [-45, 71], + [-21, 43], + [-32, 34], + [-76, 17], + [-14, 7], + [-21, 26], + [-14, 10], + [-10, -6], + [-11, -10], + [-28, -10], + [-45, -17], + [-25, -4], + [-41, 14], + [-255, 232], + [-21, 47], + [-7, 57], + [-14, 50], + [-31, 21], + [-56, 6], + [-14, 27], + [7, 37], + [4, 44], + [-18, 50], + [-48, 94], + [-14, 44], + [0, 57], + [17, 64], + [25, 57], + [27, 44], + [4, 44], + [-49, 26], + [-97, 24], + [-4, 20], + [-3, 74], + [-4, 34], + [-10, 16], + [-35, 34], + [-14, 20], + [-14, 51], + [-7, 43], + [-11, 44], + [-31, 47], + [24, -3], + [77, 3], + [-104, 185], + [-81, 108], + [-7, 73], + [0, 54], + [0, 209], + [0, 215], + [0, 10], + [0, 154], + [0, 347], + [0, 346], + [0, 349], + [0, 346], + [0, 152], + [0, 101], + [0, 73], + [0, 135], + [0, 514], + [0, 511], + [0, 514], + [0, 511], + [0, 514], + [0, 511], + [0, 514], + [0, 515], + [0, 510], + [0, 515], + [-3, 511], + [0, 205] + ], + [ + [23300, 20112], + [0, 13] + ], + [ + [30545, 30410], + [66, -10], + [387, 6], + [122, -33], + [108, -81], + [31, -47], + [59, -155], + [42, -73], + [38, -31], + [115, -13], + [255, -61], + [212, -20], + [39, -23], + [42, -51], + [10, -27], + [11, -50], + [17, -27], + [21, -7], + [52, 7], + [21, -7], + [139, -104], + [223, -94], + [46, -34], + [7, -198], + [14, -47], + [28, -27], + [17, 7], + [21, 17], + [35, 3], + [21, -13], + [41, -47], + [28, -14], + [0, -94], + [-52, -245], + [35, -91], + [42, -17], + [31, 17], + [35, 27], + [38, 10], + [35, -17], + [11, -37], + [7, -40], + [13, -30], + [67, -31], + [28, 64], + [10, 101], + [17, 87], + [67, -37], + [163, -10], + [60, -47], + [42, -84], + [13, -47], + [4, -50], + [-7, -37], + [-17, -27], + [-11, -34], + [11, -50], + [27, -47], + [74, -54], + [34, -37], + [42, -94], + [25, -40], + [38, -37], + [35, -20], + [111, -48], + [18, -26], + [49, -135], + [17, -94], + [-21, -71], + [-87, -158], + [-56, -157], + [-17, -88], + [0, -87], + [38, -64], + [244, -121], + [63, -61], + [49, -60], + [52, -51], + [77, -30], + [55, -80], + [60, -47], + [45, -58], + [3, -107], + [-17, -188], + [10, -81], + [80, -212], + [25, -40], + [84, -84], + [20, -27], + [60, -155], + [45, -60], + [80, -10], + [4, -91], + [21, -60], + [0, -34], + [3, -13], + [0, -14], + [-49, -81], + [-45, -50], + [-119, -94], + [-38, -20], + [-38, -27], + [-147, -185], + [-48, -138], + [-32, -57], + [-62, -44], + [-46, -10], + [-52, -60], + [-38, -20], + [-46, 3], + [-101, 23], + [-42, -10], + [-38, -16], + [-77, -17], + [-41, -17], + [-35, -37], + [-56, -94], + [-45, -30], + [-35, 0], + [-32, 10], + [-27, -10], + [-28, -61], + [0, -47], + [21, -20], + [38, 0], + [42, 7], + [42, -41], + [24, -107], + [7, -104], + [10, -101], + [28, -101], + [46, -94], + [52, -88], + [66, -73], + [98, -189], + [-28, -101], + [-39, -97], + [-209, -360], + [-7, -23], + [11, -37], + [-4, -24], + [-17, -13], + [-45, -24], + [-14, -16], + [-4, -51], + [7, -44], + [-3, -43], + [-25, -44], + [-76, 67], + [-28, -47], + [14, -289], + [-4, -43], + [-17, -61], + [-46, -108], + [11, -26], + [49, -21], + [52, 0], + [52, 7], + [49, -10], + [38, -50], + [18, -54], + [7, -118] + ] + ], + "transform": { + "scale": [0.00033560984221552557, 0.00029384954558709845], + "translate": [21.97987756300006, -18.069231871999932] + }, + "objects": { + "zambia": { + "type": "GeometryCollection", + "geometries": [ + { "arcs": [[0, 1, 2]], "type": "Polygon", "properties": { "name": "Luapula" } }, + { "arcs": [[3, -3, 4]], "type": "Polygon", "properties": { "name": "Northern" } }, + { + "arcs": [[5, 6, 7, 8, 9, 10, 11, 12]], + "type": "Polygon", + "properties": { "name": "Central" } + }, + { "arcs": [[-11, 13, 14]], "type": "Polygon", "properties": { "name": "Copperbelt" } }, + { "arcs": [[15, -6, 16, 17]], "type": "Polygon", "properties": { "name": "Eastern" } }, + { "arcs": [[-16, 18, 19, -7]], "type": "Polygon", "properties": { "name": "Lusaka" } }, + { + "arcs": [[-14, -10, 20, 21]], + "type": "Polygon", + "properties": { "name": "North-Western" } + }, + { "arcs": [[-20, 22, 23, -8]], "type": "Polygon", "properties": { "name": "Southern" } }, + { "arcs": [[-9, -24, 24, -21]], "type": "Polygon", "properties": { "name": "Western" } }, + { + "arcs": [[-17, -13, 25, -1, -4, 26]], + "type": "Polygon", + "properties": { "name": "Muchinga" } + } + ] + } + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/plugin/index.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/plugin/index.ts new file mode 100644 index 000000000000..43ec1f84a5df --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/plugin/index.ts @@ -0,0 +1,37 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; +import transformProps from './transformProps'; +import thumbnail from '../images/thumbnail.png'; + +const metadata = new ChartMetadata({ + description: t('Choropleth Map'), + name: t('ChoroplethMap'), + thumbnail, +}); + +export default class ChoroplethMapChartPlugin extends ChartPlugin { + constructor() { + super({ + loadChart: () => import('../chart/ChoroplethMap'), + metadata, + transformProps, + }); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/plugin/transformProps.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/plugin/transformProps.ts new file mode 100644 index 000000000000..07a933c08c9f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/plugin/transformProps.ts @@ -0,0 +1,33 @@ +import { ChartProps } from '@superset-ui/core'; + +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export default function transformProps(chartProps: ChartProps) { + const { width, height, formData, queriesData } = chartProps; + const { map, encoding } = formData; + const { data } = queriesData[0]; + + return { + width, + height, + map, + encoding, + data, + }; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/types.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/types.ts new file mode 100644 index 000000000000..6134389d65f7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/src/types.ts @@ -0,0 +1,43 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +// eslint-disable-next-line import/no-unresolved +import type { Topology } from 'topojson-specification'; +import type { FeatureCollection } from 'geojson'; +import type Projection from './chart/Projection'; + +interface BaseMapMetadata { + key: string; + name: string; + keyField: string; + projection?: Projection; + rotate?: [number, number] | [number, number, number]; +} + +interface TopojsonMapMetadata extends BaseMapMetadata { + type: 'topojson'; + load: () => Promise; +} + +interface GeojsonMapMetadata extends BaseMapMetadata { + type: 'geojson'; + load: () => Promise; +} + +export type RawMapMetadata = TopojsonMapMetadata | GeojsonMapMetadata; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/stories/ChoroplethMap.stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/stories/ChoroplethMap.stories.tsx new file mode 100644 index 000000000000..cb651b0ed82b --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/stories/ChoroplethMap.stories.tsx @@ -0,0 +1,126 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import { withKnobs, select } from '@storybook/addon-knobs'; +import { + maps, + ChoroplethMapChartPlugin, +} from '@superset-ui/plugin-chart-choropleth-map'; +import useFakeMapData from './useFakeMapData'; + +new ChoroplethMapChartPlugin().configure({ key: 'choropleth-map' }).register(); + +export default { + title: 'Chart Plugins|plugin-chart-choropleth-map', + decorators: [withKnobs], +}; + +export const WorldMap = () => { + const map = select( + 'Map', + maps.map(m => m.key), + 'world', + 'map', + ); + + return ( + + ); +}; + +export const USA = () => ( + +); + +export const CategoricalColor = () => ( + +); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/stories/generateFakeMapData.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/stories/generateFakeMapData.ts new file mode 100644 index 000000000000..3b2295ff5589 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/stories/generateFakeMapData.ts @@ -0,0 +1,45 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { seedRandom } from '@superset-ui/core'; +import loadMap from '../../../../../../plugins/plugin-chart-choropleth-map/src/chart/loadMap'; + +const FRUITS = ['apple', 'banana', 'grape']; + +export type FakeMapData = { + key: string; + favoriteFruit: string; + numStudents: number; +}[]; + +/** + * Generate mock data for the given map + * Output is a promise of an array + * { key, favoriteFruit, numStudents }[] + * @param map map name + */ +export default async function generateFakeMapData(map: string) { + const { object, metadata } = await loadMap(map); + return object.features + .map(f => metadata.keyAccessor(f)) + .map(key => ({ + key, + favoriteFruit: FRUITS[Math.round(seedRandom() * 2)], + numStudents: Math.round(seedRandom() * 100), + })); +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/stories/useFakeMapData.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/stories/useFakeMapData.ts new file mode 100644 index 000000000000..4cacdffc4ff3 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/stories/useFakeMapData.ts @@ -0,0 +1,33 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { useState, useEffect } from 'react'; +import generateFakeMapData, { FakeMapData } from './generateFakeMapData'; + +export default function useFakeMapData(map: string) { + const [mapData, setMapData] = useState(undefined); + + useEffect(() => { + generateFakeMapData(map).then(mapData => { + setMapData(mapData); + }); + }, [map]); + + return mapData; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/test/index.test.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/test/index.test.ts new file mode 100644 index 000000000000..23e709470ee6 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/test/index.test.ts @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ChoroplethMapChartPlugin } from '../src'; + +describe('@superset-ui/plugin-chart-choropleth-map', () => { + it('exists', () => { + expect(ChoroplethMapChartPlugin).toBeDefined(); + }); +}); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/test/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/test/tsconfig.json new file mode 100644 index 000000000000..481ca5b4db93 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/test/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "composite": false, + "emitDeclarationOnly": false, + "noEmit": true, + "rootDir": "." + }, + "extends": "../../../tsconfig.json", + "include": [ + "**/*", + "../types/**/*", + "../../../types/**/*" + ], + "references": [ + { + "path": ".." + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/tsconfig.json new file mode 100644 index 000000000000..b6bfaa2d9844 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "declarationDir": "lib", + "outDir": "lib", + "rootDir": "src" + }, + "exclude": [ + "lib", + "test" + ], + "extends": "../../tsconfig.json", + "include": [ + "src/**/*", + "types/**/*", + "../../types/**/*" + ], + "references": [ + { + "path": "../../packages/superset-ui-chart-controls" + }, + { + "path": "../../packages/superset-ui-core" + } + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/types/external.d.ts b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/types/external.d.ts new file mode 100644 index 000000000000..fe6b1981edbc --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/plugin-chart-choropleth-map/types/external.d.ts @@ -0,0 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +declare module '*.png'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/setupJest.js b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/setupJest.js new file mode 100644 index 000000000000..a0316c3dcd7c --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/setupJest.js @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { configure as configureTranslation } from '@superset-ui/core'; +import { configure as configureEnzyme } from 'enzyme'; +import EnzymeReactAdapter from 'enzyme-adapter-react-16'; + +configureTranslation(); +configureEnzyme({ adapter: new EnzymeReactAdapter() }); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/.storybook/addons.js b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/.storybook/addons.js new file mode 100644 index 000000000000..cc58570b9acb --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/.storybook/addons.js @@ -0,0 +1,5 @@ +// note that the import order here determines the order in the UI! +import '@storybook/addon-knobs/register'; +import '@storybook/addon-actions/register'; +import '@storybook/addon-links/register'; +import 'storybook-addon-jsx/register'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/.storybook/config.js b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/.storybook/config.js new file mode 100644 index 000000000000..6e8f066806e7 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/.storybook/config.js @@ -0,0 +1,26 @@ +import { addParameters, configure } from '@storybook/react'; + +addParameters({ + options: { + name: '@superset-ui/plugins 🔌💡', + addonPanelInRight: false, + enableShortcuts: false, + goFullScreen: false, + hierarchyRootSeparator: null, + hierarchySeparator: /\|/, + selectedAddonPanel: undefined, // The order of addons in the "Addon panel" is the same as you import them in 'addons.js'. The first panel will be opened by default as you run Storybook + showAddonPanel: true, + showSearchBox: false, + showStoriesPanel: true, + sidebarAnimations: true, + sortStoriesByKind: false, + url: '#', + }, +}); + +function loadStorybook() { + require('./storybook.css'); + require('../storybook/stories'); // all of the stories +} + +configure(loadStorybook, module); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/.storybook/storybook.css b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/.storybook/storybook.css new file mode 100644 index 000000000000..51868310bb93 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/.storybook/storybook.css @@ -0,0 +1,20 @@ +html, +body, +#root { + height: 100%; + font-family: BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif; + font-weight: 200; + color: #484848; +} +#root > div { + padding: 8px; +} + +#root > div.superset-body { + background: #f5f5f5; + padding: 16px; + min-height: 100%; +} +#root > div.superset-body .panel { + margin-bottom: 0; +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/README.md b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/README.md new file mode 100644 index 000000000000..5e9af0815c70 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/README.md @@ -0,0 +1,53 @@ +## @superset-ui/demo + +[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-demo&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-demo) + +Storybook of `@superset-ui-plugins` packages. See it live at +[apache-superset.github.io/superset-ui-plugins](https://apache-superset.github.io/superset-ui-plugins) + +### Development + +#### Run storybook + +To view the storybook locally, you should: + +1. Clone [superset-ui-plugins](https://github.com/apache-superset/superset-ui-plugins) repo. +2. Run `npm ci && npm build` in the `superset-ui-plugins` root directory. +3. Change to the demo directory `cd packages/superset-ui-plugins-demo`. +4. Run `npm run storybook`. This will open up a dev server at http://localhost:9001. + +#### Adding new stories + +###### Existing package + +If stories already exist for the package you are adding, simply extend the `examples` already +exported for that package in the `storybook/stories//index.js` file. + +###### New package + +If you are creating stories for a package that doesn't yet have any stories, follow these steps: + +1. Add any new package dependencies via `npm install `, but if it is `@superset-ui/*` + packages, manually add it to `peerDependencies`. + +2. Create a new folder that mirrors the package name + + > e.g., `mkdir storybook/stories/superset-ui-color/` + +3. Add an `index.js` file to that folder with a default export with the following shape: + +> you can use the `|` separator within the `storyPath` string to denote _nested_ stories e.g., +> `storyPath: '@superset-ui/package|Nested i|Nested ii'` + +```javascript + default export { + examples: [ + { + storyPath: , + storyName: , + renderStory: () => node, + }, + ... + ] + }; +``` diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/package.json b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/package.json new file mode 100644 index 000000000000..fb50053a694e --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/package.json @@ -0,0 +1,55 @@ +{ + "name": "@superset-ui/plugins-demo", + "version": "0.11.21", + "description": "Storybook for Superset UI Plugins 🔌💡", + "private": true, + "main": "index.js", + "scripts": { + "demo:clean": "rm -rf _gh-pages", + "demo:build": "build-storybook -o _gh-pages", + "demo:publish": "gh-pages -d _gh-pages", + "deploy-demo": "npm run demo:clean && npm run demo:build && npm run demo:publish && npm run demo:clean", + "storybook:run": "start-storybook -p 9001", + "storybook": "cd ../../ && npm run build && cd ./packages/superset-ui-plugins-demo && npm run storybook:run" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/apache-superset/superset-ui.git" + }, + "keywords": [ + "storybook", + "superset", + "ui", + "visualization", + "analysis", + "data" + ], + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/apache-superset/superset-ui/issues" + }, + "homepage": "https://github.com/apache-superset/superset-ui#readme", + "dependencies": { + "@babel/polyfill": "^7.4.3", + "@data-ui/event-flow": "^0.0.84", + "@storybook/addon-actions": "^5.0.9", + "@storybook/addon-knobs": "^5.0.9", + "@storybook/addon-links": "^5.0.9", + "@storybook/addons": "^5.0.9", + "@storybook/react": "^5.0.9", + "@types/react": "^16.9.48", + "@types/storybook__react": "4.0.2", + "bootstrap": "^3.4.1", + "jquery": "^3.4.1", + "react": "^16.13.1", + "storybook-addon-jsx": "^7.1.0" + }, + "devDependencies": { + "@babel/core": "^7.4.3", + "@babel/plugin-syntax-dynamic-import": "^7.2.0", + "@superset-ui/core": "^0.14.22", + "babel-loader": "^8.0.5", + "gh-pages": "^2.0.1", + "terser-webpack-plugin": "2.3.5" + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-word-cloud/Stories.tsx b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-word-cloud/Stories.tsx new file mode 100644 index 000000000000..1a816b4ab050 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-word-cloud/Stories.tsx @@ -0,0 +1,46 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable no-magic-numbers */ +import React from 'react'; +import { SuperChart } from '@superset-ui/core'; +import data from './data'; + +export default [ + { + renderStory: () => ( + + ), + storyName: 'Basic', + storyPath: 'legacy-|plugin-chart-word-cloud|WordCloudChartPlugin', + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-word-cloud/data.js b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-word-cloud/data.js new file mode 100644 index 000000000000..47f721e15696 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-word-cloud/data.js @@ -0,0 +1,422 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/* eslint-disable sort-keys */ +export default [ + { + name: 'Michael', + sum__num: 2467129, + }, + { + name: 'Christopher', + sum__num: 1725328, + }, + { + name: 'David', + sum__num: 1570516, + }, + { + name: 'James', + sum__num: 1506095, + }, + { + name: 'John', + sum__num: 1426074, + }, + { + name: 'Matthew', + sum__num: 1355877, + }, + { + name: 'Jennifer', + sum__num: 1335587, + }, + { + name: 'Robert', + sum__num: 1314800, + }, + { + name: 'Daniel', + sum__num: 1159354, + }, + { + name: 'Joseph', + sum__num: 1114167, + }, + { + name: 'William', + sum__num: 1113793, + }, + { + name: 'Joshua', + sum__num: 1073440, + }, + { + name: 'Jessica', + sum__num: 997179, + }, + { + name: 'Jason', + sum__num: 955817, + }, + { + name: 'Andrew', + sum__num: 926315, + }, + { + name: 'Anthony', + sum__num: 878978, + }, + { + name: 'Brian', + sum__num: 874868, + }, + { + name: 'Ryan', + sum__num: 816288, + }, + { + name: 'Kevin', + sum__num: 791084, + }, + { + name: 'Ashley', + sum__num: 789363, + }, + { + name: 'Thomas', + sum__num: 746589, + }, + { + name: 'Sarah', + sum__num: 744956, + }, + { + name: 'Nicholas', + sum__num: 728617, + }, + { + name: 'Amanda', + sum__num: 719676, + }, + { + name: 'Elizabeth', + sum__num: 712676, + }, + { + name: 'Justin', + sum__num: 704646, + }, + { + name: 'Jacob', + sum__num: 700755, + }, + { + name: 'Eric', + sum__num: 700518, + }, + { + name: 'Jonathan', + sum__num: 691938, + }, + { + name: 'Brandon', + sum__num: 682546, + }, + { + name: 'Melissa', + sum__num: 664648, + }, + { + name: 'Steven', + sum__num: 659750, + }, + { + name: 'Michelle', + sum__num: 659302, + }, + { + name: 'Richard', + sum__num: 652854, + }, + { + name: 'Kimberly', + sum__num: 647609, + }, + { + name: 'Timothy', + sum__num: 632770, + }, + { + name: 'Stephanie', + sum__num: 628138, + }, + { + name: 'Emily', + sum__num: 614741, + }, + { + name: 'Lisa', + sum__num: 606540, + }, + { + name: 'Mark', + sum__num: 589103, + }, + { + name: 'Jeffrey', + sum__num: 557562, + }, + { + name: 'Amy', + sum__num: 556835, + }, + { + name: 'Charles', + sum__num: 556124, + }, + { + name: 'Nicole', + sum__num: 545099, + }, + { + name: 'Tyler', + sum__num: 499814, + }, + { + name: 'Angela', + sum__num: 496228, + }, + { + name: 'Samantha', + sum__num: 484266, + }, + { + name: 'Benjamin', + sum__num: 482709, + }, + { + name: 'Heather', + sum__num: 481474, + }, + { + name: 'Scott', + sum__num: 469933, + }, + { + name: 'Rebecca', + sum__num: 466847, + }, + { + name: 'Adam', + sum__num: 459794, + }, + { + name: 'Mary', + sum__num: 459471, + }, + { + name: 'Zachary', + sum__num: 459381, + }, + { + name: 'Aaron', + sum__num: 453035, + }, + { + name: 'Rachel', + sum__num: 444351, + }, + { + name: 'Alexander', + sum__num: 438239, + }, + { + name: 'Paul', + sum__num: 411513, + }, + { + name: 'Kyle', + sum__num: 409644, + }, + { + name: 'Laura', + sum__num: 408963, + }, + { + name: 'Lauren', + sum__num: 403946, + }, + { + name: 'Megan', + sum__num: 402100, + }, + { + name: 'Nathan', + sum__num: 393793, + }, + { + name: 'Samuel', + sum__num: 390363, + }, + { + name: 'Christina', + sum__num: 387580, + }, + { + name: 'Kelly', + sum__num: 384611, + }, + { + name: 'Jordan', + sum__num: 382963, + }, + { + name: 'Patrick', + sum__num: 382673, + }, + { + name: 'Jeremy', + sum__num: 381171, + }, + { + name: 'Jose', + sum__num: 377759, + }, + { + name: 'Stephen', + sum__num: 374269, + }, + { + name: 'Sean', + sum__num: 366228, + }, + { + name: 'Kenneth', + sum__num: 361043, + }, + { + name: 'Gregory', + sum__num: 334166, + }, + { + name: 'Brittany', + sum__num: 333252, + }, + { + name: 'Amber', + sum__num: 331563, + }, + { + name: 'Katherine', + sum__num: 329873, + }, + { + name: 'Hannah', + sum__num: 329227, + }, + { + name: 'Taylor', + sum__num: 327602, + }, + { + name: 'Danielle', + sum__num: 322578, + }, + { + name: 'Andrea', + sum__num: 318796, + }, + { + name: 'Austin', + sum__num: 314059, + }, + { + name: 'Tiffany', + sum__num: 301753, + }, + { + name: 'Kayla', + sum__num: 291858, + }, + { + name: 'Christian', + sum__num: 288189, + }, + { + name: 'Maria', + sum__num: 287870, + }, + { + name: 'Alexis', + sum__num: 286496, + }, + { + name: 'Bryan', + sum__num: 282841, + }, + { + name: 'Victoria', + sum__num: 277371, + }, + { + name: 'Julie', + sum__num: 270542, + }, + { + name: 'Shannon', + sum__num: 266886, + }, + { + name: 'Christine', + sum__num: 264122, + }, + { + name: 'Sara', + sum__num: 263050, + }, + { + name: 'Erin', + sum__num: 262817, + }, + { + name: 'Madison', + sum__num: 262812, + }, + { + name: 'Crystal', + sum__num: 262697, + }, + { + name: 'Karen', + sum__num: 257961, + }, + { + name: 'Anna', + sum__num: 256136, + }, + { + name: 'Dylan', + sum__num: 250778, + }, + { + name: 'Edward', + sum__num: 248689, + }, +]; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-word-cloud/index.js b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-word-cloud/index.js new file mode 100644 index 000000000000..4e8d34c74790 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/temporary-plugins/superset-ui-plugins-demo/storybook/stories/legacy-plugin-chart-word-cloud/index.js @@ -0,0 +1,27 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import WordCloudChartPlugin from '../../../../superset-ui-legacy-plugin-chart-word-cloud'; +import Stories from './Stories'; + +new WordCloudChartPlugin().configure({ key: 'word-cloud' }).register(); + +export default { + examples: [...Stories], +}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/test/__mocks__/mockExportObject.js b/superset-frontend/temporary_superset_ui/superset-ui/test/__mocks__/mockExportObject.js new file mode 100644 index 000000000000..ab22d88b5b2f --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/test/__mocks__/mockExportObject.js @@ -0,0 +1,19 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +module.exports = {}; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/test/__mocks__/mockExportString.js b/superset-frontend/temporary_superset_ui/superset-ui/test/__mocks__/mockExportString.js new file mode 100644 index 000000000000..5b7f1d6da964 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/test/__mocks__/mockExportString.js @@ -0,0 +1,19 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +module.exports = 'test-file-stub'; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/test/__mocks__/svgrMock.tsx b/superset-frontend/temporary_superset_ui/superset-ui/test/__mocks__/svgrMock.tsx new file mode 100644 index 000000000000..6073fd6d9f33 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/test/__mocks__/svgrMock.tsx @@ -0,0 +1,29 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { SVGProps } from 'react'; + +const SvgrMock = React.forwardRef>( + (props, ref) => , +); + +SvgrMock.displayName = 'SvgrMock'; + +export const ReactComponent = SvgrMock; +export default SvgrMock; diff --git a/superset-frontend/temporary_superset_ui/superset-ui/test/setup.ts b/superset-frontend/temporary_superset_ui/superset-ui/test/setup.ts new file mode 100644 index 000000000000..ff1499de9bb0 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/test/setup.ts @@ -0,0 +1,26 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { configure } from 'enzyme'; +import Adapter from 'enzyme-adapter-react-16'; +import CacheStorage from './shims/CacheStorage'; + +// @ts-ignore +global.caches = new CacheStorage(); + +configure({ adapter: new Adapter() }); diff --git a/superset-frontend/temporary_superset_ui/superset-ui/test/shims/Cache.ts b/superset-frontend/temporary_superset_ui/superset-ui/test/shims/Cache.ts new file mode 100644 index 000000000000..f79af5f0f96d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/test/shims/Cache.ts @@ -0,0 +1,42 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +export const caches = {}; + +export default class Cache { + cache: object; + + constructor(key: string) { + caches[key] = caches[key] || {}; + this.cache = caches[key]; + } + + match(url: string): Promise { + return new Promise(resolve => resolve(this.cache[url])); + } + + delete(url: string): Promise { + delete this.cache[url]; + return new Promise(resolve => resolve(true)); + } + + put(url: string, response: Response): Promise { + this.cache[url] = response; + return Promise.resolve(); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/test/shims/CacheStorage.ts b/superset-frontend/temporary_superset_ui/superset-ui/test/shims/CacheStorage.ts new file mode 100644 index 000000000000..2e2c52c6c705 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/test/shims/CacheStorage.ts @@ -0,0 +1,35 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import Cache, { caches } from './Cache'; + +export default class CacheStorage { + open(key: string): Promise { + return new Promise(resolve => { + resolve(new Cache(key)); + }); + } + + delete(key: string): Promise { + const wasPresent = key in caches; + if (wasPresent) { + delete caches[key]; + } + return Promise.resolve(wasPresent); + } +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/tsconfig.eslint.json b/superset-frontend/temporary_superset_ui/superset-ui/tsconfig.eslint.json new file mode 100644 index 000000000000..99aeabfa393d --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/tsconfig.eslint.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.json", + "include": [ + "types/**/*", + "packages/*/src/**/*", + "packages/*/test/**/*", + "packages/*/types/**/*", + "plugins/*/src/**/*", + "plugins/*/test/**/*", + "plugins/*/types/**/*" + ] +} diff --git a/superset-frontend/temporary_superset_ui/superset-ui/tsconfig.json b/superset-frontend/temporary_superset_ui/superset-ui/tsconfig.json new file mode 100644 index 000000000000..6a08c3a53122 --- /dev/null +++ b/superset-frontend/temporary_superset_ui/superset-ui/tsconfig.json @@ -0,0 +1,151 @@ +{ + "compilerOptions": { + "allowSyntheticDefaultImports": true, + "declaration": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "isolatedModules": false, + "jsx": "react", + "lib": [ + "dom", + "esnext" + ], + "module": "esnext", + "moduleResolution": "node", + "noEmitOnError": true, + "noImplicitReturns": true, + "noUnusedLocals": true, + "pretty": true, + "removeComments": false, + "strict": true, + "target": "es2015", + "useDefineForClassFields": false, + "composite": true, + "declarationMap": true, + "rootDir": ".", + "skipLibCheck": true, + "emitDeclarationOnly": true, + "resolveJsonModule": true, + "types": ["@emotion/react/types/css-prop", "jest", "jsdom"], + "typeRoots": [ + "./node_modules/@types" + ] + }, + "files": [], + "references": [ + { + "path": "packages/superset-ui-chart-controls" + }, + { + "path": "packages/superset-ui-chart-controls/test" + }, + { + "path": "packages/superset-ui-core" + }, + { + "path": "packages/superset-ui-core/test" + }, + { + "path": "plugins/legacy-plugin-chart-calendar" + }, + { + "path": "plugins/legacy-plugin-chart-chord" + }, + { + "path": "plugins/legacy-plugin-chart-country-map" + }, + { + "path": "plugins/legacy-plugin-chart-event-flow" + }, + { + "path": "plugins/legacy-plugin-chart-force-directed" + }, + { + "path": "plugins/legacy-plugin-chart-heatmap" + }, + { + "path": "plugins/legacy-plugin-chart-histogram" + }, + { + "path": "plugins/legacy-plugin-chart-horizon" + }, + { + "path": "plugins/legacy-plugin-chart-map-box" + }, + { + "path": "plugins/legacy-plugin-chart-map-box/test" + }, + { + "path": "plugins/legacy-plugin-chart-paired-t-test" + }, + { + "path": "plugins/legacy-plugin-chart-parallel-coordinates" + }, + { + "path": "plugins/legacy-plugin-chart-partition" + }, + { + "path": "plugins/legacy-plugin-chart-partition/test" + }, + { + "path": "plugins/legacy-plugin-chart-pivot-table" + }, + { + "path": "plugins/legacy-plugin-chart-rose" + }, + { + "path": "plugins/legacy-plugin-chart-sankey" + }, + { + "path": "plugins/legacy-plugin-chart-sankey-loop" + }, + { + "path": "plugins/legacy-plugin-chart-sunburst" + }, + { + "path": "plugins/legacy-plugin-chart-time-table" + }, + { + "path": "plugins/legacy-plugin-chart-treemap" + }, + { + "path": "plugins/legacy-plugin-chart-world-map" + }, + { + "path": "plugins/legacy-preset-chart-big-number" + }, + { + "path": "plugins/legacy-preset-chart-big-number/test" + }, + { + "path": "plugins/legacy-preset-chart-nvd3" + }, + { + "path": "plugins/legacy-preset-chart-nvd3/test" + }, + { + "path": "plugins/plugin-chart-echarts" + }, + { + "path": "plugins/plugin-chart-echarts/test" + }, + { + "path": "plugins/plugin-chart-table" + }, + { + "path": "plugins/plugin-chart-table/test" + }, + { + "path": "plugins/plugin-chart-word-cloud" + }, + { + "path": "plugins/plugin-chart-word-cloud/test" + }, + { + "path": "plugins/preset-chart-xy" + }, + { + "path": "plugins/preset-chart-xy/test" + } + ] +}
; + } + // If cellProps renderes textContent already, then we don't have to + // render `Cell`. This saves some time for large tables. + return {text} + {/* can't use `columnWidth &&` because it may also be zero */} + {config.columnWidth ? ( + // column width hint +
+ ) : null} + {label} + +
{t('Totals')} + {formatColumnValue(column, totals[key])[1]} +